From: Pierre Date: Sun, 10 Jun 2012 08:17:01 +0000 (+0200) Subject: first import X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=commitdiff_plain;h=22cd27b2bbe9ab1ffa7ef06fa764b5147ae17dad first import --- 22cd27b2bbe9ab1ffa7ef06fa764b5147ae17dad diff --git a/HTML.py b/HTML.py new file mode 100644 index 0000000..b03c0a2 --- /dev/null +++ b/HTML.py @@ -0,0 +1,493 @@ +#!/usr/bin/python +# -*- coding: iso-8859-1 -*- +""" +HTML.py - v0.04 2009-07-28 Philippe Lagadec + +This module provides a few classes to easily generate HTML code such as tables +and lists. + +Project website: http://www.decalage.info/python/html + +License: CeCILL (open-source GPL compatible), see source code for details. + http://www.cecill.info +""" + +__version__ = '0.04' +__date__ = '2009-07-28' +__author__ = 'Philippe Lagadec' + +#--- LICENSE ------------------------------------------------------------------ + +# Copyright Philippe Lagadec - see http://www.decalage.info/contact for contact info +# +# This module provides a few classes to easily generate HTML tables and lists. +# +# This software is governed by the CeCILL license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/or redistribute the software under the terms of the CeCILL +# license as circulated by CEA, CNRS and INRIA at the following URL +# "http://www.cecill.info". +# +# A copy of the CeCILL license is also provided in these attached files: +# Licence_CeCILL_V2-en.html and Licence_CeCILL_V2-fr.html +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# In this respect, the user's attention is drawn to the risks associated +# with loading, using, modifying and/or developing or reproducing the +# software by the user in light of its specific status of free software, +# that may mean that it is complicated to manipulate, and that also +# therefore means that it is reserved for developers and experienced +# professionals having in-depth computer knowledge. Users are therefore +# encouraged to load and test the software's suitability as regards their +# requirements in conditions enabling the security of their systems and/or +# data to be ensured and, more generally, to use and operate it in the +# same conditions as regards security. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL license and that you accept its terms. + + +#--- CHANGES ------------------------------------------------------------------ + +# 2008-10-06 v0.01 PL: - First version +# 2008-10-13 v0.02 PL: - added cellspacing and cellpadding to table +# - added functions to ease one-step creation of tables +# and lists +# 2009-07-21 v0.03 PL: - added column attributes and styles (first attempt) +# (thanks to an idea submitted by Michal Cernoevic) +# 2009-07-28 v0.04 PL: - improved column styles, workaround for Mozilla + + +#------------------------------------------------------------------------------- +#TODO: +# - method to return a generator (yield each row) instead of a single string +# - unicode support (input and output) +# - escape text in cells (optional) +# - constants for standard colors +# - use lxml to generate well-formed HTML ? +# - add classes/functions to generate a HTML page, paragraphs, headings, etc... + + +#--- THANKS -------------------------------------------------------------------- + +# - Michal Cernoevic, for the idea of column styles. + +#--- REFERENCES ---------------------------------------------------------------- + +# HTML 4.01 specs: http://www.w3.org/TR/html4/struct/tables.html + +# Colors: http://www.w3.org/TR/html4/types.html#type-color + +# Columns alignement and style, one of the oldest and trickiest bugs in Mozilla: +# https://bugzilla.mozilla.org/show_bug.cgi?id=915 + + +#--- CONSTANTS ----------------------------------------------------------------- + +# Table style to get thin black lines in Mozilla/Firefox instead of 3D borders +TABLE_STYLE_THINBORDER = "border: 1px solid #000000; border-collapse: collapse;" +#TABLE_STYLE_THINBORDER = "border: 1px solid #000000;" + + +#=== CLASSES =================================================================== + +class TableCell (object): + """ + a TableCell object is used to create a cell in a HTML table. (TD or TH) + + Attributes: + - text: text in the cell (may contain HTML tags). May be any object which + can be converted to a string using str(). + - header: bool, false for a normal data cell (TD), true for a header cell (TH) + - bgcolor: str, background color + - width: str, width + - align: str, horizontal alignement (left, center, right, justify or char) + - char: str, alignment character, decimal point if not specified + - charoff: str, see HTML specs + - valign: str, vertical alignment (top|middle|bottom|baseline) + - style: str, CSS style + - attribs: dict, additional attributes for the TD/TH tag + + Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.6 + """ + + def __init__(self, text="", bgcolor=None, header=False, width=None, + align=None, char=None, charoff=None, valign=None, style=None, + attribs=None): + """TableCell constructor""" + self.text = text + self.bgcolor = bgcolor + self.header = header + self.width = width + self.align = align + self.char = char + self.charoff = charoff + self.valign = valign + self.style = style + self.attribs = attribs + if attribs==None: + self.attribs = {} + + def __str__(self): + """return the HTML code for the table cell as a string""" + attribs_str = "" + if self.bgcolor: self.attribs['bgcolor'] = self.bgcolor + if self.width: self.attribs['width'] = self.width + if self.align: self.attribs['align'] = self.align + if self.char: self.attribs['char'] = self.char + if self.charoff: self.attribs['charoff'] = self.charoff + if self.valign: self.attribs['valign'] = self.valign + if self.style: self.attribs['style'] = self.style + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + if self.text: + text = str(self.text) + else: + # An empty cell should at least contain a non-breaking space + text = ' ' + if self.header: + return ' %s\n' % (attribs_str, text) + else: + return ' %s\n' % (attribs_str, text) + +#------------------------------------------------------------------------------- + +class TableRow (object): + """ + a TableRow object is used to create a row in a HTML table. (TR tag) + + Attributes: + - cells: list, tuple or any iterable, containing one string or TableCell + object for each cell + - header: bool, true for a header row (TH), false for a normal data row (TD) + - bgcolor: str, background color + - col_align, col_valign, col_char, col_charoff, col_styles: see Table class + - attribs: dict, additional attributes for the TR tag + + Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.5 + """ + + def __init__(self, cells=None, bgcolor=None, header=False, attribs=None, + col_align=None, col_valign=None, col_char=None, + col_charoff=None, col_styles=None): + """TableCell constructor""" + self.bgcolor = bgcolor + self.cells = cells + self.header = header + self.col_align = col_align + self.col_valign = col_valign + self.col_char = col_char + self.col_charoff = col_charoff + self.col_styles = col_styles + self.attribs = attribs + if attribs==None: + self.attribs = {} + + def __str__(self): + """return the HTML code for the table row as a string""" + attribs_str = "" + if self.bgcolor: self.attribs['bgcolor'] = self.bgcolor + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + result = ' \n' % attribs_str + for cell in self.cells: + col = self.cells.index(cell) # cell column index + if not isinstance(cell, TableCell): + cell = TableCell(cell, header=self.header) + # apply column alignment if specified: + if self.col_align and cell.align==None: + cell.align = self.col_align[col] + if self.col_char and cell.char==None: + cell.char = self.col_char[col] + if self.col_charoff and cell.charoff==None: + cell.charoff = self.col_charoff[col] + if self.col_valign and cell.valign==None: + cell.valign = self.col_valign[col] + # apply column style if specified: + if self.col_styles and cell.style==None: + cell.style = self.col_styles[col] + result += str(cell) + result += ' \n' + return result + +#------------------------------------------------------------------------------- + +class Table (object): + """ + a Table object is used to create a HTML table. (TABLE tag) + + Attributes: + - rows: list, tuple or any iterable, containing one iterable or TableRow + object for each row + - header_row: list, tuple or any iterable, containing the header row (optional) + - border: str or int, border width + - style: str, table style in CSS syntax (thin black borders by default) + - width: str, width of the table on the page + - attribs: dict, additional attributes for the TABLE tag + - col_width: list or tuple defining width for each column + - col_align: list or tuple defining horizontal alignment for each column + - col_char: list or tuple defining alignment character for each column + - col_charoff: list or tuple defining charoff attribute for each column + - col_valign: list or tuple defining vertical alignment for each column + - col_styles: list or tuple of HTML styles for each column + + Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.1 + """ + + def __init__(self, rows=None, border='1', style=None, width=None, + cellspacing=None, cellpadding=4, attribs=None, header_row=None, + col_width=None, col_align=None, col_valign=None, + col_char=None, col_charoff=None, col_styles=None): + """TableCell constructor""" + self.border = border + self.style = style + # style for thin borders by default + if style == None: self.style = TABLE_STYLE_THINBORDER + self.width = width + self.cellspacing = cellspacing + self.cellpadding = cellpadding + self.header_row = header_row + self.rows = rows + if not rows: self.rows = [] + self.attribs = attribs + if not attribs: self.attribs = {} + self.col_width = col_width + self.col_align = col_align + self.col_char = col_char + self.col_charoff = col_charoff + self.col_valign = col_valign + self.col_styles = col_styles + + def __str__(self): + """return the HTML code for the table as a string""" + attribs_str = "" + if self.border: self.attribs['border'] = self.border + if self.style: self.attribs['style'] = self.style + if self.width: self.attribs['width'] = self.width + if self.cellspacing: self.attribs['cellspacing'] = self.cellspacing + if self.cellpadding: self.attribs['cellpadding'] = self.cellpadding + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + result = '\n' % attribs_str + # insert column tags and attributes if specified: + if self.col_width: + for width in self.col_width: + result += ' \n' % width + # The following code would also generate column attributes for style + # and alignement according to HTML4 specs, + # BUT it is not supported completely (only width) on Mozilla Firefox: + # see https://bugzilla.mozilla.org/show_bug.cgi?id=915 +## n_cols = max(len(self.col_styles), len(self.col_width), +## len(self.col_align), len(self.col_valign)) +## for i in range(n_cols): +## col = '' +## try: +## if self.col_styles[i]: +## col += ' style="%s"' % self.col_styles[i] +## except: pass +## try: +## if self.col_width[i]: +## col += ' width="%s"' % self.col_width[i] +## except: pass +## try: +## if self.col_align[i]: +## col += ' align="%s"' % self.col_align[i] +## except: pass +## try: +## if self.col_valign[i]: +## col += ' valign="%s"' % self.col_valign[i] +## except: pass +## result += '\n' % col + # First insert a header row if specified: + if self.header_row: + if not isinstance(self.header_row, TableRow): + result += str(TableRow(self.header_row, header=True)) + else: + result += str(self.header_row) + # Then all data rows: + for row in self.rows: + if not isinstance(row, TableRow): + row = TableRow(row) + # apply column alignments and styles to each row if specified: + # (Mozilla bug workaround) + if self.col_align and not row.col_align: + row.col_align = self.col_align + if self.col_char and not row.col_char: + row.col_char = self.col_char + if self.col_charoff and not row.col_charoff: + row.col_charoff = self.col_charoff + if self.col_valign and not row.col_valign: + row.col_valign = self.col_valign + if self.col_styles and not row.col_styles: + row.col_styles = self.col_styles + result += str(row) + result += '' + return result + + +#------------------------------------------------------------------------------- + +class List (object): + """ + a List object is used to create an ordered or unordered list in HTML. + (UL/OL tag) + + Attributes: + - lines: list, tuple or any iterable, containing one string for each line + - ordered: bool, choice between an ordered (OL) or unordered list (UL) + - attribs: dict, additional attributes for the OL/UL tag + + Reference: http://www.w3.org/TR/html4/struct/lists.html + """ + + def __init__(self, lines=None, ordered=False, start=None, attribs=None): + """List constructor""" + if lines: + self.lines = lines + else: + self.lines = [] + self.ordered = ordered + self.start = start + if attribs: + self.attribs = attribs + else: + self.attribs = {} + + def __str__(self): + """return the HTML code for the list as a string""" + attribs_str = "" + if self.start: self.attribs['start'] = self.start + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + if self.ordered: tag = 'OL' + else: tag = 'UL' + result = '<%s%s>\n' % (tag, attribs_str) + for line in self.lines: + result += '
  • %s\n' % str(line) + result += '\n' % tag + return result + + +##class Link (object): +## """ +## a Link object is used to create link in HTML. ( tag) +## +## Attributes: +## - text: str, text of the link +## - url: str, URL of the link +## - attribs: dict, additional attributes for the A tag +## +## Reference: http://www.w3.org/TR/html4 +## """ +## +## def __init__(self, text, url=None, attribs=None): +## """Link constructor""" +## self.text = text +## self.url = url +## if attribs: +## self.attribs = attribs +## else: +## self.attribs = {} +## +## def __str__(self): +## """return the HTML code for the link as a string""" +## attribs_str = "" +## if self.url: self.attribs['href'] = self.url +## for attr in self.attribs: +## attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) +## return '%s' % (attribs_str, text) + + +#=== FUNCTIONS ================================================================ + +# much simpler definition of a link as a function: +def Link(text, url): + return '%s' % (url, text) + +def link(text, url): + return '%s' % (url, text) + +def table(*args, **kwargs): + 'return HTML code for a table as a string. See Table class for parameters.' + return str(Table(*args, **kwargs)) + +def list(*args, **kwargs): + 'return HTML code for a list as a string. See List class for parameters.' + return str(List(*args, **kwargs)) + + +#=== MAIN ===================================================================== + +# Show sample usage when this file is launched as a script. + +if __name__ == '__main__': + + # open an HTML file to show output in a browser + f = open('test.html', 'w') + + t = Table() + t.rows.append(TableRow(['A', 'B', 'C'], header=True)) + t.rows.append(TableRow(['D', 'E', 'F'])) + t.rows.append(('i', 'j', 'k')) + f.write(str(t) + '

    \n') + print str(t) + print '-'*79 + + t2 = Table([ + ('1', '2'), + ['3', '4'] + ], width='100%', header_row=('col1', 'col2'), + col_width=('', '75%')) + f.write(str(t2) + '

    \n') + print t2 + print '-'*79 + + t2.rows.append(['5', '6']) + t2.rows[1][1] = TableCell('new', bgcolor='red') + t2.rows.append(TableRow(['7', '8'], attribs={'align': 'center'})) + f.write(str(t2) + '

    \n') + print t2 + print '-'*79 + + # sample table with column attributes and styles: + table_data = [ + ['Smith', 'John', 30, 4.5], + ['Carpenter', 'Jack', 47, 7], + ['Johnson', 'Paul', 62, 10.55], + ] + htmlcode = HTML.table(table_data, + header_row = ['Last name', 'First name', 'Age', 'Score'], + col_width=['', '20%', '10%', '10%'], + col_align=['left', 'center', 'right', 'char'], + col_styles=['font-size: large', '', 'font-size: small', 'background-color:yellow']) + f.write(htmlcode + '

    \n') + print htmlcode + print '-'*79 + + def gen_table_squares(n): + """ + Generator to create table rows for integers from 1 to n + """ +## # First, header row: +## yield TableRow(('x', 'square(x)'), header=True, bgcolor='blue') +## # Then all rows: + for x in range(1, n+1): + yield (x, x*x) + + t = Table(rows=gen_table_squares(10), header_row=('x', 'square(x)')) + f.write(str(t) + '

    \n') + + print '-'*79 + l = List(['aaa', 'bbb', 'ccc']) + f.write(str(l) + '

    \n') + l.ordered = True + f.write(str(l) + '

    \n') + l.start=10 + f.write(str(l) + '

    \n') + + f.close() diff --git a/HTML/HTML.py b/HTML/HTML.py new file mode 100644 index 0000000..b03c0a2 --- /dev/null +++ b/HTML/HTML.py @@ -0,0 +1,493 @@ +#!/usr/bin/python +# -*- coding: iso-8859-1 -*- +""" +HTML.py - v0.04 2009-07-28 Philippe Lagadec + +This module provides a few classes to easily generate HTML code such as tables +and lists. + +Project website: http://www.decalage.info/python/html + +License: CeCILL (open-source GPL compatible), see source code for details. + http://www.cecill.info +""" + +__version__ = '0.04' +__date__ = '2009-07-28' +__author__ = 'Philippe Lagadec' + +#--- LICENSE ------------------------------------------------------------------ + +# Copyright Philippe Lagadec - see http://www.decalage.info/contact for contact info +# +# This module provides a few classes to easily generate HTML tables and lists. +# +# This software is governed by the CeCILL license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/or redistribute the software under the terms of the CeCILL +# license as circulated by CEA, CNRS and INRIA at the following URL +# "http://www.cecill.info". +# +# A copy of the CeCILL license is also provided in these attached files: +# Licence_CeCILL_V2-en.html and Licence_CeCILL_V2-fr.html +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# In this respect, the user's attention is drawn to the risks associated +# with loading, using, modifying and/or developing or reproducing the +# software by the user in light of its specific status of free software, +# that may mean that it is complicated to manipulate, and that also +# therefore means that it is reserved for developers and experienced +# professionals having in-depth computer knowledge. Users are therefore +# encouraged to load and test the software's suitability as regards their +# requirements in conditions enabling the security of their systems and/or +# data to be ensured and, more generally, to use and operate it in the +# same conditions as regards security. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL license and that you accept its terms. + + +#--- CHANGES ------------------------------------------------------------------ + +# 2008-10-06 v0.01 PL: - First version +# 2008-10-13 v0.02 PL: - added cellspacing and cellpadding to table +# - added functions to ease one-step creation of tables +# and lists +# 2009-07-21 v0.03 PL: - added column attributes and styles (first attempt) +# (thanks to an idea submitted by Michal Cernoevic) +# 2009-07-28 v0.04 PL: - improved column styles, workaround for Mozilla + + +#------------------------------------------------------------------------------- +#TODO: +# - method to return a generator (yield each row) instead of a single string +# - unicode support (input and output) +# - escape text in cells (optional) +# - constants for standard colors +# - use lxml to generate well-formed HTML ? +# - add classes/functions to generate a HTML page, paragraphs, headings, etc... + + +#--- THANKS -------------------------------------------------------------------- + +# - Michal Cernoevic, for the idea of column styles. + +#--- REFERENCES ---------------------------------------------------------------- + +# HTML 4.01 specs: http://www.w3.org/TR/html4/struct/tables.html + +# Colors: http://www.w3.org/TR/html4/types.html#type-color + +# Columns alignement and style, one of the oldest and trickiest bugs in Mozilla: +# https://bugzilla.mozilla.org/show_bug.cgi?id=915 + + +#--- CONSTANTS ----------------------------------------------------------------- + +# Table style to get thin black lines in Mozilla/Firefox instead of 3D borders +TABLE_STYLE_THINBORDER = "border: 1px solid #000000; border-collapse: collapse;" +#TABLE_STYLE_THINBORDER = "border: 1px solid #000000;" + + +#=== CLASSES =================================================================== + +class TableCell (object): + """ + a TableCell object is used to create a cell in a HTML table. (TD or TH) + + Attributes: + - text: text in the cell (may contain HTML tags). May be any object which + can be converted to a string using str(). + - header: bool, false for a normal data cell (TD), true for a header cell (TH) + - bgcolor: str, background color + - width: str, width + - align: str, horizontal alignement (left, center, right, justify or char) + - char: str, alignment character, decimal point if not specified + - charoff: str, see HTML specs + - valign: str, vertical alignment (top|middle|bottom|baseline) + - style: str, CSS style + - attribs: dict, additional attributes for the TD/TH tag + + Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.6 + """ + + def __init__(self, text="", bgcolor=None, header=False, width=None, + align=None, char=None, charoff=None, valign=None, style=None, + attribs=None): + """TableCell constructor""" + self.text = text + self.bgcolor = bgcolor + self.header = header + self.width = width + self.align = align + self.char = char + self.charoff = charoff + self.valign = valign + self.style = style + self.attribs = attribs + if attribs==None: + self.attribs = {} + + def __str__(self): + """return the HTML code for the table cell as a string""" + attribs_str = "" + if self.bgcolor: self.attribs['bgcolor'] = self.bgcolor + if self.width: self.attribs['width'] = self.width + if self.align: self.attribs['align'] = self.align + if self.char: self.attribs['char'] = self.char + if self.charoff: self.attribs['charoff'] = self.charoff + if self.valign: self.attribs['valign'] = self.valign + if self.style: self.attribs['style'] = self.style + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + if self.text: + text = str(self.text) + else: + # An empty cell should at least contain a non-breaking space + text = ' ' + if self.header: + return ' %s\n' % (attribs_str, text) + else: + return ' %s\n' % (attribs_str, text) + +#------------------------------------------------------------------------------- + +class TableRow (object): + """ + a TableRow object is used to create a row in a HTML table. (TR tag) + + Attributes: + - cells: list, tuple or any iterable, containing one string or TableCell + object for each cell + - header: bool, true for a header row (TH), false for a normal data row (TD) + - bgcolor: str, background color + - col_align, col_valign, col_char, col_charoff, col_styles: see Table class + - attribs: dict, additional attributes for the TR tag + + Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.5 + """ + + def __init__(self, cells=None, bgcolor=None, header=False, attribs=None, + col_align=None, col_valign=None, col_char=None, + col_charoff=None, col_styles=None): + """TableCell constructor""" + self.bgcolor = bgcolor + self.cells = cells + self.header = header + self.col_align = col_align + self.col_valign = col_valign + self.col_char = col_char + self.col_charoff = col_charoff + self.col_styles = col_styles + self.attribs = attribs + if attribs==None: + self.attribs = {} + + def __str__(self): + """return the HTML code for the table row as a string""" + attribs_str = "" + if self.bgcolor: self.attribs['bgcolor'] = self.bgcolor + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + result = ' \n' % attribs_str + for cell in self.cells: + col = self.cells.index(cell) # cell column index + if not isinstance(cell, TableCell): + cell = TableCell(cell, header=self.header) + # apply column alignment if specified: + if self.col_align and cell.align==None: + cell.align = self.col_align[col] + if self.col_char and cell.char==None: + cell.char = self.col_char[col] + if self.col_charoff and cell.charoff==None: + cell.charoff = self.col_charoff[col] + if self.col_valign and cell.valign==None: + cell.valign = self.col_valign[col] + # apply column style if specified: + if self.col_styles and cell.style==None: + cell.style = self.col_styles[col] + result += str(cell) + result += ' \n' + return result + +#------------------------------------------------------------------------------- + +class Table (object): + """ + a Table object is used to create a HTML table. (TABLE tag) + + Attributes: + - rows: list, tuple or any iterable, containing one iterable or TableRow + object for each row + - header_row: list, tuple or any iterable, containing the header row (optional) + - border: str or int, border width + - style: str, table style in CSS syntax (thin black borders by default) + - width: str, width of the table on the page + - attribs: dict, additional attributes for the TABLE tag + - col_width: list or tuple defining width for each column + - col_align: list or tuple defining horizontal alignment for each column + - col_char: list or tuple defining alignment character for each column + - col_charoff: list or tuple defining charoff attribute for each column + - col_valign: list or tuple defining vertical alignment for each column + - col_styles: list or tuple of HTML styles for each column + + Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.1 + """ + + def __init__(self, rows=None, border='1', style=None, width=None, + cellspacing=None, cellpadding=4, attribs=None, header_row=None, + col_width=None, col_align=None, col_valign=None, + col_char=None, col_charoff=None, col_styles=None): + """TableCell constructor""" + self.border = border + self.style = style + # style for thin borders by default + if style == None: self.style = TABLE_STYLE_THINBORDER + self.width = width + self.cellspacing = cellspacing + self.cellpadding = cellpadding + self.header_row = header_row + self.rows = rows + if not rows: self.rows = [] + self.attribs = attribs + if not attribs: self.attribs = {} + self.col_width = col_width + self.col_align = col_align + self.col_char = col_char + self.col_charoff = col_charoff + self.col_valign = col_valign + self.col_styles = col_styles + + def __str__(self): + """return the HTML code for the table as a string""" + attribs_str = "" + if self.border: self.attribs['border'] = self.border + if self.style: self.attribs['style'] = self.style + if self.width: self.attribs['width'] = self.width + if self.cellspacing: self.attribs['cellspacing'] = self.cellspacing + if self.cellpadding: self.attribs['cellpadding'] = self.cellpadding + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + result = '\n' % attribs_str + # insert column tags and attributes if specified: + if self.col_width: + for width in self.col_width: + result += ' \n' % width + # The following code would also generate column attributes for style + # and alignement according to HTML4 specs, + # BUT it is not supported completely (only width) on Mozilla Firefox: + # see https://bugzilla.mozilla.org/show_bug.cgi?id=915 +## n_cols = max(len(self.col_styles), len(self.col_width), +## len(self.col_align), len(self.col_valign)) +## for i in range(n_cols): +## col = '' +## try: +## if self.col_styles[i]: +## col += ' style="%s"' % self.col_styles[i] +## except: pass +## try: +## if self.col_width[i]: +## col += ' width="%s"' % self.col_width[i] +## except: pass +## try: +## if self.col_align[i]: +## col += ' align="%s"' % self.col_align[i] +## except: pass +## try: +## if self.col_valign[i]: +## col += ' valign="%s"' % self.col_valign[i] +## except: pass +## result += '\n' % col + # First insert a header row if specified: + if self.header_row: + if not isinstance(self.header_row, TableRow): + result += str(TableRow(self.header_row, header=True)) + else: + result += str(self.header_row) + # Then all data rows: + for row in self.rows: + if not isinstance(row, TableRow): + row = TableRow(row) + # apply column alignments and styles to each row if specified: + # (Mozilla bug workaround) + if self.col_align and not row.col_align: + row.col_align = self.col_align + if self.col_char and not row.col_char: + row.col_char = self.col_char + if self.col_charoff and not row.col_charoff: + row.col_charoff = self.col_charoff + if self.col_valign and not row.col_valign: + row.col_valign = self.col_valign + if self.col_styles and not row.col_styles: + row.col_styles = self.col_styles + result += str(row) + result += '' + return result + + +#------------------------------------------------------------------------------- + +class List (object): + """ + a List object is used to create an ordered or unordered list in HTML. + (UL/OL tag) + + Attributes: + - lines: list, tuple or any iterable, containing one string for each line + - ordered: bool, choice between an ordered (OL) or unordered list (UL) + - attribs: dict, additional attributes for the OL/UL tag + + Reference: http://www.w3.org/TR/html4/struct/lists.html + """ + + def __init__(self, lines=None, ordered=False, start=None, attribs=None): + """List constructor""" + if lines: + self.lines = lines + else: + self.lines = [] + self.ordered = ordered + self.start = start + if attribs: + self.attribs = attribs + else: + self.attribs = {} + + def __str__(self): + """return the HTML code for the list as a string""" + attribs_str = "" + if self.start: self.attribs['start'] = self.start + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + if self.ordered: tag = 'OL' + else: tag = 'UL' + result = '<%s%s>\n' % (tag, attribs_str) + for line in self.lines: + result += '

  • %s\n' % str(line) + result += '\n' % tag + return result + + +##class Link (object): +## """ +## a Link object is used to create link in HTML. ( tag) +## +## Attributes: +## - text: str, text of the link +## - url: str, URL of the link +## - attribs: dict, additional attributes for the A tag +## +## Reference: http://www.w3.org/TR/html4 +## """ +## +## def __init__(self, text, url=None, attribs=None): +## """Link constructor""" +## self.text = text +## self.url = url +## if attribs: +## self.attribs = attribs +## else: +## self.attribs = {} +## +## def __str__(self): +## """return the HTML code for the link as a string""" +## attribs_str = "" +## if self.url: self.attribs['href'] = self.url +## for attr in self.attribs: +## attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) +## return '%s' % (attribs_str, text) + + +#=== FUNCTIONS ================================================================ + +# much simpler definition of a link as a function: +def Link(text, url): + return '%s' % (url, text) + +def link(text, url): + return '%s' % (url, text) + +def table(*args, **kwargs): + 'return HTML code for a table as a string. See Table class for parameters.' + return str(Table(*args, **kwargs)) + +def list(*args, **kwargs): + 'return HTML code for a list as a string. See List class for parameters.' + return str(List(*args, **kwargs)) + + +#=== MAIN ===================================================================== + +# Show sample usage when this file is launched as a script. + +if __name__ == '__main__': + + # open an HTML file to show output in a browser + f = open('test.html', 'w') + + t = Table() + t.rows.append(TableRow(['A', 'B', 'C'], header=True)) + t.rows.append(TableRow(['D', 'E', 'F'])) + t.rows.append(('i', 'j', 'k')) + f.write(str(t) + '

    \n') + print str(t) + print '-'*79 + + t2 = Table([ + ('1', '2'), + ['3', '4'] + ], width='100%', header_row=('col1', 'col2'), + col_width=('', '75%')) + f.write(str(t2) + '

    \n') + print t2 + print '-'*79 + + t2.rows.append(['5', '6']) + t2.rows[1][1] = TableCell('new', bgcolor='red') + t2.rows.append(TableRow(['7', '8'], attribs={'align': 'center'})) + f.write(str(t2) + '

    \n') + print t2 + print '-'*79 + + # sample table with column attributes and styles: + table_data = [ + ['Smith', 'John', 30, 4.5], + ['Carpenter', 'Jack', 47, 7], + ['Johnson', 'Paul', 62, 10.55], + ] + htmlcode = HTML.table(table_data, + header_row = ['Last name', 'First name', 'Age', 'Score'], + col_width=['', '20%', '10%', '10%'], + col_align=['left', 'center', 'right', 'char'], + col_styles=['font-size: large', '', 'font-size: small', 'background-color:yellow']) + f.write(htmlcode + '

    \n') + print htmlcode + print '-'*79 + + def gen_table_squares(n): + """ + Generator to create table rows for integers from 1 to n + """ +## # First, header row: +## yield TableRow(('x', 'square(x)'), header=True, bgcolor='blue') +## # Then all rows: + for x in range(1, n+1): + yield (x, x*x) + + t = Table(rows=gen_table_squares(10), header_row=('x', 'square(x)')) + f.write(str(t) + '

    \n') + + print '-'*79 + l = List(['aaa', 'bbb', 'ccc']) + f.write(str(l) + '

    \n') + l.ordered = True + f.write(str(l) + '

    \n') + l.start=10 + f.write(str(l) + '

    \n') + + f.close() diff --git a/HTML/HTML.py.html b/HTML/HTML.py.html new file mode 100644 index 0000000..4a1a80c --- /dev/null +++ b/HTML/HTML.py.html @@ -0,0 +1,206 @@ + + +Python: module HTML + + + + +
     
    + 
    HTML (version 0.04, 2009-07-28)
    index
    html.py
    +

    HTML.py - v0.04 2009-07-28 Philippe Lagadec

    +This module provides a few classes to easily generate HTML code such as tables
    +and lists.

    +Project website: http://www.decalage.info/python/html

    +License: CeCILL (open-source GPL compatible), see source code for details.
    +         http://www.cecill.info

    +

    + + + + + +
     
    +Classes
           
    +
    __builtin__.object +
    +
    +
    List +
    Table +
    TableCell +
    TableRow +
    +
    +
    +

    + + + + + + + +
     
    +class List(__builtin__.object)
       List object is used to create an ordered or unordered list in HTML.
    +(UL/OL tag)

    +Attributes:
    +- lines: list, tuple or any iterable, containing one string for each line
    +- ordered: bool, choice between an ordered (OL) or unordered list (UL)
    +- attribs: dict, additional attributes for the OL/UL tag

    +Reference: http://www.w3.org/TR/html4/struct/lists.html
     
     Methods defined here:
    +
    __init__(self, lines=None, ordered=False, start=None, attribs=None)
    List constructor
    + +
    __str__(self)
    return the HTML code for the list as a string
    + +
    +Data descriptors defined here:
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined)
    +
    +

    + + + + + + + +
     
    +class Table(__builtin__.object)
       Table object is used to create a HTML table. (TABLE tag)

    +Attributes:
    +- rows: list, tuple or any iterable, containing one iterable or TableRow
    +        object for each row
    +- header_row: list, tuple or any iterable, containing the header row (optional)
    +- border: str or int, border width
    +- style: str, table style in CSS syntax (thin black borders by default)
    +- width: str, width of the table on the page
    +- attribs: dict, additional attributes for the TABLE tag
    +- col_width: list or tuple defining width for each column
    +- col_align: list or tuple defining horizontal alignment for each column
    +- col_char: list or tuple defining alignment character for each column
    +- col_charoff: list or tuple defining charoff attribute for each column
    +- col_valign: list or tuple defining vertical alignment for each column
    +- col_styles: list or tuple of HTML styles for each column

    +Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.1
     
     Methods defined here:
    +
    __init__(self, rows=None, border='1', style=None, width=None, cellspacing=None, cellpadding=4, attribs=None, header_row=None, col_width=None, col_align=None, col_valign=None, col_char=None, col_charoff=None, col_styles=None)
    TableCell constructor
    + +
    __str__(self)
    return the HTML code for the table as a string
    + +
    +Data descriptors defined here:
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined)
    +
    +

    + + + + + + + +
     
    +class TableCell(__builtin__.object)
       TableCell object is used to create a cell in a HTML table. (TD or TH)

    +Attributes:
    +- text: text in the cell (may contain HTML tags). May be any object which
    +        can be converted to a string using str().
    +- header: bool, false for a normal data cell (TD), true for a header cell (TH)
    +- bgcolor: str, background color
    +- width: str, width
    +- align: str, horizontal alignement (left, center, right, justify or char)
    +- char: str, alignment character, decimal point if not specified
    +- charoff: str, see HTML specs
    +- valign: str, vertical alignment (top|middle|bottom|baseline)
    +- style: str, CSS style
    +- attribs: dict, additional attributes for the TD/TH tag

    +Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.6
     
     Methods defined here:
    +
    __init__(self, text='', bgcolor=None, header=False, width=None, align=None, char=None, charoff=None, valign=None, style=None, attribs=None)
    TableCell constructor
    + +
    __str__(self)
    return the HTML code for the table cell as a string
    + +
    +Data descriptors defined here:
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined)
    +
    +

    + + + + + + + +
     
    +class TableRow(__builtin__.object)
       TableRow object is used to create a row in a HTML table. (TR tag)

    +Attributes:
    +- cells: list, tuple or any iterable, containing one string or TableCell
    +         object for each cell
    +- header: bool, true for a header row (TH), false for a normal data row (TD)
    +- bgcolor: str, background color
    +- col_align, col_valign, col_char, col_charoff, col_styles: see Table class
    +- attribs: dict, additional attributes for the TR tag

    +Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.5
     
     Methods defined here:
    +
    __init__(self, cells=None, bgcolor=None, header=False, attribs=None, col_align=None, col_valign=None, col_char=None, col_charoff=None, col_styles=None)
    TableCell constructor
    + +
    __str__(self)
    return the HTML code for the table row as a string
    + +
    +Data descriptors defined here:
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined)
    +
    +

    + + + + + +
     
    +Functions
           
    Link(text, url)
    # much simpler definition of a link as a function:
    +
    link(text, url)
    +
    list(*args, **kwargs)
    return HTML code for a list as a string. See List class for parameters.
    +
    table(*args, **kwargs)
    return HTML code for a table as a string. See Table class for parameters.
    +

    + + + + + +
     
    +Data
           TABLE_STYLE_THINBORDER = 'border: 1px solid #000000; border-collapse: collapse;'
    +__author__ = 'Philippe Lagadec'
    +__date__ = '2009-07-28'
    +__version__ = '0.04'

    + + + + + +
     
    +Author
           Philippe Lagadec
    + \ No newline at end of file diff --git a/HTML/HTML_tutorial.py b/HTML/HTML_tutorial.py new file mode 100644 index 0000000..bf01dde --- /dev/null +++ b/HTML/HTML_tutorial.py @@ -0,0 +1,208 @@ +# HTML.py tutorial - P. Lagadec + +# see also http://www.decalage.info/en/python/html for more details and +# updates. + + +import HTML + +# open an HTML file to show output in a browser +HTMLFILE = 'HTML_tutorial_output.html' +f = open(HTMLFILE, 'w') + + +#=== TABLES =================================================================== + +# 1) a simple HTML table may be built from a list of lists: + +table_data = [ + ['Last name', 'First name', 'Age'], + ['Smith', 'John', 30], + ['Carpenter', 'Jack', 47], + ['Johnson', 'Paul', 62], + ] + +htmlcode = HTML.table(table_data) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + +#------------------------------------------------------------------------------- + +# 2) a header row may be specified: it will appear in bold in browsers + +table_data = [ + ['Smith', 'John', 30], + ['Carpenter', 'Jack', 47], + ['Johnson', 'Paul', 62], + ] + +htmlcode = HTML.table(table_data, + header_row=['Last name', 'First name', 'Age']) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + + +#------------------------------------------------------------------------------- + +# 3) you may also create a Table object and add rows one by one: + +t = HTML.Table(header_row=['x', 'square(x)', 'cube(x)']) +for x in range(1,10): + t.rows.append([x, x*x, x*x*x]) +htmlcode = str(t) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + + +#------------------------------------------------------------------------------- + +# 4) rows may be any iterable (list, tuple, ...) including a generator: +# (this is useful to save memory when generating a large table) + +def gen_rows(i): + 'rows generator' + for x in range(1,i): + yield [x, x*x, x*x*x] + +htmlcode = HTML.table(gen_rows(10), header_row=['x', 'square(x)', 'cube(x)']) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + + +#------------------------------------------------------------------------------- + +# 5) to choose a specific background color for a cell, use a TableCell +# object: + +HTML_COLORS = ['Black', 'Green', 'Silver', 'Lime', 'Gray', 'Olive', 'White', + 'Maroon', 'Navy', 'Red', 'Blue', 'Purple', 'Teal', 'Fuchsia', 'Aqua'] + +t = HTML.Table(header_row=['Name', 'Color']) +for colorname in HTML_COLORS: + colored_cell = HTML.TableCell(' ', bgcolor=colorname) + t.rows.append([colorname, colored_cell]) +htmlcode = str(t) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + + +#------------------------------------------------------------------------------- + +# 6) A simple way to generate a test report: + +# dictionary of test results, indexed by test id: +test_results = { + 'test 1': 'success', + 'test 2': 'failure', + 'test 3': 'success', + 'test 4': 'error', + } + +# dict of colors for each result: +result_colors = { + 'success': 'lime', + 'failure': 'red', + 'error': 'yellow', + } + +t = HTML.Table(header_row=['Test', 'Result']) +for test_id in sorted(test_results): + # create the colored cell: + color = result_colors[test_results[test_id]] + colored_result = HTML.TableCell(test_results[test_id], bgcolor=color) + # append the row with two cells: + t.rows.append([test_id, colored_result]) +htmlcode = str(t) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + +#------------------------------------------------------------------------------- + +# 7) sample table with column attributes and styles: +table_data = [ + ['Smith', 'John', 30, 4.5], + ['Carpenter', 'Jack', 47, 7], + ['Johnson', 'Paul', 62, 10.55], + ] +htmlcode = HTML.table(table_data, + header_row = ['Last name', 'First name', 'Age', 'Score'], + col_width=['', '20%', '10%', '10%'], + col_align=['left', 'center', 'right', 'char'], + col_styles=['font-size: large', '', 'font-size: small', 'background-color:yellow']) +f.write(htmlcode + '

    \n') +print htmlcode +print '-'*79 + + + +#=== LISTS =================================================================== + +# 1) a HTML list (with bullets) may be built from a Python list of strings: + +a_list = ['john', 'paul', 'jack'] +htmlcode = HTML.list(a_list) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + + +# 2) it is easy to change it into a numbered (ordered) list: + +htmlcode = HTML.list(a_list, ordered=True) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + + +# 3) Lines of a list may also be added one by one, when using the List class: + +html_list = HTML.List() +for i in range(1,10): + html_list.lines.append('square(%d) = %d' % (i, i*i)) +htmlcode = str(html_list) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + + +# 4) To save memory, a large list may be built from a generator: + +def gen_lines(i): + 'lines generator' + for x in range(1,i): + yield 'square(%d) = %d' % (x, x*x) +htmlcode = HTML.list(gen_lines(10)) +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + + +#=== LINKS =================================================================== + +# How to create a link: + +htmlcode = HTML.link('Decalage website', 'http://www.decalage.info') +print htmlcode +f.write(htmlcode) +f.write('

    ') +print '-'*79 + + +f.close() +print '\nOpen the file %s in a browser to see the result.' % HTMLFILE diff --git a/HTML/Licence_CeCILL_V2-en.html b/HTML/Licence_CeCILL_V2-en.html new file mode 100644 index 0000000..c573ce2 --- /dev/null +++ b/HTML/Licence_CeCILL_V2-en.html @@ -0,0 +1,1002 @@ + + + + +CeCILL FREE SOFTWARE LICENSINGE + AGREEMENT CeCILL + + + + +

    CeCILL FREE SOFTWARE LICENSE + AGREEMENT

    + + + +
    +

    Notice

    +

    +This +Agreement is a Free Software +license agreement that is the result of +discussions between its authors in order to ensure compliance with +the two main principles guiding its drafting:

    + + + +
      +
    • firstly, +compliance with the principles governing the distribution of Free Software: +access to source code, broad rights granted to users, +
    • +
    • +secondly, the election of a governing law, French law, with which it is +conformant, both as regards the law of torts and +intellectual property law, and the protection that it offers to +both authors and holders of the economic rights over software. +
    • +
    + + +

    The + authors of the + +CeCILL1 +license are:

    + +

    Commissariat +à l'Energie Atomique - CEA, a public +scientific, technical and industrial establishment, having its +principal place of business at 31-33 rue de la Fédération, +75752 Paris +cedex 15, France.

    + +

    Centre +National de la Recherche Scientifique - CNRS, +a public scientific and technological establishment, having its +principal place of business at +3 rue Michel-Ange 75794 Paris cedex 16, France.

    + +

    Institut +National de Recherche en Informatique et en Automatique - INRIA, +a public scientific and technological establishment, having its +principal place of business at Domaine de Voluceau, Rocquencourt, BP +105, 78153 Le Chesnay cedex, France.

    + +
    +
    +

    Preamble

    + +

    The +purpose of this Free Software +license +agreement +is to grant users +the right to modify and redistribute the software governed by this +license within the framework of an open source +distribution model. +

    + +

    The +exercising of these rights is conditional upon certain obligations +for users so as to preserve this status + for all subsequent +redistributions.

    + +

    In consideration of access to +the source code and the rights to copy, +modify and redistribute granted by the license, users are provided only +with a limited warranty and the +software's author, the holder of the economic rights, and the +successive licensors only have limited liability. +

    + +

    In +this respect, + +the risks +associated with loading, using, modifying and/or developing or +reproducing the software by the user +are brought to the user's attention, +given its Free Software +status, +which may make it + complicated to use, + +with the result that its use is +reserved for developers and experienced professionals having in-depth +computer knowledge. +Users are therefore encouraged to load and test the Software's suitability as +regards their requirements in conditions enabling the security of their +systems and/or data to be ensured and, more generally, to use and operate it +in the same conditions of security. This Agreement may be freely reproduced +and published, provided it is not altered, and that no +provisions are either added or removed +herefrom.

    + +

    This +Agreement may apply to any or all software for which the holder of +the economic rights decides to submit the use +thereof to its provisions.

    + +
    +
    +

    Article 1 - DEFINITIONS

    + +

    For + the purpose of this Agreement, + when the following expressions + commence with a capital letter, they shall have the following + meaning:

    + +

    Agreement: + + means this license + agreement, and + its possible subsequent versions and annexes. + +

    + +

    Software: + + means the software in its Object Code and/or Source Code form and, + where applicable, its documentation, "as is" + when the Licensee accepts the Agreement. + +

    + +

    Initial Software: + + means the Software in its Source Code and + possibly its Object Code form and, where applicable, its + documentation, "as is" when it is + first distributed + under the terms and conditions of the + Agreement. + +

    + +

    Modified Software: + + means the Software modified by at least one Contribution. + +

    + +

    Source Code: + + means all the Software's instructions and program lines to which + access is required so as to modify the Software. + +

    + +

    Object Code: + + means the binary files originating from the + compilation of the Source Code. + +

    + +

    Holder: + + means the holder(s) of the economic rights over the Initial Software. + +

    + +

    Licensee: + + means + the Software user(s) having accepted the Agreement. + +

    + +

    Contributor: + + means a Licensee having made at least one Contribution. + +

    + +

    Licensor: + + means the Holder, or any other individual or legal + entity, who distributes the Software under + the Agreement. + +

    + +

    Contribution: + + means any or all modifications, + corrections, translations, adaptations and/or new + functions + integrated into the Software by any or all Contributors, + as well as any or all + Internal Modules. + +

    + +

    Module: + + means a set of sources files including their documentation + that enables + supplementary + functions or services in + addition to those offered by the Software. + +

    + +

    External Module: + + means any or all Modules, + + not derived from the Software, + so that this Module + and the Software run in + separate address spaces, with one calling the other when they are + run. + +

    + +

    Internal Module: + + means any or all + Module, connected to the Software so that they both execute + in the same address space. + + +

    + + +

    GNU GPL: + + means the GNU General Public License version 2 or any subsequent + version, as published by the Free Software Foundation Inc. + +

    + + +

    Parties: + + mean both the Licensee and the Licensor. + +

    + +

    These + expressions may be used both in singular and plural form.

    + +
    +
    +

    Article 2 - PURPOSE

    + +

    The + purpose of the Agreement is the grant + by the Licensor to the + Licensee of a non-exclusive, transferable + and worldwide license + for the Software as set forth in Article 5 + hereinafter for the whole term of the + protection + granted by the rights over said Software. +

    + +
    +
    +

    Article 3 - ACCEPTANCE

    + +
    +

    3.1 The + Licensee shall be deemed as having accepted + the terms and conditions of this Agreement + upon the occurrence of the + first of the following events:

    +
      +
    • (i) + loading the Software by any or all means, notably, by downloading + from a remote server, or by loading from a physical medium;
    • +
    • (ii) + the first time the Licensee exercises any of the rights granted + hereunder.
    • +
    +
    + +
    +

    3.2 One + copy of the Agreement, containing a notice relating to the + characteristics + of the Software, to the limited warranty, and to the + fact that its use is + restricted to + experienced users has been provided to the + Licensee prior to its acceptance as set forth in Article + 3.1 + hereinabove, and the Licensee hereby acknowledges that it + has read and understood it.

    +
    + +
    +
    +

    Article 4 - EFFECTIVE DATE AND TERM

    + + +
    +

    +4.1 EFFECTIVE DATE

    + +

    The + Agreement shall become effective on the date when it is accepted by + the Licensee as set forth in Article 3.1.

    +
    + +
    +

    +4.2 TERM

    + +

    The + Agreement shall remain in force + for the entire legal term of + protection of the economic rights over the Software.

    + +
    + +
    +
    +

    + Article 5 - SCOPE OF RIGHTS GRANTED

    + +

    The + Licensor hereby grants to the Licensee, who + accepts, the + following rights over the Software + for any or all use, and for + the term of the Agreement, on the basis of the terms and conditions + set forth hereinafter. +

    +

    + + Besides, if the Licensor owns or comes to + own one or more patents + protecting all or part of the + functions of the Software + or of its components, + the Licensor undertakes not to enforce the rights granted by these + patents against successive Licensees using, exploiting or + modifying the Software. If these patents are + transferred, the Licensor + undertakes to have the transferees subscribe to the + obligations set forth in this + paragraph. +

    + +
    +

    +5.1 RIGHT OF USE

    + +

    The + Licensee is authorized to use the Software, without any limitation as to its fields + of application, with it being hereinafter + specified that this comprises: +

    +
      +
    1. permanent + or temporary reproduction of all or part of the Software by any or + all means and in any or all form. +

    2. +
    3. loading, + displaying, running, or storing the Software on any or all + medium.

    4. +
    5. entitlement + to observe, study or test + its operation + so as to + determine + the ideas and principles behind any or all + constituent elements of said Software. This shall apply when + the + Licensee carries out any or all loading, displaying, running, + transmission or storage operation as regards the Software, + that it is entitled to carry out hereunder.

    6. +
    + +
    + +
    +

    +5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS

    + +

    + The + right to make Contributions includes the right to translate, adapt, + arrange, or make any or all modifications to the Software, + and the + right to reproduce the resulting Software.

    +

    The + Licensee is authorized to make any or all Contributions to + the Software provided that it + includes an explicit notice that it is the + author + of said Contribution and indicates the date of the + creation thereof.

    + +
    + +
    +

    +5.3 RIGHT OF DISTRIBUTION +

    + +

    In + particular, the right of distribution includes the + right to publish, transmit and communicate + the Software to the general public + on any or all medium, and by any or all means, and the right to + market, either in consideration of a fee, or free of charge, + one or more copies of the Software + by any + means.

    +

    The + Licensee is further authorized to + distribute copies of the + modified or unmodified Software to third parties according to the + terms and conditions set forth hereinafter.

    + +
    +

    +5.3.1 DISTRIBUTION OF SOFTWARE + WITHOUT MODIFICATION

    + +

    The + Licensee is authorized to distribute + true copies of the Software + in Source Code or Object Code form, provided that + said distribution + complies with all the provisions of the + Agreement and is accompanied by:

    +
      +
    1. a + copy of the Agreement,

    2. +
    3. a + notice relating to the limitation of both the Licensor's + warranty and liability as set forth in Articles 8 and 9, +

    4. +
    +

    and + that, in the event that only the Object Code + of the Software is redistributed, the Licensee allows + future Licensees unhindered access to the + + full Source Code of the Software + by + indicating how to access it, + it being understood that the additional cost of acquiring the Source + Code shall not exceed the cost of transferring the data. +

    + +
    + +
    +

    +5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE

    + +

    When + the Licensee makes a Contribution to the Software, the terms and + conditions for the distribution + of the Modified Software become subject to all the provisions + of this Agreement. +

    +

    The + Licensee is authorized to distribute + the Modified Software, in + Source Code or Object Code form, provided that said + distribution + complies with all the provisions of the Agreement and is accompanied + by: +

    +
      +
    1. a + copy of the Agreement,

    2. +
    3. +

      a + notice relating to the limitation of both the Licensor's + warranty and liability as set forth in Articles 8 and 9,

      +
    4. +
    +

    and + that, in the event that only the + Object Code of the Modified Software + is redistributed, the Licensee allows future Licensees + unhindered access to the + full Source Code of the Modified Software + by + indicating how to access it, + it being understood that the additional cost of acquiring the Source + Code shall not exceed the cost of transferring the data. +

    + +
    + +
    +

    +5.3.3 DISTRIBUTION OF + EXTERNAL MODULES

    + +

    When + the Licensee has developed + an External Module, the terms and + conditions + of this Agreement do not apply to said + External Module, that may be + distributed under a separate + license + agreement.

    + +
    + +
    +

    +5.3.4 COMPATIBILITY WITH THE GNU GPL +

    + + + + +

    The Licensee can include a code that is subject to the provisions + of one of the versions of the GNU GPL in the Modified or unmodified + Software, and distribute that entire code under the terms of the + same version of the GNU GPL.

    + +

    The Licensee can include the Modified or unmodified Software in a + code that is subject to the provisions of one of the versions of + the GNU GPL, and distribute that entire code under the terms of + the same version of the GNU GPL. +

    + + +
    + +
    + +
    +
    +

    Article 6 - INTELLECTUAL PROPERTY +

    + +
    +

    +6.1 OVER THE INITIAL SOFTWARE

    + +

    The + Holder owns the economic rights over the Initial Software. Any or + all use of the Initial Software is subject to compliance with the + terms and conditions under which the Holder has elected to + distribute its work and no one shall be entitled to modify the terms + and conditions for the distribution of said Initial Software.

    +

    The + Holder undertakes that the Initial + Software + will remain ruled at least by the current license, + for the duration set + forth in article 4.2.

    + +
    + +
    +

    +6.2 OVER THE CONTRIBUTIONS

    + +

    + + + A Licensee who develops a Contribution is the owner + of the intellectual property rights over this Contribution + as defined by + applicable law.

    + +
    + +
    +

    +6.3 OVER THE + EXTERNAL MODULES

    + +

    + A + Licensee + + who develops an External Module + is the owner of the intellectual property rights over + this External Module as defined by applicable law and is + + free to choose the type of agreement that shall govern its + distribution.

    + +
    + +
    +

    +6.4 JOINT PROVISIONS

    + +
    +

    The + Licensee expressly undertakes:

    +
      +
    1. not + to remove, or modify, in any manner, the + intellectual + property notices + attached to the Software;

    2. +
    3. +

      to + reproduce said notices, in an identical manner, in the copies of + the Software modified or not.

      +
    4. +
    +
    + +
    +

    The + Licensee undertakes not to directly or indirectly infringe + the intellectual property rights of the Holder and/or Contributors + on the Software + and to take, where applicable, vis-à-vis its staff, any + and + all measures required to ensure respect of + said intellectual + property rights of the Holder and/or Contributors.

    +
    + +
    + +
    +
    +

    Article 7 - RELATED SERVICES

    + +
    + +

    7.1 Under + no circumstances shall the Agreement oblige the Licensor to provide + technical assistance or maintenance services for the Software.

    + +

    However, + the Licensor is entitled to offer this type of + services. The terms + and conditions of such technical assistance, and/or such + maintenance, shall be set forth in a separate + instrument. Only + the Licensor offering said maintenance and/or technical assistance + services shall incur liability therefor.

    + +
    + +
    + +

    7.2 Similarly, + any Licensor is entitled to offer to its + licensees, under its + sole responsibility, + a warranty, that shall only + be binding upon itself, for the redistribution of the Software + and/or the Modified Software, under terms and conditions + that + it is free to decide. Said warranty, and the financial + terms and conditions of its application, shall be subject + of a separate + instrument executed between the Licensor and the Licensee.

    + +
    + +
    +
    +

    Article 8 - LIABILITY

    + +
    +

    8.1 Subject + to the provisions of Article 8.2, + + the Licensee shall be entitled to claim compensation for + any direct + loss it may have suffered from the Software + as a result of a fault on the part of the relevant + Licensor, subject to + providing evidence thereof. +

    +
    + +
    +

    8.2 The + Licensor's liability is limited to the commitments made under + this Agreement and shall not be incurred as a result of in + particular: (i) loss due the Licensee's total or partial + failure to fulfill its obligations, (ii) direct or consequential + loss that is suffered by the Licensee due to the + + use or performance of the Software, + + + and (iii) + more generally, any + consequential loss. + In particular + the Parties expressly + agree that any or all pecuniary or business loss (i.e. loss of data, + loss of profits, operating loss, loss of customers or orders, + opportunity cost, any disturbance to business activities) or any or + all legal proceedings instituted against the Licensee by a third + party, shall constitute consequential loss and shall not provide + entitlement to any or all compensation from the Licensor. +

    +
    + +
    +
    +

    Article 9 - WARRANTY

    + +
    +

    9.1 The + Licensee acknowledges that the + scientific and technical + state-of-the-art when the Software + was + distributed did not enable all possible uses to be tested and + verified, nor for the presence of + + possible defects to be detected. + In this respect, the Licensee's attention has been drawn to + the risks associated with loading, using, modifying and/or + developing and reproducing the Software + which are reserved for + experienced users.

    +

    The + Licensee shall be responsible for verifying, by any or all means, + the product's suitability for its requirements, its good working order, and for + ensuring that it shall not cause damage + to either persons or + properties. +

    +
    + +
    +

    9.2 The Licensor + hereby represents, in good faith, that it is entitled to grant all + the rights over the Software (including in + particular the rights set + forth in Article 5).

    +
    + +
    +

    9.3 + The + Licensee acknowledges that the Software is supplied "as is" + by the Licensor without any other express or tacit + warranty, + other than that provided for in Article + 9.2 and, in particular, + without any warranty as to its + + commercial value, its secured, safe, + innovative or relevant nature. +

    +

    Specifically, + the Licensor does not warrant that the Software is free from any + error, that it will + operate without interruption, + that it will be + compatible with the Licensee's own equipment and + software configuration, + nor that it will meet the + Licensee's requirements. +

    +
    + +
    +

    9.4 The + Licensor does not either expressly or tacitly warrant that the + Software does not infringe any third party + intellectual + property right + relating to a patent, software or any + other property right. + Therefore, the Licensor disclaims any and all liability towards the + Licensee arising out of any or all proceedings for + infringement that may be + instituted in respect of the use, modification and redistribution of + the Software. Nevertheless, should such proceedings be instituted + against the Licensee, the Licensor shall provide it with technical + and legal assistance for its defense. Such technical and legal + assistance shall be decided on a case-by-case basis + between the + relevant Licensor and the Licensee pursuant to a memorandum of + understanding. The Licensor disclaims any and + all liability as + regards the Licensee's use of the + + name of the Software. No + warranty is given as regards + the existence of prior rights + over the name of the Software or as regards + the existence of a trademark.

    +
    + +
    +
    +

    Article 10 - TERMINATION

    + +
    +

    10.1 + In the event of a breach by the + Licensee of its obligations hereunder, the Licensor may + automatically terminate this Agreement thirty (30) + days after + notice has been sent to the Licensee and has remained ineffective.

    +
    + +
    +

    10.2 A + Licensee whose Agreement is terminated shall no longer be authorized + to use, modify or distribute the Software. However, any + + licenses that it may have granted prior to termination of the + Agreement shall remain valid subject to their having been granted in + compliance with the terms and conditions hereof. +

    +
    + +
    +
    +

    Article 11 - MISCELLANEOUS

    + +
    +

    +11.1 EXCUSABLE EVENTS

    + +

    Neither + Party shall be liable for any or all delay, or failure to perform + the Agreement, that may be attributable to an event of force + majeure, an act of God or an outside cause, such as + + defective functioning or interruptions + of the electricity or + telecommunications networks, network + paralysis following a + virus attack, intervention by + government authorities, + natural disasters, water damage, + earthquakes, fire, explosions, + strikes and labor unrest, war, etc.

    + +
    + +
    +

    11.2 Any Failure by either + Party, on one or more + occasions, to invoke one or more of the + provisions hereof, shall under no + circumstances be interpreted as being a waiver by the interested + Party of its right to invoke said + provision(s) subsequently.

    +
    + +
    +

    11.3 The + Agreement cancels and replaces + any or all previous agreements, whether written or oral, + between the + Parties and having the same purpose, and constitutes the entirety of + the agreement between said Parties concerning said purpose. No + supplement or modification to the terms and conditions hereof shall + be effective as between the Parties + unless it is made in writing and + signed by their duly authorized representatives. +

    +
    + +
    +

    11.4 In + the event that one or more + of the provisions hereof were to conflict with a current or future + applicable act or legislative text, said act or legislative text + shall prevail, and the Parties + shall make the necessary + amendments so as to comply with + said act or legislative + text. All other provisions shall remain + effective. Similarly, + invalidity of a provision of the + Agreement, + for any reason whatsoever, shall not cause the Agreement as a whole + to be invalid. +

    +
    + +
    +

    +11.5 LANGUAGE

    + +

    The + Agreement is drafted in both French and English + and both versions are + deemed authentic. +

    +
    + +
    +
    +

    Article 12 - NEW VERSIONS OF THE AGREEMENT

    + +
    +

    12.1 Any + person + is authorized to duplicate and distribute copies of + this Agreement.

    +
    + +
    +

    12.2 So + as to ensure coherence, the wording of this Agreement is protected + and may only be modified by the authors of the License, + who reserve + the right to periodically publish updates or new versions of the + Agreement, each with a separate number. These subsequent versions + may + address new issues encountered by Free Software. +

    +
    + +
    +

    12.3 Any + + Software distributed under a given version of the Agreement + may only be subsequently distributed under the same version of the + Agreement or a subsequent version, subject to the provisions of + Article 5.3.4. +

    +
    +
    +
    +

    Article 13 - GOVERNING LAW AND JURISDICTION

    + +
    +

    13.1 + The Agreement is governed by French law. The + Parties agree to endeavor to seek an amicable + solution to any disagreements or disputes + that may arise during the performance of + the Agreement. +

    +
    + +
    +

    13.2 Failing an amicable solution + within two (2) months as from their + occurrence, and unless emergency proceedings are necessary, the + disagreements + or disputes shall be referred to the Paris Courts having + jurisdiction, by the more diligent + Party. +

    +
    + +
    + + + +
    Version 2.0 dated 2005-05-21.
    + + diff --git a/HTML/Licence_CeCILL_V2-fr.html b/HTML/Licence_CeCILL_V2-fr.html new file mode 100644 index 0000000..d2324be --- /dev/null +++ b/HTML/Licence_CeCILL_V2-fr.html @@ -0,0 +1,968 @@ + + + + +CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL + + + +

    CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL

    + + + +
    +

    Avertissement

    + +

    Ce +contrat est une licence de logiciel libre issue d'une +concertation entre ses auteurs afin que le respect de deux grands +principes préside à sa rédaction:

    + + + +
      +
    • +d'une part, le respect des principes de diffusion des logiciels libres: +accès au code source, droits étendus conférés +aux utilisateurs,
    • +
    • +d'autre +part, la désignation d'un droit applicable, le droit français, auquel +elle est conforme, tant au regard +du droit de la responsabilité civile que du droit de la +propriété intellectuelle et de la protection qu'il +offre aux auteurs et titulaires des droits patrimoniaux sur un +logiciel.
    • +
    + + + +

    Les +auteurs de la licence +CeCILL1 + +sont:

    + +

    Commissariat +à l'Energie Atomique - CEA, établissement +public de caractère scientifique technique et industriel, dont +le siège est situé 31-33 rue de la Fédération, +75752 Paris cedex 15.

    +

    Centre +National de la Recherche Scientifique - CNRS, +établissement public à caractère scientifique et +technologique, dont le siège est situé 3 rue +Michel-Ange 75794 Paris cedex 16.

    + +

    Institut +National de Recherche en Informatique et en Automatique - INRIA, +établissement public à caractère scientifique et +technologique, dont le siège est situé Domaine de +Voluceau, Rocquencourt, BP 105, 78153 Le Chesnay cedex.

    + +
    +
    +

    Préambule

    + +

    Ce +contrat est une licence de logiciel libre dont l'objectif est de +conférer aux utilisateurs la liberté de modification et +de redistribution du logiciel régi par cette licence dans le +cadre d'un modèle de diffusion + +en logiciel libre. +

    +

    L'exercice +de ces libertés est assorti de certains devoirs à la +charge des utilisateurs afin de préserver ce statut au cours +des redistributions ultérieures. +

    + +

    L'accessibilité +au code source et les droits de copie, de modification et de +redistribution qui en découlent ont pour contrepartie de +n'offrir aux utilisateurs qu'une garantie limitée +et de ne faire peser sur l'auteur du logiciel, le titulaire des +droits patrimoniaux et les concédants successifs qu'une +responsabilité restreinte. +

    + +

    A +cet égard l'attention de l'utilisateur est attirée +sur les risques associés au chargement, à +l'utilisation, à la modification et/ou au développement +et à la reproduction du logiciel par l'utilisateur étant +donné sa spécificité de logiciel libre, qui peut +le rendre complexe à manipuler et qui le réserve donc à +des développeurs ou des professionnels avertis +possédant des connaissances informatiques approfondies. Les utilisateurs sont +donc invités à charger et tester l'adéquation +du Logiciel à leurs besoins dans des conditions permettant +d'assurer la sécurité de leurs systèmes et/ou de leurs données et, +plus généralement, à l'utiliser et l'exploiter dans les même conditions de +sécurité. Ce contrat peut être reproduit et diffusé librement, sous réserve +de le conserver en l'état, sans ajout ni suppression de +clauses. +

    +

    Ce +contrat est susceptible de s'appliquer à tout logiciel +dont le titulaire des droits patrimoniaux décide de soumettre +l'exploitation aux dispositions qu'il contient.

    + +
    +
    + +

    Article 1 - DEFINITIONS

    + +

    Dans + ce contrat, les termes suivants, lorsqu'ils seront écrits + avec une lettre capitale, auront la signification suivante:

    + +

    Contrat: + + désigne le présent contrat de licence, ses + éventuelles versions postérieures et annexes. + +

    + +

    Logiciel: + + désigne le logiciel sous sa forme de Code Objet et/ou de Code + Source et le cas échéant sa documentation, dans leur + état au moment de l'acceptation du Contrat par le + Licencié. + +

    + +

    Logiciel Initial: + + désigne le Logiciel sous sa forme de + Code Source et éventuellement + de Code Objet et le cas échéant sa + documentation, dans leur état au moment de leur première + diffusion sous les termes du Contrat. + +

    + +

    Logiciel Modifié: + + désigne le Logiciel modifié par au moins une Contribution. +

    + +

    Code Source: + + désigne l'ensemble des + instructions et des lignes de programme du Logiciel et auquel + l'accès est nécessaire en vue de modifier le + Logiciel. + +

    + +

    Code Objet: + + désigne les fichiers binaires issus de la compilation du + Code Source. + +

    + +

    Titulaire: + + désigne le ou les détenteurs des droits + patrimoniaux d'auteur sur le Logiciel Initial + +

    + +

    Licencié: + + désigne le ou les utilisateurs du Logiciel + ayant accepté + le Contrat. + +

    + +

    Contributeur: + + désigne le Licencié auteur d'au moins une Contribution. +

    + +

    Concédant: + + désigne le Titulaire ou toute personne physique ou morale + distribuant le Logiciel sous le Contrat. + +

    + +

    Contribution: + + désigne l'ensemble des modifications, corrections, + traductions, adaptations et/ou nouvelles fonctionnalités + intégrées dans le Logiciel par tout Contributeur, + ainsi que tout + Module + Interne. + +

    + +

    Module: + + désigne un ensemble de fichiers sources y compris leur + documentation qui + permet de réaliser des fonctionnalités ou services + supplémentaires à ceux fournis par le Logiciel. + +

    + +

    Module Externe: + + désigne tout Module, non dérivé du Logiciel, tel que ce + Module et le Logiciel s'exécutent dans + + des espaces d'adressages différents, + l'un appelant l'autre au moment de leur exécution. + +

    + +

    Module Interne: + + désigne tout Module + lié au Logiciel + de telle sorte qu'ils s'exécutent + dans le même espace d'adressage. + +

    + + + +

    GNU GPL: + + désigne la GNU General Public License dans sa version 2 ou toute + version ultérieure, telle que publiée par Free Software Foundation + Inc. + +

    + + + +

    Parties: + désigne collectivement le Licencié et le Concédant. +

    + +

    Ces termes s'entendent au singulier comme au pluriel.

    + +
    +
    + +

    Article 2 - OBJET

    + +

    Le + Contrat a pour objet la concession par le Concédant au + Licencié d'une + licence + non exclusive, + cessible + et mondiale du Logiciel telle + que définie ci-après à + l'article 5 pour toute la durée de protection + des droits portant sur ce Logiciel. +

    + +
    +
    + +

    Article 3 - ACCEPTATION

    + +
    +

    3.1 + L'acceptation + par le Licencié des termes du Contrat est réputée + acquise du fait du premier des faits suivants: +

    +
      +
    • (i) + le chargement du Logiciel par tout moyen notamment par + téléchargement à partir d'un serveur + distant ou par chargement à partir d'un support + physique;
    • +
    • + (ii) + le premier exercice par le Licencié de l'un quelconque + des droits concédés par le Contrat.
    • +
    +
    + +
    +

    3.2 Un + exemplaire du Contrat, contenant notamment un avertissement relatif + aux spécificités du Logiciel, à la restriction + de garantie et à la limitation à un usage par des + utilisateurs expérimentés a été mis à + disposition du Licencié préalablement à son + acceptation telle que définie à l'article + 3.1 ci + dessus et le Licencié reconnaît en avoir pris + connaissance.

    +
    + +
    +
    + +

    Article 4 - ENTREE EN VIGUEUR ET DUREE

    + +
    +

    +4.1 ENTREE EN VIGUEUR

    + +

    Le + Contrat entre en vigueur à la date de son acceptation par le + Licencié telle que définie en 3.1.

    + +
    + +
    +

    +4.2 DUREE

    + +

    Le + Contrat produira ses effets pendant toute la durée légale + de protection des droits patrimoniaux portant sur le Logiciel.

    + +
    + +
    +
    + +

    + Article 5 - ETENDUE DES DROITS CONCEDES

    + +

    Le + Concédant concède au Licencié, qui accepte, les + droits suivants sur le Logiciel pour toutes destinations et pour la + durée du Contrat dans les conditions ci-après + détaillées. +

    +

    + Par ailleurs, + + + si le Concédant détient ou venait à détenir un ou plusieurs + brevets d'invention protégeant tout ou partie des fonctionnalités + du Logiciel ou de ses composants, il s'engage à ne pas + opposer les éventuels droits conférés par ces brevets aux Licenciés + successifs qui utiliseraient, exploiteraient ou modifieraient le + Logiciel. En cas de cession de ces brevets, le + Concédant s'engage à faire reprendre les obligations du présent alinéa + aux cessionnaires. +

    + +
    +

    +5.1 DROIT D'UTILISATION

    + +

    Le + Licencié est autorisé à utiliser le Logiciel, + sans restriction quant aux domaines d'application, étant + ci-après précisé que cela comporte:

    +
      +
    1. la + reproduction permanente ou provisoire du Logiciel en tout ou partie + par tout moyen et sous toute forme. +

    2. +
    3. +

      le + chargement, l'affichage, l'exécution, ou le + stockage du Logiciel sur tout support.

      +
    4. +
    5. +

      la + possibilité d'en observer, d'en étudier, + ou d'en tester le fonctionnement afin de déterminer + les idées et principes qui sont à la base de + n'importe quel élément de ce Logiciel; et + ceci, lorsque le Licencié effectue toute opération de + chargement, d'affichage, d'exécution, de + transmission ou de stockage du Logiciel qu'il est en droit + d'effectuer en vertu du Contrat.

      +
    6. +
    + +
    + +
    +

    +5.2 DROIT D'APPORTER DES CONTRIBUTIONS

    + +

    + Le + droit d'apporter des Contributions comporte le droit de + traduire, d'adapter, d'arranger ou d'apporter + toute autre modification + au Logiciel et le droit de reproduire le + Logiciel en résultant.

    +

    Le + Licencié est autorisé à apporter toute + Contribution au Logiciel sous réserve de mentionner, de façon + explicite, son nom en tant qu'auteur de cette Contribution et + la date de création de celle-ci.

    + +
    + +
    +

    +5.3 DROIT + DE DISTRIBUTION

    + +

    Le + droit de distribution + comporte notamment le droit de diffuser, de + transmettre et de communiquer le Logiciel au public sur tout + support et par tout moyen ainsi que le droit de mettre sur le marché + à titre onéreux ou gratuit, un ou des exemplaires du + Logiciel par tout procédé.

    +

    Le + Licencié est autorisé à + distribuer des copies + du Logiciel, modifié ou non, à des tiers dans les + conditions ci-après détaillées.

    + +
    +

    +5.3.1 DISTRIBUTION + DU LOGICIEL SANS MODIFICATION

    + +

    Le + Licencié est autorisé à + distribuer des copies + conformes du Logiciel, sous forme de Code Source ou de Code Objet, + à condition que cette distribution respecte les + dispositions du Contrat dans leur totalité et soit accompagnée:

    +
      +
    1. d'un + exemplaire du Contrat,

    2. +
    3. d'un + avertissement relatif à la restriction de garantie et de + responsabilité du Concédant telle que prévue + aux articles 8 et + 9,

    4. +
    +

    et + que, dans le cas où seul le Code Objet du Logiciel est + redistribué, le Licencié permette aux futurs + Licenciés + d'accéder facilement au Code Source complet du Logiciel + en indiquant les modalités d'accès, étant + entendu que le coût additionnel d'acquisition du Code + Source ne devra pas excéder le simple coût de transfert + des données.

    + +
    + +
    +

    +5.3.2 DISTRIBUTION + DU LOGICIEL MODIFIE

    + + +

    Lorsque + le Licencié apporte une Contribution au Logiciel, les + conditions de distribution du Logiciel Modifié sont alors + soumises à l'intégralité des dispositions + du Contrat. +

    +

    Le + Licencié est autorisé à distribuer le + Logiciel Modifié, sous forme de Code Source ou de Code Objet, + à condition que cette distribution respecte les + dispositions du Contrat dans leur totalité et soit + accompagnée: +

    +
      +
    1. d'un + exemplaire du Contrat,

    2. +
    3. +

      d'un + avertissement relatif à la restriction de garantie et de + responsabilité du Concédant telle que + prévue aux articles 8 et + 9,

      +
    4. +
    +

    et que, dans le cas où seul le Code Objet du Logiciel + Modifié est redistribué, le Licencié permette aux futurs + Licenciés d'accéder facilement au Code Source complet du Logiciel + Modifié en indiquant les modalités d'accès, étant entendu que le coût + additionnel d'acquisition du Code Source ne devra pas excéder le + simple coût de transfert des données.

    + + + +
    + +
    +

    +5.3.3 DISTRIBUTION DES MODULES + + EXTERNES

    + +

    Lorsque le Licencié a développé un Module + Externe les conditions du Contrat ne s'appliquent pas à ce + Module Externe, qui peut être + distribué sous un contrat de licence différent.

    + +
    + +
    + + +

    +5.3.4 COMPATIBILITE AVEC LA LICENCE + GNU GPL

    + + + + +

    Le Licencié peut inclure un code soumis aux dispositions d'une + des versions de la licence GNU GPL dans le Logiciel modifié ou non et + distribuer l'ensemble sous les conditions de la même version de la + licence GNU GPL. +

    + +

    Le Licencié peut inclure le Logiciel modifié ou non dans un code + soumis aux dispositions d'une des versions de la licence GNU GPL et + distribuer l'ensemble sous les conditions de la même version de la + licence GNU GPL. +

    + + + + + + +
    + +
    + +
    +
    + +

    Article 6 - PROPRIETE INTELLECTUELLE

    + +
    +

    +6.1 SUR LE LOGICIEL INITIAL

    + +

    Le + Titulaire est détenteur des droits patrimoniaux sur le + Logiciel Initial. Toute utilisation du Logiciel Initial est soumise + au respect des conditions dans lesquelles le Titulaire a choisi de + diffuser son oeuvre et nul autre n'a la faculté de + modifier les conditions de diffusion de ce Logiciel Initial. +

    +

    Le + Titulaire s'engage à + ce que le Logiciel Initial + + reste au moins régi par la présente + licence + et ce, pour la durée visée à l'article 4.2.

    + +
    + +
    +

    +6.2 SUR LES CONTRIBUTIONS

    + +

    + + + Le Licencié qui a développé une Contribution est titulaire + sur celle-ci des droits de propriété intellectuelle dans les conditions + définies par la législation applicable. + +

    + +
    + +
    +

    +6.3 SUR LES MODULES + EXTERNES

    + +

    + Le + Licencié + qui a développé un Module Externe est titulaire + sur celui-ci des droits de propriété intellectuelle dans les conditions + définies par la législation applicable + et reste + libre du choix du contrat régissant + sa diffusion.

    + +
    + +
    +

    +6.4 DISPOSITIONS COMMUNES

    + + +
    +

    + Le Licencié s'engage expressément:

    +
      +
    1. +

      à + ne pas supprimer ou modifier de quelque manière que ce soit + les mentions de propriété intellectuelle apposées + sur le Logiciel;

      +
    2. +
    3. +

      à reproduire à l'identique lesdites mentions de + propriété intellectuelle sur les copies du Logiciel modifié ou + non.

      +
    4. +
    +
    + + + + +
    +

    Le + Licencié s'engage à ne pas porter atteinte, + directement ou indirectement, aux droits de propriété + intellectuelle du Titulaire et/ou des Contributeurs + sur le Logiciel et à + prendre, le cas échéant, à l'égard + de son personnel toutes les mesures nécessaires pour assurer + le respect des dits droits de propriété intellectuelle + du Titulaire et/ou des Contributeurs.

    +
    + +
    + +
    +
    + +

    Article 7 - SERVICES ASSOCIES

    + +
    +

    7.1 Le + Contrat n'oblige en aucun cas le Concédant à la + réalisation de prestations d'assistance technique ou de + maintenance du Logiciel.

    +

    Cependant + le Concédant reste libre de proposer ce type de services. Les + termes et conditions d'une telle assistance technique et/ou + d'une telle maintenance seront alors déterminés + dans un acte séparé. Ces actes de maintenance et/ou + assistance technique n'engageront que la seule responsabilité + du Concédant qui les propose.

    +
    + +
    +

    7.2 De + même, tout Concédant est libre de proposer, sous sa + seule responsabilité, à ses licenciés une + garantie, qui n'engagera que lui, lors de la redistribution du + Logiciel et/ou du Logiciel Modifié et ce, dans les conditions + qu'il souhaite. Cette garantie et les modalités + financières de son application feront l'objet d'un + acte séparé entre le Concédant et le Licencié.

    +
    + +
    +
    + +

    + Article 8 - RESPONSABILITE

    + +
    +

    8.1 Sous + réserve des dispositions de + l'article 8.2, + + le Licencié a la faculté, sous réserve de prouver la faute du + Concédant concerné, de solliciter la réparation + du préjudice direct qu'il subirait du fait du + logiciel et dont il apportera la preuve. +

    +
    + +
    +

    8.2 + La + responsabilité du Concédant est limitée aux + engagements pris en application du Contrat et ne saurait être + engagée en raison notamment: (i) des dommages dus à + l'inexécution, totale ou partielle, de ses obligations + par le Licencié, (ii) des dommages directs ou indirects + découlant de l'utilisation ou des performances du + Logiciel subis par le Licencié + + et (iii) + plus généralement d'un quelconque + dommage + indirect. + En particulier, les Parties + conviennent expressément que tout préjudice financier + ou commercial (par exemple perte de données, perte de + bénéfices, perte d'exploitation, perte de + clientèle ou de commandes, manque à gagner, trouble + commercial quelconque) ou toute action dirigée contre le + Licencié par un tiers, constitue un dommage indirect et + n'ouvre pas droit à réparation par le + Concédant. +

    +
    + +
    +
    + +

    + Article 9 - GARANTIE

    + +
    +

    9.1 + Le + Licencié reconnaît que l'état actuel des + connaissances scientifiques et techniques au moment de la mise en + circulation du Logiciel ne permet pas d'en tester et d'en + vérifier toutes les utilisations ni de détecter + l'existence d'éventuels défauts. + L'attention du Licencié a été attirée + sur ce point sur les risques associés au chargement, à + l'utilisation, la modification et/ou au développement + et à la reproduction du Logiciel qui sont réservés + à des utilisateurs avertis.

    +

    Il + relève de la responsabilité du Licencié de + contrôler, par tous moyens, l'adéquation du + produit à ses besoins, son bon fonctionnement et de s'assurer + qu'il ne causera pas de dommages aux personnes et aux biens. +

    +
    + +
    +

    9.2 + Le Concédant déclare de bonne foi être en droit + de concéder l'ensemble des droits attachés au Logiciel + (comprenant notamment les droits visés à l'article + 5). +

    +
    + +
    +

    9.3 Le + Licencié reconnaît que le Logiciel est fourni "en + l'état" par le Concédant sans autre + garantie, expresse ou tacite, que celle prévue à + l'article 9.2 et notamment sans aucune garantie sur sa + valeur commerciale, son caractère sécurisé, innovant + ou pertinent. +

    +

    En + particulier, le Concédant ne garantit pas que le Logiciel est + exempt d'erreur, qu'il fonctionnera sans interruption, + qu'il + sera compatible avec l'équipement du Licencié et + sa configuration logicielle ni qu'il remplira les besoins du + Licencié.

    +
    + +
    +

    9.4 Le + Concédant ne garantit pas, de manière expresse ou + tacite, que le Logiciel ne porte pas atteinte à un quelconque + droit de propriété intellectuelle d'un tiers + portant sur un brevet, un logiciel ou sur tout autre droit de + propriété. Ainsi, le Concédant exclut toute + garantie au profit du Licencié contre les actions en + contrefaçon qui pourraient être diligentées au + titre de l'utilisation, de la modification, et de la + redistribution du Logiciel. Néanmoins, si de telles actions + sont exercées contre le Licencié, le Concédant + lui apportera son aide technique et juridique pour sa défense. + Cette aide technique et juridique est déterminée au + cas par cas entre le Concédant concerné et le + Licencié + dans le cadre d'un protocole d'accord. Le Concédant + dégage toute responsabilité quant à + l'utilisation de la dénomination du Logiciel par le + Licencié. Aucune garantie n'est apportée quant + à + l'existence de droits antérieurs sur le nom du Logiciel + et sur l'existence d'une marque.

    +
    + +
    +
    + +

    Article 10 - RESILIATION

    + +
    +

    10.1 En + cas de manquement par le Licencié aux obligations mises à + sa charge par le Contrat, le Concédant pourra résilier + de plein droit le Contrat trente (30) jours après + notification adressée au Licencié et restée + sans effet.

    +
    + +
    +

    10.2 Le + Licencié dont le Contrat est résilié n'est + plus autorisé à utiliser, modifier ou distribuer le + Logiciel. Cependant, toutes les licences qu'il aura + concédées + antérieurement à la résiliation du Contrat + resteront valides sous réserve qu'elles aient + été + effectuées en conformité avec le Contrat.

    +
    + +
    +
    + +

    Article 11 - DISPOSITIONS DIVERSES

    + +
    +

    +11.1 CAUSE EXTERIEURE

    + +

    Aucune + des Parties ne sera responsable d'un retard ou d'une + défaillance d'exécution du Contrat qui serait dû + à un cas de force majeure, un cas fortuit ou une cause + extérieure, telle que, notamment, le mauvais fonctionnement + ou les interruptions du réseau électrique ou de + télécommunication, la paralysie du réseau liée + à une attaque informatique, l'intervention des + autorités gouvernementales, les catastrophes naturelles, les + dégâts des eaux, les tremblements de terre, le feu, les + explosions, les grèves et les conflits sociaux, l'état + de guerre...

    +
    + +
    +

    11.2 Le + fait, par l'une ou l'autre des Parties, d'omettre + en une ou plusieurs occasions de se prévaloir d'une ou + plusieurs dispositions du Contrat, ne pourra en aucun cas impliquer + renonciation par la Partie intéressée à s'en + prévaloir ultérieurement.

    +
    + +
    +

    11.3 Le + Contrat annule et remplace toute convention antérieure, + écrite ou orale, entre les Parties sur le même objet et + constitue l'accord entier entre les Parties sur cet objet. + Aucune addition ou modification aux termes du Contrat n'aura + d'effet à l'égard des Parties à + moins d'être faite par écrit et signée par + leurs représentants dûment habilités.

    +
    + +
    +

    11.4 Dans + l'hypothèse où une ou plusieurs des dispositions + du Contrat s'avèrerait contraire à une loi ou à + un texte applicable, existants ou futurs, cette loi ou ce texte + prévaudrait, et les Parties feraient les amendements + nécessaires pour se conformer à cette loi ou à + ce texte. Toutes les autres dispositions resteront en vigueur. De + même, la nullité, pour quelque raison que ce soit, + d'une des dispositions du Contrat ne saurait entraîner + la nullité de l'ensemble du Contrat.

    +
    + +
    +

    +11.5 LANGUE

    +

    Le + Contrat est rédigé en langue française et en + langue anglaise, ces deux versions + faisant également foi. +

    +
    + +
    +
    + +

    Article 12 - NOUVELLES VERSIONS DU CONTRAT

    + +
    +

    12.1 Toute personne est autorisée à copier et distribuer des + copies de ce Contrat.

    +
    + +
    +

    12.2 Afin d'en préserver la cohérence, le texte du Contrat + est protégé et ne peut être modifié que + par les auteurs de la licence, lesquels se réservent le droit + de publier périodiquement des mises à jour ou de + nouvelles versions du Contrat, qui possèderont chacune un + numéro distinct. Ces versions ultérieures seront + susceptibles de prendre en compte de nouvelles problématiques + rencontrées par les logiciels libres.

    +
    + +
    +

    12.3 Tout + Logiciel diffusé sous une version donnée du Contrat ne + pourra faire l'objet d'une diffusion ultérieure que sous la + même version du Contrat ou une version postérieure, + sous réserve des dispositions de l'article + 5.3.4.

    +
    + +
    +
    + +

    Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE

    + +
    +

    13.1 + Le Contrat est régi par la loi + française. Les Parties conviennent de tenter de régler + à l'amiable les différends ou litiges qui + viendraient à se produire par suite ou à l'occasion + du Contrat. +

    +
    + +
    +

    13.2 + A défaut d'accord amiable dans un délai de deux + (2) mois à compter de leur survenance et sauf situation + relevant d'une procédure d'urgence, les + différends ou litiges seront portés par la Partie la + plus diligente devant les Tribunaux compétents de + Paris.

    +
    + +
    + + + +
    Version 2.0 du 2005-05-21.
    + + \ No newline at end of file diff --git a/HTML/PKG-INFO b/HTML/PKG-INFO new file mode 100644 index 0000000..79c627c --- /dev/null +++ b/HTML/PKG-INFO @@ -0,0 +1,20 @@ +Metadata-Version: 1.0 +Name: HTML.py +Version: 0.04 +Summary: A Python module to easily generate HTML code (tables, lists, ...). +See http://www.decalage.info/python/html for more information. + +Home-page: http://www.decalage.info/python/html +Author: Philippe Lagadec +Author-email: decalage (a) laposte.net +License: CeCILL (open-source GPL compatible) +Download-URL: http://www.decalage.info/python/html +Description: UNKNOWN +Platform: UNKNOWN +Classifier: Development Status :: 4 - Beta +Classifier: Natural Language :: English +Classifier: Intended Audience :: Developers +Classifier: Topic :: Internet :: WWW/HTTP +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Topic :: Software Development :: Libraries :: Python Modules diff --git a/HTML/README.txt b/HTML/README.txt new file mode 100644 index 0000000..7529225 --- /dev/null +++ b/HTML/README.txt @@ -0,0 +1,29 @@ +HTML.py + +This module provides a few classes to easily generate HTML tables and lists. + +Author: Philippe Lagadec + +Project website: http://www.decalage.info/python/html + +License: CeCILL (open-source GPL compatible), see source code for details. + http://www.cecill.info + +------------------------------------------------------------------------------- + +INSTALLATION: + +- on Windows, double-click on install.bat, or type "setup.py install" in a CMD + window. +- on other systems, type "python setup.py install" in a shell. + +------------------------------------------------------------------------------- + +HOW TO USE THIS MODULE: + +First have a look at HTML_tutorial.py. It provides examples of how to use +HTML.py. +See http://www.decalage.info/python/html for additional information and updates. +For complete reference see HTML.py.html, and also the source code of HTML.py. + + diff --git a/HTML/setup.py b/HTML/setup.py new file mode 100644 index 0000000..0c23afe --- /dev/null +++ b/HTML/setup.py @@ -0,0 +1,41 @@ +""" +Setup script for HTML.py +""" + +import distutils.core +import HTML + +DESCRIPTION = """A Python module to easily generate HTML code (tables, lists, ...). +See http://www.decalage.info/python/html for more information. +""" + +kw = { + 'name': "HTML.py", + 'version': HTML.__version__, + 'description': DESCRIPTION, + 'author': "Philippe Lagadec", + 'author_email': "decalage (a) laposte.net", + 'url': "http://www.decalage.info/python/html", + 'license': "CeCILL (open-source GPL compatible)", + 'py_modules': ['HTML'] + } + + +# If we're running Python 2.3+, add extra information +if hasattr(distutils.core, 'setup_keywords'): + if 'classifiers' in distutils.core.setup_keywords: + kw['classifiers'] = [ + 'Development Status :: 4 - Beta', + #'License :: Freely Distributable', + 'Natural Language :: English', + 'Intended Audience :: Developers', + 'Topic :: Internet :: WWW/HTTP', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Software Development :: Libraries :: Python Modules' + ] + if 'download_url' in distutils.core.setup_keywords: + kw['download_url'] = "http://www.decalage.info/python/html" + + +distutils.core.setup(**kw) diff --git a/INSTALL_WINDOWS b/INSTALL_WINDOWS new file mode 100644 index 0000000..0b1052e --- /dev/null +++ b/INSTALL_WINDOWS @@ -0,0 +1,22 @@ +dépendances : +R 2.10.1 +http://cran.cict.fr/bin/windows/ + +python 2.6 +http://www.python.org/ + +Numpy +http://surfnet.dl.sourceforge.net/sourceforge/numpy/ + +wxpython +http://surfnet.dl.sourceforge.net/sourceforge/wxpython/ + +xlrd + +package de R : +rgl +ca +gee +ape +igraph +proxy diff --git a/KeyFrame.py b/KeyFrame.py new file mode 100755 index 0000000..2c40909 --- /dev/null +++ b/KeyFrame.py @@ -0,0 +1,160 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008 Pierre Ratinaud +#Lisense: GNU/GPL + +import wx +from functions import sortedby + +# begin wxGlade: extracode +# end wxGlade + +class AlcOptFrame(wx.Dialog): + def __init__(self,parent, *args, **kwds): + # begin wxGlade: AlcOptFrame.__init__ + kwds["style"] = wx.DEFAULT_DIALOG_STYLE + wx.Dialog.__init__(self, *args, **kwds) + self.cle={ + 'adj_sup': [wx.NewId(),wx.NewId(),u"Adjectif supplémentaire"], + 'art_ind': [wx.NewId(),wx.NewId(),u"Article indéfini"], + 'adj_pos': [wx.NewId(),wx.NewId(),u"Adjectif possessif"], + 'adv_sup': [wx.NewId(),wx.NewId(),u"Adverbe supplémentaire"], + 'pro_dem': [wx.NewId(),wx.NewId(),u"Pronom démonstratif"], + 'art_def': [wx.NewId(),wx.NewId(),u"Article défini"], + 'con': [wx.NewId(),wx.NewId(),u"Conjonction"], + 'pre': [wx.NewId(),wx.NewId(),u"Préposition"], + 'ono': [wx.NewId(),wx.NewId(),u"Onomatopée"], + 'adj_dem': [wx.NewId(),wx.NewId(),u"Adjectif démonstratif"], + 'nom_sup': [wx.NewId(),wx.NewId(),u"Nom supplémentaire"], + 'adv': [wx.NewId(),wx.NewId(),u"Adverbe"], + 'pro_per': [wx.NewId(),wx.NewId(),u"Pronom personnel"], + 'ver': [wx.NewId(),wx.NewId(),u"Verbe"], + 'adj_num': [wx.NewId(),wx.NewId(),u"Adjectif numérique"], + 'pro_rel': [wx.NewId(),wx.NewId(),u"Pronom relatif"], + 'adj_ind': [wx.NewId(),wx.NewId(),u"Adjectif indéfini"], + 'pro_ind': [wx.NewId(),wx.NewId(),u"Pronom indéfini"], + 'pro_pos': [wx.NewId(),wx.NewId(),u"Pronom possessif"], + 'aux': [wx.NewId(),wx.NewId(),u"Auxiliaire"], + 'ver_sup': [wx.NewId(),wx.NewId(),u"Verbe supplémentaire"], + 'adj': [wx.NewId(),wx.NewId(),u"Adjectif"], + 'adj_int': [wx.NewId(),wx.NewId(),u"Adjectif interrogatif"], + 'nom': [wx.NewId(),wx.NewId(),u"Nom commun"], + 'num' : [wx.NewId(),wx.NewId(),u"Chiffre"], + 'nr' : [wx.NewId(),wx.NewId(),u"Formes non reconnues"], + } + self.parent=parent + self.KeyConf=self.parent.KeyConf + self.listlabel=[] + self.listspin=[] + self.listbutton=[] + self.listcle=[] + self.listids=[] + self.listidb=[] + + self.label_1 = wx.StaticText(self, -1, u" Choix des clés d'analyse\n0=éliminé ; 1=active ; 2=supplémentaire\n") + self.listcleori=[[cle]+self.cle[cle] for cle in self.cle] + self.listcleori=sortedby(self.listcleori,1,3) + + for line in self.listcleori: + cle,ids,idb,label=line + self.listlabel.append(wx.StaticText(self, -1, label)) + self.listspin.append(wx.SpinCtrl(self, ids,self.KeyConf.get('KEYS',cle), min=0, max=2)) + #if cle != 'nr' and cle!= 'num' : + self.listbutton.append(wx.Button(self, idb, u"voir liste")) + self.listids.append(ids) + self.listidb.append(idb) + self.listcle.append(cle) + + + self.button_val = wx.Button(self,wx.ID_APPLY) + + for button in self.listbutton : + self.Bind(wx.EVT_BUTTON,self.OnShowList,button) + + self.Bind(wx.EVT_BUTTON, self.OnApply, self.button_val) + + self.dico=self.parent.parent.lexique#'dictionnaires/lexique.txt') + + self.__set_properties() + self.__do_layout() + # end wxGlade + + def __set_properties(self): + # begin wxGlade: AlcOptFrame.__set_properties + self.SetTitle(u"Clés d'analyse") + # end wxGlade + + def __do_layout(self): + # begin wxGlade: AlcOptFrame.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_3 = wx.BoxSizer(wx.HORIZONTAL) + grid_sizer_1 = wx.GridSizer(14, 3, 0, 0) + grid_sizer_2 = wx.GridSizer(14, 3, 0, 0) + sizer_2.Add(self.label_1, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + for i in range(0,14): + grid_sizer_1.Add(self.listlabel[i], 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer_1.Add(self.listspin[i], 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer_1.Add(self.listbutton[i], 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + for i in range(13,len(self.listlabel)): + grid_sizer_2.Add(self.listlabel[i], 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer_2.Add(self.listspin[i], 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer_2.Add(self.listbutton[i], 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_3.Add(grid_sizer_1, 1, wx.EXPAND, 0) + sizer_3.Add(grid_sizer_2, 1, wx.EXPAND, 0) + sizer_2.Add(sizer_3, 1, wx.EXPAND, 8) + sizer_2.Add(self.button_val,0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + # end wxGlade + + def OnShowList(self,evt): + id=evt.GetEventObject().GetId() + pos=self.listidb.index(id) + type=self.listcle[pos] + self.CreateList(type) + + def CreateList(self,type): + if type=='ver_sup' or type=='ver': + liste=[descr[0] for item,descr in self.dico.iteritems() if descr[1]==type] + liste=list(set(liste)) + else: + liste=[item for item,descr in self.dico.iteritems() if descr[1]==type] + liste.sort() + txt=('\n').join(liste) + ListViewFrame=ListView(self.parent.parent) + ListViewFrame.text_ctrl_1.WriteText(txt) + ListViewFrame.text_ctrl_1.SetSelection(0,0) + ListViewFrame.text_ctrl_1.SetInsertionPoint(0) + ListViewFrame.CenterOnParent() + val=ListViewFrame.ShowModal() + + def OnApply(self,evt): + for i in range(0,len(self.listlabel)): + self.KeyConf.set('KEYS',self.listcle[i],`self.listspin[i].GetValue()`) + self.Destroy() + + +class ListView(wx.Dialog): + def __init__(self, parent): + wx.Dialog.__init__(self, parent, size=wx.Size(200, 400),style=wx.DEFAULT_DIALOG_STYLE) + self.text_ctrl_1 = wx.TextCtrl(self, -1, "", style=wx.TE_MULTILINE|wx.TE_RICH2) + self.text_ctrl_1.SetMinSize(wx.Size(200, 400)) + self.btn = wx.Button(self, wx.ID_OK) + self.SetMinSize(wx.Size(200, 400)) + self.__set_properties() + self.__do_layout() + + def __set_properties(self): + self.SetTitle("Liste") + + def __do_layout(self): + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_1.Add(self.text_ctrl_1, 1, wx.EXPAND, 0) + sizer_1.Add(self.btn,0,wx.EXPAND,0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + diff --git a/Liste.py b/Liste.py new file mode 100644 index 0000000..86ec3bf --- /dev/null +++ b/Liste.py @@ -0,0 +1,315 @@ +# -*- coding: utf-8 -*- + +#---------------------------------------------------------------------------- +# Name: ListCtrl.py +# Author: Pierre Ratinaud +# + +#comes from ListCtrl.py from the demo tool of wxPython: +# Author: Robin Dunn & Gary Dumer +# +# Created: +# Copyright: (c) 1998 by Total Control Software +# Licence: wxWindows license +#---------------------------------------------------------------------------- + +import os +import sys +import wx +from dialog import SearchDial +import wx.lib.mixins.listctrl as listmix +import cStringIO + +#--------------------------------------------------------------------------- + +class List(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin): + def __init__(self, parent, ID, pos=wx.DefaultPosition, + size=wx.DefaultSize, style=0): + wx.ListCtrl.__init__(self, parent, ID, pos, size, style) + listmix.ListCtrlAutoWidthMixin.__init__(self) + + +class ListPanel(wx.Panel, listmix.ColumnSorterMixin): + def __init__(self, parent, gparent, dlist): + self.parent = parent + self.gparent = gparent + self.source = gparent + self.dlist = dlist + wx.Panel.__init__(self, parent, -1, style=wx.WANTS_CHARS) + + search_id = wx.NewId() + self.parent.Bind(wx.EVT_MENU, self.onsearch, id = search_id) + self.accel_tbl = wx.AcceleratorTable([(wx.ACCEL_CTRL, ord('F'), search_id)]) + self.SetAcceleratorTable(self.accel_tbl) + + self.il = wx.ImageList(16, 16) + self.sm_up = self.il.Add(getSmallUpArrowBitmap()) + self.sm_dn = self.il.Add(getSmallDnArrowBitmap()) + + + tID = wx.NewId() + + self.list = List(self, tID, + style=wx.LC_REPORT + | wx.BORDER_NONE + | wx.LC_EDIT_LABELS + | wx.LC_SORT_ASCENDING + ) + + + self.list.SetImageList(self.il, wx.IMAGE_LIST_SMALL) + self.PopulateList(dlist) + + self.Bind(wx.EVT_SIZE, self.OnSize) + + self.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnItemSelected, self.list) + self.Bind(wx.EVT_LIST_COL_CLICK, self.OnColClick, self.list) + # for wxMSW + self.list.Bind(wx.EVT_COMMAND_RIGHT_CLICK, self.OnRightClick) + + # for wxGTK + self.list.Bind(wx.EVT_RIGHT_UP, self.OnRightClick) + self.itemDataMap = dlist + + listmix.ColumnSorterMixin.__init__(self, 3) + self.SortListItems(1, False) + self.do_greyline() +#----------------------------------------------------------------------------------------- + + def PopulateList(self, dlist): + + #self.list.InsertColumn(0,'id', wx.LIST_FORMAT_LEFT) +# i=1 + self.list.InsertColumn(0, 'forme', wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(1, 'nb', wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(2, 'type', wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(3, '', wx.LIST_FORMAT_RIGHT) + + ct = 0 + for key, data in dlist.iteritems(): + ct += 1 + index = self.list.InsertStringItem(sys.maxint, data[0]) + self.list.SetStringItem(index, 1, `data[1]`) + self.list.SetStringItem(index, 2, data[2]) + self.list.SetStringItem(index, 3, '') + self.list.SetItemData(index, key) + + self.list.SetColumnWidth(0, 150) + self.list.SetColumnWidth(1, 100) + self.list.SetColumnWidth(2, 100) + self.list.SetColumnWidth(3, wx.LIST_AUTOSIZE) + + + self.currentItem = 0 + + def do_greyline(self): + for row in xrange(self.list.GetItemCount()): + if row % 2 : + self.list.SetItemBackgroundColour(row, (230, 230, 230)) + else : + self.list.SetItemBackgroundColour(row, wx.WHITE) + + def OnColClick(self, event): + self.do_greyline() + + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py + def GetListCtrl(self): + return self.list + + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py + def GetSortImages(self): + return (self.sm_dn, self.sm_up) + + + def OnRightDown(self, event): + x = event.GetX() + y = event.GetY() + item, flags = self.list.HitTest((x, y)) + + if flags & wx.LIST_HITTEST_ONITEM: + self.list.Select(item) + + event.Skip() + + + def getColumnText(self, index, col): + item = self.list.GetItem(index, col) + return item.GetText() + + + def OnItemSelected(self, event): + self.currentItem = event.m_itemIndex + event.Skip() + + def onsearch(self, evt) : + self.dial = SearchDial(self, self, 0, True) + self.dial.CenterOnParent() + self.dial.ShowModal() + self.dial.Destroy() + + def OnRightClick(self, event): + + # only do this part the first time so the events are only bound once + if not hasattr(self, "popupID1"): + self.popupID1 = wx.NewId() + self.popupID2 = wx.NewId() + # self.popupID3 = wx.NewId() + + self.Bind(wx.EVT_MENU, self.OnPopupOne, id=self.popupID1) + self.Bind(wx.EVT_MENU, self.OnPopupTwo, id=self.popupID2) +# self.Bind(wx.EVT_MENU, self.OnPopupThree, id=self.popupID3) + + # make a menu + menu = wx.Menu() + # add some items + menu.Append(self.popupID1, u"Formes associées") + menu.Append(self.popupID2, u"Concordancier") +# menu.Append(self.popupID3, "recharger") + + self.PopupMenu(menu) + menu.Destroy() + + + def OnPopupOne(self, event): + corpus = self.gparent.corpus + word = self.getColumnText(self.list.GetFirstSelected(), 0) + lems = corpus.getlems() + rep = [] + for forme in lems[word].formes : + rep.append([corpus.getforme(forme).forme, corpus.getforme(forme).freq]) + win = message(self, -1, u"Formes associées", size=(300, 200), style=wx.DEFAULT_FRAME_STYLE) + win.html = '\n' + '
    '.join([' : '.join([str(val) for val in forme]) for forme in rep]) + '\n' + win.HtmlPage.SetPage(win.html) + win.Show(True) + + def OnPopupTwo(self, event): + corpus = self.gparent.corpus + win = message(self, -1, u"Concordancier", size=(600, 200), style=wx.DEFAULT_FRAME_STYLE) + avap = 60 + item = self.getColumnText(self.list.GetFirstSelected(), 0) + listmot = corpus.getlems()[item].formes + #uce_ok = [corpus.formes[corpus.idformes[forme].forme][1] for forme in listmot] + uce_ok = corpus.getlemuces(item)#list(set([tuple(val) for line in uce_ok for val in line])) + txt = '

    Concordancier

    ' + res = corpus.getconcorde(uce_ok) + for uce in res : + ucetxt = ' '+uce[1]+' ' + txt += ' '.join(corpus.ucis[corpus.getucefromid(uce[0]).uci].etoiles) + '
    ' + for forme in listmot : + forme = corpus.getforme(forme).forme + ucetxt = ucetxt.replace(' '+forme+' ', ' ' + forme + ' ') + txt += ucetxt + '

    ' +# for uce in uce_ok: +# content = ' '+' '.join(corpus.ucis_paras_uces[uce[0]][uce[1]][uce[2]])+' ' +# for form in listmot : +# sp = '' +# i = 0 +# forme = ' ' + form + ' ' +# while i < len(content): +# coordword = content[i:].find(forme) +# if coordword != -1 and i == 0: +# txt += '
    ' + ' '.join(corpus.ucis[uce[0]][0]) + '
    ' +# if coordword < avap: +# sp = ' ' * (avap - coordword) +# deb = i +# else: +# deb = i + coordword - avap +# if len(content) < i + coordword + avap: +# fin = len(content) - 1 +# else: +# fin = i + coordword + avap +# txt += '' + sp + content[deb:fin].replace(forme, '' + forme + '') + '
    ' +# i += coordword + len(forme) +# sp = '' +# elif coordword != -1 and i != 0 : +# if coordword < avap: +# sp = ' ' * (avap - coordword) +# deb = i +# else: +# deb = i + coordword - avap +# if len(content) < i + coordword + avap: +# fin = len(content) - 1 +# else: +# fin = i + coordword + avap +# txt += '' + sp + content[deb:fin].replace(forme, '' + forme + '') + '
    ' +# i += coordword + len(forme) +# sp = '' +# else: +# i = len(content) +# sp = '' + win.HtmlPage.SetPage(txt) + win.Show(True) + + def OnSize(self, event): + w, h = self.GetClientSizeTuple() + self.list.SetDimensions(0, 0, w, h) + +class message(wx.Frame): + def __init__(self, *args, **kwds): + # begin wxGlade: MyFrame.__init__ + kwds["style"] = wx.DEFAULT_FRAME_STYLE + wx.Frame.__init__(self, *args, **kwds) + #self.text_ctrl_1 = wx.TextCtrl(self, -1, "", style=wx.TE_MULTILINE) + self.HtmlPage = wx.html.HtmlWindow(self, -1) + if "gtk2" in wx.PlatformInfo: + self.HtmlPage.SetStandardFonts() + self.HtmlPage.SetFonts('Courier', 'Courier') + + + self.button_1 = wx.Button(self, -1, "Fermer") + self.Bind(wx.EVT_BUTTON, self.OnCloseMe, self.button_1) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + self.__do_layout() + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyFrame.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_2.Add(self.HtmlPage, 1, wx.EXPAND | wx.ADJUST_MINSIZE, 0) + sizer_2.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ADJUST_MINSIZE, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetAutoLayout(True) + self.SetSizer(sizer_1) + self.Layout() + # end wxGlade + + def OnCloseMe(self, event): + self.Close(True) + + def OnCloseWindow(self, event): + self.Destroy() + + +def getSmallUpArrowData(): + return \ +'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\ +\x00\x00\x00\x1f\xf3\xffa\x00\x00\x00\x04sBIT\x08\x08\x08\x08|\x08d\x88\x00\ +\x00\x00C\xb0\x89\ +\xd3.\x10\xd1m\xc3\xe5*\xbc.\x80i\xc2\x17.\x8c\xa3y\x81\x01\x00\xa1\x0e\x04e\ +?\x84B\xef\x00\x00\x00\x00IEND\xaeB`\x82" + +def getSmallDnArrowBitmap(): + return wx.BitmapFromImage(getSmallDnArrowImage()) + +def getSmallDnArrowImage(): + stream = cStringIO.StringIO(getSmallDnArrowData()) + return wx.ImageFromStream(stream) diff --git a/OptionAlceste.py b/OptionAlceste.py new file mode 100755 index 0000000..ea3ba80 --- /dev/null +++ b/OptionAlceste.py @@ -0,0 +1,306 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + +import wx +import shutil +from KeyFrame import AlcOptFrame +from chemins import ConstructConfigPath +from functions import DoConf + + + +class OptionAlc(wx.Dialog): + def __init__(self, parent, parametres, *args, **kwds): + kwds['style'] = wx.DEFAULT_DIALOG_STYLE + wx.Dialog.__init__(self, parent, *args, **kwds) + self.parent = parent + self.parametres = parametres + self.DictPath = parametres['pathout'] + self.AlcesteConf = parametres + self.choose = False + + self.label_1 = wx.StaticText(self, -1, u"Lemmatisation") + self.radio_1 = wx.RadioBox(self, -1, u"", choices=['oui', 'non'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + + self.label_12 = wx.StaticText(self, -1, u"Classification") + self.radio_box_2 = wx.RadioBox(self, -1, u"", choices=[u"double sur UC", u"simple sur UCE", u"simple sur UCI"], majorDimension=0, style=wx.RA_SPECIFY_ROWS) #, u"simple sur UCE (non implemente)" + self.label_2 = wx.StaticText(self, -1, u"taille uc 1") + self.spin_ctrl_1 = wx.SpinCtrl(self, -1, "formes actives",size = (100,30), min=0, max=100) + self.label_3 = wx.StaticText(self, -1, u"taille uc 2") + self.spin_ctrl_2 = wx.SpinCtrl(self, -1, "",size = (100,30), min=0, max=100) + self.lab_nbcl = wx.StaticText(self, -1, u"nombre de classes terminales de la phase 1") + self.spin_nbcl = wx.SpinCtrl(self, -1, "",size = (100,30), min=2, max=100) + txt = """Nombre minimum d'uce par classe +(0 = automatique)""" + self.label_7 = wx.StaticText(self, -1, txt) + self.spin_ctrl_4 = wx.SpinCtrl(self, -1, "",size = (100,30), min=0, max=1000) + txt = u"""Fréquence minimum d'une forme +analysée (2 = automatique)""" + self.label_8 = wx.StaticText(self, -1, txt) + self.spin_ctrl_5 = wx.SpinCtrl(self, -1, "",size = (100,30), min=2, max=1000) + self.label_max_actives = wx.StaticText(self, -1, u"Nombre maximum de formes analysées") + self.spin_max_actives = wx.SpinCtrl(self, -1, "",size = (100,30), min=20, max=10000) + self.label_4 = wx.StaticText(self, -1, u"Configuration \ndes clés d'analyse") + self.button_5 = wx.Button(self, wx.ID_PREFERENCES, "") + self.button_1 = wx.Button(self, wx.ID_CANCEL, "") + self.button_2 = wx.Button(self, wx.ID_DEFAULT, u"Valeurs par défaut") + self.button_4 = wx.Button(self, wx.ID_OK, "") + self.static_line_1 = wx.StaticLine(self, -1) + + self.__set_properties() + self.__do_layout() + + self.Bind(wx.EVT_BUTTON, self.OnKeyPref, self.button_5) + self.Bind(wx.EVT_BUTTON, self.OnDef, self.button_2) + + def __set_properties(self): + self.SetTitle("Options") + #lang = self.AlcesteConf.get('ALCESTE', 'lang') + #self.choice_dict.SetSelection(self.langues.index(lang)) + DefaultLem = self.parametres['lem'] + if DefaultLem : + self.radio_1.SetSelection(0) + else: + self.radio_1.SetSelection(1) + self.radio_box_2.SetSelection(int(self.parametres['classif_mode'])) + self.spin_ctrl_1.SetValue(int(self.parametres['tailleuc1'])) + self.spin_ctrl_2.SetValue(int(self.parametres['tailleuc2'])) + self.spin_ctrl_4.SetValue(int(self.parametres['mincl'])) + self.spin_ctrl_5.SetValue(int(self.parametres['minforme'])) + self.spin_ctrl_5.Disable() + self.spin_max_actives.SetValue(int(self.parametres['max_actives'])) + self.spin_nbcl.SetValue(int(self.parametres['nbcl_p1'])) + + def __do_layout(self): + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + grid_sizer2 = wx.FlexGridSizer(15, 2, 0, 0) + grid_button = wx.FlexGridSizer(1, 3, 0, 0) + + #grid_sizer2.Add(self.label_dict, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + #grid_sizer2.Add(self.choice_dict, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + + grid_sizer2.Add(self.label_1, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.radio_1, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_12, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.radio_box_2, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_2, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.spin_ctrl_1, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_3, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.spin_ctrl_2, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.lab_nbcl, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.spin_nbcl, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_7, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.spin_ctrl_4, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_8, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.spin_ctrl_5, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_max_actives, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.spin_max_actives, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_4, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.button_5, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_button.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + grid_button.Add(self.button_2, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + grid_button.Add(self.button_4, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(grid_sizer2, 3, wx.EXPAND, 0) + sizer_2.Add(grid_button, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL, 0) + sizer_1.Add(sizer_2, 0, wx.EXPAND, 0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + + def OnKeyPref(self, event): + self.choose = True + dial = AlcOptFrame(self.parent, self) + dial.CenterOnParent() + val = dial.ShowModal() + + def OnDef(self, event): + ConfOri = ConstructConfigPath(self.parent.AppliPath, user=False) + ConfUser = ConstructConfigPath(self.parent.UserConfigPath) + shutil.copyfile(ConfOri['alceste'], ConfUser['alceste']) + corpus = self.parametres['corpus'] + pathout = self.parametres['pathout'] + self.parametres = DoConf(self.parent.ConfigPath['alceste']).getoptions('ALCESTE') + self.parametres['corpus'] = corpus + self.parametres['pathout'] = pathout + self.__set_properties() + +###################################################################################@ + +class OptionPam(wx.Dialog): + def __init__(self, parent, *args, **kwds): + kwds['style'] = wx.DEFAULT_DIALOG_STYLE + wx.Dialog.__init__(self, *args, **kwds) + self.parent = parent + self.DictPath = parent.DictPath + self.pamconf = parent.pamconf + self.type = parent.type + self.choose = False + + self.label_1 = wx.StaticText(self, -1, u"Lemmatisation") + self.radio_1 = wx.RadioBox(self, -1, u"", choices=['oui', 'non'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + self.label_exp = wx.StaticText(self, -1, u"Utiliser le dict. des expressions") + self.radio_exp = wx.RadioBox(self, -1, u"", choices=['oui', 'non'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + txt = u"""Methode de construction +de la matrice des distances""" + self.label_12 = wx.StaticText(self, -1, txt) + self.distance = [u"binary", u"euclidean", u"maximum", u'manhattan', u'canberra', u'minkowski'] + self.choice_1 = wx.Choice(self, -1, (100,50), choices=self.distance) + self.label_13 = wx.StaticText(self, -1, u'Analyse') + self.cltype = [u'k-means (pam)', u'fuzzy (fanny)'] + self.radio_box_3 = wx.RadioBox(self, -1, u"", choices=self.cltype, majorDimension=0, style=wx.RA_SPECIFY_ROWS) + self.label_classif = wx.StaticText(self, -1, u"Classification") + self.radio_box_classif = wx.RadioBox(self, -1, u"", choices=[u"sur UCE", u"sur UCI"], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + #self.label_2 = wx.StaticText(self, -1, "taille uc") + #self.spin_ctrl_1 = wx.SpinCtrl(self, -1, "formes actives", min=0, max=100) + self.label_max_actives = wx.StaticText(self, -1, u"Nombre maximum de formes analysées") + self.spin_max_actives = wx.SpinCtrl(self, -1, "",size = (100,30), min=20, max=10000) + txt = """Nombre de formes par uce +(0 = automatique)""" + self.label_6 = wx.StaticText(self, -1, txt) + self.spin_ctrl_3 = wx.SpinCtrl(self, -1, "", size = (100,30), min=0, max=100000) + txt = "Nombre de classes" + self.label_7 = wx.StaticText(self, -1, txt) + self.spin_ctrl_4 = wx.SpinCtrl(self, -1, "", size = (100,30), min=0, max=1000) + self.label_4 = wx.StaticText(self, -1, u"Configuration \ndes clés d'analyse") + self.button_5 = wx.Button(self, wx.ID_PREFERENCES, "") + self.button_1 = wx.Button(self, wx.ID_CANCEL, "") + self.button_2 = wx.Button(self, wx.ID_DEFAULT, u"Valeurs par défaut") + self.button_4 = wx.Button(self, wx.ID_OK, "") + self.static_line_1 = wx.StaticLine(self, -1) + + self.__set_properties() + self.__do_layout() + + self.Bind(wx.EVT_BUTTON, self.OnKeyPref, self.button_5) + self.Bind(wx.EVT_BUTTON, self.OnDef, self.button_2) + + def __set_properties(self): + self.SetTitle("Options") + DefaultLem = self.pamconf.getboolean('pam', 'lem') + if DefaultLem : + self.radio_1.SetSelection(0) + else: + self.radio_1.SetSelection(1) + expressions = self.pamconf.getboolean('pam', 'expressions') + if expressions : + self.radio_exp.SetSelection(0) + else : + self.radio_exp.SetSelection(1) + self.choice_1.SetSelection(self.distance.index(self.pamconf.get('pam', 'method'))) + if self.pamconf.get('pam', 'cluster_type') == u'pam' : + self.radio_box_3.SetSelection(0) + else : + self.radio_box_3.SetSelection(1) + self.radio_box_classif.SetSelection(int(self.pamconf.get('pam','type'))) + self.spin_max_actives.SetValue(int(self.pamconf.get('pam','max_actives'))) + self.spin_ctrl_3.SetValue(int(self.pamconf.get('pam', 'nbforme_uce'))) + cle = 'nbcl' + self.spin_ctrl_4.SetValue(int(self.pamconf.get('pam', cle))) + + def __do_layout(self): + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + grid_sizer2 = wx.FlexGridSizer(11, 2, 2, 2) + grid_button = wx.FlexGridSizer(1, 3, 1, 1) + grid_sizer2.Add(self.label_1, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.radio_1, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_exp, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.radio_exp, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_12, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.choice_1, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_13, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.radio_box_3, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_classif, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.radio_box_classif, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + #grid_sizer2.Add(self.label_2, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + #grid_sizer2.Add(self.spin_ctrl_1, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + #grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + #grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_max_actives, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.spin_max_actives, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_6, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.spin_ctrl_3, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_7, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.spin_ctrl_4, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_sizer2.Add(self.label_4, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(self.button_5, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer2.Add(wx.StaticLine(self), 0, wx.EXPAND | wx.ALL, 1) + grid_sizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 1) + + grid_button.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + grid_button.Add(self.button_2, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + grid_button.Add(self.button_4, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(grid_sizer2, 3, wx.EXPAND, 0) + sizer_2.Add(grid_button, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL, 0) + sizer_1.Add(sizer_2, 0, wx.EXPAND, 0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + + def OnKeyPref(self, event): + self.choose = True + dial = AlcOptFrame(self.parent, self) + dial.CenterOnParent() + val = dial.ShowModal() + + def OnDef(self, event): + ConfOri = ConstructConfigPath(self.parent.parent.AppliPath, user=False) + ConfUser = ConstructConfigPath(self.parent.parent.UserConfigPath) + shutil.copyfile(ConfOri['pam'], ConfUser['pam']) + self.parent.pamconf.read(self.parent.ConfigPath['pam']) + self.__set_properties() diff --git a/PrintRScript.py b/PrintRScript.py new file mode 100644 index 0000000..4d0fb40 --- /dev/null +++ b/PrintRScript.py @@ -0,0 +1,622 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2011 Pierre Ratinaud +#Lisense: GNU/GPL + +import tempfile +from chemins import ffr +import os +import locale +from datetime import datetime +import logging + +log = logging.getLogger('iramuteq.printRscript') + +class PrintRScript : + def __init__ (self, analyse): + log.info('Rscript') + self.pathout = analyse.pathout + self.analyse = analyse + self.scriptout = self.pathout['temp'] + self.script = u"#Script genere par IRaMuTeQ - %s" % datetime.now().ctime() + + def add(self, txt) : + self.script = '\n'.join([self.script, txt]) + + def defvar(self, name, value) : + self.add(' <- '.join([name, value])) + + def defvars(self, lvars) : + for val in lvars : + self.defvar(val[0],val[1]) + + def sources(self, lsources) : + for source in lsources : + self.add('source("%s")' % source) + + def load(self, l) : + for val in l : + self.add('load("%s")' % val) + + def write(self) : + with open(self.scriptout, 'w') as f : + f.write(self.script) + + +class chdtxt(PrintRScript) : + pass + + +class Alceste2(PrintRScript) : + def doscript(self) : + self.sources(['chdfunct']) + self.load(['Rdata']) + lvars = [['clnb', `self.analyse.clnb`], + ['Contout', '"%s"' % self.pathout['Contout']], + ['ContSupOut', '"%s"' % self.pathout['ContSupOut']], + ['ContEtOut', '"%s"' % self.pathout['ContEtOut']], + ['profileout', '"%s"' % self.pathout['profils.csv']], + ['antiout', '"%s"' % self.pathout['antiprofils.csv']], + ['chisqtable', '"%s"' % self.pathout['chisqtable.csv']], + ['ptable', '"%s"' % self.pathout['ptable.csv']]] + + self.defvars(lvars) + + + +# txt = "clnb<-%i\n" % clnb +# txt += """ +#source("%s") +#load("%s") +#""" % (RscriptsPath['chdfunct'], DictChdTxtOut['RData']) +# txt += """ +#dataact<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', row.names = 1, na.strings = 'NA') +#datasup<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', row.names = 1, na.strings = 'NA') +#dataet<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', row.names = 1, na.strings = 'NA') +#""" % (DictChdTxtOut['Contout'], DictChdTxtOut['ContSupOut'], DictChdTxtOut['ContEtOut']) +# txt += """ +#tablesqrpact<-BuildProf(as.matrix(dataact),n1,clnb) +#tablesqrpsup<-BuildProf(as.matrix(datasup),n1,clnb) +#tablesqrpet<-BuildProf(as.matrix(dataet),n1,clnb) +#""" +# txt += """ +#PrintProfile(n1,tablesqrpact[4],tablesqrpet[4],tablesqrpact[5],tablesqrpet[5],clnb,"%s","%s",tablesqrpsup[4],tablesqrpsup[5]) +#""" % (DictChdTxtOut['PROFILE_OUT'], DictChdTxtOut['ANTIPRO_OUT']) +# txt += """ +#colnames(tablesqrpact[[2]])<-paste('classe',1:clnb,sep=' ') +#colnames(tablesqrpact[[1]])<-paste('classe',1:clnb,sep=' ') +#colnames(tablesqrpsup[[2]])<-paste('classe',1:clnb,sep=' ') +#colnames(tablesqrpsup[[1]])<-paste('classe',1:clnb,sep=' ') +#colnames(tablesqrpet[[2]])<-paste('classe',1:clnb,sep=' ') +#colnames(tablesqrpet[[1]])<-paste('classe',1:clnb,sep=' ') +#chistabletot<-rbind(tablesqrpact[2][[1]],tablesqrpsup[2][[1]]) +#chistabletot<-rbind(chistabletot,tablesqrpet[2][[1]]) +#ptabletot<-rbind(tablesqrpact[1][[1]],tablesqrpet[1][[1]]) +#""" +# txt += """ +#write.csv2(chistabletot,file="%s") +#write.csv2(ptabletot,file="%s") +#gbcluster<-n1 +#write.csv2(gbcluster,file="%s") +#""" % (DictChdTxtOut['chisqtable'], DictChdTxtOut['ptable'], DictChdTxtOut['SbyClasseOut']) +# + + +def RchdTxt(DicoPath, RscriptPath, mincl, classif_mode, nbt = 9, libsvdc = False, libsvdc_path = None, R_max_mem = False): + txt = """ + source("%s") + source("%s") + source("%s") + source("%s") + """ % (RscriptPath['CHD'], RscriptPath['chdtxt'], RscriptPath['anacor'], RscriptPath['Rgraph']) + if R_max_mem : + txt += """ + memory.limit(%i) + """ % R_max_mem + + txt += """ + nbt <- %i + """ % nbt + if libsvdc : + txt += """ + libsvdc <- TRUE + libsvdc.path <- "%s" + """ % ffr(libsvdc_path) + else : + txt += """ + libsvdc <- FALSE + libsvdc.path <- NULL + """ + + txt +=""" + library(Matrix) + data1 <- readMM("%s") + data1 <- as(data1, "dgCMatrix") + row.names(data1) <- 1:nrow(data1) + """ % DicoPath['TableUc1'] + + if classif_mode == 0: + txt += """ + data2 <- readMM("%s") + data2 <- as(data2, "dgCMatrix") + row.names(data2) <- 1:nrow(data2) + """ % DicoPath['TableUc2'] + txt += """ + chd1<-CHD(data1, x = nbt, libsvdc = libsvdc, libsvdc.path = libsvdc.path) + """ + + if classif_mode == 0: + txt += """ + chd2<-CHD(data2, x = nbt, libsvdc = libsvdc, libsvdc.path = libsvdc.path) + """ + else: + txt += """ + chd2<-chd1 + """ + + txt += """ + #lecture des uce + listuce1<-read.csv2("%s") + """ % DicoPath['listeuce1'] + + if classif_mode == 0: + txt += """ + listuce2<-read.csv2("%s") + """ % DicoPath['listeuce2'] + + txt += """ +# rm(data1) + """ + + if classif_mode == 0: + txt += """ +# rm(data2) + """ + txt += """ + chd.result <- Rchdtxt("%s",mincl=%i,classif_mode=%i, nbt = nbt) + n1 <- chd.result$n1 + classeuce1 <- chd.result$cuce1 + classeuce2 <- chd.result$cuce2 + """ % (DicoPath['uce'], mincl, classif_mode) + + txt += """ + tree.tot1 <- make_tree_tot(chd1) +# open_file_graph("%s", widt = 600, height=400) +# plot(tree.tot1$tree.cl) +# dev.off() + """%DicoPath['arbre1'] + + if classif_mode == 0: + txt += """ + tree.tot2 <- make_tree_tot(chd2) +# open_file_graph("%s", width = 600, height=400) +# plot(tree.tot2$tree.cl) +# dev.off() + """ % DicoPath['arbre2'] + + txt += """ + tree.cut1 <- make_dendro_cut_tuple(tree.tot1$dendro_tuple, chd.result$coord_ok, classeuce1, 1, nbt) + save(tree.cut1, file="%s") + classes<-n1[,ncol(n1)] + open_file_graph("%s", width = 600, height=400) + plot.dendropr(tree.cut1$tree.cl,classes) + open_file_graph("%s", width = 600, height=400) + plot(tree.cut1$dendro_tot_cl) + dev.off() + """ % (DicoPath['Rdendro'], DicoPath['dendro1'], DicoPath['arbre1']) + + if classif_mode == 0: + txt += """ + tree.cut2 <- make_dendro_cut_tuple(tree.tot2$dendro_tuple, chd.result$coord_ok, classeuce2, 2, nbt) + open_file_graph("%s", width = 600, height=400) + plot(tree.cut2$tree.cl) + dev.off() + open_file_graph("%s", width = 600, height=400) + plot(tree.cut1$dendro_tot_cl) + dev.off() + """ % (DicoPath['dendro2'], DicoPath['arbre2']) + + txt += """ + save.image(file="%s") + """ % DicoPath['RData'] + fileout = open(DicoPath['Rchdtxt'], 'w') + fileout.write(txt) + fileout.close() + +def RPamTxt(corpus, RscriptPath): + DicoPath = corpus.dictpathout + param = corpus.parametre + print param + txt = """ + source("%s") + """ % (RscriptPath['pamtxt']) + txt += """ + source("%s") + """ % (RscriptPath['Rgraph']) + txt += """ + result <- pamtxt("%s", "%s", "%s", method = "%s", clust_type = "%s", clnb = %i) + n1 <- result$uce + """ % (DicoPath['TableUc1'], DicoPath['listeuce1'], DicoPath['uce'], param['method'], param['cluster_type'], param['nbcl'] ) + txt += """ + open_file_graph("%s", width=400, height=400) + plot(result$cl) + dev.off() + """ % (DicoPath['arbre1']) + txt += """ + save.image(file="%s") + """ % DicoPath['RData'] + fileout = open(DicoPath['Rchdtxt'], 'w') + fileout.write(txt) + fileout.close() + + +def RchdQuest(DicoPath, RscriptPath, nbcl = 10, mincl = 10): + txt = """ + source("%s") + source("%s") + source("%s") + source("%s") + """ % (RscriptPath['CHD'], RscriptPath['chdquest'], RscriptPath['anacor'],RscriptPath['Rgraph']) + + txt += """ + nbt <- %i - 1 + mincl <- %i + """ % (nbcl, mincl) + + txt += """ + chd.result<-Rchdquest("%s","%s","%s", nbt = nbt, mincl = mincl) + n1 <- chd.result$n1 + classeuce1 <- chd.result$cuce1 + """ % (DicoPath['Act01'], DicoPath['listeuce1'], DicoPath['uce']) + + txt += """ + tree_tot1 <- make_tree_tot(chd.result$chd) + open_file_graph("%s", width = 600, height=400) + plot(tree_tot1$tree.cl) + dev.off() + """%DicoPath['arbre1'] + + txt += """ + tree_cut1 <- make_dendro_cut_tuple(tree_tot1$dendro_tuple, chd.result$coord_ok, classeuce1, 1, nbt) + tree.cut1 <- tree_cut1 + save(tree.cut1, file="%s") + open_file_graph("%s", width = 600, height=400) + classes<-n1[,ncol(n1)] + plot.dendropr(tree_cut1$tree.cl,classes) + """ % (DicoPath['Rdendro'],DicoPath['dendro1']) + + txt += """ + save.image(file="%s") + """ % DicoPath['RData'] + fileout = open(DicoPath['Rchdquest'], 'w') + fileout.write(txt) + fileout.close() + +def AlcesteTxtProf(DictChdTxtOut, RscriptsPath, clnb, taillecar): + txt = "clnb<-%i\n" % clnb + txt += """ +source("%s") +load("%s") +""" % (RscriptsPath['chdfunct'], DictChdTxtOut['RData']) + txt += """ +dataact<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', row.names = 1, na.strings = 'NA') +datasup<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', row.names = 1, na.strings = 'NA') +dataet<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', row.names = 1, na.strings = 'NA') +""" % (DictChdTxtOut['Contout'], DictChdTxtOut['ContSupOut'], DictChdTxtOut['ContEtOut']) + txt += """ +tablesqrpact<-BuildProf(as.matrix(dataact),n1,clnb) +tablesqrpsup<-BuildProf(as.matrix(datasup),n1,clnb) +tablesqrpet<-BuildProf(as.matrix(dataet),n1,clnb) +""" + txt += """ +PrintProfile(n1,tablesqrpact[4],tablesqrpet[4],tablesqrpact[5],tablesqrpet[5],clnb,"%s","%s",tablesqrpsup[4],tablesqrpsup[5]) +""" % (DictChdTxtOut['PROFILE_OUT'], DictChdTxtOut['ANTIPRO_OUT']) + txt += """ +colnames(tablesqrpact[[2]])<-paste('classe',1:clnb,sep=' ') +colnames(tablesqrpact[[1]])<-paste('classe',1:clnb,sep=' ') +colnames(tablesqrpsup[[2]])<-paste('classe',1:clnb,sep=' ') +colnames(tablesqrpsup[[1]])<-paste('classe',1:clnb,sep=' ') +colnames(tablesqrpet[[2]])<-paste('classe',1:clnb,sep=' ') +colnames(tablesqrpet[[1]])<-paste('classe',1:clnb,sep=' ') +chistabletot<-rbind(tablesqrpact[2][[1]],tablesqrpsup[2][[1]]) +chistabletot<-rbind(chistabletot,tablesqrpet[2][[1]]) +ptabletot<-rbind(tablesqrpact[1][[1]],tablesqrpet[1][[1]]) +""" + txt += """ +write.csv2(chistabletot,file="%s") +write.csv2(ptabletot,file="%s") +gbcluster<-n1 +write.csv2(gbcluster,file="%s") +""" % (DictChdTxtOut['chisqtable'], DictChdTxtOut['ptable'], DictChdTxtOut['SbyClasseOut']) + if clnb > 2 : + txt += """ + library(ca) + colnames(dataact)<-paste('classe',1:clnb,sep=' ') + colnames(datasup)<-paste('classe',1:clnb,sep=' ') + colnames(dataet)<-paste('classe',1:clnb,sep=' ') + rowtot<-nrow(dataact)+nrow(dataet)+nrow(datasup) + afctable<-rbind(as.matrix(dataact),as.matrix(datasup)) + afctable<-rbind(afctable,as.matrix(dataet)) + colnames(afctable)<-paste('classe',1:clnb,sep=' ') + afc<-ca(afctable,suprow=((nrow(dataact)+1):rowtot),nd=(ncol(afctable)-1)) + debsup<-nrow(dataact)+1 + debet<-nrow(dataact)+nrow(datasup)+1 + fin<-rowtot + afc<-AddCorrelationOk(afc) + """ + #FIXME : split this!!! + txt += """ + source("%s") + """ % RscriptsPath['Rgraph'] + + txt += """ + afc <- summary.ca.dm(afc) + afc_table <- create_afc_table(afc) + write.csv2(afc_table$facteur, file = "%s") + write.csv2(afc_table$colonne, file = "%s") + write.csv2(afc_table$ligne, file = "%s") + """ % (DictChdTxtOut['afc_facteur'], DictChdTxtOut['afc_col'], DictChdTxtOut['afc_row']) + + txt += """ + xlab <- paste('facteur 1 - ', round(afc$facteur[1,2],2), sep = '') + ylab <- paste('facteur 2 - ', round(afc$facteur[2,2],2), sep = '') + xlab <- paste(xlab, ' %', sep = '') + ylab <- paste(ylab, ' %', sep = '') + """ + + txt += """ + PARCEX<-%s + """ % taillecar + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='coord', deb=1, fin=(debsup-1), xlab = xlab, ylab = ylab) + """ % (DictChdTxtOut['AFC2DL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='coord', deb=debsup, fin=(debet-1), xlab = xlab, ylab = ylab) + """ % (DictChdTxtOut['AFC2DSL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='coord', deb=debet, fin=fin, xlab = xlab, ylab = ylab) + """ % (DictChdTxtOut['AFC2DEL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", col=TRUE, what='coord', xlab = xlab, ylab = ylab) + """ % (DictChdTxtOut['AFC2DCL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='crl', deb=1, fin=(debsup-1), xlab = xlab, ylab = ylab) + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='crl', deb=debsup, fin=(debet-1), xlab = xlab, ylab = ylab) + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='crl', deb=debet, fin=fin, xlab = xlab, ylab = ylab) + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", col=TRUE, what='crl', xlab = xlab, ylab = ylab) + """ % (DictChdTxtOut['AFC2DCoul'], DictChdTxtOut['AFC2DCoulSup'], DictChdTxtOut['AFC2DCoulEt'], DictChdTxtOut['AFC2DCoulCl']) + + txt += """ +#rm(dataact) +#rm(datasup) +#rm(dataet) +rm(tablesqrpact) +rm(tablesqrpsup) +rm(tablesqrpet) +save.image(file="%s") +""" % DictChdTxtOut['RData'] + file = open(DictChdTxtOut['RTxtProfGraph'], 'w') + file.write(txt) + file.close() + + +def write_afc_graph(self): + if self.param['over'] : over = 'TRUE' + else : over = 'FALSE' + + if self.param['do_select_nb'] : do_select_nb = 'TRUE' + else : do_select_nb = 'FALSE' + + if self.param['do_select_chi'] : do_select_chi = 'TRUE' + else : do_select_chi = 'FALSE' + + if self.param['cex_txt'] : cex_txt = 'TRUE' + else : cex_txt = 'FALSE' + + if self.param['tchi'] : tchi = 'TRUE' + else : tchi = 'FALSE' + + with open(self.RscriptsPath['afc_graph'], 'r') as f: + txt = f.read() + +# self.DictPathOut['RData'], \ + scripts = txt % (self.RscriptsPath['Rgraph'],\ + self.param['typegraph'], \ + self.param['what'], \ + self.param['facteur'][0],\ + self.param['facteur'][1], \ + self.param['facteur'][2], \ + self.param['qui'], \ + over, do_select_nb, \ + self.param['select_nb'], \ + do_select_chi, \ + self.param['select_chi'], \ + cex_txt, \ + self.param['txt_min'], \ + self.param['txt_max'], \ + self.fileout, \ + self.param['width'], \ + self.param['height'],\ + self.param['taillecar'], \ + self.param['alpha'], \ + self.param['film'], \ + tchi,\ + self.param['tchi_min'],\ + self.param['tchi_max'],\ + ffr(os.path.dirname(self.fileout))) + return scripts + +def print_simi3d(self): + simi3d = self.parent.simi3dpanel + txt = '#Fichier genere par Iramuteq' + if simi3d.movie.GetValue() : + movie = "'" + ffr(os.path.dirname(self.DictPathOut['RData'])) + "'" + else : + movie = 'NULL' + if self.section == 'chd_dist_quest' : + header = 'TRUE' + else : + header = 'FALSE' + txt += """ + dm<-read.csv2("%s",row.names=1,header = %s) + load("%s") + """ % (self.DictPathOut['Contout'], header, self.DictPathOut['RData']) + + txt += """ + source("%s") + """ % self.parent.RscriptsPath['Rgraph'] + + + txt += """ + make.simi.afc(dm,chistabletot, lim=%i, alpha = %.2f, movie = %s) + """ % (simi3d.spin_1.GetValue(), float(simi3d.slider_1.GetValue())/100, movie) + tmpfile = tempfile.mktemp(dir=self.parent.TEMPDIR) + tmp = open(tmpfile,'w') + tmp.write(txt) + tmp.close() + return tmpfile + +def dendroandbarplot(table, rownames, colnames, rgraph, tmpgraph, intxt = False, dendro=False) : + if not intxt : + txttable = 'c(' + ','.join([','.join(line) for line in table]) + ')' + rownb = len(rownames) + rownames = 'c("' + '","'.join(rownames) + '")' + colnames = 'c("' + '","'.join(colnames) + '")' + if not intxt : + #FIXME + txt = """ + di <- matrix(data=%s, nrow=%i, byrow = TRUE) + rownames(di)<- %s + colnames(di) <- %s + """ % (txttable, rownb, rownames, colnames) + else : + txt = intxt + txt += """ + load("%s") + library(ape) + source("%s") + height <- (30*ncol(di)) + (15*nrow(di)) + height <- ifelse(height <= 400, 400, height) + width <- 500 + open_file_graph("%s", width=width, height=height) + plot.dendro.lex(tree.cut1$tree.cl, di) + """ % (ffr(dendro),ffr(rgraph), ffr(tmpgraph)) + return txt + +def barplot(table, rownames, colnames, rgraph, tmpgraph, intxt = False) : + if not intxt : + txttable = 'c(' + ','.join([','.join(line) for line in table]) + ')' + #width = 100 + (15 * len(rownames)) + (100 * len(colnames)) + #height = len(rownames) * 15 + rownb = len(rownames) + #if height < 400 : + # height = 400 + rownames = 'c("' + '","'.join(rownames) + '")' + colnames = 'c("' + '","'.join(colnames) + '")' + if not intxt : + #FIXME + txt = """ + inf <- NA + di <- matrix(data=%s, nrow=%i, byrow = TRUE) + di[is.na(di)] <- max(di, na.rm=TRUE) + 2 + rownames(di)<- %s + colnames(di) <- %s + """ % (txttable, rownb, rownames, colnames) + else : + txt = intxt + txt += """ + source("%s") + color = rainbow(nrow(di)) + width <- 100 + (20*length(rownames(di))) + (100 * length(colnames(di))) + height <- nrow(di) * 15 + if (height < 400) { height <- 400} + open_file_graph("%s",width = width, height = height) + par(mar=c(0,0,0,0)) + layout(matrix(c(1,2),1,2, byrow=TRUE),widths=c(3,lcm(7))) + par(mar=c(2,2,1,0)) + coord <- barplot(as.matrix(di), beside = TRUE, col = color, space = c(0.1,0.6)) + c <- colMeans(coord) + c1 <- c[-1] + c2 <- c[-length(c)] + cc <- cbind(c1,c2) + lcoord <- apply(cc, 1, mean) + abline(v=lcoord) + if (min(di) < 0) { + amp <- abs(max(di) - min(di)) + } else { + amp <- max(di) + } + if (amp < 10) { + d <- 2 + } else { + d <- signif(amp%%/%%10,1) + } + mn <- round(min(di)) + mx <- round(max(di)) + for (i in mn:mx) { + if ((i/d) == (i%%/%%d)) { + abline(h=i,lty=3) + } + } + par(mar=c(0,0,0,0)) + plot(0, axes = FALSE, pch = '') + legend(x = 'center' , rownames(di), fill = color) + dev.off() + """ % (rgraph, ffr(tmpgraph)) + return txt + +#def RAfcUci(DictAfcUciOut, nd=2, RscriptsPath='', PARCEX='0.8'): +# txt = """ +# library(ca) +# nd<-%i +# """ % nd +# txt += """ +# dataact<-read.csv2("%s") +# """ % (DictAfcUciOut['TableCont'])#, encoding) +# txt += """ +# datasup<-read.csv2("%s") +# """ % (DictAfcUciOut['TableSup'])#, encoding) +# txt += """ +# dataet<-read.csv2("%s") +# """ % (DictAfcUciOut['TableEt'])#, encoding) +# txt += """ +# datatotsup<-cbind(dataact,datasup) +# datatotet<-cbind(dataact,dataet) +# afcact<-ca(dataact,nd=nd) +# afcsup<-ca(datatotsup,supcol=((ncol(dataact)+1):ncol(datatotsup)),nd=nd) +# afcet<-ca(datatotet,supcol=((ncol(dataact)+1):ncol(datatotet)),nd=nd) +# afctot<-afcsup$colcoord +# rownames(afctot)<-afcsup$colnames +# colnames(afctot)<-paste('coord. facteur',1:nd,sep=' ') +# afctot<-cbind(afctot,mass=afcsup$colmass) +# afctot<-cbind(afctot,distance=afcsup$coldist) +# afctot<-cbind(afctot,intertie=afcsup$colinertia) +# rcolet<-afcet$colsup +# afctmp<-afcet$colcoord[rcolet,] +# rownames(afctmp)<-afcet$colnames[rcolet] +# afctmp<-cbind(afctmp,afcet$colmass[rcolet]) +# afctmp<-cbind(afctmp,afcet$coldist[rcolet]) +# afctmp<-cbind(afctmp,afcet$colinertia[rcolet]) +# afctot<-rbind(afctot,afctmp) +# write.csv2(afctot,file = "%s") +# source("%s") +# """ % (DictAfcUciOut['afc_row'], RscriptsPath['Rgraph']) +# txt += """ +# PARCEX=%s +# """ % PARCEX +# #FIXME +# txt += """ +# PlotAfc(afcet,filename="%s",toplot=c%s, PARCEX=PARCEX) +# """ % (DictAfcUciOut['AfcColAct'], "('none','active')") +# txt += """ +# PlotAfc(afcsup,filename="%s",toplot=c%s, PARCEX=PARCEX) +# """ % (DictAfcUciOut['AfcColSup'], "('none','passive')") +# txt += """PlotAfc(afcet,filename="%s", toplot=c%s, PARCEX=PARCEX) +# """ % (DictAfcUciOut['AfcColEt'], "('none','passive')") +# txt += """ +# PlotAfc(afcet,filename="%s", toplot=c%s, PARCEX=PARCEX) +# """ % (DictAfcUciOut['AfcRow'], "('all','none')") +# f = open(DictAfcUciOut['Rafcuci'], 'w') +# f.write(txt) +# f.close() + diff --git a/ProfList.py b/ProfList.py new file mode 100644 index 0000000..db1dbd1 --- /dev/null +++ b/ProfList.py @@ -0,0 +1,875 @@ +# -*- coding: utf-8 -*- + +#---------------------------------------------------------------------------- +# Name: ListCtrl.py +# Author: Pierre Ratinaud +# + +#comes from ListCtrl.py from the demo tool of wxPython: +# Author: Robin Dunn & Gary Dumer +# +# Created: +# Copyright: (c) 1998 by Total Control Software +# Licence: wxWindows license +#---------------------------------------------------------------------------- + +import os +import sys +import wx +import wx.lib.mixins.listctrl as listmix +from tabsimi import DoSimi +from listlex import ListForSpec +from chemins import ConstructPathOut, ffr +from dialog import PrefExport, PrefUCECarac, SearchDial +from tableau import Tableau +from search_tools import SearchFrame +import webbrowser +import cStringIO +import tempfile +import codecs +from functions import exec_rcode, MessageImage, progressbar, treat_var_mod +from PrintRScript import barplot +from textclassechd import ClasseCHD +from shutil import copyfile + +#--------------------------------------------------------------------------- + +class ProfListctrl(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin): + def __init__(self, parent, ID, pos=wx.DefaultPosition, + size=wx.DefaultSize, style=0): + wx.ListCtrl.__init__(self, parent, ID, pos, size, style) + listmix.ListCtrlAutoWidthMixin.__init__(self) + + +class ProfListctrlPanel(wx.Panel, listmix.ColumnSorterMixin): + def __init__(self, parent, gparent, ProfClasse, Alceste=False, cl=0): + self.parent = parent + classe = ProfClasse + self.cl = cl + self.Source = gparent + if 'tableau' in dir(self.Source): + self.tableau = self.Source.tableau + self.Alceste = Alceste + self.var_mod = {} + + + wx.Panel.__init__(self, parent, -1, style=wx.WANTS_CHARS) + + search_id = wx.NewId() + searchall_id = wx.NewId() + self.parent.Bind(wx.EVT_MENU, self.onsearch, id = search_id) + self.parent.Bind(wx.EVT_MENU, self.onsearchall, id = searchall_id) + self.accel_tbl = wx.AcceleratorTable([(wx.ACCEL_CTRL, ord('F'), search_id), + (wx.ACCEL_CTRL|wx.ACCEL_SHIFT, ord('F'), searchall_id)]) + self.SetAcceleratorTable(self.accel_tbl) + + self.il = wx.ImageList(16, 16) +# self.idx1 = self.il.Add(images.getSmilesBitmap()) + self.sm_up = self.il.Add(getSmallUpArrowBitmap()) + self.sm_dn = self.il.Add(getSmallDnArrowBitmap()) + tID = wx.NewId() + + self.list = ProfListctrl(self, tID, + style=wx.LC_REPORT + | wx.BORDER_NONE + | wx.LC_EDIT_LABELS + | wx.LC_SORT_ASCENDING + ) + line1 = classe[0] + limit = 0 + limitsup = 0 + i = 0 + dictdata = {} + limit = [i for i,b in enumerate(classe[1:]) if b[0] == '*'] + if limit != [] : + limit = limit[0] - 1 + limitsup = [i for i,b in enumerate(classe[1:]) if b[0] == '*****'] + if limitsup == [] : + limitsup = 0 + else : + limitsup = limitsup[0] + classen = [line for line in classe[1:] if line[0] != '*' and line[0] != '*****'] + if limit == [] : + limit = len(classen) - 1 + dictdata = dict(zip([i for i in range(0,len(classen))], classen)) + #if not self.Alceste : + # limit = limit + 1 + self.list.SetImageList(self.il, wx.IMAGE_LIST_SMALL) + + self.PopulateList(dictdata, limit, limitsup, Alceste) + + self.Bind(wx.EVT_SIZE, self.OnSize) + self.Bind(wx.EVT_LIST_COL_CLICK, self.OnColClick) + self.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnItemSelected, self.list) + + # for wxMSW + self.list.Bind(wx.EVT_COMMAND_RIGHT_CLICK, self.OnRightClick) + + # for wxGTK + self.list.Bind(wx.EVT_RIGHT_UP, self.OnRightClick) + self.itemDataMap = dictdata + listmix.ColumnSorterMixin.__init__(self, 8) + self.do_greyline() +#----------------------------------------------------------------------------------------- + + def PopulateList(self, dictdata, limit, limitsup, Alceste): + + + # for normal, simple columns, you can add them like this: + self.list.InsertColumn(0, "num", wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(1, "eff. uce", wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(2, "eff. total", wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(3, "pourcentage", wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(4, "chi2", wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(5, "Type", wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(6, "forme", wx.LIST_FORMAT_RIGHT) + self.list.InsertColumn(7, "p", wx.LIST_FORMAT_RIGHT) + + for key in dictdata : #.iteritems(): + index = self.list.InsertStringItem(sys.maxint, '%4i' % key) + i = 1 + for val in dictdata[key][1:]: + self.list.SetStringItem(index, i, str(dictdata[key][i])) + i += 1 + self.list.SetItemData(index, key) + + self.list.SetColumnWidth(0, 60) + self.list.SetColumnWidth(1, 70) + self.list.SetColumnWidth(2, 80) + self.list.SetColumnWidth(3, 100) + self.list.SetColumnWidth(4, 70) + self.list.SetColumnWidth(5, wx.LIST_AUTOSIZE) + self.list.SetColumnWidth(6, wx.LIST_AUTOSIZE) + self.list.SetColumnWidth(7, wx.LIST_AUTOSIZE) + + # show how to change the colour of a couple items + if limitsup != 0 : + for i in range(limitsup, limit): + item = self.list.GetItem(i) + item.SetTextColour(wx.RED) + self.list.SetItem(item) + else : + limit=limit+1 + + for i in range(limit, len(dictdata)): + item = self.list.GetItem(i) + item.SetTextColour(wx.BLUE) + self.list.SetItem(item) + + if limitsup != 0 : + self.la = [self.getColumnText(i,6) for i in range(0, limitsup-1)] + self.lchi = [float(self.getColumnText(i,4)) for i in range(0, limitsup-1)] + self.lfreq = [int(self.getColumnText(i,1)) for i in range(0, limitsup-1)] + else : + self.la = [self.getColumnText(i,6) for i in range(0, limit)] + self.lfreq = [int(self.getColumnText(i,1)) for i in range(0, limit)] + self.lchi = [float(self.getColumnText(i,4)) for i in range(0, limit)] + + def do_greyline(self): + for row in xrange(self.list.GetItemCount()): + if row % 2 : + self.list.SetItemBackgroundColour(row, (230, 230, 230)) + else : + self.list.SetItemBackgroundColour(row, wx.WHITE) + + + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py + def GetListCtrl(self): + return self.list + + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py + def GetSortImages(self): + return (self.sm_dn, self.sm_up) + + + def OnRightDown(self, event): + x = event.GetX() + y = event.GetY() + item, flags = self.list.HitTest((x, y)) + + if flags & wx.LIST_HITTEST_ONITEM: + self.list.Select(item) + + event.Skip() + + + def getColumnText(self, index, col): + item = self.list.GetItem(index, col) + return item.GetText() + + + def OnItemSelected(self, event): + self.currentItem = event.m_itemIndex + event.Skip() + + def onsearch(self, evt) : + self.dial = SearchDial(self, self, 6, True) + self.dial.CenterOnParent() + self.dial.ShowModal() + self.dial.Destroy() + + def onsearchall(self, evt) : + if 'FrameSearch' not in dir(self.Source) : + self.Source.FrameSearch = SearchFrame(self.parent, -1, u"Rechercher...", self.Source.corpus) + self.dial = SearchDial(self, self.Source.FrameSearch.liste, 1, False) + self.dial.CenterOnParent() + self.dial.ShowModal() + self.dial.Destroy() + + def OnRightClick(self, event): + + # only do this part the first time so the events are only bound once + if self.Alceste: + if not hasattr(self, "popupID1"): + self.popupID1 = wx.NewId() + self.popupID2 = wx.NewId() + self.popupID3 = wx.NewId() + self.popupID4 = wx.NewId() + self.popupID5 = wx.NewId() + self.popupID6 = wx.NewId() + self.popupID7 = wx.NewId() + self.popupID8 = wx.NewId() + self.popupID9 = wx.NewId() + #self.popupID10 = wx.NewId() + self.popupIDgraph = wx.NewId() + self.idseg = wx.NewId() + self.iducecarac = wx.NewId() + self.idtablex = wx.NewId() + self.idchimod = wx.NewId() + self.idwordgraph = wx.NewId() + self.popup_proxe = wx.NewId() + self.idlexdendro = wx.NewId() + self.idexport = wx.NewId() + # self.export_classes = wx.NewId() + + self.Bind(wx.EVT_MENU, self.OnPopupOne, id=self.popupID1) + self.Bind(wx.EVT_MENU, self.OnPopupTwo, id=self.popupID2) + self.Bind(wx.EVT_MENU, self.OnPopupThree, id=self.popupID3) + self.Bind(wx.EVT_MENU, self.OnPopupFour, id=self.popupID4) + self.Bind(wx.EVT_MENU, self.OnPopupFive, id=self.popupID5) + self.Bind(wx.EVT_MENU, self.OnPopupSix, id=self.popupID6) + self.Bind(wx.EVT_MENU, self.OnPopupSeven, id=self.popupID7) + self.Bind(wx.EVT_MENU, self.OnPopupHeight, id=self.popupID8) + self.Bind(wx.EVT_MENU, self.OnPopupNine, id=self.popupID9) + #self.Bind(wx.EVT_MENU, self.OnPopupSpec, id=self.popupID10) + self.Bind(wx.EVT_MENU, self.on_graph, id=self.popupIDgraph) + self.Bind(wx.EVT_MENU, self.on_segments, id=self.idseg) + self.Bind(wx.EVT_MENU, self.on_uce_carac, id = self.iducecarac) + self.Bind(wx.EVT_MENU, self.on_tablex, id = self.idtablex) + self.Bind(wx.EVT_MENU, self.quest_var_mod, id = self.idchimod) + self.Bind(wx.EVT_MENU, self.onwordgraph, id = self.idwordgraph) + self.Bind(wx.EVT_MENU, self.onproxe, id = self.popup_proxe) + self.Bind(wx.EVT_MENU, self.onlexdendro, id = self.idlexdendro) + self.Bind(wx.EVT_MENU, self.onexport, id = self.idexport) + # self.Bind(wx.EVT_MENU, self.on_export_classes, id = self.export_classes) + # self.Bind(wx.EVT_MENU, self.OnPopupThree, id=self.popupID3) + + # make a menu + menu = wx.Menu() + menu.Append(self.popupID1, u"Formes associées") + menu.Append(self.idtablex, u"Chi2 par classe") + menu.Append(self.idlexdendro, u"Chi2 par classe + dendro") + menu.Append(self.idchimod, u"Chi2 modalités de la variable") + menu.Append(self.idwordgraph, u"Graphe du mot") + #menu.Append(self.export_classes, u"Exporter le corpus...") + + #menu.Append(self.popupID10, u"Spécificités") + + menu_conc = wx.Menu() + menu_conc.Append(self.popupID2, u"dans les uce de la classe") + menu_conc.Append(self.popupID3, u"dans les uce classées") + menu_conc.Append(self.popupID4, u"dans toutes les uce") + menu.AppendMenu(-1, u"Concordancier", menu_conc) + menu_cnrtl = wx.Menu() + menu_cnrtl.Append(self.popupID5, u"Définition") + menu_cnrtl.Append(self.popupID6, u"Etymologie") + menu_cnrtl.Append(self.popupID7, u"Synonymie") + menu_cnrtl.Append(self.popupID8, u"Antonymie") + menu_cnrtl.Append(self.popupID9, u"Morphologie") + menu_cnrtl.Append(self.popup_proxe, u"Proxémie") + menu.AppendMenu(-1, u"Outils du CNRTL", menu_cnrtl) + menu.AppendSeparator() + menu.Append(self.popupIDgraph, u"Graphe de la classe") + menu.Append(self.idseg, u"Segments répétés") + menu.Append(self.iducecarac, u"UCE caractéristiques") + menu.Append(self.idexport, 'Partitionner...') + #menu.Append(self.popupID2, u"Concordancier") + # menu.Append(self.popupID3, "recharger") + + self.PopupMenu(menu) + menu.Destroy() + elif 'tableau' in dir(self.Source) : + if not hasattr(self, "pop1"): + self.pop1 = wx.NewId() + self.pop2 = wx.NewId() + self.pop3 = wx.NewId() + self.Bind(wx.EVT_MENU, self.quest_simi, id=self.pop1) + self.Bind(wx.EVT_MENU, self.on_tablex, id=self.pop2) + self.Bind(wx.EVT_MENU, self.quest_var_mod, id=self.pop3) + + menu = wx.Menu() + menu.Append(self.pop2, u"Chi2 par classe") + menu.Append(self.pop3, u"Chi2 modalités de la variable") + menu.AppendSeparator() + menu.Append(self.pop1, u"Graph de la classe") + self.PopupMenu(menu) + menu.Destroy() + + def onexport(self, evt) : + if 'corpus' in dir(self.Source): + corpus = self.Source.corpus + ClasseCHD(self.parent, corpus, self.cl) + + def quest_var_mod(self, evt) : + if 'corpus' in dir(self.Source): + corpus = self.Source.corpus + if self.var_mod == {} : + self.var_mod = treat_var_mod([val for val in corpus.make_etoiles()]) + else : + corpus = self.Source.tableau + if self.var_mod == {} : + self.var_mod = treat_var_mod([val for val in corpus.actives] + [val for val in corpus.sups]) + with codecs.open(self.Source.pathout['chisqtable'], 'r', corpus.parametres['syscoding']) as f : + chistable = [line.replace('\n','').replace('\r','').replace('"','').replace(',','.').split(';') for line in f] + title = chistable[0] + title.pop(0) + chistable.pop(0) + vchistable = [line[1:] for line in chistable] + fchistable = [line[0] for line in chistable] + word = self.getColumnText(self.list.GetFirstSelected(), 6) + if len(word.split('_')) > 1 : + var = word.split('_')[0] + words = [word for word in self.var_mod[var]] + words.sort() + tableout = [] + kwords = [] + for word in words : + if word in fchistable : + tableout.append(vchistable[fchistable.index(word)]) + kwords.append(word) + tmpgraph = tempfile.mktemp(dir=self.Source.parent.TEMPDIR) + txt = barplot(tableout, kwords, title, self.Source.parent.RscriptsPath['Rgraph'], tmpgraph) + tmpscript = tempfile.mktemp(dir=self.Source.parent.TEMPDIR) + file = open(tmpscript,'w') + file.write(txt) + file.close() + exec_rcode(self.Source.parent.RPath, tmpscript, wait = True) + win = MessageImage(self, -1, u"Graphique", size=(700, 500),style = wx.DEFAULT_FRAME_STYLE) + win.addsaveimage(tmpgraph) + txt = "" % tmpgraph + win.HtmlPage.SetPage(txt) + win.Show(True) + else : + dial = wx.MessageDialog(self, u"Ce n'est pas une forme du type variable_modalité", u"Problème", wx.OK | wx.ICON_WARNING) + dial.CenterOnParent() + dial.ShowModal() + dial.Destroy() + + def quest_simi(self, evt) : + tableau = self.Source.tableau + tab = tableau.make_table_from_classe(self.cl, self.la) + pathout = ConstructPathOut(self.Source.pathout+'/', 'simi_classe_%i' %self.cl) + self.filename = os.path.join(pathout,'mat01.csv') + tableau.printtable(self.filename, tab) + del tab + paramsimi = {'coeff' : 0, + 'layout' : 2, + 'type' : 1, + 'arbremax' : 1, + 'coeff_tv' : 1, + 'coeff_tv_nb' : 0, + 'tvprop' : 0, + 'tvmin' : 5, + 'tvmax' : 30, + 'coeff_te' : 1, + 'coeff_temin' : 1, + 'coeff_temax' : 10, + 'label_v': 1, + 'label_e': 1, + 'vcex' : 0, + 'vcexmin' : 10, + 'vcexmax' : 25, + 'cex' : 10, + 'cexfromchi' : True, + 'sfromchi': False, + 'seuil_ok' : 0, + 'seuil' : 1, + 'cols' : (255,0,0), + 'cola' : (200,200,200), + 'width' : 1000, + 'height' : 1000, + 'first' : True, + 'keep_coord' : True, + 'alpha' : 20, + 'film': False, + } +# self.tableau.actives = {} +# self.tableau.lchi = self.lchi +# self.tableau.chi = {} +# for i, val in enumerate(self.la) : +# self.tableau.actives[val] = [self.lfreq[i]] +# self.tableau.chi[val] = [self.lchi[i]] + + act = {} + self.tableau.chi = {} + self.tableau.lchi = self.lchi + self.tableau.parametre['fromprof'] = True + for i, val in enumerate(self.la) : + act[val] = [self.lfreq[i]] + self.tableau.chi[val] = [self.lchi[i]] + DoSimi(self, param = paramsimi, fromprof = ffr(self.filename), pathout = pathout, listactives = self.la, actives = act) + + def onwordgraph(self, evt): + word = self.getColumnText(self.list.GetFirstSelected(), 6) + dlg = progressbar(self, 2) + corpus = self.Source.corpus + uces = corpus.lc[self.cl-1] + dlg.Update(1, u'Tableau...') + #tab = corpus.make_table_with_classe(uces, self.la) + pathout = ConstructPathOut(self.Source.pathout.dirout + '/' , 'simi_%s' % word) + self.filename = os.path.join(pathout,'mat01.csv') + dlg.Update(2, u'Ecriture...') + #corpus.write_tab(tab, self.filename) + #del tab + corpus.make_and_write_sparse_matrix_from_classe(self.la, uces, self.filename) + dlg.Destroy() + paramsimi = {'coeff' : 0, + 'layout' : 2, + 'type' : 1, + 'arbremax' : 0, + 'coeff_tv' : 1, + 'coeff_tv_nb' : 0, + 'tvprop' : 0, + 'tvmin' : 5, + 'tvmax' : 30, + 'coeff_te' : 1, + 'coeff_temin' : 1, + 'coeff_temax' : 10, + 'label_v': 1, + 'label_e': 0, + 'vcex' : 1, + 'vcexmin' : 10, + 'vcexmax' : 25, + 'cex' : 10, + 'seuil_ok' : 1, + 'seuil' : 1, + 'cols' : (255,0,0), + 'cola' : (200,200,200), + 'width' : 600, + 'height' : 600, + 'first' : True, + 'keep_coord' : True, + 'alpha' : 20, + 'film': False, + } + self.tableau = Tableau(self.parent, '') + self.tableau.listactives = self.la + self.tableau.actives = {} + for i, val in enumerate(self.la) : + self.tableau.actives[val] = [self.lfreq[i]] + DoSimi(self, param = paramsimi, fromprof = ffr(self.filename), pathout = pathout, wordgraph = word) + + + def OnPopupOne(self, event): + corpus = self.Source.corpus + #print 'ATTENTION PRINT ET TABLE' + #corpus.make_et_table() + word = self.getColumnText(self.list.GetFirstSelected(), 6) + lems = corpus.getlems() + uces = corpus.lc[self.cl-1] + rep = [] + #FIXME : donner aussi eff reel a la place de nb uce + for forme in lems[word].formes : + ucef = list(set(corpus.getworduces(forme)).intersection(uces)) + #ucef = [uce for uce in corpus.formes[forme][1] if uce in uces] + if ucef != [] : + nb = len(ucef) + rep.append([corpus.getforme(forme).forme, nb]) + win = message(self, -1, u"Formes associées", size=(300, 200), style=wx.DEFAULT_FRAME_STYLE) + win.html = '\n' + '
    '.join([' : '.join([str(val) for val in forme]) for forme in rep]) + '\n' + win.HtmlPage.SetPage(win.html) + win.Show(True) + + def on_graph(self, evt): + dlg = progressbar(self, 2) + corpus = self.Source.corpus + uces = corpus.lc[self.cl-1] + dlg.Update(1, u'Tableau...') + #tab = corpus.make_table_with_classe(uces, self.la) + pathout = ConstructPathOut(self.Source.pathout.dirout+'/', 'simi_classe_%i' %self.cl) + self.filename = os.path.join(pathout,'mat01.csv') + dlg.Update(2, u'Ecriture...') + #corpus.write_tab(tab, self.filename) + #del tab + corpus.make_and_write_sparse_matrix_from_classe(self.la, uces, self.filename) + dlg.Destroy() + paramsimi = {'coeff' : 0, + 'layout' : 2, + 'type' : 1, + 'arbremax' : 1, + 'coeff_tv' : 1, + 'coeff_tv_nb' : 0, + 'tvprop' : 0, + 'tvmin' : 5, + 'tvmax' : 30, + 'coeff_te' : 1, + 'coeff_temin' : 1, + 'coeff_temax' : 10, + 'label_v': 1, + 'label_e': 0, + 'vcex' : 0, + 'vcexmin' : 10, + 'vcexmax' : 25, + 'cex' : 10, + 'cexfromchi' : True, + 'sfromchi': False, + 'seuil_ok' : 0, + 'seuil' : 1, + 'cols' : (255,0,0), + 'cola' : (200,200,200), + 'width' : 1000, + 'height' : 1000, + 'first' : True, + 'keep_coord' : True, + 'alpha' : 20, + 'film': False, + } + self.tableau = Tableau(self.parent, '') + self.tableau.listactives = self.la + self.tableau.actives = {} + self.tableau.lchi = self.lchi + self.tableau.chi = {} + self.tableau.parametre['fromprof'] = True + for i, val in enumerate(self.la) : + self.tableau.actives[val] = [self.lfreq[i]] + self.tableau.chi[val] = [self.lchi[i]] + DoSimi(self, param = paramsimi, fromprof = ffr(self.filename), pathout = pathout) + + def on_segments(self,evt) : + dlg = progressbar(self, 2) + corpus = self.Source.corpus + uces = corpus.lc[self.cl-1] + l = [] + dlg.Update(1, u'Segments...') + for i in range(2,10) : + li = corpus.find_segments_in_classe(uces, i, 1000) + if li == [] : + break + else : + l += li + l.sort(reverse = True) + d = {} + dlg.Update(2, 'Tri...') + for i, line in enumerate(l) : + d[i] = [line[1],line[0], line[2]] + first = ['','',''] + para={'dico': d,'fline':first} + dlg.Destroy() + win = wliste(self, -1, u"Segments répétés - Classe %i" % self.cl, d, first, size=(600, 500)) + win.Show(True) + + def on_uce_carac(self,evt) : + dial = PrefUCECarac(self, self.parent) + dial.CenterOnParent() + if dial.ShowModal() == wx.ID_OK : + limite = dial.spin_eff.GetValue() + atype = dial.radio_type.GetSelection() + dlg = progressbar(self,maxi = 4) + corpus = self.Source.corpus + uces = corpus.lc[self.cl-1] + tab = corpus.make_table_with_classe(uces, self.la) + tab.pop(0) + dlg.Update(2, u'score...') + if atype == 0 : + ntab = [round(sum([self.lchi[i] for i, word in enumerate(line) if word == 1]),2) for line in tab] + else : + ntab = [round(sum([self.lchi[i] for i, word in enumerate(line) if word == 1])/float(sum(line)),2) if sum(line)!=0 else 0 for line in tab] + ntab2 = [[ntab[i], uces[i]] for i, val in enumerate(ntab)] + del ntab + ntab2.sort(reverse = True) + ntab2 = ntab2[:limite] + dlg.Update(3, u'concordancier...') + ucestxt = [corpus.ucis_paras_uces[val[1][0]][val[1][1]][val[1][2]] for val in ntab2] + ucestxt = [corpus.make_concord(self.la, ' '.join(uce), 'red') for uce in ucestxt] + dlg.Update(4, u'texte...') + ucis_txt = [' '.join(corpus.ucis[val[1][0]][0]) for val in ntab2] + win = message(self, -1, u"UCE caractéristiques - Classe %i" % self.cl, size=(600, 500), style=wx.DEFAULT_FRAME_STYLE) + win.html = '\n' + '

    '.join(['
    '.join([ucis_txt[i], 'score : ' + str(ntab2[i][0]), ucestxt[i]]) for i in range(0,len(ucestxt))]) + '\n' + win.HtmlPage.SetPage(win.html) + dlg.Destroy() + win.Show(True) + + def on_tablex(self, evt): + if 'corpus' in dir(self.Source): + corpus = self.Source.corpus + else : + corpus = self.Source.tableau + with codecs.open(self.Source.pathout['chisqtable'], 'r', corpus.parametres['syscoding']) as f : + chistable = [line.replace('\n','').replace('\r','').replace('"','').replace(',','.').split(';') for line in f] + title = chistable[0] + title.pop(0) + chistable.pop(0) + vchistable = [line[1:] for line in chistable] + fchistable = [line[0] for line in chistable] + words = [self.getColumnText(self.list.GetFirstSelected(), 6)] + tableout = [vchistable[fchistable.index(words[0])]] + last = self.list.GetFirstSelected() + while self.list.GetNextSelected(last) != -1: + last = self.list.GetNextSelected(last) + word = self.getColumnText(last, 6) + words.append(word) + tableout.append(vchistable[fchistable.index(word)]) + tmpgraph = tempfile.mktemp(dir=self.Source.parent.TEMPDIR) + nbcl = len(title) + txt = barplot(tableout, words, title, self.Source.parent.RscriptsPath['Rgraph'], tmpgraph) + tmpscript = tempfile.mktemp(dir=self.Source.parent.TEMPDIR) + file = open(tmpscript,'w') + file.write(txt) + file.close() + + exec_rcode(self.Source.parent.RPath, tmpscript, wait = True) + win = MessageImage(self, -1, u"Graphique", size=(700, 500),style = wx.DEFAULT_FRAME_STYLE) + win.addsaveimage(tmpgraph) + txt = "" % tmpgraph + win.HtmlPage.SetPage(txt) + win.Show(True) + + def onlexdendro(self, evt): + if 'corpus' in dir(self.Source): + corpus = self.Source.corpus + else : + corpus = self.Source.tableau + with codecs.open(self.Source.pathout['chisqtable'], 'r', corpus.parametres['syscoding']) as f : + chistable = [line.replace('\n','').replace('\r','').replace('"','').replace(',','.').split(';') for line in f] + title = chistable[0] + title.pop(0) + chistable.pop(0) + vchistable = [line[1:] for line in chistable] + fchistable = [line[0] for line in chistable] + words = [self.getColumnText(self.list.GetFirstSelected(), 6)] + tableout = [vchistable[fchistable.index(words[0])]] + last = self.list.GetFirstSelected() + while self.list.GetNextSelected(last) != -1: + last = self.list.GetNextSelected(last) + word = self.getColumnText(last, 6) + words.append(word) + tableout.append(vchistable[fchistable.index(word)]) + tmpgraph = tempfile.mktemp(dir=self.Source.parent.TEMPDIR) + txttable = 'c(' + ','.join([','.join(line) for line in tableout]) + ')' + rownames = 'c("' + '","'.join(words) + '")' + colnames = 'c("' + '","'.join(title) + '")' + nbcl = len(title) + rownb = len(words) + txt = """ + load("%s") + di <- matrix(data=%s, nrow=%i, byrow = TRUE) + rownames(di)<- %s + colnames(di) <- %s + library(ape) + source("%s") + height <- (30*ncol(di)) + (15*nrow(di)) + height <- ifelse(height <= 400, 400, height) + width <- 500 + open_file_graph("%s", width=width, height=height) + plot.dendro.lex(tree.cut1$tree.cl, di) + """ % (self.Source.pathout['Rdendro'], txttable, rownb, rownames, colnames, self.Source.parent.RscriptsPath['Rgraph'], ffr(tmpgraph)) + tmpscript = tempfile.mktemp(dir=self.Source.parent.TEMPDIR) + file = open(tmpscript,'w') + file.write(txt) + file.close() + exec_rcode(self.Source.parent.RPath, tmpscript, wait = True) + win = MessageImage(self, -1, u"Graphique", size=(700, 500),style = wx.DEFAULT_FRAME_STYLE) + win.addsaveimage(tmpgraph) + txt = "" % tmpgraph + win.HtmlPage.SetPage(txt) + win.Show(True) + + + def make_concord(self, uces, title, color = 'red') : + corpus = self.Source.corpus + ListWord = [self.getColumnText(self.list.GetFirstSelected(), 6)] + last = self.list.GetFirstSelected() + while self.list.GetNextSelected(last) != -1: + last = self.list.GetNextSelected(last) + ListWord.append(self.getColumnText(last, 6)) + listmot = [forme for item in ListWord for forme in corpus.getlems()[item].formes] + win = message(self, -1, title, size=(600, 500), style=wx.DEFAULT_FRAME_STYLE) + toshow = ['\n

    Concordancier

    \n'] + toshow.append('

    ' % color + ' '.join(ListWord) + '


    ') + duce = {} + ucef = [] + for word in ListWord : + ucef += list(set(corpus.getlemuces(word)).intersection(uces)) + ucef = list(set(ucef)) + ucef.sort() + res = corpus.getconcorde(ucef) + txt = '
    '.join(toshow) +'

    ' + for uce in res : + ucetxt = ' '+uce[1]+' ' + txt += ' '.join(corpus.ucis[corpus.getucefromid(uce[0]).uci].etoiles) + '
    ' + for forme in listmot: + forme = corpus.getforme(forme).forme + ucetxt = ucetxt.replace(' '+forme+' ', ' ' + forme + ' ') + txt += ucetxt + '

    ' + win.HtmlPage.SetPage(txt) + return win + + def OnPopupTwo(self, event): + corpus = self.Source.corpus + uces = corpus.lc[self.cl-1] + win = self.make_concord(uces, "Concordancier - Classe %i" % self.cl) + win.Show(True) + + def OnPopupThree(self, event): + corpus = self.Source.corpus + uces = [classe[i] for classe in corpus.lc for i in range(0,len(classe))] + win = self.make_concord(uces, "Concordancier - UCE classées") + win.Show(True) + + def OnPopupFour(self, event): + corpus = self.Source.corpus + uces = [classe[i] for classe in corpus.lc for i in range(0,len(classe))] + corpus.lc0 + win = self.make_concord(uces, "Concordancier - Toutes les UCE") + win.Show(True) + + def OnPopupFive(self, event): + word = self.getColumnText(self.list.GetFirstSelected(), 6) + lk = "http://www.cnrtl.fr/definition/" + word + webbrowser.open(lk) + + def OnPopupSix(self, event): + word = self.getColumnText(self.list.GetFirstSelected(), 6) + lk = "http://www.cnrtl.fr/etymologie/" + word + webbrowser.open(lk) + + def OnPopupSeven(self, event): + word = self.getColumnText(self.list.GetFirstSelected(), 6) + lk = "http://www.cnrtl.fr/synonymie/" + word + webbrowser.open(lk) + + def OnPopupHeight(self, event): + word = self.getColumnText(self.list.GetFirstSelected(), 6) + lk = "http://www.cnrtl.fr/antonymie/" + word + webbrowser.open(lk) + + def OnPopupNine(self, event): + word = self.getColumnText(self.list.GetFirstSelected(), 6) + lk = "http://www.cnrtl.fr/morphologie/" + word + webbrowser.open(lk) + + def onproxe(self, evt) : + word = self.getColumnText(self.list.GetFirstSelected(), 6) + lk = "http://www.cnrtl.fr/proxemie/" + word + webbrowser.open(lk) + + def OnSize(self, event): + w, h = self.GetClientSizeTuple() + self.list.SetDimensions(0, 0, w, h) + + def OnColClick(self, event): + self.do_greyline() + + +class wliste(wx.Frame): + def __init__(self, parent, id, title, d, fline, size=(600, 500)): + wx.Frame.__init__(self, parent, id) + self.liste = ListForSpec(self, parent, d, fline) + self.button_1 = wx.Button(self, -1, "Fermer") + self.Bind(wx.EVT_BUTTON, self.OnCloseMe, self.button_1) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + self.__do_layout() + + def __do_layout(self): + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_2.Add(self.liste, 1, wx.EXPAND | wx.ADJUST_MINSIZE, 0) + sizer_2.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ADJUST_MINSIZE, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetAutoLayout(True) + self.SetSizer(sizer_1) + self.Layout() + + def OnCloseMe(self, event): + self.Close(True) + + def OnCloseWindow(self, event): + self.Destroy() + +class message(wx.Frame): + def __init__(self, *args, **kwds): + kwds["style"] = wx.DEFAULT_FRAME_STYLE + wx.Frame.__init__(self, *args, **kwds) + self.html = "" + self.HtmlPage=wx.html.HtmlWindow(self, -1) + if "gtk2" in wx.PlatformInfo: + self.HtmlPage.SetStandardFonts() + self.HtmlPage.SetFonts('Courier','Courier') + self.button_1 = wx.Button(self, -1, "Fermer") + self.button_2 = wx.Button(self, -1, u"Enregistrer...") + + self.Bind(wx.EVT_BUTTON, self.OnSavePage, self.button_2) + self.Bind(wx.EVT_BUTTON, self.OnCloseMe, self.button_1) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + self.__do_layout() + + def __do_layout(self): + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_2.Add(self.HtmlPage, 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0) + sizer_2.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ADJUST_MINSIZE, 0) + sizer_2.Add(self.button_2, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ADJUST_MINSIZE, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetAutoLayout(True) + self.SetSizer(sizer_1) + self.Layout() + + def OnSavePage(self, evt) : + dlg = wx.FileDialog( + self, message="Enregistrer sous...", defaultDir=os.getcwd(), + defaultFile="concordancier.html", wildcard="html|*.html", style=wx.SAVE | wx.OVERWRITE_PROMPT + ) + dlg.SetFilterIndex(2) + dlg.CenterOnParent() + if dlg.ShowModal() == wx.ID_OK: + path = dlg.GetPath() + with open(path, 'w') as f : + f.write(self.html) + + def OnCloseMe(self, event): + self.Close(True) + + def OnCloseWindow(self, event): + self.Destroy() + +def getSmallUpArrowData(): + return \ +'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\ +\x00\x00\x00\x1f\xf3\xffa\x00\x00\x00\x04sBIT\x08\x08\x08\x08|\x08d\x88\x00\ +\x00\x00C\xb0\x89\ +\xd3.\x10\xd1m\xc3\xe5*\xbc.\x80i\xc2\x17.\x8c\xa3y\x81\x01\x00\xa1\x0e\x04e\ +?\x84B\xef\x00\x00\x00\x00IEND\xaeB`\x82" + +def getSmallDnArrowBitmap(): + return wx.BitmapFromImage(getSmallDnArrowImage()) + +def getSmallDnArrowImage(): + stream = cStringIO.StringIO(getSmallDnArrowData()) + return wx.ImageFromStream(stream) diff --git a/Rscripts/CHD.R b/Rscripts/CHD.R new file mode 100644 index 0000000..fcec03f --- /dev/null +++ b/Rscripts/CHD.R @@ -0,0 +1,389 @@ +#Author: Pierre Ratinaud +#Copyright (c) 2008-2011 Pierre Ratinaud +#Lisense: GNU/GPL + +pp<-function(txt,val) { + d<-paste(txt,' : ') + print(paste(d,val)) +} +MyChiSq<-function(x,sc,n){ + sr<-rowSums(x) + E <- outer(sr, sc, "*")/n + STAT<-sum(((x - E)^2)/E) + STAT +} + +MySpeedChi <- function(x,sc) { + sr <-rowSums(x) + E <- outer(sr, sc, "*") + STAT<-sum((x - E)^2/E) + STAT +} + +find.max <- function(dtable, chitable, compte, rmax, maxinter, sc, TT) { + ln <- which(dtable==1, arr.ind=TRUE) + lo <- list() + lo[1:nrow(dtable)] <- 0 + for (k in 1:nrow(ln)) {lo[[ln[k,1]]]<-append(lo[[ln[k,1]]],ln[k,2])} + for (k in 1:nrow(dtable)) {lo[[k]] <- lo[[k]][-1]} + lo<-lo[-c(1,length(lo))] + for (l in lo) { + compte <- compte + 1 + chitable[1,l]<-chitable[1,l]+1 + chitable[2,l]<-chitable[2,l]-1 + chi<-MyChiSq(chitable,sc,TT) + if (chi>maxinter) { + maxinter<-chi + rmax<-compte + } + } + res <- list(maxinter=maxinter, rmax=rmax) + res +} + +CHD<-function(data.in, x=9, libsvdc=FALSE, libsvdc.path=NULL){ +# sink('/home/pierre/workspace/iramuteq/dev/findchi2.txt') + dataori <- data.in + row.names(dataori) <- rownames(data.in) + dtable <- data.in + colnames(dtable) <- 1:ncol(dtable) + dout <- NULL + rowelim<-NULL + pp('ncol entree : ',ncol(dtable)) + pp('nrow entree',nrow(dtable)) + listcol <- list() + listmere <- list() + list_fille <- list() + print('vire colonnes vides en entree')#FIXME : il ne doit pas y avoir de colonnes vides en entree !! + sdt<-colSums(dtable) + if (min(sdt)==0) + dtable<-dtable[,-which(sdt==0)] + print('vire lignes vides en entree') + sdt<-rowSums(dtable) + if (min(sdt)==0) { + rowelim<-as.integer(rownames(dtable)[which(sdt==0)]) + print('&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&') + print(rowelim) + print('&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&') + dtable<-dtable[-which(sdt==0),] + } + mere<-1 + for (i in 1:x) { + clnb<-(i*2) + listmere[[clnb]]<-mere + listmere[[clnb+1]]<-mere + list_fille[[mere]] <- c(clnb,clnb+1) + listcol[[clnb]]<-vector() + listcol[[clnb+1]]<-vector() + #extraction du premier facteur de l'afc + print('afc') + pp('taille dtable dans boucle (col/row)',c(ncol(dtable),nrow(dtable))) + afc<-boostana(dtable, nd=1, libsvdc=libsvdc, libsvdc.path=libsvdc.path) + pp('SV',afc$singular.values) + pp('V.P.', afc$eigen.values) + coordrow <- as.matrix(afc$row.scores[,1]) + coordrowori<-coordrow + row.names(coordrow)<-rownames(dtable) + coordrow <- cbind(coordrow,1:nrow(dtable)) + print('deb recherche meilleur partition') + ordert <- as.matrix(coordrow[order(coordrow[,1]),]) + ordert <- cbind(ordert, 1:nrow(ordert)) + ordert <- ordert[order(ordert[,2]),] + + listinter<-vector() + listlim<-vector() + dtable <- dtable[order(ordert[,3]),] + sc <- colSums(dtable) + TT <- sum(sc) + sc1 <- dtable[1,] + sc2 <- colSums(dtable) - sc1 + chitable <- rbind(sc1, sc2) + compte <- 1 + maxinter <- 0 + rmax <- NULL + + inert <- find.max(dtable, chitable, compte, rmax, maxinter, sc, TT) + print('@@@@@@@@@@@@@@@@@@@@@@@@@@@@') + pp('max inter phase 1', inert$maxinter/TT)#max(listinter)) + print('@@@@@@@@@@@@@@@@@@@@@@@@@@@@') + ordert <- ordert[order(ordert[,3]),] + listclasse<-ifelse(coordrowori<=ordert[(inert$rmax),1],clnb,clnb+1) + dtable <- dtable[order(ordert[,2]),] + cl<-listclasse + pp('TT',TT) + #dtable<-cbind(dtable,'cl'= as.vector(cl)) + + N1<-length(listclasse[listclasse==clnb]) + N2<-length(listclasse[listclasse==clnb+1]) + pp('N1',N1) + pp('N2',N2) +################################################################### +# reclassement des individus # +################################################################### + malcl<-1000000000000 + it<-0 + listsub<-list() + #in boucle + ln <- which(dtable==1, arr.ind=TRUE) + lnz <- list() + lnz[1:nrow(dtable)] <- 0 + + for (k in 1:nrow(ln)) {lnz[[ln[k,1]]]<-append(lnz[[ln[k,1]]],ln[k,2])} + for (k in 1:nrow(dtable)) {lnz[[k]] <- lnz[[k]][-1]} + TT<-sum(dtable) + + while (malcl!=0 & N1>=5 & N2>=5) { + it<-it+1 + listsub[[it]]<-vector() + txt <- paste('nombre iteration', it) + #pp('nombre iteration',it) + vdelta<-vector() + #dtable[,'cl']<-cl + t1<-dtable[which(cl[,1]==clnb),]#[,-ncol(dtable)] + t2<-dtable[which(cl[,1]==clnb+1),]#[,-ncol(dtable)] + ncolt<-ncol(t1) + #pp('ncolt',ncolt) + + if (N1 != 1) { + sc1<-colSums(t1) + } else { + sc1 <- t1 + } + if (N2 != 1) { + sc2<-colSums(t2) + } else { + sc2 <- t2 + } + + sc<-sc1+sc2 + chtableori<-rbind(sc1,sc2) + chtable<-chtableori + interori<-MyChiSq(chtableori,sc,TT)/TT#chisq.test(chtableori)$statistic#/TT + txt <- paste(txt, ' - interori : ',interori) + #pp('interori',interori) + + N1<-nrow(t1) + N2<-nrow(t2) + + #pp('N1',N1) + #pp('N2',N2) + txt <- paste(txt, 'N1:', N1,'-N2:',N2) + print(txt) + compte <- 0 + for (l in lnz){ + chi.in<-chtable + compte <- compte + 1 + if(cl[compte]==clnb){ + chtable[1,l]<-chtable[1,l]-1 + chtable[2,l]<-chtable[2,l]+1 + }else{ + chtable[1,l]<-chtable[1,l]+1 + chtable[2,l]<-chtable[2,l]-1 + } + interswitch<-MyChiSq(chtable,sc,TT)/TT#chisq.test(chtable)$statistic/TT + ws<-interori-interswitch + + if (ws<0){ + interori<-interswitch + if(cl[compte]==clnb){ + #sc1<-chtable[1,] + #sc2<-chtable[2,] + cl[compte]<-clnb+1 + listsub[[it]]<-append(listsub[[it]],compte) + } else { + #sc1<-chtable[1,] + #sc2<-chtable[2,] + cl[compte]<-clnb + listsub[[it]]<-append(listsub[[it]],compte) + } + vdelta<-append(vdelta,compte) + } else { + chtable<-chi.in + } + } +# for (val in vdelta) { +# if (cl[val]==clnb) { +# cl[val]<-clnb+1 +# listsub[[it]]<-append(listsub[[it]],val) +# }else { +# cl[val]<-clnb +# listsub[[it]]<-append(listsub[[it]],val) +# } +# } + print('###################################') + print('longueur < 0') + malcl<-length(vdelta) + if ((it>1)&&(!is.logical(listsub[[it]]))&&(!is.logical(listsub[[it-1]]))){ + if (listsub[[it]]==listsub[[(it-1)]]){ + malcl<-0 + } + } + print(malcl) + print('###################################') + } + #dtable<-cbind(dtable,'cl'=as.vector(cl)) + #dtable[,'cl'] <-as.vector(cl) +####################################################################### +# Fin reclassement des individus # +####################################################################### +# if (!(length(cl[cl==clnb])==1 || length(cl[cl==clnb+1])==1)) { + #t1<-dtable[dtable[,'cl']==clnb,][,-ncol(dtable)] + #t2<-dtable[dtable[,'cl']==clnb+1,][,-ncol(dtable)] + t1<-dtable[which(cl[,1]==clnb),]#[,-ncol(dtable)] + t2<-dtable[which(cl[,1]==clnb+1),]#[,-ncol(dtable)] + if (class(t1)=='numeric') { + sc1 <- as.vector(t1) + nrowt1 <- 1 + } else { + sc1 <- colSums(t1) + nrowt1 <- nrow(t1) + } + if (class(t2)=='numeric') { + sc2 <- as.vector(t2) + nrowt2 <- 1 + } else { + sc2 <- colSums(t2) + nrowt2 <- nrow(t2) + } + chtable<-rbind(sc1,sc2) + inter<-chisq.test(chtable)$statistic/TT + pp('last inter',inter) + print('=====================') + #calcul de la specificite des colonnes + mint<-min(nrowt1,nrowt2) + maxt<-max(nrowt1,nrowt2) + seuil<-round((1.9*(maxt/mint))+1.9,digit=6) + #sink('/home/pierre/workspace/iramuteq/dev/findchi2.txt') +# print('ATTENTION SEUIL 3,84') +# seuil<-3.84 + pp('seuil',seuil) + sominf<-0 + nv<-0 + nz<-0 + ncclnb<-0 + ncclnbp<-0 + NN1<-0 + NN2<-0 + maxchip<-0 + nbzeroun<-0 + res1<-0 + res2<-0 + nbseuil<-0 + nbexe<-0 + nbcontrib<-0 + cn<-colnames(dtable) + #another try######################################### + one <- cbind(sc1,sc2) + cols <- c(length(which(cl==clnb)), length(which(cl==clnb+1))) + print(cols) + colss <- matrix(rep(cols,ncol(dtable)), ncol=2, byrow=TRUE) + zero <- colss - one + rows <- cbind(rowSums(zero), rowSums(one)) + n <- sum(cols) + for (m in 1:nrow(rows)) { + obs <- t(matrix(c(zero[m,],one[m,]),2,2)) + E <- outer(rows[m,],cols,'*')/n + if ((min(obs[2,])==0) & (min(obs[1,])!=0)) { + chi <- seuil + 1 + } else if ((min(obs[1,])==0) & (min(obs[2,])!=0)) { + chi <- seuil - 1 + } else if (any(obs < 10)) { + chi <- sum((abs(obs - E) - 0.5)^2 / E) + } else { + chi <- sum(((obs - E)^2)/E) + } + if (is.na(chi)) { + chi <- 0 + } + if (chi > seuil) { + if (obs[2,1] < E[2,1]) { + listcol[[clnb]]<-append(listcol[[clnb]],cn[m]) + ncclnb<-ncclnb+1 + } else if (obs[2,2] < E[2,2]) { + listcol[[clnb+1]]<-append(listcol[[clnb+1]],cn[m]) + ncclnbp<-ncclnbp+1 + } + } + } + ###################################################### + print('resultats elim item') + pp(clnb+1,length(listcol[[clnb+1]])) + pp(clnb,length(listcol[[clnb]])) + pp('ncclnb',ncclnb) + pp('ncclnbp',ncclnbp) + listrownamedtable<-rownames(dtable) + listrownamedtable<-as.integer(listrownamedtable) + newcol<-vector(length=nrow(dataori)) + #remplissage de la nouvelle colonne avec les nouvelles classes + print('remplissage') +# num<-0 + newcol[listrownamedtable] <- cl[,1] + #recuperation de la classe precedante pour les cases vides + print('recuperation classes precedentes') + if (i!=1) { + newcol[which(newcol==0)] <- dout[,ncol(dout)][which(newcol==0)] + } + if(!is.null(rowelim)) { + newcol[rowelim] <- 0 + } + tailleclasse<-as.matrix(summary(as.factor(as.character(newcol)))) + print('tailleclasse') + print(tailleclasse) + tailleclasse<-as.matrix(tailleclasse[!(rownames(tailleclasse)==0),]) + plusgrand<-which.max(tailleclasse) + #??????????????????????????????????? + #Si 2 classes ont des effectifs egaux, on prend la premiere de la liste... + if (length(plusgrand)>1) { + plusgrand<-plusgrand[1] + } + #???????????????????????????????????? + + #constuction du prochain tableau a analyser + print('construction tableau suivant') + dout<-cbind(dout,newcol) + classe<-as.integer(rownames(tailleclasse)[plusgrand]) + dtable<-dataori[which(newcol==classe),] + row.names(dtable)<-rownames(dataori)[which(newcol==classe)] + colnames(dtable) <- 1:ncol(dtable) + mere<-classe + listcolelim<-listcol[[as.integer(classe)]] + mother<-listmere[[as.integer(classe)]] + while (mother!=1) { + listcolelim<-append(listcolelim,listcol[[mother]]) + mother<-listmere[[mother]] + } + + listcolelim<-sort(unique(listcolelim)) + pp('avant',ncol(dtable)) + if (!is.logical(listcolelim)){ + print('elimination colonne') + #dtable<-dtable[,-listcolelim] + dtable<-dtable[,!(colnames(dtable) %in% listcolelim)] + } + pp('apres',ncol(dtable)) + #elimination des colonnes ne contenant que des 0 + print('vire colonne inf 3 dans boucle') + sdt<-colSums(dtable) + if (min(sdt)<=3) + dtable<-dtable[,-which(sdt<=3)] + + #elimination des lignes ne contenant que des 0 + print('vire ligne vide dans boucle') + if (ncol(dtable)==1) { + sdt<-dtable[,1] + } else { + sdt<-rowSums(dtable) + } + if (min(sdt)==0) { + rowelim<-as.integer(rownames(dtable)[which(sdt==0)]) + print('&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&') + print(rowelim) + print('&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&') + dtable<-dtable[-which(sdt==0),] + } +# } + } +# sink() + res <- list(n1 = dout, list_mere = listmere, list_fille = list_fille) + res +} diff --git a/Rscripts/CHD.R.old b/Rscripts/CHD.R.old new file mode 100644 index 0000000..f81e346 --- /dev/null +++ b/Rscripts/CHD.R.old @@ -0,0 +1,245 @@ +#library(ca) +#library(MASS) +#source('/home/pierre/workspace/iramuteq/Rscripts/afc.R') +#data<-read.table('output/corpus_bin.csv',header=TRUE,sep='\t') +source('/home/pierre/workspace/iramuteq/Rscripts/anacor.R') + +CHD<-function(data,x=9){ + dataori=data + dtable=data + listcol<-list() + listmere<-list() + a<-0 + print('vire colonnes vides en entree')#FIXME : il ne doit pas y avoir de colonnes vides en entree !! + for (m in 1:length(dtable)) { + if (sum(dtable[m-a])==0) { + print('colonne vide') + dtable<-dtable[,-(m-a)] + a<-a+1 + } + } + for (i in 1:x) { + clnb<-(i*2) + listmere[[clnb]]<-i + listmere[[clnb+1]]<-i + listcol[[clnb]]<-vector() + listcol[[clnb+1]]<-vector() + #extraction du premier facteur de l'afc + print('afc') + #afc<-ca(dtable,nd=1) + #afc<-corresp(dtable,nd=1) + #afc<-fca(dtable) + afc<-boostana(dtable,nd=1) + #coordonnees des colonnes sur le premier facteur + #coordrow=afc$rowcoord + #coordrow=as.matrix(afc$rscore) + #coordrow<-as.matrix(afc$rproj[,1]) + coordrow<-as.matrix(afc$row.scores) + #row.names(coordrow)<-afc$rownames + row.names(coordrow)<-rownames(dtable) + #classement en fonction de la position sur le premier facteur + #listclasse<-ifelse(coordrow<0,paste('CLASSE',clnb,sep=''),paste('CLASSE',clnb+1,sep='')) + + print('deb recherche meilleur partition') + coordrow<-as.matrix(coordrow[order(coordrow[,1]),]) + #print(rownames(coordrow)) + zeropoint<-which.min(abs(coordrow)) + print(zeropoint) + g<-length(coordrow[coordrow[,1]coordrow[zeropoint]]) + prct<-1 + g<-round(g*prct) + d<-round(d*prct) + print(g) + print(d) + temptable<-as.matrix(coordrow[(zeropoint-g):(zeropoint+d)]) + row.names(temptable)<-rownames(coordrow)[(zeropoint-g):(zeropoint+d)] + #print(temptable) + missing<-zeropoint-g + listchi<-vector() + chtable<-matrix(0,2,(ncol(dtable))) + totforme<-chtable[1,] + for (forme in 1:(ncol(dtable))) { + totforme[forme]<-sum(dtable[,forme]) + } + chtable[2,]<-totforme + for (l in 1:length(temptable)) { + # print(rownames(temptable)[l]) + linetoswitch=as.matrix(dtable[rownames(temptable)[l],]) + # print(linetoswitch) + chtable[1,]<-chtable[1,]+linetoswitch + chtable[2,]<-chtable[2,]-linetoswitch + valchi<-chisq.test(chtable)$statistic + if (is.na(valchi)){ + valchi<-0 + } + listchi<-append(listchi,valchi) + } + #listchi<-listchi[!is.na(listchi)] + maxchi<-which(listchi==max(listchi)) + print(max(listchi)) + print(maxchi) + maxchi<-maxchi+missing + #print(listchi) + #listclasse + print('liste classe') + print(coordrow[(maxchi)]) + listclasse<-ifelse(coordrow<=coordrow[(maxchi)],clnb,clnb+1) +# listclasse<-ifelse(coordrow<0,clnb,clnb+1) + listchi<-as.matrix(listchi) + listchi<-cbind(listchi,temptable) + filename<-paste('graphechi',as.character(i)) + filename<-paste(filename,'.jpeg') + jpeg(filename) + plot(listchi[,1]~listchi[,2]) + abline(v=0) + print(coordrow[zeropoint-g]) + abline(v=coordrow[zeropoint-g]) + abline(v=coordrow[zeropoint+d]) + abline(v=coordrow[(maxchi)]) + dev.off() + + #ajout du classement au tableau + dtable<-transform(dtable,cl1=listclasse) + + #calcul de la specificite des colonnes + t1<-dtable[dtable$cl1==clnb,] + t2<-dtable[dtable$cl1==clnb+1,] + + for (k in 1:(ncol(dtable)-1)) { + t<-matrix(0,2,2) + t[1,1]<-sum(t1[,k]) + t[1,2]<-sum(t2[,k]) + t[2,1]<-nrow(t1)-t[1,1] + t[2,2]<-nrow(t2)-t[1,2] + chi<-chisq.test(t) + if (chi$statistic>6){#FIXME : valeur a mettre en option base :2.7 + if (chi$expected[1,1]1) { + plusgrand<-plusgrand[1] + } + #???????????????????????????????????? + + #constuction du prochain tableau a analyser + print('construction tableau suivant') + classe<-classes[plusgrand] + dtable<-dataori[dataori[length(dataori)]==classe,] + dtable<-dtable[,1:(length(dtable)-i)] + + + listcolelim<-listcol[[as.integer(classe)]] + mother<-listmere[[as.integer(classe)]] + while (mother!=1) { + listcolelim<-append(listcolelim,listcol[[mother]]) + print(listcolelim) + mother<-listmere[[mother]] + } + + listcolelim<-sort(unique(listcolelim)) + print(listcolelim) + print('avant') + print(ncol(dtable)) + if (!is.logical(listcolelim)){ + print('elimination colonne') + a<-0 + for (col in listcolelim){ + dtable<-dtable[,-(col-a)] + a<-a+1 + } + } + print('apres') + print(ncol(dtable)) + #elimination des colonnes ne contenant que des 0 + print('vire colonne vide dans boucle') + a<-0 + for (m in 1:ncol(dtable)) { + if (sum(dtable[,m-a])==0) { + dtable<-dtable[,-(m-a)] + a<-a+1 + } + } + #elimination des lignes ne contenant que des 0 +# print('vire ligne vide dans boucle') +# a<-0 +# for (m in 1:nrow(dtable)) { +# if (sum(dtable[m-a,])==0) { +# print('ligne vide') +# dtable<-dtable[-(m-a),] +# a<-a+1 +# } +# } + } + dataori[(length(dataori)-x+1):length(dataori)] +} + +#dataout<-CHD(data,9) + +#library(cluster) +#dissmat<-daisy(dataout, metric = 'gower', stand = FALSE) +#chd<-diana(dissmat,diss=TRUE,) + + +#pour tester le type, passer chaque colonne en matice et faire mode(colonne) +#for (i in 1:13) {tmp<-as.matrix(data[i]);print(mode(tmp))} diff --git a/Rscripts/CHDKmeans.R b/Rscripts/CHDKmeans.R new file mode 100644 index 0000000..c0a0d01 --- /dev/null +++ b/Rscripts/CHDKmeans.R @@ -0,0 +1,471 @@ +#Author: Pierre Ratinaud +#Copyright (c) 2008 Pierre Ratinaud +#Lisense: GNU/GPL + + + +#library(ca) +#library(MASS) +#source('/home/pierre/workspace/iramuteq/Rscripts/afc.R') +#data<-read.table('output/corpus_bin.csv',header=TRUE,sep='\t') +#source('/home/pierre/workspace/iramuteq/Rscripts/anacor.R') +#library(ade4) +pp<-function(txt,val) { + d<-paste(txt,' : ') + print(paste(d,val)) +} +MyChiSq<-function(x,sc,n){ + sr<-rowSums(x) + E <- outer(sr, sc, "*")/n + STAT<-sum((abs(x - E))^2/E) + STAT +} + +CHD<-function(data,x=9){ +# sink('/home/pierre/workspace/iramuteq/dev/findchi2.txt') + dataori=as.matrix(data) + row.names(dataori)=rownames(data) + dtable=as.matrix(data) + row.names(dtable)=rownames(data) + rowelim<-NULL + pp('ncol entree : ',ncol(dtable)) + pp('nrow entree',nrow(dtable)) + listcol <- list() + listmere <- list() + list_fille <- list() + print('vire colonnes vides en entree')#FIXME : il ne doit pas y avoir de colonnes vides en entree !! + sdt<-colSums(dtable) + if (min(sdt)==0) + dtable<-dtable[,-which(sdt==0)] + mere<-1 + for (i in 1:x) { + clnb<-(i*2) + listmere[[clnb]]<-mere + listmere[[clnb+1]]<-mere + list_fille[[mere]] <- c(clnb,clnb+1) + listcol[[clnb]]<-vector() + listcol[[clnb+1]]<-vector() + #extraction du premier facteur de l'afc + print('afc') + #afc<-ca(dtable,nd=1) + #afc<-corresp(dtable,nd=1) + #afc<-fca(dtable) + pp('taille dtable dans boucle (col/row)',c(ncol(dtable),nrow(dtable))) +# afc<-boostana(dtable,nd=1) +# #afc<-dudi.coa(dtable,scannf=FALSE,nf=1) +# pp('SV',afc$singular.values) +# pp('V.P.', afc$eigen.values) +# #pp('V.P.',afc$eig[1]) +# #pp('V.P.',afc$factexpl[1]) +# #print(afc$chisq) +# afcchi<-chisq.test(dtable) +# Tinert<-afcchi$statistic/sum(dtable) +# pp('inertie totale',Tinert) +# #coordonnees des colonnes sur le premier facteur +# #coordrow=afc$rowcoord +# coordrow=as.matrix(afc$row.scores) +# #coordrow<-as.matrix(afc$rproj[,1]) +# #coordrow<-as.matrix(afc$li) +# coordrowori<-coordrow +# #row.names(coordrow)<-afc$rownames +# row.names(coordrow)<-rownames(dtable) +# #classement en fonction de la position sur le premier facteur +# print('deb recherche meilleur partition') +# ordertable<-cbind(dtable,coordrow) +# coordrow<-as.matrix(coordrow[order(coordrow[,1]),]) +# ordertable<-ordertable[order(ordertable[,ncol(ordertable)]),][,-ncol(ordertable)] +# listinter<-vector() +# listlim<-vector() + TT=sum(dtable) +# sc<-colSums(dtable) +# sc1<-ordertable[1,] +# sc2<-colSums(dtable)-ordertable[1,] +# chitable<-rbind(sc1,sc2) +# #listinter<-vector() +# maxinter<-0 +# rmax<-NULL +################################################################## +# for (l in 2:(nrow(dtable)-2)){ +# chitable[1,]<-chitable[1,]+ordertable[l,] +# chitable[2,]<-chitable[2,]-ordertable[l,] +## sc1<-sc1+ordertable[l,] +## sc2<-sc2-ordertable[l,] +## chitable<-rbind(sc1,sc2) +# chi<-MyChiSq(chitable,sc,TT) +# if (chi>maxinter) { +# maxinter<-chi +# rmax<-l +# } +# # listinter<-append(listinter,MyChiSq(chitable,sc,TT))#,chisq.test(chitable)$statistic/TT) +# } +# #plot(listinter) +# print('@@@@@@@@@@@@@@@@@@@@@@@@@@@@') +# pp('max inter phase 1', maxinter/TT)#max(listinter)) +# print('@@@@@@@@@@@@@@@@@@@@@@@@@@@@') +# #maxinter<-which.max(listinter)+1 +# +# listclasse<-ifelse(coordrowori<=coordrow[(rmax),1],clnb,clnb+1) +# +# cl<-listclasse +# +# pp('TT',TT) +# #dtable<-cbind(dtable,'cl'= as.vector(cl)) +# +# N1<-length(listclasse[listclasse==clnb]) +# N2<-length(listclasse[listclasse==clnb+1]) +# pp('N1',N1) +# pp('N2',N2) +#################################################################### +## reclassement des individus # +#################################################################### +# malcl<-1000000000000 +# it<-0 +# listsub<-list() +# #in boucle +# +# while (malcl!=0 & N1>=5 & N2>=5) { +# it<-it+1 +# listsub[[it]]<-vector() +# pp('nombre iteration',it) +# vdelta<-vector() +# #dtable[,'cl']<-cl +# t1<-dtable[cl==clnb,]#[,-ncol(dtable)] +# t2<-dtable[cl==clnb+1,]#[,-ncol(dtable)] +# ncolt<-ncol(t1) +# pp('ncolt',ncolt) +# sc1<-colSums(t1) +# sc2<-colSums(t2) +# sc<-sc1+sc2 +# TT<-sum(dtable) +# chtableori<-rbind(sc1,sc2) +# interori<-MyChiSq(chtableori,sc,TT)/TT#chisq.test(chtableori)$statistic#/TT +# chtable<-chtableori +# pp('interori',interori) +# N1<-nrow(t1) +# N2<-nrow(t2) +# pp('N1',N1) +# pp('N2',N2) +# +# for (l in 1:nrow(dtable)){ +# if(cl[l]==clnb){ +# chtable[1,]<-sc1-dtable[l,] +# chtable[2,]<-sc2+dtable[l,] +# }else{ +# chtable[1,]<-sc1+dtable[l,] +# chtable[2,]<-sc2-dtable[l,] +# } +# interswitch<-MyChiSq(chtable,sc,TT)/TT#chisq.test(chtable)$statistic/TT +# ws<-interori-interswitch +# +# if (ws<0){ +# interori<-interswitch +# if(cl[l]==clnb){ +# sc1<-chtable[1,] +# sc2<-chtable[2,] +# cl[l]<-clnb+1 +# listsub[[it]]<-append(listsub[[it]],l) +# }else{ +# sc1<-chtable[1,] +# sc2<-chtable[2,] +# cl[l]<-clnb +# listsub[[it]]<-append(listsub[[it]],l) +# } +# vdelta<-append(vdelta,l) +# } +# } +## for (val in vdelta) { +## if (cl[val]==clnb) { +## cl[val]<-clnb+1 +## listsub[[it]]<-append(listsub[[it]],val) +## }else { +## cl[val]<-clnb +## listsub[[it]]<-append(listsub[[it]],val) +## } +## } +# print('###################################') +# print('longueur < 0') +# malcl<-length(vdelta) +# if ((it>1)&&(!is.logical(listsub[[it]]))){ +# if (listsub[[it]]==listsub[[(it-1)]]){ +# malcl<-0 +# } +# } +# print(malcl) +# print('###################################') +# } +########################################################################## +# kmeans +# clori<-kmeans(dtable,2)$cluster +# cl<-ifelse(clori==1,clnb,clnb+1) +#pam + library(cluster) + clori<-pam(dist(dtable,method='binary'),2,diss=TRUE)$cluster + cl<-ifelse(clori==1,clnb,clnb+1) + + dtable<-cbind(dtable,'cl'=as.vector(cl)) + +####################################################################### +# Fin reclassement des individus # +####################################################################### +# if (!(length(cl[cl==clnb])==1 || length(cl[cl==clnb+1])==1)) { + t1<-dtable[dtable[,'cl']==clnb,][,-ncol(dtable)] + t2<-dtable[dtable[,'cl']==clnb+1,][,-ncol(dtable)] + + chtable<-rbind(colSums(t1),colSums(t2)) + inter<-chisq.test(chtable)$statistic/TT + pp('last inter',inter) + print('=====================') + + #calcul de la specificite des colonnes + mint<-min(nrow(t1),nrow(t2)) + maxt<-max(nrow(t1),nrow(t2)) + seuil<-round((1.9*(maxt/mint))+1.9,digit=6) + #sink('/home/pierre/workspace/iramuteq/dev/findchi2.txt') +# print('ATTENTION SEUIL 3,84') +# seuil<-3.84 + pp('seuil',seuil) + sominf<-0 + nv<-0 + nz<-0 + ncclnb<-0 + ncclnbp<-0 + NN1<-0 + NN2<-0 + maxchip<-0 + nbzeroun<-0 + res1<-0 + res2<-0 + nbseuil<-0 + nbexe<-0 + nbcontrib<-0 + cn<-colnames(dtable)[1:(ncol(dtable)-1)] + for (k in 1:(ncol(dtable)-1)) { + #print(k) + tab<-table(dtable[,k],dtable[,ncol(dtable)]) + #print(cn[k]) + #print (tab) + #chidemoi<-(sum(t)*(((t[1,1]*t[2,2])-(t[1,2]*t[2,1]))^2))/((rowSums(t)[1])*(rowSums(t)[2])*(colSums(t)[1])*(colSums(t)[2])) + if (rownames(tab)[1]==1 & nrow(tab)==1) { + tab<-rbind(c(0,0),tab[1]) + print('tableau vide dessus') + } + if (min(tab)<=10){ + chi<-chisq.test(tab,correct=TRUE) + }else{ + chi<-chisq.test(tab,correct=FALSE) + } + if ((min(tab[2,])==1) & (min(tab[1,])!=0)){ + chi$statistic<-seuil+1 + # print('min tab 2 == 0') + } +# if(((tab[2,1]>tab[1,1]) & (tab[2,2]>tab[1,2]))){ +# nz<-nz+1 +# chi$statistic<-seuil-1 +# sominf<-sominf-1 +# } + if ((min(tab[1,])==0) & (min(tab[2,])!=0)){ + chi$statistic<-seuil-1 + # print('min tab 1 == 0') + } + if (is.na(chi$statistic)) { + chi$statistic<-0 + print('NA dans chi$statistic') + } +# print('#####################') + if (chi$statistic>seuil){ + i# print('sup seuil') + if (tab[2,1]=seuil) { +# if (which.max(chit)==2) NN1<-NN1+1 +# if (which.max(chit)==4) NN2<-NN2+1 +# } +# if (max(abs(contrib[2,])>=1.96)) { +# nbcontrib<-nbcontrib+1 +# } +# if (max(chit[2,]>=seuil)) maxchip<-maxchip+1 +# if (chi$statistic >=seuil) nbseuil<-nbseuil+1 +# if ((min(tab[2,])==0) & (chi$statistic=seuil) { +# if ((which.max(chi$residual)==2) || (which.min(chi$residual)==4)) res1<-res1+1 +# if ((which.max(chi$residual)==4) || (which.min(chi$residual)==2)) res2<-res2+1 +# } else if (!((which.max(chi$residual)==2) || (which.max(chi$residual)==4) || (which.min(chi$residual)==2) || (which.min(chi$residual)==4)) & chi$statistic>=seuil) { +# print('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA') +# print('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA') +# } +# if (length(unique(as.vector(chi$residual)))==2) { +# nbexe<-nbexe+1 +# } + +# print('avec correction') +# if (min(tab)<5) chi<-chisq.test(tab,correct=TRUE) +# print(chi$statistic) +# #if (chi$statistic >=seuil) nbseuil<-nbseuil+1 +# print(chi$expected) +# print(chi$residuals) +# chit<-((abs(tab-chi$expected)-0.5)^2)/chi$expected +# print(chit) +# print('#####################') + } +# pp('NN1',NN1) +# pp('NN2',NN2) +# pp('maxchip',maxchip) +# pp('nbzeroun',nbzeroun) +# pp('res1',res1) +# pp('res2',res2) +# pp('nbseuil',nbseuil) +# pp('nbexe',nbexe) +# pp('nbcontrib', nbcontrib) + print('resultats elim item') + pp(clnb+1,length(listcol[[clnb+1]])) + pp(clnb,length(listcol[[clnb]])) +# pp('inf seuil',sominf) +# pp('nv',nv) + pp('ncclnb',ncclnb) + pp('ncclnbp',ncclnbp) +# pp('nz',nz) + #sink() + #lignes concernees + listrownamedtable<-rownames(dtable) + listrownamedtable<-as.integer(listrownamedtable) + newcol<-vector(length=nrow(dataori)) + #remplissage de la nouvelle colonne avec les nouvelles classes + print('remplissage') + num<-0 + for (ligne in listrownamedtable) { + num<-num+1 + newcol[ligne]<-as.integer(as.vector(dtable[,'cl'][num])[1]) + } + #recuperation de la classe precedante pour les cases vides + print('recuperation classes precedentes') + matori<-as.matrix(dataori) + if (i!=1) { + # options(warn=-1) + for (ligne in 1:length(newcol)) { + # print(newcol[ligne]) + if (newcol[ligne]==0) { # ce test renvoie un warning + if (ligne %in% rowelim){ + newcol[ligne]<-0 + } else { + newcol[ligne]<-matori[ligne,length(matori[1,])] + } + + } + } + # options(warn=0) + } + dataori<-cbind(dataori,newcol) + + tailleclasse<-as.matrix(summary(as.factor(as.character(dataori[,ncol(dataori)])))) + #tailleclasse<-as.integer(tailleclasse) + print('tailleclasse') + print(tailleclasse) + tailleclasse<-as.matrix(tailleclasse[!(rownames(tailleclasse)==0),]) + plusgrand<-which.max(tailleclasse) + #??????????????????????????????????? + #Si 2 classes ont des effectifs egaux, on prend la premiere de la liste... + if (length(plusgrand)>1) { + plusgrand<-plusgrand[1] + } + #???????????????????????????????????? + + #constuction du prochain tableau a analyser + print('construction tableau suivant') + classe<-as.integer(rownames(tailleclasse)[plusgrand]) + dtable<-dataori[dataori[,ncol(dataori)]==classe,] + row.names(dtable)<-rownames(dataori[dataori[,ncol(dataori)]==classe,]) + dtable<-dtable[,1:(ncol(dtable)-i)] + mere<-classe + listcolelim<-listcol[[as.integer(classe)]] + mother<-listmere[[as.integer(classe)]] + while (mother!=1) { + listcolelim<-append(listcolelim,listcol[[mother]]) + mother<-listmere[[mother]] + } + + listcolelim<-sort(unique(listcolelim)) + pp('avant',ncol(dtable)) + if (!is.logical(listcolelim)){ + print('elimination colonne') + #dtable<-dtable[,-listcolelim] + dtable<-dtable[,!(colnames(dtable) %in% listcolelim)] + } + pp('apres',ncol(dtable)) + #elimination des colonnes ne contenant que des 0 + print('vire colonne inf 3 dans boucle') + sdt<-colSums(dtable) + if (min(sdt)<=3) + dtable<-dtable[,-which(sdt<=3)] + + #elimination des lignes ne contenant que des 0 + print('vire ligne vide dans boucle') + if (ncol(dtable)==1) { + sdt<-dtable[,1] + } else { + sdt<-rowSums(dtable) + } + if (min(sdt)==0) { + rowelim<-as.integer(rownames(dtable)[which(sdt==0)]) + print('&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&') + print(rowelim) + print('&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&') + dtable<-dtable[-which(sdt==0),] + } +# } + } +# sink() + res <- list(n1 = dataori[,(ncol(dataori)-x+1):ncol(dataori)], list_mere = listmere, list_fille = list_fille) + res +} + +#dataout<-CHD(data,9) + +#igraph pour graph de relation diff --git a/Rscripts/CHDPOND.R b/Rscripts/CHDPOND.R new file mode 100644 index 0000000..a1a3ea6 --- /dev/null +++ b/Rscripts/CHDPOND.R @@ -0,0 +1,455 @@ +#Author: Pierre Ratinaud +#Copyright (c) 2008 Pierre Ratinaud +#Lisense: GNU/GPL + +#library(ca) +#library(MASS) +#source('/home/pierre/workspace/iramuteq/Rscripts/afc.R') +#data<-read.table('output/corpus_bin.csv',header=TRUE,sep='\t') +#source('/home/pierre/workspace/iramuteq/Rscripts/anacor.R') +#library(ade4) +pp<-function(txt,val) { + d<-paste(txt,' : ') + print(paste(d,val)) +} +MyChiSq<-function(x,sc,n){ + sr<-rowSums(x) + E <- outer(sr, sc, "*")/n + STAT<-sum((abs(x - E))^2/E) + STAT +} + +CHD<-function(data,x=9){ +# sink('/home/pierre/workspace/iramuteq/dev/findchi2.txt') + dataori=as.matrix(data) + row.names(dataori)=rownames(data) + dtable=as.matrix(data) + row.names(dtable)=rownames(data) + rowelim<-NULL + pp('ncol entree : ',ncol(dtable)) + pp('nrow entree',nrow(dtable)) + listcol <- list() + listmere <- list() + list_fille <- list() + print('vire colonnes vides en entree')#FIXME : il ne doit pas y avoir de colonnes vides en entree !! + sdt<-colSums(dtable) + if (min(sdt)==0) + dtable<-dtable[,-which(sdt==0)] + mere<-1 + for (i in 1:x) { + clnb<-(i*2) + listmere[[clnb]]<-mere + listmere[[clnb+1]]<-mere + list_fille[[mere]] <- c(clnb,clnb+1) + listcol[[clnb]]<-vector() + listcol[[clnb+1]]<-vector() + #extraction du premier facteur de l'afc + print('afc') + #afc<-ca(dtable,nd=1) + #afc<-corresp(dtable,nd=1) + #afc<-fca(dtable) + pp('taille dtable dans boucle (col/row)',c(ncol(dtable),nrow(dtable))) + afc<-boostana(dtable,nd=1) + #afc<-dudi.coa(dtable,scannf=FALSE,nf=1) + pp('SV',afc$singular.values) + pp('V.P.', afc$eigen.values) + #pp('V.P.',afc$eig[1]) + #pp('V.P.',afc$factexpl[1]) + #print(afc$chisq) + afcchi<-chisq.test(dtable) + Tinert<-afcchi$statistic/sum(dtable) + pp('inertie totale',Tinert) + #coordonnees des colonnes sur le premier facteur + #coordrow=afc$rowcoord + coordrow=as.matrix(afc$row.scores) + #coordrow<-as.matrix(afc$rproj[,1]) + #coordrow<-as.matrix(afc$li) + coordrowori<-coordrow + #row.names(coordrow)<-afc$rownames + row.names(coordrow)<-rownames(dtable) + #classement en fonction de la position sur le premier facteur + print('deb recherche meilleur partition') + ordertable<-cbind(dtable,coordrow) + coordrow<-as.matrix(coordrow[order(coordrow[,1]),]) + ordertable<-ordertable[order(ordertable[,ncol(ordertable)]),][,-ncol(ordertable)] + listinter<-vector() + listlim<-vector() + TT=sum(dtable) + sc<-colSums(dtable) + sc1<-ordertable[1,] + sc2<-colSums(dtable)-ordertable[1,] + chitable<-rbind(sc1,sc2) + #listinter<-vector() + maxinter<-0 + rmax<-NULL +################################################################# + for (l in 2:(nrow(dtable)-2)){ + chitable[1,]<-chitable[1,]+ordertable[l,] + chitable[2,]<-chitable[2,]-ordertable[l,] +# sc1<-sc1+ordertable[l,] +# sc2<-sc2-ordertable[l,] +# chitable<-rbind(sc1,sc2) + chi<-MyChiSq(chitable,sc,TT) + if (chi>maxinter) { + maxinter<-chi + rmax<-l + } + # listinter<-append(listinter,MyChiSq(chitable,sc,TT))#,chisq.test(chitable)$statistic/TT) + } + #plot(listinter) + print('@@@@@@@@@@@@@@@@@@@@@@@@@@@@') + pp('max inter phase 1', maxinter/TT)#max(listinter)) + print('@@@@@@@@@@@@@@@@@@@@@@@@@@@@') + #maxinter<-which.max(listinter)+1 + + listclasse<-ifelse(coordrowori<=coordrow[(rmax),1],clnb,clnb+1) + + cl<-listclasse + + pp('TT',TT) + #dtable<-cbind(dtable,'cl'= as.vector(cl)) + + N1<-length(listclasse[listclasse==clnb]) + N2<-length(listclasse[listclasse==clnb+1]) + pp('N1',N1) + pp('N2',N2) +################################################################### +# reclassement des individus # +################################################################### + malcl<-1000000000000 + it<-0 + listsub<-list() + #in boucle + + while (malcl!=0 & N1>=5 & N2>=5) { + it<-it+1 + listsub[[it]]<-vector() + pp('nombre iteration',it) + vdelta<-vector() + #dtable[,'cl']<-cl + t1<-dtable[cl==clnb,]#[,-ncol(dtable)] + t2<-dtable[cl==clnb+1,]#[,-ncol(dtable)] + ncolt<-ncol(t1) + pp('ncolt',ncolt) + sc1<-colSums(t1) + sc2<-colSums(t2) + sc<-sc1+sc2 + TT<-sum(dtable) + chtableori<-rbind(sc1,sc2) + interori<-MyChiSq(chtableori,sc,TT)/TT#chisq.test(chtableori)$statistic#/TT + chtable<-chtableori + pp('interori',interori) + N1<-nrow(t1) + N2<-nrow(t2) + pp('N1',N1) + pp('N2',N2) + + for (l in 1:nrow(dtable)){ + if(cl[l]==clnb){ + chtable[1,]<-sc1-dtable[l,] + chtable[2,]<-sc2+dtable[l,] + }else{ + chtable[1,]<-sc1+dtable[l,] + chtable[2,]<-sc2-dtable[l,] + } + interswitch<-MyChiSq(chtable,sc,TT)/TT#chisq.test(chtable)$statistic/TT + ws<-interori-interswitch + + if (ws<0){ + interori<-interswitch + if(cl[l]==clnb){ + sc1<-chtable[1,] + sc2<-chtable[2,] + cl[l]<-clnb+1 + listsub[[it]]<-append(listsub[[it]],l) + }else{ + sc1<-chtable[1,] + sc2<-chtable[2,] + cl[l]<-clnb + listsub[[it]]<-append(listsub[[it]],l) + } + vdelta<-append(vdelta,l) + } + } +# for (val in vdelta) { +# if (cl[val]==clnb) { +# cl[val]<-clnb+1 +# listsub[[it]]<-append(listsub[[it]],val) +# }else { +# cl[val]<-clnb +# listsub[[it]]<-append(listsub[[it]],val) +# } +# } + print('###################################') + print('longueur < 0') + malcl<-length(vdelta) + if ((it>1)&&(!is.logical(listsub[[it]]))){ + if (listsub[[it]]==listsub[[(it-1)]]){ + malcl<-0 + } + } + print(malcl) + print('###################################') + } + dtable<-cbind(dtable,'cl'=as.vector(cl)) +####################################################################### +# Fin reclassement des individus # +####################################################################### +# if (!(length(cl[cl==clnb])==1 || length(cl[cl==clnb+1])==1)) { + t1<-dtable[dtable[,'cl']==clnb,][,-ncol(dtable)] + t2<-dtable[dtable[,'cl']==clnb+1,][,-ncol(dtable)] + + chtable<-rbind(colSums(t1),colSums(t2)) + inter<-chisq.test(chtable)$statistic/TT + pp('last inter',inter) + print('=====================') + + #calcul de la specificite des colonnes + mint<-min(nrow(t1),nrow(t2)) + maxt<-max(nrow(t1),nrow(t2)) + seuil<-round((1.9*(maxt/mint))+1.9,digit=6) + #sink('/home/pierre/workspace/iramuteq/dev/findchi2.txt') +# print('ATTENTION SEUIL 3,84') +# seuil<-3.84 + pp('seuil',seuil) + sominf<-0 + nv<-0 + nz<-0 + ncclnb<-0 + ncclnbp<-0 + NN1<-0 + NN2<-0 + maxchip<-0 + nbzeroun<-0 + res1<-0 + res2<-0 + nbseuil<-0 + nbexe<-0 + nbcontrib<-0 + cn<-colnames(dtable)[1:(ncol(dtable)-1)] +# for (k in 1:(ncol(dtable)-1)) { +# #print(k) +# tab<-table(dtable[,k],dtable[,ncol(dtable)]) +# #print(cn[k]) +# #print (tab) +# #chidemoi<-(sum(t)*(((t[1,1]*t[2,2])-(t[1,2]*t[2,1]))^2))/((rowSums(t)[1])*(rowSums(t)[2])*(colSums(t)[1])*(colSums(t)[2])) +# if (rownames(tab)[1]==1 & nrow(tab)==1) { +# tab<-rbind(c(0,0),tab[1]) +# print('tableau vide dessus') +# } +# if (min(tab)<=10){ +# chi<-chisq.test(tab,correct=TRUE) +# }else{ +# chi<-chisq.test(tab,correct=FALSE) +# } +# if ((min(tab[2,])==0) & (min(tab[1,])!=0)){ +# chi$statistic<-seuil+1 +# # print('min tab 2 == 0') +# } +## if(((tab[2,1]>tab[1,1]) & (tab[2,2]>tab[1,2]))){ +## nz<-nz+1 +## chi$statistic<-seuil-1 +## sominf<-sominf-1 +## } +# if ((min(tab[1,])==0) & (min(tab[2,])!=0)){ +# chi$statistic<-seuil-1 +# # print('min tab 1 == 0') +# } +# if (is.na(chi$statistic)) { +# chi$statistic<-0 +# print('NA dans chi$statistic') +# } +## print('#####################') +# if (chi$statistic>seuil){ +# i# print('sup seuil') +# if (tab[2,1]=seuil) { +## if (which.max(chit)==2) NN1<-NN1+1 +## if (which.max(chit)==4) NN2<-NN2+1 +## } +## if (max(abs(contrib[2,])>=1.96)) { +## nbcontrib<-nbcontrib+1 +## } +## if (max(chit[2,]>=seuil)) maxchip<-maxchip+1 +## if (chi$statistic >=seuil) nbseuil<-nbseuil+1 +## if ((min(tab[2,])==0) & (chi$statistic=seuil) { +## if ((which.max(chi$residual)==2) || (which.min(chi$residual)==4)) res1<-res1+1 +## if ((which.max(chi$residual)==4) || (which.min(chi$residual)==2)) res2<-res2+1 +## } else if (!((which.max(chi$residual)==2) || (which.max(chi$residual)==4) || (which.min(chi$residual)==2) || (which.min(chi$residual)==4)) & chi$statistic>=seuil) { +## print('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA') +## print('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA') +## } +## if (length(unique(as.vector(chi$residual)))==2) { +## nbexe<-nbexe+1 +## } +# +## print('avec correction') +## if (min(tab)<5) chi<-chisq.test(tab,correct=TRUE) +## print(chi$statistic) +## #if (chi$statistic >=seuil) nbseuil<-nbseuil+1 +## print(chi$expected) +## print(chi$residuals) +## chit<-((abs(tab-chi$expected)-0.5)^2)/chi$expected +## print(chit) +## print('#####################') +# } +## pp('NN1',NN1) +## pp('NN2',NN2) +## pp('maxchip',maxchip) +## pp('nbzeroun',nbzeroun) +## pp('res1',res1) +## pp('res2',res2) +## pp('nbseuil',nbseuil) +## pp('nbexe',nbexe) +## pp('nbcontrib', nbcontrib) + print('resultats elim item') + pp(clnb+1,length(listcol[[clnb+1]])) + pp(clnb,length(listcol[[clnb]])) +# pp('inf seuil',sominf) +# pp('nv',nv) + pp('ncclnb',ncclnb) + pp('ncclnbp',ncclnbp) +# pp('nz',nz) + #sink() + #lignes concernees + listrownamedtable<-rownames(dtable) + listrownamedtable<-as.integer(listrownamedtable) + newcol<-vector(length=nrow(dataori)) + #remplissage de la nouvelle colonne avec les nouvelles classes + print('remplissage') + num<-0 + for (ligne in listrownamedtable) { + num<-num+1 + newcol[ligne]<-as.integer(as.vector(dtable[,'cl'][num])[1]) + } + #recuperation de la classe precedante pour les cases vides + print('recuperation classes precedentes') + matori<-as.matrix(dataori) + if (i!=1) { + # options(warn=-1) + for (ligne in 1:length(newcol)) { + # print(newcol[ligne]) + if (newcol[ligne]==0) { # ce test renvoie un warning + if (ligne %in% rowelim){ + newcol[ligne]<-0 + } else { + newcol[ligne]<-matori[ligne,length(matori[1,])] + } + + } + } + # options(warn=0) + } + dataori<-cbind(dataori,newcol) + + tailleclasse<-as.matrix(summary(as.factor(as.character(dataori[,ncol(dataori)])))) + #tailleclasse<-as.integer(tailleclasse) + print('tailleclasse') + print(tailleclasse) + tailleclasse<-as.matrix(tailleclasse[!(rownames(tailleclasse)==0),]) + plusgrand<-which.max(tailleclasse) + #??????????????????????????????????? + #Si 2 classes ont des effectifs egaux, on prend la premiere de la liste... + if (length(plusgrand)>1) { + plusgrand<-plusgrand[1] + } + #???????????????????????????????????? + + #constuction du prochain tableau a analyser + print('construction tableau suivant') + classe<-as.integer(rownames(tailleclasse)[plusgrand]) + dtable<-dataori[dataori[,ncol(dataori)]==classe,] + row.names(dtable)<-rownames(dataori[dataori[,ncol(dataori)]==classe,]) + dtable<-dtable[,1:(ncol(dtable)-i)] + mere<-classe + listcolelim<-listcol[[as.integer(classe)]] + mother<-listmere[[as.integer(classe)]] + while (mother!=1) { + listcolelim<-append(listcolelim,listcol[[mother]]) + mother<-listmere[[mother]] + } + + listcolelim<-sort(unique(listcolelim)) + pp('avant',ncol(dtable)) + if (!is.logical(listcolelim)){ + print('elimination colonne') + #dtable<-dtable[,-listcolelim] + dtable<-dtable[,!(colnames(dtable) %in% listcolelim)] + } + pp('apres',ncol(dtable)) + #elimination des colonnes ne contenant que des 0 + print('vire colonne inf 3 dans boucle') + sdt<-colSums(dtable) + if (min(sdt)<=3) + dtable<-dtable[,-which(sdt<=3)] + + #elimination des lignes ne contenant que des 0 + print('vire ligne vide dans boucle') + if (ncol(dtable)==1) { + sdt<-dtable[,1] + } else { + sdt<-rowSums(dtable) + } + if (min(sdt)==0) { + rowelim<-as.integer(rownames(dtable)[which(sdt==0)]) + print('&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&') + print(rowelim) + print('&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&') + dtable<-dtable[-which(sdt==0),] + } +# } + } +# sink() + res <- list(n1 = dataori[,(ncol(dataori)-x+1):ncol(dataori)], list_mere = listmere, list_fille = list_fille) + res +} diff --git a/Rscripts/Rfunct.R b/Rscripts/Rfunct.R new file mode 100644 index 0000000..2764ce9 --- /dev/null +++ b/Rscripts/Rfunct.R @@ -0,0 +1,51 @@ +ColType <- function(x) { +#x data.frame + type<-character() + for (i in 1:ncol(x)) { + tmp<-as.matrix(x[,i]) + type[i]<-mode(tmp) + } + type +} + +LevelsNb<- function(x) { + levelsnb<-numeric() + for (i in 1:ncol(x)) { + if (mode(as.matrix(x[,i]))=="character") { + levelsnb[i]<-length(levels(x[,i])) + } + else { + levelsnb[i]<-NA + } + } + levelsnb +} + +ReadData<- function(filename,sep=';',quote='"', header=TRUE, encoding='', na.strings ='',rownames=NULL) { + if (version$os=='linux-gnu') { + dataimport<-read.csv2(file(filename,encoding=encoding), header=header, sep=sep, quote=quote, na.strings='',row.names=rownames) + } else { + dataimport<-read.csv2(filename,encoding=encoding, header=header,sep=sep, quote=quote,na.strings='',row.names=rownames) + } + dataimport +} + +testzero<-function(mydata) { + nc<-vector() + nl<-vector() + for (i in 1:ncol(mydata)) { + if (sum(mydata[,i])==0) { + print('zero') + nc<-append(nc,i) + } + } + print('suite') + for (j in 1:nrow(mydata)) { + print(j) + if (sum(mydata[j,])==0) { + print('zero') + nl<-append(nl,j) + } + } + c(nc,nl) +} diff --git a/Rscripts/Rgraph.R b/Rscripts/Rgraph.R new file mode 100644 index 0000000..4759448 --- /dev/null +++ b/Rscripts/Rgraph.R @@ -0,0 +1,575 @@ +############FIXME################## +PlotDendroComp <- function(chd,filename,reso) { + jpeg(filename,res=reso) + par(cex=PARCEX) + plot(chd,which.plots=2, hang=-1) + dev.off() +} + +PlotDendroHori <- function(dendrocutupper,filename,reso) { + jpeg(filename,res=reso) + par(cex=PARCEX) + nP <- list(col=3:2, cex=c(0.5, 0.75), pch= 21:22, bg= c('light blue', 'pink'),lab.cex = 0.75, lab.col = 'tomato') + plot(dendrocutupper,nodePar= nP, edgePar = list(col='gray', lwd=2),horiz=TRUE, center=FALSE) + dev.off() +} + +PlotDendroCut <- function(chd,filename,reso,clusternb) { + h.chd <- as.hclust(chd) + memb <- cutree(h.chd, k = clusternb) + cent <- NULL + for(k in 1:clusternb){ + cent <- rbind(cent, k) + } + h.chd1 <- hclust(dist(cent)^2, method = 'cen', members = table(memb)) + h.chd1$labels <- sprintf('CL %02d',1:clusternb) + nP <- list(col=3:2, cex=c(2.0, 0.75), pch= 21:22, bg= c('light blue', 'pink'),lab.cex = 0.75, lab.col = 'tomato') + jpeg(filename,res=reso) + par(cex=PARCEX) + plot(h.chd1, nodePar= nP, edgePar = list(col='gray', lwd=2), horiz=TRUE, center=TRUE, hang= -1) + dev.off() +} + +PlotAfc<- function(afc, filename, width=800, height=800, quality=100, reso=200, toplot=c('all','all'), PARCEX=PARCEX) { + if (Sys.info()["sysname"]=='Darwin') { + width<-width/74.97 + height<-height/74.97 + quartz(file=filename,type='jpeg',width=width,height=height) + } else { + jpeg(filename,width=width,height=height,quality=quality,res=reso) + } + par(cex=PARCEX) + plot(afc,what=toplot,labels=c(1,1),contrib=c('absolute','relative')) + dev.off() +} + +PlotAfc2dCoul<- function(afc,chisqrtable,filename, what='coord',col=FALSE, axetoplot=c(1,2), deb=0,fin=0, width=800, height=800, quality=100, reso=200, parcex=PARCEX, xlab = NULL, ylab = NULL) { + if (col) { + if (what == 'coord') { + rowcoord <- as.matrix(afc$colcoord) + } else { + rowcoord <- as.matrix(afc$colcrl) + } + } else { + if (what == 'coord') { + rowcoord <- as.matrix(afc$rowcoord) + } else { + rowcoord <- as.matrix(afc$rowcrl) + } + } + x <- axetoplot[1] + y <- axetoplot[2] + + if (col) + rownames(rowcoord) <- afc$colnames + if (!col){ + rownames(rowcoord) <- afc$rownames + rowcoord <- as.matrix(rowcoord[deb:fin,]) + chitable<- as.matrix(chisqrtable[deb:fin,]) + #row_keep <- select_point_nb(chitable,15) + } + if (ncol(rowcoord) == 1) { + rowcoord <- t(rowcoord) + } + clnb <- ncol(chisqrtable) + + if (!col) classes <- as.matrix(apply(chitable,1,which.max)) + else classes <- 1:clnb + ntabtot <- cbind(rowcoord, classes) + #if (!col) ntabtot <- ntabtot[row_keep,] + open_file_graph(filename, width = width, height = height) + par(cex=PARCEX) + plot(rowcoord[,x],rowcoord[,y], pch='', xlab = xlab, ylab = ylab) + abline(h=0,v=0) + for (i in 1:clnb) { + ntab <- subset(ntabtot,ntabtot[,ncol(ntabtot)] == i) + if (nrow(ntab) != 0) + text(ntab[,x],ntab[,y],rownames(ntab),col=rainbow(clnb)[i]) + } + dev.off() +} + +filename.to.svg <- function(filename) { + filename <- gsub('.png', '.svg', filename) + return(filename) +} + +open_file_graph <- function (filename, width=800, height = 800, quality = 100, svg = FALSE) { + if (Sys.info()["sysname"] == 'Darwin') { + width <- width/74.97 + height <- height/74.97 + quartz(file = filename, type = 'jpeg', width = width, height = height) + } else { + #print('ATTENTION SVG!!!!!!!!!!!!!!!!!!!!!!!!!!!') + #library(RSvgDevice) + if (svg) { + svg(filename.to.svg(filename), width=width/74.97, height=height/74.97) + } else { + png(filename, width=width, height=height)#, quality = quality) + } + } +} + +make_tree_tot <- function (chd) { + library(ape) + lf<-chd$list_fille + clus<-'a1a;' + for (i in 1:length(lf)) { + if (!is.null(lf[[i]])) { + clus<-gsub(paste('a',i,'a',sep=''),paste('(','a',lf[[i]][1],'a',',','a',lf[[i]][2],'a',')',sep=''),clus) + } + } + dendro_tuple <- clus + clus <- gsub('a','',clus) + tree.cl <- read.tree(text = clus) + res<-list(tree.cl = tree.cl, dendro_tuple = dendro_tuple) + res +} + +make_dendro_cut_tuple <- function(dendro_in, coordok, classeuce, x, nbt = 9) { + library(ape) + dendro<-dendro_in + i <- 0 + for (cl in coordok[,x]) { + i <- i + 1 + fcl<-fille(cl,classeuce) + for (fi in fcl) { + dendro <- gsub(paste('a',fi,'a',sep=''),paste('b',i,'b',sep=''),dendro) + } + } + clnb <- nrow(coordok) + tcl=((nbt+1) *2) - 2 + for (i in 1:(tcl + 1)) { + dendro <- gsub(paste('a',i,'a',sep=''),paste('b',0,'b',sep=''),dendro) + } + dendro <- gsub('b','',dendro) + dendro <- gsub('a','',dendro) + dendro_tot_cl <- read.tree(text = dendro) + #FIXME + for (i in 1:10) { + for (cl in 1:clnb) { + dendro <- gsub(paste('\\(',cl,',',cl,'\\)',sep=''),cl,dendro) + } + } + for (i in 1:10) { + dendro <- gsub(paste('\\(',0,',',0,'\\)',sep=''),0,dendro) + for (cl in 1:clnb) { + dendro <- gsub(paste('\\(',0,',',cl,'\\)',sep=''),cl,dendro) + dendro <- gsub(paste('\\(',cl,',',0,'\\)',sep=''),cl,dendro) + } + } + print(dendro) + tree.cl <- read.tree(text = dendro) + lab <- tree.cl$tip.label + if ("0" %in% lab) { + tovire <- which(lab == "0") + tree.cl <- drop.tip(tree.cl, tip = tovire) + } + res <- list(tree.cl = tree.cl, dendro_tuple_cut = dendro, dendro_tot_cl = dendro_tot_cl) + res +} + +select_point_nb <- function(tablechi, nb) { + chimax<-as.matrix(apply(tablechi,1,max)) + chimax<-cbind(chimax,1:nrow(tablechi)) + order_chi<-as.matrix(chimax[order(chimax[,1],decreasing = TRUE),]) + row_keep <- order_chi[,2][1:nb] + row_keep +} + +select_point_chi <- function(tablechi, chi_limit) { + chimax<-as.matrix(apply(tablechi,1,max)) + row_keep <- which(chimax >= chi_limit) + row_keep +} + +#from summary.ca +summary.ca.dm <- function(object, scree = TRUE, ...){ + obj <- object + nd <- obj$nd + if (is.na(nd)){ + nd <- 2 + } else { + if (nd > length(obj$sv)) nd <- length(obj$sv) + } + # principal coordinates: + K <- nd + I <- dim(obj$rowcoord)[1] ; J <- dim(obj$colcoord)[1] + svF <- matrix(rep(obj$sv[1:K], I), I, K, byrow = TRUE) + svG <- matrix(rep(obj$sv[1:K], J), J, K, byrow = TRUE) + rpc <- obj$rowcoord[,1:K] * svF + cpc <- obj$colcoord[,1:K] * svG + + # rows: + r.names <- obj$rownames + sr <- obj$rowsup + if (!is.na(sr[1])) r.names[sr] <- paste("(*)", r.names[sr], sep = "") + r.mass <- obj$rowmass + r.inr <- obj$rowinertia / sum(obj$rowinertia, na.rm = TRUE) + r.COR <- matrix(NA, nrow = length(r.names), ncol = nd) + colnames(r.COR) <- paste('COR -facteur', 1:nd, sep=' ') + r.CTR <- matrix(NA, nrow = length(r.names), ncol = nd) + colnames(r.CTR) <- paste('CTR -facteur', 1:nd, sep=' ') + for (i in 1:nd){ + r.COR[,i] <- obj$rowmass * rpc[,i]^2 / obj$rowinertia + r.CTR[,i] <- obj$rowmass * rpc[,i]^2 / obj$sv[i]^2 + } + # cor and quality for supplementary rows + if (length(obj$rowsup) > 0){ + i0 <- obj$rowsup + for (i in 1:nd){ + r.COR[i0,i] <- obj$rowmass[i0] * rpc[i0,i]^2 + r.CTR[i0,i] <- NA + } + } + + # columns: + c.names <- obj$colnames + sc <- obj$colsup + if (!is.na(sc[1])) c.names[sc] <- paste("(*)", c.names[sc], sep = "") + c.mass <- obj$colmass + c.inr <- obj$colinertia / sum(obj$colinertia, na.rm = TRUE) + c.COR <- matrix(NA, nrow = length(c.names), ncol = nd) + colnames(c.COR) <- paste('COR -facteur', 1:nd, sep=' ') + c.CTR <- matrix(NA, nrow = length(c.names), ncol = nd) + colnames(c.CTR) <- paste('CTR -facteur', 1:nd, sep=' ') + for (i in 1:nd) + { + c.COR[,i] <- obj$colmass * cpc[,i]^2 / obj$colinertia + c.CTR[,i] <- obj$colmass * cpc[,i]^2 / obj$sv[i]^2 + } + if (length(obj$colsup) > 0){ + i0 <- obj$colsup + for (i in 1:nd){ + c.COR[i0,i] <- obj$colmass[i0] * cpc[i0,i]^2 + c.CTR[i0,i] <- NA + } + } + + # scree plot: + if (scree) { + values <- obj$sv^2 + values2 <- 100*(obj$sv^2)/sum(obj$sv^2) + values3 <- cumsum(100*(obj$sv^2)/sum(obj$sv^2)) + scree.out <- cbind(values, values2, values3) + } else { + scree.out <- NA + } + + obj$r.COR <- r.COR + obj$r.CTR <- r.CTR + obj$c.COR <- c.COR + obj$c.CTR <- c.CTR + obj$facteur <- scree.out + return(obj) + } + +create_afc_table <- function(x) { + #x = afc + facteur.table <- as.matrix(x$facteur) + nd <- ncol(x$colcoord) + rownames(facteur.table) <- paste('facteur',1:nrow(facteur.table),sep = ' ') + colnames(facteur.table) <- c('Valeurs propres', 'Pourcentages', 'Pourcentage cumules') + ligne.table <- as.matrix(x$rowcoord) + rownames(ligne.table) <- x$rownames + colnames(ligne.table) <- paste('Coord. facteur', 1:nd, sep=' ') + tmp <- as.matrix(x$rowcrl) + colnames(tmp) <- paste('Corr. facteur', 1:nd, sep=' ') + ligne.table <- cbind(ligne.table,tmp) + ligne.table <- cbind(ligne.table, x$r.COR) + ligne.table <- cbind(ligne.table, x$r.CTR) + ligne.table <- cbind(ligne.table, mass = x$rowmass) + ligne.table <- cbind(ligne.table, chi.distance = x$rowdist) + ligne.table <- cbind(ligne.table, inertie = x$rowinertia) + colonne.table <- x$colcoord + rownames(colonne.table) <- paste('classe', 1:(nrow(colonne.table)),sep=' ') + colnames(colonne.table) <- paste('Coord. facteur', 1:nd, sep=' ') + tmp <- as.matrix(x$colcrl) + colnames(tmp) <- paste('Corr. facteur', 1:nd, sep=' ') + colonne.table <- cbind(colonne.table, tmp) + colonne.table <- cbind(colonne.table, x$c.COR) + colonne.table <- cbind(colonne.table, x$c.CTR) + colonne.table <- cbind(colonne.table, mass = x$colmass) + colonne.table <- cbind(colonne.table, chi.distance = x$coldist) + colonne.table <- cbind(colonne.table, inertie = x$colinertia) + res <- list(facteur = facteur.table, ligne = ligne.table, colonne = colonne.table) + res +} + +make_afc_graph <- function(toplot,classes,clnb, xlab, ylab, cex.txt = NULL, leg = FALSE, cmd = FALSE) { + rain <- rainbow(clnb) + compt <- 1 + tochange <- NULL + for (my.color in rain) { + my.color <- col2rgb(my.color) + if ((my.color[1] > 200) & (my.color[2] > 200) & (my.color[3] < 20)) { + tochange <- append(tochange, compt) + } + compt <- compt + 1 + } + if (!is.null(tochange)) { + gr.col <- grey.colors(length(tochange)) + compt <- 1 + for (val in tochange) { + rain[val] <- gr.col[compt] + compt <- compt + 1 + } + } + cl.color <- rain[classes] + plot(toplot[,1],toplot[,2], pch='', xlab = xlab, ylab = ylab) + abline(h=0,v=0, lty = 'dashed') + if (is.null(cex.txt)) + text(toplot[,1],toplot[,2],rownames(toplot),col=cl.color) + else + text(toplot[,1],toplot[,2],rownames(toplot),col=cl.color, cex = cex.txt) + + if (!cmd) { + dev.off() + } +} + +plot.dendropr <- function(tree, classes, type.dendro="phylogram", histo=FALSE, from.cmd=FALSE, bw=FALSE, lab = NULL, tclasse=TRUE) { + classes<-classes[classes!=0] + classes<-as.factor(classes) + sum.cl<-as.matrix(summary(classes)) + sum.cl<-(sum.cl/colSums(sum.cl)*100) + sum.cl<-round(sum.cl,2) + sum.cl<-cbind(sum.cl,as.matrix(100-sum.cl[,1])) + tree.order<- as.numeric(tree$tip.label) + if (! bw) { + col = rainbow(nrow(sum.cl))[as.numeric(tree$tip.label)] + col.bars <- col + col.pie <- rainbow(nrow(sum.cl)) + #col.vec<-rainbow(nrow(sum.cl))[as.numeric(tree[[2]])] + } else { + col = 'black' + col.bars = 'grey' + col.pie <- rep('grey',nrow(sum.cl)) + } + vec.mat<-NULL + for (i in 1:nrow(sum.cl)) vec.mat<-append(vec.mat,1) + v<-2 + for (i in 1:nrow(sum.cl)) { + vec.mat<-append(vec.mat,v) + v<-v+1 + } + par(mar=c(0,0,0,0)) + if (tclasse) { + if (! histo) { + layout(matrix(vec.mat,nrow(sum.cl),2),widths=c(3,1)) + } else { + layout(matrix(c(1,2),1,byrow=TRUE), widths=c(3,2),TRUE) + } + } + par(mar=c(0,0,0,0),cex=1) + label.ori<-tree[[2]] + if (!is.null(lab)) { + tree$tip.label <- lab + } else { + tree[[2]]<-paste('classe ',tree[[2]]) + } + plot.phylo(tree,label.offset=0.1,tip.col=col, type=type.dendro) + #cl.order <- as.numeric(label.ori) + #sum.cl[cl.order,1] + #for (i in 1:nrow(sum.cl)) { + if (tclasse) { + if (! histo) { + for (i in rev(tree.order)) { + par(mar=c(0,0,1,0),cex=0.7) + pie(sum.cl[i,],col=c(col.pie[i],'white'),radius = 1, labels='', clockwise=TRUE, main = paste('classe ',i,' - ',sum.cl[i,1],'%' )) + } + } else { + par(cex=0.7) + par(mar=c(0,0,0,1)) + to.plot <- sum.cl[tree.order,1] + d <- barplot(to.plot,horiz=TRUE, col=col.bars, names.arg='', axes=FALSE, axisname=FALSE) + text(x=to.plot, y=d[,1], label=paste(round(to.plot,1),'%'), adj=1.2) + } + } + if (!from.cmd) dev.off() + tree[[2]]<-label.ori +} +#tree <- tree.cut1$tree.cl +#to.plot <- di +plot.dendro.lex <- function(tree, to.plot, bw=FALSE, lab=NULL, lay.width=c(3,3,2), cmd=FALSE) { + tree.order<- as.numeric(tree$tip.label) + par(mar=c(0,0,0,0)) + layout(matrix(c(1,2,3),1,byrow=TRUE), widths=lay.width,TRUE) + par(mar=c(3,0,2,0),cex=1) + label.ori<-tree[[2]] + if (!is.null(lab)) { + tree$tip.label <- lab + } else { + tree[[2]]<-paste('classe ',tree[[2]]) + } + to.plot <- matrix(to.plot[,tree.order], nrow=nrow(to.plot), dimnames=list(rownames(to.plot), colnames(to.plot))) + if (!bw) { + col <- rainbow(ncol(to.plot)) + col.bars <- rainbow(nrow(to.plot)) + } else { + col <- 'black' + col.bars <- grey.colors(nrow(to.plot),0,0.8) + } + col <- col[tree.order] + plot.phylo(tree,label.offset=0.1,tip.col=col) + + par(mar=c(3,0,2,1)) + d <- barplot(to.plot,horiz=TRUE, col=col.bars, beside=TRUE, names.arg='', space = c(0.1,0.6), axisname=FALSE) + c <- colMeans(d) + c1 <- c[-1] + c2 <- c[-length(c)] + cc <- cbind(c1,c2) + lcoord <- apply(cc, 1, mean) + abline(h=lcoord) + if (min(to.plot) < 0) { + amp <- abs(max(to.plot) - min(to.plot)) + } else { + amp <- max(to.plot) + } + if (amp < 10) { + d <- 2 + } else { + d <- signif(amp%/%10,1) + } + mn <- round(min(to.plot)) + mx <- round(max(to.plot)) + for (i in mn:mx) { + if ((i/d) == (i%/%d)) { + abline(v=i,lty=3) + } + } + par(mar=c(0,0,0,0)) + plot(0, axes = FALSE, pch = '') + legend(x = 'center' , rownames(to.plot), fill = col.bars) + if (!cmd) { + dev.off() + } + tree[[2]]<-label.ori +} + +plot.alceste.graph <- function(rdata,nd=3,layout='fruke', chilim = 2) { + load(rdata) + if (is.null(debsup)) { + tab.toplot<-afctable[1:(debet+1),] + chitab<-chistabletot[1:(debet+1),] + } else { + tab.toplot<-afctable[1:(debsup+1),] + chitab<-chistabletot[1:(debsup+1),] + } + rkeep<-select_point_chi(chitab,chilim) + tab.toplot<-tab.toplot[rkeep,] + chitab<-chitab[rkeep,] + dm<-dist(tab.toplot,diag=TRUE,upper=TRUE) + cn<-rownames(tab.toplot) + cl.toplot<-apply(chitab,1,which.max) + col<-rainbow(ncol(tab.toplot))[cl.toplot] + library(igraph) + g1 <- graph.adjacency(as.matrix(dm), mode = 'lower', weighted = TRUE) + g.max<-minimum.spanning.tree(g1) + we<-(rowSums(tab.toplot)/max(rowSums(tab.toplot)))*2 + #lo <- layout.fruchterman.reingold(g.max,dim=nd) + lo<- layout.kamada.kawai(g.max,dim=nd) + print(nrow(tab.toplot)) + print(nrow(chitab)) + print(length(we)) + print(length(col)) + print(length(cn)) + if (nd == 3) { + rglplot(g.max, vertex.label = cn, vertex.size = we*3, edge.width = 0.5, edge.color='black', vertex.label.color = col,vertex.color = col, layout = lo, vertex.label.cex = 1) + } else if (nd == 2) { + plot(g.max, vertex.label = cn, vertex.size = we, edge.width = 0.5, edge.color='black', vertex.label.color = col,vertex.color = col, layout = lo, vertex.label.cex = 0.8) + } + +} + +make.simi.afc <- function(x,chitable,lim=0, alpha = 0.1, movie = NULL) { + library(igraph) + chimax<-as.matrix(apply(chitable,1,max)) + chimax<-as.matrix(chimax[,1][1:nrow(x)]) + chimax<-cbind(chimax,1:nrow(x)) + order_chi<-as.matrix(chimax[order(chimax[,1],decreasing = TRUE),]) + if ((lim == 0) || (lim>nrow(x))) lim <- nrow(x) + x<-x[order_chi[,2][1:lim],] + maxchi <- chimax[order_chi[,2][1:lim],1] + #------------------------------------------------------- + limit<-nrow(x) + distm<-dist(x,diag=TRUE) + distm<-as.matrix(distm) + g1<-graph.adjacency(distm,mode='lower',weighted=TRUE) + g1<-minimum.spanning.tree(g1) + lo<-layout.kamada.kawai(g1,dim=3) + lo <- layout.norm(lo, -3, 3, -3, 3, -3, 3) + mc<-rainbow(ncol(chistabletot)) + chitable<-chitable[order_chi[,2][1:lim],] + cc <- apply(chitable, 1, which.max) + cc<-mc[cc] + #mass<-(rowSums(x)/max(rowSums(x))) * 5 + maxchi<-norm.vec(maxchi, 0.03, 0.3) + rglplot(g1,vertex.label = vire.nonascii(rownames(x)),vertex.label.color='black',vertex.color=cc,vertex.size = 0.1, layout=lo, rescale=FALSE) + rgl.spheres(lo, col = cc, radius = maxchi, alpha = alpha) + rgl.bg(color = c('white','black')) + if (!is.null(movie)) { + require(tcltk) + ReturnVal <- tkmessageBox(title="RGL 3 D",message="Cliquez pour commencer le film",icon="info",type="ok") + + movie3d(spin3d(axis=c(0,1,0),rpm=6), movie = 'film_graph', frames = "tmpfilm", duration=10, clean=TRUE, top = TRUE, dir = movie) + ReturnVal <- tkmessageBox(title="RGL 3 D",message="Film fini !",icon="info",type="ok") + } + while (rgl.cur() != 0) + Sys.sleep(1) + +} + +# from igraph +norm.vec <- function(v, min, max) { + + vr <- range(v) + if (vr[1]==vr[2]) { + fac <- 1 + } else { + fac <- (max-min)/(vr[2]-vr[1]) + } + (v-vr[1]) * fac + min +} + + +vire.nonascii <- function(rnames) { + print('vire non ascii') + couple <- list(c('é','e'), + c('è','e'), + c('ê','e'), + c('ë','e'), + c('î','i'), + c('ï','i'), + c('ì','i'), + c('à','a'), + c('â','a'), + c('ä','a'), + c('á','a'), + c('ù','u'), + c('û','u'), + c('ü','u'), + c('ç','c'), + c('ò','o'), + c('ô','o'), + c('ö','o'), + c('ñ','n') + ) + + for (c in couple) { + rnames<-gsub(c[1],c[2], rnames) + } + rnames +} + + + +#par(mar=c(0,0,0,0)) +#layout(matrix(c(1,2),1,byrow=TRUE), widths=c(3,2),TRUE) +#par(mar=c(1,0,1,0), cex=1) +#plot.phylo(tree,label.offset=0.1) +#par(mar=c(0,0,0,1)) +#to.plot <- sum.cl[cl.order,1] +#d <- barplot(to.plot,horiz=TRUE, names.arg='', axes=FALSE, axisname=FALSE) +#text(x=to.plot, y=d[,1], label=round(to.plot,1), adj=1.2) + diff --git a/Rscripts/Rprof.out b/Rscripts/Rprof.out new file mode 100644 index 0000000..8c7566c --- /dev/null +++ b/Rscripts/Rprof.out @@ -0,0 +1 @@ +sample.interval=20000 diff --git a/Rscripts/afc.R b/Rscripts/afc.R new file mode 100644 index 0000000..1efcfcb --- /dev/null +++ b/Rscripts/afc.R @@ -0,0 +1,65 @@ +fca <- function(xtab) { + +# Correspondence analysis of principal table. List returned with +# projections, correlations, and contributions of rows (observations), +# and columns (attributes). Eigenvalues are output to display device. +# FM, 2003/12. + + tot <- sum(xtab) + fIJ <- xtab/tot + fI <- apply(fIJ, 1, sum) + fJ <- apply(fIJ, 2, sum) + fJsupI <- sweep(fIJ, 1, fI, FUN="/") + #fIsupJ <- sweep(fIJ, 2, fJ, FUN="/") + s <- as.matrix(t(fJsupI)) %*% as.matrix(fIJ) + s1 <- sweep(s, 1, sqrt(fJ), FUN="/") + s2 <- sweep(s1, 2, sqrt(fJ), FUN="/") +# In following s2 is symmetric. However due to precision S-Plus didn't +# find it to be symmetric. And function eigen in S-Plus uses a different +# normalization for the non-symmetric case (in the case of some data)! + sres <- eigen(s2,symmetric=T) + sres$values[sres$values < 1.0e-8] <- 0.0 + factexpl<-sres$values[-1] + #tot <- sum(sres$values[-1]) + #factexplp<-100*sres$values[-1]/tot +# Eigenvectors divided rowwise by sqrt(fJ): + evectors <- sweep(sres$vectors, 1, sqrt(fJ), FUN="/") + +# PROJECTIONS ON FACTORS OF ROWS AND COLUMNS + rproj <- as.matrix(fJsupI) %*% evectors + #temp <- as.matrix(s2) %*% sres$vectors +# Following divides rowwise by sqrt(fJ) and columnwise by sqrt(eigenvalues): +# Note: first column of cproj is trivially 1-valued. +# NOTE: VBESxFACTORS. READ PROJS WITH FACTORS 1,2,... FROM COLS 2,3,... + #cproj <- sweep(sweep(temp,1,sqrt(fJ),FUN="/"),2,sqrt(sres$values),FUN="/") + +# CONTRIBUTIONS TO FACTORS BY ROWS AND COLUMNS +# Contributions: mass times projection distance squared. + #temp <- sweep( rproj^2, 1, fI, FUN="*") +# Normalize such that sum of contributions for a factor equals 1. + #sumCtrF <- apply(temp, 2, sum) +# Note: Obs. x factors. Read cntrs. with factors 1,2,... from cols. 2,3,... + #rcntr <- sweep(temp, 2, sumCtrF, FUN="/") + #temp <- sweep( cproj^2, 1, fJ, FUN="*") + #sumCtrF <- apply(temp, 2, sum) +# Note: Vbs. x factors. Read cntrs. with factors 1,2,... from cols. 2,3,... + #ccntr <- sweep(temp, 2, sumCtrF, FUN="/") + +# CORRELATIONS WITH FACTORS BY ROWS AND COLUMNS +# dstsq(i) = sum_j 1/fj (fj^i - fj)^2 + #temp <- sweep(fJsupI, 2, fJ, "-") + #dstsq <- apply( sweep( temp^2, 2, fJ, "/"), 1, sum) +# NOTE: Obs. x factors. Read corrs. with factors 1,2,... from cols. 2,3,... + #rcorr <- sweep(rproj^2, 1, dstsq, FUN="/") + #temp <- sweep(fIsupJ, 1, fI, "-") + #dstsq <- apply( sweep( temp^2, 1, fI, "/"), 2, sum) +# NOTE: Vbs. x factors. Read corrs. with factors 1,2,... from cols. 2,3,... + #ccorr <- sweep(cproj^2, 1, dstsq, "/") + +# Value of this function on return: list containing projections, correlations, +# and contributions for rows (observations), and for columns (variables). +# In all cases, allow for first trivial first eigenvector. + list(rproj=rproj[,-1],factexpl=factexpl)#,rcorr=rcorr[,-1], rcntr=rcntr[,-1],factexpl=factexpl,factexplp=factexplp, + #cproj=cproj[,-1], ccorr=ccorr[,-1], ccntr=ccntr[,-1]) + +} \ No newline at end of file diff --git a/Rscripts/afc_graph.R b/Rscripts/afc_graph.R new file mode 100644 index 0000000..17f065e --- /dev/null +++ b/Rscripts/afc_graph.R @@ -0,0 +1,223 @@ +#Author: Pierre Ratinaud +#Copyright (c) 20010 Pierre Ratinaud +#Lisense: GNU/GPL + + +#fichier genere par IRaMuTeq +source('%s') +typegraph <- %i +what <- %i +x <- %i +y <- %i +z <- %i +qui <- %i +over <- %s +do.select.nb <- %s +select.nb <- %i +do.select.chi <- %s +select.chi <- %i +cex.txt <- %s +txt.min <- %i +txt.max <- %i +fileout <- '%s' +width <- %i +height <- %i +taillecar <- %i +alpha <- %i/100 +dofilm <- %s +tchi <- %s +tchi.min <- %i +tchi.max <- %i +dirout <- '%s' + +xlab <- paste('facteur ', x, ' -') +ylab <- paste('facteur ', y, ' -') +if (!typegraph == 0) {zlab <- paste('facteur ', z, ' -')} +xlab <- paste(xlab,round(afc_table$facteur[x,2],2),sep = ' ') +xlab <- paste(xlab,' %%',sep = '') +ylab <- paste(ylab,round(afc_table$facteur[y,2],2),sep = ' ') +ylab <- paste(ylab,' %%',sep = '') +if (!typegraph == 0) { + zlab <- paste(zlab,round(afc_table$facteur[z,2],2),sep = ' ') + zlab <- paste(zlab,' %%',sep = '') +} + +if ( qui == 3 ) { + if ( what == 0 ) table.in <- afc$colcoord + if ( what == 1 ) table.in <- afc$colcrl + rownames(table.in) <- afc$colnames + if (typegraph == 0) { + table.in<-table.in[,c(x,y)] + } else { + table.in<-table.in[,c(x,y,z)] + rx <- range(table.in[,1], na.rm = TRUE) + ry <- range(table.in[,2], na.rm = TRUE) + rz <- range(table.in[,3], na.rm = TRUE) + } + classes <- c(1:clnb) + maxchi <- 1 + cex.par <- NULL +} else { + if ( what == 0 ) table.in <- afc$rowcoord + if ( what == 1 ) table.in <- afc$rowcrl*2 + rownames(table.in) <- afc$rownames + tablechi <- chistabletot + rn.keep <- c() + if (typegraph == 0) { + table.in<-table.in[,c(x,y)] + } else { + table.in<-table.in[,c(x,y,z)] + rx <- range(table.in[,1], na.rm = TRUE) + ry <- range(table.in[,2], na.rm = TRUE) + rz <- range(table.in[,3], na.rm = TRUE) + } + if (!is.null(debsup)) { + if ( qui == 0 ) { + table.in <- table.in[1:(debsup-1),] + tablechi <- tablechi[1:(debsup-1),] + cex.par <- afc$rowmass[1:(debsup-1)] + } + if ( qui == 1 ) { + table.in <- table.in[debsup:(debet-1),] + tablechi <- tablechi[debsup:(debet-1),] + #cex.par <- afc$rowmass[debsup:(debet-1)] + } + if ( qui == 2 ) { + table.in <- table.in[debet:nrow(table.in),] + tablechi <- tablechi[debet:nrow(tablechi),] + #cex.par <- afc$rowmass[debet:nrow(tablechi)] + } + } + + if (is.null(debsup)) { + if (qui == 0) { + if (!is.null(debet)) { + table.in <- table.in[1:(debet-1),] + tablechi <- tablechi[1:(debet-1),] + cex.par <- afc$rowmass[1:(debet-1)] + } else { + cex.par <- afc$rowmass + } + } else { + table.in <- table.in[debet:nrow(table.in),] + tablechi <- tablechi[debet:nrow(tablechi),] + #cex.par <- afc$rowmass[debet:nrow(tablechi)] + } + } + + if (over) { + rn <- rownames(table.in) + rownames(table.in) <- 1:nrow(table.in) + table.in <- unique(table.in) + rn.keep <- as.numeric(rownames(table.in)) + rownames(table.in) <- rn[rn.keep] + tablechi <- tablechi[rn.keep,] + if (qui==0) { + cex.par <- cex.par[rn.keep] + } else { + cex.par <- NULL + } + } + if (do.select.nb) { + if (select.nb > nrow(table.in)) select.nb <- nrow(table.in) + row.keep <- select_point_nb(tablechi, select.nb) + table.in <- table.in[row.keep,] + tablechi <- tablechi[row.keep,] + } else if (do.select.chi) { + if (select.chi > max(tablechi)) select.chi <- max(tablechi) + row.keep <- select_point_chi(tablechi, select.chi) + table.in <- table.in[row.keep,] + tablechi <- tablechi[row.keep,] + } else { + row.keep <- 1:nrow(table.in) + } + classes <- apply(tablechi, 1, which.max) + maxchi <- apply(tablechi, 1, max) + + if (cex.txt) { + #row.keep <- append(row.keep, rn.keep) + #row.keep <- unique(row.keep) + cex.par <- cex.par[row.keep] + cex.par <- norm.vec(cex.par, txt.min/10, txt.max/10) + } else if (tchi) { + cex.par <- maxchi + cex.par <- norm.vec(cex.par, tchi.min/10, tchi.max/10) + } else { + cex.par <- NULL + } +} + +if (typegraph == 0) { + + open_file_graph(fileout, width = width, height = height) + parcex <- taillecar/10 + par(cex = parcex) + make_afc_graph(table.in, classes, clnb, xlab, ylab, cex.txt = cex.par) + +} else { + + vire.nonascii <- function(rnames) { + print('vire non ascii') + couple <- list(c('é','e'), + c('è','e'), + c('ê','e'), + c('ë','e'), + c('î','i'), + c('ï','i'), + c('ì','i'), + c('à','a'), + c('â','a'), + c('ä','a'), + c('á','a'), + c('ù','u'), + c('û','u'), + c('ü','u'), + c('ç','c'), + c('ò','o'), + c('ô','o'), + c('ö','o'), + c('ñ','n') + ) + for (c in couple) { + rnames<-gsub(c[1],c[2], rnames) + } + rnames + } + library(rgl) + rn <- vire.nonascii(rownames(table.in)) + rgl.open() + #par3d(windowRect = c(100,100,600,600)) + rgl.bg(col = c('white', "#99bb99"), front = "lines", box=FALSE, sphere = TRUE) + rgl.lines(c(rx), c(0, 0), c(0, 0), col = "#000000") + rgl.lines(c(0,0),c(ry),c(0,0),col = "#000000") + rgl.lines(c(0,0),c(0,0),c(rz),col = "#000000") + text3d(rx[2]+1,0,0, xlab) + text3d(0,ry[2]+1,0, ylab) + text3d(0,0,rz[2]+1, zlab) + rain = rainbow(clnb) + colors = rain[classes] + text3d(table.in[,1], table.in[,2], table.in[,3], rn, col='black') + if (tchi) { + maxchi <- norm.vec(maxchi, tchi.min/100, tchi.max/100) + } else if (!is.null(cex.par)) { + maxchi <- norm.vec(cex.par, txt.min/100, txt.max/100) + } else { + maxchi <- 0.1 + } + for (i in 1:clnb) { + text3d(rx[2],(ry[2]+(0.2*i)),0,paste('classe',i),col=rain[i]) + } + rgl.spheres(table.in, col = colors, radius = maxchi, alpha = alpha) + + if (dofilm) { + require(tcltk) + ReturnVal <- tkmessageBox(title="RGL 3 D",message="Cliquez pour commencer le film",icon="info",type="ok") + + movie3d(spin3d(axis=c(0,1,0),rpm=6), movie = 'film', frames = "tmpfilm", duration=10, clean=TRUE, top = TRUE, dir = dirout) + ReturnVal <- tkmessageBox(title="RGL 3 D",message="Fini !",icon="info",type="ok") + } + + require(tcltk) + ReturnVal <- tkmessageBox(title="RGL 3 D",message="Cliquez pour fermer",icon="info",type="ok") + rgl.close() +} diff --git a/Rscripts/afc_lex.R b/Rscripts/afc_lex.R new file mode 100644 index 0000000..b84b4b1 --- /dev/null +++ b/Rscripts/afc_lex.R @@ -0,0 +1,33 @@ +#Author: Pierre Ratinaud +#Copyright (c) 20011 Pierre Ratinaud +#Lisense: GNU/GPL + + +#fichier genere par IRaMuTeq +source('%s') +load('%s') +doafc <- TRUE +nd <- %i +filename <-'%s' +width <- %i +height <- %i +facteurs <- '%s' +lignes <- '%s' +colonnes <- '%s' + +filein <- 'tableafcm.csv' +library(ca) + +if (doafc) { + cont <- read.csv2('tableafcm.csv', header = TRUE, row.names = 1, quote='"') + afc <- ca(cont, nd=nd) + afc <- AddCorrelationOk(afc) + afc <- summary.ca.dm(afc) + afc_table <- create_afc_table(afc) + write.csv2(afc_table$facteur, file = facteurs) + write.csv2(afc_table$colonne, file = colonnes) + write.csv2(afc_table$ligne, file = lignes) +} + +#open_file_graph(filename, width = width, height = height) +#make_afc_graph(toplot,classes,clnb, xlab, ylab, cex_txt = NULL) diff --git a/Rscripts/anacor.R b/Rscripts/anacor.R new file mode 100644 index 0000000..c68df77 --- /dev/null +++ b/Rscripts/anacor.R @@ -0,0 +1,104 @@ +print('NEW SVD') +################################################################################# +#http://www.mail-archive.com/rcpp-devel@lists.r-forge.r-project.org/msg01513.html + +write.sparse <- function (m, to) { + ## Writes in a format that SVDLIBC can read + stopifnot(inherits(m, "dgCMatrix")) + fh <- file(to, open="w") + + wl <- function(...) cat(..., "\n", file=fh) + + ## header + wl(dim(m), length(m@x)) + + globalCount <- 1 + nper <- diff(m@p) + for(i in 1:ncol(m)) { + wl(nper[i]) ## Number of entries in this column + if (nper[i]==0) next + for(j in 1:nper[i]) { + wl(m@i[globalCount], m@x[m@p[i]+j]) + globalCount <- globalCount+1 + } + } +} + +my.svd <- function(x, nu, nv, libsvdc.path=NULL, sparse.path=NULL) { + print('my.svd') + stopifnot(nu==nv) + outfile <- file.path(tempdir(),'sout') + cmd <- paste(libsvdc.path, '-o', outfile, '-d') + #rc <- system(paste("/usr/bin/svd -o /tmp/sout -d", nu, "/tmp/sparse.m")) + rc <- system(paste(cmd, nu, sparse.path)) + if (rc != 0) + stop("Couldn't run external svd code") + res1 <- paste(outfile,'-S', sep='') + d <- scan(res1, skip=1) +#FIXME : sometimes, libsvdc doesn't find solution with 2 dimensions, but does with 3 + if (length(d)==1) { + nu <- nu + 1 + #rc <- system(paste("/usr/bin/svd -o /tmp/sout -d", nu, "/tmp/sparse.m")) + rc <- system(paste(cmd, nu, sparse.path)) + d <- scan(res1, skip=1) + } + utfile <- paste(outfile, '-Ut', sep='') + ut <- matrix(scan(utfile,skip=1),nrow=nu,byrow=TRUE) + if (nrow(ut)==3) { + ut <- ut[-3,] + } + vt <- NULL + list(d=d, u=-t(ut), v=vt) +} +################################################################################### + +#from anacor package +boostana<-function (tab, ndim = 2, libsvdc = FALSE, libsvdc.path=NULL) +{ + #tab <- as.matrix(tab) + if (ndim > min(dim(tab)) - 1) + stop("Too many dimensions!") + name <- deparse(substitute(tab)) + if (any(is.na(tab))) + print('YA NA') + #tab <- reconstitute(tab, eps = eps) + n <- dim(tab)[1] + m <- dim(tab)[2] + N <- sum(tab) + #tab <- as.matrix(tab) + #prop <- as.vector(t(tab))/N + r <- rowSums(tab) + c <- colSums(tab) + qdim <- ndim + 1 + r <- ifelse(r == 0, 1, r) + c <- ifelse(c == 0, 1, c) + print('make z') + z1 <- t(tab)/sqrt(c) + z2 <- tab/sqrt(r) + z <- t(z1) * z2 + if (libsvdc) { + #START NEW SVD + z <- as(z, "dgCMatrix") + tmpmat <- tempfile(pattern='sparse') + print('write sparse matrix') + write.sparse(z, tmpmat) + print('do svd') + sv <- my.svd(z, qdim, qdim, libsvdc.path=libsvdc.path, sparse.path=tmpmat) + #END NEW SVD + } else { + print('start R svd') + sv <- svd(z, nu = qdim, nv = qdim) + print('end svd') + } + sigmavec <- (sv$d)[2:qdim] + x <- ((sv$u)/sqrt(r))[, -1] + x <- x * sqrt(N) + x <- x * outer(rep(1, n), sigmavec) + dimlab <- paste("D", 1:ndim, sep = "") + colnames(x) <- dimlab# <- colnames(y) <- dimlab + rownames(x) <- rownames(tab) + result <- list(ndim = ndim, row.scores = x, + singular.values = sigmavec, eigen.values = sigmavec^2) + class(result) <- "boostanacor" + result +} diff --git a/Rscripts/association.R b/Rscripts/association.R new file mode 100644 index 0000000..fb1c7eb --- /dev/null +++ b/Rscripts/association.R @@ -0,0 +1,65 @@ +#author : Pierre Ratinaud +#copyright 1012 Pierre Ratinaud +#license : GNU GPL + + +in.table <- read.csv2('/home/pierre/workspace/iramuteq/corpus/association_suede.csv', header = FALSE, row.names=1) +source('/home/pierre/workspace/iramuteq/Rscripts/Rgraph.R') + +verges.table <- function(x, freq.ts = 'mean', rank.ts = 'mean') { +#x matrice : eff, rank +#table.out : eff in rows, rank in columns +# 1|2 +# 3|4 + if (freq.ts == 'mean') { + freq.ts <- mean(x[,1]) + } + if (rank.ts == 'mean') { + rank.ts <- mean(x[,2]) + } + + eff.cex=c(0.8,2) + rank.cex=NULL + + if (!is.null(eff.cex)) x <- cbind(x,norm.eff=norm.vec(x[,1],eff.cex[1], eff.cex[2])) + + if (!is.null(rank.cex)) x <- cbind(x,norm.rank=norm.vec(x[,1],rank.cex[1], rank.cex[2])) + + case.1 <- x[which(x[,1] >= freq.ts & x[,2] <= rank.ts),] + case.2 <- x[which(x[,1] >= freq.ts & x[,2] > rank.ts),] + case.3 <- x[which(x[,1] < freq.ts & x[,2] <= rank.ts),] + case.4 <- x[which(x[,1] < freq.ts & x[,2] > rank.ts),] + + ylims <- max(c(nrow(case.1), nrow(case.2), nrow(case.3) ,nrow(case.4))) + + + plot.case <- function(case) { + txt <- rownames(case) + if (ncol(case) == 3) lab.cex <- case[,3] + else lab.cex=1 + plot(rep(1,length(txt)),1:length(txt),pch='',axes=FALSE, xlab='', ylab='', ylim = c(0,ylims)) + ys <- ylims - length(txt) + ys <- (length(txt):1) + ys + text(1,ys,txt, xlab=NULL, ylab=NULL, cex=lab.cex) + } + + boxcolor = 'green' + par(mfcol=c(2,2)) + par(mar=c(1,1,1,1)) + par(oma=c(3,3,3,3)) + plot.case(case.1) + box("figure", col=boxcolor) + plot.case(case.3) + box("figure", col=boxcolor) + plot.case(case.2) + box("figure", col=boxcolor) + plot.case(case.4) + box("figure", col=boxcolor) + + mtext("rangs <= | rangs >", side=3, line=1, cex=1, col="blue", outer=TRUE) + mtext("fréquences < | fréquences >=", side=2, line=2, cex=1, col="blue", outer=TRUE) + box("outer", col="blue") +} + + + diff --git a/Rscripts/chd.R b/Rscripts/chd.R new file mode 100644 index 0000000..9d79ac6 --- /dev/null +++ b/Rscripts/chd.R @@ -0,0 +1,87 @@ +#chd.R +source('%s') +source('%s') +source('%s') +source('%s') +classif.mode <- %i +file.data1 <- '%s' +file.data2 <- '%s' +file.listuce1 <- '%s' +file.listuce2 <- '%s' +file.uce <- '%s' +mincl <- %i +graph.arbre1 <- '%s' +graph.arbre2 <- '%s' +graph.dendro1 <- '%s' +graph.dendro2 <- '%s' +data.out <- %s + +data1<-read.csv2(file.data1, header = FALSE) + +if (classif.mode == 0) { + data2<-read.csv2(file.data2, header = FALSE) +} +chd1<-CHD(data1) + +if (classif.mode == 0) { + chd2<-CHD(data2) +} else { + chd2<-chd1 +} + +#lecture des uce +listuce1<-read.csv2(file.listuce1) + +if (classif.mode == 0) { + listuce2<-read.csv2(file.listuce2) +} + +rm(data1) + +if (classif.mode == 0) rm(data2) + +chd.result <- Rchdtxt(file.uce,mincl=mincl,classif_mode=classif.mode) +n1 <- chd.result$n1 +classeuce1 <- chd.result$cuce1 +classeuce2 <- chd.result$cuce2 + +tree.tot1 <- make_tree_tot(chd1) +open_file_graph(graph.arbre1, widt = 600, height=400) +plot(tree.tot1$tree.cl) +dev.off() + +if (classif.mode == 0) { + tree.tot2 <- make_tree_tot(chd2) + open_file_graph(graph.arbre2, width = 600, height=400) + plot(tree.tot2$tree.cl) + dev.off() +} +tree.cut1 <- make_dendro_cut_tuple(tree.tot1$dendro_tuple, chd.result$coord_ok, classeuce1, 1) +classes<-n1[,9] +open_file_graph(graph.dendro1, width = 600, height=400) +plot.dendropr(tree.cut1$tree.cl,classes) +dev.off() + +if (classif.mode == 0) { + tree.cut2 <- make_dendro_cut_tuple(tree.tot2$dendro_tuple, chd.result$coord_ok, classeuce2, 2) + open_file_graph(graph.dendro2, width = 600, height=400) + plot(tree.cut2$tree.cl) + dev.off() +} +save.image(file=data.out) + + +(RscriptPath['CHD'], RscriptPath['chdtxt'], RscriptPath['anacor'], RscriptPath['Rgraph']) + + """ % DicoPath['TableUc1'] + + """ % DicoPath['TableUc2'] +""" % DicoPath['listeuce1'] + + """ % DicoPath['listeuce2'] +""" % (DicoPath['uce'], mincl, classif_mode) +"""%DicoPath['arbre1'] + """ %DicoPath['arbre2'] +""" % DicoPath['dendro1'] + """ % DicoPath['dendro2'] +% DicoPath['RData'] diff --git a/Rscripts/chdfunct.R b/Rscripts/chdfunct.R new file mode 100644 index 0000000..2ca1eac --- /dev/null +++ b/Rscripts/chdfunct.R @@ -0,0 +1,622 @@ +#datadm<-read.table('/home/pierre/.hippasos/corpus_agir_CHDS_16/fileACTtemp.csv', header=TRUE,sep=';', quote='\"',row.names = 1, na.strings = 'NA') +library(cluster) +#dissmat<-daisy(dataact, metric = 'gower', stand = FALSE) +#chd<-diana(dissmat,diss=TRUE,) +#height<-chd$height +#sortheight<-sort(height,decreasing=TRUE) +FindBestCluster<-function (x,Max=15) { + i<-1 + j<-1 + ListClasseOk<-list() + while (i < Max) { + if (x[i]==1){ + while (x[i]==1) { + i<-i+1 + } + ListClasseOk[[j]]<-i + j<-j+1 + } + if (x[i]==x[i+1]) { + i<-i+1 + } + else { + ListClasseOk[[j]]<-i+1 + i<-i+1 + j<-j+1 + } + } + unlist(ListClasseOk) +} +#BestCLusterNb<-FindBestCluster(sortheight) +#classes<-as.data.frame(cutree(as.hclust(chd), k=6))[,1] +#datadm<-cbind(datadm,classes) +#clusplot(datadm,classes,shade=TRUE,color=TRUE,labels=4) + +BuildContTable<- function (x) { + afctable<-NULL + for (i in 1:(ncol(x)-1)) { + coltable<-table(x[,i],x$classes) + afctable<-rbind(afctable,coltable) + } + afctable +} + +PrintProfile<- function(dataclasse,profileactlist,profileetlist,antiproact,antiproet,clusternb,profileout,antiproout,profilesuplist=NULL,antiprosup=NULL) { + prolist<-list() + profile<-matrix(,0,6) + antipro<-matrix(,0,6) + cltot<-as.data.frame(dataclasse[dataclasse[,ncol(dataclasse)]!=0,]) + cltot<-as.data.frame(as.character(cltot[,ncol(cltot)])) + tot<-nrow(cltot) + classes<-as.data.frame(as.character(dataclasse[,ncol(dataclasse)])) + classes.s<-as.data.frame(summary(cltot[,1],maxsum=500)) + profile<-rbind(profile,c('***','nb classes',clusternb,'***','','')) + antipro<-rbind(antipro,c('***','nb classes',clusternb,'***','','')) + for(i in 1:clusternb) { + profile<-rbind(profile,c('**','classe',i,'**','','')) + nbind<-classes.s[which(rownames(classes.s)==i),1] + pr<-round((nbind/tot)*100,digits=2) + profile<-rbind(profile,c('****',nbind,tot,pr,'****','')) + if (length(profileactlist[[1]][[i]])!=0){ + profile<-rbind(profile,as.matrix(profileactlist[[1]][[i]])) + } + if (!is.null(profilesuplist)) { + profile<-rbind(profile,c('*****','*','*','*','*','*')) + if (length(profilesuplist[[1]][[i]])!=0) { + profile<-rbind(profile,as.matrix(profilesuplist[[1]][[i]])) + } + } + if (!is.null(profileetlist)) { + profile<-rbind(profile,c('*','*','*','*','*','*')) + if (length(profileetlist[[1]][[i]])!=0) { + profile<-rbind(profile,as.matrix(profileetlist[[1]][[i]])) + } + } + antipro<-rbind(antipro,c('**','classe',i,'**','','')) + antipro<-rbind(antipro,c('****',nbind,tot,pr,'****','')) + if (length(antiproact[[1]][[i]])!=0) { + antipro<-rbind(antipro,as.matrix(antiproact[[1]][[i]])) + } + if (!is.null(profilesuplist)) { + antipro<-rbind(antipro,c('*****','*','*','*','*','*')) + if (length(antiprosup[[1]][[i]])!=0) { + antipro<-rbind(antipro,as.matrix(antiprosup[[1]][[i]])) + } + } + if (!is.null(profileetlist)) { + antipro<-rbind(antipro,c('*','*','*','*','*','*')) + if (length(antiproet[[1]][[i]])!=0) { + antipro<-rbind(antipro,as.matrix(antiproet[[1]][[i]])) + } + } + } + write.csv2(profile,file=profileout,row.names=FALSE) + write.csv2(antipro,file=antiproout,row.names=FALSE) +} + +AddCorrelationOk<-function(afc) { + rowcoord<-afc$rowcoord + colcoord<-afc$colcoord + factor <- ncol(rowcoord) + hypo<-function(rowcoord,ligne) { + somme<-0 + for (i in 1:factor) { + somme<-somme+(rowcoord[ligne,i])^2 + } + sqrt(somme) + } + cor<-function(d,hypo) { + d/hypo + } + CompCrl<-function(rowcol) { + out<-rowcol + for (i in 1:factor) { + for(ligne in 1:nrow(rowcol)) { + out[ligne,i]<-cor(rowcol[ligne,i],hypo(rowcol,ligne)) + } + } + out + } + afc$rowcrl<-CompCrl(rowcoord) + afc$colcrl<-CompCrl(colcoord) + afc +} + +AsLexico<- function(x) { + x<-as.matrix(x) + sumcol<-colSums(x) + sumrow<-rowSums(x) + tot<-sum(sumrow) + tablesqr<-x + tablep<-x + mod.names<-rownames(x) + #problem exemple aurelia + for (classe in 1:ncol(x)) { + print(classe) + for (ligne in 1:nrow(x)) { + conttable<-matrix(0,2,2) + conttable[1,1]<-as.numeric(x[ligne,classe]) + conttable[1,2]<-sumrow[ligne]-conttable[1,1] + conttable[2,1]<-sumcol[classe]-conttable[1,1] + conttable[2,2]<-tot-sumrow[ligne]-conttable[2,1] + chiresult<-chisq.test(conttable,correct=TRUE) + if (is.na(chiresult$p.value)) { + chiresult$p.value<-1 + chiresult$statistic<-0 + } + obsv<-chiresult$expected + pval<-as.character(format(chiresult$p.value,scientific=TRUE)) + spval<-strsplit(pval,'e') + if (is.na(spval)) { + print(spval) + } + if (conttable[1,1]>obsv[1,1]) { + tablep[ligne,classe]<-as.numeric(spval[[1]][2])*(-1) + tablesqr[ligne,classe]<-round(chiresult$statistic,digits=3) + } + else if (conttable[1,1]obsv[1,1]) { + as.numeric(spval[[1]][2])*(-1) + } + else if (tb[1,1]obsv[1,1]) { + chiresult$p.value + } + else if (tb[1,1]obsv[1,1]) { + chiresult$statistic + } + else if (tb[1,1] nrow(lexicaltable)) + stop("Row index must be smaller than the number of rows.") + } + lexicaltable <- lexicaltable[types, , drop = FALSE] + rowMargin <- rowMargin[types] + } + if (!is.null(parts)) { + if (is.character(parts)) { + if (is.null(colnames(lexicaltable))) + stop("The lexical table has no col names and the \"parts\" argument is a character vector.") + if (!all(parts %in% colnames(lexicaltable))) + stop(paste("Some requested parts are not known in the lexical table: ", + paste(parts[!(parts %in% colnames(lexicaltable))], + collapse = " "))) + } + else { + if (max(parts) > ncol(lexicaltable)) + stop("Column index must be smaller than the number of cols.") + if (any(parts < 1)) + stop("The col index must be greater than 0.") + } + lexicaltable <- lexicaltable[, parts, drop = FALSE] + colMargin <- colMargin[parts] + } + if (nrow(lexicaltable) == 0 | ncol(lexicaltable) == 0) { + stop("The lexical table must contains at least one row and one column.") + } + specif <- matrix(0, nrow = nrow(lexicaltable), ncol = ncol(lexicaltable)) + for (i in 1:ncol(lexicaltable)) { + whiteDrawn <- lexicaltable[, i] + white <- rowMargin + black <- F - white + drawn <- colMargin[i] + independance <- (white * drawn)/F + specif_negative <- whiteDrawn < independance + specif_positive <- whiteDrawn >= independance + specif[specif_negative, i] <- phyper(whiteDrawn[specif_negative], + white[specif_negative], black[specif_negative], drawn) + specif[specif_positive, i] <- phyper(whiteDrawn[specif_positive] - + 1, white[specif_positive], black[specif_positive], + drawn) + } + dimnames(specif) <- dimnames(lexicaltable) + return(specif) +} + +#from textometrieR +#http://txm.sourceforge.net/doc/R/textometrieR-package.html +#Sylvain Loiseau +specificites <- function (lexicaltable, types = NULL, parts = NULL) +{ + spe <- specificites.probabilities(lexicaltable, types, parts) + spelog <- matrix(0, nrow = nrow(spe), ncol = ncol(spe)) + spelog[spe < 0.5] <- log10(spe[spe < 0.5]) + spelog[spe > 0.5] <- abs(log10(1 - spe[spe > 0.5])) + spelog[spe == 0.5] <- 0 + spelog[is.infinite(spe)] <- 0 + spelog <- round(spelog, digits = 4) + rownames(spelog) <- rownames(spe) + colnames(spelog) <- colnames(spe) + return(spelog) +} + +make.spec.hypergeo <- function(mat) { + #library(textometrieR) + spec <- specificites(mat) + sumcol<-colSums(mat) + eff_relatif<-round(t(apply(mat,1,function(x) {(x/t(as.matrix(sumcol))*1000)})),2) + out <-list() + out[[1]]<-spec + out[[3]]<-eff_relatif + out +} + +BuildProf01<-function(x,classes) { + #x : donnees en 0/1 + #classes : classes de chaque lignes de x + dm<-cbind(x,cl=classes) + clnb=length(summary(as.data.frame(as.character(classes)),max=100)) + mat<-matrix(0,ncol(x),clnb) + rownames(mat)<-colnames(x) + for (i in 1:clnb) { + dtmp<-dm[which(dm$cl==i),] + for (j in 1:(ncol(dtmp)-1)) { + mat[j,i]<-sum(dtmp[,j]) + } + } + mat +} + +BuildProf<- function(x,dataclasse,clusternb,lim=2) { + #### + #r.names<-rownames(x) + #x<-as.matrix(x) + #rownames(x)<-r.names + #### + #nuce<-nrow(dataclasse) + sumcol<-paste(NULL,1:nrow(x)) + colclasse<-dataclasse[,ncol(dataclasse)] + nuce <- length(which(colclasse != 0)) +# for (i in 1:nrow(x)) { +# sumcol[i]<-sum(x[i,]) +# } +# afctablesum<-cbind(x,sumcol) + afctablesum <- cbind(x, rowSums(x)) + #dataclasse<-as.data.frame(dataclasse[dataclasse[,ncol(dataclasse)]!=0,]) + dataclasse<-as.matrix(dataclasse[dataclasse[,ncol(dataclasse)]!=0,]) + tablesqr<-x + tablep<-x + x<-afctablesum + listprofile<-list() + listantipro<-list() + mod.names<-rownames(x) + prof<-list() + aprof<-list() + lnbligne<-matrix() + for (classe in 1:clusternb) { + lnbligne[classe]<-length(colclasse[colclasse==classe]) + prof[[classe]]<-data.frame() + aprof[[classe]]<-data.frame() + } + + for (ligne in 1:nrow(x)) { + for (classe in 1:clusternb) { + nbligneclasse<-lnbligne[classe] + conttable<-data.frame() + conttable[1,1]<-as.numeric(x[ligne,classe]) + conttable[1,2]<-as.numeric(as.vector(x[ligne,ncol(x)]))-as.numeric(x[ligne,classe]) + conttable[2,1]<-nbligneclasse-as.numeric(x[ligne,classe]) + conttable[2,2]<-nrow(dataclasse)-as.numeric(as.vector(x[ligne,ncol(x)]))-conttable[2,1] + chiresult<-chisq.test(conttable,correct=FALSE) + if (is.na(chiresult$p.value)) { + chiresult$p.value<-1 + chiresult$statistic<-0 + china=TRUE + } + obsv<-chiresult$expected + tablep[ligne,classe]<-round(chiresult$p.value,digits=3) + #tablep[ligne,classe]<-format(chiresult$p.value, scientific=TRUE) + if (chiresult$statistic>=lim) { + if (conttable[1,1]>obsv[1,1]) { + tablesqr[ligne,classe]<-round(chiresult$statistic,digits=3) + prof[[classe]][nrow(prof[[classe]])+1,1]<-as.numeric(x[ligne,classe]) + prof[[classe]][nrow(prof[[classe]]),2]<-as.numeric(as.vector(x[ligne,ncol(x)])) + prof[[classe]][nrow(prof[[classe]]),3]<-round((as.numeric(as.vector(x[ligne,classe]))/as.numeric(as.vector(x[ligne,ncol(x)])))*100,digits=2) + prof[[classe]][nrow(prof[[classe]]),4]<-round(chiresult$statistic,digits=2) + prof[[classe]][nrow(prof[[classe]]),5]<-mod.names[ligne] + prof[[classe]][nrow(prof[[classe]]),6]<-chiresult$p.value + } + else if (conttable[1,1]obsv[1,1]) { + tablesqr[ligne,classe]<-round(chiresult$statistic,digits=3) + } else if (conttable[1,1]=lim) { + if (conttable[1,1]>obsv[1,1]) { + tablesqr[ligne,classe]<-round(chiresult$statistic,digits=3) + prof[[classe]][nrow(prof[[classe]])+1,1]<-as.numeric(x[ligne,classe]) + prof[[classe]][nrow(prof[[classe]]),2]<-as.numeric(as.vector(x[ligne,ncol(x)])) + prof[[classe]][nrow(prof[[classe]]),3]<-round((as.numeric(as.vector(x[ligne,classe]))/as.numeric(as.vector(x[ligne,ncol(x)])))*100,digits=2) + prof[[classe]][nrow(prof[[classe]]),4]<-round(chiresult$statistic,digits=2) + prof[[classe]][nrow(prof[[classe]]),5]<-mod.names[ligne] + prof[[classe]][nrow(prof[[classe]]),6]<-chiresult$p.value + } + else if (conttable[1,1]obsv[1,1]) { + tablesqr[ligne,classe]<-round(chiresult$statistic,digits=3) + } else if (conttable[1,1]=classe] + listf<-unique(listf) + listf +} + +#fonction pour la double classification +#cette fonction doit etre splitter en 4 ou 5 fonctions + +Rchdquest<-function(tableuc1,listeuce1,uceout ,nbt = 9, mincl = 2) { + #source('/home/pierre/workspace/iramuteq/Rscripts/CHD.R') + + #lecture des tableaux + data1<-read.csv2(tableuc1)#,row.names=1) + cn.data1 <- colnames(data1) + data1 <- as.matrix(data1) + colnames(data1) <- cn.data1 + rownames(data1) <- 1:nrow(data1) + data2<-data1 + sc<-colSums(data2) + if (min(sc)<=4){ + data1<-data1[,-which(sc<=4)] + sc<-sc[-which(sc<=4)] + } + #analyse des tableaux avec la fonction CHD qui doit etre sourcee avant + chd1<-CHD(data1, x = nbt) + chd2<-chd1 + + #FIXME: le nombre de classe peut etre inferieur + nbcl <- nbt + 1 + tcl <- ((nbt+1) * 2) - 2 + + #lecture des uce + listuce1<-read.csv2(listeuce1) + listuce2<-listuce1 + + #Une fonction pour assigner une classe a chaque UCE + AssignClasseToUce<-function(listuce,chd) { + out<-matrix(nrow=nrow(listuce),ncol=ncol(chd)) + for (i in 1:nrow(listuce)) { + for (j in 1:ncol(chd)) { + out[i,j]<-chd[(listuce[i,2]+1),j] + } + } + out + } + + #Assignation des classes + classeuce1<-AssignClasseToUce(listuce1,chd1$n1) + classeuce2<-classeuce1 + + #calcul des poids (effectifs) + poids1<-vector(mode='integer',length=tcl) + makepoids<-function(classeuce,poids) { + for (classes in 2:(tcl + 1)){ + for (i in 1:ncol(classeuce)) { + if (poids[(classes-1)]1) { + maxchi<-0 + best<-NULL + for (i in 1:length(listcoordok)) { + chi<-NULL + uce<-NULL + if (nrow(listcoordok[[i]])==maxcl) { + for (j in 1:nrow(listcoordok[[i]])) { + chi<-c(chi,croise[(listcoordok[[i]][j,1]-1),(listcoordok[[i]][j,2]-1)]) + uce<-c(uce,chicroiseori[(listcoordok[[i]][j,1]-1),(listcoordok[[i]][j,2]-1)]) + } + print(sum(uce)) + if (maxchi < sum(chi)) { + maxchi<-sum(chi) + suce<-sum(uce) + best<-i + } + } + } + } + print((suce/nrow(classeuce1)*100)) + listcoordok[[best]] + } + #findmaxclasse(listx,listy) + #coordok<-trouvecoordok(1) + coordok<-findmaxclasse(listx,listy) + print(coordok) + + fille<-function(classe,classeuce) { + listfm<-unique(unlist(classeuce[classeuce[,classe%/%2]==classe,])) + listf<-listfm[listfm>=classe] + listf<-unique(listf) + listf + } + + + lfilletot<-function(classeuce) { + listfille<-NULL + for (classe in 1:nrow(coordok)) { + listfille<-unique(c(listfille,fille(coordok[classe,1],classeuce))) + listfille + } + } + + listfille1<-lfilletot(classeuce1) + listfille2<-lfilletot(classeuce2) + + + #utiliser rownames comme coordonnees dans un tableau de 0 + Assignclasse<-function(classeuce,x) { + nchd<-matrix(0,ncol=ncol(classeuce),nrow=nrow(classeuce)) + for (classe in 1:nrow(coordok)) { + + clnb<-coordok[classe,x] + colnb<-clnb%/%2 + tochange<-which(classeuce[,colnb]==clnb) + for (row in 1:length(tochange)) { + nchd[tochange[row],colnb:ncol(nchd)]<-classe + } + } + nchd + } + print('commence assigne new classe') + nchd1<-Assignclasse(classeuce1,1) + #nchd1<-Assignnewclasse(classeuce1,1) + nchd2<-Assignclasse(classeuce2,2) + print('fini assign new classe') + croisep<-matrix(ncol=nrow(coordok),nrow=nrow(coordok)) + for (i in 1:nrow(nchd1)) { + if (nchd1[i,ncol(nchd1)]==0) { + nchd2[i,]<-nchd2[i,]*0 + } + if (nchd1[i,ncol(nchd1)]!=nchd2[i,ncol(nchd2)]) { + nchd2[i,]<-nchd2[i,]*0 + } + if (nchd2[i,ncol(nchd2)]==0) { + nchd1[i,]<-nchd1[i,]*0 + } + } + print('fini croise') + elim<-which(nchd1[,ncol(nchd1)]==0) + keep<-which(nchd1[,ncol(nchd1)]!=0) + n1<-nchd1[nchd1[,ncol(nchd1)]!=0,] + n2<-nchd2[nchd2[,ncol(nchd2)]!=0,] + print('debut graph') + clnb<-nrow(coordok) + print('fini') + write.csv2(nchd1[,ncol(nchd1)],uceout) + res <- list(n1 = nchd1, coord_ok = coordok, cuce1 = classeuce1, chd = chd1) + res +} +#n1<-Rchdtxt('/home/pierre/workspace/iramuteq/corpus/agir2sortie01.csv','/home/pierre/workspace/iramuteq/corpus/testuce.csv','/home/pierre/workspace/iramuteq/corpus/testuceout.csv') diff --git a/Rscripts/chdtxt.R b/Rscripts/chdtxt.R new file mode 100644 index 0000000..a6c2d4c --- /dev/null +++ b/Rscripts/chdtxt.R @@ -0,0 +1,318 @@ +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + + +#fonction pour la double classification +#cette fonction doit etre splitter en 4 ou 5 fonctions + +#Rchdtxt<-function(tableuc1,tableuc2,listeuce1,listeuce2,arbre1,arbre2,uceout) { + #source('/home/pierre/workspace/iramuteq/Rscripts/CHD.R') + + #lecture des tableaux +# data1<-read.csv2(tableuc1) +# data2<-read.csv2(tableuc2) + + #analyse des tableaux avec la fonction CHD qui doit etre sourcee avant +# chd1<-CHD(data1) +# chd2<-CHD(data2) + + #lecture des uce +# listuce1<-read.csv2(listeuce1) +# listuce2<-read.csv2(listeuce2) + + #Une fonction pour assigner une classe a chaque UCE +#AssignClasseToUce<-function(listuce,chd) { +# out<-matrix(nrow=nrow(listuce),ncol=ncol(chd)) +# for (i in 1:nrow(listuce)) { +# for (j in 1:ncol(chd)) { +# out[i,j]<-chd[(listuce[i,2]+1),j] +# } +# } +# out +#} + +AssignClasseToUce <- function(listuce, chd) { + print('assigne classe -> uce') + out<-matrix(nrow=nrow(listuce),ncol=ncol(chd)) + for (j in 1:ncol(chd)) { + out[listuce[,1]+1, j] <- chd[listuce[,2]+1, j] + } + out +} + +fille<-function(classe,classeuce) { + listfm<-unique(unlist(classeuce[classeuce[,classe%/%2]==classe,])) + listf<-listfm[listfm>=classe] + listf<-unique(listf) + listf +} +#nbt nbcl = nbt+1 tcl=((nbt+1) *2) - 2 n1[,ncol(n1)], nchd1[,ncol(nchd1)] +Rchdtxt<-function(uceout,mincl=0,classif_mode=0, nbt = 9) { + #FIXME: le nombre de classe peut etre inferieur + nbcl <- nbt + 1 + tcl <- ((nbt+1) * 2) - 2 + #Assignation des classes + classeuce1<-AssignClasseToUce(listuce1,chd1$n1) + if (classif_mode==0) { + classeuce2<-AssignClasseToUce(listuce2,chd2$n1) + } else { + classeuce2<-classeuce1 + } + + #calcul des poids (effectifs) + + makepoids<-function(classeuce,poids) { + for (classes in 2:(tcl + 1)){ + for (i in 1:ncol(classeuce)) { + if (poids[(classes-1)]1) { + maxchi<-0 + best<-NULL + for (i in 1:length(listcoordok)) { + chi<-NULL + uce<-NULL + if (nrow(listcoordok[[i]])==maxcl) { + for (j in 1:nrow(listcoordok[[i]])) { + chi<-c(chi,croise[(listcoordok[[i]][j,1]-1),(listcoordok[[i]][j,2]-1)]) + uce<-c(uce,chicroiseori[(listcoordok[[i]][j,1]-1),(listcoordok[[i]][j,2]-1)]) + } + if (maxchi < sum(chi)) { + maxchi<-sum(chi) + suce<-sum(uce) + best<-i + } + } + } + } + print((suce/nrow(classeuce1)*100)) + listcoordok[[best]] + } + #findmaxclasse(listx,listy) + #coordok<-trouvecoordok(1) + coordok<-findmaxclasse(listx,listy) + print(coordok) + + lfilletot<-function(classeuce,x) { + listfille<-NULL + for (classe in 1:nrow(coordok)) { + listfille<-unique(c(listfille,fille(coordok[classe,x],classeuce))) + listfille + } + } + + listfille1<-lfilletot(classeuce1,1) + listfille2<-lfilletot(classeuce2,2) + + #utiliser rownames comme coordonnees dans un tableau de 0 + Assignclasse<-function(classeuce,x) { + nchd<-matrix(0,ncol=ncol(classeuce),nrow=nrow(classeuce)) + for (classe in 1:nrow(coordok)) { + clnb<-coordok[classe,x] + colnb<-clnb%/%2 + nchd[which(classeuce[,colnb]==clnb), colnb:ncol(nchd)] <- classe + } + nchd + } + print('commence assigne new classe') + nchd1<-Assignclasse(classeuce1,1) + if (classif_mode==0) + nchd2<-Assignclasse(classeuce2,2) + else + nchd2<-nchd1 + print('fini assign new classe') + #croisep<-matrix(ncol=nrow(coordok),nrow=nrow(coordok)) + nchd2[which(nchd1[,ncol(nchd1)]==0),] <- 0 + nchd2[which(nchd1[,ncol(nchd1)]!=nchd2[,ncol(nchd2)]),] <- 0 + nchd1[which(nchd2[,ncol(nchd2)]==0),] <- 0 + +# for (i in 1:nrow(nchd1)) { +# if (nchd1[i,ncol(nchd1)]==0) { +# nchd2[i,]<-nchd2[i,]*0 +# } +# if (nchd1[i,ncol(nchd1)]!=nchd2[i,ncol(nchd2)]) { +# nchd2[i,]<-nchd2[i,]*0 +# } +# if (nchd2[i,ncol(nchd2)]==0) { +# nchd1[i,]<-nchd1[i,]*0 +# } +# } + print('fini croise') + elim<-which(nchd1[,ncol(nchd1)]==0) + keep<-which(nchd1[,ncol(nchd1)]!=0) + n1<-nchd1[nchd1[,ncol(nchd1)]!=0,] + n2<-nchd2[nchd2[,ncol(nchd2)]!=0,] + #clnb<-nrow(coordok) + print('fini') + write.csv2(nchd1[,ncol(nchd1)],uceout) + res <- list(n1 = nchd1, coord_ok = coordok, cuce1 = classeuce1, cuce2 = classeuce2) + res +} diff --git a/Rscripts/graph.txt b/Rscripts/graph.txt new file mode 100644 index 0000000..d2ff433 --- /dev/null +++ b/Rscripts/graph.txt @@ -0,0 +1,148 @@ + [1] 16.1654135 1.0101010 3.2258065 2.1978022 8.5714286 1.0752688 + [7] 4.5871560 1.2820513 3.8461538 1.1904762 8.2926829 1.2048193 + [13] 2.6315789 7.8651685 0.8403361 1.7543860 3.4482759 2.3255814 + [19] 3.5294118 3.8709677 1.8518519 1.1235955 2.5316456 3.0000000 + [25] 10.4000000 11.6564417 2.2988506 6.6666667 3.4883721 6.0240964 + [31] 1.2195122 1.1494253 5.2631579 3.8095238 3.4482759 5.6962025 + [37] 7.7464789 1.2658228 4.1666667 1.0309278 4.7619048 13.9534884 + [43] 1.9417476 2.3809524 2.2727273 11.2244898 1.5564202 18.8552189 + [49] 2.0080321 5.9071730 16.5254237 1.1904762 3.7735849 1.6949153 + [55] 3.7974684 35.3356890 0.4098361 3.7313433 7.0833333 2.9304029 + [61] 2.5925926 2.1276596 4.1493776 1.6326531 3.7500000 8.7837838 + [67] 5.0387597 1.2096774 10.9243697 18.6507937 15.1006711 6.3829787 + [73] 6.6433566 4.1666667 0.4032258 0.8264463 2.0491803 1.6393443 + [79] 4.4609665 2.2727273 0.8163265 5.0675676 14.2857143 15.4411765 + [85] 0.8264463 0.4166667 1.9531250 8.3682008 0.8196721 18.1451613 + [91] 11.1913357 5.1383399 2.9166667 2.4489796 0.4000000 9.3117409 + [97] 2.8571429 2.4390244 1.5384615 3.1250000 1.7543860 5.8823529 +[103] 2.9850746 5.8823529 13.3333333 2.5641026 2.7272727 16.9811321 +[109] 2.4390244 6.4516129 1.8518519 1.5151515 7.8651685 2.5000000 +[115] 2.5641026 2.8571429 7.0175439 13.3333333 1.7094017 0.9615385 +[121] 10.3448276 6.1224490 2.0408163 2.7777778 1.2048193 1.0204082 +[127] 2.7027027 2.4390244 5.0000000 0.7352941 1.5151515 4.6357616 +[133] 4.5454545 8.9655172 1.5748031 26.6666667 0.7874016 6.6225166 +[139] 0.7194245 13.1034483 4.5751634 0.7518797 1.5384615 18.4971098 +[145] 3.3557047 3.0769231 1.6260163 3.5211268 4.5977011 5.1162791 +[151] 2.3076923 0.5347594 2.3076923 2.3255814 0.7692308 3.1446541 +[157] 4.7945205 4.8387097 5.4347826 25.5952381 12.5714286 1.6000000 +[163] 3.5971223 3.6496350 1.5748031 11.3924051 5.5248619 4.1958042 +[169] 4.6875000 3.0769231 2.0000000 1.7241379 0.6024096 1.6393443 +[175] 2.5000000 1.5625000 3.3898305 2.9411765 3.1250000 3.9215686 +[181] 3.7735849 2.9411765 2.1276596 3.7500000 4.0983607 3.4883721 +[187] 3.0303030 6.4516129 10.3448276 6.5573770 1.8867925 1.0638298 +[193] 2.7522936 7.1428571 2.3809524 3.4482759 4.5454545 6.3829787 +[199] 3.3333333 6.0606061 3.8461538 7.6923077 12.5000000 7.8947368 +[205] 5.0000000 3.2258065 11.1111111 0.9803922 1.2658228 1.0989011 +[211] 2.8301887 6.7415730 2.5641026 4.2253521 1.1363636 2.0000000 +[217] 1.2658228 2.0000000 9.9415205 12.7272727 2.2727273 3.7037037 +[223] 3.8461538 0.7936508 9.5238095 6.1224490 2.0689655 7.8431373 +[229] 0.9174312 1.8518519 2.0833333 1.3513514 1.7543860 7.2580645 +[235] 7.2072072 7.6923077 3.6697248 1.4285714 7.1428571 5.2631579 +[241] 3.8461538 4.3478261 8.6206897 5.0847458 4.9019608 2.8571429 +[247] 3.7037037 4.0650407 2.2727273 1.5384615 3.7735849 3.2258065 +[253] 4.3478261 3.6697248 5.3191489 2.3255814 3.3333333 1.2987013 +[259] 5.6818182 5.8823529 1.8518519 2.1739130 3.2967033 2.0408163 +[265] 6.4102564 7.5000000 2.5000000 1.8181818 7.6271186 1.3333333 +[271] 4.0000000 4.9645390 5.7692308 3.8461538 4.8780488 2.7397260 +[277] 1.9607843 7.4074074 3.9062500 8.1818182 2.0833333 2.2222222 +[283] 8.1967213 2.0000000 2.0833333 9.7087379 2.8985507 5.6603774 +[289] 1.8181818 2.7397260 3.8461538 5.0000000 5.5555556 2.5000000 +[295] 2.9850746 1.8018018 1.3513514 1.2048193 1.6129032 6.2500000 +[301] 0.6493506 6.2500000 2.0408163 1.0752688 4.5454545 2.8571429 +[307] 1.4285714 0.8771930 1.3157895 5.0000000 6.0000000 2.4390244 +[313] 3.7500000 3.1250000 2.5641026 4.5454545 3.9215686 8.6956522 +[319] 2.0833333 8.1081081 2.7397260 0.8474576 1.7857143 5.0505051 +[325] 1.1235955 4.5454545 1.2048193 1.2820513 4.3715847 6.2500000 +[331] 8.3798883 3.2608696 2.6845638 1.2345679 0.6211180 3.8461538 +[337] 9.8130841 2.7932961 0.6134969 12.0253165 6.5326633 7.1129707 +[343] 4.4871795 3.3175355 1.2422360 0.6211180 0.6410256 2.1052632 +[349] 5.1724138 1.2658228 5.1643192 12.6168224 14.0703518 2.3529412 +[355] 6.1728395 0.6329114 15.7303371 8.3333333 4.6783626 1.9108280 +[361] 3.1446541 1.8633540 4.5714286 1.9230769 7.6923077 1.9607843 +[367] 3.1914894 0.8547009 7.6923077 4.6511628 4.7619048 2.3809524 +[373] 0.9803922 5.8823529 2.4691358 8.3333333 4.0000000 8.5365854 +[379] 4.9382716 9.2436975 3.9473684 1.7241379 1.4084507 0.9433962 +[385] 2.7210884 7.6190476 3.6363636 5.9523810 11.4285714 7.8431373 +[391] 11.2149533 4.6153846 4.2735043 6.1224490 4.2553191 9.5238095 +[397] 1.8867925 2.0202020 10.4761905 2.7777778 3.5087719 2.7027027 +[403] 0.9259259 2.0000000 4.8780488 3.1746032 2.7777778 3.3707865 +[409] 2.7777778 3.3333333 5.8823529 3.0303030 2.0833333 3.6036036 +[415] 3.0612245 3.8961039 1.0638298 1.7857143 6.0240964 1.6949153 +[421] 14.6551724 1.2345679 1.6393443 1.9230769 0.9174312 1.9867550 +[427] 1.7543860 5.2631579 1.7241379 2.2222222 6.5789474 9.4339623 +[433] 8.9285714 12.0967742 5.0420168 1.8518519 1.9607843 4.3478261 +[439] 9.1743119 6.9444444 1.6393443 3.3333333 9.8039216 5.7377049 +[445] 8.3333333 5.4545455 4.2553191 1.4285714 0.9523810 4.1666667 +[451] 7.6923077 1.7857143 5.6603774 1.8181818 5.7692308 8.6419753 +[457] 10.0000000 3.8461538 10.2803738 3.8461538 1.6806723 6.2500000 +[463] 6.2500000 3.9215686 4.5454545 5.7971014 1.8867925 1.7543860 +[469] 1.7543860 1.0989011 3.0303030 5.2631579 1.2500000 1.2048193 +[475] 1.6129032 2.8571429 0.9803922 4.6511628 1.2658228 4.2016807 +[481] 6.1728395 4.1666667 3.3333333 3.8095238 4.3956044 2.5641026 +[487] 1.3698630 1.1363636 2.1739130 3.2258065 2.0000000 2.0202020 +[493] 13.6363636 2.3809524 1.2987013 3.3898305 3.7037037 3.5714286 +[499] 4.5454545 3.7037037 3.8461538 1.6949153 4.6511628 0.9433962 +[505] 2.7027027 1.1627907 2.2727273 4.0000000 2.0202020 4.8780488 +[511] 4.0000000 1.6666667 2.4390244 4.5454545 1.6949153 5.9405941 +[517] 4.4943820 2.7027027 1.1627907 2.0833333 5.1282051 1.9801980 +[523] 1.0752688 1.7543860 4.1379310 3.7234043 0.9900990 0.6410256 +[529] 2.0202020 2.1276596 1.0000000 1.0101010 3.1007752 7.0175439 +[535] 4.2105263 3.8216561 20.0000000 3.7500000 2.1276596 2.7272727 +[541] 1.8348624 4.2553191 5.8394161 8.8435374 2.6086957 1.0204082 +[547] 3.0000000 6.1855670 3.3898305 2.3809524 1.5625000 2.0408163 +[553] 4.3478261 2.0000000 6.0000000 4.0816327 7.1428571 4.1666667 +[559] 2.0833333 5.1282051 5.9701493 9.8039216 3.2000000 3.6036036 +[565] 2.2727273 2.4390244 5.0847458 3.4482759 1.0752688 8.0645161 +[571] 2.1276596 1.9607843 4.5454545 2.5641026 4.2016807 4.8780488 +[577] 3.4482759 3.5714286 5.0847458 3.7037037 5.7471264 2.8301887 +[583] 4.3956044 4.1666667 4.7619048 2.4390244 1.1363636 2.1739130 +[589] 3.2258065 6.6666667 0.8771930 5.4794521 1.9230769 2.4390244 +[595] 3.7500000 1.1764706 1.2658228 9.5238095 2.4390244 3.3333333 +[601] 2.2388060 12.8205128 2.3255814 5.5555556 1.5873016 0.9615385 +[607] 3.3898305 2.8571429 3.9215686 6.0975610 0.9900990 1.6949153 +[613] 6.8322981 2.5974026 1.5151515 2.5974026 1.2987013 1.3888889 +[619] 4.0000000 2.6666667 5.7692308 1.0204082 2.1897810 4.6666667 +[625] 9.1603053 1.3888889 1.1235955 8.6419753 8.9285714 10.4838710 +[631] 2.1505376 5.5555556 2.5641026 10.0000000 17.8807947 6.0344828 +[637] 1.6666667 3.5398230 1.6666667 4.3103448 10.0000000 4.3795620 +[643] 7.6023392 5.2356021 7.4712644 0.8620690 0.7518797 6.4516129 +[649] 3.4782609 3.7500000 9.6969697 4.5112782 6.1946903 0.8130081 +[655] 1.6393443 10.8527132 1.8867925 3.2967033 2.6315789 12.3076923 +[661] 4.1666667 1.1904762 2.4390244 1.2820513 2.4390244 3.7500000 +[667] 12.6213592 2.9411765 20.6611570 5.1612903 6.4285714 1.2820513 +[673] 1.3333333 5.4945055 2.1739130 2.5316456 3.2258065 5.9259259 +[679] 12.2222222 2.5000000 1.1764706 3.6144578 2.9411765 3.7037037 +[685] 1.6666667 1.8867925 1.0752688 8.3333333 2.8169014 2.3255814 +[691] 4.5454545 8.0000000 3.3333333 2.0408163 3.8461538 1.6949153 +[697] 4.2553191 2.2727273 1.9047619 2.1978022 5.2631579 2.5641026 +[703] 3.5714286 4.6511628 3.4482759 3.4482759 2.0833333 1.1904762 +[709] 0.9900990 1.1494253 3.1250000 5.2631579 17.3913043 1.6949153 +[715] 2.0833333 8.4337349 0.9433962 5.2631579 1.1627907 2.2727273 +[721] 1.7241379 2.2988506 5.7471264 2.6315789 2.3809524 4.1666667 +[727] 5.1948052 3.5714286 12.9629630 3.7313433 3.3057851 3.7735849 +[733] 1.4084507 1.7857143 4.0000000 5.3097345 1.3157895 3.3333333 +[739] 3.3333333 5.1948052 9.9009901 5.7851240 0.8849558 2.5000000 +[745] 3.3898305 1.7241379 4.5454545 3.8461538 1.5384615 4.0816327 +[751] 6.2500000 2.9411765 1.1494253 3.9603960 2.2471910 5.0000000 +[757] 4.5454545 2.9411765 1.1904762 3.7037037 3.7037037 4.3209877 +[763] 2.6490066 3.7974684 8.5106383 2.3529412 2.2900763 9.5588235 +[769] 5.9405941 1.0989011 1.8348624 8.8607595 0.8474576 2.6315789 +[775] 0.9708738 9.4202899 4.4025157 1.6393443 1.9417476 2.8301887 +[781] 2.4000000 1.1494253 2.9411765 1.9801980 2.2727273 9.6000000 +[787] 5.5555556 2.8037383 1.1111111 2.1505376 3.2608696 6.5420561 +[793] 2.9411765 11.1111111 2.5000000 8.6956522 2.3255814 6.6666667 +[799] 13.3333333 1.2820513 2.0408163 12.1212121 1.2048193 3.1250000 +[805] 1.7857143 5.0000000 3.3898305 6.4935065 1.0416667 2.8571429 +[811] 1.7241379 3.8461538 8.0000000 2.3437500 4.7058824 1.3698630 +[817] 1.3698630 4.4943820 2.9702970 1.1904762 1.1363636 3.4883721 +[823] 5.8823529 2.3809524 4.4444444 4.4444444 3.7037037 2.1739130 +[829] 6.6666667 2.0000000 +[1] "arbre maximum" + [1] 16.165414 6.024096 13.953488 11.224490 16.525424 35.335689 18.650794 + [8] 15.100671 15.441176 18.145161 13.333333 16.981132 13.333333 10.344828 +[15] 26.666667 25.595238 10.344828 12.500000 11.111111 12.727273 8.620690 +[22] 9.708738 6.250000 6.250000 8.108108 8.333333 11.428571 11.214953 +[29] 14.655172 9.433962 5.263158 6.172840 13.636364 20.000000 7.142857 +[36] 6.666667 9.523810 12.820513 8.641975 17.880795 12.307692 20.661157 +[43] 12.222222 8.333333 8.000000 17.391304 8.433735 12.962963 11.111111 +[50] 8.695652 13.333333 12.121212 8.000000 diff --git a/Rscripts/multipam.R b/Rscripts/multipam.R new file mode 100644 index 0000000..e9c4c90 --- /dev/null +++ b/Rscripts/multipam.R @@ -0,0 +1,121 @@ +library(cluster) + +#data<-read.table('output/corpus_bin.csv',header=TRUE,sep='\t') + +multipam<-function(data,x=9){ + dataori=data + dtable=data + a<-0 + for (m in 1:length(dtable)) { + if (sum(dtable[m-a])==0) { + print('colonne vide') + dtable<-dtable[,-(m-a)] + a<-a+1 + } + } + for (i in 1:x) { + clnb<-(i*2) + #construction de la matrice des distances + dissmat<-dist(dtable,method='binary')#FIXME: rendre optionnelle la methode + #bipartition + pm<-pam(dissmat,diss=TRUE,k=2) + print(pm) + #listclasse<-ifelse(coordrow<0,paste('CLASSE',clnb,sep=''),paste('CLASSE',clnb+1,sep='')) + #selection de la classe la moins homogène + clusinf<-pm$clusinfo + if (i==1){ + listclust<-clusinf[,2] + } else { + listclust<-rbind(listclust,clusinf[,2]) + } + + listclasse=as.data.frame(pm$clustering)[,1] + #ajout du classement au tableau + dtable<-transform(dtable,cl1=listclasse) + print(dtable) + #lignes concernees + listrownamedtable<-rownames(dtable) + listrownamedtable<-as.integer(listrownamedtable) + newcol<-vector(length=nrow(dataori)) + #remplissage de la nouvelle colonne avec les nouvelles classes + num<-0 + for (ligne in listrownamedtable) { + num<-num+1 + newcol[ligne]<-as.vector(dtable$cl1[num])[1] + } + #recuperation de la classe precedante pour les cases vides + matori<-as.matrix(dataori) + if (i!=1) { + # options(warn=-1) + for (ligne in 1:length(newcol)) { + # print(newcol[ligne]) + if (newcol[ligne]==0) { # ce test renvoie un warning + newcol[ligne]<-matori[ligne,length(matori[1,])] + } + } + # options(warn=0) + } + #print(newcol) + #??????????????????????????????????? + #je ne comprends pas : j'ai vraiment besoin de faire ces deux actions pour ajouter la nouvelle colonne aux donnees ? + #si je ne le fais pas, ca plante... + dataori<-cbind(dataori,newcol) + dataori<-transform(dataori,newcol=newcol) + #??????????????????????????????????? + + #liste des noms de colonne + #colname<-colnames(dataori) + #nom de la derniere colonne + #colname<-colname[length(dataori)] + #la derniere colonne + colclasse<-as.character(dataori[,ncol(dataori)]) + #print(colclasse) + #les modalites de la derniere colonne + classes<-levels(as.factor(colclasse)) + print(classes) + #determination de la classe la plus grande + tailleclasse<-paste(NULL,1:length(classes)) + b<-0 + for (classe in classes) { + b<-b+1 + dtable<-dataori[dataori[length(dataori)]==classe,] + tailleclasse[b]<-length(dtable[,1]) + } + tailleclasse<-as.integer(tailleclasse) + print(tailleclasse) + plusgrand<-which(tailleclasse==max(tailleclasse)) + + #??????????????????????????????????? + #Si 2 classes ont des effectifs egaux, on prend la premiere de la liste... + if (length(plusgrand)>1) { + plusgrand<-plusgrand[1] + } + #???????????????????????????????????? + + #constuction du prochain tableau a analyser + classe<-classes[plusgrand] + dtable<-dataori[dataori[length(dataori)]==classe,] + dtable<-dtable[,1:(length(dtable)-i)] + #elimination des colonnes ne contenant que des 0 + a<-0 + for (m in 1:length(dtable)) { + if (sum(dtable[m-a])==0) { + dtable<-dtable[,-(m-a)] + a<-a+1 + } + } + } + dataori[(length(dataori)-x+1):length(dataori)] +} + +dm<-read.csv2('/home/pierre/fac/maitrise/classification/simi01.csv',row.names=1) +multipam(dm) +#dataout<-CHD(data,9) + +#library(cluster) +#dissmat<-daisy(dataout, metric = 'gower', stand = FALSE) +#chd<-diana(dissmat,diss=TRUE,) + + +#pour tester le type, passer chaque colonne en matice et faire mode(colonne) +#for (i in 1:13) {tmp<-as.matrix(data[i]);print(mode(tmp))} diff --git a/Rscripts/mysvd.R b/Rscripts/mysvd.R new file mode 100644 index 0000000..d936196 --- /dev/null +++ b/Rscripts/mysvd.R @@ -0,0 +1,42 @@ +#http://www.mail-archive.com/rcpp-devel@lists.r-forge.r-project.org/msg01513.html + +write.sparse <- function (m, to) { + ## Writes in a format that SVDLIBC can read + stopifnot(inherits(m, "dgCMatrix")) + fh <- file(to, open="w") + + wl <- function(...) cat(..., "\n", file=fh) + + ## header + wl(dim(m), length(m@x)) + + globalCount <- 1 + nper <- diff(m@p) + for(i in 1:ncol(m)) { + wl(nper[i]) ## Number of entries in this column + if (nper[i]==0) next + for(j in 1:nper[i]) { + wl(m@i[globalCount], m@x[m@p[i]+j]) + globalCount <- globalCount+1 + } + } +} +my.svd <- function(x, nu, nv) { + stopifnot(nu==nv) + rc <- system(paste("/usr/bin/svd -o /tmp/sout -d", nu, "/tmp/sparse.m")) + if (rc != 0) + stop("Couldn't run external svd code") + d <- scan("/tmp/sout-S", skip=1) +#FIXME : sometimes, libsvdc doesn't find solution with 2 dimensions, but does with 3 + if (length(d)==1) { + nu <- nu + 1 + rc <- system(paste("/usr/bin/svd -o /tmp/sout -d", nu, "/tmp/sparse.m")) + d <- scan("/tmp/sout-S", skip=1) + } + ut <- matrix(scan('/tmp/sout-Ut',skip=1),nrow=nu,byrow=TRUE) + if (nrow(ut)==3) { + ut <- ut[-3,] + } + vt <- NULL + list(d=d, u=-t(ut), v=vt) +} diff --git a/Rscripts/pamtxt.R b/Rscripts/pamtxt.R new file mode 100644 index 0000000..c3c3284 --- /dev/null +++ b/Rscripts/pamtxt.R @@ -0,0 +1,29 @@ +AssignClasseToUce<-function(listuce,chd) { + out<-matrix(nrow=nrow(listuce),ncol=ncol(chd)) + for (i in 1:nrow(listuce)) { + for (j in 1:ncol(chd)) { + out[i,j]<-chd[(listuce[i,2]+1),j] + } + } + out +} + + + +pamtxt <- function(dm, listucein, uceout, method = 'binary', clust_type = 'pam', clnb = 3) { + listuce <- read.csv2(listucein) + x <- read.csv2(dm, header = FALSE) + library(cluster) + x <- as.matrix(x) + distmat <- dist(x,method = method) + if (clust_type == 'pam') + cl <- pam(distmat, clnb, diss=TRUE) + else if (clust_type == 'fanny') + cl <- fanny(distmat, clnb, diss=TRUE, memb.exp = 1.001) + cld <- as.data.frame(cl$clustering) + colnames(cld) <- 'classes' + out <- as.data.frame(AssignClasseToUce(listuce,cld)) + write.csv2(out[,1],uceout) + result <- list(uce = out, cl = cl) + result +} diff --git a/Rscripts/plotafcm.R b/Rscripts/plotafcm.R new file mode 100644 index 0000000..f6c973c --- /dev/null +++ b/Rscripts/plotafcm.R @@ -0,0 +1,208 @@ +#library(ca) +#datadm<-read.table('/home/pierre/.hippasos/corpus_agir.csv',header=TRUE,sep='\t',quote='\"') +#data.mjca<-mjca(datadm[,-1],supcol=c(1:12),nd=6) + +tridata<-function(tabletot,nb=10,fnb=2) { + #atrier = x + #sumx<-summary(atrier) + #tabletot<-as.data.frame(sumx[3]) + tabletotf1<-tabletot[order(tabletot[,5]),] + rowkeep1<-tabletotf1[1:nb,] + rowkeep1<-rbind(rowkeep1,tabletotf1[(nrow(tabletotf1)-nb):nrow(tabletotf1),]) + rowf1names<-rownames(rowkeep1) + tabletotf2<-tabletot[order(tabletot[,8]),] + rowkeep2<-tabletotf2[1:nb,] + rowkeep2<-rbind(rowkeep2,tabletotf2[(nrow(tabletotf2)-nb):nrow(tabletotf2),]) + rowf2names<-rownames(rowkeep2) + count<-0 + for (names in 1:length(rowf1names)) { + for (names2 in 1:length(rowf2names)) { + if (rowf1names[names]==rowf2names[names2]) { + rowkeep1<-rowkeep1[-(as.numeric(names)-count),] + count<-count+1 + } + } + } + rowkeep12<-rbind(rowkeep1,rowkeep2) + if (fnb>=3) { + count<-0 + row12names<-rownames(rowkeep12) + tabletotf3<-tabletot[order(tabletot[,14]),] + rowkeep3<-tabletotf1[1:nb,] + rowkeep3<-rbind(rowkeep3,tabletotf3[(nrow(tabletotf3)-nb):nrow(tabletotf3),]) + rowf3names<-rownames(rowkeep3) + for (names in 1:length(row12names)) { + for (names3 in 1:length(rowf3names)) { + if (rowf3names[names3]==row12names[names]) { + rowkeep12<-rowkeep12[-(as.numeric(names)-count),] + count<-count+1 + } + } + } + rowkeep123<-rbind(rowkeep12,rowkeep3) + rowkeep123 + } + else { + rowkeep12 } +} +#rowkeep<-tridata(data.mjca,nb=50,fnb=3) +#matrow<-as.matrix(rowkeep) +#x<-as.numeric(matrow[,5]) +#y<-as.numeric(matrow[,8]) +#z<-as.numeric(matrow[,11]) +#labels<-matrow[,1] +#plot3d(x,y,z,xlab='',ylab='',zlab='',box=FALSE,axes=FALSE) +#text3d(x,y,z,labels) +#rgl.bg(col = c("#aaaaaa", "#99bb99"), front = "lines", box=FALSE, sphere = TRUE) +#rgl.lines(c(range(x)), c(0, 0), c(0, 0), col = "#0000ff") +#rgl.lines(c(0,0),c(range(y)),c(0,0),col = "#0000ff") +#rgl.lines(c(0,0),c(0,0),c(range(z)),col = "#0000ff") +#text3d(range(x)[2]+1,0,0,'f1') +#text3d(0,range(y)[2]+1,0,'f2') +#text3d(0,0,range(z)[2]+1,'f3') +#plot(as.numeric(matrow[,5]),as.numeric(matrow[,8])) +#text(as.numeric(matrow[,5]),as.numeric(matrow[,8]),matrow[,1]) + +tridata2<-function(tabletot,nb=5,fnb=2) { + #atrier = x + #sumx<-summary(atrier) + #tabletot<-as.data.frame(sumx[3]) + tabletotf1<-tabletot[order(tabletot[,1]),] + rowkeep1<-tabletotf1[1:nb,] + rowkeep1<-rbind(rowkeep1,tabletotf1[(nrow(tabletotf1)-nb):nrow(tabletotf1),]) + rowf1names<-rownames(rowkeep1) + tabletotf2<-tabletot[order(tabletot[,2]),] + rowkeep2<-tabletotf2[1:nb,] + rowkeep2<-rbind(rowkeep2,tabletotf2[(nrow(tabletotf2)-nb):nrow(tabletotf2),]) + rowf2names<-rownames(rowkeep2) + count<-0 + for (names in 1:length(rowf1names)) { + for (names2 in 1:length(rowf2names)) { + if (rowf1names[names]==rowf2names[names2]) { + rowkeep1<-rowkeep1[-(as.numeric(names)-count),] + count<-count+1 + } + } + } + rowkeep12<-rbind(rowkeep1,rowkeep2) + if (fnb>=3) { + count<-0 + row12names<-rownames(rowkeep12) + tabletotf3<-tabletot[order(tabletot[,3]),] + rowkeep3<-tabletotf1[1:nb,] + rowkeep3<-rbind(rowkeep3,tabletotf3[(nrow(tabletotf3)-nb):nrow(tabletotf3),]) + rowf3names<-rownames(rowkeep3) + for (names in 1:length(row12names)) { + for (names3 in 1:length(rowf3names)) { + if (rowf3names[names3]==row12names[names]) { + rowkeep12<-rowkeep12[-(as.numeric(names)-count),] + count<-count+1 + } + } + } + rowkeep123<-rbind(rowkeep12,rowkeep3) + rowkeep123 + } + else { + rowkeep12 } +} + +uncover<-function(tabletot,x) { + #tabletot=tableau des coordonnées + tabletotf1<-tabletot$table[order(tabletot$table[,x]),] + ref<-tabletotf1[1,] + distminx<-0.4 + distminy<-0.2 + i<-2 + #k=nrow(elim) + if (is.null(tabletot$elim)){ + elim<-NULL#tabletot#$elim + } else { + elim=tabletot$elim + } + while (i < nrow(tabletotf1)) { + signex<-ref[1]*tabletotf1[i,1] + signey<-ref[2]*tabletotf1[i,2] + if (signex>0) { + dist<-abs(ref)-abs(tabletotf1[i,]) + dist<-abs(dist) + print(dist) + if (abs(dist[1])0){ + if (abs(dist[2])=3) { +# count<-0 +# row12names<-rownames(rowkeep12) +# tabletotf3<-tabletot[order(tabletot[,3]),] +# rowkeep3<-tabletotf1[1:nb,] +# rowkeep3<-rbind(rowkeep3,tabletotf3[(nrow(tabletotf3)-nb):nrow(tabletotf3),]) +# rowf3names<-rownames(rowkeep3) +# for (names in 1:length(row12names)) { +# for (names3 in 1:length(rowf3names)) { +# if (rowf3names[names3]==row12names[names]) { +# rowkeep12<-rowkeep12[-(as.numeric(names)-count),] +# count<-count+1 +# } +# } +# } +# rowkeep123<-rbind(rowkeep12,rowkeep3) +# rowkeep123 +# } +# else { +# rowkeep12 } +#} diff --git a/Rscripts/simi.R b/Rscripts/simi.R new file mode 100644 index 0000000..e738a80 --- /dev/null +++ b/Rscripts/simi.R @@ -0,0 +1,297 @@ +#from proxy package +############################################################# +#a, b, c, and d are the counts of all (TRUE, TRUE), (TRUE, FALSE), (FALSE, TRUE), and (FALSE, FALSE) +# n <- a + b + c + d = nrow(x) + +make.a <- function(x) { + a <- t(x) %*% (x) + a +} + +make.b <- function(x) { + b <- t(x) %*% (1 - x) + b +} + +make.c <- function(x) { + c <- (1-t(x)) %*% x + c +} + +make.d <- function(x, a, b, c) { +#??????????? ncol ? + d <- ncol(x) - a - b - c + d +} + +########################################### +#x, a +########################################### +my.jaccard <- function(x) { + a <- make.a(x) + b <- make.b(x) + c <- make.c(x) + d <- make.d(x, a, b, c) + jac <- a / (a + b + c) + jac +} + + +prcooc <- function(x, a) { + prc <- (a / nrow(x)) + prc +} + +make.bin <- function(cs, a, i, j, nb) { + if (a[i, j] >= 1) { + ab <- a[i, j] - 1 + res <- binom.test(ab, nb, (cs[i]/nb) * (cs[j]/nb), "less") + } else { + res <- NULL + res$p.value <- 0 + } + #res <- binom.test(ab, nb, (cs[i]/nb) * (cs[j]/nb), "less") + res$p.value + } + +binom.sim <- function(x) { + a <- make.a(x) + n <- nrow(x) + cs <- colSums(x) + mat <- matrix(0,ncol(x),ncol(x)) + colnames(mat)<-colnames(a) + rownames(mat)<-rownames(a) + for (i in 1:(ncol(x)-1)) { + for (j in (i+1):ncol(x)) { + mat[j,i] <- make.bin(cs, a, i, j , n) + } + } +# print(mat) + mat +} + + +############################################ +# a, b, c +############################################ +# jaccard a, b, c a / (a + b + c) +# Kulczynski1 a, b, c a / (b + c) +# Kulczynski2 a, b, c [a / (a + b) + a / (a + c)] / 2 +# Mountford a, b, c 2a / (ab + ac + 2bc) +# Fager, McGowan a, b, c a / sqrt((a + b)(a + c)) - 1 / 2 sqrt(a + c) +# Russel, Rao a (a/n) +# Dice, Czekanowski, Sorensen a, b, c 2a / (2a + b + c) +# Mozley, Margalef a, b, c an / (a + b)(a + c) +# Ochiai a, b, c a / sqrt[(a + b)(a + c)] +# Simpson a, b, c a / min{(a + b), (a + c)} +# Braun-Blanquet a, b, c a / max{(a + b), (a + c)} + +#simple matching, Sokal/Michener a, b, c, d, ((a + d) /n) +# Hamman, a, b, c, d, ([a + d] - [b + c]) / n +# Faith , a, b, c, d, (a + d/2) / n +# Tanimoto, Rogers a, b, c, d, (a + d) / (a + 2b + 2c + d) +# Phi a, b, c, d (ad - bc) / sqrt[(a + b)(c + d)(a + c)(b + d)] +# Stiles a, b, c, d log(n(|ad-bc| - 0.5n)^2 / [(a + b)(c + d)(a + c)(b + d)]) +# Michael a, b, c, d 4(ad - bc) / [(a + d)^2 + (b + c)^2] +# Yule a, b, c, d (ad - bc) / (ad + bc) +# Yule2 a, b, c, d (sqrt(ad) - sqrt(bc)) / (sqrt(ad) + sqrt(bc)) + +BuildProf01<-function(x,classes) { + #x : donnees en 0/1 + #classes : classes de chaque lignes de x + dm<-cbind(x,cl=classes) + clnb=length(summary(as.data.frame(as.character(classes)),max=100)) + print(clnb) + print(summary(as.data.frame(as.character(classes)),max=100)) + mat<-matrix(0,ncol(x),clnb) + rownames(mat)<-colnames(x) + for (i in 1:clnb) { + dtmp<-dm[which(dm$cl==i),] + for (j in 1:(ncol(dtmp)-1)) { + mat[j,i]<-sum(dtmp[,j]) + } + } + mat +} + +do.simi <- function(x, method = 'cooc',seuil = NULL, p.type = 'tkplot',layout.type = 'frutch', max.tree = TRUE, coeff.vertex=NULL, coeff.edge = NULL, minmaxeff=c(NULL,NULL), vcexminmax= c(NULL,NULL), cex = 1, coords = NULL) { + mat.simi <- x$mat + mat.eff <- x$eff + v.label <- colnames(mat.simi) + g1<-graph.adjacency(mat.simi,mode="lower",weighted=TRUE) + g.toplot<-g1 + weori<-get.edge.attribute(g1,'weight') + if (max.tree) { + invw<-1/weori + E(g1)$weight<-invw + g.max<-minimum.spanning.tree(g1) + E(g.max)$weight<-1/E(g.max)$weight + g.toplot<-g.max + } + + if (!is.null(seuil)) { + if (seuil >= max(mat.simi)) seuil <- max(mat.simi)-1 + vec<-vector() + w<-E(g.toplot)$weight + tovire <- which(w<=seuil) + g.toplot <- delete.edges(g.toplot,(tovire-1)) + for (i in 0:(length(V(g.toplot))-1)) { + if (length(neighbors(g.toplot,i))==0) { + vec<-append(vec,i) + } + } + g.toplot <- delete.vertices(g.toplot,vec) + v.label <- V(g.toplot)$name + if (!is.logical(vec)) mat.eff <- mat.eff[-(vec+1)] + } + + if (!is.null(minmaxeff[1])) { + eff<-norm.vec(mat.eff,minmaxeff[1],minmaxeff[2]) + } else { + eff<-coeff.vertex + } + if (!is.null(vcexminmax[1])) { + label.cex = norm.vec(mat.eff, vcexminmax[1], vcexminmax[2]) + } else { + label.cex = cex + } + if (!is.null(coeff.edge)) { + we.width <- norm.vec(abs(E(g.toplot)$weight), coeff.edge[1], coeff.edge[2]) + #we.width <- abs((E(g.toplot)$weight/max(abs(E(g.toplot)$weight)))*coeff.edge) + } else { + we.width <- NULL + } + if (method != 'binom') { + we.label <- round(E(g.toplot)$weight,1) + } else { + we.label <- round(E(g.toplot)$weight,3) + } + if (p.type=='rgl') { + nd<-3 + } else { + nd<-2 + } + if (is.null(coords)) { + if (layout.type == 'frutch') + lo <- layout.fruchterman.reingold(g.toplot,dim=nd)#, weightsA=E(g.toplot)$weight) + if (layout.type == 'kawa') + lo <- layout.kamada.kawai(g.toplot,dim=nd) + if (layout.type == 'random') + lo <- layout.random(g.toplot,dim=nd) + if (layout.type == 'circle' & p.type != 'rgl') + lo <- layout.circle(g.toplot) + if (layout.type == 'circle' & p.type == 'rgl') + lo <- layout.sphere(g.toplot) + if (layout.type == 'graphopt') + lo <- layout.graphopt(g.toplot) + } else { + lo <- coords + } + out <- list(graph = g.toplot, mat.eff = mat.eff, eff = eff, mat = mat.simi, v.label = v.label, we.width = we.width, we.label=we.label, label.cex = label.cex, layout = lo) +} + +plot.simi <- function(graph.simi, p.type = 'tkplot',filename=NULL, vertex.col = 'red', edge.col = 'black', edge.label = TRUE, vertex.label=TRUE, vertex.label.color = 'black', vertex.label.cex= NULL, vertex.size=NULL, leg=NULL, width = 800, height = 800, alpha = 0.1, cexalpha = FALSE, movie = NULL) { + mat.simi <- graph.simi$mat + g.toplot <- graph.simi$graph + if (is.null(vertex.size)) { + vertex.size <- graph.simi$eff + } else { + vertex.size <- vertex.size + } + we.width <- graph.simi$we.width + if (vertex.label) { + #v.label <- vire.nonascii(graph.simi$v.label) + v.label <- graph.simi$v.label + } else { + v.label <- NA + } + if (edge.label) { + we.label <- graph.simi$we.label + } else { + we.label <- NA + } + lo <- graph.simi$layout + if (!is.null(vertex.label.cex)) { + label.cex<-vertex.label.cex + } else { + label.cex = graph.simi$label.cex + } + if (cexalpha) { + alphas <- norm.vec(label.cex, 0.5,1) + nvlc <- NULL + if (length(vertex.label.color) == 1) { + for (i in 1:length(alphas)) { + nvlc <- append(nvlc, adjustcolor(vertex.label.color, alpha=alphas[i])) + } + } else { + for (i in 1:length(alphas)) { + nvlc <- append(nvlc, adjustcolor(vertex.label.color[i], alpha=alphas[i])) + } + } + vertex.label.color <- nvlc + } + if (p.type=='nplot') { + #print('ATTENTION - PAS OPEN FILE') + open_file_graph(filename, width = width, height = height) + par(mar=c(2,2,2,2)) + if (!is.null(leg)) { + layout(matrix(c(1,2),1,2, byrow=TRUE),widths=c(3,lcm(7))) + par(mar=c(2,2,1,0)) + } + par(pch=' ') + plot(g.toplot,vertex.label='', edge.width=we.width, vertex.size=vertex.size, vertex.color=vertex.col, vertex.label.color='white', edge.label=we.label, edge.label.cex=cex, edge.color=edge.col, vertex.label.cex = 0, layout=lo) + txt.layout <- layout.norm(lo, -1, 1, -1, 1, -1, 1) + #txt.layout <- txt.layout[order(label.cex),] + #vertex.label.color <- vertex.label.color[order(label.cex)] + #v.label <- v.label[order(label.cex)] + #label.cex <- label.cex[order(label.cex)] + text(txt.layout[,1], txt.layout[,2], v.label, cex=label.cex, col=vertex.label.color) + if (!is.null(leg)) { + par(mar=c(0,0,0,0)) + plot(0, axes = FALSE, pch = '') + legend(x = 'center' , leg$unetoile, fill = leg$gcol) + } + dev.off() + return(lo) + } + if (p.type=='tkplot') { + id <- tkplot(g.toplot,vertex.label=v.label, edge.width=we.width, vertex.size=vertex.size, vertex.color=vertex.col, vertex.label.color=vertex.label.color, edge.label=we.label, edge.color=edge.col, layout=lo) + coords = tkplot.getcoords(id) + ok <- try(coords <- tkplot.getcoords(id), TRUE) + while (is.matrix(ok)) { + ok <- try(coords <- tkplot.getcoords(id), TRUE) + Sys.sleep(0.5) + } + tkplot.off() + return(coords) + } + + if (p.type == 'rgl') { + library('rgl') + rglplot(g.toplot,vertex.label= vire.nonascii(v.label), edge.width=we.width/10, vertex.size=0.01, vertex.color=vertex.col, vertex.label.color="black", edge.color = edge.col, layout=lo) + los <- layout.norm(lo, -1, 1, -1, 1, -1, 1) + rgl.spheres(los, col = vertex.col, radius = vertex.size/100, alpha = alpha) + rgl.bg(color = c('white','black')) + if (!is.null(movie)) { + require(tcltk) + ReturnVal <- tkmessageBox(title="RGL 3 D",message="Cliquez pour commencer le film",icon="info",type="ok") + + movie3d(spin3d(axis=c(0,1,0),rpm=6), movie = 'film_graph', frames = "tmpfilm", duration=10, clean=TRUE, top = TRUE, dir = movie) + ReturnVal <- tkmessageBox(title="RGL 3 D",message="Film fini !",icon="info",type="ok") + } + #play3d(spin3d(axis=c(0,1,0),rpm=6)) + require(tcltk) + ReturnVal <- tkmessageBox(title="RGL 3 D",message="Cliquez pour fermer",icon="info",type="ok") + rgl.close() + # while (rgl.cur() != 0) + # Sys.sleep(0.5) + } +} + + +graph.word <- function(mat.simi, index) { + nm <- matrix(0, ncol = ncol(mat.simi), nrow=nrow(mat.simi), dimnames=list(row.names(mat.simi), colnames(mat.simi))) + nm[,index] <- mat.simi[,index] + nm[index,] <- mat.simi[index,] + nm +} diff --git a/Rscripts/simied.R b/Rscripts/simied.R new file mode 100644 index 0000000..6ac71cb --- /dev/null +++ b/Rscripts/simied.R @@ -0,0 +1,311 @@ +############################################################# +makesimi<-function(dm){ + a<-dm + m<-matrix(0,ncol(dm),ncol(dm)) + rownames(m)<-colnames(a) + colnames(m)<-colnames(a) + eff<-colSums(a) + for (col in 1:(ncol(a)-1)){ + for (colc in (col+1):ncol(a)){ + ta<-table(a[,col],a[,colc]) + if (ncol(ta)==1 & colnames(ta)[1]=='0') { + ta<-cbind(ta,'1'=c(0,0)) + } else if (ncol(ta)==1 & colnames(ta)[1]=='1') { + ta<-cbind('0'=c(0,0),t) + } else if (nrow(ta)==1 & rownames(ta)[1]=='0'){ + ta<-rbind(ta,'1'=c(0,0)) + } else if (nrow(ta)==1 & rownames(ta)[1]=='1') { + ta<-rbind('0'=c(0,0),ta) + } + #m[colc,col]<-length(which((a[,col]==1) & (a[,colc]==1))) + m[colc,col]<-ta[2,2] + m[col,colc]<-m[colc,col] + } + } + out<-list(mat=m,eff=eff) +} + + +makesimip<-function(dm){ + a<-dm + m<-matrix(0,ncol(dm),ncol(dm)) + rownames(m)<-colnames(a) + colnames(m)<-colnames(a) + eff<-colSums(a) + for (col in 1:(ncol(a)-1)){ + for (colc in (col+1):ncol(a)){ + ta<-table(a[,col],a[,colc]) + if (ncol(ta)==1 & colnames(ta)[1]=='0') { + ta<-cbind(ta,'1'=c(0,0)) + } else if (ncol(ta)==1 & colnames(ta)[1]=='1') { + ta<-cbind('0'=c(0,0),t) + } else if (nrow(ta)==1 & rownames(ta)[1]=='0'){ + ta<-rbind(ta,'1'=c(0,0)) + } else if (nrow(ta)==1 & rownames(ta)[1]=='1') { + ta<-rbind('0'=c(0,0),ta) + } + #m[colc,col]<-length(which((a[,col]==1) & (a[,colc]==1))) + m[colc,col]<-ta[2,2] + m[col,colc]<-m[colc,col] + } + } + m<-round((m/nrow(a))*100,digits=0) + out<-list(mat=m,eff=eff) +} + + +makejac<-function(dm){ + a<-dm + m<-matrix(0,ncol(dm),ncol(dm)) + rownames(m)<-colnames(a) + colnames(m)<-colnames(a) + eff<-colSums(a) + for (col in 1:(ncol(a)-1)){ + for (colc in (col+1):ncol(a)){ + ta<-table(a[,col],a[,colc]) + if (ncol(ta)==1 & colnames(ta)[1]=='0') { + ta<-cbind(ta,'1'=c(0,0)) + } else if (ncol(ta)==1 & colnames(ta)[1]=='1') { + ta<-cbind('0'=c(0,0),t) + } else if (nrow(ta)==1 & rownames(ta)[1]=='0'){ + ta<-rbind(ta,'1'=c(0,0)) + } else if (nrow(ta)==1 & rownames(ta)[1]=='1') { + ta<-rbind('0'=c(0,0),ta) + } + m[colc,col]<-(ta[2,2]/(ta[1,2]+ta[2,1]+ta[2,2]))*100 + #m[colc,col]<-(length(which((a[,col]==1) & (a[,colc]==1)))/(eff[col]+eff[colc]-length(which((a[,col]==1) & (a[,colc]==1)))))*100 + m[col,colc]<-m[colc,col] + } + } + out<-list(mat=m,eff=eff) +} + +makesimipond<-function(dm) { + a<-dm + m<-matrix(0,ncol(dm),ncol(dm)) + rownames(m)<-colnames(dm) + colnames(m)<-colnames(dm) + eff<-colSums(a) + #a<-t(a) + #print(a) + #lt<-list() + for (col in 1:(ncol(a)-1)){ + for (colc in (col+1):ncol(a)){ + m[colc,col]<-length(which((a[,col]>1) & (a[,colc]>1))) + m[col,colc]<-m[colc,col] + } + } + out<-list(mat=m,eff=eff) +} + +BuildProf01<-function(x,classes) { + #x : donnees en 0/1 + #classes : classes de chaque lignes de x + dm<-cbind(x,cl=classes) + clnb=length(summary(as.data.frame(as.character(classes)),max=100)) + print(clnb) + print(summary(as.data.frame(as.character(classes)),max=100)) + mat<-matrix(0,ncol(x),clnb) + #print(mat) + rownames(mat)<-colnames(x) + for (i in 1:clnb) { + dtmp<-dm[which(dm$cl==i),] + for (j in 1:(ncol(dtmp)-1)) { + #print(rownames(dtmp[j,])) + mat[j,i]<-sum(dtmp[,j]) + } + } + mat +} +################################################################### + +source('/home/pierre/workspace/iramuteq/Rscripts/chdfunct.R') + +#} +print('lecture') + + +##################################################################### +#suede enfance en danger +#ed<-read.csv2('/home/pierre/fac/suede/resultats/enfance_en_danger01.csv') +#coop<-read.csv2('/home/pierre/fac/suede/resultats/cooperation01.csv') +#as<-read.csv2('/home/pierre/fac/suede/resultats/as01.csv') +#ed<-ed[,-ncol(ed)] +#coop<-coop[,-ncol(coop)] +#as<-as[,-ncol(as)] +##tot<-tot[,-ncol(tot)] +#tot<-cbind(ed,coop) +#tot<-cbind(tot,as) +#tot<-as +# +#tot<-read.csv2('/home/pierre/fac/suede/resultats/as_catper01.csv',row.names=1) +##tot<-read.csv2('/home/pierre/fac/suede/resultats/swedish_as601.csv',row.names=1) +##print(tot) +#tot<-tot[,-ncol(tot)] +#pn<-tot[nrow(tot),] +#tot<-tot[-nrow(tot),] +#prof<-BuildProf01(tab,grp[,1]) +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] + +########################################################## +#SUP +ens<-read.csv2('/home/pierre/fac/SUP/resultats/enseignant01.csv',row.names=1) +vp<-read.csv2('/home/pierre/fac/SUP/resultats/vieprivee01.csv',row.names=1) +tt<-read.csv2('/home/pierre/fac/SUP/resultats/asso_ens_vp01.csv',row.names=1) +ens<-ens[,-ncol(ens)] +vp<-vp[,-ncol(vp)] +tot<-tt[,-ncol(tt)] +print(nrow(tot)) +gr<-vector(mode='integer',length=nrow(tot)) +gr[1:41]<-1 +gr[42:82]<-2 + +mat<-BuildProf01(tot,cl=gr) +prof<-AsLexico(mat) +chis<-prof[[2]] +print(chis) +#tot<-tot[,-ncol(tot)] +#print(tot) +#as<-vector(mode='integer',length=ncol(tot)) +#as[1:ncol(ens)]<-'red' +#as[ncol(ens)+1:ncol(tot)]<-'green' +#print('liste des classes') +#listclasse<-vector(mode='integer',length=ncol(tab)) +for (line in 1:nrow(chistabletot)) { + if (max(chistabletot[line,])>2) { + listclasse[line]<-as.vector(which.max(chistabletot[line,])) + } else { + listclasse[line]<-3 + } +} +#classes<-listclasse +#classes<-classes[1:cag] +#print(classes) +#tot<-cbind(info,biblio) +#tot<-cbind(tot,rechdoc) + + + +print('matrice de similitude') +mindus<-makesimip(tot) +m<-mindus$m +eff<-mindus$eff + +cn<-paste(colnames(m),eff,sep=' ') +#mateff<-makesimipond(ministre) +#mateff<-makesimi(tot) +#mateff<-makejac(tot) +#m<-mateff$mat +#eff<-mateff$eff +#m<-as.matrix(dist(t(ministre),method='binary',upper=TRUE, diag=TRUE)) +#m<-as.matrix(simil(ministre), method='Jaccard', upper=TRUE, diag=TRUE, by_rows=FALSE) +#print(nrow(m)) +#print(ncol(m)) +#print(length(colnames(ministre))) +#colnames(m)<-colnames(ministre) +#rownames(m)<-colnames(ministre) +#eff<-colSums(ministre) +#mateffp<-makesimi(ministre) +#mateffp<-makesimipond(ministre) +#m<-mateffp$mat +#eff<-mateffp$eff + +#matave<-makesimi(ministre) +#m<-matave$m +#eff<-matave$eff + +print('couleur') +#rain<-rainbow(3) +#append(rain,'black') +rain<-c("green","red","white","blue")#"yellow","pink","black")#green","blue","red","black") +vcol<-vector(mode='integer',length=length(eff)) +vcolb<-vector(mode='integer',length=length(eff)) +#classes<-classes[1:93] +#classes<-grp +for (i in 1:nrow(chis)) { + vcolb[i]<-which.max(chis[i,]) +} +print(vcolb) +for (i in 1:length(eff)){ + #if (as.integer(pn[i])==0){ + # pn[i]<-4 + # print('zero') + #} + #vcol[i]<-rain[as.integer(pn[i])] + vcol[i]<-rain[as.integer(vcolb[i])] + } +#ll<-which(effp>=0.5) +#for (i in which(effp>=0.5)) { +# if (i<=10) { +# vcol[i]<-"blue" +# } else { +# vcol[i]<-"pink" +# } +#} +#print('length(vcol)') +#print(length(vcol)) +#vcol[1:cchaud]<-rain[1] +#vcol[(cchaud+1):(cchaud+cop)]<-rain[2] +#vcol[(cchaud+cop+1):length(eff)]<-rain[3] +#print(classes) +print('premier graph') +library(igraph) +#sink('graph.txt') +g1<-graph.adjacency(m,mode="lower",weighted=TRUE) + +#maxtree<-maxgraph(g1) +#plot(maxtree, layout=layout.circle) +#lo<-layout.circle(g1) +eff<-(eff/max(eff)) +weori<-get.edge.attribute(g1,'weight') +#tdel<-which(weori<3) +we<-(weori/max(weori))*4 +print('arbre maximum') +invw<-1/weori +E(g1)$weight<-invw +g3<-minimum.spanning.tree(g1) +E(g3)$weight<-1/E(g3)$weight +#print(E(g3)$weight) +#sink() +#g3<-g1 +wev<-eff*30 +wee<-(E(g3)$weight/max(E(g3)$weight))*10 +weori<-E(g3)$weight +print('layout') +#lo<-layout.kamada.kawai(g3,dim=3) +lo<-layout.fruchterman.reingold(g3,dim=3) +print('lo') +#print(nrow(lo)) +#lo<-layout.sphere(g3) +#lo<-cbind(lo,eff) +vsize<-vector(mode='integer',length=nrow(lo)) +#print(we) +#ecount(g1) +#g2<-simplify(g1) +#g2<-delete.edges(g2,tdel-1) +#tmax<-clusters(g1) +#print(tmax) +#we<-we[-tdel] +#weori<-weori[-tdel] +#plot(g1,vertex.label=colnames(m),edge.width=get.edge.attribute(g1,'weight'),layout=layout.circle,vertex.shape='none') +#igraph.par('print.edge.attributes',TRUE) +#plot(g2,vertex.label=colnames(m),vertex.size=vsize,vertex.color=vcol,edge.width=we,layout=lo)#,vertex.shape='none')#,edge.label=weori) +#rglplot(g3,vertex.label=colnames(m),edge.width=we,vertex.size=vsize,vertex.label.color=vcol,layout=lo,vertex.shape='none')#,edge.label=weori) +print('plot') +tkplot(g3,vertex.label=cn,edge.width=wee,vertex.size=wev,vertex.color=vcol,vertex.label.color="black",edge.label=weori,layout=lo)#,vcolb vertex.label.dist=1)#,vertex.shape='none')#,edge.label=weori) +#},vertex.color=vcol +#rgl.bg(sphere=FALSE,color=c("black","white")) +#vertex.color=vcol,vertex.label.color=vcol,edge.label=weori, +#rgl.viewpoint(zoom=0.6) +#movie3d(spin3d(axis=c(0,1,0),rpm=6),10,dir='/home/pierre/workspace/iramuteq/corpus/',movie="vero_cooc_explo",clean=TRUE,convert=TRUE,fps=20) +#tkplot(g1,vertex.label=colnames(m),layout=layout.circle,vertex.shape='rectangle') +#rglplot(g1,vertex.label=colnames(m),layout=layout.circle) +#g1<-graph(m) +#tkplot(g1) + + + + + +#Ministre diff --git a/Rscripts/simiold.R b/Rscripts/simiold.R new file mode 100644 index 0000000..918d3ca --- /dev/null +++ b/Rscripts/simiold.R @@ -0,0 +1,502 @@ +############################################################# +makesimi<-function(dm){ + a<-dm + m<-matrix(0,ncol(dm),ncol(dm)) + rownames(m)<-colnames(a) + colnames(m)<-colnames(a) + eff<-colSums(a) + for (col in 1:(ncol(a)-1)){ + for (colc in (col+1):ncol(a)){ + ta<-table(a[,col],a[,colc]) + if (ncol(ta)==1 & colnames(ta)[1]=='0') { + ta<-cbind(ta,'1'=c(0,0)) + } else if (ncol(ta)==1 & colnames(ta)[1]=='1') { + ta<-cbind('0'=c(0,0),t) + } else if (nrow(ta)==1 & rownames(ta)[1]=='0'){ + ta<-rbind(ta,'1'=c(0,0)) + } else if (nrow(ta)==1 & rownames(ta)[1]=='1') { + ta<-rbind('0'=c(0,0),ta) + } + #m[colc,col]<-length(which((a[,col]==1) & (a[,colc]==1))) + m[colc,col]<-ta[2,2] + m[col,colc]<-m[colc,col] + } + } + out<-list(mat=m,eff=eff) +} + +makejac<-function(dm){ + a<-dm + m<-matrix(0,ncol(dm),ncol(dm)) + rownames(m)<-colnames(a) + colnames(m)<-colnames(a) + eff<-colSums(a) + for (col in 1:(ncol(a)-1)){ + for (colc in (col+1):ncol(a)){ + ta<-table(a[,col],a[,colc]) + if (ncol(ta)==1 & colnames(ta)[1]=='0') { + ta<-cbind(ta,'1'=c(0,0)) + } else if (ncol(ta)==1 & colnames(ta)[1]=='1') { + ta<-cbind('0'=c(0,0),t) + } else if (nrow(ta)==1 & rownames(ta)[1]=='0'){ + ta<-rbind(ta,'1'=c(0,0)) + } else if (nrow(ta)==1 & rownames(ta)[1]=='1') { + ta<-rbind('0'=c(0,0),ta) + } + m[colc,col]<-(ta[2,2]/(ta[1,2]+ta[2,1]+ta[2,2]))*100 + #m[colc,col]<-(length(which((a[,col]==1) & (a[,colc]==1)))/(eff[col]+eff[colc]-length(which((a[,col]==1) & (a[,colc]==1)))))*100 + m[col,colc]<-m[colc,col] + } + } + out<-list(mat=m,eff=eff) +} + +makesimipond<-function(dm) { + a<-dm + m<-matrix(0,ncol(dm),ncol(dm)) + rownames(m)<-colnames(dm) + colnames(m)<-colnames(dm) + eff<-colSums(a) + #a<-t(a) + #print(a) + #lt<-list() + for (col in 1:(ncol(a)-1)){ + for (colc in (col+1):ncol(a)){ + m[colc,col]<-length(which((a[,col]>1) & (a[,colc]>1))) + m[col,colc]<-m[colc,col] + } + } + out<-list(mat=m,eff=eff) +} + +BuildProf01<-function(x,classes) { + #x : donnees en 0/1 + #classes : classes de chaque lignes de x + dm<-cbind(x,cl=classes) + clnb=length(summary(as.data.frame(as.character(classes)),max=100)) + print(clnb) + print(summary(as.data.frame(as.character(classes)),max=100)) + mat<-matrix(0,ncol(x),clnb) + #print(mat) + rownames(mat)<-colnames(x) + for (i in 1:clnb) { + dtmp<-dm[which(dm$cl==i),] + for (j in 1:(ncol(dtmp)-1)) { + #print(rownames(dtmp[j,])) + mat[j,i]<-sum(dtmp[,j]) + } + } + mat +} +################################################################### + +source('/home/pierre/workspace/iramuteq/Rscripts/chdfunct.R') +#info<-read.csv2(file('/home/pierre/fac/etudiant/crepin/simi/info01.csv',encoding='latin1'),row.names=1) +#cinf<-ncol(info) +#biblio<-read.csv2(file('/home/pierre/fac/etudiant/crepin/simi/biblio01.csv',encoding='latin1'),row.names=1) +#cbib<-ncol(biblio) +#rechdoc<-read.csv2(file('/home/pierre/fac/etudiant/crepin/simi/recherdoc01.csv',encoding='latin1'),row.names=1) +#crech<-ncol(rechdoc) + +######################@@ +#MV +######################### +#chaud<-read.csv2('/home/pierre/fac/etudiant/sab/Chaudronnier_pour_MV01.csv',row.names=1) +##cchaud<-ncol(chaud) +#op<-read.csv2('/home/pierre/fac/etudiant/sab/ocn_pour_mv01.csv',row.names=1) +##cop<-ncol(op) +#soud<-read.csv2('/home/pierre/fac/etudiant/sab/soudeur_pour_mv01.csv',row.names=1) +##csoud<-ncol(soud) +#indus<-read.csv2('/home/pierre/fac/etudiant/sab/metier_indus01.csv',row.names=1) +##cmindus<-ncol(mindus) +#infor<-read.csv2('/home/pierre/fac/etudiant/sab/Informaticien_pour_MV01.csv',row.names=1) +##cinfor<-ncol(infor) +#trav<-read.csv2('/home/pierre/fac/etudiant/sab/travail_pour_mv01.csv',row.names=1) +##ctrav<-ncol(trav) +#tot<-cbind(chaud,op) +#tot<-cbind(tot,soud) +#tot<-cbind(tot,indus) +## +#list_data<-list('a'=chaud, 'b'=soud,'c'=infor,'d'=trav) +#tot<-cbind(chaud,op) +#tot<-chaud +##tot<-cbind(tot,infor) +##tot<-cbind(tot,trav) +#mv<-read.csv2('/home/pierre/fac/etudiant/sab/chaud_soud_opn_metierindus01.csv') +#mv<-mv[,-ncol(mv)] +#grp<-read.csv2('/home/pierre/fac/etudiant/sab/grp2.csv') +#tab<-tot + +print('passe ici') +#tot<-mv[,-ncol(mv)] +#tot<-trav +################################################# +#AGIR +#ag<-read.csv2('/home/pierre/workspace/iramuteq/corpus/tableau_agir2_recod_alc_entree_pourpassage_temp_AlcesteQuest_1/Act01.csv') +#cag<-ncol(ag) +#load('/home/pierre/workspace/iramuteq/corpus/tableau_agir2_recod_alc_entree_pourpassage_temp_AlcesteQuest_1/RData.RData') + +############################################################### +#Vero +#tot<-read.csv2('/home/pierre/fac/etudiant/crepin/simi/simitot01.csv') +#grp<-vector(mode='integer',length=ncol(tot)) +#grp[1:54]<-1 +#grp[55:108]<-2 +#grp[109:162]<-3 +#prof<-BuildProf01(tot,grp[,1]) +##prof<-prof[-nrow(prof),] +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] + +################################################################### +#Steph + +#tot<-read.csv2('/home/pierre/fac/etudiant/netto/simi-27-03-09/prof_inf_ecole_priv01.csv') +#tot<-tot[,-ncol(tot)] +#grp<-vector(mode='integer',length=nrow(tot)) +#grp[1:245]<-1 +#grp[246:490]<-2 +#prof<-BuildProf01(tot,grp) +#print(nrow(prof)) +##print(prof) +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] + +#tot<-read.csv2('/home/pierre/fac/etudiant/netto/simi-27-03-09/etu_inf_pro_priv01.csv') +#print(tot[,ncol(tot)]) +#tot<-tot[,-ncol(tot)] +#grp<-vector(mode='integer',length=nrow(tot)) +#grp[1:175]<-1 +#grp[176:350]<-2 +#prof<-BuildProf01(tot,grp) +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] + +#tot<-read.csv2('/home/pierre/fac/etudiant/netto/simi-27-03-09/prof_etu_inf_pro01.csv') +#print(tot[,ncol(tot)]) +#tot<-tot[,-ncol(tot)] +#grp<-vector(mode='integer',length=nrow(tot)) +#grp[1:245]<-1 +#grp[246:419]<-2 +#prof<-BuildProf01(tot,grp) +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] + +####################################################### +#grp ideal 2008 +#tot<-read.csv2('/home/pierre/workspace/iramuteq/corpus/grpiedal2008_01.csv') +#print(tot[,ncol(tot)]) +#grp<-vector(mode='integer',length=ncol(tot)) +#grp[1:10]<-1 +#grp[11:20]<-2 +#prof<-BuildProf01(tot,grp) +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] + +#ministre<-read.csv2('/home/pierre/workspace/iramuteq/corpus/Ministres_AFCUCI_3/TableCont.csv',header=TRUE) +#eff<-colSums(ministre) +#ministre<-ministre[,-which(eff<100)] +# +##ministre<-(ministre/colSums(ministre))*1000 +#print(ncol(ministre)) +#pm<-t(ministre) +#outp<-AsLexico(pm) +#chistabletot<-outp[[2]] +#ministre<-read.csv2('/home/pierre/workspace/iramuteq/corpus/Ministres_Alceste_1/TableUc1.csv',header=TRUE) +#load('/home/pierre/workspace/iramuteq/corpus/Ministres_Alceste_1/RData.RData') +#ministre<-ministre[,-which(eff<200)] +#uce<-read.csv2('/home/pierre/workspace/iramuteq/corpus/Ministres_Alceste_1/listeUCE1.csv') +#uc<-matrix(0,nrow(ministre),1) +#uc<-list() +#print(uce) +#print(nrow(n1)) +#for (i in 1:nrow(uce)) { +# uc[[as.integer(uce[i,2])+1]]<-n1[i,ncol(n1)] +#} +#print(nrow(ministre)) +#grp<-unlist(uc) +#prof<-BuildProf01(ag,n1[,ncol(n1)]) +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] + +####################### +#Steph +######################### +#priv<-read.csv2('/home/pierre/workspace/iramuteq/corpus/simi/info_priv01.csv') +#pro<-read.csv2('/home/pierre/workspace/iramuteq/corpus/simi/info_pro01.csv') +#cpriv<-ncol(priv) +#tot<-cbind(priv,pro) +#tot<-read.csv2('/home/pierre/workspace/iramuteq/corpus/simi/priv_pro_ens01.csv') +#print('tot') +#print(ncol(tot)) + + +#grp<-vector(mode='integer',length=nrow(tot)) +#grp[1:245]<-1 +#grp[246:nrow(tot)]<-2 +#grp[491:635]<-3 +#prof<-BuildProf01(tot,grp) +#prof<-prof[,-4] +#print(prof) +#print(nrow(prof)) +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] +#cs<-colSums(prof) +#prof<-prof/cs +#l<-vector(mode='integer',length=nrow(prof)) +#for (line in 1:nrow(prof)) { +# l[line]<-as.integer(which.max(prof[line,1:2])) +#} +print('lecture') +#chistabletot<-chistabletot[1:ncol(ministre),] +#print(nrow(chistabletot)) +#sc<-colSums(as.matrix(ministre)) +#print(length(sc)) +#outc<-which(sc>0) +#print(length(outc)) +#ministre<-ministre[,outc] +#print(ncol(ministre)) +#prof<-BuildProf01(ministre,grp) +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] +#chistabletot<-chistabletot[outc,] +#print(nrow(chistabletot)) +#ave<-read.csv2('/home/pierre/workspace/iramuteq/corpus/Avenir_Alceste_1/TableUc1.csv',header=TRUE) +#load('/home/pierre/workspace/iramuteq/corpus/Avenir_Alceste_1/RData.RData') +#chistabletot<-chistabletot[1:cag,] + +#print(grp) +#grp<-as.character(grp[,1]) +#titre<-c("chaudronnier","soudeur","informaticien","travail") +#count<-0 +#split.screen(c(2,2)) +#for (tab in list_data) { +#count<-count+1 +#screen(count) +#par(cex=0.7) +#grp<-rbind(grp,grp) +#grp<-rbind(grp,grp) +#print(ncol(tab)) + +##################################################################### +#suede enfance en danger +tot<-read.csv2('/home/pierre/fac/suede/resultats/cat_asso1_01.csv',row.names=1) + +#prof<-BuildProf01(tab,grp[,1]) +#outp<-AsLexico(prof) +#chistabletot<-outp[[2]] + +#print('liste des classes') +#listclasse<-vector(mode='integer',length=ncol(tab)) +#for (line in 1:nrow(chistabletot)) { +# if (max(chistabletot[line,])>0) { +# listclasse[line]<-as.vector(which.max(chistabletot[line,])) +# } else { +# listclasse[line]<-3 +# } +#} +#classes<-listclasse +#classes<-classes[1:cag] +#print(classes) +#tot<-cbind(info,biblio) +#tot<-cbind(tot,rechdoc) +listclasse<-vector(mode='integer',length=ncol(dt)) +for (line in 1:nrow(chistabletot)) { + if ((max(chistabletot[line,])>3.84) || (min(prof[line,])==0)) { + if (max(chistabletot[line,])>3.84) { + listclasse[line]<-as.vector(which.max(chistabletot[line,])) + } + if (min(prof[line,])==0) { + print('zero') + listclasse[line]<-as.vector(which.max(prof[line,])) + } + } else { + listclasse[line]<-3 + } +} + +print('matrice de similitude') +mindus<-makesimi(tot) +m<-mindus$m +eff<-mindus$eff + +#mateff<-makesimipond(ministre) +#mateff<-makesimi(tot) +#mateff<-makejac(tot) +#m<-mateff$mat +#eff<-mateff$eff +#m<-as.matrix(dist(t(ministre),method='binary',upper=TRUE, diag=TRUE)) +#m<-as.matrix(simil(ministre), method='Jaccard', upper=TRUE, diag=TRUE, by_rows=FALSE) +#print(nrow(m)) +#print(ncol(m)) +#print(length(colnames(ministre))) +#colnames(m)<-colnames(ministre) +#rownames(m)<-colnames(ministre) +#eff<-colSums(ministre) +#mateffp<-makesimi(ministre) +#mateffp<-makesimipond(ministre) +#m<-mateffp$mat +#eff<-mateffp$eff + +#matave<-makesimi(ministre) +#m<-matave$m +#eff<-matave$eff + +print('couleur') +#rain<-rainbow(3) +#append(rain,'black') +rain<-c("green","red","white")#"yellow","pink","black")#green","blue","red","black") +vcol<-vector(mode='integer',length=length(eff)) +vcolb<-vector(mode='integer',length=length(eff)) +#classes<-classes[1:93] +#classes<-grp +#for (i in 1:length(eff)){ +# vcol[i]<-rain[as.integer(classes[i])] +# vcolb[i]<-"black" +#} +#ll<-which(effp>=0.5) +#for (i in which(effp>=0.5)) { +# if (i<=10) { +# vcol[i]<-"blue" +# } else { +# vcol[i]<-"pink" +# } +#} +#print('length(vcol)') +#print(length(vcol)) +#vcol[1:cchaud]<-rain[1] +#vcol[(cchaud+1):(cchaud+cop)]<-rain[2] +#vcol[(cchaud+cop+1):length(eff)]<-rain[3] +#print(classes) +print('premier graph') +library(igraph) +#sink('graph.txt') +g1<-graph.adjacency(m,mode="lower",weighted=TRUE) + +#maxtree<-maxgraph(g1) +#plot(maxtree, layout=layout.circle) +#lo<-layout.circle(g1) +eff<-(eff/max(eff)) +weori<-get.edge.attribute(g1,'weight') +#tdel<-which(weori<3) +we<-(weori/max(weori))*4 +print('arbre maximum') +invw<-1/weori +E(g1)$weight<-invw +g3<-minimum.spanning.tree(g1) +E(g3)$weight<-1/E(g3)$weight +#print(E(g3)$weight) +#sink() +#g3<-g1 +wev<-eff*20 +wee<-(E(g3)$weight/max(E(g3)$weight))*10 +weori<-E(g3)$weight +print('layout') +#lo<-layout.kamada.kawai(g3,dim=3) +lo<-layout.fruchterman.reingold(g3,dim=3) +print('lo') +#print(nrow(lo)) +#lo<-layout.sphere(g3) +#lo<-cbind(lo,eff) +vsize<-vector(mode='integer',length=nrow(lo)) +#print(we) +#ecount(g1) +#g2<-simplify(g1) +#g2<-delete.edges(g2,tdel-1) +#tmax<-clusters(g1) +#print(tmax) +#we<-we[-tdel] +#weori<-weori[-tdel] +#plot(g1,vertex.label=colnames(m),edge.width=get.edge.attribute(g1,'weight'),layout=layout.circle,vertex.shape='none') +#igraph.par('print.edge.attributes',TRUE) +#plot(g2,vertex.label=colnames(m),vertex.size=vsize,vertex.color=vcol,edge.width=we,layout=lo)#,vertex.shape='none')#,edge.label=weori) +#rglplot(g3,vertex.label=colnames(m),edge.width=we,vertex.size=vsize,vertex.label.color=vcol,layout=lo,vertex.shape='none')#,edge.label=weori) +print('plot') +tkplot(g3,vertex.label=colnames(m),edge.width=wee,vertex.size=wev,vertex.label.color="black",layout=lo)#,vcolb vertex.label.dist=1)#,vertex.shape='none')#,edge.label=weori) +#},vertex.color=vcol +#rgl.bg(sphere=FALSE,color=c("black","white")) +#vertex.color=vcol,vertex.label.color=vcol,edge.label=weori, +#rgl.viewpoint(zoom=0.6) +#movie3d(spin3d(axis=c(0,1,0),rpm=6),10,dir='/home/pierre/workspace/iramuteq/corpus/',movie="vero_cooc_explo",clean=TRUE,convert=TRUE,fps=20) +#tkplot(g1,vertex.label=colnames(m),layout=layout.circle,vertex.shape='rectangle') +#rglplot(g1,vertex.label=colnames(m),layout=layout.circle) +#g1<-graph(m) +#tkplot(g1) + + + + + +#Ministre +autre : +dm<-read.csv2('classe_mod.csv',row.names=1,header = FALSE) +load('RData.RData') +#------------------------------------------------------ +#selectionner +chimax<-as.matrix(apply(chistabletot,1,max)) +chimax<-as.matrix(chimax[,1][1:nrow(dm)]) +chimax<-cbind(chimax,1:nrow(dm)) +order_chi<-as.matrix(chimax[order(chimax[,1],decreasing = TRUE),]) +elim<-which(rownames(dm) == 'faire') +dm<-dm[-elim,] +dm<-dm[chimax[,2][1:300],] +#------------------------------------------------------- +limit<-nrow(dm) +distm<-dist(dm,diag=TRUE) +distm<-as.matrix(distm) +g1<-graph.adjacency(distm,mode='lower',weighted=TRUE) +g1<-minimum.spanning.tree(g1) +lo<-layout.kamada.kawai(g1,dim=3) +mc<-rainbow(ncol(chistabletot)) +chistabletot<-chistabletot[-elim,] +cc<-vector() +for (i in 1:limit) { + cc<-append(cc,which.max(chistabletot[i,])) +} +cc<-mc[cc] +mass<-rowSums(dm)/100 +rglplot(g1,vertex.label = rownames(dm),vertex.label.color=cc,vertex.color=cc,vertex.size = mass, layout=lo) + + + +autre : +dm<-read.csv2('enseignant_simi_opi.csv',row.names=1,na.string='') +mat<-matrix(0,ncol=ncol(dm),nrow=ncol(dm)) +for (i in 1:(ncol(dm)-1)) { + for (j in (i+1):ncol(dm)){ + tab<-table(dm[,i],dm[,j]) + chi<-chisq.test(tab) + mat[i,j]<-chi$statistic + mat[j,i]<-chi$statistic + } +} +mat<-ifelse(mat>3.84,mat,0) +mat<-ifelse(is.na(mat),0,mat) +mat<-ifelse(is.infinite(mat),0,mat) +cs<-colSums(mat) +tovire<-which(cs==0) +if (!is.integer(tovire)){ +mat<-mat[-tovire,] +mat<-mat[,-tovire] +} +cn<-colnames(dm) +if (!is.integer(tovire)) cn<-cn[-tovire] +g1<-graph.adjacency(mat,mode='lower',weighted=TRUE) +lo<-layout.fruchterman.reingold(g1,dim=2) +wei<-E(g1)$weight +plot(g1,vertex.label=cn,vertex.size=0.1,edge.width=wei,edge.label=round(wei,2),layout=lo) + + + +levels.n<-mj$levels.n +levelnames<-mj$levelnames +cn<-mj$colnames +count<-0 +for (j in 1:ncol(dm)) { + for (i in 1:levels.n[j]) { + count<-count+1 + print(paste(cn[j],'\\.',sep='')) + levelnames[count]<-gsub(paste(cn[j],'\\.',sep=''),'',levelnames[count]) + } +} + \ No newline at end of file diff --git a/Rscripts/splitafc.R b/Rscripts/splitafc.R new file mode 100644 index 0000000..da84b38 --- /dev/null +++ b/Rscripts/splitafc.R @@ -0,0 +1,77 @@ +#library(ca) +#datadm<-read.csv2(file('TableCont.csv', encoding='utf-8')) +#afc<-ca(datadm, nd=3) +plotqrtafc<- function(afc,x=1,y=2,supcol=NA,filename='afcdiv4_',width=480,height=480,quality=75,reso=200,ptsize=12,PARCEX=PARCEX) { + if (is.na(supcol)) { + noc<-afc$colnames + colcoord<-afc$colcoord + } + else { + noc<-afc$colnames[supcol[1]:supcol[2]] + colcoord<-afc$colcoord[supcol[1]:supcol[2],] + } + fiqrt<-data.frame() + seqrt<-data.frame() + foqrt<-data.frame() + thqrt<-data.frame() + for (i in 1:(nrow(colcoord))) { + if (colcoord[,x][i]<0) { + if (colcoord[,y][i]<0) { + foqrt[i,1]<-colcoord[i,x] + foqrt[i,2]<-colcoord[i,y] + foqrt[i,3]<-noc[i] + } + else { + fiqrt[i,1]<-colcoord[i,x] + fiqrt[i,2]<-colcoord[i,y] + fiqrt[i,3]<-noc[i] + } + } + else { + if (colcoord[,2][i]<0) { + thqrt[i,1]<-colcoord[i,x] + thqrt[i,2]<-colcoord[i,y] + thqrt[i,3]<-noc[i] + } + else { + seqrt[i,1]<-colcoord[i,x] + seqrt[i,2]<-colcoord[i,y] + seqrt[i,3]<-noc[i] + } + } + } + list_name<-c('hg','bg','hd','bd') + list_table<-list(fiqrt,foqrt,seqrt,thqrt) + for (i in 1:4) { + if (Sys.info()["sysname"]=='Darwin') { + width<-width/74.97 + height<-height/74.97 + print(list_name[i]) + quartz(file=paste(filename,x,y,list_name[i],'.jpeg',sep=''),type='jpeg',width=width,height=height)#,pointsize=5) + } else { + jpeg(paste(filename,x,y,list_name[i],'.jpeg',sep=''),quality=quality,pointsize=ptsize,res=reso,width=width,height=height) + } + par(cex=PARCEX) + #par(mar=c(0.01,0.01,0.01,0.01)) + plot(list_table[[i]][,1],list_table[[i]][,2],pch='') + text(list_table[[i]][,1],list_table[[i]][,2],list_table[[i]][,3]) + dev.off() + } +# jpeg(paste(filename,x,y,'bg','.jpeg',sep=''),quality=quality,pointsize=ptsize,res=reso,width=width,height=height) +# par(cex=PARCEX) +# plot(foqrt[,1],foqrt[,2],pch='') +# text(foqrt[,1],foqrt[,2],foqrt[,3]) +# dev.off() +# jpeg(paste(filename,x,y,'hd','.jpeg',sep=''),quality=quality,pointsize=ptsize,res=reso,width=width,height=height) +# par(cex=PARCEX) +# plot(seqrt[,1],seqrt[,2],pch='') +# text(seqrt[,1],seqrt[,2],seqrt[,3]) +# dev.off() +# jpeg(paste(filename,x,y,'bd','.jpeg',sep=''),quality=quality,pointsize=ptsize,res=reso,width=width,height=height) +# par(cex=PARCEX) +# plot(thqrt[,1],thqrt[,2],pch='') +# text(thqrt[,1],thqrt[,2],thqrt[,3]) +# dev.off() +} + +#plotqrtafc(afc,x=1,y=2,PARCEX=0.7,quality=100,ptsize=12,reso=200,width=1000,height=1000) diff --git a/TODO b/TODO new file mode 100644 index 0000000..261804c --- /dev/null +++ b/TODO @@ -0,0 +1,13 @@ +- système de template pour la présentation des résultats +- traitement texte : + - méthode alceste (intégrer le temps et les personnes) +- AFCM (mja et mjca) +- système de configuration +- anova +- correlation +- U de Mann Whitney +- autres tests non paramétriques +- regression linéaire ? +- intégration avec openoffice + + diff --git a/agw/__init__.py b/agw/__init__.py new file mode 100644 index 0000000..a2dcee6 --- /dev/null +++ b/agw/__init__.py @@ -0,0 +1,121 @@ +""" +This is the Advanced Generic Widgets package (AGW). It provides many +custom-drawn wxPython controls: some of them can be used as a replacement +of the platform native controls, others are simply an addition to the +already rich wxPython widgets set. + + +Description: + +AGW contains many different modules, listed below. Items labelled with +an asterisk were already present in `wx.lib` before: + +- AdvancedSplash: reproduces the behaviour of `wx.SplashScreen`, with more + advanced features like custom shapes and text animations; +- AquaButton: this is another custom-drawn button class which + *approximatively* mimics the behaviour of Aqua buttons on the Mac; +- AUI: a pure-Python implementation of `wx.aui`, with many bug fixes and + new features like HUD docking and L{AuiNotebook} tab arts; +- BalloonTip: allows you to display tooltips in a balloon style window + (actually a frame), similarly to the Windows XP balloon help; +- ButtonPanel (*): a panel with gradient background shading with the + possibility to add buttons and controls still respecting the gradient + background; +- CubeColourDialog: an alternative implementation of `wx.ColourDialog`, it + offers different functionalities like colour wheel and RGB cube; +- CustomTreeCtrl (*): mimics the behaviour of `wx.TreeCtrl`, with almost the + same base functionalities plus a bunch of enhancements and goodies; +- FlatMenu: as the name implies, it is a generic menu implementation, + offering the same `wx.MenuBar`/`wx.Menu`/`wx.ToolBar` capabilities and much more; +- FlatNotebook (*): a full implementation of the `wx.Notebook`, and designed + to be a drop-in replacement for `wx.Notebook` with enhanced capabilities; +- FloatSpin: this class implements a floating point spinctrl, cabable (in + theory) of handling infinite-precision floating point numbers; +- FoldPanelBar (*): a control that contains multiple panels that can be + expanded or collapsed a la Windows Explorer/Outlook command bars; +- FourWaySplitter: this is a layout manager which manages four children like + four panes in a window, similar to many CAD software interfaces; +- GenericMessageDialog: it is a possible replacement for the standard + `wx.MessageDialog`, with a fancier look and extended functionalities; +- GradientButton: another custom-drawn button class which mimics Windows CE + mobile gradient buttons, using a tri-vertex blended gradient background; +- HyperLinkCtrl (*): this widget acts line an hyper link in a typical browser; +- HyperTreeList: a class that mimics the behaviour of `wx.gizmos.TreeListCtrl`, + with almost the same base functionalities plus some more enhancements; +- KnobCtrl: a widget which lets the user select a numerical value by + rotating it, like a slider with a wheel shape; +- LabelBook and FlatImageBook: these are a quasi-full implementations of + `wx.ListBook`, with additional features; +- MultiDirDialog: it represents a possible replacement for `wx.DirDialog`, + with the additional ability of selecting multiple folders at once and a + fancier look; +- PeakMeter: this widget mimics the behaviour of LED equalizers that are + usually found in stereos and MP3 players; +- PersistentControls: widgets which automatically save their state + when they are destroyed and restore it when they are recreated, even during + another program invocation; +- PieCtrl and ProgressPie: these are simple classes that reproduce the + behavior of a pie chart, in a static or progress-gauge-like way; +- PyBusyInfo: constructs a busy info window and displays a message in it: + it is similar to `wx.BusyInfo`; +- PyCollapsiblePane: a pure Python implementation of the original wxWidgets + C++ code of `wx.CollapsiblePane`, with customizable buttons; +- PyGauge: a generic `wx.Gauge` implementation, it supports the determinate + mode functions as `wx.Gauge`; +- PyProgress: it is similar to `wx.ProgressDialog` in indeterminated mode, but + with a different gauge appearance and a different spinning behavior; +- RibbonBar: the RibbonBar library is a set of classes for writing a ribbon + user interface, similar to the user interface present in recent versions + of Microsoft Office; +- RulerCtrl: it implements a ruler window that can be placed on top, bottom, + left or right to any wxPython widget. It is somewhat similar to the rulers + you can find in text editors software; +- ShapedButton: this class tries to fill the lack of "custom shaped" controls + in wxPython. It can be used to build round buttons or elliptic buttons; +- SpeedMeter: this widget tries to reproduce the behavior of some car + controls (but not only), by creating an "angular" control; +- SuperToolTip: a class that mimics the behaviour of `wx.TipWindow` and + generic tooltips, with many features and highly customizable; +- ThumbnailCtrl: a widget that can be used to display a series of images + in a "thumbnail" format; it mimics, for example, the Windows Explorer + behavior when you select the "view thumbnails" option; +- ToasterBox: a cross-platform widget to make the creation of MSN-style + "toaster" popups easier; +- UltimateListCtrl: mimics the behaviour of `wx.ListCtrl`, with almost the same + base functionalities plus some more enhancements; +- ZoomBar: a class that *appoximatively* mimics the behaviour of the Mac Dock, + inside a `wx.Panel`. + + +Bugs and Limitations: many, patches and fixes welcome :-D + +See the demos for an example of what AGW can do, and on how to use it. + +Copyright: Andrea Gavana + +License: Same as the version of wxPython you are using it with. + +SVN for latest code: +http://svn.wxwidgets.org/viewvc/wx/wxPython/3rdParty/AGW/ + +Mailing List: +wxpython-users@lists.wxwidgets.org + +My personal web page: +http://xoomer.alice.it/infinity77 + +Please let me know if you are using AGW! + +You can contact me at: + +andrea.gavana@gmail.com +gavana@kpo.kz + +AGW version: 0.9.1 + +Last updated: 10 Mar 2011, 15.00 GMT + +""" + +__version__ = "0.9.1" +__author__ = "Andrea Gavana " diff --git a/agw/__init__.pyc b/agw/__init__.pyc new file mode 100644 index 0000000..9cf5c66 Binary files /dev/null and b/agw/__init__.pyc differ diff --git a/agw/aui/__init__.py b/agw/aui/__init__.py new file mode 100644 index 0000000..e5f1abf --- /dev/null +++ b/agw/aui/__init__.py @@ -0,0 +1,290 @@ +""" +AUI is an Advanced User Interface library that aims to implement "cutting-edge" +interface usability and design features so developers can quickly and easily create +beautiful and usable application interfaces. + + +Vision and Design Principles +============================ + +AUI attempts to encapsulate the following aspects of the user interface: + +* **Frame Management**: Frame management provides the means to open, move and hide common + controls that are needed to interact with the document, and allow these configurations + to be saved into different perspectives and loaded at a later time. + +* **Toolbars**: Toolbars are a specialized subset of the frame management system and should + behave similarly to other docked components. However, they also require additional + functionality, such as "spring-loaded" rebar support, "chevron" buttons and end-user + customizability. + +* **Modeless Controls**: Modeless controls expose a tool palette or set of options that + float above the application content while allowing it to be accessed. Usually accessed + by the toolbar, these controls disappear when an option is selected, but may also be + "torn off" the toolbar into a floating frame of their own. + +* **Look and Feel**: Look and feel encompasses the way controls are drawn, both when shown + statically as well as when they are being moved. This aspect of user interface design + incorporates "special effects" such as transparent window dragging as well as frame animation. + +AUI adheres to the following principles: + +- Use native floating frames to obtain a native look and feel for all platforms; +- Use existing wxPython code where possible, such as sizer implementation for frame management; +- Use standard wxPython coding conventions. + + +Usage +===== + +The following example shows a simple implementation that uses L{AuiManager} to manage +three text controls in a frame window:: + + class MyFrame(wx.Frame): + + def __init__(self, parent, id=-1, title="AUI Test", pos=wx.DefaultPosition, + size=(800, 600), style=wx.DEFAULT_FRAME_STYLE): + + wx.Frame.__init__(self, parent, id, title, pos, size, style) + + self._mgr = aui.AuiManager() + + # notify AUI which frame to use + self._mgr.SetManagedWindow(self) + + # create several text controls + text1 = wx.TextCtrl(self, -1, "Pane 1 - sample text", + wx.DefaultPosition, wx.Size(200,150), + wx.NO_BORDER | wx.TE_MULTILINE) + + text2 = wx.TextCtrl(self, -1, "Pane 2 - sample text", + wx.DefaultPosition, wx.Size(200,150), + wx.NO_BORDER | wx.TE_MULTILINE) + + text3 = wx.TextCtrl(self, -1, "Main content window", + wx.DefaultPosition, wx.Size(200,150), + wx.NO_BORDER | wx.TE_MULTILINE) + + # add the panes to the manager + self._mgr.AddPane(text1, AuiPaneInfo().Left().Caption("Pane Number One")) + self._mgr.AddPane(text2, AuiPaneInfo().Bottom().Caption("Pane Number Two")) + self._mgr.AddPane(text3, AuiPaneInfo().CenterPane()) + + # tell the manager to "commit" all the changes just made + self._mgr.Update() + + self.Bind(wx.EVT_CLOSE, self.OnClose) + + + def OnClose(self, event): + + # deinitialize the frame manager + self._mgr.UnInit() + + self.Destroy() + event.Skip() + + + # our normal wxApp-derived class, as usual + + app = wx.PySimpleApp() + + frame = MyFrame(None) + app.SetTopWindow(frame) + frame.Show() + + app.MainLoop() + + +What's New +========== + +Current wxAUI Version Tracked: wxWidgets 2.9.0 (SVN HEAD) + +The wxPython AUI version fixes the following bugs or implement the following +missing features (the list is not exhaustive): + +- Visual Studio 2005 style docking: http://www.kirix.com/forums/viewtopic.php?f=16&t=596 +- Dock and Pane Resizing: http://www.kirix.com/forums/viewtopic.php?f=16&t=582 +- Patch concerning dock resizing: http://www.kirix.com/forums/viewtopic.php?f=16&t=610 +- Patch to effect wxAuiToolBar orientation switch: http://www.kirix.com/forums/viewtopic.php?f=16&t=641 +- AUI: Core dump when loading a perspective in wxGTK (MSW OK): http://www.kirix.com/forums/viewtopic.php?f=15&t=627 +- wxAuiNotebook reordered AdvanceSelection(): http://www.kirix.com/forums/viewtopic.php?f=16&t=617 +- Vertical Toolbar Docking Issue: http://www.kirix.com/forums/viewtopic.php?f=16&t=181 +- Patch to show the resize hint on mouse-down in aui: http://trac.wxwidgets.org/ticket/9612 +- The Left/Right and Top/Bottom Docks over draw each other: http://trac.wxwidgets.org/ticket/3516 +- MinSize() not honoured: http://trac.wxwidgets.org/ticket/3562 +- Layout problem with wxAUI: http://trac.wxwidgets.org/ticket/3597 +- Resizing children ignores current window size: http://trac.wxwidgets.org/ticket/3908 +- Resizing panes under Vista does not repaint background: http://trac.wxwidgets.org/ticket/4325 +- Resize sash resizes in response to click: http://trac.wxwidgets.org/ticket/4547 +- "Illegal" resizing of the AuiPane? (wxPython): http://trac.wxwidgets.org/ticket/4599 +- Floating wxAUIPane Resize Event doesn't update its position: http://trac.wxwidgets.org/ticket/9773 +- Don't hide floating panels when we maximize some other panel: http://trac.wxwidgets.org/ticket/4066 +- wxAUINotebook incorrect ALLOW_ACTIVE_PANE handling: http://trac.wxwidgets.org/ticket/4361 +- Page changing veto doesn't work, (patch supplied): http://trac.wxwidgets.org/ticket/4518 +- Show and DoShow are mixed around in wxAuiMDIChildFrame: http://trac.wxwidgets.org/ticket/4567 +- wxAuiManager & wxToolBar - ToolBar Of Size Zero: http://trac.wxwidgets.org/ticket/9724 +- wxAuiNotebook doesn't behave properly like a container as far as...: http://trac.wxwidgets.org/ticket/9911 +- Serious layout bugs in wxAUI: http://trac.wxwidgets.org/ticket/10620 +- wAuiDefaultTabArt::Clone() should just use copy contructor: http://trac.wxwidgets.org/ticket/11388 +- Drop down button for check tool on wxAuiToolbar: http://trac.wxwidgets.org/ticket/11139 + +Plus the following features: + +- AuiManager: + + (a) Implementation of a simple minimize pane system: Clicking on this minimize button causes a new + AuiToolBar to be created and added to the frame manager, (currently the implementation is such + that panes at West will have a toolbar at the right, panes at South will have toolbars at the + bottom etc...) and the pane is hidden in the manager. + Clicking on the restore button on the newly created toolbar will result in the toolbar being + removed and the original pane being restored; + (b) Panes can be docked on top of each other to form `AuiNotebooks`; `AuiNotebooks` tabs can be torn + off to create floating panes; + (c) On Windows XP, use the nice sash drawing provided by XP while dragging the sash; + (d) Possibility to set an icon on docked panes; + (e) Possibility to draw a sash visual grip, for enhanced visualization of sashes; + (f) Implementation of a native docking art (`ModernDockArt`). Windows XP only, **requires** Mark Hammond's + pywin32 package (winxptheme); + (g) Possibility to set a transparency for floating panes (a la Paint .NET); + (h) Snapping the main frame to the screen in any positin specified by horizontal and vertical + alignments; + (i) Snapping floating panes on left/right/top/bottom or any combination of directions, a la Winamp; + (j) "Fly-out" floating panes, i.e. panes which show themselves only when the mouse hover them; + (k) Ability to set custom bitmaps for pane buttons (close, maximize, etc...); + (l) Implementation of the style ``AUI_MGR_ANIMATE_FRAMES``, which fade-out floating panes when + they are closed (all platforms which support frames transparency) and show a moving rectangle + when they are docked and minimized (Windows < Vista and GTK only); + (m) A pane switcher dialog is available to cycle through existing AUI panes; + (n) Some flags which allow to choose the orientation and the position of the minimized panes; + (o) The functions [Get]MinimizeMode() in `AuiPaneInfo` which allow to set/get the flags described above; + (p) Events like ``EVT_AUI_PANE_DOCKING``, ``EVT_AUI_PANE_DOCKED``, ``EVT_AUI_PANE_FLOATING`` and ``EVT_AUI_PANE_FLOATED`` are + available for all panes *except* toolbar panes; + (q) Implementation of the RequestUserAttention method for panes; + (r) Ability to show the caption bar of docked panes on the left instead of on the top (with caption + text rotated by 90 degrees then). This is similar to what `wxDockIt` did. To enable this feature on any + given pane, simply call `CaptionVisible(True, left=True)`; + (s) New Aero-style docking guides: you can enable them by using the `AuiManager` style ``AUI_MGR_AERO_DOCKING_GUIDES``; + (t) A slide-in/slide-out preview of minimized panes can be seen by enabling the `AuiManager` style + ``AUI_MGR_PREVIEW_MINIMIZED_PANES`` and by hovering with the mouse on the minimized pane toolbar tool; + (u) New Whidbey-style docking guides: you can enable them by using the `AuiManager` style ``AUI_MGR_WHIDBEY_DOCKING_GUIDES``; + (v) Native of custom-drawn mini frames can be used as floating panes, depending on the ``AUI_MGR_USE_NATIVE_MINIFRAMES`` style; + (w) A "smooth docking effect" can be obtained by using the ``AUI_MGR_SMOOTH_DOCKING`` style (similar to PyQT docking style). + +| + +- AuiNotebook: + + (a) Implementation of the style ``AUI_NB_HIDE_ON_SINGLE_TAB``, a la `wx.lib.agw.flatnotebook`; + (b) Implementation of the style ``AUI_NB_SMART_TABS``, a la `wx.lib.agw.flatnotebook`; + (c) Implementation of the style ``AUI_NB_USE_IMAGES_DROPDOWN``, which allows to show tab images + on the tab dropdown menu instead of bare check menu items (a la `wx.lib.agw.flatnotebook`); + (d) 6 different tab arts are available, namely: + + (1) Default "glossy" theme (as in `wx.aui.AuiNotebook`) + (2) Simple theme (as in `wx.aui.AuiNotebook`) + (3) Firefox 2 theme + (4) Visual Studio 2003 theme (VC71) + (5) Visual Studio 2005 theme (VC81) + (6) Google Chrome theme + + (e) Enabling/disabling tabs; + (f) Setting the colour of the tab's text; + (g) Implementation of the style ``AUI_NB_CLOSE_ON_TAB_LEFT``, which draws the tab close button on + the left instead of on the right (a la Camino browser); + (h) Ability to save and load perspectives in `AuiNotebook` (experimental); + (i) Possibility to add custom buttons in the `AuiNotebook` tab area; + (j) Implementation of the style ``AUI_NB_TAB_FLOAT``, which allows the floating of single tabs. + Known limitation: when the notebook is more or less full screen, tabs cannot be dragged far + enough outside of the notebook to become floating pages; + (k) Implementation of the style ``AUI_NB_DRAW_DND_TAB`` (on by default), which draws an image + representation of a tab while dragging; + (l) Implementation of the `AuiNotebook` unsplit functionality, which unsplit a splitted AuiNotebook + when double-clicking on a sash; + (m) Possibility to hide all the tabs by calling `HideAllTAbs`; + (n) wxPython controls can now be added inside page tabs by calling `AddControlToPage`, and they can be + removed by calling `RemoveControlFromPage`; + (o) Possibility to preview all the pages in a `AuiNotebook` (as thumbnails) by using the `NotebookPreview` + method of `AuiNotebook`; + (p) Tab labels can be edited by calling the `SetRenamable` method on a `AuiNotebook` page; + (q) Support for multi-lines tab labels in `AuiNotebook`; + (r) Support for setting minimum and maximum tab widths for fixed width tabs; + (s) Implementation of the style ``AUI_NB_ORDER_BY_ACCESS``, which orders the tabs by last access time + inside the Tab Navigator dialog; + (t) Implementation of the style ``AUI_NB_NO_TAB_FOCUS``, allowing the developer not to draw the tab + focus rectangle on tne `AuiNotebook` tabs. + +| + +- AuiToolBar: + + (a) ``AUI_TB_PLAIN_BACKGROUND`` style that allows to easy setup a plain background to the AUI toolbar, + without the need to override drawing methods. This style contrasts with the default behaviour + of the `wx.aui.AuiToolBar` that draws a background gradient and this break the window design when + putting it within a control that has margin between the borders and the toolbar (example: put + `wx.aui.AuiToolBar` within a `wx.StaticBoxSizer` that has a plain background); + (b) `AuiToolBar` allow item alignment: http://trac.wxwidgets.org/ticket/10174; + (c) `AUIToolBar` `DrawButton()` improvement: http://trac.wxwidgets.org/ticket/10303; + (d) `AuiToolBar` automatically assign new id for tools: http://trac.wxwidgets.org/ticket/10173; + (e) `AuiToolBar` Allow right-click on any kind of button: http://trac.wxwidgets.org/ticket/10079; + (f) `AuiToolBar` idle update only when visible: http://trac.wxwidgets.org/ticket/10075; + (g) Ability of creating `AuiToolBar` tools with [counter]clockwise rotation. This allows to propose a + variant of the minimizing functionality with a rotated button which keeps the caption of the pane + as label; + (h) Allow setting the alignment of all tools in a toolbar that is expanded. + + +TODOs +===== + +- Documentation, documentation and documentation; +- Fix `tabmdi.AuiMDIParentFrame` and friends, they do not work correctly at present; +- Allow specification of `CaptionLeft()` to `AuiPaneInfo` to show the caption bar of docked panes + on the left instead of on the top (with caption text rotated by 90 degrees then). This is + similar to what `wxDockIt` did - DONE; +- Make developer-created `AuiNotebooks` and automatic (framemanager-created) `AuiNotebooks` behave + the same way (undocking of tabs) - DONE, to some extent; +- Find a way to dock panes in already floating panes (`AuiFloatingFrames`), as they already have + their own `AuiManager`; +- Add more gripper styles (see, i.e., PlusDock 4.0); +- Add an "AutoHide" feature to docked panes, similar to fly-out floating panes (see, i.e., PlusDock 4.0); +- Add events for panes when they are about to float or to be docked (something like + ``EVT_AUI_PANE_FLOATING/ED`` and ``EVT_AUI_PANE_DOCKING/ED``) - DONE, to some extent; +- Implement the 4-ways splitter behaviour for horizontal and vertical sashes if they intersect; +- Extend `tabart.py` with more aui tab arts; +- Implement ``AUI_NB_LEFT`` and ``AUI_NB_RIGHT`` tab locations in `AuiNotebook`; +- Move `AuiDefaultToolBarArt` into a separate module (as with `tabart.py` and `dockart.py`) and + provide more arts for toolbars (maybe from `wx.lib.agw.flatmenu`?) +- Support multiple-rows/multiple columns toolbars; +- Integrate as much as possible with `wx.lib.agw.flatmenu`, from dropdown menus in `AuiNotebook` to + toolbars and menu positioning; +- Possibly handle minimization of panes in a different way (or provide an option to switch to + another way of minimizing panes); +- Clean up/speed up the code, especially time-consuming for-loops; +- Possibly integrate `wxPyRibbon` (still on development), at least on Windows. + + +License And Version +=================== + +AUI library is distributed under the wxPython license. + +Latest revision: Andrea Gavana @ 10 Mar 2011, 15.00 GMT + +Version 1.3. + +""" + +__author__ = "Andrea Gavana " +__date__ = "31 March 2009" + + +from aui_constants import * +from aui_utilities import * +from auibar import * +from auibook import * +from tabart import * +from dockart import * +from framemanager import * +from tabmdi import * diff --git a/agw/aui/__init__.pyc b/agw/aui/__init__.pyc new file mode 100644 index 0000000..e40c0ef Binary files /dev/null and b/agw/aui/__init__.pyc differ diff --git a/agw/aui/aui_constants.py b/agw/aui/aui_constants.py new file mode 100644 index 0000000..38f183d --- /dev/null +++ b/agw/aui/aui_constants.py @@ -0,0 +1,2588 @@ +""" +This module contains all the constants used by wxPython-AUI. + +Especially important and meaningful are constants for AuiManager, AuiDockArt and +AuiNotebook. +""" + +__author__ = "Andrea Gavana " +__date__ = "31 March 2009" + + +import wx +from wx.lib.embeddedimage import PyEmbeddedImage + +# ------------------------- # +# - AuiNotebook Constants - # +# ------------------------- # + +# For tabart +# -------------- + +vertical_border_padding = 4 +""" Border padding used in drawing tabs. """ + +if wx.Platform == "__WXMAC__": + nb_close_bits = "\xFF\xFF\xFF\xFF\x0F\xFE\x03\xF8\x01\xF0\x19\xF3" \ + "\xB8\xE3\xF0\xE1\xE0\xE0\xF0\xE1\xB8\xE3\x19\xF3" \ + "\x01\xF0\x03\xF8\x0F\xFE\xFF\xFF" + """ AuiNotebook close button image on wxMAC. """ + +elif wx.Platform == "__WXGTK__": + nb_close_bits = "\xff\xff\xff\xff\x07\xf0\xfb\xef\xdb\xed\x8b\xe8" \ + "\x1b\xec\x3b\xee\x1b\xec\x8b\xe8\xdb\xed\xfb\xef" \ + "\x07\xf0\xff\xff\xff\xff\xff\xff" + """ AuiNotebook close button image on wxGTK. """ + +else: + nb_close_bits = "\xff\xff\xff\xff\xff\xff\xff\xff\xe7\xf3\xcf\xf9" \ + "\x9f\xfc\x3f\xfe\x3f\xfe\x9f\xfc\xcf\xf9\xe7\xf3" \ + "\xff\xff\xff\xff\xff\xff\xff\xff" + """ AuiNotebook close button image on wxMSW. """ + +nb_left_bits = "\xff\xff\xff\xff\xff\xff\xff\xfe\x7f\xfe\x3f\xfe\x1f" \ + "\xfe\x0f\xfe\x1f\xfe\x3f\xfe\x7f\xfe\xff\xfe\xff\xff" \ + "\xff\xff\xff\xff\xff\xff" +""" AuiNotebook left button image. """ + +nb_right_bits = "\xff\xff\xff\xff\xff\xff\xdf\xff\x9f\xff\x1f\xff\x1f" \ + "\xfe\x1f\xfc\x1f\xfe\x1f\xff\x9f\xff\xdf\xff\xff\xff" \ + "\xff\xff\xff\xff\xff\xff" +""" AuiNotebook right button image. """ + +nb_list_bits = "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x0f" \ + "\xf8\xff\xff\x0f\xf8\x1f\xfc\x3f\xfe\x7f\xff\xff\xff" \ + "\xff\xff\xff\xff\xff\xff" +""" AuiNotebook windows list button image. """ + + +#---------------------------------------------------------------------- +tab_active_center = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAAEAAAAbCAYAAAC9WOV0AAAABHNCSVQICAgIfAhkiAAAADNJ" + "REFUCJltzMEJwDAUw9DHX6OLdP/Bop4KDc3F2EIYrsFtrZow8GnH6OD1zvRTajvY2QMHIhNx" + "jUhuAgAAAABJRU5ErkJggg==") +""" Center active tab image for the Chrome tab art. """ + +#---------------------------------------------------------------------- +tab_active_left = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAA8AAAAbCAYAAACjkdXHAAAABHNCSVQICAgIfAhkiAAAAglJ" + "REFUOI2Nkk9rE0EYh5/J7mpW06xE2iSmeFHxEoqIAc/FQ5CKgn4DP4KlIQG/QVsQbBEKgop+" + "Anvy4rV4bLT2JCGJPVXqwaZJd+f1kN26WTfJDrzszDLPPL/5o0jeFGAC54A0YKmEYAo4DzjA" + "LHAZmElqtIGrhmEsvtzcfPNtb6/V6524SWALKBiGsfhxe/uzFhGth5XEmgVubWxsvA1Az68k" + "1nngYbPZ7ASg69c06wxwe3V9/b3reVqHwGmwCZRs2370fX//wIuA0+CLwEKj0XilZTSu602G" + "FcP7vLe7+7XlRaCgPw62gGv5fP6p63raiwFdLWKOgdNArl6vV1UqpQgcYdcYbwooAPfb7c7h" + "mTWmUjGwCWTL5fL1K6VSLiqQyMTYyLVa/UEwe9IC0chFYKnb/XnkeiIDV+Q0UsG/qNkCnEql" + "crNQLDpaxpskJnYayD1bXl4S/xrDoPLHKjQOmsHwlCuHv44+ZJ2sLTrGGqzg7zEc+VK1Wl1w" + "HMcG0DFxw6sFsRVwAZhdWak9FoRJ+w2HCKzzwN3jXv+daVmGDkdWoMKb9fumHz0DFFfX1p5Y" + "lmXo6N0G48jzVEDOt97pdA9ezOXzGU+PzBmN6VuDqyoDN3Z2vjyfKxQynhYkJuJ/L02Ara3X" + "n3602r8HrpaTUy3HAy1/+hNq8O+r+q4WETirmFMNBwm3v+gdmytKNIUpAAAAAElFTkSuQmCC") +""" Left active tab image for the Chrome tab art. """ + +#---------------------------------------------------------------------- +tab_active_right = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAA8AAAAbCAYAAACjkdXHAAAABHNCSVQICAgIfAhkiAAAAkpJ" + "REFUOI2NlM1rU0EUxX9zZ5KaWq3GKKnGutC0FEWCWAWLRUOxBetK/wdp6Re6F6TFXXGhuFdw" + "b7dCQUUpiFt1XbB2q7Uf1iTvunjzkpe0afNgmLnDnHvOPe/OWCALtAFC+Cktfha4CRwBDnhg" + "BQhaSrK19bf89dv35WfPX7y01haBbiAFmH3BlUA1Gm8WFt75BFkg0TK4VAl0Y3NL5+efvgIK" + "wOH92EVjxRljGBi4VgTOeLDbk7kcqEZju1TWX7/Xgtm5J6+BS8ChvdilLhAhkUya4eFbxVQq" + "1e3ZbUtgg8GKJd/Tk70/NjYCHCPsgX1kV8K5VA70z8amfvy0tAwMAcebSRfijikY8ez5/OlM" + "JrOncbIjp4K1lmRb0sw8eDgCpAm7rwlz46YIzjpGb48WveyDNPhDfCOuHmNwzpHL5dK9fX3n" + "mkmvaxJiayOCWMvM1PSdZtJrhiloLJMYIeESDFwf7Acyu0mXGLYmX0PpYi3ZbFdnoVDoBTpp" + "uCxCjFob1tYKzlnGJyZHd5Mu6uVGkqvMCmCwzjE4eOMqcALoINauUic37hjhLXPWcTSdThWL" + "QxcJX5yqdGk4H/cP9a4755iYnLpL+M/b8e0qjafrekb9TUskuNx/5TzQ5Y1zO9yOZEd1R7OI" + "JdXebh/Pzt3zCToAMZv/AjU1orDWWKAGVJVSqcTqysp6X+/ZaeAL8KNac9wsVQ8yNeOsdZw8" + "let4/2HpEdAPXDAb20HLj7xqeHT158ra4uLbz2bdg03krmetxrH9KDAmHP8Bn0j1t/01UV0A" + "AAAASUVORK5CYII=") +""" Right active tab image for the Chrome tab art. """ + +#---------------------------------------------------------------------- +tab_close = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAABHNCSVQICAgIfAhkiAAAAI9J" + "REFUKJG90MEKAWEUxfEfM4rxAFIommzZzNb7v4BsLJTsiGQlYjHfME3flrO75/xvnXv5p/qY" + "R/wcWTUktWCKFbrYB6/AAhecmwunAI/RwQAjbLGpoFakwjLATxzqMLQjC68A3/FohkljLkKN" + "Ha4YKg8+VkBag3Pll9a1GikmuPk+4qMMs0jFMXoR/0d6A9JRFV/jxY+iAAAAAElFTkSuQmCC") +""" Normal close button image for the Chrome tab art. """ + +#---------------------------------------------------------------------- +tab_close_h = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAABHNCSVQICAgIfAhkiAAAAOlJ" + "REFUKJGVkiFuw0AQRd849hUS7iPUwGEllhyjYJ+gaK9Q4CsY9QTFIY4shQQucI8Q7l6h3Z0S" + "r7UgjdrPZvVm52k0wpJLWe4y51qgVpECQFQnYPzabN4ra2cAAbgWxZMmyavAkTtROIn33fM0" + "fcilLHep92+/wXHTd5K8JJlzbYD3w8C2aVZo2zTsh4FF5Zg516ZAHYBb35MbszbkxnDr+3hQ" + "napIIUv1eT6vYPggvAGoSJE88r6XVFQnRA7BOdYIk8IUUZ1SYAQOsXOskRsT1+P/11pZO4v3" + "ncLpESzed5W1c1jQn0/jBzPfck1qdmfjAAAAAElFTkSuQmCC") +""" Hover close button image for the Chrome tab art. """ + +#---------------------------------------------------------------------- +tab_close_p = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAABHNCSVQICAgIfAhkiAAAASxJ" + "REFUKJF9kbFLQlEYxX/nvbs55OAkiJAE7k7Nibo9xf+hrTlyr3Boipb+BCGq0bApJEQcG0Ms" + "aQ0Lmq5+Dc+nDtbZ7uHce37fd8VSlWwh50PfRKqClWJXI8y6bu5uHj5e3wEEcJDP75txLBSx" + "RYbdS7QfJ5PnsJIt5BbB4hQjkrQtjxlFILOXyvQDH/qmUCSJznDAYetkFTxsndAZDggkhCIf" + "+qaLmWP1bu8oN+qrC+VGnd7t3bpKqrp4wBjl+ux8FUweSLwlXCnYCv2PHGgE1BLmTYykad2i" + "kcOsi1TbZN7EKDfq67NZV5VsIeedvzQjCv5YK8R/4bw7Cl+/P7920+kJkBEq/hWWaPem45cQ" + "YDybTfdSmf5CizckwHaAH9ATZldu7i560/ELwC+6RXdU6KzezAAAAABJRU5ErkJggg==") +""" Pressed close button image for the Chrome tab art. """ + +#---------------------------------------------------------------------- +tab_inactive_center = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAAEAAAAbCAYAAAC9WOV0AAAABHNCSVQICAgIfAhkiAAAAElJ" + "REFUCJlVyiEOgDAUBNHp3qmX5iYkyMpqBAaFILRdDGn4qybZB98yy3ZZrRu1PpABAQiDSLN+" + "h4NLEU8CBAfoPHZUywr3M/wCTz8c3/qQrUcAAAAASUVORK5CYII=") +""" Center inactive tab image for the Chrome tab art. """ + +#---------------------------------------------------------------------- +tab_inactive_left = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAA8AAAAbCAYAAACjkdXHAAAABHNCSVQICAgIfAhkiAAAAf5J" + "REFUOI2llE1rE1EUhp8bZwyhaZomk5DaD40hSWPQVkTd6KIIEUWlLqTEhTaLulBQ6sfKjeBC" + "ECULXQku/Alx7d6/U1EQae45LjJpJ5NOnOKBgYG5z33Px3sG/iPMIc87QAmYBZKHgdOu69a2" + "3/W2yrVGK5vPLTlxFV3Xrb3+8v1Ntd5oiSpWBmnEidKT972tar3R6ovSt4qoxoIdoFipNlpW" + "B6AVRYFEHNWn3a8dz/PK1rIHEgN2UpnMseVTK7fUGBME48CFe88+3sh5+SXr1xmMSbABvJXz" + "l9siYAVGWJ0Mu/OVZr5Q8CpWfFWzD2Imj2qu/fhtG4wRVUIZg0bDBsgtn15dt6qIKKBDQZ81" + "kWmnzly6OZ+ZzhSt7jfK6CBjFMwEk5TWOy82AVQGhzVUb5RJEkC2fLK6JgIiPhioeZJJUhev" + "3j2RTqdzooqge2ojCxwxqrnrG4/uq4Ida3HgAjMOJ4CZSq1+RVBUzCgQinDDstfa282jyeTU" + "rhUGF4CJgMPKhbXbmw9VFfG7fBA4LCao7AAzi8cXz1kF0dENMqH38KgWnnd7nSMJxxE5wI4+" + "MHyCaeeAYvPshQ0RJby3wVSDHxxgAVh99elb9/evndmfP3boW2FsqGNhMMCdBy8/fJ5KZ6at" + "qL+3Q1dEzFkNGMX82ZWh18e0/vVT/wuFmdYVv/ruKgAAAABJRU5ErkJggg==") +""" Left inactive tab image for the Chrome tab art. """ + +#---------------------------------------------------------------------- +tab_inactive_right = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAA8AAAAbCAYAAACjkdXHAAAABHNCSVQICAgIfAhkiAAAAhBJ" + "REFUOI2llM9rE1EQxz8zb1dSTKNuYtW01kQDRoKFWi9FEEq1IooUUWoPokWCtVqkR69KsSBU" + "8OJRPOhBxZNe/At6FBER/HFUPEq1IGn3ecgm2ZjdJODCHPY9vvP9fufNDPzHZ4DDQBrYBKwB" + "ftfoJys/Kw9ef/1y8/6rh67rHgKS3WLl6cqqtcCGD58+vn+zdPXorUql8g5Y7wTWdd+y4Vus" + "teQK+yfKi8/KwM5umBXAAgioCIP54gTQBzgdwTbsQZR0JpOfXXw+0w27hn9EBGMcyRcPnulJ" + "pbKd2JvACKgKnpcePH99+TSwvT3YEphusKsqB4ZHp4FMNWUn5loSEVSFbZ63b8eeUhpwu5Md" + "JBFRjHHk7LXb08CuNuAaZTgEEaFQHJoEvDjpakOYmnURUFWSvam+0ujJfqAnmlnABhG2jlTZ" + "j19YuEzMm7dUu34hihrDQG7vGLCViPq0VruuvdquyWSvN3xsKhclvbXaoUQiihFlfLJ8iYiq" + "O/EtUC2xGGF3vjAObAnI6stCsZbYCLwnEonNY+dulALvHWSH2YN2PXLq4hz/9HpjnmOs18DZ" + "bP9IIL0+afV5juqzRgLFcV1n9u6LGWAgWnaMBFHBOIbi0MgU1S3jAcjyyw9xqpvzWou1Pj++" + "f/t8b/7EAvBW5u48agU37abWs99rv1YfL81fkT8V34YxbZ696d4CfwEszZSZx6Z26wAAAABJ" + "RU5ErkJggg==") +""" Right inactive tab image for the Chrome tab art. """ + +# For auibook +# ----------- + +AuiBaseTabCtrlId = 5380 +""" Base window identifier for AuiTabCtrl. """ + +AUI_NB_TOP = 1 << 0 +""" With this style, tabs are drawn along the top of the notebook. """ +AUI_NB_LEFT = 1 << 1 # not implemented yet +""" With this style, tabs are drawn along the left of the notebook. +Not implemented yet. """ +AUI_NB_RIGHT = 1 << 2 # not implemented yet +""" With this style, tabs are drawn along the right of the notebook. +Not implemented yet. """ +AUI_NB_BOTTOM = 1 << 3 +""" With this style, tabs are drawn along the bottom of the notebook. """ +AUI_NB_TAB_SPLIT = 1 << 4 +""" Allows the tab control to be split by dragging a tab. """ +AUI_NB_TAB_MOVE = 1 << 5 +""" Allows a tab to be moved horizontally by dragging. """ +AUI_NB_TAB_EXTERNAL_MOVE = 1 << 6 +""" Allows a tab to be moved to another tab control. """ +AUI_NB_TAB_FIXED_WIDTH = 1 << 7 +""" With this style, all tabs have the same width. """ +AUI_NB_SCROLL_BUTTONS = 1 << 8 +""" With this style, left and right scroll buttons are displayed. """ +AUI_NB_WINDOWLIST_BUTTON = 1 << 9 +""" With this style, a drop-down list of windows is available. """ +AUI_NB_CLOSE_BUTTON = 1 << 10 +""" With this style, a close button is available on the tab bar. """ +AUI_NB_CLOSE_ON_ACTIVE_TAB = 1 << 11 +""" With this style, a close button is available on the active tab. """ +AUI_NB_CLOSE_ON_ALL_TABS = 1 << 12 +""" With this style, a close button is available on all tabs. """ +AUI_NB_MIDDLE_CLICK_CLOSE = 1 << 13 +""" Allows to close `AuiNotebook` tabs by mouse middle button click. """ +AUI_NB_SUB_NOTEBOOK = 1 << 14 +""" This style is used by `AuiManager` to create automatic `AuiNotebooks`. """ +AUI_NB_HIDE_ON_SINGLE_TAB = 1 << 15 +""" Hides the tab window if only one tab is present. """ +AUI_NB_SMART_TABS = 1 << 16 +""" Use `Smart Tabbing`, like ``Alt`` + ``Tab`` on Windows. """ +AUI_NB_USE_IMAGES_DROPDOWN = 1 << 17 +""" Uses images on dropdown window list menu instead of check items. """ +AUI_NB_CLOSE_ON_TAB_LEFT = 1 << 18 +""" Draws the tab close button on the left instead of on the right +(a la Camino browser). """ +AUI_NB_TAB_FLOAT = 1 << 19 +""" Allows the floating of single tabs. +Known limitation: when the notebook is more or less full screen, tabs +cannot be dragged far enough outside of the notebook to become +floating pages. """ +AUI_NB_DRAW_DND_TAB = 1 << 20 +""" Draws an image representation of a tab while dragging. """ +AUI_NB_ORDER_BY_ACCESS = 1 << 21 +""" Tab navigation order by last access time. """ +AUI_NB_NO_TAB_FOCUS = 1 << 22 +""" Don't draw tab focus rectangle. """ + +AUI_NB_DEFAULT_STYLE = AUI_NB_TOP | AUI_NB_TAB_SPLIT | AUI_NB_TAB_MOVE | \ + AUI_NB_SCROLL_BUTTONS | AUI_NB_CLOSE_ON_ACTIVE_TAB | \ + AUI_NB_MIDDLE_CLICK_CLOSE | AUI_NB_DRAW_DND_TAB +""" Default `AuiNotebook` style. """ + +#---------------------------------------------------------------------- +Mondrian = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAHFJ" + "REFUWIXt1jsKgDAQRdF7xY25cpcWC60kioI6Fm/ahHBCMh+BRmGMnAgEWnvPpzK8dvrFCCCA" + "coD8og4c5Lr6WB3Q3l1TBwLYPuF3YS1gn1HphgEEEABcKERrGy0E3B0HFJg7C1N/f/kTBBBA" + "+Vi+AMkgFEvBPD17AAAAAElFTkSuQmCC") +""" Default icon for the Smart Tabbing dialog. """ + +# -------------------------- # +# - FrameManager Constants - # +# -------------------------- # + +# Docking Styles +AUI_DOCK_NONE = 0 +""" No docking direction. """ +AUI_DOCK_TOP = 1 +""" Top docking direction. """ +AUI_DOCK_RIGHT = 2 +""" Right docking direction. """ +AUI_DOCK_BOTTOM = 3 +""" Bottom docking direction. """ +AUI_DOCK_LEFT = 4 +""" Left docking direction. """ +AUI_DOCK_CENTER = 5 +""" Center docking direction. """ +AUI_DOCK_CENTRE = AUI_DOCK_CENTER +""" Centre docking direction. """ +AUI_DOCK_NOTEBOOK_PAGE = 6 +""" Automatic AuiNotebooks docking style. """ + +# Floating/Dragging Styles +AUI_MGR_ALLOW_FLOATING = 1 << 0 +""" Allow floating of panes. """ +AUI_MGR_ALLOW_ACTIVE_PANE = 1 << 1 +""" If a pane becomes active, "highlight" it in the interface. """ +AUI_MGR_TRANSPARENT_DRAG = 1 << 2 +""" If the platform supports it, set transparency on a floating pane +while it is dragged by the user. """ +AUI_MGR_TRANSPARENT_HINT = 1 << 3 +""" If the platform supports it, show a transparent hint window when +the user is about to dock a floating pane. """ +AUI_MGR_VENETIAN_BLINDS_HINT = 1 << 4 +""" Show a "venetian blind" effect when the user is about to dock a +floating pane. """ +AUI_MGR_RECTANGLE_HINT = 1 << 5 +""" Show a rectangle hint effect when the user is about to dock a +floating pane. """ +AUI_MGR_HINT_FADE = 1 << 6 +""" If the platform supports it, the hint window will fade in and out. """ +AUI_MGR_NO_VENETIAN_BLINDS_FADE = 1 << 7 +""" Disables the "venetian blind" fade in and out. """ +AUI_MGR_LIVE_RESIZE = 1 << 8 +""" Live resize when the user drag a sash. """ +AUI_MGR_ANIMATE_FRAMES = 1 << 9 +""" Fade-out floating panes when they are closed (all platforms which support +frames transparency) and show a moving rectangle when they are docked +(Windows < Vista and GTK only). """ +AUI_MGR_AERO_DOCKING_GUIDES = 1 << 10 +""" Use the new Aero-style bitmaps as docking guides. """ +AUI_MGR_PREVIEW_MINIMIZED_PANES = 1 << 11 +""" Slide in and out minimized panes to preview them. """ +AUI_MGR_WHIDBEY_DOCKING_GUIDES = 1 << 12 +""" Use the new Whidbey-style bitmaps as docking guides. """ +AUI_MGR_SMOOTH_DOCKING = 1 << 13 +""" Performs a "smooth" docking of panes (a la PyQT). """ +AUI_MGR_USE_NATIVE_MINIFRAMES = 1 << 14 +""" Use miniframes with native caption bar as floating panes instead or custom +drawn caption bars (forced on wxMac). """ +AUI_MGR_AUTONB_NO_CAPTION = 1 << 15 +""" Panes that merge into an automatic notebook will not have the pane +caption visible. """ + + +AUI_MGR_DEFAULT = AUI_MGR_ALLOW_FLOATING | AUI_MGR_TRANSPARENT_HINT | \ + AUI_MGR_HINT_FADE | AUI_MGR_NO_VENETIAN_BLINDS_FADE +""" Default `AuiManager` style. """ + +# Panes Customization +AUI_DOCKART_SASH_SIZE = 0 +""" Customizes the sash size. """ +AUI_DOCKART_CAPTION_SIZE = 1 +""" Customizes the caption size. """ +AUI_DOCKART_GRIPPER_SIZE = 2 +""" Customizes the gripper size. """ +AUI_DOCKART_PANE_BORDER_SIZE = 3 +""" Customizes the pane border size. """ +AUI_DOCKART_PANE_BUTTON_SIZE = 4 +""" Customizes the pane button size. """ +AUI_DOCKART_BACKGROUND_COLOUR = 5 +""" Customizes the background colour. """ +AUI_DOCKART_BACKGROUND_GRADIENT_COLOUR = 6 +""" Customizes the background gradient colour. """ +AUI_DOCKART_SASH_COLOUR = 7 +""" Customizes the sash colour. """ +AUI_DOCKART_ACTIVE_CAPTION_COLOUR = 8 +""" Customizes the active caption colour. """ +AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR = 9 +""" Customizes the active caption gradient colour. """ +AUI_DOCKART_INACTIVE_CAPTION_COLOUR = 10 +""" Customizes the inactive caption colour. """ +AUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR = 11 +""" Customizes the inactive gradient caption colour. """ +AUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR = 12 +""" Customizes the active caption text colour. """ +AUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR = 13 +""" Customizes the inactive caption text colour. """ +AUI_DOCKART_BORDER_COLOUR = 14 +""" Customizes the border colour. """ +AUI_DOCKART_GRIPPER_COLOUR = 15 +""" Customizes the gripper colour. """ +AUI_DOCKART_CAPTION_FONT = 16 +""" Customizes the caption font. """ +AUI_DOCKART_GRADIENT_TYPE = 17 +""" Customizes the gradient type (no gradient, vertical or horizontal). """ +AUI_DOCKART_DRAW_SASH_GRIP = 18 +""" Draw a sash grip on the sash. """ + +# Caption Gradient Type +AUI_GRADIENT_NONE = 0 +""" No gradient on the captions. """ +AUI_GRADIENT_VERTICAL = 1 +""" Vertical gradient on the captions. """ +AUI_GRADIENT_HORIZONTAL = 2 +""" Horizontal gradient on the captions. """ + +# Pane Button State +AUI_BUTTON_STATE_NORMAL = 0 +""" Normal button state. """ +AUI_BUTTON_STATE_HOVER = 1 << 1 +""" Hovered button state. """ +AUI_BUTTON_STATE_PRESSED = 1 << 2 +""" Pressed button state. """ +AUI_BUTTON_STATE_DISABLED = 1 << 3 +""" Disabled button state. """ +AUI_BUTTON_STATE_HIDDEN = 1 << 4 +""" Hidden button state. """ +AUI_BUTTON_STATE_CHECKED = 1 << 5 +""" Checked button state. """ + +# Pane minimize mode +AUI_MINIMIZE_POS_SMART = 0x01 +""" Minimizes the pane on the closest tool bar. """ +AUI_MINIMIZE_POS_TOP = 0x02 +""" Minimizes the pane on the top tool bar. """ +AUI_MINIMIZE_POS_LEFT = 0x03 +""" Minimizes the pane on its left tool bar. """ +AUI_MINIMIZE_POS_RIGHT = 0x04 +""" Minimizes the pane on its right tool bar. """ +AUI_MINIMIZE_POS_BOTTOM = 0x05 +""" Minimizes the pane on its bottom tool bar. """ +AUI_MINIMIZE_POS_MASK = 0x07 +""" Mask to filter the position flags. """ +AUI_MINIMIZE_CAPT_HIDE = 0 +""" Hides the caption of the minimized pane. """ +AUI_MINIMIZE_CAPT_SMART = 0x08 +""" Displays the caption in the best rotation (horz or clockwise). """ +AUI_MINIMIZE_CAPT_HORZ = 0x10 +""" Displays the caption horizontally. """ +AUI_MINIMIZE_CAPT_MASK = 0x18 +""" Mask to filter the caption flags. """ + +# Button kind +AUI_BUTTON_CLOSE = 101 +""" Shows a close button on the pane. """ +AUI_BUTTON_MAXIMIZE_RESTORE = 102 +""" Shows a maximize/restore button on the pane. """ +AUI_BUTTON_MINIMIZE = 103 +""" Shows a minimize button on the pane. """ +AUI_BUTTON_PIN = 104 +""" Shows a pin button on the pane. """ +AUI_BUTTON_OPTIONS = 105 +""" Shows an option button on the pane (not implemented). """ +AUI_BUTTON_WINDOWLIST = 106 +""" Shows a window list button on the pane (for AuiNotebook). """ +AUI_BUTTON_LEFT = 107 +""" Shows a left button on the pane (for AuiNotebook). """ +AUI_BUTTON_RIGHT = 108 +""" Shows a right button on the pane (for AuiNotebook). """ +AUI_BUTTON_UP = 109 +""" Shows an up button on the pane (not implemented). """ +AUI_BUTTON_DOWN = 110 +""" Shows a down button on the pane (not implemented). """ +AUI_BUTTON_CUSTOM1 = 201 +""" Shows a custom button on the pane. """ +AUI_BUTTON_CUSTOM2 = 202 +""" Shows a custom button on the pane. """ +AUI_BUTTON_CUSTOM3 = 203 +""" Shows a custom button on the pane. """ +AUI_BUTTON_CUSTOM4 = 204 +""" Shows a custom button on the pane. """ +AUI_BUTTON_CUSTOM5 = 205 +""" Shows a custom button on the pane. """ +AUI_BUTTON_CUSTOM6 = 206 +""" Shows a custom button on the pane. """ +AUI_BUTTON_CUSTOM7 = 207 +""" Shows a custom button on the pane. """ +AUI_BUTTON_CUSTOM8 = 208 +""" Shows a custom button on the pane. """ +AUI_BUTTON_CUSTOM9 = 209 +""" Shows a custom button on the pane. """ + +# Pane Insert Level +AUI_INSERT_PANE = 0 +""" Level for inserting a pane. """ +AUI_INSERT_ROW = 1 +""" Level for inserting a row. """ +AUI_INSERT_DOCK = 2 +""" Level for inserting a dock. """ + +# Action constants +actionNone = 0 +""" No current action. """ +actionResize = 1 +""" Resize action. """ +actionClickButton = 2 +""" Click on a pane button action. """ +actionClickCaption = 3 +""" Click on a pane caption action. """ +actionDragToolbarPane = 4 +""" Drag a floating toolbar action. """ +actionDragFloatingPane = 5 +""" Drag a floating pane action. """ + +# Drop/Float constants +auiInsertRowPixels = 10 +""" Number of pixels between rows. """ +auiNewRowPixels = 40 +""" Number of pixels for a new inserted row. """ +auiLayerInsertPixels = 40 +""" Number of pixels between layers. """ +auiLayerInsertOffset = 5 +""" Number of offset pixels between layers. """ +auiToolBarLayer = 10 +""" AUI layer for a toolbar. """ + +# some built in bitmaps + +if wx.Platform == "__WXMAC__": + + close_bits = "\xFF\xFF\xFF\xFF\x0F\xFE\x03\xF8\x01\xF0\x19\xF3\xB8\xE3\xF0" \ + "\xE1\xE0\xE0\xF0\xE1\xB8\xE3\x19\xF3\x01\xF0\x03\xF8\x0F\xFE\xFF\xFF" + """ Close button bitmap for a pane on wxMAC. """ + +elif wx.Platform == "__WXGTK__": + + close_bits = "\xff\xff\xff\xff\x07\xf0\xfb\xef\xdb\xed\x8b\xe8\x1b\xec\x3b\xee" \ + "\x1b\xec\x8b\xe8\xdb\xed\xfb\xef\x07\xf0\xff\xff\xff\xff\xff\xff" + """ Close button bitmap for a pane on wxGTK. """ + +else: + + close_bits = "\xff\xff\xff\xff\xff\xff\xff\xff\xcf\xf3\x9f\xf9\x3f\xfc\x7f\xfe" \ + "\x3f\xfc\x9f\xf9\xcf\xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" + """ Close button bitmap for a pane on wxMSW. """ + +pin_bits = '\xff\xff\xff\xff\xff\xff\x1f\xfc\xdf\xfc\xdf\xfc\xdf\xfc\xdf\xfc' \ + '\xdf\xfc\x0f\xf8\x7f\xff\x7f\xff\x7f\xff\xff\xff\xff\xff\xff\xff' +""" Pin button bitmap for a pane. """ + +max_bits = '\xff\xff\xff\xff\xff\xff\x07\xf0\xf7\xf7\x07\xf0\xf7\xf7\xf7\xf7' \ + '\xf7\xf7\xf7\xf7\xf7\xf7\x07\xf0\xff\xff\xff\xff\xff\xff\xff\xff' +""" Maximize button bitmap for a pane. """ + +restore_bits = '\xff\xff\xff\xff\xff\xff\x1f\xf0\x1f\xf0\xdf\xf7\x07\xf4\x07\xf4' \ + '\xf7\xf5\xf7\xf1\xf7\xfd\xf7\xfd\x07\xfc\xff\xff\xff\xff\xff\xff' +""" Restore/maximize button bitmap for a pane. """ + +minimize_bits = '\xff\xff\xff\xff\xff\xff\x07\xf0\xf7\xf7\x07\xf0\xff\xff\xff\xff' \ + '\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff' +""" Minimize button bitmap for a pane. """ + +restore_xpm = ["16 15 3 1", + " c None", + ". c #000000", + "+ c #FFFFFF", + " ", + " .......... ", + " .++++++++. ", + " .......... ", + " .++++++++. ", + " ..........+++. ", + " .++++++++.+++. ", + " ..........+++. ", + " .++++++++..... ", + " .++++++++. ", + " .++++++++. ", + " .++++++++. ", + " .++++++++. ", + " .......... ", + " "] +""" Restore/minimize button bitmap for a pane. """ + +#---------------------------------------------------------------------- + +down_focus_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAIAAABhFeQrAAAAA3NCSVQICAjb4U/gAAACaUlE" + "QVRIib2WvWsUQRjGn5mdnWxyTaqz9q+QlLnGToSgWAYDNjbpNCAGDGIvaRPbNJGQyiAEbK+w" + "sAo2qexyEhbxsvt+jMXc3u3liPfhmWeXnWVm9vc+vO/M7prVzTb+gxyA7Ye/nXPWWmvtXKBb" + "B9YBcM5lWZam6by4QNcBsNamaeq9d87NmWutdc59+NgGoKIizCwsxMTMFI8oZmZilzomZiFm" + "FWERaXbv7eyueO+TJEHM79LSkvfeWnv2qftgex2ASGDmkrUkKUspiIuCy5IL4qKQgnghdQVx" + "ScKsxCKiaH8lIu99NOwAEFGsG4Dv5xeiQYOKBBYVUWJlFhIVVmIlEZGQJKVIYBbWoKqqwQN5" + "nqdpuri42OMys6rGOG/X78yW0bXWNyLqcyyAEEIIYcYK3aB5Lazb4o5fsPc3ToFaloxBwMle" + "6+9Pjfd7stda6HR85+dCPC86Y6ETcQEcHz32eZ7meZrnx0ePJnlk0vwenm70r/PkTgWdjjuV" + "rnPPfvxaa+3NcL3GMaub7XdPtNFoZFn24tmX1/trAOLuM6aaFQwQYExAMPWNaUw1FW+eHj5/" + "dbfZbDYajY33F7e1L4gUA5uo3fd8AWbQH70bjGqEyxLq3LoMYhKCgakCIWZoLLdkMRE43Iy0" + "tWi9QOP8xoIFAyBUjF7dgOizb9iMhLmByxIAHbAGKYigUPX3hqog47hSvfCHfYRaDcNg3IzO" + "7GmydRaGi37zMujrut/9l58nijROQ9yd3ZXLy8urq6vZWFmW9f+Yhrje++XlZR2keDpZa4f+" + "H/pKkiR+/f9dDsDWgQW6QHcuxKg/ZbVtCjjzINkAAAAASUVORK5CYII=") +""" VS2005 focused docking guide window down bitmap. """ + +#---------------------------------------------------------------------- +down_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAIAAABhFeQrAAAAA3NCSVQICAjb4U/gAAACY0lE" + "QVRIib2WwWrUUBSG/3tzc5s2m0JhXPsU0u1s3Lkpui4W3PgAuhAFi2/QbesTVEphwCIU3Hbh" + "wk2LG1fujJQgtMk55x4Xd2aS6VAzM479JyQhufnOz3/uzcQMBgP8BzkAeZ4756y11tqlQIui" + "cACcc1mWpWm6ZK61Nk1T771zbilcxBxiAs659x/OAAQJIswsLMTEzBR/UczMxC51TMxCzEGE" + "RaR39WB3b9N7nyTJkLu2tua9t9ZefLx69GYbgIgyc82hJqlrqYiriuuaK+Kqkop4JXUVcU3C" + "HIhFJODsCxF57xu/RBT7BuDb958SNGgQUZYgEogDs5AE4UAcSEREk6QWUWbhoCGEENQDZVmm" + "abq6ujrkMnMIIdZ5t31vsUC3+l+JaMyxAFRVVRds0C1azsS6O273hH24cwq0UjIGipP9/t+f" + "6vZ7st9fKQpf/FqJ28+iEzoTF8Dx0RNflmlZpmV5fPR4lkdmzffwdGe8XyZ3Luh83Ll0k3vx" + "4/dWf3+B/Q2OGQwGGxsbeZ5nWfbi2efXB1sA4uozZjRKDaAwRqGmvTCNGQ3F26eHz1/d7/V6" + "eZ6fn5/f1bogCmhsonU+9AWY5nr0bjCtKS6LtrltGcQQ1MCMCiEm1MmtWUwETh6mjq1qw0Jd" + "fmPD1ADQEWPYNyD6HBs2U2Vu4bIoEBpWE0EE6ej68NaoSBdXRi/8SR/a6qE29830yKFmm2c6" + "2fTbp8FYN/0evPw0U6UuTXB39zYvLy+vr68XY2VZNv5imuB679fX10MT8Xyy1k58P4yVJEn8" + "9/93OQBFURRFsRTcWH8An5lwqISXsWUAAAAASUVORK5CYII=") +""" VS2005 unfocused docking guide window down bitmap. """ + +#---------------------------------------------------------------------- +left_focus_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAdCAIAAABE/PnQAAAAA3NCSVQICAjb4U/gAAACVElE" + "QVRIibWWvW8TQRDF3+7Ors8ShSsaSpo0dEgoFcINVChSBFRUkajpIKKgiPgP0pqGJiAhITqE" + "FIk2BQUVHT2VK+y7ndmhWN/5Ixcbh8tYWvtO8vvdm5mdPXPv+RmuMgjA670/RGSttdZ2q354" + "YgkAERVF4b3vHABMCIC11nsfQiCiqwJYa4noxbNvOw/6AJIk62ySJMLMwhI5MnPMnxzMzJHJ" + "E0dmicxJhEXk+uTO0fFuCME5h1yDxbh5+zEz93q+LGOv50WUmStOVZSqkjJyWXJVcRm5LKWM" + "3PNURq6iMKfIIpJw9n08Hg8Gg36/3wL4+eu3iHpykcWTS5pElCWJpMiJWaIk4RQ5RRERda4S" + "UWbhpCmllDQA0+k0pZQFVwF3bzEAZ5N3jgje+0COnPVknbUAdm5cW5/1/eGPxcuL2saoAczC" + "DQWAV0/fr1c/HxcBFNC8QGEMMu3NuyddAfIjG9QLjKJTB3NIHV050EZuoQI6+93q4P7B6TYA" + "A2gW1xlC61K0OXi492HZ6EbAnGFqEmBmhlYc7A9HutRq/wgA5plSwDT9tORgfzgCNsmv2QfQ" + "OvEwps7BooOPpwebxFsB83wazdWdl321BjOGWWejrciZ0+wBMwef76LPnx6trXFrivIfVOsl" + "P2V7FwH4MhpuCTBLX7mjckU628naTImlrdDdLDJ59OT+XDDU8SwyTX+Y2bC7hIPVA+fty6/b" + "SmwBODreHY/H0+n0P0WLomjegJYAIYTBYNAcp5cOa20IoQXgnMuvAh0GATg8scAEmHQrneMv" + "3LAo6X/e0vAAAAAASUVORK5CYII=") +""" VS2005 focused docking guide window left bitmap. """ + +#---------------------------------------------------------------------- +left_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAdCAIAAABE/PnQAAAAA3NCSVQICAjb4U/gAAACTklE" + "QVRIibWWPWsUURSG3/u5u8RiKxtLmzR2gqQSttFKhKBWqQL+BQXL4D9IGxsrBUGEFCIEbC0s" + "rOzshYHt3Jl7PizuzsduJhs3Ts7C3Z2BfZ95zzn33DGnp6e4zvAAdnZ2vPfWWmvtsOpFUXgA" + "3vvxeBxCuC6AtTaEEGP03g8LQE5RTo73/sXzr7sPJwCExTorLMxExMSJEhGl/MlBRJTIB0+J" + "iBORMBMz3/xz7+h4L8bonFsCunH77lMiGo1CWabRKDArEVUkVeKq4jJRWVJVUZmoLLlMNAq+" + "TFQlJpJEzCz49n0+n0+n08lk0gP4+es3swbvEnHwTlSYlViYJZEQcWJhkkSSmJnVuYpZiZhE" + "RUREI7BYLESkTVE37t8hAM5KcM57hBCid97Z4K2zFsDurRubk74/+9G9vKhtjBrAdG4oALw6" + "eLdZ/XxcBFBA8wKFMci012+fDQXIj2xQLzCKQR20kDqGcqCNXKcCuvzd6+DB4dk2AANoFtcl" + "QutS9Dl49Pj9qtFLAS3D1CTALA2tOdifnehKq/0jAGgzpYBp+mnFwf7sBLhMfsM+gNaJhzF1" + "DroOPpwdXibeC2jzaTRXty37eg2WDLPJRl+RM6fZA6YFn++iTx+fbKxxb4ryH1TrJT9lfxcB" + "+Hwy2xJgVr5yR+WKDLaTtZkSK1thuFlk8ujJ/dkxNPAsMk1/mOWwu4KD9QPnzcsv20psATg6" + "3pvP54vF4j9Fx+Nx8wa0AogxTqfT5ji9clhrY4w9AOdcfhUYMDyAoiiKohhWt4m/9Qss43IB" + "CBMAAAAASUVORK5CYII=") +""" VS2005 unfocused docking guide window left bitmap. """ + +#---------------------------------------------------------------------- +right_focus_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAdCAIAAABE/PnQAAAAA3NCSVQICAjb4U/gAAACWElE" + "QVRIibWWv2/TQBTHv3e+uyRbJwZWFv4AJNSRLjChSkhlYqrEzFZVDAwVC3PXsrAUISTExlKJ" + "tQMSWzcmFqaqQqT2+8VwtuMkbiBp+mzF0pPz/dzX7z373IMXp7jJCABebf8JIXjvvffrVd8/" + "9gFACGE4HMYY1w4AxgGA9z7GmFIKIdwUwHsfQth7/vXuoxEAFfWFV1ERZhYWYmJmykcOZmbi" + "EAMTsxCzirCI3BrfPzjcTCkVRYFcg27cubfDzINBLEsaDKKIMXPFWpFUlZTEZclVxSVxWUpJ" + "PIihJK5ImJVYRBSn387Pzzc2NkajUQ/g7McvEYuhIJYYCjUVMRYVUWJlFhIVVmIlERErikrE" + "mIXVVFXVEnB5eamqWXAW8Gb39uKHevbzNwARZVFirUSIlFkqEVUD8Pb71P1Lt83LZ+8BAA7O" + "AYABMAPcFfcvDXj97ikA5wxmHVVrf64LyA7Mau1so770uVjRQa1lzaKtSc2ZWAR4uHsyn2xq" + "YBnjbFp4zsRCBw6Ptz/M5GoHgLla15AfUV8F/gEwA/Bk66jPgXNwMNhkyf199F816DIaB5bx" + "yB2aO2qFLsp/+Xiy22YmczA1Cq4hLQlwsK56xwHgumLWln0pgPv8aWcmNdVF7TKujkWAL0db" + "88nagXWb0xYgVn4XWf0CymdzWQNgapJzWC7HCnPQF5M5aBhXzthqgMkcoF57Zxx6YvaDMzO3" + "148pwMHhJhFdXFwQ0XVEh8NhuwOaAqSUUkoxxvaLulp471NKPYC80ci7gXVFALB/7IExMF6j" + "bht/AXIQRaTUgkiHAAAAAElFTkSuQmCC") +""" VS2005 focused docking guide window right bitmap. """ + +#---------------------------------------------------------------------- +right_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAdCAIAAABE/PnQAAAAA3NCSVQICAjb4U/gAAACVElE" + "QVRIibWWv2sUQRTHvzM7M3dHmlQWtjb+AYKkTaOVCEKsrAL+CxaWwcY6bWysRAQRUtgEbC0E" + "u3RWNsJCCILZfb8sZvdu925zej/yveMWHnvvM9837+2OOz09xU0qANjZ2QkheO+999vNXpZl" + "ABBCGI/HMcabAnjvY4wppRDCdgHIJcrFCSG8eP7l7sMJABX1hVdREWYWFmJiZsqfLGZm4hAD" + "E7MQs4qwiNz6c//oeC+lVBRFA+jqzr0DZh6NYlXRaBRFjJlr1pqkrqUiriqua66Iq0oq4lEM" + "FXFNwqzEIqL4+u3i4mJ3d3cymQwAzn/8ErEYCmKJoVBTEWNRESVWZiFRYSVWEhGxoqhFjFlY" + "TVVVLQFXV1eqOitRV68Pby+v6fnP3wBElEWJtRYhUmapRVQNwJvvvftXbpuXz94BABycAwAD" + "YAa4a+5fGfDq7VMAzhnMOllt+rMpIDswa3JnG81lyMWaDppc1i7a2tCCiWWAB4dni8F2Dyxj" + "nPUTL5hY6sDh0eP3c7HGAWCuyWvIJRragX8AzAA82T8ZcuAcHAw2W/JwH/3XHnQZrQPLeOQO" + "zR21Rhflv3w4O5xGZnPQGwXXklYEOFg3e8cB4LrJbLrtKwHcp48Hc6FeF02Xcb2WAT6f7C8G" + "GwfWbU5bglj7WWTNAyh/28sWAL1JzrK8HWvMwZBmc9Ayrp2x9QCzOUCz9s44DGj+hTM3t5ur" + "Bzg63iOiy8tLItok6Xg8np6AeoCUUkopxjh9o64n731KaQCQDxr5NLAtBQBlWZZlucWkXf0F" + "imtJnvbT2psAAAAASUVORK5CYII=") +""" VS2005 unfocused docking guide window right bitmap. """ + +#---------------------------------------------------------------------- +tab_focus_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAIAAADZ8fBYAAAAA3NCSVQICAjb4U/gAAAC10lE" + "QVRIidWWT0gUcRTH387+ZveXZgzsbmvSsmqEfzBJSYz+gUsHCYJgISPytCQKFhJdpIN0qIUO" + "ezIUaU/roQ5eEzp46ZT/DhG4haCXdSUPK+Wuzvze+02HgdFmFqMtD76Bx8yb3/v8vr/3Zn4z" + "np6ReTgCYwAwdqfEGFMURVGU/wIdfaswAGCMcc5VVf1fXIBdBgCKoqiq+nxkobn3BABIkgBA" + "hIiEJFAgorAOyxARBTKVoUAkgSiJkIhO73a/nLjGOd/nWkrPXbqLiH6/CgBEJiIaKA1BhkG6" + "QF1Hw0BdoK6TLtCvMl2gIQhRCiQiCfPLm5ubtbW1YNXXtuzadyJTZV4AkKYkMpEkkRQoEUmQ" + "JJQCpSAiMr1eg8hEJJSmlFJK0wdQLBYR0cl9laj7l6LGY5/tc2ejsrmdgeGJbG5nYHgym9uJ" + "x9KHeGuMNd7B8fSMzCfvyerq6rHHn2bmEgPDE09G+/9WaSqZmRofisfSiadnotHoozclp94K" + "oGWznNxn/e8q4LqznNwXmb4KuO6s4643lZyugOvOcj8PDyrgurOOe30r05tKZv7ALavXmszt" + "rXZZL7EjhTmuU8lpRxNSyemZuUEAmJlLOPzU+CAAuKFluO7OWpF4LO1OPsTcejOOTcRepqXR" + "tngs7Y6U4bbcqNrIF6bGh6yt0prAgm7kC6E2fSNfWF9b2d7e1jStvqGlbMSmeRsuP7zZZvp8" + "PvCoW1s/a2qq7vddD57y3b7VZfmNfGFxadUQBgqztbWps7Pdy04uLq0WSyVJnoMRgUY45NM0" + "bXZZ7OvtaA8vLOdeT85mP+4eXN35K/6W5nBjxFz5tv7+w8LWF3+oTW+IBpsavStf1+xIfTTY" + "cNbknDPGfqsD5/xCa6AuDFe791xtEJyHIhHedTGw17tnj49EeFdH8GAkEAhwzgF+7HMZY5qm" + "cc6tD6rDGGOMMUS075aN2Ho9R/R/9gsXZ7dKHM+ODQAAAABJRU5ErkJggg==") +""" VS2005 focused docking guide window center bitmap. """ + +#---------------------------------------------------------------------- +tab_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAIAAADZ8fBYAAAAA3NCSVQICAjb4U/gAAAC1klE" + "QVRIidWVTWgTQRTHJ5vZZEyMLKSx1RbSImJbioeiCKIechLBU8CCtadAaaGIFC/iQTxowENO" + "hUohp/Tiocdce/Gk/TiIpTm0JCnmA+OaFJs2u/PerIcp27IbKsZ66Ft47P5n3m/evLc768lm" + "s+Q/GCWEBINBSqmiKIqinApU13VKCKGUMsZUVT1lrqIoqqq+frYyeP8cIUSgIIQgAgACcuAA" + "wOUlDQCAA1UpcADkAAIREPHiwa2383cYY0TWwa7AlRuPAMDvVwkhiBYAmCBMjqaJBgfDANME" + "g4NhoMHBr1KDg8kRQHBAREE+r1er1Z6enkOubbn8d0RLpV5CiLAEogUoEAUHAYAcBYLgIDgi" + "ouX1mogWAIKwhBBCWD5Cms0mADi57xKX/6Ws8dgX+97ZqFxpb3JmPlfam5x5nyvtxWPpE7yc" + "I+c7OJ5sNhsOh4PB4Kunn5aWE5Mz87MvJv4201QyszA3HY+lE88vRaPRYrHozLcDaNsoJ/fl" + "xIcOuO4oJ/dNZqwDrjvqrOebSi52wHVHud+HJx1w3VFnvb6d5ZtKZv7AbZuvXMztZbvkR+wI" + "oY7nVHLR0YRUcnFpeYoQsrSccPiFuSlCiBvahuvurFTisbQ7+ARz55txHCL2NmWOtsVjabfS" + "hjt0L1Cu1BfmpuVRKReQ0HKlHhkxypV6Ib/ZaDQ0TesfGGqr2DTv+Ph4IBDw+XzEo9Zqv0Kh" + "wOOxu10XfA8f3JS+XKmvrm2Z3ARuDQ9fGx297qXnV9e2mvv7Aj3HFQ5md8Snadru7u7Rua6q" + "6sp6aTNXzX08OL67q7f9Q4PdTP1ZKCn5Qq321R8ZMQaiXf19VuGbJ1/8IZX+aNdAnxWJRHp7" + "e7e3t4+4oVCo0Wjout5qtdx9YIwxxlqtlj3aVgmHw5qmbWxsHNWXUqppGmNM/lCd/aWUUgoA" + "9mhbhTFGKT3sm67ruq7v7Oy4cR3bb5uW079be13FAAAAAElFTkSuQmCC") +""" VS2005 unfocused docking guide window center bitmap. """ + +#---------------------------------------------------------------------- +up_focus_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAIAAABhFeQrAAAAA3NCSVQICAjb4U/gAAACTUlE" + "QVRIic2WP28TMRjGH/85c1miqEF8CnbUgSFdukVRmZGQ+gW6Vgwd+hW60Yq1gMQMQzpHGZAg" + "C6JS+QIMmUju/L5+Ge6ulzoRTcMh5TmdZfv8/vT4Pcu26h2N8R9kAZwMfltrtdZa60agx5fa" + "ArDWpmmaJElTXGBmAWitkyRxzllrG+Zqra21bz+OAQQOzETExJ48EfniKURE5MkmljwRe6LA" + "TMz8ZPbs9GzXOWeMQZHfW33/NOufvALALESUU8g95zlnnrKM8pwyT1nGmadHic085Z6Jgidm" + "Dhh/mU6nnU6n1WrFXAA/fv7iIEECsxAH5uApELHnwBQ8Bc/MLMbkzELEFCSEEII4YD6fhxAK" + "Tsx9/tQDEIgqOzRggAQQQEEBguIFgKoNqDdfvy1yYq41emG4QKkSpDQAiNQfFQClpBoZcaK2" + "s0awEHzXVVyri1gxN7FaFuILu6qwtAyokqWWwEvcxNTTKsIK95Cqs4JJzV02vMJvHS/1cFFQ" + "UGV+K3tSzWlZq/5bOWGllIio0mzpX+pZSJXdVRmOuabcItRC+ZfKcn+pFRvN65fvNihj9Y7G" + "o9FoMplcX18f9M5lUx30zofD4WQyubm56R2Nm9oYY20B98XeRfPcAro+ei1uf/DBt9u+3c7b" + "7f7gfTPc/cOr7HE36+5k3Z28u5N1u/uHV/dG3X+gfb7YW8dgpC1YD1vBjfP7oEW6Lvf0bHc6" + "nc7n881YaZre3pjucJ1znU7n9qx+qLTWzrkVXGNMcav4d1kAx5camAGzRoiF/gCKPmudbgYP" + "HQAAAABJRU5ErkJggg==") +""" VS2005 focused docking guide window up bitmap. """ + +#---------------------------------------------------------------------- +up_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAIAAABhFeQrAAAAA3NCSVQICAjb4U/gAAACTklE" + "QVRIic2WP4vUQBjGn/mTMUtgWS6yvb29XGGzzXXHwdWCcGBzH8BCweK+wnWyWKtot6DNge0V" + "gjYnNn4BA9vdJvO+81ok2ewmi7d3RtgnZEgm8/545skwiZrNZvgPsgCSJLHWaq211r1Asyyz" + "AKy1cRxHUdQzV2sdRZFzzlrbCxdlDmUC1to3Hy8BBA7MRMTEnjwR+fIoRUTkyUaWPBF7osBM" + "zDy+fnR2vu+cM8ZU3KV+fLo+fPUUALMQUUGh8FwUnHvKcyoKyj3lOeee7kU291R4JgqemDng" + "8ut8Ph+NRoPBoM0F8PPXbw4SJDALcWAOngIRew5MwVPwzMxiTMEsRExBQgghiAMWi0UIoclh" + "VY8fegACUVWHBgwQAQIoKEBQngBQ3wPq9bfv7XzX7o1eGS5QqgIpDQAizUMFQCmpR3bf26qc" + "NYKV4nVX7aumaavNjayWlfrSriotdQF1WKoD7nAj00yrLCvdQ+rOGiYNt2t4g9+mXprhoqCg" + "qnxre1LPqatN762asFJKRFRltvIvzSykTndTwm2uqbYItdL+5aLbX2nDRvPiyds7tC2p2WyW" + "pmmSJHEcP3/25cPFSXfQNjqeTE9fPhiPx0mSXF1d9bMxdrUD3OPJtH9uCd0evRX38Oi9Hw79" + "cFgMh4dH7/rhHpxc5PfTPN3L070i3cvT9ODk4saqmz9on6eTbQy2tAPrYSe47XxvtUi35Z6d" + "78/n88VicTdWHMfLP6Y1rnNuNBotv9W3ldbaObeBa4wp/yr+XRZAlmVZlvWCW+oP2FUt8NYb" + "g5wAAAAASUVORK5CYII=") +""" VS2005 unfocused docking guide window up bitmap. """ + +#---------------------------------------------------------------------- +down = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAIAAABhFeQrAAAAA3NCSVQICAjb4U/gAAACFUlE" + "QVRIidWVPWvbUBSG3+tv8KKpnYtH/4DuJtCti2nntBm7depQWih0zT9w/AtSQsDQ0JIfkKFD" + "wRC61Iu3uBgRiKXz1eFalizb8QfxkFdCurofz3l1zhVyg8EAe1BhH9BHyC3NWkTU/XYFQEVF" + "mFlYiImZyR9ezMzEpXKJiVmIWUVYRJ7cPT/uHizhFgqF6+93Lz8fAhAxZo5ZY5I4log4ijiO" + "OSKOIomIq+VSRByTMCuxiCiufo3H4yAI8txisQjgz98bUVNTEWNRESVWZiFRYSVWEhGxYjEW" + "MWZhNVVVtQoQhuESrtfXw6e7JbTd+k1E6dv3+/3dQPeo3+8/3n22Si+OLgFLn52D4aLTun/V" + "er8XnVZ1NKqM/lX9eTNaC92IC+D87HUlDMthWA7D87NXmyzZNL+nl0ez60Nyt4Jux91Kee71" + "8Lbd6uxwzXFcr9drNpv+4f2bn59O2gDMAMC5ZJY5wOCcwZxlV7tkKr68PX338Vmj0cBev7f8" + "d0GkSG0i0576Alza7707LGqBy2JZblYOPgnm4JJA8Blay41ZnAfO3xbumWjTQOv8+oKZA2AJ" + "Y1o3wPucGXYLYVZwWQzQlJWmwIMs6Z8OJUHWcUU1aWZ9WKaGlo67xZlTbbbPbL7oq7fBTHm/" + "Jx9+bBRpnea4x92D4XA4mUx2Y9VqteVcAEEQ1Ov13bhZ5fP7IFB4v/v41f8HFQ1ap0nfm7YA" + "AAAASUVORK5CYII=") +""" VS2005 unfocused docking guide window down bitmap. """ + +#---------------------------------------------------------------------- +down_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAIAAABhFeQrAAAAA3NCSVQICAjb4U/gAAACaUlE" + "QVRIib2WvWsUQRjGn5mdnWxyTaqz9q+QlLnGToSgWAYDNjbpNCAGDGIvaRPbNJGQyiAEbK+w" + "sAo2qexyEhbxsvt+jMXc3u3liPfhmWeXnWVm9vc+vO/M7prVzTb+gxyA7Ye/nXPWWmvtXKBb" + "B9YBcM5lWZam6by4QNcBsNamaeq9d87NmWutdc59+NgGoKIizCwsxMTMFI8oZmZilzomZiFm" + "FWERaXbv7eyueO+TJEHM79LSkvfeWnv2qftgex2ASGDmkrUkKUspiIuCy5IL4qKQgnghdQVx" + "ScKsxCKiaH8lIu99NOwAEFGsG4Dv5xeiQYOKBBYVUWJlFhIVVmIlEZGQJKVIYBbWoKqqwQN5" + "nqdpuri42OMys6rGOG/X78yW0bXWNyLqcyyAEEIIYcYK3aB5Lazb4o5fsPc3ToFaloxBwMle" + "6+9Pjfd7stda6HR85+dCPC86Y6ETcQEcHz32eZ7meZrnx0ePJnlk0vwenm70r/PkTgWdjjuV" + "rnPPfvxaa+3NcL3GMaub7XdPtNFoZFn24tmX1/trAOLuM6aaFQwQYExAMPWNaUw1FW+eHj5/" + "dbfZbDYajY33F7e1L4gUA5uo3fd8AWbQH70bjGqEyxLq3LoMYhKCgakCIWZoLLdkMRE43Iy0" + "tWi9QOP8xoIFAyBUjF7dgOizb9iMhLmByxIAHbAGKYigUPX3hqog47hSvfCHfYRaDcNg3IzO" + "7GmydRaGi37zMujrut/9l58nijROQ9yd3ZXLy8urq6vZWFmW9f+Yhrje++XlZR2keDpZa4f+" + "H/pKkiR+/f9dDsDWgQW6QHcuxKg/ZbVtCjjzINkAAAAASUVORK5CYII=") +""" VS2005 focused docking guide window down bitmap. """ + +#---------------------------------------------------------------------- +left = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAdCAIAAABE/PnQAAAAA3NCSVQICAjb4U/gAAACMElE" + "QVRIib2WPYsTURSG3zv3ThKJRSqblDYLwU6wFMKCViIEtbKQ/QdWgrXt/oO4hZWCIEIKUfYH" + "WFgIATuraewHM3PPh8XNZCaTSWI2oydwMx/kfeY959wzMbPZDC3FaDTavOi23Wgron8n/Z8A" + "rnry/NmXk/vXAAhLZCNhYSYiJvbkiciHTwgiIk8uduSJ2BMJMzHzjd93zi9OmwEAbt5+TETd" + "bpxlvtuNmZWIcpLcc55z5inLKM8p85RlnHnqxi7zlHsmEk/MLPj6LUmS4XDYDPjx8xezxs56" + "4thZUWFWYmEWT0LEnoVJPIlnZlZrc2YlYhIVERHtAIvFYquDu7cIgI0kttY5xHHccdbZKHaR" + "jSIAJ8Pru5M+GX+vnm4rslEDmMoFBYCXT9/uVt+MbQAFNCxQGINAe/XmSVuA8MgGxQKjaNVB" + "CSmiLQe6kqtUQJfHjQ7unV0eAjCABnFdIrQoRZODBw/frRvdCygZpiABZmmo5mAynupaq/0l" + "ACgzpYBZ9dOag8l4CuyT37EPoEXiYUyRg6qD95dn+8QbAWU+jYbqlmWv12DJMLtsNBU5cFZ7" + "wJTgzS76+OHRzho3pij8QLVYwlM2dxGAT9PxgQCz9hU6KlSktZ2sqymxthXam0UmjJ7QnxVD" + "Lc8is+oPsxx2V3BQf+G8fvH5UIkDAOcXp0mSVF94V4ter5emab/frwMADAaDcOOYSNO00+mE" + "4zrgePWaiAMwn8+PF932//MPv0Uk8OspzrYAAAAASUVORK5CYII=") +""" VS2005 unfocused docking guide window left bitmap. """ + +#---------------------------------------------------------------------- +left_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAdCAIAAABE/PnQAAAAA3NCSVQICAjb4U/gAAACVElE" + "QVRIibWWvW8TQRDF3+7Ors8ShSsaSpo0dEgoFcINVChSBFRUkajpIKKgiPgP0pqGJiAhITqE" + "FIk2BQUVHT2VK+y7ndmhWN/5Ixcbh8tYWvtO8vvdm5mdPXPv+RmuMgjA670/RGSttdZ2q354" + "YgkAERVF4b3vHABMCIC11nsfQiCiqwJYa4noxbNvOw/6AJIk62ySJMLMwhI5MnPMnxzMzJHJ" + "E0dmicxJhEXk+uTO0fFuCME5h1yDxbh5+zEz93q+LGOv50WUmStOVZSqkjJyWXJVcRm5LKWM" + "3PNURq6iMKfIIpJw9n08Hg8Gg36/3wL4+eu3iHpykcWTS5pElCWJpMiJWaIk4RQ5RRERda4S" + "UWbhpCmllDQA0+k0pZQFVwF3bzEAZ5N3jgje+0COnPVknbUAdm5cW5/1/eGPxcuL2saoAczC" + "DQWAV0/fr1c/HxcBFNC8QGEMMu3NuyddAfIjG9QLjKJTB3NIHV050EZuoQI6+93q4P7B6TYA" + "A2gW1xlC61K0OXi492HZ6EbAnGFqEmBmhlYc7A9HutRq/wgA5plSwDT9tORgfzgCNsmv2QfQ" + "OvEwps7BooOPpwebxFsB83wazdWdl321BjOGWWejrciZ0+wBMwef76LPnx6trXFrivIfVOsl" + "P2V7FwH4MhpuCTBLX7mjckU628naTImlrdDdLDJ59OT+XDDU8SwyTX+Y2bC7hIPVA+fty6/b" + "SmwBODreHY/H0+n0P0WLomjegJYAIYTBYNAcp5cOa20IoQXgnMuvAh0GATg8scAEmHQrneMv" + "3LAo6X/e0vAAAAAASUVORK5CYII=") +""" VS2005 focused docking guide window left bitmap. """ + +#---------------------------------------------------------------------- +right = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAdCAIAAABE/PnQAAAAA3NCSVQICAjb4U/gAAACMklE" + "QVRIibWWvY7TUBCFz83vojSuKNiShgdAol8hQYWQkJaKAuUNtqWmoeANFgoqhJAQHRLaB6BA" + "orC0HWnSUEURK2LPmRmKayeO4wTysydWbI+c+e7xzDgOo9EIK0rTdDW4m0Ij4FBK07R1fdmj" + "rh3QqZ6cPf965+ENAKbWardMTZWkUoVCUuIniiSFnW6HQqqQpkpVvfnn3uu395sBAG7fPSXZ" + "73ezTPr9rqqTzGm5aJ5rJswy5jkzYZZpJux3O5kwFyVNqKqGb9/H4/Hx8XEz4PLnL1XvdtpC" + "7Xba5qbqVFM1oZEqakoTmqiqerudqzqpNDczM+8Bs9lsrYNXw1ub7+nl+DcAVaOa0HJVESM1" + "VzVzAG9+LF2/dZFfPHsPAAgIAQAcgDsQ1ly/NeDlu6cAQnC4V7L6/GtfQHTgXuSONopdk4sd" + "HRS5vFy0l6EVE5sAD4YXq8GyBh4xwZcTr5jY6CDg0eMPtVjhAPBQ5HXEW9RUgX8A3AE8OTlv" + "chACAhy+WHJzH/1XDaqM0oFHPGKHxo7aoYviTz5eDOeRxRwsjUIoSVsCAryaveIACNVkPi/7" + "VoDw+dNpLbTURfNlrNcmwJfzk9Vg4cCrzekbEDs/i7x4AMWt3B0AsDTJUR7LscMcNGkxByVj" + "7YztBljMAYq1V8ahQfU/nNrc7q/6e9FkMplOpyKyT9Kjo6MkSQaDQZqmdQdJkiRJsk92AFdX" + "V71eLx7XAQfRYDCYH68FHOr19C8Ad0k9S0aHzwAAAABJRU5ErkJggg==") +""" VS2005 unfocused docking guide window right bitmap. """ + +#---------------------------------------------------------------------- +right_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAdCAIAAABE/PnQAAAAA3NCSVQICAjb4U/gAAACWElE" + "QVRIibWWv2/TQBTHv3e+uyRbJwZWFv4AJNSRLjChSkhlYqrEzFZVDAwVC3PXsrAUISTExlKJ" + "tQMSWzcmFqaqQqT2+8VwtuMkbiBp+mzF0pPz/dzX7z373IMXp7jJCABebf8JIXjvvffrVd8/" + "9gFACGE4HMYY1w4AxgGA9z7GmFIKIdwUwHsfQth7/vXuoxEAFfWFV1ERZhYWYmJmykcOZmbi" + "EAMTsxCzirCI3BrfPzjcTCkVRYFcg27cubfDzINBLEsaDKKIMXPFWpFUlZTEZclVxSVxWUpJ" + "PIihJK5ImJVYRBSn387Pzzc2NkajUQ/g7McvEYuhIJYYCjUVMRYVUWJlFhIVVmIlERErikrE" + "mIXVVFXVEnB5eamqWXAW8Gb39uKHevbzNwARZVFirUSIlFkqEVUD8Pb71P1Lt83LZ+8BAA7O" + "AYABMAPcFfcvDXj97ikA5wxmHVVrf64LyA7Mau1so770uVjRQa1lzaKtSc2ZWAR4uHsyn2xq" + "YBnjbFp4zsRCBw6Ptz/M5GoHgLla15AfUV8F/gEwA/Bk66jPgXNwMNhkyf199F816DIaB5bx" + "yB2aO2qFLsp/+Xiy22YmczA1Cq4hLQlwsK56xwHgumLWln0pgPv8aWcmNdVF7TKujkWAL0db" + "88nagXWb0xYgVn4XWf0CymdzWQNgapJzWC7HCnPQF5M5aBhXzthqgMkcoF57Zxx6YvaDMzO3" + "148pwMHhJhFdXFwQ0XVEh8NhuwOaAqSUUkoxxvaLulp471NKPYC80ci7gXVFALB/7IExMF6j" + "bht/AXIQRaTUgkiHAAAAAElFTkSuQmCC") +""" VS2005 focused docking guide window right bitmap. """ + +#---------------------------------------------------------------------- +tab = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAIAAADZ8fBYAAAAA3NCSVQICAjb4U/gAAACq0lE" + "QVRIidWWTWgTQRTHJ+3ETEugERrtF6QhFhKsIlgQRITm5LkBvdiDhBZKc5DiRXryoAEPPRUi" + "pTnVi4cee5NePAitFtFoVxSyheYDa02KCd3deW/Gw2Cy7MZaIz307TK7/Gfeb9587Nvx6LpO" + "TsA6TgJ6glyqHgcHB4/ub0ZvdRFCBApCCCIAICAHDgBcXcoAADhQLwUOgBxAIAIinju89iRz" + "gzHW5Pb09BBCImO3AcDn8xJCECUAWCAsjpaFJgfTBMsCk4NposnB56UmB4sjgOCAiIJsbJXL" + "5b6+PsYYtQev5b8hSi/tJIQIKRAloEAUHAQAchQIgoPgiIiys9NClAAIQgohhJBnCKnX6wDQ" + "jFfZ0+TA/8xpIv6+8e5cN61Qm05ltEJtOvVMK9QS8ewRpWqj2js4nsb+nbv3cnU9OZ3KzD2c" + "/NdIF9IrS4sziXg2+aA/FAr5/X5nvG1AW3o5ufOTL9rgur2c3Mcrd9rgur1Oe7wL6edtcN1e" + "7v1wtw2u2+u0z2978S6kV/7CbRmv6sxdquVSH7HTR/9tE+PLUsqp2cz27k/7PTWbkcezifHl" + "tbW1XC6n6zp1dONeWaUk4tnjTwtx5F81KEcSaQxzdT1p1xPxrFtpwY3d7C6WKkuLMypVqg4U" + "tFiqBEfNYqmi57er1WogEBgOx1oqDVoz/77e2Onu6hq7emGg/6w9imKp8ubt149a/mI0rGqV" + "8u7DlyuXRuzKp8/5yzG/yr9NrmEYm1uFba2svTq0c0eu+2LR88z7Qy905PW9vZwvOGqGQ73D" + "Q1Lf9eR3vitlONQbHpLBYHBwcJAx5rGfd6rV6v7+vmEY7nVgjDHGDMNo1LZUIpGIc34ppYFA" + "gDGmfqgOo5RSSgGgUdtSUSUANLmqWp0q/mTK82hFcX4Bm24GMv+uL+EAAAAASUVORK5CYII=") +""" VS2005 unfocused docking guide window center bitmap. """ + +#---------------------------------------------------------------------- +tab_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAIAAADZ8fBYAAAAA3NCSVQICAjb4U/gAAAC10lE" + "QVRIidWWT0gUcRTH387+ZveXZgzsbmvSsmqEfzBJSYz+gUsHCYJgISPytCQKFhJdpIN0qIUO" + "ezIUaU/roQ5eEzp46ZT/DhG4haCXdSUPK+Wuzvze+02HgdFmFqMtD76Bx8yb3/v8vr/3Zn4z" + "np6ReTgCYwAwdqfEGFMURVGU/wIdfaswAGCMcc5VVf1fXIBdBgCKoqiq+nxkobn3BABIkgBA" + "hIiEJFAgorAOyxARBTKVoUAkgSiJkIhO73a/nLjGOd/nWkrPXbqLiH6/CgBEJiIaKA1BhkG6" + "QF1Hw0BdoK6TLtCvMl2gIQhRCiQiCfPLm5ubtbW1YNXXtuzadyJTZV4AkKYkMpEkkRQoEUmQ" + "JJQCpSAiMr1eg8hEJJSmlFJK0wdQLBYR0cl9laj7l6LGY5/tc2ejsrmdgeGJbG5nYHgym9uJ" + "x9KHeGuMNd7B8fSMzCfvyerq6rHHn2bmEgPDE09G+/9WaSqZmRofisfSiadnotHoozclp94K" + "oGWznNxn/e8q4LqznNwXmb4KuO6s4643lZyugOvOcj8PDyrgurOOe30r05tKZv7ALavXmszt" + "rXZZL7EjhTmuU8lpRxNSyemZuUEAmJlLOPzU+CAAuKFluO7OWpF4LO1OPsTcejOOTcRepqXR" + "tngs7Y6U4bbcqNrIF6bGh6yt0prAgm7kC6E2fSNfWF9b2d7e1jStvqGlbMSmeRsuP7zZZvp8" + "PvCoW1s/a2qq7vddD57y3b7VZfmNfGFxadUQBgqztbWps7Pdy04uLq0WSyVJnoMRgUY45NM0" + "bXZZ7OvtaA8vLOdeT85mP+4eXN35K/6W5nBjxFz5tv7+w8LWF3+oTW+IBpsavStf1+xIfTTY" + "cNbknDPGfqsD5/xCa6AuDFe791xtEJyHIhHedTGw17tnj49EeFdH8GAkEAhwzgF+7HMZY5qm" + "cc6tD6rDGGOMMUS075aN2Ho9R/R/9gsXZ7dKHM+ODQAAAABJRU5ErkJggg==") +""" VS2005 focused docking guide window center bitmap. """ + +#---------------------------------------------------------------------- +up = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAIAAABhFeQrAAAAA3NCSVQICAjb4U/gAAACHUlE" + "QVRIidWWP4vUQBjGn8mfcyGQYiM2W8mWsRcLm22uWw6uFpQt7WwVLPwKVsp+gFMsAwqynY2F" + "oLAgNu4HsEiz3E7mfee1yN9Lcueu7oo+IcPMZN4fz7yZzEQlSYIDyAMQx/F+ocvl0tkvsdKh" + "uF6z8eLsAwDLlpmImNiQISKTX7mIiAx5vkeGiA2RZSZmvnF++9nzO0EQ9HC/vj2fPr0PgFmI" + "KCObGc4y1oa0piwjbUhr1oau+Z42lBkmsoaY2eLjpzRN+7kAvn3/wVasWGYhtszWkCViw5bJ" + "GrKGmVlcN2MWIiYr1lpr5QjYbDb9eQBw95YBIBBVdDiAC/iAAAoKEOQ3AJRtQL38/OXS/ALw" + "XKcxXKBUAVIOAIjUDxUApaQcecV7A3DkuYJG8EVX7VpdtNXm+p4jjfjcrsotdQFlslQH3OH6" + "bj2tPCx3Dyk7S5jU3K7hHr91vNTDRUFBFfkt7Uk5p6763lsxYaWUiKjCbOFf6llImd2+DLe5" + "ruM0UlA5uazS7S/Usz88vnf2G2VLKkmSap989OD9m8WsO2gbnU7mD5/cHI/H+C/3yR24p5P5" + "/rk5dHv0VtzpyWsThiYMszCcnrzaD/d4ttDXIx0NdTTMoqGOouPZ4pdR7e+iq3fzyTYGWzrY" + "etj7zwOAOI7/yjmPHRfpFVKr1apqrNfrNE2bx+pOGgwGo9Eor1/wGwRB9QPwh/oH9oed9BPW" + "YyQlBOJt4AAAAABJRU5ErkJggg==") +""" VS2005 unfocused docking guide window up bitmap. """ +#---------------------------------------------------------------------- +up_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAIAAABhFeQrAAAAA3NCSVQICAjb4U/gAAACTUlE" + "QVRIic2WP28TMRjGH/85c1miqEF8CnbUgSFdukVRmZGQ+gW6Vgwd+hW60Yq1gMQMQzpHGZAg" + "C6JS+QIMmUju/L5+Ge6ulzoRTcMh5TmdZfv8/vT4Pcu26h2N8R9kAZwMfltrtdZa60agx5fa" + "ArDWpmmaJElTXGBmAWitkyRxzllrG+Zqra21bz+OAQQOzETExJ48EfniKURE5MkmljwRe6LA" + "TMz8ZPbs9GzXOWeMQZHfW33/NOufvALALESUU8g95zlnnrKM8pwyT1nGmadHic085Z6Jgidm" + "Dhh/mU6nnU6n1WrFXAA/fv7iIEECsxAH5uApELHnwBQ8Bc/MLMbkzELEFCSEEII4YD6fhxAK" + "Tsx9/tQDEIgqOzRggAQQQEEBguIFgKoNqDdfvy1yYq41emG4QKkSpDQAiNQfFQClpBoZcaK2" + "s0awEHzXVVyri1gxN7FaFuILu6qwtAyokqWWwEvcxNTTKsIK95Cqs4JJzV02vMJvHS/1cFFQ" + "UGV+K3tSzWlZq/5bOWGllIio0mzpX+pZSJXdVRmOuabcItRC+ZfKcn+pFRvN65fvNihj9Y7G" + "o9FoMplcX18f9M5lUx30zofD4WQyubm56R2Nm9oYY20B98XeRfPcAro+ei1uf/DBt9u+3c7b" + "7f7gfTPc/cOr7HE36+5k3Z28u5N1u/uHV/dG3X+gfb7YW8dgpC1YD1vBjfP7oEW6Lvf0bHc6" + "nc7n881YaZre3pjucJ1znU7n9qx+qLTWzrkVXGNMcav4d1kAx5camAGzRoiF/gCKPmudbgYP" + "HQAAAABJRU5ErkJggg==") +""" VS2005 focused docking guide window up bitmap. """ + +#---------------------------------------------------------------------- +aero_dock_pane = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAGcAAABlCAMAAABnVw3AAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAb3WKdHqPdnyRd3+deYGge4OifISifoallZaWgIy1g463hZC5hZG6iJO8o6Sk" + "pKSkpKWlpaampqenqKmpqaqqqqurq6ysrKysra6urq+vr7CwsLGxsbKysrOzs7S0tLS0tLW1" + "tba2tre3t7i4uLm5uru7vLy8vL29vr6+iZfLjJrNjpzPjpzQkZ7PkJ/SlKHSkaHek6Pgk6Th" + "labjmKjlnqzhnqzjoa/npbPov8DAwMDAwMHBwsLCwsPDw8TExMXFxsbGycnJycrKysvLzMzM" + "zM3Nzc7Ozs/Pz9DQ0NDQ0NHR0dLS0tPT09TU1NTU1tbW1tfX0tTY19jY1tjd2NjY2dnZ2dra" + "2tvb29zc29zf3Nzc3N3d3d7e3t/fxs7szNPt0NXo0dfu1djk09js2tzk3d/k3d/m2Nzv3N/r" + "1Nr02N713OH13OL23+X43+X54ODg4eHh4eLi4+Pj4uPm4uPn4+Tk5OTk5OXl5ubm5+fn4eLo" + "4uTs5eXp5efv5+jo6Ojo6enp6urq6+vr6Onv7Ozs7O3t7e7u7u/v4Ob55Oj16Ov37e/26+/9" + "7/D28PDw8fHx8vLy8/Pz8/P09PT09fX19vb29vf38vT89ff9+Pj4+Pj5+vr6+vr7+/v8/Pz8" + "/f39/v7+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAsPpcmgAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAf+SURBVGhD7Zr7d9tEGoa9UKBZCiapneBQN3bUQlgo13DbhXBrnRQnS0LJNhDbUO7s" + "ErCtZWWZm2Rj2YHdbWQsCSQL2/yjZkaypBlpdKH14XA4vL8kkuebx3PR6HtnHBtHkfxyZoGs" + "zMtR4sfjWJRi0mJRHZGlFhej1BCNs1XyocDbpa0ooEjtSfcDOHp6apyFAMzop4XfF2f0K7Vn" + "qpyhr0bT5AwHvhpOkzPQ/TVNjt73lT6c4jzQNV/1p8npq77SBlNsj6b4Sr1Ozmtr99xpvQpm" + "6LKvquyMVezOe9Ze81uDfNbRHLUtiPaqNi8KvrqqztvlRGGbypFJRM7mMoOtnPNHDV8JisOB" + "QczyJolE4qy/MMAX6Pl23VdNGeeMBi+sE0AEzsYl92tgXqj5ipNcnNHo0oYX5OVsnfe8beab" + "VVQcelHveTij895XrJdD6SGc4b+HCIglcHTK0yAPJ4dPAYOJtUd/78b3dAdE4owYz6zzcM4Q" + "3tEop/v18ePHv+7aICJndMbdIDdn93Iwp/vh7VAf2iAy5/KuC+TmPN0J5HQ+eNDUB51Ji8ic" + "zjMhnAwpIbT7TfjXU4+ZeuqfbRNE5miZEE5qGNSe2g//s/RDLYgzSoVwiKlammMmvVTjLE0w" + "NH+UJmV37peFe3yInM3NZp0liz/azk+NM0ptt3tkdXZSxGQ1vD3EDOpiep6s9EVSeW+y5e03" + "/1Qt+ie/Fseb1HnaE5AS+ieL7k+IHMwTzqDDcDofkB+6P8qfRkPtpAEkD9Bbxsa4J+RHyCgo" + "hZRRm/xi9sxZH61smMBUQUEiRzwyC6G3jLk8IY8PdvElWMdf/6745om9DQP0UhELxDjQW8Zc" + "ntDF6Z8CdXSoID/XuxtyTmlBHD0dcy0ALs4oCRLrdiBHpmDuncT7wdWenxZ+I5xhEgxMWHvg" + "2AW3Z+RpD4c/ChMO6WVhjZlMmRwscMjhQwo5WM9+hT8WgyQwCgIVtOLIFPQSSdyKDb7CpwXg" + "DLGa2b49g/W+1jc4LSrgcR1IJgdYpL5tk/o6i4YMYL/hX6TmYD76XtN0k9MPAE044Pt9/5ED" + "qmERQ8DBPWHNMlT6O08eaqqeBManRWn+vrEvUdAbJTVVO3zyHX0SrtXQCOAtAQd71BnVdFQ/" + "fvnQ6qGq9BOyLDcp1d83aj0KFJETqqIerj705Y9muMqgEcBbxhZwT1iVJSjt/dvOrR4q8oQj" + "+/tGtWtyFEk5XD132/saDJeVKhYxABwNFrNVMV7P2he3nDi3+oksaQkQxVMSVga7ABxYc0Lu" + "yZ+snjtxyxcarECqoIVUHXBUowGWSl1RFKVXbrj5xP2rH0tdNQGCeKqLlcEuZJGCFSckUfp4" + "9f4TN9/wigRq6JXQQjLkiC1U2xx0VOKnN91636MHQqN7EnxIL7exMthFm1+G1yeFunDw6H23" + "3vSpCOK5xjZaqKMCTodHtVVjgGryu5DT5ETIqWabWBnsojnhNJkm5Lwrwwpq9S20UEsBnDaW" + "mOWrhrOuaJ8/8MgBx1ydA8a0nOV9sjdwm6tnoXed48vcwSMPfK5VjHAmj0bwEuC0aFTrpaIp" + "4coTB2y1Mwe+VznLYmWwC5bNwq8+xxbZgyeuCGZwqbKOFuIgB/eEueL+RI03vq2U27Ogt4vZ" + "SZKLuUcrE65l4YjO1vYr377RmMQWyjm0LNsL4BQblf2yMAvaXwjhwC4CnP1Kw/qSETiFPUSA" + "A4x2IRPcHujFZxk0br8U2h43B8ye/RAOnKHXxykJd4Dx3AvmZOCQ33Fd7Zlwlpx+oxnXjgX3" + "Hyoap4XNohzWb6VWHHx62eHQbMt2WuY/teeegxXEw9qT5i2vZvAwzn6VT0CO02+McDpt6PSp" + "U+bf9N+MuEQF/YL4PICeL7a12UK9Wr5SclTlN1YMjv2cgqfSeHHIWm4H/lX0s/8wOCvnmbIT" + "WMbWA+D5NmNj3KuVOsgCyF2cMyq5i7NutjfOmtsyytkj46+wWDb7fW6DdSKFoxJi/zqXUvBc" + "Jr+EHCHNzMUdJWBrgJ5fNDsL6O61lFF6MWsGUevW8K4knMDZBOoXlvLecybXMmRVUrBEWnq8" + "98BCE+br8eUuWrWeUr95zr1JZNjQf5P3kpp8re05uXPks4F9tHOSALpGzsqu/z65sjuZlCju" + "GjkJMYDThUuGS+GcVIP2hsVtzP+/sfRf654Kl0CX6t2w/SqwxARx3nr8YVOPvxnAofl22P7b" + "0wXCu9Npj3LlL6auOD3pbQ/dpMP2E3fXsd1ps21xxc5ilbf/DPU2csfLqXXyYfuj42zL23Fx" + "M7k3pHx27NixzxT7WlY8HJqXlsP2e8e5Hd4DiqPJ8nev/unV75AbHg7NdvbC96/HSy3PVIhL" + "6Caf/LqMXbrbwzRF9ywg/S5gc80DiveABXAELYWtroRzaIbvPus9miGcl6xfEOp417k4GFTE" + "OTTb7G4QDmaI5z9rnQbL0A4rLl71Fcqh6RrfEZ+NeP4zHm8uXT4SeM5O+We7ARwZpsaG6nzr" + "qrSXiXyeBebkhcyFCmuPdkLq+qpnWD5DEkfnMhd+wfkcLArOG+20Yaaw66s92kkFfvl5I/6l" + "FgLPAad4TtsJOgecIifgHBB4wun9PgT3lphvrHtSKCI20u9qfJI6Yy33vjr/4Fg98Ee/hZ8H" + "k2bLAu4tsYRomvPN5S1RDvSEU3tOXd4S2yICnnBqHJe3RLMD6AmjKNJ64PKW6C8VoSeMop8B" + "XFekjMjBOHUAAAAASUVORK5CYII=") + +#---------------------------------------------------------------------- +aero_dock_pane_denied = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAGcAAABlCAYAAABQif3yAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "ABh0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjM2qefiJQAAELhJREFUeF7tnfmPHNURx81v" + "hEsCIQQCxCnu60d+AH5BCCGBAAkEP/AHABKKkEhCCErCHcA4WGAIYJwYbOMrGHzgE9vYxvje" + "9drYa+99etd7zHov766PSn3avFFvu3v6dU9Pz2Q9K5Vmtt9VVd9X76zqOWtSCf4NDw9LfX39" + "pMbGxklHR0YKxuHvzj570tVXXz3ptttuO6tgjUykioeGhuTbRYukrr5eRkZG5OTJkwUj6qcd" + "2ptIOiyYLFV79khDQ0PBAPEDm/Zot2BCTZSKFy9eLGNjY6mCc+zYMaHdiaLDgsmxYOHCVIHB" + "kvij3YIJNVEqLoNTwkgWAxysp2w5Fp2iDI6FkoqVxYBz4sQJSYPM6q1sORaIoyRAOX78eCpE" + "W+VhzQIYsgAOwLC8TYvK4EQAB1DY66RBtIX1lIc1C4BQEgobHR1NhegAZXAsgDHDGgrj3CsN" + "ohMwjJYtxwIglITCjh49mgrRAc5YcGpqa2Xjxo2yZs0aWaiKR/m5aNonn0hLS4vodUEq1NTc" + "LO3t7UK7YbzBP3IgD3JZ9LXSzLJj505Zvny57Nu3T7p7eqS/v9/qzGzBggVO3h4tkwb19fU5" + "wyft2lxPGN6QC/mQszQR8OGqqqpKlv3wg7S2tloJ61UISjpy5IgcPnw4FaIDMITaguPlFzmR" + "F7lLGqRdu3bJ1q1bnTHcphf65UFJvb29cujQoVSoq6tLuHmNCw4yIC9yI39JAlRRUSH7q6tj" + "g5I9RlFw6M1tbW2pUEdHh3D7mg84hnfkRw8lBRC3iNu3b88bGGenruDQm5t1oo5KKDpqGSx0" + "cHAwEXDgHz2U1K0qEyMbx7hDmbtcXHDYSDa3tDsbyigAsVJLEhz0gD5KwnpYrcSd/IPmnKiW" + "MzZ2TOoaWuWPr051PvnfFqCkwUEm9FESq7jlK1YkYjHuOScKOAMDA9LRmZG/vj07S/zPcxuA" + "CgEOsqCXolpPtU6ABw8eLBo4AFDb0CX/+GjNacRzG4AKBQ56QT9FA2j9Tz9JJpMpCji0W12b" + "kQ//XRVIpJMvlwUVCpxebXfDhg3FA2fp0qWJO/7ZLAhYalfXD8nsJR3yr7ltgUT63oODzr4p" + "CKBCgcP5IPopmuX899tvndVREqu0KHMOe6DhoyekKxNOg5qP/GmDgzzop2jgFMIZ43t17mO/" + "woon13CEwskXRrmA4YC1s7PTOS6i3SQ7WdFvVwsBDmdUu5VYsbFBZNgpFBlgOMTcvXt3GRyb" + "3slwgMKYK9ggFopYLOzfv98Zfmz4ipqnqBd4hXRjqqisdPyX5+txTqGI+mknaResknC3KiQ4" + "SSsszfrK4KTkdBgX1JJYEKTpAJiWo2G+7STuqLh3715n0xR2j+5O59496nyweMkSZ2WUlsNg" + "Eu3AL3xHkZXNtI1fgluf6B8cxu2N4ob5sRTFfKOYPlfCtXV1zgrJT3HcSm7dtk2WLlvmHB6u" + "WLmyoLTmxx+dC7IgEOETfuE7ipzoxejHdpV3WhhkPmF+NB6FYXdeDciVSl0peZWybv162aO9" + "B2Wk4VjIMh1w/ACCP/iMI2MccAyI2TDIfML88gEHx8Hvvv9+HDjsO37QiyrbnpZUPgBatXr1" + "aR0F/uggaYOTDYPMZ5efDzgodv78+eP8odl0couYlNJt62EopV2vbzb8xQHGLAiiDmuG32wY" + "ZBmck473TRkcz95knvZM97zSE9FyRvTgs2X6dNn3zDNSdd99DvGdZ6RFtRzvHAd/xbCc7B4p" + "H8vhRDjungChg8AJu4Y4zssd3nxTKq64QpruvVd6nn9eMq+9Jn36rOfFF6Xp/vul4sornTzk" + "DQPJWE4QOHFkRAb0E9Z2ULpzLpfPEcwhbTzuPgKBAccdScAlGsNLrt46qouG3Q89JLU33yyZ" + "d9+VgVmzfCkzebLU3Xqrk5cyueo04HijGuAvbiAX5dBPHMsbZzlUEEfJHOUzidoseU1AFHkp" + "4wdOd3e3A04QL2O6vK56/HGpv/126fv4YznyxRdyZOZM6Z87Vwa0p0F85xlp5Km/4w6nDGX9" + "6oUPnApp1w8cd6wQfNvEDpl86CeqXo23bNZy4vYOLrJsgaltGpL+wePZ/DDttRzAYSlthPMK" + "1qIK//XSS6Xr9del7/PPpV979oC+t2bQQzwjjTzkpQxlgxQFOLTrB46788E/ctgChH6igjMu" + "0s5EksUJ8WvVxsMCnGhsT3W3zFx0SBrbT0WrUcaA447DMeAY63LzNKoK3HXTTdLy5JPS9+mn" + "MvjVV1ZE3tannnLKUoefnAYcb0yQmRPhF57gHzmQB/5zyU5+9BNVr77g2FiANw9XyTAYFOh0" + "7NhxaTuUkY9nVsknczTmRoUz+WF63rx5zjLWELefpgd72+pWT5bKSy6RHp3kB6dNi0S9b78t" + "lZddJtThJyebUNp188J3+DP88gn/yIE8yIV8QbKTH/1E1eu4MEgsJ26YH3f8CEHP89LIyKh6" + "X7bLW1NXyZQvK7PgIAxlcoFDurdXNrz3ntTcfbcMqKI7dXXWpRbRrcNWr1JGqY/5R6lfaRDS" + "ZwOap++555wytffcI9Th19vxbwsCB36RjU8DDvIgF/Ihp1d2+Cc/+gkbWfzSs5F2JszP22ts" + "/m9qavK9Qqa3tLV1yqtvfiVvfbhSpkw/BU5D22gWTPLM1Z7pFowdNUrimbf9mpdektZHHpHB" + "l1+WtqeflhNaPuzvpObpffhhp0zro48KdXjrRTkGHK+S4Y/8WBaf8I8cyINcyIecyOK9Sqcu" + "9GOjR3ceM+RnFwQ88Ov9Yc84oEMwor0MUaZqb7W89Mo/5S9vGHAqZJoDzql2KEObCO8WyoBD" + "urftuldekfYHHpChZ5+VVlW4LTg9N94oA7paa3/wQaEOv14O73QKr4JN5yGdcvCPHFOmVzjg" + "IB9yIi/pbj1QF/oJ06EfP8w7WXColMk4KuGEwUbLG+hEfc0th+TPr/1H3piyXCZ/vlM+mtUk" + "dS3DTuwNUWsAMOebb8a1iasSUWKcsXl5adBhqvGaa2ToscekQ0Fqf/996fjgA+nUvc5hHba6" + "lLqVmF8ySn3vvCNHdH7KXH+9DN51lzRee61Qh7de2qJT0K43Df7gF/n4hH/kQB7kQj7kRF63" + "DtAJMjohlxH1yuGvEwZpNqE8gMGotEfjclguMvG5yXH602HgYG3raeAw6cM8AnnBYYzmHoc8" + "Xl7ata09uiAYUksY1n3O8J13yvAtt8jwDTeE0pDmoSx1eOs1bQWBQzqy8ekFB/mQ06sD/gcs" + "9BNVp4DphEEacOg9cXzDKvWGEIX6RT4z3jJZNrd2y9QZFfLR142OcMZhkEDZ2XPmjIv7pB7A" + "QSA/fvY+8YS06Z5l5KqrIhFlKOtXp7F82vXGocIfvMAX+RxwVA7kQS7kQ06v/DwDUPQTVa+0" + "50TaGXBAiyElKhEDybjKhVQQMRxU/tohMxa2SG3zsMMsgGKtRnjTuww45PHjpWHTJtmhFtB5" + "8cUypgq3IfJShrJ+dRrlmU7h7unwRzqy8Qn/yIE8yBUkMzoBIPQTVafZMEgDTpR4GLeL7E4N" + "nILBWo3Jz0X0yM27uqWj62i2p2Gts2fPHjdWUxdKyuVCWztjhmw5/3ypvuACGbrwQjl+0UW+" + "RBp5yEuZINdeE3tKu965E/5IRzaUDf/IgTy55K3Ta206GvqxiRFy58k61qcFDkpHIAREKBin" + "581S4d1mj1Bh4CBInZbbfvnlsv6cc2THuedKzXnnSdNvxHeekUYe8ob5XAMA7XqHIPgz4BiA" + "kCOsQ5YMODBSU1MTidzguKOmcaTAAyWX5RhFN+p4Xv3CC7L9uutkkwLx02/Ed57t1zTyhPVc" + "t+V4I7gBh7kjqnwAydBWdMvJFxz3Kg+h/MABTNLwa8bRfceOHbJlyxbnNSfr9HUna/REYLXe" + "5zj02WeyVv0BCFz65ZdfnOhmXJtY1qJklOYGzA2Od9V5RoKDgpxhTe9i3BMmygsChzQUjEfM" + "NnWd+vnnn2W9euqsViBWqAvVMh2WKMvR/6pVq2TdunUOeOblDfiDEQpoJmsDUBYcLeudvOHv" + "jLOcXOAssRjWmLsMoWSUapTtVrCxhFwvnGB11KJDF6CWJDgspcPGZr90xtQ4wxrg0ObX2jPd" + "9dKzbcAxgDCBU09YAFWudI71N6kVQl4Z4a+oloPfGmv7sEiypMBh7qAu2uTsyguO7YIAfhka" + "cZNFBl/SNHzPoKB0ItoYHv3kgz8sNGoHjLsgcEfaOa/vx+OTSZYeGDWSjIkW5rEEWzLA4GH5" + "o7rC+oETtAl1DzvuzaPftQXPOC3GullIeA8YOSLhgBF33wMHDviCA3/bdEFBR2BRYisjeSmD" + "fqKcELgj7bJvoYobSVavoLDTj3K4xxBDwNIc3X379dZF333nDFNhdbKJ3aUAo9ygV7sMKwAr" + "NZ2YTz8vFywPP3GUGTSswycdyQyhYXyRTr20iX6iROU5kXb67oLTAn1BmfE+apQBzDM22xK3" + "iziPBylj8+bNjsIChyrXEIYL7QZdkSGMH9+LtB42l0EysQjYqUcsYfMt/MK3rYwswRkSo0YZ" + "oH9wSCQCG6HjHv2EKYQNaRiF1VGs9HFHMIloOkYlhQSnWIpNot0yODHex5aE4m3qmPDgrF27" + "1vFrsx3n4+SjftqxUXiUPBMaHG5I9+nylxVPId8vTf20Q3tRlB+Wd8KCw96CV2EVEhRv3bTn" + "3XOFAZArfcKCwxIU/4I0wcHZxHta8X8PDvsLLp/cB4/5CEVZ5g4bYDJ9w9LaMRRKPZlTDn65" + "CG8X7zlfPnJw0gLgRX1rFOdg5qglH2HcZW3B2b2/V+/zm2TqzPpAIn3HnlMv9U4LHHM+xglG" + "Ud+3xpsKORS0ubm0Bc8WHJS9Wx0t3v10eyCRHgaMSU/KcgCHjTmfRX1TIRMpxx9x3uccBJYB" + "x8aNFcX+Wt0qf5+87DTiufHLDquLfEmBQ0fljAy3qKK+45NDBW4gjWuVrXXkyoeSgpzj/Vxb" + "UWxTc4f86W9fZon/jQN6mDuscTpPAhwzpNEmTooxDl2SLcL7k9krcNydxMIAJYUp1Js+MDAo" + "+6rr5Pd/eM/55P8odSRhOcjO/IvVHNQr9ZJ4rzRQc5qK9SSxODDgRDlqN1EANbUN2aiAKOWx" + "nnwtx7jssg0o6kLAa3tcDOFMkQRAKAnFuj32bb97Ix5sypmIhrjgYDEAw8hBXRvVs7Tkfq4F" + "11NcloxXftwhLh9wbMDwy8MQGAccM5SxOgMYLv9K9mdaYAwLYtxlc8owR68y18s2CwaUhAJx" + "dE+DTOyNLThGFlZlWAuyUgcWU7LAmKEOk2YOOqCeNBwsYkkIwXLb5j6dW0R6YRrA0AaKZc7x" + "ugb78crOH1kYvimLxRlfu5IbynKt+xjimBj5xAnEHAaGTdQmmgyA0iD48Yuy8+MTMBw/N51n" + "cBwx8iW7/k2xNvevHdr4J3DvzqkDG7g0iJ6Psm3v+yfErx3GxR8Ai/KDeoRclP9yawBwmGRT" + "/0G9MjjhXRNw0vxBvXFhfuHsndk5ACduGGTUED/yZ39Qr2w54R0vbXerkrhSDldLaeQog1Ma" + "OPhyUQanDE7WFao8rEXoDGXLiaCstLOWwUlb4xHaM0tpmxPsJPKUh7UI4OQTBhkVrNPC/CLw" + "eUZmzScM0uZKwp3HN8zvjNR6BKHjhkGGXUd40wPD/CLwekZmjRMGaXMl4c6TaJhfAVD6HyAO" + "VvwtWIicAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +aero_dock_pane_bottom = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAGcAAABlCAYAAABQif3yAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzoyMTozMiArMDEwMExUiZ4AAAAHdElNRQfZAxkQJgE7q5VA" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAEFtJREFUeNrtXVtsHFcZ" + "/me8a+9617Ed3x3HcXNxnDhxmsShQQqEolKq0pLeVakSqA8g8YIEQvDAC0g8IB6okEAoPEBB" + "QEvbJKWFJqBSWpSUosYpdpzaiXN1Yju+xJfYXtu73hnOd3bPerz3uezMoPqTRrM7u3PO///f" + "ufz/ucxI5EKEQiH16tWrdP36dVpYXCxYPn6fj1paWmjdunVHmpub33Bab9djfn5ePX7ihHrl" + "6lV1cXFRVRSlYAfSRz7Ib3Bw8FmndU+G5LQAyeg5f14tCwZp06ZNtuV548YNmp2bo47du11l" + "D9lpAZJx/do12rBhg615NjU18XzdBteRsxQOk8fjsTVP5Id83QbXkbOGFayRw6CqqtMipMUa" + "OS6GvY27DthVmiXJVQ7aKriSHBBjZ1PjVoI+8eQgn6KiIqdVTotPPDmoNW51CFxJDuBWg9kJ" + "V5Jjd5/j1oKwRo6LUXByBi5fVm+PjNDS0hJNT09TLpOPjY3xIxqN2mIASZbJ6/HwPF997bWs" + "4sGnq6iooJKSEqpvaKBtW7cW1M0rCDlHjx5t29/Z2TfOFI6Ew7Rj504q9nopGAzmvPfYsWNU" + "Xl5OkUikkHonAE/N5/NRbU0NPfnEEzn/Pzc3x2UbHR2lkydPqjW1tdS5f39BSLKcnJ6eHvXm" + "rVtUX1dH+/buNZQGmjS7ao7IL1+IAlZZWUltbW00PDxMf33rLXVjUxN1dHRYSpKl5Jw7d05d" + "WFigLz74IMmy8ZEhEGNbs2bSlW5sbKT6+nrq6uri+u/bt88ygiwbW/voo49Uf2kpHThwwBQx" + "AIylKIotBwqBWecD+kJv6A87WGVTS8jB7OXy8jJtb221RChhNL0H+g+991jpGUJ/2AH2sCI9" + "S8gZYn3Mvffea4mCRoHZ03BE0T2LarXLDjvAHlbANDlnu7rU3bt3Ozo+VV/fQNcHR+jnR1/l" + "Z3x3CrAD7AG7mE3LNDnj4+O8U3QK8Jomp+boty+9R77San7Gd1x3CrAH7GIWpsjp7+9Xt2ze" + "7JgRQMDoxCK9+EoXlZbVJQ58x3UnCYJdYB8zaZgi5zYLxGpY8OYEysrKaGh0mf7y7gj5grUp" + "B67jd/zPCVQzu2DUwQxMxTlzs7Pk9/ttVzwQCNDoVDF19c2Sz1+V8X9dfUu0Z3uQGquDPLK3" + "VUbmVt+9e9dUGqbIwXIir9drq9LA4uIiNTdUUFWlL+d//ewvM5MztssIu5hdbmWKHMQjVk/x" + "FpeU8PgDgR3STwf8PjV5Oy8PcSaUebQBsovYCPlajUzy5wvXTRnc09JCo6ytbmxo4AFdtjgk" + "H+VBQKZFimLQc2hoiFpsXP6bL1xHzq5du+jE66/zYXyMWRUXFxcsL4wuY+Cyr7+fHn/sMadV" + "T4El5FgdZT925AiGQOj06dO0uLRUMOV9rCnb2NzM87NSB6uaetfVHIEOFmXj+CRjbcVnAWBV" + "LTRdc9bm+1NhVbOWSKW3t1fVu80PEbDeEQJ4R5tYO79z506bTGUeH3/8Md0YHOTxVb6AYcfG" + "x6m2tjbve8Q2SOYUSSINwra7PXv20IbGRl3eEQb3QI6emhNmgdkQ85C6u7vpy48+mvI7PKjz" + "vb08bbi6hV4qCze7av167iWmwxtvvklGbAO5hX2M2OaJxx+XJDPb/JB5dXW1IaNgqx+GN9rb" + "21ddP33mDE9z65YtpmdU8wEKw8DAAP+cTNCFCxewmdeQbYyQo7UNtkHKTmzzA/hWPyaEFhj/" + "whqEdtbkYfkRhkAKfZSWltK2bdtofGIiRUbI55htGC8eJ7b5AcgzzGIYbZOIz06s90cNjaYZ" + "jYB8TtkGvKy50i6GY0Eod8FpdUzgtEOeXHOckkfIYYocMzFONi+MN28u2tBkVEez8V+CHCMJ" + "qQbvy6hAUv9jN9LlaaYAGrWPKJgeIYCRuQeV3ZOv8Oh0xX+RebqaIdIxOw+i1xDZ5NfaRsid" + "Sz6hmxpfuKhXHnG/rDWKXugh5sZwmBbDcs77rKiNenUQ+Wb7HYD80CNX/CX0M9Qaae7zJF/Q" + "lRDlNiSi/P4rM3SuL0KH71tPDVWU4j5nM4idyNasoTRP3o3SmXN3WSzmpbYt5TnXcxspaNoW" + "xVSfI/qITPd6PF4am5il9/4zTLK3cpWy/J6kQqHmSK9QyJhvSg2QaH5hmekzTuvLi6i2uoyW" + "lyPZEjalS6JZM3JkWyAuSTIN3hqjF1/5kMLLikbe3AIrmr7MriMbcUIeAegDvaAf9EzWXWsf" + "IzYVeclaAfQemQRAhHvnzjT95g9vx2qXmihIq/+bVDBE52nnLoNkIrLJl+An9gPXD3pC33SF" + "1oge2hpsuuYkC4A28+LANXrhF3/UeMYqiW43uXSkK7121pxMsmivrfxnRQ9R2KAn9BVeXK6C" + "m488ArzPwVB12MAaKwxSzs/PpzQLLc2N9M1vPEu//PXfUkoG5kRERyq+J5oLJgPSwkixXe40" + "PC/kh3yT52uEfJAL0wWK4k/RB3pWlAdWLSAEUUgX9sGhB3CghDfIyTG6k0y7x0WL2dlZqq6q" + "pOefe4D+9Mb5FIWT23ABUXqQpl3k5NP/ZZIH+lVXldPU1NSqdETsZNSuKa60IXKyCI65jOam" + "evrqMwfoxN9vJjw7/B/r0bRVX2sIrUHsQKYmRfyGa5A3MTrNrnk9Mj3D9IK3Njp6O4XgxGJF" + "g3oIOTxmjKFkqDkCw8NDfGf04fsaeJyDvyXXnHT32rknVItMsqzITBTwF9G+fQ3sLHH90kHE" + "KooBPbQBrrkgNEOJ0wJVvrFmHYWW/BRkCi2FIqvinHQ1x85FI8mOSNKPCf3QLwVLJWrb7Gf6" + "KFyvTBBDMEb0SHGlCw3McG5tUhgxY4nnC6R3VZ2dNEjnSgtAbsgPPezasWDL0ihU7ZmZmYz3" + "Jz7HLtiieC5Z0umnx6u1oqA5vuIz05SB47K4AI6QkzBChrE1R5CuBXCYLMdrTjL0mEN0vGZm" + "TeHyRpir7ManFXqEknZD6xBor+ULEUsgckccYhTLrD/EOrGydetS8ne6kfOUMOVy7SSzEtrd" + "ZOm2LOZbTJAO1radef/9zM2PZtZSTlcA4+5uOSNmc5pd4ZDPKduAF0/LPffwx1Nh77wYY8oX" + "iJpx6BEcmcOo2LRUk2G1aD5NFQyGZ7jh/Pn7788Ypff29vKFg83NzSn3Q/Z/vPMONTSkf6gE" + "5Mt3l11y3sI2eta9rdpp19JCHrz54tjx46rHwE4ybGzCclU9UTCUHB4Zob6+Pjp06NCq3yAY" + "2n8YLpcc+A9WZEJulPB0fQbkm5iYoIMHD6bd9Y1AMhQK8cKSDlgJig1c2GVXV1eXt20EOWFW" + "2GGffMF32sE2/f149ttK8ezu7lYHb97UtZIeuwwqKyr4GFK+wEPxqliJbGWKp8OtW7f48w08" + "eXTQPmZwEIpxvHS1F2l4mUEzjQwHAwGqZUavybHe+9LAAN1hJIfzfECfIOfOnTu6dhlAl+aN" + "G7FwfmWXgVHgsYufO3xY97B4PsjHEMUObLPPByAGNebkqVP09FNPGbax61xpAbca3k6srZV2" + "MVxXcyZCsfONSz3051ulNLZYuPJT61PoSFOINrV28O/VpU5rvxquIwf4/qmbpO74Ej3wnEqb" + "/RLBzypmLTd8JQ87w1XIlzI4v/Alo+wDQtUldobLg3HlgZBKR/8lkXzqffrRQxudVjsFriPn" + "2sVukrY8TD/+dJQCKotVmDU9MshgnyUeN3IvRk8vC4LgyymY7GOxyjKIYhcOSCo9eb9M3104" + "yPJ9i6r37nFa/VVwXZ9z/GaAWg5JVBzNPnwiM3ZAWq5DzsIiSPJGFap8KJav22Cq5ojF6Va+" + "SWMqLFOrTyIlS7gFgxezdurufO48MXupsrZQyfBX1KhGv0wXwtaVU2EPs3taTZFTYnLQ0SiK" + "mc79A/P09r+naHImc/7ryz302c4K6thVRss2LUkQy6IQ7ZeYfG6PKXKCZWU8AEVka+WCDJRm" + "NcMBLLKsdrQFCdXrxWMXM6bzzIPbacfOMprX8KddtCnGFKwe0wQ5WM+nZ+gmHUyRg0fiT8/M" + "0IZAwFpy1JVVvPwM48mxz+hCmJ9AIWbw9vYa+lpRhF741bspaXzr65+j1rYamouoq9NSNekX" + "YE5ADKjemZzUNXSTNi0zN7e1tUl4wweEsXJOCGRE4h4VXGDhCic8LiV2vhtWqXV7I/3wO1+g" + "2akbiQPfcR2/KyoljmjSZ6QfUVZqkFmIMTUMkGJkGfYxk57pXrCuvp4/RgQCWUWQwpcjqbFz" + "/FAZY/wzxY/49ZmwQg11FfSD7z1NodlhfsZ3XE/cS0lpaNPla9KsIUZM/uEpHBjFNgvT5OD1" + "JFeuXOGCWfU4FBiLxyKa0q4t9YqoRRSrVRPLRdS+YzP97Cff5md8j9LKfxK1heI1UV1JP6Ja" + "M+MJvcXUxaWLFy15bYsl/iMeNIT5GZQaKwgSzZmS4VCTDlwbXiCqaNrEz+n+I/qcVWQJYkzU" + "HOGdgRg4Rt09PSkTe46Sg/fG4HHCeOoUJq7M9kFKvERHNCVc2+9oa4D2WIimvw5nTdTCaLxW" + "RuL9TTievlFixMwuZlsHLl/mjyy26j06lkVeeG8MShAef4USJEjCNb0rZBCTRKLxGqQ5lLhx" + "hUOQ96HEak1UWSFIOARwMvX0OUIX0b9ghhW6/re7m2di5ftzLB1bg2B48xSe/NTa2spdbQSp" + "Yv4937UGsT5BZWcczBCqFO9n4kUc42s6SrtKq709ni5qUHzYQEiVa75fNGEgRkyPYy3ERdbH" + "oClz9ZunACHg2bNn1YFLl/i6BDzWCorkG5Rh0GFZiZdsOWZYGUaVKNF7yzrMkOxOC/cczZmk" + "rtScXPKBHOw9QuCNKfqRkRGu3yOPPPL/8c42gc7OTi4w3nY4ODjIV8pMTU/ncWc1vTypUh1r" + "19aXSFTmlShQJJGvKDZs45Vjo9NFOswhRqHDjJ0ldp5nF2YjGMdTWCWU6CWW1mH2P0wr50Kl" + "5m2H+wv0Ij2Bgk8Z6H1d48M/fVddZDVnjhmuRJK5gEXc3ZJILYr1HXrIEU0ayFli5GDoZ4GR" + "E2Lexnw4FutEIrHRDTPz/YWA6+ZzgKVIbHimlElXwuzGKg9vxkRThgk3RSc53DNjaS3FD3h2" + "yIM7Cvbv08oLriQHrto8K+oBZjQf62iK0ZRFV1xLVSc5fJiGsRBG7Ymi9sSO0HJsSfAaOXrA" + "SjSatiV2hFlThqkWT7wp45zIMYLygSBHjKMlalA8D441cvRB0RzZpg9yIdO9Im03w3XT1GtY" + "wRo5LsYaOS7GGjkuxho5LoY7yZHtE8ydBojBda50tV+iAPNxg8VywQ3nY9oHvDKVxfN1G1xH" + "zvO7vfTPniLa8Jko+VlwGGTRZ9BL5GcRaElRbODTY2BsLaJI5FNUKmH3e2WViotUquHPspGo" + "6qREX9nrod85rXwSXEfO/o5d1P7hB/T7Cwdpx6dU2lYqUwUjJcjI8LOqVMLO2Lnj0TNCoMZm" + "PBfYMc9q5TQ7JhljlxaJhk4TtSkfUOeeXfklaCNcV5dVhunpafqw5wK93K/Q7fnCxfH1AZme" + "bZPpQEc7VVRUYL7GVfb4H1Voiukj7VWUAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +aero_dock_pane_center = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAGcAAABlCAYAAABQif3yAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzoyMTozMiArMDEwMExUiZ4AAAAHdElNRQfZAxkQKidFE1+x" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAEAxJREFUeNrtXdtvHNUZ" + "/2Zv3l2vb7HjWxzbcRzjJCQOcSKQiBSQEBclFAgX0VYt4qnq9blP/Qeqqi+t2gi1BaQCJYQg" + "oAQQD6VKHhBxwCGJc784dhzbcRzHt73O9Pxm96xnd2e9c9uZqdifdLT27syc832/c77zfec2" + "ArkQS0tL0pUrV+jatWu0HI2WLZ9QMEjd3d1UW1v7TGdn54dOy+16LC4uSu8fOSJdvnJFikaj" + "kiiKZUt4PvJBfqOjoy87LXs+BKcLkI9T330n1UQi1NXVZVue169fp/mFBdq+bZur9OFxugD5" + "uHb1Kq1bt87WPDs6OuR83QbXkROLx8nn89maJ/JDvm6D68ipYAUVchgkSXK6CKqokONi2Gvc" + "dcCu2iwIrnLQcuBKckCMnabGrQR978lBPl6v12mRVfG9Jwetxq0OgSvJAdyqMDvhSnLs7nPc" + "WhEq5LgYZSfn4qVL0q2JCYrFYnT37l0qpfKpqSk5pVIpWxQgeDzk9/nkPA+9996qxYNPV19f" + "T1VVVdTa1kabenvL6uaVhZyDBw/2D+7aNTLNBE7E47R5yxYK+P0UiURK3nv48GGqq6ujRCJR" + "TrmzgKcWDAapee1aev7AgZLXLywsyGWbnJyko0ePSmubm2nX4GBZSLKcnFOnTkk3xsaotaWF" + "dj7wgKFnwKTZ1XJ4flrBK1hDQwP19/fTzZs36d+ffCKt7+ig7du3W0qSpeScPHlSWl5epice" + "f5w8HuMjQyDGNrNm0pVub2+n1tZWGhoakuXfuXOnZQRZNrb2zTffSKFwmHbv3m2KGADKEkXR" + "loRKYNb5gLyQG/JDD1bp1BJyMHuZTCbpvr4+SwrFlaY3of/Qe4+VniHkhx6gDyueZwk546yP" + "2bFjhyUCGgVmT+MJUfcsqtUuO/QAfVgB0+ScGBqStm3b5uj4VGtrG10bnaA/HTwkf+J/pwA9" + "QB/Qi9lnmSZnenpa7hSdArymO7ML9MbbX1Iw3CR/4n987xSgD+jFLEyRc+7cOWljT49jSgAB" + "k7ej9Pq7QxSuackm/I/vnSQIeoF+zDzDFDm3WCC2lgVvTqCmpobGJ5P08X8mKBhpLkj4Hr/j" + "OifQxPSCUQczMBXnLMzPUygUsl3w6upqmpwN0NDIPAVDjUWvGxqJ0cB9EWpvisiRva1lZG71" + "vXv3TD3DFDlYTuT3+20VGohGo9TZVk+NDcGS14bYJXN35mwvI/RidrmVKXIQj1g9xRuoqpLj" + "DwR2eL4a8PvsnVuaPMS5peKjDSg7j42Qr9UoVn6tcN2UwYbubppktrq9rU0O6FaLQ7QIDwKK" + "LVLkg57j4+PUbePyX61wHTn3338/HfngA3kYH2NWgUCgbHlhdBkDlyPnztFzzz7rtOgFsIQc" + "q6PsZ595BkMgdOzYMYrGYmUTPshM2frOTjk/K2WwytS7ruVwbGdRNtL3GZUVn2WAVa3QdMup" + "zPcXwiqzln3K6dOnJb3b/BAB6x0hgHfUxez8li1bil7zuze/oKszMQoG/GVfjenziNRZH6Df" + "vvxo0WvOnj1L10dH5fhKK1Dqqelpam5u1nwP3wbJnCKBP4Ow7W5gYIDWtbfr8o4wuAdy9LSc" + "OAvMxpmHNDw8TD94+umC33/9189ocGsvdXa0UjjooZDPQ1U+gQIs7vEyI+xFbOKBPRZID28o" + "okgSpZj3nZLSnzHmit9ZiNHvX/uCHtpSr0rQhx99REZ0g0rF9WNENweee07wmd3mp9ekQUDE" + "Mh5W+DNnztDWrVtzfl9IEj390Ca6siBRiMWYQZb8HharMEIYR/J9HiHdWeppUygloiIRJLEy" + "J9mnl30RYh7bL3+ylw59/lXBPSjfAzt22LYFUqkb8OJxYpsfIG/1u3495zuMf3kzzcHOXizC" + "lJJIFeaI8jmmG8aLz4ltfgDyjLMYRtnynHYs8vNH+ZzSjcyLo9pYBTBBkuKTKLc16aVR7V7+" + "fLfCMXJkF5xya6uUSegX5I6bWTjRw/uJdB/D+xk5QNPtEKw8S5kkRZly7nFQN4ApcszEOKu5" + "yFBiEuR40iSJQlqJnsxvQuZTTwTNSZA/FcSkpNKtx6iMZs10lhwjD5IM3ldUgMzf8KbizM1N" + "sH99EnOdQYzEGwquSXtseqq20lNLZUiBxyayL8UMPWqymKmARvXDK66PF8DI3IPE7tFaeMzP" + "8GuRuVrL4aYua9bEXLMmtxp2m8BbgU6zpmraKNe0qZWJ64aXu5SuuGxSZuGiXmL4/R5eACPQ" + "Q8z1m3GKxj2a7oOy4kymRKZ2pxTmhys0Jan3H8WS2v3Z1lNCRg6UH3KUWtHK5TNkjRT3+fK/" + "0PUgKk0sJrTOXZ6jkyMJ2vvgGmprpJLuM5QWZcFokOkgIGBUQBF0ZrwCj85RHSVJIAR9WkJc" + "+b5YWZSt/c69FB0/eY+Wl/3Uv7Gu5HpuI2ZNaVFM9Tm8jyh2r8/np6nb8/TlVzfJ42/IEVbK" + "2Bk1oqCshCQyJQo5LcfL/k+bNkm3KyXmmbQU73vE9FCOqhwFLUCgxeUkk2ea1tR5qbmphpLJ" + "VbaqmBwUzpo1I2m1BeKC4KHRsSl6/d2vKZ4UFeUtXeAcsyZmPDdOEuWZKK2Jcu9P8WdrMGti" + "pm/lgDyQC/JBznzZlfoxolOel0dZAL2pWAEQ4c7M3KV//POLTE+crUi51+ZVDPlZlFYaq6AU" + "Q8qYn4SoIIonSUfK3MOfwZ+ZYGwlU7kVp1j5svykf5Dlg5yQV63SGtGrsgWb6nNEFW8Nfcz5" + "i1fpzbeOUlV2TZmU4aewdhSaEqJ7rMl8PBqjDREvtYY91FAlUK1foGqfIA+EBjIDoeiLtHQ9" + "Eq20lDhrRlFGxiJrMsgnzr6fn1yULyrW56ysMlqRg1e2P/75Lfrpj56ijRvW5/RBfPWQXr3i" + "Hr6qSCYHQ9VxA2ussFFqcXGxoADdne30m5+/TH/5+2cFNQNzIlwI/j+HXAYpXaNn2Z9rWMuJ" + "sFTlw8h0mgywwYdd9JKTENMtEeQss7SUSpvPWMau5c/X8PKhXBgxFsVQgTyQs76uOmcBIYgE" + "OdAPkh6AGO4NyuQY3Umm3OOixPz8PDU1NtCrP36M/vXhdwUCF6tR3JRAiXOsn11kaYmREwZB" + "njRBntTKyIBogJx4SkFQcsVMSkU8DL5XSC1egXxNjXU0OzubIw/fLWdUrwVmzRA5qxQcE02Y" + "MHvlpd105PMbWc8O12M9mtImKxUBNSXZ9/dYlV5ICDI5yymBQilBNmdeeT4H5jFt2rSSI/cz" + "8sgDI4cxhbTMUoI9N5GTf66S8B3Kmx2dZt/5WcYvMbngrU1O3iqoaNnFihn96AUvh4//Y+gh" + "RVoOx82b4/LO6L0Ptslxjhyh57UctXuz3prSAVB6XoqRA63kZO9TxDvcQRAVDkE+eOVLl5mo" + "OuSlnTvb2Kcgy6cGHquIBlqOMsA1F4QqvJNiQJNvX1tLS7EQRZhAsaVETpxT2HKcQ0H+Cvmw" + "ADESFqi/J8TkEWW5ioEPwRjRa4ErXW5ghrO3Q2TETGXPF1B3VZ2fbMt3pTlQbpQfcti1Y8GW" + "pVFo2nNzc0Xvz/5ti8iry7KafHq8WisqmuMzoWpTBnYjHYk7P02eD0fIySpBZWxN1KEfDH76" + "MytyVs2P0hN3PuZ7C6n0fJC8AgdzOX6JZlJRCvhUDotwmCzHW45RgJgwU2hjFXMyoqVNjTy2" + "5mGEsM84oyvKUrOXfS4t0emh07S1w/5NYKUgk+PEGZeqawjY31qnAtBimoIC/eGNo6u6q/zx" + "xUSs8hJtbvPQU1vWuGYNAYevKhAouZPMSih3k6ltWYR+sHiwjv0U8aN1EIV8aSUGPOnk95K8" + "CnRpYYnVLole+8VjqoEgAsfjx4/Lm3Y3b96c8zvkRf5vv/MO9WzYQJ3r1xeUBb87pRvw4utm" + "BcPxVNg7D3dRT6cI4ZH0FByZ47wybFpa29RU8PtyLE5hIUX71geoiZkstI5axkgEJHkFCmRW" + "gGIQ9OvhcVpTlZKfp7a+bJGZLOxa27dvn+pxYpAbY2JNKuUAUD6tu+zylcx1o2fdW85Ou+7u" + "dIB9+P33pc39/bp3kmGhdkN9va4oGEJO3LpFI2fP0p49ewp+/9vn39K3k0kKBkrv96xj5D3a" + "lqSpiTHVMqDmQ1iM9amhvq6OOru6qHfjxqJTz9jAhVbX0tKiWTecnJk7d+Rz3LQCjQPHB2Dh" + "/PMHDqxY4uHhYWn0xg1dK+mxy0AmR0fLwaF4jaxG9m3apPr72NiYXECfhs24wVBIVj7G8dRa" + "L57hZwotNjIcqa6mZqb0tUVaDseFixdp5vZtims8oC9LzsyMrl0GkAXmdWBgYGWXgVHg2MVH" + "9u7VPSyuBVoUEXBgm70WgJja2lo6+umn9OILLxjWsWtdabcq3k5Uth26GK5tOZcuXaJp2Pky" + "vnQIHTz6m97eXqfFVYUryTnGYhMcKjc4OFjWcwj4TjLkt+fhh50WuwCuI+ci84xwqq4du8mU" + "O8mQ76YiHqRTcF2fA1Nm9+F62L2GfN0GUy2HL0638k0aCMS0nEQVjUm0GC2dZ4gFquHg6t4s" + "8rPykHGuD7OnBJsiB+M/iPidwOhElIbOzNP8YvHRiZpqL22/L0Jbe8O2lYsviwLZVSb7S1Pk" + "RGpq5AAUka2dJ6gDfd0hIjFOn/73RtFrHtm1nvp6ShNj9SQbyMF6PgSiZmCKHByJf3dujtZV" + "V1tOjhaF9fXUkc+bpEMfDxf89uL+AerpqtP0HCunTEBMdlxNx9CN6rPM3Nzf3y/gDR8ojJUC" + "6ln03dPVSK++NEjL87eyCf/jey0Lya0EH1ODF4iRZejHzPNMe2stra3y6DQKZBVBepQGAtY0" + "ROiVHz5C0aUZ+RP/a53GsIogPhcjE8NiJ4xim4VpcvB6ksuXL8sFQ7KSIK0JWXZ3ttGvfvai" + "/In/9W69sIIceH3QwYXz5y15bYslQSgOGhoZGZHnPRB1m315g5E9qri+taVJt/doNgzgCwj5" + "3NG3w8PUyfRhBSwJQvHeGBwnjFOn+KykU+sS7LiHg5syyBwOh/GWLfnIYqveo2PZCAHeGwNP" + "BbN4qEGcJHxXbPd0Mdj1ehYj6wK4LLx/wbnakBUtBgsgrHx/jqVjaygY3jyFgcS+vj7Z1YaZ" + "4fPvWk+ztbvV8TxLzffzABPE4FqYMqyFOM/6GJgyV795CuAFPHHihHTxwgV5XQLOHIMgWoIy" + "3trsAlc4n70sdS3WIyDwxhT9xMSELN/+/fvLUpvKXkWVbzucvXu35PUQ+sknnrD9hXo49E5L" + "0Njw//62QyX0CoB1CViqFCvjkcVKgBx05iDGzHx/OeC6+RzA6GYuI6i8m1onjHpSRvOqkKMD" + "Rg9KMoIKOTph5y43txIDuG6auoIVVMhxMSrkuBgVclyMCjkuhivJcWK6wY1wHTnKbZDlRv42" + "P7fBdXGOmW2QepG/zc9tcKX9MLoNUi/yt/k5LXc+XFcgDiPbIPUif5uf2/A/9n+1U7cLqMYA" + "AAAASUVORK5CYII=") + +#---------------------------------------------------------------------- +aero_dock_pane_left = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAGcAAABlCAYAAABQif3yAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzoyMTozMiArMDEwMExUiZ4AAAAHdElNRQfZAxkQKBW/8myz" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAD+tJREFUeNrtXWlsVNcV" + "Pm8Wz9iewTYYbxhjjDFmM4SloKwkipI0QiIhIU2VSlV+VVGrqlX6p5XaRpXa/kilVmqriD/N" + "IqWtQkjSJA2ozdJUQJMGEwwYAwZjDLaxjbHB23iW93q/O3PtWT1vmzevynzS9fO8eXOX893l" + "nHOXJ5ENMT09rfT09FBvby/NBAI5S6fY66XGxkZatGjRnoaGhnfzXW7bY2pqSnnr7beVSz09" + "SiAQUGRZzllA/EgH6fX19T2d77InQ8p3BpJx6vRpxe/z0YoVKyxL88qVKzQxOUltGzfaSh6O" + "fGcgGb2XL9OyZcssTbO+vp6nazfYjpzZYJBcLpelaSI9pGs32I6cAuZRIIdBUZR8ZyEtCuTY" + "GNZ27hpgVW2WJFspaAmwJTkgxsquxq4EfeXJQTpOpzPfRU6Lrzw5aDV2VQhsSQ5gV4FZCVuS" + "Y/WYY9eKUCDHxsg5Od0XLyrXBwdpdnaWxsfHKZvIh4eHeYhEIpYIQHI4yO1y8TQPvPnmgtmD" + "TldeXk4ej4dqamtpdXNzTtW8nJCzf//+1q3btnWNsAKHgkFau24dFbnd5PP5sv724MGDVFZW" + "RqFQKJflngM0Na/XS1VLl9ITe/dmfX5ycpLnbWhoiA4dOqQsraqibVu35oQk08k5deqUcvXa" + "NaqprqYtd9yhKw50aVa1HJGeWogKVlFRQa2trTQwMEB//+ADZXl9PbW1tZlKkqnknDhxQpmZ" + "maGHH3qIHA79niEQY1m3ZlCVrquro5qaGmpvb+fl37Jli2kEmeZb+/LLL5XikhLavn27IWIA" + "CEuWZUsCKoFR5QPlRblRfsjBLJmaQg5mL8PhMK1paTElU0JoWgPGD62/MVMzRPkhB8jDjPhM" + "IaefjTGbN282pYB6gdnTYEjWPItqtsoOOUAeZsAwOcfb25WNGzfm1T9VU1NLvX2D9If9B/gV" + "n/MFyAHygFyMxmWYnJGRET4o5gvQmm6OTdKrf/mUvCWV/IrPuJ8vQB6Qi1EYIufcuXPKqqam" + "vAkBBAzdCNArb7RTib96LuAz7ueTIMgF8jEShyFyrjNDbCkz3vIBv99P/UNhev9fg+T1VaUE" + "3Mf3eC4fqGRygdfBCAzZOZMTE1RcXGx5wUtLS2lorIjauybIW7wk43PtXbO0aY2P6ip93LK3" + "NI9Mrb59+7ahOAyRg+VEbrfb0kIDgUCAGmrLaUmFN+uzxeyRWzdvWZ5HyMXocitD5MAeMXuK" + "t8jj4fYHDDvEnw74fuzmdVUa4q3pzN4G5F3YRkjXbGTKv1rYbspgZWMjDbG+uq62lht0C9kh" + "agoPAjItUhROz/7+fmq0cPmvWtiOnA0bNtDb77zD3fjwWRUVFeUsLXiX4bjsOneOHn/ssXwX" + "PQWmkGO2lf3Ynj1wgdCRI0coMDubs8J7WVe2vKGBp2dmGczq6m3XcgTamJWN8FVGYcVnDmBW" + "KzTccgrz/akwq1vjsQwODv68u+fyC691hmlg0pj6lw21pRJ9a52T7t65I/dSMglnz56lK319" + "3L5SCwh2eGSEqqqqVP9GbINkShHnRWJWrPKNP50mpfVOum+nQqtKJILN72VfQ0+CJeGSov2f" + "lj4QFMO6CLNGBVMsyK4z7Hp5RqF/fiaRo+sY/e27X0v5HTSo02fOcMchVN1cL5WFmr1k8WKu" + "JabDu++9R5s2baJldXWaNEfkG2XQ4t4KMqO1n2mPHR0dtPfxxyXpkyPHlBdv7qBf3qeQj/Ht" + "dMTI4EGKXkWCGgqtiMD+RBSQpVBYjt4LsUh/+LFCzy86RvfeuTPhd0eOHqXKykpqXrXK8Iyq" + "GqAydHd38/+TCers7MRmXl1bIPWQIyC2QTpePh2i+nskKpKjtT3XiLBEXOzP2l0SvXo2MUX4" + "v7AGYf26dXz5EVwguQ4lJSW0evVqGrlxIyWvvUxIVm+BBMQ2SMcN1s1Usz7MyiEdaVV5JELa" + "QqEQIR/r/dFCIzFvRHwIMhvL6i2QgNgGWVClbQxeLVCT5bgrQnwNVmKftbYuJUMA5Ng/8Wp4" + "vhXyZJMgX/kR+eDkwH+IsSDCGHBi7HFElQA5lkMoBYqkQyFQoiQosTTwPzQ4KUupefdmow1N" + "eu04o/ZflBwlLkhR4c0N1bEmo1VUijLfUuRYfPwai1iZe05J/JFJBTNLmEaMbEVnOUTF5ORE" + "WAQhFhxytMVIjmgrigor2mQkjQTNdZNKNP5ip0RT7Aq7x0EKpfP2i4IYnQfRKoiFBCgWOIpn" + "EbLlTwhXiS1c1Jof8XtHVBhxLScmUEWOq+1K4nikJvCWEwtlbqbzX52hSsytSFHDNJM89NY2" + "vRBpKVm+BwJBB10ZCGa1v+I1Pj35SRhzImHiBqIzNuYgbUloAHo0AZrv1sqLJOrqHKaPPp+l" + "J79eS0WLnRRgbMtxmVlIIFZioW4Ntfnm7QgdPXGb2WJual1VlnU9t56KFj/Wxro1oqAcHfjh" + "rpn7OqYI8CtpVAjYDxpKJerrH6MDH/SQ01PN76MShCJxY0+accZqcjKmm9ICWNc8E6ZPPx+h" + "xWVOqqr0UzgcWihiQ2VxCIGFWW2OsL4sjO0XGBPmujmFjxmyhoAM1Xki1HXhKr3wm8PMoJqv" + "YTJLI6LMq9LpgH462SDMdViIOJEfgSAT2CtvfEF914ZZTXekLI4XceopR3xanBwIKyRHSYpQ" + "TLVW5v+PH3vUhMUeBw0MjtDPfvV6quApNubEtZz4jMULxIqQTERCSLknHoy2ipdf/5BGR8e5" + "RZ9cDiFkPflJIAfdDLo1BJAUUkRrigoyIshSEbxs4Dp78iQ994Nfp62JiB8NKZKGnHy0nPia" + "mq41JT6jULz6gFu//eOf6Xz35TktLpkYPfkR4GPOayMKLQmEqMIjURkbwH1MpYLq62EDkJt7" + "qSWuLDhUDjot6zfRS7/7MT3/01dTvuu5LdOVSZneY/WigShhjgQuc2QQnmKr1GloXkgP6SbP" + "1yAPuId8YbpAlotTavr3n3uaystKExYQgijECycughZgmkRog1GFgI1pE0xjK2Kf3JGo1ibF" + "lAHepUmkiZyu8QjdW7uUfvGTZ+jFl44kfDfLIpwOzysE8RC1B1qQVeRkG7DFXqF0+Xn2mQep" + "ckkZjY2NJcQjbCe9O/QSVGli5EwxgRWz4GWkFcXI4FzgOUeUILXkQH/5x3WiR1uW0ws/eoR+" + "/9r5ue/Qpc3ENDZR+HhBxAvECmTqUsR3uIf1c3PeaXbP7XLQU09t59ra0ND1FILnFivqLIfI" + "R4ycCCNHptKIgwIsriIn7B2FT7YJPlwayAEw/rxxOUQbFpfRvkebuJ3DyWHxTrO0QmlU6bnf" + "WrgnNJmMdHmZH0eISoudtGVLLbtKNDDQnzYeYavIOsoRb+BGyZFTFQA55gCN9xxogRxTEL4Y" + "CdP6+iW0IzBB5T4HjYxH5hyt/Lk0Lcfqg4mS04/7cq71YFzylUjU2lRMdUtl3pVlgnDB6ClH" + "iiqda3SOyVTc5KcDw2EamF5Yfc0n0qnSAiBndnqYmutly3YsWDLNN8Oa0H8YMbdCC7tqlOgN" + "SwqeDtm80tDagip3DphR0fK+4jPTlEHe82ID2IqcvAonXbeaZ7LyTk4ytIhDDLxGZk2h8oaY" + "qmzH0wqj5DisXTSNtIQo9LYcYUvAcocdohdhpupinZh/0SLbrCEQcFUyfb2UKVD+IoclBHlY" + "dfC7HTTBSl5RlKqgq20DIAdr244eO5a5+4mbtXSka10xdbeMEdOUZlc41rVl22VnJuJ32nlY" + "pXM9u9FNn5x0Uv097AYzTvyuqG+thAVvzLfm1uhbA2DjhGPebm+EeFweV3R9nJ9VCP8nRHvq" + "pzJmMltXBYHhDDdcH7j//oxW+pkzZ/jCwYaGhpTfw+r/6OOPqbY2/aESSysrVe+yS04bcYug" + "Fgk77RobydW2ds2H67/47MG/du6klTsUWsMMrXLGhJ+Rwv4ljxR157glbV0fJ4ZdZ5Wou2aS" + "XW8zknrYjdP/JWq99Rltf6At4TfIGPp/CC7bumQ8gxWZKDxqeLoxAxuvbty4QTt37ky76xuG" + "5PT0NG+B6YCVoNjAhV121dXVqtdKC3KCzDbCcl614DvtBgf5Trsn9u6NVs+bDMdPn6346zmZ" + "rk/ltvlWemR6dNk0rd+8kcrSNMVr167x8w1cKgZoLxM4CMWa5HTdDuJwM4Fm8gz7Skupigkd" + "LWQhXOjuplFGclDlAX2CnNHRUU27DFCWhuXLsXA+usvAiKBx7OKu++7T7BZXAzWCKMrDNns1" + "ADFoMYcOH6Z9Tz6pW8a2U6UF7Cp4K1FYK21j2LblXLx4kW/LUOvL0gMM8Bhvmpub813ctLAl" + "OdhAhUPltm7dmtNzCMROMqR391135bvYKbAdOdhlhlN1rXihHojHiSEwUJEuVGc7wXZjDroy" + "qw/Xw+61dDvb8g1DLQeGoFiqapZHGYaYmpOoAsyYnQpkT7OYWdEl3oW1WaRn5iHjQh5G97Qa" + "Isdj0OloBH2DAWrvnKCJqcxz9P5SJ7Wt8dH65hLL8iWWRYFsj8Hx0hA5Pr+fG6CwbK1ekNHS" + "WEwkB+nwv69mfGbXtuXU0pSdGLPnkUDO1NSUJtdNOhgiB0fij9+6RctKS00nR43AWprKyOUM" + "04H3O1K+27d7EzWtKFMVj5m76IRDdfTmTU2um7RxGflxa2urhDd8IDNmFlDL0tWmFUvo2ae2" + "0szE9bmAz7ivZjmsmRA+NWiB8CxDPkbiM6ytVdfU8GNEkCGzCNIiNBCwuMJH3/7mLgpMj/Ir" + "PqudfzGLoPjJP9hO8GIbhWFy8HqSS5cu8YyZeRyKlsXfSLKxoZa+9519/MqXEpu0BUQLOWLq" + "4sL586a8tsUUI3RFQwN1dXXR2rVrudVt9OUN6ZbGZgOer6mu1Kw9GjUDxMQgiIFidLKjI2Vi" + "Ty9MMULx3hgcJ9zb28snrsweg9RC7x5MvRBdGcqM2dbuixf5kcVmvUfHNA8B3hsDTQXHX6EG" + "CZJwT+sKGas2TulZFyDKIsYXzLCirGgxWMtg5vtzTPWtIWN48xQciS0tLVzVRjcj5t/VnmZr" + "dasTaWab7xcGJogR0+M4wPU8G2PQldn6zVOAyODx48eV7gsX+Am3ONYKBVFjlInWZhWEwMXs" + "ZbZnJyYmuOGNo/AHBwd5+Xbv3p2T2pTzKhr/tsOx8fGsz6PQjzz8sOUv1MOhd2qMxor/97cd" + "xkNrAbAuAYfhzebwyOJ4gBwM5iDGyHx/LmC7+RzAyp1thXdTa4ReTUpvWgVyNECPEaoXBXI0" + "Il/bDu0G201TFzCPAjk2RoEcG6NAjo1RIMfGsCU5djoZN5+wHTlYTiS2+uUaydv87Abb2TmN" + "K1fS0NAQX/UpjtrKFZK3+dkNtuw/Dr71lrK2tdWSF+phFx0mCLHNL9/lTobtMiTQ0dGh9F29" + "qumFQlqRvM3PbvgfnhklmOdyrPoAAAAASUVORK5CYII=") + +#---------------------------------------------------------------------- +aero_dock_pane_right = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAGcAAABlCAYAAABQif3yAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzoyMTozMiArMDEwMExUiZ4AAAAHdElNRQfZAxkQJBxqm5sb" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAD6VJREFUeNrtXVlsVNcZ" + "/mc89oztGWyDd8xgjDEGgx02BSVEkKRK8kCWkkWpIjVKX6pIbdVK6UP7UFWV2r60ah8aRbw0" + "SdUsDSFEJAW60SQCSlIMMXYwqwEb23gBY7zNfnu+O3PG1zN3PHebe2+V+dBhPHfuPcv/nfOf" + "/z/bdZANMTs7K/T19dG1a9doLhDIWTrFHg81NjbSkiVLnvT7/QetLrftMTMzI3xw4IBwpa9P" + "CAQCQiwWy1lA/EgH6fX39z9vddlT4bA6A6k4290t+LxeWrlypWlpXr9+naamp6l940ZbycNp" + "dQZSce3qVVq+fLmpaTY0NIjp2g22IycYCpHL5TI1TaSHdO0G25GTxzzy5DAIgmB1FmSRJ8fG" + "MFe5q4BZtdnhsJWBtgC2JAfEmKlq7ErQ154cpFNQUGB1kWXxtScHrcauBoEtyQHsKjAzYUty" + "zO5z7FoR8uTYGDkn59Lly8LN4WEKBoN0584dyiby0dFRMUSjUVME4HA6qdDlEtPc9/77i2YP" + "Nl15eTm53W6qraujNc3NOTXzckLO3r17W7ds3do7xgocDoVo3fr1VFRYSF6vN+uz+/fvp7Ky" + "MgqHw7ksdxKw1DweD1VXVdHTe/ZkvX96elrM28jICB0+fFioqq6mrVu25IQkw8k5e/asMHDj" + "BtXW1NDmTZs0xQGVZlbL4ekpBa9gFRUV1NraSkNDQ/TXQ4eEFQ0N1N7ebihJhpJz+vRpYW5u" + "jh595BFyOrWPDIEY09SaTlO6vr6eamtrqbOzUyz/5s2bDSPIsLG1M2fOCMUlJbRt2zZdxAAQ" + "ViwWMyWgEug1PlBelBvlhxyMkqkh5GD2MhKJ0NqWFkMyxYWmNqD/UPuMkZYhyg85QB5GxGcI" + "OYOsj7nnnnsMKaBWYPY0FI6pnkU12mSHHCAPI6CbnFOdncLGjRstHZ+qra2ja/3D9Ie9+8RP" + "fLcKkAPkAbnojUs3OWNjY2KnaBVgNd2emKY33/mUPCWV4ie+47pVgDwgF73QRc758+eF1U1N" + "lgkBBIyMB+iN9zqpxFeTDPiO61YSBLlAPnri0EXOTeaIVTHnzQr4fD4aHInQx58Mk8dbnRZw" + "Hb/jPitQyeSCUQc90OXnTE9NUXFxsekFLy0tpZGJIursnSJP8bKM93X2BqljrZfqK72iZ29q" + "HplZfffuXV1x6CIHy4kKCwtNLTQQCATIX1dOyyo8We8tZrdM3p40PY+Qi97lVrrIgT9i9BRv" + "kdst+h9w7BC/HPD7xO2biizEydnMow3IO/eNkK7RyJR/pbDdlMGqxkYaYbq6vq5OdOgW80OU" + "FB4EZFqkyAc9BwcHqdHE5b9KYTtyNmzYQAc+/FAcxseYVVFRUc7SwugyBi57z5+nbz71lNVF" + "T4Mh5BjtZT/15JMYAqFjx45RIBjMWeE9TJWt8PvF9Iwsg1Gq3nYth6OdedkIX2fkV3zmAEa1" + "Qt0tJz/fnw6j1Foylp6eHkHtNj94wGpHCGAdrWR6fv369SaJSj+Onfyc/nwuSsMzua2E9V4n" + "fbvNRZvaN4ozriI52HbX0dFBy+vrVVlHGNwDOWpaTog5ZoPMQurq6qInHn887XdYUN09PWLc" + "MHVzvVQWZvaypUtFK1EOT7z6BQmt99HO7QKtLnEQxkM8LEuQErwslyPeN6jpH+AAwPOKMLHB" + "TQ2xzzn2eXVOoH+cdJCz9wS9+52N5NCzzQ8CrKys1CQUbPXD8EZbW9uC68eOHxfjbF69WveM" + "qhKgMly6dEn8O5Wgz06cpN9O3ke/3CkQ6nGBM0GGGBzxz8S9aqqQwAP7LyqALIEisfi1MIv0" + "R0cF+nHF5+S0YpsfIG71YwRJgfEvrEFoYyoPy48wBJLrUFJSQmvWrKGx8fG0PL55LkYNDzio" + "KBav7blGlCXiYv+t2+Wg17vD5LRimx+ANEPMh+EGBQ9WrPdHC40mRiOkYZypmRqmw8w0d5BW" + "tdshpp03pW0My5xQsXbSQp/AaoNczrDBlZjkE8GR8rtDQ96FDAGIJf7QRY4eH2cxK0xUbzbZ" + "0ISxVfQFUZadAvQ9zrgRIPZBQtw4EBwaDAIhToKQSAN/w4JzSMSZJEeLkAWNzy2IQ/q8tBVZ" + "4NjKpRkTJMERF17SOEg0GbXVSBDmW0osEZ/4mYiY58LFM6Vl7kFgzyhtPeh0k50+axVyLYPH" + "o3ceRA2yrfiMst/CLDhZltysyZQwW3oO9q+QUGgJwtQQlFSTQjz+aMKkht/DpJQkySkVilqo" + "Ieb6UIgCIWfW54xojWrLwNOVFWRC5cC/qWY6bHxgjsoLHfO1XVjYHykJgpAeeFwRYV6BJMnR" + "FBQ8C2LOX5mk46fv0u270QUCSU1b7poZIVO6QDRCooNYVOCgm7eidPDoLbp4bowqipwLCNIT" + "opLACQR09Tmc4kzPulyFNDo+RZ9+PkTOwop0MmSEozkvOrBYuhBYKBYnCMM1k9MR2ndokL5f" + "WUgrl1dQ/4wQ78hVpCdtcYgXrQWf4Vg8njS1piUstkDc4XBS/41ReuO9/1IoMt+HKFGFMUlf" + "ZnbrSYUoPCbJmGSMIBiK0s9/c4R6Lw5QvTu+3jqmMuAf+hve+vB3RIjFW0+qWtOyQp8/l1pQ" + "eP+3bt2h19/657xpQly/ZlaL3BAwc5dBagtKU2tCvEZHZWyUn/3qLRoaHqOlzFJQo8aSVlqK" + "SuNGgWBUy0kVJKyfC5eu0u9efVtiGQvEu13pc6lpW9FyMuWFXwtHE2otQ+N6+Ye/pt4vvyQP" + "65OiMsKWC0lVxtVZQnWGovHAK4LY52AYP6RhjRUGKWdmZtLUQqO/nn7w8vP02h//llZTseaM" + "L1Xi3zmQB8SFkWKzzGkYLEgP6QZk5rL+NCbQskCYCdFFHc70nuW13/+EXJW1dHFS+WYvTlKY" + "NZ0gK2aAfZlhhsdkSCDGMX3E2oyfk6N1J5l0j4sUU1NTVLmsgl564Rv0l4PdC36TqsRU8BqL" + "OM0iJ1v/Fw2z8jDBBZCdlJHIX/z0Baqvq6JPRqOqhm+4+gqLxMTDLEtjJhonJCZtOVr3YEYT" + "m5zkBIm5Hn9DLb343DY68PeBpGWH+7EeTaoSOfjffPOUGZDr8xaAkYNaHYxS0rZ1FxXQK688" + "Rn5mrX08EBGvOVWYa5wcUZXF4nGLJLGoMGcUjkrI0SqMWIaWwzE0NCjujN55bx2d7g3Hna2U" + "liNrvpq4J1QK2XIwSc2wjiEUi48IlHld9PDDTTTlLaN3+kLkYqzwCTil4EYG4kQfE2QXoNow" + "8uBMmNRAsuVoGltbrMYlMDExQfVVS2g2WEzeYgcFZ8ML/By5lmPmopFUQyQNCR9nbE6g8ion" + "3dvhI1ruo5OjEXE4xykda1OITA4o0gHRUam1lmtghrO5IcaIGU2eL5BphMFKLJaXG7Mxevtm" + "hIpW+ah7wpxWbcrSKKioycnJjM8n/45fMKXg2fIih5tzMTo2IhDTbFTsyv2UhuUrPjNNGVie" + "FxvAEnKSQsgwtmYJbKBWU2F5y0mFGvHweSE9s6ZYGxdmpr0dTyt08UKaDdk1BCpqLt/4hEWQ" + "8Ju0IsL6Q6yh8y1ZIp++09wF5UiLVxOXmxUu204yIyHdTSa3ZVFpNUE8WNt2/MSJzH0Vu4eX" + "ySlXAROzoGWMmCaZXeEVRTEqZY/7ipymEORmTcVX6KQpVpxK5na4GletEo+nwt55PsakFBh9" + "RlBDKoiBULFpqSrDalElqgqVCWe44fOhBx9MyzevBD09PeLCQb/fn/Y88v6vo0eprk7+UIk9" + "K2bos54CanggSm7mlPiYheZlAVPVHla9mRypEOlocEL58I2HWeWIy+2Kr4/zMVJ8/yZxzbQL" + "b77Y/8EHgkvDTjJsbFrCap0abx4qaGh4mHp7e2nHjh0LfsMid+h/CC5bPnAPVowi32iBcn0G" + "8jc+Pk7bt2+X3fUNB3l2dlasLHLYtqmD2vpO0rtfbadV9wq0tsRB5YwJH9YSMDLcWDPtAEHq" + "VJ9IDPsMYo00I2iafWKSuI9d6P6CqHXyJG3t2DCvRbq6uoT+gQHZkdlMwC6DivJycYxNKXAo" + "3jLWYlrWrJH9/caNG+L5Bi4FHbSHCRyEYhxPrvUijkJGMkbP5eAtLaXqmpqMLRhAi/zPmW46" + "NFhC48HcKrfaUic93+qkbe1t4omIuiwBHLu4a+fOjIXXg5CCkwqLLNhmrwRozdAoh48coWef" + "eUazjG1nSnPYVfBmIr9W2sawbcu5fPmyuC1DywytUsDoQH/T3NxsdXFlYUtysIEKh8pt2bIl" + "p+cQ8F12SG/H/fdbXew02I4c7DLDqbpmvFAPxOPEEDioSHdNBgvSKtiuz4EqM/twPezsk9vZ" + "ZjV0tRy+ON3IN2lglELJSVQB5rDNBLKnWcw8xRLP4tYs0jPykHEuD717WnWR49Y56KgH/cMB" + "6vxqiqZmMo9O+EoLqH2tl9qaS0zLF4jhy63cOvtLXeR4fT7RAYWXbvaCjJbGYqJYiI58NpDx" + "nl1bV1BLU3ZijJ7HATlYzwdHVA90kYMj8e9MTtLy0lLDyVEisJamMnIVRGjfx11pvz27u4Oa" + "VpYpisfIKRM+oHrr9m2qrq7WF5eeh1tbWx14wwcyY2QB1SylbVq5jF56bgvNTd1MBnzHdSXL" + "eo0EP9sNViDOcIN89MSn21qrqa2l0bExMUNGEaRGaCBgaYWXXvzWLgrM3hI/8V3pNIZRBEkn" + "/+A71TCtohe6ycHrSa5cuSJmzMjjUNQsRkeSjf46+t53nxU/8d2oLSBqyOFTFxcvXDDktS2G" + "OKE4aAjzM+vWrRO9br0vb8i2UFEOuL+2plK19ajXDeATgyAGhtGXXV1pE3taYYgTivfG4Dhh" + "nDqFiSuj+yCl0LpqVSu4KkOZMdt66fJl8chio96jY9gIAd4bA0vl3LlzYg3iJOGa2hUyZm2c" + "0rJmgpeF9y+YYUVZ0WKwlsHI9+cYOraGjOHNUxhIbGlpEU1tqBl+yq3S02zNbnU8zWxnAHEH" + "E8Tw6XGshbjA+hioMlu/eQrgGTx16pRw6eJFcV0CzmRDQZQ4Zby1mQUucD57me1e7D2C440p" + "+uHhYbF8u3fvzkltynkVlb7tcOLOnaz3o9CPPfqo6S/UO/jRR4qcxor/97cdSqG2AFiXgMPw" + "gjk8slgKkIPOHMTome/PBWw3nwOYubMt/25qldBqSWlNK0+OCmhxQrUiT45KWLXt0G6w3TR1" + "HvPIk2Nj5MmxMfLk2Bh5cmwMW5Jjl5NxrYbtyJFug8w1pFsg9S5jygVs5+fo2QapFgteqNfY" + "aHXR02BL/YFtkOtaW015oR520WGC8Ok9e2wnC9tliEPLNki1QKvxr1hBHR0dtpTD/wDriTgZ" + "SBhbDwAAAABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +aero_dock_pane_top = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAGcAAABlCAYAAABQif3yAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzoyMTozMiArMDEwMExUiZ4AAAAHdElNRQfZAxkQKSNpU8hr" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAEFhJREFUeNrtXWlsXNUV" + "Pm8W22OPYzu24yXxEscxzk621kDaAGVTFVqxCoRaxJ9WlSr6j1+V2p+tVLX9U1URUlNVXdgK" + "EhRCgYKgSShtFpw4qx3I6iReEie2x57tvZ7vzVz7eebNzNtm3kPyJ109+828e885313Oucsb" + "iTyISCSiHDzyOf3peIKGp+SildMa9tH31wVoZXvbi21tbT9wW+9MSG4LkInp6Wnl8Rc/J2XN" + "nXRfn0JdIYlCfL+MJS3ja4Cvfr76DOancEoi8R8Jvkb5OsvXKU6DEYU+/UQi3xcHaPdj7S8x" + "QU+7rb8WAbcFyMR/j/STtKqPfnFHkqoUifxszYAPZPDfTIwkpWqUmVoFgtD+ZAVJoQSI4hvb" + "JYUeu8dHL8z00dD5z57ir3iKHKMVsGTYcyxOnTskKkumjFpMgKRgUqa6h1Lleg2eI2dsRqGm" + "ComKN9IsBMppDfnUcr0Gz5GziHl4bswBUJuVHAmQyFyXp+j8LcYhtbxSNVOT8GTLwcCtKGlC" + "cE0bT0kzZLYDUpSFSc7436vwZMsBGXE2mo+vki/loamMpK+Skr5nEHKa0KQiPLa0ay0vbEFe" + "gyfJgbsrswVlad6YPjajTCk/WnWlTdR4lQC1lShz+Qm3mtSy/G6rrAtvkiOn3Fw/SEmnpOZz" + "lRwTLUd0ZSIYVVtNOikWuslSwZPkoLtJLqjhCwNPswOldvyaD0ZTZah5erRf8yQ5MFxc03Ik" + "zXiDq3oxUd0XEJJulXE5lZBfwqNNx5PkJLj/iSdT82gQEC1lriuT0/9bcQjSLVJc0ULVLBdb" + "jnGkxgSFr0gStyApVfPF6CCZdwiSmi5NzRctSE5l4lFuik/O4NCQcvXKFYpGozQxMVFw8N1z" + "gY2WSNVqdezxpQyrOgWa6NNnsuVox5lk2jlIpLtM0XJefe21vOKhyNraWiovL6fmlhZa3d1d" + "1Fn9opCze/fu3q3btp0cHRmheCxGa9aupbJgkMLhcMFn9/z2E3rpukJN3K8tLZeoOihRlV+i" + "CvZ2y5iooC81O+03YRYxCx1jdqJ8neYbk3GiGzE45xL9jfPayd977NFHC+Y1NTVF8Xicrl27" + "Rnv37lUaly2jbVu3FoUkx8k5evSocvHSJWpuaqItmzdbymOWW84UG66cI1AI6FfdLYkUf8rj" + "MkOO6NJATpTJmeUmM8PkRNjjmI4paqwTjyeNZcYQFayuro56e3tpeHiY3n7nHaVtxQrauHGj" + "oyQ5Ss7hw4eVmZkZevCBB8jnsz4zFOVaHWGCKlm6crYbNx61GxNdGRwF2SQ58MxinFc0nWaS" + "qTJAdtI4N1lobW2l5uZmOnTokKr/li1bHCPIsbm1I0eOKKHKStq+fbstYlRwTZ7mqj7Do/Ys" + "J9T4WDKV4rL5pD7LA4varaXzRIpwGRG+2iFHNSLrC72hP+zglE0dIefosWNKgkfx23p6nJEq" + "keraoolUbVdTOi5BDyScBW2C9xXmJpaU9T9X3XNZ04I0ZZBNcgSgP+wAeziRnyPkXOYx5vbb" + "b3dGwzRkTVIKJHR33+0I0IrpS+rVJxV+Rpu/k4AdYA8nYJucg4cOKRs2bCC/353JQzgG326V" + "6PjJL+gnL/xaveJ/M96co/KwHWAP2MVuXrbJGR0dVQdFt7BxaYCuXJugn//yVaqsblWv+B/3" + "3QLsAbvYhS1yTp06pazq6nLNCJvrAzR58Sr97FfvU3Vdx1zC/7iPz90C7AL72MnDFjlXORBr" + "bGx0RfmeGj9dPzdOL77yBYVr27MS7uPz2/h7bvRwDWyXEQ7C7cBW1ZqanKRQKFRyxTurfRQd" + "jtAHn82oXVku4PNvJqepu62KTtxIlFTGKnarb926ZSsPW+REYzEKBoPOa+bL36SvRhS6t6uK" + "WpsqC2YVrpToo7HcvnKxNlHALrCPHdgiR+bATjIzd28ADSGJqhCzlPlyGm6Wg8qP2eAhA9LP" + "jKema/RQwc9XBX1UnS7Xacg21yI8t2Tw3PoAfXTMT8u/wcbnCh8OSBxcEoXYNy73pyY+A+m5" + "tYQB3bGVd0mZxMGnRBWyQuX8fNCnUJlfoUbmrIpJqd8r0fc2e84U3iNn51130LqDn9Kfj/fR" + "mq8ptLrSR7VMSpjJCLGhy/mKjjRgYm4NDSfGCZs6p5nQCU7XufWdmeUAeh9Rr/wf+taOO9xW" + "PQuOkKM4vPnr7ef76P1/H6CX35NpKFK8NeTVPB79tNdH9z9zp6M6ONXVe67lCNz/jTs5uS2F" + "u/Dkjs+vOpxqhbZbDgRxulv7qsOpbm0ul4GBAeXcuXM0Mztr+GFEwGZnCCoqKqijvZ3Wrl1b" + "IlPZx4kTJ+j8hQs0a8I2MOzI6CgtW7bM8DMhtk1nZyetX79eEnnQ62+8oWzatImWt7ZSWVmZ" + "4cwwuQdyzLScGAdml4eHqb+/n77z8MNZn2N9/tjAgJo3ZnidjqMyEQgEqH7pUhhE9/M333qL" + "rNgGcgv7WLHNo488IklYGKoOh6mjo8O0Yii8oaHBklHOnz+vTm+sW7duwf19+/ereXavWmV/" + "RdUAUBkGBwfVvzMJOn78OC1ZssSSbayQo7XN5NQU+c59+SUtX7686EbIxIoVK+gcC6EFdrZg" + "D8I67vKw/QhTIMVOlZWVtHr1ahodG8uSEfK5ZhvmJYD5HzTtUgNlxqLRBV0i/nZjBhktNJlI" + "ZHXPkM8t24CXRVfaw3AtCFVdcFoYE7jtkGe2HLfkEXLYIsdOjJPPC1O7tyJ7aWb1LOVzAnPk" + "WMlIsfhcTgUyxp9SQ69MOxXQqn1ExQwIAaysPSj8jFHhMeiK76JwvZYh8rG7DmLWEPnk19pG" + "yF1IPqEb7GNWF61tfFqjmIUZYs4Px2g25iv4nBOt0awOotx8nwOQH3oUir+EfpZ6I81zgcwb" + "pjKiwoZElH/q7E06fDJOO7++lFrqKct9zmeQUiJft4bafP1WkvYfvsWxWJB6V9VQssA+XisV" + "Tduj2BpzxBiR69lAIEgjY5P08WfD5AvWLVBWSZ9k1iOq1OTkLDerBUg0PZNgfUZpaY2fljVU" + "UyIRz5exLV3mujUrSU73qXpJknx04dII/fGV/1FMs55spJXKmrGsVCkfcUIeAegDvaAf9MzU" + "XWsfKzYVZfm0AphNuQRAhDs+PkF7/vLBgrPkipJRETIqhhg8rcpjJWUSkU++OX7SR7OhH/SE" + "vnqV1ooe2hZsu+VkCoA+8/Tgl/Sb3/1V4xkrJIbdzNqhV3tL2XJyyaK9N/+deT1EZYOe0Fd4" + "cYUqrhF5BNQxB1PVMQt7rDBJOT09ndUtdLa30vM/eop+/4d/ZtUMrImIgVT8P9ddsAyKetIs" + "XjJ3Gp4XykO5mes1Qj7IheUCWQ5l6QM9a2uqFmwgBFHIF/ZBMgM4UMIbVMmBsQp5HnoQz2WS" + "Mzk5SQ31dfTcM/fRy28ey1I4sw8XELUHeZaKHCPjXy55oF9DfQ3duHFjQT4idrJq1yxX2hI5" + "eQTHWkb7imZ69snt9MZ7F+c8O3wfB4y0TV9rCK1BSoFcXYr4DPcg79zsNN8LBnz0JOsFb+3a" + "tatZBIMctICkRT2EHAE7xpBztByB4eHLVFNTw/FNixrnKEp2y9F71mqNs4tcsszLjE2Iftqy" + "pUXdjAj99CBiFdmCHtoA114QmqPGaYEm39q4hCLREIVZoWgkviDO0Ws5pdw0kumIZHw4px/G" + "Jey77u0KsT6yqlcuiCkYK3pkudLFBlY4u1fITMyIqqQwSrar6u6igZ4rLQC5IT/0gD6lQEm2" + "RqFp37x5M+fzc3+nbpRE8UKy6Olnxqt1oqK5vuMz15KB67J4AK6QM2eEHHNrrkCvB3CZLNdb" + "TibMmEMMvHZWTeHyxtlVdus0eD4EhJKlhtYh0N4zChFLIHJHHGIVCR4PsU+sesmSrPLd7uQC" + "5awcBmz416WIyucCNC5T78ii0WqCfLC3bf+BA7m7H82qpU+vAqbd3RompkvnVDjkc8s24CXQ" + "uXKl+noqnJ0Xc0xGgagZyYzgKBxGxduWGnPsFjXSVcFgeIcbrvfec0/OKH1gYEDdONje3p71" + "PGT/14cfUktLi24ZkO/ayAi18ucJnX1t+YwsbGNm3xvkxV7yy5cvq3umAxs3bJD+/vrrCjLB" + "24/M7AeeZeNgu6qZKBhKDl+5QidPnqQdO3Ys+AyCof+H4QrJge9gRybkRg3XGzMg39jYGPX1" + "9eme+kYgGYlE1MqiB+wE3bdvHwW5jKamJsO2EeTEuLLDPkaBxqHa5tQpvPttvnr29/crFy5e" + "NLWTHqcM6mpr1Tkko8BL8eq5Rvaw4nq4dOmS+n6DgIEBuoINDkIxj6fXepFHkA2aa2Y4XFVF" + "y9jojQX2e58ZHKRxJjkWN/ZLIYKc8fFxU6cMoEt7Wxs2zs+fMrAKvHbx7p07TU+LG4ERQ5QV" + "45i9AwAxaDF7332Xnnj8ccs29pwrLeBVw5cSi3ulPQzPtpyhoSH1WIaVFVqjwACP8aa7u9tt" + "dXXhSXJwgAovldu6dasp79EsxEkylLfjrrvcVjsLniMHp8zwVl0rp8nMAsSv5HgCASrKXZ3D" + "g3QLnhtz0JWV+uV6OL2md7LNbdhqOWJzeqHN4GaAQMzIm6hmowpNzxYuM1QuUWVFfm8W5cUN" + "xjBGIOxh90yrLXLKbU462sGFK7N06PgkTU7nnp2orvLTxtvCtK678Ku/nILYFgWyy22Ol7bI" + "CVdXqwEoIttSb8jo6QwRyTF695OLOb9z97Y26ukqTIzT60ggB/v5zEzd6MEWOXgl/sTNm7S8" + "qspxcowYrKerhgL+BL36j/6sz57YtYm6OmoM5ePkkomYUB2/ft3U1I1uXnYe7u3tlfALHxDG" + "SQXNbF3t6qin557cSjOTV+cS/sd9I9thnYSYU4MXiJll2MdOfra9tabmZvU1IhDIKYLMGA0E" + "LK0L07NP302zkXH1iv+NLmM4RZB28Q+xE2ax7cI2Ofh5krNnz6qCOfk6FDObv1FkZ3sL/fiH" + "T6hX/O/UERAz5IilizOnTzvysy2OBKF40RDWZ9asWaNG3fl2gRolxuzKI77f3NRg2nu0GwaI" + "hUEQA8fo8/7+rIU9q3AkCMXvxlSxU4C3TmHhyukxyCis7lq1CtGVQWestg4ODamvLHbqd3Qc" + "myHA78bAU8Hrr1CDBEm4Z3aHTKkOTlnZFyB0EeMLVlihK1oM9jI4+fs5js6tQTD88hQmEnt6" + "elRXG92MWH83Ygy7W52sQJRZaL1fBJggRiyPYy/EaR5j0JV5+penACHgwYMHlcEzZ9R9CXit" + "FRQxEpSJ1lYqCIOL1ctC38XZIwTeWKK/wmEE9Nu1a1dRalPRq6j21w5vTEwU/D6UfujBBx2d" + "68oHseMFL70zEjTWfdV/7VALswpgXwJehgcySwGQg8EcxNhZ7y8GPLeeA5TyZJuTM+pOw7Pk" + "lOpMaK7zqV6AJ8mxEoRaxSI5JuHWsUOvwXPL1IuYxyI5HsYiOR7GIjkexiI5HoYnyfHSm3Hd" + "hOfI0R6DLDYyj/l5DZ6Lc+wcgzSLzGN+XoMn+w8cg1zT22v6GKRZgHycosMCIY75ua13Jjwn" + "kICVY5BmkXnMz2v4P+EM9joepX/9AAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +aero_down = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB8AAAAgCAYAAADqgqNBAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo1MTo0MyArMDEwMMndnrAAAAAHdElNRQfZAxkQNALaVrQp" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAAhJJREFUeNrtl01v2kAQ" + "ht81FgECjUQUyeKjBrfi0EOJktxzg0uOSaWe0lNP/Wk99lBy7A+oSiO1ORE+BChSTjGfBuPs" + "rATCNSkmyHtpX2ll2czOs+OdWTMMXIPBwKnVaqjX6xiORghK0UgEuVwOhmEgFosx1u/3ncrV" + "FYrFItKpFMLhcGBwy7LQ7nRQrVZRLpXAfl5fO4l4HLquBwb9U41GA2avB6V+e4t0Oi0NTMpk" + "MiCuOuavQlXVtRNGFs+NobPWLhphiO783YZ4gut3tc3OEN9/9fDQt5+0ebEbwttCHG9eR335" + "9A0v5LhDx0LlW+tJm6OTLAr59WDHcTaDiwXk96AqNj5/+eH57fzsEIa+t4k7KMur8TMMPYkP" + "744xMO8Wg+7puZ/5HrhfMI3ZbIb9ZByX708xHt6LK93Tc78+XHu+alXrlNdT+PTxgpepBtu2" + "fc8nu1AotB18Op1C0w7EdRMxxrwJtyn8uXOW9ezIt5ErctlwT+SUrTKkKIo7cvrUTSYTKXDK" + "dEo6V+RULrLkipxeuSy4p9QILmvP5yfhAi4z4VbCZZXaMkfZws/W+g//R+Hz4046fIe3R3S6" + "0YEftChIOtuJR1zRLvHiQ4r3afRxCbLeCRzhzWK73Rb/gNRXvGP8WqmILkLTtEAbRQqu0+3i" + "980NyuUyxGabpila5GarhVGALTJF/TKbFS1yIpFgj6VqglrJraorAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +aero_down_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB8AAAAgCAYAAADqgqNBAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo1NDo1OSArMDEwMEcuCiQAAAAHdElNRQfZAxkQNxVyqGIt" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAABENJREFUeNrtV02IHEUU" + "/qq6529nFnezLtGNEEk0O5NZI4GoQaLxoCJ4NgjBgAe9K/5c9SToQbx6UaJgQLyJXgIRDUkk" + "t+iS1YDgwSWHMGOyO7Mz0z/l97qqZ3vGnd0ZYb1oDY9XXT39vve+eu9VtwJHo9H4+ufrK8+f" + "XQ6xuh5jt8ZCReNM3Ue9uvjl3NzcKUXgH06fvX7C1B7H08cNDpQUSvxjXlGofWqPWo8JYCiR" + "CCchdZe6Q71OudE2uPy9gv7tEj57qXpeXbh4yXzQfAzvnTQoGwWPKL4WMM4JrERgZdwhDgh/" + "sRExCMURLhjOu1rjrW8M3tz3I/QnPwW4/4RCPrIPjRpaWad2Er2Nl+JELoox+xwguP6tDYOD" + "RYW4sz1wnjzeaW3nnh2VKQXDvYpH/FUYWShpLBPXH4fGPCNaudHC+ctNNG6HI/+35y4fTx6b" + "wZGlaYTRznb91BszQmR0aKhWrUDo+fSrX0YaO/XsImqHp9HK+GcyOq2jOM6CG0kGByhabmo7" + "ly1kHqJNg/X6PF7xAnz48Xd/A37t1adwqDqP9cAM2jIZ+0NbkVSQgAUuI6VE0lLpZ2xs9Z2e" + "waHFBbz7xjNYa/7eF7mWdbkfG/QlGpqL/SDeZEDbyPlQbKx2YuhRMocTt367F+PevTN45+0X" + "0F5bTbRcy3r/WQzZyNplJIO0x7YMPIp2ks2XpM4zJXQr9FCvHcBH77+OBw7ux83OYJmmVKcM" + "JlE7SbekD57SnaUs21iGu5s8vLoBzNy3P9HDI7vnm83GYqg0w7MJF2QiV8YhO52oLep2Y0Q5" + "DQA6VgO332IvNNnIaSSIbB/3XaR9qmN3PUF/jV3kUZrA8WbCqeFSs3tiqEXY043tUHG6O2rr" + "yEcNM1QtiV1hwLW9NNtt5KH1Ktl7bR9Mki6lHtv37K0iz+5zWr6h29KByM81DPaS9z0Fhemc" + "QpnHWdGzbTWn7enmTQCenmI9onepW1xYC4Amy1Hx9wVtnUzBO4x8nTcKSicLXpKuPCA8m7GT" + "gKeUC3iX4NKaNwjeZka3erbWgyDajLwb2PY5xasC1xl8QnNKtSRiPCG4ZHaPtrpOpDIEQ4KJ" + "ogztkuotulrmYpEbnReqo836NhOCJ22UKD2JPpLorbRDY50bAA8t9V1Kj1T3tHt9cm8xySEz" + "IXjax/sMOIxkDIDDlQV2Pl7HAd9KUtvZMe574a6M/8H/q+D63/Mii+Pfzc+jMmugwka+2w4U" + "WdjlnMY054Lrv/xQDheuedj3RIQSi7/C7lLJASV2mIJnDxb/H/T2gC2xyN5e4PM5HpF5vqnM" + "c71M0LlvFc4c9eEfXTq8Ur96pfr58nHUHjV4cEpjhqAVgvHDgocNHYDteOOCy6nGMwT8KEGL" + "rP5JadCjX/mu98dFoBpfwbGHl2z3bDab5uq1ZZxbiXGztXufyPeUNV6sajxypI7Z2Vn1F7X+" + "m7ZM/KBNAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +aero_down_focus_single = aero_down_focus + +#---------------------------------------------------------------------- +aero_down_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB8AAAAgCAYAAADqgqNBAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo1MTo0MyArMDEwMMndnrAAAAAHdElNRQfZAxkQNALaVrQp" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAAhJJREFUeNrtl01v2kAQ" + "ht81FgECjUQUyeKjBrfi0EOJktxzg0uOSaWe0lNP/Wk99lBy7A+oSiO1ORE+BChSTjGfBuPs" + "rATCNSkmyHtpX2ll2czOs+OdWTMMXIPBwKnVaqjX6xiORghK0UgEuVwOhmEgFosx1u/3ncrV" + "FYrFItKpFMLhcGBwy7LQ7nRQrVZRLpXAfl5fO4l4HLquBwb9U41GA2avB6V+e4t0Oi0NTMpk" + "MiCuOuavQlXVtRNGFs+NobPWLhphiO783YZ4gut3tc3OEN9/9fDQt5+0ebEbwttCHG9eR335" + "9A0v5LhDx0LlW+tJm6OTLAr59WDHcTaDiwXk96AqNj5/+eH57fzsEIa+t4k7KMur8TMMPYkP" + "744xMO8Wg+7puZ/5HrhfMI3ZbIb9ZByX708xHt6LK93Tc78+XHu+alXrlNdT+PTxgpepBtu2" + "fc8nu1AotB18Op1C0w7EdRMxxrwJtyn8uXOW9ezIt5ErctlwT+SUrTKkKIo7cvrUTSYTKXDK" + "dEo6V+RULrLkipxeuSy4p9QILmvP5yfhAi4z4VbCZZXaMkfZws/W+g//R+Hz4046fIe3R3S6" + "0YEftChIOtuJR1zRLvHiQ4r3afRxCbLeCRzhzWK73Rb/gNRXvGP8WqmILkLTtEAbRQqu0+3i" + "980NyuUyxGabpila5GarhVGALTJF/TKbFS1yIpFgj6VqglrJraorAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +aero_left = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAfCAYAAACGVs+MAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo0NDo0MCArMDEwMN+SkKkAAAAHdElNRQfZAxkQMBKjjWFJ" + "AAAACXBIWXMAAAsRAAALEQF/ZF+RAAAABGdBTUEAALGPC/xhBQAAAkJJREFUeNrtV02P0lAU" + "PS2lUEIlkxlHpCAEZ89Ol27M8A/czMK4duO/caeJiSZu3SgTN25M3DhBFkMmDhQJEK0apnwM" + "0wK1t+Z1YOqyr2w8yWuT95qcc9+97/UeAS6m06nTarWg6zrOZzPwhJJMolQqoVwuI5VKCcJk" + "MnFqh4eoVCrQcjnIssxVgGVZ6PX7qNfrqO7vQ/jSaDhqOo1isciV+Co6nQ5G4zFEvd2GpmmR" + "khPy+TyIW7xwt0SSpMgFECdxi5EzX8HGBDiOs1kBDH7ymaKoIAjCpQAiXy6XXAlFUfR4aBA5" + "EyBGET2R630LM+tvxpmQNQG8BpE3T8/w8cjEb3MREMe1BuLxOL4bY3z4NIAob/nzq1x+DYQt" + "IBaLodM18PpNA0p6Fwn5kpzqjXZmTUCYRUiR//x1hucv3yOl3lhbY4Gyd+g7QJGffG3jxau3" + "SCg7gXUWLH3nC6BfJI2wUC4V8OTxAZ4+qwXWiGexWPgp8J40EeYwTRM72xk8OrgfEMC+CRzD" + "sEUYhoFi4ToePriDuBTzBdD20zqrOWl1Mmz0ej1kMhncu3sTn5u2XwORHEOG4XAIbfcazm0F" + "aUXExdQO3oS8MXZbrz1t6ZL/gG3ba2uRtEKUYirMf2Hj/cB/AZ4A1hxsREDCdUKrVyNvULD0" + "HyBO4vackXsokXNtGR0R3t0RkSddf0iX1Hw+h3TbNYnvajXPKGSzWe7ekILsDwY4bjZRrVbh" + "JX80Gnnu+Fu3ixlnd0zR3yoUPHesqqrwB18A5ik1mQXQAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +aero_left_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAfCAYAAACGVs+MAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo0NjozNCArMDEwMCXtbZ4AAAAHdElNRQfZAxkQLw561jOY" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAABAVJREFUeNrtV02IHEUY" + "fVXTO70/M+yOExNd4oIRkgljDIiyQZR4FD0rQlDw6E1RDwkoIqiHXLzlKK4Iwb2peFDJHgxx" + "dS+LcTMhhw0qJkvG7Jjsz8xOd1f5qqu6p9eNMB2Y9WLBm6+nf+p79X2vvqoSYFtdXf3ql8bl" + "52aWQlxbVxhkmyxJvFz3UK8dmq1Wqy8IOv/+xEzjSV17AsePaTw0KjDCF4cFUKQtEB6vJSz6" + "bWYYERFqoEvbpW3TXm1rfDsvIBsX8OlLte/E3PkL+vTqNN4/rlGCQEE6hzGEta5TkYOATsCf" + "SBtCGqGy9wJ2+vo5jbcqP0J+fDHA/qcEisqyHnSL6MTjz+GnBYxv+SdDso/x1rvgPBudvb6A" + "8Z0nrQNpXsJIZaxBNt/a/c8bJf0vME3pDAGlbG4ieikYLUgrPOV6MULU4i5EqK0j7XyYazMz" + "RGYkXsImhbAvpIJ0Q8/jHM55MmLl+out6hFMCUR8OyCksiMX0kYj7gV26CInCZVxbvofKQhs" + "0Jq6IPkkISKTFKQRcB9plWGtt+ujH8QRcBgfEmj+3sYe1hVTY0J3PyUQhYiLhHkQa8Hlalvo" + "7hITRYErl5r44txNrNyMUGQkEpKZFLBUKiu2AjKhduKLLXKKkB9MjQn89kcLs18vo+Dvi++b" + "gQZRTwtecjMk3UiaHAlb97VlGidfO2306dy8N+krNK5cx+kz51GamMKo77TB3Ea6Nw1lEoFA" + "WSKR00SaBpU/Dff4EteuN/HOB5/dUZyh01hKwITEpMDAEAl0EpV/6KIPDDPHlxYX8eprH94x" + "Oqb/bmT7TFMw09SodgJUWJ/HKZoSpWqmjU9BDMWrI1dJt0L20w7Wj+LMRyfxxtuf7Hi2fFvh" + "V+45vuTYp9IUBMAaZ8IGmW0SbaKjLLZULzr9ovFXhMn778V7p07sIGD62wyxvQ6ABDZC+6BD" + "bEUWXYdA5UOH33yzAhw++ADeffMZ+MVCSsD013YzIUMgIgHFkWt+TFBJW6TYpQ2IxOaB6efz" + "qwHWS+N4/tkDGC95lgCfbdJXkNUA1E7RKbcoZStknqacKBeaIer7q5jurGGC+8Em05Msfr0I" + "DLgttRRGDpQxe4Ob3s3tQ/F2g4BJ7Q90fivYuaP4z3dE/xOQye9uMjG+ksrg7RkRGKMwy0W5" + "KyR8yr7M+r5GPRrf3itHhjC3WODhJILPyVv27FowSgy7tWAo51pgmqkBoVtlhyPEffmePX+U" + "6bg8h/iM6D16pH6jvjC/9+zSMTw4rXGIZ8MJeivTMS/hmzOiMCTypSl2Trulbeldp71NIsu8" + "cfEnoHZrHo8dfdjuMVqtll74eQlnLyusbAz2gHbfmMSLNYnHH6mjUqmIvwGdqbciWIcx6wAA" + "AABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +aero_left_focus_single = aero_left_focus + +#---------------------------------------------------------------------- +aero_left_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAfCAYAAACGVs+MAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo0NDo0MCArMDEwMN+SkKkAAAAHdElNRQfZAxkQMBKjjWFJ" + "AAAACXBIWXMAAAsRAAALEQF/ZF+RAAAABGdBTUEAALGPC/xhBQAAAkJJREFUeNrtV02P0lAU" + "PS2lUEIlkxlHpCAEZ89Ol27M8A/czMK4duO/caeJiSZu3SgTN25M3DhBFkMmDhQJEK0apnwM" + "0wK1t+Z1YOqyr2w8yWuT95qcc9+97/UeAS6m06nTarWg6zrOZzPwhJJMolQqoVwuI5VKCcJk" + "MnFqh4eoVCrQcjnIssxVgGVZ6PX7qNfrqO7vQ/jSaDhqOo1isciV+Co6nQ5G4zFEvd2GpmmR" + "khPy+TyIW7xwt0SSpMgFECdxi5EzX8HGBDiOs1kBDH7ymaKoIAjCpQAiXy6XXAlFUfR4aBA5" + "EyBGET2R630LM+tvxpmQNQG8BpE3T8/w8cjEb3MREMe1BuLxOL4bY3z4NIAob/nzq1x+DYQt" + "IBaLodM18PpNA0p6Fwn5kpzqjXZmTUCYRUiR//x1hucv3yOl3lhbY4Gyd+g7QJGffG3jxau3" + "SCg7gXUWLH3nC6BfJI2wUC4V8OTxAZ4+qwXWiGexWPgp8J40EeYwTRM72xk8OrgfEMC+CRzD" + "sEUYhoFi4ToePriDuBTzBdD20zqrOWl1Mmz0ej1kMhncu3sTn5u2XwORHEOG4XAIbfcazm0F" + "aUXExdQO3oS8MXZbrz1t6ZL/gG3ba2uRtEKUYirMf2Hj/cB/AZ4A1hxsREDCdUKrVyNvULD0" + "HyBO4vackXsokXNtGR0R3t0RkSddf0iX1Hw+h3TbNYnvajXPKGSzWe7ekILsDwY4bjZRrVbh" + "JX80Gnnu+Fu3ixlnd0zR3yoUPHesqqrwB18A5ik1mQXQAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +aero_right = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAfCAYAAACGVs+MAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo0NToxOCArMDEwMEtfu5QAAAAHdElNRQfZAxkQLyM/CW/t" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAAkpJREFUeNrtVz2PEkEY" + "fnbZQ+AgGD+R5YSAxVkRLfwF5vgH11xlbeNPsbE2Ftf4C+RiY2OijeGu8GIusEjgiJ4Ej689" + "YHedd8zgsBgt3Fkan+TNZnY3eZ55v2ZeDQzj8dir1+uwLAsT24ZKxGMxFAoFFItFJBIJTRuN" + "Rl714ADlchlmNotoNKpUwHQ6RbvTQa1WQ2VnB9rh0ZGXSiaRz+eVEvvRbDYxGA6hW40GTNMM" + "lZyQy+VA3PoFc4lhGKELIE7i1kNn9mFtAjzPW68AgUXwhaKwoGnaLwFE7rru4gOZWKsiFwJ0" + "/+7tqQ6rw7JTVxcd4hOchvyCVPXOHbz9cA57soHtUhqO4yjxgMBSDogPo4mDN+/OcCVt4Ob1" + "JGazmTJvLEIgu4Uwmzt48fI9mq2vPBzyP/9qlF9LZeh/KeP5/mucffuOSCTC/wnCBOcfPSDj" + "6bN9fDppBOYJucJ4DtARSfbzKI6vCHjyeA+X05sYstMrCJA3RZVxAZTpwvx4tPcQ166m0ev1" + "Ak2+lTIkctk1G0YEu7sPeBV0u91AyQmCyxALEiBUbcYjuH/vFnsC7XY7cHK5yS01Iqr3ZELH" + "3VIc5g0X/X4/cHKx4d+ehiTgYvwFd0w3sIT7G1auQiRCZefzY+33gf8CuAD5eAxdwCXWfqkH" + "qLyAyKDNUismTuLmkxErSmTZWEbZr/puSOQxNh9Sg5vP5zBKbEh8Va3yQSGTySifDWmTndNT" + "fDw+RqVSAQ/+YDDg0/HnVgu24umYdn97a4tPx6lUSvsBjEDOU65zEi4AAAAASUVORK5CYII=") + +#---------------------------------------------------------------------- +aero_right_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAfCAYAAACGVs+MAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo0ODo0NiArMDEwMKZ+RR0AAAAHdElNRQfZAxkQMQU5RdXP" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAA/ZJREFUeNrtV09oVEcY" + "/83sy27UfZhtNLWxKNaDK6sNlJZIabHgpdB7KYiCR28W7EEPIkLbgz1481hIaSt4a6UUWkyh" + "Imm9hKbpSg7pIUVjotnGJG5235uZft+bmc1bk8A+NTn1W743b98bvt9vvn9vRoBkbm7uxp/V" + "ux8Mjce4t6ixkdJflDhZCVApH7je29v7oSDwX48PVd8x5bdx9IjB/q0CW2hitwDyNOZIA7qX" + "sNqp8DIUaWyAJo1NGus0/l03+GlEQFZv46sT5Z/F8K3b5vLcID49alCEQE46wESFHZ1RkYGA" + "8UoXZZiQQazts4iMfnzT4JPSb5BfjkV49V2BvLasN1oUgQR0OfieAGPLh+SSl8nfZhPA097p" + "KwgwdpawbogEnpFOjazpeBv3P6uXzDrKok2KgNY2NopQcpwL0iaedlY4EY14hiQ0Fsg4DL7n" + "yhCplQSeTUuFndBKSLf0LOBw4H7F2tlLRr1CsEVA0eyIVNLLAi19K9VhnWvHOOc7UllI6BQ4" + "21euHLkvSHrjiUgfAp7I9d9H/n44VUdPl1hhbdrzoxM1ZrV6W7FfmyegYiRNIp8TmH6k8N3N" + "R5j4axalvGwj8TyqUupJrhDgdqktCZb5xRjXf5jEvw9q2EutudXNMgKyPT96jVgV2kNgX1Jc" + "Ur2w0VS4+MWPqE5Mob+giAS9z6j84/jrVC7ERrcW0+aByJXi03Lhs69x7/4sXqLszOIBg7Xd" + "7xPRpD3ALklCsE6nOX3mc1RHR9FNOaLWMLiWxs5e7O4jF+amsuoXm5Th0KxB73JEEwMMyNXF" + "dvXKOQQ7dmFiXnVchp5IRC5oENgy/VmiZJ+n7zKtA9/T2ve0+kAELNDLZY1VH/1L54+j/5Wd" + "+GVGZWrF3tVRAm71CWEsKQuq0x4AEWB2DdV6gkI+h7Nn38ee3SXcmIptvDJ0Ik8gcbu2thMi" + "ZIr3HJFqI6CIgKaJtvNtLwY4duw1LBS349vJJgJC9puULASiBNwkMW/QAw4Dd1jpynGFgKvR" + "Wfo+9+yUGBwIgd0hRmbipDXL9LehQ1mvCTEOL0alq8DLP080vpmOkd8XYqzWecI9j6zakEzX" + "NW49iFGPs6TcCySw2fI/Aemvm8mEsXLuPtixRWAblURI3/7NIFGgwg+7JBYoxxk7OHW4C8Oj" + "OTqcKBSoaEMq0iIpb8u6iSbNRRedkHLP0Ih8K+6mimZbhcCeP0ICDoeRnBGDNw5XZip3Rvqu" + "jR/BvkGDA7QB6SG0kPeGBFjgM6JgEtnClIDT2OAzIZFYpPExEZmkB2O/A+X5Ebw5cMjuM2u1" + "mrnzxziu3dWYXtrYA9qubRIflSXeer2CUqkk/gNN/sDRnOMoBAAAAABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +aero_right_focus_single = aero_right_focus + +#---------------------------------------------------------------------- +aero_right_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAfCAYAAACGVs+MAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo0NToxOCArMDEwMEtfu5QAAAAHdElNRQfZAxkQLyM/CW/t" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAAkpJREFUeNrtVz2PEkEY" + "fnbZQ+AgGD+R5YSAxVkRLfwF5vgH11xlbeNPsbE2Ftf4C+RiY2OijeGu8GIusEjgiJ4Ej689" + "YHedd8zgsBgt3Fkan+TNZnY3eZ55v2ZeDQzj8dir1+uwLAsT24ZKxGMxFAoFFItFJBIJTRuN" + "Rl714ADlchlmNotoNKpUwHQ6RbvTQa1WQ2VnB9rh0ZGXSiaRz+eVEvvRbDYxGA6hW40GTNMM" + "lZyQy+VA3PoFc4lhGKELIE7i1kNn9mFtAjzPW68AgUXwhaKwoGnaLwFE7rru4gOZWKsiFwJ0" + "/+7tqQ6rw7JTVxcd4hOchvyCVPXOHbz9cA57soHtUhqO4yjxgMBSDogPo4mDN+/OcCVt4Ob1" + "JGazmTJvLEIgu4Uwmzt48fI9mq2vPBzyP/9qlF9LZeh/KeP5/mucffuOSCTC/wnCBOcfPSDj" + "6bN9fDppBOYJucJ4DtARSfbzKI6vCHjyeA+X05sYstMrCJA3RZVxAZTpwvx4tPcQ166m0ev1" + "Ak2+lTIkctk1G0YEu7sPeBV0u91AyQmCyxALEiBUbcYjuH/vFnsC7XY7cHK5yS01Iqr3ZELH" + "3VIc5g0X/X4/cHKx4d+ehiTgYvwFd0w3sIT7G1auQiRCZefzY+33gf8CuAD5eAxdwCXWfqkH" + "qLyAyKDNUismTuLmkxErSmTZWEbZr/puSOQxNh9Sg5vP5zBKbEh8Va3yQSGTySifDWmTndNT" + "fDw+RqVSAQ/+YDDg0/HnVgu24umYdn97a4tPx6lUSvsBjEDOU65zEi4AAAAASUVORK5CYII=") + +#---------------------------------------------------------------------- +aero_tab = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAfCAMAAACxiD++AAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFq6ysra6urq+vr7CwsLGxsbKysrOzs7S0tLS0tLW1tba2tre3t7i4uLm5uru7vL29" + "v8DAwMDAwsPDxMXFxsbGycrKzc3Nzc7Ozs/P09TU19fX2dnZ2tra29vb3Nzc3N3d3t7e4ODg" + "4uLi4+Pj4+Tk5OTk5OXl5ubm5+fn6Ojo6enp6+vr7Ozs7e3t7e7u7+/v8fHx8vLy8/Pz9PT0" + "9fX19vb29vf3+Pj4+fn5+vr6+/v7/Pz8/f39/v7+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAA0PbvAwAAABh0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjM2" + "qefiJQAAAP9JREFUOE+t0tlSwjAUgOFjZQuxuOBSFURSSOyq0qYNEd//tUzCaIeLk9743Zyb" + "f5LOSUH3AC3vyEWIuIw06KvHRmGqKIJ3+u1RzaD0BpL+S3DwfIO5oqAHDxPk1LOpr9oGe0/h" + "ArXHmSCjLbpIpSobyBa3o5DSWqJaF+xqlPykEE/LHFWmU2AkS1GZCdYkFajkjZhAxCghCLwS" + "zlCcE1j1BpOeE176gqU/mMBy3F0Rb/mpZENh0QWxyJNTfD6HRXfFthgNndFgcJzDa2aCv0WZ" + "tUj7blLdP9nZ6PCZATtPft+qjELt/vAm/HCzCNYmuA2O5xqzmzOwAuIG0AfGfgDFvqY+8bKe" + "lgAAAABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +aero_tab_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAfCAIAAAAJNFjbAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "ABh0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjM2qefiJQAABPtJREFUSEu9ldtPI2UYxovR" + "jZd65Z3xxv/AO2/0wnihiZpodgV21cSsiyYbs8ZkiQQSDUaynBaIB0ACLOsegJaWlkNpObSW" + "XQ5dlgUqPQ3DtPRIW9pO5/DNtPGZFjeVte2F4uTtxcz3e96n7/t+802VJEkqlapx2LQXE589" + "80xVVRVu//319FO5F587c/Xc6yoYXOrW983vzrqOrExqPcBuRTLOQ94T5/cSApMU/EnxIFUh" + "wIAEDxW0jyKZRSr+Vv3d724YFYPaDn2Iyy5H5I2Y/MeR7EllaTbrz2QDXC7E5yJ8LlopwIAE" + "DxW0yOBOylOO8CedOlUikfio0wAD239tYPEkatu0qng8/j8ZWCPyg5i8cyS78y3y/dWicL5L" + "5QNMoUVQQYsMzqR8XEEsHr/QaQhksosheS0qbyVkZzJLpbP7yhgUTYjLQV8+wOQHkIMKWmTA" + "LJcKLSoYYDimgHw/Ij9U5qxMiU5nGTZ3AI+M4lE+wIAEDxW0yLCdkBeODWIxGDCsPOUn1jBZ" + "P5TyRcjelEynZaawnSoFGJDgoYIWGTZjktkTUyo4PDw832nA2iRDFoNkNSptxpXNin1GpeX9" + "dNaX9ygfYECChwpaZNiISXPuWM1jAyolj9NkLkCWIxJGjQLxRzwpeS9d6FWFAAMSPFTQIsPa" + "oTRbbADnmx5iYMhSUFqJKpPYgQdeOgw8P4/yAQYkeKigRYZ7EWnala8gGo2iRVgbdAvafdGc" + "L8KOSaBRCdmFOtCrVIUAAxI8VNAigzVE9LtFBljrdQpjtDjrJ5aQhEngj6BYNLTgUT6U7EcK" + "DxW0yLAQJLqCQTgcru00bMXk6zvCTY+oY4g5INnC0nq+Udv5OlBf+QADEjxU0CKD0U/UO48N" + "Ogy2kPTGdPKilW20cx3b/K9O4bZXnKDFKYYANR+Q+dKBVTAgwUMFLTK0bPENJqamVavy+Xy1" + "7YbFgPSKNnl2gb2ywjVv8j0OYdAl3qZEDU30DJn2kZnSgVUwIMFDBS0yNG3wXxvzBgzD1LQb" + "5vzSy2PJt43sJRvXYOdbt4RfdsVht3iXUpS6fTJZOrAKBiR4qKBFhqtr/JUZprp1QkXTdE27" + "Hv/ihd8SrxlSF5bYr1YzzQ+5rh2+3ymMeIQ7XnF8T1SXDqyCAQkeKmiR4fI9rq7YAG/A8yOJ" + "VydT1Qvsl/cz325wndt8764w7BJuecRRShwrHVgFAxI8VNAiw+c27jNDvgKKolDBKRp4vd7T" + "NfCcuoHHc0oV1GEG1yZUbrf7w7YKM8A+0dGifp/8Y2AHT9BklCI33GLvrti+JTTa+QY7V6dz" + "fdyhrWyALYhNvIrzi8mUiqX9zDzNGilW706P7aZGHMn+9eC7Tepv+iZVLperfIvUlLgWlc61" + "6j5o0TwZ7/+gQTz5vLZVU//zxO82m2JQ3aaf9ZGX7iTenEl9amXr1zMtj7gfHfwgXgKvoHwk" + "9pK1rdp0Op0qunDL87zJZFpZWSl+zrKsKIqDQ0MWiwXHhGLw3vdqq5//YjnTZOe6d/ght/Lq" + "4vAyHSjfHxyQP5kcl7vVhJDc3680yw4NDeGje+J5MBjs6u52OByKAX5N/bp3mtVnr2lLxcUu" + "3a1R9fWurvaOjuLo7unp6+8/8RC3AwMDJrMZh9CxwfLyslqj0ZW+jHNzFqt1XK0eHRsrDo1G" + "ozcYTjzE7fT0tP3BA2TH9Sf2aVnapn4zWAAAAABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +aero_tab_focus_single = aero_tab_focus + +#---------------------------------------------------------------------- +aero_tab_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACAAAAAfCAMAAACxiD++AAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFq6ysra6urq+vr7CwsLGxsbKysrOzs7S0tLS0tLW1tba2tre3t7i4uLm5uru7vL29" + "v8DAwMDAwsPDxMXFxsbGycrKzc3Nzc7Ozs/P09TU19fX2dnZ2tra29vb3Nzc3N3d3t7e4ODg" + "4uLi4+Pj4+Tk5OTk5OXl5ubm5+fn6Ojo6enp6+vr7Ozs7e3t7e7u7+/v8fHx8vLy8/Pz9PT0" + "9fX19vb29vf3+Pj4+fn5+vr6+/v7/Pz8/f39/v7+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAA0PbvAwAAABh0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjM2" + "qefiJQAAAP9JREFUOE+t0tlSwjAUgOFjZQuxuOBSFURSSOyq0qYNEd//tUzCaIeLk9743Zyb" + "f5LOSUH3AC3vyEWIuIw06KvHRmGqKIJ3+u1RzaD0BpL+S3DwfIO5oqAHDxPk1LOpr9oGe0/h" + "ArXHmSCjLbpIpSobyBa3o5DSWqJaF+xqlPykEE/LHFWmU2AkS1GZCdYkFajkjZhAxCghCLwS" + "zlCcE1j1BpOeE176gqU/mMBy3F0Rb/mpZENh0QWxyJNTfD6HRXfFthgNndFgcJzDa2aCv0WZ" + "tUj7blLdP9nZ6PCZATtPft+qjELt/vAm/HCzCNYmuA2O5xqzmzOwAuIG0AfGfgDFvqY+8bKe" + "lgAAAABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +aero_up = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB8AAAAgCAYAAADqgqNBAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo1MToxNCArMDEwMESarloAAAAHdElNRQfZAxkQMyBAd2MK" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAAh9JREFUeNrFl0tv2kAU" + "hY+NBXbAElS0QTwColKX4Q+gbvmDXXXVriq160olq7b7Rk2zICsejWyUqkmQgEIMxvWxZAti" + "0eCoHo40ssZj+5vrO3fmXgmuut2u4zb0+33MZjPEJU3TUKvVUK/X2SRlOp067ZMTNBoNNJtN" + "JJPJ2OCWZcEwTXw/OwO50o/zc0fPZFCtVmOD3tdgMMB4MoHc7/VQKpWEgalyuQxy5Tv3VyiK" + "IhROHrmyUOo97QXuOM7+4L4CZ/uziVuSJG3CCRYFX5+AcDg5iURiP3Ba7bOE+3xde/H5huWi" + "4SHLV6uVEKAsy5uW86hbLBZC4FzpoVCzbVsI3OcFcP5yUfBQqBEuyufkhFb7Y+BMubheHguX" + "fXiURjH7sSw7yIKivh/Ao4g+KxQK6A1MvHr9wbuyv35a7arI8Gw2i+ubCd6++4KUlveu7PN+" + "rPBcLoer33d48/4bDvTDoLHP+xyPop0zR13XYfxaov3VhJZ5Fhr/+NlE62UFh090jMfj/wdP" + "p9O4uk3itDNB6iC/9bnTjoXjFxmUnu42AQ/+0GKZz+c4KuaQz6kPflBTJYxuRrtZnnJjlbsb" + "N/xtsc7x2+thkIH8S6M/9tbdkkbyGxwn1yuX3OBDsVj0Dpc4j1aCVVWFYRhYLpdQnrsV46d2" + "26siGK9xFoo0zhwO0bm4QKvVgudsd3F4JfLPy0vPv3GJVh9VKl6J7EaP9Be4+2JJRD7+lAAA" + "AABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +aero_up_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB8AAAAgCAYAAADqgqNBAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo1NTo1MyArMDEwMAycPlQAAAAHdElNRQfZAxkQOBMcU9vX" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAABFhJREFUeNq1V82LHEUU" + "/1VNz863yWyUyCSaEPzYuGtkwY8QYwLiQfTgwYsgBPMXeDJXvYmo+Qc8KEFIULyJHhQWNcSE" + "3KLrLgqLoMYVkplIdmZ2PrrL36uqnulOsu50YB68ed3V3fV771fvvZpSoDSbzS9/Xll9+czy" + "EFc3IkxLGlWNE/MBjj17RBljPlQE/uH1MytHzcEjeOGwwYGSQokvzigqbUCbo9UTAhhqKMqL" + "IW2PdpN2g/pbx+DH7xX02gWcPblwWi2dv2Debz2Dd48bVIxCjiiBFjBeE1iJwumkIg4If5ER" + "NRiKIxxgtOhpjVNfGby15xL0xz8NsP+owkzoPpqmiBP5MEL9RUBw9bWuwe6iwvRWOi2C0yhp" + "CO6kSzkVCWJvzBYqopBtScwdruM8sHj+wkYuiWGMBxTrHxrvQdZcMCat0S33qcgFbMBBTau0" + "y3CL6K0yfmxCibzDoYkz3pdelGbA0U53Ir4RqfHLmq9FcHVmSy1D+GbEphnNF5cdLFYuAR65" + "MsgJqNcwMZkFzxB5THXcbGzUXk1iGS240BGmPEw3lqwlkcyfcbNxGHbOKEW7W/M4cpVYb7Em" + "I+0pQM/qIHIq8w1NMnLyMwhdHw98pCOqI39/NwnnGY2tMKwwLjUL7tbE0Iqyp1Ot5/HqqOwJ" + "FyYot/MKA5EZMTOOfOi8smuv3Yc26RLdRWeMPLnOoU++oV/SVOTnmuzv5H22oFDLK1S4nRVZ" + "DTN0JK/d7pbLAB7vYn2i92jbHLg5AFp9KV6Fs5zreAy+ycg3+KDADiMDOZuuCibnMjYLeEy5" + "gPcIvsmQuwTvMKPbfWNrfTAIx5H36FWHDpR5V+A4g7c0x1RLIkYZwSWz+5yr57UbOgwJJgwT" + "tEuqt+lqhYNFLvSMUB2O69tkBB/adm1IuwBL9E47ZMA6lwIfOup71D6p7mv/98m3VvHC3AIu" + "tzuYI//2zG27WJy8cW1bBjyGFQ8+al5RQs02Ksvxyr4Ae9t/WqvV9t8k548l858JYeOlhsLy" + "yhrePHXaWrnPUg13DX5oNsDf/9zAO+99jnKtYa3cy/hUwRd3Bbj5xzre/uAb1Or7Rir3Mi7P" + "s8jEbz+yI4fm79fxyRdrqO588LbnH322hjdezePRvbP4pRVONOdE4PtrGr2rHXx7qWup3krk" + "+bGwjYceqNCB4bbzOnD9//yv86Tx/IEKGrvL205YLSssXds68iROcC+PRxXmf5WNfCsHpEF8" + "xwlLE/DUve7a6Z2kyO8reY0arwU3OPl4HktXctjzHCenw1V2l2oeKLF2Cjm3scQNZzjByUKO" + "WvfwoDdgSyyytxf4fZ5b5Az/qdxHnyoE3fW1wonFAMHiwmOr85cvzn26fBgHnzZ4uKyxk6BV" + "gvFgwc2GDsB1vEnEdjj+cA8BDyVo0+Eb1CbZ+5Unxr/OA3PRRTz5xILrnq1Wy1y+soxzqxHW" + "29M7ON1f0XhtTuOpQ/Oo1+vqPxxtdiUOpmR7AAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +aero_up_focus_single = aero_up_focus + +#---------------------------------------------------------------------- +aero_up_single = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB8AAAAgCAYAAADqgqNBAAAALHRFWHRDcmVhdGlvbiBUaW1l" + "AG1lciAyNSBtYXIgMjAwOSAxNzo1MToxNCArMDEwMESarloAAAAHdElNRQfZAxkQMyBAd2MK" + "AAAACXBIWXMAAAsSAAALEgHS3X78AAAABGdBTUEAALGPC/xhBQAAAh9JREFUeNrFl0tv2kAU" + "hY+NBXbAElS0QTwColKX4Q+gbvmDXXXVriq160olq7b7Rk2zICsejWyUqkmQgEIMxvWxZAti" + "0eCoHo40ssZj+5vrO3fmXgmuut2u4zb0+33MZjPEJU3TUKvVUK/X2SRlOp067ZMTNBoNNJtN" + "JJPJ2OCWZcEwTXw/OwO50o/zc0fPZFCtVmOD3tdgMMB4MoHc7/VQKpWEgalyuQxy5Tv3VyiK" + "IhROHrmyUOo97QXuOM7+4L4CZ/uziVuSJG3CCRYFX5+AcDg5iURiP3Ba7bOE+3xde/H5huWi" + "4SHLV6uVEKAsy5uW86hbLBZC4FzpoVCzbVsI3OcFcP5yUfBQqBEuyufkhFb7Y+BMubheHguX" + "fXiURjH7sSw7yIKivh/Ao4g+KxQK6A1MvHr9wbuyv35a7arI8Gw2i+ubCd6++4KUlveu7PN+" + "rPBcLoer33d48/4bDvTDoLHP+xyPop0zR13XYfxaov3VhJZ5Fhr/+NlE62UFh090jMfj/wdP" + "p9O4uk3itDNB6iC/9bnTjoXjFxmUnu42AQ/+0GKZz+c4KuaQz6kPflBTJYxuRrtZnnJjlbsb" + "N/xtsc7x2+thkIH8S6M/9tbdkkbyGxwn1yuX3OBDsVj0Dpc4j1aCVVWFYRhYLpdQnrsV46d2" + "26siGK9xFoo0zhwO0bm4QKvVgudsd3F4JfLPy0vPv3GJVh9VKl6J7EaP9Be4+2JJRD7+lAAA" + "AABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +aero_denied = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAADxklEQVQ4jbWUzWuUVxTGn3Pe" + "+955k8nMJE5m0vqRZCaUYomG0uJGjDR0UXBRUj+6Kqg7kSy6SBf5A7ropiB07aK4qIsWIYsu" + "ioXBQoRKqWhJ1eq0sWqSmWQyk8y8H/e+p4t8oJ2YuPHA2dzD+fHwnHMuiQheR/BroQJQOxWv" + "Z7N9cRB8nAA+dIEBAIiAvwPgJ04kro1Vq/Mv66XtrCgVi9osLEx1K/V57+HD6a5Dh8B9fSDH" + "ga1WsXr7Niq3btVrUfS1yue/HH34MNwV/HM+n1HN5vd7+/vHsmfPQu3bt60i8+wZli5fxr/l" + "8nXT2fnJBwsLK8/XX/B4ZnhYqWbzyv5icaz34kXwnj2IrYUoBXge4HkQpRBbC85kkL1wAfuH" + "hsZUs3llZnhYvRQclMvnsqnUidTp04DWoEwGnE6DEwmQ44AcB5xIgNNpUCYDaI3UqVPIplIn" + "gnL53LbgmULB9YCp9LFjcHM5KM8D+z6o0QD+l9RogH0fyvPg5nLIHD8OD5iaKRTcTd6W/KhS" + "OZJOJgc7R0ag4ngd8gqhAHSOjMArlQbrlcoRAL+8oJhFjiaLRWhmrN29ixYzfNdF6LqIXBdG" + "a1itEWsNaA24LoQZ5s4duAC6hobAIkfbFDOQ78jlQPU6zNIS3jh/Hqz1jmolDFE7eRIqk4GX" + "zYKBfDtYJGDfB9VqkNXVV7IBAOT+fYjrrs9DJGgDE/Ns+OABkExCBQHmL10CM4OMAVkLAkAb" + "3hEAIgJZC7YW9OgRwnodzDy7xds8kF97et70iMrFfF6T1gAzEEWAMburBvBwcTH0RQbfX15+" + "Cjw3vIOl0tMgiq7VVlbA9Tq4VgOvrYGDYNes1esIoujawVLpaZtiAPitu/sta8yt/o6OVI/a" + "8X/aimVj8E+r1XCUeu/dWu3+tmAA+D2dHvetvdqtlDrgOEgQbQsMRDBnLWrGGM9xzozU6z88" + "X28D29VV/LF370d+HH/bFOntIkKGCJuLFwJYEcGqCDqJKh7zZ+88efKj09WFHcFbtuTzOW61" + "vghEPo1EDtiNdweASzSnib6Tjo6vum/eXCwUCm39dO/ePUxMTDizs7Oq0WjoMAy1tVbHceyK" + "iJsFOs4wv32AqF8AzMXx3FWRP5cAn4hCZo6YOdRah8lkMhwYGDCTk5NGzc/PY21tDcYYiuOY" + "RIQ30gGgKiL4xpi/AJSxvsIWAIjIAaBEJBYRx1rLxhhqtVqoVqu0rRXT09N048YNPH78mKrV" + "KjWbTfi+TwDgeZ4kEgn09vZKX1+fjI6OYnx8vA3yHxWIwp50Lj49AAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +auinotebook_preview = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0" + "RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJXSURBVHjahFJRSBNxGP/d/+52" + "W66ildPKJB9EMSwjFSNoUkS+GYg9pi9R9tJeopcgC3yKYvRUMHA+VBJUmpQPQSySKINqEGSB" + "Np3aNjs3N8+7285d/7sxa9yw3/G777v/932/+76PP6PrOgw8D876dYImWJAEZPpW8l89nYea" + "i8KGgMHRYPitvgkCw0G9qaNXD4x80Qs1BknRnzaBEfX1e+G758PQaEgvnP8VULA5lCS8/T7T" + "NUQK4ApO4j/1l3s6N/zA8MiGTxiGgUGowGwkhqkfc5Bl1SKwlM6i90y75dzsoKX9fNPLF2Mt" + "sZVGuMt3YPDpK7jsDnj7uiEIfH6ClAjF5rAKHD1xcW99a927C5e6hP3luwCGwONpRjwm4tqA" + "H7du9pmJDG9HrsSeSE3dvmdnz512tFZVQaGjaCyBjedRubscxzva8PrNJzNR0xmsKsQq4KzY" + "fqDW7UY8o4KjxRzLmpYlBLUNNZj48BVRMQlWA7I5yTqCvcyuq+s0qmkQiC1/QeiTo1ajNpWS" + "oMoMVJVyXbZ2sDj9S5sMh2l7CjJUJGswq0HNZBCNLmEhPA0xsQpJUSHJJUZILCbuxuZF7fv8" + "ApbTaaysrSEpSVgURdy//RDJxAp2RvzgMgkQzbpEziVEbgQfBeuXPY1dqcMS4W08cnIWY0Pj" + "iIXjuNI2A0dsDmXyT3yUTtESZ5EAU3CuDvhD7ydDB1mWg6zQWelSj2ydwbE9v1Fd4TQZmHLj" + "yTfBzP88PsgUCZTCne4qFycID7Zt4TuqK50TFaTmZMP1x5l/c/4IMABbKBvEcRELXgAAAABJ" + "RU5ErkJggg==") + +#---------------------------------------------------------------------- +whidbey_down = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACsAAAAeCAMAAACCNBfsAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAaHWVZ3egZ3e1cYCncYa0dpC4cYXGcpDBc5fWd6Dld6Pwi5OzgJbUkJjQkqHC" + "hafggqfwh7Dwk6Xgl7fwoKjWp7fXsbbWoLfnoLjwpMLwscHnsMfxtdD0wMHg5eTo5/D49/f3" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAverH2wAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAF4SURBVDhPbZTpYoIwEITRGqAQ1ChqOFrx/R8y3SObq8yvsHwZhglaOdH7HZbJIp1W" + "YW7t7w68LOcwDaxd5+lhC3q18zwOMhTWIjtZ+3wGfFmWFYZjgJl9vWC/1x30AI2zzExzIcqz" + "a2RxC2Ak2n4zJmEx1TgaY8R7AtHsdgMS1IivJRZHyN5lA6PMEgwZ2JVYs23bxwuWG3PGdF3X" + "ImvtBO/KqAl38ytgO+WqMz1SDDz7KXaCbatU5YYARt+SbUHg61zT9/iMHsQZKHBI9A1S6njk" + "fpuCRTjmJVQBymfxlfuCc5IX0cMhnhvCMYO8KCdCV0L9GbMz8Fhqous1ugbWw/32k2oDtFUn" + "do2sz1ywqWvCElz6pq4pS3CRVxooMvjqsI2+v5LwXCVrljfrGclhqH2v5e+Nr6VnYltgBct7" + "iDDExm+grvm0ouL/QwrjN1CHXvczYAz0xF5Pp9w168zfAhjeH9gSle8hnWutldL6H7rHOq2P" + "agd1f/M7VhKuYPh3AAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +whidbey_down_single = whidbey_down + +#---------------------------------------------------------------------- +whidbey_down_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACsAAAAeCAMAAACCNBfsAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAECBXFC9vECiQBS2oIDKMIDigC0CVJUqQIkewJFKlJlayMEiwMlSiK2G0JFTR" + "LmnSKGHmKHDoInDwMGjgNnDgNXLwSFeKQFizR2OkUGagcHiYZ3egcHilUHjRQXLwR4DwU4Pw" + "YIfTcYXGcIjVc5fWZpHxcJj3d6PwgJbUkJjAkJjQkqHChafggqfwh7Dgh7Dwl7fwoKjAqLDI" + "sLDIl8D4pMLw4Of35/D4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAQS37pgAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAGeSURBVDhPfdOLUsIwEAVQCCixFSggVfBFQWpVjKJo+f8fi3ezSZq2jDsDhHB62Wyh" + "o319Vctg9V2tO34p5H0bHw5D4Xe9FULK5bKhb6UcDs/cprNdMYiprhee30khaStx2NpudwCb" + "JHG8WAhbEkU0cZgtUge0iYrjCEUuilheOWysS2U9GpluGJJ1mKyg1LHZn6NYNNYUCWuozSjr" + "FVxnLGQUjZPJlLJKCk7piar0Nk2zS90RAhINVDZN5yUeNZuhbjq6BzmZomYoICr/Yr5mtcry" + "fL2mfnvjSd2anvkSsqBZUazN2XS/YVNLrc2Qut3yHAj/10OWFwVRtrpPvZo5cL+28A7fnxfv" + "G6Ps74GwsfXCsXKkMnWWko39DKukAbjUygKfskFqYLnnKvcHdQT9sA0EPdgD1ts9Vr2G/fpp" + "pDMeAg3gWe2fgn9V9d+0yW5edCylQurnwJejZ/7VPJpZ7V+C1PBsFrPFXAul6rSRi2S2uFmq" + "kdrK1frcWOq1kXrC6osHulnq963Wa3Nm9kOySrVpq1/yr5vNbtdK1foPGIxy6qmqIg0AAAAA" + "SUVORK5CYII=") + +#---------------------------------------------------------------------- +whidbey_down_focus_single = whidbey_down_focus + +#---------------------------------------------------------------------- +whidbey_dock_pane = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAF0AAABdCAMAAADwr5rxAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAaHWVcHiYZ3egZ3e1cHilcYCncYa0dpC4ZobHcYXGcpDBc5fWcZjgd6Dld6Pw" + "i5Ozl6e3q62xgIjQgpXEgJbUkJjAkJjQgJjggKDXkqHCk6TWhafggqfwh7Dwk6Xgk7Tkl7fw" + "oKjAoKjWqLDIp7fXsLDIsbbWoLfnoLjwsLjjl8D4pMLwscHnsMfxtdD0wMHg6tTN4Njk5eTo" + "4Of35/D48Ofh9/f3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAA1jVbdgAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAdFSURBVGhDtZpxe6I4EMbtbQVXrHJuaY8KWq/XW3Sr196u8v0/GTfzThICRIh9nssf" + "u4rw42UyM5kJHVVXjDQah/EV51ejK05+SKMwjK/BX0Gfzu9ms2kY3PgL8qd/nc/vCB+GN/54" + "b/p0sVjMaRA+9Mb70hku9GvUe9IBV3TC+9rejy5wTfdX70VneJ7LHRaLu7uIPNPL9j50hp+a" + "w9NzPOhQfvrHHqeZn/phOmzeofvZfpA+zTFa2rNsFk2GPWeIruB5y+5En00mg1E7QNfw/CSP" + "oEaZ51kWDavvpxu4phOWB+hJMqi+l17DFb0sBa+eJB3KOX30xLIFeAQXvKYTvtf2PfTVbrtd" + "6xsonrKMoafhJAwu5/vL9NWO6Rp/iZ5OJsFlfI/2onh7oxvQYKOsaeALjTV944fK2DFn489o" + "ryqmA69NDrtjWPSwZyHs9RlWr+h5Qzt9UdqzPvhATTBMn/Uu4QOxut9r24vFdzSUvUh+lk37" + "6wMXfVNf8sF0mdrt9nGF8YbB3ppNl/WpK8eNHPTNxuCXHx/a9q+vZz3exZvW6+m5NPhi58B3" + "6Yfj2zYRHcuSgOI5Bi0fDgeiT/nT8oxTi2K3U1dZz9ChH5gu+GXJ9HNRvP/dgoOfyEGox/Tn" + "nVlo04kNm34DHPRfv7psxuujywqm4rBo41t0Vs4uvl4/PXHUNLj7/f6VRvte5RJTjxBo4Zv0" + "A3sDxw2d+EeTcnzd4qnIdR43zZ/EbSUjNfEN+oHppFsiEZOmxn5/ZJOBvt1uNivrNyvk2nib" + "fmA6W0W0Z6FGkL0sNvLYt0L/aKeLtnqLTvCD2FzRNR53VelSZ8l1IfhfdqqDbRaWcWo6nWZs" + "zrk1SZLVvww40oBeZTG9oDwbOm6pDy8svKHzA9Y2Z3oUgU5WOSIXdOjAv/Nv1hLJ5aZRr+lQ" + "XhNYevSEZye6ZJo2PZNpd9ANXtFFuYtOM0p50UnP4Dm2VeQZavVCZ6cqudziCOL/szSKYkh7" + "hReu62UJv/MyS8+HM2AZuUwNgwcdTlVSkasrrppOgSL0Rg2ME9l6uD8/cqmWd643T0Y90xEO" + "azku48RzCu0vau1z0lNEhJu++Epkoks4dOhjPPaL+Hl+gf4upmlplzaIPGdUIbewXls7OTvo" + "xktbdK6auNyAWz266fOHaoQ4ZKNpOl940vRXHQN99BU9XMkzqylo3+7u0nTEdkHkKzoKRUNH" + "tccxeoEOwxs6XQqK0GdRNFoVKkqEDo+8lk4Syq2UsDWd2ubxKHtm5dzVid1Fe5bOjCx4kUt7" + "mohf8QPCMg3ttGERjp4z1Yk27O5HV15r6MbuVF1S2xbHo+pRNblNf88SaN9sVIpyaSfDYhnU" + "dEQK7A54ELO/f6VJqC2joknF4bmfPgadw4UtY+hmo4Vj9ZanWNtd07PsRfmDuYqTgc43nAei" + "e8TEu4OuWh7kGcb70kViKfR7phdvVA808gw34thHkBzJ+EZHSquH5NfzN5p1ZU+S/kM3fZxE" + "owBnCF2lWFAivcWi8jvUYydDBujAZ0JX7XD5Q0yTMT0EnVf6emHh9FC3anptgu3nc5ueppC2" + "0nfT//OdqRcOA5HeoVsbFGZdFbxFJ3/7C3ShyTPoz/C4PwHnhau+rLmxVdcEwNunRdEYNcFK" + "8Wv6jO4cBL8DfuC1xbqssbVi1TOMN6chHoSu1Ws6ByLZBfDzObEX8yRqNvd2LaZsLzt3k8lY" + "1g8aDw+Ukc3gfatAzMJjapTnOdEb2yqNOtLgSdwkMHBWGEIxxmQS/iYTqvAyGSmN9rZEswZW" + "eJkaC0Af4/ieBrPHY6kWWniCh+0NoVb9DjzbPLhZNhH07f4+CIK4heYbT0V7d0ui3XvcSvLk" + "QEbXROPnz859zFGOLGptZhRDru2UTt9EeB3ISj31TQ784fBIRwVeVTQtrq2gbs93G0Vfvtg9" + "3/Ft92KqdXWfI1cpVCspOOMnjg3QLr0aRwpOxuGOj+i7orD6JarnqVugEE2sfnXs2khx0CsD" + "r6rv33U3w/3MZvNCQ/dP3EI+1c2pa5fGRbfa2e/SApohXbw6RmFk0a2rzMd+ujRclAI0XnYh" + "pBRH1ujfhuil6yZX6LTEmlEnl158H91uFVVtr+t7ne0o9iKXSdSxHjpvLJieqLmXar5xaPfs" + "Ll2mP8IMWqRzTy/PSTplzIvqe7Qndit3gc4581Paq4p23lHpYP+dH6K5lyoZSce1U3+vz0xb" + "dMZLgcD/AB5aode9Qb+/S5VmtEsDUNMH334MxKqpcxw+4/HWbIAuNSbXgc3RLIo+4zNyjeBR" + "ZdbjRKuFKec+F03qqrpCtuieb/uGLGNXyDbdR7mugXsezlUhn06D3iJED+2qvkcDpCpUvzdl" + "nnTVnSg6vavxfT/spb1Wz9qpnPN7Q+mrXTsmF1I+78j0PHpq13jOLR7v966mV6jS0BX0vAJq" + "OZ+3dlLP8UnDH+7nkUpRHMf/399CVFUcf7nu7zj+A8yummsi9EdGAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +whidbey_dock_pane_bottom = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAF0AAABdCAMAAADwr5rxAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAECBXFC9vECiQBS2oIDKMIDigC0CVJUqQIkewJFKlJlayMEiwMlSiK2G0JFTR" + "LmnSKGHmKHDoInDwMGjgNnDgNXLwSFeKQFizR2OkUGagaHWVcHiYZ3egZ3e1cHilUHjRQXLw" + "cYCncYa0dpC4R4DwU4PwZobHYIfTcYXGcIjVcpDBc5fWZpHxcZjgcJj3d6Dld6Pwi5Ozl6e3" + "q62xgIjQgpXEgJbUkJjAkJjQgJjggKDXkqHCk6TWhafggqfwh7Dgh7Dwk6Xgk7Tkl7fwoKjA" + "oKjWqLDIp7fXsLDIsbbWoLfnoLjwsLjjl8D4pMLwscHnsMfxtdD0wMHg6tTN4Njk5eTo4Of3" + "5/D48Ofh9/f3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAaHenigAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAejSURBVGhDpZkLe9o2FIYpTVeWrG3Srmy9stk0LTPJMKMhmYM9KOuSERqydAX8//+H" + "dy6SLF+QRXeepwtg+9XnT+fotlqyRQRey+1vcX9S2+Lm08Bz3f42+C3ond5xt9txnRf2guzp" + "b3u9Y8C77gt7vDW94/t+DwLwrjXelo5wpm+j3pJOcEEHvK33dnSGS7q9eis6wqOIW/D942MP" + "MtPKexs6wlfZsMwcCzopX/2jx6prp76aTp4X6HbeV9I7EUVOexh2vXZ15lTRBTzK+Q70brtd" + "WbUVdAmPVvwKIuIoCkOvWr2ZruCSDlgMog+HleqN9BQu6HHMePEmQdWYY6IPNS+IB3DGSzrg" + "jd4b6KOr6XQsGxA84YyiB27bdTaP95vpoyukS/wmetBuO5vxBu2z2fU1NACBpowh6AvEGL7h" + "S4WYmN3W12hPEqQTXlpOvlNodNcwERpzBtULepTRDl+E9tAEr1gTVNO7xim8olbnc+k9O34F" + "IfwC+WHYMa8PyuiT9JHPSOeunU7PRhTXFJitYWeQ3joqaaiEPpko/ODzZ+n9xcVaxi1n03jc" + "WccKP7sqwRfpi5vr6ZB1DGIAcuYoNH9YLIDewU+DNd06m11diae0dyjQF0hn/CBG+no2u73M" + "wYk/5B9JPXV/VOiFPB3Y5Ol7ghN9uSyyES9/HSRkFZZFHp+jo3JM8fH4/ByrJsOdz+cXEPm2" + "4gF1PZVADp+lLzAbsG7gxt+zlJuLKb0VpM7ZJHuJ05ZHpCw+Q18gHXRzJVKniZjPb9Ayok+n" + "k8lIu6aVXB6v0xdIR1dYe+hKBPilsWkcez+TF/XhIq9eowN8wZ4LusRTq2K4lKPkeMb4pT7U" + "kTe+Zk5Kh9uU5zi2DofD0b8IuIEgvcIxOaF8UHRqUv7sa3hFxxdMPUe65xEdXLmhsaBAJ/wt" + "XtOmSFxuKvWSTspTAkr3zundgc4jTZ4ecreX0BVe0Fl5GR16FMbFUnpImaO7wu+Qqmc6JlWM" + "yy2sIPwbBp7XJ2kXlIXjdFqi6zjNwvvRHeQMPyZC4YlOSRXDIleuuFI6FArTM2tguhHdo/bx" + "lWMxveN6c6XUI53KYcy/c6ywT0n7RzH3ldIDqohyuv8WyEDncijQW/TaHznPow30W7Ymp523" + "QZA5tYTGFtSra4dkJ7rK0hwdV0243KC0Oiun906TGtUhmibp+OBK0i9kDZjoI3i5GHtWUmj7" + "dnwcBDX0hSpf0GmhqOi02sMa3UAn4xUdHiUK07ueVxvNRJUwnTJyWzpIiKe8hE3psG1u1cIP" + "qBx3dew7aw+DrpJFWVSmPRhyXuELkjMZ7XBg4dY+hGInmvHdji6yVtGV77C6hG1bv19LzsQm" + "N5vv4ZC0TyZiiCrTDsbSNCjpVCnkO8GdPub7W+iE1BlRTaIO12Z6i+hYLuiMoquDFqzV19jF" + "0ndJD8OPIh/UUzgYyPEGxwHvhGritoQutjw0ziDels4SY6afIH12DeuBzDiDG3E6R+AxEvGZ" + "HSnMHjy+rt9Drws/QfonuenDQdRz6A6miyGWKJ48YhHjO6mnkwwOohM+ZLrYDsef2JoQ6S7R" + "caZPJxYcHtKtmpybyPteT6cHAUkbydbkX2wZ9sKuw9ILdO2AQs2rjNfokG9/EZ1p/A7yM2Xc" + "nwTHiSt9LHuwla4JCK/f5nktWhOMBD+ld6Flx/mN4AucW7THMkcr2noG8eo2qgemS/WSjoUI" + "vhB8vR7qk/nQy27u9bWY8J5P7trtFs8fEKenMCKrwHMrh23B6CjlUQT0zLFKZh2p8CCu7Sg4" + "KnRJMUW77b7kDhV47owAIn8skV0DCzx3jQaAj/3+CQSyWy1eLeTwAHfzB0K59Tvh0XPnxSCL" + "gG8nJ47j9HNobLjD2otHEvm9x2sePLGQadcE8UVZrLf3hdIVKwu2Nl2oobLjlMK+CfCykIX6" + "ekPvAdHC5eWDOtNp3wTdUnYUVNzzvfa8V6+0PV+93mg8f56z6WWj8eDBPaSLLaXbbZccgBbp" + "ScsTcDBnvb5Tv7+H8cMz1cCrRr2BP+3f0/arrbKDlBJ6ouBJ8vedO/eBvr+/t/fsWV1EAwLh" + "+/v3ztPNadkpTRld286C8vuIgdjb24VA8u4us78HvHZvyUczXSpn/sOH5BGjkV6JN9LrqPwR" + "kZ5CMDP32XjKYaITXOhcZkNryTOYY6ADe3f30f7BY9S7RPFN/A/GUtGbzcPvNuM30+t1YIMt" + "Kb3ZfLqEfxn6IcSPG/EG7XeBffAY4gkEYDHUH3qVN28Oj47evfsa7Uly99FBlk7ecyNIB/ih" + "7xvg5lO3nRy9KeCCfgjKu8ZjN3O+7xidOTzy/f91preDnlPOsO8i4Bu4cuR/zZme3kuIJ3o2" + "oEOPQHnFgWH1/wEFPNFx6lexxGSpVC7XkaaxaKeUbqPchp6Q96n2TxArgP9RZYtaA5vHUcRn" + "bV9ZeJ6usM10Vt98wgmDyfJrNP2l4hm6XDF7CATiZTZih0aRFdySjup5/PqZMlEe5Vbpt9Oe" + "AJ7pkOewhSie+Ja3Y0tPdpgOBRrZKrf1HZV9Q3T03Fb5NvTk25+wQKPrsyq30+vWzsAjSI+i" + "LeC2OcNyTjudc219VP0O/wGW4JFYg7jH7QAAAABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +whidbey_dock_pane_center = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAF0AAABdCAMAAADwr5rxAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAGDeAJUqQIEOkIkewJFKlJlayMlSiMle1K2G0LmnSNnDgR2OkQ2O1UGagUHCo" + "VXSzaHWVZ3egZ3e1cHilQ2TAQHDAQnLSVnfFQXfgcYCncYa0dpC4VYTTRIDjVYbgZobHYIfT" + "ZpPXcYXGcpDBc5fWYIjgYZHgcZjgd6Dld6Pwi5Ozq62xgIjQgJbUkJjAkJjQgJjggKDXkqHC" + "k6TWlrDXhafggqfwh7Dwk6Xgk7Tkl7fwoKjWqLDIp7fXsLDIsbbWoLfnoLjwsLjjpMLwscHn" + "sMfxtdD0wMHg6tTN4Njk5eTo4Of35/D48Ofh9/f3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAXehG6QAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAdqSURBVGhDtZoNW9pIEMc5emrB651VUDRUpEkqb5d6SBOUXq9Q8dprke//aXLzsrvZ" + "hGWz+NzN87RCzP74M5mZzGyspDvYOGh4wx3OTys7nPx+HHjecBf8DnS/3wtD37t47S7InX7V" + "7/cA73mv3fHOdH8wGPTBAO85413pCGf6Luod6QQXdMC7+t6NznBJd1fvREd4kvAnDAa9XgCR" + "6eR7FzrCV3lzjBwHOilf/a3bKnRTX04nn2/Q3XxfSvcTsoL2OA6DdnnklNEFPCn4Hehhu12a" + "tSV0CU9W/BWErZMkjoNy9Xa6gks6YNGIHkWl6q30DC7o6zXjxTcZl9UcGz3SfEE8gDNe0gFv" + "9b2FPlnMZlP5AYInPKPoY6/tXWyv99vpkwXSJX4bfdxuX2zHW7TP5w8P8AFg6JQpGL0Bm8I7" + "/FIxBmbYeI72NEU64aXLye9kGt2z3AitMYPqBT3JaYc3Qntsg5f0BOX00HoLL8nVL1+k79nj" + "CzDhL5Afx769PzDR77Il35DOl3Y2u5mQPZBhtMb+KDt1YvggA/3uTuFH375J33/69CTtK0fT" + "dOo/rRV+vjDgN+nLx4dZxDpGawBy5Cg0v1guge7jq9ETnTqfLxZilfYdNuhLpDN+tEb603z+" + "9a8CnPgRHyT1dPmTjatQpAObfPo7wYn+48cmG/Hy6CglV2FaFPEFOirHEJ9Ob28xazRuFIYt" + "sjjOf9p6RJeeUqCAz9OXGA2YN3DiHzrjw4du66zT6VyCNZvNdzk+hy1XpDw+R18iHXRzJtJF" + "Y4uvrrpdgBP98vJds9vNfqmlXBGv05dIR6+w9tiThLet62tkn50h+xzs8GVL/lIvF0X1Gh3g" + "S/a5oEt8+PYtws/AFP2wxfgfeqkj3ww052R0OE35HGtrFEWTfxBwDUZ6NauDnSq6LNNM1/CK" + "jl8w8znSg4DoEcDZG0U64b9indBukdhuKvWSTsqVV+iOH9zSBe0C3Eiv/3yFJxjoCi/orNxE" + "73YBbqbXiS5vAJn+TD3TMajW2G5hBuHPeBwEQ1wbtjrklfuCoePrtVDgsV3QujWFJzoF1Rqa" + "XNlxafSOoOO1zeye6TWkf8KvvBa3d+w3V8r3SKd0mPJxthVeU9Q+adno9Rco3kwfXAEZ6JwO" + "G/QG6nKhg+cL2nkMgsippFRbUK+uHYKd6G/edDoUiPcmz9TrB3jSjZnef59WqLag0yQd262V" + "pLfedC5L6RMImzXEPK1EjTS+9XrjcQX9Qpkv6NQoKnqzc8lZZNOu6LBUo4dBUJnMRV1hOkXk" + "rnRIqPWMW9iMDmNzoxLfo3Kc6tjvrD0eh1Qhm5BI27XX9qt06YnOSzW673mV+1hMojm/P4+u" + "/A7dJYxtw2ElvRFDbj7e44i0d09F9TL5vba/f6Rrp0yhq0rwiyHG+xVc4swzIpugijnQq0TH" + "dEHPKLraaMFcPcEAkn6X9Dj+CAs/NM/PMedVzMhyg3Vg/6A6xhpsoIuRh+oM4rfSD/P0Q3qP" + "dQbolEzzB+gHcnUGB3HaR+AaifjcRAp3j3iCS3svqV5J7Z37jL63R9IFXZRYogRyi0XUd1JP" + "OxlsRCc8weuQTmwd/gGH9gUd7/SyjcCF+vaQvDeR7/t9nT4mZZNXzC8asKsBnrBB1zYo1H2V" + "8RodEvnPrfRaDei/ERwb8GxZfmMr6wkIr58WBA3qCU5Pi7qJXf2V4Eu8X2rLclsrWj+DeHUa" + "5QPTnwr0GhjQCQ4tQ+bzJImC/HCv92LC97xz1243qMKjvXpVq0n9NchQpRx/6SvlRM9tq+T6" + "SIUPcfdFwZ8mk9oLVMxksJ+OKEnZfAywOB6DFbcl8j2wwPOlydbDq/DgYG8P/6Funa3wAPeK" + "G0KF/p3w6POL16McHfQfHR1Uq9W9XwIKRM2GpB7gG1sSxdnjhIsnJjJNTWDfvxdo2lG8Y8Bo" + "E0IOmbZTNuYmwMtEFuphbjLgl8sbOMrwNPXMG1mbM99JEBwf6zPf48Pi47zAf8QuJUK6GCm9" + "sG3YAN2kp41AwME5OPEBfTGfa/Mq9PmPcBAmQ21ebZg2Ugz0VMHT9PNn3odAgyn57iPYjBta" + "bKz922w4Ne3SmOjaOPuZR0BlPMWLY5BGGl1bpV7a6TxwQXmQeN6F4FacqoZ9G8JKl0Mu0++0" + "75AVFyveRtdHRdHby/5eVjvIvcDkEnHMQseNBTUT5fdS1TtMbcvu0nb6TW6SM+7pJQlIh4K+" + "Vb1Fe6SPclvoAdiztKcp7LxTp0P77+jp/F4qVySZ10b91pjxC3TEczeF/xHc01Jv8wPs8c5d" + "mtLOA0BGL336UZKrqs8xxIzDU7MSOveY2AfmLd8UPSdmeA3jqcvMbAV3C9XOPS+bxKqsQ9bo" + "jk/7yjyjd8g63UW57IEtX87UIa9WpdHCRAftor+nAYhbl//0OZ+cTgQdntW4Ph920p6pR+XQ" + "zrk9oXT0jApMbKRcnpHJ6+ioXcY91haH53s701Pq0mgOtTwCKgSfs3ZQj/kJ5g53i0ihaDgc" + "/n9/C5Gmw+Hxbn/H8S+cD8xcYY4GnAAAAABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +whidbey_dock_pane_left = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAF0AAABdCAMAAADwr5rxAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAECBXFC9vECiQBS2oIDKMIDigC0CVJUqQIkewJFKlJlayMEiwMlSiK2G0JFTR" + "LmnSKGHmKHDoInDwMGjgNnDgNXLwSFeKQFizR2OkUGagaHWVcHiYZ3egZ3e1cHilUHjRQXLw" + "cYCncYa0dpC4R4DwU4PwZobHYIfTcYXGcIjVcpDBc5fWZpHxcZjgcJj3d6Dld6Pwi5Ozl6e3" + "q62xgIjQgpXEgJbUkJjAkJjQgKDXkqHCk6TWhafggqfwh7Dgh7Dwk6Xgk7Tkl7fwoKjAoKjW" + "qLDIp7fXsLDIsbbWoLfnoLjwsLjjl8D4pMLwscHnsMfxtdD0wMHg6tTN4Njk5eTo4Of35/D4" + "8Ofh9/f3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAA+wCLtAAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAeDSURBVGhDtZr/f9JGGMdprZPJnHSKm9OKI4DG0K5kWAptGIw5FGqpdQL5//+Q7Ply" + "d7kkR3L4ms8PWmjyzifP3T33PM+1FO1gQ6/u+DtcH5V2uPh86DmOvwt+B7p7etLpuE7jmb0g" + "e/qr09MTwDvOM3u8Nd3tdrunYIB3rPG2dIQzfRf1lnSCCzrgbX1vR2e4pNurt6IjfDTiJ3S7" + "JycezEwr39vQEb5OmuXMsaCT8vUn3dYdO/XFdPJ5hm7n+0K6OyJLaQ+CjtcsnjlFdAEfpfwO" + "9E6zWbhqC+gSPlrzKwgLR6Mg8IrV59MVXNIBi0b0fr9QfS49hgt6GDJevMmwKObk0fuaL4gH" + "cMZLOuBzfZ9Dv1xMp2P5AMETnlH0odN0Gtvj/Xb65QLpEr+NPmw2G9vxOdrn8+treAAYOmUM" + "Rh/AxvAJXyrAidmpf432KEI64aXLye9kGt3J2Qhz5wyqF/RRQjt8ENqDPHhBTlBM7+Ru4QVr" + "9epK+p49vgAT/gL5QeDm5wcm+n58y2ek89BOp4NLsmsynK2B24svvTQ8yEC/s6/wvc+fpe9n" + "s420W55N47G7CRV+vjDgs/Q7D+/fE/heCECeOQrNPyyXQHfxp96GNM/ni0U/oz5DP3iIdML3" + "QqRv5vPb9yk48fv8Jamn4R9lRiFNPzg8rCJ+j+BEX62ybMTLb3sRuQqXRRqfogP88BDo9/b2" + "LnDVJLhXV1czsPSzwh4NPS2BFD5JP3j0E1j1YeUeqE9SbmZTmikwdQaT5K942nJESuIT9INH" + "TK9WAL+n46+ubm54HqJNJpcaX1tyabxOBzjR0fWofl8ilkudTXHs7Vz+Ug8XafUaHeFEl+ol" + "frlcgmy5pjhKjueMX+mhjnzT1ZwT0w8eVcHwCfg/eqdc/hsBN2BMVNGeMH8pOj1Q7jNdDa/o" + "oDxDr/+LMw/gpDtDJ/wt/k7bIjHdVOolHd2SpFcrv9K7A50jTZoe0FrdGOgKL+jkcyMdRhTi" + "opEe0MzRvcLvEKtnOsJXutXQ7yRtRrNwHG9LIaVltO9xLCDPhPw1m8ITnZSv4M1XT9BqtRXS" + "f8ZbYaEwPZEDfxJ0ws/QaaHY3jHfXCv1SP+OmCl65elTvPWd2PuM9KGznd59BWSgf0/wtPYK" + "wYHO+/YW+i27JqWdyyCYOaXo5csamK79SW1V/fE+rVRc/DRXUnTMmjDduMCLBmb66XlUOm+3" + "k3T0vaLPbOiX8HIhjizmgOh3Kt9OTobDknt8nKCvVjiq1Qprp2wvRzs5XtEBr9E7npem07Tc" + "lQ4SwimnsDEdyuZ66WLUPW63flN+B+3o90qZtctlbvL7sO/58gXJMwnt0LBwgD46Pm614lHd" + "ge6l6MrvkF1C2eb7pWhwDeqBv/qorSapfTIRIcqkHRxL2yAODmqnzJ5GleANH+f7ACLDcbtt" + "pG/y6XWi44JL0FWjBddqf4r4BL1WuV8+Eo5XmjAYyHiDUcY7q+Mltwa6KHkozvTRNxl62Uhn" + "B4RMP8NL5teQDyTiDBbi1EfgGAnqf1+vtSBZk47fvA107R9l0RcMPc9rULBgOsVIESk92WIR" + "8R0KMJ45HCNrSC8/x3sDpotyOPzIrgmQ7hAd9lxtY8HwEJdqcm96MwXntFtM5m21Un5PvkE2" + "1DD0FPyfDdgsPUPXGhRqX33TpXmp6LhrM13ydDrNONrTl7hxyX01qVz6HX3v/onqdfqDB/8Q" + "XvBjegdmeqPxB8GXuLdo9ERrRctnoFWi06uVB/uYEyj1ko4LEfxC8M2mr2/mfS9Z3Ou5mBvg" + "qmo9Qbc/flyt3uX7N5vz875m2LdqsFvQXKV8NAJ6oq2SyCNJfatFdA2OCh1STNZsOs95QAWe" + "B2YIlm5LJHNgUk/0JBwwvn8Ghux6nSJjGg9wJ90QSuXvLvqG4b0kAj6dnTUaDT+Fxge7rD3b" + "kkjXHp0O8GHW38Xag/lfvmSeo77FlQWlTQfWkKmdkqmbmE5RQqiHusmAXy4H8C3DowiGxdQK" + "ytZ8r1+320dcvXHNd3O9eKeydfGcGywJIFcScMQ3DQ1QQ736uv2DLA1B/Rzpi/lcq5cgn4dq" + "AZZoX6tX66ZGioEe/RLXnR8+yGoG65nJ5B2YrJ+whLyILzV1aUz0+I7oA1RLXCuxcRUvvoNl" + "pNG1u9SP+XQuuCAESDp3ITiZp+CS34bIpcsil+mwxSqLg0suPo+ul4q08bCJ9J2kQ0bnmVwi" + "vsuhY2NBJkupXqrqrGLCmNNd2k4fkBtk5Db29FA7Rsyt6nO0w1Ye2xY6xsyv0g67FZ90cP+d" + "8oxEL5XTuSOxro36c+eMm6IjnhME/IfgTh68oKf3IqmdC4CYXnj6UbBWER97Rg0Day/qYOs5" + "gXngST08wXB2UKi8mB4xvps+96C0oPDMqcAz8ELs+/SJ0P90ZsP4DN1GuYVnhPpvdlYm1FMB" + "LTJUu5MyO+3S94IOZzW258PFo0ozVc571A7pnN0Jpa12oR5Phq3OyOTasdQu8RhbLM73dqZH" + "L1A3VQU5R0CpBW+tHdTj+gSzh+/0txC+73+7v4WIIt8/2u3vOP4D32mBB1S/lsMAAAAASUVO" + "RK5CYII=") + +#---------------------------------------------------------------------- +whidbey_dock_pane_right = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAF0AAABdCAMAAADwr5rxAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAECBXFC9vECiQBS2oIDKMIDigC0CVJUqQIkewJFKlJlayMEiwMlSiK2G0JFTR" + "LmnSKGHmKHDoInDwMGjgNnDgNXLwSFeKQFizR2OkUGagaHWVcHiYZ3egZ3e1cHilUHjRQXLw" + "cYCncYa0dpC4R4DwU4PwZobHYIfTcYXGcIjVcpDBc5fWZpHxcZjgcJj3d6Dld6Pwi5Ozl6e3" + "q62xgIjQgpXEgJbUkJjAkJjQgJjggKDXkqHCk6TWhafggqfwh7Dgh7Dwk6Xgk7Tkl7fwoKjA" + "oKjWqLDIp7fXsLDIsbbWoLfnoLjwsLjjl8D4pMLwscHnsMfxtdD0wMHg6tTN4Njk5eTo4Of3" + "5/D48Ofh9/f3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAaHenigAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAe+SURBVGhDtZr/W9pWFMYtW1en67RzunWdpUvQlgWdMCoyJFkotbaRCrMryP//f2Tn" + "yz25N19ILn2enV8Qkn7y5s2555570414jRh4dbezxvnxxhonXww81+2sg1+D3jw7bbWarvPM" + "XpA9/eXZ2SngXfeZPd6a3my322cQgHet8bZ0hDN9HfWWdIIrOuBtvbejM1zo9uqt6AgPAr5C" + "u3166kFmWnlvQ0f4Ih2WmWNBJ+WLf8xYtOzUV9PJ8xzdzvtKejOgyGj3/ZbXqM6cKrqCBxnf" + "gd5qNCpHbQVd4MGCb0HFMgh836tWX05P4EIHLAbRe71K9aV0DVf05ZLx6k4GVTWnjN4zvCAe" + "wBkvdMCXel9CH96Mx6FcQPGUMwl94DZcZ3W9X00f3iBd8Kvog0bDWY0v0R5Ft7dwAQg0JYSg" + "LxAhfMOb8jExW/Uv0R7HSCe8WE6+Uxh0t2QiLM0ZVK/oQUo7fFHa/TJ4RU9QTW+VTuEVY3Uy" + "Ee/Z8RsI5RfI9/1meX9QRB/pf/IJ6fxox+P+kOKWArPVb3b1qT8XXKiAPhol+O6nT+L99fW9" + "xB1nUxg275cJ/rvjV3l8nj6d3Y57fGJ3CUDOnATNf0ynQG/iX917OjU6Pn6Vx+foU6QzvrtE" + "+n0U3b3PwInf4x9JfbR/cHzSzj3iLB3Y5OlrghN9Ps+zES+/duO7h/tMz+IzdFSOKR6Gl5c4" + "alLcyWRyDZG91rL7cBfjGPiZHErTp5gNOG5grPyVpsyux3RXkDr9UfoQw3ePgJ5J0RR9inTQ" + "zSORHpqKyWSGlhF9PB6NhsYxgP9IdMSn1Zv0KdLRFdbuu4IAvww21bHXkRxEONEPjtCblHqD" + "DvApe67ogqerqnIpVTKMGD+vPd5mY3b3ITLqNR3yOvEca2uv1xv+i4AZBOlVjsmE8gYPvnv8" + "eFvhmX7S/ls/2oSO4097jnTPIzq4MqNakKMT/v2mST86Anz7dxm1QiflmoDSvUu6d6BzpcnS" + "fXrsSGfxqB28B/xY8IrOyovo8EShLhbSfcqcXzc3t5lMgeqDQJUSpmMdX2K7hSMIP/2B53VI" + "+jVlYainJTqO0yzcH51RQ/pcx2LxR6AqFdGpDi6hyZWOS9OhAjM91QPTiege0jc3t7b350r7" + "PAw/zsEcVo90moFC7EM1HZ4pab9Sc18hfUAj4jBHh7xk9UDnCp6j1+m2rzjPgxX0O7EmpR1H" + "VRD0kU61BfsrUzskO9GTLM3QsWvCdoPSCo1P0Skvg9t+vEHjEEe+0PEfLoR+LWOgmn5wMIeU" + "Ad9D+OTMudxAX2jkKzo1igmduj0coyvoZDxrBzJgFf03rGhAH0ZqlDCdMnJd+hbSKSWFjvl/" + "ctLc8N+gclzVse+s3R+0SNYQnyi1v+mMJN8HPc6rGtH3Te1Cf+OrlWjKdzu6ytra1ve75Ln2" + "nSra8cVG3FeL3HS++z3SPhqVaG95Hk2DRFeFQPmO9BcvMN9fwgpdO0M+LGQc3pfT60R/ipVA" + "j9VwvkcV51seq89x70J8F7rvXynj+Rflu9QbrAPeOY2Jpzk6wb9RlYDwtnSeO5ZMP0f6T1CA" + "M9r39va+ljrD6lMrUpg9uL7ev4anrrV/lEUfFlHPoTOwvJs1cj4XuHTYpJ52MjiITnif6Wo5" + "vPzI1vhId4n+i8yrwNzDWQQ/STn7jkHen52Z9MGApA3lavKJV4a1sOuw9CK6guvVAeMNOuTb" + "O6Izje9B/sb9K+ctHq4n86rWLnBj7UF4TW8BvU49wVDxNR2POc6fePAtzHvKmoSewM2VDeIT" + "OqzlXJfpol7ocAi2ZxgOQ6n26BHyf6AwPDd9N7znnbtGo87zB8TFBVTkJHDfymFbEvzO7pMn" + "iq6V66dqPlqEw/5FAgdGzyXFFI2G+ys/UI4HD7T6JFvSOZPKHN5zNADwZ6dzDoHsep27BY1H" + "c3bIG0lFlYmZ/p0eLXruPOumEfDt/NxxnE4GjRdG9Vs7TyBMW4x8l97sOTrAOxe0aoL4/Dl3" + "neRXHFmwtHlQAzpYn4HnV8OAh4Sg3UalHtZNBfjptA+/MjyOIXO2dnay8IK19nPPOzzkW+E1" + "3+z25irp1tV1ZtilQK+k4IAH+ldiQPJZsF6tewpO6iOk30SRsV6Cfh5WCzCf94z1aq2Whxfu" + "EyTwOP7wQVYzuJ4Zja4gZP0Es1bzUsut5ZRn8j1//AMvAZPgVbz6DWZ7g14At9rjgBIgeN6F" + "4Facqkb5NoTF/gxCaKVn3INeKZTiy+jG7gxOHjKlqvadpMPY84osKR6r5plRRGsONTVJ9eSJ" + "Sr7h0C7ZXVqtvU9GCKZwTw+1Y8Vcqb7EmV6C1mrT+5FBgDXzi7THMey8U6dD++94E+m9VK5I" + "Mq4L9ZfmTDNDR7z2neCuMfTyFyjfdeMuLdFOm9fJU7V481Sxp5f0Oen9d/pm8dasgi59Tvad" + "Da6ZLN7bVNEVnrpMHQuAyyxQMpgs3q/qDtmgWymvrJHSiGS1Wym3ouc75MXCwvNst7TSQcmc" + "dlt1qHZvyuy0y+oE8h7p8K7G9v1wZc7oNgpHFdE9oJdlij5mSZe8x9pS+ZZpfbrCY22xeL8n" + "fFvt4D3qplVBySugjGH2dMRDrgDdznPrjFS4Tqfz//1fiDjudA7X+38c/wE5II6oZulXWgAA" + "AABJRU5ErkJggg==") + +#---------------------------------------------------------------------- +whidbey_dock_pane_top = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAF0AAABdCAMAAADwr5rxAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAECBXFC9vECiQBS2oIDKMIDigC0CVJUqQIkewJFKlJlayMEiwMlSiK2G0JFTR" + "LmnSKGHmKHDoInDwMGjgNnDgNXLwSFeKQFizR2OkUGagaHWVcHiYZ3egZ3e1cHilUHjRQXLw" + "cYCncYa0dpC4R4DwU4PwZobHYIfTcYXGcIjVcpDBc5fWZpHxcZjgcJj3d6Dld6Pwi5Ozl6e3" + "q62xgIjQgpXEgJbUkJjAkJjQgJjggKDXkqHCk6TWhafggqfwh7Dgh7Dwk6Xgk7Tkl7fwoKjA" + "oKjWqLDIp7fXsLDIsbbWoLfnoLjwsLjjl8D4pMLwscHnsMfxtdD0wMHg6tTN4Njk5eTo4Of3" + "5/D48Ofh9/f3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAaHenigAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAe1SURBVGhDpZkNexJHEMcxrTVNao3G0PoSaXmJ4l1soBhCCUdBmkaPCDFWCN//e1z/" + "M7O7t/fC3aHzPMqFu/3t/2ZnZmeTUrCBnZ83m2cbPB+UNni4NxweHx/9tsGIDei92bBF9B+L" + "44vTu6T8AFb+oTC+ML07gfIjppe/L4ovSofy1nGjIfT9oviC9O6kBZ83flf0ovhi9NccLY2y" + "sv39gvhC9NeT4R/HR5q+Xwa9GL4IvQmvLBcRK4gvQG/+DZcvP8JG2hYF1efTSflxY2HIdLHY" + "gxVwTi696VGCptLz8Xl0Ud4oR90u2vOXNodOyjlYFjoa+VPT89Rn010ol+xXdP1Bq/oI9jA7" + "azPprguX23T4R7QbejY+i/6q1YJXpLYwlZ0foz/4LqOkZdBfvaJgaZQzPbP3IAu/nv7rEYxi" + "g+xgIfVrgX+44FV99HAP7J2dra216jO0/3RULkfpPAP9p+lg37u3Hp65r/oHByE9GvDy/e4u" + "2Bnw7F3bD+kQbGbS1w/y4Dk9wd29vcePtc5dtp9/1rOQ8jt3MjfBnFwlPLtgd2dnG7YD291V" + "88Et2fBU7eNQz2fgiU3kLWVPnhBflHfCRwcpb5GifTw2+M5n4Mkf21vbh7fanvzCPoLy25XB" + "+9MUfJI+v55NuqKjswLw7v3729vPDVounj6ld6Grzi0/6vvTqRplvUOCPie64Dsrot9u3X//" + "PgbHj5VthgPP8BkGDZtx58TpYNODo7cMZ/ri3yQb3/yjv+0EN77QE/gYnZTjuclodH4OONON" + "XV1dXcLic606V7PZdDoaDRP4KH0O4TPaOPHgX1HK9eWE32oy6fXG0VtXRJ/QmDg+Qp8THbqZ" + "PmxGZF+Ty5g+mYzHA+see4X8ksTb9DnRySui3atpBPxlsQk1euvrm+JzQ4/43qIDPhefK7rG" + "86x4d8tGI1/wC7CnfEtpH7asyAnpeMz4fOh5XrfbHfxHgGsY61Ue05h3hs7TGrqFN3R6wdDn" + "RHccpsMr1ywuQWf8Dd3TZPpstUK8prPykEDSnXN+d9Dl1eN0T5Y9hW7wii7K0+hY0ekauseR" + "Y3tF3iFUL3Ra9tUSRhlEn17fcdos7ZIDYkQ3lNH9JSB4P36CPSPDlBk80zmoVp8+faJBZCEd" + "iSJ03LVM0Rl/Sa+8kmQaLpmi8UTngB3J95qONWXtFyqYU+l9zoh0euslyKBLOiToFX7tC4nz" + "4Rr6jbgmph3SW60TxH0p4Npi3klpR7Az3URpjL5iv7suh1UvnX5yFpQ4D8lp2jM0cKnplzoH" + "sugDvNyKVlZTWiewN2/6/RL5hTNf0VcR+gB+4ThfQ2fHGzqGMkXoruOUBr7KEqFzRIbai9Eh" + "YTXheLXorlurlLx3pByrENHu9V0ji5ciTXu/K3FFEtgzEe1us1YrvfOYbejivWJ0FbWGbvzu" + "wmq1drsU9Jgd0iWbvC5rH49ViUrTDsfyNqjpJptaDK+2Kd5fYhFS6JLm2fQK0yldyDOG/obg" + "z55xNgUvaIm131UlQAm+UPFgRlEl0MWGqoxzyjlxk0KvgS65KviidJG4Evop0f0Z+oFInXFE" + "uaIz3qpxqJEw2ZnfYtXVakH6R1pzolMRdar8hNBViWWKU6syXHeprB4mYynLQWe8J/ShTL76" + "KK7xiF5jOu304cZC5UErN3Tx/cmJTe/3WdpAz6Y/aWbPA1ukJ+jkF9XymX1V8BYd8cYt3kBo" + "8g76miOOe705bVzhMFt5qF1Fjv2Y41S4Jxgofkh3MXO1+ifD57S3WMMs5TadnWMe43wQulav" + "6ZSI8AvDb2+79mbedep1iRYxuxdTvicPuW69XpH9A3Z2hopsDMsJn5sWuGmUD4egq2hJ0vXS" + "EhyPGTgprLFitnq99lwWVKwpi9GHRZVHtSvfE5yCygLgst0+hRG7UpFuIYYHvBZVHqeLevJ5" + "9VknisBPp6fVarUdQ9PErB5wlaHpfueiIMWTloZPTbAvXxLzmG8ps3C0cZFDgJs4T1tV/g54" + "nchKve/zzh+z+byHbwQeBFiWuM/jMSMzvnCcw0O5ZPX+9Wx6Ybp1Ncc1dSmo0QpO+HpCecLv" + "xKw4Cg484ESf+r51XkI/j9MCUrRrnVcr1Wro77WewQ0DD4IPH/Rphs4z4/EFTJ+f6Ah5HhJT" + "4Hl/mfggR0Bj1FmZ8xPSyKInlad6xnpMjkQoARqPZnuqW3GuGokDcGSSzN9x6EOu0LHFGguL" + "SyY+i24f5lRvr/t7Xe2Qe06aS9R3GXT6xYI5E+neW21UFv2kth6/nt6LnOQUXW2rZi5IR8Vc" + "i8/Qjr/ShLaGTjXzq7QHAX5/zZ0O7eZMl0aUtnD6TyqSzutU/Zkx04zRCS8NgqKjcFmpVyxX" + "w6ekSzPa5QAQ0pMlNzZBzu/0TJ+TEjNwS0rhKp5NVDGlz2lFOjXq1aKtxZqoydGu8dxlhrYE" + "3LRzX5dNalTYIVv0QsrzqphsJ7pDtulFlBeiJzvk5TI3WuTFc/1u1PPxR3WokXbum/yu8Rz3" + "RO92sYVa7dw308X3mu6kbdCbVwJrhIp7qi1prcXXxrseJ3gqXPF27ts9Q4FJuvlUkLb7p09R" + "KGZkKHdpsOLwYhGphLXbbTqeZ3gifmsD7UHQbh/WNoEH/wMcYo64Ex2PFwAAAABJRU5ErkJg" + "gg==") + +#---------------------------------------------------------------------- +whidbey_left = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB4AAAArCAMAAABYWciOAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAaHWVZ3egZ3e1cHilcYCncYa0dpC4ZobHcYXGcpDBc5fWd6Dld6Pwi5OzgIjQ" + "gJbUkJjQgJjggKDXkqHCk6TWhafggqfwh7Dwk6Xgk7Tkl7fwoKjWqLDIoLfnpMLwscHnsMfx" + "tdD04Njk5/D49/f3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAQ3JLMwAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAF4SURBVDhPfdTbdoIwEAVQL6htAi0tElBaoVb+/xPTM5M7wc6LLvc6GTIJbnRel/DT" + "ZkUvwXOefsahdqGMJ2LvSwaO4P7d5BdMWejQ9+dzzhOiY4/quu4z44kYSebudbH4REwLm7Q6" + "Jr2hk+lrGR4e7Rb17ZRSdV23v55vxL4vsRCBOesXRrquBbZm0yb7jIHD/EDNKPpUjRBvbmOU" + "Heb7/f6g/aISJhz6R8J4MJvmbM6FGSrPmRaM09i0YZ4zDdHxTN8909I8RMtzyu3NztgwbyxK" + "qytlq6pK0qqROC/0vipGzx0v7ll/MAY2Y1G1SWv9UpXlCvNlpiPZlyjX2w4VJ/rlZk7+D3Oe" + "DsoXwqoNV5HzKHtidJlUC3eXifuXZcxNE91U4xFLIb6jm8oeWIKLcFPN/jxLKY/HhM3+TUl5" + "OhU48eQN9Y6VTwe6D+kLbJ0W3m5X3m926ntgXb7+eg/z2ZzJhcuusN4Lsds9/WfSuhBes94U" + "C6r/AM3yZVcU56/qAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +whidbey_left_single = whidbey_left + +#---------------------------------------------------------------------- +whidbey_left_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB4AAAArCAMAAABYWciOAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAECBXFC9vECiQBS2oIDKMIDigC0CVJUqQIkewJFKlJlayMEiwMlSiK2G0JFTR" + "LmnSKGHmKHDoInDwMGjgNnDgNXLwSFeKQFizR2OkUGagcHiYZ3egcHilUHjRQXLwR4DwU4Pw" + "YIfTcYXGcIjVc5fWZpHxcJj3d6PwgJbUkJjAkJjQkqHChafggqfwh7Dgh7Dwl7fwoKjAqLDI" + "sLDIl8D4pMLw4Of35/D4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAQS37pgAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAGNSURBVDhPfdRrW8IgFAdwLyuXZLIUy67D6dK0pd3w+38xOuewAYOMN3ue/fbnwHZG" + "R8ej5251Yu33nMfcHw8H1iNOxsiNh5xkGUfvmqIBg2YZ8KBrvM3J5BoGH7NBnW9xMjHMGTjl" + "fQYlxvKYh/V5jErc5MEdJxMOAx/BKxZI0w/LkI340aZx5jZzdmdrU92TjKr8IbB2szHKqv1+" + "r2Y4hFDINzWf082A2Xxu+II0TDNU4KcnAcNPz4TiV0P6pp1XKduM9R0XZdlipXBpnNXpgGl3" + "Hu+qdSnzZ1sb0libpab2rqrKMs/d0tqstz+QhwfUt/dabFrrbYXzy1OsNwf0Fgs2TB+ad77B" + "6SNOba9B/uV49D6ZqIvX3bJp1m++mEBO710rLg8wv8wNmVZj6ZdrxeWatmcZW9FjXbxj3ufR" + "6NPr8wLyHnM28vtc6+INX08+w9LTKednwS9I+TwnJg3+UMoTGw3/7wKndxqyXq3gAdg9ZaO0" + "1oab8yo+mRYLKe1p9se5tpCX/7G+dUfhL8vucupsrDz0AAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +whidbey_left_focus_single = whidbey_left_focus + +#---------------------------------------------------------------------- +whidbey_right = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB4AAAArCAMAAABYWciOAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAaHWVcHilcYCncYa0dpC4ZobHcYXGcpDBc5fWcZjgd6Dld6Pwi5OzgJbUkJjA" + "kJjQgKDXk6TWhafggqfwh7Dwl7fwp7fXoLfnoLjwsLjjpMLwscHntdD0wMHg4Of35/D49/f3" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAWZqHkAAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAFySURBVDhPddPbeoIwDABglDqoFDcVGBVw8P4PyXJoQ0sxN+L3m0NDzVaJx/YoT5k8" + "9fbAhfve2luS77kfhq5rir077pkTZ34Ng7Vt2yRO/ELuUPeOTIWxdOrA3Fc46p/9AVobsgnm" + "Z0b1xRsTeLa+EV1f+jCBQ+8DlnzgsDBX2fLxYFR8WeYtxJF/u65tF95KM0/TNEv+ZzZfkElL" + "TbKhuDEVnJ/4Z1+cufpmfsBwC47newNV1fV6v8cMTqMx67Jkhs0s3YIRsNbqHDCePczWhVIx" + "S28NoVRdRyxrMaR5zZPjdcDJha+opxOf+33ACthtrR/glkY7LzmXs5npjbn3VqqcFHmE2i0E" + "934+fd9PjKXdvylbR7yn/q7FuVB8HOF9uMJUOsjF3retb9PcysuFZ+aA0QrJJXYzC6/Fk+IO" + "Eee628IOquJcx5wP6nYV9cYvGpYBKucNRqNHpfW+r9+580uS63vjD855vvXcF4fvB7r+A9+i" + "Xf4K/oDaAAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +whidbey_right_single = whidbey_right + +#---------------------------------------------------------------------- +whidbey_right_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAAB4AAAArCAMAAABYWciOAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAECBXFC9vECiQBS2oIDKMIDigC0CVJUqQIkewJFKlJlayMEiwMlSiK2G0JFTR" + "LmnSKGHmKHDoInDwMGjgNnDgNXLwSFeKQFizR2OkUGagcHiYZ3egcHilUHjRQXLwR4DwU4Pw" + "YIfTcYXGcIjVc5fWZpHxcJj3d6PwgJbUkJjAkJjQkqHChafggqfwh7Dgh7Dwl7fwoKjAqLDI" + "sLDIl8D4pMLw4Of35/D4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAQS37pgAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAGXSURBVDhPdZTZVoNADEDpaC2CFSqC1hVaxWoVqdv0/39szDIraF7gcHuTTCankbJx" + "6V7tW2TfTprVmDvcNKsxt7ismnbzOPQ1npaMh5zxNMdo4Afr0CfMNK8Bv4UcMdBzwshDHzBS" + "wlWN6QM/UmKecu68hBj40ed8nmrOuN28u/qR+op9XNfANw+mf8asow31ge8Mh9au4zhlRIF+" + "1z2zjwcTiKWL/f6p2zFHHMdJWkpty77/lpCffcQ3IwzHY5+GitkDG8fTddv/MB2v+9n6dlVJ" + "aBxq9/Dk/l+95IDgu8b3eD0GJ1ibTmYwzqFt12wTLn07xKc51XW16XqaF20D1jPVtRHf3XHn" + "Sxyqm1ovC5r+MZ97OcJEj/TULuA+B3ZRFIdm5njd/o1JaSgmvzK7Bh8LXAt8kku1/8KaAr61" + "u+ZsQ1X0Aauks1tsKdhCzGb4gzMKr66uTTzLFwuNnctjmUycb3t2m6om7JPtu3qZyE+yBURI" + "+UogvwAM5QfUYOw/ybIhtVghPuBUXrg/LiHG1NmwcSNXqV+4tHLqnJPo+QAAAABJRU5ErkJg" + "gg==") + +#---------------------------------------------------------------------- +whidbey_right_focus_single = whidbey_right_focus + +#---------------------------------------------------------------------- +whidbey_up = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACsAAAAeCAMAAACCNBfsAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAaHWVcHilcYCncYa0dpC4ZobHcYXGcpDBc5fWcZjgd6Dld6Pwi5OzgJbUkJjA" + "kJjQgKDXk6TWhafggqfwh7Dwl7fwp7fXoLfnoLjwsLjjpMLwscHntdD0wMHg4Of35/D49/f3" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAWZqHkAAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAFmSURBVDhPhdTtdoMgDAZgW3GKWjsL2i/X2vu/SJaEBBXcWf6Jz3l5i9bMpdNXR3Xa" + "Wc/StXNfKXXawaktm1rrUuWHJCWxX01TA1bqkODYlm3bNjCAVYwji9TbneStJcoWcNR5Yz0V" + "mySvLVJrvW/buq7g7NadVxbpvJ3taSyWUuef9cx6kxwsdU3sprPY0tJEucboqginwZapjfqC" + "1UUhT9BboXb28Twfa42pQjLZQMUCwiHbdZKMdqFsPx+PeZee3w2w3WpXugvUY7GAsXPmLvdx" + "HITzXe4QbK8Klbvsckcr+C/bF0WeZ+52ez6Bw+D2AwxdwAxwhRsaPDp9hA4OLWGpSn1pVlZh" + "X8Cg2dpNLlxwrgFKFpP/sRqZf26Ph3T2Te8w3AyijSlJ8fuA1v/Acfy+0Dxp8DyZig2dr9fw" + "WXj5ExoGnxpy5TSi78c0gRUacvE0XjvfsGnqwuryH3q/d6hz07L6CxOEXf5LAPv7AAAAAElF" + "TkSuQmCC") + +#---------------------------------------------------------------------- +whidbey_up_single = whidbey_up + +#---------------------------------------------------------------------- +whidbey_up_focus = PyEmbeddedImage( + "iVBORw0KGgoAAAANSUhEUgAAACsAAAAeCAMAAACCNBfsAAAAAXNSR0IArs4c6QAAAARnQU1B" + "AACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAA" + "AwBQTFRFAAAAECBXFC9vECiQBS2oIDKMIDigC0CVJUqQIkewJFKlJlayMEiwMlSiK2G0JFTR" + "LmnSKGHmKHDoInDwMGjgNnDgNXLwSFeKQFizR2OkUGagcHiYZ3egcHilUHjRQXLwR4DwU4Pw" + "YIfTcYXGcIjVc5fWZpHxcJj3d6PwgJbUkJjAkJjQkqHChafggqfwh7Dgh7Dwl7fwoKjAqLDI" + "sLDIl8D4pMLw4Of35/D4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + "AAAAAAAAAAAAAAAAAAAAAAAAQS37pgAAAQB0Uk5T////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////////////////////////////////////////////////////////" + "////////////////////AFP3ByUAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4zNqnn" + "4iUAAAGTSURBVDhPfdQNV4IwFAZgpEyCVBRZaR8OUcI0yrLw//8xuvfuy22e7jkKZz68uxtg" + "0Pm135fl24XxwB/bNU1VFS/+D77d/TY12lsPe3aLqTkUu3Gxa7cHSC3IsmsHOxZS64pzYTMH" + "23Z7qKFXvpTWwZZd0w5wJivLbHxu14fmtSqUzRhYC5/ZEuY/tVbZ2NjyA1o9/UB9qmrtZG0x" + "teKtdnjSplCmDWXLd7xZF63G0opUzux2Ra5eoLCYShvQqv2io7IymewGUsV9lVYdcG1TqAnd" + "QbSbDbR6bqETkastYbCruob5xTNAhpp27PgK7WqFG8DZvz2kY8DBQwGF68XKW/HUtPCBE1rb" + "dJKCjOMwDLq7gjHbkscvZUEOBiGtLc+NtTdYjCcJyFDsQ2cshOnr1PlYUmH7aTqbqYyEajRS" + "12Bqr6f2V2CaLInjCCqGShJ5NTRAVOQSRokulDWfozap2gLGmaMwetIv7/yeulGpxnb94TCK" + "Hp23fLHAedSgeS/C4fHo/y89R5qqfhF9+xJGvszoH5Xccuo6pVT3AAAAAElFTkSuQmCC") + +#---------------------------------------------------------------------- +whidbey_up_focus_single = whidbey_up_focus + +#---------------------------------------------------------------------- + +whidbey_denied = aero_denied + +#---------------------------------------------------------------------- + +# ------------------------ # +# - AuiToolBar Constants - # +# ------------------------ # + +ITEM_CONTROL = wx.ITEM_MAX +""" The item in the AuiToolBar is a control. """ +ITEM_LABEL = ITEM_CONTROL + 1 +""" The item in the AuiToolBar is a text label. """ +ITEM_SPACER = ITEM_CONTROL + 2 +""" The item in the AuiToolBar is a spacer. """ +ITEM_SEPARATOR = wx.ITEM_SEPARATOR +""" The item in the AuiToolBar is a separator. """ +ITEM_CHECK = wx.ITEM_CHECK +""" The item in the AuiToolBar is a toolbar check item. """ +ITEM_NORMAL = wx.ITEM_NORMAL +""" The item in the AuiToolBar is a standard toolbar item. """ +ITEM_RADIO = wx.ITEM_RADIO +""" The item in the AuiToolBar is a toolbar radio item. """ +ID_RESTORE_FRAME = wx.ID_HIGHEST + 10000 +""" Identifier for restoring a minimized pane. """ + +BUTTON_DROPDOWN_WIDTH = 10 +""" Width of the drop-down button in AuiToolBar. """ + +DISABLED_TEXT_GREY_HUE = 153.0 +""" Hue text colour for the disabled text in AuiToolBar. """ +DISABLED_TEXT_COLOUR = wx.Colour(DISABLED_TEXT_GREY_HUE, + DISABLED_TEXT_GREY_HUE, + DISABLED_TEXT_GREY_HUE) +""" Text colour for the disabled text in AuiToolBar. """ + +AUI_TB_TEXT = 1 << 0 +""" Shows the text in the toolbar buttons; by default only icons are shown. """ +AUI_TB_NO_TOOLTIPS = 1 << 1 +""" Don't show tooltips on `AuiToolBar` items. """ +AUI_TB_NO_AUTORESIZE = 1 << 2 +""" Do not auto-resize the `AuiToolBar`. """ +AUI_TB_GRIPPER = 1 << 3 +""" Shows a gripper on the `AuiToolBar`. """ +AUI_TB_OVERFLOW = 1 << 4 +""" The `AuiToolBar` can contain overflow items. """ +AUI_TB_VERTICAL = 1 << 5 +""" The `AuiToolBar` is vertical. """ +AUI_TB_HORZ_LAYOUT = 1 << 6 +""" Shows the text and the icons alongside, not vertically stacked. +This style must be used with ``AUI_TB_TEXT``. """ +AUI_TB_PLAIN_BACKGROUND = 1 << 7 +""" Don't draw a gradient background on the toolbar. """ +AUI_TB_CLOCKWISE = 1 << 8 +AUI_TB_COUNTERCLOCKWISE = 1 << 9 + +AUI_TB_HORZ_TEXT = AUI_TB_HORZ_LAYOUT | AUI_TB_TEXT +""" Combination of ``AUI_TB_HORZ_LAYOUT`` and ``AUI_TB_TEXT``. """ +AUI_TB_VERT_TEXT = AUI_TB_VERTICAL | AUI_TB_CLOCKWISE | AUI_TB_TEXT + +AUI_TB_DEFAULT_STYLE = 0 +""" `AuiToolBar` default style. """ + +# AuiToolBar settings +AUI_TBART_SEPARATOR_SIZE = 0 +""" Separator size in AuiToolBar. """ +AUI_TBART_GRIPPER_SIZE = 1 +""" Gripper size in AuiToolBar. """ +AUI_TBART_OVERFLOW_SIZE = 2 +""" Overflow button size in AuiToolBar. """ + +# AuiToolBar text orientation +AUI_TBTOOL_TEXT_LEFT = 0 # unused/unimplemented +""" Text in AuiToolBar items is aligned left. """ +AUI_TBTOOL_TEXT_RIGHT = 1 +""" Text in AuiToolBar items is aligned right. """ +AUI_TBTOOL_TEXT_TOP = 2 # unused/unimplemented +""" Text in AuiToolBar items is aligned top. """ +AUI_TBTOOL_TEXT_BOTTOM = 3 +""" Text in AuiToolBar items is aligned bottom. """ + +# AuiToolBar tool orientation +AUI_TBTOOL_HORIZONTAL = 0 # standard +AUI_TBTOOL_VERT_CLOCKWISE = 1 # rotation of 90 on the right +AUI_TBTOOL_VERT_COUNTERCLOCKWISE = 2 # rotation of 90 on the left + + +# --------------------- # +# - AuiMDI* Constants - # +# --------------------- # + +wxWINDOWCLOSE = 4001 +""" Identifier for the AuiMDI "close window" menu. """ +wxWINDOWCLOSEALL = 4002 +""" Identifier for the AuiMDI "close all windows" menu. """ +wxWINDOWNEXT = 4003 +""" Identifier for the AuiMDI "next window" menu. """ +wxWINDOWPREV = 4004 +""" Identifier for the AuiMDI "previous window" menu. """ + +# ----------------------------- # +# - AuiDockingGuide Constants - # +# ----------------------------- # + +colourTargetBorder = wx.Colour(180, 180, 180) +colourTargetShade = wx.Colour(206, 206, 206) +colourTargetBackground = wx.Colour(224, 224, 224) +colourIconBorder = wx.Colour(82, 65, 156) +colourIconBackground = wx.Colour(255, 255, 255) +colourIconDockingPart1 = wx.Colour(215, 228, 243) +colourIconDockingPart2 = wx.Colour(180, 201, 225) +colourIconShadow = wx.Colour(198, 198, 198) +colourIconArrow = wx.Colour(77, 79, 170) +colourHintBackground = wx.Colour(0, 64, 255) +guideSizeX, guideSizeY = 29, 32 +aeroguideSizeX, aeroguideSizeY = 31, 32 +whidbeySizeX, whidbeySizeY = 43, 30 + +# ------------------------------- # +# - AuiSwitcherDialog Constants - # +# ------------------------------- # + +SWITCHER_TEXT_MARGIN_X = 4 +SWITCHER_TEXT_MARGIN_Y = 1 diff --git a/agw/aui/aui_constants.pyc b/agw/aui/aui_constants.pyc new file mode 100644 index 0000000..b2e3f0b Binary files /dev/null and b/agw/aui/aui_constants.pyc differ diff --git a/agw/aui/aui_switcherdialog.py b/agw/aui/aui_switcherdialog.py new file mode 100644 index 0000000..552cb84 --- /dev/null +++ b/agw/aui/aui_switcherdialog.py @@ -0,0 +1,1216 @@ +""" +Description +=========== + +The idea of `SwitcherDialog` is to make it easier to implement keyboard +navigation in AUI and other applications that have multiple panes and +tabs. + +A key combination with a modifier (such as ``Ctrl`` + ``Tab``) shows the +dialog, and the user holds down the modifier whilst navigating with +``Tab`` and arrow keys before releasing the modifier to dismiss the dialog +and activate the selected pane. + +The switcher dialog is a multi-column menu with no scrolling, implemented +by the `MultiColumnListCtrl` class. You can have headings for your items +for logical grouping, and you can force a column break if you need to. + +The modifier used for invoking and dismissing the dialog can be customised, +as can the colours, number of rows, and the key used for cycling through +the items. So you can use different keys on different platforms if +required (especially since ``Ctrl`` + ``Tab`` is reserved on some platforms). + +Items are shown as names and optional 16x16 images. + + +Base Functionalities +==================== + +To use the dialog, you set up the items in a `SwitcherItems` object, +before passing this to the `SwitcherDialog` instance. + +Call L{SwitcherItems.AddItem} and optionally L{SwitcherItems.AddGroup} to add items and headings. These +functions take a label (to be displayed to the user), an identifying name, +an integer id, and a bitmap. The name and id are purely for application-defined +identification. You may also set a description to be displayed when each +item is selected; and you can set a window pointer for convenience when +activating the desired window after the dialog returns. + +Have created the dialog, you call `ShowModal()`, and if the return value is +``wx.ID_OK``, retrieve the selection from the dialog and activate the pane. + +The sample code below shows a generic method of finding panes and notebook +tabs within the current L{AuiManager}, and using the pane name or notebook +tab position to display the pane. + +The only other code to add is a menu item with the desired accelerator, +whose modifier matches the one you pass to L{SwitcherDialog.SetModifierKey} +(the default being ``wx.WXK_CONTROL``). + + +Usage +===== + +Menu item:: + + if wx.Platform == "__WXMAC__": + switcherAccel = "Alt+Tab" + elif wx.Platform == "__WXGTK__": + switcherAccel = "Ctrl+/" + else: + switcherAccel = "Ctrl+Tab" + + view_menu.Append(ID_SwitchPane, _("S&witch Window...") + "\t" + switcherAccel) + + +Event handler:: + + def OnSwitchPane(self, event): + + items = SwitcherItems() + items.SetRowCount(12) + + # Add the main windows and toolbars, in two separate columns + # We'll use the item 'id' to store the notebook selection, or -1 if not a page + + for k in xrange(2): + if k == 0: + items.AddGroup(_("Main Windows"), "mainwindows") + else: + items.AddGroup(_("Toolbars"), "toolbars").BreakColumn() + + for pane in self._mgr.GetAllPanes(): + name = pane.name + caption = pane.caption + + toolbar = isinstance(info.window, wx.ToolBar) or isinstance(info.window, aui.AuiToolBar) + if caption and (toolBar and k == 1) or (not toolBar and k == 0): + items.AddItem(caption, name, -1).SetWindow(pane.window) + + # Now add the wxAuiNotebook pages + + items.AddGroup(_("Notebook Pages"), "pages").BreakColumn() + + for pane in self._mgr.GetAllPanes(): + nb = pane.window + if isinstance(nb, aui.AuiNotebook): + for j in xrange(nb.GetPageCount()): + + name = nb.GetPageText(j) + win = nb.GetPage(j) + + items.AddItem(name, name, j, nb.GetPageBitmap(j)).SetWindow(win) + + # Select the focused window + + idx = items.GetIndexForFocus() + if idx != wx.NOT_FOUND: + items.SetSelection(idx) + + if wx.Platform == "__WXMAC__": + items.SetBackgroundColour(wx.WHITE) + + # Show the switcher dialog + + dlg = SwitcherDialog(items, wx.GetApp().GetTopWindow()) + + # In GTK+ we can't use Ctrl+Tab; we use Ctrl+/ instead and tell the switcher + # to treat / in the same was as tab (i.e. cycle through the names) + + if wx.Platform == "__WXGTK__": + dlg.SetExtraNavigationKey(wxT('/')) + + if wx.Platform == "__WXMAC__": + dlg.SetBackgroundColour(wx.WHITE) + dlg.SetModifierKey(wx.WXK_ALT) + + ans = dlg.ShowModal() + + if ans == wx.ID_OK and dlg.GetSelection() != -1: + item = items.GetItem(dlg.GetSelection()) + + if item.GetId() == -1: + info = self._mgr.GetPane(item.GetName()) + info.Show() + self._mgr.Update() + info.window.SetFocus() + + else: + nb = item.GetWindow().GetParent() + win = item.GetWindow(); + if isinstance(nb, aui.AuiNotebook): + nb.SetSelection(item.GetId()) + win.SetFocus() + + +""" + +import wx + +import auibook +from aui_utilities import FindFocusDescendant +from aui_constants import SWITCHER_TEXT_MARGIN_X, SWITCHER_TEXT_MARGIN_Y + + +# Define a translation function +_ = wx.GetTranslation + + +class SwitcherItem(object): + """ An object containing information about one item. """ + + def __init__(self, item=None): + """ Default class constructor. """ + + self._id = 0 + self._isGroup = False + self._breakColumn = False + self._rowPos = 0 + self._colPos = 0 + self._window = None + self._description = "" + + self._textColour = wx.NullColour + self._bitmap = wx.NullBitmap + self._font = wx.NullFont + + if item: + self.Copy(item) + + + def Copy(self, item): + """ + Copy operator between 2 L{SwitcherItem} instances. + + :param `item`: another instance of L{SwitcherItem}. + """ + + self._id = item._id + self._name = item._name + self._title = item._title + self._isGroup = item._isGroup + self._breakColumn = item._breakColumn + self._rect = item._rect + self._font = item._font + self._textColour = item._textColour + self._bitmap = item._bitmap + self._description = item._description + self._rowPos = item._rowPos + self._colPos = item._colPos + self._window = item._window + + + def SetTitle(self, title): + + self._title = title + return self + + + def GetTitle(self): + + return self._title + + + def SetName(self, name): + + self._name = name + return self + + + def GetName(self): + + return self._name + + + def SetDescription(self, descr): + + self._description = descr + return self + + + def GetDescription(self): + + return self._description + + + def SetId(self, id): + + self._id = id + return self + + + def GetId(self): + + return self._id + + + def SetIsGroup(self, isGroup): + + self._isGroup = isGroup + return self + + + def GetIsGroup(self): + + return self._isGroup + + + def BreakColumn(self, breakCol=True): + + self._breakColumn = breakCol + return self + + + def GetBreakColumn(self): + + return self._breakColumn + + + def SetRect(self, rect): + + self._rect = rect + return self + + + def GetRect(self): + + return self._rect + + + def SetTextColour(self, colour): + + self._textColour = colour + return self + + + def GetTextColour(self): + + return self._textColour + + + def SetFont(self, font): + + self._font = font + return self + + + def GetFont(self): + + return self._font + + + def SetBitmap(self, bitmap): + + self._bitmap = bitmap + return self + + + def GetBitmap(self): + + return self._bitmap + + + def SetRowPos(self, pos): + + self._rowPos = pos + return self + + + def GetRowPos(self): + + return self._rowPos + + + def SetColPos(self, pos): + + self._colPos = pos + return self + + + def GetColPos(self): + + return self._colPos + + + def SetWindow(self, win): + + self._window = win + return self + + + def GetWindow(self): + + return self._window + + +class SwitcherItems(object): + """ An object containing switcher items. """ + + def __init__(self, items=None): + """ Default class constructor. """ + + self._selection = -1 + self._rowCount = 10 + self._columnCount = 0 + + self._backgroundColour = wx.NullColour + self._textColour = wx.NullColour + self._selectionColour = wx.NullColour + self._selectionOutlineColour = wx.NullColour + self._itemFont = wx.NullFont + + self._items = [] + + if wx.Platform == "__WXMSW__": + # If on Windows XP/Vista, use more appropriate colours + self.SetSelectionOutlineColour(wx.Colour(49, 106, 197)) + self.SetSelectionColour(wx.Colour(193, 210, 238)) + + if items: + self.Copy(items) + + + def Copy(self, items): + """ + Copy operator between 2 L{SwitcherItems}. + + :param `items`: another instance of L{SwitcherItems}. + """ + + self.Clear() + + for item in items._items: + self._items.append(item) + + self._selection = items._selection + self._rowCount = items._rowCount + self._columnCount = items._columnCount + + self._backgroundColour = items._backgroundColour + self._textColour = items._textColour + self._selectionColour = items._selectionColour + self._selectionOutlineColour = items._selectionOutlineColour + self._itemFont = items._itemFont + + + def AddItem(self, titleOrItem, name=None, id=0, bitmap=wx.NullBitmap): + + if isinstance(titleOrItem, SwitcherItem): + self._items.append(titleOrItem) + return self._items[-1] + + item = SwitcherItem() + item.SetTitle(titleOrItem) + item.SetName(name) + item.SetId(id) + item.SetBitmap(bitmap) + + self._items.append(item) + return self._items[-1] + + + def AddGroup(self, title, name, id=0, bitmap=wx.NullBitmap): + + item = self.AddItem(title, name, id, bitmap) + item.SetIsGroup(True) + + return item + + + def Clear(self): + + self._items = [] + + + def FindItemByName(self, name): + + for i in xrange(len(self._items)): + if self._items[i].GetName() == name: + return i + + return wx.NOT_FOUND + + + def FindItemById(self, id): + + for i in xrange(len(self._items)): + if self._items[i].GetId() == id: + return i + + return wx.NOT_FOUND + + + def SetSelection(self, sel): + + self._selection = sel + + + def SetSelectionByName(self, name): + + idx = self.FindItemByName(name) + if idx != wx.NOT_FOUND: + self.SetSelection(idx) + + + def GetSelection(self): + + return self._selection + + + def GetItem(self, i): + + return self._items[i] + + + def GetItemCount(self): + + return len(self._items) + + + def SetRowCount(self, rows): + + self._rowCount = rows + + + def GetRowCount(self): + + return self._rowCount + + + def SetColumnCount(self, cols): + + self._columnCount = cols + + + def GetColumnCount(self): + + return self._columnCount + + + def SetBackgroundColour(self, colour): + + self._backgroundColour = colour + + + def GetBackgroundColour(self): + + return self._backgroundColour + + + def SetTextColour(self, colour): + + self._textColour = colour + + + def GetTextColour(self): + + return self._textColour + + + def SetSelectionColour(self, colour): + + self._selectionColour = colour + + + def GetSelectionColour(self): + + return self._selectionColour + + + def SetSelectionOutlineColour(self, colour): + + self._selectionOutlineColour = colour + + + def GetSelectionOutlineColour(self): + + return self._selectionOutlineColour + + + def SetItemFont(self, font): + + self._itemFont = font + + + def GetItemFont(self): + + return self._itemFont + + + def PaintItems(self, dc, win): + + backgroundColour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DFACE) + standardTextColour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_WINDOWTEXT) + selectionColour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_HIGHLIGHT) + selectionOutlineColour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_WINDOWTEXT) + standardFont = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + groupFont = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + groupFont.SetWeight(wx.BOLD) + + if self.GetBackgroundColour().IsOk(): + backgroundColour = self.GetBackgroundColour() + + if self.GetTextColour().IsOk(): + standardTextColour = self.GetTextColour() + + if self.GetSelectionColour().IsOk(): + selectionColour = self.GetSelectionColour() + + if self.GetSelectionOutlineColour().IsOk(): + selectionOutlineColour = self.GetSelectionOutlineColour() + + if self.GetItemFont().IsOk(): + + standardFont = self.GetItemFont() + groupFont = wx.Font(standardFont.GetPointSize(), standardFont.GetFamily(), standardFont.GetStyle(), + wx.BOLD, standardFont.GetUnderlined(), standardFont.GetFaceName()) + + textMarginX = SWITCHER_TEXT_MARGIN_X + + dc.SetLogicalFunction(wx.COPY) + dc.SetBrush(wx.Brush(backgroundColour)) + dc.SetPen(wx.TRANSPARENT_PEN) + dc.DrawRectangleRect(win.GetClientRect()) + dc.SetBackgroundMode(wx.TRANSPARENT) + + for i in xrange(len(self._items)): + item = self._items[i] + if i == self._selection: + dc.SetPen(wx.Pen(selectionOutlineColour)) + dc.SetBrush(wx.Brush(selectionColour)) + dc.DrawRectangleRect(item.GetRect()) + + clippingRect = wx.Rect(*item.GetRect()) + clippingRect.Deflate(1, 1) + + dc.SetClippingRect(clippingRect) + + if item.GetTextColour().IsOk(): + dc.SetTextForeground(item.GetTextColour()) + else: + dc.SetTextForeground(standardTextColour) + + if item.GetFont().IsOk(): + dc.SetFont(item.GetFont()) + else: + if item.GetIsGroup(): + dc.SetFont(groupFont) + else: + dc.SetFont(standardFont) + + w, h = dc.GetTextExtent(item.GetTitle()) + x = item.GetRect().x + + x += textMarginX + + if not item.GetIsGroup(): + if item.GetBitmap().IsOk() and item.GetBitmap().GetWidth() <= 16 \ + and item.GetBitmap().GetHeight() <= 16: + x -= textMarginX + dc.DrawBitmap(item.GetBitmap(), x, item.GetRect().y + \ + (item.GetRect().height - item.GetBitmap().GetHeight())/2, + True) + x += 16 + textMarginX + #x += textMarginX + + y = item.GetRect().y + (item.GetRect().height - h)/2 + dc.DrawText(item.GetTitle(), x, y) + dc.DestroyClippingRegion() + + + def CalculateItemSize(self, dc): + + # Start off allowing for an icon + sz = wx.Size(150, 16) + standardFont = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + groupFont = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + groupFont.SetWeight(wx.BOLD) + + textMarginX = SWITCHER_TEXT_MARGIN_X + textMarginY = SWITCHER_TEXT_MARGIN_Y + maxWidth = 300 + maxHeight = 40 + + if self.GetItemFont().IsOk(): + standardFont = self.GetItemFont() + + for item in self._items: + if item.GetFont().IsOk(): + dc.SetFont(item.GetFont()) + else: + if item.GetIsGroup(): + dc.SetFont(groupFont) + else: + dc.SetFont(standardFont) + + w, h = dc.GetTextExtent(item.GetTitle()) + w += 16 + 2*textMarginX + + if w > sz.x: + sz.x = min(w, maxWidth) + if h > sz.y: + sz.y = min(h, maxHeight) + + if sz == wx.Size(16, 16): + sz = wx.Size(100, 25) + else: + sz.x += textMarginX*2 + sz.y += textMarginY*2 + + return sz + + + def GetIndexForFocus(self): + + for i, item in enumerate(self._items): + if item.GetWindow(): + + if FindFocusDescendant(item.GetWindow()): + return i + + return wx.NOT_FOUND + + +class MultiColumnListCtrl(wx.PyControl): + """ A control for displaying several columns (not scrollable). """ + + def __init__(self, parent, aui_manager, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, + style=0, validator=wx.DefaultValidator, name="MultiColumnListCtrl"): + + wx.PyControl.__init__(self, parent, id, pos, size, style, validator, name) + + self._overallSize = wx.Size(200, 100) + self._modifierKey = wx.WXK_CONTROL + self._extraNavigationKey = 0 + self._aui_manager = aui_manager + + self.SetInitialSize(size) + self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM) + + self.Bind(wx.EVT_PAINT, self.OnPaint) + self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground) + self.Bind(wx.EVT_MOUSE_EVENTS, self.OnMouseEvent) + self.Bind(wx.EVT_CHAR, self.OnChar) + self.Bind(wx.EVT_KEY_DOWN, self.OnKey) + self.Bind(wx.EVT_KEY_UP, self.OnKey) + + + def __del__(self): + + self._aui_manager.HideHint() + + + def DoGetBestSize(self): + + return self._overallSize + + + def OnEraseBackground(self, event): + + pass + + + def OnPaint(self, event): + + dc = wx.AutoBufferedPaintDC(self) + rect = self.GetClientRect() + + if self._items.GetColumnCount() == 0: + self.CalculateLayout(dc) + + if self._items.GetColumnCount() == 0: + return + + self._items.PaintItems(dc, self) + + + def OnMouseEvent(self, event): + + if event.LeftDown(): + self.SetFocus() + + + def OnChar(self, event): + + event.Skip() + + + def OnKey(self, event): + + if event.GetEventType() == wx.wxEVT_KEY_UP: + if event.GetKeyCode() == self.GetModifierKey(): + topLevel = wx.GetTopLevelParent(self) + closeEvent = wx.CloseEvent(wx.wxEVT_CLOSE_WINDOW, topLevel.GetId()) + closeEvent.SetEventObject(topLevel) + closeEvent.SetCanVeto(False) + + topLevel.GetEventHandler().ProcessEvent(closeEvent) + return + + event.Skip() + return + + keyCode = event.GetKeyCode() + + if keyCode in [wx.WXK_ESCAPE, wx.WXK_RETURN]: + if keyCode == wx.WXK_ESCAPE: + self._items.SetSelection(-1) + + topLevel = wx.GetTopLevelParent(self) + closeEvent = wx.CloseEvent(wx.wxEVT_CLOSE_WINDOW, topLevel.GetId()) + closeEvent.SetEventObject(topLevel) + closeEvent.SetCanVeto(False) + + topLevel.GetEventHandler().ProcessEvent(closeEvent) + return + + elif keyCode in [wx.WXK_TAB, self.GetExtraNavigationKey()]: + if event.ShiftDown(): + + self._items.SetSelection(self._items.GetSelection() - 1) + if self._items.GetSelection() < 0: + self._items.SetSelection(self._items.GetItemCount() - 1) + + self.AdvanceToNextSelectableItem(-1) + + else: + + self._items.SetSelection(self._items.GetSelection() + 1) + if self._items.GetSelection() >= self._items.GetItemCount(): + self._items.SetSelection(0) + + self.AdvanceToNextSelectableItem(1) + + self.GenerateSelectionEvent() + self.Refresh() + + elif keyCode in [wx.WXK_DOWN, wx.WXK_NUMPAD_DOWN]: + self._items.SetSelection(self._items.GetSelection() + 1) + if self._items.GetSelection() >= self._items.GetItemCount(): + self._items.SetSelection(0) + + self.AdvanceToNextSelectableItem(1) + self.GenerateSelectionEvent() + self.Refresh() + + elif keyCode in [wx.WXK_UP, wx.WXK_NUMPAD_UP]: + self._items.SetSelection(self._items.GetSelection() - 1) + if self._items.GetSelection() < 0: + self._items.SetSelection(self._items.GetItemCount() - 1) + + self.AdvanceToNextSelectableItem(-1) + self.GenerateSelectionEvent() + self.Refresh() + + elif keyCode in [wx.WXK_HOME, wx.WXK_NUMPAD_HOME]: + self._items.SetSelection(0) + self.AdvanceToNextSelectableItem(1) + self.GenerateSelectionEvent() + self.Refresh() + + elif keyCode in [wx.WXK_END, wx.WXK_NUMPAD_END]: + self._items.SetSelection(self._items.GetItemCount() - 1) + self.AdvanceToNextSelectableItem(-1) + self.GenerateSelectionEvent() + self.Refresh() + + elif keyCode in [wx.WXK_LEFT, wx.WXK_NUMPAD_LEFT]: + item = self._items.GetItem(self._items.GetSelection()) + + row = item.GetRowPos() + newCol = item.GetColPos() - 1 + if newCol < 0: + newCol = self._items.GetColumnCount() - 1 + + # Find the first item from the end whose row matches and whose column is equal or lower + for i in xrange(self._items.GetItemCount()-1, -1, -1): + item2 = self._items.GetItem(i) + if item2.GetColPos() == newCol and item2.GetRowPos() <= row: + self._items.SetSelection(i) + break + + self.AdvanceToNextSelectableItem(-1) + self.GenerateSelectionEvent() + self.Refresh() + + elif keyCode in [wx.WXK_RIGHT, wx.WXK_NUMPAD_RIGHT]: + item = self._items.GetItem(self._items.GetSelection()) + + row = item.GetRowPos() + newCol = item.GetColPos() + 1 + if newCol >= self._items.GetColumnCount(): + newCol = 0 + + # Find the first item from the end whose row matches and whose column is equal or lower + for i in xrange(self._items.GetItemCount()-1, -1, -1): + item2 = self._items.GetItem(i) + if item2.GetColPos() == newCol and item2.GetRowPos() <= row: + self._items.SetSelection(i) + break + + self.AdvanceToNextSelectableItem(1) + self.GenerateSelectionEvent() + self.Refresh() + + else: + event.Skip() + + + def AdvanceToNextSelectableItem(self, direction): + + if self._items.GetItemCount() < 2: + return + + if self._items.GetSelection() == -1: + self._items.SetSelection(0) + + oldSel = self._items.GetSelection() + + while 1: + + if self._items.GetItem(self._items.GetSelection()).GetIsGroup(): + + self._items.SetSelection(self._items.GetSelection() + direction) + if self._items.GetSelection() == -1: + self._items.SetSelection(self._items.GetItemCount()-1) + elif self._items.GetSelection() == self._items.GetItemCount(): + self._items.SetSelection(0) + if self._items.GetSelection() == oldSel: + break + + else: + break + + self.SetTransparency() + selection = self._items.GetItem(self._items.GetSelection()).GetWindow() + pane = self._aui_manager.GetPane(selection) + + if not pane.IsOk(): + if isinstance(selection.GetParent(), auibook.AuiNotebook): + self.SetTransparency(selection) + self._aui_manager.ShowHint(selection.GetScreenRect()) + wx.CallAfter(self.SetFocus) + self.SetFocus() + return + else: + self._aui_manager.HideHint() + return + if not pane.IsShown(): + self._aui_manager.HideHint() + return + + self.SetTransparency(selection) + self._aui_manager.ShowHint(selection.GetScreenRect()) + # NOTE: this is odd but it is the only way for the focus to + # work correctly on wxMac... + wx.CallAfter(self.SetFocus) + self.SetFocus() + + + def SetTransparency(self, selection=None): + + if not self.GetParent().CanSetTransparent(): + return + + if selection is not None: + intersects = False + if selection.GetScreenRect().Intersects(self.GetParent().GetScreenRect()): + intersects = True + self.GetParent().SetTransparent(200) + return + + self.GetParent().SetTransparent(255) + + + def GenerateSelectionEvent(self): + + event = wx.CommandEvent(wx.wxEVT_COMMAND_LISTBOX_SELECTED, self.GetId()) + event.SetEventObject(self) + event.SetInt(self._items.GetSelection()) + self.GetEventHandler().ProcessEvent(event) + + + def CalculateLayout(self, dc=None): + + if dc is None: + dc = wx.ClientDC(self) + + if self._items.GetSelection() == -1: + self._items.SetSelection(0) + + columnCount = 1 + + # Spacing between edge of window or between columns + xMargin = 4 + yMargin = 4 + + # Inter-row spacing + rowSpacing = 2 + + itemSize = self._items.CalculateItemSize(dc) + self._overallSize = wx.Size(350, 200) + + currentRow = 0 + x = xMargin + y = yMargin + + breaking = False + i = 0 + + while 1: + + oldOverallSize = self._overallSize + item = self._items.GetItem(i) + + item.SetRect(wx.Rect(x, y, itemSize.x, itemSize.y)) + item.SetColPos(columnCount-1) + item.SetRowPos(currentRow) + + if item.GetRect().GetBottom() > self._overallSize.y: + self._overallSize.y = item.GetRect().GetBottom() + yMargin + + if item.GetRect().GetRight() > self._overallSize.x: + self._overallSize.x = item.GetRect().GetRight() + xMargin + + currentRow += 1 + + y += rowSpacing + itemSize.y + stopBreaking = breaking + + if currentRow > self._items.GetRowCount() or (item.GetBreakColumn() and not breaking and currentRow != 1): + currentRow = 0 + columnCount += 1 + x += xMargin + itemSize.x + y = yMargin + + # Make sure we don't orphan a group + if item.GetIsGroup() or (item.GetBreakColumn() and not breaking): + self._overallSize = oldOverallSize + + if item.GetBreakColumn(): + breaking = True + + # Repeat the last item, in the next column + i -= 1 + + if stopBreaking: + breaking = False + + i += 1 + + if i >= self._items.GetItemCount(): + break + + self._items.SetColumnCount(columnCount) + self.InvalidateBestSize() + + + def SetItems(self, items): + + self._items = items + + + def GetItems(self): + + return self._items + + + def SetExtraNavigationKey(self, keyCode): + """ + Set an extra key that can be used to cycle through items, + in case not using the ``Ctrl`` + ``Tab`` combination. + """ + + self._extraNavigationKey = keyCode + + + def GetExtraNavigationKey(self): + + return self._extraNavigationKey + + + def SetModifierKey(self, modifierKey): + """ + Set the modifier used to invoke the dialog, and therefore to test for + release. + """ + + self._modifierKey = modifierKey + + + def GetModifierKey(self): + + return self._modifierKey + + + +class SwitcherDialog(wx.Dialog): + """ + SwitcherDialog shows a L{MultiColumnListCtrl} with a list of panes + and tabs for the user to choose. ``Ctrl`` + ``Tab`` cycles through them. + """ + + def __init__(self, items, parent, aui_manager, id=wx.ID_ANY, title=_("Pane Switcher"), pos=wx.DefaultPosition, + size=wx.DefaultSize, style=wx.STAY_ON_TOP|wx.DIALOG_NO_PARENT|wx.BORDER_SIMPLE): + """ Default class constructor. """ + + self._switcherBorderStyle = (style & wx.BORDER_MASK) + if self._switcherBorderStyle == wx.BORDER_NONE: + self._switcherBorderStyle = wx.BORDER_SIMPLE + + style &= wx.BORDER_MASK + style |= wx.BORDER_NONE + + wx.Dialog.__init__(self, parent, id, title, pos, size, style) + + self._listCtrl = MultiColumnListCtrl(self, aui_manager, + style=wx.WANTS_CHARS|wx.NO_BORDER) + self._listCtrl.SetItems(items) + self._listCtrl.CalculateLayout() + + self._descriptionCtrl = wx.html.HtmlWindow(self, size=(-1, 100), style=wx.BORDER_NONE) + self._descriptionCtrl.SetBackgroundColour(self.GetBackgroundColour()) + + if wx.Platform == "__WXGTK__": + fontSize = 11 + self._descriptionCtrl.SetStandardFonts(fontSize) + + sizer = wx.BoxSizer(wx.VERTICAL) + self.SetSizer(sizer) + sizer.Add(self._listCtrl, 1, wx.ALL|wx.EXPAND, 10) + sizer.Add(self._descriptionCtrl, 0, wx.ALL|wx.EXPAND, 10) + sizer.SetSizeHints(self) + + self._listCtrl.SetFocus() + + self.Centre(wx.BOTH) + + if self._listCtrl.GetItems().GetSelection() == -1: + self._listCtrl.GetItems().SetSelection(0) + + self._listCtrl.AdvanceToNextSelectableItem(1) + + self.ShowDescription(self._listCtrl.GetItems().GetSelection()) + + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + self.Bind(wx.EVT_ACTIVATE, self.OnActivate) + self.Bind(wx.EVT_LISTBOX, self.OnSelectItem) + self.Bind(wx.EVT_PAINT, self.OnPaint) + + # Attributes + self._closing = False + if wx.Platform == "__WXMSW__": + self._borderColour = wx.Colour(49, 106, 197) + else: + self._borderColour = wx.BLACK + + self._aui_manager = aui_manager + + + def OnCloseWindow(self, event): + + if self._closing: + return + + if self.IsModal(): + self._closing = True + + if self.GetSelection() == -1: + self.EndModal(wx.ID_CANCEL) + else: + self.EndModal(wx.ID_OK) + + self._aui_manager.HideHint() + + + def GetSelection(self): + + return self._listCtrl.GetItems().GetSelection() + + + def OnActivate(self, event): + + if not event.GetActive(): + if not self._closing: + self._closing = True + self.EndModal(wx.ID_CANCEL) + + + def OnPaint(self, event): + + dc = wx.PaintDC(self) + + if self._switcherBorderStyle == wx.BORDER_SIMPLE: + + dc.SetPen(wx.Pen(self._borderColour)) + dc.SetBrush(wx.TRANSPARENT_BRUSH) + + rect = self.GetClientRect() + dc.DrawRectangleRect(rect) + + # Draw border around the HTML control + rect = wx.Rect(*self._descriptionCtrl.GetRect()) + rect.Inflate(1, 1) + dc.DrawRectangleRect(rect) + + + def OnSelectItem(self, event): + + self.ShowDescription(event.GetSelection()) + + +# Convert a colour to a 6-digit hex string + def ColourToHexString(self, col): + + hx = '%02x%02x%02x' % tuple([int(c) for c in col]) + return hx + + + def ShowDescription(self, i): + + item = self._listCtrl.GetItems().GetItem(i) + colour = self._listCtrl.GetItems().GetBackgroundColour() + + if not colour.IsOk(): + colour = self.GetBackgroundColour() + + backgroundColourHex = self.ColourToHexString(colour) + html = _("") + item.GetTitle() + _("") + + if item.GetDescription(): + html += _("

    ") + html += item.GetDescription() + + html += _("") + self._descriptionCtrl.SetPage(html) + + + def SetExtraNavigationKey(self, keyCode): + + self._extraNavigationKey = keyCode + if self._listCtrl: + self._listCtrl.SetExtraNavigationKey(keyCode) + + + def GetExtraNavigationKey(self): + + return self._extraNavigationKey + + + def SetModifierKey(self, modifierKey): + + self._modifierKey = modifierKey + if self._listCtrl: + self._listCtrl.SetModifierKey(modifierKey) + + + def GetModifierKey(self): + + return self._modifierKey + + + def SetBorderColour(self, colour): + + self._borderColour = colour + + \ No newline at end of file diff --git a/agw/aui/aui_utilities.py b/agw/aui/aui_utilities.py new file mode 100644 index 0000000..d6c701a --- /dev/null +++ b/agw/aui/aui_utilities.py @@ -0,0 +1,678 @@ +""" +This module contains some common functions used by wxPython-AUI to +manipulate colours, bitmaps, text, gradient shadings and custom +dragging images for AuiNotebook tabs. +""" + +__author__ = "Andrea Gavana " +__date__ = "31 March 2009" + + +import wx + +from aui_constants import * + + +if wx.Platform == "__WXMAC__": + import Carbon.Appearance + + +def BlendColour(fg, bg, alpha): + """ + Blends the two colour component `fg` and `bg` into one colour component, adding + an optional alpha channel. + + :param `fg`: the first colour component; + :param `bg`: the second colour component; + :param `alpha`: an optional transparency value. + """ + + result = bg + (alpha*(fg - bg)) + + if result < 0.0: + result = 0.0 + if result > 255: + result = 255 + + return result + + +def StepColour(c, ialpha): + """ + Darken/lighten the input colour `c`. + + :param `c`: a colour to darken/lighten; + :param `ialpha`: a transparency value. + """ + + if ialpha == 100: + return c + + r, g, b = c.Red(), c.Green(), c.Blue() + + # ialpha is 0..200 where 0 is completely black + # and 200 is completely white and 100 is the same + # convert that to normal alpha 0.0 - 1.0 + ialpha = min(ialpha, 200) + ialpha = max(ialpha, 0) + alpha = (ialpha - 100.0)/100.0 + + if ialpha > 100: + + # blend with white + bg = 255 + alpha = 1.0 - alpha # 0 = transparent fg 1 = opaque fg + + else: + + # blend with black + bg = 0 + alpha = 1.0 + alpha # 0 = transparent fg 1 = opaque fg + + r = BlendColour(r, bg, alpha) + g = BlendColour(g, bg, alpha) + b = BlendColour(b, bg, alpha) + + return wx.Colour(r, g, b) + + +def LightContrastColour(c): + """ + Creates a new, lighter colour based on the input colour `c`. + + :param `c`: the input colour to analyze. + """ + + amount = 120 + + # if the colour is especially dark, then + # make the contrast even lighter + if c.Red() < 128 and c.Green() < 128 and c.Blue() < 128: + amount = 160 + + return StepColour(c, amount) + + +def ChopText(dc, text, max_size): + """ + Chops the input `text` if its size does not fit in `max_size`, by cutting the + text and adding ellipsis at the end. + + :param `dc`: a `wx.DC` device context; + :param `text`: the text to chop; + :param `max_size`: the maximum size in which the text should fit. + """ + + # first check if the text fits with no problems + x, y, dummy = dc.GetMultiLineTextExtent(text) + + if x <= max_size: + return text + + textLen = len(text) + last_good_length = 0 + + for i in xrange(textLen, -1, -1): + s = text[0:i] + s += "..." + + x, y = dc.GetTextExtent(s) + last_good_length = i + + if x < max_size: + break + + ret = text[0:last_good_length] + "..." + return ret + + +def BitmapFromBits(bits, w, h, colour): + """ + BitmapFromBits() is a utility function that creates a + masked bitmap from raw bits (XBM format). + + :param `bits`: a string containing the raw bits of the bitmap; + :param `w`: the bitmap width; + :param `h`: the bitmap height; + :param `colour`: the colour which will replace all white pixels in the + raw bitmap. + """ + + img = wx.BitmapFromBits(bits, w, h).ConvertToImage() + img.Replace(0, 0, 0, 123, 123, 123) + img.Replace(255, 255, 255, colour.Red(), colour.Green(), colour.Blue()) + img.SetMaskColour(123, 123, 123) + return wx.BitmapFromImage(img) + + +def IndentPressedBitmap(rect, button_state): + """ + Indents the input rectangle `rect` based on the value of `button_state`. + + :param `rect`: an instance of wx.Rect; + :param `button_state`: an L{AuiNotebook} button state. + """ + + if button_state == AUI_BUTTON_STATE_PRESSED: + rect.x += 1 + rect.y += 1 + + return rect + + +def GetBaseColour(): + """ + Returns the face shading colour on push buttons/backgrounds, mimicking as closely + as possible the platform UI colours. + """ + + if wx.Platform == "__WXMAC__": + + if hasattr(wx, 'MacThemeColour'): + base_colour = wx.MacThemeColour(Carbon.Appearance.kThemeBrushToolbarBackground) + else: + brush = wx.Brush(wx.BLACK) + brush.MacSetTheme(Carbon.Appearance.kThemeBrushToolbarBackground) + base_colour = brush.GetColour() + + else: + + base_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DFACE) + + # the base_colour is too pale to use as our base colour, + # so darken it a bit + if ((255-base_colour.Red()) + + (255-base_colour.Green()) + + (255-base_colour.Blue()) < 60): + + base_colour = StepColour(base_colour, 92) + + return base_colour + + +def MakeDisabledBitmap(bitmap): + """ + Convert the given image (in place) to a grayed-out version, + appropriate for a 'disabled' appearance. + + :param `bitmap`: the bitmap to gray-out. + """ + + anImage = bitmap.ConvertToImage() + factor = 0.7 # 0 < f < 1. Higher Is Grayer + + if anImage.HasMask(): + maskColour = (anImage.GetMaskRed(), anImage.GetMaskGreen(), anImage.GetMaskBlue()) + else: + maskColour = None + + data = map(ord, list(anImage.GetData())) + + for i in range(0, len(data), 3): + + pixel = (data[i], data[i+1], data[i+2]) + pixel = MakeGray(pixel, factor, maskColour) + + for x in range(3): + data[i+x] = pixel[x] + + anImage.SetData(''.join(map(chr, data))) + + return anImage.ConvertToBitmap() + + +def MakeGray(rgbTuple, factor, maskColour): + """ + Make a pixel grayed-out. If the pixel matches the `maskColour`, it won't be + changed. + + :param `rgbTuple`: a tuple representing a pixel colour; + :param `factor`: a graying-out factor; + :param `maskColour`: a colour mask. + """ + + if rgbTuple != maskColour: + r, g, b = rgbTuple + return map(lambda x: int((230 - x) * factor) + x, (r, g, b)) + else: + return rgbTuple + + +def Clip(a, b, c): + """ + Clips the value in `a` based on the extremes `b` and `c`. + + :param `a`: the value to analyze; + :param `b`: a minimum value; + :param `c`: a maximum value. + """ + + return ((a < b and [b]) or [(a > c and [c] or [a])[0]])[0] + + +def LightColour(colour, percent): + """ + Brighten input `colour` by `percent`. + + :param `colour`: the colour to be brightened; + :param `percent`: brightening percentage. + """ + + end_colour = wx.WHITE + + rd = end_colour.Red() - colour.Red() + gd = end_colour.Green() - colour.Green() + bd = end_colour.Blue() - colour.Blue() + + high = 100 + + # We take the percent way of the colour from colour -. white + i = percent + r = colour.Red() + ((i*rd*100)/high)/100 + g = colour.Green() + ((i*gd*100)/high)/100 + b = colour.Blue() + ((i*bd*100)/high)/100 + return wx.Colour(r, g, b) + + +def PaneCreateStippleBitmap(): + """ + Creates a stipple bitmap to be used in a `wx.Brush`. + This is used to draw sash resize hints. + """ + + data = [0, 0, 0, 192, 192, 192, 192, 192, 192, 0, 0, 0] + img = wx.EmptyImage(2, 2) + counter = 0 + + for ii in xrange(2): + for jj in xrange(2): + img.SetRGB(ii, jj, data[counter], data[counter+1], data[counter+2]) + counter = counter + 3 + + return img.ConvertToBitmap() + + +def DrawMACCloseButton(colour, backColour=None): + """ + Draws the wxMAC tab close button using `wx.GraphicsContext`. + + :param `colour`: the colour to use to draw the circle; + :param `backColour`: the optional background colour for the circle. + """ + + bmp = wx.EmptyBitmapRGBA(16, 16) + dc = wx.MemoryDC() + dc.SelectObject(bmp) + + gc = wx.GraphicsContext.Create(dc) + gc.SetBrush(wx.Brush(colour)) + path = gc.CreatePath() + path.AddCircle(6.5, 7, 6.5) + path.CloseSubpath() + gc.FillPath(path) + + path = gc.CreatePath() + if backColour is not None: + pen = wx.Pen(backColour, 2) + else: + pen = wx.Pen("white", 2) + + pen.SetCap(wx.CAP_BUTT) + pen.SetJoin(wx.JOIN_BEVEL) + gc.SetPen(pen) + path.MoveToPoint(3.5, 4) + path.AddLineToPoint(9.5, 10) + path.MoveToPoint(3.5, 10) + path.AddLineToPoint(9.5, 4) + path.CloseSubpath() + gc.DrawPath(path) + + dc.SelectObject(wx.NullBitmap) + return bmp + + +def DarkenBitmap(bmp, caption_colour, new_colour): + """ + Darkens the input bitmap on wxMAC using the input colour. + + :param `bmp`: the bitmap to be manipulated; + :param `caption_colour`: the colour of the pane caption; + :param `new_colour`: the colour used to darken the bitmap. + """ + + image = bmp.ConvertToImage() + red = caption_colour.Red()/float(new_colour.Red()) + green = caption_colour.Green()/float(new_colour.Green()) + blue = caption_colour.Blue()/float(new_colour.Blue()) + image = image.AdjustChannels(red, green, blue) + return image.ConvertToBitmap() + + +def DrawGradientRectangle(dc, rect, start_colour, end_colour, direction, offset=0, length=0): + """ + Draws a gradient-shaded rectangle. + + :param `dc`: a `wx.DC` device context; + :param `rect`: the rectangle in which to draw the gradient; + :param `start_colour`: the first colour of the gradient; + :param `end_colour`: the second colour of the gradient; + :param `direction`: the gradient direction (horizontal or vertical). + """ + + if direction == AUI_GRADIENT_VERTICAL: + dc.GradientFillLinear(rect, start_colour, end_colour, wx.SOUTH) + else: + dc.GradientFillLinear(rect, start_colour, end_colour, wx.EAST) + + +def FindFocusDescendant(ancestor): + """ + Find a window with the focus, that is also a descendant of the given window. + This is used to determine the window to initially send commands to. + + :param `ancestor`: the window to check for ancestry. + """ + + # Process events starting with the window with the focus, if any. + focusWin = wx.Window.FindFocus() + win = focusWin + + # Check if this is a descendant of this frame. + # If not, win will be set to NULL. + while win: + if win == ancestor: + break + else: + win = win.GetParent() + + if win is None: + focusWin = None + + return focusWin + + +def GetLabelSize(dc, label, vertical): + """ + Returns the L{AuiToolBar} item label size. + + :param `label`: the toolbar tool label; + :param `vertical`: whether the toolbar tool orientation is vertical or not. + """ + + text_width = text_height = 0 + + # get the text height + dummy, text_height = dc.GetTextExtent("ABCDHgj") + # get the text width + if label.strip(): + text_width, dummy = dc.GetTextExtent(label) + + if vertical: + tmp = text_height + text_height = text_width + text_width = tmp + + return wx.Size(text_width, text_height) + + +#--------------------------------------------------------------------------- +# TabDragImage implementation +# This class handles the creation of a custom image when dragging +# AuiNotebook tabs +#--------------------------------------------------------------------------- + +class TabDragImage(wx.DragImage): + """ + This class handles the creation of a custom image in case of drag and + drop of a notebook tab. + """ + + def __init__(self, notebook, page, button_state, tabArt): + """ + Default class constructor. + + For internal use: do not call it in your code! + + :param `notebook`: an instance of L{AuiNotebook}; + :param `page`: the dragged L{AuiNotebook} page; + :param `button_state`: the state of the close button on the tab; + :param `tabArt`: an instance of L{AuiDefaultTabArt} or one of its derivations. + """ + + self._backgroundColour = wx.NamedColour("pink") + self._bitmap = self.CreateBitmap(notebook, page, button_state, tabArt) + wx.DragImage.__init__(self, self._bitmap) + + + def CreateBitmap(self, notebook, page, button_state, tabArt): + """ + Actually creates the drag and drop bitmap. + + :param `notebook`: an instance of L{AuiNotebook}; + :param `page`: the dragged L{AuiNotebook} page; + :param `button_state`: the state of the close button on the tab; + :param `tabArt`: an instance of L{AuiDefaultTabArt} or one of its derivations. + """ + + control = page.control + memory = wx.MemoryDC(wx.EmptyBitmap(1, 1)) + + tab_size, x_extent = tabArt.GetTabSize(memory, notebook, page.caption, page.bitmap, page.active, + button_state, control) + + tab_width, tab_height = tab_size + rect = wx.Rect(0, 0, tab_width, tab_height) + + bitmap = wx.EmptyBitmap(tab_width+1, tab_height+1) + memory.SelectObject(bitmap) + + if wx.Platform == "__WXMAC__": + memory.SetBackground(wx.TRANSPARENT_BRUSH) + else: + memory.SetBackground(wx.Brush(self._backgroundColour)) + + memory.SetBackgroundMode(wx.TRANSPARENT) + memory.Clear() + + paint_control = wx.Platform != "__WXMAC__" + tabArt.DrawTab(memory, notebook, page, rect, button_state, paint_control=paint_control) + + memory.SetBrush(wx.TRANSPARENT_BRUSH) + memory.SetPen(wx.BLACK_PEN) + memory.DrawRoundedRectangle(0, 0, tab_width+1, tab_height+1, 2) + + memory.SelectObject(wx.NullBitmap) + + # Gtk and Windows unfortunatly don't do so well with transparent + # drawing so this hack corrects the image to have a transparent + # background. + if wx.Platform != '__WXMAC__': + timg = bitmap.ConvertToImage() + if not timg.HasAlpha(): + timg.InitAlpha() + for y in xrange(timg.GetHeight()): + for x in xrange(timg.GetWidth()): + pix = wx.Colour(timg.GetRed(x, y), + timg.GetGreen(x, y), + timg.GetBlue(x, y)) + if pix == self._backgroundColour: + timg.SetAlpha(x, y, 0) + bitmap = timg.ConvertToBitmap() + return bitmap + + +def GetDockingImage(direction, useAero, center): + """ + Returns the correct name of the docking bitmap depending on the input parameters. + + :param `useAero`: whether L{AuiManager} is using Aero-style or Whidbey-style docking + images or not; + :param `center`: whether we are looking for the center diamond-shaped bitmap or not. + """ + + suffix = (center and [""] or ["_single"])[0] + prefix = "" + if useAero == 2: + # Whidbey docking guides + prefix = "whidbey_" + elif useAero == 1: + # Aero docking style + prefix = "aero_" + + if direction == wx.TOP: + bmp_unfocus = eval("%sup%s"%(prefix, suffix)).GetBitmap() + bmp_focus = eval("%sup_focus%s"%(prefix, suffix)).GetBitmap() + elif direction == wx.BOTTOM: + bmp_unfocus = eval("%sdown%s"%(prefix, suffix)).GetBitmap() + bmp_focus = eval("%sdown_focus%s"%(prefix, suffix)).GetBitmap() + elif direction == wx.LEFT: + bmp_unfocus = eval("%sleft%s"%(prefix, suffix)).GetBitmap() + bmp_focus = eval("%sleft_focus%s"%(prefix, suffix)).GetBitmap() + elif direction == wx.RIGHT: + bmp_unfocus = eval("%sright%s"%(prefix, suffix)).GetBitmap() + bmp_focus = eval("%sright_focus%s"%(prefix, suffix)).GetBitmap() + else: + bmp_unfocus = eval("%stab%s"%(prefix, suffix)).GetBitmap() + bmp_focus = eval("%stab_focus%s"%(prefix, suffix)).GetBitmap() + + return bmp_unfocus, bmp_focus + + +def TakeScreenShot(rect): + """ + Takes a screenshot of the screen at given position and size (rect). + + :param `rect`: the screen rectangle for which we want to take a screenshot. + """ + + # Create a DC for the whole screen area + dcScreen = wx.ScreenDC() + + # Create a Bitmap that will later on hold the screenshot image + # Note that the Bitmap must have a size big enough to hold the screenshot + # -1 means using the current default colour depth + bmp = wx.EmptyBitmap(rect.width, rect.height) + + # Create a memory DC that will be used for actually taking the screenshot + memDC = wx.MemoryDC() + + # Tell the memory DC to use our Bitmap + # all drawing action on the memory DC will go to the Bitmap now + memDC.SelectObject(bmp) + + # Blit (in this case copy) the actual screen on the memory DC + # and thus the Bitmap + memDC.Blit( 0, # Copy to this X coordinate + 0, # Copy to this Y coordinate + rect.width, # Copy this width + rect.height, # Copy this height + dcScreen, # From where do we copy? + rect.x, # What's the X offset in the original DC? + rect.y # What's the Y offset in the original DC? + ) + + # Select the Bitmap out of the memory DC by selecting a new + # uninitialized Bitmap + memDC.SelectObject(wx.NullBitmap) + + return bmp + + +def RescaleScreenShot(bmp, thumbnail_size=200): + """ + Rescales a bitmap to be 300 pixels wide (or tall) at maximum. + + :param `bmp`: the bitmap to rescale; + :param `thumbnail_size`: the maximum size of every page thumbnail. + """ + + bmpW, bmpH = bmp.GetWidth(), bmp.GetHeight() + img = bmp.ConvertToImage() + + newW, newH = bmpW, bmpH + + if bmpW > bmpH: + if bmpW > thumbnail_size: + ratio = bmpW/float(thumbnail_size) + newW, newH = int(bmpW/ratio), int(bmpH/ratio) + img.Rescale(newW, newH, wx.IMAGE_QUALITY_HIGH) + else: + if bmpH > thumbnail_size: + ratio = bmpH/float(thumbnail_size) + newW, newH = int(bmpW/ratio), int(bmpH/ratio) + img.Rescale(newW, newH, wx.IMAGE_QUALITY_HIGH) + + newBmp = img.ConvertToBitmap() + otherBmp = wx.EmptyBitmap(newW+5, newH+5) + + memDC = wx.MemoryDC() + memDC.SelectObject(otherBmp) + memDC.SetBackground(wx.WHITE_BRUSH) + memDC.Clear() + + memDC.SetPen(wx.TRANSPARENT_PEN) + + pos = 0 + for i in xrange(5, 0, -1): + brush = wx.Brush(wx.Colour(50*i, 50*i, 50*i)) + memDC.SetBrush(brush) + memDC.DrawRoundedRectangle(0, 0, newW+5-pos, newH+5-pos, 2) + pos += 1 + + memDC.DrawBitmap(newBmp, 0, 0, True) + + # Select the Bitmap out of the memory DC by selecting a new + # uninitialized Bitmap + memDC.SelectObject(wx.NullBitmap) + + return otherBmp + + +def GetSlidingPoints(rect, size, direction): + """ + Returns the point at which the sliding in and out of a minimized pane begins. + + :param `rect`: the L{AuiToolBar} tool screen rectangle; + :param `size`: the pane window size; + :param `direction`: the pane docking direction. + """ + + if direction == AUI_DOCK_LEFT: + startX, startY = rect.x + rect.width + 2, rect.y + elif direction == AUI_DOCK_TOP: + startX, startY = rect.x, rect.y + rect.height + 2 + elif direction == AUI_DOCK_RIGHT: + startX, startY = rect.x - size.x - 2, rect.y + elif direction == AUI_DOCK_BOTTOM: + startX, startY = rect.x, rect.y - size.y - 2 + else: + raise Exception("How did we get here?") + + caption_height = wx.SystemSettings.GetMetric(wx.SYS_CAPTION_Y) + frame_border_x = wx.SystemSettings.GetMetric(wx.SYS_FRAMESIZE_X) + frame_border_y = wx.SystemSettings.GetMetric(wx.SYS_FRAMESIZE_Y) + + stopX = size.x + caption_height + frame_border_x + stopY = size.x + frame_border_y + + return startX, startY, stopX, stopY + + +def CopyAttributes(newArt, oldArt): + """ + Copies pens, brushes, colours and fonts from the old tab art to the new one. + + :param `newArt`: the new instance of L{AuiDefaultTabArt}; + :param `oldArt`: the old instance of L{AuiDefaultTabArt}. + """ + + attrs = dir(oldArt) + + for attr in attrs: + if attr.startswith("_") and (attr.endswith("_colour") or attr.endswith("_font") or \ + attr.endswith("_font") or attr.endswith("_brush") or \ + attr.endswith("Pen") or attr.endswith("_pen")): + setattr(newArt, attr, getattr(oldArt, attr)) + + return newArt + diff --git a/agw/aui/aui_utilities.pyc b/agw/aui/aui_utilities.pyc new file mode 100644 index 0000000..9d9b75f Binary files /dev/null and b/agw/aui/aui_utilities.pyc differ diff --git a/agw/aui/auibar.py b/agw/aui/auibar.py new file mode 100644 index 0000000..4d348b7 --- /dev/null +++ b/agw/aui/auibar.py @@ -0,0 +1,3926 @@ +""" +auibar contains an implementation of L{AuiToolBar}, which is a completely owner-drawn +toolbar perfectly integrated with the AUI layout system. This allows drag and drop of +toolbars, docking/floating behaviour and the possibility to define "overflow" items +in the toolbar itself. + +The default theme that is used is L{AuiDefaultToolBarArt}, which provides a modern, +glossy look and feel. The theme can be changed by calling L{AuiToolBar.SetArtProvider}. +""" + +__author__ = "Andrea Gavana " +__date__ = "31 March 2009" + + +import wx +import types + +from aui_utilities import BitmapFromBits, StepColour, GetLabelSize +from aui_utilities import GetBaseColour, MakeDisabledBitmap + +import framemanager +from aui_constants import * + +# wxPython version string +_VERSION_STRING = wx.VERSION_STRING + +# AuiToolBar events +wxEVT_COMMAND_AUITOOLBAR_TOOL_DROPDOWN = wx.NewEventType() +wxEVT_COMMAND_AUITOOLBAR_OVERFLOW_CLICK = wx.NewEventType() +wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK = wx.NewEventType() +wxEVT_COMMAND_AUITOOLBAR_MIDDLE_CLICK = wx.NewEventType() +wxEVT_COMMAND_AUITOOLBAR_BEGIN_DRAG = wx.NewEventType() + +EVT_AUITOOLBAR_TOOL_DROPDOWN = wx.PyEventBinder(wxEVT_COMMAND_AUITOOLBAR_TOOL_DROPDOWN, 1) +""" A dropdown `AuiToolBarItem` is being shown. """ +EVT_AUITOOLBAR_OVERFLOW_CLICK = wx.PyEventBinder(wxEVT_COMMAND_AUITOOLBAR_OVERFLOW_CLICK, 1) +""" The user left-clicked on the overflow button in `AuiToolBar`. """ +EVT_AUITOOLBAR_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK, 1) +""" Fires an event when the user right-clicks on a `AuiToolBarItem`. """ +EVT_AUITOOLBAR_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_AUITOOLBAR_MIDDLE_CLICK, 1) +""" Fires an event when the user middle-clicks on a `AuiToolBarItem`. """ +EVT_AUITOOLBAR_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_AUITOOLBAR_BEGIN_DRAG, 1) +""" A drag operation involving a toolbar item has started. """ + +# ---------------------------------------------------------------------- + +class CommandToolBarEvent(wx.PyCommandEvent): + """ A specialized command event class for events sent by L{AuiToolBar}. """ + + def __init__(self, command_type, win_id): + """ + Default class constructor. + + :param `command_type`: the event kind or an instance of `wx.PyCommandEvent`. + :param `win_id`: the window identification number. + """ + + if type(command_type) == types.IntType: + wx.PyCommandEvent.__init__(self, command_type, win_id) + else: + wx.PyCommandEvent.__init__(self, command_type.GetEventType(), command_type.GetId()) + + self.is_dropdown_clicked = False + self.click_pt = wx.Point(-1, -1) + self.rect = wx.Rect(-1, -1, 0, 0) + self.tool_id = -1 + + + def IsDropDownClicked(self): + """ Returns whether the drop down menu has been clicked. """ + + return self.is_dropdown_clicked + + + def SetDropDownClicked(self, c): + """ + Sets whether the drop down menu has been clicked. + + :param `c`: ``True`` to set the drop down as clicked, ``False`` otherwise. + """ + + self.is_dropdown_clicked = c + + + def GetClickPoint(self): + """ Returns the point where the user clicked with the mouse. """ + + return self.click_pt + + + def SetClickPoint(self, p): + """ + Sets the clicking point. + + :param `p`: a `wx.Point` object. + """ + + self.click_pt = p + + + def GetItemRect(self): + """ Returns the L{AuiToolBarItem} rectangle. """ + + return self.rect + + + def SetItemRect(self, r): + """ + Sets the L{AuiToolBarItem} rectangle. + + :param `r`: an instance of `wx.Rect`. + """ + + self.rect = r + + + def GetToolId(self): + """ Returns the L{AuiToolBarItem} identifier. """ + + return self.tool_id + + + def SetToolId(self, id): + """ + Sets the L{AuiToolBarItem} identifier. + + :param `id`: the toolbar item identifier. + """ + + self.tool_id = id + + +# ---------------------------------------------------------------------- + +class AuiToolBarEvent(CommandToolBarEvent): + """ A specialized command event class for events sent by L{AuiToolBar}. """ + + def __init__(self, command_type=None, win_id=0): + """ + Default class constructor. + + :param `command_type`: the event kind or an instance of `wx.PyCommandEvent`. + :param `win_id`: the window identification number. + """ + + CommandToolBarEvent.__init__(self, command_type, win_id) + + if type(command_type) == types.IntType: + self.notify = wx.NotifyEvent(command_type, win_id) + else: + self.notify = wx.NotifyEvent(command_type.GetEventType(), command_type.GetId()) + + + def GetNotifyEvent(self): + """ Returns the actual `wx.NotifyEvent`. """ + + return self.notify + + + def IsAllowed(self): + """ Returns whether the event is allowed or not. """ + + return self.notify.IsAllowed() + + + def Veto(self): + """ + Prevents the change announced by this event from happening. + + It is in general a good idea to notify the user about the reasons for + vetoing the change because otherwise the applications behaviour (which + just refuses to do what the user wants) might be quite surprising. + """ + + self.notify.Veto() + + + def Allow(self): + """ + This is the opposite of L{Veto}: it explicitly allows the event to be + processed. For most events it is not necessary to call this method as the + events are allowed anyhow but some are forbidden by default (this will + be mentioned in the corresponding event description). + """ + + self.notify.Allow() + + +# ---------------------------------------------------------------------- + +class ToolbarCommandCapture(wx.PyEvtHandler): + """ A class to handle the dropdown window menu. """ + + def __init__(self): + """ Default class constructor. """ + + wx.PyEvtHandler.__init__(self) + self._last_id = 0 + + + def GetCommandId(self): + """ Returns the event command identifier. """ + + return self._last_id + + + def ProcessEvent(self, event): + """ + Processes an event, searching event tables and calling zero or more suitable + event handler function(s). + + :param `event`: the event to process. + + :note: Normally, your application would not call this function: it is called + in the wxPython implementation to dispatch incoming user interface events + to the framework (and application). + However, you might need to call it if implementing new functionality (such as + a new control) where you define new event types, as opposed to allowing the + user to override functions. + + An instance where you might actually override the L{ProcessEvent} function is where + you want to direct event processing to event handlers not normally noticed by + wxPython. For example, in the document/view architecture, documents and views + are potential event handlers. When an event reaches a frame, L{ProcessEvent} will + need to be called on the associated document and view in case event handler + functions are associated with these objects. + + The normal order of event table searching is as follows: + + 1. If the object is disabled (via a call to `SetEvtHandlerEnabled`) the function + skips to step (6). + 2. If the object is a `wx.Window`, L{ProcessEvent} is recursively called on the window's + `wx.Validator`. If this returns ``True``, the function exits. + 3. wxWidgets `SearchEventTable` is called for this event handler. If this fails, the + base class table is tried, and so on until no more tables exist or an appropriate + function was found, in which case the function exits. + 4. The search is applied down the entire chain of event handlers (usually the chain + has a length of one). If this succeeds, the function exits. + 5. If the object is a `wx.Window` and the event is a `wx.CommandEvent`, L{ProcessEvent} is + recursively applied to the parent window's event handler. If this returns ``True``, + the function exits. + 6. Finally, L{ProcessEvent} is called on the `wx.App` object. + """ + + if event.GetEventType() == wx.wxEVT_COMMAND_MENU_SELECTED: + self._last_id = event.GetId() + return True + + if self.GetNextHandler(): + return self.GetNextHandler().ProcessEvent(event) + + return False + + +# ---------------------------------------------------------------------- + +class AuiToolBarItem(object): + """ + AuiToolBarItem is a toolbar element. + + It has a unique id (except for the separators which always have id = -1), the + style (telling whether it is a normal button, separator or a control), the + state (toggled or not, enabled or not) and short and long help strings. The + default implementations use the short help string for the tooltip text which + is popped up when the mouse pointer enters the tool and the long help string + for the applications status bar. + """ + + def __init__(self, item=None): + """ + Default class constructor. + + :param `item`: another instance of L{AuiToolBarItem}. + """ + + if item: + self.Assign(item) + return + + self.window = None + self.clockwisebmp = wx.NullBitmap + self.counterclockwisebmp = wx.NullBitmap + self.clockwisedisbmp = wx.NullBitmap + self.counterclockwisedisbmp = wx.NullBitmap + self.sizer_item = None + self.spacer_pixels = 0 + self.id = 0 + self.kind = ITEM_NORMAL + self.state = 0 # normal, enabled + self.proportion = 0 + self.active = True + self.dropdown = True + self.sticky = True + self.user_data = 0 + + self.label = "" + self.bitmap = wx.NullBitmap + self.disabled_bitmap = wx.NullBitmap + self.hover_bitmap = wx.NullBitmap + self.short_help = "" + self.long_help = "" + self.min_size = wx.Size(-1, -1) + self.alignment = wx.ALIGN_CENTER + self.orientation = AUI_TBTOOL_HORIZONTAL + + + def Assign(self, c): + """ + Assigns the properties of the L{AuiToolBarItem} `c` to `self`. + + :param `c`: another instance of L{AuiToolBarItem}. + """ + + self.window = c.window + self.label = c.label + self.bitmap = c.bitmap + self.disabled_bitmap = c.disabled_bitmap + self.hover_bitmap = c.hover_bitmap + self.short_help = c.short_help + self.long_help = c.long_help + self.sizer_item = c.sizer_item + self.min_size = c.min_size + self.spacer_pixels = c.spacer_pixels + self.id = c.id + self.kind = c.kind + self.state = c.state + self.proportion = c.proportion + self.active = c.active + self.dropdown = c.dropdown + self.sticky = c.sticky + self.user_data = c.user_data + self.alignment = c.alignment + self.orientation = c.orientation + + + def SetWindow(self, w): + """ + Assigns a window to the toolbar item. + + :param `w`: an instance of `wx.Window`. + """ + + self.window = w + + + def GetWindow(self): + """ Returns window associated to the toolbar item. """ + + return self.window + + + def SetId(self, new_id): + """ + Sets the toolbar item identifier. + + :param `new_id`: the new tool id. + """ + + self.id = new_id + + + def GetId(self): + """ Returns the toolbar item identifier. """ + + return self.id + + + def SetKind(self, new_kind): + """ + Sets the L{AuiToolBarItem} kind. + + :param `new_kind`: can be one of the following items: + + ======================== ============================= + Item Kind Description + ======================== ============================= + ``ITEM_CONTROL`` The item in the `AuiToolBar` is a control + ``ITEM_LABEL`` The item in the `AuiToolBar` is a text label + ``ITEM_SPACER`` The item in the `AuiToolBar` is a spacer + ``ITEM_SEPARATOR`` The item in the `AuiToolBar` is a separator + ``ITEM_CHECK`` The item in the `AuiToolBar` is a toolbar check item + ``ITEM_NORMAL`` The item in the `AuiToolBar` is a standard toolbar item + ``ITEM_RADIO`` The item in the `AuiToolBar` is a toolbar radio item + ======================== ============================= + """ + + self.kind = new_kind + + + def GetKind(self): + """ Returns the toolbar item kind. See L{SetKind} for more details. """ + + return self.kind + + + def SetState(self, new_state): + """ + Sets the toolbar item state. + + :param `new_state`: can be one of the following states: + + ============================================ ====================================== + Button State Constant Description + ============================================ ====================================== + ``AUI_BUTTON_STATE_NORMAL`` Normal button state + ``AUI_BUTTON_STATE_HOVER`` Hovered button state + ``AUI_BUTTON_STATE_PRESSED`` Pressed button state + ``AUI_BUTTON_STATE_DISABLED`` Disabled button state + ``AUI_BUTTON_STATE_HIDDEN`` Hidden button state + ``AUI_BUTTON_STATE_CHECKED`` Checked button state + ============================================ ====================================== + + """ + + self.state = new_state + + + def GetState(self): + """ + Returns the toolbar item state. See L{SetState} for more details. + + :see: L{SetState} + """ + + return self.state + + + def SetSizerItem(self, s): + """ + Associates a sizer item to this toolbar item. + + :param `s`: an instance of `wx.SizerItem`. + """ + + self.sizer_item = s + + + def GetSizerItem(self): + """ Returns the associated sizer item. """ + + return self.sizer_item + + + def SetLabel(self, s): + """ + Sets the toolbar item label. + + :param `s`: a string specifying the toolbar item label. + """ + + self.label = s + + + def GetLabel(self): + """ Returns the toolbar item label. """ + + return self.label + + + def SetBitmap(self, bmp): + """ + Sets the toolbar item bitmap. + + :param `bmp`: an instance of `wx.Bitmap`. + """ + + self.bitmap = bmp + + + def GetBitmap(self): + """ Returns the toolbar item bitmap. """ + + return self.GetRotatedBitmap(False) + + + def SetDisabledBitmap(self, bmp): + """ + Sets the toolbar item disabled bitmap. + + :param `bmp`: an instance of `wx.Bitmap`. + """ + + self.disabled_bitmap = bmp + + + def GetDisabledBitmap(self): + """ Returns the toolbar item disabled bitmap. """ + + return self.GetRotatedBitmap(True) + + + def SetHoverBitmap(self, bmp): + """ + Sets the toolbar item hover bitmap. + + :param `bmp`: an instance of `wx.Bitmap`. + """ + + self.hover_bitmap = bmp + + + def SetOrientation(self, a): + """ + Sets the toolbar tool orientation. + + :param `a`: one of ``AUI_TBTOOL_HORIZONTAL``, ``AUI_TBTOOL_VERT_CLOCKWISE`` or + ``AUI_TBTOOL_VERT_COUNTERCLOCKWISE``. + """ + + self.orientation = a + + + def GetOrientation(self): + """ Returns the toolbar tool orientation. """ + + return self.orientation + + + def GetHoverBitmap(self): + """ Returns the toolbar item hover bitmap. """ + + return self.hover_bitmap + + + def GetRotatedBitmap(self, disabled): + """ + Returns the correct bitmap depending on the tool orientation. + + :param `disabled`: whether to return the disabled bitmap or not. + """ + + bitmap_to_rotate = (disabled and [self.disabled_bitmap] or [self.bitmap])[0] + if not bitmap_to_rotate.IsOk() or self.orientation == AUI_TBTOOL_HORIZONTAL: + return bitmap_to_rotate + + rotated_bitmap = wx.NullBitmap + clockwise = True + if self.orientation == AUI_TBTOOL_VERT_CLOCKWISE: + rotated_bitmap = (disabled and [self.clockwisedisbmp] or [self.clockwisebmp])[0] + + elif self.orientation == AUI_TBTOOL_VERT_COUNTERCLOCKWISE: + rotated_bitmap = (disabled and [self.counterclockwisedisbmp] or [self.counterclockwisebmp])[0] + clockwise = False + + if not rotated_bitmap.IsOk(): + rotated_bitmap = wx.BitmapFromImage(bitmap_to_rotate.ConvertToImage().Rotate90(clockwise)) + + return rotated_bitmap + + + def SetShortHelp(self, s): + """ + Sets the short help string for the L{AuiToolBarItem}, to be displayed in a + `wx.ToolTip` when the mouse hover over the toolbar item. + + :param `s`: the tool short help string. + """ + + self.short_help = s + + + def GetShortHelp(self): + """ Returns the short help string for the L{AuiToolBarItem}. """ + + return self.short_help + + + def SetLongHelp(self, s): + """ + Sets the long help string for the toolbar item. This string is shown in the + statusbar (if any) of the parent frame when the mouse pointer is inside the + tool. + + :param `s`: the tool long help string. + """ + + self.long_help = s + + + def GetLongHelp(self): + """ Returns the long help string for the L{AuiToolBarItem}. """ + + return self.long_help + + + def SetMinSize(self, s): + """ + Sets the toolbar item minimum size. + + :param `s`: an instance of `wx.Size`. + """ + + self.min_size = wx.Size(*s) + + + def GetMinSize(self): + """ Returns the toolbar item minimum size. """ + + return self.min_size + + + def SetSpacerPixels(self, s): + """ + Sets the number of pixels for a toolbar item with kind = ``ITEM_SEPARATOR``. + + :param `s`: number of pixels. + """ + + self.spacer_pixels = s + + + def GetSpacerPixels(self): + """ Returns the number of pixels for a toolbar item with kind = ``ITEM_SEPARATOR``. """ + + return self.spacer_pixels + + + def SetProportion(self, p): + """ + Sets the L{AuiToolBarItem} proportion in the toolbar. + + :param `p`: the item proportion. + """ + + self.proportion = p + + + def GetProportion(self): + """ Returns the L{AuiToolBarItem} proportion in the toolbar. """ + + return self.proportion + + + def SetActive(self, b): + """ + Activates/deactivates the toolbar item. + + :param `b`: ``True`` to activate the item, ``False`` to deactivate it. + """ + + self.active = b + + + def IsActive(self): + """ Returns whether the toolbar item is active or not. """ + + return self.active + + + def SetHasDropDown(self, b): + """ + Sets whether the toolbar item has an associated dropdown menu. + + :param `b`: ``True`` to set a dropdown menu, ``False`` otherwise. + """ + + self.dropdown = b + + + def HasDropDown(self): + """ Returns whether the toolbar item has an associated dropdown menu or not. """ + + return self.dropdown + + + def SetSticky(self, b): + """ + Sets whether the toolbar item is sticky (permanent highlight after mouse enter) + or not. + + :param `b`: ``True`` to set the item as sticky, ``False`` otherwise. + """ + + self.sticky = b + + + def IsSticky(self): + """ Returns whether the toolbar item has a sticky behaviour or not. """ + + return self.sticky + + + def SetUserData(self, l): + """ + Associates some kind of user data to the toolbar item. + + :param `l`: a Python object. + + :note: The user data can be any Python object. + """ + + self.user_data = l + + + def GetUserData(self): + """ Returns the associated user data. """ + + return self.user_data + + + def SetAlignment(self, l): + """ + Sets the toolbar item alignment. + + :param `l`: the item alignment, which can be one of the available `wx.Sizer` + alignments. + """ + + self.alignment = l + + + def GetAlignment(self): + """ Returns the toolbar item alignment. """ + + return self.alignment + + +# ---------------------------------------------------------------------- + +class AuiDefaultToolBarArt(object): + """ + Toolbar art provider code - a tab provider provides all drawing functionality to + the L{AuiToolBar}. This allows the L{AuiToolBar} to have a plugable look-and-feel. + + By default, a L{AuiToolBar} uses an instance of this class called L{AuiDefaultToolBarArt} + which provides bitmap art and a colour scheme that is adapted to the major platforms' + look. You can either derive from that class to alter its behaviour or write a + completely new tab art class. Call L{AuiToolBar.SetArtProvider} to make use this + new tab art. + """ + + def __init__(self): + """ Default class constructor. """ + + self._base_colour = GetBaseColour() + + self._agwFlags = 0 + self._text_orientation = AUI_TBTOOL_TEXT_BOTTOM + self._highlight_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_HIGHLIGHT) + + self._separator_size = 7 + self._orientation = AUI_TBTOOL_HORIZONTAL + self._gripper_size = 7 + self._overflow_size = 16 + + darker1_colour = StepColour(self._base_colour, 85) + darker2_colour = StepColour(self._base_colour, 75) + darker3_colour = StepColour(self._base_colour, 60) + darker4_colour = StepColour(self._base_colour, 50) + darker5_colour = StepColour(self._base_colour, 40) + + self._gripper_pen1 = wx.Pen(darker5_colour) + self._gripper_pen2 = wx.Pen(darker3_colour) + self._gripper_pen3 = wx.WHITE_PEN + + button_dropdown_bits = "\xe0\xf1\xfb" + overflow_bits = "\x80\xff\x80\xc1\xe3\xf7" + + self._button_dropdown_bmp = BitmapFromBits(button_dropdown_bits, 5, 3, wx.BLACK) + self._disabled_button_dropdown_bmp = BitmapFromBits(button_dropdown_bits, 5, 3, + wx.Colour(128, 128, 128)) + self._overflow_bmp = BitmapFromBits(overflow_bits, 7, 6, wx.BLACK) + self._disabled_overflow_bmp = BitmapFromBits(overflow_bits, 7, 6, wx.Colour(128, 128, 128)) + + self._font = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + + + def Clone(self): + """ Clones the L{AuiToolBar} art. """ + + return AuiDefaultToolBarArt() + + + def SetAGWFlags(self, agwFlags): + """ + Sets the toolbar art flags. + + :param `agwFlags`: a combination of the following values: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_TB_TEXT`` Shows the text in the toolbar buttons; by default only icons are shown + ``AUI_TB_NO_TOOLTIPS`` Don't show tooltips on `AuiToolBar` items + ``AUI_TB_NO_AUTORESIZE`` Do not auto-resize the `AuiToolBar` + ``AUI_TB_GRIPPER`` Shows a gripper on the `AuiToolBar` + ``AUI_TB_OVERFLOW`` The `AuiToolBar` can contain overflow items + ``AUI_TB_VERTICAL`` The `AuiToolBar` is vertical + ``AUI_TB_HORZ_LAYOUT`` Shows the text and the icons alongside, not vertically stacked. This style must be used with ``AUI_TB_TEXT`` + ``AUI_TB_PLAIN_BACKGROUND`` Don't draw a gradient background on the toolbar + ``AUI_TB_HORZ_TEXT`` Combination of ``AUI_TB_HORZ_LAYOUT`` and ``AUI_TB_TEXT`` + ==================================== ================================== + + """ + + self._agwFlags = agwFlags + + + def GetAGWFlags(self): + """ + Returns the L{AuiDefaultToolBarArt} flags. See L{SetAGWFlags} for more + details. + + :see: L{SetAGWFlags} + """ + + return self._agwFlags + + + def SetFont(self, font): + """ + Sets the L{AuiDefaultToolBarArt} font. + + :param `font`: a `wx.Font` object. + """ + + self._font = font + + + def SetTextOrientation(self, orientation): + """ + Sets the text orientation. + + :param `orientation`: can be one of the following constants: + + ==================================== ================================== + Orientation Switches Description + ==================================== ================================== + ``AUI_TBTOOL_TEXT_LEFT`` Text in `AuiToolBar` items is aligned left + ``AUI_TBTOOL_TEXT_RIGHT`` Text in `AuiToolBar` items is aligned right + ``AUI_TBTOOL_TEXT_TOP`` Text in `AuiToolBar` items is aligned top + ``AUI_TBTOOL_TEXT_BOTTOM`` Text in `AuiToolBar` items is aligned bottom + ==================================== ================================== + + """ + + self._text_orientation = orientation + + + def GetFont(self): + """ Returns the L{AuiDefaultToolBarArt} font. """ + + return self._font + + + def GetTextOrientation(self): + """ + Returns the L{AuiDefaultToolBarArt} text orientation. See + L{SetTextOrientation} for more details. + + :see: L{SetTextOrientation} + """ + + return self._text_orientation + + + def SetOrientation(self, orientation): + """ + Sets the toolbar tool orientation. + + :param `orientation`: one of ``AUI_TBTOOL_HORIZONTAL``, ``AUI_TBTOOL_VERT_CLOCKWISE`` or + ``AUI_TBTOOL_VERT_COUNTERCLOCKWISE``. + """ + + self._orientation = orientation + + + def GetOrientation(self): + """ Returns the toolbar orientation. """ + + return self._orientation + + + def DrawBackground(self, dc, wnd, _rect, horizontal=True): + """ + Draws a toolbar background with a gradient shading. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `_rect`: the L{AuiToolBar} rectangle; + :param `horizontal`: ``True`` if the toolbar is horizontal, ``False`` if it is vertical. + """ + + rect = wx.Rect(*_rect) + + start_colour = StepColour(self._base_colour, 180) + end_colour = StepColour(self._base_colour, 85) + reflex_colour = StepColour(self._base_colour, 95) + + dc.GradientFillLinear(rect, start_colour, end_colour, + (horizontal and [wx.SOUTH] or [wx.EAST])[0]) + + left = rect.GetLeft() + right = rect.GetRight() + top = rect.GetTop() + bottom = rect.GetBottom() + + dc.SetPen(wx.Pen(reflex_colour)) + if horizontal: + dc.DrawLine(left, bottom, right+1, bottom) + else: + dc.DrawLine(right, top, right, bottom+1) + + + def DrawPlainBackground(self, dc, wnd, _rect): + """ + Draws a toolbar background with a plain colour. + + This method contrasts with the default behaviour of the L{AuiToolBar} that + draws a background gradient and this break the window design when putting + it within a control that has margin between the borders and the toolbar + (example: put L{AuiToolBar} within a `wx.StaticBoxSizer` that has a plain background). + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `_rect`: the L{AuiToolBar} rectangle. + """ + + rect = wx.Rect(*_rect) + rect.height += 1 + + dc.SetBrush(wx.Brush(wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DFACE))) + dc.DrawRectangle(rect.x - 1, rect.y - 1, rect.width + 2, rect.height + 1) + + + def DrawLabel(self, dc, wnd, item, rect): + """ + Draws a toolbar item label. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `item`: an instance of L{AuiToolBarItem}; + :param `rect`: the L{AuiToolBarItem} rectangle. + """ + + dc.SetFont(self._font) + dc.SetTextForeground(wx.BLACK) + orient = item.GetOrientation() + + horizontal = orient == AUI_TBTOOL_HORIZONTAL + # we only care about the text height here since the text + # will get cropped based on the width of the item + label_size = GetLabelSize(dc, item.GetLabel(), not horizontal) + text_width = label_size.GetWidth() + text_height = label_size.GetHeight() + + if orient == AUI_TBTOOL_HORIZONTAL: + text_x = rect.x + text_y = rect.y + (rect.height-text_height)/2 + dc.DrawText(item.GetLabel(), text_x, text_y) + + elif orient == AUI_TBTOOL_VERT_CLOCKWISE: + text_x = rect.x + (rect.width+text_width)/2 + text_y = rect.y + dc.DrawRotatedText(item.GetLabel(), text_x, text_y, 270) + + elif AUI_TBTOOL_VERT_COUNTERCLOCKWISE: + text_x = rect.x + (rect.width-text_width)/2 + text_y = rect.y + text_height + dc.DrawRotatedText(item.GetLabel(), text_x, text_y, 90) + + + def DrawButton(self, dc, wnd, item, rect): + """ + Draws a toolbar item button. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `item`: an instance of L{AuiToolBarItem}; + :param `rect`: the L{AuiToolBarItem} rectangle. + """ + + bmp_rect, text_rect = self.GetToolsPosition(dc, item, rect) + + if not item.GetState() & AUI_BUTTON_STATE_DISABLED: + + if item.GetState() & AUI_BUTTON_STATE_PRESSED: + + dc.SetPen(wx.Pen(self._highlight_colour)) + dc.SetBrush(wx.Brush(StepColour(self._highlight_colour, 150))) + dc.DrawRectangleRect(rect) + + elif item.GetState() & AUI_BUTTON_STATE_HOVER or item.IsSticky(): + + dc.SetPen(wx.Pen(self._highlight_colour)) + dc.SetBrush(wx.Brush(StepColour(self._highlight_colour, 170))) + + # draw an even lighter background for checked item hovers (since + # the hover background is the same colour as the check background) + if item.GetState() & AUI_BUTTON_STATE_CHECKED: + dc.SetBrush(wx.Brush(StepColour(self._highlight_colour, 180))) + + dc.DrawRectangleRect(rect) + + elif item.GetState() & AUI_BUTTON_STATE_CHECKED: + + # it's important to put this code in an else statment after the + # hover, otherwise hovers won't draw properly for checked items + dc.SetPen(wx.Pen(self._highlight_colour)) + dc.SetBrush(wx.Brush(StepColour(self._highlight_colour, 170))) + dc.DrawRectangleRect(rect) + + if item.GetState() & AUI_BUTTON_STATE_DISABLED: + bmp = item.GetDisabledBitmap() + else: + bmp = item.GetBitmap() + + if bmp.IsOk(): + dc.DrawBitmap(bmp, bmp_rect.x, bmp_rect.y, True) + + # set the item's text colour based on if it is disabled + dc.SetTextForeground(wx.BLACK) + if item.GetState() & AUI_BUTTON_STATE_DISABLED: + dc.SetTextForeground(DISABLED_TEXT_COLOUR) + + if self._agwFlags & AUI_TB_TEXT and item.GetLabel() != "": + self.DrawLabel(dc, wnd, item, text_rect) + + + def DrawDropDownButton(self, dc, wnd, item, rect): + """ + Draws a toolbar dropdown button. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `item`: an instance of L{AuiToolBarItem}; + :param `rect`: the L{AuiToolBarItem} rectangle. + """ + + dropbmp_x = dropbmp_y = 0 + + button_rect = wx.Rect(rect.x, rect.y, rect.width-BUTTON_DROPDOWN_WIDTH, rect.height) + dropdown_rect = wx.Rect(rect.x+rect.width-BUTTON_DROPDOWN_WIDTH-1, rect.y, BUTTON_DROPDOWN_WIDTH+1, rect.height) + + horizontal = item.GetOrientation() == AUI_TBTOOL_HORIZONTAL + + if horizontal: + button_rect = wx.Rect(rect.x, rect.y, rect.width-BUTTON_DROPDOWN_WIDTH, rect.height) + dropdown_rect = wx.Rect(rect.x+rect.width-BUTTON_DROPDOWN_WIDTH-1, rect.y, BUTTON_DROPDOWN_WIDTH+1, rect.height) + else: + button_rect = wx.Rect(rect.x, rect.y, rect.width, rect.height-BUTTON_DROPDOWN_WIDTH) + dropdown_rect = wx.Rect(rect.x, rect.y+rect.height-BUTTON_DROPDOWN_WIDTH-1, rect.width, BUTTON_DROPDOWN_WIDTH+1) + + dropbmp_width = self._button_dropdown_bmp.GetWidth() + dropbmp_height = self._button_dropdown_bmp.GetHeight() + if not horizontal: + tmp = dropbmp_width + dropbmp_width = dropbmp_height + dropbmp_height = tmp + + dropbmp_x = dropdown_rect.x + (dropdown_rect.width/2) - dropbmp_width/2 + dropbmp_y = dropdown_rect.y + (dropdown_rect.height/2) - dropbmp_height/2 + + bmp_rect, text_rect = self.GetToolsPosition(dc, item, button_rect) + + if item.GetState() & AUI_BUTTON_STATE_PRESSED: + + dc.SetPen(wx.Pen(self._highlight_colour)) + dc.SetBrush(wx.Brush(StepColour(self._highlight_colour, 140))) + dc.DrawRectangleRect(button_rect) + dc.DrawRectangleRect(dropdown_rect) + + elif item.GetState() & AUI_BUTTON_STATE_HOVER or item.IsSticky(): + + dc.SetPen(wx.Pen(self._highlight_colour)) + dc.SetBrush(wx.Brush(StepColour(self._highlight_colour, 170))) + dc.DrawRectangleRect(button_rect) + dc.DrawRectangleRect(dropdown_rect) + + elif item.GetState() & AUI_BUTTON_STATE_CHECKED: + # it's important to put this code in an else statment after the + # hover, otherwise hovers won't draw properly for checked items + dc.SetPen(wx.Pen(self._highlight_colour)) + dc.SetBrush(wx.Brush(StepColour(self._highlight_colour, 170))) + dc.DrawRectangle(button_rect) + dc.DrawRectangle(dropdown_rect) + + if item.GetState() & AUI_BUTTON_STATE_DISABLED: + + bmp = item.GetDisabledBitmap() + dropbmp = self._disabled_button_dropdown_bmp + + else: + + bmp = item.GetBitmap() + dropbmp = self._button_dropdown_bmp + + if not bmp.IsOk(): + return + + dc.DrawBitmap(bmp, bmp_rect.x, bmp_rect.y, True) + if horizontal: + dc.DrawBitmap(dropbmp, dropbmp_x, dropbmp_y, True) + else: + dc.DrawBitmap(wx.BitmapFromImage(dropbmp.ConvertToImage().Rotate90(item.GetOrientation() == AUI_TBTOOL_VERT_CLOCKWISE)), + dropbmp_x, dropbmp_y, True) + + # set the item's text colour based on if it is disabled + dc.SetTextForeground(wx.BLACK) + if item.GetState() & AUI_BUTTON_STATE_DISABLED: + dc.SetTextForeground(DISABLED_TEXT_COLOUR) + + if self._agwFlags & AUI_TB_TEXT and item.GetLabel() != "": + self.DrawLabel(dc, wnd, item, text_rect) + + + def DrawControlLabel(self, dc, wnd, item, rect): + """ + Draws a label for a toolbar control. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `item`: an instance of L{AuiToolBarItem}; + :param `rect`: the L{AuiToolBarItem} rectangle. + """ + + label_size = GetLabelSize(dc, item.GetLabel(), item.GetOrientation() != AUI_TBTOOL_HORIZONTAL) + text_height = label_size.GetHeight() + text_width = label_size.GetWidth() + + dc.SetFont(self._font) + + if self._agwFlags & AUI_TB_TEXT: + + tx, text_height = dc.GetTextExtent("ABCDHgj") + + text_width, ty = dc.GetTextExtent(item.GetLabel()) + + # don't draw the label if it is wider than the item width + if text_width > rect.width: + return + + # set the label's text colour + dc.SetTextForeground(wx.BLACK) + + text_x = rect.x + (rect.width/2) - (text_width/2) + 1 + text_y = rect.y + rect.height - text_height - 1 + + if self._agwFlags & AUI_TB_TEXT and item.GetLabel() != "": + dc.DrawText(item.GetLabel(), text_x, text_y) + + + def GetLabelSize(self, dc, wnd, item): + """ + Returns the label size for a toolbar item. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `item`: an instance of L{AuiToolBarItem}. + """ + + dc.SetFont(self._font) + label_size = GetLabelSize(dc, item.GetLabel(), self._orientation != AUI_TBTOOL_HORIZONTAL) + + return wx.Size(item.GetMinSize().GetWidth(), label_size.GetHeight()) + + + def GetToolSize(self, dc, wnd, item): + """ + Returns the toolbar item size. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `item`: an instance of L{AuiToolBarItem}. + """ + + if not item.GetBitmap().IsOk() and not self._agwFlags & AUI_TB_TEXT: + return wx.Size(16, 16) + + width = item.GetBitmap().GetWidth() + height = item.GetBitmap().GetHeight() + + if self._agwFlags & AUI_TB_TEXT: + + dc.SetFont(self._font) + label_size = GetLabelSize(dc, item.GetLabel(), self.GetOrientation() != AUI_TBTOOL_HORIZONTAL) + padding = 6 + + if self._text_orientation == AUI_TBTOOL_TEXT_BOTTOM: + + if self.GetOrientation() != AUI_TBTOOL_HORIZONTAL: + height += 3 # space between top border and bitmap + height += 3 # space between bitmap and text + padding = 0 + + height += label_size.GetHeight() + + if item.GetLabel() != "": + width = max(width, label_size.GetWidth()+padding) + + elif self._text_orientation == AUI_TBTOOL_TEXT_RIGHT and item.GetLabel() != "": + + if self.GetOrientation() == AUI_TBTOOL_HORIZONTAL: + + width += 3 # space between left border and bitmap + width += 3 # space between bitmap and text + padding = 0 + + width += label_size.GetWidth() + height = max(height, label_size.GetHeight()+padding) + + # if the tool has a dropdown button, add it to the width + if item.HasDropDown(): + if item.GetOrientation() == AUI_TBTOOL_HORIZONTAL: + width += BUTTON_DROPDOWN_WIDTH+4 + else: + height += BUTTON_DROPDOWN_WIDTH+4 + + return wx.Size(width, height) + + + def DrawSeparator(self, dc, wnd, _rect): + """ + Draws a toolbar separator. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `_rect`: the L{AuiToolBarItem} rectangle. + """ + + horizontal = True + if self._agwFlags & AUI_TB_VERTICAL: + horizontal = False + + rect = wx.Rect(*_rect) + + if horizontal: + + rect.x += (rect.width/2) + rect.width = 1 + new_height = (rect.height*3)/4 + rect.y += (rect.height/2) - (new_height/2) + rect.height = new_height + + else: + + rect.y += (rect.height/2) + rect.height = 1 + new_width = (rect.width*3)/4 + rect.x += (rect.width/2) - (new_width/2) + rect.width = new_width + + start_colour = StepColour(self._base_colour, 80) + end_colour = StepColour(self._base_colour, 80) + dc.GradientFillLinear(rect, start_colour, end_colour, (horizontal and [wx.SOUTH] or [wx.EAST])[0]) + + + def DrawGripper(self, dc, wnd, rect): + """ + Draws the toolbar gripper. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `rect`: the L{AuiToolBar} rectangle. + """ + + i = 0 + while 1: + + if self._agwFlags & AUI_TB_VERTICAL: + + x = rect.x + (i*4) + 4 + y = rect.y + 3 + if x > rect.GetWidth() - 4: + break + + else: + + x = rect.x + 3 + y = rect.y + (i*4) + 4 + if y > rect.GetHeight() - 4: + break + + dc.SetPen(self._gripper_pen1) + dc.DrawPoint(x, y) + dc.SetPen(self._gripper_pen2) + dc.DrawPoint(x, y+1) + dc.DrawPoint(x+1, y) + dc.SetPen(self._gripper_pen3) + dc.DrawPoint(x+2, y+1) + dc.DrawPoint(x+2, y+2) + dc.DrawPoint(x+1, y+2) + + i += 1 + + + def DrawOverflowButton(self, dc, wnd, rect, state): + """ + Draws the overflow button for the L{AuiToolBar}. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` derived window; + :param `rect`: the L{AuiToolBar} rectangle; + :param `state`: the overflow button state. + """ + + if state & AUI_BUTTON_STATE_HOVER or state & AUI_BUTTON_STATE_PRESSED: + + cli_rect = wnd.GetClientRect() + light_gray_bg = StepColour(self._highlight_colour, 170) + + if self._agwFlags & AUI_TB_VERTICAL: + + dc.SetPen(wx.Pen(self._highlight_colour)) + dc.DrawLine(rect.x, rect.y, rect.x+rect.width, rect.y) + dc.SetPen(wx.Pen(light_gray_bg)) + dc.SetBrush(wx.Brush(light_gray_bg)) + dc.DrawRectangle(rect.x, rect.y+1, rect.width, rect.height) + + else: + + dc.SetPen(wx.Pen(self._highlight_colour)) + dc.DrawLine(rect.x, rect.y, rect.x, rect.y+rect.height) + dc.SetPen(wx.Pen(light_gray_bg)) + dc.SetBrush(wx.Brush(light_gray_bg)) + dc.DrawRectangle(rect.x+1, rect.y, rect.width, rect.height) + + x = rect.x + 1 + (rect.width-self._overflow_bmp.GetWidth())/2 + y = rect.y + 1 + (rect.height-self._overflow_bmp.GetHeight())/2 + dc.DrawBitmap(self._overflow_bmp, x, y, True) + + + def GetElementSize(self, element_id): + """ + Returns the size of a UI element in the L{AuiToolBar}. + + :param `element_id`: can be one of the following: + + ==================================== ================================== + Element Identifier Description + ==================================== ================================== + ``AUI_TBART_SEPARATOR_SIZE`` Separator size in `AuiToolBar` + ``AUI_TBART_GRIPPER_SIZE`` Gripper size in `AuiToolBar` + ``AUI_TBART_OVERFLOW_SIZE`` Overflow button size in `AuiToolBar` + ==================================== ================================== + """ + + if element_id == AUI_TBART_SEPARATOR_SIZE: + return self._separator_size + elif element_id == AUI_TBART_GRIPPER_SIZE: + return self._gripper_size + elif element_id == AUI_TBART_OVERFLOW_SIZE: + return self._overflow_size + + return 0 + + + def SetElementSize(self, element_id, size): + """ + Sets the size of a UI element in the L{AuiToolBar}. + + :param `element_id`: can be one of the following: + + ==================================== ================================== + Element Identifier Description + ==================================== ================================== + ``AUI_TBART_SEPARATOR_SIZE`` Separator size in `AuiToolBar` + ``AUI_TBART_GRIPPER_SIZE`` Gripper size in `AuiToolBar` + ``AUI_TBART_OVERFLOW_SIZE`` Overflow button size in `AuiToolBar` + ==================================== ================================== + + :param `size`: the new size of the UI element. + """ + + if element_id == AUI_TBART_SEPARATOR_SIZE: + self._separator_size = size + elif element_id == AUI_TBART_GRIPPER_SIZE: + self._gripper_size = size + elif element_id == AUI_TBART_OVERFLOW_SIZE: + self._overflow_size = size + + + def ShowDropDown(self, wnd, items): + """ + Shows the drop down window menu for overflow items. + + :param `wnd`: an instance of `wx.Window`; + :param `items`: the overflow toolbar items (a Python list). + """ + + menuPopup = wx.Menu() + items_added = 0 + + for item in items: + + if item.GetKind() not in [ITEM_SEPARATOR, ITEM_SPACER, ITEM_CONTROL]: + + text = item.GetShortHelp() + if text == "": + text = item.GetLabel() + if text == "": + text = " " + + kind = item.GetKind() + m = wx.MenuItem(menuPopup, item.GetId(), text, item.GetShortHelp(), kind) + orientation = item.GetOrientation() + item.SetOrientation(AUI_TBTOOL_HORIZONTAL) + + if kind not in [ITEM_CHECK, ITEM_RADIO]: + m.SetBitmap(item.GetBitmap()) + + item.SetOrientation(orientation) + + menuPopup.AppendItem(m) + if kind in [ITEM_CHECK, ITEM_RADIO]: + state = (item.state & AUI_BUTTON_STATE_CHECKED and [True] or [False])[0] + m.Check(state) + + items_added += 1 + + else: + + if items_added > 0 and item.GetKind() == ITEM_SEPARATOR: + menuPopup.AppendSeparator() + + # find out where to put the popup menu of window items + pt = wx.GetMousePosition() + pt = wnd.ScreenToClient(pt) + + # find out the screen coordinate at the bottom of the tab ctrl + cli_rect = wnd.GetClientRect() + pt.y = cli_rect.y + cli_rect.height + + cc = ToolbarCommandCapture() + wnd.PushEventHandler(cc) + + # Adjustments to get slightly better menu placement + if wx.Platform == "__WXMAC__": + pt.y += 5 + pt.x -= 5 + + wnd.PopupMenu(menuPopup, pt) + command = cc.GetCommandId() + wnd.PopEventHandler(True) + + return command + + + def GetToolsPosition(self, dc, item, rect): + """ + Returns the bitmap and text rectangles for a toolbar item. + + :param `dc`: a `wx.DC` device context; + :param `item`: an instance of L{AuiToolBarItem}; + :param `rect`: the tool rect. + """ + + text_width = text_height = 0 + horizontal = self._orientation == AUI_TBTOOL_HORIZONTAL + text_bottom = self._text_orientation == AUI_TBTOOL_TEXT_BOTTOM + text_right = self._text_orientation == AUI_TBTOOL_TEXT_RIGHT + bmp_width = item.GetBitmap().GetWidth() + bmp_height = item.GetBitmap().GetHeight() + + if self._agwFlags & AUI_TB_TEXT: + dc.SetFont(self._font) + label_size = GetLabelSize(dc, item.GetLabel(), not horizontal) + text_height = label_size.GetHeight() + text_width = label_size.GetWidth() + + bmp_x = bmp_y = text_x = text_y = 0 + + if horizontal and text_bottom: + bmp_x = rect.x + (rect.width/2) - (bmp_width/2) + bmp_y = rect.y + 3 + text_x = rect.x + (rect.width/2) - (text_width/2) + text_y = rect.y + ((bmp_y - rect.y) * 2) + bmp_height + + elif horizontal and text_right: + bmp_x = rect.x + 3 + bmp_y = rect.y + (rect.height/2) - (bmp_height / 2) + text_x = rect.x + ((bmp_x - rect.x) * 2) + bmp_width + text_y = rect.y + (rect.height/2) - (text_height/2) + + elif not horizontal and text_bottom: + bmp_x = rect.x + (rect.width / 2) - (bmp_width / 2) + bmp_y = rect.y + 3 + text_x = rect.x + (rect.width / 2) - (text_width / 2) + text_y = rect.y + ((bmp_y - rect.y) * 2) + bmp_height + + bmp_rect = wx.Rect(bmp_x, bmp_y, bmp_width, bmp_height) + text_rect = wx.Rect(text_x, text_y, text_width, text_height) + + return bmp_rect, text_rect + + +class AuiToolBar(wx.PyControl): + """ + AuiToolBar is a completely owner-drawn toolbar perfectly integrated with the + AUI layout system. This allows drag and drop of toolbars, docking/floating + behaviour and the possibility to define "overflow" items in the toolbar itself. + + The default theme that is used is L{AuiDefaultToolBarArt}, which provides a modern, + glossy look and feel. The theme can be changed by calling L{AuiToolBar.SetArtProvider}. + """ + + def __init__(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, + size=wx.DefaultSize, style=0, agwStyle=AUI_TB_DEFAULT_STYLE): + """ + Default class constructor. + + :param `parent`: the L{AuiToolBar} parent; + :param `id`: an identifier for the control: a value of -1 is taken to mean a default; + :param `pos`: the control position. A value of (-1, -1) indicates a default position, + chosen by either the windowing system or wxPython, depending on platform; + :param `size`: the control size. A value of (-1, -1) indicates a default size, + chosen by either the windowing system or wxPython, depending on platform; + :param `style`: the control window style; + :param `agwStyle`: the AGW-specific window style. This can be a combination of the + following bits: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_TB_TEXT`` Shows the text in the toolbar buttons; by default only icons are shown + ``AUI_TB_NO_TOOLTIPS`` Don't show tooltips on `AuiToolBar` items + ``AUI_TB_NO_AUTORESIZE`` Do not auto-resize the `AuiToolBar` + ``AUI_TB_GRIPPER`` Shows a gripper on the `AuiToolBar` + ``AUI_TB_OVERFLOW`` The `AuiToolBar` can contain overflow items + ``AUI_TB_VERTICAL`` The `AuiToolBar` is vertical + ``AUI_TB_HORZ_LAYOUT`` Shows the text and the icons alongside, not vertically stacked. This style must be used with ``AUI_TB_TEXT`` + ``AUI_TB_PLAIN_BACKGROUND`` Don't draw a gradient background on the toolbar + ``AUI_TB_HORZ_TEXT`` Combination of ``AUI_TB_HORZ_LAYOUT`` and ``AUI_TB_TEXT`` + ==================================== ================================== + + The default value for `agwStyle` is: ``AUI_TB_DEFAULT_STYLE`` = 0 + + """ + + wx.PyControl.__init__(self, parent, id, pos, size, style|wx.BORDER_NONE) + + self._sizer = wx.BoxSizer(wx.HORIZONTAL) + self.SetSizer(self._sizer) + self._button_width = -1 + self._button_height = -1 + self._sizer_element_count = 0 + self._action_pos = wx.Point(-1, -1) + self._action_item = None + self._tip_item = None + self._art = AuiDefaultToolBarArt() + self._tool_packing = 2 + self._tool_border_padding = 3 + self._tool_text_orientation = AUI_TBTOOL_TEXT_BOTTOM + self._tool_orientation = AUI_TBTOOL_HORIZONTAL + self._tool_alignment = wx.EXPAND + self._gripper_sizer_item = None + self._overflow_sizer_item = None + self._dragging = False + + self._agwStyle = self._originalStyle = agwStyle + + self._gripper_visible = (self._agwStyle & AUI_TB_GRIPPER and [True] or [False])[0] + self._overflow_visible = (self._agwStyle & AUI_TB_OVERFLOW and [True] or [False])[0] + self._overflow_state = 0 + self._custom_overflow_prepend = [] + self._custom_overflow_append = [] + + self._items = [] + + self.SetMargins(5, 5, 2, 2) + self.SetFont(wx.NORMAL_FONT) + self._art.SetAGWFlags(self._agwStyle) + self.SetExtraStyle(wx.WS_EX_PROCESS_IDLE) + + if agwStyle & AUI_TB_HORZ_LAYOUT: + self.SetToolTextOrientation(AUI_TBTOOL_TEXT_RIGHT) + elif agwStyle & AUI_TB_VERTICAL: + if agwStyle & AUI_TB_CLOCKWISE: + self.SetToolOrientation(AUI_TBTOOL_VERT_CLOCKWISE) + elif agwStyle & AUI_TB_COUNTERCLOCKWISE: + self.SetToolOrientation(AUI_TBTOOL_VERT_COUNTERCLOCKWISE) + + self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM) + + self.Bind(wx.EVT_SIZE, self.OnSize) + self.Bind(wx.EVT_IDLE, self.OnIdle) + self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground) + self.Bind(wx.EVT_PAINT, self.OnPaint) + self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown) + self.Bind(wx.EVT_LEFT_DCLICK, self.OnLeftDown) + self.Bind(wx.EVT_LEFT_UP, self.OnLeftUp) + self.Bind(wx.EVT_RIGHT_DOWN, self.OnRightDown) + self.Bind(wx.EVT_RIGHT_DCLICK, self.OnRightDown) + self.Bind(wx.EVT_RIGHT_UP, self.OnRightUp) + self.Bind(wx.EVT_MIDDLE_DOWN, self.OnMiddleDown) + self.Bind(wx.EVT_MIDDLE_DCLICK, self.OnMiddleDown) + self.Bind(wx.EVT_MIDDLE_UP, self.OnMiddleUp) + self.Bind(wx.EVT_MOTION, self.OnMotion) + self.Bind(wx.EVT_LEAVE_WINDOW, self.OnLeaveWindow) + self.Bind(wx.EVT_SET_CURSOR, self.OnSetCursor) + + + def SetWindowStyleFlag(self, style): + """ + Sets the style of the window. + + :param `style`: the new window style. + + :note: Please note that some styles cannot be changed after the window + creation and that `Refresh` might need to be be called after changing the + others for the change to take place immediately. + + :note: Overridden from `wx.PyControl`. + """ + + wx.PyControl.SetWindowStyleFlag(self, style|wx.BORDER_NONE) + + + def SetAGWWindowStyleFlag(self, agwStyle): + """ + Sets the AGW-specific style of the window. + + :param `agwStyle`: the new window style. This can be a combination of the + following bits: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_TB_TEXT`` Shows the text in the toolbar buttons; by default only icons are shown + ``AUI_TB_NO_TOOLTIPS`` Don't show tooltips on `AuiToolBar` items + ``AUI_TB_NO_AUTORESIZE`` Do not auto-resize the `AuiToolBar` + ``AUI_TB_GRIPPER`` Shows a gripper on the `AuiToolBar` + ``AUI_TB_OVERFLOW`` The `AuiToolBar` can contain overflow items + ``AUI_TB_VERTICAL`` The `AuiToolBar` is vertical + ``AUI_TB_HORZ_LAYOUT`` Shows the text and the icons alongside, not vertically stacked. This style must be used with ``AUI_TB_TEXT`` + ``AUI_TB_PLAIN_BACKGROUND`` Don't draw a gradient background on the toolbar + ``AUI_TB_HORZ_TEXT`` Combination of ``AUI_TB_HORZ_LAYOUT`` and ``AUI_TB_TEXT`` + ==================================== ================================== + + :note: Please note that some styles cannot be changed after the window + creation and that `Refresh` might need to be be called after changing the + others for the change to take place immediately. + """ + + self._agwStyle = self._originalStyle = agwStyle + + if self._art: + self._art.SetAGWFlags(self._agwStyle) + + if agwStyle & AUI_TB_GRIPPER: + self._gripper_visible = True + else: + self._gripper_visible = False + + if agwStyle & AUI_TB_OVERFLOW: + self._overflow_visible = True + else: + self._overflow_visible = False + + if agwStyle & AUI_TB_HORZ_LAYOUT: + self.SetToolTextOrientation(AUI_TBTOOL_TEXT_RIGHT) + else: + self.SetToolTextOrientation(AUI_TBTOOL_TEXT_BOTTOM) + + if agwStyle & AUI_TB_VERTICAL: + if agwStyle & AUI_TB_CLOCKWISE: + self.SetToolOrientation(AUI_TBTOOL_VERT_CLOCKWISE) + elif agwStyle & AUI_TB_COUNTERCLOCKWISE: + self.SetToolOrientation(AUI_TBTOOL_VERT_COUNTERCLOCKWISE) + + + def GetAGWWindowStyleFlag(self): + """ + Returns the AGW-specific window style flag. + + :see: L{SetAGWWindowStyleFlag} for an explanation of various AGW-specific style. + """ + + return self._agwStyle + + + def SetArtProvider(self, art): + """ + Instructs L{AuiToolBar} to use art provider specified by parameter `art` + for all drawing calls. This allows plugable look-and-feel features. + + :param `art`: an art provider. + + :note: The previous art provider object, if any, will be deleted by L{AuiToolBar}. + """ + + del self._art + self._art = art + + if self._art: + self._art.SetAGWFlags(self._agwStyle) + self._art.SetTextOrientation(self._tool_text_orientation) + self._art.SetOrientation(self._tool_orientation) + + + def GetArtProvider(self): + """ Returns the current art provider being used. """ + + return self._art + + + def AddSimpleTool(self, tool_id, label, bitmap, short_help_string="", kind=ITEM_NORMAL): + """ + Adds a tool to the toolbar. This is the simplest method you can use to + ass an item to the L{AuiToolBar}. + + :param `tool_id`: an integer by which the tool may be identified in subsequent operations; + :param `label`: the toolbar tool label; + :param `bitmap`: the primary tool bitmap; + :param `short_help_string`: this string is used for the tools tooltip; + :param `kind`: the item kind. Can be one of the following: + + ======================== ============================= + Item Kind Description + ======================== ============================= + ``ITEM_CONTROL`` The item in the `AuiToolBar` is a control + ``ITEM_LABEL`` The item in the `AuiToolBar` is a text label + ``ITEM_SPACER`` The item in the `AuiToolBar` is a spacer + ``ITEM_SEPARATOR`` The item in the `AuiToolBar` is a separator + ``ITEM_CHECK`` The item in the `AuiToolBar` is a toolbar check item + ``ITEM_NORMAL`` The item in the `AuiToolBar` is a standard toolbar item + ``ITEM_RADIO`` The item in the `AuiToolBar` is a toolbar radio item + ======================== ============================= + """ + + return self.AddTool(tool_id, label, bitmap, wx.NullBitmap, kind, short_help_string, "", None) + + + def AddToggleTool(self, tool_id, bitmap, disabled_bitmap, toggle=False, client_data=None, short_help_string="", long_help_string=""): + """ + Adds a toggle tool to the toolbar. + + :param `tool_id`: an integer by which the tool may be identified in subsequent operations; + :param `bitmap`: the primary tool bitmap; + :param `disabled_bitmap`: the bitmap to use when the tool is disabled. If it is equal to + `wx.NullBitmap`, the disabled bitmap is automatically generated by greing the normal one; + :param `client_data`: whatever Python object to associate with the toolbar item; + :param `short_help_string`: this string is used for the tools tooltip; + :param `long_help_string`: this string is shown in the statusbar (if any) of the parent + frame when the mouse pointer is inside the tool. + """ + + kind = (toggle and [ITEM_CHECK] or [ITEM_NORMAL])[0] + return self.AddTool(tool_id, "", bitmap, disabled_bitmap, kind, short_help_string, long_help_string, client_data) + + + def AddTool(self, tool_id, label, bitmap, disabled_bitmap, kind, short_help_string, long_help_string, client_data): + """ + Adds a tool to the toolbar. This is the full feature version of L{AddTool}. + + :param `tool_id`: an integer by which the tool may be identified in subsequent operations; + :param `label`: the toolbar tool label; + :param `bitmap`: the primary tool bitmap; + :param `disabled_bitmap`: the bitmap to use when the tool is disabled. If it is equal to + `wx.NullBitmap`, the disabled bitmap is automatically generated by greing the normal one; + :param `kind`: the item kind. Can be one of the following: + + ======================== ============================= + Item Kind Description + ======================== ============================= + ``ITEM_CONTROL`` The item in the `AuiToolBar` is a control + ``ITEM_LABEL`` The item in the `AuiToolBar` is a text label + ``ITEM_SPACER`` The item in the `AuiToolBar` is a spacer + ``ITEM_SEPARATOR`` The item in the `AuiToolBar` is a separator + ``ITEM_CHECK`` The item in the `AuiToolBar` is a toolbar check item + ``ITEM_NORMAL`` The item in the `AuiToolBar` is a standard toolbar item + ``ITEM_RADIO`` The item in the `AuiToolBar` is a toolbar radio item + ======================== ============================= + + :param `short_help_string`: this string is used for the tools tooltip; + :param `long_help_string`: this string is shown in the statusbar (if any) of the parent + frame when the mouse pointer is inside the tool. + :param `client_data`: whatever Python object to associate with the toolbar item. + """ + + item = AuiToolBarItem() + item.window = None + item.label = label + item.bitmap = bitmap + item.disabled_bitmap = disabled_bitmap + item.short_help = short_help_string + item.long_help = long_help_string + item.active = True + item.dropdown = False + item.spacer_pixels = 0 + + if tool_id == wx.ID_ANY: + tool_id = wx.NewId() + + item.id = tool_id + item.state = 0 + item.proportion = 0 + item.kind = kind + item.sizer_item = None + item.min_size = wx.Size(-1, -1) + item.user_data = 0 + item.sticky = False + item.orientation = self._tool_orientation + + if not item.disabled_bitmap.IsOk(): + # no disabled bitmap specified, we need to make one + if item.bitmap.IsOk(): + item.disabled_bitmap = MakeDisabledBitmap(item.bitmap) + + self._items.append(item) + return self._items[-1] + + + def AddCheckTool(self, tool_id, label, bitmap, disabled_bitmap, short_help_string="", long_help_string="", client_data=None): + """ + Adds a new check (or toggle) tool to the L{AuiToolBar}. + + :see: L{AddTool}. + """ + + return self.AddTool(tool_id, label, bitmap, disabled_bitmap, ITEM_CHECK, short_help_string, long_help_string, client_data) + + + def AddRadioTool(self, tool_id, label, bitmap, disabled_bitmap, short_help_string="", long_help_string="", client_data=None): + """ + Adds a new radio tool to the toolbar. + + Consecutive radio tools form a radio group such that exactly one button + in the group is pressed at any moment, in other words whenever a button + in the group is pressed the previously pressed button is automatically + released. You should avoid having the radio groups of only one element + as it would be impossible for the user to use such button. + + :note: By default, the first button in the radio group is initially pressed, + the others are not. + + :see: L{AddTool}. + """ + + return self.AddTool(tool_id, label, bitmap, disabled_bitmap, ITEM_RADIO, short_help_string, long_help_string, client_data) + + + def AddControl(self, control, label=""): + """ + Adds any control to the toolbar, typically e.g. a combobox. + + :param `control`: the control to be added; + :param `label`: the label which appears if the control goes into the + overflow items in the toolbar. + """ + + item = AuiToolBarItem() + item.window = control + item.label = label + item.bitmap = wx.NullBitmap + item.disabled_bitmap = wx.NullBitmap + item.active = True + item.dropdown = False + item.spacer_pixels = 0 + item.id = control.GetId() + item.state = 0 + item.proportion = 0 + item.kind = ITEM_CONTROL + item.sizer_item = None + item.min_size = control.GetEffectiveMinSize() + item.user_data = 0 + item.sticky = False + item.orientation = self._tool_orientation + + self._items.append(item) + return self._items[-1] + + + def AddLabel(self, tool_id, label="", width=0): + """ + Adds a label tool to the L{AuiToolBar}. + + :param `tool_id`: an integer by which the tool may be identified in subsequent operations; + :param `label`: the toolbar tool label; + :param `width`: the tool width. + """ + + min_size = wx.Size(-1, -1) + + if width != -1: + min_size.x = width + + item = AuiToolBarItem() + item.window = None + item.label = label + item.bitmap = wx.NullBitmap + item.disabled_bitmap = wx.NullBitmap + item.active = True + item.dropdown = False + item.spacer_pixels = 0 + + if tool_id == wx.ID_ANY: + tool_id = wx.NewId() + + item.id = tool_id + item.state = 0 + item.proportion = 0 + item.kind = ITEM_LABEL + item.sizer_item = None + item.min_size = min_size + item.user_data = 0 + item.sticky = False + item.orientation = self._tool_orientation + + self._items.append(item) + return self._items[-1] + + + def AddSeparator(self): + """ Adds a separator for spacing groups of tools. """ + + item = AuiToolBarItem() + item.window = None + item.label = "" + item.bitmap = wx.NullBitmap + item.disabled_bitmap = wx.NullBitmap + item.active = True + item.dropdown = False + item.id = -1 + item.state = 0 + item.proportion = 0 + item.kind = ITEM_SEPARATOR + item.sizer_item = None + item.min_size = wx.Size(-1, -1) + item.user_data = 0 + item.sticky = False + item.orientation = self._tool_orientation + + self._items.append(item) + return self._items[-1] + + + def AddSpacer(self, pixels): + """ + Adds a spacer for spacing groups of tools. + + :param `pixels`: the width of the spacer. + """ + + item = AuiToolBarItem() + item.window = None + item.label = "" + item.bitmap = wx.NullBitmap + item.disabled_bitmap = wx.NullBitmap + item.active = True + item.dropdown = False + item.spacer_pixels = pixels + item.id = -1 + item.state = 0 + item.proportion = 0 + item.kind = ITEM_SPACER + item.sizer_item = None + item.min_size = wx.Size(-1, -1) + item.user_data = 0 + item.sticky = False + item.orientation = self._tool_orientation + + self._items.append(item) + return self._items[-1] + + + def AddStretchSpacer(self, proportion=1): + """ + Adds a stretchable spacer for spacing groups of tools. + + :param `proportion`: the stretchable spacer proportion. + """ + + item = AuiToolBarItem() + item.window = None + item.label = "" + item.bitmap = wx.NullBitmap + item.disabled_bitmap = wx.NullBitmap + item.active = True + item.dropdown = False + item.spacer_pixels = 0 + item.id = -1 + item.state = 0 + item.proportion = proportion + item.kind = ITEM_SPACER + item.sizer_item = None + item.min_size = wx.Size(-1, -1) + item.user_data = 0 + item.sticky = False + item.orientation = self._tool_orientation + + self._items.append(item) + return self._items[-1] + + + def Clear(self): + """ Deletes all the tools in the L{AuiToolBar}. """ + + self._items = [] + self._sizer_element_count = 0 + + + def ClearTools(self): + """ Deletes all the tools in the L{AuiToolBar}. """ + + self.Clear() + + + def DeleteTool(self, tool_id): + """ + Removes the specified tool from the toolbar and deletes it. + + :param `tool_id`: the L{AuiToolBarItem} identifier. + + :returns: ``True`` if the tool was deleted, ``False`` otherwise. + + :note: Note that it is unnecessary to call L{Realize} for the change to + take place, it will happen immediately. + """ + + idx = self.GetToolIndex(tool_id) + + if idx >= 0 and idx < len(self._items): + self._items.pop(idx) + self.Realize() + return True + + return False + + + def DeleteToolByPos(self, pos): + """ + This function behaves like L{DeleteTool} but it deletes the tool at the + specified position and not the one with the given id. + + :param `pos`: the tool position. + + :see: L{DeleteTool} + """ + + if pos >= 0 and pos < len(self._items): + + self._items.pop(pos) + self.Realize() + return True + + return False + + + def FindControl(self, id): + """ + Returns a pointer to the control identified by `id` or ``None`` if no corresponding + control is found. + + :param `id`: the control identifier. + """ + + wnd = self.FindWindow(id) + return wnd + + + def FindTool(self, tool_id): + """ + Finds a tool for the given tool id. + + :param `tool_id`: the L{AuiToolBarItem} identifier. + """ + + for item in self._items: + if item.id == tool_id: + return item + + return None + + + def FindToolForPosition(self, x, y): + """ + Finds a tool for the given mouse position. + + :param `x`: mouse `x` position; + :param `y`: mouse `y` position. + + :returns: a pointer to a L{AuiToolBarItem} if a tool is found, or ``None`` otherwise. + """ + + for i, item in enumerate(self._items): + if not item.sizer_item: + continue + + rect = item.sizer_item.GetRect() + if rect.Contains((x,y)): + + # if the item doesn't fit on the toolbar, return None + if not self.GetToolFitsByIndex(i): + return None + + return item + + return None + + + def FindToolForPositionWithPacking(self, x, y): + """ + Finds a tool for the given mouse position, taking into account also the + tool packing. + + :param `x`: mouse `x` position; + :param `y`: mouse `y` position. + + :returns: a pointer to a L{AuiToolBarItem} if a tool is found, or ``None`` otherwise. + """ + + count = len(self._items) + + for i, item in enumerate(self._items): + if not item.sizer_item: + continue + + rect = item.sizer_item.GetRect() + + # apply tool packing + if i+1 < count: + rect.width += self._tool_packing + + if rect.Contains((x,y)): + + # if the item doesn't fit on the toolbar, return None + if not self.GetToolFitsByIndex(i): + return None + + return item + + return None + + + def FindToolByIndex(self, pos): + """ + Finds a tool for the given tool position in the L{AuiToolBar}. + + :param `pos`: the tool position in the toolbar. + + :returns: a pointer to a L{AuiToolBarItem} if a tool is found, or ``None`` otherwise. + """ + + if pos < 0 or pos >= len(self._items): + return None + + return self._items[pos] + + + def SetToolBitmapSize(self, size): + """ + Sets the default size of each tool bitmap. The default bitmap size is + 16 by 15 pixels. + + :param `size`: the size of the bitmaps in the toolbar. + + :note: This should be called to tell the toolbar what the tool bitmap + size is. Call it before you add tools. + + :note: Note that this is the size of the bitmap you pass to L{AddTool}, + and not the eventual size of the tool button. + + :todo: Add `wx.ToolBar` compatibility, actually implementing this method. + """ + + # TODO: wx.ToolBar compatibility + pass + + + def GetToolBitmapSize(self): + """ + Returns the size of bitmap that the toolbar expects to have. The default + bitmap size is 16 by 15 pixels. + + :note: Note that this is the size of the bitmap you pass to L{AddTool}, + and not the eventual size of the tool button. + + :todo: Add `wx.ToolBar` compatibility, actually implementing this method. + """ + + # TODO: wx.ToolBar compatibility + return wx.Size(16, 15) + + + def SetToolProportion(self, tool_id, proportion): + """ + Sets the tool proportion in the toolbar. + + :param `tool_id`: the L{AuiToolBarItem} identifier; + :param `proportion`: the tool proportion in the toolbar. + """ + + item = self.FindTool(tool_id) + if not item: + return + + item.proportion = proportion + + + def GetToolProportion(self, tool_id): + """ + Returns the tool proportion in the toolbar. + + :param `tool_id`: the L{AuiToolBarItem} identifier. + """ + + item = self.FindTool(tool_id) + if not item: + return + + return item.proportion + + + def SetToolSeparation(self, separation): + """ + Sets the separator size for the toolbar. + + :param `separation`: the separator size in pixels. + """ + + if self._art: + self._art.SetElementSize(AUI_TBART_SEPARATOR_SIZE, separation) + + + def GetToolSeparation(self): + """ Returns the separator size for the toolbar, in pixels. """ + + if self._art: + return self._art.GetElementSize(AUI_TBART_SEPARATOR_SIZE) + + return 5 + + + def SetToolDropDown(self, tool_id, dropdown): + """ + Assigns a drop down window menu to the toolbar item. + + :param `tool_id`: the L{AuiToolBarItem} identifier; + :param `dropdown`: whether to assign a drop down menu or not. + """ + + item = self.FindTool(tool_id) + if not item: + return + + item.dropdown = dropdown + + + def GetToolDropDown(self, tool_id): + """ + Returns whether the toolbar item identified by `tool_id` has an associated + drop down window menu or not. + + :param `tool_id`: the L{AuiToolBarItem} identifier. + """ + + item = self.FindTool(tool_id) + if not item: + return + + return item.dropdown + + + def SetToolSticky(self, tool_id, sticky): + """ + Sets the toolbar item as sticky or non-sticky. + + :param `tool_id`: the L{AuiToolBarItem} identifier; + :param `sticky`: whether the tool should be sticky or not. + """ + + # ignore separators + if tool_id == -1: + return + + item = self.FindTool(tool_id) + if not item: + return + + if item.sticky == sticky: + return + + item.sticky = sticky + + self.Refresh(False) + self.Update() + + + def GetToolSticky(self, tool_id): + """ + Returns whether the toolbar item identified by `tool_id` has a sticky + behaviour or not. + + :param `tool_id`: the L{AuiToolBarItem} identifier. + """ + + item = self.FindTool(tool_id) + if not item: + return + + return item.sticky + + + def SetToolBorderPadding(self, padding): + """ + Sets the padding between the tool border and the label. + + :param `padding`: the padding in pixels. + """ + + self._tool_border_padding = padding + + + def GetToolBorderPadding(self): + """ Returns the padding between the tool border and the label, in pixels. """ + + return self._tool_border_padding + + + def SetToolTextOrientation(self, orientation): + """ + Sets the label orientation for the toolbar items. + + :param `orientation`: the L{AuiToolBarItem} label orientation. + """ + + self._tool_text_orientation = orientation + + if self._art: + self._art.SetTextOrientation(orientation) + + + def GetToolTextOrientation(self): + """ Returns the label orientation for the toolbar items. """ + + return self._tool_text_orientation + + + def SetToolOrientation(self, orientation): + """ + Sets the tool orientation for the toolbar items. + + :param `orientation`: the L{AuiToolBarItem} orientation. + """ + + self._tool_orientation = orientation + if self._art: + self._art.SetOrientation(orientation) + + + def GetToolOrientation(self): + """ Returns the orientation for the toolbar items. """ + + return self._tool_orientation + + + def SetToolPacking(self, packing): + """ + Sets the value used for spacing tools. The default value is 1 pixel. + + :param `packing`: the value for packing. + """ + + self._tool_packing = packing + + + def GetToolPacking(self): + """ Returns the value used for spacing tools. The default value is 1 pixel. """ + + return self._tool_packing + + + def SetOrientation(self, orientation): + """ + Sets the toolbar orientation. + + :param `orientation`: either ``wx.VERTICAL`` or ``wx.HORIZONTAL``. + + :note: This can be temporarily overridden by L{AuiManager} when floating and + docking a L{AuiToolBar}. + """ + + pass + + + def SetMargins(self, left=-1, right=-1, top=-1, bottom=-1): + """ + Set the values to be used as margins for the toolbar. + + :param `left`: the left toolbar margin; + :param `right`: the right toolbar margin; + :param `top`: the top toolbar margin; + :param `bottom`: the bottom toolbar margin. + """ + + if left != -1: + self._left_padding = left + if right != -1: + self._right_padding = right + if top != -1: + self._top_padding = top + if bottom != -1: + self._bottom_padding = bottom + + + def SetMarginsSize(self, size): + """ + Set the values to be used as margins for the toolbar. + + :param `size`: the margin size (an instance of `wx.Size`). + """ + + self.SetMargins(size.x, size.x, size.y, size.y) + + + def SetMarginsXY(self, x, y): + """ + Set the values to be used as margins for the toolbar. + + :param `x`: left margin, right margin and inter-tool separation value; + :param `y`: top margin, bottom margin and inter-tool separation value. + """ + + self.SetMargins(x, x, y, y) + + + def GetGripperVisible(self): + """ Returns whether the toolbar gripper is visible or not. """ + + return self._gripper_visible + + + def SetGripperVisible(self, visible): + """ + Sets whether the toolbar gripper is visible or not. + + :param `visible`: ``True`` for a visible gripper, ``False`` otherwise. + """ + + self._gripper_visible = visible + if visible: + self._agwStyle |= AUI_TB_GRIPPER + else: + self._agwStyle &= ~AUI_TB_GRIPPER + + self.Realize() + self.Refresh(False) + + + def GetOverflowVisible(self): + """ Returns whether the overflow button is visible or not. """ + + return self._overflow_visible + + + def SetOverflowVisible(self, visible): + """ + Sets whether the overflow button is visible or not. + + :param `visible`: ``True`` for a visible overflow button, ``False`` otherwise. + """ + + self._overflow_visible = visible + if visible: + self._agwStyle |= AUI_TB_OVERFLOW + else: + self._agwStyle &= ~AUI_TB_OVERFLOW + + self.Refresh(False) + + + def SetFont(self, font): + """ + Sets the L{AuiToolBar} font. + + :param `font`: a `wx.Font` object. + + :note: Overridden from `wx.PyControl`. + """ + + res = wx.PyControl.SetFont(self, font) + + if self._art: + self._art.SetFont(font) + + return res + + + def SetHoverItem(self, pitem): + """ + Sets a toolbar item to be currently hovered by the mouse. + + :param `pitem`: an instance of L{AuiToolBarItem}. + """ + + former_hover = None + + for item in self._items: + + if item.state & AUI_BUTTON_STATE_HOVER: + former_hover = item + + item.state &= ~AUI_BUTTON_STATE_HOVER + + if pitem: + pitem.state |= AUI_BUTTON_STATE_HOVER + + if former_hover != pitem: + self.Refresh(False) + self.Update() + + + def SetPressedItem(self, pitem): + """ + Sets a toolbar item to be currently in a "pressed" state. + + :param `pitem`: an instance of L{AuiToolBarItem}. + """ + + former_item = None + + for item in self._items: + + if item.state & AUI_BUTTON_STATE_PRESSED: + former_item = item + + item.state &= ~AUI_BUTTON_STATE_PRESSED + + if pitem: + pitem.state &= ~AUI_BUTTON_STATE_HOVER + pitem.state |= AUI_BUTTON_STATE_PRESSED + + if former_item != pitem: + self.Refresh(False) + self.Update() + + + def RefreshOverflowState(self): + """ Refreshes the overflow button. """ + + if not self._overflow_sizer_item: + self._overflow_state = 0 + return + + overflow_state = 0 + overflow_rect = self.GetOverflowRect() + + # find out the mouse's current position + pt = wx.GetMousePosition() + pt = self.ScreenToClient(pt) + + # find out if the mouse cursor is inside the dropdown rectangle + if overflow_rect.Contains((pt.x, pt.y)): + + if _VERSION_STRING < "2.9": + leftDown = wx.GetMouseState().LeftDown() + else: + leftDown = wx.GetMouseState().LeftIsDown() + + if leftDown: + overflow_state = AUI_BUTTON_STATE_PRESSED + else: + overflow_state = AUI_BUTTON_STATE_HOVER + + if overflow_state != self._overflow_state: + self._overflow_state = overflow_state + self.Refresh(False) + self.Update() + + self._overflow_state = overflow_state + + + def ToggleTool(self, tool_id, state): + """ + Toggles a tool on or off. This does not cause any event to get emitted. + + :param `tool_id`: tool in question. + :param `state`: if ``True``, toggles the tool on, otherwise toggles it off. + + :note: This only applies to a tool that has been specified as a toggle tool. + """ + + tool = self.FindTool(tool_id) + + if tool: + if tool.kind not in [ITEM_CHECK, ITEM_RADIO]: + return + + if tool.kind == ITEM_RADIO: + idx = self.GetToolIndex(tool_id) + if idx >= 0 and idx < len(self._items): + for i in xrange(idx, len(self._items)): + tool = self.FindToolByIndex(i) + if tool.kind != ITEM_RADIO: + break + tool.state &= ~AUI_BUTTON_STATE_CHECKED + + for i in xrange(idx, -1, -1): + tool = self.FindToolByIndex(i) + if tool.kind != ITEM_RADIO: + break + tool.state &= ~AUI_BUTTON_STATE_CHECKED + + tool = self.FindTool(tool_id) + tool.state |= AUI_BUTTON_STATE_CHECKED + else: + if state == True: + tool.state |= AUI_BUTTON_STATE_CHECKED + else: + tool.state &= ~AUI_BUTTON_STATE_CHECKED + + + def GetToolToggled(self, tool_id): + """ + Returns whether a tool is toggled or not. + + :param `tool_id`: the toolbar item identifier. + + :note: This only applies to a tool that has been specified as a toggle tool. + """ + + tool = self.FindTool(tool_id) + + if tool: + if tool.kind not in [ITEM_CHECK, ITEM_RADIO]: + return False + + return (tool.state & AUI_BUTTON_STATE_CHECKED and [True] or [False])[0] + + return False + + + def EnableTool(self, tool_id, state): + """ + Enables or disables the tool. + + :param `tool_id`: identifier for the tool to enable or disable. + :param `state`: if ``True``, enables the tool, otherwise disables it. + """ + + tool = self.FindTool(tool_id) + + if tool: + + if state == True: + tool.state &= ~AUI_BUTTON_STATE_DISABLED + else: + tool.state |= AUI_BUTTON_STATE_DISABLED + + + def GetToolEnabled(self, tool_id): + """ + Returns whether the tool identified by `tool_id` is enabled or not. + + :param `tool_id`: the tool identifier. + """ + + tool = self.FindTool(tool_id) + + if tool: + return (tool.state & AUI_BUTTON_STATE_DISABLED and [False] or [True])[0] + + return False + + + def GetToolLabel(self, tool_id): + """ + Returns the tool label for the tool identified by `tool_id`. + + :param `tool_id`: the tool identifier. + """ + + tool = self.FindTool(tool_id) + if not tool: + return "" + + return tool.label + + + def SetToolLabel(self, tool_id, label): + """ + Sets the tool label for the tool identified by `tool_id`. + + :param `tool_id`: the tool identifier; + :param `label`: the new toolbar item label. + """ + + tool = self.FindTool(tool_id) + if tool: + tool.label = label + + + def GetToolBitmap(self, tool_id): + """ + Returns the tool bitmap for the tool identified by `tool_id`. + + :param `tool_id`: the tool identifier. + """ + + tool = self.FindTool(tool_id) + if not tool: + return wx.NullBitmap + + return tool.bitmap + + + def SetToolBitmap(self, tool_id, bitmap): + """ + Sets the tool bitmap for the tool identified by `tool_id`. + + :param `tool_id`: the tool identifier; + :param `bitmap`: the new bitmap for the toolbar item (an instance of `wx.Bitmap`). + """ + + tool = self.FindTool(tool_id) + if tool: + tool.bitmap = bitmap + + + def SetToolNormalBitmap(self, tool_id, bitmap): + """ + Sets the tool bitmap for the tool identified by `tool_id`. + + :param `tool_id`: the tool identifier; + :param `bitmap`: the new bitmap for the toolbar item (an instance of `wx.Bitmap`). + """ + + self.SetToolBitmap(tool_id, bitmap) + + + def SetToolDisabledBitmap(self, tool_id, bitmap): + """ + Sets the tool disabled bitmap for the tool identified by `tool_id`. + + :param `tool_id`: the tool identifier; + :param `bitmap`: the new disabled bitmap for the toolbar item (an instance of `wx.Bitmap`). + """ + + tool = self.FindTool(tool_id) + if tool: + tool.disabled_bitmap = bitmap + + + def GetToolShortHelp(self, tool_id): + """ + Returns the short help for the given tool. + + :param `tool_id`: the tool identifier. + """ + + tool = self.FindTool(tool_id) + if not tool: + return "" + + return tool.short_help + + + def SetToolShortHelp(self, tool_id, help_string): + """ + Sets the short help for the given tool. + + :param `tool_id`: the tool identifier; + :param `help_string`: the string for the short help. + """ + + tool = self.FindTool(tool_id) + if tool: + tool.short_help = help_string + + + def GetToolLongHelp(self, tool_id): + """ + Returns the long help for the given tool. + + :param `tool_id`: the tool identifier. + """ + + tool = self.FindTool(tool_id) + if not tool: + return "" + + return tool.long_help + + + def SetToolAlignment(self, alignment=wx.EXPAND): + """ + This sets the alignment for all of the tools within the + toolbar (only has an effect when the toolbar is expanded). + + :param `alignment`: `wx.Sizer` alignment value + (``wx.ALIGN_CENTER_HORIZONTAL`` or ``wx.ALIGN_CENTER_VERTICAL``). + """ + + self._tool_alignment = alignment + + + + def SetToolLongHelp(self, tool_id, help_string): + """ + Sets the long help for the given tool. + + :param `tool_id`: the tool identifier; + :param `help_string`: the string for the long help. + """ + + tool = self.FindTool(tool_id) + if tool: + tool.long_help = help_string + + + def SetCustomOverflowItems(self, prepend, append): + """ + Sets the two lists `prepend` and `append` as custom overflow items. + + :param `prepend`: a list of L{AuiToolBarItem} to be prepended; + :param `append`: a list of L{AuiToolBarItem} to be appended. + """ + + self._custom_overflow_prepend = prepend + self._custom_overflow_append = append + + + def GetToolCount(self): + """ Returns the number of tools in the L{AuiToolBar}. """ + + return len(self._items) + + + def GetToolIndex(self, tool_id): + """ + Returns the position of the tool in the toolbar given its identifier. + + :param `tool_id`: the toolbar item identifier. + """ + + # this will prevent us from returning the index of the + # first separator in the toolbar since its id is equal to -1 + if tool_id == -1: + return wx.NOT_FOUND + + for i, item in enumerate(self._items): + if item.id == tool_id: + return i + + return wx.NOT_FOUND + + + def GetToolPos(self, tool_id): + """ + Returns the position of the tool in the toolbar given its identifier. + + :param `tool_id`: the toolbar item identifier. + """ + + return self.GetToolIndex(tool_id) + + + def GetToolFitsByIndex(self, tool_id): + """ + Returns whether the tool identified by `tool_id` fits into the toolbar or not. + + :param `tool_id`: the toolbar item identifier. + """ + + if tool_id < 0 or tool_id >= len(self._items): + return False + + if not self._items[tool_id].sizer_item: + return False + + cli_w, cli_h = self.GetClientSize() + rect = self._items[tool_id].sizer_item.GetRect() + + if self._agwStyle & AUI_TB_VERTICAL: + # take the dropdown size into account + if self._overflow_visible: + cli_h -= self._overflow_sizer_item.GetSize().y + + if rect.y+rect.height < cli_h: + return True + + else: + + # take the dropdown size into account + if self._overflow_visible: + cli_w -= self._overflow_sizer_item.GetSize().x + + if rect.x+rect.width < cli_w: + return True + + return False + + + def GetToolFits(self, tool_id): + """ + Returns whether the tool identified by `tool_id` fits into the toolbar or not. + + :param `tool_id`: the toolbar item identifier. + """ + + return self.GetToolFitsByIndex(self.GetToolIndex(tool_id)) + + + def GetToolRect(self, tool_id): + """ + Returns the toolbar item rectangle + + :param `tool_id`: the toolbar item identifier. + """ + + tool = self.FindTool(tool_id) + if tool and tool.sizer_item: + return tool.sizer_item.GetRect() + + return wx.Rect() + + + def GetToolBarFits(self): + """ Returns whether the L{AuiToolBar} size fits in a specified size. """ + + if len(self._items) == 0: + # empty toolbar always 'fits' + return True + + # entire toolbar content fits if the last tool fits + return self.GetToolFitsByIndex(len(self._items) - 1) + + + def Realize(self): + """ Realizes the toolbar. This function should be called after you have added tools. """ + + dc = wx.ClientDC(self) + + if not dc.IsOk(): + return False + + horizontal = True + if self._agwStyle & AUI_TB_VERTICAL: + horizontal = False + + # create the new sizer to add toolbar elements to + sizer = wx.BoxSizer((horizontal and [wx.HORIZONTAL] or [wx.VERTICAL])[0]) + + # add gripper area + separator_size = self._art.GetElementSize(AUI_TBART_SEPARATOR_SIZE) + gripper_size = self._art.GetElementSize(AUI_TBART_GRIPPER_SIZE) + + if gripper_size > 0 and self._gripper_visible: + if horizontal: + self._gripper_sizer_item = sizer.Add((gripper_size, 1), 0, wx.EXPAND) + else: + self._gripper_sizer_item = sizer.Add((1, gripper_size), 0, wx.EXPAND) + else: + self._gripper_sizer_item = None + + # add "left" padding + if self._left_padding > 0: + if horizontal: + sizer.Add((self._left_padding, 1)) + else: + sizer.Add((1, self._left_padding)) + + count = len(self._items) + for i, item in enumerate(self._items): + + sizer_item = None + kind = item.kind + + if kind == ITEM_LABEL: + + size = self._art.GetLabelSize(dc, self, item) + sizer_item = sizer.Add((size.x + (self._tool_border_padding*2), + size.y + (self._tool_border_padding*2)), + item.proportion, + item.alignment) + if i+1 < count: + sizer.AddSpacer(self._tool_packing) + + + elif kind in [ITEM_CHECK, ITEM_NORMAL, ITEM_RADIO]: + + size = self._art.GetToolSize(dc, self, item) + sizer_item = sizer.Add((size.x + (self._tool_border_padding*2), + size.y + (self._tool_border_padding*2)), + 0, + item.alignment) + # add tool packing + if i+1 < count: + sizer.AddSpacer(self._tool_packing) + + elif kind == ITEM_SEPARATOR: + + if horizontal: + sizer_item = sizer.Add((separator_size, 1), 0, wx.EXPAND) + else: + sizer_item = sizer.Add((1, separator_size), 0, wx.EXPAND) + + # add tool packing + if i+1 < count: + sizer.AddSpacer(self._tool_packing) + + elif kind == ITEM_SPACER: + + if item.proportion > 0: + sizer_item = sizer.AddStretchSpacer(item.proportion) + else: + sizer_item = sizer.Add((item.spacer_pixels, 1)) + + elif kind == ITEM_CONTROL: + + vert_sizer = wx.BoxSizer(wx.VERTICAL) + vert_sizer.AddStretchSpacer(1) + ctrl_sizer_item = vert_sizer.Add(item.window, 0, wx.EXPAND) + vert_sizer.AddStretchSpacer(1) + + if self._agwStyle & AUI_TB_TEXT and \ + self._tool_text_orientation == AUI_TBTOOL_TEXT_BOTTOM and \ + item.GetLabel() != "": + + s = self.GetLabelSize(item.GetLabel()) + vert_sizer.Add((1, s.y)) + + sizer_item = sizer.Add(vert_sizer, item.proportion, wx.EXPAND) + min_size = item.min_size + + # proportional items will disappear from the toolbar if + # their min width is not set to something really small + if item.proportion != 0: + min_size.x = 1 + + if min_size.IsFullySpecified(): + sizer.SetItemMinSize(vert_sizer, min_size) + vert_sizer.SetItemMinSize(item.window, min_size) + + # add tool packing + if i+1 < count: + sizer.AddSpacer(self._tool_packing) + + item.sizer_item = sizer_item + + + # add "right" padding + if self._right_padding > 0: + if horizontal: + sizer.Add((self._right_padding, 1)) + else: + sizer.Add((1, self._right_padding)) + + # add drop down area + self._overflow_sizer_item = None + + if self._agwStyle & AUI_TB_OVERFLOW: + + overflow_size = self._art.GetElementSize(AUI_TBART_OVERFLOW_SIZE) + if overflow_size > 0 and self._overflow_visible: + + if horizontal: + self._overflow_sizer_item = sizer.Add((overflow_size, 1), 0, wx.EXPAND) + else: + self._overflow_sizer_item = sizer.Add((1, overflow_size), 0, wx.EXPAND) + + else: + + self._overflow_sizer_item = None + + # the outside sizer helps us apply the "top" and "bottom" padding + outside_sizer = wx.BoxSizer((horizontal and [wx.VERTICAL] or [wx.HORIZONTAL])[0]) + + # add "top" padding + if self._top_padding > 0: + + if horizontal: + outside_sizer.Add((1, self._top_padding)) + else: + outside_sizer.Add((self._top_padding, 1)) + + # add the sizer that contains all of the toolbar elements + outside_sizer.Add(sizer, 1, self._tool_alignment) + + # add "bottom" padding + if self._bottom_padding > 0: + + if horizontal: + outside_sizer.Add((1, self._bottom_padding)) + else: + outside_sizer.Add((self._bottom_padding, 1)) + + del self._sizer # remove old sizer + self._sizer = outside_sizer + self.SetSizer(outside_sizer) + + # calculate the rock-bottom minimum size + for item in self._items: + + if item.sizer_item and item.proportion > 0 and item.min_size.IsFullySpecified(): + item.sizer_item.SetMinSize((0, 0)) + + self._absolute_min_size = self._sizer.GetMinSize() + + # reset the min sizes to what they were + for item in self._items: + + if item.sizer_item and item.proportion > 0 and item.min_size.IsFullySpecified(): + item.sizer_item.SetMinSize(item.min_size) + + # set control size + size = self._sizer.GetMinSize() + self.SetMinSize(size) + self._minWidth = size.x + self._minHeight = size.y + + if self._agwStyle & AUI_TB_NO_AUTORESIZE == 0: + + cur_size = self.GetClientSize() + new_size = self.GetMinSize() + + if new_size != cur_size: + + self.SetClientSize(new_size) + + else: + + self._sizer.SetDimension(0, 0, cur_size.x, cur_size.y) + + else: + + cur_size = self.GetClientSize() + self._sizer.SetDimension(0, 0, cur_size.x, cur_size.y) + + self.Refresh(False) + return True + + + def GetOverflowState(self): + """ Returns the state of the overflow button. """ + + return self._overflow_state + + + def GetOverflowRect(self): + """ Returns the rectangle of the overflow button. """ + + cli_rect = wx.RectPS(wx.Point(0, 0), self.GetClientSize()) + overflow_rect = wx.Rect(*self._overflow_sizer_item.GetRect()) + overflow_size = self._art.GetElementSize(AUI_TBART_OVERFLOW_SIZE) + + if self._agwStyle & AUI_TB_VERTICAL: + + overflow_rect.y = cli_rect.height - overflow_size + overflow_rect.x = 0 + overflow_rect.width = cli_rect.width + overflow_rect.height = overflow_size + + else: + + overflow_rect.x = cli_rect.width - overflow_size + overflow_rect.y = 0 + overflow_rect.width = overflow_size + overflow_rect.height = cli_rect.height + + return overflow_rect + + + def GetLabelSize(self, label): + """ + Returns the standard size of a toolbar item. + + :param `label`: a test label. + """ + + dc = wx.ClientDC(self) + dc.SetFont(self._font) + + return GetLabelSize(dc, label, self._tool_orientation != AUI_TBTOOL_HORIZONTAL) + + + def GetAuiManager(self): + """ Returns the L{AuiManager} which manages the toolbar. """ + + try: + return self._auiManager + except AttributeError: + return False + + + def SetAuiManager(self, auiManager): + """ Sets the L{AuiManager} which manages the toolbar. """ + + self._auiManager = auiManager + + + def DoIdleUpdate(self): + """ Updates the toolbar during idle times. """ + + handler = self.GetEventHandler() + if not handler: + return + + need_refresh = False + + for item in self._items: + + if item.id == -1: + continue + + evt = wx.UpdateUIEvent(item.id) + evt.SetEventObject(self) + + if handler.ProcessEvent(evt): + + if evt.GetSetEnabled(): + + if item.window: + is_enabled = item.window.IsEnabled() + else: + is_enabled = (item.state & AUI_BUTTON_STATE_DISABLED and [False] or [True])[0] + + new_enabled = evt.GetEnabled() + if new_enabled != is_enabled: + + if item.window: + item.window.Enable(new_enabled) + else: + if new_enabled: + item.state &= ~AUI_BUTTON_STATE_DISABLED + else: + item.state |= AUI_BUTTON_STATE_DISABLED + + need_refresh = True + + if evt.GetSetChecked(): + + # make sure we aren't checking an item that can't be + if item.kind != ITEM_CHECK and item.kind != ITEM_RADIO: + continue + + is_checked = (item.state & AUI_BUTTON_STATE_CHECKED and [True] or [False])[0] + new_checked = evt.GetChecked() + + if new_checked != is_checked: + + if new_checked: + item.state |= AUI_BUTTON_STATE_CHECKED + else: + item.state &= ~AUI_BUTTON_STATE_CHECKED + + need_refresh = True + + if need_refresh: + self.Refresh(False) + + + def OnSize(self, event): + """ + Handles the ``wx.EVT_SIZE`` event for L{AuiToolBar}. + + :param `event`: a `wx.SizeEvent` event to be processed. + """ + + x, y = self.GetClientSize() + realize = False + + if x > y: + self.SetOrientation(wx.HORIZONTAL) + else: + self.SetOrientation(wx.VERTICAL) + + if (x >= y and self._absolute_min_size.x > x) or (y > x and self._absolute_min_size.y > y): + + # hide all flexible items + for item in self._items: + if item.sizer_item and item.proportion > 0 and item.sizer_item.IsShown(): + item.sizer_item.Show(False) + item.sizer_item.SetProportion(0) + + if self._originalStyle & AUI_TB_OVERFLOW: + if not self.GetOverflowVisible(): + self.SetOverflowVisible(True) + realize = True + + else: + + if self._originalStyle & AUI_TB_OVERFLOW and not self._custom_overflow_append and \ + not self._custom_overflow_prepend: + if self.GetOverflowVisible(): + self.SetOverflowVisible(False) + realize = True + + # show all flexible items + for item in self._items: + if item.sizer_item and item.proportion > 0 and not item.sizer_item.IsShown(): + item.sizer_item.Show(True) + item.sizer_item.SetProportion(item.proportion) + + self._sizer.SetDimension(0, 0, x, y) + + if realize: + self.Realize() + else: + self.Refresh(False) + + self.Update() + + + def DoSetSize(self, x, y, width, height, sizeFlags=wx.SIZE_AUTO): + """ + Sets the position and size of the window in pixels. The `sizeFlags` + parameter indicates the interpretation of the other params if they are + equal to -1. + + :param `x`: the window `x` position; + :param `y`: the window `y` position; + :param `width`: the window width; + :param `height`: the window height; + :param `sizeFlags`: may have one of this bit set: + + =================================== ====================================== + Size Flags Description + =================================== ====================================== + ``wx.SIZE_AUTO`` A -1 indicates that a class-specific default should be used. + ``wx.SIZE_AUTO_WIDTH`` A -1 indicates that a class-specific default should be used for the width. + ``wx.SIZE_AUTO_HEIGHT`` A -1 indicates that a class-specific default should be used for the height. + ``wx.SIZE_USE_EXISTING`` Existing dimensions should be used if -1 values are supplied. + ``wx.SIZE_ALLOW_MINUS_ONE`` Allow dimensions of -1 and less to be interpreted as real dimensions, not default values. + ``wx.SIZE_FORCE`` Normally, if the position and the size of the window are already the same as the parameters of this function, nothing is done. but with this flag a window resize may be forced even in this case (supported in wx 2.6.2 and later and only implemented for MSW and ignored elsewhere currently) + =================================== ====================================== + + :note: Overridden from `wx.PyControl`. + """ + + parent_size = self.GetParent().GetClientSize() + if x + width > parent_size.x: + width = max(0, parent_size.x - x) + if y + height > parent_size.y: + height = max(0, parent_size.y - y) + + wx.PyControl.DoSetSize(self, x, y, width, height, sizeFlags) + + + def OnIdle(self, event): + """ + Handles the ``wx.EVT_IDLE`` event for L{AuiToolBar}. + + :param `event`: a `wx.IdleEvent` event to be processed. + """ + + self.DoIdleUpdate() + event.Skip() + + + def DoGetBestSize(self): + """ + Gets the size which best suits the window: for a control, it would be the + minimal size which doesn't truncate the control, for a panel - the same + size as it would have after a call to `Fit()`. + + :note: Overridden from `wx.PyControl`. + """ + + return self._absolute_min_size + + + def OnPaint(self, event): + """ + Handles the ``wx.EVT_PAINT`` event for L{AuiToolBar}. + + :param `event`: a `wx.PaintEvent` event to be processed. + """ + + dc = wx.AutoBufferedPaintDC(self) + cli_rect = wx.RectPS(wx.Point(0, 0), self.GetClientSize()) + + horizontal = True + if self._agwStyle & AUI_TB_VERTICAL: + horizontal = False + + if self._agwStyle & AUI_TB_PLAIN_BACKGROUND: + self._art.DrawPlainBackground(dc, self, cli_rect) + else: + self._art.DrawBackground(dc, self, cli_rect, horizontal) + + gripper_size = self._art.GetElementSize(AUI_TBART_GRIPPER_SIZE) + dropdown_size = self._art.GetElementSize(AUI_TBART_OVERFLOW_SIZE) + + # paint the gripper + if gripper_size > 0 and self._gripper_sizer_item: + gripper_rect = wx.Rect(*self._gripper_sizer_item.GetRect()) + if horizontal: + gripper_rect.width = gripper_size + else: + gripper_rect.height = gripper_size + + self._art.DrawGripper(dc, self, gripper_rect) + + # calculated how far we can draw items + if horizontal: + last_extent = cli_rect.width + else: + last_extent = cli_rect.height + + if self._overflow_visible: + last_extent -= dropdown_size + + # paint each individual tool + for item in self._items: + + if not item.sizer_item: + continue + + item_rect = wx.Rect(*item.sizer_item.GetRect()) + + if (horizontal and item_rect.x + item_rect.width >= last_extent) or \ + (not horizontal and item_rect.y + item_rect.height >= last_extent): + + break + + if item.kind == ITEM_SEPARATOR: + # draw a separator + self._art.DrawSeparator(dc, self, item_rect) + + elif item.kind == ITEM_LABEL: + # draw a text label only + self._art.DrawLabel(dc, self, item, item_rect) + + elif item.kind == ITEM_NORMAL: + # draw a regular button or dropdown button + if not item.dropdown: + self._art.DrawButton(dc, self, item, item_rect) + else: + self._art.DrawDropDownButton(dc, self, item, item_rect) + + elif item.kind == ITEM_CHECK: + # draw a regular toggle button or a dropdown one + if not item.dropdown: + self._art.DrawButton(dc, self, item, item_rect) + else: + self._art.DrawDropDownButton(dc, self, item, item_rect) + + elif item.kind == ITEM_RADIO: + # draw a toggle button + self._art.DrawButton(dc, self, item, item_rect) + + elif item.kind == ITEM_CONTROL: + # draw the control's label + self._art.DrawControlLabel(dc, self, item, item_rect) + + # fire a signal to see if the item wants to be custom-rendered + self.OnCustomRender(dc, item, item_rect) + + # paint the overflow button + if dropdown_size > 0 and self._overflow_sizer_item: + dropdown_rect = self.GetOverflowRect() + self._art.DrawOverflowButton(dc, self, dropdown_rect, self._overflow_state) + + + def OnEraseBackground(self, event): + """ + Handles the ``wx.EVT_ERASE_BACKGROUND`` event for L{AuiToolBar}. + + :param `event`: a `wx.EraseEvent` event to be processed. + + :note: This is intentionally empty, to reduce flicker. + """ + + pass + + + def OnLeftDown(self, event): + """ + Handles the ``wx.EVT_LEFT_DOWN`` event for L{AuiToolBar}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + cli_rect = wx.RectPS(wx.Point(0, 0), self.GetClientSize()) + self.StopPreviewTimer() + + if self._gripper_sizer_item: + + gripper_rect = wx.Rect(*self._gripper_sizer_item.GetRect()) + if gripper_rect.Contains(event.GetPosition()): + + # find aui manager + manager = self.GetAuiManager() + if not manager: + return + + x_drag_offset = event.GetX() - gripper_rect.GetX() + y_drag_offset = event.GetY() - gripper_rect.GetY() + + clientPt = wx.Point(*event.GetPosition()) + screenPt = self.ClientToScreen(clientPt) + managedWindow = manager.GetManagedWindow() + managerClientPt = managedWindow.ScreenToClient(screenPt) + + # gripper was clicked + manager.OnGripperClicked(self, managerClientPt, wx.Point(x_drag_offset, y_drag_offset)) + return + + if self._overflow_sizer_item: + overflow_rect = self.GetOverflowRect() + + if self._art and self._overflow_visible and overflow_rect.Contains(event.GetPosition()): + + e = AuiToolBarEvent(wxEVT_COMMAND_AUITOOLBAR_OVERFLOW_CLICK, -1) + e.SetEventObject(self) + e.SetToolId(-1) + e.SetClickPoint(event.GetPosition()) + processed = self.ProcessEvent(e) + + if processed: + self.DoIdleUpdate() + else: + overflow_items = [] + + # add custom overflow prepend items, if any + count = len(self._custom_overflow_prepend) + for i in xrange(count): + overflow_items.append(self._custom_overflow_prepend[i]) + + # only show items that don't fit in the dropdown + count = len(self._items) + for i in xrange(count): + + if not self.GetToolFitsByIndex(i): + overflow_items.append(self._items[i]) + + # add custom overflow append items, if any + count = len(self._custom_overflow_append) + for i in xrange(count): + overflow_items.append(self._custom_overflow_append[i]) + + res = self._art.ShowDropDown(self, overflow_items) + self._overflow_state = 0 + self.Refresh(False) + if res != -1: + e = wx.CommandEvent(wx.wxEVT_COMMAND_MENU_SELECTED, res) + e.SetEventObject(self) + if not self.GetParent().ProcessEvent(e): + tool = self.FindTool(res) + if tool: + state = (tool.state & AUI_BUTTON_STATE_CHECKED and [True] or [False])[0] + self.ToggleTool(res, not state) + + return + + self._dragging = False + self._action_pos = wx.Point(*event.GetPosition()) + self._action_item = self.FindToolForPosition(*event.GetPosition()) + + if self._action_item: + + if self._action_item.state & AUI_BUTTON_STATE_DISABLED: + + self._action_pos = wx.Point(-1, -1) + self._action_item = None + return + + self.SetPressedItem(self._action_item) + + # fire the tool dropdown event + e = AuiToolBarEvent(wxEVT_COMMAND_AUITOOLBAR_TOOL_DROPDOWN, self._action_item.id) + e.SetEventObject(self) + e.SetToolId(self._action_item.id) + e.SetDropDownClicked(False) + + mouse_x, mouse_y = event.GetX(), event.GetY() + rect = wx.Rect(*self._action_item.sizer_item.GetRect()) + + if self._action_item.dropdown: + if (self._action_item.orientation == AUI_TBTOOL_HORIZONTAL and \ + mouse_x >= (rect.x+rect.width-BUTTON_DROPDOWN_WIDTH-1) and \ + mouse_x < (rect.x+rect.width)) or \ + (self._action_item.orientation != AUI_TBTOOL_HORIZONTAL and \ + mouse_y >= (rect.y+rect.height-BUTTON_DROPDOWN_WIDTH-1) and \ + mouse_y < (rect.y+rect.height)): + + e.SetDropDownClicked(True) + + e.SetClickPoint(event.GetPosition()) + e.SetItemRect(rect) + self.ProcessEvent(e) + self.DoIdleUpdate() + + + def OnLeftUp(self, event): + """ + Handles the ``wx.EVT_LEFT_UP`` event for L{AuiToolBar}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + self.SetPressedItem(None) + + hit_item = self.FindToolForPosition(*event.GetPosition()) + + if hit_item and not hit_item.state & AUI_BUTTON_STATE_DISABLED: + self.SetHoverItem(hit_item) + + if self._dragging: + # reset drag and drop member variables + self._dragging = False + self._action_pos = wx.Point(-1, -1) + self._action_item = None + + else: + + if self._action_item and hit_item == self._action_item: + self.SetToolTipString("") + + if hit_item.kind in [ITEM_CHECK, ITEM_RADIO]: + toggle = not (self._action_item.state & AUI_BUTTON_STATE_CHECKED) + self.ToggleTool(self._action_item.id, toggle) + + # repaint immediately + self.Refresh(False) + self.Update() + + e = wx.CommandEvent(wx.wxEVT_COMMAND_MENU_SELECTED, self._action_item.id) + e.SetEventObject(self) + e.SetInt(toggle) + self._action_pos = wx.Point(-1, -1) + self._action_item = None + + self.ProcessEvent(e) + self.DoIdleUpdate() + + else: + + if self._action_item.id == ID_RESTORE_FRAME: + # find aui manager + manager = self.GetAuiManager() + + if not manager: + return + + pane = manager.GetPane(self) + e = framemanager.AuiManagerEvent(framemanager.wxEVT_AUI_PANE_MIN_RESTORE) + + e.SetManager(manager) + e.SetPane(pane) + + manager.ProcessEvent(e) + self.DoIdleUpdate() + + else: + + e = wx.CommandEvent(wx.wxEVT_COMMAND_MENU_SELECTED, self._action_item.id) + e.SetEventObject(self) + self.ProcessEvent(e) + self.DoIdleUpdate() + + # reset drag and drop member variables + self._dragging = False + self._action_pos = wx.Point(-1, -1) + self._action_item = None + + + def OnRightDown(self, event): + """ + Handles the ``wx.EVT_RIGHT_DOWN`` event for L{AuiToolBar}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + cli_rect = wx.RectPS(wx.Point(0, 0), self.GetClientSize()) + + if self._gripper_sizer_item: + gripper_rect = self._gripper_sizer_item.GetRect() + if gripper_rect.Contains(event.GetPosition()): + return + + if self._overflow_sizer_item: + + dropdown_size = self._art.GetElementSize(AUI_TBART_OVERFLOW_SIZE) + if dropdown_size > 0 and event.m_x > cli_rect.width - dropdown_size and \ + event.m_y >= 0 and event.m_y < cli_rect.height and self._art: + return + + self._action_pos = wx.Point(*event.GetPosition()) + self._action_item = self.FindToolForPosition(*event.GetPosition()) + + if self._action_item: + if self._action_item.state & AUI_BUTTON_STATE_DISABLED: + + self._action_pos = wx.Point(-1, -1) + self._action_item = None + return + + + def OnRightUp(self, event): + """ + Handles the ``wx.EVT_RIGHT_UP`` event for L{AuiToolBar}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + hit_item = self.FindToolForPosition(*event.GetPosition()) + + if self._action_item and hit_item == self._action_item: + + e = AuiToolBarEvent(wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK, self._action_item.id) + e.SetEventObject(self) + e.SetToolId(self._action_item.id) + e.SetClickPoint(self._action_pos) + self.ProcessEvent(e) + self.DoIdleUpdate() + + else: + + # right-clicked on the invalid area of the toolbar + e = AuiToolBarEvent(wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK, -1) + e.SetEventObject(self) + e.SetToolId(-1) + e.SetClickPoint(self._action_pos) + self.ProcessEvent(e) + self.DoIdleUpdate() + + # reset member variables + self._action_pos = wx.Point(-1, -1) + self._action_item = None + + + def OnMiddleDown(self, event): + """ + Handles the ``wx.EVT_MIDDLE_DOWN`` event for L{AuiToolBar}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + cli_rect = wx.RectPS(wx.Point(0, 0), self.GetClientSize()) + + if self._gripper_sizer_item: + + gripper_rect = self._gripper_sizer_item.GetRect() + if gripper_rect.Contains(event.GetPosition()): + return + + if self._overflow_sizer_item: + + dropdown_size = self._art.GetElementSize(AUI_TBART_OVERFLOW_SIZE) + if dropdown_size > 0 and event.m_x > cli_rect.width - dropdown_size and \ + event.m_y >= 0 and event.m_y < cli_rect.height and self._art: + return + + self._action_pos = wx.Point(*event.GetPosition()) + self._action_item = self.FindToolForPosition(*event.GetPosition()) + + if self._action_item: + if self._action_item.state & AUI_BUTTON_STATE_DISABLED: + + self._action_pos = wx.Point(-1, -1) + self._action_item = None + return + + + def OnMiddleUp(self, event): + """ + Handles the ``wx.EVT_MIDDLE_UP`` event for L{AuiToolBar}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + hit_item = self.FindToolForPosition(*event.GetPosition()) + + if self._action_item and hit_item == self._action_item: + if hit_item.kind == ITEM_NORMAL: + + e = AuiToolBarEvent(wxEVT_COMMAND_AUITOOLBAR_MIDDLE_CLICK, self._action_item.id) + e.SetEventObject(self) + e.SetToolId(self._action_item.id) + e.SetClickPoint(self._action_pos) + self.ProcessEvent(e) + self.DoIdleUpdate() + + # reset member variables + self._action_pos = wx.Point(-1, -1) + self._action_item = None + + + def OnMotion(self, event): + """ + Handles the ``wx.EVT_MOTION`` event for L{AuiToolBar}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + # start a drag event + if not self._dragging and self._action_item != None and self._action_pos != wx.Point(-1, -1) and \ + abs(event.m_x - self._action_pos.x) + abs(event.m_y - self._action_pos.y) > 5: + + self.SetToolTipString("") + self._dragging = True + + e = AuiToolBarEvent(wxEVT_COMMAND_AUITOOLBAR_BEGIN_DRAG, self.GetId()) + e.SetEventObject(self) + e.SetToolId(self._action_item.id) + self.ProcessEvent(e) + self.DoIdleUpdate() + return + + hit_item = self.FindToolForPosition(*event.GetPosition()) + + if hit_item: + if not hit_item.state & AUI_BUTTON_STATE_DISABLED: + self.SetHoverItem(hit_item) + else: + self.SetHoverItem(None) + + else: + # no hit item, remove any hit item + self.SetHoverItem(hit_item) + + # figure out tooltips + packing_hit_item = self.FindToolForPositionWithPacking(*event.GetPosition()) + + if packing_hit_item: + + if packing_hit_item != self._tip_item: + self._tip_item = packing_hit_item + + if packing_hit_item.short_help != "": + self.StartPreviewTimer() + self.SetToolTipString(packing_hit_item.short_help) + else: + self.SetToolTipString("") + self.StopPreviewTimer() + + else: + + self.SetToolTipString("") + self._tip_item = None + self.StopPreviewTimer() + + # if we've pressed down an item and we're hovering + # over it, make sure it's state is set to pressed + if self._action_item: + + if self._action_item == hit_item: + self.SetPressedItem(self._action_item) + else: + self.SetPressedItem(None) + + # figure out the dropdown button state (are we hovering or pressing it?) + self.RefreshOverflowState() + + + def OnLeaveWindow(self, event): + """ + Handles the ``wx.EVT_LEAVE_WINDOW`` event for L{AuiToolBar}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + self.RefreshOverflowState() + self.SetHoverItem(None) + self.SetPressedItem(None) + + self._tip_item = None + self.StopPreviewTimer() + + + def OnSetCursor(self, event): + """ + Handles the ``wx.EVT_SET_CURSOR`` event for L{AuiToolBar}. + + :param `event`: a `wx.SetCursorEvent` event to be processed. + """ + + cursor = wx.NullCursor + + if self._gripper_sizer_item: + + gripper_rect = self._gripper_sizer_item.GetRect() + if gripper_rect.Contains((event.GetX(), event.GetY())): + cursor = wx.StockCursor(wx.CURSOR_SIZING) + + event.SetCursor(cursor) + + + def OnCustomRender(self, dc, item, rect): + """ + Handles custom render for single L{AuiToolBar} items. + + :param `dc`: a `wx.DC` device context; + :param `item`: an instance of L{AuiToolBarItem}; + :param `rect`: the toolbar item rect. + + :note: This method must be overridden to provide custom rendering of items. + """ + + pass + + + def IsPaneMinimized(self): + """ Returns whether this L{AuiToolBar} contains a minimized pane tool. """ + + manager = self.GetAuiManager() + if not manager: + return False + + if manager.GetAGWFlags() & AUI_MGR_PREVIEW_MINIMIZED_PANES == 0: + # No previews here + return False + + self_name = manager.GetPane(self).name + + if not self_name.endswith("_min"): + # Wrong tool name + return False + + return self_name[0:-4] + + + def StartPreviewTimer(self): + """ Starts a timer in L{AuiManager} to slide-in/slide-out the minimized pane. """ + + self_name = self.IsPaneMinimized() + if not self_name: + return + + manager = self.GetAuiManager() + manager.StartPreviewTimer(self) + + + def StopPreviewTimer(self): + """ Stops a timer in L{AuiManager} to slide-in/slide-out the minimized pane. """ + + self_name = self.IsPaneMinimized() + if not self_name: + return + + manager = self.GetAuiManager() + manager.StopPreviewTimer() + diff --git a/agw/aui/auibar.pyc b/agw/aui/auibar.pyc new file mode 100644 index 0000000..de1403e Binary files /dev/null and b/agw/aui/auibar.pyc differ diff --git a/agw/aui/auibook.py b/agw/aui/auibook.py new file mode 100644 index 0000000..abae4a3 --- /dev/null +++ b/agw/aui/auibook.py @@ -0,0 +1,5736 @@ +""" +auibook contains a notebook control which implements many features common in +applications with dockable panes. Specifically, L{AuiNotebook} implements functionality +which allows the user to rearrange tab order via drag-and-drop, split the tab window +into many different splitter configurations, and toggle through different themes to +customize the control's look and feel. + +An effort has been made to try to maintain an API as similar to that of `wx.Notebook`. + +The default theme that is used is L{AuiDefaultTabArt}, which provides a modern, glossy +look and feel. The theme can be changed by calling L{AuiNotebook.SetArtProvider}. +""" + +__author__ = "Andrea Gavana " +__date__ = "31 March 2009" + + +import wx +import types +import datetime + +from wx.lib.expando import ExpandoTextCtrl + +import framemanager +import tabart as TA + +from aui_utilities import LightColour, MakeDisabledBitmap, TabDragImage +from aui_utilities import TakeScreenShot, RescaleScreenShot + +from aui_constants import * + +# AuiNotebook events +wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSED = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_BUTTON = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_END_DRAG = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_DRAG_DONE = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_DOWN = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_DOWN = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_UP = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_TAB_DCLICK = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_BG_MIDDLE_DOWN = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_BG_MIDDLE_UP = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_BG_RIGHT_DOWN = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_BG_RIGHT_UP = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_BG_DCLICK = wx.NewEventType() + +# Define a new event for a drag cancelled +wxEVT_COMMAND_AUINOTEBOOK_CANCEL_DRAG = wx.NewEventType() + +# Define events for editing a tab label +wxEVT_COMMAND_AUINOTEBOOK_BEGIN_LABEL_EDIT = wx.NewEventType() +wxEVT_COMMAND_AUINOTEBOOK_END_LABEL_EDIT = wx.NewEventType() + +# Create event binders +EVT_AUINOTEBOOK_PAGE_CLOSE = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE, 1) +""" A tab in `AuiNotebook` is being closed. Can be vetoed by calling `Veto()`. """ +EVT_AUINOTEBOOK_PAGE_CLOSED = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSED, 1) +""" A tab in `AuiNotebook` has been closed. """ +EVT_AUINOTEBOOK_PAGE_CHANGED = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED, 1) +""" The page selection was changed. """ +EVT_AUINOTEBOOK_PAGE_CHANGING = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, 1) +""" The page selection is being changed. """ +EVT_AUINOTEBOOK_BUTTON = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_BUTTON, 1) +""" The user clicked on a button in the `AuiNotebook` tab area. """ +EVT_AUINOTEBOOK_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, 1) +""" A drag-and-drop operation on a notebook tab has started. """ +EVT_AUINOTEBOOK_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, 1) +""" A drag-and-drop operation on a notebook tab has finished. """ +EVT_AUINOTEBOOK_DRAG_MOTION = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, 1) +""" A drag-and-drop operation on a notebook tab is ongoing. """ +EVT_AUINOTEBOOK_ALLOW_DND = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND, 1) +""" Fires an event asking if it is OK to drag and drop a tab. """ +EVT_AUINOTEBOOK_DRAG_DONE = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_DRAG_DONE, 1) +""" A drag-and-drop operation on a notebook tab has finished. """ +EVT_AUINOTEBOOK_TAB_MIDDLE_DOWN = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_DOWN, 1) +""" The user clicked with the middle mouse button on a tab. """ +EVT_AUINOTEBOOK_TAB_MIDDLE_UP = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP, 1) +""" The user clicked with the middle mouse button on a tab. """ +EVT_AUINOTEBOOK_TAB_RIGHT_DOWN = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_DOWN, 1) +""" The user clicked with the right mouse button on a tab. """ +EVT_AUINOTEBOOK_TAB_RIGHT_UP = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_UP, 1) +""" The user clicked with the right mouse button on a tab. """ +EVT_AUINOTEBOOK_BG_MIDDLE_DOWN = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_BG_MIDDLE_DOWN, 1) +""" The user middle-clicked in the tab area but not over a tab or a button. """ +EVT_AUINOTEBOOK_BG_MIDDLE_UP = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_BG_MIDDLE_UP, 1) +""" The user middle-clicked in the tab area but not over a tab or a button. """ +EVT_AUINOTEBOOK_BG_RIGHT_DOWN = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_BG_RIGHT_DOWN, 1) +""" The user right-clicked in the tab area but not over a tab or a button. """ +EVT_AUINOTEBOOK_BG_RIGHT_UP = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_BG_RIGHT_UP, 1) +""" The user right-clicked in the tab area but not over a tab or a button. """ +EVT_AUINOTEBOOK_BG_DCLICK = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_BG_DCLICK, 1) +""" The user left-clicked on the tab area not occupied by `AuiNotebook` tabs. """ +EVT_AUINOTEBOOK_CANCEL_DRAG = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_CANCEL_DRAG, 1) +""" A drag and drop operation has been cancelled. """ +EVT_AUINOTEBOOK_TAB_DCLICK = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_TAB_DCLICK, 1) +""" The user double-clicked with the left mouse button on a tab. """ +EVT_AUINOTEBOOK_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_LABEL_EDIT, 1) +""" The user double-clicked with the left mouse button on a tab which text is editable. """ +EVT_AUINOTEBOOK_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_AUINOTEBOOK_END_LABEL_EDIT, 1) +""" The user finished editing a tab label. """ + + +# ----------------------------------------------------------------------------- +# Auxiliary class: TabTextCtrl +# This is the temporary ExpandoTextCtrl created when you edit the text of a tab +# ----------------------------------------------------------------------------- + +class TabTextCtrl(ExpandoTextCtrl): + """ Control used for in-place edit. """ + + def __init__(self, owner, tab, page_index): + """ + Default class constructor. + For internal use: do not call it in your code! + + :param `owner`: the L{AuiTabCtrl} owning the tab; + :param `tab`: the actual L{AuiNotebookPage} tab; + :param `page_index`: the L{AuiNotebook} page index for the tab. + """ + + self._owner = owner + self._tabEdited = tab + self._pageIndex = page_index + self._startValue = tab.caption + self._finished = False + self._aboutToFinish = False + self._currentValue = self._startValue + + x, y, w, h = self._tabEdited.rect + + wnd = self._tabEdited.control + if wnd: + x += wnd.GetSize()[0] + 2 + h = 0 + + image_h = 0 + image_w = 0 + + image = tab.bitmap + + if image.IsOk(): + image_w, image_h = image.GetWidth(), image.GetHeight() + image_w += 6 + + dc = wx.ClientDC(self._owner) + h = max(image_h, dc.GetMultiLineTextExtent(tab.caption)[1]) + h = h + 2 + + # FIXME: what are all these hardcoded 4, 8 and 11s really? + x += image_w + w -= image_w + 4 + + y = (self._tabEdited.rect.height - h)/2 + 1 + + expandoStyle = wx.WANTS_CHARS + if wx.Platform in ["__WXGTK__", "__WXMAC__"]: + expandoStyle |= wx.SIMPLE_BORDER + xSize, ySize = w + 2, h + else: + expandoStyle |= wx.SUNKEN_BORDER + xSize, ySize = w + 2, h+2 + + ExpandoTextCtrl.__init__(self, self._owner, wx.ID_ANY, self._startValue, + wx.Point(x, y), wx.Size(xSize, ySize), + expandoStyle) + + if wx.Platform == "__WXMAC__": + self.SetFont(owner.GetFont()) + bs = self.GetBestSize() + self.SetSize((-1, bs.height)) + + self.Bind(wx.EVT_CHAR, self.OnChar) + self.Bind(wx.EVT_KEY_UP, self.OnKeyUp) + self.Bind(wx.EVT_KILL_FOCUS, self.OnKillFocus) + + + def AcceptChanges(self): + """ Accepts/refuses the changes made by the user. """ + + value = self.GetValue() + notebook = self._owner.GetParent() + + if value == self._startValue: + # nothing changed, always accept + # when an item remains unchanged, the owner + # needs to be notified that the user decided + # not to change the tree item label, and that + # the edit has been cancelled + notebook.OnRenameCancelled(self._pageIndex) + return True + + if not notebook.OnRenameAccept(self._pageIndex, value): + # vetoed by the user + return False + + # accepted, do rename the item + notebook.SetPageText(self._pageIndex, value) + + return True + + + def Finish(self): + """ Finish editing. """ + + if not self._finished: + + notebook = self._owner.GetParent() + + self._finished = True + self._owner.SetFocus() + notebook.ResetTextControl() + + + def OnChar(self, event): + """ + Handles the ``wx.EVT_CHAR`` event for L{TabTextCtrl}. + + :param `event`: a `wx.KeyEvent` event to be processed. + """ + + keycode = event.GetKeyCode() + shiftDown = event.ShiftDown() + + if keycode == wx.WXK_RETURN: + if shiftDown and self._tabEdited.IsMultiline(): + event.Skip() + else: + self._aboutToFinish = True + self.SetValue(self._currentValue) + # Notify the owner about the changes + self.AcceptChanges() + # Even if vetoed, close the control (consistent with MSW) + wx.CallAfter(self.Finish) + + elif keycode == wx.WXK_ESCAPE: + self.StopEditing() + + else: + event.Skip() + + + def OnKeyUp(self, event): + """ + Handles the ``wx.EVT_KEY_UP`` event for L{TabTextCtrl}. + + :param `event`: a `wx.KeyEvent` event to be processed. + """ + + if not self._finished: + + # auto-grow the textctrl: + mySize = self.GetSize() + + dc = wx.ClientDC(self) + sx, sy, dummy = dc.GetMultiLineTextExtent(self.GetValue() + "M") + + self.SetSize((sx, -1)) + self._currentValue = self.GetValue() + + event.Skip() + + + def OnKillFocus(self, event): + """ + Handles the ``wx.EVT_KILL_FOCUS`` event for L{TabTextCtrl}. + + :param `event`: a `wx.FocusEvent` event to be processed. + """ + + if not self._finished and not self._aboutToFinish: + + # We must finish regardless of success, otherwise we'll get + # focus problems: + if not self.AcceptChanges(): + self._owner.GetParent().OnRenameCancelled(self._pageIndex) + + # We must let the native text control handle focus, too, otherwise + # it could have problems with the cursor (e.g., in wxGTK). + event.Skip() + wx.CallAfter(self._owner.GetParent().ResetTextControl) + + + def StopEditing(self): + """ Suddenly stops the editing. """ + + self._owner.GetParent().OnRenameCancelled(self._pageIndex) + self.Finish() + + + def item(self): + """ Returns the item currently edited. """ + + return self._tabEdited + + +# ---------------------------------------------------------------------- + +class AuiNotebookPage(object): + """ + A simple class which holds information about tab captions, bitmaps and + colours. + """ + + def __init__(self): + """ + Default class constructor. + Used internally, do not call it in your code! + """ + + self.window = None # page's associated window + self.caption = "" # caption displayed on the tab + self.bitmap = wx.NullBitmap # tab's bitmap + self.dis_bitmap = wx.NullBitmap # tab's disabled bitmap + self.rect = wx.Rect() # tab's hit rectangle + self.active = False # True if the page is currently active + self.enabled = True # True if the page is currently enabled + self.hasCloseButton = True # True if the page has a close button using the style + # AUI_NB_CLOSE_ON_ALL_TABS + self.control = None # A control can now be inside a tab + self.renamable = False # If True, a tab can be renamed by a left double-click + + self.text_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_BTNTEXT) + + self.access_time = datetime.datetime.now() # Last time this page was selected + + + def IsMultiline(self): + """ Returns whether the tab contains multiline text. """ + + return "\n" in self.caption + + +# ---------------------------------------------------------------------- + +class AuiTabContainerButton(object): + """ + A simple class which holds information about tab buttons and their state. + """ + + def __init__(self): + """ + Default class constructor. + Used internally, do not call it in your code! + """ + + self.id = -1 # button's id + self.cur_state = AUI_BUTTON_STATE_NORMAL # current state (normal, hover, pressed, etc.) + self.location = wx.LEFT # buttons location (wxLEFT, wxRIGHT, or wxCENTER) + self.bitmap = wx.NullBitmap # button's hover bitmap + self.dis_bitmap = wx.NullBitmap # button's disabled bitmap + self.rect = wx.Rect() # button's hit rectangle + + +# ---------------------------------------------------------------------- + +class CommandNotebookEvent(wx.PyCommandEvent): + """ A specialized command event class for events sent by L{AuiNotebook} . """ + + def __init__(self, command_type=None, win_id=0): + """ + Default class constructor. + + :param `command_type`: the event kind or an instance of `wx.PyCommandEvent`. + :param `win_id`: the window identification number. + """ + + if type(command_type) == types.IntType: + wx.PyCommandEvent.__init__(self, command_type, win_id) + else: + wx.PyCommandEvent.__init__(self, command_type.GetEventType(), command_type.GetId()) + + self.old_selection = -1 + self.selection = -1 + self.drag_source = None + self.dispatched = 0 + self.label = "" + self.editCancelled = False + + + def SetSelection(self, s): + """ + Sets the selection member variable. + + :param `s`: the new selection. + """ + + self.selection = s + self._commandInt = s + + + def GetSelection(self): + """ Returns the currently selected page, or -1 if none was selected. """ + + return self.selection + + + def SetOldSelection(self, s): + """ + Sets the id of the page selected before the change. + + :param `s`: the old selection. + """ + + self.old_selection = s + + + def GetOldSelection(self): + """ + Returns the page that was selected before the change, or -1 if none was + selected. + """ + + return self.old_selection + + + def SetDragSource(self, s): + """ + Sets the drag and drop source. + + :param `s`: the drag source. + """ + + self.drag_source = s + + + def GetDragSource(self): + """ Returns the drag and drop source. """ + + return self.drag_source + + + def SetDispatched(self, b): + """ + Sets the event as dispatched (used for automatic L{AuiNotebook} ). + + :param `b`: whether the event was dispatched or not. + """ + + self.dispatched = b + + + def GetDispatched(self): + """ Returns whether the event was dispatched (used for automatic L{AuiNotebook} ). """ + + return self.dispatched + + + def IsEditCancelled(self): + """ Returns the edit cancel flag (for ``EVT_AUINOTEBOOK_BEGIN`` | ``END_LABEL_EDIT`` only).""" + + return self.editCancelled + + + def SetEditCanceled(self, editCancelled): + """ + Sets the edit cancel flag (for ``EVT_AUINOTEBOOK_BEGIN`` | ``END_LABEL_EDIT`` only). + + :param `editCancelled`: whether the editing action has been cancelled or not. + """ + + self.editCancelled = editCancelled + + + def GetLabel(self): + """Returns the label-itemtext (for ``EVT_AUINOTEBOOK_BEGIN`` | ``END_LABEL_EDIT`` only).""" + + return self.label + + + def SetLabel(self, label): + """ + Sets the label. Useful only for ``EVT_AUINOTEBOOK_END_LABEL_EDIT``. + + :param `label`: the new label. + """ + + self.label = label + + +# ---------------------------------------------------------------------- + +class AuiNotebookEvent(CommandNotebookEvent): + """ A specialized command event class for events sent by L{AuiNotebook}. """ + + def __init__(self, command_type=None, win_id=0): + """ + Default class constructor. + + :param `command_type`: the event kind or an instance of `wx.PyCommandEvent`. + :param `win_id`: the window identification number. + """ + + CommandNotebookEvent.__init__(self, command_type, win_id) + + if type(command_type) == types.IntType: + self.notify = wx.NotifyEvent(command_type, win_id) + else: + self.notify = wx.NotifyEvent(command_type.GetEventType(), command_type.GetId()) + + + def GetNotifyEvent(self): + """ Returns the actual `wx.NotifyEvent`. """ + + return self.notify + + + def IsAllowed(self): + """ Returns whether the event is allowed or not. """ + + return self.notify.IsAllowed() + + + def Veto(self): + """ + Prevents the change announced by this event from happening. + + It is in general a good idea to notify the user about the reasons for + vetoing the change because otherwise the applications behaviour (which + just refuses to do what the user wants) might be quite surprising. + """ + + self.notify.Veto() + + + def Allow(self): + """ + This is the opposite of L{Veto}: it explicitly allows the event to be + processed. For most events it is not necessary to call this method as the + events are allowed anyhow but some are forbidden by default (this will + be mentioned in the corresponding event description). + """ + + self.notify.Allow() + + +# ---------------------------------------------------------------------------- # +# Class TabNavigatorWindow +# ---------------------------------------------------------------------------- # + +class TabNavigatorWindow(wx.Dialog): + """ + This class is used to create a modal dialog that enables "Smart Tabbing", + similar to what you would get by hitting ``Alt`` + ``Tab`` on Windows. + """ + + def __init__(self, parent=None, icon=None): + """ + Default class constructor. Used internally. + + :param `parent`: the L{TabNavigatorWindow} parent; + :param `icon`: the L{TabNavigatorWindow} icon. + """ + + wx.Dialog.__init__(self, parent, wx.ID_ANY, "", style=0) + + self._selectedItem = -1 + self._indexMap = [] + + if icon is None: + self._bmp = Mondrian.GetBitmap() + else: + self._bmp = icon + + if self._bmp.GetSize() != (16, 16): + img = self._bmp.ConvertToImage() + img.Rescale(16, 16, wx.IMAGE_QUALITY_HIGH) + self._bmp = wx.BitmapFromImage(img) + + sz = wx.BoxSizer(wx.VERTICAL) + + self._listBox = wx.ListBox(self, wx.ID_ANY, wx.DefaultPosition, wx.Size(200, 150), [], wx.LB_SINGLE | wx.NO_BORDER) + + mem_dc = wx.MemoryDC() + mem_dc.SelectObject(wx.EmptyBitmap(1,1)) + font = wx.SystemSettings_GetFont(wx.SYS_DEFAULT_GUI_FONT) + font.SetWeight(wx.BOLD) + mem_dc.SetFont(font) + + panelHeight = mem_dc.GetCharHeight() + panelHeight += 4 # Place a spacer of 2 pixels + + # Out signpost bitmap is 24 pixels + if panelHeight < 24: + panelHeight = 24 + + self._panel = wx.Panel(self, wx.ID_ANY, wx.DefaultPosition, wx.Size(200, panelHeight)) + + sz.Add(self._panel) + sz.Add(self._listBox, 1, wx.EXPAND) + + self.SetSizer(sz) + + # Connect events to the list box + self._listBox.Bind(wx.EVT_KEY_UP, self.OnKeyUp) + self._listBox.Bind(wx.EVT_NAVIGATION_KEY, self.OnNavigationKey) + self._listBox.Bind(wx.EVT_LISTBOX_DCLICK, self.OnItemSelected) + + # Connect paint event to the panel + self._panel.Bind(wx.EVT_PAINT, self.OnPanelPaint) + self._panel.Bind(wx.EVT_ERASE_BACKGROUND, self.OnPanelEraseBg) + + self.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_3DFACE)) + self._listBox.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_3DFACE)) + self.PopulateListControl(parent) + + self.GetSizer().Fit(self) + self.GetSizer().SetSizeHints(self) + self.GetSizer().Layout() + self.Centre() + + # Set focus on the list box to avoid having to click on it to change + # the tab selection under GTK. + self._listBox.SetFocus() + + + def OnKeyUp(self, event): + """ + Handles the ``wx.EVT_KEY_UP`` for the L{TabNavigatorWindow}. + + :param `event`: a `wx.KeyEvent` event to be processed. + """ + + if event.GetKeyCode() == wx.WXK_CONTROL: + self.CloseDialog() + + + def OnNavigationKey(self, event): + """ + Handles the ``wx.EVT_NAVIGATION_KEY`` for the L{TabNavigatorWindow}. + + :param `event`: a `wx.NavigationKeyEvent` event to be processed. + """ + + selected = self._listBox.GetSelection() + bk = self.GetParent() + maxItems = bk.GetPageCount() + + if event.GetDirection(): + + # Select next page + if selected == maxItems - 1: + itemToSelect = 0 + else: + itemToSelect = selected + 1 + + else: + + # Previous page + if selected == 0: + itemToSelect = maxItems - 1 + else: + itemToSelect = selected - 1 + + self._listBox.SetSelection(itemToSelect) + + + def PopulateListControl(self, book): + """ + Populates the L{TabNavigatorWindow} listbox with a list of tabs. + + :param `book`: the actual L{AuiNotebook}. + """ + # Index of currently selected page + selection = book.GetSelection() + # Total number of pages + count = book.GetPageCount() + # List of (index, AuiNotebookPage) + pages = list(enumerate(book.GetTabContainer().GetPages())) + if book.GetAGWWindowStyleFlag() & AUI_NB_ORDER_BY_ACCESS: + # Sort pages using last access time. Most recently used is the + # first in line + pages.sort( + key = lambda element: element[1].access_time, + reverse = True + ) + else: + # Manually add the current selection as first item + # Remaining ones are added in the next loop + del pages[selection] + self._listBox.Append(book.GetPageText(selection)) + self._indexMap.append(selection) + + for (index, page) in pages: + self._listBox.Append(book.GetPageText(index)) + self._indexMap.append(index) + + # Select the next entry after the current selection + self._listBox.SetSelection(0) + dummy = wx.NavigationKeyEvent() + dummy.SetDirection(True) + self.OnNavigationKey(dummy) + + + def OnItemSelected(self, event): + """ + Handles the ``wx.EVT_LISTBOX_DCLICK`` event for the wx.ListBox inside L{TabNavigatorWindow}. + + :param `event`: a `wx.ListEvent` event to be processed. + """ + + self.CloseDialog() + + + def CloseDialog(self): + """ Closes the L{TabNavigatorWindow} dialog, setting selection in L{AuiNotebook}. """ + + bk = self.GetParent() + self._selectedItem = self._listBox.GetSelection() + self.EndModal(wx.ID_OK) + + + def GetSelectedPage(self): + """ Gets the page index that was selected when the dialog was closed. """ + + return self._indexMap[self._selectedItem] + + + def OnPanelPaint(self, event): + """ + Handles the ``wx.EVT_PAINT`` event for L{TabNavigatorWindow} top panel. + + :param `event`: a `wx.PaintEvent` event to be processed. + """ + + dc = wx.PaintDC(self._panel) + rect = self._panel.GetClientRect() + + bmp = wx.EmptyBitmap(rect.width, rect.height) + + mem_dc = wx.MemoryDC() + mem_dc.SelectObject(bmp) + + endColour = wx.SystemSettings_GetColour(wx.SYS_COLOUR_BTNSHADOW) + startColour = LightColour(endColour, 50) + mem_dc.GradientFillLinear(rect, startColour, endColour, wx.SOUTH) + + # Draw the caption title and place the bitmap + # get the bitmap optimal position, and draw it + bmpPt, txtPt = wx.Point(), wx.Point() + bmpPt.y = (rect.height - self._bmp.GetHeight())/2 + bmpPt.x = 3 + mem_dc.DrawBitmap(self._bmp, bmpPt.x, bmpPt.y, True) + + # get the text position, and draw it + font = wx.SystemSettings_GetFont(wx.SYS_DEFAULT_GUI_FONT) + font.SetWeight(wx.BOLD) + mem_dc.SetFont(font) + fontHeight = mem_dc.GetCharHeight() + + txtPt.x = bmpPt.x + self._bmp.GetWidth() + 4 + txtPt.y = (rect.height - fontHeight)/2 + mem_dc.SetTextForeground(wx.WHITE) + mem_dc.DrawText("Opened tabs:", txtPt.x, txtPt.y) + mem_dc.SelectObject(wx.NullBitmap) + + dc.DrawBitmap(bmp, 0, 0) + + + def OnPanelEraseBg(self, event): + """ + Handles the ``wx.EVT_ERASE_BACKGROUND`` event for L{TabNavigatorWindow} top panel. + + :param `event`: a `wx.EraseEvent` event to be processed. + + :note: This is intentionally empty, to reduce flicker. + """ + + pass + + +# ---------------------------------------------------------------------- +# -- AuiTabContainer class implementation -- + +class AuiTabContainer(object): + """ + AuiTabContainer is a class which contains information about each + tab. It also can render an entire tab control to a specified DC. + It's not a window class itself, because this code will be used by + the L{AuiManager}, where it is disadvantageous to have separate + windows for each tab control in the case of "docked tabs". + + A derived class, L{AuiTabCtrl}, is an actual `wx.Window`-derived window + which can be used as a tab control in the normal sense. + """ + + def __init__(self, auiNotebook): + """ + Default class constructor. + Used internally, do not call it in your code! + + :param `auiNotebook`: the parent L{AuiNotebook} window. + """ + + self._tab_offset = 0 + self._agwFlags = 0 + self._art = TA.AuiDefaultTabArt() + + self._buttons = [] + self._pages = [] + self._tab_close_buttons = [] + + self._rect = wx.Rect() + self._auiNotebook = auiNotebook + + self.AddButton(AUI_BUTTON_LEFT, wx.LEFT) + self.AddButton(AUI_BUTTON_RIGHT, wx.RIGHT) + self.AddButton(AUI_BUTTON_WINDOWLIST, wx.RIGHT) + self.AddButton(AUI_BUTTON_CLOSE, wx.RIGHT) + + + def SetArtProvider(self, art): + """ + Instructs L{AuiTabContainer} to use art provider specified by parameter `art` + for all drawing calls. This allows plugable look-and-feel features. + + :param `art`: an art provider. + + :note: The previous art provider object, if any, will be deleted by L{AuiTabContainer}. + """ + + del self._art + self._art = art + + if self._art: + self._art.SetAGWFlags(self._agwFlags) + + + def GetArtProvider(self): + """ Returns the current art provider being used. """ + + return self._art + + + def SetAGWFlags(self, agwFlags): + """ + Sets the tab art flags. + + :param `agwFlags`: a combination of the following values: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_NB_TOP`` With this style, tabs are drawn along the top of the notebook + ``AUI_NB_LEFT`` With this style, tabs are drawn along the left of the notebook. Not implemented yet + ``AUI_NB_RIGHT`` With this style, tabs are drawn along the right of the notebook. Not implemented yet + ``AUI_NB_BOTTOM`` With this style, tabs are drawn along the bottom of the notebook + ``AUI_NB_TAB_SPLIT`` Allows the tab control to be split by dragging a tab + ``AUI_NB_TAB_MOVE`` Allows a tab to be moved horizontally by dragging + ``AUI_NB_TAB_EXTERNAL_MOVE`` Allows a tab to be moved to another tab control + ``AUI_NB_TAB_FIXED_WIDTH`` With this style, all tabs have the same width + ``AUI_NB_SCROLL_BUTTONS`` With this style, left and right scroll buttons are displayed + ``AUI_NB_WINDOWLIST_BUTTON`` With this style, a drop-down list of windows is available + ``AUI_NB_CLOSE_BUTTON`` With this style, a close button is available on the tab bar + ``AUI_NB_CLOSE_ON_ACTIVE_TAB`` With this style, a close button is available on the active tab + ``AUI_NB_CLOSE_ON_ALL_TABS`` With this style, a close button is available on all tabs + ``AUI_NB_MIDDLE_CLICK_CLOSE`` Allows to close L{AuiNotebook} tabs by mouse middle button click + ``AUI_NB_SUB_NOTEBOOK`` This style is used by L{AuiManager} to create automatic AuiNotebooks + ``AUI_NB_HIDE_ON_SINGLE_TAB`` Hides the tab window if only one tab is present + ``AUI_NB_SMART_TABS`` Use Smart Tabbing, like ``Alt`` + ``Tab`` on Windows + ``AUI_NB_USE_IMAGES_DROPDOWN`` Uses images on dropdown window list menu instead of check items + ``AUI_NB_CLOSE_ON_TAB_LEFT`` Draws the tab close button on the left instead of on the right (a la Camino browser) + ``AUI_NB_TAB_FLOAT`` Allows the floating of single tabs. Known limitation: when the notebook is more or less full screen, tabs cannot be dragged far enough outside of the notebook to become floating pages + ``AUI_NB_DRAW_DND_TAB`` Draws an image representation of a tab while dragging (on by default) + ``AUI_NB_ORDER_BY_ACCESS`` Tab navigation order by last access time for the tabs + ``AUI_NB_NO_TAB_FOCUS`` Don't draw tab focus rectangle + ==================================== ================================== + + :todo: Implementation of flags ``AUI_NB_RIGHT`` and ``AUI_NB_LEFT``. + + """ + + self._agwFlags = agwFlags + + # check for new close button settings + self.RemoveButton(AUI_BUTTON_LEFT) + self.RemoveButton(AUI_BUTTON_RIGHT) + self.RemoveButton(AUI_BUTTON_WINDOWLIST) + self.RemoveButton(AUI_BUTTON_CLOSE) + + if agwFlags & AUI_NB_SCROLL_BUTTONS: + self.AddButton(AUI_BUTTON_LEFT, wx.LEFT) + self.AddButton(AUI_BUTTON_RIGHT, wx.RIGHT) + + if agwFlags & AUI_NB_WINDOWLIST_BUTTON: + self.AddButton(AUI_BUTTON_WINDOWLIST, wx.RIGHT) + + if agwFlags & AUI_NB_CLOSE_BUTTON: + self.AddButton(AUI_BUTTON_CLOSE, wx.RIGHT) + + if self._art: + self._art.SetAGWFlags(self._agwFlags) + + + def GetAGWFlags(self): + """ + Returns the tab art flags. + + See L{SetAGWFlags} for a list of possible return values. + + :see: L{SetAGWFlags} + """ + + return self._agwFlags + + + def SetNormalFont(self, font): + """ + Sets the normal font for drawing tab labels. + + :param `font`: a `wx.Font` object. + """ + + self._art.SetNormalFont(font) + + + def SetSelectedFont(self, font): + """ + Sets the selected tab font for drawing tab labels. + + :param `font`: a `wx.Font` object. + """ + + self._art.SetSelectedFont(font) + + + def SetMeasuringFont(self, font): + """ + Sets the font for calculating text measurements. + + :param `font`: a `wx.Font` object. + """ + + self._art.SetMeasuringFont(font) + + + def SetTabRect(self, rect): + """ + Sets the tab area rectangle. + + :param `rect`: an instance of `wx.Rect`, specifying the available area for L{AuiTabContainer}. + """ + + self._rect = rect + + if self._art: + minMaxTabWidth = self._auiNotebook.GetMinMaxTabWidth() + self._art.SetSizingInfo(rect.GetSize(), len(self._pages), minMaxTabWidth) + + + def AddPage(self, page, info): + """ + Adds a page to the tab control. + + :param `page`: the window associated with this tab; + :param `info`: an instance of L{AuiNotebookPage}. + """ + + page_info = info + page_info.window = page + + self._pages.append(page_info) + + # let the art provider know how many pages we have + if self._art: + minMaxTabWidth = self._auiNotebook.GetMinMaxTabWidth() + self._art.SetSizingInfo(self._rect.GetSize(), len(self._pages), minMaxTabWidth) + + return True + + + def InsertPage(self, page, info, idx): + """ + Inserts a page in the tab control in the position specified by `idx`. + + :param `page`: the window associated with this tab; + :param `info`: an instance of L{AuiNotebookPage}; + :param `idx`: the page insertion index. + """ + + page_info = info + page_info.window = page + + if idx >= len(self._pages): + self._pages.append(page_info) + else: + self._pages.insert(idx, page_info) + + # let the art provider know how many pages we have + if self._art: + minMaxTabWidth = self._auiNotebook.GetMinMaxTabWidth() + self._art.SetSizingInfo(self._rect.GetSize(), len(self._pages), minMaxTabWidth) + + return True + + + def MovePage(self, page, new_idx): + """ + Moves a page in a new position specified by `new_idx`. + + :param `page`: the window associated with this tab; + :param `new_idx`: the new page position. + """ + + idx = self.GetIdxFromWindow(page) + if idx == -1: + return False + + # get page entry, make a copy of it + p = self.GetPage(idx) + + # remove old page entry + self.RemovePage(page) + + # insert page where it should be + self.InsertPage(page, p, new_idx) + + return True + + + def RemovePage(self, wnd): + """ + Removes a page from the tab control. + + :param `wnd`: an instance of `wx.Window`, a window associated with this tab. + """ + + minMaxTabWidth = self._auiNotebook.GetMinMaxTabWidth() + + for page in self._pages: + if page.window == wnd: + self._pages.remove(page) + self._tab_offset = min(self._tab_offset, len(self._pages) - 1) + + # let the art provider know how many pages we have + if self._art: + self._art.SetSizingInfo(self._rect.GetSize(), len(self._pages), minMaxTabWidth) + + return True + + return False + + + def SetActivePage(self, wndOrInt): + """ + Sets the L{AuiTabContainer} active page. + + :param `wndOrInt`: an instance of `wx.Window` or an integer specifying a tab index. + """ + + if type(wndOrInt) == types.IntType: + + if wndOrInt >= len(self._pages): + return False + + wnd = self._pages[wndOrInt].window + + else: + wnd = wndOrInt + + found = False + + for indx, page in enumerate(self._pages): + if page.window == wnd: + page.active = True + found = True + else: + page.active = False + + return found + + + def SetNoneActive(self): + """ Sets all the tabs as inactive (non-selected). """ + + for page in self._pages: + page.active = False + + + def GetActivePage(self): + """ Returns the current selected tab or ``wx.NOT_FOUND`` if none is selected. """ + + for indx, page in enumerate(self._pages): + if page.active: + return indx + + return wx.NOT_FOUND + + + def GetWindowFromIdx(self, idx): + """ + Returns the window associated with the tab with index `idx`. + + :param `idx`: the tab index. + """ + + if idx >= len(self._pages): + return None + + return self._pages[idx].window + + + def GetIdxFromWindow(self, wnd): + """ + Returns the tab index based on the window `wnd` associated with it. + + :param `wnd`: an instance of `wx.Window`. + """ + + for indx, page in enumerate(self._pages): + if page.window == wnd: + return indx + + return wx.NOT_FOUND + + + def GetPage(self, idx): + """ + Returns the page specified by the given index. + + :param `idx`: the tab index. + """ + + if idx < 0 or idx >= len(self._pages): + raise Exception("Invalid Page index") + + return self._pages[idx] + + + def GetPages(self): + """ Returns a list of all the pages in this L{AuiTabContainer}. """ + + return self._pages + + + def GetPageCount(self): + """ Returns the number of pages in the L{AuiTabContainer}. """ + + return len(self._pages) + + + def GetEnabled(self, idx): + """ + Returns whether a tab is enabled or not. + + :param `idx`: the tab index. + """ + + if idx < 0 or idx >= len(self._pages): + return False + + return self._pages[idx].enabled + + + def EnableTab(self, idx, enable=True): + """ + Enables/disables a tab in the L{AuiTabContainer}. + + :param `idx`: the tab index; + :param `enable`: ``True`` to enable a tab, ``False`` to disable it. + """ + + if idx < 0 or idx >= len(self._pages): + raise Exception("Invalid Page index") + + self._pages[idx].enabled = enable + wnd = self.GetWindowFromIdx(idx) + wnd.Enable(enable) + + + def AddButton(self, id, location, normal_bitmap=wx.NullBitmap, disabled_bitmap=wx.NullBitmap): + """ + Adds a button in the tab area. + + :param `id`: the button identifier. This can be one of the following: + + ============================== ================================= + Button Identifier Description + ============================== ================================= + ``AUI_BUTTON_CLOSE`` Shows a close button on the tab area + ``AUI_BUTTON_WINDOWLIST`` Shows a window list button on the tab area + ``AUI_BUTTON_LEFT`` Shows a left button on the tab area + ``AUI_BUTTON_RIGHT`` Shows a right button on the tab area + ============================== ================================= + + :param `location`: the button location. Can be ``wx.LEFT`` or ``wx.RIGHT``; + :param `normal_bitmap`: the bitmap for an enabled tab; + :param `disabled_bitmap`: the bitmap for a disabled tab. + """ + + button = AuiTabContainerButton() + button.id = id + button.bitmap = normal_bitmap + button.dis_bitmap = disabled_bitmap + button.location = location + button.cur_state = AUI_BUTTON_STATE_NORMAL + + self._buttons.append(button) + + + def RemoveButton(self, id): + """ + Removes a button from the tab area. + + :param `id`: the button identifier. See L{AddButton} for a list of button identifiers. + + :see: L{AddButton} + """ + + for button in self._buttons: + if button.id == id: + self._buttons.remove(button) + return + + + def GetTabOffset(self): + """ Returns the tab offset. """ + + return self._tab_offset + + + def SetTabOffset(self, offset): + """ + Sets the tab offset. + + :param `offset`: the tab offset. + """ + + self._tab_offset = offset + + + def MinimizeTabOffset(self, dc, wnd, max_width): + """ + Minimize `self._tab_offset` to fit as many tabs as possible in the available space. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: an instance of `wx.Window`; + :param `max_width`: the maximum available width for the tabs. + """ + + total_width = 0 + + for i, page in reversed(list(enumerate(self._pages))): + + tab_button = self._tab_close_buttons[i] + (tab_width, tab_height), x_extent = self._art.GetTabSize(dc, wnd, page.caption, page.bitmap, page.active, tab_button.cur_state, page.control) + total_width += tab_width + + if total_width > max_width: + + tab_offset = i + 1 + + if tab_offset < self._tab_offset and tab_offset < len(self._pages): + self._tab_offset = tab_offset + + break + + if i == 0: + self._tab_offset = 0 + + + def Render(self, raw_dc, wnd): + """ + Renders the tab catalog to the specified `wx.DC`. + + It is a virtual function and can be overridden to provide custom drawing + capabilities. + + :param `raw_dc`: a `wx.DC` device context; + :param `wnd`: an instance of `wx.Window`. + """ + + if not raw_dc or not raw_dc.IsOk(): + return + + dc = wx.MemoryDC() + + # use the same layout direction as the window DC uses to ensure that the + # text is rendered correctly + dc.SetLayoutDirection(raw_dc.GetLayoutDirection()) + + page_count = len(self._pages) + button_count = len(self._buttons) + + # create off-screen bitmap + bmp = wx.EmptyBitmap(self._rect.GetWidth(), self._rect.GetHeight()) + dc.SelectObject(bmp) + + if not dc.IsOk(): + return + + # find out if size of tabs is larger than can be + # afforded on screen + total_width = visible_width = 0 + + for i in xrange(page_count): + page = self._pages[i] + + # determine if a close button is on this tab + close_button = False + if (self._agwFlags & AUI_NB_CLOSE_ON_ALL_TABS and page.hasCloseButton) or \ + (self._agwFlags & AUI_NB_CLOSE_ON_ACTIVE_TAB and page.active and page.hasCloseButton): + + close_button = True + + control = page.control + if control: + try: + control.GetSize() + except wx.PyDeadObjectError: + page.control = None + + size, x_extent = self._art.GetTabSize(dc, wnd, page.caption, page.bitmap, page.active, + (close_button and [AUI_BUTTON_STATE_NORMAL] or \ + [AUI_BUTTON_STATE_HIDDEN])[0], page.control) + + if i+1 < page_count: + total_width += x_extent + else: + total_width += size[0] + + if i >= self._tab_offset: + if i+1 < page_count: + visible_width += x_extent + else: + visible_width += size[0] + + if total_width > self._rect.GetWidth() or self._tab_offset != 0: + + # show left/right buttons + for button in self._buttons: + if button.id == AUI_BUTTON_LEFT or \ + button.id == AUI_BUTTON_RIGHT: + + button.cur_state &= ~AUI_BUTTON_STATE_HIDDEN + + else: + + # hide left/right buttons + for button in self._buttons: + if button.id == AUI_BUTTON_LEFT or \ + button.id == AUI_BUTTON_RIGHT: + + button.cur_state |= AUI_BUTTON_STATE_HIDDEN + + # determine whether left button should be enabled + for button in self._buttons: + if button.id == AUI_BUTTON_LEFT: + if self._tab_offset == 0: + button.cur_state |= AUI_BUTTON_STATE_DISABLED + else: + button.cur_state &= ~AUI_BUTTON_STATE_DISABLED + + if button.id == AUI_BUTTON_RIGHT: + if visible_width < self._rect.GetWidth() - 16*button_count: + button.cur_state |= AUI_BUTTON_STATE_DISABLED + else: + button.cur_state &= ~AUI_BUTTON_STATE_DISABLED + + # draw background + self._art.DrawBackground(dc, wnd, self._rect) + + # draw buttons + left_buttons_width = 0 + right_buttons_width = 0 + + # draw the buttons on the right side + offset = self._rect.x + self._rect.width + + for i in xrange(button_count): + button = self._buttons[button_count - i - 1] + + if button.location != wx.RIGHT: + continue + if button.cur_state & AUI_BUTTON_STATE_HIDDEN: + continue + + button_rect = wx.Rect(*self._rect) + button_rect.SetY(1) + button_rect.SetWidth(offset) + + button.rect = self._art.DrawButton(dc, wnd, button_rect, button, wx.RIGHT) + + offset -= button.rect.GetWidth() + right_buttons_width += button.rect.GetWidth() + + offset = 0 + + # draw the buttons on the left side + for i in xrange(button_count): + button = self._buttons[button_count - i - 1] + + if button.location != wx.LEFT: + continue + if button.cur_state & AUI_BUTTON_STATE_HIDDEN: + continue + + button_rect = wx.Rect(offset, 1, 1000, self._rect.height) + + button.rect = self._art.DrawButton(dc, wnd, button_rect, button, wx.LEFT) + + offset += button.rect.GetWidth() + left_buttons_width += button.rect.GetWidth() + + offset = left_buttons_width + + if offset == 0: + offset += self._art.GetIndentSize() + + # prepare the tab-close-button array + # make sure tab button entries which aren't used are marked as hidden + for i in xrange(page_count, len(self._tab_close_buttons)): + self._tab_close_buttons[i].cur_state = AUI_BUTTON_STATE_HIDDEN + + # make sure there are enough tab button entries to accommodate all tabs + while len(self._tab_close_buttons) < page_count: + tempbtn = AuiTabContainerButton() + tempbtn.id = AUI_BUTTON_CLOSE + tempbtn.location = wx.CENTER + tempbtn.cur_state = AUI_BUTTON_STATE_HIDDEN + self._tab_close_buttons.append(tempbtn) + + # buttons before the tab offset must be set to hidden + for i in xrange(self._tab_offset): + self._tab_close_buttons[i].cur_state = AUI_BUTTON_STATE_HIDDEN + if self._pages[i].control: + if self._pages[i].control.IsShown(): + self._pages[i].control.Hide() + + self.MinimizeTabOffset(dc, wnd, self._rect.GetWidth() - right_buttons_width - offset - 2) + + # draw the tabs + active = 999 + active_offset = 0 + + rect = wx.Rect(*self._rect) + rect.y = 0 + rect.height = self._rect.height + + for i in xrange(self._tab_offset, page_count): + + page = self._pages[i] + tab_button = self._tab_close_buttons[i] + + # determine if a close button is on this tab + if (self._agwFlags & AUI_NB_CLOSE_ON_ALL_TABS and page.hasCloseButton) or \ + (self._agwFlags & AUI_NB_CLOSE_ON_ACTIVE_TAB and page.active and page.hasCloseButton): + + if tab_button.cur_state == AUI_BUTTON_STATE_HIDDEN: + + tab_button.id = AUI_BUTTON_CLOSE + tab_button.cur_state = AUI_BUTTON_STATE_NORMAL + tab_button.location = wx.CENTER + + else: + + tab_button.cur_state = AUI_BUTTON_STATE_HIDDEN + + rect.x = offset + rect.width = self._rect.width - right_buttons_width - offset - 2 + + if rect.width <= 0: + break + + page.rect, tab_button.rect, x_extent = self._art.DrawTab(dc, wnd, page, rect, tab_button.cur_state) + + if page.active: + active = i + active_offset = offset + active_rect = wx.Rect(*rect) + + offset += x_extent + + lenPages = len(self._pages) + # make sure to deactivate buttons which are off the screen to the right + for j in xrange(i+1, len(self._tab_close_buttons)): + self._tab_close_buttons[j].cur_state = AUI_BUTTON_STATE_HIDDEN + if j > 0 and j <= lenPages: + if self._pages[j-1].control: + if self._pages[j-1].control.IsShown(): + self._pages[j-1].control.Hide() + + # draw the active tab again so it stands in the foreground + if active >= self._tab_offset and active < len(self._pages): + + page = self._pages[active] + tab_button = self._tab_close_buttons[active] + + rect.x = active_offset + dummy = self._art.DrawTab(dc, wnd, page, active_rect, tab_button.cur_state) + + raw_dc.Blit(self._rect.x, self._rect.y, self._rect.GetWidth(), self._rect.GetHeight(), dc, 0, 0) + + + def IsTabVisible(self, tabPage, tabOffset, dc, wnd): + """ + Returns whether a tab is visible or not. + + :param `tabPage`: the tab index; + :param `tabOffset`: the tab offset; + :param `dc`: a `wx.DC` device context; + :param `wnd`: an instance of `wx.Window` derived window. + """ + + if not dc or not dc.IsOk(): + return False + + page_count = len(self._pages) + button_count = len(self._buttons) + self.Render(dc, wnd) + + # Hasn't been rendered yet assume it's visible + if len(self._tab_close_buttons) < page_count: + return True + + if self._agwFlags & AUI_NB_SCROLL_BUTTONS: + # First check if both buttons are disabled - if so, there's no need to + # check further for visibility. + arrowButtonVisibleCount = 0 + for i in xrange(button_count): + + button = self._buttons[i] + if button.id == AUI_BUTTON_LEFT or \ + button.id == AUI_BUTTON_RIGHT: + + if button.cur_state & AUI_BUTTON_STATE_HIDDEN == 0: + arrowButtonVisibleCount += 1 + + # Tab must be visible + if arrowButtonVisibleCount == 0: + return True + + # If tab is less than the given offset, it must be invisible by definition + if tabPage < tabOffset: + return False + + # draw buttons + left_buttons_width = 0 + right_buttons_width = 0 + + offset = 0 + + # calculate size of the buttons on the right side + offset = self._rect.x + self._rect.width + + for i in xrange(button_count): + button = self._buttons[button_count - i - 1] + + if button.location != wx.RIGHT: + continue + if button.cur_state & AUI_BUTTON_STATE_HIDDEN: + continue + + offset -= button.rect.GetWidth() + right_buttons_width += button.rect.GetWidth() + + offset = 0 + + # calculate size of the buttons on the left side + for i in xrange(button_count): + button = self._buttons[button_count - i - 1] + + if button.location != wx.LEFT: + continue + if button.cur_state & AUI_BUTTON_STATE_HIDDEN: + continue + + offset += button.rect.GetWidth() + left_buttons_width += button.rect.GetWidth() + + offset = left_buttons_width + + if offset == 0: + offset += self._art.GetIndentSize() + + rect = wx.Rect(*self._rect) + rect.y = 0 + rect.height = self._rect.height + + # See if the given page is visible at the given tab offset (effectively scroll position) + for i in xrange(tabOffset, page_count): + + page = self._pages[i] + tab_button = self._tab_close_buttons[i] + + rect.x = offset + rect.width = self._rect.width - right_buttons_width - offset - 2 + + if rect.width <= 0: + return False # haven't found the tab, and we've run out of space, so return False + + size, x_extent = self._art.GetTabSize(dc, wnd, page.caption, page.bitmap, page.active, tab_button.cur_state, page.control) + offset += x_extent + + if i == tabPage: + + # If not all of the tab is visible, and supposing there's space to display it all, + # we could do better so we return False. + if (self._rect.width - right_buttons_width - offset - 2) <= 0 and (self._rect.width - right_buttons_width - left_buttons_width) > x_extent: + return False + else: + return True + + # Shouldn't really get here, but if it does, assume the tab is visible to prevent + # further looping in calling code. + return True + + + def MakeTabVisible(self, tabPage, win): + """ + Make the tab visible if it wasn't already. + + :param `tabPage`: the tab index; + :param `win`: an instance of `wx.Window` derived window. + """ + + dc = wx.ClientDC(win) + + if not self.IsTabVisible(tabPage, self.GetTabOffset(), dc, win): + for i in xrange(len(self._pages)): + if self.IsTabVisible(tabPage, i, dc, win): + self.SetTabOffset(i) + win.Refresh() + return + + + def TabHitTest(self, x, y): + """ + TabHitTest() tests if a tab was hit, passing the window pointer + back if that condition was fulfilled. + + :param `x`: the mouse `x` position; + :param `y`: the mouse `y` position. + """ + + if not self._rect.Contains((x,y)): + return None + + btn = self.ButtonHitTest(x, y) + if btn: + if btn in self._buttons: + return None + + for i in xrange(self._tab_offset, len(self._pages)): + page = self._pages[i] + if page.rect.Contains((x,y)): + return page.window + + return None + + + def ButtonHitTest(self, x, y): + """ + Tests if a button was hit. + + :param `x`: the mouse `x` position; + :param `y`: the mouse `y` position. + + :returns: and instance of L{AuiTabContainerButton} if a button was hit, ``None`` otherwise. + """ + + if not self._rect.Contains((x,y)): + return None + + for button in self._buttons: + if button.rect.Contains((x,y)) and \ + (button.cur_state & (AUI_BUTTON_STATE_HIDDEN|AUI_BUTTON_STATE_DISABLED)) == 0: + return button + + for button in self._tab_close_buttons: + if button.rect.Contains((x,y)) and \ + (button.cur_state & (AUI_BUTTON_STATE_HIDDEN|AUI_BUTTON_STATE_DISABLED)) == 0: + return button + + return None + + + def DoShowHide(self): + """ + This function shows the active window, then hides all of the other windows + (in that order). + """ + + pages = self.GetPages() + + # show new active page first + for page in pages: + if page.active: + page.window.Show(True) + break + + # hide all other pages + for page in pages: + if not page.active: + page.window.Show(False) + + +# ---------------------------------------------------------------------- +# -- AuiTabCtrl class implementation -- + +class AuiTabCtrl(wx.PyControl, AuiTabContainer): + """ + This is an actual `wx.Window`-derived window which can be used as a tab + control in the normal sense. + """ + + def __init__(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, + style=wx.NO_BORDER|wx.WANTS_CHARS|wx.TAB_TRAVERSAL): + """ + Default class constructor. + Used internally, do not call it in your code! + + :param `parent`: the L{AuiTabCtrl} parent; + :param `id`: an identifier for the control: a value of -1 is taken to mean a default; + :param `pos`: the control position. A value of (-1, -1) indicates a default position, + chosen by either the windowing system or wxPython, depending on platform; + :param `size`: the control size. A value of (-1, -1) indicates a default size, + chosen by either the windowing system or wxPython, depending on platform; + :param `style`: the window style. + """ + + wx.PyControl.__init__(self, parent, id, pos, size, style, name="AuiTabCtrl") + AuiTabContainer.__init__(self, parent) + + self._click_pt = wx.Point(-1, -1) + self._is_dragging = False + self._hover_button = None + self._pressed_button = None + self._drag_image = None + self._drag_img_offset = (0, 0) + self._on_button = False + + self.Bind(wx.EVT_PAINT, self.OnPaint) + self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground) + self.Bind(wx.EVT_SIZE, self.OnSize) + self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown) + self.Bind(wx.EVT_LEFT_DCLICK, self.OnLeftDClick) + self.Bind(wx.EVT_LEFT_UP, self.OnLeftUp) + self.Bind(wx.EVT_MIDDLE_DOWN, self.OnMiddleDown) + self.Bind(wx.EVT_MIDDLE_UP, self.OnMiddleUp) + self.Bind(wx.EVT_RIGHT_DOWN, self.OnRightDown) + self.Bind(wx.EVT_RIGHT_UP, self.OnRightUp) + self.Bind(wx.EVT_SET_FOCUS, self.OnSetFocus) + self.Bind(wx.EVT_KILL_FOCUS, self.OnKillFocus) + self.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown) + self.Bind(wx.EVT_MOUSE_CAPTURE_LOST, self.OnCaptureLost) + self.Bind(wx.EVT_MOTION, self.OnMotion) + self.Bind(wx.EVT_LEAVE_WINDOW, self.OnLeaveWindow) + self.Bind(EVT_AUINOTEBOOK_BUTTON, self.OnButton) + + + def IsDragging(self): + """ Returns whether the user is dragging a tab with the mouse or not. """ + + return self._is_dragging + + + def GetDefaultBorder(self): + """ Returns the default border style for L{AuiTabCtrl}. """ + + return wx.BORDER_NONE + + + def OnPaint(self, event): + """ + Handles the ``wx.EVT_PAINT`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.PaintEvent` event to be processed. + """ + + dc = wx.PaintDC(self) + dc.SetFont(self.GetFont()) + + if self.GetPageCount() > 0: + self.Render(dc, self) + + + def OnEraseBackground(self, event): + """ + Handles the ``wx.EVT_ERASE_BACKGROUND`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.EraseEvent` event to be processed. + + :note: This is intentionally empty, to reduce flicker. + """ + + pass + + + def DoGetBestSize(self): + """ + Gets the size which best suits the window: for a control, it would be the + minimal size which doesn't truncate the control, for a panel - the same + size as it would have after a call to `Fit()`. + + :note: Overridden from `wx.PyControl`. + """ + + return wx.Size(self._rect.width, self._rect.height) + + + def OnSize(self, event): + """ + Handles the ``wx.EVT_SIZE`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.SizeEvent` event to be processed. + """ + + s = event.GetSize() + self.SetTabRect(wx.Rect(0, 0, s.GetWidth(), s.GetHeight())) + + + def OnLeftDown(self, event): + """ + Handles the ``wx.EVT_LEFT_DOWN`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + self.CaptureMouse() + self._click_pt = wx.Point(-1, -1) + self._is_dragging = False + self._click_tab = None + self._pressed_button = None + + wnd = self.TabHitTest(event.GetX(), event.GetY()) + + if wnd is not None: + new_selection = self.GetIdxFromWindow(wnd) + + # AuiNotebooks always want to receive this event + # even if the tab is already active, because they may + # have multiple tab controls + if new_selection != self.GetActivePage() or isinstance(self.GetParent(), AuiNotebook): + + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, self.GetId()) + e.SetSelection(new_selection) + e.SetOldSelection(self.GetActivePage()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + self._click_pt.x = event.GetX() + self._click_pt.y = event.GetY() + self._click_tab = wnd + else: + page_index = self.GetActivePage() + if page_index != wx.NOT_FOUND: + self.GetWindowFromIdx(page_index).SetFocus() + + if self._hover_button: + self._pressed_button = self._hover_button + self._pressed_button.cur_state = AUI_BUTTON_STATE_PRESSED + self._on_button = True + self.Refresh() + self.Update() + + + def OnCaptureLost(self, event): + """ + Handles the ``wx.EVT_MOUSE_CAPTURE_LOST`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseCaptureLostEvent` event to be processed. + """ + + if self._is_dragging: + self._is_dragging = False + self._on_button = False + + if self._drag_image: + self._drag_image.EndDrag() + del self._drag_image + self._drag_image = None + + event = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_CANCEL_DRAG, self.GetId()) + event.SetSelection(self.GetIdxFromWindow(self._click_tab)) + event.SetOldSelection(event.GetSelection()) + event.SetEventObject(self) + self.GetEventHandler().ProcessEvent(event) + + + def OnLeftUp(self, event): + """ + Handles the ``wx.EVT_LEFT_UP`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + self._on_button = False + + if self._is_dragging: + + if self.HasCapture(): + self.ReleaseMouse() + + self._is_dragging = False + if self._drag_image: + self._drag_image.EndDrag() + del self._drag_image + self._drag_image = None + self.GetParent().Refresh() + + evt = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, self.GetId()) + evt.SetSelection(self.GetIdxFromWindow(self._click_tab)) + evt.SetOldSelection(evt.GetSelection()) + evt.SetEventObject(self) + self.GetEventHandler().ProcessEvent(evt) + + return + + self.GetParent()._mgr.HideHint() + + if self.HasCapture(): + self.ReleaseMouse() + + if self._hover_button: + self._pressed_button = self._hover_button + + if self._pressed_button: + + # make sure we're still clicking the button + button = self.ButtonHitTest(event.GetX(), event.GetY()) + + if button is None: + return + + if button != self._pressed_button: + self._pressed_button = None + return + + self.Refresh() + self.Update() + + if self._pressed_button.cur_state & AUI_BUTTON_STATE_DISABLED == 0: + + evt = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_BUTTON, self.GetId()) + evt.SetSelection(self.GetIdxFromWindow(self._click_tab)) + evt.SetInt(self._pressed_button.id) + evt.SetEventObject(self) + eventHandler = self.GetEventHandler() + + if eventHandler is not None: + eventHandler.ProcessEvent(evt) + + self._pressed_button = None + + self._click_pt = wx.Point(-1, -1) + self._is_dragging = False + self._click_tab = None + + + def OnMiddleUp(self, event): + """ + Handles the ``wx.EVT_MIDDLE_UP`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + eventHandler = self.GetEventHandler() + if not isinstance(eventHandler, AuiTabCtrl): + event.Skip() + return + + x, y = event.GetX(), event.GetY() + wnd = self.TabHitTest(x, y) + + if wnd: + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP, self.GetId()) + e.SetEventObject(self) + e.SetSelection(self.GetIdxFromWindow(wnd)) + self.GetEventHandler().ProcessEvent(e) + elif not self.ButtonHitTest(x, y): + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_BG_MIDDLE_UP, self.GetId()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def OnMiddleDown(self, event): + """ + Handles the ``wx.EVT_MIDDLE_DOWN`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + eventHandler = self.GetEventHandler() + if not isinstance(eventHandler, AuiTabCtrl): + event.Skip() + return + + x, y = event.GetX(), event.GetY() + wnd = self.TabHitTest(x, y) + + if wnd: + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_DOWN, self.GetId()) + e.SetEventObject(self) + e.SetSelection(self.GetIdxFromWindow(wnd)) + self.GetEventHandler().ProcessEvent(e) + elif not self.ButtonHitTest(x, y): + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_BG_MIDDLE_DOWN, self.GetId()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def OnRightUp(self, event): + """ + Handles the ``wx.EVT_RIGHT_UP`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + x, y = event.GetX(), event.GetY() + wnd = self.TabHitTest(x, y) + + if wnd: + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_UP, self.GetId()) + e.SetEventObject(self) + e.SetSelection(self.GetIdxFromWindow(wnd)) + self.GetEventHandler().ProcessEvent(e) + elif not self.ButtonHitTest(x, y): + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_BG_RIGHT_UP, self.GetId()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def OnRightDown(self, event): + """ + Handles the ``wx.EVT_RIGHT_DOWN`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + x, y = event.GetX(), event.GetY() + wnd = self.TabHitTest(x, y) + + if wnd: + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_DOWN, self.GetId()) + e.SetEventObject(self) + e.SetSelection(self.GetIdxFromWindow(wnd)) + self.GetEventHandler().ProcessEvent(e) + elif not self.ButtonHitTest(x, y): + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_BG_RIGHT_DOWN, self.GetId()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def OnLeftDClick(self, event): + """ + Handles the ``wx.EVT_LEFT_DCLICK`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + x, y = event.GetX(), event.GetY() + wnd = self.TabHitTest(x, y) + + if wnd: + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_DCLICK, self.GetId()) + e.SetEventObject(self) + e.SetSelection(self.GetIdxFromWindow(wnd)) + self.GetEventHandler().ProcessEvent(e) + elif not self.ButtonHitTest(x, y): + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_BG_DCLICK, self.GetId()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def OnMotion(self, event): + """ + Handles the ``wx.EVT_MOTION`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + pos = event.GetPosition() + + # check if the mouse is hovering above a button + + button = self.ButtonHitTest(pos.x, pos.y) + wnd = self.TabHitTest(pos.x, pos.y) + + if wnd is not None: + mouse_tab = self.GetIdxFromWindow(wnd) + if not self._pages[mouse_tab].enabled: + self._hover_button = None + return + + if self._on_button: + return + + if button: + + if self._hover_button and button != self._hover_button: + self._hover_button.cur_state = AUI_BUTTON_STATE_NORMAL + self._hover_button = None + self.Refresh() + self.Update() + + if button.cur_state != AUI_BUTTON_STATE_HOVER: + button.cur_state = AUI_BUTTON_STATE_HOVER + self.Refresh() + self.Update() + self._hover_button = button + return + + else: + + if self._hover_button: + self._hover_button.cur_state = AUI_BUTTON_STATE_NORMAL + self._hover_button = None + self.Refresh() + self.Update() + + if not event.LeftIsDown() or self._click_pt == wx.Point(-1, -1): + return + + if not self.HasCapture(): + return + + wnd = self.TabHitTest(pos.x, pos.y) + + if not self._is_dragging: + + drag_x_threshold = wx.SystemSettings.GetMetric(wx.SYS_DRAG_X) + drag_y_threshold = wx.SystemSettings.GetMetric(wx.SYS_DRAG_Y) + + if abs(pos.x - self._click_pt.x) > drag_x_threshold or \ + abs(pos.y - self._click_pt.y) > drag_y_threshold: + + self._is_dragging = True + + if self._drag_image: + self._drag_image.EndDrag() + del self._drag_image + self._drag_image = None + + if self._agwFlags & AUI_NB_DRAW_DND_TAB: + # Create the custom draw image from the icons and the text of the item + mouse_tab = self.GetIdxFromWindow(wnd) + page = self._pages[mouse_tab] + tab_button = self._tab_close_buttons[mouse_tab] + self._drag_image = TabDragImage(self, page, tab_button.cur_state, self._art) + + if self._agwFlags & AUI_NB_TAB_FLOAT: + self._drag_image.BeginDrag(wx.Point(0,0), self, fullScreen=True) + else: + self._drag_image.BeginDragBounded(wx.Point(0,0), self, self.GetParent()) + + # Capture the mouse cursor position offset relative to + # The tab image location + self._drag_img_offset = (pos[0] - page.rect.x, + pos[1] - page.rect.y) + + self._drag_image.Show() + + if not wnd: + evt2 = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, self.GetId()) + evt2.SetSelection(self.GetIdxFromWindow(self._click_tab)) + evt2.SetOldSelection(evt2.GetSelection()) + evt2.SetEventObject(self) + self.GetEventHandler().ProcessEvent(evt2) + if evt2.GetDispatched(): + return + + evt3 = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, self.GetId()) + evt3.SetSelection(self.GetIdxFromWindow(self._click_tab)) + evt3.SetOldSelection(evt3.GetSelection()) + evt3.SetEventObject(self) + self.GetEventHandler().ProcessEvent(evt3) + + if self._drag_image: + # Apply the drag images offset + pos -= self._drag_img_offset + self._drag_image.Move(pos) + + + def OnLeaveWindow(self, event): + """ + Handles the ``wx.EVT_LEAVE_WINDOW`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.MouseEvent` event to be processed. + """ + + if self._hover_button: + self._hover_button.cur_state = AUI_BUTTON_STATE_NORMAL + self._hover_button = None + self.Refresh() + self.Update() + + + def OnButton(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_BUTTON`` event for L{AuiTabCtrl}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + button = event.GetInt() + + if button == AUI_BUTTON_LEFT or button == AUI_BUTTON_RIGHT: + if button == AUI_BUTTON_LEFT: + if self.GetTabOffset() > 0: + + self.SetTabOffset(self.GetTabOffset()-1) + self.Refresh() + self.Update() + else: + self.SetTabOffset(self.GetTabOffset()+1) + self.Refresh() + self.Update() + + elif button == AUI_BUTTON_WINDOWLIST: + idx = self.GetArtProvider().ShowDropDown(self, self._pages, self.GetActivePage()) + + if idx != -1: + + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, self.GetId()) + e.SetSelection(idx) + e.SetOldSelection(self.GetActivePage()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + else: + event.Skip() + + + def OnSetFocus(self, event): + """ + Handles the ``wx.EVT_SET_FOCUS`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.FocusEvent` event to be processed. + """ + + self.Refresh() + + + def OnKillFocus(self, event): + """ + Handles the ``wx.EVT_KILL_FOCUS`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.FocusEvent` event to be processed. + """ + + self.Refresh() + + + def OnKeyDown(self, event): + """ + Handles the ``wx.EVT_KEY_DOWN`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.KeyEvent` event to be processed. + """ + + key = event.GetKeyCode() + nb = self.GetParent() + + if key == wx.WXK_LEFT: + nb.AdvanceSelection(False) + self.SetFocus() + + elif key == wx.WXK_RIGHT: + nb.AdvanceSelection(True) + self.SetFocus() + + elif key == wx.WXK_HOME: + newPage = 0 + nb.SetSelection(newPage) + self.SetFocus() + + elif key == wx.WXK_END: + newPage = nb.GetPageCount() - 1 + nb.SetSelection(newPage) + self.SetFocus() + + elif key == wx.WXK_TAB: + if not event.ControlDown(): + flags = 0 + if not event.ShiftDown(): flags |= wx.NavigationKeyEvent.IsForward + if event.CmdDown(): flags |= wx.NavigationKeyEvent.WinChange + self.Navigate(flags) + else: + + if not nb or not isinstance(nb, AuiNotebook): + event.Skip() + return + + bForward = bWindowChange = 0 + if not event.ShiftDown(): bForward |= wx.NavigationKeyEvent.IsForward + if event.CmdDown(): bWindowChange |= wx.NavigationKeyEvent.WinChange + + keyEvent = wx.NavigationKeyEvent() + keyEvent.SetDirection(bForward) + keyEvent.SetWindowChange(bWindowChange) + keyEvent.SetFromTab(True) + keyEvent.SetEventObject(nb) + + if not nb.GetEventHandler().ProcessEvent(keyEvent): + + # Not processed? Do an explicit tab into the page. + win = self.GetWindowFromIdx(self.GetActivePage()) + if win: + win.SetFocus() + + self.SetFocus() + + return + + else: + event.Skip() + + + def OnKeyDown2(self, event): + """ + Deprecated. + + Handles the ``wx.EVT_KEY_DOWN`` event for L{AuiTabCtrl}. + + :param `event`: a `wx.KeyEvent` event to be processed. + + :warning: This method implementation is now deprecated. Refer to L{OnKeyDown} + for the correct one. + """ + + if self.GetActivePage() == -1: + event.Skip() + return + + # We can't leave tab processing to the system on Windows, tabs and keys + # get eaten by the system and not processed properly if we specify both + # wxTAB_TRAVERSAL and wxWANTS_CHARS. And if we specify just wxTAB_TRAVERSAL, + # we don't key arrow key events. + + key = event.GetKeyCode() + + if key == wx.WXK_NUMPAD_PAGEUP: + key = wx.WXK_PAGEUP + if key == wx.WXK_NUMPAD_PAGEDOWN: + key = wx.WXK_PAGEDOWN + if key == wx.WXK_NUMPAD_HOME: + key = wx.WXK_HOME + if key == wx.WXK_NUMPAD_END: + key = wx.WXK_END + if key == wx.WXK_NUMPAD_LEFT: + key = wx.WXK_LEFT + if key == wx.WXK_NUMPAD_RIGHT: + key = wx.WXK_RIGHT + + if key == wx.WXK_TAB or key == wx.WXK_PAGEUP or key == wx.WXK_PAGEDOWN: + + bCtrlDown = event.ControlDown() + bShiftDown = event.ShiftDown() + + bForward = (key == wx.WXK_TAB and not bShiftDown) or (key == wx.WXK_PAGEDOWN) + bWindowChange = (key == wx.WXK_PAGEUP) or (key == wx.WXK_PAGEDOWN) or bCtrlDown + bFromTab = (key == wx.WXK_TAB) + + nb = self.GetParent() + if not nb or not isinstance(nb, AuiNotebook): + event.Skip() + return + + keyEvent = wx.NavigationKeyEvent() + keyEvent.SetDirection(bForward) + keyEvent.SetWindowChange(bWindowChange) + keyEvent.SetFromTab(bFromTab) + keyEvent.SetEventObject(nb) + + if not nb.GetEventHandler().ProcessEvent(keyEvent): + + # Not processed? Do an explicit tab into the page. + win = self.GetWindowFromIdx(self.GetActivePage()) + if win: + win.SetFocus() + + return + + if len(self._pages) < 2: + event.Skip() + return + + newPage = -1 + + if self.GetLayoutDirection() == wx.Layout_RightToLeft: + forwardKey = wx.WXK_LEFT + backwardKey = wx.WXK_RIGHT + else: + forwardKey = wx.WXK_RIGHT + backwardKey = wx.WXK_LEFT + + if key == forwardKey: + if self.GetActivePage() == -1: + newPage = 0 + elif self.GetActivePage() < len(self._pages) - 1: + newPage = self.GetActivePage() + 1 + + elif key == backwardKey: + if self.GetActivePage() == -1: + newPage = len(self._pages) - 1 + elif self.GetActivePage() > 0: + newPage = self.GetActivePage() - 1 + + elif key == wx.WXK_HOME: + newPage = 0 + + elif key == wx.WXK_END: + newPage = len(self._pages) - 1 + + else: + event.Skip() + + if newPage != -1: + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, self.GetId()) + e.SetSelection(newPage) + e.SetOldSelection(newPage) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + else: + event.Skip() + + +# ---------------------------------------------------------------------- + +class TabFrame(wx.PyWindow): + """ + TabFrame is an interesting case. It's important that all child pages + of the multi-notebook control are all actually children of that control + (and not grandchildren). TabFrame facilitates this. There is one + instance of TabFrame for each tab control inside the multi-notebook. + + It's important to know that TabFrame is not a real window, but it merely + used to capture the dimensions/positioning of the internal tab control and + it's managed page windows. + """ + + def __init__(self, parent): + """ + Default class constructor. + Used internally, do not call it in your code! + """ + + pre = wx.PrePyWindow() + + self._tabs = None + self._rect = wx.Rect(0, 0, 200, 200) + self._tab_ctrl_height = 20 + self._tab_rect = wx.Rect() + self._parent = parent + + self.PostCreate(pre) + + + def SetTabCtrlHeight(self, h): + """ + Sets the tab control height. + + :param `h`: the tab area height. + """ + + self._tab_ctrl_height = h + + + def DoSetSize(self, x, y, width, height, flags=wx.SIZE_AUTO): + """ + Sets the position and size of the window in pixels. The `flags` + parameter indicates the interpretation of the other params if they are + equal to -1. + + :param `x`: the window `x` position; + :param `y`: the window `y` position; + :param `width`: the window width; + :param `height`: the window height; + :param `flags`: may have one of this bit set: + + =================================== ====================================== + Size Flags Description + =================================== ====================================== + ``wx.SIZE_AUTO`` A -1 indicates that a class-specific default should be used. + ``wx.SIZE_AUTO_WIDTH`` A -1 indicates that a class-specific default should be used for the width. + ``wx.SIZE_AUTO_HEIGHT`` A -1 indicates that a class-specific default should be used for the height. + ``wx.SIZE_USE_EXISTING`` Existing dimensions should be used if -1 values are supplied. + ``wx.SIZE_ALLOW_MINUS_ONE`` Allow dimensions of -1 and less to be interpreted as real dimensions, not default values. + ``wx.SIZE_FORCE`` Normally, if the position and the size of the window are already the same as the parameters of this function, nothing is done. but with this flag a window resize may be forced even in this case (supported in wx 2.6.2 and later and only implemented for MSW and ignored elsewhere currently) + =================================== ====================================== + + :note: Overridden from `wx.PyControl`. + """ + + self._rect = wx.Rect(x, y, max(1, width), max(1, height)) + self.DoSizing() + + + def DoGetSize(self): + """ + Returns the window size. + + :note: Overridden from `wx.PyControl`. + """ + + return self._rect.width, self._rect.height + + + def DoGetClientSize(self): + """ + Returns the window client size. + + :note: Overridden from `wx.PyControl`. + """ + + return self._rect.width, self._rect.height + + + def Show(self, show=True): + """ + Shows/hides the window. + + :param `show`: ``True`` to show the window, ``False`` otherwise. + + :note: Overridden from `wx.PyControl`, this method always returns ``False`` as + L{TabFrame} should never be phisically shown on screen. + """ + + return False + + + def DoSizing(self): + """ Does the actual sizing of the tab control. """ + + if not self._tabs: + return + + hideOnSingle = ((self._tabs.GetAGWFlags() & AUI_NB_HIDE_ON_SINGLE_TAB) and \ + self._tabs.GetPageCount() <= 1) + + if not hideOnSingle and not self._parent._hide_tabs: + tab_height = self._tab_ctrl_height + + self._tab_rect = wx.Rect(self._rect.x, self._rect.y, self._rect.width, self._tab_ctrl_height) + + if self._tabs.GetAGWFlags() & AUI_NB_BOTTOM: + self._tab_rect = wx.Rect(self._rect.x, self._rect.y + self._rect.height - tab_height, + self._rect.width, tab_height) + self._tabs.SetDimensions(self._rect.x, self._rect.y + self._rect.height - tab_height, + self._rect.width, tab_height) + self._tabs.SetTabRect(wx.Rect(0, 0, self._rect.width, tab_height)) + + else: + + self._tab_rect = wx.Rect(self._rect.x, self._rect.y, self._rect.width, tab_height) + self._tabs.SetDimensions(self._rect.x, self._rect.y, self._rect.width, tab_height) + self._tabs.SetTabRect(wx.Rect(0, 0, self._rect.width, tab_height)) + + # TODO: elif (GetAGWFlags() & AUI_NB_LEFT) + # TODO: elif (GetAGWFlags() & AUI_NB_RIGHT) + + self._tabs.Refresh() + self._tabs.Update() + + else: + + tab_height = 0 + self._tabs.SetDimensions(self._rect.x, self._rect.y, self._rect.width, tab_height) + self._tabs.SetTabRect(wx.Rect(0, 0, self._rect.width, tab_height)) + + pages = self._tabs.GetPages() + + for page in pages: + + height = self._rect.height - tab_height + + if height < 0: + # avoid passing negative height to wx.Window.SetSize(), this + # results in assert failures/GTK+ warnings + height = 0 + + if self._tabs.GetAGWFlags() & AUI_NB_BOTTOM: + page.window.SetDimensions(self._rect.x, self._rect.y, self._rect.width, height) + + else: + page.window.SetDimensions(self._rect.x, self._rect.y + tab_height, + self._rect.width, height) + + # TODO: elif (GetAGWFlags() & AUI_NB_LEFT) + # TODO: elif (GetAGWFlags() & AUI_NB_RIGHT) + + if repr(page.window.__class__).find("AuiMDIChildFrame") >= 0: + page.window.ApplyMDIChildFrameRect() + + + def Update(self): + """ + Calling this method immediately repaints the invalidated area of the window + and all of its children recursively while this would usually only happen when + the flow of control returns to the event loop. + + :note: Notice that this function doesn't invalidate any area of the window so + nothing happens if nothing has been invalidated (i.e. marked as requiring a redraw). + Use `Refresh` first if you want to immediately redraw the window unconditionally. + + :note: Overridden from `wx.PyControl`. + """ + + # does nothing + pass + + +# ---------------------------------------------------------------------- +# -- AuiNotebook class implementation -- + +class AuiNotebook(wx.PyPanel): + """ + AuiNotebook is a notebook control which implements many features common in + applications with dockable panes. Specifically, AuiNotebook implements functionality + which allows the user to rearrange tab order via drag-and-drop, split the tab window + into many different splitter configurations, and toggle through different themes to + customize the control's look and feel. + + An effort has been made to try to maintain an API as similar to that of `wx.Notebook`. + + The default theme that is used is L{AuiDefaultTabArt}, which provides a modern, glossy + look and feel. The theme can be changed by calling L{AuiNotebook.SetArtProvider}. + """ + + def __init__(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, + style=0, agwStyle=AUI_NB_DEFAULT_STYLE): + """ + Default class constructor. + + :param `parent`: the L{AuiNotebook} parent; + :param `id`: an identifier for the control: a value of -1 is taken to mean a default; + :param `pos`: the control position. A value of (-1, -1) indicates a default position, + chosen by either the windowing system or wxPython, depending on platform; + :param `size`: the control size. A value of (-1, -1) indicates a default size, + chosen by either the windowing system or wxPython, depending on platform; + :param `style`: the underlying `wx.PyPanel` window style; + :param `agwStyle`: the AGW-specific window style. This can be a combination of the following bits: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_NB_TOP`` With this style, tabs are drawn along the top of the notebook + ``AUI_NB_LEFT`` With this style, tabs are drawn along the left of the notebook. Not implemented yet. + ``AUI_NB_RIGHT`` With this style, tabs are drawn along the right of the notebook. Not implemented yet. + ``AUI_NB_BOTTOM`` With this style, tabs are drawn along the bottom of the notebook + ``AUI_NB_TAB_SPLIT`` Allows the tab control to be split by dragging a tab + ``AUI_NB_TAB_MOVE`` Allows a tab to be moved horizontally by dragging + ``AUI_NB_TAB_EXTERNAL_MOVE`` Allows a tab to be moved to another tab control + ``AUI_NB_TAB_FIXED_WIDTH`` With this style, all tabs have the same width + ``AUI_NB_SCROLL_BUTTONS`` With this style, left and right scroll buttons are displayed + ``AUI_NB_WINDOWLIST_BUTTON`` With this style, a drop-down list of windows is available + ``AUI_NB_CLOSE_BUTTON`` With this style, a close button is available on the tab bar + ``AUI_NB_CLOSE_ON_ACTIVE_TAB`` With this style, a close button is available on the active tab + ``AUI_NB_CLOSE_ON_ALL_TABS`` With this style, a close button is available on all tabs + ``AUI_NB_MIDDLE_CLICK_CLOSE`` Allows to close L{AuiNotebook} tabs by mouse middle button click + ``AUI_NB_SUB_NOTEBOOK`` This style is used by L{AuiManager} to create automatic AuiNotebooks + ``AUI_NB_HIDE_ON_SINGLE_TAB`` Hides the tab window if only one tab is present + ``AUI_NB_SMART_TABS`` Use Smart Tabbing, like ``Alt`` + ``Tab`` on Windows + ``AUI_NB_USE_IMAGES_DROPDOWN`` Uses images on dropdown window list menu instead of check items + ``AUI_NB_CLOSE_ON_TAB_LEFT`` Draws the tab close button on the left instead of on the right (a la Camino browser) + ``AUI_NB_TAB_FLOAT`` Allows the floating of single tabs. Known limitation: when the notebook is more or less full screen, tabs cannot be dragged far enough outside of the notebook to become floating pages + ``AUI_NB_DRAW_DND_TAB`` Draws an image representation of a tab while dragging (on by default) + ``AUI_NB_ORDER_BY_ACCESS`` Tab navigation order by last access time for the tabs + ``AUI_NB_NO_TAB_FOCUS`` Don't draw tab focus rectangle + ==================================== ================================== + + Default value for `agwStyle` is: + ``AUI_NB_DEFAULT_STYLE`` = ``AUI_NB_TOP`` | ``AUI_NB_TAB_SPLIT`` | ``AUI_NB_TAB_MOVE`` | ``AUI_NB_SCROLL_BUTTONS`` | ``AUI_NB_CLOSE_ON_ACTIVE_TAB`` | ``AUI_NB_MIDDLE_CLICK_CLOSE`` | ``AUI_NB_DRAW_DND_TAB`` + + """ + + self._curpage = -1 + self._tab_id_counter = AuiBaseTabCtrlId + self._dummy_wnd = None + self._hide_tabs = False + self._sash_dclick_unsplit = False + self._tab_ctrl_height = 20 + self._requested_bmp_size = wx.Size(-1, -1) + self._requested_tabctrl_height = -1 + self._textCtrl = None + self._tabBounds = (-1, -1) + + wx.PyPanel.__init__(self, parent, id, pos, size, style|wx.BORDER_NONE|wx.TAB_TRAVERSAL) + self._mgr = framemanager.AuiManager() + self._tabs = AuiTabContainer(self) + + self.InitNotebook(agwStyle) + + + def GetTabContainer(self): + """ Returns the instance of L{AuiTabContainer}. """ + + return self._tabs + + + def InitNotebook(self, agwStyle): + """ + Contains common initialization code called by all constructors. + + :param `agwStyle`: the notebook style. + + :see: L{__init__} + """ + + self.SetName("AuiNotebook") + self._agwFlags = agwStyle + + self._popupWin = None + self._naviIcon = None + self._imageList = None + self._last_drag_x = 0 + + self._normal_font = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + self._selected_font = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + self._selected_font.SetWeight(wx.BOLD) + + self.SetArtProvider(TA.AuiDefaultTabArt()) + + self._dummy_wnd = wx.Window(self, wx.ID_ANY, wx.Point(0, 0), wx.Size(0, 0)) + self._dummy_wnd.SetSize((200, 200)) + self._dummy_wnd.Show(False) + + self._mgr.SetManagedWindow(self) + self._mgr.SetAGWFlags(AUI_MGR_DEFAULT) + self._mgr.SetDockSizeConstraint(1.0, 1.0) # no dock size constraint + + self._mgr.AddPane(self._dummy_wnd, framemanager.AuiPaneInfo().Name("dummy").Bottom().CaptionVisible(False).Show(False)) + self._mgr.Update() + + self.Bind(wx.EVT_SIZE, self.OnSize) + self.Bind(wx.EVT_CHILD_FOCUS, self.OnChildFocusNotebook) + self.Bind(EVT_AUINOTEBOOK_PAGE_CHANGING, self.OnTabClicked, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_BEGIN_DRAG, self.OnTabBeginDrag, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_END_DRAG, self.OnTabEndDrag, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_DRAG_MOTION, self.OnTabDragMotion, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_CANCEL_DRAG, self.OnTabCancelDrag, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_BUTTON, self.OnTabButton, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_TAB_MIDDLE_DOWN, self.OnTabMiddleDown, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_TAB_MIDDLE_UP, self.OnTabMiddleUp, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_TAB_RIGHT_DOWN, self.OnTabRightDown, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_TAB_RIGHT_UP, self.OnTabRightUp, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_BG_DCLICK, self.OnTabBgDClick, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + self.Bind(EVT_AUINOTEBOOK_TAB_DCLICK, self.OnTabDClick, + id=AuiBaseTabCtrlId, id2=AuiBaseTabCtrlId+500) + + self.Bind(wx.EVT_NAVIGATION_KEY, self.OnNavigationKeyNotebook) + + + def SetArtProvider(self, art): + """ + Sets the art provider to be used by the notebook. + + :param `art`: an art provider. + """ + + self._tabs.SetArtProvider(art) + self.UpdateTabCtrlHeight(force=True) + + + def SavePerspective(self): + """ + Saves the entire user interface layout into an encoded string, which can then + be stored by the application (probably using `wx.Config`). When a perspective + is restored using L{LoadPerspective}, the entire user interface will return + to the state it was when the perspective was saved. + """ + + # Build list of panes/tabs + tabs = "" + all_panes = self._mgr.GetAllPanes() + + for pane in all_panes: + + if pane.name == "dummy": + continue + + tabframe = pane.window + + if tabs: + tabs += "|" + + tabs += pane.name + "=" + + # add tab id's + page_count = tabframe._tabs.GetPageCount() + + for p in xrange(page_count): + + page = tabframe._tabs.GetPage(p) + page_idx = self._tabs.GetIdxFromWindow(page.window) + + if p: + tabs += "," + + if p == tabframe._tabs.GetActivePage(): + tabs += "+" + elif page_idx == self._curpage: + tabs += "*" + + tabs += "%u"%page_idx + + tabs += "@" + + # Add frame perspective + tabs += self._mgr.SavePerspective() + + return tabs + + + def LoadPerspective(self, layout): + """ + Loads a layout which was saved with L{SavePerspective}. + + :param `layout`: a string which contains a saved L{AuiNotebook} layout. + """ + + # Remove all tab ctrls (but still keep them in main index) + tab_count = self._tabs.GetPageCount() + for i in xrange(tab_count): + wnd = self._tabs.GetWindowFromIdx(i) + + # find out which onscreen tab ctrl owns this tab + ctrl, ctrl_idx = self.FindTab(wnd) + if not ctrl: + return False + + # remove the tab from ctrl + if not ctrl.RemovePage(wnd): + return False + + self.RemoveEmptyTabFrames() + + sel_page = 0 + tabs = layout[0:layout.index("@")] + to_break1 = False + + while 1: + + if "|" not in tabs: + to_break1 = True + tab_part = tabs + else: + tab_part = tabs[0:tabs.index('|')] + + if "=" not in tab_part: + # No pages in this perspective... + return False + + # Get pane name + pane_name = tab_part[0:tab_part.index("=")] + + # create a new tab frame + new_tabs = TabFrame(self) + self._tab_id_counter += 1 + new_tabs._tabs = AuiTabCtrl(self, self._tab_id_counter) + new_tabs._tabs.SetArtProvider(self._tabs.GetArtProvider().Clone()) + new_tabs.SetTabCtrlHeight(self._tab_ctrl_height) + new_tabs._tabs.SetAGWFlags(self._agwFlags) + dest_tabs = new_tabs._tabs + + # create a pane info structure with the information + # about where the pane should be added + pane_info = framemanager.AuiPaneInfo().Name(pane_name).Bottom().CaptionVisible(False) + self._mgr.AddPane(new_tabs, pane_info) + + # Get list of tab id's and move them to pane + tab_list = tab_part[tab_part.index("=")+1:] + to_break2, active_found = False, False + + while 1: + if "," not in tab_list: + to_break2 = True + tab = tab_list + else: + tab = tab_list[0:tab_list.index(",")] + tab_list = tab_list[tab_list.index(",")+1:] + + # Check if this page has an 'active' marker + c = tab[0] + if c in ['+', '*']: + tab = tab[1:] + + tab_idx = int(tab) + if tab_idx >= self.GetPageCount(): + to_break1 = True + break + + # Move tab to pane + page = self._tabs.GetPage(tab_idx) + newpage_idx = dest_tabs.GetPageCount() + dest_tabs.InsertPage(page.window, page, newpage_idx) + + if c == '+': + dest_tabs.SetActivePage(newpage_idx) + active_found = True + elif c == '*': + sel_page = tab_idx + + if to_break2: + break + + if not active_found: + dest_tabs.SetActivePage(0) + + new_tabs.DoSizing() + dest_tabs.DoShowHide() + dest_tabs.Refresh() + + if to_break1: + break + + tabs = tabs[tabs.index('|')+1:] + + # Load the frame perspective + frames = layout[layout.index('@')+1:] + self._mgr.LoadPerspective(frames) + + # Force refresh of selection + self._curpage = -1 + self.SetSelection(sel_page) + + return True + + + def SetTabCtrlHeight(self, height): + """ + Sets the tab height. + + By default, the tab control height is calculated by measuring the text + height and bitmap sizes on the tab captions. + + Calling this method will override that calculation and set the tab control + to the specified height parameter. A call to this method will override + any call to L{SetUniformBitmapSize}. Specifying -1 as the height will + return the control to its default auto-sizing behaviour. + + :param `height`: the tab control area height. + """ + + self._requested_tabctrl_height = height + + # if window is already initialized, recalculate the tab height + if self._dummy_wnd: + self.UpdateTabCtrlHeight() + + + def SetUniformBitmapSize(self, size): + """ + Ensures that all tabs will have the same height, even if some tabs + don't have bitmaps. Passing ``wx.DefaultSize`` to this + function will instruct the control to use dynamic tab height, which is + the default behaviour. Under the default behaviour, when a tab with a + large bitmap is added, the tab control's height will automatically + increase to accommodate the larger bitmap. + + :param `size`: an instance of `wx.Size` specifying the tab bitmap size. + """ + + self._requested_bmp_size = wx.Size(*size) + + # if window is already initialized, recalculate the tab height + if self._dummy_wnd: + self.UpdateTabCtrlHeight() + + + def UpdateTabCtrlHeight(self, force=False): + """ + UpdateTabCtrlHeight() does the actual tab resizing. It's meant + to be used interally. + + :param `force`: ``True`` to force the tab art to repaint. + """ + + # get the tab ctrl height we will use + height = self.CalculateTabCtrlHeight() + + # if the tab control height needs to change, update + # all of our tab controls with the new height + if self._tab_ctrl_height != height or force: + art = self._tabs.GetArtProvider() + + self._tab_ctrl_height = height + + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + + if pane.name == "dummy": + continue + + tab_frame = pane.window + tabctrl = tab_frame._tabs + tab_frame.SetTabCtrlHeight(self._tab_ctrl_height) + tabctrl.SetArtProvider(art.Clone()) + tab_frame.DoSizing() + + + def UpdateHintWindowSize(self): + """ Updates the L{AuiManager} hint window size. """ + + size = self.CalculateNewSplitSize() + + # the placeholder hint window should be set to this size + info = self._mgr.GetPane("dummy") + + if info.IsOk(): + info.MinSize(size) + info.BestSize(size) + self._dummy_wnd.SetSize(size) + + + def CalculateNewSplitSize(self): + """ Calculates the size of the new split. """ + + # count number of tab controls + tab_ctrl_count = 0 + all_panes = self._mgr.GetAllPanes() + + for pane in all_panes: + if pane.name == "dummy": + continue + + tab_ctrl_count += 1 + + # if there is only one tab control, the first split + # should happen around the middle + if tab_ctrl_count < 2: + new_split_size = self.GetClientSize() + new_split_size.x /= 2 + new_split_size.y /= 2 + + else: + + # this is in place of a more complicated calculation + # that needs to be implemented + new_split_size = wx.Size(180, 180) + + return new_split_size + + + def CalculateTabCtrlHeight(self): + """ Calculates the tab control area height. """ + + # if a fixed tab ctrl height is specified, + # just return that instead of calculating a + # tab height + if self._requested_tabctrl_height != -1: + return self._requested_tabctrl_height + + # find out new best tab height + art = self._tabs.GetArtProvider() + + return art.GetBestTabCtrlSize(self, self._tabs.GetPages(), self._requested_bmp_size) + + + def GetArtProvider(self): + """ Returns the associated art provider. """ + + return self._tabs.GetArtProvider() + + + def SetAGWWindowStyleFlag(self, agwStyle): + """ + Sets the AGW-specific style of the window. + + :param `agwStyle`: the new window style. This can be a combination of the following bits: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_NB_TOP`` With this style, tabs are drawn along the top of the notebook + ``AUI_NB_LEFT`` With this style, tabs are drawn along the left of the notebook. Not implemented yet. + ``AUI_NB_RIGHT`` With this style, tabs are drawn along the right of the notebook. Not implemented yet. + ``AUI_NB_BOTTOM`` With this style, tabs are drawn along the bottom of the notebook + ``AUI_NB_TAB_SPLIT`` Allows the tab control to be split by dragging a tab + ``AUI_NB_TAB_MOVE`` Allows a tab to be moved horizontally by dragging + ``AUI_NB_TAB_EXTERNAL_MOVE`` Allows a tab to be moved to another tab control + ``AUI_NB_TAB_FIXED_WIDTH`` With this style, all tabs have the same width + ``AUI_NB_SCROLL_BUTTONS`` With this style, left and right scroll buttons are displayed + ``AUI_NB_WINDOWLIST_BUTTON`` With this style, a drop-down list of windows is available + ``AUI_NB_CLOSE_BUTTON`` With this style, a close button is available on the tab bar + ``AUI_NB_CLOSE_ON_ACTIVE_TAB`` With this style, a close button is available on the active tab + ``AUI_NB_CLOSE_ON_ALL_TABS`` With this style, a close button is available on all tabs + ``AUI_NB_MIDDLE_CLICK_CLOSE`` Allows to close L{AuiNotebook} tabs by mouse middle button click + ``AUI_NB_SUB_NOTEBOOK`` This style is used by L{AuiManager} to create automatic AuiNotebooks + ``AUI_NB_HIDE_ON_SINGLE_TAB`` Hides the tab window if only one tab is present + ``AUI_NB_SMART_TABS`` Use Smart Tabbing, like ``Alt`` + ``Tab`` on Windows + ``AUI_NB_USE_IMAGES_DROPDOWN`` Uses images on dropdown window list menu instead of check items + ``AUI_NB_CLOSE_ON_TAB_LEFT`` Draws the tab close button on the left instead of on the right (a la Camino browser) + ``AUI_NB_TAB_FLOAT`` Allows the floating of single tabs. Known limitation: when the notebook is more or less full screen, tabs cannot be dragged far enough outside of the notebook to become floating pages + ``AUI_NB_DRAW_DND_TAB`` Draws an image representation of a tab while dragging (on by default) + ``AUI_NB_ORDER_BY_ACCESS`` Tab navigation order by last access time for the tabs + ``AUI_NB_NO_TAB_FOCUS`` Don't draw tab focus rectangle + ==================================== ================================== + + :note: Please note that some styles cannot be changed after the window + creation and that `Refresh` might need to be be called after changing the + others for the change to take place immediately. + + :todo: Implementation of flags ``AUI_NB_RIGHT`` and ``AUI_NB_LEFT``. + """ + + self._agwFlags = agwStyle + + # if the control is already initialized + if self._mgr.GetManagedWindow() == self: + + # let all of the tab children know about the new style + + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + + tabframe = pane.window + tabctrl = tabframe._tabs + tabctrl.SetAGWFlags(self._agwFlags) + tabframe.DoSizing() + tabctrl.Refresh() + tabctrl.Update() + + + def GetAGWWindowStyleFlag(self): + """ + Returns the AGW-specific style of the window. + + :see: L{SetAGWWindowStyleFlag} for a list of possible AGW-specific window styles. + """ + + return self._agwFlags + + + def AddPage(self, page, caption, select=False, bitmap=wx.NullBitmap, disabled_bitmap=wx.NullBitmap, control=None): + """ + Adds a page. If the `select` parameter is ``True``, calling this will generate a + page change event. + + :param `page`: the page to be added; + :param `caption`: specifies the text for the new page; + :param `select`: specifies whether the page should be selected; + :param `bitmap`: the `wx.Bitmap` to display in the enabled tab; + :param `disabled_bitmap`: the `wx.Bitmap` to display in the disabled tab; + :param `control`: a `wx.Window` instance inside a tab (or ``None``). + """ + + return self.InsertPage(self.GetPageCount(), page, caption, select, bitmap, disabled_bitmap, control) + + + def InsertPage(self, page_idx, page, caption, select=False, bitmap=wx.NullBitmap, disabled_bitmap=wx.NullBitmap, + control=None): + """ + This is similar to L{AddPage}, but allows the ability to specify the insert location. + + :param `page_idx`: specifies the position for the new page; + :param `page`: the page to be added; + :param `caption`: specifies the text for the new page; + :param `select`: specifies whether the page should be selected; + :param `bitmap`: the `wx.Bitmap` to display in the enabled tab; + :param `disabled_bitmap`: the `wx.Bitmap` to display in the disabled tab; + :param `control`: a `wx.Window` instance inside a tab (or ``None``). + """ + + if not page: + return False + + page.Reparent(self) + info = AuiNotebookPage() + info.window = page + info.caption = caption + info.bitmap = bitmap + info.active = False + info.control = control + + originalPaneMgr = framemanager.GetManager(page) + if originalPaneMgr: + originalPane = originalPaneMgr.GetPane(page) + + if originalPane: + info.hasCloseButton = originalPane.HasCloseButton() + + if bitmap.IsOk() and not disabled_bitmap.IsOk(): + disabled_bitmap = MakeDisabledBitmap(bitmap) + info.dis_bitmap = disabled_bitmap + + # if there are currently no tabs, the first added + # tab must be active + if self._tabs.GetPageCount() == 0: + info.active = True + + self._tabs.InsertPage(page, info, page_idx) + + # if that was the first page added, even if + # select is False, it must become the "current page" + # (though no select events will be fired) + if not select and self._tabs.GetPageCount() == 1: + select = True + + active_tabctrl = self.GetActiveTabCtrl() + if page_idx >= active_tabctrl.GetPageCount(): + active_tabctrl.AddPage(page, info) + else: + active_tabctrl.InsertPage(page, info, page_idx) + + force = False + if control: + force = True + control.Reparent(active_tabctrl) + control.Show() + + self.UpdateTabCtrlHeight(force=force) + self.DoSizing() + active_tabctrl.DoShowHide() + + # adjust selected index + if self._curpage >= page_idx: + self._curpage += 1 + + if select: + self.SetSelectionToWindow(page) + + return True + + + def DeletePage(self, page_idx): + """ + Deletes a page at the given index. Calling this method will generate a page + change event. + + :param `page_idx`: the page index to be deleted. + + :note: L{DeletePage} removes a tab from the multi-notebook, and destroys the window as well. + + :see: L{RemovePage} + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + wnd = self._tabs.GetWindowFromIdx(page_idx) + # hide the window in advance, as this will + # prevent flicker + wnd.Show(False) + + self.RemoveControlFromPage(page_idx) + + if not self.RemovePage(page_idx): + return False + + wnd.Destroy() + + return True + + + def RemovePage(self, page_idx): + """ + Removes a page, without deleting the window pointer. + + :param `page_idx`: the page index to be removed. + + :note: L{RemovePage} removes a tab from the multi-notebook, but does not destroy the window. + + :see: L{DeletePage} + """ + + # save active window pointer + active_wnd = None + if self._curpage >= 0: + active_wnd = self._tabs.GetWindowFromIdx(self._curpage) + + # save pointer of window being deleted + wnd = self._tabs.GetWindowFromIdx(page_idx) + new_active = None + + # make sure we found the page + if not wnd: + return False + + # find out which onscreen tab ctrl owns this tab + ctrl, ctrl_idx = self.FindTab(wnd) + if not ctrl: + return False + + currentPage = ctrl.GetPage(ctrl_idx) + is_curpage = (self._curpage == page_idx) + is_active_in_split = currentPage.active + + # remove the tab from main catalog + if not self._tabs.RemovePage(wnd): + return False + + # remove the tab from the onscreen tab ctrl + ctrl.RemovePage(wnd) + + if is_active_in_split: + + ctrl_new_page_count = ctrl.GetPageCount() + + if ctrl_idx >= ctrl_new_page_count: + ctrl_idx = ctrl_new_page_count - 1 + + if ctrl_idx >= 0 and ctrl_idx < ctrl.GetPageCount(): + + ctrl_idx = self.FindNextActiveTab(ctrl_idx, ctrl) + + # set new page as active in the tab split + ctrl.SetActivePage(ctrl_idx) + + # if the page deleted was the current page for the + # entire tab control, then record the window + # pointer of the new active page for activation + if is_curpage: + new_active = ctrl.GetWindowFromIdx(ctrl_idx) + + else: + + # we are not deleting the active page, so keep it the same + new_active = active_wnd + + if not new_active: + + # we haven't yet found a new page to active, + # so select the next page from the main tab + # catalogue + + if 0 <= page_idx < self._tabs.GetPageCount(): + new_active = self._tabs.GetPage(page_idx).window + if not new_active and self._tabs.GetPageCount() > 0: + new_active = self._tabs.GetPage(0).window + + self.RemoveEmptyTabFrames() + + # set new active pane + if new_active: + if not self.IsBeingDeleted(): + self._curpage = -1 + self.SetSelectionToWindow(new_active) + else: + self._curpage = -1 + self._tabs.SetNoneActive() + + return True + + + def FindNextActiveTab(self, ctrl_idx, ctrl): + """ + Finds the next active tab (used mainly when L{AuiNotebook} has inactive/disabled + tabs in it). + + :param `ctrl_idx`: the index of the first (most obvious) tab to check for active status; + :param `ctrl`: an instance of L{AuiTabCtrl}. + """ + + if self.GetEnabled(ctrl_idx): + return ctrl_idx + + for indx in xrange(ctrl_idx, ctrl.GetPageCount()): + if self.GetEnabled(indx): + return indx + + for indx in xrange(ctrl_idx, -1, -1): + if self.GetEnabled(indx): + return indx + + return 0 + + + def HideAllTabs(self, hidden=True): + """ + Hides all tabs on the L{AuiNotebook} control. + + :param `hidden`: if ``True`` hides all tabs. + """ + + self._hide_tabs = hidden + + + def SetSashDClickUnsplit(self, unsplit=True): + """ + Sets whether to unsplit a splitted L{AuiNotebook} when double-clicking on a sash. + + :param `unsplit`: ``True`` to unsplit on sash double-clicking, ``False`` otherwise. + """ + + self._sash_dclick_unsplit = unsplit + + + def GetSashDClickUnsplit(self): + """ + Returns whether a splitted L{AuiNotebook} can be unsplitted by double-clicking + on the splitter sash. + """ + + return self._sash_dclick_unsplit + + + def SetMinMaxTabWidth(self, minTabWidth, maxTabWidth): + """ + Sets the minimum and/or the maximum tab widths for L{AuiNotebook} when the + ``AUI_NB_TAB_FIXED_WIDTH`` style is defined. + + Pass -1 to either `minTabWidth` or `maxTabWidth` to reset to the default tab + width behaviour for L{AuiNotebook}. + + :param `minTabWidth`: the minimum allowed tab width, in pixels; + :param `maxTabWidth`: the maximum allowed tab width, in pixels. + + :note: Minimum and maximum tabs widths are used only when the ``AUI_NB_TAB_FIXED_WIDTH`` + style is present. + """ + + if minTabWidth > maxTabWidth: + raise Exception("Minimum tab width must be less or equal than maximum tab width") + + self._tabBounds = (minTabWidth, maxTabWidth) + self.SetAGWWindowStyleFlag(self._agwFlags) + + + def GetMinMaxTabWidth(self): + """ + Returns the minimum and the maximum tab widths for L{AuiNotebook} when the + ``AUI_NB_TAB_FIXED_WIDTH`` style is defined. + + :note: Minimum and maximum tabs widths are used only when the ``AUI_NB_TAB_FIXED_WIDTH`` + style is present. + + :see: L{SetMinMaxTabWidth} for more information. + """ + + return self._tabBounds + + + def GetPageIndex(self, page_wnd): + """ + Returns the page index for the specified window. If the window is not + found in the notebook, ``wx.NOT_FOUND`` is returned. + """ + + return self._tabs.GetIdxFromWindow(page_wnd) + + + def SetPageText(self, page_idx, text): + """ + Sets the tab label for the page. + + :param `page_idx`: the page index; + :param `text`: the new tab label. + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + # update our own tab catalog + page_info = self._tabs.GetPage(page_idx) + should_refresh = page_info.caption != text + page_info.caption = text + + # update what's on screen + ctrl, ctrl_idx = self.FindTab(page_info.window) + if not ctrl: + return False + + info = ctrl.GetPage(ctrl_idx) + should_refresh = should_refresh or info.caption != text + info.caption = text + + if should_refresh: + ctrl.Refresh() + ctrl.Update() + + self.UpdateTabCtrlHeight(force=True) + + return True + + + def GetPageText(self, page_idx): + """ + Returns the tab label for the page. + + :param `page_idx`: the page index. + """ + + if page_idx >= self._tabs.GetPageCount(): + return "" + + # update our own tab catalog + page_info = self._tabs.GetPage(page_idx) + return page_info.caption + + + def SetPageBitmap(self, page_idx, bitmap): + """ + Sets the tab bitmap for the page. + + :param `page_idx`: the page index; + :param `bitmap`: an instance of `wx.Bitmap`. + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + # update our own tab catalog + page_info = self._tabs.GetPage(page_idx) + should_refresh = page_info.bitmap is not bitmap + page_info.bitmap = bitmap + if bitmap.IsOk() and not page_info.dis_bitmap.IsOk(): + page_info.dis_bitmap = MakeDisabledBitmap(bitmap) + + # tab height might have changed + self.UpdateTabCtrlHeight() + + # update what's on screen + ctrl, ctrl_idx = self.FindTab(page_info.window) + if not ctrl: + return False + + info = ctrl.GetPage(ctrl_idx) + should_refresh = should_refresh or info.bitmap is not bitmap + info.bitmap = bitmap + info.dis_bitmap = page_info.dis_bitmap + if should_refresh: + ctrl.Refresh() + ctrl.Update() + + return True + + + def GetPageBitmap(self, page_idx): + """ + Returns the tab bitmap for the page. + + :param `page_idx`: the page index. + """ + + if page_idx >= self._tabs.GetPageCount(): + return wx.NullBitmap + + # update our own tab catalog + page_info = self._tabs.GetPage(page_idx) + return page_info.bitmap + + + def SetImageList(self, imageList): + """ + Sets the image list for the L{AuiNotebook} control. + + :param `imageList`: an instance of `wx.ImageList`. + """ + + self._imageList = imageList + + + def AssignImageList(self, imageList): + """ + Sets the image list for the L{AuiNotebook} control. + + :param `imageList`: an instance of `wx.ImageList`. + """ + + self.SetImageList(imageList) + + + def GetImageList(self): + """ Returns the associated image list (if any). """ + + return self._imageList + + + def SetPageImage(self, page, image): + """ + Sets the image index for the given page. + + :param `page`: the page index; + :param `image`: an index into the image list which was set with L{SetImageList}. + """ + + if page >= self._tabs.GetPageCount(): + return False + + if not isinstance(image, types.IntType): + raise Exception("The image parameter must be an integer, you passed " \ + "%s"%repr(image)) + + if not self._imageList: + raise Exception("To use SetPageImage you need to associate an image list " \ + "Using SetImageList or AssignImageList") + + if image >= self._imageList.GetImageCount(): + raise Exception("Invalid image index (%d), the image list contains only" \ + " (%d) bitmaps"%(image, self._imageList.GetImageCount())) + + if image == -1: + self.SetPageBitmap(page, wx.NullBitmap) + return + + bitmap = self._imageList.GetBitmap(image) + self.SetPageBitmap(page, bitmap) + + + def GetPageImage(self, page): + """ + Returns the image index for the given page. + + :param `page`: the given page for which to retrieve the image index. + """ + + if page >= self._tabs.GetPageCount(): + return False + + bitmap = self.GetPageBitmap(page) + for indx in xrange(self._imageList.GetImageCount()): + imgListBmp = self._imageList.GetBitmap(indx) + if imgListBmp == bitmap: + return indx + + return wx.NOT_FOUND + + + def SetPageTextColour(self, page_idx, colour): + """ + Sets the tab text colour for the page. + + :param `page_idx`: the page index; + :param `colour`: an instance of `wx.Colour`. + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + # update our own tab catalog + page_info = self._tabs.GetPage(page_idx) + should_refresh = page_info.text_colour != colour + page_info.text_colour = colour + + # update what's on screen + ctrl, ctrl_idx = self.FindTab(page_info.window) + if not ctrl: + return False + + info = ctrl.GetPage(ctrl_idx) + should_refresh = should_refresh or info.text_colour != colour + info.text_colour = page_info.text_colour + + if should_refresh: + ctrl.Refresh() + ctrl.Update() + + return True + + + def GetPageTextColour(self, page_idx): + """ + Returns the tab text colour for the page. + + :param `page_idx`: the page index. + """ + + if page_idx >= self._tabs.GetPageCount(): + return wx.NullColour + + # update our own tab catalog + page_info = self._tabs.GetPage(page_idx) + return page_info.text_colour + + + def AddControlToPage(self, page_idx, control): + """ + Adds a control inside a tab (not in the tab area). + + :param `page_idx`: the page index; + :param `control`: an instance of `wx.Window`. + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + # update our own tab catalog + page_info = self._tabs.GetPage(page_idx) + page_info.control = control + + # tab height might have changed + self.UpdateTabCtrlHeight(force=True) + + # update what's on screen + ctrl, ctrl_idx = self.FindTab(page_info.window) + if not ctrl: + return False + + control.Reparent(ctrl) + + info = ctrl.GetPage(ctrl_idx) + info.control = control + ctrl.Refresh() + ctrl.Update() + + return True + + + def RemoveControlFromPage(self, page_idx): + """ + Removes a control from a tab (not from the tab area). + + :param `page_idx`: the page index. + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + page_info = self._tabs.GetPage(page_idx) + if page_info.control is None: + return False + + page_info.control.Destroy() + page_info.control = None + + # tab height might have changed + self.UpdateTabCtrlHeight(force=True) + + # update what's on screen + ctrl, ctrl_idx = self.FindTab(page_info.window) + if not ctrl: + return False + + info = ctrl.GetPage(ctrl_idx) + info.control = None + ctrl.Refresh() + ctrl.Update() + + return True + + + def SetCloseButton(self, page_idx, hasCloseButton): + """ + Sets whether a tab should display a close button or not. + + :param `page_idx`: the page index; + :param `hasCloseButton`: ``True`` if the page displays a close button. + + :note: This can only be called if ``AUI_NB_CLOSE_ON_ALL_TABS`` is specified. + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + if self._agwFlags & AUI_NB_CLOSE_ON_ALL_TABS == 0: + raise Exception("SetCloseButton can only be used with AUI_NB_CLOSE_ON_ALL_TABS style.") + + # update our own tab catalog + page_info = self._tabs.GetPage(page_idx) + page_info.hasCloseButton = hasCloseButton + + # update what's on screen + ctrl, ctrl_idx = self.FindTab(page_info.window) + if not ctrl: + return False + + info = ctrl.GetPage(ctrl_idx) + info.hasCloseButton = page_info.hasCloseButton + ctrl.Refresh() + ctrl.Update() + + return True + + + def HasCloseButton(self, page_idx): + """ + Returns whether a tab displays a close button or not. + + :param `page_idx`: the page index. + + :note: This can only be called if ``AUI_NB_CLOSE_ON_ALL_TABS`` is specified. + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + page_info = self._tabs.GetPage(page_idx) + return page_info.hasCloseButton + + + def GetSelection(self): + """ Returns the index of the currently active page, or -1 if none was selected. """ + + return self._curpage + + + def GetCurrentPage(self): + """ Returns the currently active page (not the index), or ``None`` if none was selected. """ + + if self._curpage >= 0 and self._curpage < self._tabs.GetPageCount(): + return self.GetPage(self._curpage) + + return None + + + def EnsureVisible(self, indx): + """ + Ensures the input page index `indx` is visible. + + :param `indx`: the page index. + """ + + self._tabs.MakeTabVisible(indx, self) + + + def SetSelection(self, new_page, force=False): + """ + Sets the page selection. Calling this method will generate a page change event. + + :param `new_page`: the index of the new selection; + :param `force`: whether to force the selection or not. + """ + wnd = self._tabs.GetWindowFromIdx(new_page) + + #Update page access time + self._tabs.GetPages()[new_page].access_time = datetime.datetime.now() + + if not wnd or not self.GetEnabled(new_page): + return self._curpage + + # don't change the page unless necessary + # however, clicking again on a tab should give it the focus. + if new_page == self._curpage and not force: + + ctrl, ctrl_idx = self.FindTab(wnd) + if wx.Window.FindFocus() != ctrl: + ctrl.SetFocus() + + return self._curpage + + evt = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, self.GetId()) + evt.SetSelection(new_page) + evt.SetOldSelection(self._curpage) + evt.SetEventObject(self) + + if not self.GetEventHandler().ProcessEvent(evt) or evt.IsAllowed(): + + old_curpage = self._curpage + self._curpage = new_page + + # program allows the page change + evt.SetEventType(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED) + self.GetEventHandler().ProcessEvent(evt) + + if not evt.IsAllowed(): # event is no longer allowed after handler + return self._curpage + + ctrl, ctrl_idx = self.FindTab(wnd) + + if ctrl: + self._tabs.SetActivePage(wnd) + ctrl.SetActivePage(ctrl_idx) + self.DoSizing() + ctrl.DoShowHide() + ctrl.MakeTabVisible(ctrl_idx, ctrl) + + # set fonts + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + + tabctrl = pane.window._tabs + if tabctrl != ctrl: + tabctrl.SetSelectedFont(self._normal_font) + else: + tabctrl.SetSelectedFont(self._selected_font) + + tabctrl.Refresh() + tabctrl.Update() + + # Set the focus to the page if we're not currently focused on the tab. + # This is Firefox-like behaviour. + if wnd.IsShownOnScreen() and wx.Window.FindFocus() != ctrl: + wnd.SetFocus() + + return old_curpage + + return self._curpage + + + def SetSelectionToWindow(self, win): + """ + Sets the selection based on the input window `win`. + + :param `win`: a `wx.Window` derived window. + """ + + idx = self._tabs.GetIdxFromWindow(win) + + if idx == wx.NOT_FOUND: + raise Exception("invalid notebook page") + + if not self.GetEnabled(idx): + return + + # since a tab was clicked, let the parent know that we received + # the focus, even if we will assign that focus immediately + # to the child tab in the SetSelection call below + # (the child focus event will also let AuiManager, if any, + # know that the notebook control has been activated) + + parent = self.GetParent() + if parent: + eventFocus = wx.ChildFocusEvent(self) + parent.GetEventHandler().ProcessEvent(eventFocus) + + self.SetSelection(idx) + + + def SetSelectionToPage(self, page): + """ + Sets the selection based on the input page. + + :param `page`: an instance of L{AuiNotebookPage}. + """ + + self.SetSelectionToWindow(page.window) + + + def GetPageCount(self): + """ Returns the number of pages in the notebook. """ + + return self._tabs.GetPageCount() + + + def GetPage(self, page_idx): + """ + Returns the page specified by the given index. + + :param `page_idx`: the page index. + """ + + if page_idx >= self._tabs.GetPageCount(): + raise Exception("invalid notebook page") + + return self._tabs.GetWindowFromIdx(page_idx) + + + def GetPageInfo(self, page_idx): + """ + Returns the L{AuiNotebookPage} info structure specified by the given index. + + :param `page_idx`: the page index. + """ + + if page_idx >= self._tabs.GetPageCount(): + raise Exception("invalid notebook page") + + return self._tabs.GetPage(page_idx) + + + def GetEnabled(self, page_idx): + """ + Returns whether the page specified by the index `page_idx` is enabled. + + :param `page_idx`: the page index. + """ + + return self._tabs.GetEnabled(page_idx) + + + def EnableTab(self, page_idx, enable=True): + """ + Enables/disables a page in the notebook. + + :param `page_idx`: the page index; + :param `enable`: ``True`` to enable the page, ``False`` to disable it. + """ + + self._tabs.EnableTab(page_idx, enable) + self.Refresh() + + + def DoSizing(self): + """ Performs all sizing operations in each tab control. """ + + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + + tabframe = pane.window + tabframe.DoSizing() + + + def GetAuiManager(self): + """ Returns the associated L{AuiManager}. """ + + return self._mgr + + + def GetActiveTabCtrl(self): + """ + Returns the active tab control. It is called to determine which control + gets new windows being added. + """ + + if self._curpage >= 0 and self._curpage < self._tabs.GetPageCount(): + + # find the tab ctrl with the current page + ctrl, idx = self.FindTab(self._tabs.GetPage(self._curpage).window) + if ctrl: + return ctrl + + # no current page, just find the first tab ctrl + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + + tabframe = pane.window + return tabframe._tabs + + # If there is no tabframe at all, create one + tabframe = TabFrame(self) + tabframe.SetTabCtrlHeight(self._tab_ctrl_height) + self._tab_id_counter += 1 + tabframe._tabs = AuiTabCtrl(self, self._tab_id_counter) + + tabframe._tabs.SetAGWFlags(self._agwFlags) + tabframe._tabs.SetArtProvider(self._tabs.GetArtProvider().Clone()) + self._mgr.AddPane(tabframe, framemanager.AuiPaneInfo().Center().CaptionVisible(False). + PaneBorder((self._agwFlags & AUI_NB_SUB_NOTEBOOK) == 0)) + + self._mgr.Update() + + return tabframe._tabs + + + def FindTab(self, page): + """ + Finds the tab control that currently contains the window as well + as the index of the window in the tab control. It returns ``True`` if the + window was found, otherwise ``False``. + + :param `page`: an instance of L{AuiNotebookPage}. + """ + + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + + tabframe = pane.window + + page_idx = tabframe._tabs.GetIdxFromWindow(page) + + if page_idx != -1: + + ctrl = tabframe._tabs + idx = page_idx + return ctrl, idx + + return None, wx.NOT_FOUND + + + def Split(self, page, direction): + """ + Performs a split operation programmatically. + + :param `page`: indicates the page that will be split off. This page will also become + the active page after the split. + :param `direction`: specifies where the pane should go, it should be one of the + following: ``wx.TOP``, ``wx.BOTTOM``, ``wx.LEFT``, or ``wx.RIGHT``. + """ + + cli_size = self.GetClientSize() + + # get the page's window pointer + wnd = self.GetPage(page) + if not wnd: + return + + # notebooks with 1 or less pages can't be split + if self.GetPageCount() < 2: + return + + # find out which tab control the page currently belongs to + + src_tabs, src_idx = self.FindTab(wnd) + if not src_tabs: + return + + # choose a split size + if self.GetPageCount() > 2: + split_size = self.CalculateNewSplitSize() + else: + # because there are two panes, always split them + # equally + split_size = self.GetClientSize() + split_size.x /= 2 + split_size.y /= 2 + + # create a new tab frame + new_tabs = TabFrame(self) + new_tabs._rect = wx.RectPS(wx.Point(0, 0), split_size) + new_tabs.SetTabCtrlHeight(self._tab_ctrl_height) + self._tab_id_counter += 1 + new_tabs._tabs = AuiTabCtrl(self, self._tab_id_counter) + + new_tabs._tabs.SetArtProvider(self._tabs.GetArtProvider().Clone()) + new_tabs._tabs.SetAGWFlags(self._agwFlags) + dest_tabs = new_tabs._tabs + + page_info = src_tabs.GetPage(src_idx) + if page_info.control: + self.ReparentControl(page_info.control, dest_tabs) + + # create a pane info structure with the information + # about where the pane should be added + pane_info = framemanager.AuiPaneInfo().Bottom().CaptionVisible(False) + + if direction == wx.LEFT: + + pane_info.Left() + mouse_pt = wx.Point(0, cli_size.y/2) + + elif direction == wx.RIGHT: + + pane_info.Right() + mouse_pt = wx.Point(cli_size.x, cli_size.y/2) + + elif direction == wx.TOP: + + pane_info.Top() + mouse_pt = wx.Point(cli_size.x/2, 0) + + elif direction == wx.BOTTOM: + + pane_info.Bottom() + mouse_pt = wx.Point(cli_size.x/2, cli_size.y) + + self._mgr.AddPane(new_tabs, pane_info, mouse_pt) + self._mgr.Update() + + # remove the page from the source tabs + page_info.active = False + + src_tabs.RemovePage(page_info.window) + + if src_tabs.GetPageCount() > 0: + src_tabs.SetActivePage(0) + src_tabs.DoShowHide() + src_tabs.Refresh() + + # add the page to the destination tabs + dest_tabs.InsertPage(page_info.window, page_info, 0) + + if src_tabs.GetPageCount() == 0: + self.RemoveEmptyTabFrames() + + self.DoSizing() + dest_tabs.DoShowHide() + dest_tabs.Refresh() + + # force the set selection function reset the selection + self._curpage = -1 + + # set the active page to the one we just split off + self.SetSelectionToPage(page_info) + + self.UpdateHintWindowSize() + + + def UnSplit(self): + """ Restores original view after a tab split. """ + + self.Freeze() + + # remember the tab now selected + nowSelected = self.GetSelection() + # select first tab as destination + self.SetSelection(0) + # iterate all other tabs + for idx in xrange(1, self.GetPageCount()): + # get win reference + win = self.GetPage(idx) + # get tab title + title = self.GetPageText(idx) + # get page bitmap + bmp = self.GetPageBitmap(idx) + # remove from notebook + self.RemovePage(idx) + # re-add in the same position so it will tab + self.InsertPage(idx, win, title, False, bmp) + # restore orignial selected tab + self.SetSelection(nowSelected) + + self.Thaw() + + + def ReparentControl(self, control, dest_tabs): + """ + Reparents a control added inside a tab. + + :param `control`: an instance of `wx.Window`; + :param `dest_tabs`: the destination L{AuiTabCtrl}. + """ + + control.Hide() + control.Reparent(dest_tabs) + + + def UnsplitDClick(self, part, sash_size, pos): + """ + Unsplit the L{AuiNotebook} on sash double-click. + + :param `part`: an UI part representing the sash; + :param `sash_size`: the sash size; + :param `pos`: the double-click mouse position. + + :warning: Due to a bug on MSW, for disabled pages `wx.FindWindowAtPoint` + returns the wrong window. See http://trac.wxwidgets.org/ticket/2942 + """ + + if not self._sash_dclick_unsplit: + # Unsplit not allowed + return + + pos1 = wx.Point(*pos) + pos2 = wx.Point(*pos) + if part.orientation == wx.HORIZONTAL: + pos1.y -= 2*sash_size + pos2.y += 2*sash_size + self.GetTabCtrlHeight() + elif part.orientation == wx.VERTICAL: + pos1.x -= 2*sash_size + pos2.x += 2*sash_size + else: + raise Exception("Invalid UI part orientation") + + pos1, pos2 = self.ClientToScreen(pos1), self.ClientToScreen(pos2) + win1, win2 = wx.FindWindowAtPoint(pos1), wx.FindWindowAtPoint(pos2) + + if isinstance(win1, wx.ScrollBar): + # Hopefully it will work + pos1 = wx.Point(*pos) + shift = wx.SystemSettings.GetMetric(wx.SYS_VSCROLL_X) + 2*(sash_size+1) + if part.orientation == wx.HORIZONTAL: + pos1.y -= shift + else: + pos1.x -= shift + + pos1 = self.ClientToScreen(pos1) + win1 = wx.FindWindowAtPoint(pos1) + + if isinstance(win2, wx.ScrollBar): + pos2 = wx.Point(*pos) + shift = wx.SystemSettings.GetMetric(wx.SYS_VSCROLL_X) + 2*(sash_size+1) + if part.orientation == wx.HORIZONTAL: + pos2.y += shift + else: + pos2.x += shift + + pos2 = self.ClientToScreen(pos2) + win2 = wx.FindWindowAtPoint(pos2) + + if not win1 or not win2: + # How did we get here? + return + + if isinstance(win1, AuiNotebook) or isinstance(win2, AuiNotebook): + # This is a bug on MSW, for disabled pages wx.FindWindowAtPoint + # returns the wrong window. + # See http://trac.wxwidgets.org/ticket/2942 + return + + tab_frame1, tab_frame2 = self.GetTabFrameFromWindow(win1), self.GetTabFrameFromWindow(win2) + + if not tab_frame1 or not tab_frame2: + return + + tab_ctrl_1, tab_ctrl_2 = tab_frame1._tabs, tab_frame2._tabs + + if tab_ctrl_1.GetPageCount() > tab_ctrl_2.GetPageCount(): + src_tabs = tab_ctrl_2 + dest_tabs = tab_ctrl_1 + else: + src_tabs = tab_ctrl_1 + dest_tabs = tab_ctrl_2 + + selection = -1 + page_count = dest_tabs.GetPageCount() + + for page in xrange(src_tabs.GetPageCount()-1, -1, -1): + # remove the page from the source tabs + page_info = src_tabs.GetPage(page) + if page_info.active: + selection = page_count + page + src_tabs.RemovePage(page_info.window) + + # add the page to the destination tabs + dest_tabs.AddPage(page_info.window, page_info) + if page_info.control: + self.ReparentControl(page_info.control, dest_tabs) + + self.RemoveEmptyTabFrames() + + dest_tabs.DoShowHide() + self.DoSizing() + dest_tabs.Refresh() + self._mgr.Update() + if selection > 0: + wx.CallAfter(dest_tabs.MakeTabVisible, selection, self) + + + def OnSize(self, event): + """ + Handles the ``wx.EVT_SIZE`` event for L{AuiNotebook}. + + :param `event`: a `wx.SizeEvent` event to be processed. + """ + + self.UpdateHintWindowSize() + event.Skip() + + + def OnTabClicked(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_PAGE_CHANGING`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + if self._textCtrl is not None: + self._textCtrl.StopEditing() + + ctrl = event.GetEventObject() + assert ctrl != None + + wnd = ctrl.GetWindowFromIdx(event.GetSelection()) + assert wnd != None + + self.SetSelectionToWindow(wnd) + + + def OnTabBgDClick(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_BG_DCLICK`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + if self._textCtrl is not None: + self._textCtrl.StopEditing() + + # notify owner that the tabbar background has been double-clicked + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_BG_DCLICK, self.GetId()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def OnTabDClick(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_TAB_DCLICK`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + # notify owner that the tabbar background has been double-clicked + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_DCLICK, self.GetId()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + tabs = event.GetEventObject() + if not tabs.GetEnabled(event.GetSelection()): + return + + if not self.IsRenamable(event.GetSelection()): + return + + self.EditTab(event.GetSelection()) + + + def OnTabBeginDrag(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_BEGIN_DRAG`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + tabs = event.GetEventObject() + if not tabs.GetEnabled(event.GetSelection()): + return + + self._last_drag_x = 0 + + + def OnTabDragMotion(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_DRAG_MOTION`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + tabs = event.GetEventObject() + if not tabs.GetEnabled(event.GetSelection()): + return + + if self._textCtrl is not None: + self._textCtrl.StopEditing() + + screen_pt = wx.GetMousePosition() + client_pt = self.ScreenToClient(screen_pt) + zero = wx.Point(0, 0) + + src_tabs = event.GetEventObject() + dest_tabs = self.GetTabCtrlFromPoint(client_pt) + + if dest_tabs == src_tabs: + + # always hide the hint for inner-tabctrl drag + self._mgr.HideHint() + + # if tab moving is not allowed, leave + if not self._agwFlags & AUI_NB_TAB_MOVE: + return + + pt = dest_tabs.ScreenToClient(screen_pt) + + # this is an inner-tab drag/reposition + dest_location_tab = dest_tabs.TabHitTest(pt.x, pt.y) + + if dest_location_tab: + + src_idx = event.GetSelection() + dest_idx = dest_tabs.GetIdxFromWindow(dest_location_tab) + + # prevent jumpy drag + if (src_idx == dest_idx) or dest_idx == -1 or \ + (src_idx > dest_idx and self._last_drag_x <= pt.x) or \ + (src_idx < dest_idx and self._last_drag_x >= pt.x): + + self._last_drag_x = pt.x + return + + src_tab = dest_tabs.GetWindowFromIdx(src_idx) + dest_tabs.MovePage(src_tab, dest_idx) + self._tabs.MovePage(self._tabs.GetPage(src_idx).window, dest_idx) + dest_tabs.SetActivePage(dest_idx) + dest_tabs.DoShowHide() + dest_tabs.Refresh() + self._last_drag_x = pt.x + + return + + # if external drag is allowed, check if the tab is being dragged + # over a different AuiNotebook control + if self._agwFlags & AUI_NB_TAB_EXTERNAL_MOVE: + + tab_ctrl = wx.FindWindowAtPoint(screen_pt) + + # if we aren't over any window, stop here + if not tab_ctrl: + if self._agwFlags & AUI_NB_TAB_FLOAT: + if self.IsMouseWellOutsideWindow(): + hintRect = wx.RectPS(screen_pt, (400, 300)) + # Use CallAfter so we overwrite the hint that might be + # shown by our superclass: + wx.CallAfter(self._mgr.ShowHint, hintRect) + return + + # make sure we are not over the hint window + if not isinstance(tab_ctrl, wx.Frame): + while tab_ctrl: + if isinstance(tab_ctrl, AuiTabCtrl): + break + + tab_ctrl = tab_ctrl.GetParent() + + if tab_ctrl: + nb = tab_ctrl.GetParent() + + if nb != self: + + hint_rect = tab_ctrl.GetClientRect() + hint_rect.x, hint_rect.y = tab_ctrl.ClientToScreenXY(hint_rect.x, hint_rect.y) + self._mgr.ShowHint(hint_rect) + return + + else: + + if not dest_tabs: + # we are either over a hint window, or not over a tab + # window, and there is no where to drag to, so exit + return + + if self._agwFlags & AUI_NB_TAB_FLOAT: + if self.IsMouseWellOutsideWindow(): + hintRect = wx.RectPS(screen_pt, (400, 300)) + # Use CallAfter so we overwrite the hint that might be + # shown by our superclass: + wx.CallAfter(self._mgr.ShowHint, hintRect) + return + + # if there are less than two panes, split can't happen, so leave + if self._tabs.GetPageCount() < 2: + return + + # if tab moving is not allowed, leave + if not self._agwFlags & AUI_NB_TAB_SPLIT: + return + + if dest_tabs: + + hint_rect = dest_tabs.GetRect() + hint_rect.x, hint_rect.y = self.ClientToScreenXY(hint_rect.x, hint_rect.y) + self._mgr.ShowHint(hint_rect) + + else: + rect = self._mgr.CalculateHintRect(self._dummy_wnd, client_pt, zero) + if rect.IsEmpty(): + self._mgr.HideHint() + return + + hit_wnd = wx.FindWindowAtPoint(screen_pt) + if hit_wnd and not isinstance(hit_wnd, AuiNotebook): + tab_frame = self.GetTabFrameFromWindow(hit_wnd) + if tab_frame: + hint_rect = wx.Rect(*tab_frame._rect) + hint_rect.x, hint_rect.y = self.ClientToScreenXY(hint_rect.x, hint_rect.y) + rect.Intersect(hint_rect) + self._mgr.ShowHint(rect) + else: + self._mgr.DrawHintRect(self._dummy_wnd, client_pt, zero) + else: + self._mgr.DrawHintRect(self._dummy_wnd, client_pt, zero) + + + def OnTabEndDrag(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_END_DRAG`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + tabs = event.GetEventObject() + if not tabs.GetEnabled(event.GetSelection()): + return + + self._mgr.HideHint() + + src_tabs = event.GetEventObject() + if not src_tabs: + raise Exception("no source object?") + + # get the mouse position, which will be used to determine the drop point + mouse_screen_pt = wx.GetMousePosition() + mouse_client_pt = self.ScreenToClient(mouse_screen_pt) + + # check for an external move + if self._agwFlags & AUI_NB_TAB_EXTERNAL_MOVE: + tab_ctrl = wx.FindWindowAtPoint(mouse_screen_pt) + + while tab_ctrl: + + if isinstance(tab_ctrl, AuiTabCtrl): + break + + tab_ctrl = tab_ctrl.GetParent() + + if tab_ctrl: + + nb = tab_ctrl.GetParent() + + if nb != self: + + # find out from the destination control + # if it's ok to drop this tab here + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND, self.GetId()) + e.SetSelection(event.GetSelection()) + e.SetOldSelection(event.GetSelection()) + e.SetEventObject(self) + e.SetDragSource(self) + e.Veto() # dropping must be explicitly approved by control owner + + nb.GetEventHandler().ProcessEvent(e) + + if not e.IsAllowed(): + + # no answer or negative answer + self._mgr.HideHint() + return + + # drop was allowed + src_idx = event.GetSelection() + src_page = src_tabs.GetWindowFromIdx(src_idx) + + # Check that it's not an impossible parent relationship + p = nb + while p and not p.IsTopLevel(): + if p == src_page: + return + + p = p.GetParent() + + # get main index of the page + main_idx = self._tabs.GetIdxFromWindow(src_page) + if main_idx == wx.NOT_FOUND: + raise Exception("no source page?") + + # make a copy of the page info + page_info = self._tabs.GetPage(main_idx) + + # remove the page from the source notebook + self.RemovePage(main_idx) + + # reparent the page + src_page.Reparent(nb) + + # Reparent the control in a tab (if any) + if page_info.control: + self.ReparentControl(page_info.control, tab_ctrl) + + # find out the insert idx + dest_tabs = tab_ctrl + pt = dest_tabs.ScreenToClient(mouse_screen_pt) + + target = dest_tabs.TabHitTest(pt.x, pt.y) + insert_idx = -1 + if target: + insert_idx = dest_tabs.GetIdxFromWindow(target) + + # add the page to the new notebook + if insert_idx == -1: + insert_idx = dest_tabs.GetPageCount() + + dest_tabs.InsertPage(page_info.window, page_info, insert_idx) + nb._tabs.AddPage(page_info.window, page_info) + + nb.DoSizing() + dest_tabs.DoShowHide() + dest_tabs.Refresh() + + # set the selection in the destination tab control + nb.SetSelectionToPage(page_info) + + # notify owner that the tab has been dragged + e2 = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_DRAG_DONE, self.GetId()) + e2.SetSelection(event.GetSelection()) + e2.SetOldSelection(event.GetSelection()) + e2.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e2) + + # notify the target notebook that the tab has been dragged + e3 = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_DRAG_DONE, nb.GetId()) + e3.SetSelection(insert_idx) + e3.SetOldSelection(insert_idx) + e3.SetEventObject(nb) + nb.GetEventHandler().ProcessEvent(e3) + + return + + if self._agwFlags & AUI_NB_TAB_FLOAT: + self._mgr.HideHint() + if self.IsMouseWellOutsideWindow(): + # Use CallAfter so we our superclass can deal with the event first + wx.CallAfter(self.FloatPage, self.GetSelection()) + event.Skip() + return + + # only perform a tab split if it's allowed + dest_tabs = None + + if self._agwFlags & AUI_NB_TAB_SPLIT and self._tabs.GetPageCount() >= 2: + + # If the pointer is in an existing tab frame, do a tab insert + hit_wnd = wx.FindWindowAtPoint(mouse_screen_pt) + tab_frame = self.GetTabFrameFromTabCtrl(hit_wnd) + insert_idx = -1 + + if tab_frame: + + dest_tabs = tab_frame._tabs + + if dest_tabs == src_tabs: + return + + pt = dest_tabs.ScreenToClient(mouse_screen_pt) + target = dest_tabs.TabHitTest(pt.x, pt.y) + + if target: + insert_idx = dest_tabs.GetIdxFromWindow(target) + + else: + + zero = wx.Point(0, 0) + rect = self._mgr.CalculateHintRect(self._dummy_wnd, mouse_client_pt, zero) + + if rect.IsEmpty(): + # there is no suitable drop location here, exit out + return + + # If there is no tabframe at all, create one + new_tabs = TabFrame(self) + new_tabs._rect = wx.RectPS(wx.Point(0, 0), self.CalculateNewSplitSize()) + new_tabs.SetTabCtrlHeight(self._tab_ctrl_height) + self._tab_id_counter += 1 + new_tabs._tabs = AuiTabCtrl(self, self._tab_id_counter) + new_tabs._tabs.SetArtProvider(self._tabs.GetArtProvider().Clone()) + new_tabs._tabs.SetAGWFlags(self._agwFlags) + + self._mgr.AddPane(new_tabs, framemanager.AuiPaneInfo().Bottom().CaptionVisible(False), mouse_client_pt) + self._mgr.Update() + dest_tabs = new_tabs._tabs + + # remove the page from the source tabs + page_info = src_tabs.GetPage(event.GetSelection()) + + if page_info.control: + self.ReparentControl(page_info.control, dest_tabs) + + page_info.active = False + src_tabs.RemovePage(page_info.window) + + if src_tabs.GetPageCount() > 0: + src_tabs.SetActivePage(0) + src_tabs.DoShowHide() + src_tabs.Refresh() + + # add the page to the destination tabs + if insert_idx == -1: + insert_idx = dest_tabs.GetPageCount() + + dest_tabs.InsertPage(page_info.window, page_info, insert_idx) + + if src_tabs.GetPageCount() == 0: + self.RemoveEmptyTabFrames() + + self.DoSizing() + dest_tabs.DoShowHide() + dest_tabs.Refresh() + + # force the set selection function reset the selection + self._curpage = -1 + + # set the active page to the one we just split off + self.SetSelectionToPage(page_info) + + self.UpdateHintWindowSize() + + # notify owner that the tab has been dragged + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_DRAG_DONE, self.GetId()) + e.SetSelection(event.GetSelection()) + e.SetOldSelection(event.GetSelection()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def OnTabCancelDrag(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_CANCEL_DRAG`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + tabs = event.GetEventObject() + if not tabs.GetEnabled(event.GetSelection()): + return + + self._mgr.HideHint() + + src_tabs = event.GetEventObject() + if not src_tabs: + raise Exception("no source object?") + + + def IsMouseWellOutsideWindow(self): + """ Returns whether the mouse is well outside the L{AuiNotebook} screen rectangle. """ + + screen_rect = self.GetScreenRect() + screen_rect.Inflate(50, 50) + + return not screen_rect.Contains(wx.GetMousePosition()) + + + def FloatPage(self, page_index): + """ + Float the page in `page_index` by reparenting it to a floating frame. + + :param `page_index`: the index of the page to be floated. + + :warning: When the notebook is more or less full screen, tabs cannot be dragged far + enough outside of the notebook to become floating pages. + """ + + root_manager = framemanager.GetManager(self) + page_title = self.GetPageText(page_index) + page_contents = self.GetPage(page_index) + page_bitmap = self.GetPageBitmap(page_index) + text_colour = self.GetPageTextColour(page_index) + info = self.GetPageInfo(page_index) + + if root_manager and root_manager != self._mgr: + root_manager = framemanager.GetManager(self) + + if hasattr(page_contents, "__floating_size__"): + floating_size = wx.Size(*page_contents.__floating_size__) + else: + floating_size = page_contents.GetBestSize() + if floating_size == wx.DefaultSize: + floating_size = wx.Size(300, 200) + + page_contents.__page_index__ = page_index + page_contents.__aui_notebook__ = self + page_contents.__text_colour__ = text_colour + page_contents.__control__ = info.control + + if info.control: + info.control.Reparent(page_contents) + info.control.Hide() + info.control = None + + self.RemovePage(page_index) + self.RemoveEmptyTabFrames() + + pane_info = framemanager.AuiPaneInfo().Float().FloatingPosition(wx.GetMousePosition()). \ + FloatingSize(floating_size).BestSize(floating_size).Name("__floating__%s"%page_title). \ + Caption(page_title).Icon(page_bitmap) + root_manager.AddPane(page_contents, pane_info) + root_manager.Bind(framemanager.EVT_AUI_PANE_CLOSE, self.OnCloseFloatingPage) + self.GetActiveTabCtrl().DoShowHide() + self.DoSizing() + root_manager.Update() + + else: + frame = wx.Frame(self, title=page_title, + style=wx.DEFAULT_FRAME_STYLE|wx.FRAME_TOOL_WINDOW| + wx.FRAME_FLOAT_ON_PARENT | wx.FRAME_NO_TASKBAR) + + if info.control: + info.control.Reparent(frame) + info.control.Hide() + + frame.bitmap = page_bitmap + frame.page_index = page_index + frame.text_colour = text_colour + frame.control = info.control + page_contents.Reparent(frame) + frame.Bind(wx.EVT_CLOSE, self.OnCloseFloatingPage) + frame.Move(wx.GetMousePosition()) + frame.Show() + self.RemovePage(page_index) + + self.RemoveEmptyTabFrames() + + wx.CallAfter(self.RemoveEmptyTabFrames) + + + def OnCloseFloatingPage(self, event): + """ + Handles the ``wx.EVT_CLOSE`` event for a floating page in L{AuiNotebook}. + + :param `event`: a `wx.CloseEvent` event to be processed. + """ + + root_manager = framemanager.GetManager(self) + if root_manager and root_manager != self._mgr: + pane = event.pane + if pane.name.startswith("__floating__"): + self.ReDockPage(pane) + return + + event.Skip() + else: + event.Skip() + frame = event.GetEventObject() + page_title = frame.GetTitle() + page_contents = list(frame.GetChildren())[-1] + page_contents.Reparent(self) + self.InsertPage(frame.page_index, page_contents, page_title, select=True, bitmap=frame.bitmap, control=frame.control) + + if frame.control: + src_tabs, idx = self.FindTab(page_contents) + frame.control.Reparent(src_tabs) + frame.control.Hide() + frame.control = None + + self.SetPageTextColour(frame.page_index, frame.text_colour) + + + def ReDockPage(self, pane): + """ + Re-docks a floating L{AuiNotebook} tab in the original position, when possible. + + :param `pane`: an instance of L{framemanager.AuiPaneInfo}. + """ + + root_manager = framemanager.GetManager(self) + + pane.window.__floating_size__ = wx.Size(*pane.floating_size) + page_index = pane.window.__page_index__ + text_colour = pane.window.__text_colour__ + control = pane.window.__control__ + + root_manager.DetachPane(pane.window) + self.InsertPage(page_index, pane.window, pane.caption, True, pane.icon, control=control) + + self.SetPageTextColour(page_index, text_colour) + self.GetActiveTabCtrl().DoShowHide() + self.DoSizing() + if control: + self.UpdateTabCtrlHeight(force=True) + + self._mgr.Update() + root_manager.Update() + + + def GetTabCtrlFromPoint(self, pt): + """ + Returns the tab control at the specified point. + + :param `pt`: a `wx.Point` object. + """ + + # if we've just removed the last tab from the source + # tab set, the remove the tab control completely + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + + tabframe = pane.window + if tabframe._tab_rect.Contains(pt): + return tabframe._tabs + + return None + + + def GetTabFrameFromTabCtrl(self, tab_ctrl): + """ + Returns the tab frame associated with a tab control. + + :param `tab_ctrl`: an instance of L{AuiTabCtrl}. + """ + + # if we've just removed the last tab from the source + # tab set, the remove the tab control completely + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + + tabframe = pane.window + if tabframe._tabs == tab_ctrl: + return tabframe + + return None + + + def GetTabFrameFromWindow(self, wnd): + """ + Returns the tab frame associated with a window. + + :param `wnd`: an instance of `wx.Window`. + """ + + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + + tabframe = pane.window + for page in tabframe._tabs.GetPages(): + if wnd == page.window: + return tabframe + + return None + + + def RemoveEmptyTabFrames(self): + """ Removes all the empty tab frames. """ + + # if we've just removed the last tab from the source + # tab set, the remove the tab control completely + all_panes = self._mgr.GetAllPanes() + + for indx in xrange(len(all_panes)-1, -1, -1): + pane = all_panes[indx] + if pane.name == "dummy": + continue + + tab_frame = pane.window + if tab_frame._tabs.GetPageCount() == 0: + self._mgr.DetachPane(tab_frame) + tab_frame._tabs.Destroy() + tab_frame._tabs = None + del tab_frame + + # check to see if there is still a center pane + # if there isn't, make a frame the center pane + first_good = None + center_found = False + + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + + if pane.dock_direction == AUI_DOCK_CENTRE: + center_found = True + if not first_good: + first_good = pane.window + + if not center_found and first_good: + self._mgr.GetPane(first_good).Centre() + + if not self.IsBeingDeleted(): + self._mgr.Update() + + + def OnChildFocusNotebook(self, event): + """ + Handles the ``wx.EVT_CHILD_FOCUS`` event for L{AuiNotebook}. + + :param `event`: a `wx.ChildFocusEvent` event to be processed. + """ + + # if we're dragging a tab, don't change the current selection. + # This code prevents a bug that used to happen when the hint window + # was hidden. In the bug, the focus would return to the notebook + # child, which would then enter this handler and call + # SetSelection, which is not desired turn tab dragging. + + event.Skip() + + all_panes = self._mgr.GetAllPanes() + for pane in all_panes: + if pane.name == "dummy": + continue + tabframe = pane.window + if tabframe._tabs.IsDragging(): + return + +## # change the tab selection to the child +## # which was focused +## idx = self._tabs.GetIdxFromWindow(event.GetWindow()) +## if idx != -1 and idx != self._curpage: +## self.SetSelection(idx) + + + def SetNavigatorIcon(self, bmp): + """ + Sets the icon used by the L{TabNavigatorWindow}. + + :param `bmp`: an instance of `wx.Bitmap`. + """ + + if isinstance(bmp, wx.Bitmap) and bmp.IsOk(): + # Make sure image is proper size + if bmp.GetSize() != (16, 16): + img = bmp.ConvertToImage() + img.Rescale(16, 16, wx.IMAGE_QUALITY_HIGH) + bmp = wx.BitmapFromImage(img) + self._naviIcon = bmp + else: + raise TypeError, "SetNavigatorIcon requires a valid bitmap" + + + def OnNavigationKeyNotebook(self, event): + """ + Handles the ``wx.EVT_NAVIGATION_KEY`` event for L{AuiNotebook}. + + :param `event`: a `wx.NavigationKeyEvent` event to be processed. + """ + + if event.IsWindowChange(): + if self._agwFlags & AUI_NB_SMART_TABS: + if not self._popupWin: + self._popupWin = TabNavigatorWindow(self, self._naviIcon) + self._popupWin.SetReturnCode(wx.ID_OK) + self._popupWin.ShowModal() + idx = self._popupWin.GetSelectedPage() + self._popupWin.Destroy() + self._popupWin = None + # Need to do CallAfter so that the selection and its + # associated events get processed outside the context of + # this key event. Not doing so causes odd issues with the + # window focus under certain use cases on Windows. + wx.CallAfter(self.SetSelection, idx, True) + else: + # a dialog is already opened + self._popupWin.OnNavigationKey(event) + return + else: + # change pages + # FIXME: the problem with this is that if we have a split notebook, + # we selection may go all over the place. + self.AdvanceSelection(event.GetDirection()) + + else: + # we get this event in 3 cases + # + # a) one of our pages might have generated it because the user TABbed + # out from it in which case we should propagate the event upwards and + # our parent will take care of setting the focus to prev/next sibling + # + # or + # + # b) the parent panel wants to give the focus to us so that we + # forward it to our selected page. We can't deal with this in + # OnSetFocus() because we don't know which direction the focus came + # from in this case and so can't choose between setting the focus to + # first or last panel child + # + # or + # + # c) we ourselves (see MSWTranslateMessage) generated the event + # + parent = self.GetParent() + + # the wxObject* casts are required to avoid MinGW GCC 2.95.3 ICE + isFromParent = event.GetEventObject() == parent + isFromSelf = event.GetEventObject() == self + + if isFromParent or isFromSelf: + + # no, it doesn't come from child, case (b) or (c): forward to a + # page but only if direction is backwards (TAB) or from ourselves, + if self.GetSelection() != wx.NOT_FOUND and (not event.GetDirection() or isFromSelf): + + # so that the page knows that the event comes from it's parent + # and is being propagated downwards + event.SetEventObject(self) + + page = self.GetPage(self.GetSelection()) + if not page.GetEventHandler().ProcessEvent(event): + page.SetFocus() + + #else: page manages focus inside it itself + + else: # otherwise set the focus to the notebook itself + + self.SetFocus() + + else: + + # send this event back for the 'wraparound' focus. + winFocus = event.GetCurrentFocus() + + if winFocus: + event.SetEventObject(self) + winFocus.GetEventHandler().ProcessEvent(event) + + + def OnTabButton(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_BUTTON`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + tabs = event.GetEventObject() + button_id = event.GetInt() + + if button_id == AUI_BUTTON_CLOSE: + + selection = event.GetSelection() + + if selection == -1: + + # if the close button is to the right, use the active + # page selection to determine which page to close + selection = tabs.GetActivePage() + + if selection == -1 or not tabs.GetEnabled(selection): + return + + if selection != -1: + + close_wnd = tabs.GetWindowFromIdx(selection) + + if close_wnd.GetName() == "__fake__page__": + # This is a notebook preview + previous_active, page_status = close_wnd.__previousStatus + for page, status in zip(tabs.GetPages(), page_status): + page.enabled = status + + main_idx = self._tabs.GetIdxFromWindow(close_wnd) + self.DeletePage(main_idx) + + if previous_active >= 0: + tabs.SetActivePage(previous_active) + page_count = tabs.GetPageCount() + selection = -1 + + for page in xrange(page_count): + # remove the page from the source tabs + page_info = tabs.GetPage(page) + if page_info.active: + selection = page + break + + tabs.DoShowHide() + self.DoSizing() + tabs.Refresh() + + if selection >= 0: + wx.CallAfter(tabs.MakeTabVisible, selection, self) + + # Don't fire the event + return + + # ask owner if it's ok to close the tab + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE, self.GetId()) + idx = self._tabs.GetIdxFromWindow(close_wnd) + e.SetSelection(idx) + e.SetOldSelection(event.GetSelection()) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + if not e.IsAllowed(): + return + + if repr(close_wnd.__class__).find("AuiMDIChildFrame") >= 0: + close_wnd.Close() + + else: + main_idx = self._tabs.GetIdxFromWindow(close_wnd) + self.DeletePage(main_idx) + + # notify owner that the tab has been closed + e2 = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSED, self.GetId()) + e2.SetSelection(idx) + e2.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e2) + + if self.GetPageCount() == 0: + mgr = self.GetAuiManager() + win = mgr.GetManagedWindow() + win.SendSizeEvent() + + + def OnTabMiddleDown(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_TAB_MIDDLE_DOWN`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + tabs = event.GetEventObject() + if not tabs.GetEnabled(event.GetSelection()): + return + + # patch event through to owner + wnd = tabs.GetWindowFromIdx(event.GetSelection()) + + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_DOWN, self.GetId()) + e.SetSelection(self._tabs.GetIdxFromWindow(wnd)) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def OnTabMiddleUp(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_TAB_MIDDLE_UP`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + tabs = event.GetEventObject() + if not tabs.GetEnabled(event.GetSelection()): + return + + # if the AUI_NB_MIDDLE_CLICK_CLOSE is specified, middle + # click should act like a tab close action. However, first + # give the owner an opportunity to handle the middle up event + # for custom action + + wnd = tabs.GetWindowFromIdx(event.GetSelection()) + + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP, self.GetId()) + e.SetSelection(self._tabs.GetIdxFromWindow(wnd)) + e.SetEventObject(self) + if self.GetEventHandler().ProcessEvent(e): + return + if not e.IsAllowed(): + return + + # check if we are supposed to close on middle-up + if self._agwFlags & AUI_NB_MIDDLE_CLICK_CLOSE == 0: + return + + # simulate the user pressing the close button on the tab + event.SetInt(AUI_BUTTON_CLOSE) + self.OnTabButton(event) + + + def OnTabRightDown(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_TAB_RIGHT_DOWN`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + tabs = event.GetEventObject() + if not tabs.GetEnabled(event.GetSelection()): + return + + # patch event through to owner + wnd = tabs.GetWindowFromIdx(event.GetSelection()) + + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_DOWN, self.GetId()) + e.SetSelection(self._tabs.GetIdxFromWindow(wnd)) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def OnTabRightUp(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_TAB_RIGHT_UP`` event for L{AuiNotebook}. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + tabs = event.GetEventObject() + if not tabs.GetEnabled(event.GetSelection()): + return + + # patch event through to owner + wnd = tabs.GetWindowFromIdx(event.GetSelection()) + + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_UP, self.GetId()) + e.SetSelection(self._tabs.GetIdxFromWindow(wnd)) + e.SetEventObject(self) + self.GetEventHandler().ProcessEvent(e) + + + def SetNormalFont(self, font): + """ + Sets the normal font for drawing tab labels. + + :param `font`: a `wx.Font` object. + """ + + self._normal_font = font + self.GetArtProvider().SetNormalFont(font) + + + def SetSelectedFont(self, font): + """ + Sets the selected tab font for drawing tab labels. + + :param `font`: a `wx.Font` object. + """ + + self._selected_font = font + self.GetArtProvider().SetSelectedFont(font) + + + def SetMeasuringFont(self, font): + """ + Sets the font for calculating text measurements. + + :param `font`: a `wx.Font` object. + """ + + self.GetArtProvider().SetMeasuringFont(font) + + + def SetFont(self, font): + """ + Sets the tab font. + + :param `font`: a `wx.Font` object. + + :note: Overridden from `wx.PyPanel`. + """ + + wx.PyPanel.SetFont(self, font) + + selectedFont = wx.Font(font.GetPointSize(), font.GetFamily(), + font.GetStyle(), wx.BOLD, font.GetUnderlined(), + font.GetFaceName(), font.GetEncoding()) + + self.SetNormalFont(font) + self.SetSelectedFont(selectedFont) + self.SetMeasuringFont(selectedFont) + + # Recalculate tab container size based on new font + self.UpdateTabCtrlHeight(force=False) + self.DoSizing() + + return True + + + def GetTabCtrlHeight(self): + """ Returns the tab control height. """ + + return self._tab_ctrl_height + + + def GetHeightForPageHeight(self, pageHeight): + """ + Gets the height of the notebook for a given page height. + + :param `pageHeight`: the given page height. + """ + + self.UpdateTabCtrlHeight() + + tabCtrlHeight = self.GetTabCtrlHeight() + decorHeight = 2 + return tabCtrlHeight + pageHeight + decorHeight + + + def AdvanceSelection(self, forward=True, wrap=True): + """ + Cycles through the tabs. + + :param `forward`: whether to advance forward or backward; + :param `wrap`: ``True`` to return to the first tab if we reach the last tab. + + :note: The call to this function generates the page changing events. + """ + + tabCtrl = self.GetActiveTabCtrl() + newPage = -1 + + focusWin = tabCtrl.FindFocus() + activePage = tabCtrl.GetActivePage() + lenPages = len(tabCtrl.GetPages()) + + if lenPages == 1: + return False + + if forward: + if lenPages > 1: + + if activePage == -1 or activePage == lenPages - 1: + if not wrap: + return False + + newPage = 0 + + elif activePage < lenPages - 1: + newPage = activePage + 1 + + else: + + if lenPages > 1: + if activePage == -1 or activePage == 0: + if not wrap: + return False + + newPage = lenPages - 1 + + elif activePage > 0: + newPage = activePage - 1 + + + if newPage != -1: + if not self.GetEnabled(newPage): + return False + + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, tabCtrl.GetId()) + e.SetSelection(newPage) + e.SetOldSelection(activePage) + e.SetEventObject(tabCtrl) + self.GetEventHandler().ProcessEvent(e) + +## if focusWin: +## focusWin.SetFocus() + + return True + + + def ShowWindowMenu(self): + """ + Shows the window menu for the active tab control associated with this + notebook, and returns ``True`` if a selection was made. + """ + + tabCtrl = self.GetActiveTabCtrl() + idx = tabCtrl.GetArtProvider().ShowDropDown(tabCtrl, tabCtrl.GetPages(), tabCtrl.GetActivePage()) + + if not self.GetEnabled(idx): + return False + + if idx != -1: + e = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, tabCtrl.GetId()) + e.SetSelection(idx) + e.SetOldSelection(tabCtrl.GetActivePage()) + e.SetEventObject(tabCtrl) + self.GetEventHandler().ProcessEvent(e) + + return True + + else: + + return False + + + def AddTabAreaButton(self, id, location, normal_bitmap=wx.NullBitmap, disabled_bitmap=wx.NullBitmap): + """ + Adds a button in the tab area. + + :param `id`: the button identifier. This can be one of the following: + + ============================== ================================= + Button Identifier Description + ============================== ================================= + ``AUI_BUTTON_CLOSE`` Shows a close button on the tab area + ``AUI_BUTTON_WINDOWLIST`` Shows a window list button on the tab area + ``AUI_BUTTON_LEFT`` Shows a left button on the tab area + ``AUI_BUTTON_RIGHT`` Shows a right button on the tab area + ============================== ================================= + + :param `location`: the button location. Can be ``wx.LEFT`` or ``wx.RIGHT``; + :param `normal_bitmap`: the bitmap for an enabled tab; + :param `disabled_bitmap`: the bitmap for a disabled tab. + """ + + active_tabctrl = self.GetActiveTabCtrl() + active_tabctrl.AddButton(id, location, normal_bitmap, disabled_bitmap) + + + def RemoveTabAreaButton(self, id): + """ + Removes a button from the tab area. + + :param `id`: the button identifier. See L{AddTabAreaButton} for a list of button identifiers. + + :see: L{AddTabAreaButton} + """ + + active_tabctrl = self.GetActiveTabCtrl() + active_tabctrl.RemoveButton(id) + + + def HasMultiplePages(self): + """ + This method should be overridden to return ``True`` if this window has multiple pages. All + standard class with multiple pages such as `wx.Notebook`, `wx.Listbook` and `wx.Treebook` + already override it to return ``True`` and user-defined classes with similar behaviour + should do it as well to allow the library to handle such windows appropriately. + + :note: Overridden from `wx.PyPanel`. + """ + + return True + + + def GetDefaultBorder(self): + """ Returns the default border style for L{AuiNotebook}. """ + + return wx.BORDER_NONE + + + def NotebookPreview(self, thumbnail_size=200): + """ + Generates a preview of all the pages in the notebook (MSW and GTK only). + + :param `thumbnail_size`: the maximum size of every page thumbnail. + + :note: this functionality is currently unavailable on wxMac. + """ + + if wx.Platform == "__WXMAC__": + return False + + tabCtrl = self.GetActiveTabCtrl() + activePage = tabCtrl.GetActivePage() + pages = tabCtrl.GetPages() + + pageStatus, pageText = [], [] + + for indx, page in enumerate(pages): + + pageStatus.append(page.enabled) + + if not page.enabled: + continue + + self.SetSelectionToPage(page) + pageText.append(page.caption) + + rect = page.window.GetScreenRect() + bmp = RescaleScreenShot(TakeScreenShot(rect), thumbnail_size) + + page.enabled = False + if indx == 0: + il = wx.ImageList(bmp.GetWidth(), bmp.GetHeight(), True) + + il.Add(bmp) + + # create the list control + listCtrl = wx.ListCtrl(self, style=wx.LC_ICON|wx.LC_AUTOARRANGE|wx.LC_HRULES|wx.LC_VRULES, + name="__fake__page__") + + # assign the image list to it + listCtrl.AssignImageList(il, wx.IMAGE_LIST_NORMAL) + listCtrl.__previousStatus = [activePage, pageStatus] + + # create some items for the list + for indx, text in enumerate(pageText): + listCtrl.InsertImageStringItem(10000, text, indx) + + self.AddPage(listCtrl, "AuiNotebook Preview", True, bitmap=auinotebook_preview.GetBitmap(), disabled_bitmap=wx.NullBitmap) + return True + + + def SetRenamable(self, page_idx, renamable): + """ + Sets whether a tab can be renamed via a left double-click or not. + + :param `page_idx`: the page index; + :param `renamable`: ``True`` if the page can be renamed. + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + # update our own tab catalog + page_info = self._tabs.GetPage(page_idx) + page_info.renamable = renamable + + # update what's on screen + ctrl, ctrl_idx = self.FindTab(page_info.window) + if not ctrl: + return False + + info = ctrl.GetPage(ctrl_idx) + info.renamable = page_info.renamable + + return True + + + def IsRenamable(self, page_idx): + """ + Returns whether a tab can be renamed or not. + + :param `page_idx`: the page index. + + :returns: ``True`` is a page can be renamed, ``False`` otherwise. + """ + + if page_idx >= self._tabs.GetPageCount(): + return False + + page_info = self._tabs.GetPage(page_idx) + return page_info.renamable + + + def OnRenameCancelled(self, page_index): + """ + Called by L{TabTextCtrl}, to cancel the changes and to send the + `EVT_AUINOTEBOOK_END_LABEL_EDIT` event. + + :param `page_index`: the page index in the notebook. + """ + + # let owner know that the edit was cancelled + evt = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_END_LABEL_EDIT, self.GetId()) + + evt.SetSelection(page_index) + evt.SetEventObject(self) + evt.SetLabel("") + evt.SetEditCanceled(True) + self.GetEventHandler().ProcessEvent(evt) + + + def OnRenameAccept(self, page_index, value): + """ + Called by L{TabTextCtrl}, to accept the changes and to send the + `EVT_AUINOTEBOOK_END_LABEL_EDIT` event. + + :param `page_index`: the page index in the notebook; + :param `value`: the new label for the tab. + """ + + evt = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_END_LABEL_EDIT, self.GetId()) + evt.SetSelection(page_index) + evt.SetEventObject(self) + evt.SetLabel(value) + evt.SetEditCanceled(False) + + return not self.GetEventHandler().ProcessEvent(evt) or evt.IsAllowed() + + + def ResetTextControl(self): + """ Called by L{TabTextCtrl} when it marks itself for deletion. """ + + if not self._textCtrl: + return + + self._textCtrl.Destroy() + self._textCtrl = None + + # tab height might have changed + self.UpdateTabCtrlHeight(force=True) + + + def EditTab(self, page_index): + """ + Starts the editing of an item label, sending a `EVT_AUINOTEBOOK_BEGIN_LABEL_EDIT` event. + + :param `page_index`: the page index we want to edit. + """ + + if page_index >= self._tabs.GetPageCount(): + return False + + if not self.IsRenamable(page_index): + return False + + page_info = self._tabs.GetPage(page_index) + ctrl, ctrl_idx = self.FindTab(page_info.window) + if not ctrl: + return False + + evt = AuiNotebookEvent(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_LABEL_EDIT, self.GetId()) + evt.SetSelection(page_index) + evt.SetEventObject(self) + if self.GetEventHandler().ProcessEvent(evt) and not evt.IsAllowed(): + # vetoed by user + return False + + if self._textCtrl is not None and page_info != self._textCtrl.item(): + self._textCtrl.StopEditing() + + self._textCtrl = TabTextCtrl(ctrl, page_info, page_index) + self._textCtrl.SetFocus() + + return True diff --git a/agw/aui/auibook.pyc b/agw/aui/auibook.pyc new file mode 100644 index 0000000..d84f93f Binary files /dev/null and b/agw/aui/auibook.pyc differ diff --git a/agw/aui/dockart.py b/agw/aui/dockart.py new file mode 100644 index 0000000..17da477 --- /dev/null +++ b/agw/aui/dockart.py @@ -0,0 +1,1162 @@ +""" +Dock art provider code - a dock provider provides all drawing functionality to +the AUI dock manager. This allows the dock manager to have a plugable look-and-feel. + +By default, a L{AuiManager} uses an instance of this class called L{AuiDefaultDockArt} +which provides bitmap art and a colour scheme that is adapted to the major platforms' +look. You can either derive from that class to alter its behaviour or write a +completely new dock art class. Call L{AuiManager.SetArtProvider} to make use this +new dock art. +""" + +__author__ = "Andrea Gavana " +__date__ = "31 March 2009" + + +import wx +import types + +from aui_utilities import BitmapFromBits, StepColour, ChopText, GetBaseColour +from aui_utilities import DrawGradientRectangle, DrawMACCloseButton +from aui_utilities import DarkenBitmap, LightContrastColour +from aui_constants import * + +optionActive = 2**14 + +_ctypes = False + +# Try to import winxptheme for ModernDockArt +if wx.Platform == "__WXMSW__": + try: + import ctypes + import winxptheme + _ctypes = True + except ImportError: + pass + +# -- AuiDefaultDockArt class implementation -- + +class AuiDefaultDockArt(object): + """ + Dock art provider code - a dock provider provides all drawing functionality + to the AUI dock manager. This allows the dock manager to have a plugable + look-and-feel. + + By default, a L{AuiManager} uses an instance of this class called L{AuiDefaultDockArt} + which provides bitmap art and a colour scheme that is adapted to the major + platforms' look. You can either derive from that class to alter its behaviour or + write a completely new dock art class. + + Call L{AuiManager.SetArtProvider} to make use this new dock art. + + + **Metric Ordinals** + + These are the possible pane dock art settings for L{AuiManager}: + + ================================================ ====================================== + Metric Ordinal Constant Description + ================================================ ====================================== + ``AUI_DOCKART_SASH_SIZE`` Customizes the sash size + ``AUI_DOCKART_CAPTION_SIZE`` Customizes the caption size + ``AUI_DOCKART_GRIPPER_SIZE`` Customizes the gripper size + ``AUI_DOCKART_PANE_BORDER_SIZE`` Customizes the pane border size + ``AUI_DOCKART_PANE_BUTTON_SIZE`` Customizes the pane button size + ``AUI_DOCKART_BACKGROUND_COLOUR`` Customizes the background colour + ``AUI_DOCKART_BACKGROUND_GRADIENT_COLOUR`` Customizes the background gradient colour + ``AUI_DOCKART_SASH_COLOUR`` Customizes the sash colour + ``AUI_DOCKART_ACTIVE_CAPTION_COLOUR`` Customizes the active caption colour + ``AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR`` Customizes the active caption gradient colour + ``AUI_DOCKART_INACTIVE_CAPTION_COLOUR`` Customizes the inactive caption colour + ``AUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR`` Customizes the inactive gradient caption colour + ``AUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR`` Customizes the active caption text colour + ``AUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR`` Customizes the inactive caption text colour + ``AUI_DOCKART_BORDER_COLOUR`` Customizes the border colour + ``AUI_DOCKART_GRIPPER_COLOUR`` Customizes the gripper colour + ``AUI_DOCKART_CAPTION_FONT`` Customizes the caption font + ``AUI_DOCKART_GRADIENT_TYPE`` Customizes the gradient type (no gradient, vertical or horizontal) + ``AUI_DOCKART_DRAW_SASH_GRIP`` Draw a sash grip on the sash + ================================================ ====================================== + + + **Gradient Types** + + These are the possible gradient dock art settings for L{AuiManager}: + + ============================================ ====================================== + Gradient Constant Description + ============================================ ====================================== + ``AUI_GRADIENT_NONE`` No gradient on the captions + ``AUI_GRADIENT_VERTICAL`` Vertical gradient on the captions + ``AUI_GRADIENT_HORIZONTAL`` Horizontal gradient on the captions + ============================================ ====================================== + + + **Button States** + + These are the possible pane button / L{AuiNotebook} button / L{AuiToolBar} button states: + + ============================================ ====================================== + Button State Constant Description + ============================================ ====================================== + ``AUI_BUTTON_STATE_NORMAL`` Normal button state + ``AUI_BUTTON_STATE_HOVER`` Hovered button state + ``AUI_BUTTON_STATE_PRESSED`` Pressed button state + ``AUI_BUTTON_STATE_DISABLED`` Disabled button state + ``AUI_BUTTON_STATE_HIDDEN`` Hidden button state + ``AUI_BUTTON_STATE_CHECKED`` Checked button state + ============================================ ====================================== + + + **Button Identifiers** + + These are the possible pane button / L{AuiNotebook} button / L{AuiToolBar} button identifiers: + + ============================================ ====================================== + Button Identifier Description + ============================================ ====================================== + ``AUI_BUTTON_CLOSE`` Shows a close button on the pane + ``AUI_BUTTON_MAXIMIZE_RESTORE`` Shows a maximize/restore button on the pane + ``AUI_BUTTON_MINIMIZE`` Shows a minimize button on the pane + ``AUI_BUTTON_PIN`` Shows a pin button on the pane + ``AUI_BUTTON_OPTIONS`` Shows an option button on the pane (not implemented) + ``AUI_BUTTON_WINDOWLIST`` Shows a window list button on the pane (for L{AuiNotebook}) + ``AUI_BUTTON_LEFT`` Shows a left button on the pane (for L{AuiNotebook}) + ``AUI_BUTTON_RIGHT`` Shows a right button on the pane (for L{AuiNotebook}) + ``AUI_BUTTON_UP`` Shows an up button on the pane (not implemented) + ``AUI_BUTTON_DOWN`` Shows a down button on the pane (not implemented) + ``AUI_BUTTON_CUSTOM1`` Shows a custom button on the pane (not implemented) + ``AUI_BUTTON_CUSTOM2`` Shows a custom button on the pane (not implemented) + ``AUI_BUTTON_CUSTOM3`` Shows a custom button on the pane (not implemented) + ============================================ ====================================== + + """ + + def __init__(self): + """ Default class constructor. """ + + self.Init() + + isMac = wx.Platform == "__WXMAC__" + + if isMac: + self._caption_font = wx.SMALL_FONT + else: + self._caption_font = wx.Font(8, wx.DEFAULT, wx.NORMAL, wx.NORMAL, False) + + self.SetDefaultPaneBitmaps(isMac) + self._restore_bitmap = wx.BitmapFromXPMData(restore_xpm) + + # default metric values + self._sash_size = 4 + + if isMac: + # This really should be implemented in wx.SystemSettings + # There is no way to do this that I am aware outside of using + # the cocoa python bindings. 8 pixels looks correct on my system + # so hard coding it for now. + + # How do I translate this?!? Not sure of the below implementation... + # SInt32 height; + # GetThemeMetric( kThemeMetricSmallPaneSplitterHeight , &height ); + # self._sash_size = height; + + self._sash_size = 8 # Carbon.Appearance.kThemeMetricPaneSplitterHeight + + elif wx.Platform == "__WXGTK__": + self._sash_size = wx.RendererNative.Get().GetSplitterParams(wx.GetTopLevelWindows()[0]).widthSash + + else: + self._sash_size = 4 + + self._caption_size = 19 + self._border_size = 1 + self._button_size = 14 + self._gripper_size = 9 + self._gradient_type = AUI_GRADIENT_VERTICAL + self._draw_sash = False + + + def Init(self): + """ Initializes the dock art. """ + + base_colour = GetBaseColour() + darker1_colour = StepColour(base_colour, 85) + darker2_colour = StepColour(base_colour, 75) + darker3_colour = StepColour(base_colour, 60) + darker4_colour = StepColour(base_colour, 40) + + self._background_colour = base_colour + self._background_gradient_colour = StepColour(base_colour, 180) + + isMac = wx.Platform == "__WXMAC__" + + if isMac: + self._active_caption_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_HIGHLIGHT) + else: + self._active_caption_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_ACTIVECAPTION) + + self._active_caption_gradient_colour = LightContrastColour(wx.SystemSettings.GetColour(wx.SYS_COLOUR_HIGHLIGHT)) + self._active_caption_text_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_HIGHLIGHTTEXT) + self._inactive_caption_colour = darker1_colour + self._inactive_caption_gradient_colour = StepColour(base_colour, 97) + self._inactive_caption_text_colour = wx.BLACK + + self._sash_brush = wx.Brush(base_colour) + self._background_brush = wx.Brush(base_colour) + self._border_pen = wx.Pen(darker2_colour) + self._gripper_brush = wx.Brush(base_colour) + self._gripper_pen1 = wx.Pen(darker4_colour) + self._gripper_pen2 = wx.Pen(darker3_colour) + self._gripper_pen3 = wx.WHITE_PEN + + + def GetMetric(self, id): + """ + Gets the value of a certain setting. + + :param `id`: can be one of the size values in `Metric Ordinals`. + """ + + + if id == AUI_DOCKART_SASH_SIZE: + return self._sash_size + elif id == AUI_DOCKART_CAPTION_SIZE: + return self._caption_size + elif id == AUI_DOCKART_GRIPPER_SIZE: + return self._gripper_size + elif id == AUI_DOCKART_PANE_BORDER_SIZE: + return self._border_size + elif id == AUI_DOCKART_PANE_BUTTON_SIZE: + return self._button_size + elif id == AUI_DOCKART_GRADIENT_TYPE: + return self._gradient_type + elif id == AUI_DOCKART_DRAW_SASH_GRIP: + return self._draw_sash + else: + raise Exception("Invalid Metric Ordinal.") + + + def SetMetric(self, id, new_val): + """ + Sets the value of a certain setting using `new_val` + + :param `id`: can be one of the size values in `Metric Ordinals`; + :param `new_val`: the new value of the setting. + """ + + if id == AUI_DOCKART_SASH_SIZE: + self._sash_size = new_val + elif id == AUI_DOCKART_CAPTION_SIZE: + self._caption_size = new_val + elif id == AUI_DOCKART_GRIPPER_SIZE: + self._gripper_size = new_val + elif id == AUI_DOCKART_PANE_BORDER_SIZE: + self._border_size = new_val + elif id == AUI_DOCKART_PANE_BUTTON_SIZE: + self._button_size = new_val + elif id == AUI_DOCKART_GRADIENT_TYPE: + self._gradient_type = new_val + elif id == AUI_DOCKART_DRAW_SASH_GRIP: + self._draw_sash = new_val + else: + raise Exception("Invalid Metric Ordinal.") + + + def GetColor(self, id): + """ + Gets the colour of a certain setting. + + :param `id`: can be one of the colour values in `Metric Ordinals`. + """ + + if id == AUI_DOCKART_BACKGROUND_COLOUR: + return self._background_brush.GetColour() + elif id == AUI_DOCKART_BACKGROUND_GRADIENT_COLOUR: + return self._background_gradient_colour + elif id == AUI_DOCKART_SASH_COLOUR: + return self._sash_brush.GetColour() + elif id == AUI_DOCKART_INACTIVE_CAPTION_COLOUR: + return self._inactive_caption_colour + elif id == AUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR: + return self._inactive_caption_gradient_colour + elif id == AUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR: + return self._inactive_caption_text_colour + elif id == AUI_DOCKART_ACTIVE_CAPTION_COLOUR: + return self._active_caption_colour + elif id == AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR: + return self._active_caption_gradient_colour + elif id == AUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR: + return self._active_caption_text_colour + elif id == AUI_DOCKART_BORDER_COLOUR: + return self._border_pen.GetColour() + elif id == AUI_DOCKART_GRIPPER_COLOUR: + return self._gripper_brush.GetColour() + else: + raise Exception("Invalid Colour Ordinal.") + + + def SetColor(self, id, colour): + """ + Sets the colour of a certain setting. + + :param `id`: can be one of the colour values in `Metric Ordinals`; + :param `colour`: the new value of the setting. + """ + + if isinstance(colour, basestring): + colour = wx.NamedColour(colour) + elif isinstance(colour, types.TupleType): + colour = wx.Colour(*colour) + elif isinstance(colour, types.IntType): + colour = wx.ColourRGB(colour) + + if id == AUI_DOCKART_BACKGROUND_COLOUR: + self._background_brush.SetColour(colour) + elif id == AUI_DOCKART_BACKGROUND_GRADIENT_COLOUR: + self._background_gradient_colour = colour + elif id == AUI_DOCKART_SASH_COLOUR: + self._sash_brush.SetColour(colour) + elif id == AUI_DOCKART_INACTIVE_CAPTION_COLOUR: + self._inactive_caption_colour = colour + if not self._custom_pane_bitmaps and wx.Platform == "__WXMAC__": + # No custom bitmaps for the pane close button + # Change the MAC close bitmap colour + self._inactive_close_bitmap = DrawMACCloseButton(wx.WHITE, colour) + + elif id == AUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR: + self._inactive_caption_gradient_colour = colour + elif id == AUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR: + self._inactive_caption_text_colour = colour + elif id == AUI_DOCKART_ACTIVE_CAPTION_COLOUR: + self._active_caption_colour = colour + if not self._custom_pane_bitmaps and wx.Platform == "__WXMAC__": + # No custom bitmaps for the pane close button + # Change the MAC close bitmap colour + self._active_close_bitmap = DrawMACCloseButton(wx.WHITE, colour) + + elif id == AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR: + self._active_caption_gradient_colour = colour + elif id == AUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR: + self._active_caption_text_colour = colour + elif id == AUI_DOCKART_BORDER_COLOUR: + self._border_pen.SetColour(colour) + elif id == AUI_DOCKART_GRIPPER_COLOUR: + self._gripper_brush.SetColour(colour) + self._gripper_pen1.SetColour(StepColour(colour, 40)) + self._gripper_pen2.SetColour(StepColour(colour, 60)) + else: + raise Exception("Invalid Colour Ordinal.") + + + GetColour = GetColor + SetColour = SetColor + + def SetFont(self, id, font): + """ + Sets a font setting. + + :param `id`: must be ``AUI_DOCKART_CAPTION_FONT``; + :param `font`: an instance of `wx.Font`. + """ + + if id == AUI_DOCKART_CAPTION_FONT: + self._caption_font = font + + + def GetFont(self, id): + """ + Gets a font setting. + + :param `id`: must be ``AUI_DOCKART_CAPTION_FONT``, otherwise `wx.NullFont` is returned. + """ + + if id == AUI_DOCKART_CAPTION_FONT: + return self._caption_font + + return wx.NullFont + + + def DrawSash(self, dc, window, orient, rect): + """ + Draws a sash between two windows. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `orient`: the sash orientation; + :param `rect`: the sash rectangle. + """ + + # AG: How do we make this work?!? + # RendererNative does not use the sash_brush chosen by the user + # and the rect.GetSize() is ignored as the sash is always drawn + # 3 pixel wide + # wx.RendererNative.Get().DrawSplitterSash(window, dc, rect.GetSize(), pos, orient) + + dc.SetPen(wx.TRANSPARENT_PEN) + dc.SetBrush(self._sash_brush) + dc.DrawRectangle(rect.x, rect.y, rect.width, rect.height) + + draw_sash = self.GetMetric(AUI_DOCKART_DRAW_SASH_GRIP) + if draw_sash: + self.DrawSashGripper(dc, orient, rect) + + + def DrawBackground(self, dc, window, orient, rect): + """ + Draws a background. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `orient`: the gradient (if any) orientation; + :param `rect`: the background rectangle. + """ + + dc.SetPen(wx.TRANSPARENT_PEN) + if wx.Platform == "__WXMAC__": + # we have to clear first, otherwise we are drawing a light striped pattern + # over an already darker striped background + dc.SetBrush(wx.WHITE_BRUSH) + dc.DrawRectangle(rect.x, rect.y, rect.width, rect.height) + + DrawGradientRectangle(dc, rect, self._background_brush.GetColour(), + self._background_gradient_colour, + AUI_GRADIENT_HORIZONTAL, rect.x, 700) + + + def DrawBorder(self, dc, window, rect, pane): + """ + Draws the pane border. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `rect`: the border rectangle; + :param `pane`: the pane for which the border is drawn. + """ + + drect = wx.Rect(*rect) + + dc.SetPen(self._border_pen) + dc.SetBrush(wx.TRANSPARENT_BRUSH) + + border_width = self.GetMetric(AUI_DOCKART_PANE_BORDER_SIZE) + + if pane.IsToolbar(): + + for ii in xrange(0, border_width): + + dc.SetPen(wx.WHITE_PEN) + dc.DrawLine(drect.x, drect.y, drect.x+drect.width, drect.y) + dc.DrawLine(drect.x, drect.y, drect.x, drect.y+drect.height) + dc.SetPen(self._border_pen) + dc.DrawLine(drect.x, drect.y+drect.height-1, + drect.x+drect.width, drect.y+drect.height-1) + dc.DrawLine(drect.x+drect.width-1, drect.y, + drect.x+drect.width-1, drect.y+drect.height) + drect.Deflate(1, 1) + + else: + + for ii in xrange(0, border_width): + + dc.DrawRectangle(drect.x, drect.y, drect.width, drect.height) + drect.Deflate(1, 1) + + + def DrawCaptionBackground(self, dc, rect, pane): + """ + Draws the text caption background in the pane. + + :param `dc`: a `wx.DC` device context; + :param `rect`: the text caption rectangle; + :param `pane`: the pane for which the text background is drawn. + """ + + active = pane.state & optionActive + + if self._gradient_type == AUI_GRADIENT_NONE: + if active: + dc.SetBrush(wx.Brush(self._active_caption_colour)) + else: + dc.SetBrush(wx.Brush(self._inactive_caption_colour)) + + dc.DrawRectangle(rect.x, rect.y, rect.width, rect.height) + + else: + + switch_gradient = pane.HasCaptionLeft() + gradient_type = self._gradient_type + if switch_gradient: + gradient_type = (self._gradient_type == AUI_GRADIENT_HORIZONTAL and [AUI_GRADIENT_VERTICAL] or \ + [AUI_GRADIENT_HORIZONTAL])[0] + + if active: + if wx.Platform == "__WXMAC__": + DrawGradientRectangle(dc, rect, self._active_caption_colour, + self._active_caption_gradient_colour, + gradient_type) + else: + DrawGradientRectangle(dc, rect, self._active_caption_gradient_colour, + self._active_caption_colour, + gradient_type) + else: + if wx.Platform == "__WXMAC__": + DrawGradientRectangle(dc, rect, self._inactive_caption_gradient_colour, + self._inactive_caption_colour, + gradient_type) + else: + DrawGradientRectangle(dc, rect, self._inactive_caption_colour, + self._inactive_caption_gradient_colour, + gradient_type) + + + def DrawIcon(self, dc, rect, pane): + """ + Draws the icon in the pane caption area. + + :param `dc`: a `wx.DC` device context; + :param `rect`: the pane caption rectangle; + :param `pane`: the pane for which the icon is drawn. + """ + + # Draw the icon centered vertically + if pane.icon.Ok(): + if pane.HasCaptionLeft(): + bmp = wx.ImageFromBitmap(pane.icon).Rotate90(clockwise=False) + dc.DrawBitmap(bmp.ConvertToBitmap(), rect.x+(rect.width-pane.icon.GetWidth())/2, rect.y+rect.height-2-pane.icon.GetHeight(), True) + else: + dc.DrawBitmap(pane.icon, rect.x+2, rect.y+(rect.height-pane.icon.GetHeight())/2, True) + + + def DrawCaption(self, dc, window, text, rect, pane): + """ + Draws the text in the pane caption. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `text`: the text to be displayed; + :param `rect`: the pane caption rectangle; + :param `pane`: the pane for which the text is drawn. + """ + + dc.SetPen(wx.TRANSPARENT_PEN) + dc.SetFont(self._caption_font) + + self.DrawCaptionBackground(dc, rect, pane) + + if pane.state & optionActive: + dc.SetTextForeground(self._active_caption_text_colour) + else: + dc.SetTextForeground(self._inactive_caption_text_colour) + + w, h = dc.GetTextExtent("ABCDEFHXfgkj") + + clip_rect = wx.Rect(*rect) + btns = pane.CountButtons() + + captionLeft = pane.HasCaptionLeft() + variable = (captionLeft and [rect.height] or [rect.width])[0] + + variable -= 3 # text offset + variable -= 2 # button padding + + caption_offset = 0 + if pane.icon: + if captionLeft: + caption_offset += pane.icon.GetHeight() + 3 + else: + caption_offset += pane.icon.GetWidth() + 3 + + self.DrawIcon(dc, rect, pane) + + variable -= caption_offset + variable -= btns*(self._button_size + self._border_size) + draw_text = ChopText(dc, text, variable) + + if captionLeft: + dc.DrawRotatedText(draw_text, rect.x+(rect.width/2)-(h/2)-1, rect.y+rect.height-3-caption_offset, 90) + else: + dc.DrawText(draw_text, rect.x+3+caption_offset, rect.y+(rect.height/2)-(h/2)-1) + + + def RequestUserAttention(self, dc, window, text, rect, pane): + """ + Requests the user attention by intermittently highlighting the pane caption. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `text`: the text to be displayed; + :param `rect`: the pane caption rectangle; + :param `pane`: the pane for which the text is drawn. + """ + + state = pane.state + pane.state &= ~optionActive + + for indx in xrange(6): + active = (indx%2 == 0 and [True] or [False])[0] + if active: + pane.state |= optionActive + else: + pane.state &= ~optionActive + + self.DrawCaptionBackground(dc, rect, pane) + self.DrawCaption(dc, window, text, rect, pane) + wx.SafeYield() + wx.MilliSleep(350) + + pane.state = state + + + def DrawGripper(self, dc, window, rect, pane): + """ + Draws a gripper on the pane. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `rect`: the pane caption rectangle; + :param `pane`: the pane for which the gripper is drawn. + """ + + dc.SetPen(wx.TRANSPARENT_PEN) + dc.SetBrush(self._gripper_brush) + + dc.DrawRectangle(rect.x, rect.y, rect.width, rect.height) + + if not pane.HasGripperTop(): + y = 4 + while 1: + dc.SetPen(self._gripper_pen1) + dc.DrawPoint(rect.x+3, rect.y+y) + dc.SetPen(self._gripper_pen2) + dc.DrawPoint(rect.x+3, rect.y+y+1) + dc.DrawPoint(rect.x+4, rect.y+y) + dc.SetPen(self._gripper_pen3) + dc.DrawPoint(rect.x+5, rect.y+y+1) + dc.DrawPoint(rect.x+5, rect.y+y+2) + dc.DrawPoint(rect.x+4, rect.y+y+2) + y = y + 4 + if y > rect.GetHeight() - 4: + break + else: + x = 4 + while 1: + dc.SetPen(self._gripper_pen1) + dc.DrawPoint(rect.x+x, rect.y+3) + dc.SetPen(self._gripper_pen2) + dc.DrawPoint(rect.x+x+1, rect.y+3) + dc.DrawPoint(rect.x+x, rect.y+4) + dc.SetPen(self._gripper_pen3) + dc.DrawPoint(rect.x+x+1, rect.y+5) + dc.DrawPoint(rect.x+x+2, rect.y+5) + dc.DrawPoint(rect.x+x+2, rect.y+4) + x = x + 4 + if x > rect.GetWidth() - 4: + break + + + def DrawPaneButton(self, dc, window, button, button_state, _rect, pane): + """ + Draws a pane button in the pane caption area. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `button`: the button to be drawn; + :param `button_state`: the pane button state; + :param `_rect`: the pane caption rectangle; + :param `pane`: the pane for which the button is drawn. + """ + + if not pane: + return + + if button == AUI_BUTTON_CLOSE: + if pane.state & optionActive: + bmp = self._active_close_bitmap + else: + bmp = self._inactive_close_bitmap + + elif button == AUI_BUTTON_PIN: + if pane.state & optionActive: + bmp = self._active_pin_bitmap + else: + bmp = self._inactive_pin_bitmap + + elif button == AUI_BUTTON_MAXIMIZE_RESTORE: + if pane.IsMaximized(): + if pane.state & optionActive: + bmp = self._active_restore_bitmap + else: + bmp = self._inactive_restore_bitmap + else: + if pane.state & optionActive: + bmp = self._active_maximize_bitmap + else: + bmp = self._inactive_maximize_bitmap + + elif button == AUI_BUTTON_MINIMIZE: + if pane.state & optionActive: + bmp = self._active_minimize_bitmap + else: + bmp = self._inactive_minimize_bitmap + + isVertical = pane.HasCaptionLeft() + + rect = wx.Rect(*_rect) + + if isVertical: + old_x = rect.x + rect.x = rect.x + (rect.width/2) - (bmp.GetWidth()/2) + rect.width = old_x + rect.width - rect.x - 1 + else: + old_y = rect.y + rect.y = rect.y + (rect.height/2) - (bmp.GetHeight()/2) + rect.height = old_y + rect.height - rect.y - 1 + + if button_state == AUI_BUTTON_STATE_PRESSED: + rect.x += 1 + rect.y += 1 + + if button_state in [AUI_BUTTON_STATE_HOVER, AUI_BUTTON_STATE_PRESSED]: + + if pane.state & optionActive: + + dc.SetBrush(wx.Brush(StepColour(self._active_caption_colour, 120))) + dc.SetPen(wx.Pen(StepColour(self._active_caption_colour, 70))) + + else: + + dc.SetBrush(wx.Brush(StepColour(self._inactive_caption_colour, 120))) + dc.SetPen(wx.Pen(StepColour(self._inactive_caption_colour, 70))) + + if wx.Platform != "__WXMAC__": + # draw the background behind the button + dc.DrawRectangle(rect.x, rect.y, 15, 15) + else: + # Darker the bitmap a bit + bmp = DarkenBitmap(bmp, self._active_caption_colour, StepColour(self._active_caption_colour, 110)) + + if isVertical: + bmp = wx.ImageFromBitmap(bmp).Rotate90(clockwise=False).ConvertToBitmap() + + # draw the button itself + dc.DrawBitmap(bmp, rect.x, rect.y, True) + + + def DrawSashGripper(self, dc, orient, rect): + """ + Draws a sash gripper on a sash between two windows. + + :param `dc`: a `wx.DC` device context; + :param `orient`: the sash orientation; + :param `rect`: the sash rectangle. + """ + + dc.SetBrush(self._gripper_brush) + + if orient == wx.HORIZONTAL: # horizontal sash + + x = rect.x + int((1.0/4.0)*rect.width) + xend = rect.x + int((3.0/4.0)*rect.width) + y = rect.y + (rect.height/2) - 1 + + while 1: + dc.SetPen(self._gripper_pen3) + dc.DrawRectangle(x, y, 2, 2) + dc.SetPen(self._gripper_pen2) + dc.DrawPoint(x+1, y+1) + x = x + 5 + + if x >= xend: + break + + else: + + y = rect.y + int((1.0/4.0)*rect.height) + yend = rect.y + int((3.0/4.0)*rect.height) + x = rect.x + (rect.width/2) - 1 + + while 1: + dc.SetPen(self._gripper_pen3) + dc.DrawRectangle(x, y, 2, 2) + dc.SetPen(self._gripper_pen2) + dc.DrawPoint(x+1, y+1) + y = y + 5 + + if y >= yend: + break + + + def SetDefaultPaneBitmaps(self, isMac): + """ + Assigns the default pane bitmaps. + + :param `isMac`: whether we are on wxMAC or not. + """ + + if isMac: + self._inactive_close_bitmap = DrawMACCloseButton(wx.WHITE, self._inactive_caption_colour) + self._active_close_bitmap = DrawMACCloseButton(wx.WHITE, self._active_caption_colour) + else: + self._inactive_close_bitmap = BitmapFromBits(close_bits, 16, 16, self._inactive_caption_text_colour) + self._active_close_bitmap = BitmapFromBits(close_bits, 16, 16, self._active_caption_text_colour) + + if isMac: + self._inactive_maximize_bitmap = BitmapFromBits(max_bits, 16, 16, wx.WHITE) + self._active_maximize_bitmap = BitmapFromBits(max_bits, 16, 16, wx.WHITE) + else: + self._inactive_maximize_bitmap = BitmapFromBits(max_bits, 16, 16, self._inactive_caption_text_colour) + self._active_maximize_bitmap = BitmapFromBits(max_bits, 16, 16, self._active_caption_text_colour) + + if isMac: + self._inactive_restore_bitmap = BitmapFromBits(restore_bits, 16, 16, wx.WHITE) + self._active_restore_bitmap = BitmapFromBits(restore_bits, 16, 16, wx.WHITE) + else: + self._inactive_restore_bitmap = BitmapFromBits(restore_bits, 16, 16, self._inactive_caption_text_colour) + self._active_restore_bitmap = BitmapFromBits(restore_bits, 16, 16, self._active_caption_text_colour) + + if isMac: + self._inactive_minimize_bitmap = BitmapFromBits(minimize_bits, 16, 16, wx.WHITE) + self._active_minimize_bitmap = BitmapFromBits(minimize_bits, 16, 16, wx.WHITE) + else: + self._inactive_minimize_bitmap = BitmapFromBits(minimize_bits, 16, 16, self._inactive_caption_text_colour) + self._active_minimize_bitmap = BitmapFromBits(minimize_bits, 16, 16, self._active_caption_text_colour) + + self._inactive_pin_bitmap = BitmapFromBits(pin_bits, 16, 16, self._inactive_caption_text_colour) + self._active_pin_bitmap = BitmapFromBits(pin_bits, 16, 16, self._active_caption_text_colour) + + self._custom_pane_bitmaps = False + + + def SetCustomPaneBitmap(self, bmp, button, active, maximize=False): + """ + Sets a custom button bitmap for the pane button. + + :param `bmp`: the actual bitmap to set; + :param `button`: the button identifier; + :param `active`: whether it is the bitmap for the active button or not; + :param `maximize`: used to distinguish between the maximize and restore bitmaps. + """ + + if bmp.GetWidth() > 16 or bmp.GetHeight() > 16: + raise Exception("The input bitmap is too big") + + if button == AUI_BUTTON_CLOSE: + if active: + self._active_close_bitmap = bmp + else: + self._inactive_close_bitmap = bmp + + if wx.Platform == "__WXMAC__": + self._custom_pane_bitmaps = True + + elif button == AUI_BUTTON_PIN: + if active: + self._active_pin_bitmap = bmp + else: + self._inactive_pin_bitmap = bmp + + elif button == AUI_BUTTON_MAXIMIZE_RESTORE: + if maximize: + if active: + self._active_maximize_bitmap = bmp + else: + self._inactive_maximize_bitmap = bmp + else: + if active: + self._active_restore_bitmap = bmp + else: + self._inactive_restore_bitmap = bmp + + elif button == AUI_BUTTON_MINIMIZE: + if active: + self._active_minimize_bitmap = bmp + else: + self._inactive_minimize_bitmap = bmp + + +if _ctypes: + class RECT(ctypes.Structure): + """ Used to handle L{ModernDockArt} on Windows XP/Vista/7. """ + _fields_ = [('left', ctypes.c_ulong),('top', ctypes.c_ulong),('right', ctypes.c_ulong),('bottom', ctypes.c_ulong)] + + def dump(self): + """ Dumps `self` as a `wx.Rect`. """ + return map(int, (self.left, self.top, self.right, self.bottom)) + + + class SIZE(ctypes.Structure): + """ Used to handle L{ModernDockArt} on Windows XP/Vista/7. """ + _fields_ = [('x', ctypes.c_long),('y', ctypes.c_long)] + + +class ModernDockArt(AuiDefaultDockArt): + """ + ModernDockArt is a custom `AuiDockArt` class, that implements a look similar to + Firefox and other recents applications. + + Is uses the `winxptheme` module and XP themes whenever possible, so it should + look good even if the user has a custom theme. + + :note: This dock art is Windows only and will only work if you have installed + Mark Hammond's `pywin32` module (http://sourceforge.net/projects/pywin32/). + """ + + def __init__(self, win): + """ + Default class constructor. + + :param `win`: the window managed by L{AuiManager}. + """ + + AuiDefaultDockArt.__init__(self) + + self.win = win + + # Get the size of a small close button (themed) + hwnd = self.win.GetHandle() + + self.hTheme1 = winxptheme.OpenThemeData(hwnd, "Window") + + self.usingTheme = True + + if not self.hTheme1: + self.usingTheme = False + + self._button_size = 13 + + self._button_border_size = 3 + self._caption_text_indent = 6 + self._caption_size = 22 + + # We only highlight the active pane with the caption text being in bold. + # So we do not want a special colour for active elements. + self._active_close_bitmap = self._inactive_close_bitmap + + self.Init() + + + def Init(self): + """ Initializes the dock art. """ + + AuiDefaultDockArt.Init(self) + + self._active_caption_colour = self._inactive_caption_colour + self._active_caption_text_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_CAPTIONTEXT) + self._inactive_caption_text_colour = self._active_caption_text_colour + + + def DrawCaption(self, dc, window, text, rect, pane): + """ + Draws the text in the pane caption. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `text`: the text to be displayed; + :param `rect`: the pane caption rectangle; + :param `pane`: the pane for which the text is drawn. + """ + + dc.SetPen(wx.TRANSPARENT_PEN) + self.DrawCaptionBackground(dc, rect, pane) + + active = ((pane.state & optionActive) and [True] or [False])[0] + + self._caption_font.SetWeight(wx.FONTWEIGHT_BOLD) + dc.SetFont(self._caption_font) + + if active: + dc.SetTextForeground(self._active_caption_text_colour) + else: + dc.SetTextForeground(self._inactive_caption_text_colour) + + w, h = dc.GetTextExtent("ABCDEFHXfgkj") + + clip_rect = wx.Rect(*rect) + btns = pane.CountButtons() + + captionLeft = pane.HasCaptionLeft() + variable = (captionLeft and [rect.height] or [rect.width])[0] + + variable -= 3 # text offset + variable -= 2 # button padding + + caption_offset = 0 + if pane.icon: + if captionLeft: + caption_offset += pane.icon.GetHeight() + 3 + else: + caption_offset += pane.icon.GetWidth() + 3 + + self.DrawIcon(dc, rect, pane) + + diff = -2 + if self.usingTheme: + diff = -1 + + variable -= caption_offset + variable -= btns*(self._button_size + self._button_border_size) + draw_text = ChopText(dc, text, variable) + + if captionLeft: + dc.DrawRotatedText(draw_text, rect.x+(rect.width/2)-(h/2)-diff, rect.y+rect.height-3-caption_offset, 90) + else: + dc.DrawText(draw_text, rect.x+3+caption_offset, rect.y+(rect.height/2)-(h/2)-diff) + + + def DrawCaptionBackground(self, dc, rect, pane): + """ + Draws the text caption background in the pane. + + :param `dc`: a `wx.DC` device context; + :param `rect`: the text caption rectangle; + :param `pane`: the pane for which we are drawing the caption background. + """ + + dc.SetBrush(self._background_brush) + dc.DrawRectangle(rect.x, rect.y, rect.width, rect.height) + + active = ((pane.state & optionActive) and [True] or [False])[0] + + if self.usingTheme: + + rectangle = wx.Rect() + + rc = RECT(rectangle.x, rectangle.y, rectangle.width, rectangle.height) + + # If rect x/y values are negative rc.right/bottom values will overflow and winxptheme.DrawThemeBackground + # will raise a TypeError. Ensure they are never negative. + rect.x = max(0, rect.x) + rect.y = max(0, rect.y) + + rc.top = rect.x + rc.left = rect.y + rc.right = rect.x + rect.width + rc.bottom = rect.y + rect.height + + if active: + winxptheme.DrawThemeBackground(self.hTheme1, dc.GetHDC(), 5, 1, (rc.top, rc.left, rc.right, rc.bottom), None) + else: + winxptheme.DrawThemeBackground(self.hTheme1, dc.GetHDC(), 5, 2, (rc.top, rc.left, rc.right, rc.bottom), None) + + else: + + AuiDefaultDockArt.DrawCaptionBackground(self, dc, rect, pane) + + + def RequestUserAttention(self, dc, window, text, rect, pane): + """ + Requests the user attention by intermittently highlighting the pane caption. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `text`: the text to be displayed; + :param `rect`: the pane caption rectangle; + :param `pane`: the pane for which the text is drawn. + """ + + state = pane.state + pane.state &= ~optionActive + + for indx in xrange(6): + active = (indx%2 == 0 and [True] or [False])[0] + if active: + pane.state |= optionActive + else: + pane.state &= ~optionActive + + self.DrawCaptionBackground(dc, rect, pane) + self.DrawCaption(dc, window, text, rect, pane) + wx.SafeYield() + wx.MilliSleep(350) + + pane.state = state + + + def DrawPaneButton(self, dc, window, button, button_state, rect, pane): + """ + Draws a pane button in the pane caption area. + + :param `dc`: a `wx.DC` device context; + :param `window`: an instance of `wx.Window`; + :param `button`: the button to be drawn; + :param `button_state`: the pane button state; + :param `rect`: the pane caption rectangle; + :param `pane`: the pane for which the button is drawn. + """ + + if self.usingTheme: + + hTheme = self.hTheme1 + + # Get the real button position (compensating for borders) + drect = wx.Rect(rect.x, rect.y, self._button_size, self._button_size) + + # Draw the themed close button + rc = RECT(0, 0, 0, 0) + if pane.HasCaptionLeft(): + rc.top = rect.x + self._button_border_size + rc.left = int(rect.y + 1.5*self._button_border_size) + rc.right = rect.x + self._button_size + self._button_border_size + rc.bottom = int(rect.y + self._button_size + 1.5*self._button_border_size) + else: + rc.top = rect.x - self._button_border_size + rc.left = int(rect.y + 1.5*self._button_border_size) + rc.right = rect.x + self._button_size- self._button_border_size + rc.bottom = int(rect.y + self._button_size + 1.5*self._button_border_size) + + if button == AUI_BUTTON_CLOSE: + btntype = 19 + + elif button == AUI_BUTTON_PIN: + btntype = 23 + + elif button == AUI_BUTTON_MAXIMIZE_RESTORE: + if not pane.IsMaximized(): + btntype = 17 + else: + btntype = 21 + else: + btntype = 15 + + state = 4 # CBS_DISABLED + + if pane.state & optionActive: + + if button_state == AUI_BUTTON_STATE_NORMAL: + state = 1 # CBS_NORMAL + + elif button_state == AUI_BUTTON_STATE_HOVER: + state = 2 # CBS_HOT + + elif button_state == AUI_BUTTON_STATE_PRESSED: + state = 3 # CBS_PUSHED + + else: + raise Exception("ERROR: Unknown State.") + + else: # inactive pane + + if button_state == AUI_BUTTON_STATE_NORMAL: + state = 5 # CBS_NORMAL + + elif button_state == AUI_BUTTON_STATE_HOVER: + state = 6 # CBS_HOT + + elif button_state == AUI_BUTTON_STATE_PRESSED: + state = 7 # CBS_PUSHED + + else: + raise Exception("ERROR: Unknown State.") + + try: + winxptheme.DrawThemeBackground(hTheme, dc.GetHDC(), btntype, state, (rc.top, rc.left, rc.right, rc.bottom), None) + except TypeError: + return + + else: + + # Fallback to default closebutton if themes are not enabled + rect2 = wx.Rect(rect.x-4, rect.y+2, rect.width, rect.height) + AuiDefaultDockArt.DrawPaneButton(self, dc, window, button, button_state, rect2, pane) + diff --git a/agw/aui/dockart.pyc b/agw/aui/dockart.pyc new file mode 100644 index 0000000..f4c8bc9 Binary files /dev/null and b/agw/aui/dockart.pyc differ diff --git a/agw/aui/framemanager.py b/agw/aui/framemanager.py new file mode 100644 index 0000000..9b277bf --- /dev/null +++ b/agw/aui/framemanager.py @@ -0,0 +1,10385 @@ +# --------------------------------------------------------------------------- # +# AUI Library wxPython IMPLEMENTATION +# +# Original C++ Code From Kirix (wxAUI). You Can Find It At: +# +# License: wxWidgets license +# +# http:#www.kirix.com/en/community/opensource/wxaui/about_wxaui.html +# +# Current wxAUI Version Tracked: wxWidgets 2.9.0 SVN HEAD +# +# +# Python Code By: +# +# Andrea Gavana, @ 23 Dec 2005 +# Latest Revision: 10 Mar 2011, 15.00 GMT +# +# For All Kind Of Problems, Requests Of Enhancements And Bug Reports, Please +# Write To Me At: +# +# andrea.gavana@gmail.com +# gavana@kpo.kz +# +# Or, Obviously, To The wxPython Mailing List!!! +# +# End Of Comments +# --------------------------------------------------------------------------- # + +""" +Description +=========== + +framemanager is the central module of the AUI class framework. + +L{AuiManager} manages the panes associated with it for a particular `wx.Frame`, using +a pane's L{AuiPaneInfo} information to determine each pane's docking and floating +behavior. AuiManager uses wxPython' sizer mechanism to plan the layout of each frame. +It uses a replaceable dock art class to do all drawing, so all drawing is localized +in one area, and may be customized depending on an application's specific needs. + +AuiManager works as follows: the programmer adds panes to the class, or makes +changes to existing pane properties (dock position, floating state, show state, etc...). +To apply these changes, AuiManager's L{AuiManager.Update} function is called. This batch +processing can be used to avoid flicker, by modifying more than one pane at a time, +and then "committing" all of the changes at once by calling `Update()`. + +Panes can be added quite easily:: + + text1 = wx.TextCtrl(self, -1) + text2 = wx.TextCtrl(self, -1) + self._mgr.AddPane(text1, AuiPaneInfo().Left().Caption("Pane Number One")) + self._mgr.AddPane(text2, AuiPaneInfo().Bottom().Caption("Pane Number Two")) + + self._mgr.Update() + + +Later on, the positions can be modified easily. The following will float an +existing pane in a tool window:: + + self._mgr.GetPane(text1).Float() + + +Layers, Rows and Directions, Positions +====================================== + +Inside AUI, the docking layout is figured out by checking several pane parameters. +Four of these are important for determining where a pane will end up. + +**Direction** - Each docked pane has a direction, `Top`, `Bottom`, `Left`, `Right`, or `Center`. +This is fairly self-explanatory. The pane will be placed in the location specified +by this variable. + +**Position** - More than one pane can be placed inside of a "dock". Imagine two panes +being docked on the left side of a window. One pane can be placed over another. +In proportionally managed docks, the pane position indicates it's sequential position, +starting with zero. So, in our scenario with two panes docked on the left side, the +top pane in the dock would have position 0, and the second one would occupy position 1. + +**Row** - A row can allow for two docks to be placed next to each other. One of the most +common places for this to happen is in the toolbar. Multiple toolbar rows are allowed, +the first row being in row 0, and the second in row 1. Rows can also be used on +vertically docked panes. + +**Layer** - A layer is akin to an onion. Layer 0 is the very center of the managed pane. +Thus, if a pane is in layer 0, it will be closest to the center window (also sometimes +known as the "content window"). Increasing layers "swallow up" all layers of a lower +value. This can look very similar to multiple rows, but is different because all panes +in a lower level yield to panes in higher levels. The best way to understand layers +is by running the AUI sample (`AUI.py`). +""" + +__author__ = "Andrea Gavana " +__date__ = "31 March 2009" + + +import wx +import time +import types +import warnings + +import auibar +import auibook +import tabmdi +import dockart +import tabart + +from aui_utilities import Clip, PaneCreateStippleBitmap, GetDockingImage, GetSlidingPoints + +from aui_constants import * + +# Define this as a translation function +_ = wx.GetTranslation + +_winxptheme = False +if wx.Platform == "__WXMSW__": + try: + import winxptheme + _winxptheme = True + except ImportError: + pass + +# wxPython version string +_VERSION_STRING = wx.VERSION_STRING + +# AUI Events +wxEVT_AUI_PANE_BUTTON = wx.NewEventType() +wxEVT_AUI_PANE_CLOSE = wx.NewEventType() +wxEVT_AUI_PANE_MAXIMIZE = wx.NewEventType() +wxEVT_AUI_PANE_RESTORE = wx.NewEventType() +wxEVT_AUI_RENDER = wx.NewEventType() +wxEVT_AUI_FIND_MANAGER = wx.NewEventType() +wxEVT_AUI_PANE_MINIMIZE = wx.NewEventType() +wxEVT_AUI_PANE_MIN_RESTORE = wx.NewEventType() +wxEVT_AUI_PANE_FLOATING = wx.NewEventType() +wxEVT_AUI_PANE_FLOATED = wx.NewEventType() +wxEVT_AUI_PANE_DOCKING = wx.NewEventType() +wxEVT_AUI_PANE_DOCKED = wx.NewEventType() +wxEVT_AUI_PANE_ACTIVATED = wx.NewEventType() +wxEVT_AUI_PERSPECTIVE_CHANGED = wx.NewEventType() + +EVT_AUI_PANE_BUTTON = wx.PyEventBinder(wxEVT_AUI_PANE_BUTTON, 0) +""" Fires an event when the user left-clicks on a pane button. """ +EVT_AUI_PANE_CLOSE = wx.PyEventBinder(wxEVT_AUI_PANE_CLOSE, 0) +""" A pane in `AuiManager` has been closed. """ +EVT_AUI_PANE_MAXIMIZE = wx.PyEventBinder(wxEVT_AUI_PANE_MAXIMIZE, 0) +""" A pane in `AuiManager` has been maximized. """ +EVT_AUI_PANE_RESTORE = wx.PyEventBinder(wxEVT_AUI_PANE_RESTORE, 0) +""" A pane in `AuiManager` has been restored from a maximized state. """ +EVT_AUI_RENDER = wx.PyEventBinder(wxEVT_AUI_RENDER, 0) +""" Fires an event every time the AUI frame is being repainted. """ +EVT_AUI_FIND_MANAGER = wx.PyEventBinder(wxEVT_AUI_FIND_MANAGER, 0) +""" Used to find which AUI manager is controlling a certain pane. """ +EVT_AUI_PANE_MINIMIZE = wx.PyEventBinder(wxEVT_AUI_PANE_MINIMIZE, 0) +""" A pane in `AuiManager` has been minimized. """ +EVT_AUI_PANE_MIN_RESTORE = wx.PyEventBinder(wxEVT_AUI_PANE_MIN_RESTORE, 0) +""" A pane in `AuiManager` has been restored from a minimized state. """ +EVT_AUI_PANE_FLOATING = wx.PyEventBinder(wxEVT_AUI_PANE_FLOATING, 0) +""" A pane in `AuiManager` is about to be floated. """ +EVT_AUI_PANE_FLOATED = wx.PyEventBinder(wxEVT_AUI_PANE_FLOATED, 0) +""" A pane in `AuiManager` has been floated. """ +EVT_AUI_PANE_DOCKING = wx.PyEventBinder(wxEVT_AUI_PANE_DOCKING, 0) +""" A pane in `AuiManager` is about to be docked. """ +EVT_AUI_PANE_DOCKED = wx.PyEventBinder(wxEVT_AUI_PANE_DOCKED, 0) +""" A pane in `AuiManager` has been docked. """ +EVT_AUI_PANE_ACTIVATED = wx.PyEventBinder(wxEVT_AUI_PANE_ACTIVATED, 0) +""" A pane in `AuiManager` has been activated. """ +EVT_AUI_PERSPECTIVE_CHANGED = wx.PyEventBinder(wxEVT_AUI_PERSPECTIVE_CHANGED, 0) +""" The layout in `AuiManager` has been changed. """ + +# ---------------------------------------------------------------------------- # + +class AuiDockInfo(object): + """ A class to store all properties of a dock. """ + + def __init__(self): + """ + Default class constructor. + Used internally, do not call it in your code! + """ + + object.__init__(self) + + self.dock_direction = 0 + self.dock_layer = 0 + self.dock_row = 0 + self.size = 0 + self.min_size = 0 + self.resizable = True + self.fixed = False + self.toolbar = False + self.rect = wx.Rect() + self.panes = [] + + + def IsOk(self): + """ + Returns whether a dock is valid or not. + + In order to be valid, a dock needs to have a non-zero `dock_direction`. + """ + + return self.dock_direction != 0 + + + def IsHorizontal(self): + """ Returns whether the dock is horizontal or not. """ + + return self.dock_direction in [AUI_DOCK_TOP, AUI_DOCK_BOTTOM] + + + def IsVertical(self): + """ Returns whether the dock is vertical or not. """ + + return self.dock_direction in [AUI_DOCK_LEFT, AUI_DOCK_RIGHT, AUI_DOCK_CENTER] + + +# ---------------------------------------------------------------------------- # + +class AuiDockingGuideInfo(object): + """ A class which holds information about VS2005 docking guide windows. """ + + def __init__(self, other=None): + """ + Default class constructor. + Used internally, do not call it in your code! + + :param `other`: another instance of L{AuiDockingGuideInfo}. + """ + + if other: + self.Assign(other) + else: + # window representing the docking target + self.host = None + # dock direction (top, bottom, left, right, center) + self.dock_direction = AUI_DOCK_NONE + + + def Assign(self, other): + """ + Assigns the properties of the `other` L{AuiDockingGuideInfo} to `self`. + + :param `other`: another instance of L{AuiDockingGuideInfo}. + """ + + self.host = other.host + self.dock_direction = other.dock_direction + + + def Host(self, h): + """ + Hosts a docking guide window. + + :param `h`: an instance of L{AuiSingleDockingGuide} or L{AuiCenterDockingGuide}. + """ + + self.host = h + return self + + + def Left(self): + """ Sets the guide window to left docking. """ + + self.dock_direction = AUI_DOCK_LEFT + return self + + + def Right(self): + """ Sets the guide window to right docking. """ + + self.dock_direction = AUI_DOCK_RIGHT + return self + + + def Top(self): + """ Sets the guide window to top docking. """ + + self.dock_direction = AUI_DOCK_TOP + return self + + + def Bottom(self): + """ Sets the guide window to bottom docking. """ + + self.dock_direction = AUI_DOCK_BOTTOM + return self + + + def Center(self): + """ Sets the guide window to center docking. """ + + self.dock_direction = AUI_DOCK_CENTER + return self + + + def Centre(self): + """ Sets the guide window to centre docking. """ + + self.dock_direction = AUI_DOCK_CENTRE + return self + + +# ---------------------------------------------------------------------------- # + +class AuiDockUIPart(object): + """ A class which holds attributes for a UI part in the interface. """ + + typeCaption = 0 + typeGripper = 1 + typeDock = 2 + typeDockSizer = 3 + typePane = 4 + typePaneSizer = 5 + typeBackground = 6 + typePaneBorder = 7 + typePaneButton = 8 + + def __init__(self): + """ + Default class constructor. + Used internally, do not call it in your code! + """ + + self.orientation = wx.VERTICAL + self.type = 0 + self.rect = wx.Rect() + + +# ---------------------------------------------------------------------------- # + +class AuiPaneButton(object): + """ A simple class which describes the caption pane button attributes. """ + + def __init__(self, button_id): + """ + Default class constructor. + Used internally, do not call it in your code! + + :param `button_id`: the pane button identifier. + """ + + self.button_id = button_id + + +# ---------------------------------------------------------------------------- # + +# event declarations/classes + +class AuiManagerEvent(wx.PyCommandEvent): + """ A specialized command event class for events sent by L{AuiManager}. """ + + def __init__(self, eventType, id=1): + """ + Default class constructor. + + :param `eventType`: the event kind; + :param `id`: the event identification number. + """ + + wx.PyCommandEvent.__init__(self, eventType, id) + + self.manager = None + self.pane = None + self.button = 0 + self.veto_flag = False + self.canveto_flag = True + self.dc = None + + + def SetManager(self, mgr): + """ + Associates a L{AuiManager} to the current event. + + :param `mgr`: an instance of L{AuiManager}. + """ + + self.manager = mgr + + + def SetDC(self, pdc): + """ + Associates a `wx.DC` device context to this event. + + :param `pdc`: a `wx.DC` device context object. + """ + + self.dc = pdc + + + def SetPane(self, p): + """ + Associates a L{AuiPaneInfo} instance to this event. + + :param `p`: a L{AuiPaneInfo} instance. + """ + + self.pane = p + + + def SetButton(self, b): + """ + Associates a L{AuiPaneButton} instance to this event. + + :param `b`: a L{AuiPaneButton} instance. + """ + + self.button = b + + + def GetManager(self): + """ Returns the associated L{AuiManager} (if any). """ + + return self.manager + + + def GetDC(self): + """ Returns the associated `wx.DC` device context (if any). """ + + return self.dc + + + def GetPane(self): + """ Returns the associated L{AuiPaneInfo} structure (if any). """ + + return self.pane + + + def GetButton(self): + """ Returns the associated L{AuiPaneButton} instance (if any). """ + + return self.button + + + def Veto(self, veto=True): + """ + Prevents the change announced by this event from happening. + + It is in general a good idea to notify the user about the reasons for + vetoing the change because otherwise the applications behaviour (which + just refuses to do what the user wants) might be quite surprising. + + :param `veto`: ``True`` to veto the event, ``False`` otherwise. + """ + + self.veto_flag = veto + + + def GetVeto(self): + """ Returns whether the event has been vetoed or not. """ + + return self.veto_flag + + + def SetCanVeto(self, can_veto): + """ + Sets whether the event can be vetoed or not. + + :param `can_veto`: a bool flag. ``True`` if the event can be vetoed, ``False`` otherwise. + """ + + self.canveto_flag = can_veto + + + def CanVeto(self): + """ Returns whether the event can be vetoed and has been vetoed. """ + + return self.canveto_flag and self.veto_flag + + +# ---------------------------------------------------------------------------- # + +class AuiPaneInfo(object): + """ + AuiPaneInfo specifies all the parameters for a pane. These parameters specify where + the pane is on the screen, whether it is docked or floating, or hidden. In addition, + these parameters specify the pane's docked position, floating position, preferred + size, minimum size, caption text among many other parameters. + """ + + optionFloating = 2**0 + optionHidden = 2**1 + optionLeftDockable = 2**2 + optionRightDockable = 2**3 + optionTopDockable = 2**4 + optionBottomDockable = 2**5 + optionFloatable = 2**6 + optionMovable = 2**7 + optionResizable = 2**8 + optionPaneBorder = 2**9 + optionCaption = 2**10 + optionGripper = 2**11 + optionDestroyOnClose = 2**12 + optionToolbar = 2**13 + optionActive = 2**14 + optionGripperTop = 2**15 + optionMaximized = 2**16 + optionDockFixed = 2**17 + optionNotebookDockable = 2**18 + optionMinimized = 2**19 + optionLeftSnapped = 2**20 + optionRightSnapped = 2**21 + optionTopSnapped = 2**22 + optionBottomSnapped = 2**23 + optionFlyOut = 2**24 + optionCaptionLeft = 2**25 + + buttonClose = 2**26 + buttonMaximize = 2**27 + buttonMinimize = 2**28 + buttonPin = 2**29 + + buttonCustom1 = 2**30 + buttonCustom2 = 2**31 + buttonCustom3 = 2**32 + + savedHiddenState = 2**33 # used internally + actionPane = 2**34 # used internally + wasMaximized = 2**35 # used internally + needsRestore = 2**36 # used internally + + + def __init__(self): + """ Default class constructor. """ + + self.window = None + self.frame = None + self.state = 0 + self.dock_direction = AUI_DOCK_LEFT + self.dock_layer = 0 + self.dock_row = 0 + self.dock_pos = 0 + self.minimize_mode = AUI_MINIMIZE_POS_SMART + self.floating_pos = wx.Point(-1, -1) + self.floating_size = wx.Size(-1, -1) + self.best_size = wx.Size(-1, -1) + self.min_size = wx.Size(-1, -1) + self.max_size = wx.Size(-1, -1) + self.dock_proportion = 0 + self.caption = "" + self.buttons = [] + self.name = "" + self.icon = wx.NullIcon + self.rect = wx.Rect() + self.notebook_id = -1 + self.transparent = 255 + self.needsTransparency = False + self.previousDockPos = None + self.previousDockSize = 0 + self.snapped = 0 + + self.DefaultPane() + + + def dock_direction_get(self): + """ + Getter for the `dock_direction`. + + :see: L{dock_direction_set} for a set of valid docking directions. + """ + + if self.IsMaximized(): + return AUI_DOCK_CENTER + else: + return self._dock_direction + + + def dock_direction_set(self, value): + """ + Setter for the `dock_direction`. + + :param `value`: the docking direction. This cab ne one of the following bits: + + ============================ ======= ============================================= + Dock Flag Value Description + ============================ ======= ============================================= + ``AUI_DOCK_NONE`` 0 No docking direction. + ``AUI_DOCK_TOP`` 1 Top docking direction. + ``AUI_DOCK_RIGHT`` 2 Right docking direction. + ``AUI_DOCK_BOTTOM`` 3 Bottom docking direction. + ``AUI_DOCK_LEFT`` 4 Left docking direction. + ``AUI_DOCK_CENTER`` 5 Center docking direction. + ``AUI_DOCK_CENTRE`` 5 Centre docking direction. + ``AUI_DOCK_NOTEBOOK_PAGE`` 6 Automatic AuiNotebooks docking style. + ============================ ======= ============================================= + + """ + + self._dock_direction = value + + dock_direction = property(dock_direction_get, dock_direction_set) + + def IsOk(self): + """ + Returns ``True`` if the L{AuiPaneInfo} structure is valid. + + :note: A pane structure is valid if it has an associated window. + """ + + return self.window != None + + + def IsMaximized(self): + """ Returns ``True`` if the pane is maximized. """ + + return self.HasFlag(self.optionMaximized) + + + def IsMinimized(self): + """ Returns ``True`` if the pane is minimized. """ + + return self.HasFlag(self.optionMinimized) + + + def IsFixed(self): + """ Returns ``True`` if the pane cannot be resized. """ + + return not self.HasFlag(self.optionResizable) + + + def IsResizeable(self): + """ Returns ``True`` if the pane can be resized. """ + + return self.HasFlag(self.optionResizable) + + + def IsShown(self): + """ Returns ``True`` if the pane is currently shown. """ + + return not self.HasFlag(self.optionHidden) + + + def IsFloating(self): + """ Returns ``True`` if the pane is floating. """ + + return self.HasFlag(self.optionFloating) + + + def IsDocked(self): + """ Returns ``True`` if the pane is docked. """ + + return not self.HasFlag(self.optionFloating) + + + def IsToolbar(self): + """ Returns ``True`` if the pane contains a toolbar. """ + + return self.HasFlag(self.optionToolbar) + + + def IsTopDockable(self): + """ + Returns ``True`` if the pane can be docked at the top + of the managed frame. + """ + + return self.HasFlag(self.optionTopDockable) + + + def IsBottomDockable(self): + """ + Returns ``True`` if the pane can be docked at the bottom + of the managed frame. + """ + + return self.HasFlag(self.optionBottomDockable) + + + def IsLeftDockable(self): + """ + Returns ``True`` if the pane can be docked at the left + of the managed frame. + """ + + return self.HasFlag(self.optionLeftDockable) + + + def IsRightDockable(self): + """ + Returns ``True`` if the pane can be docked at the right + of the managed frame. + """ + + return self.HasFlag(self.optionRightDockable) + + + def IsDockable(self): + """ Returns ``True`` if the pane can be docked. """ + + return self.IsTopDockable() or self.IsBottomDockable() or self.IsLeftDockable() or \ + self.IsRightDockable() or self.IsNotebookDockable() + + + def IsFloatable(self): + """ + Returns ``True`` if the pane can be undocked and displayed as a + floating window. + """ + + return self.HasFlag(self.optionFloatable) + + + def IsMovable(self): + """ + Returns ``True`` if the docked frame can be undocked or moved to + another dock position. + """ + + return self.HasFlag(self.optionMovable) + + + def IsDestroyOnClose(self): + """ + Returns ``True`` if the pane should be destroyed when it is closed. + + Normally a pane is simply hidden when the close button is clicked. Calling L{DestroyOnClose} + with a ``True`` input parameter will cause the window to be destroyed when the user clicks + the pane's close button. + """ + + return self.HasFlag(self.optionDestroyOnClose) + + + def IsNotebookDockable(self): + """ + Returns ``True`` if a pane can be docked on top to another to create a + L{AuiNotebook}. + """ + + return self.HasFlag(self.optionNotebookDockable) + + + def IsTopSnappable(self): + """ Returns ``True`` if the pane can be snapped at the top of the managed frame. """ + + return self.HasFlag(self.optionTopSnapped) + + + def IsBottomSnappable(self): + """ Returns ``True`` if the pane can be snapped at the bottom of the managed frame. """ + + return self.HasFlag(self.optionBottomSnapped) + + + def IsLeftSnappable(self): + """ Returns ``True`` if the pane can be snapped on the left of the managed frame. """ + + return self.HasFlag(self.optionLeftSnapped) + + + def IsRightSnappable(self): + """ Returns ``True`` if the pane can be snapped on the right of the managed frame. """ + + return self.HasFlag(self.optionRightSnapped) + + + def IsSnappable(self): + """ Returns ``True`` if the pane can be snapped. """ + + return self.IsTopSnappable() or self.IsBottomSnappable() or self.IsLeftSnappable() or \ + self.IsRightSnappable() + + + def IsFlyOut(self): + """ Returns ``True`` if the floating pane has a "fly-out" effect. """ + + return self.HasFlag(self.optionFlyOut) + + + def HasCaption(self): + """ Returns ``True`` if the pane displays a caption. """ + + return self.HasFlag(self.optionCaption) + + + def HasCaptionLeft(self): + """ Returns ``True`` if the pane displays a caption on the left (rotated by 90 degrees). """ + + return self.HasFlag(self.optionCaptionLeft) + + + def HasGripper(self): + """ Returns ``True`` if the pane displays a gripper. """ + + return self.HasFlag(self.optionGripper) + + + def HasBorder(self): + """ Returns ``True`` if the pane displays a border. """ + + return self.HasFlag(self.optionPaneBorder) + + + def HasCloseButton(self): + """ Returns ``True`` if the pane displays a button to close the pane. """ + + return self.HasFlag(self.buttonClose) + + + def HasMaximizeButton(self): + """ Returns ``True`` if the pane displays a button to maximize the pane. """ + + return self.HasFlag(self.buttonMaximize) + + + def HasMinimizeButton(self): + """ Returns ``True`` if the pane displays a button to minimize the pane. """ + + return self.HasFlag(self.buttonMinimize) + + + def GetMinimizeMode(self): + """ + Returns the minimization style for this pane. + + Possible return values are: + + ============================== ========= ============================== + Minimize Mode Flag Hex Value Description + ============================== ========= ============================== + ``AUI_MINIMIZE_POS_SMART`` 0x01 Minimizes the pane on the closest tool bar + ``AUI_MINIMIZE_POS_TOP`` 0x02 Minimizes the pane on the top tool bar + ``AUI_MINIMIZE_POS_LEFT`` 0x03 Minimizes the pane on its left tool bar + ``AUI_MINIMIZE_POS_RIGHT`` 0x04 Minimizes the pane on its right tool bar + ``AUI_MINIMIZE_POS_BOTTOM`` 0x05 Minimizes the pane on its bottom tool bar + ``AUI_MINIMIZE_POS_MASK`` 0x07 Mask to filter the position flags + ``AUI_MINIMIZE_CAPT_HIDE`` 0x0 Hides the caption of the minimized pane + ``AUI_MINIMIZE_CAPT_SMART`` 0x08 Displays the caption in the best rotation (horizontal or clockwise) + ``AUI_MINIMIZE_CAPT_HORZ`` 0x10 Displays the caption horizontally + ``AUI_MINIMIZE_CAPT_MASK`` 0x18 Mask to filter the caption flags + ============================== ========= ============================== + + The flags can be filtered with the following masks: + + ============================== ========= ============================== + Minimize Mask Flag Hex Value Description + ============================== ========= ============================== + ``AUI_MINIMIZE_POS_MASK`` 0x07 Filters the position flags + ``AUI_MINIMIZE_CAPT_MASK`` 0x18 Filters the caption flags + ============================== ========= ============================== + + """ + + return self.minimize_mode + + + def HasPinButton(self): + """ Returns ``True`` if the pane displays a button to float the pane. """ + + return self.HasFlag(self.buttonPin) + + + def HasGripperTop(self): + """ Returns ``True`` if the pane displays a gripper at the top. """ + + return self.HasFlag(self.optionGripperTop) + + + def Window(self, w): + """ + Associate a `wx.Window` derived window to this pane. + + This normally does not need to be specified, as the window pointer is + automatically assigned to the L{AuiPaneInfo} structure as soon as it is + added to the manager. + + :param `w`: a `wx.Window` derived window. + """ + + self.window = w + return self + + + def Name(self, name): + """ + Sets the name of the pane so it can be referenced in lookup functions. + + If a name is not specified by the user, a random name is assigned to the pane + when it is added to the manager. + + :param `name`: a string specifying the pane name. + + :warning: If you are using L{AuiManager.SavePerspective} and L{AuiManager.LoadPerspective}, you will have + to specify a name for your pane using L{Name}, as randomly generated names can + not be properly restored. + """ + + self.name = name + return self + + + def Caption(self, caption): + """ + Sets the caption of the pane. + + :param `caption`: a string specifying the pane caption. + """ + + self.caption = caption + return self + + + def Left(self): + """ + Sets the pane dock position to the left side of the frame. + + :note: This is the same thing as calling L{Direction} with ``AUI_DOCK_LEFT`` as + parameter. + """ + + self.dock_direction = AUI_DOCK_LEFT + return self + + + def Right(self): + """ + Sets the pane dock position to the right side of the frame. + + :note: This is the same thing as calling L{Direction} with ``AUI_DOCK_RIGHT`` as + parameter. + """ + + self.dock_direction = AUI_DOCK_RIGHT + return self + + + def Top(self): + """ + Sets the pane dock position to the top of the frame. + + :note: This is the same thing as calling L{Direction} with ``AUI_DOCK_TOP`` as + parameter. + """ + + self.dock_direction = AUI_DOCK_TOP + return self + + + def Bottom(self): + """ + Sets the pane dock position to the bottom of the frame. + + :note: This is the same thing as calling L{Direction} with ``AUI_DOCK_BOTTOM`` as + parameter. + """ + + self.dock_direction = AUI_DOCK_BOTTOM + return self + + + def Center(self): + """ + Sets the pane to the center position of the frame. + + The centre pane is the space in the middle after all border panes (left, top, + right, bottom) are subtracted from the layout. + + :note: This is the same thing as calling L{Direction} with ``AUI_DOCK_CENTER`` as + parameter. + """ + + self.dock_direction = AUI_DOCK_CENTER + return self + + + def Centre(self): + """ + Sets the pane to the center position of the frame. + + The centre pane is the space in the middle after all border panes (left, top, + right, bottom) are subtracted from the layout. + + :note: This is the same thing as calling L{Direction} with ``AUI_DOCK_CENTRE`` as + parameter. + """ + + self.dock_direction = AUI_DOCK_CENTRE + return self + + + def Direction(self, direction): + """ + Determines the direction of the docked pane. It is functionally the + same as calling L{Left}, L{Right}, L{Top} or L{Bottom}, except that docking direction + may be specified programmatically via the parameter `direction`. + + :param `direction`: the direction of the docked pane. + + :see: L{dock_direction_set} for a list of valid docking directions. + """ + + self.dock_direction = direction + return self + + + def Layer(self, layer): + """ + Determines the layer of the docked pane. + + The dock layer is similar to an onion, the inner-most layer being layer 0. Each + shell moving in the outward direction has a higher layer number. This allows for + more complex docking layout formation. + + :param `layer`: the layer of the docked pane. + """ + + self.dock_layer = layer + return self + + + def Row(self, row): + """ + Determines the row of the docked pane. + + :param `row`: the row of the docked pane. + """ + + self.dock_row = row + return self + + + def Position(self, pos): + """ + Determines the position of the docked pane. + + :param `pos`: the position of the docked pane. + """ + + self.dock_pos = pos + return self + + + def MinSize(self, arg1=None, arg2=None): + """ + Sets the minimum size of the pane. + + This method is split in 2 versions depending on the input type. If `arg1` is + a `wx.Size` object, then L{MinSize1} is called. Otherwise, L{MinSize2} is called. + + :param `arg1`: a `wx.Size` object, a (x, y) tuple or or a `x` coordinate. + :param `arg2`: a `y` coordinate (only if `arg1` is a `x` coordinate, otherwise unused). + """ + + if isinstance(arg1, wx.Size): + ret = self.MinSize1(arg1) + elif isinstance(arg1, types.TupleType): + ret = self.MinSize1(wx.Size(*arg1)) + else: + ret = self.MinSize2(arg1, arg2) + + return ret + + + def MinSize1(self, size): + """ + Sets the minimum size of the pane. + + :see: L{MinSize} for an explanation of input parameters. + """ + self.min_size = size + return self + + + def MinSize2(self, x, y): + """ + Sets the minimum size of the pane. + + :see: L{MinSize} for an explanation of input parameters. + """ + + self.min_size = wx.Size(x, y) + return self + + + def MaxSize(self, arg1=None, arg2=None): + """ + Sets the maximum size of the pane. + + This method is split in 2 versions depending on the input type. If `arg1` is + a `wx.Size` object, then L{MaxSize1} is called. Otherwise, L{MaxSize2} is called. + + :param `arg1`: a `wx.Size` object, a (x, y) tuple or a `x` coordinate. + :param `arg2`: a `y` coordinate (only if `arg1` is a `x` coordinate, otherwise unused). + """ + + if isinstance(arg1, wx.Size): + ret = self.MaxSize1(arg1) + elif isinstance(arg1, types.TupleType): + ret = self.MaxSize1(wx.Size(*arg1)) + else: + ret = self.MaxSize2(arg1, arg2) + + return ret + + + def MaxSize1(self, size): + """ + Sets the maximum size of the pane. + + :see: L{MaxSize} for an explanation of input parameters. + """ + + self.max_size = size + return self + + + def MaxSize2(self, x, y): + """ + Sets the maximum size of the pane. + + :see: L{MaxSize} for an explanation of input parameters. + """ + + self.max_size.Set(x,y) + return self + + + def BestSize(self, arg1=None, arg2=None): + """ + Sets the ideal size for the pane. The docking manager will attempt to use + this size as much as possible when docking or floating the pane. + + This method is split in 2 versions depending on the input type. If `arg1` is + a `wx.Size` object, then L{BestSize1} is called. Otherwise, L{BestSize2} is called. + + :param `arg1`: a `wx.Size` object, a (x, y) tuple or a `x` coordinate. + :param `arg2`: a `y` coordinate (only if `arg1` is a `x` coordinate, otherwise unused). + """ + + if isinstance(arg1, wx.Size): + ret = self.BestSize1(arg1) + elif isinstance(arg1, types.TupleType): + ret = self.BestSize1(wx.Size(*arg1)) + else: + ret = self.BestSize2(arg1, arg2) + + return ret + + + def BestSize1(self, size): + """ + Sets the best size of the pane. + + :see: L{BestSize} for an explanation of input parameters. + """ + + self.best_size = size + return self + + + def BestSize2(self, x, y): + """ + Sets the best size of the pane. + + :see: L{BestSize} for an explanation of input parameters. + """ + + self.best_size.Set(x,y) + return self + + + def FloatingPosition(self, pos): + """ + Sets the position of the floating pane. + + :param `pos`: a `wx.Point` or a tuple indicating the pane floating position. + """ + + self.floating_pos = wx.Point(*pos) + return self + + + def FloatingSize(self, size): + """ + Sets the size of the floating pane. + + :param `size`: a `wx.Size` or a tuple indicating the pane floating size. + """ + + self.floating_size = wx.Size(*size) + return self + + + def Maximize(self): + """ Makes the pane take up the full area.""" + + return self.SetFlag(self.optionMaximized, True) + + + def Minimize(self): + """ + Makes the pane minimized in a L{AuiToolBar}. + + Clicking on the minimize button causes a new L{AuiToolBar} to be created + and added to the frame manager, (currently the implementation is such that + panes at West will have a toolbar at the right, panes at South will have + toolbars at the bottom etc...) and the pane is hidden in the manager. + + Clicking on the restore button on the newly created toolbar will result in the + toolbar being removed and the original pane being restored. + """ + + return self.SetFlag(self.optionMinimized, True) + + + def MinimizeMode(self, mode): + """ + Sets the expected minimized mode if the MinimizeButton() is visible. + + The minimized pane can have a specific position in the work space: + + ============================== ========= ============================== + Minimize Mode Flag Hex Value Description + ============================== ========= ============================== + ``AUI_MINIMIZE_POS_SMART`` 0x01 Minimizes the pane on the closest tool bar + ``AUI_MINIMIZE_POS_TOP`` 0x02 Minimizes the pane on the top tool bar + ``AUI_MINIMIZE_POS_LEFT`` 0x03 Minimizes the pane on its left tool bar + ``AUI_MINIMIZE_POS_RIGHT`` 0x04 Minimizes the pane on its right tool bar + ``AUI_MINIMIZE_POS_BOTTOM`` 0x05 Minimizes the pane on its bottom tool bar + ============================== ========= ============================== + + The caption of the minimized pane can be displayed in different modes: + + ============================== ========= ============================== + Caption Mode Flag Hex Value Description + ============================== ========= ============================== + ``AUI_MINIMIZE_CAPT_HIDE`` 0x0 Hides the caption of the minimized pane + ``AUI_MINIMIZE_CAPT_SMART`` 0x08 Displays the caption in the best rotation (horizontal in the top and in the bottom tool bar or clockwise in the right and in the left tool bar) + ``AUI_MINIMIZE_CAPT_HORZ`` 0x10 Displays the caption horizontally + ============================== ========= ============================== + + """ + + self.minimize_mode = mode + return self + + + def Restore(self): + """ Is the reverse of L{Maximize} and L{Minimize}.""" + + return self.SetFlag(self.optionMaximized or self.optionMinimized, False) + + + def Fixed(self): + """ + Forces a pane to be fixed size so that it cannot be resized. + After calling L{Fixed}, L{IsFixed} will return ``True``. + """ + + return self.SetFlag(self.optionResizable, False) + + + def Resizable(self, resizable=True): + """ + Allows a pane to be resizable if `resizable` is ``True``, and forces + it to be a fixed size if `resizeable` is ``False``. + + If `resizable` is ``False``, this is simply an antonym for L{Fixed}. + + :param `resizable`: whether the pane will be resizeable or not. + """ + + return self.SetFlag(self.optionResizable, resizable) + + + def Transparent(self, alpha): + """ + Makes the pane transparent when floating. + + :param `alpha`: an integer value between 0 and 255 for pane transparency. + """ + + if alpha < 0 or alpha > 255: + raise Exception("Invalid transparency value (%s)"%repr(alpha)) + + self.transparent = alpha + self.needsTransparency = True + + + def Dock(self): + """ + Indicates that a pane should be docked. It is the opposite of L{Float}. + """ + + if self.IsNotebookPage(): + self.notebook_id = -1 + self.dock_direction = AUI_DOCK_NONE + + return self.SetFlag(self.optionFloating, False) + + + def Float(self): + """ + Indicates that a pane should be floated. It is the opposite of L{Dock}. + """ + + if self.IsNotebookPage(): + self.notebook_id = -1 + self.dock_direction = AUI_DOCK_NONE + + return self.SetFlag(self.optionFloating, True) + + + def Hide(self): + """ + Indicates that a pane should be hidden. + + Calling L{Show} (``False``) achieve the same effect. + """ + + return self.SetFlag(self.optionHidden, True) + + + def Show(self, show=True): + """ + Indicates that a pane should be shown. + + :param `show`: whether the pane should be shown or not. + """ + + return self.SetFlag(self.optionHidden, not show) + + + # By defaulting to 1000, the tab will get placed at the end + def NotebookPage(self, id, tab_position=1000): + """ + Forces a pane to be a notebook page, so that the pane can be + docked on top to another to create a L{AuiNotebook}. + + :param `id`: the notebook id; + :param `tab_position`: the tab number of the pane once docked in a notebook. + """ + + # Remove any floating frame + self.Dock() + self.notebook_id = id + self.dock_pos = tab_position + self.dock_row = 0 + self.dock_layer = 0 + self.dock_direction = AUI_DOCK_NOTEBOOK_PAGE + + return self + + + def NotebookControl(self, id): + """ + Forces a pane to be a notebook control (L{AuiNotebook}). + + :param `id`: the notebook id. + """ + + self.notebook_id = id + self.window = None + self.buttons = [] + + if self.dock_direction == AUI_DOCK_NOTEBOOK_PAGE: + self.dock_direction = AUI_DOCK_NONE + + return self + + + def HasNotebook(self): + """ Returns whether a pane has a L{AuiNotebook} or not. """ + + return self.notebook_id >= 0 + + + def IsNotebookPage(self): + """ Returns whether the pane is a notebook page in a L{AuiNotebook}. """ + + return self.notebook_id >= 0 and self.dock_direction == AUI_DOCK_NOTEBOOK_PAGE + + + def IsNotebookControl(self): + """ Returns whether the pane is a notebook control (L{AuiNotebook}). """ + + return not self.IsNotebookPage() and self.HasNotebook() + + + def SetNameFromNotebookId(self): + """ Sets the pane name once docked in a L{AuiNotebook} using the notebook id. """ + + if self.notebook_id >= 0: + self.name = "__notebook_%d"%self.notebook_id + + return self + + + def CaptionVisible(self, visible=True, left=False): + """ + Indicates that a pane caption should be visible. If `visible` is ``False``, no pane + caption is drawn. + + :param `visible`: whether the caption should be visible or not; + :param `left`: whether the caption should be drawn on the left (rotated by 90 degrees) or not. + """ + + if left: + self.SetFlag(self.optionCaption, False) + return self.SetFlag(self.optionCaptionLeft, visible) + + self.SetFlag(self.optionCaptionLeft, False) + return self.SetFlag(self.optionCaption, visible) + + + def PaneBorder(self, visible=True): + """ + Indicates that a border should be drawn for the pane. + + :param `visible`: whether the pane border should be visible or not. + """ + + return self.SetFlag(self.optionPaneBorder, visible) + + + def Gripper(self, visible=True): + """ + Indicates that a gripper should be drawn for the pane. + + :param `visible`: whether the gripper should be visible or not. + """ + + return self.SetFlag(self.optionGripper, visible) + + + def GripperTop(self, attop=True): + """ + Indicates that a gripper should be drawn at the top of the pane. + + :param `attop`: whether the gripper should be drawn at the top or not. + """ + + return self.SetFlag(self.optionGripperTop, attop) + + + def CloseButton(self, visible=True): + """ + Indicates that a close button should be drawn for the pane. + + :param `visible`: whether the close button should be visible or not. + """ + + return self.SetFlag(self.buttonClose, visible) + + + def MaximizeButton(self, visible=True): + """ + Indicates that a maximize button should be drawn for the pane. + + :param `visible`: whether the maximize button should be visible or not. + """ + + return self.SetFlag(self.buttonMaximize, visible) + + + def MinimizeButton(self, visible=True): + """ + Indicates that a minimize button should be drawn for the pane. + + :param `visible`: whether the minimize button should be visible or not. + """ + + return self.SetFlag(self.buttonMinimize, visible) + + + def PinButton(self, visible=True): + """ + Indicates that a pin button should be drawn for the pane. + + :param `visible`: whether the pin button should be visible or not. + """ + + return self.SetFlag(self.buttonPin, visible) + + + def DestroyOnClose(self, b=True): + """ + Indicates whether a pane should be destroyed when it is closed. + + Normally a pane is simply hidden when the close button is clicked. Setting + `b` to ``True`` will cause the window to be destroyed when the user clicks + the pane's close button. + + :param `b`: whether the pane should be destroyed when it is closed or not. + """ + + return self.SetFlag(self.optionDestroyOnClose, b) + + + def TopDockable(self, b=True): + """ + Indicates whether a pane can be docked at the top of the frame. + + :param `b`: whether the pane can be docked at the top or not. + """ + + return self.SetFlag(self.optionTopDockable, b) + + + def BottomDockable(self, b=True): + """ + Indicates whether a pane can be docked at the bottom of the frame. + + :param `b`: whether the pane can be docked at the bottom or not. + """ + + return self.SetFlag(self.optionBottomDockable, b) + + + def LeftDockable(self, b=True): + """ + Indicates whether a pane can be docked on the left of the frame. + + :param `b`: whether the pane can be docked at the left or not. + """ + + return self.SetFlag(self.optionLeftDockable, b) + + + def RightDockable(self, b=True): + """ + Indicates whether a pane can be docked on the right of the frame. + + :param `b`: whether the pane can be docked at the right or not. + """ + + return self.SetFlag(self.optionRightDockable, b) + + + def Floatable(self, b=True): + """ + Sets whether the user will be able to undock a pane and turn it + into a floating window. + + :param `b`: whether the pane can be floated or not. + """ + + return self.SetFlag(self.optionFloatable, b) + + + def Movable(self, b=True): + """ + Indicates whether a pane can be moved. + + :param `b`: whether the pane can be moved or not. + """ + + return self.SetFlag(self.optionMovable, b) + + + def NotebookDockable(self, b=True): + """ + Indicates whether a pane can be docked in an automatic L{AuiNotebook}. + + :param `b`: whether the pane can be docked in a notebook or not. + """ + + return self.SetFlag(self.optionNotebookDockable, b) + + + def DockFixed(self, b=True): + """ + Causes the containing dock to have no resize sash. This is useful + for creating panes that span the entire width or height of a dock, but should + not be resizable in the other direction. + + :param `b`: whether the pane will have a resize sash or not. + """ + + return self.SetFlag(self.optionDockFixed, b) + + + def Dockable(self, b=True): + """ + Specifies whether a frame can be docked or not. It is the same as specifying + L{TopDockable} . L{BottomDockable} . L{LeftDockable} . L{RightDockable} . + + :param `b`: whether the frame can be docked or not. + """ + + return self.TopDockable(b).BottomDockable(b).LeftDockable(b).RightDockable(b) + + + def TopSnappable(self, b=True): + """ + Indicates whether a pane can be snapped at the top of the main frame. + + :param `b`: whether the pane can be snapped at the top of the main frame or not. + """ + + return self.SetFlag(self.optionTopSnapped, b) + + + def BottomSnappable(self, b=True): + """ + Indicates whether a pane can be snapped at the bottom of the main frame. + + :param `b`: whether the pane can be snapped at the bottom of the main frame or not. + """ + + return self.SetFlag(self.optionBottomSnapped, b) + + + def LeftSnappable(self, b=True): + """ + Indicates whether a pane can be snapped on the left of the main frame. + + :param `b`: whether the pane can be snapped at the left of the main frame or not. + """ + + return self.SetFlag(self.optionLeftSnapped, b) + + + def RightSnappable(self, b=True): + """ + Indicates whether a pane can be snapped on the right of the main frame. + + :param `b`: whether the pane can be snapped at the right of the main frame or not. + """ + + return self.SetFlag(self.optionRightSnapped, b) + + + def Snappable(self, b=True): + """ + Indicates whether a pane can be snapped on the main frame. This is + equivalent as calling L{TopSnappable} . L{BottomSnappable} . L{LeftSnappable} . L{RightSnappable} . + + :param `b`: whether the pane can be snapped on the main frame or not. + """ + + return self.TopSnappable(b).BottomSnappable(b).LeftSnappable(b).RightSnappable(b) + + + def FlyOut(self, b=True): + """ + Indicates whether a pane, when floating, has a "fly-out" effect + (i.e., floating panes which only show themselves when moused over). + + :param `b`: whether the pane can be snapped on the main frame or not. + """ + + return self.SetFlag(self.optionFlyOut, b) + + + # Copy over the members that pertain to docking position + def SetDockPos(self, source): + """ + Copies the `source` pane members that pertain to docking position to `self`. + + :param `source`: the source pane from where to copy the attributes. + """ + + self.dock_direction = source.dock_direction + self.dock_layer = source.dock_layer + self.dock_row = source.dock_row + self.dock_pos = source.dock_pos + self.dock_proportion = source.dock_proportion + self.floating_pos = wx.Point(*source.floating_pos) + self.floating_size = wx.Size(*source.floating_size) + self.rect = wx.Rect(*source.rect) + + return self + + + def DefaultPane(self): + """ Specifies that the pane should adopt the default pane settings. """ + + state = self.state + state |= self.optionTopDockable | self.optionBottomDockable | \ + self.optionLeftDockable | self.optionRightDockable | \ + self.optionNotebookDockable | \ + self.optionFloatable | self.optionMovable | self.optionResizable | \ + self.optionCaption | self.optionPaneBorder | self.buttonClose + + self.state = state + + return self + + + def CentrePane(self): + """ + Specifies that the pane should adopt the default center pane settings. + + Centre panes usually do not have caption bars. This function provides an easy way of + preparing a pane to be displayed in the center dock position. + """ + + return self.CenterPane() + + + def CenterPane(self): + """ + Specifies that the pane should adopt the default center pane settings. + + Centre panes usually do not have caption bars. This function provides an easy way of + preparing a pane to be displayed in the center dock position. + """ + + self.state = 0 + return self.Center().PaneBorder().Resizable() + + + def ToolbarPane(self): + """ Specifies that the pane should adopt the default toolbar pane settings. """ + + self.DefaultPane() + state = self.state + + state |= (self.optionToolbar | self.optionGripper) + state &= ~(self.optionResizable | self.optionCaption | self.optionCaptionLeft) + + if self.dock_layer == 0: + self.dock_layer = 10 + + self.state = state + + return self + + + def Icon(self, icon): + """ + Specifies whether an icon is drawn on the left of the caption text when + the pane is docked. If `icon` is ``None`` or `wx.NullIcon`, no icon is drawn on + the caption space. + + :param icon: an icon to draw on the caption space, or ``None``. + """ + + if icon is None: + icon = wx.NullIcon + + self.icon = icon + return self + + + def SetFlag(self, flag, option_state): + """ + Turns the property given by `flag` on or off with the `option_state` + parameter. + + :param `flag`: the property to set; + :param `option_state`: either ``True`` or ``False``. + """ + + state = self.state + + if option_state: + state |= flag + else: + state &= ~flag + + self.state = state + + if flag in [self.buttonClose, self.buttonMaximize, self.buttonMinimize, self.buttonPin]: + self.ResetButtons() + + return self + + + def HasFlag(self, flag): + """ + Returns ``True`` if the the property specified by flag is active for the pane. + + :param `flag`: the property to check for activity. + """ + + return (self.state & flag and [True] or [False])[0] + + + def ResetButtons(self): + """ + Resets all the buttons and recreates them from scratch depending on the + L{AuiPaneInfo} flags. + """ + + floating = self.HasFlag(self.optionFloating) + self.buttons = [] + + if not floating and self.HasMinimizeButton(): + button = AuiPaneButton(AUI_BUTTON_MINIMIZE) + self.buttons.append(button) + + if not floating and self.HasMaximizeButton(): + button = AuiPaneButton(AUI_BUTTON_MAXIMIZE_RESTORE) + self.buttons.append(button) + + if not floating and self.HasPinButton(): + button = AuiPaneButton(AUI_BUTTON_PIN) + self.buttons.append(button) + + if self.HasCloseButton(): + button = AuiPaneButton(AUI_BUTTON_CLOSE) + self.buttons.append(button) + + + def CountButtons(self): + """ Returns the number of visible buttons in the docked pane. """ + + n = 0 + + if self.HasCaption() or self.HasCaptionLeft(): + if isinstance(wx.GetTopLevelParent(self.window), AuiFloatingFrame): + return 1 + + if self.HasCloseButton(): + n += 1 + if self.HasMaximizeButton(): + n += 1 + if self.HasMinimizeButton(): + n += 1 + if self.HasPinButton(): + n += 1 + + return n + + + def IsHorizontal(self): + """ Returns ``True`` if the pane `dock_direction` is horizontal. """ + + return self.dock_direction in [AUI_DOCK_TOP, AUI_DOCK_BOTTOM] + + def IsVertical(self): + """ Returns ``True`` if the pane `dock_direction` is vertical. """ + + return self.dock_direction in [AUI_DOCK_LEFT, AUI_DOCK_RIGHT] + + +# Null AuiPaneInfo reference +NonePaneInfo = AuiPaneInfo() + + +# ---------------------------------------------------------------------------- # + +class AuiDockingGuide(wx.Frame): + """ Base class for L{AuiCenterDockingGuide} and L{AuiSingleDockingGuide}.""" + + def __init__(self, parent, id=wx.ID_ANY, title="", pos=wx.DefaultPosition, + size=wx.DefaultSize, style=wx.FRAME_TOOL_WINDOW | wx.STAY_ON_TOP | + wx.FRAME_NO_TASKBAR | wx.NO_BORDER, name="AuiDockingGuide"): + """ + Default class constructor. Used internally, do not call it in your code! + + :param `parent`: the L{AuiDockingGuide} parent; + :param `id`: the window identifier. It may take a value of -1 to indicate a default value. + :param `title`: the caption to be displayed on the frame's title bar. + :param `pos`: the window position. A value of (-1, -1) indicates a default position, + chosen by either the windowing system or wxPython, depending on platform. + :param `size`: the window size. A value of (-1, -1) indicates a default size, chosen by + either the windowing system or wxPython, depending on platform. + :param `style`: the window style. + :param `name`: the name of the window. This parameter is used to associate a name with the + item, allowing the application user to set Motif resource values for individual windows. + """ + + wx.Frame.__init__(self, parent, id, title, pos, size, style, name=name) + + + def HitTest(self, x, y): + """ + To be overridden by parent classes. + + :param `x`: the `x` mouse position; + :param `y`: the `y` mouse position. + """ + + return 0 + + + def ValidateNotebookDocking(self, valid): + """ + To be overridden by parent classes. + + :param `valid`: whether a pane can be docked on top to another to form an automatic + L{AuiNotebook}. + """ + + return 0 + +# ============================================================================ +# implementation +# ============================================================================ + +# --------------------------------------------------------------------------- +# AuiDockingGuideWindow +# --------------------------------------------------------------------------- + +class AuiDockingGuideWindow(wx.Window): + """ Target class for L{AuiSingleDockingGuide} and L{AuiCenterDockingGuide}. """ + + def __init__(self, parent, rect, direction=0, center=False, useAero=False): + """ + Default class constructor. Used internally, do not call it in your code! + + :param `parent`: the L{AuiDockingGuideWindow} parent; + :param `rect`: the window rect; + :param `direction`: one of ``wx.TOP``, ``wx.BOTTOM``, ``wx.LEFT``, ``wx.RIGHT``, + ``wx.CENTER``; + :param `center`: whether the calling class is a L{AuiCenterDockingGuide}; + :param `useAero`: whether to use the new Aero-style bitmaps or Whidbey-style bitmaps + for the docking guide. + """ + + wx.Window.__init__(self, parent, -1, rect.GetPosition(), rect.GetSize(), wx.NO_BORDER) + + self._direction = direction + self._center = center + self._valid = True + self._useAero = useAero + + self._bmp_unfocus, self._bmp_focus = GetDockingImage(direction, useAero, center) + + self._currentImage = self._bmp_unfocus + self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM) + + self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground) + self.Bind(wx.EVT_PAINT, self.OnPaint) + + + def SetValid(self, valid): + """ + Sets the docking direction as valid or invalid. + + :param `valid`: whether the docking direction is allowed or not. + """ + + self._valid = valid + + + def IsValid(self): + """ Returns whether the docking direction is valid. """ + + return self._valid + + + def OnEraseBackground(self, event): + """ + Handles the ``wx.EVT_ERASE_BACKGROUND`` event for L{AuiDockingGuideWindow}. + + :param `event`: a `wx.EraseEvent` to be processed. + + :note: This is intentionally empty to reduce flickering while drawing. + """ + + pass + + + def DrawBackground(self, dc): + """ + Draws the docking guide background. + + :param `dc`: a `wx.DC` device context object. + """ + + rect = self.GetClientRect() + + dc.SetPen(wx.TRANSPARENT_PEN) + dc.SetBrush(wx.Brush(colourTargetBackground)) + dc.DrawRectangleRect(rect) + + dc.SetPen(wx.Pen(colourTargetBorder)) + + left = rect.GetLeft() + top = rect.GetTop() + right = rect.GetRight() + bottom = rect.GetBottom() + + if self._direction != wx.CENTER: + + if not self._center or self._direction != wx.BOTTOM: + dc.DrawLine(left, top, right+1, top) + if not self._center or self._direction != wx.RIGHT: + dc.DrawLine(left, top, left, bottom+1) + if not self._center or self._direction != wx.LEFT: + dc.DrawLine(right, top, right, bottom+1) + if not self._center or self._direction != wx.TOP: + dc.DrawLine(left, bottom, right+1, bottom) + + dc.SetPen(wx.Pen(colourTargetShade)) + + if self._direction != wx.RIGHT: + dc.DrawLine(left + 1, top + 1, left + 1, bottom) + if self._direction != wx.BOTTOM: + dc.DrawLine(left + 1, top + 1, right, top + 1) + + + def DrawDottedLine(self, dc, point, length, vertical): + """ + Draws a dotted line (not used if the docking guide images are ok). + + :param `dc`: a `wx.DC` device context object; + :param `point`: a `wx.Point` where to start drawing the dotted line; + :param `length`: the length of the dotted line; + :param `vertical`: whether it is a vertical docking guide window or not. + """ + + for i in xrange(0, length, 2): + dc.DrawPoint(point.x, point.y) + if vertical: + point.y += 2 + else: + point.x += 2 + + + def DrawIcon(self, dc): + """ + Draws the docking guide icon (not used if the docking guide images are ok). + + :param `dc`: a `wx.DC` device context object. + """ + + rect = wx.Rect(*self.GetClientRect()) + point = wx.Point() + length = 0 + + rect.Deflate(4, 4) + dc.SetPen(wx.Pen(colourIconBorder)) + dc.SetBrush(wx.Brush(colourIconBackground)) + dc.DrawRectangleRect(rect) + + right1 = rect.GetRight() + 1 + bottom1 = rect.GetBottom() + 1 + + dc.SetPen(wx.Pen(colourIconShadow)) + dc.DrawLine(rect.x + 1, bottom1, right1 + 1, bottom1) + dc.DrawLine(right1, rect.y + 1, right1, bottom1 + 1) + + rect.Deflate(1, 1) + + if self._direction == wx.TOP: + rect.height -= rect.height / 2 + point = rect.GetBottomLeft() + length = rect.width + + elif self._direction == wx.LEFT: + rect.width -= rect.width / 2 + point = rect.GetTopRight() + length = rect.height + + elif self._direction == wx.RIGHT: + rect.x += rect.width / 2 + rect.width -= rect.width / 2 + point = rect.GetTopLeft() + length = rect.height + + elif self._direction == wx.BOTTOM: + rect.y += rect.height / 2 + rect.height -= rect.height / 2 + point = rect.GetTopLeft() + length = rect.width + + elif self._direction == wx.CENTER: + rect.Deflate(1, 1) + point = rect.GetTopLeft() + length = rect.width + + dc.GradientFillLinear(rect, colourIconDockingPart1, + colourIconDockingPart2, self._direction) + + dc.SetPen(wx.Pen(colourIconBorder)) + + if self._direction == wx.CENTER: + self.DrawDottedLine(dc, rect.GetTopLeft(), rect.width, False) + self.DrawDottedLine(dc, rect.GetTopLeft(), rect.height, True) + self.DrawDottedLine(dc, rect.GetBottomLeft(), rect.width, False) + self.DrawDottedLine(dc, rect.GetTopRight(), rect.height, True) + + elif self._direction in [wx.TOP, wx.BOTTOM]: + self.DrawDottedLine(dc, point, length, False) + + else: + self.DrawDottedLine(dc, point, length, True) + + + def DrawArrow(self, dc): + """ + Draws the docking guide arrow icon (not used if the docking guide images are ok). + + :param `dc`: a `wx.DC` device context object. + """ + + rect = self.GetClientRect() + point = wx.Point() + + point.x = (rect.GetLeft() + rect.GetRight()) / 2 + point.y = (rect.GetTop() + rect.GetBottom()) / 2 + rx, ry = wx.Size(), wx.Size() + + if self._direction == wx.TOP: + rx = wx.Size(1, 0) + ry = wx.Size(0, 1) + + elif self._direction == wx.LEFT: + rx = wx.Size(0, -1) + ry = wx.Size(1, 0) + + elif self._direction == wx.RIGHT: + rx = wx.Size(0, 1) + ry = wx.Size(-1, 0) + + elif self._direction == wx.BOTTOM: + rx = wx.Size(-1, 0) + ry = wx.Size(0, -1) + + point.x += ry.x*3 + point.y += ry.y*3 + + dc.SetPen(wx.Pen(colourIconArrow)) + + for i in xrange(4): + pt1 = wx.Point(point.x - rx.x*i, point.y - rx.y*i) + pt2 = wx.Point(point.x + rx.x*(i+1), point.y + rx.y*(i+1)) + dc.DrawLinePoint(pt1, pt2) + point.x += ry.x + point.y += ry.y + + + def OnPaint(self, event): + """ + Handles the ``wx.EVT_PAINT`` event for L{AuiDockingGuideWindow}. + + :param `event`: a `wx.PaintEvent` to be processed. + """ + + dc = wx.AutoBufferedPaintDC(self) + if self._currentImage.IsOk() and self._valid: + dc.DrawBitmap(self._currentImage, 0, 0, True) + else: + self.Draw(dc) + + + def Draw(self, dc): + """ + Draws the whole docking guide window (not used if the docking guide images are ok). + + :param `dc`: a `wx.DC` device context object. + """ + + self.DrawBackground(dc) + + if self._valid: + self.DrawIcon(dc) + self.DrawArrow(dc) + + + def UpdateDockGuide(self, pos): + """ + Updates the docking guide images depending on the mouse position, using focused + images if the mouse is inside the docking guide or unfocused images if it is + outside. + + :param `pos`: a `wx.Point` mouse position. + """ + + inside = self.GetScreenRect().Contains(pos) + + if inside: + image = self._bmp_focus + else: + image = self._bmp_unfocus + + if image != self._currentImage: + self._currentImage = image + self.Refresh() + self.Update() + + +# --------------------------------------------------------------------------- +# AuiSingleDockingGuide +# --------------------------------------------------------------------------- + +class AuiSingleDockingGuide(AuiDockingGuide): + """ A docking guide window for single docking hint (not diamond-shaped HUD). """ + + def __init__(self, parent, direction=0): + """ + Default class constructor. Used internally, do not call it in your code! + + :param `parent`: the L{AuiSingleDockingGuide} parent; + :param `direction`: one of ``wx.TOP``, ``wx.BOTTOM``, ``wx.LEFT``, ``wx.RIGHT``. + """ + + self._direction = direction + + style = wx.FRAME_TOOL_WINDOW | wx.STAY_ON_TOP | \ + wx.FRAME_NO_TASKBAR | wx.NO_BORDER + + # Use of FRAME_SHAPED on wxMac causes the frame to be visible + # breaking the docking hints. + if wx.Platform != '__WXMAC__': + style |= wx.FRAME_SHAPED + + AuiDockingGuide.__init__(self, parent, style=style, name="auiSingleDockTarget") + + self.Hide() + + useAero = GetManager(self.GetParent()).GetAGWFlags() & AUI_MGR_AERO_DOCKING_GUIDES + useWhidbey = GetManager(self.GetParent()).GetAGWFlags() & AUI_MGR_WHIDBEY_DOCKING_GUIDES + + self._useAero = useAero or useWhidbey + self._valid = True + + if useAero: + sizeX, sizeY = aeroguideSizeX, aeroguideSizeY + elif useWhidbey: + sizeX, sizeY = whidbeySizeX, whidbeySizeY + else: + sizeX, sizeY = guideSizeX, guideSizeY + + if direction not in [wx.TOP, wx.BOTTOM]: + sizeX, sizeY = sizeY, sizeX + + if self._useAero: + self.CreateShapesWithStyle(useWhidbey) + + if wx.Platform == "__WXGTK__": + self.Bind(wx.EVT_WINDOW_CREATE, self.SetGuideShape) + else: + self.SetGuideShape() + + self.SetSize(self.region.GetBox().GetSize()) + else: + self.SetSize((sizeX, sizeY)) + + self.rect = wx.Rect(0, 0, sizeX, sizeY) + + if self._useAero: + useAero = (useWhidbey and [2] or [1])[0] + else: + useAero = 0 + + self.target = AuiDockingGuideWindow(self, self.rect, direction, False, useAero) + + + def CreateShapesWithStyle(self, useWhidbey): + """ + Creates the docking guide window shape based on which docking bitmaps are used. + + :param `useWhidbey`: if ``True``, use Whidbey-style bitmaps; if ``False``, use the + Aero-style bitmaps. + """ + + sizeX, sizeY = aeroguideSizeX, aeroguideSizeY + if useWhidbey: + sizeX, sizeY = whidbeySizeX, whidbeySizeY + + if self._direction not in [wx.TOP, wx.BOTTOM]: + sizeX, sizeY = sizeY, sizeX + + useAero = (useWhidbey and [2] or [1])[0] + bmp, dummy = GetDockingImage(self._direction, useAero, False) + region = wx.RegionFromBitmap(bmp) + + self.region = region + + + def AeroMove(self, pos): + """ + Moves the docking window to the new position. Overridden in children classes. + + :param `pos`: the new docking guide position. + """ + + pass + + + def SetGuideShape(self, event=None): + """ + Sets the correct shape for the docking guide window. + + :param `event`: on wxGTK, a `wx.WindowCreateEvent` event to process. + """ + + self.SetShape(self.region) + + if event is not None: + # Skip the event on wxGTK + event.Skip() + wx.CallAfter(wx.SafeYield, self, True) + + + def SetShape(self, region): + """ + If the platform supports it, sets the shape of the window to that depicted by `region`. + The system will not display or respond to any mouse event for the pixels that lie + outside of the region. To reset the window to the normal rectangular shape simply call + L{SetShape} again with an empty region. + + :param `region`: the shape of the frame. + + :note: Overridden for wxMac. + """ + + if wx.Platform == '__WXMAC__': + # HACK so we don't crash when SetShape is called + return + else: + super(AuiSingleDockingGuide, self).SetShape(region) + + + def SetValid(self, valid): + """ + Sets the docking direction as valid or invalid. + + :param `valid`: whether the docking direction is allowed or not. + """ + + self._valid = valid + + + def IsValid(self): + """ Returns whether the docking direction is valid. """ + + return self._valid + + + def UpdateDockGuide(self, pos): + """ + Updates the docking guide images depending on the mouse position, using focused + images if the mouse is inside the docking guide or unfocused images if it is + outside. + + :param `pos`: a `wx.Point` mouse position. + """ + + self.target.UpdateDockGuide(pos) + + + def HitTest(self, x, y): + """ + Checks if the mouse position is inside the target window rect. + + :param `x`: the `x` mouse position; + :param `y`: the `y` mouse position. + """ + + if self.target.GetScreenRect().Contains((x, y)): + return wx.ALL + + return -1 + + +# --------------------------------------------------------------------------- +# AuiCenterDockingGuide +# --------------------------------------------------------------------------- + +class AuiCenterDockingGuide(AuiDockingGuide): + """ A docking guide window for multiple docking hint (diamond-shaped HUD). """ + + def __init__(self, parent): + """ + Default class constructor. + Used internally, do not call it in your code! + + :param `parent`: the L{AuiCenterDockingGuide} parent. + """ + + AuiDockingGuide.__init__(self, parent, style=wx.FRAME_TOOL_WINDOW | wx.STAY_ON_TOP | + wx.FRAME_NO_TASKBAR | wx.NO_BORDER | wx.FRAME_SHAPED, + name="auiCenterDockTarget") + + self.Hide() + + self.CreateShapesWithStyle() + self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM) + + if wx.Platform == "__WXGTK__": + self.Bind(wx.EVT_WINDOW_CREATE, self.SetGuideShape) + else: + self.SetGuideShape() + + self.SetSize(self.region.GetBox().GetSize()) + + self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground) + self.Bind(wx.EVT_PAINT, self.OnPaint) + + + def CreateShapesWithStyle(self): + """ Creates the docking guide window shape based on which docking bitmaps are used. """ + + useAero = (GetManager(self.GetParent()).GetAGWFlags() & AUI_MGR_AERO_DOCKING_GUIDES) != 0 + useWhidbey = (GetManager(self.GetParent()).GetAGWFlags() & AUI_MGR_WHIDBEY_DOCKING_GUIDES) != 0 + + self._useAero = 0 + if useAero: + self._useAero = 1 + elif useWhidbey: + self._useAero = 2 + + if useAero: + sizeX, sizeY = aeroguideSizeX, aeroguideSizeY + elif useWhidbey: + sizeX, sizeY = whidbeySizeX, whidbeySizeY + else: + sizeX, sizeY = guideSizeX, guideSizeY + + rectLeft = wx.Rect(0, sizeY, sizeY, sizeX) + rectTop = wx.Rect(sizeY, 0, sizeX, sizeY) + rectRight = wx.Rect(sizeY+sizeX, sizeY, sizeY, sizeX) + rectBottom = wx.Rect(sizeY, sizeX + sizeY, sizeX, sizeY) + rectCenter = wx.Rect(sizeY, sizeY, sizeX, sizeX) + + if not self._useAero: + + self.targetLeft = AuiDockingGuideWindow(self, rectLeft, wx.LEFT, True, useAero) + self.targetTop = AuiDockingGuideWindow(self, rectTop, wx.TOP, True, useAero) + self.targetRight = AuiDockingGuideWindow(self, rectRight, wx.RIGHT, True, useAero) + self.targetBottom = AuiDockingGuideWindow(self, rectBottom, wx.BOTTOM, True, useAero) + self.targetCenter = AuiDockingGuideWindow(self, rectCenter, wx.CENTER, True, useAero) + + + # top-left diamond + tld = [wx.Point(rectTop.x, rectTop.y+rectTop.height-8), + wx.Point(rectLeft.x+rectLeft.width-8, rectLeft.y), + rectTop.GetBottomLeft()] + # bottom-left diamond + bld = [wx.Point(rectLeft.x+rectLeft.width-8, rectLeft.y+rectLeft.height), + wx.Point(rectBottom.x, rectBottom.y+8), + rectBottom.GetTopLeft()] + # top-right diamond + trd = [wx.Point(rectTop.x+rectTop.width, rectTop.y+rectTop.height-8), + wx.Point(rectRight.x+8, rectRight.y), + rectRight.GetTopLeft()] + # bottom-right diamond + brd = [wx.Point(rectRight.x+8, rectRight.y+rectRight.height), + wx.Point(rectBottom.x+rectBottom.width, rectBottom.y+8), + rectBottom.GetTopRight()] + + self._triangles = [tld[0:2], bld[0:2], + [wx.Point(rectTop.x+rectTop.width-1, rectTop.y+rectTop.height-8), + wx.Point(rectRight.x+7, rectRight.y)], + [wx.Point(rectRight.x+7, rectRight.y+rectRight.height), + wx.Point(rectBottom.x+rectBottom.width-1, rectBottom.y+8)]] + + region = wx.Region() + region.UnionRect(rectLeft) + region.UnionRect(rectTop) + region.UnionRect(rectRight) + region.UnionRect(rectBottom) + region.UnionRect(rectCenter) + region.UnionRegion(wx.RegionFromPoints(tld)) + region.UnionRegion(wx.RegionFromPoints(bld)) + region.UnionRegion(wx.RegionFromPoints(trd)) + region.UnionRegion(wx.RegionFromPoints(brd)) + + elif useAero: + + self._aeroBmp = aero_dock_pane.GetBitmap() + region = wx.RegionFromBitmap(self._aeroBmp) + + self._allAeroBmps = [aero_dock_pane_left.GetBitmap(), aero_dock_pane_top.GetBitmap(), + aero_dock_pane_right.GetBitmap(), aero_dock_pane_bottom.GetBitmap(), + aero_dock_pane_center.GetBitmap(), aero_dock_pane.GetBitmap()] + self._deniedBitmap = aero_denied.GetBitmap() + self._aeroRects = [rectLeft, rectTop, rectRight, rectBottom, rectCenter] + self._valid = True + + elif useWhidbey: + + self._aeroBmp = whidbey_dock_pane.GetBitmap() + region = wx.RegionFromBitmap(self._aeroBmp) + + self._allAeroBmps = [whidbey_dock_pane_left.GetBitmap(), whidbey_dock_pane_top.GetBitmap(), + whidbey_dock_pane_right.GetBitmap(), whidbey_dock_pane_bottom.GetBitmap(), + whidbey_dock_pane_center.GetBitmap(), whidbey_dock_pane.GetBitmap()] + self._deniedBitmap = whidbey_denied.GetBitmap() + self._aeroRects = [rectLeft, rectTop, rectRight, rectBottom, rectCenter] + self._valid = True + + + self.region = region + + + def SetGuideShape(self, event=None): + """ + Sets the correct shape for the docking guide window. + + :param `event`: on wxGTK, a `wx.WindowCreateEvent` event to process. + """ + + self.SetShape(self.region) + + if event is not None: + # Skip the event on wxGTK + event.Skip() + wx.CallAfter(wx.SafeYield, self, True) + + + def UpdateDockGuide(self, pos): + """ + Updates the docking guides images depending on the mouse position, using focused + images if the mouse is inside the docking guide or unfocused images if it is + outside. + + :param `pos`: a `wx.Point` mouse position. + """ + + if not self._useAero: + for target in self.GetChildren(): + target.UpdateDockGuide(pos) + else: + lenRects = len(self._aeroRects) + for indx, rect in enumerate(self._aeroRects): + if rect.Contains(pos): + if self._allAeroBmps[indx] != self._aeroBmp: + if indx < lenRects - 1 or (indx == lenRects - 1 and self._valid): + self._aeroBmp = self._allAeroBmps[indx] + self.Refresh() + else: + self._aeroBmp = self._allAeroBmps[-1] + self.Refresh() + + return + + if self._aeroBmp != self._allAeroBmps[-1]: + self._aeroBmp = self._allAeroBmps[-1] + self.Refresh() + + + def HitTest(self, x, y): + """ + Checks if the mouse position is inside the target windows rect. + + :param `x`: the `x` mouse position; + :param `y`: the `y` mouse position. + """ + + if not self._useAero: + if self.targetLeft.GetScreenRect().Contains((x, y)): + return wx.LEFT + if self.targetTop.GetScreenRect().Contains((x, y)): + return wx.UP + if self.targetRight.GetScreenRect().Contains((x, y)): + return wx.RIGHT + if self.targetBottom.GetScreenRect().Contains((x, y)): + return wx.DOWN + if self.targetCenter.IsValid() and self.targetCenter.GetScreenRect().Contains((x, y)): + return wx.CENTER + else: + constants = [wx.LEFT, wx.UP, wx.RIGHT, wx.DOWN, wx.CENTER] + lenRects = len(self._aeroRects) + for indx, rect in enumerate(self._aeroRects): + if rect.Contains((x, y)): + if indx < lenRects or (indx == lenRects-1 and self._valid): + return constants[indx] + + return -1 + + + def ValidateNotebookDocking(self, valid): + """ + Sets whether a pane can be docked on top of another to create an automatic + L{AuiNotebook}. + + :param `valid`: whether a pane can be docked on top to another to form an automatic + L{AuiNotebook}. + """ + + if not self._useAero: + if self.targetCenter.IsValid() != valid: + self.targetCenter.SetValid(valid) + self.targetCenter.Refresh() + else: + if self._valid != valid: + self._valid = valid + self.Refresh() + + + def AeroMove(self, pos): + """ + Moves the docking guide window to the new position. + + :param `pos`: the new docking guide position. + """ + + if not self._useAero: + return + + useWhidbey = (GetManager(self.GetParent()).GetAGWFlags() & AUI_MGR_WHIDBEY_DOCKING_GUIDES) != 0 + + if useWhidbey: + sizeX, sizeY = whidbeySizeX, whidbeySizeY + else: + sizeX, sizeY = aeroguideSizeX, aeroguideSizeY + + size = self.GetSize() + + leftRect, topRect, rightRect, bottomRect, centerRect = self._aeroRects + thePos = pos + wx.Point((size.x-sizeY)/2, (size.y-sizeX)/2) + + centerRect.SetPosition(thePos) + + leftRect.SetPosition(thePos + wx.Point(-sizeY, 0)) + topRect.SetPosition(thePos + wx.Point(0, -sizeY)) + rightRect.SetPosition(thePos + wx.Point(sizeX, 0)) + bottomRect.SetPosition(thePos + wx.Point(0, sizeX)) + + + def OnEraseBackground(self, event): + """ + Handles the ``wx.EVT_ERASE_BACKGROUND`` event for L{AuiCenterDockingGuide}. + + :param `event`: `wx.EraseEvent` to be processed. + + :note: This is intentionally empty to reduce flickering while drawing. + """ + + pass + + + def OnPaint(self, event): + """ + Handles the ``wx.EVT_PAINT`` event for L{AuiCenterDockingGuide}. + + :param `event`: a `wx.PaintEvent` to be processed. + """ + + dc = wx.AutoBufferedPaintDC(self) + + if self._useAero: + dc.SetBrush(wx.TRANSPARENT_BRUSH) + dc.SetPen(wx.TRANSPARENT_PEN) + else: + dc.SetBrush(wx.Brush(colourTargetBackground)) + dc.SetPen(wx.Pen(colourTargetBorder)) + + rect = self.GetClientRect() + dc.DrawRectangle(rect.x, rect.y, rect.width, rect.height) + + if self._useAero: + dc.DrawBitmap(self._aeroBmp, 0, 0, True) + if not self._valid: + diff = (self._useAero == 2 and [1] or [0])[0] + bmpX, bmpY = self._deniedBitmap.GetWidth(), self._deniedBitmap.GetHeight() + xPos, yPos = (rect.x + (rect.width)/2 - bmpX/2), (rect.y + (rect.height)/2 - bmpY/2) + dc.DrawBitmap(self._deniedBitmap, xPos+1, yPos+diff, True) + + return + + dc.SetPen(wx.Pen(colourTargetBorder, 2)) + for pts in self._triangles: + dc.DrawLinePoint(pts[0], pts[1]) + + +# ---------------------------------------------------------------------------- +# AuiDockingHintWindow +# ---------------------------------------------------------------------------- + +class AuiDockingHintWindow(wx.Frame): + """ The original wxAUI docking window hint. """ + + def __init__(self, parent, id=wx.ID_ANY, title="", pos=wx.DefaultPosition, + size=wx.Size(1, 1), style=wx.FRAME_TOOL_WINDOW | wx.FRAME_FLOAT_ON_PARENT | + wx.FRAME_NO_TASKBAR | wx.NO_BORDER | wx.FRAME_SHAPED, + name="auiHintWindow"): + """ + Default class constructor. Used internally, do not call it in your code! + + :param `parent`: the L{AuiDockingGuide} parent; + :param `id`: the window identifier. It may take a value of -1 to indicate a default value. + :param `title`: the caption to be displayed on the frame's title bar; + :param `pos`: the window position. A value of (-1, -1) indicates a default position, + chosen by either the windowing system or wxPython, depending on platform; + :param `size`: the window size. A value of (-1, -1) indicates a default size, chosen by + either the windowing system or wxPython, depending on platform; + :param `style`: the window style; + :param `name`: the name of the window. This parameter is used to associate a name with the + item, allowing the application user to set Motif resource values for individual windows. + """ + if wx.Platform == '__WXMAC__' and style & wx.FRAME_SHAPED: + # Having the shaped frame causes the frame to not be visible + # with the transparent style hints. + style -= wx.FRAME_SHAPED + + wx.Frame.__init__(self, parent, id, title, pos, size, style, name=name) + + self._blindMode = False + self.SetBackgroundColour(colourHintBackground) + + # Can't set background colour on a frame on wxMac + # so add a panel to set the colour on. + if wx.Platform == '__WXMAC__': + sizer = wx.BoxSizer(wx.HORIZONTAL) + self.panel = wx.Panel(self) + sizer.Add(self.panel, 1, wx.EXPAND) + self.SetSizer(sizer) + self.panel.SetBackgroundColour(colourHintBackground) + + self.Bind(wx.EVT_SIZE, self.OnSize) + + + def MakeVenetianBlinds(self): + """ + Creates the "venetian blind" effect if L{AuiManager} has the ``AUI_MGR_VENETIAN_BLINDS_HINT`` + flag set. + """ + + amount = 128 + size = self.GetClientSize() + region = wx.Region(0, 0, size.x, 1) + + for y in xrange(size.y): + + # Reverse the order of the bottom 4 bits + j = (y & 8 and [1] or [0])[0] | (y & 4 and [2] or [0])[0] | \ + (y & 2 and [4] or [0])[0] | (y & 1 and [8] or [0])[0] + + if 16*j+8 < amount: + region.Union(0, y, size.x, 1) + + self.SetShape(region) + + + def SetBlindMode(self, agwFlags): + """ + Sets whether venetian blinds or transparent hints will be shown as docking hint. + This depends on the L{AuiManager} flags. + + :param `agwFlags`: the L{AuiManager} flags. + """ + + self._blindMode = (agwFlags & AUI_MGR_VENETIAN_BLINDS_HINT) != 0 + + if self._blindMode or not self.CanSetTransparent(): + self.MakeVenetianBlinds() + self.SetTransparent(255) + + else: + self.SetShape(wx.Region()) + if agwFlags & AUI_MGR_HINT_FADE == 0: + self.SetTransparent(80) + else: + self.SetTransparent(0) + + + def SetShape(self, region): + """ + If the platform supports it, sets the shape of the window to that depicted by `region`. + The system will not display or respond to any mouse event for the pixels that lie + outside of the region. To reset the window to the normal rectangular shape simply call + L{SetShape} again with an empty region. + + :param `region`: the shape of the frame (an instance of `wx.Region`). + + :note: Overridden for wxMac. + """ + + if wx.Platform == '__WXMAC__': + # HACK so we don't crash when SetShape is called + return + else: + super(AuiDockingHintWindow, self).SetShape(region) + + + def Show(self, show=True): + """ + Show the hint window. + + :param `show`: whether to show or hide the hint docking window. + """ + + super(AuiDockingHintWindow, self).Show(show) + if wx.Platform == '__WXMAC__': + # Need to manually do layout since its a borderless frame. + self.Layout() + + + def OnSize(self, event): + """ + Handles the ``wx.EVT_SIZE`` event for L{AuiDockingHintWindow}. + + :param `event`: a `wx.SizeEvent` to be processed. + """ + + if self._blindMode or not self.CanSetTransparent(): + self.MakeVenetianBlinds() + + +# ---------------------------------------------------------------------------- # + +# -- AuiFloatingFrame class implementation -- + +class AuiFloatingFrame(wx.MiniFrame): + """ AuiFloatingFrame is the frame class that holds floating panes. """ + + def __init__(self, parent, owner_mgr, pane=None, id=wx.ID_ANY, title="", + style=wx.FRAME_TOOL_WINDOW | wx.FRAME_FLOAT_ON_PARENT | + wx.FRAME_NO_TASKBAR | wx.CLIP_CHILDREN): + """ + Default class constructor. Used internally, do not call it in your code! + + :param `parent`: the L{AuiFloatingFrame} parent; + :param `owner_mgr`: the L{AuiManager} that manages the floating pane; + :param `pane`: the L{AuiPaneInfo} pane that is about to float; + :param `id`: the window identifier. It may take a value of -1 to indicate a default value. + :param `title`: the caption to be displayed on the frame's title bar. + :param `style`: the window style. + """ + + if pane and pane.IsResizeable(): + style += wx.RESIZE_BORDER + if pane: + self._is_toolbar = pane.IsToolbar() + + self._useNativeMiniframes = False + if AuiManager_UseNativeMiniframes(owner_mgr): + # On wxMac we always use native miniframes + self._useNativeMiniframes = True + style += wx.CAPTION + wx.SYSTEM_MENU + if pane.HasCloseButton(): + style += wx.CLOSE_BOX + if pane.HasMaximizeButton(): + style += wx.MAXIMIZE_BOX + if pane.HasMinimizeButton(): + style += wx.MINIMIZE_BOX + + wx.MiniFrame.__init__(self, parent, id, title, pos=pane.floating_pos, + size=pane.floating_size, style=style, name="auiFloatingFrame") + + self._fly_timer = wx.Timer(self, wx.ID_ANY) + self._check_fly_timer = wx.Timer(self, wx.ID_ANY) + + self.Bind(wx.EVT_CLOSE, self.OnClose) + self.Bind(wx.EVT_SIZE, self.OnSize) + self.Bind(wx.EVT_ACTIVATE, self.OnActivate) + self.Bind(wx.EVT_TIMER, self.OnCheckFlyTimer, self._check_fly_timer) + self.Bind(wx.EVT_TIMER, self.OnFlyTimer, self._fly_timer) + self.Bind(EVT_AUI_FIND_MANAGER, self.OnFindManager) + + if self._useNativeMiniframes: + self.Bind(wx.EVT_MOVE, self.OnMoveEvent) + self.Bind(wx.EVT_MOVING, self.OnMoveEvent) + self.Bind(wx.EVT_IDLE, self.OnIdle) + self._useNativeMiniframes = True + self.SetExtraStyle(wx.WS_EX_PROCESS_IDLE) + else: + self.Bind(wx.EVT_MOVE, self.OnMove) + + self._fly = False + self._send_size = True + self._alpha_amount = 255 + + self._owner_mgr = owner_mgr + self._moving = False + self._lastDirection = None + self._transparent = 255 + + self._last_rect = wx.Rect() + self._last2_rect = wx.Rect() + self._last3_rect = wx.Rect() + + self._mgr = AuiManager() + self._mgr.SetManagedWindow(self) + self._mgr.SetArtProvider(owner_mgr.GetArtProvider()) + self._mgr.SetAGWFlags(owner_mgr.GetAGWFlags()) + + + def CopyAttributes(self, pane): + """ + Copies all the attributes of the input `pane` into another L{AuiPaneInfo}. + + :param `pane`: the source L{AuiPaneInfo} from where to copy attributes. + """ + + contained_pane = AuiPaneInfo() + + contained_pane.name = pane.name + contained_pane.caption = pane.caption + contained_pane.window = pane.window + contained_pane.frame = pane.frame + contained_pane.state = pane.state + contained_pane.dock_direction = pane.dock_direction + contained_pane.dock_layer = pane.dock_layer + contained_pane.dock_row = pane.dock_row + contained_pane.dock_pos = pane.dock_pos + contained_pane.best_size = wx.Size(*pane.best_size) + contained_pane.min_size = wx.Size(*pane.min_size) + contained_pane.max_size = wx.Size(*pane.max_size) + contained_pane.floating_pos = wx.Point(*pane.floating_pos) + contained_pane.floating_size = wx.Size(*pane.floating_size) + contained_pane.dock_proportion = pane.dock_proportion + contained_pane.buttons = pane.buttons + contained_pane.rect = wx.Rect(*pane.rect) + contained_pane.icon = pane.icon + contained_pane.notebook_id = pane.notebook_id + contained_pane.transparent = pane.transparent + contained_pane.snapped = pane.snapped + contained_pane.minimize_mode = pane.minimize_mode + + return contained_pane + + + def SetPaneWindow(self, pane): + """ + Sets all the properties of a pane. + + :param `pane`: the L{AuiPaneInfo} to analyze. + """ + + self._is_toolbar = pane.IsToolbar() + self._pane_window = pane.window + + if isinstance(pane.window, auibar.AuiToolBar): + pane.window.SetAuiManager(self._mgr) + + self._pane_window.Reparent(self) + + contained_pane = self.CopyAttributes(pane) + + contained_pane.Dock().Center().Show(). \ + CaptionVisible(False). \ + PaneBorder(False). \ + Layer(0).Row(0).Position(0) + + if not contained_pane.HasGripper() and not self._useNativeMiniframes: + contained_pane.CaptionVisible(True) + + indx = self._owner_mgr._panes.index(pane) + + # Carry over the minimum size + pane_min_size = pane.window.GetMinSize() + + # if the best size is smaller than the min size + # then set the min size to the best size as well + pane_best_size = contained_pane.best_size + if pane_best_size.IsFullySpecified() and (pane_best_size.x < pane_min_size.x or \ + pane_best_size.y < pane_min_size.y): + + pane_min_size = pane_best_size + self._pane_window.SetMinSize(pane_min_size) + + # if the frame window's max size is greater than the min size + # then set the max size to the min size as well + cur_max_size = self.GetMaxSize() + if cur_max_size.IsFullySpecified() and (cur_max_size.x < pane_min_size.x or \ + cur_max_size.y < pane_min_size.y): + self.SetMaxSize(pane_min_size) + + art_provider = self._mgr.GetArtProvider() + caption_size = art_provider.GetMetric(AUI_DOCKART_CAPTION_SIZE) + button_size = art_provider.GetMetric(AUI_DOCKART_PANE_BUTTON_SIZE) + \ + 4*art_provider.GetMetric(AUI_DOCKART_PANE_BORDER_SIZE) + + min_size = pane.window.GetMinSize() + + if min_size.y < caption_size or min_size.x < button_size: + new_x, new_y = min_size.x, min_size.y + if min_size.y < caption_size: + new_y = (pane.IsResizeable() and [2*wx.SystemSettings.GetMetric(wx.SYS_EDGE_Y)+caption_size] or [1])[0] + if min_size.x < button_size: + new_x = (pane.IsResizeable() and [2*wx.SystemSettings.GetMetric(wx.SYS_EDGE_X)+button_size] or [1])[0] + + self.SetMinSize((new_x, new_y)) + else: + self.SetMinSize(min_size) + + self._mgr.AddPane(self._pane_window, contained_pane) + self._mgr.Update() + + if pane.min_size.IsFullySpecified(): + # because SetSizeHints() calls Fit() too (which sets the window + # size to its minimum allowed), we keep the size before calling + # SetSizeHints() and reset it afterwards... + tmp = self.GetSize() + self.GetSizer().SetSizeHints(self) + self.SetSize(tmp) + + self.SetTitle(pane.caption) + + if pane.floating_size != wx.Size(-1, -1): + self.SetSize(pane.floating_size) + else: + size = pane.best_size + if size == wx.Size(-1, -1): + size = pane.min_size + if size == wx.Size(-1, -1): + size = self._pane_window.GetSize() + if self._owner_mgr and pane.HasGripper(): + if pane.HasGripperTop(): + size.y += self._owner_mgr._art.GetMetric(AUI_DOCKART_GRIPPER_SIZE) + else: + size.x += self._owner_mgr._art.GetMetric(AUI_DOCKART_GRIPPER_SIZE) + + if not self._useNativeMiniframes: + size.y += self._owner_mgr._art.GetMetric(AUI_DOCKART_CAPTION_SIZE) + + pane.floating_size = size + + self.SetClientSize(size) + + self._owner_mgr._panes[indx] = pane + + self._fly_step = abs(pane.floating_size.y - \ + (caption_size + 2*wx.SystemSettings.GetMetric(wx.SYS_EDGE_Y)))/10 + + self._floating_size = wx.Size(*self.GetSize()) + + if pane.IsFlyOut(): + self._check_fly_timer.Start(50) + + + def GetOwnerManager(self): + """ Returns the L{AuiManager} that manages the pane. """ + + return self._owner_mgr + + + def OnSize(self, event): + """ + Handles the ``wx.EVT_SIZE`` event for L{AuiFloatingFrame}. + + :param `event`: a `wx.SizeEvent` to be processed. + """ + + if self._owner_mgr and self._send_size: + self._owner_mgr.OnFloatingPaneResized(self._pane_window, event.GetSize()) + + + def OnClose(self, event): + """ + Handles the ``wx.EVT_CLOSE`` event for L{AuiFloatingFrame}. + + :param `event`: a `wx.CloseEvent` to be processed. + """ + + if self._owner_mgr: + self._owner_mgr.OnFloatingPaneClosed(self._pane_window, event) + + if not event.GetVeto(): + self._mgr.DetachPane(self._pane_window) + + if isinstance(self._pane_window, auibar.AuiToolBar): + self._pane_window.SetAuiManager(self._owner_mgr) + + # if we do not do this, then we can crash... + if self._owner_mgr and self._owner_mgr._action_window == self: + self._owner_mgr._action_window = None + + self.Destroy() + + + def OnActivate(self, event): + """ + Handles the ``wx.EVT_ACTIVATE`` event for L{AuiFloatingFrame}. + + :param `event`: a `wx.ActivateEvent` to be processed. + """ + + if self._owner_mgr and event.GetActive(): + self._owner_mgr.OnFloatingPaneActivated(self._pane_window) + + + def OnMove(self, event): + """ + Handles the ``wx.EVT_MOVE`` event for L{AuiFloatingFrame}. + + :param `event`: a `wx.MoveEvent` to be processed. + + :note: This event is not processed on wxMAC or if L{AuiManager} is not using the + ``AUI_MGR_USE_NATIVE_MINIFRAMES`` style. + """ + + if self._owner_mgr: + self._owner_mgr.OnFloatingPaneMoved(self._pane_window, event) + + + def OnMoveEvent(self, event): + """ + Handles the ``wx.EVT_MOVE`` and ``wx.EVT_MOVING`` events for L{AuiFloatingFrame}. + + :param `event`: a `wx.MoveEvent` to be processed. + + :note: This event is only processed on wxMAC or if L{AuiManager} is using the + ``AUI_MGR_USE_NATIVE_MINIFRAMES`` style. + """ + + win_rect = self.GetRect() + + if win_rect == self._last_rect: + return + + # skip the first move event + if self._last_rect.IsEmpty(): + self._last_rect = wx.Rect(*win_rect) + return + + # skip if moving too fast to avoid massive redraws and + # jumping hint windows + if abs(win_rect.x - self._last_rect.x) > 3 or abs(win_rect.y - self._last_rect.y) > 3: + self._last3_rect = wx.Rect(*self._last2_rect) + self._last2_rect = wx.Rect(*self._last_rect) + self._last_rect = wx.Rect(*win_rect) + return + + # prevent frame redocking during resize + if self._last_rect.GetSize() != win_rect.GetSize(): + self._last3_rect = wx.Rect(*self._last2_rect) + self._last2_rect = wx.Rect(*self._last_rect) + self._last_rect = wx.Rect(*win_rect) + return + + self._last3_rect = wx.Rect(*self._last2_rect) + self._last2_rect = wx.Rect(*self._last_rect) + self._last_rect = wx.Rect(*win_rect) + + if _VERSION_STRING < "2.9": + leftDown = wx.GetMouseState().LeftDown() + else: + leftDown = wx.GetMouseState().LeftIsDown() + + if not leftDown: + return + + if not self._moving: + self.OnMoveStart(event) + self._moving = True + + if self._last3_rect.IsEmpty(): + return + + self.OnMoving(event) + + + def OnIdle(self, event): + """ + Handles the ``wx.EVT_IDLE`` event for L{AuiFloatingFrame}. + + :param `event`: a `wx.IdleEvent` event to be processed. + + :note: This event is only processed on wxMAC or if L{AuiManager} is using the + ``AUI_MGR_USE_NATIVE_MINIFRAMES`` style. + """ + + if self._moving: + if _VERSION_STRING < "2.9": + leftDown = wx.GetMouseState().LeftDown() + else: + leftDown = wx.GetMouseState().LeftIsDown() + + if not leftDown: + self._moving = False + self.OnMoveFinished() + else: + event.RequestMore() + + + def OnMoveStart(self, event): + """ + The user has just started moving the floating pane. + + :param `event`: an instance of `wx.MouseEvent`. + + :note: This method is used only on wxMAC or if L{AuiManager} is using the + ``AUI_MGR_USE_NATIVE_MINIFRAMES`` style. + """ + + # notify the owner manager that the pane has started to move + if self._owner_mgr: + if self._owner_mgr._from_move: + return + self._owner_mgr._action_window = self._pane_window + point = wx.GetMousePosition() + action_offset = point - self.GetPosition() + + if self._is_toolbar: + self._owner_mgr._toolbar_action_offset = action_offset + self._owner_mgr.OnMotion_DragToolbarPane(point) + else: + self._owner_mgr._action_offset = action_offset + self._owner_mgr.OnMotion_DragFloatingPane(point) + + + def OnMoving(self, event): + """ + The user is moving the floating pane. + + :param `event`: an instance of `wx.MouseEvent`. + + :note: This method is used only on wxMAC or if L{AuiManager} is using the + ``AUI_MGR_USE_NATIVE_MINIFRAMES`` style. + """ + + # notify the owner manager that the pane is moving + self.OnMoveStart(event) + + + def OnMoveFinished(self): + """ + The user has just finished moving the floating pane. + + :note: This method is used only on wxMAC or if L{AuiManager} is using the + ``AUI_MGR_USE_NATIVE_MINIFRAMES`` style. + """ + + # notify the owner manager that the pane has finished moving + if self._owner_mgr: + self._owner_mgr._action_window = self._pane_window + point = wx.GetMousePosition() + if self._is_toolbar: + self._owner_mgr.OnLeftUp_DragToolbarPane(point) + else: + self._owner_mgr.OnLeftUp_DragFloatingPane(point) + + self._owner_mgr.OnFloatingPaneMoved(self._pane_window, point) + + + def OnCheckFlyTimer(self, event): + """ + Handles the ``wx.EVT_TIMER`` event for L{AuiFloatingFrame}. + + :param `event`: a `wx.TimerEvent` to be processed. + + :note: This is used solely for "fly-out" panes. + """ + + if self._owner_mgr: + pane = self._mgr.GetPane(self._pane_window) + if pane.IsFlyOut(): + if self.IsShownOnScreen(): + self.FlyOut() + + + def OnFindManager(self, event): + """ + Handles the ``EVT_AUI_FIND_MANAGER`` event for L{AuiFloatingFrame}. + + :param `event`: a L{AuiManagerEvent} event to be processed. + """ + + event.SetManager(self._owner_mgr) + + + def FlyOut(self): + """ Starts the flying in and out of a floating pane. """ + + if self._fly_timer.IsRunning(): + return + + if _VERSION_STRING < "2.9": + leftDown = wx.GetMouseState().LeftDown() + else: + leftDown = wx.GetMouseState().LeftIsDown() + + if leftDown: + return + + rect = wx.Rect(*self.GetScreenRect()) + rect.Inflate(10, 10) + + if rect.Contains(wx.GetMousePosition()): + if not self._fly: + return + self._send_size = False + self._fly_timer.Start(5) + else: + if self._fly: + return + self._send_size = False + self._fly_timer.Start(5) + + + def OnFlyTimer(self, event): + """ + Handles the ``wx.EVT_TIMER`` event for L{AuiFloatingFrame}. + + :param `event`: a `wx.TimerEvent` to be processed. + """ + + current_size = self.GetClientSize() + floating_size = wx.Size(*self._owner_mgr.GetPane(self._pane_window).floating_size) + + if floating_size.y == -1: + floating_size = self._floating_size + + if not self._fly: + min_size = self._mgr.GetArtProvider().GetMetric(AUI_DOCKART_CAPTION_SIZE) + + if wx.Platform != "__WXMSW__": + min_size += 2*wx.SystemSettings.GetMetric(wx.SYS_EDGE_Y) + + if current_size.y - self._fly_step <= min_size: + self.SetClientSize((current_size.x, min_size)) + self._fly = True + self._fly_timer.Stop() + self._send_size = True + else: + self.SetClientSize((current_size.x, current_size.y-self._fly_step)) + + else: + if current_size.y + self._fly_step >= floating_size.y: + self.SetClientSize((current_size.x, floating_size.y)) + self._fly = False + self._fly_timer.Stop() + self._send_size = True + else: + self.SetClientSize((current_size.x, current_size.y+self._fly_step)) + + self.Update() + self.Refresh() + + + def FadeOut(self): + """ Actually starts the fading out of the floating pane. """ + + while 1: + self._alpha_amount -= 10 + if self._alpha_amount <= 0: + self._alpha_amount = 255 + return + + self.SetTransparent(self._alpha_amount) + wx.SafeYield() + wx.MilliSleep(15) + + +# -- static utility functions -- + +def DrawResizeHint(dc, rect): + """ + Draws a resize hint while a sash is dragged. + + :param `rect`: a `wx.Rect` rectangle which specifies the sash dimensions. + """ + + if wx.Platform == "__WXMSW__" and wx.App.GetComCtl32Version() >= 600: + if wx.GetOsVersion()[1] > 5: + # Windows Vista + dc.SetPen(wx.Pen("black", 2, wx.SOLID)) + dc.SetBrush(wx.TRANSPARENT_BRUSH) + else: + # Draw the nice XP style splitter + dc.SetPen(wx.TRANSPARENT_PEN) + dc.SetBrush(wx.BLACK_BRUSH) + dc.SetLogicalFunction(wx.INVERT) + dc.DrawRectangleRect(rect) + dc.SetLogicalFunction(wx.COPY) + else: + stipple = PaneCreateStippleBitmap() + brush = wx.BrushFromBitmap(stipple) + dc.SetBrush(brush) + dc.SetPen(wx.TRANSPARENT_PEN) + + dc.SetLogicalFunction(wx.XOR) + dc.DrawRectangleRect(rect) + + +def CopyDocksAndPanes(src_docks, src_panes): + """ + This utility function creates shallow copies of + the dock and pane info. L{AuiDockInfo} usually contain pointers + to L{AuiPaneInfo} classes, thus this function is necessary to reliably + reconstruct that relationship in the new dock info and pane info arrays. + + :param `src_docks`: a list of L{AuiDockInfo} classes; + :param `src_panes`: a list of L{AuiPaneInfo} classes. + """ + + dest_docks = src_docks + dest_panes = src_panes + + for ii in xrange(len(dest_docks)): + dock = dest_docks[ii] + for jj in xrange(len(dock.panes)): + for kk in xrange(len(src_panes)): + if dock.panes[jj] == src_panes[kk]: + dock.panes[jj] = dest_panes[kk] + + return dest_docks, dest_panes + + +def CopyDocksAndPanes2(src_docks, src_panes): + """ + This utility function creates full copies of + the dock and pane info. L{AuiDockInfo} usually contain pointers + to L{AuiPaneInfo} classes, thus this function is necessary to reliably + reconstruct that relationship in the new dock info and pane info arrays. + + :param `src_docks`: a list of L{AuiDockInfo} classes; + :param `src_panes`: a list of L{AuiPaneInfo} classes. + """ + + dest_docks = [] + + for ii in xrange(len(src_docks)): + dest_docks.append(AuiDockInfo()) + dest_docks[ii].dock_direction = src_docks[ii].dock_direction + dest_docks[ii].dock_layer = src_docks[ii].dock_layer + dest_docks[ii].dock_row = src_docks[ii].dock_row + dest_docks[ii].size = src_docks[ii].size + dest_docks[ii].min_size = src_docks[ii].min_size + dest_docks[ii].resizable = src_docks[ii].resizable + dest_docks[ii].fixed = src_docks[ii].fixed + dest_docks[ii].toolbar = src_docks[ii].toolbar + dest_docks[ii].panes = src_docks[ii].panes + dest_docks[ii].rect = wx.Rect(*src_docks[ii].rect) + + dest_panes = [] + + for ii in xrange(len(src_panes)): + dest_panes.append(AuiPaneInfo()) + dest_panes[ii].name = src_panes[ii].name + dest_panes[ii].caption = src_panes[ii].caption + dest_panes[ii].window = src_panes[ii].window + dest_panes[ii].frame = src_panes[ii].frame + dest_panes[ii].state = src_panes[ii].state + dest_panes[ii].dock_direction = src_panes[ii].dock_direction + dest_panes[ii].dock_layer = src_panes[ii].dock_layer + dest_panes[ii].dock_row = src_panes[ii].dock_row + dest_panes[ii].dock_pos = src_panes[ii].dock_pos + dest_panes[ii].best_size = wx.Size(*src_panes[ii].best_size) + dest_panes[ii].min_size = wx.Size(*src_panes[ii].min_size) + dest_panes[ii].max_size = wx.Size(*src_panes[ii].max_size) + dest_panes[ii].floating_pos = wx.Point(*src_panes[ii].floating_pos) + dest_panes[ii].floating_size = wx.Size(*src_panes[ii].floating_size) + dest_panes[ii].dock_proportion = src_panes[ii].dock_proportion + dest_panes[ii].buttons = src_panes[ii].buttons + dest_panes[ii].rect = wx.Rect(*src_panes[ii].rect) + dest_panes[ii].icon = src_panes[ii].icon + dest_panes[ii].notebook_id = src_panes[ii].notebook_id + dest_panes[ii].transparent = src_panes[ii].transparent + dest_panes[ii].snapped = src_panes[ii].snapped + dest_panes[ii].minimize_mode = src_panes[ii].minimize_mode + + for ii in xrange(len(dest_docks)): + dock = dest_docks[ii] + for jj in xrange(len(dock.panes)): + for kk in xrange(len(src_panes)): + if dock.panes[jj] == src_panes[kk]: + dock.panes[jj] = dest_panes[kk] + + dest_docks[ii] = dock + + return dest_docks, dest_panes + + +def GetMaxLayer(docks, dock_direction): + """ + This is an internal function which returns + the highest layer inside the specified dock. + + :param `docks`: a list of L{AuiDockInfo}; + :param `dock_direction`: the L{AuiDockInfo} docking direction to analyze. + """ + + max_layer = 0 + + for dock in docks: + if dock.dock_direction == dock_direction and dock.dock_layer > max_layer and not dock.fixed: + max_layer = dock.dock_layer + + return max_layer + + +def GetMaxRow(panes, dock_direction, dock_layer): + """ + This is an internal function which returns + the highest layer inside the specified dock. + + :param `panes`: a list of L{AuiPaneInfo}; + :param `dock_direction`: the L{AuiPaneInfo} docking direction to analyze; + :param `dock_layer`: the L{AuiPaneInfo} layer to analyze. + """ + + max_row = 0 + + for pane in panes: + if pane.dock_direction == dock_direction and pane.dock_layer == dock_layer and \ + pane.dock_row > max_row: + max_row = pane.dock_row + + return max_row + + +def DoInsertDockLayer(panes, dock_direction, dock_layer): + """ + This is an internal function that inserts a new dock + layer by incrementing all existing dock layer values by one. + + :param `panes`: a list of L{AuiPaneInfo}; + :param `dock_direction`: the L{AuiPaneInfo} docking direction to analyze; + :param `dock_layer`: the L{AuiPaneInfo} layer to analyze. + """ + + for ii in xrange(len(panes)): + pane = panes[ii] + if not pane.IsFloating() and pane.dock_direction == dock_direction and pane.dock_layer >= dock_layer: + pane.dock_layer = pane.dock_layer + 1 + + panes[ii] = pane + + return panes + + +def DoInsertDockRow(panes, dock_direction, dock_layer, dock_row): + """ + This is an internal function that inserts a new dock + row by incrementing all existing dock row values by one. + + :param `panes`: a list of L{AuiPaneInfo}; + :param `dock_direction`: the L{AuiPaneInfo} docking direction to analyze; + :param `dock_layer`: the L{AuiPaneInfo} layer to analyze; + :param `dock_row`: the L{AuiPaneInfo} row to analyze. + """ + + for pane in panes: + if not pane.IsFloating() and pane.dock_direction == dock_direction and \ + pane.dock_layer == dock_layer and pane.dock_row >= dock_row: + pane.dock_row += 1 + + return panes + + +def DoInsertPane(panes, dock_direction, dock_layer, dock_row, dock_pos): + """ + This is an internal function that inserts a new pane + by incrementing all existing dock position values by one. + + :param `panes`: a list of L{AuiPaneInfo}; + :param `dock_direction`: the L{AuiPaneInfo} docking direction to analyze; + :param `dock_layer`: the L{AuiPaneInfo} layer to analyze; + :param `dock_row`: the L{AuiPaneInfo} row to analyze; + :param `dock_pos`: the L{AuiPaneInfo} row to analyze. + """ + + for ii in xrange(len(panes)): + pane = panes[ii] + if not pane.IsFloating() and pane.dock_direction == dock_direction and \ + pane.dock_layer == dock_layer and pane.dock_row == dock_row and \ + pane.dock_pos >= dock_pos: + pane.dock_pos = pane.dock_pos + 1 + + panes[ii] = pane + + return panes + + +def FindDocks(docks, dock_direction, dock_layer=-1, dock_row=-1, reverse=False): + """ + This is an internal function that returns a list of docks which meet + the specified conditions in the parameters and returns a sorted array + (sorted by layer and then row). + + :param `docks`: a list of L{AuiDockInfo}; + :param `dock_direction`: the L{AuiDockInfo} docking direction to analyze; + :param `dock_layer`: the L{AuiDockInfo} layer to analyze; + :param `dock_row`: the L{AuiDockInfo} row to analyze; + """ + + matchDocks = [(d.dock_layer, d.dock_row, d.dock_direction, d) for d in docks if \ + (dock_direction == -1 or dock_direction == d.dock_direction) and \ + ((dock_layer == -1 or dock_layer == d.dock_layer) and \ + (dock_row == -1 or dock_row == d.dock_row))] + + arr = [x[-1] for x in sorted(matchDocks, reverse=reverse)] + + return arr + + +def FindOppositeDocks(docks, dock_direction): + """ + This is an internal function that returns a list of docks + which is related to the opposite direction. + + :param `docks`: a list of L{AuiDockInfo}; + :param `dock_direction`: the L{AuiDockInfo} docking direction to analyze; + """ + + if dock_direction == AUI_DOCK_LEFT: + arr = FindDocks(docks, AUI_DOCK_RIGHT, -1, -1) + elif dock_direction == AUI_DOCK_TOP: + arr = FindDocks(docks, AUI_DOCK_BOTTOM, -1, -1) + elif dock_direction == AUI_DOCK_RIGHT: + arr = FindDocks(docks, AUI_DOCK_LEFT, -1, -1) + elif dock_direction == AUI_DOCK_BOTTOM: + arr = FindDocks(docks, AUI_DOCK_TOP, -1, -1) + + return arr + + +def FindPaneInDock(dock, window): + """ + This method looks up a specified window pointer inside a dock. + If found, the corresponding L{AuiPaneInfo} pointer is returned, otherwise ``None``. + + :param `dock`: a L{AuiDockInfo} structure; + :param `window`: a `wx.Window` derived window (associated to a pane). + """ + + for p in dock.panes: + if p.window == window: + return p + + return None + + +def GetToolBarDockOffsets(docks): + """ + Returns the toolbar dock offsets (top-left and bottom-right). + + :param `docks`: a list of L{AuiDockInfo} to analyze. + """ + + top_left = wx.Size(0, 0) + bottom_right = wx.Size(0, 0) + + for dock in docks: + if dock.toolbar: + dock_direction = dock.dock_direction + if dock_direction == AUI_DOCK_LEFT: + top_left.x += dock.rect.width + bottom_right.x += dock.rect.width + + elif dock_direction == AUI_DOCK_TOP: + top_left.y += dock.rect.height + bottom_right.y += dock.rect.height + + elif dock_direction == AUI_DOCK_RIGHT: + bottom_right.x += dock.rect.width + + elif dock_direction == AUI_DOCK_BOTTOM: + bottom_right.y += dock.rect.height + + return top_left, bottom_right + + +def GetInternalFrameRect(window, docks): + """ + Returns the window rectangle excluding toolbars. + + :param `window`: a `wx.Window` derived window; + :param `docks`: a list of L{AuiDockInfo} structures. + """ + + frameRect = wx.Rect() + + frameRect.SetTopLeft(window.ClientToScreen(window.GetClientAreaOrigin())) + frameRect.SetSize(window.GetClientSize()) + + top_left, bottom_right = GetToolBarDockOffsets(docks) + + # make adjustments for toolbars + frameRect.x += top_left.x + frameRect.y += top_left.y + frameRect.width -= bottom_right.x + frameRect.height -= bottom_right.y + + return frameRect + + +def CheckOutOfWindow(window, pt): + """ + Checks if a point is outside the window rectangle. + + :param `window`: a `wx.Window` derived window; + :param `pt`: a `wx.Point` object. + """ + + auiWindowMargin = 30 + marginRect = wx.Rect(*window.GetClientRect()) + marginRect.Inflate(auiWindowMargin, auiWindowMargin) + + return not marginRect.Contains(pt) + + +def CheckEdgeDrop(window, docks, pt): + """ + Checks on which edge of a window the drop action has taken place. + + :param `window`: a `wx.Window` derived window; + :param `docks`: a list of L{AuiDockInfo} structures; + :param `pt`: a `wx.Point` object. + """ + + screenPt = window.ClientToScreen(pt) + clientSize = window.GetClientSize() + frameRect = GetInternalFrameRect(window, docks) + + if screenPt.y >= frameRect.GetTop() and screenPt.y < frameRect.GetBottom(): + if pt.x < auiLayerInsertOffset and pt.x > auiLayerInsertOffset - auiLayerInsertPixels: + return wx.LEFT + + if pt.x >= clientSize.x - auiLayerInsertOffset and \ + pt.x < clientSize.x - auiLayerInsertOffset + auiLayerInsertPixels: + return wx.RIGHT + + if screenPt.x >= frameRect.GetLeft() and screenPt.x < frameRect.GetRight(): + if pt.y < auiLayerInsertOffset and pt.y > auiLayerInsertOffset - auiLayerInsertPixels: + return wx.TOP + + if pt.y >= clientSize.y - auiLayerInsertOffset and \ + pt.y < clientSize.y - auiLayerInsertOffset + auiLayerInsertPixels: + return wx.BOTTOM + + return -1 + + +def RemovePaneFromDocks(docks, pane, exc=None): + """ + Removes a pane window from all docks + with a possible exception specified by parameter `exc`. + + :param `docks`: a list of L{AuiDockInfo} structures; + :param `pane`: the L{AuiPaneInfo} pane to be removed; + :param `exc`: the possible pane exception. + """ + + for ii in xrange(len(docks)): + d = docks[ii] + if d == exc: + continue + pi = FindPaneInDock(d, pane.window) + if pi: + d.panes.remove(pi) + + docks[ii] = d + + return docks + + +def RenumberDockRows(docks): + """ + Takes a dock and assigns sequential numbers + to existing rows. Basically it takes out the gaps so if a + dock has rows with numbers 0, 2, 5, they will become 0, 1, 2. + + :param `docks`: a list of L{AuiDockInfo} structures. + """ + + for ii in xrange(len(docks)): + dock = docks[ii] + dock.dock_row = ii + for jj in xrange(len(dock.panes)): + dock.panes[jj].dock_row = ii + + docks[ii] = dock + + return docks + + +def SetActivePane(panes, active_pane): + """ + Sets the active pane, as well as cycles through + every other pane and makes sure that all others' active flags + are turned off. + + :param `panes`: a list of L{AuiPaneInfo} structures; + :param `active_pane`: the pane to be made active (if found). + """ + + for pane in panes: + pane.state &= ~AuiPaneInfo.optionActive + + for pane in panes: + if pane.window == active_pane and not pane.IsNotebookPage(): + pane.state |= AuiPaneInfo.optionActive + return True, panes + + return False, panes + + +def ShowDockingGuides(guides, show): + """ + Shows or hide the docking guide windows. + + :param `guides`: a list of L{AuiDockingGuideInfo} classes; + :param `show`: whether to show or hide the docking guide windows. + """ + + for target in guides: + + if show and not target.host.IsShown(): + target.host.Show() + target.host.Update() + + elif not show and target.host.IsShown(): + target.host.Hide() + + +def RefreshDockingGuides(guides): + """ + Refreshes the docking guide windows. + + :param `guides`: a list of L{AuiDockingGuideInfo} classes; + """ + + for target in guides: + if target.host.IsShown(): + target.host.Refresh() + + +def PaneSortFunc(p1, p2): + """ + This function is used to sort panes by dock position. + + :param `p1`: a L{AuiPaneInfo} instance; + :param `p2`: another L{AuiPaneInfo} instance. + """ + + return (p1.dock_pos < p2.dock_pos and [-1] or [1])[0] + + +def GetNotebookRoot(panes, notebook_id): + """ + Returns the L{AuiPaneInfo} which has the specified `notebook_id`. + + :param `panes`: a list of L{AuiPaneInfo} instances; + :param `notebook_id`: the target notebook id. + """ + + for paneInfo in panes: + if paneInfo.IsNotebookControl() and paneInfo.notebook_id == notebook_id: + return paneInfo + + return None + + +def EscapeDelimiters(s): + """ + Changes ``;`` into ``\`` and ``|`` into ``\|`` in the input string. + + :param `s`: the string to be analyzed. + + :note: This is an internal functions which is used for saving perspectives. + """ + + result = s.replace(";", "\\") + result = result.replace("|", "|\\") + + return result + + +def IsDifferentDockingPosition(pane1, pane2): + """ + Returns whether `pane1` and `pane2` are in a different docking position + based on pane status, docking direction, docking layer and docking row. + + :param `pane1`: a L{AuiPaneInfo} instance; + :param `pane2`: another L{AuiPaneInfo} instance. + """ + + return pane1.IsFloating() != pane2.IsFloating() or \ + pane1.dock_direction != pane2.dock_direction or \ + pane1.dock_layer != pane2.dock_layer or \ + pane1.dock_row != pane2.dock_row + + +# Convenience function +def AuiManager_HasLiveResize(manager): + """ + Static function which returns if the input `manager` should have "live resize" + behaviour. + + :param `manager`: an instance of L{AuiManager}. + + :note: This method always returns ``True`` on wxMac as this platform doesn't have + the ability to use `wx.ScreenDC` to draw sashes. + """ + + # With Core Graphics on Mac, it's not possible to show sash feedback, + # so we'll always use live update instead. + + if wx.Platform == "__WXMAC__": + return True + else: + return (manager.GetAGWFlags() & AUI_MGR_LIVE_RESIZE) == AUI_MGR_LIVE_RESIZE + + +# Convenience function +def AuiManager_UseNativeMiniframes(manager): + """ + Static function which returns if the input `manager` should use native `wx.MiniFrame` as + floating panes. + + :param `manager`: an instance of L{AuiManager}. + + :note: This method always returns ``True`` on wxMac as this platform doesn't have + the ability to use custom drawn miniframes. + """ + + # With Core Graphics on Mac, it's not possible to show sash feedback, + # so we'll always use live update instead. + + if wx.Platform == "__WXMAC__": + return True + else: + return (manager.GetAGWFlags() & AUI_MGR_USE_NATIVE_MINIFRAMES) == AUI_MGR_USE_NATIVE_MINIFRAMES + + +def GetManager(window): + """ + This function will return the aui manager for a given window. + + :param `window`: this parameter should be any child window or grand-child + window (and so on) of the frame/window managed by L{AuiManager}. The window + does not need to be managed by the manager itself, nor does it even need + to be a child or sub-child of a managed window. It must however be inside + the window hierarchy underneath the managed window. + """ + + if not isinstance(wx.GetTopLevelParent(window), AuiFloatingFrame): + if isinstance(window, auibar.AuiToolBar): + return window.GetAuiManager() + + evt = AuiManagerEvent(wxEVT_AUI_FIND_MANAGER) + evt.SetManager(None) + evt.ResumePropagation(wx.EVENT_PROPAGATE_MAX) + + if not window.GetEventHandler().ProcessEvent(evt): + return None + + return evt.GetManager() + + +# ---------------------------------------------------------------------------- # + +class AuiManager(wx.EvtHandler): + """ + AuiManager manages the panes associated with it for a particular `wx.Frame`, + using a pane's L{AuiPaneInfo} information to determine each pane's docking and + floating behavior. L{AuiManager} uses wxPython's sizer mechanism to plan the + layout of each frame. It uses a replaceable dock art class to do all drawing, + so all drawing is localized in one area, and may be customized depending on an + applications' specific needs. + + L{AuiManager} works as follows: the programmer adds panes to the class, or makes + changes to existing pane properties (dock position, floating state, show state, etc...). + To apply these changes, the L{AuiManager.Update} function is called. This batch + processing can be used to avoid flicker, by modifying more than one pane at a time, + and then "committing" all of the changes at once by calling `Update()`. + + Panes can be added quite easily:: + + text1 = wx.TextCtrl(self, -1) + text2 = wx.TextCtrl(self, -1) + self._mgr.AddPane(text1, AuiPaneInfo().Left().Caption("Pane Number One")) + self._mgr.AddPane(text2, AuiPaneInfo().Bottom().Caption("Pane Number Two")) + + self._mgr.Update() + + + Later on, the positions can be modified easily. The following will float an + existing pane in a tool window:: + + self._mgr.GetPane(text1).Float() + + + **Layers, Rows and Directions, Positions:** + + Inside AUI, the docking layout is figured out by checking several pane parameters. + Four of these are important for determining where a pane will end up. + + **Direction** - Each docked pane has a direction, `Top`, `Bottom`, `Left`, `Right`, or `Center`. + This is fairly self-explanatory. The pane will be placed in the location specified + by this variable. + + **Position** - More than one pane can be placed inside of a "dock". Imagine two panes + being docked on the left side of a window. One pane can be placed over another. + In proportionally managed docks, the pane position indicates it's sequential position, + starting with zero. So, in our scenario with two panes docked on the left side, the + top pane in the dock would have position 0, and the second one would occupy position 1. + + **Row** - A row can allow for two docks to be placed next to each other. One of the most + common places for this to happen is in the toolbar. Multiple toolbar rows are allowed, + the first row being in row 0, and the second in row 1. Rows can also be used on + vertically docked panes. + + **Layer** - A layer is akin to an onion. Layer 0 is the very center of the managed pane. + Thus, if a pane is in layer 0, it will be closest to the center window (also sometimes + known as the "content window"). Increasing layers "swallow up" all layers of a lower + value. This can look very similar to multiple rows, but is different because all panes + in a lower level yield to panes in higher levels. The best way to understand layers + is by running the AUI sample (`AUI.py`). + """ + + def __init__(self, managed_window=None, agwFlags=None): + """ + Default class constructor. + + :param `managed_window`: specifies the window which should be managed; + :param `agwFlags`: specifies options which allow the frame management behavior to be + modified. `agwFlags` can be a combination of the following style bits: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_MGR_ALLOW_FLOATING`` Allow floating of panes + ``AUI_MGR_ALLOW_ACTIVE_PANE`` If a pane becomes active, "highlight" it in the interface + ``AUI_MGR_TRANSPARENT_DRAG`` If the platform supports it, set transparency on a floating pane while it is dragged by the user + ``AUI_MGR_TRANSPARENT_HINT`` If the platform supports it, show a transparent hint window when the user is about to dock a floating pane + ``AUI_MGR_VENETIAN_BLINDS_HINT`` Show a "venetian blind" effect when the user is about to dock a floating pane + ``AUI_MGR_RECTANGLE_HINT`` Show a rectangle hint effect when the user is about to dock a floating pane + ``AUI_MGR_HINT_FADE`` If the platform supports it, the hint window will fade in and out + ``AUI_MGR_NO_VENETIAN_BLINDS_FADE`` Disables the "venetian blind" fade in and out + ``AUI_MGR_LIVE_RESIZE`` Live resize when the user drag a sash + ``AUI_MGR_ANIMATE_FRAMES`` Fade-out floating panes when they are closed (all platforms which support frames transparency) and show a moving rectangle when they are docked (Windows < Vista and GTK only) + ``AUI_MGR_AERO_DOCKING_GUIDES`` Use the new Aero-style bitmaps as docking guides + ``AUI_MGR_PREVIEW_MINIMIZED_PANES`` Slide in and out minimized panes to preview them + ``AUI_MGR_WHIDBEY_DOCKING_GUIDES`` Use the new Whidbey-style bitmaps as docking guides + ``AUI_MGR_SMOOTH_DOCKING`` Performs a "smooth" docking of panes (a la PyQT) + ``AUI_MGR_USE_NATIVE_MINIFRAMES`` Use miniframes with native caption bar as floating panes instead or custom drawn caption bars (forced on wxMac) + ``AUI_MGR_AUTONB_NO_CAPTION`` Panes that merge into an automatic notebook will not have the pane caption visible + ==================================== ================================== + + Default value for `agwFlags` is: + ``AUI_MGR_DEFAULT`` = ``AUI_MGR_ALLOW_FLOATING`` | ``AUI_MGR_TRANSPARENT_HINT`` | ``AUI_MGR_HINT_FADE`` | ``AUI_MGR_NO_VENETIAN_BLINDS_FADE`` + + :note: If using the ``AUI_MGR_USE_NATIVE_MINIFRAMES``, double-clicking on a + floating pane caption will not re-dock the pane, but simply maximize it (if + L{AuiPaneInfo.MaximizeButton} has been set to ``True``) or do nothing. + """ + + wx.EvtHandler.__init__(self) + + self._action = actionNone + self._action_window = None + self._hover_button = None + self._art = dockart.AuiDefaultDockArt() + self._hint_window = None + self._active_pane = None + self._has_maximized = False + self._has_minimized = False + + self._frame = None + self._dock_constraint_x = 0.3 + self._dock_constraint_y = 0.3 + self._reserved = None + + self._panes = [] + self._docks = [] + self._uiparts = [] + + self._guides = [] + self._notebooks = [] + + self._masterManager = None + self._currentDragItem = -1 + self._lastknowndocks = {} + + self._hint_fadetimer = wx.Timer(self, wx.ID_ANY) + self._hint_fademax = 50 + self._last_hint = wx.Rect() + + self._from_move = False + self._last_rect = wx.Rect() + + if agwFlags is None: + agwFlags = AUI_MGR_DEFAULT + + self._agwFlags = agwFlags + self._is_docked = (False, wx.RIGHT, wx.TOP, 0) + self._snap_limits = (15, 15) + + if wx.Platform == "__WXMSW__": + self._animation_step = 30.0 + else: + self._animation_step = 5.0 + + self._hint_rect = wx.Rect() + + self._preview_timer = wx.Timer(self, wx.ID_ANY) + self._sliding_frame = None + + self._autoNBTabArt = tabart.AuiDefaultTabArt() + self._autoNBStyle = AUI_NB_DEFAULT_STYLE | AUI_NB_BOTTOM | \ + AUI_NB_SUB_NOTEBOOK | AUI_NB_TAB_EXTERNAL_MOVE + self._autoNBStyle -= AUI_NB_DRAW_DND_TAB + + if managed_window: + self.SetManagedWindow(managed_window) + + self.Bind(wx.EVT_PAINT, self.OnPaint) + self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground) + self.Bind(wx.EVT_SIZE, self.OnSize) + self.Bind(wx.EVT_SET_CURSOR, self.OnSetCursor) + self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown) + self.Bind(wx.EVT_LEFT_DCLICK, self.OnLeftDClick) + self.Bind(wx.EVT_LEFT_UP, self.OnLeftUp) + self.Bind(wx.EVT_MOTION, self.OnMotion) + self.Bind(wx.EVT_LEAVE_WINDOW, self.OnLeaveWindow) + self.Bind(wx.EVT_CHILD_FOCUS, self.OnChildFocus) + self.Bind(wx.EVT_MOUSE_CAPTURE_LOST, self.OnCaptureLost) + self.Bind(wx.EVT_TIMER, self.OnHintFadeTimer, self._hint_fadetimer) + self.Bind(wx.EVT_TIMER, self.SlideIn, self._preview_timer) + + self.Bind(wx.EVT_MOVE, self.OnMove) + self.Bind(wx.EVT_SYS_COLOUR_CHANGED, self.OnSysColourChanged) + + self.Bind(EVT_AUI_PANE_BUTTON, self.OnPaneButton) + self.Bind(EVT_AUI_RENDER, self.OnRender) + self.Bind(EVT_AUI_FIND_MANAGER, self.OnFindManager) + self.Bind(EVT_AUI_PANE_MIN_RESTORE, self.OnRestoreMinimizedPane) + self.Bind(EVT_AUI_PANE_DOCKED, self.OnPaneDocked) + + self.Bind(auibook.EVT_AUINOTEBOOK_BEGIN_DRAG, self.OnTabBeginDrag) + self.Bind(auibook.EVT_AUINOTEBOOK_PAGE_CLOSE, self.OnTabPageClose) + self.Bind(auibook.EVT_AUINOTEBOOK_PAGE_CHANGED, self.OnTabSelected) + + + def CreateFloatingFrame(self, parent, pane_info): + """ + Creates a floating frame for the windows. + + :param `parent`: the floating frame parent; + :param `pane_info`: the L{AuiPaneInfo} class with all the pane's information. + """ + + return AuiFloatingFrame(parent, self, pane_info) + + + def CanDockPanel(self, p): + """ + Returns whether a pane can be docked or not. + + :param `p`: the L{AuiPaneInfo} class with all the pane's information. + """ + + # is the pane dockable? + if not p.IsDockable(): + return False + + # if a key modifier is pressed while dragging the frame, + # don't dock the window + return not (wx.GetKeyState(wx.WXK_CONTROL) or wx.GetKeyState(wx.WXK_ALT)) + + + def GetPaneByWidget(self, window): + """ + This version of L{GetPane} looks up a pane based on a + 'pane window'. + + :param `window`: a `wx.Window` derived window. + + :see: L{GetPane} + """ + + for p in self._panes: + if p.window == window: + return p + + return NonePaneInfo + + + def GetPaneByName(self, name): + """ + This version of L{GetPane} looks up a pane based on a + 'pane name'. + + :param `name`: the pane name. + + :see: L{GetPane} + """ + + for p in self._panes: + if p.name == name: + return p + + return NonePaneInfo + + + def GetPane(self, item): + """ + Looks up a L{AuiPaneInfo} structure based + on the supplied window pointer. Upon failure, L{GetPane} + returns an empty L{AuiPaneInfo}, a condition which can be checked + by calling L{AuiPaneInfo.IsOk}. + + The pane info's structure may then be modified. Once a pane's + info is modified, L{Update} must be called to + realize the changes in the UI. + + :param `item`: either a pane name or a `wx.Window`. + """ + + if isinstance(item, basestring): + return self.GetPaneByName(item) + else: + return self.GetPaneByWidget(item) + + + def GetAllPanes(self): + """ Returns a reference to all the pane info structures. """ + + return self._panes + + + def ShowPane(self, window, show): + """ + Shows or hides a pane based on the window passed as input. + + :param `window`: a `wx.Window` derived window; + :param `show`: ``True`` to show the pane, ``False`` otherwise. + """ + + p = self.GetPane(window) + + if p.IsOk(): + if p.IsNotebookPage(): + if show: + + notebook = self._notebooks[p.notebook_id] + id = notebook.GetPageIndex(p.window) + if id >= 0: + notebook.SetSelection(id) + self.ShowPane(notebook, True) + + else: + p.Show(show) + + if p.frame: + p.frame.Raise() + + self.Update() + + + def HitTest(self, x, y): + """ + This is an internal function which determines + which UI item the specified coordinates are over. + + :param `x`: specifies a x position in client coordinates; + :param `y`: specifies a y position in client coordinates. + """ + + result = None + + for item in self._uiparts: + # we are not interested in typeDock, because this space + # isn't used to draw anything, just for measurements + # besides, the entire dock area is covered with other + # rectangles, which we are interested in. + if item.type == AuiDockUIPart.typeDock: + continue + + # if we already have a hit on a more specific item, we are not + # interested in a pane hit. If, however, we don't already have + # a hit, returning a pane hit is necessary for some operations + if item.type in [AuiDockUIPart.typePane, AuiDockUIPart.typePaneBorder] and result: + continue + + # if the point is inside the rectangle, we have a hit + if item.rect.Contains((x, y)): + result = item + + return result + + + def PaneHitTest(self, panes, pt): + """ + Similar to L{HitTest}, but it checks in which L{AuiPaneInfo} rectangle the + input point belongs to. + + :param `panes`: a list of L{AuiPaneInfo} instances; + :param `pt`: a `wx.Point` object. + """ + + for paneInfo in panes: + if paneInfo.IsDocked() and paneInfo.IsShown() and paneInfo.rect.Contains(pt): + return paneInfo + + return NonePaneInfo + + + # SetAGWFlags() and GetAGWFlags() allow the owner to set various + # options which are global to AuiManager + + def SetAGWFlags(self, agwFlags): + """ + This method is used to specify L{AuiManager}'s settings flags. + + :param `agwFlags`: specifies options which allow the frame management behavior + to be modified. `agwFlags` can be one of the following style bits: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_MGR_ALLOW_FLOATING`` Allow floating of panes + ``AUI_MGR_ALLOW_ACTIVE_PANE`` If a pane becomes active, "highlight" it in the interface + ``AUI_MGR_TRANSPARENT_DRAG`` If the platform supports it, set transparency on a floating pane while it is dragged by the user + ``AUI_MGR_TRANSPARENT_HINT`` If the platform supports it, show a transparent hint window when the user is about to dock a floating pane + ``AUI_MGR_VENETIAN_BLINDS_HINT`` Show a "venetian blind" effect when the user is about to dock a floating pane + ``AUI_MGR_RECTANGLE_HINT`` Show a rectangle hint effect when the user is about to dock a floating pane + ``AUI_MGR_HINT_FADE`` If the platform supports it, the hint window will fade in and out + ``AUI_MGR_NO_VENETIAN_BLINDS_FADE`` Disables the "venetian blind" fade in and out + ``AUI_MGR_LIVE_RESIZE`` Live resize when the user drag a sash + ``AUI_MGR_ANIMATE_FRAMES`` Fade-out floating panes when they are closed (all platforms which support frames transparency) and show a moving rectangle when they are docked (Windows < Vista and GTK only) + ``AUI_MGR_AERO_DOCKING_GUIDES`` Use the new Aero-style bitmaps as docking guides + ``AUI_MGR_PREVIEW_MINIMIZED_PANES`` Slide in and out minimized panes to preview them + ``AUI_MGR_WHIDBEY_DOCKING_GUIDES`` Use the new Whidbey-style bitmaps as docking guides + ``AUI_MGR_SMOOTH_DOCKING`` Performs a "smooth" docking of panes (a la PyQT) + ``AUI_MGR_USE_NATIVE_MINIFRAMES`` Use miniframes with native caption bar as floating panes instead or custom drawn caption bars (forced on wxMac) + ``AUI_MGR_AUTONB_NO_CAPTION`` Panes that merge into an automatic notebook will not have the pane caption visible + ==================================== ================================== + + :note: If using the ``AUI_MGR_USE_NATIVE_MINIFRAMES``, double-clicking on a + floating pane caption will not re-dock the pane, but simply maximize it (if + L{AuiPaneInfo.MaximizeButton} has been set to ``True``) or do nothing. + + """ + + self._agwFlags = agwFlags + + if len(self._guides) > 0: + self.CreateGuideWindows() + + if self._hint_window and agwFlags & AUI_MGR_RECTANGLE_HINT == 0: + self.CreateHintWindow() + + + def GetAGWFlags(self): + """ + Returns the current manager's flags. + + :see: L{SetAGWFlags} for a list of possible L{AuiManager} flags. + """ + + return self._agwFlags + + + def SetManagedWindow(self, managed_window): + """ + Called to specify the frame or window which is to be managed by L{AuiManager}. + Frame management is not restricted to just frames. Child windows or custom + controls are also allowed. + + :param `managed_window`: specifies the window which should be managed by + the AUI manager. + """ + + if not managed_window: + raise Exception("Specified managed window must be non-null. ") + + self._frame = managed_window + self._frame.PushEventHandler(self) + + # if the owner is going to manage an MDI parent frame, + # we need to add the MDI client window as the default + # center pane + + if isinstance(self._frame, wx.MDIParentFrame): + mdi_frame = self._frame + client_window = mdi_frame.GetClientWindow() + + if not client_window: + raise Exception("Client window is None!") + + self.AddPane(client_window, AuiPaneInfo().Name("mdiclient"). + CenterPane().PaneBorder(False)) + + elif isinstance(self._frame, tabmdi.AuiMDIParentFrame): + + mdi_frame = self._frame + client_window = mdi_frame.GetClientWindow() + + if not client_window: + raise Exception("Client window is None!") + + self.AddPane(client_window, AuiPaneInfo().Name("mdiclient"). + CenterPane().PaneBorder(False)) + + + def GetManagedWindow(self): + """ Returns the window being managed by L{AuiManager}. """ + + return self._frame + + + def SetFrame(self, managed_window): + """ + Called to specify the frame or window which is to be managed by L{AuiManager}. + Frame management is not restricted to just frames. Child windows or custom + controls are also allowed. + + :param `managed_window`: specifies the window which should be managed by + the AUI manager. + + :warning: This method is now deprecated, use L{SetManagedWindow} instead. + """ + + DeprecationWarning("This method is deprecated, use SetManagedWindow instead.") + return self.SetManagedWindow(managed_window) + + + def GetFrame(self): + """ + Returns the window being managed by L{AuiManager}. + + :warning: This method is now deprecated, use L{GetManagedWindow} instead. + """ + + DeprecationWarning("This method is deprecated, use GetManagedWindow instead.") + return self._frame + + + def CreateGuideWindows(self): + """ Creates the VS2005 HUD guide windows. """ + + self.DestroyGuideWindows() + + self._guides.append(AuiDockingGuideInfo().Left(). + Host(AuiSingleDockingGuide(self._frame, wx.LEFT))) + self._guides.append(AuiDockingGuideInfo().Top(). + Host(AuiSingleDockingGuide(self._frame, wx.TOP))) + self._guides.append(AuiDockingGuideInfo().Right(). + Host(AuiSingleDockingGuide(self._frame, wx.RIGHT))) + self._guides.append(AuiDockingGuideInfo().Bottom(). + Host(AuiSingleDockingGuide(self._frame, wx.BOTTOM))) + self._guides.append(AuiDockingGuideInfo().Centre(). + Host(AuiCenterDockingGuide(self._frame))) + + + def DestroyGuideWindows(self): + """ Destroys the VS2005 HUD guide windows. """ + + for guide in self._guides: + if guide.host: + guide.host.Destroy() + + self._guides = [] + + + def CreateHintWindow(self): + """ Creates the standard wxAUI hint window. """ + + self.DestroyHintWindow() + + self._hint_window = AuiDockingHintWindow(self._frame) + self._hint_window.SetBlindMode(self._agwFlags) + + + def DestroyHintWindow(self): + """ Destroys the standard wxAUI hint window. """ + + if self._hint_window: + + self._hint_window.Destroy() + self._hint_window = None + + + def UnInit(self): + """ + Uninitializes the framework and should be called before a managed frame or + window is destroyed. L{UnInit} is usually called in the managed `wx.Frame`/`wx.Window` + destructor. + + It is necessary to call this function before the managed frame or window is + destroyed, otherwise the manager cannot remove its custom event handlers + from a window. + """ + + if self._frame: + self._frame.RemoveEventHandler(self) + + + def GetArtProvider(self): + """ Returns the current art provider being used. """ + + return self._art + + + def ProcessMgrEvent(self, event): + """ + Process the AUI events sent to the manager. + + :param `event`: the event to process, an instance of L{AuiManagerEvent}. + """ + + # first, give the owner frame a chance to override + if self._frame: + if self._frame.GetEventHandler().ProcessEvent(event): + return + + self.ProcessEvent(event) + + + def FireEvent(self, evtType, pane, canVeto=False): + """ + Fires one of the ``EVT_AUI_PANE_FLOATED``/``FLOATING``/``DOCKING``/``DOCKED``/``ACTIVATED`` event. + + :param `evtType`: one of the aforementioned events; + :param `pane`: the L{AuiPaneInfo} instance associated to this event; + :param `canVeto`: whether the event can be vetoed or not. + """ + + event = AuiManagerEvent(evtType) + event.SetPane(pane) + event.SetCanVeto(canVeto) + self.ProcessMgrEvent(event) + + return event + + + def CanUseModernDockArt(self): + """ + Returns whether L{ModernDockArt} can be used (Windows XP / Vista / 7 only, + requires Mark Hammonds's `pywin32` package). + """ + + if not _winxptheme: + return False + + # Get the size of a small close button (themed) + hwnd = self._frame.GetHandle() + hTheme = winxptheme.OpenThemeData(hwnd, "Window") + + if not hTheme: + return False + + return True + + + def SetArtProvider(self, art_provider): + """ + Instructs L{AuiManager} to use art provider specified by the parameter + `art_provider` for all drawing calls. This allows plugable look-and-feel + features. + + :param `art_provider`: a AUI dock art provider. + + :note: The previous art provider object, if any, will be deleted by L{AuiManager}. + """ + + # delete the last art provider, if any + del self._art + + # assign the new art provider + self._art = art_provider + + for pane in self.GetAllPanes(): + if pane.IsFloating() and pane.frame: + pane.frame._mgr.SetArtProvider(art_provider) + pane.frame._mgr.Update() + + + def AddPane(self, window, arg1=None, arg2=None, target=None): + """ + Tells the frame manager to start managing a child window. There + are four versions of this function. The first verison allows the full spectrum + of pane parameter possibilities (L{AddPane1}). The second version is used for + simpler user interfaces which do not require as much configuration (L{AddPane2}). + The L{AddPane3} version allows a drop position to be specified, which will determine + where the pane will be added. The L{AddPane4} version allows to turn the target + L{AuiPaneInfo} pane into a notebook and the added pane into a page. + + In wxPython, simply call L{AddPane}. + + :param `window`: the child window to manage; + :param `arg1`: a L{AuiPaneInfo} or an integer value (direction); + :param `arg2`: a L{AuiPaneInfo} or a `wx.Point` (drop position); + :param `target`: a L{AuiPaneInfo} to be turned into a notebook + and new pane added to it as a page. (additionally, target can be any pane in + an existing notebook) + """ + + if target in self._panes: + return self.AddPane4(window, arg1, target) + + if type(arg1) == type(1): + # This Is Addpane2 + if arg1 is None: + arg1 = wx.LEFT + if arg2 is None: + arg2 = "" + return self.AddPane2(window, arg1, arg2) + else: + if isinstance(arg2, wx.Point): + return self.AddPane3(window, arg1, arg2) + else: + return self.AddPane1(window, arg1) + + + def AddPane1(self, window, pane_info): + """ See comments on L{AddPane}. """ + + # check if the pane has a valid window + if not window: + return False + + # check if the pane already exists + if self.GetPane(pane_info.window).IsOk(): + return False + + # check if the pane name already exists, this could reveal a + # bug in the library user's application + already_exists = False + if pane_info.name != "" and self.GetPane(pane_info.name).IsOk(): + warnings.warn("A pane with the name '%s' already exists in the manager!"%pane_info.name) + already_exists = True + + # if the new pane is docked then we should undo maximize + if pane_info.IsDocked(): + self.RestoreMaximizedPane() + + self._panes.append(pane_info) + pinfo = self._panes[-1] + + # set the pane window + pinfo.window = window + + # if the pane's name identifier is blank, create a random string + if pinfo.name == "" or already_exists: + pinfo.name = ("%s%08x%08x%08x")%(pinfo.window.GetName(), time.time(), + time.clock(), len(self._panes)) + + # set initial proportion (if not already set) + if pinfo.dock_proportion == 0: + pinfo.dock_proportion = 100000 + + floating = isinstance(self._frame, AuiFloatingFrame) + + pinfo.buttons = [] + + if not floating and pinfo.HasMinimizeButton(): + button = AuiPaneButton(AUI_BUTTON_MINIMIZE) + pinfo.buttons.append(button) + + if not floating and pinfo.HasMaximizeButton(): + button = AuiPaneButton(AUI_BUTTON_MAXIMIZE_RESTORE) + pinfo.buttons.append(button) + + if not floating and pinfo.HasPinButton(): + button = AuiPaneButton(AUI_BUTTON_PIN) + pinfo.buttons.append(button) + + if pinfo.HasCloseButton(): + button = AuiPaneButton(AUI_BUTTON_CLOSE) + pinfo.buttons.append(button) + + if pinfo.HasGripper(): + if isinstance(pinfo.window, auibar.AuiToolBar): + # prevent duplicate gripper -- both AuiManager and AuiToolBar + # have a gripper control. The toolbar's built-in gripper + # meshes better with the look and feel of the control than ours, + # so turn AuiManager's gripper off, and the toolbar's on. + + tb = pinfo.window + pinfo.SetFlag(AuiPaneInfo.optionGripper, False) + tb.SetGripperVisible(True) + + if pinfo.window: + if pinfo.best_size == wx.Size(-1, -1): + pinfo.best_size = pinfo.window.GetClientSize() + + if isinstance(pinfo.window, wx.ToolBar): + # GetClientSize() doesn't get the best size for + # a toolbar under some newer versions of wxWidgets, + # so use GetBestSize() + pinfo.best_size = pinfo.window.GetBestSize() + + # this is needed for Win2000 to correctly fill toolbar backround + # it should probably be repeated once system colour change happens + if wx.Platform == "__WXMSW__" and pinfo.window.UseBgCol(): + pinfo.window.SetBackgroundColour(self.GetArtProvider().GetColour(AUI_DOCKART_BACKGROUND_COLOUR)) + + if pinfo.min_size != wx.Size(-1, -1): + if pinfo.best_size.x < pinfo.min_size.x: + pinfo.best_size.x = pinfo.min_size.x + if pinfo.best_size.y < pinfo.min_size.y: + pinfo.best_size.y = pinfo.min_size.y + + self._panes[-1] = pinfo + if isinstance(window, auibar.AuiToolBar): + window.SetAuiManager(self) + + return True + + + def AddPane2(self, window, direction, caption): + """ See comments on L{AddPane}. """ + + pinfo = AuiPaneInfo() + pinfo.Caption(caption) + + if direction == wx.TOP: + pinfo.Top() + elif direction == wx.BOTTOM: + pinfo.Bottom() + elif direction == wx.LEFT: + pinfo.Left() + elif direction == wx.RIGHT: + pinfo.Right() + elif direction == wx.CENTER: + pinfo.CenterPane() + + return self.AddPane(window, pinfo) + + + def AddPane3(self, window, pane_info, drop_pos): + """ See comments on L{AddPane}. """ + + if not self.AddPane(window, pane_info): + return False + + pane = self.GetPane(window) + indx = self._panes.index(pane) + + ret, pane = self.DoDrop(self._docks, self._panes, pane, drop_pos, wx.Point(0, 0)) + self._panes[indx] = pane + + return True + + + def AddPane4(self, window, pane_info, target): + """ See comments on L{AddPane}. """ + + if not self.AddPane(window, pane_info): + return False + + paneInfo = self.GetPane(window) + + if not paneInfo.IsNotebookDockable(): + return self.AddPane1(window, pane_info) + if not target.IsNotebookDockable() and not target.IsNotebookControl(): + return self.AddPane1(window, pane_info) + + if not target.HasNotebook(): + self.CreateNotebookBase(self._panes, target) + + # Add new item to notebook + paneInfo.NotebookPage(target.notebook_id) + + # we also want to remove our captions sometimes + self.RemoveAutoNBCaption(paneInfo) + self.UpdateNotebook() + + return True + + + def InsertPane(self, window, pane_info, insert_level=AUI_INSERT_PANE): + """ + This method is used to insert either a previously unmanaged pane window + into the frame manager, or to insert a currently managed pane somewhere else. + L{InsertPane} will push all panes, rows, or docks aside and insert the window + into the position specified by `pane_info`. + + Because `pane_info` can specify either a pane, dock row, or dock layer, the + `insert_level` parameter is used to disambiguate this. The parameter `insert_level` + can take a value of ``AUI_INSERT_PANE``, ``AUI_INSERT_ROW`` or ``AUI_INSERT_DOCK``. + + :param `window`: the window to be inserted and managed; + :param `pane_info`: the insert location for the new window; + :param `insert_level`: the insertion level of the new pane. + """ + + if not window: + raise Exception("Invalid window passed to InsertPane.") + + # shift the panes around, depending on the insert level + if insert_level == AUI_INSERT_PANE: + self._panes = DoInsertPane(self._panes, pane_info.dock_direction, + pane_info.dock_layer, pane_info.dock_row, + pane_info.dock_pos) + + elif insert_level == AUI_INSERT_ROW: + self._panes = DoInsertDockRow(self._panes, pane_info.dock_direction, + pane_info.dock_layer, pane_info.dock_row) + + elif insert_level == AUI_INSERT_DOCK: + self._panes = DoInsertDockLayer(self._panes, pane_info.dock_direction, + pane_info.dock_layer) + + # if the window already exists, we are basically just moving/inserting the + # existing window. If it doesn't exist, we need to add it and insert it + existing_pane = self.GetPane(window) + indx = self._panes.index(existing_pane) + + if not existing_pane.IsOk(): + + return self.AddPane(window, pane_info) + + else: + + if pane_info.IsFloating(): + existing_pane.Float() + if pane_info.floating_pos != wx.Point(-1, -1): + existing_pane.FloatingPosition(pane_info.floating_pos) + if pane_info.floating_size != wx.Size(-1, -1): + existing_pane.FloatingSize(pane_info.floating_size) + else: + # if the new pane is docked then we should undo maximize + self.RestoreMaximizedPane() + + existing_pane.Direction(pane_info.dock_direction) + existing_pane.Layer(pane_info.dock_layer) + existing_pane.Row(pane_info.dock_row) + existing_pane.Position(pane_info.dock_pos) + + self._panes[indx] = existing_pane + + return True + + + def DetachPane(self, window): + """ + Tells the L{AuiManager} to stop managing the pane specified + by `window`. The window, if in a floated frame, is reparented to the frame + managed by L{AuiManager}. + + :param `window`: the window to be un-managed. + """ + + for p in self._panes: + if p.window == window: + if p.frame: + # we have a floating frame which is being detached. We need to + # reparent it to self._frame and destroy the floating frame + + # reduce flicker + p.window.SetSize((1, 1)) + if p.frame.IsShown(): + p.frame.Show(False) + + if self._action_window == p.frame: + self._action_window = None + + # reparent to self._frame and destroy the pane + p.window.Reparent(self._frame) + p.frame.SetSizer(None) + p.frame.Destroy() + p.frame = None + + elif p.IsNotebookPage(): + notebook = self._notebooks[p.notebook_id] + id = notebook.GetPageIndex(p.window) + notebook.RemovePage(id) + + # make sure there are no references to this pane in our uiparts, + # just in case the caller doesn't call Update() immediately after + # the DetachPane() call. This prevets obscure crashes which would + # happen at window repaint if the caller forgets to call Update() + counter = 0 + for pi in xrange(len(self._uiparts)): + part = self._uiparts[counter] + if part.pane == p: + self._uiparts.pop(counter) + counter -= 1 + + counter += 1 + + self._panes.remove(p) + return True + + return False + + + def ClosePane(self, pane_info): + """ + Destroys or hides the pane depending on its flags. + + :param `pane_info`: a L{AuiPaneInfo} instance. + """ + + # if we were maximized, restore + if pane_info.IsMaximized(): + self.RestorePane(pane_info) + + if pane_info.frame: + if self._agwFlags & AUI_MGR_ANIMATE_FRAMES: + pane_info.frame.FadeOut() + + # first, hide the window + if pane_info.window and pane_info.window.IsShown(): + pane_info.window.Show(False) + + # make sure that we are the parent of this window + if pane_info.window and pane_info.window.GetParent() != self._frame: + pane_info.window.Reparent(self._frame) + + # if we have a frame, destroy it + if pane_info.frame: + pane_info.frame.Destroy() + pane_info.frame = None + + elif pane_info.IsNotebookPage(): + # if we are a notebook page, remove ourselves... + # the code would index out of bounds + # if the last page of a sub-notebook was closed + # because the notebook would be deleted, before this + # code is executed. + # This code just prevents an out-of bounds error. + if self._notebooks: + nid = pane_info.notebook_id + if nid >= 0 and nid < len(self._notebooks): + notebook = self._notebooks[nid] + page_idx = notebook.GetPageIndex(pane_info.window) + if page_idx >= 0: + notebook.RemovePage(page_idx) + + # now we need to either destroy or hide the pane + to_destroy = 0 + if pane_info.IsDestroyOnClose(): + to_destroy = pane_info.window + self.DetachPane(to_destroy) + else: + if isinstance(pane_info.window, auibar.AuiToolBar) and pane_info.IsFloating(): + tb = pane_info.window + if pane_info.dock_direction in [AUI_DOCK_LEFT, AUI_DOCK_RIGHT]: + tb.SetAGWWindowStyleFlag(tb.GetAGWWindowStyleFlag() | AUI_TB_VERTICAL) + + pane_info.Dock().Hide() + + if pane_info.IsNotebookControl(): + + notebook = self._notebooks[pane_info.notebook_id] + while notebook.GetPageCount(): + window = notebook.GetPage(0) + notebook.RemovePage(0) + info = self.GetPane(window) + if info.IsOk(): + info.notebook_id = -1 + info.dock_direction = AUI_DOCK_NONE + # Note: this could change our paneInfo reference ... + self.ClosePane(info) + + if to_destroy: + to_destroy.Destroy() + + + def MaximizePane(self, pane_info, savesizes=True): + """ + Maximizes the input pane. + + :param `pane_info`: a L{AuiPaneInfo} instance. + :param `savesizes`: whether to save previous dock sizes. + """ + + if savesizes: + self.SavePreviousDockSizes(pane_info) + + for p in self._panes: + + # save hidden state + p.SetFlag(p.savedHiddenState, p.HasFlag(p.optionHidden)) + + if not p.IsToolbar() and not p.IsFloating(): + p.Restore() + + # hide the pane, because only the newly + # maximized pane should show + p.Hide() + + pane_info.previousDockPos = pane_info.dock_pos + + # mark ourselves maximized + pane_info.Maximize() + pane_info.Show() + self._has_maximized = True + + # last, show the window + if pane_info.window and not pane_info.window.IsShown(): + pane_info.window.Show(True) + + + def SavePreviousDockSizes(self, pane_info): + """ + Stores the previous dock sizes, to be used in a "restore" action later. + + :param `pane_info`: a L{AuiPaneInfo} instance. + """ + + for d in self._docks: + if not d.toolbar: + for p in d.panes: + p.previousDockSize = d.size + if pane_info is not p: + p.SetFlag(p.needsRestore, True) + + + def RestorePane(self, pane_info): + """ + Restores the input pane from a previous maximized or minimized state. + + :param `pane_info`: a L{AuiPaneInfo} instance. + """ + + # restore all the panes + for p in self._panes: + if not p.IsToolbar(): + p.SetFlag(p.optionHidden, p.HasFlag(p.savedHiddenState)) + + pane_info.SetFlag(pane_info.needsRestore, True) + + # mark ourselves non-maximized + pane_info.Restore() + self._has_maximized = False + self._has_minimized = False + + # last, show the window + if pane_info.window and not pane_info.window.IsShown(): + pane_info.window.Show(True) + + + def RestoreMaximizedPane(self): + """ Restores the current maximized pane (if any). """ + + # restore all the panes + for p in self._panes: + if p.IsMaximized(): + self.RestorePane(p) + break + + + def ActivatePane(self, window): + """ + Activates the pane to which `window` is associated. + + :param `window`: a `wx.Window` derived window. + """ + + if self.GetAGWFlags() & AUI_MGR_ALLOW_ACTIVE_PANE: + while window: + ret, self._panes = SetActivePane(self._panes, window) + if ret: + break + + window = window.GetParent() + + self.RefreshCaptions() + self.FireEvent(wxEVT_AUI_PANE_ACTIVATED, window, canVeto=False) + + + def CreateNotebook(self): + """ + Creates an automatic L{AuiNotebook} when a pane is docked on + top of another pane. + """ + + notebook = auibook.AuiNotebook(self._frame, -1, wx.Point(0, 0), wx.Size(0, 0), agwStyle=self._autoNBStyle) + + # This is so we can get the tab-drag event. + notebook.GetAuiManager().SetMasterManager(self) + notebook.SetArtProvider(self._autoNBTabArt.Clone()) + self._notebooks.append(notebook) + + return notebook + + + def SetAutoNotebookTabArt(self, art): + """ + Sets the default tab art provider for automatic notebooks. + + :param `art`: a tab art provider. + """ + + for nb in self._notebooks: + nb.SetArtProvider(art.Clone()) + nb.Refresh() + nb.Update() + + self._autoNBTabArt = art + + + def GetAutoNotebookTabArt(self): + """ Returns the default tab art provider for automatic notebooks. """ + + return self._autoNBTabArt + + + def SetAutoNotebookStyle(self, agwStyle): + """ + Sets the default AGW-specific window style for automatic notebooks. + + :param `agwStyle`: the underlying L{AuiNotebook} window style. + This can be a combination of the following bits: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_NB_TOP`` With this style, tabs are drawn along the top of the notebook + ``AUI_NB_LEFT`` With this style, tabs are drawn along the left of the notebook. Not implemented yet. + ``AUI_NB_RIGHT`` With this style, tabs are drawn along the right of the notebook. Not implemented yet. + ``AUI_NB_BOTTOM`` With this style, tabs are drawn along the bottom of the notebook + ``AUI_NB_TAB_SPLIT`` Allows the tab control to be split by dragging a tab + ``AUI_NB_TAB_MOVE`` Allows a tab to be moved horizontally by dragging + ``AUI_NB_TAB_EXTERNAL_MOVE`` Allows a tab to be moved to another tab control + ``AUI_NB_TAB_FIXED_WIDTH`` With this style, all tabs have the same width + ``AUI_NB_SCROLL_BUTTONS`` With this style, left and right scroll buttons are displayed + ``AUI_NB_WINDOWLIST_BUTTON`` With this style, a drop-down list of windows is available + ``AUI_NB_CLOSE_BUTTON`` With this style, a close button is available on the tab bar + ``AUI_NB_CLOSE_ON_ACTIVE_TAB`` With this style, a close button is available on the active tab + ``AUI_NB_CLOSE_ON_ALL_TABS`` With this style, a close button is available on all tabs + ``AUI_NB_MIDDLE_CLICK_CLOSE`` Allows to close L{AuiNotebook} tabs by mouse middle button click + ``AUI_NB_SUB_NOTEBOOK`` This style is used by {AuiManager} to create automatic AuiNotebooks + ``AUI_NB_HIDE_ON_SINGLE_TAB`` Hides the tab window if only one tab is present + ``AUI_NB_SMART_TABS`` Use Smart Tabbing, like ``Alt`` + ``Tab`` on Windows + ``AUI_NB_USE_IMAGES_DROPDOWN`` Uses images on dropdown window list menu instead of check items + ``AUI_NB_CLOSE_ON_TAB_LEFT`` Draws the tab close button on the left instead of on the right (a la Camino browser) + ``AUI_NB_TAB_FLOAT`` Allows the floating of single tabs. Known limitation: when the notebook is more or less full screen, tabs cannot be dragged far enough outside of the notebook to become floating pages + ``AUI_NB_DRAW_DND_TAB`` Draws an image representation of a tab while dragging (on by default) + ==================================== ================================== + + """ + + for nb in self._notebooks: + nb.SetAGWWindowStyleFlag(agwStyle) + nb.Refresh() + nb.Update() + + self._autoNBStyle = agwStyle + + + def GetAutoNotebookStyle(self): + """ + Returns the default AGW-specific window style for automatic notebooks. + + :see: L{SetAutoNotebookStyle} method for a list of possible styles. + """ + + return self._autoNBStyle + + + def SavePaneInfo(self, pane): + """ + This method is similar to L{SavePerspective}, with the exception + that it only saves information about a single pane. It is used in + combination with L{LoadPaneInfo}. + + :param `pane`: a L{AuiPaneInfo} instance to save. + """ + + result = "name=" + EscapeDelimiters(pane.name) + ";" + result += "caption=" + EscapeDelimiters(pane.caption) + ";" + + result += "state=%u;"%pane.state + result += "dir=%d;"%pane.dock_direction + result += "layer=%d;"%pane.dock_layer + result += "row=%d;"%pane.dock_row + result += "pos=%d;"%pane.dock_pos + result += "prop=%d;"%pane.dock_proportion + result += "bestw=%d;"%pane.best_size.x + result += "besth=%d;"%pane.best_size.y + result += "minw=%d;"%pane.min_size.x + result += "minh=%d;"%pane.min_size.y + result += "maxw=%d;"%pane.max_size.x + result += "maxh=%d;"%pane.max_size.y + result += "floatx=%d;"%pane.floating_pos.x + result += "floaty=%d;"%pane.floating_pos.y + result += "floatw=%d;"%pane.floating_size.x + result += "floath=%d;"%pane.floating_size.y + result += "notebookid=%d;"%pane.notebook_id + result += "transparent=%d"%pane.transparent + + return result + + + def LoadPaneInfo(self, pane_part, pane): + """ + This method is similar to to L{LoadPerspective}, with the exception that + it only loads information about a single pane. It is used in combination + with L{SavePaneInfo}. + + :param `pane_part`: the string to analyze; + :param `pane`: the L{AuiPaneInfo} structure in which to load `pane_part`. + """ + + # replace escaped characters so we can + # split up the string easily + pane_part = pane_part.replace("\\|", "\a") + pane_part = pane_part.replace("\\;", "\b") + + options = pane_part.split(";") + for items in options: + + val_name, value = items.split("=") + val_name = val_name.strip() + + if val_name == "name": + pane.name = value + elif val_name == "caption": + pane.caption = value + elif val_name == "state": + pane.state = int(value) + elif val_name == "dir": + pane.dock_direction = int(value) + elif val_name == "layer": + pane.dock_layer = int(value) + elif val_name == "row": + pane.dock_row = int(value) + elif val_name == "pos": + pane.dock_pos = int(value) + elif val_name == "prop": + pane.dock_proportion = int(value) + elif val_name == "bestw": + pane.best_size.x = int(value) + elif val_name == "besth": + pane.best_size.y = int(value) + pane.best_size = wx.Size(pane.best_size.x, pane.best_size.y) + elif val_name == "minw": + pane.min_size.x = int(value) + elif val_name == "minh": + pane.min_size.y = int(value) + pane.min_size = wx.Size(pane.min_size.x, pane.min_size.y) + elif val_name == "maxw": + pane.max_size.x = int(value) + elif val_name == "maxh": + pane.max_size.y = int(value) + pane.max_size = wx.Size(pane.max_size.x, pane.max_size.y) + elif val_name == "floatx": + pane.floating_pos.x = int(value) + elif val_name == "floaty": + pane.floating_pos.y = int(value) + pane.floating_pos = wx.Point(pane.floating_pos.x, pane.floating_pos.y) + elif val_name == "floatw": + pane.floating_size.x = int(value) + elif val_name == "floath": + pane.floating_size.y = int(value) + pane.floating_size = wx.Size(pane.floating_size.x, pane.floating_size.y) + elif val_name == "notebookid": + pane.notebook_id = int(value) + elif val_name == "transparent": + pane.transparent = int(value) + else: + raise Exception("Bad perspective string") + + # replace escaped characters so we can + # split up the string easily + pane.name = pane.name.replace("\a", "|") + pane.name = pane.name.replace("\b", ";") + pane.caption = pane.caption.replace("\a", "|") + pane.caption = pane.caption.replace("\b", ";") + pane_part = pane_part.replace("\a", "|") + pane_part = pane_part.replace("\b", ";") + + return pane + + + def SavePerspective(self): + """ + Saves the entire user interface layout into an encoded string, which can then + be stored by the application (probably using `wx.Config`). + + When a perspective is restored using L{LoadPerspective}, the entire user + interface will return to the state it was when the perspective was saved. + """ + + result = "layout2|" + + for pane in self._panes: + result += self.SavePaneInfo(pane) + "|" + + for dock in self._docks: + result = result + ("dock_size(%d,%d,%d)=%d|")%(dock.dock_direction, + dock.dock_layer, + dock.dock_row, + dock.size) + return result + + + def LoadPerspective(self, layout, update=True): + """ + Loads a layout which was saved with L{SavePerspective}. + + If the `update` flag parameter is ``True``, L{Update} will be + automatically invoked, thus realizing the saved perspective on screen. + + :param `layout`: a string which contains a saved AUI layout; + :param `update`: whether to update immediately the window or not. + """ + + input = layout + + # check layout string version + # 'layout1' = wxAUI 0.9.0 - wxAUI 0.9.2 + # 'layout2' = wxAUI 0.9.2 (wxWidgets 2.8) + index = input.find("|") + part = input[0:index].strip() + input = input[index+1:] + + if part != "layout2": + return False + + # mark all panes currently managed as docked and hidden + for pane in self._panes: + pane.Dock().Hide() + + # clear out the dock array; this will be reconstructed + self._docks = [] + + # replace escaped characters so we can + # split up the string easily + input = input.replace("\\|", "\a") + input = input.replace("\\;", "\b") + + while 1: + + pane = AuiPaneInfo() + index = input.find("|") + pane_part = input[0:index].strip() + input = input[index+1:] + + # if the string is empty, we're done parsing + if pane_part == "": + break + + if pane_part[0:9] == "dock_size": + index = pane_part.find("=") + val_name = pane_part[0:index] + value = pane_part[index+1:] + + index = val_name.find("(") + piece = val_name[index+1:] + index = piece.find(")") + piece = piece[0:index] + + vals = piece.split(",") + dir = int(vals[0]) + layer = int(vals[1]) + row = int(vals[2]) + size = int(value) + + dock = AuiDockInfo() + dock.dock_direction = dir + dock.dock_layer = layer + dock.dock_row = row + dock.size = size + self._docks.append(dock) + + continue + + # Undo our escaping as LoadPaneInfo needs to take an unescaped + # name so it can be called by external callers + pane_part = pane_part.replace("\a", "|") + pane_part = pane_part.replace("\b", ";") + + pane = self.LoadPaneInfo(pane_part, pane) + + p = self.GetPane(pane.name) + + if not p.IsOk(): + if pane.IsNotebookControl(): + # notebook controls - auto add... + self._panes.append(pane) + indx = self._panes.index(pane) + else: + # the pane window couldn't be found + # in the existing layout -- skip it + continue + + else: + indx = self._panes.index(p) + pane.window = p.window + pane.frame = p.frame + pane.buttons = p.buttons + self._panes[indx] = pane + + if isinstance(pane.window, auibar.AuiToolBar) and (pane.IsFloatable() or pane.IsDockable()): + pane.window.SetGripperVisible(True) + + if update: + self.Update() + + return True + + + def GetPanePositionsAndSizes(self, dock): + """ + Returns all the panes positions and sizes in a dock. + + :param `dock`: a L{AuiDockInfo} instance. + """ + + caption_size = self._art.GetMetric(AUI_DOCKART_CAPTION_SIZE) + pane_border_size = self._art.GetMetric(AUI_DOCKART_PANE_BORDER_SIZE) + gripper_size = self._art.GetMetric(AUI_DOCKART_GRIPPER_SIZE) + + positions = [] + sizes = [] + + action_pane = -1 + pane_count = len(dock.panes) + + # find the pane marked as our action pane + for pane_i in xrange(pane_count): + pane = dock.panes[pane_i] + if pane.HasFlag(AuiPaneInfo.actionPane): + if action_pane != -1: + raise Exception("Too many action panes!") + action_pane = pane_i + + # set up each panes default position, and + # determine the size (width or height, depending + # on the dock's orientation) of each pane + for pane in dock.panes: + positions.append(pane.dock_pos) + size = 0 + + if pane.HasBorder(): + size += pane_border_size*2 + + if dock.IsHorizontal(): + if pane.HasGripper() and not pane.HasGripperTop(): + size += gripper_size + + if pane.HasCaptionLeft(): + size += caption_size + + size += pane.best_size.x + + else: + if pane.HasGripper() and pane.HasGripperTop(): + size += gripper_size + + if pane.HasCaption() and not pane.HasCaptionLeft(): + size += caption_size + + size += pane.best_size.y + + sizes.append(size) + + # if there is no action pane, just return the default + # positions (as specified in pane.pane_pos) + if action_pane == -1: + return positions, sizes + + offset = 0 + for pane_i in xrange(action_pane-1, -1, -1): + amount = positions[pane_i+1] - (positions[pane_i] + sizes[pane_i]) + if amount >= 0: + offset += amount + else: + positions[pane_i] -= -amount + + offset += sizes[pane_i] + + # if the dock mode is fixed, make sure none of the panes + # overlap we will bump panes that overlap + offset = 0 + for pane_i in xrange(action_pane, pane_count): + amount = positions[pane_i] - offset + if amount >= 0: + offset += amount + else: + positions[pane_i] += -amount + + offset += sizes[pane_i] + + return positions, sizes + + + def LayoutAddPane(self, cont, dock, pane, uiparts, spacer_only): + """ + Adds a pane into the existing layout (in an existing dock). + + :param `cont`: a `wx.Sizer` object; + :param `dock`: the L{AuiDockInfo} structure in which to add the pane; + :param `pane`: the L{AuiPaneInfo} instance to add to the dock; + :param `uiparts`: a list of UI parts in the interface; + :param `spacer_only`: whether to add a simple spacer or a real window. + """ + + sizer_item = wx.SizerItem() + caption_size = self._art.GetMetric(AUI_DOCKART_CAPTION_SIZE) + gripper_size = self._art.GetMetric(AUI_DOCKART_GRIPPER_SIZE) + pane_border_size = self._art.GetMetric(AUI_DOCKART_PANE_BORDER_SIZE) + pane_button_size = self._art.GetMetric(AUI_DOCKART_PANE_BUTTON_SIZE) + + # find out the orientation of the item (orientation for panes + # is the same as the dock's orientation) + + if dock.IsHorizontal(): + orientation = wx.HORIZONTAL + else: + orientation = wx.VERTICAL + + # this variable will store the proportion + # value that the pane will receive + pane_proportion = pane.dock_proportion + + horz_pane_sizer = wx.BoxSizer(wx.HORIZONTAL) + vert_pane_sizer = wx.BoxSizer(wx.VERTICAL) + + if pane.HasGripper(): + + part = AuiDockUIPart() + if pane.HasGripperTop(): + sizer_item = vert_pane_sizer.Add((1, gripper_size), 0, wx.EXPAND) + else: + sizer_item = horz_pane_sizer.Add((gripper_size, 1), 0, wx.EXPAND) + + part.type = AuiDockUIPart.typeGripper + part.dock = dock + part.pane = pane + part.button = None + part.orientation = orientation + part.cont_sizer = horz_pane_sizer + part.sizer_item = sizer_item + uiparts.append(part) + + button_count = len(pane.buttons) + button_width_total = button_count*pane_button_size + if button_count >= 1: + button_width_total += 3 + + caption, captionLeft = pane.HasCaption(), pane.HasCaptionLeft() + button_count = len(pane.buttons) + + if captionLeft: + caption_sizer = wx.BoxSizer(wx.VERTICAL) + + # add pane buttons to the caption + dummy_parts = [] + for btn_id in xrange(len(pane.buttons)-1, -1, -1): + sizer_item = caption_sizer.Add((caption_size, pane_button_size), 0, wx.EXPAND) + part = AuiDockUIPart() + part.type = AuiDockUIPart.typePaneButton + part.dock = dock + part.pane = pane + part.button = pane.buttons[btn_id] + part.orientation = orientation + part.cont_sizer = caption_sizer + part.sizer_item = sizer_item + dummy_parts.append(part) + + sizer_item = caption_sizer.Add((caption_size, 1), 1, wx.EXPAND) + vert_pane_sizer = wx.BoxSizer(wx.HORIZONTAL) + + # create the caption sizer + part = AuiDockUIPart() + + part.type = AuiDockUIPart.typeCaption + part.dock = dock + part.pane = pane + part.button = None + part.orientation = orientation + part.cont_sizer = vert_pane_sizer + part.sizer_item = sizer_item + caption_part_idx = len(uiparts) + uiparts.append(part) + uiparts.extend(dummy_parts) + + elif caption: + + caption_sizer = wx.BoxSizer(wx.HORIZONTAL) + sizer_item = caption_sizer.Add((1, caption_size), 1, wx.EXPAND) + + # create the caption sizer + part = AuiDockUIPart() + + part.type = AuiDockUIPart.typeCaption + part.dock = dock + part.pane = pane + part.button = None + part.orientation = orientation + part.cont_sizer = vert_pane_sizer + part.sizer_item = sizer_item + caption_part_idx = len(uiparts) + uiparts.append(part) + + # add pane buttons to the caption + for button in pane.buttons: + sizer_item = caption_sizer.Add((pane_button_size, caption_size), 0, wx.EXPAND) + part = AuiDockUIPart() + part.type = AuiDockUIPart.typePaneButton + part.dock = dock + part.pane = pane + part.button = button + part.orientation = orientation + part.cont_sizer = caption_sizer + part.sizer_item = sizer_item + uiparts.append(part) + + if caption or captionLeft: + # if we have buttons, add a little space to the right + # of them to ease visual crowding + if button_count >= 1: + if captionLeft: + caption_sizer.Add((caption_size, 3), 0, wx.EXPAND) + else: + caption_sizer.Add((3, caption_size), 0, wx.EXPAND) + + # add the caption sizer + sizer_item = vert_pane_sizer.Add(caption_sizer, 0, wx.EXPAND) + uiparts[caption_part_idx].sizer_item = sizer_item + + # add the pane window itself + if spacer_only or not pane.window: + sizer_item = vert_pane_sizer.Add((1, 1), 1, wx.EXPAND) + else: + sizer_item = vert_pane_sizer.Add(pane.window, 1, wx.EXPAND) + vert_pane_sizer.SetItemMinSize(pane.window, (1, 1)) + + part = AuiDockUIPart() + part.type = AuiDockUIPart.typePane + part.dock = dock + part.pane = pane + part.button = None + part.orientation = orientation + part.cont_sizer = vert_pane_sizer + part.sizer_item = sizer_item + uiparts.append(part) + + # determine if the pane should have a minimum size if the pane is + # non-resizable (fixed) then we must set a minimum size. Alternatively, + # if the pane.min_size is set, we must use that value as well + + min_size = pane.min_size + if pane.IsFixed(): + if min_size == wx.Size(-1, -1): + min_size = pane.best_size + pane_proportion = 0 + + if min_size != wx.Size(-1, -1): + vert_pane_sizer.SetItemMinSize(len(vert_pane_sizer.GetChildren())-1, (min_size.x, min_size.y)) + + # add the vertical/horizontal sizer (caption, pane window) to the + # horizontal sizer (gripper, vertical sizer) + horz_pane_sizer.Add(vert_pane_sizer, 1, wx.EXPAND) + + # finally, add the pane sizer to the dock sizer + if pane.HasBorder(): + # allowing space for the pane's border + sizer_item = cont.Add(horz_pane_sizer, pane_proportion, + wx.EXPAND | wx.ALL, pane_border_size) + part = AuiDockUIPart() + part.type = AuiDockUIPart.typePaneBorder + part.dock = dock + part.pane = pane + part.button = None + part.orientation = orientation + part.cont_sizer = cont + part.sizer_item = sizer_item + uiparts.append(part) + else: + sizer_item = cont.Add(horz_pane_sizer, pane_proportion, wx.EXPAND) + + return uiparts + + + def LayoutAddDock(self, cont, dock, uiparts, spacer_only): + """ + Adds a dock into the existing layout. + + :param `cont`: a `wx.Sizer` object; + :param `dock`: the L{AuiDockInfo} structure to add to the layout; + :param `uiparts`: a list of UI parts in the interface; + :param `spacer_only`: whether to add a simple spacer or a real window. + """ + + sizer_item = wx.SizerItem() + part = AuiDockUIPart() + + sash_size = self._art.GetMetric(AUI_DOCKART_SASH_SIZE) + orientation = (dock.IsHorizontal() and [wx.HORIZONTAL] or [wx.VERTICAL])[0] + + # resizable bottom and right docks have a sash before them + if not self._has_maximized and not dock.fixed and \ + dock.dock_direction in [AUI_DOCK_BOTTOM, AUI_DOCK_RIGHT]: + + sizer_item = cont.Add((sash_size, sash_size), 0, wx.EXPAND) + + part.type = AuiDockUIPart.typeDockSizer + part.orientation = orientation + part.dock = dock + part.pane = None + part.button = None + part.cont_sizer = cont + part.sizer_item = sizer_item + uiparts.append(part) + + # create the sizer for the dock + dock_sizer = wx.BoxSizer(orientation) + + # add each pane to the dock + has_maximized_pane = False + pane_count = len(dock.panes) + + if dock.fixed: + + # figure out the real pane positions we will + # use, without modifying the each pane's pane_pos member + pane_positions, pane_sizes = self.GetPanePositionsAndSizes(dock) + + offset = 0 + for pane_i in xrange(pane_count): + + pane = dock.panes[pane_i] + pane_pos = pane_positions[pane_i] + + if pane.IsMaximized(): + has_maximized_pane = True + + amount = pane_pos - offset + if amount > 0: + + if dock.IsVertical(): + sizer_item = dock_sizer.Add((1, amount), 0, wx.EXPAND) + else: + sizer_item = dock_sizer.Add((amount, 1), 0, wx.EXPAND) + + part = AuiDockUIPart() + part.type = AuiDockUIPart.typeBackground + part.dock = dock + part.pane = None + part.button = None + part.orientation = (orientation==wx.HORIZONTAL and \ + [wx.VERTICAL] or [wx.HORIZONTAL])[0] + part.cont_sizer = dock_sizer + part.sizer_item = sizer_item + uiparts.append(part) + + offset = offset + amount + + uiparts = self.LayoutAddPane(dock_sizer, dock, pane, uiparts, spacer_only) + + offset = offset + pane_sizes[pane_i] + + # at the end add a very small stretchable background area + sizer_item = dock_sizer.Add((0, 0), 1, wx.EXPAND) + part = AuiDockUIPart() + part.type = AuiDockUIPart.typeBackground + part.dock = dock + part.pane = None + part.button = None + part.orientation = orientation + part.cont_sizer = dock_sizer + part.sizer_item = sizer_item + uiparts.append(part) + + else: + + for pane_i in xrange(pane_count): + + pane = dock.panes[pane_i] + + if pane.IsMaximized(): + has_maximized_pane = True + + # if this is not the first pane being added, + # we need to add a pane sizer + if not self._has_maximized and pane_i > 0: + sizer_item = dock_sizer.Add((sash_size, sash_size), 0, wx.EXPAND) + part = AuiDockUIPart() + part.type = AuiDockUIPart.typePaneSizer + part.dock = dock + part.pane = dock.panes[pane_i-1] + part.button = None + part.orientation = (orientation==wx.HORIZONTAL and \ + [wx.VERTICAL] or [wx.HORIZONTAL])[0] + part.cont_sizer = dock_sizer + part.sizer_item = sizer_item + uiparts.append(part) + + uiparts = self.LayoutAddPane(dock_sizer, dock, pane, uiparts, spacer_only) + + if dock.dock_direction == AUI_DOCK_CENTER or has_maximized_pane: + sizer_item = cont.Add(dock_sizer, 1, wx.EXPAND) + else: + sizer_item = cont.Add(dock_sizer, 0, wx.EXPAND) + + part = AuiDockUIPart() + part.type = AuiDockUIPart.typeDock + part.dock = dock + part.pane = None + part.button = None + part.orientation = orientation + part.cont_sizer = cont + part.sizer_item = sizer_item + uiparts.append(part) + + if dock.IsHorizontal(): + cont.SetItemMinSize(dock_sizer, (0, dock.size)) + else: + cont.SetItemMinSize(dock_sizer, (dock.size, 0)) + + # top and left docks have a sash after them + if not self._has_maximized and not dock.fixed and \ + dock.dock_direction in [AUI_DOCK_TOP, AUI_DOCK_LEFT]: + + sizer_item = cont.Add((sash_size, sash_size), 0, wx.EXPAND) + + part = AuiDockUIPart() + part.type = AuiDockUIPart.typeDockSizer + part.dock = dock + part.pane = None + part.button = None + part.orientation = orientation + part.cont_sizer = cont + part.sizer_item = sizer_item + uiparts.append(part) + + return uiparts + + + def LayoutAll(self, panes, docks, uiparts, spacer_only=False, oncheck=True): + """ + Layouts all the UI structures in the interface. + + :param `panes`: a list of L{AuiPaneInfo} instances; + :param `docks`: a list of L{AuiDockInfo} classes; + :param `uiparts`: a list of UI parts in the interface; + :param `spacer_only`: whether to add a simple spacer or a real window; + :param `oncheck`: whether to store the results in a class member or not. + """ + + container = wx.BoxSizer(wx.VERTICAL) + + pane_border_size = self._art.GetMetric(AUI_DOCKART_PANE_BORDER_SIZE) + caption_size = self._art.GetMetric(AUI_DOCKART_CAPTION_SIZE) + cli_size = self._frame.GetClientSize() + + # empty all docks out + for dock in docks: + dock.panes = [] + if dock.fixed: + # always reset fixed docks' sizes, because + # the contained windows may have been resized + dock.size = 0 + + dock_count = len(docks) + + # iterate through all known panes, filing each + # of them into the appropriate dock. If the + # pane does not exist in the dock, add it + for p in panes: + + # don't layout hidden panes. + if p.IsShown(): + + # find any docks with the same dock direction, dock layer, and + # dock row as the pane we are working on + arr = FindDocks(docks, p.dock_direction, p.dock_layer, p.dock_row) + + if arr: + dock = arr[0] + + else: + # dock was not found, so we need to create a new one + d = AuiDockInfo() + d.dock_direction = p.dock_direction + d.dock_layer = p.dock_layer + d.dock_row = p.dock_row + docks.append(d) + dock = docks[-1] + + if p.HasFlag(p.needsRestore) and not p.HasFlag(p.wasMaximized): + + isHor = dock.IsHorizontal() + sashSize = self._art.GetMetric(AUI_DOCKART_SASH_SIZE) + + # get the sizes of any docks that might + # overlap with our restored dock + + # make list of widths or heights from the size in the dock rects + sizes = [d.rect[2:][isHor] for \ + d in docks if d.IsOk() and \ + (d.IsHorizontal() == isHor) and \ + not d.toolbar and \ + d.dock_direction != AUI_DOCK_CENTER] + + frameRect = GetInternalFrameRect(self._frame, self._docks) + + # set max size allowing for sashes and absolute minimum + maxsize = frameRect[2:][isHor] - sum(sizes) - (len(sizes)*10) - (sashSize*len(sizes)) + dock.size = min(p.previousDockSize,maxsize) + + else: + dock.size = 0 + + if p.HasFlag(p.wasMaximized): + self.MaximizePane(p, savesizes=False) + p.SetFlag(p.wasMaximized, False) + + if p.HasFlag(p.needsRestore): + if p.previousDockPos is not None: + DoInsertPane(dock.panes, dock.dock_direction, dock.dock_layer, dock.dock_row, p.previousDockPos) + p.dock_pos = p.previousDockPos + p.previousDockPos = None + p.SetFlag(p.needsRestore, False) + + if p.IsDocked(): + # remove the pane from any existing docks except this one + docks = RemovePaneFromDocks(docks, p, dock) + + # pane needs to be added to the dock, + # if it doesn't already exist + if not FindPaneInDock(dock, p.window): + dock.panes.append(p) + else: + # remove the pane from any existing docks + docks = RemovePaneFromDocks(docks, p) + + # remove any empty docks + docks = [dock for dock in docks if dock.panes] + + dock_count = len(docks) + # configure the docks further + for ii, dock in enumerate(docks): + # sort the dock pane array by the pane's + # dock position (dock_pos), in ascending order + dock.panes.sort(PaneSortFunc) + dock_pane_count = len(dock.panes) + + # for newly created docks, set up their initial size + if dock.size == 0: + size = 0 + for pane in dock.panes: + pane_size = pane.best_size + if pane_size == wx.Size(-1, -1): + pane_size = pane.min_size + if pane_size == wx.Size(-1, -1) and pane.window: + pane_size = pane.window.GetSize() + if dock.IsHorizontal(): + size = max(pane_size.y, size) + else: + size = max(pane_size.x, size) + + # add space for the border (two times), but only + # if at least one pane inside the dock has a pane border + for pane in dock.panes: + if pane.HasBorder(): + size = size + pane_border_size*2 + break + + # if pane is on the top or bottom, add the caption height, + # but only if at least one pane inside the dock has a caption + if dock.IsHorizontal(): + for pane in dock.panes: + if pane.HasCaption() and not pane.HasCaptionLeft(): + size = size + caption_size + break + else: + for pane in dock.panes: + if pane.HasCaptionLeft() and not pane.HasCaption(): + size = size + caption_size + break + + # new dock's size may not be more than the dock constraint + # parameter specifies. See SetDockSizeConstraint() + max_dock_x_size = int(self._dock_constraint_x*float(cli_size.x)) + max_dock_y_size = int(self._dock_constraint_y*float(cli_size.y)) + if cli_size <= wx.Size(20, 20): + max_dock_x_size = 10000 + max_dock_y_size = 10000 + + if dock.IsHorizontal(): + size = min(size, max_dock_y_size) + else: + size = min(size, max_dock_x_size) + + # absolute minimum size for a dock is 10 pixels + if size < 10: + size = 10 + + dock.size = size + + # determine the dock's minimum size + plus_border = False + plus_caption = False + plus_caption_left = False + dock_min_size = 0 + for pane in dock.panes: + if pane.min_size != wx.Size(-1, -1): + if pane.HasBorder(): + plus_border = True + if pane.HasCaption(): + plus_caption = True + if pane.HasCaptionLeft(): + plus_caption_left = True + if dock.IsHorizontal(): + if pane.min_size.y > dock_min_size: + dock_min_size = pane.min_size.y + else: + if pane.min_size.x > dock_min_size: + dock_min_size = pane.min_size.x + + if plus_border: + dock_min_size += pane_border_size*2 + if plus_caption and dock.IsHorizontal(): + dock_min_size += caption_size + if plus_caption_left and dock.IsVertical(): + dock_min_size += caption_size + + dock.min_size = dock_min_size + + # if the pane's current size is less than it's + # minimum, increase the dock's size to it's minimum + if dock.size < dock.min_size: + dock.size = dock.min_size + + # determine the dock's mode (fixed or proportional) + # determine whether the dock has only toolbars + action_pane_marked = False + dock.fixed = True + dock.toolbar = True + for pane in dock.panes: + if not pane.IsFixed(): + dock.fixed = False + if not pane.IsToolbar(): + dock.toolbar = False + if pane.HasFlag(AuiPaneInfo.optionDockFixed): + dock.fixed = True + if pane.HasFlag(AuiPaneInfo.actionPane): + action_pane_marked = True + + # if the dock mode is proportional and not fixed-pixel, + # reassign the dock_pos to the sequential 0, 1, 2, 3 + # e.g. remove gaps like 1, 2, 30, 500 + if not dock.fixed: + for jj in xrange(dock_pane_count): + pane = dock.panes[jj] + pane.dock_pos = jj + + # if the dock mode is fixed, and none of the panes + # are being moved right now, make sure the panes + # do not overlap each other. If they do, we will + # adjust the panes' positions + if dock.fixed and not action_pane_marked: + pane_positions, pane_sizes = self.GetPanePositionsAndSizes(dock) + offset = 0 + for jj in xrange(dock_pane_count): + pane = dock.panes[jj] + pane.dock_pos = pane_positions[jj] + amount = pane.dock_pos - offset + if amount >= 0: + offset += amount + else: + pane.dock_pos += -amount + + offset += pane_sizes[jj] + dock.panes[jj] = pane + + if oncheck: + self._docks[ii] = dock + + # shrink docks if needed +## docks = self.SmartShrink(docks, AUI_DOCK_TOP) +## docks = self.SmartShrink(docks, AUI_DOCK_LEFT) + + if oncheck: + self._docks = docks + + # discover the maximum dock layer + max_layer = 0 + dock_count = len(docks) + + for ii in xrange(dock_count): + max_layer = max(max_layer, docks[ii].dock_layer) + + # clear out uiparts + uiparts = [] + + # create a bunch of box sizers, + # from the innermost level outwards. + cont = None + middle = None + + if oncheck: + docks = self._docks + + for layer in xrange(max_layer+1): + # find any docks in this layer + arr = FindDocks(docks, -1, layer, -1) + # if there aren't any, skip to the next layer + if not arr: + continue + + old_cont = cont + + # create a container which will hold this layer's + # docks (top, bottom, left, right) + cont = wx.BoxSizer(wx.VERTICAL) + + # find any top docks in this layer + arr = FindDocks(docks, AUI_DOCK_TOP, layer, -1) + for row in arr: + uiparts = self.LayoutAddDock(cont, row, uiparts, spacer_only) + + # fill out the middle layer (which consists + # of left docks, content area and right docks) + + middle = wx.BoxSizer(wx.HORIZONTAL) + + # find any left docks in this layer + arr = FindDocks(docks, AUI_DOCK_LEFT, layer, -1) + for row in arr: + uiparts = self.LayoutAddDock(middle, row, uiparts, spacer_only) + + # add content dock (or previous layer's sizer + # to the middle + if not old_cont: + # find any center docks + arr = FindDocks(docks, AUI_DOCK_CENTER, -1, -1) + if arr: + for row in arr: + uiparts = self.LayoutAddDock(middle, row, uiparts, spacer_only) + + elif not self._has_maximized: + # there are no center docks, add a background area + sizer_item = middle.Add((1, 1), 1, wx.EXPAND) + part = AuiDockUIPart() + part.type = AuiDockUIPart.typeBackground + part.pane = None + part.dock = None + part.button = None + part.cont_sizer = middle + part.sizer_item = sizer_item + uiparts.append(part) + else: + middle.Add(old_cont, 1, wx.EXPAND) + + # find any right docks in this layer + arr = FindDocks(docks, AUI_DOCK_RIGHT, layer, -1, reverse=True) + for row in arr: + uiparts = self.LayoutAddDock(middle, row, uiparts, spacer_only) + + if len(middle.GetChildren()) > 0: + cont.Add(middle, 1, wx.EXPAND) + + # find any bottom docks in this layer + arr = FindDocks(docks, AUI_DOCK_BOTTOM, layer, -1, reverse=True) + for row in arr: + uiparts = self.LayoutAddDock(cont, row, uiparts, spacer_only) + + if not cont: + # no sizer available, because there are no docks, + # therefore we will create a simple background area + cont = wx.BoxSizer(wx.VERTICAL) + sizer_item = cont.Add((1, 1), 1, wx.EXPAND) + part = AuiDockUIPart() + part.type = AuiDockUIPart.typeBackground + part.pane = None + part.dock = None + part.button = None + part.cont_sizer = middle + part.sizer_item = sizer_item + uiparts.append(part) + + if oncheck: + self._uiparts = uiparts + self._docks = docks + + container.Add(cont, 1, wx.EXPAND) + + if oncheck: + return container + else: + return container, panes, docks, uiparts + + + def SetDockSizeConstraint(self, width_pct, height_pct): + """ + When a user creates a new dock by dragging a window into a docked position, + often times the large size of the window will create a dock that is unwieldly + large. + + L{AuiManager} by default limits the size of any new dock to 1/3 of the window + size. For horizontal docks, this would be 1/3 of the window height. For vertical + docks, 1/3 of the width. Calling this function will adjust this constraint value. + + The numbers must be between 0.0 and 1.0. For instance, calling L{SetDockSizeConstraint} + with (0.5, 0.5) will cause new docks to be limited to half of the size of the entire + managed window. + + :param `width_pct`: a float number representing the x dock size constraint; + :param `width_pct`: a float number representing the y dock size constraint. + """ + + self._dock_constraint_x = max(0.0, min(1.0, width_pct)) + self._dock_constraint_y = max(0.0, min(1.0, height_pct)) + + + def GetDockSizeConstraint(self): + """ + Returns the current dock constraint values. + + :see: L{SetDockSizeConstraint} + """ + + return self._dock_constraint_x, self._dock_constraint_y + + + def Update(self): + """ + This method is called after any number of changes are made to any of the + managed panes. L{Update} must be invoked after L{AddPane} or L{InsertPane} are + called in order to "realize" or "commit" the changes. + + In addition, any number of changes may be made to L{AuiPaneInfo} structures + (retrieved with L{GetPane}), but to realize the changes, L{Update} + must be called. This construction allows pane flicker to be avoided by updating + the whole layout at one time. + """ + + self._hover_button = None + self._action_part = None + + # destroy floating panes which have been + # redocked or are becoming non-floating + for p in self._panes: + if p.IsFloating() or not p.frame: + continue + + # because the pane is no longer in a floating, we need to + # reparent it to self._frame and destroy the floating frame + # reduce flicker + p.window.SetSize((1, 1)) + + # the following block is a workaround for bug #1531361 + # (see wxWidgets sourceforge page). On wxGTK (only), when + # a frame is shown/hidden, a move event unfortunately + # also gets fired. Because we may be dragging around + # a pane, we need to cancel that action here to prevent + # a spurious crash. + if self._action_window == p.frame: + if self._frame.HasCapture(): + self._frame.ReleaseMouse() + self._action = actionNone + self._action_window = None + + # hide the frame + if p.frame.IsShown(): + p.frame.Show(False) + + if self._action_window == p.frame: + self._action_window = None + + # reparent to self._frame and destroy the pane + p.window.Reparent(self._frame) + if isinstance(p.window, auibar.AuiToolBar): + p.window.SetAuiManager(self) + + if p.frame: + p.frame.SetSizer(None) + p.frame.Destroy() + p.frame = None + + # Only the master manager should create/destroy notebooks... + if not self._masterManager: + self.UpdateNotebook() + + # delete old sizer first + self._frame.SetSizer(None) + + # create a layout for all of the panes + sizer = self.LayoutAll(self._panes, self._docks, self._uiparts, False) + + # hide or show panes as necessary, + # and float panes as necessary + + pane_count = len(self._panes) + + for ii in xrange(pane_count): + p = self._panes[ii] + pFrame = p.frame + + if p.IsFloating(): + if pFrame is None: + # we need to create a frame for this + # pane, which has recently been floated + frame = self.CreateFloatingFrame(self._frame, p) + + # on MSW and Mac, if the owner desires transparent dragging, and + # the dragging is happening right now, then the floating + # window should have this style by default + if self._action in [actionDragFloatingPane, actionDragToolbarPane] and \ + self._agwFlags & AUI_MGR_TRANSPARENT_DRAG: + frame.SetTransparent(150) + + if p.IsToolbar(): + bar = p.window + if isinstance(bar, auibar.AuiToolBar): + bar.SetGripperVisible(False) + agwStyle = bar.GetAGWWindowStyleFlag() + bar.SetAGWWindowStyleFlag(agwStyle & ~AUI_TB_VERTICAL) + bar.Realize() + + s = p.window.GetMinSize() + p.BestSize(s) + p.FloatingSize(wx.DefaultSize) + + frame.SetPaneWindow(p) + p.needsTransparency = True + p.frame = pFrame = frame + if p.IsShown() and not frame.IsShown(): + frame.Show() + frame.Update() + else: + + # frame already exists, make sure it's position + # and size reflect the information in AuiPaneInfo + if pFrame.GetPosition() != p.floating_pos or pFrame.GetSize() != p.floating_size: + pFrame.SetDimensions(p.floating_pos.x, p.floating_pos.y, + p.floating_size.x, p.floating_size.y, wx.SIZE_USE_EXISTING) + + # update whether the pane is resizable or not + style = p.frame.GetWindowStyleFlag() + if p.IsFixed(): + style &= ~wx.RESIZE_BORDER + else: + style |= wx.RESIZE_BORDER + + p.frame.SetWindowStyleFlag(style) + + if pFrame.IsShown() != p.IsShown(): + p.needsTransparency = True + pFrame.Show(p.IsShown()) + + if pFrame.GetTitle() != p.caption: + pFrame.SetTitle(p.caption) + if p.icon.IsOk(): + pFrame.SetIcon(wx.IconFromBitmap(p.icon)) + + else: + + if p.IsToolbar(): +# self.SwitchToolBarOrientation(p) + p.best_size = p.window.GetBestSize() + + if p.window and not p.IsNotebookPage() and p.window.IsShown() != p.IsShown(): + p.window.Show(p.IsShown()) + + if pFrame and p.needsTransparency: + if pFrame.IsShown() and pFrame._transparent != p.transparent: + pFrame.SetTransparent(p.transparent) + pFrame._transparent = p.transparent + + p.needsTransparency = False + + # if "active panes" are no longer allowed, clear + # any optionActive values from the pane states + if self._agwFlags & AUI_MGR_ALLOW_ACTIVE_PANE == 0: + p.state &= ~AuiPaneInfo.optionActive + + self._panes[ii] = p + + old_pane_rects = [] + pane_count = len(self._panes) + + for p in self._panes: + r = wx.Rect() + if p.window and p.IsShown() and p.IsDocked(): + r = p.rect + + old_pane_rects.append(r) + + # apply the new sizer + self._frame.SetSizer(sizer) + self._frame.SetAutoLayout(False) + self.DoFrameLayout() + + # now that the frame layout is done, we need to check + # the new pane rectangles against the old rectangles that + # we saved a few lines above here. If the rectangles have + # changed, the corresponding panes must also be updated + for ii in xrange(pane_count): + p = self._panes[ii] + if p.window and p.IsShown() and p.IsDocked(): + if p.rect != old_pane_rects[ii]: + p.window.Refresh() + p.window.Update() + + if wx.Platform == "__WXMAC__": + self._frame.Refresh() + else: + self.Repaint() + + if not self._masterManager: + e = self.FireEvent(wxEVT_AUI_PERSPECTIVE_CHANGED, None, canVeto=False) + + + def UpdateNotebook(self): + """ Updates the automatic L{AuiNotebook} in the layout (if any exists). """ + + # Workout how many notebooks we need. + max_notebook = -1 + + # destroy floating panes which have been + # redocked or are becoming non-floating + for paneInfo in self._panes: + if max_notebook < paneInfo.notebook_id: + max_notebook = paneInfo.notebook_id + + # We are the master of our domain + extra_notebook = len(self._notebooks) + max_notebook += 1 + + for i in xrange(extra_notebook, max_notebook): + self.CreateNotebook() + + # Remove pages from notebooks that no-longer belong there ... + for nb, notebook in enumerate(self._notebooks): + pages = notebook.GetPageCount() + pageCounter, allPages = 0, pages + + # Check each tab ... + for page in xrange(pages): + + if page >= allPages: + break + + window = notebook.GetPage(pageCounter) + paneInfo = self.GetPane(window) + if paneInfo.IsOk() and paneInfo.notebook_id != nb: + notebook.RemovePage(pageCounter) + window.Hide() + window.Reparent(self._frame) + pageCounter -= 1 + allPages -= 1 + + pageCounter += 1 + + notebook.DoSizing() + + # Add notebook pages that aren't there already... + for paneInfo in self._panes: + if paneInfo.IsNotebookPage(): + + title = (paneInfo.caption == "" and [paneInfo.name] or [paneInfo.caption])[0] + + notebook = self._notebooks[paneInfo.notebook_id] + page_id = notebook.GetPageIndex(paneInfo.window) + + if page_id < 0: + + paneInfo.window.Reparent(notebook) + notebook.AddPage(paneInfo.window, title, True, paneInfo.icon) + + # Update title and icon ... + else: + + notebook.SetPageText(page_id, title) + notebook.SetPageBitmap(page_id, paneInfo.icon) + + notebook.DoSizing() + + # Wire-up newly created notebooks + elif paneInfo.IsNotebookControl() and not paneInfo.window: + paneInfo.window = self._notebooks[paneInfo.notebook_id] + + # Delete empty notebooks, and convert notebooks with 1 page to + # normal panes... + remap_ids = [-1]*len(self._notebooks) + nb_idx = 0 + + for nb, notebook in enumerate(self._notebooks): + if notebook.GetPageCount() == 1: + + # Convert notebook page to pane... + window = notebook.GetPage(0) + child_pane = self.GetPane(window) + notebook_pane = self.GetPane(notebook) + if child_pane.IsOk() and notebook_pane.IsOk(): + + child_pane.SetDockPos(notebook_pane) + child_pane.window.Hide() + child_pane.window.Reparent(self._frame) + child_pane.frame = None + child_pane.notebook_id = -1 + if notebook_pane.IsFloating(): + child_pane.Float() + + self.DetachPane(notebook) + + notebook.RemovePage(0) + notebook.Destroy() + + else: + + raise Exception("Odd notebook docking") + + elif notebook.GetPageCount() == 0: + + self.DetachPane(notebook) + notebook.Destroy() + + else: + + # Correct page ordering. The original wxPython code + # for this did not work properly, and would misplace + # windows causing errors. + notebook.Freeze() + self._notebooks[nb_idx] = notebook + pages = notebook.GetPageCount() + selected = notebook.GetPage(notebook.GetSelection()) + + # Take each page out of the notebook, group it with + # its current pane, and sort the list by pane.dock_pos + # order + pages_and_panes = [] + for idx in reversed(range(pages)): + page = notebook.GetPage(idx) + pane = self.GetPane(page) + pages_and_panes.append((page, pane)) + notebook.RemovePage(idx) + sorted_pnp = sorted(pages_and_panes, key=lambda tup: tup[1].dock_pos) + + # Grab the attributes from the panes which are ordered + # correctly, and copy those attributes to the original + # panes. (This avoids having to change the ordering + # of self._panes) Then, add the page back into the notebook + sorted_attributes = [self.GetAttributes(tup[1]) + for tup in sorted_pnp] + for attrs, tup in zip(sorted_attributes, pages_and_panes): + pane = tup[1] + self.SetAttributes(pane, attrs) + notebook.AddPage(pane.window, pane.caption) + + notebook.SetSelection(notebook.GetPageIndex(selected), True) + notebook.DoSizing() + notebook.Thaw() + + # It's a keeper. + remap_ids[nb] = nb_idx + nb_idx += 1 + + # Apply remap... + nb_count = len(self._notebooks) + + if nb_count != nb_idx: + + self._notebooks = self._notebooks[0:nb_idx] + for p in self._panes: + if p.notebook_id >= 0: + p.notebook_id = remap_ids[p.notebook_id] + if p.IsNotebookControl(): + p.SetNameFromNotebookId() + + # Make sure buttons are correct ... + for notebook in self._notebooks: + want_max = True + want_min = True + want_close = True + + pages = notebook.GetPageCount() + for page in xrange(pages): + + win = notebook.GetPage(page) + pane = self.GetPane(win) + if pane.IsOk(): + + if not pane.HasCloseButton(): + want_close = False + if not pane.HasMaximizeButton(): + want_max = False + if not pane.HasMinimizeButton(): + want_min = False + + notebook_pane = self.GetPane(notebook) + if notebook_pane.IsOk(): + if notebook_pane.HasMinimizeButton() != want_min: + if want_min: + button = AuiPaneButton(AUI_BUTTON_MINIMIZE) + notebook_pane.state |= AuiPaneInfo.buttonMinimize + notebook_pane.buttons.append(button) + + # todo: remove min/max + + if notebook_pane.HasMaximizeButton() != want_max: + if want_max: + button = AuiPaneButton(AUI_BUTTON_MAXIMIZE_RESTORE) + notebook_pane.state |= AuiPaneInfo.buttonMaximize + notebook_pane.buttons.append(button) + + # todo: remove min/max + + if notebook_pane.HasCloseButton() != want_close: + if want_close: + button = AuiPaneButton(AUI_BUTTON_CLOSE) + notebook_pane.state |= AuiPaneInfo.buttonClose + notebook_pane.buttons.append(button) + + # todo: remove close + + + def SmartShrink(self, docks, direction): + """ + Used to intelligently shrink the docks' size (if needed). + + :param `docks`: a list of L{AuiDockInfo} instances; + :param `direction`: the direction in which to shrink. + """ + + sashSize = self._art.GetMetric(AUI_DOCKART_SASH_SIZE) + caption_size = self._art.GetMetric(AUI_DOCKART_CAPTION_SIZE) + clientSize = self._frame.GetClientSize() + ourDocks = FindDocks(docks, direction, -1, -1) + oppositeDocks = FindOppositeDocks(docks, direction) + oppositeSize = self.GetOppositeDockTotalSize(docks, direction) + ourSize = 0 + + for dock in ourDocks: + ourSize += dock.size + + if not dock.toolbar: + ourSize += sashSize + + shrinkSize = ourSize + oppositeSize + + if direction == AUI_DOCK_TOP or direction == AUI_DOCK_BOTTOM: + shrinkSize -= clientSize.y + else: + shrinkSize -= clientSize.x + + if shrinkSize <= 0: + return docks + + # Combine arrays + for dock in oppositeDocks: + ourDocks.append(dock) + + oppositeDocks = [] + + for dock in ourDocks: + if dock.toolbar or not dock.resizable: + continue + + dockRange = dock.size - dock.min_size + + if dock.min_size == 0: + dockRange -= sashSize + if direction == AUI_DOCK_TOP or direction == AUI_DOCK_BOTTOM: + dockRange -= caption_size + + if dockRange >= shrinkSize: + + dock.size -= shrinkSize + return docks + + else: + + dock.size -= dockRange + shrinkSize -= dockRange + + return docks + + + def UpdateDockingGuides(self, paneInfo): + """ + Updates the docking guide windows positions and appearance. + + :param `paneInfo`: a L{AuiPaneInfo} instance. + """ + + if len(self._guides) == 0: + self.CreateGuideWindows() + + captionSize = self._art.GetMetric(AUI_DOCKART_CAPTION_SIZE) + frameRect = GetInternalFrameRect(self._frame, self._docks) + mousePos = wx.GetMousePosition() + + for indx, guide in enumerate(self._guides): + + pt = wx.Point() + guide_size = guide.host.GetSize() + if not guide.host: + raise Exception("Invalid docking host") + + direction = guide.dock_direction + + if direction == AUI_DOCK_LEFT: + pt.x = frameRect.x + guide_size.x / 2 + 16 + pt.y = frameRect.y + frameRect.height / 2 + + elif direction == AUI_DOCK_TOP: + pt.x = frameRect.x + frameRect.width / 2 + pt.y = frameRect.y + guide_size.y / 2 + 16 + + elif direction == AUI_DOCK_RIGHT: + pt.x = frameRect.x + frameRect.width - guide_size.x / 2 - 16 + pt.y = frameRect.y + frameRect.height / 2 + + elif direction == AUI_DOCK_BOTTOM: + pt.x = frameRect.x + frameRect.width / 2 + pt.y = frameRect.y + frameRect.height - guide_size.y / 2 - 16 + + elif direction == AUI_DOCK_CENTER: + rc = paneInfo.window.GetScreenRect() + pt.x = rc.x + rc.width / 2 + pt.y = rc.y + rc.height / 2 + if paneInfo.HasCaption(): + pt.y -= captionSize / 2 + elif paneInfo.HasCaptionLeft(): + pt.x -= captionSize / 2 + + # guide will be centered around point 'pt' + targetPosition = wx.Point(pt.x - guide_size.x / 2, pt.y - guide_size.y / 2) + + if guide.host.GetPosition() != targetPosition: + guide.host.Move(targetPosition) + + guide.host.AeroMove(targetPosition) + + if guide.dock_direction == AUI_DOCK_CENTER: + guide.host.ValidateNotebookDocking(paneInfo.IsNotebookDockable()) + + guide.host.UpdateDockGuide(mousePos) + + paneInfo.window.Lower() + + + def DoFrameLayout(self): + """ + This is an internal function which invokes `wx.Sizer.Layout` + on the frame's main sizer, then measures all the various UI items + and updates their internal rectangles. + + :note: This should always be called instead of calling + `self._managed_window.Layout()` directly. + """ + + self._frame.Layout() + + for part in self._uiparts: + # get the rectangle of the UI part + # originally, this code looked like this: + # part.rect = wx.Rect(part.sizer_item.GetPosition(), + # part.sizer_item.GetSize()) + # this worked quite well, with one exception: the mdi + # client window had a "deferred" size variable + # that returned the wrong size. It looks like + # a bug in wx, because the former size of the window + # was being returned. So, we will retrieve the part's + # rectangle via other means + + part.rect = part.sizer_item.GetRect() + flag = part.sizer_item.GetFlag() + border = part.sizer_item.GetBorder() + + if flag & wx.TOP: + part.rect.y -= border + part.rect.height += border + if flag & wx.LEFT: + part.rect.x -= border + part.rect.width += border + if flag & wx.BOTTOM: + part.rect.height += border + if flag & wx.RIGHT: + part.rect.width += border + + if part.type == AuiDockUIPart.typeDock: + part.dock.rect = part.rect + if part.type == AuiDockUIPart.typePane: + part.pane.rect = part.rect + + + def GetPanePart(self, wnd): + """ + Looks up the pane border UI part of the + pane specified. This allows the caller to get the exact rectangle + of the pane in question, including decorations like caption and border. + + :param `wnd`: the window to which the pane border belongs to. + """ + + for part in self._uiparts: + if part.type == AuiDockUIPart.typePaneBorder and \ + part.pane and part.pane.window == wnd: + return part + + for part in self._uiparts: + if part.type == AuiDockUIPart.typePane and \ + part.pane and part.pane.window == wnd: + return part + + return None + + + def GetDockPixelOffset(self, test): + """ + This is an internal function which returns + a dock's offset in pixels from the left side of the window + (for horizontal docks) or from the top of the window (for + vertical docks). + + This value is necessary for calculating fixed-pane/toolbar offsets + when they are dragged. + + :param `test`: a fake L{AuiPaneInfo} for testing purposes. + """ + + # the only way to accurately calculate the dock's + # offset is to actually run a theoretical layout + docks, panes = CopyDocksAndPanes2(self._docks, self._panes) + panes.append(test) + + sizer, panes, docks, uiparts = self.LayoutAll(panes, docks, [], True, False) + client_size = self._frame.GetClientSize() + sizer.SetDimension(0, 0, client_size.x, client_size.y) + sizer.Layout() + + for part in uiparts: + pos = part.sizer_item.GetPosition() + size = part.sizer_item.GetSize() + part.rect = wx.RectPS(pos, size) + if part.type == AuiDockUIPart.typeDock: + part.dock.rect = part.rect + + sizer.Destroy() + + for dock in docks: + if test.dock_direction == dock.dock_direction and \ + test.dock_layer == dock.dock_layer and \ + test.dock_row == dock.dock_row: + + if dock.IsVertical(): + return dock.rect.y + else: + return dock.rect.x + + return 0 + + + def GetPartnerDock(self, dock): + """ + Returns the partner dock for the input dock. + + :param `dock`: a L{AuiDockInfo} instance. + """ + + for layer in xrange(dock.dock_layer, -1, -1): + + bestDock = None + + for tmpDock in self._docks: + + if tmpDock.dock_layer != layer: + continue + + if tmpDock.dock_direction != dock.dock_direction: + continue + + if tmpDock.dock_layer < dock.dock_layer: + + if not bestDock or tmpDock.dock_row < bestDock.dock_row: + bestDock = tmpDock + + elif tmpDock.dock_row > dock.dock_row: + + if not bestDock or tmpDock.dock_row > bestDock.dock_row: + bestDock = tmpDock + + if bestDock: + return bestDock + + return None + + + def GetPartnerPane(self, dock, pane): + """ + Returns the partner pane for the input pane. They both need to live + in the same L{AuiDockInfo}. + + :param `dock`: a L{AuiDockInfo} instance; + :param `pane`: a L{AuiPaneInfo} class. + """ + + panePosition = -1 + + for i, tmpPane in enumerate(dock.panes): + if tmpPane.window == pane.window: + panePosition = i + elif not tmpPane.IsFixed() and panePosition != -1: + return tmpPane + + return None + + + def GetTotalPixSizeAndProportion(self, dock): + """ + Returns the dimensions and proportion of the input dock. + + :param `dock`: the L{AuiDockInfo} structure to analyze. + """ + + totalPixsize = 0 + totalProportion = 0 + + # determine the total proportion of all resizable panes, + # and the total size of the dock minus the size of all + # the fixed panes + for tmpPane in dock.panes: + + if tmpPane.IsFixed(): + continue + + totalProportion += tmpPane.dock_proportion + + if dock.IsHorizontal(): + totalPixsize += tmpPane.rect.width + else: + totalPixsize += tmpPane.rect.height + +## if tmpPane.min_size.IsFullySpecified(): +## +## if dock.IsHorizontal(): +## totalPixsize -= tmpPane.min_size.x +## else: +## totalPixsize -= tmpPane.min_size.y + + return totalPixsize, totalProportion + + + def GetOppositeDockTotalSize(self, docks, direction): + """ + Returns the dimensions of the dock which lives opposite of the input dock. + + :param `docks`: a list of L{AuiDockInfo} structures to analyze; + :param `direction`: the direction in which to look for the opposite dock. + """ + + sash_size = self._art.GetMetric(AUI_DOCKART_SASH_SIZE) + caption_size = self._art.GetMetric(AUI_DOCKART_CAPTION_SIZE) + pane_border_size = self._art.GetMetric(AUI_DOCKART_PANE_BORDER_SIZE) + minSizeMax = 0 + result = sash_size + vertical = False + + if direction in [AUI_DOCK_TOP, AUI_DOCK_BOTTOM]: + vertical = True + + # Get minimum size of the most inner area + for tmpDock in docks: + + if tmpDock.dock_layer != 0: + continue + + if tmpDock.dock_direction != AUI_DOCK_CENTER and tmpDock.IsVertical() != vertical: + continue + + for tmpPane in tmpDock.panes: + + minSize = pane_border_size*2 - sash_size + + if vertical: + minSize += tmpPane.min_size.y + caption_size + else: + minSize += tmpPane.min_size.x + + if minSize > minSizeMax: + minSizeMax = minSize + + result += minSizeMax + + # Get opposite docks + oppositeDocks = FindOppositeDocks(docks, direction) + + # Sum size of the opposite docks and their sashes + for dock in oppositeDocks: + result += dock.size + # if it's not a toolbar add the sash_size too + if not dock.toolbar: + result += sash_size + + return result + + + def CalculateDockSizerLimits(self, dock): + """ + Calculates the minimum and maximum sizes allowed for the input dock. + + :param `dock`: the L{AuiDockInfo} structure to analyze. + """ + + docks, panes = CopyDocksAndPanes2(self._docks, self._panes) + + sash_size = self._art.GetMetric(AUI_DOCKART_SASH_SIZE) + caption_size = self._art.GetMetric(AUI_DOCKART_CAPTION_SIZE) + opposite_size = self.GetOppositeDockTotalSize(docks, dock.dock_direction) + + for tmpDock in docks: + + if tmpDock.dock_direction == dock.dock_direction and \ + tmpDock.dock_layer == dock.dock_layer and \ + tmpDock.dock_row == dock.dock_row: + + tmpDock.size = 1 + break + + sizer, panes, docks, uiparts = self.LayoutAll(panes, docks, [], True, False) + client_size = self._frame.GetClientSize() + sizer.SetDimension(0, 0, client_size.x, client_size.y) + sizer.Layout() + + for part in uiparts: + + part.rect = wx.RectPS(part.sizer_item.GetPosition(), part.sizer_item.GetSize()) + if part.type == AuiDockUIPart.typeDock: + part.dock.rect = part.rect + + sizer.Destroy() + new_dock = None + + for tmpDock in docks: + if tmpDock.dock_direction == dock.dock_direction and \ + tmpDock.dock_layer == dock.dock_layer and \ + tmpDock.dock_row == dock.dock_row: + + new_dock = tmpDock + break + + partnerDock = self.GetPartnerDock(dock) + + if partnerDock: + partnerRange = partnerDock.size - partnerDock.min_size + if partnerDock.min_size == 0: + partnerRange -= sash_size + if dock.IsHorizontal(): + partnerRange -= caption_size + + direction = dock.dock_direction + + if direction == AUI_DOCK_LEFT: + minPix = new_dock.rect.x + new_dock.rect.width + maxPix = dock.rect.x + dock.rect.width + maxPix += partnerRange + + elif direction == AUI_DOCK_TOP: + minPix = new_dock.rect.y + new_dock.rect.height + maxPix = dock.rect.y + dock.rect.height + maxPix += partnerRange + + elif direction == AUI_DOCK_RIGHT: + minPix = dock.rect.x - partnerRange - sash_size + maxPix = new_dock.rect.x - sash_size + + elif direction == AUI_DOCK_BOTTOM: + minPix = dock.rect.y - partnerRange - sash_size + maxPix = new_dock.rect.y - sash_size + + return minPix, maxPix + + direction = new_dock.dock_direction + + if direction == AUI_DOCK_LEFT: + minPix = new_dock.rect.x + new_dock.rect.width + maxPix = client_size.x - opposite_size - sash_size + + elif direction == AUI_DOCK_TOP: + minPix = new_dock.rect.y + new_dock.rect.height + maxPix = client_size.y - opposite_size - sash_size + + elif direction == AUI_DOCK_RIGHT: + minPix = opposite_size + maxPix = new_dock.rect.x - sash_size + + elif direction == AUI_DOCK_BOTTOM: + minPix = opposite_size + maxPix = new_dock.rect.y - sash_size + + return minPix, maxPix + + + def CalculatePaneSizerLimits(self, dock, pane): + """ + Calculates the minimum and maximum sizes allowed for the input pane. + + :param `dock`: the L{AuiDockInfo} structure to which `pane` belongs to; + :param `pane`: a L{AuiPaneInfo} class for which calculation are requested. + """ + + if pane.IsFixed(): + if dock.IsHorizontal(): + minPix = maxPix = pane.rect.x + 1 + pane.rect.width + else: + minPix = maxPix = pane.rect.y + 1 + pane.rect.height + + return minPix, maxPix + + totalPixsize, totalProportion = self.GetTotalPixSizeAndProportion(dock) + partnerPane = self.GetPartnerPane(dock, pane) + + if dock.IsHorizontal(): + + minPix = pane.rect.x + 1 + maxPix = pane.rect.x + 1 + pane.rect.width + + if pane.min_size.IsFullySpecified(): + minPix += pane.min_size.x + else: + minPix += 1 + + if partnerPane: + maxPix += partnerPane.rect.width + + if partnerPane.min_size.IsFullySpecified(): + maxPix -= partnerPane.min_size.x - 1 + + else: + minPix = maxPix + + else: + + minPix = pane.rect.y + 1 + maxPix = pane.rect.y + 1 + pane.rect.height + + if pane.min_size.IsFullySpecified(): + minPix += pane.min_size.y + else: + minPix += 1 + + if partnerPane: + maxPix += partnerPane.rect.height + + if partnerPane.min_size.IsFullySpecified(): + maxPix -= partnerPane.min_size.y - 1 + + else: + minPix = maxPix + + return minPix, maxPix + + + def CheckMovableSizer(self, part): + """ + Checks if a UI part can be actually resized. + + :param `part`: a UI part. + """ + + # a dock may not be resized if it has a single + # pane which is not resizable + if part.type == AuiDockUIPart.typeDockSizer and part.dock and \ + len(part.dock.panes) == 1 and part.dock.panes[0].IsFixed(): + + return False + + if part.pane: + + # panes that may not be resized should be ignored here + minPix, maxPix = self.CalculatePaneSizerLimits(part.dock, part.pane) + + if minPix == maxPix: + return False + + return True + + + def PaneFromTabEvent(self, event): + """ + Returns a L{AuiPaneInfo} from a L{AuiNotebookEvent} event. + + :param `event`: a L{AuiNotebookEvent} event. + """ + + obj = event.GetEventObject() + + if obj and isinstance(obj, auibook.AuiTabCtrl): + + page_idx = obj.GetActivePage() + + if page_idx >= 0: + page = obj.GetPage(page_idx) + window = page.window + if window: + return self.GetPane(window) + + elif obj and isinstance(obj, auibook.AuiNotebook): + + page_idx = event.GetSelection() + + if page_idx >= 0: + window = obj.GetPage(page_idx) + if window: + return self.GetPane(window) + + return NonePaneInfo + + + def OnTabBeginDrag(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_BEGIN_DRAG`` event. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + if self._masterManager: + self._masterManager.OnTabBeginDrag(event) + + else: + paneInfo = self.PaneFromTabEvent(event) + + if paneInfo.IsOk(): + + # It's one of ours! + self._action = actionDragFloatingPane + mouse = wx.GetMousePosition() + + # set initial float position - may have to think about this + # offset a bit more later ... + self._action_offset = wx.Point(20, 10) + self._toolbar_action_offset = wx.Point(20, 10) + + paneInfo.floating_pos = mouse - self._action_offset + paneInfo.dock_pos = AUI_DOCK_NONE + paneInfo.notebook_id = -1 + + tab = event.GetEventObject() + + if tab.HasCapture(): + tab.ReleaseMouse() + + # float the window + if paneInfo.IsMaximized(): + self.RestorePane(paneInfo) + paneInfo.Float() + self.Update() + + self._action_window = paneInfo.window + + self._frame.CaptureMouse() + event.SetDispatched(True) + + else: + + # not our window + event.Skip() + + + def OnTabPageClose(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_PAGE_CLOSE`` event. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + if self._masterManager: + self._masterManager.OnTabPageClose(event) + + else: + + p = self.PaneFromTabEvent(event) + if p.IsOk(): + + # veto it because we will call "RemovePage" ourselves + event.Veto() + + # Now ask the app if they really want to close... + # fire pane close event + e = AuiManagerEvent(wxEVT_AUI_PANE_CLOSE) + e.SetPane(p) + e.SetCanVeto(True) + self.ProcessMgrEvent(e) + + if e.GetVeto(): + return + + self.ClosePane(p) + self.Update() + else: + event.Skip() + + + def OnTabSelected(self, event): + """ + Handles the ``EVT_AUINOTEBOOK_PAGE_CHANGED`` event. + + :param `event`: a L{AuiNotebookEvent} event to be processed. + """ + + if self._masterManager: + self._masterManager.OnTabSelected(event) + return + + obj = event.GetEventObject() + + if obj and isinstance(obj, auibook.AuiNotebook): + + notebook = obj + page = notebook.GetPage(event.GetSelection()) + paneInfo = self.GetPane(page) + + if paneInfo.IsOk(): + notebookRoot = GetNotebookRoot(self._panes, paneInfo.notebook_id) + if notebookRoot: + + notebookRoot.Caption(paneInfo.caption) + self.RefreshCaptions() + + event.Skip() + + + def GetNotebooks(self): + """ Returns all the automatic L{AuiNotebook} in the L{AuiManager}. """ + + if self._masterManager: + return self._masterManager.GetNotebooks() + + return self._notebooks + + + def SetMasterManager(self, manager): + """ + Sets the master manager for an automatic L{AuiNotebook}. + + :param `manager`: an instance of L{AuiManager}. + """ + + self._masterManager = manager + + + def ProcessDockResult(self, target, new_pos): + """ + This is a utility function used by L{DoDrop} - it checks + if a dock operation is allowed, the new dock position is copied into + the target info. If the operation was allowed, the function returns ``True``. + + :param `target`: the L{AuiPaneInfo} instance to be docked; + :param `new_pos`: the new docking position if the docking operation is allowed. + """ + + allowed = False + direction = new_pos.dock_direction + + if direction == AUI_DOCK_TOP: + allowed = target.IsTopDockable() + elif direction == AUI_DOCK_BOTTOM: + allowed = target.IsBottomDockable() + elif direction == AUI_DOCK_LEFT: + allowed = target.IsLeftDockable() + elif direction == AUI_DOCK_RIGHT: + allowed = target.IsRightDockable() + + if allowed: + target = new_pos + + if target.IsToolbar(): + self.SwitchToolBarOrientation(target) + + return allowed, target + + + def SwitchToolBarOrientation(self, pane): + """ + Switches the toolbar orientation from vertical to horizontal and vice-versa. + This is especially useful for vertical docked toolbars once they float. + + :param `pane`: an instance of L{AuiPaneInfo}, which may have a L{AuiToolBar} + window associated with it. + """ + + if not isinstance(pane.window, auibar.AuiToolBar): + return pane + + if pane.IsFloating(): + return pane + + toolBar = pane.window + direction = pane.dock_direction + vertical = direction in [AUI_DOCK_LEFT, AUI_DOCK_RIGHT] + + agwStyle = toolBar.GetAGWWindowStyleFlag() + new_agwStyle = agwStyle + + if vertical: + new_agwStyle |= AUI_TB_VERTICAL + else: + new_agwStyle &= ~(AUI_TB_VERTICAL) + + if agwStyle != new_agwStyle: + toolBar.SetAGWWindowStyleFlag(new_agwStyle) + if not toolBar.GetGripperVisible(): + toolBar.SetGripperVisible(True) + + s = pane.window.GetMinSize() + pane.BestSize(s) + + if new_agwStyle != agwStyle: + toolBar.Realize() + + return pane + + + def DoDrop(self, docks, panes, target, pt, offset=wx.Point(0, 0)): + """ + This is an important function. It basically takes a mouse position, + and determines where the panes new position would be. If the pane is to be + dropped, it performs the drop operation using the specified dock and pane + arrays. By specifying copy dock and pane arrays when calling, a "what-if" + scenario can be performed, giving precise coordinates for drop hints. + + :param `docks`: a list of L{AuiDockInfo} classes; + :param `panes`: a list of L{AuiPaneInfo} instances; + :param `pt`: a mouse position to check for a drop operation; + :param `offset`: a possible offset from the input point `pt`. + """ + + if target.IsToolbar(): + return self.DoDropToolbar(docks, panes, target, pt, offset) + elif target.IsFloating(): + return self.DoDropFloatingPane(docks, panes, target, pt) + else: + return self.DoDropNonFloatingPane(docks, panes, target, pt) + + + def CopyTarget(self, target): + """ + Copies all the attributes of the input `target` into another L{AuiPaneInfo}. + + :param `target`: the source L{AuiPaneInfo} from where to copy attributes. + """ + + drop = AuiPaneInfo() + drop.name = target.name + drop.caption = target.caption + drop.window = target.window + drop.frame = target.frame + drop.state = target.state + drop.dock_direction = target.dock_direction + drop.dock_layer = target.dock_layer + drop.dock_row = target.dock_row + drop.dock_pos = target.dock_pos + drop.best_size = wx.Size(*target.best_size) + drop.min_size = wx.Size(*target.min_size) + drop.max_size = wx.Size(*target.max_size) + drop.floating_pos = wx.Point(*target.floating_pos) + drop.floating_size = wx.Size(*target.floating_size) + drop.dock_proportion = target.dock_proportion + drop.buttons = target.buttons + drop.rect = wx.Rect(*target.rect) + drop.icon = target.icon + drop.notebook_id = target.notebook_id + drop.transparent = target.transparent + drop.snapped = target.snapped + drop.minimize_mode = target.minimize_mode + + return drop + + + def DoDropToolbar(self, docks, panes, target, pt, offset): + """ + Handles the situation in which the dropped pane contains a toolbar. + + :param `docks`: a list of L{AuiDockInfo} classes; + :param `panes`: a list of L{AuiPaneInfo} instances; + :param `target`: the target pane containing the toolbar; + :param `pt`: a mouse position to check for a drop operation; + :param `offset`: a possible offset from the input point `pt`. + """ + + drop = self.CopyTarget(target) + + # The result should always be shown + drop.Show() + + # Check to see if the toolbar has been dragged out of the window + if CheckOutOfWindow(self._frame, pt): + if self._agwFlags & AUI_MGR_ALLOW_FLOATING and drop.IsFloatable(): + drop.Float() + + return self.ProcessDockResult(target, drop) + + # Allow directional change when the cursor leaves this rect + safeRect = wx.Rect(*target.rect) + if target.IsHorizontal(): + safeRect.Inflate(100, 50) + else: + safeRect.Inflate(50, 100) + + # Check to see if the toolbar has been dragged to edge of the frame + dropDir = CheckEdgeDrop(self._frame, docks, pt) + + if dropDir != -1: + + if dropDir == wx.LEFT: + drop.Dock().Left().Layer(auiToolBarLayer).Row(0). \ + Position(pt.y - self.GetDockPixelOffset(drop) - offset.y) + + elif dropDir == wx.RIGHT: + drop.Dock().Right().Layer(auiToolBarLayer).Row(0). \ + Position(pt.y - self.GetDockPixelOffset(drop) - offset.y) + + elif dropDir == wx.TOP: + drop.Dock().Top().Layer(auiToolBarLayer).Row(0). \ + Position(pt.x - self.GetDockPixelOffset(drop) - offset.x) + + elif dropDir == wx.BOTTOM: + drop.Dock().Bottom().Layer(auiToolBarLayer).Row(0). \ + Position(pt.x - self.GetDockPixelOffset(drop) - offset.x) + + if not target.IsFloating() and safeRect.Contains(pt) and \ + target.dock_direction != drop.dock_direction: + return False, target + + return self.ProcessDockResult(target, drop) + + # If the windows is floating and out of the client area, do nothing + if drop.IsFloating() and not self._frame.GetClientRect().Contains(pt): + return False, target + + # Ok, can't drop on edge - check internals ... + + clientSize = self._frame.GetClientSize() + x = Clip(pt.x, 0, clientSize.x - 1) + y = Clip(pt.y, 0, clientSize.y - 1) + part = self.HitTest(x, y) + + if not part or not part.dock: + return False, target + + dock = part.dock + + # toolbars may only be moved in and to fixed-pane docks, + # otherwise we will try to float the pane. Also, the pane + # should float if being dragged over center pane windows + if not dock.fixed or dock.dock_direction == AUI_DOCK_CENTER: + + if (self._agwFlags & AUI_MGR_ALLOW_FLOATING and drop.IsFloatable()) or \ + dock.dock_direction not in [AUI_DOCK_CENTER, AUI_DOCK_NONE]: + if drop.IsFloatable(): + drop.Float() + + return self.ProcessDockResult(target, drop) + + # calculate the offset from where the dock begins + # to the point where the user dropped the pane + dockDropOffset = 0 + if dock.IsHorizontal(): + dockDropOffset = pt.x - dock.rect.x - offset.x + else: + dockDropOffset = pt.y - dock.rect.y - offset.y + + drop.Dock().Direction(dock.dock_direction).Layer(dock.dock_layer). \ + Row(dock.dock_row).Position(dockDropOffset) + + if (pt.y <= dock.rect.GetTop() + 2 and dock.IsHorizontal()) or \ + (pt.x <= dock.rect.GetLeft() + 2 and dock.IsVertical()): + + if dock.dock_direction in [AUI_DOCK_TOP, AUI_DOCK_LEFT]: + row = drop.dock_row + panes = DoInsertDockRow(panes, dock.dock_direction, dock.dock_layer, dock.dock_row) + drop.dock_row = row + + else: + panes = DoInsertDockRow(panes, dock.dock_direction, dock.dock_layer, dock.dock_row+1) + drop.dock_row = dock.dock_row + 1 + + if (pt.y >= dock.rect.GetBottom() - 2 and dock.IsHorizontal()) or \ + (pt.x >= dock.rect.GetRight() - 2 and dock.IsVertical()): + + if dock.dock_direction in [AUI_DOCK_TOP, AUI_DOCK_LEFT]: + panes = DoInsertDockRow(panes, dock.dock_direction, dock.dock_layer, dock.dock_row+1) + drop.dock_row = dock.dock_row+1 + + else: + row = drop.dock_row + panes = DoInsertDockRow(panes, dock.dock_direction, dock.dock_layer, dock.dock_row) + drop.dock_row = row + + if not target.IsFloating() and safeRect.Contains(pt) and \ + target.dock_direction != drop.dock_direction: + return False, target + + return self.ProcessDockResult(target, drop) + + + def DoDropFloatingPane(self, docks, panes, target, pt): + """ + Handles the situation in which the dropped pane contains a normal window. + + :param `docks`: a list of L{AuiDockInfo} classes; + :param `panes`: a list of L{AuiPaneInfo} instances; + :param `target`: the target pane containing the window; + :param `pt`: a mouse position to check for a drop operation. + """ + + screenPt = self._frame.ClientToScreen(pt) + paneInfo = self.PaneHitTest(panes, pt) + + if paneInfo.IsMaximized(): + return False, target + + if paneInfo.window is None: + return False, target + + # search the dock guides. + # reverse order to handle the center first. + for i in xrange(len(self._guides)-1, -1, -1): + guide = self._guides[i] + + # do hit testing on the guide + dir = guide.host.HitTest(screenPt.x, screenPt.y) + + if dir == -1: # point was outside of the dock guide + continue + + if dir == wx.ALL: # target is a single dock guide + return self.DoDropLayer(docks, target, guide.dock_direction) + + elif dir == wx.CENTER: + + if not target.IsNotebookDockable(): + continue + if not paneInfo.IsNotebookDockable() and not paneInfo.IsNotebookControl(): + continue + + if not paneInfo.HasNotebook(): + + # Add a new notebook pane with the original as a tab... + self.CreateNotebookBase(panes, paneInfo) + + # Add new item to notebook + target.NotebookPage(paneInfo.notebook_id) + + else: + + drop_pane = False + drop_row = False + + insert_dir = paneInfo.dock_direction + insert_layer = paneInfo.dock_layer + insert_row = paneInfo.dock_row + insert_pos = paneInfo.dock_pos + + if insert_dir == AUI_DOCK_CENTER: + + insert_layer = 0 + if dir == wx.LEFT: + insert_dir = AUI_DOCK_LEFT + elif dir == wx.UP: + insert_dir = AUI_DOCK_TOP + elif dir == wx.RIGHT: + insert_dir = AUI_DOCK_RIGHT + elif dir == wx.DOWN: + insert_dir = AUI_DOCK_BOTTOM + + if insert_dir == AUI_DOCK_LEFT: + + drop_pane = (dir == wx.UP or dir == wx.DOWN) + drop_row = (dir == wx.LEFT or dir == wx.RIGHT) + if dir == wx.RIGHT: + insert_row += 1 + elif dir == wx.DOWN: + insert_pos += 1 + + elif insert_dir == AUI_DOCK_RIGHT: + + drop_pane = (dir == wx.UP or dir == wx.DOWN) + drop_row = (dir == wx.LEFT or dir == wx.RIGHT) + if dir == wx.LEFT: + insert_row += 1 + elif dir == wx.DOWN: + insert_pos += 1 + + elif insert_dir == AUI_DOCK_TOP: + + drop_pane = (dir == wx.LEFT or dir == wx.RIGHT) + drop_row = (dir == wx.UP or dir == wx.DOWN) + if dir == wx.DOWN: + insert_row += 1 + elif dir == wx.RIGHT: + insert_pos += 1 + + elif insert_dir == AUI_DOCK_BOTTOM: + + drop_pane = (dir == wx.LEFT or dir == wx.RIGHT) + drop_row = (dir == wx.UP or dir == wx.DOWN) + if dir == wx.UP: + insert_row += 1 + elif dir == wx.RIGHT: + insert_pos += 1 + + if paneInfo.dock_direction == AUI_DOCK_CENTER: + insert_row = GetMaxRow(panes, insert_dir, insert_layer) + 1 + + if drop_pane: + return self.DoDropPane(panes, target, insert_dir, insert_layer, insert_row, insert_pos) + + if drop_row: + return self.DoDropRow(panes, target, insert_dir, insert_layer, insert_row) + + return True, target + + return False, target + + + def DoDropNonFloatingPane(self, docks, panes, target, pt): + """ + Handles the situation in which the dropped pane is not floating. + + :param `docks`: a list of L{AuiDockInfo} classes; + :param `panes`: a list of L{AuiPaneInfo} instances; + :param `target`: the target pane containing the toolbar; + :param `pt`: a mouse position to check for a drop operation. + """ + + screenPt = self._frame.ClientToScreen(pt) + clientSize = self._frame.GetClientSize() + frameRect = GetInternalFrameRect(self._frame, self._docks) + + drop = self.CopyTarget(target) + + # The result should always be shown + drop.Show() + + part = self.HitTest(pt.x, pt.y) + + if not part: + return False, target + + if part.type == AuiDockUIPart.typeDockSizer: + + if len(part.dock.panes) != 1: + return False, target + + part = self.GetPanePart(part.dock.panes[0].window) + if not part: + return False, target + + if not part.pane: + return False, target + + part = self.GetPanePart(part.pane.window) + if not part: + return False, target + + insert_dock_row = False + insert_row = part.pane.dock_row + insert_dir = part.pane.dock_direction + insert_layer = part.pane.dock_layer + + direction = part.pane.dock_direction + + if direction == AUI_DOCK_TOP: + if pt.y >= part.rect.y and pt.y < part.rect.y+auiInsertRowPixels: + insert_dock_row = True + + elif direction == AUI_DOCK_BOTTOM: + if pt.y > part.rect.y+part.rect.height-auiInsertRowPixels and \ + pt.y <= part.rect.y + part.rect.height: + insert_dock_row = True + + elif direction == AUI_DOCK_LEFT: + if pt.x >= part.rect.x and pt.x < part.rect.x+auiInsertRowPixels: + insert_dock_row = True + + elif direction == AUI_DOCK_RIGHT: + if pt.x > part.rect.x+part.rect.width-auiInsertRowPixels and \ + pt.x <= part.rect.x+part.rect.width: + insert_dock_row = True + + elif direction == AUI_DOCK_CENTER: + + # "new row pixels" will be set to the default, but + # must never exceed 20% of the window size + new_row_pixels_x = auiNewRowPixels + new_row_pixels_y = auiNewRowPixels + + if new_row_pixels_x > (part.rect.width*20)/100: + new_row_pixels_x = (part.rect.width*20)/100 + + if new_row_pixels_y > (part.rect.height*20)/100: + new_row_pixels_y = (part.rect.height*20)/100 + + # determine if the mouse pointer is in a location that + # will cause a new row to be inserted. The hot spot positions + # are along the borders of the center pane + + insert_layer = 0 + insert_dock_row = True + pr = part.rect + + if pt.x >= pr.x and pt.x < pr.x + new_row_pixels_x: + insert_dir = AUI_DOCK_LEFT + elif pt.y >= pr.y and pt.y < pr.y + new_row_pixels_y: + insert_dir = AUI_DOCK_TOP + elif pt.x >= pr.x + pr.width - new_row_pixels_x and pt.x < pr.x + pr.width: + insert_dir = AUI_DOCK_RIGHT + elif pt.y >= pr.y+ pr.height - new_row_pixels_y and pt.y < pr.y + pr.height: + insert_dir = AUI_DOCK_BOTTOM + else: + return False, target + + insert_row = GetMaxRow(panes, insert_dir, insert_layer) + 1 + + if insert_dock_row: + + panes = DoInsertDockRow(panes, insert_dir, insert_layer, insert_row) + drop.Dock().Direction(insert_dir).Layer(insert_layer). \ + Row(insert_row).Position(0) + + return self.ProcessDockResult(target, drop) + + # determine the mouse offset and the pane size, both in the + # direction of the dock itself, and perpendicular to the dock + + if part.orientation == wx.VERTICAL: + + offset = pt.y - part.rect.y + size = part.rect.GetHeight() + + else: + + offset = pt.x - part.rect.x + size = part.rect.GetWidth() + + drop_position = part.pane.dock_pos + + # if we are in the top/left part of the pane, + # insert the pane before the pane being hovered over + if offset <= size/2: + + drop_position = part.pane.dock_pos + panes = DoInsertPane(panes, + part.pane.dock_direction, + part.pane.dock_layer, + part.pane.dock_row, + part.pane.dock_pos) + + # if we are in the bottom/right part of the pane, + # insert the pane before the pane being hovered over + if offset > size/2: + + drop_position = part.pane.dock_pos+1 + panes = DoInsertPane(panes, + part.pane.dock_direction, + part.pane.dock_layer, + part.pane.dock_row, + part.pane.dock_pos+1) + + + drop.Dock(). \ + Direction(part.dock.dock_direction). \ + Layer(part.dock.dock_layer).Row(part.dock.dock_row). \ + Position(drop_position) + + return self.ProcessDockResult(target, drop) + + + def DoDropLayer(self, docks, target, dock_direction): + """ + Handles the situation in which `target` is a single dock guide. + + :param `docks`: a list of L{AuiDockInfo} classes; + :param `target`: the target pane; + :param `dock_direction`: the docking direction. + """ + + drop = self.CopyTarget(target) + + if dock_direction == AUI_DOCK_LEFT: + drop.Dock().Left() + drop_new_layer = max(max(GetMaxLayer(docks, AUI_DOCK_LEFT), + GetMaxLayer(docks, AUI_DOCK_BOTTOM)), + GetMaxLayer(docks, AUI_DOCK_TOP)) + 1 + + elif dock_direction == AUI_DOCK_TOP: + drop.Dock().Top() + drop_new_layer = max(max(GetMaxLayer(docks, AUI_DOCK_TOP), + GetMaxLayer(docks, AUI_DOCK_LEFT)), + GetMaxLayer(docks, AUI_DOCK_RIGHT)) + 1 + + elif dock_direction == AUI_DOCK_RIGHT: + drop.Dock().Right() + drop_new_layer = max(max(GetMaxLayer(docks, AUI_DOCK_RIGHT), + GetMaxLayer(docks, AUI_DOCK_TOP)), + GetMaxLayer(docks, AUI_DOCK_BOTTOM)) + 1 + + elif dock_direction == AUI_DOCK_BOTTOM: + drop.Dock().Bottom() + drop_new_layer = max(max(GetMaxLayer(docks, AUI_DOCK_BOTTOM), + GetMaxLayer(docks, AUI_DOCK_LEFT)), + GetMaxLayer(docks, AUI_DOCK_RIGHT)) + 1 + + else: + return False, target + + + drop.Dock().Layer(drop_new_layer) + return self.ProcessDockResult(target, drop) + + + def DoDropPane(self, panes, target, dock_direction, dock_layer, dock_row, dock_pos): + """ + Drop a pane in the interface. + + :param `panes`: a list of L{AuiPaneInfo} classes; + :param `target`: the target pane; + :param `dock_direction`: the docking direction; + :param `dock_layer`: the docking layer; + :param `dock_row`: the docking row; + :param `dock_pos`: the docking position. + """ + + drop = self.CopyTarget(target) + panes = DoInsertPane(panes, dock_direction, dock_layer, dock_row, dock_pos) + + drop.Dock().Direction(dock_direction).Layer(dock_layer).Row(dock_row).Position(dock_pos) + return self.ProcessDockResult(target, drop) + + + def DoDropRow(self, panes, target, dock_direction, dock_layer, dock_row): + """ + Insert a row in the interface before dropping. + + :param `panes`: a list of L{AuiPaneInfo} classes; + :param `target`: the target pane; + :param `dock_direction`: the docking direction; + :param `dock_layer`: the docking layer; + :param `dock_row`: the docking row. + """ + + drop = self.CopyTarget(target) + panes = DoInsertDockRow(panes, dock_direction, dock_layer, dock_row) + + drop.Dock().Direction(dock_direction).Layer(dock_layer).Row(dock_row).Position(0) + return self.ProcessDockResult(target, drop) + + + def ShowHint(self, rect): + """ + Shows the AUI hint window. + + :param `rect`: the hint rect calculated in advance. + """ + + if rect == self._last_hint: + return + + if self._agwFlags & AUI_MGR_RECTANGLE_HINT and wx.Platform != "__WXMAC__": + + if self._last_hint != rect: + # remove the last hint rectangle + self._last_hint = wx.Rect(*rect) + self._frame.Refresh() + self._frame.Update() + + screendc = wx.ScreenDC() + clip = wx.Region(1, 1, 10000, 10000) + + # clip all floating windows, so we don't draw over them + for pane in self._panes: + if pane.IsFloating() and pane.frame.IsShown(): + + rect2 = wx.Rect(*pane.frame.GetRect()) + if wx.Platform == "__WXGTK__": + # wxGTK returns the client size, not the whole frame size + rect2.width += 15 + rect2.height += 35 + rect2.Inflate(5, 5) + + clip.SubtractRect(rect2) + + # As we can only hide the hint by redrawing the managed window, we + # need to clip the region to the managed window too or we get + # nasty redrawn problems. + clip.IntersectRect(self._frame.GetRect()) + screendc.SetClippingRegionAsRegion(clip) + + stipple = PaneCreateStippleBitmap() + brush = wx.BrushFromBitmap(stipple) + screendc.SetBrush(brush) + screendc.SetPen(wx.TRANSPARENT_PEN) + screendc.DrawRectangle(rect.x, rect.y, 5, rect.height) + screendc.DrawRectangle(rect.x+5, rect.y, rect.width-10, 5) + screendc.DrawRectangle(rect.x+rect.width-5, rect.y, 5, rect.height) + screendc.DrawRectangle(rect.x+5, rect.y+rect.height-5, rect.width-10, 5) + RefreshDockingGuides(self._guides) + + return + + if not self._hint_window: + self.CreateHintWindow() + + if self._hint_window: + self._hint_window.SetRect(rect) + self._hint_window.Show() + + self._hint_fadeamt = self._hint_fademax + + if self._agwFlags & AUI_MGR_HINT_FADE: + self._hint_fadeamt = 0 + self._hint_window.SetTransparent(self._hint_fadeamt) + + if self._action == actionDragFloatingPane and self._action_window: + self._action_window.SetFocus() + + if self._hint_fadeamt != self._hint_fademax: # Only fade if we need to + # start fade in timer + self._hint_fadetimer.Start(5) + + self._last_hint = wx.Rect(*rect) + + + def HideHint(self): + """ Hides a transparent window hint if there is one. """ + + # hides a transparent window hint if there is one + if self._hint_window: + self._hint_window.Hide() + + self._hint_fadetimer.Stop() + self._last_hint = wx.Rect() + + + def IsPaneButtonVisible(self, part): + """ + Returns whether a pane button in the pane caption is visible. + + :param `part`: the UI part to analyze. + """ + + captionRect = wx.Rect() + + for temp_part in self._uiparts: + if temp_part.pane == part.pane and \ + temp_part.type == AuiDockUIPart.typeCaption: + captionRect = temp_part.rect + break + + return captionRect.ContainsRect(part.rect) + + + def DrawPaneButton(self, dc, part, pt): + """ + Draws a pane button in the caption (convenience function). + + :param `dc`: a `wx.DC` device context object; + :param `part`: the UI part to analyze; + :param `pt`: a `wx.Point` object, specifying the mouse location. + """ + + if not self.IsPaneButtonVisible(part): + return + + state = AUI_BUTTON_STATE_NORMAL + + if part.rect.Contains(pt): + + if _VERSION_STRING < "2.9": + leftDown = wx.GetMouseState().LeftDown() + else: + leftDown = wx.GetMouseState().LeftIsDown() + + if leftDown: + state = AUI_BUTTON_STATE_PRESSED + else: + state = AUI_BUTTON_STATE_HOVER + + self._art.DrawPaneButton(dc, self._frame, part.button.button_id, + state, part.rect, part.pane) + + + def RefreshButton(self, part): + """ + Refreshes a pane button in the caption. + + :param `part`: the UI part to analyze. + """ + + rect = wx.Rect(*part.rect) + rect.Inflate(2, 2) + self._frame.Refresh(True, rect) + self._frame.Update() + + + def RefreshCaptions(self): + """ Refreshes all pane captions. """ + + for part in self._uiparts: + if part.type == AuiDockUIPart.typeCaption: + self._frame.Refresh(True, part.rect) + self._frame.Update() + + + def CalculateHintRect(self, pane_window, pt, offset): + """ + Calculates the drop hint rectangle. + + The method first calls L{DoDrop} to determine the exact position the pane would + be at were if dropped. If the pane would indeed become docked at the + specified drop point, the the rectangle hint will be returned in + screen coordinates. Otherwise, an empty rectangle is returned. + + :param `pane_window`: it is the window pointer of the pane being dragged; + :param `pt`: is the mouse position, in client coordinates; + :param `offset`: describes the offset that the mouse is from the upper-left + corner of the item being dragged. + """ + + # we need to paint a hint rectangle to find out the exact hint rectangle, + # we will create a new temporary layout and then measure the resulting + # rectangle we will create a copy of the docking structures (self._docks) + # so that we don't modify the real thing on screen + + rect = wx.Rect() + pane = self.GetPane(pane_window) + + attrs = self.GetAttributes(pane) + hint = AuiPaneInfo() + hint = self.SetAttributes(hint, attrs) + + if hint.name != "__HINT__": + self._oldname = hint.name + + hint.name = "__HINT__" + hint.PaneBorder(True) + hint.Show() + + if not hint.IsOk(): + hint.name = self._oldname + return rect + + docks, panes = CopyDocksAndPanes2(self._docks, self._panes) + + # remove any pane already there which bears the same window + # this happens when you are moving a pane around in a dock + for ii in xrange(len(panes)): + if panes[ii].window == pane_window: + docks = RemovePaneFromDocks(docks, panes[ii]) + panes.pop(ii) + break + + # find out where the new pane would be + allow, hint = self.DoDrop(docks, panes, hint, pt, offset) + + if not allow: + return rect + + panes.append(hint) + + sizer, panes, docks, uiparts = self.LayoutAll(panes, docks, [], True, False) + + client_size = self._frame.GetClientSize() + sizer.SetDimension(0, 0, client_size.x, client_size.y) + sizer.Layout() + + sought = "__HINT__" + + # For a notebook page, actually look for the noteboot itself. + if hint.IsNotebookPage(): + id = hint.notebook_id + for pane in panes: + if pane.IsNotebookControl() and pane.notebook_id==id: + sought = pane.name + break + + for part in uiparts: + if part.pane and part.pane.name == sought: + rect.Union(wx.RectPS(part.sizer_item.GetPosition(), + part.sizer_item.GetSize())) + + sizer.Destroy() + + # check for floating frame ... + if rect.IsEmpty(): + for p in panes: + if p.name == sought and p.IsFloating(): + return wx.RectPS(p.floating_pos, p.floating_size) + + if rect.IsEmpty(): + return rect + + # actually show the hint rectangle on the screen + rect.x, rect.y = self._frame.ClientToScreen((rect.x, rect.y)) + if self._frame.GetLayoutDirection() == wx.Layout_RightToLeft: + # Mirror rectangle in RTL mode + rect.x -= rect.GetWidth() + + return rect + + + def DrawHintRect(self, pane_window, pt, offset): + """ + Calculates the hint rectangle by calling + L{CalculateHintRect}. If there is a rectangle, it shows it + by calling L{ShowHint}, otherwise it hides any hint + rectangle currently shown. + + :param `pane_window`: it is the window pointer of the pane being dragged; + :param `pt`: is the mouse position, in client coordinates; + :param `offset`: describes the offset that the mouse is from the upper-left + corner of the item being dragged. + """ + + rect = self.CalculateHintRect(pane_window, pt, offset) + + if rect.IsEmpty(): + self.HideHint() + self._hint_rect = wx.Rect() + else: + self.ShowHint(rect) + self._hint_rect = wx.Rect(*rect) + + + def GetPartSizerRect(self, uiparts): + """ + Returns the rectangle surrounding the specified UI parts. + + :param `uiparts`: UI parts. + """ + + rect = wx.Rect() + + for part in self._uiparts: + if part.pane and part.pane.name == "__HINT__": + rect.Union(wx.RectPS(part.sizer_item.GetPosition(), + part.sizer_item.GetSize())) + + return rect + + + def GetAttributes(self, pane): + """ + Returns all the attributes of a L{AuiPaneInfo}. + + :param `pane`: a L{AuiPaneInfo} instance. + """ + + attrs = [] + attrs.extend([pane.window, pane.frame, pane.state, pane.dock_direction, + pane.dock_layer, pane.dock_pos, pane.dock_row, pane.dock_proportion, + pane.floating_pos, pane.floating_size, pane.best_size, + pane.min_size, pane.max_size, pane.caption, pane.name, + pane.buttons, pane.rect, pane.icon, pane.notebook_id, + pane.transparent, pane.snapped, pane.minimize_mode]) + + return attrs + + + def SetAttributes(self, pane, attrs): + """ + Sets all the attributes contained in `attrs` to a L{AuiPaneInfo}. + + :param `pane`: a L{AuiPaneInfo} instance; + :param `attrs`: a list of attributes. + """ + + pane.window = attrs[0] + pane.frame = attrs[1] + pane.state = attrs[2] + pane.dock_direction = attrs[3] + pane.dock_layer = attrs[4] + pane.dock_pos = attrs[5] + pane.dock_row = attrs[6] + pane.dock_proportion = attrs[7] + pane.floating_pos = attrs[8] + pane.floating_size = attrs[9] + pane.best_size = attrs[10] + pane.min_size = attrs[11] + pane.max_size = attrs[12] + pane.caption = attrs[13] + pane.name = attrs[14] + pane.buttons = attrs[15] + pane.rect = attrs[16] + pane.icon = attrs[17] + pane.notebook_id = attrs[18] + pane.transparent = attrs[19] + pane.snapped = attrs[20] + pane.minimize_mode = attrs[21] + + return pane + + + def OnFloatingPaneResized(self, wnd, size): + """ + Handles the resizing of a floating pane. + + :param `wnd`: a `wx.Window` derived window, managed by the pane; + :param `size`: a `wx.Size` object, specifying the new pane floating size. + """ + + # try to find the pane + pane = self.GetPane(wnd) + if not pane.IsOk(): + raise Exception("Pane window not found") + + if pane.frame: + indx = self._panes.index(pane) + pane.floating_pos = pane.frame.GetPosition() + pane.floating_size = size + self._panes[indx] = pane + if pane.IsSnappable(): + self.SnapPane(pane, pane.floating_pos, pane.floating_size, True) + + + def OnFloatingPaneClosed(self, wnd, event): + """ + Handles the close event of a floating pane. + + :param `wnd`: a `wx.Window` derived window, managed by the pane; + :param `event`: a `wx.CloseEvent` to be processed. + """ + + # try to find the pane + pane = self.GetPane(wnd) + if not pane.IsOk(): + raise Exception("Pane window not found") + + # fire pane close event + e = AuiManagerEvent(wxEVT_AUI_PANE_CLOSE) + e.SetPane(pane) + e.SetCanVeto(event.CanVeto()) + self.ProcessMgrEvent(e) + + if e.GetVeto(): + event.Veto() + return + else: + # close the pane, but check that it + # still exists in our pane array first + # (the event handler above might have removed it) + + check = self.GetPane(wnd) + if check.IsOk(): + self.ClosePane(pane) + + + def OnFloatingPaneActivated(self, wnd): + """ + Handles the activation event of a floating pane. + + :param `wnd`: a `wx.Window` derived window, managed by the pane. + """ + + pane = self.GetPane(wnd) + if not pane.IsOk(): + raise Exception("Pane window not found") + + if self.GetAGWFlags() & AUI_MGR_ALLOW_ACTIVE_PANE: + ret, self._panes = SetActivePane(self._panes, wnd) + self.RefreshCaptions() + self.FireEvent(wxEVT_AUI_PANE_ACTIVATED, wnd, canVeto=False) + + + def OnFloatingPaneMoved(self, wnd, eventOrPt): + """ + Handles the move event of a floating pane. + + :param `wnd`: a `wx.Window` derived window, managed by the pane; + :param `eventOrPt`: a `wx.MoveEvent` to be processed or an instance of `wx.Point`. + """ + + pane = self.GetPane(wnd) + if not pane.IsOk(): + raise Exception("Pane window not found") + + if not pane.IsSnappable(): + return + + if isinstance(eventOrPt, wx.Point): + pane_pos = wx.Point(*eventOrPt) + else: + pane_pos = eventOrPt.GetPosition() + + pane_size = pane.floating_size + + self.SnapPane(pane, pane_pos, pane_size, False) + + + def SnapPane(self, pane, pane_pos, pane_size, toSnap=False): + """ + Snaps a floating pane to one of the main frame sides. + + :param `pane`: a L{AuiPaneInfo} instance; + :param `pane_pos`: the new pane floating position; + :param `pane_size`: the new pane floating size; + :param `toSnap`: a bool variable to check if L{SnapPane} was called from + a move event. + """ + + if self._from_move: + return + + managed_window = self.GetManagedWindow() + wnd_pos = managed_window.GetPosition() + wnd_size = managed_window.GetSize() + snapX, snapY = self._snap_limits + + if not toSnap: + pane.snapped = 0 + if pane.IsLeftSnappable(): + # Check if we can snap to the left + diff = wnd_pos.x - (pane_pos.x + pane_size.x) + if -snapX <= diff <= snapX: + pane.snapped = wx.LEFT + pane.floating_pos = wx.Point(wnd_pos.x-pane_size.x, pane_pos.y) + elif pane.IsTopSnappable(): + # Check if we can snap to the top + diff = wnd_pos.y - (pane_pos.y + pane_size.y) + if -snapY <= diff <= snapY: + pane.snapped = wx.TOP + pane.floating_pos = wx.Point(pane_pos.x, wnd_pos.y-pane_size.y) + elif pane.IsRightSnappable(): + # Check if we can snap to the right + diff = pane_pos.x - (wnd_pos.x + wnd_size.x) + if -snapX <= diff <= snapX: + pane.snapped = wx.RIGHT + pane.floating_pos = wx.Point(wnd_pos.x + wnd_size.x, pane_pos.y) + elif pane.IsBottomSnappable(): + # Check if we can snap to the bottom + diff = pane_pos.y - (wnd_pos.y + wnd_size.y) + if -snapY <= diff <= snapY: + pane.snapped = wx.BOTTOM + pane.floating_pos = wx.Point(pane_pos.x, wnd_pos.y + wnd_size.y) + + self.RepositionPane(pane, wnd_pos, wnd_size) + + + def RepositionPane(self, pane, wnd_pos, wnd_size): + """ + Repositions a pane after the main frame has been moved/resized. + + :param `pane`: a L{AuiPaneInfo} instance; + :param `wnd_pos`: the main frame position; + :param `wnd_size`: the main frame size. + """ + + pane_pos = pane.floating_pos + pane_size = pane.floating_size + + snap = pane.snapped + if snap == wx.LEFT: + floating_pos = wx.Point(wnd_pos.x - pane_size.x, pane_pos.y) + elif snap == wx.TOP: + floating_pos = wx.Point(pane_pos.x, wnd_pos.y - pane_size.y) + elif snap == wx.RIGHT: + floating_pos = wx.Point(wnd_pos.x + wnd_size.x, pane_pos.y) + elif snap == wx.BOTTOM: + floating_pos = wx.Point(pane_pos.x, wnd_pos.y + wnd_size.y) + + if snap: + if pane_pos != floating_pos: + pane.floating_pos = floating_pos + self._from_move = True + pane.frame.SetPosition(pane.floating_pos) + self._from_move = False + + + def OnGripperClicked(self, pane_window, start, offset): + """ + Handles the mouse click on the pane gripper. + + :param `pane_window`: a `wx.Window` derived window, managed by the pane; + :param `start`: a `wx.Point` object, specifying the clicking position; + :param `offset`: an offset point from the `start` position. + """ + + # try to find the pane + paneInfo = self.GetPane(pane_window) + + if not paneInfo.IsOk(): + raise Exception("Pane window not found") + + if self.GetAGWFlags() & AUI_MGR_ALLOW_ACTIVE_PANE: + # set the caption as active + ret, self._panes = SetActivePane(self._panes, pane_window) + self.RefreshCaptions() + self.FireEvent(wxEVT_AUI_PANE_ACTIVATED, pane_window, canVeto=False) + + self._action_part = None + self._action_pane = paneInfo + self._action_window = pane_window + self._action_start = start + self._action_offset = offset + self._toolbar_action_offset = wx.Point(*self._action_offset) + + self._frame.CaptureMouse() + + if paneInfo.IsDocked(): + self._action = actionClickCaption + else: + if paneInfo.IsToolbar(): + self._action = actionDragToolbarPane + else: + self._action = actionDragFloatingPane + + if paneInfo.frame: + + windowPt = paneInfo.frame.GetRect().GetTopLeft() + originPt = paneInfo.frame.ClientToScreen(wx.Point()) + self._action_offset += originPt - windowPt + self._toolbar_action_offset = wx.Point(*self._action_offset) + + if self._agwFlags & AUI_MGR_TRANSPARENT_DRAG: + paneInfo.frame.SetTransparent(150) + + if paneInfo.IsToolbar(): + self._frame.SetCursor(wx.StockCursor(wx.CURSOR_SIZING)) + + + def OnRender(self, event): + """ + Draws all of the pane captions, sashes, + backgrounds, captions, grippers, pane borders and buttons. + It renders the entire user interface. It binds the ``EVT_AUI_RENDER`` event. + + :param `event`: an instance of L{AuiManagerEvent}. + """ + + # if the frame is about to be deleted, don't bother + if not self._frame or self._frame.IsBeingDeleted(): + return + + if not self._frame.GetSizer(): + return + + mouse = wx.GetMouseState() + mousePos = wx.Point(mouse.GetX(), mouse.GetY()) + point = self._frame.ScreenToClient(mousePos) + art = self._art + + dc = event.GetDC() + + for part in self._uiparts: + + # don't draw hidden pane items or items that aren't windows + if part.sizer_item and ((not part.sizer_item.IsWindow() and \ + not part.sizer_item.IsSpacer() and \ + not part.sizer_item.IsSizer()) or \ + not part.sizer_item.IsShown()): + + continue + + ptype = part.type + + if ptype in [AuiDockUIPart.typeDockSizer, AuiDockUIPart.typePaneSizer]: + art.DrawSash(dc, self._frame, part.orientation, part.rect) + + elif ptype == AuiDockUIPart.typeBackground: + art.DrawBackground(dc, self._frame, part.orientation, part.rect) + + elif ptype == AuiDockUIPart.typeCaption: + art.DrawCaption(dc, self._frame, part.pane.caption, part.rect, part.pane) + + elif ptype == AuiDockUIPart.typeGripper: + art.DrawGripper(dc, self._frame, part.rect, part.pane) + + elif ptype == AuiDockUIPart.typePaneBorder: + art.DrawBorder(dc, self._frame, part.rect, part.pane) + + elif ptype == AuiDockUIPart.typePaneButton: + self.DrawPaneButton(dc, part, point) + + + def Repaint(self, dc=None): + """ + Repaints the entire frame decorations (sashes, borders, buttons and so on). + It renders the entire user interface. + + :param `dc`: if not ``None``, an instance of `wx.PaintDC`. + """ + + w, h = self._frame.GetClientSize() + + # Figure out which dc to use; if one + # has been specified, use it, otherwise + # make a client dc + if dc is None: + client_dc = wx.ClientDC(self._frame) + dc = client_dc + + # If the frame has a toolbar, the client area + # origin will not be (0, 0). + pt = self._frame.GetClientAreaOrigin() + if pt.x != 0 or pt.y != 0: + dc.SetDeviceOrigin(pt.x, pt.y) + + # Render all the items + self.Render(dc) + + + def Render(self, dc): + """ + Fires a render event, which is normally handled by + L{OnRender}. This allows the render function to + be overridden via the render event. + + This can be useful for painting custom graphics in the main window. + Default behavior can be invoked in the overridden function by calling + L{OnRender}. + + :param `dc`: a `wx.DC` device context object. + """ + + e = AuiManagerEvent(wxEVT_AUI_RENDER) + e.SetManager(self) + e.SetDC(dc) + self.ProcessMgrEvent(e) + + + def OnCaptionDoubleClicked(self, pane_window): + """ + Handles the mouse double click on the pane caption. + + :param `pane_window`: a `wx.Window` derived window, managed by the pane. + """ + + # try to find the pane + paneInfo = self.GetPane(pane_window) + if not paneInfo.IsOk(): + raise Exception("Pane window not found") + + if not paneInfo.IsFloatable() or not paneInfo.IsDockable() or \ + self._agwFlags & AUI_MGR_ALLOW_FLOATING == 0: + return + + indx = self._panes.index(paneInfo) + win_rect = None + + if paneInfo.IsFloating(): + if paneInfo.name.startswith("__floating__"): + # It's a floating tab from a AuiNotebook + notebook = paneInfo.window.__aui_notebook__ + notebook.ReDockPage(paneInfo) + self.Update() + return + else: + + e = self.FireEvent(wxEVT_AUI_PANE_DOCKING, paneInfo, canVeto=True) + if e.GetVeto(): + self.HideHint() + ShowDockingGuides(self._guides, False) + return + + win_rect = paneInfo.frame.GetRect() + paneInfo.Dock() + if paneInfo.IsToolbar(): + paneInfo = self.SwitchToolBarOrientation(paneInfo) + + e = self.FireEvent(wxEVT_AUI_PANE_DOCKED, paneInfo, canVeto=False) + + else: + + e = self.FireEvent(wxEVT_AUI_PANE_FLOATING, paneInfo, canVeto=True) + if e.GetVeto(): + return + + # float the window + if paneInfo.IsMaximized(): + self.RestorePane(paneInfo) + + if paneInfo.floating_pos == wx.Point(-1, -1): + captionSize = self._art.GetMetric(AUI_DOCKART_CAPTION_SIZE) + paneInfo.floating_pos = pane_window.GetScreenPosition() + paneInfo.floating_pos.y -= captionSize + + paneInfo.Float() + e = self.FireEvent(wxEVT_AUI_PANE_FLOATED, paneInfo, canVeto=False) + + self._panes[indx] = paneInfo + self.Update() + + if win_rect and self._agwFlags & AUI_MGR_ANIMATE_FRAMES: + paneInfo = self.GetPane(pane_window) + pane_rect = paneInfo.window.GetScreenRect() + self.AnimateDocking(win_rect, pane_rect) + + + def OnPaint(self, event): + """ + Handles the ``wx.EVT_PAINT`` event for L{AuiManager}. + + :param `event`: an instance of `wx.PaintEvent` to be processed. + """ + + dc = wx.PaintDC(self._frame) + self.Repaint(dc) + + + def OnEraseBackground(self, event): + """ + Handles the ``wx.EVT_ERASE_BACKGROUND`` event for L{AuiManager}. + + :param `event`: `wx.EraseEvent` to be processed. + + :note: This is intentionally empty (excluding wxMAC) to reduce + flickering while drawing. + """ + + if wx.Platform == "__WXMAC__": + event.Skip() + + + def OnSize(self, event): + """ + Handles the ``wx.EVT_SIZE`` event for L{AuiManager}. + + :param `event`: a `wx.SizeEvent` to be processed. + """ + + skipped = False + if isinstance(self._frame, AuiFloatingFrame) and self._frame.IsShownOnScreen(): + skipped = True + event.Skip() + + if self._frame: + + self.DoFrameLayout() + if wx.Platform == "__WXMAC__": + self._frame.Refresh() + else: + self.Repaint() + + if isinstance(self._frame, wx.MDIParentFrame) or isinstance(self._frame, tabmdi.AuiMDIClientWindow) \ + or isinstance(self._frame, tabmdi.AuiMDIParentFrame): + # for MDI parent frames, this event must not + # be "skipped". In other words, the parent frame + # must not be allowed to resize the client window + # after we are finished processing sizing changes + return + + if not skipped: + event.Skip() + + # For the snap to screen... + self.OnMove(None) + + + def OnFindManager(self, event): + """ + Handles the ``EVT_AUI_FIND_MANAGER`` event for L{AuiManager}. + + :param `event`: a L{AuiManagerEvent} event to be processed. + """ + + # Initialize to None + event.SetManager(None) + + if not self._frame: + return + + # See it this window wants to overwrite + self._frame.ProcessEvent(event) + + # if no, it must be us + if not event.GetManager(): + event.SetManager(self) + + + def OnSetCursor(self, event): + """ + Handles the ``wx.EVT_SET_CURSOR`` event for L{AuiManager}. + + :param `event`: a `wx.SetCursorEvent` to be processed. + """ + + # determine cursor + part = self.HitTest(event.GetX(), event.GetY()) + cursor = wx.NullCursor + + if part: + if part.type in [AuiDockUIPart.typeDockSizer, AuiDockUIPart.typePaneSizer]: + + if not self.CheckMovableSizer(part): + return + + if part.orientation == wx.VERTICAL: + cursor = wx.StockCursor(wx.CURSOR_SIZEWE) + else: + cursor = wx.StockCursor(wx.CURSOR_SIZENS) + + elif part.type == AuiDockUIPart.typeGripper: + cursor = wx.StockCursor(wx.CURSOR_SIZING) + + event.SetCursor(cursor) + + + def UpdateButtonOnScreen(self, button_ui_part, event): + """ + Updates/redraws the UI part containing a pane button. + + :param `button_ui_part`: the UI part the button belongs to; + :param `event`: a `wx.MouseEvent` to be processed. + """ + + hit_test = self.HitTest(*event.GetPosition()) + + if not hit_test or not button_ui_part: + return + + state = AUI_BUTTON_STATE_NORMAL + + if hit_test == button_ui_part: + if event.LeftDown(): + state = AUI_BUTTON_STATE_PRESSED + else: + state = AUI_BUTTON_STATE_HOVER + else: + if event.LeftDown(): + state = AUI_BUTTON_STATE_HOVER + + # now repaint the button with hover state + cdc = wx.ClientDC(self._frame) + + # if the frame has a toolbar, the client area + # origin will not be (0,0). + pt = self._frame.GetClientAreaOrigin() + if pt.x != 0 or pt.y != 0: + cdc.SetDeviceOrigin(pt.x, pt.y) + + if hit_test.pane: + self._art.DrawPaneButton(cdc, self._frame, + button_ui_part.button.button_id, + state, + button_ui_part.rect, hit_test.pane) + + + def OnLeftDown(self, event): + """ + Handles the ``wx.EVT_LEFT_DOWN`` event for L{AuiManager}. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + part = self.HitTest(*event.GetPosition()) + + if not part: + event.Skip() + return + + self._currentDragItem = -1 + + if part.type in [AuiDockUIPart.typeDockSizer, AuiDockUIPart.typePaneSizer]: + + if not self.CheckMovableSizer(part): + return + + self._action = actionResize + self._action_part = part + self._action_pane = None + self._action_rect = wx.Rect() + self._action_start = wx.Point(event.GetX(), event.GetY()) + self._action_offset = wx.Point(event.GetX() - part.rect.x, + event.GetY() - part.rect.y) + + # draw the resize hint + rect = wx.RectPS(self._frame.ClientToScreen(part.rect.GetPosition()), + part.rect.GetSize()) + + self._action_rect = wx.Rect(*rect) + + if not AuiManager_HasLiveResize(self): + if wx.Platform == "__WXMAC__": + dc = wx.ClientDC(self._frame) + else: + dc = wx.ScreenDC() + + DrawResizeHint(dc, rect) + + self._frame.CaptureMouse() + + elif part.type == AuiDockUIPart.typePaneButton: + if self.IsPaneButtonVisible(part): + self._action = actionClickButton + self._action_part = part + self._action_pane = None + self._action_start = wx.Point(*event.GetPosition()) + self._frame.CaptureMouse() + + self.RefreshButton(part) + + elif part.type in [AuiDockUIPart.typeCaption, AuiDockUIPart.typeGripper]: + + # if we are managing a AuiFloatingFrame window, then + # we are an embedded AuiManager inside the AuiFloatingFrame. + # We want to initiate a toolbar drag in our owner manager + if isinstance(part.pane.window.GetParent(), AuiFloatingFrame): + rootManager = GetManager(part.pane.window) + else: + rootManager = self + + offset = wx.Point(event.GetX() - part.rect.x, event.GetY() - part.rect.y) + rootManager.OnGripperClicked(part.pane.window, event.GetPosition(), offset) + + if wx.Platform != "__WXMAC__": + event.Skip() + + + def OnLeftDClick(self, event): + """ + Handles the ``wx.EVT_LEFT_DCLICK`` event for L{AuiManager}. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + part = self.HitTest(event.GetX(), event.GetY()) + + if part and part.type == AuiDockUIPart.typeCaption: + if isinstance(part.pane.window.GetParent(), AuiFloatingFrame): + rootManager = GetManager(part.pane.window) + else: + rootManager = self + + rootManager.OnCaptionDoubleClicked(part.pane.window) + + elif part and part.type in [AuiDockUIPart.typeDockSizer, AuiDockUIPart.typePaneSizer]: + # Handles double click on AuiNotebook sashes to unsplit + sash_size = self._art.GetMetric(AUI_DOCKART_SASH_SIZE) + for child in part.cont_sizer.GetChildren(): + if child.IsSizer(): + win = child.GetSizer().GetContainingWindow() + if isinstance(win, auibook.AuiNotebook): + win.UnsplitDClick(part, sash_size, event.GetPosition()) + break + + event.Skip() + + + def DoEndResizeAction(self, event): + """ + Ends a resize action, or for live update, resizes the sash. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + clientPt = event.GetPosition() + screenPt = self._frame.ClientToScreen(clientPt) + + return self.RestrictResize(clientPt, screenPt, createDC=False) + + + def RestrictResize(self, clientPt, screenPt, createDC): + """ Common method between L{DoEndResizeAction} and L{OnLeftUp_Resize}. """ + + dock = self._action_part.dock + pane = self._action_part.pane + + if createDC: + if wx.Platform == "__WXMAC__": + dc = wx.ClientDC(self._frame) + else: + dc = wx.ScreenDC() + + DrawResizeHint(dc, self._action_rect) + self._action_rect = wx.Rect() + + newPos = clientPt - self._action_offset + + if self._action_part.type == AuiDockUIPart.typeDockSizer: + minPix, maxPix = self.CalculateDockSizerLimits(dock) + else: + if not self._action_part.pane: + return + minPix, maxPix = self.CalculatePaneSizerLimits(dock, pane) + + if self._action_part.orientation == wx.HORIZONTAL: + newPos.y = Clip(newPos.y, minPix, maxPix) + else: + newPos.x = Clip(newPos.x, minPix, maxPix) + + if self._action_part.type == AuiDockUIPart.typeDockSizer: + + partnerDock = self.GetPartnerDock(dock) + sash_size = self._art.GetMetric(AUI_DOCKART_SASH_SIZE) + new_dock_size = 0 + direction = dock.dock_direction + + if direction == AUI_DOCK_LEFT: + new_dock_size = newPos.x - dock.rect.x + + elif direction == AUI_DOCK_TOP: + new_dock_size = newPos.y - dock.rect.y + + elif direction == AUI_DOCK_RIGHT: + new_dock_size = dock.rect.x + dock.rect.width - newPos.x - sash_size + + elif direction == AUI_DOCK_BOTTOM: + new_dock_size = dock.rect.y + dock.rect.height - newPos.y - sash_size + + deltaDockSize = new_dock_size - dock.size + + if partnerDock: + if deltaDockSize > partnerDock.size - sash_size: + deltaDockSize = partnerDock.size - sash_size + + partnerDock.size -= deltaDockSize + + dock.size += deltaDockSize + self.Update() + + else: + + # determine the new pixel size that the user wants + # this will help us recalculate the pane's proportion + if dock.IsHorizontal(): + oldPixsize = pane.rect.width + newPixsize = oldPixsize + newPos.x - self._action_part.rect.x + + else: + oldPixsize = pane.rect.height + newPixsize = oldPixsize + newPos.y - self._action_part.rect.y + + totalPixsize, totalProportion = self.GetTotalPixSizeAndProportion(dock) + partnerPane = self.GetPartnerPane(dock, pane) + + # prevent division by zero + if totalPixsize <= 0 or totalProportion <= 0 or not partnerPane: + return + + # adjust for the surplus + while (oldPixsize > 0 and totalPixsize > 10 and \ + oldPixsize*totalProportion/totalPixsize < pane.dock_proportion): + + totalPixsize -= 1 + + # calculate the new proportion of the pane + + newProportion = newPixsize*totalProportion/totalPixsize + newProportion = Clip(newProportion, 1, totalProportion) + deltaProp = newProportion - pane.dock_proportion + + if partnerPane.dock_proportion - deltaProp < 1: + deltaProp = partnerPane.dock_proportion - 1 + newProportion = pane.dock_proportion + deltaProp + + # borrow the space from our neighbor pane to the + # right or bottom (depending on orientation) + partnerPane.dock_proportion -= deltaProp + pane.dock_proportion = newProportion + + self.Update() + + return True + + + def OnLeftUp(self, event): + """ + Handles the ``wx.EVT_LEFT_UP`` event for L{AuiManager}. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + if self._action == actionResize: +## self._frame.Freeze() + self.OnLeftUp_Resize(event) +## self._frame.Thaw() + + elif self._action == actionClickButton: + self.OnLeftUp_ClickButton(event) + + elif self._action == actionDragFloatingPane: + self.OnLeftUp_DragFloatingPane(event) + + elif self._action == actionDragToolbarPane: + self.OnLeftUp_DragToolbarPane(event) + + else: + event.Skip() + + if self._frame.HasCapture(): + self._frame.ReleaseMouse() + + self._action = actionNone + + + def OnMotion(self, event): + """ + Handles the ``wx.EVT_MOTION`` event for L{AuiManager}. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + if self._action == actionResize: + self.OnMotion_Resize(event) + + elif self._action == actionClickCaption: + self.OnMotion_ClickCaption(event) + + elif self._action == actionDragFloatingPane: + self.OnMotion_DragFloatingPane(event) + + elif self._action == actionDragToolbarPane: + self.OnMotion_DragToolbarPane(event) + + else: + self.OnMotion_Other(event) + + + def OnLeaveWindow(self, event): + """ + Handles the ``wx.EVT_LEAVE_WINDOW`` event for L{AuiManager}. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + if self._hover_button: + self.RefreshButton(self._hover_button) + self._hover_button = None + + + def OnCaptureLost(self, event): + """ + Handles the ``wx.EVT_MOUSE_CAPTURE_LOST`` event for L{AuiManager}. + + :param `event`: a `wx.MouseCaptureLostEvent` to be processed. + """ + + # cancel the operation in progress, if any + if self._action != actionNone: + self._action = actionNone + self.HideHint() + + + def OnHintFadeTimer(self, event): + """ + Handles the ``wx.EVT_TIMER`` event for L{AuiManager}. + + :param `event`: a `wx.TimerEvent` to be processed. + """ + + if not self._hint_window or self._hint_fadeamt >= self._hint_fademax: + self._hint_fadetimer.Stop() + return + + self._hint_fadeamt += 4 + self._hint_window.SetTransparent(self._hint_fadeamt) + + + def OnMove(self, event): + """ + Handles the ``wx.EVT_MOVE`` event for L{AuiManager}. + + :param `event`: a `wx.MoveEvent` to be processed. + """ + + if event is not None: + event.Skip() + + if isinstance(self._frame, AuiFloatingFrame) and self._frame.IsShownOnScreen(): + return + + docked, hAlign, vAlign, monitor = self._is_docked + if docked: + self.Snap() + + for pane in self._panes: + if pane.IsSnappable(): + if pane.IsFloating() and pane.IsShown(): + self.SnapPane(pane, pane.floating_pos, pane.floating_size, True) + + + def OnSysColourChanged(self, event): + """ + Handles the ``wx.EVT_SYS_COLOUR_CHANGED`` event for L{AuiManager}. + + :param `event`: a `wx.SysColourChangedEvent` to be processed. + """ + + # This event is probably triggered by a theme change + # so we have to re-init the art provider. + if self._art: + self._art.Init() + + if self._frame: + self.Update() + self._frame.Refresh() + + + def OnChildFocus(self, event): + """ + Handles the ``wx.EVT_CHILD_FOCUS`` event for L{AuiManager}. + + :param `event`: a `wx.ChildFocusEvent` to be processed. + """ + + # when a child pane has it's focus set, we should change the + # pane's active state to reflect this. (this is only true if + # active panes are allowed by the owner) + + window = event.GetWindow() + if isinstance(window, wx.Dialog): + # Ignore EVT_CHILD_FOCUS events originating from dialogs not + # managed by AUI + rootManager = None + elif isinstance(window.GetParent(), AuiFloatingFrame): + rootManager = GetManager(window) + else: + rootManager = self + + if rootManager: + rootManager.ActivatePane(window) + + event.Skip() + + + def OnMotion_ClickCaption(self, event): + """ + Sub-handler for the L{OnMotion} event. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + clientPt = event.GetPosition() + screenPt = self._frame.ClientToScreen(clientPt) + + drag_x_threshold = wx.SystemSettings.GetMetric(wx.SYS_DRAG_X) + drag_y_threshold = wx.SystemSettings.GetMetric(wx.SYS_DRAG_Y) + + if not self._action_pane: + return + + # we need to check if the mouse is now being dragged + if not (abs(clientPt.x - self._action_start.x) > drag_x_threshold or \ + abs(clientPt.y - self._action_start.y) > drag_y_threshold): + + return + + # dragged -- we need to change the mouse action to 'drag' + if self._action_pane.IsToolbar(): + self._action = actionDragToolbarPane + self._action_window = self._action_pane.window + + elif self._action_pane.IsFloatable() and self._agwFlags & AUI_MGR_ALLOW_FLOATING: + + e = self.FireEvent(wxEVT_AUI_PANE_FLOATING, self._action_pane, canVeto=True) + if e.GetVeto(): + return + + self._action = actionDragFloatingPane + + # set initial float position + self._action_pane.floating_pos = screenPt - self._action_offset + + # float the window + if self._action_pane.IsMaximized(): + self.RestorePane(self._action_pane) + + self._action_pane.Hide() + self._action_pane.Float() + if wx.Platform == "__WXGTK__": + self._action_pane.Show() + + e = self.FireEvent(wxEVT_AUI_PANE_FLOATED, self._action_pane, canVeto=False) + + if not self._action_pane.frame: + self.Update() + + self._action_window = self._action_pane.window + + # adjust action offset for window frame + windowPt = self._action_pane.frame.GetRect().GetTopLeft() + originPt = self._action_pane.frame.ClientToScreen(wx.Point()) + self._toolbar_action_offset = originPt - windowPt + + if self._agwFlags & AUI_MGR_USE_NATIVE_MINIFRAMES: + originPt = windowPt + wx.Point(3, 3) + + self._action_offset += originPt - windowPt + + # action offset is used here to make it feel "natural" to the user + # to drag a docked pane and suddenly have it become a floating frame. + # Sometimes, however, the offset where the user clicked on the docked + # caption is bigger than the width of the floating frame itself, so + # in that case we need to set the action offset to a sensible value + frame_size = self._action_pane.frame.GetSize() + if self._action_offset.x > frame_size.x * 2 / 3: + self._action_offset.x = frame_size.x / 2 + if self._action_offset.y > frame_size.y * 2 / 3: + self._action_offset.y = frame_size.y / 2 + + self.OnMotion_DragFloatingPane(event) + if wx.Platform != "__WXGTK__": + self._action_pane.Show() + + self.Update() + + + def OnMotion_Resize(self, event): + """ + Sub-handler for the L{OnMotion} event. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + if AuiManager_HasLiveResize(self): + if self._currentDragItem != -1: + self._action_part = self._uiparts[self._currentDragItem] + else: + self._currentDragItem = self._uiparts.index(self._action_part) + + if self._frame.HasCapture(): + self._frame.ReleaseMouse() + + self.DoEndResizeAction(event) + self._frame.CaptureMouse() + return + + if not self._action_part or not self._action_part.dock or not self._action_part.orientation: + return + + clientPt = event.GetPosition() + screenPt = self._frame.ClientToScreen(clientPt) + + dock = self._action_part.dock + pos = self._action_part.rect.GetPosition() + + if self._action_part.type == AuiDockUIPart.typeDockSizer: + minPix, maxPix = self.CalculateDockSizerLimits(dock) + else: + if not self._action_part.pane: + return + + pane = self._action_part.pane + minPix, maxPix = self.CalculatePaneSizerLimits(dock, pane) + + if self._action_part.orientation == wx.HORIZONTAL: + pos.y = Clip(clientPt.y - self._action_offset.y, minPix, maxPix) + else: + pos.x = Clip(clientPt.x - self._action_offset.x, minPix, maxPix) + + hintrect = wx.RectPS(self._frame.ClientToScreen(pos), self._action_part.rect.GetSize()) + + if hintrect != self._action_rect: + + if wx.Platform == "__WXMAC__": + dc = wx.ClientDC(self._frame) + else: + dc = wx.ScreenDC() + + DrawResizeHint(dc, self._action_rect) + DrawResizeHint(dc, hintrect) + self._action_rect = wx.Rect(*hintrect) + + + def OnLeftUp_Resize(self, event): + """ + Sub-handler for the L{OnLeftUp} event. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + if self._currentDragItem != -1 and AuiManager_HasLiveResize(self): + self._action_part = self._uiparts[self._currentDragItem] + + if self._frame.HasCapture(): + self._frame.ReleaseMouse() + + self.DoEndResizeAction(event) + self._currentDragItem = -1 + return + + if not self._action_part or not self._action_part.dock: + return + + clientPt = event.GetPosition() + screenPt = self._frame.ClientToScreen(clientPt) + + return self.RestrictResize(clientPt, screenPt, createDC=True) + + + def OnLeftUp_ClickButton(self, event): + """ + Sub-handler for the L{OnLeftUp} event. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + self._hover_button = None + + if self._action_part: + self.RefreshButton(self._action_part) + + # make sure we're still over the item that was originally clicked + if self._action_part == self.HitTest(*event.GetPosition()): + + # fire button-click event + e = AuiManagerEvent(wxEVT_AUI_PANE_BUTTON) + e.SetManager(self) + e.SetPane(self._action_part.pane) + e.SetButton(self._action_part.button.button_id) + self.ProcessMgrEvent(e) + + + def CheckPaneMove(self, pane): + """ + Checks if a pane has moved by a visible amount. + + :param `pane`: an instance of L{AuiPaneInfo}. + """ + + win_rect = pane.frame.GetRect() + win_rect.x, win_rect.y = pane.floating_pos + + if win_rect == self._last_rect: + return False + + # skip the first move event + if self._last_rect.IsEmpty(): + self._last_rect = wx.Rect(*win_rect) + return False + + # skip if moving too fast to avoid massive redraws and + # jumping hint windows + if abs(win_rect.x - self._last_rect.x) > 10 or \ + abs(win_rect.y - self._last_rect.y) > 10: + self._last_rect = wx.Rect(*win_rect) + return False + + return True + + + def OnMotion_DragFloatingPane(self, eventOrPt): + """ + Sub-handler for the L{OnMotion} event. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + isPoint = False + if isinstance(eventOrPt, wx.Point): + clientPt = self._frame.ScreenToClient(eventOrPt) + screenPt = wx.Point(*eventOrPt) + isPoint = True + else: + clientPt = eventOrPt.GetPosition() + screenPt = self._frame.ClientToScreen(clientPt) + + framePos = wx.Point() + + # try to find the pane + pane = self.GetPane(self._action_window) + if not pane.IsOk(): + raise Exception("Pane window not found") + + # update floating position + if pane.IsFloating(): + diff = pane.floating_pos - (screenPt - self._action_offset) + pane.floating_pos = screenPt - self._action_offset + + framePos = pane.floating_pos + + # Move the pane window + if pane.frame: + + if diff.x != 0 or diff.y != 0: + if wx.Platform == "__WXMSW__" and (self._agwFlags & AUI_MGR_TRANSPARENT_DRAG) == 0: # and not self.CheckPaneMove(pane): + # return + # HACK: Terrible hack on wxMSW (!) + pane.frame.SetTransparent(254) + + self._from_move = True + pane.frame.Move(pane.floating_pos) + self._from_move = False + + if self._agwFlags & AUI_MGR_TRANSPARENT_DRAG: + pane.frame.SetTransparent(150) + + # calculate the offset from the upper left-hand corner + # of the frame to the mouse pointer + action_offset = screenPt - framePos + + # is the pane dockable? + if not self.CanDockPanel(pane): + self.HideHint() + ShowDockingGuides(self._guides, False) + return + + for paneInfo in self._panes: + + if not paneInfo.IsDocked() or not paneInfo.IsShown(): + continue + if paneInfo.IsToolbar() or paneInfo.IsNotebookControl(): + continue + if paneInfo.IsMaximized(): + continue + + if paneInfo.IsNotebookPage(): + + notebookRoot = GetNotebookRoot(self._panes, paneInfo.notebook_id) + + if not notebookRoot or not notebookRoot.IsDocked(): + continue + + rc = paneInfo.window.GetScreenRect() + if rc.Contains(screenPt): + if rc.height < 20 or rc.width < 20: + return + + self.UpdateDockingGuides(paneInfo) + ShowDockingGuides(self._guides, True) + break + + self.DrawHintRect(pane.window, clientPt, action_offset) + + + def OnLeftUp_DragFloatingPane(self, eventOrPt): + """ + Sub-handler for the L{OnLeftUp} event. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + if isinstance(eventOrPt, wx.Point): + clientPt = self._frame.ScreenToClient(eventOrPt) + screenPt = wx.Point(*eventOrPt) + else: + clientPt = eventOrPt.GetPosition() + screenPt = self._frame.ClientToScreen(clientPt) + + # try to find the pane + paneInfo = self.GetPane(self._action_window) + if not paneInfo.IsOk(): + raise Exception("Pane window not found") + + ret = False + + if paneInfo.frame: + + # calculate the offset from the upper left-hand corner + # of the frame to the mouse pointer + framePos = paneInfo.frame.GetPosition() + action_offset = screenPt - framePos + + # is the pane dockable? + if self.CanDockPanel(paneInfo): + # do the drop calculation + indx = self._panes.index(paneInfo) + ret, paneInfo = self.DoDrop(self._docks, self._panes, paneInfo, clientPt, action_offset) + + if ret: + e = self.FireEvent(wxEVT_AUI_PANE_DOCKING, paneInfo, canVeto=True) + if e.GetVeto(): + self.HideHint() + ShowDockingGuides(self._guides, False) + return + + e = self.FireEvent(wxEVT_AUI_PANE_DOCKED, paneInfo, canVeto=False) + + if self._agwFlags & AUI_MGR_SMOOTH_DOCKING: + self.SmoothDock(paneInfo) + + self._panes[indx] = paneInfo + + # if the pane is still floating, update it's floating + # position (that we store) + if paneInfo.IsFloating(): + paneInfo.floating_pos = paneInfo.frame.GetPosition() + if paneInfo.frame._transparent != paneInfo.transparent or self._agwFlags & AUI_MGR_TRANSPARENT_DRAG: + paneInfo.frame.SetTransparent(paneInfo.transparent) + paneInfo.frame._transparent = paneInfo.transparent + + elif self._has_maximized: + self.RestoreMaximizedPane() + + # reorder for dropping to a new notebook + # (caution: this code breaks the reference!) + tempPaneInfo = self.CopyTarget(paneInfo) + self._panes.remove(paneInfo) + self._panes.append(tempPaneInfo) + + if ret: + self.Update() + + self.HideHint() + ShowDockingGuides(self._guides, False) + + + def OnMotion_DragToolbarPane(self, eventOrPt): + """ + Sub-handler for the L{OnMotion} event. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + isPoint = False + if isinstance(eventOrPt, wx.Point): + clientPt = self._frame.ScreenToClient(eventOrPt) + screenPt = wx.Point(*eventOrPt) + isPoint = True + else: + clientPt = eventOrPt.GetPosition() + screenPt = self._frame.ClientToScreen(clientPt) + + pane = self.GetPane(self._action_window) + if not pane.IsOk(): + raise Exception("Pane window not found") + + pane.state |= AuiPaneInfo.actionPane + indx = self._panes.index(pane) + + ret = False + wasFloating = pane.IsFloating() + # is the pane dockable? + if self.CanDockPanel(pane): + # do the drop calculation + ret, pane = self.DoDrop(self._docks, self._panes, pane, clientPt, self._action_offset) + + # update floating position + if pane.IsFloating(): + pane.floating_pos = screenPt - self._toolbar_action_offset + + # move the pane window + if pane.frame: + if wx.Platform == "__WXMSW__" and (self._agwFlags & AUI_MGR_TRANSPARENT_DRAG) == 0: # and not self.CheckPaneMove(pane): + # return + # HACK: Terrible hack on wxMSW (!) + pane.frame.SetTransparent(254) + + self._from_move = True + pane.frame.Move(pane.floating_pos) + self._from_move = False + + if self._agwFlags & AUI_MGR_TRANSPARENT_DRAG: + pane.frame.SetTransparent(150) + + self._panes[indx] = pane + if ret and wasFloating != pane.IsFloating() or (ret and not wasFloating): + wx.CallAfter(self.Update) + + # when release the button out of the window. + # TODO: a better fix is needed. + + if _VERSION_STRING < "2.9": + leftDown = wx.GetMouseState().LeftDown() + else: + leftDown = wx.GetMouseState().LeftIsDown() + + if not leftDown: + self._action = actionNone + self.OnLeftUp_DragToolbarPane(eventOrPt) + + + def OnMotion_Other(self, event): + """ + Sub-handler for the L{OnMotion} event. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + part = self.HitTest(*event.GetPosition()) + + if part and part.type == AuiDockUIPart.typePaneButton \ + and self.IsPaneButtonVisible(part): + if part != self._hover_button: + + if self._hover_button: + self.RefreshButton(self._hover_button) + + self._hover_button = part + self.RefreshButton(part) + + else: + + if self._hover_button: + self.RefreshButton(self._hover_button) + else: + event.Skip() + + self._hover_button = None + + + def OnLeftUp_DragToolbarPane(self, eventOrPt): + """ + Sub-handler for the L{OnLeftUp} event. + + :param `event`: a `wx.MouseEvent` to be processed. + """ + + isPoint = False + if isinstance(eventOrPt, wx.Point): + clientPt = self._frame.ScreenToClient(eventOrPt) + screenPt = wx.Point(*eventOrPt) + isPoint = True + else: + clientPt = eventOrPt.GetPosition() + screenPt = self._frame.ClientToScreen(clientPt) + + # try to find the pane + pane = self.GetPane(self._action_window) + if not pane.IsOk(): + raise Exception("Pane window not found") + + if pane.IsFloating(): + pane.floating_pos = pane.frame.GetPosition() + if pane.frame._transparent != pane.transparent or self._agwFlags & AUI_MGR_TRANSPARENT_DRAG: + pane.frame.SetTransparent(pane.transparent) + pane.frame._transparent = pane.transparent + + # save the new positions + docks = FindDocks(self._docks, pane.dock_direction, pane.dock_layer, pane.dock_row) + if len(docks) == 1: + dock = docks[0] + pane_positions, pane_sizes = self.GetPanePositionsAndSizes(dock) + + for i in xrange(len(dock.panes)): + dock.panes[i].dock_pos = pane_positions[i] + + pane.state &= ~AuiPaneInfo.actionPane + self.Update() + + + def OnPaneButton(self, event): + """ + Handles the ``EVT_AUI_PANE_BUTTON`` event for L{AuiManager}. + + :param `event`: a L{AuiManagerEvent} event to be processed. + """ + + if not event.pane: + raise Exception("Pane Info passed to AuiManager.OnPaneButton must be non-null") + + pane = event.pane + + if event.button == AUI_BUTTON_CLOSE: + + if isinstance(pane.window.GetParent(), AuiFloatingFrame): + rootManager = GetManager(pane.window) + else: + rootManager = self + + if rootManager != self: + self._frame.Close() + return + + # fire pane close event + e = AuiManagerEvent(wxEVT_AUI_PANE_CLOSE) + e.SetManager(self) + e.SetPane(event.pane) + self.ProcessMgrEvent(e) + + if not e.GetVeto(): + + # close the pane, but check that it + # still exists in our pane array first + # (the event handler above might have removed it) + + check = self.GetPane(pane.window) + if check.IsOk(): + self.ClosePane(pane) + + self.Update() + + # mn this performs the minimizing of a pane + elif event.button == AUI_BUTTON_MINIMIZE: + e = AuiManagerEvent(wxEVT_AUI_PANE_MINIMIZE) + e.SetManager(self) + e.SetPane(event.pane) + self.ProcessMgrEvent(e) + + if not e.GetVeto(): + self.MinimizePane(pane) + + elif event.button == AUI_BUTTON_MAXIMIZE_RESTORE and not pane.IsMaximized(): + + # fire pane close event + e = AuiManagerEvent(wxEVT_AUI_PANE_MAXIMIZE) + e.SetManager(self) + e.SetPane(event.pane) + self.ProcessMgrEvent(e) + + if not e.GetVeto(): + + self.MaximizePane(pane) + self.Update() + + elif event.button == AUI_BUTTON_MAXIMIZE_RESTORE and pane.IsMaximized(): + + # fire pane close event + e = AuiManagerEvent(wxEVT_AUI_PANE_RESTORE) + e.SetManager(self) + e.SetPane(event.pane) + self.ProcessMgrEvent(e) + + if not e.GetVeto(): + + self.RestorePane(pane) + self.Update() + + elif event.button == AUI_BUTTON_PIN: + + if self._agwFlags & AUI_MGR_ALLOW_FLOATING and pane.IsFloatable(): + e = self.FireEvent(wxEVT_AUI_PANE_FLOATING, pane, canVeto=True) + if e.GetVeto(): + return + + pane.Float() + e = self.FireEvent(wxEVT_AUI_PANE_FLOATED, pane, canVeto=False) + + self.Update() + + + def MinimizePane(self, paneInfo): + """ + Minimizes a pane in a newly and automatically created L{AuiToolBar}. + + Clicking on the minimize button causes a new L{AuiToolBar} to be created + and added to the frame manager (currently the implementation is such that + panes at West will have a toolbar at the right, panes at South will have + toolbars at the bottom etc...) and the pane is hidden in the manager. + + Clicking on the restore button on the newly created toolbar will result in the + toolbar being removed and the original pane being restored. + + :param `paneInfo`: a L{AuiPaneInfo} instance for the pane to be minimized. + """ + + if not paneInfo.IsToolbar(): + + if paneInfo.IsMinimized(): + # We are already minimized + return + + # Basically the idea is this. + # + # 1) create a toolbar, with a restore button + # + # 2) place the new toolbar in the toolbar area representative of the location of the pane + # (NORTH/SOUTH/EAST/WEST, central area always to the right) + # + # 3) Hide the minimizing pane + + + # personalize the toolbar style + tbStyle = AUI_TB_DEFAULT_STYLE + posMask = paneInfo.minimize_mode & AUI_MINIMIZE_POS_MASK + captMask = paneInfo.minimize_mode & AUI_MINIMIZE_CAPT_MASK + dockDirection = paneInfo.dock_direction + if captMask != 0: + tbStyle |= AUI_TB_TEXT + if posMask == AUI_MINIMIZE_POS_SMART: + if paneInfo.dock_direction in [AUI_DOCK_TOP, AUI_DOCK_BOTTOM]: + tbStyle |= AUI_TB_HORZ_LAYOUT + + elif paneInfo.dock_direction in [AUI_DOCK_LEFT, AUI_DOCK_RIGHT, AUI_DOCK_CENTER]: + tbStyle |= AUI_TB_VERTICAL + if captMask == AUI_MINIMIZE_CAPT_SMART: + tbStyle |= AUI_TB_CLOCKWISE + + elif posMask in [AUI_MINIMIZE_POS_TOP, AUI_MINIMIZE_POS_BOTTOM]: + tbStyle |= AUI_TB_HORZ_LAYOUT + if posMask == AUI_MINIMIZE_POS_TOP: + dockDirection = AUI_DOCK_TOP + else: + dockDirection = AUI_DOCK_BOTTOM + + else: + tbStyle |= AUI_TB_VERTICAL + if captMask == AUI_MINIMIZE_CAPT_SMART: + tbStyle |= AUI_TB_CLOCKWISE + if posMask == AUI_MINIMIZE_POS_LEFT: + dockDirection = AUI_DOCK_LEFT + elif posMask == AUI_MINIMIZE_POS_RIGHT: + dockDirection = AUI_DOCK_RIGHT + elif posMask == AUI_MINIMIZE_POS_BOTTOM: + dockDirection = AUI_DOCK_BOTTOM + + # Create a new toolbar + # give it the same name as the minimized pane with _min appended + + win_rect = paneInfo.window.GetScreenRect() + + minimize_toolbar = auibar.AuiToolBar(self.GetManagedWindow(), agwStyle=tbStyle) + minimize_toolbar.Hide() + minimize_toolbar.SetToolBitmapSize(wx.Size(16, 16)) + + if paneInfo.icon and paneInfo.icon.IsOk(): + restore_bitmap = paneInfo.icon + else: + restore_bitmap = self._art._restore_bitmap + + minimize_toolbar.AddSimpleTool(ID_RESTORE_FRAME, paneInfo.caption, restore_bitmap, "Restore " + paneInfo.caption) + minimize_toolbar.SetAuiManager(self) + minimize_toolbar.Realize() + toolpanelname = paneInfo.name + "_min" + + if paneInfo.IsMaximized(): + paneInfo.SetFlag(paneInfo.wasMaximized, True) + + if dockDirection == AUI_DOCK_TOP: + self.AddPane(minimize_toolbar, AuiPaneInfo(). \ + Name(toolpanelname).Caption(paneInfo.caption). \ + ToolbarPane().Top().BottomDockable(False). \ + LeftDockable(False).RightDockable(False).DestroyOnClose()) + + elif dockDirection == AUI_DOCK_BOTTOM: + self.AddPane(minimize_toolbar, AuiPaneInfo(). \ + Name(toolpanelname).Caption(paneInfo.caption). \ + ToolbarPane().Bottom().TopDockable(False). \ + LeftDockable(False).RightDockable(False).DestroyOnClose()) + + elif dockDirection == AUI_DOCK_LEFT: + self.AddPane(minimize_toolbar, AuiPaneInfo(). \ + Name(toolpanelname).Caption(paneInfo.caption). \ + ToolbarPane().Left().TopDockable(False). \ + BottomDockable(False).RightDockable(False).DestroyOnClose()) + + elif dockDirection in [AUI_DOCK_RIGHT, AUI_DOCK_CENTER]: + self.AddPane(minimize_toolbar, AuiPaneInfo(). \ + Name(toolpanelname).Caption(paneInfo.caption). \ + ToolbarPane().Right().TopDockable(False). \ + LeftDockable(False).BottomDockable(False).DestroyOnClose()) + + arr = FindDocks(self._docks, paneInfo.dock_direction, paneInfo.dock_layer, paneInfo.dock_row) + + if arr: + dock = arr[0] + paneInfo.previousDockSize = dock.size + + paneInfo.previousDockPos = paneInfo.dock_pos + + # mark ourselves minimized + paneInfo.Minimize() + paneInfo.Show(False) + self._has_minimized = True + # last, hide the window + if paneInfo.window and paneInfo.window.IsShown(): + paneInfo.window.Show(False) + + minimize_toolbar.Show() + self.Update() + if self._agwFlags & AUI_MGR_ANIMATE_FRAMES: + self.AnimateDocking(win_rect, minimize_toolbar.GetScreenRect()) + + + def OnRestoreMinimizedPane(self, event): + """ + Handles the ``EVT_AUI_PANE_MIN_RESTORE`` event for L{AuiManager}. + + :param `event`: an instance of L{AuiManagerEvent} to be processed. + """ + + self.RestoreMinimizedPane(event.pane) + + + def OnPaneDocked(self, event): + """ + Handles the ``EVT_AUI_PANE_DOCKED`` event for L{AuiManager}. + + :param `event`: an instance of L{AuiManagerEvent} to be processed. + """ + + event.Skip() + self.RemoveAutoNBCaption(event.GetPane()) + + + def CreateNotebookBase(self, panes, paneInfo): + """ + Creates an auto-notebook base from a pane, and then add that pane as a page. + + :param `panes`: Set of panes to append new notebook base pane to + :param `paneInfo`: L{AuiPaneInfo} instance to convert to new notebook. + """ + + # Create base notebook pane ... + nbid = len(self._notebooks) + + baseInfo = AuiPaneInfo() + baseInfo.SetDockPos(paneInfo).NotebookControl(nbid). \ + CloseButton(False).SetNameFromNotebookId(). \ + NotebookDockable(False).Floatable(paneInfo.IsFloatable()) + baseInfo.best_size = paneInfo.best_size + panes.append(baseInfo) + + # add original pane as tab ... + paneInfo.NotebookPage(nbid) + + def RemoveAutoNBCaption(self, pane): + """ + Removes the caption on newly created automatic notebooks. + + :param `pane`: an instance of L{AuiPaneInfo} (the target notebook). + """ + + if self._agwFlags & AUI_MGR_AUTONB_NO_CAPTION == 0: + return False + + def RemoveCaption(): + """ Sub-function used to remove the pane caption on automatic notebooks. """ + + if pane.HasNotebook(): + notebook = self._notebooks[pane.notebook_id] + self.GetPane(notebook).CaptionVisible(False).PaneBorder(False) + self.Update() + + # it seems the notebook isnt created by this stage, so remove + # the caption a moment later + wx.CallAfter(RemoveCaption) + return True + + + def RestoreMinimizedPane(self, paneInfo): + """ + Restores a previously minimized pane. + + :param `paneInfo`: a L{AuiPaneInfo} instance for the pane to be restored. + """ + + panename = paneInfo.name + panename = panename[0:-4] + pane = self.GetPane(panename) + + pane.SetFlag(pane.needsRestore, True) + + if not pane.IsOk(): + panename = paneInfo.name + pane = self.GetPane(panename) + paneInfo = self.GetPane(panename + "_min") + if not paneInfo.IsOk(): + # Already minimized + return + + if pane.IsOk(): + if not pane.IsMinimized(): + return + + + if pane.HasFlag(pane.wasMaximized): + + self.SavePreviousDockSizes(pane) + + + self.ShowPane(pane.window, True) + pane.Show(True) + self._has_minimized = False + pane.SetFlag(pane.optionMinimized, False) + paneInfo.window.Show(False) + self.DetachPane(paneInfo.window) + paneInfo.Show(False) + paneInfo.Hide() + + self.Update() + + + def AnimateDocking(self, win_rect, pane_rect): + """ + Animates the minimization/docking of a pane a la Eclipse, using a `wx.ScreenDC` + to draw a "moving docking rectangle" on the screen. + + :param `win_rect`: the original pane screen rectangle; + :param `pane_rect`: the newly created toolbar/pane screen rectangle. + + :note: This functionality is not available on wxMAC as this platform doesn't have + the ability to use `wx.ScreenDC` to draw on-screen and on Windows > Vista. + """ + + if wx.Platform == "__WXMAC__": + # No wx.ScreenDC on the Mac... + return + if wx.Platform == "__WXMSW__" and wx.GetOsVersion()[1] > 5: + # No easy way to handle this on Vista... + return + + xstart, ystart = win_rect.x, win_rect.y + xend, yend = pane_rect.x, pane_rect.y + + step = self.GetAnimationStep() + + wstep = int(abs(win_rect.width - pane_rect.width)/step) + hstep = int(abs(win_rect.height - pane_rect.height)/step) + xstep = int(win_rect.x - pane_rect.x)/step + ystep = int(win_rect.y - pane_rect.y)/step + + dc = wx.ScreenDC() + dc.SetLogicalFunction(wx.INVERT) + dc.SetBrush(wx.TRANSPARENT_BRUSH) + dc.SetPen(wx.LIGHT_GREY_PEN) + + for i in xrange(int(step)): + width, height = win_rect.width - i*wstep, win_rect.height - i*hstep + x, y = xstart - i*xstep, ystart - i*ystep + new_rect = wx.Rect(x, y, width, height) + dc.DrawRoundedRectangleRect(new_rect, 3) + wx.SafeYield() + wx.MilliSleep(10) + dc.DrawRoundedRectangleRect(new_rect, 3) + + + def SmoothDock(self, paneInfo): + """ + This method implements a smooth docking effect for floating panes, similar to + what the PyQT library does with its floating windows. + + :param `paneInfo`: an instance of L{AuiPaneInfo}. + + :note: The smooth docking effect can only be used if you set the ``AUI_MGR_SMOOTH_DOCKING`` + style to L{AuiManager}. + """ + + if paneInfo.IsToolbar(): + return + + if not paneInfo.frame or self._hint_rect.IsEmpty(): + return + + hint_rect = self._hint_rect + win_rect = paneInfo.frame.GetScreenRect() + + xstart, ystart = win_rect.x, win_rect.y + xend, yend = hint_rect.x, hint_rect.y + + step = self.GetAnimationStep()/3 + + wstep = int((win_rect.width - hint_rect.width)/step) + hstep = int((win_rect.height - hint_rect.height)/step) + xstep = int((win_rect.x - hint_rect.x))/step + ystep = int((win_rect.y - hint_rect.y))/step + + for i in xrange(int(step)): + width, height = win_rect.width - i*wstep, win_rect.height - i*hstep + x, y = xstart - i*xstep, ystart - i*ystep + new_rect = wx.Rect(x, y, width, height) + paneInfo.frame.SetRect(new_rect) + wx.MilliSleep(10) + + + def SetSnapLimits(self, x, y): + """ + Modifies the snap limits used when snapping the `managed_window` to the screen + (using L{SnapToScreen}) or when snapping the floating panes to one side of the + `managed_window` (using L{SnapPane}). + + To change the limit after which the `managed_window` or the floating panes are + automatically stickled to the screen border (or to the `managed_window` side), + set these two variables. Default values are 15 pixels. + + :param `x`: the minimum horizontal distance below which the snap occurs; + :param `y`: the minimum vertical distance below which the snap occurs. + """ + + self._snap_limits = (x, y) + self.Snap() + + + def Snap(self): + """ + Snaps the main frame to specified position on the screen. + + :see: L{SnapToScreen} + """ + + snap, hAlign, vAlign, monitor = self._is_docked + if not snap: + return + + managed_window = self.GetManagedWindow() + snap_pos = self.GetSnapPosition() + wnd_pos = managed_window.GetPosition() + snapX, snapY = self._snap_limits + + if abs(snap_pos.x - wnd_pos.x) < snapX and abs(snap_pos.y - wnd_pos.y) < snapY: + managed_window.SetPosition(snap_pos) + + + def SnapToScreen(self, snap=True, monitor=0, hAlign=wx.RIGHT, vAlign=wx.TOP): + """ + Snaps the main frame to specified position on the screen. + + :param `snap`: whether to snap the main frame or not; + :param `monitor`: the monitor display in which snapping the window; + :param `hAlign`: the horizontal alignment of the snapping position; + :param `vAlign`: the vertical alignment of the snapping position. + """ + + if not snap: + self._is_docked = (False, wx.RIGHT, wx.TOP, 0) + return + + displayCount = wx.Display.GetCount() + if monitor > displayCount: + raise Exception("Invalid monitor selected: you only have %d monitors"%displayCount) + + self._is_docked = (True, hAlign, vAlign, monitor) + self.GetManagedWindow().SetPosition(self.GetSnapPosition()) + + + def GetSnapPosition(self): + """ Returns the main frame snapping position. """ + + snap, hAlign, vAlign, monitor = self._is_docked + + display = wx.Display(monitor) + area = display.GetClientArea() + size = self.GetManagedWindow().GetSize() + + pos = wx.Point() + if hAlign == wx.LEFT: + pos.x = area.x + elif hAlign == wx.CENTER: + pos.x = area.x + (area.width - size.x)/2 + else: + pos.x = area.x + area.width - size.x + + if vAlign == wx.TOP: + pos.y = area.y + elif vAlign == wx.CENTER: + pos.y = area.y + (area.height - size.y)/2 + else: + pos.y = area.y + area.height - size.y + + return pos + + + def GetAnimationStep(self): + """ Returns the animation step speed (a float) to use in L{AnimateDocking}. """ + + return self._animation_step + + + def SetAnimationStep(self, step): + """ + Sets the animation step speed (a float) to use in L{AnimateDocking}. + + :param `step`: a floating point value for the animation speed. + """ + + self._animation_step = float(step) + + + def RequestUserAttention(self, pane_window): + """ + Requests the user attention by intermittently highlighting the pane caption. + + :param `pane_window`: a `wx.Window` derived window, managed by the pane. + """ + + # try to find the pane + paneInfo = self.GetPane(pane_window) + if not paneInfo.IsOk(): + raise Exception("Pane window not found") + + dc = wx.ClientDC(self._frame) + + # if the frame is about to be deleted, don't bother + if not self._frame or self._frame.IsBeingDeleted(): + return + + if not self._frame.GetSizer(): + return + + for part in self._uiparts: + if part.pane == paneInfo: + self._art.RequestUserAttention(dc, self._frame, part.pane.caption, part.rect, part.pane) + self._frame.RefreshRect(part.rect, True) + break + + + def StartPreviewTimer(self, toolbar): + """ + Starts a timer for sliding in and out a minimized pane. + + :param `toolbar`: the L{AuiToolBar} containing the minimized pane tool. + """ + + toolbar_pane = self.GetPane(toolbar) + toolbar_name = toolbar_pane.name + + pane_name = toolbar_name[0:-4] + + self._sliding_pane = self.GetPane(pane_name) + self._sliding_rect = toolbar.GetScreenRect() + self._sliding_direction = toolbar_pane.dock_direction + self._sliding_frame = None + + self._preview_timer.Start(1000, wx.TIMER_ONE_SHOT) + + + def StopPreviewTimer(self): + """ Stops a timer for sliding in and out a minimized pane. """ + + if self._preview_timer.IsRunning(): + self._preview_timer.Stop() + + self.SlideOut() + self._sliding_pane = None + + + def SlideIn(self, event): + """ + Handles the ``wx.EVT_TIMER`` event for L{AuiManager}. + + :param `event`: a `wx.TimerEvent` to be processed. + + :note: This is used solely for sliding in and out minimized panes. + """ + + window = self._sliding_pane.window + self._sliding_frame = wx.MiniFrame(None, -1, title=_("Pane Preview"), + style=wx.FRAME_TOOL_WINDOW | wx.STAY_ON_TOP | + wx.FRAME_NO_TASKBAR | wx.CAPTION) + window.Reparent(self._sliding_frame) + self._sliding_frame.SetSize((0, 0)) + window.Show() + self._sliding_frame.Show() + + size = window.GetBestSize() + + startX, startY, stopX, stopY = GetSlidingPoints(self._sliding_rect, size, self._sliding_direction) + + step = stopX/10 + window_size = 0 + + for i in xrange(0, stopX, step): + window_size = i + self._sliding_frame.SetDimensions(startX, startY, window_size, stopY) + self._sliding_frame.Refresh() + self._sliding_frame.Update() + wx.MilliSleep(10) + + self._sliding_frame.SetDimensions(startX, startY, stopX, stopY) + self._sliding_frame.Refresh() + self._sliding_frame.Update() + + + def SlideOut(self): + """ + Slides out a preview of a minimized pane. + + :note: This is used solely for sliding in and out minimized panes. + """ + + if not self._sliding_frame: + return + + window = self._sliding_frame.GetChildren()[0] + size = window.GetBestSize() + + startX, startY, stopX, stopY = GetSlidingPoints(self._sliding_rect, size, self._sliding_direction) + + step = stopX/10 + window_size = 0 + + for i in xrange(stopX, 0, -step): + window_size = i + self._sliding_frame.SetDimensions(startX, startY, window_size, stopY) + self._sliding_frame.Refresh() + self._sliding_frame.Update() + self._frame.RefreshRect(wx.Rect(startX+window_size, startY, step, stopY)) + self._frame.Update() + wx.MilliSleep(10) + + self._sliding_frame.SetDimensions(startX, startY, 0, stopY) + + window.Hide() + window.Reparent(self._frame) + + self._sliding_frame.Hide() + self._sliding_frame.Destroy() + self._sliding_frame = None + self._sliding_pane = None + + +class AuiManager_DCP(AuiManager): + """ + A class similar to L{AuiManager} but with a Dummy Center Pane (**DCP**). + The code for this class is still flickery due to the call to `wx.CallAfter` + and the double-update call. + """ + + def __init__(self, *args, **keys): + + AuiManager.__init__(self, *args, **keys) + self.hasDummyPane = False + + + def _createDummyPane(self): + """ Creates a Dummy Center Pane (**DCP**). """ + + if self.hasDummyPane: + return + + self.hasDummyPane = True + dummy = wx.Panel(self.GetManagedWindow()) + info = AuiPaneInfo().CenterPane().NotebookDockable(True).Name('dummyCenterPane').DestroyOnClose(True) + self.AddPane(dummy, info) + + + def _destroyDummyPane(self): + """ Destroys the Dummy Center Pane (**DCP**). """ + + if not self.hasDummyPane: + return + + self.hasDummyPane = False + self.ClosePane(self.GetPane('dummyCenterPane')) + + + def Update(self): + """ + This method is called after any number of changes are made to any of the + managed panes. L{Update} must be invoked after L{AuiManager.AddPane} or L{AuiManager.InsertPane} are + called in order to "realize" or "commit" the changes. + + In addition, any number of changes may be made to L{AuiPaneInfo} structures + (retrieved with L{AuiManager.GetPane}), but to realize the changes, L{Update} + must be called. This construction allows pane flicker to be avoided by updating + the whole layout at one time. + """ + + AuiManager.Update(self) + + # check if there's already a center pane (except our dummy pane) + dummyCenterPane = self.GetPane('dummyCenterPane') + haveCenterPane = any((pane != dummyCenterPane) and (pane.dock_direction == AUI_DOCK_CENTER) and + not pane.IsFloating() and pane.IsShown() for pane in self.GetAllPanes()) + if haveCenterPane: + if self.hasDummyPane: + # there's our dummy pane and also another center pane, therefor let's remove our dummy + def do(): + self._destroyDummyPane() + self.Update() + wx.CallAfter(do) + else: + # if we get here, there's no center pane, create our dummy + if not self.hasDummyPane: + self._createDummyPane() + + diff --git a/agw/aui/framemanager.pyc b/agw/aui/framemanager.pyc new file mode 100644 index 0000000..1b775f1 Binary files /dev/null and b/agw/aui/framemanager.pyc differ diff --git a/agw/aui/tabart.py b/agw/aui/tabart.py new file mode 100644 index 0000000..60b8e01 --- /dev/null +++ b/agw/aui/tabart.py @@ -0,0 +1,2777 @@ +""" +Tab art provider code - a tab provider provides all drawing functionality to +the L{AuiNotebook}. This allows the L{AuiNotebook} to have a plugable look-and-feel. + +By default, a L{AuiNotebook} uses an instance of this class called L{AuiDefaultTabArt} +which provides bitmap art and a colour scheme that is adapted to the major platforms' +look. You can either derive from that class to alter its behaviour or write a +completely new tab art class. Call L{AuiNotebook.SetArtProvider} to make use this +new tab art. +""" + +__author__ = "Andrea Gavana " +__date__ = "31 March 2009" + + +import wx + +if wx.Platform == '__WXMAC__': + import Carbon.Appearance + +from aui_utilities import BitmapFromBits, StepColour, IndentPressedBitmap, ChopText +from aui_utilities import GetBaseColour, DrawMACCloseButton, LightColour, TakeScreenShot +from aui_utilities import CopyAttributes + +from aui_constants import * + + +# -- GUI helper classes and functions -- +class AuiCommandCapture(wx.PyEvtHandler): + """ A class to handle the dropdown window menu. """ + + def __init__(self): + """ Default class constructor. """ + + wx.PyEvtHandler.__init__(self) + self._last_id = 0 + + + def GetCommandId(self): + """ Returns the event command identifier. """ + + return self._last_id + + + def ProcessEvent(self, event): + """ + Processes an event, searching event tables and calling zero or more suitable + event handler function(s). + + :param `event`: the event to process. + + :note: Normally, your application would not call this function: it is called + in the wxPython implementation to dispatch incoming user interface events + to the framework (and application). + However, you might need to call it if implementing new functionality (such as + a new control) where you define new event types, as opposed to allowing the + user to override functions. + + An instance where you might actually override the L{ProcessEvent} function is where + you want to direct event processing to event handlers not normally noticed by + wxPython. For example, in the document/view architecture, documents and views + are potential event handlers. When an event reaches a frame, L{ProcessEvent} will + need to be called on the associated document and view in case event handler + functions are associated with these objects. + + The normal order of event table searching is as follows: + + 1. If the object is disabled (via a call to `SetEvtHandlerEnabled`) the function + skips to step (6). + 2. If the object is a `wx.Window`, L{ProcessEvent} is recursively called on the window's + `wx.Validator`. If this returns ``True``, the function exits. + 3. wxWidgets `SearchEventTable` is called for this event handler. If this fails, the + base class table is tried, and so on until no more tables exist or an appropriate + function was found, in which case the function exits. + 4. The search is applied down the entire chain of event handlers (usually the chain + has a length of one). If this succeeds, the function exits. + 5. If the object is a `wx.Window` and the event is a `wx.CommandEvent`, L{ProcessEvent} is + recursively applied to the parent window's event handler. If this returns ``True``, + the function exits. + 6. Finally, L{ProcessEvent} is called on the `wx.App` object. + """ + + if event.GetEventType() == wx.wxEVT_COMMAND_MENU_SELECTED: + self._last_id = event.GetId() + return True + + if self.GetNextHandler(): + return self.GetNextHandler().ProcessEvent(event) + + return False + + +class AuiDefaultTabArt(object): + """ + Tab art provider code - a tab provider provides all drawing functionality to + the L{AuiNotebook}. This allows the L{AuiNotebook} to have a plugable look-and-feel. + + By default, a L{AuiNotebook} uses an instance of this class called L{AuiDefaultTabArt} + which provides bitmap art and a colour scheme that is adapted to the major platforms' + look. You can either derive from that class to alter its behaviour or write a + completely new tab art class. Call L{AuiNotebook.SetArtProvider} to make use this + new tab art. + """ + + def __init__(self): + """ Default class constructor. """ + + self._normal_font = wx.SystemSettings_GetFont(wx.SYS_DEFAULT_GUI_FONT) + self._selected_font = wx.SystemSettings_GetFont(wx.SYS_DEFAULT_GUI_FONT) + self._selected_font.SetWeight(wx.BOLD) + self._measuring_font = self._selected_font + + self._fixed_tab_width = 100 + self._tab_ctrl_height = 0 + self._buttonRect = wx.Rect() + + self.SetDefaultColours() + + if wx.Platform == "__WXMAC__": + bmp_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DDKSHADOW) + self._active_close_bmp = DrawMACCloseButton(bmp_colour) + self._disabled_close_bmp = DrawMACCloseButton(wx.Colour(128, 128, 128)) + else: + self._active_close_bmp = BitmapFromBits(nb_close_bits, 16, 16, wx.BLACK) + self._disabled_close_bmp = BitmapFromBits(nb_close_bits, 16, 16, wx.Colour(128, 128, 128)) + + self._hover_close_bmp = self._active_close_bmp + self._pressed_close_bmp = self._active_close_bmp + + self._active_left_bmp = BitmapFromBits(nb_left_bits, 16, 16, wx.BLACK) + self._disabled_left_bmp = BitmapFromBits(nb_left_bits, 16, 16, wx.Colour(128, 128, 128)) + + self._active_right_bmp = BitmapFromBits(nb_right_bits, 16, 16, wx.BLACK) + self._disabled_right_bmp = BitmapFromBits(nb_right_bits, 16, 16, wx.Colour(128, 128, 128)) + + self._active_windowlist_bmp = BitmapFromBits(nb_list_bits, 16, 16, wx.BLACK) + self._disabled_windowlist_bmp = BitmapFromBits(nb_list_bits, 16, 16, wx.Colour(128, 128, 128)) + + if wx.Platform == "__WXMAC__": + # Get proper highlight colour for focus rectangle from the + # current Mac theme. kThemeBrushFocusHighlight is + # available on Mac OS 8.5 and higher + if hasattr(wx, 'MacThemeColour'): + c = wx.MacThemeColour(Carbon.Appearance.kThemeBrushFocusHighlight) + else: + brush = wx.Brush(wx.BLACK) + brush.MacSetTheme(Carbon.Appearance.kThemeBrushFocusHighlight) + c = brush.GetColour() + self._focusPen = wx.Pen(c, 2, wx.SOLID) + else: + self._focusPen = wx.Pen(wx.BLACK, 1, wx.USER_DASH) + self._focusPen.SetDashes([1, 1]) + self._focusPen.SetCap(wx.CAP_BUTT) + + + def SetBaseColour(self, base_colour): + """ + Sets a new base colour. + + :param `base_colour`: an instance of `wx.Colour`. + """ + + self._base_colour = base_colour + self._base_colour_pen = wx.Pen(self._base_colour) + self._base_colour_brush = wx.Brush(self._base_colour) + + + def SetDefaultColours(self, base_colour=None): + """ + Sets the default colours, which are calculated from the given base colour. + + :param `base_colour`: an instance of `wx.Colour`. If defaulted to ``None``, a colour + is generated accordingly to the platform and theme. + """ + + if base_colour is None: + base_colour = GetBaseColour() + + self.SetBaseColour( base_colour ) + self._border_colour = StepColour(base_colour, 75) + self._border_pen = wx.Pen(self._border_colour) + + self._background_top_colour = StepColour(self._base_colour, 90) + self._background_bottom_colour = StepColour(self._base_colour, 170) + + self._tab_top_colour = self._base_colour + self._tab_bottom_colour = wx.WHITE + self._tab_gradient_highlight_colour = wx.WHITE + + self._tab_inactive_top_colour = self._base_colour + self._tab_inactive_bottom_colour = StepColour(self._tab_inactive_top_colour, 160) + + self._tab_text_colour = lambda page: page.text_colour + self._tab_disabled_text_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT) + + + def Clone(self): + """ Clones the art object. """ + + art = type(self)() + art.SetNormalFont(self.GetNormalFont()) + art.SetSelectedFont(self.GetSelectedFont()) + art.SetMeasuringFont(self.GetMeasuringFont()) + + art = CopyAttributes(art, self) + return art + + + def SetAGWFlags(self, agwFlags): + """ + Sets the tab art flags. + + :param `agwFlags`: a combination of the following values: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_NB_TOP`` With this style, tabs are drawn along the top of the notebook + ``AUI_NB_LEFT`` With this style, tabs are drawn along the left of the notebook. Not implemented yet. + ``AUI_NB_RIGHT`` With this style, tabs are drawn along the right of the notebook. Not implemented yet. + ``AUI_NB_BOTTOM`` With this style, tabs are drawn along the bottom of the notebook + ``AUI_NB_TAB_SPLIT`` Allows the tab control to be split by dragging a tab + ``AUI_NB_TAB_MOVE`` Allows a tab to be moved horizontally by dragging + ``AUI_NB_TAB_EXTERNAL_MOVE`` Allows a tab to be moved to another tab control + ``AUI_NB_TAB_FIXED_WIDTH`` With this style, all tabs have the same width + ``AUI_NB_SCROLL_BUTTONS`` With this style, left and right scroll buttons are displayed + ``AUI_NB_WINDOWLIST_BUTTON`` With this style, a drop-down list of windows is available + ``AUI_NB_CLOSE_BUTTON`` With this style, a close button is available on the tab bar + ``AUI_NB_CLOSE_ON_ACTIVE_TAB`` With this style, a close button is available on the active tab + ``AUI_NB_CLOSE_ON_ALL_TABS`` With this style, a close button is available on all tabs + ``AUI_NB_MIDDLE_CLICK_CLOSE`` Allows to close L{AuiNotebook} tabs by mouse middle button click + ``AUI_NB_SUB_NOTEBOOK`` This style is used by L{AuiManager} to create automatic AuiNotebooks + ``AUI_NB_HIDE_ON_SINGLE_TAB`` Hides the tab window if only one tab is present + ``AUI_NB_SMART_TABS`` Use Smart Tabbing, like ``Alt`` + ``Tab`` on Windows + ``AUI_NB_USE_IMAGES_DROPDOWN`` Uses images on dropdown window list menu instead of check items + ``AUI_NB_CLOSE_ON_TAB_LEFT`` Draws the tab close button on the left instead of on the right (a la Camino browser) + ``AUI_NB_TAB_FLOAT`` Allows the floating of single tabs. Known limitation: when the notebook is more or less full screen, tabs cannot be dragged far enough outside of the notebook to become floating pages + ``AUI_NB_DRAW_DND_TAB`` Draws an image representation of a tab while dragging (on by default) + ``AUI_NB_ORDER_BY_ACCESS`` Tab navigation order by last access time for the tabs + ``AUI_NB_NO_TAB_FOCUS`` Don't draw tab focus rectangle + ==================================== ================================== + + """ + + self._agwFlags = agwFlags + + + def GetAGWFlags(self): + """ + Returns the tab art flags. + + :see: L{SetAGWFlags} for a list of possible return values. + """ + + return self._agwFlags + + + def SetSizingInfo(self, tab_ctrl_size, tab_count, minMaxTabWidth): + """ + Sets the tab sizing information. + + :param `tab_ctrl_size`: the size of the tab control area; + :param `tab_count`: the number of tabs; + :param `minMaxTabWidth`: a tuple containing the minimum and maximum tab widths + to be used when the ``AUI_NB_TAB_FIXED_WIDTH`` style is active. + """ + + self._fixed_tab_width = 100 + minTabWidth, maxTabWidth = minMaxTabWidth + + tot_width = tab_ctrl_size.x - self.GetIndentSize() - 4 + agwFlags = self.GetAGWFlags() + + if agwFlags & AUI_NB_CLOSE_BUTTON: + tot_width -= self._active_close_bmp.GetWidth() + if agwFlags & AUI_NB_WINDOWLIST_BUTTON: + tot_width -= self._active_windowlist_bmp.GetWidth() + + if tab_count > 0: + self._fixed_tab_width = tot_width/tab_count + + if self._fixed_tab_width < 100: + self._fixed_tab_width = 100 + + if self._fixed_tab_width > tot_width/2: + self._fixed_tab_width = tot_width/2 + + if self._fixed_tab_width > 220: + self._fixed_tab_width = 220 + + if minTabWidth > -1: + self._fixed_tab_width = max(self._fixed_tab_width, minTabWidth) + if maxTabWidth > -1: + self._fixed_tab_width = min(self._fixed_tab_width, maxTabWidth) + + self._tab_ctrl_height = tab_ctrl_size.y + + + def DrawBackground(self, dc, wnd, rect): + """ + Draws the tab area background. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `rect`: the tab control rectangle. + """ + + self._buttonRect = wx.Rect() + + # draw background + agwFlags = self.GetAGWFlags() + if agwFlags & AUI_NB_BOTTOM: + r = wx.Rect(rect.x, rect.y, rect.width+2, rect.height) + + # TODO: else if (agwFlags & AUI_NB_LEFT) + # TODO: else if (agwFlags & AUI_NB_RIGHT) + else: #for AUI_NB_TOP + r = wx.Rect(rect.x, rect.y, rect.width+2, rect.height-3) + + dc.GradientFillLinear(r, self._background_top_colour, self._background_bottom_colour, wx.SOUTH) + + # draw base lines + + dc.SetPen(self._border_pen) + y = rect.GetHeight() + w = rect.GetWidth() + + if agwFlags & AUI_NB_BOTTOM: + dc.SetBrush(wx.Brush(self._background_bottom_colour)) + dc.DrawRectangle(-1, 0, w+2, 4) + + # TODO: else if (agwFlags & AUI_NB_LEFT) + # TODO: else if (agwFlags & AUI_NB_RIGHT) + + else: # for AUI_NB_TOP + dc.SetBrush(self._base_colour_brush) + dc.DrawRectangle(-1, y-4, w+2, 4) + + + def DrawTab(self, dc, wnd, page, in_rect, close_button_state, paint_control=False): + """ + Draws a single tab. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `page`: the tab control page associated with the tab; + :param `in_rect`: rectangle the tab should be confined to; + :param `close_button_state`: the state of the close button on the tab; + :param `paint_control`: whether to draw the control inside a tab (if any) on a `wx.MemoryDC`. + """ + + # if the caption is empty, measure some temporary text + caption = page.caption + if not caption: + caption = "Xj" + + dc.SetFont(self._selected_font) + selected_textx, selected_texty, dummy = dc.GetMultiLineTextExtent(caption) + + dc.SetFont(self._normal_font) + normal_textx, normal_texty, dummy = dc.GetMultiLineTextExtent(caption) + + control = page.control + + # figure out the size of the tab + tab_size, x_extent = self.GetTabSize(dc, wnd, page.caption, page.bitmap, + page.active, close_button_state, control) + + tab_height = self._tab_ctrl_height - 3 + tab_width = tab_size[0] + tab_x = in_rect.x + tab_y = in_rect.y + in_rect.height - tab_height + + caption = page.caption + + # select pen, brush and font for the tab to be drawn + + if page.active: + + dc.SetFont(self._selected_font) + textx, texty = selected_textx, selected_texty + + else: + + dc.SetFont(self._normal_font) + textx, texty = normal_textx, normal_texty + + if not page.enabled: + dc.SetTextForeground(self._tab_disabled_text_colour) + pagebitmap = page.dis_bitmap + else: + dc.SetTextForeground(self._tab_text_colour(page)) + pagebitmap = page.bitmap + + # create points that will make the tab outline + + clip_width = tab_width + if tab_x + clip_width > in_rect.x + in_rect.width: + clip_width = in_rect.x + in_rect.width - tab_x + + # since the above code above doesn't play well with WXDFB or WXCOCOA, + # we'll just use a rectangle for the clipping region for now -- + dc.SetClippingRegion(tab_x, tab_y, clip_width+1, tab_height-3) + + border_points = [wx.Point() for i in xrange(6)] + agwFlags = self.GetAGWFlags() + + if agwFlags & AUI_NB_BOTTOM: + + border_points[0] = wx.Point(tab_x, tab_y) + border_points[1] = wx.Point(tab_x, tab_y+tab_height-6) + border_points[2] = wx.Point(tab_x+2, tab_y+tab_height-4) + border_points[3] = wx.Point(tab_x+tab_width-2, tab_y+tab_height-4) + border_points[4] = wx.Point(tab_x+tab_width, tab_y+tab_height-6) + border_points[5] = wx.Point(tab_x+tab_width, tab_y) + + else: #if (agwFlags & AUI_NB_TOP) + + border_points[0] = wx.Point(tab_x, tab_y+tab_height-4) + border_points[1] = wx.Point(tab_x, tab_y+2) + border_points[2] = wx.Point(tab_x+2, tab_y) + border_points[3] = wx.Point(tab_x+tab_width-2, tab_y) + border_points[4] = wx.Point(tab_x+tab_width, tab_y+2) + border_points[5] = wx.Point(tab_x+tab_width, tab_y+tab_height-4) + + # TODO: else if (agwFlags & AUI_NB_LEFT) + # TODO: else if (agwFlags & AUI_NB_RIGHT) + + drawn_tab_yoff = border_points[1].y + drawn_tab_height = border_points[0].y - border_points[1].y + + if page.active: + + # draw active tab + + # draw base background colour + r = wx.Rect(tab_x, tab_y, tab_width, tab_height) + dc.SetPen(self._base_colour_pen) + dc.SetBrush(self._base_colour_brush) + dc.DrawRectangle(r.x+1, r.y+1, r.width-1, r.height-4) + + # this white helps fill out the gradient at the top of the tab + dc.SetPen( wx.Pen(self._tab_gradient_highlight_colour) ) + dc.SetBrush( wx.Brush(self._tab_gradient_highlight_colour) ) + dc.DrawRectangle(r.x+2, r.y+1, r.width-3, r.height-4) + + # these two points help the rounded corners appear more antialiased + dc.SetPen(self._base_colour_pen) + dc.DrawPoint(r.x+2, r.y+1) + dc.DrawPoint(r.x+r.width-2, r.y+1) + + # set rectangle down a bit for gradient drawing + r.SetHeight(r.GetHeight()/2) + r.x += 2 + r.width -= 2 + r.y += r.height + r.y -= 2 + + # draw gradient background + top_colour = self._tab_bottom_colour + bottom_colour = self._tab_top_colour + dc.GradientFillLinear(r, bottom_colour, top_colour, wx.NORTH) + + else: + + # draw inactive tab + + r = wx.Rect(tab_x, tab_y+1, tab_width, tab_height-3) + + # start the gradent up a bit and leave the inside border inset + # by a pixel for a 3D look. Only the top half of the inactive + # tab will have a slight gradient + r.x += 3 + r.y += 1 + r.width -= 4 + r.height /= 2 + r.height -= 1 + + # -- draw top gradient fill for glossy look + top_colour = self._tab_inactive_top_colour + bottom_colour = self._tab_inactive_bottom_colour + dc.GradientFillLinear(r, bottom_colour, top_colour, wx.NORTH) + + r.y += r.height + r.y -= 1 + + # -- draw bottom fill for glossy look + top_colour = self._tab_inactive_bottom_colour + bottom_colour = self._tab_inactive_bottom_colour + dc.GradientFillLinear(r, top_colour, bottom_colour, wx.SOUTH) + + # draw tab outline + dc.SetPen(self._border_pen) + dc.SetBrush(wx.TRANSPARENT_BRUSH) + dc.DrawPolygon(border_points) + + # there are two horizontal grey lines at the bottom of the tab control, + # this gets rid of the top one of those lines in the tab control + if page.active: + + if agwFlags & AUI_NB_BOTTOM: + dc.SetPen(wx.Pen(self._background_bottom_colour)) + + # TODO: else if (agwFlags & AUI_NB_LEFT) + # TODO: else if (agwFlags & AUI_NB_RIGHT) + else: # for AUI_NB_TOP + dc.SetPen(self._base_colour_pen) + + dc.DrawLine(border_points[0].x+1, + border_points[0].y, + border_points[5].x, + border_points[5].y) + + text_offset = tab_x + 8 + close_button_width = 0 + + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + close_button_width = self._active_close_bmp.GetWidth() + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + text_offset += close_button_width - 5 + + bitmap_offset = 0 + + if pagebitmap.IsOk(): + + bitmap_offset = tab_x + 8 + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT and close_button_width: + bitmap_offset += close_button_width - 5 + + # draw bitmap + dc.DrawBitmap(pagebitmap, + bitmap_offset, + drawn_tab_yoff + (drawn_tab_height/2) - (pagebitmap.GetHeight()/2), + True) + + text_offset = bitmap_offset + pagebitmap.GetWidth() + text_offset += 3 # bitmap padding + + else: + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT == 0 or not close_button_width: + text_offset = tab_x + 8 + + draw_text = ChopText(dc, caption, tab_width - (text_offset-tab_x) - close_button_width) + + ypos = drawn_tab_yoff + (drawn_tab_height)/2 - (texty/2) - 1 + + offset_focus = text_offset + if control is not None: + if control.GetPosition() != wx.Point(text_offset+1, ypos): + control.SetPosition(wx.Point(text_offset+1, ypos)) + + if not control.IsShown(): + control.Show() + + if paint_control: + bmp = TakeScreenShot(control.GetScreenRect()) + dc.DrawBitmap(bmp, text_offset+1, ypos, True) + + controlW, controlH = control.GetSize() + text_offset += controlW + 4 + textx += controlW + 4 + + # draw tab text + rectx, recty, dummy = dc.GetMultiLineTextExtent(draw_text) + dc.DrawLabel(draw_text, wx.Rect(text_offset, ypos, rectx, recty)) + + # draw focus rectangle + if (agwFlags & AUI_NB_NO_TAB_FOCUS) == 0: + self.DrawFocusRectangle(dc, page, wnd, draw_text, offset_focus, bitmap_offset, drawn_tab_yoff, drawn_tab_height, rectx, recty) + + out_button_rect = wx.Rect() + + # draw close button if necessary + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + + bmp = self._disabled_close_bmp + + if close_button_state == AUI_BUTTON_STATE_HOVER: + bmp = self._hover_close_bmp + elif close_button_state == AUI_BUTTON_STATE_PRESSED: + bmp = self._pressed_close_bmp + + shift = (agwFlags & AUI_NB_BOTTOM and [1] or [0])[0] + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + rect = wx.Rect(tab_x + 4, tab_y + (tab_height - bmp.GetHeight())/2 - shift, + close_button_width, tab_height) + else: + rect = wx.Rect(tab_x + tab_width - close_button_width - 1, + tab_y + (tab_height - bmp.GetHeight())/2 - shift, + close_button_width, tab_height) + + rect = IndentPressedBitmap(rect, close_button_state) + dc.DrawBitmap(bmp, rect.x, rect.y, True) + + out_button_rect = rect + + out_tab_rect = wx.Rect(tab_x, tab_y, tab_width, tab_height) + + dc.DestroyClippingRegion() + + return out_tab_rect, out_button_rect, x_extent + + + def SetCustomButton(self, bitmap_id, button_state, bmp): + """ + Sets a custom bitmap for the close, left, right and window list + buttons. + + :param `bitmap_id`: the button identifier; + :param `button_state`: the button state; + :param `bmp`: the custom bitmap to use for the button. + """ + + if bitmap_id == AUI_BUTTON_CLOSE: + if button_state == AUI_BUTTON_STATE_NORMAL: + self._active_close_bmp = bmp + self._hover_close_bmp = self._active_close_bmp + self._pressed_close_bmp = self._active_close_bmp + self._disabled_close_bmp = self._active_close_bmp + + elif button_state == AUI_BUTTON_STATE_HOVER: + self._hover_close_bmp = bmp + elif button_state == AUI_BUTTON_STATE_PRESSED: + self._pressed_close_bmp = bmp + else: + self._disabled_close_bmp = bmp + + elif bitmap_id == AUI_BUTTON_LEFT: + if button_state & AUI_BUTTON_STATE_DISABLED: + self._disabled_left_bmp = bmp + else: + self._active_left_bmp = bmp + + elif bitmap_id == AUI_BUTTON_RIGHT: + if button_state & AUI_BUTTON_STATE_DISABLED: + self._disabled_right_bmp = bmp + else: + self._active_right_bmp = bmp + + elif bitmap_id == AUI_BUTTON_WINDOWLIST: + if button_state & AUI_BUTTON_STATE_DISABLED: + self._disabled_windowlist_bmp = bmp + else: + self._active_windowlist_bmp = bmp + + + def GetIndentSize(self): + """ Returns the tabs indent size. """ + + return 5 + + + def GetTabSize(self, dc, wnd, caption, bitmap, active, close_button_state, control=None): + """ + Returns the tab size for the given caption, bitmap and button state. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `caption`: the tab text caption; + :param `bitmap`: the bitmap displayed on the tab; + :param `active`: whether the tab is selected or not; + :param `close_button_state`: the state of the close button on the tab; + :param `control`: a `wx.Window` instance inside a tab (or ``None``). + """ + + dc.SetFont(self._measuring_font) + measured_textx, measured_texty, dummy = dc.GetMultiLineTextExtent(caption) + + # add padding around the text + tab_width = measured_textx + tab_height = measured_texty + + # if the close button is showing, add space for it + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + tab_width += self._active_close_bmp.GetWidth() + 3 + + # if there's a bitmap, add space for it + if bitmap.IsOk(): + tab_width += bitmap.GetWidth() + tab_width += 3 # right side bitmap padding + tab_height = max(tab_height, bitmap.GetHeight()) + + # add padding + tab_width += 16 + tab_height += 10 + + agwFlags = self.GetAGWFlags() + if agwFlags & AUI_NB_TAB_FIXED_WIDTH: + tab_width = self._fixed_tab_width + + if control is not None: + tab_width += control.GetSize().GetWidth() + 4 + + x_extent = tab_width + + return (tab_width, tab_height), x_extent + + + def DrawButton(self, dc, wnd, in_rect, button, orientation): + """ + Draws a button on the tab or on the tab area, depending on the button identifier. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `in_rect`: rectangle the tab should be confined to; + :param `button`: an instance of the button class; + :param `orientation`: the tab orientation. + """ + + bitmap_id, button_state = button.id, button.cur_state + + if bitmap_id == AUI_BUTTON_CLOSE: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = self._disabled_close_bmp + elif button_state & AUI_BUTTON_STATE_HOVER: + bmp = self._hover_close_bmp + elif button_state & AUI_BUTTON_STATE_PRESSED: + bmp = self._pressed_close_bmp + else: + bmp = self._active_close_bmp + + elif bitmap_id == AUI_BUTTON_LEFT: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = self._disabled_left_bmp + else: + bmp = self._active_left_bmp + + elif bitmap_id == AUI_BUTTON_RIGHT: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = self._disabled_right_bmp + else: + bmp = self._active_right_bmp + + elif bitmap_id == AUI_BUTTON_WINDOWLIST: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = self._disabled_windowlist_bmp + else: + bmp = self._active_windowlist_bmp + + else: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = button.dis_bitmap + else: + bmp = button.bitmap + + if not bmp.IsOk(): + return + + rect = wx.Rect(*in_rect) + + if orientation == wx.LEFT: + + rect.SetX(in_rect.x) + rect.SetY(((in_rect.y + in_rect.height)/2) - (bmp.GetHeight()/2)) + rect.SetWidth(bmp.GetWidth()) + rect.SetHeight(bmp.GetHeight()) + + else: + + rect = wx.Rect(in_rect.x + in_rect.width - bmp.GetWidth(), + ((in_rect.y + in_rect.height)/2) - (bmp.GetHeight()/2), + bmp.GetWidth(), bmp.GetHeight()) + + rect = IndentPressedBitmap(rect, button_state) + dc.DrawBitmap(bmp, rect.x, rect.y, True) + + out_rect = rect + + if bitmap_id == AUI_BUTTON_RIGHT: + self._buttonRect = wx.Rect(rect.x, rect.y, 30, rect.height) + + return out_rect + + + def DrawFocusRectangle(self, dc, page, wnd, draw_text, text_offset, bitmap_offset, drawn_tab_yoff, drawn_tab_height, textx, texty): + """ + Draws the focus rectangle on a tab. + + :param `dc`: a `wx.DC` device context; + :param `page`: the page associated with the tab; + :param `wnd`: a `wx.Window` instance object; + :param `draw_text`: the text that has been drawn on the tab; + :param `text_offset`: the text offset on the tab; + :param `bitmap_offset`: the bitmap offset on the tab; + :param `drawn_tab_yoff`: the y offset of the tab text; + :param `drawn_tab_height`: the height of the tab; + :param `textx`: the x text extent; + :param `texty`: the y text extent. + """ + + if self.GetAGWFlags() & AUI_NB_NO_TAB_FOCUS: + return + + if page.active and wx.Window.FindFocus() == wnd: + + focusRectText = wx.Rect(text_offset, (drawn_tab_yoff + (drawn_tab_height)/2 - (texty/2)), + textx, texty) + + if page.bitmap.IsOk(): + focusRectBitmap = wx.Rect(bitmap_offset, drawn_tab_yoff + (drawn_tab_height/2) - (page.bitmap.GetHeight()/2), + page.bitmap.GetWidth(), page.bitmap.GetHeight()) + + if page.bitmap.IsOk() and draw_text == "": + focusRect = wx.Rect(*focusRectBitmap) + elif not page.bitmap.IsOk() and draw_text != "": + focusRect = wx.Rect(*focusRectText) + elif page.bitmap.IsOk() and draw_text != "": + focusRect = focusRectText.Union(focusRectBitmap) + + focusRect.Inflate(2, 2) + + dc.SetBrush(wx.TRANSPARENT_BRUSH) + dc.SetPen(self._focusPen) + dc.DrawRoundedRectangleRect(focusRect, 2) + + + def GetBestTabCtrlSize(self, wnd, pages, required_bmp_size): + """ + Returns the best tab control size. + + :param `wnd`: a `wx.Window` instance object; + :param `pages`: the pages associated with the tabs; + :param `required_bmp_size`: the size of the bitmap on the tabs. + """ + + dc = wx.ClientDC(wnd) + dc.SetFont(self._measuring_font) + + # sometimes a standard bitmap size needs to be enforced, especially + # if some tabs have bitmaps and others don't. This is important because + # it prevents the tab control from resizing when tabs are added. + + measure_bmp = wx.NullBitmap + + if required_bmp_size.IsFullySpecified(): + measure_bmp = wx.EmptyBitmap(required_bmp_size.x, + required_bmp_size.y) + + max_y = 0 + + for page in pages: + + if measure_bmp.IsOk(): + bmp = measure_bmp + else: + bmp = page.bitmap + + # we don't use the caption text because we don't + # want tab heights to be different in the case + # of a very short piece of text on one tab and a very + # tall piece of text on another tab + s, x_ext = self.GetTabSize(dc, wnd, page.caption, bmp, True, AUI_BUTTON_STATE_HIDDEN, None) + max_y = max(max_y, s[1]) + + if page.control: + controlW, controlH = page.control.GetSize() + max_y = max(max_y, controlH+4) + + return max_y + 2 + + + def SetNormalFont(self, font): + """ + Sets the normal font for drawing tab labels. + + :param `font`: a `wx.Font` object. + """ + + self._normal_font = font + + + def SetSelectedFont(self, font): + """ + Sets the selected tab font for drawing tab labels. + + :param `font`: a `wx.Font` object. + """ + + self._selected_font = font + + + def SetMeasuringFont(self, font): + """ + Sets the font for calculating text measurements. + + :param `font`: a `wx.Font` object. + """ + + self._measuring_font = font + + + def GetNormalFont(self): + """ Returns the normal font for drawing tab labels. """ + + return self._normal_font + + + def GetSelectedFont(self): + """ Returns the selected tab font for drawing tab labels. """ + + return self._selected_font + + + def GetMeasuringFont(self): + """ Returns the font for calculating text measurements. """ + + return self._measuring_font + + + def ShowDropDown(self, wnd, pages, active_idx): + """ + Shows the drop-down window menu on the tab area. + + :param `wnd`: a `wx.Window` derived window instance; + :param `pages`: the pages associated with the tabs; + :param `active_idx`: the active tab index. + """ + + useImages = self.GetAGWFlags() & AUI_NB_USE_IMAGES_DROPDOWN + menuPopup = wx.Menu() + + longest = 0 + for i, page in enumerate(pages): + + caption = page.caption + + # if there is no caption, make it a space. This will prevent + # an assert in the menu code. + if caption == "": + caption = " " + + # Save longest caption width for calculating menu width with + width = wnd.GetTextExtent(caption)[0] + if width > longest: + longest = width + + if useImages: + menuItem = wx.MenuItem(menuPopup, 1000+i, caption) + if page.bitmap: + menuItem.SetBitmap(page.bitmap) + + menuPopup.AppendItem(menuItem) + + else: + + menuPopup.AppendCheckItem(1000+i, caption) + + menuPopup.Enable(1000+i, page.enabled) + + if active_idx != -1 and not useImages: + + menuPopup.Check(1000+active_idx, True) + + # find out the screen coordinate at the bottom of the tab ctrl + cli_rect = wnd.GetClientRect() + + # Calculate the approximate size of the popupmenu for setting the + # position of the menu when its shown. + # Account for extra padding on left/right of text on mac menus + if wx.Platform in ['__WXMAC__', '__WXMSW__']: + longest += 32 + + # Bitmap/Checkmark width + padding + longest += 20 + + if self.GetAGWFlags() & AUI_NB_CLOSE_BUTTON: + longest += 16 + + pt = wx.Point(cli_rect.x + cli_rect.GetWidth() - longest, + cli_rect.y + cli_rect.height) + + cc = AuiCommandCapture() + wnd.PushEventHandler(cc) + wnd.PopupMenu(menuPopup, pt) + command = cc.GetCommandId() + wnd.PopEventHandler(True) + + if command >= 1000: + return command - 1000 + + return -1 + + +class AuiSimpleTabArt(object): + """ A simple-looking implementation of a tab art. """ + + def __init__(self): + """ Default class constructor. """ + + self._normal_font = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + self._selected_font = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + self._selected_font.SetWeight(wx.BOLD) + self._measuring_font = self._selected_font + + self._agwFlags = 0 + self._fixed_tab_width = 100 + + base_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DFACE) + + background_colour = base_colour + normaltab_colour = base_colour + selectedtab_colour = wx.WHITE + + self._bkbrush = wx.Brush(background_colour) + self._normal_bkbrush = wx.Brush(normaltab_colour) + self._normal_bkpen = wx.Pen(normaltab_colour) + self._selected_bkbrush = wx.Brush(selectedtab_colour) + self._selected_bkpen = wx.Pen(selectedtab_colour) + + self._active_close_bmp = BitmapFromBits(nb_close_bits, 16, 16, wx.BLACK) + self._disabled_close_bmp = BitmapFromBits(nb_close_bits, 16, 16, wx.Colour(128, 128, 128)) + + self._active_left_bmp = BitmapFromBits(nb_left_bits, 16, 16, wx.BLACK) + self._disabled_left_bmp = BitmapFromBits(nb_left_bits, 16, 16, wx.Colour(128, 128, 128)) + + self._active_right_bmp = BitmapFromBits(nb_right_bits, 16, 16, wx.BLACK) + self._disabled_right_bmp = BitmapFromBits(nb_right_bits, 16, 16, wx.Colour(128, 128, 128)) + + self._active_windowlist_bmp = BitmapFromBits(nb_list_bits, 16, 16, wx.BLACK) + self._disabled_windowlist_bmp = BitmapFromBits(nb_list_bits, 16, 16, wx.Colour(128, 128, 128)) + + + def Clone(self): + """ Clones the art object. """ + + art = type(self)() + art.SetNormalFont(self.GetNormalFont()) + art.SetSelectedFont(self.GetSelectedFont()) + art.SetMeasuringFont(self.GetMeasuringFont()) + + art = CopyAttributes(art, self) + return art + + + def SetAGWFlags(self, agwFlags): + """ + Sets the tab art flags. + + :param `agwFlags`: a combination of the following values: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_NB_TOP`` With this style, tabs are drawn along the top of the notebook + ``AUI_NB_LEFT`` With this style, tabs are drawn along the left of the notebook. Not implemented yet. + ``AUI_NB_RIGHT`` With this style, tabs are drawn along the right of the notebook. Not implemented yet. + ``AUI_NB_BOTTOM`` With this style, tabs are drawn along the bottom of the notebook + ``AUI_NB_TAB_SPLIT`` Allows the tab control to be split by dragging a tab + ``AUI_NB_TAB_MOVE`` Allows a tab to be moved horizontally by dragging + ``AUI_NB_TAB_EXTERNAL_MOVE`` Allows a tab to be moved to another tab control + ``AUI_NB_TAB_FIXED_WIDTH`` With this style, all tabs have the same width + ``AUI_NB_SCROLL_BUTTONS`` With this style, left and right scroll buttons are displayed + ``AUI_NB_WINDOWLIST_BUTTON`` With this style, a drop-down list of windows is available + ``AUI_NB_CLOSE_BUTTON`` With this style, a close button is available on the tab bar + ``AUI_NB_CLOSE_ON_ACTIVE_TAB`` With this style, a close button is available on the active tab + ``AUI_NB_CLOSE_ON_ALL_TABS`` With this style, a close button is available on all tabs + ``AUI_NB_MIDDLE_CLICK_CLOSE`` Allows to close L{AuiNotebook} tabs by mouse middle button click + ``AUI_NB_SUB_NOTEBOOK`` This style is used by L{AuiManager} to create automatic AuiNotebooks + ``AUI_NB_HIDE_ON_SINGLE_TAB`` Hides the tab window if only one tab is present + ``AUI_NB_SMART_TABS`` Use Smart Tabbing, like ``Alt`` + ``Tab`` on Windows + ``AUI_NB_USE_IMAGES_DROPDOWN`` Uses images on dropdown window list menu instead of check items + ``AUI_NB_CLOSE_ON_TAB_LEFT`` Draws the tab close button on the left instead of on the right (a la Camino browser) + ``AUI_NB_TAB_FLOAT`` Allows the floating of single tabs. Known limitation: when the notebook is more or less full screen, tabs cannot be dragged far enough outside of the notebook to become floating pages + ``AUI_NB_DRAW_DND_TAB`` Draws an image representation of a tab while dragging (on by default) + ``AUI_NB_ORDER_BY_ACCESS`` Tab navigation order by last access time for the tabs + ``AUI_NB_NO_TAB_FOCUS`` Don't draw tab focus rectangle + ==================================== ================================== + + """ + + self._agwFlags = agwFlags + + + def GetAGWFlags(self): + """ + Returns the tab art flags. + + :see: L{SetAGWFlags} for a list of possible return values. + """ + + return self._agwFlags + + + def SetSizingInfo(self, tab_ctrl_size, tab_count, minMaxTabWidth): + """ + Sets the tab sizing information. + + :param `tab_ctrl_size`: the size of the tab control area; + :param `tab_count`: the number of tabs; + :param `minMaxTabWidth`: a tuple containing the minimum and maximum tab widths + to be used when the ``AUI_NB_TAB_FIXED_WIDTH`` style is active. + """ + + self._fixed_tab_width = 100 + minTabWidth, maxTabWidth = minMaxTabWidth + + tot_width = tab_ctrl_size.x - self.GetIndentSize() - 4 + + if self._agwFlags & AUI_NB_CLOSE_BUTTON: + tot_width -= self._active_close_bmp.GetWidth() + if self._agwFlags & AUI_NB_WINDOWLIST_BUTTON: + tot_width -= self._active_windowlist_bmp.GetWidth() + + if tab_count > 0: + self._fixed_tab_width = tot_width/tab_count + + if self._fixed_tab_width < 100: + self._fixed_tab_width = 100 + + if self._fixed_tab_width > tot_width/2: + self._fixed_tab_width = tot_width/2 + + if self._fixed_tab_width > 220: + self._fixed_tab_width = 220 + + if minTabWidth > -1: + self._fixed_tab_width = max(self._fixed_tab_width, minTabWidth) + if maxTabWidth > -1: + self._fixed_tab_width = min(self._fixed_tab_width, maxTabWidth) + + self._tab_ctrl_height = tab_ctrl_size.y + + + def DrawBackground(self, dc, wnd, rect): + """ + Draws the tab area background. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `rect`: the tab control rectangle. + """ + + # draw background + dc.SetBrush(self._bkbrush) + dc.SetPen(wx.TRANSPARENT_PEN) + dc.DrawRectangle(-1, -1, rect.GetWidth()+2, rect.GetHeight()+2) + + # draw base line + dc.SetPen(wx.GREY_PEN) + dc.DrawLine(0, rect.GetHeight()-1, rect.GetWidth(), rect.GetHeight()-1) + + + def DrawTab(self, dc, wnd, page, in_rect, close_button_state, paint_control=False): + """ + Draws a single tab. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `page`: the tab control page associated with the tab; + :param `in_rect`: rectangle the tab should be confined to; + :param `close_button_state`: the state of the close button on the tab; + :param `paint_control`: whether to draw the control inside a tab (if any) on a `wx.MemoryDC`. + """ + + # if the caption is empty, measure some temporary text + caption = page.caption + if caption == "": + caption = "Xj" + + agwFlags = self.GetAGWFlags() + + dc.SetFont(self._selected_font) + selected_textx, selected_texty, dummy = dc.GetMultiLineTextExtent(caption) + + dc.SetFont(self._normal_font) + normal_textx, normal_texty, dummy = dc.GetMultiLineTextExtent(caption) + + control = page.control + + # figure out the size of the tab + tab_size, x_extent = self.GetTabSize(dc, wnd, page.caption, page.bitmap, + page.active, close_button_state, control) + + tab_height = tab_size[1] + tab_width = tab_size[0] + tab_x = in_rect.x + tab_y = in_rect.y + in_rect.height - tab_height + + caption = page.caption + # select pen, brush and font for the tab to be drawn + + if page.active: + + dc.SetPen(self._selected_bkpen) + dc.SetBrush(self._selected_bkbrush) + dc.SetFont(self._selected_font) + textx = selected_textx + texty = selected_texty + + else: + + dc.SetPen(self._normal_bkpen) + dc.SetBrush(self._normal_bkbrush) + dc.SetFont(self._normal_font) + textx = normal_textx + texty = normal_texty + + if not page.enabled: + dc.SetTextForeground(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT)) + else: + dc.SetTextForeground(page.text_colour) + + # -- draw line -- + + points = [wx.Point() for i in xrange(7)] + points[0].x = tab_x + points[0].y = tab_y + tab_height - 1 + points[1].x = tab_x + tab_height - 3 + points[1].y = tab_y + 2 + points[2].x = tab_x + tab_height + 3 + points[2].y = tab_y + points[3].x = tab_x + tab_width - 2 + points[3].y = tab_y + points[4].x = tab_x + tab_width + points[4].y = tab_y + 2 + points[5].x = tab_x + tab_width + points[5].y = tab_y + tab_height - 1 + points[6] = points[0] + + dc.SetClippingRect(in_rect) + dc.DrawPolygon(points) + + dc.SetPen(wx.GREY_PEN) + dc.DrawLines(points) + + close_button_width = 0 + + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + + close_button_width = self._active_close_bmp.GetWidth() + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + if control: + text_offset = tab_x + (tab_height/2) + close_button_width - (textx/2) - 2 + else: + text_offset = tab_x + (tab_height/2) + ((tab_width+close_button_width)/2) - (textx/2) - 2 + else: + if control: + text_offset = tab_x + (tab_height/2) + close_button_width - (textx/2) + else: + text_offset = tab_x + (tab_height/2) + ((tab_width-close_button_width)/2) - (textx/2) + + else: + + text_offset = tab_x + (tab_height/3) + (tab_width/2) - (textx/2) + if control: + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + text_offset = tab_x + (tab_height/3) - (textx/2) + close_button_width + 2 + else: + text_offset = tab_x + (tab_height/3) - (textx/2) + + # set minimum text offset + if text_offset < tab_x + tab_height: + text_offset = tab_x + tab_height + + # chop text if necessary + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + draw_text = ChopText(dc, caption, tab_width - (text_offset-tab_x)) + else: + draw_text = ChopText(dc, caption, + tab_width - (text_offset-tab_x) - close_button_width) + + ypos = (tab_y + tab_height)/2 - (texty/2) + 1 + + if control is not None: + if control.GetPosition() != wx.Point(text_offset+1, ypos): + control.SetPosition(wx.Point(text_offset+1, ypos)) + + if not control.IsShown(): + control.Show() + + if paint_control: + bmp = TakeScreenShot(control.GetScreenRect()) + dc.DrawBitmap(bmp, text_offset+1, ypos, True) + + controlW, controlH = control.GetSize() + text_offset += controlW + 4 + + # draw tab text + rectx, recty, dummy = dc.GetMultiLineTextExtent(draw_text) + dc.DrawLabel(draw_text, wx.Rect(text_offset, ypos, rectx, recty)) + + # draw focus rectangle + if page.active and wx.Window.FindFocus() == wnd and (agwFlags & AUI_NB_NO_TAB_FOCUS) == 0: + + focusRect = wx.Rect(text_offset, ((tab_y + tab_height)/2 - (texty/2) + 1), + selected_textx, selected_texty) + + focusRect.Inflate(2, 2) + # TODO: + # This should be uncommented when DrawFocusRect will become + # available in wxPython + # wx.RendererNative.Get().DrawFocusRect(wnd, dc, focusRect, 0) + + out_button_rect = wx.Rect() + # draw close button if necessary + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + + if page.active: + bmp = self._active_close_bmp + else: + bmp = self._disabled_close_bmp + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + rect = wx.Rect(tab_x + tab_height - 2, + tab_y + (tab_height/2) - (bmp.GetHeight()/2) + 1, + close_button_width, tab_height - 1) + else: + rect = wx.Rect(tab_x + tab_width - close_button_width - 1, + tab_y + (tab_height/2) - (bmp.GetHeight()/2) + 1, + close_button_width, tab_height - 1) + + self.DrawButtons(dc, rect, bmp, wx.WHITE, close_button_state) + out_button_rect = wx.Rect(*rect) + + out_tab_rect = wx.Rect(tab_x, tab_y, tab_width, tab_height) + dc.DestroyClippingRegion() + + return out_tab_rect, out_button_rect, x_extent + + + def DrawButtons(self, dc, _rect, bmp, bkcolour, button_state): + """ + Convenience method to draw tab buttons. + + :param `dc`: a `wx.DC` device context; + :param `_rect`: the tab rectangle; + :param `bmp`: the tab bitmap; + :param `bkcolour`: the tab background colour; + :param `button_state`: the state of the tab button. + """ + + rect = wx.Rect(*_rect) + + if button_state == AUI_BUTTON_STATE_PRESSED: + rect.x += 1 + rect.y += 1 + + if button_state in [AUI_BUTTON_STATE_HOVER, AUI_BUTTON_STATE_PRESSED]: + dc.SetBrush(wx.Brush(StepColour(bkcolour, 120))) + dc.SetPen(wx.Pen(StepColour(bkcolour, 75))) + + # draw the background behind the button + dc.DrawRectangle(rect.x, rect.y, 15, 15) + + # draw the button itself + dc.DrawBitmap(bmp, rect.x, rect.y, True) + + + def GetIndentSize(self): + """ Returns the tabs indent size. """ + + return 0 + + + def GetTabSize(self, dc, wnd, caption, bitmap, active, close_button_state, control=None): + """ + Returns the tab size for the given caption, bitmap and button state. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `caption`: the tab text caption; + :param `bitmap`: the bitmap displayed on the tab; + :param `active`: whether the tab is selected or not; + :param `close_button_state`: the state of the close button on the tab; + :param `control`: a `wx.Window` instance inside a tab (or ``None``). + """ + + dc.SetFont(self._measuring_font) + measured_textx, measured_texty, dummy = dc.GetMultiLineTextExtent(caption) + + tab_height = measured_texty + 4 + tab_width = measured_textx + tab_height + 5 + + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + tab_width += self._active_close_bmp.GetWidth() + + if self._agwFlags & AUI_NB_TAB_FIXED_WIDTH: + tab_width = self._fixed_tab_width + + if control is not None: + controlW, controlH = control.GetSize() + tab_width += controlW + 4 + + x_extent = tab_width - (tab_height/2) - 1 + + return (tab_width, tab_height), x_extent + + + def DrawButton(self, dc, wnd, in_rect, button, orientation): + """ + Draws a button on the tab or on the tab area, depending on the button identifier. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `in_rect`: rectangle the tab should be confined to; + :param `button`: an instance of the button class; + :param `orientation`: the tab orientation. + """ + + bitmap_id, button_state = button.id, button.cur_state + + if bitmap_id == AUI_BUTTON_CLOSE: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = self._disabled_close_bmp + else: + bmp = self._active_close_bmp + + elif bitmap_id == AUI_BUTTON_LEFT: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = self._disabled_left_bmp + else: + bmp = self._active_left_bmp + + elif bitmap_id == AUI_BUTTON_RIGHT: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = self._disabled_right_bmp + else: + bmp = self._active_right_bmp + + elif bitmap_id == AUI_BUTTON_WINDOWLIST: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = self._disabled_windowlist_bmp + else: + bmp = self._active_windowlist_bmp + + else: + if button_state & AUI_BUTTON_STATE_DISABLED: + bmp = button.dis_bitmap + else: + bmp = button.bitmap + + if not bmp.IsOk(): + return + + rect = wx.Rect(*in_rect) + + if orientation == wx.LEFT: + + rect.SetX(in_rect.x) + rect.SetY(((in_rect.y + in_rect.height)/2) - (bmp.GetHeight()/2)) + rect.SetWidth(bmp.GetWidth()) + rect.SetHeight(bmp.GetHeight()) + + else: + + rect = wx.Rect(in_rect.x + in_rect.width - bmp.GetWidth(), + ((in_rect.y + in_rect.height)/2) - (bmp.GetHeight()/2), + bmp.GetWidth(), bmp.GetHeight()) + + self.DrawButtons(dc, rect, bmp, wx.WHITE, button_state) + + out_rect = wx.Rect(*rect) + return out_rect + + + def ShowDropDown(self, wnd, pages, active_idx): + """ + Shows the drop-down window menu on the tab area. + + :param `wnd`: a `wx.Window` derived window instance; + :param `pages`: the pages associated with the tabs; + :param `active_idx`: the active tab index. + """ + + menuPopup = wx.Menu() + useImages = self.GetAGWFlags() & AUI_NB_USE_IMAGES_DROPDOWN + + for i, page in enumerate(pages): + + if useImages: + menuItem = wx.MenuItem(menuPopup, 1000+i, page.caption) + if page.bitmap: + menuItem.SetBitmap(page.bitmap) + + menuPopup.AppendItem(menuItem) + + else: + + menuPopup.AppendCheckItem(1000+i, page.caption) + + menuPopup.Enable(1000+i, page.enabled) + + if active_idx != -1 and not useImages: + menuPopup.Check(1000+active_idx, True) + + # find out where to put the popup menu of window + # items. Subtract 100 for now to center the menu + # a bit, until a better mechanism can be implemented + pt = wx.GetMousePosition() + pt = wnd.ScreenToClient(pt) + + if pt.x < 100: + pt.x = 0 + else: + pt.x -= 100 + + # find out the screen coordinate at the bottom of the tab ctrl + cli_rect = wnd.GetClientRect() + pt.y = cli_rect.y + cli_rect.height + + cc = AuiCommandCapture() + wnd.PushEventHandler(cc) + wnd.PopupMenu(menuPopup, pt) + command = cc.GetCommandId() + wnd.PopEventHandler(True) + + if command >= 1000: + return command-1000 + + return -1 + + + def GetBestTabCtrlSize(self, wnd, pages, required_bmp_size): + """ + Returns the best tab control size. + + :param `wnd`: a `wx.Window` instance object; + :param `pages`: the pages associated with the tabs; + :param `required_bmp_size`: the size of the bitmap on the tabs. + """ + + dc = wx.ClientDC(wnd) + dc.SetFont(self._measuring_font) + s, x_extent = self.GetTabSize(dc, wnd, "ABCDEFGHIj", wx.NullBitmap, True, + AUI_BUTTON_STATE_HIDDEN, None) + + max_y = s[1] + + for page in pages: + if page.control: + controlW, controlH = page.control.GetSize() + max_y = max(max_y, controlH+4) + + textx, texty, dummy = dc.GetMultiLineTextExtent(page.caption) + max_y = max(max_y, texty) + + return max_y + 3 + + + def SetNormalFont(self, font): + """ + Sets the normal font for drawing tab labels. + + :param `font`: a `wx.Font` object. + """ + + self._normal_font = font + + + def SetSelectedFont(self, font): + """ + Sets the selected tab font for drawing tab labels. + + :param `font`: a `wx.Font` object. + """ + + self._selected_font = font + + + def SetMeasuringFont(self, font): + """ + Sets the font for calculating text measurements. + + :param `font`: a `wx.Font` object. + """ + + self._measuring_font = font + + + def GetNormalFont(self): + """ Returns the normal font for drawing tab labels. """ + + return self._normal_font + + + def GetSelectedFont(self): + """ Returns the selected tab font for drawing tab labels. """ + + return self._selected_font + + + def GetMeasuringFont(self): + """ Returns the font for calculating text measurements. """ + + return self._measuring_font + + + def SetCustomButton(self, bitmap_id, button_state, bmp): + """ + Sets a custom bitmap for the close, left, right and window list + buttons. + + :param `bitmap_id`: the button identifier; + :param `button_state`: the button state; + :param `bmp`: the custom bitmap to use for the button. + """ + + if bitmap_id == AUI_BUTTON_CLOSE: + if button_state == AUI_BUTTON_STATE_NORMAL: + self._active_close_bmp = bmp + self._hover_close_bmp = self._active_close_bmp + self._pressed_close_bmp = self._active_close_bmp + self._disabled_close_bmp = self._active_close_bmp + + elif button_state == AUI_BUTTON_STATE_HOVER: + self._hover_close_bmp = bmp + elif button_state == AUI_BUTTON_STATE_PRESSED: + self._pressed_close_bmp = bmp + else: + self._disabled_close_bmp = bmp + + elif bitmap_id == AUI_BUTTON_LEFT: + if button_state & AUI_BUTTON_STATE_DISABLED: + self._disabled_left_bmp = bmp + else: + self._active_left_bmp = bmp + + elif bitmap_id == AUI_BUTTON_RIGHT: + if button_state & AUI_BUTTON_STATE_DISABLED: + self._disabled_right_bmp = bmp + else: + self._active_right_bmp = bmp + + elif bitmap_id == AUI_BUTTON_WINDOWLIST: + if button_state & AUI_BUTTON_STATE_DISABLED: + self._disabled_windowlist_bmp = bmp + else: + self._active_windowlist_bmp = bmp + + +class VC71TabArt(AuiDefaultTabArt): + """ A class to draw tabs using the Visual Studio 2003 (VC71) style. """ + + def __init__(self): + """ Default class constructor. """ + + AuiDefaultTabArt.__init__(self) + + + def Clone(self): + """ Clones the art object. """ + + art = type(self)() + art.SetNormalFont(self.GetNormalFont()) + art.SetSelectedFont(self.GetSelectedFont()) + art.SetMeasuringFont(self.GetMeasuringFont()) + + art = CopyAttributes(art, self) + return art + + + def DrawTab(self, dc, wnd, page, in_rect, close_button_state, paint_control=False): + """ + Draws a single tab. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `page`: the tab control page associated with the tab; + :param `in_rect`: rectangle the tab should be confined to; + :param `close_button_state`: the state of the close button on the tab; + :param `paint_control`: whether to draw the control inside a tab (if any) on a `wx.MemoryDC`. + """ + + # Visual studio 7.1 style + # This code is based on the renderer included in FlatNotebook + + # figure out the size of the tab + + control = page.control + tab_size, x_extent = self.GetTabSize(dc, wnd, page.caption, page.bitmap, page.active, + close_button_state, control) + + tab_height = self._tab_ctrl_height - 3 + tab_width = tab_size[0] + tab_x = in_rect.x + tab_y = in_rect.y + in_rect.height - tab_height + clip_width = tab_width + + if tab_x + clip_width > in_rect.x + in_rect.width - 4: + clip_width = (in_rect.x + in_rect.width) - tab_x - 4 + + dc.SetClippingRegion(tab_x, tab_y, clip_width + 1, tab_height - 3) + agwFlags = self.GetAGWFlags() + + if agwFlags & AUI_NB_BOTTOM: + tab_y -= 1 + + dc.SetPen((page.active and [wx.Pen(wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DHIGHLIGHT))] or \ + [wx.Pen(wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DSHADOW))])[0]) + dc.SetBrush((page.active and [wx.Brush(wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DFACE))] or \ + [wx.TRANSPARENT_BRUSH])[0]) + + if page.active: + + tabH = tab_height - 2 + dc.DrawRectangle(tab_x, tab_y, tab_width, tabH) + + rightLineY1 = (agwFlags & AUI_NB_BOTTOM and [vertical_border_padding - 2] or \ + [vertical_border_padding - 1])[0] + rightLineY2 = tabH + 3 + dc.SetPen(wx.Pen(wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DSHADOW))) + dc.DrawLine(tab_x + tab_width - 1, rightLineY1 + 1, tab_x + tab_width - 1, rightLineY2) + + if agwFlags & AUI_NB_BOTTOM: + dc.DrawLine(tab_x + 1, rightLineY2 - 3 , tab_x + tab_width - 1, rightLineY2 - 3) + + dc.SetPen(wx.Pen(wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DDKSHADOW))) + dc.DrawLine(tab_x + tab_width, rightLineY1, tab_x + tab_width, rightLineY2) + + if agwFlags & AUI_NB_BOTTOM: + dc.DrawLine(tab_x, rightLineY2 - 2, tab_x + tab_width, rightLineY2 - 2) + + else: + + # We dont draw a rectangle for non selected tabs, but only + # vertical line on the right + blackLineY1 = (agwFlags & AUI_NB_BOTTOM and [vertical_border_padding + 2] or \ + [vertical_border_padding + 1])[0] + blackLineY2 = tab_height - 5 + dc.DrawLine(tab_x + tab_width, blackLineY1, tab_x + tab_width, blackLineY2) + + border_points = [0, 0] + + if agwFlags & AUI_NB_BOTTOM: + + border_points[0] = wx.Point(tab_x, tab_y) + border_points[1] = wx.Point(tab_x, tab_y + tab_height - 6) + + else: # if (agwFlags & AUI_NB_TOP) + + border_points[0] = wx.Point(tab_x, tab_y + tab_height - 4) + border_points[1] = wx.Point(tab_x, tab_y + 2) + + drawn_tab_yoff = border_points[1].y + drawn_tab_height = border_points[0].y - border_points[1].y + + text_offset = tab_x + 8 + close_button_width = 0 + + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + close_button_width = self._active_close_bmp.GetWidth() + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + text_offset += close_button_width - 5 + + if not page.enabled: + dc.SetTextForeground(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT)) + pagebitmap = page.dis_bitmap + else: + dc.SetTextForeground(page.text_colour) + pagebitmap = page.bitmap + + shift = 0 + if agwFlags & AUI_NB_BOTTOM: + shift = (page.active and [1] or [2])[0] + + bitmap_offset = 0 + if pagebitmap.IsOk(): + bitmap_offset = tab_x + 8 + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT and close_button_width: + bitmap_offset += close_button_width - 5 + + # draw bitmap + dc.DrawBitmap(pagebitmap, bitmap_offset, + drawn_tab_yoff + (drawn_tab_height/2) - (pagebitmap.GetHeight()/2) + shift, + True) + + text_offset = bitmap_offset + pagebitmap.GetWidth() + text_offset += 3 # bitmap padding + + else: + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT == 0 or not close_button_width: + text_offset = tab_x + 8 + + # if the caption is empty, measure some temporary text + caption = page.caption + + if caption == "": + caption = "Xj" + + if page.active: + dc.SetFont(self._selected_font) + textx, texty, dummy = dc.GetMultiLineTextExtent(caption) + else: + dc.SetFont(self._normal_font) + textx, texty, dummy = dc.GetMultiLineTextExtent(caption) + + draw_text = ChopText(dc, caption, tab_width - (text_offset-tab_x) - close_button_width) + + ypos = drawn_tab_yoff + (drawn_tab_height)/2 - (texty/2) - 1 + shift + + offset_focus = text_offset + + if control is not None: + if control.GetPosition() != wx.Point(text_offset+1, ypos): + control.SetPosition(wx.Point(text_offset+1, ypos)) + + if not control.IsShown(): + control.Show() + + if paint_control: + bmp = TakeScreenShot(control.GetScreenRect()) + dc.DrawBitmap(bmp, text_offset+1, ypos, True) + + controlW, controlH = control.GetSize() + text_offset += controlW + 4 + textx += controlW + 4 + + # draw tab text + rectx, recty, dummy = dc.GetMultiLineTextExtent(draw_text) + dc.DrawLabel(draw_text, wx.Rect(text_offset, ypos, rectx, recty)) + + out_button_rect = wx.Rect() + + # draw focus rectangle + if (agwFlags & AUI_NB_NO_TAB_FOCUS) == 0: + self.DrawFocusRectangle(dc, page, wnd, draw_text, offset_focus, bitmap_offset, drawn_tab_yoff+shift, + drawn_tab_height+shift, rectx, recty) + + # draw 'x' on tab (if enabled) + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + close_button_width = self._active_close_bmp.GetWidth() + + bmp = self._disabled_close_bmp + + if close_button_state == AUI_BUTTON_STATE_HOVER: + bmp = self._hover_close_bmp + elif close_button_state == AUI_BUTTON_STATE_PRESSED: + bmp = self._pressed_close_bmp + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + rect = wx.Rect(tab_x + 4, + drawn_tab_yoff + (drawn_tab_height / 2) - (bmp.GetHeight() / 2) + shift, + close_button_width, tab_height) + else: + rect = wx.Rect(tab_x + tab_width - close_button_width - 3, + drawn_tab_yoff + (drawn_tab_height / 2) - (bmp.GetHeight() / 2) + shift, + close_button_width, tab_height) + + # Indent the button if it is pressed down: + rect = IndentPressedBitmap(rect, close_button_state) + dc.DrawBitmap(bmp, rect.x, rect.y, True) + + out_button_rect = rect + + out_tab_rect = wx.Rect(tab_x, tab_y, tab_width, tab_height) + dc.DestroyClippingRegion() + + return out_tab_rect, out_button_rect, x_extent + + +class FF2TabArt(AuiDefaultTabArt): + """ A class to draw tabs using the Firefox 2 (FF2) style. """ + + def __init__(self): + """ Default class constructor. """ + + AuiDefaultTabArt.__init__(self) + + + def Clone(self): + """ Clones the art object. """ + + art = type(self)() + art.SetNormalFont(self.GetNormalFont()) + art.SetSelectedFont(self.GetSelectedFont()) + art.SetMeasuringFont(self.GetMeasuringFont()) + + art = CopyAttributes(art, self) + return art + + + def GetTabSize(self, dc, wnd, caption, bitmap, active, close_button_state, control): + """ + Returns the tab size for the given caption, bitmap and button state. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `caption`: the tab text caption; + :param `bitmap`: the bitmap displayed on the tab; + :param `active`: whether the tab is selected or not; + :param `close_button_state`: the state of the close button on the tab; + :param `control`: a `wx.Window` instance inside a tab (or ``None``). + """ + + tab_size, x_extent = AuiDefaultTabArt.GetTabSize(self, dc, wnd, caption, bitmap, + active, close_button_state, control) + + tab_width, tab_height = tab_size + + # add some vertical padding + tab_height += 2 + + return (tab_width, tab_height), x_extent + + + def DrawTab(self, dc, wnd, page, in_rect, close_button_state, paint_control=False): + """ + Draws a single tab. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `page`: the tab control page associated with the tab; + :param `in_rect`: rectangle the tab should be confined to; + :param `close_button_state`: the state of the close button on the tab; + :param `paint_control`: whether to draw the control inside a tab (if any) on a `wx.MemoryDC`. + """ + + # Firefox 2 style + + control = page.control + + # figure out the size of the tab + tab_size, x_extent = self.GetTabSize(dc, wnd, page.caption, page.bitmap, + page.active, close_button_state, control) + + tab_height = self._tab_ctrl_height - 2 + tab_width = tab_size[0] + tab_x = in_rect.x + tab_y = in_rect.y + in_rect.height - tab_height + + clip_width = tab_width + if tab_x + clip_width > in_rect.x + in_rect.width - 4: + clip_width = (in_rect.x + in_rect.width) - tab_x - 4 + + dc.SetClippingRegion(tab_x, tab_y, clip_width + 1, tab_height - 3) + + tabPoints = [wx.Point() for i in xrange(7)] + + adjust = 0 + if not page.active: + adjust = 1 + + agwFlags = self.GetAGWFlags() + + tabPoints[0].x = tab_x + 3 + tabPoints[0].y = (agwFlags & AUI_NB_BOTTOM and [3] or [tab_height - 2])[0] + + tabPoints[1].x = tabPoints[0].x + tabPoints[1].y = (agwFlags & AUI_NB_BOTTOM and [tab_height - (vertical_border_padding + 2) - adjust] or \ + [(vertical_border_padding + 2) + adjust])[0] + + tabPoints[2].x = tabPoints[1].x+2 + tabPoints[2].y = (agwFlags & AUI_NB_BOTTOM and [tab_height - vertical_border_padding - adjust] or \ + [vertical_border_padding + adjust])[0] + + tabPoints[3].x = tab_x + tab_width - 2 + tabPoints[3].y = tabPoints[2].y + + tabPoints[4].x = tabPoints[3].x + 2 + tabPoints[4].y = tabPoints[1].y + + tabPoints[5].x = tabPoints[4].x + tabPoints[5].y = tabPoints[0].y + + tabPoints[6].x = tabPoints[0].x + tabPoints[6].y = tabPoints[0].y + + rr = wx.RectPP(tabPoints[2], tabPoints[5]) + self.DrawTabBackground(dc, rr, page.active, (agwFlags & AUI_NB_BOTTOM) == 0) + + dc.SetBrush(wx.TRANSPARENT_BRUSH) + dc.SetPen(wx.Pen(wx.SystemSettings_GetColour(wx.SYS_COLOUR_BTNSHADOW))) + + # Draw the tab as rounded rectangle + dc.DrawPolygon(tabPoints) + + if page.active: + dc.DrawLine(tabPoints[0].x + 1, tabPoints[0].y, tabPoints[5].x , tabPoints[0].y) + + drawn_tab_yoff = tabPoints[1].y + drawn_tab_height = tabPoints[0].y - tabPoints[2].y + + text_offset = tab_x + 8 + close_button_width = 0 + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + close_button_width = self._active_close_bmp.GetWidth() + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + text_offset += close_button_width - 4 + + if not page.enabled: + dc.SetTextForeground(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT)) + pagebitmap = page.dis_bitmap + else: + dc.SetTextForeground(page.text_colour) + pagebitmap = page.bitmap + + shift = -1 + if agwFlags & AUI_NB_BOTTOM: + shift = 2 + + bitmap_offset = 0 + if pagebitmap.IsOk(): + bitmap_offset = tab_x + 8 + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT and close_button_width: + bitmap_offset += close_button_width - 4 + + # draw bitmap + dc.DrawBitmap(pagebitmap, bitmap_offset, + drawn_tab_yoff + (drawn_tab_height/2) - (pagebitmap.GetHeight()/2) + shift, + True) + + text_offset = bitmap_offset + pagebitmap.GetWidth() + text_offset += 3 # bitmap padding + + else: + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT == 0 or not close_button_width: + text_offset = tab_x + 8 + + # if the caption is empty, measure some temporary text + caption = page.caption + if caption == "": + caption = "Xj" + + if page.active: + dc.SetFont(self._selected_font) + textx, texty, dummy = dc.GetMultiLineTextExtent(caption) + else: + dc.SetFont(self._normal_font) + textx, texty, dummy = dc.GetMultiLineTextExtent(caption) + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + draw_text = ChopText(dc, caption, tab_width - (text_offset-tab_x) - close_button_width + 1) + else: + draw_text = ChopText(dc, caption, tab_width - (text_offset-tab_x) - close_button_width) + + ypos = drawn_tab_yoff + drawn_tab_height/2 - texty/2 - 1 + shift + + offset_focus = text_offset + + if control is not None: + if control.GetPosition() != wx.Point(text_offset+1, ypos): + control.SetPosition(wx.Point(text_offset+1, ypos)) + + if not control.IsShown(): + control.Show() + + if paint_control: + bmp = TakeScreenShot(control.GetScreenRect()) + dc.DrawBitmap(bmp, text_offset+1, ypos, True) + + controlW, controlH = control.GetSize() + text_offset += controlW + 4 + textx += controlW + 4 + + # draw tab text + rectx, recty, dummy = dc.GetMultiLineTextExtent(draw_text) + dc.DrawLabel(draw_text, wx.Rect(text_offset, ypos, rectx, recty)) + + # draw focus rectangle + if (agwFlags & AUI_NB_NO_TAB_FOCUS) == 0: + self.DrawFocusRectangle(dc, page, wnd, draw_text, offset_focus, bitmap_offset, drawn_tab_yoff+shift, + drawn_tab_height, rectx, recty) + + out_button_rect = wx.Rect() + # draw 'x' on tab (if enabled) + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + + close_button_width = self._active_close_bmp.GetWidth() + bmp = self._disabled_close_bmp + + if close_button_state == AUI_BUTTON_STATE_HOVER: + bmp = self._hover_close_bmp + elif close_button_state == AUI_BUTTON_STATE_PRESSED: + bmp = self._pressed_close_bmp + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + rect = wx.Rect(tab_x + 5, + drawn_tab_yoff + (drawn_tab_height / 2) - (bmp.GetHeight() / 2) + shift, + close_button_width, tab_height) + else: + rect = wx.Rect(tab_x + tab_width - close_button_width - 3, + drawn_tab_yoff + (drawn_tab_height / 2) - (bmp.GetHeight() / 2) + shift, + close_button_width, tab_height) + + # Indent the button if it is pressed down: + rect = IndentPressedBitmap(rect, close_button_state) + dc.DrawBitmap(bmp, rect.x, rect.y, True) + out_button_rect = rect + + out_tab_rect = wx.Rect(tab_x, tab_y, tab_width, tab_height) + dc.DestroyClippingRegion() + + return out_tab_rect, out_button_rect, x_extent + + + def DrawTabBackground(self, dc, rect, focus, upperTabs): + """ + Draws the tab background for the Firefox 2 style. + This is more consistent with L{FlatNotebook} than before. + + :param `dc`: a `wx.DC` device context; + :param `rect`: rectangle the tab should be confined to; + :param `focus`: whether the tab has focus or not; + :param `upperTabs`: whether the style is ``AUI_NB_TOP`` or ``AUI_NB_BOTTOM``. + """ + + # Define the rounded rectangle base on the given rect + # we need an array of 9 points for it + regPts = [wx.Point() for indx in xrange(9)] + + if focus: + if upperTabs: + leftPt = wx.Point(rect.x, rect.y + (rect.height / 10)*8) + rightPt = wx.Point(rect.x + rect.width - 2, rect.y + (rect.height / 10)*8) + else: + leftPt = wx.Point(rect.x, rect.y + (rect.height / 10)*5) + rightPt = wx.Point(rect.x + rect.width - 2, rect.y + (rect.height / 10)*5) + else: + leftPt = wx.Point(rect.x, rect.y + (rect.height / 2)) + rightPt = wx.Point(rect.x + rect.width - 2, rect.y + (rect.height / 2)) + + # Define the top region + top = wx.RectPP(rect.GetTopLeft(), rightPt) + bottom = wx.RectPP(leftPt, rect.GetBottomRight()) + + topStartColour = wx.WHITE + + if not focus: + topStartColour = LightColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_3DFACE), 50) + + topEndColour = wx.SystemSettings_GetColour(wx.SYS_COLOUR_3DFACE) + bottomStartColour = topEndColour + bottomEndColour = topEndColour + + # Incase we use bottom tabs, switch the colours + if upperTabs: + if focus: + dc.GradientFillLinear(top, topStartColour, topEndColour, wx.SOUTH) + dc.GradientFillLinear(bottom, bottomStartColour, bottomEndColour, wx.SOUTH) + else: + dc.GradientFillLinear(top, topEndColour , topStartColour, wx.SOUTH) + dc.GradientFillLinear(bottom, bottomStartColour, bottomEndColour, wx.SOUTH) + + else: + if focus: + dc.GradientFillLinear(bottom, topEndColour, bottomEndColour, wx.SOUTH) + dc.GradientFillLinear(top, topStartColour, topStartColour, wx.SOUTH) + else: + dc.GradientFillLinear(bottom, bottomStartColour, bottomEndColour, wx.SOUTH) + dc.GradientFillLinear(top, topEndColour, topStartColour, wx.SOUTH) + + dc.SetBrush(wx.TRANSPARENT_BRUSH) + + +class VC8TabArt(AuiDefaultTabArt): + """ A class to draw tabs using the Visual Studio 2005 (VC8) style. """ + + def __init__(self): + """ Default class constructor. """ + + AuiDefaultTabArt.__init__(self) + + + def Clone(self): + """ Clones the art object. """ + + art = type(self)() + art.SetNormalFont(self.GetNormalFont()) + art.SetSelectedFont(self.GetSelectedFont()) + art.SetMeasuringFont(self.GetMeasuringFont()) + + art = CopyAttributes(art, self) + return art + + + def SetSizingInfo(self, tab_ctrl_size, tab_count, minMaxTabWidth): + """ + Sets the tab sizing information. + + :param `tab_ctrl_size`: the size of the tab control area; + :param `tab_count`: the number of tabs; + :param `minMaxTabWidth`: a tuple containing the minimum and maximum tab widths + to be used when the ``AUI_NB_TAB_FIXED_WIDTH`` style is active. + """ + + AuiDefaultTabArt.SetSizingInfo(self, tab_ctrl_size, tab_count, minMaxTabWidth) + + minTabWidth, maxTabWidth = minMaxTabWidth + if minTabWidth > -1: + self._fixed_tab_width = max(self._fixed_tab_width, minTabWidth) + if maxTabWidth > -1: + self._fixed_tab_width = min(self._fixed_tab_width, maxTabWidth) + + self._fixed_tab_width -= 5 + + + def GetTabSize(self, dc, wnd, caption, bitmap, active, close_button_state, control=None): + """ + Returns the tab size for the given caption, bitmap and button state. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `caption`: the tab text caption; + :param `bitmap`: the bitmap displayed on the tab; + :param `active`: whether the tab is selected or not; + :param `close_button_state`: the state of the close button on the tab; + :param `control`: a `wx.Window` instance inside a tab (or ``None``). + """ + + tab_size, x_extent = AuiDefaultTabArt.GetTabSize(self, dc, wnd, caption, bitmap, + active, close_button_state, control) + + tab_width, tab_height = tab_size + + # add some padding + tab_width += 10 + tab_height += 2 + + return (tab_width, tab_height), x_extent + + + def DrawTab(self, dc, wnd, page, in_rect, close_button_state, paint_control=False): + """ + Draws a single tab. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `page`: the tab control page associated with the tab; + :param `in_rect`: rectangle the tab should be confined to; + :param `close_button_state`: the state of the close button on the tab; + :param `paint_control`: whether to draw the control inside a tab (if any) on a `wx.MemoryDC`. + """ + + # Visual Studio 8 style + + control = page.control + + # figure out the size of the tab + tab_size, x_extent = self.GetTabSize(dc, wnd, page.caption, page.bitmap, + page.active, close_button_state, control) + + tab_height = self._tab_ctrl_height - 1 + tab_width = tab_size[0] + tab_x = in_rect.x + tab_y = in_rect.y + in_rect.height - tab_height + + clip_width = tab_width + 3 + if tab_x + clip_width > in_rect.x + in_rect.width - 4: + clip_width = (in_rect.x + in_rect.width) - tab_x - 4 + + tabPoints = [wx.Point() for i in xrange(8)] + + # If we draw the first tab or the active tab, + # we draw a full tab, else we draw a truncated tab + # + # X(2) X(3) + # X(1) X(4) + # + # X(5) + # + # X(0),(7) X(6) + # + # + + adjust = 0 + if not page.active: + adjust = 1 + + agwFlags = self.GetAGWFlags() + tabPoints[0].x = (agwFlags & AUI_NB_BOTTOM and [tab_x] or [tab_x + adjust])[0] + tabPoints[0].y = (agwFlags & AUI_NB_BOTTOM and [2] or [tab_height - 3])[0] + + tabPoints[1].x = tabPoints[0].x + tab_height - vertical_border_padding - 3 - adjust + tabPoints[1].y = (agwFlags & AUI_NB_BOTTOM and [tab_height - (vertical_border_padding+2)] or \ + [(vertical_border_padding+2)])[0] + + tabPoints[2].x = tabPoints[1].x + 4 + tabPoints[2].y = (agwFlags & AUI_NB_BOTTOM and [tab_height - vertical_border_padding] or \ + [vertical_border_padding])[0] + + tabPoints[3].x = tabPoints[2].x + tab_width - tab_height + vertical_border_padding + tabPoints[3].y = (agwFlags & AUI_NB_BOTTOM and [tab_height - vertical_border_padding] or \ + [vertical_border_padding])[0] + + tabPoints[4].x = tabPoints[3].x + 1 + tabPoints[4].y = (agwFlags & AUI_NB_BOTTOM and [tabPoints[3].y - 1] or [tabPoints[3].y + 1])[0] + + tabPoints[5].x = tabPoints[4].x + 1 + tabPoints[5].y = (agwFlags & AUI_NB_BOTTOM and [(tabPoints[4].y - 1)] or [tabPoints[4].y + 1])[0] + + tabPoints[6].x = tabPoints[2].x + tab_width - tab_height + 2 + vertical_border_padding + tabPoints[6].y = tabPoints[0].y + + tabPoints[7].x = tabPoints[0].x + tabPoints[7].y = tabPoints[0].y + + self.FillVC8GradientColour(dc, tabPoints, page.active) + + dc.SetBrush(wx.TRANSPARENT_BRUSH) + + dc.SetPen(wx.Pen(wx.SystemSettings.GetColour(wx.SYS_COLOUR_BTNSHADOW))) + dc.DrawPolygon(tabPoints) + + if page.active: + # Delete the bottom line (or the upper one, incase we use wxBOTTOM) + dc.SetPen(wx.WHITE_PEN) + dc.DrawLine(tabPoints[0].x, tabPoints[0].y, tabPoints[6].x, tabPoints[6].y) + + dc.SetClippingRegion(tab_x, tab_y, clip_width + 2, tab_height - 3) + + drawn_tab_yoff = tabPoints[1].y + drawn_tab_height = tabPoints[0].y - tabPoints[2].y + + text_offset = tab_x + 20 + close_button_width = 0 + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + close_button_width = self._active_close_bmp.GetWidth() + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + text_offset += close_button_width + + if not page.enabled: + dc.SetTextForeground(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT)) + pagebitmap = page.dis_bitmap + else: + dc.SetTextForeground(page.text_colour) + pagebitmap = page.bitmap + + shift = 0 + if agwFlags & AUI_NB_BOTTOM: + shift = (page.active and [1] or [2])[0] + + bitmap_offset = 0 + if pagebitmap.IsOk(): + bitmap_offset = tab_x + 20 + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT and close_button_width: + bitmap_offset += close_button_width + + # draw bitmap + dc.DrawBitmap(pagebitmap, bitmap_offset, + drawn_tab_yoff + (drawn_tab_height/2) - (pagebitmap.GetHeight()/2) + shift, + True) + + text_offset = bitmap_offset + pagebitmap.GetWidth() + text_offset += 3 # bitmap padding + + else: + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT == 0 or not close_button_width: + text_offset = tab_x + tab_height + + # if the caption is empty, measure some temporary text + caption = page.caption + if caption == "": + caption = "Xj" + + if page.active: + dc.SetFont(self._selected_font) + textx, texty, dummy = dc.GetMultiLineTextExtent(caption) + else: + dc.SetFont(self._normal_font) + textx, texty, dummy = dc.GetMultiLineTextExtent(caption) + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + draw_text = ChopText(dc, caption, tab_width - (text_offset-tab_x)) + else: + draw_text = ChopText(dc, caption, tab_width - (text_offset-tab_x) - close_button_width) + + ypos = drawn_tab_yoff + drawn_tab_height/2 - texty/2 - 1 + shift + + offset_focus = text_offset + + if control is not None: + if control.GetPosition() != wx.Point(text_offset+1, ypos): + control.SetPosition(wx.Point(text_offset+1, ypos)) + + if not control.IsShown(): + control.Show() + + if paint_control: + bmp = TakeScreenShot(control.GetScreenRect()) + dc.DrawBitmap(bmp, text_offset+1, ypos, True) + + controlW, controlH = control.GetSize() + text_offset += controlW + 4 + textx += controlW + 4 + + # draw tab text + rectx, recty, dummy = dc.GetMultiLineTextExtent(draw_text) + dc.DrawLabel(draw_text, wx.Rect(text_offset, ypos, rectx, recty)) + + # draw focus rectangle + if (agwFlags & AUI_NB_NO_TAB_FOCUS) == 0: + self.DrawFocusRectangle(dc, page, wnd, draw_text, offset_focus, bitmap_offset, drawn_tab_yoff+shift, + drawn_tab_height+shift, rectx, recty) + + out_button_rect = wx.Rect() + # draw 'x' on tab (if enabled) + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + + close_button_width = self._active_close_bmp.GetWidth() + bmp = self._disabled_close_bmp + + if close_button_state == AUI_BUTTON_STATE_HOVER: + bmp = self._hover_close_bmp + elif close_button_state == AUI_BUTTON_STATE_PRESSED: + bmp = self._pressed_close_bmp + + if page.active: + xpos = tab_x + tab_width - close_button_width + 3 + else: + xpos = tab_x + tab_width - close_button_width - 5 + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + rect = wx.Rect(tab_x + 20, + drawn_tab_yoff + (drawn_tab_height / 2) - (bmp.GetHeight() / 2) + shift, + close_button_width, tab_height) + else: + rect = wx.Rect(xpos, + drawn_tab_yoff + (drawn_tab_height / 2) - (bmp.GetHeight() / 2) + shift, + close_button_width, tab_height) + + # Indent the button if it is pressed down: + rect = IndentPressedBitmap(rect, close_button_state) + dc.DrawBitmap(bmp, rect.x, rect.y, True) + out_button_rect = rect + + out_tab_rect = wx.Rect(tab_x, tab_y, x_extent, tab_height) + dc.DestroyClippingRegion() + + return out_tab_rect, out_button_rect, x_extent + + + def FillVC8GradientColour(self, dc, tabPoints, active): + """ + Fills the tab with the Visual Studio 2005 gradient background. + + :param `dc`: a `wx.DC` device context; + :param `tabPoints`: a list of `wx.Point` objects describing the tab shape; + :param `active`: whether the tab is selected or not. + """ + + xList = [pt.x for pt in tabPoints] + yList = [pt.y for pt in tabPoints] + + minx, maxx = min(xList), max(xList) + miny, maxy = min(yList), max(yList) + + rect = wx.Rect(minx, maxy, maxx-minx, miny-maxy+1) + region = wx.RegionFromPoints(tabPoints) + + if self._buttonRect.width > 0: + buttonRegion = wx.Region(*self._buttonRect) + region.XorRegion(buttonRegion) + + dc.SetClippingRegionAsRegion(region) + + if active: + bottom_colour = top_colour = wx.WHITE + else: + bottom_colour = StepColour(self._base_colour, 90) + top_colour = StepColour(self._base_colour, 170) + + dc.GradientFillLinear(rect, top_colour, bottom_colour, wx.SOUTH) + dc.DestroyClippingRegion() + + +class ChromeTabArt(AuiDefaultTabArt): + """ + A class to draw tabs using the Google Chrome browser style. + It uses custom bitmap to render the tabs, so that the look and feel is as close + as possible to the Chrome style. + """ + + def __init__(self): + """ Default class constructor. """ + + AuiDefaultTabArt.__init__(self) + + self.SetBitmaps(mirror=False) + + closeBmp = tab_close.GetBitmap() + closeHBmp = tab_close_h.GetBitmap() + closePBmp = tab_close_p.GetBitmap() + + self.SetCustomButton(AUI_BUTTON_CLOSE, AUI_BUTTON_STATE_NORMAL, closeBmp) + self.SetCustomButton(AUI_BUTTON_CLOSE, AUI_BUTTON_STATE_HOVER, closeHBmp) + self.SetCustomButton(AUI_BUTTON_CLOSE, AUI_BUTTON_STATE_PRESSED, closePBmp) + + + def SetAGWFlags(self, agwFlags): + """ + Sets the tab art flags. + + :param `agwFlags`: a combination of the following values: + + ==================================== ================================== + Flag name Description + ==================================== ================================== + ``AUI_NB_TOP`` With this style, tabs are drawn along the top of the notebook + ``AUI_NB_LEFT`` With this style, tabs are drawn along the left of the notebook. Not implemented yet. + ``AUI_NB_RIGHT`` With this style, tabs are drawn along the right of the notebook. Not implemented yet. + ``AUI_NB_BOTTOM`` With this style, tabs are drawn along the bottom of the notebook + ``AUI_NB_TAB_SPLIT`` Allows the tab control to be split by dragging a tab + ``AUI_NB_TAB_MOVE`` Allows a tab to be moved horizontally by dragging + ``AUI_NB_TAB_EXTERNAL_MOVE`` Allows a tab to be moved to another tab control + ``AUI_NB_TAB_FIXED_WIDTH`` With this style, all tabs have the same width + ``AUI_NB_SCROLL_BUTTONS`` With this style, left and right scroll buttons are displayed + ``AUI_NB_WINDOWLIST_BUTTON`` With this style, a drop-down list of windows is available + ``AUI_NB_CLOSE_BUTTON`` With this style, a close button is available on the tab bar + ``AUI_NB_CLOSE_ON_ACTIVE_TAB`` With this style, a close button is available on the active tab + ``AUI_NB_CLOSE_ON_ALL_TABS`` With this style, a close button is available on all tabs + ``AUI_NB_MIDDLE_CLICK_CLOSE`` Allows to close L{AuiNotebook} tabs by mouse middle button click + ``AUI_NB_SUB_NOTEBOOK`` This style is used by L{AuiManager} to create automatic AuiNotebooks + ``AUI_NB_HIDE_ON_SINGLE_TAB`` Hides the tab window if only one tab is present + ``AUI_NB_SMART_TABS`` Use Smart Tabbing, like ``Alt`` + ``Tab`` on Windows + ``AUI_NB_USE_IMAGES_DROPDOWN`` Uses images on dropdown window list menu instead of check items + ``AUI_NB_CLOSE_ON_TAB_LEFT`` Draws the tab close button on the left instead of on the right (a la Camino browser) + ``AUI_NB_TAB_FLOAT`` Allows the floating of single tabs. Known limitation: when the notebook is more or less full screen, tabs cannot be dragged far enough outside of the notebook to become floating pages + ``AUI_NB_DRAW_DND_TAB`` Draws an image representation of a tab while dragging (on by default) + ``AUI_NB_ORDER_BY_ACCESS`` Tab navigation order by last access time for the tabs + ``AUI_NB_NO_TAB_FOCUS`` Don't draw tab focus rectangle + ==================================== ================================== + + :note: Overridden from L{AuiDefaultTabArt}. + """ + + if agwFlags & AUI_NB_TOP: + self.SetBitmaps(mirror=False) + elif agwFlags & AUI_NB_BOTTOM: + self.SetBitmaps(mirror=True) + + AuiDefaultTabArt.SetAGWFlags(self, agwFlags) + + + def SetBitmaps(self, mirror): + """ + Assigns the tab custom bitmaps + + :param `mirror`: whether to vertically mirror the bitmap or not. + """ + + bmps = [tab_active_left.GetBitmap(), tab_active_center.GetBitmap(), + tab_active_right.GetBitmap(), tab_inactive_left.GetBitmap(), + tab_inactive_center.GetBitmap(), tab_inactive_right.GetBitmap()] + + if mirror: + for indx, bmp in enumerate(bmps): + img = bmp.ConvertToImage() + img = img.Mirror(horizontally=False) + bmps[indx] = img.ConvertToBitmap() + + self._leftActiveBmp = bmps[0] + self._centerActiveBmp = bmps[1] + self._rightActiveBmp = bmps[2] + self._leftInactiveBmp = bmps[3] + self._centerInactiveBmp = bmps[4] + self._rightInactiveBmp = bmps[5] + + + def Clone(self): + """ Clones the art object. """ + + art = type(self)() + art.SetNormalFont(self.GetNormalFont()) + art.SetSelectedFont(self.GetSelectedFont()) + art.SetMeasuringFont(self.GetMeasuringFont()) + + art = CopyAttributes(art, self) + return art + + + def SetSizingInfo(self, tab_ctrl_size, tab_count, minMaxTabWidth): + """ + Sets the tab sizing information. + + :param `tab_ctrl_size`: the size of the tab control area; + :param `tab_count`: the number of tabs; + :param `minMaxTabWidth`: a tuple containing the minimum and maximum tab widths + to be used when the ``AUI_NB_TAB_FIXED_WIDTH`` style is active. + """ + + AuiDefaultTabArt.SetSizingInfo(self, tab_ctrl_size, tab_count, minMaxTabWidth) + + minTabWidth, maxTabWidth = minMaxTabWidth + if minTabWidth > -1: + self._fixed_tab_width = max(self._fixed_tab_width, minTabWidth) + if maxTabWidth > -1: + self._fixed_tab_width = min(self._fixed_tab_width, maxTabWidth) + + self._fixed_tab_width -= 5 + + + def GetTabSize(self, dc, wnd, caption, bitmap, active, close_button_state, control=None): + """ + Returns the tab size for the given caption, bitmap and button state. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `caption`: the tab text caption; + :param `bitmap`: the bitmap displayed on the tab; + :param `active`: whether the tab is selected or not; + :param `close_button_state`: the state of the close button on the tab; + :param `control`: a `wx.Window` instance inside a tab (or ``None``). + """ + + tab_size, x_extent = AuiDefaultTabArt.GetTabSize(self, dc, wnd, caption, bitmap, + active, close_button_state, control) + + tab_width, tab_height = tab_size + + # add some padding + tab_width += self._leftActiveBmp.GetWidth() + tab_height += 2 + + tab_height = max(tab_height, self._centerActiveBmp.GetHeight()) + + return (tab_width, tab_height), x_extent + + + def DrawTab(self, dc, wnd, page, in_rect, close_button_state, paint_control=False): + """ + Draws a single tab. + + :param `dc`: a `wx.DC` device context; + :param `wnd`: a `wx.Window` instance object; + :param `page`: the tab control page associated with the tab; + :param `in_rect`: rectangle the tab should be confined to; + :param `close_button_state`: the state of the close button on the tab; + :param `paint_control`: whether to draw the control inside a tab (if any) on a `wx.MemoryDC`. + """ + + # Chrome tab style + + control = page.control + # figure out the size of the tab + tab_size, x_extent = self.GetTabSize(dc, wnd, page.caption, page.bitmap, page.active, + close_button_state, control) + + agwFlags = self.GetAGWFlags() + + tab_height = self._tab_ctrl_height - 1 + tab_width = tab_size[0] + tab_x = in_rect.x + tab_y = in_rect.y + in_rect.height - tab_height + clip_width = tab_width + + if tab_x + clip_width > in_rect.x + in_rect.width - 4: + clip_width = (in_rect.x + in_rect.width) - tab_x - 4 + + dc.SetClippingRegion(tab_x, tab_y, clip_width + 1, tab_height - 3) + drawn_tab_yoff = 1 + + if page.active: + left = self._leftActiveBmp + center = self._centerActiveBmp + right = self._rightActiveBmp + else: + left = self._leftInactiveBmp + center = self._centerInactiveBmp + right = self._rightInactiveBmp + + dc.DrawBitmap(left, tab_x, tab_y) + leftw = left.GetWidth() + centerw = center.GetWidth() + rightw = right.GetWidth() + + available = tab_x + tab_width - rightw + posx = tab_x + leftw + + while 1: + if posx >= available: + break + dc.DrawBitmap(center, posx, tab_y) + posx += centerw + + dc.DrawBitmap(right, posx, tab_y) + + drawn_tab_height = center.GetHeight() + text_offset = tab_x + leftw + + close_button_width = 0 + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + close_button_width = self._active_close_bmp.GetWidth() + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + text_offset += close_button_width + + if not page.enabled: + dc.SetTextForeground(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT)) + pagebitmap = page.dis_bitmap + else: + dc.SetTextForeground(page.text_colour) + pagebitmap = page.bitmap + + bitmap_offset = 0 + if pagebitmap.IsOk(): + bitmap_offset = tab_x + leftw + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT and close_button_width: + bitmap_offset += close_button_width + + # draw bitmap + dc.DrawBitmap(pagebitmap, bitmap_offset, + drawn_tab_yoff + (drawn_tab_height/2) - (pagebitmap.GetHeight()/2), + True) + + text_offset = bitmap_offset + pagebitmap.GetWidth() + text_offset += 3 # bitmap padding + + else: + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT == 0 or not close_button_width: + text_offset = tab_x + leftw + + # if the caption is empty, measure some temporary text + caption = page.caption + if caption == "": + caption = "Xj" + + if page.active: + dc.SetFont(self._selected_font) + textx, texty, dummy = dc.GetMultiLineTextExtent(caption) + else: + dc.SetFont(self._normal_font) + textx, texty, dummy = dc.GetMultiLineTextExtent(caption) + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + draw_text = ChopText(dc, caption, tab_width - (text_offset-tab_x) - leftw) + else: + draw_text = ChopText(dc, caption, tab_width - (text_offset-tab_x) - close_button_width - leftw) + + ypos = drawn_tab_yoff + drawn_tab_height/2 - texty/2 - 1 + + if control is not None: + if control.GetPosition() != wx.Point(text_offset+1, ypos): + control.SetPosition(wx.Point(text_offset+1, ypos)) + + if not control.IsShown(): + control.Show() + + if paint_control: + bmp = TakeScreenShot(control.GetScreenRect()) + dc.DrawBitmap(bmp, text_offset+1, ypos, True) + + controlW, controlH = control.GetSize() + text_offset += controlW + 4 + + # draw tab text + rectx, recty, dummy = dc.GetMultiLineTextExtent(draw_text) + dc.DrawLabel(draw_text, wx.Rect(text_offset, ypos, rectx, recty)) + + out_button_rect = wx.Rect() + # draw 'x' on tab (if enabled) + if close_button_state != AUI_BUTTON_STATE_HIDDEN: + + close_button_width = self._active_close_bmp.GetWidth() + bmp = self._disabled_close_bmp + + if close_button_state == AUI_BUTTON_STATE_HOVER: + bmp = self._hover_close_bmp + elif close_button_state == AUI_BUTTON_STATE_PRESSED: + bmp = self._pressed_close_bmp + + if agwFlags & AUI_NB_CLOSE_ON_TAB_LEFT: + rect = wx.Rect(tab_x + leftw - 2, + drawn_tab_yoff + (drawn_tab_height / 2) - (bmp.GetHeight() / 2) + 1, + close_button_width, tab_height) + else: + rect = wx.Rect(tab_x + tab_width - close_button_width - rightw + 2, + drawn_tab_yoff + (drawn_tab_height / 2) - (bmp.GetHeight() / 2) + 1, + close_button_width, tab_height) + + if agwFlags & AUI_NB_BOTTOM: + rect.y -= 1 + + # Indent the button if it is pressed down: + rect = IndentPressedBitmap(rect, close_button_state) + dc.DrawBitmap(bmp, rect.x, rect.y, True) + out_button_rect = rect + + out_tab_rect = wx.Rect(tab_x, tab_y, tab_width, tab_height) + dc.DestroyClippingRegion() + + return out_tab_rect, out_button_rect, x_extent + + diff --git a/agw/aui/tabart.pyc b/agw/aui/tabart.pyc new file mode 100644 index 0000000..28cf9d0 Binary files /dev/null and b/agw/aui/tabart.pyc differ diff --git a/agw/aui/tabmdi.py b/agw/aui/tabmdi.py new file mode 100644 index 0000000..ef09e9f --- /dev/null +++ b/agw/aui/tabmdi.py @@ -0,0 +1,666 @@ +__author__ = "Andrea Gavana " +__date__ = "31 March 2009" + + +import wx + +import auibook +from aui_constants import * + +_ = wx.GetTranslation + +#----------------------------------------------------------------------------- +# AuiMDIParentFrame +#----------------------------------------------------------------------------- + +class AuiMDIParentFrame(wx.Frame): + + def __init__(self, parent, id=wx.ID_ANY, title="", pos=wx.DefaultPosition, + size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE|wx.VSCROLL|wx.HSCROLL, + name="AuiMDIParentFrame"): + + wx.Frame.__init__(self, parent, id, title, pos, size, style, name=name) + self.Init() + + self.Bind(wx.EVT_MENU, self.DoHandleMenu, id=wx.ID_ANY) + + # this style can be used to prevent a window from having the standard MDI + # "Window" menu + if not style & wx.FRAME_NO_WINDOW_MENU: + + self._pWindowMenu = wx.Menu() + self._pWindowMenu.Append(wxWINDOWCLOSE, _("Cl&ose")) + self._pWindowMenu.Append(wxWINDOWCLOSEALL, _("Close All")) + self._pWindowMenu.AppendSeparator() + self._pWindowMenu.Append(wxWINDOWNEXT, _("&Next")) + self._pWindowMenu.Append(wxWINDOWPREV, _("&Previous")) + + self._pClientWindow = self.OnCreateClient() + + + def SetArtProvider(self, provider): + + if self._pClientWindow: + self._pClientWindow.SetArtProvider(provider) + + + def GetArtProvider(self): + + if not self._pClientWindow: + return None + + return self._pClientWindow.GetArtProvider() + + + def GetNotebook(self): + + return self._pClientWindow + + + def SetWindowMenu(self, pMenu): + + # Replace the window menu from the currently loaded menu bar. + pMenuBar = self.GetMenuBar() + + if self._pWindowMenu: + self.RemoveWindowMenu(pMenuBar) + del self._pWindowMenu + self._pWindowMenu = None + + if pMenu: + self._pWindowMenu = pMenu + self.AddWindowMenu(pMenuBar) + + + def GetWindowMenu(self): + + return self._pWindowMenu + + + def SetMenuBar(self, pMenuBar): + + # Remove the Window menu from the old menu bar + self.RemoveWindowMenu(self.GetMenuBar()) + + # Add the Window menu to the new menu bar. + self.AddWindowMenu(pMenuBar) + + wx.Frame.SetMenuBar(self, pMenuBar) + + + def SetChildMenuBar(self, pChild): + + if not pChild: + + # No Child, set Our menu bar back. + if self._pMyMenuBar: + self.SetMenuBar(self._pMyMenuBar) + else: + self.SetMenuBar(self.GetMenuBar()) + + # Make sure we know our menu bar is in use + self._pMyMenuBar = None + + else: + + if pChild.GetMenuBar() == None: + return + + # Do we need to save the current bar? + if self._pMyMenuBar == None: + self._pMyMenuBar = self.GetMenuBar() + + self.SetMenuBar(pChild.GetMenuBar()) + + + def ProcessEvent(self, event): + + # stops the same event being processed repeatedly + if self._pLastEvt == event: + return False + + self._pLastEvt = event + + # let the active child (if any) process the event first. + res = False + if self._pActiveChild and event.IsCommandEvent() and \ + event.GetEventObject() != self._pClientWindow and \ + event.GetEventType() not in [wx.wxEVT_ACTIVATE, wx.wxEVT_SET_FOCUS, + wx.wxEVT_KILL_FOCUS, wx.wxEVT_CHILD_FOCUS, + wx.wxEVT_COMMAND_SET_FOCUS, wx.wxEVT_COMMAND_KILL_FOCUS]: + + res = self._pActiveChild.GetEventHandler().ProcessEvent(event) + + if not res: + + # if the event was not handled this frame will handle it, + # which is why we need the protection code at the beginning + # of this method + res = self.GetEventHandler().ProcessEvent(event) + + self._pLastEvt = None + + return res + + + def GetActiveChild(self): + + return self._pActiveChild + + + def SetActiveChild(self, pChildFrame): + + self._pActiveChild = pChildFrame + + + def GetClientWindow(self): + + return self._pClientWindow + + + def OnCreateClient(self): + + return AuiMDIClientWindow(self) + + + def ActivateNext(self): + + if self._pClientWindow and self._pClientWindow.GetSelection() != wx.NOT_FOUND: + + active = self._pClientWindow.GetSelection() + 1 + if active >= self._pClientWindow.GetPageCount(): + active = 0 + + self._pClientWindow.SetSelection(active) + + + def ActivatePrevious(self): + + if self._pClientWindow and self._pClientWindow.GetSelection() != wx.NOT_FOUND: + + active = self._pClientWindow.GetSelection() - 1 + if active < 0: + active = self._pClientWindow.GetPageCount() - 1 + + self._pClientWindow.SetSelection(active) + + + def Init(self): + + self._pLastEvt = None + + self._pClientWindow = None + self._pActiveChild = None + self._pWindowMenu = None + self._pMyMenuBar = None + + + def RemoveWindowMenu(self, pMenuBar): + + if pMenuBar and self._pWindowMenu: + + # Remove old window menu + pos = pMenuBar.FindMenu(_("&Window")) + if pos != wx.NOT_FOUND: + pMenuBar.Remove(pos) + + + def AddWindowMenu(self, pMenuBar): + + if pMenuBar and self._pWindowMenu: + + pos = pMenuBar.FindMenu(wx.GetStockLabel(wx.ID_HELP, wx.STOCK_NOFLAGS)) + if pos == wx.NOT_FOUND: + pMenuBar.Append(self._pWindowMenu, _("&Window")) + else: + pMenuBar.Insert(pos, self._pWindowMenu, _("&Window")) + + + def DoHandleMenu(self, event): + + evId = event.GetId() + + if evId == wxWINDOWCLOSE: + if self._pActiveChild: + self._pActiveChild.Close() + + elif evId == wxWINDOWCLOSEALL: + + while self._pActiveChild: + if not self._pActiveChild.Close(): + return # failure + + elif evId == wxWINDOWNEXT: + self.ActivateNext() + + elif evId == wxWINDOWPREV: + self.ActivatePrevious() + + else: + event.Skip() + + + def Tile(self, orient=wx.HORIZONTAL): + + client_window = self.GetClientWindow() + if not client_window: + raise Exception("Missing MDI Client Window") + + cur_idx = client_window.GetSelection() + if cur_idx == -1: + return + + if orient == wx.VERTICAL: + + client_window.Split(cur_idx, wx.LEFT) + + elif orient == wx.HORIZONTAL: + + client_window.Split(cur_idx, wx.TOP) + + +#----------------------------------------------------------------------------- +# AuiMDIChildFrame +#----------------------------------------------------------------------------- + +class AuiMDIChildFrame(wx.PyPanel): + + def __init__(self, parent, id=wx.ID_ANY, title="", pos=wx.DefaultPosition, + size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE, name="AuiMDIChildFrame"): + + pClientWindow = parent.GetClientWindow() + if pClientWindow is None: + raise Exception("Missing MDI client window.") + + self.Init() + + # see comment in constructor + if style & wx.MINIMIZE: + self._activate_on_create = False + + cli_size = pClientWindow.GetClientSize() + + # create the window off-screen to prevent flicker + wx.PyPanel.__init__(self, pClientWindow, id, wx.Point(cli_size.x+1, cli_size.y+1), + size, wx.NO_BORDER, name=name) + + self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM) + self.Show(False) + self.SetMDIParentFrame(parent) + + # this is the currently active child + parent.SetActiveChild(self) + self._title = title + + pClientWindow.AddPage(self, title, self._activate_on_create) + pClientWindow.Refresh() + + self.Bind(wx.EVT_MENU_HIGHLIGHT_ALL, self.OnMenuHighlight) + self.Bind(wx.EVT_ACTIVATE, self.OnActivate) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + + + def Init(self): + + # There are two ways to create an tabbed mdi child fram without + # making it the active document. Either Show(False) can be called + # before Create() (as is customary on some ports with wxFrame-type + # windows), or wx.MINIMIZE can be passed in the style flags. Note that + # AuiMDIChildFrame is not really derived from wxFrame, as MDIChildFrame + # is, but those are the expected symantics. No style flag is passed + # onto the panel underneath. + + self._activate_on_create = True + + self._pMDIParentFrame = None + self._pMenuBar = None + + self._mdi_currect = None + self._mdi_newrect = wx.Rect() + self._icon = None + self._icon_bundle = None + + + def Destroy(self): + + pParentFrame = self.GetMDIParentFrame() + if not pParentFrame: + raise Exception("Missing MDI Parent Frame") + + pClientWindow = pParentFrame.GetClientWindow() + if not pClientWindow: + raise Exception("Missing MDI Client Window") + + if pParentFrame.GetActiveChild() == self: + + # deactivate ourself + event = wx.ActivateEvent(wx.wxEVT_ACTIVATE, False, self.GetId()) + event.SetEventObject(self) + self.GetEventHandler().ProcessEvent(event) + + pParentFrame.SetActiveChild(None) + pParentFrame.SetChildMenuBar(None) + + for pos in xrange(pClientWindow.GetPageCount()): + if pClientWindow.GetPage(pos) == self: + return pClientWindow.DeletePage(pos) + + return False + + + def SetMenuBar(self, menu_bar): + + pOldMenuBar = self._pMenuBar + self._pMenuBar = menu_bar + + if self._pMenuBar: + + pParentFrame = self.GetMDIParentFrame() + if not pParentFrame: + raise Exception("Missing MDI Parent Frame") + + self._pMenuBar.Reparent(pParentFrame) + if pParentFrame.GetActiveChild() == self: + + # replace current menu bars + if pOldMenuBar: + pParentFrame.SetChildMenuBar(None) + + pParentFrame.SetChildMenuBar(self) + + + def GetMenuBar(self): + + return self._pMenuBar + + + def SetTitle(self, title): + + self._title = title + + pParentFrame = self.GetMDIParentFrame() + if not pParentFrame: + raise Exception("Missing MDI Parent Frame") + + pClientWindow = pParentFrame.GetClientWindow() + if pClientWindow is not None: + + for pos in xrange(pClientWindow.GetPageCount()): + if pClientWindow.GetPage(pos) == self: + pClientWindow.SetPageText(pos, self._title) + break + + + def GetTitle(self): + + return self._title + + + def SetIcons(self, icons): + + # get icon with the system icon size + self.SetIcon(icons.GetIcon(-1)) + self._icon_bundle = icons + + + def GetIcons(self): + + return self._icon_bundle + + + def SetIcon(self, icon): + + pParentFrame = self.GetMDIParentFrame() + if not pParentFrame: + raise Exception("Missing MDI Parent Frame") + + self._icon = icon + + bmp = wx.BitmapFromIcon(self._icon) + + pClientWindow = pParentFrame.GetClientWindow() + if pClientWindow is not None: + idx = pClientWindow.GetPageIndex(self) + if idx != -1: + pClientWindow.SetPageBitmap(idx, bmp) + + + def GetIcon(self): + + return self._icon + + + def Activate(self): + + pParentFrame = self.GetMDIParentFrame() + if not pParentFrame: + raise Exception("Missing MDI Parent Frame") + + pClientWindow = pParentFrame.GetClientWindow() + if pClientWindow is not None: + + for pos in xrange(pClientWindow.GetPageCount()): + if pClientWindow.GetPage(pos) == self: + pClientWindow.SetSelection(pos) + break + + + def OnMenuHighlight(self, event): + + if self._pMDIParentFrame: + + # we don't have any help text for this item, + # but may be the MDI frame does? + self._pMDIParentFrame.OnMenuHighlight(event) + + + def OnActivate(self, event): + + # do nothing + pass + + + def OnCloseWindow(self, event): + + pParentFrame = self.GetMDIParentFrame() + if pParentFrame: + if pParentFrame.GetActiveChild() == self: + + pParentFrame.SetActiveChild(None) + pParentFrame.SetChildMenuBar(None) + + pClientWindow = pParentFrame.GetClientWindow() + idx = pClientWindow.GetPageIndex(self) + + if idx != wx.NOT_FOUND: + pClientWindow.RemovePage(idx) + + self.Destroy() + + + def SetMDIParentFrame(self, parentFrame): + + self._pMDIParentFrame = parentFrame + + + def GetMDIParentFrame(self): + + return self._pMDIParentFrame + + + def CreateStatusBar(self, number=1, style=1, winid=1, name=""): + + return None + + + def GetStatusBar(self): + + return None + + + def SetStatusText(self, text, number=0): + + pass + + + def SetStatusWidths(self, widths_field): + + pass + + + # no toolbar bars + def CreateToolBar(self, style=1, winid=-1, name=""): + + return None + + + def GetToolBar(self): + + return None + + + # no maximize etc + def Maximize(self, maximize=True): + + pass + + + def Restore(self): + + pass + + + def Iconize(self, iconize=True): + + pass + + + def IsMaximized(self): + + return True + + + def IsIconized(self): + + return False + + + def ShowFullScreen(self, show=True, style=0): + + return False + + + def IsFullScreen(self): + + return False + + + def IsTopLevel(self): + + return False + + + # renamed from Show(). + def ActivateOnCreate(self, activate_on_create): + + self._activate_on_create = activate_on_create + return True + + + def Show(self, show=True): + + wx.PyPanel.Show(self, show) + + + def ApplyMDIChildFrameRect(self): + + if self._mdi_currect != self._mdi_newrect: + self.SetDimensions(*self._mdi_newrect) + self._mdi_currect = wx.Rect(*self._mdi_newrect) + + +#----------------------------------------------------------------------------- +# AuiMDIClientWindow +#----------------------------------------------------------------------------- + +class AuiMDIClientWindow(auibook.AuiNotebook): + + def __init__(self, parent, agwStyle=0): + + auibook.AuiNotebook.__init__(self, parent, wx.ID_ANY, wx.Point(0, 0), wx.Size(100, 100), + agwStyle=AUI_NB_DEFAULT_STYLE|wx.NO_BORDER) + + caption_icon_size = wx.Size(wx.SystemSettings.GetMetric(wx.SYS_SMALLICON_X), + wx.SystemSettings.GetMetric(wx.SYS_SMALLICON_Y)) + self.SetUniformBitmapSize(caption_icon_size) + + bkcolour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_APPWORKSPACE) + self.SetOwnBackgroundColour(bkcolour) + + self._mgr.GetArtProvider().SetColour(AUI_DOCKART_BACKGROUND_COLOUR, bkcolour) + + self.Bind(auibook.EVT_AUINOTEBOOK_PAGE_CHANGED, self.OnPageChanged) + self.Bind(auibook.EVT_AUINOTEBOOK_PAGE_CLOSE, self.OnPageClose) + self.Bind(wx.EVT_SIZE, self.OnSize) + + + def SetSelection(self, nPage): + + return auibook.AuiNotebook.SetSelection(self, nPage) + + + def PageChanged(self, old_selection, new_selection): + + # don't do anything if the page doesn't actually change + if old_selection == new_selection: + return + + # notify old active child that it has been deactivated + if old_selection != -1 and old_selection < self.GetPageCount(): + + old_child = self.GetPage(old_selection) + if not old_child: + raise Exception("AuiMDIClientWindow.PageChanged - null page pointer") + + event = wx.ActivateEvent(wx.wxEVT_ACTIVATE, False, old_child.GetId()) + event.SetEventObject(old_child) + old_child.GetEventHandler().ProcessEvent(event) + + # notify new active child that it has been activated + if new_selection != -1: + + active_child = self.GetPage(new_selection) + if not active_child: + raise Exception("AuiMDIClientWindow.PageChanged - null page pointer") + + event = wx.ActivateEvent(wx.wxEVT_ACTIVATE, True, active_child.GetId()) + event.SetEventObject(active_child) + active_child.GetEventHandler().ProcessEvent(event) + + if active_child.GetMDIParentFrame(): + active_child.GetMDIParentFrame().SetActiveChild(active_child) + active_child.GetMDIParentFrame().SetChildMenuBar(active_child) + + + def OnPageClose(self, event): + + wnd = self.GetPage(event.GetSelection()) + wnd.Close() + + # regardless of the result of wnd.Close(), we've + # already taken care of the close operations, so + # suppress further processing + event.Veto() + + + def OnPageChanged(self, event): + + self.PageChanged(event.GetOldSelection(), event.GetSelection()) + + + def OnSize(self, event): + + auibook.AuiNotebook.OnSize(self, event) + + for pos in xrange(self.GetPageCount()): + self.GetPage(pos).ApplyMDIChildFrameRect() diff --git a/agw/aui/tabmdi.pyc b/agw/aui/tabmdi.pyc new file mode 100644 index 0000000..865ba5c Binary files /dev/null and b/agw/aui/tabmdi.pyc differ diff --git a/analysetxt.py b/analysetxt.py new file mode 100644 index 0000000..f5d9273 --- /dev/null +++ b/analysetxt.py @@ -0,0 +1,258 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#from corpusNG import Corpus +import logging +from chemins import PathOut, ChdTxtPathOut +from functions import exec_rcode, check_Rresult, DoConf, print_liste +from time import time, sleep +from uuid import uuid4 +import os +#ALCESTE +from PrintRScript import RchdTxt, AlcesteTxtProf +from OptionAlceste import OptionAlc +from layout import PrintRapport +from openanalyse import OpenAnalyse +from time import time +###################################### +print '#######LOGGING TEST###########' +log = logging.getLogger('iramuteq.analyse') +#formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') +#ch = logging.StreamHandler() +#ch.setFormatter(formatter) +#log.addHandler(ch) +#log.setLevel(logging.INFO) +####################################### + +#def make_ucecl_from_R(filein) : +# with open(filein, 'rU') as f : +# c = f.readlines() +# c.pop(0) +# ucecl = [] +# for line in c : +# line = line.replace('\n', '').replace('"', '').split(';') +# ucecl.append([int(line[0]) - 1, int(line[1])]) +# classesl = [val[1] for val in ucecl] +# clnb = max(classesl) +# ucecl = sorted(ucecl, key=itemgetter(1)) +# ucecl = [[uce[0] for uce in ucecl if uce[1] == i] for i in range(clnb+1)] +# return ucecl +# +#def make_lc(self, uces, classes, clnb) : +# self.lc = [[] for classe in range(0,clnb)] +# for i in range(0,clnb): +# self.lc[i] = [uce for j, uce in enumerate(uces) if i+1 == classes[j]] +# self.lc0 = [uce for j, uce in enumerate(uces) if 0 == classes[j]] + + +class AnalyseText : + def __init__(self, ira, corpus, parametres = None, dlg = False) : + self.corpus = corpus + self.ira = ira + self.parent = ira + self.dlg = dlg + self.dialok = True + self.parametres = parametres + self.pathout = PathOut(corpus.parametres['originalpath'], analyse_type = parametres['type'], dirout = corpus.parametres['pathout']) + self.parametres = self.make_config(parametres) + log.info(self.pathout.dirout) + if self.parametres is not None : + self.keys = DoConf(self.ira.ConfigPath['key']).getoptions() + gramact = [k for k in keys if keys[k] == 1] + gramsup = [k for k in keys if keys[k] == 2] + #FIXME + if not 'lem' in self.parametres : + self.parametres['lem'] = 1 + self.parametres['pathout'] = self.pathout.mkdirout() + self.pathout = PathOut(dirout = self.parametres['pathout']) + self.pathout.createdir(self.parametres['pathout']) + self.parametres['corpus'] = self.corpus.parametres['uuid'] + self.parametres['uuid'] = str(uuid4()) + self.parametres['name'] = os.path.split(self.parametres['pathout'])[1] + self.parametres['type'] = parametres['type'] + self.t1 = time() + #if self.corpus.lems is None : + self.corpus.make_lems(lem = self.parametres['lem']) + corpus.parse_active(gramact, gramsup) + self.doanalyse() + self.time = time() - self.t1 + minutes, seconds = divmod(self.time, 60) + hours, minutes = divmod(minutes, 60) + self.parametres['time'] = '%.0fh %.0fm %.0fs' % (hours, minutes, seconds) + self.parametres['ira'] = self.pathout['ira'] + DoConf().makeoptions([self.parametres['type']], [self.parametres], self.pathout['ira']) + self.ira.history.add(self.parametres) + if dlg : + dlg.Destroy() + OpenAnalyse(self.parent, self.parametres['ira']) + self.ira.tree.AddAnalyse(self.parametres) + self.val = 5100 + else : + if dlg : + dlg.Destroy() + self.val = False + + def doanalyse(self) : + pass + + def make_config(self, config) : + if config is not None : + if isinstance(config, basestring) : + return self.readconfig(config) + else : + return self.preferences() + + def readconfig(self, config) : + return config + + def preferences(self) : + return {} + + def doR(self): + pass + + def printRscript(self) : + pass + + def doR(self, Rscript, wait = False, dlg = None, message = '') : + log.info('R code...') + pid = exec_rcode(self.ira.RPath, Rscript, wait = wait) + while pid.poll() is None : + if dlg is not None : + self.dlg.Pulse(message) + sleep(0.2) + else : + sleep(0.2) + check_Rresult(self.ira, pid) + + + +class Alceste(AnalyseText) : + def doanalyse(self) : + #self.pathout = PathOut(self.corpus.parametres['filename'], 'alceste') + self.parametres['type'] = 'alceste' + self.pathout.basefiles(ChdTxtPathOut) + self.actives, lim = self.corpus.make_actives_nb(self.parametres['max_actives'], 1) + self.parametres['eff_min_forme'] = lim + self.parametres['nbactives'] = len(self.actives) + if self.parametres['classif_mode'] == 0 : + lenuc1, lenuc2 = self.corpus.make_and_write_sparse_matrix_from_uc(self.actives, self.parametres['tailleuc1'], self.parametres['tailleuc2'], self.pathout['TableUc1'], self.pathout['TableUc2'], self.pathout['listeuce1'], self.pathout['listeuce2']) + self.parametres['lenuc1'] = lenuc1 + self.parametres['lenuc2'] = lenuc2 + elif self.parametres['classif_mode'] == 1 : + self.corpus.make_and_write_sparse_matrix_from_uces(self.actives, self.pathout['TableUc1'], self.pathout['listeuce1']) + elif self.parametres['classif_mode'] == 2 : + self.corpus.make_and_write_sparse_matrix_from_uci(self.actives, self.pathout['TableUc1'], self.pathout['listeuce1']) + Rscript = self.printRscript() + self.doR(Rscript) + #self.lc = make_ucecl_from_R(self.pathout['uce']) + #self.lc0 = self.lc.pop(0) + self.corpus.make_ucecl_from_R(self.pathout['uce']) + self.corpus.make_and_write_profile(self.actives, self.corpus.lc, self.pathout['Contout']) + self.sup, lim = self.corpus.make_actives_nb(self.parametres['max_actives'], 2) + self.corpus.make_and_write_profile(self.sup, self.corpus.lc, self.pathout['ContSupOut']) + self.corpus.make_and_write_profile_et(self.corpus.lc, self.pathout['ContEtOut']) + self.clnb = len(self.corpus.lc) + self.parametres['clnb'] = self.clnb + Rscript = self.printRscript2() + self.doR(Rscript) + self.time = time() - self.t1 + minutes, seconds = divmod(self.time, 60) + hours, minutes = divmod(minutes, 60) + self.parametres['time'] = '%.0fh %.0fm %.0fs' % (hours, minutes, seconds) + self.print_graph_files() + + def preferences(self) : + parametres = DoConf(self.parent.ConfigPath['alceste']).getoptions('ALCESTE') + parametres['corpus'] = self.corpus + parametres['pathout'] = self.pathout + self.dial = OptionAlc(self.parent, parametres) + self.dial.CenterOnParent() + self.dialok = self.dial.ShowModal() + if self.dialok == 5100 : + if self.dial.radio_1.GetSelection() == 0 : + lem = 1 + else : + lem = 0 + parametres['lem'] = lem + parametres['classif_mode'] = self.dial.radio_box_2.GetSelection() + parametres['tailleuc1'] = self.dial.spin_ctrl_1.GetValue() + parametres['tailleuc2'] = self.dial.spin_ctrl_2.GetValue() + parametres['mincl'] = self.dial.spin_ctrl_4.GetValue() + parametres['minforme'] = self.dial.spin_ctrl_5.GetValue() + parametres['nbcl_p1'] = self.dial.spin_nbcl.GetValue() + parametres['max_actives'] = self.dial.spin_max_actives.GetValue() + parametres['corpus'] = '' + parametres['pathout'] = self.pathout.dirout + for val in parametres : + print val, parametres[val] + DoConf(self.parent.ConfigPath['alceste']).makeoptions(['ALCESTE'], [parametres]) + self.dial.Destroy() + return parametres + else : + self.dial.Destroy() + return None + + def printRscript(self) : + RchdTxt(self.pathout, self.parent.RscriptsPath, self.parametres['mincl'], self.parametres['classif_mode'], nbt = self.parametres['nbcl_p1'] - 1, libsvdc = self.parent.pref.getboolean('iramuteq','libsvdc'), libsvdc_path = self.parent.pref.get('iramuteq','libsvdc_path'), R_max_mem = False) + return self.pathout['Rchdtxt'] + + def printRscript2(self) : + AlcesteTxtProf(self.pathout, self.parent.RscriptsPath, self.clnb, 0.9) + return self.pathout['RTxtProfGraph'] + + def print_graph_files(self) : + afc_graph_list = [[os.path.basename(self.pathout['AFC2DL_OUT']), u'Variables actives - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.pathout['AFC2DSL_OUT']), u'variables supplémentaires - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.pathout['AFC2DEL_OUT']), u'Variables illustratives - Coordonnées - facteur 1 / 2'], + [os.path.basename(self.pathout['AFC2DCL_OUT']), u'Classes - Coordonnées - facteur 1 / 2'], + [os.path.basename(self.pathout['AFC2DCoul']), u'Variables actives - Corrélation - facteur 1 / 2'], + [os.path.basename(self.pathout['AFC2DCoulSup']), u'Variables supplémentaires - Corrélation - facteur 1 / 2'], + [os.path.basename(self.pathout['AFC2DCoulEt']), u'Variables illustratives - Corrélations - facteur 1 / 2'], + [os.path.basename(self.pathout['AFC2DCoulCl']), u'Classes - Corrélations - facteurs 1 / 2'],] + chd_graph_list = [[os.path.basename(self.pathout['dendro1']), u'dendrogramme à partir de chd1']] + if self.parametres['classif_mode'] == 0 : + chd_graph_list.append([os.path.basename(self.pathout['dendro2']), u'dendrogramme à partir de chd2']) + chd_graph_list.append([os.path.basename(self.pathout['arbre1']), u'chd1']) + if self.parametres['classif_mode'] == 0 : + chd_graph_list.append([os.path.basename(self.pathout['arbre2']), u'chd2']) + print_liste(self.pathout['liste_graph_afc'],afc_graph_list) + print_liste(self.pathout['liste_graph_chd'],chd_graph_list) + PrintRapport(self, self.corpus, self.parametres) + + +keys = {'art_def' : 2, + 'pre' : 2, + 'adj_dem' : 2, + 'ono' : 2, + 'pro_per' : 2, + 'ver_sup' : 2, + 'adv' : 1, + 'ver' : 1, + 'adj_ind' : 2, + 'adj_pos' : 2, + 'aux' : 2, + 'adj_int' : 2, + 'pro_ind' : 2, + 'adj' : 1, + 'pro_dem' : 2, + 'nom' : 1, + 'art_ind' : 2, + 'pro_pos' : 2, + 'nom_sup' : 2, + 'adv_sup' : 2, + 'adj_sup' : 2, + 'adj_num' : 2, + 'pro_rel' : 2, + 'con' : 2, + 'num' : 2, + 'nr' : 1, + 'sw' : 2, +} + +gramact = [k for k in keys if keys[k] == 1] +gramsup = [k for k in keys if keys[k] == 2] + +#corpus = Corpus('', {'filename': '/home/pierre/workspace/iramuteq/dev/testcorpus.txt','formesdb':'formes.db', 'ucesdb': 'uces.db', 'corpusdb' : 'corpus.db', 'syscoding' : 'utf-8'}) +#corpus.read_corpus() +#corpus.parse_active(gramact, gramsup) +#Alceste(corpus).doanalyse() diff --git a/app.fil b/app.fil new file mode 100644 index 0000000..0202140 --- /dev/null +++ b/app.fil @@ -0,0 +1,37 @@ +./checkinstall.py +./aslexico.py +./openanalyse.py +./listlex2.py +./chdtxt.py +./student.py +./sheet.py +./textstat.py +./guiparam3d.py +./chdtxtNG.py +./chd.py +./OptionAlceste.py +./rchdng.py +./getencoding.py +./PrintRScript.py +./normalize.py +./lancergl.py +./dendro.py +./layout.py +./chi2.py +./afcm.py +./dialog.py +./checkversion.py +./pamtxt.py +./ProfList.py +./frequence.py +./simi.py +./listlex.py +./ooolib.py +./chdquest.py +./chemins.py +./functions.py +./afcuci.py +./KeyFrame.py +./Liste.py +./guifunct.py +./iramuteq.py diff --git a/bestsvg.py b/bestsvg.py new file mode 100644 index 0000000..0cd9951 --- /dev/null +++ b/bestsvg.py @@ -0,0 +1,26 @@ +from optparse import OptionParser + +parser = OptionParser() +parser.add_option("-f", "--file", dest="filename", + help="open FILE", metavar="FILE", default=False) +parser.add_option("-b", "--whiteblack", dest='b', default=False, action='store_true') + +(options, args) = parser.parse_args() + +with open(options.filename, 'r') as f : + content = f.read() + +def correct_police(content) : + return content.replace('Arial Black','Arial') + +content = correct_police(content) + +def inverse_b_nb(content) : + return content.replace('#000000','#NOIRNOIRNOIR').replace('#ffffff','#000000').replace('#NOIRNOIRNOIR','#ffffff') + +if options.b : + content = inverse_b_nb(content) + + +with open(options.filename, 'w') as f : + f.write(content) diff --git a/build_dictionnaries.py b/build_dictionnaries.py new file mode 100644 index 0000000..d09523b --- /dev/null +++ b/build_dictionnaries.py @@ -0,0 +1,190 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud + + +import codecs +import os +from time import time +import re +from subprocess import * +import sys, string +from xml.dom import minidom, Node + + +txtdir = '/home/pierre/workspace/iramuteq/dev/langues/italian' +encodage = 'macroman' +treetagger = '/home/pierre/prog/treetagger/cmd/tree-tagger-italian-utf8' +fileout = '/home/pierre/workspace/iramuteq/dev/langues/lexique_it_t1.txt' +stopword = '/home/pierre/workspace/iramuteq/dev/langues/IT_NEW_stopwords_utf8.txt' +lexique = '/home/pierre/workspace/iramuteq/dev/langues/lexique_it.txt' +xmlfile = '/home/pierre/workspace/iramuteq/dev/langues/itwiki-latest-pages-articles.xml' + + +import xml.sax + +class WikiPediaHandler(xml.sax.ContentHandler): + def __init__(self, sparser) : + self.txt = False + self.totreat = [] + self.tottitle = 0 + self.diff = 0 + self.last = 0 + self.sparser = sparser + + def startElement(self, name, attrs): + if self.diff > 1000 : + self.sparser.treat_formes() + self.last = len(self.sparser.formes) + self.diff = 0 + if name == 'title' : + self.tottitle += 1 + if len(self.totreat) > 100000 : + self.diff = len(self.sparser.formes) - self.last + self.sparser.doparsewiki(' '.join(self.totreat)) + self.totreat = [] + print 'titres :', self.tottitle + if name == 'text' : + self.txt = True + else : + self.txt = False + #if name == "title": + # for item in attrs.items(): + # print item + def characters(self, content) : + if self.txt : + self.totreat.append(content) + +class Parser : + def __init__(self, txtdir, encodage, treetagger, fileout) : + self.txtdir = txtdir + self.encodage = encodage + self.tt = treetagger + self.formes = {} + self.fileout = fileout + #self.doparse() + #self.treat_formes(fileout) + + def clean(self, txt) : + txt = txt.lower() + keep_caract = u"a-zA-Z0-9àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇß’ñ.:,;!?\n*'_-" + list_keep = u"[^" + keep_caract + "]+" + txt = re.sub(list_keep, ' ', txt) + txt = txt.replace(u'’',u"'") + txt = txt.replace(u'\'',u' ').replace(u'-', u' ') + txt = txt.replace(u'?',u' ? ').replace(u'.',u' . ').replace(u'!', u' ! ').replace(u',',u' , ').replace(u';', u' ; ').replace(u':',u' : ') + txt = ' '.join(txt.split()) + return txt + + def update_dict(self, tmpfile) : + with codecs.open(tmpfile, 'r', 'utf8') as f : + content = f.read() + content = [line.split('\t') for line in content.splitlines()] + for forme in content : + if (forme[2] == u'') or (forme[1] in [u'PON', u'', u'SYM', u'SENT']) or (forme[1]==u'NUM' and forme[2]==u'@card@') : + pass + elif (forme[0], forme[1]) in self.formes : + self.formes[(forme[0], forme[1])][0] += 1 + else : + self.formes[(forme[0], forme[1])] = [1, forme[2]] + print len(self.formes) + + def treat_formes(self) : + print 'treat_formes' + nformes= {} + for forme in self.formes : + if forme[0] in nformes : + if self.formes[forme][0] > nformes[forme[0]][0] : + nformes[forme[0]] = [self.formes[forme][0], forme[1], self.formes[forme][1]] + else : + nformes[forme[0]] = [self.formes[forme][0], forme[1], self.formes[forme][1]] + with open(self.fileout, 'w') as f : + toprint = [[forme, nformes[forme][1], nformes[forme][2], `nformes[forme][0]`] for forme in nformes] + toprint = sorted(toprint) + toprint = '\n'.join(['\t'.join(line) for line in toprint]) + f.write(toprint.encode('utf8')) + print len(nformes) + + def doparsewiki(self, content) : + content = self.clean(content) + with open('/tmp/tmptxt', 'w') as f : + f.write(content.encode('utf8')) + p1 = Popen(['cat', '/tmp/tmptxt'], stdout = PIPE) + with open('/tmp/tttmp', 'w') as f : + p2 = Popen([treetagger], stdin = p1.stdout, stdout = f) + out = p2.communicate() + self.update_dict('/tmp/tttmp') + + def doparse(self): + files = os.listdir(self.txtdir) + for fpath in files : + fpath = os.path.join(self.txtdir, fpath) + print fpath + with codecs.open(fpath, 'r', self.encodage) as f : + content = f.read() + content = self.clean(content) + with open('/tmp/tmptxt', 'w') as f : + f.write(content.encode('utf8')) + p1 = Popen(['cat', '/tmp/tmptxt'], stdout = PIPE) + with open('/tmp/tttmp', 'w') as f : + p2 = Popen([treetagger], stdin = p1.stdout, stdout = f) + out = p2.communicate() + self.update_dict('/tmp/tttmp') + + +class PostTreat : + def __init__(self, infile, outfile, stopw = None) : + self.dictg = {} + with codecs.open(infile, 'r', 'utf8') as f : + content = f.read() + content = [line.split('\t') for line in content.splitlines()] + content = [self.treatline(line) for line in content if line[3] != '1'] + self.formes = {} + self.lems = {} + if stopw is not None : + with codecs.open(stopw, 'r', 'utf8') as f : + stw = f.read() + self.stw = stw.splitlines() + content = self.dostopword(content) + self.printcontent(content, outfile) + self.dictg = {} + for forme in self.formes : + self.dictg[self.formes[forme][2]] = self.dictg.get(self.formes[forme][2],0) + 1 + print self.dictg + print content[0:10] + print len(content) + + def treatline(self, line) : + gram = line[1].split(u':')[0].lower() + self.dictg[gram] = self.dictg.get(gram, 0) + 1 + return [line[0], line[2], gram, int(line[3])] + + def dostopword(self, content) : + for line in content : + self.formes[line[0]] = line + self.lems[line[1]] = line + for word in self.stw : + if word in self.formes : + print word, self.formes[word] + if self.formes[word][2] in ['adj','adv','ver','nom'] : + self.formes[word][2] = self.formes[word][2] + '_sup' + print self.formes[word] + else : + self.formes[word] = [word, word, 'sw', 0] + return sorted([[forme, self.formes[forme][1], self.formes[forme][2]] for forme in self.formes]) + + def printcontent(self, content, outfile) : + with open(outfile, 'w') as f : + f.write('\n'.join(['\t'.join(line) for line in content]).encode('utf8')) + + + + +#sparser = Parser('', encodage, treetagger, fileout) +#parser = xml.sax.make_parser() +#parser.setContentHandler(WikiPediaHandler(sparser)) +#parser.parse(open(xmlfile,"r")) +##Parser(txtdir, encodage, treetagger, fileout) +PostTreat(fileout, lexique, stopword) + + + diff --git a/cable.py b/cable.py new file mode 100644 index 0000000..ef23ba7 --- /dev/null +++ b/cable.py @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2010, Pierre Ratinaud +#Lisense: GNU/GPL + + +import codecs +filein = '/home/pierre/fac/cablegate/allcables-all.txt' +enc = 'utf-8' + +infile = codecs.open(filein, 'r', enc) +content = [] + +class BigCorpus : + def __init__(self, parent) : + self.parent = parent + self.parametre = {'syscoding': sys.getdefaultencoding()} + self.content = None + self.ucis = None + self.formes = {} + self.lems = {} + self.ucenb = None + self.etoiles = None + self.etintxt = {} + self.ucis_paras_uces = None + self.lc = None + self.lc0 = None + self.actives = None + self.supp = None + #self.supplementaires = [] + self.lenuc1 = None + self.lenuc2 = None + self.lexique = None + + def open_corpus(self) : + return codecs.open(self.parametre['filename'], "r", self.parametre['encodage']) + + def buildcorpus(self) : + i = 0 + ucifile = os.path.join(os.path.basedir(self.parametre['filename']), 'ucis.txt') + uci = open(ucifile, 'w') + ucinb = 0 + for line in self.open_corpus() : + if line.startswith(u'****') and i==0 : + uci.write(line) + i += 1 + elif line.startswith(u'****') and i=!0 : + uci.write(line) + parse_uci() + + write_uci() + uci[ucinb] = i + ucinb += 1 + i += 1 + else : + addlinetouci(uci, prepare(line)) + line = line.lower().replace(u'\'','\' ').replace(u'’','\' ').replace('...',u' £ ').replace('?',' ? ').replace('.',' . ').replace('!', ' ! ').replace(',',' , ').replace(';', ' ; ').replace(':', ' : ').strip() + line = line.replace('\n', ' ').replace('\r', ' ') + line = line.split() + content[-1].append(line) + i += 1 +print len(content) diff --git a/checkinstall.py b/checkinstall.py new file mode 100644 index 0000000..c379287 --- /dev/null +++ b/checkinstall.py @@ -0,0 +1,194 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008 Pierre Ratinaud +#Lisense: GNU/GPL + +import os +import sys +import shutil +from chemins import ConstructConfigPath +from functions import exec_rcode +import wx +import tempfile +from ConfigParser import * +from time import sleep + +def IsNew(self): + version_glob = self.ConfigGlob.get('DEFAULT', 'version_nb').split('.') + try : + version_user = self.pref.get('iramuteq','version_nb').split('.') + except NoOptionError : + return True + if version_user : + version_user[0] = int(version_user[0]) + version_user[1] = int(version_user[1]) + version_glob[0] = int(version_glob[0]) + version_glob[1] = int(version_glob[1]) + if len(version_user) == len(version_glob) : + if version_glob > version_user : + return True + else : + return False + if len(version_glob) == 2 : + if version_glob[:2] >= version_user[:2] : + return True + else : + return False + elif len(version_glob) == 3 : + if version_glob[:2] <= version_user[:2] : + return False + else : + return True + +def UpgradeConf(self) : + dictuser = self.ConfigPath + dictappli = ConstructConfigPath(self.AppliPath, user = False) + for item,filein in dictuser.iteritems(): + if not item == u'global' and not item == u'history': + shutil.copyfile(dictappli[item], filein) + +def CreateIraDirectory(UserConfigPath,AppliPath): + if not os.path.exists(UserConfigPath): + os.mkdir(UserConfigPath) + +def CopyConf(self) : + DictUser = self.ConfigPath + DictAppli = ConstructConfigPath(self.AppliPath,user=False) + for item, filein in DictUser.iteritems(): + if not item == u'global' and not item == u'path' and not item == u'preferences' and not item == u'history' : + shutil.copyfile(DictAppli[item],filein) + if item == u'path': + if not os.path.exists(filein): + shutil.copyfile(DictAppli[item],filein) + if item == u'preferences' : + if not os.path.exists(filein) : + shutil.copyfile(DictAppli[item],filein) + +def CheckRPath(PathPath): + if not os.path.exists(PathPath.get('PATHS','rpath')): + return False + else : + return True + +def FindRPAthWin32(): + BestPath=False + progpaths=[] + if 'ProgramFiles' in os.environ : + progpaths.append(os.environ['ProgramFiles']) + if 'ProgramFiles(x86)' in os.environ : + progpaths.append(os.environ['ProgramFiles(x86)']) + if 'ProgramW6432' in os.environ : + progpaths.append(os.environ['ProgramW6432']) + progpaths = list(set(progpaths)) + if progpaths != [] : + for progpath in progpaths : + rpath = os.path.join(progpath, "R") + if os.path.exists(rpath) : + for i in range(7,20): + for j in range(0,15): + path=os.path.join(rpath,"R-2."+str(i)+"."+str(j),'bin','R.exe') + if os.path.exists(path): + BestPath=path + return BestPath + +def FindRPathNix(): + BestPath=False + if os.path.exists('/usr/bin/R'): + BestPath='/usr/bin/R' + elif os.path.exists('/usr/local/bin/R'): + BestPath='/usr/local/bin/R' + return BestPath + +def CheckRapp(Path): + return os.path.exists(Path) + +def RLibsAreInstalled(self) : + rlibs = self.pref.get('iramuteq', 'rlibs') + if rlibs == 'false' : + return False + else : + return True + +def CheckRPackages(self): + listdep = ['ca', 'gee', 'ape', 'igraph','proxy', 'Matrix','wordcloud'] + nolib = [] + i=0 + dlg = wx.ProgressDialog("Test des librairies de R", "test en cours...", maximum = len(listdep), parent=self, style=wx.PD_APP_MODAL | wx.PD_AUTO_HIDE | wx.PD_ELAPSED_TIME | wx.PD_CAN_ABORT) + for bib in listdep : + dlg.Center() + i+=1 + dlg.Update(i, "test de %s" % bib) + txt = """library("%s")""" % bib + tmpscript = tempfile.mktemp(dir=self.TEMPDIR) + file = open(tmpscript, 'w') + file.write(txt) + file.close() + test = exec_rcode(self.RPath, tmpscript, wait = True) + if test : + nolib.append(bib) + dlg.Update(len(listdep),'fini') + dlg.Destroy() + if nolib != [] : + txt = '\n'.join(nolib) + msg = u"""Les bibliothèques de R suivantes sont manquantes : +%s + +Sans ces bibliothèques, IRamuteq ne fonctionnera pas. + +- Vous pouvez installer ces bibliothèques manuellement : + Cliquez sur Annuler + Lancez R + Tapez install.packages('nom de la bibiothèque') + +- ou laisser IRamuteq les installer automatiquement en cliquant sur VALIDER . + Les bibliothèques seront téléchargées depuis le site miroir de R du CICT de Toulouse. + """ % txt + dial = wx.MessageDialog(self, msg, u"Installation incomplète", wx.OK | wx.CANCEL | wx.NO_DEFAULT | wx.ICON_WARNING) + dial.CenterOnParent() + val = dial.ShowModal() + if val == wx.ID_OK : + dlg = wx.ProgressDialog("Installation", + "Veuillez patientez...", + maximum=len(nolib) + 1, + parent=self, + style=wx.PD_APP_MODAL | wx.PD_AUTO_HIDE | wx.PD_ELAPSED_TIME | wx.PD_CAN_ABORT + ) + dlg.Center() + dlg.Update(1, u"installation...") + compt = 0 + for bib in nolib : + compt += 1 + dlg.Update(compt, u"installation librairie %s" % bib) + txt = """ + userdir <- unlist(strsplit(Sys.getenv("R_LIBS_USER"), .Platform$path.sep))[1] + if (!file.exists(userdir)) { + if (!dir.create(userdir, recursive = TRUE)) + print('pas possible') + lib <- userdir + .libPaths(c(userdir, .libPaths())) + } + print(userdir) + .libPaths + """ + txt += """ + install.packages("%s", repos = 'http://cran.cict.fr') + """ % bib + tmpscript = tempfile.mktemp(dir=self.TEMPDIR) + file = open(tmpscript, 'w') + file.write(txt) + file.close() + test = exec_rcode(self.RPath, tmpscript, wait = False) + while test.poll() == None : + dlg.Pulse(u"installation librairie %s" % bib) + sleep(0.2) + dlg.Update(len(nolib) + 1, 'fin') + dlg.Destroy() + else : + pass + dial.Destroy() + else : + self.pref.set('iramuteq', 'rlibs', True) + with open(self.ConfigPath['preferences'], 'w') as f : + self.pref.write(f) + return True diff --git a/checkversion.py b/checkversion.py new file mode 100644 index 0000000..4fa6010 --- /dev/null +++ b/checkversion.py @@ -0,0 +1,49 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009, Pierre Ratinaud +#Lisense: GNU/GPL + +import urllib2 +import socket +import wx + +def NewVersion(parent): + version = parent.version.split(' ') + if len(version) == 3: + versionnb = float(version[0]) + versionsub = int(version[2]) + else: + versionnb = float(version[0]) + versionsub = False + erreur = False + new = False + req = urllib2.Request("http://www.iramuteq.org/current_version") + try: + LastVersion = urllib2.urlopen(req,'',3) + lastversion = LastVersion.readlines() + lastversion = lastversion[0].replace('\n', '').split('-') + if len(lastversion) == 2 : + if (float(lastversion[0]) > versionnb) : + new = True + elif float(lastversion[0]) == versionnb and versionsub : + if versionsub < int(lastversion[1].replace('alpha', '')): + new = True + elif len(lastversion) == 1 : + if (float(lastversion[0]) >= versionnb) and (versionsub) : + new = True + elif (float(lastversion[0]) > versionnb) and not versionsub : + new = True + except : + erreur = u"la page n'est pas accessible" + if not erreur and new : + msg = u""" +Une nouvelle version d'IRaMuTeQ (%s) est disponible. +Vous pouvez la télécharger à partir du site web iramuteq : +http://www.iramuteq.org""" % '-'.join(lastversion) + dlg = wx.MessageDialog(parent, msg, u"Nouvelle version disponible", wx.OK | wx.NO_DEFAULT | wx.ICON_WARNING) + dlg.CenterOnParent() + if dlg.ShowModal() in [wx.ID_NO, wx.ID_CANCEL]: + evt.Veto() + +#print NewVersion('0.1-alpha18') diff --git a/chemins.py b/chemins.py new file mode 100644 index 0000000..b7c288d --- /dev/null +++ b/chemins.py @@ -0,0 +1,278 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008 Pierre Ratinaud +#Lisense: GNU/GPL + +import os +import tempfile +import logging + +log = logging.getLogger('iramuteq.chemins') + + +class PathOut : + def __init__(self, filename = None, analyse_type = '', dirout = None) : + if filename is not None : + self.filepath = os.path.abspath(filename) + self.filebasename = os.path.basename(filename) + self.directory = os.path.abspath(os.path.dirname(filename)) + self.filename, self.fileext = os.path.splitext(self.filebasename) + self.analyse = analyse_type + #self.dirout = self.mkdirout(dirout) + if dirout is not None: + self.dirout = dirout + elif filename is not None and dirout is None: + self.dirout = self.directory + self.d = {} + + def mkdirout(self) : + dirout = os.path.join(self.dirout, self.filename + '_' + self.analyse + '_') + nb = 1 + tdirout = dirout + `nb` + while os.path.exists(tdirout) : + nb += 1 + tdirout = dirout + `nb` + self.name = os.path.splitext(tdirout)[1] + return tdirout + + def createdir(self, tdirout) : + if not os.path.exists(tdirout) : + os.mkdir(tdirout) + + def basefiles(self, ndict) : + self.d = ndict + + def __getitem__(self, key) : + if key == 'temp' : + self.temp = tempfile.mkstemp(prefix='iramuteq')[1].replace('\\', '\\\\') + return self.temp + elif key not in self.d : + return os.path.join(self.dirout, key).replace('\\', '\\\\') + else : + return os.path.join(self.dirout, self.d[key]).replace('\\', '\\\\') + + def getF(self, key) : + return self.__getitem__(key).replace('\\', '/') + + +def ffr(filename): + return filename.replace('\\', '\\\\') + +def FFF(filename): + return filename.replace('\\', '/') + +def ConstructRscriptsPath(AppliPath): + RScriptsPath = os.path.join(AppliPath, 'Rscripts') + #print('@@@@@@@@@@@PONDERATION CHDPOND.R@@@@@@@@@@@@@@@@') + #print('@@@@@@@@@@@ NEW SVD CHEMIN @@@@@@@@@@@@@@@@') + #print '@@@@@@@@@@@ NEW NCHD CHEMIN @@@@@@@@@@@@@@@@' + DictRscripts = { + 'Rfunct': ffr(os.path.join(RScriptsPath, 'Rfunct.R')), + 'chdfunct': ffr(os.path.join(RScriptsPath, 'chdfunct.R')), + 'Rgraph': ffr(os.path.join(RScriptsPath, 'Rgraph.R')), + 'plotafcm': ffr(os.path.join(RScriptsPath, 'plotafcm.R')), + 'afc_graph' : ffr(os.path.join(RScriptsPath, 'afc_graph.R')), + #'CHD': ffr(os.path.join(RScriptsPath, 'CHDPOND.R')), + 'CHD': ffr(os.path.join(RScriptsPath, 'CHD.R')), + #'CHD' : ffr(os.path.join(RScriptsPath, 'NCHD.R')), + 'chdtxt': ffr(os.path.join(RScriptsPath, 'chdtxt.R')), + 'chdquest': ffr(os.path.join(RScriptsPath, 'chdquest.R')), + 'pamtxt' : ffr(os.path.join(RScriptsPath, 'pamtxt.R')), + 'anacor' : ffr(os.path.join(RScriptsPath, 'anacor.R')), + #'anacor' : ffr(os.path.join(RScriptsPath, 'Nanacor.R')), + 'simi' : ffr(os.path.join(RScriptsPath, 'simi.R')), + } + return DictRscripts + +def ConstructPathOut(Filename, analyse_type): + FileBaseName = os.path.basename(Filename) + FileBasePath = os.path.dirname(Filename) + PathFile = os.path.splitext(FileBaseName) + PathFile = os.path.join(FileBasePath, PathFile[0] + '_' + analyse_type + '_1') + splitpath = PathFile.split('_') + number = int(splitpath[len(splitpath) - 1]) + while os.path.isdir(PathFile) : + if number < 10: + PathFile = PathFile[0:len(PathFile) - 1] + str(number + 1) + pass + elif (number >= 10) and (number < 100): + PathFile = PathFile[0:len(PathFile) - 2] + str(number + 1) + pass + elif number >= 100 : + PathFile = PathFile[0:len(PathFile) - 3] + str(number + 1) + pass + number += 1 + os.mkdir(os.path.join(FileBasePath, PathFile)) + return os.path.join(FileBasePath, PathFile) + +def ConstructConfigPath(AppliPath, user=True): + if not user: + ConfigPath = os.path.join(AppliPath, 'configuration') + else : + ConfigPath = AppliPath + DictConfigPath = { + 'alceste': os.path.join(ConfigPath, 'alceste.cfg'), + 'key': os.path.join(ConfigPath, 'key.cfg'), + 'path': os.path.join(ConfigPath, 'path.cfg'), + 'preferences' : os.path.join(ConfigPath, 'iramuteq.cfg'), + 'pam' : os.path.join(ConfigPath, 'pam.cfg'), + 'history' : os.path.join(ConfigPath, 'history.db'), + } + return DictConfigPath + +def ConstructGlobalPath(AppliPath): + ConfigPath = os.path.join(AppliPath, 'configuration') + DictConfigPath = { + 'global': os.path.join(ConfigPath, 'global.cfg'), + } + return DictConfigPath + +def ConstructDicoPath(AppliPath): + BasePath = os.path.join(AppliPath, 'dictionnaires') + DictPath = { + 'french': os.path.join(BasePath, 'lexique_fr.txt'), + 'french_exp': os.path.join(BasePath, 'expression_fr.txt'), + 'english': os.path.join(BasePath, 'lexique_en.txt'), + 'english_exp': os.path.join(BasePath, 'expression_en.txt'), + 'german' : os.path.join(BasePath, 'lexique_de.txt'), + 'german_exp' : os.path.join(BasePath, 'expression_de.txt'), + 'italian' : os.path.join(BasePath, 'lexique_it.txt'), + 'italian_exp' : os.path.join(BasePath, 'expression_it.txt'), + } + return DictPath + +def ConstructAfcmPath(FilePath): + DictAfcmPath = { + 'Levels': ffr(os.path.join(FilePath, 'afcm-levels.csv')), + 'nd': ffr(os.path.join(FilePath, 'afcm-nd.csv')), + 'FileActTemp': ffr(os.path.join(FilePath, 'fileActTamp.csv')), + 'FileEtTemp': ffr(os.path.join(FilePath, 'FileEtTemp')), + 'resultat': os.path.join(FilePath, 'Resultats-afcm.html'), + 'Rafc3d': ffr(tempfile.mkstemp(prefix='iramuteq')[1]) + } + return DictAfcmPath + +def ConstructAfcUciPath(filepath): + DictAfcUciPath = { + 'TableCont': ffr(os.path.join(filepath, 'TableCont.csv')), + 'TableSup': ffr(os.path.join(filepath, 'TableSup.csv')), + 'TableEt': ffr(os.path.join(filepath, 'TableEt.csv')), + 'AfcColAct': ffr(os.path.join(filepath, 'AfcColAct.png')), + 'AfcColSup': ffr(os.path.join(filepath, 'AfcColSup.png')), + 'AfcColEt': ffr(os.path.join(filepath, 'AfcColEt.png')), + 'afcdiv4': ffr(os.path.join(filepath, 'afcdiv4_')), + 'AfcRow': ffr(os.path.join(filepath, 'AfcRow.png')), + 'ListAct': ffr(os.path.join(filepath, 'ListAct.csv')), + 'ListSup': ffr(os.path.join(filepath, 'ListSup.csv')), + 'GraphAfcTot': os.path.join(filepath, 'GraphAfcTot.html'), + 'Rafcuci': ffr(tempfile.mkstemp(prefix='iramuteq')[1]), + 'afc_row': ffr(os.path.join(filepath, 'afc_row.csv')), + 'afc_col': ffr(os.path.join(filepath, 'afc_col.csv')), + 'ira' : os.path.join(filepath, 'Analyse.ira'), + } + return DictAfcUciPath + +ChdTxtPathOut = {'TableUc1': 'TableUc1.csv', + 'TableUc2': 'TableUc2.csv', + 'listeuce1': 'listeUCE1.csv', + 'listeuce2': 'listeUCE2.csv', + 'DicoMots': 'DicoMots.csv', + 'DicoLem': 'DicoLem.csv', + 'profile': 'profiles.csv', + 'antiprofile': 'antiprofiles.csv', + 'afc': 'AFC.csv', + 'rapport': 'RAPPORT.txt', + 'pre_rapport' : 'info.txt', + 'uce': 'uce.csv', + 'Rchdtxt': ffr(tempfile.mkstemp(prefix='iramuteq')[1]), + 'arbre1': 'arbre_1.png', + 'arbre2': 'arbre_2.png', + 'dendro1': 'dendro1.png', + 'dendro2': 'dendro2.png', + 'Rdendro': 'dendrogramme.RData', + 'Contout': 'classe_mod.csv', + 'RData': 'RData.RData', + 'ContSupOut': 'tablesup.csv', + 'ContEtOut': 'tableet.csv', + 'PROFILE_OUT': 'profiles.csv', + 'ANTIPRO_OUT': 'antiprofiles.csv', + 'SbyClasseOut': 'SbyClasseOut.csv', + 'chisqtable' : 'chisqtable.csv', + 'ptable' : 'ptable.csv', + 'ira': 'Analyse.ira', + 'AFC2DL_OUT': 'AFC2DL.png', + 'AFC2DSL_OUT': 'AFC2DSL.png', + 'AFC2DEL_OUT': 'AFC2DEL.png', + 'AFC2DCL_OUT': 'AFC2DCL.png', + 'AFC2DCoul': 'AFC2DCoul.png', + 'AFC2DCoulSup': 'AFC2DCoulSup.png', + 'AFC2DCoulEt': 'AFC2DCoulEt.png', + 'AFC2DCoulCl': 'AFC2DCoulCl.png', + 'Rafc3d': ffr(tempfile.mkstemp(prefix='iramuteq')[1]), + 'R3DCoul': ffr(tempfile.mkstemp(prefix='iramuteq')[1]), + 'RESULT_CHD': 'resultats-chd.html', + 'RESULT_AFC': 'resultats-afc.html', + 'Act01': 'Act01.csv', + 'Et01': 'Et01.csv', + 'Rchdquest':ffr(tempfile.mkstemp(prefix='iramuteq')[1]), + 'RTxtProfGraph':ffr(tempfile.mkstemp(prefix='iramuteq')[1]), + 'typelist': 'typelist.csv', + 'concord':'concordancier.csv', + 'bduceforme':'bduceforme.csv', + 'uceuci': 'uceuci.csv', + 'uciet': 'uciet.csv', + 'ContTypeOut': 'tabletype.csv', + 'liste_graph_afc' : 'liste_graph_afc.txt', + 'liste_graph_chd' : 'liste_graph_chd.txt', + 'afc_row': 'afc_row.csv', + 'afc_col': 'afc_col.csv', + 'afc_facteur': 'afc_facteur.csv', + 'corpus_exp' : 'corpus_out.txt', + 'segments_classes' : 'segments_classes.csv', + 'prof_seg' : 'prof_segments.csv', + 'antiprof_seg' : 'antiprof_segments.csv', + 'prof_type' : 'profil_type.csv', + 'antiprof_type' : 'antiprof_type.csv', + 'type_cl' : 'type_cl.csv', + 'db' : 'analyse.db', + } + +def StatTxtPathOut(pathout): + d = {'tableafcm':ffr(os.path.join(pathout, 'tableafcm.csv')), + 'tabletypem': ffr(os.path.join(pathout, 'tabletypem.csv')), + 'tablespecf': ffr(os.path.join(pathout, 'tablespecf.csv')), + 'tablespect': ffr(os.path.join(pathout, 'tablespect.csv')), + 'eff_relatif_forme': ffr(os.path.join(pathout, 'eff_relatif_forme.csv')), + 'eff_relatif_type': ffr(os.path.join(pathout, 'eff_relatif_type.csv')), + 'afcf_row' : ffr(os.path.join(pathout, 'afcf_row.png')), + 'afcf_col' : ffr(os.path.join(pathout, 'afcf_col.png')), + 'afct_row' : ffr(os.path.join(pathout, 'afct_row.png')), + 'afct_col' : ffr(os.path.join(pathout, 'afct_col.png')), + 'RData' : ffr(os.path.join(pathout, 'RData.RData')), + 'liste_graph_afcf' : os.path.join(pathout, 'liste_graph_afcf.txt'), + 'liste_graph_afct' : os.path.join(pathout, 'liste_graph_afct.txt'), + 'afcf_row_csv': ffr(os.path.join(pathout, 'afcf_row.csv')), + 'afcf_col_csv': ffr(os.path.join(pathout, 'afcf_col.csv')), + 'afcf_facteur_csv': ffr(os.path.join(pathout, 'afcf_facteur.csv')), + 'afct_row_csv': ffr(os.path.join(pathout, 'afct_row.csv')), + 'afct_col_csv': ffr(os.path.join(pathout, 'afct_col.csv')), + 'afct_facteur_csv': ffr(os.path.join(pathout, 'afct_facteur.csv')), + 'ira' : ffr(os.path.join(pathout, 'Analyse.ira')), + 'db' : os.path.join(pathout, 'analyse.db'), + 'zipf' : ffr(os.path.join(pathout, 'zipf.png')), + } + return d + +def construct_simipath(pathout): + d = {'mat01' : ffr(os.path.join(pathout, 'mat01.csv')), + 'matsimi' : ffr(os.path.join(pathout, 'matsimi.csv')), + 'eff' : ffr(os.path.join(pathout, 'eff.csv')), + 'RData' : ffr(os.path.join(pathout, 'RData.RData')), + 'liste_graph' : os.path.join(pathout, 'liste_graph.txt'), + 'ira' : os.path.join(pathout, 'Analyse.ira'), + 'film' : ffr(pathout), + 'db' : os.path.join(pathout, 'analyse.db'), + 'corpus' : os.path.join(pathout, 'corpus.db'), + } + return d diff --git a/colors.py b/colors.py new file mode 100644 index 0000000..0244005 --- /dev/null +++ b/colors.py @@ -0,0 +1,31 @@ +#colors +colors = [['#FF0000'], \ +['#FF0000','#00FFFF'], \ +['#FF0000','#00FF00','#0000FF'], \ +['#FF0000','#80FF00','#00FFFF','#8000FF'], \ +['#FF0000','#CCFF00','#00FF66','#0066FF','#CC00FF'], \ +['#FF0000','#FFFF00','#00FF00','#00FFFF','#0000FF','#FF00FF'], \ +['#FF0000','#FFDB00','#49FF00','#00FF92','#0092FF','#4900FF','#FF00DB'], \ +['#FF0000','#FFBF00','#80FF00','#00FF40','#00FFFF','#0040FF','#8000FF','#FF00BF'], \ +['#FF0000','#FFAA00','#AAFF00','#00FF00','#00FFAA','#00AAFF','#0000FF','#AA00FF','#FF00AA'], \ +['#FF0000','#FF9900','#CCFF00','#33FF00','#00FF66','#00FFFF','#0066FF','#3300FF','#CC00FF','#FF0099'], \ +['#FF0000','#FF8B00','#E8FF00','#5DFF00','#00FF2E','#00FFB9','#00B9FF','#002EFF','#5D00FF','#E800FF','#FF008B'], \ +['#FF0000','#FF8000','#FFFF00','#80FF00','#00FF00','#00FF80','#00FFFF','#0080FF','#0000FF','#8000FF','#FF00FF','#FF0080'], \ +['#FF0000','#FF7600','#FFEB00','#9DFF00','#27FF00','#00FF4E','#00FFC4','#00C4FF','#004EFF','#2700FF','#9D00FF','#FF00EB','#FF0076'], \ +['#FF0000','#FF6D00','#FFDB00','#B6FF00','#49FF00','#00FF24','#00FF92','#00FFFF','#0092FF','#0024FF','#4900FF','#B600FF','#FF00DB','#FF006D'], \ +['#FF0000','#FF6600','#FFCC00','#CCFF00','#66FF00','#00FF00','#00FF66','#00FFCC','#00CCFF','#0066FF','#0000FF','#6600FF','#CC00FF','#FF00CC','#FF0066'], \ +['#FF0000','#FF6000','#FFBF00','#DFFF00','#80FF00','#20FF00FF#00FF40','#00FF9F','#00FFFF','#009FFF','#0040FF','#2000FF','#8000FF','#DF00FF','#FF00BF','#FF0060'], \ +['#FF0000','#FF5A00','#FFB400','#F0FF00','#96FF00','#3CFF00','#00FF1E','#00FF78','#00FFD2','#00D2FF','#0078FF','#001EFF','#3C00FF','#9600FF','#F000FF','#FF00B4','#FF005A'], \ +['#FF0000','#FF5500','#FFAA00','#FFFF00','#AAFF00','#55FF00','#00FF00','#00FF55','#00FFAA','#00FFFF','#00AAFF','#0055FF','#0000FF','#5500FF','#AA00FF','#FF00FF','#FF00AA','#FF0055'], \ +['#FF0000','#FF5100','#FFA100','#FFF200','#BCFF00','#6BFF00','#1BFF00','#00FF36','#00FF86','#00FFD7','#00D7FF','#0086FF','#0036FF','#1B00FF','#6B00FF','#BC00FF','#FF00F2','#FF00A1','#FF0051'], \ +['#FF0000','#FF4D00','#FF9900','#FFE500','#CCFF00','#80FF00','#33FF00','#00FF19','#00FF66','#00FFB2','#00FFFF','#00B3FF','#0066FF','#001AFF','#3300FF','#7F00FF','#CC00FF','#FF00E6','#FF0099','#FF004D'], \ +['#FF0000','#FF4900','#FF9200','#FFDB00','#DBFF00','#92FF00','#49FF00','#00FF00','#00FF49','#00FF92','#00FFDB','#00DBFF','#0092FF','#0049FF','#0000FF','#4900FF','#9200FF','#DB00FF','#FF00DB','#FF0092','#FF0049'], \ +['#FF0000','#FF4600','#FF8B00','#FFD100','#E8FF00','#A2FF00','#5DFF00','#17FF00','#00FF2E','#00FF74','#00FFB9','#00FFFF','#00B9FF','#0074FF','#002EFF','#1700FF','#5D00FF','#A200FF','#E800FF','#FF00D1','#FF008B','#FF0046'], \ +['#FF0000','#FF4300','#FF8500','#FFC800','#F4FF00','#B1FF00','#6FFF00','#2CFF00','#00FF16','#00FF59','#00FF9B','#00FFDE','#00DEFF','#009BFF','#0059FF','#0016FF','#2C00FF','#6F00FF','#B100FF','#F400FF','#FF00C8','#FF0085','#FF0043'], \ +['#FF0000','#FF4000','#FF8000','#FFBF00','#FFFF00','#BFFF00','#80FF00','#40FF00','#00FF00','#00FF40','#00FF80','#00FFBF','#00FFFF','#00BFFF','#0080FF','#0040FF','#0000FF','#4000FF','#8000FF','#BF00FF','#FF00FF','#FF00BF','#FF0080','#FF0040'], \ +['#FF0000','#FF3D00','#FF7A00','#FFB800','#FFF500','#CCFF00','#8FFF00','#52FF00','#14FF00','#00FF29','#00FF66','#00FFA3','#00FFE0','#00E0FF','#00A3FF','#0066FF','#0029FF','#1400FF','#5200FF','#8F00FF','#CC00FF','#FF00F5','#FF00B8','#FF007A','#FF003D'], \ +['#FF0000','#FF3B00','#FF7600','#FFB100','#FFEB00','#D8FF00','#9DFF00','#62FF00','#27FF00','#00FF14','#00FF4E','#00FF89','#00FFC4','#00FFFF','#00C4FF','#0089FF','#004EFF','#0014FF','#2700FF','#6200FF','#9D00FF','#D800FF','#FF00EB','#FF00B1','#FF0076','#FF003B'], \ +['#FF0000','#FF3900','#FF7100','#FFAA00','#FFE300','#E3FF00','#AAFF00','#71FF00','#39FF00','#00FF00','#00FF39','#00FF71','#00FFAA','#00FFE3','#00E3FF','#00AAFF','#0071FF','#0039FF','#0000FF','#3900FF','#7100FF','#AA00FF','#E300FF','#FF00E3','#FF00AA','#FF0071','#FF0039'], \ +['#FF0000','#FF3700','#FF6D00','#FFA400','#FFDB00','#EDFF00','#B6FF00','#80FF00','#49FF00','#12FF00','#00FF24','#00FF5B','#00FF92','#00FFC8','#00FFFF','#00C8FF','#0092FF','#005BFF','#0024FF','#1200FF','#4900FF','#8000FF','#B600FF','#ED00FF','#FF00DB','#FF00A4','#FF006D','#FF0037'], \ +['#FF0000','#FF3500','#FF6A00','#FF9E00','#FFD300','#F6FF00','#C1FF00','#8DFF00','#58FF00','#23FF00','#00FF12','#00FF46','#00FF7B','#00FFB0','#00FFE5','#00E5FF','#00B0FF','#007BFF','#0046FF','#0012FF','#2300FF','#5800FF','#8D00FF','#C100FF','#F600FF','#FF00D3','#FF009E','#FF006A','#FF0035'], \ +['#FF0000','#FF3300','#FF6600','#FF9900','#FFCC00','#FFFF00','#CCFF00','#99FF00','#66FF00','#33FF00','#00FF00','#00FF33','#00FF66','#00FF99','#00FFCC','#00FFFF','#00CCFF','#0099FF','#0066FF','#0033FF','#0000FF','#3300FF','#6600FF','#9900FF','#CC00FF','#FF00FF','#FF00CC','#FF0099','#FF0066','#FF0033']] diff --git a/configuration/.corpus.cfg.swo b/configuration/.corpus.cfg.swo new file mode 100644 index 0000000..fd188bb Binary files /dev/null and b/configuration/.corpus.cfg.swo differ diff --git a/configuration/.corpus.cfg.swp b/configuration/.corpus.cfg.swp new file mode 100644 index 0000000..93eacb7 Binary files /dev/null and b/configuration/.corpus.cfg.swp differ diff --git a/configuration/CHD.cfg b/configuration/CHD.cfg new file mode 100644 index 0000000..50ce586 --- /dev/null +++ b/configuration/CHD.cfg @@ -0,0 +1,27 @@ +[paths] +PROFILE_OUT: profiles.txt +ANTIPRO_OUT: antiprofiles.txt +AFC3DS_OUT : AFC3D.jpeg +AFC2DS_OUT: AFC2D1.jpeg +AFC3DBC_OUT: AFC3DBC.jpeg +AFC3DC_OUT: AFC3DCoul.jpeg +AFC3DP_OUT: AFC3DP.jpeg +AFC2DL_OUT: AFC2DL.jpeg +AFC2DSL_OUT: AFC2DSL.jpeg +AFC2DCL_OUT: AFC2DCL.jpeg +AFC2DR_OUT: AFC2DR.jpeg +DENDROC_OUT: DENDROCoul.jpeg +DENDROH_OUT: DENDROH.jpeg +DENDROT_OUT: DENDROT.jpeg +DENDROCOMP_OUT: DENDROCOMP.jpeg +DENDROCUT_OUT: DENDROCUT.jpeg +RESULT_CHD: resultats-chd.html +RESULT_AFC: resultats-afc.html +RESULT_AFC3D: resultats-afc3d.html +AFCROUT: C3_AFC.txt +CONT_OUT: classe_mod.csv +FILE_ACT_TEMP: fileACTtemp.csv +FILE_ET_TEMP: fileETtemp.csv + +[Resultats] +AntiProfiles: True diff --git a/configuration/alceste.cfg b/configuration/alceste.cfg new file mode 100644 index 0000000..42891ff --- /dev/null +++ b/configuration/alceste.cfg @@ -0,0 +1,32 @@ +[ALCESTE] +#nombre minimum d'unités par classe, 0=calcul automatique +mincl = 0 +#nombre de formes par uce, 0=calcul automatique +nbforme_uce = 0 +#nombre maximum de formes actives +max_actives = 1500 +#lemmatisation +lem = True +#taille du premier tableau uc/forme +tailleuc1 = 10 +#nombre de classes terminales de l'analyse, NE PAS EDITER +nbcl = 4 +#taille du second tableau uc/forme +tailleuc2 = 12 +#mode de classification, 0=double sur UC, 1=simple sur UCE, 2=simple sur UCI +classif_mode = 0 +#????? +minforme = 2 +#utilisation du dictionnaire des expressions +expressions = True +#nbre de classe terminale de la phase 1 +nbcl_p1 = 10 + +[IMAGE] +#non utilise +heigth = 400 +width = 400 +reso = 200 +x = 1 +y = 2 +seuilkhi = 2 diff --git a/configuration/corpus.cfg b/configuration/corpus.cfg new file mode 100644 index 0000000..327f4e8 --- /dev/null +++ b/configuration/corpus.cfg @@ -0,0 +1,24 @@ +[corpus] +corpus_name = +filename = test.txt +originalpath = +encoding = utf8 +lang = french +douce = 1 +ucemethod = 0 +ucesize = 35 +keep_ponct = 0 +tolist = 0 +etoile = 1 +date = +time = +ucinb = +ucenb = +occurrences = +keep_caract = ^a-zA-Z0-9àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇßœŒ’ñ.:,;!?*'_- +lower = 1 +ucimark = 0 +expressions = 1 +apos = 1 +tiret = 1 +firstclean = 1 diff --git a/configuration/global.cfg b/configuration/global.cfg new file mode 100644 index 0000000..c21ece7 --- /dev/null +++ b/configuration/global.cfg @@ -0,0 +1,11 @@ +[DEFAULT] +#ne pas editer +gpl-en = gpl-2.0.txt +name = iramuteq +copyright = (c) 2008-2012 Pierre Ratinaud +author = Pierre Ratinaud +gpl-fr = gpl-2.0-fr.txt +dev = Pierre Ratinaud (ratinaud@univ-tlse2.fr);Sebastien Dejean +version = 0.6 alpha 1 +licence = GNU GPL (v2) +version_nb = 0.6.a1 diff --git a/configuration/iramuteq.cfg b/configuration/iramuteq.cfg new file mode 100644 index 0000000..91089d1 --- /dev/null +++ b/configuration/iramuteq.cfg @@ -0,0 +1,12 @@ +[iramuteq] +sound=true +checkupdate=true +language=french +guilanguage=french +R_mem = false +R_max_mem = 1535 +version_nb = 0.6.a1 +rlibs = false +libsvdc = false +libsvdc_path = /usr/bin/svd +rmirror = http://cran.univ-lyon1.fr diff --git a/configuration/key.cfg b/configuration/key.cfg new file mode 100644 index 0000000..c86e3ce --- /dev/null +++ b/configuration/key.cfg @@ -0,0 +1,28 @@ +[KEYS] +art_def = 2 +pre = 2 +adj_dem = 2 +ono = 2 +pro_per = 2 +ver_sup = 2 +adv = 1 +ver = 1 +adj_ind = 2 +adj_pos = 2 +aux = 2 +adj_int = 2 +pro_ind = 2 +adj = 1 +pro_dem = 2 +nom = 1 +art_ind = 2 +pro_pos = 2 +nom_sup = 2 +adv_sup = 2 +adj_sup = 2 +adj_num = 2 +pro_rel = 2 +con = 2 +num = 2 +nr = 1 +sw = 2 diff --git a/configuration/pam.cfg b/configuration/pam.cfg new file mode 100644 index 0000000..1b78190 --- /dev/null +++ b/configuration/pam.cfg @@ -0,0 +1,20 @@ +[pam] +mincl = 0 +nbforme_uce = 0 +lem = True +type = 0 +nbcl = 4 +cluster_type = pam +method = binary +max_actives = 1500 +expressions = True + +[graph_cluster] +heigth = 400 +width = 400 + +[afc] +heigth = 400 +width = 400 +x = 1 +y = 2 diff --git a/configuration/path.cfg b/configuration/path.cfg new file mode 100644 index 0000000..ec92226 --- /dev/null +++ b/configuration/path.cfg @@ -0,0 +1,4 @@ +[PATHS] +rpath = +lastpath = +rapp = /Applications/R.app/Contents/MacOS/R diff --git a/corpus.py b/corpus.py new file mode 100644 index 0000000..2f81aaa --- /dev/null +++ b/corpus.py @@ -0,0 +1,1278 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2010, Pierre Ratinaud +#Lisense: GNU/GPL + +import codecs +import shelve +import csv +import re +import os +import sys +from colors import colors +from functions import decoupercharact, ReadDicoAsDico, sortedby +from ttparser import get_ucis_from_tt +#from ConfigParser import RawConfigParser +import json +from time import time +#import nltk + +def chunks(l, n): + """ Yield successive n-sized chunks from l. + """ + for i in xrange(0, len(l), n): + yield l[i:i+n] + +class Corpus : + def __init__(self, parent) : + self.parent = parent + self.parametre = {'syscoding': sys.getdefaultencoding()} + self.content = None + self.ucis = None + self.formes = {} + self.lems = {} + self.ucenb = None + self.etoiles = None + self.etintxt = {} + self.ucis_paras_uces = None + self.lc = None + self.lc0 = None + self.actives = None + self.supp = None + #self.supplementaires = [] + self.lenuc1 = None + self.lenuc2 = None + self.lexique = None + + def open_corpus(self) : + with codecs.open(self.parametre['filename'], "r", self.parametre['encodage']) as f : + self.content = f.read() + + def make_big(self) : + import sqlite3 + ucifile = os.path.join(os.path.dirname(self.parametre['filename']), 'ucis.txt') + uci = open(ucifile, 'w') + #db = os.path.join(os.path.dirname(self.parametre['filename']), 'corpus.db') + #conn = sqlite3.connect(db) + #c = conn.cursor() + #conn.text_factory = str + #c = conn.cursor() + #c.execute('''CREATE TABLE corpus (id integer, varet TEXT)''') + #c = conn.cursor() + ucinb = 0 + self.ucis = [] + txt = [] + with codecs.open(self.parametre['filename'], "r", self.parametre['encodage']) as open_corpus : + for line in open_corpus : + if line.startswith(u'****') : + print ucinb + uci.write(line.replace('/n', ' ')) + #self.ucis.append([line.rstrip(), `ucinb`]) + if ucinb != 0 : + for word in txt : + if word not in [' ','.', u'£', ';', '?', '!', ',', ':',''] : + id = len(self.formes) + self.feed_dict_big(word, ucinb) + txt = [] + #c = conn.cursor() + #c.execute('INSERT INTO uci values (?,?)', (ucinb, line.rstrip())) + #conn.commit() + #print ucinb + ucinb += 1 + else : + line = line.lower().replace('-', ' ').replace(u'\'',' ').replace(u'’',' ').replace('...',u' £ ').replace('?',' ? ').replace('.',' . ').replace('!', ' ! ').replace(',',' , ').replace(';', ' ; ').replace(':',' : ').rstrip().split() + txt += line + uci.close() + print len(self.formes) + print sum([self.formes[forme][0] for forme in self.formes]) + formes_out2 = os.path.join(os.path.dirname(self.parametre['filename']), 'formes_formes.csv') + formes_uces = os.path.join(os.path.dirname(self.parametre['filename']), 'formes_uces.csv') + with open(formes_out2, 'w') as f : + f.write('\n'.join([';'.join([forme, `self.formes[forme][0]`, self.formes[forme][2]]) for forme in self.formes])) + with open(formes_uces, 'w') as f: + f.write('\n'.join([' '.join([' '.join([`uce`, `self.formes[forme][1][uce]`]) for uce in self.formes[forme][1]]) for forme in self.formes])) + #uciout = os.path.join(os.path.dirname(self.parametre['filename']), 'uciout.csv') + #with open(uciout,'w') as f : + # f.write('\n'.join(['\t'.join(line) for line in self.ucis])) + + + + + def read_corpus_out(self, corpus_out) : + #print 'test encodage' + #self.parametre['syscoding'] = 'cp1252' + with codecs.open(corpus_out ,'r', self.parametre['syscoding']) as f: + content = f.read() + if sys.platform == 'win32' : + sep = '\r\n\r\n' + else : + sep = '\n\n' + self.ucis_paras_uces = [[[uce.split() for uce in para.splitlines()] for para in uci.split(u'$$$')] for uci in content.split(sep)] + #print self.ucis_paras_uces + + def read_formes_out(self, forme_out) : + print 'read formes' + print 'test encodage' + #t1 = time() + if os.path.exists(forme_out) : + with codecs.open(forme_out, 'r', self.parametre['syscoding']) as f : + content = f.read() + cc = [forme.split(u'$') for forme in content.splitlines()] + self.formes = dict([[forme[0], [int(forme[1]), dict([[eval(uce.split(':')[0]), int(uce.split(':')[1])] for uce in forme[2].split(';')]), forme[3], int(forme[4])]] for forme in cc]) + else : + formes_out2 = os.path.join(os.path.dirname(forme_out), 'formes_formes.csv') + formes_uces = os.path.join(os.path.dirname(forme_out), 'formes_uces.csv') + with codecs.open(formes_uces, 'r', self.parametre['syscoding']) as f: + uces = f.read() + uces = [list(chunks(line.split(),4)) for line in uces.splitlines()] + with codecs.open(formes_out2, 'r', self.parametre['syscoding']) as f : + self.formes = f.read() + self.formes = [[line.split(';'), dict([[(int(uce[0]),int(uce[1]), int(uce[2])), int(uce[3])] for uce in uces[i]])] for i, line in enumerate(self.formes.splitlines())] + self.formes = dict([[line[0][0], [int(line[0][1]), line[1], line[0][2], int(line[0][3])]] for line in self.formes]) + + def read_corpus_from_shelves(self, db) : + d = shelve.open(db) + self.parametre = d['parametre'] + if not 'syscoding' in self.parametre : + self.parametre['syscoding'] = sys.getdefaultencoding() + self.lems = d['lems'] + if 'ucis_paras_uces' in d : + self.ucis_paras_uces = d['ucis_paras_uces'] + else : + corpus_out = os.path.join(os.path.dirname(db), 'corpus.txt') + self.read_corpus_out(corpus_out) + if 'formes' in d : + self.formes = d['formes'] + else : + formes_out = os.path.join(os.path.dirname(db), 'formes.txt') + self.read_formes_out(formes_out) +# print 'deb sql' +# import sqlite3 +# db_out = os.path.join(os.path.dirname(db), 'formes.db') +# conn = sqlite3.connect(db_out) +# c = conn.cursor() +# c.execute('''SELECT * FROM formes''') +# self.formes = dict([[forme[0], [int(forme[1]), dict([[eval(uce.split(':')[0]), int(uce.split(':')[1])] for uce in forme[2].split(';')]), forme[3], int(forme[4])]] for forme in c]) +# print 'fin sql' + self.etoiles = d['etoiles'] + self.actives = d['actives'] + self.ucis = d['ucis'] + self.lc = d['lc'] + self.lc0 = d['lc0'] + d.close() + + + def save_corpus(self, db) : + d= shelve.open(db) + d['parametre'] = self.parametre + #d['formes'] = self.formes + d['lems'] = self.lems + #d['ucis_paras_uces'] = self.ucis_paras_uces + d['etoiles'] = self.etoiles + d['actives'] = self.actives + d['ucis'] = self.ucis + d['lc'] = self.lc + d['lc0'] = self.lc0 + d.close() + corpus_out = os.path.join(os.path.dirname(db), 'corpus.txt') + with open(corpus_out, 'w') as f : + f.write('\n\n'.join([u'$$$'.join(['\n'.join([' '.join(uce) for uce in para]) for para in uci]) for uci in self.ucis_paras_uces])) + #t1 = time() + formes_out2 = os.path.join(os.path.dirname(db), 'formes_formes.csv') + formes_uces = os.path.join(os.path.dirname(db), 'formes_uces.csv') + + with open(formes_out2, 'w') as f : + f.write('\n'.join([';'.join([forme, `self.formes[forme][0]`, self.formes[forme][2], `self.formes[forme][3]`]) for forme in self.formes])) + with open(formes_uces, 'w') as f: + f.write('\n'.join([' '.join([' '.join([`uce[0]`,`uce[1]`, `uce[2]`, `self.formes[forme][1][uce]`]) for uce in self.formes[forme][1]]) for forme in self.formes])) + #print time() - t1 + #t1 = time() + #toprint = json.dumps(self.formes) + #with open(os.path.join(os.path.dirname(db), 'json.db'), 'w') as f: + # f.write(toprint) + #print time() - t2 + +# import sqlite3 +# db_out = os.path.join(os.path.dirname(db), 'formes.db') +# conn = sqlite3.connect(db_out) +# c = conn.cursor() +# conn.text_factory = str +# c = conn.cursor() +# c.execute('''CREATE TABLE formes (formes TEXT, freq integer, uces TEXT, type TEXT, identifiant integer)''') +# c = conn.cursor() +# for formes in self.formes : +# c.execute('INSERT INTO formes values (?,?,?,?,?)', (formes, self.formes[formes][0], ';'.join([':'.join([str(uce), str(self.formes[formes][1][uce])]) for uce in self.formes[formes][1]]), self.formes[formes][2], self.formes[forme][3])) +# conn.commit() +# print 'fin sql' + + def make_len_uce(self, nbtotoc): + if self.parametre['nbforme_uce'] == None or self.parametre['nbforme_uce'] == 0 : + #FIXME + if len(self.ucis) == 1: + self.parametre['eff_min_uce'] = 30 + elif 200000 <= nbtotoc < 400000: + self.parametre['eff_min_uce'] = (0.0016 * float(nbtotoc) / float(len(self.ucis))) + 20 + elif nbtotoc < 200000: + self.parametre['eff_min_uce'] = (0.0016 * float(nbtotoc) / float(len(self.ucis))) + 30 + else: + self.parametre['eff_min_uce'] = (float(nbtotoc) / float(len(self.ucis))) / float(15) + else : + self.parametre['eff_min_uce'] = self.parametre['nbforme_uce'] + # print 'ATTENTION ASSIGNATION DE LA TAILLE DES UCE' + # self.lenuce = 44 + + + def quick_clean1(self) : + print 'quick clean' + self.content = self.content.lower() + keep_caract = u"a-zA-Z0-9àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇß’ñ.:,;!?\n*'_-" + list_keep = u"[^" + keep_caract + "]+" +# print 'NETTOYAGE CABLE PLUS SUB' + #print ('#########ATTENTION CHINOIS plus keep_caract#################') + #list_keep = u"[;]+" + self.content = re.sub(list_keep, ' ', self.content) + #self.content = re.sub(list_keep, ' ', self.content) + + #self.content = self.content.replace(u'[’]+', '\'') + self.content = re.sub(u'[’]+', '\'', self.content) + self.content = re.sub(u'[\r\n]+', '\n', self.content) + self.content = self.content.replace(u'-*',u'#*') + + def find_expression(self,expressions) : + print 'find expression' + for expression in expressions: + if expression in self.content : + print expression, expressions[expression][0] + #self.content = self.content.replace(' '+expression+' ', ' '+expressions[expression][0]+' ') + self.content = self.content.replace(expression, expressions[expression][0]) + + def quick_clean2(self): + print 'quick clean 2' + self.content = self.content.replace('\'',' ') + self.content = re.sub(u'[-]+', ' ', self.content) + self.content = re.sub(u'[ ]+', ' ', self.content) + self.content = self.content.splitlines() + + def make_ucis(self) : + print 'make_ucis' + self.ucis = [[self.content[i].strip().split(),i] for i in range(0,len(self.content)) if self.content[i].startswith(u'****')] + return [a[1] for a in self.ucis] + + def find_uci_with_digit(self, line) : + if line[0:4].isdigit() and u'*' in line : + return True + else : + return False + + def make_ucis_with_digit(self) : + self.ucis = [[self.content[i].replace('\n',' ').strip().split(),i] for i in range(0,len(self.content)) if self.find_uci_with_digit(self.content[i])] + return [a[1] for a in self.ucis] + + def make_lines(self, ucinb) : + print 'make_lines' + return [[ucinb[i]+1,ucinb[i+1]] for i in range(0,len(ucinb)-1)] + [[ucinb[len(ucinb)-1] + 1,len(self.content)]] + + def make_ucis_words(self, lines): + print 'make ucis_words' + return [' '.join(self.content[l[0]:l[1]]).lower().replace(u'\'','\' ').replace(u'’','\' ').replace('...',u' £ ').replace('?',' ? ').replace('.',' . ').replace('!', ' ! ').replace(',',' , ').replace(';', ' ; ').replace(':',' : ').strip().split() for l in lines] + + def make_ucis_txt(self, lines): + print 'make ucis_txt' + return [' '.join(self.content[l[0]:l[1]]).lower().replace(u'\'','\' ').replace(u'’','\' ').replace('...',u' £ ').replace('?',' ? ').replace('.',' . ').replace('!', ' ! ').replace(',',' , ').replace(';', ' ; ').replace(':', ' : ').strip() for l in lines] + + def make_ucis_lines(self, lines) : + print 'make ucis lines' + return [self.content[l[0]:l[1]] for l in lines] + + def make_para_coords(self, ucis_lines): + print 'make para coords' + return [[[uci[i].split()[0], i] for i in range(0,len(uci)) if uci[i].startswith(u'#*')] for uci in ucis_lines] + + def make_ucis_paras_txt(self, para_coords, ucis_lines, ucis_txt) : + print 'make_ucis_paras_txt' + if para_coords != [[] for val in para_coords] : + paranb = [[para[1] for para in uci] for uci in para_coords] + paras = [] + #print 'len paranb', len(paranb) + #print len(self.ucis) + for i, uci in enumerate(paranb) : + uciline = ucis_lines[i] + #print uci + #print i + #print uciline + #print uci[i] + para = [[uci[i]+1, uci[i+1]] for i in range(0,len(uci)-1)] + para.append([uci[len(uci)-1]+1, len(uciline) ]) + paras.append(para) + self.parametre['para'] = True + return [[' '.join(ucis_lines[nb][l[0]:l[1]]).lower().replace(u'\'','\' ').replace(u'’','\' ').replace('...',u' £ ').replace('?',' ? ').replace('.',' . ').replace('!', ' ! ').replace(',',' , ').replace(';', ' ; ').replace(':',' : ').strip() for l in paras[nb]] for nb in range(0,len(paras))] + else : + print '############pas de para####################' + self.parametre['para'] = False + return [[val] for val in ucis_txt] + + def make_ucis_paras_txt_phrases(self, para_coords, ucis_lines, ucis_txt) : + print 'make_ucis_paras_txt' + if para_coords != [[] for val in para_coords] : + paranb = [[para[1] for para in uci] for uci in para_coords] + paras = [] + for i, uci in enumerate(paranb) : + uciline = ucis_lines[i] + para = [[uci[i]+1, uci[i+1]] for i in range(0,len(uci)-1)] + para.append([uci[len(uci)-1]+1, len(uciline) ]) + paras.append(para) + self.parametre['para'] = True + return [[' '.join(ucis_lines[nb][l[0]:l[1]]).lower().replace(u'\'','\' ').replace(u'’','\' ').strip() for l in paras[nb]] for nb in range(0,len(paras))] + else : + print '############pas de para####################' + self.parametre['para'] = False + return [[val] for val in ucis_txt] + + def make_ucis_paras_uces_sentences(self, ucis_paras_txt, make_uce = True) : + print 'make_ucis_paras_sentences' + ponctuation_espace = [' ','.', u'£', ';', '?', '!', ',', ':',''] + tokenizer = nltk.tokenize.punkt.PunktSentenceTokenizer() + self.ucis_paras_uces = [] + for i, uci in enumerate(ucis_paras_txt) : + self.ucis_paras_uces.append([]) + for j, para in enumerate(uci) : + sentences = tokenizer.tokenize(para) + sentences = [[val.strip() for val in sent.strip().replace('...',u'£').replace('?',' ? ').replace('.',' . ').replace('!', ' ! ').replace(',',' , ').replace(';', ' ; ').replace(':',' : ').split() if val.strip() not in ponctuation_espace] for sent in sentences] + self.ucis_paras_uces[i].append(sentences) + + def get_tot_occ_from_ucis_txt(self, ucis_txt): + print 'get_occ' + ponctuation_espace = [' ','.', u'£', ';', '?', '!', ',', ':',''] + return sum([len([val for val in uci.split() if val.strip() not in ponctuation_espace]) for uci in ucis_txt]) + + def decouper_para(self, txt, listeSeparateurs, ls) : + i = 0 + meilleur = ['', 0, 0] + if len(txt) <= self.parametre['eff_min_uce'] : + return False, txt, [] + else : + while i <= self.parametre['eff_min_uce'] : + rapport = abs(self.parametre['eff_min_uce'] - i) + 1 + forme = txt[i] + if forme in ls and i != 0 : + poids = float(listeSeparateurs[ls.index(forme)][1]) / float(rapport) + elif i!=0 : + poids = 0.1/float(rapport) + else : + poids = 0 + if poids >= meilleur[1] : + meilleur[0] = forme + meilleur[1] = poids + meilleur[2] = i + i += 1 + if meilleur[0] in ls : + return True, txt[:meilleur[2]],txt[meilleur[2] + 1:] + else : + return True, txt[:meilleur[2]],txt[meilleur[2]:] + + def make_ucis_paras_uces(self, ucis_paras_txt, make_uce = True) : + print 'make_ucis_paras_uces' + ponctuation_espace = [' ','.', u'£', ';', '?', '!', ',', ':',''] + listeSeparateurs = [[u'.', 60.0], [u'?', 60.0], [u'!', 60.0], [u'£', 60], [u':', 50.0], [u';', 40.0], [u',', 10.0], [u' ', 0.1]] + if make_uce : + print 'decoupage uce' + taille_uce = self.parametre['eff_min_uce'] +# print 'plus de recomptage UCE' + self.ucis_paras_uces = [] + for i, uci in enumerate(ucis_paras_txt) : + self.ucis_paras_uces.append([]) + for j, para in enumerate(uci) : + #print '###########ATTENTION CHINOIS para to list################' + #para = ' '.join(list(para)) + self.ucis_paras_uces[i].append([]) + reste, texte_uce, suite = decouper(para+u'$', 250, 240, listeSeparateurs) + while reste : + uce = [val.strip() for val in texte_uce.strip().split() if val.strip() not in ponctuation_espace] + self.ucis_paras_uces[i][j].append(uce) + reste, texte_uce, suite = decouper(suite, 250, 240, listeSeparateurs) + newpara = [] + nuce = [] + for uce in self.ucis_paras_uces[i][j] : + nuce += uce + if len(nuce)>=taille_uce: + newpara.append(nuce) + nuce = [] + if nuce != [] : + #FIXME ??? + if len(nuce) >= 5 : + newpara.append(nuce) + else : + if newpara != [] : + newpara[-1] += nuce + else : + newpara.append(nuce) + self.ucis_paras_uces[i][j] = newpara + else : + self.ucis_paras_uces = [[[[val.strip() for val in para.strip().split() if val not in ponctuation_espace]] for para in uci] for uci in ucis_paras_txt] + +# def feed_dict(self, val, i, j, k, id) : +# if val in self.formes : +# self.formes[val][0] +=1 +# self.formes[val][1].append([i,j,k]) +# else : +# if val in self.parent.lexique : +# type_forme = self.parent.lexique[val][1] +# else : +# if val.isdigit(): +# type_forme = 'num' +# else : +# type_forme = 'nr' +# self.formes[val] = [1, [[i,j,k]], type_forme, id] + def feed_dict_big(self, val, ucinb) : + if val in self.formes : + self.formes[val][0] +=1 + if ucinb in self.formes[val][1] : + self.formes[val][1][ucinb] += 1 + else : + self.formes[val][1][ucinb] = 1 + #self.formes[val][1].append([i,j,k]) + else : + if val in self.parent.lexique : + type_forme = self.parent.lexique[val][1] + else : + if val.isdigit(): + type_forme = 'num' + else : + type_forme = 'nr' + self.formes[val] = [1, {ucinb: 1}, type_forme] + + def feed_dict(self, val, i, j, k, id) : + if val in self.formes : + self.formes[val][0] +=1 + if (i,j,k) in self.formes[val][1] : + self.formes[val][1][(i,j,k)] += 1 + else : + self.formes[val][1][(i,j,k)] = 1 + #self.formes[val][1].append([i,j,k]) + else : + if val in self.parent.lexique : + type_forme = self.parent.lexique[val][1] + else : + if val.isdigit(): + type_forme = 'num' + else : + type_forme = 'nr' + self.formes[val] = [1, {(i,j,k): 1}, type_forme, id] + + def check_uce_et(self) : + return [[forme, self.formes[forme][1]] for forme in self.formes if forme.startswith('_') and forme.endswith('_')] + + def make_forms_and_uces(self) : + print 'make forms and uces' + uces = {} + orderuces = {} + compt = 0 + for i, uci in enumerate(self.ucis_paras_uces) : + for j, para in enumerate(uci) : + for k, uce in enumerate(para) : + ijk = (i,j,k)#'.'.join([`i`,`j`,`k`]) + orderuces[ijk] = compt + compt += 1 + if uce != [] : + for word in uce : + id = len(self.formes) + self.feed_dict(word, i, j, k, id) + #FIXME pas la bonne facon de compter la taille des uces + #passer par self.formes et self.lems + if ijk in uces and self.formes[word][2] in self.typeactive : + uces[ijk] += 1 + elif ijk not in uces and self.formes[word][2] in self.typeactive : + uces[ijk] = 1 + elif ijk not in uces : + uces[ijk] = 0 + else : + uces[ijk] = 0 + self.etintxt = self.check_uce_et() + for forme in self.etintxt : + del(self.formes[forme[0]]) + return uces, orderuces + + def min_eff_formes(self) : + if not self.parametre['lem'] : + lformes = [self.formes[forme][0] for forme in self.formes if self.formes[forme][2] in self.typeactive] + if len(lformes) <= self.parametre['max_actives'] : + self.parametre['eff_min_forme'] = 3 + else : + lformes.sort(reverse = True) + self.parametre['eff_min_forme'] = lformes[self.parametre['max_actives']] + print self.parametre['eff_min_forme'] + else : + lems = self.make_lem_eff() + llems = [lems[lem][0] for lem in lems if lems[lem][2] in self.typeactive] + if len(llems) <= self.parametre['max_actives'] : + self.parametre['eff_min_forme'] = 3 + else : + llems.sort(reverse = True) + self.parametre['eff_min_forme'] = llems[self.parametre['max_actives']] + print self.parametre['eff_min_forme'] + + def make_lems(self, lexique) : + if self.parametre['lem'] : + print 'lemmatsation' + for word in self.formes : + if word in lexique : + if lexique[word][0] in self.lems : + self.lems[lexique[word][0]].append(word) + else : + self.lems[lexique[word][0]] = [word] + else : + if word in self.lems : + self.lems[word].append(word) + else : + self.lems[word] = [word] + else : + print 'pas de lemmatisation : lems = formes' + for word in self.formes : + self.lems[word] = [word] + + def make_lem_eff(self) : + print 'make lem eff' + lems = {} + for lem in self.lems : + lems[lem] = [sum([self.formes[word][0] for word in self.lems[lem]]), self.lems[lem], self.formes[self.lems[lem][0]][2]] + return lems + + def make_lexique(self) : + print 'make lexique' + self.lexique = {} + for lem in self.lems : + for forme in self.lems[lem] : + self.lexique[forme] = lem + +# def return_lem(self, word) : +# if word in self.lexique : +# return self.lexique[word] +# else : +# return word + + def make_ucis_paras_uces_lems(self): + print 'make_ucis_paras_uces_lems' + if self.lexique is None : + self.make_lexique() + return [[[[self.lexique.get(word, word) for word in uce] for uce in para] for para in uci] for uci in self.ucis_paras_uces] + + def make_var_actives(self) : + print 'creation liste act' + self.actives = [word for word in self.lems if self.formes[self.lems[word][0]][2] in self.typeactive and sum([self.formes[mot][0] for mot in self.lems[word]]) > self.parametre['eff_min_forme']] + + def make_var_supp(self) : + print 'creation var supp' + self.supp = [word for word in self.lems if self.formes[self.lems[word][0]][2] in self.supplementaires and sum([self.formes[mot][0] for mot in self.lems[word]]) > self.parametre['eff_min_forme']] + + def make_and_write_sparse_matrix_from_uci(self, fileout) : + print 'make_and_write_sparse_martrix_from_uci' + with open(fileout+'~', 'w') as f : + for i, lem in enumerate(self.actives) : + ucis = list(set([uce[0] for form in self.lems[lem] for uce in self.formes[form][1]])) + ucis.sort() + for uci in ucis : + f.write(''.join([' '.join([`uci+1`,`i+1`,`1`]),'\n'])) + with open(fileout+'~', 'r') as f : + old = f.read() + f.seek(0) + for i, line in enumerate(f) : + pass + nrow = i + 1 + with open(fileout, 'w') as f : + txt = "%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % ( len(self.ucis), len(self.actives), nrow) + f.write(txt + old) + os.remove(fileout+'~') + + + def make_pondtable_with_uci(self, lformes, fileout) : + table_uci = [[0 for val in lformes] for line in range(0,len(self.ucis))] + for i, lem in enumerate(lformes) : + for form in self.lems[lem] : + ucit = [val for val in self.formes[form][1]] + for uci in ucit : + table_uci[uci[0]][i] += self.formes[form][1][uci] + table_uci = [[str(val) for val in line] for line in table_uci] + table_uci.insert(0,lformes) + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join(line) for line in table_uci])) + del table_uci + + def make_tableet_with_uci(self, fileout) : + et = self.get_unique_etoiles() + table_out = [[0 for val in et] for line in range(0,len(self.ucis))] + for i, uci in enumerate(self.etoiles) : + for valet in uci[0][0] : + table_out[i][et.index(valet)] = 1 + table_out = [[str(val) for val in line] for line in table_out] + table_out.insert(0,et) + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join(line) for line in table_out])) + del table_out + + def make_table_with_uce(self, orderuces) : + print 'make_table_with_uce' + #print self.ucenb + table_uce = [[0 for val in self.actives] for line in range(0, len(orderuces))] + for i, lem in enumerate(self.actives) : + for form in self.lems[lem] : + for uce in self.formes[form][1] : + #ijk = '.'.join([str(val) for val in uce]) + table_uce[orderuces[uce]][i] = 1 + return table_uce + +# def make_sparse_matrix_with_uce(self, orderuces) : +# print 'make_sparse_matrix_with_uce' +# smat = [] +# for i, lem in enumerate(self.actives) : +# for form in self.lems[lem] : +# for uce in self.formes[form][1] : +# #ijk = '.'.join([str(val) for val in uce]) +# smat.append((`orderuces[uce]+1`,`i+1`,`1`)) +# smat = list(set(smat)) +# smat.sort() +# return smat +# +# def write_sparse_matrix(self, fileout, smat, nrow, ncol) : +# print 'write_sparse_matrix' +# txt = "%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % ( nrow, ncol, len(smat)) +# with open(fileout, 'w') as f : +# f.write(txt+'\n'.join([' '.join(line) for line in smat])) + + def make_and_write_sparse_matrix_from_uce(self, orderuces, fileout) : + print 'make_and_write_sparse_martrix_from_uce' + with open(fileout+'~', 'w') as f : + for i, lem in enumerate(self.actives) : + uces = list(set([uce for form in self.lems[lem] for uce in self.formes[form][1]])) + for uce in uces : + f.write(''.join([' '.join([`orderuces[uce]+1`,`i+1`,`1`]),'\n'])) + + with open(fileout+'~', 'r') as f : + old = f.read() + f.seek(0) + for i, line in enumerate(f) : + pass + nrow = i + 1 + with open(fileout, 'w') as f : + txt = "%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % ( len(orderuces), len(self.actives), nrow) + f.write(txt + old) + os.remove(fileout+'~') + + def make_and_write_sparse_matrix_from_uce_list(self, listin, fileout) : + print 'make_and_write_sparse_martrix_from_uce' + orderuces = [(i,j,k) for i, uci in enumerate(self.ucis_paras_uces) for j, para in enumerate(uci) for k, uce in enumerate(para)] + orderuces = dict([[uce,i] for i, uce in enumerate(orderuces)]) + with open(fileout+'~', 'w') as f : + for i, forme in enumerate(listin) : + uces = [uce for uce in self.formes[forme][1]] + for uce in uces : + f.write(''.join([' '.join([`orderuces[uce]+1`,`i+1`,`1`]),'\n'])) + + with open(fileout+'~', 'r') as f : + old = f.read() + f.seek(0) + for i, line in enumerate(f) : + pass + nrow = i + 1 + with open(fileout, 'w') as f : + txt = "%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % ( len(orderuces), len(listin), nrow) + f.write(txt + old) + os.remove(fileout+'~') + + + def make_table_with_classe(self, uces, list_act) : + table_uce = [[0 for val in list_act] for line in range(0,len(uces))] + uces = dict([[uce, i] for i, uce in enumerate(uces)]) + for i, lem in enumerate(list_act) : + for form in self.lems[lem] : + for uce in self.formes[form][1] : + if uce in uces : + table_uce[uces[uce]][i] = 1 + table_uce.insert(0, list_act) + return table_uce + + def make_and_write_sparse_matrix_from_classe(self, uces, list_act, fileout) : + print 'make_and_write_sparse_martrix_from_classe' + duces = dict([[uce, i] for i, uce in enumerate(uces)]) + with open(fileout+'~', 'w') as f : + for i, lem in enumerate(list_act) : + uces_ok = list(set([uce for form in self.lems[lem] for uce in self.formes[form][1]]).intersection(uces)) + for uce in uces_ok : + f.write(''.join([' '.join([`duces[uce]+1`,`i+1`,`1`]),'\n'])) + + with open(fileout+'~', 'r') as f : + old = f.read() + f.seek(0) + for i, line in enumerate(f) : + pass + nrow = i + 1 + with open(fileout, 'w') as f : + txt = "%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % ( len(uces), len(list_act), nrow) + f.write(txt + old) + os.remove(fileout+'~') + + def make_uc(self, uces, orderuce, min_word_by_uc): + print 'start make uc' + ucenb= [uces[val] for val in orderuce] + uc = [] + uces_uc = {} + for i, uci in enumerate(self.ucis_paras_uces) : + for j, para in enumerate(uci) : + uc.append(0) + for k, uce in enumerate(para) : + uce_id = (i,j,k) + if uc[-1] >= min_word_by_uc : + uc.append(uces[uce_id]) + else : + uc[-1] += uces[uce_id] + uces_uc[uce_id] = len(uc)-1 + lenuc = len(uc) + del uc + return lenuc, uces_uc + + def make_and_write_sparse_matrix_from_uc(self, uces_uc, fileout) : + print 'make_and_write_sparse_martrix_from_uc' + deja_la = {} + with open(fileout+'~', 'w') as f : + for i, lem in enumerate(self.actives) : + uces = list(set([uce for form in self.lems[lem] for uce in self.formes[form][1]])) + for uce in uces : + if (uces_uc[uce],i) not in deja_la : + f.write(''.join([' '.join([`uces_uc[uce]+1`,`i+1`,`1`]),'\n'])) + deja_la[(uces_uc[uce],i)]='' + del(deja_la) + with open(fileout+'~', 'r') as f : + old = f.read() + f.seek(0) + for i, line in enumerate(f) : + pass + nrow = i + 1 + with open(fileout, 'w') as f : + txt = "%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % (max(uces_uc.values()) + 1, len(self.actives), nrow) + f.write(txt + old) + os.remove(fileout+'~') + + +# def make_tab_uc(self, uces_uc, uc) : +# print 'make_tab_uc' +# tabuc = [[0 for val in self.actives] for line in uc] +# for i, word in enumerate(self.actives) : +# for forme in self.lems[word] : +# valforme = self.formes[forme] +# for j, uce in enumerate(valforme[1]): +# #uce = '.'.join([str(val) for val in uci]) +# ligne = uces_uc[uce] +# tabuc[ligne][i] = 1 +# return tabuc + + def write_tab(self, tab, fileout) : + print 'commence ecrire' + #print len(tab) + #print len(tab[0]) + writer = csv.writer(open(fileout, 'wb'), delimiter=';', quoting = csv.QUOTE_NONNUMERIC) + writer.writerows(tab) + + def make_concord(self, words, txt, color) : + txt = ' '+ txt +' ' + for word in words : + for forme in self.lems[word] : + txt = txt.replace(' '+forme+' ', ' ' % color +forme+' ') + return txt.strip() + + def make_colored_corpus(self) : + #colors = ['black', 'red', 'blue', 'green', 'orange', 'yellow', 'brown', 'pink', 'grey'] + ucecl = {} + for i, lc in enumerate(self.lc) : + for uce in lc : + ucecl[uce] = i + 1 + for uce in self.lc0 : + ucecl[uce] = 0 + color = ['black'] + colors[len(self.lc) - 1] + txt = ''' + + +''' % sys.getdefaultencoding() + res = [[' '.join(self.ucis[i][0]), '


    '.join(['' % color[ucecl[(i,j, k)]] + ' '.join(uce) + '' for j, paras in enumerate(uci) for k, uce in enumerate(paras) ])] for i, uci in enumerate(self.ucis_paras_uces)] + txt += '
    '.join(['
    '.join(uci) for uci in res]) + txt += '' + return txt + #with open(filename,'w') as f : + # f.write(txt) + + def export_corpus_classes(self, filename, alc = False, lem = False) : + if lem : + ucis_paras_uces = self.make_ucis_paras_uces_lems() + else : + ucis_paras_uces = self.ucis_paras_uces + ucecl = {} + for i, lc in enumerate(self.lc) : + for uce in lc : + ucecl[uce] = i + 1 + for uce in self.lc0 : + ucecl[uce] = 0 + ucecltri = ucecl.keys() + #ucecltri = [[int(val) for val in uce] for uce in ucecltri] + ucecltri.sort() + if alc : + #for i, uce in enumerate(ucecltri) : + # print i, uce + # print self.etoiles[uce[0]][uce[1]][uce[2]] + # print ' '.join(ucis_paras_uces[uce[0]][uce[1]][uce[2]]) + res = [[u'**** *classe_%i ' % ucecl[uce] + ' '.join(self.etoiles[uce[0]][uce[1]][uce[2]]), ' '.join(ucis_paras_uces[uce[0]][uce[1]][uce[2]])] for uce in ucecltri] + else : + vd = [self.etoiles[uce[0]][uce[1]][uce[2]] for uce in ucecltri] + vd = [['<' + '='.join(et.split('_')) + '>' for et in l] for l in vd] + res = [['' % ucecl[uce], ' '.join(ucis_paras_uces[uce[0]][uce[1]][uce[2]])] for uce in ucecltri] + res = [[' '.join([res[i][0],' '.join(vd[i])]), res[i][1]] for i, d in enumerate(res)] + with open(filename,'w') as f : + f.write('\n'.join(['\n'.join(uce) for uce in res])) + + def get_concord(self, duce, word, uces, color): + print 'get concord' + lformes = self.lems[word] + for forme_ori in lformes : + forme = self.formes[forme_ori] + for ucenb in forme[1] : + ijk = ucenb + if ijk in uces : + ucinb, paranb, ucenb = ucenb + if ijk in duce : + nuce = ' ' + duce[ijk] + ' ' + nuce = nuce.replace(' '+forme_ori+' ', ' ' % color +forme_ori+' ') + duce[ijk] = nuce.strip() + else : + nuce = ' ' + ' '.join(self.ucis_paras_uces[ucinb][paranb][ucenb]) + ' ' + nuce = nuce.replace(' '+forme_ori+' ', ' ' % color +forme_ori+' ') + duce[ijk] = nuce.strip() + return duce + + def count_from_list(self, l, d) : + for val in l : + if val in d : + d[val] += 1 + else : + d[val] = 1 + return d + + def count_from_list_cl(self, l, d, a, clnb) : + for val in l : + if val in d : + d[val][a] += 1 + else : + d[val] = [0] * clnb + d[val][a] = 1 + return d + + def find_segments(self, taille_segment, taille_limite) : + print 'find_segments' + d = {} + for para in self.ucis_paras_uces : + for uces in para : + for uce in uces : + d = self.count_from_list([' '.join(uce[i:i+taille_segment]) for i in range(len(uce)-(taille_segment - 1))], d) + l = [[d[val], val] for val in d if d[val] >= 3] + del(d) + l.sort() + if len(l) > taille_limite : + l = l[-taille_limite:] + return l + + def find_segments_doublon(self, taille_segment, taille_limite) : + print 'find_segments' + d = {} + for para in self.ucis_paras_uces : + for uces in para : + for uce in uces : + d = self.count_from_list([' '.join(uce[i:i+taille_segment]) for i in range(len(uce)-(taille_segment - 1))], d) + l = [[d[val], val] for val in d if d[val] > 1] + del(d) + l.sort() + if len(l) > taille_limite : + l = l[-taille_limite:] + return l + + def find_segments_in_classe(self, list_uce, taille_segment, taille_limite): + d={} + ucel = [self.ucis_paras_uces[uce[0]][uce[1]][uce[2]] for uce in list_uce] + for uce in ucel : + d =self.count_from_list([' '.join(uce[i:i+taille_segment]) for i in range(len(uce)-(taille_segment - 1))], d) + l = [[d[val], val, taille_segment] for val in d if d[val] >= 3] + del(d) + l.sort() + if len(l) > taille_limite : + l = l[-taille_limite:] + return l + + def make_segments_profile(self, fileout, lenmin = 3, lenmax = 10, effmin = 50, lem = False) : + if lem : + ucis_paras_uces = self.make_ucis_paras_uces_lems() + else : + ucis_paras_uces = self.ucis_paras_uces + d={} + cl_uces = [[ucis_paras_uces[uce[0]][uce[1]][uce[2]] for uce in list_uce] for list_uce in self.lc] + for b, classe in enumerate(cl_uces) : + for uce in classe : + for taille_segment in range(lenmin,lenmax) : + d =self.count_from_list_cl([' '.join(uce[i:i+taille_segment]) for i in range(len(uce)-(taille_segment - 1))], d, b, len(self.lc)) + result = [[seg] + [str(val) for val in d[seg]] for seg in d if sum(d[seg]) >= effmin] + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join(line) for line in result])) + + def read_uce_from_R(self, filein) : + with open(filein, 'rU') as f : + c = f.readlines() + c.pop(0) + ucecl = [] + for line in c : + line = line.replace('\n', '').replace('"', '').split(';') + ucecl.append([int(line[0]) - 1, int(line[1])]) + return ucecl + + def make_lc(self, uces, classes, clnb) : + self.lc = [[] for classe in range(0,clnb)] + for i in range(0,clnb): + self.lc[i] = [uce for j, uce in enumerate(uces) if i+1 == classes[j]] + self.lc0 = [uce for j, uce in enumerate(uces) if 0 == classes[j]] + + def build_profile(self, clnb, classes, lformes, fileout) : + print 'build_profile' + tabout = [[[] for val in range(0,clnb)] for line in lformes] + for j, forme in enumerate(lformes) : + for word in self.lems[forme] : + for i in range(0,clnb) : + tabout[j][i] += list(set([uce for uce in self.formes[word][1]]).intersection(set(self.lc[i]))) + tabout = [[len(set(val)) for val in line] for line in tabout] + tabout = [[lformes[i]] + [str(val) for val in tabout[i]] for i, line in enumerate(tabout) if sum(line) > 3] + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join(line) for line in tabout])) + del tabout + + def make_etoiles(self, para_coords) : + if self.parametre['para'] : + self.etoiles = [[[uci[0][1:]+[para_coords[j][i][0]] for uce in self.ucis_paras_uces[j][i]] for i, para in enumerate(para_coords[j])] for j, uci in enumerate(self.ucis)] + else : + self.etoiles = [[[uci[0][1:] for uce in self.ucis_paras_uces[j][i]] for i, para in enumerate(self.ucis_paras_uces[j])] for j, uci in enumerate(self.ucis)] + print '#####_etoile_######' + for forme in self.etintxt : + ucel = [tuple(val) for val in forme[1]] + for uce in set(ucel) : + self.etoiles[uce[0]][uce[1]][uce[2]].append(forme[0]) + + def build_profile_et(self, clnb, classes, uces, fileout) : + print 'build_profile_et' + unique_et = list(set([uce[i] for uci in self.etoiles for para in uci for uce in para for i in range(0,len(uce))])) + tabout = [[0 for val in range(0,clnb)] for line in unique_et] + for i, et in enumerate(unique_et) : + for j in range(0,clnb) : + for uce in self.lc[j] : + #coord = uce.split('.') + coord = uce + #coord = [int(val) for val in coord] + if et in self.etoiles[coord[0]][coord[1]][coord[2]] : + tabout[i][j] += 1 + tabout = [[unique_et[i]] + [str(val) for val in tabout[i]] for i,line in enumerate(tabout) if sum(line) >= 1] + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join(line) for line in tabout])) + del tabout + + def make_lem_type_list(self) : + self.lem_type_list = [[word, self.formes[self.lems[word][0]][2]] for word in self.lems] + + def extractnr(self) : + with open('/home/pierre/fac/identite/nr.csv', 'w') as f : + f.write('\n'.join([';'.join(line) for line in self.lem_type_list if line[1] == 'nr'])) + + def get_actives_nb(self) : + return len([lem for lem in self.lems if self.formes[self.lems[lem][0]][2] not in self.supplementaires]) + + def get_supp_nb(self) : + return len([lem for lem in self.lems if self.formes[self.lems[lem][0]][2] in self.supplementaires]) + + def get_tot_occurrences(self) : + return sum([self.formes[forme][0] for forme in self.formes]) + + def get_unique_etoiles(self): + return list(set([uce[i] for uci in self.etoiles for para in uci for uce in para for i in range(0,len(uce))])) + + def get_hapax(self) : + return [forme for forme in self.formes if self.formes[forme][0] == 1] + +# def get_hapax_by_cluster(self): +# print 'get_hapax_by_cluster' +# hapax = self.get_hapax() +# res = dict([[i+1, 0] for i in range(len(self.lc))]) +# sets = [dict(zip(cl,cl)) for cl in self.lc] +# #classement = [self.lc0] + self.lc +# #print classement +# for hx in hapax : +# uce = self.formes[hx][1].keys()[0] +# for i, cl in enumerate(self.lc) : +# if '.'.join([str(val) for val in uce]) in sets[i] : +# res[i+1] += 1 +# toprint = '\n'.join([';'.join([`i`, `res[i]`]) for i in res]) +# outf = os.path.join(os.path.dirname(self.dictpathout['ira']), 'hapax_par_classe.csv') +# with open(outf, 'w') as f : +# f.write(toprint) + + def get_stat_by_cluster(self, outf) : + print 'get_occurrence_by_cluster' + t1 = time() + #def douce(uce) : + # return tuple([int(val) for val in uce.split('.')]) + res = dict([[i+1, 0] for i in range(len(self.lc))]) + res2 = dict([[i+1, 0] for i in range(len(self.lc))]) + res3 = dict([[i+1, 0] for i in range(len(self.lc))]) + res4 = dict([[i+1,len(cl)] for i, cl in enumerate(self.lc)]) + sets = [set(cl) for cl in self.lc] + dicts = [dict(zip(cl,cl)) for cl in self.lc] + for forme in self.formes : + for i, cl in enumerate(self.lc) : + concern = sets[i].intersection(self.formes[forme][1].keys()) + for uce in concern : + res[i+1] += self.formes[forme][1][uce] + if len(concern) != 0 : + res2[i+1] += 1 + hapax = self.get_hapax() + for hx in hapax : + uce = self.formes[hx][1].keys()[0] + for i, cl in enumerate(self.lc) : + if uce in dicts[i] : + res3[i+1] += 1 + toprint = '\n'.join([';'.join([`i`, `res[i]`, `res2[i]`, `res3[i]`, `res4[i]`, `float(res3[i])/float(res2[i])`]) for i in res]) + toprint = '\n'.join([';'.join([u'classe', u'occurrences', 'nb formes', u'hapax', u'uce', 'hapax/nb formes']), toprint]) + #outf = os.path.join(os.path.dirname(self.dictpathout['ira']), 'stat_par_classe.csv') + with open(outf, 'w') as f : + f.write(toprint) + print time() - t1 +# def get_formenb_by_cluster(self) : +# print 'get_formenb_by_cluster' +# t1 = time() +# res = dict([[i+1, 0] for i in range(len(self.lc))]) +# sets = [set(cl) for cl in self.lc] +# for forme in self.formes : +# uces = ['.'.join([str(val) for val in uce]) for uce in self.formes[forme][1]] +# for i, cl in enumerate(sets) : +# if len(cl.intersection(uces)) != 0 : +# res[i+1] += 1 +# toprint = '\n'.join([';'.join([`i`, `res[i]`]) for i in res]) +# outf = os.path.join(os.path.dirname(self.dictpathout['ira']), 'nbformes_par_classe.csv') +# with open(outf, 'w') as f : +# f.write(toprint) + + def make_eff_from_etoiles(self, let, mineff) : + forme_ok = [forme for forme in self.lems if sum([self.formes[word][0] for word in self.lems[forme]]) > mineff] + forme_ok.sort() + #forme_ok = [forme for forme in self.formes if self.formes[forme][0] >= mineff] + tabout = [[0 for et in let] for forme in forme_ok] + for i, forme in enumerate(forme_ok) : + for word in self.lems[forme] : + for coord in self.formes[word][1] : + for j, et in enumerate(let) : + if et in self.etoiles[coord[0]][coord[1]][coord[2]]: + #tabout[i][j] += 1 + tabout[i][j] += self.formes[word][1][coord] + tabout = [[forme] + tabout[i] for i, forme in enumerate(forme_ok) if sum(tabout[i]) >= mineff] + tabout.insert(0, [''] + let) + return tabout + + def make_efftype_from_etoiles(self, let) : + dtypes = {} + for forme in self.formes : + if self.formes[forme][2] in dtypes : + dtypes[self.formes[forme][2]][0] += self.formes[forme][0] + #dtypes[self.formes[forme][2]][1] += self.formes[forme][1][:] + dtypes[self.formes[forme][2]][1] += [uce for uce in self.formes[forme][1]] + else : + #dtypes[self.formes[forme][2]] = [self.formes[forme][0], self.formes[forme][1][:]] + dtypes[self.formes[forme][2]] = [self.formes[forme][0], [uce for uce in self.formes[forme][1]]] + ltypes = [typ for typ in dtypes] + tabout = [[0 for et in let] for typ in dtypes] + for i, typ in enumerate(ltypes) : + for coord in dtypes[typ][1] : + for j, et in enumerate(let) : + if et in self.etoiles[coord[0]][coord[1]][coord[2]]: + tabout[i][j] += 1 + tabout = [[typ] + tabout[i] for i, typ in enumerate(ltypes)] + tabout.insert(0, [''] + let) + return tabout + + def make_etline(self, listet) : + orderuces = [(i,j,k) for i, uci in enumerate(self.ucis_paras_uces) for j, para in enumerate(uci) for k, uce in enumerate(para)] + orderuces = dict([[uce,i] for i, uce in enumerate(orderuces)]) + linenb = [] + for et in listet : + linenb.append([`orderuces[(i,j,k)] + 1` for i, uci in enumerate(self.ucis_paras_uces) for j,para in enumerate(uci) for k, uce in enumerate(para) if et in self.ucis[i][0]]) + linenb[-1].insert(0,et) + return linenb + + def write_etoiles(self, fileout) : + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join(self.ucis[i][0][1:]) for i,uci in enumerate(self.ucis) for para in self.ucis_paras_uces[i] for uce in para])) + + def start_analyse(self, parent, dlg = None, cmd = False, fromtt = False) : + if not cmd : + dlg.Update(1, u'Nettoyage 1') + if not fromtt : + self.quick_clean1() + if self.parametre['expressions'] and not fromtt: + if not cmd : + dlg.Update(2, u'Expressions...') + lang = self.parametre['lang'] + dico_path = parent.DictPath.get(lang + '_exp', 'french_exp') + expressions = ReadDicoAsDico(dico_path) + self.find_expression(expressions) + + if not cmd : + dlg.Update(3, u'Nettoyage 2') + if not fromtt : + self.quick_clean2() + if not cmd : + dlg.Update(4, u'Construction des tableaux') + if not fromtt : + ucisnb = self.make_ucis() + if not fromtt : + if self.ucis == [] : + ucisnb = self.make_ucis_with_digit() + lines = self.make_lines(ucisnb) + del ucisnb + #ucis_mots = make_ucis_words(lines) + if not fromtt : + ucis_txt = self.make_ucis_txt(lines) + #print 'ATTENTION : CHECK DOUBLON' + #self.check_double(ucis_txt) + ucis_lines = self.make_ucis_lines(lines) + self.para_coords = self.make_para_coords(ucis_lines) + ucis_paras_txt = self.make_ucis_paras_txt(self.para_coords, ucis_lines, ucis_txt) + del ucis_lines + else : + ucis_txt = get_ucis_from_tt(self) + print ucis_txt[0] + ucis_paras_txt = [[uci] for uci in ucis_txt] + self.para_coords = [[] for val in ucis_paras_txt] + #print('ATTENTION PHRASE') + #ucis_paras_txt = self.corpus.make_ucis_paras_txt_phrases(para_coords, ucis_lines, ucis_txt) + return ucis_txt, ucis_paras_txt + + def check_double(self, ucis_txt): + ducis = {} + uci_ok = [] + for i, uci in enumerate(ucis_txt) : + if uci in ducis : + ducis[uci][0] += 1 + ducis[uci][1].append(i) + else : + ducis[uci] = [1, [i]] + uci_ok.append(i) + print len(uci_ok) + list_uci_ok = [uci for uci in ducis] + print 'len(list_uci_ok)', len(list_uci_ok) + print 'len set list uci', len(set(list_uci_ok)) + toprint = [[' '.join(self.ucis[i][0]), ucis_txt[i]] for i in uci_ok] + print 'len toprint', len(toprint) + with open('/media/cledemoi/voile_2003_2004_ssdoublons.txt', 'w') as f: + f.write('\n'.join(['\n'.join(val) for val in toprint])) + lucis = [ducis[uci] for uci in ducis] + #lucis = sortedby(lucis, 2, 0) + lucis = [val for val in lucis if val[0] > 1] + print 'len lucis', len(lucis) + #print lucis + #ducis = {} + #for val in lucis : + # if val[0] in ducis : + # ducis[val[0]] += 1 + # else : + # ducis[val[0]] = 1 + #print ducis + uci_pas_ok = [[ducis[uci][0], uci.replace(';', ' '), ';'.join([str(val) for val in ducis[uci][1]])] for uci in ducis if ducis[uci][0] > 1] + #uci_pas_ok = sortedby(uci_pas_ok, 0, 2) + uci_pas_ok = [[str(val[0]), val[1], val[2]] for val in uci_pas_ok] + with open('/media/cledemoi/doublons.txt', 'w') as f: + f.write('\n'.join([';'.join(val) for val in uci_pas_ok])) + etpasok = [[' '.join(self.ucis[i][0]) for i in ducis[uci][1]] for uci in ducis if ducis[uci][0] > 1] + with open('/media/cledemoi/etdoublons.txt', 'w') as f: + f.write('\n'.join([';'.join(line) for line in etpasok])) + + def make_et_table(self) : + fileout = os.path.join(os.path.dirname(self.dictpathout['ira']), 'tableau_et.csv') + #fileout = '/home/pierre/tableau_et.csv' + with open(fileout,'w') as f : + f.write('\n'.join([';'.join(line[0]) for line in self.ucis])) + + def make_uci_stat(self) : + lc = [] + for i, classe in enumerate(self.lc) : + classe = [val.split('.') + [str(i)] for val in classe] + lc += classe + fileout = os.path.join(os.path.dirname(self.dictpathout['ira']), 'uci_stat.csv') + with open(fileout,'w') as f : + f.write('\n'.join([';'.join(line) for line in lc])) + + def make_size_uci(self) : + sizes = [[i, sum([len(uce) for para in uci for uce in para])] for i, uci in enumerate(self.ucis_paras_uces)] + outf = os.path.join(os.path.dirname(self.dictpathout['ira']), 'taille_uci.csv') + for i, size in sizes : + if size == 0 : + print self.ucis_paras_uces[i] + print self.etoiles[i] + with open(outf, 'w') as f : + f.write('\n'.join([';'.join([str(val) for val in line]) for line in sizes])) + + def prof_type(self) : + print 'prof_type' + t1 = time() + res = dict([[i+1, {}] for i in range(len(self.lc))]) + sets = [set(cl) for cl in self.lc] + dicts = [dict(zip(cl,cl)) for cl in self.lc] + for forme in self.formes : + ftype = self.formes[forme][2] + #if not (forme.startswith(u'_') and forme.endswith(u'_')) : + # for uce in self.formes[forme][1] : + # ucet = '.'.join([str(val) for val in uce]) + for i, cl in enumerate(self.lc) : + concern = sets[i].intersection(self.formes[forme][1].keys()) + for uce in concern : + if ftype in res[i+1] : + res[i+1][ftype] += self.formes[forme][1][uce] + else : + res[i+1][ftype] = self.formes[forme][1][uce] + types = list(set([typ for typ in res[i] for i in res])) + types.sort() + colnames = ['type'] + ['classe ' + `i+1` for i in range(len(self.lc))] + toprint = [[typ] + [`res[i+1].get(typ, 0)` for i in range(len(self.lc))] for typ in types] + toprint.insert(0, colnames) + fileout = self.dictpathout['type_cl'] + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join(line) for line in toprint])) + print time() - t1 + + def make_type_tot(self): + tt = {} + for lem in self.lems : + for forme in self.lems[lem] : + if self.formes[forme][2] in tt : + tt[self.formes[forme][2]][0] += self.formes[forme][0] + tt[self.formes[forme][2]][1].append(forme) + else : + tt[self.formes[forme][2]] = [self.formes[forme][0], [forme]] + res = [';'.join([typ,str(len(tt[typ][1])),str(tt[typ][0])]) for typ in tt] + res2 = ['\n'.join([';'.join([forme, str(self.formes[forme][0])]) for forme in tt[typ][1]]) for typ in tt] + res = ['\n'.join([res[i], res2[i]]) for i, val in enumerate(res)] + fileout = os.path.join(os.path.dirname(self.dictpathout['ira']), 'type_stat.csv') + with open(fileout, 'w') as f: + f.write('\n'.join(res)) + + + def count_uci_from_list(self, list_in): + #liste_in = '/home/pierre/fac/lerass/bouquin_indentite/liste_mot_chercher_uci.txt' + with codecs.open(list_in,'r', 'utf8') as f : + content = f.read() + content = content.splitlines() + ucis = [] + for forme in content : + if forme in self.formes : + ucis.append(self.formes[forme][1]) + else : + print forme + #ucis = [self.formes[forme][1] for forme in content] + ucis = [uc[0] for val in ucis for uc in val] + print len(list(set(ucis))) + diff --git a/corpusNG.py b/corpusNG.py new file mode 100644 index 0000000..6dc4880 --- /dev/null +++ b/corpusNG.py @@ -0,0 +1,965 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud + +import codecs +import os +import sys +from time import time +from functions import decoupercharact, ReadDicoAsDico, DoConf +import re +import sqlite3 +import numpy +import itertools +import logging +from operator import itemgetter +from uuid import uuid4 +from chemins import PathOut +from dialog import CorpusPref +from functions import ReadLexique, ReadDicoAsDico +import datetime + + +log = logging.getLogger('iramuteq.corpus') + +#expressions = ReadDicoAsDico('dictionnaires/expression_fr.txt') +#lexique = ReadDicoAsDico('dictionnaires/lexique_fr.txt') +#infile = '/home/pierre/workspace/iramuteq/corpus/lru2.txt' +#infile = '/home/pierre/workspace/iramuteq/corpus/corpussab_cor.txt' +#encoding = 'utf8' +#infile = '/home/pierre/fac/identite/identite_sans_doublons_ok.txt' +#encoding = 'cp1252' +#infile = '/home/pierre/workspace/iramuteq/corpus/Natacha.txt' +#infile = '/home/pierre/fac/cablegate/allcables-all.txt' +#infile = '/home/pierre/fac/cablegate/allcables-08290338.txt' +#tar_in = '/home/pierre/fac/identite/uce.tar.gz +#tar_in = '/home/pierre/fac/cablegate/uce-cable-test.tar.gz' +#tar_infouce = '/home/pierre/fac/identite/info_uce.tar.gz' +#tar_infouce = '/home/pierre/fac/cablegate/info_uce.tar.gz' +#tar_formes = '/home/pierre/fac/identite/tar_formes.tar.gz' +#tar_formes = '/home/pierre/fac/cablegate/tar_formes.tar.gz' + + +def copycorpus(corpus) : + log.info('copy corpus') + copy_corpus = Corpus(corpus.parent, parametres = corpus.parametres) + copy_corpus.ucis = corpus.ucis + copy_corpus.formes = corpus.formes + copy_corpus.pathout = corpus.pathout + copy_corpus.conn_all() + return copy_corpus + + + +class Corpus : + """Corpus class + list of uci + + """ + def __init__(self, parent, parametres = {}, read = False) : + self.parent = parent + self.parametres = parametres + self.cformes = None + self.connformes = None + self.connuces = None + self.conncorpus = None + self.islem = False + self.cuces = None + self.ucis = [] + self.formes = {} + self.flems = {} + self.lems = None + self.idformesuces = {} + self.iduces = None + self.idformes = None + if read : + self.pathout = PathOut(dirout = parametres['pathout']) + self.read_corpus() + + def add_word(self, word) : + if word in self.formes : + self.formes[word].freq += 1 + if self.formes[word].ident in self.idformesuces : + if self.ucis[-1].uces[-1].ident in self.idformesuces[self.formes[word].ident] : + self.idformesuces[self.formes[word].ident][self.ucis[-1].uces[-1].ident] += 1 + else : + self.idformesuces[self.formes[word].ident][self.ucis[-1].uces[-1].ident] = 1 + else : + self.idformesuces[self.formes[word].ident] = {self.ucis[-1].uces[-1].ident: 1} + else : + if word in self.parent.lexique : + gramtype = self.parent.lexique[word][1] + lem = self.parent.lexique[word][0] + elif word.isdigit() : + gramtype = 'num' + lem = word + else : + gramtype = 'nr' + lem = word + self.formes[word] = Word(word, gramtype, len(self.formes), lem) + self.idformesuces[self.formes[word].ident] = {self.ucis[-1].uces[-1].ident : 1} + + def conn_all(self): + """connect corpus to db""" + if self.connformes is None : + log.info('connexion corpus') + self.connuces = sqlite3.connect(self.pathout['uces.db']) + self.cuces = self.connuces.cursor() + self.connformes = sqlite3.connect(self.pathout['formes.db']) + self.cformes = self.connformes.cursor() + self.conncorpus = sqlite3.connect(self.pathout['corpus.db']) + self.ccorpus = self.conncorpus.cursor() + self.cformes.execute('PRAGMA temp_store=MEMORY;') + self.cformes.execute('PRAGMA journal_mode=MEMORY;') + self.cformes.execute('PRAGMA synchronous = OFF;') + self.cuces.execute('PRAGMA temp_store=MEMORY;') + self.cuces.execute('PRAGMA journal_mode=MEMORY;') + self.cuces.execute('PRAGMA synchronous = OFF;') + self.ccorpus.execute('PRAGMA temp_store=MEMORY;') + self.ccorpus.execute('PRAGMA journal_mode=MEMORY;') + self.ccorpus.execute('PRAGMA synchronous = OFF;') + + def read_corpus(self) : + log.info('read corpus') + self.parametres['syscoding'] = sys.getdefaultencoding() + if self.conncorpus is None : + self.conn_all() + res = self.ccorpus.execute('SELECT * FROM etoiles;') + for row in res : + self.ucis.append(Uci(row[0], row[1], row[2])) + uces = self.conncorpus.cursor().execute('SELECT * FROM luces where uci=?;',(`self.ucis[-1].ident`,)) + for uce in uces: + self.ucis[-1].uces.append(Uce(uce[2], uce[1], uce[0])) + res = self.ccorpus.execute('SELECT * FROM formes;') + self.formes = dict([[forme[1], Word(forme[1], forme[3], forme[0], lem = forme[2], freq = forme[4])] for forme in res]) + self.ccorpus.close() + + def getworduces(self, wordid) : + if isinstance(wordid, basestring) : + wordid = self.formes[wordid].ident + res = self.cformes.execute('SELECT uces FROM uces where id=? ORDER BY id;', (`wordid`,)) + return list(itertools.chain(*[[int(val) for val in row[0].split()] if not isinstance(row[0], int) else [row[0]] for row in res])) + + def getlemuces(self, lem) : + formesid = ', '.join([`val` for val in self.lems[lem].formes]) + query = 'SELECT uces FROM uces where id IN (%s) ORDER BY id' % formesid + res = self.cformes.execute(query) + return list(set(list(itertools.chain(*[[int(val) for val in row[0].split()] if not isinstance(row[0], int) else [row[0]] for row in res])))) + + def getlemucis(self, lem) : + uces = self.getlemuces(lem) + return list(set([self.getucefromid(val).uci for val in uces])) + + def getlemuceseff(self, lem) : + formesid = ', '.join([`val` for val in self.lems[lem].formes]) + query = 'SELECT uces FROM uces where id IN (%s) ORDER BY id' % formesid + res = self.cformes.execute(query) + uces = list(itertools.chain(*[[int(val) for val in row[0].split()] if not isinstance(row[0], int) else [row[0]] for row in res])) + query = 'SELECT eff FROM eff where id IN (%s) ORDER BY id' % formesid + res = self.cformes.execute(query) + eff = list(itertools.chain(*[[int(val) for val in row[0].split()] if not isinstance(row[0], int) else [row[0]] for row in res])) + lemuceeff = {} + for i, uce in enumerate(uces) : + lemuceeff[uce] = lemuceeff.get(uce, 0) + eff[i] + return lemuceeff + + def getlemeff(self, lem) : + return self.lems[lem].freq + + def getlems(self) : + return self.lems + + def getforme(self, formeid) : + if self.idformes is None : self.make_idformes() + return self.idformes[formeid] + + def gettotocc(self) : + return sum([self.formes[forme].freq for forme in self.formes]) + + def getucemean(self) : + return float(self.gettotocc())/self.getucenb() + + def getucenb(self) : + return self.ucis[-1].uces[-1].ident + 1 + + def getucinb(self) : + return self.ucis[-1].ident + 1 + + def getucisize(self) : + ucesize = self.getucesize() + return [sum(ucesize[uci.uces[0].ident:(uci.uces[-1].ident + 1)]) for uci in self.ucis] + + def getucesize(self) : + res = self.getalluces() + return [len(uce[1].split()) for uce in res] + +# def getlemseff(self) : +# if self.idformes is None : +# self.make_idformes() +# return dict([[lem, sum([self.idformes[forme].freq for forme in self.lems[lem]])] for lem in self.lems]) + +# def getlemsefftype(self) : +# if self.idformes is None : +# self.make_idformes() +# if self.lems is None : +# self.make_lems() +# return dict([[lem, [sum([self.idformes[forme].freq for forme in self.lems[lem]]), '', self.idformes[self.lems[lem].keys()[0]].gram]] for lem in self.lems]) + + def getconcorde(self, uces) : + return self.cuces.execute('select * from uces where id IN (%s);' % ', '.join([`i` for i in uces])) + + def getwordconcorde(self, word) : + return self.getconcorde(self.getworduces(word)) + + def getlemconcorde(self, lem) : + return self.getconcorde(self.getlemuces(lem)) + + def getalluces(self) : + return self.cuces.execute('SELECT * FROM uces') + + def getucesfrometoile(self, etoile) : + return [uce.ident for uci in self.ucis for uce in uci.uces if etoile in uci.etoiles] + + def getucefromid(self, uceid) : + if self.iduces is None : self.make_iduces() + return self.iduces[uceid] + + def gethapaxnb(self) : + return len([None for forme in self.formes if self.formes[forme].freq == 1]) + + def getactivesnb(self, key) : + return len([lem for lem in self.lems if self.lems[lem].act == key]) +# def make_lems(self, lem = True) : +# log.info('make lems') +# self.lems = {} +# for forme in self.formes : +# if self.formes[forme].lem in self.lems : +# if self.formes[forme].ident not in self.lems[self.formes[forme].lem] : +# self.lems[self.formes[forme].lem][self.formes[forme].ident] = 0 +# else : +# self.lems[self.formes[forme].lem] = {self.formes[forme].ident : 0} + + def make_lems(self, lem = True) : + log.info('make lems') + self.lems = {} + if lem : + for forme in self.formes : + if self.formes[forme].lem in self.lems : + if self.formes[forme].ident not in self.lems[self.formes[forme].lem].formes : + self.lems[self.formes[forme].lem].add_forme(self.formes[forme]) + else : + self.lems[self.formes[forme].lem] = Lem(self, self.formes[forme]) + else : + self.lems = dict([[forme, Lem(self, self.formes[forme])] for forme in self.formes]) + + def make_idformes(self) : + self.idformes = dict([[self.formes[forme].ident, self.formes[forme]] for forme in self.formes]) + + def make_iduces(self) : + if self.iduces is None : + self.iduces = dict([[uce.ident, uce] for uci in self.ucis for uce in uci.uces]) + + def make_lexitable(self, mineff, etoiles) : + tokeep = [lem for lem in self.lems if self.lems[lem].freq > mineff] + etuces = [[] for et in etoiles] + for uci in self.ucis : + get = list(set(uci.etoiles).intersection(etoiles)) + if len(get) > 1 : + return '2 variables sur la meme ligne' + elif get != [] : + etuces[etoiles.index(get[0])] += [uce.ident for uce in uci.uces] + etuces = [set(val) for val in etuces] + tab = [] + for lem in tokeep : + deff = self.getlemuceseff(lem) + ucesk = deff.keys() + tab.append([lem] + [sum([deff[uce] for uce in et.intersection(ucesk)]) for et in etuces]) + tab.insert(0, [''] + etoiles) + return tab + + def make_efftype_from_etoiles(self, etoiles) : + dtype = {} + etuces = [[] for et in etoiles] + for uci in self.ucis : + get = list(set(uci.etoiles).intersection(etoiles)) + if len(get) > 1 : + return '2 variables sur la meme ligne' + elif get != [] : + etuces[etoiles.index(get[0])] += [uce.ident for uce in uci.uces] + etuces = [set(val) for val in etuces] + for lem in self.lems : + deff = self.getlemuceseff(lem) + ucesk = deff.keys() + gram = self.lems[lem].gram + if gram in dtype : + dtype[gram] = [i + j for i, j in zip(dtype[gram], [sum([deff[uce] for uce in et.intersection(ucesk)]) for et in etuces])] + else : + dtype[gram] = [sum([deff[uce] for uce in et.intersection(ucesk)]) for et in etuces] + tabout = [[gram] + dtype[gram] for gram in dtype] + tabout.insert(0, [''] + etoiles) + return tabout + + def make_uceactsize(self, actives) : + res = self.getalluces() + ucesize = {} + for lem in actives: + deff = self.getlemuceseff(lem) + for uce in deff : + ucesize[uce] = ucesize.get(uce, 0) + 1 + return ucesize + + def make_uc(self, actives, lim1, lim2) : + uceactsize = self.make_uceactsize(actives) + last1 = 0 + last2 = 0 + uc1 = [[]] + uc2 = [[]] + lastpara = 0 + for uce in [uce for uci in self.ucis for uce in uci.uces] : + if uce.para == lastpara : + if last1 <= lim1 : + last1 += uceactsize.get(uce.ident,0) + uc1[-1].append(uce.ident) + else : + uc1.append([uce.ident]) + last1 = 0 + if last2 <= lim2 : + last2 += uceactsize.get(uce.ident, 0) + uc2[-1].append(uce.ident) + else : + uc2.append([uce.ident]) + last2 = 0 + else : + last1 = uceactsize.get(uce.ident, 0) + last2 = uceactsize.get(uce.ident, 0) + lastpara = uce.para + uc1.append([uce.ident]) + uc2.append([uce.ident]) + return uc1, uc2 + + def make_and_write_sparse_matrix_from_uc(self, actives, sizeuc1, sizeuc2, uc1out, uc2out, listuce1out, listuce2out) : + uc1, uc2 = self.make_uc(actives, sizeuc1, sizeuc2) + log.info('taille uc1 : %i - taille uc2 : %i' % (len(uc1), len(uc2))) + self.write_ucmatrix(uc1, actives, uc1out) + self.write_ucmatrix(uc2, actives, uc2out) + listuce1 = [['uce', 'uc']] + [[`uce`, `i`] for i, ucl in enumerate(uc1) for uce in ucl] + listuce2 = [['uce', 'uc']] + [[`uce`, `i`] for i, ucl in enumerate(uc2) for uce in ucl] + with open(listuce1out, 'w') as f : + f.write('\n'.join([';'.join(line) for line in listuce1])) + with open(listuce2out, 'w') as f : + f.write('\n'.join([';'.join(line) for line in listuce2])) + return len(uc1), len(uc2) + + def write_ucmatrix(self, uc, actives, fileout) : + log.info('write uc matrix %s' % fileout) + uces_uc = dict([[uce, i] for i, ucl in enumerate(uc) for uce in ucl]) + deja_la = {} + nbl = 0 + with open(fileout + '~', 'w+') as f : + for i, lem in enumerate(actives) : + for uce in self.getlemuces(lem): + if (uces_uc[uce], i) not in deja_la : + nbl += 1 + f.write(''.join([' '.join([`uces_uc[uce]+1`,`i+1`,`1`]),'\n'])) + deja_la[(uces_uc[uce], i)] = 0 + f.seek(0) + with open(fileout, 'w') as ffin : + ffin.write("%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % (len(uc), len(actives), nbl)) + for line in f : + ffin.write(line) + os.remove(fileout + '~') + del(deja_la) + + def export_corpus(self, outf) : + #outf = 'export_corpus.txt' + self.make_iduces() + res = self.getalluces() + self.make_iduces() + actuci = '' + actpara = False + with open(outf,'w') as f : + for uce in res : + if self.iduces[uce[0]].uci == actuci and self.iduces[uce[0]].para == actpara : + f.write(uce[1].encode(self.parametres['syscoding']) + '\n') + elif self.iduces[uce[0]].uci != actuci : + actuci = self.iduces[uce[0]].uci + if self.ucis[self.iduces[uce[0]].uci].paras == [] : + actpara = self.iduces[uce[0]].para + f.write('\n' + ' '.join(self.ucis[self.iduces[uce[0]].uci].etoiles).encode(self.parametres['syscoding']) + '\n' + uce[1].encode(self.parametres['syscoding']) + '\n') + else : + ident = 0 + actpara = self.iduces[uce[0]].para + f.write('\n'.join([' '.join(self.ucis[self.iduces[uce[0]].uci].etoiles).encode(self.parametres['syscoding']), self.ucis[self.iduces[uce[0]].uci].paras[ident].encode(self.parametres['syscoding']), uce[1].encode(self.parametres['syscoding'])]) + '\n') + elif self.iduces[uce[0]].para != actpara : + actpara = self.iduces[uce[0]].para + ident += 1 + f.write('\n'.join([self.ucis[self.iduces[uce[0]].uci].paras[ident].encode(self.parametres['syscoding']), uce[1].encode(self.parametres['syscoding'])]) + '\n') + + def make_and_write_sparse_matrix_from_uces(self, actives, outfile, listuce = False) : + log.info('make_and_write_sparse_matrix_from_uces %s' % outfile) + nbl = 0 + with open(outfile + '~', 'w+') as f : + for i, lem in enumerate(actives) : + for uce in sorted(self.getlemuces(lem)) : + nbl += 1 + f.write(''.join([' '.join([`uce+1`, `i+1`,`1`]),'\n'])) + f.seek(0) + with open(outfile, 'w') as ffin : + ffin.write("%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % (self.getucenb(), len(actives), nbl)) + for line in f : + ffin.write(line) + os.remove(outfile + '~') + if listuce : + with open(listuce, 'w') as f : + f.write('\n'.join(['uce;uc'] + [';'.join([`i`,`i`]) for i in range(0, self.getucenb())])) + + def make_and_write_sparse_matrix_from_uci(self, actives, outfile, listuci = False) : + log.info('make_and_write_sparse_matrix_from_ucis %s' % outfile) + nbl = 0 + with open(outfile + '~', 'w+') as f : + for i, lem in enumerate(actives) : + for uci in sorted(self.getlemucis(lem)) : + nbl += 1 + f.write(''.join([' '.join([`uci+1`, `i+1`,`1`]),'\n'])) + f.seek(0) + with open(outfile, 'w') as ffin : + ffin.write("%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % (self.getucinb(), len(actives), nbl)) + for line in f : + ffin.write(line) + os.remove(outfile + '~') + if listuci : + with open(listuci, 'w') as f : + f.write('\n'.join(['uci;uc'] + [';'.join([`i`,`i`]) for i in range(0, self.getucinb())])) + + def make_and_write_sparse_matrix_from_classe(self, actives, uces, outfile) : + log.info('make_and_write_sparse_matrix_from_classe %s' % outfile) + nbl = 0 + duces = dict([[uce, i] for i, uce in enumerate(uces)]) + with open(outfile + '~', 'w+') as f : + for i, lem in enumerate(actives) : + uces_ok = list(set(self.getlemuces(lem)).intersection(uces)) + for uce in uces_ok : + f.write(''.join([' '.join([`duces[uce]+1`,`i+1`,`1`]),'\n'])) + f.seek(0) + with open(outfile, 'w') as ffin : + ffin.write("%%%%MatrixMarket matrix coordinate integer general\n%i %i %i\n" % (self.getucenb(), len(actives), nbl)) + for line in f : + ffin.write(line) + os.remove(outfile + '~') + + def parse_active(self, gramact, gramsup = None) : + log.info('parse actives') + for lem in self.lems : + if self.lems[lem].gram in gramact : + self.lems[lem].act = 1 + elif gramsup is not None : + if self.lems[lem].gram in gramsup : + self.lems[lem].act = 2 + else : + self.lems[lem].act = 0 + else : + self.lems[lem].act = 2 + + def make_actives_limit(self, limit) : + if self.idformes is None : + self.make_idformes() + return [lem for lem in self.lems if self.getlemeff(lem) >= limit] + + def make_actives_nb(self, nbmax, key) : + log.info('make_actives_nb : %i - %i' % (nbmax,key)) + if self.idformes is None : + self.make_idformes() + allactives = [[self.lems[lem].freq, lem] for lem in self.lems if self.lems[lem].act == key and self.lems[lem].freq >= 3] + self.activenb = len(allactives) + allactives = sorted(allactives, reverse = True) + if len(allactives) <= nbmax : + log.info('nb = %i - eff min = %i ' % (len(allactives), allactives[-1][0])) + return [val[1] for val in allactives], allactives[-1][0] + else : + effs = [val[0] for val in allactives] + if effs.count(effs[nbmax - 1]) > 1 : + lim = effs[nbmax - 1] + 1 + nok = True + while nok : + try : + stop = effs.index(lim) + nok = False + except ValueError: + lim -= 1 + else : + stop = nbmax - 1 + log.info('nb actives = %i - eff min = %i ' % (stop, lim)) + return [val[1] for val in allactives[0:stop + 1]], lim + + def make_and_write_profile(self, actives, ucecl, fileout) : + log.info('formes/classes') + tab = [[lem] + [len(set(self.getlemuces(lem)).intersection(classe)) for classe in ucecl] for lem in actives] + tab = [[line[0]] + [`val` for val in line[1:]] for line in tab if sum(line[1:]) >= 3] + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join(line) for line in tab]).encode(self.parametres['syscoding'])) + + def make_etoiles(self) : + etoiles = set([]) + for uci in self.ucis : + etoiles.update(uci.etoiles[1:] + uci.paras) + return list(etoiles) + + def make_and_write_profile_et(self, ucecl, fileout) : + log.info('etoiles/classes') + etoiles = self.make_etoiles() + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join([etoile] + [`len(set(self.getucesfrometoile(etoile)).intersection(classe))` for classe in ucecl]) for etoile in etoiles]).encode(self.parametres['syscoding'])) + + def count_from_list(self, l, d) : + for val in l : + if val in d : + d[val] += 1 + else : + d[val] = 1 + return d + + def find_segments(self, taille_segment, taille_limite) : + d = {} + for uce in self.getalluces() : + uce = uce[1].split() + d = self.count_from_list([' '.join(uce[i:i+taille_segment]) for i in range(len(uce)-(taille_segment - 1))], d) + l = [[d[val], val] for val in d if d[val] >= 3] + del(d) + l.sort() + if len(l) > taille_limite : + l = l[-taille_limite:] + return l + + def make_ucecl_from_R(self, filein) : + with open(filein, 'rU') as f : + c = f.readlines() + c.pop(0) + self.lc = [] + for line in c : + line = line.replace('\n', '').replace('"', '').split(';') + self.lc.append([int(line[0]) - 1, int(line[1])]) + classesl = [val[1] for val in self.lc] + clnb = max(classesl) + self.lc = sorted(self.lc, key=itemgetter(1)) + self.lc = [[uce[0] for uce in self.lc if uce[1] == i] for i in range(clnb+1)] + self.lc0 = self.lc.pop(0) + #return ucecl + +class Uci : + def __init__(self, iduci, line, paraset = None) : + self.ident = iduci + self.etoiles = line.split() + self.uces = [] + if paraset is not None : + self.paras = paraset.split() + else : + self.paras = [] + +class Uce : + def __init__(self, iduce, idpara, iduci) : + self.ident = iduce + self.para = idpara + self.uci = iduci + +class Word : + def __init__(self, word, gramtype, idword, lem = None, freq = None) : + self.forme = word + self.lem = lem + self.gram = gramtype + self.ident = idword + self.act = 1 + if freq is not None : + self.freq = freq + else : + self.freq = 1 + +class Lem : + def __init__(self, parent, forme) : + self.formes = {forme.ident : forme.freq} + self.gram = forme.gram + self.freq = forme.freq + self.act = forme.act + + def add_forme(self, forme) : + self.formes[forme.ident] = forme.freq + self.freq += forme.freq + +def decouperlist(chaine, longueur, longueurOptimale) : + """ + on part du dernier caractère, et on recule jusqu'au début de la chaîne. + Si on trouve un '$', c'est fini. + Sinon, on cherche le meilleur candidat. C'est-à-dire le rapport poids/distance le plus important. + """ + separateurs = [[u'.', 6.0], [u'?', 6.0], [u'!', 6.0], [u'£', 6.0], [u':', 5.0], [u';', 4.0], [u',', 1.0], [u' ', 0.01]] + dsep = dict([[val[0],val[1]] for val in separateurs]) + trouve = False # si on a trouvé un bon séparateur + iDecoupe = 0 # indice du caractere ou il faut decouper + + longueur = min(longueur, len(chaine) - 1) + chaineTravail = chaine[:longueur + 1] + nbCar = longueur + meilleur = ['', 0, 0] # type, poids et position du meilleur separateur + + try : + indice = chaineTravail.index(u'$') + trouve = True + iDecoupe = indice + except ValueError : + pass + if not trouve: + while nbCar >= 0: + caractere = chaineTravail[nbCar] + distance = abs(longueurOptimale - nbCar) + 1 + meilleureDistance = abs(longueurOptimale - meilleur[2]) + 1 + if caractere in dsep : + if (float(dsep[caractere]) / distance) > (float(meilleur[1]) / meilleureDistance) : + meilleur[0] = caractere + meilleur[1] = dsep[caractere] + meilleur[2] = nbCar + trouve = True + iDecoupe = nbCar + else : + if (float(dsep[' ']) / distance) > (float(meilleur[1]) / meilleureDistance) : + meilleur[0] = caractere + meilleur[1] = dsep[' '] + meilleur[2] = nbCar + trouve = True + iDecoupe = nbCar + nbCar = nbCar - 1 + # si on a trouvé + if trouve: + fin = chaine[iDecoupe + 1:] + retour = chaineTravail[:iDecoupe] + return len(retour) > 0, retour, fin + # si on a rien trouvé + return False, chaine, '' + +def testetoile(line) : + return line.startswith(u'****') + +def testint(line) : + return line[0:4].isdigit() and u'*' in line + +def prep_txtlist(txt) : + return txt.split() + [u'$'] + +def prep_txtcharact(txt) : + return txt + u'$' + +class BuildCorpus : + """ + Class for building a corpora + """ + def __init__(self, infile, parametres_corpus, lexique = None, expressions = None, dlg = None) : + log.info('begin building corpus...') + self.lexique = lexique + self.expressions = expressions + self.dlg = dlg + self.corpus = Corpus(self, parametres_corpus) + self.infile = infile + self.last = 0 + self.lim = parametres_corpus.get('lim', 1000000) + self.encoding = parametres_corpus['encoding'] + self.corpus.pathout = PathOut(filename = parametres_corpus['originalpath'], dirout = parametres_corpus['pathout']) + self.corpus.pathout.createdir(parametres_corpus['pathout']) + self.corpus.parametres['uuid'] = str(uuid4()) + self.corpus.parametres['corpus_name'] = os.path.split(self.corpus.parametres['pathout'])[1] + self.corpus.parametres['type'] = 'corpus' + if self.corpus.parametres['keep_ponct'] : + self.ponctuation_espace = [' ', ''] + else : + self.ponctuation_espace = [' ','.', u'£', ';', '?', '!', ',', ':',''] + self.cleans = [] + self.tolist = self.corpus.parametres.get('tolist', 0) + self.buildcleans() + self.prep_makeuce() + #create database + self.connect() + self.dobuild() + + def prep_makeuce(self) : + method = self.corpus.parametres.get('ucemethod', 0) + if method == 1 : + self.decouper = decouperlist + self.prep_txt = prep_txtlist + self.ucesize = self.corpus.parametres.get('ucesize', 40) + elif method == 0 : + self.decouper = decoupercharact + self.prep_txt = prep_txtcharact + self.ucesize = self.corpus.parametres.get('ucesize', 240) + log.info('method uce : %s' % method) + + def dobuild(self) : + t1 = time() + self.read_corpus(self.infile) + self.indexdb() + self.corpus.parametres['ira'] = self.corpus.pathout['Corpus.cira'] + self.time = time() - t1 + self.dofinish() + DoConf().makeoptions(['corpus'],[self.corpus.parametres], self.corpus.pathout['Corpus.cira']) + log.info('time : %f' % (time() - t1)) + + def connect(self) : + self.conn_f = sqlite3.connect(self.corpus.pathout['formes.db']) + self.cf = self.conn_f.cursor() + self.cf.execute('CREATE TABLE IF NOT EXISTS uces (id INTEGER, uces TEXT);') + self.cf.execute('CREATE TABLE IF NOT EXISTS eff (id INTEGER, eff TEXT);') + self.conn_f.commit() + self.cf = self.conn_f.cursor() + self.cf.execute('PRAGMA temp_store=MEMORY;') + self.cf.execute('PRAGMA journal_mode=MEMORY;') + self.cf.execute('PRAGMA synchronous = OFF;') + self.cf.execute('begin') + self.conn = sqlite3.connect(self.corpus.pathout['uces.db']) + self.c = self.conn.cursor() + self.c.execute('CREATE TABLE IF NOT EXISTS uces (id INTEGER, uces TEXT);') + self.conn.commit() + self.c = self.conn.cursor() + self.c.execute('PRAGMA temp_store=MEMORY;') + self.c.execute('PRAGMA journal_mode=MEMORY;') + self.c.execute('PRAGMA synchronous = OFF;') + self.c.execute('begin') + + def indexdb(self) : + #commit index and close db + self.conn.commit() + self.conn_f.commit() + self.cf.execute('CREATE INDEX iduces ON uces (id);') + self.cf.execute('CREATE INDEX ideff ON eff (id);') + self.c.close() + self.cf.close() + #backup corpora + self.conn_corpus = sqlite3.connect(self.corpus.pathout['corpus.db']) + self.ccorpus = self.conn_corpus.cursor() + self.ccorpus.execute('CREATE TABLE IF NOT EXISTS etoiles (uci INTEGER, et TEXT, paras TEXT);') + self.ccorpus.execute('CREATE TABLE IF NOT EXISTS luces (uci INTEGER, para INTEGER, uce INTEGER);') + self.ccorpus.execute('CREATE TABLE IF NOT EXISTS formes (ident INTEGER, forme TEXT, lem TEXT, gram TEXT, freq INTEGER);') + self.conn_corpus.commit() + self.ccorpus = self.conn_corpus.cursor() + self.ccorpus.execute('PRAGMA temp_store=MEMORY;') + self.ccorpus.execute('PRAGMA journal_mode=MEMORY;') + self.ccorpus.execute('PRAGMA synchronous = OFF;') + self.ccorpus.execute('begin') + self.backup_corpus() + self.ccorpus.execute('CREATE INDEX iduci ON luces (uci);') + self.conn_corpus.commit() + self.conn_corpus.close() + #self.corpus.parametres['corpus_ira'] = self.corpus.pathout['corpus.cira'] + + def buildcleans(self) : + if self.corpus.parametres.get('lower', 1) : + self.cleans.append(self.dolower) + if self.corpus.parametres.get('firstclean', 1) : + self.cleans.append(self.firstclean) + self.rule = self.corpus.parametres.get('keep_caract', u"^a-zA-Z0-9àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇßœŒ’ñ.:,;!?*'_-") + self.cleans.append(self.docharact) + if self.corpus.parametres.get('expressions', 1) : + self.cleans.append(self.make_expression) + if self.corpus.parametres.get('apos', 1) : + self.cleans.append(self.doapos) + if self.corpus.parametres.get('tiret', 1): + self.cleans.append(self.dotiret) + + def make_expression(self,txt) : + for expression in self.expressions: + if expression in txt : + txt = txt.replace(expression, self.expressions[expression][0]) + return txt + + def dolower(self, txt) : + return txt.lower() + + def docharact(self, txt) : + #rule = u"^a-zA-Z0-9àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇßœŒ’ñ.:,;!?*'_-" + list_keep = u"[" + self.rule + "]+" + return re.sub(list_keep, ' ', txt) + + def doapos(self, txt) : + return txt.replace(u'\'', u' ') + + def dotiret(self, txt) : + return txt.replace(u'-', u' ') + + def firstclean(self, txt) : + txt = txt.replace(u'’',"'") + txt = txt.replace(u'œ', u'oe') + return txt.replace('...',u' £ ').replace('?',' ? ').replace('.',' . ').replace('!', ' ! ').replace(',',' , ').replace(';', ' ; ').replace(':',' : ') + + def make_cleans(self, txt) : + for clean in self.cleans : + txt = clean(txt) + return txt + + def backup_uce(self) : + if self.corpus.idformesuces != {} : + log.info('backup %i' % len(self.corpus.idformesuces)) + touce = [(`forme`, ' '.join([`val` for val in self.corpus.idformesuces[forme].keys()])) for forme in self.corpus.idformesuces] + toeff = [(`forme`, ' '.join([`val` for val in self.corpus.idformesuces[forme].values()])) for forme in self.corpus.idformesuces] + self.cf.executemany('INSERT INTO uces VALUES (?,?);', touce) + self.cf.executemany('INSERT INTO eff VALUES (?,?);', toeff) + self.corpus.idformesuces = {} + self.count = 1 + + def backup_corpus(self) : + log.info('start backup corpus') + t = time() + for uci in self.corpus.ucis : + self.ccorpus.execute('INSERT INTO etoiles VALUES (?,?,?);' ,(uci.ident,' '.join(uci.etoiles), ' '.join(uci.paras,))) + for uce in uci.uces : + self.ccorpus.execute('INSERT INTO luces VALUES (?,?,?);',(`uci.ident`,`uce.para`,`uce.ident`,)) + for forme in self.corpus.formes : + self.ccorpus.execute('INSERT INTO formes VALUES (?,?,?,?,?);', (`self.corpus.formes[forme].ident`, forme, self.corpus.formes[forme].lem, self.corpus.formes[forme].gram, `self.corpus.formes[forme].freq`,)) + log.info('%f' % (time() - t)) + + def dofinish(self) : + self.corpus.parametres['date'] = datetime.datetime.now().ctime() + minutes, seconds = divmod(self.time, 60) + hours, minutes = divmod(minutes, 60) + self.corpus.parametres['time'] = '%.0fh %.0fm %.0fs' % (hours, minutes, seconds) + self.corpus.parametres['ucinb'] = self.corpus.getucinb() + self.corpus.parametres['ucenb'] = self.corpus.getucenb() + self.corpus.parametres['occurrences'] = self.corpus.gettotocc() + self.corpus.parametres['formesnb'] = len(self.corpus.formes) + hapaxnb = self.corpus.gethapaxnb() + pourhapaxf = (float(hapaxnb) / len(self.corpus.formes)) * 100 + pourhapaxocc = (float(hapaxnb) / self.corpus.parametres['occurrences']) * 100 + self.corpus.parametres['hapax'] = '%i - %.2f %% des formes - %.2f %% des occurrences' % (hapaxnb, pourhapaxf, pourhapaxocc) + + +class BuildFromAlceste(BuildCorpus) : + #def __init___(self, infile, parametres_corpus) : + # BuildCorpus.__init__(self, infile, parametres_corpus) + + + def read_corpus(self, infile) : + self.limitshow = 0 + self.count = 1 + if self.corpus.parametres['ucimark'] == 0 : + self.testuci = testetoile + elif self.corpus.parametres['ucimark'] == 1 : + self.testuci = testint + txt = [] + iduci = -1 + idpara = -1 + iduce = -1 + with codecs.open(infile, 'rU', self.encoding) as f : + for line in f : + if self.testuci(line) : + iduci += 1 + if txt != [] : + iduce, idpara = self.treattxt(txt, iduce, idpara, iduci - 1) + txt = [] + self.corpus.ucis.append(Uci(iduci, line)) + else : + self.corpus.ucis.append(Uci(iduci, line)) + elif line.startswith(u'-*') : + if txt != [] : + iduce, idpara = self.treattxt(txt, iduce, idpara, iduci) + txt = [] + idpara += 1 + self.corpus.ucis[-1].paras.append(line.split()[0]) + elif line.strip() != '' and iduci != -1 : + txt.append(line) + if txt != [] : + iduce, idpara = self.treattxt(txt, iduce, idpara, iduci) + del(txt) + self.backup_uce() + + def treattxt(self, txt, iduce, idpara, iduci) : + txt = ' '.join(txt) + #log.debug('ATTENTION CHINOIS -> charactères') + #clean_chinois = [self.firstclean, self.dolower, self.make_expression, self.doapos, self.dotiret] + #log.debug('ATTENTION CHINOIS -> list(text)') + #txt = ' '.join(list(txt)) + txt = self.make_cleans(txt)#, clean_chinois) + ucetxt = self.make_uces(txt, self.corpus.parametres['douce']) + if self.corpus.ucis[-1].paras == [] : + idpara += 1 + for uce in ucetxt : + iduce += 1 + self.corpus.ucis[-1].uces.append(Uce(iduce, idpara, iduci)) + self.c.execute('INSERT INTO uces VALUES(?,?);', (`iduce`,uce)) + if not self.tolist : + uce = uce.split() + else : + uce = list(uce) + for word in uce : + self.last += 1 + self.corpus.add_word(word) + if self.dlg is not None : + if self.limitshow > self.count : + self.dlg.Pulse('uci: %i - uce : %i' % (iduci + 1, iduce +1)) + self.count += 1 + self.limitshow = 0 + else : + self.limitshow = self.last / 100000 + log.debug(`iduci`, `idpara`, `iduce`) + if self.last > self.lim : + self.backup_uce() + self.last = 0 + return iduce, idpara + + def make_uces(self, txt, douce = True, keep_ponct = False) : + txt = ' '.join(txt.split()) + if douce : + out = [] + reste, texte_uce, suite = self.decouper(self.prep_txt(txt), self.ucesize + 15, self.ucesize) +# print 'reste' +# print reste +# print 'texte_uce' +# print texte_uce +# print 'suite' +# print suite + while reste : + uce = ' '.join([val for val in texte_uce if val not in self.ponctuation_espace]) + if uce != '' : + out.append(uce) + reste, texte_uce, suite = self.decouper(suite, self.ucesize + 15, self.ucesize) +# print 'reste' +# print reste +# print 'texte_uce' +# print texte_uce +# print 'suite' +# print suite + + uce = ' '.join([val for val in texte_uce if val not in self.ponctuation_espace]) + if uce != '' : + print 'RESTEE UUCEEEEEEEEEEEEE', uce + out.append(uce) + return out + else : + return [' '.join([val for val in txt.split() if val not in self.ponctuation_espace])] + +#decouper (list_sep) +#make_uces (decouper) +#treat_txt (make_uces) +#read (treat_txt) + +class Builder : + def __init__(self, parent, dlg = None) : + self.parent = parent + self.dlg = dlg + parametres = DoConf(os.path.join(self.parent.UserConfigPath,'corpus.cfg')).getoptions('corpus') + parametres['pathout'] = PathOut(parent.filename, 'corpus').mkdirout() + dial = CorpusPref(parent, parametres) + dial.CenterOnParent() + dial.txtpath.SetLabel(parent.filename) + #dial.repout_choices.SetValue(parametres['pathout']) + self.res = dial.ShowModal() + if self.res == 5100 : + parametres = dial.doparametres() + parametres['originalpath'] = parent.filename + PathOut().createdir(parametres['pathout']) + ReadLexique(self.parent, lang = parametres['lang']) + self.parent.expressions = ReadDicoAsDico(self.parent.DictPath.get(parametres['lang']+'_exp', 'french_exp')) + self.parametres = parametres + dial.Destroy() + + def doanalyse(self) : + return BuildFromAlceste(self.parent.filename, self.parametres, self.parent.lexique, self.parent.expressions, dlg = self.dlg).corpus + + +if __name__ == '__main__' : + t1 = time() + parametres = {'formesdb':'formes.db', 'ucesdb': 'uces.db', 'corpusdb' : 'corpus.db', 'syscoding' : 'utf-8', 'encoding' : encoding} + intro = BuildCorpus(infile, parametres)#, tar_in, tar_infouce)#, tar_formes) + print time() - t1 diff --git a/debian/README b/debian/README new file mode 100644 index 0000000..59b715b --- /dev/null +++ b/debian/README @@ -0,0 +1,6 @@ +The Debian Package iramuteq +---------------------------- + +Comments regarding the Package + + -- pierre Fri, 24 Apr 2009 17:59:50 +0200 diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..72aba66 --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,6 @@ +iramuteq for Debian +------------------- + + + + -- pierre Fri, 24 Apr 2009 17:59:50 +0200 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..a766c23 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +iramuteq (0.2-alpha1) unstable; urgency=low + + *rien + + -- pierre ratinaud Sun, 31 Oct 2010 23:59:50 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..44e5781 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: iramuteq +Standards-Version: 0.1.8 +Section: science +Priority: extra +Maintainer: Pierre Ratinaud +Build-Depends: debhelper (>= 7) +Homepage: http://repere.no-ip.org/logiciel/iramuteq + +Package: iramuteq +Architecture: all +Depends: python (>= 2.5), r-base (>= 2.7.1), python-wxgtk2.8 (>= 2.8), python-xlrd (>= 0.6), python-ooolib, r-cran-rgl (>= 0.79), python-numpy +Description: Interface de R pour les analyses multidimentionnelles diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..66cd96d --- /dev/null +++ b/debian/copyright @@ -0,0 +1,38 @@ +This package was debianized by Pierre Ratinaud on +Fri, 18 Sep 2009 17:59:50 +0200. + +It was downloaded from + +Upstream Author(s): + + + +Copyright: + + + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2009, Pierre Ratinaud and +is licensed under the GPL, see above. + + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..e886bb6 --- /dev/null +++ b/debian/dirs @@ -0,0 +1,4 @@ +usr/bin +usr/share/iramuteq +usr/share/applications +usr/share/icons diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..ba31a11 --- /dev/null +++ b/debian/docs @@ -0,0 +1,3 @@ +gpl-2.0-fr.txt +gpl-2.0.txt +TODO diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..d8c022c --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +iramuteq_0.2-alpha1_all.deb Sciences extra diff --git a/debian/iramuteq.debhelper.log b/debian/iramuteq.debhelper.log new file mode 100644 index 0000000..cbd42b1 --- /dev/null +++ b/debian/iramuteq.debhelper.log @@ -0,0 +1,14 @@ +dh_installdirs +dh_installchangelogs +dh_installdocs +dh_installexamples +dh_installman +dh_link +dh_strip +dh_compress +dh_fixperms +dh_installdeb +dh_shlibdeps +dh_gencontrol +dh_md5sums +dh_builddeb diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..177fd94 --- /dev/null +++ b/debian/rules @@ -0,0 +1,112 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + #$(MAKE) + #docbook-to-man debian/iramuteq.sgml > iramuteq.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + #$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/iramuteq. + #$(MAKE) DESTDIR=$(CURDIR)/debian/iramuteq install + mkdir -p $(CURDIR)/debian/iramuteq + cp iramuteq $(CURDIR)/debian/iramuteq/usr/bin/iramuteq + cp *.py $(CURDIR)/debian/iramuteq/usr/share/iramuteq + mkdir -p $(CURDIR)/debian/iramuteq/usr/share/iramuteq/dictionnaires + cp dictionnaires/* $(CURDIR)/debian/iramuteq/usr/share/iramuteq/dictionnaires + mkdir -p $(CURDIR)/debian/iramuteq/usr/share/iramuteq/Rscripts + cp Rscripts/* $(CURDIR)/debian/iramuteq/usr/share/iramuteq/Rscripts + mkdir -p $(CURDIR)/debian/iramuteq/usr/share/iramuteq/images + cp images/* $(CURDIR)/debian/iramuteq/usr/share/iramuteq/images + mkdir -p $(CURDIR)/debian/iramuteq/usr/share/iramuteq/configuration + cp configuration/* $(CURDIR)/debian/iramuteq/usr/share/iramuteq/configuration + cp iramuteq.desktop $(CURDIR)/debian/iramuteq/usr/share/applications + cp images/iraicone.png $(CURDIR)/debian/iramuteq/usr/share/icons + cp son_fin.wav $(CURDIR)/debian/iramuteq/usr/share/iramuteq + mkdir -p $(CURDIR)/debian/iramuteq/usr/share/iramuteq/locale + mkdir -p $(CURDIR)/debian/iramuteq/usr/share/iramuteq/locale/en + mkdir -p $(CURDIR)/debian/iramuteq/usr/share/iramuteq/locale/en/LC_MESSAGES + mkdir -p $(CURDIR)/debian/iramuteq/usr/share/iramuteq/locale/fr_FR + mkdir -p $(CURDIR)/debian/iramuteq/usr/share/iramuteq/locale/fr_FR/LC_MESSAGES + cp locale/en/LC_MESSAGES/iramuteq.mo $(CURDIR)/debian/iramuteq/usr/share/iramuteq/locale/en/LC_MESSAGES + cp locale/fr_FR/LC_MESSAGES/iramuteq.mo $(CURDIR)/debian/iramuteq/usr/share/iramuteq/locale/fr_FR/LC_MESSAGES + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/dialog.py b/dialog.py new file mode 100755 index 0000000..8ff0e0f --- /dev/null +++ b/dialog.py @@ -0,0 +1,3011 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL +import wx +import wx.lib.colourselect as csel +import wx.lib.sized_controls as sc +import wx.lib.filebrowsebutton as filebrowse +import locale +import os +import sys +from KeyFrame import AlcOptFrame +#--------------------------------------------------------------------------- +provider = wx.SimpleHelpProvider() +wx.HelpProvider_Set(provider) + +#--------------------------------------------------------------------------- + + +encodages = [[u'cp1252',u'Windows'], [u'utf-8',u'Linux'], [u'MacRoman',u'MacOs X'], [u'ascii', u'English'], [u'big5', u'Traditional Chinese'], [u'big5hkscs', u'Traditional Chinese'], [u'cp037', u'English'], [u'cp424', u'Hebrew'], [u'cp437', u'English'], [u'cp500', u'Western Europe'], [u'cp737', u'Greek'], [u'cp775', u'Baltic languages'], [u'cp850', u'Western Europe'], [u'cp852', u'Central and Eastern Europe'], [u'cp855', u'Bulg, Byelorus, Mace, Rus, Serb'], [u'cp856', u'Hebrew'], [u'cp857', u'Turkish'], [u'cp860', u'Portuguese'], [u'cp861', u'Icelandic'], [u'cp862', u'Hebrew'], [u'cp863', u'Canadian'], [u'cp864', u'Arabic'], [u'cp865', u'Danish, Norwegian'], [u'cp866', u'Russian'], [u'cp869', u'Greek'], [u'cp874', u'Thai'], [u'cp875', u'Greek'], [u'cp932', u'Japanese'], [u'cp949', u'Korean'], [u'cp950', u'Traditional Chinese'], [u'cp1006', u'Urdu'], [u'cp1026', u'Turkish'], [u'cp1140', u'Western Europe'], [u'cp1250', u'Central and Eastern Europe'], [u'cp1251', u'Bulg, Byelorus, Mace, Rus, Serb'], [u'cp1253', u'Greek'], [u'cp1254', u'Turkish'], [u'cp1255', u'Hebrew'], [u'cp1256', u'Arabic'], [u'cp1257', u'Baltic languages'], [u'cp1258', u'Vietnamese'], [u'euc_jp', u'Japanese'], [u'euc_jis_2004', u'Japanese'], [u'euc_jisx0213', u'Japanese'], [u'euc_kr', u'Korean'], [u'gb2312', u'Simplified Chinese'], [u'gbk', u'Unified Chinese'], [u'gb18030', u'Unified Chinese'], [u'hz', u'Simplified Chinese'], [u'iso2022_jp', u'Japanese'], [u'iso2022_jp_1', u'Japanese'], [u'iso2022_jp_2', u'Jp, K, S C, WE, G'], [u'iso2022_jp_2004', u'Japanese'], [u'iso2022_jp_3', u'Japanese'], [u'iso2022_jp_ext', u'Japanese'], [u'iso2022_kr', u'Korean'], [u'latin_1', u'West Europe'], [u'iso8859_2', u'Central and Eastern Europe'], [u'iso8859_3', u'Esperanto, Maltese'], [u'iso8859_4', u'Baltic languages'], [u'iso8859_5', u'Bulg, Byelorus, Mace, Rus, Serb'], [u'iso8859_6', u'Arabic'], [u'iso8859_7', u'Greek'], [u'iso8859_8', u'Hebrew'], [u'iso8859_9', u'Turkish'], [u'iso8859_10', u'Nordic languages'], [u'iso8859_13', u'Baltic languages'], [u'iso8859_14', u'Celtic languages'], [u'iso8859_15', u'Western Europe'], [u'iso8859_16', u'South-Eastern Europe'], [u'johab', u'Korean'], [u'koi8_r', u'Russian'], [u'koi8_u', u'Ukrainian'], [u'mac_cyrillic', u'Bulg, Byelorus, Mace, Rus, Serb'], [u'mac_greek', u'Greek'], [u'mac_iceland', u'Icelandic'], [u'mac_latin2', u'Central and Eastern Europe'], [u'mac_turkish', u'Turkish'], [u'ptcp154', u'Kazakh'], [u'shift_jis', u'Japanese'], [u'shift_jis_2004', u'Japanese'], [u'shift_jisx0213', u'Japanese'], [u'utf_32', u'all languages'], [u'utf_32_be', u'all languages'], [u'utf_32_le', u'all languages'], [u'utf_16', u'all languages'], [u'utf_16_be', u'all languages (BMP only)'], [u'utf_16_le', u'all languages (BMP only)'], [u'utf_7', u'all languages'], [u'utf_8_sig', u'all languages']] + +class FileOptionDialog(wx.Dialog): + def __init__( + self, parent, ID, title, sep=False, sheet = False, size=wx.DefaultSize, pos=wx.DefaultPosition, + style=wx.DEFAULT_DIALOG_STYLE + ): + + pre = wx.PreDialog() + pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP) + pre.Create(parent, ID, title, pos, size, style) + + self.PostCreate(pre) + + sizer = wx.BoxSizer(wx.VERTICAL) + grid_sizer = wx.FlexGridSizer(5, 2, 2, 2) +############################## + + label = wx.StaticText(self, -1, u"La première ligne contient les noms de colonne") + label.SetHelpText(u"La première ligne contient les noms de colonne") + grid_sizer.Add(label, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + on = ["oui", "non"] + self.radio_box_1 = wx.RadioBox(self, -1, u"", choices=on, majorDimension=0, style=wx.RA_SPECIFY_ROWS) + self.radio_box_1.SetHelpText(u"La première ligne contient les noms de colonne") + grid_sizer.Add(self.radio_box_1, 1, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + +############################## + + label = wx.StaticText(self, -1, u"La première colonne contient un identifiant") + label.SetHelpText(u"La première colonne contient un identifiant") + grid_sizer.Add(label, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + on = ["oui", "non"] + self.radio_box_2 = wx.RadioBox(self, -1, u"", choices=on, majorDimension=0, style=wx.RA_SPECIFY_ROWS) + self.radio_box_2.SetHelpText(u"La première colonne contient un identifiant") + grid_sizer.Add(self.radio_box_2, 1, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + +############################## + if sep: + label = wx.StaticText(self, -1, u"Séparateur de colonne") + label.SetHelpText(u"Quel charactère sépare les colonnes ?") + grid_sizer.Add(label, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + self.colsep = [";", "tabulation", ","] + self.choice3 = wx.Choice(self, -1, (100, 50), choices=self.colsep) + self.choice3.SetHelpText(u"Quel charactère sépare les colonnes ?") + grid_sizer.Add(self.choice3, 1, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + + ############################## + + label = wx.StaticText(self, -1, u"Séparateur de texte") + label.SetHelpText(u"Quel caractère encadre les champs texte ?") + grid_sizer.Add(label, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + self.txtsep = ["\"", "'"] + self.choice4 = wx.Choice(self, -1, (100, 50), choices=self.txtsep) + self.choice4.SetHelpText(u"Quel caractère encadre les champs texte ?") + grid_sizer.Add(self.choice4, 1, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + self.choice3.SetSelection(0) + self.choice4.SetSelection(0) + self.text = wx.StaticText(self, -1, u"Encodage du corpus : ") + grid_sizer.Add(self.text, 1, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + self.le = [enc[0].lower() for enc in encodages] + self.list_encodages = wx.Choice(self, -1, (25, 30), choices=[' - '.join(encodage) for encodage in encodages]) + if locale.getpreferredencoding().lower() == 'mac-roman' : + enc = self.le.index('macroman') + else : + enc = self.le.index(locale.getpreferredencoding().lower()) + self.list_encodages.SetSelection(enc) + grid_sizer.Add(self.list_encodages, 1, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + elif sheet : + label = wx.StaticText(self, -1, u"Feuille ") + grid_sizer.Add(label, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + self.spin1 = wx.SpinCtrl(self, -1, '',size = (100,30), min=1, max=500) + grid_sizer.Add(self.spin1, 1, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + + sizer.Add(grid_sizer, 0, wx.GROW | wx.ALIGN_CENTER_VERTICAL | wx.ALL, 5) + + + line = wx.StaticLine(self, -1, size=(20, -1), style=wx.LI_HORIZONTAL) + sizer.Add(line, 0, wx.GROW | wx.ALIGN_CENTER_VERTICAL | wx.RIGHT | wx.TOP, 5) + + btnsizer = wx.StdDialogButtonSizer() + + if wx.Platform != "__WXMSW__": + btn = wx.ContextHelpButton(self) + btnsizer.AddButton(btn) + + btn = wx.Button(self, wx.ID_OK) + btn.SetHelpText("The OK button completes the dialog") + btn.SetDefault() + btnsizer.AddButton(btn) + + btn = wx.Button(self, wx.ID_CANCEL) + btn.SetHelpText("The Cancel button cnacels the dialog. (Cool, huh?)") + btnsizer.AddButton(btn) + btnsizer.Realize() + + sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL | wx.ALIGN_CENTER_HORIZONTAL, 5) + + self.SetSizer(sizer) + sizer.Fit(self) + + +class ClusterNbDialog(wx.Dialog): + def __init__( + self, LIST_CLASSE, parent, ID, title, size=wx.DefaultSize, pos=wx.DefaultPosition, + style=wx.DEFAULT_DIALOG_STYLE + ): + + pre = wx.PreDialog() + pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP) + pre.Create(parent, ID, title, pos, size, style) + + self.PostCreate(pre) + + # Now continue with the normal construction of the dialog + # contents + sizer = wx.BoxSizer(wx.VERTICAL) + + label = wx.StaticText(self, -1, u"Résultats de la classification") + label.SetHelpText("This is the help text for the label") + sizer.Add(label, 0, wx.ALIGN_CENTRE | wx.ALL, 5) + + box = wx.BoxSizer(wx.HORIZONTAL) + + label = wx.StaticText(self, -1, u"Choisissez le nombre de classes") + label.SetHelpText("This is the help text for the label") + box.Add(label, 0, wx.ALIGN_CENTRE | wx.ALL, 5) + LIST_CLASSE_OK = [] + if type(LIST_CLASSE) != float : + for i in LIST_CLASSE : + LIST_CLASSE_OK.append(str(i)) + else : + LIST_CLASSE_OK.append(str(LIST_CLASSE)) + print str(LIST_CLASSE_OK) + self.list_box_1 = wx.ListBox(self, -1, choices=LIST_CLASSE_OK, style=wx.LB_SINGLE | wx.LB_HSCROLL) + self.list_box_1.SetHelpText("Here's some help text for field #1") + box.Add(self.list_box_1, 1, wx.ALIGN_CENTRE | wx.ALL, 5) + + sizer.Add(box, 0, wx.GROW | wx.ALIGN_CENTER_VERTICAL | wx.ALL, 5) + + +############################### + line = wx.StaticLine(self, -1, size=(20, -1), style=wx.LI_HORIZONTAL) + sizer.Add(line, 0, wx.GROW | wx.ALIGN_CENTER_VERTICAL | wx.RIGHT | wx.TOP, 5) + + btnsizer = wx.StdDialogButtonSizer() + + if wx.Platform != "__WXMSW__": + btn = wx.ContextHelpButton(self) + btnsizer.AddButton(btn) + + btn = wx.Button(self, wx.ID_OK) + btn.SetHelpText("The OK button completes the dialog") + btn.SetDefault() + btnsizer.AddButton(btn) + + btn = wx.Button(self, wx.ID_CANCEL) + btn.SetHelpText("The Cancel button cnacels the dialog. (Cool, huh?)") + btnsizer.AddButton(btn) + btnsizer.Realize() + + sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL | wx.ALL, 5) + + self.SetSizer(sizer) + sizer.Fit(self) + +class EncodeDialog(wx.Dialog): + def __init__(self, *args, **kwds): + # begin wxGlade: MyDialog.__init__ + kwds["style"] = wx.DEFAULT_DIALOG_STYLE + kwds["size"] = wx.Size(100, 60) + kwds["title"] = u'Encodage' + wx.Dialog.__init__(self, *args, **kwds) + self.label_dict = wx.StaticText(self, -1, u"Langue") + langues_n = [u'français', u'english', u'german (expérimentale)', u'italian (expérimentale)'] + self.langues = [u'french', u'english', u'german', 'italian'] + self.choice_dict = wx.Choice(self, -1, choices = langues_n) + self.encodages = encodages + self.text = wx.StaticText(self, -1, u"Encodage du corpus : ") + self.le = [enc[0].lower() for enc in self.encodages] + self.list_encodages = wx.Choice(self, -1, (25, 50), choices=[' - '.join(encodage) for encodage in self.encodages])#style=wx.LB_SINGLE | wx.LB_HSCROLL) + self.button_1 = wx.Button(self, wx.ID_OK, "") + + self.__set_properties() + self.__do_layout() + # end wxGlade + + def __set_properties(self): + # begin wxGlade: MyDialog.__set_properties + self.SetTitle(u"Encodage du corpus") + self.SetMinSize(wx.Size(300, 100)) + if locale.getpreferredencoding().lower() == 'mac-roman' : + enc = self.le.index('macroman') + else : + enc = self.le.index(locale.getpreferredencoding().lower()) + self.list_encodages.SetSelection(enc) + self.choice_dict.SetSelection(0) + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyDialog.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_1.Add(self.text, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_1.Add(self.list_encodages, 1, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_1.Add(self.label_dict, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_1.Add(self.choice_dict, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_1.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + +class CHDDialog(wx.Dialog): + def __init__( + self, parent, ID, title, size=wx.DefaultSize, pos=wx.DefaultPosition, + style=wx.DEFAULT_DIALOG_STYLE | wx.CANCEL + ): + pre = wx.PreDialog() + pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP) + pre.Create(parent, ID, title, pos, size, style) + + self.PostCreate(pre) + + self.colsep = parent.colsep + self.Box = 1 + self.content = parent.content[:] + self.header = parent.header[:] + LABELLIST = [] + for i in self.header: + if len(i) > 60 : + LABELLIST.append(i[0:60]) + else: + LABELLIST.append(i) + self.LABELLISTTOT = LABELLIST + self.LISTVARSUP = [] +#---------------------------------------------------------------------------------------------------- + self.text1 = wx.StaticText(self, -1, u"Variables Actives (au moins 3)") + self.text2 = wx.StaticText(self, -1, u"Variables Supplémentaires (au moins 1)") + self.list_box_1 = wx.ListBox(self, -1, choices=LABELLIST, style=wx.LB_EXTENDED | wx.LB_HSCROLL) + self.list_box_2 = wx.ListBox(self, -1, choices=LABELLIST, style=wx.LB_EXTENDED | wx.LB_HSCROLL) + self.button_cancel = wx.Button(self, wx.ID_CANCEL) + self.button_back = wx.Button(self, wx.ID_BACKWARD) + self.button_forw = wx.Button(self, wx.ID_FORWARD) + self.button_ok = wx.Button(self, wx.ID_OK) + self.button_pref = wx.Button(self, wx.ID_PROPERTIES) + self.button_selectall = wx.Button(self, wx.NewId(), u"Sélectionner tout") + self.__set_properties() + self.__do_layout() + + self.Bind(wx.EVT_BUTTON, self.OnPrec, self.button_back) + self.Bind(wx.EVT_BUTTON, self.OnSuivant, self.button_forw) + self.Bind(wx.EVT_BUTTON, self.OnValider, self.button_ok) + self.Bind(wx.EVT_BUTTON, self.OnSelectAll, self.button_selectall) + # end wxGlade + self.parent = parent + self.TEMPDIR = parent.TEMPDIR + self.num = 0 + + def __set_properties(self): + # begin wxGlade: ConfChi2.__set_properties + self.SetTitle(u"Sélection des variables") + self.list_box_2.Enable(False) + self.button_ok.Enable(False) + self.button_back.Enable(False) + # end wxGlade + + def __do_layout(self): + # begin wxGlade: ConfChi2.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_3 = wx.BoxSizer(wx.HORIZONTAL) + sizer_4 = wx.BoxSizer(wx.HORIZONTAL) + sizer_5 = wx.BoxSizer(wx.HORIZONTAL) + sizer_6 = wx.BoxSizer(wx.HORIZONTAL) + sizer_7 = wx.BoxSizer(wx.HORIZONTAL) + sizer_5.Add(self.text1, 1, wx.CENTER | wx.ALL, 0) + sizer_5.Add(self.text2, 1, wx.CENTER | wx.ALL, 0) + sizer_3.Add(self.list_box_1, 0, wx.EXPAND, 0) + sizer_3.Add(self.list_box_2, 0, wx.EXPAND, 0) + sizer_6.Add(self.button_selectall, 0, wx.ALL | wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_7.Add(self.button_cancel, 0, wx.ALL, 0) + sizer_7.Add(self.button_pref, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_7.Add(self.button_ok, 0, wx.wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_4.Add(self.button_back, 0, wx.ALL, 0) + sizer_4.Add(self.button_forw, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(sizer_5, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(sizer_3, 1, wx.EXPAND, 0) + sizer_2.Add(sizer_6, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(sizer_4, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(sizer_7, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 4) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + # end wxGlade +#--------------FIXME----------------------- +#NETTOYAGE des variables inutiles + def OnSuivant(self, event): + LISTACTIVE = self.list_box_1.GetSelections() + if len(LISTACTIVE) != len(self.LABELLISTTOT) and len(LISTACTIVE) >= 3: + self.button_ok.Enable(True) + self.Box = 2 + self.LISTHEADERINDICE = [] + self.LISTNUMACTIVE = [] + COMPT = 0 + header = self.header[:] + for i in range(0, len(header)): + self.LISTHEADERINDICE.append(i) + for i in LISTACTIVE : + self.LISTNUMACTIVE.append(i) + header.pop(i - COMPT) + self.LISTHEADERINDICE.pop(i - COMPT) + COMPT += 1 + self.LABELLIST = [] + for i in header: + if len(i) > 60 : + self.LABELLIST.append(i[0:60]) + else: + self.LABELLIST.append(i) + self.list_box_2.Clear() + for i in self.LABELLIST : + self.list_box_2.Append(i) + + self.list_box_1.Enable(False) + self.list_box_2.Enable(True) + self.button_forw.Enable(False) + self.button_back.Enable(True) + + def OnValider(self, event): + LISTVARSUPSEL = self.list_box_2.GetSelections() + for i in LISTVARSUPSEL : + self.LISTVARSUP.append(self.LISTHEADERINDICE[i]) + event.Skip() + + def OnPrec(self, event): + self.list_box_1.Enable(True) + self.list_box_2.Enable(False) + self.button_forw.Enable(True) + self.button_back.Enable(False) + self.button_ok.Enable(False) + self.Box = 1 + event.Skip() + + def OnSelectAll(self, event): + if self.Box == 1: + for i in range(len(self.LABELLISTTOT)): + self.list_box_1.Select(i) + else: + for i in range(len(self.LABELLIST)): + self.list_box_2.Select(i) + +class PrefDialog ( wx.Dialog ): + + def __init__( self, parent ): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = u"Préférences", pos = wx.DefaultPosition, size = wx.DefaultSize, style = wx.DEFAULT_DIALOG_STYLE ) + self.parent = parent + + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + + bSizer1 = wx.BoxSizer( wx.VERTICAL ) + + fgSizer1 = wx.FlexGridSizer( 4, 3, 0, 0 ) + fgSizer1.SetFlexibleDirection( wx.BOTH ) + fgSizer1.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText1 = wx.StaticText( self, wx.ID_ANY, u"Jouer un son à la fin des analyses", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText1.Wrap( -1 ) + fgSizer1.Add( self.m_staticText1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_staticText2 = wx.StaticText( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText2.Wrap( -1 ) + fgSizer1.Add( self.m_staticText2, 0, wx.ALL, 5 ) + + m_radioBox1Choices = [ u"oui", u"non" ] + self.m_radioBox1 = wx.RadioBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, m_radioBox1Choices, 1, wx.RA_SPECIFY_COLS ) + self.m_radioBox1.SetSelection( 0 ) + fgSizer1.Add( self.m_radioBox1, 0, wx.ALIGN_RIGHT|wx.ALL, 5 ) + + msg = u"""Vérifier au démarrage si une +nouvelle version est disponible""" + self.m_staticText3 = wx.StaticText( self, wx.ID_ANY, msg, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText3.Wrap( -1 ) + fgSizer1.Add( self.m_staticText3, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_staticText4 = wx.StaticText( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText4.Wrap( -1 ) + fgSizer1.Add( self.m_staticText4, 0, wx.ALL, 5 ) + + m_radioBox2Choices = [ u"oui", u"non" ] + self.m_radioBox2 = wx.RadioBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, m_radioBox2Choices, 1, wx.RA_SPECIFY_COLS ) + self.m_radioBox2.SetSelection( 0 ) + fgSizer1.Add( self.m_radioBox2, 0, wx.ALIGN_RIGHT|wx.ALL, 5 ) + + msg = u"""Vérifier l'installation des +bibliothèques de R""" + self.m_staticText5 = wx.StaticText( self, wx.ID_ANY, msg, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText5.Wrap( -1 ) + fgSizer1.Add( self.m_staticText5, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_staticText6 = wx.StaticText( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText6.Wrap( -1 ) + fgSizer1.Add( self.m_staticText6, 0, wx.ALL, 5 ) + + self.m_button1 = wx.Button( self, wx.ID_ANY, u"Vérifier", wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer1.Add( self.m_button1, 0, wx.ALIGN_RIGHT|wx.ALL, 5 ) + + bSizer1.Add( fgSizer1, 1, wx.EXPAND, 5 ) + if sys.platform == 'win32' : + bSizer2 = wx.BoxSizer( wx.HORIZONTAL ) + + msg = u"""Mémoire maximum allouée + à R (en Mo)""" + self.m_staticText7 = wx.StaticText( self, wx.ID_ANY, msg, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText7.Wrap( -1 ) + bSizer2.Add( self.m_staticText7, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_checkBox1 = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer2.Add( self.m_checkBox1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_spinCtrl1 = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 32, 16000, 1535 ) + bSizer2.Add( self.m_spinCtrl1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_staticline7 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + bSizer2.Add( self.m_staticline7, 0, wx.EXPAND |wx.ALL, 5 ) + + bSizer1.Add( bSizer2, 0, wx.EXPAND, 5 ) + self.m_checkBox1.Bind( wx.EVT_CHECKBOX, self.oncheckmem ) + + bSizer3 = wx.BoxSizer( wx.HORIZONTAL ) + bSizer4 = wx.BoxSizer( wx.HORIZONTAL ) + self.text8 = wx.StaticText( self, wx.ID_ANY, u"Utiliser svdlibc", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.text8.Wrap( -1 ) + fgSizer1.Add( self.text8, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + self.check_svdc = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer4.Add( self.check_svdc, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + bSizer3.Add( bSizer4, 0, wx.EXPAND, 5 ) + self.fbb = filebrowse.FileBrowseButton(self, -1, size=(250, -1), fileMode = 2, fileMask = '*') + bSizer3.Add( self.fbb, 0, wx.EXPAND, 5 ) + self.fbb.SetLabel(u"Chemin : ") + fgSizer1.Add( wx.StaticText(self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ), wx.ID_ANY, wx.ALL, 5) + fgSizer1.Add( bSizer3, 0, wx.ALIGN_RIGHT|wx.ALL, 5 ) + + Rpath_text = wx.StaticText( self, wx.ID_ANY, u"Chemin de R", wx.DefaultPosition, wx.DefaultSize, 0 ) + Rpath_text.Wrap( -1 ) + fgSizer1.Add( Rpath_text, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + fgSizer1.Add( wx.StaticText(self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ), wx.ID_ANY, wx.ALL, 5) + self.Rpath_value = filebrowse.FileBrowseButton(self, -1, size=(350, -1), fileMode = 2, fileMask = '*') + self.Rpath_value.SetLabel(u'Chemin : ') + fgSizer1.Add( self.Rpath_value, 0, wx.ALIGN_RIGHT|wx.ALL, 5 ) + + mirror_text = wx.StaticText( self, wx.ID_ANY, u"Miroir de R par défaut", wx.DefaultPosition, wx.DefaultSize, 0 ) + mirror_text.Wrap( -1 ) + fgSizer1.Add( mirror_text, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + fgSizer1.Add( wx.StaticText(self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ), wx.ID_ANY, wx.ALL, 5) + self.mirror_value = wx.TextCtrl( self, wx.ID_ANY, u'http://cran.univ-lyon1.fr', wx.DefaultPosition, wx.Size( 300,30 ), 0 ) + fgSizer1.Add( self.mirror_value, 0, wx.ALIGN_RIGHT|wx.ALL, 5 ) + + + m_sdbSizer1 = wx.StdDialogButtonSizer() + self.m_sdbSizer1OK = wx.Button( self, wx.ID_OK ) + m_sdbSizer1.AddButton( self.m_sdbSizer1OK ) + self.m_sdbSizer1Cancel = wx.Button( self, wx.ID_CANCEL ) + m_sdbSizer1.AddButton( self.m_sdbSizer1Cancel ) + m_sdbSizer1.Realize(); + bSizer1.Add( m_sdbSizer1, 0, wx.EXPAND, 5 ) + + self.SetSizer( bSizer1 ) + self.Layout() + bSizer1.Fit( self ) + + self.Centre( wx.BOTH ) + + # Connect Events + self.m_sdbSizer1OK.Bind( wx.EVT_BUTTON, self.OnValid ) + self.m_button1.Bind( wx.EVT_BUTTON, parent.OnVerif ) + self.check_svdc.Bind( wx.EVT_CHECKBOX, self.OnSVDC ) + self.__set_properties() + + def __set_properties(self): + self.SetTitle(u"Préférences") + if self.parent.pref.getboolean('iramuteq', 'sound'): val1 = 0 + else : val1 = 1 + self.m_radioBox1.SetSelection(val1) + if self.parent.pref.getboolean('iramuteq', 'checkupdate') : val2 = 0 + else : val2 = 1 + self.m_radioBox2.SetSelection(val2) + if sys.platform == 'win32' : + if self.parent.pref.getboolean('iramuteq', 'R_mem') : + self.m_checkBox1.SetValue(True) + self.m_spinCtrl1.Enable(True) + self.m_spinCtrl1.SetValue(self.parent.pref.getint('iramuteq', 'R_max_mem')) + else : + self.m_checkBox1.SetValue(False) + self.m_spinCtrl1.Enable(False) + if self.parent.pref.getboolean('iramuteq', 'libsvdc') : + self.check_svdc.SetValue(True) + self.fbb.SetValue(self.parent.pref.get('iramuteq', 'libsvdc_path')) + else : + self.check_svdc.SetValue(False) + self.fbb.SetValue(self.parent.pref.get('iramuteq', 'libsvdc_path')) + self.fbb.Enable(False) + self.Rpath_value.SetValue(self.parent.PathPath.get('PATHS', 'rpath')) + self.mirror_value.SetValue(self.parent.pref.get('iramuteq', 'rmirror')) + + def oncheckmem(self, evt): + if self.m_checkBox1.GetValue() : + self.m_spinCtrl1.Enable(True) + else : + self.m_spinCtrl1.Enable(False) + + def OnSVDC(self, evt): + if self.check_svdc.GetValue() : + self.fbb.Enable(True) + else : + self.fbb.Enable(False) + + def OnValid(self, event): + parent = self.parent + if self.m_radioBox1.GetSelection() == 0 : valsound = 'true' + else : valsound = 'false' + parent.pref.set('iramuteq', 'sound', valsound) + if self.m_radioBox2.GetSelection() == 0 : valcheck = 'true' + else : valcheck = 'false' + parent.pref.set('iramuteq', 'checkupdate', valcheck) + if sys.platform == 'win32' : + if self.m_checkBox1.GetValue() : + parent.pref.set('iramuteq', 'R_mem', 'true') + parent.pref.set('iramuteq', 'R_max_mem', str(self.m_spinCtrl1.GetValue())) + else : + parent.pref.set('iramuteq', 'R_mem', 'false') + if self.check_svdc.GetValue() : + parent.pref.set('iramuteq', 'libsvdc', 'true') + else : + parent.pref.set('iramuteq', 'libsvdc', 'false') + parent.pref.set('iramuteq', 'libsvdc_path', self.fbb.GetValue()) + self.parent.pref.set('iramuteq', 'rmirror', self.mirror_value.GetValue()) + file = open(parent.ConfigPath['preferences'], 'w') + parent.pref.write(file) + file.close() + self.parent.PathPath.set('PATHS', 'rpath', self.Rpath_value.GetValue()) + with open(self.parent.ConfigPath['path'], 'w') as f: + self.parent.PathPath.write(f) + self.Close() + +class PrefGraph(wx.Dialog): + def __init__(self, parent, ID, paramgraph, title = '', size=wx.DefaultSize, pos=wx.DefaultPosition, style=wx.DEFAULT_DIALOG_STYLE): + pre = wx.PreDialog() + pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP) + pre.Create(parent, ID, title, pos, size, style) + self.PostCreate(pre) + self.parent = parent + self.paramgraph=paramgraph + self.labeltype = wx.StaticText(self, -1, u'Type de graph') + if self.paramgraph['clnb'] <= 3 : + choix = [u'2D'] + else : + choix=[u'2D' ,u'3D'] + self.choicetype = wx.Choice(self, -1, (100,50), choices=choix) + self.label_1 = wx.StaticText(self, -1, u'Largeur') + self.spin1 = wx.SpinCtrl(self, -1, '',size = (100,30), min=100, max=5000) + self.label_2 = wx.StaticText(self, -1, u'Hauteur') + self.spin2 = wx.SpinCtrl(self, -1, '', size = (100,30), min=100, max=5000) + self.label_what = wx.StaticText(self, -1, u'Représentation') + self.choice1 = wx.Choice(self, -1, (100,50), choices=[u'coordonnées' ,u'corrélation']) + self.label_qui = wx.StaticText(self, -1, u'Variables') + self.choice2 = wx.Choice(self, -1, (100,50), choices=[u'actives' ,u'supplémentaires', u'étoilées', 'classes']) + self.label_3 = wx.StaticText(self, -1, u'Taille du texte') + self.spin3 = wx.SpinCtrl(self, -1, '', size = (100,30), min=1, max=20) + txt = u"""Prendre les x premiers points""" + self.label_4 = wx.StaticText(self, -1, txt) + self.check1 = wx.CheckBox(self, -1) + self.spin_nb = wx.SpinCtrl(self, -1, '', size = (100,30), min=2, max=1000) + txt = u"""Limiter le nombre de points +par le chi2 de liaison aux classes""" + self.label_5 = wx.StaticText(self, -1, txt) + self.check2 = wx.CheckBox(self, -1) + self.spin_chi = wx.SpinCtrl(self, -1, '',size = (100,30), min=2, max=1000) + self.label_6 = wx.StaticText(self, -1, u'Eliminer les recouvrements') + self.check3 = wx.CheckBox(self, -1) + txt = u"""Taille du texte proportionnel +à la masse de la forme""" + self.label_7 = wx.StaticText(self, -1, txt) + self.check4 = wx.CheckBox(self, -1) + self.label_min = wx.StaticText(self, -1, 'min') + self.spin_min = wx.SpinCtrl(self, -1, '',size = (100,30), min = 1, max = 100) + self.label_max = wx.StaticText(self, -1, 'max') + self.spin_max = wx.SpinCtrl(self, -1, '',size = (100,30), min = 1, max = 100) + txt = u"""Taille du texte proportionnel +au chi2 d'association de la forme""" + self.label_tchi = wx.StaticText(self, -1, txt) + self.check_tchi = wx.CheckBox(self, -1) + self.label_min_tchi = wx.StaticText(self, -1, 'min') + self.spin_min_tchi = wx.SpinCtrl(self, -1, '', size = (100,30), min = 1, max = 100) + self.label_max_tchi = wx.StaticText(self, -1, 'max') + self.spin_max_tchi = wx.SpinCtrl(self, -1, '', size = (100,30), min = 1, max = 100) + self.label_8 = wx.StaticText(self, -1, 'Facteur x :') + self.spin_f1 = wx.SpinCtrl(self, -1, '',size = (100,30), min=1, max=self.paramgraph['clnb']-1) + self.label_9 = wx.StaticText(self, -1, 'Facteur y :') + self.spin_f2 = wx.SpinCtrl(self, -1, '',size = (100,30), min=1, max=self.paramgraph['clnb']-1) + self.label_f3 = wx.StaticText(self, -1, 'Facteur z :') + self.spin_f3 = wx.SpinCtrl(self, -1, '',size = (100,30), min=1, max=self.paramgraph['clnb']-1) + self.label_sphere = wx.StaticText(self, -1, u"Transparence des sphères") + self.slider_sphere = wx.Slider(self, -1, 10, 1, 100, size = (255,-1), style = wx.SL_HORIZONTAL | wx.SL_AUTOTICKS | wx.SL_LABELS) + + self.label_film = wx.StaticText(self, -1, 'Faire un film') + self.film = wx.CheckBox(self, -1) + + self.btnsizer = wx.StdDialogButtonSizer() + if wx.Platform != "__WXMSW__": + btn = wx.ContextHelpButton(self) + self.btnsizer.AddButton(btn) + btn = wx.Button(self, wx.ID_OK) + btn.SetHelpText("Ok") + btn.SetDefault() + self.btnsizer.AddButton(btn) + btn = wx.Button(self, wx.ID_CANCEL) + btn.SetHelpText("Annuler") + self.btnsizer.AddButton(btn) + self.btnsizer.Realize() + + self.Bind(wx.EVT_CHECKBOX, self.OnCheck1, self.check1) + self.Bind(wx.EVT_CHECKBOX, self.OnCheck2, self.check2) + self.Bind(wx.EVT_CHECKBOX, self.OnNorm, self.check4) + self.Bind(wx.EVT_CHECKBOX, self.OnCheckTchi, self.check_tchi) + self.Bind(wx.EVT_CHOICE, self.On3D, self.choicetype) + self.Bind(wx.EVT_CHOICE, self.OnPass, self.choice2) + self.__set_properties() + self.OnNorm(wx.EVT_CHECKBOX) + self.OnCheckTchi(wx.EVT_CHECKBOX) + self.__do_layout() + + def __set_properties(self): + self.choicetype.SetSelection(self.paramgraph['typegraph']) + if self.paramgraph['typegraph'] == 0 : + self.film.Enable(False) + self.spin_f3.Enable(False) + self.slider_sphere.Enable(False) + self.choice1.SetSelection(self.paramgraph['what']) + self.choice2.SetSelection(self.paramgraph['qui']) + self.spin_chi.SetValue(self.paramgraph['select_nb']) + self.spin_nb.SetValue(self.paramgraph['select_chi']) + self.spin1.SetValue(self.paramgraph['width']) + self.spin2.SetValue(self.paramgraph['height']) + self.spin3.SetValue(self.paramgraph['taillecar']) + self.spin_nb.SetValue(self.paramgraph['select_nb']) + self.spin_chi.SetValue(self.paramgraph['select_chi']) + self.check1.SetValue(self.paramgraph['do_select_nb']) + self.check2.SetValue(self.paramgraph['do_select_chi']) + self.check3.SetValue(self.paramgraph['over']) + if self.paramgraph['do_select_nb'] : + self.spin_nb.Enable(True) + self.spin_chi.Enable(False) + else : + self.spin_nb.Enable(False) + self.check4.SetValue(self.paramgraph['cex_txt']) + self.spin_min.SetValue(self.paramgraph['txt_min']) + self.spin_max.SetValue(self.paramgraph['txt_max']) + self.check_tchi.SetValue(self.paramgraph['tchi']) + self.spin_min_tchi.SetValue(self.paramgraph['tchi_min']) + self.spin_max_tchi.SetValue(self.paramgraph['tchi_max']) + + if self.paramgraph['do_select_chi'] : + self.spin_nb.Enable(False) + self.spin_chi.Enable(True) + else : + self.spin_chi.Enable(False) + self.spin_f1.SetValue(self.paramgraph['facteur'][0]) + self.spin_f2.SetValue(self.paramgraph['facteur'][1]) + self.spin_f3.SetValue(self.paramgraph['facteur'][2]) + self.slider_sphere.SetValue(self.paramgraph['alpha']) + + def __do_layout(self): + sizer_2 = wx.BoxSizer(wx.VERTICAL) + fsizer = wx.FlexGridSizer(12,2,0,5) + grid_min = wx.FlexGridSizer(1, 2, 0, 0) + grid_max = wx.FlexGridSizer(1, 2, 0, 0) + grid_minmax = wx.FlexGridSizer(1, 2, 0, 0) + grid_min_tchi = wx.FlexGridSizer(1, 2, 0, 0) + grid_max_tchi = wx.FlexGridSizer(1, 2, 0, 0) + grid_minmax_tchi = wx.FlexGridSizer(1, 2, 0, 0) + + sizer_3 = wx.BoxSizer(wx.VERTICAL) + + fsizer.Add(self.labeltype, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(self.choicetype, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + fsizer.Add(self.label_what, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(self.choice1, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + fsizer.Add(self.label_qui, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(self.choice2, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + sizer_h1 = wx.BoxSizer(wx.HORIZONTAL) + sizer_h1.Add(self.label_1, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_h1.Add(self.spin1, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(sizer_h1, 0, wx.ALL, 5) + sizer_h2 = wx.BoxSizer(wx.HORIZONTAL) + sizer_h2.Add(self.label_2, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_h2.Add(self.spin2, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(sizer_h2, 0, wx.ALL, 5) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + fsizer.Add(self.label_3, 0, wx.ALL | wx.LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(self.spin3, 0, wx.ALL | wx.LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + fsizer.Add(self.label_4, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_nb = wx.BoxSizer(wx.HORIZONTAL) + sizer_nb.Add(self.check1, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_nb.Add(self.spin_nb, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(sizer_nb, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + fsizer.Add(self.label_5, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_chi = wx.BoxSizer(wx.HORIZONTAL) + sizer_chi.Add(self.check2, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_chi.Add(self.spin_chi, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(sizer_chi, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + fsizer.Add(self.label_6, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL| wx.ADJUST_MINSIZE, 5) + fsizer.Add(self.check3, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL|wx.ADJUST_MINSIZE, 5) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + fsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + sizer_2.Add(fsizer, 0, wx.EXPAND, 0) + + bsizer_1 = wx.FlexGridSizer(3,3,0,0) + bsizer_1.Add(self.label_7, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + bsizer_1.Add(self.check4, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL|wx.EXPAND, 5) + grid_min.Add(self.label_min, 0,wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_min.Add(self.spin_min, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_max.Add(self.label_max, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_max.Add(self.spin_max, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_minmax.Add(grid_min, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_minmax.Add(grid_max, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + + bsizer_1.Add(grid_minmax, 0, wx.ALL, 5) + + bsizer_1.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + bsizer_1.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + bsizer_1.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + bsizer_1.Add(self.label_tchi, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + bsizer_1.Add(self.check_tchi, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL|wx.EXPAND, 5) + grid_min_tchi.Add(self.label_min_tchi, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_min_tchi.Add(self.spin_min_tchi, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_max_tchi.Add(self.label_max_tchi, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_max_tchi.Add(self.spin_max_tchi, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_minmax_tchi.Add(grid_min_tchi, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + grid_minmax_tchi.Add(grid_max_tchi, 0, wx.ALL | wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 5) + + bsizer_1.Add(grid_minmax_tchi, 0, wx.ALL, 5) + sizer_2.Add(bsizer_1, 0, wx.EXPAND, 5) + + sizer_2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + sizer_f = wx.BoxSizer(wx.HORIZONTAL) + sizer_f.Add(self.label_8, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_f.Add(self.spin_f1, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + + sizer_f.Add(self.label_9, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_f.Add(self.spin_f2, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + + sizer_f.Add(self.label_f3, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_f.Add(self.spin_f3, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_2.Add(sizer_f, 0, wx.EXPAND, 5) + + sizer_2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 5) + + fsizer2 = wx.FlexGridSizer(2,2,0,0) + fsizer2.Add(self.label_sphere, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer2.Add(self.slider_sphere, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + fsizer2.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) + + fsizer2.Add(self.label_film, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + fsizer2.Add(self.film, 0, wx.ALL | wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 5) + sizer_2.Add(fsizer2, 0, wx.EXPAND, 5) + sizer_2.Add(self.btnsizer, 0, wx.ALIGN_CENTER_VERTICAL | wx.ALIGN_CENTER_HORIZONTAL, 5) + self.SetSizer(sizer_2) + sizer_2.Fit(self) + self.Layout() + + def OnCheck1(self,event): + if self.check1.GetValue() : + self.check2.SetValue(False) + self.spin_chi.Enable(False) + self.spin_nb.Enable(True) + else : + self.spin_nb.Enable(False) + + def OnCheck2(self,event): + if self.check2.GetValue() : + self.check1.SetValue(False) + self.spin_nb.Enable(False) + self.spin_chi.Enable(True) + else : + self.spin_chi.Enable(False) + + def OnNorm(self, event): + if not self.check4.GetValue() : + self.spin_min.Disable() + self.spin_max.Disable() + else : + self.spin_min.Enable(True) + self.spin_max.Enable(True) + self.check_tchi.SetValue(False) + self.OnCheckTchi(wx.EVT_CHECKBOX) + + def OnCheckTchi(self, evt) : + if not self.check_tchi.GetValue() : + self.spin_min_tchi.Disable() + self.spin_max_tchi.Disable() + else : + self.spin_min_tchi.Enable(True) + self.spin_max_tchi.Enable(True) + self.check4.SetValue(False) + self.OnNorm(wx.EVT_CHECKBOX) + + def On3D(self, event) : + if event.GetString() == u'3D' : + self.film.Enable(True) + self.spin_f3.Enable(True) + self.slider_sphere.Enable(True) + else : + self.film.Enable(False) + self.spin_f3.Enable(False) + self.slider_sphere.Enable(False) + + def OnPass(self,evt) : + if evt.GetString() != u'actives' : + self.check4.SetValue(False) + self.check4.Enable(False) + self.OnNorm(wx.EVT_CHECKBOX) + else : + self.check4.Enable() + +class PrefSimi ( wx.Dialog ): + + def __init__( self, parent, ID, paramsimi, indices ): + wx.Dialog.__init__ ( self, None, id = wx.ID_ANY, title = u"Paramètres", pos = wx.DefaultPosition, size = wx.Size( -1,-1 ), style = wx.DEFAULT_DIALOG_STYLE ) + self.parent = parent + self.paramsimi=paramsimi + self.indices = indices + + + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + + fgSizer5 = wx.FlexGridSizer( 0, 3, 0, 0 ) + fgSizer5.SetFlexibleDirection( wx.BOTH ) + fgSizer5.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + fgSizer3 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer3.SetFlexibleDirection( wx.BOTH ) + fgSizer3.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText1 = wx.StaticText( self, wx.ID_ANY, u"Sélectionner les colonnes", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText1.Wrap( -1 ) + fgSizer3.Add( self.m_staticText1, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.check_colch = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer3.Add( self.check_colch, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.m_staticline29 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline29, 0, wx.EXPAND, 5 ) + + self.m_staticline291 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline291, 0, wx.EXPAND, 5 ) + if not self.paramsimi['first'] : + + self.m_staticText271 = wx.StaticText( self, wx.ID_ANY, u"Utiliser les coordonnées\nprécédentes", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText271.Wrap( -1 ) + fgSizer3.Add( self.m_staticText271, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.check_coord = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer3.Add( self.check_coord, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.m_staticline36 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline36, 0, wx.EXPAND, 5 ) + + self.m_staticline37 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline37, 0, wx.EXPAND, 5 ) + + self.m_staticText3 = wx.StaticText( self, wx.ID_ANY, u"Indice", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText3.Wrap( -1 ) + fgSizer3.Add( self.m_staticText3, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + choice1Choices = [] + self.choice1 = wx.Choice( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, self.indices, 0 ) + self.choice1.SetSelection( 0 ) + fgSizer3.Add( self.choice1, 0, wx.ALL, 5 ) + + self.m_staticline293 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline293, 0, wx.EXPAND, 5 ) + + self.m_staticline292 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline292, 0, wx.EXPAND, 5 ) + + self.m_staticText4 = wx.StaticText( self, wx.ID_ANY, u"Layout", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText4.Wrap( -1 ) + fgSizer3.Add( self.m_staticText4, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + choice2Choices = [u"random", u"cercle", u"fruchterman reingold", u"kamada kawai", u"graphopt"] + self.choice2 = wx.Choice( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, choice2Choices, 0 ) + self.choice2.SetSelection( 0 ) + fgSizer3.Add( self.choice2, 0, wx.ALL, 5 ) + + self.m_staticline294 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline294, 0, wx.EXPAND, 5 ) + + self.m_staticline295 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline295, 0, wx.EXPAND, 5 ) + + self.m_staticText5 = wx.StaticText( self, wx.ID_ANY, u"Type de graph", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText5.Wrap( -1 ) + fgSizer3.Add( self.m_staticText5, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + choice3Choices = [u"dynamique", u"statique", u"3D"] + self.choice3 = wx.Choice( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, choice3Choices, 0 ) + self.choice3.SetSelection( 0 ) + fgSizer3.Add( self.choice3, 0, wx.ALL, 5 ) + + self.m_staticline296 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline296, 0, wx.EXPAND, 5 ) + + self.m_staticline297 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline297, 0, wx.EXPAND, 5 ) + + self.m_staticText8 = wx.StaticText( self, wx.ID_ANY, u"Arbre maximum", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText8.Wrap( -1 ) + fgSizer3.Add( self.m_staticText8, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.check1 = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer3.Add( self.check1, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.m_staticline298 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline298, 0, wx.EXPAND, 5 ) + + self.m_staticline299 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline299, 0, wx.EXPAND, 5 ) + + self.m_staticText91 = wx.StaticText( self, wx.ID_ANY, u"Graph à seuil", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText91.Wrap( -1 ) + fgSizer3.Add( self.m_staticText91, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + bSizer21 = wx.BoxSizer( wx.HORIZONTAL ) + + self.check_seuil = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer21.Add( self.check_seuil, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.spin_seuil = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 1, 10000, 1 ) + bSizer21.Add( self.spin_seuil, 0, wx.ALL, 5 ) + + fgSizer3.Add( bSizer21, 1, wx.EXPAND, 5 ) + + self.m_staticline2910 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline2910, 0, wx.EXPAND, 5 ) + + self.m_staticline2911 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline2911, 0, wx.EXPAND, 5 ) + + self.m_staticText19 = wx.StaticText( self, wx.ID_ANY, u"Texte sur les sommets", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText19.Wrap( -1 ) + fgSizer3.Add( self.m_staticText19, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.check_vlab = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer3.Add( self.check_vlab, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.m_staticline2912 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline2912, 0, wx.EXPAND, 5 ) + + self.m_staticline2913 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline2913, 0, wx.EXPAND, 5 ) + + self.m_staticText20 = wx.StaticText( self, wx.ID_ANY, u"Indices sur les arêtes", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText20.Wrap( -1 ) + fgSizer3.Add( self.m_staticText20, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.check_elab = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer3.Add( self.check_elab, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.m_staticline2914 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline2914, 0, wx.EXPAND, 5 ) + + self.m_staticline2915 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline2915, 0, wx.EXPAND, 5 ) + + self.m_staticText27 = wx.StaticText( self, wx.ID_ANY, u"Taille du texte", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText27.Wrap( -1 ) + fgSizer3.Add( self.m_staticText27, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.spin_cex = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 100, 10 ) + fgSizer3.Add( self.spin_cex, 0, wx.ALL, 5 ) + + self.m_staticline2916 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline2916, 0, wx.EXPAND, 5 ) + + self.m_staticline2917 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline2917, 0, wx.EXPAND, 5 ) + + if 'bystar' in self.paramsimi : + self.m_staticText40 = wx.StaticText( self, wx.ID_ANY, u"Sélectionner une variable", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText40.Wrap( -1 ) + fgSizer3.Add( self.m_staticText40, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.check_bystar = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer3.Add( self.check_bystar, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.m_staticline3200 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline3200, 0, wx.EXPAND, 5 ) + self.m_staticline3201 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer3.Add( self.m_staticline3201, 0, wx.EXPAND, 5 ) + + fgSizer5.Add( fgSizer3, 1, wx.EXPAND, 5 ) + + self.m_staticline5 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_VERTICAL ) + self.m_staticline5.SetForegroundColour( wx.Colour( 0, 0, 0 ) ) + + fgSizer5.Add( self.m_staticline5, 0, wx.EXPAND|wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 5 ) + + fgSizer51 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer51.SetFlexibleDirection( wx.BOTH ) + fgSizer51.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText6 = wx.StaticText( self, wx.ID_ANY, u"Taille du graphique", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText6.Wrap( -1 ) + fgSizer51.Add( self.m_staticText6, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + fgSizer31 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer31.SetFlexibleDirection( wx.BOTH ) + fgSizer31.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText9 = wx.StaticText( self, wx.ID_ANY, u"hauteur", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText9.Wrap( -1 ) + fgSizer31.Add( self.m_staticText9, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_height = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 10, 100000, 800 ) + fgSizer31.Add( self.spin_height, 0, wx.ALL, 5 ) + + self.m_staticText10 = wx.StaticText( self, wx.ID_ANY, u"largeur", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText10.Wrap( -1 ) + fgSizer31.Add( self.m_staticText10, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_width = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 10, 100000, 800 ) + fgSizer31.Add( self.spin_width, 0, wx.ALL, 5 ) + + fgSizer51.Add( fgSizer31, 1, wx.EXPAND, 5 ) + + self.m_staticline3 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline3, 0, wx.EXPAND, 5 ) + + self.m_staticline4 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline4, 0, wx.EXPAND, 5 ) + + self.m_staticText101 = wx.StaticText( self, wx.ID_ANY, u"Taille des sommets \nproportionnelle à l'effectif\n(les scores sont normalisés)", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText101.Wrap( -1 ) + fgSizer51.Add( self.m_staticText101, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + bSizer7 = wx.BoxSizer( wx.HORIZONTAL ) + + bSizer9 = wx.BoxSizer( wx.VERTICAL ) + + self.check2 = wx.CheckBox( self, wx.ID_ANY, u"eff.", wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer9.Add( self.check2, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + if 'sfromchi' in self.paramsimi : + self.checki = wx.CheckBox( self, wx.ID_ANY, u"chi2", wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer9.Add( self.checki, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + bSizer7.Add( bSizer9, 0, wx.ALIGN_CENTER_VERTICAL, 5 ) + + fgSizer7 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer7.SetFlexibleDirection( wx.BOTH ) + fgSizer7.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText11 = wx.StaticText( self, wx.ID_ANY, u"min", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText11.Wrap( -1 ) + fgSizer7.Add( self.m_staticText11, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_tvmin = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 100, 0 ) + fgSizer7.Add( self.spin_tvmin, 0, wx.ALL, 5 ) + + self.m_staticText12 = wx.StaticText( self, wx.ID_ANY, u"max", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText12.Wrap( -1 ) + fgSizer7.Add( self.m_staticText12, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_tvmax = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 100, 0 ) + fgSizer7.Add( self.spin_tvmax, 0, wx.ALL, 5 ) + + bSizer7.Add( fgSizer7, 1, wx.EXPAND, 5 ) + + fgSizer51.Add( bSizer7, 1, wx.EXPAND, 5 ) + + self.m_staticline31 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline31, 0, wx.EXPAND, 5 ) + + self.m_staticline32 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline32, 0, wx.EXPAND, 5 ) + + self.m_staticText1011 = wx.StaticText( self, wx.ID_ANY, u"Taille du texte des sommets \nproportionnelle à l'effectif\n(les scores sont normalisés)", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText1011.Wrap( -1 ) + fgSizer51.Add( self.m_staticText1011, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + bSizer71 = wx.BoxSizer( wx.HORIZONTAL ) + + bSizer8 = wx.BoxSizer( wx.VERTICAL ) + + self.check_vcex = wx.CheckBox( self, wx.ID_ANY, u"eff.", wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer8.Add( self.check_vcex, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + if 'cexfromchi' in self.paramsimi : + + self.checkit = wx.CheckBox( self, wx.ID_ANY, u"chi2", wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer8.Add( self.checkit, 0, wx.ALL, 5 ) + + bSizer71.Add( bSizer8, 0, wx.ALIGN_CENTER_VERTICAL, 5 ) + + fgSizer71 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer71.SetFlexibleDirection( wx.BOTH ) + fgSizer71.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText111 = wx.StaticText( self, wx.ID_ANY, u"min", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText111.Wrap( -1 ) + fgSizer71.Add( self.m_staticText111, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_vcexmin = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 100, 0 ) + fgSizer71.Add( self.spin_vcexmin, 0, wx.ALL, 5 ) + + self.m_staticText121 = wx.StaticText( self, wx.ID_ANY, u"max", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText121.Wrap( -1 ) + fgSizer71.Add( self.m_staticText121, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_vcexmax = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 100, 0 ) + fgSizer71.Add( self.spin_vcexmax, 0, wx.ALL, 5 ) + + bSizer71.Add( fgSizer71, 1, wx.EXPAND, 5 ) + + fgSizer51.Add( bSizer71, 1, wx.EXPAND, 5 ) + + self.m_staticline321 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline321, 0, wx.EXPAND, 5 ) + + self.m_staticline322 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline322, 0, wx.EXPAND, 5 ) + + self.m_staticText10111 = wx.StaticText( self, wx.ID_ANY, u"Largeur des arêtes\nproportionnelle à l'indice", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText10111.Wrap( -1 ) + fgSizer51.Add( self.m_staticText10111, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + bSizer711 = wx.BoxSizer( wx.HORIZONTAL ) + + self.check3 = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer711.Add( self.check3, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + fgSizer711 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer711.SetFlexibleDirection( wx.BOTH ) + fgSizer711.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText1111 = wx.StaticText( self, wx.ID_ANY, u"min", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText1111.Wrap( -1 ) + fgSizer711.Add( self.m_staticText1111, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_temin = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 100, 0 ) + fgSizer711.Add( self.spin_temin, 0, wx.ALL, 5 ) + + self.m_staticText1211 = wx.StaticText( self, wx.ID_ANY, u"max", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText1211.Wrap( -1 ) + fgSizer711.Add( self.m_staticText1211, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_temax = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 100, 0 ) + fgSizer711.Add( self.spin_temax, 0, wx.ALL, 5 ) + + bSizer711.Add( fgSizer711, 1, wx.EXPAND, 5 ) + + fgSizer51.Add( bSizer711, 1, wx.EXPAND, 5 ) + + self.m_staticline33 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline33, 0, wx.EXPAND, 5 ) + + self.m_staticline34 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline34, 0, wx.EXPAND, 5 ) + + self.m_staticText28 = wx.StaticText( self, wx.ID_ANY, u"Gradiant de gris sur les textes en fonction \nde l'effectif (du chi2) (0=noir; 1=blanc)", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText28.Wrap( -1 ) + fgSizer51.Add( self.m_staticText28, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + bSizer10 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_checkBox14 = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer10.Add( self.m_checkBox14, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + bSizer11 = wx.BoxSizer( wx.VERTICAL ) + + bSizer12 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText31 = wx.StaticText( self, wx.ID_ANY, u"min", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText31.Wrap( -1 ) + bSizer12.Add( self.m_staticText31, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_spinCtrl14 = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 10, 0 ) + bSizer12.Add( self.m_spinCtrl14, 0, wx.ALL, 5 ) + + bSizer11.Add( bSizer12, 1, wx.EXPAND, 5 ) + + bSizer13 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText32 = wx.StaticText( self, wx.ID_ANY, u"max", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText32.Wrap( -1 ) + bSizer13.Add( self.m_staticText32, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_spinCtrl15 = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 10, 10 ) + bSizer13.Add( self.m_spinCtrl15, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + bSizer11.Add( bSizer13, 1, wx.EXPAND, 5 ) + + bSizer10.Add( bSizer11, 1, wx.EXPAND, 5 ) + + fgSizer51.Add( bSizer10, 1, wx.ALIGN_CENTER_VERTICAL|wx.EXPAND, 5 ) + + self.m_staticline3311 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline3311, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline33111 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline33111, 0, wx.EXPAND |wx.ALL, 5 ) + bSizer5 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText21 = wx.StaticText( self, wx.ID_ANY, u"Couleur des sommets", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText21.Wrap( -1 ) + bSizer5.Add( self.m_staticText21, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.cols = wx.ColourPickerCtrl( self, wx.ID_ANY, wx.Colour( 255, 0, 0 ), wx.DefaultPosition, wx.Size( 10,10 ), wx.CLRP_DEFAULT_STYLE ) + bSizer5.Add( self.cols, 0, wx.ALL, 5 ) + + fgSizer51.Add( bSizer5, 1, wx.EXPAND, 5 ) + + bSizer6 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText22 = wx.StaticText( self, wx.ID_ANY, u"Couleur des arêtes", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText22.Wrap( -1 ) + bSizer6.Add( self.m_staticText22, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.cola = wx.ColourPickerCtrl( self, wx.ID_ANY, wx.Colour( 208, 208, 208 ), wx.DefaultPosition, wx.DefaultSize, wx.CLRP_DEFAULT_STYLE ) + bSizer6.Add( self.cola, 0, wx.ALL, 5 ) + + fgSizer51.Add( bSizer6, 1, wx.EXPAND, 5 ) + + self.m_staticline331 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline331, 0, wx.EXPAND, 5 ) + + self.m_staticline332 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline332, 0, wx.EXPAND, 5 ) + + self.m_staticText23 = wx.StaticText( self, wx.ID_ANY, u"Taille des sommets unique", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText23.Wrap( -1 ) + fgSizer51.Add( self.m_staticText23, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + bSizer72 = wx.BoxSizer( wx.HORIZONTAL ) + + self.check_s_size = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer72.Add( self.check_s_size, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.spin_tv = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 100, 10 ) + bSizer72.Add( self.spin_tv, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + fgSizer51.Add( bSizer72, 1, wx.EXPAND, 5 ) + + self.m_staticline333 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline333, 0, wx.EXPAND, 5 ) + + self.m_staticline334 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline334, 0, wx.EXPAND, 5 ) + + self.m_staticText24 = wx.StaticText( self, wx.ID_ANY, u"Transparence des sphères", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText24.Wrap( -1 ) + fgSizer51.Add( self.m_staticText24, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.slider_sphere = wx.Slider( self, wx.ID_ANY, 10, 0, 100, wx.DefaultPosition, wx.DefaultSize, wx.SL_HORIZONTAL|wx.SL_LABELS ) + fgSizer51.Add( self.slider_sphere, 0, wx.ALL|wx.EXPAND|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.m_staticline335 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline335, 0, wx.EXPAND, 5 ) + + self.m_staticline336 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline336, 0, wx.EXPAND, 5 ) + + self.m_staticText25 = wx.StaticText( self, wx.ID_ANY, u"Faire un film", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText25.Wrap( -1 ) + fgSizer51.Add( self.m_staticText25, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.film = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer51.Add( self.film, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 ) + + self.m_staticline2918 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline2918, 0, wx.EXPAND, 5 ) + + self.m_staticline2919 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer51.Add( self.m_staticline2919, 0, wx.EXPAND, 5 ) + + + fgSizer51.AddSpacer( ( 0, 0), 1, wx.EXPAND, 5 ) + + m_sdbSizer2 = wx.StdDialogButtonSizer() + self.m_sdbSizer2OK = wx.Button( self, wx.ID_OK ) + m_sdbSizer2.AddButton( self.m_sdbSizer2OK ) + self.m_sdbSizer2Cancel = wx.Button( self, wx.ID_CANCEL ) + m_sdbSizer2.AddButton( self.m_sdbSizer2Cancel ) + m_sdbSizer2.Realize(); + fgSizer51.Add( m_sdbSizer2, 1, wx.EXPAND, 5 ) + + fgSizer5.Add( fgSizer51, 1, wx.EXPAND, 5 ) + + self.SetSizer( fgSizer5 ) + self.__set_properties() + + self.Layout() + fgSizer5.Fit( self ) + + self.Centre( wx.BOTH ) + + # Connect Events + if not self.paramsimi['first'] : + self.check_coord.Bind( wx.EVT_CHECKBOX, self.OnKeepCoords ) + self.choice3.Bind( wx.EVT_CHOICE, self.OnChangeType ) + self.check2.Bind( wx.EVT_CHECKBOX, self.OnCheck2 ) + if 'cexfromchi' in self.paramsimi : + self.checkit.Bind( wx.EVT_CHECKBOX, self.OnCheckit ) + if 'sfromchi' in self.paramsimi : + self.checki.Bind( wx.EVT_CHECKBOX, self.OnChecki ) + self.check_vcex.Bind( wx.EVT_CHECKBOX, self.OnCheck_vcex ) + self.check_s_size.Bind( wx.EVT_CHECKBOX, self.OnCheck_s_size ) + + def __set_properties(self): + self.choice1.SetSelection(self.paramsimi['coeff']) + self.choice2.SetSelection(self.paramsimi['layout']) + self.choice3.SetSelection(self.paramsimi['type']) + if self.paramsimi['type'] != 2 : + self.film.Enable(False) + self.slider_sphere.Enable(False) + else : + self.film.Enable(True) + self.slider_sphere.Enable(True) + self.check1.SetValue(self.paramsimi['arbremax']) + self.check_vlab.SetValue(self.paramsimi['label_v']) + self.check_elab.SetValue(self.paramsimi['label_e']) + self.check2.SetValue(self.paramsimi['tvprop']) + self.spin_tv.SetValue(self.paramsimi['coeff_tv_nb']) + self.check_s_size.SetValue(self.paramsimi['coeff_tv']) + self.spin_tvmin.SetValue(self.paramsimi['tvmin']) + self.spin_tvmax.SetValue(self.paramsimi['tvmax']) + self.check3.SetValue(self.paramsimi['coeff_te']) + self.spin_temin.SetValue(self.paramsimi['coeff_temin']) + self.spin_temax.SetValue(self.paramsimi['coeff_temax']) + self.check_vcex.SetValue(self.paramsimi['vcex']) + self.spin_vcexmin.SetValue(self.paramsimi['vcexmin']) + self.spin_vcexmax.SetValue(self.paramsimi['vcexmax']) + self.spin_cex.SetValue(self.paramsimi['cex']) + self.check_seuil.SetValue(self.paramsimi['seuil_ok']) + self.spin_seuil.SetValue(self.paramsimi['seuil']) + self.cols.SetColour(self.paramsimi['cols']) + self.cola.SetColour(self.paramsimi['cola']) + self.spin_width.SetValue(self.paramsimi['width']) + self.spin_height.SetValue(self.paramsimi['height']) + if 'cexfromchi' in self.paramsimi : + self.checkit.SetValue(self.paramsimi['cexfromchi']) + if 'sfromchi' in self.paramsimi : + self.checki.SetValue(self.paramsimi['sfromchi']) + if not self.paramsimi['first'] : + self.check_coord.SetValue(self.paramsimi['keep_coord']) + self.OnKeepCoords(wx.EVT_CHECKBOX) + if self.paramsimi.get('bystar', False) : + self.check_bystar.SetValue(True) + self.stars = self.paramsimi['stars'] + self.slider_sphere.SetValue(self.paramsimi['alpha']) + self.film.SetValue(self.paramsimi['film']) + + def OnCheck_s_size(self, evt): + if self.check_s_size.GetValue() : + if 'cexfromchi' in self.paramsimi : + self.checki.SetValue(False) + self.check2.SetValue(False) + self.spin_tvmin.Enable(False) + self.spin_tvmax.Enable(False) + self.spin_tv.Enable(True) + else : + self.check2.SetValue(True) + self.spin_tvmin.Enable(True) + self.spin_tvmax.Enable(True) + self.spin_tv.Enable(False) + + def OnCheck2(self, evt): + if self.check2.GetValue(): + self.check_s_size.SetValue(False) + if 'cexfromchi' in self.paramsimi : + self.checki.SetValue(False) + self.spin_tvmin.Enable(True) + self.spin_tvmax.Enable(True) + self.spin_tv.Enable(False) + else : + self.check_s_size.SetValue(True) + self.spin_tvmin.Enable(False) + self.spin_tvmax.Enable(False) + self.spin_tv.Enable(True) + + def OnChecki(self, evt): + if 'sfromchi' in self.paramsimi : + if self.checki.GetValue() : + self.check_s_size.SetValue(False) + self.check2.SetValue(False) + self.spin_tvmin.Enable(True) + self.spin_tvmax.Enable(True) + self.spin_tv.Enable(False) + else : + self.check_s_size.SetValue(True) + #self.check2.SetValue(True) + self.spin_tvmin.Enable(False) + self.spin_tvmax.Enable(False) + self.spin_tv.Enable(True) + + def OnCheckit(self,evt) : + if 'cexfromchi' in self.paramsimi : + if self.checkit.GetValue() : + if self.check_vcex.GetValue() : + self.check_vcex.SetValue(False) + + def OnCheck_vcex(self, evt): + if self.check_vcex.GetValue() : + if 'checkit' in dir(self) : + if self.checkit.GetValue() : + self.checkit.SetValue(False) + + def OnChangeType(self, event) : + if event.GetInt() != 1 : + self.spin_width.Enable(False) + self.spin_height.Enable(False) + else : + self.spin_width.Enable(True) + self.spin_height.Enable(True) + if event.GetInt() != 2 : + self.film.Enable(False) + self.slider_sphere.Enable(False) + else : + self.film.Enable(True) + self.slider_sphere.Enable(True) + + def OnKeepCoords(self, event): + if self.check_coord.GetValue() : + self.choice1.SetSelection(self.paramsimi['coeff']) + self.choice2.SetSelection(self.paramsimi['layout']) + self.check_seuil.SetValue(self.paramsimi['seuil_ok']) + self.spin_seuil.SetValue(self.paramsimi['seuil']) + self.choice1.Disable() + self.choice2.Disable() + self.check_seuil.Disable() + self.spin_seuil.Disable() + self.check_colch.SetValue(False) + self.check_colch.Disable() + else : + self.choice1.Enable(True) + self.choice2.Enable(True) + self.check_seuil.Enable(True) + self.spin_seuil.Enable(True) + self.check_colch.Enable(True) + +class SelectColDial ( wx.Dialog ): + + def __init__( self, parent ): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = wx.EmptyString, pos = wx.DefaultPosition, size = wx.Size( 200,300 ), style = wx.DEFAULT_DIALOG_STYLE ) + + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + + self.bSizer2 = wx.BoxSizer( wx.VERTICAL ) + + #self.m_checkList2 = wx.CheckListBox( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, ['r','t','y'], 0 ) + #bSizer2.Add( self.m_checkList2, 2, wx.ALL|wx.EXPAND, 5 ) + + self.m_sdbSizer2 = wx.StdDialogButtonSizer() + self.m_sdbSizer2OK = wx.Button( self, wx.ID_OK ) + #m_sdbSizer2.AddButton( self.m_sdbSizer2OK ) + #self.m_sdbSizer2Cancel = wx.Button( self, wx.ID_CANCEL ) + #m_sdbSizer2.AddButton( self.m_sdbSizer2Cancel ) + #m_sdbSizer2.Realize(); + #self.bSizer2.Add( m_sdbSizer2, 0, wx.EXPAND, 5 ) + + self.SetSizer( self.bSizer2 ) + self.Layout() + + self.Centre( wx.BOTH ) + + def __del__( self ): + pass + +class PrefExport(wx.Dialog): + def __init__(self, parent, *args, **kwds): + kwds['style'] = wx.OK|wx.DEFAULT_DIALOG_STYLE + wx.Dialog.__init__(self, *args, **kwds) + self.fileout = "" + self.parent = parent + sizer = wx.BoxSizer(wx.VERTICAL) + box = wx.BoxSizer(wx.HORIZONTAL) + box3 = wx.BoxSizer(wx.HORIZONTAL) + self.label_lem = wx.StaticText(self, -1, u"Corpus Lemmatisé") + box3.Add(self.label_lem, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + self.radio_lem = wx.RadioBox(self, -1, u"", choices=['oui', 'non'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + box3.Add(self.radio_lem, 0, wx.ALIGN_RIGHT, 5) + sizer.Add(box3, 0, wx.GROW|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5) + self.label_txt = wx.StaticText(self, -1, u"Exporter pour...") + box.Add(self.label_txt, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + self.radio_type = wx.RadioBox(self, -1, u"", choices=['IRaMuTeQ/ALCESTE', 'Lexico'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + box.Add(self.radio_type, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + sizer.Add(box, 0, wx.GROW|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5) + box2 = wx.BoxSizer(wx.HORIZONTAL) + self.txt2 = wx.StaticText(self, -1, u"Fichier en sortie") + box2.Add(self.txt2, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + self.fbb = filebrowse.FileBrowseButton(self, -1, size=(450, -1), fileMode = 2) + box2.Add(self.fbb, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + self.fbb.SetLabel("") + sizer.Add(box2, 0, wx.GROW|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5) + + btnsizer = wx.StdDialogButtonSizer() + btn = wx.Button(self, wx.ID_CANCEL) + btnsizer.AddButton(btn) + btn_ok = wx.Button(self, wx.ID_OK) + btn_ok.SetDefault() + btnsizer.AddButton(btn_ok) + btnsizer.Realize() + sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL|wx.ALIGN_RIGHT, 5) + self.Bind(wx.EVT_BUTTON, self.check_file, btn_ok) + self.SetSizer(sizer) + sizer.Fit(self) + + def check_file(self, evt) : + if evt.GetId() == wx.ID_OK : + if os.path.exists(self.fbb.GetValue()): + dlg = wx.MessageDialog(self, u"%s\nCe fichier existe, continuer quand même ?" % self.fbb.GetValue(), 'ATTENTION', wx.NO | wx.YES | wx.ICON_WARNING) + dlg.CenterOnParent() + if dlg.ShowModal() not in [wx.ID_NO, wx.ID_CANCEL]: + self.EndModal(wx.ID_OK) + else : + self.EndModal(wx.ID_OK) + else : + self.EndModal(wx.ID_CANCEL) + +class PrefProfTypes(wx.Dialog): + def __init__(self, parent, *args, **kwds): + kwds['style'] = wx.OK|wx.DEFAULT_DIALOG_STYLE + wx.Dialog.__init__(self, parent, *args, **kwds) + self.fileout = "" + self.parent = parent + sizer = wx.BoxSizer(wx.VERTICAL) + box = wx.BoxSizer(wx.HORIZONTAL) + box3 = wx.BoxSizer(wx.HORIZONTAL) + self.label_txt = wx.StaticText(self, -1, u"Préférences") + box.Add(self.label_txt, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + self.radio_type = wx.RadioBox(self, -1, u"", choices=['comme ALCESTE', 'comme Lexico'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + box.Add(self.radio_type, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + sizer.Add(box, 0, wx.GROW|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5) + box2 = wx.BoxSizer(wx.HORIZONTAL) + self.txt2 = wx.StaticText(self, -1, u"Fichier en sortie") + box2.Add(self.txt2, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + self.fbb = filebrowse.FileBrowseButton(self, -1, size=(450, -1), fileMode = 2) + box2.Add(self.fbb, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + self.fbb.SetLabel("") + sizer.Add(box2, 0, wx.GROW|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5) + + btnsizer = wx.StdDialogButtonSizer() + btn = wx.Button(self, wx.ID_CANCEL) + btnsizer.AddButton(btn) + btn_ok = wx.Button(self, wx.ID_OK) + btn_ok.SetDefault() + btnsizer.AddButton(btn_ok) + btnsizer.Realize() + sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL|wx.ALIGN_RIGHT, 5) + #self.Bind(wx.EVT_BUTTON, self.check_file, btn_ok) + self.SetSizer(sizer) + sizer.Fit(self) + +class PrefSimpleFile(wx.Dialog): + def __init__(self, parent, *args, **kwds): + kwds['style'] = wx.OK|wx.DEFAULT_DIALOG_STYLE + if 'mask' in kwds : + self.mask = kwds['mask'] + del(kwds['mask']) + else : self.mask = '*.*' + wx.Dialog.__init__(self, *args, **kwds) + self.fileout = "" + self.parent = parent + sizer = wx.BoxSizer(wx.VERTICAL) + box2 = wx.BoxSizer(wx.HORIZONTAL) + self.txt2 = wx.StaticText(self, -1, u"Fichier en sortie") + box2.Add(self.txt2, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + self.fbb = filebrowse.FileBrowseButton(self, -1, size=(450, -1), fileMode = 2, fileMask = self.mask) + box2.Add(self.fbb, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + self.fbb.SetLabel("") + sizer.Add(box2, 0, wx.GROW|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5) + + btnsizer = wx.StdDialogButtonSizer() + btn = wx.Button(self, wx.ID_CANCEL) + btnsizer.AddButton(btn) + btn_ok = wx.Button(self, wx.ID_OK) + btn_ok.SetDefault() + btnsizer.AddButton(btn_ok) + btnsizer.Realize() + sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL|wx.ALIGN_RIGHT, 5) + self.Bind(wx.EVT_BUTTON, self.check_file, btn_ok) + self.SetSizer(sizer) + sizer.Fit(self) + + def check_file(self, evt) : + if evt.GetId() == wx.ID_OK : + if os.path.exists(self.fbb.GetValue()): + dlg = wx.MessageDialog(self, u"%s\nCe fichier existe, continuer quand même ?" % self.fbb.GetValue(), 'ATTENTION', wx.NO | wx.YES | wx.ICON_WARNING) + dlg.CenterOnParent() + if dlg.ShowModal() not in [wx.ID_NO, wx.ID_CANCEL]: + self.EndModal(wx.ID_OK) + else : + self.EndModal(wx.ID_OK) + else : + self.EndModal(wx.ID_CANCEL) + + +class StatDialog(wx.Dialog): + def __init__(self, parent, *args, **kwds): + kwds['style'] = wx.DEFAULT_DIALOG_STYLE + wx.Dialog.__init__(self, *args, **kwds) + self.fileout = "" + self.parent = parent + #box = wx.BoxSizer(wx.HORIZONTAL) + self.label_lem = wx.StaticText(self, -1, u"Lemmatisation") + self.radio_lem = wx.RadioBox(self, -1, u"", choices=['oui', 'non'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + #sizer.Add(box, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT, 5) + #box2 = wx.BoxSizer(wx.HORIZONTAL) + #self.txt_exp = wx.StaticText(self, -1, u"Utiliser le Dict. des expressions") + #self.exp = wx.RadioBox(self, -1, u"", choices=['oui', 'non'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + #self.label_uce = wx.StaticText(self, -1, u"Construire des UCE") + #self.check_uce = wx.CheckBox(self, -1) + #txt = """Nombre d'occurrences par uce""" + #self.label_occuce = wx.StaticText(self, -1, txt) + #self.spin_ctrl_4 = wx.SpinCtrl(self, -1, "",size = (100,30), min=10, max=1000, initial = 35) + #txt = u"""Fréquence minimum d'une forme +#analysée (0 = non utilisé)""" + #self.label_8 = wx.StaticText(self, -1, txt) + #self.spin_ctrl_5 = wx.SpinCtrl(self, -1, "",size = (100,30), min=0, max=1000, initial=0) + #self.label_max_actives = wx.StaticText(self, -1, u"Nombre maximum de formes analysées") + #self.spin_max_actives = wx.SpinCtrl(self, -1, "",size = (100,30), min=20, max=10000, initial=1500) + self.label_4 = wx.StaticText(self, -1, u"Configuration des clés d'analyse") + self.button_5 = wx.Button(self, wx.ID_PREFERENCES, "") + + #self.Bind(wx.EVT_CHECKBOX, self.OnCheckUce, self.check_uce) + #self.Bind(wx.EVT_SPINCTRL, self.OnSpin, self.spin_ctrl_5) + self.Bind(wx.EVT_BUTTON, self.OnKeys, self.button_5) + self.__do_layout() + self.__set_properties() + + def __do_layout(self) : + first = wx.BoxSizer(wx.VERTICAL) + sizer = wx.FlexGridSizer(4,2,0,0) + sizer.Add(self.label_lem, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + sizer.Add(self.radio_lem, 0, wx.ALIGN_LEFT, 5) + sizer.Add(wx.StaticLine(self),0, wx.ALIGN_LEFT, 5) + sizer.Add(wx.StaticLine(self),0, wx.ALIGN_LEFT, 5) + #sizer.Add(self.txt_exp, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + #sizer.Add(self.exp, 0, wx.ALIGN_RIGHT, 5) + #sizer.Add(self.label_uce, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + #sizer.Add(self.check_uce, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + #sizer.Add(self.label_occuce, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + #sizer.Add(self.spin_ctrl_4, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + #sizer.Add(self.label_8, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + #sizer.Add(self.spin_ctrl_5, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + #sizer.Add(self.label_max_actives, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + #sizer.Add(self.spin_max_actives, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + sizer.Add(self.label_4, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + sizer.Add(self.button_5, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + sizer.Add(wx.StaticLine(self),0, wx.ALIGN_LEFT, 5) + sizer.Add(wx.StaticLine(self),0, wx.ALIGN_LEFT, 5) + #sizer.Add(box2, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT, 5) + first.Add(sizer, 0, wx.ALL, 5) + btnsizer = wx.StdDialogButtonSizer() + btn = wx.Button(self, wx.ID_CANCEL) + btnsizer.AddButton(btn) + btn_ok = wx.Button(self, wx.ID_OK) + btn_ok.SetDefault() + btnsizer.AddButton(btn_ok) + btnsizer.Realize() + first.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT, 5) + self.SetSizer(first) + first.Fit(self) + + def __set_properties(self) : + self.SetTitle(u'Préférences') + #self.spin_ctrl_4.Enable(False) + #self.spin_ctrl_5.Enable(False) + #self.spin_max_actives.Enable(False) + +# def OnCheckUce(self, evt) : +# if self.check_uce.GetValue() : +# self.spin_ctrl_4.Enable(True) +# self.spin_ctrl_5.Enable(True) +# if self.spin_ctrl_5.GetValue() > 0 : +# self.spin_max_actives.Enable(False) +# else : +# self.spin_max_actives.Enable(True) +# else : +# self.spin_ctrl_4.Enable(False) +# self.spin_ctrl_5.Enable(False) +# self.spin_max_actives.Enable(False) + +# def OnSpin(self, evt) : +# if self.spin_ctrl_5.GetValue() > 0 : +# self.spin_max_actives.Enable(False) +# else : +# self.spin_max_actives.Enable(True) + + def OnKeys(self, evt): + dial = AlcOptFrame(self.parent, self) + dial.CenterOnParent() + val = dial.ShowModal() + +class LexDialog( wx.Dialog ): + + def __init__( self, parent ): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = wx.EmptyString, pos = wx.DefaultPosition, size = wx.DefaultSize, style = wx.DEFAULT_DIALOG_STYLE ) + + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + + bSizer2 = wx.BoxSizer( wx.VERTICAL ) + + fgSizer2 = wx.FlexGridSizer( 2, 2, 0, 0 ) + fgSizer2.SetFlexibleDirection( wx.BOTH ) + fgSizer2.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText9 = wx.StaticText( self, wx.ID_ANY, u"Lemmatisation", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText9.Wrap( -1 ) + fgSizer2.Add( self.m_staticText9, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 3 ) + + m_radioBox2Choices = [ u"oui", u"non" ] + self.m_radioBox2 = wx.RadioBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, m_radioBox2Choices, 1, wx.RA_SPECIFY_COLS ) + self.m_radioBox2.SetSelection( 0 ) + fgSizer2.Add( self.m_radioBox2, 0, wx.ALIGN_RIGHT|wx.ALL, 3 ) + +# self.m_staticText10 = wx.StaticText( self, wx.ID_ANY, u"Utiliser le Dict. des expressions", wx.DefaultPosition, wx.DefaultSize, 0 ) +# self.m_staticText10.Wrap( -1 ) +# fgSizer2.Add( self.m_staticText10, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 3 ) +# +# m_radioBox21Choices = [ u"oui", u"non" ] +# self.m_radioBox21 = wx.RadioBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, m_radioBox21Choices, 1, wx.RA_SPECIFY_COLS ) +# self.m_radioBox21.SetSelection( 0 ) +# fgSizer2.Add( self.m_radioBox21, 0, wx.ALIGN_RIGHT|wx.ALL, 3 ) +# bSizer2.Add( fgSizer2, 1, wx.EXPAND, 5 ) + + btnsizer = wx.StdDialogButtonSizer() + btn = wx.Button(self, wx.ID_CANCEL) + btnsizer.AddButton(btn) + btn_ok = wx.Button( self, wx.ID_OK) + btn_ok.SetDefault() + btnsizer.AddButton(btn_ok) + btnsizer.Realize() + + bSizer2.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT, 5) + self.SetSizer( bSizer2 ) + self.Layout() + bSizer2.Fit( self ) + self.Centre( wx.BOTH ) + +class PrefUCECarac(wx.Dialog): + def __init__(self, parent, *args, **kwds): + kwds['style'] = wx.DEFAULT_DIALOG_STYLE + kwds['title'] = u"UCE caractéristiques" + wx.Dialog.__init__(self, *args, **kwds) + self.parent = parent + first = wx.BoxSizer(wx.VERTICAL) + sizer = wx.FlexGridSizer(2,2,0,0) + self.label_type = wx.StaticText(self, -1, u"Score de classement") + sizer.Add(self.label_type, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT, 5) + self.radio_type = wx.RadioBox(self, -1, u"", choices=[u'absolu (somme des chi2 des formes marquées de l\'UCE)', u'relatif (moyenne des chi2 des formes marquées de l\'UCE)'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + sizer.Add(self.radio_type, 0, wx.ALIGN_RIGHT, 5) + self.txt_eff = wx.StaticText(self, -1, u"Nombre d\'UCE maximum") + sizer.Add(self.txt_eff, 0, wx.ALIGN_CENTRE, 5) + self.spin_eff = wx.SpinCtrl(self, -1, '', size = (100, 30), min = 1, max = 100000, initial = 50) + sizer.Add(self.spin_eff, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + first.Add(sizer, 0, wx.ALL, 5) + btnsizer = wx.StdDialogButtonSizer() + btn = wx.Button(self, wx.ID_CANCEL) + btnsizer.AddButton(btn) + btn_ok = wx.Button(self, wx.ID_OK) + btn_ok.SetDefault() + btnsizer.AddButton(btn_ok) + btnsizer.Realize() + first.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT, 5) + self.SetSizer(first) + first.Fit(self) + +class PrefSegProf(wx.Dialog) : + def __init__( self, parent ): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = u"Profils des segments répétés", pos = wx.DefaultPosition, size = wx.DefaultSize, style = wx.DEFAULT_DIALOG_STYLE ) + + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + bSizer1 = wx.BoxSizer( wx.VERTICAL ) + txt = u"ATTENTION : le calcul des profils des segments répétés\npeut être très long sur les corpus importants" + self.label = wx.StaticText( self, wx.ID_ANY, txt, wx.DefaultPosition, wx.DefaultSize, 0 ) + bSizer1.Add( self.label, 0, wx.ALL | wx.ALIGN_CENTER_VERTICAL, 5 ) + + fgSizer1 = wx.FlexGridSizer( 2, 2, 0, 0 ) + fgSizer1.SetFlexibleDirection( wx.BOTH ) + fgSizer1.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText1 = wx.StaticText( self, wx.ID_ANY, u"Corpus lemmatisé", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText1.Wrap( -1 ) + fgSizer1.Add( self.m_staticText1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + box_lemChoices = [ u"oui", u"non" ] + self.box_lem = wx.RadioBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, box_lemChoices, 1, wx.RA_SPECIFY_COLS ) + self.box_lem.SetSelection( 1 ) + fgSizer1.Add( self.box_lem, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + #self.box_lem.Enable(False) + + self.m_staticText3 = wx.StaticText( self, wx.ID_ANY, u"Taille minimum des segments", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText3.Wrap( -1 ) + fgSizer1.Add( self.m_staticText3, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_min = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, (100,30), wx.SP_ARROW_KEYS, 2, 30, 2 ) + self.spin_min.SetValue(2) + fgSizer1.Add( self.spin_min, 0, wx.ALL, 5 ) + + self.m_staticText4 = wx.StaticText( self, wx.ID_ANY, u"Taille maximum des segments", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText4.Wrap( -1 ) + fgSizer1.Add( self.m_staticText4, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_max = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, (100,30), wx.SP_ARROW_KEYS, 2, 30, 10 ) + self.spin_max.SetValue(10) + fgSizer1.Add( self.spin_max, 0, wx.ALL, 5 ) + + self.m_staticText5 = wx.StaticText( self, wx.ID_ANY, u"Effectif minimum d'un segment retenu", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText5.Wrap( -1 ) + fgSizer1.Add( self.m_staticText5, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_eff = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, (100,30), wx.SP_ARROW_KEYS, 4, 1000, 4 ) + self.spin_eff.SetValue(4) + fgSizer1.Add( self.spin_eff, 0, wx.ALL, 5 ) + + bSizer1.Add( fgSizer1, 1, wx.EXPAND, 5 ) + btnsizer = wx.StdDialogButtonSizer() + btn = wx.Button(self, wx.ID_CANCEL) + btnsizer.AddButton(btn) + btn_ok = wx.Button(self, wx.ID_OK) + btn_ok.SetDefault() + btnsizer.AddButton(btn_ok) + btnsizer.Realize() + bSizer1.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT, 5) + + self.SetSizer( bSizer1 ) + self.Layout() + bSizer1.Fit( self ) + + self.Centre( wx.BOTH ) + +class PrefQuestAlc ( wx.Dialog ): + + def __init__( self, parent, sim = False): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = u'Classification', pos = wx.DefaultPosition, size = wx.DefaultSize, style = wx.DEFAULT_DIALOG_STYLE ) + + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + + #--------------------------------------------------------------- + #self.content = parent.content[:] + self.header = parent.tableau.get_colnames() + labels = [val for val in self.header] + self.labels_tot = labels + self.varsup = [] + self.sim = sim + #--------------------------------------------------------------- + bSizer2 = wx.BoxSizer( wx.VERTICAL ) + + fgSizer1 = wx.FlexGridSizer( 2, 2, 0, 0 ) + fgSizer1.SetFlexibleDirection( wx.BOTH ) + fgSizer1.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + if not self.sim : + self.lab_format = wx.StaticText( self, wx.ID_ANY, u"Le corpus est formaté", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.lab_format.Wrap( -1 ) + fgSizer1.Add( self.lab_format, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + m_radioBox1Choices = [ u"oui", u"non" ] + self.m_radioBox1 = wx.RadioBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, m_radioBox1Choices, 1, wx.RA_SPECIFY_COLS ) + self.m_radioBox1.SetSelection( 0 ) + fgSizer1.Add( self.m_radioBox1, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_staticText3 = wx.StaticText( self, wx.ID_ANY, u"Variables actives (min = 3) :", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText3.Wrap( -1 ) + fgSizer1.Add( self.m_staticText3, 0, wx.ALL, 5 ) + + self.m_staticText2 = wx.StaticText( self, wx.ID_ANY, u"Variables illustratives (min = 1):", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText2.Wrap( -1 ) + fgSizer1.Add( self.m_staticText2, 0, wx.ALL, 5 ) + + self.ListActive = wx.ListBox( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, labels, wx.LB_EXTENDED ) + self.ListActive.SetMinSize( wx.Size( 300,250 ) ) + + fgSizer1.Add( self.ListActive, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL|wx.EXPAND, 5 ) + + self.ListSup = wx.ListBox( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, labels, wx.LB_EXTENDED ) + self.ListSup.SetMinSize( wx.Size( 300,250 ) ) + + fgSizer1.Add( self.ListSup, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL|wx.EXPAND, 5 ) + + self.but_suiv = wx.Button( self, wx.ID_ANY, u"Suivant", wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer1.Add( self.but_suiv, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.but_prec = wx.Button( self, wx.ID_ANY, u"Précédent", wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer1.Add( self.but_prec, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + if not sim : + self.lab_nbcl = wx.StaticText( self, wx.ID_ANY, u"Nombre de classes terminales de la phase 1", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.lab_nbcl.Wrap( -1 ) + fgSizer1.Add( self.lab_nbcl, 0, wx.ALL, 5 ) + + self.spin_nbcl = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 2, 100, 10 ) + self.spin_nbcl.SetValue(10) + self.spin_nbcl.SetMinSize( wx.Size( 100,30 ) ) + + fgSizer1.Add( self.spin_nbcl, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.lab_mincl = wx.StaticText( self, wx.ID_ANY, u"Effectif minimum d'une classe (2 = automatique)", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.lab_mincl.Wrap( -1 ) + fgSizer1.Add( self.lab_mincl, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.spin_mincl = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 2, 1000, 0 ) + self.spin_mincl.SetValue(2) + self.spin_mincl.SetMinSize( wx.Size( 100,30 ) ) + + fgSizer1.Add( self.spin_mincl, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + bSizer2.Add( fgSizer1, 1, wx.EXPAND, 5 ) + + m_sdbSizer2 = wx.StdDialogButtonSizer() + self.m_sdbSizer2OK = wx.Button( self, wx.ID_OK ) + m_sdbSizer2.AddButton( self.m_sdbSizer2OK ) + self.m_sdbSizer2Cancel = wx.Button( self, wx.ID_CANCEL ) + m_sdbSizer2.AddButton( self.m_sdbSizer2Cancel ) + m_sdbSizer2.Realize(); + bSizer2.Add( m_sdbSizer2, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT|wx.ALL, 5 ) + + self.SetSizer( bSizer2 ) + self.Layout() + bSizer2.Fit( self ) + + self.Centre( wx.BOTH ) + + if not self.sim : + self.ListActive.Enable(False) + self.ListSup.Enable(False) + self.but_suiv.Enable(False) + self.but_prec.Enable(False) + else : + self.ListSup.Enable(False) + self.but_prec.Enable(False) + + # Connect Events + if not self.sim : + self.m_radioBox1.Bind( wx.EVT_RADIOBOX, self.onformat ) + self.but_suiv.Bind(wx.EVT_BUTTON, self.onsuivant) + self.but_prec.Bind(wx.EVT_BUTTON, self.onprec) + self.m_sdbSizer2OK.Bind(wx.EVT_BUTTON, self.onvalid) + + def __del__( self ): + pass + + # Virtual event handlers, overide them in your derived class + def onformat( self, event ): + if self.m_radioBox1.GetSelection() == 0 : + self.ListActive.Enable(False) + self.ListSup.Enable(False) + self.but_suiv.Enable(False) + self.m_sdbSizer2OK.Enable(True) + else : + self.ListActive.Enable(True) + self.but_suiv.Enable(True) + self.m_sdbSizer2OK.Enable(False) + + def onsuivant(self, evt) : + actives = list(self.ListActive.GetSelections()) + actives.sort() + if len(actives)>=3 and len(actives) != len(self.header) : + self.hindices = [] + self.nactives = [] + compt = 0 + header = self.header[:] + for i in range(0, len(header)): + self.hindices.append(i) + for i in actives : + self.nactives.append(i) + header.pop(i - compt) + self.hindices.pop(i - compt) + compt += 1 + self.labels = [val for val in header] + self.ListSup.Clear() + for i in header : + self.ListSup.Append(i) + + self.ListActive.Enable(False) + self.ListSup.Enable(True) + self.but_suiv.Enable(False) + self.but_prec.Enable(True) + if not self.sim : + self.m_sdbSizer2OK.Enable(True) + + def onprec(self, evt) : + self.ListActive.Enable(True) + self.ListSup.Enable(False) + self.but_suiv.Enable(True) + self.but_prec.Enable(False) + if not self.sim : + self.m_sdbSizer2OK.Enable(False) + + def onvalid(self, evt) : + for i in self.ListSup.GetSelections() : + self.varsup.append(self.hindices[i]) + if not self.sim : + if len(self.varsup) >= 1 or self.m_radioBox1.GetSelection() == 0 : + evt.Skip() + else : + if len(self.varsup) >= 1 : + evt.Skip() + +class FindInCluster(wx.Frame): + def __init__(self, parent, id, result, style = wx.DEFAULT_FRAME_STYLE): + # begin wxGlade: MyFrame.__init__ + wx.Frame.__init__(self, parent, id) + self.spanel = wx.ScrolledWindow(self, -1, style=wx.TAB_TRAVERSAL) + self.sizer1 = wx.FlexGridSizer(len(result)+1,4,0,0) + self.parent = parent + self.formes = {} + txt = [u'forme',u'classe',u'chi2',u'voir'] + for val in txt : + self.sizer1.Add( wx.StaticText(self.spanel, -1, val), 0, wx.ALL, 5) + for val in txt : + self.sizer1.Add(wx.StaticLine(self.spanel, -1), 0, wx.ALL, 5) + for i,val in enumerate(result) : + forme = val[0] + cl = val[1] + chi = val[2] + pan = wx.Panel(self.spanel, -1, style=wx.SIMPLE_BORDER) + siz = wx.BoxSizer(wx.VERTICAL) + txt = wx.StaticText(pan, -1, forme) + siz.Add(txt, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5) + pan.SetSizer(siz) + self.sizer1.Add(pan, 0, wx.ALL|wx.EXPAND|wx.ALIGN_CENTER_VERTICAL, 5) + pan = wx.Panel(self.spanel, -1, style=wx.SIMPLE_BORDER) + siz = wx.BoxSizer(wx.VERTICAL) + txt = wx.StaticText(pan, -1, str(cl)) + siz.Add(txt, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5) + pan.SetSizer(siz) + self.sizer1.Add(pan, 0, wx.ALL|wx.EXPAND|wx.ALIGN_CENTER_VERTICAL, 5) + pan = wx.Panel(self.spanel, -1, style=wx.SIMPLE_BORDER) + siz = wx.BoxSizer(wx.VERTICAL) + txt = wx.StaticText(pan, -1, str(chi)) + siz.Add(txt, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5) + pan.SetSizer(siz) + self.sizer1.Add(pan, 0, wx.ALL|wx.EXPAND|wx.ALIGN_CENTER_VERTICAL, 5) + idbut = wx.NewId() + self.formes[idbut] = [forme, cl] + but = wx.Button(self.spanel, idbut, u"voir") + self.sizer1.Add(but, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5) + self.Bind(wx.EVT_BUTTON, self.showitem, but) + self.button_1 = wx.Button(self, -1, "Fermer") + self.Bind(wx.EVT_BUTTON, self.OnCloseMe, self.button_1) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + self.__set_properties() + self.__do_layout() + # end wxGlade + + def __set_properties(self): + self.SetTitle(u'Résultats') + self.spanel.EnableScrolling(True,True) + #self.panel_1.SetSize((1000,1000)) + self.spanel.SetScrollRate(20, 20) + h = 60 * len(self.formes) + if h > 600 : + h = 600 + if h < 150 : + h = 150 + self.SetSize(wx.Size(400,h)) + + def __do_layout(self): + # begin wxGlade: MyFrame.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + self.spanel.SetSizer(self.sizer1) + sizer_1.Add(self.spanel, 4, wx.EXPAND, 0) + sizer_1.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ADJUST_MINSIZE, 0) + #sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetAutoLayout(True) + self.SetSizer(sizer_1) + self.Layout() + # end wxGlade + + def showitem(self, evt) : + idb = evt.GetEventObject().GetId() + nb = self.parent.nb + profile = nb.GetPage(nb.GetSelection()) + cl = self.formes[idb][1] - 1 + forme = self.formes[idb][0] + profile.ProfNB.SetSelection(cl) + UnSelectList(profile.ProfNB.GetPage(cl).list) + datas = dict([[profile.ProfNB.GetPage(cl).getColumnText(i,6),i] for i in range(profile.ProfNB.GetPage(cl).list.GetItemCount())]) + profile.ProfNB.GetPage(cl).list.SetItemState(datas[self.formes[idb][0]], wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED) + profile.ProfNB.GetPage(cl).list.Focus(datas[forme]) + profile.ProfNB.GetPage(cl).list.SetFocus() + + def OnCloseMe(self, evt) : + self.Close(True) + + def OnCloseWindow(self, evt): + self.Destroy() + +class SearchDial ( wx.Dialog ): + + def __init__( self, parent, listctrl, col, shown): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = wx.EmptyString, pos = wx.DefaultPosition, size = wx.DefaultSize, style = wx.DEFAULT_DIALOG_STYLE ) + self.parent = parent + self.listctrl = listctrl + self.col = col + self.shown = shown + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + + bSizer1 = wx.BoxSizer( wx.VERTICAL ) + + self.search = wx.SearchCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.TE_PROCESS_ENTER ) + self.search.ShowSearchButton( True ) + self.search.ShowCancelButton( True ) + bSizer1.Add( self.search, 0, wx.ALL, 5 ) + sizer2 = wx.BoxSizer(wx.HORIZONTAL) + self.backward = wx.Button(self, wx.ID_BACKWARD, u"Précédent") + self.forward = wx.Button(self, wx.ID_FORWARD, u"Suivant") + sizer2.Add(self.backward, 0, wx.ALL, 5) + sizer2.Add(self.forward, 0, wx.ALL, 5) + bSizer1.Add( sizer2, 0, wx.ALL, 5 ) + + self.SetSizer( bSizer1 ) + self.Layout() + bSizer1.Fit( self ) + self.Bind(wx.EVT_SEARCHCTRL_SEARCH_BTN, self.OnSearch, self.search) + self.Bind(wx.EVT_SEARCHCTRL_CANCEL_BTN, self.OnCancel, self.search) + self.Bind(wx.EVT_TEXT_ENTER, self.OnSearch, self.search) + self.Bind(wx.EVT_BUTTON, self.onforward, self.forward) + self.Bind(wx.EVT_BUTTON, self.onbackward, self.backward) + self.search.SetFocus() + self.forward.Enable(False) + self.backward.Enable(False) + + self.Centre( wx.BOTH ) + + def __del__( self ): + pass + + def OnSearch(self, evt): + UnSelectList(self.listctrl.list) + search_word = self.search.GetValue() + if search_word.strip() != '' : + formes = [self.listctrl.getColumnText(i, self.col) for i in range(self.listctrl.list.GetItemCount())] + if search_word.endswith(u'*') : + search_word = search_word[0:-1] + result = [j for j, forme in enumerate(formes) if forme.startswith(search_word)] + else : + result = [j for j, forme in enumerate(formes) if forme == search_word] + if result == [] : + self.noresult() + elif self.shown == True : + self.showitems(result) + else : + self.showresult(result) + else : + self.Destroy() + + + def showitems(self, items) : + if len(items) == 1 : + self.listctrl.list.SetItemState(items[0], wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED) + self.listctrl.list.Focus(items[0]) + self.listctrl.list.SetFocus() + self.Destroy() + else : + for i in items : + self.listctrl.list.SetItemState(i, wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED) + self.listctrl.list.Focus(items[0]) + self.listctrl.list.SetFocus() + self.forward.Enable(True) + self.backward.Enable(False) + self.items = items + self.forwitem = 1 + self.backitem = -1 + + def showresult(self, result) : + toshow = [self.listctrl.itemDataMap[int(self.listctrl.getColumnText(i,0))] for i in result] + proflist = [[[line[1], i+1, val] for i, val in enumerate(line[2:]) if val>=2] for line in toshow] + #FIXME: intervenir en aval en virant les forme avec chi<2 + if proflist != [[]] : + proflist = [val for line in proflist for val in line if line !=[]] + nb = self.parent.parent.nb + profile = nb.GetPage(nb.GetSelection()) + first_forme = proflist[0] + cl = first_forme[1] - 1 + profile.ProfNB.SetSelection(cl) + profile.ProfNB.GetPage(cl).list.SetFocus() + UnSelectList(profile.ProfNB.GetPage(cl).list) + datas = dict([[profile.ProfNB.GetPage(cl).getColumnText(i,6),i] for i in range(profile.ProfNB.GetPage(cl).list.GetItemCount())]) + profile.ProfNB.GetPage(cl).list.SetItemState(datas[first_forme[0]], wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED) + profile.ProfNB.GetPage(cl).list.Focus(datas[first_forme[0]]) + profile.ProfNB.GetPage(cl).list.SetFocus() + if len(proflist) == 1 : + self.Destroy() + else : + SearchResult = FindInCluster(self.parent.parent, -1, proflist) + SearchResult.Show() + self.Destroy() + else : + self.noresult() + + def onforward(self, evt) : + self.listctrl.list.Focus(self.items[self.forwitem]) + self.listctrl.list.SetFocus() + self.forwitem += 1 + if self.forwitem == len(self.items) : + self.forward.Enable(False) + self.backward.Enable(True) + self.backitem += 1 + else : + self.backitem += 1 + self.backward.Enable(True) + + def onbackward(self, evt) : + self.listctrl.list.Focus(self.items[self.backitem]) + self.listctrl.list.SetFocus() + self.backitem -= 1 + if self.backitem == -1 : + self.forwitem -= 1 + self.forward.Enable(True) + self.backward.Enable(False) + else : + self.forwitem -= 1 + self.forward.Enable(True) + + def noresult(self) : + msg = u"Forme absente" + dial = wx.MessageDialog(self, 'Forme absente','Forme absente', wx.OK | wx.ICON_INFORMATION) + dial.CenterOnParent() + dial.ShowModal() + dial.Destroy() + + def OnCancel(self, evt) : + self.search.Clear() + +def UnSelectList(liste) : + if liste.GetFirstSelected() != -1 : + last = liste.GetFirstSelected() + liste.Select(liste.GetFirstSelected(), False) + while liste.GetNextSelected(last) != -1 : + last = liste.GetNextSelected(last) + liste.Select(liste.GetFirstSelected(),False) + + +class OptLexi(wx.Dialog): + def __init__(self, *args, **kwds): + # begin wxGlade: MyDialog.__init__ + kwds["style"] = wx.DEFAULT_DIALOG_STYLE + wx.Dialog.__init__(self, *args, **kwds) + self.listet = None + self.variables = None + self.labellem = wx.StaticText(self, -1, u"Lemmatisation : ") + self.checklem = wx.CheckBox(self, -1) + self.label_var = wx.StaticText(self, -1, u"Sélection par :") + self.choice = wx.Choice(self, -1, (100,50), choices = [u'variables', u'modalités']) + self.label1 = wx.StaticText(self, -1, u"Choix") + self.list_box_1 = wx.ListBox(self, -1, choices=[], size = wx.Size( 150,200 ), style=wx.LB_EXTENDED | wx.LB_HSCROLL) + self.button_2 = wx.Button(self, wx.ID_CANCEL, "") + self.button_1 = wx.Button(self, wx.ID_OK, "") + self.label_indice = wx.StaticText(self, -1, u"indice") + self.choice_indice = wx.Choice(self, -1, (100,50), choices = [u'loi hypergéométique', u'chi2']) + self.label = wx.StaticText(self, -1, u"effectif minimum") + self.spin = wx.SpinCtrl(self, -1, min = 1, max = 10000) + self.Bind(wx.EVT_CHOICE, self.onselect, self.choice) + self.__set_properties() + self.__do_layout() + # end wxGlade + + def __set_properties(self): + # begin wxGlade: MyDialog.__set_properties + self.SetTitle("Choix des variables") + self.spin.SetValue(10) + self.choice.SetSelection(0) + #self.SetMinSize(wx.Size(300, 400)) + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyDialog.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.FlexGridSizer(2,2,0,0) + sizer_3 = wx.BoxSizer(wx.HORIZONTAL) + sizer_2.Add(self.labellem, 0, wx.ALIGN_CENTER_VERTICAL, 3) + sizer_2.Add(self.checklem, 0, wx.ALIGN_CENTER_VERTICAL, 3) + sizer_2.Add(self.label_var, 0, wx.ALIGN_CENTER_VERTICAL, 3) + sizer_2.Add(self.choice, 0, wx.ALIGN_CENTER_VERTICAL, 3) + sizer_2.Add(self.label1, 0, wx.ALIGN_CENTER_VERTICAL, 3) + sizer_2.Add(self.list_box_1, 0, wx.ALIGN_RIGHT, 3) + sizer_3.Add(self.button_2, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL, 3) + sizer_3.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL, 3) + sizer_2.Add(self.label_indice, 0, wx.ALIGN_CENTER_VERTICAL, 3) + sizer_2.Add(self.choice_indice, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL, 3) + sizer_2.Add(self.label, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL, 3) + sizer_2.Add(self.spin, 0, wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL, 3) + sizer_1.Add(sizer_2, 0, wx.ALIGN_CENTER_HORIZONTAL, 3) + sizer_1.Add(sizer_3, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_RIGHT, 3) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + self.Centre() + + def onselect(self, evt): + self.list_box_1.Clear() + if self.choice.GetSelection() == 0 : + for var in self.variables : + self.list_box_1.Append(var) + else : + for et in self.listet : + self.list_box_1.Append(et) + + +class PrefDendro ( wx.Dialog ): + + def __init__( self, parent, param ): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = u"Dendrogramme", pos = wx.DefaultPosition, size = wx.DefaultSize, style = wx.DEFAULT_DIALOG_STYLE ) + self.param = param + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + + fgSizer1 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer1.SetFlexibleDirection( wx.BOTH ) + fgSizer1.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText1 = wx.StaticText( self, wx.ID_ANY, u"Taille de l'image", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText1.Wrap( -1 ) + fgSizer1.Add( self.m_staticText1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + bSizer2 = wx.BoxSizer( wx.VERTICAL ) + + bSizer3 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText2 = wx.StaticText( self, wx.ID_ANY, u"Hauteur", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText2.Wrap( -1 ) + bSizer3.Add( self.m_staticText2, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_spinCtrl1 = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 50, 10000, 600 ) + bSizer3.Add( self.m_spinCtrl1, 0, wx.ALL, 5 ) + + bSizer2.Add( bSizer3, 1, wx.EXPAND, 5 ) + + bSizer31 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText3 = wx.StaticText( self, wx.ID_ANY, u"Largeur", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText3.Wrap( -1 ) + bSizer31.Add( self.m_staticText3, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_spinCtrl2 = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 50, 10000, 600 ) + bSizer31.Add( self.m_spinCtrl2, 0, wx.ALL, 5 ) + + bSizer2.Add( bSizer31, 1, wx.EXPAND, 5 ) + + fgSizer1.Add( bSizer2, 1, wx.EXPAND, 5 ) + + self.m_staticline1 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline1, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline2 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline2, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticText4 = wx.StaticText( self, wx.ID_ANY, u"Type de dendrogramme", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText4.Wrap( -1 ) + fgSizer1.Add( self.m_staticText4, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + m_choice1Choices = [ u"phylogram", u"cladogram", u"fan", u"unrooted", u"radial" ] + self.m_choice1 = wx.Choice( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, m_choice1Choices, 0 ) + self.m_choice1.SetSelection( 0 ) + fgSizer1.Add( self.m_choice1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT|wx.ALL, 5 ) + + self.m_staticline3 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline3, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline4 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline4, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticText5 = wx.StaticText( self, wx.ID_ANY, u"Couleur ou noir et blanc", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText5.Wrap( -1 ) + fgSizer1.Add( self.m_staticText5, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + m_radioBox1Choices = [ u"couleur", u"noir et blanc" ] + self.m_radioBox1 = wx.RadioBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, m_radioBox1Choices, 1, wx.RA_SPECIFY_COLS ) + self.m_radioBox1.SetSelection( 0 ) + fgSizer1.Add( self.m_radioBox1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT|wx.ALL, 5 ) + + self.m_staticline5 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline5, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline6 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline6, 0, wx.EXPAND |wx.ALL, 5 ) + + bSizer4 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText6 = wx.StaticText( self, wx.ID_ANY, u"Ajouter la taille des classes", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText6.Wrap( -1 ) + bSizer4.Add( self.m_staticText6, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_checkBox1 = wx.CheckBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_checkBox1.SetValue(True) + bSizer4.Add( self.m_checkBox1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + fgSizer1.Add( bSizer4, 1, wx.EXPAND, 5 ) + + m_radioBox2Choices = [ u"camemberts", u"barres" ] + self.m_radioBox2 = wx.RadioBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, m_radioBox2Choices, 1, wx.RA_SPECIFY_COLS ) + self.m_radioBox2.SetSelection( 0 ) + fgSizer1.Add( self.m_radioBox2, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT|wx.ALL, 5 ) + + self.m_staticline7 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline7, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline8 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline8, 0, wx.EXPAND |wx.ALL, 5 ) + + + fgSizer1.AddSpacer( ( 0, 0), 1, wx.EXPAND, 5 ) + + m_sdbSizer2 = wx.StdDialogButtonSizer() + self.m_sdbSizer2OK = wx.Button( self, wx.ID_OK ) + m_sdbSizer2.AddButton( self.m_sdbSizer2OK ) + self.m_sdbSizer2Cancel = wx.Button( self, wx.ID_CANCEL ) + m_sdbSizer2.AddButton( self.m_sdbSizer2Cancel ) + m_sdbSizer2.Realize(); + fgSizer1.Add( m_sdbSizer2, 1, wx.EXPAND, 5 ) + + self.__set_properties() + self.SetSizer( fgSizer1 ) + self.Layout() + fgSizer1.Fit( self ) + + self.Centre( wx.BOTH ) + + def __set_properties(self): + self.m_spinCtrl2.SetValue(self.param['width']) + self.m_spinCtrl1.SetValue(self.param['height']) + self.m_choice1.SetSelection(self.param['type_dendro']) + self.m_radioBox1.SetSelection(self.param['color_nb']) + self.m_checkBox1.SetValue(self.param['taille_classe']) + self.m_radioBox2.SetSelection(self.param['type_tclasse']) + + def __del__( self ): + pass + + +class PrefWordCloud ( wx.Dialog ): + + def __init__( self, parent ): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = u"Préférences wordcloud", pos = wx.DefaultPosition, size = wx.DefaultSize, style = wx.DEFAULT_DIALOG_STYLE ) + + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + + fgSizer1 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer1.SetFlexibleDirection( wx.BOTH ) + fgSizer1.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText1 = wx.StaticText( self, wx.ID_ANY, u"Sélectionner les formes", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText1.Wrap( -1 ) + fgSizer1.Add( self.m_staticText1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.but_selectcol = wx.Button( self, wx.ID_ANY, u"Sélectionner", wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer1.Add( self.but_selectcol, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_staticline1 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline1, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline2 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline2, 0, wx.EXPAND |wx.ALL, 5 ) + + bSizer1 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText3 = wx.StaticText( self, wx.ID_ANY, u"Hauteur", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText3.Wrap( -1 ) + bSizer1.Add( self.m_staticText3, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.spin_H = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( 100,30 ), wx.SP_ARROW_KEYS, 0, 10000, 600 ) + bSizer1.Add( self.spin_H, 0, wx.ALL, 5 ) + + fgSizer1.Add( bSizer1, 1, wx.EXPAND, 5 ) + + bSizer3 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText4 = wx.StaticText( self, wx.ID_ANY, u"Largeur", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText4.Wrap( -1 ) + bSizer3.Add( self.m_staticText4, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.spin_L = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( 100,30 ), wx.SP_ARROW_KEYS, 0, 10000, 600 ) + bSizer3.Add( self.spin_L, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + fgSizer1.Add( bSizer3, 1, wx.EXPAND, 5 ) + + self.m_staticline3 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline3, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline4 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline4, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticText5 = wx.StaticText( self, wx.ID_ANY, u"Nombre maximum de formes", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText5.Wrap( -1 ) + fgSizer1.Add( self.m_staticText5, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.spin_maxword = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 10000, 600 ) + fgSizer1.Add( self.spin_maxword, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_staticline5 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline5, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline6 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline6, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticText6 = wx.StaticText( self, wx.ID_ANY, u"Taille du texte", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText6.Wrap( -1 ) + fgSizer1.Add( self.m_staticText6, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + bSizer4 = wx.BoxSizer( wx.VERTICAL ) + + bSizer5 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText7 = wx.StaticText( self, wx.ID_ANY, u"Min", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText7.Wrap( -1 ) + bSizer5.Add( self.m_staticText7, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_mincex = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 1000, 5 ) + bSizer5.Add( self.spin_mincex, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT|wx.ALL, 5 ) + + bSizer4.Add( bSizer5, 1, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.EXPAND, 5 ) + + bSizer6 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText8 = wx.StaticText( self, wx.ID_ANY, u"Max", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText8.Wrap( -1 ) + bSizer6.Add( self.m_staticText8, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.spin_maxcex = wx.SpinCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 0, 1000, 50 ) + bSizer6.Add( self.spin_maxcex, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + bSizer4.Add( bSizer6, 1, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.EXPAND, 5 ) + + fgSizer1.Add( bSizer4, 1, wx.EXPAND, 5 ) + + self.m_staticline7 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline7, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline8 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline8, 0, wx.EXPAND |wx.ALL, 5 ) + + bSizer61 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText81 = wx.StaticText( self, wx.ID_ANY, u"Couleur du texte", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText81.Wrap( -1 ) + bSizer61.Add( self.m_staticText81, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.color_text = wx.ColourPickerCtrl( self, wx.ID_ANY, wx.BLACK, wx.DefaultPosition, wx.DefaultSize, wx.CLRP_DEFAULT_STYLE ) + bSizer61.Add( self.color_text, 0, wx.ALL, 5 ) + + fgSizer1.Add( bSizer61, 1, wx.EXPAND, 5 ) + + bSizer7 = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_staticText9 = wx.StaticText( self, wx.ID_ANY, u"Couleur du fond", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText9.Wrap( -1 ) + bSizer7.Add( self.m_staticText9, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.color_bg = wx.ColourPickerCtrl( self, wx.ID_ANY, (255,255,255), wx.DefaultPosition, wx.DefaultSize, wx.CLRP_DEFAULT_STYLE ) + bSizer7.Add( self.color_bg, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + fgSizer1.Add( bSizer7, 1, wx.EXPAND, 5 ) + + self.m_staticline9 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline9, 0, wx.EXPAND |wx.ALL, 5 ) + + self.m_staticline10 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + fgSizer1.Add( self.m_staticline10, 0, wx.EXPAND |wx.ALL, 5 ) + + fgSizer1.AddSpacer( ( 0, 0), 1, wx.EXPAND, 5 ) + + m_sdbSizer1 = wx.StdDialogButtonSizer() + self.m_sdbSizer1OK = wx.Button( self, wx.ID_OK ) + m_sdbSizer1.AddButton( self.m_sdbSizer1OK ) + self.m_sdbSizer1Cancel = wx.Button( self, wx.ID_CANCEL ) + m_sdbSizer1.AddButton( self.m_sdbSizer1Cancel ) + m_sdbSizer1.Realize(); + fgSizer1.Add( m_sdbSizer1, 1, wx.EXPAND, 5 ) + + self.SetSizer( fgSizer1 ) + self.Layout() + fgSizer1.Fit( self ) + + self.Centre( wx.BOTH ) + + def __del__( self ): + pass + +class PrefChi(sc.SizedDialog): + def __init__(self, parent, ID, optionchi, title): + + sc.SizedDialog.__init__(self, None, -1, u"Paramètres", + style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER) + pane = self.GetContentsPane() + pane.SetSizerType("form") + pane.SetSizerProps(border=("all",5)) + self.parent = parent + self.optionchi = optionchi + + + self.label_obs = wx.StaticText(pane, -1, u'valeurs observée') + self.check1 = wx.CheckBox(pane, -1) + + self.label_theo = wx.StaticText(pane, -1, u'valeurs théoriques') + self.check2 = wx.CheckBox(pane, -1) + + self.label_resi = wx.StaticText(pane, -1, u'residuals') + self.check3 = wx.CheckBox(pane, -1) + + self.label_contrib = wx.StaticText(pane, -1, u'contributions a posteriori') + self.check4 = wx.CheckBox(pane, -1) +# self.label_graph = wx.StaticText(pane, -1, u'graphique') +# self.check8 = wx.CheckBox(pane, -1) + self.label_pourcent = wx.StaticText(pane, -1, u'pourcentage total') + self.check5 = wx.CheckBox(pane, -1) + + self.label_prl = wx.StaticText(pane, -1, u'pourcentages en ligne') + self.check6 = wx.CheckBox(pane, -1) + + self.label_prc = wx.StaticText(pane, -1, u'pourcentages en colonne') + self.check7 = wx.CheckBox(pane, -1) + + self.label_graph = wx.StaticText(pane, -1, u'graphique') + self.check8 = wx.CheckBox(pane, -1) + + self.label_graphbw = wx.StaticText(pane, -1, u'graphique en noir et blanc') + self.checkbw = wx.CheckBox(pane, -1) + + self.SetButtonSizer(self.CreateStdDialogButtonSizer(wx.OK | wx.CANCEL)) + + self.__set_properties() + self.Fit() + self.SetMinSize(self.GetSize()) + + def __set_properties(self): + self.check1.SetValue(self.optionchi['valobs']) + self.check2.SetValue(self.optionchi['valtheo']) + self.check3.SetValue(self.optionchi['resi']) + self.check4.SetValue(self.optionchi['contrib']) + self.check5.SetValue(self.optionchi['pourcent']) + self.check6.SetValue(self.optionchi['pourcentl']) + self.check7.SetValue(self.optionchi['pourcentc']) + self.check8.SetValue(self.optionchi['graph']) + self.checkbw.SetValue(self.optionchi['bw']) + +class ChiDialog(wx.Dialog): + def __init__( + self, parent, ID, title, optionchi, size=wx.DefaultSize, pos=wx.DefaultPosition, + style=wx.DEFAULT_DIALOG_STYLE + ): + + pre = wx.PreDialog() + pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP) + pre.Create(parent, ID, title, pos, size, style) + + self.PostCreate(pre) + self.parent = parent + self.optionchi = optionchi + self.chiopt = False + #self.Filename=parent.filename + #self.content=parent.content[:] + self.headers=parent.tableau.get_colnames() + LABELLIST=[] + + for i in self.headers: + if len(i)>60 : + LABELLIST.append(i[0:60]) + else: + LABELLIST.append(i) + + self.ListOK=[] + self.LabelListOK=LABELLIST + + self.list_box_1 = wx.ListBox(self, -1, choices=self.LabelListOK, style=wx.LB_EXTENDED|wx.LB_HSCROLL) + self.list_box_2 = wx.ListBox(self, -1, choices=self.LabelListOK, style=wx.LB_EXTENDED|wx.LB_HSCROLL) + self.button_1 = wx.Button(self, wx.ID_OK) + self.button_cancel = wx.Button(self, wx.ID_CANCEL) + self.button_pref = wx.Button(self, wx.ID_PREFERENCES) + self.__set_properties() + self.__do_layout() + + self.Bind(wx.EVT_LISTBOX, self.Select1, self.list_box_1) + self.Bind(wx.EVT_BUTTON, self.onparam, self.button_pref) + # end wxGlade +#------------------------------- + def __set_properties(self): + # begin wxGlade: ConfChi2.__set_properties + self.SetTitle(u"Sélection des variables") + + def __do_layout(self): + # begin wxGlade: ConfChi2.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_3 = wx.BoxSizer(wx.HORIZONTAL) + sizer_4 = wx.BoxSizer(wx.HORIZONTAL) + sizer_3.Add(self.list_box_1, 0, wx.EXPAND, 0) + sizer_3.Add(self.list_box_2, 0, wx.EXPAND|wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(sizer_3, 1, wx.EXPAND, 0) + sizer_4.Add(self.button_cancel, 0, wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_4.Add(self.button_pref, 0, wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_4.Add(self.button_1, 0, wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(sizer_4, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + # end wxGlade + + def Select1(self, event): # wxGlade: ConfChi2. + event.Skip() + + + def onparam(self,event): + self.dial = PrefChi(self.parent, -1, self.optionchi, '') + self.dial.CenterOnParent() + self.chiopt = self.dial.ShowModal() + +class CorpusPref ( wx.Dialog ): + + def __init__( self, parent, parametres ): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = u"Préférences", pos = wx.DefaultPosition, size = wx.DefaultSize, style = wx.DEFAULT_DIALOG_STYLE ) + self.parent = parent + langues_n = [u'français', u'english', u'german (expérimentale)', u'italian (expérimentale)'] + self.langues = [u'french', u'english', u'german', 'italian'] + self.encodages = encodages + ucimark = [u'****', u'0000'] + ucemethod = [u'charactères', u'occurrences'] + + self.SetSizeHintsSz( wx.DefaultSize, wx.DefaultSize ) + + bSizer1 = wx.BoxSizer( wx.VERTICAL ) + + self.m_notebook1 = wx.Notebook( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_panel1 = wx.Panel( self.m_notebook1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.TAB_TRAVERSAL ) + fgSizer1 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer1.SetFlexibleDirection( wx.BOTH ) + fgSizer1.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText7 = wx.StaticText( self.m_panel1, wx.ID_ANY, u"Corpus", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText7.Wrap( -1 ) + fgSizer1.Add( self.m_staticText7, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.txtpath = wx.StaticText( self.m_panel1, wx.ID_ANY, u"path", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.txtpath.Wrap( -1 ) + fgSizer1.Add( self.txtpath, 0, wx.ALL, 5 ) + + self.m_staticText1 = wx.StaticText( self.m_panel1, wx.ID_ANY, u"Encodage", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText1.Wrap( -1 ) + fgSizer1.Add( self.m_staticText1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + encodage_choicesChoices = [' - '.join(encodage) for encodage in self.encodages] + self.encodage_choices = wx.Choice( self.m_panel1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, encodage_choicesChoices, 0 ) + self.encodage_choices.SetSelection( 0 ) + fgSizer1.Add( self.encodage_choices, 0, wx.ALL, 5 ) + + self.m_staticText2 = wx.StaticText( self.m_panel1, wx.ID_ANY, u"Langue", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText2.Wrap( -1 ) + fgSizer1.Add( self.m_staticText2, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + lang_choicesChoices = langues_n + self.lang_choices = wx.Choice( self.m_panel1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, lang_choicesChoices, 0 ) + self.lang_choices.SetSelection( 0 ) + fgSizer1.Add( self.lang_choices, 0, wx.ALL, 5 ) + + self.m_staticText3 = wx.StaticText( self.m_panel1, wx.ID_ANY, u"Répertoire en sortie", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText3.Wrap( -1 ) + fgSizer1.Add( self.m_staticText3, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + + fgSizer41 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer41.SetFlexibleDirection( wx.BOTH ) + fgSizer41.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.repout_choices = wx.TextCtrl( self.m_panel1, wx.ID_ANY, u"MyLabel", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.repout_choices.SetMinSize( wx.Size( 400,-1 ) ) + fgSizer41.Add( self.repout_choices, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + self.m_button1 = wx.Button( self.m_panel1, wx.ID_ANY, u"Modifier...", wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer41.Add( self.m_button1, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 ) + + fgSizer1.Add( fgSizer41, 1, wx.EXPAND, 5 ) + + self.m_staticText12 = wx.StaticText( self.m_panel1, wx.ID_ANY, u"Marqueur d'UCI", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText12.Wrap( -1 ) + fgSizer1.Add( self.m_staticText12, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + ucimark_choicesChoices = ucimark + self.ucimark_choices = wx.Choice( self.m_panel1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, ucimark_choicesChoices, 0 ) + self.ucimark_choices.SetSelection( 0 ) + fgSizer1.Add( self.ucimark_choices, 0, wx.ALL, 5 ) + + self.m_staticText6 = wx.StaticText( self.m_panel1, wx.ID_ANY, u"Utiliser le dictionnaire des expressions", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText6.Wrap( -1 ) + fgSizer1.Add( self.m_staticText6, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.check_expressions = wx.CheckBox( self.m_panel1, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.check_expressions.SetValue(True) + fgSizer1.Add( self.check_expressions, 0, wx.ALL, 5 ) + + self.m_staticText9 = wx.StaticText( self.m_panel1, wx.ID_ANY, u"Construire des UCE", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText9.Wrap( -1 ) + fgSizer1.Add( self.m_staticText9, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.check_makeuce = wx.CheckBox( self.m_panel1, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.check_makeuce.SetValue(True) + fgSizer1.Add( self.check_makeuce, 0, wx.ALL, 5 ) + + self.m_staticText10 = wx.StaticText( self.m_panel1, wx.ID_ANY, u"Mode de construction des UCE", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText10.Wrap( -1 ) + fgSizer1.Add( self.m_staticText10, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + uce_modeChoices = ucemethod + self.uce_mode = wx.Choice( self.m_panel1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, uce_modeChoices, 0 ) + self.uce_mode.SetSelection( 0 ) + fgSizer1.Add( self.uce_mode, 0, wx.ALL, 5 ) + + self.m_staticText13 = wx.StaticText( self.m_panel1, wx.ID_ANY, u"Taille des UCE", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText13.Wrap( -1 ) + fgSizer1.Add( self.m_staticText13, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.uce_size = wx.SpinCtrl( self.m_panel1, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, wx.SP_ARROW_KEYS, 1, 1000000, 40 ) + fgSizer1.Add( self.uce_size, 0, wx.ALL, 5 ) + + + self.m_panel1.SetSizer( fgSizer1 ) + self.m_panel1.Layout() + fgSizer1.Fit( self.m_panel1 ) + self.m_notebook1.AddPage( self.m_panel1, u"Générale", True ) + self.m_panel2 = wx.Panel( self.m_notebook1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.TAB_TRAVERSAL ) + fgSizer3 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer3.SetFlexibleDirection( wx.BOTH ) + fgSizer3.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.m_staticText4 = wx.StaticText( self.m_panel2, wx.ID_ANY, u"Passer le corpus en minuscule", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText4.Wrap( -1 ) + fgSizer3.Add( self.m_staticText4, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.check_lower = wx.CheckBox( self.m_panel2, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.check_lower.SetValue(True) + fgSizer3.Add( self.check_lower, 0, wx.ALL, 5 ) + + self.m_staticText5 = wx.StaticText( self.m_panel2, wx.ID_ANY, u"Retirez les caractères en dehors cette liste", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText5.Wrap( -1 ) + fgSizer3.Add( self.m_staticText5, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + fgSizer4 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer4.SetFlexibleDirection( wx.BOTH ) + fgSizer4.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.check_charact = wx.CheckBox( self.m_panel2, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.check_charact.SetValue(True) + fgSizer4.Add( self.check_charact, 0, wx.ALL, 5 ) + + self.txt_charact = wx.TextCtrl( self.m_panel2, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.txt_charact.SetMinSize( wx.Size( 200,-1 ) ) + + fgSizer4.Add( self.txt_charact, 0, wx.ALL|wx.EXPAND, 5 ) + + + fgSizer3.Add( fgSizer4, 1, wx.ALIGN_CENTER_VERTICAL|wx.EXPAND, 5 ) + + self.m_staticText14 = wx.StaticText( self.m_panel2, wx.ID_ANY, u"Remplacer les apostrophes par des espaces", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText14.Wrap( -1 ) + fgSizer3.Add( self.m_staticText14, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.check_apos = wx.CheckBox( self.m_panel2, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.check_apos.SetValue(True) + fgSizer3.Add( self.check_apos, 0, wx.ALL, 5 ) + + self.m_staticText15 = wx.StaticText( self.m_panel2, wx.ID_ANY, u"Remplacer les tirets par des espaces", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText15.Wrap( -1 ) + fgSizer3.Add( self.m_staticText15, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.check_tirets = wx.CheckBox( self.m_panel2, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + self.check_tirets.SetValue(True) + fgSizer3.Add( self.check_tirets, 0, wx.ALL, 5 ) + + self.m_staticText17 = wx.StaticText( self.m_panel2, wx.ID_ANY, u"Conserver la ponctuation", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText17.Wrap( -1 ) + fgSizer3.Add( self.m_staticText17, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.check_ponct = wx.CheckBox( self.m_panel2, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer3.Add( self.check_ponct, 0, wx.ALL, 5 ) + + self.m_staticText16 = wx.StaticText( self.m_panel2, wx.ID_ANY, u"Pas d'espace entre deux formes (pour le chinois par exemple)", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText16.Wrap( -1 ) + fgSizer3.Add( self.m_staticText16, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_LEFT|wx.ALL, 5 ) + + self.check_tolist = wx.CheckBox( self.m_panel2, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + fgSizer3.Add( self.check_tolist, 0, wx.ALL, 5 ) + + + self.m_panel2.SetSizer( fgSizer3 ) + self.m_panel2.Layout() + fgSizer3.Fit( self.m_panel2 ) + self.m_notebook1.AddPage( self.m_panel2, u"Nettoyage", False ) + + bSizer1.Add( self.m_notebook1, 1, wx.EXPAND |wx.ALL, 5 ) + + m_sdbSizer1 = wx.StdDialogButtonSizer() + self.m_sdbSizer1OK = wx.Button( self, wx.ID_OK ) + m_sdbSizer1.AddButton( self.m_sdbSizer1OK ) + self.m_sdbSizer1Cancel = wx.Button( self, wx.ID_CANCEL ) + m_sdbSizer1.AddButton( self.m_sdbSizer1Cancel ) + m_sdbSizer1.Realize(); + + bSizer1.Add( m_sdbSizer1, 0, wx.EXPAND, 5 ) + + + self.Bind(wx.EVT_BUTTON, self.OnChangeDir, self.m_button1) + self.setparametres(parametres) + self.SetSizer( bSizer1 ) + self.Layout() + bSizer1.Fit( self ) + + self.Centre( wx.BOTH ) + + def OnChangeDir(self, evt) : + dlg = wx.DirDialog(self.parent, u"Choisissez un répertoire", style = wx.DD_DEFAULT_STYLE) + if dlg.ShowModal() == wx.ID_OK : + self.repout_choices.SetValue(dlg.GetPath()) + + def __del__( self ): + pass + + def setparametres(self, parametres) : + self.encodage_choices.SetSelection(0) + self.lang_choices.SetSelection(0) + self.repout_choices.SetValue(parametres['pathout']) + self.ucimark_choices.SetSelection(parametres['ucimark']) + self.check_expressions.SetValue(parametres['expressions']) + self.check_makeuce.SetValue(parametres['douce']) + self.uce_mode.SetSelection(parametres['ucemethod']) + self.uce_size.SetValue(parametres['ucesize']) + self.check_lower.SetValue(parametres['lower']) + #self.check_charact.SetValue(parametres['charact']) + self.txt_charact.SetValue(parametres['keep_caract']) + self.check_apos.SetValue(parametres['apos']) + self.check_tirets.SetValue(parametres['tiret']) + self.check_tolist.SetValue(parametres['tolist']) + self.check_ponct.SetValue(parametres['keep_ponct']) + + def doparametres(self) : + parametres = {} + parametres['encoding'] = self.encodages[self.encodage_choices.GetSelection()][0] + parametres['lang'] = self.langues[self.lang_choices.GetSelection()] + parametres['pathout'] = self.repout_choices.GetValue() + parametres['ucimark'] = self.ucimark_choices.GetSelection() + parametres['expressions'] = self.check_expressions.GetValue() + parametres['douce'] = self.check_makeuce.GetValue() + parametres['ucemethod'] = self.uce_mode.GetSelection() + parametres['ucesize'] = self.uce_size.GetValue() + parametres['lower'] = self.check_lower.GetValue() + parametres['charact'] = self.check_charact.GetValue() + parametres['keep_caract'] = self.txt_charact.GetValue() + parametres['apos'] = self.check_apos.GetValue() + parametres['tiret'] = self.check_tirets.GetValue() + parametres['tolist'] = self.check_tolist.GetValue() + parametres['keep_ponct'] = self.check_ponct.GetValue() + for val in parametres : + if isinstance(parametres[val], bool) : + if parametres[val] : + parametres[val] = 1 + else : + parametres[val] = 0 + return parametres + diff --git a/dictionnaires/About b/dictionnaires/About new file mode 100644 index 0000000..673a4b8 --- /dev/null +++ b/dictionnaires/About @@ -0,0 +1 @@ +dictionnaire construit à partir de Lexique 3 : www.lexique.org diff --git a/dictionnaires/expression.txt.back b/dictionnaires/expression.txt.back new file mode 100644 index 0000000..bc9e2d1 --- /dev/null +++ b/dictionnaires/expression.txt.back @@ -0,0 +1,4613 @@ +a capella a_capella ADV 0.04 0.07 0.04 0.07 +a cappella a_cappella ADV 0.04 0.07 0.04 0.07 +a contrario a_contrario ADV 0.00 0.27 0.00 0.27 +a fortiori a_fortiori ADV 0.04 0.88 0.04 0.88 +a giorno a_giorno ADV 0.00 0.27 0.00 0.27 +a jeun à_jeun ADV 1.45 3.85 0.18 0.00 +a l'instar a_l_instar PRE 0.26 0.00 0.26 0.00 +a posteriori a_posteriori ADV 0.05 0.20 0.01 0.14 +a priori a_priori ADV 1.04 3.85 0.63 2.57 +ab absurdo ab_absurdo ADV 0.00 0.07 0.00 0.07 +ab initio ab_initio ADV 0.01 0.07 0.01 0.07 +ab ovo ab_ovo ADV 0.00 0.27 0.00 0.27 +abaisse-langue abaisse_langue NOM m 0.04 0.14 0.04 0.14 +abat-jour abat_jour NOM m 0.51 8.24 0.51 8.24 +abat-son abat_son NOM m 0.00 0.27 0.00 0.27 +abri-refuge abri_refuge NOM m s 0.00 0.07 0.00 0.07 +accroche-coeur accroche_coeur NOM m s 0.00 0.74 0.00 0.34 +accroche-coeurs accroche_coeur NOM m p 0.00 0.74 0.00 0.41 +acid jazz acid_jazz NOM m s 0.03 0.00 0.03 0.00 +acqua-toffana acqua_toffana NOM f s 0.00 0.07 0.00 0.07 +action painting action_painting NOM f s 0.00 0.07 0.00 0.07 +ad hoc ad_hoc ADJ 0.11 0.81 0.11 0.81 +ad infinitum ad_infinitum ADV 0.05 0.00 0.05 0.00 +ad libitum ad_libitum ADV 0.00 0.14 0.00 0.14 +ad limina ad_limina ADV 0.00 0.07 0.00 0.07 +ad majorem dei gloriam ad_majorem_dei_gloriam ADV 0.00 0.14 0.00 0.14 +ad nutum ad_nutum ADV 0.00 0.07 0.00 0.07 +ad patres ad_patres ADV 0.02 0.27 0.02 0.27 +ad vitam aeternam ad_vitam_aeternam ADV 0.00 0.20 0.00 0.20 +adjudant-chef adjudant_chef NOM m s 2.57 2.70 2.57 2.57 +adjudant-major adjudant_major NOM m s 0.05 0.00 0.05 0.00 +adjudants-chefs adjudant_chef NOM m p 2.57 2.70 0.00 0.14 +afin d afin_d PRE 0.04 0.07 0.04 0.07 +afin de afin_de PRE 15.64 43.18 15.64 43.18 +afin qu afin_qu CON 0.05 0.00 0.05 0.00 +afin que afin_que CON 9.63 14.93 9.63 14.93 +afro-américain afro_américain NOM m s 0.95 0.00 0.48 0.00 +afro-américaine afro_américain ADJ f s 0.67 0.00 0.23 0.00 +afro-américains afro_américain NOM m p 0.95 0.00 0.39 0.00 +afro-asiatique afro_asiatique ADJ f s 0.01 0.00 0.01 0.00 +afro-brésilienne afro_brésilien ADJ f s 0.01 0.00 0.01 0.00 +afro-cubain afro_cubain ADJ m s 0.03 0.07 0.01 0.00 +afro-cubaine afro_cubain ADJ f s 0.03 0.07 0.02 0.00 +afro-cubains afro_cubain ADJ m p 0.03 0.07 0.00 0.07 +after-shave after_shave NOM m 0.51 0.68 0.47 0.61 +after shave after_shave NOM m 0.51 0.68 0.03 0.07 +agar-agar agar_agar NOM m s 0.00 0.07 0.00 0.07 +agit-prop agit_prop NOM f 0.10 0.00 0.10 0.00 +agnus-dei agnus_dei NOM m 0.00 0.07 0.00 0.07 +agnus dei agnus_dei NOM m 0.47 0.14 0.47 0.14 +agro-alimentaire agro_alimentaire ADJ f s 0.15 0.00 0.15 0.00 +aide-bourreau aide_bourreau NOM s 0.00 0.14 0.00 0.14 +aide-comptable aide_comptable NOM m s 0.04 0.07 0.04 0.07 +aide-cuisinier aide_cuisinier NOM m s 0.02 0.14 0.02 0.14 +aide-infirmier aide_infirmier NOM s 0.04 0.00 0.04 0.00 +aide-jardinier aide_jardinier NOM m s 0.01 0.07 0.01 0.07 +aide-major aide_major NOM m 0.00 0.14 0.00 0.14 +aide-mémoire aide_mémoire NOM m 0.04 0.41 0.04 0.41 +aide-ménagère aide_ménagère NOM f s 0.00 0.27 0.00 0.27 +aide-pharmacien aide_pharmacien NOM s 0.00 0.07 0.00 0.07 +aide-soignant aide_soignant NOM m s 0.40 0.27 0.20 0.00 +aide-soignante aide_soignant NOM f s 0.40 0.27 0.12 0.14 +aides-soignantes aide_soignant NOM f p 0.40 0.27 0.00 0.14 +aides-soignants aide_soignant NOM m p 0.40 0.27 0.08 0.00 +aigre-douce aigre_doux ADJ f s 0.29 1.08 0.08 0.54 +aigre-doux aigre_doux ADJ m 0.29 1.08 0.20 0.34 +aigres-douces aigre_douce ADJ f p 0.01 0.20 0.01 0.20 +aigres-doux aigre_doux ADJ m p 0.29 1.08 0.01 0.20 +aigue-marine aigue_marine NOM f s 0.00 0.81 0.00 0.47 +aigues-marines aigue_marine NOM f p 0.00 0.81 0.00 0.34 +air-air air_air ADJ m 0.09 0.00 0.09 0.00 +air-mer air_mer ADJ 0.02 0.00 0.02 0.00 +air-sol air_sol ADJ m p 0.13 0.00 0.13 0.00 +air bag air_bag NOM m s 0.02 0.00 0.02 0.00 +al dente al_dente ADV 0.40 0.14 0.40 0.14 +alea jacta est alea_jacta_est ADV 0.30 0.07 0.30 0.07 +all right all_right ADV 1.53 0.20 1.53 0.20 +aller-retour aller_retour NOM m s 2.33 2.43 1.83 2.36 +allers-retours aller_retour NOM m p 2.33 2.43 0.50 0.07 +allume-cigare allume_cigare NOM m s 0.19 0.14 0.19 0.14 +allume-cigares allume_cigares NOM m 0.14 0.14 0.14 0.14 +allume-feu allume_feu NOM m 0.04 0.27 0.04 0.27 +allume-gaz allume_gaz NOM m 0.20 0.14 0.20 0.14 +alter ego alter_ego NOM m 0.30 0.54 0.30 0.54 +am stram gram am_stram_gram ONO 0.08 0.14 0.08 0.14 +amour-goût amour_goût NOM m s 0.00 0.07 0.00 0.07 +amour-passion amour_passion NOM m s 0.00 0.41 0.00 0.41 +amour-propre amour_propre NOM m s 2.54 6.89 2.54 6.76 +amours-propres amour_propre NOM m p 2.54 6.89 0.00 0.14 +ampli-tuner ampli_tuner NOM m s 0.01 0.00 0.01 0.00 +américano-britannique américano_britannique ADJ s 0.01 0.00 0.01 0.00 +américano-japonaise américano_japonais ADJ f s 0.01 0.00 0.01 0.00 +américano-russe américano_russe ADJ f s 0.01 0.00 0.01 0.00 +américano-soviétique américano_soviétique ADJ m s 0.03 0.00 0.03 0.00 +américano-suédoise américano_suédois ADJ f s 0.01 0.00 0.01 0.00 +amuse-bouche amuse_bouche NOM m 0.05 0.00 0.03 0.00 +amuse-bouches amuse_bouche NOM m p 0.05 0.00 0.02 0.00 +amuse-gueule amuse_gueule NOM m 1.23 0.81 0.53 0.81 +amuse-gueules amuse_gueule NOM m p 1.23 0.81 0.70 0.00 +anarcho-syndicalisme anarcho_syndicalisme NOM m s 0.00 0.07 0.00 0.07 +anarcho-syndicaliste anarcho_syndicaliste ADJ s 0.00 0.14 0.00 0.07 +anarcho-syndicalistes anarcho_syndicaliste ADJ m p 0.00 0.14 0.00 0.07 +anch'io son pittore anch_io_son_pittore ADV 0.00 0.07 0.00 0.07 +anglo-albanais anglo_albanais ADJ m s 0.00 0.07 0.00 0.07 +anglo-allemand anglo_allemand ADJ m s 0.01 0.00 0.01 0.00 +anglo-américain anglo_américain ADJ m s 0.05 0.20 0.01 0.07 +anglo-américaine anglo_américain ADJ f s 0.05 0.20 0.02 0.07 +anglo-américaines anglo_américain ADJ f p 0.05 0.20 0.00 0.07 +anglo-américains anglo_américain ADJ m p 0.05 0.20 0.02 0.00 +anglo-arabe anglo_arabe ADJ s 0.00 0.27 0.00 0.14 +anglo-arabes anglo_arabe ADJ m p 0.00 0.27 0.00 0.14 +anglo-chinois anglo_chinois ADJ m s 0.01 0.00 0.01 0.00 +anglo-français anglo_français ADJ m s 0.02 0.14 0.01 0.07 +anglo-française anglo_français ADJ f s 0.02 0.14 0.01 0.07 +anglo-hellénique anglo_hellénique ADJ f s 0.00 0.07 0.00 0.07 +anglo-irlandais anglo_irlandais ADJ m s 0.00 0.27 0.00 0.27 +anglo-normand anglo_normand ADJ m s 0.04 0.34 0.00 0.14 +anglo-normande anglo_normand ADJ f s 0.04 0.34 0.00 0.20 +anglo-normandes anglo_normand ADJ f p 0.04 0.34 0.04 0.00 +anglo-russe anglo_russe ADJ m s 0.02 0.00 0.01 0.00 +anglo-russes anglo_russe ADJ f p 0.02 0.00 0.01 0.00 +anglo-saxon anglo_saxon ADJ m s 0.48 4.12 0.23 1.08 +anglo-saxonne anglo_saxon ADJ f s 0.48 4.12 0.04 0.74 +anglo-saxonnes anglo_saxon ADJ f p 0.48 4.12 0.18 0.88 +anglo-saxons anglo_saxon ADJ m p 0.48 4.12 0.03 1.42 +anglo-soviétique anglo_soviétique ADJ s 0.02 0.07 0.02 0.07 +anglo-égyptien anglo_égyptien ADJ m s 0.01 0.41 0.00 0.20 +anglo-égyptienne anglo_égyptien ADJ f s 0.01 0.41 0.01 0.20 +anglo-éthiopien anglo_éthiopien ADJ m s 0.00 0.07 0.00 0.07 +animal-roi animal_roi NOM m s 0.00 0.07 0.00 0.07 +animaux-espions animaux_espions NOM m p 0.01 0.00 0.01 0.00 +année-lumière année_lumière NOM f s 1.16 1.01 0.03 0.07 +années-homme année_homme NOM f p 0.01 0.00 0.01 0.00 +années-lumière année_lumière NOM f p 1.16 1.01 1.13 0.95 +anti-acné anti_acné NOM f s 0.02 0.00 0.02 0.00 +anti-agression anti_agression NOM f s 0.03 0.07 0.03 0.07 +anti-allergie anti_allergie NOM f s 0.01 0.00 0.01 0.00 +anti-anatomique anti_anatomique ADJ s 0.01 0.00 0.01 0.00 +anti-apartheid anti_apartheid NOM m s 0.00 0.07 0.00 0.07 +anti-aphrodisiaque anti_aphrodisiaque ADJ f s 0.00 0.07 0.00 0.07 +anti-asthmatique anti_asthmatique NOM s 0.01 0.00 0.01 0.00 +anti-atomique anti_atomique ADJ m s 0.06 0.07 0.05 0.00 +anti-atomiques anti_atomique ADJ m p 0.06 0.07 0.01 0.07 +anti-aérien anti_aérien ADJ m s 0.41 0.27 0.20 0.07 +anti-aérienne anti_aérien ADJ f s 0.41 0.27 0.17 0.07 +anti-aériens anti_aérien ADJ m p 0.41 0.27 0.04 0.14 +anti-avortement anti_avortement NOM m s 0.12 0.00 0.12 0.00 +anti-beauf anti_beauf NOM m s 0.01 0.00 0.01 0.00 +anti-bison anti_bison NOM m s 0.00 0.07 0.00 0.07 +anti-blindage anti_blindage NOM m s 0.04 0.00 0.04 0.00 +anti-blouson anti_blouson NOM m s 0.00 0.07 0.00 0.07 +anti-bombe anti_bombe NOM f s 0.10 0.07 0.09 0.00 +anti-bombes anti_bombe NOM f p 0.10 0.07 0.01 0.07 +anti-bosons anti_boson NOM m p 0.04 0.00 0.04 0.00 +anti-braquage anti_braquage NOM m s 0.01 0.00 0.01 0.00 +anti-brouillard anti_brouillard ADJ s 0.12 0.00 0.12 0.00 +anti-bruit anti_bruit NOM m s 0.16 0.00 0.16 0.00 +anti-calciques anti_calcique ADJ f p 0.01 0.00 0.01 0.00 +anti-cancer anti_cancer NOM m s 0.04 0.00 0.04 0.00 +anti-capitaliste anti_capitaliste ADJ m s 0.03 0.00 0.03 0.00 +anti-castriste anti_castriste ADJ s 0.02 0.00 0.02 0.00 +anti-castristes anti_castriste NOM p 0.01 0.00 0.01 0.00 +anti-cellulite anti_cellulite NOM f s 0.01 0.00 0.01 0.00 +anti-chambre anti_chambre NOM f s 0.00 0.14 0.00 0.07 +anti-chambres anti_chambre NOM f p 0.00 0.14 0.00 0.07 +anti-char anti_char NOM m s 0.12 0.20 0.00 0.14 +anti-chars anti_char NOM m p 0.12 0.20 0.12 0.07 +anti-chiens anti_chien NOM m p 0.00 0.07 0.00 0.07 +anti-cité anti_cité NOM f s 0.00 0.07 0.00 0.07 +anti-civilisation anti_civilisation NOM f s 0.00 0.07 0.00 0.07 +anti-club anti_club NOM m s 0.02 0.00 0.02 0.00 +anti-cocos anti_coco NOM p 0.01 0.00 0.01 0.00 +anti-colère anti_colère NOM f s 0.01 0.00 0.01 0.00 +anti-communisme anti_communisme NOM m s 0.00 0.14 0.00 0.14 +anti-communiste anti_communiste ADJ s 0.03 0.07 0.03 0.07 +anti-conformisme anti_conformisme NOM m s 0.01 0.14 0.01 0.14 +anti-conformiste anti_conformiste NOM s 0.01 0.00 0.01 0.00 +anti-conglutinatif anti_conglutinatif ADJ m s 0.00 0.07 0.00 0.07 +anti-corps anti_corps NOM m 0.08 0.00 0.08 0.00 +anti-corruption anti_corruption NOM f s 0.04 0.00 0.04 0.00 +anti-crash anti_crash NOM m s 0.01 0.00 0.01 0.00 +anti-crime anti_crime NOM m s 0.03 0.00 0.03 0.00 +anti-criminalité anti_criminalité NOM f s 0.01 0.00 0.01 0.00 +anti-célibataires anti_célibataire ADJ f p 0.01 0.00 0.01 0.00 +anti-dauphins anti_dauphin NOM m p 0.01 0.00 0.01 0.00 +anti-desperado anti_desperado NOM m s 0.01 0.00 0.01 0.00 +anti-dieu anti_dieu NOM m s 0.03 0.00 0.03 0.00 +anti-discrimination anti_discrimination NOM f s 0.02 0.00 0.02 0.00 +anti-dopage anti_dopage NOM m s 0.06 0.00 0.06 0.00 +anti-douleur anti_douleur NOM f s 0.46 0.00 0.30 0.00 +anti-douleurs anti_douleur NOM f p 0.46 0.00 0.15 0.00 +anti-drague anti_drague NOM f s 0.01 0.00 0.01 0.00 +anti-dramatique anti_dramatique ADJ s 0.00 0.07 0.00 0.07 +anti-drogue anti_drogue NOM f s 0.42 0.00 0.35 0.00 +anti-drogues anti_drogue NOM f p 0.42 0.00 0.07 0.00 +anti-débauche anti_débauche NOM f s 0.00 0.07 0.00 0.07 +anti-démocratique anti_démocratique ADJ f s 0.14 0.07 0.14 0.07 +anti-démocratiques anti_démocratique ADJ f p 0.14 0.07 0.01 0.00 +anti-démon anti_démon NOM m s 0.04 0.00 0.04 0.00 +anti-espionnes anti_espionne NOM f p 0.01 0.00 0.01 0.00 +anti-establishment anti_establishment NOM m s 0.02 0.00 0.02 0.00 +anti-existence anti_existence NOM f s 0.00 0.07 0.00 0.07 +anti-explosion anti_explosion NOM f s 0.04 0.00 0.04 0.00 +anti-fantômes anti_fantôme NOM m p 0.02 0.00 0.02 0.00 +anti-fasciste anti_fasciste ADJ f s 0.02 0.00 0.02 0.00 +anti-femme anti_femme NOM f s 0.01 0.00 0.01 0.00 +anti-flingage anti_flingage NOM m s 0.00 0.07 0.00 0.07 +anti-flip anti_flip NOM m s 0.00 0.07 0.00 0.07 +anti-frigo anti_frigo NOM m s 0.00 0.07 0.00 0.07 +anti-féministe anti_féministe NOM s 0.03 0.07 0.03 0.07 +anti-fusionnel anti_fusionnel ADJ m s 0.01 0.00 0.01 0.00 +anti-fusées anti_fusée NOM f p 0.00 0.20 0.00 0.20 +anti-g anti_g ADJ f p 0.01 0.00 0.01 0.00 +anti-gang anti_gang NOM m s 0.33 0.00 0.33 0.00 +anti-gel anti_gel NOM m s 0.05 0.00 0.05 0.00 +anti-gerce anti_gerce NOM f s 0.01 0.00 0.01 0.00 +anti-gouvernement anti_gouvernement NOM m s 0.10 0.00 0.10 0.00 +anti-graffiti anti_graffiti NOM m 0.01 0.00 0.01 0.00 +anti-gravité anti_gravité NOM f s 0.06 0.00 0.06 0.00 +anti-grimaces anti_grimace NOM f p 0.01 0.00 0.01 0.00 +anti-gros anti_gros ADJ m 0.01 0.00 0.01 0.00 +anti-hannetons anti_hanneton NOM m p 0.00 0.07 0.00 0.07 +anti-hypertenseur anti_hypertenseur ADJ m s 0.01 0.00 0.01 0.00 +anti-immigration anti_immigration NOM f s 0.02 0.00 0.02 0.00 +anti-immigrés anti_immigré ADJ p 0.00 0.07 0.00 0.07 +anti-impérialiste anti_impérialiste ADJ s 0.11 0.07 0.11 0.07 +anti-incendie anti_incendie NOM m s 0.16 0.00 0.16 0.00 +anti-inertie anti_inertie NOM f s 0.01 0.00 0.01 0.00 +anti-infectieux anti_infectieux ADJ m p 0.01 0.00 0.01 0.00 +anti-inflammatoire anti_inflammatoire NOM m s 0.07 0.07 0.07 0.07 +anti-insecte anti_insecte NOM m s 0.03 0.07 0.01 0.00 +anti-insectes anti_insecte NOM m p 0.03 0.07 0.02 0.07 +anti-instinct anti_instinct NOM m s 0.00 0.07 0.00 0.07 +anti-insurrectionnel anti_insurrectionnel ADJ m s 0.01 0.00 0.01 0.00 +anti-intimité anti_intimité NOM f s 0.04 0.00 0.04 0.00 +anti-japon anti_japon NOM m s 0.00 0.07 0.00 0.07 +anti-jeunes anti_jeunes ADJ m s 0.00 0.07 0.00 0.07 +anti-mafia anti_mafia NOM f s 0.01 0.07 0.01 0.07 +anti-maison anti_maison NOM f s 0.00 0.14 0.00 0.14 +anti-manipulation anti_manipulation NOM f s 0.01 0.00 0.01 0.00 +anti-manoir anti_manoir NOM m s 0.00 0.07 0.00 0.07 +anti-mariage anti_mariage NOM m s 0.03 0.00 0.03 0.00 +anti-matière anti_matière NOM f s 0.09 0.00 0.08 0.00 +anti-matières anti_matière NOM f p 0.09 0.00 0.01 0.00 +anti-mecs anti_mec NOM m p 0.02 0.00 0.02 0.00 +anti-militariste anti_militariste NOM s 0.01 0.00 0.01 0.00 +anti-missiles anti_missile NOM m p 0.03 0.00 0.03 0.00 +anti-mite anti_mite NOM f s 0.10 0.14 0.03 0.07 +anti-mites anti_mite NOM f p 0.10 0.14 0.08 0.07 +anti-monde anti_monde NOM m s 0.00 0.07 0.00 0.07 +anti-monstres anti_monstre ADJ f p 0.01 0.00 0.01 0.00 +anti-moustique anti_moustique NOM m s 0.58 0.07 0.41 0.00 +anti-moustiques anti_moustique NOM m p 0.58 0.07 0.17 0.07 +anti-médicaments anti_médicament NOM m p 0.01 0.00 0.01 0.00 +anti-métaphysique anti_métaphysique ADJ m s 0.00 0.07 0.00 0.07 +anti-météorites anti_météorite NOM f p 0.20 0.00 0.20 0.00 +anti-nausée anti_nausée NOM f s 0.01 0.00 0.01 0.00 +anti-navire anti_navire NOM m s 0.01 0.00 0.01 0.00 +anti-nucléaire anti_nucléaire ADJ m s 0.06 0.00 0.05 0.00 +anti-nucléaires anti_nucléaire ADJ p 0.06 0.00 0.01 0.00 +anti-nucléaires anti_nucléaire NOM m p 0.01 0.00 0.01 0.00 +anti-odeur anti_odeur NOM f s 0.02 0.14 0.01 0.07 +anti-odeurs anti_odeur NOM f p 0.02 0.14 0.01 0.07 +anti-odorants anti_odorant ADJ m p 0.00 0.07 0.00 0.07 +anti-âge anti_âge ADJ 0.04 0.74 0.04 0.74 +anti-origine anti_origine NOM f s 0.00 0.07 0.00 0.07 +anti-panache anti_panache NOM m s 0.00 0.07 0.00 0.07 +anti-particule anti_particule NOM f s 0.01 0.00 0.01 0.00 +anti-pasteur anti_pasteur NOM m s 0.00 0.07 0.00 0.07 +anti-patriote anti_patriote NOM s 0.01 0.00 0.01 0.00 +anti-patriotique anti_patriotique ADJ f s 0.06 0.00 0.06 0.00 +anti-pelliculaire anti_pelliculaire ADJ m s 0.13 0.07 0.13 0.07 +anti-piratage anti_piratage NOM m s 0.01 0.00 0.01 0.00 +anti-pirate anti_pirate ADJ s 0.01 0.00 0.01 0.00 +anti-poison anti_poison NOM m s 0.04 0.14 0.04 0.14 +anti-poisse anti_poisse NOM f s 0.05 0.07 0.05 0.07 +anti-pollution anti_pollution NOM f s 0.04 0.00 0.04 0.00 +anti-poux anti_poux NOM m p 0.04 0.00 0.04 0.00 +anti-progressistes anti_progressiste NOM p 0.00 0.07 0.00 0.07 +anti-psychotique anti_psychotique ADJ s 0.01 0.00 0.01 0.00 +anti-pub anti_pub NOM s 0.00 0.07 0.00 0.07 +anti-puces anti_puce NOM f p 0.14 0.00 0.14 0.00 +anti-pédérastiques anti_pédérastique ADJ p 0.00 0.07 0.00 0.07 +anti-racket anti_racket NOM m s 0.06 0.00 0.06 0.00 +anti-radiations anti_radiation NOM f p 0.08 0.00 0.08 0.00 +anti-rapt anti_rapt NOM m s 0.00 0.07 0.00 0.07 +anti-reflets anti_reflet NOM m p 0.00 0.07 0.00 0.07 +anti-rejet anti_rejet NOM m s 0.20 0.00 0.20 0.00 +anti-religion anti_religion NOM f s 0.01 0.00 0.01 0.00 +anti-rhume anti_rhume NOM m s 0.02 0.00 0.02 0.00 +anti-rides anti_ride NOM f p 0.06 0.00 0.06 0.00 +anti-romain anti_romain NOM m s 0.00 0.07 0.00 0.07 +anti-romantique anti_romantique ADJ s 0.01 0.00 0.01 0.00 +anti-rouille anti_rouille NOM f s 0.01 0.00 0.01 0.00 +anti-russe anti_russe ADJ m s 0.11 0.00 0.11 0.00 +anti-sida anti_sida NOM m s 0.02 0.00 0.02 0.00 +anti-socialistes anti_socialiste ADJ p 0.01 0.00 0.01 0.00 +anti-sociaux anti_sociaux ADJ m p 0.04 0.00 0.04 0.00 +anti-société anti_société NOM f s 0.00 0.07 0.00 0.07 +anti-somnolence anti_somnolence NOM f s 0.01 0.00 0.01 0.00 +anti-souffle anti_souffle NOM m s 0.03 0.00 0.03 0.00 +anti-sous-marin anti_sous_marin ADJ m s 0.02 0.00 0.02 0.00 +anti-soviétique anti_soviétique ADJ f s 0.00 0.07 0.00 0.07 +anti-sèche anti_sèche ADJ f s 0.01 0.07 0.01 0.00 +anti-sèches anti_sèche ADJ f p 0.01 0.07 0.00 0.07 +anti-stress anti_stress NOM m 0.35 0.00 0.35 0.00 +anti-sémite anti_sémite ADJ s 0.04 0.00 0.02 0.00 +anti-sémites anti_sémite ADJ f p 0.04 0.00 0.02 0.00 +anti-sémitisme anti_sémitisme NOM m s 0.08 0.00 0.08 0.00 +anti-syndical anti_syndical ADJ m s 0.01 0.00 0.01 0.00 +anti-tabac anti_tabac ADJ s 0.17 0.00 0.17 0.00 +anti-taches anti_tache NOM f p 0.15 0.00 0.15 0.00 +anti-tank anti_tank NOM m s 0.03 0.00 0.03 0.00 +anti-tapisserie anti_tapisserie NOM f s 0.00 0.07 0.00 0.07 +anti-temps anti_temps NOM m 0.00 0.27 0.00 0.27 +anti-tension anti_tension NOM f s 0.01 0.00 0.01 0.00 +anti-terrorisme anti_terrorisme NOM m s 0.53 0.00 0.53 0.00 +anti-terroriste anti_terroriste ADJ s 0.26 0.00 0.26 0.00 +anti-tornades anti_tornade NOM f p 0.01 0.00 0.01 0.00 +anti-toux anti_toux NOM f 0.01 0.00 0.01 0.00 +anti-truie anti_truie NOM f s 0.01 0.00 0.01 0.00 +anti-trusts anti_trust NOM m p 0.02 0.00 0.02 0.00 +anti-émeute anti_émeute ADJ s 0.15 0.00 0.10 0.00 +anti-émeutes anti_émeute ADJ p 0.15 0.00 0.05 0.00 +anti-émotionnelle anti_émotionnelle ADJ f s 0.00 0.07 0.00 0.07 +anti-évasion anti_évasion NOM f s 0.01 0.00 0.01 0.00 +anti-venin anti_venin NOM m s 0.18 0.00 0.18 0.00 +anti-vieillissement anti_vieillissement NOM m s 0.04 0.00 0.04 0.00 +anti-viol anti_viol NOM m s 0.09 0.00 0.09 0.00 +anti-violence anti_violence NOM f s 0.01 0.00 0.01 0.00 +anti-viral anti_viral ADJ m s 0.13 0.00 0.13 0.00 +anti-virus anti_virus NOM m 0.09 0.00 0.09 0.00 +anti-vol anti_vol NOM m s 0.36 0.27 0.35 0.27 +anti-vols anti_vol NOM m p 0.36 0.27 0.01 0.00 +appareil-photo appareil_photo NOM m s 0.32 0.27 0.32 0.27 +appartement-roi appartement_roi NOM m s 0.00 0.07 0.00 0.07 +apprenti-pilote apprenti_pilote NOM m s 0.02 0.00 0.02 0.00 +apprenti-sorcier apprenti_sorcier NOM m s 0.00 0.14 0.00 0.14 +appui-main appui_main NOM m s 0.00 0.14 0.00 0.14 +appui-tête appui_tête NOM m s 0.01 0.00 0.01 0.00 +appuie-tête appuie_tête NOM m 0.05 0.14 0.05 0.14 +après-coup après_coup NOM m s 0.02 0.00 0.02 0.00 +après-dîner après_dîner NOM m s 0.02 0.74 0.02 0.61 +après-dîners après_dîner NOM m p 0.02 0.74 0.00 0.14 +après-demain après_demain ADV 11.77 6.76 11.77 6.76 +après-déjeuner après_déjeuner VER 0.00 0.14 0.00 0.14 inf; +après-guerre après_guerre NOM s 0.73 3.24 0.73 3.24 +après-mort après_mort NOM f s 0.00 0.07 0.00 0.07 +après-rasage après_rasage NOM m s 0.45 0.00 0.45 0.00 +après-repas après_repas NOM m 0.01 0.07 0.01 0.07 +après-shampoing après_shampoing NOM m s 0.04 0.00 0.04 0.00 +après-shampooing après_shampooing NOM m s 0.04 0.07 0.04 0.07 +après-ski après_ski NOM m s 0.06 0.20 0.06 0.20 +après-vente après_vente ADJ s 0.05 0.00 0.05 0.00 +araignée-crabe araignée_crabe NOM f s 0.00 0.07 0.00 0.07 +arbres-refuges arbres_refuge NOM m p 0.00 0.07 0.00 0.07 +arc-bouta arc_bouter VER 0.17 5.00 0.00 0.47 ind:pas:3s; +arc-boutais arc_bouter VER 0.17 5.00 0.04 0.27 ind:imp:1s;ind:imp:2s; +arc-boutait arc_bouter VER 0.17 5.00 0.00 0.34 ind:imp:3s; +arc-boutant arc_boutant NOM m s 0.14 0.54 0.14 0.20 +arc-boutants arc_boutant NOM m p 0.14 0.54 0.01 0.00 +arc-boute arc_bouter VER 0.17 5.00 0.10 0.88 ind:pre:1s;ind:pre:3s; +arc-boutement arc_boutement NOM m s 0.00 0.07 0.00 0.07 +arc-boutent arc_bouter VER 0.17 5.00 0.01 0.20 ind:pre:3p; +arc-bouter arc_bouter VER 0.17 5.00 0.00 0.07 inf; +arc-boutera arc_bouter VER 0.17 5.00 0.01 0.00 ind:fut:3s; +arc-boutèrent arc_bouter VER 0.17 5.00 0.00 0.07 ind:pas:3p; +arc-bouté arc_bouter VER m s 0.17 5.00 0.01 1.15 par:pas; +arc-boutée arc_bouter VER f s 0.17 5.00 0.00 0.41 par:pas; +arc-boutées arc_bouter VER f p 0.17 5.00 0.00 0.27 par:pas; +arc-boutés arc_bouter VER m p 0.17 5.00 0.00 0.27 par:pas; +arc-en-ciel arc_en_ciel NOM m s 3.00 4.46 2.56 3.92 +archi-blet archi_blet ADJ m s 0.00 0.07 0.00 0.07 +archi-chiants archi_chiant ADJ m p 0.01 0.00 0.01 0.00 +archi-connu archi_connu ADJ m s 0.01 0.07 0.01 0.00 +archi-connus archi_connu ADJ m p 0.01 0.07 0.00 0.07 +archi-duchesse archiduc NOM f s 0.48 4.46 0.01 0.00 +archi-dégueu archi_dégueu ADJ s 0.00 0.07 0.00 0.07 +archi-faux archi_faux ADJ m 0.05 0.00 0.05 0.00 +archi-libre archi_libre ADJ f s 0.00 0.07 0.00 0.07 +archi-mortels archi_mortels NOM m 0.01 0.00 0.01 0.00 +archi-morts archi_mort NOM f p 0.00 0.07 0.00 0.07 +archi-méfiance archi_méfiance NOM f s 0.00 0.07 0.00 0.07 +archi-nul archi_nul NOM m s 0.01 0.00 0.01 0.00 +archi-nuls archi_nuls NOM m 0.23 0.00 0.23 0.00 +archi-plein archi_plein NOM m s 0.00 0.07 0.00 0.07 +archi-prouvé archi_prouvé ADJ m s 0.00 0.07 0.00 0.07 +archi-prudent archi_prudent NOM m s 0.00 0.07 0.00 0.07 +archi-ringard archi_ringard NOM m s 0.00 0.07 0.00 0.07 +archi-sophistiquée archi_sophistiqué ADJ f s 0.01 0.00 0.01 0.00 +archi-sèches archi_sèche ADJ f p 0.01 0.00 0.01 0.00 +archi-usé archi_usé ADJ m s 0.01 0.00 0.01 0.00 +archi-vieux archi_vieux ADJ m 0.00 0.07 0.00 0.07 +archiviste-paléographe archiviste_paléographe NOM s 0.00 0.14 0.00 0.07 +archivistes-paléographes archiviste_paléographe NOM p 0.00 0.14 0.00 0.07 +arcs-boutants arc_boutant NOM m p 0.14 0.54 0.00 0.34 +arcs-en-ciel arc_en_ciel NOM m p 3.00 4.46 0.44 0.54 +arme-miracle arme_miracle NOM f s 0.10 0.00 0.10 0.00 +arrache-clou arrache_clou NOM m s 0.00 0.07 0.00 0.07 +arrière-automne arrière_automne NOM m 0.00 0.14 0.00 0.14 +arrière-ban arrière_ban NOM m s 0.00 0.20 0.00 0.20 +arrière-boutique arrière_boutique NOM f s 0.31 6.35 0.31 5.95 +arrière-boutiques arrière_boutique NOM f p 0.31 6.35 0.00 0.41 +arrière-cabinets arrière_cabinet NOM m p 0.00 0.07 0.00 0.07 +arrière-cour arrière_cour NOM f s 0.45 1.35 0.41 1.01 +arrière-cours arrière_cour NOM f p 0.45 1.35 0.03 0.34 +arrière-cousin arrière_cousin NOM m s 0.12 0.00 0.12 0.00 +arrière-cuisine arrière_cuisine NOM f s 0.02 0.14 0.02 0.07 +arrière-cuisines arrière_cuisine NOM f p 0.02 0.14 0.00 0.07 +arrière-fond arrière_fond NOM m s 0.04 0.95 0.04 0.95 +arrière-garde arrière_garde NOM f s 0.47 2.03 0.47 1.69 +arrière-gardes arrière_garde NOM f p 0.47 2.03 0.00 0.34 +arrière-goût arrière_goût NOM m s 0.55 1.28 0.55 1.22 +arrière-goûts arrière_goût NOM m p 0.55 1.28 0.00 0.07 +arrière-gorge arrière_gorge NOM f s 0.00 0.27 0.00 0.27 +arrière-grand-mère arrière_grand_mère NOM f s 0.85 2.57 0.83 2.30 +arrière-grand-mères arrière_grand_mère NOM f p 0.85 2.57 0.00 0.20 +arrière-grand-oncle arrière_grand_oncle NOM m s 0.04 0.41 0.04 0.41 +arrière-grand-père arrière_grand_père NOM m s 1.48 4.12 1.48 3.78 +arrière-grand-tante arrière_grand_tante NOM f s 0.00 0.20 0.00 0.14 +arrière-grand-tantes arrière_grand_tante NOM f p 0.00 0.20 0.00 0.07 +arrière-grands-mères arrière_grand_mère NOM f p 0.85 2.57 0.02 0.07 +arrière-grands-parents arrière_grand_parent NOM m p 0.16 1.08 0.16 1.08 +arrière-grands-pères arrière_grand_père NOM m p 1.48 4.12 0.00 0.34 +arrière-loge arrière_loge NOM m s 0.00 0.07 0.00 0.07 +arrière-magasin arrière_magasin NOM m 0.00 0.07 0.00 0.07 +arrière-main arrière_main NOM s 0.00 0.07 0.00 0.07 +arrière-monde arrière_monde NOM m s 0.00 0.14 0.00 0.14 +arrière-neveux arrière_neveux NOM m p 0.00 0.07 0.00 0.07 +arrière-pays arrière_pays NOM m 0.37 1.15 0.37 1.15 +arrière-pensée arrière_pensée NOM f s 0.91 5.95 0.79 3.58 +arrière-pensées arrière_pensée NOM f p 0.91 5.95 0.13 2.36 +arrière-petit-fils arrière_petit_fils NOM m 0.14 0.61 0.14 0.61 +arrière-petit-neveu arrière_petit_neveu NOM m s 0.01 0.27 0.01 0.27 +arrière-petite-fille arrière_petite_fille NOM f s 0.13 0.81 0.13 0.47 +arrière-petite-nièce arrière_petite_nièce NOM f s 0.00 0.14 0.00 0.07 +arrière-petites-filles arrière_petite_fille NOM f p 0.13 0.81 0.00 0.34 +arrière-petites-nièces arrière_petite_nièce NOM f p 0.00 0.14 0.00 0.07 +arrière-petits-enfants arrière_petit_enfant NOM m p 0.36 0.27 0.36 0.27 +arrière-petits-fils arrière_petits_fils NOM m p 0.00 0.41 0.00 0.41 +arrière-petits-neveux arrière_petits_neveux NOM m p 0.00 0.07 0.00 0.07 +arrière-plan arrière_plan NOM m s 0.94 2.70 0.91 2.03 +arrière-plans arrière_plan NOM m p 0.94 2.70 0.02 0.68 +arrière-saison arrière_saison NOM f s 0.00 1.22 0.00 1.22 +arrière-salle arrière_salle NOM f s 0.28 2.36 0.24 2.16 +arrière-salles arrière_salle NOM f p 0.28 2.36 0.04 0.20 +arrière-train arrière_train NOM m s 0.66 1.69 0.64 1.62 +arrière-trains arrière_train NOM m p 0.66 1.69 0.03 0.07 +arrêt-buffet arrêt_buffet NOM m s 0.01 0.07 0.00 0.07 +arrête-boeuf arrête_boeuf NOM m s 0.00 0.07 0.00 0.07 +arrêts-buffet arrêt_buffet NOM m p 0.01 0.07 0.01 0.00 +article-choc article_choc NOM m s 0.00 0.07 0.00 0.07 +artiste-peintre artiste_peintre NOM s 0.02 0.14 0.02 0.14 +as-rois as_rois NOM m 0.01 0.00 0.01 0.00 +aspirateurs-traîneaux aspirateurs_traîneaux NOM m p 0.00 0.07 0.00 0.07 +assa-foetida assa_foetida NOM f s 0.27 0.00 0.27 0.00 +assurance-accidents assurance_accidents NOM f s 0.10 0.00 0.10 0.00 +assurance-chômage assurance_chômage NOM f s 0.01 0.00 0.01 0.00 +assurance-maladie assurance_maladie NOM f s 0.04 0.07 0.04 0.07 +assurance-vie assurance_vie NOM f s 1.32 0.27 1.26 0.27 +assurances-vie assurance_vie NOM f p 1.32 0.27 0.06 0.00 +assureur-conseil assureur_conseil NOM m s 0.00 0.07 0.00 0.07 +attaché-case attaché_case NOM m s 0.01 0.54 0.00 0.54 +attachés-cases attaché_case NOM m p 0.01 0.54 0.01 0.00 +attraction-vedette attraction_vedette NOM f s 0.01 0.00 0.01 0.00 +attrape-couillon attrape_couillon NOM m s 0.04 0.07 0.03 0.00 +attrape-couillons attrape_couillon NOM m p 0.04 0.07 0.01 0.07 +attrape-mouche attrape_mouche NOM m s 0.04 0.07 0.01 0.00 +attrape-mouches attrape_mouche NOM m p 0.04 0.07 0.03 0.07 +attrape-nigaud attrape_nigaud NOM m s 0.10 0.20 0.10 0.20 +au-dedans au_dedans ADV 0.92 4.86 0.92 4.86 +au-dehors au_dehors ADV 0.91 11.42 0.91 11.42 +au-delà au_delà ADV 21.77 52.91 21.77 52.91 +au-dessous au_dessous ADV 2.98 24.59 2.98 24.59 +au-dessus au_dessus PRE 0.02 0.07 0.02 0.07 +au-devant au_devant ADV 0.98 11.08 0.98 11.08 +audio-visuel audio_visuel ADJ m s 0.06 0.20 0.06 0.20 +audio-visuelle audiovisuel ADJ f s 0.88 0.27 0.00 0.14 +aujourd'hui aujourd_hui ADV 360.17 158.38 360.17 158.38 +aéro-club aéro_club NOM m s 0.01 0.07 0.01 0.07 +austro-hongrois austro_hongrois ADJ m s 0.05 0.41 0.05 0.27 +austro-hongroises austro_hongrois ADJ f p 0.05 0.41 0.00 0.14 +auto-adhésive auto_adhésif ADJ f s 0.00 0.07 0.00 0.07 +auto-analyse auto_analyse NOM f s 0.02 0.07 0.02 0.07 +auto-immun auto_immun ADJ m s 0.12 0.00 0.01 0.00 +auto-immune auto_immun ADJ f s 0.12 0.00 0.10 0.00 +auto-intoxication auto_intoxication NOM f s 0.00 0.14 0.00 0.14 +auto-pilote auto_pilote NOM s 0.10 0.00 0.10 0.00 +auto-stop auto_stop NOM m s 1.06 0.74 1.06 0.74 +auto-stoppeur auto_stoppeur NOM m s 0.63 0.20 0.28 0.00 +auto-stoppeurs auto_stoppeur NOM m p 0.63 0.20 0.27 0.00 +auto-stoppeuse auto_stoppeur NOM f s 0.63 0.20 0.08 0.07 +auto-stoppeuses auto_stoppeuse NOM f p 0.04 0.00 0.04 0.00 +auto-tamponneuse auto_tamponneuse NOM f s 0.26 0.00 0.04 0.00 +auto-tamponneuses auto_tamponneuse NOM f p 0.26 0.00 0.22 0.00 +auto-école auto_école NOM f s 0.58 0.07 0.58 0.07 +auto-érotisme auto_érotisme NOM m s 0.02 0.00 0.02 0.00 +automobile-club automobile_club NOM f s 0.03 0.00 0.03 0.00 +aux aguets aux_aguets ADV 0.87 5.88 0.87 5.88 +avant-avant-dernier avant_avant_dernier NOM m s 0.00 0.07 0.00 0.07 +avant-bec avant_bec NOM m s 0.01 0.00 0.01 0.00 +avant-bras avant_bras NOM m 0.84 12.70 0.84 12.70 +avant-centre avant_centre NOM m s 0.28 0.20 0.28 0.20 +avant-clous avant_clou NOM m p 0.00 0.07 0.00 0.07 +avant-corps avant_corps NOM m 0.00 0.07 0.00 0.07 +avant-coureur avant_coureur ADJ m s 0.32 1.62 0.02 0.74 +avant-coureurs avant_coureur ADJ m p 0.32 1.62 0.29 0.88 +avant-courrière avant_courrier ADJ f s 0.00 0.07 0.00 0.07 +avant-courrières avant_courrier NOM f p 0.00 0.07 0.00 0.07 +avant-cours avant_cour NOM f p 0.00 0.07 0.00 0.07 +avant-dîner avant_dîner NOM m 0.00 0.07 0.00 0.07 +avant-dernier avant_dernier ADJ m s 0.45 1.96 0.11 0.88 +avant-dernière avant_dernier ADJ f s 0.45 1.96 0.34 1.08 +avant-garde avant_garde NOM f s 1.52 7.91 1.52 7.09 +avant-gardes avant_garde NOM f p 1.52 7.91 0.00 0.81 +avant-gardiste avant_gardiste ADJ s 0.23 0.20 0.21 0.14 +avant-gardistes avant_gardiste ADJ m p 0.23 0.20 0.03 0.07 +avant-gauche avant_gauche ADJ 0.10 0.00 0.10 0.00 +avant-goût avant_goût NOM m s 1.25 1.62 1.25 1.62 +avant-guerre avant_guerre NOM s 0.65 7.16 0.65 7.16 +avant-hier avant_hier ADV 6.69 8.78 6.69 8.78 +avant-monts avant_mont NOM m p 0.01 0.00 0.01 0.00 +avant-papier avant_papier NOM m s 0.00 0.20 0.00 0.20 +avant-plan avant_plan NOM m s 0.02 0.07 0.02 0.07 +avant-port avant_port NOM m s 0.00 0.07 0.00 0.07 +avant-poste avant_poste NOM m s 2.15 3.72 1.52 0.27 +avant-postes avant_poste NOM m p 2.15 3.72 0.62 3.45 +avant-première avant_première NOM f s 0.50 0.41 0.45 0.41 +avant-premières avant_première NOM f p 0.50 0.41 0.05 0.00 +avant-printemps avant_printemps NOM m 0.00 0.07 0.00 0.07 +avant-projet avant_projet NOM m s 0.04 0.00 0.04 0.00 +avant-propos avant_propos NOM m 0.05 0.41 0.05 0.41 +avant-scène avant_scène NOM f s 0.73 0.88 0.73 0.68 +avant-scènes avant_scène NOM f p 0.73 0.88 0.00 0.20 +avant-toit avant_toit NOM m s 0.03 0.27 0.01 0.27 +avant-toits avant_toit NOM m p 0.03 0.27 0.02 0.00 +avant-train avant_train NOM m s 0.02 0.34 0.01 0.20 +avant-trains avant_train NOM m p 0.02 0.34 0.01 0.14 +avant-trou avant_trou NOM m s 0.01 0.00 0.01 0.00 +avant-veille avant_veille NOM f s 0.01 3.65 0.01 3.65 +aveugle-né aveugle_né NOM m s 0.00 0.14 0.00 0.07 +aveugle-née aveugle_né NOM f s 0.00 0.14 0.00 0.07 +avion-cargo avion_cargo NOM m s 0.20 0.14 0.20 0.00 +avion-citerne avion_citerne NOM m s 0.03 0.00 0.03 0.00 +avion-suicide avion_suicide NOM m s 0.01 0.07 0.01 0.07 +avion-école avion_école NOM m s 0.01 0.00 0.01 0.00 +avions-cargos avion_cargo NOM m p 0.20 0.14 0.00 0.14 +avions-espions avions_espions NOM m p 0.01 0.00 0.01 0.00 +avocat-conseil avocat_conseil NOM m s 0.08 0.00 0.08 0.00 +ayants droit ayants_droit NOM m p 0.01 0.14 0.01 0.14 +aye-aye aye_aye NOM m s 0.01 0.00 0.01 0.00 +baby-boom baby_boom NOM m s 0.05 0.00 0.05 0.00 +baby-foot baby_foot NOM m 0.55 0.74 0.55 0.74 +baby-sitter baby_sitter NOM f s 7.85 0.20 7.00 0.14 +baby-sitters baby_sitter NOM f p 7.85 0.20 0.85 0.07 +baby-sitting baby_sitting NOM m s 1.63 0.41 1.63 0.41 +bachi-bouzouk bachi_bouzouk NOM m s 0.00 0.07 0.00 0.07 +back up back_up NOM m s 0.09 0.00 0.09 0.00 +bain-marie bain_marie NOM m s 0.08 0.95 0.08 0.88 +bains-marie bain_marie NOM m p 0.08 0.95 0.00 0.07 +baise-en-ville baise_en_ville NOM m s 0.03 0.20 0.03 0.20 +balai-brosse balai_brosse NOM m s 0.40 0.61 0.29 0.34 +balais-brosses balai_brosse NOM m p 0.40 0.61 0.11 0.27 +ball-trap ball_trap NOM m s 0.20 0.14 0.20 0.14 +balle-peau balle_peau ONO 0.00 0.07 0.00 0.07 +ballon-sonde ballon_sonde NOM m s 0.14 0.00 0.14 0.00 +banc-titre banc_titre NOM m s 0.14 0.00 0.14 0.00 +bande-annonce bande_annonce NOM f s 0.51 0.00 0.41 0.00 +bande-son bande_son NOM f s 0.09 0.27 0.09 0.27 +bandes-annonces bande_annonce NOM f p 0.51 0.00 0.10 0.00 +bank-note bank_note NOM f s 0.00 0.20 0.00 0.07 +bank-notes bank_note NOM f p 0.00 0.20 0.00 0.14 +bar-hôtel bar_hôtel NOM m s 0.01 0.00 0.01 0.00 +bar-mitsva bar_mitsva NOM f 0.41 0.07 0.41 0.07 +bar-restaurant bar_restaurant NOM m s 0.00 0.07 0.00 0.07 +bar-tabac bar_tabac NOM m s 0.03 0.61 0.03 0.61 +barbe-de-capucin barbe_de_capucin NOM f s 0.00 0.07 0.00 0.07 +bas-bleu bas_bleu NOM m s 0.01 0.47 0.01 0.34 +bas-bleus bas_bleu NOM m p 0.01 0.47 0.00 0.14 +bas-côté bas_côté NOM m s 0.60 5.34 0.58 3.58 +bas-côtés bas_côté NOM m p 0.60 5.34 0.02 1.76 +bas-empire bas_empire NOM m 0.00 0.07 0.00 0.07 +bas-flanc bas_flanc NOM m 0.00 0.14 0.00 0.14 +bas-fond bas_fond NOM m s 1.05 3.72 0.02 1.62 +bas-fonds bas_fond NOM m p 1.05 3.72 1.03 2.09 +bas-relief bas_relief NOM m s 0.09 1.22 0.08 0.34 +bas-reliefs bas_relief NOM m p 0.09 1.22 0.01 0.88 +bas-ventre bas_ventre NOM m s 0.23 2.30 0.23 2.30 +base-ball base_ball NOM m s 10.12 1.28 10.12 1.28 +basket-ball basket_ball NOM m s 1.38 0.34 1.38 0.34 +basse-cour basse_cour NOM f s 0.81 3.85 0.57 3.65 +basse-fosse basse_fosse NOM f s 0.01 0.20 0.01 0.14 +basse-taille basse_taille NOM f s 0.00 0.14 0.00 0.14 +basses-cours basse_cour NOM f p 0.81 3.85 0.23 0.20 +basses-fosses basse_fosse NOM f p 0.01 0.20 0.00 0.07 +bat-flanc bat_flanc NOM m 0.00 2.84 0.00 2.84 +bat-l'eau bat_l_eau NOM m s 0.00 0.07 0.00 0.07 +bateau-citerne bateau_citerne NOM m s 0.03 0.00 0.03 0.00 +bateau-lavoir bateau_lavoir NOM m s 0.00 0.20 0.00 0.14 +bateau-mouche bateau_mouche NOM m s 0.01 0.74 0.01 0.34 +bateau-pilote bateau_pilote NOM m s 0.01 0.00 0.01 0.00 +bateau-pompe bateau_pompe NOM m s 0.00 0.07 0.00 0.07 +bateaux-lavoirs bateau_lavoir NOM m p 0.00 0.20 0.00 0.07 +bateaux-mouches bateau_mouche NOM m p 0.01 0.74 0.00 0.41 +battle-dress battle_dress NOM m 0.00 0.14 0.00 0.14 +be-bop be_bop NOM m 0.31 0.34 0.31 0.34 +beat generation beat_generation NOM f s 0.00 0.14 0.00 0.14 +beau-fils beau_fils NOM m 1.29 1.01 1.27 1.01 +beau-frère beau_frère NOM m s 13.14 15.68 9.13 8.65 +beau-papa beau_papa NOM m s 0.23 0.14 0.23 0.14 +beau-parent beau_parent NOM m s 0.01 0.00 0.01 0.00 +beau-père beau_père NOM m s 16.54 14.05 9.29 7.09 +beaux-arts beaux_arts NOM m p 2.19 3.38 2.19 3.38 +beaux-enfants beaux_enfants NOM m p 0.06 0.00 0.06 0.00 +beaux-fils beau_fils NOM m p 1.29 1.01 0.03 0.00 +beaux-frères beau_frère NOM m p 13.14 15.68 0.62 1.01 +beaux-parents beaux_parents NOM m p 1.52 1.22 1.52 1.22 +bec-de-cane bec_de_cane NOM m s 0.01 1.42 0.01 1.42 +bec-de-lièvre bec_de_lièvre NOM m s 0.10 0.61 0.10 0.61 +bel canto bel_canto NOM m 0.26 0.41 0.26 0.41 +belle-doche belle_doche NOM f s 0.05 0.07 0.05 0.07 +belle-famille belle_famille NOM f s 0.71 1.22 0.71 1.15 +belle-fille belle_fille NOM f s 3.32 2.57 3.29 2.50 +belle-maman belle_maman NOM f s 0.85 0.34 0.85 0.34 +belle-mère beau_père NOM f s 16.54 14.05 7.17 6.82 +belle-à-voir belle_à_voir NOM f s 0.00 0.27 0.00 0.27 +belle-soeur beau_frère NOM f s 13.14 15.68 3.36 5.47 +belle lurette belle_lurette NOM f s 0.75 2.64 0.75 2.64 +belles-de-jour belle_de_jour NOM f p 0.00 0.07 0.00 0.07 +belles-de-nuit belle_de_nuit NOM f p 0.00 0.34 0.00 0.34 +belles-familles belle_famille NOM f p 0.71 1.22 0.00 0.07 +belles-filles belle_fille NOM f p 3.32 2.57 0.04 0.07 +belles-lettres belle_lettre NOM f p 0.00 0.41 0.00 0.41 +belles-mères beau_père NOM f p 16.54 14.05 0.08 0.14 +belles-soeurs beau_frère NOM f p 13.14 15.68 0.04 0.54 +bernard-l'ermite bernard_l_ermite NOM m 0.00 0.34 0.00 0.34 +bernard-l'hermite bernard_l_hermite NOM m 0.01 0.14 0.01 0.14 +best-seller best_seller NOM m s 1.09 0.81 0.82 0.54 +best-sellers best_seller NOM m p 1.09 0.81 0.27 0.27 +best of best_of NOM m s 0.17 0.00 0.17 0.00 +bien-aimé bien_aimé NOM m s 8.50 4.66 4.51 1.89 +bien-aimée bien_aimé NOM f s 8.50 4.66 3.76 2.43 +bien-aimées bien_aimé ADJ f p 8.19 4.39 0.04 0.20 +bien-aimés bien_aimé ADJ m p 8.19 4.39 0.68 0.54 +bien-disants bien_disant ADJ m p 0.00 0.07 0.00 0.07 +bien-fonds bien_fonds NOM m 0.00 0.07 0.00 0.07 +bien-fondé bien_fondé NOM m s 0.31 0.81 0.31 0.81 +bien-manger bien_manger NOM m 0.00 0.14 0.00 0.14 +bien-pensant bien_pensant ADJ m s 0.06 2.16 0.01 1.28 +bien-pensante bien_pensant ADJ f s 0.06 2.16 0.02 0.47 +bien-pensants bien_pensant ADJ m p 0.06 2.16 0.03 0.41 +bien-portant bien_portant ADJ m s 0.03 0.41 0.00 0.14 +bien-portants bien_portant ADJ m p 0.03 0.41 0.03 0.27 +bien-être bien_être NOM m 4.28 8.78 4.28 8.78 +big-bang big_bang NOM m 0.03 0.41 0.03 0.41 +big band big_band NOM m 0.05 0.00 0.05 0.00 +big bang big_bang NOM m 0.38 1.62 0.38 1.62 +bin's bin_s NOM m 0.03 0.00 0.03 0.00 +binet-simon binet_simon NOM m s 0.00 0.07 0.00 0.07 +bip-bip bip_bip NOM m s 0.47 0.00 0.47 0.00 +birth control birth_control NOM m 0.01 0.14 0.01 0.14 +bisou-éclair bisou_éclair NOM m s 0.01 0.00 0.01 0.00 +bla-bla-bla bla_bla_bla NOM m 0.41 0.34 0.41 0.34 +bla-bla bla_bla NOM m 1.51 1.49 1.11 1.49 +bla bla bla_bla NOM m 1.51 1.49 0.40 0.00 +black-bass black_bass NOM m 0.00 0.07 0.00 0.07 +black-jack black_jack NOM m s 0.75 0.00 0.75 0.00 +black-out black_out NOM m 1.00 0.88 1.00 0.88 +blanc-bec blanc_bec NOM m s 1.50 0.61 1.39 0.47 +blanc-bleu blanc_bleu NOM m s 0.16 0.41 0.16 0.41 +blanc-gris blanc_gris ADJ m s 0.00 0.07 0.00 0.07 +blanc-seing blanc_seing NOM m s 0.01 0.27 0.01 0.27 +blancs-becs blanc_bec NOM m p 1.50 0.61 0.12 0.14 +blancs-manteaux blancs_manteaux ADJ m p 0.00 0.07 0.00 0.07 +bleu-ciel bleu_ciel ADJ m s 0.00 0.07 0.00 0.07 +bleu-noir bleu_noir ADJ 0.01 1.01 0.01 1.01 +bleu-roi bleu_roi NOM m s 0.02 0.00 0.02 0.00 +bleu-vert bleu_vert ADJ 0.13 0.47 0.13 0.47 +bloc-cylindres bloc_cylindres NOM m 0.01 0.00 0.01 0.00 +bloc-moteur bloc_moteur NOM m s 0.01 0.00 0.01 0.00 +bloc-notes bloc_notes NOM m 0.47 0.61 0.47 0.61 +blocs-notes blocs_notes NOM m p 0.07 0.07 0.07 0.07 +bloody mary bloody_mary NOM m s 1.32 0.20 1.32 0.20 +blue-jean blue_jean NOM m s 0.17 2.03 0.05 1.08 +blue-jeans blue_jean NOM m p 0.17 2.03 0.10 0.95 +blue jeans blue_jean NOM m p 0.17 2.03 0.01 0.00 +blue note blue_note NOM f s 0.02 0.00 0.02 0.00 +boîtes-repas boîtes_repas NOM f p 0.00 0.07 0.00 0.07 +boat people boat_people NOM m 0.02 0.07 0.02 0.07 +body-building body_building NOM m s 0.01 0.00 0.01 0.00 +bombes-test bombes_test NOM f p 0.01 0.00 0.01 0.00 +bon-papa bon_papa NOM m s 0.07 1.55 0.07 1.55 +bonheur-du-jour bonheur_du_jour NOM m s 0.02 0.14 0.02 0.07 +bonheurs-du-jour bonheur_du_jour NOM m p 0.02 0.14 0.00 0.07 +bonne-maman bonne_maman NOM f s 0.14 2.03 0.14 2.03 +bons-cadeaux bon_cadeaux ADV 0.01 0.00 0.01 0.00 +bons-chrétiens bon_chrétien NOM m p 0.00 0.07 0.00 0.07 +boogie-woogie boogie_woogie NOM m s 0.28 0.07 0.28 0.07 +borne-fontaine borne_fontaine NOM f s 0.00 0.20 0.00 0.07 +bornes-fontaines borne_fontaine NOM f p 0.00 0.20 0.00 0.14 +bossa-nova bossa_nova NOM f s 0.12 0.07 0.12 0.07 +bouche-à-bouche bouche_à_bouche NOM m 0.00 0.20 0.00 0.20 +bouche-à-oreille bouche_à_oreille NOM m s 0.00 0.07 0.00 0.07 +bouche-trou bouche_trou NOM m s 0.25 0.07 0.22 0.07 +bouche-trous bouche_trou NOM m p 0.25 0.07 0.03 0.00 +boui-boui boui_boui NOM m s 0.39 0.27 0.35 0.27 +bouis-bouis boui_boui NOM m p 0.39 0.27 0.04 0.00 +boulanger-pâtissier boulanger_pâtissier NOM m s 0.00 0.14 0.00 0.14 +boule-de-neige boule_de_neige NOM f s 0.07 0.00 0.07 0.00 +boulot-refuge boulot_refuge ADJ m s 0.00 0.07 0.00 0.07 +bourre-mou bourre_mou NOM m s 0.01 0.00 0.01 0.00 +bourre-pif bourre_pif NOM m s 0.04 0.07 0.04 0.07 +bout-dehors bout_dehors NOM m 0.00 0.20 0.00 0.20 +bout-rimé bout_rimé NOM m s 0.14 0.07 0.14 0.00 +boute-en-train boute_en_train NOM m 0.39 0.74 0.39 0.74 +boutique-cadeaux boutique_cadeaux NOM f s 0.02 0.00 0.02 0.00 +bouton-d'or bouton_d_or NOM m s 0.01 0.20 0.00 0.14 +bouton-pression bouton_pression NOM m s 0.04 0.14 0.02 0.07 +boutons-d'or bouton_d_or NOM m p 0.01 0.20 0.01 0.07 +boutons-pression bouton_pression NOM m p 0.04 0.14 0.02 0.07 +bouts-rimés bout_rimé NOM m p 0.14 0.07 0.00 0.07 +bow-window bow_window NOM m s 0.00 0.54 0.00 0.27 +bow-windows bow_window NOM m p 0.00 0.54 0.00 0.27 +box-calf box_calf NOM m s 0.00 0.27 0.00 0.27 +box-office box_office NOM m s 0.35 0.20 0.35 0.14 +box-offices box_office NOM m p 0.35 0.20 0.00 0.07 +boxer-short boxer_short NOM m s 0.05 0.07 0.05 0.07 +boy-friend boy_friend NOM m s 0.00 0.14 0.00 0.14 +boy-scout boy_scout NOM m s 2.09 1.62 0.86 0.68 +boy-scoutesque boy_scoutesque ADJ f s 0.00 0.07 0.00 0.07 +boy-scouts boy_scout NOM m p 2.09 1.62 1.22 0.95 +brûle-gueule brûle_gueule NOM m s 0.00 0.41 0.00 0.41 +bracelet-montre bracelet_montre NOM m s 0.00 2.70 0.00 1.76 +bracelets-montres bracelet_montre NOM m p 0.00 2.70 0.00 0.95 +brain-trust brain_trust NOM m s 0.03 0.07 0.03 0.07 +branle-bas branle_bas NOM m 0.29 1.82 0.29 1.82 +brasserie-hôtel brasserie_hôtel NOM f s 0.00 0.07 0.00 0.07 +break-down break_down NOM m 0.00 0.14 0.00 0.14 +bric-à-brac bric_à_brac NOM m 0.00 3.24 0.00 3.24 +bric et de broc bric_et_de_broc ADV 0.03 0.47 0.03 0.47 +brigadier-chef brigadier_chef NOM m s 0.01 1.96 0.01 1.82 +brigadiers-chefs brigadier_chef NOM m p 0.01 1.96 0.00 0.14 +brise-bise brise_bise NOM m 0.00 0.41 0.00 0.41 +brise-fer brise_fer NOM m 0.01 0.00 0.01 0.00 +brise-glace brise_glace NOM m 0.07 0.20 0.07 0.20 +brise-jet brise_jet NOM m 0.00 0.07 0.00 0.07 +brise-lame brise_lame NOM m s 0.00 0.14 0.00 0.14 +brise-vent brise_vent NOM m 0.01 0.00 0.01 0.00 +broncho-pneumonie broncho_pneumonie NOM f s 0.00 0.41 0.00 0.41 +broncho-pneumopathie broncho_pneumopathie NOM f s 0.01 0.07 0.01 0.07 +brown sugar brown_sugar NOM m 0.00 0.07 0.00 0.07 +brèche-dents brèche_dent NOM p 0.00 0.07 0.00 0.07 +bubble-gum bubble_gum NOM m s 0.08 0.07 0.07 0.07 +bubble gum bubble_gum NOM m s 0.08 0.07 0.01 0.00 +bébés-éprouvette bébé_éprouvette NOM m p 0.01 0.00 0.01 0.00 +bucco-génital bucco_génital ADJ m s 0.11 0.00 0.06 0.00 +bucco-génitales bucco_génital ADJ f p 0.11 0.00 0.02 0.00 +bucco-génitaux bucco_génital ADJ m p 0.11 0.00 0.02 0.00 +buen retiro buen_retiro NOM m 0.00 0.14 0.00 0.14 +buisson-ardent buisson_ardent NOM m s 0.01 0.00 0.01 0.00 +bull-dog bull_dog NOM m s 0.01 0.68 0.01 0.61 +bull-dogs bull_dog NOM m p 0.01 0.68 0.00 0.07 +bull-finch bull_finch NOM m s 0.00 0.14 0.00 0.14 +bull-terrier bull_terrier NOM m s 0.02 0.00 0.02 0.00 +by-pass by_pass NOM m 0.03 0.00 0.03 0.00 +by night by_night ADJ m s 0.25 0.41 0.25 0.41 +bye-bye bye_bye ONO 2.36 0.34 2.36 0.34 +c'est-à-dire c_est_à_dire ADV 0.00 52.03 0.00 52.03 +côtes-du-rhône côtes_du_rhône NOM m s 0.00 0.47 0.00 0.47 +cache-brassière cache_brassière NOM m 0.00 0.07 0.00 0.07 +cache-cache cache_cache NOM m 3.42 2.70 3.42 2.70 +cache-coeur cache_coeur NOM s 0.00 0.14 0.00 0.14 +cache-col cache_col NOM m 0.01 1.35 0.01 1.35 +cache-corset cache_corset NOM m 0.00 0.14 0.00 0.14 +cache-nez cache_nez NOM m 0.15 2.09 0.15 2.09 +cache-pot cache_pot NOM m s 0.16 0.81 0.16 0.41 +cache-pots cache_pot NOM m p 0.16 0.81 0.00 0.41 +cache-poussière cache_poussière NOM m 0.01 0.20 0.01 0.20 +cache-sexe cache_sexe NOM m 0.03 0.27 0.03 0.27 +cache-tampon cache_tampon NOM m 0.00 0.20 0.00 0.20 +café-concert café_concert NOM m s 0.00 0.47 0.00 0.34 +café-crème café_crème NOM m s 0.00 0.95 0.00 0.95 +café-hôtel café_hôtel NOM m s 0.00 0.07 0.00 0.07 +café-restaurant café_restaurant NOM m s 0.00 0.41 0.00 0.41 +café-tabac café_tabac NOM m s 0.00 1.22 0.00 1.22 +café-théâtre café_théâtre NOM m s 0.00 0.27 0.00 0.27 +cafés-concerts café_concert NOM m p 0.00 0.47 0.00 0.14 +cahin-caha cahin_caha ADV 0.00 1.08 0.00 1.08 +cake-walk cake_walk NOM m s 0.03 0.00 0.03 0.00 +cale-pied cale_pied NOM m s 0.00 0.34 0.00 0.07 +cale-pieds cale_pied NOM m p 0.00 0.34 0.00 0.27 +call-girl call_girl NOM f s 1.36 0.14 0.98 0.14 +call-girls call_girl NOM f p 1.36 0.14 0.09 0.00 +call girl call_girl NOM f s 1.36 0.14 0.25 0.00 +call girls call_girl NOM f p 1.36 0.14 0.03 0.00 +camion-benne camion_benne NOM m s 0.06 0.14 0.03 0.00 +camion-citerne camion_citerne NOM m s 0.70 0.47 0.62 0.34 +camion-grue camion_grue NOM m s 0.00 0.14 0.00 0.14 +camions-bennes camion_benne NOM m p 0.06 0.14 0.03 0.14 +camions-citernes camion_citerne NOM m p 0.70 0.47 0.08 0.14 +camping-car camping_car NOM m s 1.06 0.00 1.01 0.00 +camping-cars camping_car NOM m p 1.06 0.00 0.05 0.00 +camping-gaz camping_gaz NOM m 0.00 0.47 0.00 0.47 +caméra-espion caméra_espion NOM f s 0.01 0.00 0.01 0.00 +canadian river canadian_river NOM s 0.00 0.07 0.00 0.07 +canapé-lit canapé_lit NOM m s 0.02 1.15 0.00 1.15 +canapés-lits canapé_lit NOM m p 0.02 1.15 0.02 0.00 +canne-épée canne_épée NOM f s 0.01 0.54 0.01 0.34 +cannes-épées canne_épée NOM f p 0.01 0.54 0.00 0.20 +cap-hornier cap_hornier NOM m s 0.00 0.07 0.00 0.07 +capital-risque capital_risque NOM m s 0.04 0.00 0.04 0.00 +caporal-chef caporal_chef NOM m s 0.52 0.54 0.52 0.54 +caput mortuum caput_mortuum NOM m s 0.00 0.07 0.00 0.07 +cardinal-archevêque cardinal_archevêque NOM m s 0.02 0.07 0.02 0.07 +cardinal-légat cardinal_légat NOM m s 0.00 0.07 0.00 0.07 +cardio-pulmonaire cardio_pulmonaire ADJ s 0.07 0.00 0.07 0.00 +cardio-respiratoire cardio_respiratoire ADJ f s 0.10 0.00 0.10 0.00 +cardio-vasculaire cardio_vasculaire ADJ s 0.14 0.07 0.14 0.07 +carte-clé carte_clé NOM f s 0.03 0.00 0.03 0.00 +carte-lettre carte_lettre NOM f s 0.00 0.41 0.00 0.34 +cartes-lettres carte_lettre NOM f p 0.00 0.41 0.00 0.07 +carton-pâte carton_pâte NOM m s 0.17 1.28 0.17 1.28 +carême-prenant carême_prenant NOM m s 0.00 0.07 0.00 0.07 +casse-bonbons casse_bonbon NOM m p 0.10 0.00 0.10 0.00 +casse-burnes casse_burnes NOM m 0.05 0.00 0.05 0.00 +casse-cou casse_cou ADJ s 0.35 0.54 0.35 0.54 +casse-couilles casse_couilles NOM m 1.47 0.20 1.47 0.20 +casse-croûte casse_croûte NOM m s 1.54 4.46 1.52 4.32 +casse-croûtes casse_croûte NOM m p 1.54 4.46 0.02 0.14 +casse-cul casse_cul ADJ 0.01 0.00 0.01 0.00 +casse-dalle casse_dalle NOM m 0.29 0.95 0.28 0.81 +casse-dalles casse_dalle NOM m p 0.29 0.95 0.01 0.14 +casse-graine casse_graine NOM m 0.00 0.95 0.00 0.95 +casse-gueule casse_gueule NOM m 0.10 0.07 0.10 0.07 +casse-noisette casse_noisette NOM m s 0.22 0.41 0.22 0.41 +casse-noisettes casse_noisettes NOM m 0.13 0.27 0.13 0.27 +casse-noix casse_noix NOM m 0.12 0.20 0.12 0.20 +casse-pattes casse_pattes NOM m 0.03 0.20 0.03 0.20 +casse-pieds casse_pieds ADJ s 0.87 1.22 0.87 1.22 +casse-pipe casse_pipe NOM m s 0.50 0.74 0.50 0.74 +casse-pipes casse_pipes NOM m 0.02 0.20 0.02 0.20 +casse-tête casse_tête NOM m 0.69 0.88 0.69 0.88 +casus belli casus_belli NOM m 0.05 0.00 0.05 0.00 +celle-ci celle_ci PRO:dem f s 38.71 57.57 38.71 57.57 +celle-là celle_là PRO:dem f s 52.63 28.65 52.63 28.65 +celles-ci celles_ci PRO:dem f p 6.64 9.39 6.64 9.39 +celles-là celles_là PRO:dem f p 5.90 6.08 5.90 6.08 +celui-ci celui_ci PRO:dem m s 45.97 71.76 45.97 71.76 +celui-là celui_là PRO:dem m s 78.13 56.89 78.13 56.89 +centre-ville centre_ville NOM m s 2.87 0.54 2.87 0.54 +cerf-roi cerf_roi NOM m s 0.01 0.00 0.01 0.00 +cerf-volant cerf_volant NOM m s 1.85 1.82 1.40 1.22 +cerfs-volants cerf_volant NOM m p 1.85 1.82 0.46 0.61 +cessez-le-feu cessez_le_feu NOM m 1.54 0.41 1.54 0.41 +ceux-ci ceux_ci PRO:dem m p 4.26 20.95 4.26 20.95 +ceux-là ceux_là PRO:dem m p 14.65 25.81 14.65 25.81 +ch'timi ch_timi ADJ s 0.27 0.07 0.27 0.00 +ch'timis ch_timi NOM p 0.14 0.20 0.00 0.07 +cha-cha-cha cha_cha_cha NOM m s 0.61 0.20 0.61 0.20 +chalutier-patrouilleur chalutier_patrouilleur NOM m s 0.00 0.07 0.00 0.07 +chambre-salon chambre_salon NOM f s 0.00 0.07 0.00 0.07 +champ' champ NOM m s 57.22 106.49 0.04 1.76 +champs élysées champs_élysées NOM m p 0.00 0.14 0.00 0.14 +chanteuse-vedette chanteuse_vedette NOM f s 0.00 0.07 0.00 0.07 +chapiteaux-dortoirs chapiteau_dortoir NOM m p 0.00 0.07 0.00 0.07 +chasse-d'eau chasse_d_eau NOM f s 0.00 0.07 0.00 0.07 +chasse-goupilles chasse_goupille NOM f p 0.00 0.20 0.00 0.20 +chasse-mouche chasse_mouche NOM m s 0.00 0.14 0.00 0.14 +chasse-mouches chasse_mouches NOM m 0.12 0.61 0.12 0.61 +chasse-neige chasse_neige NOM m 0.58 0.54 0.58 0.54 +chasse-pierres chasse_pierres NOM m 0.01 0.00 0.01 0.00 +chassé-croisé chassé_croisé NOM m s 0.02 1.01 0.00 0.68 +chassés-croisés chassé_croisé NOM m p 0.02 1.01 0.02 0.34 +chat-huant chat_huant NOM m s 0.00 0.27 0.00 0.27 +chat-tigre chat_tigre NOM m s 0.00 0.14 0.00 0.14 +chaud-froid chaud_froid NOM m s 0.00 0.41 0.00 0.34 +chaude-pisse chaude_pisse NOM f s 0.15 0.34 0.15 0.27 +chaudes-pisses chaude_pisse NOM f p 0.15 0.34 0.00 0.07 +chauds-froids chaud_froid NOM m p 0.00 0.41 0.00 0.07 +chauffe-biberon chauffe_biberon NOM m s 0.10 0.00 0.10 0.00 +chauffe-eau chauffe_eau NOM m 0.63 0.61 0.63 0.61 +chauffe-plats chauffe_plats NOM m 0.00 0.14 0.00 0.14 +chauffeur-livreur chauffeur_livreur NOM m s 0.00 0.14 0.00 0.14 +chausse-pied chausse_pied NOM m s 0.24 0.14 0.24 0.14 +chausse-trape chausse_trape NOM f s 0.00 0.20 0.00 0.07 +chausse-trapes chausse_trape NOM f p 0.00 0.20 0.00 0.14 +chausse-trappe chausse_trappe NOM f s 0.00 0.07 0.00 0.07 +chauve-souris chauve_souris NOM f s 7.16 4.66 5.43 2.23 +chauves-souris chauve_souris NOM f p 7.16 4.66 1.73 2.43 +check-list check_list NOM f s 0.22 0.00 0.22 0.00 +check-up check_up NOM m 0.69 0.00 0.68 0.00 +check up check_up NOM m 0.69 0.00 0.01 0.00 +cheese-cake cheese_cake NOM m s 0.32 0.00 0.28 0.00 +cheese-cakes cheese_cake NOM m p 0.32 0.00 0.05 0.00 +chef-adjoint chef_adjoint NOM s 0.04 0.00 0.04 0.00 +chef-d'oeuvre chef_d_oeuvre NOM m s 3.34 12.77 2.56 8.51 +chef-d'oeuvres chef_d_oeuvres NOM s 0.11 0.00 0.11 0.00 +chef-lieu chef_lieu NOM m s 0.19 1.82 0.19 1.82 +chefs-d'oeuvre chef_d_oeuvre NOM m p 3.34 12.77 0.77 4.26 +chefs-lieux chefs_lieux NOM m p 0.00 0.27 0.00 0.27 +cherche-midi cherche_midi NOM m 0.01 0.27 0.01 0.27 +cheval-vapeur cheval_vapeur NOM m s 0.03 0.20 0.02 0.07 +chevau-léger chevau_léger NOM m s 0.01 0.14 0.01 0.14 +chevaux-vapeur cheval_vapeur NOM m p 0.03 0.20 0.01 0.14 +chewing-gum chewing_gum NOM m s 0.01 3.58 0.00 3.11 +chewing-gums chewing_gum NOM m p 0.01 3.58 0.01 0.41 +chewing gum chewing_gum NOM m s 0.01 3.58 0.00 0.07 +chez-soi chez_soi NOM m 0.31 0.41 0.31 0.41 +chic-type chic_type ADJ m s 0.01 0.00 0.01 0.00 +chiche-kebab chiche_kebab NOM m s 0.24 0.07 0.24 0.07 +chien-assis chien_assis NOM m 0.00 0.07 0.00 0.07 +chien-loup chien_loup NOM m s 0.27 1.08 0.14 1.08 +chien-robot chien_robot NOM m s 0.01 0.00 0.01 0.00 +chien-étoile chien_étoile NOM m s 0.00 0.07 0.00 0.07 +chiens-loups chien_loup NOM m p 0.27 1.08 0.12 0.00 +chiffres-clés chiffres_clé NOM m p 0.00 0.07 0.00 0.07 +chirurgien-dentiste chirurgien_dentiste NOM s 0.02 0.27 0.02 0.27 +chop suey chop_suey NOM m s 0.13 0.00 0.13 0.00 +château-fort château_fort NOM m s 0.00 0.07 0.00 0.07 +chou-fleur chou_fleur NOM m s 0.54 1.01 0.54 1.01 +chou-palmiste chou_palmiste NOM m s 0.00 0.07 0.00 0.07 +chou-rave chou_rave NOM m s 0.00 0.20 0.00 0.20 +choux-fleurs choux_fleurs NOM m p 0.57 1.28 0.57 1.28 +choux-raves choux_raves NOM m p 0.00 0.07 0.00 0.07 +chrétien-démocrate chrétien_démocrate ADJ m s 0.16 0.00 0.01 0.00 +chrétiens-démocrates chrétien_démocrate ADJ m p 0.16 0.00 0.14 0.00 +chèque-cadeau chèque_cadeau NOM m s 0.05 0.00 0.05 0.00 +chèvre-pied chèvre_pied NOM s 0.00 0.14 0.00 0.14 +chêne-liège chêne_liège NOM m s 0.00 0.95 0.00 0.14 +chênes-lièges chêne_liège NOM m p 0.00 0.95 0.00 0.81 +ci-après ci_après ADV 0.15 0.61 0.15 0.61 +ci-contre ci_contre ADV 0.00 0.07 0.00 0.07 +ci-dessous ci_dessous ADV 0.13 0.61 0.13 0.61 +ci-dessus ci_dessus ADV 0.20 1.28 0.20 1.28 +ci-gît ci_gît ADV 0.70 0.34 0.70 0.34 +ci-inclus ci_inclus ADJ m 0.03 0.14 0.01 0.07 +ci-incluse ci_inclus ADJ f s 0.03 0.14 0.01 0.07 +ci-incluses ci_inclus ADJ f p 0.03 0.14 0.01 0.00 +ci-joint ci_joint ADJ m s 0.62 1.89 0.59 1.69 +ci-jointe ci_joint ADJ f s 0.62 1.89 0.04 0.14 +ci-joints ci_joint ADJ m p 0.62 1.89 0.00 0.07 +cinquante-cinq cinquante_cinq ADJ:num 0.20 2.50 0.20 2.50 +cinquante-deux cinquante_deux ADJ:num 0.21 1.42 0.21 1.42 +cinquante-huit cinquante_huit ADJ:num 0.06 0.88 0.06 0.88 +cinquante-huitième cinquante_huitième ADJ 0.00 0.07 0.00 0.07 +cinquante-neuf cinquante_neuf ADJ:num 0.03 0.34 0.03 0.34 +cinquante-neuvième cinquante_neuvième ADJ 0.00 0.07 0.00 0.07 +cinquante-quatre cinquante_quatre ADJ:num 0.13 0.68 0.13 0.68 +cinquante-sept cinquante_sept ADJ:num 0.08 0.95 0.08 0.95 +cinquante-septième cinquante_septième ADJ 0.03 0.07 0.03 0.07 +cinquante-six cinquante_six ADJ:num 0.18 0.68 0.18 0.68 +cinquante-sixième cinquante_sixième ADJ 0.00 0.14 0.00 0.14 +cinquante-trois cinquante_trois ADJ:num 0.15 0.81 0.15 0.81 +cinquante-troisième cinquante_troisième ADJ 0.00 0.14 0.00 0.14 +ciné-club ciné_club NOM m s 0.00 0.74 0.00 0.54 +ciné-clubs ciné_club NOM m p 0.00 0.74 0.00 0.20 +ciné-roman ciné_roman NOM m s 0.00 0.14 0.00 0.14 +cinéma-vérité cinéma_vérité NOM m s 0.20 0.07 0.20 0.07 +circonscriptions-clés circonscriptions_clé NOM f p 0.01 0.00 0.01 0.00 +citizen band citizen_band NOM f s 0.01 0.00 0.01 0.00 +cité-dortoir cité_dortoir NOM f s 0.00 0.27 0.00 0.14 +cité-jardin cité_jardin NOM f s 0.00 0.20 0.00 0.20 +cités-dortoirs cité_dortoir NOM f p 0.00 0.27 0.00 0.14 +clair-obscur clair_obscur NOM m s 0.02 1.96 0.02 1.62 +claire-voie claire_voie NOM f s 0.01 2.43 0.01 1.96 +claires-voies claire_voie NOM f p 0.01 2.43 0.00 0.47 +clairs-obscurs clair_obscur NOM m p 0.02 1.96 0.00 0.34 +claque-merde claque_merde NOM m s 0.19 0.27 0.19 0.27 +clic-clac clic_clac ONO 0.10 0.07 0.10 0.07 +client-roi client_roi NOM m s 0.00 0.07 0.00 0.07 +clin-d'oeil clin_d_oeil NOM m s 0.01 0.00 0.01 0.00 +cloche-pied cloche_pied NOM f s 0.01 0.14 0.01 0.14 +clopin-clopant clopin_clopant ADV 0.00 0.14 0.00 0.14 +close-combat close_combat NOM m s 0.04 0.07 0.04 0.07 +close-up close_up NOM m s 0.01 0.07 0.01 0.07 +club-house club_house NOM m s 0.05 0.07 0.05 0.07 +co-animateur co_animateur NOM m s 0.03 0.00 0.03 0.00 +co-auteur co_auteur NOM m s 0.46 0.00 0.46 0.00 +co-avocat co_avocat NOM m s 0.01 0.00 0.01 0.00 +co-capitaine co_capitaine NOM m s 0.09 0.00 0.09 0.00 +co-dépendance co_dépendance NOM f s 0.01 0.00 0.01 0.00 +co-dépendante co_dépendant ADJ f s 0.01 0.00 0.01 0.00 +co-existence co_existence NOM f s 0.00 0.07 0.00 0.07 +co-exister co_exister VER 0.05 0.00 0.05 0.00 inf; +co-habiter co_habiter VER 0.02 0.00 0.02 0.00 inf; +co-locataire co_locataire NOM s 0.22 0.00 0.22 0.00 +co-pilote co_pilote NOM s 0.49 0.00 0.49 0.00 +co-pilotes co_pilote ADJ p 0.28 0.00 0.01 0.00 +co-production co_production NOM f s 0.11 0.00 0.01 0.00 +co-productions co_production NOM f p 0.11 0.00 0.10 0.00 +co-proprio co_proprio NOM m s 0.01 0.07 0.01 0.00 +co-proprios co_proprio NOM m p 0.01 0.07 0.00 0.07 +co-propriétaire co_propriétaire NOM s 0.19 0.27 0.05 0.00 +co-propriétaires co_propriétaire NOM p 0.19 0.27 0.14 0.27 +co-propriété co_propriété NOM f s 0.00 0.34 0.00 0.34 +co-président co_président NOM m s 0.02 0.07 0.02 0.07 +co-responsable co_responsable ADJ s 0.01 0.07 0.01 0.07 +co-signer co_signer VER 0.07 0.00 0.07 0.00 inf; +co-signons cosigner VER 0.32 0.00 0.01 0.00 ind:pre:1p; +co-tuteur co_tuteur NOM m s 0.00 0.07 0.00 0.07 +co-éducative co_éducatif ADJ f s 0.01 0.00 0.01 0.00 +co-équipier co_équipier NOM m s 0.21 0.00 0.21 0.00 +co-équipière coéquipier NOM f s 4.20 0.47 0.06 0.00 +co-vedette co_vedette NOM f s 0.02 0.00 0.02 0.00 +co-voiturage co_voiturage NOM m s 0.07 0.00 0.07 0.00 +coca-cola coca_cola NOM m 0.41 1.01 0.41 1.01 +cocotte-minute cocotte_minute NOM f s 0.07 0.34 0.07 0.34 +code-barre code_barre NOM m s 0.07 0.00 0.07 0.00 +code-barres code_barres NOM m 0.18 0.00 0.18 0.00 +code-clé code_clé NOM m s 0.01 0.00 0.01 0.00 +codes-clés codes_clé NOM m p 0.01 0.00 0.01 0.00 +coeur-poumons coeur_poumon NOM m p 0.03 0.07 0.03 0.07 +coffee shop coffee_shop NOM m s 0.10 0.00 0.10 0.00 +coffre-fort coffre_fort NOM m s 4.62 3.92 4.17 3.24 +coffres-forts coffre_fort NOM m p 4.62 3.92 0.45 0.68 +coin-coin coin_coin NOM m s 0.19 0.34 0.19 0.34 +coin-repas coin_repas NOM m s 0.02 0.00 0.02 0.00 +col-de-cygne col_de_cygne NOM m s 0.01 0.00 0.01 0.00 +col-vert col_vert NOM m s 0.12 0.14 0.12 0.07 +cold-cream cold_cream NOM m s 0.03 0.07 0.03 0.07 +colin-maillard colin_maillard NOM m s 0.93 0.95 0.93 0.95 +colis-cadeau colis_cadeau NOM m 0.02 0.00 0.02 0.00 +colis-repas colis_repas NOM m 0.00 0.07 0.00 0.07 +cols-de-cygne cols_de_cygne NOM m p 0.00 0.07 0.00 0.07 +cols-verts col_vert NOM m p 0.12 0.14 0.00 0.07 +comic book comic_book NOM m s 0.08 0.07 0.01 0.00 +comic books comic_book NOM m p 0.08 0.07 0.07 0.07 +commandos-suicide commando_suicide NOM m p 0.01 0.00 0.01 0.00 +commedia dell'arte commedia_dell_arte NOM f s 0.02 0.14 0.02 0.14 +commis-voyageur commis_voyageur NOM m s 0.05 0.41 0.05 0.20 +commis-voyageurs commis_voyageur NOM m p 0.05 0.41 0.00 0.20 +commissaire-adjoint commissaire_adjoint NOM s 0.02 0.07 0.02 0.07 +commissaire-priseur commissaire_priseur NOM m s 0.06 0.81 0.06 0.61 +commissaires-priseurs commissaire_priseur NOM m p 0.06 0.81 0.00 0.20 +commode-toilette commode_toilette NOM f s 0.00 0.14 0.00 0.14 +complet-veston complet_veston NOM m s 0.00 0.54 0.00 0.54 +compte-fils compte_fils NOM m 0.00 0.34 0.00 0.34 +compte-gouttes compte_gouttes NOM m 0.45 1.42 0.45 1.42 +compte-rendu compte_rendu NOM m s 2.21 0.14 2.06 0.07 +compte-tours compte_tours NOM m 0.04 0.41 0.04 0.41 +comptes-rendus compte_rendu NOM m p 2.21 0.14 0.16 0.07 +conduite-intérieure conduite_intérieure NOM f s 0.00 0.27 0.00 0.27 +conférences-débats conférences_débat NOM f p 0.00 0.07 0.00 0.07 +contrat-type contrat_type NOM m s 0.01 0.07 0.01 0.07 +contre-accusations contre_accusation NOM f p 0.01 0.00 0.01 0.00 +contre-alizés contre_alizé NOM m p 0.00 0.07 0.00 0.07 +contre-allée contre_allée NOM f s 0.05 0.34 0.04 0.20 +contre-allées contre_allée NOM f p 0.05 0.34 0.01 0.14 +contre-amiral contre_amiral NOM m s 0.19 0.07 0.19 0.07 +contre-appel contre_appel NOM m s 0.00 0.07 0.00 0.07 +contre-assurance contre_assurance NOM f s 0.00 0.07 0.00 0.07 +contre-attaqua contre_attaquer VER 0.71 1.96 0.01 0.07 ind:pas:3s; +contre-attaquaient contre_attaquer VER 0.71 1.96 0.00 0.20 ind:imp:3p; +contre-attaquait contre_attaquer VER 0.71 1.96 0.00 0.07 ind:imp:3s; +contre-attaquant contre_attaquer VER 0.71 1.96 0.00 0.07 par:pre; +contre-attaque contre_attaque NOM f s 1.46 2.16 1.35 1.69 +contre-attaquent contre_attaquer VER 0.71 1.96 0.07 0.20 ind:pre:3p; +contre-attaquer contre_attaquer VER 0.71 1.96 0.37 0.95 inf; +contre-attaquera contre_attaquer VER 0.71 1.96 0.01 0.00 ind:fut:3s; +contre-attaquerons contre_attaquer VER 0.71 1.96 0.03 0.07 ind:fut:1p; +contre-attaques contre_attaque NOM f p 1.46 2.16 0.11 0.47 +contre-attaquons contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pre:1p; +contre-attaquèrent contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pas:3p; +contre-attaqué contre_attaquer VER m s 0.71 1.96 0.07 0.07 par:pas; +contre-champ contre_champ NOM m s 0.00 0.07 0.00 0.07 +contre-chant contre_chant NOM m s 0.00 0.14 0.00 0.14 +contre-chocs contre_choc NOM m p 0.00 0.07 0.00 0.07 +contre-clés contre_clé NOM f p 0.00 0.07 0.00 0.07 +contre-courant contre_courant NOM m s 0.59 1.96 0.59 1.96 +contre-culture contre_culture NOM f s 0.03 0.00 0.03 0.00 +contre-emploi contre_emploi NOM m s 0.01 0.00 0.01 0.00 +contre-espionnage contre_espionnage NOM m s 0.67 0.34 0.67 0.34 +contre-exemple contre_exemple NOM m s 0.00 0.07 0.00 0.07 +contre-expertise contre_expertise NOM f s 0.52 0.27 0.51 0.20 +contre-expertises contre_expertise NOM f p 0.52 0.27 0.01 0.07 +contre-feu contre_feu NOM m s 0.07 0.00 0.07 0.00 +contre-feux contre_feux NOM m p 0.00 0.07 0.00 0.07 +contre-fiches contre_fiche NOM f p 0.00 0.07 0.00 0.07 +contre-fil contre_fil NOM m s 0.00 0.07 0.00 0.07 +contre-gré contre_gré NOM m s 0.00 0.14 0.00 0.14 +contre-indication contre_indication NOM f s 0.07 0.00 0.04 0.00 +contre-indications contre_indication NOM f p 0.07 0.00 0.04 0.00 +contre-indiqué contre_indiquer VER m s 0.06 0.14 0.06 0.14 par:pas; +contre-interrogatoire contre_interrogatoire NOM m s 0.48 0.00 0.46 0.00 +contre-interrogatoires contre_interrogatoire NOM m p 0.48 0.00 0.02 0.00 +contre-jour contre_jour NOM m s 0.39 6.01 0.39 6.01 +contre-la-montre contre_la_montre NOM m s 0.80 0.00 0.80 0.00 +contre-lame contre_lame NOM f s 0.00 0.07 0.00 0.07 +contre-lettre contre_lettre NOM f s 0.00 0.14 0.00 0.14 +contre-manifestants contre_manifestant NOM m p 0.00 0.14 0.00 0.14 +contre-manifestent contre_manifester VER 0.00 0.07 0.00 0.07 ind:pre:3p; +contre-mesure contre_mesure NOM f s 0.42 0.00 0.04 0.00 +contre-mesures contre_mesure NOM f p 0.42 0.00 0.39 0.00 +contre-mine contre_mine NOM f s 0.00 0.14 0.00 0.07 +contre-mines contre_mine NOM f p 0.00 0.14 0.00 0.07 +contre-miné contre_miner VER m s 0.00 0.07 0.00 0.07 par:pas; +contre-nature contre_nature ADJ s 0.41 0.14 0.41 0.14 +contre-offensive contre_offensive NOM f s 0.29 0.41 0.18 0.41 +contre-offensives contre_offensive NOM f p 0.29 0.41 0.11 0.00 +contre-ordre contre_ordre NOM m s 0.47 0.95 0.46 0.81 +contre-ordres contre_ordre NOM m p 0.47 0.95 0.01 0.14 +contre-pente contre_pente NOM f s 0.00 0.34 0.00 0.34 +contre-performance contre_performance NOM f s 0.14 0.07 0.14 0.00 +contre-performances contre_performance NOM f p 0.14 0.07 0.00 0.07 +contre-pied contre_pied NOM m s 0.04 0.61 0.04 0.54 +contre-pieds contre_pied NOM m p 0.04 0.61 0.00 0.07 +contre-plaqué contre_plaqué NOM m s 0.10 0.54 0.10 0.54 +contre-plongée contre_plongée NOM f s 0.23 0.47 0.23 0.47 +contre-pouvoirs contre_pouvoir NOM m p 0.00 0.07 0.00 0.07 +contre-pression contre_pression NOM f s 0.02 0.00 0.02 0.00 +contre-productif contre_productif ADJ m s 0.10 0.00 0.09 0.00 +contre-productive contre_productif ADJ f s 0.10 0.00 0.01 0.00 +contre-propagande contre_propagande NOM f s 0.02 0.07 0.02 0.07 +contre-proposition contre_proposition NOM f s 0.40 0.07 0.39 0.07 +contre-propositions contre_proposition NOM f p 0.40 0.07 0.01 0.00 +contre-réaction contre_réaction NOM f s 0.01 0.00 0.01 0.00 +contre-réforme contre_réforme NOM f s 0.00 0.61 0.00 0.61 +contre-révolution contre_révolution NOM f s 0.37 0.34 0.37 0.34 +contre-révolutionnaire contre_révolutionnaire ADJ s 0.14 0.27 0.03 0.00 +contre-révolutionnaires contre_révolutionnaire ADJ p 0.14 0.27 0.11 0.27 +contre-terrorisme contre_terrorisme NOM m s 0.07 0.00 0.07 0.00 +contre-terroriste contre_terroriste ADJ f s 0.00 0.07 0.00 0.07 +contre-test contre_test NOM m s 0.00 0.07 0.00 0.07 +contre-torpilleur contre_torpilleur NOM m s 0.20 1.22 0.08 0.61 +contre-torpilleurs contre_torpilleur NOM m p 0.20 1.22 0.12 0.61 +contre-transfert contre_transfert NOM m s 0.01 0.00 0.01 0.00 +contre-épreuve contre_épreuve NOM f s 0.01 0.07 0.00 0.07 +contre-épreuves contre_épreuve NOM f p 0.01 0.07 0.01 0.00 +contre-ut contre_ut NOM m 0.04 0.07 0.04 0.07 +contre-voie contre_voie NOM f s 0.00 0.27 0.00 0.27 +contre-vérité contre_vérité NOM f s 0.02 0.07 0.02 0.07 +coolie-pousse coolie_pousse NOM m s 0.01 0.00 0.01 0.00 +coq-à-l'âne coq_à_l_âne NOM m 0.00 0.14 0.00 0.14 +cordon-bleu cordon_bleu NOM m s 0.27 0.14 0.26 0.07 +cordons-bleus cordon_bleu NOM m p 0.27 0.14 0.01 0.07 +corn-flakes corn_flakes NOM m p 0.22 0.00 0.22 0.00 +corn flakes corn_flakes NOM f p 0.14 0.07 0.14 0.07 +corps-mort corps_mort NOM m s 0.00 0.07 0.00 0.07 +corpus delicti corpus_delicti NOM m s 0.03 0.00 0.03 0.00 +cosy-corner cosy_corner NOM m s 0.00 0.54 0.00 0.47 +cosy-corners cosy_corner NOM m p 0.00 0.54 0.00 0.07 +cot cot codec cot_cot_codec ONO 0.14 0.07 0.14 0.07 +coton-tige coton_tige NOM m s 0.43 0.07 0.20 0.00 +cotons-tiges coton_tige NOM m p 0.43 0.07 0.23 0.07 +cou-de-pied cou_de_pied NOM m s 0.01 0.27 0.01 0.27 +couche-culotte couche_culotte NOM f s 0.22 0.27 0.11 0.07 +couches-culottes couche_culotte NOM f p 0.22 0.27 0.11 0.20 +couci-couça couci_couça ADV 0.60 0.20 0.60 0.20 +couloir-symbole couloir_symbole NOM m s 0.00 0.07 0.00 0.07 +coup-de-poing coup_de_poing NOM m s 0.13 0.00 0.13 0.00 +coupe-chou coupe_chou NOM m s 0.05 0.34 0.05 0.34 +coupe-choux coupe_choux NOM m 0.14 0.27 0.14 0.27 +coupe-cigare coupe_cigare NOM m s 0.02 0.20 0.02 0.07 +coupe-cigares coupe_cigare NOM m p 0.02 0.20 0.00 0.14 +coupe-circuit coupe_circuit NOM m s 0.13 0.34 0.11 0.27 +coupe-circuits coupe_circuit NOM m p 0.13 0.34 0.02 0.07 +coupe-coupe coupe_coupe NOM m 0.10 0.68 0.10 0.68 +coupe-faim coupe_faim NOM m s 0.09 0.07 0.08 0.07 +coupe-faims coupe_faim NOM m p 0.09 0.07 0.01 0.00 +coupe-feu coupe_feu NOM m s 0.12 0.14 0.12 0.14 +coupe-file coupe_file NOM m s 0.03 0.00 0.03 0.00 +coupe-gorge coupe_gorge NOM m 0.28 0.61 0.28 0.61 +coupe-jarret coupe_jarret NOM m s 0.03 0.00 0.02 0.00 +coupe-jarrets coupe_jarret NOM m p 0.03 0.00 0.01 0.00 +coupe-ongle coupe_ongle NOM m s 0.05 0.00 0.05 0.00 +coupe-ongles coupe_ongles NOM m 0.26 0.14 0.26 0.14 +coupe-papier coupe_papier NOM m 0.36 0.95 0.36 0.95 +coupe-pâte coupe_pâte NOM m s 0.00 0.07 0.00 0.07 +coupe-racines coupe_racine NOM m p 0.00 0.07 0.00 0.07 +coupe-vent coupe_vent NOM m s 0.31 0.34 0.31 0.34 +coupon-cadeau coupon_cadeau NOM m s 0.01 0.00 0.01 0.00 +coups-de-poing coups_de_poing NOM m p 0.00 0.14 0.00 0.14 +cour-jardin cour_jardin NOM f s 0.00 0.07 0.00 0.07 +course-poursuite course_poursuite NOM f s 0.34 0.00 0.34 0.00 +court-bouillon court_bouillon NOM m s 0.29 0.68 0.29 0.68 +court-circuit court_circuit NOM m s 1.53 1.76 1.47 1.55 +court-circuitait court_circuiter VER 0.83 0.54 0.00 0.07 ind:imp:3s; +court-circuitant court_circuiter VER 0.83 0.54 0.00 0.07 par:pre; +court-circuite court_circuiter VER 0.83 0.54 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +court-circuiter court_circuiter VER 0.83 0.54 0.29 0.20 inf; +court-circuits court_circuit VER 0.01 0.00 0.01 0.00 ind:pre:3s; +court-circuits court_circuits NOM m s 0.02 0.00 0.02 0.00 +court-circuité court_circuiter VER m s 0.83 0.54 0.28 0.07 par:pas; +court-circuitée court_circuiter VER f s 0.83 0.54 0.02 0.07 par:pas; +court-circuitées court_circuiter VER f p 0.83 0.54 0.10 0.00 par:pas; +court-courrier court_courrier NOM m s 0.01 0.00 0.01 0.00 +court-jus court_jus NOM m 0.03 0.00 0.03 0.00 +court-métrage court_métrage NOM m s 0.17 0.00 0.17 0.00 +court-vêtue court_vêtu ADJ f s 0.01 0.14 0.01 0.00 +court-vêtues court_vêtu ADJ f p 0.01 0.14 0.00 0.14 +courts-circuits court_circuit NOM m p 1.53 1.76 0.07 0.20 +cous-de-pied cous_de_pied NOM m p 0.00 0.07 0.00 0.07 +couteau-scie couteau_scie NOM m s 0.01 0.07 0.01 0.07 +couvre-chef couvre_chef NOM m s 0.58 1.55 0.42 1.35 +couvre-chefs couvre_chef NOM m p 0.58 1.55 0.16 0.20 +couvre-feu couvre_feu NOM m s 3.63 3.11 3.63 3.11 +couvre-feux couvre_feux NOM m p 0.04 0.00 0.04 0.00 +couvre-lit couvre_lit NOM m s 0.33 2.77 0.30 2.70 +couvre-lits couvre_lit NOM m p 0.33 2.77 0.03 0.07 +couvre-pied couvre_pied NOM m s 0.01 0.47 0.01 0.47 +couvre-pieds couvre_pieds NOM m 0.01 0.47 0.01 0.47 +cover-girl cover_girl NOM f s 0.14 0.47 0.14 0.20 +cover-girls cover_girl NOM f p 0.14 0.47 0.00 0.27 +cow-boy cow_boy NOM m s 0.01 5.27 0.00 3.11 +cow-boys cow_boy NOM m p 0.01 5.27 0.01 2.16 +crapaud-buffle crapaud_buffle NOM m s 0.01 0.14 0.01 0.00 +crapauds-buffles crapaud_buffle NOM m p 0.01 0.14 0.00 0.14 +crash-test crash_test NOM m s 0.02 0.00 0.02 0.00 +crayon-encre crayon_encre NOM m s 0.00 0.27 0.00 0.27 +crayons-feutres crayon_feutre NOM m p 0.00 0.14 0.00 0.14 +cric-crac cric_crac ONO 0.00 0.07 0.00 0.07 +cris-craft cris_craft NOM m s 0.00 0.07 0.00 0.07 +croa-croa croa_croa ADV 0.00 0.41 0.00 0.27 +croa croa croa_croa ADV 0.00 0.41 0.00 0.14 +croc-en-jambe croc_en_jambe NOM m s 0.16 0.61 0.16 0.61 +croche-patte croche_patte NOM m s 0.17 0.34 0.17 0.34 +croche-pied croche_pied NOM m s 0.56 0.68 0.43 0.41 +croche-pieds croche_pied NOM m p 0.56 0.68 0.14 0.27 +crocs-en-jambe crocs_en_jambe NOM m p 0.00 0.20 0.00 0.20 +croque-madame croque_madame NOM m s 0.03 0.00 0.03 0.00 +croque-mitaine croque_mitaine NOM m s 0.61 0.20 0.61 0.20 +croque-monsieur croque_monsieur NOM m 0.28 0.14 0.28 0.14 +croque-mort croque_mort NOM m s 2.20 3.31 1.81 1.28 +croque-morts croque_mort NOM m p 2.20 3.31 0.39 2.03 +croquis-minute croquis_minute NOM m 0.00 0.07 0.00 0.07 +cross-country cross_country NOM m s 0.05 0.34 0.05 0.34 +crédit-bail crédit_bail NOM m s 0.02 0.00 0.02 0.00 +crêtes-de-coq crêtes_de_coq NOM f p 0.03 0.07 0.03 0.07 +cui-cui cui_cui NOM m 0.15 0.34 0.15 0.34 +cuisse-madame cuisse_madame NOM f s 0.00 0.07 0.00 0.07 +cul-blanc cul_blanc NOM m s 0.16 0.20 0.01 0.14 +cul-bénit cul_bénit NOM m s 0.08 0.20 0.02 0.07 +cul-cul cul_cul ADJ 0.04 0.00 0.04 0.00 +cul-de-basse-fosse cul_de_basse_fosse NOM m s 0.01 0.41 0.01 0.41 +cul-de-four cul_de_four NOM m s 0.00 0.20 0.00 0.20 +cul-de-jatte cul_de_jatte NOM m s 0.54 1.42 0.42 1.08 +cul-de-lampe cul_de_lampe NOM m s 0.01 0.20 0.01 0.14 +cul-de-plomb cul_de_plomb NOM m s 0.00 0.07 0.00 0.07 +cul-de-porc cul_de_porc NOM m s 0.02 0.00 0.02 0.00 +cul-de-poule cul_de_poule NOM m s 0.00 0.14 0.00 0.14 +cul-de-sac cul_de_sac NOM m s 0.80 1.55 0.75 1.22 +cul-terreux cul_terreux NOM m 2.23 1.28 1.60 0.41 +culs-blancs cul_blanc NOM m p 0.16 0.20 0.14 0.07 +culs-bénits cul_bénit NOM m p 0.08 0.20 0.06 0.14 +culs-de-basse-fosse culs_de_basse_fosse NOM m p 0.00 0.27 0.00 0.27 +culs-de-jatte cul_de_jatte NOM m p 0.54 1.42 0.12 0.34 +culs-de-lampe cul_de_lampe NOM m p 0.01 0.20 0.00 0.07 +culs-de-sac cul_de_sac NOM m p 0.80 1.55 0.05 0.34 +culs-terreux cul_terreux NOM m p 2.23 1.28 0.63 0.88 +cumulo-nimbus cumulo_nimbus NOM m 0.02 0.14 0.02 0.14 +céphalo-rachidien céphalo_rachidien ADJ m s 0.30 0.00 0.30 0.00 +cure-dent cure_dent NOM m s 1.39 0.88 0.60 0.14 +cure-dents cure_dent NOM m p 1.39 0.88 0.78 0.74 +cure-pipe cure_pipe NOM m s 0.07 0.00 0.05 0.00 +cure-pipes cure_pipe NOM m p 0.07 0.00 0.02 0.00 +curriculum vitae curriculum_vitae NOM m 0.13 0.74 0.13 0.74 +cérébro-spinale cérébro_spinal ADJ f s 0.03 0.14 0.03 0.14 +cuti-réaction cuti_réaction NOM f s 0.00 0.07 0.00 0.07 +cyclo-cross cyclo_cross NOM m 0.00 0.07 0.00 0.07 +cyclo-pousse cyclo_pousse NOM m 0.05 0.00 0.05 0.00 +d' d_ PRE 7224.74 11876.35 7224.74 11876.35 +d'abord d_abord ADV 175.45 169.32 175.45 169.32 +d'autres d_autres ADJ:ind p 133.34 119.73 133.34 119.73 +d'emblée d_emblée ADV 1.31 8.38 1.31 8.38 +d'ores et déjà d_ores_et_déjà ADV 0.26 1.28 0.26 1.28 +dalaï-lama dalaï_lama NOM m s 0.00 0.20 0.00 0.20 +dame-jeanne dame_jeanne NOM f s 0.01 0.20 0.01 0.07 +dames-jeannes dame_jeanne NOM f p 0.01 0.20 0.00 0.14 +dare-dare dare_dare ADV 0.21 1.55 0.17 1.28 +dare dare dare_dare ADV 0.21 1.55 0.04 0.27 +de amicis de_amicis NOM m s 0.00 0.07 0.00 0.07 +de auditu de_auditu ADV 0.00 0.07 0.00 0.07 +de facto de_facto ADV 0.16 0.07 0.16 0.07 +de guingois de_guingois ADV 0.01 2.64 0.01 2.64 +de plano de_plano ADV 0.04 0.00 0.04 0.00 +de profundis de_profundis NOM m 0.06 0.41 0.06 0.41 +de santis de_santis NOM m s 0.10 0.00 0.10 0.00 +de traviole de_traviole ADV 0.43 1.28 0.43 1.28 +de visu de_visu ADV 1.02 0.54 1.02 0.54 +delirium tremens delirium_tremens NOM m 0.07 0.27 0.07 0.27 +della francesca della_francesca NOM m s 0.34 0.20 0.34 0.20 +della porta della_porta NOM m s 0.00 0.07 0.00 0.07 +della robbia della_robbia NOM m s 0.00 0.07 0.00 0.07 +delta-plane delta_plane NOM m s 0.03 0.07 0.03 0.07 +demi-barbare demi_barbare NOM s 0.00 0.07 0.00 0.07 +demi-bas demi_bas NOM m 0.01 0.14 0.01 0.14 +demi-bonheur demi_bonheur NOM m s 0.00 0.07 0.00 0.07 +demi-bottes demi_botte NOM f p 0.00 0.14 0.00 0.14 +demi-bouteille demi_bouteille NOM f s 0.41 0.47 0.41 0.47 +demi-brigade demi_brigade NOM f s 0.00 0.68 0.00 0.61 +demi-brigades demi_brigade NOM f p 0.00 0.68 0.00 0.07 +demi-cent demi_cent NOM m s 0.01 0.07 0.01 0.07 +demi-centimètre demi_centimètre NOM m s 0.02 0.20 0.02 0.20 +demi-centre demi_centre NOM m s 0.00 0.07 0.00 0.07 +demi-cercle demi_cercle NOM m s 0.12 4.80 0.11 4.46 +demi-cercles demi_cercle NOM m p 0.12 4.80 0.01 0.34 +demi-chagrin demi_chagrin NOM m s 0.00 0.07 0.00 0.07 +demi-clair demi_clair NOM m s 0.00 0.07 0.00 0.07 +demi-clarté demi_clarté NOM f s 0.00 0.20 0.00 0.20 +demi-cloison demi_cloison NOM f s 0.00 0.20 0.00 0.20 +demi-coma demi_coma NOM m s 0.01 0.27 0.01 0.27 +demi-confidence demi_confidence NOM f s 0.00 0.07 0.00 0.07 +demi-conscience demi_conscience NOM f s 0.00 0.20 0.00 0.20 +demi-cylindre demi_cylindre NOM m s 0.00 0.14 0.00 0.14 +demi-degré demi_degré NOM m s 0.01 0.00 0.01 0.00 +demi-deuil demi_deuil NOM m s 0.00 0.34 0.00 0.34 +demi-dieu demi_dieu NOM m s 0.47 0.47 0.47 0.47 +demi-dieux demi_dieux NOM m p 0.16 0.47 0.16 0.47 +demi-dose demi_dose NOM f s 0.03 0.00 0.03 0.00 +demi-douzaine demi_douzaine NOM f s 1.34 6.55 1.34 6.55 +demi-dévêtu demi_dévêtu ADJ m s 0.00 0.14 0.00 0.07 +demi-dévêtue demi_dévêtu ADJ f s 0.00 0.14 0.00 0.07 +demi-figure demi_figure NOM f s 0.00 0.07 0.00 0.07 +demi-finale demi_finale NOM f s 1.13 0.00 0.87 0.00 +demi-finales demi_finale NOM f p 1.13 0.00 0.26 0.00 +demi-finaliste demi_finaliste NOM s 0.01 0.00 0.01 0.00 +demi-fond demi_fond NOM m s 0.21 0.14 0.21 0.14 +demi-fou demi_fou NOM m s 0.14 0.14 0.14 0.00 +demi-fous demi_fou NOM m p 0.14 0.14 0.00 0.14 +demi-frère demi_frère NOM m s 2.70 2.91 2.17 2.91 +demi-frères demi_frère NOM m p 2.70 2.91 0.53 0.00 +demi-gros demi_gros NOM m 0.01 0.47 0.01 0.47 +demi-heure demi_heure NOM f s 26.65 23.18 26.65 22.43 +demi-heures heur NOM f p 0.28 1.15 0.22 0.07 +demi-jour demi_jour NOM m s 0.02 1.28 0.02 1.28 +demi-journée demi_journée NOM f s 1.65 1.08 1.60 1.01 +demi-journées demi_journée NOM f p 1.65 1.08 0.05 0.07 +demi-juif demi_juif NOM m s 0.01 0.00 0.01 0.00 +demi-kilomètre demi_kilomètre NOM m s 0.14 0.14 0.14 0.14 +demi-liberté demi_liberté NOM f s 0.00 0.07 0.00 0.07 +demi-lieue demi_lieue NOM f s 0.30 0.41 0.30 0.41 +demi-litre demi_litre NOM m s 0.67 0.81 0.67 0.81 +demi-livre demi_livre NOM f s 0.12 0.34 0.12 0.34 +demi-longueur demi_longueur NOM f s 0.06 0.00 0.06 0.00 +demi-louis demi_louis NOM m 0.00 0.07 0.00 0.07 +demi-lueur demi_lueur NOM f s 0.00 0.07 0.00 0.07 +demi-lumière demi_lumière NOM f s 0.00 0.07 0.00 0.07 +demi-lune demi_lune NOM f s 1.03 2.36 0.92 2.23 +demi-lunes demi_lune NOM f p 1.03 2.36 0.11 0.14 +demi-luxe demi_luxe NOM m s 0.00 0.07 0.00 0.07 +demi-mal demi_mal NOM m s 0.00 0.07 0.00 0.07 +demi-mensonge demi_mensonge NOM m s 0.01 0.07 0.01 0.07 +demi-mesure demi_mesure NOM f s 0.39 0.54 0.14 0.14 +demi-mesures demi_mesure NOM f p 0.39 0.54 0.25 0.41 +demi-mille demi_mille NOM m 0.00 0.07 0.00 0.07 +demi-milliard demi_milliard NOM m s 0.87 0.07 0.87 0.07 +demi-millimètre demi_millimètre NOM m s 0.00 0.07 0.00 0.07 +demi-million demi_million NOM m s 3.08 0.41 3.08 0.41 +demi-minute demi_minute NOM f s 0.04 0.07 0.04 0.07 +demi-mois demi_mois NOM m 0.15 0.00 0.15 0.00 +demi-mondaine demi_mondain NOM f s 0.00 0.74 0.00 0.27 +demi-mondaines demi_mondain NOM f p 0.00 0.74 0.00 0.47 +demi-monde demi_monde NOM m s 0.01 0.14 0.01 0.14 +demi-mort demi_mort NOM m s 0.26 0.27 0.11 0.20 +demi-morte demi_mort NOM f s 0.26 0.27 0.04 0.07 +demi-morts demi_mort NOM m p 0.26 0.27 0.10 0.00 +demi-mot demi_mot NOM m s 0.19 1.49 0.19 1.49 +demi-mètre demi_mètre NOM m s 0.00 0.54 0.00 0.54 +demi-muid demi_muid NOM m s 0.00 0.07 0.00 0.07 +demi-nu demi_nu ADV 0.14 0.00 0.14 0.00 +demi-nuit demi_nuit NOM f s 0.02 0.27 0.02 0.27 +demi-obscurité demi_obscurité NOM f s 0.00 1.96 0.00 1.96 +demi-ouverte demi_ouvert ADJ f s 0.00 0.07 0.00 0.07 +demi-ouvrier demi_ouvrier NOM m s 0.00 0.07 0.00 0.07 +demi-page demi_page NOM f s 0.05 0.41 0.05 0.41 +demi-paralysé demi_paralysé ADJ m s 0.10 0.00 0.10 0.00 +demi-part demi_part NOM f s 0.01 0.00 0.01 0.00 +demi-pas demi_pas NOM m 0.21 0.27 0.21 0.27 +demi-pension demi_pension NOM f s 0.00 0.41 0.00 0.41 +demi-pensionnaire demi_pensionnaire NOM s 0.00 0.41 0.00 0.20 +demi-pensionnaires demi_pensionnaire NOM p 0.00 0.41 0.00 0.20 +demi-personne demi_personne ADJ m s 0.00 0.07 0.00 0.07 +demi-pied demi_pied NOM m s 0.00 0.07 0.00 0.07 +demi-pinte demi_pinte NOM f s 0.07 0.07 0.07 0.07 +demi-pièce demi_pièce NOM f s 0.00 0.07 0.00 0.07 +demi-place demi_place NOM f s 0.11 0.00 0.11 0.00 +demi-plein demi_plein ADJ m s 0.01 0.00 0.01 0.00 +demi-point demi_point NOM m s 0.14 0.00 0.14 0.00 +demi-pointes demi_pointe NOM f p 0.00 0.07 0.00 0.07 +demi-porte demi_porte NOM f s 0.00 0.14 0.00 0.14 +demi-portion demi_portion NOM f s 1.23 0.20 1.18 0.00 +demi-portions demi_portion NOM f p 1.23 0.20 0.05 0.20 +demi-pouce demi_pouce ADJ m s 0.01 0.00 0.01 0.00 +demi-quart demi_quart NOM m s 0.00 0.07 0.00 0.07 +demi-queue demi_queue NOM m s 0.01 0.20 0.01 0.20 +demi-ronde demi_rond NOM f s 0.00 0.34 0.00 0.34 +demi-réussite demi_réussite NOM f s 0.00 0.14 0.00 0.14 +demi-rêve demi_rêve NOM m s 0.00 0.20 0.00 0.20 +demi-révérence demi_révérence NOM f s 0.00 0.07 0.00 0.07 +demi-saison demi_saison NOM f s 0.00 0.95 0.00 0.81 +demi-saisons demi_saison NOM f p 0.00 0.95 0.00 0.14 +demi-sang demi_sang NOM m s 0.04 0.54 0.04 0.47 +demi-sangs demi_sang NOM m p 0.04 0.54 0.00 0.07 +demi-seconde demi_seconde NOM f s 0.13 1.01 0.13 1.01 +demi-section demi_section NOM f s 0.00 0.41 0.00 0.41 +demi-sel demi_sel NOM m 0.04 0.47 0.03 0.27 +demi-sels demi_sel NOM m p 0.04 0.47 0.01 0.20 +demi-siècle demi_siècle NOM m s 0.17 5.95 0.17 5.81 +demi-siècles demi_siècle NOM m p 0.17 5.95 0.00 0.14 +demi-soeur demi_soeur NOM f s 0.50 9.05 0.42 8.92 +demi-soeurs demi_soeur NOM f p 0.50 9.05 0.07 0.14 +demi-solde demi_solde NOM f s 0.01 0.14 0.01 0.07 +demi-soldes demi_solde NOM f p 0.01 0.14 0.00 0.07 +demi-sommeil demi_sommeil NOM m s 0.25 2.50 0.25 2.43 +demi-sommeils demi_sommeil NOM m p 0.25 2.50 0.00 0.07 +demi-somnolence demi_somnolence NOM f s 0.00 0.14 0.00 0.14 +demi-sourire demi_sourire NOM m s 0.00 2.84 0.00 2.77 +demi-sourires demi_sourire NOM m p 0.00 2.84 0.00 0.07 +demi-succès demi_succès NOM m 0.00 0.20 0.00 0.20 +demi-suicide demi_suicide NOM m s 0.00 0.07 0.00 0.07 +demi-talent demi_talent NOM m s 0.05 0.00 0.05 0.00 +demi-tarif demi_tarif NOM m s 0.56 0.14 0.56 0.14 +demi-tasse demi_tasse NOM f s 0.08 0.07 0.08 0.07 +demi-teinte demi_teinte NOM f s 0.06 0.95 0.04 0.47 +demi-teintes demi_teinte NOM f p 0.06 0.95 0.02 0.47 +demi-ton demi_ton NOM m s 0.34 0.61 0.00 0.34 +demi-tonne demi_ton NOM f s 0.34 0.61 0.21 0.07 +demi-tonneau demi_tonneau NOM m s 0.00 0.07 0.00 0.07 +demi-tons demi_ton NOM m p 0.34 0.61 0.14 0.20 +demi-tour demi_tour NOM m s 19.27 16.08 19.25 15.88 +demi-tours demi_tour NOM m p 19.27 16.08 0.02 0.20 +demi-tête demi_tête NOM f s 0.11 0.14 0.11 0.14 +demi-échec demi_échec NOM m s 0.00 0.07 0.00 0.07 +demi-verre demi_verre NOM m s 0.30 1.22 0.30 1.22 +demi-vertu demi_vertu NOM f s 0.00 0.07 0.00 0.07 +demi-vie demi_vie NOM f s 0.11 0.00 0.08 0.00 +demi-vierge demi_vierge NOM f s 0.02 0.20 0.02 0.07 +demi-vierges demi_vierge NOM f p 0.02 0.20 0.00 0.14 +demi-vies demi_vie NOM f p 0.11 0.00 0.02 0.00 +demi-volte demi_volte NOM f s 0.01 0.07 0.01 0.00 +demi-voltes demi_volte NOM f p 0.01 0.07 0.00 0.07 +demi-volée demi_volée NOM f s 0.00 0.07 0.00 0.07 +demi-volume demi_volume NOM m s 0.00 0.07 0.00 0.07 +demi-vérité demi_vérité NOM f s 0.32 0.07 0.32 0.07 +dent-de-lion dent_de_lion NOM f s 0.03 0.07 0.03 0.07 +deo gratias deo_gratias NOM m 0.01 0.20 0.01 0.20 +dernier-né dernier_né NOM m s 0.05 1.01 0.05 0.88 +derniers-nés dernier_né NOM m p 0.05 1.01 0.00 0.14 +dernière-née dernière_née NOM f s 0.01 0.20 0.01 0.20 +dessous-de-bras dessous_de_bras NOM m 0.01 0.07 0.01 0.07 +dessous-de-plat dessous_de_plat NOM m 0.20 0.54 0.20 0.54 +dessous-de-table dessous_de_table NOM m 0.21 0.00 0.21 0.00 +dessous-de-verre dessous_de_verre NOM m 0.01 0.00 0.01 0.00 +dessus-de-lit dessus_de_lit NOM m 0.09 1.08 0.09 1.08 +deus ex machina deus_ex_machina NOM m 0.16 0.47 0.16 0.47 +deutsche mark deutsche_mark ADJ m s 0.02 0.00 0.02 0.00 +deux-chevaux deux_chevaux NOM f 0.00 1.22 0.00 1.22 +deux-deux deux_deux NOM m 0.02 0.00 0.02 0.00 +deux-mâts deux_mâts NOM m 0.14 0.07 0.14 0.07 +deux-pièces deux_pièces NOM m 0.27 1.82 0.27 1.82 +deux-points deux_points NOM m 0.01 0.00 0.01 0.00 +deux-ponts deux_ponts NOM m 0.00 0.07 0.00 0.07 +deux-quatre deux_quatre NOM m 0.03 0.00 0.03 0.00 +deux-roues deux_roues NOM m 0.11 0.00 0.11 0.00 +dies irae dies_irae NOM m 0.54 0.14 0.54 0.14 +dieu-roi dieu_roi NOM m s 0.01 0.07 0.01 0.07 +dignus est intrare dignus_est_intrare ADV 0.00 0.07 0.00 0.07 +directeur-adjoint directeur_adjoint NOM m s 0.14 0.00 0.14 0.00 +disc-jockey disc_jockey NOM m s 0.18 0.07 0.16 0.00 +disc-jockeys disc_jockey NOM m p 0.18 0.07 0.03 0.07 +disciple-roi disciple_roi NOM s 0.00 0.07 0.00 0.07 +disque-jockey disque_jockey NOM m s 0.01 0.07 0.01 0.07 +dix-cors dix_cors NOM m 0.03 0.88 0.03 0.88 +dix-huit dix_huit ADJ:num 4.44 31.69 4.44 31.69 +dix-huitième dix_huitième NOM s 0.16 0.27 0.16 0.27 +dix-neuf dix_neuf ADJ:num 2.11 10.54 2.11 10.54 +dix-neuvième dix_neuvième ADJ 0.15 1.22 0.15 1.22 +dix-sept dix_sept ADJ:num 3.69 19.59 3.69 19.59 +dix-septième dix_septième ADJ 0.22 1.22 0.22 1.22 +dog-cart dog_cart NOM m s 0.04 0.00 0.04 0.00 +dommages-intérêts dommages_intérêts NOM m p 0.04 0.00 0.04 0.00 +donnant-donnant donnant_donnant ADV 0.73 0.41 0.73 0.41 +dos-d'âne dos_d_âne NOM m 0.01 0.34 0.01 0.34 +double-cliquer double_cliquer VER 0.09 0.00 0.01 0.00 inf; +double-cliqué double_cliquer VER m s 0.09 0.00 0.07 0.00 par:pas; +double-croche double_croche NOM f s 0.01 0.00 0.01 0.00 +double-décimètre double_décimètre NOM m s 0.00 0.07 0.00 0.07 +double-fond double_fond NOM m s 0.01 0.00 0.01 0.00 +double-six double_six NOM m s 0.14 0.20 0.14 0.20 +douce-amère douce_amère ADJ f s 0.06 0.27 0.06 0.27 +douces-amères douce_amère NOM f p 0.00 0.14 0.00 0.07 +doux-amer doux_amer ADJ m s 0.04 0.00 0.04 0.00 +downing street downing_street NOM f s 0.00 0.34 0.00 0.34 +dream team dream_team NOM f s 0.07 0.00 0.07 0.00 +dressing-room dressing_room NOM m s 0.01 0.00 0.01 0.00 +drive-in drive_in NOM m s 0.94 0.00 0.94 0.00 +droit-fil droit_fil NOM m s 0.00 0.07 0.00 0.07 +drone-espion drone_espion NOM m s 0.02 0.00 0.02 0.00 +décision-clé décision_clé NOM f s 0.01 0.00 0.01 0.00 +décret-loi décret_loi NOM m s 0.03 0.07 0.03 0.07 +décrochez-moi-ça décrochez_moi_ça NOM m 0.00 0.07 0.00 0.07 +ducs-d'albe duc_d_albe NOM m p 0.00 0.07 0.00 0.07 +duffel-coat duffel_coat NOM m s 0.01 0.07 0.01 0.07 +duffle-coat duffle_coat NOM m s 0.00 0.34 0.00 0.27 +duffle-coats duffle_coat NOM m p 0.00 0.34 0.00 0.07 +déjà-vu déjà_vu NOM m 0.01 0.34 0.01 0.34 +délégué-général délégué_général ADJ m s 0.00 0.14 0.00 0.14 +délégué-général délégué_général NOM m s 0.00 0.14 0.00 0.14 +dum-dum dum_dum ADJ 0.20 0.27 0.20 0.27 +démocrate-chrétien démocrate_chrétien ADJ m s 0.21 0.14 0.21 0.07 +démocrates-chrétiens démocrate_chrétien NOM p 0.10 0.27 0.10 0.27 +démonte-pneu démonte_pneu NOM m s 0.26 0.20 0.25 0.07 +démonte-pneus démonte_pneu NOM m p 0.26 0.20 0.01 0.14 +dépôt-vente dépôt_vente NOM m s 0.03 0.00 0.03 0.00 +député-maire député_maire NOM m s 0.00 0.34 0.00 0.34 +dure-mère dure_mère NOM f s 0.02 0.07 0.02 0.07 +déshabillage-éclair déshabillage_éclair NOM m s 0.00 0.07 0.00 0.07 +détective-conseil détective_conseil NOM s 0.01 0.00 0.01 0.00 +détectives-conseils détectives_conseil NOM p 0.01 0.00 0.01 0.00 +e-commerce e_commerce NOM m s 0.03 0.00 0.03 0.00 +e-mail e_mail NOM m s 6.47 0.00 4.16 0.00 +e-mails e_mail NOM m p 6.47 0.00 2.32 0.00 +east river east_river NOM f s 0.00 0.07 0.00 0.07 +eau-de-vie eau_de_vie NOM f s 3.17 4.73 3.05 4.73 +eau-forte eau_forte NOM f s 0.30 0.27 0.30 0.27 +eau-minute eau_minute NOM f s 0.01 0.00 0.01 0.00 +eaux-de-vie eau_de_vie NOM f p 3.17 4.73 0.12 0.00 +eaux-fortes eaux_fortes NOM f p 0.00 0.14 0.00 0.14 +ecce homo ecce_homo ADV 0.20 0.20 0.20 0.20 +elle-même elle_même PRO:per f s 17.88 113.51 17.88 113.51 +elles-mêmes elles_mêmes PRO:per f p 2.21 14.86 2.21 14.86 +emporte-pièce emporte_pièce NOM m 0.00 0.95 0.00 0.95 +en-avant en_avant NOM m 0.01 0.07 0.01 0.07 +en-but en_but NOM m 0.32 0.00 0.32 0.00 +en-cas en_cas NOM m 1.44 1.08 1.44 1.08 +en-cours en_cours NOM m 0.01 0.00 0.01 0.00 +en-dehors en_dehors NOM m 0.36 0.07 0.36 0.07 +en-tête en_tête NOM m s 0.44 2.77 0.39 2.64 +en-têtes en_tête NOM m p 0.44 2.77 0.05 0.14 +en catimini en_catimini ADV 0.12 1.42 0.12 1.42 +en loucedé en_loucedé ADV 0.16 0.47 0.16 0.47 +en tapinois en_tapinois ADV 0.25 0.68 0.25 0.68 +enfant-robot enfant_robot NOM s 0.16 0.00 0.16 0.00 +enfant-roi enfant_roi NOM s 0.02 0.14 0.02 0.14 +enfants-robots enfants_robot NOM m p 0.01 0.00 0.01 0.00 +enfants-rois enfants_roi NOM m p 0.00 0.07 0.00 0.07 +enquêtes-minute enquêtes_minut NOM f p 0.00 0.07 0.00 0.07 +enseignant-robot enseignant_robot NOM m s 0.00 0.07 0.00 0.07 +entr'acte entr_acte NOM m s 0.27 0.00 0.14 0.00 +entr'actes entr_acte NOM m p 0.27 0.00 0.14 0.00 +entr'aimer entr_aimer VER 0.00 0.07 0.00 0.07 inf; +entr'apercevoir entr_apercevoir VER 0.03 1.08 0.01 0.27 inf; +entr'aperçu entr_apercevoir VER m s 0.03 1.08 0.00 0.14 par:pas; +entr'aperçue entr_apercevoir VER f s 0.03 1.08 0.02 0.34 par:pas; +entr'aperçues entr_apercevoir VER f p 0.03 1.08 0.00 0.07 par:pas; +entr'aperçus entr_apercevoir VER m p 0.03 1.08 0.00 0.27 ind:pas:1s;par:pas; +entr'appellent entr_appeler VER 0.00 0.07 0.00 0.07 ind:pre:3p; +entr'ouvert entr_ouvert ADJ m s 0.01 1.49 0.00 0.41 +entr'ouverte entr_ouvert ADJ f s 0.01 1.49 0.01 0.74 +entr'ouvertes entr_ouvert ADJ f p 0.01 1.49 0.00 0.27 +entr'ouverts entr_ouvert ADJ m p 0.01 1.49 0.00 0.07 +entr'égorgent entr_égorger VER 0.00 0.20 0.00 0.07 ind:pre:3p; +entr'égorger entr_égorger VER 0.00 0.20 0.00 0.07 inf; +entr'égorgèrent entr_égorger VER 0.00 0.20 0.00 0.07 ind:pas:3p; +entre-deux-guerres entre_deux_guerres NOM m 0.10 0.74 0.10 0.74 +entre-deux entre_deux NOM m 0.34 0.81 0.34 0.81 +entre-déchiraient entre_déchirer VER 0.04 0.61 0.02 0.14 ind:imp:3p; +entre-déchirait entre_déchirer VER 0.04 0.61 0.00 0.07 ind:imp:3s; +entre-déchire entre_déchirer VER 0.04 0.61 0.01 0.00 ind:pre:3s; +entre-déchirent entre_déchirer VER 0.04 0.61 0.00 0.14 ind:pre:3p; +entre-déchirer entre_déchirer VER 0.04 0.61 0.01 0.20 inf; +entre-déchirèrent entre_déchirer VER 0.04 0.61 0.00 0.07 ind:pas:3p; +entre-dévorant entre_dévorer VER 0.30 0.34 0.01 0.07 par:pre; +entre-dévorent entre_dévorer VER 0.30 0.34 0.25 0.07 ind:pre:3p; +entre-dévorer entre_dévorer VER 0.30 0.34 0.05 0.14 inf; +entre-dévorèrent entre_dévorer VER 0.30 0.34 0.00 0.07 ind:pas:3p; +entre-jambe entre_jambe NOM m s 0.03 0.07 0.03 0.07 +entre-jambes entre_jambes NOM m 0.07 0.07 0.07 0.07 +entre-rail entre_rail NOM m s 0.01 0.00 0.01 0.00 +entre-regardait entre_regarder VER 0.00 0.34 0.00 0.07 ind:imp:3s; +entre-regardent entre_regarder VER 0.00 0.34 0.00 0.07 ind:pre:3p; +entre-regardèrent entre_regarder VER 0.00 0.34 0.00 0.14 ind:pas:3p; +entre-regardés entre_regarder VER m p 0.00 0.34 0.00 0.07 par:pas; +entre-temps entre_temps ADV 4.04 7.97 4.04 7.97 +entre-tuaient entre_tuer VER 2.63 1.01 0.01 0.00 ind:imp:3p; +entre-tuait entre_tuer VER 2.63 1.01 0.00 0.14 ind:imp:3s; +entre-tue entre_tuer VER 2.63 1.01 0.23 0.07 ind:pre:3s; +entre-tuent entre_tuer VER 2.63 1.01 0.55 0.07 ind:pre:3p; +entre-tuer entre_tuer VER 2.63 1.01 1.33 0.68 inf; +entre-tueront entre_tuer VER 2.63 1.01 0.14 0.00 ind:fut:3p; +entre-tuez entre_tuer VER 2.63 1.01 0.03 0.00 imp:pre:2p;ind:pre:2p; +entre-tuions entre_tuer VER 2.63 1.01 0.01 0.00 ind:imp:1p; +entre-tués entre_tuer VER m p 2.63 1.01 0.34 0.07 par:pas; +entrée-sortie entrée_sortie NOM f s 0.01 0.00 0.01 0.00 +espace-temps espace_temps NOM m 1.63 0.07 1.63 0.07 +esprit-de-sel esprit_de_sel NOM m s 0.00 0.07 0.00 0.07 +esprit-de-vin esprit_de_vin NOM m s 0.01 0.20 0.01 0.20 +essuie-glace essuie_glace NOM m s 1.00 2.91 0.38 1.01 +essuie-glaces essuie_glace NOM m p 1.00 2.91 0.62 1.89 +essuie-mains essuie_mains NOM m 0.23 0.27 0.23 0.27 +essuie-tout essuie_tout NOM m 0.11 0.14 0.11 0.14 +est-africain est_africain ADJ m s 0.01 0.00 0.01 0.00 +est-allemand est_allemand ADJ m s 0.67 0.00 0.31 0.00 +est-allemande est_allemand ADJ f s 0.67 0.00 0.23 0.00 +est-allemands est_allemand ADJ m p 0.67 0.00 0.13 0.00 +est-ce-que est_ce_que ADV 1.34 0.20 1.34 0.20 +est-ce qu est_ce_qu ADV 3.41 0.07 3.41 0.07 +est-ce que est_ce_que ADV 1159.41 322.23 1159.41 322.23 +est-ce est_ce ADV 0.05 0.20 0.05 0.20 +est-ouest est_ouest ADJ 0.38 0.41 0.38 0.41 +et caetera et_caetera ADV 0.72 0.88 0.72 0.88 +et cetera et_cetera ADV 1.14 0.74 1.14 0.74 +et seq et_seq ADV 0.00 0.07 0.00 0.07 +eunuques-espions eunuques_espion NOM m p 0.00 0.14 0.00 0.14 +euro-africaines euro_africain ADJ f p 0.00 0.07 0.00 0.07 +eux-mêmes eux_mêmes PRO:per m p 9.96 48.04 9.96 48.04 +ex-abbé ex_abbé NOM m s 0.00 0.07 0.00 0.07 +ex-acteur ex_acteur NOM m s 0.00 0.07 0.00 0.07 +ex-adjudant ex_adjudant NOM m s 0.00 0.14 0.00 0.14 +ex-agent ex_agent NOM m s 0.09 0.00 0.09 0.00 +ex-alcoolo ex_alcoolo NOM s 0.01 0.00 0.01 0.00 +ex-allée ex_allée NOM f s 0.00 0.07 0.00 0.07 +ex-amant ex_amant NOM m s 0.19 0.34 0.17 0.07 +ex-amante ex_amant NOM f s 0.19 0.34 0.01 0.27 +ex-amants ex_amant NOM m p 0.19 0.34 0.01 0.00 +ex-ambassadeur ex_ambassadeur NOM m s 0.01 0.00 0.01 0.00 +ex-amour ex_amour NOM m s 0.01 0.00 0.01 0.00 +ex-appartement ex_appartement NOM m s 0.00 0.07 0.00 0.07 +ex-apprenti ex_apprenti NOM m s 0.00 0.07 0.00 0.07 +ex-arriviste ex_arriviste NOM s 0.00 0.07 0.00 0.07 +ex-artiste ex_artiste NOM s 0.00 0.07 0.00 0.07 +ex-assistant ex_assistant NOM m s 0.07 0.00 0.02 0.00 +ex-assistante ex_assistant NOM f s 0.07 0.00 0.04 0.00 +ex-associé ex_associé NOM m s 0.13 0.07 0.08 0.07 +ex-associés ex_associé NOM m p 0.13 0.07 0.05 0.00 +ex-ballerine ex_ballerine NOM f s 0.01 0.00 0.01 0.00 +ex-banquier ex_banquier NOM m s 0.01 0.00 0.01 0.00 +ex-barman ex_barman NOM m s 0.01 0.07 0.01 0.07 +ex-basketteur ex_basketteur NOM m s 0.00 0.07 0.00 0.07 +ex-batteur ex_batteur NOM m s 0.00 0.07 0.00 0.07 +ex-beatnik ex_beatnik NOM s 0.00 0.07 0.00 0.07 +ex-belle-mère ex_belle_mère NOM f s 0.05 0.00 0.05 0.00 +ex-bibliothécaire ex_bibliothécaire NOM s 0.00 0.07 0.00 0.07 +ex-boss ex_boss NOM m 0.01 0.00 0.01 0.00 +ex-boxeur ex_boxeur NOM m s 0.16 0.00 0.16 0.00 +ex-branleurs ex_branleur NOM m p 0.00 0.07 0.00 0.07 +ex-buteur ex_buteur NOM m s 0.01 0.00 0.01 0.00 +ex-caïd ex_caïd NOM m s 0.01 0.00 0.01 0.00 +ex-camarades ex_camarade NOM p 0.01 0.00 0.01 0.00 +ex-capitaine ex_capitaine NOM m s 0.04 0.00 0.04 0.00 +ex-champion ex_champion NOM m s 0.75 0.14 0.71 0.14 +ex-championne ex_champion NOM f s 0.75 0.14 0.01 0.00 +ex-champions ex_champion NOM m p 0.75 0.14 0.03 0.00 +ex-chanteur ex_chanteur NOM m s 0.02 0.07 0.00 0.07 +ex-chanteuse ex_chanteur NOM f s 0.02 0.07 0.02 0.00 +ex-chauffeur ex_chauffeur NOM m s 0.14 0.07 0.14 0.07 +ex-chef ex_chef NOM s 0.20 0.14 0.20 0.14 +ex-chiropracteur ex_chiropracteur NOM m s 0.01 0.00 0.01 0.00 +ex-citation ex_citation NOM f s 0.01 0.00 0.01 0.00 +ex-citoyen ex_citoyen NOM m s 0.01 0.00 0.01 0.00 +ex-civils ex_civil NOM m p 0.01 0.00 0.01 0.00 +ex-collabo ex_collabo NOM s 0.00 0.07 0.00 0.07 +ex-collègue ex_collègue NOM s 0.30 0.14 0.03 0.14 +ex-collègues ex_collègue NOM p 0.30 0.14 0.27 0.00 +ex-colonel ex_colonel NOM m s 0.01 0.14 0.01 0.14 +ex-commando ex_commando NOM m s 0.05 0.00 0.05 0.00 +ex-concierge ex_concierge NOM s 0.00 0.07 0.00 0.07 +ex-contrebandier ex_contrebandier NOM m s 0.02 0.00 0.02 0.00 +ex-copain ex_copain NOM m s 0.28 0.00 0.26 0.00 +ex-copains ex_copain NOM m p 0.28 0.00 0.02 0.00 +ex-copine ex_copine NOM f s 0.71 0.00 0.54 0.00 +ex-copines ex_copine NOM f p 0.71 0.00 0.18 0.00 +ex-corps ex_corps NOM m 0.01 0.00 0.01 0.00 +ex-couple ex_couple NOM m s 0.01 0.00 0.01 0.00 +ex-danseuse ex_danseur NOM f s 0.01 0.14 0.01 0.14 +ex-dealer ex_dealer NOM m s 0.02 0.00 0.02 0.00 +ex-dieu ex_dieu NOM m s 0.01 0.00 0.01 0.00 +ex-diva ex_diva NOM f s 0.00 0.07 0.00 0.07 +ex-drôlesse ex_drôlesse NOM f s 0.00 0.07 0.00 0.07 +ex-drifter ex_drifter NOM m s 0.00 0.07 0.00 0.07 +ex-dulcinée ex_dulcinée NOM f s 0.00 0.07 0.00 0.07 +ex-démon ex_démon NOM m s 0.10 0.00 0.09 0.00 +ex-démons ex_démon NOM m p 0.10 0.00 0.01 0.00 +ex-enseigne ex_enseigne NOM m s 0.00 0.07 0.00 0.07 +ex-enzymes ex_enzyme NOM f p 0.00 0.07 0.00 0.07 +ex-esclavagistes ex_esclavagiste NOM p 0.01 0.00 0.01 0.00 +ex-femme ex_femme NOM f s 6.75 1.62 6.32 1.62 +ex-femmes ex_femme NOM f p 6.75 1.62 0.43 0.00 +ex-fiancé ex_fiancé NOM m s 0.18 0.07 0.10 0.00 +ex-fiancée ex_fiancé NOM f s 0.18 0.07 0.08 0.07 +ex-fils ex_fils NOM m 0.00 0.07 0.00 0.07 +ex-flic ex_flic NOM m s 0.27 0.07 0.24 0.07 +ex-flics ex_flic NOM m p 0.27 0.07 0.03 0.00 +ex-forçats ex_forçat NOM m p 0.01 0.00 0.01 0.00 +ex-fusilleurs ex_fusilleur NOM m p 0.00 0.07 0.00 0.07 +ex-gang ex_gang NOM m s 0.00 0.07 0.00 0.07 +ex-garde ex_garde NOM f s 0.14 0.20 0.00 0.14 +ex-gardes ex_garde NOM f p 0.14 0.20 0.14 0.07 +ex-gauchiste ex_gauchiste ADJ m s 0.00 0.07 0.00 0.07 +ex-gauchiste ex_gauchiste NOM s 0.00 0.07 0.00 0.07 +ex-gendre ex_gendre NOM m s 0.01 0.00 0.01 0.00 +ex-gonzesse ex_gonzesse NOM f s 0.00 0.14 0.00 0.14 +ex-gouverneur ex_gouverneur NOM m s 0.06 0.14 0.06 0.14 +ex-gravosse ex_gravosse NOM f s 0.00 0.07 0.00 0.07 +ex-griot ex_griot NOM m s 0.00 0.07 0.00 0.07 +ex-griveton ex_griveton NOM m s 0.00 0.07 0.00 0.07 +ex-grognasse ex_grognasse NOM f s 0.00 0.07 0.00 0.07 +ex-groupe ex_groupe NOM m s 0.00 0.07 0.00 0.07 +ex-guenilles ex_guenille NOM f p 0.00 0.07 0.00 0.07 +ex-guitariste ex_guitariste NOM s 0.00 0.07 0.00 0.07 +ex-génie ex_génie NOM m s 0.00 0.07 0.00 0.07 +ex-hôpital ex_hôpital NOM m s 0.00 0.07 0.00 0.07 +ex-hippies ex_hippie NOM p 0.02 0.00 0.02 0.00 +ex-homme-grenouille ex_homme_grenouille NOM m s 0.01 0.00 0.01 0.00 +ex-homme ex_homme NOM m s 0.06 0.00 0.06 0.00 +ex-immeuble ex_immeuble NOM m s 0.00 0.07 0.00 0.07 +ex-inspecteur ex_inspecteur NOM m s 0.03 0.00 0.02 0.00 +ex-inspecteurs ex_inspecteur NOM m p 0.03 0.00 0.01 0.00 +ex-journaliste ex_journaliste NOM s 0.02 0.07 0.02 0.07 +ex-junkie ex_junkie NOM m s 0.03 0.00 0.03 0.00 +ex-kid ex_kid NOM m s 0.00 0.27 0.00 0.27 +ex-leader ex_leader NOM m s 0.02 0.00 0.02 0.00 +ex-libris ex_libris NOM m 0.00 0.14 0.00 0.14 +ex-lieutenant ex_lieutenant NOM m s 0.01 0.00 0.01 0.00 +ex-lit ex_lit NOM m s 0.00 0.07 0.00 0.07 +ex-légionnaire ex_légionnaire NOM m s 0.00 0.07 0.00 0.07 +ex-lycée ex_lycée NOM m s 0.00 0.07 0.00 0.07 +ex-maître ex_maître NOM m s 0.00 0.07 0.00 0.07 +ex-madame ex_madame NOM f 0.03 0.07 0.03 0.07 +ex-maire ex_maire NOM m s 0.01 0.00 0.01 0.00 +ex-mari ex_mari NOM m s 5.05 1.08 4.87 1.08 +ex-marine ex_marine NOM f s 0.07 0.00 0.07 0.00 +ex-maris ex_mari NOM m p 5.05 1.08 0.19 0.00 +ex-mecs ex_mec NOM m p 0.10 0.00 0.10 0.00 +ex-membre ex_membre NOM m s 0.03 0.00 0.03 0.00 +ex-mercenaires ex_mercenaire NOM p 0.01 0.00 0.01 0.00 +ex-militaire ex_militaire NOM s 0.08 0.00 0.05 0.00 +ex-militaires ex_militaire NOM p 0.08 0.00 0.03 0.00 +ex-ministre ex_ministre NOM m s 0.06 0.41 0.04 0.41 +ex-ministres ex_ministre NOM m p 0.06 0.41 0.01 0.00 +ex-miss ex_miss NOM f 0.05 0.00 0.05 0.00 +ex-monteur ex_monteur NOM m s 0.02 0.00 0.02 0.00 +ex-motard ex_motard NOM m s 0.01 0.00 0.01 0.00 +ex-nana ex_nana NOM f s 0.12 0.00 0.12 0.00 +ex-officier ex_officier NOM m s 0.05 0.14 0.05 0.14 +ex-opérateur ex_opérateur NOM m s 0.00 0.07 0.00 0.07 +ex-palmes ex_palme NOM f p 0.14 0.00 0.14 0.00 +ex-para ex_para NOM m s 0.02 0.14 0.02 0.14 +ex-partenaire ex_partenaire NOM s 0.18 0.00 0.18 0.00 +ex-patron ex_patron NOM m s 0.20 0.00 0.20 0.00 +ex-pensionnaires ex_pensionnaire NOM p 0.00 0.07 0.00 0.07 +ex-perroquet ex_perroquet NOM m s 0.01 0.00 0.01 0.00 +ex-petit ex_petit NOM m s 0.68 0.00 0.38 0.00 +ex-petite ex_petit NOM f s 0.68 0.00 0.28 0.00 +ex-petits ex_petit NOM m p 0.68 0.00 0.03 0.00 +ex-pharmaciennes ex_pharmacien NOM f p 0.00 0.07 0.00 0.07 +ex-pilote ex_pilote ADJ m s 0.00 0.14 0.00 0.14 +ex-planète ex_planète NOM f s 0.01 0.00 0.01 0.00 +ex-planton ex_planton NOM m s 0.00 0.07 0.00 0.07 +ex-plaquée ex_plaqué ADJ f s 0.00 0.07 0.00 0.07 +ex-plâtrier ex_plâtrier NOM m s 0.00 0.07 0.00 0.07 +ex-poivrots ex_poivrot NOM m p 0.01 0.00 0.01 0.00 +ex-premier ex_premier ADJ m s 0.01 0.00 0.01 0.00 +ex-premier ex_premier NOM m s 0.01 0.00 0.01 0.00 +ex-primaire ex_primaire NOM s 0.00 0.07 0.00 0.07 +ex-prison ex_prison NOM f s 0.01 0.00 0.01 0.00 +ex-procureur ex_procureur NOM m s 0.03 0.00 0.03 0.00 +ex-profession ex_profession NOM f s 0.00 0.07 0.00 0.07 +ex-profileur ex_profileur NOM m s 0.01 0.00 0.01 0.00 +ex-promoteur ex_promoteur NOM m s 0.01 0.00 0.01 0.00 +ex-propriétaire ex_propriétaire NOM s 0.04 0.07 0.04 0.07 +ex-présentateur ex_présentateur NOM m s 0.00 0.07 0.00 0.07 +ex-président ex_président NOM m s 0.71 0.00 0.60 0.00 +ex-présidents ex_président NOM m p 0.71 0.00 0.11 0.00 +ex-prêtre ex_prêtre NOM m s 0.01 0.00 0.01 0.00 +ex-putain ex_putain NOM f s 0.00 0.07 0.00 0.07 +ex-putes ex_pute NOM f p 0.01 0.00 0.01 0.00 +ex-quincaillerie ex_quincaillerie NOM f s 0.00 0.14 0.00 0.14 +ex-quincaillier ex_quincaillier NOM m s 0.00 0.27 0.00 0.27 +ex-rebelle ex_rebelle ADJ s 0.00 0.07 0.00 0.07 +ex-reine ex_reine NOM f s 0.02 0.00 0.02 0.00 +ex-roi ex_roi NOM m s 0.01 0.20 0.01 0.20 +ex-républiques ex_république NOM f p 0.01 0.00 0.01 0.00 +ex-résidence ex_résidence NOM f s 0.01 0.00 0.01 0.00 +ex-révolutionnaire ex_révolutionnaire NOM s 0.00 0.07 0.00 0.07 +ex-sacs ex_sac NOM m p 0.00 0.07 0.00 0.07 +ex-secrétaire ex_secrétaire NOM s 0.07 0.00 0.07 0.00 +ex-sergent ex_sergent NOM m s 0.02 0.14 0.02 0.07 +ex-sergents ex_sergent NOM m p 0.02 0.14 0.00 0.07 +ex-soldats ex_soldat NOM m p 0.00 0.07 0.00 0.07 +ex-solistes ex_soliste NOM p 0.00 0.07 0.00 0.07 +ex-standardiste ex_standardiste NOM s 0.00 0.07 0.00 0.07 +ex-star ex_star NOM f s 0.14 0.00 0.14 0.00 +ex-strip-teaseuse ex_strip_teaseur NOM f s 0.00 0.07 0.00 0.07 +ex-séminariste ex_séminariste NOM s 0.00 0.07 0.00 0.07 +ex-sénateur ex_sénateur NOM m s 0.00 0.14 0.00 0.14 +ex-super ex_super ADJ m s 0.14 0.00 0.14 0.00 +ex-sévère ex_sévère ADJ f s 0.00 0.07 0.00 0.07 +ex-taulard ex_taulard NOM m s 0.38 0.14 0.28 0.07 +ex-taulards ex_taulard NOM m p 0.38 0.14 0.10 0.07 +ex-teinturier ex_teinturier NOM m s 0.01 0.00 0.01 0.00 +ex-tirailleur ex_tirailleur NOM m s 0.00 0.07 0.00 0.07 +ex-tueur ex_tueur NOM m s 0.01 0.00 0.01 0.00 +ex-tuteur ex_tuteur NOM m s 0.01 0.00 0.01 0.00 +ex-élève ex_élève NOM s 0.02 0.07 0.02 0.07 +ex-union ex_union NOM f s 0.00 0.07 0.00 0.07 +ex-épouse ex_épouse NOM f s 0.30 0.27 0.28 0.27 +ex-épouses ex_épouse NOM f p 0.30 0.27 0.02 0.00 +ex-équipier ex_équipier NOM m s 0.07 0.00 0.07 0.00 +ex-usine ex_usine NOM f s 0.01 0.00 0.01 0.00 +ex-vedette ex_vedette NOM f s 0.11 0.07 0.11 0.07 +ex-violeurs ex_violeur NOM m p 0.01 0.00 0.01 0.00 +ex-voto ex_voto NOM m 0.48 1.69 0.48 1.69 +ex abrupto ex_abrupto ADV 0.00 0.07 0.00 0.07 +ex nihilo ex_nihilo ADV 0.00 0.14 0.00 0.14 +expert-comptable expert_comptable NOM m s 0.23 0.20 0.23 0.20 +extra-dry extra_dry NOM m 0.00 0.07 0.00 0.07 +extra-fin extra_fin ADJ m s 0.00 0.34 0.00 0.27 +extra-fins extra_fin ADJ m p 0.00 0.34 0.00 0.07 +extra-fort extra_fort ADJ m s 0.11 0.20 0.04 0.07 +extra-forte extra_fort ADJ f s 0.11 0.20 0.08 0.14 +extra-lucide extra_lucide ADJ f s 0.05 0.20 0.04 0.14 +extra-lucides extra_lucide ADJ p 0.05 0.20 0.01 0.07 +extra-muros extra_muros ADJ f p 0.00 0.07 0.00 0.07 +extra-muros extra_muros ADV 0.00 0.07 0.00 0.07 +extra-sensoriel extra_sensoriel ADJ m s 0.06 0.00 0.02 0.00 +extra-sensorielle extra_sensoriel ADJ f s 0.06 0.00 0.04 0.00 +extra-souples extra_souple ADJ f p 0.00 0.07 0.00 0.07 +extra-terrestre extra_terrestre NOM s 3.71 0.34 1.35 0.27 +extra-terrestres extra_terrestre NOM p 3.71 0.34 2.36 0.07 +extra-utérin extra_utérin ADJ m s 0.10 0.00 0.03 0.00 +extra-utérine extra_utérin ADJ f s 0.10 0.00 0.07 0.00 +extrême-onction extrême_onction NOM f s 0.42 1.62 0.42 1.55 +extrême-orient extrême_orient NOM m s 0.00 0.07 0.00 0.07 +extrême-orientale extrême_oriental ADJ f s 0.00 0.07 0.00 0.07 +extrêmes-onctions extrême_onction NOM f p 0.42 1.62 0.00 0.07 +eye-liner eye_liner NOM m s 0.22 0.27 0.22 0.27 +faîtes-la-moi faîtes_la_moi NOM m p 0.01 0.00 0.01 0.00 +fac-similé fac_similé NOM m s 0.03 0.34 0.02 0.27 +fac-similés fac_similé NOM m p 0.03 0.34 0.01 0.07 +face-à-face face_à_face NOM m 0.00 0.47 0.00 0.47 +face-à-main face_à_main NOM m s 0.00 0.54 0.00 0.54 +faces-à-main faces_à_main NOM m p 0.00 0.07 0.00 0.07 +fair-play fair_play NOM m 0.60 0.14 0.60 0.14 +faire-part faire_part NOM m 0.65 3.04 0.65 3.04 +faire-valoir faire_valoir NOM m 0.20 0.68 0.20 0.68 +fait-divers fait_divers NOM m 0.00 0.20 0.00 0.20 +fait-tout fait_tout NOM m 0.01 0.74 0.01 0.74 +faits-divers faits_divers NOM m p 0.00 0.07 0.00 0.07 +fan-club fan_club NOM m s 0.28 0.14 0.28 0.14 +far-west far_west NOM m s 0.01 0.07 0.01 0.07 +fast-food fast_food NOM m s 2.34 0.47 1.56 0.34 +fast-foods fast_food NOM m p 2.34 0.47 0.34 0.07 +fast food fast_food NOM m s 2.34 0.47 0.43 0.07 +fausse-couche fausse_couche NOM f s 0.07 0.20 0.07 0.20 +fauteuil-club fauteuil_club NOM m s 0.00 0.27 0.00 0.27 +fauteuils-club fauteuils_club NOM m p 0.00 0.07 0.00 0.07 +faux-bond faux_bond NOM m 0.01 0.07 0.01 0.07 +faux-bourdon faux_bourdon NOM m s 0.02 0.07 0.02 0.07 +faux-col faux_col NOM m s 0.02 0.34 0.02 0.34 +faux-cul faux_cul NOM m s 0.41 0.07 0.41 0.07 +faux-filet faux_filet NOM m s 0.04 0.34 0.04 0.34 +faux-frère faux_frère ADJ m s 0.01 0.00 0.01 0.00 +faux-fuyant faux_fuyant NOM m s 0.22 1.22 0.02 0.47 +faux-fuyants faux_fuyant NOM m p 0.22 1.22 0.20 0.74 +faux-monnayeur faux_monnayeur NOM m s 0.26 0.61 0.01 0.14 +faux-monnayeurs faux_monnayeur NOM m p 0.26 0.61 0.25 0.47 +faux-pas faux_pas NOM m 0.38 0.14 0.38 0.14 +faux-pont faux_pont NOM m s 0.01 0.00 0.01 0.00 +faux-sauniers faux_saunier NOM m p 0.00 0.07 0.00 0.07 +faux-semblant faux_semblant NOM m s 0.46 1.49 0.37 0.74 +faux-semblants faux_semblant NOM m p 0.46 1.49 0.09 0.74 +feed-back feed_back NOM m 0.04 0.00 0.04 0.00 +feld-maréchal feld_maréchal NOM m s 0.32 0.27 0.32 0.27 +femme-enfant femme_enfant NOM f s 0.35 0.27 0.35 0.27 +femme-fleur femme_fleur NOM f s 0.00 0.07 0.00 0.07 +femme-objet femme_objet NOM f s 0.03 0.07 0.03 0.07 +femme-refuge femme_refuge NOM f s 0.00 0.07 0.00 0.07 +femme-robot femme_robot NOM f s 0.07 0.00 0.07 0.00 +fer-blanc fer_blanc NOM m s 0.08 2.84 0.08 2.84 +fermes-hôtels fermes_hôtel NOM f p 0.00 0.07 0.00 0.07 +ferry-boat ferry_boat NOM m s 0.14 0.20 0.14 0.20 +fesse-mathieu fesse_mathieu NOM m s 0.00 0.07 0.00 0.07 +feuille-morte feuille_morte ADJ f s 0.00 0.07 0.00 0.07 +fier-à-bras fier_à_bras NOM m 0.00 0.14 0.00 0.14 +fiers-à-bras fiers_à_bras NOM m p 0.00 0.27 0.00 0.27 +fifty-fifty fifty_fifty ADV 0.66 0.14 0.66 0.14 +fil-à-fil fil_à_fil NOM m 0.00 0.34 0.00 0.34 +file-la-moi file_la_moi NOM f s 0.01 0.00 0.01 0.00 +fille-mère fille_mère NOM f s 0.39 0.41 0.39 0.41 +film-livre film_livre NOM m s 0.00 0.07 0.00 0.07 +films-annonces films_annonce NOM m p 0.00 0.07 0.00 0.07 +five o'clock five_o_clock NOM m 0.01 0.14 0.01 0.14 +fixe-chaussettes fixe_chaussette NOM f p 0.13 0.20 0.13 0.20 +flanc-garde flanc_garde NOM f s 0.04 0.27 0.00 0.14 +flancs-gardes flanc_garde NOM f p 0.04 0.27 0.04 0.14 +flash-back flash_back NOM m 0.33 0.74 0.33 0.74 +flatus vocis flatus_vocis NOM m 0.00 0.07 0.00 0.07 +flip-flap flip_flap NOM m 0.00 0.14 0.00 0.14 +flip-flop flip_flop NOM m 0.07 0.00 0.07 0.00 +footballeur-vedette footballeur_vedette NOM m s 0.01 0.00 0.01 0.00 +foreign office foreign_office NOM m s 0.00 2.50 0.00 2.50 +fou-fou fou_fou ADJ m s 0.08 0.00 0.08 0.00 +fou-rire fou_rire NOM m s 0.02 0.14 0.02 0.14 +fourmi-lion fourmi_lion NOM m s 0.00 0.14 0.00 0.07 +fourmis-lions fourmi_lion NOM m p 0.00 0.14 0.00 0.07 +fourre-tout fourre_tout NOM m 0.28 0.54 0.28 0.54 +fox-terrier fox_terrier NOM m s 0.04 0.47 0.04 0.41 +fox-terriers fox_terrier NOM m p 0.04 0.47 0.00 0.07 +fox-trot fox_trot NOM m 0.50 1.62 0.50 1.62 +fraiseur-outilleur fraiseur_outilleur NOM m s 0.00 0.07 0.00 0.07 +franc-comtois franc_comtois NOM m 0.00 0.07 0.00 0.07 +franc-comtoise franc_comtois ADJ f s 0.00 0.07 0.00 0.07 +franc-jeu franc_jeu NOM m s 0.56 0.00 0.56 0.00 +franc-maçon franc_maçon NOM m s 0.94 2.09 0.38 0.54 +franc-maçonne franc_maçon NOM f s 0.94 2.09 0.00 0.27 +franc-maçonnerie franc_maçonnerie NOM f s 0.17 0.81 0.17 0.81 +franc-parler franc_parler NOM m s 0.53 0.27 0.53 0.27 +franc-tireur franc_tireur NOM m s 0.64 2.30 0.10 0.81 +franco-africain franco_africain ADJ m s 0.14 0.07 0.14 0.07 +franco-algérienne franco_algérien ADJ f s 0.00 0.07 0.00 0.07 +franco-allemand franco_allemand ADJ m s 0.11 0.61 0.00 0.14 +franco-allemande franco_allemand ADJ f s 0.11 0.61 0.11 0.34 +franco-allemandes franco_allemand ADJ f p 0.11 0.61 0.00 0.14 +franco-américain franco_américain ADJ m s 0.04 0.68 0.01 0.07 +franco-américaine franco_américain ADJ f s 0.04 0.68 0.03 0.27 +franco-américaines franco_américain ADJ f p 0.04 0.68 0.00 0.20 +franco-américains franco_américain ADJ m p 0.04 0.68 0.00 0.14 +franco-anglais franco_anglais ADJ m s 0.01 0.74 0.01 0.27 +franco-anglaise franco_anglais ADJ f s 0.01 0.74 0.00 0.41 +franco-anglaises franco_anglais NOM f p 0.01 0.00 0.01 0.00 +franco-belge franco_belge ADJ f s 0.00 0.14 0.00 0.14 +franco-britannique franco_britannique ADJ f s 0.14 2.43 0.00 1.35 +franco-britanniques franco_britannique ADJ p 0.14 2.43 0.14 1.08 +franco-canadien franco_canadien NOM m s 0.01 0.00 0.01 0.00 +franco-chinoises franco_chinois ADJ f p 0.00 0.07 0.00 0.07 +franco-italienne franco_italienne ADJ f s 0.01 0.00 0.01 0.00 +franco-japonaise franco_japonais ADJ f s 0.01 0.00 0.01 0.00 +franco-libanais franco_libanais ADJ m p 0.00 0.14 0.00 0.14 +franco-mongole franco_mongol ADJ f s 0.00 0.14 0.00 0.14 +franco-polonaise franco_polonais ADJ f s 0.00 0.07 0.00 0.07 +franco-russe franco_russe ADJ s 0.00 1.42 0.00 1.42 +franco-russes franco_russe NOM p 0.00 0.20 0.00 0.07 +franco-soviétique franco_soviétique ADJ s 0.00 0.14 0.00 0.14 +franco-syrien franco_syrien ADJ m s 0.00 0.14 0.00 0.14 +franco-turque franco_turque ADJ f s 0.00 0.14 0.00 0.14 +franco-vietnamien franco_vietnamien ADJ m s 0.00 0.07 0.00 0.07 +francs-bourgeois francs_bourgeois NOM m p 0.00 0.20 0.00 0.20 +francs-maçons franc_maçon NOM m p 0.94 2.09 0.57 1.28 +francs-tireurs franc_tireur NOM m p 0.64 2.30 0.54 1.49 +free-jazz free_jazz NOM m 0.00 0.07 0.00 0.07 +free-lance free_lance NOM s 0.20 0.07 0.20 0.07 +free jazz free_jazz NOM m 0.00 0.07 0.00 0.07 +fric-frac fric_frac NOM m 0.25 0.41 0.25 0.41 +frise-poulet frise_poulet NOM m s 0.01 0.00 0.01 0.00 +frotti-frotta frotti_frotta NOM m 0.04 0.20 0.04 0.20 +frou-frou frou_frou NOM m s 0.23 0.47 0.09 0.41 +frous-frous frou_frou NOM m p 0.23 0.47 0.14 0.07 +fuel-oil fuel_oil NOM m s 0.00 0.07 0.00 0.07 +full-contact full_contact NOM m s 0.04 0.00 0.04 0.00 +fume-cigarette fume_cigarette NOM m s 0.27 2.09 0.17 1.82 +fume-cigarettes fume_cigarette NOM m p 0.27 2.09 0.10 0.27 +fur et à mesure fur_et_à_mesure NOM m s 1.62 17.84 1.62 17.84 +fusil-mitrailleur fusil_mitrailleur NOM m s 0.37 0.41 0.37 0.34 +fusiliers-marins fusilier_marin NOM m p 0.04 1.08 0.04 1.08 +fusils-mitrailleurs fusil_mitrailleur NOM m p 0.37 0.41 0.00 0.07 +fête-dieu fête_dieu NOM f s 0.14 0.54 0.14 0.54 +gagne-pain gagne_pain NOM m 2.01 1.82 2.01 1.82 +gagne-petit gagne_petit NOM m 0.16 0.68 0.16 0.68 +gaine-culotte gaine_culotte NOM f s 0.01 0.07 0.01 0.07 +galerie-refuge galerie_refuge NOM f s 0.00 0.07 0.00 0.07 +galeries-refuges galeries_refuge NOM f p 0.00 0.07 0.00 0.07 +gallo-romain gallo_romain ADJ m s 0.00 0.14 0.00 0.07 +gallo-romains gallo_romain ADJ m p 0.00 0.14 0.00 0.07 +garde-barrière garde_barrière NOM m s 0.00 0.95 0.00 0.95 +garde-boue garde_boue NOM m 0.05 1.08 0.05 1.08 +garde-côte garde_côte NOM m s 1.90 0.14 0.54 0.07 +garde-côtes garde_côte NOM m p 1.90 0.14 1.36 0.07 +garde-champêtre garde_champêtre NOM m s 0.00 0.54 0.00 0.47 +garde-chasse garde_chasse NOM m s 0.22 1.42 0.22 1.42 +garde-chiourme garde_chiourme NOM m s 0.11 0.74 0.06 0.54 +garde-corps garde_corps NOM m 0.01 0.34 0.01 0.34 +garde-feu garde_feu NOM m 0.05 0.00 0.05 0.00 +garde-forestier garde_forestier NOM s 0.16 0.14 0.16 0.14 +garde-fou garde_fou NOM m s 0.30 1.89 0.25 1.49 +garde-fous garde_fou NOM m p 0.30 1.89 0.05 0.41 +garde-frontière garde_frontière NOM m s 0.16 0.00 0.16 0.00 +garde-malade garde_malade NOM s 0.44 1.15 0.44 1.15 +garde-manger garde_manger NOM m 0.68 2.77 0.68 2.77 +garde-meuble garde_meuble NOM m 0.34 0.20 0.34 0.20 +garde-meubles garde_meubles NOM m 0.16 0.34 0.16 0.34 +garde-à-vous garde_à_vous NOM m 0.00 5.88 0.00 5.88 +garde-pêche garde_pêche NOM m s 0.01 0.07 0.01 0.07 +garde-robe garde_robe NOM f s 2.19 2.77 2.17 2.70 +garde-robes garde_robe NOM f p 2.19 2.77 0.03 0.07 +garde-voie garde_voie NOM m s 0.00 0.07 0.00 0.07 +garde-vue garde_vue NOM m 0.25 0.00 0.25 0.00 +garden-party garden_party NOM f s 0.22 0.34 0.22 0.34 +gardes-barrières gardes_barrière NOM p 0.00 0.14 0.00 0.14 +gardes-côtes gardes_côte NOM m p 0.31 0.00 0.31 0.00 +gardes-champêtres garde_champêtre NOM m p 0.00 0.54 0.00 0.07 +gardes-chasse gardes_chasse NOM m s 0.03 0.41 0.03 0.41 +gardes-chiourme garde_chiourme NOM m p 0.11 0.74 0.04 0.20 +gardes-chiourmes gardes_chiourme NOM p 0.03 0.14 0.03 0.14 +gardes-françaises garde_française NOM m p 0.00 0.07 0.00 0.07 +gardes-frontières gardes_frontière NOM m p 0.03 0.41 0.03 0.41 +gardes-voies gardes_voie NOM m p 0.00 0.07 0.00 0.07 +gardien-chef gardien_chef NOM m s 0.22 0.27 0.22 0.27 +gas-oil gas_oil NOM m s 0.02 0.27 0.02 0.27 +gastro-entérite gastro_entérite NOM f s 0.04 0.07 0.04 0.07 +gastro-entérologue gastro_entérologue NOM s 0.04 0.14 0.04 0.07 +gastro-entérologues gastro_entérologue NOM p 0.04 0.14 0.00 0.07 +gastro-intestinal gastro_intestinal ADJ m s 0.12 0.00 0.04 0.00 +gastro-intestinale gastro_intestinal ADJ f s 0.12 0.00 0.02 0.00 +gastro-intestinaux gastro_intestinal ADJ m p 0.12 0.00 0.05 0.00 +gengis khan gengis_khan NOM m s 0.00 0.14 0.00 0.14 +gentleman-farmer gentleman_farmer NOM m s 0.14 0.27 0.14 0.20 +gentlemen-farmers gentleman_farmer NOM m p 0.14 0.27 0.00 0.07 +germano-anglaises germano_anglais ADJ f p 0.00 0.07 0.00 0.07 +germano-belge germano_belge ADJ f s 0.01 0.00 0.01 0.00 +germano-irlandais germano_irlandais ADJ m 0.03 0.00 0.03 0.00 +germano-russe germano_russe ADJ m s 0.00 0.27 0.00 0.27 +germano-soviétique germano_soviétique ADJ s 0.00 1.82 0.00 1.82 +gin-fizz gin_fizz NOM m 0.04 1.01 0.04 1.01 +gin-rami gin_rami NOM m s 0.04 0.07 0.04 0.07 +gin-rummy gin_rummy NOM m s 0.05 0.14 0.05 0.14 +girl-scout girl_scout NOM f s 0.06 0.14 0.06 0.14 +girl friend girl_friend NOM f s 0.14 0.00 0.14 0.00 +gla-gla gla_gla ADJ m s 0.00 0.14 0.00 0.14 +glisse-la-moi glisse_la_moi NOM f s 0.10 0.00 0.10 0.00 +globe-trotter globe_trotter NOM m s 0.22 0.41 0.20 0.27 +globe-trotters globe_trotter NOM m p 0.22 0.41 0.02 0.14 +gna gna gna_gna ONO 0.14 0.14 0.14 0.14 +gnian-gnian gnian_gnian NOM m s 0.01 0.00 0.01 0.00 +gobe-mouches gobe_mouches NOM m 0.02 0.14 0.02 0.14 +golf-club golf_club NOM m s 0.01 0.07 0.01 0.07 +gorge-de-pigeon gorge_de_pigeon ADJ m s 0.01 0.14 0.01 0.14 +gâte-bois gâte_bois NOM m 0.00 0.07 0.00 0.07 +gâte-sauce gâte_sauce NOM m s 0.00 0.14 0.00 0.14 +gouzi-gouzi gouzi_gouzi NOM m 0.06 0.07 0.06 0.07 +grand-angle grand_angle NOM m s 0.06 0.00 0.06 0.00 +grand-chose grand_chose PRO:ind m s 28.01 36.08 28.01 36.08 +grand-duc grand_duc NOM m s 2.03 1.76 1.90 0.88 +grand-ducale grand_ducal ADJ f s 0.00 0.07 0.00 0.07 +grand-duché grand_duché NOM m s 0.01 0.07 0.01 0.07 +grand-faim grand_faim ADV 0.00 0.20 0.00 0.20 +grand-guignol grand_guignol NOM m s 0.01 0.00 0.01 0.00 +grand-guignolesque grand_guignolesque ADJ s 0.01 0.00 0.01 0.00 +grand-hôtel grand_hôtel NOM m s 0.00 0.07 0.00 0.07 +grand-hâte grand_hâte ADV 0.00 0.07 0.00 0.07 +grand-maître grand_maître NOM m s 0.10 0.07 0.10 0.07 +grand-maman grand_papa NOM f s 2.35 0.95 0.84 0.27 +grand-messe grand_messe NOM f s 0.29 1.28 0.29 1.28 +grand-mère grand_mère NOM f s 73.22 94.59 72.39 91.76 +grand-mères grand_mère NOM f p 73.22 94.59 0.53 2.16 +grand-neige grand_neige NOM m s 0.00 0.07 0.00 0.07 +grand-officier grand_officier NOM m s 0.00 0.07 0.00 0.07 +grand-oncle grand_oncle NOM m s 0.45 4.26 0.45 3.65 +grand-papa grand_papa NOM m s 2.35 0.95 1.50 0.68 +grand-peine grand_peine ADV 0.25 4.86 0.25 4.86 +grand-peur grand_peur ADV 0.00 0.20 0.00 0.20 +grand-place grand_place NOM f s 0.12 1.35 0.12 1.35 +grand-prêtre grand_prêtre NOM m s 0.11 0.20 0.11 0.20 +grand-père grand_père NOM m s 75.64 96.49 75.19 95.20 +grand-quartier grand_quartier NOM m s 0.00 0.34 0.00 0.34 +grand-route grand_route NOM f s 0.27 3.65 0.27 3.58 +grand-routes grand_route NOM f p 0.27 3.65 0.00 0.07 +grand-rue grand_rue NOM f s 0.64 2.36 0.64 2.36 +grand-salle grand_salle NOM f s 0.00 0.20 0.00 0.20 +grand-tante grand_tante NOM f s 1.17 1.76 1.17 1.22 +grand-tantes grand_tante NOM f p 1.17 1.76 0.00 0.47 +grand-vergue grand_vergue NOM f s 0.05 0.00 0.05 0.00 +grand-voile grand_voile NOM f s 0.23 0.27 0.23 0.27 +grande-duchesse grand_duc NOM f s 2.03 1.76 0.09 0.34 +grandes-duchesses grande_duchesse NOM f p 0.01 0.14 0.01 0.14 +grands-croix grand_croix NOM m p 0.00 0.07 0.00 0.07 +grands-ducs grand_duc NOM m p 2.03 1.76 0.05 0.54 +grands-mères grand_mère NOM f p 73.22 94.59 0.30 0.68 +grands-oncles grand_oncle NOM m p 0.45 4.26 0.00 0.61 +grands-parents grands_parents NOM m p 4.59 9.19 4.59 9.19 +grands-pères grand_père NOM m p 75.64 96.49 0.45 1.28 +grands-tantes grand_tante NOM f p 1.17 1.76 0.00 0.07 +grape-fruit grape_fruit NOM m s 0.00 0.27 0.00 0.27 +gras-double gras_double NOM m s 0.22 1.08 0.22 1.01 +gras-doubles gras_double NOM m p 0.22 1.08 0.00 0.07 +gratis pro deo gratis_pro_deo ADV 0.00 0.14 0.00 0.14 +gratte-ciel gratte_ciel NOM m 1.40 3.04 1.14 3.04 +gratte-ciels gratte_ciel NOM m p 1.40 3.04 0.26 0.00 +gratte-cul gratte_cul NOM m 0.00 0.14 0.00 0.14 +gratte-dos gratte_dos NOM m 0.11 0.00 0.11 0.00 +gratte-papier gratte_papier NOM m 0.67 0.54 0.45 0.54 +gratte-papiers gratte_papier NOM m p 0.67 0.54 0.22 0.00 +gratte-pieds gratte_pieds NOM m 0.00 0.20 0.00 0.20 +grenouille-taureau grenouille_taureau NOM f s 0.01 0.00 0.01 0.00 +gri-gri gri_gri NOM m s 0.21 0.14 0.21 0.14 +grill-room grill_room NOM m s 0.00 0.27 0.00 0.27 +grille-pain grille_pain NOM m 2.90 0.27 2.90 0.27 +grimace-éclair grimace_éclair NOM f s 0.01 0.00 0.01 0.00 +grippe-sou grippe_sou NOM m s 0.25 0.14 0.13 0.07 +grippe-sous grippe_sou NOM m p 0.25 0.14 0.12 0.07 +gris-blanc gris_blanc ADJ m s 0.00 0.20 0.00 0.20 +gris-bleu gris_bleu ADJ m s 0.30 1.69 0.30 1.69 +gris-gris gris_gris NOM m 0.22 0.74 0.22 0.74 +gris-jaune gris_jaune ADJ m s 0.00 0.20 0.00 0.20 +gris-perle gris_perle ADJ m s 0.01 0.14 0.01 0.14 +gris-rose gris_rose ADJ 0.00 0.41 0.00 0.41 +gris-vert gris_vert ADJ m s 0.01 1.55 0.01 1.55 +gros-bec gros_bec NOM m s 0.06 0.07 0.06 0.00 +gros-becs gros_bec NOM m p 0.06 0.07 0.00 0.07 +gros-cul gros_cul NOM m s 0.04 0.14 0.04 0.14 +gros-grain gros_grain NOM m s 0.00 0.41 0.00 0.41 +gros-porteur gros_porteur NOM m s 0.02 0.00 0.02 0.00 +grosso modo grosso_modo ADV 0.44 1.89 0.44 1.89 +gréco-latine gréco_latin ADJ f s 0.00 0.34 0.00 0.27 +gréco-latines gréco_latin ADJ f p 0.00 0.34 0.00 0.07 +gréco-romain gréco_romain ADJ m s 0.46 0.68 0.03 0.14 +gréco-romaine gréco_romain ADJ f s 0.46 0.68 0.42 0.34 +gréco-romaines gréco_romain ADJ f p 0.46 0.68 0.01 0.14 +gréco-romains gréco_romain ADJ m p 0.46 0.68 0.00 0.07 +guerre-éclair guerre_éclair NOM f s 0.01 0.14 0.01 0.14 +guet-apens guet_apens NOM m 0.68 0.74 0.68 0.74 +guets-apens guets_apens NOM m p 0.00 0.07 0.00 0.07 +gueule-de-loup gueule_de_loup NOM f s 0.03 0.07 0.03 0.07 +gueules-de-loup gueules_de_loup NOM f p 0.00 0.14 0.00 0.14 +guide-interprète guide_interprète NOM s 0.00 0.07 0.00 0.07 +guili-guili guili_guili NOM m 0.16 0.14 0.16 0.14 +gélatino-bromure gélatino_bromure NOM m s 0.00 0.07 0.00 0.07 +gutta-percha gutta_percha NOM f s 0.03 0.00 0.03 0.00 +hôtel-dieu hôtel_dieu NOM m s 0.01 0.81 0.01 0.81 +hôtel-restaurant hôtel_restaurant NOM m s 0.00 0.14 0.00 0.14 +hache-paille hache_paille NOM m p 0.00 0.14 0.00 0.14 +half-track half_track NOM m s 0.05 0.14 0.04 0.14 +half-tracks half_track NOM m p 0.05 0.14 0.01 0.00 +halte-garderie halte_garderie NOM f s 0.02 0.00 0.02 0.00 +hand-ball hand_ball NOM m s 0.08 0.00 0.08 0.00 +happy end happy_end NOM m s 0.51 0.27 0.45 0.27 +happy ends happy_end NOM m p 0.51 0.27 0.05 0.00 +happy few happy_few NOM m p 0.00 0.14 0.00 0.14 +hara-kiri hara_kiri NOM m s 0.29 0.41 0.29 0.41 +hard-top hard_top NOM m s 0.01 0.00 0.01 0.00 +hard edge hard_edge NOM m s 0.01 0.00 0.01 0.00 +has been has_been NOM m 0.18 0.20 0.18 0.20 +haut-commandement haut_commandement NOM m s 0.00 1.22 0.00 1.22 +haut-commissaire haut_commissaire NOM m s 0.03 7.97 0.03 7.57 +haut-commissariat haut_commissariat NOM m s 0.02 0.81 0.02 0.81 +haut-de-chausse haut_de_chausse NOM f s 0.15 0.07 0.14 0.07 +haut-de-chausses haut_de_chausses NOM m 0.00 0.20 0.00 0.20 +haut-de-forme haut_de_forme NOM m s 0.45 1.62 0.30 1.42 +haut-fond haut_fond NOM m s 0.08 1.08 0.02 0.61 +haut-le-coeur haut_le_coeur NOM m 0.04 1.01 0.04 1.01 +haut-le-corps haut_le_corps NOM m 0.00 1.76 0.00 1.76 +haut-parleur haut_parleur NOM m s 3.65 7.36 2.61 3.99 +haut-parleurs haut_parleur NOM m p 3.65 7.36 1.04 3.38 +haut-relief haut_relief NOM m s 0.00 0.20 0.00 0.20 +haute-fidélité haute_fidélité NOM f s 0.03 0.07 0.03 0.07 +hauts-commissaires haut_commissaire NOM m p 0.03 7.97 0.00 0.41 +hauts-de-chausses haut_de_chausse NOM m p 0.15 0.07 0.01 0.00 +hauts-de-forme haut_de_forme NOM m p 0.45 1.62 0.14 0.20 +hauts-fonds haut_fond NOM m p 0.08 1.08 0.06 0.47 +hauts-fourneaux haut_fourneau NOM m p 0.01 0.27 0.01 0.27 +hi-fi hi_fi NOM f s 0.87 0.81 0.87 0.81 +hi-han hi_han ONO 0.20 0.14 0.20 0.14 +hic et nunc hic_et_nunc ADV 0.00 0.41 0.00 0.41 +high-life high_life NOM m s 0.27 0.14 0.27 0.14 +high-tech high_tech ADJ 0.32 0.14 0.29 0.07 +high life high_life NOM m s 0.04 0.41 0.04 0.41 +high tech high_tech ADJ s 0.32 0.14 0.04 0.07 +hip-hop hip_hop NOM m s 1.74 0.00 1.74 0.00 +hispano-américain hispano_américain NOM m s 0.01 0.00 0.01 0.00 +hispano-américaine hispano_américain ADJ f s 0.03 0.27 0.03 0.20 +hispano-cubain hispano_cubain ADJ m s 0.00 0.07 0.00 0.07 +hispano-mauresque hispano_mauresque ADJ m s 0.00 0.07 0.00 0.07 +historico-culturelle historico_culturel ADJ f s 0.00 0.07 0.00 0.07 +hit-parade hit_parade NOM m s 0.73 0.68 0.69 0.68 +hit-parades hit_parade NOM m p 0.73 0.68 0.04 0.00 +hold-up hold_up NOM m 7.78 3.38 7.59 3.38 +hold up hold_up NOM m 7.78 3.38 0.20 0.00 +home-trainer home_trainer NOM m s 0.01 0.00 0.01 0.00 +homme-chien homme_chien NOM m s 0.09 0.14 0.09 0.14 +homme-clé homme_clé NOM m s 0.04 0.00 0.04 0.00 +homme-femme homme_femme NOM m s 0.36 0.07 0.36 0.07 +homme-grenouille homme_grenouille NOM m s 0.35 0.20 0.20 0.07 +homme-loup homme_loup NOM m s 0.05 0.00 0.05 0.00 +homme-machine homme_machine NOM m s 0.04 0.00 0.04 0.00 +homme-oiseau homme_oiseau NOM m s 0.05 0.00 0.05 0.00 +homme-orchestre homme_orchestre NOM m s 0.03 0.07 0.03 0.07 +homme-poisson homme_poisson NOM m s 0.06 0.00 0.06 0.00 +homme-robot homme_robot NOM m s 0.07 0.00 0.07 0.00 +homme-sandwich homme_sandwich NOM m s 0.00 0.41 0.00 0.41 +homme-serpent homme_serpent NOM m s 0.02 0.27 0.02 0.27 +hommes-grenouilles homme_grenouille NOM m p 0.35 0.20 0.16 0.14 +homo erectus homo_erectus NOM m 0.04 0.00 0.04 0.00 +homo habilis homo_habilis NOM m 0.00 0.07 0.00 0.07 +hong kong hong_kong NOM s 0.03 0.00 0.03 0.00 +honoris causa honoris_causa ADV 0.16 0.27 0.16 0.27 +hors-bord hors_bord NOM m p 0.45 0.61 0.45 0.61 +hors-cote hors_cote ADJ 0.01 0.00 0.01 0.00 +hors-d'oeuvre hors_d_oeuvre NOM m 0.56 1.96 0.56 1.96 +hors-jeu hors_jeu ADJ 1.13 0.20 1.13 0.20 +hors-la-loi hors_la_loi NOM m p 3.21 1.49 3.21 1.49 +hors-piste hors_piste NOM m p 0.45 0.00 0.45 0.00 +hors-série hors_série ADJ f s 0.01 0.20 0.01 0.20 +horse-guard horse_guard NOM m s 0.02 0.14 0.00 0.07 +horse-guards horse_guard NOM m p 0.02 0.14 0.02 0.07 +hot-dog hot_dog NOM m s 6.09 0.27 3.12 0.07 +hot-dogs hot_dog NOM m p 6.09 0.27 2.98 0.20 +hot dog hot_dog NOM m s 2.69 0.14 1.31 0.14 +hot dogs hot_dog NOM m p 2.69 0.14 1.38 0.00 +house-boat house_boat NOM m s 0.04 0.07 0.02 0.00 +house-boats house_boat NOM m p 0.04 0.07 0.01 0.07 +house music house_music NOM f s 0.01 0.00 0.01 0.00 +huit-reflets huit_reflets NOM m 0.00 0.27 0.00 0.27 +humain-robot humain_robot ADJ m s 0.03 0.00 0.03 0.00 +hydro-électrique hydro_électrique ADJ s 0.00 0.07 0.00 0.07 +ice-cream ice_cream NOM m s 0.02 0.34 0.00 0.27 +ice-creams ice_cream NOM m p 0.02 0.34 0.00 0.07 +ice cream ice_cream NOM m s 0.02 0.34 0.02 0.00 +ici-bas ici_bas ADV 3.58 2.97 3.58 2.97 +idée-clé idée_clé NOM f s 0.01 0.00 0.01 0.00 +idée-force idée_force NOM f s 0.01 0.20 0.01 0.07 +idées-forces idée_force NOM f p 0.01 0.20 0.00 0.14 +import-export import_export NOM m s 0.47 0.41 0.47 0.41 +in-bord in_bord ADJ m s 0.01 0.00 0.01 0.00 +in-bord in_bord NOM m s 0.01 0.00 0.01 0.00 +in-folio in_folio NOM m 0.00 0.61 0.00 0.61 +in-folios in_folios NOM m 0.00 0.20 0.00 0.20 +in-octavo in_octavo NOM m 0.01 0.34 0.01 0.34 +in-octavos in_octavos NOM m 0.00 0.07 0.00 0.07 +in-quarto in_quarto ADJ 0.00 0.07 0.00 0.07 +in-quarto in_quarto NOM m 0.00 0.07 0.00 0.07 +in-seize in_seize NOM m 0.00 0.07 0.00 0.07 +in absentia in_absentia ADV 0.02 0.00 0.02 0.00 +in abstracto in_abstracto ADV 0.00 0.20 0.00 0.20 +in anima vili in_anima_vili ADV 0.00 0.07 0.00 0.07 +in cauda venenum in_cauda_venenum ADV 0.00 0.14 0.00 0.14 +in extenso in_extenso ADV 0.00 0.54 0.00 0.54 +in extremis in_extremis ADV 0.07 2.64 0.07 2.64 +in memoriam in_memoriam ADV 0.15 0.00 0.15 0.00 +in pace in_pace NOM m 0.16 0.07 0.16 0.07 +in petto in_petto ADV 0.00 1.22 0.00 1.22 +in utero in_utero ADJ f p 0.05 0.00 0.05 0.00 +in utero in_utero ADV 0.05 0.00 0.05 0.00 +in vino veritas in_vino_veritas ADV 0.05 0.00 0.05 0.00 +in vitro in_vitro ADJ 0.22 0.34 0.22 0.34 +in vivo in_vivo ADV 0.00 0.07 0.00 0.07 +inch allah inch_allah ONO 0.27 0.47 0.27 0.47 +indemnités-repas indemnités_repas NOM f p 0.01 0.00 0.01 0.00 +indo-européen indo_européen ADJ m s 0.11 0.27 0.10 0.00 +indo-européenne indo_européen ADJ f s 0.11 0.27 0.01 0.07 +indo-européennes indo_européen ADJ f p 0.11 0.27 0.00 0.14 +indo-européens indo_européen ADJ m p 0.11 0.27 0.00 0.07 +industrie-clé industrie_clé NOM f s 0.01 0.00 0.01 0.00 +infirmière-major infirmière_major NOM f s 0.14 0.14 0.14 0.14 +ingénieur-chimiste ingénieur_chimiste NOM m s 0.00 0.07 0.00 0.07 +ingénieur-conseil ingénieur_conseil NOM m s 0.00 0.14 0.00 0.14 +intellectuel-phare intellectuel_phare NOM m s 0.00 0.07 0.00 0.07 +inter-écoles inter_école NOM f p 0.03 0.00 0.03 0.00 +intra-atomique intra_atomique ADJ s 0.00 0.07 0.00 0.07 +intra-muros intra_muros ADV 0.01 0.07 0.01 0.07 +intra-rachidienne rachidien ADJ f s 0.23 0.14 0.01 0.00 +intra-utérine intra_utérin ADJ f s 0.14 0.07 0.04 0.00 +intra-utérines intra_utérin ADJ f p 0.14 0.07 0.10 0.07 +intra muros intra_muros ADV 0.01 0.07 0.01 0.07 +invisible piston invisible_piston NOM m s 0.00 0.07 0.00 0.07 +ipso facto ipso_facto ADV 0.21 0.61 0.21 0.61 +irish coffee irish_coffee NOM m s 0.16 0.14 0.16 0.14 +israélo-arabe israélo_arabe ADJ f s 0.01 0.00 0.01 0.00 +israélo-syrienne israélo_syrien ADJ f s 0.14 0.00 0.14 0.00 +italo-allemande italo_allemand ADJ f s 0.00 0.20 0.00 0.07 +italo-allemandes italo_allemand ADJ f p 0.00 0.20 0.00 0.14 +italo-américain italo_américain ADJ m s 0.20 0.00 0.15 0.00 +italo-américaine italo_américain ADJ f s 0.20 0.00 0.04 0.00 +italo-brésilien italo_brésilien ADJ m s 0.00 0.07 0.00 0.07 +italo-français italo_français ADJ m 0.00 0.14 0.00 0.07 +italo-françaises italo_français ADJ f p 0.00 0.14 0.00 0.07 +italo-irlandais italo_irlandais ADJ m 0.01 0.00 0.01 0.00 +italo-polonais italo_polonais ADJ m 0.00 0.07 0.00 0.07 +italo-égyptien italo_égyptien ADJ m s 0.00 0.07 0.00 0.07 +ite missa est ite_missa_est NOM m 0.00 0.14 0.00 0.14 +jam-session jam_session NOM f s 0.16 0.00 0.14 0.00 +jam-sessions jam_session NOM f p 0.16 0.00 0.01 0.00 +jamais-vu jamais_vu NOM m 0.00 0.07 0.00 0.07 +jaune-vert jaune_vert ADJ s 0.01 0.20 0.01 0.20 +jazz-band jazz_band NOM m s 0.02 0.20 0.02 0.20 +jazz-rock jazz_rock NOM m 0.14 0.07 0.14 0.07 +je-m'en-fichiste je_m_en_fichiste ADJ f s 0.01 0.00 0.01 0.00 +je-m'en-foutisme je_m_en_foutisme NOM m s 0.01 0.14 0.01 0.14 +je-m'en-foutiste je_m_en_foutiste ADJ s 0.01 0.00 0.01 0.00 +je-m'en-foutistes je_m_en_foutiste NOM p 0.03 0.07 0.03 0.07 +je-ne-sais-quoi je_ne_sais_quoi NOM m 0.34 0.47 0.34 0.47 +jean-foutre jean_foutre NOM m 0.41 1.28 0.41 1.28 +jean-le-blanc jean_le_blanc NOM m 0.00 0.07 0.00 0.07 +jet-set jet_set NOM m s 0.42 0.07 0.42 0.07 +jet-stream jet_stream NOM m s 0.01 0.00 0.01 0.00 +jet society jet_society NOM f s 0.00 0.07 0.00 0.07 +jeu-concours jeu_concours NOM m 0.10 0.14 0.10 0.14 +jeune-homme jeune_homme ADJ s 0.10 0.00 0.10 0.00 +jiu-jitsu jiu_jitsu NOM m 0.35 0.14 0.35 0.14 +joint-venture joint_venture NOM f s 0.16 0.00 0.16 0.00 +joli-coeur joli_coeur ADJ m s 0.01 0.00 0.01 0.00 +joli-joli joli_joli ADJ m s 0.26 0.41 0.26 0.41 +judéo-christianisme judéo_christianisme NOM m s 0.01 0.00 0.01 0.00 +judéo-chrétienne judéo_chrétien ADJ f s 0.06 0.20 0.04 0.07 +judéo-chrétiennes judéo_chrétien ADJ f p 0.06 0.20 0.01 0.07 +judéo-chrétiens judéo_chrétien ADJ m p 0.06 0.20 0.00 0.07 +juke-box juke_box NOM m 1.61 1.89 1.58 1.69 +juke-boxes juke_box NOM m p 1.61 1.89 0.03 0.20 +jupe-culotte jupe_culotte NOM f s 0.02 0.34 0.02 0.27 +jupes-culottes jupe_culotte NOM m p 0.02 0.34 0.00 0.07 +jusqu'au jusqu_au PRE 0.34 0.07 0.34 0.07 +jusqu'à jusqu_à PRE 0.81 0.27 0.81 0.27 +jusque-là jusque_là ADV 7.81 29.53 7.81 29.53 +juste-milieu juste_milieu NOM m 0.00 0.07 0.00 0.07 +k-o k_o ADJ 0.02 0.07 0.02 0.07 +k-way k_way NOM m s 0.06 0.20 0.06 0.20 +kala-azar kala_azar NOM m s 0.00 0.07 0.00 0.07 +kif-kif kif_kif ADJ s 0.20 0.81 0.20 0.81 +kilomètres-heure kilomètre_heure NOM m p 0.14 0.41 0.14 0.41 +king-charles king_charles NOM m 0.00 0.07 0.00 0.07 +knock-out knock_out ADJ m s 0.19 0.20 0.19 0.20 +kung-fu kung_fu NOM m s 1.12 0.00 1.01 0.00 +kung fu kung_fu NOM m s 1.12 0.00 0.10 0.00 +kyrie eleison kyrie_eleison NOM m 0.41 0.07 0.41 0.07 +l' l_ ART:def m s 8129.41 12746.76 8129.41 12746.76 +l'un l_un PRO:ind 127.72 208.92 127.72 208.92 +l'une l_une PRO:ind f 36.12 93.58 36.12 93.58 +l-dopa l_dopa NOM f s 0.05 0.00 0.05 0.00 +la-la-la la_la_la ART:def f s 0.14 0.07 0.14 0.07 +la plata la_plata NOM s 0.01 0.14 0.01 0.14 +la plupart de la_plupart_de ADJ:ind 3.94 7.30 3.94 7.30 +la plupart des la_plupart_des ADJ:ind 23.41 29.26 23.41 29.26 +la plupart du la_plupart_du ADJ:ind 5.07 7.91 5.07 7.91 +la plupart la_plupart PRO:ind p 14.72 23.24 14.72 23.24 +lacrima-christi lacrima_christi NOM m 0.00 0.07 0.00 0.07 +lacryma-christi lacryma_christi NOM m s 0.00 0.34 0.00 0.20 +lacryma christi lacryma_christi NOM m s 0.00 0.34 0.00 0.14 +laisse-la-moi laisse_la_moi NOM f s 0.14 0.00 0.14 0.00 +laisser-aller laisser_aller NOM m 0.75 3.38 0.75 3.38 +laisser-faire laisser_faire NOM m 0.01 0.07 0.01 0.07 +laissez-faire laissez_faire NOM m 0.01 0.00 0.01 0.00 +laissez-passer laissez_passer NOM m 4.00 1.96 4.00 1.96 +laissé-pour-compte laissé_pour_compte NOM m s 0.00 0.07 0.00 0.07 +laissés-pour-compte laissés_pour_compte NOM m p 0.23 0.07 0.23 0.07 +lampe-phare lampe_phare NOM f s 0.00 0.07 0.00 0.07 +lampe-tempête lampe_tempête NOM f s 0.00 0.95 0.00 0.68 +lampes-tempête lampe_tempête NOM f p 0.00 0.95 0.00 0.27 +lance-engins lance_engins NOM m 0.02 0.00 0.02 0.00 +lance-flamme lance_flamme NOM m s 0.06 0.00 0.06 0.00 +lance-flammes lance_flammes NOM m 1.06 0.61 1.06 0.61 +lance-fusée lance_fusée NOM m s 0.01 0.00 0.01 0.00 +lance-fusées lance_fusées NOM m 0.12 0.61 0.12 0.61 +lance-grenade lance_grenade NOM m s 0.02 0.00 0.02 0.00 +lance-grenades lance_grenades NOM m 0.34 0.00 0.34 0.00 +lance-missiles lance_missiles NOM m 0.26 0.07 0.26 0.07 +lance-pierre lance_pierre NOM m s 0.25 0.07 0.25 0.07 +lance-pierres lance_pierres NOM m 0.39 1.42 0.39 1.42 +lance-roquette lance_roquette NOM m s 0.06 0.00 0.06 0.00 +lance-roquettes lance_roquettes NOM m 0.72 0.14 0.72 0.14 +lance-torpille lance_torpille NOM m s 0.00 0.07 0.00 0.07 +lance-torpilles lance_torpilles NOM m 0.03 0.41 0.03 0.41 +lanterne-tempête lanterne_tempête NOM f s 0.00 0.07 0.00 0.07 +lapis-lazuli lapis_lazuli NOM m 0.01 0.41 0.01 0.41 +latino-américain latino_américain NOM m s 0.10 0.07 0.03 0.07 +latino-américaine latino_américain NOM f s 0.10 0.07 0.03 0.00 +latino-américains latino_américain NOM m p 0.10 0.07 0.04 0.00 +laurier-cerise laurier_cerise NOM m s 0.00 0.20 0.00 0.07 +laurier-rose laurier_rose NOM m s 0.14 1.69 0.04 0.20 +lauriers-cerises laurier_cerise NOM m p 0.00 0.20 0.00 0.14 +lauriers-roses laurier_rose NOM m p 0.14 1.69 0.10 1.49 +lave-auto lave_auto NOM m s 0.06 0.00 0.06 0.00 +lave-glace lave_glace NOM m s 0.03 0.20 0.03 0.20 +lave-linge lave_linge NOM m 0.83 0.00 0.83 0.00 +lave-mains lave_mains NOM m 0.00 0.07 0.00 0.07 +lave-pont lave_pont NOM m s 0.00 0.14 0.00 0.07 +lave-ponts lave_pont NOM m p 0.00 0.14 0.00 0.07 +lave-vaisselle lave_vaisselle NOM m 0.88 0.20 0.88 0.20 +lettre-clé lettre_clé NOM f s 0.14 0.00 0.14 0.00 +librairie-papeterie librairie_papeterie NOM f s 0.00 0.20 0.00 0.20 +libre-arbitre libre_arbitre NOM m s 0.12 0.14 0.12 0.14 +libre-penseur libre_penseur NOM m s 0.04 0.14 0.04 0.14 +libre-penseuse libre_penseur NOM f s 0.04 0.14 0.01 0.00 +libre-service libre_service NOM m s 0.04 0.34 0.04 0.34 +libre-échange libre_échange NOM m 0.32 0.14 0.32 0.14 +libre-échangiste libre_échangiste NOM s 0.03 0.00 0.03 0.00 +lie-de-vin lie_de_vin ADJ 0.00 1.08 0.00 1.08 +lieu-dit lieu_dit NOM m s 0.00 0.88 0.00 0.88 +lieutenant-colonel lieutenant_colonel NOM m s 1.74 1.42 1.73 1.42 +lieutenant-pilote lieutenant_pilote NOM m s 0.00 0.07 0.00 0.07 +lieutenants-colonels lieutenant_colonel NOM m p 1.74 1.42 0.01 0.00 +lieux-dits lieux_dits NOM m p 0.00 0.41 0.00 0.41 +lit-bateau lit_bateau NOM m s 0.00 0.81 0.00 0.81 +lit-cage lit_cage NOM m s 0.01 1.62 0.01 1.15 +lit-divan lit_divan NOM m s 0.00 0.20 0.00 0.20 +lits-cages lit_cage NOM m p 0.01 1.62 0.00 0.47 +living-room living_room NOM m s 0.23 2.23 0.23 2.23 +livre-cassette livre_cassette NOM m s 0.03 0.00 0.03 0.00 +livres-club livres_club NOM m p 0.00 0.07 0.00 0.07 +là-bas là_bas ADV 263.15 117.70 263.15 117.70 +là-dedans là_dedans ADV 74.00 23.58 74.00 23.58 +là-dehors là_dehors ADV 1.30 0.00 1.30 0.00 +là-derrière là_derrière ADV 1.14 0.14 1.14 0.14 +là-dessous là_dessous ADV 7.12 4.32 7.12 4.32 +là-dessus là_dessus ADV 30.89 32.50 30.89 32.50 +là-devant là_devant ADV 0.00 0.14 0.00 0.14 +là-haut là_haut ADV 67.78 42.70 67.78 42.70 +lock-out lock_out NOM m 0.11 0.00 0.11 0.00 +lock-outés lock_outer VER m p 0.00 0.07 0.00 0.07 par:pas; +long-courrier long_courrier NOM m s 0.26 0.61 0.25 0.47 +long-courriers long_courrier NOM m p 0.26 0.61 0.01 0.14 +long-métrage long_métrage NOM m s 0.06 0.00 0.06 0.00 +longue-vue longue_vue NOM f s 0.30 2.64 0.29 2.50 +longues-vues longue_vue NOM f p 0.30 2.64 0.01 0.14 +lord-maire lord_maire NOM m s 0.02 0.07 0.02 0.07 +louis-philippard louis_philippard ADJ m s 0.00 0.34 0.00 0.07 +louis-philipparde louis_philippard ADJ f s 0.00 0.34 0.00 0.14 +louis-philippards louis_philippard ADJ m p 0.00 0.34 0.00 0.14 +louise-bonne louise_bonne NOM f s 0.00 0.07 0.00 0.07 +loup-cervier loup_cervier NOM m s 0.00 0.14 0.00 0.07 +loup-garou loup_garou NOM m s 3.98 1.22 3.35 0.88 +loups-cerviers loup_cervier NOM m p 0.00 0.14 0.00 0.07 +loups-garous loup_garou NOM m p 3.98 1.22 0.63 0.34 +lèche-botte lèche_botte NOM m s 0.11 0.00 0.11 0.00 +lèche-bottes lèche_bottes NOM m 0.68 0.34 0.68 0.34 +lèche-cul lèche_cul NOM m s 1.29 0.61 1.29 0.61 +lèche-vitrine lèche_vitrine NOM m s 0.26 0.07 0.26 0.07 +lèche-vitrines lèche_vitrines NOM m 0.07 0.20 0.07 0.20 +lèse-majesté lèse_majesté NOM f 0.03 0.27 0.03 0.27 +lui-même lui_même PRO:per m s 46.58 202.30 46.58 202.30 +m'as-tu-vu m_as_tu_vu ADJ s 0.03 0.00 0.03 0.00 +ma-jong ma_jong NOM m s 0.02 0.07 0.02 0.07 +maître-assistant maître_assistant NOM m s 0.00 0.07 0.00 0.07 +maître-autel maître_autel NOM m s 0.00 0.61 0.00 0.61 +maître-chanteur maître_chanteur NOM m s 0.21 0.20 0.21 0.20 +maître-chien maître_chien NOM m s 0.11 0.00 0.11 0.00 +maître-coq maître_coq NOM m s 0.01 0.00 0.01 0.00 +maître-nageur maître_nageur NOM m s 0.45 0.27 0.45 0.27 +maître-à-danser maître_à_danser NOM m s 0.00 0.07 0.00 0.07 +maître queux maître_queux NOM m s 0.00 0.14 0.00 0.14 +machine-outil machine_outil NOM f s 0.11 0.47 0.00 0.07 +machines-outils machine_outil NOM f p 0.11 0.47 0.11 0.41 +made in made_in ADV 1.06 0.88 1.06 0.88 +madre de dios madre_de_dios NOM s 0.00 0.07 0.00 0.07 +mah-jong mah_jong NOM m s 1.54 0.20 1.54 0.20 +mail-coach mail_coach NOM m s 0.00 0.14 0.00 0.14 +main-courante main_courante NOM f s 0.01 0.07 0.01 0.07 +main-d'oeuvre main_d_oeuvre NOM f s 0.89 1.62 0.89 1.62 +main-forte main_forte NOM f 0.36 0.41 0.36 0.41 +maison-mère maison_mère NOM f s 0.12 0.14 0.12 0.14 +major-général major_général NOM s 0.02 0.34 0.02 0.34 +mal-aimé mal_aimé NOM m s 0.21 0.07 0.03 0.00 +mal-aimée mal_aimé NOM f s 0.21 0.07 0.01 0.07 +mal-aimés mal_aimé NOM m p 0.21 0.07 0.17 0.00 +mal-baisé mal_baisé NOM m s 0.00 0.20 0.00 0.07 +mal-baisée mal_baisé NOM f s 0.00 0.20 0.00 0.14 +mal-pensante mal_pensant ADJ f s 0.00 0.07 0.00 0.07 +mal-pensants mal_pensant NOM m p 0.14 0.07 0.14 0.07 +mal-être mal_être NOM m s 0.34 0.20 0.34 0.20 +mam'selle mam_selle NOM f s 0.11 0.07 0.11 0.07 +mam'zelle mam_zelle NOM f s 0.03 0.00 0.03 0.00 +mandat-carte mandat_carte NOM m s 0.01 0.00 0.01 0.00 +mandat-lettre mandat_lettre NOM m s 0.00 0.07 0.00 0.07 +mandat-poste mandat_poste NOM m s 0.03 0.07 0.03 0.07 +mange-disque mange_disque NOM m s 0.11 0.07 0.10 0.00 +mange-disques mange_disque NOM m p 0.11 0.07 0.01 0.07 +mange-tout mange_tout NOM m 0.01 0.07 0.01 0.07 +maniaco-dépressif maniaco_dépressif ADJ m s 0.38 0.14 0.17 0.00 +maniaco-dépressifs maniaco_dépressif ADJ m p 0.38 0.14 0.08 0.14 +maniaco-dépressive maniaco_dépressif ADJ f s 0.38 0.14 0.13 0.00 +manu militari manu_militari ADV 0.16 0.20 0.16 0.20 +marie-couche-toi-là marie_couche_toi_là NOM f 0.06 0.27 0.06 0.27 +marie-jeanne marie_jeanne NOM f s 0.26 0.07 0.26 0.07 +marie-louise marie_louise NOM f s 0.00 0.07 0.00 0.07 +marie-salope marie_salope NOM f s 0.00 0.07 0.00 0.07 +marin-pêcheur marin_pêcheur NOM m s 0.01 0.14 0.01 0.14 +marque-page marque_page NOM m s 0.25 0.14 0.24 0.07 +marque-pages marque_page NOM m p 0.25 0.14 0.01 0.07 +marteau-pilon marteau_pilon NOM m s 0.07 0.41 0.07 0.34 +marteau-piqueur marteau_piqueur NOM m s 0.42 0.07 0.42 0.07 +marteaux-pilons marteau_pilon NOM m p 0.07 0.41 0.00 0.07 +martin-pêcheur martin_pêcheur NOM m s 0.02 0.41 0.01 0.27 +martins-pêcheurs martin_pêcheur NOM m p 0.02 0.41 0.01 0.14 +maréchal-ferrant maréchal_ferrant NOM m s 0.22 1.96 0.22 1.96 +maréchaux-ferrants maréchaux_ferrants NOM m p 0.00 0.41 0.00 0.41 +marxisme-léninisme marxisme_léninisme NOM m s 0.50 0.68 0.50 0.68 +marxiste-léniniste marxiste_léniniste ADJ s 0.41 0.41 0.27 0.41 +marxistes-léninistes marxiste_léniniste ADJ p 0.41 0.41 0.14 0.00 +masque-espion masque_espion NOM m s 0.01 0.00 0.01 0.00 +mass media mass_media NOM m p 0.17 0.07 0.17 0.07 +mat' mat NOM m s 6.84 4.32 1.95 0.88 +mater dolorosa mater_dolorosa NOM f 0.00 0.47 0.00 0.47 +maxillo-facial maxillo_facial ADJ m s 0.01 0.00 0.01 0.00 +mea-culpa mea_culpa NOM m 0.07 0.14 0.07 0.14 +mea culpa mea_culpa NOM m 0.70 0.68 0.70 0.68 +medicine-ball medicine_ball NOM m s 0.00 0.07 0.00 0.07 +melting-pot melting_pot NOM m s 0.14 0.07 0.13 0.00 +melting pot melting_pot NOM m s 0.14 0.07 0.01 0.07 +mer-air mer_air ADJ f s 0.01 0.00 0.01 0.00 +messieurs-dames messieurs_dames NOM m p 0.48 0.68 0.48 0.68 +mets-la-toi mets_la_toi NOM m 0.01 0.00 0.01 0.00 +meurtre-suicide meurtre_suicide NOM m s 0.04 0.00 0.04 0.00 +mezza-voce mezza_voce ADV 0.00 0.07 0.00 0.07 +mezza voce mezza_voce ADV 0.00 0.20 0.00 0.20 +mezzo-soprano mezzo_soprano NOM s 0.20 0.00 0.20 0.00 +mi-accablé mi_accablé ADJ m s 0.00 0.07 0.00 0.07 +mi-africains mi_africains NOM m 0.00 0.07 0.00 0.07 +mi-airain mi_airain NOM m s 0.00 0.07 0.00 0.07 +mi-allemand mi_allemand NOM m 0.00 0.07 0.00 0.07 +mi-allongé mi_allongé ADJ m s 0.00 0.07 0.00 0.07 +mi-américaine mi_américaine NOM m 0.02 0.00 0.02 0.00 +mi-ange mi_ange NOM m s 0.01 0.00 0.01 0.00 +mi-angevins mi_angevins NOM m 0.00 0.07 0.00 0.07 +mi-animal mi_animal ADJ m s 0.05 0.00 0.05 0.00 +mi-animaux mi_animaux ADJ m 0.00 0.07 0.00 0.07 +mi-août mi_août NOM f s 0.00 0.20 0.00 0.20 +mi-appointées mi_appointé ADJ f p 0.00 0.07 0.00 0.07 +mi-appréhension mi_appréhension NOM f s 0.00 0.07 0.00 0.07 +mi-arabe mi_arabe ADJ s 0.00 0.07 0.00 0.07 +mi-artisan mi_artisan NOM m s 0.00 0.07 0.00 0.07 +mi-automne mi_automne NOM f s 0.00 0.14 0.00 0.14 +mi-bandit mi_bandit NOM m s 0.00 0.07 0.00 0.07 +mi-bas mi_bas NOM m 0.14 0.14 0.14 0.14 +mi-biblique mi_biblique ADJ f s 0.00 0.07 0.00 0.07 +mi-black mi_black ADJ m s 0.14 0.00 0.14 0.00 +mi-blanc mi_blanc NOM m 0.00 0.14 0.00 0.14 +mi-blancs mi_blancs NOM m 0.00 0.07 0.00 0.07 +mi-bleu mi_bleu ADJ 0.00 0.07 0.00 0.07 +mi-bois mi_bois NOM m 0.00 0.07 0.00 0.07 +mi-bordel mi_bordel NOM m s 0.00 0.07 0.00 0.07 +mi-bourgeois mi_bourgeois ADJ m s 0.00 0.07 0.00 0.07 +mi-bovins mi_bovins NOM m 0.00 0.07 0.00 0.07 +mi-braconniers mi_braconnier NOM m p 0.00 0.07 0.00 0.07 +mi-bras mi_bras NOM m 0.00 0.14 0.00 0.14 +mi-britannique mi_britannique ADJ s 0.00 0.07 0.00 0.07 +mi-building mi_building NOM m s 0.00 0.07 0.00 0.07 +mi-bureaucrates mi_bureaucrate ADJ m p 0.00 0.07 0.00 0.07 +mi-bête mi_bête ADJ m s 0.04 0.00 0.04 0.00 +mi-côte mi_côte NOM f s 0.00 0.20 0.00 0.20 +mi-café mi_café ADJ 0.00 0.07 0.00 0.07 +mi-café mi_café NOM m s 0.00 0.07 0.00 0.07 +mi-campagnarde mi_campagnarde NOM m 0.00 0.07 0.00 0.07 +mi-canard mi_canard NOM m s 0.00 0.07 0.00 0.07 +mi-capacité mi_capacité NOM f s 0.02 0.00 0.02 0.00 +mi-carrière mi_carrier NOM f s 0.01 0.00 0.01 0.00 +mi-carême mi_carême NOM f s 0.01 0.61 0.01 0.61 +mi-chair mi_chair ADJ m s 0.00 0.20 0.00 0.20 +mi-chat mi_chat NOM m s 0.00 0.07 0.00 0.07 +mi-chatte mi_chatte NOM f s 0.01 0.00 0.01 0.00 +mi-chauve mi_chauve ADJ s 0.00 0.07 0.00 0.07 +mi-chemin mi_chemin NOM m s 3.72 6.35 3.72 6.35 +mi-châtaigniers mi_châtaignier NOM m p 0.00 0.07 0.00 0.07 +mi-chou mi_chou NOM m s 0.00 0.07 0.00 0.07 +mi-chourineur mi_chourineur NOM m s 0.00 0.07 0.00 0.07 +mi-chèvre mi_chèvre NOM f s 0.00 0.07 0.00 0.07 +mi-chênes mi_chêne NOM m p 0.00 0.07 0.00 0.07 +mi-clair mi_clair ADJ m s 0.00 0.07 0.00 0.07 +mi-cloître mi_cloître NOM m s 0.00 0.07 0.00 0.07 +mi-clos mi_clos ADJ m 0.21 7.16 0.11 6.08 +mi-close mi_clos ADJ f s 0.21 7.16 0.00 0.20 +mi-closes mi_clos ADJ f p 0.21 7.16 0.10 0.88 +mi-comique mi_comique ADJ m s 0.00 0.14 0.00 0.14 +mi-complices mi_complice ADJ m p 0.00 0.07 0.00 0.07 +mi-compote mi_compote NOM f s 0.00 0.07 0.00 0.07 +mi-confit mi_confit NOM m 0.00 0.07 0.00 0.07 +mi-confondus mi_confondu ADJ m p 0.00 0.07 0.00 0.07 +mi-connue mi_connu ADJ f s 0.01 0.00 0.01 0.00 +mi-consterné mi_consterné ADJ m s 0.00 0.07 0.00 0.07 +mi-contrariés mi_contrarié ADJ m p 0.00 0.07 0.00 0.07 +mi-corbeaux mi_corbeaux NOM m p 0.00 0.07 0.00 0.07 +mi-corps mi_corps NOM m 0.01 1.55 0.01 1.55 +mi-course mi_course NOM f s 0.08 0.27 0.08 0.27 +mi-courtois mi_courtois ADJ m 0.00 0.07 0.00 0.07 +mi-cousine mi_cousin NOM f s 0.00 0.14 0.00 0.07 +mi-cousins mi_cousin NOM m p 0.00 0.14 0.00 0.07 +mi-coutume mi_coutume NOM f s 0.00 0.07 0.00 0.07 +mi-crabe mi_crabe NOM m s 0.00 0.07 0.00 0.07 +mi-croyant mi_croyant NOM m 0.00 0.07 0.00 0.07 +mi-créature mi_créature NOM f s 0.00 0.07 0.00 0.07 +mi-cruel mi_cruel ADJ m s 0.00 0.07 0.00 0.07 +mi-cuisse mi_cuisse NOM f s 0.06 1.35 0.04 0.81 +mi-cuisses mi_cuisse NOM f p 0.06 1.35 0.01 0.54 +mi-céleste mi_céleste ADJ m s 0.00 0.07 0.00 0.07 +mi-curieux mi_curieux ADJ m p 0.00 0.14 0.00 0.14 +mi-cérémonieux mi_cérémonieux ADJ m 0.00 0.07 0.00 0.07 +mi-dentelle mi_dentelle NOM f s 0.00 0.07 0.00 0.07 +mi-didactique mi_didactique ADJ s 0.00 0.07 0.00 0.07 +mi-distance mi_distance NOM f s 0.04 0.34 0.04 0.34 +mi-douce mi_douce ADJ f s 0.00 0.07 0.00 0.07 +mi-décadents mi_décadents NOM m 0.00 0.07 0.00 0.07 +mi-décembre mi_décembre NOM m 0.01 0.27 0.01 0.27 +mi-démon mi_démon NOM m s 0.02 0.00 0.02 0.00 +mi-désir mi_désir NOM m s 0.00 0.07 0.00 0.07 +mi-effrayée mi_effrayé ADJ f s 0.00 0.20 0.00 0.07 +mi-effrayés mi_effrayé ADJ m p 0.00 0.20 0.00 0.14 +mi-effrontée mi_effrontée NOM m 0.00 0.07 0.00 0.07 +mi-enfant mi_enfant NOM s 0.01 0.07 0.01 0.07 +mi-enjouée mi_enjoué ADJ f s 0.00 0.07 0.00 0.07 +mi-enterré mi_enterré ADJ m s 0.00 0.07 0.00 0.07 +mi-envieux mi_envieux ADJ m p 0.00 0.07 0.00 0.07 +mi-espagnol mi_espagnol NOM m 0.00 0.07 0.00 0.07 +mi-européen mi_européen NOM m 0.00 0.14 0.00 0.14 +mi-excitation mi_excitation NOM f s 0.00 0.07 0.00 0.07 +mi-farceur mi_farceur NOM m 0.00 0.07 0.00 0.07 +mi-faux mi_faux ADJ m 0.00 0.07 0.00 0.07 +mi-femme mi_femme NOM f s 0.12 0.07 0.12 0.07 +mi-fermiers mi_fermiers NOM m 0.00 0.07 0.00 0.07 +mi-fiel mi_fiel NOM m s 0.00 0.07 0.00 0.07 +mi-figue mi_figue NOM f s 0.02 0.54 0.02 0.54 +mi-flanc mi_flanc NOM m s 0.00 0.14 0.00 0.14 +mi-fleuve mi_fleuve NOM m s 0.08 0.00 0.08 0.00 +mi-français mi_français NOM m 0.00 0.14 0.00 0.14 +mi-furieux mi_furieux ADJ m s 0.00 0.07 0.00 0.07 +mi-février mi_février NOM f s 0.01 0.07 0.01 0.07 +mi-garçon mi_garçon NOM m s 0.00 0.07 0.00 0.07 +mi-geste mi_geste NOM m s 0.00 0.07 0.00 0.07 +mi-gigolpince mi_gigolpince NOM m s 0.00 0.07 0.00 0.07 +mi-gnon mi_gnon NOM m s 0.00 0.07 0.00 0.07 +mi-goguenarde mi_goguenard ADJ f s 0.00 0.07 0.00 0.07 +mi-gonzesse mi_gonzesse NOM f s 0.00 0.07 0.00 0.07 +mi-goélands mi_goéland NOM m p 0.00 0.07 0.00 0.07 +mi-graves mi_grave ADJ p 0.00 0.07 0.00 0.07 +mi-grenier mi_grenier NOM m s 0.00 0.07 0.00 0.07 +mi-grognon mi_grognon NOM m 0.00 0.07 0.00 0.07 +mi-grondeur mi_grondeur ADJ m s 0.00 0.07 0.00 0.07 +mi-grossières mi_grossier ADJ f p 0.00 0.07 0.00 0.07 +mi-haute mi_haute ADJ f s 0.00 0.07 0.00 0.07 +mi-hauteur mi_hauteur NOM f s 0.17 2.91 0.17 2.91 +mi-historiques mi_historique ADJ f p 0.00 0.07 0.00 0.07 +mi-homme mi_homme NOM m s 0.44 0.14 0.44 0.14 +mi-humain mi_humain NOM m 0.08 0.00 0.08 0.00 +mi-humaine mi_humaine NOM m 0.01 0.07 0.01 0.07 +mi-humains mi_humains NOM m 0.01 0.07 0.01 0.07 +mi-hésitant mi_hésitant ADJ m s 0.00 0.07 0.00 0.07 +mi-idiotes mi_idiotes NOM m 0.00 0.07 0.00 0.07 +mi-images mi_image NOM f p 0.00 0.14 0.00 0.14 +mi-indien mi_indien NOM m 0.01 0.07 0.01 0.07 +mi-indifférente mi_indifférente NOM m 0.00 0.07 0.00 0.07 +mi-indignée mi_indigné ADJ f s 0.00 0.07 0.00 0.07 +mi-indigène mi_indigène ADJ s 0.00 0.07 0.00 0.07 +mi-indulgent mi_indulgent ADJ m s 0.00 0.14 0.00 0.14 +mi-inquiète mi_inquiet ADJ f s 0.00 0.14 0.00 0.14 +mi-ironique mi_ironique ADJ m s 0.00 0.41 0.00 0.27 +mi-ironiques mi_ironique ADJ p 0.00 0.41 0.00 0.14 +mi-jambe mi_jambe NOM f s 0.00 0.74 0.00 0.47 +mi-jambes mi_jambe NOM f p 0.00 0.74 0.00 0.27 +mi-janvier mi_janvier NOM f s 0.12 0.20 0.12 0.20 +mi-jaune mi_jaune ADJ s 0.00 0.14 0.00 0.07 +mi-jaunes mi_jaune ADJ p 0.00 0.14 0.00 0.07 +mi-jersey mi_jersey NOM m s 0.00 0.14 0.00 0.14 +mi-joue mi_joue NOM f s 0.00 0.07 0.00 0.07 +mi-jour mi_jour NOM m s 0.00 0.07 0.00 0.07 +mi-journée mi_journée NOM f s 0.20 0.27 0.20 0.27 +mi-juif mi_juif NOM m 0.00 0.07 0.00 0.07 +mi-juillet mi_juillet NOM f s 0.02 0.41 0.02 0.41 +mi-juin mi_juin NOM f s 0.01 0.07 0.01 0.07 +mi-laiton mi_laiton NOM m s 0.00 0.07 0.00 0.07 +mi-lent mi_lent ADJ m s 0.01 0.00 0.01 0.00 +mi-londrès mi_londrès NOM m 0.00 0.07 0.00 0.07 +mi-longs mi_longs NOM m 0.15 0.34 0.15 0.34 +mi-longueur mi_longueur NOM f s 0.00 0.07 0.00 0.07 +mi-lourd mi_lourd ADJ m s 0.17 0.14 0.17 0.14 +mi-machine mi_machine NOM f s 0.07 0.00 0.06 0.00 +mi-machines mi_machine NOM f p 0.07 0.00 0.01 0.00 +mi-mai mi_mai NOM f s 0.01 0.00 0.01 0.00 +mi-mao mi_mao NOM s 0.00 0.07 0.00 0.07 +mi-marchande mi_marchande NOM m 0.00 0.07 0.00 0.07 +mi-mars mi_mars NOM f s 0.04 0.20 0.04 0.20 +mi-marécages mi_marécage NOM m p 0.00 0.07 0.00 0.07 +mi-menaçante mi_menaçant ADJ f s 0.00 0.07 0.00 0.07 +mi-meublé mi_meublé NOM m 0.00 0.07 0.00 0.07 +mi-mexicain mi_mexicain NOM m 0.01 0.00 0.01 0.00 +mi-miel mi_miel ADJ m s 0.00 0.07 0.00 0.07 +mi-mollet mi_mollet NOM m 0.01 0.20 0.01 0.20 +mi-mollets mi_mollets NOM m 0.00 0.27 0.00 0.27 +mi-mondaine mi_mondaine NOM m 0.00 0.07 0.00 0.07 +mi-moqueur mi_moqueur NOM m 0.00 0.14 0.00 0.14 +mi-mot mi_mot NOM m s 0.03 0.27 0.03 0.20 +mi-mots mi_mot NOM m p 0.03 0.27 0.00 0.07 +mi-mouton mi_mouton NOM m s 0.00 0.07 0.00 0.07 +mi-moyen mi_moyen ADJ m s 0.10 0.07 0.08 0.00 +mi-moyens mi_moyen ADJ m p 0.10 0.07 0.02 0.07 +mi-métal mi_métal NOM m s 0.00 0.07 0.00 0.07 +mi-narquoise mi_narquoise ADJ f s 0.00 0.07 0.00 0.07 +mi-noir mi_noir NOM m 0.00 0.07 0.00 0.07 +mi-novembre mi_novembre NOM f s 0.13 0.27 0.13 0.27 +mi-nuit mi_nuit NOM f s 0.00 0.07 0.00 0.07 +mi-obscure mi_obscur ADJ f s 0.00 0.07 0.00 0.07 +mi-octobre mi_octobre NOM f s 0.02 0.14 0.02 0.14 +mi-officiel mi_officiel NOM m 0.00 0.14 0.00 0.14 +mi-ogre mi_ogre NOM m s 0.00 0.07 0.00 0.07 +mi-oiseau mi_oiseau NOM m s 0.10 0.00 0.10 0.00 +mi-oriental mi_oriental NOM m 0.00 0.07 0.00 0.07 +mi-parcours mi_parcours NOM m 0.25 0.34 0.25 0.34 +mi-partie mi_parti ADJ f s 0.00 0.61 0.00 0.61 +mi-pathétique mi_pathétique ADJ s 0.00 0.07 0.00 0.07 +mi-patio mi_patio NOM m s 0.00 0.07 0.00 0.07 +mi-patois mi_patois NOM m 0.00 0.07 0.00 0.07 +mi-peau mi_peau NOM f s 0.00 0.07 0.00 0.07 +mi-pelouse mi_pelouse NOM f s 0.00 0.07 0.00 0.07 +mi-pensées mi_pensée NOM f p 0.00 0.14 0.00 0.14 +mi-pente mi_pente NOM f s 0.02 0.81 0.02 0.81 +mi-pierre mi_pierre NOM f s 0.00 0.07 0.00 0.07 +mi-pincé mi_pincé ADJ m s 0.00 0.07 0.00 0.07 +mi-plaintif mi_plaintif ADJ m s 0.00 0.20 0.00 0.20 +mi-plaisant mi_plaisant NOM m 0.00 0.07 0.00 0.07 +mi-pleurant mi_pleurant NOM m 0.00 0.07 0.00 0.07 +mi-pleurnichard mi_pleurnichard NOM m 0.00 0.07 0.00 0.07 +mi-plombiers mi_plombier NOM m p 0.00 0.07 0.00 0.07 +mi-poisson mi_poisson NOM m s 0.00 0.14 0.00 0.14 +mi-poitrine mi_poitrine NOM f s 0.00 0.07 0.00 0.07 +mi-porcine mi_porcine NOM m 0.00 0.07 0.00 0.07 +mi-porté mi_porté NOM m 0.00 0.07 0.00 0.07 +mi-portugaise mi_portugaise NOM m 0.00 0.07 0.00 0.07 +mi-poucet mi_poucet NOM m s 0.00 0.07 0.00 0.07 +mi-poulet mi_poulet NOM m s 0.00 0.07 0.00 0.07 +mi-prestidigitateur mi_prestidigitateur NOM m s 0.00 0.07 0.00 0.07 +mi-promenoir mi_promenoir NOM m s 0.00 0.07 0.00 0.07 +mi-protecteur mi_protecteur NOM m 0.00 0.14 0.00 0.14 +mi-pêcheurs mi_pêcheur NOM m p 0.00 0.07 0.00 0.07 +mi-putain mi_putain NOM f s 0.00 0.07 0.00 0.07 +mi-rageur mi_rageur ADJ m s 0.00 0.07 0.00 0.07 +mi-raide mi_raide ADJ f s 0.00 0.07 0.00 0.07 +mi-railleur mi_railleur NOM m 0.00 0.14 0.00 0.14 +mi-raisin mi_raisin NOM m s 0.02 0.61 0.02 0.61 +mi-renaissance mi_renaissance NOM f s 0.00 0.07 0.00 0.07 +mi-respectueuse mi_respectueux ADJ f s 0.00 0.07 0.00 0.07 +mi-riant mi_riant ADJ m s 0.00 0.27 0.00 0.27 +mi-rose mi_rose NOM s 0.00 0.07 0.00 0.07 +mi-roulotte mi_roulotte NOM f s 0.00 0.07 0.00 0.07 +mi-route mi_route NOM f s 0.00 0.07 0.00 0.07 +mi-réalité mi_réalité NOM f s 0.00 0.07 0.00 0.07 +mi-régime mi_régime NOM m s 0.00 0.07 0.00 0.07 +mi-réprobateur mi_réprobateur ADJ m s 0.00 0.07 0.00 0.07 +mi-résigné mi_résigné NOM m 0.00 0.07 0.00 0.07 +mi-russe mi_russe ADJ m s 0.14 0.07 0.14 0.07 +mi-saison mi_saison NOM f s 0.14 0.00 0.14 0.00 +mi-salade mi_salade NOM f s 0.01 0.00 0.01 0.00 +mi-salaire mi_salaire NOM m s 0.01 0.00 0.01 0.00 +mi-samoan mi_samoan ADJ m s 0.01 0.00 0.01 0.00 +mi-sanglotant mi_sanglotant ADJ m s 0.00 0.07 0.00 0.07 +mi-satin mi_satin NOM m s 0.00 0.07 0.00 0.07 +mi-satisfait mi_satisfait ADJ m s 0.00 0.07 0.00 0.07 +mi-sceptique mi_sceptique ADJ m s 0.00 0.07 0.00 0.07 +mi-scientifiques mi_scientifique ADJ f p 0.00 0.07 0.00 0.07 +mi-secours mi_secours NOM m 0.00 0.07 0.00 0.07 +mi-seigneur mi_seigneur NOM m s 0.00 0.07 0.00 0.07 +mi-sel mi_sel NOM m s 0.00 0.07 0.00 0.07 +mi-septembre mi_septembre NOM f s 0.03 0.27 0.03 0.27 +mi-sidérée mi_sidéré ADJ f s 0.00 0.07 0.00 0.07 +mi-singe mi_singe NOM m s 0.01 0.00 0.01 0.00 +mi-sombre mi_sombre ADJ m s 0.00 0.07 0.00 0.07 +mi-sommet mi_sommet NOM m s 0.00 0.07 0.00 0.07 +mi-songe mi_songe NOM m s 0.00 0.07 0.00 0.07 +mi-souriant mi_souriant ADJ m s 0.00 0.14 0.00 0.07 +mi-souriante mi_souriant ADJ f s 0.00 0.14 0.00 0.07 +mi-suisse mi_suisse ADJ s 0.00 0.07 0.00 0.07 +mi-série mi_série NOM f s 0.01 0.00 0.01 0.00 +mi-sérieux mi_sérieux ADJ m 0.00 0.20 0.00 0.20 +mi-tantouse mi_tantouse NOM f s 0.00 0.07 0.00 0.07 +mi-tendre mi_tendre NOM m 0.00 0.14 0.00 0.14 +mi-terrorisé mi_terrorisé ADJ m s 0.00 0.07 0.00 0.07 +mi-timide mi_timide ADJ s 0.00 0.07 0.00 0.07 +mi-tortue mi_tortue ADJ f s 0.00 0.07 0.00 0.07 +mi-tour mi_tour NOM s 0.00 0.07 0.00 0.07 +mi-tout mi_tout NOM m 0.00 0.07 0.00 0.07 +mi-tragique mi_tragique ADJ m s 0.00 0.07 0.00 0.07 +mi-trimestre mi_trimestre NOM m s 0.01 0.00 0.01 0.00 +mi-épaule mi_épaule NOM f s 0.00 0.07 0.00 0.07 +mi-étage mi_étage NOM m s 0.00 0.47 0.00 0.47 +mi-étendue mi_étendue NOM f s 0.00 0.07 0.00 0.07 +mi-étonné mi_étonné ADJ m s 0.00 0.14 0.00 0.14 +mi-été mi_été NOM m 0.00 0.27 0.00 0.27 +mi-étudiant mi_étudiant NOM m 0.00 0.07 0.00 0.07 +mi-éveillée mi_éveillé ADJ f s 0.00 0.14 0.00 0.14 +mi-velours mi_velours NOM m 0.00 0.07 0.00 0.07 +mi-verre mi_verre NOM m s 0.00 0.14 0.00 0.14 +mi-vie mi_vie NOM f s 0.00 0.07 0.00 0.07 +mi-voix mi_voix NOM f 0.31 14.39 0.31 14.39 +mi-voluptueux mi_voluptueux ADJ m 0.00 0.07 0.00 0.07 +mi-vrais mi_vrais NOM m 0.00 0.07 0.00 0.07 +mi-végétal mi_végétal NOM m 0.01 0.00 0.01 0.00 +mi-vénitien mi_vénitien NOM m 0.00 0.07 0.00 0.07 +miam-miam miam_miam ONO 0.56 0.68 0.56 0.68 +micro-cravate micro_cravate NOM m s 0.01 0.00 0.01 0.00 +micro-onde micro_onde NOM f s 0.38 0.00 0.38 0.00 +micro-ondes micro_ondes NOM m 2.45 0.14 2.45 0.14 +micro-ordinateur micro_ordinateur NOM m s 0.01 0.14 0.01 0.07 +micro-ordinateurs micro_ordinateur NOM m p 0.01 0.14 0.00 0.07 +micro-organisme micro_organisme NOM m s 0.08 0.00 0.08 0.00 +micro-trottoir micro_trottoir NOM m s 0.01 0.00 0.01 0.00 +middle-west middle_west NOM m s 0.05 0.14 0.05 0.14 +middle class middle_class NOM f s 0.00 0.07 0.00 0.07 +mieux-être mieux_être NOM m 0.12 0.20 0.12 0.20 +mieux-vivre mieux_vivre NOM m s 0.00 0.07 0.00 0.07 +militaro-industriel militaro_industriel ADJ m s 0.06 0.00 0.05 0.00 +militaro-industrielle militaro_industriel ADJ f s 0.06 0.00 0.01 0.00 +milk-bar milk_bar NOM m s 0.03 0.20 0.03 0.14 +milk-bars milk_bar NOM m p 0.03 0.20 0.00 0.07 +milk-shake milk_shake NOM m s 1.85 0.14 1.27 0.14 +milk-shakes milk_shake NOM m p 1.85 0.14 0.45 0.00 +milk shake milk_shake NOM m s 1.85 0.14 0.13 0.00 +mille-feuille mille_feuille NOM m s 0.03 1.08 0.02 0.20 +mille-feuilles mille_feuille NOM m p 0.03 1.08 0.01 0.88 +mille-pattes mille_pattes NOM m 0.39 2.09 0.39 2.09 +mini-chaîne mini_chaîne NOM f s 0.14 0.07 0.14 0.07 +mini-jupe mini_jupe NOM f s 0.62 0.54 0.56 0.34 +mini-jupes mini_jupe NOM f p 0.62 0.54 0.06 0.20 +mini-ordinateur mini_ordinateur NOM m s 0.02 0.00 0.02 0.00 +minus habens minus_habens NOM m 0.00 0.14 0.00 0.14 +mission-suicide mission_suicide NOM f s 0.03 0.07 0.03 0.07 +mobil-home mobil_home NOM m s 0.07 0.00 0.07 0.00 +modern-style modern_style NOM m s 0.00 0.27 0.00 0.27 +modern style modern_style NOM m 0.01 0.00 0.01 0.00 +modus operandi modus_operandi NOM m s 0.32 0.00 0.32 0.00 +modus vivendi modus_vivendi NOM m 0.01 0.47 0.01 0.47 +moi-moi-moi moi_moi_moi NOM m 0.00 0.07 0.00 0.07 +moi-même moi_même PRO:per s 83.25 107.30 83.25 107.30 +moissonneuse-batteuse moissonneuse_batteuse NOM f s 0.04 0.47 0.04 0.27 +moissonneuse-lieuse moissonneuse_lieuse NOM f s 0.00 0.14 0.00 0.07 +moissonneuses-batteuses moissonneuse_batteuse NOM f p 0.04 0.47 0.00 0.20 +moissonneuses-lieuses moissonneuse_lieuse NOM f p 0.00 0.14 0.00 0.07 +moitié-moitié moitié_moitié ADV 0.00 0.14 0.00 0.14 +moment-clé moment_clé NOM m s 0.04 0.00 0.04 0.00 +moments-clés moments_clé NOM m p 0.01 0.00 0.01 0.00 +monnaie-du-pape monnaie_du_pape NOM f s 0.00 0.07 0.00 0.07 +monnaies-du-pape monnaies_du_pape NOM f p 0.00 0.07 0.00 0.07 +mont-blanc mont_blanc NOM m s 1.84 0.47 1.64 0.41 +mont-de-piété mont_de_piété NOM m s 0.98 0.81 0.98 0.81 +monte-charge monte_charge NOM m 0.51 0.54 0.51 0.54 +monte-charges monte_charges NOM m 0.01 0.07 0.01 0.07 +monte-en-l'air monte_en_l_air NOM m 0.12 0.20 0.12 0.20 +monte-plat monte_plat NOM m s 0.01 0.00 0.01 0.00 +monte-plats monte_plats NOM m 0.04 0.07 0.04 0.07 +montre-bracelet montre_bracelet NOM f s 0.08 2.09 0.07 1.82 +montre-gousset montre_gousset NOM f s 0.01 0.07 0.01 0.07 +montre-la-moi montre_la_moi NOM f s 0.14 0.00 0.14 0.00 +montres-bracelets montre_bracelet NOM f p 0.08 2.09 0.01 0.27 +monts-blancs mont_blanc NOM m p 1.84 0.47 0.20 0.07 +mort-aux-rats mort_aux_rats NOM f 0.61 0.47 0.61 0.47 +mort-né mort_né ADJ m s 0.80 0.61 0.53 0.34 +mort-née mort_né ADJ f s 0.80 0.61 0.23 0.00 +mort-nées mort_né ADJ f p 0.80 0.61 0.00 0.07 +mort-nés mort_né ADJ m p 0.80 0.61 0.04 0.20 +mort-vivant mort_vivant NOM m s 1.46 0.81 0.41 0.27 +morte-saison morte_saison NOM f s 0.01 1.08 0.01 1.01 +mortes-eaux mortes_eaux NOM f p 0.00 0.07 0.00 0.07 +mortes-saisons morte_saison NOM f p 0.01 1.08 0.00 0.07 +morts-vivants mort_vivant NOM m p 1.46 0.81 1.05 0.54 +mot-clé mot_clé NOM m s 0.58 0.34 0.41 0.14 +mot-valise mot_valise NOM m s 0.01 0.00 0.01 0.00 +moteur-fusée moteur_fusée NOM m s 0.04 0.00 0.01 0.00 +moteurs-fusées moteur_fusée NOM m p 0.04 0.00 0.04 0.00 +moto-club moto_club NOM f s 0.00 0.14 0.00 0.14 +moto-cross moto_cross NOM m 0.04 0.07 0.04 0.07 +mots-clefs mot_clef NOM m p 0.00 0.07 0.00 0.07 +mots-clés mot_clé NOM m p 0.58 0.34 0.17 0.20 +mots-croisés mots_croisés NOM m p 0.07 0.00 0.07 0.00 +motu proprio motu_proprio ADV 0.00 0.07 0.00 0.07 +moulin-à-vent moulin_à_vent NOM m 0.00 0.14 0.00 0.14 +moyen-âge moyen_âge NOM m s 1.15 0.20 1.15 0.20 +moyen-oriental moyen_oriental ADJ m s 0.03 0.00 0.03 0.00 +moyen-orientaux moyen_orientaux ADJ m p 0.01 0.00 0.01 0.00 +mère-grand mère_grand NOM f s 0.89 0.34 0.89 0.34 +mère-patrie mère_patrie NOM f s 0.04 0.41 0.04 0.41 +médecin-chef médecin_chef NOM m s 0.56 2.09 0.56 2.09 +médecin-conseil médecin_conseil NOM m s 0.01 0.00 0.01 0.00 +médecin-général médecin_général NOM m s 0.01 0.20 0.01 0.20 +médecin-major médecin_major NOM m s 0.70 0.14 0.70 0.14 +médecine-ball médecine_ball NOM m s 0.01 0.00 0.01 0.00 +médico-légal médico_légal ADJ m s 1.06 0.54 0.63 0.41 +médico-légale médico_légal ADJ f s 1.06 0.54 0.25 0.14 +médico-légales médico_légal ADJ f p 1.06 0.54 0.13 0.00 +médico-légaux médico_légal ADJ m p 1.06 0.54 0.05 0.00 +médico-psychologique médico_psychologique ADJ m s 0.01 0.00 0.01 0.00 +médico-social médico_social ADJ m s 0.01 0.07 0.01 0.07 +mêle-tout mêle_tout NOM m 0.01 0.00 0.01 0.00 +méli-mélo méli_mélo NOM m s 0.39 0.81 0.39 0.68 +mélis-mélos méli_mélo NOM m p 0.39 0.81 0.00 0.14 +multi-tâches multi_tâches ADJ f s 0.05 0.00 0.05 0.00 +mêlé-cass mêlé_cass NOM m 0.00 0.20 0.00 0.20 +mêlé-casse mêlé_casse NOM m 0.00 0.14 0.00 0.14 +musettes-repas musettes_repa NOM f p 0.00 0.07 0.00 0.07 +music-hall music_hall NOM m s 1.85 4.32 1.70 3.78 +music-halls music_hall NOM m p 1.85 4.32 0.13 0.54 +music hall music_hall NOM m s 1.85 4.32 0.02 0.00 +mutatis mutandis mutatis_mutandis ADV 0.00 0.07 0.00 0.07 +n' n_ PRO:per 0.18 0.00 0.18 0.00 +n'est-ce pas n_est_ce_pas ADV 0.10 0.00 0.10 0.00 +narco-analyse narco_analyse NOM f s 0.01 0.00 0.01 0.00 +national-socialisme national_socialisme NOM m s 0.58 2.03 0.58 2.03 +national-socialiste national_socialiste ADJ m s 0.23 0.14 0.23 0.14 +nationale-socialiste nationale_socialiste ADJ f s 0.00 0.14 0.00 0.14 +nationaux-socialistes nationaux_socialistes ADJ p 0.00 0.14 0.00 0.14 +navire-citerne navire_citerne NOM m s 0.14 0.00 0.01 0.00 +navire-hôpital navire_hôpital NOM m s 0.04 0.14 0.04 0.14 +navires-citernes navire_citerne NOM m p 0.14 0.00 0.14 0.00 +navires-écoles navire_école NOM m p 0.00 0.07 0.00 0.07 +ne varietur ne_varietur ADV 0.00 0.14 0.00 0.14 +negro spiritual negro_spiritual NOM m s 0.01 0.14 0.01 0.07 +negro spirituals negro_spiritual NOM m p 0.01 0.14 0.00 0.07 +new-yorkais new_yorkais ADJ m 0.00 1.42 0.00 0.95 +new-yorkaise new_yorkais ADJ f s 0.00 1.42 0.00 0.34 +new-yorkaises new_yorkais ADJ f p 0.00 1.42 0.00 0.14 +new wave new_wave NOM f 0.00 0.07 0.00 0.07 +nid-de-poule nid_de_poule NOM m s 0.20 0.20 0.14 0.07 +nids-de-poule nid_de_poule NOM m p 0.20 0.20 0.06 0.14 +night-club night_club NOM m s 1.31 0.88 1.16 0.61 +night-clubs night_club NOM m p 1.31 0.88 0.10 0.27 +night club night_club NOM m s 1.31 0.88 0.05 0.00 +nihil obstat nihil_obstat ADV 0.00 0.20 0.00 0.20 +nimbo-stratus nimbo_stratus NOM m 0.14 0.00 0.14 0.00 +no man's land no_man_s_land NOM m s 0.95 1.49 0.95 1.49 +non-agression non_agression NOM f s 0.07 0.61 0.07 0.61 +non-alignement non_alignement NOM m s 0.04 0.00 0.04 0.00 +non-alignés non_aligné ADJ m p 0.09 0.00 0.09 0.00 +non-amour non_amour NOM m s 0.10 0.00 0.10 0.00 +non-appartenance non_appartenance NOM f s 0.01 0.07 0.01 0.07 +non-assistance non_assistance NOM f s 0.10 0.07 0.10 0.07 +non-blanc non_blanc NOM m s 0.04 0.07 0.00 0.07 +non-blancs non_blanc NOM m p 0.04 0.07 0.04 0.00 +non-combattant non_combattant ADJ m s 0.15 0.00 0.01 0.00 +non-combattant non_combattant NOM m s 0.03 0.00 0.01 0.00 +non-combattants non_combattant ADJ m p 0.15 0.00 0.14 0.00 +non-comparution non_comparution NOM f s 0.01 0.00 0.01 0.00 +non-concurrence non_concurrence NOM f s 0.01 0.00 0.01 0.00 +non-conformisme non_conformisme NOM m s 0.00 0.20 0.00 0.20 +non-conformiste non_conformiste ADJ s 0.14 0.00 0.10 0.00 +non-conformistes non_conformiste ADJ p 0.14 0.00 0.04 0.00 +non-conformité non_conformité NOM f s 0.01 0.00 0.01 0.00 +non-consommation non_consommation NOM f s 0.03 0.00 0.03 0.00 +non-croyance non_croyance NOM f s 0.10 0.00 0.10 0.00 +non-croyant non_croyant NOM m s 0.62 0.07 0.21 0.07 +non-croyants non_croyant NOM m p 0.62 0.07 0.41 0.00 +non-culpabilité non_culpabilité NOM f s 0.01 0.00 0.01 0.00 +non-dit non_dit NOM m s 0.27 0.88 0.09 0.74 +non-dits non_dit NOM m p 0.27 0.88 0.18 0.14 +non-droit non_droit NOM m s 0.22 0.00 0.22 0.00 +non-existence non_existence NOM f s 0.07 0.07 0.07 0.07 +non-ferreux non_ferreux NOM m 0.01 0.00 0.01 0.00 +non-fumeur non_fumeur ADJ m s 0.68 0.00 0.68 0.00 +non-fumeurs non_fumeurs ADJ 0.44 0.07 0.44 0.07 +non-initié non_initié NOM m s 0.22 0.34 0.03 0.14 +non-initiés non_initié NOM m p 0.22 0.34 0.19 0.20 +non-intervention non_intervention NOM f s 0.21 0.14 0.21 0.14 +non-lieu non_lieu NOM m s 1.08 1.42 1.08 1.42 +non-lieux non_lieux NOM m p 0.01 0.20 0.01 0.20 +non-malades non_malade NOM p 0.00 0.07 0.00 0.07 +non-paiement non_paiement NOM m s 0.10 0.07 0.10 0.07 +non-participation non_participation NOM f s 0.01 0.07 0.01 0.07 +non-pesanteur non_pesanteur NOM f s 0.00 0.07 0.00 0.07 +non-prolifération non_prolifération NOM f s 0.09 0.00 0.09 0.00 +non-présence non_présence NOM f s 0.01 0.14 0.01 0.14 +non-recevoir non_recevoir NOM m s 0.06 0.20 0.06 0.20 +non-représentation non_représentation NOM f s 0.01 0.00 0.01 0.00 +non-respect non_respect NOM m s 0.16 0.00 0.16 0.00 +non-retour non_retour NOM m s 0.34 0.41 0.34 0.41 +non-résistance non_résistance NOM f s 0.00 0.14 0.00 0.14 +non-savoir non_savoir NOM m s 0.04 0.07 0.04 0.07 +non-sens non_sens NOM m 0.83 0.95 0.83 0.95 +non-spécialiste non_spécialiste NOM s 0.02 0.07 0.01 0.00 +non-spécialistes non_spécialiste NOM p 0.02 0.07 0.01 0.07 +non-stop non_stop ADJ 0.89 0.14 0.89 0.14 +non-séparation non_séparation NOM f s 0.00 0.07 0.00 0.07 +non-utilisation non_utilisation NOM f s 0.01 0.00 0.01 0.00 +non-être non_être NOM m 0.00 0.95 0.00 0.95 +non-événement non_événement NOM m s 0.02 0.00 0.02 0.00 +non-vie non_vie NOM f s 0.04 0.00 0.04 0.00 +non-violence non_violence NOM f s 0.63 0.07 0.63 0.07 +non-violent non_violent ADJ m s 0.31 0.07 0.19 0.07 +non-violente non_violent ADJ f s 0.31 0.07 0.07 0.00 +non-violents non_violent ADJ m p 0.31 0.07 0.05 0.00 +non-vouloir non_vouloir NOM m s 0.00 0.07 0.00 0.07 +non-voyant non_voyant NOM m s 0.32 0.27 0.28 0.20 +non-voyante non_voyant NOM f s 0.32 0.27 0.02 0.00 +non-voyants non_voyant NOM m p 0.32 0.27 0.03 0.07 +non troppo non_troppo ADV 0.00 0.07 0.00 0.07 +nonante-huit nonante_huit ADJ:num 0.00 0.07 0.00 0.07 +nord-africain nord_africain ADJ m s 0.05 1.96 0.02 0.20 +nord-africaine nord_africain ADJ f s 0.05 1.96 0.01 0.95 +nord-africaines nord_africain ADJ f p 0.05 1.96 0.01 0.07 +nord-africains nord_africain ADJ m p 0.05 1.96 0.01 0.74 +nord-américain nord_américain ADJ m s 0.32 0.20 0.24 0.07 +nord-américaine nord_américain ADJ f s 0.32 0.20 0.06 0.14 +nord-américains nord_américain NOM m p 0.13 0.00 0.03 0.00 +nord-coréen nord_coréen ADJ m s 0.36 0.00 0.24 0.00 +nord-coréenne nord_coréen ADJ f s 0.36 0.00 0.06 0.00 +nord-coréennes nord_coréen ADJ f p 0.36 0.00 0.02 0.00 +nord-coréens nord_coréen NOM m p 0.23 0.07 0.18 0.07 +nord-est nord_est NOM m 1.40 2.84 1.40 2.84 +nord-nord-est nord_nord_est NOM m s 0.03 0.14 0.03 0.14 +nord-ouest nord_ouest NOM m 0.95 1.22 0.95 1.22 +nord-sud nord_sud ADJ 0.15 0.88 0.15 0.88 +nord-vietnamien nord_vietnamien ADJ m s 0.11 0.00 0.04 0.00 +nord-vietnamienne nord_vietnamien ADJ f s 0.11 0.00 0.04 0.00 +nord-vietnamiens nord_vietnamien NOM m p 0.12 0.00 0.11 0.00 +nota bene nota_bene ADV 0.01 0.07 0.01 0.07 +notre-dame notre_dame NOM f 2.69 8.58 2.69 8.58 +nous-même nous_même PRO:per p 1.12 0.61 1.12 0.61 +nous-mêmes nous_mêmes PRO:per p 11.11 16.28 11.11 16.28 +nouveau-né nouveau_né NOM m s 2.72 4.80 2.27 3.18 +nouveau-nés nouveau_né NOM m p 2.72 4.80 0.14 1.49 +nouveaux-nés nouveau_né NOM m p 2.72 4.80 0.30 0.14 +nu-propriétaire nu_propriétaire NOM s 0.00 0.07 0.00 0.07 +nu-tête nu_tête ADJ m s 0.02 1.35 0.02 1.35 +nue-propriété nue_propriété NOM f s 0.00 0.07 0.00 0.07 +numerus clausus numerus_clausus NOM m 0.00 0.07 0.00 0.07 +néo-barbares néo_barbare ADJ f p 0.00 0.07 0.00 0.07 +néo-classique néo_classique ADJ s 0.12 0.34 0.12 0.34 +néo-colonialisme néo_colonialisme NOM m s 0.00 0.20 0.00 0.20 +néo-communiste néo_communiste ADJ f s 0.01 0.00 0.01 0.00 +néo-fascisme néo_fascisme NOM m s 0.01 0.07 0.01 0.07 +néo-fascistes néo_fasciste ADJ p 0.01 0.00 0.01 0.00 +néo-fascistes néo_fasciste NOM p 0.01 0.00 0.01 0.00 +néo-figuration néo_figuration NOM f s 0.00 0.07 0.00 0.07 +néo-flics néo_flic NOM m p 0.02 0.00 0.02 0.00 +néo-gangster néo_gangster NOM m s 0.01 0.00 0.01 0.00 +néo-gothique néo_gothique ADJ f s 0.00 0.20 0.00 0.14 +néo-gothiques néo_gothique ADJ p 0.00 0.20 0.00 0.07 +néo-grec néo_grec ADJ m s 0.00 0.07 0.00 0.07 +néo-helléniques néo_hellénique ADJ f p 0.00 0.07 0.00 0.07 +néo-malthusianisme néo_malthusianisme NOM m s 0.00 0.14 0.00 0.14 +néo-mauresque néo_mauresque ADJ m s 0.00 0.14 0.00 0.07 +néo-mauresques néo_mauresque ADJ f p 0.00 0.14 0.00 0.07 +néo-mouvement néo_mouvement NOM m s 0.00 0.07 0.00 0.07 +néo-renaissant néo_renaissant ADJ m s 0.00 0.07 0.00 0.07 +néo-romantique néo_romantique ADJ f s 0.01 0.00 0.01 0.00 +néo-réalisme néo_réalisme NOM m s 0.10 0.07 0.10 0.07 +néo-réaliste néo_réaliste ADJ m s 0.00 0.20 0.00 0.07 +néo-réalistes néo_réaliste ADJ m p 0.00 0.20 0.00 0.14 +néo-russe néo_russe ADJ s 0.00 0.14 0.00 0.14 +néo-zélandais néo_zélandais ADJ m 0.11 0.14 0.10 0.14 +néo-zélandaise néo_zélandais ADJ f s 0.11 0.14 0.01 0.00 +nuoc-mâm nuoc_mâm NOM m 0.00 0.07 0.00 0.07 +à-côté à_côté NOM m s 0.00 0.68 0.00 0.34 +à-côtés à_côté NOM m p 0.00 0.68 0.00 0.34 +à-coup à_coup NOM m s 0.00 4.80 0.00 0.54 +à-coups à_coup NOM m p 0.00 4.80 0.00 4.26 +à-dieu-vat à_dieu_vat ONO 0.00 0.07 0.00 0.07 +à-peu-près à_peu_près NOM m 0.00 0.74 0.00 0.74 +à-pic à_pic NOM m 0.00 1.42 0.00 1.08 +à-pics à_pic NOM m p 0.00 1.42 0.00 0.34 +à-plat à_plat NOM m s 0.00 0.27 0.00 0.14 +à-plats à_plat NOM m p 0.00 0.27 0.00 0.14 +à-propos à_propos NOM m 0.00 0.88 0.00 0.88 +à-valoir à_valoir NOM m 0.00 0.27 0.00 0.27 +à brûle-pourpoint à_brûle_pourpoint 0.14 0.00 0.14 0.00 +à cloche-pied à_cloche_pied 0.22 0.00 0.22 0.00 +à cropetons à_cropetons ADV 0.00 0.07 0.00 0.07 +à croupetons à_croupetons ADV 0.01 0.95 0.01 0.95 +à fortiori à_fortiori ADV 0.16 0.20 0.16 0.20 +à giorno à_giorno ADV 0.00 0.07 0.00 0.07 +à glagla à_glagla ADV 0.00 0.07 0.00 0.07 +à jeun à_jeun ADV 1.45 3.85 1.27 3.85 +à l'aveuglette à_l_aveuglette ADV 1.11 2.16 1.11 2.16 +à l'encan à_l_encan ADV 0.01 0.14 0.01 0.14 +à l'encontre à_l_encontre PRE 2.67 1.89 2.67 1.89 +à l'envi à_l_envi ADV 0.20 0.61 0.20 0.61 +à l'improviste à_l_improviste ADV 2.67 4.53 2.67 4.53 +à l'instar à_l_instar PRE 0.26 6.42 0.26 6.42 +à la daumont à_la_daumont ADV 0.00 0.07 0.00 0.07 +à la saint-glinglin à_la_saint_glinglin ADV 0.02 0.00 0.02 0.00 +à leur encontre à_leur_encontre ADV 0.03 0.07 0.03 0.07 +à lurelure à_lurelure ADV 0.00 0.20 0.00 0.20 +à mon encontre à_mon_encontre ADV 0.05 0.14 0.05 0.14 +à notre encontre à_notre_encontre ADV 0.02 0.07 0.02 0.07 +à posteriori a_posteriori ADV 0.05 0.20 0.04 0.07 +à priori a_priori ADV 1.04 3.85 0.41 1.28 +à rebrousse-poil à_rebrousse_poil 0.08 0.00 0.08 0.00 +à son encontre à_son_encontre ADV 0.05 0.20 0.05 0.20 +à tire-larigot à_tire_larigot 0.17 0.00 0.17 0.00 +à ton encontre à_ton_encontre ADV 0.02 0.00 0.02 0.00 +à tâtons à_tâtons ADV 0.60 8.78 0.60 8.78 +à touche-touche à_touche_touche 0.01 0.00 0.01 0.00 +à tue-tête à_tue_tête 0.54 0.00 0.54 0.00 +à votre encontre à_votre_encontre ADV 0.15 0.00 0.15 0.00 +oeil-de-boeuf oeil_de_boeuf NOM m s 0.00 0.95 0.00 0.47 +oeils-de-boeuf oeil_de_boeuf NOM m p 0.00 0.95 0.00 0.47 +oeils-de-perdrix oeil_de_perdrix NOM m p 0.00 0.14 0.00 0.14 +off-shore off_shore NOM m s 0.07 0.00 0.07 0.00 +oiseau-clé oiseau_clé NOM m s 0.01 0.00 0.01 0.00 +oiseau-lyre oiseau_lyre NOM m s 0.00 0.07 0.00 0.07 +oiseau-mouche oiseau_mouche NOM m s 0.10 0.27 0.08 0.14 +oiseau-vedette oiseau_vedette NOM m s 0.01 0.00 0.01 0.00 +oiseaux-mouches oiseau_mouche NOM m p 0.10 0.27 0.01 0.14 +oligo-éléments oligo_élément NOM m p 0.00 0.14 0.00 0.14 +olla podrida olla_podrida NOM f 0.00 0.07 0.00 0.07 +olé-olé olé_olé ADJ m p 0.00 0.14 0.00 0.14 +âme-soeur âme_soeur NOM f s 0.04 0.14 0.04 0.14 +on-dit on_dit NOM m 0.14 0.81 0.14 0.81 +on-line on_line ADV 0.07 0.00 0.07 0.00 +one-step one_step NOM m s 0.00 0.20 0.00 0.20 +opéra-comique opéra_comique NOM m s 0.00 0.34 0.00 0.34 +opération-miracle opération_miracle NOM f s 0.00 0.07 0.00 0.07 +orang-outan orang_outan NOM m s 0.28 0.20 0.22 0.07 +orang-outang orang_outang NOM m s 0.08 0.74 0.08 0.61 +orangs-outangs orang_outang NOM m p 0.08 0.74 0.00 0.14 +orangs-outans orang_outan NOM m p 0.28 0.20 0.06 0.14 +osso buco osso_buco NOM m s 0.05 0.00 0.05 0.00 +oto-rhino-laryngologique oto_rhino_laryngologique ADJ f s 0.00 0.07 0.00 0.07 +oto-rhino-laryngologiste oto_rhino_laryngologiste NOM s 0.02 0.00 0.02 0.00 +oto-rhino oto_rhino NOM s 0.49 1.22 0.48 1.08 +oto-rhinos oto_rhino NOM p 0.49 1.22 0.01 0.07 +oto rhino oto_rhino NOM s 0.49 1.22 0.00 0.07 +ouï-dire ouï_dire NOM m 0.00 1.01 0.00 1.01 +ouest-allemand ouest_allemand ADJ m s 0.12 0.00 0.12 0.00 +oui-da oui_da ONO 0.27 0.07 0.27 0.07 +outre-atlantique outre_atlantique ADV 0.04 0.68 0.04 0.68 +outre-manche outre_manche ADV 0.00 0.20 0.00 0.20 +outre-mer outre_mer ADV 0.89 4.05 0.89 4.05 +outre-rhin outre_rhin ADV 0.00 0.27 0.00 0.27 +outre-tombe outre_tombe ADJ s 0.26 2.16 0.26 2.16 +ouvre-boîte ouvre_boîte NOM m s 0.32 0.20 0.32 0.20 +ouvre-boîtes ouvre_boîtes NOM m 0.16 0.34 0.16 0.34 +ouvre-bouteille ouvre_bouteille NOM m s 0.12 0.14 0.08 0.00 +ouvre-bouteilles ouvre_bouteille NOM m p 0.12 0.14 0.04 0.14 +palma-christi palma_christi NOM m 0.00 0.07 0.00 0.07 +pan bagnat pan_bagnat NOM m s 0.00 0.14 0.00 0.14 +panier-repas panier_repas NOM m 0.21 0.07 0.21 0.07 +panneau-réclame panneau_réclame NOM m s 0.00 0.68 0.00 0.68 +papa-cadeau papa_cadeau NOM m s 0.01 0.00 0.01 0.00 +papier-cadeau papier_cadeau NOM m s 0.07 0.07 0.07 0.07 +papier-monnaie papier_monnaie NOM m s 0.00 0.14 0.00 0.14 +papiers-calque papier_calque NOM m p 0.00 0.07 0.00 0.07 +paquet-cadeau paquet_cadeau NOM m s 0.19 0.20 0.19 0.20 +paquets-cadeaux paquets_cadeaux NOM m p 0.01 0.54 0.01 0.54 +par-ci par_ci ADV 3.10 9.12 3.10 9.12 +par-dedans par_dedans PRE 0.00 0.07 0.00 0.07 +par-delà par_delà PRE 1.32 9.05 1.32 9.05 +par-derrière par_derrière PRE 2.04 6.35 2.04 6.35 +par-dessous par_dessous PRE 0.32 2.16 0.32 2.16 +par-dessus par_dessus PRE 16.10 69.19 16.10 69.19 +par-devant par_devant PRE 0.16 1.96 0.16 1.96 +par-devers par_devers PRE 0.01 1.08 0.01 1.08 +par mégarde par_mégarde ADV 0.61 2.91 0.61 2.91 +para-humain para_humain NOM m s 0.00 0.14 0.00 0.14 +parce qu parce_qu CON 4.13 2.36 4.13 2.36 +parce que parce_que CON 548.52 327.43 548.52 327.43 +pare-balle pare_balle ADJ s 0.13 0.00 0.13 0.00 +pare-balles pare_balles ADJ 1.92 0.34 1.92 0.34 +pare-boue pare_boue NOM m 0.04 0.00 0.04 0.00 +pare-brise pare_brise NOM m 4.12 7.16 4.08 7.16 +pare-brises pare_brise NOM m p 4.12 7.16 0.04 0.00 +pare-chocs pare_chocs NOM m 1.85 1.82 1.85 1.82 +pare-feu pare_feu NOM m 0.24 0.07 0.24 0.07 +pare-feux pare_feux NOM m p 0.05 0.00 0.05 0.00 +pare-soleil pare_soleil NOM m 0.26 0.54 0.26 0.54 +pare-éclats pare_éclats NOM m 0.00 0.07 0.00 0.07 +pare-étincelles pare_étincelles NOM m 0.00 0.07 0.00 0.07 +paris-brest paris_brest NOM m 0.19 0.20 0.19 0.20 +part time part_time NOM f s 0.00 0.14 0.00 0.14 +partenaire-robot partenaire_robot NOM s 0.01 0.00 0.01 0.00 +pas-de-porte pas_de_porte NOM m 0.00 0.20 0.00 0.20 +pas-je pas_je ADV 0.01 0.00 0.01 0.00 +paso-doble paso_doble NOM m s 0.00 0.07 0.00 0.07 +paso doble paso_doble NOM m 0.69 0.81 0.69 0.81 +passe-boule passe_boule NOM m s 0.00 0.07 0.00 0.07 +passe-boules passe_boules NOM m 0.00 0.07 0.00 0.07 +passe-crassane passe_crassane NOM f 0.00 0.14 0.00 0.14 +passe-droit passe_droit NOM m s 0.25 0.47 0.08 0.27 +passe-droits passe_droit NOM m p 0.25 0.47 0.17 0.20 +passe-la-moi passe_la_moi NOM f s 0.35 0.07 0.35 0.07 +passe-lacet passe_lacet NOM m s 0.00 0.20 0.00 0.07 +passe-lacets passe_lacet NOM m p 0.00 0.20 0.00 0.14 +passe-montagne passe_montagne NOM m s 0.41 1.69 0.39 1.35 +passe-montagnes passe_montagne NOM m p 0.41 1.69 0.02 0.34 +passe-muraille passe_muraille NOM m 0.01 0.07 0.01 0.07 +passe-partout passe_partout NOM m 0.45 1.22 0.45 1.22 +passe-passe passe_passe NOM m 0.97 1.15 0.97 1.15 +passe-pied passe_pied NOM m s 0.00 0.07 0.00 0.07 +passe-plat passe_plat NOM m s 0.04 0.14 0.04 0.14 +passe-roses passe_rose NOM f p 0.00 0.07 0.00 0.07 +passe-temps passe_temps NOM m 4.21 2.77 4.21 2.77 +pater familias pater_familias NOM m 0.03 0.07 0.03 0.07 +pater noster pater_noster NOM m s 0.10 0.41 0.10 0.41 +pause-café pause_café NOM f s 0.29 0.14 0.26 0.07 +pauses-café pause_café NOM f p 0.29 0.14 0.03 0.07 +pauses-repas pauses_repas NOM f p 0.01 0.07 0.01 0.07 +pax americana pax_americana NOM f 0.01 0.00 0.01 0.00 +peau-rouge peau_rouge NOM s 0.51 0.54 0.49 0.27 +peaux-rouges peau_rouge NOM p 0.51 0.54 0.02 0.27 +peigne-cul peigne_cul NOM m s 0.23 0.34 0.07 0.27 +peigne-culs peigne_cul NOM m p 0.23 0.34 0.17 0.07 +peigne-zizi peigne_zizi NOM s 0.00 0.07 0.00 0.07 +pelle-bêche pelle_bêche NOM f s 0.00 0.14 0.00 0.07 +pelle-pioche pelle_pioche NOM f s 0.00 0.41 0.00 0.07 +pelles-bêches pelle_bêche NOM f p 0.00 0.14 0.00 0.07 +pelles-pioches pelle_pioche NOM f p 0.00 0.41 0.00 0.34 +pense-bête pense_bête NOM m s 0.34 0.41 0.17 0.41 +pense-bêtes pense_bête NOM m p 0.34 0.41 0.17 0.00 +perce-oreille perce_oreille NOM m s 0.04 0.20 0.03 0.07 +perce-oreilles perce_oreille NOM m p 0.04 0.20 0.01 0.14 +perce-pierre perce_pierre NOM f s 0.00 0.07 0.00 0.07 +persona grata persona_grata ADJ 0.01 0.00 0.01 0.00 +persona non grata persona_non_grata NOM f 0.08 0.07 0.08 0.07 +personnage-clé personnage_clé NOM m s 0.02 0.00 0.02 0.00 +pet-de-loup pet_de_loup NOM m s 0.00 0.07 0.00 0.07 +petit-beurre petit_beurre NOM m s 0.00 0.95 0.00 0.14 +petit-bourgeois petit_bourgeois ADJ m 0.77 1.42 0.77 1.42 +petit-cousin petit_cousin NOM m s 0.00 0.07 0.00 0.07 +petit-déjeuner petit_déjeuner NOM m s 13.51 0.07 13.37 0.00 +petit-fils petit_fils NOM m 12.90 12.70 12.50 11.01 +petit-four petit_four NOM m s 0.08 0.07 0.03 0.00 +petit-gris petit_gris NOM m 0.51 0.00 0.27 0.00 +petit-lait petit_lait NOM m s 0.05 0.54 0.05 0.54 +petit-maître petit_maître NOM m s 0.20 0.07 0.20 0.07 +petit-neveu petit_neveu NOM m s 0.04 0.95 0.04 0.61 +petit-nègre petit_nègre NOM m s 0.00 0.14 0.00 0.14 +petit-salé petit_salé NOM m s 0.00 0.07 0.00 0.07 +petit-suisse petit_suisse NOM m s 0.01 0.20 0.01 0.00 +petite-bourgeoise petite_bourgeoise ADJ f s 0.11 0.27 0.11 0.27 +petite-cousine petite_cousine NOM f s 0.00 0.14 0.00 0.14 +petite-fille petite_fille NOM f s 5.30 6.35 4.97 5.74 +petite-nièce petite_nièce NOM f s 0.02 0.20 0.02 0.20 +petites-bourgeoises petite_bourgeoise NOM f p 0.00 0.34 0.00 0.14 +petites-filles petite_fille NOM f p 5.30 6.35 0.33 0.61 +petits-beurre petit_beurre NOM m p 0.00 0.95 0.00 0.81 +petits-bourgeois petit_bourgeois NOM m p 0.71 2.16 0.32 1.42 +petits-déjeuners petit_déjeuner NOM m p 13.51 0.07 0.14 0.07 +petits-enfants petit_enfant NOM m p 5.76 3.04 5.76 3.04 +petits-fils petit_fils NOM m p 12.90 12.70 0.40 1.69 +petits-fours petit_four NOM m p 0.08 0.07 0.04 0.07 +petits-gris petit_gris NOM m p 0.51 0.00 0.25 0.00 +petits-neveux petit_neveu NOM m p 0.04 0.95 0.00 0.34 +petits-pois petits_pois NOM m p 0.10 0.00 0.10 0.00 +petits-suisses petit_suisse NOM m p 0.01 0.20 0.00 0.20 +pets-de-nonne pet_de_nonne NOM m p 0.00 0.41 0.00 0.41 +peu ou prou peu_ou_prou ADV 0.40 0.68 0.40 0.68 +peut-être peut_être ADV 907.68 697.97 907.68 697.97 +photo-finish photo_finish NOM f s 0.01 0.00 0.01 0.00 +photo-robot photo_robot NOM f s 0.01 0.14 0.01 0.14 +photo-électrique photo_électrique ADJ f s 0.00 0.14 0.00 0.14 +phrase-clé phrase_clé NOM f s 0.02 0.00 0.02 0.00 +phrase-robot phrase_robot NOM f s 0.00 0.07 0.00 0.07 +phrases-clés phrases_clé NOM f p 0.00 0.07 0.00 0.07 +physico-chimiques physico_chimique ADJ f p 0.00 0.07 0.00 0.07 +piano-bar piano_bar NOM m s 0.05 0.00 0.05 0.00 +pic-vert pic_vert NOM m s 0.28 0.27 0.27 0.27 +pick-up pick_up NOM m 1.98 2.64 1.98 2.64 +pics-verts pic_vert NOM m p 0.28 0.27 0.01 0.00 +pie-grièche pie_grièche NOM f s 0.00 0.07 0.00 0.07 +pie-mère pie_mère NOM f s 0.01 0.07 0.01 0.07 +pied-bot pied_bot NOM m s 0.28 0.61 0.28 0.61 +pied-d'alouette pied_d_alouette NOM m s 0.01 0.00 0.01 0.00 +pied-d'oeuvre pied_d_oeuvre NOM m s 0.00 0.07 0.00 0.07 +pied-de-biche pied_de_biche NOM m s 0.32 0.27 0.28 0.20 +pied-de-poule pied_de_poule ADJ 0.02 0.54 0.02 0.54 +pied-noir pied_noir NOM m s 0.28 3.78 0.09 0.54 +pied-plat pied_plat NOM m s 0.05 0.00 0.05 0.00 +pieds-de-biche pied_de_biche NOM m p 0.32 0.27 0.04 0.07 +pieds-de-coq pied_de_coq NOM m p 0.00 0.07 0.00 0.07 +pieds-droits pied_droit NOM m p 0.00 0.07 0.00 0.07 +pieds-noirs pied_noir NOM m p 0.28 3.78 0.19 3.24 +pigeon-voyageur pigeon_voyageur NOM m s 0.14 0.00 0.14 0.00 +pile-poil pile_poil NOM f s 0.07 0.00 0.07 0.00 +pin's pin_s NOM m 0.30 0.00 0.30 0.00 +pin-pon pin_pon ONO 0.00 0.34 0.00 0.34 +pin-up pin_up NOM f 0.71 0.54 0.71 0.54 +pince-fesses pince_fesse NOM m p 0.05 0.14 0.05 0.14 +pince-mailles pince_maille NOM m p 0.00 0.07 0.00 0.07 +pince-monseigneur pince_monseigneur NOM f s 0.03 0.54 0.03 0.54 +pince-nez pince_nez NOM m 0.07 1.35 0.07 1.35 +pince-sans-rire pince_sans_rire ADJ s 0.05 0.47 0.05 0.47 +ping-pong ping_pong NOM m s 2.67 2.36 2.67 2.36 +pipe-line pipe_line NOM m s 0.11 0.34 0.09 0.34 +pipe-lines pipe_line NOM m p 0.11 0.34 0.02 0.00 +pipi-room pipi_room NOM m s 0.05 0.00 0.05 0.00 +pique-assiette pique_assiette NOM s 0.39 0.34 0.27 0.27 +pique-assiettes pique_assiette NOM p 0.39 0.34 0.12 0.07 +pique-boeufs pique_boeuf NOM m p 0.00 0.07 0.00 0.07 +pique-feu pique_feu NOM m 0.03 0.81 0.03 0.81 +pique-niquaient pique_niquer VER 1.03 0.74 0.01 0.00 ind:imp:3p; +pique-nique pique_nique NOM m s 6.05 4.12 5.57 3.18 +pique-niquent pique_niquer VER 1.03 0.74 0.03 0.07 ind:pre:3p; +pique-niquer pique_niquer VER 1.03 0.74 0.83 0.47 inf;; +pique-niqueraient pique_niquer VER 1.03 0.74 0.01 0.00 cnd:pre:3p; +pique-niquerons pique_niquer VER 1.03 0.74 0.01 0.00 ind:fut:1p; +pique-niques pique_nique NOM m p 6.05 4.12 0.48 0.95 +pique-niqueurs pique_niqueur NOM m p 0.02 0.27 0.02 0.27 +pique-niquez pique_niquer VER 1.03 0.74 0.01 0.07 ind:pre:2p; +pique-niqué pique_niquer VER m s 1.03 0.74 0.05 0.07 par:pas; +pis-aller pis_aller NOM m 0.14 0.81 0.14 0.81 +pisse-copie pisse_copie NOM s 0.01 0.27 0.01 0.20 +pisse-copies pisse_copie NOM p 0.01 0.27 0.00 0.07 +pisse-froid pisse_froid NOM m 0.10 0.34 0.10 0.34 +pisse-vinaigre pisse_vinaigre NOM m 0.04 0.07 0.04 0.07 +pistolet-mitrailleur pistolet_mitrailleur NOM m s 0.02 0.00 0.02 0.00 +pit-bull pit_bull NOM m s 0.63 0.00 0.26 0.00 +pit-bulls pit_bull NOM m p 0.63 0.00 0.06 0.00 +pit bull pit_bull NOM m s 0.63 0.00 0.31 0.00 +plain-chant plain_chant NOM m s 0.10 0.27 0.10 0.27 +plain-pied plain_pied NOM m s 0.12 3.65 0.12 3.65 +plan-séquence plan_séquence NOM m s 0.10 0.00 0.10 0.00 +planches-contacts planche_contact NOM f p 0.00 0.07 0.00 0.07 +plat-bord plat_bord NOM m s 0.01 0.61 0.00 0.54 +plat-ventre plat_ventre NOM m s 0.11 0.07 0.11 0.07 +plate-bande plate_bande NOM f s 0.82 2.77 0.12 0.54 +plate-forme plate_forme NOM f s 3.06 11.15 2.49 8.45 +plateau-repas plateau_repas NOM m 0.04 0.14 0.04 0.14 +plateaux-repas plateaux_repas NOM m p 0.04 0.07 0.04 0.07 +plates-bandes plate_bande NOM f p 0.82 2.77 0.70 2.23 +plates-formes plate_forme NOM f p 3.06 11.15 0.57 2.70 +plats-bords plat_bord NOM m p 0.01 0.61 0.01 0.07 +play-back play_back NOM m 0.59 0.14 0.57 0.14 +play-boy play_boy NOM m s 0.69 1.08 0.58 0.95 +play-boys play_boy NOM m p 0.69 1.08 0.11 0.14 +play back play_back NOM m 0.59 0.14 0.02 0.00 +plein-air plein_air ADJ m s 0.00 0.07 0.00 0.07 +plein-air plein_air NOM m s 0.00 0.20 0.00 0.20 +plein-cintre plein_cintre NOM m s 0.00 0.07 0.00 0.07 +plein-emploi plein_emploi NOM m s 0.01 0.00 0.01 0.00 +plein-temps plein_temps NOM m 0.12 0.00 0.12 0.00 +plum-pudding plum_pudding NOM m s 0.02 0.07 0.02 0.07 +plus-que-parfait plus_que_parfait NOM m s 0.02 0.14 0.02 0.07 +plus-que-parfaits plus_que_parfait NOM m p 0.02 0.14 0.00 0.07 +plus-value plus_value NOM f s 0.72 0.68 0.48 0.54 +plus-values plus_value NOM f p 0.72 0.68 0.25 0.14 +pneus-neige pneus_neige NOM m p 0.02 0.00 0.02 0.00 +poche-revolver poche_revolver NOM s 0.00 0.27 0.00 0.27 +pochette-surprise pochette_surprise NOM f s 0.20 0.34 0.20 0.20 +pochettes-surprises pochette_surprise NOM f p 0.20 0.34 0.00 0.14 +poids-lourds poids_lourds NOM m 0.02 0.07 0.02 0.07 +poil-de-carotte poil_de_carotte NOM m s 0.00 0.07 0.00 0.07 +point-clé point_clé NOM m s 0.02 0.00 0.02 0.00 +point-virgule point_virgule NOM m s 0.04 0.07 0.04 0.00 +points-virgules point_virgule NOM m p 0.04 0.07 0.00 0.07 +poire-vérité poire_vérité NOM f s 0.00 0.07 0.00 0.07 +poisson-chat poisson_chat NOM m s 0.64 0.54 0.54 0.34 +poisson-globe poisson_globe NOM m s 0.02 0.00 0.02 0.00 +poisson-lune poisson_lune NOM m s 0.15 0.07 0.15 0.07 +poisson-pilote poisson_pilote NOM m s 0.00 0.07 0.00 0.07 +poisson-épée poisson_épée NOM m s 0.09 0.00 0.09 0.00 +poissons-chats poisson_chat NOM m p 0.64 0.54 0.11 0.20 +police-secours police_secours NOM f s 0.16 0.47 0.16 0.47 +politico-religieuse politico_religieux ADJ f s 0.00 0.07 0.00 0.07 +politique-fiction politique_fiction NOM f s 0.00 0.07 0.00 0.07 +poly-sexuelle poly_sexuel ADJ f s 0.01 0.00 0.01 0.00 +pom-pom girl pom_pom_girl NOM f s 2.06 0.00 0.95 0.00 +pom-pom girls pom_pom_girl NOM f p 2.06 0.00 1.11 0.00 +pont-l'évêque pont_l_évêque NOM m s 0.00 0.07 0.00 0.07 +pont-levis pont_levis NOM m 0.46 1.42 0.46 1.42 +pont-neuf pont_neuf NOM m s 0.14 2.43 0.14 2.43 +pont-promenade pont_promenade NOM m s 0.00 0.07 0.00 0.07 +ponts-levis ponts_levis NOM m p 0.00 0.27 0.00 0.27 +pop-club pop_club NOM s 0.00 0.07 0.00 0.07 +pop-corn pop_corn NOM m 3.79 0.14 3.79 0.14 +porc-épic porc_épic NOM m s 0.55 0.27 0.55 0.27 +port-salut port_salut NOM m 0.00 0.20 0.00 0.20 +porte-aiguille porte_aiguille NOM m s 0.07 0.00 0.07 0.00 +porte-avion porte_avion NOM m s 0.04 0.07 0.04 0.07 +porte-avions porte_avions NOM m 1.21 1.22 1.21 1.22 +porte-bagages porte_bagages NOM m 0.02 3.11 0.02 3.11 +porte-bannière porte_bannière NOM m s 0.00 0.07 0.00 0.07 +porte-billets porte_billets NOM m 0.00 0.14 0.00 0.14 +porte-bois porte_bois NOM m 0.00 0.07 0.00 0.07 +porte-bonheur porte_bonheur NOM m 4.58 1.08 4.58 1.08 +porte-bouteilles porte_bouteilles NOM m 0.00 0.27 0.00 0.27 +porte-bébé porte_bébé NOM m s 0.02 0.00 0.02 0.00 +porte-cannes porte_cannes NOM m 0.00 0.07 0.00 0.07 +porte-carte porte_carte NOM m s 0.00 0.07 0.00 0.07 +porte-cartes porte_cartes NOM m 0.00 0.34 0.00 0.34 +porte-chance porte_chance NOM m 0.17 0.07 0.17 0.07 +porte-chapeaux porte_chapeaux NOM m 0.04 0.00 0.04 0.00 +porte-cigarette porte_cigarette NOM m s 0.00 0.20 0.00 0.20 +porte-cigarettes porte_cigarettes NOM m 0.65 0.74 0.65 0.74 +porte-clef porte_clef NOM m s 0.02 0.14 0.02 0.14 +porte-clefs porte_clefs NOM m 0.27 0.34 0.27 0.34 +porte-clé porte_clé NOM m s 0.10 0.00 0.10 0.00 +porte-clés porte_clés NOM m 1.44 0.54 1.44 0.54 +porte-conteneurs porte_conteneurs NOM m 0.01 0.00 0.01 0.00 +porte-coton porte_coton NOM m s 0.00 0.07 0.00 0.07 +porte-couilles porte_couilles NOM m 0.00 0.07 0.00 0.07 +porte-couteau porte_couteau NOM m s 0.00 0.07 0.00 0.07 +porte-couteaux porte_couteaux NOM m p 0.00 0.07 0.00 0.07 +porte-cravate porte_cravate NOM m s 0.00 0.07 0.00 0.07 +porte-crayon porte_crayon NOM m s 0.01 0.00 0.01 0.00 +porte-document porte_document NOM m s 0.01 0.00 0.01 0.00 +porte-documents porte_documents NOM m 0.86 0.68 0.86 0.68 +porte-drapeau porte_drapeau NOM m s 0.19 0.68 0.19 0.68 +porte-drapeaux porte_drapeaux NOM m p 0.01 0.07 0.01 0.07 +porte-fanion porte_fanion NOM m s 0.00 0.14 0.00 0.14 +porte-fenêtre porte_fenêtre NOM f s 0.14 4.46 0.03 3.11 +porte-flingue porte_flingue NOM m s 0.08 0.07 0.08 0.00 +porte-flingues porte_flingue NOM m p 0.08 0.07 0.00 0.07 +porte-forets porte_foret NOM m p 0.00 0.07 0.00 0.07 +porte-glaive porte_glaive NOM m 0.10 1.01 0.10 1.01 +porte-jarretelles porte_jarretelles NOM m 0.59 1.89 0.59 1.89 +porte-malheur porte_malheur NOM m 0.19 0.07 0.19 0.07 +porte-mine porte_mine NOM m s 0.00 0.14 0.00 0.14 +porte-monnaie porte_monnaie NOM m 2.24 6.01 2.24 6.01 +porte-musique porte_musique NOM m s 0.00 0.07 0.00 0.07 +porte-à-faux porte_à_faux NOM m 0.00 0.61 0.00 0.61 +porte-à-porte porte_à_porte NOM m 0.00 0.41 0.00 0.41 +porte-objet porte_objet NOM m s 0.01 0.00 0.01 0.00 +porte-papier porte_papier NOM m 0.01 0.07 0.01 0.07 +porte-parapluie porte_parapluie NOM m s 0.00 0.07 0.00 0.07 +porte-parapluies porte_parapluies NOM m 0.14 0.47 0.14 0.47 +porte-plume porte_plume NOM m 0.29 3.78 0.29 3.72 +porte-plumes porte_plume NOM m p 0.29 3.78 0.00 0.07 +porte-queue porte_queue NOM m 0.01 0.00 0.01 0.00 +porte-savon porte_savon NOM m s 0.09 0.27 0.09 0.27 +porte-serviette porte_serviette NOM m s 0.00 0.20 0.00 0.20 +porte-serviettes porte_serviettes NOM m 0.12 0.20 0.12 0.20 +porte-tambour porte_tambour NOM m 0.01 0.34 0.01 0.34 +porte-épée porte_épée NOM m s 0.00 0.14 0.00 0.14 +porte-étendard porte_étendard NOM m s 0.01 0.34 0.01 0.27 +porte-étendards porte_étendard NOM m p 0.01 0.34 0.00 0.07 +porte-étrier porte_étrier NOM m s 0.00 0.07 0.00 0.07 +porte-voix porte_voix NOM m 0.55 2.64 0.55 2.64 +portes-fenêtres porte_fenêtre NOM f p 0.14 4.46 0.10 1.35 +portrait-robot portrait_robot NOM m s 1.17 0.54 0.77 0.47 +portraits-robots portrait_robot NOM m p 1.17 0.54 0.40 0.07 +pose-la-moi pose_la_moi NOM f s 0.01 0.00 0.01 0.00 +position-clé position_clé NOM f s 0.01 0.00 0.01 0.00 +post-apocalyptique post_apocalyptique ADJ s 0.04 0.00 0.04 0.00 +post-empire post_empire NOM m s 0.00 0.07 0.00 0.07 +post-hypnotique post_hypnotique ADJ f s 0.02 0.00 0.02 0.00 +post-impressionnisme post_impressionnisme NOM m s 0.01 0.00 0.01 0.00 +post-it post_it NOM m 1.85 0.00 1.84 0.00 +post-moderne post_moderne ADJ s 0.14 0.00 0.14 0.00 +post-natal post_natal ADJ m s 0.18 0.07 0.03 0.07 +post-natale post_natal ADJ f s 0.18 0.07 0.16 0.00 +post-opératoire post_opératoire ADJ s 0.19 0.00 0.17 0.00 +post-opératoires post_opératoire ADJ m p 0.19 0.00 0.02 0.00 +post-partum post_partum NOM m 0.04 0.00 0.04 0.00 +post-production post_production NOM f s 0.14 0.00 0.14 0.00 +post-punk post_punk NOM s 0.00 0.14 0.00 0.14 +post-romantique post_romantique ADJ m s 0.00 0.07 0.00 0.07 +post-rupture post_rupture NOM f s 0.01 0.00 0.01 0.00 +post-scriptum post_scriptum NOM m 0.29 1.96 0.29 1.96 +post-surréalistes post_surréaliste ADJ p 0.00 0.07 0.00 0.07 +post-synchro post_synchro ADJ s 0.05 0.00 0.05 0.00 +post-traumatique post_traumatique ADJ s 0.82 0.07 0.79 0.00 +post-traumatiques post_traumatique ADJ p 0.82 0.07 0.03 0.07 +post-victorien post_victorien ADJ m s 0.01 0.00 0.01 0.00 +post-zoo post_zoo NOM m s 0.01 0.00 0.01 0.00 +post it post_it NOM m 1.85 0.00 0.01 0.00 +post mortem post_mortem ADV 0.28 0.20 0.28 0.20 +poste-clé poste_clé NOM s 0.02 0.00 0.02 0.00 +postes-clés postes_clé NOM p 0.01 0.00 0.01 0.00 +pot-au-feu pot_au_feu NOM m 0.90 0.88 0.90 0.88 +pot-bouille pot_bouille NOM m 0.01 0.00 0.01 0.00 +pot-de-vin pot_de_vin NOM m s 1.22 0.41 1.22 0.41 +pot-pourri pot_pourri NOM m s 0.49 0.68 0.34 0.68 +poto-poto poto_poto NOM m s 0.00 0.14 0.00 0.14 +potron-minet potron_minet NOM m s 0.03 0.27 0.03 0.27 +pots-de-vin pots_de_vin NOM m p 1.98 0.34 1.98 0.34 +pots-pourris pot_pourri NOM m p 0.49 0.68 0.15 0.00 +pouce-pied pouce_pied NOM m s 0.01 0.00 0.01 0.00 +pour-cent pour_cent NOM m 0.56 0.00 0.56 0.00 +pousse-au-crime pousse_au_crime NOM m 0.02 0.07 0.02 0.07 +pousse-café pousse_café NOM m 0.13 0.68 0.13 0.68 +pousse-cailloux pousse_cailloux NOM m s 0.00 0.07 0.00 0.07 +pousse-pousse pousse_pousse NOM m 1.43 0.41 1.43 0.41 +premier-maître premier_maître NOM m s 0.16 0.00 0.16 0.00 +premier-né premier_né NOM m s 0.91 0.20 0.77 0.14 +premiers-nés premier_né NOM m p 0.91 0.20 0.14 0.07 +première-née première_née NOM f s 0.11 0.00 0.11 0.00 +presqu'île presqu_île NOM f s 0.16 1.49 0.16 1.35 +presqu'îles presqu_île NOM f p 0.16 1.49 0.00 0.14 +press-book press_book NOM m s 0.03 0.00 0.03 0.00 +presse-agrumes presse_agrumes NOM m 0.04 0.00 0.04 0.00 +presse-bouton presse_bouton ADJ f s 0.04 0.07 0.04 0.07 +presse-citron presse_citron NOM m s 0.02 0.00 0.02 0.00 +presse-fruits presse_fruits NOM m 0.07 0.00 0.07 0.00 +presse-papier presse_papier NOM m s 0.16 0.27 0.16 0.27 +presse-papiers presse_papiers NOM m 0.24 0.47 0.24 0.47 +presse-purée presse_purée NOM m 0.04 0.41 0.04 0.41 +presse-raquette presse_raquette NOM m s 0.00 0.07 0.00 0.07 +prie-dieu prie_dieu NOM m 0.01 2.64 0.01 2.64 +prime-saut prime_saut NOM s 0.00 0.07 0.00 0.07 +prime time prime_time NOM m 0.41 0.00 0.41 0.00 +primo-infection primo_infection NOM f s 0.00 0.07 0.00 0.07 +prince-de-galles prince_de_galles NOM m 0.00 0.27 0.00 0.27 +prince-évêque prince_évêque NOM m s 0.00 0.14 0.00 0.14 +prisons-écoles prisons_école NOM f p 0.00 0.07 0.00 0.07 +prix-choc prix_choc NOM m 0.00 0.07 0.00 0.07 +pro-occidental pro_occidental ADJ m s 0.01 0.00 0.01 0.00 +proche-oriental proche_oriental ADJ m s 0.01 0.00 0.01 0.00 +procès-test procès_test NOM m 0.02 0.00 0.02 0.00 +procès-verbal procès_verbal NOM m s 3.86 2.30 3.55 1.76 +procès-verbaux procès_verbal NOM m p 3.86 2.30 0.31 0.54 +propre-à-rien propre_à_rien NOM m s 0.00 0.07 0.00 0.07 +protège-cahier protège_cahier NOM m s 0.01 0.07 0.01 0.07 +protège-dents protège_dents NOM m 0.10 0.27 0.10 0.27 +protège-slip protège_slip NOM m s 0.03 0.00 0.03 0.00 +protège-tibia protège_tibia NOM m s 0.02 0.00 0.02 0.00 +près de près_de ADV 4.10 16.35 4.10 16.35 +pré-salé pré_salé NOM m s 0.00 0.20 0.00 0.20 +pré-établi pré_établi ADJ m s 0.00 0.07 0.00 0.07 +prêchi-prêcha prêchi_prêcha NOM m 0.11 0.14 0.11 0.14 +prud'homme prud_homme NOM m s 0.21 0.07 0.01 0.00 +prud'hommes prud_homme NOM m p 0.21 0.07 0.20 0.07 +prénom-type prénom_type NOM m s 0.00 0.07 0.00 0.07 +président-directeur président_directeur NOM m s 0.02 0.27 0.02 0.27 +présidents-directeurs présidents_directeur NOM m p 0.00 0.14 0.00 0.14 +prêt-bail prêt_bail NOM m s 0.00 0.27 0.00 0.27 +prêt-à-porter prêt_à_porter NOM m s 0.00 0.95 0.00 0.95 +prête-nom prête_nom NOM m s 0.00 0.27 0.00 0.27 +prêtre-ouvrier prêtre_ouvrier NOM m s 0.00 0.07 0.00 0.07 +pseudo-gouvernement pseudo_gouvernement NOM m s 0.00 0.14 0.00 0.14 +psychiatre-conseil psychiatre_conseil NOM s 0.02 0.00 0.02 0.00 +psychologie-fiction psychologie_fiction NOM f s 0.00 0.07 0.00 0.07 +pèse-acide pèse_acide NOM m s 0.00 0.07 0.00 0.07 +pèse-bébé pèse_bébé NOM m s 0.00 0.14 0.00 0.14 +pèse-lettre pèse_lettre NOM m s 0.00 0.07 0.00 0.07 +pèse-personne pèse_personne NOM m s 0.02 0.07 0.02 0.00 +pèse-personnes pèse_personne NOM m p 0.02 0.07 0.00 0.07 +pète-sec pète_sec ADJ 0.03 0.41 0.03 0.41 +public-relations public_relations NOM f p 0.01 0.20 0.01 0.20 +public schools public_school NOM f p 0.00 0.07 0.00 0.07 +pêle-mêle pêle_mêle ADV 0.00 8.24 0.00 8.24 +pull-over pull_over NOM m s 0.80 6.35 0.78 5.27 +pull-overs pull_over NOM m p 0.80 6.35 0.02 1.08 +pulso-réacteurs pulso_réacteur NOM m p 0.01 0.00 0.01 0.00 +punching-ball punching_ball NOM m s 0.71 0.61 0.64 0.61 +punching ball punching_ball NOM m s 0.71 0.61 0.08 0.00 +pur-sang pur_sang NOM m 1.01 2.23 1.01 2.23 +qu'en-dira-t-on qu_en_dira_t_on NOM m 0.10 0.41 0.10 0.41 +quant-à-moi quant_à_moi NOM m 0.00 0.14 0.00 0.14 +quant-à-soi quant_à_soi NOM m 0.00 1.22 0.00 1.22 +quarante-cinq quarante_cinq ADJ:num 1.16 8.85 1.16 8.85 +quarante-cinquième quarante_cinquième ADJ 0.10 0.07 0.10 0.07 +quarante-deux quarante_deux ADJ:num 0.29 2.09 0.29 2.09 +quarante-deuxième quarante_deuxième ADJ 0.03 0.07 0.03 0.07 +quarante-huit quarante_huit ADJ:num 1.11 6.76 1.11 6.76 +quarante-huitards quarante_huitard NOM m p 0.00 0.07 0.00 0.07 +quarante-huitième quarante_huitième ADJ 0.02 0.07 0.02 0.07 +quarante-neuf quarante_neuf ADJ:num 0.28 0.47 0.28 0.47 +quarante-quatre quarante_quatre ADJ:num 0.10 0.88 0.10 0.88 +quarante-sept quarante_sept ADJ:num 0.40 0.74 0.40 0.74 +quarante-septième quarante_septième ADJ 0.03 0.20 0.03 0.20 +quarante-six quarante_six ADJ:num 0.23 0.47 0.23 0.47 +quarante-trois quarante_trois ADJ:num 0.68 1.28 0.68 1.28 +quarante-troisième quarante_troisième ADJ 0.00 0.07 0.00 0.07 +quart-monde quart_monde NOM m s 0.02 0.00 0.02 0.00 +quartier-maître quartier_maître NOM m s 0.84 0.27 0.83 0.27 +quartiers-maîtres quartier_maître NOM m p 0.84 0.27 0.01 0.00 +quasi-agonie quasi_agonie NOM f s 0.00 0.07 0.00 0.07 +quasi-blasphème quasi_blasphème NOM m s 0.00 0.07 0.00 0.07 +quasi-bonheur quasi_bonheur NOM m s 0.00 0.07 0.00 0.07 +quasi-certitude quasi_certitude NOM f s 0.04 0.41 0.04 0.41 +quasi-chômage quasi_chômage NOM m s 0.02 0.00 0.02 0.00 +quasi-débutant quasi_débutant ADV 0.01 0.00 0.01 0.00 +quasi-décapitation quasi_décapitation NOM f s 0.01 0.00 0.01 0.00 +quasi-désertification quasi_désertification NOM f s 0.00 0.07 0.00 0.07 +quasi-facétieux quasi_facétieux ADJ m 0.01 0.00 0.01 0.00 +quasi-fiancée quasi_fiancé NOM f s 0.00 0.07 0.00 0.07 +quasi-futuristes quasi_futuriste ADJ m p 0.01 0.00 0.01 0.00 +quasi-génocide quasi_génocide NOM m s 0.01 0.00 0.01 0.00 +quasi-hérétique quasi_hérétique NOM s 0.00 0.07 0.00 0.07 +quasi-ignare quasi_ignare NOM s 0.00 0.07 0.00 0.07 +quasi-impossibilité quasi_impossibilité NOM f s 0.00 0.14 0.00 0.14 +quasi-impunité quasi_impunité NOM f s 0.00 0.07 0.00 0.07 +quasi-inconnu quasi_inconnu ADV 0.02 0.07 0.02 0.07 +quasi-indifférence quasi_indifférence NOM f s 0.00 0.07 0.00 0.07 +quasi-infirme quasi_infirme NOM s 0.00 0.07 0.00 0.07 +quasi-instantanée quasi_instantanée ADV 0.02 0.00 0.02 0.00 +quasi-jungienne quasi_jungienne NOM f s 0.01 0.00 0.01 0.00 +quasi-mariage quasi_mariage NOM m s 0.00 0.07 0.00 0.07 +quasi-maximum quasi_maximum ADV 0.01 0.00 0.01 0.00 +quasi-mendiant quasi_mendiant NOM m s 0.14 0.00 0.14 0.00 +quasi-miracle quasi_miracle NOM m s 0.00 0.07 0.00 0.07 +quasi-monopole quasi_monopole NOM m s 0.10 0.00 0.10 0.00 +quasi-morceau quasi_morceau NOM m s 0.00 0.07 0.00 0.07 +quasi-noyade quasi_noyade NOM f s 0.01 0.00 0.01 0.00 +quasi-nudité quasi_nudité NOM f s 0.00 0.14 0.00 0.14 +quasi-permanence quasi_permanence NOM f s 0.00 0.07 0.00 0.07 +quasi-protection quasi_protection NOM f s 0.00 0.07 0.00 0.07 +quasi-religieux quasi_religieux ADJ m s 0.01 0.07 0.01 0.07 +quasi-respect quasi_respect NOM m s 0.00 0.07 0.00 0.07 +quasi-totalité quasi_totalité NOM f s 0.16 0.88 0.16 0.88 +quasi-émeute quasi_émeute NOM f s 0.02 0.00 0.02 0.00 +quasi-unanime quasi_unanime ADJ s 0.00 0.14 0.00 0.14 +quasi-unanimité quasi_unanimité NOM f s 0.00 0.07 0.00 0.07 +quasi-équitable quasi_équitable ADJ m s 0.01 0.00 0.01 0.00 +quasi-veuvage quasi_veuvage NOM m s 0.00 0.07 0.00 0.07 +quasi-ville quasi_ville NOM f s 0.00 0.07 0.00 0.07 +quasi-voisines quasi_voisines ADV 0.00 0.07 0.00 0.07 +quat'zarts quat_zarts NOM m p 0.00 0.07 0.00 0.07 +quatre-feuilles quatre_feuilles NOM m 0.01 0.07 0.01 0.07 +quatre-heures quatre_heures NOM m 0.04 0.41 0.04 0.41 +quatre-mâts quatre_mâts NOM m 0.27 0.14 0.27 0.14 +quatre-quarts quatre_quarts NOM m 0.26 0.14 0.26 0.14 +quatre-saisons quatre_saisons NOM f 0.47 1.15 0.47 1.15 +quatre-vingt-cinq quatre_vingt_cinq ADJ:num 0.07 0.88 0.07 0.88 +quatre-vingt-deux quatre_vingt_deux ADJ:num 0.00 0.27 0.00 0.27 +quatre-vingt-dix-huit quatre_vingt_dix_huit ADJ:num 0.02 0.34 0.02 0.34 +quatre-vingt-dix-neuf quatre_vingt_dix_neuf ADJ:num 0.21 0.47 0.21 0.47 +quatre-vingt-dix-sept quatre_vingt_dix_sept ADJ:num 0.00 0.27 0.00 0.27 +quatre-vingt-dix quatre_vingt_dix NOM m 0.33 0.61 0.33 0.61 +quatre-vingt-dixième quatre_vingt_dixième ADJ 0.01 0.14 0.01 0.14 +quatre-vingt-douze quatre_vingt_douze ADJ:num 0.11 0.54 0.11 0.54 +quatre-vingt-douzième quatre_vingt_douzième ADJ 0.00 0.07 0.00 0.07 +quatre-vingt-huit quatre_vingt_huit ADJ:num 0.02 0.20 0.02 0.20 +quatre-vingt-neuf quatre_vingt_neuf ADJ:num 0.14 0.61 0.14 0.61 +quatre-vingt-onze quatre_vingt_onze ADJ:num 0.10 0.34 0.10 0.34 +quatre-vingt-quatorze quatre_vingt_quatorze ADJ:num 0.10 0.07 0.10 0.07 +quatre-vingt-quatre quatre_vingt_quatre ADJ:num 0.03 0.74 0.03 0.74 +quatre-vingt-quinze quatre_vingt_quinze ADJ:num 0.14 2.16 0.14 2.16 +quatre-vingt-seize quatre_vingt_seize ADJ:num 0.10 0.07 0.10 0.07 +quatre-vingt-sept quatre_vingt_sept ADJ:num 0.07 0.27 0.07 0.27 +quatre-vingt-six quatre_vingt_six ADJ:num 0.19 0.34 0.19 0.34 +quatre-vingt-treize quatre_vingt_treize ADJ:num 0.11 0.95 0.11 0.95 +quatre-vingt-treizième quatre_vingt_treizième ADJ 0.00 0.07 0.00 0.07 +quatre-vingt-trois quatre_vingt_trois ADJ:num 0.06 0.41 0.06 0.41 +quatre-vingt-un quatre_vingt_un ADJ:num 0.02 0.14 0.02 0.14 +quatre-vingt quatre_vingt ADJ:num 0.93 1.01 0.93 1.01 +quatre-vingtième quatre_vingtième ADJ 0.00 0.14 0.00 0.14 +quatre-vingtième quatre_vingtième NOM s 0.00 0.14 0.00 0.14 +quatre-vingts quatre_vingts ADJ:num 0.36 9.05 0.36 9.05 +quelqu'un quelqu_un PRO:ind s 629.00 128.92 629.00 128.92 +quelqu'une quelqu_une PRO:ind f s 0.08 0.61 0.08 0.61 +quelques-unes quelques_unes PRO:ind f p 3.50 8.51 3.50 8.51 +quelques-uns quelques_uns PRO:ind m p 8.33 22.09 8.33 22.09 +question-clé question_clé NOM f s 0.02 0.00 0.02 0.00 +question-réponse question_réponse NOM f s 0.02 0.00 0.02 0.00 +questions-réponses questions_réponse NOM f p 0.07 0.07 0.07 0.07 +queue-d'aronde queue_d_aronde NOM f s 0.00 0.14 0.00 0.07 +queue-de-cheval queue_de_cheval NOM f s 0.14 0.00 0.14 0.00 +queue-de-pie queue_de_pie NOM f s 0.05 0.27 0.05 0.27 +queues-d'aronde queue_d_aronde NOM f p 0.00 0.14 0.00 0.07 +queues-de-rat queue_de_rat NOM f p 0.00 0.07 0.00 0.07 +qui-vive qui_vive ONO 0.00 0.14 0.00 0.14 +quote-part quote_part NOM f s 0.03 0.47 0.03 0.47 +rôle-titre rôle_titre NOM m s 0.01 0.00 0.01 0.00 +rabat-joie rabat_joie ADJ 0.91 0.14 0.91 0.14 +radeau-radar radeau_radar NOM m s 0.00 0.07 0.00 0.07 +radical-socialisme radical_socialisme NOM m s 0.00 0.27 0.00 0.27 +radical-socialiste radical_socialiste ADJ m s 0.00 0.34 0.00 0.34 +radicale-socialiste radicale_socialiste NOM f s 0.00 0.20 0.00 0.20 +radicaux-socialistes radical_socialiste NOM m p 0.00 0.34 0.00 0.27 +radio-isotope radio_isotope NOM m s 0.04 0.00 0.04 0.00 +radio-réveil radio_réveil NOM m s 0.10 0.14 0.10 0.14 +radio-taxi radio_taxi NOM m s 0.14 0.07 0.14 0.07 +rahat-lokoum rahat_lokoum NOM m s 0.00 0.47 0.00 0.41 +rahat-lokoums rahat_lokoum NOM m p 0.00 0.47 0.00 0.07 +rahat-loukoums rahat_loukoum NOM m p 0.00 0.07 0.00 0.07 +ramasse-miettes ramasse_miettes NOM m 0.02 0.27 0.02 0.27 +ramasse-poussière ramasse_poussière NOM m 0.02 0.00 0.02 0.00 +ras-le-bol ras_le_bol NOM m 1.62 0.47 1.62 0.47 +rase-mottes rase_mottes NOM m 0.30 0.47 0.30 0.47 +rase-pet rase_pet NOM m s 0.02 0.20 0.00 0.20 +rase-pets rase_pet NOM m p 0.02 0.20 0.02 0.00 +rat-de-cave rat_de_cave NOM m s 0.00 0.07 0.00 0.07 +ray-grass ray_grass NOM m 0.00 0.14 0.00 0.14 +rayon-éclair rayon_éclair NOM m s 0.00 0.07 0.00 0.07 +raz-de-marée raz_de_marée NOM m 0.57 0.20 0.57 0.20 +re-aboie reaboyer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-balbutiant rebalbutiant ADJ m s 0.00 0.07 0.00 0.07 +re-baptême rebaptême NOM m s 0.00 0.07 0.00 0.07 +re-belote re_belote ONO 0.01 0.00 0.01 0.00 +re-biberonner rebiberonner VER 0.00 0.07 0.00 0.07 inf; +re-bide rebide NOM m s 0.00 0.07 0.00 0.07 +re-blinder reblinder VER 0.00 0.07 0.00 0.07 inf; +re-bombardons rebombardon NOM m p 0.01 0.00 0.01 0.00 +re-boucler reboucler VER 0.14 1.01 0.01 0.00 inf; +re-cabossé recabosser VER m s 0.00 0.07 0.00 0.07 par:pas; +re-café recafé ADJ 0.00 0.07 0.00 0.07 +re-cailloux recailloux NOM m p 0.00 0.07 0.00 0.07 +re-calibrais recalibrer VER 0.01 0.00 0.01 0.00 ind:imp:1s; +re-cassée recasser VER f s 0.24 0.07 0.01 0.00 par:pas; +re-chanteur rechanteur NOM m s 0.01 0.00 0.01 0.00 +re-chiader rechiader VER 0.00 0.07 0.00 0.07 inf; +re-cisèle reciseler VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-classe reclasser VER 0.09 0.20 0.00 0.07 ind:pre:3s; +re-classer reclasser VER 0.09 0.20 0.00 0.07 inf; +re-connaître reconnaître VER 140.73 229.19 0.00 0.07 inf; +re-contacte recontacter VER 0.38 0.07 0.03 0.00 ind:pre:1s; +re-contactent recontacter VER 0.38 0.07 0.01 0.00 ind:pre:3p; +re-contacter recontacter VER 0.38 0.07 0.01 0.00 inf; +re-contacterai recontacter VER 0.38 0.07 0.06 0.00 ind:fut:1s; +re-convaincra reconvaincre VER 0.00 0.07 0.00 0.07 ind:fut:3s; +re-coup recoup NOM m s 0.00 0.07 0.00 0.07 +re-crac recrac NOM m s 0.00 0.07 0.00 0.07 +re-creusés recreuser VER m p 0.14 0.20 0.00 0.07 par:pas; +re-croquis recroquis NOM m 0.00 0.07 0.00 0.07 +re-création recréation NOM f s 0.04 0.27 0.03 0.07 +re-créée recréer VER f s 2.23 4.39 0.00 0.07 par:pas; +re-cul recul NOM m s 3.59 15.61 0.00 0.07 +re-diffuses rediffuser VER 0.20 0.07 0.01 0.00 ind:pre:2s; +re-dose redose NOM f s 0.00 0.07 0.00 0.07 +re-drapeau redrapeau NOM m s 0.00 0.07 0.00 0.07 +re-déchire redéchirer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-déclic redéclic NOM m s 0.00 0.07 0.00 0.07 +re-décore redécorer VER 0.08 0.00 0.01 0.00 ind:pre:1s; +re-décorer redécorer VER 0.08 0.00 0.07 0.00 inf; +re-déménager redéménager VER 0.00 0.07 0.00 0.07 inf; +re-explique reexpliquer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-faim refaim NOM f s 0.14 0.00 0.14 0.00 +re-frappe refrapper VER 0.07 0.14 0.00 0.07 ind:pre:3s; +re-frappé refrapper VER m s 0.07 0.14 0.01 0.07 par:pas; +re-fuse refuser VER 143.96 152.77 0.00 0.07 ind:pre:1s; +re-gomme regomme NOM f s 0.00 0.07 0.00 0.07 +re-histoires rehistoire NOM f p 0.00 0.07 0.00 0.07 +re-hygiène rehygiène NOM f s 0.00 0.07 0.00 0.07 +re-inter re_inter NOM m s 0.00 0.07 0.00 0.07 +re-kidnappais rekidnapper VER 0.01 0.00 0.01 0.00 ind:imp:1s; +re-lettre relettre NOM f s 0.00 0.07 0.00 0.07 +re-main remain NOM f s 0.00 0.07 0.00 0.07 +re-matérialisation rematérialisation NOM f s 0.01 0.00 0.01 0.00 +re-morphine remorphine NOM f s 0.00 0.07 0.00 0.07 +re-nés rené ADJ m p 0.01 0.00 0.01 0.00 +re-paye repayer VER 0.23 0.41 0.00 0.07 imp:pre:2s; +re-penser repenser VER 9.68 12.16 0.01 0.00 inf; +re-potassé repotasser VER m s 0.00 0.07 0.00 0.07 par:pas; +re-programmation reprogrammation NOM f s 0.01 0.00 0.01 0.00 +re-programmée reprogrammer VER f s 1.11 0.00 0.01 0.00 par:pas; +re-raconte reraconter VER 0.00 0.14 0.00 0.07 ind:pre:3s; +re-racontées reraconter VER f p 0.00 0.14 0.00 0.07 par:pas; +re-remplir reremplir VER 0.01 0.07 0.01 0.07 inf; +re-rentrer rerentrer VER 0.05 0.07 0.05 0.07 inf; +re-respirer rerespirer VER 0.00 0.07 0.00 0.07 inf; +re-ressortait reressortir VER 0.00 0.07 0.00 0.07 ind:imp:3s; +re-retirent reretirer VER 0.00 0.07 0.00 0.07 ind:pre:3p; +re-rigole rerigole NOM f s 0.00 0.07 0.00 0.07 +re-récurait rerécurer VER 0.00 0.07 0.00 0.07 ind:imp:3s; +re-réparer reréparer VER 0.01 0.00 0.01 0.00 inf; +re-rêvé rerêvé ADJ m s 0.00 0.07 0.00 0.07 +re-salué resaluer VER m s 0.00 0.07 0.00 0.07 par:pas; +re-savaté resavater VER m s 0.01 0.00 0.01 0.00 par:pas; +re-sculpte resculpter VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-sevrage resevrage NOM m s 0.00 0.07 0.00 0.07 +re-signer resigner VER 0.02 0.00 0.02 0.00 inf; +re-sommeil resommeil NOM m s 0.00 0.07 0.00 0.07 +re-sonne resonner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-structuration restructuration NOM f s 0.91 0.34 0.00 0.07 +re-séparés reséparé ADJ m p 0.00 0.07 0.00 0.07 +re-taloche retaloche NOM f s 0.00 0.14 0.00 0.14 +re-titille retitiller VER 0.00 0.14 0.00 0.14 ind:pre:3s; +re-traitée retraité ADJ f s 0.68 1.15 0.00 0.07 +re-travail retravail NOM m s 0.00 0.07 0.00 0.07 +re-tuage retuage NOM m s 0.04 0.00 0.04 0.00 +re-tuer retuer VER 0.08 0.07 0.07 0.07 inf; +re-tues retu ADJ f p 0.01 0.00 0.01 0.00 +re-ébranlés reébranler VER m p 0.00 0.07 0.00 0.07 par:pas; +re-échanger reéchanger VER 0.01 0.00 0.01 0.00 inf; +re-veux revouloir VER 0.45 0.41 0.04 0.00 ind:pre:2s; +re-vie revie NOM f s 0.00 0.07 0.00 0.07 +re-visite revisiter VER 0.21 0.61 0.00 0.07 ind:pre:3s; +re-vit revivre VER 10.37 20.68 0.00 0.07 ind:pre:3s; +re-vérifier revérifier VER 0.67 0.00 0.10 0.00 inf; +re-vérifié revérifié ADJ m s 0.34 0.07 0.10 0.00 +ready-made ready_made NOM m s 0.00 0.07 0.00 0.07 +receleur-miracle receleur_miracle NOM m s 0.00 0.07 0.00 0.07 +recto tono recto_tono ADV 0.00 0.20 0.00 0.20 +red river red_river NOM s 0.00 0.14 0.00 0.14 +reine-claude reine_claude NOM f s 0.01 0.41 0.00 0.14 +reine-mère reine_mère NOM f s 0.00 0.34 0.00 0.34 +reines-claudes reine_claude NOM f p 0.01 0.41 0.01 0.27 +reines-marguerites reine_marguerite NOM f p 0.00 0.27 0.00 0.27 +remonte-pente remonte_pente NOM m s 0.02 0.07 0.02 0.07 +remonte-pentes remonte_pentes NOM m 0.00 0.07 0.00 0.07 +remède-miracle remède_miracle NOM m s 0.01 0.00 0.01 0.00 +remue-ménage remue_ménage NOM m 0.78 4.80 0.78 4.80 +remue-méninges remue_méninges NOM m 0.05 0.07 0.05 0.07 +rendez-vous rendez_vous NOM m 91.95 53.72 91.95 53.72 +rentre-dedans rentre_dedans NOM m 0.47 0.07 0.47 0.07 +reportage-vérité reportage_vérité NOM m s 0.00 0.14 0.00 0.14 +repose-pied repose_pied NOM m s 0.02 0.07 0.01 0.00 +repose-pieds repose_pied NOM m p 0.02 0.07 0.01 0.07 +requiescat in pace requiescat_in_pace NOM m s 0.00 0.07 0.00 0.07 +requin-baleine requin_baleine NOM m s 0.01 0.00 0.01 0.00 +requin-tigre requin_tigre NOM m s 0.04 0.00 0.04 0.00 +requins-marteaux requin_marteau NOM m p 0.00 0.07 0.00 0.07 +rez-de-chaussée rez_de_chaussée NOM m 2.34 16.96 2.34 16.96 +rez-de-jardin rez_de_jardin NOM m 0.01 0.00 0.01 0.00 +rhythm'n'blues rhythm_n_blues NOM m 0.02 0.00 0.02 0.00 +rhythm and blues rhythm_and_blues NOM m 0.08 0.00 0.08 0.00 +ric-à-rac ric_à_rac ADV 0.00 0.20 0.00 0.20 +ric-rac ric_rac ADV 0.04 0.47 0.04 0.47 +ric et rac ric_et_rac ADV 0.00 0.61 0.00 0.61 +rince-bouche rince_bouche NOM m 0.03 0.00 0.03 0.00 +rince-doigts rince_doigts NOM m 0.08 0.27 0.08 0.27 +risque-tout risque_tout ADJ 0.00 0.07 0.00 0.07 +riz-minute riz_minute NOM m 0.00 0.07 0.00 0.07 +riz-pain-sel riz_pain_sel NOM m s 0.00 0.07 0.00 0.07 +roast-beef roast_beef NOM m s 0.16 0.00 0.14 0.00 +roast beef roast_beef NOM m s 0.16 0.00 0.02 0.00 +rock'n'roll rock_n_roll NOM m 0.19 0.14 0.19 0.14 +rock-'n-roll rock_n_roll NOM m s 0.01 0.00 0.01 0.00 +rocking-chair rocking_chair NOM m s 0.36 1.15 0.28 0.95 +rocking-chairs rocking_chair NOM m p 0.36 1.15 0.01 0.20 +rocking chair rocking_chair NOM m s 0.36 1.15 0.06 0.00 +rogne-pied rogne_pied NOM m s 0.00 0.07 0.00 0.07 +roi-roi roi_roi NOM m s 0.01 0.00 0.01 0.00 +roi-soleil roi_soleil NOM m s 0.00 0.14 0.00 0.14 +roman-feuilleton roman_feuilleton NOM m s 0.13 0.41 0.03 0.27 +roman-fleuve roman_fleuve NOM m s 0.00 0.07 0.00 0.07 +roman-photo roman_photo NOM m s 0.28 0.41 0.14 0.20 +romans-feuilletons roman_feuilleton NOM m p 0.13 0.41 0.10 0.14 +romans-photos roman_photo NOM m p 0.28 0.41 0.14 0.20 +rond-de-cuir rond_de_cuir NOM m s 0.26 0.34 0.23 0.27 +rond-point rond_point NOM m s 0.44 2.50 0.44 2.43 +ronde-bosse ronde_bosse NOM f s 0.00 0.61 0.00 0.61 +ronds-de-cuir rond_de_cuir NOM m p 0.26 0.34 0.03 0.07 +ronds-points rond_point NOM m p 0.44 2.50 0.00 0.07 +rose-croix rose_croix NOM m 0.00 0.07 0.00 0.07 +rose-thé rose_thé ADJ m s 0.00 0.07 0.00 0.07 +rose-thé rose_thé NOM s 0.00 0.07 0.00 0.07 +rouge-brun rouge_brun ADJ m s 0.00 0.20 0.00 0.20 +rouge-feu rouge_feu ADJ m s 0.00 0.07 0.00 0.07 +rouge-gorge rouge_gorge NOM m s 0.44 1.08 0.30 0.68 +rouge-queue rouge_queue NOM m s 0.00 0.07 0.00 0.07 +rouge-sang rouge_sang NOM s 0.00 0.07 0.00 0.07 +rouges-gorges rouge_gorge NOM m p 0.44 1.08 0.13 0.41 +roulé-boulé roulé_boulé NOM m s 0.00 0.27 0.00 0.14 +roulés-boulés roulé_boulé NOM m p 0.00 0.27 0.00 0.14 +russo-allemand russo_allemand ADJ m s 0.00 0.14 0.00 0.07 +russo-allemande russo_allemand ADJ f s 0.00 0.14 0.00 0.07 +russo-américain russo_américain ADJ m s 0.00 0.07 0.00 0.07 +russo-japonaise russo_japonais ADJ f s 0.00 0.20 0.00 0.20 +russo-polonais russo_polonais ADJ m 0.00 0.14 0.00 0.07 +russo-polonaise russo_polonais ADJ f s 0.00 0.14 0.00 0.07 +russo-turque russo_turque ADJ f s 0.00 0.14 0.00 0.14 +réveille-matin réveille_matin NOM m 0.19 0.88 0.19 0.88 +s' s_ PRO:per 2418.95 5391.62 2418.95 5391.62 +sac-poubelle sac_poubelle NOM m s 0.24 0.41 0.19 0.34 +sacro-iliaque sacro_iliaque ADJ s 0.03 0.00 0.02 0.00 +sacro-iliaques sacro_iliaque ADJ f p 0.03 0.00 0.01 0.00 +sacro-saint sacro_saint ADJ m s 0.65 1.35 0.21 0.68 +sacro-sainte sacro_saint ADJ f s 0.65 1.35 0.41 0.47 +sacro-saintes sacro_saint ADJ f p 0.65 1.35 0.00 0.14 +sacro-saints sacro_saint ADJ m p 0.65 1.35 0.02 0.07 +sacré-coeur sacré_coeur NOM m s 0.00 0.20 0.00 0.20 +sacs-poubelles sac_poubelle NOM m p 0.24 0.41 0.06 0.07 +safari-photo safari_photo NOM m s 0.01 0.00 0.01 0.00 +sage-femme sage_femme NOM f s 1.52 1.22 1.35 1.22 +sages-femmes sage_femme NOM f p 1.52 1.22 0.17 0.00 +saint-bernard saint_bernard NOM m 0.17 0.68 0.17 0.68 +saint-crépin saint_crépin NOM m 0.05 0.00 0.05 0.00 +saint-cyrien saint_cyrien NOM m s 0.00 1.01 0.00 0.68 +saint-cyriens saint_cyrien NOM m p 0.00 1.01 0.00 0.34 +saint-esprit saint_esprit NOM m 0.20 0.47 0.20 0.47 +saint-frusquin saint_frusquin NOM m 0.17 0.74 0.17 0.74 +saint-germain saint_germain NOM m 0.00 0.34 0.00 0.34 +saint-glinglin saint_glinglin NOM f s 0.01 0.07 0.01 0.07 +saint-guy saint_guy NOM m 0.03 0.00 0.03 0.00 +saint-honoré saint_honoré NOM m 0.14 0.20 0.14 0.20 +saint-hubert saint_hubert NOM f s 0.00 0.07 0.00 0.07 +saint-michel saint_michel NOM s 0.00 0.07 0.00 0.07 +saint-nectaire saint_nectaire NOM m 0.00 0.14 0.00 0.14 +saint-paulin saint_paulin NOM m 0.00 0.34 0.00 0.34 +saint-pierre saint_pierre NOM m 0.16 0.20 0.16 0.20 +saint-père saint_père NOM m s 0.14 2.16 0.14 0.20 +saint-siège saint_siège NOM m s 0.30 1.28 0.30 1.28 +saint-synode saint_synode NOM m s 0.00 0.07 0.00 0.07 +saint-émilion saint_émilion NOM m 0.00 0.41 0.00 0.41 +sainte-nitouche sainte_nitouche NOM f s 0.46 0.20 0.35 0.20 +sainte nitouche sainte_nitouche NOM f s 0.51 0.14 0.51 0.14 +saintes-nitouches sainte_nitouche NOM f p 0.46 0.20 0.11 0.00 +saints-pères saint_père NOM m p 0.14 2.16 0.00 1.96 +saisie-arrêt saisie_arrêt NOM f s 0.00 0.20 0.00 0.20 +san francisco san_francisco NOM s 0.02 0.07 0.02 0.07 +sang-froid sang_froid NOM m 5.41 9.26 5.41 9.26 +sans-coeur sans_coeur ADJ 0.01 0.07 0.01 0.07 +sans-culotte sans_culotte NOM m s 0.16 0.41 0.16 0.00 +sans-culottes sans_culotte NOM m p 0.16 0.41 0.00 0.41 +sans-culottides sans_culottide NOM f p 0.00 0.07 0.00 0.07 +sans-façon sans_façon NOM m 0.10 0.14 0.10 0.14 +sans-faute sans_faute NOM m 0.05 0.00 0.05 0.00 +sans-fil sans_fil NOM m 0.21 0.20 0.21 0.20 +sans-filiste sans_filiste NOM m s 0.00 0.74 0.00 0.61 +sans-filistes sans_filiste NOM m p 0.00 0.74 0.00 0.14 +sans-grade sans_grade NOM m 0.05 0.14 0.05 0.14 +sans-pareil sans_pareil NOM m 0.00 5.20 0.00 5.20 +sapeur-pompier sapeur_pompier NOM m s 0.11 0.61 0.07 0.00 +sapeurs-pompiers sapeur_pompier NOM m p 0.11 0.61 0.04 0.61 +satellites-espions satellites_espion NOM m p 0.02 0.00 0.02 0.00 +sauf-conduit sauf_conduit NOM m s 1.14 1.01 0.77 0.88 +sauf-conduits sauf_conduit NOM m p 1.14 1.01 0.37 0.14 +saut-de-lit saut_de_lit NOM m s 0.00 0.20 0.00 0.14 +saute-mouton saute_mouton NOM m 0.14 0.54 0.14 0.54 +saute-ruisseau saute_ruisseau NOM m s 0.00 0.07 0.00 0.07 +sauts-de-lit saut_de_lit NOM m p 0.00 0.20 0.00 0.07 +sauve-qui-peut sauve_qui_peut NOM m 0.10 0.68 0.10 0.68 +savoir-faire savoir_faire NOM m 1.23 2.03 1.23 2.03 +savoir-vivre savoir_vivre NOM m 1.67 1.76 1.67 1.76 +scenic railway scenic_railway NOM m s 0.00 0.20 0.00 0.20 +science-fiction science_fiction NOM f s 2.36 1.22 2.36 1.22 +scotch-terrier scotch_terrier NOM m s 0.01 0.00 0.01 0.00 +script-girl script_girl NOM f s 0.00 0.20 0.00 0.20 +scène-clé scène_clé NOM f s 0.01 0.00 0.01 0.00 +scènes-clés scènes_clé NOM f p 0.01 0.00 0.01 0.00 +second-maître second_maître NOM m s 0.05 0.07 0.05 0.07 +sedia gestatoria sedia_gestatoria NOM f 0.00 0.20 0.00 0.20 +self-contrôle self_contrôle NOM m s 0.19 0.07 0.19 0.07 +self-control self_control NOM m s 0.16 0.34 0.16 0.34 +self-défense self_défense NOM f s 0.18 0.00 0.18 0.00 +self-made-man self_made_man NOM m s 0.02 0.07 0.02 0.07 +self-made-men self_made_men NOM m p 0.01 0.07 0.01 0.07 +self-made man self_made_man NOM m s 0.14 0.07 0.14 0.07 +self-service self_service NOM m s 0.37 0.47 0.36 0.47 +self-services self_service NOM m p 0.37 0.47 0.01 0.00 +semen-contra semen_contra NOM m s 0.00 0.07 0.00 0.07 +semi-arides semi_aride ADJ f p 0.01 0.00 0.01 0.00 +semi-automatique semi_automatique ADJ s 0.71 0.07 0.59 0.07 +semi-automatiques semi_automatique ADJ f p 0.71 0.07 0.12 0.00 +semi-circulaire semi_circulaire ADJ s 0.01 0.14 0.01 0.14 +semi-conducteur semi_conducteur NOM m s 0.08 0.00 0.02 0.00 +semi-conducteurs semi_conducteur NOM m p 0.08 0.00 0.06 0.00 +semi-liberté semi_liberté NOM f s 0.26 0.07 0.26 0.07 +semi-lunaire semi_lunaire ADJ f s 0.02 0.00 0.02 0.00 +semi-nomades semi_nomade ADJ m p 0.00 0.07 0.00 0.07 +semi-officiel semi_officiel ADJ m s 0.01 0.14 0.01 0.07 +semi-officielle semi_officiel ADJ f s 0.01 0.14 0.00 0.07 +semi-ouvert semi_ouvert ADJ m s 0.01 0.00 0.01 0.00 +semi-perméable semi_perméable ADJ f s 0.01 0.00 0.01 0.00 +semi-phonétique semi_phonétique ADJ f s 0.00 0.07 0.00 0.07 +semi-précieuse semi_précieuse ADJ f s 0.01 0.00 0.01 0.00 +semi-précieuses semi_précieux ADJ f p 0.00 0.14 0.00 0.07 +semi-public semi_public ADJ m s 0.01 0.00 0.01 0.00 +semi-remorque semi_remorque NOM m s 0.48 0.61 0.45 0.54 +semi-remorques semi_remorque NOM m p 0.48 0.61 0.04 0.07 +semi-rigide semi_rigide ADJ f s 0.01 0.07 0.01 0.07 +sent-bon sent_bon NOM m s 0.00 0.54 0.00 0.54 +septante-cinq septante_cinq ADJ:num 0.00 0.07 0.00 0.07 +septante-sept septante_sept ADJ:num 0.20 0.07 0.20 0.07 +serbo-croate serbo_croate NOM s 0.14 0.20 0.14 0.20 +sergent-chef sergent_chef NOM m s 1.52 1.49 1.38 1.42 +sergent-major sergent_major NOM m s 0.71 1.35 0.71 1.28 +sergent-pilote sergent_pilote NOM m s 0.00 0.07 0.00 0.07 +sergents-chefs sergent_chef NOM m p 1.52 1.49 0.14 0.07 +sergents-majors sergent_major NOM m p 0.71 1.35 0.00 0.07 +serre-file serre_file NOM m s 0.04 0.34 0.04 0.34 +serre-joint serre_joint NOM m s 0.04 0.14 0.01 0.00 +serre-joints serre_joint NOM m p 0.04 0.14 0.03 0.14 +serre-livres serre_livres NOM m 0.03 0.07 0.03 0.07 +serre-tête serre_tête NOM m s 0.22 0.74 0.21 0.74 +serre-têtes serre_tête NOM m p 0.22 0.74 0.01 0.00 +serviette-éponge serviette_éponge NOM f s 0.00 1.49 0.00 1.22 +serviettes-éponges serviette_éponge NOM f p 0.00 1.49 0.00 0.27 +sex-appeal sex_appeal NOM m s 0.44 0.74 0.38 0.68 +sex-shop sex_shop NOM m s 0.57 0.54 0.41 0.34 +sex-shops sex_shop NOM m p 0.57 0.54 0.07 0.20 +sex-symbol sex_symbol NOM m s 0.08 0.07 0.08 0.07 +sex appeal sex_appeal NOM m s 0.44 0.74 0.06 0.07 +sex shop sex_shop NOM m s 0.57 0.54 0.08 0.00 +sex shops sex_shop NOM m p 0.57 0.54 0.01 0.00 +shake-hand shake_hand NOM m s 0.00 0.14 0.00 0.14 +show-business show_business NOM m 0.00 0.27 0.00 0.27 +sic transit gloria mundi sic_transit_gloria_mundi ADV 0.03 0.07 0.03 0.07 +side-car side_car NOM m s 0.23 1.08 0.23 0.81 +side-cars side_car NOM m p 0.23 1.08 0.00 0.27 +sine die sine_die ADV 0.00 0.34 0.00 0.34 +sine qua non sine_qua_non ADV 0.16 0.47 0.16 0.47 +singe-araignée singe_araignée NOM m s 0.01 0.00 0.01 0.00 +sino-américain sino_américain NOM m s 0.02 0.00 0.02 0.00 +sino-arabe sino_arabe ADJ f s 0.01 0.00 0.01 0.00 +sino-japonaise sino_japonais ADJ f s 0.00 0.14 0.00 0.14 +sit-in sit_in NOM m 0.30 0.00 0.30 0.00 +six-quatre six_quatre NOM m 0.00 0.07 0.00 0.07 +skate-board skate_board NOM m s 0.57 0.07 0.57 0.07 +snack-bar snack_bar NOM m s 0.23 0.61 0.23 0.54 +snack-bars snack_bar NOM m p 0.23 0.61 0.00 0.07 +snow-boots snow_boot NOM m p 0.00 0.07 0.00 0.07 +soap-opéra soap_opéra NOM m s 0.17 0.00 0.15 0.00 +soap opéra soap_opéra NOM m s 0.17 0.00 0.02 0.00 +social-démocrate social_démocrate ADJ m s 0.21 0.14 0.21 0.14 +social-démocratie social_démocratie NOM f s 0.02 0.34 0.02 0.34 +social-traître social_traître NOM m s 0.00 0.27 0.00 0.27 +sociaux-démocrates sociaux_démocrates ADJ m 0.23 0.00 0.23 0.00 +socio-culturelles socio_culturel ADJ f p 0.01 0.14 0.00 0.07 +socio-culturels socio_culturel ADJ m p 0.01 0.14 0.01 0.07 +socio-économique socio_économique ADJ m s 0.08 0.07 0.06 0.00 +socio-économiques socio_économique ADJ m p 0.08 0.07 0.02 0.07 +soi-disant soi_disant ADJ 9.46 13.11 9.46 13.11 +soi-même soi_même PRO:per s 6.86 24.86 6.86 24.86 +soixante-cinq soixante_cinq ADJ:num 0.12 3.58 0.12 3.58 +soixante-deux soixante_deux ADJ:num 0.15 0.34 0.15 0.34 +soixante-deuxième soixante_deuxième ADJ 0.00 0.07 0.00 0.07 +soixante-dix-huit soixante_dix_huit ADJ:num 0.16 0.47 0.16 0.47 +soixante-dix-neuf soixante_dix_neuf ADJ:num 0.01 0.20 0.01 0.20 +soixante-dix-neuvième soixante_dix_neuvième ADJ 0.00 0.07 0.00 0.07 +soixante-dix-sept soixante_dix_sept ADJ:num 0.21 0.74 0.21 0.74 +soixante-dix soixante_dix ADJ:num 1.12 8.85 1.12 8.85 +soixante-dixième soixante_dixième NOM s 0.00 0.47 0.00 0.47 +soixante-douze soixante_douze ADJ:num 0.23 1.15 0.23 1.15 +soixante-huit soixante_huit ADJ:num 0.16 0.81 0.16 0.81 +soixante-huitard soixante_huitard NOM m s 0.01 0.14 0.01 0.00 +soixante-huitarde soixante_huitard ADJ f s 0.00 0.07 0.00 0.07 +soixante-huitards soixante_huitard NOM m p 0.01 0.14 0.00 0.14 +soixante-neuf soixante_neuf ADJ:num 0.16 0.41 0.16 0.41 +soixante-quatorze soixante_quatorze ADJ:num 0.03 0.61 0.03 0.61 +soixante-quatre soixante_quatre ADJ:num 0.04 0.61 0.04 0.61 +soixante-quinze soixante_quinze ADJ:num 0.27 3.85 0.27 3.85 +soixante-seize soixante_seize ADJ:num 0.07 0.68 0.07 0.68 +soixante-sept soixante_sept ADJ:num 0.20 0.81 0.20 0.81 +soixante-six soixante_six ADJ:num 0.08 0.81 0.08 0.81 +soixante-treize soixante_treize ADJ:num 0.01 1.08 0.01 1.08 +soixante-trois soixante_trois ADJ:num 0.15 0.20 0.15 0.20 +sol-air sol_air ADJ 0.32 0.00 0.32 0.00 +soleil-roi soleil_roi NOM m s 0.00 0.07 0.00 0.07 +songe-creux songe_creux NOM m 0.01 0.41 0.01 0.41 +souffre-douleur souffre_douleur NOM m 0.27 1.22 0.27 1.22 +sourd-muet sourd_muet ADJ m s 0.78 0.20 0.77 0.20 +sourde-muette sourde_muette NOM f s 0.24 0.07 0.24 0.07 +sourds-muets sourd_muet NOM m p 1.48 1.01 0.88 0.68 +sous-alimentation sous_alimentation NOM f s 0.03 0.27 0.03 0.27 +sous-alimenté sous_alimenter VER m s 0.04 0.00 0.02 0.00 par:pas; +sous-alimentée sous_alimenté ADJ f s 0.04 0.20 0.04 0.07 +sous-alimentés sous_alimenté NOM m p 0.01 0.27 0.01 0.14 +sous-bibliothécaire sous_bibliothécaire NOM s 0.00 0.47 0.00 0.47 +sous-bois sous_bois NOM m 0.49 7.57 0.49 7.57 +sous-chef sous_chef NOM m s 0.73 0.88 0.69 0.74 +sous-chefs sous_chef NOM m p 0.73 0.88 0.04 0.14 +sous-classe sous_classe NOM f s 0.01 0.00 0.01 0.00 +sous-clavière sous_clavier ADJ f s 0.28 0.00 0.28 0.00 +sous-comité sous_comité NOM m s 0.26 0.07 0.26 0.07 +sous-commission sous_commission NOM f s 0.18 0.07 0.18 0.07 +sous-continent sous_continent NOM m s 0.06 0.07 0.05 0.07 +sous-continents sous_continent NOM m p 0.06 0.07 0.01 0.00 +sous-couche sous_couche NOM f s 0.03 0.00 0.03 0.00 +sous-cul sous_cul NOM m s 0.00 0.07 0.00 0.07 +sous-cutané sous_cutané ADJ m s 0.28 0.07 0.10 0.00 +sous-cutanée sous_cutané ADJ f s 0.28 0.07 0.10 0.00 +sous-cutanées sous_cutané ADJ f p 0.28 0.07 0.05 0.07 +sous-cutanés sous_cutané ADJ m p 0.28 0.07 0.03 0.00 +sous-diacre sous_diacre NOM m s 0.00 0.07 0.00 0.07 +sous-directeur sous_directeur NOM m s 0.66 1.96 0.63 1.82 +sous-directeurs sous_directeur NOM m p 0.66 1.96 0.00 0.07 +sous-directrice sous_directeur NOM f s 0.66 1.96 0.03 0.07 +sous-division sous_division NOM f s 0.04 0.00 0.04 0.00 +sous-dominante sous_dominante NOM f s 0.01 0.07 0.01 0.07 +sous-développement sous_développement NOM m s 0.30 0.27 0.30 0.27 +sous-développé sous_développé ADJ m s 0.31 0.68 0.09 0.27 +sous-développée sous_développé ADJ f s 0.31 0.68 0.02 0.00 +sous-développées sous_développé ADJ f p 0.31 0.68 0.02 0.07 +sous-développés sous_développé ADJ m p 0.31 0.68 0.19 0.34 +sous-effectif sous_effectif NOM m s 0.11 0.00 0.10 0.00 +sous-effectifs sous_effectif NOM m p 0.11 0.00 0.01 0.00 +sous-emploi sous_emploi NOM m s 0.00 0.07 0.00 0.07 +sous-ensemble sous_ensemble NOM m s 0.08 0.14 0.08 0.14 +sous-entend sous_entendre VER 2.03 1.82 0.39 0.20 ind:pre:3s; +sous-entendais sous_entendre VER 2.03 1.82 0.17 0.00 ind:imp:1s; +sous-entendait sous_entendre VER 2.03 1.82 0.03 0.54 ind:imp:3s; +sous-entendant sous_entendre VER 2.03 1.82 0.01 0.47 par:pre; +sous-entendent sous_entendre VER 2.03 1.82 0.01 0.00 ind:pre:3p; +sous-entendez sous_entendre VER 2.03 1.82 0.42 0.00 ind:pre:2p; +sous-entendiez sous_entendre VER 2.03 1.82 0.10 0.00 ind:imp:2p; +sous-entendrait sous_entendre VER 2.03 1.82 0.01 0.00 cnd:pre:3s; +sous-entendre sous_entendre VER 2.03 1.82 0.11 0.27 inf; +sous-entends sous_entendre VER 2.03 1.82 0.39 0.00 ind:pre:1s;ind:pre:2s; +sous-entendu sous_entendre VER m s 2.03 1.82 0.38 0.14 par:pas; +sous-entendue sous_entendu ADJ f s 0.06 0.68 0.01 0.07 +sous-entendus sous_entendu NOM m p 0.77 5.34 0.45 3.38 +sous-espace sous_espace NOM m s 0.22 0.00 0.22 0.00 +sous-espèce sous_espèce NOM f s 0.11 0.00 0.11 0.00 +sous-estimais sous_estimer VER 7.27 1.08 0.05 0.00 ind:imp:1s; +sous-estimait sous_estimer VER 7.27 1.08 0.03 0.34 ind:imp:3s; +sous-estimation sous_estimation NOM f s 0.06 0.07 0.06 0.07 +sous-estime sous_estimer VER 7.27 1.08 1.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sous-estiment sous_estimer VER 7.27 1.08 0.22 0.00 ind:pre:3p; +sous-estimer sous_estimer VER 7.27 1.08 1.05 0.54 inf; +sous-estimerai sous_estimer VER 7.27 1.08 0.03 0.00 ind:fut:1s; +sous-estimes sous_estimer VER 7.27 1.08 0.72 0.00 ind:pre:2s; +sous-estimez sous_estimer VER 7.27 1.08 1.53 0.00 imp:pre:2p;ind:pre:2p; +sous-estimons sous_estimer VER 7.27 1.08 0.11 0.00 imp:pre:1p;ind:pre:1p; +sous-estimé sous_estimer VER m s 7.27 1.08 1.71 0.14 par:pas; +sous-estimée sous_estimer VER f s 7.27 1.08 0.14 0.00 par:pas; +sous-estimées sous_estimer VER f p 7.27 1.08 0.07 0.00 par:pas; +sous-estimés sous_estimer VER m p 7.27 1.08 0.09 0.00 par:pas; +sous-exposé sous_exposer VER m s 0.02 0.00 0.01 0.00 par:pas; +sous-exposées sous_exposer VER f p 0.02 0.00 0.01 0.00 par:pas; +sous-fifre sous_fifre NOM m s 0.72 0.41 0.45 0.20 +sous-fifres sous_fifre NOM m p 0.72 0.41 0.27 0.20 +sous-garde sous_garde NOM f s 0.01 0.07 0.01 0.07 +sous-genre sous_genre NOM m s 0.02 0.00 0.02 0.00 +sous-gorge sous_gorge NOM f 0.00 0.07 0.00 0.07 +sous-groupe sous_groupe NOM m s 0.01 0.00 0.01 0.00 +sous-homme sous_homme NOM m s 0.20 0.61 0.16 0.00 +sous-hommes sous_homme NOM m p 0.20 0.61 0.05 0.61 +sous-humanité sous_humanité NOM f s 0.01 0.20 0.01 0.20 +sous-intendant sous_intendant NOM m s 0.30 0.00 0.10 0.00 +sous-intendants sous_intendant NOM m p 0.30 0.00 0.20 0.00 +sous-jacent sous_jacent ADJ m s 0.81 0.34 0.19 0.20 +sous-jacente sous_jacent ADJ f s 0.81 0.34 0.22 0.07 +sous-jacentes sous_jacent ADJ f p 0.81 0.34 0.01 0.07 +sous-jacents sous_jacent ADJ m p 0.81 0.34 0.39 0.00 +sous-lieutenant sous_lieutenant NOM m s 0.81 5.61 0.76 4.93 +sous-lieutenants sous_lieutenant NOM m p 0.81 5.61 0.05 0.68 +sous-locataire sous_locataire NOM s 0.02 0.14 0.02 0.00 +sous-locataires sous_locataire NOM p 0.02 0.14 0.00 0.14 +sous-location sous_location NOM f s 0.09 0.07 0.06 0.07 +sous-locations sous_location NOM f p 0.09 0.07 0.03 0.00 +sous-loua sous_louer VER 0.63 0.47 0.00 0.07 ind:pas:3s; +sous-louait sous_louer VER 0.63 0.47 0.03 0.00 ind:imp:3s; +sous-loue sous_louer VER 0.63 0.47 0.21 0.00 ind:pre:1s;ind:pre:3s; +sous-louer sous_louer VER 0.63 0.47 0.17 0.14 inf; +sous-louerai sous_louer VER 0.63 0.47 0.11 0.00 ind:fut:1s; +sous-louez sous_louer VER 0.63 0.47 0.02 0.00 ind:pre:2p; +sous-louèrent sous_louer VER 0.63 0.47 0.00 0.07 ind:pas:3p; +sous-loué sous_louer VER m s 0.63 0.47 0.08 0.20 par:pas; +sous-maîtresse sous_maîtresse NOM f s 0.07 0.20 0.07 0.20 +sous-main sous_main NOM m s 0.28 1.96 0.28 1.96 +sous-marin sous_marin NOM m s 11.14 6.42 9.07 2.70 +sous-marine sous_marin ADJ f s 4.47 5.00 1.06 1.89 +sous-marines sous_marin ADJ f p 4.47 5.00 0.41 0.88 +sous-marinier sous_marinier NOM m s 0.26 0.00 0.04 0.00 +sous-mariniers sous_marinier NOM m p 0.26 0.00 0.22 0.00 +sous-marins sous_marin NOM m p 11.14 6.42 2.07 3.72 +sous-marque sous_marque NOM f s 0.01 0.14 0.01 0.07 +sous-marques sous_marque NOM f p 0.01 0.14 0.00 0.07 +sous-merde sous_merde NOM f s 0.59 0.14 0.54 0.14 +sous-merdes sous_merde NOM f p 0.59 0.14 0.05 0.00 +sous-ministre sous_ministre NOM m s 0.17 0.07 0.17 0.07 +sous-off sous_off NOM m s 0.14 4.26 0.11 2.16 +sous-officier sous_officier NOM m s 0.65 9.53 0.28 4.80 +sous-officiers sous_officier NOM m p 0.65 9.53 0.36 4.73 +sous-offs sous_off NOM m p 0.14 4.26 0.03 2.09 +sous-ordre sous_ordre NOM m s 0.01 0.61 0.01 0.54 +sous-ordres sous_ordre NOM m p 0.01 0.61 0.00 0.07 +sous-payer sous_payer VER 0.28 0.07 0.04 0.00 inf; +sous-payé sous_payer VER m s 0.28 0.07 0.14 0.07 par:pas; +sous-payés sous_payer VER m p 0.28 0.07 0.10 0.00 par:pas; +sous-pied sous_pied NOM m s 0.00 0.20 0.00 0.07 +sous-pieds sous_pied NOM m p 0.00 0.20 0.00 0.14 +sous-plat sous_plat NOM m s 0.00 0.07 0.00 0.07 +sous-prieur sous_prieur PRE 0.00 0.47 0.00 0.47 +sous-produit sous_produit NOM m s 0.48 0.54 0.42 0.27 +sous-produits sous_produit NOM m p 0.48 0.54 0.06 0.27 +sous-programme sous_programme NOM m s 0.12 0.00 0.09 0.00 +sous-programmes sous_programme NOM m p 0.12 0.00 0.03 0.00 +sous-prolétaire sous_prolétaire NOM s 0.11 0.07 0.11 0.07 +sous-prolétariat sous_prolétariat NOM m s 0.34 0.27 0.34 0.27 +sous-préfecture sous_préfecture NOM f s 0.17 1.62 0.03 1.35 +sous-préfectures sous_préfecture NOM f p 0.17 1.62 0.14 0.27 +sous-préfet sous_préfet NOM m s 0.02 1.01 0.02 0.95 +sous-préfets sous_préfet NOM m p 0.02 1.01 0.00 0.07 +sous-pulls sous_pull NOM m p 0.01 0.00 0.01 0.00 +sous-qualifié sous_qualifié ADJ m s 0.04 0.00 0.03 0.00 +sous-qualifiée sous_qualifié ADJ f s 0.04 0.00 0.01 0.00 +sous-secrétaire sous_secrétaire NOM m s 0.65 1.15 0.65 0.74 +sous-secrétaires sous_secrétaire NOM m p 0.65 1.15 0.00 0.41 +sous-secrétariat sous_secrétariat NOM m s 0.10 0.00 0.10 0.00 +sous-secteur sous_secteur NOM m s 0.02 0.27 0.02 0.27 +sous-section sous_section NOM f s 0.09 0.00 0.09 0.00 +sous-sol sous_sol NOM m s 13.50 10.54 12.80 8.31 +sous-sols sous_sol NOM m p 13.50 10.54 0.70 2.23 +sous-station sous_station NOM f s 0.17 0.07 0.17 0.07 +sous-système sous_système NOM m s 0.04 0.00 0.04 0.00 +sous-tasse sous_tasse NOM f s 0.11 0.20 0.11 0.14 +sous-tasses sous_tasse NOM f p 0.11 0.20 0.00 0.07 +sous-tend sous_tendre VER 0.07 0.54 0.02 0.00 ind:pre:3s; +sous-tendaient sous_tendre VER 0.07 0.54 0.00 0.07 ind:imp:3p; +sous-tendait sous_tendre VER 0.07 0.54 0.01 0.20 ind:imp:3s; +sous-tendent sous_tendre VER 0.07 0.54 0.01 0.14 ind:pre:3p; +sous-tendu sous_tendre VER m s 0.07 0.54 0.03 0.07 par:pas; +sous-tendue sous_tendre VER f s 0.07 0.54 0.00 0.07 par:pas; +sous-tension sous_tension NOM f s 0.03 0.00 0.03 0.00 +sous-titrage sous_titrage NOM m s 54.64 0.00 54.64 0.00 +sous-titre sous_titre NOM m s 23.09 0.95 0.83 0.68 +sous-titrer sous_titrer VER 5.81 0.14 0.01 0.00 inf; +sous-titres sous_titre NOM m p 23.09 0.95 22.26 0.27 +sous-titré sous_titrer VER m s 5.81 0.14 5.72 0.00 par:pas; +sous-titrée sous_titrer VER f s 5.81 0.14 0.00 0.07 par:pas; +sous-titrés sous_titrer VER m p 5.81 0.14 0.09 0.07 par:pas; +sous-traitance sous_traitance NOM f s 0.04 0.00 0.04 0.00 +sous-traitant sous_traitant NOM m s 0.23 0.00 0.10 0.00 +sous-traitants sous_traitant NOM m p 0.23 0.00 0.13 0.00 +sous-traite sous_traiter VER 0.13 0.14 0.04 0.00 ind:pre:3s; +sous-traitent sous_traiter VER 0.13 0.14 0.01 0.00 ind:pre:3p; +sous-traiter sous_traiter VER 0.13 0.14 0.06 0.07 inf; +sous-traités sous_traiter VER m p 0.13 0.14 0.00 0.07 par:pas; +sous-équipés sous_équipé ADJ m p 0.07 0.00 0.07 0.00 +sous-évaluait sous_évaluer VER 0.10 0.00 0.01 0.00 ind:imp:3s; +sous-évalué sous_évaluer VER m s 0.10 0.00 0.06 0.00 par:pas; +sous-évaluées sous_évaluer VER f p 0.10 0.00 0.02 0.00 par:pas; +sous-ventrière sous_ventrière NOM f s 0.03 0.47 0.03 0.47 +sous-verge sous_verge NOM m 0.00 0.54 0.00 0.54 +sous-verre sous_verre NOM m 0.06 0.20 0.06 0.20 +sous-vêtement sous_vêtement NOM m s 6.57 2.77 0.33 0.41 +sous-vêtements sous_vêtement NOM m p 6.57 2.77 6.24 2.36 +soutien-gorge soutien_gorge NOM m s 5.86 8.65 4.89 7.91 +soutiens-gorge soutien_gorge NOM m p 5.86 8.65 0.96 0.74 +souventes fois souventes_fois ADV 0.00 0.27 0.00 0.27 +sparring-partner sparring_partner NOM m s 0.00 0.07 0.00 0.07 +spatio-temporel spatio_temporel ADJ m s 0.21 0.20 0.09 0.07 +spatio-temporelle spatio_temporel ADJ f s 0.21 0.20 0.13 0.14 +spina-bifida spina_bifida NOM m s 0.04 0.00 0.04 0.00 +spina-ventosa spina_ventosa NOM m s 0.00 0.07 0.00 0.07 +sri lankais sri_lankais ADJ m 0.01 0.00 0.01 0.00 +sri lankais sri_lankais NOM m 0.01 0.00 0.01 0.00 +stabat mater stabat_mater NOM m 0.00 0.07 0.00 0.07 +stand-by stand_by NOM m 0.83 0.07 0.83 0.07 +star-system star_system NOM m s 0.01 0.00 0.01 0.00 +start-up start_up NOM f 0.35 0.00 0.35 0.00 +starting-gate starting_gate NOM f s 0.04 0.14 0.04 0.14 +station-service station_service NOM f s 4.22 3.58 3.95 3.24 +station-éclair station_éclair NOM f s 0.00 0.07 0.00 0.07 +stations-service station_service NOM f p 4.22 3.58 0.27 0.34 +statu quo statu_quo NOM m s 0.94 1.08 0.94 1.08 +staturo-pondéral staturo_pondéral ADJ m s 0.01 0.00 0.01 0.00 +steeple-chase steeple_chase NOM m s 0.02 0.07 0.02 0.07 +sterno-cléido-mastoïdien sterno_cléido_mastoïdien ADJ m s 0.01 0.00 0.01 0.00 +sèche-cheveux sèche_cheveux NOM m 0.97 0.00 0.97 0.00 +sèche-linge sèche_linge NOM m 0.74 0.00 0.74 0.00 +sèche-mains sèche_mains NOM m 0.04 0.00 0.04 0.00 +stimulus-réponse stimulus_réponse NOM m 0.00 0.14 0.00 0.14 +stock-car stock_car NOM m s 0.19 0.14 0.16 0.14 +stock-cars stock_car NOM m p 0.19 0.14 0.03 0.00 +stock-options stock_option NOM f p 0.18 0.00 0.18 0.00 +story-board story_board NOM m s 0.28 0.07 0.23 0.00 +story-boards story_board NOM m p 0.28 0.07 0.03 0.00 +story board story_board NOM m s 0.28 0.07 0.03 0.07 +stricto sensu stricto_sensu ADV 0.01 0.00 0.01 0.00 +strip-poker strip_poker NOM m s 0.08 0.07 0.08 0.07 +strip-tease strip_tease NOM m s 4.04 1.01 3.63 0.95 +strip-teases strip_tease NOM m p 4.04 1.01 0.41 0.07 +strip-teaseur strip_teaseur NOM m s 3.23 0.47 0.11 0.00 +strip-teaseurs strip_teaseur NOM m p 3.23 0.47 0.14 0.00 +strip-teaseuse strip_teaseur NOM f s 3.23 0.47 2.98 0.27 +strip-teaseuses strip_teaseuse NOM f p 0.79 0.00 0.79 0.00 +struggle for life struggle_for_life NOM m 0.00 0.07 0.00 0.07 +stylo-bille stylo_bille NOM m s 0.17 0.14 0.17 0.14 +stylo-feutre stylo_feutre NOM m s 0.00 0.27 0.00 0.14 +stylos-feutres stylo_feutre NOM m p 0.00 0.27 0.00 0.14 +sub-aquatique sub_aquatique ADJ f s 0.00 0.07 0.00 0.07 +sub-atomique sub_atomique ADJ s 0.07 0.00 0.04 0.00 +sub-atomiques sub_atomique ADJ p 0.07 0.00 0.04 0.00 +sub-claquant sub_claquant ADJ m s 0.01 0.00 0.01 0.00 +sub-espace sub_espace NOM m s 0.08 0.00 0.08 0.00 +sub-normaux sub_normaux ADJ m p 0.14 0.00 0.14 0.00 +sub-nucléaires sub_nucléaire ADJ f p 0.01 0.00 0.01 0.00 +sub-vocal sub_vocal ADJ m s 0.01 0.07 0.01 0.07 +sub-véhiculaire sub_véhiculaire ADJ s 0.01 0.00 0.01 0.00 +sub-zéro sub_zéro NOM m s 0.01 0.00 0.01 0.00 +sud-africain sud_africain NOM m s 0.28 0.07 0.15 0.00 +sud-africaine sud_africain ADJ f s 0.29 0.47 0.07 0.34 +sud-africaines sud_africain ADJ f p 0.29 0.47 0.04 0.00 +sud-africains sud_africain NOM m p 0.28 0.07 0.10 0.07 +sud-américain sud_américain ADJ m s 0.77 1.55 0.29 0.41 +sud-américaine sud_américain ADJ f s 0.77 1.55 0.35 0.54 +sud-américaines sud_américain ADJ f p 0.77 1.55 0.01 0.20 +sud-américains sud_américain ADJ m p 0.77 1.55 0.11 0.41 +sud-coréen sud_coréen ADJ m s 0.21 0.00 0.01 0.00 +sud-coréen sud_coréen NOM m s 0.01 0.00 0.01 0.00 +sud-coréenne sud_coréen ADJ f s 0.21 0.00 0.15 0.00 +sud-coréennes sud_coréen ADJ f p 0.21 0.00 0.02 0.00 +sud-coréens sud_coréen ADJ m p 0.21 0.00 0.02 0.00 +sud-est sud_est NOM m 3.30 2.30 3.30 2.30 +sud-ouest sud_ouest NOM m 2.10 3.51 2.10 3.51 +sud-sud-est sud_sud_est NOM m s 0.03 0.00 0.03 0.00 +sud-vietnamien sud_vietnamien ADJ m s 0.10 0.07 0.05 0.00 +sud-vietnamienne sud_vietnamien ADJ f s 0.10 0.07 0.03 0.00 +sud-vietnamiens sud_vietnamien NOM m p 0.12 0.20 0.11 0.20 +sui generis sui_generis ADJ m p 0.23 0.07 0.23 0.07 +suivez-moi-jeune-homme suivez_moi_jeune_homme NOM m s 0.00 0.07 0.00 0.07 +sénatus-consulte sénatus_consulte NOM m s 0.00 0.07 0.00 0.07 +super-espion super_espion NOM m s 0.02 0.00 0.02 0.00 +super-grands super_grand NOM m p 0.00 0.07 0.00 0.07 +super-pilote super_pilote ADJ s 0.01 0.00 0.01 0.00 +super-puissances super_puissance NOM f p 0.03 0.00 0.03 0.00 +supports-chaussettes support_chaussette NOM m p 0.00 0.07 0.00 0.07 +supra-humain supra_humain ADJ m s 0.00 0.07 0.00 0.07 +sur-le-champ sur_le_champ ADV 6.79 10.95 6.79 10.95 +sur-mesure sur_mesure NOM m s 0.03 0.00 0.03 0.00 +sur-place sur_place NOM m s 0.20 0.27 0.20 0.27 +surprise-partie surprise_partie NOM f s 0.20 0.61 0.18 0.27 +surprise-party surprise_party NOM f s 0.10 0.07 0.10 0.07 +surprises-parties surprise_partie NOM f p 0.20 0.61 0.02 0.34 +sursum corda sursum_corda ADV 0.00 0.20 0.00 0.20 +sus-orbitaire sus_orbitaire ADJ m s 0.01 0.00 0.01 0.00 +sweat-shirt sweat_shirt NOM m s 0.00 0.20 0.00 0.20 +systèmes-clés systèmes_clé NOM m p 0.03 0.00 0.03 0.00 +t' t_ PRO:per s 4344.23 779.93 4344.23 779.93 +t-shirt t_shirt NOM m s 10.87 0.54 7.59 0.20 +t-shirts t_shirt NOM m p 10.87 0.54 3.28 0.34 +tôt-fait tôt_fait NOM m s 0.00 0.07 0.00 0.07 +taï chi taï_chi NOM m s 0.16 0.00 0.16 0.00 +table-bureau table_bureau NOM f s 0.00 0.07 0.00 0.07 +table-coiffeuse table_coiffeuse NOM f s 0.00 0.27 0.00 0.27 +tai-chi tai_chi NOM m s 0.12 0.00 0.12 0.00 +taille-crayon taille_crayon NOM m s 0.07 0.68 0.04 0.54 +taille-crayons taille_crayon NOM m p 0.07 0.68 0.03 0.14 +taille-douce taille_douce NOM f s 0.00 0.20 0.00 0.14 +taille-haie taille_haie NOM m s 0.07 0.07 0.06 0.00 +taille-haies taille_haie NOM m p 0.07 0.07 0.01 0.07 +tailles-douces taille_douce NOM f p 0.00 0.20 0.00 0.07 +tailleur-pantalon tailleur_pantalon NOM m s 0.01 0.07 0.01 0.07 +take-off take_off NOM m 0.08 0.00 0.08 0.00 +talavera de la reina talavera_de_la_reina NOM s 0.00 0.07 0.00 0.07 +talkie-walkie talkie_walkie NOM m s 1.37 0.20 0.89 0.07 +talkies-walkies talkie_walkie NOM m p 1.37 0.20 0.48 0.14 +tam-tam tam_tam NOM m s 1.06 3.45 0.37 2.77 +tam-tams tam_tam NOM m p 1.06 3.45 0.69 0.68 +tambour-major tambour_major NOM m s 0.26 0.74 0.26 0.74 +tampon-buvard tampon_buvard NOM m s 0.00 0.20 0.00 0.20 +tan-sad tan_sad NOM m s 0.00 0.20 0.00 0.20 +tandis qu tandis_qu CON 0.01 0.07 0.01 0.07 +tandis que tandis_que CON 15.04 136.15 15.04 136.15 +tape-cul tape_cul NOM m s 0.04 0.41 0.04 0.41 +tape-à-l'oeil tape_à_l_oeil ADJ 0.00 0.41 0.00 0.41 +tapis-brosse tapis_brosse NOM m s 0.01 0.14 0.01 0.14 +tard-venu tard_venu ADJ m s 0.00 0.07 0.00 0.07 +tarte-minute tarte_minute ADJ f s 0.01 0.00 0.01 0.00 +taste-vin taste_vin NOM m 0.01 0.14 0.01 0.14 +taxi-auto taxi_auto NOM m s 0.00 0.07 0.00 0.07 +taxi-brousse taxi_brousse NOM m s 0.14 0.14 0.14 0.14 +taxi-girl taxi_girl NOM f s 0.00 0.27 0.00 0.07 +taxi-girls taxi_girl NOM f p 0.00 0.27 0.00 0.20 +tchin-tchin tchin_tchin ONO 0.11 0.14 0.11 0.14 +tchin tchin tchin_tchin ONO 0.01 0.47 0.01 0.47 +te deum te_deum NOM m 0.00 0.14 0.00 0.14 +tea-room tea_room NOM m s 0.00 0.20 0.00 0.20 +technico-commerciaux technico_commerciaux NOM m p 0.00 0.07 0.00 0.07 +tee-shirt tee_shirt NOM m s 3.19 5.27 2.94 3.99 +tee-shirts tee_shirt NOM m p 3.19 5.27 0.25 1.28 +teen-agers teen_ager NOM p 0.00 0.20 0.00 0.20 +tennis-ballon tennis_ballon NOM m 0.00 0.07 0.00 0.07 +tennis-club tennis_club NOM m 0.00 0.34 0.00 0.34 +terra incognita terra_incognita NOM f s 0.02 0.34 0.02 0.34 +terre-neuvas terre_neuvas NOM m 0.00 0.34 0.00 0.34 +terre-neuve terre_neuve NOM m 0.03 0.27 0.03 0.27 +terre-neuvien terre_neuvien ADJ m s 0.01 0.00 0.01 0.00 +terre-neuvien terre_neuvien NOM m s 0.01 0.00 0.01 0.00 +terre-à-terre terre_à_terre ADJ f s 0.00 0.20 0.00 0.20 +terre-plein terre_plein NOM m s 0.20 5.81 0.20 5.74 +terre-pleins terre_plein NOM m p 0.20 5.81 0.00 0.07 +test-match test_match NOM m s 0.01 0.00 0.01 0.00 +teuf-teuf teuf_teuf NOM m s 0.04 0.41 0.04 0.41 +tic-tac tic_tac NOM m 2.52 2.91 2.52 2.91 +tie-break tie_break NOM m s 0.02 0.00 0.02 0.00 +tiens-la-moi tiens_la_moi ADJ:pos m s 0.14 0.00 0.14 0.00 +tiers-monde tiers_monde NOM m s 1.96 0.20 1.96 0.14 +tiers-mondes tiers_monde NOM m p 1.96 0.20 0.00 0.07 +tiers-mondisme tiers_mondisme NOM m s 0.00 0.07 0.00 0.07 +tiers-mondiste tiers_mondiste ADJ f s 0.15 0.20 0.15 0.00 +tiers-mondistes tiers_mondiste ADJ m p 0.15 0.20 0.00 0.20 +tiers-ordre tiers_ordre NOM m 0.00 0.07 0.00 0.07 +tiers-point tiers_point NOM m s 0.00 0.14 0.00 0.14 +tiers-état tiers_état NOM m s 0.03 0.00 0.03 0.00 +timbre-poste timbre_poste NOM m s 0.12 1.28 0.11 0.68 +timbres-poste timbre_poste NOM m p 0.12 1.28 0.01 0.61 +time-sharing time_sharing NOM m s 0.01 0.00 0.01 0.00 +tire-au-cul tire_au_cul NOM m 0.02 0.00 0.02 0.00 +tire-au-flanc tire_au_flanc NOM m 0.51 0.34 0.51 0.34 +tire-botte tire_botte NOM m s 0.01 0.07 0.01 0.07 +tire-bouchon tire_bouchon NOM m s 0.93 2.43 0.90 2.16 +tire-bouchonnaient tire_bouchonner VER 0.02 0.88 0.00 0.14 ind:imp:3p; +tire-bouchonnant tire_bouchonner VER 0.02 0.88 0.00 0.07 par:pre; +tire-bouchonne tire_bouchonner VER 0.02 0.88 0.01 0.27 ind:pre:3s; +tire-bouchonnent tire_bouchonner VER 0.02 0.88 0.01 0.07 ind:pre:3p; +tire-bouchonné tire_bouchonner VER m s 0.02 0.88 0.00 0.27 par:pas; +tire-bouchonnés tire_bouchonner VER m p 0.02 0.88 0.00 0.07 par:pas; +tire-bouchons tire_bouchon NOM m p 0.93 2.43 0.03 0.27 +tire-bouton tire_bouton NOM m s 0.00 0.07 0.00 0.07 +tire-d'aile tire_d_aile NOM f s 0.02 0.00 0.02 0.00 +tire-fesse tire_fesse NOM f s 0.01 0.00 0.01 0.00 +tire-jus tire_jus NOM m 0.00 0.20 0.00 0.20 +tire-laine tire_laine NOM m 0.02 0.07 0.02 0.07 +tire-lait tire_lait NOM m 0.07 0.00 0.07 0.00 +tire-larigot tire_larigot NOM f s 0.00 0.07 0.00 0.07 +tire-ligne tire_ligne NOM m s 0.00 0.34 0.00 0.20 +tire-lignes tire_ligne NOM m p 0.00 0.34 0.00 0.14 +tire-lire tire_lire NOM m 0.00 0.14 0.00 0.14 +tiroir-caisse tiroir_caisse NOM m s 0.49 2.16 0.48 2.03 +tiroirs-caisses tiroir_caisse NOM m p 0.49 2.16 0.01 0.14 +tissu-éponge tissu_éponge NOM m s 0.00 0.41 0.00 0.41 +tohu-bohu tohu_bohu NOM m 0.18 1.42 0.18 1.42 +toi-même toi_même PRO:per s 45.83 11.89 45.83 11.89 +tom-pouce tom_pouce NOM m 0.00 0.54 0.00 0.54 +tom-tom tom_tom NOM m 0.04 0.00 0.04 0.00 +too much too_much ADJ m s 0.19 0.47 0.19 0.47 +top-modèle top_modèle NOM f s 0.22 0.00 0.21 0.00 +top-modèles top_modèle NOM f p 0.22 0.00 0.01 0.00 +top models top_model NOM f p 0.12 0.07 0.12 0.07 +torche-cul torche_cul NOM m s 0.06 0.00 0.06 0.00 +tord-boyaux tord_boyaux NOM m 0.27 0.47 0.27 0.47 +tord-nez tord_nez NOM m s 0.00 0.14 0.00 0.14 +toréador-vedette toréador_vedette NOM m s 0.00 0.07 0.00 0.07 +touche-pipi touche_pipi NOM m 0.35 0.61 0.35 0.61 +touche-touche touche_touche NOM f s 0.01 0.00 0.01 0.00 +tourne-disque tourne_disque NOM m s 0.74 1.35 0.50 0.95 +tourne-disques tourne_disque NOM m p 0.74 1.35 0.24 0.41 +tours-minute tours_minute NOM p 0.00 0.07 0.00 0.07 +tous-terrains tous_terrains ADJ m p 0.00 0.07 0.00 0.07 +tout-fait tout_fait ADJ:ind m s 0.14 0.00 0.11 0.00 +tout-fou tout_fou ADJ m s 0.01 0.00 0.01 0.00 +tout-à-l'égout tout_à_l_égout NOM m 0.00 0.47 0.00 0.47 +tout-paris tout_paris NOM m 0.16 1.01 0.16 1.01 +tout-petit tout_petit NOM m s 0.20 0.74 0.03 0.34 +tout-petits tout_petit NOM m p 0.20 0.74 0.17 0.41 +tout-puissant tout_puissant ADJ m s 7.22 3.65 5.70 2.09 +tout-puissants tout_puissant ADJ m p 7.22 3.65 0.17 0.41 +tout-terrain tout_terrain NOM m s 0.28 0.00 0.28 0.00 +tout-étoile tout_étoile NOM m s 0.01 0.00 0.01 0.00 +tout-venant tout_venant NOM m 0.05 0.74 0.05 0.74 +toute-puissance toute_puissance NOM f 0.08 2.03 0.08 2.03 +toute-puissante tout_puissant ADJ f s 7.22 3.65 1.35 1.15 +toutes-puissantes toute_puissante ADJ f p 0.01 0.14 0.01 0.14 +traîne-misère traîne_misère NOM m 0.01 0.07 0.01 0.07 +traîne-patins traîne_patins NOM m 0.00 0.47 0.00 0.47 +traîne-savate traîne_savate NOM m s 0.01 0.07 0.01 0.07 +traîne-savates traîne_savates NOM m 0.22 0.54 0.22 0.54 +traîne-semelle traîne_semelle NOM s 0.00 0.07 0.00 0.07 +traîne-semelles traîne_semelles NOM m 0.01 0.07 0.01 0.07 +trachée-artère trachée_artère NOM f s 0.02 0.20 0.02 0.20 +traction-avant traction_avant NOM f s 0.00 0.07 0.00 0.07 +trafiquant-espion trafiquant_espion NOM m s 0.00 0.07 0.00 0.07 +tragi-comique tragi_comique ADJ f s 0.00 0.47 0.00 0.34 +tragi-comiques tragi_comique ADJ m p 0.00 0.47 0.00 0.14 +tragi-comédie tragi_comédie NOM f s 0.00 0.27 0.00 0.14 +tragi-comédies tragi_comédie NOM f p 0.00 0.27 0.00 0.14 +train-train train_train NOM m 0.69 1.62 0.69 1.62 +tranche-montagne tranche_montagne NOM m s 0.28 0.07 0.28 0.07 +tranchée-abri tranchée_abri NOM f s 0.00 0.81 0.00 0.74 +tranchées-abris tranchée_abri NOM f p 0.00 0.81 0.00 0.07 +traveller's chèques traveller_s_chèque NOM m p 0.04 0.00 0.04 0.00 +trench-coat trench_coat NOM m s 0.04 1.55 0.04 1.49 +trench-coats trench_coat NOM m p 0.04 1.55 0.00 0.07 +trente-cinq trente_cinq ADJ:num 1.33 11.55 1.33 11.55 +trente-cinquième trente_cinquième ADJ 0.00 0.14 0.00 0.14 +trente-deux trente_deux ADJ:num 0.82 3.58 0.82 3.58 +trente-et-quarante trente_et_quarante NOM m 0.00 0.07 0.00 0.07 +trente-et-un trente_et_un NOM m 0.39 0.07 0.39 0.07 +trente-et-unième trente_et_unième ADJ 0.00 0.07 0.00 0.07 +trente-huit trente_huit ADJ:num 0.64 2.64 0.64 2.64 +trente-huitième trente_huitième ADJ 0.00 0.20 0.00 0.20 +trente-neuf trente_neuf ADJ:num 0.55 2.16 0.55 2.16 +trente-neuvième trente_neuvième ADJ 0.01 0.14 0.01 0.14 +trente-quatre trente_quatre ADJ:num 0.43 1.08 0.43 1.08 +trente-quatrième trente_quatrième ADJ 0.00 0.07 0.00 0.07 +trente-sept trente_sept ADJ:num 0.71 2.23 0.71 2.23 +trente-septième trente_septième ADJ 0.20 0.14 0.20 0.14 +trente-six trente_six ADJ:num 0.55 6.82 0.55 6.82 +trente-sixième trente_sixième ADJ 0.02 0.61 0.02 0.61 +trente-trois trente_trois ADJ:num 0.78 2.36 0.78 2.36 +trente-troisième trente_troisième ADJ 0.00 0.20 0.00 0.20 +trois-deux trois_deux NOM m 0.01 0.00 0.01 0.00 +trois-huit trois_huit NOM m 0.17 0.00 0.17 0.00 +trois-mâts trois_mâts NOM m 0.16 0.47 0.16 0.47 +trois-points trois_points NOM m 0.01 0.00 0.01 0.00 +trois-quarts trois_quarts NOM m 0.59 0.34 0.59 0.34 +trois-quatre trois_quatre NOM m 0.02 0.47 0.02 0.47 +trois-six trois_six NOM m 0.01 0.07 0.01 0.07 +trompe-l'oeil trompe_l_oeil NOM m 0.33 2.43 0.33 2.43 +trop-perçu trop_perçu NOM m s 0.01 0.00 0.01 0.00 +trop-plein trop_plein NOM m s 0.30 2.64 0.30 2.50 +trop-pleins trop_plein NOM m p 0.30 2.64 0.00 0.14 +trotte-menu trotte_menu ADJ m s 0.00 0.41 0.00 0.41 +trou-du-cul trou_du_cul NOM m s 0.43 0.14 0.29 0.14 +trou-trou trou_trou NOM m s 0.00 0.34 0.00 0.14 +trou-trous trou_trou NOM m p 0.00 0.34 0.00 0.20 +trouble-fêtes trouble_fête NOM p 0.28 0.00 0.28 0.00 +trous-du-cul trou_du_cul NOM m p 0.43 0.14 0.14 0.00 +trésorier-payeur trésorier_payeur NOM m s 0.02 0.07 0.02 0.07 +tsoin-tsoin tsoin_tsoin NOM m s 0.01 0.47 0.01 0.47 +tss-tss tss_tss NOM m 0.01 0.14 0.01 0.07 +tss tss tss_tss NOM m 0.01 0.14 0.00 0.07 +tsé-tsé tsé_tsé NOM f 0.00 0.07 0.00 0.07 +tu autem tu_autem NOM m s 0.00 0.07 0.00 0.07 +tue-loup tue_loup NOM m s 0.06 0.00 0.05 0.00 +tue-loups tue_loup NOM m p 0.06 0.00 0.01 0.00 +tue-mouche tue_mouche ADJ m s 0.15 0.54 0.00 0.07 +tue-mouches tue_mouche ADJ p 0.15 0.54 0.15 0.47 +témoin-clé témoin_clé NOM m s 0.13 0.00 0.13 0.00 +témoin-vedette témoin_vedette NOM m s 0.01 0.00 0.01 0.00 +témoins-clés témoins_clé NOM m p 0.05 0.00 0.05 0.00 +tête-bêche tête_bêche NOM m 0.03 0.47 0.03 0.47 +tête-de-mort tête_de_mort NOM f 0.01 0.41 0.01 0.41 +tête-de-nègre tête_de_nègre ADJ 0.00 0.20 0.00 0.20 +tête-à-queue tête_à_queue NOM m 0.00 0.20 0.00 0.20 +tête-à-tête tête_à_tête NOM m 0.00 5.95 0.00 5.95 +têtes-de-loup tête_de_loup NOM f p 0.00 0.27 0.00 0.27 +tutti frutti tutti_frutti ADV 0.09 0.41 0.09 0.41 +tutti quanti tutti_quanti ADV 0.15 0.20 0.15 0.20 +twin-set twin_set NOM m s 0.00 0.14 0.00 0.14 +échos-radars échos_radar NOM m p 0.01 0.00 0.01 0.00 +écrase-merde écrase_merde NOM m s 0.00 0.41 0.00 0.20 +écrase-merdes écrase_merde NOM m p 0.00 0.41 0.00 0.20 +électro-acoustique électro_acoustique NOM f s 0.00 0.14 0.00 0.14 +électro-aimant électro_aimant NOM m s 0.02 0.00 0.02 0.00 +électro-encéphalogramme électro_encéphalogramme NOM m s 0.16 0.07 0.16 0.07 +ultima ratio ultima_ratio NOM f s 0.00 0.07 0.00 0.07 +ultra-catholique ultra_catholique ADJ m s 0.10 0.00 0.10 0.00 +ultra-chic ultra_chic ADJ s 0.03 0.20 0.03 0.14 +ultra-chics ultra_chic ADJ f p 0.03 0.20 0.00 0.07 +ultra-courtes ultra_court ADJ f p 0.16 0.07 0.02 0.00 +ultra-courts ultra_court ADJ m p 0.16 0.07 0.14 0.07 +ultra-gauche ultra_gauche NOM f s 0.00 0.07 0.00 0.07 +ultra-rapide ultra_rapide ADJ s 0.20 0.27 0.20 0.27 +ultra-secret ultra_secret ADJ m s 0.20 0.07 0.20 0.07 +ultra-sensible ultra_sensible ADJ m s 0.01 0.14 0.01 0.14 +ultra-sons ultra_son NOM m p 0.03 0.14 0.03 0.14 +ultra-violet ultra_violet ADJ 0.04 0.07 0.01 0.00 +ultra-violets ultra_violet NOM s 0.04 0.07 0.04 0.07 +élément-clé élément_clé NOM m s 0.09 0.00 0.09 0.00 +éléments-clés éléments_clé NOM m p 0.02 0.00 0.02 0.00 +émetteur-récepteur émetteur_récepteur NOM m s 0.05 0.00 0.05 0.00 +épine-vinette épine_vinette NOM f s 0.00 0.07 0.00 0.07 +épluche-légumes épluche_légumes NOM m 0.01 0.00 0.01 0.00 +urbi et orbi urbi_et_orbi ADV 0.01 0.27 0.01 0.27 +usine-pilote usine_pilote NOM f s 0.00 0.07 0.00 0.07 +état-civil état_civil NOM m s 0.03 0.54 0.03 0.47 +état-major état_major NOM m s 5.24 22.43 5.16 18.31 +états-civils état_civil NOM m p 0.03 0.54 0.00 0.07 +états-majors état_major NOM m p 5.24 22.43 0.09 4.12 +étouffe-chrétien étouffe_chrétien NOM m 0.01 0.00 0.01 0.00 +être-là être_là NOM m 0.14 0.00 0.14 0.00 +va-et-vient va_et_vient NOM m 1.30 10.61 1.30 10.61 +va-tout va_tout NOM m 0.05 0.41 0.05 0.41 +vade retro vade_retro ADV 0.26 0.68 0.26 0.68 +vae soli vae_soli ADV 0.00 0.07 0.00 0.07 +vae victis vae_victis ADV 0.02 0.07 0.02 0.07 +vaisseau-amiral vaisseau_amiral NOM m s 0.05 0.00 0.05 0.00 +valeur-refuge valeur_refuge NOM f s 0.00 0.07 0.00 0.07 +valse-hésitation valse_hésitation NOM f s 0.00 0.27 0.00 0.20 +valses-hésitations valse_hésitation NOM f p 0.00 0.27 0.00 0.07 +vamp-club vamp_club NOM f s 0.01 0.00 0.01 0.00 +vanity-case vanity_case NOM m s 0.11 0.14 0.11 0.14 +vasculo-nerveux vasculo_nerveux NOM m 0.01 0.00 0.01 0.00 +vau-l'eau vau_l_eau NOM m s 0.00 0.14 0.00 0.14 +ventre-saint-gris ventre_saint_gris ONO 0.00 0.07 0.00 0.07 +vert-de-gris vert_de_gris ADJ 0.02 0.81 0.02 0.81 +vert-de-grisé vert_de_grisé ADJ m s 0.00 0.34 0.00 0.07 +vert-de-grisée vert_de_grisé ADJ f s 0.00 0.34 0.00 0.07 +vert-de-grisées vert_de_grisé ADJ f p 0.00 0.34 0.00 0.14 +vert-de-grisés vert_de_grisé ADJ m p 0.00 0.34 0.00 0.07 +vert-galant vert_galant NOM m s 0.00 0.20 0.00 0.20 +vert-jaune vert_jaune ADJ m s 0.02 0.07 0.02 0.07 +vert-jaune vert_jaune NOM m s 0.02 0.07 0.02 0.07 +vesse-de-loup vesse_de_loup NOM f s 0.02 0.20 0.00 0.14 +vesses-de-loup vesse_de_loup NOM f p 0.02 0.20 0.02 0.07 +vibro-masseur vibro_masseur NOM m s 0.08 0.07 0.08 0.07 +vice-amiral vice_amiral NOM m s 0.10 0.61 0.10 0.61 +vice-chancelier vice_chancelier NOM m s 0.07 0.00 0.07 0.00 +vice-consul vice_consul NOM m s 0.18 0.54 0.18 0.54 +vice-ministre vice_ministre NOM s 0.27 0.27 0.27 0.20 +vice-ministres vice_ministre NOM p 0.27 0.27 0.00 0.07 +vice-premier vice_premier NOM m s 0.01 0.00 0.01 0.00 +vice-présidence vice_présidence NOM f s 0.57 0.00 0.57 0.00 +vice-président vice_président NOM m s 8.63 0.61 7.91 0.54 +vice-présidente vice_président NOM f s 8.63 0.61 0.60 0.00 +vice-présidents vice_président NOM m p 8.63 0.61 0.12 0.07 +vice-recteur vice_recteur NOM m s 0.10 0.00 0.10 0.00 +vice-roi vice_roi NOM m s 0.94 0.54 0.84 0.54 +vice-rois vice_roi NOM m p 0.94 0.54 0.10 0.00 +vice-versa vice_versa ADV 0.85 0.27 0.85 0.27 +vide-gousset vide_gousset NOM m s 0.27 0.00 0.27 0.00 +vide-greniers vide_greniers NOM m 0.04 0.00 0.04 0.00 +vide-ordure vide_ordure NOM m s 0.06 0.00 0.06 0.00 +vide-ordures vide_ordures NOM m 0.55 1.22 0.55 1.22 +vide-poche vide_poche NOM m s 0.04 0.14 0.04 0.14 +vide-poches vide_poches NOM m 0.00 0.27 0.00 0.27 +vidéo-clip vidéo_clip NOM m s 0.19 0.27 0.14 0.20 +vidéo-clips vidéo_clip NOM m p 0.19 0.27 0.04 0.07 +vidéo-club vidéo_club NOM f s 0.44 0.00 0.44 0.00 +vidéo-espion vidéo_espion NOM m s 0.00 0.07 0.00 0.07 +vieux-rose vieux_rose ADJ m 0.00 0.20 0.00 0.20 +vif-argent vif_argent NOM m s 0.21 0.20 0.21 0.20 +ville-champignon ville_champignon NOM f s 0.02 0.00 0.02 0.00 +ville-dortoir ville_dortoir NOM f s 0.00 0.07 0.00 0.07 +villes-clés villes_clé NOM f p 0.01 0.00 0.01 0.00 +vingt-cinq vingt_cinq ADJ:num 3.53 28.18 3.53 28.18 +vingt-cinquième vingt_cinquième ADJ 0.01 0.34 0.01 0.34 +vingt-deux vingt_deux ADJ:num 1.25 8.99 1.25 8.99 +vingt-deuxième vingt_deuxième ADJ 0.03 0.27 0.03 0.27 +vingt-et-un vingt_et_un NOM m 0.28 0.74 0.28 0.68 +vingt-et-une vingt_et_un NOM f s 0.28 0.74 0.01 0.07 +vingt-et-unième vingt_et_unième ADJ 0.01 0.07 0.01 0.07 +vingt-huit vingt_huit ADJ:num 0.97 5.34 0.97 5.34 +vingt-huitième vingt_huitième ADJ 0.00 0.74 0.00 0.74 +vingt-neuf vingt_neuf ADJ:num 0.96 2.77 0.96 2.77 +vingt-neuvième vingt_neuvième ADJ 0.01 0.00 0.01 0.00 +vingt-quatre vingt_quatre ADJ:num 2.13 17.36 2.13 17.36 +vingt-quatrième vingt_quatrième ADJ 0.01 0.27 0.01 0.27 +vingt-sept vingt_sept ADJ:num 0.67 4.59 0.67 4.59 +vingt-septième vingt_septième ADJ 0.00 0.54 0.00 0.54 +vingt-six vingt_six ADJ:num 1.09 7.50 1.09 7.50 +vingt-sixième vingt_sixième ADJ 0.01 0.20 0.01 0.20 +vingt-trois vingt_trois ADJ:num 2.08 7.57 2.08 7.57 +vingt-troisième vingt_troisième ADJ 0.01 0.61 0.01 0.61 +vis-à-vis vis_à_vis PRE 0.00 19.39 0.00 19.39 +visite-éclair visite_éclair NOM f s 0.00 0.07 0.00 0.07 +voiture-balai voiture_balai NOM f s 0.23 0.07 0.23 0.00 +voiture-bar voiture_bar NOM f s 0.01 0.00 0.01 0.00 +voiture-lit voiture_lit NOM f s 0.01 0.00 0.01 0.00 +voiture-restaurant voiture_restaurant NOM f s 0.05 0.00 0.05 0.00 +voitures-balais voiture_balai NOM f p 0.23 0.07 0.00 0.07 +voix-off voix_off NOM f 0.04 0.00 0.04 0.00 +vol-au-vent vol_au_vent NOM m 0.02 0.14 0.02 0.14 +volley-ball volley_ball NOM m s 0.25 0.68 0.25 0.68 +volte-face volte_face NOM f 0.26 3.31 0.26 3.31 +vomito negro vomito_negro NOM m s 0.01 0.00 0.01 0.00 +vous-même vous_même PRO:per p 28.20 17.84 28.20 17.84 +vous-mêmes vous_mêmes PRO:per p 4.30 1.55 4.30 1.55 +vox populi vox_populi NOM f 0.05 0.27 0.05 0.27 +voyages-éclair voyage_éclair NOM m p 0.00 0.07 0.00 0.07 +vrai-faux vrai_faux ADJ m s 0.00 0.07 0.00 0.07 +vulgum pecus vulgum_pecus NOM m 0.01 0.07 0.01 0.07 +vélo-cross vélo_cross NOM m 0.00 0.07 0.00 0.07 +vélo-pousse vélo_pousse NOM m s 0.01 0.00 0.01 0.00 +wagon-bar wagon_bar NOM m s 0.03 0.00 0.03 0.00 +wagon-lit wagon_lit NOM m s 1.79 1.89 0.70 0.81 +wagon-lits wagon_lits NOM m 0.00 0.07 0.00 0.07 +wagon-restaurant wagon_restaurant NOM m s 0.35 1.01 0.35 0.81 +wagon-salon wagon_salon NOM m s 0.01 0.54 0.01 0.54 +wagons-citernes wagon_citerne NOM m p 0.00 0.07 0.00 0.07 +wagons-lits wagon_lit NOM m p 1.79 1.89 1.09 1.08 +wagons-restaurants wagon_restaurant NOM m p 0.35 1.01 0.00 0.20 +wait and see wait_and_see NOM m s 0.16 0.00 0.16 0.00 +walkie-talkie walkie_talkie NOM m s 0.08 0.14 0.05 0.14 +walkies-talkies walkie_talkie NOM m p 0.08 0.14 0.03 0.00 +wall street wall_street NOM s 0.03 0.07 0.03 0.07 +water-closet water_closet NOM m s 0.00 0.14 0.00 0.14 +water-polo water_polo NOM m s 0.23 0.00 0.23 0.00 +way of life way_of_life NOM m s 0.02 0.14 0.02 0.14 +week-end week_end NOM m s 44.51 14.32 39.41 12.16 +week-ends week_end NOM m p 44.51 14.32 3.13 2.16 +week end week_end NOM m s 44.51 14.32 1.96 0.00 +western-spaghetti western_spaghetti NOM m 0.00 0.07 0.00 0.07 +whisky-soda whisky_soda NOM m s 0.13 0.07 0.13 0.07 +white-spirit white_spirit NOM m s 0.01 0.00 0.01 0.00 +world music world_music NOM f 0.02 0.00 0.02 0.00 +yacht-club yacht_club NOM m s 0.04 0.07 0.04 0.07 +yeux-radars oeil_radars NOM m p 0.00 0.07 0.00 0.07 +ylang-ylang ylang_ylang NOM m s 0.01 0.00 0.01 0.00 +yo-yo yo_yo NOM m 1.03 0.47 1.03 0.47 +yom kippour yom_kippour NOM m 0.45 0.34 0.45 0.34 +yom kippur yom_kippur NOM m s 0.04 0.00 0.04 0.00 +you-you you_you NOM m s 0.00 0.07 0.00 0.07 +yé-yé yé_yé NOM m 0.00 0.14 0.00 0.14 +zig-zig zig_zig ADV 0.03 0.00 0.03 0.00 +zones-clés zones_clé NOM f p 0.00 0.07 0.00 0.07 diff --git a/dictionnaires/expression.txt.old b/dictionnaires/expression.txt.old new file mode 100644 index 0000000..5d227ac --- /dev/null +++ b/dictionnaires/expression.txt.old @@ -0,0 +1,4608 @@ +a capella a_capella ADV 0.04 0.07 0.04 0.07 +a cappella a_cappella ADV 0.04 0.07 0.04 0.07 +a contrario a_contrario ADV 0.00 0.27 0.00 0.27 +a fortiori a_fortiori ADV 0.04 0.88 0.04 0.88 +a giorno a_giorno ADV 0.00 0.27 0.00 0.27 +a jeun à_jeun ADV 1.45 3.85 0.18 0.00 +a l'instar a_l_instar PRE 0.26 0.00 0.26 0.00 +a posteriori a_posteriori ADV 0.05 0.20 0.01 0.14 +a priori a_priori ADV 1.04 3.85 0.63 2.57 +ab absurdo ab_absurdo ADV 0.00 0.07 0.00 0.07 +ab initio ab_initio ADV 0.01 0.07 0.01 0.07 +ab ovo ab_ovo ADV 0.00 0.27 0.00 0.27 +abaisse-langue abaisse_langue NOM m 0.04 0.14 0.04 0.14 +abat-jour abat_jour NOM m 0.51 8.24 0.51 8.24 +abat-son abat_son NOM m 0.00 0.27 0.00 0.27 +abri-refuge abri_refuge NOM m s 0.00 0.07 0.00 0.07 +accroche-coeur accroche_coeur NOM m s 0.00 0.74 0.00 0.34 +accroche-coeurs accroche_coeur NOM m p 0.00 0.74 0.00 0.41 +acid jazz acid_jazz NOM m s 0.03 0.00 0.03 0.00 +acqua-toffana acqua_toffana NOM f s 0.00 0.07 0.00 0.07 +action painting action_painting NOM f s 0.00 0.07 0.00 0.07 +ad hoc ad_hoc ADJ 0.11 0.81 0.11 0.81 +ad infinitum ad_infinitum ADV 0.05 0.00 0.05 0.00 +ad libitum ad_libitum ADV 0.00 0.14 0.00 0.14 +ad limina ad_limina ADV 0.00 0.07 0.00 0.07 +ad majorem dei gloriam ad_majorem_dei_gloriam ADV 0.00 0.14 0.00 0.14 +ad nutum ad_nutum ADV 0.00 0.07 0.00 0.07 +ad patres ad_patres ADV 0.02 0.27 0.02 0.27 +ad vitam aeternam ad_vitam_aeternam ADV 0.00 0.20 0.00 0.20 +adjudant-chef adjudant_chef NOM m s 2.57 2.70 2.57 2.57 +adjudant-major adjudant_major NOM m s 0.05 0.00 0.05 0.00 +adjudants-chefs adjudant_chef NOM m p 2.57 2.70 0.00 0.14 +afin d afin_d PRE 0.04 0.07 0.04 0.07 +afin de afin_de PRE 15.64 43.18 15.64 43.18 +afin qu afin_qu CON 0.05 0.00 0.05 0.00 +afin que afin_que CON 9.63 14.93 9.63 14.93 +afro-américain afro_américain NOM m s 0.95 0.00 0.48 0.00 +afro-américaine afro_américain ADJ f s 0.67 0.00 0.23 0.00 +afro-américains afro_américain NOM m p 0.95 0.00 0.39 0.00 +afro-asiatique afro_asiatique ADJ f s 0.01 0.00 0.01 0.00 +afro-brésilienne afro_brésilien ADJ f s 0.01 0.00 0.01 0.00 +afro-cubain afro_cubain ADJ m s 0.03 0.07 0.01 0.00 +afro-cubaine afro_cubain ADJ f s 0.03 0.07 0.02 0.00 +afro-cubains afro_cubain ADJ m p 0.03 0.07 0.00 0.07 +after-shave after_shave NOM m 0.51 0.68 0.47 0.61 +after shave after_shave NOM m 0.51 0.68 0.03 0.07 +agar-agar agar_agar NOM m s 0.00 0.07 0.00 0.07 +agit-prop agit_prop NOM f 0.10 0.00 0.10 0.00 +agnus-dei agnus_dei NOM m 0.00 0.07 0.00 0.07 +agnus dei agnus_dei NOM m 0.47 0.14 0.47 0.14 +agro-alimentaire agro_alimentaire ADJ f s 0.15 0.00 0.15 0.00 +aide-bourreau aide_bourreau NOM s 0.00 0.14 0.00 0.14 +aide-comptable aide_comptable NOM m s 0.04 0.07 0.04 0.07 +aide-cuisinier aide_cuisinier NOM m s 0.02 0.14 0.02 0.14 +aide-infirmier aide_infirmier NOM s 0.04 0.00 0.04 0.00 +aide-jardinier aide_jardinier NOM m s 0.01 0.07 0.01 0.07 +aide-major aide_major NOM m 0.00 0.14 0.00 0.14 +aide-mémoire aide_mémoire NOM m 0.04 0.41 0.04 0.41 +aide-ménagère aide_ménagère NOM f s 0.00 0.27 0.00 0.27 +aide-pharmacien aide_pharmacien NOM s 0.00 0.07 0.00 0.07 +aide-soignant aide_soignant NOM m s 0.40 0.27 0.20 0.00 +aide-soignante aide_soignant NOM f s 0.40 0.27 0.12 0.14 +aides-soignantes aide_soignant NOM f p 0.40 0.27 0.00 0.14 +aides-soignants aide_soignant NOM m p 0.40 0.27 0.08 0.00 +aigre-douce aigre_doux ADJ f s 0.29 1.08 0.08 0.54 +aigre-doux aigre_doux ADJ m 0.29 1.08 0.20 0.34 +aigres-douces aigre_douce ADJ f p 0.01 0.20 0.01 0.20 +aigres-doux aigre_doux ADJ m p 0.29 1.08 0.01 0.20 +aigue-marine aigue_marine NOM f s 0.00 0.81 0.00 0.47 +aigues-marines aigue_marine NOM f p 0.00 0.81 0.00 0.34 +air-air air_air ADJ m 0.09 0.00 0.09 0.00 +air-mer air_mer ADJ 0.02 0.00 0.02 0.00 +air-sol air_sol ADJ m p 0.13 0.00 0.13 0.00 +air bag air_bag NOM m s 0.02 0.00 0.02 0.00 +al dente al_dente ADV 0.40 0.14 0.40 0.14 +alea jacta est alea_jacta_est ADV 0.30 0.07 0.30 0.07 +all right all_right ADV 1.53 0.20 1.53 0.20 +aller-retour aller_retour NOM m s 2.33 2.43 1.83 2.36 +allers-retours aller_retour NOM m p 2.33 2.43 0.50 0.07 +allume-cigare allume_cigare NOM m s 0.19 0.14 0.19 0.14 +allume-cigares allume_cigares NOM m 0.14 0.14 0.14 0.14 +allume-feu allume_feu NOM m 0.04 0.27 0.04 0.27 +allume-gaz allume_gaz NOM m 0.20 0.14 0.20 0.14 +alter ego alter_ego NOM m 0.30 0.54 0.30 0.54 +am stram gram am_stram_gram ONO 0.08 0.14 0.08 0.14 +amour-goût amour_goût NOM m s 0.00 0.07 0.00 0.07 +amour-passion amour_passion NOM m s 0.00 0.41 0.00 0.41 +amour-propre amour_propre NOM m s 2.54 6.89 2.54 6.76 +amours-propres amour_propre NOM m p 2.54 6.89 0.00 0.14 +ampli-tuner ampli_tuner NOM m s 0.01 0.00 0.01 0.00 +américano-britannique américano_britannique ADJ s 0.01 0.00 0.01 0.00 +américano-japonaise américano_japonais ADJ f s 0.01 0.00 0.01 0.00 +américano-russe américano_russe ADJ f s 0.01 0.00 0.01 0.00 +américano-soviétique américano_soviétique ADJ m s 0.03 0.00 0.03 0.00 +américano-suédoise américano_suédois ADJ f s 0.01 0.00 0.01 0.00 +amuse-bouche amuse_bouche NOM m 0.05 0.00 0.03 0.00 +amuse-bouches amuse_bouche NOM m p 0.05 0.00 0.02 0.00 +amuse-gueule amuse_gueule NOM m 1.23 0.81 0.53 0.81 +amuse-gueules amuse_gueule NOM m p 1.23 0.81 0.70 0.00 +anarcho-syndicalisme anarcho_syndicalisme NOM m s 0.00 0.07 0.00 0.07 +anarcho-syndicaliste anarcho_syndicaliste ADJ s 0.00 0.14 0.00 0.07 +anarcho-syndicalistes anarcho_syndicaliste ADJ m p 0.00 0.14 0.00 0.07 +anch'io son pittore anch_io_son_pittore ADV 0.00 0.07 0.00 0.07 +anglo-albanais anglo_albanais ADJ m s 0.00 0.07 0.00 0.07 +anglo-allemand anglo_allemand ADJ m s 0.01 0.00 0.01 0.00 +anglo-américain anglo_américain ADJ m s 0.05 0.20 0.01 0.07 +anglo-américaine anglo_américain ADJ f s 0.05 0.20 0.02 0.07 +anglo-américaines anglo_américain ADJ f p 0.05 0.20 0.00 0.07 +anglo-américains anglo_américain ADJ m p 0.05 0.20 0.02 0.00 +anglo-arabe anglo_arabe ADJ s 0.00 0.27 0.00 0.14 +anglo-arabes anglo_arabe ADJ m p 0.00 0.27 0.00 0.14 +anglo-chinois anglo_chinois ADJ m s 0.01 0.00 0.01 0.00 +anglo-français anglo_français ADJ m s 0.02 0.14 0.01 0.07 +anglo-française anglo_français ADJ f s 0.02 0.14 0.01 0.07 +anglo-hellénique anglo_hellénique ADJ f s 0.00 0.07 0.00 0.07 +anglo-irlandais anglo_irlandais ADJ m s 0.00 0.27 0.00 0.27 +anglo-normand anglo_normand ADJ m s 0.04 0.34 0.00 0.14 +anglo-normande anglo_normand ADJ f s 0.04 0.34 0.00 0.20 +anglo-normandes anglo_normand ADJ f p 0.04 0.34 0.04 0.00 +anglo-russe anglo_russe ADJ m s 0.02 0.00 0.01 0.00 +anglo-russes anglo_russe ADJ f p 0.02 0.00 0.01 0.00 +anglo-saxon anglo_saxon ADJ m s 0.48 4.12 0.23 1.08 +anglo-saxonne anglo_saxon ADJ f s 0.48 4.12 0.04 0.74 +anglo-saxonnes anglo_saxon ADJ f p 0.48 4.12 0.18 0.88 +anglo-saxons anglo_saxon ADJ m p 0.48 4.12 0.03 1.42 +anglo-soviétique anglo_soviétique ADJ s 0.02 0.07 0.02 0.07 +anglo-égyptien anglo_égyptien ADJ m s 0.01 0.41 0.00 0.20 +anglo-égyptienne anglo_égyptien ADJ f s 0.01 0.41 0.01 0.20 +anglo-éthiopien anglo_éthiopien ADJ m s 0.00 0.07 0.00 0.07 +animal-roi animal_roi NOM m s 0.00 0.07 0.00 0.07 +animaux-espions animaux_espions NOM m p 0.01 0.00 0.01 0.00 +année-lumière année_lumière NOM f s 1.16 1.01 0.03 0.07 +années-homme année_homme NOM f p 0.01 0.00 0.01 0.00 +années-lumière année_lumière NOM f p 1.16 1.01 1.13 0.95 +anti-acné anti_acné NOM f s 0.02 0.00 0.02 0.00 +anti-agression anti_agression NOM f s 0.03 0.07 0.03 0.07 +anti-allergie anti_allergie NOM f s 0.01 0.00 0.01 0.00 +anti-anatomique anti_anatomique ADJ s 0.01 0.00 0.01 0.00 +anti-apartheid anti_apartheid NOM m s 0.00 0.07 0.00 0.07 +anti-aphrodisiaque anti_aphrodisiaque ADJ f s 0.00 0.07 0.00 0.07 +anti-asthmatique anti_asthmatique NOM s 0.01 0.00 0.01 0.00 +anti-atomique anti_atomique ADJ m s 0.06 0.07 0.05 0.00 +anti-atomiques anti_atomique ADJ m p 0.06 0.07 0.01 0.07 +anti-aérien anti_aérien ADJ m s 0.41 0.27 0.20 0.07 +anti-aérienne anti_aérien ADJ f s 0.41 0.27 0.17 0.07 +anti-aériens anti_aérien ADJ m p 0.41 0.27 0.04 0.14 +anti-avortement anti_avortement NOM m s 0.12 0.00 0.12 0.00 +anti-beauf anti_beauf NOM m s 0.01 0.00 0.01 0.00 +anti-bison anti_bison NOM m s 0.00 0.07 0.00 0.07 +anti-blindage anti_blindage NOM m s 0.04 0.00 0.04 0.00 +anti-blouson anti_blouson NOM m s 0.00 0.07 0.00 0.07 +anti-bombe anti_bombe NOM f s 0.10 0.07 0.09 0.00 +anti-bombes anti_bombe NOM f p 0.10 0.07 0.01 0.07 +anti-bosons anti_boson NOM m p 0.04 0.00 0.04 0.00 +anti-braquage anti_braquage NOM m s 0.01 0.00 0.01 0.00 +anti-brouillard anti_brouillard ADJ s 0.12 0.00 0.12 0.00 +anti-bruit anti_bruit NOM m s 0.16 0.00 0.16 0.00 +anti-calciques anti_calcique ADJ f p 0.01 0.00 0.01 0.00 +anti-cancer anti_cancer NOM m s 0.04 0.00 0.04 0.00 +anti-capitaliste anti_capitaliste ADJ m s 0.03 0.00 0.03 0.00 +anti-castriste anti_castriste ADJ s 0.02 0.00 0.02 0.00 +anti-castristes anti_castriste NOM p 0.01 0.00 0.01 0.00 +anti-cellulite anti_cellulite NOM f s 0.01 0.00 0.01 0.00 +anti-chambre anti_chambre NOM f s 0.00 0.14 0.00 0.07 +anti-chambres anti_chambre NOM f p 0.00 0.14 0.00 0.07 +anti-char anti_char NOM m s 0.12 0.20 0.00 0.14 +anti-chars anti_char NOM m p 0.12 0.20 0.12 0.07 +anti-chiens anti_chien NOM m p 0.00 0.07 0.00 0.07 +anti-cité anti_cité NOM f s 0.00 0.07 0.00 0.07 +anti-civilisation anti_civilisation NOM f s 0.00 0.07 0.00 0.07 +anti-club anti_club NOM m s 0.02 0.00 0.02 0.00 +anti-cocos anti_coco NOM p 0.01 0.00 0.01 0.00 +anti-colère anti_colère NOM f s 0.01 0.00 0.01 0.00 +anti-communisme anti_communisme NOM m s 0.00 0.14 0.00 0.14 +anti-communiste anti_communiste ADJ s 0.03 0.07 0.03 0.07 +anti-conformisme anti_conformisme NOM m s 0.01 0.14 0.01 0.14 +anti-conformiste anti_conformiste NOM s 0.01 0.00 0.01 0.00 +anti-conglutinatif anti_conglutinatif ADJ m s 0.00 0.07 0.00 0.07 +anti-corps anti_corps NOM m 0.08 0.00 0.08 0.00 +anti-corruption anti_corruption NOM f s 0.04 0.00 0.04 0.00 +anti-crash anti_crash NOM m s 0.01 0.00 0.01 0.00 +anti-crime anti_crime NOM m s 0.03 0.00 0.03 0.00 +anti-criminalité anti_criminalité NOM f s 0.01 0.00 0.01 0.00 +anti-célibataires anti_célibataire ADJ f p 0.01 0.00 0.01 0.00 +anti-dauphins anti_dauphin NOM m p 0.01 0.00 0.01 0.00 +anti-desperado anti_desperado NOM m s 0.01 0.00 0.01 0.00 +anti-dieu anti_dieu NOM m s 0.03 0.00 0.03 0.00 +anti-discrimination anti_discrimination NOM f s 0.02 0.00 0.02 0.00 +anti-dopage anti_dopage NOM m s 0.06 0.00 0.06 0.00 +anti-douleur anti_douleur NOM f s 0.46 0.00 0.30 0.00 +anti-douleurs anti_douleur NOM f p 0.46 0.00 0.15 0.00 +anti-drague anti_drague NOM f s 0.01 0.00 0.01 0.00 +anti-dramatique anti_dramatique ADJ s 0.00 0.07 0.00 0.07 +anti-drogue anti_drogue NOM f s 0.42 0.00 0.35 0.00 +anti-drogues anti_drogue NOM f p 0.42 0.00 0.07 0.00 +anti-débauche anti_débauche NOM f s 0.00 0.07 0.00 0.07 +anti-démocratique anti_démocratique ADJ f s 0.14 0.07 0.14 0.07 +anti-démocratiques anti_démocratique ADJ f p 0.14 0.07 0.01 0.00 +anti-démon anti_démon NOM m s 0.04 0.00 0.04 0.00 +anti-espionnes anti_espionne NOM f p 0.01 0.00 0.01 0.00 +anti-establishment anti_establishment NOM m s 0.02 0.00 0.02 0.00 +anti-existence anti_existence NOM f s 0.00 0.07 0.00 0.07 +anti-explosion anti_explosion NOM f s 0.04 0.00 0.04 0.00 +anti-fantômes anti_fantôme NOM m p 0.02 0.00 0.02 0.00 +anti-fasciste anti_fasciste ADJ f s 0.02 0.00 0.02 0.00 +anti-femme anti_femme NOM f s 0.01 0.00 0.01 0.00 +anti-flingage anti_flingage NOM m s 0.00 0.07 0.00 0.07 +anti-flip anti_flip NOM m s 0.00 0.07 0.00 0.07 +anti-frigo anti_frigo NOM m s 0.00 0.07 0.00 0.07 +anti-féministe anti_féministe NOM s 0.03 0.07 0.03 0.07 +anti-fusionnel anti_fusionnel ADJ m s 0.01 0.00 0.01 0.00 +anti-fusées anti_fusée NOM f p 0.00 0.20 0.00 0.20 +anti-g anti_g ADJ f p 0.01 0.00 0.01 0.00 +anti-gang anti_gang NOM m s 0.33 0.00 0.33 0.00 +anti-gel anti_gel NOM m s 0.05 0.00 0.05 0.00 +anti-gerce anti_gerce NOM f s 0.01 0.00 0.01 0.00 +anti-gouvernement anti_gouvernement NOM m s 0.10 0.00 0.10 0.00 +anti-graffiti anti_graffiti NOM m 0.01 0.00 0.01 0.00 +anti-gravité anti_gravité NOM f s 0.06 0.00 0.06 0.00 +anti-grimaces anti_grimace NOM f p 0.01 0.00 0.01 0.00 +anti-gros anti_gros ADJ m 0.01 0.00 0.01 0.00 +anti-hannetons anti_hanneton NOM m p 0.00 0.07 0.00 0.07 +anti-hypertenseur anti_hypertenseur ADJ m s 0.01 0.00 0.01 0.00 +anti-immigration anti_immigration NOM f s 0.02 0.00 0.02 0.00 +anti-immigrés anti_immigré ADJ p 0.00 0.07 0.00 0.07 +anti-impérialiste anti_impérialiste ADJ s 0.11 0.07 0.11 0.07 +anti-incendie anti_incendie NOM m s 0.16 0.00 0.16 0.00 +anti-inertie anti_inertie NOM f s 0.01 0.00 0.01 0.00 +anti-infectieux anti_infectieux ADJ m p 0.01 0.00 0.01 0.00 +anti-inflammatoire anti_inflammatoire NOM m s 0.07 0.07 0.07 0.07 +anti-insecte anti_insecte NOM m s 0.03 0.07 0.01 0.00 +anti-insectes anti_insecte NOM m p 0.03 0.07 0.02 0.07 +anti-instinct anti_instinct NOM m s 0.00 0.07 0.00 0.07 +anti-insurrectionnel anti_insurrectionnel ADJ m s 0.01 0.00 0.01 0.00 +anti-intimité anti_intimité NOM f s 0.04 0.00 0.04 0.00 +anti-japon anti_japon NOM m s 0.00 0.07 0.00 0.07 +anti-jeunes anti_jeunes ADJ m s 0.00 0.07 0.00 0.07 +anti-mafia anti_mafia NOM f s 0.01 0.07 0.01 0.07 +anti-maison anti_maison NOM f s 0.00 0.14 0.00 0.14 +anti-manipulation anti_manipulation NOM f s 0.01 0.00 0.01 0.00 +anti-manoir anti_manoir NOM m s 0.00 0.07 0.00 0.07 +anti-mariage anti_mariage NOM m s 0.03 0.00 0.03 0.00 +anti-matière anti_matière NOM f s 0.09 0.00 0.08 0.00 +anti-matières anti_matière NOM f p 0.09 0.00 0.01 0.00 +anti-mecs anti_mec NOM m p 0.02 0.00 0.02 0.00 +anti-militariste anti_militariste NOM s 0.01 0.00 0.01 0.00 +anti-missiles anti_missile NOM m p 0.03 0.00 0.03 0.00 +anti-mite anti_mite NOM f s 0.10 0.14 0.03 0.07 +anti-mites anti_mite NOM f p 0.10 0.14 0.08 0.07 +anti-monde anti_monde NOM m s 0.00 0.07 0.00 0.07 +anti-monstres anti_monstre ADJ f p 0.01 0.00 0.01 0.00 +anti-moustique anti_moustique NOM m s 0.58 0.07 0.41 0.00 +anti-moustiques anti_moustique NOM m p 0.58 0.07 0.17 0.07 +anti-médicaments anti_médicament NOM m p 0.01 0.00 0.01 0.00 +anti-métaphysique anti_métaphysique ADJ m s 0.00 0.07 0.00 0.07 +anti-météorites anti_météorite NOM f p 0.20 0.00 0.20 0.00 +anti-nausée anti_nausée NOM f s 0.01 0.00 0.01 0.00 +anti-navire anti_navire NOM m s 0.01 0.00 0.01 0.00 +anti-nucléaire anti_nucléaire ADJ m s 0.06 0.00 0.05 0.00 +anti-nucléaires anti_nucléaire ADJ p 0.06 0.00 0.01 0.00 +anti-nucléaires anti_nucléaire NOM m p 0.01 0.00 0.01 0.00 +anti-odeur anti_odeur NOM f s 0.02 0.14 0.01 0.07 +anti-odeurs anti_odeur NOM f p 0.02 0.14 0.01 0.07 +anti-odorants anti_odorant ADJ m p 0.00 0.07 0.00 0.07 +anti-âge anti_âge ADJ 0.04 0.74 0.04 0.74 +anti-origine anti_origine NOM f s 0.00 0.07 0.00 0.07 +anti-panache anti_panache NOM m s 0.00 0.07 0.00 0.07 +anti-particule anti_particule NOM f s 0.01 0.00 0.01 0.00 +anti-pasteur anti_pasteur NOM m s 0.00 0.07 0.00 0.07 +anti-patriote anti_patriote NOM s 0.01 0.00 0.01 0.00 +anti-patriotique anti_patriotique ADJ f s 0.06 0.00 0.06 0.00 +anti-pelliculaire anti_pelliculaire ADJ m s 0.13 0.07 0.13 0.07 +anti-piratage anti_piratage NOM m s 0.01 0.00 0.01 0.00 +anti-pirate anti_pirate ADJ s 0.01 0.00 0.01 0.00 +anti-poison anti_poison NOM m s 0.04 0.14 0.04 0.14 +anti-poisse anti_poisse NOM f s 0.05 0.07 0.05 0.07 +anti-pollution anti_pollution NOM f s 0.04 0.00 0.04 0.00 +anti-poux anti_poux NOM m p 0.04 0.00 0.04 0.00 +anti-progressistes anti_progressiste NOM p 0.00 0.07 0.00 0.07 +anti-psychotique anti_psychotique ADJ s 0.01 0.00 0.01 0.00 +anti-pub anti_pub NOM s 0.00 0.07 0.00 0.07 +anti-puces anti_puce NOM f p 0.14 0.00 0.14 0.00 +anti-pédérastiques anti_pédérastique ADJ p 0.00 0.07 0.00 0.07 +anti-racket anti_racket NOM m s 0.06 0.00 0.06 0.00 +anti-radiations anti_radiation NOM f p 0.08 0.00 0.08 0.00 +anti-rapt anti_rapt NOM m s 0.00 0.07 0.00 0.07 +anti-reflets anti_reflet NOM m p 0.00 0.07 0.00 0.07 +anti-rejet anti_rejet NOM m s 0.20 0.00 0.20 0.00 +anti-religion anti_religion NOM f s 0.01 0.00 0.01 0.00 +anti-rhume anti_rhume NOM m s 0.02 0.00 0.02 0.00 +anti-rides anti_ride NOM f p 0.06 0.00 0.06 0.00 +anti-romain anti_romain NOM m s 0.00 0.07 0.00 0.07 +anti-romantique anti_romantique ADJ s 0.01 0.00 0.01 0.00 +anti-rouille anti_rouille NOM f s 0.01 0.00 0.01 0.00 +anti-russe anti_russe ADJ m s 0.11 0.00 0.11 0.00 +anti-sida anti_sida NOM m s 0.02 0.00 0.02 0.00 +anti-socialistes anti_socialiste ADJ p 0.01 0.00 0.01 0.00 +anti-sociaux anti_sociaux ADJ m p 0.04 0.00 0.04 0.00 +anti-société anti_société NOM f s 0.00 0.07 0.00 0.07 +anti-somnolence anti_somnolence NOM f s 0.01 0.00 0.01 0.00 +anti-souffle anti_souffle NOM m s 0.03 0.00 0.03 0.00 +anti-sous-marin anti_sous_marin ADJ m s 0.02 0.00 0.02 0.00 +anti-soviétique anti_soviétique ADJ f s 0.00 0.07 0.00 0.07 +anti-sèche anti_sèche ADJ f s 0.01 0.07 0.01 0.00 +anti-sèches anti_sèche ADJ f p 0.01 0.07 0.00 0.07 +anti-stress anti_stress NOM m 0.35 0.00 0.35 0.00 +anti-sémite anti_sémite ADJ s 0.04 0.00 0.02 0.00 +anti-sémites anti_sémite ADJ f p 0.04 0.00 0.02 0.00 +anti-sémitisme anti_sémitisme NOM m s 0.08 0.00 0.08 0.00 +anti-syndical anti_syndical ADJ m s 0.01 0.00 0.01 0.00 +anti-tabac anti_tabac ADJ s 0.17 0.00 0.17 0.00 +anti-taches anti_tache NOM f p 0.15 0.00 0.15 0.00 +anti-tank anti_tank NOM m s 0.03 0.00 0.03 0.00 +anti-tapisserie anti_tapisserie NOM f s 0.00 0.07 0.00 0.07 +anti-temps anti_temps NOM m 0.00 0.27 0.00 0.27 +anti-tension anti_tension NOM f s 0.01 0.00 0.01 0.00 +anti-terrorisme anti_terrorisme NOM m s 0.53 0.00 0.53 0.00 +anti-terroriste anti_terroriste ADJ s 0.26 0.00 0.26 0.00 +anti-tornades anti_tornade NOM f p 0.01 0.00 0.01 0.00 +anti-toux anti_toux NOM f 0.01 0.00 0.01 0.00 +anti-truie anti_truie NOM f s 0.01 0.00 0.01 0.00 +anti-trusts anti_trust NOM m p 0.02 0.00 0.02 0.00 +anti-émeute anti_émeute ADJ s 0.15 0.00 0.10 0.00 +anti-émeutes anti_émeute ADJ p 0.15 0.00 0.05 0.00 +anti-émotionnelle anti_émotionnelle ADJ f s 0.00 0.07 0.00 0.07 +anti-évasion anti_évasion NOM f s 0.01 0.00 0.01 0.00 +anti-venin anti_venin NOM m s 0.18 0.00 0.18 0.00 +anti-vieillissement anti_vieillissement NOM m s 0.04 0.00 0.04 0.00 +anti-viol anti_viol NOM m s 0.09 0.00 0.09 0.00 +anti-violence anti_violence NOM f s 0.01 0.00 0.01 0.00 +anti-viral anti_viral ADJ m s 0.13 0.00 0.13 0.00 +anti-virus anti_virus NOM m 0.09 0.00 0.09 0.00 +anti-vol anti_vol NOM m s 0.36 0.27 0.35 0.27 +anti-vols anti_vol NOM m p 0.36 0.27 0.01 0.00 +appareil-photo appareil_photo NOM m s 0.32 0.27 0.32 0.27 +appartement-roi appartement_roi NOM m s 0.00 0.07 0.00 0.07 +apprenti-pilote apprenti_pilote NOM m s 0.02 0.00 0.02 0.00 +apprenti-sorcier apprenti_sorcier NOM m s 0.00 0.14 0.00 0.14 +appui-main appui_main NOM m s 0.00 0.14 0.00 0.14 +appui-tête appui_tête NOM m s 0.01 0.00 0.01 0.00 +appuie-tête appuie_tête NOM m 0.05 0.14 0.05 0.14 +après-coup après_coup NOM m s 0.02 0.00 0.02 0.00 +après-dîner après_dîner NOM m s 0.02 0.74 0.02 0.61 +après-dîners après_dîner NOM m p 0.02 0.74 0.00 0.14 +après-demain après_demain ADV 11.77 6.76 11.77 6.76 +après-déjeuner après_déjeuner VER 0.00 0.14 0.00 0.14 inf; +après-guerre après_guerre NOM s 0.73 3.24 0.73 3.24 +après-mort après_mort NOM f s 0.00 0.07 0.00 0.07 +après-rasage après_rasage NOM m s 0.45 0.00 0.45 0.00 +après-repas après_repas NOM m 0.01 0.07 0.01 0.07 +après-shampoing après_shampoing NOM m s 0.04 0.00 0.04 0.00 +après-shampooing après_shampooing NOM m s 0.04 0.07 0.04 0.07 +après-ski après_ski NOM m s 0.06 0.20 0.06 0.20 +après-vente après_vente ADJ s 0.05 0.00 0.05 0.00 +araignée-crabe araignée_crabe NOM f s 0.00 0.07 0.00 0.07 +arbres-refuges arbres_refuge NOM m p 0.00 0.07 0.00 0.07 +arc-bouta arc_bouter VER 0.17 5.00 0.00 0.47 ind:pas:3s; +arc-boutais arc_bouter VER 0.17 5.00 0.04 0.27 ind:imp:1s;ind:imp:2s; +arc-boutait arc_bouter VER 0.17 5.00 0.00 0.34 ind:imp:3s; +arc-boutant arc_boutant NOM m s 0.14 0.54 0.14 0.20 +arc-boutants arc_boutant NOM m p 0.14 0.54 0.01 0.00 +arc-boute arc_bouter VER 0.17 5.00 0.10 0.88 ind:pre:1s;ind:pre:3s; +arc-boutement arc_boutement NOM m s 0.00 0.07 0.00 0.07 +arc-boutent arc_bouter VER 0.17 5.00 0.01 0.20 ind:pre:3p; +arc-bouter arc_bouter VER 0.17 5.00 0.00 0.07 inf; +arc-boutera arc_bouter VER 0.17 5.00 0.01 0.00 ind:fut:3s; +arc-boutèrent arc_bouter VER 0.17 5.00 0.00 0.07 ind:pas:3p; +arc-bouté arc_bouter VER m s 0.17 5.00 0.01 1.15 par:pas; +arc-boutée arc_bouter VER f s 0.17 5.00 0.00 0.41 par:pas; +arc-boutées arc_bouter VER f p 0.17 5.00 0.00 0.27 par:pas; +arc-boutés arc_bouter VER m p 0.17 5.00 0.00 0.27 par:pas; +arc-en-ciel arc_en_ciel NOM m s 3.00 4.46 2.56 3.92 +archi-blet archi_blet ADJ m s 0.00 0.07 0.00 0.07 +archi-chiants archi_chiant ADJ m p 0.01 0.00 0.01 0.00 +archi-connu archi_connu ADJ m s 0.01 0.07 0.01 0.00 +archi-connus archi_connu ADJ m p 0.01 0.07 0.00 0.07 +archi-duchesse archiduc NOM f s 0.48 4.46 0.01 0.00 +archi-dégueu archi_dégueu ADJ s 0.00 0.07 0.00 0.07 +archi-faux archi_faux ADJ m 0.05 0.00 0.05 0.00 +archi-libre archi_libre ADJ f s 0.00 0.07 0.00 0.07 +archi-mortels archi_mortels NOM m 0.01 0.00 0.01 0.00 +archi-morts archi_mort NOM f p 0.00 0.07 0.00 0.07 +archi-méfiance archi_méfiance NOM f s 0.00 0.07 0.00 0.07 +archi-nul archi_nul NOM m s 0.01 0.00 0.01 0.00 +archi-nuls archi_nuls NOM m 0.23 0.00 0.23 0.00 +archi-plein archi_plein NOM m s 0.00 0.07 0.00 0.07 +archi-prouvé archi_prouvé ADJ m s 0.00 0.07 0.00 0.07 +archi-prudent archi_prudent NOM m s 0.00 0.07 0.00 0.07 +archi-ringard archi_ringard NOM m s 0.00 0.07 0.00 0.07 +archi-sophistiquée archi_sophistiqué ADJ f s 0.01 0.00 0.01 0.00 +archi-sèches archi_sèche ADJ f p 0.01 0.00 0.01 0.00 +archi-usé archi_usé ADJ m s 0.01 0.00 0.01 0.00 +archi-vieux archi_vieux ADJ m 0.00 0.07 0.00 0.07 +archiviste-paléographe archiviste_paléographe NOM s 0.00 0.14 0.00 0.07 +archivistes-paléographes archiviste_paléographe NOM p 0.00 0.14 0.00 0.07 +arcs-boutants arc_boutant NOM m p 0.14 0.54 0.00 0.34 +arcs-en-ciel arc_en_ciel NOM m p 3.00 4.46 0.44 0.54 +arme-miracle arme_miracle NOM f s 0.10 0.00 0.10 0.00 +arrache-clou arrache_clou NOM m s 0.00 0.07 0.00 0.07 +arrière-automne arrière_automne NOM m 0.00 0.14 0.00 0.14 +arrière-ban arrière_ban NOM m s 0.00 0.20 0.00 0.20 +arrière-boutique arrière_boutique NOM f s 0.31 6.35 0.31 5.95 +arrière-boutiques arrière_boutique NOM f p 0.31 6.35 0.00 0.41 +arrière-cabinets arrière_cabinet NOM m p 0.00 0.07 0.00 0.07 +arrière-cour arrière_cour NOM f s 0.45 1.35 0.41 1.01 +arrière-cours arrière_cour NOM f p 0.45 1.35 0.03 0.34 +arrière-cousin arrière_cousin NOM m s 0.12 0.00 0.12 0.00 +arrière-cuisine arrière_cuisine NOM f s 0.02 0.14 0.02 0.07 +arrière-cuisines arrière_cuisine NOM f p 0.02 0.14 0.00 0.07 +arrière-fond arrière_fond NOM m s 0.04 0.95 0.04 0.95 +arrière-garde arrière_garde NOM f s 0.47 2.03 0.47 1.69 +arrière-gardes arrière_garde NOM f p 0.47 2.03 0.00 0.34 +arrière-goût arrière_goût NOM m s 0.55 1.28 0.55 1.22 +arrière-goûts arrière_goût NOM m p 0.55 1.28 0.00 0.07 +arrière-gorge arrière_gorge NOM f s 0.00 0.27 0.00 0.27 +arrière-grand-mère arrière_grand_mère NOM f s 0.85 2.57 0.83 2.30 +arrière-grand-mères arrière_grand_mère NOM f p 0.85 2.57 0.00 0.20 +arrière-grand-oncle arrière_grand_oncle NOM m s 0.04 0.41 0.04 0.41 +arrière-grand-père arrière_grand_père NOM m s 1.48 4.12 1.48 3.78 +arrière-grand-tante arrière_grand_tante NOM f s 0.00 0.20 0.00 0.14 +arrière-grand-tantes arrière_grand_tante NOM f p 0.00 0.20 0.00 0.07 +arrière-grands-mères arrière_grand_mère NOM f p 0.85 2.57 0.02 0.07 +arrière-grands-parents arrière_grand_parent NOM m p 0.16 1.08 0.16 1.08 +arrière-grands-pères arrière_grand_père NOM m p 1.48 4.12 0.00 0.34 +arrière-loge arrière_loge NOM m s 0.00 0.07 0.00 0.07 +arrière-magasin arrière_magasin NOM m 0.00 0.07 0.00 0.07 +arrière-main arrière_main NOM s 0.00 0.07 0.00 0.07 +arrière-monde arrière_monde NOM m s 0.00 0.14 0.00 0.14 +arrière-neveux arrière_neveux NOM m p 0.00 0.07 0.00 0.07 +arrière-pays arrière_pays NOM m 0.37 1.15 0.37 1.15 +arrière-pensée arrière_pensée NOM f s 0.91 5.95 0.79 3.58 +arrière-pensées arrière_pensée NOM f p 0.91 5.95 0.13 2.36 +arrière-petit-fils arrière_petit_fils NOM m 0.14 0.61 0.14 0.61 +arrière-petit-neveu arrière_petit_neveu NOM m s 0.01 0.27 0.01 0.27 +arrière-petite-fille arrière_petite_fille NOM f s 0.13 0.81 0.13 0.47 +arrière-petite-nièce arrière_petite_nièce NOM f s 0.00 0.14 0.00 0.07 +arrière-petites-filles arrière_petite_fille NOM f p 0.13 0.81 0.00 0.34 +arrière-petites-nièces arrière_petite_nièce NOM f p 0.00 0.14 0.00 0.07 +arrière-petits-enfants arrière_petit_enfant NOM m p 0.36 0.27 0.36 0.27 +arrière-petits-fils arrière_petits_fils NOM m p 0.00 0.41 0.00 0.41 +arrière-petits-neveux arrière_petits_neveux NOM m p 0.00 0.07 0.00 0.07 +arrière-plan arrière_plan NOM m s 0.94 2.70 0.91 2.03 +arrière-plans arrière_plan NOM m p 0.94 2.70 0.02 0.68 +arrière-saison arrière_saison NOM f s 0.00 1.22 0.00 1.22 +arrière-salle arrière_salle NOM f s 0.28 2.36 0.24 2.16 +arrière-salles arrière_salle NOM f p 0.28 2.36 0.04 0.20 +arrière-train arrière_train NOM m s 0.66 1.69 0.64 1.62 +arrière-trains arrière_train NOM m p 0.66 1.69 0.03 0.07 +arrêt-buffet arrêt_buffet NOM m s 0.01 0.07 0.00 0.07 +arrête-boeuf arrête_boeuf NOM m s 0.00 0.07 0.00 0.07 +arrêts-buffet arrêt_buffet NOM m p 0.01 0.07 0.01 0.00 +article-choc article_choc NOM m s 0.00 0.07 0.00 0.07 +artiste-peintre artiste_peintre NOM s 0.02 0.14 0.02 0.14 +as-rois as_rois NOM m 0.01 0.00 0.01 0.00 +aspirateurs-traîneaux aspirateurs_traîneaux NOM m p 0.00 0.07 0.00 0.07 +assa-foetida assa_foetida NOM f s 0.27 0.00 0.27 0.00 +assurance-accidents assurance_accidents NOM f s 0.10 0.00 0.10 0.00 +assurance-chômage assurance_chômage NOM f s 0.01 0.00 0.01 0.00 +assurance-maladie assurance_maladie NOM f s 0.04 0.07 0.04 0.07 +assurance-vie assurance_vie NOM f s 1.32 0.27 1.26 0.27 +assurances-vie assurance_vie NOM f p 1.32 0.27 0.06 0.00 +assureur-conseil assureur_conseil NOM m s 0.00 0.07 0.00 0.07 +attaché-case attaché_case NOM m s 0.01 0.54 0.00 0.54 +attachés-cases attaché_case NOM m p 0.01 0.54 0.01 0.00 +attraction-vedette attraction_vedette NOM f s 0.01 0.00 0.01 0.00 +attrape-couillon attrape_couillon NOM m s 0.04 0.07 0.03 0.00 +attrape-couillons attrape_couillon NOM m p 0.04 0.07 0.01 0.07 +attrape-mouche attrape_mouche NOM m s 0.04 0.07 0.01 0.00 +attrape-mouches attrape_mouche NOM m p 0.04 0.07 0.03 0.07 +attrape-nigaud attrape_nigaud NOM m s 0.10 0.20 0.10 0.20 +au-dedans au_dedans ADV 0.92 4.86 0.92 4.86 +au-dehors au_dehors ADV 0.91 11.42 0.91 11.42 +au-delà au_delà ADV 21.77 52.91 21.77 52.91 +au-dessous au_dessous ADV 2.98 24.59 2.98 24.59 +au-dessus au_dessus PRE 0.02 0.07 0.02 0.07 +au-devant au_devant ADV 0.98 11.08 0.98 11.08 +audio-visuel audio_visuel ADJ m s 0.06 0.20 0.06 0.20 +audio-visuelle audiovisuel ADJ f s 0.88 0.27 0.00 0.14 +aujourd'hui aujourd_hui ADV 360.17 158.38 360.17 158.38 +aéro-club aéro_club NOM m s 0.01 0.07 0.01 0.07 +austro-hongrois austro_hongrois ADJ m s 0.05 0.41 0.05 0.27 +austro-hongroises austro_hongrois ADJ f p 0.05 0.41 0.00 0.14 +auto-adhésive auto_adhésif ADJ f s 0.00 0.07 0.00 0.07 +auto-analyse auto_analyse NOM f s 0.02 0.07 0.02 0.07 +auto-immun auto_immun ADJ m s 0.12 0.00 0.01 0.00 +auto-immune auto_immun ADJ f s 0.12 0.00 0.10 0.00 +auto-intoxication auto_intoxication NOM f s 0.00 0.14 0.00 0.14 +auto-pilote auto_pilote NOM s 0.10 0.00 0.10 0.00 +auto-stop auto_stop NOM m s 1.06 0.74 1.06 0.74 +auto-stoppeur auto_stoppeur NOM m s 0.63 0.20 0.28 0.00 +auto-stoppeurs auto_stoppeur NOM m p 0.63 0.20 0.27 0.00 +auto-stoppeuse auto_stoppeur NOM f s 0.63 0.20 0.08 0.07 +auto-stoppeuses auto_stoppeuse NOM f p 0.04 0.00 0.04 0.00 +auto-tamponneuse auto_tamponneuse NOM f s 0.26 0.00 0.04 0.00 +auto-tamponneuses auto_tamponneuse NOM f p 0.26 0.00 0.22 0.00 +auto-école auto_école NOM f s 0.58 0.07 0.58 0.07 +auto-érotisme auto_érotisme NOM m s 0.02 0.00 0.02 0.00 +automobile-club automobile_club NOM f s 0.03 0.00 0.03 0.00 +aux aguets aux_aguets ADV 0.87 5.88 0.87 5.88 +avant-avant-dernier avant_avant_dernier NOM m s 0.00 0.07 0.00 0.07 +avant-bec avant_bec NOM m s 0.01 0.00 0.01 0.00 +avant-bras avant_bras NOM m 0.84 12.70 0.84 12.70 +avant-centre avant_centre NOM m s 0.28 0.20 0.28 0.20 +avant-clous avant_clou NOM m p 0.00 0.07 0.00 0.07 +avant-corps avant_corps NOM m 0.00 0.07 0.00 0.07 +avant-coureur avant_coureur ADJ m s 0.32 1.62 0.02 0.74 +avant-coureurs avant_coureur ADJ m p 0.32 1.62 0.29 0.88 +avant-courrière avant_courrier ADJ f s 0.00 0.07 0.00 0.07 +avant-courrières avant_courrier NOM f p 0.00 0.07 0.00 0.07 +avant-cours avant_cour NOM f p 0.00 0.07 0.00 0.07 +avant-dîner avant_dîner NOM m 0.00 0.07 0.00 0.07 +avant-dernier avant_dernier ADJ m s 0.45 1.96 0.11 0.88 +avant-dernière avant_dernier ADJ f s 0.45 1.96 0.34 1.08 +avant-garde avant_garde NOM f s 1.52 7.91 1.52 7.09 +avant-gardes avant_garde NOM f p 1.52 7.91 0.00 0.81 +avant-gardiste avant_gardiste ADJ s 0.23 0.20 0.21 0.14 +avant-gardistes avant_gardiste ADJ m p 0.23 0.20 0.03 0.07 +avant-gauche avant_gauche ADJ 0.10 0.00 0.10 0.00 +avant-goût avant_goût NOM m s 1.25 1.62 1.25 1.62 +avant-guerre avant_guerre NOM s 0.65 7.16 0.65 7.16 +avant-hier avant_hier ADV 6.69 8.78 6.69 8.78 +avant-monts avant_mont NOM m p 0.01 0.00 0.01 0.00 +avant-papier avant_papier NOM m s 0.00 0.20 0.00 0.20 +avant-plan avant_plan NOM m s 0.02 0.07 0.02 0.07 +avant-port avant_port NOM m s 0.00 0.07 0.00 0.07 +avant-poste avant_poste NOM m s 2.15 3.72 1.52 0.27 +avant-postes avant_poste NOM m p 2.15 3.72 0.62 3.45 +avant-première avant_première NOM f s 0.50 0.41 0.45 0.41 +avant-premières avant_première NOM f p 0.50 0.41 0.05 0.00 +avant-printemps avant_printemps NOM m 0.00 0.07 0.00 0.07 +avant-projet avant_projet NOM m s 0.04 0.00 0.04 0.00 +avant-propos avant_propos NOM m 0.05 0.41 0.05 0.41 +avant-scène avant_scène NOM f s 0.73 0.88 0.73 0.68 +avant-scènes avant_scène NOM f p 0.73 0.88 0.00 0.20 +avant-toit avant_toit NOM m s 0.03 0.27 0.01 0.27 +avant-toits avant_toit NOM m p 0.03 0.27 0.02 0.00 +avant-train avant_train NOM m s 0.02 0.34 0.01 0.20 +avant-trains avant_train NOM m p 0.02 0.34 0.01 0.14 +avant-trou avant_trou NOM m s 0.01 0.00 0.01 0.00 +avant-veille avant_veille NOM f s 0.01 3.65 0.01 3.65 +aveugle-né aveugle_né NOM m s 0.00 0.14 0.00 0.07 +aveugle-née aveugle_né NOM f s 0.00 0.14 0.00 0.07 +avion-cargo avion_cargo NOM m s 0.20 0.14 0.20 0.00 +avion-citerne avion_citerne NOM m s 0.03 0.00 0.03 0.00 +avion-suicide avion_suicide NOM m s 0.01 0.07 0.01 0.07 +avion-école avion_école NOM m s 0.01 0.00 0.01 0.00 +avions-cargos avion_cargo NOM m p 0.20 0.14 0.00 0.14 +avions-espions avions_espions NOM m p 0.01 0.00 0.01 0.00 +avocat-conseil avocat_conseil NOM m s 0.08 0.00 0.08 0.00 +ayants droit ayants_droit NOM m p 0.01 0.14 0.01 0.14 +aye-aye aye_aye NOM m s 0.01 0.00 0.01 0.00 +baby-boom baby_boom NOM m s 0.05 0.00 0.05 0.00 +baby-foot baby_foot NOM m 0.55 0.74 0.55 0.74 +baby-sitter baby_sitter NOM f s 7.85 0.20 7.00 0.14 +baby-sitters baby_sitter NOM f p 7.85 0.20 0.85 0.07 +baby-sitting baby_sitting NOM m s 1.63 0.41 1.63 0.41 +bachi-bouzouk bachi_bouzouk NOM m s 0.00 0.07 0.00 0.07 +back up back_up NOM m s 0.09 0.00 0.09 0.00 +bain-marie bain_marie NOM m s 0.08 0.95 0.08 0.88 +bains-marie bain_marie NOM m p 0.08 0.95 0.00 0.07 +baise-en-ville baise_en_ville NOM m s 0.03 0.20 0.03 0.20 +balai-brosse balai_brosse NOM m s 0.40 0.61 0.29 0.34 +balais-brosses balai_brosse NOM m p 0.40 0.61 0.11 0.27 +ball-trap ball_trap NOM m s 0.20 0.14 0.20 0.14 +balle-peau balle_peau ONO 0.00 0.07 0.00 0.07 +ballon-sonde ballon_sonde NOM m s 0.14 0.00 0.14 0.00 +banc-titre banc_titre NOM m s 0.14 0.00 0.14 0.00 +bande-annonce bande_annonce NOM f s 0.51 0.00 0.41 0.00 +bande-son bande_son NOM f s 0.09 0.27 0.09 0.27 +bandes-annonces bande_annonce NOM f p 0.51 0.00 0.10 0.00 +bank-note bank_note NOM f s 0.00 0.20 0.00 0.07 +bank-notes bank_note NOM f p 0.00 0.20 0.00 0.14 +bar-hôtel bar_hôtel NOM m s 0.01 0.00 0.01 0.00 +bar-mitsva bar_mitsva NOM f 0.41 0.07 0.41 0.07 +bar-restaurant bar_restaurant NOM m s 0.00 0.07 0.00 0.07 +bar-tabac bar_tabac NOM m s 0.03 0.61 0.03 0.61 +barbe-de-capucin barbe_de_capucin NOM f s 0.00 0.07 0.00 0.07 +bas-bleu bas_bleu NOM m s 0.01 0.47 0.01 0.34 +bas-bleus bas_bleu NOM m p 0.01 0.47 0.00 0.14 +bas-côté bas_côté NOM m s 0.60 5.34 0.58 3.58 +bas-côtés bas_côté NOM m p 0.60 5.34 0.02 1.76 +bas-empire bas_empire NOM m 0.00 0.07 0.00 0.07 +bas-flanc bas_flanc NOM m 0.00 0.14 0.00 0.14 +bas-fond bas_fond NOM m s 1.05 3.72 0.02 1.62 +bas-fonds bas_fond NOM m p 1.05 3.72 1.03 2.09 +bas-relief bas_relief NOM m s 0.09 1.22 0.08 0.34 +bas-reliefs bas_relief NOM m p 0.09 1.22 0.01 0.88 +bas-ventre bas_ventre NOM m s 0.23 2.30 0.23 2.30 +base-ball base_ball NOM m s 10.12 1.28 10.12 1.28 +basket-ball basket_ball NOM m s 1.38 0.34 1.38 0.34 +basse-cour basse_cour NOM f s 0.81 3.85 0.57 3.65 +basse-fosse basse_fosse NOM f s 0.01 0.20 0.01 0.14 +basse-taille basse_taille NOM f s 0.00 0.14 0.00 0.14 +basses-cours basse_cour NOM f p 0.81 3.85 0.23 0.20 +basses-fosses basse_fosse NOM f p 0.01 0.20 0.00 0.07 +bat-flanc bat_flanc NOM m 0.00 2.84 0.00 2.84 +bat-l'eau bat_l_eau NOM m s 0.00 0.07 0.00 0.07 +bateau-citerne bateau_citerne NOM m s 0.03 0.00 0.03 0.00 +bateau-lavoir bateau_lavoir NOM m s 0.00 0.20 0.00 0.14 +bateau-mouche bateau_mouche NOM m s 0.01 0.74 0.01 0.34 +bateau-pilote bateau_pilote NOM m s 0.01 0.00 0.01 0.00 +bateau-pompe bateau_pompe NOM m s 0.00 0.07 0.00 0.07 +bateaux-lavoirs bateau_lavoir NOM m p 0.00 0.20 0.00 0.07 +bateaux-mouches bateau_mouche NOM m p 0.01 0.74 0.00 0.41 +battle-dress battle_dress NOM m 0.00 0.14 0.00 0.14 +be-bop be_bop NOM m 0.31 0.34 0.31 0.34 +beat generation beat_generation NOM f s 0.00 0.14 0.00 0.14 +beau-fils beau_fils NOM m 1.29 1.01 1.27 1.01 +beau-frère beau_frère NOM m s 13.14 15.68 9.13 8.65 +beau-papa beau_papa NOM m s 0.23 0.14 0.23 0.14 +beau-parent beau_parent NOM m s 0.01 0.00 0.01 0.00 +beau-père beau_père NOM m s 16.54 14.05 9.29 7.09 +beaux-arts beaux_arts NOM m p 2.19 3.38 2.19 3.38 +beaux-enfants beaux_enfants NOM m p 0.06 0.00 0.06 0.00 +beaux-fils beau_fils NOM m p 1.29 1.01 0.03 0.00 +beaux-frères beau_frère NOM m p 13.14 15.68 0.62 1.01 +beaux-parents beaux_parents NOM m p 1.52 1.22 1.52 1.22 +bec-de-cane bec_de_cane NOM m s 0.01 1.42 0.01 1.42 +bec-de-lièvre bec_de_lièvre NOM m s 0.10 0.61 0.10 0.61 +bel canto bel_canto NOM m 0.26 0.41 0.26 0.41 +belle-doche belle_doche NOM f s 0.05 0.07 0.05 0.07 +belle-famille belle_famille NOM f s 0.71 1.22 0.71 1.15 +belle-fille belle_fille NOM f s 3.32 2.57 3.29 2.50 +belle-maman belle_maman NOM f s 0.85 0.34 0.85 0.34 +belle-mère beau_père NOM f s 16.54 14.05 7.17 6.82 +belle-à-voir belle_à_voir NOM f s 0.00 0.27 0.00 0.27 +belle-soeur beau_frère NOM f s 13.14 15.68 3.36 5.47 +belle lurette belle_lurette NOM f s 0.75 2.64 0.75 2.64 +belles-de-jour belle_de_jour NOM f p 0.00 0.07 0.00 0.07 +belles-de-nuit belle_de_nuit NOM f p 0.00 0.34 0.00 0.34 +belles-familles belle_famille NOM f p 0.71 1.22 0.00 0.07 +belles-filles belle_fille NOM f p 3.32 2.57 0.04 0.07 +belles-lettres belle_lettre NOM f p 0.00 0.41 0.00 0.41 +belles-mères beau_père NOM f p 16.54 14.05 0.08 0.14 +belles-soeurs beau_frère NOM f p 13.14 15.68 0.04 0.54 +bernard-l'ermite bernard_l_ermite NOM m 0.00 0.34 0.00 0.34 +bernard-l'hermite bernard_l_hermite NOM m 0.01 0.14 0.01 0.14 +best-seller best_seller NOM m s 1.09 0.81 0.82 0.54 +best-sellers best_seller NOM m p 1.09 0.81 0.27 0.27 +best of best_of NOM m s 0.17 0.00 0.17 0.00 +bien-aimé bien_aimé NOM m s 8.50 4.66 4.51 1.89 +bien-aimée bien_aimé NOM f s 8.50 4.66 3.76 2.43 +bien-aimées bien_aimé ADJ f p 8.19 4.39 0.04 0.20 +bien-aimés bien_aimé ADJ m p 8.19 4.39 0.68 0.54 +bien-disants bien_disant ADJ m p 0.00 0.07 0.00 0.07 +bien-fonds bien_fonds NOM m 0.00 0.07 0.00 0.07 +bien-fondé bien_fondé NOM m s 0.31 0.81 0.31 0.81 +bien-manger bien_manger NOM m 0.00 0.14 0.00 0.14 +bien-pensant bien_pensant ADJ m s 0.06 2.16 0.01 1.28 +bien-pensante bien_pensant ADJ f s 0.06 2.16 0.02 0.47 +bien-pensants bien_pensant ADJ m p 0.06 2.16 0.03 0.41 +bien-portant bien_portant ADJ m s 0.03 0.41 0.00 0.14 +bien-portants bien_portant ADJ m p 0.03 0.41 0.03 0.27 +bien-être bien_être NOM m 4.28 8.78 4.28 8.78 +big-bang big_bang NOM m 0.03 0.41 0.03 0.41 +big band big_band NOM m 0.05 0.00 0.05 0.00 +big bang big_bang NOM m 0.38 1.62 0.38 1.62 +bin's bin_s NOM m 0.03 0.00 0.03 0.00 +binet-simon binet_simon NOM m s 0.00 0.07 0.00 0.07 +bip-bip bip_bip NOM m s 0.47 0.00 0.47 0.00 +birth control birth_control NOM m 0.01 0.14 0.01 0.14 +bisou-éclair bisou_éclair NOM m s 0.01 0.00 0.01 0.00 +bla-bla-bla bla_bla_bla NOM m 0.41 0.34 0.41 0.34 +bla-bla bla_bla NOM m 1.51 1.49 1.11 1.49 +bla bla bla_bla NOM m 1.51 1.49 0.40 0.00 +black-bass black_bass NOM m 0.00 0.07 0.00 0.07 +black-jack black_jack NOM m s 0.75 0.00 0.75 0.00 +black-out black_out NOM m 1.00 0.88 1.00 0.88 +blanc-bec blanc_bec NOM m s 1.50 0.61 1.39 0.47 +blanc-bleu blanc_bleu NOM m s 0.16 0.41 0.16 0.41 +blanc-gris blanc_gris ADJ m s 0.00 0.07 0.00 0.07 +blanc-seing blanc_seing NOM m s 0.01 0.27 0.01 0.27 +blancs-becs blanc_bec NOM m p 1.50 0.61 0.12 0.14 +blancs-manteaux blancs_manteaux ADJ m p 0.00 0.07 0.00 0.07 +bleu-ciel bleu_ciel ADJ m s 0.00 0.07 0.00 0.07 +bleu-noir bleu_noir ADJ 0.01 1.01 0.01 1.01 +bleu-roi bleu_roi NOM m s 0.02 0.00 0.02 0.00 +bleu-vert bleu_vert ADJ 0.13 0.47 0.13 0.47 +bloc-cylindres bloc_cylindres NOM m 0.01 0.00 0.01 0.00 +bloc-moteur bloc_moteur NOM m s 0.01 0.00 0.01 0.00 +bloc-notes bloc_notes NOM m 0.47 0.61 0.47 0.61 +blocs-notes blocs_notes NOM m p 0.07 0.07 0.07 0.07 +bloody mary bloody_mary NOM m s 1.32 0.20 1.32 0.20 +blue-jean blue_jean NOM m s 0.17 2.03 0.05 1.08 +blue-jeans blue_jean NOM m p 0.17 2.03 0.10 0.95 +blue jeans blue_jean NOM m p 0.17 2.03 0.01 0.00 +blue note blue_note NOM f s 0.02 0.00 0.02 0.00 +boîtes-repas boîtes_repas NOM f p 0.00 0.07 0.00 0.07 +boat people boat_people NOM m 0.02 0.07 0.02 0.07 +body-building body_building NOM m s 0.01 0.00 0.01 0.00 +bombes-test bombes_test NOM f p 0.01 0.00 0.01 0.00 +bon-papa bon_papa NOM m s 0.07 1.55 0.07 1.55 +bonheur-du-jour bonheur_du_jour NOM m s 0.02 0.14 0.02 0.07 +bonheurs-du-jour bonheur_du_jour NOM m p 0.02 0.14 0.00 0.07 +bonne-maman bonne_maman NOM f s 0.14 2.03 0.14 2.03 +bons-cadeaux bon_cadeaux ADV 0.01 0.00 0.01 0.00 +bons-chrétiens bon_chrétien NOM m p 0.00 0.07 0.00 0.07 +boogie-woogie boogie_woogie NOM m s 0.28 0.07 0.28 0.07 +borne-fontaine borne_fontaine NOM f s 0.00 0.20 0.00 0.07 +bornes-fontaines borne_fontaine NOM f p 0.00 0.20 0.00 0.14 +bossa-nova bossa_nova NOM f s 0.12 0.07 0.12 0.07 +bouche-à-bouche bouche_à_bouche NOM m 0.00 0.20 0.00 0.20 +bouche-à-oreille bouche_à_oreille NOM m s 0.00 0.07 0.00 0.07 +bouche-trou bouche_trou NOM m s 0.25 0.07 0.22 0.07 +bouche-trous bouche_trou NOM m p 0.25 0.07 0.03 0.00 +boui-boui boui_boui NOM m s 0.39 0.27 0.35 0.27 +bouis-bouis boui_boui NOM m p 0.39 0.27 0.04 0.00 +boulanger-pâtissier boulanger_pâtissier NOM m s 0.00 0.14 0.00 0.14 +boule-de-neige boule_de_neige NOM f s 0.07 0.00 0.07 0.00 +boulot-refuge boulot_refuge ADJ m s 0.00 0.07 0.00 0.07 +bourre-mou bourre_mou NOM m s 0.01 0.00 0.01 0.00 +bourre-pif bourre_pif NOM m s 0.04 0.07 0.04 0.07 +bout-dehors bout_dehors NOM m 0.00 0.20 0.00 0.20 +bout-rimé bout_rimé NOM m s 0.14 0.07 0.14 0.00 +boute-en-train boute_en_train NOM m 0.39 0.74 0.39 0.74 +boutique-cadeaux boutique_cadeaux NOM f s 0.02 0.00 0.02 0.00 +bouton-d'or bouton_d_or NOM m s 0.01 0.20 0.00 0.14 +bouton-pression bouton_pression NOM m s 0.04 0.14 0.02 0.07 +boutons-d'or bouton_d_or NOM m p 0.01 0.20 0.01 0.07 +boutons-pression bouton_pression NOM m p 0.04 0.14 0.02 0.07 +bouts-rimés bout_rimé NOM m p 0.14 0.07 0.00 0.07 +bow-window bow_window NOM m s 0.00 0.54 0.00 0.27 +bow-windows bow_window NOM m p 0.00 0.54 0.00 0.27 +box-calf box_calf NOM m s 0.00 0.27 0.00 0.27 +box-office box_office NOM m s 0.35 0.20 0.35 0.14 +box-offices box_office NOM m p 0.35 0.20 0.00 0.07 +boxer-short boxer_short NOM m s 0.05 0.07 0.05 0.07 +boy-friend boy_friend NOM m s 0.00 0.14 0.00 0.14 +boy-scout boy_scout NOM m s 2.09 1.62 0.86 0.68 +boy-scoutesque boy_scoutesque ADJ f s 0.00 0.07 0.00 0.07 +boy-scouts boy_scout NOM m p 2.09 1.62 1.22 0.95 +brûle-gueule brûle_gueule NOM m s 0.00 0.41 0.00 0.41 +bracelet-montre bracelet_montre NOM m s 0.00 2.70 0.00 1.76 +bracelets-montres bracelet_montre NOM m p 0.00 2.70 0.00 0.95 +brain-trust brain_trust NOM m s 0.03 0.07 0.03 0.07 +branle-bas branle_bas NOM m 0.29 1.82 0.29 1.82 +brasserie-hôtel brasserie_hôtel NOM f s 0.00 0.07 0.00 0.07 +break-down break_down NOM m 0.00 0.14 0.00 0.14 +bric-à-brac bric_à_brac NOM m 0.00 3.24 0.00 3.24 +bric et de broc bric_et_de_broc ADV 0.03 0.47 0.03 0.47 +brigadier-chef brigadier_chef NOM m s 0.01 1.96 0.01 1.82 +brigadiers-chefs brigadier_chef NOM m p 0.01 1.96 0.00 0.14 +brise-bise brise_bise NOM m 0.00 0.41 0.00 0.41 +brise-fer brise_fer NOM m 0.01 0.00 0.01 0.00 +brise-glace brise_glace NOM m 0.07 0.20 0.07 0.20 +brise-jet brise_jet NOM m 0.00 0.07 0.00 0.07 +brise-lame brise_lame NOM m s 0.00 0.14 0.00 0.14 +brise-vent brise_vent NOM m 0.01 0.00 0.01 0.00 +broncho-pneumonie broncho_pneumonie NOM f s 0.00 0.41 0.00 0.41 +broncho-pneumopathie broncho_pneumopathie NOM f s 0.01 0.07 0.01 0.07 +brown sugar brown_sugar NOM m 0.00 0.07 0.00 0.07 +brèche-dents brèche_dent NOM p 0.00 0.07 0.00 0.07 +bubble-gum bubble_gum NOM m s 0.08 0.07 0.07 0.07 +bubble gum bubble_gum NOM m s 0.08 0.07 0.01 0.00 +bébés-éprouvette bébé_éprouvette NOM m p 0.01 0.00 0.01 0.00 +bucco-génital bucco_génital ADJ m s 0.11 0.00 0.06 0.00 +bucco-génitales bucco_génital ADJ f p 0.11 0.00 0.02 0.00 +bucco-génitaux bucco_génital ADJ m p 0.11 0.00 0.02 0.00 +buen retiro buen_retiro NOM m 0.00 0.14 0.00 0.14 +buisson-ardent buisson_ardent NOM m s 0.01 0.00 0.01 0.00 +bull-dog bull_dog NOM m s 0.01 0.68 0.01 0.61 +bull-dogs bull_dog NOM m p 0.01 0.68 0.00 0.07 +bull-finch bull_finch NOM m s 0.00 0.14 0.00 0.14 +bull-terrier bull_terrier NOM m s 0.02 0.00 0.02 0.00 +by-pass by_pass NOM m 0.03 0.00 0.03 0.00 +by night by_night ADJ m s 0.25 0.41 0.25 0.41 +bye-bye bye_bye ONO 2.36 0.34 2.36 0.34 +c'est-à-dire c_est_à_dire ADV 0.00 52.03 0.00 52.03 +côtes-du-rhône côtes_du_rhône NOM m s 0.00 0.47 0.00 0.47 +cache-brassière cache_brassière NOM m 0.00 0.07 0.00 0.07 +cache-cache cache_cache NOM m 3.42 2.70 3.42 2.70 +cache-coeur cache_coeur NOM s 0.00 0.14 0.00 0.14 +cache-col cache_col NOM m 0.01 1.35 0.01 1.35 +cache-corset cache_corset NOM m 0.00 0.14 0.00 0.14 +cache-nez cache_nez NOM m 0.15 2.09 0.15 2.09 +cache-pot cache_pot NOM m s 0.16 0.81 0.16 0.41 +cache-pots cache_pot NOM m p 0.16 0.81 0.00 0.41 +cache-poussière cache_poussière NOM m 0.01 0.20 0.01 0.20 +cache-sexe cache_sexe NOM m 0.03 0.27 0.03 0.27 +cache-tampon cache_tampon NOM m 0.00 0.20 0.00 0.20 +café-concert café_concert NOM m s 0.00 0.47 0.00 0.34 +café-crème café_crème NOM m s 0.00 0.95 0.00 0.95 +café-hôtel café_hôtel NOM m s 0.00 0.07 0.00 0.07 +café-restaurant café_restaurant NOM m s 0.00 0.41 0.00 0.41 +café-tabac café_tabac NOM m s 0.00 1.22 0.00 1.22 +café-théâtre café_théâtre NOM m s 0.00 0.27 0.00 0.27 +cafés-concerts café_concert NOM m p 0.00 0.47 0.00 0.14 +cahin-caha cahin_caha ADV 0.00 1.08 0.00 1.08 +cake-walk cake_walk NOM m s 0.03 0.00 0.03 0.00 +cale-pied cale_pied NOM m s 0.00 0.34 0.00 0.07 +cale-pieds cale_pied NOM m p 0.00 0.34 0.00 0.27 +call-girl call_girl NOM f s 1.36 0.14 0.98 0.14 +call-girls call_girl NOM f p 1.36 0.14 0.09 0.00 +call girl call_girl NOM f s 1.36 0.14 0.25 0.00 +call girls call_girl NOM f p 1.36 0.14 0.03 0.00 +camion-benne camion_benne NOM m s 0.06 0.14 0.03 0.00 +camion-citerne camion_citerne NOM m s 0.70 0.47 0.62 0.34 +camion-grue camion_grue NOM m s 0.00 0.14 0.00 0.14 +camions-bennes camion_benne NOM m p 0.06 0.14 0.03 0.14 +camions-citernes camion_citerne NOM m p 0.70 0.47 0.08 0.14 +camping-car camping_car NOM m s 1.06 0.00 1.01 0.00 +camping-cars camping_car NOM m p 1.06 0.00 0.05 0.00 +camping-gaz camping_gaz NOM m 0.00 0.47 0.00 0.47 +caméra-espion caméra_espion NOM f s 0.01 0.00 0.01 0.00 +canadian river canadian_river NOM s 0.00 0.07 0.00 0.07 +canapé-lit canapé_lit NOM m s 0.02 1.15 0.00 1.15 +canapés-lits canapé_lit NOM m p 0.02 1.15 0.02 0.00 +canne-épée canne_épée NOM f s 0.01 0.54 0.01 0.34 +cannes-épées canne_épée NOM f p 0.01 0.54 0.00 0.20 +cap-hornier cap_hornier NOM m s 0.00 0.07 0.00 0.07 +capital-risque capital_risque NOM m s 0.04 0.00 0.04 0.00 +caporal-chef caporal_chef NOM m s 0.52 0.54 0.52 0.54 +caput mortuum caput_mortuum NOM m s 0.00 0.07 0.00 0.07 +cardinal-archevêque cardinal_archevêque NOM m s 0.02 0.07 0.02 0.07 +cardinal-légat cardinal_légat NOM m s 0.00 0.07 0.00 0.07 +cardio-pulmonaire cardio_pulmonaire ADJ s 0.07 0.00 0.07 0.00 +cardio-respiratoire cardio_respiratoire ADJ f s 0.10 0.00 0.10 0.00 +cardio-vasculaire cardio_vasculaire ADJ s 0.14 0.07 0.14 0.07 +carte-clé carte_clé NOM f s 0.03 0.00 0.03 0.00 +carte-lettre carte_lettre NOM f s 0.00 0.41 0.00 0.34 +cartes-lettres carte_lettre NOM f p 0.00 0.41 0.00 0.07 +carton-pâte carton_pâte NOM m s 0.17 1.28 0.17 1.28 +carême-prenant carême_prenant NOM m s 0.00 0.07 0.00 0.07 +casse-bonbons casse_bonbon NOM m p 0.10 0.00 0.10 0.00 +casse-burnes casse_burnes NOM m 0.05 0.00 0.05 0.00 +casse-cou casse_cou ADJ s 0.35 0.54 0.35 0.54 +casse-couilles casse_couilles NOM m 1.47 0.20 1.47 0.20 +casse-croûte casse_croûte NOM m s 1.54 4.46 1.52 4.32 +casse-croûtes casse_croûte NOM m p 1.54 4.46 0.02 0.14 +casse-cul casse_cul ADJ 0.01 0.00 0.01 0.00 +casse-dalle casse_dalle NOM m 0.29 0.95 0.28 0.81 +casse-dalles casse_dalle NOM m p 0.29 0.95 0.01 0.14 +casse-graine casse_graine NOM m 0.00 0.95 0.00 0.95 +casse-gueule casse_gueule NOM m 0.10 0.07 0.10 0.07 +casse-noisette casse_noisette NOM m s 0.22 0.41 0.22 0.41 +casse-noisettes casse_noisettes NOM m 0.13 0.27 0.13 0.27 +casse-noix casse_noix NOM m 0.12 0.20 0.12 0.20 +casse-pattes casse_pattes NOM m 0.03 0.20 0.03 0.20 +casse-pieds casse_pieds ADJ s 0.87 1.22 0.87 1.22 +casse-pipe casse_pipe NOM m s 0.50 0.74 0.50 0.74 +casse-pipes casse_pipes NOM m 0.02 0.20 0.02 0.20 +casse-tête casse_tête NOM m 0.69 0.88 0.69 0.88 +casus belli casus_belli NOM m 0.05 0.00 0.05 0.00 +celle-ci celle_ci PRO:dem f s 38.71 57.57 38.71 57.57 +celle-là celle_là PRO:dem f s 52.63 28.65 52.63 28.65 +celles-ci celles_ci PRO:dem f p 6.64 9.39 6.64 9.39 +celles-là celles_là PRO:dem f p 5.90 6.08 5.90 6.08 +celui-ci celui_ci PRO:dem m s 45.97 71.76 45.97 71.76 +celui-là celui_là PRO:dem m s 78.13 56.89 78.13 56.89 +centre-ville centre_ville NOM m s 2.87 0.54 2.87 0.54 +cerf-roi cerf_roi NOM m s 0.01 0.00 0.01 0.00 +cerf-volant cerf_volant NOM m s 1.85 1.82 1.40 1.22 +cerfs-volants cerf_volant NOM m p 1.85 1.82 0.46 0.61 +cessez-le-feu cessez_le_feu NOM m 1.54 0.41 1.54 0.41 +ceux-ci ceux_ci PRO:dem m p 4.26 20.95 4.26 20.95 +ceux-là ceux_là PRO:dem m p 14.65 25.81 14.65 25.81 +ch'timi ch_timi ADJ s 0.27 0.07 0.27 0.00 +ch'timis ch_timi NOM p 0.14 0.20 0.00 0.07 +cha-cha-cha cha_cha_cha NOM m s 0.61 0.20 0.61 0.20 +chalutier-patrouilleur chalutier_patrouilleur NOM m s 0.00 0.07 0.00 0.07 +chambre-salon chambre_salon NOM f s 0.00 0.07 0.00 0.07 +champ' champ NOM m s 57.22 106.49 0.04 1.76 +champs élysées champs_élysées NOM m p 0.00 0.14 0.00 0.14 +chanteuse-vedette chanteuse_vedette NOM f s 0.00 0.07 0.00 0.07 +chapiteaux-dortoirs chapiteau_dortoir NOM m p 0.00 0.07 0.00 0.07 +chasse-d'eau chasse_d_eau NOM f s 0.00 0.07 0.00 0.07 +chasse-goupilles chasse_goupille NOM f p 0.00 0.20 0.00 0.20 +chasse-mouche chasse_mouche NOM m s 0.00 0.14 0.00 0.14 +chasse-mouches chasse_mouches NOM m 0.12 0.61 0.12 0.61 +chasse-neige chasse_neige NOM m 0.58 0.54 0.58 0.54 +chasse-pierres chasse_pierres NOM m 0.01 0.00 0.01 0.00 +chassé-croisé chassé_croisé NOM m s 0.02 1.01 0.00 0.68 +chassés-croisés chassé_croisé NOM m p 0.02 1.01 0.02 0.34 +chat-huant chat_huant NOM m s 0.00 0.27 0.00 0.27 +chat-tigre chat_tigre NOM m s 0.00 0.14 0.00 0.14 +chaud-froid chaud_froid NOM m s 0.00 0.41 0.00 0.34 +chaude-pisse chaude_pisse NOM f s 0.15 0.34 0.15 0.27 +chaudes-pisses chaude_pisse NOM f p 0.15 0.34 0.00 0.07 +chauds-froids chaud_froid NOM m p 0.00 0.41 0.00 0.07 +chauffe-biberon chauffe_biberon NOM m s 0.10 0.00 0.10 0.00 +chauffe-eau chauffe_eau NOM m 0.63 0.61 0.63 0.61 +chauffe-plats chauffe_plats NOM m 0.00 0.14 0.00 0.14 +chauffeur-livreur chauffeur_livreur NOM m s 0.00 0.14 0.00 0.14 +chausse-pied chausse_pied NOM m s 0.24 0.14 0.24 0.14 +chausse-trape chausse_trape NOM f s 0.00 0.20 0.00 0.07 +chausse-trapes chausse_trape NOM f p 0.00 0.20 0.00 0.14 +chausse-trappe chausse_trappe NOM f s 0.00 0.07 0.00 0.07 +chauve-souris chauve_souris NOM f s 7.16 4.66 5.43 2.23 +chauves-souris chauve_souris NOM f p 7.16 4.66 1.73 2.43 +check-list check_list NOM f s 0.22 0.00 0.22 0.00 +check-up check_up NOM m 0.69 0.00 0.68 0.00 +check up check_up NOM m 0.69 0.00 0.01 0.00 +cheese-cake cheese_cake NOM m s 0.32 0.00 0.28 0.00 +cheese-cakes cheese_cake NOM m p 0.32 0.00 0.05 0.00 +chef-adjoint chef_adjoint NOM s 0.04 0.00 0.04 0.00 +chef-d'oeuvre chef_d_oeuvre NOM m s 3.34 12.77 2.56 8.51 +chef-d'oeuvres chef_d_oeuvres NOM s 0.11 0.00 0.11 0.00 +chef-lieu chef_lieu NOM m s 0.19 1.82 0.19 1.82 +chefs-d'oeuvre chef_d_oeuvre NOM m p 3.34 12.77 0.77 4.26 +chefs-lieux chefs_lieux NOM m p 0.00 0.27 0.00 0.27 +cherche-midi cherche_midi NOM m 0.01 0.27 0.01 0.27 +cheval-vapeur cheval_vapeur NOM m s 0.03 0.20 0.02 0.07 +chevau-léger chevau_léger NOM m s 0.01 0.14 0.01 0.14 +chevaux-vapeur cheval_vapeur NOM m p 0.03 0.20 0.01 0.14 +chewing-gum chewing_gum NOM m s 0.01 3.58 0.00 3.11 +chewing-gums chewing_gum NOM m p 0.01 3.58 0.01 0.41 +chewing gum chewing_gum NOM m s 0.01 3.58 0.00 0.07 +chez-soi chez_soi NOM m 0.31 0.41 0.31 0.41 +chic-type chic_type ADJ m s 0.01 0.00 0.01 0.00 +chiche-kebab chiche_kebab NOM m s 0.24 0.07 0.24 0.07 +chien-assis chien_assis NOM m 0.00 0.07 0.00 0.07 +chien-loup chien_loup NOM m s 0.27 1.08 0.14 1.08 +chien-robot chien_robot NOM m s 0.01 0.00 0.01 0.00 +chien-étoile chien_étoile NOM m s 0.00 0.07 0.00 0.07 +chiens-loups chien_loup NOM m p 0.27 1.08 0.12 0.00 +chiffres-clés chiffres_clé NOM m p 0.00 0.07 0.00 0.07 +chirurgien-dentiste chirurgien_dentiste NOM s 0.02 0.27 0.02 0.27 +chop suey chop_suey NOM m s 0.13 0.00 0.13 0.00 +château-fort château_fort NOM m s 0.00 0.07 0.00 0.07 +chou-fleur chou_fleur NOM m s 0.54 1.01 0.54 1.01 +chou-palmiste chou_palmiste NOM m s 0.00 0.07 0.00 0.07 +chou-rave chou_rave NOM m s 0.00 0.20 0.00 0.20 +choux-fleurs choux_fleurs NOM m p 0.57 1.28 0.57 1.28 +choux-raves choux_raves NOM m p 0.00 0.07 0.00 0.07 +chrétien-démocrate chrétien_démocrate ADJ m s 0.16 0.00 0.01 0.00 +chrétiens-démocrates chrétien_démocrate ADJ m p 0.16 0.00 0.14 0.00 +chèque-cadeau chèque_cadeau NOM m s 0.05 0.00 0.05 0.00 +chèvre-pied chèvre_pied NOM s 0.00 0.14 0.00 0.14 +chêne-liège chêne_liège NOM m s 0.00 0.95 0.00 0.14 +chênes-lièges chêne_liège NOM m p 0.00 0.95 0.00 0.81 +ci-après ci_après ADV 0.15 0.61 0.15 0.61 +ci-contre ci_contre ADV 0.00 0.07 0.00 0.07 +ci-dessous ci_dessous ADV 0.13 0.61 0.13 0.61 +ci-dessus ci_dessus ADV 0.20 1.28 0.20 1.28 +ci-gît ci_gît ADV 0.70 0.34 0.70 0.34 +ci-inclus ci_inclus ADJ m 0.03 0.14 0.01 0.07 +ci-incluse ci_inclus ADJ f s 0.03 0.14 0.01 0.07 +ci-incluses ci_inclus ADJ f p 0.03 0.14 0.01 0.00 +ci-joint ci_joint ADJ m s 0.62 1.89 0.59 1.69 +ci-jointe ci_joint ADJ f s 0.62 1.89 0.04 0.14 +ci-joints ci_joint ADJ m p 0.62 1.89 0.00 0.07 +cinquante-cinq cinquante_cinq ADJ:num 0.20 2.50 0.20 2.50 +cinquante-deux cinquante_deux ADJ:num 0.21 1.42 0.21 1.42 +cinquante-huit cinquante_huit ADJ:num 0.06 0.88 0.06 0.88 +cinquante-huitième cinquante_huitième ADJ 0.00 0.07 0.00 0.07 +cinquante-neuf cinquante_neuf ADJ:num 0.03 0.34 0.03 0.34 +cinquante-neuvième cinquante_neuvième ADJ 0.00 0.07 0.00 0.07 +cinquante-quatre cinquante_quatre ADJ:num 0.13 0.68 0.13 0.68 +cinquante-sept cinquante_sept ADJ:num 0.08 0.95 0.08 0.95 +cinquante-septième cinquante_septième ADJ 0.03 0.07 0.03 0.07 +cinquante-six cinquante_six ADJ:num 0.18 0.68 0.18 0.68 +cinquante-sixième cinquante_sixième ADJ 0.00 0.14 0.00 0.14 +cinquante-trois cinquante_trois ADJ:num 0.15 0.81 0.15 0.81 +cinquante-troisième cinquante_troisième ADJ 0.00 0.14 0.00 0.14 +ciné-club ciné_club NOM m s 0.00 0.74 0.00 0.54 +ciné-clubs ciné_club NOM m p 0.00 0.74 0.00 0.20 +ciné-roman ciné_roman NOM m s 0.00 0.14 0.00 0.14 +cinéma-vérité cinéma_vérité NOM m s 0.20 0.07 0.20 0.07 +circonscriptions-clés circonscriptions_clé NOM f p 0.01 0.00 0.01 0.00 +citizen band citizen_band NOM f s 0.01 0.00 0.01 0.00 +cité-dortoir cité_dortoir NOM f s 0.00 0.27 0.00 0.14 +cité-jardin cité_jardin NOM f s 0.00 0.20 0.00 0.20 +cités-dortoirs cité_dortoir NOM f p 0.00 0.27 0.00 0.14 +clair-obscur clair_obscur NOM m s 0.02 1.96 0.02 1.62 +claire-voie claire_voie NOM f s 0.01 2.43 0.01 1.96 +claires-voies claire_voie NOM f p 0.01 2.43 0.00 0.47 +clairs-obscurs clair_obscur NOM m p 0.02 1.96 0.00 0.34 +claque-merde claque_merde NOM m s 0.19 0.27 0.19 0.27 +clic-clac clic_clac ONO 0.10 0.07 0.10 0.07 +client-roi client_roi NOM m s 0.00 0.07 0.00 0.07 +clin-d'oeil clin_d_oeil NOM m s 0.01 0.00 0.01 0.00 +cloche-pied cloche_pied NOM f s 0.01 0.14 0.01 0.14 +clopin-clopant clopin_clopant ADV 0.00 0.14 0.00 0.14 +close-combat close_combat NOM m s 0.04 0.07 0.04 0.07 +close-up close_up NOM m s 0.01 0.07 0.01 0.07 +club-house club_house NOM m s 0.05 0.07 0.05 0.07 +co-animateur co_animateur NOM m s 0.03 0.00 0.03 0.00 +co-auteur co_auteur NOM m s 0.46 0.00 0.46 0.00 +co-avocat co_avocat NOM m s 0.01 0.00 0.01 0.00 +co-capitaine co_capitaine NOM m s 0.09 0.00 0.09 0.00 +co-dépendance co_dépendance NOM f s 0.01 0.00 0.01 0.00 +co-dépendante co_dépendant ADJ f s 0.01 0.00 0.01 0.00 +co-existence co_existence NOM f s 0.00 0.07 0.00 0.07 +co-exister co_exister VER 0.05 0.00 0.05 0.00 inf; +co-habiter co_habiter VER 0.02 0.00 0.02 0.00 inf; +co-locataire co_locataire NOM s 0.22 0.00 0.22 0.00 +co-pilote co_pilote NOM s 0.49 0.00 0.49 0.00 +co-pilotes co_pilote ADJ p 0.28 0.00 0.01 0.00 +co-production co_production NOM f s 0.11 0.00 0.01 0.00 +co-productions co_production NOM f p 0.11 0.00 0.10 0.00 +co-proprio co_proprio NOM m s 0.01 0.07 0.01 0.00 +co-proprios co_proprio NOM m p 0.01 0.07 0.00 0.07 +co-propriétaire co_propriétaire NOM s 0.19 0.27 0.05 0.00 +co-propriétaires co_propriétaire NOM p 0.19 0.27 0.14 0.27 +co-propriété co_propriété NOM f s 0.00 0.34 0.00 0.34 +co-président co_président NOM m s 0.02 0.07 0.02 0.07 +co-responsable co_responsable ADJ s 0.01 0.07 0.01 0.07 +co-signer co_signer VER 0.07 0.00 0.07 0.00 inf; +co-signons cosigner VER 0.32 0.00 0.01 0.00 ind:pre:1p; +co-tuteur co_tuteur NOM m s 0.00 0.07 0.00 0.07 +co-éducative co_éducatif ADJ f s 0.01 0.00 0.01 0.00 +co-équipier co_équipier NOM m s 0.21 0.00 0.21 0.00 +co-équipière coéquipier NOM f s 4.20 0.47 0.06 0.00 +co-vedette co_vedette NOM f s 0.02 0.00 0.02 0.00 +co-voiturage co_voiturage NOM m s 0.07 0.00 0.07 0.00 +coca-cola coca_cola NOM m 0.41 1.01 0.41 1.01 +cocotte-minute cocotte_minute NOM f s 0.07 0.34 0.07 0.34 +code-barre code_barre NOM m s 0.07 0.00 0.07 0.00 +code-barres code_barres NOM m 0.18 0.00 0.18 0.00 +code-clé code_clé NOM m s 0.01 0.00 0.01 0.00 +codes-clés codes_clé NOM m p 0.01 0.00 0.01 0.00 +coeur-poumons coeur_poumon NOM m p 0.03 0.07 0.03 0.07 +coffee shop coffee_shop NOM m s 0.10 0.00 0.10 0.00 +coffre-fort coffre_fort NOM m s 4.62 3.92 4.17 3.24 +coffres-forts coffre_fort NOM m p 4.62 3.92 0.45 0.68 +coin-coin coin_coin NOM m s 0.19 0.34 0.19 0.34 +coin-repas coin_repas NOM m s 0.02 0.00 0.02 0.00 +col-de-cygne col_de_cygne NOM m s 0.01 0.00 0.01 0.00 +col-vert col_vert NOM m s 0.12 0.14 0.12 0.07 +cold-cream cold_cream NOM m s 0.03 0.07 0.03 0.07 +colin-maillard colin_maillard NOM m s 0.93 0.95 0.93 0.95 +colis-cadeau colis_cadeau NOM m 0.02 0.00 0.02 0.00 +colis-repas colis_repas NOM m 0.00 0.07 0.00 0.07 +cols-de-cygne cols_de_cygne NOM m p 0.00 0.07 0.00 0.07 +cols-verts col_vert NOM m p 0.12 0.14 0.00 0.07 +comic book comic_book NOM m s 0.08 0.07 0.01 0.00 +comic books comic_book NOM m p 0.08 0.07 0.07 0.07 +commandos-suicide commando_suicide NOM m p 0.01 0.00 0.01 0.00 +commedia dell'arte commedia_dell_arte NOM f s 0.02 0.14 0.02 0.14 +commis-voyageur commis_voyageur NOM m s 0.05 0.41 0.05 0.20 +commis-voyageurs commis_voyageur NOM m p 0.05 0.41 0.00 0.20 +commissaire-adjoint commissaire_adjoint NOM s 0.02 0.07 0.02 0.07 +commissaire-priseur commissaire_priseur NOM m s 0.06 0.81 0.06 0.61 +commissaires-priseurs commissaire_priseur NOM m p 0.06 0.81 0.00 0.20 +commode-toilette commode_toilette NOM f s 0.00 0.14 0.00 0.14 +complet-veston complet_veston NOM m s 0.00 0.54 0.00 0.54 +compte-fils compte_fils NOM m 0.00 0.34 0.00 0.34 +compte-gouttes compte_gouttes NOM m 0.45 1.42 0.45 1.42 +compte-rendu compte_rendu NOM m s 2.21 0.14 2.06 0.07 +compte-tours compte_tours NOM m 0.04 0.41 0.04 0.41 +comptes-rendus compte_rendu NOM m p 2.21 0.14 0.16 0.07 +conduite-intérieure conduite_intérieure NOM f s 0.00 0.27 0.00 0.27 +conférences-débats conférences_débat NOM f p 0.00 0.07 0.00 0.07 +contrat-type contrat_type NOM m s 0.01 0.07 0.01 0.07 +contre-accusations contre_accusation NOM f p 0.01 0.00 0.01 0.00 +contre-alizés contre_alizé NOM m p 0.00 0.07 0.00 0.07 +contre-allée contre_allée NOM f s 0.05 0.34 0.04 0.20 +contre-allées contre_allée NOM f p 0.05 0.34 0.01 0.14 +contre-amiral contre_amiral NOM m s 0.19 0.07 0.19 0.07 +contre-appel contre_appel NOM m s 0.00 0.07 0.00 0.07 +contre-assurance contre_assurance NOM f s 0.00 0.07 0.00 0.07 +contre-attaqua contre_attaquer VER 0.71 1.96 0.01 0.07 ind:pas:3s; +contre-attaquaient contre_attaquer VER 0.71 1.96 0.00 0.20 ind:imp:3p; +contre-attaquait contre_attaquer VER 0.71 1.96 0.00 0.07 ind:imp:3s; +contre-attaquant contre_attaquer VER 0.71 1.96 0.00 0.07 par:pre; +contre-attaque contre_attaque NOM f s 1.46 2.16 1.35 1.69 +contre-attaquent contre_attaquer VER 0.71 1.96 0.07 0.20 ind:pre:3p; +contre-attaquer contre_attaquer VER 0.71 1.96 0.37 0.95 inf; +contre-attaquera contre_attaquer VER 0.71 1.96 0.01 0.00 ind:fut:3s; +contre-attaquerons contre_attaquer VER 0.71 1.96 0.03 0.07 ind:fut:1p; +contre-attaques contre_attaque NOM f p 1.46 2.16 0.11 0.47 +contre-attaquons contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pre:1p; +contre-attaquèrent contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pas:3p; +contre-attaqué contre_attaquer VER m s 0.71 1.96 0.07 0.07 par:pas; +contre-champ contre_champ NOM m s 0.00 0.07 0.00 0.07 +contre-chant contre_chant NOM m s 0.00 0.14 0.00 0.14 +contre-chocs contre_choc NOM m p 0.00 0.07 0.00 0.07 +contre-clés contre_clé NOM f p 0.00 0.07 0.00 0.07 +contre-courant contre_courant NOM m s 0.59 1.96 0.59 1.96 +contre-culture contre_culture NOM f s 0.03 0.00 0.03 0.00 +contre-emploi contre_emploi NOM m s 0.01 0.00 0.01 0.00 +contre-espionnage contre_espionnage NOM m s 0.67 0.34 0.67 0.34 +contre-exemple contre_exemple NOM m s 0.00 0.07 0.00 0.07 +contre-expertise contre_expertise NOM f s 0.52 0.27 0.51 0.20 +contre-expertises contre_expertise NOM f p 0.52 0.27 0.01 0.07 +contre-feu contre_feu NOM m s 0.07 0.00 0.07 0.00 +contre-feux contre_feux NOM m p 0.00 0.07 0.00 0.07 +contre-fiches contre_fiche NOM f p 0.00 0.07 0.00 0.07 +contre-fil contre_fil NOM m s 0.00 0.07 0.00 0.07 +contre-gré contre_gré NOM m s 0.00 0.14 0.00 0.14 +contre-indication contre_indication NOM f s 0.07 0.00 0.04 0.00 +contre-indications contre_indication NOM f p 0.07 0.00 0.04 0.00 +contre-indiqué contre_indiquer VER m s 0.06 0.14 0.06 0.14 par:pas; +contre-interrogatoire contre_interrogatoire NOM m s 0.48 0.00 0.46 0.00 +contre-interrogatoires contre_interrogatoire NOM m p 0.48 0.00 0.02 0.00 +contre-jour contre_jour NOM m s 0.39 6.01 0.39 6.01 +contre-la-montre contre_la_montre NOM m s 0.80 0.00 0.80 0.00 +contre-lame contre_lame NOM f s 0.00 0.07 0.00 0.07 +contre-lettre contre_lettre NOM f s 0.00 0.14 0.00 0.14 +contre-manifestants contre_manifestant NOM m p 0.00 0.14 0.00 0.14 +contre-manifestent contre_manifester VER 0.00 0.07 0.00 0.07 ind:pre:3p; +contre-mesure contre_mesure NOM f s 0.42 0.00 0.04 0.00 +contre-mesures contre_mesure NOM f p 0.42 0.00 0.39 0.00 +contre-mine contre_mine NOM f s 0.00 0.14 0.00 0.07 +contre-mines contre_mine NOM f p 0.00 0.14 0.00 0.07 +contre-miné contre_miner VER m s 0.00 0.07 0.00 0.07 par:pas; +contre-nature contre_nature ADJ s 0.41 0.14 0.41 0.14 +contre-offensive contre_offensive NOM f s 0.29 0.41 0.18 0.41 +contre-offensives contre_offensive NOM f p 0.29 0.41 0.11 0.00 +contre-ordre contre_ordre NOM m s 0.47 0.95 0.46 0.81 +contre-ordres contre_ordre NOM m p 0.47 0.95 0.01 0.14 +contre-pente contre_pente NOM f s 0.00 0.34 0.00 0.34 +contre-performance contre_performance NOM f s 0.14 0.07 0.14 0.00 +contre-performances contre_performance NOM f p 0.14 0.07 0.00 0.07 +contre-pied contre_pied NOM m s 0.04 0.61 0.04 0.54 +contre-pieds contre_pied NOM m p 0.04 0.61 0.00 0.07 +contre-plaqué contre_plaqué NOM m s 0.10 0.54 0.10 0.54 +contre-plongée contre_plongée NOM f s 0.23 0.47 0.23 0.47 +contre-pouvoirs contre_pouvoir NOM m p 0.00 0.07 0.00 0.07 +contre-pression contre_pression NOM f s 0.02 0.00 0.02 0.00 +contre-productif contre_productif ADJ m s 0.10 0.00 0.09 0.00 +contre-productive contre_productif ADJ f s 0.10 0.00 0.01 0.00 +contre-propagande contre_propagande NOM f s 0.02 0.07 0.02 0.07 +contre-proposition contre_proposition NOM f s 0.40 0.07 0.39 0.07 +contre-propositions contre_proposition NOM f p 0.40 0.07 0.01 0.00 +contre-réaction contre_réaction NOM f s 0.01 0.00 0.01 0.00 +contre-réforme contre_réforme NOM f s 0.00 0.61 0.00 0.61 +contre-révolution contre_révolution NOM f s 0.37 0.34 0.37 0.34 +contre-révolutionnaire contre_révolutionnaire ADJ s 0.14 0.27 0.03 0.00 +contre-révolutionnaires contre_révolutionnaire ADJ p 0.14 0.27 0.11 0.27 +contre-terrorisme contre_terrorisme NOM m s 0.07 0.00 0.07 0.00 +contre-terroriste contre_terroriste ADJ f s 0.00 0.07 0.00 0.07 +contre-test contre_test NOM m s 0.00 0.07 0.00 0.07 +contre-torpilleur contre_torpilleur NOM m s 0.20 1.22 0.08 0.61 +contre-torpilleurs contre_torpilleur NOM m p 0.20 1.22 0.12 0.61 +contre-transfert contre_transfert NOM m s 0.01 0.00 0.01 0.00 +contre-épreuve contre_épreuve NOM f s 0.01 0.07 0.00 0.07 +contre-épreuves contre_épreuve NOM f p 0.01 0.07 0.01 0.00 +contre-ut contre_ut NOM m 0.04 0.07 0.04 0.07 +contre-voie contre_voie NOM f s 0.00 0.27 0.00 0.27 +contre-vérité contre_vérité NOM f s 0.02 0.07 0.02 0.07 +coolie-pousse coolie_pousse NOM m s 0.01 0.00 0.01 0.00 +coq-à-l'âne coq_à_l_âne NOM m 0.00 0.14 0.00 0.14 +cordon-bleu cordon_bleu NOM m s 0.27 0.14 0.26 0.07 +cordons-bleus cordon_bleu NOM m p 0.27 0.14 0.01 0.07 +corn-flakes corn_flakes NOM m p 0.22 0.00 0.22 0.00 +corn flakes corn_flakes NOM f p 0.14 0.07 0.14 0.07 +corps-mort corps_mort NOM m s 0.00 0.07 0.00 0.07 +corpus delicti corpus_delicti NOM m s 0.03 0.00 0.03 0.00 +cosy-corner cosy_corner NOM m s 0.00 0.54 0.00 0.47 +cosy-corners cosy_corner NOM m p 0.00 0.54 0.00 0.07 +cot cot codec cot_cot_codec ONO 0.14 0.07 0.14 0.07 +coton-tige coton_tige NOM m s 0.43 0.07 0.20 0.00 +cotons-tiges coton_tige NOM m p 0.43 0.07 0.23 0.07 +cou-de-pied cou_de_pied NOM m s 0.01 0.27 0.01 0.27 +couche-culotte couche_culotte NOM f s 0.22 0.27 0.11 0.07 +couches-culottes couche_culotte NOM f p 0.22 0.27 0.11 0.20 +couci-couça couci_couça ADV 0.60 0.20 0.60 0.20 +couloir-symbole couloir_symbole NOM m s 0.00 0.07 0.00 0.07 +coup-de-poing coup_de_poing NOM m s 0.13 0.00 0.13 0.00 +coupe-chou coupe_chou NOM m s 0.05 0.34 0.05 0.34 +coupe-choux coupe_choux NOM m 0.14 0.27 0.14 0.27 +coupe-cigare coupe_cigare NOM m s 0.02 0.20 0.02 0.07 +coupe-cigares coupe_cigare NOM m p 0.02 0.20 0.00 0.14 +coupe-circuit coupe_circuit NOM m s 0.13 0.34 0.11 0.27 +coupe-circuits coupe_circuit NOM m p 0.13 0.34 0.02 0.07 +coupe-coupe coupe_coupe NOM m 0.10 0.68 0.10 0.68 +coupe-faim coupe_faim NOM m s 0.09 0.07 0.08 0.07 +coupe-faims coupe_faim NOM m p 0.09 0.07 0.01 0.00 +coupe-feu coupe_feu NOM m s 0.12 0.14 0.12 0.14 +coupe-file coupe_file NOM m s 0.03 0.00 0.03 0.00 +coupe-gorge coupe_gorge NOM m 0.28 0.61 0.28 0.61 +coupe-jarret coupe_jarret NOM m s 0.03 0.00 0.02 0.00 +coupe-jarrets coupe_jarret NOM m p 0.03 0.00 0.01 0.00 +coupe-ongle coupe_ongle NOM m s 0.05 0.00 0.05 0.00 +coupe-ongles coupe_ongles NOM m 0.26 0.14 0.26 0.14 +coupe-papier coupe_papier NOM m 0.36 0.95 0.36 0.95 +coupe-pâte coupe_pâte NOM m s 0.00 0.07 0.00 0.07 +coupe-racines coupe_racine NOM m p 0.00 0.07 0.00 0.07 +coupe-vent coupe_vent NOM m s 0.31 0.34 0.31 0.34 +coupon-cadeau coupon_cadeau NOM m s 0.01 0.00 0.01 0.00 +coups-de-poing coups_de_poing NOM m p 0.00 0.14 0.00 0.14 +cour-jardin cour_jardin NOM f s 0.00 0.07 0.00 0.07 +course-poursuite course_poursuite NOM f s 0.34 0.00 0.34 0.00 +court-bouillon court_bouillon NOM m s 0.29 0.68 0.29 0.68 +court-circuit court_circuit NOM m s 1.53 1.76 1.47 1.55 +court-circuitait court_circuiter VER 0.83 0.54 0.00 0.07 ind:imp:3s; +court-circuitant court_circuiter VER 0.83 0.54 0.00 0.07 par:pre; +court-circuite court_circuiter VER 0.83 0.54 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +court-circuiter court_circuiter VER 0.83 0.54 0.29 0.20 inf; +court-circuits court_circuit VER 0.01 0.00 0.01 0.00 ind:pre:3s; +court-circuits court_circuits NOM m s 0.02 0.00 0.02 0.00 +court-circuité court_circuiter VER m s 0.83 0.54 0.28 0.07 par:pas; +court-circuitée court_circuiter VER f s 0.83 0.54 0.02 0.07 par:pas; +court-circuitées court_circuiter VER f p 0.83 0.54 0.10 0.00 par:pas; +court-courrier court_courrier NOM m s 0.01 0.00 0.01 0.00 +court-jus court_jus NOM m 0.03 0.00 0.03 0.00 +court-métrage court_métrage NOM m s 0.17 0.00 0.17 0.00 +court-vêtue court_vêtu ADJ f s 0.01 0.14 0.01 0.00 +court-vêtues court_vêtu ADJ f p 0.01 0.14 0.00 0.14 +courts-circuits court_circuit NOM m p 1.53 1.76 0.07 0.20 +cous-de-pied cous_de_pied NOM m p 0.00 0.07 0.00 0.07 +couteau-scie couteau_scie NOM m s 0.01 0.07 0.01 0.07 +couvre-chef couvre_chef NOM m s 0.58 1.55 0.42 1.35 +couvre-chefs couvre_chef NOM m p 0.58 1.55 0.16 0.20 +couvre-feu couvre_feu NOM m s 3.63 3.11 3.63 3.11 +couvre-feux couvre_feux NOM m p 0.04 0.00 0.04 0.00 +couvre-lit couvre_lit NOM m s 0.33 2.77 0.30 2.70 +couvre-lits couvre_lit NOM m p 0.33 2.77 0.03 0.07 +couvre-pied couvre_pied NOM m s 0.01 0.47 0.01 0.47 +couvre-pieds couvre_pieds NOM m 0.01 0.47 0.01 0.47 +cover-girl cover_girl NOM f s 0.14 0.47 0.14 0.20 +cover-girls cover_girl NOM f p 0.14 0.47 0.00 0.27 +cow-boy cow_boy NOM m s 0.01 5.27 0.00 3.11 +cow-boys cow_boy NOM m p 0.01 5.27 0.01 2.16 +crapaud-buffle crapaud_buffle NOM m s 0.01 0.14 0.01 0.00 +crapauds-buffles crapaud_buffle NOM m p 0.01 0.14 0.00 0.14 +crash-test crash_test NOM m s 0.02 0.00 0.02 0.00 +crayon-encre crayon_encre NOM m s 0.00 0.27 0.00 0.27 +crayons-feutres crayon_feutre NOM m p 0.00 0.14 0.00 0.14 +cric-crac cric_crac ONO 0.00 0.07 0.00 0.07 +cris-craft cris_craft NOM m s 0.00 0.07 0.00 0.07 +croa-croa croa_croa ADV 0.00 0.41 0.00 0.27 +croa croa croa_croa ADV 0.00 0.41 0.00 0.14 +croc-en-jambe croc_en_jambe NOM m s 0.16 0.61 0.16 0.61 +croche-patte croche_patte NOM m s 0.17 0.34 0.17 0.34 +croche-pied croche_pied NOM m s 0.56 0.68 0.43 0.41 +croche-pieds croche_pied NOM m p 0.56 0.68 0.14 0.27 +crocs-en-jambe crocs_en_jambe NOM m p 0.00 0.20 0.00 0.20 +croque-madame croque_madame NOM m s 0.03 0.00 0.03 0.00 +croque-mitaine croque_mitaine NOM m s 0.61 0.20 0.61 0.20 +croque-monsieur croque_monsieur NOM m 0.28 0.14 0.28 0.14 +croque-mort croque_mort NOM m s 2.20 3.31 1.81 1.28 +croque-morts croque_mort NOM m p 2.20 3.31 0.39 2.03 +croquis-minute croquis_minute NOM m 0.00 0.07 0.00 0.07 +cross-country cross_country NOM m s 0.05 0.34 0.05 0.34 +crédit-bail crédit_bail NOM m s 0.02 0.00 0.02 0.00 +crêtes-de-coq crêtes_de_coq NOM f p 0.03 0.07 0.03 0.07 +cui-cui cui_cui NOM m 0.15 0.34 0.15 0.34 +cuisse-madame cuisse_madame NOM f s 0.00 0.07 0.00 0.07 +cul-blanc cul_blanc NOM m s 0.16 0.20 0.01 0.14 +cul-bénit cul_bénit NOM m s 0.08 0.20 0.02 0.07 +cul-cul cul_cul ADJ 0.04 0.00 0.04 0.00 +cul-de-basse-fosse cul_de_basse_fosse NOM m s 0.01 0.41 0.01 0.41 +cul-de-four cul_de_four NOM m s 0.00 0.20 0.00 0.20 +cul-de-jatte cul_de_jatte NOM m s 0.54 1.42 0.42 1.08 +cul-de-lampe cul_de_lampe NOM m s 0.01 0.20 0.01 0.14 +cul-de-plomb cul_de_plomb NOM m s 0.00 0.07 0.00 0.07 +cul-de-porc cul_de_porc NOM m s 0.02 0.00 0.02 0.00 +cul-de-poule cul_de_poule NOM m s 0.00 0.14 0.00 0.14 +cul-de-sac cul_de_sac NOM m s 0.80 1.55 0.75 1.22 +cul-terreux cul_terreux NOM m 2.23 1.28 1.60 0.41 +culs-blancs cul_blanc NOM m p 0.16 0.20 0.14 0.07 +culs-bénits cul_bénit NOM m p 0.08 0.20 0.06 0.14 +culs-de-basse-fosse culs_de_basse_fosse NOM m p 0.00 0.27 0.00 0.27 +culs-de-jatte cul_de_jatte NOM m p 0.54 1.42 0.12 0.34 +culs-de-lampe cul_de_lampe NOM m p 0.01 0.20 0.00 0.07 +culs-de-sac cul_de_sac NOM m p 0.80 1.55 0.05 0.34 +culs-terreux cul_terreux NOM m p 2.23 1.28 0.63 0.88 +cumulo-nimbus cumulo_nimbus NOM m 0.02 0.14 0.02 0.14 +céphalo-rachidien céphalo_rachidien ADJ m s 0.30 0.00 0.30 0.00 +cure-dent cure_dent NOM m s 1.39 0.88 0.60 0.14 +cure-dents cure_dent NOM m p 1.39 0.88 0.78 0.74 +cure-pipe cure_pipe NOM m s 0.07 0.00 0.05 0.00 +cure-pipes cure_pipe NOM m p 0.07 0.00 0.02 0.00 +curriculum vitae curriculum_vitae NOM m 0.13 0.74 0.13 0.74 +cérébro-spinale cérébro_spinal ADJ f s 0.03 0.14 0.03 0.14 +cuti-réaction cuti_réaction NOM f s 0.00 0.07 0.00 0.07 +cyclo-cross cyclo_cross NOM m 0.00 0.07 0.00 0.07 +cyclo-pousse cyclo_pousse NOM m 0.05 0.00 0.05 0.00 +d'abord d_abord ADV 175.45 169.32 175.45 169.32 +d'autres d_autres ADJ:ind p 133.34 119.73 133.34 119.73 +d'emblée d_emblée ADV 1.31 8.38 1.31 8.38 +d'ores et déjà d_ores_et_déjà ADV 0.26 1.28 0.26 1.28 +dalaï-lama dalaï_lama NOM m s 0.00 0.20 0.00 0.20 +dame-jeanne dame_jeanne NOM f s 0.01 0.20 0.01 0.07 +dames-jeannes dame_jeanne NOM f p 0.01 0.20 0.00 0.14 +dare-dare dare_dare ADV 0.21 1.55 0.17 1.28 +dare dare dare_dare ADV 0.21 1.55 0.04 0.27 +de amicis de_amicis NOM m s 0.00 0.07 0.00 0.07 +de auditu de_auditu ADV 0.00 0.07 0.00 0.07 +de facto de_facto ADV 0.16 0.07 0.16 0.07 +de guingois de_guingois ADV 0.01 2.64 0.01 2.64 +de plano de_plano ADV 0.04 0.00 0.04 0.00 +de profundis de_profundis NOM m 0.06 0.41 0.06 0.41 +de santis de_santis NOM m s 0.10 0.00 0.10 0.00 +de traviole de_traviole ADV 0.43 1.28 0.43 1.28 +de visu de_visu ADV 1.02 0.54 1.02 0.54 +delirium tremens delirium_tremens NOM m 0.07 0.27 0.07 0.27 +della francesca della_francesca NOM m s 0.34 0.20 0.34 0.20 +della porta della_porta NOM m s 0.00 0.07 0.00 0.07 +della robbia della_robbia NOM m s 0.00 0.07 0.00 0.07 +delta-plane delta_plane NOM m s 0.03 0.07 0.03 0.07 +demi-barbare demi_barbare NOM s 0.00 0.07 0.00 0.07 +demi-bas demi_bas NOM m 0.01 0.14 0.01 0.14 +demi-bonheur demi_bonheur NOM m s 0.00 0.07 0.00 0.07 +demi-bottes demi_botte NOM f p 0.00 0.14 0.00 0.14 +demi-bouteille demi_bouteille NOM f s 0.41 0.47 0.41 0.47 +demi-brigade demi_brigade NOM f s 0.00 0.68 0.00 0.61 +demi-brigades demi_brigade NOM f p 0.00 0.68 0.00 0.07 +demi-cent demi_cent NOM m s 0.01 0.07 0.01 0.07 +demi-centimètre demi_centimètre NOM m s 0.02 0.20 0.02 0.20 +demi-centre demi_centre NOM m s 0.00 0.07 0.00 0.07 +demi-cercle demi_cercle NOM m s 0.12 4.80 0.11 4.46 +demi-cercles demi_cercle NOM m p 0.12 4.80 0.01 0.34 +demi-chagrin demi_chagrin NOM m s 0.00 0.07 0.00 0.07 +demi-clair demi_clair NOM m s 0.00 0.07 0.00 0.07 +demi-clarté demi_clarté NOM f s 0.00 0.20 0.00 0.20 +demi-cloison demi_cloison NOM f s 0.00 0.20 0.00 0.20 +demi-coma demi_coma NOM m s 0.01 0.27 0.01 0.27 +demi-confidence demi_confidence NOM f s 0.00 0.07 0.00 0.07 +demi-conscience demi_conscience NOM f s 0.00 0.20 0.00 0.20 +demi-cylindre demi_cylindre NOM m s 0.00 0.14 0.00 0.14 +demi-degré demi_degré NOM m s 0.01 0.00 0.01 0.00 +demi-deuil demi_deuil NOM m s 0.00 0.34 0.00 0.34 +demi-dieu demi_dieu NOM m s 0.47 0.47 0.47 0.47 +demi-dieux demi_dieux NOM m p 0.16 0.47 0.16 0.47 +demi-dose demi_dose NOM f s 0.03 0.00 0.03 0.00 +demi-douzaine demi_douzaine NOM f s 1.34 6.55 1.34 6.55 +demi-dévêtu demi_dévêtu ADJ m s 0.00 0.14 0.00 0.07 +demi-dévêtue demi_dévêtu ADJ f s 0.00 0.14 0.00 0.07 +demi-figure demi_figure NOM f s 0.00 0.07 0.00 0.07 +demi-finale demi_finale NOM f s 1.13 0.00 0.87 0.00 +demi-finales demi_finale NOM f p 1.13 0.00 0.26 0.00 +demi-finaliste demi_finaliste NOM s 0.01 0.00 0.01 0.00 +demi-fond demi_fond NOM m s 0.21 0.14 0.21 0.14 +demi-fou demi_fou NOM m s 0.14 0.14 0.14 0.00 +demi-fous demi_fou NOM m p 0.14 0.14 0.00 0.14 +demi-frère demi_frère NOM m s 2.70 2.91 2.17 2.91 +demi-frères demi_frère NOM m p 2.70 2.91 0.53 0.00 +demi-gros demi_gros NOM m 0.01 0.47 0.01 0.47 +demi-heure demi_heure NOM f s 26.65 23.18 26.65 22.43 +demi-heures heur NOM f p 0.28 1.15 0.22 0.07 +demi-jour demi_jour NOM m s 0.02 1.28 0.02 1.28 +demi-journée demi_journée NOM f s 1.65 1.08 1.60 1.01 +demi-journées demi_journée NOM f p 1.65 1.08 0.05 0.07 +demi-juif demi_juif NOM m s 0.01 0.00 0.01 0.00 +demi-kilomètre demi_kilomètre NOM m s 0.14 0.14 0.14 0.14 +demi-liberté demi_liberté NOM f s 0.00 0.07 0.00 0.07 +demi-lieue demi_lieue NOM f s 0.30 0.41 0.30 0.41 +demi-litre demi_litre NOM m s 0.67 0.81 0.67 0.81 +demi-livre demi_livre NOM f s 0.12 0.34 0.12 0.34 +demi-longueur demi_longueur NOM f s 0.06 0.00 0.06 0.00 +demi-louis demi_louis NOM m 0.00 0.07 0.00 0.07 +demi-lueur demi_lueur NOM f s 0.00 0.07 0.00 0.07 +demi-lumière demi_lumière NOM f s 0.00 0.07 0.00 0.07 +demi-lune demi_lune NOM f s 1.03 2.36 0.92 2.23 +demi-lunes demi_lune NOM f p 1.03 2.36 0.11 0.14 +demi-luxe demi_luxe NOM m s 0.00 0.07 0.00 0.07 +demi-mal demi_mal NOM m s 0.00 0.07 0.00 0.07 +demi-mensonge demi_mensonge NOM m s 0.01 0.07 0.01 0.07 +demi-mesure demi_mesure NOM f s 0.39 0.54 0.14 0.14 +demi-mesures demi_mesure NOM f p 0.39 0.54 0.25 0.41 +demi-mille demi_mille NOM m 0.00 0.07 0.00 0.07 +demi-milliard demi_milliard NOM m s 0.87 0.07 0.87 0.07 +demi-millimètre demi_millimètre NOM m s 0.00 0.07 0.00 0.07 +demi-million demi_million NOM m s 3.08 0.41 3.08 0.41 +demi-minute demi_minute NOM f s 0.04 0.07 0.04 0.07 +demi-mois demi_mois NOM m 0.15 0.00 0.15 0.00 +demi-mondaine demi_mondain NOM f s 0.00 0.74 0.00 0.27 +demi-mondaines demi_mondain NOM f p 0.00 0.74 0.00 0.47 +demi-monde demi_monde NOM m s 0.01 0.14 0.01 0.14 +demi-mort demi_mort NOM m s 0.26 0.27 0.11 0.20 +demi-morte demi_mort NOM f s 0.26 0.27 0.04 0.07 +demi-morts demi_mort NOM m p 0.26 0.27 0.10 0.00 +demi-mot demi_mot NOM m s 0.19 1.49 0.19 1.49 +demi-mètre demi_mètre NOM m s 0.00 0.54 0.00 0.54 +demi-muid demi_muid NOM m s 0.00 0.07 0.00 0.07 +demi-nu demi_nu ADV 0.14 0.00 0.14 0.00 +demi-nuit demi_nuit NOM f s 0.02 0.27 0.02 0.27 +demi-obscurité demi_obscurité NOM f s 0.00 1.96 0.00 1.96 +demi-ouverte demi_ouvert ADJ f s 0.00 0.07 0.00 0.07 +demi-ouvrier demi_ouvrier NOM m s 0.00 0.07 0.00 0.07 +demi-page demi_page NOM f s 0.05 0.41 0.05 0.41 +demi-paralysé demi_paralysé ADJ m s 0.10 0.00 0.10 0.00 +demi-part demi_part NOM f s 0.01 0.00 0.01 0.00 +demi-pas demi_pas NOM m 0.21 0.27 0.21 0.27 +demi-pension demi_pension NOM f s 0.00 0.41 0.00 0.41 +demi-pensionnaire demi_pensionnaire NOM s 0.00 0.41 0.00 0.20 +demi-pensionnaires demi_pensionnaire NOM p 0.00 0.41 0.00 0.20 +demi-personne demi_personne ADJ m s 0.00 0.07 0.00 0.07 +demi-pied demi_pied NOM m s 0.00 0.07 0.00 0.07 +demi-pinte demi_pinte NOM f s 0.07 0.07 0.07 0.07 +demi-pièce demi_pièce NOM f s 0.00 0.07 0.00 0.07 +demi-place demi_place NOM f s 0.11 0.00 0.11 0.00 +demi-plein demi_plein ADJ m s 0.01 0.00 0.01 0.00 +demi-point demi_point NOM m s 0.14 0.00 0.14 0.00 +demi-pointes demi_pointe NOM f p 0.00 0.07 0.00 0.07 +demi-porte demi_porte NOM f s 0.00 0.14 0.00 0.14 +demi-portion demi_portion NOM f s 1.23 0.20 1.18 0.00 +demi-portions demi_portion NOM f p 1.23 0.20 0.05 0.20 +demi-pouce demi_pouce ADJ m s 0.01 0.00 0.01 0.00 +demi-quart demi_quart NOM m s 0.00 0.07 0.00 0.07 +demi-queue demi_queue NOM m s 0.01 0.20 0.01 0.20 +demi-ronde demi_rond NOM f s 0.00 0.34 0.00 0.34 +demi-réussite demi_réussite NOM f s 0.00 0.14 0.00 0.14 +demi-rêve demi_rêve NOM m s 0.00 0.20 0.00 0.20 +demi-révérence demi_révérence NOM f s 0.00 0.07 0.00 0.07 +demi-saison demi_saison NOM f s 0.00 0.95 0.00 0.81 +demi-saisons demi_saison NOM f p 0.00 0.95 0.00 0.14 +demi-sang demi_sang NOM m s 0.04 0.54 0.04 0.47 +demi-sangs demi_sang NOM m p 0.04 0.54 0.00 0.07 +demi-seconde demi_seconde NOM f s 0.13 1.01 0.13 1.01 +demi-section demi_section NOM f s 0.00 0.41 0.00 0.41 +demi-sel demi_sel NOM m 0.04 0.47 0.03 0.27 +demi-sels demi_sel NOM m p 0.04 0.47 0.01 0.20 +demi-siècle demi_siècle NOM m s 0.17 5.95 0.17 5.81 +demi-siècles demi_siècle NOM m p 0.17 5.95 0.00 0.14 +demi-soeur demi_soeur NOM f s 0.50 9.05 0.42 8.92 +demi-soeurs demi_soeur NOM f p 0.50 9.05 0.07 0.14 +demi-solde demi_solde NOM f s 0.01 0.14 0.01 0.07 +demi-soldes demi_solde NOM f p 0.01 0.14 0.00 0.07 +demi-sommeil demi_sommeil NOM m s 0.25 2.50 0.25 2.43 +demi-sommeils demi_sommeil NOM m p 0.25 2.50 0.00 0.07 +demi-somnolence demi_somnolence NOM f s 0.00 0.14 0.00 0.14 +demi-sourire demi_sourire NOM m s 0.00 2.84 0.00 2.77 +demi-sourires demi_sourire NOM m p 0.00 2.84 0.00 0.07 +demi-succès demi_succès NOM m 0.00 0.20 0.00 0.20 +demi-suicide demi_suicide NOM m s 0.00 0.07 0.00 0.07 +demi-talent demi_talent NOM m s 0.05 0.00 0.05 0.00 +demi-tarif demi_tarif NOM m s 0.56 0.14 0.56 0.14 +demi-tasse demi_tasse NOM f s 0.08 0.07 0.08 0.07 +demi-teinte demi_teinte NOM f s 0.06 0.95 0.04 0.47 +demi-teintes demi_teinte NOM f p 0.06 0.95 0.02 0.47 +demi-ton demi_ton NOM m s 0.34 0.61 0.00 0.34 +demi-tonne demi_ton NOM f s 0.34 0.61 0.21 0.07 +demi-tonneau demi_tonneau NOM m s 0.00 0.07 0.00 0.07 +demi-tons demi_ton NOM m p 0.34 0.61 0.14 0.20 +demi-tour demi_tour NOM m s 19.27 16.08 19.25 15.88 +demi-tours demi_tour NOM m p 19.27 16.08 0.02 0.20 +demi-tête demi_tête NOM f s 0.11 0.14 0.11 0.14 +demi-échec demi_échec NOM m s 0.00 0.07 0.00 0.07 +demi-verre demi_verre NOM m s 0.30 1.22 0.30 1.22 +demi-vertu demi_vertu NOM f s 0.00 0.07 0.00 0.07 +demi-vie demi_vie NOM f s 0.11 0.00 0.08 0.00 +demi-vierge demi_vierge NOM f s 0.02 0.20 0.02 0.07 +demi-vierges demi_vierge NOM f p 0.02 0.20 0.00 0.14 +demi-vies demi_vie NOM f p 0.11 0.00 0.02 0.00 +demi-volte demi_volte NOM f s 0.01 0.07 0.01 0.00 +demi-voltes demi_volte NOM f p 0.01 0.07 0.00 0.07 +demi-volée demi_volée NOM f s 0.00 0.07 0.00 0.07 +demi-volume demi_volume NOM m s 0.00 0.07 0.00 0.07 +demi-vérité demi_vérité NOM f s 0.32 0.07 0.32 0.07 +dent-de-lion dent_de_lion NOM f s 0.03 0.07 0.03 0.07 +deo gratias deo_gratias NOM m 0.01 0.20 0.01 0.20 +dernier-né dernier_né NOM m s 0.05 1.01 0.05 0.88 +derniers-nés dernier_né NOM m p 0.05 1.01 0.00 0.14 +dernière-née dernière_née NOM f s 0.01 0.20 0.01 0.20 +dessous-de-bras dessous_de_bras NOM m 0.01 0.07 0.01 0.07 +dessous-de-plat dessous_de_plat NOM m 0.20 0.54 0.20 0.54 +dessous-de-table dessous_de_table NOM m 0.21 0.00 0.21 0.00 +dessous-de-verre dessous_de_verre NOM m 0.01 0.00 0.01 0.00 +dessus-de-lit dessus_de_lit NOM m 0.09 1.08 0.09 1.08 +deus ex machina deus_ex_machina NOM m 0.16 0.47 0.16 0.47 +deutsche mark deutsche_mark ADJ m s 0.02 0.00 0.02 0.00 +deux-chevaux deux_chevaux NOM f 0.00 1.22 0.00 1.22 +deux-deux deux_deux NOM m 0.02 0.00 0.02 0.00 +deux-mâts deux_mâts NOM m 0.14 0.07 0.14 0.07 +deux-pièces deux_pièces NOM m 0.27 1.82 0.27 1.82 +deux-points deux_points NOM m 0.01 0.00 0.01 0.00 +deux-ponts deux_ponts NOM m 0.00 0.07 0.00 0.07 +deux-quatre deux_quatre NOM m 0.03 0.00 0.03 0.00 +deux-roues deux_roues NOM m 0.11 0.00 0.11 0.00 +dies irae dies_irae NOM m 0.54 0.14 0.54 0.14 +dieu-roi dieu_roi NOM m s 0.01 0.07 0.01 0.07 +dignus est intrare dignus_est_intrare ADV 0.00 0.07 0.00 0.07 +directeur-adjoint directeur_adjoint NOM m s 0.14 0.00 0.14 0.00 +disc-jockey disc_jockey NOM m s 0.18 0.07 0.16 0.00 +disc-jockeys disc_jockey NOM m p 0.18 0.07 0.03 0.07 +disciple-roi disciple_roi NOM s 0.00 0.07 0.00 0.07 +disque-jockey disque_jockey NOM m s 0.01 0.07 0.01 0.07 +dix-cors dix_cors NOM m 0.03 0.88 0.03 0.88 +dix-huit dix_huit ADJ:num 4.44 31.69 4.44 31.69 +dix-huitième dix_huitième NOM s 0.16 0.27 0.16 0.27 +dix-neuf dix_neuf ADJ:num 2.11 10.54 2.11 10.54 +dix-neuvième dix_neuvième ADJ 0.15 1.22 0.15 1.22 +dix-sept dix_sept ADJ:num 3.69 19.59 3.69 19.59 +dix-septième dix_septième ADJ 0.22 1.22 0.22 1.22 +dog-cart dog_cart NOM m s 0.04 0.00 0.04 0.00 +dommages-intérêts dommages_intérêts NOM m p 0.04 0.00 0.04 0.00 +donnant-donnant donnant_donnant ADV 0.73 0.41 0.73 0.41 +dos-d'âne dos_d_âne NOM m 0.01 0.34 0.01 0.34 +double-cliquer double_cliquer VER 0.09 0.00 0.01 0.00 inf; +double-cliqué double_cliquer VER m s 0.09 0.00 0.07 0.00 par:pas; +double-croche double_croche NOM f s 0.01 0.00 0.01 0.00 +double-décimètre double_décimètre NOM m s 0.00 0.07 0.00 0.07 +double-fond double_fond NOM m s 0.01 0.00 0.01 0.00 +double-six double_six NOM m s 0.14 0.20 0.14 0.20 +douce-amère douce_amère ADJ f s 0.06 0.27 0.06 0.27 +douces-amères douce_amère NOM f p 0.00 0.14 0.00 0.07 +doux-amer doux_amer ADJ m s 0.04 0.00 0.04 0.00 +downing street downing_street NOM f s 0.00 0.34 0.00 0.34 +dream team dream_team NOM f s 0.07 0.00 0.07 0.00 +dressing-room dressing_room NOM m s 0.01 0.00 0.01 0.00 +drive-in drive_in NOM m s 0.94 0.00 0.94 0.00 +droit-fil droit_fil NOM m s 0.00 0.07 0.00 0.07 +drone-espion drone_espion NOM m s 0.02 0.00 0.02 0.00 +décision-clé décision_clé NOM f s 0.01 0.00 0.01 0.00 +décret-loi décret_loi NOM m s 0.03 0.07 0.03 0.07 +décrochez-moi-ça décrochez_moi_ça NOM m 0.00 0.07 0.00 0.07 +ducs-d'albe duc_d_albe NOM m p 0.00 0.07 0.00 0.07 +duffel-coat duffel_coat NOM m s 0.01 0.07 0.01 0.07 +duffle-coat duffle_coat NOM m s 0.00 0.34 0.00 0.27 +duffle-coats duffle_coat NOM m p 0.00 0.34 0.00 0.07 +déjà-vu déjà_vu NOM m 0.01 0.34 0.01 0.34 +délégué-général délégué_général ADJ m s 0.00 0.14 0.00 0.14 +délégué-général délégué_général NOM m s 0.00 0.14 0.00 0.14 +dum-dum dum_dum ADJ 0.20 0.27 0.20 0.27 +démocrate-chrétien démocrate_chrétien ADJ m s 0.21 0.14 0.21 0.07 +démocrates-chrétiens démocrate_chrétien NOM p 0.10 0.27 0.10 0.27 +démonte-pneu démonte_pneu NOM m s 0.26 0.20 0.25 0.07 +démonte-pneus démonte_pneu NOM m p 0.26 0.20 0.01 0.14 +dépôt-vente dépôt_vente NOM m s 0.03 0.00 0.03 0.00 +député-maire député_maire NOM m s 0.00 0.34 0.00 0.34 +dure-mère dure_mère NOM f s 0.02 0.07 0.02 0.07 +déshabillage-éclair déshabillage_éclair NOM m s 0.00 0.07 0.00 0.07 +détective-conseil détective_conseil NOM s 0.01 0.00 0.01 0.00 +détectives-conseils détectives_conseil NOM p 0.01 0.00 0.01 0.00 +e-commerce e_commerce NOM m s 0.03 0.00 0.03 0.00 +e-mail e_mail NOM m s 6.47 0.00 4.16 0.00 +e-mails e_mail NOM m p 6.47 0.00 2.32 0.00 +east river east_river NOM f s 0.00 0.07 0.00 0.07 +eau-de-vie eau_de_vie NOM f s 3.17 4.73 3.05 4.73 +eau-forte eau_forte NOM f s 0.30 0.27 0.30 0.27 +eau-minute eau_minute NOM f s 0.01 0.00 0.01 0.00 +eaux-de-vie eau_de_vie NOM f p 3.17 4.73 0.12 0.00 +eaux-fortes eaux_fortes NOM f p 0.00 0.14 0.00 0.14 +ecce homo ecce_homo ADV 0.20 0.20 0.20 0.20 +elle-même elle_même PRO:per f s 17.88 113.51 17.88 113.51 +elles-mêmes elles_mêmes PRO:per f p 2.21 14.86 2.21 14.86 +emporte-pièce emporte_pièce NOM m 0.00 0.95 0.00 0.95 +en-avant en_avant NOM m 0.01 0.07 0.01 0.07 +en-but en_but NOM m 0.32 0.00 0.32 0.00 +en-cas en_cas NOM m 1.44 1.08 1.44 1.08 +en-cours en_cours NOM m 0.01 0.00 0.01 0.00 +en-dehors en_dehors NOM m 0.36 0.07 0.36 0.07 +en-tête en_tête NOM m s 0.44 2.77 0.39 2.64 +en-têtes en_tête NOM m p 0.44 2.77 0.05 0.14 +en catimini en_catimini ADV 0.12 1.42 0.12 1.42 +en loucedé en_loucedé ADV 0.16 0.47 0.16 0.47 +en tapinois en_tapinois ADV 0.25 0.68 0.25 0.68 +enfant-robot enfant_robot NOM s 0.16 0.00 0.16 0.00 +enfant-roi enfant_roi NOM s 0.02 0.14 0.02 0.14 +enfants-robots enfants_robot NOM m p 0.01 0.00 0.01 0.00 +enfants-rois enfants_roi NOM m p 0.00 0.07 0.00 0.07 +enquêtes-minute enquêtes_minut NOM f p 0.00 0.07 0.00 0.07 +enseignant-robot enseignant_robot NOM m s 0.00 0.07 0.00 0.07 +entr'acte entr_acte NOM m s 0.27 0.00 0.14 0.00 +entr'actes entr_acte NOM m p 0.27 0.00 0.14 0.00 +entr'aimer entr_aimer VER 0.00 0.07 0.00 0.07 inf; +entr'apercevoir entr_apercevoir VER 0.03 1.08 0.01 0.27 inf; +entr'aperçu entr_apercevoir VER m s 0.03 1.08 0.00 0.14 par:pas; +entr'aperçue entr_apercevoir VER f s 0.03 1.08 0.02 0.34 par:pas; +entr'aperçues entr_apercevoir VER f p 0.03 1.08 0.00 0.07 par:pas; +entr'aperçus entr_apercevoir VER m p 0.03 1.08 0.00 0.27 ind:pas:1s;par:pas; +entr'appellent entr_appeler VER 0.00 0.07 0.00 0.07 ind:pre:3p; +entr'ouvert entr_ouvert ADJ m s 0.01 1.49 0.00 0.41 +entr'ouverte entr_ouvert ADJ f s 0.01 1.49 0.01 0.74 +entr'ouvertes entr_ouvert ADJ f p 0.01 1.49 0.00 0.27 +entr'ouverts entr_ouvert ADJ m p 0.01 1.49 0.00 0.07 +entr'égorgent entr_égorger VER 0.00 0.20 0.00 0.07 ind:pre:3p; +entr'égorger entr_égorger VER 0.00 0.20 0.00 0.07 inf; +entr'égorgèrent entr_égorger VER 0.00 0.20 0.00 0.07 ind:pas:3p; +entre-deux-guerres entre_deux_guerres NOM m 0.10 0.74 0.10 0.74 +entre-deux entre_deux NOM m 0.34 0.81 0.34 0.81 +entre-déchiraient entre_déchirer VER 0.04 0.61 0.02 0.14 ind:imp:3p; +entre-déchirait entre_déchirer VER 0.04 0.61 0.00 0.07 ind:imp:3s; +entre-déchire entre_déchirer VER 0.04 0.61 0.01 0.00 ind:pre:3s; +entre-déchirent entre_déchirer VER 0.04 0.61 0.00 0.14 ind:pre:3p; +entre-déchirer entre_déchirer VER 0.04 0.61 0.01 0.20 inf; +entre-déchirèrent entre_déchirer VER 0.04 0.61 0.00 0.07 ind:pas:3p; +entre-dévorant entre_dévorer VER 0.30 0.34 0.01 0.07 par:pre; +entre-dévorent entre_dévorer VER 0.30 0.34 0.25 0.07 ind:pre:3p; +entre-dévorer entre_dévorer VER 0.30 0.34 0.05 0.14 inf; +entre-dévorèrent entre_dévorer VER 0.30 0.34 0.00 0.07 ind:pas:3p; +entre-jambe entre_jambe NOM m s 0.03 0.07 0.03 0.07 +entre-jambes entre_jambes NOM m 0.07 0.07 0.07 0.07 +entre-rail entre_rail NOM m s 0.01 0.00 0.01 0.00 +entre-regardait entre_regarder VER 0.00 0.34 0.00 0.07 ind:imp:3s; +entre-regardent entre_regarder VER 0.00 0.34 0.00 0.07 ind:pre:3p; +entre-regardèrent entre_regarder VER 0.00 0.34 0.00 0.14 ind:pas:3p; +entre-regardés entre_regarder VER m p 0.00 0.34 0.00 0.07 par:pas; +entre-temps entre_temps ADV 4.04 7.97 4.04 7.97 +entre-tuaient entre_tuer VER 2.63 1.01 0.01 0.00 ind:imp:3p; +entre-tuait entre_tuer VER 2.63 1.01 0.00 0.14 ind:imp:3s; +entre-tue entre_tuer VER 2.63 1.01 0.23 0.07 ind:pre:3s; +entre-tuent entre_tuer VER 2.63 1.01 0.55 0.07 ind:pre:3p; +entre-tuer entre_tuer VER 2.63 1.01 1.33 0.68 inf; +entre-tueront entre_tuer VER 2.63 1.01 0.14 0.00 ind:fut:3p; +entre-tuez entre_tuer VER 2.63 1.01 0.03 0.00 imp:pre:2p;ind:pre:2p; +entre-tuions entre_tuer VER 2.63 1.01 0.01 0.00 ind:imp:1p; +entre-tués entre_tuer VER m p 2.63 1.01 0.34 0.07 par:pas; +entrée-sortie entrée_sortie NOM f s 0.01 0.00 0.01 0.00 +espace-temps espace_temps NOM m 1.63 0.07 1.63 0.07 +esprit-de-sel esprit_de_sel NOM m s 0.00 0.07 0.00 0.07 +esprit-de-vin esprit_de_vin NOM m s 0.01 0.20 0.01 0.20 +essuie-glace essuie_glace NOM m s 1.00 2.91 0.38 1.01 +essuie-glaces essuie_glace NOM m p 1.00 2.91 0.62 1.89 +essuie-mains essuie_mains NOM m 0.23 0.27 0.23 0.27 +essuie-tout essuie_tout NOM m 0.11 0.14 0.11 0.14 +est-africain est_africain ADJ m s 0.01 0.00 0.01 0.00 +est-allemand est_allemand ADJ m s 0.67 0.00 0.31 0.00 +est-allemande est_allemand ADJ f s 0.67 0.00 0.23 0.00 +est-allemands est_allemand ADJ m p 0.67 0.00 0.13 0.00 +est-ce-que est_ce_que ADV 1.34 0.20 1.34 0.20 +est-ce qu est_ce_qu ADV 3.41 0.07 3.41 0.07 +est-ce que est_ce_que ADV 1159.41 322.23 1159.41 322.23 +est-ce est_ce ADV 0.05 0.20 0.05 0.20 +est-ouest est_ouest ADJ 0.38 0.41 0.38 0.41 +et caetera et_caetera ADV 0.72 0.88 0.72 0.88 +et cetera et_cetera ADV 1.14 0.74 1.14 0.74 +et seq et_seq ADV 0.00 0.07 0.00 0.07 +eunuques-espions eunuques_espion NOM m p 0.00 0.14 0.00 0.14 +euro-africaines euro_africain ADJ f p 0.00 0.07 0.00 0.07 +eux-mêmes eux_mêmes PRO:per m p 9.96 48.04 9.96 48.04 +ex-abbé ex_abbé NOM m s 0.00 0.07 0.00 0.07 +ex-acteur ex_acteur NOM m s 0.00 0.07 0.00 0.07 +ex-adjudant ex_adjudant NOM m s 0.00 0.14 0.00 0.14 +ex-agent ex_agent NOM m s 0.09 0.00 0.09 0.00 +ex-alcoolo ex_alcoolo NOM s 0.01 0.00 0.01 0.00 +ex-allée ex_allée NOM f s 0.00 0.07 0.00 0.07 +ex-amant ex_amant NOM m s 0.19 0.34 0.17 0.07 +ex-amante ex_amant NOM f s 0.19 0.34 0.01 0.27 +ex-amants ex_amant NOM m p 0.19 0.34 0.01 0.00 +ex-ambassadeur ex_ambassadeur NOM m s 0.01 0.00 0.01 0.00 +ex-amour ex_amour NOM m s 0.01 0.00 0.01 0.00 +ex-appartement ex_appartement NOM m s 0.00 0.07 0.00 0.07 +ex-apprenti ex_apprenti NOM m s 0.00 0.07 0.00 0.07 +ex-arriviste ex_arriviste NOM s 0.00 0.07 0.00 0.07 +ex-artiste ex_artiste NOM s 0.00 0.07 0.00 0.07 +ex-assistant ex_assistant NOM m s 0.07 0.00 0.02 0.00 +ex-assistante ex_assistant NOM f s 0.07 0.00 0.04 0.00 +ex-associé ex_associé NOM m s 0.13 0.07 0.08 0.07 +ex-associés ex_associé NOM m p 0.13 0.07 0.05 0.00 +ex-ballerine ex_ballerine NOM f s 0.01 0.00 0.01 0.00 +ex-banquier ex_banquier NOM m s 0.01 0.00 0.01 0.00 +ex-barman ex_barman NOM m s 0.01 0.07 0.01 0.07 +ex-basketteur ex_basketteur NOM m s 0.00 0.07 0.00 0.07 +ex-batteur ex_batteur NOM m s 0.00 0.07 0.00 0.07 +ex-beatnik ex_beatnik NOM s 0.00 0.07 0.00 0.07 +ex-belle-mère ex_belle_mère NOM f s 0.05 0.00 0.05 0.00 +ex-bibliothécaire ex_bibliothécaire NOM s 0.00 0.07 0.00 0.07 +ex-boss ex_boss NOM m 0.01 0.00 0.01 0.00 +ex-boxeur ex_boxeur NOM m s 0.16 0.00 0.16 0.00 +ex-branleurs ex_branleur NOM m p 0.00 0.07 0.00 0.07 +ex-buteur ex_buteur NOM m s 0.01 0.00 0.01 0.00 +ex-caïd ex_caïd NOM m s 0.01 0.00 0.01 0.00 +ex-camarades ex_camarade NOM p 0.01 0.00 0.01 0.00 +ex-capitaine ex_capitaine NOM m s 0.04 0.00 0.04 0.00 +ex-champion ex_champion NOM m s 0.75 0.14 0.71 0.14 +ex-championne ex_champion NOM f s 0.75 0.14 0.01 0.00 +ex-champions ex_champion NOM m p 0.75 0.14 0.03 0.00 +ex-chanteur ex_chanteur NOM m s 0.02 0.07 0.00 0.07 +ex-chanteuse ex_chanteur NOM f s 0.02 0.07 0.02 0.00 +ex-chauffeur ex_chauffeur NOM m s 0.14 0.07 0.14 0.07 +ex-chef ex_chef NOM s 0.20 0.14 0.20 0.14 +ex-chiropracteur ex_chiropracteur NOM m s 0.01 0.00 0.01 0.00 +ex-citation ex_citation NOM f s 0.01 0.00 0.01 0.00 +ex-citoyen ex_citoyen NOM m s 0.01 0.00 0.01 0.00 +ex-civils ex_civil NOM m p 0.01 0.00 0.01 0.00 +ex-collabo ex_collabo NOM s 0.00 0.07 0.00 0.07 +ex-collègue ex_collègue NOM s 0.30 0.14 0.03 0.14 +ex-collègues ex_collègue NOM p 0.30 0.14 0.27 0.00 +ex-colonel ex_colonel NOM m s 0.01 0.14 0.01 0.14 +ex-commando ex_commando NOM m s 0.05 0.00 0.05 0.00 +ex-concierge ex_concierge NOM s 0.00 0.07 0.00 0.07 +ex-contrebandier ex_contrebandier NOM m s 0.02 0.00 0.02 0.00 +ex-copain ex_copain NOM m s 0.28 0.00 0.26 0.00 +ex-copains ex_copain NOM m p 0.28 0.00 0.02 0.00 +ex-copine ex_copine NOM f s 0.71 0.00 0.54 0.00 +ex-copines ex_copine NOM f p 0.71 0.00 0.18 0.00 +ex-corps ex_corps NOM m 0.01 0.00 0.01 0.00 +ex-couple ex_couple NOM m s 0.01 0.00 0.01 0.00 +ex-danseuse ex_danseur NOM f s 0.01 0.14 0.01 0.14 +ex-dealer ex_dealer NOM m s 0.02 0.00 0.02 0.00 +ex-dieu ex_dieu NOM m s 0.01 0.00 0.01 0.00 +ex-diva ex_diva NOM f s 0.00 0.07 0.00 0.07 +ex-drôlesse ex_drôlesse NOM f s 0.00 0.07 0.00 0.07 +ex-drifter ex_drifter NOM m s 0.00 0.07 0.00 0.07 +ex-dulcinée ex_dulcinée NOM f s 0.00 0.07 0.00 0.07 +ex-démon ex_démon NOM m s 0.10 0.00 0.09 0.00 +ex-démons ex_démon NOM m p 0.10 0.00 0.01 0.00 +ex-enseigne ex_enseigne NOM m s 0.00 0.07 0.00 0.07 +ex-enzymes ex_enzyme NOM f p 0.00 0.07 0.00 0.07 +ex-esclavagistes ex_esclavagiste NOM p 0.01 0.00 0.01 0.00 +ex-femme ex_femme NOM f s 6.75 1.62 6.32 1.62 +ex-femmes ex_femme NOM f p 6.75 1.62 0.43 0.00 +ex-fiancé ex_fiancé NOM m s 0.18 0.07 0.10 0.00 +ex-fiancée ex_fiancé NOM f s 0.18 0.07 0.08 0.07 +ex-fils ex_fils NOM m 0.00 0.07 0.00 0.07 +ex-flic ex_flic NOM m s 0.27 0.07 0.24 0.07 +ex-flics ex_flic NOM m p 0.27 0.07 0.03 0.00 +ex-forçats ex_forçat NOM m p 0.01 0.00 0.01 0.00 +ex-fusilleurs ex_fusilleur NOM m p 0.00 0.07 0.00 0.07 +ex-gang ex_gang NOM m s 0.00 0.07 0.00 0.07 +ex-garde ex_garde NOM f s 0.14 0.20 0.00 0.14 +ex-gardes ex_garde NOM f p 0.14 0.20 0.14 0.07 +ex-gauchiste ex_gauchiste ADJ m s 0.00 0.07 0.00 0.07 +ex-gauchiste ex_gauchiste NOM s 0.00 0.07 0.00 0.07 +ex-gendre ex_gendre NOM m s 0.01 0.00 0.01 0.00 +ex-gonzesse ex_gonzesse NOM f s 0.00 0.14 0.00 0.14 +ex-gouverneur ex_gouverneur NOM m s 0.06 0.14 0.06 0.14 +ex-gravosse ex_gravosse NOM f s 0.00 0.07 0.00 0.07 +ex-griot ex_griot NOM m s 0.00 0.07 0.00 0.07 +ex-griveton ex_griveton NOM m s 0.00 0.07 0.00 0.07 +ex-grognasse ex_grognasse NOM f s 0.00 0.07 0.00 0.07 +ex-groupe ex_groupe NOM m s 0.00 0.07 0.00 0.07 +ex-guenilles ex_guenille NOM f p 0.00 0.07 0.00 0.07 +ex-guitariste ex_guitariste NOM s 0.00 0.07 0.00 0.07 +ex-génie ex_génie NOM m s 0.00 0.07 0.00 0.07 +ex-hôpital ex_hôpital NOM m s 0.00 0.07 0.00 0.07 +ex-hippies ex_hippie NOM p 0.02 0.00 0.02 0.00 +ex-homme-grenouille ex_homme_grenouille NOM m s 0.01 0.00 0.01 0.00 +ex-homme ex_homme NOM m s 0.06 0.00 0.06 0.00 +ex-immeuble ex_immeuble NOM m s 0.00 0.07 0.00 0.07 +ex-inspecteur ex_inspecteur NOM m s 0.03 0.00 0.02 0.00 +ex-inspecteurs ex_inspecteur NOM m p 0.03 0.00 0.01 0.00 +ex-journaliste ex_journaliste NOM s 0.02 0.07 0.02 0.07 +ex-junkie ex_junkie NOM m s 0.03 0.00 0.03 0.00 +ex-kid ex_kid NOM m s 0.00 0.27 0.00 0.27 +ex-leader ex_leader NOM m s 0.02 0.00 0.02 0.00 +ex-libris ex_libris NOM m 0.00 0.14 0.00 0.14 +ex-lieutenant ex_lieutenant NOM m s 0.01 0.00 0.01 0.00 +ex-lit ex_lit NOM m s 0.00 0.07 0.00 0.07 +ex-légionnaire ex_légionnaire NOM m s 0.00 0.07 0.00 0.07 +ex-lycée ex_lycée NOM m s 0.00 0.07 0.00 0.07 +ex-maître ex_maître NOM m s 0.00 0.07 0.00 0.07 +ex-madame ex_madame NOM f 0.03 0.07 0.03 0.07 +ex-maire ex_maire NOM m s 0.01 0.00 0.01 0.00 +ex-mari ex_mari NOM m s 5.05 1.08 4.87 1.08 +ex-marine ex_marine NOM f s 0.07 0.00 0.07 0.00 +ex-maris ex_mari NOM m p 5.05 1.08 0.19 0.00 +ex-mecs ex_mec NOM m p 0.10 0.00 0.10 0.00 +ex-membre ex_membre NOM m s 0.03 0.00 0.03 0.00 +ex-mercenaires ex_mercenaire NOM p 0.01 0.00 0.01 0.00 +ex-militaire ex_militaire NOM s 0.08 0.00 0.05 0.00 +ex-militaires ex_militaire NOM p 0.08 0.00 0.03 0.00 +ex-ministre ex_ministre NOM m s 0.06 0.41 0.04 0.41 +ex-ministres ex_ministre NOM m p 0.06 0.41 0.01 0.00 +ex-miss ex_miss NOM f 0.05 0.00 0.05 0.00 +ex-monteur ex_monteur NOM m s 0.02 0.00 0.02 0.00 +ex-motard ex_motard NOM m s 0.01 0.00 0.01 0.00 +ex-nana ex_nana NOM f s 0.12 0.00 0.12 0.00 +ex-officier ex_officier NOM m s 0.05 0.14 0.05 0.14 +ex-opérateur ex_opérateur NOM m s 0.00 0.07 0.00 0.07 +ex-palmes ex_palme NOM f p 0.14 0.00 0.14 0.00 +ex-para ex_para NOM m s 0.02 0.14 0.02 0.14 +ex-partenaire ex_partenaire NOM s 0.18 0.00 0.18 0.00 +ex-patron ex_patron NOM m s 0.20 0.00 0.20 0.00 +ex-pensionnaires ex_pensionnaire NOM p 0.00 0.07 0.00 0.07 +ex-perroquet ex_perroquet NOM m s 0.01 0.00 0.01 0.00 +ex-petit ex_petit NOM m s 0.68 0.00 0.38 0.00 +ex-petite ex_petit NOM f s 0.68 0.00 0.28 0.00 +ex-petits ex_petit NOM m p 0.68 0.00 0.03 0.00 +ex-pharmaciennes ex_pharmacien NOM f p 0.00 0.07 0.00 0.07 +ex-pilote ex_pilote ADJ m s 0.00 0.14 0.00 0.14 +ex-planète ex_planète NOM f s 0.01 0.00 0.01 0.00 +ex-planton ex_planton NOM m s 0.00 0.07 0.00 0.07 +ex-plaquée ex_plaqué ADJ f s 0.00 0.07 0.00 0.07 +ex-plâtrier ex_plâtrier NOM m s 0.00 0.07 0.00 0.07 +ex-poivrots ex_poivrot NOM m p 0.01 0.00 0.01 0.00 +ex-premier ex_premier ADJ m s 0.01 0.00 0.01 0.00 +ex-premier ex_premier NOM m s 0.01 0.00 0.01 0.00 +ex-primaire ex_primaire NOM s 0.00 0.07 0.00 0.07 +ex-prison ex_prison NOM f s 0.01 0.00 0.01 0.00 +ex-procureur ex_procureur NOM m s 0.03 0.00 0.03 0.00 +ex-profession ex_profession NOM f s 0.00 0.07 0.00 0.07 +ex-profileur ex_profileur NOM m s 0.01 0.00 0.01 0.00 +ex-promoteur ex_promoteur NOM m s 0.01 0.00 0.01 0.00 +ex-propriétaire ex_propriétaire NOM s 0.04 0.07 0.04 0.07 +ex-présentateur ex_présentateur NOM m s 0.00 0.07 0.00 0.07 +ex-président ex_président NOM m s 0.71 0.00 0.60 0.00 +ex-présidents ex_président NOM m p 0.71 0.00 0.11 0.00 +ex-prêtre ex_prêtre NOM m s 0.01 0.00 0.01 0.00 +ex-putain ex_putain NOM f s 0.00 0.07 0.00 0.07 +ex-putes ex_pute NOM f p 0.01 0.00 0.01 0.00 +ex-quincaillerie ex_quincaillerie NOM f s 0.00 0.14 0.00 0.14 +ex-quincaillier ex_quincaillier NOM m s 0.00 0.27 0.00 0.27 +ex-rebelle ex_rebelle ADJ s 0.00 0.07 0.00 0.07 +ex-reine ex_reine NOM f s 0.02 0.00 0.02 0.00 +ex-roi ex_roi NOM m s 0.01 0.20 0.01 0.20 +ex-républiques ex_république NOM f p 0.01 0.00 0.01 0.00 +ex-résidence ex_résidence NOM f s 0.01 0.00 0.01 0.00 +ex-révolutionnaire ex_révolutionnaire NOM s 0.00 0.07 0.00 0.07 +ex-sacs ex_sac NOM m p 0.00 0.07 0.00 0.07 +ex-secrétaire ex_secrétaire NOM s 0.07 0.00 0.07 0.00 +ex-sergent ex_sergent NOM m s 0.02 0.14 0.02 0.07 +ex-sergents ex_sergent NOM m p 0.02 0.14 0.00 0.07 +ex-soldats ex_soldat NOM m p 0.00 0.07 0.00 0.07 +ex-solistes ex_soliste NOM p 0.00 0.07 0.00 0.07 +ex-standardiste ex_standardiste NOM s 0.00 0.07 0.00 0.07 +ex-star ex_star NOM f s 0.14 0.00 0.14 0.00 +ex-strip-teaseuse ex_strip_teaseur NOM f s 0.00 0.07 0.00 0.07 +ex-séminariste ex_séminariste NOM s 0.00 0.07 0.00 0.07 +ex-sénateur ex_sénateur NOM m s 0.00 0.14 0.00 0.14 +ex-super ex_super ADJ m s 0.14 0.00 0.14 0.00 +ex-sévère ex_sévère ADJ f s 0.00 0.07 0.00 0.07 +ex-taulard ex_taulard NOM m s 0.38 0.14 0.28 0.07 +ex-taulards ex_taulard NOM m p 0.38 0.14 0.10 0.07 +ex-teinturier ex_teinturier NOM m s 0.01 0.00 0.01 0.00 +ex-tirailleur ex_tirailleur NOM m s 0.00 0.07 0.00 0.07 +ex-tueur ex_tueur NOM m s 0.01 0.00 0.01 0.00 +ex-tuteur ex_tuteur NOM m s 0.01 0.00 0.01 0.00 +ex-élève ex_élève NOM s 0.02 0.07 0.02 0.07 +ex-union ex_union NOM f s 0.00 0.07 0.00 0.07 +ex-épouse ex_épouse NOM f s 0.30 0.27 0.28 0.27 +ex-épouses ex_épouse NOM f p 0.30 0.27 0.02 0.00 +ex-équipier ex_équipier NOM m s 0.07 0.00 0.07 0.00 +ex-usine ex_usine NOM f s 0.01 0.00 0.01 0.00 +ex-vedette ex_vedette NOM f s 0.11 0.07 0.11 0.07 +ex-violeurs ex_violeur NOM m p 0.01 0.00 0.01 0.00 +ex-voto ex_voto NOM m 0.48 1.69 0.48 1.69 +ex abrupto ex_abrupto ADV 0.00 0.07 0.00 0.07 +ex nihilo ex_nihilo ADV 0.00 0.14 0.00 0.14 +expert-comptable expert_comptable NOM m s 0.23 0.20 0.23 0.20 +extra-dry extra_dry NOM m 0.00 0.07 0.00 0.07 +extra-fin extra_fin ADJ m s 0.00 0.34 0.00 0.27 +extra-fins extra_fin ADJ m p 0.00 0.34 0.00 0.07 +extra-fort extra_fort ADJ m s 0.11 0.20 0.04 0.07 +extra-forte extra_fort ADJ f s 0.11 0.20 0.08 0.14 +extra-lucide extra_lucide ADJ f s 0.05 0.20 0.04 0.14 +extra-lucides extra_lucide ADJ p 0.05 0.20 0.01 0.07 +extra-muros extra_muros ADJ f p 0.00 0.07 0.00 0.07 +extra-muros extra_muros ADV 0.00 0.07 0.00 0.07 +extra-sensoriel extra_sensoriel ADJ m s 0.06 0.00 0.02 0.00 +extra-sensorielle extra_sensoriel ADJ f s 0.06 0.00 0.04 0.00 +extra-souples extra_souple ADJ f p 0.00 0.07 0.00 0.07 +extra-terrestre extra_terrestre NOM s 3.71 0.34 1.35 0.27 +extra-terrestres extra_terrestre NOM p 3.71 0.34 2.36 0.07 +extra-utérin extra_utérin ADJ m s 0.10 0.00 0.03 0.00 +extra-utérine extra_utérin ADJ f s 0.10 0.00 0.07 0.00 +extrême-onction extrême_onction NOM f s 0.42 1.62 0.42 1.55 +extrême-orient extrême_orient NOM m s 0.00 0.07 0.00 0.07 +extrême-orientale extrême_oriental ADJ f s 0.00 0.07 0.00 0.07 +extrêmes-onctions extrême_onction NOM f p 0.42 1.62 0.00 0.07 +eye-liner eye_liner NOM m s 0.22 0.27 0.22 0.27 +faîtes-la-moi faîtes_la_moi NOM m p 0.01 0.00 0.01 0.00 +fac-similé fac_similé NOM m s 0.03 0.34 0.02 0.27 +fac-similés fac_similé NOM m p 0.03 0.34 0.01 0.07 +face-à-face face_à_face NOM m 0.00 0.47 0.00 0.47 +face-à-main face_à_main NOM m s 0.00 0.54 0.00 0.54 +faces-à-main faces_à_main NOM m p 0.00 0.07 0.00 0.07 +fair-play fair_play NOM m 0.60 0.14 0.60 0.14 +faire-part faire_part NOM m 0.65 3.04 0.65 3.04 +faire-valoir faire_valoir NOM m 0.20 0.68 0.20 0.68 +fait-divers fait_divers NOM m 0.00 0.20 0.00 0.20 +fait-tout fait_tout NOM m 0.01 0.74 0.01 0.74 +faits-divers faits_divers NOM m p 0.00 0.07 0.00 0.07 +fan-club fan_club NOM m s 0.28 0.14 0.28 0.14 +far-west far_west NOM m s 0.01 0.07 0.01 0.07 +fast-food fast_food NOM m s 2.34 0.47 1.56 0.34 +fast-foods fast_food NOM m p 2.34 0.47 0.34 0.07 +fast food fast_food NOM m s 2.34 0.47 0.43 0.07 +fausse-couche fausse_couche NOM f s 0.07 0.20 0.07 0.20 +fauteuil-club fauteuil_club NOM m s 0.00 0.27 0.00 0.27 +fauteuils-club fauteuils_club NOM m p 0.00 0.07 0.00 0.07 +faux-bond faux_bond NOM m 0.01 0.07 0.01 0.07 +faux-bourdon faux_bourdon NOM m s 0.02 0.07 0.02 0.07 +faux-col faux_col NOM m s 0.02 0.34 0.02 0.34 +faux-cul faux_cul NOM m s 0.41 0.07 0.41 0.07 +faux-filet faux_filet NOM m s 0.04 0.34 0.04 0.34 +faux-frère faux_frère ADJ m s 0.01 0.00 0.01 0.00 +faux-fuyant faux_fuyant NOM m s 0.22 1.22 0.02 0.47 +faux-fuyants faux_fuyant NOM m p 0.22 1.22 0.20 0.74 +faux-monnayeur faux_monnayeur NOM m s 0.26 0.61 0.01 0.14 +faux-monnayeurs faux_monnayeur NOM m p 0.26 0.61 0.25 0.47 +faux-pas faux_pas NOM m 0.38 0.14 0.38 0.14 +faux-pont faux_pont NOM m s 0.01 0.00 0.01 0.00 +faux-sauniers faux_saunier NOM m p 0.00 0.07 0.00 0.07 +faux-semblant faux_semblant NOM m s 0.46 1.49 0.37 0.74 +faux-semblants faux_semblant NOM m p 0.46 1.49 0.09 0.74 +feed-back feed_back NOM m 0.04 0.00 0.04 0.00 +feld-maréchal feld_maréchal NOM m s 0.32 0.27 0.32 0.27 +femme-enfant femme_enfant NOM f s 0.35 0.27 0.35 0.27 +femme-fleur femme_fleur NOM f s 0.00 0.07 0.00 0.07 +femme-objet femme_objet NOM f s 0.03 0.07 0.03 0.07 +femme-refuge femme_refuge NOM f s 0.00 0.07 0.00 0.07 +femme-robot femme_robot NOM f s 0.07 0.00 0.07 0.00 +fer-blanc fer_blanc NOM m s 0.08 2.84 0.08 2.84 +fermes-hôtels fermes_hôtel NOM f p 0.00 0.07 0.00 0.07 +ferry-boat ferry_boat NOM m s 0.14 0.20 0.14 0.20 +fesse-mathieu fesse_mathieu NOM m s 0.00 0.07 0.00 0.07 +feuille-morte feuille_morte ADJ f s 0.00 0.07 0.00 0.07 +fier-à-bras fier_à_bras NOM m 0.00 0.14 0.00 0.14 +fiers-à-bras fiers_à_bras NOM m p 0.00 0.27 0.00 0.27 +fifty-fifty fifty_fifty ADV 0.66 0.14 0.66 0.14 +fil-à-fil fil_à_fil NOM m 0.00 0.34 0.00 0.34 +file-la-moi file_la_moi NOM f s 0.01 0.00 0.01 0.00 +fille-mère fille_mère NOM f s 0.39 0.41 0.39 0.41 +film-livre film_livre NOM m s 0.00 0.07 0.00 0.07 +films-annonces films_annonce NOM m p 0.00 0.07 0.00 0.07 +five o'clock five_o_clock NOM m 0.01 0.14 0.01 0.14 +fixe-chaussettes fixe_chaussette NOM f p 0.13 0.20 0.13 0.20 +flanc-garde flanc_garde NOM f s 0.04 0.27 0.00 0.14 +flancs-gardes flanc_garde NOM f p 0.04 0.27 0.04 0.14 +flash-back flash_back NOM m 0.33 0.74 0.33 0.74 +flatus vocis flatus_vocis NOM m 0.00 0.07 0.00 0.07 +flip-flap flip_flap NOM m 0.00 0.14 0.00 0.14 +flip-flop flip_flop NOM m 0.07 0.00 0.07 0.00 +footballeur-vedette footballeur_vedette NOM m s 0.01 0.00 0.01 0.00 +foreign office foreign_office NOM m s 0.00 2.50 0.00 2.50 +fou-fou fou_fou ADJ m s 0.08 0.00 0.08 0.00 +fou-rire fou_rire NOM m s 0.02 0.14 0.02 0.14 +fourmi-lion fourmi_lion NOM m s 0.00 0.14 0.00 0.07 +fourmis-lions fourmi_lion NOM m p 0.00 0.14 0.00 0.07 +fourre-tout fourre_tout NOM m 0.28 0.54 0.28 0.54 +fox-terrier fox_terrier NOM m s 0.04 0.47 0.04 0.41 +fox-terriers fox_terrier NOM m p 0.04 0.47 0.00 0.07 +fox-trot fox_trot NOM m 0.50 1.62 0.50 1.62 +fraiseur-outilleur fraiseur_outilleur NOM m s 0.00 0.07 0.00 0.07 +franc-comtois franc_comtois NOM m 0.00 0.07 0.00 0.07 +franc-comtoise franc_comtois ADJ f s 0.00 0.07 0.00 0.07 +franc-jeu franc_jeu NOM m s 0.56 0.00 0.56 0.00 +franc-maçon franc_maçon NOM m s 0.94 2.09 0.38 0.54 +franc-maçonne franc_maçon NOM f s 0.94 2.09 0.00 0.27 +franc-maçonnerie franc_maçonnerie NOM f s 0.17 0.81 0.17 0.81 +franc-parler franc_parler NOM m s 0.53 0.27 0.53 0.27 +franc-tireur franc_tireur NOM m s 0.64 2.30 0.10 0.81 +franco-africain franco_africain ADJ m s 0.14 0.07 0.14 0.07 +franco-algérienne franco_algérien ADJ f s 0.00 0.07 0.00 0.07 +franco-allemand franco_allemand ADJ m s 0.11 0.61 0.00 0.14 +franco-allemande franco_allemand ADJ f s 0.11 0.61 0.11 0.34 +franco-allemandes franco_allemand ADJ f p 0.11 0.61 0.00 0.14 +franco-américain franco_américain ADJ m s 0.04 0.68 0.01 0.07 +franco-américaine franco_américain ADJ f s 0.04 0.68 0.03 0.27 +franco-américaines franco_américain ADJ f p 0.04 0.68 0.00 0.20 +franco-américains franco_américain ADJ m p 0.04 0.68 0.00 0.14 +franco-anglais franco_anglais ADJ m s 0.01 0.74 0.01 0.27 +franco-anglaise franco_anglais ADJ f s 0.01 0.74 0.00 0.41 +franco-anglaises franco_anglais NOM f p 0.01 0.00 0.01 0.00 +franco-belge franco_belge ADJ f s 0.00 0.14 0.00 0.14 +franco-britannique franco_britannique ADJ f s 0.14 2.43 0.00 1.35 +franco-britanniques franco_britannique ADJ p 0.14 2.43 0.14 1.08 +franco-canadien franco_canadien NOM m s 0.01 0.00 0.01 0.00 +franco-chinoises franco_chinois ADJ f p 0.00 0.07 0.00 0.07 +franco-italienne franco_italienne ADJ f s 0.01 0.00 0.01 0.00 +franco-japonaise franco_japonais ADJ f s 0.01 0.00 0.01 0.00 +franco-libanais franco_libanais ADJ m p 0.00 0.14 0.00 0.14 +franco-mongole franco_mongol ADJ f s 0.00 0.14 0.00 0.14 +franco-polonaise franco_polonais ADJ f s 0.00 0.07 0.00 0.07 +franco-russe franco_russe ADJ s 0.00 1.42 0.00 1.42 +franco-russes franco_russe NOM p 0.00 0.20 0.00 0.07 +franco-soviétique franco_soviétique ADJ s 0.00 0.14 0.00 0.14 +franco-syrien franco_syrien ADJ m s 0.00 0.14 0.00 0.14 +franco-turque franco_turque ADJ f s 0.00 0.14 0.00 0.14 +franco-vietnamien franco_vietnamien ADJ m s 0.00 0.07 0.00 0.07 +francs-bourgeois francs_bourgeois NOM m p 0.00 0.20 0.00 0.20 +francs-maçons franc_maçon NOM m p 0.94 2.09 0.57 1.28 +francs-tireurs franc_tireur NOM m p 0.64 2.30 0.54 1.49 +free-jazz free_jazz NOM m 0.00 0.07 0.00 0.07 +free-lance free_lance NOM s 0.20 0.07 0.20 0.07 +free jazz free_jazz NOM m 0.00 0.07 0.00 0.07 +fric-frac fric_frac NOM m 0.25 0.41 0.25 0.41 +frise-poulet frise_poulet NOM m s 0.01 0.00 0.01 0.00 +frotti-frotta frotti_frotta NOM m 0.04 0.20 0.04 0.20 +frou-frou frou_frou NOM m s 0.23 0.47 0.09 0.41 +frous-frous frou_frou NOM m p 0.23 0.47 0.14 0.07 +fuel-oil fuel_oil NOM m s 0.00 0.07 0.00 0.07 +full-contact full_contact NOM m s 0.04 0.00 0.04 0.00 +fume-cigarette fume_cigarette NOM m s 0.27 2.09 0.17 1.82 +fume-cigarettes fume_cigarette NOM m p 0.27 2.09 0.10 0.27 +fur et à mesure fur_et_à_mesure NOM m s 1.62 17.84 1.62 17.84 +fusil-mitrailleur fusil_mitrailleur NOM m s 0.37 0.41 0.37 0.34 +fusiliers-marins fusilier_marin NOM m p 0.04 1.08 0.04 1.08 +fusils-mitrailleurs fusil_mitrailleur NOM m p 0.37 0.41 0.00 0.07 +fête-dieu fête_dieu NOM f s 0.14 0.54 0.14 0.54 +gagne-pain gagne_pain NOM m 2.01 1.82 2.01 1.82 +gagne-petit gagne_petit NOM m 0.16 0.68 0.16 0.68 +gaine-culotte gaine_culotte NOM f s 0.01 0.07 0.01 0.07 +galerie-refuge galerie_refuge NOM f s 0.00 0.07 0.00 0.07 +galeries-refuges galeries_refuge NOM f p 0.00 0.07 0.00 0.07 +gallo-romain gallo_romain ADJ m s 0.00 0.14 0.00 0.07 +gallo-romains gallo_romain ADJ m p 0.00 0.14 0.00 0.07 +garde-barrière garde_barrière NOM m s 0.00 0.95 0.00 0.95 +garde-boue garde_boue NOM m 0.05 1.08 0.05 1.08 +garde-côte garde_côte NOM m s 1.90 0.14 0.54 0.07 +garde-côtes garde_côte NOM m p 1.90 0.14 1.36 0.07 +garde-champêtre garde_champêtre NOM m s 0.00 0.54 0.00 0.47 +garde-chasse garde_chasse NOM m s 0.22 1.42 0.22 1.42 +garde-chiourme garde_chiourme NOM m s 0.11 0.74 0.06 0.54 +garde-corps garde_corps NOM m 0.01 0.34 0.01 0.34 +garde-feu garde_feu NOM m 0.05 0.00 0.05 0.00 +garde-forestier garde_forestier NOM s 0.16 0.14 0.16 0.14 +garde-fou garde_fou NOM m s 0.30 1.89 0.25 1.49 +garde-fous garde_fou NOM m p 0.30 1.89 0.05 0.41 +garde-frontière garde_frontière NOM m s 0.16 0.00 0.16 0.00 +garde-malade garde_malade NOM s 0.44 1.15 0.44 1.15 +garde-manger garde_manger NOM m 0.68 2.77 0.68 2.77 +garde-meuble garde_meuble NOM m 0.34 0.20 0.34 0.20 +garde-meubles garde_meubles NOM m 0.16 0.34 0.16 0.34 +garde-à-vous garde_à_vous NOM m 0.00 5.88 0.00 5.88 +garde-pêche garde_pêche NOM m s 0.01 0.07 0.01 0.07 +garde-robe garde_robe NOM f s 2.19 2.77 2.17 2.70 +garde-robes garde_robe NOM f p 2.19 2.77 0.03 0.07 +garde-voie garde_voie NOM m s 0.00 0.07 0.00 0.07 +garde-vue garde_vue NOM m 0.25 0.00 0.25 0.00 +garden-party garden_party NOM f s 0.22 0.34 0.22 0.34 +gardes-barrières gardes_barrière NOM p 0.00 0.14 0.00 0.14 +gardes-côtes gardes_côte NOM m p 0.31 0.00 0.31 0.00 +gardes-champêtres garde_champêtre NOM m p 0.00 0.54 0.00 0.07 +gardes-chasse gardes_chasse NOM m s 0.03 0.41 0.03 0.41 +gardes-chiourme garde_chiourme NOM m p 0.11 0.74 0.04 0.20 +gardes-chiourmes gardes_chiourme NOM p 0.03 0.14 0.03 0.14 +gardes-françaises garde_française NOM m p 0.00 0.07 0.00 0.07 +gardes-frontières gardes_frontière NOM m p 0.03 0.41 0.03 0.41 +gardes-voies gardes_voie NOM m p 0.00 0.07 0.00 0.07 +gardien-chef gardien_chef NOM m s 0.22 0.27 0.22 0.27 +gas-oil gas_oil NOM m s 0.02 0.27 0.02 0.27 +gastro-entérite gastro_entérite NOM f s 0.04 0.07 0.04 0.07 +gastro-entérologue gastro_entérologue NOM s 0.04 0.14 0.04 0.07 +gastro-entérologues gastro_entérologue NOM p 0.04 0.14 0.00 0.07 +gastro-intestinal gastro_intestinal ADJ m s 0.12 0.00 0.04 0.00 +gastro-intestinale gastro_intestinal ADJ f s 0.12 0.00 0.02 0.00 +gastro-intestinaux gastro_intestinal ADJ m p 0.12 0.00 0.05 0.00 +gengis khan gengis_khan NOM m s 0.00 0.14 0.00 0.14 +gentleman-farmer gentleman_farmer NOM m s 0.14 0.27 0.14 0.20 +gentlemen-farmers gentleman_farmer NOM m p 0.14 0.27 0.00 0.07 +germano-anglaises germano_anglais ADJ f p 0.00 0.07 0.00 0.07 +germano-belge germano_belge ADJ f s 0.01 0.00 0.01 0.00 +germano-irlandais germano_irlandais ADJ m 0.03 0.00 0.03 0.00 +germano-russe germano_russe ADJ m s 0.00 0.27 0.00 0.27 +germano-soviétique germano_soviétique ADJ s 0.00 1.82 0.00 1.82 +gin-fizz gin_fizz NOM m 0.04 1.01 0.04 1.01 +gin-rami gin_rami NOM m s 0.04 0.07 0.04 0.07 +gin-rummy gin_rummy NOM m s 0.05 0.14 0.05 0.14 +girl-scout girl_scout NOM f s 0.06 0.14 0.06 0.14 +girl friend girl_friend NOM f s 0.14 0.00 0.14 0.00 +gla-gla gla_gla ADJ m s 0.00 0.14 0.00 0.14 +glisse-la-moi glisse_la_moi NOM f s 0.10 0.00 0.10 0.00 +globe-trotter globe_trotter NOM m s 0.22 0.41 0.20 0.27 +globe-trotters globe_trotter NOM m p 0.22 0.41 0.02 0.14 +gna gna gna_gna ONO 0.14 0.14 0.14 0.14 +gnian-gnian gnian_gnian NOM m s 0.01 0.00 0.01 0.00 +gobe-mouches gobe_mouches NOM m 0.02 0.14 0.02 0.14 +golf-club golf_club NOM m s 0.01 0.07 0.01 0.07 +gorge-de-pigeon gorge_de_pigeon ADJ m s 0.01 0.14 0.01 0.14 +gâte-bois gâte_bois NOM m 0.00 0.07 0.00 0.07 +gâte-sauce gâte_sauce NOM m s 0.00 0.14 0.00 0.14 +gouzi-gouzi gouzi_gouzi NOM m 0.06 0.07 0.06 0.07 +grand-angle grand_angle NOM m s 0.06 0.00 0.06 0.00 +grand-chose grand_chose PRO:ind m s 28.01 36.08 28.01 36.08 +grand-duc grand_duc NOM m s 2.03 1.76 1.90 0.88 +grand-ducale grand_ducal ADJ f s 0.00 0.07 0.00 0.07 +grand-duché grand_duché NOM m s 0.01 0.07 0.01 0.07 +grand-faim grand_faim ADV 0.00 0.20 0.00 0.20 +grand-guignol grand_guignol NOM m s 0.01 0.00 0.01 0.00 +grand-guignolesque grand_guignolesque ADJ s 0.01 0.00 0.01 0.00 +grand-hôtel grand_hôtel NOM m s 0.00 0.07 0.00 0.07 +grand-hâte grand_hâte ADV 0.00 0.07 0.00 0.07 +grand-maître grand_maître NOM m s 0.10 0.07 0.10 0.07 +grand-maman grand_papa NOM f s 2.35 0.95 0.84 0.27 +grand-messe grand_messe NOM f s 0.29 1.28 0.29 1.28 +grand-mère grand_mère NOM f s 73.22 94.59 72.39 91.76 +grand-mères grand_mère NOM f p 73.22 94.59 0.53 2.16 +grand-neige grand_neige NOM m s 0.00 0.07 0.00 0.07 +grand-officier grand_officier NOM m s 0.00 0.07 0.00 0.07 +grand-oncle grand_oncle NOM m s 0.45 4.26 0.45 3.65 +grand-papa grand_papa NOM m s 2.35 0.95 1.50 0.68 +grand-peine grand_peine ADV 0.25 4.86 0.25 4.86 +grand-peur grand_peur ADV 0.00 0.20 0.00 0.20 +grand-place grand_place NOM f s 0.12 1.35 0.12 1.35 +grand-prêtre grand_prêtre NOM m s 0.11 0.20 0.11 0.20 +grand-père grand_père NOM m s 75.64 96.49 75.19 95.20 +grand-quartier grand_quartier NOM m s 0.00 0.34 0.00 0.34 +grand-route grand_route NOM f s 0.27 3.65 0.27 3.58 +grand-routes grand_route NOM f p 0.27 3.65 0.00 0.07 +grand-rue grand_rue NOM f s 0.64 2.36 0.64 2.36 +grand-salle grand_salle NOM f s 0.00 0.20 0.00 0.20 +grand-tante grand_tante NOM f s 1.17 1.76 1.17 1.22 +grand-tantes grand_tante NOM f p 1.17 1.76 0.00 0.47 +grand-vergue grand_vergue NOM f s 0.05 0.00 0.05 0.00 +grand-voile grand_voile NOM f s 0.23 0.27 0.23 0.27 +grande-duchesse grand_duc NOM f s 2.03 1.76 0.09 0.34 +grandes-duchesses grande_duchesse NOM f p 0.01 0.14 0.01 0.14 +grands-croix grand_croix NOM m p 0.00 0.07 0.00 0.07 +grands-ducs grand_duc NOM m p 2.03 1.76 0.05 0.54 +grands-mères grand_mère NOM f p 73.22 94.59 0.30 0.68 +grands-oncles grand_oncle NOM m p 0.45 4.26 0.00 0.61 +grands-parents grands_parents NOM m p 4.59 9.19 4.59 9.19 +grands-pères grand_père NOM m p 75.64 96.49 0.45 1.28 +grands-tantes grand_tante NOM f p 1.17 1.76 0.00 0.07 +grape-fruit grape_fruit NOM m s 0.00 0.27 0.00 0.27 +gras-double gras_double NOM m s 0.22 1.08 0.22 1.01 +gras-doubles gras_double NOM m p 0.22 1.08 0.00 0.07 +gratis pro deo gratis_pro_deo ADV 0.00 0.14 0.00 0.14 +gratte-ciel gratte_ciel NOM m 1.40 3.04 1.14 3.04 +gratte-ciels gratte_ciel NOM m p 1.40 3.04 0.26 0.00 +gratte-cul gratte_cul NOM m 0.00 0.14 0.00 0.14 +gratte-dos gratte_dos NOM m 0.11 0.00 0.11 0.00 +gratte-papier gratte_papier NOM m 0.67 0.54 0.45 0.54 +gratte-papiers gratte_papier NOM m p 0.67 0.54 0.22 0.00 +gratte-pieds gratte_pieds NOM m 0.00 0.20 0.00 0.20 +grenouille-taureau grenouille_taureau NOM f s 0.01 0.00 0.01 0.00 +gri-gri gri_gri NOM m s 0.21 0.14 0.21 0.14 +grill-room grill_room NOM m s 0.00 0.27 0.00 0.27 +grille-pain grille_pain NOM m 2.90 0.27 2.90 0.27 +grimace-éclair grimace_éclair NOM f s 0.01 0.00 0.01 0.00 +grippe-sou grippe_sou NOM m s 0.25 0.14 0.13 0.07 +grippe-sous grippe_sou NOM m p 0.25 0.14 0.12 0.07 +gris-blanc gris_blanc ADJ m s 0.00 0.20 0.00 0.20 +gris-bleu gris_bleu ADJ m s 0.30 1.69 0.30 1.69 +gris-gris gris_gris NOM m 0.22 0.74 0.22 0.74 +gris-jaune gris_jaune ADJ m s 0.00 0.20 0.00 0.20 +gris-perle gris_perle ADJ m s 0.01 0.14 0.01 0.14 +gris-rose gris_rose ADJ 0.00 0.41 0.00 0.41 +gris-vert gris_vert ADJ m s 0.01 1.55 0.01 1.55 +gros-bec gros_bec NOM m s 0.06 0.07 0.06 0.00 +gros-becs gros_bec NOM m p 0.06 0.07 0.00 0.07 +gros-cul gros_cul NOM m s 0.04 0.14 0.04 0.14 +gros-grain gros_grain NOM m s 0.00 0.41 0.00 0.41 +gros-porteur gros_porteur NOM m s 0.02 0.00 0.02 0.00 +grosso modo grosso_modo ADV 0.44 1.89 0.44 1.89 +gréco-latine gréco_latin ADJ f s 0.00 0.34 0.00 0.27 +gréco-latines gréco_latin ADJ f p 0.00 0.34 0.00 0.07 +gréco-romain gréco_romain ADJ m s 0.46 0.68 0.03 0.14 +gréco-romaine gréco_romain ADJ f s 0.46 0.68 0.42 0.34 +gréco-romaines gréco_romain ADJ f p 0.46 0.68 0.01 0.14 +gréco-romains gréco_romain ADJ m p 0.46 0.68 0.00 0.07 +guerre-éclair guerre_éclair NOM f s 0.01 0.14 0.01 0.14 +guet-apens guet_apens NOM m 0.68 0.74 0.68 0.74 +guets-apens guets_apens NOM m p 0.00 0.07 0.00 0.07 +gueule-de-loup gueule_de_loup NOM f s 0.03 0.07 0.03 0.07 +gueules-de-loup gueules_de_loup NOM f p 0.00 0.14 0.00 0.14 +guide-interprète guide_interprète NOM s 0.00 0.07 0.00 0.07 +guili-guili guili_guili NOM m 0.16 0.14 0.16 0.14 +gélatino-bromure gélatino_bromure NOM m s 0.00 0.07 0.00 0.07 +gutta-percha gutta_percha NOM f s 0.03 0.00 0.03 0.00 +hôtel-dieu hôtel_dieu NOM m s 0.01 0.81 0.01 0.81 +hôtel-restaurant hôtel_restaurant NOM m s 0.00 0.14 0.00 0.14 +hache-paille hache_paille NOM m p 0.00 0.14 0.00 0.14 +half-track half_track NOM m s 0.05 0.14 0.04 0.14 +half-tracks half_track NOM m p 0.05 0.14 0.01 0.00 +halte-garderie halte_garderie NOM f s 0.02 0.00 0.02 0.00 +hand-ball hand_ball NOM m s 0.08 0.00 0.08 0.00 +happy end happy_end NOM m s 0.51 0.27 0.45 0.27 +happy ends happy_end NOM m p 0.51 0.27 0.05 0.00 +happy few happy_few NOM m p 0.00 0.14 0.00 0.14 +hara-kiri hara_kiri NOM m s 0.29 0.41 0.29 0.41 +hard-top hard_top NOM m s 0.01 0.00 0.01 0.00 +hard edge hard_edge NOM m s 0.01 0.00 0.01 0.00 +has been has_been NOM m 0.18 0.20 0.18 0.20 +haut-commandement haut_commandement NOM m s 0.00 1.22 0.00 1.22 +haut-commissaire haut_commissaire NOM m s 0.03 7.97 0.03 7.57 +haut-commissariat haut_commissariat NOM m s 0.02 0.81 0.02 0.81 +haut-de-chausse haut_de_chausse NOM f s 0.15 0.07 0.14 0.07 +haut-de-chausses haut_de_chausses NOM m 0.00 0.20 0.00 0.20 +haut-de-forme haut_de_forme NOM m s 0.45 1.62 0.30 1.42 +haut-fond haut_fond NOM m s 0.08 1.08 0.02 0.61 +haut-le-coeur haut_le_coeur NOM m 0.04 1.01 0.04 1.01 +haut-le-corps haut_le_corps NOM m 0.00 1.76 0.00 1.76 +haut-parleur haut_parleur NOM m s 3.65 7.36 2.61 3.99 +haut-parleurs haut_parleur NOM m p 3.65 7.36 1.04 3.38 +haut-relief haut_relief NOM m s 0.00 0.20 0.00 0.20 +haute-fidélité haute_fidélité NOM f s 0.03 0.07 0.03 0.07 +hauts-commissaires haut_commissaire NOM m p 0.03 7.97 0.00 0.41 +hauts-de-chausses haut_de_chausse NOM m p 0.15 0.07 0.01 0.00 +hauts-de-forme haut_de_forme NOM m p 0.45 1.62 0.14 0.20 +hauts-fonds haut_fond NOM m p 0.08 1.08 0.06 0.47 +hauts-fourneaux haut_fourneau NOM m p 0.01 0.27 0.01 0.27 +hi-fi hi_fi NOM f s 0.87 0.81 0.87 0.81 +hi-han hi_han ONO 0.20 0.14 0.20 0.14 +hic et nunc hic_et_nunc ADV 0.00 0.41 0.00 0.41 +high-life high_life NOM m s 0.27 0.14 0.27 0.14 +high-tech high_tech ADJ 0.32 0.14 0.29 0.07 +high life high_life NOM m s 0.04 0.41 0.04 0.41 +high tech high_tech ADJ s 0.32 0.14 0.04 0.07 +hip-hop hip_hop NOM m s 1.74 0.00 1.74 0.00 +hispano-américain hispano_américain NOM m s 0.01 0.00 0.01 0.00 +hispano-américaine hispano_américain ADJ f s 0.03 0.27 0.03 0.20 +hispano-cubain hispano_cubain ADJ m s 0.00 0.07 0.00 0.07 +hispano-mauresque hispano_mauresque ADJ m s 0.00 0.07 0.00 0.07 +historico-culturelle historico_culturel ADJ f s 0.00 0.07 0.00 0.07 +hit-parade hit_parade NOM m s 0.73 0.68 0.69 0.68 +hit-parades hit_parade NOM m p 0.73 0.68 0.04 0.00 +hold-up hold_up NOM m 7.78 3.38 7.59 3.38 +hold up hold_up NOM m 7.78 3.38 0.20 0.00 +home-trainer home_trainer NOM m s 0.01 0.00 0.01 0.00 +homme-chien homme_chien NOM m s 0.09 0.14 0.09 0.14 +homme-clé homme_clé NOM m s 0.04 0.00 0.04 0.00 +homme-femme homme_femme NOM m s 0.36 0.07 0.36 0.07 +homme-grenouille homme_grenouille NOM m s 0.35 0.20 0.20 0.07 +homme-loup homme_loup NOM m s 0.05 0.00 0.05 0.00 +homme-machine homme_machine NOM m s 0.04 0.00 0.04 0.00 +homme-oiseau homme_oiseau NOM m s 0.05 0.00 0.05 0.00 +homme-orchestre homme_orchestre NOM m s 0.03 0.07 0.03 0.07 +homme-poisson homme_poisson NOM m s 0.06 0.00 0.06 0.00 +homme-robot homme_robot NOM m s 0.07 0.00 0.07 0.00 +homme-sandwich homme_sandwich NOM m s 0.00 0.41 0.00 0.41 +homme-serpent homme_serpent NOM m s 0.02 0.27 0.02 0.27 +hommes-grenouilles homme_grenouille NOM m p 0.35 0.20 0.16 0.14 +homo erectus homo_erectus NOM m 0.04 0.00 0.04 0.00 +homo habilis homo_habilis NOM m 0.00 0.07 0.00 0.07 +hong kong hong_kong NOM s 0.03 0.00 0.03 0.00 +honoris causa honoris_causa ADV 0.16 0.27 0.16 0.27 +hors-bord hors_bord NOM m p 0.45 0.61 0.45 0.61 +hors-cote hors_cote ADJ 0.01 0.00 0.01 0.00 +hors-d'oeuvre hors_d_oeuvre NOM m 0.56 1.96 0.56 1.96 +hors-jeu hors_jeu ADJ 1.13 0.20 1.13 0.20 +hors-la-loi hors_la_loi NOM m p 3.21 1.49 3.21 1.49 +hors-piste hors_piste NOM m p 0.45 0.00 0.45 0.00 +hors-série hors_série ADJ f s 0.01 0.20 0.01 0.20 +horse-guard horse_guard NOM m s 0.02 0.14 0.00 0.07 +horse-guards horse_guard NOM m p 0.02 0.14 0.02 0.07 +hot-dog hot_dog NOM m s 6.09 0.27 3.12 0.07 +hot-dogs hot_dog NOM m p 6.09 0.27 2.98 0.20 +hot dog hot_dog NOM m s 2.69 0.14 1.31 0.14 +hot dogs hot_dog NOM m p 2.69 0.14 1.38 0.00 +house-boat house_boat NOM m s 0.04 0.07 0.02 0.00 +house-boats house_boat NOM m p 0.04 0.07 0.01 0.07 +house music house_music NOM f s 0.01 0.00 0.01 0.00 +huit-reflets huit_reflets NOM m 0.00 0.27 0.00 0.27 +humain-robot humain_robot ADJ m s 0.03 0.00 0.03 0.00 +hydro-électrique hydro_électrique ADJ s 0.00 0.07 0.00 0.07 +ice-cream ice_cream NOM m s 0.02 0.34 0.00 0.27 +ice-creams ice_cream NOM m p 0.02 0.34 0.00 0.07 +ice cream ice_cream NOM m s 0.02 0.34 0.02 0.00 +ici-bas ici_bas ADV 3.58 2.97 3.58 2.97 +idée-clé idée_clé NOM f s 0.01 0.00 0.01 0.00 +idée-force idée_force NOM f s 0.01 0.20 0.01 0.07 +idées-forces idée_force NOM f p 0.01 0.20 0.00 0.14 +import-export import_export NOM m s 0.47 0.41 0.47 0.41 +in-bord in_bord ADJ m s 0.01 0.00 0.01 0.00 +in-bord in_bord NOM m s 0.01 0.00 0.01 0.00 +in-folio in_folio NOM m 0.00 0.61 0.00 0.61 +in-folios in_folios NOM m 0.00 0.20 0.00 0.20 +in-octavo in_octavo NOM m 0.01 0.34 0.01 0.34 +in-octavos in_octavos NOM m 0.00 0.07 0.00 0.07 +in-quarto in_quarto ADJ 0.00 0.07 0.00 0.07 +in-quarto in_quarto NOM m 0.00 0.07 0.00 0.07 +in-seize in_seize NOM m 0.00 0.07 0.00 0.07 +in absentia in_absentia ADV 0.02 0.00 0.02 0.00 +in abstracto in_abstracto ADV 0.00 0.20 0.00 0.20 +in anima vili in_anima_vili ADV 0.00 0.07 0.00 0.07 +in cauda venenum in_cauda_venenum ADV 0.00 0.14 0.00 0.14 +in extenso in_extenso ADV 0.00 0.54 0.00 0.54 +in extremis in_extremis ADV 0.07 2.64 0.07 2.64 +in memoriam in_memoriam ADV 0.15 0.00 0.15 0.00 +in pace in_pace NOM m 0.16 0.07 0.16 0.07 +in petto in_petto ADV 0.00 1.22 0.00 1.22 +in utero in_utero ADJ f p 0.05 0.00 0.05 0.00 +in utero in_utero ADV 0.05 0.00 0.05 0.00 +in vino veritas in_vino_veritas ADV 0.05 0.00 0.05 0.00 +in vitro in_vitro ADJ 0.22 0.34 0.22 0.34 +in vivo in_vivo ADV 0.00 0.07 0.00 0.07 +inch allah inch_allah ONO 0.27 0.47 0.27 0.47 +indemnités-repas indemnités_repas NOM f p 0.01 0.00 0.01 0.00 +indo-européen indo_européen ADJ m s 0.11 0.27 0.10 0.00 +indo-européenne indo_européen ADJ f s 0.11 0.27 0.01 0.07 +indo-européennes indo_européen ADJ f p 0.11 0.27 0.00 0.14 +indo-européens indo_européen ADJ m p 0.11 0.27 0.00 0.07 +industrie-clé industrie_clé NOM f s 0.01 0.00 0.01 0.00 +infirmière-major infirmière_major NOM f s 0.14 0.14 0.14 0.14 +ingénieur-chimiste ingénieur_chimiste NOM m s 0.00 0.07 0.00 0.07 +ingénieur-conseil ingénieur_conseil NOM m s 0.00 0.14 0.00 0.14 +intellectuel-phare intellectuel_phare NOM m s 0.00 0.07 0.00 0.07 +inter-écoles inter_école NOM f p 0.03 0.00 0.03 0.00 +intra-atomique intra_atomique ADJ s 0.00 0.07 0.00 0.07 +intra-muros intra_muros ADV 0.01 0.07 0.01 0.07 +intra-rachidienne rachidien ADJ f s 0.23 0.14 0.01 0.00 +intra-utérine intra_utérin ADJ f s 0.14 0.07 0.04 0.00 +intra-utérines intra_utérin ADJ f p 0.14 0.07 0.10 0.07 +intra muros intra_muros ADV 0.01 0.07 0.01 0.07 +invisible piston invisible_piston NOM m s 0.00 0.07 0.00 0.07 +ipso facto ipso_facto ADV 0.21 0.61 0.21 0.61 +irish coffee irish_coffee NOM m s 0.16 0.14 0.16 0.14 +israélo-arabe israélo_arabe ADJ f s 0.01 0.00 0.01 0.00 +israélo-syrienne israélo_syrien ADJ f s 0.14 0.00 0.14 0.00 +italo-allemande italo_allemand ADJ f s 0.00 0.20 0.00 0.07 +italo-allemandes italo_allemand ADJ f p 0.00 0.20 0.00 0.14 +italo-américain italo_américain ADJ m s 0.20 0.00 0.15 0.00 +italo-américaine italo_américain ADJ f s 0.20 0.00 0.04 0.00 +italo-brésilien italo_brésilien ADJ m s 0.00 0.07 0.00 0.07 +italo-français italo_français ADJ m 0.00 0.14 0.00 0.07 +italo-françaises italo_français ADJ f p 0.00 0.14 0.00 0.07 +italo-irlandais italo_irlandais ADJ m 0.01 0.00 0.01 0.00 +italo-polonais italo_polonais ADJ m 0.00 0.07 0.00 0.07 +italo-égyptien italo_égyptien ADJ m s 0.00 0.07 0.00 0.07 +ite missa est ite_missa_est NOM m 0.00 0.14 0.00 0.14 +jam-session jam_session NOM f s 0.16 0.00 0.14 0.00 +jam-sessions jam_session NOM f p 0.16 0.00 0.01 0.00 +jamais-vu jamais_vu NOM m 0.00 0.07 0.00 0.07 +jaune-vert jaune_vert ADJ s 0.01 0.20 0.01 0.20 +jazz-band jazz_band NOM m s 0.02 0.20 0.02 0.20 +jazz-rock jazz_rock NOM m 0.14 0.07 0.14 0.07 +je-m'en-fichiste je_m_en_fichiste ADJ f s 0.01 0.00 0.01 0.00 +je-m'en-foutisme je_m_en_foutisme NOM m s 0.01 0.14 0.01 0.14 +je-m'en-foutiste je_m_en_foutiste ADJ s 0.01 0.00 0.01 0.00 +je-m'en-foutistes je_m_en_foutiste NOM p 0.03 0.07 0.03 0.07 +je-ne-sais-quoi je_ne_sais_quoi NOM m 0.34 0.47 0.34 0.47 +jean-foutre jean_foutre NOM m 0.41 1.28 0.41 1.28 +jean-le-blanc jean_le_blanc NOM m 0.00 0.07 0.00 0.07 +jet-set jet_set NOM m s 0.42 0.07 0.42 0.07 +jet-stream jet_stream NOM m s 0.01 0.00 0.01 0.00 +jet society jet_society NOM f s 0.00 0.07 0.00 0.07 +jeu-concours jeu_concours NOM m 0.10 0.14 0.10 0.14 +jeune-homme jeune_homme ADJ s 0.10 0.00 0.10 0.00 +jiu-jitsu jiu_jitsu NOM m 0.35 0.14 0.35 0.14 +joint-venture joint_venture NOM f s 0.16 0.00 0.16 0.00 +joli-coeur joli_coeur ADJ m s 0.01 0.00 0.01 0.00 +joli-joli joli_joli ADJ m s 0.26 0.41 0.26 0.41 +judéo-christianisme judéo_christianisme NOM m s 0.01 0.00 0.01 0.00 +judéo-chrétienne judéo_chrétien ADJ f s 0.06 0.20 0.04 0.07 +judéo-chrétiennes judéo_chrétien ADJ f p 0.06 0.20 0.01 0.07 +judéo-chrétiens judéo_chrétien ADJ m p 0.06 0.20 0.00 0.07 +juke-box juke_box NOM m 1.61 1.89 1.58 1.69 +juke-boxes juke_box NOM m p 1.61 1.89 0.03 0.20 +jupe-culotte jupe_culotte NOM f s 0.02 0.34 0.02 0.27 +jupes-culottes jupe_culotte NOM m p 0.02 0.34 0.00 0.07 +jusqu'au jusqu_au PRE 0.34 0.07 0.34 0.07 +jusqu'à jusqu_à PRE 0.81 0.27 0.81 0.27 +jusque-là jusque_là ADV 7.81 29.53 7.81 29.53 +juste-milieu juste_milieu NOM m 0.00 0.07 0.00 0.07 +k-o k_o ADJ 0.02 0.07 0.02 0.07 +k-way k_way NOM m s 0.06 0.20 0.06 0.20 +kala-azar kala_azar NOM m s 0.00 0.07 0.00 0.07 +kif-kif kif_kif ADJ s 0.20 0.81 0.20 0.81 +kilomètres-heure kilomètre_heure NOM m p 0.14 0.41 0.14 0.41 +king-charles king_charles NOM m 0.00 0.07 0.00 0.07 +knock-out knock_out ADJ m s 0.19 0.20 0.19 0.20 +kung-fu kung_fu NOM m s 1.12 0.00 1.01 0.00 +kung fu kung_fu NOM m s 1.12 0.00 0.10 0.00 +kyrie eleison kyrie_eleison NOM m 0.41 0.07 0.41 0.07 +l'un l_un PRO:ind 127.72 208.92 127.72 208.92 +l'une l_une PRO:ind f 36.12 93.58 36.12 93.58 +l-dopa l_dopa NOM f s 0.05 0.00 0.05 0.00 +la-la-la la_la_la ART:def f s 0.14 0.07 0.14 0.07 +la plata la_plata NOM s 0.01 0.14 0.01 0.14 +la plupart de la_plupart_de ADJ:ind 3.94 7.30 3.94 7.30 +la plupart des la_plupart_des ADJ:ind 23.41 29.26 23.41 29.26 +la plupart du la_plupart_du ADJ:ind 5.07 7.91 5.07 7.91 +la plupart la_plupart PRO:ind p 14.72 23.24 14.72 23.24 +lacrima-christi lacrima_christi NOM m 0.00 0.07 0.00 0.07 +lacryma-christi lacryma_christi NOM m s 0.00 0.34 0.00 0.20 +lacryma christi lacryma_christi NOM m s 0.00 0.34 0.00 0.14 +laisse-la-moi laisse_la_moi NOM f s 0.14 0.00 0.14 0.00 +laisser-aller laisser_aller NOM m 0.75 3.38 0.75 3.38 +laisser-faire laisser_faire NOM m 0.01 0.07 0.01 0.07 +laissez-faire laissez_faire NOM m 0.01 0.00 0.01 0.00 +laissez-passer laissez_passer NOM m 4.00 1.96 4.00 1.96 +laissé-pour-compte laissé_pour_compte NOM m s 0.00 0.07 0.00 0.07 +laissés-pour-compte laissés_pour_compte NOM m p 0.23 0.07 0.23 0.07 +lampe-phare lampe_phare NOM f s 0.00 0.07 0.00 0.07 +lampe-tempête lampe_tempête NOM f s 0.00 0.95 0.00 0.68 +lampes-tempête lampe_tempête NOM f p 0.00 0.95 0.00 0.27 +lance-engins lance_engins NOM m 0.02 0.00 0.02 0.00 +lance-flamme lance_flamme NOM m s 0.06 0.00 0.06 0.00 +lance-flammes lance_flammes NOM m 1.06 0.61 1.06 0.61 +lance-fusée lance_fusée NOM m s 0.01 0.00 0.01 0.00 +lance-fusées lance_fusées NOM m 0.12 0.61 0.12 0.61 +lance-grenade lance_grenade NOM m s 0.02 0.00 0.02 0.00 +lance-grenades lance_grenades NOM m 0.34 0.00 0.34 0.00 +lance-missiles lance_missiles NOM m 0.26 0.07 0.26 0.07 +lance-pierre lance_pierre NOM m s 0.25 0.07 0.25 0.07 +lance-pierres lance_pierres NOM m 0.39 1.42 0.39 1.42 +lance-roquette lance_roquette NOM m s 0.06 0.00 0.06 0.00 +lance-roquettes lance_roquettes NOM m 0.72 0.14 0.72 0.14 +lance-torpille lance_torpille NOM m s 0.00 0.07 0.00 0.07 +lance-torpilles lance_torpilles NOM m 0.03 0.41 0.03 0.41 +lanterne-tempête lanterne_tempête NOM f s 0.00 0.07 0.00 0.07 +lapis-lazuli lapis_lazuli NOM m 0.01 0.41 0.01 0.41 +latino-américain latino_américain NOM m s 0.10 0.07 0.03 0.07 +latino-américaine latino_américain NOM f s 0.10 0.07 0.03 0.00 +latino-américains latino_américain NOM m p 0.10 0.07 0.04 0.00 +laurier-cerise laurier_cerise NOM m s 0.00 0.20 0.00 0.07 +laurier-rose laurier_rose NOM m s 0.14 1.69 0.04 0.20 +lauriers-cerises laurier_cerise NOM m p 0.00 0.20 0.00 0.14 +lauriers-roses laurier_rose NOM m p 0.14 1.69 0.10 1.49 +lave-auto lave_auto NOM m s 0.06 0.00 0.06 0.00 +lave-glace lave_glace NOM m s 0.03 0.20 0.03 0.20 +lave-linge lave_linge NOM m 0.83 0.00 0.83 0.00 +lave-mains lave_mains NOM m 0.00 0.07 0.00 0.07 +lave-pont lave_pont NOM m s 0.00 0.14 0.00 0.07 +lave-ponts lave_pont NOM m p 0.00 0.14 0.00 0.07 +lave-vaisselle lave_vaisselle NOM m 0.88 0.20 0.88 0.20 +lettre-clé lettre_clé NOM f s 0.14 0.00 0.14 0.00 +librairie-papeterie librairie_papeterie NOM f s 0.00 0.20 0.00 0.20 +libre-arbitre libre_arbitre NOM m s 0.12 0.14 0.12 0.14 +libre-penseur libre_penseur NOM m s 0.04 0.14 0.04 0.14 +libre-penseuse libre_penseur NOM f s 0.04 0.14 0.01 0.00 +libre-service libre_service NOM m s 0.04 0.34 0.04 0.34 +libre-échange libre_échange NOM m 0.32 0.14 0.32 0.14 +libre-échangiste libre_échangiste NOM s 0.03 0.00 0.03 0.00 +lie-de-vin lie_de_vin ADJ 0.00 1.08 0.00 1.08 +lieu-dit lieu_dit NOM m s 0.00 0.88 0.00 0.88 +lieutenant-colonel lieutenant_colonel NOM m s 1.74 1.42 1.73 1.42 +lieutenant-pilote lieutenant_pilote NOM m s 0.00 0.07 0.00 0.07 +lieutenants-colonels lieutenant_colonel NOM m p 1.74 1.42 0.01 0.00 +lieux-dits lieux_dits NOM m p 0.00 0.41 0.00 0.41 +lit-bateau lit_bateau NOM m s 0.00 0.81 0.00 0.81 +lit-cage lit_cage NOM m s 0.01 1.62 0.01 1.15 +lit-divan lit_divan NOM m s 0.00 0.20 0.00 0.20 +lits-cages lit_cage NOM m p 0.01 1.62 0.00 0.47 +living-room living_room NOM m s 0.23 2.23 0.23 2.23 +livre-cassette livre_cassette NOM m s 0.03 0.00 0.03 0.00 +livres-club livres_club NOM m p 0.00 0.07 0.00 0.07 +là-bas là_bas ADV 263.15 117.70 263.15 117.70 +là-dedans là_dedans ADV 74.00 23.58 74.00 23.58 +là-dehors là_dehors ADV 1.30 0.00 1.30 0.00 +là-derrière là_derrière ADV 1.14 0.14 1.14 0.14 +là-dessous là_dessous ADV 7.12 4.32 7.12 4.32 +là-dessus là_dessus ADV 30.89 32.50 30.89 32.50 +là-devant là_devant ADV 0.00 0.14 0.00 0.14 +là-haut là_haut ADV 67.78 42.70 67.78 42.70 +lock-out lock_out NOM m 0.11 0.00 0.11 0.00 +lock-outés lock_outer VER m p 0.00 0.07 0.00 0.07 par:pas; +long-courrier long_courrier NOM m s 0.26 0.61 0.25 0.47 +long-courriers long_courrier NOM m p 0.26 0.61 0.01 0.14 +long-métrage long_métrage NOM m s 0.06 0.00 0.06 0.00 +longue-vue longue_vue NOM f s 0.30 2.64 0.29 2.50 +longues-vues longue_vue NOM f p 0.30 2.64 0.01 0.14 +lord-maire lord_maire NOM m s 0.02 0.07 0.02 0.07 +louis-philippard louis_philippard ADJ m s 0.00 0.34 0.00 0.07 +louis-philipparde louis_philippard ADJ f s 0.00 0.34 0.00 0.14 +louis-philippards louis_philippard ADJ m p 0.00 0.34 0.00 0.14 +louise-bonne louise_bonne NOM f s 0.00 0.07 0.00 0.07 +loup-cervier loup_cervier NOM m s 0.00 0.14 0.00 0.07 +loup-garou loup_garou NOM m s 3.98 1.22 3.35 0.88 +loups-cerviers loup_cervier NOM m p 0.00 0.14 0.00 0.07 +loups-garous loup_garou NOM m p 3.98 1.22 0.63 0.34 +lèche-botte lèche_botte NOM m s 0.11 0.00 0.11 0.00 +lèche-bottes lèche_bottes NOM m 0.68 0.34 0.68 0.34 +lèche-cul lèche_cul NOM m s 1.29 0.61 1.29 0.61 +lèche-vitrine lèche_vitrine NOM m s 0.26 0.07 0.26 0.07 +lèche-vitrines lèche_vitrines NOM m 0.07 0.20 0.07 0.20 +lèse-majesté lèse_majesté NOM f 0.03 0.27 0.03 0.27 +lui-même lui_même PRO:per m s 46.58 202.30 46.58 202.30 +m'as-tu-vu m_as_tu_vu ADJ s 0.03 0.00 0.03 0.00 +ma-jong ma_jong NOM m s 0.02 0.07 0.02 0.07 +maître-assistant maître_assistant NOM m s 0.00 0.07 0.00 0.07 +maître-autel maître_autel NOM m s 0.00 0.61 0.00 0.61 +maître-chanteur maître_chanteur NOM m s 0.21 0.20 0.21 0.20 +maître-chien maître_chien NOM m s 0.11 0.00 0.11 0.00 +maître-coq maître_coq NOM m s 0.01 0.00 0.01 0.00 +maître-nageur maître_nageur NOM m s 0.45 0.27 0.45 0.27 +maître-à-danser maître_à_danser NOM m s 0.00 0.07 0.00 0.07 +maître queux maître_queux NOM m s 0.00 0.14 0.00 0.14 +machine-outil machine_outil NOM f s 0.11 0.47 0.00 0.07 +machines-outils machine_outil NOM f p 0.11 0.47 0.11 0.41 +made in made_in ADV 1.06 0.88 1.06 0.88 +madre de dios madre_de_dios NOM s 0.00 0.07 0.00 0.07 +mah-jong mah_jong NOM m s 1.54 0.20 1.54 0.20 +mail-coach mail_coach NOM m s 0.00 0.14 0.00 0.14 +main-courante main_courante NOM f s 0.01 0.07 0.01 0.07 +main-d'oeuvre main_d_oeuvre NOM f s 0.89 1.62 0.89 1.62 +main-forte main_forte NOM f 0.36 0.41 0.36 0.41 +maison-mère maison_mère NOM f s 0.12 0.14 0.12 0.14 +major-général major_général NOM s 0.02 0.34 0.02 0.34 +mal-aimé mal_aimé NOM m s 0.21 0.07 0.03 0.00 +mal-aimée mal_aimé NOM f s 0.21 0.07 0.01 0.07 +mal-aimés mal_aimé NOM m p 0.21 0.07 0.17 0.00 +mal-baisé mal_baisé NOM m s 0.00 0.20 0.00 0.07 +mal-baisée mal_baisé NOM f s 0.00 0.20 0.00 0.14 +mal-pensante mal_pensant ADJ f s 0.00 0.07 0.00 0.07 +mal-pensants mal_pensant NOM m p 0.14 0.07 0.14 0.07 +mal-être mal_être NOM m s 0.34 0.20 0.34 0.20 +mam'selle mam_selle NOM f s 0.11 0.07 0.11 0.07 +mam'zelle mam_zelle NOM f s 0.03 0.00 0.03 0.00 +mandat-carte mandat_carte NOM m s 0.01 0.00 0.01 0.00 +mandat-lettre mandat_lettre NOM m s 0.00 0.07 0.00 0.07 +mandat-poste mandat_poste NOM m s 0.03 0.07 0.03 0.07 +mange-disque mange_disque NOM m s 0.11 0.07 0.10 0.00 +mange-disques mange_disque NOM m p 0.11 0.07 0.01 0.07 +mange-tout mange_tout NOM m 0.01 0.07 0.01 0.07 +maniaco-dépressif maniaco_dépressif ADJ m s 0.38 0.14 0.17 0.00 +maniaco-dépressifs maniaco_dépressif ADJ m p 0.38 0.14 0.08 0.14 +maniaco-dépressive maniaco_dépressif ADJ f s 0.38 0.14 0.13 0.00 +manu militari manu_militari ADV 0.16 0.20 0.16 0.20 +marie-couche-toi-là marie_couche_toi_là NOM f 0.06 0.27 0.06 0.27 +marie-jeanne marie_jeanne NOM f s 0.26 0.07 0.26 0.07 +marie-louise marie_louise NOM f s 0.00 0.07 0.00 0.07 +marie-salope marie_salope NOM f s 0.00 0.07 0.00 0.07 +marin-pêcheur marin_pêcheur NOM m s 0.01 0.14 0.01 0.14 +marque-page marque_page NOM m s 0.25 0.14 0.24 0.07 +marque-pages marque_page NOM m p 0.25 0.14 0.01 0.07 +marteau-pilon marteau_pilon NOM m s 0.07 0.41 0.07 0.34 +marteau-piqueur marteau_piqueur NOM m s 0.42 0.07 0.42 0.07 +marteaux-pilons marteau_pilon NOM m p 0.07 0.41 0.00 0.07 +martin-pêcheur martin_pêcheur NOM m s 0.02 0.41 0.01 0.27 +martins-pêcheurs martin_pêcheur NOM m p 0.02 0.41 0.01 0.14 +maréchal-ferrant maréchal_ferrant NOM m s 0.22 1.96 0.22 1.96 +maréchaux-ferrants maréchaux_ferrants NOM m p 0.00 0.41 0.00 0.41 +marxisme-léninisme marxisme_léninisme NOM m s 0.50 0.68 0.50 0.68 +marxiste-léniniste marxiste_léniniste ADJ s 0.41 0.41 0.27 0.41 +marxistes-léninistes marxiste_léniniste ADJ p 0.41 0.41 0.14 0.00 +masque-espion masque_espion NOM m s 0.01 0.00 0.01 0.00 +mass media mass_media NOM m p 0.17 0.07 0.17 0.07 +mat' mat NOM m s 6.84 4.32 1.95 0.88 +mater dolorosa mater_dolorosa NOM f 0.00 0.47 0.00 0.47 +maxillo-facial maxillo_facial ADJ m s 0.01 0.00 0.01 0.00 +mea-culpa mea_culpa NOM m 0.07 0.14 0.07 0.14 +mea culpa mea_culpa NOM m 0.70 0.68 0.70 0.68 +medicine-ball medicine_ball NOM m s 0.00 0.07 0.00 0.07 +melting-pot melting_pot NOM m s 0.14 0.07 0.13 0.00 +melting pot melting_pot NOM m s 0.14 0.07 0.01 0.07 +mer-air mer_air ADJ f s 0.01 0.00 0.01 0.00 +messieurs-dames messieurs_dames NOM m p 0.48 0.68 0.48 0.68 +mets-la-toi mets_la_toi NOM m 0.01 0.00 0.01 0.00 +meurtre-suicide meurtre_suicide NOM m s 0.04 0.00 0.04 0.00 +mezza-voce mezza_voce ADV 0.00 0.07 0.00 0.07 +mezza voce mezza_voce ADV 0.00 0.20 0.00 0.20 +mezzo-soprano mezzo_soprano NOM s 0.20 0.00 0.20 0.00 +mi-accablé mi_accablé ADJ m s 0.00 0.07 0.00 0.07 +mi-africains mi_africains NOM m 0.00 0.07 0.00 0.07 +mi-airain mi_airain NOM m s 0.00 0.07 0.00 0.07 +mi-allemand mi_allemand NOM m 0.00 0.07 0.00 0.07 +mi-allongé mi_allongé ADJ m s 0.00 0.07 0.00 0.07 +mi-américaine mi_américaine NOM m 0.02 0.00 0.02 0.00 +mi-ange mi_ange NOM m s 0.01 0.00 0.01 0.00 +mi-angevins mi_angevins NOM m 0.00 0.07 0.00 0.07 +mi-animal mi_animal ADJ m s 0.05 0.00 0.05 0.00 +mi-animaux mi_animaux ADJ m 0.00 0.07 0.00 0.07 +mi-août mi_août NOM f s 0.00 0.20 0.00 0.20 +mi-appointées mi_appointé ADJ f p 0.00 0.07 0.00 0.07 +mi-appréhension mi_appréhension NOM f s 0.00 0.07 0.00 0.07 +mi-arabe mi_arabe ADJ s 0.00 0.07 0.00 0.07 +mi-artisan mi_artisan NOM m s 0.00 0.07 0.00 0.07 +mi-automne mi_automne NOM f s 0.00 0.14 0.00 0.14 +mi-bandit mi_bandit NOM m s 0.00 0.07 0.00 0.07 +mi-bas mi_bas NOM m 0.14 0.14 0.14 0.14 +mi-biblique mi_biblique ADJ f s 0.00 0.07 0.00 0.07 +mi-black mi_black ADJ m s 0.14 0.00 0.14 0.00 +mi-blanc mi_blanc NOM m 0.00 0.14 0.00 0.14 +mi-blancs mi_blancs NOM m 0.00 0.07 0.00 0.07 +mi-bleu mi_bleu ADJ 0.00 0.07 0.00 0.07 +mi-bois mi_bois NOM m 0.00 0.07 0.00 0.07 +mi-bordel mi_bordel NOM m s 0.00 0.07 0.00 0.07 +mi-bourgeois mi_bourgeois ADJ m s 0.00 0.07 0.00 0.07 +mi-bovins mi_bovins NOM m 0.00 0.07 0.00 0.07 +mi-braconniers mi_braconnier NOM m p 0.00 0.07 0.00 0.07 +mi-bras mi_bras NOM m 0.00 0.14 0.00 0.14 +mi-britannique mi_britannique ADJ s 0.00 0.07 0.00 0.07 +mi-building mi_building NOM m s 0.00 0.07 0.00 0.07 +mi-bureaucrates mi_bureaucrate ADJ m p 0.00 0.07 0.00 0.07 +mi-bête mi_bête ADJ m s 0.04 0.00 0.04 0.00 +mi-côte mi_côte NOM f s 0.00 0.20 0.00 0.20 +mi-café mi_café ADJ 0.00 0.07 0.00 0.07 +mi-café mi_café NOM m s 0.00 0.07 0.00 0.07 +mi-campagnarde mi_campagnarde NOM m 0.00 0.07 0.00 0.07 +mi-canard mi_canard NOM m s 0.00 0.07 0.00 0.07 +mi-capacité mi_capacité NOM f s 0.02 0.00 0.02 0.00 +mi-carrière mi_carrier NOM f s 0.01 0.00 0.01 0.00 +mi-carême mi_carême NOM f s 0.01 0.61 0.01 0.61 +mi-chair mi_chair ADJ m s 0.00 0.20 0.00 0.20 +mi-chat mi_chat NOM m s 0.00 0.07 0.00 0.07 +mi-chatte mi_chatte NOM f s 0.01 0.00 0.01 0.00 +mi-chauve mi_chauve ADJ s 0.00 0.07 0.00 0.07 +mi-chemin mi_chemin NOM m s 3.72 6.35 3.72 6.35 +mi-châtaigniers mi_châtaignier NOM m p 0.00 0.07 0.00 0.07 +mi-chou mi_chou NOM m s 0.00 0.07 0.00 0.07 +mi-chourineur mi_chourineur NOM m s 0.00 0.07 0.00 0.07 +mi-chèvre mi_chèvre NOM f s 0.00 0.07 0.00 0.07 +mi-chênes mi_chêne NOM m p 0.00 0.07 0.00 0.07 +mi-clair mi_clair ADJ m s 0.00 0.07 0.00 0.07 +mi-cloître mi_cloître NOM m s 0.00 0.07 0.00 0.07 +mi-clos mi_clos ADJ m 0.21 7.16 0.11 6.08 +mi-close mi_clos ADJ f s 0.21 7.16 0.00 0.20 +mi-closes mi_clos ADJ f p 0.21 7.16 0.10 0.88 +mi-comique mi_comique ADJ m s 0.00 0.14 0.00 0.14 +mi-complices mi_complice ADJ m p 0.00 0.07 0.00 0.07 +mi-compote mi_compote NOM f s 0.00 0.07 0.00 0.07 +mi-confit mi_confit NOM m 0.00 0.07 0.00 0.07 +mi-confondus mi_confondu ADJ m p 0.00 0.07 0.00 0.07 +mi-connue mi_connu ADJ f s 0.01 0.00 0.01 0.00 +mi-consterné mi_consterné ADJ m s 0.00 0.07 0.00 0.07 +mi-contrariés mi_contrarié ADJ m p 0.00 0.07 0.00 0.07 +mi-corbeaux mi_corbeaux NOM m p 0.00 0.07 0.00 0.07 +mi-corps mi_corps NOM m 0.01 1.55 0.01 1.55 +mi-course mi_course NOM f s 0.08 0.27 0.08 0.27 +mi-courtois mi_courtois ADJ m 0.00 0.07 0.00 0.07 +mi-cousine mi_cousin NOM f s 0.00 0.14 0.00 0.07 +mi-cousins mi_cousin NOM m p 0.00 0.14 0.00 0.07 +mi-coutume mi_coutume NOM f s 0.00 0.07 0.00 0.07 +mi-crabe mi_crabe NOM m s 0.00 0.07 0.00 0.07 +mi-croyant mi_croyant NOM m 0.00 0.07 0.00 0.07 +mi-créature mi_créature NOM f s 0.00 0.07 0.00 0.07 +mi-cruel mi_cruel ADJ m s 0.00 0.07 0.00 0.07 +mi-cuisse mi_cuisse NOM f s 0.06 1.35 0.04 0.81 +mi-cuisses mi_cuisse NOM f p 0.06 1.35 0.01 0.54 +mi-céleste mi_céleste ADJ m s 0.00 0.07 0.00 0.07 +mi-curieux mi_curieux ADJ m p 0.00 0.14 0.00 0.14 +mi-cérémonieux mi_cérémonieux ADJ m 0.00 0.07 0.00 0.07 +mi-dentelle mi_dentelle NOM f s 0.00 0.07 0.00 0.07 +mi-didactique mi_didactique ADJ s 0.00 0.07 0.00 0.07 +mi-distance mi_distance NOM f s 0.04 0.34 0.04 0.34 +mi-douce mi_douce ADJ f s 0.00 0.07 0.00 0.07 +mi-décadents mi_décadents NOM m 0.00 0.07 0.00 0.07 +mi-décembre mi_décembre NOM m 0.01 0.27 0.01 0.27 +mi-démon mi_démon NOM m s 0.02 0.00 0.02 0.00 +mi-désir mi_désir NOM m s 0.00 0.07 0.00 0.07 +mi-effrayée mi_effrayé ADJ f s 0.00 0.20 0.00 0.07 +mi-effrayés mi_effrayé ADJ m p 0.00 0.20 0.00 0.14 +mi-effrontée mi_effrontée NOM m 0.00 0.07 0.00 0.07 +mi-enfant mi_enfant NOM s 0.01 0.07 0.01 0.07 +mi-enjouée mi_enjoué ADJ f s 0.00 0.07 0.00 0.07 +mi-enterré mi_enterré ADJ m s 0.00 0.07 0.00 0.07 +mi-envieux mi_envieux ADJ m p 0.00 0.07 0.00 0.07 +mi-espagnol mi_espagnol NOM m 0.00 0.07 0.00 0.07 +mi-européen mi_européen NOM m 0.00 0.14 0.00 0.14 +mi-excitation mi_excitation NOM f s 0.00 0.07 0.00 0.07 +mi-farceur mi_farceur NOM m 0.00 0.07 0.00 0.07 +mi-faux mi_faux ADJ m 0.00 0.07 0.00 0.07 +mi-femme mi_femme NOM f s 0.12 0.07 0.12 0.07 +mi-fermiers mi_fermiers NOM m 0.00 0.07 0.00 0.07 +mi-fiel mi_fiel NOM m s 0.00 0.07 0.00 0.07 +mi-figue mi_figue NOM f s 0.02 0.54 0.02 0.54 +mi-flanc mi_flanc NOM m s 0.00 0.14 0.00 0.14 +mi-fleuve mi_fleuve NOM m s 0.08 0.00 0.08 0.00 +mi-français mi_français NOM m 0.00 0.14 0.00 0.14 +mi-furieux mi_furieux ADJ m s 0.00 0.07 0.00 0.07 +mi-février mi_février NOM f s 0.01 0.07 0.01 0.07 +mi-garçon mi_garçon NOM m s 0.00 0.07 0.00 0.07 +mi-geste mi_geste NOM m s 0.00 0.07 0.00 0.07 +mi-gigolpince mi_gigolpince NOM m s 0.00 0.07 0.00 0.07 +mi-gnon mi_gnon NOM m s 0.00 0.07 0.00 0.07 +mi-goguenarde mi_goguenard ADJ f s 0.00 0.07 0.00 0.07 +mi-gonzesse mi_gonzesse NOM f s 0.00 0.07 0.00 0.07 +mi-goélands mi_goéland NOM m p 0.00 0.07 0.00 0.07 +mi-graves mi_grave ADJ p 0.00 0.07 0.00 0.07 +mi-grenier mi_grenier NOM m s 0.00 0.07 0.00 0.07 +mi-grognon mi_grognon NOM m 0.00 0.07 0.00 0.07 +mi-grondeur mi_grondeur ADJ m s 0.00 0.07 0.00 0.07 +mi-grossières mi_grossier ADJ f p 0.00 0.07 0.00 0.07 +mi-haute mi_haute ADJ f s 0.00 0.07 0.00 0.07 +mi-hauteur mi_hauteur NOM f s 0.17 2.91 0.17 2.91 +mi-historiques mi_historique ADJ f p 0.00 0.07 0.00 0.07 +mi-homme mi_homme NOM m s 0.44 0.14 0.44 0.14 +mi-humain mi_humain NOM m 0.08 0.00 0.08 0.00 +mi-humaine mi_humaine NOM m 0.01 0.07 0.01 0.07 +mi-humains mi_humains NOM m 0.01 0.07 0.01 0.07 +mi-hésitant mi_hésitant ADJ m s 0.00 0.07 0.00 0.07 +mi-idiotes mi_idiotes NOM m 0.00 0.07 0.00 0.07 +mi-images mi_image NOM f p 0.00 0.14 0.00 0.14 +mi-indien mi_indien NOM m 0.01 0.07 0.01 0.07 +mi-indifférente mi_indifférente NOM m 0.00 0.07 0.00 0.07 +mi-indignée mi_indigné ADJ f s 0.00 0.07 0.00 0.07 +mi-indigène mi_indigène ADJ s 0.00 0.07 0.00 0.07 +mi-indulgent mi_indulgent ADJ m s 0.00 0.14 0.00 0.14 +mi-inquiète mi_inquiet ADJ f s 0.00 0.14 0.00 0.14 +mi-ironique mi_ironique ADJ m s 0.00 0.41 0.00 0.27 +mi-ironiques mi_ironique ADJ p 0.00 0.41 0.00 0.14 +mi-jambe mi_jambe NOM f s 0.00 0.74 0.00 0.47 +mi-jambes mi_jambe NOM f p 0.00 0.74 0.00 0.27 +mi-janvier mi_janvier NOM f s 0.12 0.20 0.12 0.20 +mi-jaune mi_jaune ADJ s 0.00 0.14 0.00 0.07 +mi-jaunes mi_jaune ADJ p 0.00 0.14 0.00 0.07 +mi-jersey mi_jersey NOM m s 0.00 0.14 0.00 0.14 +mi-joue mi_joue NOM f s 0.00 0.07 0.00 0.07 +mi-jour mi_jour NOM m s 0.00 0.07 0.00 0.07 +mi-journée mi_journée NOM f s 0.20 0.27 0.20 0.27 +mi-juif mi_juif NOM m 0.00 0.07 0.00 0.07 +mi-juillet mi_juillet NOM f s 0.02 0.41 0.02 0.41 +mi-juin mi_juin NOM f s 0.01 0.07 0.01 0.07 +mi-laiton mi_laiton NOM m s 0.00 0.07 0.00 0.07 +mi-lent mi_lent ADJ m s 0.01 0.00 0.01 0.00 +mi-londrès mi_londrès NOM m 0.00 0.07 0.00 0.07 +mi-longs mi_longs NOM m 0.15 0.34 0.15 0.34 +mi-longueur mi_longueur NOM f s 0.00 0.07 0.00 0.07 +mi-lourd mi_lourd ADJ m s 0.17 0.14 0.17 0.14 +mi-machine mi_machine NOM f s 0.07 0.00 0.06 0.00 +mi-machines mi_machine NOM f p 0.07 0.00 0.01 0.00 +mi-mai mi_mai NOM f s 0.01 0.00 0.01 0.00 +mi-mao mi_mao NOM s 0.00 0.07 0.00 0.07 +mi-marchande mi_marchande NOM m 0.00 0.07 0.00 0.07 +mi-mars mi_mars NOM f s 0.04 0.20 0.04 0.20 +mi-marécages mi_marécage NOM m p 0.00 0.07 0.00 0.07 +mi-menaçante mi_menaçant ADJ f s 0.00 0.07 0.00 0.07 +mi-meublé mi_meublé NOM m 0.00 0.07 0.00 0.07 +mi-mexicain mi_mexicain NOM m 0.01 0.00 0.01 0.00 +mi-miel mi_miel ADJ m s 0.00 0.07 0.00 0.07 +mi-mollet mi_mollet NOM m 0.01 0.20 0.01 0.20 +mi-mollets mi_mollets NOM m 0.00 0.27 0.00 0.27 +mi-mondaine mi_mondaine NOM m 0.00 0.07 0.00 0.07 +mi-moqueur mi_moqueur NOM m 0.00 0.14 0.00 0.14 +mi-mot mi_mot NOM m s 0.03 0.27 0.03 0.20 +mi-mots mi_mot NOM m p 0.03 0.27 0.00 0.07 +mi-mouton mi_mouton NOM m s 0.00 0.07 0.00 0.07 +mi-moyen mi_moyen ADJ m s 0.10 0.07 0.08 0.00 +mi-moyens mi_moyen ADJ m p 0.10 0.07 0.02 0.07 +mi-métal mi_métal NOM m s 0.00 0.07 0.00 0.07 +mi-narquoise mi_narquoise ADJ f s 0.00 0.07 0.00 0.07 +mi-noir mi_noir NOM m 0.00 0.07 0.00 0.07 +mi-novembre mi_novembre NOM f s 0.13 0.27 0.13 0.27 +mi-nuit mi_nuit NOM f s 0.00 0.07 0.00 0.07 +mi-obscure mi_obscur ADJ f s 0.00 0.07 0.00 0.07 +mi-octobre mi_octobre NOM f s 0.02 0.14 0.02 0.14 +mi-officiel mi_officiel NOM m 0.00 0.14 0.00 0.14 +mi-ogre mi_ogre NOM m s 0.00 0.07 0.00 0.07 +mi-oiseau mi_oiseau NOM m s 0.10 0.00 0.10 0.00 +mi-oriental mi_oriental NOM m 0.00 0.07 0.00 0.07 +mi-parcours mi_parcours NOM m 0.25 0.34 0.25 0.34 +mi-partie mi_parti ADJ f s 0.00 0.61 0.00 0.61 +mi-pathétique mi_pathétique ADJ s 0.00 0.07 0.00 0.07 +mi-patio mi_patio NOM m s 0.00 0.07 0.00 0.07 +mi-patois mi_patois NOM m 0.00 0.07 0.00 0.07 +mi-peau mi_peau NOM f s 0.00 0.07 0.00 0.07 +mi-pelouse mi_pelouse NOM f s 0.00 0.07 0.00 0.07 +mi-pensées mi_pensée NOM f p 0.00 0.14 0.00 0.14 +mi-pente mi_pente NOM f s 0.02 0.81 0.02 0.81 +mi-pierre mi_pierre NOM f s 0.00 0.07 0.00 0.07 +mi-pincé mi_pincé ADJ m s 0.00 0.07 0.00 0.07 +mi-plaintif mi_plaintif ADJ m s 0.00 0.20 0.00 0.20 +mi-plaisant mi_plaisant NOM m 0.00 0.07 0.00 0.07 +mi-pleurant mi_pleurant NOM m 0.00 0.07 0.00 0.07 +mi-pleurnichard mi_pleurnichard NOM m 0.00 0.07 0.00 0.07 +mi-plombiers mi_plombier NOM m p 0.00 0.07 0.00 0.07 +mi-poisson mi_poisson NOM m s 0.00 0.14 0.00 0.14 +mi-poitrine mi_poitrine NOM f s 0.00 0.07 0.00 0.07 +mi-porcine mi_porcine NOM m 0.00 0.07 0.00 0.07 +mi-porté mi_porté NOM m 0.00 0.07 0.00 0.07 +mi-portugaise mi_portugaise NOM m 0.00 0.07 0.00 0.07 +mi-poucet mi_poucet NOM m s 0.00 0.07 0.00 0.07 +mi-poulet mi_poulet NOM m s 0.00 0.07 0.00 0.07 +mi-prestidigitateur mi_prestidigitateur NOM m s 0.00 0.07 0.00 0.07 +mi-promenoir mi_promenoir NOM m s 0.00 0.07 0.00 0.07 +mi-protecteur mi_protecteur NOM m 0.00 0.14 0.00 0.14 +mi-pêcheurs mi_pêcheur NOM m p 0.00 0.07 0.00 0.07 +mi-putain mi_putain NOM f s 0.00 0.07 0.00 0.07 +mi-rageur mi_rageur ADJ m s 0.00 0.07 0.00 0.07 +mi-raide mi_raide ADJ f s 0.00 0.07 0.00 0.07 +mi-railleur mi_railleur NOM m 0.00 0.14 0.00 0.14 +mi-raisin mi_raisin NOM m s 0.02 0.61 0.02 0.61 +mi-renaissance mi_renaissance NOM f s 0.00 0.07 0.00 0.07 +mi-respectueuse mi_respectueux ADJ f s 0.00 0.07 0.00 0.07 +mi-riant mi_riant ADJ m s 0.00 0.27 0.00 0.27 +mi-rose mi_rose NOM s 0.00 0.07 0.00 0.07 +mi-roulotte mi_roulotte NOM f s 0.00 0.07 0.00 0.07 +mi-route mi_route NOM f s 0.00 0.07 0.00 0.07 +mi-réalité mi_réalité NOM f s 0.00 0.07 0.00 0.07 +mi-régime mi_régime NOM m s 0.00 0.07 0.00 0.07 +mi-réprobateur mi_réprobateur ADJ m s 0.00 0.07 0.00 0.07 +mi-résigné mi_résigné NOM m 0.00 0.07 0.00 0.07 +mi-russe mi_russe ADJ m s 0.14 0.07 0.14 0.07 +mi-saison mi_saison NOM f s 0.14 0.00 0.14 0.00 +mi-salade mi_salade NOM f s 0.01 0.00 0.01 0.00 +mi-salaire mi_salaire NOM m s 0.01 0.00 0.01 0.00 +mi-samoan mi_samoan ADJ m s 0.01 0.00 0.01 0.00 +mi-sanglotant mi_sanglotant ADJ m s 0.00 0.07 0.00 0.07 +mi-satin mi_satin NOM m s 0.00 0.07 0.00 0.07 +mi-satisfait mi_satisfait ADJ m s 0.00 0.07 0.00 0.07 +mi-sceptique mi_sceptique ADJ m s 0.00 0.07 0.00 0.07 +mi-scientifiques mi_scientifique ADJ f p 0.00 0.07 0.00 0.07 +mi-secours mi_secours NOM m 0.00 0.07 0.00 0.07 +mi-seigneur mi_seigneur NOM m s 0.00 0.07 0.00 0.07 +mi-sel mi_sel NOM m s 0.00 0.07 0.00 0.07 +mi-septembre mi_septembre NOM f s 0.03 0.27 0.03 0.27 +mi-sidérée mi_sidéré ADJ f s 0.00 0.07 0.00 0.07 +mi-singe mi_singe NOM m s 0.01 0.00 0.01 0.00 +mi-sombre mi_sombre ADJ m s 0.00 0.07 0.00 0.07 +mi-sommet mi_sommet NOM m s 0.00 0.07 0.00 0.07 +mi-songe mi_songe NOM m s 0.00 0.07 0.00 0.07 +mi-souriant mi_souriant ADJ m s 0.00 0.14 0.00 0.07 +mi-souriante mi_souriant ADJ f s 0.00 0.14 0.00 0.07 +mi-suisse mi_suisse ADJ s 0.00 0.07 0.00 0.07 +mi-série mi_série NOM f s 0.01 0.00 0.01 0.00 +mi-sérieux mi_sérieux ADJ m 0.00 0.20 0.00 0.20 +mi-tantouse mi_tantouse NOM f s 0.00 0.07 0.00 0.07 +mi-tendre mi_tendre NOM m 0.00 0.14 0.00 0.14 +mi-terrorisé mi_terrorisé ADJ m s 0.00 0.07 0.00 0.07 +mi-timide mi_timide ADJ s 0.00 0.07 0.00 0.07 +mi-tortue mi_tortue ADJ f s 0.00 0.07 0.00 0.07 +mi-tour mi_tour NOM s 0.00 0.07 0.00 0.07 +mi-tout mi_tout NOM m 0.00 0.07 0.00 0.07 +mi-tragique mi_tragique ADJ m s 0.00 0.07 0.00 0.07 +mi-trimestre mi_trimestre NOM m s 0.01 0.00 0.01 0.00 +mi-épaule mi_épaule NOM f s 0.00 0.07 0.00 0.07 +mi-étage mi_étage NOM m s 0.00 0.47 0.00 0.47 +mi-étendue mi_étendue NOM f s 0.00 0.07 0.00 0.07 +mi-étonné mi_étonné ADJ m s 0.00 0.14 0.00 0.14 +mi-été mi_été NOM m 0.00 0.27 0.00 0.27 +mi-étudiant mi_étudiant NOM m 0.00 0.07 0.00 0.07 +mi-éveillée mi_éveillé ADJ f s 0.00 0.14 0.00 0.14 +mi-velours mi_velours NOM m 0.00 0.07 0.00 0.07 +mi-verre mi_verre NOM m s 0.00 0.14 0.00 0.14 +mi-vie mi_vie NOM f s 0.00 0.07 0.00 0.07 +mi-voix mi_voix NOM f 0.31 14.39 0.31 14.39 +mi-voluptueux mi_voluptueux ADJ m 0.00 0.07 0.00 0.07 +mi-vrais mi_vrais NOM m 0.00 0.07 0.00 0.07 +mi-végétal mi_végétal NOM m 0.01 0.00 0.01 0.00 +mi-vénitien mi_vénitien NOM m 0.00 0.07 0.00 0.07 +miam-miam miam_miam ONO 0.56 0.68 0.56 0.68 +micro-cravate micro_cravate NOM m s 0.01 0.00 0.01 0.00 +micro-onde micro_onde NOM f s 0.38 0.00 0.38 0.00 +micro-ondes micro_ondes NOM m 2.45 0.14 2.45 0.14 +micro-ordinateur micro_ordinateur NOM m s 0.01 0.14 0.01 0.07 +micro-ordinateurs micro_ordinateur NOM m p 0.01 0.14 0.00 0.07 +micro-organisme micro_organisme NOM m s 0.08 0.00 0.08 0.00 +micro-trottoir micro_trottoir NOM m s 0.01 0.00 0.01 0.00 +middle-west middle_west NOM m s 0.05 0.14 0.05 0.14 +middle class middle_class NOM f s 0.00 0.07 0.00 0.07 +mieux-être mieux_être NOM m 0.12 0.20 0.12 0.20 +mieux-vivre mieux_vivre NOM m s 0.00 0.07 0.00 0.07 +militaro-industriel militaro_industriel ADJ m s 0.06 0.00 0.05 0.00 +militaro-industrielle militaro_industriel ADJ f s 0.06 0.00 0.01 0.00 +milk-bar milk_bar NOM m s 0.03 0.20 0.03 0.14 +milk-bars milk_bar NOM m p 0.03 0.20 0.00 0.07 +milk-shake milk_shake NOM m s 1.85 0.14 1.27 0.14 +milk-shakes milk_shake NOM m p 1.85 0.14 0.45 0.00 +milk shake milk_shake NOM m s 1.85 0.14 0.13 0.00 +mille-feuille mille_feuille NOM m s 0.03 1.08 0.02 0.20 +mille-feuilles mille_feuille NOM m p 0.03 1.08 0.01 0.88 +mille-pattes mille_pattes NOM m 0.39 2.09 0.39 2.09 +mini-chaîne mini_chaîne NOM f s 0.14 0.07 0.14 0.07 +mini-jupe mini_jupe NOM f s 0.62 0.54 0.56 0.34 +mini-jupes mini_jupe NOM f p 0.62 0.54 0.06 0.20 +mini-ordinateur mini_ordinateur NOM m s 0.02 0.00 0.02 0.00 +minus habens minus_habens NOM m 0.00 0.14 0.00 0.14 +mission-suicide mission_suicide NOM f s 0.03 0.07 0.03 0.07 +mobil-home mobil_home NOM m s 0.07 0.00 0.07 0.00 +modern-style modern_style NOM m s 0.00 0.27 0.00 0.27 +modern style modern_style NOM m 0.01 0.00 0.01 0.00 +modus operandi modus_operandi NOM m s 0.32 0.00 0.32 0.00 +modus vivendi modus_vivendi NOM m 0.01 0.47 0.01 0.47 +moi-moi-moi moi_moi_moi NOM m 0.00 0.07 0.00 0.07 +moi-même moi_même PRO:per s 83.25 107.30 83.25 107.30 +moissonneuse-batteuse moissonneuse_batteuse NOM f s 0.04 0.47 0.04 0.27 +moissonneuse-lieuse moissonneuse_lieuse NOM f s 0.00 0.14 0.00 0.07 +moissonneuses-batteuses moissonneuse_batteuse NOM f p 0.04 0.47 0.00 0.20 +moissonneuses-lieuses moissonneuse_lieuse NOM f p 0.00 0.14 0.00 0.07 +moitié-moitié moitié_moitié ADV 0.00 0.14 0.00 0.14 +moment-clé moment_clé NOM m s 0.04 0.00 0.04 0.00 +moments-clés moments_clé NOM m p 0.01 0.00 0.01 0.00 +monnaie-du-pape monnaie_du_pape NOM f s 0.00 0.07 0.00 0.07 +monnaies-du-pape monnaies_du_pape NOM f p 0.00 0.07 0.00 0.07 +mont-blanc mont_blanc NOM m s 1.84 0.47 1.64 0.41 +mont-de-piété mont_de_piété NOM m s 0.98 0.81 0.98 0.81 +monte-charge monte_charge NOM m 0.51 0.54 0.51 0.54 +monte-charges monte_charges NOM m 0.01 0.07 0.01 0.07 +monte-en-l'air monte_en_l_air NOM m 0.12 0.20 0.12 0.20 +monte-plat monte_plat NOM m s 0.01 0.00 0.01 0.00 +monte-plats monte_plats NOM m 0.04 0.07 0.04 0.07 +montre-bracelet montre_bracelet NOM f s 0.08 2.09 0.07 1.82 +montre-gousset montre_gousset NOM f s 0.01 0.07 0.01 0.07 +montre-la-moi montre_la_moi NOM f s 0.14 0.00 0.14 0.00 +montres-bracelets montre_bracelet NOM f p 0.08 2.09 0.01 0.27 +monts-blancs mont_blanc NOM m p 1.84 0.47 0.20 0.07 +mort-aux-rats mort_aux_rats NOM f 0.61 0.47 0.61 0.47 +mort-né mort_né ADJ m s 0.80 0.61 0.53 0.34 +mort-née mort_né ADJ f s 0.80 0.61 0.23 0.00 +mort-nées mort_né ADJ f p 0.80 0.61 0.00 0.07 +mort-nés mort_né ADJ m p 0.80 0.61 0.04 0.20 +mort-vivant mort_vivant NOM m s 1.46 0.81 0.41 0.27 +morte-saison morte_saison NOM f s 0.01 1.08 0.01 1.01 +mortes-eaux mortes_eaux NOM f p 0.00 0.07 0.00 0.07 +mortes-saisons morte_saison NOM f p 0.01 1.08 0.00 0.07 +morts-vivants mort_vivant NOM m p 1.46 0.81 1.05 0.54 +mot-clé mot_clé NOM m s 0.58 0.34 0.41 0.14 +mot-valise mot_valise NOM m s 0.01 0.00 0.01 0.00 +moteur-fusée moteur_fusée NOM m s 0.04 0.00 0.01 0.00 +moteurs-fusées moteur_fusée NOM m p 0.04 0.00 0.04 0.00 +moto-club moto_club NOM f s 0.00 0.14 0.00 0.14 +moto-cross moto_cross NOM m 0.04 0.07 0.04 0.07 +mots-clefs mot_clef NOM m p 0.00 0.07 0.00 0.07 +mots-clés mot_clé NOM m p 0.58 0.34 0.17 0.20 +mots-croisés mots_croisés NOM m p 0.07 0.00 0.07 0.00 +motu proprio motu_proprio ADV 0.00 0.07 0.00 0.07 +moulin-à-vent moulin_à_vent NOM m 0.00 0.14 0.00 0.14 +moyen-âge moyen_âge NOM m s 1.15 0.20 1.15 0.20 +moyen-oriental moyen_oriental ADJ m s 0.03 0.00 0.03 0.00 +moyen-orientaux moyen_orientaux ADJ m p 0.01 0.00 0.01 0.00 +mère-grand mère_grand NOM f s 0.89 0.34 0.89 0.34 +mère-patrie mère_patrie NOM f s 0.04 0.41 0.04 0.41 +médecin-chef médecin_chef NOM m s 0.56 2.09 0.56 2.09 +médecin-conseil médecin_conseil NOM m s 0.01 0.00 0.01 0.00 +médecin-général médecin_général NOM m s 0.01 0.20 0.01 0.20 +médecin-major médecin_major NOM m s 0.70 0.14 0.70 0.14 +médecine-ball médecine_ball NOM m s 0.01 0.00 0.01 0.00 +médico-légal médico_légal ADJ m s 1.06 0.54 0.63 0.41 +médico-légale médico_légal ADJ f s 1.06 0.54 0.25 0.14 +médico-légales médico_légal ADJ f p 1.06 0.54 0.13 0.00 +médico-légaux médico_légal ADJ m p 1.06 0.54 0.05 0.00 +médico-psychologique médico_psychologique ADJ m s 0.01 0.00 0.01 0.00 +médico-social médico_social ADJ m s 0.01 0.07 0.01 0.07 +mêle-tout mêle_tout NOM m 0.01 0.00 0.01 0.00 +méli-mélo méli_mélo NOM m s 0.39 0.81 0.39 0.68 +mélis-mélos méli_mélo NOM m p 0.39 0.81 0.00 0.14 +multi-tâches multi_tâches ADJ f s 0.05 0.00 0.05 0.00 +mêlé-cass mêlé_cass NOM m 0.00 0.20 0.00 0.20 +mêlé-casse mêlé_casse NOM m 0.00 0.14 0.00 0.14 +musettes-repas musettes_repa NOM f p 0.00 0.07 0.00 0.07 +music-hall music_hall NOM m s 1.85 4.32 1.70 3.78 +music-halls music_hall NOM m p 1.85 4.32 0.13 0.54 +music hall music_hall NOM m s 1.85 4.32 0.02 0.00 +mutatis mutandis mutatis_mutandis ADV 0.00 0.07 0.00 0.07 +n'est-ce pas n_est_ce_pas ADV 0.10 0.00 0.10 0.00 +narco-analyse narco_analyse NOM f s 0.01 0.00 0.01 0.00 +national-socialisme national_socialisme NOM m s 0.58 2.03 0.58 2.03 +national-socialiste national_socialiste ADJ m s 0.23 0.14 0.23 0.14 +nationale-socialiste nationale_socialiste ADJ f s 0.00 0.14 0.00 0.14 +nationaux-socialistes nationaux_socialistes ADJ p 0.00 0.14 0.00 0.14 +navire-citerne navire_citerne NOM m s 0.14 0.00 0.01 0.00 +navire-hôpital navire_hôpital NOM m s 0.04 0.14 0.04 0.14 +navires-citernes navire_citerne NOM m p 0.14 0.00 0.14 0.00 +navires-écoles navire_école NOM m p 0.00 0.07 0.00 0.07 +ne varietur ne_varietur ADV 0.00 0.14 0.00 0.14 +negro spiritual negro_spiritual NOM m s 0.01 0.14 0.01 0.07 +negro spirituals negro_spiritual NOM m p 0.01 0.14 0.00 0.07 +new-yorkais new_yorkais ADJ m 0.00 1.42 0.00 0.95 +new-yorkaise new_yorkais ADJ f s 0.00 1.42 0.00 0.34 +new-yorkaises new_yorkais ADJ f p 0.00 1.42 0.00 0.14 +new wave new_wave NOM f 0.00 0.07 0.00 0.07 +nid-de-poule nid_de_poule NOM m s 0.20 0.20 0.14 0.07 +nids-de-poule nid_de_poule NOM m p 0.20 0.20 0.06 0.14 +night-club night_club NOM m s 1.31 0.88 1.16 0.61 +night-clubs night_club NOM m p 1.31 0.88 0.10 0.27 +night club night_club NOM m s 1.31 0.88 0.05 0.00 +nihil obstat nihil_obstat ADV 0.00 0.20 0.00 0.20 +nimbo-stratus nimbo_stratus NOM m 0.14 0.00 0.14 0.00 +no man's land no_man_s_land NOM m s 0.95 1.49 0.95 1.49 +non-agression non_agression NOM f s 0.07 0.61 0.07 0.61 +non-alignement non_alignement NOM m s 0.04 0.00 0.04 0.00 +non-alignés non_aligné ADJ m p 0.09 0.00 0.09 0.00 +non-amour non_amour NOM m s 0.10 0.00 0.10 0.00 +non-appartenance non_appartenance NOM f s 0.01 0.07 0.01 0.07 +non-assistance non_assistance NOM f s 0.10 0.07 0.10 0.07 +non-blanc non_blanc NOM m s 0.04 0.07 0.00 0.07 +non-blancs non_blanc NOM m p 0.04 0.07 0.04 0.00 +non-combattant non_combattant ADJ m s 0.15 0.00 0.01 0.00 +non-combattant non_combattant NOM m s 0.03 0.00 0.01 0.00 +non-combattants non_combattant ADJ m p 0.15 0.00 0.14 0.00 +non-comparution non_comparution NOM f s 0.01 0.00 0.01 0.00 +non-concurrence non_concurrence NOM f s 0.01 0.00 0.01 0.00 +non-conformisme non_conformisme NOM m s 0.00 0.20 0.00 0.20 +non-conformiste non_conformiste ADJ s 0.14 0.00 0.10 0.00 +non-conformistes non_conformiste ADJ p 0.14 0.00 0.04 0.00 +non-conformité non_conformité NOM f s 0.01 0.00 0.01 0.00 +non-consommation non_consommation NOM f s 0.03 0.00 0.03 0.00 +non-croyance non_croyance NOM f s 0.10 0.00 0.10 0.00 +non-croyant non_croyant NOM m s 0.62 0.07 0.21 0.07 +non-croyants non_croyant NOM m p 0.62 0.07 0.41 0.00 +non-culpabilité non_culpabilité NOM f s 0.01 0.00 0.01 0.00 +non-dit non_dit NOM m s 0.27 0.88 0.09 0.74 +non-dits non_dit NOM m p 0.27 0.88 0.18 0.14 +non-droit non_droit NOM m s 0.22 0.00 0.22 0.00 +non-existence non_existence NOM f s 0.07 0.07 0.07 0.07 +non-ferreux non_ferreux NOM m 0.01 0.00 0.01 0.00 +non-fumeur non_fumeur ADJ m s 0.68 0.00 0.68 0.00 +non-fumeurs non_fumeurs ADJ 0.44 0.07 0.44 0.07 +non-initié non_initié NOM m s 0.22 0.34 0.03 0.14 +non-initiés non_initié NOM m p 0.22 0.34 0.19 0.20 +non-intervention non_intervention NOM f s 0.21 0.14 0.21 0.14 +non-lieu non_lieu NOM m s 1.08 1.42 1.08 1.42 +non-lieux non_lieux NOM m p 0.01 0.20 0.01 0.20 +non-malades non_malade NOM p 0.00 0.07 0.00 0.07 +non-paiement non_paiement NOM m s 0.10 0.07 0.10 0.07 +non-participation non_participation NOM f s 0.01 0.07 0.01 0.07 +non-pesanteur non_pesanteur NOM f s 0.00 0.07 0.00 0.07 +non-prolifération non_prolifération NOM f s 0.09 0.00 0.09 0.00 +non-présence non_présence NOM f s 0.01 0.14 0.01 0.14 +non-recevoir non_recevoir NOM m s 0.06 0.20 0.06 0.20 +non-représentation non_représentation NOM f s 0.01 0.00 0.01 0.00 +non-respect non_respect NOM m s 0.16 0.00 0.16 0.00 +non-retour non_retour NOM m s 0.34 0.41 0.34 0.41 +non-résistance non_résistance NOM f s 0.00 0.14 0.00 0.14 +non-savoir non_savoir NOM m s 0.04 0.07 0.04 0.07 +non-sens non_sens NOM m 0.83 0.95 0.83 0.95 +non-spécialiste non_spécialiste NOM s 0.02 0.07 0.01 0.00 +non-spécialistes non_spécialiste NOM p 0.02 0.07 0.01 0.07 +non-stop non_stop ADJ 0.89 0.14 0.89 0.14 +non-séparation non_séparation NOM f s 0.00 0.07 0.00 0.07 +non-utilisation non_utilisation NOM f s 0.01 0.00 0.01 0.00 +non-être non_être NOM m 0.00 0.95 0.00 0.95 +non-événement non_événement NOM m s 0.02 0.00 0.02 0.00 +non-vie non_vie NOM f s 0.04 0.00 0.04 0.00 +non-violence non_violence NOM f s 0.63 0.07 0.63 0.07 +non-violent non_violent ADJ m s 0.31 0.07 0.19 0.07 +non-violente non_violent ADJ f s 0.31 0.07 0.07 0.00 +non-violents non_violent ADJ m p 0.31 0.07 0.05 0.00 +non-vouloir non_vouloir NOM m s 0.00 0.07 0.00 0.07 +non-voyant non_voyant NOM m s 0.32 0.27 0.28 0.20 +non-voyante non_voyant NOM f s 0.32 0.27 0.02 0.00 +non-voyants non_voyant NOM m p 0.32 0.27 0.03 0.07 +non troppo non_troppo ADV 0.00 0.07 0.00 0.07 +nonante-huit nonante_huit ADJ:num 0.00 0.07 0.00 0.07 +nord-africain nord_africain ADJ m s 0.05 1.96 0.02 0.20 +nord-africaine nord_africain ADJ f s 0.05 1.96 0.01 0.95 +nord-africaines nord_africain ADJ f p 0.05 1.96 0.01 0.07 +nord-africains nord_africain ADJ m p 0.05 1.96 0.01 0.74 +nord-américain nord_américain ADJ m s 0.32 0.20 0.24 0.07 +nord-américaine nord_américain ADJ f s 0.32 0.20 0.06 0.14 +nord-américains nord_américain NOM m p 0.13 0.00 0.03 0.00 +nord-coréen nord_coréen ADJ m s 0.36 0.00 0.24 0.00 +nord-coréenne nord_coréen ADJ f s 0.36 0.00 0.06 0.00 +nord-coréennes nord_coréen ADJ f p 0.36 0.00 0.02 0.00 +nord-coréens nord_coréen NOM m p 0.23 0.07 0.18 0.07 +nord-est nord_est NOM m 1.40 2.84 1.40 2.84 +nord-nord-est nord_nord_est NOM m s 0.03 0.14 0.03 0.14 +nord-ouest nord_ouest NOM m 0.95 1.22 0.95 1.22 +nord-sud nord_sud ADJ 0.15 0.88 0.15 0.88 +nord-vietnamien nord_vietnamien ADJ m s 0.11 0.00 0.04 0.00 +nord-vietnamienne nord_vietnamien ADJ f s 0.11 0.00 0.04 0.00 +nord-vietnamiens nord_vietnamien NOM m p 0.12 0.00 0.11 0.00 +nota bene nota_bene ADV 0.01 0.07 0.01 0.07 +notre-dame notre_dame NOM f 2.69 8.58 2.69 8.58 +nous-même nous_même PRO:per p 1.12 0.61 1.12 0.61 +nous-mêmes nous_mêmes PRO:per p 11.11 16.28 11.11 16.28 +nouveau-né nouveau_né NOM m s 2.72 4.80 2.27 3.18 +nouveau-nés nouveau_né NOM m p 2.72 4.80 0.14 1.49 +nouveaux-nés nouveau_né NOM m p 2.72 4.80 0.30 0.14 +nu-propriétaire nu_propriétaire NOM s 0.00 0.07 0.00 0.07 +nu-tête nu_tête ADJ m s 0.02 1.35 0.02 1.35 +nue-propriété nue_propriété NOM f s 0.00 0.07 0.00 0.07 +numerus clausus numerus_clausus NOM m 0.00 0.07 0.00 0.07 +néo-barbares néo_barbare ADJ f p 0.00 0.07 0.00 0.07 +néo-classique néo_classique ADJ s 0.12 0.34 0.12 0.34 +néo-colonialisme néo_colonialisme NOM m s 0.00 0.20 0.00 0.20 +néo-communiste néo_communiste ADJ f s 0.01 0.00 0.01 0.00 +néo-fascisme néo_fascisme NOM m s 0.01 0.07 0.01 0.07 +néo-fascistes néo_fasciste ADJ p 0.01 0.00 0.01 0.00 +néo-fascistes néo_fasciste NOM p 0.01 0.00 0.01 0.00 +néo-figuration néo_figuration NOM f s 0.00 0.07 0.00 0.07 +néo-flics néo_flic NOM m p 0.02 0.00 0.02 0.00 +néo-gangster néo_gangster NOM m s 0.01 0.00 0.01 0.00 +néo-gothique néo_gothique ADJ f s 0.00 0.20 0.00 0.14 +néo-gothiques néo_gothique ADJ p 0.00 0.20 0.00 0.07 +néo-grec néo_grec ADJ m s 0.00 0.07 0.00 0.07 +néo-helléniques néo_hellénique ADJ f p 0.00 0.07 0.00 0.07 +néo-malthusianisme néo_malthusianisme NOM m s 0.00 0.14 0.00 0.14 +néo-mauresque néo_mauresque ADJ m s 0.00 0.14 0.00 0.07 +néo-mauresques néo_mauresque ADJ f p 0.00 0.14 0.00 0.07 +néo-mouvement néo_mouvement NOM m s 0.00 0.07 0.00 0.07 +néo-renaissant néo_renaissant ADJ m s 0.00 0.07 0.00 0.07 +néo-romantique néo_romantique ADJ f s 0.01 0.00 0.01 0.00 +néo-réalisme néo_réalisme NOM m s 0.10 0.07 0.10 0.07 +néo-réaliste néo_réaliste ADJ m s 0.00 0.20 0.00 0.07 +néo-réalistes néo_réaliste ADJ m p 0.00 0.20 0.00 0.14 +néo-russe néo_russe ADJ s 0.00 0.14 0.00 0.14 +néo-zélandais néo_zélandais ADJ m 0.11 0.14 0.10 0.14 +néo-zélandaise néo_zélandais ADJ f s 0.11 0.14 0.01 0.00 +nuoc-mâm nuoc_mâm NOM m 0.00 0.07 0.00 0.07 +à-côté à_côté NOM m s 0.00 0.68 0.00 0.34 +à-côtés à_côté NOM m p 0.00 0.68 0.00 0.34 +à-coup à_coup NOM m s 0.00 4.80 0.00 0.54 +à-coups à_coup NOM m p 0.00 4.80 0.00 4.26 +à-dieu-vat à_dieu_vat ONO 0.00 0.07 0.00 0.07 +à-peu-près à_peu_près NOM m 0.00 0.74 0.00 0.74 +à-pic à_pic NOM m 0.00 1.42 0.00 1.08 +à-pics à_pic NOM m p 0.00 1.42 0.00 0.34 +à-plat à_plat NOM m s 0.00 0.27 0.00 0.14 +à-plats à_plat NOM m p 0.00 0.27 0.00 0.14 +à-propos à_propos NOM m 0.00 0.88 0.00 0.88 +à-valoir à_valoir NOM m 0.00 0.27 0.00 0.27 +à brûle-pourpoint à_brûle_pourpoint 0.14 0.00 0.14 0.00 +à cloche-pied à_cloche_pied 0.22 0.00 0.22 0.00 +à cropetons à_cropetons ADV 0.00 0.07 0.00 0.07 +à croupetons à_croupetons ADV 0.01 0.95 0.01 0.95 +à fortiori à_fortiori ADV 0.16 0.20 0.16 0.20 +à giorno à_giorno ADV 0.00 0.07 0.00 0.07 +à glagla à_glagla ADV 0.00 0.07 0.00 0.07 +à jeun à_jeun ADV 1.45 3.85 1.27 3.85 +à l'aveuglette à_l_aveuglette ADV 1.11 2.16 1.11 2.16 +à l'encan à_l_encan ADV 0.01 0.14 0.01 0.14 +à l'encontre à_l_encontre PRE 2.67 1.89 2.67 1.89 +à l'envi à_l_envi ADV 0.20 0.61 0.20 0.61 +à l'improviste à_l_improviste ADV 2.67 4.53 2.67 4.53 +à l'instar à_l_instar PRE 0.26 6.42 0.26 6.42 +à la daumont à_la_daumont ADV 0.00 0.07 0.00 0.07 +à la saint-glinglin à_la_saint_glinglin ADV 0.02 0.00 0.02 0.00 +à leur encontre à_leur_encontre ADV 0.03 0.07 0.03 0.07 +à lurelure à_lurelure ADV 0.00 0.20 0.00 0.20 +à mon encontre à_mon_encontre ADV 0.05 0.14 0.05 0.14 +à notre encontre à_notre_encontre ADV 0.02 0.07 0.02 0.07 +à posteriori a_posteriori ADV 0.05 0.20 0.04 0.07 +à priori a_priori ADV 1.04 3.85 0.41 1.28 +à rebrousse-poil à_rebrousse_poil 0.08 0.00 0.08 0.00 +à son encontre à_son_encontre ADV 0.05 0.20 0.05 0.20 +à tire-larigot à_tire_larigot 0.17 0.00 0.17 0.00 +à ton encontre à_ton_encontre ADV 0.02 0.00 0.02 0.00 +à tâtons à_tâtons ADV 0.60 8.78 0.60 8.78 +à touche-touche à_touche_touche 0.01 0.00 0.01 0.00 +à tue-tête à_tue_tête 0.54 0.00 0.54 0.00 +à votre encontre à_votre_encontre ADV 0.15 0.00 0.15 0.00 +oeil-de-boeuf oeil_de_boeuf NOM m s 0.00 0.95 0.00 0.47 +oeils-de-boeuf oeil_de_boeuf NOM m p 0.00 0.95 0.00 0.47 +oeils-de-perdrix oeil_de_perdrix NOM m p 0.00 0.14 0.00 0.14 +off-shore off_shore NOM m s 0.07 0.00 0.07 0.00 +oiseau-clé oiseau_clé NOM m s 0.01 0.00 0.01 0.00 +oiseau-lyre oiseau_lyre NOM m s 0.00 0.07 0.00 0.07 +oiseau-mouche oiseau_mouche NOM m s 0.10 0.27 0.08 0.14 +oiseau-vedette oiseau_vedette NOM m s 0.01 0.00 0.01 0.00 +oiseaux-mouches oiseau_mouche NOM m p 0.10 0.27 0.01 0.14 +oligo-éléments oligo_élément NOM m p 0.00 0.14 0.00 0.14 +olla podrida olla_podrida NOM f 0.00 0.07 0.00 0.07 +olé-olé olé_olé ADJ m p 0.00 0.14 0.00 0.14 +âme-soeur âme_soeur NOM f s 0.04 0.14 0.04 0.14 +on-dit on_dit NOM m 0.14 0.81 0.14 0.81 +on-line on_line ADV 0.07 0.00 0.07 0.00 +one-step one_step NOM m s 0.00 0.20 0.00 0.20 +opéra-comique opéra_comique NOM m s 0.00 0.34 0.00 0.34 +opération-miracle opération_miracle NOM f s 0.00 0.07 0.00 0.07 +orang-outan orang_outan NOM m s 0.28 0.20 0.22 0.07 +orang-outang orang_outang NOM m s 0.08 0.74 0.08 0.61 +orangs-outangs orang_outang NOM m p 0.08 0.74 0.00 0.14 +orangs-outans orang_outan NOM m p 0.28 0.20 0.06 0.14 +osso buco osso_buco NOM m s 0.05 0.00 0.05 0.00 +oto-rhino-laryngologique oto_rhino_laryngologique ADJ f s 0.00 0.07 0.00 0.07 +oto-rhino-laryngologiste oto_rhino_laryngologiste NOM s 0.02 0.00 0.02 0.00 +oto-rhino oto_rhino NOM s 0.49 1.22 0.48 1.08 +oto-rhinos oto_rhino NOM p 0.49 1.22 0.01 0.07 +oto rhino oto_rhino NOM s 0.49 1.22 0.00 0.07 +ouï-dire ouï_dire NOM m 0.00 1.01 0.00 1.01 +ouest-allemand ouest_allemand ADJ m s 0.12 0.00 0.12 0.00 +oui-da oui_da ONO 0.27 0.07 0.27 0.07 +outre-atlantique outre_atlantique ADV 0.04 0.68 0.04 0.68 +outre-manche outre_manche ADV 0.00 0.20 0.00 0.20 +outre-mer outre_mer ADV 0.89 4.05 0.89 4.05 +outre-rhin outre_rhin ADV 0.00 0.27 0.00 0.27 +outre-tombe outre_tombe ADJ s 0.26 2.16 0.26 2.16 +ouvre-boîte ouvre_boîte NOM m s 0.32 0.20 0.32 0.20 +ouvre-boîtes ouvre_boîtes NOM m 0.16 0.34 0.16 0.34 +ouvre-bouteille ouvre_bouteille NOM m s 0.12 0.14 0.08 0.00 +ouvre-bouteilles ouvre_bouteille NOM m p 0.12 0.14 0.04 0.14 +palma-christi palma_christi NOM m 0.00 0.07 0.00 0.07 +pan bagnat pan_bagnat NOM m s 0.00 0.14 0.00 0.14 +panier-repas panier_repas NOM m 0.21 0.07 0.21 0.07 +panneau-réclame panneau_réclame NOM m s 0.00 0.68 0.00 0.68 +papa-cadeau papa_cadeau NOM m s 0.01 0.00 0.01 0.00 +papier-cadeau papier_cadeau NOM m s 0.07 0.07 0.07 0.07 +papier-monnaie papier_monnaie NOM m s 0.00 0.14 0.00 0.14 +papiers-calque papier_calque NOM m p 0.00 0.07 0.00 0.07 +paquet-cadeau paquet_cadeau NOM m s 0.19 0.20 0.19 0.20 +paquets-cadeaux paquets_cadeaux NOM m p 0.01 0.54 0.01 0.54 +par-ci par_ci ADV 3.10 9.12 3.10 9.12 +par-dedans par_dedans PRE 0.00 0.07 0.00 0.07 +par-delà par_delà PRE 1.32 9.05 1.32 9.05 +par-derrière par_derrière PRE 2.04 6.35 2.04 6.35 +par-dessous par_dessous PRE 0.32 2.16 0.32 2.16 +par-dessus par_dessus PRE 16.10 69.19 16.10 69.19 +par-devant par_devant PRE 0.16 1.96 0.16 1.96 +par-devers par_devers PRE 0.01 1.08 0.01 1.08 +par mégarde par_mégarde ADV 0.61 2.91 0.61 2.91 +para-humain para_humain NOM m s 0.00 0.14 0.00 0.14 +parce qu parce_qu CON 4.13 2.36 4.13 2.36 +parce que parce_que CON 548.52 327.43 548.52 327.43 +pare-balle pare_balle ADJ s 0.13 0.00 0.13 0.00 +pare-balles pare_balles ADJ 1.92 0.34 1.92 0.34 +pare-boue pare_boue NOM m 0.04 0.00 0.04 0.00 +pare-brise pare_brise NOM m 4.12 7.16 4.08 7.16 +pare-brises pare_brise NOM m p 4.12 7.16 0.04 0.00 +pare-chocs pare_chocs NOM m 1.85 1.82 1.85 1.82 +pare-feu pare_feu NOM m 0.24 0.07 0.24 0.07 +pare-feux pare_feux NOM m p 0.05 0.00 0.05 0.00 +pare-soleil pare_soleil NOM m 0.26 0.54 0.26 0.54 +pare-éclats pare_éclats NOM m 0.00 0.07 0.00 0.07 +pare-étincelles pare_étincelles NOM m 0.00 0.07 0.00 0.07 +paris-brest paris_brest NOM m 0.19 0.20 0.19 0.20 +part time part_time NOM f s 0.00 0.14 0.00 0.14 +partenaire-robot partenaire_robot NOM s 0.01 0.00 0.01 0.00 +pas-de-porte pas_de_porte NOM m 0.00 0.20 0.00 0.20 +pas-je pas_je ADV 0.01 0.00 0.01 0.00 +paso-doble paso_doble NOM m s 0.00 0.07 0.00 0.07 +paso doble paso_doble NOM m 0.69 0.81 0.69 0.81 +passe-boule passe_boule NOM m s 0.00 0.07 0.00 0.07 +passe-boules passe_boules NOM m 0.00 0.07 0.00 0.07 +passe-crassane passe_crassane NOM f 0.00 0.14 0.00 0.14 +passe-droit passe_droit NOM m s 0.25 0.47 0.08 0.27 +passe-droits passe_droit NOM m p 0.25 0.47 0.17 0.20 +passe-la-moi passe_la_moi NOM f s 0.35 0.07 0.35 0.07 +passe-lacet passe_lacet NOM m s 0.00 0.20 0.00 0.07 +passe-lacets passe_lacet NOM m p 0.00 0.20 0.00 0.14 +passe-montagne passe_montagne NOM m s 0.41 1.69 0.39 1.35 +passe-montagnes passe_montagne NOM m p 0.41 1.69 0.02 0.34 +passe-muraille passe_muraille NOM m 0.01 0.07 0.01 0.07 +passe-partout passe_partout NOM m 0.45 1.22 0.45 1.22 +passe-passe passe_passe NOM m 0.97 1.15 0.97 1.15 +passe-pied passe_pied NOM m s 0.00 0.07 0.00 0.07 +passe-plat passe_plat NOM m s 0.04 0.14 0.04 0.14 +passe-roses passe_rose NOM f p 0.00 0.07 0.00 0.07 +passe-temps passe_temps NOM m 4.21 2.77 4.21 2.77 +pater familias pater_familias NOM m 0.03 0.07 0.03 0.07 +pater noster pater_noster NOM m s 0.10 0.41 0.10 0.41 +pause-café pause_café NOM f s 0.29 0.14 0.26 0.07 +pauses-café pause_café NOM f p 0.29 0.14 0.03 0.07 +pauses-repas pauses_repas NOM f p 0.01 0.07 0.01 0.07 +pax americana pax_americana NOM f 0.01 0.00 0.01 0.00 +peau-rouge peau_rouge NOM s 0.51 0.54 0.49 0.27 +peaux-rouges peau_rouge NOM p 0.51 0.54 0.02 0.27 +peigne-cul peigne_cul NOM m s 0.23 0.34 0.07 0.27 +peigne-culs peigne_cul NOM m p 0.23 0.34 0.17 0.07 +peigne-zizi peigne_zizi NOM s 0.00 0.07 0.00 0.07 +pelle-bêche pelle_bêche NOM f s 0.00 0.14 0.00 0.07 +pelle-pioche pelle_pioche NOM f s 0.00 0.41 0.00 0.07 +pelles-bêches pelle_bêche NOM f p 0.00 0.14 0.00 0.07 +pelles-pioches pelle_pioche NOM f p 0.00 0.41 0.00 0.34 +pense-bête pense_bête NOM m s 0.34 0.41 0.17 0.41 +pense-bêtes pense_bête NOM m p 0.34 0.41 0.17 0.00 +perce-oreille perce_oreille NOM m s 0.04 0.20 0.03 0.07 +perce-oreilles perce_oreille NOM m p 0.04 0.20 0.01 0.14 +perce-pierre perce_pierre NOM f s 0.00 0.07 0.00 0.07 +persona grata persona_grata ADJ 0.01 0.00 0.01 0.00 +persona non grata persona_non_grata NOM f 0.08 0.07 0.08 0.07 +personnage-clé personnage_clé NOM m s 0.02 0.00 0.02 0.00 +pet-de-loup pet_de_loup NOM m s 0.00 0.07 0.00 0.07 +petit-beurre petit_beurre NOM m s 0.00 0.95 0.00 0.14 +petit-bourgeois petit_bourgeois ADJ m 0.77 1.42 0.77 1.42 +petit-cousin petit_cousin NOM m s 0.00 0.07 0.00 0.07 +petit-déjeuner petit_déjeuner NOM m s 13.51 0.07 13.37 0.00 +petit-fils petit_fils NOM m 12.90 12.70 12.50 11.01 +petit-four petit_four NOM m s 0.08 0.07 0.03 0.00 +petit-gris petit_gris NOM m 0.51 0.00 0.27 0.00 +petit-lait petit_lait NOM m s 0.05 0.54 0.05 0.54 +petit-maître petit_maître NOM m s 0.20 0.07 0.20 0.07 +petit-neveu petit_neveu NOM m s 0.04 0.95 0.04 0.61 +petit-nègre petit_nègre NOM m s 0.00 0.14 0.00 0.14 +petit-salé petit_salé NOM m s 0.00 0.07 0.00 0.07 +petit-suisse petit_suisse NOM m s 0.01 0.20 0.01 0.00 +petite-bourgeoise petite_bourgeoise ADJ f s 0.11 0.27 0.11 0.27 +petite-cousine petite_cousine NOM f s 0.00 0.14 0.00 0.14 +petite-fille petite_fille NOM f s 5.30 6.35 4.97 5.74 +petite-nièce petite_nièce NOM f s 0.02 0.20 0.02 0.20 +petites-bourgeoises petite_bourgeoise NOM f p 0.00 0.34 0.00 0.14 +petites-filles petite_fille NOM f p 5.30 6.35 0.33 0.61 +petits-beurre petit_beurre NOM m p 0.00 0.95 0.00 0.81 +petits-bourgeois petit_bourgeois NOM m p 0.71 2.16 0.32 1.42 +petits-déjeuners petit_déjeuner NOM m p 13.51 0.07 0.14 0.07 +petits-enfants petit_enfant NOM m p 5.76 3.04 5.76 3.04 +petits-fils petit_fils NOM m p 12.90 12.70 0.40 1.69 +petits-fours petit_four NOM m p 0.08 0.07 0.04 0.07 +petits-gris petit_gris NOM m p 0.51 0.00 0.25 0.00 +petits-neveux petit_neveu NOM m p 0.04 0.95 0.00 0.34 +petits-pois petits_pois NOM m p 0.10 0.00 0.10 0.00 +petits-suisses petit_suisse NOM m p 0.01 0.20 0.00 0.20 +pets-de-nonne pet_de_nonne NOM m p 0.00 0.41 0.00 0.41 +peu ou prou peu_ou_prou ADV 0.40 0.68 0.40 0.68 +peut-être peut_être ADV 907.68 697.97 907.68 697.97 +photo-finish photo_finish NOM f s 0.01 0.00 0.01 0.00 +photo-robot photo_robot NOM f s 0.01 0.14 0.01 0.14 +photo-électrique photo_électrique ADJ f s 0.00 0.14 0.00 0.14 +phrase-clé phrase_clé NOM f s 0.02 0.00 0.02 0.00 +phrase-robot phrase_robot NOM f s 0.00 0.07 0.00 0.07 +phrases-clés phrases_clé NOM f p 0.00 0.07 0.00 0.07 +physico-chimiques physico_chimique ADJ f p 0.00 0.07 0.00 0.07 +piano-bar piano_bar NOM m s 0.05 0.00 0.05 0.00 +pic-vert pic_vert NOM m s 0.28 0.27 0.27 0.27 +pick-up pick_up NOM m 1.98 2.64 1.98 2.64 +pics-verts pic_vert NOM m p 0.28 0.27 0.01 0.00 +pie-grièche pie_grièche NOM f s 0.00 0.07 0.00 0.07 +pie-mère pie_mère NOM f s 0.01 0.07 0.01 0.07 +pied-bot pied_bot NOM m s 0.28 0.61 0.28 0.61 +pied-d'alouette pied_d_alouette NOM m s 0.01 0.00 0.01 0.00 +pied-d'oeuvre pied_d_oeuvre NOM m s 0.00 0.07 0.00 0.07 +pied-de-biche pied_de_biche NOM m s 0.32 0.27 0.28 0.20 +pied-de-poule pied_de_poule ADJ 0.02 0.54 0.02 0.54 +pied-noir pied_noir NOM m s 0.28 3.78 0.09 0.54 +pied-plat pied_plat NOM m s 0.05 0.00 0.05 0.00 +pieds-de-biche pied_de_biche NOM m p 0.32 0.27 0.04 0.07 +pieds-de-coq pied_de_coq NOM m p 0.00 0.07 0.00 0.07 +pieds-droits pied_droit NOM m p 0.00 0.07 0.00 0.07 +pieds-noirs pied_noir NOM m p 0.28 3.78 0.19 3.24 +pigeon-voyageur pigeon_voyageur NOM m s 0.14 0.00 0.14 0.00 +pile-poil pile_poil NOM f s 0.07 0.00 0.07 0.00 +pin's pin_s NOM m 0.30 0.00 0.30 0.00 +pin-pon pin_pon ONO 0.00 0.34 0.00 0.34 +pin-up pin_up NOM f 0.71 0.54 0.71 0.54 +pince-fesses pince_fesse NOM m p 0.05 0.14 0.05 0.14 +pince-mailles pince_maille NOM m p 0.00 0.07 0.00 0.07 +pince-monseigneur pince_monseigneur NOM f s 0.03 0.54 0.03 0.54 +pince-nez pince_nez NOM m 0.07 1.35 0.07 1.35 +pince-sans-rire pince_sans_rire ADJ s 0.05 0.47 0.05 0.47 +ping-pong ping_pong NOM m s 2.67 2.36 2.67 2.36 +pipe-line pipe_line NOM m s 0.11 0.34 0.09 0.34 +pipe-lines pipe_line NOM m p 0.11 0.34 0.02 0.00 +pipi-room pipi_room NOM m s 0.05 0.00 0.05 0.00 +pique-assiette pique_assiette NOM s 0.39 0.34 0.27 0.27 +pique-assiettes pique_assiette NOM p 0.39 0.34 0.12 0.07 +pique-boeufs pique_boeuf NOM m p 0.00 0.07 0.00 0.07 +pique-feu pique_feu NOM m 0.03 0.81 0.03 0.81 +pique-niquaient pique_niquer VER 1.03 0.74 0.01 0.00 ind:imp:3p; +pique-nique pique_nique NOM m s 6.05 4.12 5.57 3.18 +pique-niquent pique_niquer VER 1.03 0.74 0.03 0.07 ind:pre:3p; +pique-niquer pique_niquer VER 1.03 0.74 0.83 0.47 inf;; +pique-niqueraient pique_niquer VER 1.03 0.74 0.01 0.00 cnd:pre:3p; +pique-niquerons pique_niquer VER 1.03 0.74 0.01 0.00 ind:fut:1p; +pique-niques pique_nique NOM m p 6.05 4.12 0.48 0.95 +pique-niqueurs pique_niqueur NOM m p 0.02 0.27 0.02 0.27 +pique-niquez pique_niquer VER 1.03 0.74 0.01 0.07 ind:pre:2p; +pique-niqué pique_niquer VER m s 1.03 0.74 0.05 0.07 par:pas; +pis-aller pis_aller NOM m 0.14 0.81 0.14 0.81 +pisse-copie pisse_copie NOM s 0.01 0.27 0.01 0.20 +pisse-copies pisse_copie NOM p 0.01 0.27 0.00 0.07 +pisse-froid pisse_froid NOM m 0.10 0.34 0.10 0.34 +pisse-vinaigre pisse_vinaigre NOM m 0.04 0.07 0.04 0.07 +pistolet-mitrailleur pistolet_mitrailleur NOM m s 0.02 0.00 0.02 0.00 +pit-bull pit_bull NOM m s 0.63 0.00 0.26 0.00 +pit-bulls pit_bull NOM m p 0.63 0.00 0.06 0.00 +pit bull pit_bull NOM m s 0.63 0.00 0.31 0.00 +plain-chant plain_chant NOM m s 0.10 0.27 0.10 0.27 +plain-pied plain_pied NOM m s 0.12 3.65 0.12 3.65 +plan-séquence plan_séquence NOM m s 0.10 0.00 0.10 0.00 +planches-contacts planche_contact NOM f p 0.00 0.07 0.00 0.07 +plat-bord plat_bord NOM m s 0.01 0.61 0.00 0.54 +plat-ventre plat_ventre NOM m s 0.11 0.07 0.11 0.07 +plate-bande plate_bande NOM f s 0.82 2.77 0.12 0.54 +plate-forme plate_forme NOM f s 3.06 11.15 2.49 8.45 +plateau-repas plateau_repas NOM m 0.04 0.14 0.04 0.14 +plateaux-repas plateaux_repas NOM m p 0.04 0.07 0.04 0.07 +plates-bandes plate_bande NOM f p 0.82 2.77 0.70 2.23 +plates-formes plate_forme NOM f p 3.06 11.15 0.57 2.70 +plats-bords plat_bord NOM m p 0.01 0.61 0.01 0.07 +play-back play_back NOM m 0.59 0.14 0.57 0.14 +play-boy play_boy NOM m s 0.69 1.08 0.58 0.95 +play-boys play_boy NOM m p 0.69 1.08 0.11 0.14 +play back play_back NOM m 0.59 0.14 0.02 0.00 +plein-air plein_air ADJ m s 0.00 0.07 0.00 0.07 +plein-air plein_air NOM m s 0.00 0.20 0.00 0.20 +plein-cintre plein_cintre NOM m s 0.00 0.07 0.00 0.07 +plein-emploi plein_emploi NOM m s 0.01 0.00 0.01 0.00 +plein-temps plein_temps NOM m 0.12 0.00 0.12 0.00 +plum-pudding plum_pudding NOM m s 0.02 0.07 0.02 0.07 +plus-que-parfait plus_que_parfait NOM m s 0.02 0.14 0.02 0.07 +plus-que-parfaits plus_que_parfait NOM m p 0.02 0.14 0.00 0.07 +plus-value plus_value NOM f s 0.72 0.68 0.48 0.54 +plus-values plus_value NOM f p 0.72 0.68 0.25 0.14 +pneus-neige pneus_neige NOM m p 0.02 0.00 0.02 0.00 +poche-revolver poche_revolver NOM s 0.00 0.27 0.00 0.27 +pochette-surprise pochette_surprise NOM f s 0.20 0.34 0.20 0.20 +pochettes-surprises pochette_surprise NOM f p 0.20 0.34 0.00 0.14 +poids-lourds poids_lourds NOM m 0.02 0.07 0.02 0.07 +poil-de-carotte poil_de_carotte NOM m s 0.00 0.07 0.00 0.07 +point-clé point_clé NOM m s 0.02 0.00 0.02 0.00 +point-virgule point_virgule NOM m s 0.04 0.07 0.04 0.00 +points-virgules point_virgule NOM m p 0.04 0.07 0.00 0.07 +poire-vérité poire_vérité NOM f s 0.00 0.07 0.00 0.07 +poisson-chat poisson_chat NOM m s 0.64 0.54 0.54 0.34 +poisson-globe poisson_globe NOM m s 0.02 0.00 0.02 0.00 +poisson-lune poisson_lune NOM m s 0.15 0.07 0.15 0.07 +poisson-pilote poisson_pilote NOM m s 0.00 0.07 0.00 0.07 +poisson-épée poisson_épée NOM m s 0.09 0.00 0.09 0.00 +poissons-chats poisson_chat NOM m p 0.64 0.54 0.11 0.20 +police-secours police_secours NOM f s 0.16 0.47 0.16 0.47 +politico-religieuse politico_religieux ADJ f s 0.00 0.07 0.00 0.07 +politique-fiction politique_fiction NOM f s 0.00 0.07 0.00 0.07 +poly-sexuelle poly_sexuel ADJ f s 0.01 0.00 0.01 0.00 +pom-pom girl pom_pom_girl NOM f s 2.06 0.00 0.95 0.00 +pom-pom girls pom_pom_girl NOM f p 2.06 0.00 1.11 0.00 +pont-l'évêque pont_l_évêque NOM m s 0.00 0.07 0.00 0.07 +pont-levis pont_levis NOM m 0.46 1.42 0.46 1.42 +pont-neuf pont_neuf NOM m s 0.14 2.43 0.14 2.43 +pont-promenade pont_promenade NOM m s 0.00 0.07 0.00 0.07 +ponts-levis ponts_levis NOM m p 0.00 0.27 0.00 0.27 +pop-club pop_club NOM s 0.00 0.07 0.00 0.07 +pop-corn pop_corn NOM m 3.79 0.14 3.79 0.14 +porc-épic porc_épic NOM m s 0.55 0.27 0.55 0.27 +port-salut port_salut NOM m 0.00 0.20 0.00 0.20 +porte-aiguille porte_aiguille NOM m s 0.07 0.00 0.07 0.00 +porte-avion porte_avion NOM m s 0.04 0.07 0.04 0.07 +porte-avions porte_avions NOM m 1.21 1.22 1.21 1.22 +porte-bagages porte_bagages NOM m 0.02 3.11 0.02 3.11 +porte-bannière porte_bannière NOM m s 0.00 0.07 0.00 0.07 +porte-billets porte_billets NOM m 0.00 0.14 0.00 0.14 +porte-bois porte_bois NOM m 0.00 0.07 0.00 0.07 +porte-bonheur porte_bonheur NOM m 4.58 1.08 4.58 1.08 +porte-bouteilles porte_bouteilles NOM m 0.00 0.27 0.00 0.27 +porte-bébé porte_bébé NOM m s 0.02 0.00 0.02 0.00 +porte-cannes porte_cannes NOM m 0.00 0.07 0.00 0.07 +porte-carte porte_carte NOM m s 0.00 0.07 0.00 0.07 +porte-cartes porte_cartes NOM m 0.00 0.34 0.00 0.34 +porte-chance porte_chance NOM m 0.17 0.07 0.17 0.07 +porte-chapeaux porte_chapeaux NOM m 0.04 0.00 0.04 0.00 +porte-cigarette porte_cigarette NOM m s 0.00 0.20 0.00 0.20 +porte-cigarettes porte_cigarettes NOM m 0.65 0.74 0.65 0.74 +porte-clef porte_clef NOM m s 0.02 0.14 0.02 0.14 +porte-clefs porte_clefs NOM m 0.27 0.34 0.27 0.34 +porte-clé porte_clé NOM m s 0.10 0.00 0.10 0.00 +porte-clés porte_clés NOM m 1.44 0.54 1.44 0.54 +porte-conteneurs porte_conteneurs NOM m 0.01 0.00 0.01 0.00 +porte-coton porte_coton NOM m s 0.00 0.07 0.00 0.07 +porte-couilles porte_couilles NOM m 0.00 0.07 0.00 0.07 +porte-couteau porte_couteau NOM m s 0.00 0.07 0.00 0.07 +porte-couteaux porte_couteaux NOM m p 0.00 0.07 0.00 0.07 +porte-cravate porte_cravate NOM m s 0.00 0.07 0.00 0.07 +porte-crayon porte_crayon NOM m s 0.01 0.00 0.01 0.00 +porte-document porte_document NOM m s 0.01 0.00 0.01 0.00 +porte-documents porte_documents NOM m 0.86 0.68 0.86 0.68 +porte-drapeau porte_drapeau NOM m s 0.19 0.68 0.19 0.68 +porte-drapeaux porte_drapeaux NOM m p 0.01 0.07 0.01 0.07 +porte-fanion porte_fanion NOM m s 0.00 0.14 0.00 0.14 +porte-fenêtre porte_fenêtre NOM f s 0.14 4.46 0.03 3.11 +porte-flingue porte_flingue NOM m s 0.08 0.07 0.08 0.00 +porte-flingues porte_flingue NOM m p 0.08 0.07 0.00 0.07 +porte-forets porte_foret NOM m p 0.00 0.07 0.00 0.07 +porte-glaive porte_glaive NOM m 0.10 1.01 0.10 1.01 +porte-jarretelles porte_jarretelles NOM m 0.59 1.89 0.59 1.89 +porte-malheur porte_malheur NOM m 0.19 0.07 0.19 0.07 +porte-mine porte_mine NOM m s 0.00 0.14 0.00 0.14 +porte-monnaie porte_monnaie NOM m 2.24 6.01 2.24 6.01 +porte-musique porte_musique NOM m s 0.00 0.07 0.00 0.07 +porte-à-faux porte_à_faux NOM m 0.00 0.61 0.00 0.61 +porte-à-porte porte_à_porte NOM m 0.00 0.41 0.00 0.41 +porte-objet porte_objet NOM m s 0.01 0.00 0.01 0.00 +porte-papier porte_papier NOM m 0.01 0.07 0.01 0.07 +porte-parapluie porte_parapluie NOM m s 0.00 0.07 0.00 0.07 +porte-parapluies porte_parapluies NOM m 0.14 0.47 0.14 0.47 +porte-plume porte_plume NOM m 0.29 3.78 0.29 3.72 +porte-plumes porte_plume NOM m p 0.29 3.78 0.00 0.07 +porte-queue porte_queue NOM m 0.01 0.00 0.01 0.00 +porte-savon porte_savon NOM m s 0.09 0.27 0.09 0.27 +porte-serviette porte_serviette NOM m s 0.00 0.20 0.00 0.20 +porte-serviettes porte_serviettes NOM m 0.12 0.20 0.12 0.20 +porte-tambour porte_tambour NOM m 0.01 0.34 0.01 0.34 +porte-épée porte_épée NOM m s 0.00 0.14 0.00 0.14 +porte-étendard porte_étendard NOM m s 0.01 0.34 0.01 0.27 +porte-étendards porte_étendard NOM m p 0.01 0.34 0.00 0.07 +porte-étrier porte_étrier NOM m s 0.00 0.07 0.00 0.07 +porte-voix porte_voix NOM m 0.55 2.64 0.55 2.64 +portes-fenêtres porte_fenêtre NOM f p 0.14 4.46 0.10 1.35 +portrait-robot portrait_robot NOM m s 1.17 0.54 0.77 0.47 +portraits-robots portrait_robot NOM m p 1.17 0.54 0.40 0.07 +pose-la-moi pose_la_moi NOM f s 0.01 0.00 0.01 0.00 +position-clé position_clé NOM f s 0.01 0.00 0.01 0.00 +post-apocalyptique post_apocalyptique ADJ s 0.04 0.00 0.04 0.00 +post-empire post_empire NOM m s 0.00 0.07 0.00 0.07 +post-hypnotique post_hypnotique ADJ f s 0.02 0.00 0.02 0.00 +post-impressionnisme post_impressionnisme NOM m s 0.01 0.00 0.01 0.00 +post-it post_it NOM m 1.85 0.00 1.84 0.00 +post-moderne post_moderne ADJ s 0.14 0.00 0.14 0.00 +post-natal post_natal ADJ m s 0.18 0.07 0.03 0.07 +post-natale post_natal ADJ f s 0.18 0.07 0.16 0.00 +post-opératoire post_opératoire ADJ s 0.19 0.00 0.17 0.00 +post-opératoires post_opératoire ADJ m p 0.19 0.00 0.02 0.00 +post-partum post_partum NOM m 0.04 0.00 0.04 0.00 +post-production post_production NOM f s 0.14 0.00 0.14 0.00 +post-punk post_punk NOM s 0.00 0.14 0.00 0.14 +post-romantique post_romantique ADJ m s 0.00 0.07 0.00 0.07 +post-rupture post_rupture NOM f s 0.01 0.00 0.01 0.00 +post-scriptum post_scriptum NOM m 0.29 1.96 0.29 1.96 +post-surréalistes post_surréaliste ADJ p 0.00 0.07 0.00 0.07 +post-synchro post_synchro ADJ s 0.05 0.00 0.05 0.00 +post-traumatique post_traumatique ADJ s 0.82 0.07 0.79 0.00 +post-traumatiques post_traumatique ADJ p 0.82 0.07 0.03 0.07 +post-victorien post_victorien ADJ m s 0.01 0.00 0.01 0.00 +post-zoo post_zoo NOM m s 0.01 0.00 0.01 0.00 +post it post_it NOM m 1.85 0.00 0.01 0.00 +post mortem post_mortem ADV 0.28 0.20 0.28 0.20 +poste-clé poste_clé NOM s 0.02 0.00 0.02 0.00 +postes-clés postes_clé NOM p 0.01 0.00 0.01 0.00 +pot-au-feu pot_au_feu NOM m 0.90 0.88 0.90 0.88 +pot-bouille pot_bouille NOM m 0.01 0.00 0.01 0.00 +pot-de-vin pot_de_vin NOM m s 1.22 0.41 1.22 0.41 +pot-pourri pot_pourri NOM m s 0.49 0.68 0.34 0.68 +poto-poto poto_poto NOM m s 0.00 0.14 0.00 0.14 +potron-minet potron_minet NOM m s 0.03 0.27 0.03 0.27 +pots-de-vin pots_de_vin NOM m p 1.98 0.34 1.98 0.34 +pots-pourris pot_pourri NOM m p 0.49 0.68 0.15 0.00 +pouce-pied pouce_pied NOM m s 0.01 0.00 0.01 0.00 +pour-cent pour_cent NOM m 0.56 0.00 0.56 0.00 +pousse-au-crime pousse_au_crime NOM m 0.02 0.07 0.02 0.07 +pousse-café pousse_café NOM m 0.13 0.68 0.13 0.68 +pousse-cailloux pousse_cailloux NOM m s 0.00 0.07 0.00 0.07 +pousse-pousse pousse_pousse NOM m 1.43 0.41 1.43 0.41 +premier-maître premier_maître NOM m s 0.16 0.00 0.16 0.00 +premier-né premier_né NOM m s 0.91 0.20 0.77 0.14 +premiers-nés premier_né NOM m p 0.91 0.20 0.14 0.07 +première-née première_née NOM f s 0.11 0.00 0.11 0.00 +presqu'île presqu_île NOM f s 0.16 1.49 0.16 1.35 +presqu'îles presqu_île NOM f p 0.16 1.49 0.00 0.14 +press-book press_book NOM m s 0.03 0.00 0.03 0.00 +presse-agrumes presse_agrumes NOM m 0.04 0.00 0.04 0.00 +presse-bouton presse_bouton ADJ f s 0.04 0.07 0.04 0.07 +presse-citron presse_citron NOM m s 0.02 0.00 0.02 0.00 +presse-fruits presse_fruits NOM m 0.07 0.00 0.07 0.00 +presse-papier presse_papier NOM m s 0.16 0.27 0.16 0.27 +presse-papiers presse_papiers NOM m 0.24 0.47 0.24 0.47 +presse-purée presse_purée NOM m 0.04 0.41 0.04 0.41 +presse-raquette presse_raquette NOM m s 0.00 0.07 0.00 0.07 +prie-dieu prie_dieu NOM m 0.01 2.64 0.01 2.64 +prime-saut prime_saut NOM s 0.00 0.07 0.00 0.07 +prime time prime_time NOM m 0.41 0.00 0.41 0.00 +primo-infection primo_infection NOM f s 0.00 0.07 0.00 0.07 +prince-de-galles prince_de_galles NOM m 0.00 0.27 0.00 0.27 +prince-évêque prince_évêque NOM m s 0.00 0.14 0.00 0.14 +prisons-écoles prisons_école NOM f p 0.00 0.07 0.00 0.07 +prix-choc prix_choc NOM m 0.00 0.07 0.00 0.07 +pro-occidental pro_occidental ADJ m s 0.01 0.00 0.01 0.00 +proche-oriental proche_oriental ADJ m s 0.01 0.00 0.01 0.00 +procès-test procès_test NOM m 0.02 0.00 0.02 0.00 +procès-verbal procès_verbal NOM m s 3.86 2.30 3.55 1.76 +procès-verbaux procès_verbal NOM m p 3.86 2.30 0.31 0.54 +propre-à-rien propre_à_rien NOM m s 0.00 0.07 0.00 0.07 +protège-cahier protège_cahier NOM m s 0.01 0.07 0.01 0.07 +protège-dents protège_dents NOM m 0.10 0.27 0.10 0.27 +protège-slip protège_slip NOM m s 0.03 0.00 0.03 0.00 +protège-tibia protège_tibia NOM m s 0.02 0.00 0.02 0.00 +près de près_de ADV 4.10 16.35 4.10 16.35 +pré-salé pré_salé NOM m s 0.00 0.20 0.00 0.20 +pré-établi pré_établi ADJ m s 0.00 0.07 0.00 0.07 +prêchi-prêcha prêchi_prêcha NOM m 0.11 0.14 0.11 0.14 +prud'homme prud_homme NOM m s 0.21 0.07 0.01 0.00 +prud'hommes prud_homme NOM m p 0.21 0.07 0.20 0.07 +prénom-type prénom_type NOM m s 0.00 0.07 0.00 0.07 +président-directeur président_directeur NOM m s 0.02 0.27 0.02 0.27 +présidents-directeurs présidents_directeur NOM m p 0.00 0.14 0.00 0.14 +prêt-bail prêt_bail NOM m s 0.00 0.27 0.00 0.27 +prêt-à-porter prêt_à_porter NOM m s 0.00 0.95 0.00 0.95 +prête-nom prête_nom NOM m s 0.00 0.27 0.00 0.27 +prêtre-ouvrier prêtre_ouvrier NOM m s 0.00 0.07 0.00 0.07 +pseudo-gouvernement pseudo_gouvernement NOM m s 0.00 0.14 0.00 0.14 +psychiatre-conseil psychiatre_conseil NOM s 0.02 0.00 0.02 0.00 +psychologie-fiction psychologie_fiction NOM f s 0.00 0.07 0.00 0.07 +pèse-acide pèse_acide NOM m s 0.00 0.07 0.00 0.07 +pèse-bébé pèse_bébé NOM m s 0.00 0.14 0.00 0.14 +pèse-lettre pèse_lettre NOM m s 0.00 0.07 0.00 0.07 +pèse-personne pèse_personne NOM m s 0.02 0.07 0.02 0.00 +pèse-personnes pèse_personne NOM m p 0.02 0.07 0.00 0.07 +pète-sec pète_sec ADJ 0.03 0.41 0.03 0.41 +public-relations public_relations NOM f p 0.01 0.20 0.01 0.20 +public schools public_school NOM f p 0.00 0.07 0.00 0.07 +pêle-mêle pêle_mêle ADV 0.00 8.24 0.00 8.24 +pull-over pull_over NOM m s 0.80 6.35 0.78 5.27 +pull-overs pull_over NOM m p 0.80 6.35 0.02 1.08 +pulso-réacteurs pulso_réacteur NOM m p 0.01 0.00 0.01 0.00 +punching-ball punching_ball NOM m s 0.71 0.61 0.64 0.61 +punching ball punching_ball NOM m s 0.71 0.61 0.08 0.00 +pur-sang pur_sang NOM m 1.01 2.23 1.01 2.23 +qu'en-dira-t-on qu_en_dira_t_on NOM m 0.10 0.41 0.10 0.41 +quant-à-moi quant_à_moi NOM m 0.00 0.14 0.00 0.14 +quant-à-soi quant_à_soi NOM m 0.00 1.22 0.00 1.22 +quarante-cinq quarante_cinq ADJ:num 1.16 8.85 1.16 8.85 +quarante-cinquième quarante_cinquième ADJ 0.10 0.07 0.10 0.07 +quarante-deux quarante_deux ADJ:num 0.29 2.09 0.29 2.09 +quarante-deuxième quarante_deuxième ADJ 0.03 0.07 0.03 0.07 +quarante-huit quarante_huit ADJ:num 1.11 6.76 1.11 6.76 +quarante-huitards quarante_huitard NOM m p 0.00 0.07 0.00 0.07 +quarante-huitième quarante_huitième ADJ 0.02 0.07 0.02 0.07 +quarante-neuf quarante_neuf ADJ:num 0.28 0.47 0.28 0.47 +quarante-quatre quarante_quatre ADJ:num 0.10 0.88 0.10 0.88 +quarante-sept quarante_sept ADJ:num 0.40 0.74 0.40 0.74 +quarante-septième quarante_septième ADJ 0.03 0.20 0.03 0.20 +quarante-six quarante_six ADJ:num 0.23 0.47 0.23 0.47 +quarante-trois quarante_trois ADJ:num 0.68 1.28 0.68 1.28 +quarante-troisième quarante_troisième ADJ 0.00 0.07 0.00 0.07 +quart-monde quart_monde NOM m s 0.02 0.00 0.02 0.00 +quartier-maître quartier_maître NOM m s 0.84 0.27 0.83 0.27 +quartiers-maîtres quartier_maître NOM m p 0.84 0.27 0.01 0.00 +quasi-agonie quasi_agonie NOM f s 0.00 0.07 0.00 0.07 +quasi-blasphème quasi_blasphème NOM m s 0.00 0.07 0.00 0.07 +quasi-bonheur quasi_bonheur NOM m s 0.00 0.07 0.00 0.07 +quasi-certitude quasi_certitude NOM f s 0.04 0.41 0.04 0.41 +quasi-chômage quasi_chômage NOM m s 0.02 0.00 0.02 0.00 +quasi-débutant quasi_débutant ADV 0.01 0.00 0.01 0.00 +quasi-décapitation quasi_décapitation NOM f s 0.01 0.00 0.01 0.00 +quasi-désertification quasi_désertification NOM f s 0.00 0.07 0.00 0.07 +quasi-facétieux quasi_facétieux ADJ m 0.01 0.00 0.01 0.00 +quasi-fiancée quasi_fiancé NOM f s 0.00 0.07 0.00 0.07 +quasi-futuristes quasi_futuriste ADJ m p 0.01 0.00 0.01 0.00 +quasi-génocide quasi_génocide NOM m s 0.01 0.00 0.01 0.00 +quasi-hérétique quasi_hérétique NOM s 0.00 0.07 0.00 0.07 +quasi-ignare quasi_ignare NOM s 0.00 0.07 0.00 0.07 +quasi-impossibilité quasi_impossibilité NOM f s 0.00 0.14 0.00 0.14 +quasi-impunité quasi_impunité NOM f s 0.00 0.07 0.00 0.07 +quasi-inconnu quasi_inconnu ADV 0.02 0.07 0.02 0.07 +quasi-indifférence quasi_indifférence NOM f s 0.00 0.07 0.00 0.07 +quasi-infirme quasi_infirme NOM s 0.00 0.07 0.00 0.07 +quasi-instantanée quasi_instantanée ADV 0.02 0.00 0.02 0.00 +quasi-jungienne quasi_jungienne NOM f s 0.01 0.00 0.01 0.00 +quasi-mariage quasi_mariage NOM m s 0.00 0.07 0.00 0.07 +quasi-maximum quasi_maximum ADV 0.01 0.00 0.01 0.00 +quasi-mendiant quasi_mendiant NOM m s 0.14 0.00 0.14 0.00 +quasi-miracle quasi_miracle NOM m s 0.00 0.07 0.00 0.07 +quasi-monopole quasi_monopole NOM m s 0.10 0.00 0.10 0.00 +quasi-morceau quasi_morceau NOM m s 0.00 0.07 0.00 0.07 +quasi-noyade quasi_noyade NOM f s 0.01 0.00 0.01 0.00 +quasi-nudité quasi_nudité NOM f s 0.00 0.14 0.00 0.14 +quasi-permanence quasi_permanence NOM f s 0.00 0.07 0.00 0.07 +quasi-protection quasi_protection NOM f s 0.00 0.07 0.00 0.07 +quasi-religieux quasi_religieux ADJ m s 0.01 0.07 0.01 0.07 +quasi-respect quasi_respect NOM m s 0.00 0.07 0.00 0.07 +quasi-totalité quasi_totalité NOM f s 0.16 0.88 0.16 0.88 +quasi-émeute quasi_émeute NOM f s 0.02 0.00 0.02 0.00 +quasi-unanime quasi_unanime ADJ s 0.00 0.14 0.00 0.14 +quasi-unanimité quasi_unanimité NOM f s 0.00 0.07 0.00 0.07 +quasi-équitable quasi_équitable ADJ m s 0.01 0.00 0.01 0.00 +quasi-veuvage quasi_veuvage NOM m s 0.00 0.07 0.00 0.07 +quasi-ville quasi_ville NOM f s 0.00 0.07 0.00 0.07 +quasi-voisines quasi_voisines ADV 0.00 0.07 0.00 0.07 +quat'zarts quat_zarts NOM m p 0.00 0.07 0.00 0.07 +quatre-feuilles quatre_feuilles NOM m 0.01 0.07 0.01 0.07 +quatre-heures quatre_heures NOM m 0.04 0.41 0.04 0.41 +quatre-mâts quatre_mâts NOM m 0.27 0.14 0.27 0.14 +quatre-quarts quatre_quarts NOM m 0.26 0.14 0.26 0.14 +quatre-saisons quatre_saisons NOM f 0.47 1.15 0.47 1.15 +quatre-vingt-cinq quatre_vingt_cinq ADJ:num 0.07 0.88 0.07 0.88 +quatre-vingt-deux quatre_vingt_deux ADJ:num 0.00 0.27 0.00 0.27 +quatre-vingt-dix-huit quatre_vingt_dix_huit ADJ:num 0.02 0.34 0.02 0.34 +quatre-vingt-dix-neuf quatre_vingt_dix_neuf ADJ:num 0.21 0.47 0.21 0.47 +quatre-vingt-dix-sept quatre_vingt_dix_sept ADJ:num 0.00 0.27 0.00 0.27 +quatre-vingt-dix quatre_vingt_dix NOM m 0.33 0.61 0.33 0.61 +quatre-vingt-dixième quatre_vingt_dixième ADJ 0.01 0.14 0.01 0.14 +quatre-vingt-douze quatre_vingt_douze ADJ:num 0.11 0.54 0.11 0.54 +quatre-vingt-douzième quatre_vingt_douzième ADJ 0.00 0.07 0.00 0.07 +quatre-vingt-huit quatre_vingt_huit ADJ:num 0.02 0.20 0.02 0.20 +quatre-vingt-neuf quatre_vingt_neuf ADJ:num 0.14 0.61 0.14 0.61 +quatre-vingt-onze quatre_vingt_onze ADJ:num 0.10 0.34 0.10 0.34 +quatre-vingt-quatorze quatre_vingt_quatorze ADJ:num 0.10 0.07 0.10 0.07 +quatre-vingt-quatre quatre_vingt_quatre ADJ:num 0.03 0.74 0.03 0.74 +quatre-vingt-quinze quatre_vingt_quinze ADJ:num 0.14 2.16 0.14 2.16 +quatre-vingt-seize quatre_vingt_seize ADJ:num 0.10 0.07 0.10 0.07 +quatre-vingt-sept quatre_vingt_sept ADJ:num 0.07 0.27 0.07 0.27 +quatre-vingt-six quatre_vingt_six ADJ:num 0.19 0.34 0.19 0.34 +quatre-vingt-treize quatre_vingt_treize ADJ:num 0.11 0.95 0.11 0.95 +quatre-vingt-treizième quatre_vingt_treizième ADJ 0.00 0.07 0.00 0.07 +quatre-vingt-trois quatre_vingt_trois ADJ:num 0.06 0.41 0.06 0.41 +quatre-vingt-un quatre_vingt_un ADJ:num 0.02 0.14 0.02 0.14 +quatre-vingt quatre_vingt ADJ:num 0.93 1.01 0.93 1.01 +quatre-vingtième quatre_vingtième ADJ 0.00 0.14 0.00 0.14 +quatre-vingtième quatre_vingtième NOM s 0.00 0.14 0.00 0.14 +quatre-vingts quatre_vingts ADJ:num 0.36 9.05 0.36 9.05 +quelqu'un quelqu_un PRO:ind s 629.00 128.92 629.00 128.92 +quelqu'une quelqu_une PRO:ind f s 0.08 0.61 0.08 0.61 +quelques-unes quelques_unes PRO:ind f p 3.50 8.51 3.50 8.51 +quelques-uns quelques_uns PRO:ind m p 8.33 22.09 8.33 22.09 +question-clé question_clé NOM f s 0.02 0.00 0.02 0.00 +question-réponse question_réponse NOM f s 0.02 0.00 0.02 0.00 +questions-réponses questions_réponse NOM f p 0.07 0.07 0.07 0.07 +queue-d'aronde queue_d_aronde NOM f s 0.00 0.14 0.00 0.07 +queue-de-cheval queue_de_cheval NOM f s 0.14 0.00 0.14 0.00 +queue-de-pie queue_de_pie NOM f s 0.05 0.27 0.05 0.27 +queues-d'aronde queue_d_aronde NOM f p 0.00 0.14 0.00 0.07 +queues-de-rat queue_de_rat NOM f p 0.00 0.07 0.00 0.07 +qui-vive qui_vive ONO 0.00 0.14 0.00 0.14 +quote-part quote_part NOM f s 0.03 0.47 0.03 0.47 +rôle-titre rôle_titre NOM m s 0.01 0.00 0.01 0.00 +rabat-joie rabat_joie ADJ 0.91 0.14 0.91 0.14 +radeau-radar radeau_radar NOM m s 0.00 0.07 0.00 0.07 +radical-socialisme radical_socialisme NOM m s 0.00 0.27 0.00 0.27 +radical-socialiste radical_socialiste ADJ m s 0.00 0.34 0.00 0.34 +radicale-socialiste radicale_socialiste NOM f s 0.00 0.20 0.00 0.20 +radicaux-socialistes radical_socialiste NOM m p 0.00 0.34 0.00 0.27 +radio-isotope radio_isotope NOM m s 0.04 0.00 0.04 0.00 +radio-réveil radio_réveil NOM m s 0.10 0.14 0.10 0.14 +radio-taxi radio_taxi NOM m s 0.14 0.07 0.14 0.07 +rahat-lokoum rahat_lokoum NOM m s 0.00 0.47 0.00 0.41 +rahat-lokoums rahat_lokoum NOM m p 0.00 0.47 0.00 0.07 +rahat-loukoums rahat_loukoum NOM m p 0.00 0.07 0.00 0.07 +ramasse-miettes ramasse_miettes NOM m 0.02 0.27 0.02 0.27 +ramasse-poussière ramasse_poussière NOM m 0.02 0.00 0.02 0.00 +ras-le-bol ras_le_bol NOM m 1.62 0.47 1.62 0.47 +rase-mottes rase_mottes NOM m 0.30 0.47 0.30 0.47 +rase-pet rase_pet NOM m s 0.02 0.20 0.00 0.20 +rase-pets rase_pet NOM m p 0.02 0.20 0.02 0.00 +rat-de-cave rat_de_cave NOM m s 0.00 0.07 0.00 0.07 +ray-grass ray_grass NOM m 0.00 0.14 0.00 0.14 +rayon-éclair rayon_éclair NOM m s 0.00 0.07 0.00 0.07 +raz-de-marée raz_de_marée NOM m 0.57 0.20 0.57 0.20 +re-aboie reaboyer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-balbutiant rebalbutiant ADJ m s 0.00 0.07 0.00 0.07 +re-baptême rebaptême NOM m s 0.00 0.07 0.00 0.07 +re-belote re_belote ONO 0.01 0.00 0.01 0.00 +re-biberonner rebiberonner VER 0.00 0.07 0.00 0.07 inf; +re-bide rebide NOM m s 0.00 0.07 0.00 0.07 +re-blinder reblinder VER 0.00 0.07 0.00 0.07 inf; +re-bombardons rebombardon NOM m p 0.01 0.00 0.01 0.00 +re-boucler reboucler VER 0.14 1.01 0.01 0.00 inf; +re-cabossé recabosser VER m s 0.00 0.07 0.00 0.07 par:pas; +re-café recafé ADJ 0.00 0.07 0.00 0.07 +re-cailloux recailloux NOM m p 0.00 0.07 0.00 0.07 +re-calibrais recalibrer VER 0.01 0.00 0.01 0.00 ind:imp:1s; +re-cassée recasser VER f s 0.24 0.07 0.01 0.00 par:pas; +re-chanteur rechanteur NOM m s 0.01 0.00 0.01 0.00 +re-chiader rechiader VER 0.00 0.07 0.00 0.07 inf; +re-cisèle reciseler VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-classe reclasser VER 0.09 0.20 0.00 0.07 ind:pre:3s; +re-classer reclasser VER 0.09 0.20 0.00 0.07 inf; +re-connaître reconnaître VER 140.73 229.19 0.00 0.07 inf; +re-contacte recontacter VER 0.38 0.07 0.03 0.00 ind:pre:1s; +re-contactent recontacter VER 0.38 0.07 0.01 0.00 ind:pre:3p; +re-contacter recontacter VER 0.38 0.07 0.01 0.00 inf; +re-contacterai recontacter VER 0.38 0.07 0.06 0.00 ind:fut:1s; +re-convaincra reconvaincre VER 0.00 0.07 0.00 0.07 ind:fut:3s; +re-coup recoup NOM m s 0.00 0.07 0.00 0.07 +re-crac recrac NOM m s 0.00 0.07 0.00 0.07 +re-creusés recreuser VER m p 0.14 0.20 0.00 0.07 par:pas; +re-croquis recroquis NOM m 0.00 0.07 0.00 0.07 +re-création recréation NOM f s 0.04 0.27 0.03 0.07 +re-créée recréer VER f s 2.23 4.39 0.00 0.07 par:pas; +re-cul recul NOM m s 3.59 15.61 0.00 0.07 +re-diffuses rediffuser VER 0.20 0.07 0.01 0.00 ind:pre:2s; +re-dose redose NOM f s 0.00 0.07 0.00 0.07 +re-drapeau redrapeau NOM m s 0.00 0.07 0.00 0.07 +re-déchire redéchirer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-déclic redéclic NOM m s 0.00 0.07 0.00 0.07 +re-décore redécorer VER 0.08 0.00 0.01 0.00 ind:pre:1s; +re-décorer redécorer VER 0.08 0.00 0.07 0.00 inf; +re-déménager redéménager VER 0.00 0.07 0.00 0.07 inf; +re-explique reexpliquer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-faim refaim NOM f s 0.14 0.00 0.14 0.00 +re-frappe refrapper VER 0.07 0.14 0.00 0.07 ind:pre:3s; +re-frappé refrapper VER m s 0.07 0.14 0.01 0.07 par:pas; +re-fuse refuser VER 143.96 152.77 0.00 0.07 ind:pre:1s; +re-gomme regomme NOM f s 0.00 0.07 0.00 0.07 +re-histoires rehistoire NOM f p 0.00 0.07 0.00 0.07 +re-hygiène rehygiène NOM f s 0.00 0.07 0.00 0.07 +re-inter re_inter NOM m s 0.00 0.07 0.00 0.07 +re-kidnappais rekidnapper VER 0.01 0.00 0.01 0.00 ind:imp:1s; +re-lettre relettre NOM f s 0.00 0.07 0.00 0.07 +re-main remain NOM f s 0.00 0.07 0.00 0.07 +re-matérialisation rematérialisation NOM f s 0.01 0.00 0.01 0.00 +re-morphine remorphine NOM f s 0.00 0.07 0.00 0.07 +re-nés rené ADJ m p 0.01 0.00 0.01 0.00 +re-paye repayer VER 0.23 0.41 0.00 0.07 imp:pre:2s; +re-penser repenser VER 9.68 12.16 0.01 0.00 inf; +re-potassé repotasser VER m s 0.00 0.07 0.00 0.07 par:pas; +re-programmation reprogrammation NOM f s 0.01 0.00 0.01 0.00 +re-programmée reprogrammer VER f s 1.11 0.00 0.01 0.00 par:pas; +re-raconte reraconter VER 0.00 0.14 0.00 0.07 ind:pre:3s; +re-racontées reraconter VER f p 0.00 0.14 0.00 0.07 par:pas; +re-remplir reremplir VER 0.01 0.07 0.01 0.07 inf; +re-rentrer rerentrer VER 0.05 0.07 0.05 0.07 inf; +re-respirer rerespirer VER 0.00 0.07 0.00 0.07 inf; +re-ressortait reressortir VER 0.00 0.07 0.00 0.07 ind:imp:3s; +re-retirent reretirer VER 0.00 0.07 0.00 0.07 ind:pre:3p; +re-rigole rerigole NOM f s 0.00 0.07 0.00 0.07 +re-récurait rerécurer VER 0.00 0.07 0.00 0.07 ind:imp:3s; +re-réparer reréparer VER 0.01 0.00 0.01 0.00 inf; +re-rêvé rerêvé ADJ m s 0.00 0.07 0.00 0.07 +re-salué resaluer VER m s 0.00 0.07 0.00 0.07 par:pas; +re-savaté resavater VER m s 0.01 0.00 0.01 0.00 par:pas; +re-sculpte resculpter VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-sevrage resevrage NOM m s 0.00 0.07 0.00 0.07 +re-signer resigner VER 0.02 0.00 0.02 0.00 inf; +re-sommeil resommeil NOM m s 0.00 0.07 0.00 0.07 +re-sonne resonner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +re-structuration restructuration NOM f s 0.91 0.34 0.00 0.07 +re-séparés reséparé ADJ m p 0.00 0.07 0.00 0.07 +re-taloche retaloche NOM f s 0.00 0.14 0.00 0.14 +re-titille retitiller VER 0.00 0.14 0.00 0.14 ind:pre:3s; +re-traitée retraité ADJ f s 0.68 1.15 0.00 0.07 +re-travail retravail NOM m s 0.00 0.07 0.00 0.07 +re-tuage retuage NOM m s 0.04 0.00 0.04 0.00 +re-tuer retuer VER 0.08 0.07 0.07 0.07 inf; +re-tues retu ADJ f p 0.01 0.00 0.01 0.00 +re-ébranlés reébranler VER m p 0.00 0.07 0.00 0.07 par:pas; +re-échanger reéchanger VER 0.01 0.00 0.01 0.00 inf; +re-veux revouloir VER 0.45 0.41 0.04 0.00 ind:pre:2s; +re-vie revie NOM f s 0.00 0.07 0.00 0.07 +re-visite revisiter VER 0.21 0.61 0.00 0.07 ind:pre:3s; +re-vit revivre VER 10.37 20.68 0.00 0.07 ind:pre:3s; +re-vérifier revérifier VER 0.67 0.00 0.10 0.00 inf; +re-vérifié revérifié ADJ m s 0.34 0.07 0.10 0.00 +ready-made ready_made NOM m s 0.00 0.07 0.00 0.07 +receleur-miracle receleur_miracle NOM m s 0.00 0.07 0.00 0.07 +recto tono recto_tono ADV 0.00 0.20 0.00 0.20 +red river red_river NOM s 0.00 0.14 0.00 0.14 +reine-claude reine_claude NOM f s 0.01 0.41 0.00 0.14 +reine-mère reine_mère NOM f s 0.00 0.34 0.00 0.34 +reines-claudes reine_claude NOM f p 0.01 0.41 0.01 0.27 +reines-marguerites reine_marguerite NOM f p 0.00 0.27 0.00 0.27 +remonte-pente remonte_pente NOM m s 0.02 0.07 0.02 0.07 +remonte-pentes remonte_pentes NOM m 0.00 0.07 0.00 0.07 +remède-miracle remède_miracle NOM m s 0.01 0.00 0.01 0.00 +remue-ménage remue_ménage NOM m 0.78 4.80 0.78 4.80 +remue-méninges remue_méninges NOM m 0.05 0.07 0.05 0.07 +rendez-vous rendez_vous NOM m 91.95 53.72 91.95 53.72 +rentre-dedans rentre_dedans NOM m 0.47 0.07 0.47 0.07 +reportage-vérité reportage_vérité NOM m s 0.00 0.14 0.00 0.14 +repose-pied repose_pied NOM m s 0.02 0.07 0.01 0.00 +repose-pieds repose_pied NOM m p 0.02 0.07 0.01 0.07 +requiescat in pace requiescat_in_pace NOM m s 0.00 0.07 0.00 0.07 +requin-baleine requin_baleine NOM m s 0.01 0.00 0.01 0.00 +requin-tigre requin_tigre NOM m s 0.04 0.00 0.04 0.00 +requins-marteaux requin_marteau NOM m p 0.00 0.07 0.00 0.07 +rez-de-chaussée rez_de_chaussée NOM m 2.34 16.96 2.34 16.96 +rez-de-jardin rez_de_jardin NOM m 0.01 0.00 0.01 0.00 +rhythm'n'blues rhythm_n_blues NOM m 0.02 0.00 0.02 0.00 +rhythm and blues rhythm_and_blues NOM m 0.08 0.00 0.08 0.00 +ric-à-rac ric_à_rac ADV 0.00 0.20 0.00 0.20 +ric-rac ric_rac ADV 0.04 0.47 0.04 0.47 +ric et rac ric_et_rac ADV 0.00 0.61 0.00 0.61 +rince-bouche rince_bouche NOM m 0.03 0.00 0.03 0.00 +rince-doigts rince_doigts NOM m 0.08 0.27 0.08 0.27 +risque-tout risque_tout ADJ 0.00 0.07 0.00 0.07 +riz-minute riz_minute NOM m 0.00 0.07 0.00 0.07 +riz-pain-sel riz_pain_sel NOM m s 0.00 0.07 0.00 0.07 +roast-beef roast_beef NOM m s 0.16 0.00 0.14 0.00 +roast beef roast_beef NOM m s 0.16 0.00 0.02 0.00 +rock'n'roll rock_n_roll NOM m 0.19 0.14 0.19 0.14 +rock-'n-roll rock_n_roll NOM m s 0.01 0.00 0.01 0.00 +rocking-chair rocking_chair NOM m s 0.36 1.15 0.28 0.95 +rocking-chairs rocking_chair NOM m p 0.36 1.15 0.01 0.20 +rocking chair rocking_chair NOM m s 0.36 1.15 0.06 0.00 +rogne-pied rogne_pied NOM m s 0.00 0.07 0.00 0.07 +roi-roi roi_roi NOM m s 0.01 0.00 0.01 0.00 +roi-soleil roi_soleil NOM m s 0.00 0.14 0.00 0.14 +roman-feuilleton roman_feuilleton NOM m s 0.13 0.41 0.03 0.27 +roman-fleuve roman_fleuve NOM m s 0.00 0.07 0.00 0.07 +roman-photo roman_photo NOM m s 0.28 0.41 0.14 0.20 +romans-feuilletons roman_feuilleton NOM m p 0.13 0.41 0.10 0.14 +romans-photos roman_photo NOM m p 0.28 0.41 0.14 0.20 +rond-de-cuir rond_de_cuir NOM m s 0.26 0.34 0.23 0.27 +rond-point rond_point NOM m s 0.44 2.50 0.44 2.43 +ronde-bosse ronde_bosse NOM f s 0.00 0.61 0.00 0.61 +ronds-de-cuir rond_de_cuir NOM m p 0.26 0.34 0.03 0.07 +ronds-points rond_point NOM m p 0.44 2.50 0.00 0.07 +rose-croix rose_croix NOM m 0.00 0.07 0.00 0.07 +rose-thé rose_thé ADJ m s 0.00 0.07 0.00 0.07 +rose-thé rose_thé NOM s 0.00 0.07 0.00 0.07 +rouge-brun rouge_brun ADJ m s 0.00 0.20 0.00 0.20 +rouge-feu rouge_feu ADJ m s 0.00 0.07 0.00 0.07 +rouge-gorge rouge_gorge NOM m s 0.44 1.08 0.30 0.68 +rouge-queue rouge_queue NOM m s 0.00 0.07 0.00 0.07 +rouge-sang rouge_sang NOM s 0.00 0.07 0.00 0.07 +rouges-gorges rouge_gorge NOM m p 0.44 1.08 0.13 0.41 +roulé-boulé roulé_boulé NOM m s 0.00 0.27 0.00 0.14 +roulés-boulés roulé_boulé NOM m p 0.00 0.27 0.00 0.14 +russo-allemand russo_allemand ADJ m s 0.00 0.14 0.00 0.07 +russo-allemande russo_allemand ADJ f s 0.00 0.14 0.00 0.07 +russo-américain russo_américain ADJ m s 0.00 0.07 0.00 0.07 +russo-japonaise russo_japonais ADJ f s 0.00 0.20 0.00 0.20 +russo-polonais russo_polonais ADJ m 0.00 0.14 0.00 0.07 +russo-polonaise russo_polonais ADJ f s 0.00 0.14 0.00 0.07 +russo-turque russo_turque ADJ f s 0.00 0.14 0.00 0.14 +réveille-matin réveille_matin NOM m 0.19 0.88 0.19 0.88 +sac-poubelle sac_poubelle NOM m s 0.24 0.41 0.19 0.34 +sacro-iliaque sacro_iliaque ADJ s 0.03 0.00 0.02 0.00 +sacro-iliaques sacro_iliaque ADJ f p 0.03 0.00 0.01 0.00 +sacro-saint sacro_saint ADJ m s 0.65 1.35 0.21 0.68 +sacro-sainte sacro_saint ADJ f s 0.65 1.35 0.41 0.47 +sacro-saintes sacro_saint ADJ f p 0.65 1.35 0.00 0.14 +sacro-saints sacro_saint ADJ m p 0.65 1.35 0.02 0.07 +sacré-coeur sacré_coeur NOM m s 0.00 0.20 0.00 0.20 +sacs-poubelles sac_poubelle NOM m p 0.24 0.41 0.06 0.07 +safari-photo safari_photo NOM m s 0.01 0.00 0.01 0.00 +sage-femme sage_femme NOM f s 1.52 1.22 1.35 1.22 +sages-femmes sage_femme NOM f p 1.52 1.22 0.17 0.00 +saint-bernard saint_bernard NOM m 0.17 0.68 0.17 0.68 +saint-crépin saint_crépin NOM m 0.05 0.00 0.05 0.00 +saint-cyrien saint_cyrien NOM m s 0.00 1.01 0.00 0.68 +saint-cyriens saint_cyrien NOM m p 0.00 1.01 0.00 0.34 +saint-esprit saint_esprit NOM m 0.20 0.47 0.20 0.47 +saint-frusquin saint_frusquin NOM m 0.17 0.74 0.17 0.74 +saint-germain saint_germain NOM m 0.00 0.34 0.00 0.34 +saint-glinglin saint_glinglin NOM f s 0.01 0.07 0.01 0.07 +saint-guy saint_guy NOM m 0.03 0.00 0.03 0.00 +saint-honoré saint_honoré NOM m 0.14 0.20 0.14 0.20 +saint-hubert saint_hubert NOM f s 0.00 0.07 0.00 0.07 +saint-michel saint_michel NOM s 0.00 0.07 0.00 0.07 +saint-nectaire saint_nectaire NOM m 0.00 0.14 0.00 0.14 +saint-paulin saint_paulin NOM m 0.00 0.34 0.00 0.34 +saint-pierre saint_pierre NOM m 0.16 0.20 0.16 0.20 +saint-père saint_père NOM m s 0.14 2.16 0.14 0.20 +saint-siège saint_siège NOM m s 0.30 1.28 0.30 1.28 +saint-synode saint_synode NOM m s 0.00 0.07 0.00 0.07 +saint-émilion saint_émilion NOM m 0.00 0.41 0.00 0.41 +sainte-nitouche sainte_nitouche NOM f s 0.46 0.20 0.35 0.20 +sainte nitouche sainte_nitouche NOM f s 0.51 0.14 0.51 0.14 +saintes-nitouches sainte_nitouche NOM f p 0.46 0.20 0.11 0.00 +saints-pères saint_père NOM m p 0.14 2.16 0.00 1.96 +saisie-arrêt saisie_arrêt NOM f s 0.00 0.20 0.00 0.20 +san francisco san_francisco NOM s 0.02 0.07 0.02 0.07 +sang-froid sang_froid NOM m 5.41 9.26 5.41 9.26 +sans-coeur sans_coeur ADJ 0.01 0.07 0.01 0.07 +sans-culotte sans_culotte NOM m s 0.16 0.41 0.16 0.00 +sans-culottes sans_culotte NOM m p 0.16 0.41 0.00 0.41 +sans-culottides sans_culottide NOM f p 0.00 0.07 0.00 0.07 +sans-façon sans_façon NOM m 0.10 0.14 0.10 0.14 +sans-faute sans_faute NOM m 0.05 0.00 0.05 0.00 +sans-fil sans_fil NOM m 0.21 0.20 0.21 0.20 +sans-filiste sans_filiste NOM m s 0.00 0.74 0.00 0.61 +sans-filistes sans_filiste NOM m p 0.00 0.74 0.00 0.14 +sans-grade sans_grade NOM m 0.05 0.14 0.05 0.14 +sans-pareil sans_pareil NOM m 0.00 5.20 0.00 5.20 +sapeur-pompier sapeur_pompier NOM m s 0.11 0.61 0.07 0.00 +sapeurs-pompiers sapeur_pompier NOM m p 0.11 0.61 0.04 0.61 +satellites-espions satellites_espion NOM m p 0.02 0.00 0.02 0.00 +sauf-conduit sauf_conduit NOM m s 1.14 1.01 0.77 0.88 +sauf-conduits sauf_conduit NOM m p 1.14 1.01 0.37 0.14 +saut-de-lit saut_de_lit NOM m s 0.00 0.20 0.00 0.14 +saute-mouton saute_mouton NOM m 0.14 0.54 0.14 0.54 +saute-ruisseau saute_ruisseau NOM m s 0.00 0.07 0.00 0.07 +sauts-de-lit saut_de_lit NOM m p 0.00 0.20 0.00 0.07 +sauve-qui-peut sauve_qui_peut NOM m 0.10 0.68 0.10 0.68 +savoir-faire savoir_faire NOM m 1.23 2.03 1.23 2.03 +savoir-vivre savoir_vivre NOM m 1.67 1.76 1.67 1.76 +scenic railway scenic_railway NOM m s 0.00 0.20 0.00 0.20 +science-fiction science_fiction NOM f s 2.36 1.22 2.36 1.22 +scotch-terrier scotch_terrier NOM m s 0.01 0.00 0.01 0.00 +script-girl script_girl NOM f s 0.00 0.20 0.00 0.20 +scène-clé scène_clé NOM f s 0.01 0.00 0.01 0.00 +scènes-clés scènes_clé NOM f p 0.01 0.00 0.01 0.00 +second-maître second_maître NOM m s 0.05 0.07 0.05 0.07 +sedia gestatoria sedia_gestatoria NOM f 0.00 0.20 0.00 0.20 +self-contrôle self_contrôle NOM m s 0.19 0.07 0.19 0.07 +self-control self_control NOM m s 0.16 0.34 0.16 0.34 +self-défense self_défense NOM f s 0.18 0.00 0.18 0.00 +self-made-man self_made_man NOM m s 0.02 0.07 0.02 0.07 +self-made-men self_made_men NOM m p 0.01 0.07 0.01 0.07 +self-made man self_made_man NOM m s 0.14 0.07 0.14 0.07 +self-service self_service NOM m s 0.37 0.47 0.36 0.47 +self-services self_service NOM m p 0.37 0.47 0.01 0.00 +semen-contra semen_contra NOM m s 0.00 0.07 0.00 0.07 +semi-arides semi_aride ADJ f p 0.01 0.00 0.01 0.00 +semi-automatique semi_automatique ADJ s 0.71 0.07 0.59 0.07 +semi-automatiques semi_automatique ADJ f p 0.71 0.07 0.12 0.00 +semi-circulaire semi_circulaire ADJ s 0.01 0.14 0.01 0.14 +semi-conducteur semi_conducteur NOM m s 0.08 0.00 0.02 0.00 +semi-conducteurs semi_conducteur NOM m p 0.08 0.00 0.06 0.00 +semi-liberté semi_liberté NOM f s 0.26 0.07 0.26 0.07 +semi-lunaire semi_lunaire ADJ f s 0.02 0.00 0.02 0.00 +semi-nomades semi_nomade ADJ m p 0.00 0.07 0.00 0.07 +semi-officiel semi_officiel ADJ m s 0.01 0.14 0.01 0.07 +semi-officielle semi_officiel ADJ f s 0.01 0.14 0.00 0.07 +semi-ouvert semi_ouvert ADJ m s 0.01 0.00 0.01 0.00 +semi-perméable semi_perméable ADJ f s 0.01 0.00 0.01 0.00 +semi-phonétique semi_phonétique ADJ f s 0.00 0.07 0.00 0.07 +semi-précieuse semi_précieuse ADJ f s 0.01 0.00 0.01 0.00 +semi-précieuses semi_précieux ADJ f p 0.00 0.14 0.00 0.07 +semi-public semi_public ADJ m s 0.01 0.00 0.01 0.00 +semi-remorque semi_remorque NOM m s 0.48 0.61 0.45 0.54 +semi-remorques semi_remorque NOM m p 0.48 0.61 0.04 0.07 +semi-rigide semi_rigide ADJ f s 0.01 0.07 0.01 0.07 +sent-bon sent_bon NOM m s 0.00 0.54 0.00 0.54 +septante-cinq septante_cinq ADJ:num 0.00 0.07 0.00 0.07 +septante-sept septante_sept ADJ:num 0.20 0.07 0.20 0.07 +serbo-croate serbo_croate NOM s 0.14 0.20 0.14 0.20 +sergent-chef sergent_chef NOM m s 1.52 1.49 1.38 1.42 +sergent-major sergent_major NOM m s 0.71 1.35 0.71 1.28 +sergent-pilote sergent_pilote NOM m s 0.00 0.07 0.00 0.07 +sergents-chefs sergent_chef NOM m p 1.52 1.49 0.14 0.07 +sergents-majors sergent_major NOM m p 0.71 1.35 0.00 0.07 +serre-file serre_file NOM m s 0.04 0.34 0.04 0.34 +serre-joint serre_joint NOM m s 0.04 0.14 0.01 0.00 +serre-joints serre_joint NOM m p 0.04 0.14 0.03 0.14 +serre-livres serre_livres NOM m 0.03 0.07 0.03 0.07 +serre-tête serre_tête NOM m s 0.22 0.74 0.21 0.74 +serre-têtes serre_tête NOM m p 0.22 0.74 0.01 0.00 +serviette-éponge serviette_éponge NOM f s 0.00 1.49 0.00 1.22 +serviettes-éponges serviette_éponge NOM f p 0.00 1.49 0.00 0.27 +sex-appeal sex_appeal NOM m s 0.44 0.74 0.38 0.68 +sex-shop sex_shop NOM m s 0.57 0.54 0.41 0.34 +sex-shops sex_shop NOM m p 0.57 0.54 0.07 0.20 +sex-symbol sex_symbol NOM m s 0.08 0.07 0.08 0.07 +sex appeal sex_appeal NOM m s 0.44 0.74 0.06 0.07 +sex shop sex_shop NOM m s 0.57 0.54 0.08 0.00 +sex shops sex_shop NOM m p 0.57 0.54 0.01 0.00 +shake-hand shake_hand NOM m s 0.00 0.14 0.00 0.14 +show-business show_business NOM m 0.00 0.27 0.00 0.27 +sic transit gloria mundi sic_transit_gloria_mundi ADV 0.03 0.07 0.03 0.07 +side-car side_car NOM m s 0.23 1.08 0.23 0.81 +side-cars side_car NOM m p 0.23 1.08 0.00 0.27 +sine die sine_die ADV 0.00 0.34 0.00 0.34 +sine qua non sine_qua_non ADV 0.16 0.47 0.16 0.47 +singe-araignée singe_araignée NOM m s 0.01 0.00 0.01 0.00 +sino-américain sino_américain NOM m s 0.02 0.00 0.02 0.00 +sino-arabe sino_arabe ADJ f s 0.01 0.00 0.01 0.00 +sino-japonaise sino_japonais ADJ f s 0.00 0.14 0.00 0.14 +sit-in sit_in NOM m 0.30 0.00 0.30 0.00 +six-quatre six_quatre NOM m 0.00 0.07 0.00 0.07 +skate-board skate_board NOM m s 0.57 0.07 0.57 0.07 +snack-bar snack_bar NOM m s 0.23 0.61 0.23 0.54 +snack-bars snack_bar NOM m p 0.23 0.61 0.00 0.07 +snow-boots snow_boot NOM m p 0.00 0.07 0.00 0.07 +soap-opéra soap_opéra NOM m s 0.17 0.00 0.15 0.00 +soap opéra soap_opéra NOM m s 0.17 0.00 0.02 0.00 +social-démocrate social_démocrate ADJ m s 0.21 0.14 0.21 0.14 +social-démocratie social_démocratie NOM f s 0.02 0.34 0.02 0.34 +social-traître social_traître NOM m s 0.00 0.27 0.00 0.27 +sociaux-démocrates sociaux_démocrates ADJ m 0.23 0.00 0.23 0.00 +socio-culturelles socio_culturel ADJ f p 0.01 0.14 0.00 0.07 +socio-culturels socio_culturel ADJ m p 0.01 0.14 0.01 0.07 +socio-économique socio_économique ADJ m s 0.08 0.07 0.06 0.00 +socio-économiques socio_économique ADJ m p 0.08 0.07 0.02 0.07 +soi-disant soi_disant ADJ 9.46 13.11 9.46 13.11 +soi-même soi_même PRO:per s 6.86 24.86 6.86 24.86 +soixante-cinq soixante_cinq ADJ:num 0.12 3.58 0.12 3.58 +soixante-deux soixante_deux ADJ:num 0.15 0.34 0.15 0.34 +soixante-deuxième soixante_deuxième ADJ 0.00 0.07 0.00 0.07 +soixante-dix-huit soixante_dix_huit ADJ:num 0.16 0.47 0.16 0.47 +soixante-dix-neuf soixante_dix_neuf ADJ:num 0.01 0.20 0.01 0.20 +soixante-dix-neuvième soixante_dix_neuvième ADJ 0.00 0.07 0.00 0.07 +soixante-dix-sept soixante_dix_sept ADJ:num 0.21 0.74 0.21 0.74 +soixante-dix soixante_dix ADJ:num 1.12 8.85 1.12 8.85 +soixante-dixième soixante_dixième NOM s 0.00 0.47 0.00 0.47 +soixante-douze soixante_douze ADJ:num 0.23 1.15 0.23 1.15 +soixante-huit soixante_huit ADJ:num 0.16 0.81 0.16 0.81 +soixante-huitard soixante_huitard NOM m s 0.01 0.14 0.01 0.00 +soixante-huitarde soixante_huitard ADJ f s 0.00 0.07 0.00 0.07 +soixante-huitards soixante_huitard NOM m p 0.01 0.14 0.00 0.14 +soixante-neuf soixante_neuf ADJ:num 0.16 0.41 0.16 0.41 +soixante-quatorze soixante_quatorze ADJ:num 0.03 0.61 0.03 0.61 +soixante-quatre soixante_quatre ADJ:num 0.04 0.61 0.04 0.61 +soixante-quinze soixante_quinze ADJ:num 0.27 3.85 0.27 3.85 +soixante-seize soixante_seize ADJ:num 0.07 0.68 0.07 0.68 +soixante-sept soixante_sept ADJ:num 0.20 0.81 0.20 0.81 +soixante-six soixante_six ADJ:num 0.08 0.81 0.08 0.81 +soixante-treize soixante_treize ADJ:num 0.01 1.08 0.01 1.08 +soixante-trois soixante_trois ADJ:num 0.15 0.20 0.15 0.20 +sol-air sol_air ADJ 0.32 0.00 0.32 0.00 +soleil-roi soleil_roi NOM m s 0.00 0.07 0.00 0.07 +songe-creux songe_creux NOM m 0.01 0.41 0.01 0.41 +souffre-douleur souffre_douleur NOM m 0.27 1.22 0.27 1.22 +sourd-muet sourd_muet ADJ m s 0.78 0.20 0.77 0.20 +sourde-muette sourde_muette NOM f s 0.24 0.07 0.24 0.07 +sourds-muets sourd_muet NOM m p 1.48 1.01 0.88 0.68 +sous-alimentation sous_alimentation NOM f s 0.03 0.27 0.03 0.27 +sous-alimenté sous_alimenter VER m s 0.04 0.00 0.02 0.00 par:pas; +sous-alimentée sous_alimenté ADJ f s 0.04 0.20 0.04 0.07 +sous-alimentés sous_alimenté NOM m p 0.01 0.27 0.01 0.14 +sous-bibliothécaire sous_bibliothécaire NOM s 0.00 0.47 0.00 0.47 +sous-bois sous_bois NOM m 0.49 7.57 0.49 7.57 +sous-chef sous_chef NOM m s 0.73 0.88 0.69 0.74 +sous-chefs sous_chef NOM m p 0.73 0.88 0.04 0.14 +sous-classe sous_classe NOM f s 0.01 0.00 0.01 0.00 +sous-clavière sous_clavier ADJ f s 0.28 0.00 0.28 0.00 +sous-comité sous_comité NOM m s 0.26 0.07 0.26 0.07 +sous-commission sous_commission NOM f s 0.18 0.07 0.18 0.07 +sous-continent sous_continent NOM m s 0.06 0.07 0.05 0.07 +sous-continents sous_continent NOM m p 0.06 0.07 0.01 0.00 +sous-couche sous_couche NOM f s 0.03 0.00 0.03 0.00 +sous-cul sous_cul NOM m s 0.00 0.07 0.00 0.07 +sous-cutané sous_cutané ADJ m s 0.28 0.07 0.10 0.00 +sous-cutanée sous_cutané ADJ f s 0.28 0.07 0.10 0.00 +sous-cutanées sous_cutané ADJ f p 0.28 0.07 0.05 0.07 +sous-cutanés sous_cutané ADJ m p 0.28 0.07 0.03 0.00 +sous-diacre sous_diacre NOM m s 0.00 0.07 0.00 0.07 +sous-directeur sous_directeur NOM m s 0.66 1.96 0.63 1.82 +sous-directeurs sous_directeur NOM m p 0.66 1.96 0.00 0.07 +sous-directrice sous_directeur NOM f s 0.66 1.96 0.03 0.07 +sous-division sous_division NOM f s 0.04 0.00 0.04 0.00 +sous-dominante sous_dominante NOM f s 0.01 0.07 0.01 0.07 +sous-développement sous_développement NOM m s 0.30 0.27 0.30 0.27 +sous-développé sous_développé ADJ m s 0.31 0.68 0.09 0.27 +sous-développée sous_développé ADJ f s 0.31 0.68 0.02 0.00 +sous-développées sous_développé ADJ f p 0.31 0.68 0.02 0.07 +sous-développés sous_développé ADJ m p 0.31 0.68 0.19 0.34 +sous-effectif sous_effectif NOM m s 0.11 0.00 0.10 0.00 +sous-effectifs sous_effectif NOM m p 0.11 0.00 0.01 0.00 +sous-emploi sous_emploi NOM m s 0.00 0.07 0.00 0.07 +sous-ensemble sous_ensemble NOM m s 0.08 0.14 0.08 0.14 +sous-entend sous_entendre VER 2.03 1.82 0.39 0.20 ind:pre:3s; +sous-entendais sous_entendre VER 2.03 1.82 0.17 0.00 ind:imp:1s; +sous-entendait sous_entendre VER 2.03 1.82 0.03 0.54 ind:imp:3s; +sous-entendant sous_entendre VER 2.03 1.82 0.01 0.47 par:pre; +sous-entendent sous_entendre VER 2.03 1.82 0.01 0.00 ind:pre:3p; +sous-entendez sous_entendre VER 2.03 1.82 0.42 0.00 ind:pre:2p; +sous-entendiez sous_entendre VER 2.03 1.82 0.10 0.00 ind:imp:2p; +sous-entendrait sous_entendre VER 2.03 1.82 0.01 0.00 cnd:pre:3s; +sous-entendre sous_entendre VER 2.03 1.82 0.11 0.27 inf; +sous-entends sous_entendre VER 2.03 1.82 0.39 0.00 ind:pre:1s;ind:pre:2s; +sous-entendu sous_entendre VER m s 2.03 1.82 0.38 0.14 par:pas; +sous-entendue sous_entendu ADJ f s 0.06 0.68 0.01 0.07 +sous-entendus sous_entendu NOM m p 0.77 5.34 0.45 3.38 +sous-espace sous_espace NOM m s 0.22 0.00 0.22 0.00 +sous-espèce sous_espèce NOM f s 0.11 0.00 0.11 0.00 +sous-estimais sous_estimer VER 7.27 1.08 0.05 0.00 ind:imp:1s; +sous-estimait sous_estimer VER 7.27 1.08 0.03 0.34 ind:imp:3s; +sous-estimation sous_estimation NOM f s 0.06 0.07 0.06 0.07 +sous-estime sous_estimer VER 7.27 1.08 1.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sous-estiment sous_estimer VER 7.27 1.08 0.22 0.00 ind:pre:3p; +sous-estimer sous_estimer VER 7.27 1.08 1.05 0.54 inf; +sous-estimerai sous_estimer VER 7.27 1.08 0.03 0.00 ind:fut:1s; +sous-estimes sous_estimer VER 7.27 1.08 0.72 0.00 ind:pre:2s; +sous-estimez sous_estimer VER 7.27 1.08 1.53 0.00 imp:pre:2p;ind:pre:2p; +sous-estimons sous_estimer VER 7.27 1.08 0.11 0.00 imp:pre:1p;ind:pre:1p; +sous-estimé sous_estimer VER m s 7.27 1.08 1.71 0.14 par:pas; +sous-estimée sous_estimer VER f s 7.27 1.08 0.14 0.00 par:pas; +sous-estimées sous_estimer VER f p 7.27 1.08 0.07 0.00 par:pas; +sous-estimés sous_estimer VER m p 7.27 1.08 0.09 0.00 par:pas; +sous-exposé sous_exposer VER m s 0.02 0.00 0.01 0.00 par:pas; +sous-exposées sous_exposer VER f p 0.02 0.00 0.01 0.00 par:pas; +sous-fifre sous_fifre NOM m s 0.72 0.41 0.45 0.20 +sous-fifres sous_fifre NOM m p 0.72 0.41 0.27 0.20 +sous-garde sous_garde NOM f s 0.01 0.07 0.01 0.07 +sous-genre sous_genre NOM m s 0.02 0.00 0.02 0.00 +sous-gorge sous_gorge NOM f 0.00 0.07 0.00 0.07 +sous-groupe sous_groupe NOM m s 0.01 0.00 0.01 0.00 +sous-homme sous_homme NOM m s 0.20 0.61 0.16 0.00 +sous-hommes sous_homme NOM m p 0.20 0.61 0.05 0.61 +sous-humanité sous_humanité NOM f s 0.01 0.20 0.01 0.20 +sous-intendant sous_intendant NOM m s 0.30 0.00 0.10 0.00 +sous-intendants sous_intendant NOM m p 0.30 0.00 0.20 0.00 +sous-jacent sous_jacent ADJ m s 0.81 0.34 0.19 0.20 +sous-jacente sous_jacent ADJ f s 0.81 0.34 0.22 0.07 +sous-jacentes sous_jacent ADJ f p 0.81 0.34 0.01 0.07 +sous-jacents sous_jacent ADJ m p 0.81 0.34 0.39 0.00 +sous-lieutenant sous_lieutenant NOM m s 0.81 5.61 0.76 4.93 +sous-lieutenants sous_lieutenant NOM m p 0.81 5.61 0.05 0.68 +sous-locataire sous_locataire NOM s 0.02 0.14 0.02 0.00 +sous-locataires sous_locataire NOM p 0.02 0.14 0.00 0.14 +sous-location sous_location NOM f s 0.09 0.07 0.06 0.07 +sous-locations sous_location NOM f p 0.09 0.07 0.03 0.00 +sous-loua sous_louer VER 0.63 0.47 0.00 0.07 ind:pas:3s; +sous-louait sous_louer VER 0.63 0.47 0.03 0.00 ind:imp:3s; +sous-loue sous_louer VER 0.63 0.47 0.21 0.00 ind:pre:1s;ind:pre:3s; +sous-louer sous_louer VER 0.63 0.47 0.17 0.14 inf; +sous-louerai sous_louer VER 0.63 0.47 0.11 0.00 ind:fut:1s; +sous-louez sous_louer VER 0.63 0.47 0.02 0.00 ind:pre:2p; +sous-louèrent sous_louer VER 0.63 0.47 0.00 0.07 ind:pas:3p; +sous-loué sous_louer VER m s 0.63 0.47 0.08 0.20 par:pas; +sous-maîtresse sous_maîtresse NOM f s 0.07 0.20 0.07 0.20 +sous-main sous_main NOM m s 0.28 1.96 0.28 1.96 +sous-marin sous_marin NOM m s 11.14 6.42 9.07 2.70 +sous-marine sous_marin ADJ f s 4.47 5.00 1.06 1.89 +sous-marines sous_marin ADJ f p 4.47 5.00 0.41 0.88 +sous-marinier sous_marinier NOM m s 0.26 0.00 0.04 0.00 +sous-mariniers sous_marinier NOM m p 0.26 0.00 0.22 0.00 +sous-marins sous_marin NOM m p 11.14 6.42 2.07 3.72 +sous-marque sous_marque NOM f s 0.01 0.14 0.01 0.07 +sous-marques sous_marque NOM f p 0.01 0.14 0.00 0.07 +sous-merde sous_merde NOM f s 0.59 0.14 0.54 0.14 +sous-merdes sous_merde NOM f p 0.59 0.14 0.05 0.00 +sous-ministre sous_ministre NOM m s 0.17 0.07 0.17 0.07 +sous-off sous_off NOM m s 0.14 4.26 0.11 2.16 +sous-officier sous_officier NOM m s 0.65 9.53 0.28 4.80 +sous-officiers sous_officier NOM m p 0.65 9.53 0.36 4.73 +sous-offs sous_off NOM m p 0.14 4.26 0.03 2.09 +sous-ordre sous_ordre NOM m s 0.01 0.61 0.01 0.54 +sous-ordres sous_ordre NOM m p 0.01 0.61 0.00 0.07 +sous-payer sous_payer VER 0.28 0.07 0.04 0.00 inf; +sous-payé sous_payer VER m s 0.28 0.07 0.14 0.07 par:pas; +sous-payés sous_payer VER m p 0.28 0.07 0.10 0.00 par:pas; +sous-pied sous_pied NOM m s 0.00 0.20 0.00 0.07 +sous-pieds sous_pied NOM m p 0.00 0.20 0.00 0.14 +sous-plat sous_plat NOM m s 0.00 0.07 0.00 0.07 +sous-prieur sous_prieur PRE 0.00 0.47 0.00 0.47 +sous-produit sous_produit NOM m s 0.48 0.54 0.42 0.27 +sous-produits sous_produit NOM m p 0.48 0.54 0.06 0.27 +sous-programme sous_programme NOM m s 0.12 0.00 0.09 0.00 +sous-programmes sous_programme NOM m p 0.12 0.00 0.03 0.00 +sous-prolétaire sous_prolétaire NOM s 0.11 0.07 0.11 0.07 +sous-prolétariat sous_prolétariat NOM m s 0.34 0.27 0.34 0.27 +sous-préfecture sous_préfecture NOM f s 0.17 1.62 0.03 1.35 +sous-préfectures sous_préfecture NOM f p 0.17 1.62 0.14 0.27 +sous-préfet sous_préfet NOM m s 0.02 1.01 0.02 0.95 +sous-préfets sous_préfet NOM m p 0.02 1.01 0.00 0.07 +sous-pulls sous_pull NOM m p 0.01 0.00 0.01 0.00 +sous-qualifié sous_qualifié ADJ m s 0.04 0.00 0.03 0.00 +sous-qualifiée sous_qualifié ADJ f s 0.04 0.00 0.01 0.00 +sous-secrétaire sous_secrétaire NOM m s 0.65 1.15 0.65 0.74 +sous-secrétaires sous_secrétaire NOM m p 0.65 1.15 0.00 0.41 +sous-secrétariat sous_secrétariat NOM m s 0.10 0.00 0.10 0.00 +sous-secteur sous_secteur NOM m s 0.02 0.27 0.02 0.27 +sous-section sous_section NOM f s 0.09 0.00 0.09 0.00 +sous-sol sous_sol NOM m s 13.50 10.54 12.80 8.31 +sous-sols sous_sol NOM m p 13.50 10.54 0.70 2.23 +sous-station sous_station NOM f s 0.17 0.07 0.17 0.07 +sous-système sous_système NOM m s 0.04 0.00 0.04 0.00 +sous-tasse sous_tasse NOM f s 0.11 0.20 0.11 0.14 +sous-tasses sous_tasse NOM f p 0.11 0.20 0.00 0.07 +sous-tend sous_tendre VER 0.07 0.54 0.02 0.00 ind:pre:3s; +sous-tendaient sous_tendre VER 0.07 0.54 0.00 0.07 ind:imp:3p; +sous-tendait sous_tendre VER 0.07 0.54 0.01 0.20 ind:imp:3s; +sous-tendent sous_tendre VER 0.07 0.54 0.01 0.14 ind:pre:3p; +sous-tendu sous_tendre VER m s 0.07 0.54 0.03 0.07 par:pas; +sous-tendue sous_tendre VER f s 0.07 0.54 0.00 0.07 par:pas; +sous-tension sous_tension NOM f s 0.03 0.00 0.03 0.00 +sous-titrage sous_titrage NOM m s 54.64 0.00 54.64 0.00 +sous-titre sous_titre NOM m s 23.09 0.95 0.83 0.68 +sous-titrer sous_titrer VER 5.81 0.14 0.01 0.00 inf; +sous-titres sous_titre NOM m p 23.09 0.95 22.26 0.27 +sous-titré sous_titrer VER m s 5.81 0.14 5.72 0.00 par:pas; +sous-titrée sous_titrer VER f s 5.81 0.14 0.00 0.07 par:pas; +sous-titrés sous_titrer VER m p 5.81 0.14 0.09 0.07 par:pas; +sous-traitance sous_traitance NOM f s 0.04 0.00 0.04 0.00 +sous-traitant sous_traitant NOM m s 0.23 0.00 0.10 0.00 +sous-traitants sous_traitant NOM m p 0.23 0.00 0.13 0.00 +sous-traite sous_traiter VER 0.13 0.14 0.04 0.00 ind:pre:3s; +sous-traitent sous_traiter VER 0.13 0.14 0.01 0.00 ind:pre:3p; +sous-traiter sous_traiter VER 0.13 0.14 0.06 0.07 inf; +sous-traités sous_traiter VER m p 0.13 0.14 0.00 0.07 par:pas; +sous-équipés sous_équipé ADJ m p 0.07 0.00 0.07 0.00 +sous-évaluait sous_évaluer VER 0.10 0.00 0.01 0.00 ind:imp:3s; +sous-évalué sous_évaluer VER m s 0.10 0.00 0.06 0.00 par:pas; +sous-évaluées sous_évaluer VER f p 0.10 0.00 0.02 0.00 par:pas; +sous-ventrière sous_ventrière NOM f s 0.03 0.47 0.03 0.47 +sous-verge sous_verge NOM m 0.00 0.54 0.00 0.54 +sous-verre sous_verre NOM m 0.06 0.20 0.06 0.20 +sous-vêtement sous_vêtement NOM m s 6.57 2.77 0.33 0.41 +sous-vêtements sous_vêtement NOM m p 6.57 2.77 6.24 2.36 +soutien-gorge soutien_gorge NOM m s 5.86 8.65 4.89 7.91 +soutiens-gorge soutien_gorge NOM m p 5.86 8.65 0.96 0.74 +souventes fois souventes_fois ADV 0.00 0.27 0.00 0.27 +sparring-partner sparring_partner NOM m s 0.00 0.07 0.00 0.07 +spatio-temporel spatio_temporel ADJ m s 0.21 0.20 0.09 0.07 +spatio-temporelle spatio_temporel ADJ f s 0.21 0.20 0.13 0.14 +spina-bifida spina_bifida NOM m s 0.04 0.00 0.04 0.00 +spina-ventosa spina_ventosa NOM m s 0.00 0.07 0.00 0.07 +sri lankais sri_lankais ADJ m 0.01 0.00 0.01 0.00 +sri lankais sri_lankais NOM m 0.01 0.00 0.01 0.00 +stabat mater stabat_mater NOM m 0.00 0.07 0.00 0.07 +stand-by stand_by NOM m 0.83 0.07 0.83 0.07 +star-system star_system NOM m s 0.01 0.00 0.01 0.00 +start-up start_up NOM f 0.35 0.00 0.35 0.00 +starting-gate starting_gate NOM f s 0.04 0.14 0.04 0.14 +station-service station_service NOM f s 4.22 3.58 3.95 3.24 +station-éclair station_éclair NOM f s 0.00 0.07 0.00 0.07 +stations-service station_service NOM f p 4.22 3.58 0.27 0.34 +statu quo statu_quo NOM m s 0.94 1.08 0.94 1.08 +staturo-pondéral staturo_pondéral ADJ m s 0.01 0.00 0.01 0.00 +steeple-chase steeple_chase NOM m s 0.02 0.07 0.02 0.07 +sterno-cléido-mastoïdien sterno_cléido_mastoïdien ADJ m s 0.01 0.00 0.01 0.00 +sèche-cheveux sèche_cheveux NOM m 0.97 0.00 0.97 0.00 +sèche-linge sèche_linge NOM m 0.74 0.00 0.74 0.00 +sèche-mains sèche_mains NOM m 0.04 0.00 0.04 0.00 +stimulus-réponse stimulus_réponse NOM m 0.00 0.14 0.00 0.14 +stock-car stock_car NOM m s 0.19 0.14 0.16 0.14 +stock-cars stock_car NOM m p 0.19 0.14 0.03 0.00 +stock-options stock_option NOM f p 0.18 0.00 0.18 0.00 +story-board story_board NOM m s 0.28 0.07 0.23 0.00 +story-boards story_board NOM m p 0.28 0.07 0.03 0.00 +story board story_board NOM m s 0.28 0.07 0.03 0.07 +stricto sensu stricto_sensu ADV 0.01 0.00 0.01 0.00 +strip-poker strip_poker NOM m s 0.08 0.07 0.08 0.07 +strip-tease strip_tease NOM m s 4.04 1.01 3.63 0.95 +strip-teases strip_tease NOM m p 4.04 1.01 0.41 0.07 +strip-teaseur strip_teaseur NOM m s 3.23 0.47 0.11 0.00 +strip-teaseurs strip_teaseur NOM m p 3.23 0.47 0.14 0.00 +strip-teaseuse strip_teaseur NOM f s 3.23 0.47 2.98 0.27 +strip-teaseuses strip_teaseuse NOM f p 0.79 0.00 0.79 0.00 +struggle for life struggle_for_life NOM m 0.00 0.07 0.00 0.07 +stylo-bille stylo_bille NOM m s 0.17 0.14 0.17 0.14 +stylo-feutre stylo_feutre NOM m s 0.00 0.27 0.00 0.14 +stylos-feutres stylo_feutre NOM m p 0.00 0.27 0.00 0.14 +sub-aquatique sub_aquatique ADJ f s 0.00 0.07 0.00 0.07 +sub-atomique sub_atomique ADJ s 0.07 0.00 0.04 0.00 +sub-atomiques sub_atomique ADJ p 0.07 0.00 0.04 0.00 +sub-claquant sub_claquant ADJ m s 0.01 0.00 0.01 0.00 +sub-espace sub_espace NOM m s 0.08 0.00 0.08 0.00 +sub-normaux sub_normaux ADJ m p 0.14 0.00 0.14 0.00 +sub-nucléaires sub_nucléaire ADJ f p 0.01 0.00 0.01 0.00 +sub-vocal sub_vocal ADJ m s 0.01 0.07 0.01 0.07 +sub-véhiculaire sub_véhiculaire ADJ s 0.01 0.00 0.01 0.00 +sub-zéro sub_zéro NOM m s 0.01 0.00 0.01 0.00 +sud-africain sud_africain NOM m s 0.28 0.07 0.15 0.00 +sud-africaine sud_africain ADJ f s 0.29 0.47 0.07 0.34 +sud-africaines sud_africain ADJ f p 0.29 0.47 0.04 0.00 +sud-africains sud_africain NOM m p 0.28 0.07 0.10 0.07 +sud-américain sud_américain ADJ m s 0.77 1.55 0.29 0.41 +sud-américaine sud_américain ADJ f s 0.77 1.55 0.35 0.54 +sud-américaines sud_américain ADJ f p 0.77 1.55 0.01 0.20 +sud-américains sud_américain ADJ m p 0.77 1.55 0.11 0.41 +sud-coréen sud_coréen ADJ m s 0.21 0.00 0.01 0.00 +sud-coréen sud_coréen NOM m s 0.01 0.00 0.01 0.00 +sud-coréenne sud_coréen ADJ f s 0.21 0.00 0.15 0.00 +sud-coréennes sud_coréen ADJ f p 0.21 0.00 0.02 0.00 +sud-coréens sud_coréen ADJ m p 0.21 0.00 0.02 0.00 +sud-est sud_est NOM m 3.30 2.30 3.30 2.30 +sud-ouest sud_ouest NOM m 2.10 3.51 2.10 3.51 +sud-sud-est sud_sud_est NOM m s 0.03 0.00 0.03 0.00 +sud-vietnamien sud_vietnamien ADJ m s 0.10 0.07 0.05 0.00 +sud-vietnamienne sud_vietnamien ADJ f s 0.10 0.07 0.03 0.00 +sud-vietnamiens sud_vietnamien NOM m p 0.12 0.20 0.11 0.20 +sui generis sui_generis ADJ m p 0.23 0.07 0.23 0.07 +suivez-moi-jeune-homme suivez_moi_jeune_homme NOM m s 0.00 0.07 0.00 0.07 +sénatus-consulte sénatus_consulte NOM m s 0.00 0.07 0.00 0.07 +super-espion super_espion NOM m s 0.02 0.00 0.02 0.00 +super-grands super_grand NOM m p 0.00 0.07 0.00 0.07 +super-pilote super_pilote ADJ s 0.01 0.00 0.01 0.00 +super-puissances super_puissance NOM f p 0.03 0.00 0.03 0.00 +supports-chaussettes support_chaussette NOM m p 0.00 0.07 0.00 0.07 +supra-humain supra_humain ADJ m s 0.00 0.07 0.00 0.07 +sur-le-champ sur_le_champ ADV 6.79 10.95 6.79 10.95 +sur-mesure sur_mesure NOM m s 0.03 0.00 0.03 0.00 +sur-place sur_place NOM m s 0.20 0.27 0.20 0.27 +surprise-partie surprise_partie NOM f s 0.20 0.61 0.18 0.27 +surprise-party surprise_party NOM f s 0.10 0.07 0.10 0.07 +surprises-parties surprise_partie NOM f p 0.20 0.61 0.02 0.34 +sursum corda sursum_corda ADV 0.00 0.20 0.00 0.20 +sus-orbitaire sus_orbitaire ADJ m s 0.01 0.00 0.01 0.00 +sweat-shirt sweat_shirt NOM m s 0.00 0.20 0.00 0.20 +systèmes-clés systèmes_clé NOM m p 0.03 0.00 0.03 0.00 +t-shirt t_shirt NOM m s 10.87 0.54 7.59 0.20 +t-shirts t_shirt NOM m p 10.87 0.54 3.28 0.34 +tôt-fait tôt_fait NOM m s 0.00 0.07 0.00 0.07 +taï chi taï_chi NOM m s 0.16 0.00 0.16 0.00 +table-bureau table_bureau NOM f s 0.00 0.07 0.00 0.07 +table-coiffeuse table_coiffeuse NOM f s 0.00 0.27 0.00 0.27 +tai-chi tai_chi NOM m s 0.12 0.00 0.12 0.00 +taille-crayon taille_crayon NOM m s 0.07 0.68 0.04 0.54 +taille-crayons taille_crayon NOM m p 0.07 0.68 0.03 0.14 +taille-douce taille_douce NOM f s 0.00 0.20 0.00 0.14 +taille-haie taille_haie NOM m s 0.07 0.07 0.06 0.00 +taille-haies taille_haie NOM m p 0.07 0.07 0.01 0.07 +tailles-douces taille_douce NOM f p 0.00 0.20 0.00 0.07 +tailleur-pantalon tailleur_pantalon NOM m s 0.01 0.07 0.01 0.07 +take-off take_off NOM m 0.08 0.00 0.08 0.00 +talavera de la reina talavera_de_la_reina NOM s 0.00 0.07 0.00 0.07 +talkie-walkie talkie_walkie NOM m s 1.37 0.20 0.89 0.07 +talkies-walkies talkie_walkie NOM m p 1.37 0.20 0.48 0.14 +tam-tam tam_tam NOM m s 1.06 3.45 0.37 2.77 +tam-tams tam_tam NOM m p 1.06 3.45 0.69 0.68 +tambour-major tambour_major NOM m s 0.26 0.74 0.26 0.74 +tampon-buvard tampon_buvard NOM m s 0.00 0.20 0.00 0.20 +tan-sad tan_sad NOM m s 0.00 0.20 0.00 0.20 +tandis qu tandis_qu CON 0.01 0.07 0.01 0.07 +tandis que tandis_que CON 15.04 136.15 15.04 136.15 +tape-cul tape_cul NOM m s 0.04 0.41 0.04 0.41 +tape-à-l'oeil tape_à_l_oeil ADJ 0.00 0.41 0.00 0.41 +tapis-brosse tapis_brosse NOM m s 0.01 0.14 0.01 0.14 +tard-venu tard_venu ADJ m s 0.00 0.07 0.00 0.07 +tarte-minute tarte_minute ADJ f s 0.01 0.00 0.01 0.00 +taste-vin taste_vin NOM m 0.01 0.14 0.01 0.14 +taxi-auto taxi_auto NOM m s 0.00 0.07 0.00 0.07 +taxi-brousse taxi_brousse NOM m s 0.14 0.14 0.14 0.14 +taxi-girl taxi_girl NOM f s 0.00 0.27 0.00 0.07 +taxi-girls taxi_girl NOM f p 0.00 0.27 0.00 0.20 +tchin-tchin tchin_tchin ONO 0.11 0.14 0.11 0.14 +tchin tchin tchin_tchin ONO 0.01 0.47 0.01 0.47 +te deum te_deum NOM m 0.00 0.14 0.00 0.14 +tea-room tea_room NOM m s 0.00 0.20 0.00 0.20 +technico-commerciaux technico_commerciaux NOM m p 0.00 0.07 0.00 0.07 +tee-shirt tee_shirt NOM m s 3.19 5.27 2.94 3.99 +tee-shirts tee_shirt NOM m p 3.19 5.27 0.25 1.28 +teen-agers teen_ager NOM p 0.00 0.20 0.00 0.20 +tennis-ballon tennis_ballon NOM m 0.00 0.07 0.00 0.07 +tennis-club tennis_club NOM m 0.00 0.34 0.00 0.34 +terra incognita terra_incognita NOM f s 0.02 0.34 0.02 0.34 +terre-neuvas terre_neuvas NOM m 0.00 0.34 0.00 0.34 +terre-neuve terre_neuve NOM m 0.03 0.27 0.03 0.27 +terre-neuvien terre_neuvien ADJ m s 0.01 0.00 0.01 0.00 +terre-neuvien terre_neuvien NOM m s 0.01 0.00 0.01 0.00 +terre-à-terre terre_à_terre ADJ f s 0.00 0.20 0.00 0.20 +terre-plein terre_plein NOM m s 0.20 5.81 0.20 5.74 +terre-pleins terre_plein NOM m p 0.20 5.81 0.00 0.07 +test-match test_match NOM m s 0.01 0.00 0.01 0.00 +teuf-teuf teuf_teuf NOM m s 0.04 0.41 0.04 0.41 +tic-tac tic_tac NOM m 2.52 2.91 2.52 2.91 +tie-break tie_break NOM m s 0.02 0.00 0.02 0.00 +tiens-la-moi tiens_la_moi ADJ:pos m s 0.14 0.00 0.14 0.00 +tiers-monde tiers_monde NOM m s 1.96 0.20 1.96 0.14 +tiers-mondes tiers_monde NOM m p 1.96 0.20 0.00 0.07 +tiers-mondisme tiers_mondisme NOM m s 0.00 0.07 0.00 0.07 +tiers-mondiste tiers_mondiste ADJ f s 0.15 0.20 0.15 0.00 +tiers-mondistes tiers_mondiste ADJ m p 0.15 0.20 0.00 0.20 +tiers-ordre tiers_ordre NOM m 0.00 0.07 0.00 0.07 +tiers-point tiers_point NOM m s 0.00 0.14 0.00 0.14 +tiers-état tiers_état NOM m s 0.03 0.00 0.03 0.00 +timbre-poste timbre_poste NOM m s 0.12 1.28 0.11 0.68 +timbres-poste timbre_poste NOM m p 0.12 1.28 0.01 0.61 +time-sharing time_sharing NOM m s 0.01 0.00 0.01 0.00 +tire-au-cul tire_au_cul NOM m 0.02 0.00 0.02 0.00 +tire-au-flanc tire_au_flanc NOM m 0.51 0.34 0.51 0.34 +tire-botte tire_botte NOM m s 0.01 0.07 0.01 0.07 +tire-bouchon tire_bouchon NOM m s 0.93 2.43 0.90 2.16 +tire-bouchonnaient tire_bouchonner VER 0.02 0.88 0.00 0.14 ind:imp:3p; +tire-bouchonnant tire_bouchonner VER 0.02 0.88 0.00 0.07 par:pre; +tire-bouchonne tire_bouchonner VER 0.02 0.88 0.01 0.27 ind:pre:3s; +tire-bouchonnent tire_bouchonner VER 0.02 0.88 0.01 0.07 ind:pre:3p; +tire-bouchonné tire_bouchonner VER m s 0.02 0.88 0.00 0.27 par:pas; +tire-bouchonnés tire_bouchonner VER m p 0.02 0.88 0.00 0.07 par:pas; +tire-bouchons tire_bouchon NOM m p 0.93 2.43 0.03 0.27 +tire-bouton tire_bouton NOM m s 0.00 0.07 0.00 0.07 +tire-d'aile tire_d_aile NOM f s 0.02 0.00 0.02 0.00 +tire-fesse tire_fesse NOM f s 0.01 0.00 0.01 0.00 +tire-jus tire_jus NOM m 0.00 0.20 0.00 0.20 +tire-laine tire_laine NOM m 0.02 0.07 0.02 0.07 +tire-lait tire_lait NOM m 0.07 0.00 0.07 0.00 +tire-larigot tire_larigot NOM f s 0.00 0.07 0.00 0.07 +tire-ligne tire_ligne NOM m s 0.00 0.34 0.00 0.20 +tire-lignes tire_ligne NOM m p 0.00 0.34 0.00 0.14 +tire-lire tire_lire NOM m 0.00 0.14 0.00 0.14 +tiroir-caisse tiroir_caisse NOM m s 0.49 2.16 0.48 2.03 +tiroirs-caisses tiroir_caisse NOM m p 0.49 2.16 0.01 0.14 +tissu-éponge tissu_éponge NOM m s 0.00 0.41 0.00 0.41 +tohu-bohu tohu_bohu NOM m 0.18 1.42 0.18 1.42 +toi-même toi_même PRO:per s 45.83 11.89 45.83 11.89 +tom-pouce tom_pouce NOM m 0.00 0.54 0.00 0.54 +tom-tom tom_tom NOM m 0.04 0.00 0.04 0.00 +too much too_much ADJ m s 0.19 0.47 0.19 0.47 +top-modèle top_modèle NOM f s 0.22 0.00 0.21 0.00 +top-modèles top_modèle NOM f p 0.22 0.00 0.01 0.00 +top models top_model NOM f p 0.12 0.07 0.12 0.07 +torche-cul torche_cul NOM m s 0.06 0.00 0.06 0.00 +tord-boyaux tord_boyaux NOM m 0.27 0.47 0.27 0.47 +tord-nez tord_nez NOM m s 0.00 0.14 0.00 0.14 +toréador-vedette toréador_vedette NOM m s 0.00 0.07 0.00 0.07 +touche-pipi touche_pipi NOM m 0.35 0.61 0.35 0.61 +touche-touche touche_touche NOM f s 0.01 0.00 0.01 0.00 +tourne-disque tourne_disque NOM m s 0.74 1.35 0.50 0.95 +tourne-disques tourne_disque NOM m p 0.74 1.35 0.24 0.41 +tours-minute tours_minute NOM p 0.00 0.07 0.00 0.07 +tous-terrains tous_terrains ADJ m p 0.00 0.07 0.00 0.07 +tout-fait tout_fait ADJ:ind m s 0.14 0.00 0.11 0.00 +tout-fou tout_fou ADJ m s 0.01 0.00 0.01 0.00 +tout-à-l'égout tout_à_l_égout NOM m 0.00 0.47 0.00 0.47 +tout-paris tout_paris NOM m 0.16 1.01 0.16 1.01 +tout-petit tout_petit NOM m s 0.20 0.74 0.03 0.34 +tout-petits tout_petit NOM m p 0.20 0.74 0.17 0.41 +tout-puissant tout_puissant ADJ m s 7.22 3.65 5.70 2.09 +tout-puissants tout_puissant ADJ m p 7.22 3.65 0.17 0.41 +tout-terrain tout_terrain NOM m s 0.28 0.00 0.28 0.00 +tout-étoile tout_étoile NOM m s 0.01 0.00 0.01 0.00 +tout-venant tout_venant NOM m 0.05 0.74 0.05 0.74 +toute-puissance toute_puissance NOM f 0.08 2.03 0.08 2.03 +toute-puissante tout_puissant ADJ f s 7.22 3.65 1.35 1.15 +toutes-puissantes toute_puissante ADJ f p 0.01 0.14 0.01 0.14 +traîne-misère traîne_misère NOM m 0.01 0.07 0.01 0.07 +traîne-patins traîne_patins NOM m 0.00 0.47 0.00 0.47 +traîne-savate traîne_savate NOM m s 0.01 0.07 0.01 0.07 +traîne-savates traîne_savates NOM m 0.22 0.54 0.22 0.54 +traîne-semelle traîne_semelle NOM s 0.00 0.07 0.00 0.07 +traîne-semelles traîne_semelles NOM m 0.01 0.07 0.01 0.07 +trachée-artère trachée_artère NOM f s 0.02 0.20 0.02 0.20 +traction-avant traction_avant NOM f s 0.00 0.07 0.00 0.07 +trafiquant-espion trafiquant_espion NOM m s 0.00 0.07 0.00 0.07 +tragi-comique tragi_comique ADJ f s 0.00 0.47 0.00 0.34 +tragi-comiques tragi_comique ADJ m p 0.00 0.47 0.00 0.14 +tragi-comédie tragi_comédie NOM f s 0.00 0.27 0.00 0.14 +tragi-comédies tragi_comédie NOM f p 0.00 0.27 0.00 0.14 +train-train train_train NOM m 0.69 1.62 0.69 1.62 +tranche-montagne tranche_montagne NOM m s 0.28 0.07 0.28 0.07 +tranchée-abri tranchée_abri NOM f s 0.00 0.81 0.00 0.74 +tranchées-abris tranchée_abri NOM f p 0.00 0.81 0.00 0.07 +traveller's chèques traveller_s_chèque NOM m p 0.04 0.00 0.04 0.00 +trench-coat trench_coat NOM m s 0.04 1.55 0.04 1.49 +trench-coats trench_coat NOM m p 0.04 1.55 0.00 0.07 +trente-cinq trente_cinq ADJ:num 1.33 11.55 1.33 11.55 +trente-cinquième trente_cinquième ADJ 0.00 0.14 0.00 0.14 +trente-deux trente_deux ADJ:num 0.82 3.58 0.82 3.58 +trente-et-quarante trente_et_quarante NOM m 0.00 0.07 0.00 0.07 +trente-et-un trente_et_un NOM m 0.39 0.07 0.39 0.07 +trente-et-unième trente_et_unième ADJ 0.00 0.07 0.00 0.07 +trente-huit trente_huit ADJ:num 0.64 2.64 0.64 2.64 +trente-huitième trente_huitième ADJ 0.00 0.20 0.00 0.20 +trente-neuf trente_neuf ADJ:num 0.55 2.16 0.55 2.16 +trente-neuvième trente_neuvième ADJ 0.01 0.14 0.01 0.14 +trente-quatre trente_quatre ADJ:num 0.43 1.08 0.43 1.08 +trente-quatrième trente_quatrième ADJ 0.00 0.07 0.00 0.07 +trente-sept trente_sept ADJ:num 0.71 2.23 0.71 2.23 +trente-septième trente_septième ADJ 0.20 0.14 0.20 0.14 +trente-six trente_six ADJ:num 0.55 6.82 0.55 6.82 +trente-sixième trente_sixième ADJ 0.02 0.61 0.02 0.61 +trente-trois trente_trois ADJ:num 0.78 2.36 0.78 2.36 +trente-troisième trente_troisième ADJ 0.00 0.20 0.00 0.20 +trois-deux trois_deux NOM m 0.01 0.00 0.01 0.00 +trois-huit trois_huit NOM m 0.17 0.00 0.17 0.00 +trois-mâts trois_mâts NOM m 0.16 0.47 0.16 0.47 +trois-points trois_points NOM m 0.01 0.00 0.01 0.00 +trois-quarts trois_quarts NOM m 0.59 0.34 0.59 0.34 +trois-quatre trois_quatre NOM m 0.02 0.47 0.02 0.47 +trois-six trois_six NOM m 0.01 0.07 0.01 0.07 +trompe-l'oeil trompe_l_oeil NOM m 0.33 2.43 0.33 2.43 +trop-perçu trop_perçu NOM m s 0.01 0.00 0.01 0.00 +trop-plein trop_plein NOM m s 0.30 2.64 0.30 2.50 +trop-pleins trop_plein NOM m p 0.30 2.64 0.00 0.14 +trotte-menu trotte_menu ADJ m s 0.00 0.41 0.00 0.41 +trou-du-cul trou_du_cul NOM m s 0.43 0.14 0.29 0.14 +trou-trou trou_trou NOM m s 0.00 0.34 0.00 0.14 +trou-trous trou_trou NOM m p 0.00 0.34 0.00 0.20 +trouble-fêtes trouble_fête NOM p 0.28 0.00 0.28 0.00 +trous-du-cul trou_du_cul NOM m p 0.43 0.14 0.14 0.00 +trésorier-payeur trésorier_payeur NOM m s 0.02 0.07 0.02 0.07 +tsoin-tsoin tsoin_tsoin NOM m s 0.01 0.47 0.01 0.47 +tss-tss tss_tss NOM m 0.01 0.14 0.01 0.07 +tss tss tss_tss NOM m 0.01 0.14 0.00 0.07 +tsé-tsé tsé_tsé NOM f 0.00 0.07 0.00 0.07 +tu autem tu_autem NOM m s 0.00 0.07 0.00 0.07 +tue-loup tue_loup NOM m s 0.06 0.00 0.05 0.00 +tue-loups tue_loup NOM m p 0.06 0.00 0.01 0.00 +tue-mouche tue_mouche ADJ m s 0.15 0.54 0.00 0.07 +tue-mouches tue_mouche ADJ p 0.15 0.54 0.15 0.47 +témoin-clé témoin_clé NOM m s 0.13 0.00 0.13 0.00 +témoin-vedette témoin_vedette NOM m s 0.01 0.00 0.01 0.00 +témoins-clés témoins_clé NOM m p 0.05 0.00 0.05 0.00 +tête-bêche tête_bêche NOM m 0.03 0.47 0.03 0.47 +tête-de-mort tête_de_mort NOM f 0.01 0.41 0.01 0.41 +tête-de-nègre tête_de_nègre ADJ 0.00 0.20 0.00 0.20 +tête-à-queue tête_à_queue NOM m 0.00 0.20 0.00 0.20 +tête-à-tête tête_à_tête NOM m 0.00 5.95 0.00 5.95 +têtes-de-loup tête_de_loup NOM f p 0.00 0.27 0.00 0.27 +tutti frutti tutti_frutti ADV 0.09 0.41 0.09 0.41 +tutti quanti tutti_quanti ADV 0.15 0.20 0.15 0.20 +twin-set twin_set NOM m s 0.00 0.14 0.00 0.14 +échos-radars échos_radar NOM m p 0.01 0.00 0.01 0.00 +écrase-merde écrase_merde NOM m s 0.00 0.41 0.00 0.20 +écrase-merdes écrase_merde NOM m p 0.00 0.41 0.00 0.20 +électro-acoustique électro_acoustique NOM f s 0.00 0.14 0.00 0.14 +électro-aimant électro_aimant NOM m s 0.02 0.00 0.02 0.00 +électro-encéphalogramme électro_encéphalogramme NOM m s 0.16 0.07 0.16 0.07 +ultima ratio ultima_ratio NOM f s 0.00 0.07 0.00 0.07 +ultra-catholique ultra_catholique ADJ m s 0.10 0.00 0.10 0.00 +ultra-chic ultra_chic ADJ s 0.03 0.20 0.03 0.14 +ultra-chics ultra_chic ADJ f p 0.03 0.20 0.00 0.07 +ultra-courtes ultra_court ADJ f p 0.16 0.07 0.02 0.00 +ultra-courts ultra_court ADJ m p 0.16 0.07 0.14 0.07 +ultra-gauche ultra_gauche NOM f s 0.00 0.07 0.00 0.07 +ultra-rapide ultra_rapide ADJ s 0.20 0.27 0.20 0.27 +ultra-secret ultra_secret ADJ m s 0.20 0.07 0.20 0.07 +ultra-sensible ultra_sensible ADJ m s 0.01 0.14 0.01 0.14 +ultra-sons ultra_son NOM m p 0.03 0.14 0.03 0.14 +ultra-violet ultra_violet ADJ 0.04 0.07 0.01 0.00 +ultra-violets ultra_violet NOM s 0.04 0.07 0.04 0.07 +élément-clé élément_clé NOM m s 0.09 0.00 0.09 0.00 +éléments-clés éléments_clé NOM m p 0.02 0.00 0.02 0.00 +émetteur-récepteur émetteur_récepteur NOM m s 0.05 0.00 0.05 0.00 +épine-vinette épine_vinette NOM f s 0.00 0.07 0.00 0.07 +épluche-légumes épluche_légumes NOM m 0.01 0.00 0.01 0.00 +urbi et orbi urbi_et_orbi ADV 0.01 0.27 0.01 0.27 +usine-pilote usine_pilote NOM f s 0.00 0.07 0.00 0.07 +état-civil état_civil NOM m s 0.03 0.54 0.03 0.47 +état-major état_major NOM m s 5.24 22.43 5.16 18.31 +états-civils état_civil NOM m p 0.03 0.54 0.00 0.07 +états-majors état_major NOM m p 5.24 22.43 0.09 4.12 +étouffe-chrétien étouffe_chrétien NOM m 0.01 0.00 0.01 0.00 +être-là être_là NOM m 0.14 0.00 0.14 0.00 +va-et-vient va_et_vient NOM m 1.30 10.61 1.30 10.61 +va-tout va_tout NOM m 0.05 0.41 0.05 0.41 +vade retro vade_retro ADV 0.26 0.68 0.26 0.68 +vae soli vae_soli ADV 0.00 0.07 0.00 0.07 +vae victis vae_victis ADV 0.02 0.07 0.02 0.07 +vaisseau-amiral vaisseau_amiral NOM m s 0.05 0.00 0.05 0.00 +valeur-refuge valeur_refuge NOM f s 0.00 0.07 0.00 0.07 +valse-hésitation valse_hésitation NOM f s 0.00 0.27 0.00 0.20 +valses-hésitations valse_hésitation NOM f p 0.00 0.27 0.00 0.07 +vamp-club vamp_club NOM f s 0.01 0.00 0.01 0.00 +vanity-case vanity_case NOM m s 0.11 0.14 0.11 0.14 +vasculo-nerveux vasculo_nerveux NOM m 0.01 0.00 0.01 0.00 +vau-l'eau vau_l_eau NOM m s 0.00 0.14 0.00 0.14 +ventre-saint-gris ventre_saint_gris ONO 0.00 0.07 0.00 0.07 +vert-de-gris vert_de_gris ADJ 0.02 0.81 0.02 0.81 +vert-de-grisé vert_de_grisé ADJ m s 0.00 0.34 0.00 0.07 +vert-de-grisée vert_de_grisé ADJ f s 0.00 0.34 0.00 0.07 +vert-de-grisées vert_de_grisé ADJ f p 0.00 0.34 0.00 0.14 +vert-de-grisés vert_de_grisé ADJ m p 0.00 0.34 0.00 0.07 +vert-galant vert_galant NOM m s 0.00 0.20 0.00 0.20 +vert-jaune vert_jaune ADJ m s 0.02 0.07 0.02 0.07 +vert-jaune vert_jaune NOM m s 0.02 0.07 0.02 0.07 +vesse-de-loup vesse_de_loup NOM f s 0.02 0.20 0.00 0.14 +vesses-de-loup vesse_de_loup NOM f p 0.02 0.20 0.02 0.07 +vibro-masseur vibro_masseur NOM m s 0.08 0.07 0.08 0.07 +vice-amiral vice_amiral NOM m s 0.10 0.61 0.10 0.61 +vice-chancelier vice_chancelier NOM m s 0.07 0.00 0.07 0.00 +vice-consul vice_consul NOM m s 0.18 0.54 0.18 0.54 +vice-ministre vice_ministre NOM s 0.27 0.27 0.27 0.20 +vice-ministres vice_ministre NOM p 0.27 0.27 0.00 0.07 +vice-premier vice_premier NOM m s 0.01 0.00 0.01 0.00 +vice-présidence vice_présidence NOM f s 0.57 0.00 0.57 0.00 +vice-président vice_président NOM m s 8.63 0.61 7.91 0.54 +vice-présidente vice_président NOM f s 8.63 0.61 0.60 0.00 +vice-présidents vice_président NOM m p 8.63 0.61 0.12 0.07 +vice-recteur vice_recteur NOM m s 0.10 0.00 0.10 0.00 +vice-roi vice_roi NOM m s 0.94 0.54 0.84 0.54 +vice-rois vice_roi NOM m p 0.94 0.54 0.10 0.00 +vice-versa vice_versa ADV 0.85 0.27 0.85 0.27 +vide-gousset vide_gousset NOM m s 0.27 0.00 0.27 0.00 +vide-greniers vide_greniers NOM m 0.04 0.00 0.04 0.00 +vide-ordure vide_ordure NOM m s 0.06 0.00 0.06 0.00 +vide-ordures vide_ordures NOM m 0.55 1.22 0.55 1.22 +vide-poche vide_poche NOM m s 0.04 0.14 0.04 0.14 +vide-poches vide_poches NOM m 0.00 0.27 0.00 0.27 +vidéo-clip vidéo_clip NOM m s 0.19 0.27 0.14 0.20 +vidéo-clips vidéo_clip NOM m p 0.19 0.27 0.04 0.07 +vidéo-club vidéo_club NOM f s 0.44 0.00 0.44 0.00 +vidéo-espion vidéo_espion NOM m s 0.00 0.07 0.00 0.07 +vieux-rose vieux_rose ADJ m 0.00 0.20 0.00 0.20 +vif-argent vif_argent NOM m s 0.21 0.20 0.21 0.20 +ville-champignon ville_champignon NOM f s 0.02 0.00 0.02 0.00 +ville-dortoir ville_dortoir NOM f s 0.00 0.07 0.00 0.07 +villes-clés villes_clé NOM f p 0.01 0.00 0.01 0.00 +vingt-cinq vingt_cinq ADJ:num 3.53 28.18 3.53 28.18 +vingt-cinquième vingt_cinquième ADJ 0.01 0.34 0.01 0.34 +vingt-deux vingt_deux ADJ:num 1.25 8.99 1.25 8.99 +vingt-deuxième vingt_deuxième ADJ 0.03 0.27 0.03 0.27 +vingt-et-un vingt_et_un NOM m 0.28 0.74 0.28 0.68 +vingt-et-une vingt_et_un NOM f s 0.28 0.74 0.01 0.07 +vingt-et-unième vingt_et_unième ADJ 0.01 0.07 0.01 0.07 +vingt-huit vingt_huit ADJ:num 0.97 5.34 0.97 5.34 +vingt-huitième vingt_huitième ADJ 0.00 0.74 0.00 0.74 +vingt-neuf vingt_neuf ADJ:num 0.96 2.77 0.96 2.77 +vingt-neuvième vingt_neuvième ADJ 0.01 0.00 0.01 0.00 +vingt-quatre vingt_quatre ADJ:num 2.13 17.36 2.13 17.36 +vingt-quatrième vingt_quatrième ADJ 0.01 0.27 0.01 0.27 +vingt-sept vingt_sept ADJ:num 0.67 4.59 0.67 4.59 +vingt-septième vingt_septième ADJ 0.00 0.54 0.00 0.54 +vingt-six vingt_six ADJ:num 1.09 7.50 1.09 7.50 +vingt-sixième vingt_sixième ADJ 0.01 0.20 0.01 0.20 +vingt-trois vingt_trois ADJ:num 2.08 7.57 2.08 7.57 +vingt-troisième vingt_troisième ADJ 0.01 0.61 0.01 0.61 +vis-à-vis vis_à_vis PRE 0.00 19.39 0.00 19.39 +visite-éclair visite_éclair NOM f s 0.00 0.07 0.00 0.07 +voiture-balai voiture_balai NOM f s 0.23 0.07 0.23 0.00 +voiture-bar voiture_bar NOM f s 0.01 0.00 0.01 0.00 +voiture-lit voiture_lit NOM f s 0.01 0.00 0.01 0.00 +voiture-restaurant voiture_restaurant NOM f s 0.05 0.00 0.05 0.00 +voitures-balais voiture_balai NOM f p 0.23 0.07 0.00 0.07 +voix-off voix_off NOM f 0.04 0.00 0.04 0.00 +vol-au-vent vol_au_vent NOM m 0.02 0.14 0.02 0.14 +volley-ball volley_ball NOM m s 0.25 0.68 0.25 0.68 +volte-face volte_face NOM f 0.26 3.31 0.26 3.31 +vomito negro vomito_negro NOM m s 0.01 0.00 0.01 0.00 +vous-même vous_même PRO:per p 28.20 17.84 28.20 17.84 +vous-mêmes vous_mêmes PRO:per p 4.30 1.55 4.30 1.55 +vox populi vox_populi NOM f 0.05 0.27 0.05 0.27 +voyages-éclair voyage_éclair NOM m p 0.00 0.07 0.00 0.07 +vrai-faux vrai_faux ADJ m s 0.00 0.07 0.00 0.07 +vulgum pecus vulgum_pecus NOM m 0.01 0.07 0.01 0.07 +vélo-cross vélo_cross NOM m 0.00 0.07 0.00 0.07 +vélo-pousse vélo_pousse NOM m s 0.01 0.00 0.01 0.00 +wagon-bar wagon_bar NOM m s 0.03 0.00 0.03 0.00 +wagon-lit wagon_lit NOM m s 1.79 1.89 0.70 0.81 +wagon-lits wagon_lits NOM m 0.00 0.07 0.00 0.07 +wagon-restaurant wagon_restaurant NOM m s 0.35 1.01 0.35 0.81 +wagon-salon wagon_salon NOM m s 0.01 0.54 0.01 0.54 +wagons-citernes wagon_citerne NOM m p 0.00 0.07 0.00 0.07 +wagons-lits wagon_lit NOM m p 1.79 1.89 1.09 1.08 +wagons-restaurants wagon_restaurant NOM m p 0.35 1.01 0.00 0.20 +wait and see wait_and_see NOM m s 0.16 0.00 0.16 0.00 +walkie-talkie walkie_talkie NOM m s 0.08 0.14 0.05 0.14 +walkies-talkies walkie_talkie NOM m p 0.08 0.14 0.03 0.00 +wall street wall_street NOM s 0.03 0.07 0.03 0.07 +water-closet water_closet NOM m s 0.00 0.14 0.00 0.14 +water-polo water_polo NOM m s 0.23 0.00 0.23 0.00 +way of life way_of_life NOM m s 0.02 0.14 0.02 0.14 +week-end week_end NOM m s 44.51 14.32 39.41 12.16 +week-ends week_end NOM m p 44.51 14.32 3.13 2.16 +week end week_end NOM m s 44.51 14.32 1.96 0.00 +western-spaghetti western_spaghetti NOM m 0.00 0.07 0.00 0.07 +whisky-soda whisky_soda NOM m s 0.13 0.07 0.13 0.07 +white-spirit white_spirit NOM m s 0.01 0.00 0.01 0.00 +world music world_music NOM f 0.02 0.00 0.02 0.00 +yacht-club yacht_club NOM m s 0.04 0.07 0.04 0.07 +yeux-radars oeil_radars NOM m p 0.00 0.07 0.00 0.07 +ylang-ylang ylang_ylang NOM m s 0.01 0.00 0.01 0.00 +yo-yo yo_yo NOM m 1.03 0.47 1.03 0.47 +yom kippour yom_kippour NOM m 0.45 0.34 0.45 0.34 +yom kippur yom_kippur NOM m s 0.04 0.00 0.04 0.00 +you-you you_you NOM m s 0.00 0.07 0.00 0.07 +yé-yé yé_yé NOM m 0.00 0.14 0.00 0.14 +zig-zig zig_zig ADV 0.03 0.00 0.03 0.00 +zones-clés zones_clé NOM f p 0.00 0.07 0.00 0.07 diff --git a/dictionnaires/expression_de.txt b/dictionnaires/expression_de.txt new file mode 100644 index 0000000..aa5a47b --- /dev/null +++ b/dictionnaires/expression_de.txt @@ -0,0 +1,8 @@ +"et al." "et_al" "sw" +"hier hinter" "hier_hinter" "sw" +"u. ä." "u_ä" "sw" +"univ.-prof." "univ_prof" "sw" +"darüber hinaus" "darüber_hinaus" "sw" +"so genannte" "so_genannte" "sw" +"so genannten" "so_genannten" "sw" +"so genannte" "so_genannte" "sw" diff --git a/dictionnaires/expression_en.txt b/dictionnaires/expression_en.txt new file mode 100644 index 0000000..d025051 --- /dev/null +++ b/dictionnaires/expression_en.txt @@ -0,0 +1,47 @@ +a's a_s +ain't ain_t +aren't aren_t +c'mon c_mon +c's c_s +can't can_t +couldn't couldn_t +didn't didn_t +doesn't doesn_t +don't don_t +hadn't hadn_t +hasn't hasn_t +haven't haven_t +he's he_s +here's here_s +i'd i_d +i'll i_ll +i'm i_m +i've i_ve +isn't isn_t +it'd it_d +it'll it_ll +it's it_s +let's let_s +shouldn't shouldn_t +t's t_s +that's that_s +there's there_s +they'd they_d +they'll they_ll +they're they_re +they've they_ve +wasn't wasn_t +we'd we_d +we'll we_ll +we're we_re +we've we_ve +weren't weren_t +what's what_s +where's where_s +who's who_s +won't won_t +wouldn't wouldn_t +you'd you_d +you'll you_ll +you're you_re +you've you_ve \ No newline at end of file diff --git a/dictionnaires/expression_fr.txt b/dictionnaires/expression_fr.txt new file mode 100644 index 0000000..ca3ce2d --- /dev/null +++ b/dictionnaires/expression_fr.txt @@ -0,0 +1,4596 @@ +a capella a_capella ADV 0.04 0.07 0.04 0.07 +a cappella a_cappella ADV 0.04 0.07 0.04 0.07 +a contrario a_contrario ADV 0 0.27 0 0.27 +a fortiori a_fortiori ADV 0.04 0.88 0.04 0.88 +a giorno a_giorno ADV 0 0.27 0 0.27 +a jeun à_jeun ADV 1.45 3.85 0.18 0 +a l'instar a_l_instar PRE 0.26 0 0.26 0 +a posteriori a_posteriori ADV 0.05 0.2 0.01 0.14 +ab absurdo ab_absurdo ADV 0 0.07 0 0.07 +ab initio ab_initio ADV 0.01 0.07 0.01 0.07 +ab ovo ab_ovo ADV 0 0.27 0 0.27 +abaisse-langue abaisse_langue NOM m 0.04 0.14 0.04 0.14 +abat-jour abat_jour NOM m 0.51 8.24 0.51 8.24 +abat-son abat_son NOM m 0 0.27 0 0.27 +abri-refuge abri_refuge NOM m s 0 0.07 0 0.07 +accroche-coeur accroche_coeur NOM m s 0 0.74 0 0.34 +accroche-coeurs accroche_coeur NOM m p 0 0.74 0 0.41 +acid jazz acid_jazz NOM m s 0.03 0 0.03 0 +acqua-toffana acqua_toffana NOM f s 0 0.07 0 0.07 +action painting action_painting NOM f s 0 0.07 0 0.07 +ad hoc ad_hoc ADJ 0.11 0.81 0.11 0.81 +ad infinitum ad_infinitum ADV 0.05 0 0.05 0 +ad libitum ad_libitum ADV 0 0.14 0 0.14 +ad limina ad_limina ADV 0 0.07 0 0.07 +ad majorem dei gloriam ad_majorem_dei_gloriam ADV 0 0.14 0 0.14 +ad nutum ad_nutum ADV 0 0.07 0 0.07 +ad patres ad_patres ADV 0.02 0.27 0.02 0.27 +ad vitam aeternam ad_vitam_aeternam ADV 0 0.2 0 0.2 +adjudant-chef adjudant_chef NOM m s 2.57 2.7 2.57 2.57 +adjudant-major adjudant_major NOM m s 0.05 0 0.05 0 +adjudants-chefs adjudant_chef NOM m p 2.57 2.7 0 0.14 +afin d afin_d PRE 0.04 0.07 0.04 0.07 +afin de afin_de PRE 15.64 43.18 15.64 43.18 +afin qu afin_qu CON 0.05 0 0.05 0 +afin que afin_que CON 9.63 14.93 9.63 14.93 +afro-américain afro_américain NOM m s 0.95 0 0.48 0 +afro-américaine afro_américain ADJ f s 0.67 0 0.23 0 +afro-américains afro_américain NOM m p 0.95 0 0.39 0 +afro-asiatique afro_asiatique ADJ f s 0.01 0 0.01 0 +afro-brésilienne afro_brésilien ADJ f s 0.01 0 0.01 0 +afro-cubain afro_cubain ADJ m s 0.03 0.07 0.01 0 +afro-cubaine afro_cubain ADJ f s 0.03 0.07 0.02 0 +afro-cubains afro_cubain ADJ m p 0.03 0.07 0 0.07 +after shave after_shave NOM m 0.51 0.68 0.03 0.07 +after-shave after_shave NOM m 0.51 0.68 0.47 0.61 +agar-agar agar_agar NOM m s 0 0.07 0 0.07 +agit-prop agit_prop NOM f 0.1 0 0.1 0 +agnus dei agnus_dei NOM m 0.47 0.14 0.47 0.14 +agnus-dei agnus_dei NOM m 0 0.07 0 0.07 +agro-alimentaire agro_alimentaire ADJ f s 0.15 0 0.15 0 +aide-bourreau aide_bourreau NOM s 0 0.14 0 0.14 +aide-comptable aide_comptable NOM m s 0.04 0.07 0.04 0.07 +aide-cuisinier aide_cuisinier NOM m s 0.02 0.14 0.02 0.14 +aide-infirmier aide_infirmier NOM s 0.04 0 0.04 0 +aide-jardinier aide_jardinier NOM m s 0.01 0.07 0.01 0.07 +aide-major aide_major NOM m 0 0.14 0 0.14 +aide-mémoire aide_mémoire NOM m 0.04 0.41 0.04 0.41 +aide-ménagère aide_ménagère NOM f s 0 0.27 0 0.27 +aide-pharmacien aide_pharmacien NOM s 0 0.07 0 0.07 +aide-soignant aide_soignant NOM m s 0.4 0.27 0.2 0 +aide-soignante aide_soignant NOM f s 0.4 0.27 0.12 0.14 +aides-soignantes aide_soignant NOM f p 0.4 0.27 0 0.14 +aides-soignants aide_soignant NOM m p 0.4 0.27 0.08 0 +aigre-douce aigre_doux ADJ f s 0.3 1.28 0.08 0.54 +aigre-doux aigre_doux ADJ m 0.3 1.28 0.2 0.34 +aigres-douces aigre_doux ADJ f p 0.3 1.28 0.01 0.2 +aigres-doux aigre_doux ADJ m p 0.3 1.28 0.01 0.2 +aigue-marine aigue_marine NOM f s 0 0.81 0 0.47 +aigues-marines aigue_marine NOM f p 0 0.81 0 0.34 +air bag air_bag NOM m s 0.02 0 0.02 0 +air-air air_air ADJ m 0.09 0 0.09 0 +air-mer air_mer ADJ 0.02 0 0.02 0 +air-sol air_sol ADJ m p 0.13 0 0.13 0 +al dente al_dente ADV 0.4 0.14 0.4 0.14 +alea jacta est alea_jacta_est ADV 0.3 0.07 0.3 0.07 +all right all_right ADV 1.53 0.2 1.53 0.2 +aller-retour aller_retour NOM m s 2.33 2.43 1.83 2.36 +allers-retours aller_retour NOM m p 2.33 2.43 0.5 0.07 +allume-cigare allume_cigare NOM m s 0.19 0.14 0.19 0.14 +allume-cigares allume_cigares NOM m 0.14 0.14 0.14 0.14 +allume-feu allume_feu NOM m 0.04 0.27 0.04 0.27 +allume-gaz allume_gaz NOM m 0.2 0.14 0.2 0.14 +alter ego alter_ego NOM m 0.3 0.54 0.3 0.54 +am stram gram am_stram_gram ONO 0.08 0.14 0.08 0.14 +amour-goût amour_goût NOM m s 0 0.07 0 0.07 +amour-passion amour_passion NOM m s 0 0.41 0 0.41 +amour-propre amour_propre NOM m s 2.54 6.89 2.54 6.76 +amours-propres amour_propre NOM m p 2.54 6.89 0 0.14 +ampli-tuner ampli_tuner NOM m s 0.01 0 0.01 0 +amuse-bouche amuse_bouche NOM m 0.05 0 0.03 0 +amuse-bouches amuse_bouche NOM m p 0.05 0 0.02 0 +amuse-gueule amuse_gueule NOM m 1.23 0.81 0.53 0.81 +amuse-gueules amuse_gueule NOM m p 1.23 0.81 0.7 0 +américano-britannique américano_britannique ADJ s 0.01 0 0.01 0 +américano-japonaise américano_japonais ADJ f s 0.01 0 0.01 0 +américano-russe américano_russe ADJ f s 0.01 0 0.01 0 +américano-soviétique américano_soviétique ADJ m s 0.03 0 0.03 0 +américano-suédoise américano_suédois ADJ f s 0.01 0 0.01 0 +anarcho-syndicalisme anarcho_syndicalisme NOM m s 0 0.07 0 0.07 +anarcho-syndicaliste anarcho_syndicaliste ADJ s 0 0.14 0 0.07 +anarcho-syndicalistes anarcho_syndicaliste ADJ m p 0 0.14 0 0.07 +anch'io son pittore anch_io_son_pittore ADV 0 0.07 0 0.07 +anglo-albanais anglo_albanais ADJ m s 0 0.07 0 0.07 +anglo-allemand anglo_allemand ADJ m s 0.01 0 0.01 0 +anglo-américain anglo_américain ADJ m s 0.05 0.2 0.01 0.07 +anglo-américaine anglo_américain ADJ f s 0.05 0.2 0.02 0.07 +anglo-américaines anglo_américain ADJ f p 0.05 0.2 0 0.07 +anglo-américains anglo_américain ADJ m p 0.05 0.2 0.02 0 +anglo-arabe anglo_arabe ADJ s 0 0.27 0 0.14 +anglo-arabes anglo_arabe ADJ m p 0 0.27 0 0.14 +anglo-chinois anglo_chinois ADJ m s 0.01 0 0.01 0 +anglo-français anglo_français ADJ m s 0.02 0.14 0.01 0.07 +anglo-française anglo_français ADJ f s 0.02 0.14 0.01 0.07 +anglo-hellénique anglo_hellénique ADJ f s 0 0.07 0 0.07 +anglo-irlandais anglo_irlandais ADJ m s 0 0.27 0 0.27 +anglo-normand anglo_normand ADJ m s 0.04 0.34 0 0.14 +anglo-normande anglo_normand ADJ f s 0.04 0.34 0 0.2 +anglo-normandes anglo_normand ADJ f p 0.04 0.34 0.04 0 +anglo-russe anglo_russe ADJ m s 0.02 0 0.01 0 +anglo-russes anglo_russe ADJ f p 0.02 0 0.01 0 +anglo-saxon anglo_saxon ADJ m s 0.48 4.12 0.23 1.08 +anglo-saxonne anglo_saxon ADJ f s 0.48 4.12 0.04 0.74 +anglo-saxonnes anglo_saxon ADJ f p 0.48 4.12 0.18 0.88 +anglo-saxons anglo_saxon ADJ m p 0.48 4.12 0.03 1.42 +anglo-soviétique anglo_soviétique ADJ s 0.02 0.07 0.02 0.07 +anglo-égyptien anglo_égyptien ADJ m s 0.01 0.41 0 0.2 +anglo-égyptienne anglo_égyptien ADJ f s 0.01 0.41 0.01 0.2 +anglo-éthiopien anglo_éthiopien ADJ m s 0 0.07 0 0.07 +animal-roi animal_roi NOM m s 0 0.07 0 0.07 +animaux-espions animaux_espions NOM m p 0.01 0 0.01 0 +année-lumière année_lumière NOM f s 1.16 1.01 0.03 0.07 +années-homme année_homme NOM f p 0.01 0 0.01 0 +années-lumière année_lumière NOM f p 1.16 1.01 1.13 0.95 +anti-acné anti_acné NOM f s 0.02 0 0.02 0 +anti-agression anti_agression NOM f s 0.03 0.07 0.03 0.07 +anti-allergie anti_allergie NOM f s 0.01 0 0.01 0 +anti-anatomique anti_anatomique ADJ s 0.01 0 0.01 0 +anti-apartheid anti_apartheid NOM m s 0 0.07 0 0.07 +anti-aphrodisiaque anti_aphrodisiaque ADJ f s 0 0.07 0 0.07 +anti-asthmatique anti_asthmatique NOM s 0.01 0 0.01 0 +anti-atomique anti_atomique ADJ m s 0.06 0.07 0.05 0 +anti-atomiques anti_atomique ADJ m p 0.06 0.07 0.01 0.07 +anti-avortement anti_avortement NOM m s 0.12 0 0.12 0 +anti-aérien anti_aérien ADJ m s 0.41 0.27 0.2 0.07 +anti-aérienne anti_aérien ADJ f s 0.41 0.27 0.17 0.07 +anti-aériens anti_aérien ADJ m p 0.41 0.27 0.04 0.14 +anti-beauf anti_beauf NOM m s 0.01 0 0.01 0 +anti-bison anti_bison NOM m s 0 0.07 0 0.07 +anti-blindage anti_blindage NOM m s 0.04 0 0.04 0 +anti-blouson anti_blouson NOM m s 0 0.07 0 0.07 +anti-bombe anti_bombe NOM f s 0.1 0.07 0.09 0 +anti-bombes anti_bombe NOM f p 0.1 0.07 0.01 0.07 +anti-bosons anti_boson NOM m p 0.04 0 0.04 0 +anti-braquage anti_braquage NOM m s 0.01 0 0.01 0 +anti-brouillard anti_brouillard ADJ s 0.12 0 0.12 0 +anti-bruit anti_bruit NOM m s 0.16 0 0.16 0 +anti-calciques anti_calcique ADJ f p 0.01 0 0.01 0 +anti-cancer anti_cancer NOM m s 0.04 0 0.04 0 +anti-capitaliste anti_capitaliste ADJ m s 0.03 0 0.03 0 +anti-castriste anti_castriste ADJ s 0.02 0 0.02 0 +anti-castristes anti_castriste NOM p 0.01 0 0.01 0 +anti-cellulite anti_cellulite NOM f s 0.01 0 0.01 0 +anti-chambre anti_chambre NOM f s 0 0.14 0 0.07 +anti-chambres anti_chambre NOM f p 0 0.14 0 0.07 +anti-char anti_char NOM m s 0.12 0.2 0 0.14 +anti-chars anti_char NOM m p 0.12 0.2 0.12 0.07 +anti-chiens anti_chien NOM m p 0 0.07 0 0.07 +anti-cité anti_cité NOM f s 0 0.07 0 0.07 +anti-civilisation anti_civilisation NOM f s 0 0.07 0 0.07 +anti-club anti_club NOM m s 0.02 0 0.02 0 +anti-cocos anti_coco NOM p 0.01 0 0.01 0 +anti-colère anti_colère NOM f s 0.01 0 0.01 0 +anti-communisme anti_communisme NOM m s 0 0.14 0 0.14 +anti-communiste anti_communiste ADJ s 0.03 0.07 0.03 0.07 +anti-conformisme anti_conformisme NOM m s 0.01 0.14 0.01 0.14 +anti-conformiste anti_conformiste NOM s 0.01 0 0.01 0 +anti-conglutinatif anti_conglutinatif ADJ m s 0 0.07 0 0.07 +anti-corps anti_corps NOM m 0.08 0 0.08 0 +anti-corruption anti_corruption NOM f s 0.04 0 0.04 0 +anti-crash anti_crash NOM m s 0.01 0 0.01 0 +anti-crime anti_crime NOM m s 0.03 0 0.03 0 +anti-criminalité anti_criminalité NOM f s 0.01 0 0.01 0 +anti-célibataires anti_célibataire ADJ f p 0.01 0 0.01 0 +anti-dauphins anti_dauphin NOM m p 0.01 0 0.01 0 +anti-desperado anti_desperado NOM m s 0.01 0 0.01 0 +anti-dieu anti_dieu NOM m s 0.03 0 0.03 0 +anti-discrimination anti_discrimination NOM f s 0.02 0 0.02 0 +anti-dopage anti_dopage NOM m s 0.06 0 0.06 0 +anti-douleur anti_douleur NOM f s 0.46 0 0.3 0 +anti-douleurs anti_douleur NOM f p 0.46 0 0.15 0 +anti-drague anti_drague NOM f s 0.01 0 0.01 0 +anti-dramatique anti_dramatique ADJ s 0 0.07 0 0.07 +anti-drogue anti_drogue NOM f s 0.42 0 0.35 0 +anti-drogues anti_drogue NOM f p 0.42 0 0.07 0 +anti-débauche anti_débauche NOM f s 0 0.07 0 0.07 +anti-démocratique anti_démocratique ADJ f s 0.14 0.07 0.14 0.07 +anti-démocratiques anti_démocratique ADJ f p 0.14 0.07 0.01 0 +anti-démon anti_démon NOM m s 0.04 0 0.04 0 +anti-espionnes anti_espionne NOM f p 0.01 0 0.01 0 +anti-establishment anti_establishment NOM m s 0.02 0 0.02 0 +anti-existence anti_existence NOM f s 0 0.07 0 0.07 +anti-explosion anti_explosion NOM f s 0.04 0 0.04 0 +anti-fantômes anti_fantôme NOM m p 0.02 0 0.02 0 +anti-fasciste anti_fasciste ADJ f s 0.02 0 0.02 0 +anti-femme anti_femme NOM f s 0.01 0 0.01 0 +anti-flingage anti_flingage NOM m s 0 0.07 0 0.07 +anti-flip anti_flip NOM m s 0 0.07 0 0.07 +anti-frigo anti_frigo NOM m s 0 0.07 0 0.07 +anti-fusionnel anti_fusionnel ADJ m s 0.01 0 0.01 0 +anti-fusées anti_fusée NOM f p 0 0.2 0 0.2 +anti-féministe anti_féministe NOM s 0.03 0.07 0.03 0.07 +anti-g anti_g ADJ f p 0.01 0 0.01 0 +anti-gang anti_gang NOM m s 0.33 0 0.33 0 +anti-gel anti_gel NOM m s 0.05 0 0.05 0 +anti-gerce anti_gerce NOM f s 0.01 0 0.01 0 +anti-gouvernement anti_gouvernement NOM m s 0.1 0 0.1 0 +anti-graffiti anti_graffiti NOM m 0.01 0 0.01 0 +anti-gravité anti_gravité NOM f s 0.06 0 0.06 0 +anti-grimaces anti_grimace NOM f p 0.01 0 0.01 0 +anti-gros anti_gros ADJ m 0.01 0 0.01 0 +anti-hannetons anti_hanneton NOM m p 0 0.07 0 0.07 +anti-hypertenseur anti_hypertenseur ADJ m s 0.01 0 0.01 0 +anti-immigration anti_immigration NOM f s 0.02 0 0.02 0 +anti-immigrés anti_immigré ADJ p 0 0.07 0 0.07 +anti-impérialiste anti_impérialiste ADJ s 0.11 0.07 0.11 0.07 +anti-incendie anti_incendie NOM m s 0.16 0 0.16 0 +anti-inertie anti_inertie NOM f s 0.01 0 0.01 0 +anti-infectieux anti_infectieux ADJ m p 0.01 0 0.01 0 +anti-inflammatoire anti_inflammatoire NOM m s 0.07 0.07 0.07 0.07 +anti-insecte anti_insecte NOM m s 0.03 0.07 0.01 0 +anti-insectes anti_insecte NOM m p 0.03 0.07 0.02 0.07 +anti-instinct anti_instinct NOM m s 0 0.07 0 0.07 +anti-insurrectionnel anti_insurrectionnel ADJ m s 0.01 0 0.01 0 +anti-intimité anti_intimité NOM f s 0.04 0 0.04 0 +anti-japon anti_japon NOM m s 0 0.07 0 0.07 +anti-jeunes anti_jeunes ADJ m s 0 0.07 0 0.07 +anti-mafia anti_mafia NOM f s 0.01 0.07 0.01 0.07 +anti-maison anti_maison NOM f s 0 0.14 0 0.14 +anti-manipulation anti_manipulation NOM f s 0.01 0 0.01 0 +anti-manoir anti_manoir NOM m s 0 0.07 0 0.07 +anti-mariage anti_mariage NOM m s 0.03 0 0.03 0 +anti-matière anti_matière NOM f s 0.09 0 0.08 0 +anti-matières anti_matière NOM f p 0.09 0 0.01 0 +anti-mecs anti_mec NOM m p 0.02 0 0.02 0 +anti-militariste anti_militariste NOM s 0.01 0 0.01 0 +anti-missiles anti_missile NOM m p 0.03 0 0.03 0 +anti-mite anti_mite NOM f s 0.1 0.14 0.03 0.07 +anti-mites anti_mite NOM f p 0.1 0.14 0.08 0.07 +anti-monde anti_monde NOM m s 0 0.07 0 0.07 +anti-monstres anti_monstre ADJ f p 0.01 0 0.01 0 +anti-moustique anti_moustique NOM m s 0.58 0.07 0.41 0 +anti-moustiques anti_moustique NOM m p 0.58 0.07 0.17 0.07 +anti-médicaments anti_médicament NOM m p 0.01 0 0.01 0 +anti-métaphysique anti_métaphysique ADJ m s 0 0.07 0 0.07 +anti-météorites anti_météorite NOM f p 0.2 0 0.2 0 +anti-nausée anti_nausée NOM f s 0.01 0 0.01 0 +anti-navire anti_navire NOM m s 0.01 0 0.01 0 +anti-nucléaire anti_nucléaire ADJ m s 0.06 0 0.05 0 +anti-nucléaires anti_nucléaire ADJ p 0.06 0 0.01 0 +anti-nucléaires anti_nucléaire NOM m p 0.01 0 0.01 0 +anti-odeur anti_odeur NOM f s 0.02 0.14 0.01 0.07 +anti-odeurs anti_odeur NOM f p 0.02 0.14 0.01 0.07 +anti-odorants anti_odorant ADJ m p 0 0.07 0 0.07 +anti-origine anti_origine NOM f s 0 0.07 0 0.07 +anti-panache anti_panache NOM m s 0 0.07 0 0.07 +anti-particule anti_particule NOM f s 0.01 0 0.01 0 +anti-pasteur anti_pasteur NOM m s 0 0.07 0 0.07 +anti-patriote anti_patriote NOM s 0.01 0 0.01 0 +anti-patriotique anti_patriotique ADJ f s 0.06 0 0.06 0 +anti-pelliculaire anti_pelliculaire ADJ m s 0.13 0.07 0.13 0.07 +anti-piratage anti_piratage NOM m s 0.01 0 0.01 0 +anti-pirate anti_pirate ADJ s 0.01 0 0.01 0 +anti-poison anti_poison NOM m s 0.04 0.14 0.04 0.14 +anti-poisse anti_poisse NOM f s 0.05 0.07 0.05 0.07 +anti-pollution anti_pollution NOM f s 0.04 0 0.04 0 +anti-poux anti_poux NOM m p 0.04 0 0.04 0 +anti-progressistes anti_progressiste NOM p 0 0.07 0 0.07 +anti-psychotique anti_psychotique ADJ s 0.01 0 0.01 0 +anti-pub anti_pub NOM s 0 0.07 0 0.07 +anti-puces anti_puce NOM f p 0.14 0 0.14 0 +anti-pédérastiques anti_pédérastique ADJ p 0 0.07 0 0.07 +anti-racket anti_racket NOM m s 0.06 0 0.06 0 +anti-radiations anti_radiation NOM f p 0.08 0 0.08 0 +anti-rapt anti_rapt NOM m s 0 0.07 0 0.07 +anti-reflets anti_reflet NOM m p 0 0.07 0 0.07 +anti-rejet anti_rejet NOM m s 0.2 0 0.2 0 +anti-religion anti_religion NOM f s 0.01 0 0.01 0 +anti-rhume anti_rhume NOM m s 0.02 0 0.02 0 +anti-rides anti_ride NOM f p 0.06 0 0.06 0 +anti-romain anti_romain NOM m s 0 0.07 0 0.07 +anti-romantique anti_romantique ADJ s 0.01 0 0.01 0 +anti-rouille anti_rouille NOM f s 0.01 0 0.01 0 +anti-russe anti_russe ADJ m s 0.11 0 0.11 0 +anti-sida anti_sida NOM m s 0.02 0 0.02 0 +anti-socialistes anti_socialiste ADJ p 0.01 0 0.01 0 +anti-sociaux anti_sociaux ADJ m p 0.04 0 0.04 0 +anti-société anti_société NOM f s 0 0.07 0 0.07 +anti-somnolence anti_somnolence NOM f s 0.01 0 0.01 0 +anti-souffle anti_souffle NOM m s 0.03 0 0.03 0 +anti-sous-marin anti_sous_marin ADJ m s 0.02 0 0.02 0 +anti-soviétique anti_soviétique ADJ f s 0 0.07 0 0.07 +anti-stress anti_stress NOM m 0.35 0 0.35 0 +anti-syndical anti_syndical ADJ m s 0.01 0 0.01 0 +anti-sèche anti_sèche ADJ f s 0.01 0.07 0.01 0 +anti-sèches anti_sèche ADJ f p 0.01 0.07 0 0.07 +anti-sémite anti_sémite ADJ s 0.04 0 0.02 0 +anti-sémites anti_sémite ADJ f p 0.04 0 0.02 0 +anti-sémitisme anti_sémitisme NOM m s 0.08 0 0.08 0 +anti-tabac anti_tabac ADJ s 0.17 0 0.17 0 +anti-taches anti_tache NOM f p 0.15 0 0.15 0 +anti-tank anti_tank NOM m s 0.03 0 0.03 0 +anti-tapisserie anti_tapisserie NOM f s 0 0.07 0 0.07 +anti-temps anti_temps NOM m 0 0.27 0 0.27 +anti-tension anti_tension NOM f s 0.01 0 0.01 0 +anti-terrorisme anti_terrorisme NOM m s 0.53 0 0.53 0 +anti-terroriste anti_terroriste ADJ s 0.26 0 0.26 0 +anti-tornades anti_tornade NOM f p 0.01 0 0.01 0 +anti-toux anti_toux NOM f 0.01 0 0.01 0 +anti-truie anti_truie NOM f s 0.01 0 0.01 0 +anti-trusts anti_trust NOM m p 0.02 0 0.02 0 +anti-venin anti_venin NOM m s 0.18 0 0.18 0 +anti-vieillissement anti_vieillissement NOM m s 0.04 0 0.04 0 +anti-viol anti_viol NOM m s 0.09 0 0.09 0 +anti-violence anti_violence NOM f s 0.01 0 0.01 0 +anti-viral anti_viral ADJ m s 0.13 0 0.13 0 +anti-virus anti_virus NOM m 0.09 0 0.09 0 +anti-vol anti_vol NOM m s 0.36 0.27 0.35 0.27 +anti-vols anti_vol NOM m p 0.36 0.27 0.01 0 +anti-âge anti_âge ADJ 0.04 0.74 0.04 0.74 +anti-émeute anti_émeute ADJ s 0.15 0 0.1 0 +anti-émeutes anti_émeute ADJ p 0.15 0 0.05 0 +anti-émotionnelle anti_émotionnelle ADJ f s 0 0.07 0 0.07 +anti-évasion anti_évasion NOM f s 0.01 0 0.01 0 +appareil-photo appareil_photo NOM m s 0.32 0.27 0.32 0.27 +appartement-roi appartement_roi NOM m s 0 0.07 0 0.07 +apprenti-pilote apprenti_pilote NOM m s 0.02 0 0.02 0 +apprenti-sorcier apprenti_sorcier NOM m s 0 0.14 0 0.14 +appui-main appui_main NOM m s 0 0.14 0 0.14 +appui-tête appui_tête NOM m s 0.01 0 0.01 0 +appuie-tête appuie_tête NOM m 0.05 0.14 0.05 0.14 +après-coup après_coup NOM m s 0.02 0 0.02 0 +après-demain après_demain ADV 11.77 6.76 11.77 6.76 +après-déjeuner après_déjeuner VER 0 0.14 0 0.14 inf; +après-dîner après_dîner NOM m s 0.02 0.74 0.02 0.61 +après-dîners après_dîner NOM m p 0.02 0.74 0 0.14 +après-guerre après_guerre NOM s 0.73 3.24 0.73 3.24 +après-mort après_mort NOM f s 0 0.07 0 0.07 +après-rasage après_rasage NOM m s 0.45 0 0.45 0 +après-repas après_repas NOM m 0.01 0.07 0.01 0.07 +après-shampoing après_shampoing NOM m s 0.04 0 0.04 0 +après-shampooing après_shampooing NOM m s 0.04 0.07 0.04 0.07 +après-ski après_ski NOM m s 0.06 0.2 0.06 0.2 +après-vente après_vente ADJ s 0.05 0 0.05 0 +araignée-crabe araignée_crabe NOM f s 0 0.07 0 0.07 +arbres-refuges arbres_refuge NOM m p 0 0.07 0 0.07 +arc-bouta arc_bouter VER 0.17 5 0 0.47 ind:pas:3s; +arc-boutais arc_bouter VER 0.17 5 0.04 0.27 ind:imp:1s;ind:imp:2s; +arc-boutait arc_bouter VER 0.17 5 0 0.34 ind:imp:3s; +arc-boutant arc_boutant NOM m s 0.14 0.54 0.14 0.2 +arc-boutants arc_boutant NOM m p 0.14 0.54 0.01 0 +arc-boute arc_bouter VER 0.17 5 0.1 0.88 ind:pre:1s;ind:pre:3s; +arc-boutement arc_boutement NOM m s 0 0.07 0 0.07 +arc-boutent arc_bouter VER 0.17 5 0.01 0.2 ind:pre:3p; +arc-bouter arc_bouter VER 0.17 5 0 0.07 inf; +arc-boutera arc_bouter VER 0.17 5 0.01 0 ind:fut:3s; +arc-boutèrent arc_bouter VER 0.17 5 0 0.07 ind:pas:3p; +arc-bouté arc_bouter VER m s 0.17 5 0.01 1.15 par:pas; +arc-boutée arc_bouter VER f s 0.17 5 0 0.41 par:pas; +arc-boutées arc_bouter VER f p 0.17 5 0 0.27 par:pas; +arc-boutés arc_bouter VER m p 0.17 5 0 0.27 par:pas; +arc-en-ciel arc_en_ciel NOM m s 3 4.46 2.56 3.92 +archi-blet archi_blet ADJ m s 0 0.07 0 0.07 +archi-chiants archi_chiant ADJ m p 0.01 0 0.01 0 +archi-connu archi_connu ADJ m s 0.01 0.07 0.01 0 +archi-connus archi_connu ADJ m p 0.01 0.07 0 0.07 +archi-duchesse archiduc NOM f s 0.48 4.46 0.01 0 +archi-dégueu archi_dégueu ADJ s 0 0.07 0 0.07 +archi-faux archi_faux ADJ m 0.05 0 0.05 0 +archi-libre archi_libre ADJ f s 0 0.07 0 0.07 +archi-mortels archi_mortels NOM m 0.01 0 0.01 0 +archi-morts archi_mort NOM f p 0 0.07 0 0.07 +archi-méfiance archi_méfiance NOM f s 0 0.07 0 0.07 +archi-nul archi_nul NOM m s 0.01 0 0.01 0 +archi-nuls archi_nuls NOM m 0.23 0 0.23 0 +archi-plein archi_plein NOM m s 0 0.07 0 0.07 +archi-prouvé archi_prouvé ADJ m s 0 0.07 0 0.07 +archi-prudent archi_prudent NOM m s 0 0.07 0 0.07 +archi-ringard archi_ringard NOM m s 0 0.07 0 0.07 +archi-sophistiquée archi_sophistiqué ADJ f s 0.01 0 0.01 0 +archi-sèches archi_sèche ADJ f p 0.01 0 0.01 0 +archi-usé archi_usé ADJ m s 0.01 0 0.01 0 +archi-vieux archi_vieux ADJ m 0 0.07 0 0.07 +archiviste-paléographe archiviste_paléographe NOM s 0 0.14 0 0.07 +archivistes-paléographes archiviste_paléographe NOM p 0 0.14 0 0.07 +arcs-boutants arc_boutant NOM m p 0.14 0.54 0 0.34 +arcs-en-ciel arc_en_ciel NOM m p 3 4.46 0.44 0.54 +arme-miracle arme_miracle NOM f s 0.1 0 0.1 0 +arrache-clou arrache_clou NOM m s 0 0.07 0 0.07 +arrière-automne arrière_automne NOM m 0 0.14 0 0.14 +arrière-ban arrière_ban NOM m s 0 0.2 0 0.2 +arrière-boutique arrière_boutique NOM f s 0.31 6.35 0.31 5.95 +arrière-boutiques arrière_boutique NOM f p 0.31 6.35 0 0.41 +arrière-cabinets arrière_cabinet NOM m p 0 0.07 0 0.07 +arrière-cour arrière_cour NOM f s 0.45 1.35 0.41 1.01 +arrière-cours arrière_cour NOM f p 0.45 1.35 0.03 0.34 +arrière-cousin arrière_cousin NOM m s 0.12 0 0.12 0 +arrière-cuisine arrière_cuisine NOM f s 0.02 0.14 0.02 0.07 +arrière-cuisines arrière_cuisine NOM f p 0.02 0.14 0 0.07 +arrière-fond arrière_fond NOM m s 0.04 0.95 0.04 0.95 +arrière-garde arrière_garde NOM f s 0.47 2.03 0.47 1.69 +arrière-gardes arrière_garde NOM f p 0.47 2.03 0 0.34 +arrière-gorge arrière_gorge NOM f s 0 0.27 0 0.27 +arrière-goût arrière_goût NOM m s 0.55 1.28 0.55 1.22 +arrière-goûts arrière_goût NOM m p 0.55 1.28 0 0.07 +arrière-grand-mère arrière_grand_mère NOM f s 0.85 2.57 0.83 2.3 +arrière-grand-mères arrière_grand_mère NOM f p 0.85 2.57 0 0.2 +arrière-grand-oncle arrière_grand_oncle NOM m s 0.04 0.41 0.04 0.41 +arrière-grand-père arrière_grand_père NOM m s 1.48 4.12 1.48 3.78 +arrière-grand-tante arrière_grand_tante NOM f s 0 0.2 0 0.14 +arrière-grand-tantes arrière_grand_tante NOM f p 0 0.2 0 0.07 +arrière-grands-mères arrière_grand_mère NOM f p 0.85 2.57 0.02 0.07 +arrière-grands-parents arrière_grand_parent NOM m p 0.16 1.08 0.16 1.08 +arrière-grands-pères arrière_grand_père NOM m p 1.48 4.12 0 0.34 +arrière-loge arrière_loge NOM m s 0 0.07 0 0.07 +arrière-magasin arrière_magasin NOM m 0 0.07 0 0.07 +arrière-main arrière_main NOM s 0 0.07 0 0.07 +arrière-monde arrière_monde NOM m s 0 0.14 0 0.14 +arrière-neveux arrière_neveux NOM m p 0 0.07 0 0.07 +arrière-pays arrière_pays NOM m 0.37 1.15 0.37 1.15 +arrière-pensée arrière_pensée NOM f s 0.91 5.95 0.79 3.58 +arrière-pensées arrière_pensée NOM f p 0.91 5.95 0.13 2.36 +arrière-petit-fils arrière_petit_fils NOM m 0.14 0.61 0.14 0.61 +arrière-petit-neveu arrière_petit_neveu NOM m s 0.01 0.27 0.01 0.27 +arrière-petite-fille arrière_petite_fille NOM f s 0.13 0.81 0.13 0.47 +arrière-petite-nièce arrière_petite_nièce NOM f s 0 0.14 0 0.07 +arrière-petites-filles arrière_petite_fille NOM f p 0.13 0.81 0 0.34 +arrière-petites-nièces arrière_petite_nièce NOM f p 0 0.14 0 0.07 +arrière-petits-enfants arrière_petit_enfant NOM m p 0.36 0.27 0.36 0.27 +arrière-petits-fils arrière_petits_fils NOM m p 0 0.41 0 0.41 +arrière-petits-neveux arrière_petits_neveux NOM m p 0 0.07 0 0.07 +arrière-plan arrière_plan NOM m s 0.94 2.7 0.91 2.03 +arrière-plans arrière_plan NOM m p 0.94 2.7 0.02 0.68 +arrière-saison arrière_saison NOM f s 0 1.22 0 1.22 +arrière-salle arrière_salle NOM f s 0.28 2.36 0.24 2.16 +arrière-salles arrière_salle NOM f p 0.28 2.36 0.04 0.2 +arrière-train arrière_train NOM m s 0.66 1.69 0.64 1.62 +arrière-trains arrière_train NOM m p 0.66 1.69 0.03 0.07 +arrêt-buffet arrêt_buffet NOM m s 0.01 0.07 0 0.07 +arrête-boeuf arrête_boeuf NOM m s 0 0.07 0 0.07 +arrêts-buffet arrêt_buffet NOM m p 0.01 0.07 0.01 0 +article-choc article_choc NOM m s 0 0.07 0 0.07 +artiste-peintre artiste_peintre NOM s 0.02 0.14 0.02 0.14 +as-rois as_rois NOM m 0.01 0 0.01 0 +aspirateurs-traîneaux aspirateurs_traîneaux NOM m p 0 0.07 0 0.07 +assa-foetida assa_foetida NOM f s 0.27 0 0.27 0 +assurance-accidents assurance_accidents NOM f s 0.1 0 0.1 0 +assurance-chômage assurance_chômage NOM f s 0.01 0 0.01 0 +assurance-maladie assurance_maladie NOM f s 0.04 0.07 0.04 0.07 +assurance-vie assurance_vie NOM f s 1.32 0.27 1.26 0.27 +assurances-vie assurance_vie NOM f p 1.32 0.27 0.06 0 +assureur-conseil assureur_conseil NOM m s 0 0.07 0 0.07 +attaché-case attaché_case NOM m s 0.01 0.54 0 0.54 +attachés-cases attaché_case NOM m p 0.01 0.54 0.01 0 +attraction-vedette attraction_vedette NOM f s 0.01 0 0.01 0 +attrape-couillon attrape_couillon NOM m s 0.04 0.07 0.03 0 +attrape-couillons attrape_couillon NOM m p 0.04 0.07 0.01 0.07 +attrape-mouche attrape_mouche NOM m s 0.04 0.07 0.01 0 +attrape-mouches attrape_mouche NOM m p 0.04 0.07 0.03 0.07 +attrape-nigaud attrape_nigaud NOM m s 0.1 0.2 0.1 0.2 +au-dedans au_dedans ADV 0.92 4.86 0.92 4.86 +au-dehors au_dehors ADV 0.91 11.42 0.91 11.42 +au-delà au_delà ADV 21.77 52.91 21.77 52.91 +au-dessous au_dessous ADV 2.98 24.59 2.98 24.59 +au-dessus au_dessus PRE 0.02 0.07 0.02 0.07 +au-devant au_devant ADV 0.98 11.08 0.98 11.08 +audio-visuel audio_visuel ADJ m s 0.06 0.2 0.06 0.2 +audio-visuelle audiovisuel ADJ f s 0.88 0.27 0 0.14 +aujourd'hui aujourd_hui ADV 360.17 158.24 360.17 158.24 +austro-hongrois austro_hongrois ADJ m s 0.05 0.41 0.05 0.27 +austro-hongroises austro_hongrois ADJ f p 0.05 0.41 0 0.14 +auto-adhésive auto_adhésif ADJ f s 0 0.07 0 0.07 +auto-analyse auto_analyse NOM f s 0.02 0.07 0.02 0.07 +auto-immun auto_immun ADJ m s 0.12 0 0.01 0 +auto-immune auto_immun ADJ f s 0.12 0 0.1 0 +auto-intoxication auto_intoxication NOM f s 0 0.14 0 0.14 +auto-pilote auto_pilote NOM s 0.1 0 0.1 0 +auto-stop auto_stop NOM m s 1.06 0.74 1.06 0.74 +auto-stoppeur auto_stoppeur NOM m s 0.67 0.2 0.28 0 +auto-stoppeurs auto_stoppeur NOM m p 0.67 0.2 0.27 0 +auto-stoppeuse auto_stoppeur NOM f s 0.67 0.2 0.08 0.07 +auto-stoppeuses auto_stoppeur NOM f p 0.67 0.2 0.04 0.14 +auto-tamponneuse auto_tamponneuse NOM f s 0.26 0 0.04 0 +auto-tamponneuses auto_tamponneuse NOM f p 0.26 0 0.22 0 +auto-école auto_école NOM f s 0.58 0.07 0.58 0.07 +auto-érotisme auto_érotisme NOM m s 0.02 0 0.02 0 +automobile-club automobile_club NOM f s 0.03 0 0.03 0 +aux aguets aux_aguets ADV 0.87 5.88 0.87 5.88 +avant-avant-dernier avant_avant_dernier NOM m s 0 0.07 0 0.07 +avant-bec avant_bec NOM m s 0.01 0 0.01 0 +avant-bras avant_bras NOM m 0.84 12.7 0.84 12.7 +avant-centre avant_centre NOM m s 0.28 0.2 0.28 0.2 +avant-clous avant_clou NOM m p 0 0.07 0 0.07 +avant-corps avant_corps NOM m 0 0.07 0 0.07 +avant-coureur avant_coureur ADJ m s 0.32 1.62 0.02 0.74 +avant-coureurs avant_coureur ADJ m p 0.32 1.62 0.29 0.88 +avant-courrière avant_courrier ADJ f s 0 0.07 0 0.07 +avant-courrières avant_courrier NOM f p 0 0.07 0 0.07 +avant-cours avant_cour NOM f p 0 0.07 0 0.07 +avant-dernier avant_dernier ADJ m s 0.45 1.96 0.11 0.88 +avant-dernière avant_dernier ADJ f s 0.45 1.96 0.34 1.08 +avant-dîner avant_dîner NOM m 0 0.07 0 0.07 +avant-garde avant_garde NOM f s 1.52 7.91 1.52 7.09 +avant-gardes avant_garde NOM f p 1.52 7.91 0 0.81 +avant-gardiste avant_gardiste ADJ s 0.23 0.2 0.21 0.14 +avant-gardistes avant_gardiste ADJ m p 0.23 0.2 0.03 0.07 +avant-gauche avant_gauche ADJ 0.1 0 0.1 0 +avant-goût avant_goût NOM m s 1.25 1.62 1.25 1.62 +avant-guerre avant_guerre NOM s 0.65 7.16 0.65 7.16 +avant-hier avant_hier ADV 6.69 8.78 6.69 8.78 +avant-monts avant_mont NOM m p 0.01 0 0.01 0 +avant-papier avant_papier NOM m s 0 0.2 0 0.2 +avant-plan avant_plan NOM m s 0.02 0.07 0.02 0.07 +avant-port avant_port NOM m s 0 0.07 0 0.07 +avant-poste avant_poste NOM m s 2.15 3.72 1.52 0.27 +avant-postes avant_poste NOM m p 2.15 3.72 0.62 3.45 +avant-première avant_première NOM f s 0.5 0.41 0.45 0.41 +avant-premières avant_première NOM f p 0.5 0.41 0.05 0 +avant-printemps avant_printemps NOM m 0 0.07 0 0.07 +avant-projet avant_projet NOM m s 0.04 0 0.04 0 +avant-propos avant_propos NOM m 0.05 0.41 0.05 0.41 +avant-scène avant_scène NOM f s 0.73 0.88 0.73 0.68 +avant-scènes avant_scène NOM f p 0.73 0.88 0 0.2 +avant-toit avant_toit NOM m s 0.03 0.27 0.01 0.27 +avant-toits avant_toit NOM m p 0.03 0.27 0.02 0 +avant-train avant_train NOM m s 0.02 0.34 0.01 0.2 +avant-trains avant_train NOM m p 0.02 0.34 0.01 0.14 +avant-trou avant_trou NOM m s 0.01 0 0.01 0 +avant-veille avant_veille NOM f s 0.01 3.65 0.01 3.65 +aveugle-né aveugle_né NOM m s 0 0.14 0 0.07 +aveugle-née aveugle_né NOM f s 0 0.14 0 0.07 +avion-cargo avion_cargo NOM m s 0.2 0.14 0.2 0 +avion-citerne avion_citerne NOM m s 0.03 0 0.03 0 +avion-suicide avion_suicide NOM m s 0.01 0.07 0.01 0.07 +avion-école avion_école NOM m s 0.01 0 0.01 0 +avions-cargos avion_cargo NOM m p 0.2 0.14 0 0.14 +avions-espions avions_espions NOM m p 0.01 0 0.01 0 +avocat-conseil avocat_conseil NOM m s 0.08 0 0.08 0 +ayants droit ayants_droit NOM m p 0.01 0.14 0.01 0.14 +aye-aye aye_aye NOM m s 0.01 0 0.01 0 +aéro-club aéro_club NOM m s 0.01 0.07 0.01 0.07 +baby-boom baby_boom NOM m s 0.05 0 0.05 0 +baby-foot baby_foot NOM m 0.55 0.74 0.55 0.74 +baby-sitter baby_sitter NOM f s 7.85 0.2 7 0.14 +baby-sitters baby_sitter NOM f p 7.85 0.2 0.85 0.07 +baby-sitting baby_sitting NOM m s 1.63 0.41 1.63 0.41 +bachi-bouzouk bachi_bouzouk NOM m s 0 0.07 0 0.07 +back up back_up NOM m s 0.09 0 0.09 0 +bain-marie bain_marie NOM m s 0.08 0.95 0.08 0.88 +bains-marie bain_marie NOM m p 0.08 0.95 0 0.07 +baise-en-ville baise_en_ville NOM m s 0.03 0.2 0.03 0.2 +balai-brosse balai_brosse NOM m s 0.4 0.61 0.29 0.34 +balais-brosses balai_brosse NOM m p 0.4 0.61 0.11 0.27 +ball-trap ball_trap NOM m s 0.2 0.14 0.2 0.14 +balle-peau balle_peau ONO 0 0.07 0 0.07 +ballon-sonde ballon_sonde NOM m s 0.14 0 0.14 0 +banc-titre banc_titre NOM m s 0.14 0 0.14 0 +bande-annonce bande_annonce NOM f s 0.51 0 0.41 0 +bande-son bande_son NOM f s 0.09 0.27 0.09 0.27 +bandes-annonces bande_annonce NOM f p 0.51 0 0.1 0 +bank-note bank_note NOM f s 0 0.2 0 0.07 +bank-notes bank_note NOM f p 0 0.2 0 0.14 +bar-hôtel bar_hôtel NOM m s 0.01 0 0.01 0 +bar-mitsva bar_mitsva NOM f 0.41 0.07 0.41 0.07 +bar-restaurant bar_restaurant NOM m s 0 0.07 0 0.07 +bar-tabac bar_tabac NOM m s 0.03 0.61 0.03 0.61 +barbe-de-capucin barbe_de_capucin NOM f s 0 0.07 0 0.07 +bas-bleu bas_bleu NOM m s 0.01 0.47 0.01 0.34 +bas-bleus bas_bleu NOM m p 0.01 0.47 0 0.14 +bas-côté bas_côté NOM m s 0.6 5.34 0.58 3.58 +bas-côtés bas_côté NOM m p 0.6 5.34 0.02 1.76 +bas-empire bas_empire NOM m 0 0.07 0 0.07 +bas-flanc bas_flanc NOM m 0 0.14 0 0.14 +bas-fond bas_fond NOM m s 1.05 3.72 0.02 1.62 +bas-fonds bas_fond NOM m p 1.05 3.72 1.03 2.09 +bas-relief bas_relief NOM m s 0.09 1.22 0.08 0.34 +bas-reliefs bas_relief NOM m p 0.09 1.22 0.01 0.88 +bas-ventre bas_ventre NOM m s 0.23 2.3 0.23 2.3 +base-ball base_ball NOM m s 10.12 1.28 10.12 1.28 +basket-ball basket_ball NOM m s 1.38 0.34 1.38 0.34 +basse-cour basse_cour NOM f s 0.81 3.85 0.57 3.65 +basse-fosse basse_fosse NOM f s 0.01 0.2 0.01 0.14 +basse-taille basse_taille NOM f s 0 0.14 0 0.14 +basses-cours basse_cour NOM f p 0.81 3.85 0.23 0.2 +basses-fosses basse_fosse NOM f p 0.01 0.2 0 0.07 +bat-flanc bat_flanc NOM m 0 2.84 0 2.84 +bat-l'eau bat_l_eau NOM m s 0 0.07 0 0.07 +bateau-citerne bateau_citerne NOM m s 0.03 0 0.03 0 +bateau-lavoir bateau_lavoir NOM m s 0 0.2 0 0.14 +bateau-mouche bateau_mouche NOM m s 0.01 0.74 0.01 0.34 +bateau-pilote bateau_pilote NOM m s 0.01 0 0.01 0 +bateau-pompe bateau_pompe NOM m s 0 0.07 0 0.07 +bateaux-lavoirs bateau_lavoir NOM m p 0 0.2 0 0.07 +bateaux-mouches bateau_mouche NOM m p 0.01 0.74 0 0.41 +battle-dress battle_dress NOM m 0 0.14 0 0.14 +be-bop be_bop NOM m 0.31 0.34 0.31 0.34 +beat generation beat_generation NOM f s 0 0.14 0 0.14 +beau-fils beau_fils NOM m 1.29 1.01 1.27 1.01 +beau-frère beau_frère NOM m s 13.14 15.68 9.13 8.65 +beau-papa beau_papa NOM m s 0.23 0.14 0.23 0.14 +beau-parent beau_parent NOM m s 0.01 0 0.01 0 +beau-père beau_père NOM m s 16.54 14.05 9.29 7.09 +beaux-arts beaux_arts NOM m p 2.19 3.38 2.19 3.38 +beaux-enfants beaux_enfants NOM m p 0.06 0 0.06 0 +beaux-fils beau_fils NOM m p 1.29 1.01 0.03 0 +beaux-frères beau_frère NOM m p 13.14 15.68 0.62 1.01 +beaux-parents beaux_parents NOM m p 1.52 1.22 1.52 1.22 +bec-de-cane bec_de_cane NOM m s 0.01 1.42 0.01 1.42 +bec-de-lièvre bec_de_lièvre NOM m s 0.1 0.61 0.1 0.61 +bel canto bel_canto NOM m 0.26 0.41 0.26 0.41 +belle lurette belle_lurette NOM f s 0.75 2.64 0.75 2.64 +belle-doche belle_doche NOM f s 0.05 0.07 0.05 0.07 +belle-famille belle_famille NOM f s 0.71 1.22 0.71 1.15 +belle-fille belle_fille NOM f s 3.32 2.57 3.29 2.5 +belle-maman belle_maman NOM f s 0.85 0.34 0.85 0.34 +belle-mère beau_père NOM f s 16.54 14.05 7.17 6.82 +belle-soeur beau_frère NOM f s 13.14 15.68 3.36 5.47 +belle-à-voir belle_à_voir NOM f s 0 0.27 0 0.27 +belles-de-jour belle_de_jour NOM f p 0 0.07 0 0.07 +belles-de-nuit belle_de_nuit NOM f p 0 0.34 0 0.34 +belles-familles belle_famille NOM f p 0.71 1.22 0 0.07 +belles-filles belle_fille NOM f p 3.32 2.57 0.04 0.07 +belles-lettres belle_lettre NOM f p 0 0.41 0 0.41 +belles-mères beau_père NOM f p 16.54 14.05 0.08 0.14 +belles-soeurs beau_frère NOM f p 13.14 15.68 0.04 0.54 +bernard-l'ermite bernard_l_ermite NOM m 0 0.34 0 0.34 +bernard-l'hermite bernard_l_hermite NOM m 0.01 0.14 0.01 0.14 +best of best_of NOM m s 0.17 0 0.17 0 +best-seller best_seller NOM m s 1.09 0.81 0.82 0.54 +best-sellers best_seller NOM m p 1.09 0.81 0.27 0.27 +bien-aimé bien_aimé NOM m s 8.5 4.66 4.51 1.89 +bien-aimée bien_aimé NOM f s 8.5 4.66 3.76 2.43 +bien-aimées bien_aimé ADJ f p 8.19 4.39 0.04 0.2 +bien-aimés bien_aimé ADJ m p 8.19 4.39 0.68 0.54 +bien-disants bien_disant ADJ m p 0 0.07 0 0.07 +bien-fonds bien_fonds NOM m 0 0.07 0 0.07 +bien-fondé bien_fondé NOM m s 0.31 0.81 0.31 0.81 +bien-manger bien_manger NOM m 0 0.14 0 0.14 +bien-pensant bien_pensant ADJ m s 0.06 2.16 0.01 1.28 +bien-pensante bien_pensant ADJ f s 0.06 2.16 0.02 0.47 +bien-pensants bien_pensant ADJ m p 0.06 2.16 0.03 0.41 +bien-portant bien_portant ADJ m s 0.03 0.41 0 0.14 +bien-portants bien_portant ADJ m p 0.03 0.41 0.03 0.27 +bien-être bien_être NOM m 4.28 8.78 4.28 8.78 +big band big_band NOM m 0.05 0 0.05 0 +big bang big_bang NOM m 0.38 1.62 0.38 1.62 +big-bang big_bang NOM m 0.03 0.41 0.03 0.41 +bin's bin_s NOM m 0.03 0 0.03 0 +binet-simon binet_simon NOM m s 0 0.07 0 0.07 +bip-bip bip_bip NOM m s 0.47 0 0.47 0 +birth control birth_control NOM m 0.01 0.14 0.01 0.14 +bisou-éclair bisou_éclair NOM m s 0.01 0 0.01 0 +bla bla bla_bla NOM m 1.51 1.49 0.4 0 +bla-bla bla_bla NOM m 1.51 1.49 1.11 1.49 +bla-bla-bla bla_bla_bla NOM m 0.41 0.34 0.41 0.34 +black-bass black_bass NOM m 0 0.07 0 0.07 +black-jack black_jack NOM m s 0.75 0 0.75 0 +black-out black_out NOM m 1 0.88 1 0.88 +blanc-bec blanc_bec NOM m s 1.5 0.61 1.39 0.47 +blanc-bleu blanc_bleu NOM m s 0.16 0.41 0.16 0.41 +blanc-gris blanc_gris ADJ m s 0 0.07 0 0.07 +blanc-seing blanc_seing NOM m s 0.01 0.27 0.01 0.27 +blancs-becs blanc_bec NOM m p 1.5 0.61 0.12 0.14 +blancs-manteaux blancs_manteaux ADJ m p 0 0.07 0 0.07 +bleu-ciel bleu_ciel ADJ m s 0 0.07 0 0.07 +bleu-noir bleu_noir ADJ 0.01 1.01 0.01 1.01 +bleu-roi bleu_roi NOM m s 0.02 0 0.02 0 +bleu-vert bleu_vert ADJ 0.13 0.47 0.13 0.47 +bloc-cylindres bloc_cylindres NOM m 0.01 0 0.01 0 +bloc-moteur bloc_moteur NOM m s 0.01 0 0.01 0 +bloc-notes bloc_notes NOM m 0.47 0.61 0.47 0.61 +blocs-notes blocs_notes NOM m p 0.07 0.07 0.07 0.07 +bloody mary bloody_mary NOM m s 1.32 0.2 1.32 0.2 +blue jeans blue_jean NOM m p 0.17 2.03 0.01 0 +blue note blue_note NOM f s 0.02 0 0.02 0 +blue-jean blue_jean NOM m s 0.17 2.03 0.05 1.08 +blue-jeans blue_jean NOM m p 0.17 2.03 0.1 0.95 +boat people boat_people NOM m 0.02 0.07 0.02 0.07 +body-building body_building NOM m s 0.01 0 0.01 0 +bombes-test bombe_test NOM f p 0.01 0 0.01 0 +bon-papa bon_papa NOM m s 0.07 1.55 0.07 1.55 +bonheur-du-jour bonheur_du_jour NOM m s 0.02 0.14 0.02 0.07 +bonheurs-du-jour bonheur_du_jour NOM m p 0.02 0.14 0 0.07 +bonne-maman bonne_maman NOM f s 0.14 2.03 0.14 2.03 +bons-cadeaux bon_cadeaux ADV 0.01 0 0.01 0 +bons-chrétiens bon_chrétien NOM m p 0 0.07 0 0.07 +boogie-woogie boogie_woogie NOM m s 0.28 0.07 0.28 0.07 +borne-fontaine borne_fontaine NOM f s 0 0.2 0 0.07 +bornes-fontaines borne_fontaine NOM f p 0 0.2 0 0.14 +bossa-nova bossa_nova NOM f s 0.12 0.07 0.12 0.07 +bouche-trou bouche_trou NOM m s 0.25 0.07 0.22 0.07 +bouche-trous bouche_trou NOM m p 0.25 0.07 0.03 0 +bouche-à-bouche bouche_à_bouche NOM m 0 0.2 0 0.2 +bouche-à-oreille bouche_à_oreille NOM m s 0 0.07 0 0.07 +boui-boui boui_boui NOM m s 0.39 0.27 0.35 0.27 +bouis-bouis boui_boui NOM m p 0.39 0.27 0.04 0 +boulanger-pâtissier boulanger_pâtissier NOM m s 0 0.14 0 0.14 +boule-de-neige boule_de_neige NOM f s 0.07 0 0.07 0 +boulot-refuge boulot_refuge ADJ m s 0 0.07 0 0.07 +bourre-mou bourre_mou NOM m s 0.01 0 0.01 0 +bourre-pif bourre_pif NOM m s 0.04 0.07 0.04 0.07 +bout-dehors bout_dehors NOM m 0 0.2 0 0.2 +bout-rimé bout_rimé NOM m s 0.14 0.07 0.14 0 +boute-en-train boute_en_train NOM m 0.39 0.74 0.39 0.74 +boutique-cadeaux boutique_cadeaux NOM f s 0.02 0 0.02 0 +bouton-d'or bouton_d_or NOM m s 0.01 0.2 0 0.14 +bouton-pression bouton_pression NOM m s 0.04 0.14 0.02 0.07 +boutons-d'or bouton_d_or NOM m p 0.01 0.2 0.01 0.07 +boutons-pression bouton_pression NOM m p 0.04 0.14 0.02 0.07 +bouts-rimés bout_rimé NOM m p 0.14 0.07 0 0.07 +bow-window bow_window NOM m s 0 0.54 0 0.27 +bow-windows bow_window NOM m p 0 0.54 0 0.27 +box-calf box_calf NOM m s 0 0.27 0 0.27 +box-office box_office NOM m s 0.35 0.2 0.35 0.14 +box-offices box_office NOM m p 0.35 0.2 0 0.07 +boxer-short boxer_short NOM m s 0.05 0.07 0.05 0.07 +boy-friend boy_friend NOM m s 0 0.14 0 0.14 +boy-scout boy_scout NOM m s 2.09 1.62 0.86 0.68 +boy-scoutesque boy_scoutesque ADJ f s 0 0.07 0 0.07 +boy-scouts boy_scout NOM m p 2.09 1.62 1.22 0.95 +boîtes-repas boîte_repas NOM f p 0 0.07 0 0.07 +bracelet-montre bracelet_montre NOM m s 0 2.7 0 1.76 +bracelets-montres bracelet_montre NOM m p 0 2.7 0 0.95 +brain-trust brain_trust NOM m s 0.03 0.07 0.03 0.07 +branle-bas branle_bas NOM m 0.29 1.82 0.29 1.82 +brasserie-hôtel brasserie_hôtel NOM f s 0 0.07 0 0.07 +break-down break_down NOM m 0 0.14 0 0.14 +bric et de broc bric_et_de_broc ADV 0.03 0.47 0.03 0.47 +bric-à-brac bric_à_brac NOM m 0 3.24 0 3.24 +brigadier-chef brigadier_chef NOM m s 0.01 1.96 0.01 1.82 +brigadiers-chefs brigadier_chef NOM m p 0.01 1.96 0 0.14 +brise-bise brise_bise NOM m 0 0.41 0 0.41 +brise-fer brise_fer NOM m 0.01 0 0.01 0 +brise-glace brise_glace NOM m 0.07 0.2 0.07 0.2 +brise-jet brise_jet NOM m 0 0.07 0 0.07 +brise-lame brise_lame NOM m s 0 0.14 0 0.14 +brise-vent brise_vent NOM m 0.01 0 0.01 0 +broncho-pneumonie broncho_pneumonie NOM f s 0 0.41 0 0.41 +broncho-pneumopathie broncho_pneumopathie NOM f s 0.01 0.07 0.01 0.07 +brown sugar brown_sugar NOM m 0 0.07 0 0.07 +brèche-dents brèche_dent NOM p 0 0.07 0 0.07 +brûle-gueule brûle_gueule NOM m s 0 0.41 0 0.41 +bubble gum bubble_gum NOM m s 0.08 0.07 0.01 0 +bubble-gum bubble_gum NOM m s 0.08 0.07 0.07 0.07 +bucco-génital bucco_génital ADJ m s 0.11 0 0.06 0 +bucco-génitales bucco_génital ADJ f p 0.11 0 0.02 0 +bucco-génitaux bucco_génital ADJ m p 0.11 0 0.02 0 +buen retiro buen_retiro NOM m 0 0.14 0 0.14 +buisson-ardent buisson_ardent NOM m s 0.01 0 0.01 0 +bull-dog bull_dog NOM m s 0.01 0.68 0.01 0.61 +bull-dogs bull_dog NOM m p 0.01 0.68 0 0.07 +bull-finch bull_finch NOM m s 0 0.14 0 0.14 +bull-terrier bull_terrier NOM m s 0.02 0 0.02 0 +by night by_night ADJ m s 0.25 0.41 0.25 0.41 +by-pass by_pass NOM m 0.03 0 0.03 0 +bye-bye bye_bye ONO 2.36 0.34 2.36 0.34 +bébés-éprouvette bébé_éprouvette NOM m p 0.01 0 0.01 0 +c'est-à-dire c_est_à_dire ADV 0 51.96 0 51.96 +cache-brassière cache_brassière NOM m 0 0.07 0 0.07 +cache-cache cache_cache NOM m 3.42 2.7 3.42 2.7 +cache-coeur cache_coeur NOM s 0 0.14 0 0.14 +cache-col cache_col NOM m 0.01 1.35 0.01 1.35 +cache-corset cache_corset NOM m 0 0.14 0 0.14 +cache-nez cache_nez NOM m 0.15 2.09 0.15 2.09 +cache-pot cache_pot NOM m s 0.16 0.81 0.16 0.41 +cache-pots cache_pot NOM m p 0.16 0.81 0 0.41 +cache-poussière cache_poussière NOM m 0.01 0.2 0.01 0.2 +cache-sexe cache_sexe NOM m 0.03 0.27 0.03 0.27 +cache-tampon cache_tampon NOM m 0 0.2 0 0.2 +café-concert café_concert NOM m s 0 0.47 0 0.34 +café-crème café_crème NOM m s 0 0.95 0 0.95 +café-hôtel café_hôtel NOM m s 0 0.07 0 0.07 +café-restaurant café_restaurant NOM m s 0 0.41 0 0.41 +café-tabac café_tabac NOM m s 0 1.22 0 1.22 +café-théâtre café_théâtre NOM m s 0 0.27 0 0.27 +cafés-concerts café_concert NOM m p 0 0.47 0 0.14 +cahin-caha cahin_caha ADV 0 1.08 0 1.08 +cake-walk cake_walk NOM m s 0.03 0 0.03 0 +cale-pied cale_pied NOM m s 0 0.34 0 0.07 +cale-pieds cale_pied NOM m p 0 0.34 0 0.27 +call girl call_girl NOM f s 1.36 0.14 0.25 0 +call girls call_girl NOM f p 1.36 0.14 0.03 0 +call-girl call_girl NOM f s 1.36 0.14 0.98 0.14 +call-girls call_girl NOM f p 1.36 0.14 0.09 0 +camion-benne camion_benne NOM m s 0.06 0.14 0.03 0 +camion-citerne camion_citerne NOM m s 0.7 0.47 0.62 0.34 +camion-grue camion_grue NOM m s 0 0.14 0 0.14 +camions-bennes camion_benne NOM m p 0.06 0.14 0.03 0.14 +camions-citernes camion_citerne NOM m p 0.7 0.47 0.08 0.14 +camping-car camping_car NOM m s 1.06 0 1.01 0 +camping-cars camping_car NOM m p 1.06 0 0.05 0 +camping-gaz camping_gaz NOM m 0 0.47 0 0.47 +caméra-espion caméra_espion NOM f s 0.01 0 0.01 0 +canadian river canadian_river NOM s 0 0.07 0 0.07 +canapé-lit canapé_lit NOM m s 0.02 1.15 0 1.15 +canapés-lits canapé_lit NOM m p 0.02 1.15 0.02 0 +canne-épée canne_épée NOM f s 0.01 0.54 0.01 0.34 +cannes-épées canne_épée NOM f p 0.01 0.54 0 0.2 +cap-hornier cap_hornier NOM m s 0 0.07 0 0.07 +capital-risque capital_risque NOM m s 0.04 0 0.04 0 +caporal-chef caporal_chef NOM m s 0.52 0.54 0.52 0.54 +caput mortuum caput_mortuum NOM m s 0 0.07 0 0.07 +cardinal-archevêque cardinal_archevêque NOM m s 0.02 0.07 0.02 0.07 +cardinal-légat cardinal_légat NOM m s 0 0.07 0 0.07 +cardio-pulmonaire cardio_pulmonaire ADJ s 0.07 0 0.07 0 +cardio-respiratoire cardio_respiratoire ADJ f s 0.1 0 0.1 0 +cardio-vasculaire cardio_vasculaire ADJ s 0.14 0.07 0.14 0.07 +carte-clé carte_clé NOM f s 0.03 0 0.03 0 +carte-lettre carte_lettre NOM f s 0 0.41 0 0.34 +cartes-lettres carte_lettre NOM f p 0 0.41 0 0.07 +carton-pâte carton_pâte NOM m s 0.17 1.28 0.17 1.28 +carême-prenant carême_prenant NOM m s 0 0.07 0 0.07 +casse-bonbons casse_bonbon NOM m p 0.1 0 0.1 0 +casse-burnes casse_burnes NOM m 0.05 0 0.05 0 +casse-cou casse_cou ADJ s 0.35 0.54 0.35 0.54 +casse-couilles casse_couilles NOM m 1.47 0.2 1.47 0.2 +casse-croûte casse_croûte NOM m s 1.54 4.46 1.52 4.32 +casse-croûtes casse_croûte NOM m p 1.54 4.46 0.02 0.14 +casse-cul casse_cul ADJ 0.01 0 0.01 0 +casse-dalle casse_dalle NOM m 0.29 0.95 0.28 0.81 +casse-dalles casse_dalle NOM m p 0.29 0.95 0.01 0.14 +casse-graine casse_graine NOM m 0 0.95 0 0.95 +casse-gueule casse_gueule NOM m 0.1 0.07 0.1 0.07 +casse-noisette casse_noisette NOM m s 0.22 0.41 0.22 0.41 +casse-noisettes casse_noisettes NOM m 0.13 0.27 0.13 0.27 +casse-noix casse_noix NOM m 0.12 0.2 0.12 0.2 +casse-pattes casse_pattes NOM m 0.03 0.2 0.03 0.2 +casse-pieds casse_pieds ADJ s 0.87 1.22 0.87 1.22 +casse-pipe casse_pipe NOM m s 0.5 0.74 0.5 0.74 +casse-pipes casse_pipes NOM m 0.02 0.2 0.02 0.2 +casse-tête casse_tête NOM m 0.69 0.88 0.69 0.88 +casus belli casus_belli NOM m 0.05 0 0.05 0 +celle-ci celle_ci PRO:dem f s 38.71 57.57 38.71 57.57 +celle-là celle_là PRO:dem f s 52.63 28.65 52.63 28.65 +celles-ci celles_ci PRO:dem f p 6.64 9.39 6.64 9.39 +celles-là celles_là PRO:dem f p 5.9 6.08 5.9 6.08 +celui-ci celui_ci PRO:dem m s 45.97 71.76 45.97 71.76 +celui-là celui_là PRO:dem m s 78.13 56.89 78.13 56.89 +centre-ville centre_ville NOM m s 2.87 0.54 2.87 0.54 +cerf-roi cerf_roi NOM m s 0.01 0 0.01 0 +cerf-volant cerf_volant NOM m s 1.85 1.82 1.4 1.22 +cerfs-volants cerf_volant NOM m p 1.85 1.82 0.46 0.61 +cessez-le-feu cessez_le_feu NOM m 1.54 0.41 1.54 0.41 +ceux-ci ceux_ci PRO:dem m p 4.26 20.95 4.26 20.95 +ceux-là ceux_là PRO:dem m p 14.65 25.81 14.65 25.81 +ch'timi ch_timi ADJ s 0.27 0.07 0.27 0 +ch'timis ch_timi NOM p 0.14 0.2 0 0.07 +cha-cha-cha cha_cha_cha NOM m s 0.61 0.2 0.61 0.2 +chalutier-patrouilleur chalutier_patrouilleur NOM m s 0 0.07 0 0.07 +chambre-salon chambre_salon NOM f s 0 0.07 0 0.07 +champ' champ NOM m s 57.22 106.49 0.04 1.76 +champs élysées champs_élysées NOM m p 0 0.14 0 0.14 +chanteuse-vedette chanteuse_vedette NOM f s 0 0.07 0 0.07 +chapiteaux-dortoirs chapiteau_dortoir NOM m p 0 0.07 0 0.07 +chasse-d'eau chasse_d_eau NOM f s 0 0.07 0 0.07 +chasse-goupilles chasse_goupille NOM f p 0 0.2 0 0.2 +chasse-mouche chasse_mouche NOM m s 0 0.14 0 0.14 +chasse-mouches chasse_mouches NOM m 0.12 0.61 0.12 0.61 +chasse-neige chasse_neige NOM m 0.58 0.54 0.58 0.54 +chasse-pierres chasse_pierres NOM m 0.01 0 0.01 0 +chassé-croisé chassé_croisé NOM m s 0.02 1.01 0 0.68 +chassés-croisés chassé_croisé NOM m p 0.02 1.01 0.02 0.34 +chat-huant chat_huant NOM m s 0 0.27 0 0.27 +chat-tigre chat_tigre NOM m s 0 0.14 0 0.14 +chaud-froid chaud_froid NOM m s 0 0.41 0 0.34 +chaude-pisse chaude_pisse NOM f s 0.15 0.34 0.15 0.27 +chaudes-pisses chaude_pisse NOM f p 0.15 0.34 0 0.07 +chauds-froids chaud_froid NOM m p 0 0.41 0 0.07 +chauffe-biberon chauffe_biberon NOM m s 0.1 0 0.1 0 +chauffe-eau chauffe_eau NOM m 0.63 0.61 0.63 0.61 +chauffe-plats chauffe_plats NOM m 0 0.14 0 0.14 +chauffeur-livreur chauffeur_livreur NOM m s 0 0.14 0 0.14 +chausse-pied chausse_pied NOM m s 0.24 0.14 0.24 0.14 +chausse-trape chausse_trape NOM f s 0 0.2 0 0.07 +chausse-trapes chausse_trape NOM f p 0 0.2 0 0.14 +chausse-trappe chausse_trappe NOM f s 0 0.07 0 0.07 +chauve-souris chauve_souris NOM f s 7.16 4.66 5.43 2.23 +chauves-souris chauve_souris NOM f p 7.16 4.66 1.73 2.43 +check up check_up NOM m 0.69 0 0.01 0 +check-list check_list NOM f s 0.22 0 0.22 0 +check-up check_up NOM m 0.69 0 0.68 0 +cheese-cake cheese_cake NOM m s 0.32 0 0.28 0 +cheese-cakes cheese_cake NOM m p 0.32 0 0.05 0 +chef-adjoint chef_adjoint NOM s 0.04 0 0.04 0 +chef-d'oeuvre chef_d_oeuvre NOM m s 3.34 12.77 2.56 8.51 +chef-d'oeuvres chef_d_oeuvres NOM s 0.11 0 0.11 0 +chef-lieu chef_lieu NOM m s 0.19 1.82 0.19 1.82 +chefs-d'oeuvre chef_d_oeuvre NOM m p 3.34 12.77 0.77 4.26 +chefs-lieux chefs_lieux NOM m p 0 0.27 0 0.27 +cherche-midi cherche_midi NOM m 0.01 0.27 0.01 0.27 +cheval-vapeur cheval_vapeur NOM m s 0.03 0.2 0.02 0.07 +chevau-léger chevau_léger NOM m s 0.01 0.14 0.01 0.14 +chevaux-vapeur cheval_vapeur NOM m p 0.03 0.2 0.01 0.14 +chewing gum chewing_gum NOM m s 0.01 3.58 0 0.07 +chewing-gum chewing_gum NOM m s 0.01 3.58 0 3.11 +chewing-gums chewing_gum NOM m p 0.01 3.58 0.01 0.41 +chez-soi chez_soi NOM m 0.31 0.41 0.31 0.41 +chic-type chic_type ADJ m s 0.01 0 0.01 0 +chiche-kebab chiche_kebab NOM m s 0.24 0.07 0.24 0.07 +chien-assis chien_assis NOM m 0 0.07 0 0.07 +chien-loup chien_loup NOM m s 0.27 1.08 0.14 1.08 +chien-robot chien_robot NOM m s 0.01 0 0.01 0 +chien-étoile chien_étoile NOM m s 0 0.07 0 0.07 +chiens-loups chien_loup NOM m p 0.27 1.08 0.12 0 +chiffres-clés chiffres_clé NOM m p 0 0.07 0 0.07 +chirurgien-dentiste chirurgien_dentiste NOM s 0.02 0.27 0.02 0.27 +chop suey chop_suey NOM m s 0.13 0 0.13 0 +chou-fleur chou_fleur NOM m s 0.54 1.01 0.54 1.01 +chou-palmiste chou_palmiste NOM m s 0 0.07 0 0.07 +chou-rave chou_rave NOM m s 0 0.2 0 0.2 +choux-fleurs choux_fleurs NOM m p 0.57 1.28 0.57 1.28 +choux-raves choux_raves NOM m p 0 0.07 0 0.07 +chrétien-démocrate chrétien_démocrate ADJ m s 0.16 0 0.01 0 +chrétiens-démocrates chrétien_démocrate ADJ m p 0.16 0 0.14 0 +château-fort château_fort NOM m s 0 0.07 0 0.07 +chèque-cadeau chèque_cadeau NOM m s 0.05 0 0.05 0 +chèvre-pied chèvre_pied NOM s 0 0.14 0 0.14 +chêne-liège chêne_liège NOM m s 0 0.95 0 0.14 +chênes-lièges chêne_liège NOM m p 0 0.95 0 0.81 +ci-après ci_après ADV 0.15 0.61 0.15 0.61 +ci-contre ci_contre ADV 0 0.07 0 0.07 +ci-dessous ci_dessous ADV 0.13 0.61 0.13 0.61 +ci-dessus ci_dessus ADV 0.2 1.28 0.2 1.28 +ci-gît ci_gît ADV 0.7 0.34 0.7 0.34 +ci-inclus ci_inclus ADJ m 0.03 0.14 0.01 0.07 +ci-incluse ci_inclus ADJ f s 0.03 0.14 0.01 0.07 +ci-incluses ci_inclus ADJ f p 0.03 0.14 0.01 0 +ci-joint ci_joint ADJ m s 0.62 1.89 0.59 1.69 +ci-jointe ci_joint ADJ f s 0.62 1.89 0.04 0.14 +ci-joints ci_joint ADJ m p 0.62 1.89 0 0.07 +cinquante-cinq cinquante_cinq ADJ:num 0.2 2.5 0.2 2.5 +cinquante-deux cinquante_deux ADJ:num 0.21 1.42 0.21 1.42 +cinquante-huit cinquante_huit ADJ:num 0.06 0.88 0.06 0.88 +cinquante-huitième cinquante_huitième ADJ 0 0.07 0 0.07 +cinquante-neuf cinquante_neuf ADJ:num 0.03 0.34 0.03 0.34 +cinquante-neuvième cinquante_neuvième ADJ 0 0.07 0 0.07 +cinquante-quatre cinquante_quatre ADJ:num 0.13 0.68 0.13 0.68 +cinquante-sept cinquante_sept ADJ:num 0.08 0.95 0.08 0.95 +cinquante-septième cinquante_septième ADJ 0.03 0.07 0.03 0.07 +cinquante-six cinquante_six ADJ:num 0.18 0.68 0.18 0.68 +cinquante-sixième cinquante_sixième ADJ 0 0.14 0 0.14 +cinquante-trois cinquante_trois ADJ:num 0.15 0.81 0.15 0.81 +cinquante-troisième cinquante_troisième ADJ 0 0.14 0 0.14 +ciné-club ciné_club NOM m s 0 0.74 0 0.54 +ciné-clubs ciné_club NOM m p 0 0.74 0 0.2 +ciné-roman ciné_roman NOM m s 0 0.14 0 0.14 +cinéma-vérité cinéma_vérité NOM m s 0.2 0.07 0.2 0.07 +circonscriptions-clés circonscriptions_clé NOM f p 0.01 0 0.01 0 +citizen band citizen_band NOM f s 0.01 0 0.01 0 +cité-dortoir cité_dortoir NOM f s 0 0.27 0 0.14 +cité-jardin cité_jardin NOM f s 0 0.2 0 0.2 +cités-dortoirs cité_dortoir NOM f p 0 0.27 0 0.14 +clair-obscur clair_obscur NOM m s 0.02 1.96 0.02 1.62 +claire-voie claire_voie NOM f s 0.01 2.43 0.01 1.96 +claires-voies claire_voie NOM f p 0.01 2.43 0 0.47 +clairs-obscurs clair_obscur NOM m p 0.02 1.96 0 0.34 +claque-merde claque_merde NOM m s 0.19 0.27 0.19 0.27 +clic-clac clic_clac ONO 0.1 0.07 0.1 0.07 +client-roi client_roi NOM m s 0 0.07 0 0.07 +clin-d'oeil clin_d_oeil NOM m s 0.01 0 0.01 0 +cloche-pied cloche_pied NOM f s 0.01 0.14 0.01 0.14 +clopin-clopant clopin_clopant ADV 0 0.14 0 0.14 +close-combat close_combat NOM m s 0.04 0.07 0.04 0.07 +close-up close_up NOM m s 0.01 0.07 0.01 0.07 +club-house club_house NOM m s 0.05 0.07 0.05 0.07 +co-animateur co_animateur NOM m s 0.03 0 0.03 0 +co-auteur co_auteur NOM m s 0.46 0 0.46 0 +co-avocat co_avocat NOM m s 0.01 0 0.01 0 +co-capitaine co_capitaine NOM m s 0.09 0 0.09 0 +co-dépendance co_dépendance NOM f s 0.01 0 0.01 0 +co-dépendante co_dépendant ADJ f s 0.01 0 0.01 0 +co-existence co_existence NOM f s 0 0.07 0 0.07 +co-exister co_exister VER 0.05 0 0.05 0 inf; +co-habiter co_habiter VER 0.02 0 0.02 0 inf; +co-locataire co_locataire NOM s 0.22 0 0.22 0 +co-pilote co_pilote NOM s 0.49 0 0.49 0 +co-pilotes co_pilote ADJ p 0.28 0 0.01 0 +co-production co_production NOM f s 0.11 0 0.01 0 +co-productions co_production NOM f p 0.11 0 0.1 0 +co-proprio co_proprio NOM m s 0.01 0.07 0.01 0 +co-proprios co_proprio NOM m p 0.01 0.07 0 0.07 +co-propriétaire co_propriétaire NOM s 0.19 0.27 0.05 0 +co-propriétaires co_propriétaire NOM p 0.19 0.27 0.14 0.27 +co-propriété co_propriété NOM f s 0 0.34 0 0.34 +co-président co_président NOM m s 0.02 0.07 0.02 0.07 +co-responsable co_responsable ADJ s 0.01 0.07 0.01 0.07 +co-signer co_signer VER 0.07 0 0.07 0 inf; +co-signons cosigner VER 0.32 0 0.01 0 ind:pre:1p; +co-tuteur co_tuteur NOM m s 0 0.07 0 0.07 +co-vedette co_vedette NOM f s 0.02 0 0.02 0 +co-voiturage co_voiturage NOM m s 0.07 0 0.07 0 +co-éducative co_éducatif ADJ f s 0.01 0 0.01 0 +co-équipier co_équipier NOM m s 0.21 0 0.21 0 +co-équipière coéquipier NOM f s 4.21 0.47 0.06 0 +coca-cola coca_cola NOM m 0.41 1.01 0.41 1.01 +cocotte-minute cocotte_minute NOM f s 0.07 0.34 0.07 0.34 +code-barre code_barre NOM m s 0.07 0 0.07 0 +code-barres code_barres NOM m 0.18 0 0.18 0 +code-clé code_clé NOM m s 0.01 0 0.01 0 +codes-clés codes_clé NOM m p 0.01 0 0.01 0 +coeur-poumons coeur_poumon NOM m p 0.03 0.07 0.03 0.07 +coffee shop coffee_shop NOM m s 0.1 0 0.1 0 +coffre-fort coffre_fort NOM m s 4.62 3.92 4.17 3.24 +coffres-forts coffre_fort NOM m p 4.62 3.92 0.45 0.68 +coin-coin coin_coin NOM m s 0.19 0.34 0.19 0.34 +coin-repas coin_repas NOM m s 0.02 0 0.02 0 +col-de-cygne col_de_cygne NOM m s 0.01 0 0.01 0 +col-vert col_vert NOM m s 0.12 0.14 0.12 0.07 +cold-cream cold_cream NOM m s 0.03 0.07 0.03 0.07 +colin-maillard colin_maillard NOM m s 0.93 0.95 0.93 0.95 +colis-cadeau colis_cadeau NOM m 0.02 0 0.02 0 +colis-repas colis_repas NOM m 0 0.07 0 0.07 +cols-de-cygne cols_de_cygne NOM m p 0 0.07 0 0.07 +cols-verts col_vert NOM m p 0.12 0.14 0 0.07 +comic book comic_book NOM m s 0.08 0.07 0.01 0 +comic books comic_book NOM m p 0.08 0.07 0.07 0.07 +commandos-suicide commando_suicide NOM m p 0.01 0 0.01 0 +commedia dell'arte commedia_dell_arte NOM f s 0.02 0.14 0.02 0.14 +commis-voyageur commis_voyageur NOM m s 0.05 0.41 0.05 0.2 +commis-voyageurs commis_voyageur NOM m p 0.05 0.41 0 0.2 +commissaire-adjoint commissaire_adjoint NOM s 0.02 0.07 0.02 0.07 +commissaire-priseur commissaire_priseur NOM m s 0.06 0.81 0.06 0.61 +commissaires-priseurs commissaire_priseur NOM m p 0.06 0.81 0 0.2 +commode-toilette commode_toilette NOM f s 0 0.14 0 0.14 +complet-veston complet_veston NOM m s 0 0.54 0 0.54 +compte-fils compte_fils NOM m 0 0.34 0 0.34 +compte-gouttes compte_gouttes NOM m 0.45 1.42 0.45 1.42 +compte-rendu compte_rendu NOM m s 2.21 0.14 2.06 0.07 +compte-tours compte_tours NOM m 0.04 0.41 0.04 0.41 +comptes-rendus compte_rendu NOM m p 2.21 0.14 0.16 0.07 +conduite-intérieure conduite_intérieure NOM f s 0 0.27 0 0.27 +conférences-débats conférence_débat NOM f p 0 0.07 0 0.07 +contrat-type contrat_type NOM m s 0.01 0.07 0.01 0.07 +contre-accusations contre_accusation NOM f p 0.01 0 0.01 0 +contre-alizés contre_alizé NOM m p 0 0.07 0 0.07 +contre-allée contre_allée NOM f s 0.05 0.34 0.04 0.2 +contre-allées contre_allée NOM f p 0.05 0.34 0.01 0.14 +contre-amiral contre_amiral NOM m s 0.19 0.07 0.19 0.07 +contre-appel contre_appel NOM m s 0 0.07 0 0.07 +contre-assurance contre_assurance NOM f s 0 0.07 0 0.07 +contre-attaqua contre_attaquer VER 0.71 1.96 0.01 0.07 ind:pas:3s; +contre-attaquaient contre_attaquer VER 0.71 1.96 0 0.2 ind:imp:3p; +contre-attaquait contre_attaquer VER 0.71 1.96 0 0.07 ind:imp:3s; +contre-attaquant contre_attaquer VER 0.71 1.96 0 0.07 par:pre; +contre-attaque contre_attaque NOM f s 1.46 2.16 1.35 1.69 +contre-attaquent contre_attaquer VER 0.71 1.96 0.07 0.2 ind:pre:3p; +contre-attaquer contre_attaquer VER 0.71 1.96 0.37 0.95 inf; +contre-attaquera contre_attaquer VER 0.71 1.96 0.01 0 ind:fut:3s; +contre-attaquerons contre_attaquer VER 0.71 1.96 0.03 0.07 ind:fut:1p; +contre-attaques contre_attaque NOM f p 1.46 2.16 0.11 0.47 +contre-attaquons contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pre:1p; +contre-attaquèrent contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pas:3p; +contre-attaqué contre_attaquer VER m s 0.71 1.96 0.07 0.07 par:pas; +contre-champ contre_champ NOM m s 0 0.07 0 0.07 +contre-chant contre_chant NOM m s 0 0.14 0 0.14 +contre-chocs contre_choc NOM m p 0 0.07 0 0.07 +contre-clés contre_clé NOM f p 0 0.07 0 0.07 +contre-courant contre_courant NOM m s 0.59 1.96 0.59 1.96 +contre-culture contre_culture NOM f s 0.03 0 0.03 0 +contre-emploi contre_emploi NOM m s 0.01 0 0.01 0 +contre-espionnage contre_espionnage NOM m s 0.67 0.34 0.67 0.34 +contre-exemple contre_exemple NOM m s 0 0.07 0 0.07 +contre-expertise contre_expertise NOM f s 0.52 0.27 0.51 0.2 +contre-expertises contre_expertise NOM f p 0.52 0.27 0.01 0.07 +contre-feu contre_feu NOM m s 0.07 0 0.07 0 +contre-feux contre_feux NOM m p 0 0.07 0 0.07 +contre-fiches contre_fiche NOM f p 0 0.07 0 0.07 +contre-fil contre_fil NOM m s 0 0.07 0 0.07 +contre-gré contre_gré NOM m s 0 0.14 0 0.14 +contre-indication contre_indication NOM f s 0.07 0 0.04 0 +contre-indications contre_indication NOM f p 0.07 0 0.04 0 +contre-indiqué contre_indiquer VER m s 0.06 0.14 0.06 0.14 par:pas; +contre-interrogatoire contre_interrogatoire NOM m s 0.48 0 0.46 0 +contre-interrogatoires contre_interrogatoire NOM m p 0.48 0 0.02 0 +contre-jour contre_jour NOM m s 0.39 6.01 0.39 6.01 +contre-la-montre contre_la_montre NOM m s 0.8 0 0.8 0 +contre-lame contre_lame NOM f s 0 0.07 0 0.07 +contre-lettre contre_lettre NOM f s 0 0.14 0 0.14 +contre-manifestants contre_manifestant NOM m p 0 0.14 0 0.14 +contre-manifestent contre_manifester VER 0 0.07 0 0.07 ind:pre:3p; +contre-mesure contre_mesure NOM f s 0.42 0 0.04 0 +contre-mesures contre_mesure NOM f p 0.42 0 0.39 0 +contre-mine contre_mine NOM f s 0 0.14 0 0.07 +contre-mines contre_mine NOM f p 0 0.14 0 0.07 +contre-miné contre_miner VER m s 0 0.07 0 0.07 par:pas; +contre-nature contre_nature ADJ s 0.41 0.14 0.41 0.14 +contre-offensive contre_offensive NOM f s 0.29 0.41 0.18 0.41 +contre-offensives contre_offensive NOM f p 0.29 0.41 0.11 0 +contre-ordre contre_ordre NOM m s 0.47 0.95 0.46 0.81 +contre-ordres contre_ordre NOM m p 0.47 0.95 0.01 0.14 +contre-pente contre_pente NOM f s 0 0.34 0 0.34 +contre-performance contre_performance NOM f s 0.14 0.07 0.14 0 +contre-performances contre_performance NOM f p 0.14 0.07 0 0.07 +contre-pied contre_pied NOM m s 0.04 0.61 0.04 0.54 +contre-pieds contre_pied NOM m p 0.04 0.61 0 0.07 +contre-plaqué contre_plaqué NOM m s 0.1 0.54 0.1 0.54 +contre-plongée contre_plongée NOM f s 0.23 0.47 0.23 0.47 +contre-pouvoirs contre_pouvoir NOM m p 0 0.07 0 0.07 +contre-pression contre_pression NOM f s 0.02 0 0.02 0 +contre-productif contre_productif ADJ m s 0.1 0 0.09 0 +contre-productive contre_productif ADJ f s 0.1 0 0.01 0 +contre-propagande contre_propagande NOM f s 0.02 0.07 0.02 0.07 +contre-proposition contre_proposition NOM f s 0.4 0.07 0.39 0.07 +contre-propositions contre_proposition NOM f p 0.4 0.07 0.01 0 +contre-réaction contre_réaction NOM f s 0.01 0 0.01 0 +contre-réforme contre_réforme NOM f s 0 0.61 0 0.61 +contre-révolution contre_révolution NOM f s 0.37 0.34 0.37 0.34 +contre-révolutionnaire contre_révolutionnaire ADJ s 0.14 0.27 0.03 0 +contre-révolutionnaires contre_révolutionnaire ADJ p 0.14 0.27 0.11 0.27 +contre-terrorisme contre_terrorisme NOM m s 0.07 0 0.07 0 +contre-terroriste contre_terroriste ADJ f s 0 0.07 0 0.07 +contre-test contre_test NOM m s 0 0.07 0 0.07 +contre-torpilleur contre_torpilleur NOM m s 0.2 1.22 0.08 0.61 +contre-torpilleurs contre_torpilleur NOM m p 0.2 1.22 0.12 0.61 +contre-transfert contre_transfert NOM m s 0.01 0 0.01 0 +contre-ut contre_ut NOM m 0.04 0.07 0.04 0.07 +contre-voie contre_voie NOM f s 0 0.27 0 0.27 +contre-vérité contre_vérité NOM f s 0.02 0.07 0.02 0.07 +contre-épreuve contre_épreuve NOM f s 0.01 0.07 0 0.07 +contre-épreuves contre_épreuve NOM f p 0.01 0.07 0.01 0 +coolie-pousse coolie_pousse NOM m s 0.01 0 0.01 0 +coq-à-l'âne coq_à_l_âne NOM m 0 0.14 0 0.14 +cordon-bleu cordon_bleu NOM m s 0.27 0.14 0.26 0.07 +cordons-bleus cordon_bleu NOM m p 0.27 0.14 0.01 0.07 +corn flakes corn_flakes NOM f p 0.14 0.07 0.14 0.07 +corn-flakes corn_flakes NOM m p 0.22 0 0.22 0 +corps-mort corps_mort NOM m s 0 0.07 0 0.07 +corpus delicti corpus_delicti NOM m s 0.03 0 0.03 0 +cosy-corner cosy_corner NOM m s 0 0.54 0 0.47 +cosy-corners cosy_corner NOM m p 0 0.54 0 0.07 +cot cot codec cot_cot_codec ONO 0.14 0.07 0.14 0.07 +coton-tige coton_tige NOM m s 0.43 0.07 0.2 0 +cotons-tiges coton_tige NOM m p 0.43 0.07 0.23 0.07 +cou-de-pied cou_de_pied NOM m s 0.01 0.27 0.01 0.27 +couche-culotte couche_culotte NOM f s 0.22 0.27 0.11 0.07 +couches-culottes couche_culotte NOM f p 0.22 0.27 0.11 0.2 +couci-couça couci_couça ADV 0.6 0.2 0.6 0.2 +couloir-symbole couloir_symbole NOM m s 0 0.07 0 0.07 +coup-de-poing coup_de_poing NOM m s 0.13 0 0.13 0 +coupe-chou coupe_chou NOM m s 0.05 0.34 0.05 0.34 +coupe-choux coupe_choux NOM m 0.14 0.27 0.14 0.27 +coupe-cigare coupe_cigare NOM m s 0.02 0.2 0.02 0.07 +coupe-cigares coupe_cigare NOM m p 0.02 0.2 0 0.14 +coupe-circuit coupe_circuit NOM m s 0.13 0.34 0.11 0.27 +coupe-circuits coupe_circuit NOM m p 0.13 0.34 0.02 0.07 +coupe-coupe coupe_coupe NOM m 0.1 0.68 0.1 0.68 +coupe-faim coupe_faim NOM m s 0.09 0.07 0.08 0.07 +coupe-faims coupe_faim NOM m p 0.09 0.07 0.01 0 +coupe-feu coupe_feu NOM m s 0.12 0.14 0.12 0.14 +coupe-file coupe_file NOM m s 0.03 0 0.03 0 +coupe-gorge coupe_gorge NOM m 0.28 0.61 0.28 0.61 +coupe-jarret coupe_jarret NOM m s 0.03 0 0.02 0 +coupe-jarrets coupe_jarret NOM m p 0.03 0 0.01 0 +coupe-ongle coupe_ongle NOM m s 0.05 0 0.05 0 +coupe-ongles coupe_ongles NOM m 0.26 0.14 0.26 0.14 +coupe-papier coupe_papier NOM m 0.36 0.95 0.36 0.95 +coupe-pâte coupe_pâte NOM m s 0 0.07 0 0.07 +coupe-racines coupe_racine NOM m p 0 0.07 0 0.07 +coupe-vent coupe_vent NOM m s 0.31 0.34 0.31 0.34 +coupon-cadeau coupon_cadeau NOM m s 0.01 0 0.01 0 +coups-de-poing coups_de_poing NOM m p 0 0.14 0 0.14 +cour-jardin cour_jardin NOM f s 0 0.07 0 0.07 +course-poursuite course_poursuite NOM f s 0.34 0 0.34 0 +court-bouillon court_bouillon NOM m s 0.29 0.68 0.29 0.68 +court-circuit court_circuit NOM m s 1.53 1.76 1.47 1.55 +court-circuitait court_circuiter VER 0.83 0.54 0 0.07 ind:imp:3s; +court-circuitant court_circuiter VER 0.83 0.54 0 0.07 par:pre; +court-circuite court_circuiter VER 0.83 0.54 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +court-circuiter court_circuiter VER 0.83 0.54 0.29 0.2 inf; +court-circuits court_circuit VER 0.01 0 0.01 0 ind:pre:3s; +court-circuits court_circuits NOM m s 0.02 0 0.02 0 +court-circuité court_circuiter VER m s 0.83 0.54 0.28 0.07 par:pas; +court-circuitée court_circuiter VER f s 0.83 0.54 0.02 0.07 par:pas; +court-circuitées court_circuiter VER f p 0.83 0.54 0.1 0 par:pas; +court-courrier court_courrier NOM m s 0.01 0 0.01 0 +court-jus court_jus NOM m 0.03 0 0.03 0 +court-métrage court_métrage NOM m s 0.17 0 0.17 0 +court-vêtue court_vêtu ADJ f s 0.01 0.14 0.01 0 +court-vêtues court_vêtu ADJ f p 0.01 0.14 0 0.14 +courts-circuits court_circuit NOM m p 1.53 1.76 0.07 0.2 +cous-de-pied cous_de_pied NOM m p 0 0.07 0 0.07 +couteau-scie couteau_scie NOM m s 0.01 0.07 0.01 0.07 +couvre-chef couvre_chef NOM m s 0.58 1.55 0.42 1.35 +couvre-chefs couvre_chef NOM m p 0.58 1.55 0.16 0.2 +couvre-feu couvre_feu NOM m s 3.63 3.11 3.63 3.11 +couvre-feux couvre_feux NOM m p 0.04 0 0.04 0 +couvre-lit couvre_lit NOM m s 0.33 2.77 0.3 2.7 +couvre-lits couvre_lit NOM m p 0.33 2.77 0.03 0.07 +couvre-pied couvre_pied NOM m s 0.01 0.47 0.01 0.47 +couvre-pieds couvre_pieds NOM m 0.01 0.47 0.01 0.47 +cover-girl cover_girl NOM f s 0.14 0.47 0.14 0.2 +cover-girls cover_girl NOM f p 0.14 0.47 0 0.27 +cow-boy cow_boy NOM m s 0.01 5.27 0 3.11 +cow-boys cow_boy NOM m p 0.01 5.27 0.01 2.16 +crapaud-buffle crapaud_buffle NOM m s 0.01 0.14 0.01 0 +crapauds-buffles crapaud_buffle NOM m p 0.01 0.14 0 0.14 +crash-test crash_test NOM m s 0.02 0 0.02 0 +crayon-encre crayon_encre NOM m s 0 0.27 0 0.27 +crayons-feutres crayon_feutre NOM m p 0 0.14 0 0.14 +cric-crac cric_crac ONO 0 0.07 0 0.07 +cris-craft cris_craft NOM m s 0 0.07 0 0.07 +croa croa croa_croa ADV 0 0.41 0 0.14 +croa-croa croa_croa ADV 0 0.41 0 0.27 +croc-en-jambe croc_en_jambe NOM m s 0.16 0.61 0.16 0.61 +croche-patte croche_patte NOM m s 0.17 0.34 0.17 0.34 +croche-pied croche_pied NOM m s 0.56 0.68 0.43 0.41 +croche-pieds croche_pied NOM m p 0.56 0.68 0.14 0.27 +crocs-en-jambe crocs_en_jambe NOM m p 0 0.2 0 0.2 +croque-madame croque_madame NOM m s 0.03 0 0.03 0 +croque-mitaine croque_mitaine NOM m s 0.61 0.2 0.61 0.2 +croque-monsieur croque_monsieur NOM m 0.28 0.14 0.28 0.14 +croque-mort croque_mort NOM m s 2.2 3.31 1.81 1.28 +croque-morts croque_mort NOM m p 2.2 3.31 0.39 2.03 +croquis-minute croquis_minute NOM m 0 0.07 0 0.07 +cross-country cross_country NOM m s 0.05 0.34 0.05 0.34 +crédit-bail crédit_bail NOM m s 0.02 0 0.02 0 +crêtes-de-coq crêtes_de_coq NOM f p 0.03 0.07 0.03 0.07 +cui-cui cui_cui NOM m 0.15 0.34 0.15 0.34 +cuisse-madame cuisse_madame NOM f s 0 0.07 0 0.07 +cul-blanc cul_blanc NOM m s 0.16 0.2 0.01 0.14 +cul-bénit cul_bénit NOM m s 0.08 0.2 0.02 0.07 +cul-cul cul_cul ADJ 0.04 0 0.04 0 +cul-de-basse-fosse cul_de_basse_fosse NOM m s 0.01 0.41 0.01 0.41 +cul-de-four cul_de_four NOM m s 0 0.2 0 0.2 +cul-de-jatte cul_de_jatte NOM m s 0.54 1.42 0.42 1.08 +cul-de-lampe cul_de_lampe NOM m s 0.01 0.2 0.01 0.14 +cul-de-plomb cul_de_plomb NOM m s 0 0.07 0 0.07 +cul-de-porc cul_de_porc NOM m s 0.02 0 0.02 0 +cul-de-poule cul_de_poule NOM m s 0 0.14 0 0.14 +cul-de-sac cul_de_sac NOM m s 0.8 1.55 0.75 1.22 +cul-terreux cul_terreux NOM m 2.23 1.28 1.6 0.41 +culs-blancs cul_blanc NOM m p 0.16 0.2 0.14 0.07 +culs-bénits cul_bénit NOM m p 0.08 0.2 0.06 0.14 +culs-de-basse-fosse culs_de_basse_fosse NOM m p 0 0.27 0 0.27 +culs-de-jatte cul_de_jatte NOM m p 0.54 1.42 0.12 0.34 +culs-de-lampe cul_de_lampe NOM m p 0.01 0.2 0 0.07 +culs-de-sac cul_de_sac NOM m p 0.8 1.55 0.05 0.34 +culs-terreux cul_terreux NOM m p 2.23 1.28 0.63 0.88 +cumulo-nimbus cumulo_nimbus NOM m 0.02 0.14 0.02 0.14 +cure-dent cure_dent NOM m s 1.39 0.88 0.6 0.14 +cure-dents cure_dent NOM m p 1.39 0.88 0.78 0.74 +cure-pipe cure_pipe NOM m s 0.07 0 0.05 0 +cure-pipes cure_pipe NOM m p 0.07 0 0.02 0 +curriculum vitae curriculum_vitae NOM m 0.13 0.74 0.13 0.74 +cuti-réaction cuti_réaction NOM f s 0 0.07 0 0.07 +cyclo-cross cyclo_cross NOM m 0 0.07 0 0.07 +cyclo-pousse cyclo_pousse NOM m 0.05 0 0.05 0 +céphalo-rachidien céphalo_rachidien ADJ m s 0.3 0 0.3 0 +cérébro-spinale cérébro_spinal ADJ f s 0.03 0.14 0.03 0.14 +côtes-du-rhône côtes_du_rhône NOM m s 0 0.47 0 0.47 +d'abord d_abord ADV 175.45 169.32 175.45 169.32 +d'emblée d_emblée ADV 1.31 8.31 1.31 8.31 +d'ores et déjà d_ores_et_déjà ADV 0.26 1.28 0.26 1.28 +dalaï-lama dalaï_lama NOM m s 0 0.2 0 0.2 +dame-jeanne dame_jeanne NOM f s 0.01 0.2 0.01 0.07 +dames-jeannes dame_jeanne NOM f p 0.01 0.2 0 0.14 +dare dare dare_dare ADV 0.21 1.55 0.04 0.27 +dare-dare dare_dare ADV 0.21 1.55 0.17 1.28 +de amicis de_amicis NOM m s 0 0.07 0 0.07 +de auditu de_auditu ADV 0 0.07 0 0.07 +de facto de_facto ADV 0.16 0.07 0.16 0.07 +de guingois de_guingois ADV 0.01 2.64 0.01 2.64 +de plano de_plano ADV 0.04 0 0.04 0 +de profundis de_profundis NOM m 0.06 0.41 0.06 0.41 +de santis de_santis NOM m s 0.1 0 0.1 0 +de traviole de_traviole ADV 0.43 1.28 0.43 1.28 +de visu de_visu ADV 1.02 0.54 1.02 0.54 +delirium tremens delirium_tremens NOM m 0.07 0.27 0.07 0.27 +della francesca della_francesca NOM m s 0.34 0.2 0.34 0.2 +della porta della_porta NOM m s 0 0.07 0 0.07 +della robbia della_robbia NOM m s 0 0.07 0 0.07 +delta-plane delta_plane NOM m s 0.03 0.07 0.03 0.07 +demi-barbare demi_barbare NOM s 0 0.07 0 0.07 +demi-bas demi_bas NOM m 0.01 0.14 0.01 0.14 +demi-bonheur demi_bonheur NOM m s 0 0.07 0 0.07 +demi-bottes demi_botte NOM f p 0 0.14 0 0.14 +demi-bouteille demi_bouteille NOM f s 0.41 0.47 0.41 0.47 +demi-brigade demi_brigade NOM f s 0 0.68 0 0.61 +demi-brigades demi_brigade NOM f p 0 0.68 0 0.07 +demi-cent demi_cent NOM m s 0.01 0.07 0.01 0.07 +demi-centimètre demi_centimètre NOM m s 0.02 0.2 0.02 0.2 +demi-centre demi_centre NOM m s 0 0.07 0 0.07 +demi-cercle demi_cercle NOM m s 0.12 4.8 0.11 4.46 +demi-cercles demi_cercle NOM m p 0.12 4.8 0.01 0.34 +demi-chagrin demi_chagrin NOM m s 0 0.07 0 0.07 +demi-clair demi_clair NOM m s 0 0.07 0 0.07 +demi-clarté demi_clarté NOM f s 0 0.2 0 0.2 +demi-cloison demi_cloison NOM f s 0 0.2 0 0.2 +demi-coma demi_coma NOM m s 0.01 0.27 0.01 0.27 +demi-confidence demi_confidence NOM f s 0 0.07 0 0.07 +demi-conscience demi_conscience NOM f s 0 0.2 0 0.2 +demi-cylindre demi_cylindre NOM m s 0 0.14 0 0.14 +demi-degré demi_degré NOM m s 0.01 0 0.01 0 +demi-deuil demi_deuil NOM m s 0 0.34 0 0.34 +demi-dieu demi_dieu NOM m s 0.47 0.47 0.47 0.47 +demi-dieux demi_dieux NOM m p 0.16 0.47 0.16 0.47 +demi-dose demi_dose NOM f s 0.03 0 0.03 0 +demi-douzaine demi_douzaine NOM f s 1.34 6.55 1.34 6.55 +demi-dévêtu demi_dévêtu ADJ m s 0 0.14 0 0.07 +demi-dévêtue demi_dévêtu ADJ f s 0 0.14 0 0.07 +demi-figure demi_figure NOM f s 0 0.07 0 0.07 +demi-finale demi_finale NOM f s 1.13 0 0.87 0 +demi-finales demi_finale NOM f p 1.13 0 0.26 0 +demi-finaliste demi_finaliste NOM s 0.01 0 0.01 0 +demi-fond demi_fond NOM m s 0.21 0.14 0.21 0.14 +demi-fou demi_fou NOM m s 0.14 0.14 0.14 0 +demi-fous demi_fou NOM m p 0.14 0.14 0 0.14 +demi-frère demi_frère NOM m s 2.7 2.91 2.17 2.91 +demi-frères demi_frère NOM m p 2.7 2.91 0.53 0 +demi-gros demi_gros NOM m 0.01 0.47 0.01 0.47 +demi-heure demi_heure NOM f s 26.65 23.18 26.65 22.43 +demi-heures heur NOM f p 0.28 1.15 0.22 0.07 +demi-jour demi_jour NOM m s 0.02 1.28 0.02 1.28 +demi-journée demi_journée NOM f s 1.65 1.08 1.6 1.01 +demi-journées demi_journée NOM f p 1.65 1.08 0.05 0.07 +demi-juif demi_juif NOM m s 0.01 0 0.01 0 +demi-kilomètre demi_kilomètre NOM m s 0.14 0.14 0.14 0.14 +demi-liberté demi_liberté NOM f s 0 0.07 0 0.07 +demi-lieue demi_lieue NOM f s 0.3 0.41 0.3 0.41 +demi-litre demi_litre NOM m s 0.67 0.81 0.67 0.81 +demi-livre demi_livre NOM f s 0.12 0.34 0.12 0.34 +demi-longueur demi_longueur NOM f s 0.06 0 0.06 0 +demi-louis demi_louis NOM m 0 0.07 0 0.07 +demi-lueur demi_lueur NOM f s 0 0.07 0 0.07 +demi-lumière demi_lumière NOM f s 0 0.07 0 0.07 +demi-lune demi_lune NOM f s 1.03 2.36 0.92 2.23 +demi-lunes demi_lune NOM f p 1.03 2.36 0.11 0.14 +demi-luxe demi_luxe NOM m s 0 0.07 0 0.07 +demi-mal demi_mal NOM m s 0 0.07 0 0.07 +demi-mensonge demi_mensonge NOM m s 0.01 0.07 0.01 0.07 +demi-mesure demi_mesure NOM f s 0.39 0.54 0.14 0.14 +demi-mesures demi_mesure NOM f p 0.39 0.54 0.25 0.41 +demi-mille demi_mille NOM m 0 0.07 0 0.07 +demi-milliard demi_milliard NOM m s 0.87 0.07 0.87 0.07 +demi-millimètre demi_millimètre NOM m s 0 0.07 0 0.07 +demi-million demi_million NOM m s 3.08 0.41 3.08 0.41 +demi-minute demi_minute NOM f s 0.04 0.07 0.04 0.07 +demi-mois demi_mois NOM m 0.15 0 0.15 0 +demi-mondaine demi_mondain NOM f s 0 0.74 0 0.27 +demi-mondaines demi_mondain NOM f p 0 0.74 0 0.47 +demi-monde demi_monde NOM m s 0.01 0.14 0.01 0.14 +demi-mort demi_mort NOM m s 0.26 0.27 0.11 0.2 +demi-morte demi_mort NOM f s 0.26 0.27 0.04 0.07 +demi-morts demi_mort NOM m p 0.26 0.27 0.1 0 +demi-mot demi_mot NOM m s 0.19 1.49 0.19 1.49 +demi-muid demi_muid NOM m s 0 0.07 0 0.07 +demi-mètre demi_mètre NOM m s 0 0.54 0 0.54 +demi-nu demi_nu ADV 0.14 0 0.14 0 +demi-nuit demi_nuit NOM f s 0.02 0.27 0.02 0.27 +demi-obscurité demi_obscurité NOM f s 0 1.96 0 1.96 +demi-ouverte demi_ouvert ADJ f s 0 0.07 0 0.07 +demi-ouvrier demi_ouvrier NOM m s 0 0.07 0 0.07 +demi-page demi_page NOM f s 0.05 0.41 0.05 0.41 +demi-paralysé demi_paralysé ADJ m s 0.1 0 0.1 0 +demi-part demi_part NOM f s 0.01 0 0.01 0 +demi-pas demi_pas NOM m 0.21 0.27 0.21 0.27 +demi-pension demi_pension NOM f s 0 0.41 0 0.41 +demi-pensionnaire demi_pensionnaire NOM s 0 0.41 0 0.2 +demi-pensionnaires demi_pensionnaire NOM p 0 0.41 0 0.2 +demi-personne demi_personne ADJ m s 0 0.07 0 0.07 +demi-pied demi_pied NOM m s 0 0.07 0 0.07 +demi-pinte demi_pinte NOM f s 0.07 0.07 0.07 0.07 +demi-pièce demi_pièce NOM f s 0 0.07 0 0.07 +demi-place demi_place NOM f s 0.11 0 0.11 0 +demi-plein demi_plein ADJ m s 0.01 0 0.01 0 +demi-point demi_point NOM m s 0.14 0 0.14 0 +demi-pointes demi_pointe NOM f p 0 0.07 0 0.07 +demi-porte demi_porte NOM f s 0 0.14 0 0.14 +demi-portion demi_portion NOM f s 1.23 0.2 1.18 0 +demi-portions demi_portion NOM f p 1.23 0.2 0.05 0.2 +demi-pouce demi_pouce ADJ m s 0.01 0 0.01 0 +demi-quart demi_quart NOM m s 0 0.07 0 0.07 +demi-queue demi_queue NOM m s 0.01 0.2 0.01 0.2 +demi-ronde demi_rond NOM f s 0 0.34 0 0.34 +demi-réussite demi_réussite NOM f s 0 0.14 0 0.14 +demi-révérence demi_révérence NOM f s 0 0.07 0 0.07 +demi-rêve demi_rêve NOM m s 0 0.2 0 0.2 +demi-saison demi_saison NOM f s 0 0.95 0 0.81 +demi-saisons demi_saison NOM f p 0 0.95 0 0.14 +demi-sang demi_sang NOM m s 0.04 0.54 0.04 0.47 +demi-sangs demi_sang NOM m p 0.04 0.54 0 0.07 +demi-seconde demi_seconde NOM f s 0.13 1.01 0.13 1.01 +demi-section demi_section NOM f s 0 0.41 0 0.41 +demi-sel demi_sel NOM m 0.04 0.47 0.03 0.27 +demi-sels demi_sel NOM m p 0.04 0.47 0.01 0.2 +demi-siècle demi_siècle NOM m s 0.17 5.95 0.17 5.81 +demi-siècles demi_siècle NOM m p 0.17 5.95 0 0.14 +demi-soeur demi_soeur NOM f s 0.5 9.05 0.42 8.92 +demi-soeurs demi_soeur NOM f p 0.5 9.05 0.07 0.14 +demi-solde demi_solde NOM f s 0.01 0.14 0.01 0.07 +demi-soldes demi_solde NOM f p 0.01 0.14 0 0.07 +demi-sommeil demi_sommeil NOM m s 0.25 2.5 0.25 2.43 +demi-sommeils demi_sommeil NOM m p 0.25 2.5 0 0.07 +demi-somnolence demi_somnolence NOM f s 0 0.14 0 0.14 +demi-sourire demi_sourire NOM m s 0 2.84 0 2.77 +demi-sourires demi_sourire NOM m p 0 2.84 0 0.07 +demi-succès demi_succès NOM m 0 0.2 0 0.2 +demi-suicide demi_suicide NOM m s 0 0.07 0 0.07 +demi-talent demi_talent NOM m s 0.05 0 0.05 0 +demi-tarif demi_tarif NOM m s 0.56 0.14 0.56 0.14 +demi-tasse demi_tasse NOM f s 0.08 0.07 0.08 0.07 +demi-teinte demi_teinte NOM f s 0.06 0.95 0.04 0.47 +demi-teintes demi_teinte NOM f p 0.06 0.95 0.02 0.47 +demi-ton demi_ton NOM m s 0.34 0.61 0 0.34 +demi-tonne demi_ton NOM f s 0.34 0.61 0.21 0.07 +demi-tonneau demi_tonneau NOM m s 0 0.07 0 0.07 +demi-tons demi_ton NOM m p 0.34 0.61 0.14 0.2 +demi-tour demi_tour NOM m s 19.27 16.08 19.25 15.88 +demi-tours demi_tour NOM m p 19.27 16.08 0.02 0.2 +demi-tête demi_tête NOM f s 0.11 0.14 0.11 0.14 +demi-verre demi_verre NOM m s 0.3 1.22 0.3 1.22 +demi-vertu demi_vertu NOM f s 0 0.07 0 0.07 +demi-vie demi_vie NOM f s 0.11 0 0.08 0 +demi-vierge demi_vierge NOM f s 0.02 0.2 0.02 0.07 +demi-vierges demi_vierge NOM f p 0.02 0.2 0 0.14 +demi-vies demi_vie NOM f p 0.11 0 0.02 0 +demi-volte demi_volte NOM f s 0.01 0.07 0.01 0 +demi-voltes demi_volte NOM f p 0.01 0.07 0 0.07 +demi-volume demi_volume NOM m s 0 0.07 0 0.07 +demi-volée demi_volée NOM f s 0 0.07 0 0.07 +demi-vérité demi_vérité NOM f s 0.32 0.07 0.32 0.07 +demi-échec demi_échec NOM m s 0 0.07 0 0.07 +dent-de-lion dent_de_lion NOM f s 0.03 0.07 0.03 0.07 +deo gratias deo_gratias NOM m 0.01 0.2 0.01 0.2 +dernier-né dernier_né NOM m s 0.05 1.01 0.05 0.88 +derniers-nés dernier_né NOM m p 0.05 1.01 0 0.14 +dernière-née dernière_née NOM f s 0.01 0.2 0.01 0.2 +dessous-de-bras dessous_de_bras NOM m 0.01 0.07 0.01 0.07 +dessous-de-plat dessous_de_plat NOM m 0.2 0.54 0.2 0.54 +dessous-de-table dessous_de_table NOM m 0.21 0 0.21 0 +dessous-de-verre dessous_de_verre NOM m 0.01 0 0.01 0 +dessus-de-lit dessus_de_lit NOM m 0.09 1.08 0.09 1.08 +deus ex machina deus_ex_machina NOM m 0.16 0.47 0.16 0.47 +deutsche mark deutsche_mark ADJ m s 0.02 0 0.02 0 +deux-chevaux deux_chevaux NOM f 0 1.22 0 1.22 +deux-deux deux_deux NOM m 0.02 0 0.02 0 +deux-mâts deux_mâts NOM m 0.14 0.07 0.14 0.07 +deux-pièces deux_pièces NOM m 0.27 1.82 0.27 1.82 +deux-points deux_points NOM m 0.01 0 0.01 0 +deux-ponts deux_ponts NOM m 0 0.07 0 0.07 +deux-quatre deux_quatre NOM m 0.03 0 0.03 0 +deux-roues deux_roues NOM m 0.11 0 0.11 0 +dies irae dies_irae NOM m 0.54 0.14 0.54 0.14 +dieu-roi dieu_roi NOM m s 0.01 0.07 0.01 0.07 +dignus est intrare dignus_est_intrare ADV 0 0.07 0 0.07 +directeur-adjoint directeur_adjoint NOM m s 0.14 0 0.14 0 +disc-jockey disc_jockey NOM m s 0.18 0.07 0.16 0 +disc-jockeys disc_jockey NOM m p 0.18 0.07 0.03 0.07 +disciple-roi disciple_roi NOM s 0 0.07 0 0.07 +disque-jockey disque_jockey NOM m s 0.01 0.07 0.01 0.07 +dix-cors dix_cors NOM m 0.03 0.88 0.03 0.88 +dix-huit dix_huit ADJ:num 4.44 31.69 4.44 31.69 +dix-huitième dix_huitième NOM s 0.16 0.27 0.16 0.27 +dix-neuf dix_neuf ADJ:num 2.11 10.54 2.11 10.54 +dix-neuvième dix_neuvième ADJ 0.15 1.22 0.15 1.22 +dix-sept dix_sept ADJ:num 3.69 19.59 3.69 19.59 +dix-septième dix_septième ADJ 0.22 1.22 0.22 1.22 +dog-cart dog_cart NOM m s 0.04 0 0.04 0 +dommages-intérêts dommages_intérêts NOM m p 0.04 0 0.04 0 +donnant-donnant donnant_donnant ADV 0.73 0.41 0.73 0.41 +dos-d'âne dos_d_âne NOM m 0.01 0.34 0.01 0.34 +double-cliquer double_cliquer VER 0.09 0 0.01 0 inf; +double-cliqué double_cliquer VER m s 0.09 0 0.07 0 par:pas; +double-croche double_croche NOM f s 0.01 0 0.01 0 +double-décimètre double_décimètre NOM m s 0 0.07 0 0.07 +double-fond double_fond NOM m s 0.01 0 0.01 0 +double-six double_six NOM m s 0.14 0.2 0.14 0.2 +douce-amère douce_amère ADJ f s 0.06 0.27 0.06 0.27 +douces-amères douce_amère NOM f p 0 0.14 0 0.07 +doux-amer doux_amer ADJ m s 0.04 0 0.04 0 +downing street downing_street NOM f s 0 0.34 0 0.34 +dream team dream_team NOM f s 0.07 0 0.07 0 +dressing-room dressing_room NOM m s 0.01 0 0.01 0 +drive-in drive_in NOM m s 0.94 0 0.94 0 +droit-fil droit_fil NOM m s 0 0.07 0 0.07 +drone-espion drone_espion NOM m s 0.02 0 0.02 0 +ducs-d'albe duc_d_albe NOM m p 0 0.07 0 0.07 +duffel-coat duffel_coat NOM m s 0.01 0.07 0.01 0.07 +duffle-coat duffle_coat NOM m s 0 0.34 0 0.27 +duffle-coats duffle_coat NOM m p 0 0.34 0 0.07 +dum-dum dum_dum ADJ 0.2 0.27 0.2 0.27 +dure-mère dure_mère NOM f s 0.02 0.07 0.02 0.07 +décision-clé décision_clé NOM f s 0.01 0 0.01 0 +décret-loi décret_loi NOM m s 0.03 0.07 0.03 0.07 +décrochez-moi-ça décrochez_moi_ça NOM m 0 0.07 0 0.07 +déjà-vu déjà_vu NOM m 0.01 0.34 0.01 0.34 +délégué-général délégué_général ADJ m s 0 0.14 0 0.14 +délégué-général délégué_général NOM m s 0 0.14 0 0.14 +démocrate-chrétien démocrate_chrétien ADJ m s 0.21 0.14 0.21 0.07 +démocrates-chrétiens démocrate_chrétien NOM p 0.1 0.27 0.1 0.27 +démonte-pneu démonte_pneu NOM m s 0.26 0.2 0.25 0.07 +démonte-pneus démonte_pneu NOM m p 0.26 0.2 0.01 0.14 +député-maire député_maire NOM m s 0 0.34 0 0.34 +dépôt-vente dépôt_vente NOM m s 0.03 0 0.03 0 +déshabillage-éclair déshabillage_éclair NOM m s 0 0.07 0 0.07 +détective-conseil détective_conseil NOM s 0.02 0 0.01 0 +détectives-conseils détective_conseil NOM p 0.02 0 0.01 0 +e-commerce e_commerce NOM m s 0.03 0 0.03 0 +e-mail e_mail NOM m s 6.47 0 4.16 0 +e-mails e_mail NOM m p 6.47 0 2.32 0 +east river east_river NOM f s 0 0.07 0 0.07 +eau-de-vie eau_de_vie NOM f s 3.17 4.73 3.05 4.73 +eau-forte eau_forte NOM f s 0.3 0.27 0.3 0.27 +eau-minute eau_minute NOM f s 0.01 0 0.01 0 +eaux-de-vie eau_de_vie NOM f p 3.17 4.73 0.12 0 +eaux-fortes eaux_fortes NOM f p 0 0.14 0 0.14 +ecce homo ecce_homo ADV 0.2 0.2 0.2 0.2 +elle-même elle_même PRO:per f s 17.88 113.51 17.88 113.51 +elles-mêmes elles_mêmes PRO:per f p 2.21 14.86 2.21 14.86 +emporte-pièce emporte_pièce NOM m 0 0.95 0 0.95 +en catimini en_catimini ADV 0.12 1.42 0.12 1.42 +en loucedé en_loucedé ADV 0.16 0.47 0.16 0.47 +en tapinois en_tapinois ADV 0.25 0.68 0.25 0.68 +en-avant en_avant NOM m 0.01 0.07 0.01 0.07 +en-but en_but NOM m 0.32 0 0.32 0 +en-cas en_cas NOM m 1.44 1.08 1.44 1.08 +en-cours en_cours NOM m 0.01 0 0.01 0 +en-dehors en_dehors NOM m 0.36 0.07 0.36 0.07 +en-tête en_tête NOM m s 0.44 2.77 0.39 2.64 +en-têtes en_tête NOM m p 0.44 2.77 0.05 0.14 +enfant-robot enfant_robot NOM s 0.17 0 0.16 0 +enfant-roi enfant_roi NOM s 0.02 0.2 0.02 0.14 +enfants-robots enfant_robot NOM m p 0.17 0 0.01 0 +enfants-rois enfant_roi NOM m p 0.02 0.2 0 0.07 +enquêtes-minute enquête_minute NOM f p 0 0.07 0 0.07 +enseignant-robot enseignant_robot NOM m s 0 0.07 0 0.07 +entr'acte entr_acte NOM m s 0.27 0 0.14 0 +entr'actes entr_acte NOM m p 0.27 0 0.14 0 +entr'aimer entr_aimer VER 0 0.07 0 0.07 inf; +entr'apercevoir entr_apercevoir VER 0.03 1.08 0.01 0.27 inf; +entr'aperçu entr_apercevoir VER m s 0.03 1.08 0 0.14 par:pas; +entr'aperçue entr_apercevoir VER f s 0.03 1.08 0.02 0.34 par:pas; +entr'aperçues entr_apercevoir VER f p 0.03 1.08 0 0.07 par:pas; +entr'aperçus entr_apercevoir VER m p 0.03 1.08 0 0.27 ind:pas:1s;par:pas; +entr'appellent entr_appeler VER 0 0.07 0 0.07 ind:pre:3p; +entr'ouvert entr_ouvert ADJ m s 0.01 1.49 0 0.41 +entr'ouverte entr_ouvert ADJ f s 0.01 1.49 0.01 0.74 +entr'ouvertes entr_ouvert ADJ f p 0.01 1.49 0 0.27 +entr'ouverts entr_ouvert ADJ m p 0.01 1.49 0 0.07 +entr'égorgent entr_égorger VER 0 0.2 0 0.07 ind:pre:3p; +entr'égorger entr_égorger VER 0 0.2 0 0.07 inf; +entr'égorgèrent entr_égorger VER 0 0.2 0 0.07 ind:pas:3p; +entre-deux entre_deux NOM m 0.34 0.81 0.34 0.81 +entre-deux-guerres entre_deux_guerres NOM m 0.1 0.74 0.1 0.74 +entre-déchiraient entre_déchirer VER 0.04 0.61 0.02 0.14 ind:imp:3p; +entre-déchirait entre_déchirer VER 0.04 0.61 0 0.07 ind:imp:3s; +entre-déchire entre_déchirer VER 0.04 0.61 0.01 0 ind:pre:3s; +entre-déchirent entre_déchirer VER 0.04 0.61 0 0.14 ind:pre:3p; +entre-déchirer entre_déchirer VER 0.04 0.61 0.01 0.2 inf; +entre-déchirèrent entre_déchirer VER 0.04 0.61 0 0.07 ind:pas:3p; +entre-dévorant entre_dévorer VER 0.3 0.34 0.01 0.07 par:pre; +entre-dévorent entre_dévorer VER 0.3 0.34 0.25 0.07 ind:pre:3p; +entre-dévorer entre_dévorer VER 0.3 0.34 0.05 0.14 inf; +entre-dévorèrent entre_dévorer VER 0.3 0.34 0 0.07 ind:pas:3p; +entre-jambe entre_jambe NOM m s 0.03 0.07 0.03 0.07 +entre-jambes entre_jambes NOM m 0.07 0.07 0.07 0.07 +entre-rail entre_rail NOM m s 0.01 0 0.01 0 +entre-regardait entre_regarder VER 0 0.34 0 0.07 ind:imp:3s; +entre-regardent entre_regarder VER 0 0.34 0 0.07 ind:pre:3p; +entre-regardèrent entre_regarder VER 0 0.34 0 0.14 ind:pas:3p; +entre-regardés entre_regarder VER m p 0 0.34 0 0.07 par:pas; +entre-temps entre_temps ADV 4.04 7.97 4.04 7.97 +entre-tuaient entre_tuer VER 2.63 1.01 0.01 0 ind:imp:3p; +entre-tuait entre_tuer VER 2.63 1.01 0 0.14 ind:imp:3s; +entre-tue entre_tuer VER 2.63 1.01 0.23 0.07 ind:pre:3s; +entre-tuent entre_tuer VER 2.63 1.01 0.55 0.07 ind:pre:3p; +entre-tuer entre_tuer VER 2.63 1.01 1.33 0.68 inf; +entre-tueront entre_tuer VER 2.63 1.01 0.14 0 ind:fut:3p; +entre-tuez entre_tuer VER 2.63 1.01 0.03 0 imp:pre:2p;ind:pre:2p; +entre-tuions entre_tuer VER 2.63 1.01 0.01 0 ind:imp:1p; +entre-tués entre_tuer VER m p 2.63 1.01 0.34 0.07 par:pas; +entrée-sortie entrée_sortie NOM f s 0.01 0 0.01 0 +espace-temps espace_temps NOM m 1.63 0.07 1.63 0.07 +esprit-de-sel esprit_de_sel NOM m s 0 0.07 0 0.07 +esprit-de-vin esprit_de_vin NOM m s 0.01 0.2 0.01 0.2 +essuie-glace essuie_glace NOM m s 1 2.91 0.38 1.01 +essuie-glaces essuie_glace NOM m p 1 2.91 0.62 1.89 +essuie-mains essuie_mains NOM m 0.23 0.27 0.23 0.27 +essuie-tout essuie_tout NOM m 0.11 0.14 0.11 0.14 +est-africain est_africain ADJ m s 0.01 0 0.01 0 +est-allemand est_allemand ADJ m s 0.67 0 0.31 0 +est-allemande est_allemand ADJ f s 0.67 0 0.23 0 +est-allemands est_allemand ADJ m p 0.67 0 0.13 0 +est-ouest est_ouest ADJ 0.38 0.41 0.38 0.41 +et caetera et_caetera ADV 0.72 0.88 0.72 0.88 +et cetera et_cetera ADV 1.14 0.74 1.14 0.74 +et seq et_seq ADV 0 0.07 0 0.07 +eunuques-espions eunuques_espion NOM m p 0 0.14 0 0.14 +euro-africaines euro_africain ADJ f p 0 0.07 0 0.07 +eux-mêmes eux_mêmes PRO:per m p 9.96 48.04 9.96 48.04 +ex abrupto ex_abrupto ADV 0 0.07 0 0.07 +ex nihilo ex_nihilo ADV 0 0.14 0 0.14 +ex-abbé ex_abbé NOM m s 0 0.07 0 0.07 +ex-acteur ex_acteur NOM m s 0 0.07 0 0.07 +ex-adjudant ex_adjudant NOM m s 0 0.14 0 0.14 +ex-agent ex_agent NOM m s 0.09 0 0.09 0 +ex-alcoolo ex_alcoolo NOM s 0.01 0 0.01 0 +ex-allée ex_allée NOM f s 0 0.07 0 0.07 +ex-amant ex_amant NOM m s 0.19 0.34 0.17 0.07 +ex-amante ex_amant NOM f s 0.19 0.34 0.01 0.27 +ex-amants ex_amant NOM m p 0.19 0.34 0.01 0 +ex-ambassadeur ex_ambassadeur NOM m s 0.01 0 0.01 0 +ex-amour ex_amour NOM m s 0.01 0 0.01 0 +ex-appartement ex_appartement NOM m s 0 0.07 0 0.07 +ex-apprenti ex_apprenti NOM m s 0 0.07 0 0.07 +ex-arriviste ex_arriviste NOM s 0 0.07 0 0.07 +ex-artiste ex_artiste NOM s 0 0.07 0 0.07 +ex-assistant ex_assistant NOM m s 0.07 0 0.02 0 +ex-assistante ex_assistant NOM f s 0.07 0 0.04 0 +ex-associé ex_associé NOM m s 0.13 0.07 0.08 0.07 +ex-associés ex_associé NOM m p 0.13 0.07 0.05 0 +ex-ballerine ex_ballerine NOM f s 0.01 0 0.01 0 +ex-banquier ex_banquier NOM m s 0.01 0 0.01 0 +ex-barman ex_barman NOM m s 0.01 0.07 0.01 0.07 +ex-basketteur ex_basketteur NOM m s 0 0.07 0 0.07 +ex-batteur ex_batteur NOM m s 0 0.07 0 0.07 +ex-beatnik ex_beatnik NOM s 0 0.07 0 0.07 +ex-belle-mère ex_belle_mère NOM f s 0.05 0 0.05 0 +ex-bibliothécaire ex_bibliothécaire NOM s 0 0.07 0 0.07 +ex-boss ex_boss NOM m 0.01 0 0.01 0 +ex-boxeur ex_boxeur NOM m s 0.16 0 0.16 0 +ex-branleurs ex_branleur NOM m p 0 0.07 0 0.07 +ex-buteur ex_buteur NOM m s 0.01 0 0.01 0 +ex-camarades ex_camarade NOM p 0.01 0 0.01 0 +ex-capitaine ex_capitaine NOM m s 0.04 0 0.04 0 +ex-caïd ex_caïd NOM m s 0.01 0 0.01 0 +ex-champion ex_champion NOM m s 0.75 0.14 0.71 0.14 +ex-championne ex_champion NOM f s 0.75 0.14 0.01 0 +ex-champions ex_champion NOM m p 0.75 0.14 0.03 0 +ex-chanteur ex_chanteur NOM m s 0.02 0.07 0 0.07 +ex-chanteuse ex_chanteur NOM f s 0.02 0.07 0.02 0 +ex-chauffeur ex_chauffeur NOM m s 0.14 0.07 0.14 0.07 +ex-chef ex_chef NOM s 0.2 0.14 0.2 0.14 +ex-chiropracteur ex_chiropracteur NOM m s 0.01 0 0.01 0 +ex-citation ex_citation NOM f s 0.01 0 0.01 0 +ex-citoyen ex_citoyen NOM m s 0.01 0 0.01 0 +ex-civils ex_civil NOM m p 0.01 0 0.01 0 +ex-collabo ex_collabo NOM s 0 0.07 0 0.07 +ex-collègue ex_collègue NOM s 0.3 0.14 0.03 0.14 +ex-collègues ex_collègue NOM p 0.3 0.14 0.27 0 +ex-colonel ex_colonel NOM m s 0.01 0.14 0.01 0.14 +ex-commando ex_commando NOM m s 0.05 0 0.05 0 +ex-concierge ex_concierge NOM s 0 0.07 0 0.07 +ex-contrebandier ex_contrebandier NOM m s 0.02 0 0.02 0 +ex-copain ex_copain NOM m s 0.28 0 0.26 0 +ex-copains ex_copain NOM m p 0.28 0 0.02 0 +ex-copine ex_copine NOM f s 0.71 0 0.54 0 +ex-copines ex_copine NOM f p 0.71 0 0.18 0 +ex-corps ex_corps NOM m 0.01 0 0.01 0 +ex-couple ex_couple NOM m s 0.01 0 0.01 0 +ex-danseuse ex_danseur NOM f s 0.01 0.14 0.01 0.14 +ex-dealer ex_dealer NOM m s 0.02 0 0.02 0 +ex-dieu ex_dieu NOM m s 0.01 0 0.01 0 +ex-diva ex_diva NOM f s 0 0.07 0 0.07 +ex-drifter ex_drifter NOM m s 0 0.07 0 0.07 +ex-drôlesse ex_drôlesse NOM f s 0 0.07 0 0.07 +ex-dulcinée ex_dulcinée NOM f s 0 0.07 0 0.07 +ex-démon ex_démon NOM m s 0.1 0 0.09 0 +ex-démons ex_démon NOM m p 0.1 0 0.01 0 +ex-enseigne ex_enseigne NOM m s 0 0.07 0 0.07 +ex-enzymes ex_enzyme NOM f p 0 0.07 0 0.07 +ex-esclavagistes ex_esclavagiste NOM p 0.01 0 0.01 0 +ex-femme ex_femme NOM f s 6.75 1.62 6.32 1.62 +ex-femmes ex_femme NOM f p 6.75 1.62 0.43 0 +ex-fiancé ex_fiancé NOM m s 0.18 0.07 0.1 0 +ex-fiancée ex_fiancé NOM f s 0.18 0.07 0.08 0.07 +ex-fils ex_fils NOM m 0 0.07 0 0.07 +ex-flic ex_flic NOM m s 0.27 0.07 0.24 0.07 +ex-flics ex_flic NOM m p 0.27 0.07 0.03 0 +ex-forçats ex_forçat NOM m p 0.01 0 0.01 0 +ex-fusilleurs ex_fusilleur NOM m p 0 0.07 0 0.07 +ex-gang ex_gang NOM m s 0 0.07 0 0.07 +ex-garde ex_garde NOM f s 0.14 0.2 0 0.14 +ex-gardes ex_garde NOM f p 0.14 0.2 0.14 0.07 +ex-gauchiste ex_gauchiste ADJ m s 0 0.07 0 0.07 +ex-gauchiste ex_gauchiste NOM s 0 0.07 0 0.07 +ex-gendre ex_gendre NOM m s 0.01 0 0.01 0 +ex-gonzesse ex_gonzesse NOM f s 0 0.14 0 0.14 +ex-gouverneur ex_gouverneur NOM m s 0.06 0.14 0.06 0.14 +ex-gravosse ex_gravosse NOM f s 0 0.07 0 0.07 +ex-griot ex_griot NOM m s 0 0.07 0 0.07 +ex-griveton ex_griveton NOM m s 0 0.07 0 0.07 +ex-grognasse ex_grognasse NOM f s 0 0.07 0 0.07 +ex-groupe ex_groupe NOM m s 0 0.07 0 0.07 +ex-guenilles ex_guenille NOM f p 0 0.07 0 0.07 +ex-guitariste ex_guitariste NOM s 0 0.07 0 0.07 +ex-génie ex_génie NOM m s 0 0.07 0 0.07 +ex-hippies ex_hippie NOM p 0.02 0 0.02 0 +ex-homme ex_homme NOM m s 0.06 0 0.06 0 +ex-homme-grenouille ex_homme_grenouille NOM m s 0.01 0 0.01 0 +ex-hôpital ex_hôpital NOM m s 0 0.07 0 0.07 +ex-immeuble ex_immeuble NOM m s 0 0.07 0 0.07 +ex-inspecteur ex_inspecteur NOM m s 0.03 0 0.02 0 +ex-inspecteurs ex_inspecteur NOM m p 0.03 0 0.01 0 +ex-journaliste ex_journaliste NOM s 0.02 0.07 0.02 0.07 +ex-junkie ex_junkie NOM m s 0.03 0 0.03 0 +ex-kid ex_kid NOM m s 0 0.27 0 0.27 +ex-leader ex_leader NOM m s 0.02 0 0.02 0 +ex-libris ex_libris NOM m 0 0.14 0 0.14 +ex-lieutenant ex_lieutenant NOM m s 0.01 0 0.01 0 +ex-lit ex_lit NOM m s 0 0.07 0 0.07 +ex-lycée ex_lycée NOM m s 0 0.07 0 0.07 +ex-légionnaire ex_légionnaire NOM m s 0 0.07 0 0.07 +ex-madame ex_madame NOM f 0.03 0.07 0.03 0.07 +ex-maire ex_maire NOM m s 0.01 0 0.01 0 +ex-mari ex_mari NOM m s 5.05 1.08 4.87 1.08 +ex-marine ex_marine NOM f s 0.07 0 0.07 0 +ex-maris ex_mari NOM m p 5.05 1.08 0.19 0 +ex-maître ex_maître NOM m s 0 0.07 0 0.07 +ex-mecs ex_mec NOM m p 0.1 0 0.1 0 +ex-membre ex_membre NOM m s 0.03 0 0.03 0 +ex-mercenaires ex_mercenaire NOM p 0.01 0 0.01 0 +ex-militaire ex_militaire NOM s 0.08 0 0.05 0 +ex-militaires ex_militaire NOM p 0.08 0 0.03 0 +ex-ministre ex_ministre NOM m s 0.06 0.41 0.04 0.41 +ex-ministres ex_ministre NOM m p 0.06 0.41 0.01 0 +ex-miss ex_miss NOM f 0.05 0 0.05 0 +ex-monteur ex_monteur NOM m s 0.02 0 0.02 0 +ex-motard ex_motard NOM m s 0.01 0 0.01 0 +ex-nana ex_nana NOM f s 0.12 0 0.12 0 +ex-officier ex_officier NOM m s 0.05 0.14 0.05 0.14 +ex-opérateur ex_opérateur NOM m s 0 0.07 0 0.07 +ex-palmes ex_palme NOM f p 0.14 0 0.14 0 +ex-para ex_para NOM m s 0.02 0.14 0.02 0.14 +ex-partenaire ex_partenaire NOM s 0.18 0 0.18 0 +ex-patron ex_patron NOM m s 0.2 0 0.2 0 +ex-pensionnaires ex_pensionnaire NOM p 0 0.07 0 0.07 +ex-perroquet ex_perroquet NOM m s 0.01 0 0.01 0 +ex-petit ex_petit NOM m s 0.68 0 0.38 0 +ex-petite ex_petit NOM f s 0.68 0 0.28 0 +ex-petits ex_petit NOM m p 0.68 0 0.03 0 +ex-pharmaciennes ex_pharmacien NOM f p 0 0.07 0 0.07 +ex-pilote ex_pilote ADJ m s 0 0.14 0 0.14 +ex-planton ex_planton NOM m s 0 0.07 0 0.07 +ex-planète ex_planète NOM f s 0.01 0 0.01 0 +ex-plaquée ex_plaqué ADJ f s 0 0.07 0 0.07 +ex-plâtrier ex_plâtrier NOM m s 0 0.07 0 0.07 +ex-poivrots ex_poivrot NOM m p 0.01 0 0.01 0 +ex-premier ex_premier ADJ m s 0.01 0 0.01 0 +ex-premier ex_premier NOM m s 0.01 0 0.01 0 +ex-primaire ex_primaire NOM s 0 0.07 0 0.07 +ex-prison ex_prison NOM f s 0.01 0 0.01 0 +ex-procureur ex_procureur NOM m s 0.03 0 0.03 0 +ex-profession ex_profession NOM f s 0 0.07 0 0.07 +ex-profileur ex_profileur NOM m s 0.01 0 0.01 0 +ex-promoteur ex_promoteur NOM m s 0.01 0 0.01 0 +ex-propriétaire ex_propriétaire NOM s 0.04 0.07 0.04 0.07 +ex-présentateur ex_présentateur NOM m s 0 0.07 0 0.07 +ex-président ex_président NOM m s 0.71 0 0.6 0 +ex-présidents ex_président NOM m p 0.71 0 0.11 0 +ex-prêtre ex_prêtre NOM m s 0.01 0 0.01 0 +ex-putain ex_putain NOM f s 0 0.07 0 0.07 +ex-putes ex_pute NOM f p 0.01 0 0.01 0 +ex-quincaillerie ex_quincaillerie NOM f s 0 0.14 0 0.14 +ex-quincaillier ex_quincaillier NOM m s 0 0.27 0 0.27 +ex-rebelle ex_rebelle ADJ s 0 0.07 0 0.07 +ex-reine ex_reine NOM f s 0.02 0 0.02 0 +ex-roi ex_roi NOM m s 0.01 0.2 0.01 0.2 +ex-républiques ex_république NOM f p 0.01 0 0.01 0 +ex-résidence ex_résidence NOM f s 0.01 0 0.01 0 +ex-révolutionnaire ex_révolutionnaire NOM s 0 0.07 0 0.07 +ex-sacs ex_sac NOM m p 0 0.07 0 0.07 +ex-secrétaire ex_secrétaire NOM s 0.07 0 0.07 0 +ex-sergent ex_sergent NOM m s 0.02 0.14 0.02 0.07 +ex-sergents ex_sergent NOM m p 0.02 0.14 0 0.07 +ex-soldats ex_soldat NOM m p 0 0.07 0 0.07 +ex-solistes ex_soliste NOM p 0 0.07 0 0.07 +ex-standardiste ex_standardiste NOM s 0 0.07 0 0.07 +ex-star ex_star NOM f s 0.14 0 0.14 0 +ex-strip-teaseuse ex_strip_teaseur NOM f s 0 0.07 0 0.07 +ex-super ex_super ADJ m s 0.14 0 0.14 0 +ex-séminariste ex_séminariste NOM s 0 0.07 0 0.07 +ex-sénateur ex_sénateur NOM m s 0 0.14 0 0.14 +ex-sévère ex_sévère ADJ f s 0 0.07 0 0.07 +ex-taulard ex_taulard NOM m s 0.38 0.14 0.28 0.07 +ex-taulards ex_taulard NOM m p 0.38 0.14 0.1 0.07 +ex-teinturier ex_teinturier NOM m s 0.01 0 0.01 0 +ex-tirailleur ex_tirailleur NOM m s 0 0.07 0 0.07 +ex-tueur ex_tueur NOM m s 0.01 0 0.01 0 +ex-tuteur ex_tuteur NOM m s 0.01 0 0.01 0 +ex-union ex_union NOM f s 0 0.07 0 0.07 +ex-usine ex_usine NOM f s 0.01 0 0.01 0 +ex-vedette ex_vedette NOM f s 0.11 0.07 0.11 0.07 +ex-violeurs ex_violeur NOM m p 0.01 0 0.01 0 +ex-voto ex_voto NOM m 0.48 1.69 0.48 1.69 +ex-élève ex_élève NOM s 0.02 0.07 0.02 0.07 +ex-épouse ex_épouse NOM f s 0.3 0.27 0.28 0.27 +ex-épouses ex_épouse NOM f p 0.3 0.27 0.02 0 +ex-équipier ex_équipier NOM m s 0.07 0 0.07 0 +expert-comptable expert_comptable NOM m s 0.23 0.2 0.23 0.2 +extra-dry extra_dry NOM m 0 0.07 0 0.07 +extra-fin extra_fin ADJ m s 0 0.34 0 0.27 +extra-fins extra_fin ADJ m p 0 0.34 0 0.07 +extra-fort extra_fort ADJ m s 0.11 0.2 0.04 0.07 +extra-forte extra_fort ADJ f s 0.11 0.2 0.08 0.14 +extra-lucide extra_lucide ADJ f s 0.05 0.2 0.04 0.14 +extra-lucides extra_lucide ADJ p 0.05 0.2 0.01 0.07 +extra-muros extra_muros ADJ f p 0 0.07 0 0.07 +extra-muros extra_muros ADV 0 0.07 0 0.07 +extra-sensoriel extra_sensoriel ADJ m s 0.06 0 0.02 0 +extra-sensorielle extra_sensoriel ADJ f s 0.06 0 0.04 0 +extra-souples extra_souple ADJ f p 0 0.07 0 0.07 +extra-terrestre extra_terrestre NOM s 3.71 0.34 1.35 0.27 +extra-terrestres extra_terrestre NOM p 3.71 0.34 2.36 0.07 +extra-utérin extra_utérin ADJ m s 0.1 0 0.03 0 +extra-utérine extra_utérin ADJ f s 0.1 0 0.07 0 +extrême-onction extrême_onction NOM f s 0.42 1.62 0.42 1.55 +extrême-orient extrême_orient NOM m s 0 0.07 0 0.07 +extrême-orientale extrême_oriental ADJ f s 0 0.07 0 0.07 +extrêmes-onctions extrême_onction NOM f p 0.42 1.62 0 0.07 +eye-liner eye_liner NOM m s 0.22 0.27 0.22 0.27 +fac-similé fac_similé NOM m s 0.03 0.34 0.02 0.27 +fac-similés fac_similé NOM m p 0.03 0.34 0.01 0.07 +face-à-face face_à_face NOM m 0 0.47 0 0.47 +face-à-main face_à_main NOM m s 0 0.54 0 0.54 +faces-à-main faces_à_main NOM m p 0 0.07 0 0.07 +fair-play fair_play NOM m 0.6 0.14 0.6 0.14 +faire-part faire_part NOM m 0.65 3.04 0.65 3.04 +faire-valoir faire_valoir NOM m 0.2 0.68 0.2 0.68 +fait-divers fait_divers NOM m 0 0.2 0 0.2 +fait-tout fait_tout NOM m 0.01 0.74 0.01 0.74 +faits-divers faits_divers NOM m p 0 0.07 0 0.07 +fan-club fan_club NOM m s 0.28 0.14 0.28 0.14 +far-west far_west NOM m s 0.01 0.07 0.01 0.07 +fast food fast_food NOM m s 2.34 0.47 0.43 0.07 +fast-food fast_food NOM m s 2.34 0.47 1.56 0.34 +fast-foods fast_food NOM m p 2.34 0.47 0.34 0.07 +fausse-couche fausse_couche NOM f s 0.07 0.2 0.07 0.2 +fauteuil-club fauteuil_club NOM m s 0 0.27 0 0.27 +fauteuils-club fauteuils_club NOM m p 0 0.07 0 0.07 +faux-bond faux_bond NOM m 0.01 0.07 0.01 0.07 +faux-bourdon faux_bourdon NOM m s 0.02 0.07 0.02 0.07 +faux-col faux_col NOM m s 0.02 0.34 0.02 0.34 +faux-cul faux_cul NOM m s 0.41 0.07 0.41 0.07 +faux-filet faux_filet NOM m s 0.04 0.34 0.04 0.34 +faux-frère faux_frère ADJ m s 0.01 0 0.01 0 +faux-fuyant faux_fuyant NOM m s 0.22 1.22 0.02 0.47 +faux-fuyants faux_fuyant NOM m p 0.22 1.22 0.2 0.74 +faux-monnayeur faux_monnayeur NOM m s 0.26 0.61 0.01 0.14 +faux-monnayeurs faux_monnayeur NOM m p 0.26 0.61 0.25 0.47 +faux-pas faux_pas NOM m 0.38 0.14 0.38 0.14 +faux-pont faux_pont NOM m s 0.01 0 0.01 0 +faux-sauniers faux_saunier NOM m p 0 0.07 0 0.07 +faux-semblant faux_semblant NOM m s 0.46 1.49 0.37 0.74 +faux-semblants faux_semblant NOM m p 0.46 1.49 0.09 0.74 +faîtes-la-moi faîtes_la_moi NOM m p 0.01 0 0.01 0 +feed-back feed_back NOM m 0.04 0 0.04 0 +feld-maréchal feld_maréchal NOM m s 0.32 0.27 0.32 0.27 +femme-enfant femme_enfant NOM f s 0.35 0.27 0.35 0.27 +femme-fleur femme_fleur NOM f s 0 0.07 0 0.07 +femme-objet femme_objet NOM f s 0.03 0.07 0.03 0.07 +femme-refuge femme_refuge NOM f s 0 0.07 0 0.07 +femme-robot femme_robot NOM f s 0.07 0 0.07 0 +fer-blanc fer_blanc NOM m s 0.08 2.84 0.08 2.84 +fermes-hôtels fermes_hôtel NOM f p 0 0.07 0 0.07 +ferry-boat ferry_boat NOM m s 0.14 0.2 0.14 0.2 +fesse-mathieu fesse_mathieu NOM m s 0 0.07 0 0.07 +feuille-morte feuille_morte ADJ f s 0 0.07 0 0.07 +fier-à-bras fier_à_bras NOM m 0 0.14 0 0.14 +fiers-à-bras fiers_à_bras NOM m p 0 0.27 0 0.27 +fifty-fifty fifty_fifty ADV 0.66 0.14 0.66 0.14 +fil-à-fil fil_à_fil NOM m 0 0.34 0 0.34 +file-la-moi file_la_moi NOM f s 0.01 0 0.01 0 +fille-mère fille_mère NOM f s 0.39 0.41 0.39 0.41 +film-livre film_livre NOM m s 0 0.07 0 0.07 +films-annonces films_annonce NOM m p 0 0.07 0 0.07 +five o'clock five_o_clock NOM m 0.01 0.14 0.01 0.14 +fixe-chaussettes fixe_chaussette NOM f p 0.13 0.2 0.13 0.2 +flanc-garde flanc_garde NOM f s 0.04 0.27 0 0.14 +flancs-gardes flanc_garde NOM f p 0.04 0.27 0.04 0.14 +flash-back flash_back NOM m 0.33 0.74 0.33 0.74 +flatus vocis flatus_vocis NOM m 0 0.07 0 0.07 +flip-flap flip_flap NOM m 0 0.14 0 0.14 +flip-flop flip_flop NOM m 0.07 0 0.07 0 +footballeur-vedette footballeur_vedette NOM m s 0.01 0 0.01 0 +foreign office foreign_office NOM m s 0 2.5 0 2.5 +fou-fou fou_fou ADJ m s 0.08 0 0.08 0 +fou-rire fou_rire NOM m s 0.02 0.14 0.02 0.14 +fourmi-lion fourmi_lion NOM m s 0 0.14 0 0.07 +fourmis-lions fourmi_lion NOM m p 0 0.14 0 0.07 +fourre-tout fourre_tout NOM m 0.28 0.54 0.28 0.54 +fox-terrier fox_terrier NOM m s 0.04 0.47 0.04 0.41 +fox-terriers fox_terrier NOM m p 0.04 0.47 0 0.07 +fox-trot fox_trot NOM m 0.5 1.62 0.5 1.62 +fraiseur-outilleur fraiseur_outilleur NOM m s 0 0.07 0 0.07 +franc-comtois franc_comtois NOM m 0 0.07 0 0.07 +franc-comtoise franc_comtois ADJ f s 0 0.07 0 0.07 +franc-jeu franc_jeu NOM m s 0.56 0 0.56 0 +franc-maçon franc_maçon NOM m s 0.94 2.09 0.38 0.54 +franc-maçonne franc_maçon NOM f s 0.94 2.09 0 0.27 +franc-maçonnerie franc_maçonnerie NOM f s 0.17 0.81 0.17 0.81 +franc-parler franc_parler NOM m s 0.53 0.27 0.53 0.27 +franc-tireur franc_tireur NOM m s 0.64 2.3 0.1 0.81 +franco-africain franco_africain ADJ m s 0.14 0.07 0.14 0.07 +franco-algérienne franco_algérien ADJ f s 0 0.07 0 0.07 +franco-allemand franco_allemand ADJ m s 0.11 0.61 0 0.14 +franco-allemande franco_allemand ADJ f s 0.11 0.61 0.11 0.34 +franco-allemandes franco_allemand ADJ f p 0.11 0.61 0 0.14 +franco-américain franco_américain ADJ m s 0.04 0.68 0.01 0.07 +franco-américaine franco_américain ADJ f s 0.04 0.68 0.03 0.27 +franco-américaines franco_américain ADJ f p 0.04 0.68 0 0.2 +franco-américains franco_américain ADJ m p 0.04 0.68 0 0.14 +franco-anglais franco_anglais ADJ m s 0.01 0.74 0.01 0.27 +franco-anglaise franco_anglais ADJ f s 0.01 0.74 0 0.41 +franco-anglaises franco_anglais NOM f p 0.01 0 0.01 0 +franco-belge franco_belge ADJ f s 0 0.14 0 0.14 +franco-britannique franco_britannique ADJ f s 0.14 2.43 0 1.35 +franco-britanniques franco_britannique ADJ p 0.14 2.43 0.14 1.08 +franco-canadien franco_canadien NOM m s 0.01 0 0.01 0 +franco-chinoises franco_chinois ADJ f p 0 0.07 0 0.07 +franco-italienne franco_italienne ADJ f s 0.01 0 0.01 0 +franco-japonaise franco_japonais ADJ f s 0.01 0 0.01 0 +franco-libanais franco_libanais ADJ m p 0 0.14 0 0.14 +franco-mongole franco_mongol ADJ f s 0 0.14 0 0.14 +franco-polonaise franco_polonais ADJ f s 0 0.07 0 0.07 +franco-russe franco_russe ADJ s 0 1.42 0 1.42 +franco-russes franco_russe NOM p 0 0.2 0 0.07 +franco-soviétique franco_soviétique ADJ s 0 0.14 0 0.14 +franco-syrien franco_syrien ADJ m s 0 0.14 0 0.14 +franco-turque franco_turque ADJ f s 0 0.14 0 0.14 +franco-vietnamien franco_vietnamien ADJ m s 0 0.07 0 0.07 +francs-bourgeois francs_bourgeois NOM m p 0 0.2 0 0.2 +francs-maçons franc_maçon NOM m p 0.94 2.09 0.57 1.28 +francs-tireurs franc_tireur NOM m p 0.64 2.3 0.54 1.49 +free jazz free_jazz NOM m 0 0.07 0 0.07 +free-jazz free_jazz NOM m 0 0.07 0 0.07 +free-lance free_lance NOM s 0.2 0.07 0.2 0.07 +fric-frac fric_frac NOM m 0.25 0.41 0.25 0.41 +frise-poulet frise_poulet NOM m s 0.01 0 0.01 0 +frotti-frotta frotti_frotta NOM m 0.04 0.2 0.04 0.2 +frou-frou frou_frou NOM m s 0.23 0.47 0.09 0.41 +frous-frous frou_frou NOM m p 0.23 0.47 0.14 0.07 +fuel-oil fuel_oil NOM m s 0 0.07 0 0.07 +full-contact full_contact NOM m s 0.04 0 0.04 0 +fume-cigarette fume_cigarette NOM m s 0.27 2.09 0.17 1.82 +fume-cigarettes fume_cigarette NOM m p 0.27 2.09 0.1 0.27 +fur et à mesure fur_et_à_mesure NOM m s 1.62 17.84 1.62 17.84 +fusil-mitrailleur fusil_mitrailleur NOM m s 0.37 0.41 0.37 0.34 +fusiliers-marins fusilier_marin NOM m p 0.04 1.08 0.04 1.08 +fusils-mitrailleurs fusil_mitrailleur NOM m p 0.37 0.41 0 0.07 +fête-dieu fête_dieu NOM f s 0.14 0.54 0.14 0.54 +gagne-pain gagne_pain NOM m 2.01 1.82 2.01 1.82 +gagne-petit gagne_petit NOM m 0.16 0.68 0.16 0.68 +gaine-culotte gaine_culotte NOM f s 0.01 0.07 0.01 0.07 +galerie-refuge galerie_refuge NOM f s 0 0.14 0 0.07 +galeries-refuges galerie_refuge NOM f p 0 0.14 0 0.07 +gallo-romain gallo_romain ADJ m s 0 0.14 0 0.07 +gallo-romains gallo_romain ADJ m p 0 0.14 0 0.07 +garde-barrière garde_barrière NOM m s 0 0.95 0 0.95 +garde-boue garde_boue NOM m 0.05 1.08 0.05 1.08 +garde-champêtre garde_champêtre NOM m s 0 0.54 0 0.47 +garde-chasse garde_chasse NOM m s 0.22 1.42 0.22 1.42 +garde-chiourme garde_chiourme NOM m s 0.13 0.88 0.06 0.54 +garde-corps garde_corps NOM m 0.01 0.34 0.01 0.34 +garde-côte garde_côte NOM m s 1.9 0.14 0.54 0.07 +garde-côtes garde_côte NOM m p 1.9 0.14 1.36 0.07 +garde-feu garde_feu NOM m 0.05 0 0.05 0 +garde-forestier garde_forestier NOM s 0.16 0.14 0.16 0.14 +garde-fou garde_fou NOM m s 0.3 1.89 0.25 1.49 +garde-fous garde_fou NOM m p 0.3 1.89 0.05 0.41 +garde-frontière garde_frontière NOM m s 0.16 0 0.16 0 +garde-malade garde_malade NOM s 0.44 1.15 0.44 1.15 +garde-manger garde_manger NOM m 0.68 2.77 0.68 2.77 +garde-meuble garde_meuble NOM m 0.34 0.2 0.34 0.2 +garde-meubles garde_meubles NOM m 0.16 0.34 0.16 0.34 +garde-pêche garde_pêche NOM m s 0.01 0.07 0.01 0.07 +garde-robe garde_robe NOM f s 2.19 2.77 2.17 2.7 +garde-robes garde_robe NOM f p 2.19 2.77 0.03 0.07 +garde-voie garde_voie NOM m s 0 0.14 0 0.07 +garde-vue garde_vue NOM m 0.25 0 0.25 0 +garde-à-vous garde_à_vous NOM m 0 5.88 0 5.88 +garden-party garden_party NOM f s 0.22 0.34 0.22 0.34 +gardes-barrières garde_barrières NOM p 0 0.14 0 0.14 +gardes-champêtres garde_champêtre NOM m p 0 0.54 0 0.07 +gardes-chasse gardes_chasse NOM m s 0.03 0.41 0.03 0.41 +gardes-chiourme garde_chiourme NOM m p 0.13 0.88 0.04 0.2 +gardes-chiourmes garde_chiourme NOM p 0.13 0.88 0.03 0.14 +gardes-côtes garde_côtes NOM m p 0.31 0 0.31 0 +gardes-françaises garde_française NOM m p 0 0.07 0 0.07 +gardes-frontières garde_frontières NOM m p 0.03 0.41 0.03 0.41 +gardes-voies garde_voie NOM m p 0 0.14 0 0.07 +gardien-chef gardien_chef NOM m s 0.22 0.27 0.22 0.27 +gas-oil gas_oil NOM m s 0.02 0.27 0.02 0.27 +gastro-entérite gastro_entérite NOM f s 0.04 0.07 0.04 0.07 +gastro-entérologue gastro_entérologue NOM s 0.04 0.14 0.04 0.07 +gastro-entérologues gastro_entérologue NOM p 0.04 0.14 0 0.07 +gastro-intestinal gastro_intestinal ADJ m s 0.12 0 0.04 0 +gastro-intestinale gastro_intestinal ADJ f s 0.12 0 0.02 0 +gastro-intestinaux gastro_intestinal ADJ m p 0.12 0 0.05 0 +gengis khan gengis_khan NOM m s 0 0.14 0 0.14 +gentleman-farmer gentleman_farmer NOM m s 0.14 0.27 0.14 0.2 +gentlemen-farmers gentleman_farmer NOM m p 0.14 0.27 0 0.07 +germano-anglaises germano_anglais ADJ f p 0 0.07 0 0.07 +germano-belge germano_belge ADJ f s 0.01 0 0.01 0 +germano-irlandais germano_irlandais ADJ m 0.03 0 0.03 0 +germano-russe germano_russe ADJ m s 0 0.27 0 0.27 +germano-soviétique germano_soviétique ADJ s 0 1.82 0 1.82 +gin-fizz gin_fizz NOM m 0.04 1.01 0.04 1.01 +gin-rami gin_rami NOM m s 0.04 0.07 0.04 0.07 +gin-rummy gin_rummy NOM m s 0.05 0.14 0.05 0.14 +girl friend girl_friend NOM f s 0.14 0 0.14 0 +girl-scout girl_scout NOM f s 0.06 0.14 0.06 0.14 +gla-gla gla_gla ADJ m s 0 0.14 0 0.14 +glisse-la-moi glisse_la_moi NOM f s 0.1 0 0.1 0 +globe-trotter globe_trotter NOM m s 0.22 0.41 0.2 0.27 +globe-trotters globe_trotter NOM m p 0.22 0.41 0.02 0.14 +gna gna gna_gna ONO 0.14 0.14 0.14 0.14 +gnian-gnian gnian_gnian NOM m s 0.01 0 0.01 0 +gobe-mouches gobe_mouches NOM m 0.02 0.14 0.02 0.14 +golf-club golf_club NOM m s 0.01 0.07 0.01 0.07 +gorge-de-pigeon gorge_de_pigeon ADJ m s 0.01 0.14 0.01 0.14 +gouzi-gouzi gouzi_gouzi NOM m 0.06 0.07 0.06 0.07 +grand-angle grand_angle NOM m s 0.06 0 0.06 0 +grand-chose grand_chose PRO:ind m s 28.01 36.08 28.01 36.08 +grand-duc grand_duc NOM m s 2.04 1.89 1.9 0.88 +grand-ducale grand_ducal ADJ f s 0 0.07 0 0.07 +grand-duché grand_duché NOM m s 0.01 0.07 0.01 0.07 +grand-faim grand_faim ADV 0 0.2 0 0.2 +grand-guignol grand_guignol NOM m s 0.01 0 0.01 0 +grand-guignolesque grand_guignolesque ADJ s 0.01 0 0.01 0 +grand-hâte grand_hâte ADV 0 0.07 0 0.07 +grand-hôtel grand_hôtel NOM m s 0 0.07 0 0.07 +grand-maman grand_papa NOM f s 2.35 0.95 0.84 0.27 +grand-maître grand_maître NOM m s 0.1 0.07 0.1 0.07 +grand-messe grand_messe NOM f s 0.29 1.28 0.29 1.28 +grand-mère grand_mère NOM f s 73.22 94.59 72.39 91.76 +grand-mères grand_mère NOM f p 73.22 94.59 0.53 2.16 +grand-neige grand_neige NOM m s 0 0.07 0 0.07 +grand-officier grand_officier NOM m s 0 0.07 0 0.07 +grand-oncle grand_oncle NOM m s 0.45 4.26 0.45 3.65 +grand-papa grand_papa NOM m s 2.35 0.95 1.5 0.68 +grand-peine grand_peine ADV 0.25 4.86 0.25 4.86 +grand-peur grand_peur ADV 0 0.2 0 0.2 +grand-place grand_place NOM f s 0.12 1.35 0.12 1.35 +grand-prêtre grand_prêtre NOM m s 0.11 0.2 0.11 0.2 +grand-père grand_père NOM m s 75.64 96.49 75.19 95.2 +grand-quartier grand_quartier NOM m s 0 0.34 0 0.34 +grand-route grand_route NOM f s 0.27 3.65 0.27 3.58 +grand-routes grand_route NOM f p 0.27 3.65 0 0.07 +grand-rue grand_rue NOM f s 0.64 2.36 0.64 2.36 +grand-salle grand_salle NOM f s 0 0.2 0 0.2 +grand-tante grand_tante NOM f s 1.17 1.76 1.17 1.22 +grand-tantes grand_tante NOM f p 1.17 1.76 0 0.47 +grand-vergue grand_vergue NOM f s 0.05 0 0.05 0 +grand-voile grand_voile NOM f s 0.23 0.27 0.23 0.27 +grande-duchesse grand_duc NOM f s 2.04 1.89 0.09 0.34 +grandes-duchesses grand_duc NOM f p 2.04 1.89 0.01 0.14 +grands-croix grand_croix NOM m p 0 0.07 0 0.07 +grands-ducs grand_duc NOM m p 2.04 1.89 0.05 0.54 +grands-mères grand_mère NOM f p 73.22 94.59 0.3 0.68 +grands-oncles grand_oncle NOM m p 0.45 4.26 0 0.61 +grands-parents grands_parents NOM m p 4.59 9.19 4.59 9.19 +grands-pères grand_père NOM m p 75.64 96.49 0.45 1.28 +grands-tantes grand_tante NOM f p 1.17 1.76 0 0.07 +grape-fruit grape_fruit NOM m s 0 0.27 0 0.27 +gras-double gras_double NOM m s 0.22 1.08 0.22 1.01 +gras-doubles gras_double NOM m p 0.22 1.08 0 0.07 +gratis pro deo gratis_pro_deo ADV 0 0.14 0 0.14 +gratte-ciel gratte_ciel NOM m 1.4 3.04 1.14 3.04 +gratte-ciels gratte_ciel NOM m p 1.4 3.04 0.26 0 +gratte-cul gratte_cul NOM m 0 0.14 0 0.14 +gratte-dos gratte_dos NOM m 0.11 0 0.11 0 +gratte-papier gratte_papier NOM m 0.67 0.54 0.45 0.54 +gratte-papiers gratte_papier NOM m p 0.67 0.54 0.22 0 +gratte-pieds gratte_pieds NOM m 0 0.2 0 0.2 +grenouille-taureau grenouille_taureau NOM f s 0.01 0 0.01 0 +gri-gri gri_gri NOM m s 0.21 0.14 0.21 0.14 +grill-room grill_room NOM m s 0 0.27 0 0.27 +grille-pain grille_pain NOM m 2.9 0.27 2.9 0.27 +grimace-éclair grimace_éclair NOM f s 0.01 0 0.01 0 +grippe-sou grippe_sou NOM m s 0.25 0.14 0.13 0.07 +grippe-sous grippe_sou NOM m p 0.25 0.14 0.12 0.07 +gris-blanc gris_blanc ADJ m s 0 0.2 0 0.2 +gris-bleu gris_bleu ADJ m s 0.3 1.69 0.3 1.69 +gris-gris gris_gris NOM m 0.22 0.74 0.22 0.74 +gris-jaune gris_jaune ADJ m s 0 0.2 0 0.2 +gris-perle gris_perle ADJ m s 0.01 0.14 0.01 0.14 +gris-rose gris_rose ADJ 0 0.41 0 0.41 +gris-vert gris_vert ADJ m s 0.01 1.55 0.01 1.55 +gros-bec gros_bec NOM m s 0.06 0.07 0.06 0 +gros-becs gros_bec NOM m p 0.06 0.07 0 0.07 +gros-cul gros_cul NOM m s 0.04 0.14 0.04 0.14 +gros-grain gros_grain NOM m s 0 0.41 0 0.41 +gros-porteur gros_porteur NOM m s 0.02 0 0.02 0 +grosso modo grosso_modo ADV 0.44 1.89 0.44 1.89 +gréco-latine gréco_latin ADJ f s 0 0.34 0 0.27 +gréco-latines gréco_latin ADJ f p 0 0.34 0 0.07 +gréco-romain gréco_romain ADJ m s 0.46 0.68 0.03 0.14 +gréco-romaine gréco_romain ADJ f s 0.46 0.68 0.42 0.34 +gréco-romaines gréco_romain ADJ f p 0.46 0.68 0.01 0.14 +gréco-romains gréco_romain ADJ m p 0.46 0.68 0 0.07 +guerre-éclair guerre_éclair NOM f s 0.01 0.14 0.01 0.14 +guet-apens guet_apens NOM m 0.68 0.74 0.68 0.74 +guets-apens guets_apens NOM m p 0 0.07 0 0.07 +gueule-de-loup gueule_de_loup NOM f s 0.03 0.07 0.03 0.07 +gueules-de-loup gueules_de_loup NOM f p 0 0.14 0 0.14 +guide-interprète guide_interprète NOM s 0 0.07 0 0.07 +guili-guili guili_guili NOM m 0.16 0.14 0.16 0.14 +gutta-percha gutta_percha NOM f s 0.03 0 0.03 0 +gâte-bois gâte_bois NOM m 0 0.07 0 0.07 +gâte-sauce gâte_sauce NOM m s 0 0.14 0 0.14 +gélatino-bromure gélatino_bromure NOM m s 0 0.07 0 0.07 +hache-paille hache_paille NOM m p 0 0.14 0 0.14 +half-track half_track NOM m s 0.05 0.14 0.04 0.14 +half-tracks half_track NOM m p 0.05 0.14 0.01 0 +halte-garderie halte_garderie NOM f s 0.02 0 0.02 0 +hand-ball hand_ball NOM m s 0.08 0 0.08 0 +happy end happy_end NOM m s 0.51 0.27 0.45 0.27 +happy ends happy_end NOM m p 0.51 0.27 0.05 0 +happy few happy_few NOM m p 0 0.14 0 0.14 +hara-kiri hara_kiri NOM m s 0.29 0.41 0.29 0.41 +hard edge hard_edge NOM m s 0.01 0 0.01 0 +hard-top hard_top NOM m s 0.01 0 0.01 0 +has been has_been NOM m 0.18 0.2 0.18 0.2 +haut-commandement haut_commandement NOM m s 0 1.22 0 1.22 +haut-commissaire haut_commissaire NOM m s 0.03 7.97 0.03 7.57 +haut-commissariat haut_commissariat NOM m s 0.02 0.81 0.02 0.81 +haut-de-chausse haut_de_chausse NOM f s 0.15 0.07 0.14 0.07 +haut-de-chausses haut_de_chausses NOM m 0 0.2 0 0.2 +haut-de-forme haut_de_forme NOM m s 0.45 1.62 0.3 1.42 +haut-fond haut_fond NOM m s 0.08 1.08 0.02 0.61 +haut-le-coeur haut_le_coeur NOM m 0.04 1.01 0.04 1.01 +haut-le-corps haut_le_corps NOM m 0 1.76 0 1.76 +haut-parleur haut_parleur NOM m s 3.65 7.36 2.61 3.99 +haut-parleurs haut_parleur NOM m p 3.65 7.36 1.04 3.38 +haut-relief haut_relief NOM m s 0 0.2 0 0.2 +haute-fidélité haute_fidélité NOM f s 0.03 0.07 0.03 0.07 +hauts-commissaires haut_commissaire NOM m p 0.03 7.97 0 0.41 +hauts-de-chausses haut_de_chausse NOM m p 0.15 0.07 0.01 0 +hauts-de-forme haut_de_forme NOM m p 0.45 1.62 0.14 0.2 +hauts-fonds haut_fond NOM m p 0.08 1.08 0.06 0.47 +hauts-fourneaux haut_fourneau NOM m p 0.01 0.27 0.01 0.27 +hi-fi hi_fi NOM f s 0.87 0.81 0.87 0.81 +hi-han hi_han ONO 0.2 0.14 0.2 0.14 +hic et nunc hic_et_nunc ADV 0 0.41 0 0.41 +high life high_life NOM m s 0.04 0.41 0.04 0.41 +high tech high_tech ADJ s 0.32 0.14 0.04 0.07 +high-life high_life NOM m s 0.27 0.14 0.27 0.14 +high-tech high_tech ADJ 0.32 0.14 0.29 0.07 +hip-hop hip_hop NOM m s 1.74 0 1.74 0 +hispano-américain hispano_américain NOM m s 0.01 0 0.01 0 +hispano-américaine hispano_américain ADJ f s 0.03 0.27 0.03 0.2 +hispano-cubain hispano_cubain ADJ m s 0 0.07 0 0.07 +hispano-mauresque hispano_mauresque ADJ m s 0 0.07 0 0.07 +historico-culturelle historico_culturel ADJ f s 0 0.07 0 0.07 +hit-parade hit_parade NOM m s 0.73 0.68 0.69 0.68 +hit-parades hit_parade NOM m p 0.73 0.68 0.04 0 +hold up hold_up NOM m 7.78 3.38 0.2 0 +hold-up hold_up NOM m 7.78 3.38 7.59 3.38 +home-trainer home_trainer NOM m s 0.01 0 0.01 0 +homme-chien homme_chien NOM m s 0.09 0.14 0.09 0.14 +homme-clé homme_clé NOM m s 0.04 0 0.04 0 +homme-femme homme_femme NOM m s 0.36 0.07 0.36 0.07 +homme-grenouille homme_grenouille NOM m s 0.35 0.2 0.2 0.07 +homme-loup homme_loup NOM m s 0.05 0 0.05 0 +homme-machine homme_machine NOM m s 0.04 0 0.04 0 +homme-oiseau homme_oiseau NOM m s 0.05 0 0.05 0 +homme-orchestre homme_orchestre NOM m s 0.03 0.07 0.03 0.07 +homme-poisson homme_poisson NOM m s 0.06 0 0.06 0 +homme-robot homme_robot NOM m s 0.07 0 0.07 0 +homme-sandwich homme_sandwich NOM m s 0 0.41 0 0.41 +homme-serpent homme_serpent NOM m s 0.02 0.27 0.02 0.27 +hommes-grenouilles homme_grenouille NOM m p 0.35 0.2 0.16 0.14 +homo erectus homo_erectus NOM m 0.04 0 0.04 0 +homo habilis homo_habilis NOM m 0 0.07 0 0.07 +hong kong hong_kong NOM s 0.03 0 0.03 0 +honoris causa honoris_causa ADV 0.16 0.27 0.16 0.27 +hors-bord hors_bord NOM m p 0.45 0.61 0.45 0.61 +hors-cote hors_cote ADJ 0.01 0 0.01 0 +hors-d'oeuvre hors_d_oeuvre NOM m 0.56 1.96 0.56 1.96 +hors-jeu hors_jeu ADJ 1.13 0.2 1.13 0.2 +hors-la-loi hors_la_loi NOM m p 3.21 1.49 3.21 1.49 +hors-piste hors_piste NOM m p 0.45 0 0.45 0 +hors-série hors_série ADJ f s 0.01 0.2 0.01 0.2 +horse-guard horse_guard NOM m s 0.02 0.14 0 0.07 +horse-guards horse_guard NOM m p 0.02 0.14 0.02 0.07 +hot dog hot_dog NOM m s 2.69 0.14 1.31 0.14 +hot dogs hot_dog NOM m p 2.69 0.14 1.38 0 +hot-dog hot_dog NOM m s 6.09 0.27 3.12 0.07 +hot-dogs hot_dog NOM m p 6.09 0.27 2.98 0.2 +house music house_music NOM f s 0.01 0 0.01 0 +house-boat house_boat NOM m s 0.04 0.07 0.02 0 +house-boats house_boat NOM m p 0.04 0.07 0.01 0.07 +huit-reflets huit_reflets NOM m 0 0.27 0 0.27 +humain-robot humain_robot ADJ m s 0.03 0 0.03 0 +hydro-électrique hydro_électrique ADJ s 0 0.07 0 0.07 +hôtel-dieu hôtel_dieu NOM m s 0.01 0.81 0.01 0.81 +hôtel-restaurant hôtel_restaurant NOM m s 0 0.14 0 0.14 +ice cream ice_cream NOM m s 0.02 0.34 0.02 0 +ice-cream ice_cream NOM m s 0.02 0.34 0 0.27 +ice-creams ice_cream NOM m p 0.02 0.34 0 0.07 +ici-bas ici_bas ADV 3.58 2.97 3.58 2.97 +idée-clé idée_clé NOM f s 0.01 0 0.01 0 +idée-force idée_force NOM f s 0.01 0.2 0.01 0.07 +idées-forces idée_force NOM f p 0.01 0.2 0 0.14 +import-export import_export NOM m s 0.47 0.41 0.47 0.41 +in absentia in_absentia ADV 0.02 0 0.02 0 +in abstracto in_abstracto ADV 0 0.2 0 0.2 +in anima vili in_anima_vili ADV 0 0.07 0 0.07 +in cauda venenum in_cauda_venenum ADV 0 0.14 0 0.14 +in extenso in_extenso ADV 0 0.54 0 0.54 +in extremis in_extremis ADV 0.07 2.64 0.07 2.64 +in memoriam in_memoriam ADV 0.15 0 0.15 0 +in pace in_pace NOM m 0.16 0.07 0.16 0.07 +in petto in_petto ADV 0 1.22 0 1.22 +in utero in_utero ADJ f p 0.05 0 0.05 0 +in utero in_utero ADV 0.05 0 0.05 0 +in vino veritas in_vino_veritas ADV 0.05 0 0.05 0 +in vitro in_vitro ADJ 0.22 0.34 0.22 0.34 +in vivo in_vivo ADV 0 0.07 0 0.07 +in-bord in_bord ADJ m s 0.01 0 0.01 0 +in-bord in_bord NOM m s 0.01 0 0.01 0 +in-folio in_folio NOM m 0 0.61 0 0.61 +in-folios in_folios NOM m 0 0.2 0 0.2 +in-octavo in_octavo NOM m 0.01 0.34 0.01 0.34 +in-octavos in_octavos NOM m 0 0.07 0 0.07 +in-quarto in_quarto ADJ 0 0.07 0 0.07 +in-quarto in_quarto NOM m 0 0.07 0 0.07 +in-seize in_seize NOM m 0 0.07 0 0.07 +inch allah inch_allah ONO 0.27 0.47 0.27 0.47 +indemnités-repas indemnités_repa NOM f p 0.01 0 0.01 0 +indo-européen indo_européen ADJ m s 0.11 0.27 0.1 0 +indo-européenne indo_européen ADJ f s 0.11 0.27 0.01 0.07 +indo-européennes indo_européen ADJ f p 0.11 0.27 0 0.14 +indo-européens indo_européen ADJ m p 0.11 0.27 0 0.07 +industrie-clé industrie_clé NOM f s 0.01 0 0.01 0 +infirmière-major infirmière_major NOM f s 0.14 0.14 0.14 0.14 +ingénieur-chimiste ingénieur_chimiste NOM m s 0 0.07 0 0.07 +ingénieur-conseil ingénieur_conseil NOM m s 0 0.14 0 0.14 +intellectuel-phare intellectuel_phare NOM m s 0 0.07 0 0.07 +inter-écoles inter_école NOM f p 0.03 0 0.03 0 +intra muros intra_muros ADV 0.01 0.07 0.01 0.07 +intra-atomique intra_atomique ADJ s 0 0.07 0 0.07 +intra-muros intra_muros ADV 0.01 0.07 0.01 0.07 +intra-rachidienne rachidien ADJ f s 0.23 0.14 0.01 0 +intra-utérine intra_utérin ADJ f s 0.14 0.07 0.04 0 +intra-utérines intra_utérin ADJ f p 0.14 0.07 0.1 0.07 +invisible piston invisible_piston NOM m s 0 0.07 0 0.07 +ipso facto ipso_facto ADV 0.21 0.61 0.21 0.61 +irish coffee irish_coffee NOM m s 0.16 0.14 0.16 0.14 +israélo-arabe israélo_arabe ADJ f s 0.01 0 0.01 0 +israélo-syrienne israélo_syrien ADJ f s 0.14 0 0.14 0 +italo-allemande italo_allemand ADJ f s 0 0.2 0 0.07 +italo-allemandes italo_allemand ADJ f p 0 0.2 0 0.14 +italo-américain italo_américain ADJ m s 0.2 0 0.15 0 +italo-américaine italo_américain ADJ f s 0.2 0 0.04 0 +italo-brésilien italo_brésilien ADJ m s 0 0.07 0 0.07 +italo-français italo_français ADJ m 0 0.14 0 0.07 +italo-françaises italo_français ADJ f p 0 0.14 0 0.07 +italo-irlandais italo_irlandais ADJ m 0.01 0 0.01 0 +italo-polonais italo_polonais ADJ m 0 0.07 0 0.07 +italo-égyptien italo_égyptien ADJ m s 0 0.07 0 0.07 +ite missa est ite_missa_est NOM m 0 0.14 0 0.14 +jam-session jam_session NOM f s 0.16 0 0.14 0 +jam-sessions jam_session NOM f p 0.16 0 0.01 0 +jamais-vu jamais_vu NOM m 0 0.07 0 0.07 +jaune-vert jaune_vert ADJ s 0.01 0.2 0.01 0.2 +jazz-band jazz_band NOM m s 0.02 0.2 0.02 0.2 +jazz-rock jazz_rock NOM m 0.14 0.07 0.14 0.07 +je-m'en-fichiste je_m_en_fichiste ADJ f s 0.01 0 0.01 0 +je-m'en-foutisme je_m_en_foutisme NOM m s 0.01 0.14 0.01 0.14 +je-m'en-foutiste je_m_en_foutiste ADJ s 0.01 0 0.01 0 +je-m'en-foutistes je_m_en_foutiste NOM p 0.03 0.07 0.03 0.07 +je-ne-sais-quoi je_ne_sais_quoi NOM m 0.34 0.47 0.34 0.47 +jean-foutre jean_foutre NOM m 0.41 1.28 0.41 1.28 +jean-le-blanc jean_le_blanc NOM m 0 0.07 0 0.07 +jet society jet_society NOM f s 0 0.07 0 0.07 +jet-set jet_set NOM m s 0.42 0.07 0.42 0.07 +jet-stream jet_stream NOM m s 0.01 0 0.01 0 +jeu-concours jeu_concours NOM m 0.1 0.14 0.1 0.14 +jeune-homme jeune_homme ADJ s 0.1 0 0.1 0 +jiu-jitsu jiu_jitsu NOM m 0.35 0.14 0.35 0.14 +joint-venture joint_venture NOM f s 0.16 0 0.16 0 +joli-coeur joli_coeur ADJ m s 0.01 0 0.01 0 +joli-joli joli_joli ADJ m s 0.26 0.41 0.26 0.41 +judéo-christianisme judéo_christianisme NOM m s 0.01 0 0.01 0 +judéo-chrétienne judéo_chrétien ADJ f s 0.06 0.2 0.04 0.07 +judéo-chrétiennes judéo_chrétien ADJ f p 0.06 0.2 0.01 0.07 +judéo-chrétiens judéo_chrétien ADJ m p 0.06 0.2 0 0.07 +juke-box juke_box NOM m 1.61 1.89 1.58 1.69 +juke-boxes juke_box NOM m p 1.61 1.89 0.03 0.2 +jupe-culotte jupe_culotte NOM f s 0.02 0.34 0.02 0.27 +jupes-culottes jupe_culotte NOM m p 0.02 0.34 0 0.07 +jusqu'au jusqu_au PRE 0.34 0.07 0.34 0.07 +jusqu'à jusqu_à PRE 0.81 0.27 0.81 0.27 +jusque-là jusque_là ADV 7.81 29.53 7.81 29.53 +juste-milieu juste_milieu NOM m 0 0.07 0 0.07 +k-o k_o ADJ 0.02 0.07 0.02 0.07 +k-way k_way NOM m s 0.06 0.2 0.06 0.2 +kala-azar kala_azar NOM m s 0 0.07 0 0.07 +kif-kif kif_kif ADJ s 0.2 0.81 0.2 0.81 +kilomètres-heure kilomètre_heure NOM m p 0.14 0.41 0.14 0.41 +king-charles king_charles NOM m 0 0.07 0 0.07 +knock-out knock_out ADJ m s 0.19 0.2 0.19 0.2 +kung fu kung_fu NOM m s 1.12 0 0.1 0 +kung-fu kung_fu NOM m s 1.12 0 1.01 0 +kyrie eleison kyrie_eleison NOM m 0.41 0.07 0.41 0.07 +l-dopa l_dopa NOM f s 0.05 0 0.05 0 +la plata la_plata NOM s 0.01 0.14 0.01 0.14 +la-la-la la_la_la ART:def f s 0.14 0.07 0.14 0.07 +lacrima-christi lacrima_christi NOM m 0 0.07 0 0.07 +lacryma christi lacryma_christi NOM m s 0 0.34 0 0.14 +lacryma-christi lacryma_christi NOM m s 0 0.34 0 0.2 +laisse-la-moi laisse_la_moi NOM f s 0.14 0 0.14 0 +laisser-aller laisser_aller NOM m 0.75 3.38 0.75 3.38 +laisser-faire laisser_faire NOM m 0.01 0.07 0.01 0.07 +laissez-faire laissez_faire NOM m 0.01 0 0.01 0 +laissez-passer laissez_passer NOM m 4 1.96 4 1.96 +laissé-pour-compte laissé_pour_compte NOM m s 0 0.07 0 0.07 +laissés-pour-compte laissés_pour_compte NOM m p 0.23 0.07 0.23 0.07 +lampe-phare lampe_phare NOM f s 0 0.07 0 0.07 +lampe-tempête lampe_tempête NOM f s 0 0.95 0 0.68 +lampes-tempête lampe_tempête NOM f p 0 0.95 0 0.27 +lance-engins lance_engins NOM m 0.02 0 0.02 0 +lance-flamme lance_flamme NOM m s 0.06 0 0.06 0 +lance-flammes lance_flammes NOM m 1.06 0.61 1.06 0.61 +lance-fusée lance_fusée NOM m s 0.01 0 0.01 0 +lance-fusées lance_fusées NOM m 0.12 0.61 0.12 0.61 +lance-grenade lance_grenade NOM m s 0.02 0 0.02 0 +lance-grenades lance_grenades NOM m 0.34 0 0.34 0 +lance-missiles lance_missiles NOM m 0.26 0.07 0.26 0.07 +lance-pierre lance_pierre NOM m s 0.25 0.07 0.25 0.07 +lance-pierres lance_pierres NOM m 0.39 1.42 0.39 1.42 +lance-roquette lance_roquette NOM m s 0.06 0 0.06 0 +lance-roquettes lance_roquettes NOM m 0.72 0.14 0.72 0.14 +lance-torpille lance_torpille NOM m s 0 0.07 0 0.07 +lance-torpilles lance_torpilles NOM m 0.03 0.41 0.03 0.41 +lanterne-tempête lanterne_tempête NOM f s 0 0.07 0 0.07 +lapis-lazuli lapis_lazuli NOM m 0.01 0.41 0.01 0.41 +latino-américain latino_américain NOM m s 0.1 0.07 0.03 0.07 +latino-américaine latino_américain NOM f s 0.1 0.07 0.03 0 +latino-américains latino_américain NOM m p 0.1 0.07 0.04 0 +laurier-cerise laurier_cerise NOM m s 0 0.2 0 0.07 +laurier-rose laurier_rose NOM m s 0.14 1.69 0.04 0.2 +lauriers-cerises laurier_cerise NOM m p 0 0.2 0 0.14 +lauriers-roses laurier_rose NOM m p 0.14 1.69 0.1 1.49 +lave-auto lave_auto NOM m s 0.06 0 0.06 0 +lave-glace lave_glace NOM m s 0.03 0.2 0.03 0.2 +lave-linge lave_linge NOM m 0.83 0 0.83 0 +lave-mains lave_mains NOM m 0 0.07 0 0.07 +lave-pont lave_pont NOM m s 0 0.14 0 0.07 +lave-ponts lave_pont NOM m p 0 0.14 0 0.07 +lave-vaisselle lave_vaisselle NOM m 0.88 0.2 0.88 0.2 +lettre-clé lettre_clé NOM f s 0.14 0 0.14 0 +librairie-papeterie librairie_papeterie NOM f s 0 0.2 0 0.2 +libre-arbitre libre_arbitre NOM m s 0.12 0.14 0.12 0.14 +libre-penseur libre_penseur NOM m s 0.04 0.14 0.04 0.14 +libre-penseuse libre_penseur NOM f s 0.04 0.14 0.01 0 +libre-service libre_service NOM m s 0.04 0.34 0.04 0.34 +libre-échange libre_échange NOM m 0.32 0.14 0.32 0.14 +libre-échangiste libre_échangiste NOM s 0.03 0 0.03 0 +lie-de-vin lie_de_vin ADJ 0 1.08 0 1.08 +lieu-dit lieu_dit NOM m s 0 0.88 0 0.88 +lieutenant-colonel lieutenant_colonel NOM m s 1.74 1.42 1.73 1.42 +lieutenant-pilote lieutenant_pilote NOM m s 0 0.07 0 0.07 +lieutenants-colonels lieutenant_colonel NOM m p 1.74 1.42 0.01 0 +lieux-dits lieux_dits NOM m p 0 0.41 0 0.41 +lit-bateau lit_bateau NOM m s 0 0.81 0 0.81 +lit-cage lit_cage NOM m s 0.01 1.62 0.01 1.15 +lit-divan lit_divan NOM m s 0 0.2 0 0.2 +lits-cages lit_cage NOM m p 0.01 1.62 0 0.47 +living-room living_room NOM m s 0.23 2.23 0.23 2.23 +livre-cassette livre_cassette NOM m s 0.03 0 0.03 0 +livres-club livres_club NOM m p 0 0.07 0 0.07 +lock-out lock_out NOM m 0.11 0 0.11 0 +lock-outés lock_outer VER m p 0 0.07 0 0.07 par:pas; +long-courrier long_courrier NOM m s 0.26 0.61 0.25 0.47 +long-courriers long_courrier NOM m p 0.26 0.61 0.01 0.14 +long-métrage long_métrage NOM m s 0.06 0 0.06 0 +longue-vue longue_vue NOM f s 0.3 2.64 0.29 2.5 +longues-vues longue_vue NOM f p 0.3 2.64 0.01 0.14 +lord-maire lord_maire NOM m s 0.02 0.07 0.02 0.07 +louis-philippard louis_philippard ADJ m s 0 0.34 0 0.07 +louis-philipparde louis_philippard ADJ f s 0 0.34 0 0.14 +louis-philippards louis_philippard ADJ m p 0 0.34 0 0.14 +louise-bonne louise_bonne NOM f s 0 0.07 0 0.07 +loup-cervier loup_cervier NOM m s 0 0.14 0 0.07 +loup-garou loup_garou NOM m s 3.98 1.22 3.35 0.88 +loups-cerviers loup_cervier NOM m p 0 0.14 0 0.07 +loups-garous loup_garou NOM m p 3.98 1.22 0.63 0.34 +lui-même lui_même PRO:per m s 46.58 202.3 46.58 202.3 +là-bas là_bas ADV 263.15 117.7 263.15 117.7 +là-dedans là_dedans ADV 74 23.58 74 23.58 +là-dehors là_dehors ADV 1.3 0 1.3 0 +là-derrière là_derrière ADV 1.14 0.14 1.14 0.14 +là-dessous là_dessous ADV 7.12 4.32 7.12 4.32 +là-dessus là_dessus ADV 30.89 32.5 30.89 32.5 +là-devant là_devant ADV 0 0.14 0 0.14 +là-haut là_haut ADV 67.78 42.7 67.78 42.7 +lèche-botte lèche_botte NOM m s 0.11 0 0.11 0 +lèche-bottes lèche_bottes NOM m 0.68 0.34 0.68 0.34 +lèche-cul lèche_cul NOM m s 1.29 0.61 1.29 0.61 +lèche-vitrine lèche_vitrine NOM m s 0.26 0.07 0.26 0.07 +lèche-vitrines lèche_vitrines NOM m 0.07 0.2 0.07 0.2 +lèse-majesté lèse_majesté NOM f 0.03 0.27 0.03 0.27 +m'as-tu-vu m_as_tu_vu ADJ s 0.03 0 0.03 0 +ma-jong ma_jong NOM m s 0.02 0.07 0.02 0.07 +machine-outil machine_outil NOM f s 0.11 0.47 0 0.07 +machines-outils machine_outil NOM f p 0.11 0.47 0.11 0.41 +made in made_in ADV 1.06 0.88 1.06 0.88 +madre de dios madre_de_dios NOM s 0 0.07 0 0.07 +mah-jong mah_jong NOM m s 1.54 0.2 1.54 0.2 +mail-coach mail_coach NOM m s 0 0.14 0 0.14 +main-courante main_courante NOM f s 0.01 0.07 0.01 0.07 +main-d'oeuvre main_d_oeuvre NOM f s 0.89 1.62 0.89 1.62 +main-forte main_forte NOM f 0.36 0.41 0.36 0.41 +maison-mère maison_mère NOM f s 0.12 0.14 0.12 0.14 +major-général major_général NOM s 0.02 0.34 0.02 0.34 +mal-aimé mal_aimé NOM m s 0.21 0.07 0.03 0 +mal-aimée mal_aimé NOM f s 0.21 0.07 0.01 0.07 +mal-aimés mal_aimé NOM m p 0.21 0.07 0.17 0 +mal-baisé mal_baisé NOM m s 0 0.2 0 0.07 +mal-baisée mal_baisé NOM f s 0 0.2 0 0.14 +mal-pensante mal_pensant ADJ f s 0 0.07 0 0.07 +mal-pensants mal_pensant NOM m p 0.14 0.07 0.14 0.07 +mal-être mal_être NOM m s 0.34 0.2 0.34 0.2 +mam'selle mam_selle NOM f s 0.11 0.07 0.11 0.07 +mam'zelle mam_zelle NOM f s 0.03 0 0.03 0 +mandat-carte mandat_carte NOM m s 0.01 0 0.01 0 +mandat-lettre mandat_lettre NOM m s 0 0.07 0 0.07 +mandat-poste mandat_poste NOM m s 0.03 0.07 0.03 0.07 +mange-disque mange_disque NOM m s 0.11 0.07 0.1 0 +mange-disques mange_disque NOM m p 0.11 0.07 0.01 0.07 +mange-tout mange_tout NOM m 0.01 0.07 0.01 0.07 +maniaco-dépressif maniaco_dépressif ADJ m s 0.38 0.14 0.17 0 +maniaco-dépressifs maniaco_dépressif ADJ m p 0.38 0.14 0.08 0.14 +maniaco-dépressive maniaco_dépressif ADJ f s 0.38 0.14 0.13 0 +manu militari manu_militari ADV 0.16 0.2 0.16 0.2 +marie-couche-toi-là marie_couche_toi_là NOM f 0.06 0.27 0.06 0.27 +marie-jeanne marie_jeanne NOM f s 0.26 0.07 0.26 0.07 +marie-louise marie_louise NOM f s 0 0.07 0 0.07 +marie-salope marie_salope NOM f s 0 0.07 0 0.07 +marin-pêcheur marin_pêcheur NOM m s 0.01 0.14 0.01 0.14 +marque-page marque_page NOM m s 0.25 0.14 0.24 0.07 +marque-pages marque_page NOM m p 0.25 0.14 0.01 0.07 +marteau-pilon marteau_pilon NOM m s 0.07 0.41 0.07 0.34 +marteau-piqueur marteau_piqueur NOM m s 0.42 0.07 0.42 0.07 +marteaux-pilons marteau_pilon NOM m p 0.07 0.41 0 0.07 +martin-pêcheur martin_pêcheur NOM m s 0.02 0.41 0.01 0.27 +martins-pêcheurs martin_pêcheur NOM m p 0.02 0.41 0.01 0.14 +marxisme-léninisme marxisme_léninisme NOM m s 0.5 0.68 0.5 0.68 +marxiste-léniniste marxiste_léniniste ADJ s 0.41 0.41 0.27 0.41 +marxistes-léninistes marxiste_léniniste ADJ p 0.41 0.41 0.14 0 +maréchal-ferrant maréchal_ferrant NOM m s 0.22 1.96 0.22 1.96 +maréchaux-ferrants maréchaux_ferrants NOM m p 0 0.41 0 0.41 +masque-espion masque_espion NOM m s 0.01 0 0.01 0 +mass media mass_media NOM m p 0.17 0.07 0.17 0.07 +mat' mat NOM m s 6.84 4.32 1.95 0.88 +mater dolorosa mater_dolorosa NOM f 0 0.47 0 0.47 +maxillo-facial maxillo_facial ADJ m s 0.01 0 0.01 0 +maître queux maître_queux NOM m s 0 0.14 0 0.14 +maître-assistant maître_assistant NOM m s 0 0.07 0 0.07 +maître-autel maître_autel NOM m s 0 0.61 0 0.61 +maître-chanteur maître_chanteur NOM m s 0.21 0.2 0.21 0.2 +maître-chien maître_chien NOM m s 0.11 0 0.11 0 +maître-coq maître_coq NOM m s 0.01 0 0.01 0 +maître-nageur maître_nageur NOM m s 0.45 0.27 0.45 0.27 +maître-à-danser maître_à_danser NOM m s 0 0.07 0 0.07 +mea culpa mea_culpa NOM m 0.7 0.68 0.7 0.68 +mea-culpa mea_culpa NOM m 0.07 0.14 0.07 0.14 +medicine-ball medicine_ball NOM m s 0 0.07 0 0.07 +melting pot melting_pot NOM m s 0.14 0.07 0.01 0.07 +melting-pot melting_pot NOM m s 0.14 0.07 0.13 0 +mer-air mer_air ADJ f s 0.01 0 0.01 0 +messieurs-dames messieurs_dames NOM m p 0.48 0.68 0.48 0.68 +mets-la-toi mets_la_toi NOM m 0.01 0 0.01 0 +meurtre-suicide meurtre_suicide NOM m s 0.04 0 0.04 0 +mezza voce mezza_voce ADV 0 0.2 0 0.2 +mezza-voce mezza_voce ADV 0 0.07 0 0.07 +mezzo-soprano mezzo_soprano NOM s 0.2 0 0.2 0 +mi-accablé mi_accablé ADJ m s 0 0.07 0 0.07 +mi-africains mi_africains NOM m 0 0.07 0 0.07 +mi-airain mi_airain NOM m s 0 0.07 0 0.07 +mi-allemand mi_allemand NOM m 0 0.07 0 0.07 +mi-allongé mi_allongé ADJ m s 0 0.07 0 0.07 +mi-américaine mi_américaine NOM m 0.02 0 0.02 0 +mi-ange mi_ange NOM m s 0.01 0 0.01 0 +mi-angevins mi_angevins NOM m 0 0.07 0 0.07 +mi-animal mi_animal ADJ m s 0.05 0 0.05 0 +mi-animaux mi_animaux ADJ m 0 0.07 0 0.07 +mi-août mi_août NOM f s 0 0.2 0 0.2 +mi-appointées mi_appointé ADJ f p 0 0.07 0 0.07 +mi-appréhension mi_appréhension NOM f s 0 0.07 0 0.07 +mi-arabe mi_arabe ADJ s 0 0.07 0 0.07 +mi-artisan mi_artisan NOM m s 0 0.07 0 0.07 +mi-automne mi_automne NOM f s 0 0.14 0 0.14 +mi-bandit mi_bandit NOM m s 0 0.07 0 0.07 +mi-bas mi_bas NOM m 0.14 0.14 0.14 0.14 +mi-biblique mi_biblique ADJ f s 0 0.07 0 0.07 +mi-black mi_black ADJ m s 0.14 0 0.14 0 +mi-blanc mi_blanc NOM m 0 0.14 0 0.14 +mi-blancs mi_blancs NOM m 0 0.07 0 0.07 +mi-bleu mi_bleu ADJ 0 0.07 0 0.07 +mi-bois mi_bois NOM m 0 0.07 0 0.07 +mi-bordel mi_bordel NOM m s 0 0.07 0 0.07 +mi-bourgeois mi_bourgeois ADJ m s 0 0.07 0 0.07 +mi-bovins mi_bovins NOM m 0 0.07 0 0.07 +mi-braconniers mi_braconnier NOM m p 0 0.07 0 0.07 +mi-bras mi_bras NOM m 0 0.14 0 0.14 +mi-britannique mi_britannique ADJ s 0 0.07 0 0.07 +mi-building mi_building NOM m s 0 0.07 0 0.07 +mi-bureaucrates mi_bureaucrate ADJ m p 0 0.07 0 0.07 +mi-bête mi_bête ADJ m s 0.04 0 0.04 0 +mi-café mi_café ADJ 0 0.07 0 0.07 +mi-café mi_café NOM m s 0 0.07 0 0.07 +mi-campagnarde mi_campagnarde NOM m 0 0.07 0 0.07 +mi-canard mi_canard NOM m s 0 0.07 0 0.07 +mi-capacité mi_capacité NOM f s 0.02 0 0.02 0 +mi-carrière mi_carrier NOM f s 0.01 0 0.01 0 +mi-carême mi_carême NOM f s 0.01 0.61 0.01 0.61 +mi-chair mi_chair ADJ m s 0 0.2 0 0.2 +mi-chat mi_chat NOM m s 0 0.07 0 0.07 +mi-chatte mi_chatte NOM f s 0.01 0 0.01 0 +mi-chauve mi_chauve ADJ s 0 0.07 0 0.07 +mi-chemin mi_chemin NOM m s 3.72 6.35 3.72 6.35 +mi-chou mi_chou NOM m s 0 0.07 0 0.07 +mi-chourineur mi_chourineur NOM m s 0 0.07 0 0.07 +mi-châtaigniers mi_châtaignier NOM m p 0 0.07 0 0.07 +mi-chèvre mi_chèvre NOM f s 0 0.07 0 0.07 +mi-chênes mi_chêne NOM m p 0 0.07 0 0.07 +mi-clair mi_clair ADJ m s 0 0.07 0 0.07 +mi-clos mi_clos ADJ m 0.21 7.16 0.11 6.08 +mi-close mi_clos ADJ f s 0.21 7.16 0 0.2 +mi-closes mi_clos ADJ f p 0.21 7.16 0.1 0.88 +mi-cloître mi_cloître NOM m s 0 0.07 0 0.07 +mi-comique mi_comique ADJ m s 0 0.14 0 0.14 +mi-complices mi_complice ADJ m p 0 0.07 0 0.07 +mi-compote mi_compote NOM f s 0 0.07 0 0.07 +mi-confit mi_confit NOM m 0 0.07 0 0.07 +mi-confondus mi_confondu ADJ m p 0 0.07 0 0.07 +mi-connue mi_connu ADJ f s 0.01 0 0.01 0 +mi-consterné mi_consterné ADJ m s 0 0.07 0 0.07 +mi-contrariés mi_contrarié ADJ m p 0 0.07 0 0.07 +mi-corbeaux mi_corbeaux NOM m p 0 0.07 0 0.07 +mi-corps mi_corps NOM m 0.01 1.55 0.01 1.55 +mi-course mi_course NOM f s 0.08 0.27 0.08 0.27 +mi-courtois mi_courtois ADJ m 0 0.07 0 0.07 +mi-cousine mi_cousin NOM f s 0 0.14 0 0.07 +mi-cousins mi_cousin NOM m p 0 0.14 0 0.07 +mi-coutume mi_coutume NOM f s 0 0.07 0 0.07 +mi-crabe mi_crabe NOM m s 0 0.07 0 0.07 +mi-croyant mi_croyant NOM m 0 0.07 0 0.07 +mi-cruel mi_cruel ADJ m s 0 0.07 0 0.07 +mi-créature mi_créature NOM f s 0 0.07 0 0.07 +mi-cuisse mi_cuisse NOM f s 0.06 1.35 0.04 0.81 +mi-cuisses mi_cuisse NOM f p 0.06 1.35 0.01 0.54 +mi-curieux mi_curieux ADJ m p 0 0.14 0 0.14 +mi-céleste mi_céleste ADJ m s 0 0.07 0 0.07 +mi-cérémonieux mi_cérémonieux ADJ m 0 0.07 0 0.07 +mi-côte mi_côte NOM f s 0 0.2 0 0.2 +mi-dentelle mi_dentelle NOM f s 0 0.07 0 0.07 +mi-didactique mi_didactique ADJ s 0 0.07 0 0.07 +mi-distance mi_distance NOM f s 0.04 0.34 0.04 0.34 +mi-douce mi_douce ADJ f s 0 0.07 0 0.07 +mi-décadents mi_décadents NOM m 0 0.07 0 0.07 +mi-décembre mi_décembre NOM m 0.01 0.27 0.01 0.27 +mi-démon mi_démon NOM m s 0.02 0 0.02 0 +mi-désir mi_désir NOM m s 0 0.07 0 0.07 +mi-effrayée mi_effrayé ADJ f s 0 0.2 0 0.07 +mi-effrayés mi_effrayé ADJ m p 0 0.2 0 0.14 +mi-effrontée mi_effrontée NOM m 0 0.07 0 0.07 +mi-enfant mi_enfant NOM s 0.01 0.07 0.01 0.07 +mi-enjouée mi_enjoué ADJ f s 0 0.07 0 0.07 +mi-enterré mi_enterré ADJ m s 0 0.07 0 0.07 +mi-envieux mi_envieux ADJ m p 0 0.07 0 0.07 +mi-espagnol mi_espagnol NOM m 0 0.07 0 0.07 +mi-européen mi_européen NOM m 0 0.14 0 0.14 +mi-excitation mi_excitation NOM f s 0 0.07 0 0.07 +mi-farceur mi_farceur NOM m 0 0.07 0 0.07 +mi-faux mi_faux ADJ m 0 0.07 0 0.07 +mi-femme mi_femme NOM f s 0.12 0.07 0.12 0.07 +mi-fermiers mi_fermiers NOM m 0 0.07 0 0.07 +mi-fiel mi_fiel NOM m s 0 0.07 0 0.07 +mi-figue mi_figue NOM f s 0.02 0.54 0.02 0.54 +mi-flanc mi_flanc NOM m s 0 0.14 0 0.14 +mi-fleuve mi_fleuve NOM m s 0.08 0 0.08 0 +mi-français mi_français NOM m 0 0.14 0 0.14 +mi-furieux mi_furieux ADJ m s 0 0.07 0 0.07 +mi-février mi_février NOM f s 0.01 0.07 0.01 0.07 +mi-garçon mi_garçon NOM m s 0 0.07 0 0.07 +mi-geste mi_geste NOM m s 0 0.07 0 0.07 +mi-gigolpince mi_gigolpince NOM m s 0 0.07 0 0.07 +mi-gnon mi_gnon NOM m s 0 0.07 0 0.07 +mi-goguenarde mi_goguenard ADJ f s 0 0.07 0 0.07 +mi-gonzesse mi_gonzesse NOM f s 0 0.07 0 0.07 +mi-goélands mi_goéland NOM m p 0 0.07 0 0.07 +mi-graves mi_grave ADJ p 0 0.07 0 0.07 +mi-grenier mi_grenier NOM m s 0 0.07 0 0.07 +mi-grognon mi_grognon NOM m 0 0.07 0 0.07 +mi-grondeur mi_grondeur ADJ m s 0 0.07 0 0.07 +mi-grossières mi_grossier ADJ f p 0 0.07 0 0.07 +mi-haute mi_haute ADJ f s 0 0.07 0 0.07 +mi-hauteur mi_hauteur NOM f s 0.17 2.91 0.17 2.91 +mi-historiques mi_historique ADJ f p 0 0.07 0 0.07 +mi-homme mi_homme NOM m s 0.44 0.14 0.44 0.14 +mi-humain mi_humain NOM m 0.08 0 0.08 0 +mi-humaine mi_humaine NOM m 0.01 0.07 0.01 0.07 +mi-humains mi_humains NOM m 0.01 0.07 0.01 0.07 +mi-hésitant mi_hésitant ADJ m s 0 0.07 0 0.07 +mi-idiotes mi_idiotes NOM m 0 0.07 0 0.07 +mi-images mi_image NOM f p 0 0.14 0 0.14 +mi-indien mi_indien NOM m 0.01 0.07 0.01 0.07 +mi-indifférente mi_indifférente NOM m 0 0.07 0 0.07 +mi-indignée mi_indigné ADJ f s 0 0.07 0 0.07 +mi-indigène mi_indigène ADJ s 0 0.07 0 0.07 +mi-indulgent mi_indulgent ADJ m s 0 0.14 0 0.14 +mi-inquiète mi_inquiet ADJ f s 0 0.14 0 0.14 +mi-ironique mi_ironique ADJ m s 0 0.41 0 0.27 +mi-ironiques mi_ironique ADJ p 0 0.41 0 0.14 +mi-jambe mi_jambe NOM f s 0 0.74 0 0.47 +mi-jambes mi_jambe NOM f p 0 0.74 0 0.27 +mi-janvier mi_janvier NOM f s 0.12 0.2 0.12 0.2 +mi-jaune mi_jaune ADJ s 0 0.14 0 0.07 +mi-jaunes mi_jaune ADJ p 0 0.14 0 0.07 +mi-jersey mi_jersey NOM m s 0 0.14 0 0.14 +mi-joue mi_joue NOM f s 0 0.07 0 0.07 +mi-jour mi_jour NOM m s 0 0.07 0 0.07 +mi-journée mi_journée NOM f s 0.2 0.27 0.2 0.27 +mi-juif mi_juif NOM m 0 0.07 0 0.07 +mi-juillet mi_juillet NOM f s 0.02 0.41 0.02 0.41 +mi-juin mi_juin NOM f s 0.01 0.07 0.01 0.07 +mi-laiton mi_laiton NOM m s 0 0.07 0 0.07 +mi-lent mi_lent ADJ m s 0.01 0 0.01 0 +mi-londrès mi_londrès NOM m 0 0.07 0 0.07 +mi-longs mi_longs NOM m 0.15 0.34 0.15 0.34 +mi-longueur mi_longueur NOM f s 0 0.07 0 0.07 +mi-lourd mi_lourd ADJ m s 0.17 0.14 0.17 0.14 +mi-machine mi_machine NOM f s 0.07 0 0.06 0 +mi-machines mi_machine NOM f p 0.07 0 0.01 0 +mi-mai mi_mai NOM f s 0.01 0 0.01 0 +mi-mao mi_mao NOM s 0 0.07 0 0.07 +mi-marchande mi_marchande NOM m 0 0.07 0 0.07 +mi-mars mi_mars NOM f s 0.04 0.2 0.04 0.2 +mi-marécages mi_marécage NOM m p 0 0.07 0 0.07 +mi-menaçante mi_menaçant ADJ f s 0 0.07 0 0.07 +mi-meublé mi_meublé NOM m 0 0.07 0 0.07 +mi-mexicain mi_mexicain NOM m 0.01 0 0.01 0 +mi-miel mi_miel ADJ m s 0 0.07 0 0.07 +mi-mollet mi_mollet NOM m 0.01 0.2 0.01 0.2 +mi-mollets mi_mollets NOM m 0 0.27 0 0.27 +mi-mondaine mi_mondaine NOM m 0 0.07 0 0.07 +mi-moqueur mi_moqueur NOM m 0 0.14 0 0.14 +mi-mot mi_mot NOM m s 0.03 0.27 0.03 0.2 +mi-mots mi_mot NOM m p 0.03 0.27 0 0.07 +mi-mouton mi_mouton NOM m s 0 0.07 0 0.07 +mi-moyen mi_moyen ADJ m s 0.1 0.07 0.08 0 +mi-moyens mi_moyen ADJ m p 0.1 0.07 0.02 0.07 +mi-métal mi_métal NOM m s 0 0.07 0 0.07 +mi-narquoise mi_narquoise ADJ f s 0 0.07 0 0.07 +mi-noir mi_noir NOM m 0 0.07 0 0.07 +mi-novembre mi_novembre NOM f s 0.13 0.27 0.13 0.27 +mi-nuit mi_nuit NOM f s 0 0.07 0 0.07 +mi-obscure mi_obscur ADJ f s 0 0.07 0 0.07 +mi-octobre mi_octobre NOM f s 0.02 0.14 0.02 0.14 +mi-officiel mi_officiel NOM m 0 0.14 0 0.14 +mi-ogre mi_ogre NOM m s 0 0.07 0 0.07 +mi-oiseau mi_oiseau NOM m s 0.1 0 0.1 0 +mi-oriental mi_oriental NOM m 0 0.07 0 0.07 +mi-parcours mi_parcours NOM m 0.25 0.34 0.25 0.34 +mi-partie mi_parti ADJ f s 0 0.61 0 0.61 +mi-pathétique mi_pathétique ADJ s 0 0.07 0 0.07 +mi-patio mi_patio NOM m s 0 0.07 0 0.07 +mi-patois mi_patois NOM m 0 0.07 0 0.07 +mi-peau mi_peau NOM f s 0 0.07 0 0.07 +mi-pelouse mi_pelouse NOM f s 0 0.07 0 0.07 +mi-pensées mi_pensée NOM f p 0 0.14 0 0.14 +mi-pente mi_pente NOM f s 0.02 0.81 0.02 0.81 +mi-pierre mi_pierre NOM f s 0 0.07 0 0.07 +mi-pincé mi_pincé ADJ m s 0 0.07 0 0.07 +mi-plaintif mi_plaintif ADJ m s 0 0.2 0 0.2 +mi-plaisant mi_plaisant NOM m 0 0.07 0 0.07 +mi-pleurant mi_pleurant NOM m 0 0.07 0 0.07 +mi-pleurnichard mi_pleurnichard NOM m 0 0.07 0 0.07 +mi-plombiers mi_plombier NOM m p 0 0.07 0 0.07 +mi-poisson mi_poisson NOM m s 0 0.14 0 0.14 +mi-poitrine mi_poitrine NOM f s 0 0.07 0 0.07 +mi-porcine mi_porcine NOM m 0 0.07 0 0.07 +mi-portugaise mi_portugaise NOM m 0 0.07 0 0.07 +mi-porté mi_porté NOM m 0 0.07 0 0.07 +mi-poucet mi_poucet NOM m s 0 0.07 0 0.07 +mi-poulet mi_poulet NOM m s 0 0.07 0 0.07 +mi-prestidigitateur mi_prestidigitateur NOM m s 0 0.07 0 0.07 +mi-promenoir mi_promenoir NOM m s 0 0.07 0 0.07 +mi-protecteur mi_protecteur NOM m 0 0.14 0 0.14 +mi-putain mi_putain NOM f s 0 0.07 0 0.07 +mi-pêcheurs mi_pêcheur NOM m p 0 0.07 0 0.07 +mi-rageur mi_rageur ADJ m s 0 0.07 0 0.07 +mi-raide mi_raide ADJ f s 0 0.07 0 0.07 +mi-railleur mi_railleur NOM m 0 0.14 0 0.14 +mi-raisin mi_raisin NOM m s 0.02 0.61 0.02 0.61 +mi-renaissance mi_renaissance NOM f s 0 0.07 0 0.07 +mi-respectueuse mi_respectueux ADJ f s 0 0.07 0 0.07 +mi-riant mi_riant ADJ m s 0 0.27 0 0.27 +mi-rose mi_rose NOM s 0 0.07 0 0.07 +mi-roulotte mi_roulotte NOM f s 0 0.07 0 0.07 +mi-route mi_route NOM f s 0 0.07 0 0.07 +mi-russe mi_russe ADJ m s 0.14 0.07 0.14 0.07 +mi-réalité mi_réalité NOM f s 0 0.07 0 0.07 +mi-régime mi_régime NOM m s 0 0.07 0 0.07 +mi-réprobateur mi_réprobateur ADJ m s 0 0.07 0 0.07 +mi-résigné mi_résigné NOM m 0 0.07 0 0.07 +mi-saison mi_saison NOM f s 0.14 0 0.14 0 +mi-salade mi_salade NOM f s 0.01 0 0.01 0 +mi-salaire mi_salaire NOM m s 0.01 0 0.01 0 +mi-samoan mi_samoan ADJ m s 0.01 0 0.01 0 +mi-sanglotant mi_sanglotant ADJ m s 0 0.07 0 0.07 +mi-satin mi_satin NOM m s 0 0.07 0 0.07 +mi-satisfait mi_satisfait ADJ m s 0 0.07 0 0.07 +mi-sceptique mi_sceptique ADJ m s 0 0.07 0 0.07 +mi-scientifiques mi_scientifique ADJ f p 0 0.07 0 0.07 +mi-secours mi_secours NOM m 0 0.07 0 0.07 +mi-seigneur mi_seigneur NOM m s 0 0.07 0 0.07 +mi-sel mi_sel NOM m s 0 0.07 0 0.07 +mi-septembre mi_septembre NOM f s 0.03 0.27 0.03 0.27 +mi-sidérée mi_sidéré ADJ f s 0 0.07 0 0.07 +mi-singe mi_singe NOM m s 0.01 0 0.01 0 +mi-sombre mi_sombre ADJ m s 0 0.07 0 0.07 +mi-sommet mi_sommet NOM m s 0 0.07 0 0.07 +mi-songe mi_songe NOM m s 0 0.07 0 0.07 +mi-souriant mi_souriant ADJ m s 0 0.14 0 0.07 +mi-souriante mi_souriant ADJ f s 0 0.14 0 0.07 +mi-suisse mi_suisse ADJ s 0 0.07 0 0.07 +mi-série mi_série NOM f s 0.01 0 0.01 0 +mi-sérieux mi_sérieux ADJ m 0 0.2 0 0.2 +mi-tantouse mi_tantouse NOM f s 0 0.07 0 0.07 +mi-tendre mi_tendre NOM m 0 0.14 0 0.14 +mi-terrorisé mi_terrorisé ADJ m s 0 0.07 0 0.07 +mi-timide mi_timide ADJ s 0 0.07 0 0.07 +mi-tortue mi_tortue ADJ f s 0 0.07 0 0.07 +mi-tour mi_tour NOM s 0 0.07 0 0.07 +mi-tout mi_tout NOM m 0 0.07 0 0.07 +mi-tragique mi_tragique ADJ m s 0 0.07 0 0.07 +mi-trimestre mi_trimestre NOM m s 0.01 0 0.01 0 +mi-velours mi_velours NOM m 0 0.07 0 0.07 +mi-verre mi_verre NOM m s 0 0.14 0 0.14 +mi-vie mi_vie NOM f s 0 0.07 0 0.07 +mi-voix mi_voix NOM f 0.31 14.39 0.31 14.39 +mi-voluptueux mi_voluptueux ADJ m 0 0.07 0 0.07 +mi-vrais mi_vrais NOM m 0 0.07 0 0.07 +mi-végétal mi_végétal NOM m 0.01 0 0.01 0 +mi-vénitien mi_vénitien NOM m 0 0.07 0 0.07 +mi-épaule mi_épaule NOM f s 0 0.07 0 0.07 +mi-étage mi_étage NOM m s 0 0.47 0 0.47 +mi-étendue mi_étendue NOM f s 0 0.07 0 0.07 +mi-étonné mi_étonné ADJ m s 0 0.14 0 0.14 +mi-étudiant mi_étudiant NOM m 0 0.07 0 0.07 +mi-été mi_été NOM m 0 0.27 0 0.27 +mi-éveillée mi_éveillé ADJ f s 0 0.14 0 0.14 +miam-miam miam_miam ONO 0.56 0.68 0.56 0.68 +micro-cravate micro_cravate NOM m s 0.01 0 0.01 0 +micro-onde micro_onde NOM f s 0.38 0 0.38 0 +micro-ondes micro_ondes NOM m 2.45 0.14 2.45 0.14 +micro-ordinateur micro_ordinateur NOM m s 0.01 0.14 0.01 0.07 +micro-ordinateurs micro_ordinateur NOM m p 0.01 0.14 0 0.07 +micro-organisme micro_organisme NOM m s 0.08 0 0.08 0 +micro-trottoir micro_trottoir NOM m s 0.01 0 0.01 0 +middle class middle_class NOM f s 0 0.07 0 0.07 +middle-west middle_west NOM m s 0.05 0.14 0.05 0.14 +mieux-vivre mieux_vivre NOM m s 0 0.07 0 0.07 +mieux-être mieux_être NOM m 0.12 0.2 0.12 0.2 +militaro-industriel militaro_industriel ADJ m s 0.06 0 0.05 0 +militaro-industrielle militaro_industriel ADJ f s 0.06 0 0.01 0 +milk shake milk_shake NOM m s 1.85 0.14 0.13 0 +milk-bar milk_bar NOM m s 0.03 0.2 0.03 0.14 +milk-bars milk_bar NOM m p 0.03 0.2 0 0.07 +milk-shake milk_shake NOM m s 1.85 0.14 1.27 0.14 +milk-shakes milk_shake NOM m p 1.85 0.14 0.45 0 +mille-feuille mille_feuille NOM m s 0.03 1.08 0.02 0.2 +mille-feuilles mille_feuille NOM m p 0.03 1.08 0.01 0.88 +mille-pattes mille_pattes NOM m 0.39 2.09 0.39 2.09 +mini-chaîne mini_chaîne NOM f s 0.14 0.07 0.14 0.07 +mini-jupe mini_jupe NOM f s 0.62 0.54 0.56 0.34 +mini-jupes mini_jupe NOM f p 0.62 0.54 0.06 0.2 +mini-ordinateur mini_ordinateur NOM m s 0.02 0 0.02 0 +minus habens minus_habens NOM m 0 0.14 0 0.14 +mission-suicide mission_suicide NOM f s 0.03 0.07 0.03 0.07 +mobil-home mobil_home NOM m s 0.07 0 0.07 0 +modern style modern_style NOM m 0.01 0 0.01 0 +modern-style modern_style NOM m s 0 0.27 0 0.27 +modus operandi modus_operandi NOM m s 0.32 0 0.32 0 +modus vivendi modus_vivendi NOM m 0.01 0.47 0.01 0.47 +moi-moi-moi moi_moi_moi NOM m 0 0.07 0 0.07 +moi-même moi_même PRO:per s 83.25 107.3 83.25 107.3 +moissonneuse-batteuse moissonneuse_batteuse NOM f s 0.04 0.47 0.04 0.27 +moissonneuse-lieuse moissonneuse_lieuse NOM f s 0 0.14 0 0.07 +moissonneuses-batteuses moissonneuse_batteuse NOM f p 0.04 0.47 0 0.2 +moissonneuses-lieuses moissonneuse_lieuse NOM f p 0 0.14 0 0.07 +moitié-moitié moitié_moitié ADV 0 0.14 0 0.14 +moment-clé moment_clé NOM m s 0.04 0 0.04 0 +moments-clés moments_clé NOM m p 0.01 0 0.01 0 +monnaie-du-pape monnaie_du_pape NOM f s 0 0.07 0 0.07 +monnaies-du-pape monnaies_du_pape NOM f p 0 0.07 0 0.07 +mont-blanc mont_blanc NOM m s 1.84 0.47 1.64 0.41 +mont-de-piété mont_de_piété NOM m s 0.98 0.81 0.98 0.81 +monte-charge monte_charge NOM m 0.51 0.54 0.51 0.54 +monte-charges monte_charges NOM m 0.01 0.07 0.01 0.07 +monte-en-l'air monte_en_l_air NOM m 0.12 0.2 0.12 0.2 +monte-plat monte_plat NOM m s 0.01 0 0.01 0 +monte-plats monte_plats NOM m 0.04 0.07 0.04 0.07 +montre-bracelet montre_bracelet NOM f s 0.08 2.09 0.07 1.82 +montre-gousset montre_gousset NOM f s 0.01 0.07 0.01 0.07 +montre-la-moi montre_la_moi NOM f s 0.14 0 0.14 0 +montres-bracelets montre_bracelet NOM f p 0.08 2.09 0.01 0.27 +monts-blancs mont_blanc NOM m p 1.84 0.47 0.2 0.07 +mort-aux-rats mort_aux_rats NOM f 0.61 0.47 0.61 0.47 +mort-né mort_né ADJ m s 0.8 0.61 0.53 0.34 +mort-née mort_né ADJ f s 0.8 0.61 0.23 0 +mort-nées mort_né ADJ f p 0.8 0.61 0 0.07 +mort-nés mort_né ADJ m p 0.8 0.61 0.04 0.2 +mort-vivant mort_vivant NOM m s 1.46 0.81 0.41 0.27 +morte-saison morte_saison NOM f s 0.01 1.08 0.01 1.01 +mortes-eaux mortes_eaux NOM f p 0 0.07 0 0.07 +mortes-saisons morte_saison NOM f p 0.01 1.08 0 0.07 +morts-vivants mort_vivant NOM m p 1.46 0.81 1.05 0.54 +mot-clé mot_clé NOM m s 0.58 0.34 0.41 0.14 +mot-valise mot_valise NOM m s 0.01 0 0.01 0 +moteur-fusée moteur_fusée NOM m s 0.04 0 0.01 0 +moteurs-fusées moteur_fusée NOM m p 0.04 0 0.04 0 +moto-club moto_club NOM f s 0 0.14 0 0.14 +moto-cross moto_cross NOM m 0.04 0.07 0.04 0.07 +mots-clefs mot_clef NOM m p 0 0.07 0 0.07 +mots-clés mot_clé NOM m p 0.58 0.34 0.17 0.2 +mots-croisés mots_croisés NOM m p 0.07 0 0.07 0 +motu proprio motu_proprio ADV 0 0.07 0 0.07 +moulin-à-vent moulin_à_vent NOM m 0 0.14 0 0.14 +moyen-oriental moyen_oriental ADJ m s 0.03 0 0.03 0 +moyen-orientaux moyen_orientaux ADJ m p 0.01 0 0.01 0 +moyen-âge moyen_âge NOM m s 1.15 0.2 1.15 0.2 +multi-tâches multi_tâches ADJ f s 0.05 0 0.05 0 +musettes-repas musette_repas NOM f p 0 0.07 0 0.07 +music hall music_hall NOM m s 1.85 4.32 0.02 0 +music-hall music_hall NOM m s 1.85 4.32 1.7 3.78 +music-halls music_hall NOM m p 1.85 4.32 0.13 0.54 +mutatis mutandis mutatis_mutandis ADV 0 0.07 0 0.07 +mère-grand mère_grand NOM f s 0.89 0.34 0.89 0.34 +mère-patrie mère_patrie NOM f s 0.04 0.41 0.04 0.41 +médecin-chef médecin_chef NOM m s 0.56 2.09 0.56 2.09 +médecin-conseil médecin_conseil NOM m s 0.01 0 0.01 0 +médecin-général médecin_général NOM m s 0.01 0.2 0.01 0.2 +médecin-major médecin_major NOM m s 0.7 0.14 0.7 0.14 +médecine-ball médecine_ball NOM m s 0.01 0 0.01 0 +médico-légal médico_légal ADJ m s 1.06 0.54 0.63 0.41 +médico-légale médico_légal ADJ f s 1.06 0.54 0.25 0.14 +médico-légales médico_légal ADJ f p 1.06 0.54 0.13 0 +médico-légaux médico_légal ADJ m p 1.06 0.54 0.05 0 +médico-psychologique médico_psychologique ADJ m s 0.01 0 0.01 0 +médico-social médico_social ADJ m s 0.01 0.07 0.01 0.07 +méli-mélo méli_mélo NOM m s 0.39 0.81 0.39 0.68 +mélis-mélos méli_mélo NOM m p 0.39 0.81 0 0.14 +mêle-tout mêle_tout NOM m 0.01 0 0.01 0 +mêlé-cass mêlé_cass NOM m 0 0.2 0 0.2 +mêlé-casse mêlé_casse NOM m 0 0.14 0 0.14 +n'est-ce pas n_est_ce_pas ADV 0.1 0 0.1 0 +narco-analyse narco_analyse NOM f s 0.01 0 0.01 0 +national-socialisme national_socialisme NOM m s 0.58 2.03 0.58 2.03 +national-socialiste national_socialiste ADJ m s 0.23 0.14 0.23 0.14 +nationale-socialiste nationale_socialiste ADJ f s 0 0.14 0 0.14 +nationaux-socialistes nationaux_socialistes ADJ p 0 0.14 0 0.14 +navire-citerne navire_citerne NOM m s 0.14 0 0.01 0 +navire-hôpital navire_hôpital NOM m s 0.04 0.14 0.04 0.14 +navires-citernes navire_citerne NOM m p 0.14 0 0.14 0 +navires-écoles navire_école NOM m p 0 0.07 0 0.07 +ne varietur ne_varietur ADV 0 0.14 0 0.14 +negro spiritual negro_spiritual NOM m s 0.01 0.14 0.01 0.07 +negro spirituals negro_spiritual NOM m p 0.01 0.14 0 0.07 +new wave new_wave NOM f 0 0.07 0 0.07 +new-yorkais new_yorkais ADJ m 0 1.42 0 0.95 +new-yorkaise new_yorkais ADJ f s 0 1.42 0 0.34 +new-yorkaises new_yorkais ADJ f p 0 1.42 0 0.14 +nid-de-poule nid_de_poule NOM m s 0.2 0.2 0.14 0.07 +nids-de-poule nid_de_poule NOM m p 0.2 0.2 0.06 0.14 +night club night_club NOM m s 1.31 0.88 0.05 0 +night-club night_club NOM m s 1.31 0.88 1.16 0.61 +night-clubs night_club NOM m p 1.31 0.88 0.1 0.27 +nihil obstat nihil_obstat ADV 0 0.2 0 0.2 +nimbo-stratus nimbo_stratus NOM m 0.14 0 0.14 0 +no man's land no_man_s_land NOM m s 0.95 1.49 0.95 1.49 +non troppo non_troppo ADV 0 0.07 0 0.07 +non-agression non_agression NOM f s 0.07 0.61 0.07 0.61 +non-alignement non_alignement NOM m s 0.04 0 0.04 0 +non-alignés non_aligné ADJ m p 0.09 0 0.09 0 +non-amour non_amour NOM m s 0.1 0 0.1 0 +non-appartenance non_appartenance NOM f s 0.01 0.07 0.01 0.07 +non-assistance non_assistance NOM f s 0.1 0.07 0.1 0.07 +non-blanc non_blanc NOM m s 0.04 0.07 0 0.07 +non-blancs non_blanc NOM m p 0.04 0.07 0.04 0 +non-combattant non_combattant ADJ m s 0.15 0 0.01 0 +non-combattant non_combattant NOM m s 0.03 0 0.01 0 +non-combattants non_combattant ADJ m p 0.15 0 0.14 0 +non-comparution non_comparution NOM f s 0.01 0 0.01 0 +non-concurrence non_concurrence NOM f s 0.01 0 0.01 0 +non-conformisme non_conformisme NOM m s 0 0.2 0 0.2 +non-conformiste non_conformiste ADJ s 0.14 0 0.1 0 +non-conformistes non_conformiste ADJ p 0.14 0 0.04 0 +non-conformité non_conformité NOM f s 0.01 0 0.01 0 +non-consommation non_consommation NOM f s 0.03 0 0.03 0 +non-croyance non_croyance NOM f s 0.1 0 0.1 0 +non-croyant non_croyant NOM m s 0.62 0.07 0.21 0.07 +non-croyants non_croyant NOM m p 0.62 0.07 0.41 0 +non-culpabilité non_culpabilité NOM f s 0.01 0 0.01 0 +non-dit non_dit NOM m s 0.27 0.88 0.09 0.74 +non-dits non_dit NOM m p 0.27 0.88 0.18 0.14 +non-droit non_droit NOM m s 0.22 0 0.22 0 +non-existence non_existence NOM f s 0.07 0.07 0.07 0.07 +non-ferreux non_ferreux NOM m 0.01 0 0.01 0 +non-fumeur non_fumeur ADJ m s 0.68 0 0.68 0 +non-fumeurs non_fumeurs ADJ 0.44 0.07 0.44 0.07 +non-initié non_initié NOM m s 0.22 0.34 0.03 0.14 +non-initiés non_initié NOM m p 0.22 0.34 0.19 0.2 +non-intervention non_intervention NOM f s 0.21 0.14 0.21 0.14 +non-lieu non_lieu NOM m s 1.08 1.42 1.08 1.42 +non-lieux non_lieux NOM m p 0.01 0.2 0.01 0.2 +non-malades non_malade NOM p 0 0.07 0 0.07 +non-paiement non_paiement NOM m s 0.1 0.07 0.1 0.07 +non-participation non_participation NOM f s 0.01 0.07 0.01 0.07 +non-pesanteur non_pesanteur NOM f s 0 0.07 0 0.07 +non-prolifération non_prolifération NOM f s 0.09 0 0.09 0 +non-présence non_présence NOM f s 0.01 0.14 0.01 0.14 +non-recevoir non_recevoir NOM m s 0.06 0.2 0.06 0.2 +non-représentation non_représentation NOM f s 0.01 0 0.01 0 +non-respect non_respect NOM m s 0.16 0 0.16 0 +non-retour non_retour NOM m s 0.34 0.41 0.34 0.41 +non-résistance non_résistance NOM f s 0 0.14 0 0.14 +non-savoir non_savoir NOM m s 0.04 0.07 0.04 0.07 +non-sens non_sens NOM m 0.83 0.95 0.83 0.95 +non-spécialiste non_spécialiste NOM s 0.02 0.07 0.01 0 +non-spécialistes non_spécialiste NOM p 0.02 0.07 0.01 0.07 +non-stop non_stop ADJ 0.89 0.14 0.89 0.14 +non-séparation non_séparation NOM f s 0 0.07 0 0.07 +non-utilisation non_utilisation NOM f s 0.01 0 0.01 0 +non-vie non_vie NOM f s 0.04 0 0.04 0 +non-violence non_violence NOM f s 0.63 0.07 0.63 0.07 +non-violent non_violent ADJ m s 0.31 0.07 0.19 0.07 +non-violente non_violent ADJ f s 0.31 0.07 0.07 0 +non-violents non_violent ADJ m p 0.31 0.07 0.05 0 +non-vouloir non_vouloir NOM m s 0 0.07 0 0.07 +non-voyant non_voyant NOM m s 0.32 0.27 0.28 0.2 +non-voyante non_voyant NOM f s 0.32 0.27 0.02 0 +non-voyants non_voyant NOM m p 0.32 0.27 0.03 0.07 +non-événement non_événement NOM m s 0.02 0 0.02 0 +non-être non_être NOM m 0 0.95 0 0.95 +nonante-huit nonante_huit ADJ:num 0 0.07 0 0.07 +nord-africain nord_africain ADJ m s 0.05 1.96 0.02 0.2 +nord-africaine nord_africain ADJ f s 0.05 1.96 0.01 0.95 +nord-africaines nord_africain ADJ f p 0.05 1.96 0.01 0.07 +nord-africains nord_africain ADJ m p 0.05 1.96 0.01 0.74 +nord-américain nord_américain ADJ m s 0.32 0.2 0.24 0.07 +nord-américaine nord_américain ADJ f s 0.32 0.2 0.06 0.14 +nord-américains nord_américain NOM m p 0.13 0 0.03 0 +nord-coréen nord_coréen ADJ m s 0.36 0 0.24 0 +nord-coréenne nord_coréen ADJ f s 0.36 0 0.06 0 +nord-coréennes nord_coréen ADJ f p 0.36 0 0.02 0 +nord-coréens nord_coréen NOM m p 0.23 0.07 0.18 0.07 +nord-est nord_est NOM m 1.4 2.84 1.4 2.84 +nord-nord-est nord_nord_est NOM m s 0.03 0.14 0.03 0.14 +nord-ouest nord_ouest NOM m 0.95 1.22 0.95 1.22 +nord-sud nord_sud ADJ 0.15 0.88 0.15 0.88 +nord-vietnamien nord_vietnamien ADJ m s 0.11 0 0.04 0 +nord-vietnamienne nord_vietnamien ADJ f s 0.11 0 0.04 0 +nord-vietnamiens nord_vietnamien NOM m p 0.12 0 0.11 0 +nota bene nota_bene ADV 0.01 0.07 0.01 0.07 +notre-dame notre_dame NOM f 2.69 8.58 2.69 8.58 +nous-même nous_même PRO:per p 1.12 0.61 1.12 0.61 +nous-mêmes nous_mêmes PRO:per p 11.11 16.28 11.11 16.28 +nouveau-né nouveau_né NOM m s 2.72 4.8 2.27 3.18 +nouveau-nés nouveau_né NOM m p 2.72 4.8 0.14 1.49 +nouveaux-nés nouveau_né NOM m p 2.72 4.8 0.3 0.14 +nu-propriétaire nu_propriétaire NOM s 0 0.07 0 0.07 +nu-tête nu_tête ADJ m s 0.02 1.35 0.02 1.35 +nue-propriété nue_propriété NOM f s 0 0.07 0 0.07 +numerus clausus numerus_clausus NOM m 0 0.07 0 0.07 +nuoc-mâm nuoc_mâm NOM m 0 0.07 0 0.07 +néo-barbares néo_barbare ADJ f p 0 0.07 0 0.07 +néo-classique néo_classique ADJ s 0.12 0.34 0.12 0.34 +néo-colonialisme néo_colonialisme NOM m s 0 0.2 0 0.2 +néo-communiste néo_communiste ADJ f s 0.01 0 0.01 0 +néo-fascisme néo_fascisme NOM m s 0.01 0.07 0.01 0.07 +néo-fascistes néo_fasciste ADJ p 0.01 0 0.01 0 +néo-fascistes néo_fasciste NOM p 0.01 0 0.01 0 +néo-figuration néo_figuration NOM f s 0 0.07 0 0.07 +néo-flics néo_flic NOM m p 0.02 0 0.02 0 +néo-gangster néo_gangster NOM m s 0.01 0 0.01 0 +néo-gothique néo_gothique ADJ f s 0 0.2 0 0.14 +néo-gothiques néo_gothique ADJ p 0 0.2 0 0.07 +néo-grec néo_grec ADJ m s 0 0.07 0 0.07 +néo-helléniques néo_hellénique ADJ f p 0 0.07 0 0.07 +néo-malthusianisme néo_malthusianisme NOM m s 0 0.14 0 0.14 +néo-mauresque néo_mauresque ADJ m s 0 0.14 0 0.07 +néo-mauresques néo_mauresque ADJ f p 0 0.14 0 0.07 +néo-mouvement néo_mouvement NOM m s 0 0.07 0 0.07 +néo-renaissant néo_renaissant ADJ m s 0 0.07 0 0.07 +néo-romantique néo_romantique ADJ f s 0.01 0 0.01 0 +néo-russe néo_russe ADJ s 0 0.14 0 0.14 +néo-réalisme néo_réalisme NOM m s 0.1 0.07 0.1 0.07 +néo-réaliste néo_réaliste ADJ m s 0 0.2 0 0.07 +néo-réalistes néo_réaliste ADJ m p 0 0.2 0 0.14 +néo-zélandais néo_zélandais ADJ m 0.11 0.14 0.1 0.14 +néo-zélandaise néo_zélandais ADJ f s 0.11 0.14 0.01 0 +oeil-de-boeuf oeil_de_boeuf NOM m s 0 0.95 0 0.47 +oeils-de-boeuf oeil_de_boeuf NOM m p 0 0.95 0 0.47 +oeils-de-perdrix oeil_de_perdrix NOM m p 0 0.14 0 0.14 +off-shore off_shore NOM m s 0.07 0 0.07 0 +oiseau-clé oiseau_clé NOM m s 0.01 0 0.01 0 +oiseau-lyre oiseau_lyre NOM m s 0 0.07 0 0.07 +oiseau-mouche oiseau_mouche NOM m s 0.1 0.27 0.08 0.14 +oiseau-vedette oiseau_vedette NOM m s 0.01 0 0.01 0 +oiseaux-mouches oiseau_mouche NOM m p 0.1 0.27 0.01 0.14 +oligo-éléments oligo_élément NOM m p 0 0.14 0 0.14 +olla podrida olla_podrida NOM f 0 0.07 0 0.07 +olé-olé olé_olé ADJ m p 0 0.14 0 0.14 +on-dit on_dit NOM m 0.14 0.81 0.14 0.81 +on-line on_line ADV 0.07 0 0.07 0 +one-step one_step NOM m s 0 0.2 0 0.2 +opéra-comique opéra_comique NOM m s 0 0.34 0 0.34 +opération-miracle opération_miracle NOM f s 0 0.07 0 0.07 +orang-outan orang_outan NOM m s 0.28 0.2 0.22 0.07 +orang-outang orang_outang NOM m s 0.08 0.74 0.08 0.61 +orangs-outangs orang_outang NOM m p 0.08 0.74 0 0.14 +orangs-outans orang_outan NOM m p 0.28 0.2 0.06 0.14 +osso buco osso_buco NOM m s 0.05 0 0.05 0 +oto rhino oto_rhino NOM s 0.49 1.22 0 0.07 +oto-rhino oto_rhino NOM s 0.49 1.22 0.48 1.08 +oto-rhino-laryngologique oto_rhino_laryngologique ADJ f s 0 0.07 0 0.07 +oto-rhino-laryngologiste oto_rhino_laryngologiste NOM s 0.02 0 0.02 0 +oto-rhinos oto_rhino NOM p 0.49 1.22 0.01 0.07 +ouest-allemand ouest_allemand ADJ m s 0.12 0 0.12 0 +oui-da oui_da ONO 0.27 0.07 0.27 0.07 +outre-atlantique outre_atlantique ADV 0.04 0.68 0.04 0.68 +outre-manche outre_manche ADV 0 0.2 0 0.2 +outre-mer outre_mer ADV 0.89 4.05 0.89 4.05 +outre-rhin outre_rhin ADV 0 0.27 0 0.27 +outre-tombe outre_tombe ADJ s 0.26 2.16 0.26 2.16 +ouvre-bouteille ouvre_bouteille NOM m s 0.12 0.14 0.08 0 +ouvre-bouteilles ouvre_bouteille NOM m p 0.12 0.14 0.04 0.14 +ouvre-boîte ouvre_boîte NOM m s 0.32 0.2 0.32 0.2 +ouvre-boîtes ouvre_boîtes NOM m 0.16 0.34 0.16 0.34 +ouï-dire ouï_dire NOM m 0 1.01 0 1.01 +palma-christi palma_christi NOM m 0 0.07 0 0.07 +pan bagnat pan_bagnat NOM m s 0 0.14 0 0.14 +panier-repas panier_repas NOM m 0.21 0.07 0.21 0.07 +panneau-réclame panneau_réclame NOM m s 0 0.68 0 0.68 +papa-cadeau papa_cadeau NOM m s 0.01 0 0.01 0 +papier-cadeau papier_cadeau NOM m s 0.07 0.07 0.07 0.07 +papier-monnaie papier_monnaie NOM m s 0 0.14 0 0.14 +papiers-calque papier_calque NOM m p 0 0.07 0 0.07 +paquet-cadeau paquet_cadeau NOM m s 0.19 0.2 0.19 0.2 +paquets-cadeaux paquets_cadeaux NOM m p 0.01 0.54 0.01 0.54 +par mégarde par_mégarde ADV 0.61 2.91 0.61 2.91 +par-ci par_ci ADV 3.1 9.12 3.1 9.12 +par-dedans par_dedans PRE 0 0.07 0 0.07 +par-delà par_delà PRE 1.32 9.05 1.32 9.05 +par-derrière par_derrière PRE 2.04 6.35 2.04 6.35 +par-dessous par_dessous PRE 0.32 2.16 0.32 2.16 +par-dessus par_dessus PRE 16.1 69.19 16.1 69.19 +par-devant par_devant PRE 0.16 1.96 0.16 1.96 +par-devers par_devers PRE 0.01 1.08 0.01 1.08 +para-humain para_humain NOM m s 0 0.14 0 0.14 +parce qu parce_que CON 4.13 2.36 4.13 2.36 +parce que parce_que CON 548.52 327.43 548.52 327.43 +pare-balle pare_balle ADJ s 0.13 0 0.13 0 +pare-balles pare_balles ADJ 1.92 0.34 1.92 0.34 +pare-boue pare_boue NOM m 0.04 0 0.04 0 +pare-brise pare_brise NOM m 4.12 7.16 4.08 7.16 +pare-brises pare_brise NOM m p 4.12 7.16 0.04 0 +pare-chocs pare_chocs NOM m 1.85 1.82 1.85 1.82 +pare-feu pare_feu NOM m 0.24 0.07 0.24 0.07 +pare-feux pare_feux NOM m p 0.05 0 0.05 0 +pare-soleil pare_soleil NOM m 0.26 0.54 0.26 0.54 +pare-éclats pare_éclats NOM m 0 0.07 0 0.07 +pare-étincelles pare_étincelles NOM m 0 0.07 0 0.07 +paris-brest paris_brest NOM m 0.19 0.2 0.19 0.2 +part time part_time NOM f s 0 0.14 0 0.14 +partenaire-robot partenaire_robot NOM s 0.01 0 0.01 0 +pas-de-porte pas_de_porte NOM m 0 0.2 0 0.2 +pas-je pas_je ADV 0.01 0 0.01 0 +paso doble paso_doble NOM m 0.69 0.81 0.69 0.81 +paso-doble paso_doble NOM m s 0 0.07 0 0.07 +passe-boule passe_boule NOM m s 0 0.07 0 0.07 +passe-boules passe_boules NOM m 0 0.07 0 0.07 +passe-crassane passe_crassane NOM f 0 0.14 0 0.14 +passe-droit passe_droit NOM m s 0.25 0.47 0.08 0.27 +passe-droits passe_droit NOM m p 0.25 0.47 0.17 0.2 +passe-la-moi passe_la_moi NOM f s 0.35 0.07 0.35 0.07 +passe-lacet passe_lacet NOM m s 0 0.2 0 0.07 +passe-lacets passe_lacet NOM m p 0 0.2 0 0.14 +passe-montagne passe_montagne NOM m s 0.41 1.69 0.39 1.35 +passe-montagnes passe_montagne NOM m p 0.41 1.69 0.02 0.34 +passe-muraille passe_muraille NOM m 0.01 0.07 0.01 0.07 +passe-partout passe_partout NOM m 0.45 1.22 0.45 1.22 +passe-passe passe_passe NOM m 0.97 1.15 0.97 1.15 +passe-pied passe_pied NOM m s 0 0.07 0 0.07 +passe-plat passe_plat NOM m s 0.04 0.14 0.04 0.14 +passe-roses passe_rose NOM f p 0 0.07 0 0.07 +passe-temps passe_temps NOM m 4.21 2.77 4.21 2.77 +pater familias pater_familias NOM m 0.03 0.07 0.03 0.07 +pater noster pater_noster NOM m s 0.1 0.41 0.1 0.41 +pause-café pause_café NOM f s 0.29 0.14 0.26 0.07 +pauses-café pause_café NOM f p 0.29 0.14 0.03 0.07 +pauses-repas pause_repas NOM f p 0.01 0.07 0.01 0.07 +pax americana pax_americana NOM f 0.01 0 0.01 0 +peau-rouge peau_rouge NOM s 0.51 0.54 0.49 0.27 +peaux-rouges peau_rouge NOM p 0.51 0.54 0.02 0.27 +peigne-cul peigne_cul NOM m s 0.23 0.34 0.07 0.27 +peigne-culs peigne_cul NOM m p 0.23 0.34 0.17 0.07 +peigne-zizi peigne_zizi NOM s 0 0.07 0 0.07 +pelle-bêche pelle_bêche NOM f s 0 0.14 0 0.07 +pelle-pioche pelle_pioche NOM f s 0 0.41 0 0.07 +pelles-bêches pelle_bêche NOM f p 0 0.14 0 0.07 +pelles-pioches pelle_pioche NOM f p 0 0.41 0 0.34 +pense-bête pense_bête NOM m s 0.34 0.41 0.17 0.41 +pense-bêtes pense_bête NOM m p 0.34 0.41 0.17 0 +perce-oreille perce_oreille NOM m s 0.04 0.2 0.03 0.07 +perce-oreilles perce_oreille NOM m p 0.04 0.2 0.01 0.14 +perce-pierre perce_pierre NOM f s 0 0.07 0 0.07 +persona grata persona_grata ADJ 0.01 0 0.01 0 +persona non grata persona_non_grata NOM f 0.08 0.07 0.08 0.07 +personnage-clé personnage_clé NOM m s 0.02 0 0.02 0 +pet-de-loup pet_de_loup NOM m s 0 0.07 0 0.07 +petit-beurre petit_beurre NOM m s 0 0.95 0 0.14 +petit-bourgeois petit_bourgeois ADJ m 0.77 1.42 0.77 1.42 +petit-cousin petit_cousin NOM m s 0 0.07 0 0.07 +petit-déjeuner petit_déjeuner NOM m s 13.51 0.07 13.37 0 +petit-fils petit_fils NOM m 12.9 12.7 12.5 11.01 +petit-four petit_four NOM m s 0.08 0.07 0.03 0 +petit-gris petit_gris NOM m 0.51 0 0.27 0 +petit-lait petit_lait NOM m s 0.05 0.54 0.05 0.54 +petit-maître petit_maître NOM m s 0.2 0.07 0.2 0.07 +petit-neveu petit_neveu NOM m s 0.04 0.95 0.04 0.61 +petit-nègre petit_nègre NOM m s 0 0.14 0 0.14 +petit-salé petit_salé NOM m s 0 0.07 0 0.07 +petit-suisse petit_suisse NOM m s 0.01 0.2 0.01 0 +petite-bourgeoise petite_bourgeoise ADJ f s 0.11 0.27 0.11 0.27 +petite-cousine petite_cousine NOM f s 0 0.14 0 0.14 +petite-fille petite_fille NOM f s 5.3 6.35 4.97 5.74 +petite-nièce petite_nièce NOM f s 0.02 0.2 0.02 0.2 +petites-bourgeoises petite_bourgeoise NOM f p 0 0.34 0 0.14 +petites-filles petite_fille NOM f p 5.3 6.35 0.33 0.61 +petits-beurre petit_beurre NOM m p 0 0.95 0 0.81 +petits-bourgeois petit_bourgeois NOM m p 0.71 2.16 0.32 1.42 +petits-déjeuners petit_déjeuner NOM m p 13.51 0.07 0.14 0.07 +petits-enfants petit_enfant NOM m p 5.76 3.04 5.76 3.04 +petits-fils petit_fils NOM m p 12.9 12.7 0.4 1.69 +petits-fours petit_four NOM m p 0.08 0.07 0.04 0.07 +petits-gris petit_gris NOM m p 0.51 0 0.25 0 +petits-neveux petit_neveu NOM m p 0.04 0.95 0 0.34 +petits-pois petit_pois NOM m p 0.1 0 0.1 0 +petits-suisses petit_suisse NOM m p 0.01 0.2 0 0.2 +pets-de-nonne pet_de_nonne NOM m p 0 0.41 0 0.41 +peu ou prou peu_ou_prou ADV 0.4 0.68 0.4 0.68 +peut-être peut_être ADV 907.68 697.97 907.68 697.97 +photo-finish photo_finish NOM f s 0.01 0 0.01 0 +photo-robot photo_robot NOM f s 0.01 0.14 0.01 0.14 +photo-électrique photo_électrique ADJ f s 0 0.14 0 0.14 +phrase-clé phrase_clé NOM f s 0.02 0.07 0.02 0 +phrase-robot phrase_robot NOM f s 0 0.07 0 0.07 +phrases-clés phrase_clé NOM f p 0.02 0.07 0 0.07 +physico-chimiques physico_chimique ADJ f p 0 0.07 0 0.07 +piano-bar piano_bar NOM m s 0.05 0 0.05 0 +pic-vert pic_vert NOM m s 0.28 0.27 0.27 0.27 +pick-up pick_up NOM m 1.98 2.64 1.98 2.64 +pics-verts pic_vert NOM m p 0.28 0.27 0.01 0 +pie-grièche pie_grièche NOM f s 0 0.07 0 0.07 +pie-mère pie_mère NOM f s 0.01 0.07 0.01 0.07 +pied-bot pied_bot NOM m s 0.28 0.61 0.28 0.61 +pied-d'alouette pied_d_alouette NOM m s 0.01 0 0.01 0 +pied-d'oeuvre pied_d_oeuvre NOM m s 0 0.07 0 0.07 +pied-de-biche pied_de_biche NOM m s 0.32 0.27 0.28 0.2 +pied-de-poule pied_de_poule ADJ 0.02 0.54 0.02 0.54 +pied-noir pied_noir NOM m s 0.28 3.78 0.09 0.54 +pied-plat pied_plat NOM m s 0.05 0 0.05 0 +pieds-de-biche pied_de_biche NOM m p 0.32 0.27 0.04 0.07 +pieds-de-coq pied_de_coq NOM m p 0 0.07 0 0.07 +pieds-droits pied_droit NOM m p 0 0.07 0 0.07 +pieds-noirs pied_noir NOM m p 0.28 3.78 0.19 3.24 +pigeon-voyageur pigeon_voyageur NOM m s 0.14 0 0.14 0 +pile-poil pile_poil NOM f s 0.07 0 0.07 0 +pin's pin_s NOM m 0.3 0 0.3 0 +pin-pon pin_pon ONO 0 0.34 0 0.34 +pin-up pin_up NOM f 0.71 0.54 0.71 0.54 +pince-fesses pince_fesse NOM m p 0.05 0.14 0.05 0.14 +pince-mailles pince_maille NOM m p 0 0.07 0 0.07 +pince-monseigneur pince_monseigneur NOM f s 0.03 0.54 0.03 0.54 +pince-nez pince_nez NOM m 0.07 1.35 0.07 1.35 +pince-sans-rire pince_sans_rire ADJ s 0.05 0.47 0.05 0.47 +ping-pong ping_pong NOM m s 2.67 2.36 2.67 2.36 +pipe-line pipe_line NOM m s 0.11 0.34 0.09 0.34 +pipe-lines pipe_line NOM m p 0.11 0.34 0.02 0 +pipi-room pipi_room NOM m s 0.05 0 0.05 0 +pique-assiette pique_assiette NOM s 0.39 0.34 0.27 0.27 +pique-assiettes pique_assiette NOM p 0.39 0.34 0.12 0.07 +pique-boeufs pique_boeuf NOM m p 0 0.07 0 0.07 +pique-feu pique_feu NOM m 0.03 0.81 0.03 0.81 +pique-niquaient pique_niquer VER 1.03 0.74 0.01 0 ind:imp:3p; +pique-nique pique_nique NOM m s 6.05 4.12 5.57 3.18 +pique-niquent pique_niquer VER 1.03 0.74 0.03 0.07 ind:pre:3p; +pique-niquer pique_niquer VER 1.03 0.74 0.83 0.47 inf;; +pique-niqueraient pique_niquer VER 1.03 0.74 0.01 0 cnd:pre:3p; +pique-niquerons pique_niquer VER 1.03 0.74 0.01 0 ind:fut:1p; +pique-niques pique_nique NOM m p 6.05 4.12 0.48 0.95 +pique-niqueurs pique_niqueur NOM m p 0.02 0.27 0.02 0.27 +pique-niquez pique_niquer VER 1.03 0.74 0.01 0.07 ind:pre:2p; +pique-niqué pique_niquer VER m s 1.03 0.74 0.05 0.07 par:pas; +pis-aller pis_aller NOM m 0.14 0.81 0.14 0.81 +pisse-copie pisse_copie NOM s 0.01 0.27 0.01 0.2 +pisse-copies pisse_copie NOM p 0.01 0.27 0 0.07 +pisse-froid pisse_froid NOM m 0.1 0.34 0.1 0.34 +pisse-vinaigre pisse_vinaigre NOM m 0.04 0.07 0.04 0.07 +pistolet-mitrailleur pistolet_mitrailleur NOM m s 0.02 0 0.02 0 +pit bull pit_bull NOM m s 0.63 0 0.31 0 +pit-bull pit_bull NOM m s 0.63 0 0.26 0 +pit-bulls pit_bull NOM m p 0.63 0 0.06 0 +plain-chant plain_chant NOM m s 0.1 0.27 0.1 0.27 +plain-pied plain_pied NOM m s 0.12 3.65 0.12 3.65 +plan-séquence plan_séquence NOM m s 0.1 0 0.1 0 +planches-contacts planche_contact NOM f p 0 0.07 0 0.07 +plat-bord plat_bord NOM m s 0.01 0.61 0 0.54 +plat-ventre plat_ventre NOM m s 0.11 0.07 0.11 0.07 +plate-bande plate_bande NOM f s 0.82 2.77 0.12 0.54 +plate-forme plate_forme NOM f s 3.06 11.15 2.49 8.45 +plateau-repas plateau_repas NOM m 0.04 0.14 0.04 0.14 +plateaux-repas plateaux_repas NOM m p 0.04 0.07 0.04 0.07 +plates-bandes plate_bande NOM f p 0.82 2.77 0.7 2.23 +plates-formes plate_forme NOM f p 3.06 11.15 0.57 2.7 +plats-bords plat_bord NOM m p 0.01 0.61 0.01 0.07 +play back play_back NOM m 0.59 0.14 0.02 0 +play-back play_back NOM m 0.59 0.14 0.57 0.14 +play-boy play_boy NOM m s 0.69 1.08 0.58 0.95 +play-boys play_boy NOM m p 0.69 1.08 0.11 0.14 +plein-air plein_air ADJ m s 0 0.07 0 0.07 +plein-air plein_air NOM m s 0 0.2 0 0.2 +plein-cintre plein_cintre NOM m s 0 0.07 0 0.07 +plein-emploi plein_emploi NOM m s 0.01 0 0.01 0 +plein-temps plein_temps NOM m 0.12 0 0.12 0 +plum-pudding plum_pudding NOM m s 0.02 0.07 0.02 0.07 +plus-que-parfait plus_que_parfait NOM m s 0.02 0.14 0.02 0.07 +plus-que-parfaits plus_que_parfait NOM m p 0.02 0.14 0 0.07 +plus-value plus_value NOM f s 0.72 0.68 0.48 0.54 +plus-values plus_value NOM f p 0.72 0.68 0.25 0.14 +pneus-neige pneus_neige NOM m p 0.02 0 0.02 0 +poche-revolver poche_revolver NOM s 0 0.27 0 0.27 +pochette-surprise pochette_surprise NOM f s 0.2 0.34 0.2 0.2 +pochettes-surprises pochette_surprise NOM f p 0.2 0.34 0 0.14 +poids-lourds poids_lourds NOM m 0.02 0.07 0.02 0.07 +poil-de-carotte poil_de_carotte NOM m s 0 0.07 0 0.07 +point-clé point_clé NOM m s 0.02 0 0.02 0 +point-virgule point_virgule NOM m s 0.04 0.07 0.04 0 +points-virgules point_virgule NOM m p 0.04 0.07 0 0.07 +poire-vérité poire_vérité NOM f s 0 0.07 0 0.07 +poisson-chat poisson_chat NOM m s 0.64 0.54 0.54 0.34 +poisson-globe poisson_globe NOM m s 0.02 0 0.02 0 +poisson-lune poisson_lune NOM m s 0.15 0.07 0.15 0.07 +poisson-pilote poisson_pilote NOM m s 0 0.07 0 0.07 +poisson-épée poisson_épée NOM m s 0.09 0 0.09 0 +poissons-chats poisson_chat NOM m p 0.64 0.54 0.11 0.2 +police-secours police_secours NOM f s 0.16 0.47 0.16 0.47 +politico-religieuse politico_religieux ADJ f s 0 0.07 0 0.07 +politique-fiction politique_fiction NOM f s 0 0.07 0 0.07 +poly-sexuelle poly_sexuel ADJ f s 0.01 0 0.01 0 +pom-pom girl pom_pom_girl NOM f s 2.06 0 0.95 0 +pom-pom girls pom_pom_girl NOM f p 2.06 0 1.11 0 +pont-l'évêque pont_l_évêque NOM m s 0 0.07 0 0.07 +pont-levis pont_levis NOM m 0.46 1.42 0.46 1.42 +pont-neuf pont_neuf NOM m s 0.14 2.43 0.14 2.43 +pont-promenade pont_promenade NOM m s 0 0.07 0 0.07 +ponts-levis ponts_levis NOM m p 0 0.27 0 0.27 +pop-club pop_club NOM s 0 0.07 0 0.07 +pop-corn pop_corn NOM m 3.79 0.14 3.79 0.14 +porc-épic porc_épic NOM m s 0.55 0.27 0.55 0.27 +port-salut port_salut NOM m 0 0.2 0 0.2 +porte-aiguille porte_aiguille NOM m s 0.07 0 0.07 0 +porte-avion porte_avion NOM m s 0.04 0.07 0.04 0.07 +porte-avions porte_avions NOM m 1.21 1.22 1.21 1.22 +porte-bagages porte_bagages NOM m 0.02 3.11 0.02 3.11 +porte-bannière porte_bannière NOM m s 0 0.07 0 0.07 +porte-billets porte_billets NOM m 0 0.14 0 0.14 +porte-bois porte_bois NOM m 0 0.07 0 0.07 +porte-bonheur porte_bonheur NOM m 4.58 1.08 4.58 1.08 +porte-bouteilles porte_bouteilles NOM m 0 0.27 0 0.27 +porte-bébé porte_bébé NOM m s 0.02 0 0.02 0 +porte-cannes porte_cannes NOM m 0 0.07 0 0.07 +porte-carte porte_carte NOM m s 0 0.07 0 0.07 +porte-cartes porte_cartes NOM m 0 0.34 0 0.34 +porte-chance porte_chance NOM m 0.17 0.07 0.17 0.07 +porte-chapeaux porte_chapeaux NOM m 0.04 0 0.04 0 +porte-cigarette porte_cigarette NOM m s 0 0.2 0 0.2 +porte-cigarettes porte_cigarettes NOM m 0.65 0.74 0.65 0.74 +porte-clef porte_clef NOM m s 0.02 0.14 0.02 0.14 +porte-clefs porte_clefs NOM m 0.27 0.34 0.27 0.34 +porte-clé porte_clé NOM m s 0.1 0 0.1 0 +porte-clés porte_clés NOM m 1.44 0.54 1.44 0.54 +porte-conteneurs porte_conteneurs NOM m 0.01 0 0.01 0 +porte-coton porte_coton NOM m s 0 0.07 0 0.07 +porte-couilles porte_couilles NOM m 0 0.07 0 0.07 +porte-couteau porte_couteau NOM m s 0 0.07 0 0.07 +porte-couteaux porte_couteaux NOM m p 0 0.07 0 0.07 +porte-cravate porte_cravate NOM m s 0 0.07 0 0.07 +porte-crayon porte_crayon NOM m s 0.01 0 0.01 0 +porte-document porte_document NOM m s 0.01 0 0.01 0 +porte-documents porte_documents NOM m 0.86 0.68 0.86 0.68 +porte-drapeau porte_drapeau NOM m s 0.19 0.68 0.19 0.68 +porte-drapeaux porte_drapeaux NOM m p 0.01 0.07 0.01 0.07 +porte-fanion porte_fanion NOM m s 0 0.14 0 0.14 +porte-fenêtre porte_fenêtre NOM f s 0.14 4.46 0.03 3.11 +porte-flingue porte_flingue NOM m s 0.08 0.07 0.08 0 +porte-flingues porte_flingue NOM m p 0.08 0.07 0 0.07 +porte-forets porte_foret NOM m p 0 0.07 0 0.07 +porte-glaive porte_glaive NOM m 0.1 1.01 0.1 1.01 +porte-jarretelles porte_jarretelles NOM m 0.59 1.89 0.59 1.89 +porte-malheur porte_malheur NOM m 0.19 0.07 0.19 0.07 +porte-mine porte_mine NOM m s 0 0.14 0 0.14 +porte-monnaie porte_monnaie NOM m 2.24 6.01 2.24 6.01 +porte-musique porte_musique NOM m s 0 0.07 0 0.07 +porte-objet porte_objet NOM m s 0.01 0 0.01 0 +porte-papier porte_papier NOM m 0.01 0.07 0.01 0.07 +porte-parapluie porte_parapluie NOM m s 0 0.07 0 0.07 +porte-parapluies porte_parapluies NOM m 0.14 0.47 0.14 0.47 +porte-plume porte_plume NOM m 0.29 3.78 0.29 3.72 +porte-plumes porte_plume NOM m p 0.29 3.78 0 0.07 +porte-queue porte_queue NOM m 0.01 0 0.01 0 +porte-savon porte_savon NOM m s 0.09 0.27 0.09 0.27 +porte-serviette porte_serviette NOM m s 0 0.2 0 0.2 +porte-serviettes porte_serviettes NOM m 0.12 0.2 0.12 0.2 +porte-tambour porte_tambour NOM m 0.01 0.34 0.01 0.34 +porte-voix porte_voix NOM m 0.55 2.64 0.55 2.64 +porte-à-faux porte_à_faux NOM m 0 0.61 0 0.61 +porte-à-porte porte_à_porte NOM m 0 0.41 0 0.41 +porte-épée porte_épée NOM m s 0 0.14 0 0.14 +porte-étendard porte_étendard NOM m s 0.01 0.34 0.01 0.27 +porte-étendards porte_étendard NOM m p 0.01 0.34 0 0.07 +porte-étrier porte_étrier NOM m s 0 0.07 0 0.07 +portes-fenêtres porte_fenêtre NOM f p 0.14 4.46 0.1 1.35 +portrait-robot portrait_robot NOM m s 1.17 0.54 0.77 0.47 +portraits-robots portrait_robot NOM m p 1.17 0.54 0.4 0.07 +pose-la-moi pose_la_moi NOM f s 0.01 0 0.01 0 +position-clé position_clé NOM f s 0.01 0 0.01 0 +post it post_it NOM m 1.85 0 0.01 0 +post mortem post_mortem ADV 0.28 0.2 0.28 0.2 +post-apocalyptique post_apocalyptique ADJ s 0.04 0 0.04 0 +post-empire post_empire NOM m s 0 0.07 0 0.07 +post-hypnotique post_hypnotique ADJ f s 0.02 0 0.02 0 +post-impressionnisme post_impressionnisme NOM m s 0.01 0 0.01 0 +post-it post_it NOM m 1.85 0 1.84 0 +post-moderne post_moderne ADJ s 0.14 0 0.14 0 +post-natal post_natal ADJ m s 0.18 0.07 0.03 0.07 +post-natale post_natal ADJ f s 0.18 0.07 0.16 0 +post-opératoire post_opératoire ADJ s 0.19 0 0.17 0 +post-opératoires post_opératoire ADJ m p 0.19 0 0.02 0 +post-partum post_partum NOM m 0.04 0 0.04 0 +post-production post_production NOM f s 0.14 0 0.14 0 +post-punk post_punk NOM s 0 0.14 0 0.14 +post-romantique post_romantique ADJ m s 0 0.07 0 0.07 +post-rupture post_rupture NOM f s 0.01 0 0.01 0 +post-scriptum post_scriptum NOM m 0.29 1.96 0.29 1.96 +post-surréalistes post_surréaliste ADJ p 0 0.07 0 0.07 +post-synchro post_synchro ADJ s 0.05 0 0.05 0 +post-traumatique post_traumatique ADJ s 0.82 0.07 0.79 0 +post-traumatiques post_traumatique ADJ p 0.82 0.07 0.03 0.07 +post-victorien post_victorien ADJ m s 0.01 0 0.01 0 +post-zoo post_zoo NOM m s 0.01 0 0.01 0 +poste-clé poste_clé NOM s 0.02 0 0.02 0 +postes-clés postes_clé NOM p 0.01 0 0.01 0 +pot-au-feu pot_au_feu NOM m 0.9 0.88 0.9 0.88 +pot-bouille pot_bouille NOM m 0.01 0 0.01 0 +pot-de-vin pot_de_vin NOM m s 1.22 0.41 1.22 0.41 +pot-pourri pot_pourri NOM m s 0.49 0.68 0.34 0.68 +poto-poto poto_poto NOM m s 0 0.14 0 0.14 +potron-minet potron_minet NOM m s 0.03 0.27 0.03 0.27 +pots-de-vin pots_de_vin NOM m p 1.98 0.34 1.98 0.34 +pots-pourris pot_pourri NOM m p 0.49 0.68 0.15 0 +pouce-pied pouce_pied NOM m s 0.01 0 0.01 0 +pour-cent pour_cent NOM m 0.56 0 0.56 0 +pousse-au-crime pousse_au_crime NOM m 0.02 0.07 0.02 0.07 +pousse-café pousse_café NOM m 0.13 0.68 0.13 0.68 +pousse-cailloux pousse_cailloux NOM m s 0 0.07 0 0.07 +pousse-pousse pousse_pousse NOM m 1.43 0.41 1.43 0.41 +premier-maître premier_maître NOM m s 0.16 0 0.16 0 +premier-né premier_né NOM m s 0.91 0.2 0.77 0.14 +premiers-nés premier_né NOM m p 0.91 0.2 0.14 0.07 +première-née première_née NOM f s 0.11 0 0.11 0 +presqu'île presqu_île NOM f s 0.16 1.49 0.16 1.35 +presqu'îles presqu_île NOM f p 0.16 1.49 0 0.14 +press-book press_book NOM m s 0.03 0 0.03 0 +presse-agrumes presse_agrumes NOM m 0.04 0 0.04 0 +presse-bouton presse_bouton ADJ f s 0.04 0.07 0.04 0.07 +presse-citron presse_citron NOM m s 0.02 0 0.02 0 +presse-fruits presse_fruits NOM m 0.07 0 0.07 0 +presse-papier presse_papier NOM m s 0.16 0.27 0.16 0.27 +presse-papiers presse_papiers NOM m 0.24 0.47 0.24 0.47 +presse-purée presse_purée NOM m 0.04 0.41 0.04 0.41 +presse-raquette presse_raquette NOM m s 0 0.07 0 0.07 +prie-dieu prie_dieu NOM m 0.01 2.64 0.01 2.64 +prime time prime_time NOM m 0.41 0 0.41 0 +prime-saut prime_saut NOM s 0 0.07 0 0.07 +primo-infection primo_infection NOM f s 0 0.07 0 0.07 +prince-de-galles prince_de_galles NOM m 0 0.27 0 0.27 +prince-évêque prince_évêque NOM m s 0 0.14 0 0.14 +prisons-écoles prisons_école NOM f p 0 0.07 0 0.07 +prix-choc prix_choc NOM m 0 0.07 0 0.07 +pro-occidental pro_occidental ADJ m s 0.01 0 0.01 0 +proche-oriental proche_oriental ADJ m s 0.01 0 0.01 0 +procès-test procès_test NOM m 0.02 0 0.02 0 +procès-verbal procès_verbal NOM m s 3.86 2.3 3.55 1.76 +procès-verbaux procès_verbal NOM m p 3.86 2.3 0.31 0.54 +propre-à-rien propre_à_rien NOM m s 0 0.07 0 0.07 +protège-cahier protège_cahier NOM m s 0.01 0.07 0.01 0.07 +protège-dents protège_dents NOM m 0.1 0.27 0.1 0.27 +protège-slip protège_slip NOM m s 0.03 0 0.03 0 +protège-tibia protège_tibia NOM m s 0.02 0 0.02 0 +prud'homme prud_homme NOM m s 0.21 0.07 0.01 0 +prud'hommes prud_homme NOM m p 0.21 0.07 0.2 0.07 +près de près_de ADV 4.1 16.35 4.1 16.35 +pré-salé pré_salé NOM m s 0 0.2 0 0.2 +pré-établi pré_établi ADJ m s 0 0.07 0 0.07 +prénom-type prénom_type NOM m s 0 0.07 0 0.07 +président-directeur président_directeur NOM m s 0.02 0.41 0.02 0.27 +présidents-directeurs président_directeur NOM m p 0.02 0.41 0 0.14 +prêchi-prêcha prêchi_prêcha NOM m 0.11 0.14 0.11 0.14 +prêt-bail prêt_bail NOM m s 0 0.27 0 0.27 +prêt-à-porter prêt_à_porter NOM m s 0 0.95 0 0.95 +prête-nom prête_nom NOM m s 0 0.27 0 0.27 +prêtre-ouvrier prêtre_ouvrier NOM m s 0 0.07 0 0.07 +pseudo-gouvernement pseudo_gouvernement NOM m s 0 0.14 0 0.14 +psychiatre-conseil psychiatre_conseil NOM s 0.02 0 0.02 0 +psychologie-fiction psychologie_fiction NOM f s 0 0.07 0 0.07 +public schools public_school NOM f p 0 0.07 0 0.07 +public-relations public_relations NOM f p 0.01 0.2 0.01 0.2 +pull-over pull_over NOM m s 0.8 6.35 0.78 5.27 +pull-overs pull_over NOM m p 0.8 6.35 0.02 1.08 +pulso-réacteurs pulso_réacteur NOM m p 0.01 0 0.01 0 +punching ball punching_ball NOM m s 0.71 0.61 0.08 0 +punching-ball punching_ball NOM m s 0.71 0.61 0.64 0.61 +pur-sang pur_sang NOM m 1.01 2.23 1.01 2.23 +pèse-acide pèse_acide NOM m s 0 0.07 0 0.07 +pèse-bébé pèse_bébé NOM m s 0 0.14 0 0.14 +pèse-lettre pèse_lettre NOM m s 0 0.07 0 0.07 +pèse-personne pèse_personne NOM m s 0.02 0.07 0.02 0 +pèse-personnes pèse_personne NOM m p 0.02 0.07 0 0.07 +pète-sec pète_sec ADJ 0.03 0.41 0.03 0.41 +pêle-mêle pêle_mêle ADV 0 8.24 0 8.24 +qu'en-dira-t-on qu_en_dira_t_on NOM m 0.1 0.41 0.1 0.41 +quant-à-moi quant_à_moi NOM m 0 0.14 0 0.14 +quant-à-soi quant_à_soi NOM m 0 1.22 0 1.22 +quarante-cinq quarante_cinq ADJ:num 1.16 8.85 1.16 8.85 +quarante-cinquième quarante_cinquième ADJ 0.1 0.07 0.1 0.07 +quarante-deux quarante_deux ADJ:num 0.29 2.09 0.29 2.09 +quarante-deuxième quarante_deuxième ADJ 0.03 0.07 0.03 0.07 +quarante-huit quarante_huit ADJ:num 1.11 6.76 1.11 6.76 +quarante-huitards quarante_huitard NOM m p 0 0.07 0 0.07 +quarante-huitième quarante_huitième ADJ 0.02 0.07 0.02 0.07 +quarante-neuf quarante_neuf ADJ:num 0.28 0.47 0.28 0.47 +quarante-quatre quarante_quatre ADJ:num 0.1 0.88 0.1 0.88 +quarante-sept quarante_sept ADJ:num 0.4 0.74 0.4 0.74 +quarante-septième quarante_septième ADJ 0.03 0.2 0.03 0.2 +quarante-six quarante_six ADJ:num 0.23 0.47 0.23 0.47 +quarante-trois quarante_trois ADJ:num 0.68 1.28 0.68 1.28 +quarante-troisième quarante_troisième ADJ 0 0.07 0 0.07 +quart-monde quart_monde NOM m s 0.02 0 0.02 0 +quartier-maître quartier_maître NOM m s 0.84 0.27 0.83 0.27 +quartiers-maîtres quartier_maître NOM m p 0.84 0.27 0.01 0 +quasi-agonie quasi_agonie NOM f s 0 0.07 0 0.07 +quasi-blasphème quasi_blasphème NOM m s 0 0.07 0 0.07 +quasi-bonheur quasi_bonheur NOM m s 0 0.07 0 0.07 +quasi-certitude quasi_certitude NOM f s 0.04 0.41 0.04 0.41 +quasi-chômage quasi_chômage NOM m s 0.02 0 0.02 0 +quasi-débutant quasi_débutant ADV 0.01 0 0.01 0 +quasi-décapitation quasi_décapitation NOM f s 0.01 0 0.01 0 +quasi-désertification quasi_désertification NOM f s 0 0.07 0 0.07 +quasi-facétieux quasi_facétieux ADJ m 0.01 0 0.01 0 +quasi-fiancée quasi_fiancé NOM f s 0 0.07 0 0.07 +quasi-futuristes quasi_futuriste ADJ m p 0.01 0 0.01 0 +quasi-génocide quasi_génocide NOM m s 0.01 0 0.01 0 +quasi-hérétique quasi_hérétique NOM s 0 0.07 0 0.07 +quasi-ignare quasi_ignare NOM s 0 0.07 0 0.07 +quasi-impossibilité quasi_impossibilité NOM f s 0 0.14 0 0.14 +quasi-impunité quasi_impunité NOM f s 0 0.07 0 0.07 +quasi-inconnu quasi_inconnu ADV 0.02 0.07 0.02 0.07 +quasi-indifférence quasi_indifférence NOM f s 0 0.07 0 0.07 +quasi-infirme quasi_infirme NOM s 0 0.07 0 0.07 +quasi-instantanée quasi_instantanée ADV 0.02 0 0.02 0 +quasi-jungienne quasi_jungienne NOM f s 0.01 0 0.01 0 +quasi-mariage quasi_mariage NOM m s 0 0.07 0 0.07 +quasi-maximum quasi_maximum ADV 0.01 0 0.01 0 +quasi-mendiant quasi_mendiant NOM m s 0.14 0 0.14 0 +quasi-miracle quasi_miracle NOM m s 0 0.07 0 0.07 +quasi-monopole quasi_monopole NOM m s 0.1 0 0.1 0 +quasi-morceau quasi_morceau NOM m s 0 0.07 0 0.07 +quasi-noyade quasi_noyade NOM f s 0.01 0 0.01 0 +quasi-nudité quasi_nudité NOM f s 0 0.14 0 0.14 +quasi-permanence quasi_permanence NOM f s 0 0.07 0 0.07 +quasi-protection quasi_protection NOM f s 0 0.07 0 0.07 +quasi-religieux quasi_religieux ADJ m s 0.01 0.07 0.01 0.07 +quasi-respect quasi_respect NOM m s 0 0.07 0 0.07 +quasi-totalité quasi_totalité NOM f s 0.16 0.88 0.16 0.88 +quasi-unanime quasi_unanime ADJ s 0 0.14 0 0.14 +quasi-unanimité quasi_unanimité NOM f s 0 0.07 0 0.07 +quasi-veuvage quasi_veuvage NOM m s 0 0.07 0 0.07 +quasi-ville quasi_ville NOM f s 0 0.07 0 0.07 +quasi-voisines quasi_voisines ADV 0 0.07 0 0.07 +quasi-émeute quasi_émeute NOM f s 0.02 0 0.02 0 +quasi-équitable quasi_équitable ADJ m s 0.01 0 0.01 0 +quat'zarts quat_zarts NOM m p 0 0.07 0 0.07 +quatre-feuilles quatre_feuilles NOM m 0.01 0.07 0.01 0.07 +quatre-heures quatre_heures NOM m 0.04 0.41 0.04 0.41 +quatre-mâts quatre_mâts NOM m 0.27 0.14 0.27 0.14 +quatre-quarts quatre_quarts NOM m 0.26 0.14 0.26 0.14 +quatre-saisons quatre_saisons NOM f 0.47 1.15 0.47 1.15 +quatre-vingt quatre_vingt ADJ:num 0.93 1.01 0.93 1.01 +quatre-vingt-cinq quatre_vingt_cinq ADJ:num 0.07 0.88 0.07 0.88 +quatre-vingt-deux quatre_vingt_deux ADJ:num 0 0.27 0 0.27 +quatre-vingt-dix quatre_vingt_dix NOM m 0.33 0.61 0.33 0.61 +quatre-vingt-dix-huit quatre_vingt_dix_huit ADJ:num 0.02 0.34 0.02 0.34 +quatre-vingt-dix-neuf quatre_vingt_dix_neuf ADJ:num 0.21 0.47 0.21 0.47 +quatre-vingt-dix-sept quatre_vingt_dix_sept ADJ:num 0 0.27 0 0.27 +quatre-vingt-dixième quatre_vingt_dixième ADJ 0.01 0.14 0.01 0.14 +quatre-vingt-douze quatre_vingt_douze ADJ:num 0.11 0.54 0.11 0.54 +quatre-vingt-douzième quatre_vingt_douzième ADJ 0 0.07 0 0.07 +quatre-vingt-huit quatre_vingt_huit ADJ:num 0.02 0.2 0.02 0.2 +quatre-vingt-neuf quatre_vingt_neuf ADJ:num 0.14 0.61 0.14 0.61 +quatre-vingt-onze quatre_vingt_onze ADJ:num 0.1 0.34 0.1 0.34 +quatre-vingt-quatorze quatre_vingt_quatorze ADJ:num 0.1 0.07 0.1 0.07 +quatre-vingt-quatre quatre_vingt_quatre ADJ:num 0.03 0.74 0.03 0.74 +quatre-vingt-quinze quatre_vingt_quinze ADJ:num 0.14 2.16 0.14 2.16 +quatre-vingt-seize quatre_vingt_seize ADJ:num 0.1 0.07 0.1 0.07 +quatre-vingt-sept quatre_vingt_sept ADJ:num 0.07 0.27 0.07 0.27 +quatre-vingt-six quatre_vingt_six ADJ:num 0.19 0.34 0.19 0.34 +quatre-vingt-treize quatre_vingt_treize ADJ:num 0.11 0.95 0.11 0.95 +quatre-vingt-treizième quatre_vingt_treizième ADJ 0 0.07 0 0.07 +quatre-vingt-trois quatre_vingt_trois ADJ:num 0.06 0.41 0.06 0.41 +quatre-vingt-un quatre_vingt_un ADJ:num 0.02 0.14 0.02 0.14 +quatre-vingtième quatre_vingtième ADJ 0 0.14 0 0.14 +quatre-vingtième quatre_vingtième NOM s 0 0.14 0 0.14 +quatre-vingts quatre_vingts ADJ:num 0.36 9.05 0.36 9.05 +quelqu'un quelqu_un PRO:ind s 629 128.92 629 128.92 +quelqu'une quelqu_une PRO:ind f s 0.08 0.61 0.08 0.61 +quelques-unes quelques_unes PRO:ind f p 3.5 8.51 3.5 8.51 +quelques-uns quelques_uns PRO:ind m p 8.33 22.09 8.33 22.09 +question-clé question_clé NOM f s 0.02 0 0.02 0 +question-réponse question_réponse NOM f s 0.09 0.07 0.02 0 +questions-réponses question_réponse NOM f p 0.09 0.07 0.07 0.07 +queue-d'aronde queue_d_aronde NOM f s 0 0.14 0 0.07 +queue-de-cheval queue_de_cheval NOM f s 0.14 0 0.14 0 +queue-de-pie queue_de_pie NOM f s 0.05 0.27 0.05 0.27 +queues-d'aronde queue_d_aronde NOM f p 0 0.14 0 0.07 +queues-de-rat queue_de_rat NOM f p 0 0.07 0 0.07 +qui-vive qui_vive ONO 0 0.14 0 0.14 +quote-part quote_part NOM f s 0.03 0.47 0.03 0.47 +rabat-joie rabat_joie ADJ 0.91 0.14 0.91 0.14 +radeau-radar radeau_radar NOM m s 0 0.07 0 0.07 +radical-socialisme radical_socialisme NOM m s 0 0.27 0 0.27 +radical-socialiste radical_socialiste ADJ m s 0 0.34 0 0.34 +radicale-socialiste radicale_socialiste NOM f s 0 0.2 0 0.2 +radicaux-socialistes radical_socialiste NOM m p 0 0.34 0 0.27 +radio-isotope radio_isotope NOM m s 0.04 0 0.04 0 +radio-réveil radio_réveil NOM m s 0.1 0.14 0.1 0.14 +radio-taxi radio_taxi NOM m s 0.14 0.07 0.14 0.07 +rahat-lokoum rahat_lokoum NOM m s 0 0.47 0 0.41 +rahat-lokoums rahat_lokoum NOM m p 0 0.47 0 0.07 +rahat-loukoums rahat_loukoum NOM m p 0 0.07 0 0.07 +ramasse-miettes ramasse_miettes NOM m 0.02 0.27 0.02 0.27 +ramasse-poussière ramasse_poussière NOM m 0.02 0 0.02 0 +ras-le-bol ras_le_bol NOM m 1.62 0.47 1.62 0.47 +rase-mottes rase_mottes NOM m 0.3 0.47 0.3 0.47 +rase-pet rase_pet NOM m s 0.02 0.2 0 0.2 +rase-pets rase_pet NOM m p 0.02 0.2 0.02 0 +rat-de-cave rat_de_cave NOM m s 0 0.07 0 0.07 +ray-grass ray_grass NOM m 0 0.14 0 0.14 +rayon-éclair rayon_éclair NOM m s 0 0.07 0 0.07 +raz-de-marée raz_de_marée NOM m 0.57 0.2 0.57 0.2 +re-aboie reaboyer VER 0 0.07 0 0.07 ind:pre:3s; +re-balbutiant rebalbutiant ADJ m s 0 0.07 0 0.07 +re-baptême rebaptême NOM m s 0 0.07 0 0.07 +re-belote re_belote ONO 0.01 0 0.01 0 +re-biberonner rebiberonner VER 0 0.07 0 0.07 inf; +re-bide rebide NOM m s 0 0.07 0 0.07 +re-blinder reblinder VER 0 0.07 0 0.07 inf; +re-bombardons rebombardon NOM m p 0.01 0 0.01 0 +re-boucler reboucler VER 0.14 1.01 0.01 0 inf; +re-cabossé recabosser VER m s 0 0.07 0 0.07 par:pas; +re-café recafé ADJ 0 0.07 0 0.07 +re-cailloux recailloux NOM m p 0 0.07 0 0.07 +re-calibrais recalibrer VER 0.01 0 0.01 0 ind:imp:1s; +re-cassée recasser VER f s 0.24 0.07 0.01 0 par:pas; +re-chanteur rechanteur NOM m s 0.01 0 0.01 0 +re-chiader rechiader VER 0 0.07 0 0.07 inf; +re-cisèle reciseler VER 0 0.07 0 0.07 ind:pre:3s; +re-classe reclasser VER 0.09 0.2 0 0.07 ind:pre:3s; +re-classer reclasser VER 0.09 0.2 0 0.07 inf; +re-connaître reconnaître VER 140.73 229.19 0 0.07 inf; +re-contacte recontacter VER 0.38 0.07 0.03 0 ind:pre:1s; +re-contactent recontacter VER 0.38 0.07 0.01 0 ind:pre:3p; +re-contacter recontacter VER 0.38 0.07 0.01 0 inf; +re-contacterai recontacter VER 0.38 0.07 0.06 0 ind:fut:1s; +re-convaincra reconvaincre VER 0 0.07 0 0.07 ind:fut:3s; +re-coup recoup NOM m s 0 0.07 0 0.07 +re-crac recrac NOM m s 0 0.07 0 0.07 +re-creusés recreuser VER m p 0.14 0.2 0 0.07 par:pas; +re-croquis recroquis NOM m 0 0.07 0 0.07 +re-création recréation NOM f s 0.04 0.27 0.03 0.07 +re-créée recréer VER f s 2.23 4.39 0 0.07 par:pas; +re-cul recul NOM m s 3.59 15.61 0 0.07 +re-diffuses rediffuser VER 0.2 0.07 0.01 0 ind:pre:2s; +re-dose redose NOM f s 0 0.07 0 0.07 +re-drapeau redrapeau NOM m s 0 0.07 0 0.07 +re-déchire redéchirer VER 0 0.07 0 0.07 ind:pre:3s; +re-déclic redéclic NOM m s 0 0.07 0 0.07 +re-décore redécorer VER 0.08 0 0.01 0 ind:pre:1s; +re-décorer redécorer VER 0.08 0 0.07 0 inf; +re-déménager redéménager VER 0 0.07 0 0.07 inf; +re-explique reexpliquer VER 0 0.07 0 0.07 ind:pre:3s; +re-faim refaim NOM f s 0.14 0 0.14 0 +re-frappe refrapper VER 0.07 0.14 0 0.07 ind:pre:3s; +re-frappé refrapper VER m s 0.07 0.14 0.01 0.07 par:pas; +re-fuse refuser VER 143.96 152.77 0 0.07 ind:pre:1s; +re-gomme regomme NOM f s 0 0.07 0 0.07 +re-histoires rehistoire NOM f p 0 0.07 0 0.07 +re-hygiène rehygiène NOM f s 0 0.07 0 0.07 +re-inter re_inter NOM m s 0 0.07 0 0.07 +re-kidnappais rekidnapper VER 0.01 0 0.01 0 ind:imp:1s; +re-lettre relettre NOM f s 0 0.07 0 0.07 +re-main remain NOM f s 0 0.07 0 0.07 +re-matérialisation rematérialisation NOM f s 0.01 0 0.01 0 +re-morphine remorphine NOM f s 0 0.07 0 0.07 +re-nés rené ADJ m p 0.01 0 0.01 0 +re-paye repayer VER 0.23 0.41 0 0.07 imp:pre:2s; +re-penser repenser VER 9.68 12.16 0.01 0 inf; +re-potassé repotasser VER m s 0 0.07 0 0.07 par:pas; +re-programmation reprogrammation NOM f s 0.01 0 0.01 0 +re-programmée reprogrammer VER f s 1.11 0 0.01 0 par:pas; +re-raconte reraconter VER 0 0.14 0 0.07 ind:pre:3s; +re-racontées reraconter VER f p 0 0.14 0 0.07 par:pas; +re-remplir reremplir VER 0.01 0.07 0.01 0.07 inf; +re-rentrer rerentrer VER 0.05 0.07 0.05 0.07 inf; +re-respirer rerespirer VER 0 0.07 0 0.07 inf; +re-ressortait reressortir VER 0 0.07 0 0.07 ind:imp:3s; +re-retirent reretirer VER 0 0.07 0 0.07 ind:pre:3p; +re-rigole rerigole NOM f s 0 0.07 0 0.07 +re-récurait rerécurer VER 0 0.07 0 0.07 ind:imp:3s; +re-réparer reréparer VER 0.01 0 0.01 0 inf; +re-rêvé rerêvé ADJ m s 0 0.07 0 0.07 +re-salué resaluer VER m s 0 0.07 0 0.07 par:pas; +re-savaté resavater VER m s 0.01 0 0.01 0 par:pas; +re-sculpte resculpter VER 0 0.07 0 0.07 ind:pre:3s; +re-sevrage resevrage NOM m s 0 0.07 0 0.07 +re-signer resigner VER 0.02 0 0.02 0 inf; +re-sommeil resommeil NOM m s 0 0.07 0 0.07 +re-sonne resonner VER 0 0.07 0 0.07 ind:pre:3s; +re-structuration restructuration NOM f s 0.91 0.34 0 0.07 +re-séparés reséparé ADJ m p 0 0.07 0 0.07 +re-taloche retaloche NOM f s 0 0.14 0 0.14 +re-titille retitiller VER 0 0.14 0 0.14 ind:pre:3s; +re-traitée retraité ADJ f s 0.68 1.15 0 0.07 +re-travail retravail NOM m s 0 0.07 0 0.07 +re-tuage retuage NOM m s 0.04 0 0.04 0 +re-tuer retuer VER 0.08 0.07 0.07 0.07 inf; +re-tues retu ADJ f p 0.01 0 0.01 0 +re-veux revouloir VER 0.45 0.41 0.04 0 ind:pre:2s; +re-vie revie NOM f s 0 0.07 0 0.07 +re-visite revisiter VER 0.21 0.61 0 0.07 ind:pre:3s; +re-vit revivre VER 10.37 20.68 0 0.07 ind:pre:3s; +re-vérifier revérifier VER 0.67 0 0.1 0 inf; +re-vérifié revérifié ADJ m s 0.34 0.07 0.1 0 +re-ébranlés reébranler VER m p 0 0.07 0 0.07 par:pas; +re-échanger reéchanger VER 0.01 0 0.01 0 inf; +ready-made ready_made NOM m s 0 0.07 0 0.07 +receleur-miracle receleur_miracle NOM m s 0 0.07 0 0.07 +recto tono recto_tono ADV 0 0.2 0 0.2 +red river red_river NOM s 0 0.14 0 0.14 +reine-claude reine_claude NOM f s 0.01 0.41 0 0.14 +reine-mère reine_mère NOM f s 0 0.34 0 0.34 +reines-claudes reine_claude NOM f p 0.01 0.41 0.01 0.27 +reines-marguerites reine_marguerite NOM f p 0 0.27 0 0.27 +remonte-pente remonte_pente NOM m s 0.02 0.07 0.02 0.07 +remonte-pentes remonte_pentes NOM m 0 0.07 0 0.07 +remue-ménage remue_ménage NOM m 0.78 4.8 0.78 4.8 +remue-méninges remue_méninges NOM m 0.05 0.07 0.05 0.07 +remède-miracle remède_miracle NOM m s 0.01 0 0.01 0 +rendez-vous rendez_vous NOM m 91.95 53.72 91.95 53.72 +rentre-dedans rentre_dedans NOM m 0.47 0.07 0.47 0.07 +reportage-vérité reportage_vérité NOM m s 0 0.14 0 0.14 +repose-pied repose_pied NOM m s 0.02 0.07 0.01 0 +repose-pieds repose_pied NOM m p 0.02 0.07 0.01 0.07 +requiescat in pace requiescat_in_pace NOM m s 0 0.07 0 0.07 +requin-baleine requin_baleine NOM m s 0.01 0 0.01 0 +requin-tigre requin_tigre NOM m s 0.04 0 0.04 0 +requins-marteaux requin_marteau NOM m p 0 0.07 0 0.07 +rez-de-chaussée rez_de_chaussée NOM m 2.34 16.96 2.34 16.96 +rez-de-jardin rez_de_jardin NOM m 0.01 0 0.01 0 +rhythm and blues rhythm_and_blues NOM m 0.08 0 0.08 0 +rhythm'n'blues rhythm_n_blues NOM m 0.02 0 0.02 0 +ric et rac ric_et_rac ADV 0 0.61 0 0.61 +ric-rac ric_rac ADV 0.04 0.47 0.04 0.47 +ric-à-rac ric_à_rac ADV 0 0.2 0 0.2 +rince-bouche rince_bouche NOM m 0.03 0 0.03 0 +rince-doigts rince_doigts NOM m 0.08 0.27 0.08 0.27 +risque-tout risque_tout ADJ 0 0.07 0 0.07 +riz-minute riz_minute NOM m 0 0.07 0 0.07 +riz-pain-sel riz_pain_sel NOM m s 0 0.07 0 0.07 +roast beef roast_beef NOM m s 0.16 0 0.02 0 +roast-beef roast_beef NOM m s 0.16 0 0.14 0 +rock'n'roll rock_n_roll NOM m 0.19 0.14 0.19 0.14 +rock-'n-roll rock_n_roll NOM m s 0.01 0 0.01 0 +rocking chair rocking_chair NOM m s 0.36 1.15 0.06 0 +rocking-chair rocking_chair NOM m s 0.36 1.15 0.28 0.95 +rocking-chairs rocking_chair NOM m p 0.36 1.15 0.01 0.2 +rogne-pied rogne_pied NOM m s 0 0.07 0 0.07 +roi-roi roi_roi NOM m s 0.01 0 0.01 0 +roi-soleil roi_soleil NOM m s 0 0.14 0 0.14 +roman-feuilleton roman_feuilleton NOM m s 0.13 0.41 0.03 0.27 +roman-fleuve roman_fleuve NOM m s 0 0.07 0 0.07 +roman-photo roman_photo NOM m s 0.28 0.41 0.14 0.2 +romans-feuilletons roman_feuilleton NOM m p 0.13 0.41 0.1 0.14 +romans-photos roman_photo NOM m p 0.28 0.41 0.14 0.2 +rond-de-cuir rond_de_cuir NOM m s 0.26 0.34 0.23 0.27 +rond-point rond_point NOM m s 0.44 2.5 0.44 2.43 +ronde-bosse ronde_bosse NOM f s 0 0.61 0 0.61 +ronds-de-cuir rond_de_cuir NOM m p 0.26 0.34 0.03 0.07 +ronds-points rond_point NOM m p 0.44 2.5 0 0.07 +rose-croix rose_croix NOM m 0 0.07 0 0.07 +rose-thé rose_thé ADJ m s 0 0.07 0 0.07 +rose-thé rose_thé NOM s 0 0.07 0 0.07 +rouge-brun rouge_brun ADJ m s 0 0.2 0 0.2 +rouge-feu rouge_feu ADJ m s 0 0.07 0 0.07 +rouge-gorge rouge_gorge NOM m s 0.44 1.08 0.3 0.68 +rouge-queue rouge_queue NOM m s 0 0.07 0 0.07 +rouge-sang rouge_sang NOM s 0 0.07 0 0.07 +rouges-gorges rouge_gorge NOM m p 0.44 1.08 0.13 0.41 +roulé-boulé roulé_boulé NOM m s 0 0.27 0 0.14 +roulés-boulés roulé_boulé NOM m p 0 0.27 0 0.14 +russo-allemand russo_allemand ADJ m s 0 0.14 0 0.07 +russo-allemande russo_allemand ADJ f s 0 0.14 0 0.07 +russo-américain russo_américain ADJ m s 0 0.07 0 0.07 +russo-japonaise russo_japonais ADJ f s 0 0.2 0 0.2 +russo-polonais russo_polonais ADJ m 0 0.14 0 0.07 +russo-polonaise russo_polonais ADJ f s 0 0.14 0 0.07 +russo-turque russo_turque ADJ f s 0 0.14 0 0.14 +réveille-matin réveille_matin NOM m 0.19 0.88 0.19 0.88 +rôle-titre rôle_titre NOM m s 0.01 0 0.01 0 +sac-poubelle sac_poubelle NOM m s 0.24 0.41 0.19 0.34 +sacro-iliaque sacro_iliaque ADJ s 0.03 0 0.02 0 +sacro-iliaques sacro_iliaque ADJ f p 0.03 0 0.01 0 +sacro-saint sacro_saint ADJ m s 0.65 1.35 0.21 0.68 +sacro-sainte sacro_saint ADJ f s 0.65 1.35 0.41 0.47 +sacro-saintes sacro_saint ADJ f p 0.65 1.35 0 0.14 +sacro-saints sacro_saint ADJ m p 0.65 1.35 0.02 0.07 +sacré-coeur sacré_coeur NOM m s 0 0.2 0 0.2 +sacs-poubelles sac_poubelle NOM m p 0.24 0.41 0.06 0.07 +safari-photo safari_photo NOM m s 0.01 0 0.01 0 +sage-femme sage_femme NOM f s 1.52 1.22 1.35 1.22 +sages-femmes sage_femme NOM f p 1.52 1.22 0.17 0 +saint-bernard saint_bernard NOM m 0.17 0.68 0.17 0.68 +saint-crépin saint_crépin NOM m 0.05 0 0.05 0 +saint-cyrien saint_cyrien NOM m s 0 1.01 0 0.68 +saint-cyriens saint_cyrien NOM m p 0 1.01 0 0.34 +saint-esprit saint_esprit NOM m 0.2 0.47 0.2 0.47 +saint-frusquin saint_frusquin NOM m 0.17 0.74 0.17 0.74 +saint-germain saint_germain NOM m 0 0.34 0 0.34 +saint-glinglin saint_glinglin NOM f s 0.01 0.07 0.01 0.07 +saint-guy saint_guy NOM m 0.03 0 0.03 0 +saint-honoré saint_honoré NOM m 0.14 0.2 0.14 0.2 +saint-hubert saint_hubert NOM f s 0 0.07 0 0.07 +saint-michel saint_michel NOM s 0 0.07 0 0.07 +saint-nectaire saint_nectaire NOM m 0 0.14 0 0.14 +saint-paulin saint_paulin NOM m 0 0.34 0 0.34 +saint-pierre saint_pierre NOM m 0.16 0.2 0.16 0.2 +saint-père saint_père NOM m s 0.14 2.16 0.14 0.2 +saint-siège saint_siège NOM m s 0.3 1.28 0.3 1.28 +saint-synode saint_synode NOM m s 0 0.07 0 0.07 +saint-émilion saint_émilion NOM m 0 0.41 0 0.41 +sainte nitouche sainte_nitouche NOM f s 0.51 0.14 0.51 0.14 +sainte-nitouche sainte_nitouche NOM f s 0.46 0.2 0.35 0.2 +saintes-nitouches sainte_nitouche NOM f p 0.46 0.2 0.11 0 +saints-pères saint_père NOM m p 0.14 2.16 0 1.96 +saisie-arrêt saisie_arrêt NOM f s 0 0.2 0 0.2 +san francisco san_francisco NOM s 0.02 0.07 0.02 0.07 +sang-froid sang_froid NOM m 5.41 9.26 5.41 9.26 +sans-coeur sans_coeur ADJ 0.01 0.07 0.01 0.07 +sans-culotte sans_culotte NOM m s 0.16 0.41 0.16 0 +sans-culottes sans_culotte NOM m p 0.16 0.41 0 0.41 +sans-culottides sans_culottide NOM f p 0 0.07 0 0.07 +sans-faute sans_faute NOM m 0.05 0 0.05 0 +sans-façon sans_façon NOM m 0.1 0.14 0.1 0.14 +sans-fil sans_fil NOM m 0.21 0.2 0.21 0.2 +sans-filiste sans_filiste NOM m s 0 0.74 0 0.61 +sans-filistes sans_filiste NOM m p 0 0.74 0 0.14 +sans-grade sans_grade NOM m 0.05 0.14 0.05 0.14 +sans-pareil sans_pareil NOM m 0 5.2 0 5.2 +sapeur-pompier sapeur_pompier NOM m s 0.11 0.61 0.07 0 +sapeurs-pompiers sapeur_pompier NOM m p 0.11 0.61 0.04 0.61 +satellites-espions satellites_espion NOM m p 0.02 0 0.02 0 +sauf-conduit sauf_conduit NOM m s 1.14 1.01 0.77 0.88 +sauf-conduits sauf_conduit NOM m p 1.14 1.01 0.37 0.14 +saut-de-lit saut_de_lit NOM m s 0 0.2 0 0.14 +saute-mouton saute_mouton NOM m 0.14 0.54 0.14 0.54 +saute-ruisseau saute_ruisseau NOM m s 0 0.07 0 0.07 +sauts-de-lit saut_de_lit NOM m p 0 0.2 0 0.07 +sauve-qui-peut sauve_qui_peut NOM m 0.1 0.68 0.1 0.68 +savoir-faire savoir_faire NOM m 1.23 2.03 1.23 2.03 +savoir-vivre savoir_vivre NOM m 1.67 1.76 1.67 1.76 +scenic railway scenic_railway NOM m s 0 0.2 0 0.2 +science-fiction science_fiction NOM f s 2.36 1.22 2.36 1.22 +scotch-terrier scotch_terrier NOM m s 0.01 0 0.01 0 +script-girl script_girl NOM f s 0 0.2 0 0.2 +scène-clé scène_clé NOM f s 0.01 0 0.01 0 +scènes-clés scènes_clé NOM f p 0.01 0 0.01 0 +second-maître second_maître NOM m s 0.05 0.07 0.05 0.07 +sedia gestatoria sedia_gestatoria NOM f 0 0.2 0 0.2 +self-control self_control NOM m s 0.16 0.34 0.16 0.34 +self-contrôle self_contrôle NOM m s 0.19 0.07 0.19 0.07 +self-défense self_défense NOM f s 0.18 0 0.18 0 +self-made man self_made_man NOM m s 0.14 0.07 0.14 0.07 +self-made-man self_made_man NOM m s 0.02 0.07 0.02 0.07 +self-made-men self_made_men NOM m p 0.01 0.07 0.01 0.07 +self-service self_service NOM m s 0.37 0.47 0.36 0.47 +self-services self_service NOM m p 0.37 0.47 0.01 0 +semen-contra semen_contra NOM m s 0 0.07 0 0.07 +semi-arides semi_aride ADJ f p 0.01 0 0.01 0 +semi-automatique semi_automatique ADJ s 0.71 0.07 0.59 0.07 +semi-automatiques semi_automatique ADJ f p 0.71 0.07 0.12 0 +semi-circulaire semi_circulaire ADJ s 0.01 0.14 0.01 0.14 +semi-conducteur semi_conducteur NOM m s 0.08 0 0.02 0 +semi-conducteurs semi_conducteur NOM m p 0.08 0 0.06 0 +semi-liberté semi_liberté NOM f s 0.26 0.07 0.26 0.07 +semi-lunaire semi_lunaire ADJ f s 0.02 0 0.02 0 +semi-nomades semi_nomade ADJ m p 0 0.07 0 0.07 +semi-officiel semi_officiel ADJ m s 0.01 0.14 0.01 0.07 +semi-officielle semi_officiel ADJ f s 0.01 0.14 0 0.07 +semi-ouvert semi_ouvert ADJ m s 0.01 0 0.01 0 +semi-perméable semi_perméable ADJ f s 0.01 0 0.01 0 +semi-phonétique semi_phonétique ADJ f s 0 0.07 0 0.07 +semi-précieuse semi_précieuse ADJ f s 0.01 0 0.01 0 +semi-précieuses semi_précieux ADJ f p 0 0.14 0 0.07 +semi-public semi_public ADJ m s 0.01 0 0.01 0 +semi-remorque semi_remorque NOM m s 0.48 0.61 0.45 0.54 +semi-remorques semi_remorque NOM m p 0.48 0.61 0.04 0.07 +semi-rigide semi_rigide ADJ f s 0.01 0.07 0.01 0.07 +sent-bon sent_bon NOM m s 0 0.54 0 0.54 +septante-cinq septante_cinq ADJ:num 0 0.07 0 0.07 +septante-sept septante_sept ADJ:num 0.2 0.07 0.2 0.07 +serbo-croate serbo_croate NOM s 0.14 0.2 0.14 0.2 +sergent-chef sergent_chef NOM m s 1.52 1.49 1.38 1.42 +sergent-major sergent_major NOM m s 0.71 1.35 0.71 1.28 +sergent-pilote sergent_pilote NOM m s 0 0.07 0 0.07 +sergents-chefs sergent_chef NOM m p 1.52 1.49 0.14 0.07 +sergents-majors sergent_major NOM m p 0.71 1.35 0 0.07 +serre-file serre_file NOM m s 0.04 0.34 0.04 0.34 +serre-joint serre_joint NOM m s 0.04 0.14 0.01 0 +serre-joints serre_joint NOM m p 0.04 0.14 0.03 0.14 +serre-livres serre_livres NOM m 0.03 0.07 0.03 0.07 +serre-tête serre_tête NOM m s 0.22 0.74 0.21 0.74 +serre-têtes serre_tête NOM m p 0.22 0.74 0.01 0 +serviette-éponge serviette_éponge NOM f s 0 1.49 0 1.22 +serviettes-éponges serviette_éponge NOM f p 0 1.49 0 0.27 +sex appeal sex_appeal NOM m s 0.44 0.74 0.06 0.07 +sex shop sex_shop NOM m s 0.57 0.54 0.08 0 +sex shops sex_shop NOM m p 0.57 0.54 0.01 0 +sex-appeal sex_appeal NOM m s 0.44 0.74 0.38 0.68 +sex-shop sex_shop NOM m s 0.57 0.54 0.41 0.34 +sex-shops sex_shop NOM m p 0.57 0.54 0.07 0.2 +sex-symbol sex_symbol NOM m s 0.08 0.07 0.08 0.07 +shake-hand shake_hand NOM m s 0 0.14 0 0.14 +show-business show_business NOM m 0 0.27 0 0.27 +sic transit gloria mundi sic_transit_gloria_mundi ADV 0.03 0.07 0.03 0.07 +side-car side_car NOM m s 0.23 1.08 0.23 0.81 +side-cars side_car NOM m p 0.23 1.08 0 0.27 +sine die sine_die ADV 0 0.34 0 0.34 +sine qua non sine_qua_non ADV 0.16 0.47 0.16 0.47 +singe-araignée singe_araignée NOM m s 0.01 0 0.01 0 +sino-américain sino_américain NOM m s 0.02 0 0.02 0 +sino-arabe sino_arabe ADJ f s 0.01 0 0.01 0 +sino-japonaise sino_japonais ADJ f s 0 0.14 0 0.14 +sit-in sit_in NOM m 0.3 0 0.3 0 +six-quatre six_quatre NOM m 0 0.07 0 0.07 +skate-board skate_board NOM m s 0.57 0.07 0.57 0.07 +snack-bar snack_bar NOM m s 0.23 0.61 0.23 0.54 +snack-bars snack_bar NOM m p 0.23 0.61 0 0.07 +snow-boots snow_boot NOM m p 0 0.07 0 0.07 +soap opéra soap_opéra NOM m s 0.17 0 0.02 0 +soap-opéra soap_opéra NOM m s 0.17 0 0.15 0 +social-démocrate social_démocrate ADJ m s 0.21 0.14 0.21 0.14 +social-démocratie social_démocratie NOM f s 0.02 0.34 0.02 0.34 +social-traître social_traître NOM m s 0 0.27 0 0.27 +sociaux-démocrates sociaux_démocrates ADJ m 0.23 0 0.23 0 +socio-culturelles socio_culturel ADJ f p 0.01 0.14 0 0.07 +socio-culturels socio_culturel ADJ m p 0.01 0.14 0.01 0.07 +socio-économique socio_économique ADJ m s 0.08 0.07 0.06 0 +socio-économiques socio_économique ADJ m p 0.08 0.07 0.02 0.07 +soi-disant soi_disant ADJ 9.46 13.11 9.46 13.11 +soi-même soi_même PRO:per s 6.86 24.86 6.86 24.86 +soixante-cinq soixante_cinq ADJ:num 0.12 3.58 0.12 3.58 +soixante-deux soixante_deux ADJ:num 0.15 0.34 0.15 0.34 +soixante-deuxième soixante_deuxième ADJ 0 0.07 0 0.07 +soixante-dix soixante_dix ADJ:num 1.12 8.85 1.12 8.85 +soixante-dix-huit soixante_dix_huit ADJ:num 0.16 0.47 0.16 0.47 +soixante-dix-neuf soixante_dix_neuf ADJ:num 0.01 0.2 0.01 0.2 +soixante-dix-neuvième soixante_dix_neuvième ADJ 0 0.07 0 0.07 +soixante-dix-sept soixante_dix_sept ADJ:num 0.21 0.74 0.21 0.74 +soixante-dixième soixante_dixième NOM s 0 0.47 0 0.47 +soixante-douze soixante_douze ADJ:num 0.23 1.15 0.23 1.15 +soixante-huit soixante_huit ADJ:num 0.16 0.81 0.16 0.81 +soixante-huitard soixante_huitard NOM m s 0.01 0.14 0.01 0 +soixante-huitarde soixante_huitard ADJ f s 0 0.07 0 0.07 +soixante-huitards soixante_huitard NOM m p 0.01 0.14 0 0.14 +soixante-neuf soixante_neuf ADJ:num 0.16 0.41 0.16 0.41 +soixante-quatorze soixante_quatorze ADJ:num 0.03 0.61 0.03 0.61 +soixante-quatre soixante_quatre ADJ:num 0.04 0.61 0.04 0.61 +soixante-quinze soixante_quinze ADJ:num 0.27 3.85 0.27 3.85 +soixante-seize soixante_seize ADJ:num 0.07 0.68 0.07 0.68 +soixante-sept soixante_sept ADJ:num 0.2 0.81 0.2 0.81 +soixante-six soixante_six ADJ:num 0.08 0.81 0.08 0.81 +soixante-treize soixante_treize ADJ:num 0.01 1.08 0.01 1.08 +soixante-trois soixante_trois ADJ:num 0.15 0.2 0.15 0.2 +sol-air sol_air ADJ 0.32 0 0.32 0 +soleil-roi soleil_roi NOM m s 0 0.07 0 0.07 +songe-creux songe_creux NOM m 0.01 0.41 0.01 0.41 +souffre-douleur souffre_douleur NOM m 0.27 1.22 0.27 1.22 +sourd-muet sourd_muet ADJ m s 0.78 0.2 0.77 0.2 +sourde-muette sourde_muette NOM f s 0.24 0.07 0.24 0.07 +sourds-muets sourd_muet NOM m p 1.48 1.01 0.88 0.68 +sous-alimentation sous_alimentation NOM f s 0.03 0.27 0.03 0.27 +sous-alimenté sous_alimenter VER m s 0.04 0 0.02 0 par:pas; +sous-alimentée sous_alimenté ADJ f s 0.04 0.2 0.04 0.07 +sous-alimentés sous_alimenté NOM m p 0.01 0.27 0.01 0.14 +sous-bibliothécaire sous_bibliothécaire NOM s 0 0.47 0 0.47 +sous-bois sous_bois NOM m 0.49 7.57 0.49 7.57 +sous-chef sous_chef NOM m s 0.73 0.88 0.69 0.74 +sous-chefs sous_chef NOM m p 0.73 0.88 0.04 0.14 +sous-classe sous_classe NOM f s 0.01 0 0.01 0 +sous-clavière sous_clavier ADJ f s 0.28 0 0.28 0 +sous-comité sous_comité NOM m s 0.26 0.07 0.26 0.07 +sous-commission sous_commission NOM f s 0.18 0.07 0.18 0.07 +sous-continent sous_continent NOM m s 0.06 0.07 0.05 0.07 +sous-continents sous_continent NOM m p 0.06 0.07 0.01 0 +sous-couche sous_couche NOM f s 0.03 0 0.03 0 +sous-cul sous_cul NOM m s 0 0.07 0 0.07 +sous-cutané sous_cutané ADJ m s 0.28 0.07 0.1 0 +sous-cutanée sous_cutané ADJ f s 0.28 0.07 0.1 0 +sous-cutanées sous_cutané ADJ f p 0.28 0.07 0.05 0.07 +sous-cutanés sous_cutané ADJ m p 0.28 0.07 0.03 0 +sous-diacre sous_diacre NOM m s 0 0.07 0 0.07 +sous-directeur sous_directeur NOM m s 0.66 1.96 0.63 1.82 +sous-directeurs sous_directeur NOM m p 0.66 1.96 0 0.07 +sous-directrice sous_directeur NOM f s 0.66 1.96 0.03 0.07 +sous-division sous_division NOM f s 0.04 0 0.04 0 +sous-dominante sous_dominante NOM f s 0.01 0.07 0.01 0.07 +sous-développement sous_développement NOM m s 0.3 0.27 0.3 0.27 +sous-développé sous_développé ADJ m s 0.31 0.68 0.09 0.27 +sous-développée sous_développé ADJ f s 0.31 0.68 0.02 0 +sous-développées sous_développé ADJ f p 0.31 0.68 0.02 0.07 +sous-développés sous_développé ADJ m p 0.31 0.68 0.19 0.34 +sous-effectif sous_effectif NOM m s 0.11 0 0.1 0 +sous-effectifs sous_effectif NOM m p 0.11 0 0.01 0 +sous-emploi sous_emploi NOM m s 0 0.07 0 0.07 +sous-ensemble sous_ensemble NOM m s 0.08 0.14 0.08 0.14 +sous-entend sous_entendre VER 2.03 1.82 0.39 0.2 ind:pre:3s; +sous-entendais sous_entendre VER 2.03 1.82 0.17 0 ind:imp:1s; +sous-entendait sous_entendre VER 2.03 1.82 0.03 0.54 ind:imp:3s; +sous-entendant sous_entendre VER 2.03 1.82 0.01 0.47 par:pre; +sous-entendent sous_entendre VER 2.03 1.82 0.01 0 ind:pre:3p; +sous-entendez sous_entendre VER 2.03 1.82 0.42 0 ind:pre:2p; +sous-entendiez sous_entendre VER 2.03 1.82 0.1 0 ind:imp:2p; +sous-entendrait sous_entendre VER 2.03 1.82 0.01 0 cnd:pre:3s; +sous-entendre sous_entendre VER 2.03 1.82 0.11 0.27 inf; +sous-entends sous_entendre VER 2.03 1.82 0.39 0 ind:pre:1s;ind:pre:2s; +sous-entendu sous_entendre VER m s 2.03 1.82 0.38 0.14 par:pas; +sous-entendue sous_entendu ADJ f s 0.06 0.68 0.01 0.07 +sous-entendus sous_entendu NOM m p 0.77 5.34 0.45 3.38 +sous-espace sous_espace NOM m s 0.22 0 0.22 0 +sous-espèce sous_espèce NOM f s 0.11 0 0.11 0 +sous-estimais sous_estimer VER 7.27 1.08 0.05 0 ind:imp:1s; +sous-estimait sous_estimer VER 7.27 1.08 0.03 0.34 ind:imp:3s; +sous-estimation sous_estimation NOM f s 0.06 0.07 0.06 0.07 +sous-estime sous_estimer VER 7.27 1.08 1.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sous-estiment sous_estimer VER 7.27 1.08 0.22 0 ind:pre:3p; +sous-estimer sous_estimer VER 7.27 1.08 1.05 0.54 inf; +sous-estimerai sous_estimer VER 7.27 1.08 0.03 0 ind:fut:1s; +sous-estimes sous_estimer VER 7.27 1.08 0.72 0 ind:pre:2s; +sous-estimez sous_estimer VER 7.27 1.08 1.53 0 imp:pre:2p;ind:pre:2p; +sous-estimons sous_estimer VER 7.27 1.08 0.11 0 imp:pre:1p;ind:pre:1p; +sous-estimé sous_estimer VER m s 7.27 1.08 1.71 0.14 par:pas; +sous-estimée sous_estimer VER f s 7.27 1.08 0.14 0 par:pas; +sous-estimées sous_estimer VER f p 7.27 1.08 0.07 0 par:pas; +sous-estimés sous_estimer VER m p 7.27 1.08 0.09 0 par:pas; +sous-exposé sous_exposer VER m s 0.02 0 0.01 0 par:pas; +sous-exposées sous_exposer VER f p 0.02 0 0.01 0 par:pas; +sous-fifre sous_fifre NOM m s 0.72 0.41 0.45 0.2 +sous-fifres sous_fifre NOM m p 0.72 0.41 0.27 0.2 +sous-garde sous_garde NOM f s 0.01 0.07 0.01 0.07 +sous-genre sous_genre NOM m s 0.02 0 0.02 0 +sous-gorge sous_gorge NOM f 0 0.07 0 0.07 +sous-groupe sous_groupe NOM m s 0.01 0 0.01 0 +sous-homme sous_homme NOM m s 0.2 0.61 0.16 0 +sous-hommes sous_homme NOM m p 0.2 0.61 0.05 0.61 +sous-humanité sous_humanité NOM f s 0.01 0.2 0.01 0.2 +sous-intendant sous_intendant NOM m s 0.3 0 0.1 0 +sous-intendants sous_intendant NOM m p 0.3 0 0.2 0 +sous-jacent sous_jacent ADJ m s 0.81 0.34 0.19 0.2 +sous-jacente sous_jacent ADJ f s 0.81 0.34 0.22 0.07 +sous-jacentes sous_jacent ADJ f p 0.81 0.34 0.01 0.07 +sous-jacents sous_jacent ADJ m p 0.81 0.34 0.39 0 +sous-lieutenant sous_lieutenant NOM m s 0.81 5.61 0.76 4.93 +sous-lieutenants sous_lieutenant NOM m p 0.81 5.61 0.05 0.68 +sous-locataire sous_locataire NOM s 0.02 0.14 0.02 0 +sous-locataires sous_locataire NOM p 0.02 0.14 0 0.14 +sous-location sous_location NOM f s 0.09 0.07 0.06 0.07 +sous-locations sous_location NOM f p 0.09 0.07 0.03 0 +sous-loua sous_louer VER 0.63 0.47 0 0.07 ind:pas:3s; +sous-louait sous_louer VER 0.63 0.47 0.03 0 ind:imp:3s; +sous-loue sous_louer VER 0.63 0.47 0.21 0 ind:pre:1s;ind:pre:3s; +sous-louer sous_louer VER 0.63 0.47 0.17 0.14 inf; +sous-louerai sous_louer VER 0.63 0.47 0.11 0 ind:fut:1s; +sous-louez sous_louer VER 0.63 0.47 0.02 0 ind:pre:2p; +sous-louèrent sous_louer VER 0.63 0.47 0 0.07 ind:pas:3p; +sous-loué sous_louer VER m s 0.63 0.47 0.08 0.2 par:pas; +sous-main sous_main NOM m s 0.28 1.96 0.28 1.96 +sous-marin sous_marin NOM m s 11.14 6.42 9.07 2.7 +sous-marine sous_marin ADJ f s 4.47 5 1.06 1.89 +sous-marines sous_marin ADJ f p 4.47 5 0.41 0.88 +sous-marinier sous_marinier NOM m s 0.26 0 0.04 0 +sous-mariniers sous_marinier NOM m p 0.26 0 0.22 0 +sous-marins sous_marin NOM m p 11.14 6.42 2.07 3.72 +sous-marque sous_marque NOM f s 0.01 0.14 0.01 0.07 +sous-marques sous_marque NOM f p 0.01 0.14 0 0.07 +sous-maîtresse sous_maîtresse NOM f s 0.07 0.2 0.07 0.2 +sous-merde sous_merde NOM f s 0.59 0.14 0.54 0.14 +sous-merdes sous_merde NOM f p 0.59 0.14 0.05 0 +sous-ministre sous_ministre NOM m s 0.17 0.07 0.17 0.07 +sous-off sous_off NOM m s 0.14 4.26 0.11 2.16 +sous-officier sous_officier NOM m s 0.65 9.53 0.28 4.8 +sous-officiers sous_officier NOM m p 0.65 9.53 0.36 4.73 +sous-offs sous_off NOM m p 0.14 4.26 0.03 2.09 +sous-ordre sous_ordre NOM m s 0.01 0.61 0.01 0.54 +sous-ordres sous_ordre NOM m p 0.01 0.61 0 0.07 +sous-payer sous_payer VER 0.28 0.07 0.04 0 inf; +sous-payé sous_payer VER m s 0.28 0.07 0.14 0.07 par:pas; +sous-payés sous_payer VER m p 0.28 0.07 0.1 0 par:pas; +sous-pied sous_pied NOM m s 0 0.2 0 0.07 +sous-pieds sous_pied NOM m p 0 0.2 0 0.14 +sous-plat sous_plat NOM m s 0 0.07 0 0.07 +sous-prieur sous_prieur PRE 0 0.47 0 0.47 +sous-produit sous_produit NOM m s 0.48 0.54 0.42 0.27 +sous-produits sous_produit NOM m p 0.48 0.54 0.06 0.27 +sous-programme sous_programme NOM m s 0.12 0 0.09 0 +sous-programmes sous_programme NOM m p 0.12 0 0.03 0 +sous-prolétaire sous_prolétaire NOM s 0.11 0.07 0.11 0.07 +sous-prolétariat sous_prolétariat NOM m s 0.34 0.27 0.34 0.27 +sous-préfecture sous_préfecture NOM f s 0.17 1.62 0.03 1.35 +sous-préfectures sous_préfecture NOM f p 0.17 1.62 0.14 0.27 +sous-préfet sous_préfet NOM m s 0.02 1.01 0.02 0.95 +sous-préfets sous_préfet NOM m p 0.02 1.01 0 0.07 +sous-pulls sous_pull NOM m p 0.01 0 0.01 0 +sous-qualifié sous_qualifié ADJ m s 0.04 0 0.03 0 +sous-qualifiée sous_qualifié ADJ f s 0.04 0 0.01 0 +sous-secrétaire sous_secrétaire NOM m s 0.65 1.15 0.65 0.74 +sous-secrétaires sous_secrétaire NOM m p 0.65 1.15 0 0.41 +sous-secrétariat sous_secrétariat NOM m s 0.1 0 0.1 0 +sous-secteur sous_secteur NOM m s 0.02 0.27 0.02 0.27 +sous-section sous_section NOM f s 0.09 0 0.09 0 +sous-sol sous_sol NOM m s 13.5 10.54 12.8 8.31 +sous-sols sous_sol NOM m p 13.5 10.54 0.7 2.23 +sous-station sous_station NOM f s 0.17 0.07 0.17 0.07 +sous-système sous_système NOM m s 0.04 0 0.04 0 +sous-tasse sous_tasse NOM f s 0.11 0.2 0.11 0.14 +sous-tasses sous_tasse NOM f p 0.11 0.2 0 0.07 +sous-tend sous_tendre VER 0.07 0.54 0.02 0 ind:pre:3s; +sous-tendaient sous_tendre VER 0.07 0.54 0 0.07 ind:imp:3p; +sous-tendait sous_tendre VER 0.07 0.54 0.01 0.2 ind:imp:3s; +sous-tendent sous_tendre VER 0.07 0.54 0.01 0.14 ind:pre:3p; +sous-tendu sous_tendre VER m s 0.07 0.54 0.03 0.07 par:pas; +sous-tendue sous_tendre VER f s 0.07 0.54 0 0.07 par:pas; +sous-tension sous_tension NOM f s 0.03 0 0.03 0 +sous-titrage sous_titrage NOM m s 54.64 0 54.64 0 +sous-titre sous_titre NOM m s 23.09 0.95 0.83 0.68 +sous-titrer sous_titrer VER 5.81 0.14 0.01 0 inf; +sous-titres sous_titre NOM m p 23.09 0.95 22.26 0.27 +sous-titré sous_titrer VER m s 5.81 0.14 5.72 0 par:pas; +sous-titrée sous_titrer VER f s 5.81 0.14 0 0.07 par:pas; +sous-titrés sous_titrer VER m p 5.81 0.14 0.09 0.07 par:pas; +sous-traitance sous_traitance NOM f s 0.04 0 0.04 0 +sous-traitant sous_traitant NOM m s 0.23 0 0.1 0 +sous-traitants sous_traitant NOM m p 0.23 0 0.13 0 +sous-traite sous_traiter VER 0.13 0.14 0.04 0 ind:pre:3s; +sous-traitent sous_traiter VER 0.13 0.14 0.01 0 ind:pre:3p; +sous-traiter sous_traiter VER 0.13 0.14 0.06 0.07 inf; +sous-traités sous_traiter VER m p 0.13 0.14 0 0.07 par:pas; +sous-ventrière sous_ventrière NOM f s 0.03 0.47 0.03 0.47 +sous-verge sous_verge NOM m 0 0.54 0 0.54 +sous-verre sous_verre NOM m 0.06 0.2 0.06 0.2 +sous-vêtement sous_vêtement NOM m s 6.57 2.77 0.33 0.41 +sous-vêtements sous_vêtement NOM m p 6.57 2.77 6.24 2.36 +sous-équipés sous_équipé ADJ m p 0.07 0 0.07 0 +sous-évaluait sous_évaluer VER 0.1 0 0.01 0 ind:imp:3s; +sous-évalué sous_évaluer VER m s 0.1 0 0.06 0 par:pas; +sous-évaluées sous_évaluer VER f p 0.1 0 0.02 0 par:pas; +soutien-gorge soutien_gorge NOM m s 5.86 8.65 4.89 7.91 +soutiens-gorge soutien_gorge NOM m p 5.86 8.65 0.96 0.74 +souventes fois souventes_fois ADV 0 0.27 0 0.27 +sparring-partner sparring_partner NOM m s 0 0.07 0 0.07 +spatio-temporel spatio_temporel ADJ m s 0.21 0.2 0.09 0.07 +spatio-temporelle spatio_temporel ADJ f s 0.21 0.2 0.13 0.14 +spina-bifida spina_bifida NOM m s 0.04 0 0.04 0 +spina-ventosa spina_ventosa NOM m s 0 0.07 0 0.07 +sri lankais sri_lankais ADJ m 0.01 0 0.01 0 +sri lankais sri_lankais NOM m 0.01 0 0.01 0 +stabat mater stabat_mater NOM m 0 0.07 0 0.07 +stand-by stand_by NOM m 0.83 0.07 0.83 0.07 +star-system star_system NOM m s 0.01 0 0.01 0 +start-up start_up NOM f 0.35 0 0.35 0 +starting-gate starting_gate NOM f s 0.04 0.14 0.04 0.14 +station-service station_service NOM f s 4.22 3.58 3.95 3.24 +station-éclair station_éclair NOM f s 0 0.07 0 0.07 +stations-service station_service NOM f p 4.22 3.58 0.27 0.34 +statu quo statu_quo NOM m s 0.94 1.08 0.94 1.08 +staturo-pondéral staturo_pondéral ADJ m s 0.01 0 0.01 0 +steeple-chase steeple_chase NOM m s 0.02 0.07 0.02 0.07 +sterno-cléido-mastoïdien sterno_cléido_mastoïdien ADJ m s 0.01 0 0.01 0 +stimulus-réponse stimulus_réponse NOM m 0 0.14 0 0.14 +stock-car stock_car NOM m s 0.19 0.14 0.16 0.14 +stock-cars stock_car NOM m p 0.19 0.14 0.03 0 +stock-options stock_option NOM f p 0.18 0 0.18 0 +story board story_board NOM m s 0.28 0.07 0.03 0.07 +story-board story_board NOM m s 0.28 0.07 0.23 0 +story-boards story_board NOM m p 0.28 0.07 0.03 0 +stricto sensu stricto_sensu ADV 0.01 0 0.01 0 +strip-poker strip_poker NOM m s 0.08 0.07 0.08 0.07 +strip-tease strip_tease NOM m s 4.04 1.01 3.63 0.95 +strip-teases strip_tease NOM m p 4.04 1.01 0.41 0.07 +strip-teaseur strip_teaseur NOM m s 4.02 0.47 0.11 0 +strip-teaseurs strip_teaseur NOM m p 4.02 0.47 0.14 0 +strip-teaseuse strip_teaseur NOM f s 4.02 0.47 2.98 0.27 +strip-teaseuses strip_teaseur NOM f p 4.02 0.47 0.79 0.2 +struggle for life struggle_for_life NOM m 0 0.07 0 0.07 +stylo-bille stylo_bille NOM m s 0.17 0.14 0.17 0.14 +stylo-feutre stylo_feutre NOM m s 0 0.27 0 0.14 +stylos-feutres stylo_feutre NOM m p 0 0.27 0 0.14 +sub-aquatique sub_aquatique ADJ f s 0 0.07 0 0.07 +sub-atomique sub_atomique ADJ s 0.07 0 0.04 0 +sub-atomiques sub_atomique ADJ p 0.07 0 0.04 0 +sub-claquant sub_claquant ADJ m s 0.01 0 0.01 0 +sub-espace sub_espace NOM m s 0.08 0 0.08 0 +sub-normaux sub_normaux ADJ m p 0.14 0 0.14 0 +sub-nucléaires sub_nucléaire ADJ f p 0.01 0 0.01 0 +sub-vocal sub_vocal ADJ m s 0.01 0.07 0.01 0.07 +sub-véhiculaire sub_véhiculaire ADJ s 0.01 0 0.01 0 +sub-zéro sub_zéro NOM m s 0.01 0 0.01 0 +sud-africain sud_africain NOM m s 0.28 0.07 0.15 0 +sud-africaine sud_africain ADJ f s 0.29 0.47 0.07 0.34 +sud-africaines sud_africain ADJ f p 0.29 0.47 0.04 0 +sud-africains sud_africain NOM m p 0.28 0.07 0.1 0.07 +sud-américain sud_américain ADJ m s 0.77 1.55 0.29 0.41 +sud-américaine sud_américain ADJ f s 0.77 1.55 0.35 0.54 +sud-américaines sud_américain ADJ f p 0.77 1.55 0.01 0.2 +sud-américains sud_américain ADJ m p 0.77 1.55 0.11 0.41 +sud-coréen sud_coréen ADJ m s 0.21 0 0.01 0 +sud-coréen sud_coréen NOM m s 0.01 0 0.01 0 +sud-coréenne sud_coréen ADJ f s 0.21 0 0.15 0 +sud-coréennes sud_coréen ADJ f p 0.21 0 0.02 0 +sud-coréens sud_coréen ADJ m p 0.21 0 0.02 0 +sud-est sud_est NOM m 3.3 2.3 3.3 2.3 +sud-ouest sud_ouest NOM m 2.1 3.51 2.1 3.51 +sud-sud-est sud_sud_est NOM m s 0.03 0 0.03 0 +sud-vietnamien sud_vietnamien ADJ m s 0.1 0.07 0.05 0 +sud-vietnamienne sud_vietnamien ADJ f s 0.1 0.07 0.03 0 +sud-vietnamiens sud_vietnamien NOM m p 0.12 0.2 0.11 0.2 +sui generis sui_generis ADJ m p 0.23 0.07 0.23 0.07 +suivez-moi-jeune-homme suivez_moi_jeune_homme NOM m s 0 0.07 0 0.07 +super-espion super_espion NOM m s 0.02 0 0.02 0 +super-grands super_grand NOM m p 0 0.07 0 0.07 +super-pilote super_pilote ADJ s 0.01 0 0.01 0 +super-puissances super_puissance NOM f p 0.03 0 0.03 0 +supports-chaussettes support_chaussette NOM m p 0 0.07 0 0.07 +supra-humain supra_humain ADJ m s 0 0.07 0 0.07 +sur-le-champ sur_le_champ ADV 6.79 10.95 6.79 10.95 +sur-mesure sur_mesure NOM m s 0.03 0 0.03 0 +sur-place sur_place NOM m s 0.2 0.27 0.2 0.27 +surprise-partie surprise_partie NOM f s 0.2 0.61 0.18 0.27 +surprise-party surprise_party NOM f s 0.1 0.07 0.1 0.07 +surprises-parties surprise_partie NOM f p 0.2 0.61 0.02 0.34 +sursum corda sursum_corda ADV 0 0.2 0 0.2 +sus-orbitaire sus_orbitaire ADJ m s 0.01 0 0.01 0 +sweat-shirt sweat_shirt NOM m s 0 0.2 0 0.2 +systèmes-clés systèmes_clé NOM m p 0.03 0 0.03 0 +sèche-cheveux sèche_cheveux NOM m 0.97 0 0.97 0 +sèche-linge sèche_linge NOM m 0.74 0 0.74 0 +sèche-mains sèche_mains NOM m 0.04 0 0.04 0 +sénatus-consulte sénatus_consulte NOM m s 0 0.07 0 0.07 +t-shirt t_shirt NOM m s 10.87 0.54 7.59 0.2 +t-shirts t_shirt NOM m p 10.87 0.54 3.28 0.34 +table-bureau table_bureau NOM f s 0 0.07 0 0.07 +table-coiffeuse table_coiffeuse NOM f s 0 0.27 0 0.27 +tai-chi tai_chi NOM m s 0.12 0 0.12 0 +taille-crayon taille_crayon NOM m s 0.07 0.68 0.04 0.54 +taille-crayons taille_crayon NOM m p 0.07 0.68 0.03 0.14 +taille-douce taille_douce NOM f s 0 0.2 0 0.14 +taille-haie taille_haie NOM m s 0.07 0.07 0.06 0 +taille-haies taille_haie NOM m p 0.07 0.07 0.01 0.07 +tailles-douces taille_douce NOM f p 0 0.2 0 0.07 +tailleur-pantalon tailleur_pantalon NOM m s 0.01 0.07 0.01 0.07 +take-off take_off NOM m 0.08 0 0.08 0 +talavera de la reina talavera_de_la_reina NOM s 0 0.07 0 0.07 +talkie-walkie talkie_walkie NOM m s 1.37 0.2 0.89 0.07 +talkies-walkies talkie_walkie NOM m p 1.37 0.2 0.48 0.14 +tam-tam tam_tam NOM m s 1.06 3.45 0.37 2.77 +tam-tams tam_tam NOM m p 1.06 3.45 0.69 0.68 +tambour-major tambour_major NOM m s 0.26 0.74 0.26 0.74 +tampon-buvard tampon_buvard NOM m s 0 0.2 0 0.2 +tan-sad tan_sad NOM m s 0 0.2 0 0.2 +tandis qu tandis_qu CON 0.01 0.07 0.01 0.07 +tandis que tandis_que CON 15.04 136.15 15.04 136.15 +tape-cul tape_cul NOM m s 0.04 0.41 0.04 0.41 +tape-à-l'oeil tape_à_l_oeil ADJ 0 0.41 0 0.41 +tapis-brosse tapis_brosse NOM m s 0.01 0.14 0.01 0.14 +tard-venu tard_venu ADJ m s 0 0.07 0 0.07 +tarte-minute tarte_minute ADJ f s 0.01 0 0.01 0 +taste-vin taste_vin NOM m 0.01 0.14 0.01 0.14 +taxi-auto taxi_auto NOM m s 0 0.07 0 0.07 +taxi-brousse taxi_brousse NOM m s 0.14 0.14 0.14 0.14 +taxi-girl taxi_girl NOM f s 0 0.27 0 0.07 +taxi-girls taxi_girl NOM f p 0 0.27 0 0.2 +taï chi taï_chi NOM m s 0.16 0 0.16 0 +tchin tchin tchin_tchin ONO 0.01 0.47 0.01 0.47 +tchin-tchin tchin_tchin ONO 0.11 0.14 0.11 0.14 +te deum te_deum NOM m 0 0.14 0 0.14 +tea-room tea_room NOM m s 0 0.2 0 0.2 +technico-commerciaux technico_commerciaux NOM m p 0 0.07 0 0.07 +tee-shirt tee_shirt NOM m s 3.19 5.27 2.94 3.99 +tee-shirts tee_shirt NOM m p 3.19 5.27 0.25 1.28 +teen-agers teen_ager NOM p 0 0.2 0 0.2 +tennis-ballon tennis_ballon NOM m 0 0.07 0 0.07 +tennis-club tennis_club NOM m 0 0.34 0 0.34 +terra incognita terra_incognita NOM f s 0.02 0.34 0.02 0.34 +terre-neuvas terre_neuvas NOM m 0 0.34 0 0.34 +terre-neuve terre_neuve NOM m 0.03 0.27 0.03 0.27 +terre-neuvien terre_neuvien ADJ m s 0.01 0 0.01 0 +terre-neuvien terre_neuvien NOM m s 0.01 0 0.01 0 +terre-plein terre_plein NOM m s 0.2 5.81 0.2 5.74 +terre-pleins terre_plein NOM m p 0.2 5.81 0 0.07 +terre-à-terre terre_à_terre ADJ f s 0 0.2 0 0.2 +test-match test_match NOM m s 0.01 0 0.01 0 +teuf-teuf teuf_teuf NOM m s 0.04 0.41 0.04 0.41 +tic-tac tic_tac NOM m 2.52 2.91 2.52 2.91 +tie-break tie_break NOM m s 0.02 0 0.02 0 +tiens-la-moi tiens_la_moi ADJ:pos m s 0.14 0 0.14 0 +tiers-monde tiers_monde NOM m s 1.96 0.2 1.96 0.14 +tiers-mondes tiers_monde NOM m p 1.96 0.2 0 0.07 +tiers-mondisme tiers_mondisme NOM m s 0 0.07 0 0.07 +tiers-mondiste tiers_mondiste ADJ f s 0.15 0.2 0.15 0 +tiers-mondistes tiers_mondiste ADJ m p 0.15 0.2 0 0.2 +tiers-ordre tiers_ordre NOM m 0 0.07 0 0.07 +tiers-point tiers_point NOM m s 0 0.14 0 0.14 +tiers-état tiers_état NOM m s 0.03 0 0.03 0 +timbre-poste timbre_poste NOM m s 0.12 1.28 0.11 0.68 +timbres-poste timbre_poste NOM m p 0.12 1.28 0.01 0.61 +time-sharing time_sharing NOM m s 0.01 0 0.01 0 +tire-au-cul tire_au_cul NOM m 0.02 0 0.02 0 +tire-au-flanc tire_au_flanc NOM m 0.51 0.34 0.51 0.34 +tire-botte tire_botte NOM m s 0.01 0.07 0.01 0.07 +tire-bouchon tire_bouchon NOM m s 0.93 2.43 0.9 2.16 +tire-bouchonnaient tire_bouchonner VER 0.02 0.88 0 0.14 ind:imp:3p; +tire-bouchonnant tire_bouchonner VER 0.02 0.88 0 0.07 par:pre; +tire-bouchonne tire_bouchonner VER 0.02 0.88 0.01 0.27 ind:pre:3s; +tire-bouchonnent tire_bouchonner VER 0.02 0.88 0.01 0.07 ind:pre:3p; +tire-bouchonné tire_bouchonner VER m s 0.02 0.88 0 0.27 par:pas; +tire-bouchonnés tire_bouchonner VER m p 0.02 0.88 0 0.07 par:pas; +tire-bouchons tire_bouchon NOM m p 0.93 2.43 0.03 0.27 +tire-bouton tire_bouton NOM m s 0 0.07 0 0.07 +tire-d'aile tire_d_aile NOM f s 0.02 0 0.02 0 +tire-fesse tire_fesse NOM f s 0.01 0 0.01 0 +tire-jus tire_jus NOM m 0 0.2 0 0.2 +tire-laine tire_laine NOM m 0.02 0.07 0.02 0.07 +tire-lait tire_lait NOM m 0.07 0 0.07 0 +tire-larigot tire_larigot NOM f s 0 0.07 0 0.07 +tire-ligne tire_ligne NOM m s 0 0.34 0 0.2 +tire-lignes tire_ligne NOM m p 0 0.34 0 0.14 +tire-lire tire_lire NOM m 0 0.14 0 0.14 +tiroir-caisse tiroir_caisse NOM m s 0.49 2.16 0.48 2.03 +tiroirs-caisses tiroir_caisse NOM m p 0.49 2.16 0.01 0.14 +tissu-éponge tissu_éponge NOM m s 0 0.41 0 0.41 +tohu-bohu tohu_bohu NOM m 0.18 1.42 0.18 1.42 +toi-même toi_même PRO:per s 45.83 11.89 45.83 11.89 +tom-pouce tom_pouce NOM m 0 0.54 0 0.54 +tom-tom tom_tom NOM m 0.04 0 0.04 0 +too much too_much ADJ m s 0.19 0.47 0.19 0.47 +top models top_model NOM f p 0.12 0.07 0.12 0.07 +top-modèle top_modèle NOM f s 0.22 0 0.21 0 +top-modèles top_modèle NOM f p 0.22 0 0.01 0 +torche-cul torche_cul NOM m s 0.06 0 0.06 0 +tord-boyaux tord_boyaux NOM m 0.27 0.47 0.27 0.47 +tord-nez tord_nez NOM m s 0 0.14 0 0.14 +toréador-vedette toréador_vedette NOM m s 0 0.07 0 0.07 +touche-pipi touche_pipi NOM m 0.35 0.61 0.35 0.61 +touche-touche touche_touche NOM f s 0.01 0 0.01 0 +tourne-disque tourne_disque NOM m s 0.74 1.35 0.5 0.95 +tourne-disques tourne_disque NOM m p 0.74 1.35 0.24 0.41 +tours-minute tours_minute NOM p 0 0.07 0 0.07 +tous-terrains tous_terrains ADJ m p 0 0.07 0 0.07 +tout-fait tout_fait ADJ:ind m s 0.14 0 0.11 0 +tout-fou tout_fou ADJ m s 0.01 0 0.01 0 +tout-paris tout_paris NOM m 0.16 1.01 0.16 1.01 +tout-petit tout_petit NOM m s 0.2 0.74 0.03 0.34 +tout-petits tout_petit NOM m p 0.2 0.74 0.17 0.41 +tout-puissant tout_puissant ADJ m s 7.23 3.78 5.7 2.09 +tout-puissants tout_puissant ADJ m p 7.23 3.78 0.17 0.41 +tout-terrain tout_terrain NOM m s 0.28 0 0.28 0 +tout-venant tout_venant NOM m 0.05 0.74 0.05 0.74 +tout-à-l'égout tout_à_l_égout NOM m 0 0.47 0 0.47 +tout-étoile tout_étoile NOM m s 0.01 0 0.01 0 +toute-puissance toute_puissance NOM f 0.08 2.03 0.08 2.03 +toute-puissante tout_puissant ADJ f s 7.23 3.78 1.35 1.15 +toutes-puissantes tout_puissant ADJ f p 7.23 3.78 0.01 0.14 +trachée-artère trachée_artère NOM f s 0.02 0.2 0.02 0.2 +traction-avant traction_avant NOM f s 0 0.07 0 0.07 +trafiquant-espion trafiquant_espion NOM m s 0 0.07 0 0.07 +tragi-comique tragi_comique ADJ f s 0 0.47 0 0.34 +tragi-comiques tragi_comique ADJ m p 0 0.47 0 0.14 +tragi-comédie tragi_comédie NOM f s 0 0.27 0 0.14 +tragi-comédies tragi_comédie NOM f p 0 0.27 0 0.14 +train-train train_train NOM m 0.69 1.62 0.69 1.62 +tranche-montagne tranche_montagne NOM m s 0.28 0.07 0.28 0.07 +tranchée-abri tranchée_abri NOM f s 0 0.81 0 0.74 +tranchées-abris tranchée_abri NOM f p 0 0.81 0 0.07 +traveller's chèques traveller_s_chèque NOM m p 0.04 0 0.04 0 +traîne-misère traîne_misère NOM m 0.01 0.07 0.01 0.07 +traîne-patins traîne_patins NOM m 0 0.47 0 0.47 +traîne-savate traîne_savate NOM m s 0.01 0.07 0.01 0.07 +traîne-savates traîne_savates NOM m 0.22 0.54 0.22 0.54 +traîne-semelle traîne_semelle NOM s 0 0.07 0 0.07 +traîne-semelles traîne_semelles NOM m 0.01 0.07 0.01 0.07 +trench-coat trench_coat NOM m s 0.04 1.55 0.04 1.49 +trench-coats trench_coat NOM m p 0.04 1.55 0 0.07 +trente-cinq trente_cinq ADJ:num 1.33 11.55 1.33 11.55 +trente-cinquième trente_cinquième ADJ 0 0.14 0 0.14 +trente-deux trente_deux ADJ:num 0.82 3.58 0.82 3.58 +trente-et-quarante trente_et_quarante NOM m 0 0.07 0 0.07 +trente-et-un trente_et_un NOM m 0.39 0.07 0.39 0.07 +trente-et-unième trente_et_unième ADJ 0 0.07 0 0.07 +trente-huit trente_huit ADJ:num 0.64 2.64 0.64 2.64 +trente-huitième trente_huitième ADJ 0 0.2 0 0.2 +trente-neuf trente_neuf ADJ:num 0.55 2.16 0.55 2.16 +trente-neuvième trente_neuvième ADJ 0.01 0.14 0.01 0.14 +trente-quatre trente_quatre ADJ:num 0.43 1.08 0.43 1.08 +trente-quatrième trente_quatrième ADJ 0 0.07 0 0.07 +trente-sept trente_sept ADJ:num 0.71 2.23 0.71 2.23 +trente-septième trente_septième ADJ 0.2 0.14 0.2 0.14 +trente-six trente_six ADJ:num 0.55 6.82 0.55 6.82 +trente-sixième trente_sixième ADJ 0.02 0.61 0.02 0.61 +trente-trois trente_trois ADJ:num 0.78 2.36 0.78 2.36 +trente-troisième trente_troisième ADJ 0 0.2 0 0.2 +trois-deux trois_deux NOM m 0.01 0 0.01 0 +trois-huit trois_huit NOM m 0.17 0 0.17 0 +trois-mâts trois_mâts NOM m 0.16 0.47 0.16 0.47 +trois-points trois_points NOM m 0.01 0 0.01 0 +trois-quarts trois_quarts NOM m 0.59 0.34 0.59 0.34 +trois-quatre trois_quatre NOM m 0.02 0.47 0.02 0.47 +trois-six trois_six NOM m 0.01 0.07 0.01 0.07 +trompe-l'oeil trompe_l_oeil NOM m 0.33 2.43 0.33 2.43 +trop-perçu trop_perçu NOM m s 0.01 0 0.01 0 +trop-plein trop_plein NOM m s 0.3 2.64 0.3 2.5 +trop-pleins trop_plein NOM m p 0.3 2.64 0 0.14 +trotte-menu trotte_menu ADJ m s 0 0.41 0 0.41 +trou-du-cul trou_du_cul NOM m s 0.43 0.14 0.29 0.14 +trou-trou trou_trou NOM m s 0 0.34 0 0.14 +trou-trous trou_trou NOM m p 0 0.34 0 0.2 +trouble-fêtes trouble_fête NOM p 0.28 0 0.28 0 +trous-du-cul trou_du_cul NOM m p 0.43 0.14 0.14 0 +trésorier-payeur trésorier_payeur NOM m s 0.02 0.07 0.02 0.07 +tsoin-tsoin tsoin_tsoin NOM m s 0.01 0.47 0.01 0.47 +tss tss tss_tss NOM m 0.01 0.14 0 0.07 +tss-tss tss_tss NOM m 0.01 0.14 0.01 0.07 +tsé-tsé tsé_tsé NOM f 0 0.07 0 0.07 +tu autem tu_autem NOM m s 0 0.07 0 0.07 +tue-loup tue_loup NOM m s 0.06 0 0.05 0 +tue-loups tue_loup NOM m p 0.06 0 0.01 0 +tue-mouche tue_mouche ADJ m s 0.15 0.54 0 0.07 +tue-mouches tue_mouche ADJ p 0.15 0.54 0.15 0.47 +tutti frutti tutti_frutti ADV 0.09 0.41 0.09 0.41 +tutti quanti tutti_quanti ADV 0.15 0.2 0.15 0.2 +twin-set twin_set NOM m s 0 0.14 0 0.14 +témoin-clé témoin_clé NOM m s 0.17 0 0.13 0 +témoin-vedette témoin_vedette NOM m s 0.01 0 0.01 0 +témoins-clés témoin_clé NOM m p 0.17 0 0.05 0 +tête-bêche tête_bêche NOM m 0.03 0.47 0.03 0.47 +tête-de-mort tête_de_mort NOM f 0.01 0.41 0.01 0.41 +tête-de-nègre tête_de_nègre ADJ 0 0.2 0 0.2 +tête-à-queue tête_à_queue NOM m 0 0.2 0 0.2 +tête-à-tête tête_à_tête NOM m 0 5.95 0 5.95 +têtes-de-loup tête_de_loup NOM f p 0 0.27 0 0.27 +tôt-fait tôt_fait NOM m s 0 0.07 0 0.07 +ultima ratio ultima_ratio NOM f s 0 0.07 0 0.07 +ultra-catholique ultra_catholique ADJ m s 0.1 0 0.1 0 +ultra-chic ultra_chic ADJ s 0.03 0.2 0.03 0.14 +ultra-chics ultra_chic ADJ f p 0.03 0.2 0 0.07 +ultra-courtes ultra_court ADJ f p 0.16 0.07 0.02 0 +ultra-courts ultra_court ADJ m p 0.16 0.07 0.14 0.07 +ultra-gauche ultra_gauche NOM f s 0 0.07 0 0.07 +ultra-rapide ultra_rapide ADJ s 0.2 0.27 0.2 0.27 +ultra-secret ultra_secret ADJ m s 0.2 0.07 0.2 0.07 +ultra-sensible ultra_sensible ADJ m s 0.01 0.14 0.01 0.14 +ultra-sons ultra_son NOM m p 0.03 0.14 0.03 0.14 +ultra-violet ultra_violet ADJ 0.04 0.07 0.01 0 +ultra-violets ultra_violet NOM s 0.04 0.07 0.04 0.07 +urbi et orbi urbi_et_orbi ADV 0.01 0.27 0.01 0.27 +usine-pilote usine_pilote NOM f s 0 0.07 0 0.07 +va-et-vient va_et_vient NOM m 1.3 10.61 1.3 10.61 +va-tout va_tout NOM m 0.05 0.41 0.05 0.41 +vade retro vade_retro ADV 0.26 0.68 0.26 0.68 +vae soli vae_soli ADV 0 0.07 0 0.07 +vae victis vae_victis ADV 0.02 0.07 0.02 0.07 +vaisseau-amiral vaisseau_amiral NOM m s 0.05 0 0.05 0 +valeur-refuge valeur_refuge NOM f s 0 0.07 0 0.07 +valse-hésitation valse_hésitation NOM f s 0 0.27 0 0.2 +valses-hésitations valse_hésitation NOM f p 0 0.27 0 0.07 +vamp-club vamp_club NOM f s 0.01 0 0.01 0 +vanity-case vanity_case NOM m s 0.11 0.14 0.11 0.14 +vasculo-nerveux vasculo_nerveux NOM m 0.01 0 0.01 0 +vau-l'eau vau_l_eau NOM m s 0 0.14 0 0.14 +ventre-saint-gris ventre_saint_gris ONO 0 0.07 0 0.07 +vert-de-gris vert_de_gris ADJ 0.02 0.81 0.02 0.81 +vert-de-grisé vert_de_grisé ADJ m s 0 0.34 0 0.07 +vert-de-grisée vert_de_grisé ADJ f s 0 0.34 0 0.07 +vert-de-grisées vert_de_grisé ADJ f p 0 0.34 0 0.14 +vert-de-grisés vert_de_grisé ADJ m p 0 0.34 0 0.07 +vert-galant vert_galant NOM m s 0 0.2 0 0.2 +vert-jaune vert_jaune ADJ m s 0.02 0.07 0.02 0.07 +vert-jaune vert_jaune NOM m s 0.02 0.07 0.02 0.07 +vesse-de-loup vesse_de_loup NOM f s 0.02 0.2 0 0.14 +vesses-de-loup vesse_de_loup NOM f p 0.02 0.2 0.02 0.07 +vibro-masseur vibro_masseur NOM m s 0.08 0.07 0.08 0.07 +vice-amiral vice_amiral NOM m s 0.1 0.61 0.1 0.61 +vice-chancelier vice_chancelier NOM m s 0.07 0 0.07 0 +vice-consul vice_consul NOM m s 0.18 0.54 0.18 0.54 +vice-ministre vice_ministre NOM s 0.27 0.27 0.27 0.2 +vice-ministres vice_ministre NOM p 0.27 0.27 0 0.07 +vice-premier vice_premier NOM m s 0.01 0 0.01 0 +vice-présidence vice_présidence NOM f s 0.57 0 0.57 0 +vice-président vice_président NOM m s 8.63 0.61 7.91 0.54 +vice-présidente vice_président NOM f s 8.63 0.61 0.6 0 +vice-présidents vice_président NOM m p 8.63 0.61 0.12 0.07 +vice-recteur vice_recteur NOM m s 0.1 0 0.1 0 +vice-roi vice_roi NOM m s 0.94 0.54 0.84 0.54 +vice-rois vice_roi NOM m p 0.94 0.54 0.1 0 +vice-versa vice_versa ADV 0.85 0.27 0.85 0.27 +vide-gousset vide_gousset NOM m s 0.27 0 0.27 0 +vide-greniers vide_greniers NOM m 0.04 0 0.04 0 +vide-ordure vide_ordure NOM m s 0.06 0 0.06 0 +vide-ordures vide_ordures NOM m 0.55 1.22 0.55 1.22 +vide-poche vide_poche NOM m s 0.04 0.14 0.04 0.14 +vide-poches vide_poches NOM m 0 0.27 0 0.27 +vidéo-clip vidéo_clip NOM m s 0.19 0.27 0.14 0.2 +vidéo-clips vidéo_clip NOM m p 0.19 0.27 0.04 0.07 +vidéo-club vidéo_club NOM f s 0.44 0 0.44 0 +vidéo-espion vidéo_espion NOM m s 0 0.07 0 0.07 +vieux-rose vieux_rose ADJ m 0 0.2 0 0.2 +vif-argent vif_argent NOM m s 0.21 0.2 0.21 0.2 +ville-champignon ville_champignon NOM f s 0.02 0 0.02 0 +ville-dortoir ville_dortoir NOM f s 0 0.07 0 0.07 +villes-clés villes_clé NOM f p 0.01 0 0.01 0 +vingt-cinq vingt_cinq ADJ:num 3.53 28.18 3.53 28.18 +vingt-cinquième vingt_cinquième ADJ 0.01 0.34 0.01 0.34 +vingt-deux vingt_deux ADJ:num 1.25 8.99 1.25 8.99 +vingt-deuxième vingt_deuxième ADJ 0.03 0.27 0.03 0.27 +vingt-et-un vingt_et_un NOM m 0.28 0.74 0.28 0.68 +vingt-et-une vingt_et_un NOM f s 0.28 0.74 0.01 0.07 +vingt-et-unième vingt_et_unième ADJ 0.01 0.07 0.01 0.07 +vingt-huit vingt_huit ADJ:num 0.97 5.34 0.97 5.34 +vingt-huitième vingt_huitième ADJ 0 0.74 0 0.74 +vingt-neuf vingt_neuf ADJ:num 0.96 2.77 0.96 2.77 +vingt-neuvième vingt_neuvième ADJ 0.01 0 0.01 0 +vingt-quatre vingt_quatre ADJ:num 2.13 17.36 2.13 17.36 +vingt-quatrième vingt_quatrième ADJ 0.01 0.27 0.01 0.27 +vingt-sept vingt_sept ADJ:num 0.67 4.59 0.67 4.59 +vingt-septième vingt_septième ADJ 0 0.54 0 0.54 +vingt-six vingt_six ADJ:num 1.09 7.5 1.09 7.5 +vingt-sixième vingt_sixième ADJ 0.01 0.2 0.01 0.2 +vingt-trois vingt_trois ADJ:num 2.08 7.57 2.08 7.57 +vingt-troisième vingt_troisième ADJ 0.01 0.61 0.01 0.61 +vis-à-vis vis_à_vis PRE 0 19.39 0 19.39 +visite-éclair visite_éclair NOM f s 0 0.07 0 0.07 +voiture-balai voiture_balai NOM f s 0.23 0.07 0.23 0 +voiture-bar voiture_bar NOM f s 0.01 0 0.01 0 +voiture-lit voiture_lit NOM f s 0.01 0 0.01 0 +voiture-restaurant voiture_restaurant NOM f s 0.05 0 0.05 0 +voitures-balais voiture_balai NOM f p 0.23 0.07 0 0.07 +voix-off voix_off NOM f 0.04 0 0.04 0 +vol-au-vent vol_au_vent NOM m 0.02 0.14 0.02 0.14 +volley-ball volley_ball NOM m s 0.25 0.68 0.25 0.68 +volte-face volte_face NOM f 0.26 3.31 0.26 3.31 +vomito negro vomito_negro NOM m s 0.01 0 0.01 0 +vous-même vous_même PRO:per p 28.2 17.84 28.2 17.84 +vous-mêmes vous_mêmes PRO:per p 4.3 1.55 4.3 1.55 +vox populi vox_populi NOM f 0.05 0.27 0.05 0.27 +voyages-éclair voyage_éclair NOM m p 0 0.07 0 0.07 +vrai-faux vrai_faux ADJ m s 0 0.07 0 0.07 +vulgum pecus vulgum_pecus NOM m 0.01 0.07 0.01 0.07 +vélo-cross vélo_cross NOM m 0 0.07 0 0.07 +vélo-pousse vélo_pousse NOM m s 0.01 0 0.01 0 +wagon-bar wagon_bar NOM m s 0.03 0 0.03 0 +wagon-lit wagon_lit NOM m s 1.79 1.89 0.7 0.81 +wagon-lits wagon_lits NOM m 0 0.07 0 0.07 +wagon-restaurant wagon_restaurant NOM m s 0.35 1.01 0.35 0.81 +wagon-salon wagon_salon NOM m s 0.01 0.54 0.01 0.54 +wagons-citernes wagon_citerne NOM m p 0 0.07 0 0.07 +wagons-lits wagon_lit NOM m p 1.79 1.89 1.09 1.08 +wagons-restaurants wagon_restaurant NOM m p 0.35 1.01 0 0.2 +wait and see wait_and_see NOM m s 0.16 0 0.16 0 +walkie-talkie walkie_talkie NOM m s 0.08 0.14 0.05 0.14 +walkies-talkies walkie_talkie NOM m p 0.08 0.14 0.03 0 +wall street wall_street NOM s 0.03 0.07 0.03 0.07 +water-closet water_closet NOM m s 0 0.14 0 0.14 +water-polo water_polo NOM m s 0.23 0 0.23 0 +way of life way_of_life NOM m s 0.02 0.14 0.02 0.14 +week end week_end NOM m s 44.51 14.32 1.96 0 +week-end week_end NOM m s 44.51 14.32 39.41 12.16 +week-ends week_end NOM m p 44.51 14.32 3.13 2.16 +western-spaghetti western_spaghetti NOM m 0 0.07 0 0.07 +whisky-soda whisky_soda NOM m s 0.13 0.07 0.13 0.07 +white-spirit white_spirit NOM m s 0.01 0 0.01 0 +world music world_music NOM f 0.02 0 0.02 0 +yacht-club yacht_club NOM m s 0.04 0.07 0.04 0.07 +yeux-radars oeil_radars NOM m p 0 0.07 0 0.07 +ylang-ylang ylang_ylang NOM m s 0.01 0 0.01 0 +yo-yo yo_yo NOM m 1.03 0.47 1.03 0.47 +yom kippour yom_kippour NOM m 0.45 0.34 0.45 0.34 +yom kippur yom_kippur NOM m s 0.04 0 0.04 0 +you-you you_you NOM m s 0 0.07 0 0.07 +yé-yé yé_yé NOM m 0 0.14 0 0.14 +zig-zig zig_zig ADV 0.03 0 0.03 0 +zones-clés zone_clé NOM f p 0 0.07 0 0.07 +à brûle-pourpoint à_brûle_pourpoint 0.14 0 0.14 0 +à cloche-pied à_cloche_pied 0.22 0 0.22 0 +à cropetons à_cropetons ADV 0 0.07 0 0.07 +à croupetons à_croupetons ADV 0.01 0.95 0.01 0.95 +à fortiori à_fortiori ADV 0.16 0.2 0.16 0.2 +à giorno à_giorno ADV 0 0.07 0 0.07 +à glagla à_glagla ADV 0 0.07 0 0.07 +à jeun à_jeun ADV 1.45 3.85 1.27 3.85 +à l'aveuglette à_l_aveuglette ADV 1.11 2.16 1.11 2.16 +à l'encan à_l_encan ADV 0.01 0.14 0.01 0.14 +à l'encontre à_l_encontre PRE 2.67 1.89 2.67 1.89 +à l'envi à_l_envi ADV 0.2 0.61 0.2 0.61 +à l'improviste à_l_improviste ADV 2.67 4.53 2.67 4.53 +à l'instar à_l_instar PRE 0.26 6.42 0.26 6.42 +à la daumont à_la_daumont ADV 0 0.07 0 0.07 +à la saint-glinglin à_la_saint_glinglin ADV 0.02 0 0.02 0 +à leur encontre à_leur_encontre ADV 0.03 0.07 0.03 0.07 +à lurelure à_lurelure ADV 0 0.2 0 0.2 +à mon encontre à_mon_encontre ADV 0.05 0.14 0.05 0.14 +à notre encontre à_notre_encontre ADV 0.02 0.07 0.02 0.07 +à posteriori a_posteriori ADV 0.05 0.2 0.04 0.07 +à priori a_priori ADV 1.04 3.85 0.41 1.28 +à rebrousse-poil à_rebrousse_poil 0.08 0 0.08 0 +à son encontre à_son_encontre ADV 0.05 0.2 0.05 0.2 +à tire-larigot à_tire_larigot 0.17 0 0.17 0 +à ton encontre à_ton_encontre ADV 0.02 0 0.02 0 +à touche-touche à_touche_touche 0.01 0 0.01 0 +à tue-tête à_tue_tête 0.54 0 0.54 0 +à tâtons à_tâtons ADV 0.6 8.78 0.6 8.78 +à votre encontre à_votre_encontre ADV 0.15 0 0.15 0 +à-coup à_coup NOM m s 0 4.8 0 0.54 +à-coups à_coup NOM m p 0 4.8 0 4.26 +à-côté à_côté NOM m s 0 0.68 0 0.34 +à-côtés à_côté NOM m p 0 0.68 0 0.34 +à-dieu-vat à_dieu_vat ONO 0 0.07 0 0.07 +à-peu-près à_peu_près NOM m 0 0.74 0 0.74 +à-pic à_pic NOM m 0 1.42 0 1.08 +à-pics à_pic NOM m p 0 1.42 0 0.34 +à-plat à_plat NOM m s 0 0.27 0 0.14 +à-plats à_plat NOM m p 0 0.27 0 0.14 +à-propos à_propos NOM m 0 0.88 0 0.88 +à-valoir à_valoir NOM m 0 0.27 0 0.27 +âme-soeur âme_soeur NOM f s 0.04 0.14 0.04 0.14 +échos-radars échos_radar NOM m p 0.01 0 0.01 0 +écrase-merde écrase_merde NOM m s 0 0.41 0 0.2 +écrase-merdes écrase_merde NOM m p 0 0.41 0 0.2 +électro-acoustique électro_acoustique NOM f s 0 0.14 0 0.14 +électro-aimant électro_aimant NOM m s 0.02 0 0.02 0 +électro-encéphalogramme électro_encéphalogramme NOM m s 0.16 0.07 0.16 0.07 +élément-clé élément_clé NOM m s 0.09 0 0.09 0 +éléments-clés éléments_clé NOM m p 0.02 0 0.02 0 +émetteur-récepteur émetteur_récepteur NOM m s 0.05 0 0.05 0 +épine-vinette épine_vinette NOM f s 0 0.07 0 0.07 +épluche-légumes épluche_légumes NOM m 0.01 0 0.01 0 +état-civil état_civil NOM m s 0.03 0.54 0.03 0.47 +état-major état_major NOM m s 5.24 22.43 5.16 18.31 +états-civils état_civil NOM m p 0.03 0.54 0 0.07 +états-majors état_major NOM m p 5.24 22.43 0.09 4.12 +étouffe-chrétien étouffe_chrétien NOM m 0.01 0 0.01 0 +être-là être_là NOM m 0.14 0 0.14 0 diff --git a/dictionnaires/expression_it.txt b/dictionnaires/expression_it.txt new file mode 100644 index 0000000..347de90 --- /dev/null +++ b/dictionnaires/expression_it.txt @@ -0,0 +1,298 @@ +a causa a_causa +a causa di a_causa_di +a confronto a_confronto +a condizione che a_condizione_che +a cui a_cui +a dispetto a_dispetto +a dispetto di a_dispetto_di +a forza a_forza +a partire da a_partire_da +a partire da ora a_partire_da_ora +a priori a_priori +a proposito a_proposito +a questo punto a_questo_punto +a rigore a_rigore +a rischio a_rischio +a rischio di a_rischio_di +a sangue freddo a_sangue_freddo +a tutt'oggi a_tutt_oggi +ad esempio ad_esempio +ad oggi ad_oggi +ai ferri corti ai_ferri_corti +ai quali ai_quali +al confronto al_confronto +al contrario al_contrario +al di la al_di_la +al di sopra al_di_sopra +al fine al_fine_ +al fine di al_fine_di +al momento al_momento +al posto al_posto +al posto di al_posto_di +al punto al_punto +al quale al_quale +al riguardo al_riguardo +alla quale alla_quale +alla volta alla_volta +allo stesso tempo allo_stesso_tempo +andare e venire andare_e_venire +a questo a_questo +arriere pensee arriere_pensee +bagno maria bagno_maria +basso ventre basso_ventre +bella di notte bella_di_notte +belle arti belle_arti +ben altro ben_altro +bla bla bla_bla +black out black_out +boy scout boy_scout +bric a brac bric_a_brac +buon giorno buon_giorno +buon lavoro buon_lavoro +buona notte buona_notte +buona sera buona_sera +camera oscura camera_oscura +capo luogo capo_luogo +chef d'oeuvre chef_d_oeuvre +che magari che_magari +chewing gum chewing_gum_ +che poi che_poi +ci sembra che ci_sembra_che +cio che cio_che +cio detto cio_detto +cioe a dire cioe_a_dire +cioe la cioe_la +cioe se cioe_se +colpo d'occhio colpo_d_occhio +come dire come_dire +come dire che come_dire_che +come noi come_noi +corto circuito corto_circuito +cow boy cow_boy +cul de sac cul_de_sac +d'accordo d_accordo +da che da_che +da cio da_cio +d'ora in poi d_ora_in_poi +da ora in poi da_ora_in_poi +da quando da_quando +da qui a da_qui_a +dalle parti dalle_parti +dalle parti di dalle_parti_di +dato che dato_che +del genere del_genere +del momento del_momento +del resto del_resto +detto altrimenti detto_altrimenti +detto cio detto_cio +detto questo detto_questo +di conseguenza di_conseguenza +di continuo di_continuo +di contro di_contro +di cui di_cui +di fronte di_fronte +di fuori di_fuori +di lesa maesta di_lesa_maesta +di natura di_natura +di piu di_piu +di questa di_questa +di questo di_questo +di seguito di_seguito +di seguito di_seguito +di traverso di_traverso +di una di_una +dopo domani dopo_domani +drug store drug_store +e che e_che +e che e_che +e come e_come +e perche e_perche +e poi e_poi +e quindi e_quindi +e vero e_vero +ex libris ex_libris +ex voto ex_voto +fac simile fac_simile +faccia a faccia faccia_a_faccia +far parte far_parte +far parte di far_parte_di +fatta da fatta_da +fatti da fatti_da +fatto da fatto_da +fatto salvo che fatto_salvo_che +ferry boat ferry_boat +franco tiratore franco_tiratore +frou frou frou_frou +fuori legge fuori_legge +gratta culo gratta_culo +grazia di dio grazia_di_dio +ha detto ha_detto +hanno detto hanno_detto +ieri l'altro ieri_l_altro +in alto in_alto +in basso in_basso +in che in_che +in conclusione in_conclusione +in corso in_corso +in cui in_cui +in definitiva in_definitiva +in effetti in_effetti +in fondo in_fondo +in generale in_generale +in loco in_loco +in luogo in_luogo +in modo in_modo +in modo che in_modo_che +in moto in_moto +in ogni caso in_ogni_caso +in ogni modo in_ogni_modo +in particolare in_particolare +in piu in_piu +in qualche modo in_qualche_modo +in questo in_questo +in realta in_realta +in senso lato in_senso_lato +in testa in_testa +in tutti i casi in_tutti_i_casi +in vano in_vano +in vista di in_vista_di +la davanti la_davanti +la sopra la_sopra +la sotto la_sotto +lancia fiamme lancia_fiamme +lasciar fare lasciar_fare +lasciare fare lasciare_fare +lesa maesta lesa_maesta +lontando dal lontando_dal +luogo comune luogo_comune +martin pesacatore martin_pesacatore +messa in atto messa_in_atto +messa in opera messa_in_opera +metterci una pezza metterci_una_pezza +mezza stagione mezza_stagione +mezzo giorno mezzo_giorno +mezzo male mezzo_male +mi sembra che mi_sembra_che +neanche per niente neanche_per_niente +nei confronti nei_confronti +nel caso nel_caso +nel caso in cui nel_caso_in_cui +nel senso nel_senso +nel momento in cui nel_momento_in_cui +nella misura in cui nella_misura_in_cui +non conformista non_conformista +non importa non_importa +non senso non_senso +non so non_so +non lo so non_lo_so +non violento non_violento +nuovo giorno nuovo_giorno +o meno o_meno +parlare chiaro parlare_chiaro +parlare franco parlare_franco +passa tempo passa_tempo +per altro per_altro +per andare per_andare +per augurio per_augurio +per concludere per_concludere +per cosi dire per_cosi_dire +per cui per_cui +per esempio per_esempio +per essere chiari per_essere_chiari +per fare un esempio per_fare_un_esempio +per finire per_finire +per forza per_forza +per la ragione che per_la_ragione_che +per natura per_natura +per niente per_niente +per parlare chiaro per_parlare_chiaro +per questo per_questo +per riguardo per_riguardo +pero insomma pero_insomma +pick up pick_up +pied a terre pied_a_terre +piu che piu_che +piu di piu_di +piu o meno piu_o_meno +popo a poco popo_a_poco +porta bagagli porta_bagagli +porta chiavi porta_chiavi +porta parola porta_parola +porta penne porta_penne +porta sigarette porta_sigarette +porta voce porta_voce +post scriptum post_scriptum +prima di tutto prima_di_tutto +puo darsi puo_darsi +puo essere puo_essere +puo essere che puo_essere_che +qualche cosa qualche_cosa +quanto a quanto_a +quanto a me quanto_a_me +quanto a noi quanto_a_noi +quanto a te quanto_a_te +quanto a voi quanto_a_voi +quelli che quelli_che +quelli la quelli_la +quelli li quelli_li +quello che quello_che +quello la quello_la +quello li quello_li +regno unito regno_unito +retro gusto retro_gusto +rispetto al rispetto_al +rispetto alle rispetto_alle +sangue freddo sangue_freddo +savoir faire savoir_faire +se dicente se_dicente +secondo me secondo_me +senza logica senza_logica +senza pausa senza_pausa +senza testa senza_testa +se poi se_poi +se uno se_uno +si salvi chi puo si_salvi_chi_puo +side car side_car +sono stati sono_stati +sotto bosco sotto_bosco +sotto cutanea sotto_cutanea +sotto prodotto sotto_prodotto +sotto sotto sotto_sotto +sotto sviluppato sotto_sviluppato +sotto terra sotto_terra +stando ai fatti stando_ai_fatti +stando cio stando_cio +stando cosi le cose stando_cosi_le_cose +stati uniti stati_uniti +stato maggiore stato_maggiore +tam tam tam_tam +tanto che tanto_che +tanto ha fatto che tanto_ha_fatto_che +tanto per dire tanto_per_dire +tanto per fare tanto_per_fare +tenuto conto tenuto_conto +testa a testa testa_a_testa +testa coda testa_coda +tirare dritto tirare_dritto +tra chi tra_chi +tra loro tra_loro +tra noi tra_noi +tre quarti tre_quarti +tutt'a un tratto tutt_a_un_tratto +tutti i santi tutti_i_santi +tutto compreso tutto_compreso +una grande cosa una_grande_cosa +un attimo un_attimo +un certo un_certo +un po un_po +una volta una_volta +va e viene va_e_viene +vagone letto vagone_letto +vagone ristorante vagone_ristorante +vice presidente vice_presidente +vicino a vicino_a +vicino ai vicino_ai +volta faccia volta_faccia +wagon lit wagon_lit +wagon restaurant wagon_restaurant +week end week_end diff --git a/dictionnaires/lexique.txt.back b/dictionnaires/lexique.txt.back new file mode 100644 index 0000000..6550264 --- /dev/null +++ b/dictionnaires/lexique.txt.back @@ -0,0 +1,125754 @@ +île île nom f s 58.35 108.24 50.20 83.58 +îles île nom f p 58.35 108.24 8.15 24.66 +îlette îlette nom f s 0.00 0.07 0.00 0.07 +îlot îlot nom m s 1.20 10.68 0.42 6.49 +îlotier îlotier nom m s 0.04 0.00 0.04 0.00 +îlots îlot nom m p 1.20 10.68 0.78 4.19 +œuvre œuvre nom s 12.04 0.00 12.04 0.00 +ô ô ono 16.08 33.11 16.08 33.11 +ôta ôter ver 16.81 42.03 0.46 8.04 ind:pas:3s; +ôtai ôter ver 16.81 42.03 0.00 0.68 ind:pas:1s; +ôtaient ôter ver 16.81 42.03 0.01 1.08 ind:imp:3p; +ôtais ôter ver 16.81 42.03 0.03 0.68 ind:imp:1s;ind:imp:2s; +ôtait ôter ver 16.81 42.03 0.16 4.53 ind:imp:3s; +ôtant ôter ver 16.81 42.03 0.43 2.50 par:pre; +ôte ôter ver 16.81 42.03 3.05 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ôtent ôter ver 16.81 42.03 0.29 0.41 ind:pre:3p; +ôter ôter ver 16.81 42.03 5.57 10.00 ind:pre:2p;inf; +ôtera ôter ver 16.81 42.03 0.26 0.34 ind:fut:3s; +ôterai ôter ver 16.81 42.03 0.09 0.07 ind:fut:1s; +ôterais ôter ver 16.81 42.03 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +ôterait ôter ver 16.81 42.03 0.03 0.54 cnd:pre:3s; +ôteras ôter ver 16.81 42.03 0.17 0.14 ind:fut:2s; +ôterez ôter ver 16.81 42.03 0.17 0.20 ind:fut:2p; +ôterions ôter ver 16.81 42.03 0.00 0.07 cnd:pre:1p; +ôtes ôter ver 16.81 42.03 0.65 0.00 ind:pre:2s; +ôtez ôter ver 16.81 42.03 1.30 0.81 imp:pre:2p;ind:pre:2p; +ôtiez ôter ver 16.81 42.03 0.17 0.00 ind:imp:2p; +ôtons ôter ver 16.81 42.03 0.02 0.07 ind:pre:1p; +ôtât ôter ver 16.81 42.03 0.00 0.14 sub:imp:3s; +ôtèrent ôter ver 16.81 42.03 0.00 0.27 ind:pas:3p; +ôté ôter ver m s 16.81 42.03 3.18 5.47 par:pas; +ôtée ôter ver f s 16.81 42.03 0.42 0.54 par:pas; +ôtées ôter ver f p 16.81 42.03 0.16 0.07 par:pas; +ôtés ôter ver m p 16.81 42.03 0.04 0.14 par:pas; +a_capella a_capella adv 0.04 0.07 0.04 0.07 +a_cappella a_cappella adv 0.04 0.07 0.04 0.07 +a_contrario a_contrario adv 0.00 0.27 0.00 0.27 +a_fortiori a_fortiori adv 0.04 0.88 0.04 0.88 +a_giorno a_giorno adv 0.00 0.27 0.00 0.27 +à_jeun à_jeun adv 1.45 3.85 0.18 0.00 +a_l_instar a_l_instar pre 0.26 0.00 0.26 0.00 +a_posteriori a_posteriori adv 0.05 0.20 0.01 0.14 +a_priori a_priori adv 1.04 3.85 0.63 2.57 +a avoir aux 18559.23 12800.81 6350.91 2926.69 ind:pre:3s; +aînesse aînesse nom f s 0.07 0.47 0.07 0.47 +aîné aîné adj m s 6.27 16.42 4.66 10.00 +aînée aîné nom f s 8.92 22.84 2.79 5.07 +aînées aîné nom f p 8.92 22.84 0.05 0.54 +aînés aîné nom m p 8.92 22.84 1.46 4.19 +aître aître nom m s 0.00 0.14 0.00 0.07 +aîtres aître nom m p 0.00 0.14 0.00 0.07 +aï aï nom m s 2.31 0.00 2.31 0.00 +aïd aïd nom m 0.54 0.34 0.54 0.34 +aïe aïe ono 18.25 8.38 18.25 8.38 +aïeul aïeul nom m s 3.13 10.61 1.08 4.46 +aïeule aïeul nom f s 3.13 10.61 0.14 3.24 +aïeules aïeul nom f p 3.13 10.61 0.03 0.54 +aïeuls aïeul nom m p 3.13 10.61 0.14 0.27 +aïeux aïeul nom m p 3.13 10.61 1.75 2.09 +aïkido aïkido nom m s 0.02 0.07 0.02 0.07 +aïoli aïoli nom m s 0.01 0.27 0.01 0.27 +aa aa nom m s 0.01 0.00 0.01 0.00 +ab_absurdo ab_absurdo adv 0.00 0.07 0.00 0.07 +ab_initio ab_initio adv 0.01 0.07 0.01 0.07 +ab_ovo ab_ovo adv 0.00 0.27 0.00 0.27 +abîma abîmer ver 15.83 21.69 0.10 0.74 ind:pas:3s; +abîmai abîmer ver 15.83 21.69 0.00 0.14 ind:pas:1s; +abîmaient abîmer ver 15.83 21.69 0.10 0.20 ind:imp:3p; +abîmait abîmer ver 15.83 21.69 0.01 1.22 ind:imp:3s; +abîmant abîmer ver 15.83 21.69 0.01 0.54 par:pre; +abîme abîme nom m s 6.01 20.61 5.03 14.59 +abîment abîmer ver 15.83 21.69 0.31 0.88 ind:pre:3p; +abîmer abîmer ver 15.83 21.69 5.40 5.95 inf; +abîmera abîmer ver 15.83 21.69 0.04 0.14 ind:fut:3s; +abîmerai abîmer ver 15.83 21.69 0.01 0.00 ind:fut:1s; +abîmerais abîmer ver 15.83 21.69 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +abîmerait abîmer ver 15.83 21.69 0.08 0.20 cnd:pre:3s; +abîmeras abîmer ver 15.83 21.69 0.00 0.14 ind:fut:2s; +abîmerez abîmer ver 15.83 21.69 0.01 0.00 ind:fut:2p; +abîmeront abîmer ver 15.83 21.69 0.02 0.14 ind:fut:3p; +abîmes abîme nom m p 6.01 20.61 0.98 6.01 +abîmez abîmer ver 15.83 21.69 0.30 0.20 imp:pre:2p;ind:pre:2p; +abîmions abîmer ver 15.83 21.69 0.00 0.14 ind:imp:1p; +abîmons abîmer ver 15.83 21.69 0.00 0.07 ind:pre:1p; +abîmé abîmer ver m s 15.83 21.69 3.57 4.73 par:pas; +abîmée abîmer ver f s 15.83 21.69 1.73 1.76 par:pas; +abîmées abîmer ver f p 15.83 21.69 0.56 0.74 par:pas; +abîmés abîmer ver m p 15.83 21.69 0.61 1.35 par:pas; +abaca abaca nom m s 0.01 0.00 0.01 0.00 +abaissa abaisser ver 4.93 18.04 0.00 2.64 ind:pas:3s; +abaissai abaisser ver 4.93 18.04 0.10 0.07 ind:pas:1s; +abaissaient abaisser ver 4.93 18.04 0.00 0.41 ind:imp:3p; +abaissait abaisser ver 4.93 18.04 0.02 2.50 ind:imp:3s; +abaissant abaissant adj m s 0.04 0.27 0.03 0.27 +abaissante abaissant adj f s 0.04 0.27 0.01 0.00 +abaisse_langue abaisse_langue nom m 0.04 0.14 0.04 0.14 +abaisse abaisser ver 4.93 18.04 1.28 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abaissement abaissement nom m s 0.31 2.16 0.31 2.16 +abaissent abaisser ver 4.93 18.04 0.05 0.95 ind:pre:3p; +abaisser abaisser ver 4.93 18.04 1.09 2.91 inf; +abaissera abaisser ver 4.93 18.04 0.19 0.07 ind:fut:3s; +abaisserai abaisser ver 4.93 18.04 0.10 0.07 ind:fut:1s; +abaisseraient abaisser ver 4.93 18.04 0.01 0.07 cnd:pre:3p; +abaisserais abaisser ver 4.93 18.04 0.13 0.00 cnd:pre:1s;cnd:pre:2s; +abaisserait abaisser ver 4.93 18.04 0.02 0.20 cnd:pre:3s; +abaisses abaisser ver 4.93 18.04 0.16 0.07 ind:pre:2s; +abaissez abaisser ver 4.93 18.04 0.53 0.07 imp:pre:2p;ind:pre:2p; +abaissons abaisser ver 4.93 18.04 0.02 0.00 imp:pre:1p; +abaissèrent abaisser ver 4.93 18.04 0.00 0.41 ind:pas:3p; +abaissé abaisser ver m s 4.93 18.04 0.74 1.35 par:pas; +abaissée abaisser ver f s 4.93 18.04 0.17 0.27 par:pas; +abaissées abaissée adj f p 0.02 0.00 0.02 0.00 +abaissés abaisser ver m p 4.93 18.04 0.30 0.07 par:pas; +abalone abalone nom m s 0.01 0.07 0.01 0.00 +abalones abalone nom m p 0.01 0.07 0.00 0.07 +abandon abandon nom m s 4.84 27.36 4.77 25.20 +abandonna abandonner ver 110.86 128.45 0.59 8.92 ind:pas:3s; +abandonnai abandonner ver 110.86 128.45 0.27 2.16 ind:pas:1s; +abandonnaient abandonner ver 110.86 128.45 0.07 1.55 ind:imp:3p; +abandonnais abandonner ver 110.86 128.45 0.35 1.49 ind:imp:1s;ind:imp:2s; +abandonnait abandonner ver 110.86 128.45 1.04 9.46 ind:imp:3s; +abandonnant abandonner ver 110.86 128.45 1.15 9.93 par:pre; +abandonnas abandonner ver 110.86 128.45 0.00 0.14 ind:pas:2s; +abandonne abandonner ver 110.86 128.45 24.04 15.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +abandonnent abandonner ver 110.86 128.45 2.44 2.64 ind:pre:3p;sub:pre:3p; +abandonner abandonner ver 110.86 128.45 28.36 27.70 inf; +abandonnera abandonner ver 110.86 128.45 1.52 0.81 ind:fut:3s; +abandonnerai abandonner ver 110.86 128.45 2.39 0.41 ind:fut:1s; +abandonneraient abandonner ver 110.86 128.45 0.02 0.14 cnd:pre:3p; +abandonnerais abandonner ver 110.86 128.45 0.93 0.27 cnd:pre:1s;cnd:pre:2s; +abandonnerait abandonner ver 110.86 128.45 0.23 0.88 cnd:pre:3s; +abandonneras abandonner ver 110.86 128.45 0.30 0.20 ind:fut:2s; +abandonnerez abandonner ver 110.86 128.45 0.14 0.00 ind:fut:2p; +abandonneriez abandonner ver 110.86 128.45 0.23 0.20 cnd:pre:2p; +abandonnerions abandonner ver 110.86 128.45 0.01 0.00 cnd:pre:1p; +abandonnerons abandonner ver 110.86 128.45 0.39 0.14 ind:fut:1p; +abandonneront abandonner ver 110.86 128.45 0.41 0.27 ind:fut:3p; +abandonnes abandonner ver 110.86 128.45 4.13 0.14 ind:pre:2s;sub:pre:2s; +abandonneurs abandonneur nom m p 0.00 0.07 0.00 0.07 +abandonnez abandonner ver 110.86 128.45 5.72 0.88 imp:pre:2p;ind:pre:2p; +abandonniez abandonner ver 110.86 128.45 0.14 0.14 ind:imp:2p; +abandonnions abandonner ver 110.86 128.45 0.06 0.54 ind:imp:1p; +abandonnique abandonnique adj s 0.00 0.07 0.00 0.07 +abandonnâmes abandonner ver 110.86 128.45 0.00 0.27 ind:pas:1p; +abandonnons abandonner ver 110.86 128.45 1.06 0.68 imp:pre:1p;ind:pre:1p; +abandonnât abandonner ver 110.86 128.45 0.00 0.34 sub:imp:3s; +abandonnèrent abandonner ver 110.86 128.45 0.16 1.42 ind:pas:3p; +abandonné abandonner ver m s 110.86 128.45 22.56 23.92 par:pas; +abandonnée abandonner ver f s 110.86 128.45 7.34 9.66 par:pas; +abandonnées abandonner ver f p 110.86 128.45 1.27 2.70 par:pas; +abandonnés abandonner ver m p 110.86 128.45 3.55 4.93 par:pas; +abandons abandon nom m p 4.84 27.36 0.07 2.16 +abaque abaque nom m s 0.00 0.07 0.00 0.07 +abasourdi abasourdir ver m s 0.55 2.97 0.35 2.09 par:pas; +abasourdie abasourdi adj f s 0.40 2.64 0.14 0.54 +abasourdir abasourdir ver 0.55 2.97 0.01 0.14 inf; +abasourdis abasourdir ver m p 0.55 2.97 0.07 0.20 par:pas; +abasourdissant abasourdissant adj m s 0.01 0.07 0.01 0.00 +abasourdissants abasourdissant adj m p 0.01 0.07 0.00 0.07 +abat_jour abat_jour nom m 0.51 8.24 0.51 8.24 +abat_son abat_son nom m 0.00 0.27 0.00 0.27 +abat abattre ver 43.47 50.61 2.15 4.93 ind:pre:3s; +abatage abatage nom m s 0.00 0.07 0.00 0.07 +abatis abatis nom m 0.00 0.88 0.00 0.88 +abats abattre ver 43.47 50.61 1.79 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +abattage abattage nom m s 0.65 1.28 0.63 1.15 +abattages abattage nom m p 0.65 1.28 0.02 0.14 +abattaient abattre ver 43.47 50.61 0.06 2.36 ind:imp:3p; +abattais abattre ver 43.47 50.61 0.02 0.27 ind:imp:1s; +abattait abattre ver 43.47 50.61 0.42 3.45 ind:imp:3s; +abattant abattre ver 43.47 50.61 0.31 1.96 par:pre; +abattants abattant nom m p 0.07 0.61 0.01 0.07 +abatte abattre ver 43.47 50.61 0.58 0.61 sub:pre:1s;sub:pre:3s; +abattement abattement nom m s 0.18 2.64 0.17 2.36 +abattements abattement nom m p 0.18 2.64 0.01 0.27 +abattent abattre ver 43.47 50.61 0.69 2.03 ind:pre:3p; +abattes abattre ver 43.47 50.61 0.11 0.00 sub:pre:2s; +abatteur abatteur nom m s 0.14 0.27 0.14 0.20 +abatteurs abatteur nom m p 0.14 0.27 0.00 0.07 +abattez abattre ver 43.47 50.61 2.21 0.00 imp:pre:2p;ind:pre:2p; +abattiez abattre ver 43.47 50.61 0.06 0.00 ind:imp:2p; +abattions abattre ver 43.47 50.61 0.00 0.07 ind:imp:1p; +abattirent abattre ver 43.47 50.61 0.03 0.95 ind:pas:3p; +abattis abattis nom m 0.14 1.08 0.14 1.08 +abattit abattre ver 43.47 50.61 0.34 5.07 ind:pas:3s; +abattoir abattoir nom m s 3.16 4.66 2.67 2.36 +abattoirs abattoir nom m p 3.16 4.66 0.48 2.30 +abattons abattre ver 43.47 50.61 0.33 0.00 imp:pre:1p;ind:pre:1p; +abattra abattre ver 43.47 50.61 1.51 0.61 ind:fut:3s; +abattrai abattre ver 43.47 50.61 0.39 0.00 ind:fut:1s; +abattraient abattre ver 43.47 50.61 0.03 0.07 cnd:pre:3p; +abattrais abattre ver 43.47 50.61 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +abattrait abattre ver 43.47 50.61 0.63 0.41 cnd:pre:3s; +abattras abattre ver 43.47 50.61 0.03 0.00 ind:fut:2s; +abattre abattre ver 43.47 50.61 14.43 14.32 inf; +abattrez abattre ver 43.47 50.61 0.26 0.00 ind:fut:2p; +abattriez abattre ver 43.47 50.61 0.02 0.00 cnd:pre:2p; +abattrons abattre ver 43.47 50.61 0.11 0.00 ind:fut:1p; +abattront abattre ver 43.47 50.61 0.34 0.07 ind:fut:3p; +abattu abattre ver m s 43.47 50.61 11.48 7.43 par:pas; +abattue abattre ver f s 43.47 50.61 2.19 2.43 par:pas; +abattues abattre ver f p 43.47 50.61 0.44 0.27 par:pas; +abattures abatture nom f p 0.00 0.14 0.00 0.14 +abattus abattre ver m p 43.47 50.61 2.42 2.43 par:pas; +abbatial abbatial adj m s 0.00 0.61 0.00 0.27 +abbatiale abbatial adj f s 0.00 0.61 0.00 0.27 +abbatiales abbatial adj f p 0.00 0.61 0.00 0.07 +abbaye abbaye nom f s 3.94 3.78 3.66 3.31 +abbayes abbaye nom f p 3.94 3.78 0.28 0.47 +abbesse abbé nom f s 4.46 33.51 0.26 0.41 +abbesses abbé nom f p 4.46 33.51 0.00 0.61 +abbé abbé nom m s 4.46 33.51 4.19 31.28 +abbés abbé nom m p 4.46 33.51 0.02 1.22 +abc abc nom m 0.04 0.00 0.04 0.00 +abcès abcès nom m 1.79 3.31 1.79 3.31 +abdication abdication nom f s 0.05 1.96 0.05 1.82 +abdications abdication nom f p 0.05 1.96 0.00 0.14 +abdiqua abdiquer ver 0.47 2.77 0.00 0.20 ind:pas:3s; +abdiquai abdiquer ver 0.47 2.77 0.00 0.07 ind:pas:1s; +abdiquaient abdiquer ver 0.47 2.77 0.00 0.07 ind:imp:3p; +abdiquais abdiquer ver 0.47 2.77 0.00 0.14 ind:imp:1s; +abdiquait abdiquer ver 0.47 2.77 0.00 0.20 ind:imp:3s; +abdiquant abdiquer ver 0.47 2.77 0.00 0.07 par:pre; +abdique abdiquer ver 0.47 2.77 0.23 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abdiquer abdiquer ver 0.47 2.77 0.08 0.41 inf; +abdiquera abdiquer ver 0.47 2.77 0.01 0.07 ind:fut:3s; +abdiquerais abdiquer ver 0.47 2.77 0.00 0.07 cnd:pre:1s; +abdiquerait abdiquer ver 0.47 2.77 0.00 0.07 cnd:pre:3s; +abdiquez abdiquer ver 0.47 2.77 0.03 0.00 imp:pre:2p;ind:pre:2p; +abdiqué abdiquer ver m s 0.47 2.77 0.11 0.95 par:pas; +abdiquée abdiquer ver f s 0.47 2.77 0.00 0.07 par:pas; +abdomen abdomen nom m s 2.76 1.55 2.76 1.55 +abdominal abdominal adj m s 2.56 0.74 0.50 0.00 +abdominale abdominal adj f s 2.56 0.74 1.30 0.61 +abdominales abdominal adj f p 2.56 0.74 0.70 0.00 +abdominaux abdominal nom m p 0.09 0.68 0.09 0.68 +abdos abdos nom m p 0.86 0.00 0.86 0.00 +abducteur abducteur adj m s 0.01 0.00 0.01 0.00 +abduction abduction nom f s 0.05 0.00 0.05 0.00 +abeille abeille nom f s 9.11 9.86 3.53 3.18 +abeilles abeille nom f p 9.11 9.86 5.59 6.69 +aber aber nom m s 0.25 0.00 0.25 0.00 +aberrant aberrant adj m s 0.84 2.50 0.58 1.08 +aberrante aberrant adj f s 0.84 2.50 0.04 0.61 +aberrantes aberrant adj f p 0.84 2.50 0.20 0.34 +aberrants aberrant adj m p 0.84 2.50 0.02 0.47 +aberration aberration nom f s 1.16 4.46 0.89 3.31 +aberrations aberration nom f p 1.16 4.46 0.27 1.15 +abhorrais abhorrer ver 0.27 1.35 0.01 0.07 ind:imp:1s; +abhorrait abhorrer ver 0.27 1.35 0.01 0.68 ind:imp:3s; +abhorrant abhorrer ver 0.27 1.35 0.01 0.07 par:pre; +abhorre abhorrer ver 0.27 1.35 0.20 0.00 ind:pre:1s;ind:pre:3s; +abhorrer abhorrer ver 0.27 1.35 0.00 0.14 inf; +abhorrez abhorrer ver 0.27 1.35 0.03 0.00 ind:pre:2p; +abhorré abhorrer ver m s 0.27 1.35 0.01 0.27 par:pas; +abhorrée abhorré adj f s 0.01 0.27 0.01 0.07 +abhorrés abhorrer ver m p 0.27 1.35 0.00 0.07 par:pas; +abject abject adj m s 2.19 3.92 1.40 1.69 +abjecte abject adj f s 2.19 3.92 0.69 1.49 +abjectement abjectement adv 0.10 0.07 0.10 0.07 +abjectes abject adj f p 2.19 3.92 0.05 0.20 +abjection abjection nom f s 0.51 2.30 0.37 2.16 +abjections abjection nom f p 0.51 2.30 0.14 0.14 +abjects abject adj m p 2.19 3.92 0.05 0.54 +abjurant abjurer ver 1.53 1.28 0.14 0.00 par:pre; +abjuration abjuration nom f s 0.00 0.47 0.00 0.41 +abjurations abjuration nom f p 0.00 0.47 0.00 0.07 +abjure abjurer ver 1.53 1.28 0.77 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abjurer abjurer ver 1.53 1.28 0.22 0.68 inf; +abjurez abjurer ver 1.53 1.28 0.40 0.00 imp:pre:2p;ind:pre:2p; +abjurons abjurer ver 1.53 1.28 0.00 0.07 ind:pre:1p; +abjuré abjurer ver m s 1.53 1.28 0.00 0.41 par:pas; +abkhaze abkhaze adj f s 0.00 0.07 0.00 0.07 +ablatif ablatif nom m s 0.00 0.14 0.00 0.14 +ablation ablation nom f s 0.45 1.35 0.43 1.28 +ablations ablation nom f p 0.45 1.35 0.03 0.07 +able able nom m s 0.68 0.14 0.68 0.14 +ablette ablette nom f s 0.14 0.95 0.00 0.41 +ablettes ablette nom f p 0.14 0.95 0.14 0.54 +ablution ablution nom f s 0.48 1.55 0.01 0.14 +ablutions ablution nom f p 0.48 1.55 0.47 1.42 +abnégation abnégation nom f s 0.91 3.58 0.91 3.58 +aboi aboi nom m s 0.78 3.58 0.00 0.88 +aboie aboyer ver 7.43 11.82 2.91 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aboiement aboiement nom m s 1.79 5.95 0.44 2.36 +aboiements aboiement nom m p 1.79 5.95 1.35 3.58 +aboient aboyer ver 7.43 11.82 0.54 0.81 ind:pre:3p; +aboiera aboyer ver 7.43 11.82 0.21 0.00 ind:fut:3s; +aboierait aboyer ver 7.43 11.82 0.01 0.07 cnd:pre:3s; +aboieront aboyer ver 7.43 11.82 0.01 0.07 ind:fut:3p; +aboies aboyer ver 7.43 11.82 0.42 0.00 ind:pre:2s; +abois aboi nom m p 0.78 3.58 0.78 2.70 +aboli abolir ver m s 3.08 9.32 1.10 1.42 par:pas; +abolie aboli adj f s 0.08 2.57 0.06 0.61 +abolies abolir ver f p 3.08 9.32 0.11 0.34 par:pas; +abolir abolir ver 3.08 9.32 1.08 2.97 inf; +abolira abolir ver 3.08 9.32 0.01 0.34 ind:fut:3s; +abolirait abolir ver 3.08 9.32 0.00 0.07 cnd:pre:3s; +aboliras abolir ver 3.08 9.32 0.01 0.00 ind:fut:2s; +abolis abolir ver m p 3.08 9.32 0.14 0.41 ind:pre:1s;par:pas; +abolissaient abolir ver 3.08 9.32 0.00 0.41 ind:imp:3p; +abolissais abolir ver 3.08 9.32 0.00 0.07 ind:imp:1s; +abolissait abolir ver 3.08 9.32 0.00 0.74 ind:imp:3s; +abolissant abolir ver 3.08 9.32 0.25 0.54 par:pre; +abolissent abolir ver 3.08 9.32 0.00 0.14 ind:pre:3p; +abolissions abolir ver 3.08 9.32 0.00 0.07 ind:imp:1p; +abolissons abolir ver 3.08 9.32 0.02 0.00 imp:pre:1p;ind:pre:1p; +abolit abolir ver 3.08 9.32 0.29 1.28 ind:pre:3s;ind:pas:3s; +abolition abolition nom f s 0.45 1.49 0.45 1.49 +abolitionniste abolitionniste nom s 0.17 0.07 0.07 0.00 +abolitionnistes abolitionniste nom p 0.17 0.07 0.10 0.07 +abominable abominable adj s 5.39 11.22 4.78 8.99 +abominablement abominablement adv 0.01 0.68 0.01 0.68 +abominables abominable adj p 5.39 11.22 0.62 2.23 +abominaient abominer ver 0.00 0.54 0.00 0.07 ind:imp:3p; +abomination abomination nom f s 1.94 4.53 1.24 3.04 +abominations abomination nom f p 1.94 4.53 0.69 1.49 +abomine abominer ver 0.00 0.54 0.00 0.41 ind:pre:1s;ind:pre:3s; +abominer abominer ver 0.00 0.54 0.00 0.07 inf; +abonda abonder ver 1.13 4.59 0.00 0.27 ind:pas:3s; +abondai abonder ver 1.13 4.59 0.00 0.07 ind:pas:1s; +abondaient abonder ver 1.13 4.59 0.12 1.42 ind:imp:3p; +abondais abonder ver 1.13 4.59 0.01 0.14 ind:imp:1s; +abondait abonder ver 1.13 4.59 0.02 0.47 ind:imp:3s; +abondamment abondamment adv 0.30 4.93 0.30 4.93 +abondance abondance nom f s 2.76 9.39 2.76 9.39 +abondant abondant adj m s 1.36 7.03 0.09 1.42 +abondante abondant adj f s 1.36 7.03 0.89 3.45 +abondantes abondant adj f p 1.36 7.03 0.33 1.22 +abondants abondant adj m p 1.36 7.03 0.05 0.95 +abondassent abonder ver 1.13 4.59 0.00 0.07 sub:imp:3p; +abonde abonder ver 1.13 4.59 0.28 0.81 ind:pre:1s;ind:pre:3s; +abondent abonder ver 1.13 4.59 0.63 0.47 ind:pre:3p; +abonder abonder ver 1.13 4.59 0.03 0.61 inf; +abondé abonder ver m s 1.13 4.59 0.01 0.20 par:pas; +abonnai abonner ver 1.10 2.09 0.00 0.07 ind:pas:1s; +abonnant abonner ver 1.10 2.09 0.01 0.00 par:pre; +abonne abonner ver 1.10 2.09 0.18 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abonnement abonnement nom m s 4.82 1.62 3.37 1.55 +abonnements abonnement nom m p 4.82 1.62 1.45 0.07 +abonner abonner ver 1.10 2.09 0.27 0.14 inf; +abonnez abonner ver 1.10 2.09 0.03 0.07 imp:pre:2p;ind:pre:2p; +abonnât abonner ver 1.10 2.09 0.00 0.07 sub:imp:3s; +abonné abonner ver m s 1.10 2.09 0.30 0.88 par:pas; +abonnée abonner ver f s 1.10 2.09 0.15 0.68 par:pas; +abonnées abonné nom f p 0.87 2.23 0.02 0.20 +abonnés abonné nom m p 0.87 2.23 0.52 1.55 +abord abord nom m s 2.22 19.05 0.89 7.30 +aborda aborder ver 12.55 33.18 0.16 3.99 ind:pas:3s; +abordable abordable adj s 0.47 0.20 0.34 0.20 +abordables abordable adj p 0.47 0.20 0.13 0.00 +abordage abordage nom m s 1.22 1.49 1.17 1.42 +abordages abordage nom m p 1.22 1.49 0.05 0.07 +abordai aborder ver 12.55 33.18 0.00 0.61 ind:pas:1s; +abordaient aborder ver 12.55 33.18 0.03 1.28 ind:imp:3p; +abordais aborder ver 12.55 33.18 0.00 0.54 ind:imp:1s; +abordait aborder ver 12.55 33.18 0.47 2.50 ind:imp:3s; +abordant aborder ver 12.55 33.18 0.03 1.42 par:pre; +aborde aborder ver 12.55 33.18 1.76 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abordent aborder ver 12.55 33.18 0.09 0.54 ind:pre:3p; +aborder aborder ver 12.55 33.18 5.65 12.91 inf; +abordera aborder ver 12.55 33.18 0.20 0.34 ind:fut:3s; +aborderai aborder ver 12.55 33.18 0.08 0.14 ind:fut:1s; +aborderaient aborder ver 12.55 33.18 0.00 0.07 cnd:pre:3p; +aborderais aborder ver 12.55 33.18 0.02 0.07 cnd:pre:1s; +aborderait aborder ver 12.55 33.18 0.02 0.14 cnd:pre:3s; +aborderiez aborder ver 12.55 33.18 0.01 0.00 cnd:pre:2p; +aborderions aborder ver 12.55 33.18 0.00 0.14 cnd:pre:1p; +aborderons aborder ver 12.55 33.18 0.09 0.07 ind:fut:1p; +aborderont aborder ver 12.55 33.18 0.04 0.14 ind:fut:3p; +abordes aborder ver 12.55 33.18 0.36 0.07 ind:pre:2s; +abordez aborder ver 12.55 33.18 0.75 0.00 imp:pre:2p;ind:pre:2p; +abordiez aborder ver 12.55 33.18 0.02 0.07 ind:imp:2p; +abordions aborder ver 12.55 33.18 0.04 0.34 ind:imp:1p; +abordâmes aborder ver 12.55 33.18 0.00 0.27 ind:pas:1p; +abordons aborder ver 12.55 33.18 0.72 0.41 imp:pre:1p;ind:pre:1p; +abords abord nom m p 2.22 19.05 1.33 11.76 +abordèrent aborder ver 12.55 33.18 0.01 0.68 ind:pas:3p; +abordé aborder ver m s 12.55 33.18 1.36 2.97 par:pas; +abordée aborder ver f s 12.55 33.18 0.34 0.54 par:pas; +abordées aborder ver f p 12.55 33.18 0.05 0.20 par:pas; +abordés aborder ver m p 12.55 33.18 0.26 0.41 par:pas; +aborigène aborigène nom s 0.60 0.14 0.21 0.00 +aborigènes aborigène nom p 0.60 0.14 0.39 0.14 +abornement abornement nom m s 0.00 0.07 0.00 0.07 +abortif abortif adj m s 0.04 0.34 0.01 0.00 +abortive abortif adj f s 0.04 0.34 0.01 0.14 +abortives abortif adj f p 0.04 0.34 0.02 0.20 +abâtardi abâtardir ver m s 0.14 0.41 0.00 0.20 par:pas; +abâtardie abâtardi adj f s 0.01 0.07 0.01 0.07 +abâtardies abâtardir ver f p 0.14 0.41 0.00 0.07 par:pas; +abâtardir abâtardir ver 0.14 0.41 0.00 0.07 inf; +abâtardirai abâtardir ver 0.14 0.41 0.00 0.07 ind:fut:1s; +abâtardissant abâtardir ver 0.14 0.41 0.14 0.00 par:pre; +abouchaient aboucher ver 0.00 0.81 0.00 0.07 ind:imp:3p; +abouchais aboucher ver 0.00 0.81 0.00 0.07 ind:imp:1s; +abouchait aboucher ver 0.00 0.81 0.00 0.07 ind:imp:3s; +abouchant aboucher ver 0.00 0.81 0.00 0.07 par:pre; +abouchements abouchement nom m p 0.00 0.07 0.00 0.07 +aboucher aboucher ver 0.00 0.81 0.00 0.34 inf; +abouché aboucher ver m s 0.00 0.81 0.00 0.07 par:pas; +abouchée aboucher ver f s 0.00 0.81 0.00 0.07 par:pas; +abouchés aboucher ver m p 0.00 0.81 0.00 0.07 par:pas; +aboule abouler ver 1.80 0.61 1.43 0.34 imp:pre:2s;ind:pre:3s; +abouler abouler ver 1.80 0.61 0.11 0.14 inf; +aboules abouler ver 1.80 0.61 0.01 0.00 ind:pre:2s; +aboulez abouler ver 1.80 0.61 0.25 0.14 imp:pre:2p; +aboulie aboulie nom f s 0.00 0.14 0.00 0.14 +aboulique aboulique nom s 0.00 0.07 0.00 0.07 +abouliques aboulique adj p 0.00 0.14 0.00 0.14 +abounas abouna nom m p 0.00 0.07 0.00 0.07 +about about nom m s 5.94 0.47 5.94 0.47 +aboutîmes aboutir ver 5.34 25.81 0.00 0.14 ind:pas:1p; +aboutait abouter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +abouti aboutir ver m s 5.34 25.81 1.24 2.84 par:pas; +aboutie abouti adj f s 0.11 0.20 0.04 0.07 +aboutir aboutir ver 5.34 25.81 1.34 9.80 inf; +aboutira aboutir ver 5.34 25.81 0.29 0.41 ind:fut:3s; +aboutirai aboutir ver 5.34 25.81 0.00 0.07 ind:fut:1s; +aboutiraient aboutir ver 5.34 25.81 0.01 0.14 cnd:pre:3p; +aboutirais aboutir ver 5.34 25.81 0.00 0.14 cnd:pre:1s; +aboutirait aboutir ver 5.34 25.81 0.05 0.61 cnd:pre:3s; +aboutiras aboutir ver 5.34 25.81 0.00 0.07 ind:fut:2s; +aboutirent aboutir ver 5.34 25.81 0.00 0.68 ind:pas:3p; +aboutirons aboutir ver 5.34 25.81 0.01 0.00 ind:fut:1p; +aboutiront aboutir ver 5.34 25.81 0.04 0.27 ind:fut:3p; +aboutis aboutir ver m p 5.34 25.81 0.07 0.34 ind:pre:1s;ind:pre:2s;par:pas; +aboutissaient aboutir ver 5.34 25.81 0.15 1.15 ind:imp:3p; +aboutissait aboutir ver 5.34 25.81 0.03 2.50 ind:imp:3s; +aboutissant aboutir ver 5.34 25.81 0.00 1.15 par:pre; +aboutissants aboutissant nom m p 0.09 0.95 0.09 0.81 +aboutisse aboutir ver 5.34 25.81 0.08 0.41 sub:pre:1s;sub:pre:3s; +aboutissement aboutissement nom m s 0.50 4.05 0.50 4.05 +aboutissent aboutir ver 5.34 25.81 0.47 1.49 ind:pre:3p; +aboutissez aboutir ver 5.34 25.81 0.02 0.07 ind:pre:2p; +aboutissiez aboutir ver 5.34 25.81 0.00 0.07 ind:imp:2p; +aboutissions aboutir ver 5.34 25.81 0.00 0.07 ind:imp:1p; +aboutit aboutir ver 5.34 25.81 1.50 3.45 ind:pre:3s;ind:pas:3s; +aboutonnai aboutonner ver 0.00 0.07 0.00 0.07 ind:pas:1s; +aboutons abouter ver 0.00 0.14 0.00 0.07 imp:pre:1p; +aboya aboyer ver 7.43 11.82 0.00 1.42 ind:pas:3s; +aboyaient aboyer ver 7.43 11.82 0.05 0.68 ind:imp:3p; +aboyait aboyer ver 7.43 11.82 0.33 1.55 ind:imp:3s; +aboyant aboyer ver 7.43 11.82 0.18 1.28 par:pre; +aboyante aboyant adj f s 0.01 0.20 0.00 0.07 +aboyer aboyer ver 7.43 11.82 2.39 3.04 inf; +aboyeur aboyeur nom m s 0.06 0.61 0.05 0.34 +aboyeurs aboyeur nom m p 0.06 0.61 0.01 0.27 +aboyons aboyer ver 7.43 11.82 0.10 0.07 ind:pre:1p; +aboyèrent aboyer ver 7.43 11.82 0.00 0.27 ind:pas:3p; +aboyé aboyer ver m s 7.43 11.82 0.28 0.54 par:pas; +abracadabra abracadabra nom m s 0.98 0.27 0.98 0.27 +abracadabrant abracadabrant adj m s 0.26 0.68 0.03 0.20 +abracadabrante abracadabrant adj f s 0.26 0.68 0.13 0.00 +abracadabrantes abracadabrant adj f p 0.26 0.68 0.10 0.34 +abracadabrants abracadabrant adj m p 0.26 0.68 0.00 0.14 +abracadabré abracadabrer ver m s 0.01 0.00 0.01 0.00 par:pas; +abrasif abrasif nom m s 0.15 0.41 0.13 0.34 +abrasifs abrasif nom m p 0.15 0.41 0.03 0.07 +abrasion abrasion nom f s 0.19 0.14 0.19 0.14 +abrasive abrasif adj f s 0.09 0.27 0.04 0.00 +abrasé abraser ver m s 0.00 0.07 0.00 0.07 par:pas; +abraxas abraxas nom m 0.29 0.00 0.29 0.00 +abreuva abreuver ver 1.13 6.22 0.00 0.27 ind:pas:3s; +abreuvage abreuvage nom m s 0.00 0.07 0.00 0.07 +abreuvaient abreuver ver 1.13 6.22 0.00 0.27 ind:imp:3p; +abreuvait abreuver ver 1.13 6.22 0.03 0.47 ind:imp:3s; +abreuvant abreuver ver 1.13 6.22 0.01 0.34 par:pre; +abreuve abreuver ver 1.13 6.22 0.23 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abreuvent abreuver ver 1.13 6.22 0.04 0.34 ind:pre:3p; +abreuver abreuver ver 1.13 6.22 0.48 2.09 inf; +abreuvera abreuver ver 1.13 6.22 0.11 0.00 ind:fut:3s; +abreuveraient abreuver ver 1.13 6.22 0.00 0.07 cnd:pre:3p; +abreuvez abreuver ver 1.13 6.22 0.03 0.00 imp:pre:2p;ind:pre:2p; +abreuvoir abreuvoir nom m s 0.35 3.92 0.34 3.24 +abreuvoirs abreuvoir nom m p 0.35 3.92 0.01 0.68 +abreuvons abreuver ver 1.13 6.22 0.01 0.07 imp:pre:1p; +abreuvé abreuver ver m s 1.13 6.22 0.04 0.68 par:pas; +abreuvée abreuver ver f s 1.13 6.22 0.10 0.27 par:pas; +abreuvés abreuver ver m p 1.13 6.22 0.04 0.27 par:pas; +abri_refuge abri_refuge nom m s 0.00 0.07 0.00 0.07 +abri abri nom m s 25.90 56.76 22.70 51.08 +abribus abribus nom m 0.04 0.14 0.04 0.14 +abricot abricot nom m s 1.24 2.50 0.50 1.15 +abricotez abricoter ver 0.01 0.00 0.01 0.00 imp:pre:2p; +abricotier abricotier nom m s 0.02 0.41 0.02 0.14 +abricotiers abricotier nom m p 0.02 0.41 0.00 0.27 +abricotine abricotine nom f s 0.00 0.07 0.00 0.07 +abricots abricot nom m p 1.24 2.50 0.74 1.35 +abris abri nom m p 25.90 56.76 3.20 5.68 +abrita abriter ver 7.91 26.22 0.02 0.68 ind:pas:3s; +abritai abriter ver 7.91 26.22 0.00 0.07 ind:pas:1s; +abritaient abriter ver 7.91 26.22 0.14 1.49 ind:imp:3p; +abritais abriter ver 7.91 26.22 0.01 0.14 ind:imp:1s; +abritait abriter ver 7.91 26.22 0.23 4.53 ind:imp:3s; +abritant abriter ver 7.91 26.22 0.25 1.82 par:pre; +abrite abriter ver 7.91 26.22 2.09 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abritent abriter ver 7.91 26.22 0.33 1.15 ind:pre:3p; +abriter abriter ver 7.91 26.22 2.36 6.96 ind:pre:2p;inf; +abritera abriter ver 7.91 26.22 0.10 0.07 ind:fut:3s; +abriterait abriter ver 7.91 26.22 0.04 0.20 cnd:pre:3s; +abriterons abriter ver 7.91 26.22 0.03 0.00 ind:fut:1p; +abriteront abriter ver 7.91 26.22 0.01 0.07 ind:fut:3p; +abrites abriter ver 7.91 26.22 0.14 0.07 ind:pre:2s; +abritez abriter ver 7.91 26.22 1.08 0.20 imp:pre:2p;ind:pre:2p; +abritiez abriter ver 7.91 26.22 0.01 0.00 ind:imp:2p; +abritions abriter ver 7.91 26.22 0.01 0.14 ind:imp:1p; +abritâmes abriter ver 7.91 26.22 0.01 0.00 ind:pas:1p; +abritons abriter ver 7.91 26.22 0.40 0.00 imp:pre:1p;ind:pre:1p; +abritèrent abriter ver 7.91 26.22 0.00 0.07 ind:pas:3p; +abrité abriter ver m s 7.91 26.22 0.35 3.11 par:pas; +abritée abriter ver f s 7.91 26.22 0.04 1.15 par:pas; +abritées abriter ver f p 7.91 26.22 0.24 0.54 par:pas; +abrités abrité adj m p 0.17 1.08 0.03 0.07 +abrogation abrogation nom f s 0.16 0.14 0.16 0.14 +abrogent abroger ver 0.71 0.34 0.23 0.00 ind:pre:3p; +abroger abroger ver 0.71 0.34 0.09 0.07 inf; +abrogé abroger ver m s 0.71 0.34 0.11 0.00 par:pas; +abrogée abroger ver f s 0.71 0.34 0.28 0.00 par:pas; +abrogées abroger ver f p 0.71 0.34 0.00 0.14 par:pas; +abrogés abroger ver m p 0.71 0.34 0.01 0.14 par:pas; +abrège abréger ver 4.21 4.86 1.25 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abrègent abréger ver 4.21 4.86 0.22 0.34 ind:pre:3p; +abrégea abréger ver 4.21 4.86 0.02 0.14 ind:pas:3s; +abrégeai abréger ver 4.21 4.86 0.00 0.07 ind:pas:1s; +abrégeaient abréger ver 4.21 4.86 0.00 0.07 ind:imp:3p; +abrégeait abréger ver 4.21 4.86 0.00 0.20 ind:imp:3s; +abrégeant abréger ver 4.21 4.86 0.00 0.07 par:pre; +abrégeons abréger ver 4.21 4.86 0.12 0.07 imp:pre:1p; +abrégeât abréger ver 4.21 4.86 0.00 0.07 sub:imp:3s; +abréger abréger ver 4.21 4.86 1.61 1.82 inf; +abrégera abréger ver 4.21 4.86 0.01 0.00 ind:fut:3s; +abrégerai abréger ver 4.21 4.86 0.01 0.00 ind:fut:1s; +abrégerait abréger ver 4.21 4.86 0.00 0.07 cnd:pre:3s; +abrégez abréger ver 4.21 4.86 0.73 0.07 imp:pre:2p; +abrégé abréger ver m s 4.21 4.86 0.19 0.41 par:pas; +abrégée abrégé adj f s 0.20 0.41 0.13 0.20 +abrégés abrégé nom m p 0.12 0.54 0.01 0.07 +abrupt abrupt adj m s 1.36 7.43 0.54 2.23 +abrupte abrupt adj f s 1.36 7.43 0.43 2.84 +abruptement abruptement adv 0.07 2.03 0.07 2.03 +abruptes abrupt adj f p 1.36 7.43 0.24 1.55 +abrupts abrupt adj m p 1.36 7.43 0.14 0.81 +abruti abruti nom m s 25.64 6.69 19.13 4.39 +abrutie abruti nom f s 25.64 6.69 0.38 0.47 +abruties abruti adj f p 6.13 4.66 0.03 0.07 +abrutir abrutir ver 2.56 6.01 0.11 0.95 inf; +abrutira abrutir ver 2.56 6.01 0.00 0.07 ind:fut:3s; +abrutis abruti nom m p 25.64 6.69 6.10 1.82 +abrutissaient abrutir ver 2.56 6.01 0.00 0.20 ind:imp:3p; +abrutissais abrutir ver 2.56 6.01 0.00 0.07 ind:imp:1s; +abrutissait abrutir ver 2.56 6.01 0.14 0.27 ind:imp:3s; +abrutissant abrutissant adj m s 0.19 0.41 0.14 0.14 +abrutissante abrutissant adj f s 0.19 0.41 0.00 0.27 +abrutissantes abrutissant adj f p 0.19 0.41 0.02 0.00 +abrutissants abrutissant adj m p 0.19 0.41 0.03 0.00 +abrutissement abrutissement nom m s 0.13 1.42 0.13 1.42 +abrutissent abrutir ver 2.56 6.01 0.16 0.00 ind:pre:3p; +abrutisseur abrutisseur nom m s 0.00 0.07 0.00 0.07 +abrutissions abrutir ver 2.56 6.01 0.00 0.07 ind:imp:1p; +abrutit abrutir ver 2.56 6.01 0.19 0.41 ind:pre:3s;ind:pas:3s; +abréviatif abréviatif adj m s 0.00 0.07 0.00 0.07 +abréviation abréviation nom f s 0.46 0.95 0.37 0.41 +abréviations abréviation nom f p 0.46 0.95 0.09 0.54 +abscisse abscisse nom f s 0.02 0.00 0.02 0.00 +abscission abscission nom f s 0.00 0.07 0.00 0.07 +abscons abscons adj m 0.12 0.68 0.12 0.54 +absconse abscons adj f s 0.12 0.68 0.00 0.07 +absconses abscons adj f p 0.12 0.68 0.00 0.07 +absence absence nom f s 22.86 76.28 22.02 72.50 +absences absence nom f p 22.86 76.28 0.84 3.78 +absent absent adj m s 14.91 29.80 9.46 18.18 +absenta absenter ver 6.14 6.01 0.00 0.34 ind:pas:3s; +absentai absenter ver 6.14 6.01 0.00 0.07 ind:pas:1s; +absentaient absenter ver 6.14 6.01 0.00 0.14 ind:imp:3p; +absentais absenter ver 6.14 6.01 0.04 0.14 ind:imp:1s;ind:imp:2s; +absentait absenter ver 6.14 6.01 0.16 1.15 ind:imp:3s; +absentant absenter ver 6.14 6.01 0.00 0.07 par:pre; +absente absent adj f s 14.91 29.80 3.49 6.22 +absenter absenter ver 6.14 6.01 2.90 1.49 inf; +absentera absenter ver 6.14 6.01 0.03 0.14 ind:fut:3s; +absenterai absenter ver 6.14 6.01 0.03 0.07 ind:fut:1s; +absenterait absenter ver 6.14 6.01 0.00 0.07 cnd:pre:3s; +absentes absenter ver 6.14 6.01 0.07 0.00 ind:pre:2s; +absents absent adj m p 14.91 29.80 1.91 4.80 +absentèrent absenter ver 6.14 6.01 0.00 0.07 ind:pas:3p; +absenté absenter ver m s 6.14 6.01 0.89 0.34 par:pas; +absentée absenter ver f s 6.14 6.01 0.42 0.20 par:pas; +absentéisme absentéisme nom m s 0.14 0.20 0.14 0.20 +absentéiste absentéiste adj m s 0.01 0.00 0.01 0.00 +absentéiste absentéiste nom s 0.01 0.00 0.01 0.00 +absentés absenter ver m p 6.14 6.01 0.15 0.07 par:pas; +abside abside nom f s 0.00 1.62 0.00 1.55 +absides abside nom f p 0.00 1.62 0.00 0.07 +absidiales absidial adj f p 0.00 0.14 0.00 0.14 +absidiole absidiole nom f s 0.00 0.07 0.00 0.07 +absinthant absinther ver 0.00 0.07 0.00 0.07 par:pre; +absinthe absinthe nom f s 1.28 2.91 1.28 2.91 +absolu absolu adj m s 17.25 34.39 8.55 16.42 +absolue absolu adj f s 17.25 34.39 8.44 16.15 +absolues absolu adj f p 17.25 34.39 0.20 1.01 +absolument absolument adv 89.79 63.45 89.79 63.45 +absolus absolu adj m p 17.25 34.39 0.06 0.81 +absolution absolution nom f s 1.06 2.50 1.06 2.50 +absolutisme absolutisme nom m s 0.12 0.68 0.12 0.68 +absolvaient absoudre ver 2.66 3.72 0.00 0.07 ind:imp:3p; +absolvait absoudre ver 2.66 3.72 0.00 0.27 ind:imp:3s; +absolvant absolvant adj m s 0.00 0.14 0.00 0.14 +absolve absoudre ver 2.66 3.72 0.16 0.00 sub:pre:3s; +absolvent absoudre ver 2.66 3.72 0.00 0.20 ind:pre:3p; +absolves absoudre ver 2.66 3.72 0.01 0.00 sub:pre:2s; +absorba absorber ver 6.66 28.65 0.11 2.03 ind:pas:3s; +absorbables absorbable adj m p 0.00 0.07 0.00 0.07 +absorbai absorber ver 6.66 28.65 0.00 0.07 ind:pas:1s; +absorbaient absorber ver 6.66 28.65 0.04 0.68 ind:imp:3p; +absorbais absorber ver 6.66 28.65 0.00 0.27 ind:imp:1s; +absorbait absorber ver 6.66 28.65 0.20 3.11 ind:imp:3s; +absorbant absorbant adj m s 0.14 1.35 0.08 0.81 +absorbante absorbant adj f s 0.14 1.35 0.04 0.27 +absorbantes absorbant adj f p 0.14 1.35 0.01 0.20 +absorbants absorbant adj m p 0.14 1.35 0.01 0.07 +absorbe absorber ver 6.66 28.65 1.61 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +absorbent absorber ver 6.66 28.65 0.33 0.61 ind:pre:3p; +absorber absorber ver 6.66 28.65 1.86 4.53 inf; +absorbera absorber ver 6.66 28.65 0.23 0.07 ind:fut:3s; +absorberai absorber ver 6.66 28.65 0.02 0.00 ind:fut:1s; +absorberaient absorber ver 6.66 28.65 0.11 0.07 cnd:pre:3p; +absorberait absorber ver 6.66 28.65 0.04 0.14 cnd:pre:3s; +absorbeur absorbeur nom m s 0.03 0.00 0.03 0.00 +absorbez absorber ver 6.66 28.65 0.06 0.00 imp:pre:2p;ind:pre:2p; +absorbions absorber ver 6.66 28.65 0.00 0.07 ind:imp:1p; +absorbons absorber ver 6.66 28.65 0.00 0.07 ind:pre:1p; +absorbèrent absorber ver 6.66 28.65 0.01 0.41 ind:pas:3p; +absorbé absorber ver m s 6.66 28.65 1.35 7.84 par:pas; +absorbée absorber ver f s 6.66 28.65 0.40 2.30 par:pas; +absorbées absorber ver f p 6.66 28.65 0.07 0.41 par:pas; +absorbés absorber ver m p 6.66 28.65 0.16 1.69 par:pas; +absorption absorption nom f s 0.58 2.03 0.58 1.89 +absorptions absorption nom f p 0.58 2.03 0.00 0.14 +absoudrai absoudre ver 2.66 3.72 0.01 0.00 ind:fut:1s; +absoudrait absoudre ver 2.66 3.72 0.14 0.14 cnd:pre:3s; +absoudre absoudre ver 2.66 3.72 1.08 1.55 inf; +absoudriez absoudre ver 2.66 3.72 0.01 0.07 cnd:pre:2p; +absous absoudre ver m 2.66 3.72 1.15 1.08 imp:pre:2s;ind:pre:1s;par:pas;par:pas;par:pas; +absout absoudre ver 2.66 3.72 0.11 0.20 ind:pre:3s; +absoute absoute nom f s 0.00 0.14 0.00 0.14 +absoutes absoudre ver f p 2.66 3.72 0.00 0.07 par:pas; +abstînt abstenir ver 4.52 8.78 0.00 0.27 sub:imp:3s; +abstenaient abstenir ver 4.52 8.78 0.00 0.07 ind:imp:3p; +abstenais abstenir ver 4.52 8.78 0.01 0.34 ind:imp:1s; +abstenait abstenir ver 4.52 8.78 0.00 0.81 ind:imp:3s; +abstenant abstenir ver 4.52 8.78 0.12 0.41 par:pre; +abstenez abstenir ver 4.52 8.78 0.57 0.07 imp:pre:2p;ind:pre:2p; +absteniez abstenir ver 4.52 8.78 0.01 0.00 ind:imp:2p; +abstenions abstenir ver 4.52 8.78 0.00 0.07 ind:imp:1p; +abstenir abstenir ver 4.52 8.78 1.80 2.77 inf; +abstenons abstenir ver 4.52 8.78 0.02 0.20 imp:pre:1p;ind:pre:1p; +abstention abstention nom f s 0.14 1.28 0.14 1.28 +abstentionniste abstentionniste nom s 0.01 0.14 0.01 0.00 +abstentionnistes abstentionniste nom p 0.01 0.14 0.00 0.14 +abstenu abstenir ver m s 4.52 8.78 0.17 0.81 par:pas; +abstenue abstenir ver f s 4.52 8.78 0.05 0.47 par:pas; +abstenues abstenir ver f p 4.52 8.78 0.14 0.00 par:pas; +abstenus abstenir ver m p 4.52 8.78 0.00 0.14 par:pas; +abstiendrai abstenir ver 4.52 8.78 0.04 0.00 ind:fut:1s; +abstiendraient abstenir ver 4.52 8.78 0.00 0.07 cnd:pre:3p; +abstiendrais abstenir ver 4.52 8.78 0.03 0.00 cnd:pre:1s; +abstiendrait abstenir ver 4.52 8.78 0.02 0.07 cnd:pre:3s; +abstiendras abstenir ver 4.52 8.78 0.01 0.07 ind:fut:2s; +abstiendrions abstenir ver 4.52 8.78 0.00 0.14 cnd:pre:1p; +abstiendrons abstenir ver 4.52 8.78 0.12 0.00 ind:fut:1p; +abstiendront abstenir ver 4.52 8.78 0.12 0.00 ind:fut:3p; +abstienne abstenir ver 4.52 8.78 0.02 0.07 sub:pre:1s;sub:pre:3s; +abstiennent abstenir ver 4.52 8.78 0.02 0.20 ind:pre:3p; +abstiennes abstenir ver 4.52 8.78 0.02 0.00 sub:pre:2s; +abstiens abstenir ver 4.52 8.78 0.84 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +abstient abstenir ver 4.52 8.78 0.17 0.34 ind:pre:3s; +abstinence abstinence nom f s 1.62 1.62 1.60 1.42 +abstinences abstinence nom f p 1.62 1.62 0.02 0.20 +abstinent abstinent adj m s 0.11 0.00 0.10 0.00 +abstinente abstinent adj f s 0.11 0.00 0.01 0.00 +abstinrent abstenir ver 4.52 8.78 0.01 0.07 ind:pas:3p; +abstins abstenir ver 4.52 8.78 0.00 0.41 ind:pas:1s; +abstint abstenir ver 4.52 8.78 0.20 0.81 ind:pas:3s; +abstraction abstraction nom f s 0.68 2.97 0.66 2.09 +abstractions abstraction nom f p 0.68 2.97 0.03 0.88 +abstraire abstraire ver 0.27 3.18 0.02 0.74 inf; +abstrais abstraire ver 0.27 3.18 0.00 0.07 ind:pre:1s; +abstrait abstrait adj m s 1.62 11.35 0.61 3.85 +abstraite abstrait adj f s 1.62 11.35 0.69 4.80 +abstraitement abstraitement adv 0.00 0.34 0.00 0.34 +abstraites abstraire ver f p 0.27 3.18 0.11 0.20 par:pas; +abstraits abstrait adj m p 1.62 11.35 0.25 1.15 +abstrus abstrus adj m p 0.00 0.54 0.00 0.34 +abstruse abstrus adj f s 0.00 0.54 0.00 0.14 +abstruses abstrus adj f p 0.00 0.54 0.00 0.07 +absurde absurde adj s 23.59 30.95 21.56 24.80 +absurdement absurdement adv 0.14 3.72 0.14 3.72 +absurdes absurde adj p 23.59 30.95 2.03 6.15 +absurdistes absurdiste nom p 0.00 0.07 0.00 0.07 +absurdité absurdité nom f s 2.34 6.28 1.44 5.54 +absurdités absurdité nom f p 2.34 6.28 0.90 0.74 +abécédaire abécédaire nom m s 0.18 0.07 0.18 0.07 +abus abus nom m 4.75 8.58 4.75 8.58 +abusa abuser ver 19.98 14.26 0.02 0.20 ind:pas:3s; +abusai abuser ver 19.98 14.26 0.00 0.07 ind:pas:1s; +abusaient abuser ver 19.98 14.26 0.04 0.27 ind:imp:3p; +abusais abuser ver 19.98 14.26 0.03 0.27 ind:imp:1s; +abusait abuser ver 19.98 14.26 0.53 1.82 ind:imp:3s; +abusant abuser ver 19.98 14.26 0.24 0.81 par:pre; +abuse abuser ver 19.98 14.26 4.08 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abusent abuser ver 19.98 14.26 1.02 0.88 ind:pre:3p; +abuser abuser ver 19.98 14.26 5.87 4.12 inf; +abusera abuser ver 19.98 14.26 0.04 0.00 ind:fut:3s; +abuserai abuser ver 19.98 14.26 0.03 0.07 ind:fut:1s; +abuserais abuser ver 19.98 14.26 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +abuserait abuser ver 19.98 14.26 0.02 0.07 cnd:pre:3s; +abuserez abuser ver 19.98 14.26 0.01 0.07 ind:fut:2p; +abuseriez abuser ver 19.98 14.26 0.02 0.00 cnd:pre:2p; +abuses abuser ver 19.98 14.26 0.50 0.07 ind:pre:2s; +abuseur abuseur nom m s 0.04 0.00 0.04 0.00 +abusez abuser ver 19.98 14.26 1.93 0.34 imp:pre:2p;ind:pre:2p; +abusiez abuser ver 19.98 14.26 0.02 0.00 ind:imp:2p; +abusif abusif adj m s 0.85 1.82 0.37 0.61 +abusifs abusif adj m p 0.85 1.82 0.05 0.14 +abusive abusif adj f s 0.85 1.82 0.39 0.74 +abusivement abusivement adv 0.16 1.15 0.16 1.15 +abusives abusif adj f p 0.85 1.82 0.03 0.34 +abusons abuser ver 19.98 14.26 0.37 0.00 imp:pre:1p;ind:pre:1p; +abusèrent abuser ver 19.98 14.26 0.00 0.07 ind:pas:3p; +abusé abuser ver m s 19.98 14.26 4.59 2.70 par:pas; +abusée abuser ver f s 19.98 14.26 0.29 0.27 par:pas; +abusées abusé adj f p 0.20 0.74 0.03 0.00 +abusés abuser ver m p 19.98 14.26 0.22 0.34 par:pas; +abêti abêtir ver m s 0.01 1.28 0.00 0.47 par:pas; +abêties abêti adj f p 0.00 0.27 0.00 0.07 +abêtir abêtir ver 0.01 1.28 0.01 0.54 inf; +abêtis abêtir ver 0.01 1.28 0.00 0.07 ind:pre:2s; +abêtissait abêtir ver 0.01 1.28 0.00 0.14 ind:imp:3s; +abêtissement abêtissement nom m s 0.00 0.54 0.00 0.54 +abêtit abêtir ver 0.01 1.28 0.00 0.07 ind:pas:3s; +abyme abyme nom m s 0.04 0.07 0.04 0.07 +abyssal abyssal adj m s 0.11 0.74 0.03 0.34 +abyssale abyssal adj f s 0.11 0.74 0.05 0.20 +abyssales abyssal adj f p 0.11 0.74 0.02 0.20 +abysse abysse nom m s 1.07 0.41 0.53 0.07 +abysses abysse nom m p 1.07 0.41 0.54 0.34 +abyssin abyssin nom m s 0.14 0.14 0.14 0.14 +abyssinien abyssinien adj m s 0.10 0.00 0.10 0.00 +abyssinienne abyssinien nom f s 0.01 0.00 0.01 0.00 +abyssins abyssin adj m p 0.00 0.20 0.00 0.07 +acabit acabit nom m s 0.17 1.62 0.17 1.55 +acabits acabit nom m p 0.17 1.62 0.00 0.07 +acacia acacia nom m s 0.26 6.35 0.05 3.24 +acacias acacia nom m p 0.26 6.35 0.21 3.11 +acadien acadien nom m s 0.16 0.07 0.14 0.00 +acadienne acadienne nom f s 0.03 0.00 0.03 0.00 +acadiens acadien nom m p 0.16 0.07 0.01 0.07 +académicien académicien nom m s 0.35 1.55 0.14 0.74 +académiciens académicien nom m p 0.35 1.55 0.21 0.81 +académie académie nom f s 10.03 9.46 9.91 8.31 +académies académie nom f p 10.03 9.46 0.12 1.15 +académique académique adj s 1.41 1.15 0.87 0.61 +académiquement académiquement adv 0.01 0.14 0.01 0.14 +académiques académique adj p 1.41 1.15 0.54 0.54 +académisme académisme nom m s 0.00 0.27 0.00 0.27 +académisé académiser ver m s 0.00 0.07 0.00 0.07 par:pas; +acagnardai acagnarder ver 0.00 0.74 0.00 0.07 ind:pas:1s; +acagnardait acagnarder ver 0.00 0.74 0.00 0.14 ind:imp:3s; +acagnarder acagnarder ver 0.00 0.74 0.00 0.14 inf; +acagnardé acagnarder ver m s 0.00 0.74 0.00 0.34 par:pas; +acagnardée acagnarder ver f s 0.00 0.74 0.00 0.07 par:pas; +acajou acajou nom m s 0.52 5.95 0.52 5.81 +acajous acajou nom m p 0.52 5.95 0.00 0.14 +acanthe acanthe nom f s 0.04 0.61 0.04 0.27 +acanthes acanthe nom f p 0.04 0.61 0.00 0.34 +acariens acarien nom m p 0.07 0.07 0.07 0.07 +acariâtre acariâtre adj s 0.14 1.55 0.13 1.22 +acariâtres acariâtre adj f p 0.14 1.55 0.01 0.34 +accabla accabler ver 5.55 21.28 0.14 0.95 ind:pas:3s; +accablai accabler ver 5.55 21.28 0.00 0.07 ind:pas:1s; +accablaient accabler ver 5.55 21.28 0.03 1.42 ind:imp:3p; +accablais accabler ver 5.55 21.28 0.00 0.27 ind:imp:1s; +accablait accabler ver 5.55 21.28 0.22 3.11 ind:imp:3s; +accablant accablant adj m s 1.41 5.41 0.37 1.42 +accablante accablant adj f s 1.41 5.41 0.71 2.43 +accablantes accablant adj f p 1.41 5.41 0.29 0.81 +accablants accablant adj m p 1.41 5.41 0.04 0.74 +accable accabler ver 5.55 21.28 2.01 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accablement accablement nom m s 0.23 3.72 0.21 3.58 +accablements accablement nom m p 0.23 3.72 0.01 0.14 +accablent accabler ver 5.55 21.28 0.28 0.74 ind:pre:3p; +accabler accabler ver 5.55 21.28 0.65 3.58 inf; +accableraient accabler ver 5.55 21.28 0.00 0.14 cnd:pre:3p; +accablez accabler ver 5.55 21.28 0.17 0.14 imp:pre:2p;ind:pre:2p; +accablions accabler ver 5.55 21.28 0.00 0.07 ind:imp:1p; +accablât accabler ver 5.55 21.28 0.00 0.07 sub:imp:3s; +accablèrent accabler ver 5.55 21.28 0.00 0.20 ind:pas:3p; +accablé accabler ver m s 5.55 21.28 0.92 4.05 par:pas; +accablée accabler ver f s 5.55 21.28 0.60 2.23 par:pas; +accablées accabler ver f p 5.55 21.28 0.02 0.34 par:pas; +accablés accabler ver m p 5.55 21.28 0.47 1.22 par:pas; +accalmie accalmie nom f s 0.50 3.72 0.46 2.97 +accalmies accalmie nom f p 0.50 3.72 0.04 0.74 +accalmit accalmir ver 0.00 0.07 0.00 0.07 ind:pas:3s; +accapara accaparer ver 0.97 3.99 0.01 0.07 ind:pas:3s; +accaparaient accaparer ver 0.97 3.99 0.00 0.34 ind:imp:3p; +accaparait accaparer ver 0.97 3.99 0.01 0.74 ind:imp:3s; +accaparant accaparer ver 0.97 3.99 0.03 0.20 par:pre; +accaparante accaparant adj f s 0.02 0.07 0.00 0.07 +accapare accaparer ver 0.97 3.99 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accaparer accaparer ver 0.97 3.99 0.20 0.68 inf; +accaparerait accaparer ver 0.97 3.99 0.00 0.07 cnd:pre:3s; +accapareur accapareur adj m s 0.02 0.00 0.02 0.00 +accaparez accaparer ver 0.97 3.99 0.02 0.00 ind:pre:2p; +accaparé accaparer ver m s 0.97 3.99 0.30 0.68 par:pas; +accaparée accaparer ver f s 0.97 3.99 0.06 0.34 par:pas; +accaparées accaparer ver f p 0.97 3.99 0.00 0.07 par:pas; +accaparés accaparer ver m p 0.97 3.99 0.00 0.20 par:pas; +accastillage accastillage nom m s 0.04 0.20 0.04 0.14 +accastillages accastillage nom m p 0.04 0.20 0.00 0.07 +accelerando accelerando adv 0.00 0.14 0.00 0.14 +accent accent nom m s 14.56 45.54 12.98 38.31 +accenteur accenteur nom m s 0.01 0.00 0.01 0.00 +accents accent nom m p 14.56 45.54 1.58 7.23 +accentua accentuer ver 1.28 16.15 0.00 1.96 ind:pas:3s; +accentuai accentuer ver 1.28 16.15 0.00 0.07 ind:pas:1s; +accentuaient accentuer ver 1.28 16.15 0.00 1.22 ind:imp:3p; +accentuais accentuer ver 1.28 16.15 0.00 0.07 ind:imp:1s; +accentuait accentuer ver 1.28 16.15 0.01 4.05 ind:imp:3s; +accentuant accentuer ver 1.28 16.15 0.03 1.76 par:pre; +accentuation accentuation nom f s 0.06 0.14 0.06 0.14 +accentue accentuer ver 1.28 16.15 0.11 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accentuent accentuer ver 1.28 16.15 0.07 0.54 ind:pre:3p; +accentuer accentuer ver 1.28 16.15 0.67 2.03 inf; +accentuerait accentuer ver 1.28 16.15 0.01 0.07 cnd:pre:3s; +accentuez accentuer ver 1.28 16.15 0.12 0.00 imp:pre:2p;ind:pre:2p; +accentuât accentuer ver 1.28 16.15 0.00 0.07 sub:imp:3s; +accentuèrent accentuer ver 1.28 16.15 0.00 0.20 ind:pas:3p; +accentué accentuer ver m s 1.28 16.15 0.21 0.81 par:pas; +accentuée accentuer ver f s 1.28 16.15 0.03 0.95 par:pas; +accentuées accentuer ver f p 1.28 16.15 0.02 0.27 par:pas; +accentués accentuer ver m p 1.28 16.15 0.01 0.34 par:pas; +accepta accepter ver 165.84 144.66 0.82 10.54 ind:pas:3s; +acceptable acceptable adj s 3.96 4.39 3.27 3.51 +acceptables acceptable adj p 3.96 4.39 0.70 0.88 +acceptai accepter ver 165.84 144.66 0.03 3.38 ind:pas:1s; +acceptaient accepter ver 165.84 144.66 0.34 2.91 ind:imp:3p; +acceptais accepter ver 165.84 144.66 0.94 3.99 ind:imp:1s;ind:imp:2s; +acceptait accepter ver 165.84 144.66 1.48 10.00 ind:imp:3s; +acceptant accepter ver 165.84 144.66 1.35 2.97 par:pre; +acceptassent accepter ver 165.84 144.66 0.00 0.07 sub:imp:3p; +acceptasses accepter ver 165.84 144.66 0.00 0.07 sub:imp:2s; +acceptation acceptation nom f s 1.24 4.39 1.24 4.19 +acceptations acceptation nom f p 1.24 4.39 0.00 0.20 +accepte accepter ver 165.84 144.66 38.41 18.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +acceptent accepter ver 165.84 144.66 4.45 3.24 ind:pre:3p; +accepter accepter ver 165.84 144.66 43.39 36.62 inf; +acceptera accepter ver 165.84 144.66 3.98 1.96 ind:fut:3s; +accepterai accepter ver 165.84 144.66 2.73 1.22 ind:fut:1s; +accepteraient accepter ver 165.84 144.66 0.57 0.95 cnd:pre:3p; +accepterais accepter ver 165.84 144.66 2.25 1.96 cnd:pre:1s;cnd:pre:2s; +accepterait accepter ver 165.84 144.66 1.54 4.05 cnd:pre:3s; +accepteras accepter ver 165.84 144.66 0.65 0.27 ind:fut:2s; +accepterez accepter ver 165.84 144.66 0.94 0.20 ind:fut:2p; +accepteriez accepter ver 165.84 144.66 2.01 0.54 cnd:pre:2p; +accepterions accepter ver 165.84 144.66 0.03 0.34 cnd:pre:1p; +accepterons accepter ver 165.84 144.66 0.31 0.14 ind:fut:1p; +accepteront accepter ver 165.84 144.66 1.34 0.20 ind:fut:3p; +acceptes accepter ver 165.84 144.66 6.79 1.28 ind:pre:2s; +acceptez accepter ver 165.84 144.66 12.53 2.16 imp:pre:2p;ind:pre:2p; +acceptiez accepter ver 165.84 144.66 1.00 0.54 ind:imp:2p; +acception acception nom f s 0.15 0.47 0.15 0.27 +acceptions accepter ver 165.84 144.66 0.21 1.35 ind:imp:1p; +acceptâmes accepter ver 165.84 144.66 0.00 0.14 ind:pas:1p; +acceptons accepter ver 165.84 144.66 2.72 0.95 imp:pre:1p;ind:pre:1p; +acceptât accepter ver 165.84 144.66 0.01 1.42 sub:imp:3s; +acceptèrent accepter ver 165.84 144.66 0.04 0.74 ind:pas:3p; +accepté accepter ver m s 165.84 144.66 28.46 27.16 par:pas; +acceptée accepter ver f s 165.84 144.66 4.30 3.24 par:pas; +acceptées accepter ver f p 165.84 144.66 0.93 0.68 par:pas; +acceptés accepter ver m p 165.84 144.66 1.29 0.74 par:pas; +accesseurs accesseur nom m p 0.00 0.07 0.00 0.07 +accessibilité accessibilité nom f s 0.03 0.00 0.03 0.00 +accessible accessible adj s 2.06 5.74 1.49 4.12 +accessibles accessible adj p 2.06 5.74 0.57 1.62 +accession accession nom f s 0.16 1.22 0.16 1.22 +accessit accessit nom m s 0.02 0.07 0.02 0.07 +accessoire accessoire nom m s 3.87 7.30 1.11 1.08 +accessoirement accessoirement adv 0.17 0.88 0.17 0.88 +accessoires accessoire nom m p 3.87 7.30 2.76 6.22 +accessoirise accessoiriser ver 0.07 0.00 0.01 0.00 ind:pre:1s; +accessoiriser accessoiriser ver 0.07 0.00 0.07 0.00 inf; +accessoiriste accessoiriste nom s 0.62 0.14 0.51 0.00 +accessoiristes accessoiriste nom p 0.62 0.14 0.11 0.14 +accident accident nom m s 108.21 44.80 100.11 36.62 +accidente accidenter ver 0.19 0.27 0.01 0.07 ind:pre:3s; +accidentel accidentel adj m s 2.78 3.45 1.09 1.42 +accidentelle accidentel adj f s 2.78 3.45 1.44 1.28 +accidentellement accidentellement adv 3.39 0.81 3.39 0.81 +accidentelles accidentel adj f p 2.78 3.45 0.17 0.34 +accidentels accidentel adj m p 2.78 3.45 0.08 0.41 +accidenter accidenter ver 0.19 0.27 0.02 0.00 inf; +accidents accident nom m p 108.21 44.80 8.10 8.18 +accidenté accidenté nom m s 0.57 0.61 0.28 0.34 +accidentée accidenté adj f s 0.30 1.42 0.08 0.34 +accidentées accidenté adj f p 0.30 1.42 0.02 0.20 +accidentés accidenté nom m p 0.57 0.61 0.28 0.00 +acclama acclamer ver 1.75 5.81 0.00 0.34 ind:pas:3s; +acclamaient acclamer ver 1.75 5.81 0.09 0.68 ind:imp:3p; +acclamait acclamer ver 1.75 5.81 0.04 0.54 ind:imp:3s; +acclamant acclamer ver 1.75 5.81 0.00 0.27 par:pre; +acclamation acclamation nom f s 2.84 4.66 0.20 0.27 +acclamations acclamation nom f p 2.84 4.66 2.65 4.39 +acclame acclamer ver 1.75 5.81 0.19 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acclament acclamer ver 1.75 5.81 0.18 0.14 ind:pre:3p; +acclamer acclamer ver 1.75 5.81 0.20 1.01 inf; +acclamera acclamer ver 1.75 5.81 0.04 0.00 ind:fut:3s; +acclamerait acclamer ver 1.75 5.81 0.01 0.07 cnd:pre:3s; +acclameront acclamer ver 1.75 5.81 0.03 0.00 ind:fut:3p; +acclamez acclamer ver 1.75 5.81 0.25 0.00 imp:pre:2p; +acclamiez acclamer ver 1.75 5.81 0.01 0.00 ind:imp:2p; +acclamons acclamer ver 1.75 5.81 0.05 0.07 imp:pre:1p;ind:pre:1p; +acclamé acclamer ver m s 1.75 5.81 0.44 1.28 par:pas; +acclamée acclamer ver f s 1.75 5.81 0.17 0.07 par:pas; +acclamées acclamer ver f p 1.75 5.81 0.02 0.07 par:pas; +acclamés acclamer ver m p 1.75 5.81 0.04 0.47 par:pas; +acclimata acclimater ver 0.52 1.96 0.00 0.07 ind:pas:3s; +acclimatai acclimater ver 0.52 1.96 0.00 0.07 ind:pas:1s; +acclimatation acclimatation nom f s 0.14 0.81 0.14 0.81 +acclimate acclimater ver 0.52 1.96 0.01 0.20 ind:pre:1s;ind:pre:3s; +acclimatement acclimatement nom m s 0.00 0.14 0.00 0.14 +acclimatent acclimater ver 0.52 1.96 0.01 0.00 ind:pre:3p; +acclimater acclimater ver 0.52 1.96 0.45 1.08 inf; +acclimaterait acclimater ver 0.52 1.96 0.00 0.07 cnd:pre:3s; +acclimates acclimater ver 0.52 1.96 0.00 0.07 ind:pre:2s; +acclimatez acclimater ver 0.52 1.96 0.02 0.00 imp:pre:2p;ind:pre:2p; +acclimaté acclimater ver m s 0.52 1.96 0.02 0.27 par:pas; +acclimatés acclimater ver m p 0.52 1.96 0.01 0.14 par:pas; +accointance accointance nom f s 0.14 0.88 0.14 0.20 +accointances accointance nom f p 0.14 0.88 0.00 0.68 +accointé accointer ver m s 0.00 0.14 0.00 0.07 par:pas; +accointés accointer ver m p 0.00 0.14 0.00 0.07 par:pas; +accola accoler ver 0.32 2.70 0.00 0.07 ind:pas:3s; +accolade accolade nom f s 0.96 2.23 0.84 1.69 +accolades accolade nom f p 0.96 2.23 0.12 0.54 +accolait accoler ver 0.32 2.70 0.00 0.14 ind:imp:3s; +accolant accoler ver 0.32 2.70 0.14 0.00 par:pre; +accole accoler ver 0.32 2.70 0.00 0.14 ind:pre:3s; +accolement accolement nom m s 0.00 0.07 0.00 0.07 +accolent accoler ver 0.32 2.70 0.00 0.07 ind:pre:3p; +accoler accoler ver 0.32 2.70 0.00 0.27 inf; +accolerais accoler ver 0.32 2.70 0.01 0.00 cnd:pre:1s; +accolé accoler ver m s 0.32 2.70 0.03 0.74 par:pas; +accolée accoler ver f s 0.32 2.70 0.14 0.41 par:pas; +accolées accoler ver f p 0.32 2.70 0.00 0.41 par:pas; +accolés accoler ver m p 0.32 2.70 0.00 0.47 par:pas; +accommoda accommoder ver 2.25 14.19 0.00 0.68 ind:pas:3s; +accommodai accommoder ver 2.25 14.19 0.00 0.07 ind:pas:1s; +accommodaient accommoder ver 2.25 14.19 0.00 1.15 ind:imp:3p; +accommodais accommoder ver 2.25 14.19 0.01 0.27 ind:imp:1s; +accommodait accommoder ver 2.25 14.19 0.01 2.23 ind:imp:3s; +accommodant accommodant adj m s 0.41 0.47 0.22 0.14 +accommodante accommodant adj f s 0.41 0.47 0.14 0.20 +accommodantes accommodant adj f p 0.41 0.47 0.00 0.07 +accommodants accommodant adj m p 0.41 0.47 0.04 0.07 +accommodation accommodation nom f s 0.04 0.41 0.04 0.41 +accommodatrices accommodateur adj f p 0.00 0.07 0.00 0.07 +accommode accommoder ver 2.25 14.19 0.78 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accommodement accommodement nom m s 0.11 1.01 0.11 0.61 +accommodements accommodement nom m p 0.11 1.01 0.00 0.41 +accommodent accommoder ver 2.25 14.19 0.13 0.34 ind:pre:3p; +accommoder accommoder ver 2.25 14.19 0.69 4.26 inf; +accommodera accommoder ver 2.25 14.19 0.01 0.07 ind:fut:3s; +accommoderai accommoder ver 2.25 14.19 0.06 0.14 ind:fut:1s; +accommoderaient accommoder ver 2.25 14.19 0.00 0.14 cnd:pre:3p; +accommoderais accommoder ver 2.25 14.19 0.16 0.20 cnd:pre:1s; +accommoderait accommoder ver 2.25 14.19 0.11 0.27 cnd:pre:3s; +accommoderez accommoder ver 2.25 14.19 0.02 0.00 ind:fut:2p; +accommoderions accommoder ver 2.25 14.19 0.00 0.07 cnd:pre:1p; +accommoderont accommoder ver 2.25 14.19 0.01 0.20 ind:fut:3p; +accommodions accommoder ver 2.25 14.19 0.00 0.07 ind:imp:1p; +accommodons accommoder ver 2.25 14.19 0.00 0.07 ind:pre:1p; +accommodât accommoder ver 2.25 14.19 0.00 0.14 sub:imp:3s; +accommodèrent accommoder ver 2.25 14.19 0.10 0.07 ind:pas:3p; +accommodé accommoder ver m s 2.25 14.19 0.13 0.54 par:pas; +accommodée accommoder ver f s 2.25 14.19 0.03 0.27 par:pas; +accommodés accommoder ver m p 2.25 14.19 0.00 0.41 par:pas; +accompagna accompagner ver 90.56 124.46 0.15 9.46 ind:pas:3s; +accompagnai accompagner ver 90.56 124.46 0.03 1.28 ind:pas:1s; +accompagnaient accompagner ver 90.56 124.46 0.43 4.73 ind:imp:3p; +accompagnais accompagner ver 90.56 124.46 0.40 1.76 ind:imp:1s;ind:imp:2s; +accompagnait accompagner ver 90.56 124.46 2.04 15.68 ind:imp:3s; +accompagnant accompagner ver 90.56 124.46 0.61 5.00 par:pre; +accompagnateur accompagnateur nom m s 0.78 1.01 0.40 0.27 +accompagnateurs accompagnateur nom m p 0.78 1.01 0.29 0.68 +accompagnatrice accompagnateur nom f s 0.78 1.01 0.09 0.07 +accompagnatrices accompagnatrice nom f p 0.02 0.00 0.02 0.00 +accompagne accompagner ver 90.56 124.46 33.28 15.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +accompagnement accompagnement nom m s 0.65 2.57 0.61 2.50 +accompagnements accompagnement nom m p 0.65 2.57 0.03 0.07 +accompagnent accompagner ver 90.56 124.46 2.08 4.05 ind:pre:3p; +accompagner accompagner ver 90.56 124.46 24.87 22.23 ind:pre:2p;inf; +accompagnera accompagner ver 90.56 124.46 1.81 0.61 ind:fut:3s; +accompagnerai accompagner ver 90.56 124.46 1.01 0.61 ind:fut:1s; +accompagneraient accompagner ver 90.56 124.46 0.00 0.27 cnd:pre:3p; +accompagnerais accompagner ver 90.56 124.46 0.16 0.27 cnd:pre:1s;cnd:pre:2s; +accompagnerait accompagner ver 90.56 124.46 0.09 1.22 cnd:pre:3s; +accompagneras accompagner ver 90.56 124.46 0.52 0.27 ind:fut:2s; +accompagnerez accompagner ver 90.56 124.46 0.65 0.27 ind:fut:2p; +accompagneriez accompagner ver 90.56 124.46 0.12 0.00 cnd:pre:2p; +accompagnerons accompagner ver 90.56 124.46 0.25 0.00 ind:fut:1p; +accompagneront accompagner ver 90.56 124.46 0.52 0.14 ind:fut:3p; +accompagnes accompagner ver 90.56 124.46 5.48 0.68 ind:pre:2s;sub:pre:2s; +accompagnez accompagner ver 90.56 124.46 4.41 0.95 imp:pre:2p;ind:pre:2p; +accompagniez accompagner ver 90.56 124.46 0.45 0.07 ind:imp:2p;sub:pre:2p; +accompagnions accompagner ver 90.56 124.46 0.02 0.00 ind:imp:1p; +accompagnâmes accompagner ver 90.56 124.46 0.00 0.14 ind:pas:1p; +accompagnons accompagner ver 90.56 124.46 0.73 0.27 imp:pre:1p;ind:pre:1p; +accompagnât accompagner ver 90.56 124.46 0.00 0.54 sub:imp:3s; +accompagnèrent accompagner ver 90.56 124.46 0.00 0.95 ind:pas:3p; +accompagné accompagner ver m s 90.56 124.46 5.67 21.49 par:pas; +accompagnée accompagner ver f s 90.56 124.46 3.67 9.93 par:pas; +accompagnées accompagner ver f p 90.56 124.46 0.10 2.03 par:pas; +accompagnés accompagner ver m p 90.56 124.46 1.00 4.46 par:pas; +accomplît accomplir ver 25.00 55.20 0.00 0.20 sub:imp:3s; +accompli accomplir ver m s 25.00 55.20 5.98 9.59 par:pas; +accomplie accompli adj f s 4.79 10.54 3.00 3.04 +accomplies accomplir ver f p 25.00 55.20 0.23 1.08 par:pas; +accomplir accomplir ver 25.00 55.20 9.31 22.23 inf; +accomplira accomplir ver 25.00 55.20 0.55 0.61 ind:fut:3s; +accomplirai accomplir ver 25.00 55.20 0.33 0.14 ind:fut:1s; +accompliraient accomplir ver 25.00 55.20 0.01 0.20 cnd:pre:3p; +accomplirais accomplir ver 25.00 55.20 0.00 0.14 cnd:pre:1s; +accomplirait accomplir ver 25.00 55.20 0.12 0.47 cnd:pre:3s; +accompliras accomplir ver 25.00 55.20 0.05 0.00 ind:fut:2s; +accomplirent accomplir ver 25.00 55.20 0.01 0.27 ind:pas:3p; +accomplirez accomplir ver 25.00 55.20 0.09 0.14 ind:fut:2p; +accomplirons accomplir ver 25.00 55.20 0.17 0.14 ind:fut:1p; +accompliront accomplir ver 25.00 55.20 0.04 0.07 ind:fut:3p; +accomplis accomplir ver m p 25.00 55.20 1.51 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +accomplissaient accomplir ver 25.00 55.20 0.00 0.68 ind:imp:3p; +accomplissais accomplir ver 25.00 55.20 0.02 0.74 ind:imp:1s; +accomplissait accomplir ver 25.00 55.20 0.05 3.78 ind:imp:3s; +accomplissant accomplir ver 25.00 55.20 0.17 2.36 par:pre; +accomplisse accomplir ver 25.00 55.20 1.04 0.95 sub:pre:1s;sub:pre:3s; +accomplissement accomplissement nom m s 1.50 4.46 1.27 4.26 +accomplissements accomplissement nom m p 1.50 4.46 0.22 0.20 +accomplissent accomplir ver 25.00 55.20 1.12 0.95 ind:pre:3p; +accomplissez accomplir ver 25.00 55.20 0.54 0.00 imp:pre:2p;ind:pre:2p; +accomplissiez accomplir ver 25.00 55.20 0.02 0.00 ind:imp:2p; +accomplissions accomplir ver 25.00 55.20 0.16 0.34 ind:imp:1p; +accomplissons accomplir ver 25.00 55.20 0.28 0.14 imp:pre:1p;ind:pre:1p; +accomplit accomplir ver 25.00 55.20 2.14 4.73 ind:pre:3s;ind:pas:3s; +accord accord nom m s 766.20 136.15 761.77 124.66 +accorda accorder ver 52.27 67.84 0.38 2.97 ind:pas:3s; +accordai accorder ver 52.27 67.84 0.00 0.54 ind:pas:1s; +accordaient accorder ver 52.27 67.84 0.17 2.43 ind:imp:3p; +accordailles accordailles nom f p 0.00 0.07 0.00 0.07 +accordais accorder ver 52.27 67.84 0.44 1.55 ind:imp:1s;ind:imp:2s; +accordait accorder ver 52.27 67.84 0.70 9.66 ind:imp:3s; +accordant accorder ver 52.27 67.84 0.24 1.76 par:pre; +accordas accorder ver 52.27 67.84 0.01 0.07 ind:pas:2s; +accordassent accorder ver 52.27 67.84 0.00 0.14 sub:imp:3p; +accorde accorder ver 52.27 67.84 17.04 11.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +accordement accordement nom m s 0.00 0.07 0.00 0.07 +accordent accorder ver 52.27 67.84 1.31 2.50 ind:pre:3p; +accorder accorder ver 52.27 67.84 10.59 14.73 inf; +accordera accorder ver 52.27 67.84 0.98 0.14 ind:fut:3s; +accorderai accorder ver 52.27 67.84 0.46 0.00 ind:fut:1s; +accorderaient accorder ver 52.27 67.84 0.00 0.20 cnd:pre:3p; +accorderais accorder ver 52.27 67.84 0.24 0.14 cnd:pre:1s;cnd:pre:2s; +accorderait accorder ver 52.27 67.84 0.08 0.74 cnd:pre:3s; +accorderas accorder ver 52.27 67.84 0.06 0.07 ind:fut:2s; +accorderez accorder ver 52.27 67.84 0.52 0.20 ind:fut:2p; +accorderiez accorder ver 52.27 67.84 0.14 0.07 cnd:pre:2p; +accorderons accorder ver 52.27 67.84 0.14 0.00 ind:fut:1p; +accorderont accorder ver 52.27 67.84 0.14 0.20 ind:fut:3p; +accordes accorder ver 52.27 67.84 1.23 0.07 ind:pre:2s; +accordeur accordeur nom m s 0.25 0.61 0.25 0.61 +accordez accorder ver 52.27 67.84 6.00 0.81 imp:pre:2p;ind:pre:2p; +accordiez accorder ver 52.27 67.84 0.30 0.00 ind:imp:2p;sub:pre:2p; +accordions accorder ver 52.27 67.84 0.05 0.20 ind:imp:1p; +accordo accordo nom m s 0.01 0.07 0.01 0.07 +accordons accorder ver 52.27 67.84 0.75 0.47 imp:pre:1p;ind:pre:1p; +accordât accorder ver 52.27 67.84 0.00 0.88 sub:imp:3s; +accords accord nom m p 766.20 136.15 4.42 11.49 +accordèrent accorder ver 52.27 67.84 0.01 0.54 ind:pas:3p; +accordé accorder ver m s 52.27 67.84 6.87 7.43 par:pas; +accordée accorder ver f s 52.27 67.84 2.23 4.93 par:pas; +accordées accorder ver f p 52.27 67.84 0.36 1.22 par:pas; +accordéon accordéon nom m s 3.24 5.47 3.02 4.80 +accordéoniste accordéoniste nom s 0.26 1.69 0.26 1.42 +accordéonistes accordéoniste nom p 0.26 1.69 0.00 0.27 +accordéons accordéon nom m p 3.24 5.47 0.22 0.68 +accordés accorder ver m p 52.27 67.84 0.85 1.42 par:pas; +accore accore adj f s 0.00 0.14 0.00 0.14 +accores accore nom m p 0.00 0.07 0.00 0.07 +accort accort adj m s 0.03 0.68 0.01 0.20 +accorte accort adj f s 0.03 0.68 0.02 0.27 +accortes accort adj f p 0.03 0.68 0.00 0.14 +accorts accort adj m p 0.03 0.68 0.00 0.07 +accosta accoster ver 1.86 4.19 0.11 0.54 ind:pas:3s; +accostage accostage nom m s 0.47 0.88 0.47 0.88 +accostaient accoster ver 1.86 4.19 0.00 0.14 ind:imp:3p; +accostais accoster ver 1.86 4.19 0.00 0.07 ind:imp:1s; +accostait accoster ver 1.86 4.19 0.11 0.47 ind:imp:3s; +accostant accoster ver 1.86 4.19 0.01 0.27 par:pre; +accoste accoster ver 1.86 4.19 0.27 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accostent accoster ver 1.86 4.19 0.13 0.27 ind:pre:3p; +accoster accoster ver 1.86 4.19 0.67 1.35 inf; +accosterez accoster ver 1.86 4.19 0.03 0.00 ind:fut:2p; +accosterons accoster ver 1.86 4.19 0.01 0.00 ind:fut:1p; +accostez accoster ver 1.86 4.19 0.14 0.00 imp:pre:2p;ind:pre:2p; +accostiez accoster ver 1.86 4.19 0.01 0.07 ind:imp:2p; +accostons accoster ver 1.86 4.19 0.01 0.00 imp:pre:1p; +accosté accoster ver m s 1.86 4.19 0.23 0.27 par:pas; +accostée accoster ver f s 1.86 4.19 0.15 0.14 par:pas; +accostées accoster ver f p 1.86 4.19 0.00 0.07 par:pas; +accota accoter ver 0.00 2.43 0.00 0.27 ind:pas:3s; +accotaient accoter ver 0.00 2.43 0.00 0.14 ind:imp:3p; +accotait accoter ver 0.00 2.43 0.00 0.14 ind:imp:3s; +accotant accoter ver 0.00 2.43 0.00 0.34 par:pre; +accote accoter ver 0.00 2.43 0.00 0.14 ind:pre:3s; +accotement accotement nom m s 0.01 1.42 0.01 1.08 +accotements accotement nom m p 0.01 1.42 0.00 0.34 +accotent accoter ver 0.00 2.43 0.00 0.07 ind:pre:3p; +accoter accoter ver 0.00 2.43 0.00 0.07 inf; +accotoirs accotoir nom m p 0.00 0.07 0.00 0.07 +accotons accoter ver 0.00 2.43 0.00 0.07 ind:pre:1p; +accotèrent accoter ver 0.00 2.43 0.00 0.07 ind:pas:3p; +accoté accoter ver m s 0.00 2.43 0.00 0.54 par:pas; +accotée accoter ver f s 0.00 2.43 0.00 0.27 par:pas; +accotées accoter ver f p 0.00 2.43 0.00 0.14 par:pas; +accotés accoter ver m p 0.00 2.43 0.00 0.20 par:pas; +accoucha accoucher ver 16.49 7.43 0.14 0.54 ind:pas:3s; +accouchaient accoucher ver 16.49 7.43 0.03 0.20 ind:imp:3p; +accouchais accoucher ver 16.49 7.43 0.05 0.00 ind:imp:1s; +accouchait accoucher ver 16.49 7.43 0.17 0.41 ind:imp:3s; +accouchant accoucher ver 16.49 7.43 0.58 0.00 par:pre; +accouche accoucher ver 16.49 7.43 4.54 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accouchement accouchement nom m s 5.96 3.92 5.47 3.24 +accouchements accouchement nom m p 5.96 3.92 0.48 0.68 +accouchent accoucher ver 16.49 7.43 0.08 0.14 ind:pre:3p; +accoucher accoucher ver 16.49 7.43 6.56 3.51 inf; +accouchera accoucher ver 16.49 7.43 0.04 0.00 ind:fut:3s; +accoucherait accoucher ver 16.49 7.43 0.16 0.07 cnd:pre:3s; +accoucheras accoucher ver 16.49 7.43 0.14 0.00 ind:fut:2s; +accouches accoucher ver 16.49 7.43 0.46 0.20 ind:pre:2s; +accoucheur accoucheur nom m s 0.19 0.81 0.06 0.47 +accoucheurs accoucheur nom m p 0.19 0.81 0.00 0.14 +accoucheuse accoucheur nom f s 0.19 0.81 0.13 0.20 +accouchez accoucher ver 16.49 7.43 0.29 0.00 imp:pre:2p;ind:pre:2p; +accouché accoucher ver m s 16.49 7.43 3.08 1.08 par:pas; +accouchée accoucher ver f s 16.49 7.43 0.16 0.00 par:pas; +accouchées accouchée nom f p 0.39 1.15 0.37 0.34 +accouchés accoucher ver m p 16.49 7.43 0.01 0.07 par:pas; +accouda accouder ver 0.34 17.70 0.00 2.97 ind:pas:3s; +accoudai accouder ver 0.34 17.70 0.00 0.47 ind:pas:1s; +accoudaient accouder ver 0.34 17.70 0.00 0.27 ind:imp:3p; +accoudais accouder ver 0.34 17.70 0.00 0.20 ind:imp:1s; +accoudait accouder ver 0.34 17.70 0.00 0.61 ind:imp:3s; +accoudant accouder ver 0.34 17.70 0.00 0.95 par:pre; +accoude accouder ver 0.34 17.70 0.02 1.22 ind:pre:3s; +accouder accouder ver 0.34 17.70 0.01 1.42 inf; +accoudions accouder ver 0.34 17.70 0.00 0.07 ind:imp:1p; +accoudoir accoudoir nom m s 0.46 5.20 0.40 2.23 +accoudoirs accoudoir nom m p 0.46 5.20 0.06 2.97 +accoudons accouder ver 0.34 17.70 0.00 0.07 ind:pre:1p; +accoudèrent accouder ver 0.34 17.70 0.00 0.27 ind:pas:3p; +accoudé accouder ver m s 0.34 17.70 0.25 5.00 par:pas; +accoudée accouder ver f s 0.34 17.70 0.03 2.50 par:pas; +accoudées accouder ver f p 0.34 17.70 0.00 0.14 par:pas; +accoudés accouder ver m p 0.34 17.70 0.03 1.55 par:pas; +accoupla accoupler ver 2.11 3.24 0.01 0.07 ind:pas:3s; +accouplaient accoupler ver 2.11 3.24 0.01 0.27 ind:imp:3p; +accouplais accoupler ver 2.11 3.24 0.00 0.07 ind:imp:1s; +accouplait accoupler ver 2.11 3.24 0.01 0.20 ind:imp:3s; +accouplant accoupler ver 2.11 3.24 0.06 0.07 par:pre; +accouple accoupler ver 2.11 3.24 0.34 0.07 ind:pre:1s;ind:pre:3s; +accouplement accouplement nom m s 0.78 2.50 0.72 1.69 +accouplements accouplement nom m p 0.78 2.50 0.05 0.81 +accouplent accoupler ver 2.11 3.24 0.49 0.34 ind:pre:3p; +accoupler accoupler ver 2.11 3.24 0.81 0.74 inf; +accouplera accoupler ver 2.11 3.24 0.05 0.00 ind:fut:3s; +accouplerait accoupler ver 2.11 3.24 0.00 0.07 cnd:pre:3s; +accoupleront accoupler ver 2.11 3.24 0.03 0.00 ind:fut:3p; +accouplèrent accoupler ver 2.11 3.24 0.00 0.07 ind:pas:3p; +accouplé accoupler ver m s 2.11 3.24 0.06 0.27 par:pas; +accouplée accoupler ver f s 2.11 3.24 0.01 0.07 par:pas; +accouplées accoupler ver f p 2.11 3.24 0.11 0.20 par:pas; +accouplés accoupler ver m p 2.11 3.24 0.12 0.74 par:pas; +accourût accourir ver 5.17 19.05 0.00 0.07 sub:imp:3s; +accouraient accourir ver 5.17 19.05 0.04 1.49 ind:imp:3p; +accourais accourir ver 5.17 19.05 0.01 0.14 ind:imp:1s; +accourait accourir ver 5.17 19.05 0.16 2.43 ind:imp:3s; +accourant accourir ver 5.17 19.05 0.02 0.34 par:pre; +accourcissant accourcir ver 0.00 0.07 0.00 0.07 par:pre; +accoure accourir ver 5.17 19.05 0.15 0.14 sub:pre:1s;sub:pre:3s; +accourent accourir ver 5.17 19.05 0.32 0.81 ind:pre:3p; +accoures accourir ver 5.17 19.05 0.01 0.00 sub:pre:2s; +accourez accourir ver 5.17 19.05 0.37 0.14 imp:pre:2p;ind:pre:2p; +accouriez accourir ver 5.17 19.05 0.01 0.00 ind:imp:2p; +accourir accourir ver 5.17 19.05 0.57 2.84 inf; +accourons accourir ver 5.17 19.05 0.29 0.07 ind:pre:1p; +accourra accourir ver 5.17 19.05 0.05 0.07 ind:fut:3s; +accourrai accourir ver 5.17 19.05 0.03 0.07 ind:fut:1s; +accourraient accourir ver 5.17 19.05 0.00 0.14 cnd:pre:3p; +accourrais accourir ver 5.17 19.05 0.02 0.00 cnd:pre:1s; +accourrait accourir ver 5.17 19.05 0.04 0.20 cnd:pre:3s; +accourront accourir ver 5.17 19.05 0.04 0.07 ind:fut:3p; +accours accourir ver 5.17 19.05 0.70 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +accourt accourir ver 5.17 19.05 0.91 2.57 ind:pre:3s; +accouru accourir ver m s 5.17 19.05 0.60 1.82 par:pas; +accourue accourir ver f s 5.17 19.05 0.01 0.47 par:pas; +accourues accourir ver f p 5.17 19.05 0.14 0.41 par:pas; +accoururent accourir ver 5.17 19.05 0.21 0.74 ind:pas:3p; +accourus accourir ver m p 5.17 19.05 0.34 1.69 ind:pas:1s;par:pas; +accourussent accourir ver 5.17 19.05 0.00 0.07 sub:imp:3p; +accourut accourir ver 5.17 19.05 0.14 1.96 ind:pas:3s; +accoutre accoutrer ver 0.06 0.54 0.00 0.07 ind:pre:3s; +accoutrement accoutrement nom m s 1.29 2.70 1.19 2.09 +accoutrements accoutrement nom m p 1.29 2.70 0.11 0.61 +accoutré accoutrer ver m s 0.06 0.54 0.04 0.27 par:pas; +accoutrée accoutré adj f s 0.02 0.41 0.00 0.20 +accoutrés accoutrer ver m p 0.06 0.54 0.02 0.14 par:pas; +accoutuma accoutumer ver 0.89 9.12 0.00 0.07 ind:pas:3s; +accoutumai accoutumer ver 0.89 9.12 0.00 0.07 ind:pas:1s; +accoutumaient accoutumer ver 0.89 9.12 0.00 0.20 ind:imp:3p; +accoutumais accoutumer ver 0.89 9.12 0.00 0.07 ind:imp:1s; +accoutumait accoutumer ver 0.89 9.12 0.00 0.20 ind:imp:3s; +accoutumance accoutumance nom f s 0.30 1.28 0.20 1.28 +accoutumances accoutumance nom f p 0.30 1.28 0.10 0.00 +accoutumant accoutumer ver 0.89 9.12 0.00 0.14 par:pre; +accoutume accoutumer ver 0.89 9.12 0.03 0.54 ind:pre:1s;ind:pre:3s; +accoutument accoutumer ver 0.89 9.12 0.00 0.20 ind:pre:3p; +accoutumer accoutumer ver 0.89 9.12 0.33 1.08 inf; +accoutumerait accoutumer ver 0.89 9.12 0.00 0.07 cnd:pre:3s; +accoutumé accoutumer ver m s 0.89 9.12 0.39 3.58 par:pas; +accoutumée accoutumer ver f s 0.89 9.12 0.11 1.35 par:pas; +accoutumées accoutumé adj f p 0.26 5.00 0.14 0.07 +accoutumés accoutumer ver m p 0.89 9.12 0.02 1.22 par:pas; +accouvée accouver ver f s 0.00 0.07 0.00 0.07 par:pas; +accrût accroître ver 3.51 11.15 0.00 0.07 sub:imp:3s; +accras accra nom m p 0.10 0.00 0.10 0.00 +accro accro adj m s 6.81 0.68 6.22 0.61 +accroît accroître ver 3.51 11.15 1.12 1.76 ind:pre:3s; +accroîtra accroître ver 3.51 11.15 0.12 0.00 ind:fut:3s; +accroîtrait accroître ver 3.51 11.15 0.01 0.00 cnd:pre:3s; +accroître accroître ver 3.51 11.15 1.46 3.99 inf; +accroîtront accroître ver 3.51 11.15 0.01 0.07 ind:fut:3p; +accroc accroc nom m s 1.90 3.11 1.67 2.57 +accrocha accrocher ver 51.56 99.93 0.02 5.68 ind:pas:3s; +accrochage accrochage nom m s 2.06 1.49 1.44 0.88 +accrochages accrochage nom m p 2.06 1.49 0.62 0.61 +accrochai accrocher ver 51.56 99.93 0.00 1.01 ind:pas:1s; +accrochaient accrocher ver 51.56 99.93 0.06 4.73 ind:imp:3p; +accrochais accrocher ver 51.56 99.93 0.47 1.01 ind:imp:1s;ind:imp:2s; +accrochait accrocher ver 51.56 99.93 0.56 10.34 ind:imp:3s; +accrochant accrocher ver 51.56 99.93 0.43 4.59 par:pre; +accroche_coeur accroche_coeur nom m s 0.00 0.74 0.00 0.34 +accroche_coeur accroche_coeur nom m p 0.00 0.74 0.00 0.41 +accroche accrocher ver 51.56 99.93 16.39 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accrochent accrocher ver 51.56 99.93 1.37 2.64 ind:pre:3p; +accrocher accrocher ver 51.56 99.93 10.46 14.32 inf; +accrochera accrocher ver 51.56 99.93 0.15 0.07 ind:fut:3s; +accrocherai accrocher ver 51.56 99.93 0.38 0.14 ind:fut:1s; +accrocheraient accrocher ver 51.56 99.93 0.00 0.07 cnd:pre:3p; +accrocherais accrocher ver 51.56 99.93 0.04 0.20 cnd:pre:1s; +accrocherait accrocher ver 51.56 99.93 0.04 0.07 cnd:pre:3s; +accrocherez accrocher ver 51.56 99.93 0.17 0.00 ind:fut:2p; +accrocheriez accrocher ver 51.56 99.93 0.00 0.07 cnd:pre:2p; +accrocheront accrocher ver 51.56 99.93 0.02 0.00 ind:fut:3p; +accroches accrocher ver 51.56 99.93 2.09 0.07 ind:pre:2s;sub:pre:2s; +accrocheur accrocheur adj m s 0.59 0.34 0.55 0.14 +accrocheurs accrocheur adj m p 0.59 0.34 0.03 0.14 +accrocheuse accrocheur adj f s 0.59 0.34 0.02 0.00 +accrocheuses accrocheur adj f p 0.59 0.34 0.00 0.07 +accrochez accrocher ver 51.56 99.93 8.03 0.27 imp:pre:2p;ind:pre:2p; +accrochiez accrocher ver 51.56 99.93 0.17 0.00 ind:imp:2p; +accrochions accrocher ver 51.56 99.93 0.02 0.47 ind:imp:1p; +accrochons accrocher ver 51.56 99.93 0.12 0.07 imp:pre:1p;ind:pre:1p; +accrochât accrocher ver 51.56 99.93 0.00 0.14 sub:imp:3s; +accrochèrent accrocher ver 51.56 99.93 0.02 0.61 ind:pas:3p; +accroché accrocher ver m s 51.56 99.93 6.13 15.95 par:pas; +accrochée accrocher ver f s 51.56 99.93 2.06 9.86 par:pas; +accrochées accrocher ver f p 51.56 99.93 0.80 5.81 par:pas; +accrochés accrocher ver m p 51.56 99.93 1.56 8.58 par:pas; +accrocs accroc nom m p 1.90 3.11 0.23 0.54 +accroire accroire ver 0.02 0.54 0.02 0.54 inf; +accrois accroître ver 3.51 11.15 0.01 0.07 ind:pre:1s; +accroissaient accroître ver 3.51 11.15 0.01 0.20 ind:imp:3p; +accroissait accroître ver 3.51 11.15 0.00 0.95 ind:imp:3s; +accroissant accroître ver 3.51 11.15 0.04 0.14 par:pre; +accroisse accroître ver 3.51 11.15 0.00 0.07 sub:pre:3s; +accroissement accroissement nom m s 0.41 1.28 0.41 1.28 +accroissent accroître ver 3.51 11.15 0.04 0.27 ind:pre:3p; +accroissez accroître ver 3.51 11.15 0.04 0.00 imp:pre:2p;ind:pre:2p; +accros accro nom m p 2.56 0.07 0.90 0.07 +accroupi accroupir ver m s 2.00 24.93 0.72 8.24 par:pas; +accroupie accroupir ver f s 2.00 24.93 0.47 3.31 par:pas; +accroupies accroupir ver f p 2.00 24.93 0.00 0.81 par:pas; +accroupir accroupir ver 2.00 24.93 0.09 2.70 inf; +accroupirent accroupir ver 2.00 24.93 0.00 0.47 ind:pas:3p; +accroupis accroupir ver m p 2.00 24.93 0.23 2.84 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +accroupissaient accroupir ver 2.00 24.93 0.00 0.27 ind:imp:3p; +accroupissais accroupir ver 2.00 24.93 0.01 0.07 ind:imp:1s; +accroupissait accroupir ver 2.00 24.93 0.15 0.07 ind:imp:3s; +accroupissant accroupir ver 2.00 24.93 0.00 0.34 par:pre; +accroupisse accroupir ver 2.00 24.93 0.01 0.07 sub:pre:1s;sub:pre:3s; +accroupissement accroupissement nom m s 0.00 0.20 0.00 0.20 +accroupissent accroupir ver 2.00 24.93 0.02 0.34 ind:pre:3p; +accroupissons accroupir ver 2.00 24.93 0.00 0.14 ind:pre:1p; +accroupit accroupir ver 2.00 24.93 0.29 5.27 ind:pre:3s;ind:pas:3s; +accru accroître ver m s 3.51 11.15 0.39 1.08 par:pas; +accrédita accréditer ver 0.36 1.55 0.00 0.07 ind:pas:3s; +accréditaient accréditer ver 0.36 1.55 0.01 0.07 ind:imp:3p; +accréditait accréditer ver 0.36 1.55 0.00 0.07 ind:imp:3s; +accréditant accréditer ver 0.36 1.55 0.00 0.07 par:pre; +accréditation accréditation nom f s 0.27 0.00 0.19 0.00 +accréditations accréditation nom f p 0.27 0.00 0.07 0.00 +accréditer accréditer ver 0.36 1.55 0.03 0.74 inf; +accréditif accréditif nom m s 0.00 0.07 0.00 0.07 +accrédité accrédité adj m s 0.14 0.27 0.07 0.20 +accréditée accréditer ver f s 0.36 1.55 0.04 0.14 par:pas; +accrédités accréditer ver m p 0.36 1.55 0.23 0.07 par:pas; +accrue accru adj f s 0.57 3.04 0.29 2.09 +accrues accroître ver f p 3.51 11.15 0.10 0.20 par:pas; +accrurent accroître ver 3.51 11.15 0.01 0.27 ind:pas:3p; +accrus accroître ver m p 3.51 11.15 0.04 0.14 par:pas; +accrut accroître ver 3.51 11.15 0.02 0.81 ind:pas:3s; +accrétion accrétion nom f s 0.03 0.00 0.03 0.00 +accède accéder ver 8.58 12.97 0.95 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +accèdent accéder ver 8.58 12.97 0.06 0.41 ind:pre:3p; +accèdes accéder ver 8.58 12.97 0.04 0.00 ind:pre:2s; +accès accès nom m 29.53 23.78 29.53 23.78 +accu accu nom m s 0.11 0.34 0.00 0.07 +accéda accéder ver 8.58 12.97 0.03 0.34 ind:pas:3s; +accédai accéder ver 8.58 12.97 0.00 0.14 ind:pas:1s; +accédaient accéder ver 8.58 12.97 0.00 0.34 ind:imp:3p; +accédais accéder ver 8.58 12.97 0.04 0.20 ind:imp:1s; +accédait accéder ver 8.58 12.97 0.22 2.70 ind:imp:3s; +accédant accéder ver 8.58 12.97 0.03 0.20 par:pre; +accéder accéder ver 8.58 12.97 6.29 5.81 inf; +accédera accéder ver 8.58 12.97 0.05 0.07 ind:fut:3s; +accéderai accéder ver 8.58 12.97 0.03 0.00 ind:fut:1s; +accéderaient accéder ver 8.58 12.97 0.00 0.14 cnd:pre:3p; +accéderais accéder ver 8.58 12.97 0.02 0.14 cnd:pre:1s; +accéderait accéder ver 8.58 12.97 0.01 0.07 cnd:pre:3s; +accéderas accéder ver 8.58 12.97 0.02 0.00 ind:fut:2s; +accédez accéder ver 8.58 12.97 0.11 0.00 imp:pre:2p;ind:pre:2p; +accédâmes accéder ver 8.58 12.97 0.00 0.07 ind:pas:1p; +accédons accéder ver 8.58 12.97 0.00 0.20 ind:pre:1p; +accédé accéder ver m s 8.58 12.97 0.68 0.74 par:pas; +accueil accueil nom m s 13.83 16.42 13.83 16.22 +accueillît accueillir ver 31.98 54.73 0.00 0.20 sub:imp:3s; +accueillaient accueillir ver 31.98 54.73 0.00 1.08 ind:imp:3p; +accueillais accueillir ver 31.98 54.73 0.26 0.34 ind:imp:1s;ind:imp:2s; +accueillait accueillir ver 31.98 54.73 0.42 5.88 ind:imp:3s; +accueillant accueillant adj m s 2.07 5.07 1.21 1.82 +accueillante accueillant adj f s 2.07 5.07 0.47 2.09 +accueillantes accueillant adj f p 2.07 5.07 0.14 0.27 +accueillants accueillant adj m p 2.07 5.07 0.25 0.88 +accueille accueillir ver 31.98 54.73 4.58 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accueillent accueillir ver 31.98 54.73 0.90 1.76 ind:pre:3p; +accueillera accueillir ver 31.98 54.73 1.07 0.47 ind:fut:3s; +accueillerai accueillir ver 31.98 54.73 0.25 0.07 ind:fut:1s; +accueilleraient accueillir ver 31.98 54.73 0.17 0.00 cnd:pre:3p; +accueillerait accueillir ver 31.98 54.73 0.16 0.74 cnd:pre:3s; +accueilleras accueillir ver 31.98 54.73 0.01 0.00 ind:fut:2s; +accueillerez accueillir ver 31.98 54.73 0.24 0.07 ind:fut:2p; +accueilleriez accueillir ver 31.98 54.73 0.02 0.00 cnd:pre:2p; +accueillerons accueillir ver 31.98 54.73 0.13 0.07 ind:fut:1p; +accueilleront accueillir ver 31.98 54.73 0.10 0.27 ind:fut:3p; +accueilles accueillir ver 31.98 54.73 0.22 0.07 ind:pre:2s; +accueillez accueillir ver 31.98 54.73 0.97 0.14 imp:pre:2p;ind:pre:2p; +accueilli accueillir ver m s 31.98 54.73 3.79 7.91 par:pas; +accueillie accueillir ver f s 31.98 54.73 0.65 2.23 par:pas; +accueillies accueillir ver f p 31.98 54.73 0.05 0.61 par:pas; +accueillir accueillir ver 31.98 54.73 14.39 13.99 inf; +accueillirent accueillir ver 31.98 54.73 0.03 1.49 ind:pas:3p; +accueillis accueillir ver m p 31.98 54.73 0.98 3.18 ind:pas:1s;par:pas; +accueillit accueillir ver 31.98 54.73 0.50 6.69 ind:pas:3s; +accueillons accueillir ver 31.98 54.73 1.88 0.07 imp:pre:1p;ind:pre:1p; +accueils accueil nom m p 13.83 16.42 0.00 0.20 +accula acculer ver 1.03 4.93 0.00 0.07 ind:pas:3s; +acculaient acculer ver 1.03 4.93 0.00 0.20 ind:imp:3p; +acculais acculer ver 1.03 4.93 0.00 0.14 ind:imp:1s; +acculait acculer ver 1.03 4.93 0.00 0.27 ind:imp:3s; +acculant acculer ver 1.03 4.93 0.00 0.14 par:pre; +accule acculer ver 1.03 4.93 0.29 0.14 ind:pre:1s;ind:pre:3s; +acculent acculer ver 1.03 4.93 0.01 0.14 ind:pre:3p; +acculer acculer ver 1.03 4.93 0.13 0.88 inf; +acculera acculer ver 1.03 4.93 0.01 0.00 ind:fut:3s; +acculeraient acculer ver 1.03 4.93 0.00 0.07 cnd:pre:3p; +acculez acculer ver 1.03 4.93 0.04 0.00 imp:pre:2p;ind:pre:2p; +acculât acculer ver 1.03 4.93 0.00 0.07 sub:imp:3s; +accélère accélérer ver 15.78 17.97 7.32 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accélèrent accélérer ver 15.78 17.97 0.23 0.54 ind:pre:3p; +acculèrent acculer ver 1.03 4.93 0.00 0.07 ind:pas:3p; +accélères accélérer ver 15.78 17.97 0.31 0.07 ind:pre:2s;sub:pre:2s; +acculturation acculturation nom f s 0.01 0.00 0.01 0.00 +acculé acculer ver m s 1.03 4.93 0.43 1.76 par:pas; +acculée acculer ver f s 1.03 4.93 0.04 0.34 par:pas; +acculées acculer ver f p 1.03 4.93 0.01 0.07 par:pas; +accéléra accélérer ver 15.78 17.97 0.14 1.96 ind:pas:3s; +accélérai accélérer ver 15.78 17.97 0.00 0.34 ind:pas:1s; +accéléraient accélérer ver 15.78 17.97 0.00 0.41 ind:imp:3p; +accélérais accélérer ver 15.78 17.97 0.11 0.27 ind:imp:1s; +accélérait accélérer ver 15.78 17.97 0.13 2.64 ind:imp:3s; +accélérant accélérer ver 15.78 17.97 0.22 1.08 par:pre; +accélérants accélérant adj m p 0.23 0.00 0.02 0.00 +accélérateur accélérateur nom m s 2.22 3.51 2.16 3.38 +accélérateurs accélérateur nom m p 2.22 3.51 0.06 0.14 +accélération accélération nom f s 1.50 3.11 1.46 2.64 +accélérations accélération nom f p 1.50 3.11 0.04 0.47 +accélératrice accélérateur adj f s 0.34 0.14 0.01 0.00 +accélérer accélérer ver 15.78 17.97 4.41 2.91 inf; +accélérera accélérer ver 15.78 17.97 0.02 0.00 ind:fut:3s; +accélérerait accélérer ver 15.78 17.97 0.08 0.07 cnd:pre:3s; +accéléreras accélérer ver 15.78 17.97 0.01 0.00 ind:fut:2s; +accélérez accélérer ver 15.78 17.97 1.39 0.00 imp:pre:2p;ind:pre:2p; +accélériez accélérer ver 15.78 17.97 0.01 0.00 ind:imp:2p; +accélérons accélérer ver 15.78 17.97 0.15 0.00 imp:pre:1p;ind:pre:1p; +accélérèrent accélérer ver 15.78 17.97 0.00 0.20 ind:pas:3p; +accéléré accélérer ver m s 15.78 17.97 0.95 0.95 par:pas; +accélérée accélérer ver f s 15.78 17.97 0.23 2.23 par:pas; +accélérées accélérer ver f p 15.78 17.97 0.05 0.20 par:pas; +accélérés accéléré adj m p 0.28 2.03 0.01 0.41 +acculés acculer ver m p 1.03 4.93 0.06 0.61 par:pas; +accumula accumuler ver 4.46 24.53 0.00 0.14 ind:pas:3s; +accumulai accumuler ver 4.46 24.53 0.00 0.07 ind:pas:1s; +accumulaient accumuler ver 4.46 24.53 0.04 1.76 ind:imp:3p; +accumulais accumuler ver 4.46 24.53 0.02 0.27 ind:imp:1s; +accumulait accumuler ver 4.46 24.53 0.04 2.57 ind:imp:3s; +accumulant accumuler ver 4.46 24.53 0.24 1.55 par:pre; +accumulateur accumulateur nom m s 0.03 0.14 0.03 0.07 +accumulateurs accumulateur nom m p 0.03 0.14 0.00 0.07 +accumulation accumulation nom f s 0.67 3.78 0.67 3.72 +accumulations accumulation nom f p 0.67 3.78 0.00 0.07 +accumule accumuler ver 4.46 24.53 1.01 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accumulent accumuler ver 4.46 24.53 0.77 0.95 ind:pre:3p; +accumuler accumuler ver 4.46 24.53 0.85 3.72 inf; +accumulerez accumuler ver 4.46 24.53 0.01 0.00 ind:fut:2p; +accumulez accumuler ver 4.46 24.53 0.23 0.00 imp:pre:2p;ind:pre:2p; +accumulèrent accumuler ver 4.46 24.53 0.00 0.14 ind:pas:3p; +accumulé accumuler ver m s 4.46 24.53 0.55 3.04 par:pas; +accumulée accumuler ver f s 4.46 24.53 0.09 3.31 par:pas; +accumulées accumuler ver f p 4.46 24.53 0.30 3.04 par:pas; +accumulés accumuler ver m p 4.46 24.53 0.30 2.50 par:pas; +accus accu nom m p 0.11 0.34 0.11 0.27 +accusa accuser ver 52.72 39.93 0.18 3.18 ind:pas:3s; +accusai accuser ver 52.72 39.93 0.03 0.47 ind:pas:1s; +accusaient accuser ver 52.72 39.93 0.09 2.09 ind:imp:3p; +accusais accuser ver 52.72 39.93 0.29 0.68 ind:imp:1s;ind:imp:2s; +accusait accuser ver 52.72 39.93 1.57 6.55 ind:imp:3s; +accusant accuser ver 52.72 39.93 0.68 2.64 par:pre; +accusateur accusateur nom m s 0.35 1.28 0.25 0.41 +accusateurs accusateur adj m p 0.32 1.42 0.12 0.47 +accusatif accusatif nom m s 0.11 0.07 0.11 0.07 +accusation accusation nom f s 19.72 8.85 12.62 5.74 +accusations accusation nom f p 19.72 8.85 7.11 3.11 +accusatoire accusatoire adj s 0.01 0.00 0.01 0.00 +accusatrice accusateur adj f s 0.32 1.42 0.00 0.14 +accusatrices accusateur nom f p 0.35 1.28 0.00 0.07 +accuse accuser ver 52.72 39.93 13.28 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +accusent accuser ver 52.72 39.93 1.77 1.22 ind:pre:3p; +accuser accuser ver 52.72 39.93 10.06 7.03 inf; +accusera accuser ver 52.72 39.93 0.65 0.34 ind:fut:3s; +accuseraient accuser ver 52.72 39.93 0.03 0.14 cnd:pre:3p; +accuserais accuser ver 52.72 39.93 0.42 0.07 cnd:pre:1s;cnd:pre:2s; +accuserait accuser ver 52.72 39.93 0.30 0.54 cnd:pre:3s; +accuserez accuser ver 52.72 39.93 0.04 0.00 ind:fut:2p; +accuseriez accuser ver 52.72 39.93 0.03 0.07 cnd:pre:2p; +accuserions accuser ver 52.72 39.93 0.00 0.07 cnd:pre:1p; +accuserons accuser ver 52.72 39.93 0.02 0.00 ind:fut:1p; +accuseront accuser ver 52.72 39.93 0.22 0.00 ind:fut:3p; +accuses accuser ver 52.72 39.93 2.72 0.07 ind:pre:2s; +accusez accuser ver 52.72 39.93 3.22 0.88 imp:pre:2p;ind:pre:2p; +accusiez accuser ver 52.72 39.93 0.13 0.00 ind:imp:2p; +accusions accuser ver 52.72 39.93 0.01 0.07 ind:imp:1p; +accusons accuser ver 52.72 39.93 0.16 0.14 imp:pre:1p;ind:pre:1p; +accusât accuser ver 52.72 39.93 0.00 0.20 sub:imp:3s; +accusèrent accuser ver 52.72 39.93 0.01 0.20 ind:pas:3p; +accusé accuser ver m s 52.72 39.93 11.73 5.20 par:pas; +accusée accuser ver f s 52.72 39.93 3.20 1.01 par:pas; +accusées accuser ver f p 52.72 39.93 0.33 0.14 par:pas; +accusés accusé nom m p 13.74 11.69 2.69 4.32 +ace ace nom m s 2.48 0.00 2.48 0.00 +acellulaire acellulaire adj m s 0.03 0.00 0.03 0.00 +acerbe acerbe adj s 0.16 1.22 0.13 1.08 +acerbes acerbe adj f p 0.16 1.22 0.03 0.14 +acerbité acerbité nom m s 0.02 0.07 0.02 0.07 +acetabulum acetabulum nom m s 0.01 0.00 0.01 0.00 +achalandage achalandage nom m s 0.00 0.07 0.00 0.07 +achalandaient achalander ver 0.01 0.07 0.00 0.07 ind:imp:3p; +achalandé achalandé adj m s 0.02 0.34 0.01 0.07 +achalandée achalandé adj f s 0.02 0.34 0.01 0.07 +achalandées achalandé adj f p 0.02 0.34 0.00 0.07 +achalandés achalander ver m p 0.01 0.07 0.01 0.00 par:pas; +achaler achaler ver 0.01 0.00 0.01 0.00 inf; +achards achards nom m p 0.03 0.00 0.03 0.00 +acharna acharner ver 2.99 22.64 0.01 1.22 ind:pas:3s; +acharnai acharner ver 2.99 22.64 0.00 0.07 ind:pas:1s; +acharnaient acharner ver 2.99 22.64 0.03 1.62 ind:imp:3p; +acharnais acharner ver 2.99 22.64 0.01 0.47 ind:imp:1s; +acharnait acharner ver 2.99 22.64 0.11 3.24 ind:imp:3s; +acharnant acharner ver 2.99 22.64 0.00 1.49 par:pre; +acharne acharner ver 2.99 22.64 0.86 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acharnement acharnement nom m s 0.60 8.24 0.60 8.11 +acharnements acharnement nom m p 0.60 8.24 0.00 0.14 +acharnent acharner ver 2.99 22.64 0.23 1.08 ind:pre:3p; +acharner acharner ver 2.99 22.64 0.35 1.62 inf; +acharnera acharner ver 2.99 22.64 0.01 0.14 ind:fut:3s; +acharnerai acharner ver 2.99 22.64 0.02 0.00 ind:fut:1s; +acharnerait acharner ver 2.99 22.64 0.01 0.00 cnd:pre:3s; +acharnes acharner ver 2.99 22.64 0.26 0.14 ind:pre:2s; +acharnez acharner ver 2.99 22.64 0.10 0.07 imp:pre:2p;ind:pre:2p; +acharnèrent acharner ver 2.99 22.64 0.00 0.34 ind:pas:3p; +acharné acharné adj m s 1.61 5.41 0.59 2.23 +acharnée acharné adj f s 1.61 5.41 0.66 1.69 +acharnées acharné adj f p 1.61 5.41 0.02 0.41 +acharnés acharné adj m p 1.61 5.41 0.34 1.08 +achat achat nom m s 9.75 16.96 5.20 10.95 +achats achat nom m p 9.75 16.96 4.55 6.01 +ache ache nom f s 0.00 0.20 0.00 0.14 +achemina acheminer ver 0.83 6.15 0.01 0.41 ind:pas:3s; +acheminai acheminer ver 0.83 6.15 0.00 0.14 ind:pas:1s; +acheminaient acheminer ver 0.83 6.15 0.00 0.27 ind:imp:3p; +acheminait acheminer ver 0.83 6.15 0.01 0.88 ind:imp:3s; +acheminant acheminer ver 0.83 6.15 0.02 0.27 par:pre; +achemine acheminer ver 0.83 6.15 0.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acheminement acheminement nom m s 0.20 0.47 0.20 0.47 +acheminent acheminer ver 0.83 6.15 0.01 0.61 ind:pre:3p; +acheminer acheminer ver 0.83 6.15 0.55 1.22 inf; +achemineront acheminer ver 0.83 6.15 0.00 0.07 ind:fut:3p; +acheminâmes acheminer ver 0.83 6.15 0.00 0.07 ind:pas:1p; +acheminons acheminer ver 0.83 6.15 0.00 0.27 ind:pre:1p; +acheminèrent acheminer ver 0.83 6.15 0.00 0.14 ind:pas:3p; +acheminé acheminer ver m s 0.83 6.15 0.04 0.41 par:pas; +acheminée acheminer ver f s 0.83 6.15 0.05 0.14 par:pas; +acheminées acheminer ver f p 0.83 6.15 0.03 0.27 par:pas; +acheminés acheminer ver m p 0.83 6.15 0.02 0.27 par:pas; +aches ache nom f p 0.00 0.20 0.00 0.07 +acheta acheter ver 290.69 148.38 0.37 7.09 ind:pas:3s; +achetable achetable adj s 0.00 0.14 0.00 0.14 +achetai acheter ver 290.69 148.38 0.28 2.23 ind:pas:1s; +achetaient acheter ver 290.69 148.38 0.64 2.16 ind:imp:3p; +achetais acheter ver 290.69 148.38 1.32 1.49 ind:imp:1s;ind:imp:2s; +achetait acheter ver 290.69 148.38 3.43 6.22 ind:imp:3s; +achetant acheter ver 290.69 148.38 1.23 1.42 par:pre; +achetassent acheter ver 290.69 148.38 0.00 0.07 sub:imp:3p; +acheter acheter ver 290.69 148.38 115.26 57.09 inf; +acheteur acheteur nom m s 6.55 5.47 3.89 2.97 +acheteurs acheteur nom m p 6.55 5.47 2.50 2.16 +acheteuse acheteur nom f s 6.55 5.47 0.16 0.14 +acheteuses acheteuse nom f p 0.02 0.00 0.02 0.00 +achetez acheter ver 290.69 148.38 10.51 1.22 imp:pre:2p;ind:pre:2p; +achetiez acheter ver 290.69 148.38 0.28 0.14 ind:imp:2p; +achetions acheter ver 290.69 148.38 0.06 0.74 ind:imp:1p; +achetâmes acheter ver 290.69 148.38 0.00 0.20 ind:pas:1p; +achetons acheter ver 290.69 148.38 1.38 0.47 imp:pre:1p;ind:pre:1p; +achetât acheter ver 290.69 148.38 0.00 0.20 sub:imp:3s; +achetèrent acheter ver 290.69 148.38 0.06 0.95 ind:pas:3p; +acheté acheter ver m s 290.69 148.38 72.38 28.72 par:pas;par:pas;par:pas; +achetée acheter ver f s 290.69 148.38 8.67 5.88 par:pas; +achetées acheter ver f p 290.69 148.38 1.90 2.84 ind:imp:3s;par:pas; +achetés acheter ver m p 290.69 148.38 3.52 3.85 par:pas; +acheva achever ver 22.97 81.42 0.23 11.69 ind:pas:3s; +achevai achever ver 22.97 81.42 0.01 0.54 ind:pas:1s; +achevaient achever ver 22.97 81.42 0.12 4.19 ind:imp:3p; +achevais achever ver 22.97 81.42 0.00 0.54 ind:imp:1s; +achevait achever ver 22.97 81.42 0.34 12.64 ind:imp:3s; +achevant achever ver 22.97 81.42 0.02 2.57 par:pre; +achever achever ver 22.97 81.42 6.49 15.00 inf; +achevez achever ver 22.97 81.42 1.00 0.07 imp:pre:2p;ind:pre:2p; +acheviez achever ver 22.97 81.42 0.01 0.00 ind:imp:2p; +achevions achever ver 22.97 81.42 0.00 0.41 ind:imp:1p; +achevâmes achever ver 22.97 81.42 0.00 0.07 ind:pas:1p; +achevons achever ver 22.97 81.42 0.07 0.41 imp:pre:1p;ind:pre:1p; +achevât achever ver 22.97 81.42 0.00 0.61 sub:imp:3s; +achevèrent achever ver 22.97 81.42 0.01 1.22 ind:pas:3p; +achevé achever ver m s 22.97 81.42 2.70 12.64 par:pas; +achevée achever ver f s 22.97 81.42 1.54 2.91 par:pas; +achevées achevé adj f p 1.61 6.69 0.19 0.81 +achevés achever ver m p 22.97 81.42 0.08 0.41 par:pas; +achillée achillée nom f s 0.01 0.00 0.01 0.00 +achondroplasie achondroplasie nom f s 0.04 0.00 0.03 0.00 +achondroplasies achondroplasie nom f p 0.04 0.00 0.01 0.00 +achoppa achopper ver 0.01 0.81 0.00 0.07 ind:pas:3s; +achoppai achopper ver 0.01 0.81 0.00 0.07 ind:pas:1s; +achoppaient achopper ver 0.01 0.81 0.00 0.07 ind:imp:3p; +achoppais achopper ver 0.01 0.81 0.00 0.20 ind:imp:1s; +achoppait achopper ver 0.01 0.81 0.00 0.07 ind:imp:3s; +achoppe achopper ver 0.01 0.81 0.00 0.14 ind:pre:1s;ind:pre:3s; +achoppement achoppement nom m s 0.01 0.14 0.01 0.14 +achopper achopper ver 0.01 0.81 0.01 0.00 inf; +achoppé achopper ver m s 0.01 0.81 0.00 0.14 par:pas; +achoppée achopper ver f s 0.01 0.81 0.00 0.07 par:pas; +achète acheter ver 290.69 148.38 39.82 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +achètent acheter ver 290.69 148.38 5.44 2.70 ind:pre:3p; +achètera acheter ver 290.69 148.38 3.98 0.74 ind:fut:3s; +achèterai acheter ver 290.69 148.38 7.09 2.30 ind:fut:1s; +achèteraient acheter ver 290.69 148.38 0.03 0.41 cnd:pre:3p; +achèterais acheter ver 290.69 148.38 1.75 0.74 cnd:pre:1s;cnd:pre:2s; +achèterait acheter ver 290.69 148.38 1.02 1.22 cnd:pre:3s; +achèteras acheter ver 290.69 148.38 1.55 0.61 ind:fut:2s; +achèterez acheter ver 290.69 148.38 0.48 0.20 ind:fut:2p; +achèteriez acheter ver 290.69 148.38 0.17 0.07 cnd:pre:2p; +achèterions acheter ver 290.69 148.38 0.00 0.07 cnd:pre:1p; +achèterons acheter ver 290.69 148.38 0.47 0.41 ind:fut:1p; +achèteront acheter ver 290.69 148.38 0.31 0.54 ind:fut:3p; +achètes acheter ver 290.69 148.38 7.28 0.88 ind:pre:2s;sub:pre:2s; +achève achever ver 22.97 81.42 8.31 11.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +achèvement achèvement nom m s 0.52 1.82 0.52 1.76 +achèvements achèvement nom m p 0.52 1.82 0.00 0.07 +achèvent achever ver 22.97 81.42 0.14 2.70 ind:pre:3p; +achèvera achever ver 22.97 81.42 1.00 0.27 ind:fut:3s; +achèverai achever ver 22.97 81.42 0.06 0.00 ind:fut:1s; +achèveraient achever ver 22.97 81.42 0.00 0.14 cnd:pre:3p; +achèverait achever ver 22.97 81.42 0.10 0.88 cnd:pre:3s; +achèverez achever ver 22.97 81.42 0.02 0.00 ind:fut:2p; +achèverons achever ver 22.97 81.42 0.06 0.00 ind:fut:1p; +achèveront achever ver 22.97 81.42 0.13 0.20 ind:fut:3p; +achèves achever ver 22.97 81.42 0.39 0.00 ind:pre:2s; +achélème achélème nom m s 0.00 1.69 0.00 0.95 +achélèmes achélème nom m p 0.00 1.69 0.00 0.74 +acid_jazz acid_jazz nom m s 0.03 0.00 0.03 0.00 +acide acide nom m s 9.46 4.80 8.44 3.85 +acides acide nom m p 9.46 4.80 1.02 0.95 +acidité acidité nom f s 0.29 0.95 0.27 0.81 +acidités acidité nom f p 0.29 0.95 0.02 0.14 +acidocétose acidocétose nom f s 0.08 0.00 0.08 0.00 +acidose acidose nom f s 0.22 0.00 0.22 0.00 +acidulé acidulé adj m s 0.15 1.55 0.02 0.47 +acidulée acidulé adj f s 0.15 1.55 0.04 0.27 +acidulées acidulé adj f p 0.15 1.55 0.01 0.27 +acidulés acidulé adj m p 0.15 1.55 0.08 0.54 +acier acier nom m s 13.88 34.46 13.85 33.38 +aciers acier nom m p 13.88 34.46 0.03 1.08 +aciérie aciérie nom f s 2.21 0.27 0.67 0.14 +aciéries aciérie nom f p 2.21 0.27 1.53 0.14 +acmé acmé nom f s 0.01 0.00 0.01 0.00 +acné acné nom f s 1.90 0.88 1.90 0.81 +acnéiques acnéique adj m p 0.00 0.14 0.00 0.14 +acnés acné nom f p 1.90 0.88 0.00 0.07 +acolyte acolyte nom m s 1.45 1.96 0.75 0.61 +acolytes acolyte nom m p 1.45 1.96 0.70 1.35 +acompte acompte nom m s 3.67 1.15 3.33 1.01 +acomptes acompte nom m p 3.67 1.15 0.34 0.14 +aconiers aconier nom m p 0.00 0.07 0.00 0.07 +aconit aconit nom m s 0.14 0.34 0.14 0.34 +acoquina acoquiner ver 0.23 1.01 0.01 0.07 ind:pas:3s; +acoquine acoquiner ver 0.23 1.01 0.04 0.07 ind:pre:1s;ind:pre:3s; +acoquiner acoquiner ver 0.23 1.01 0.12 0.41 inf; +acoquiné acoquiner ver m s 0.23 1.01 0.03 0.07 par:pas; +acoquinée acoquiner ver f s 0.23 1.01 0.02 0.14 par:pas; +acoquinés acoquiner ver m p 0.23 1.01 0.01 0.27 par:pas; +acouphène acouphène nom m s 0.18 0.00 0.18 0.00 +acoustique acoustique nom f s 0.57 0.34 0.55 0.34 +acoustiques acoustique adj p 0.56 0.81 0.07 0.07 +acqua_toffana acqua_toffana nom f s 0.00 0.07 0.00 0.07 +acquerra acquérir ver 8.30 29.66 0.01 0.00 ind:fut:3s; +acquerrai acquérir ver 8.30 29.66 0.01 0.07 ind:fut:1s; +acquerraient acquérir ver 8.30 29.66 0.00 0.14 cnd:pre:3p; +acquerront acquérir ver 8.30 29.66 0.01 0.07 ind:fut:3p; +acquiers acquérir ver 8.30 29.66 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +acquiert acquérir ver 8.30 29.66 0.68 1.42 ind:pre:3s; +acquiesce acquiescer ver 1.15 12.43 0.33 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acquiescement acquiescement nom m s 0.15 2.84 0.15 2.36 +acquiescements acquiescement nom m p 0.15 2.84 0.00 0.47 +acquiescent acquiescer ver 1.15 12.43 0.26 0.07 ind:pre:3p; +acquiescer acquiescer ver 1.15 12.43 0.18 1.49 inf; +acquiesceront acquiescer ver 1.15 12.43 0.00 0.07 ind:fut:3p; +acquiesces acquiescer ver 1.15 12.43 0.02 0.00 ind:pre:2s; +acquiescèrent acquiescer ver 1.15 12.43 0.00 0.14 ind:pas:3p; +acquiescé acquiescer ver m s 1.15 12.43 0.31 1.08 par:pas; +acquiesça acquiescer ver 1.15 12.43 0.01 4.59 ind:pas:3s; +acquiesçai acquiescer ver 1.15 12.43 0.00 0.74 ind:pas:1s; +acquiesçaient acquiescer ver 1.15 12.43 0.00 0.14 ind:imp:3p; +acquiesçais acquiescer ver 1.15 12.43 0.02 0.34 ind:imp:1s; +acquiesçait acquiescer ver 1.15 12.43 0.00 1.15 ind:imp:3s; +acquiesçant acquiescer ver 1.15 12.43 0.02 0.20 par:pre; +acquiesçons acquiescer ver 1.15 12.43 0.00 0.07 ind:pre:1p; +acquirent acquérir ver 8.30 29.66 0.00 0.14 ind:pas:3p; +acquis acquérir ver m 8.30 29.66 3.52 13.65 ind:pas:1s;par:pas;par:pas; +acquise acquérir ver f s 8.30 29.66 1.05 2.97 par:pas; +acquises acquérir ver f p 8.30 29.66 0.34 0.88 par:pas; +acquisition acquisition nom f s 2.15 3.78 1.35 2.84 +acquisitions acquisition nom f p 2.15 3.78 0.81 0.95 +acquit acquit nom m s 0.29 2.23 0.29 2.16 +acquière acquérir ver 8.30 29.66 0.04 0.20 sub:pre:1s;sub:pre:3s; +acquièrent acquérir ver 8.30 29.66 0.12 0.74 ind:pre:3p; +acquits acquit nom m p 0.29 2.23 0.00 0.07 +acquitta acquitter ver 5.29 6.82 0.00 0.47 ind:pas:3s; +acquittai acquitter ver 5.29 6.82 0.00 0.07 ind:pas:1s; +acquittaient acquitter ver 5.29 6.82 0.00 0.20 ind:imp:3p; +acquittais acquitter ver 5.29 6.82 0.00 0.34 ind:imp:1s; +acquittait acquitter ver 5.29 6.82 0.04 0.81 ind:imp:3s; +acquittant acquitter ver 5.29 6.82 0.01 0.20 par:pre; +acquitte acquitter ver 5.29 6.82 1.17 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +acquittement acquittement nom m s 0.60 0.34 0.60 0.34 +acquittent acquitter ver 5.29 6.82 0.07 0.00 ind:pre:3p; +acquitter acquitter ver 5.29 6.82 1.13 1.82 inf; +acquittera acquitter ver 5.29 6.82 0.04 0.07 ind:fut:3s; +acquitterai acquitter ver 5.29 6.82 0.01 0.07 ind:fut:1s; +acquitterais acquitter ver 5.29 6.82 0.01 0.00 cnd:pre:1s; +acquitterait acquitter ver 5.29 6.82 0.03 0.07 cnd:pre:3s; +acquitterez acquitter ver 5.29 6.82 0.03 0.07 ind:fut:2p; +acquittes acquitter ver 5.29 6.82 0.14 0.07 ind:pre:2s; +acquittez acquitter ver 5.29 6.82 0.16 0.00 imp:pre:2p;ind:pre:2p; +acquittions acquitter ver 5.29 6.82 0.01 0.07 ind:imp:1p; +acquittât acquitter ver 5.29 6.82 0.00 0.07 sub:imp:3s; +acquitté acquitter ver m s 5.29 6.82 1.92 1.28 par:pas; +acquittée acquitter ver f s 5.29 6.82 0.26 0.34 par:pas; +acquittés acquitter ver m p 5.29 6.82 0.27 0.07 par:pas; +acquéraient acquérir ver 8.30 29.66 0.10 0.20 ind:imp:3p; +acquérais acquérir ver 8.30 29.66 0.01 0.27 ind:imp:1s; +acquérait acquérir ver 8.30 29.66 0.11 0.95 ind:imp:3s; +acquérant acquérir ver 8.30 29.66 0.05 0.20 par:pre; +acquéreur acquéreur nom m s 0.58 1.08 0.23 0.88 +acquéreurs acquéreur nom m p 0.58 1.08 0.35 0.20 +acquérions acquérir ver 8.30 29.66 0.00 0.07 ind:imp:1p; +acquérir acquérir ver 8.30 29.66 2.15 7.43 inf; +acquérons acquérir ver 8.30 29.66 0.01 0.07 ind:pre:1p; +acquêt acquêt nom m s 0.14 0.20 0.00 0.07 +acquêts acquêt nom m p 0.14 0.20 0.14 0.14 +acra acra nom m s 0.27 0.14 0.27 0.14 +acre acre nom f s 0.83 0.41 0.27 0.07 +acres acre nom f p 0.83 0.41 0.56 0.34 +acrimonie acrimonie nom f s 0.06 0.81 0.06 0.81 +acrimonieuse acrimonieux adj f s 0.04 0.14 0.01 0.07 +acrimonieusement acrimonieusement adv 0.00 0.07 0.00 0.07 +acrimonieuses acrimonieux adj f p 0.04 0.14 0.00 0.07 +acrimonieux acrimonieux adj m s 0.04 0.14 0.02 0.00 +acrobate acrobate nom s 2.34 4.12 1.46 2.57 +acrobates acrobate nom p 2.34 4.12 0.89 1.55 +acrobatie acrobatie nom f s 0.81 2.57 0.32 0.81 +acrobaties acrobatie nom f p 0.81 2.57 0.50 1.76 +acrobatique acrobatique adj s 0.47 1.01 0.31 0.61 +acrobatiquement acrobatiquement adv 0.01 0.07 0.01 0.07 +acrobatiques acrobatique adj p 0.47 1.01 0.17 0.41 +acrocéphale acrocéphale adj s 0.00 0.07 0.00 0.07 +acromion acromion nom m s 0.01 0.14 0.01 0.14 +acronyme acronyme nom m s 0.19 0.07 0.19 0.07 +acrophobie acrophobie nom f s 0.08 0.00 0.08 0.00 +acropole acropole nom f s 0.00 0.81 0.00 0.81 +acrostiche acrostiche nom m s 0.02 0.00 0.02 0.00 +acrotère acrotère nom m s 0.00 0.07 0.00 0.07 +acré acré ono 0.00 0.20 0.00 0.20 +acrylique acrylique nom m s 0.50 0.14 0.40 0.07 +acryliques acrylique nom m p 0.50 0.14 0.10 0.07 +acrylonitrile acrylonitrile nom m s 0.01 0.00 0.01 0.00 +acta acter ver 0.29 0.07 0.00 0.07 ind:pas:3s; +acte acte nom m s 56.81 57.30 39.19 35.88 +actes acte nom m p 56.81 57.30 17.62 21.42 +acteur acteur nom m s 72.27 38.31 30.51 15.47 +acteurs acteur nom m p 72.27 38.31 17.92 12.30 +actif actif adj m s 10.15 13.65 4.12 3.58 +actifs actif adj m p 10.15 13.65 1.33 1.35 +actine actine nom f s 0.01 0.00 0.01 0.00 +actinies actinie nom f p 0.00 0.41 0.00 0.41 +action_painting action_painting nom f s 0.00 0.07 0.00 0.07 +action action nom f s 69.27 87.43 49.97 72.91 +actionna actionner ver 2.01 5.61 0.00 0.47 ind:pas:3s; +actionnai actionner ver 2.01 5.61 0.00 0.20 ind:pas:1s; +actionnaient actionner ver 2.01 5.61 0.14 0.41 ind:imp:3p; +actionnaire actionnaire nom s 3.72 0.74 1.21 0.27 +actionnaires actionnaire nom p 3.72 0.74 2.51 0.47 +actionnais actionner ver 2.01 5.61 0.01 0.07 ind:imp:1s; +actionnait actionner ver 2.01 5.61 0.00 0.81 ind:imp:3s; +actionnant actionner ver 2.01 5.61 0.02 0.61 par:pre; +actionnariat actionnariat nom m s 0.01 0.00 0.01 0.00 +actionne actionner ver 2.01 5.61 0.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +actionnement actionnement nom m s 0.01 0.07 0.01 0.07 +actionnent actionner ver 2.01 5.61 0.04 0.00 ind:pre:3p; +actionner actionner ver 2.01 5.61 0.43 1.22 inf; +actionneront actionner ver 2.01 5.61 0.00 0.07 ind:fut:3p; +actionneur actionneur nom m s 0.01 0.00 0.01 0.00 +actionnez actionner ver 2.01 5.61 0.34 0.00 imp:pre:2p;ind:pre:2p; +actionnât actionner ver 2.01 5.61 0.00 0.07 sub:imp:3s; +actionné actionner ver m s 2.01 5.61 0.20 0.81 par:pas; +actionnée actionner ver f s 2.01 5.61 0.05 0.07 par:pas; +actionnées actionner ver f p 2.01 5.61 0.00 0.07 par:pas; +actionnés actionner ver m p 2.01 5.61 0.14 0.00 par:pas; +actions action nom f p 69.27 87.43 19.30 14.53 +activa activer ver 12.58 6.62 0.00 0.27 ind:pas:3s; +activai activer ver 12.58 6.62 0.00 0.07 ind:pas:1s; +activaient activer ver 12.58 6.62 0.10 0.74 ind:imp:3p; +activait activer ver 12.58 6.62 0.05 1.08 ind:imp:3s; +activant activer ver 12.58 6.62 0.10 0.47 par:pre; +activateur activateur nom m s 0.10 0.00 0.10 0.00 +activation activation nom f s 2.27 0.07 2.21 0.07 +activations activation nom f p 2.27 0.07 0.07 0.00 +active actif adj f s 10.15 13.65 4.21 7.16 +activement activement adv 1.18 3.51 1.18 3.51 +activent activer ver 12.58 6.62 0.15 0.61 ind:pre:3p; +activer activer ver 12.58 6.62 2.98 1.35 inf; +activera activer ver 12.58 6.62 0.13 0.00 ind:fut:3s; +activerai activer ver 12.58 6.62 0.06 0.00 ind:fut:1s; +activerait activer ver 12.58 6.62 0.02 0.00 cnd:pre:3s; +activeras activer ver 12.58 6.62 0.01 0.00 ind:fut:2s; +actives actif adj f p 10.15 13.65 0.50 1.55 +activez activer ver 12.58 6.62 2.34 0.00 imp:pre:2p;ind:pre:2p; +activisme activisme nom m s 0.15 0.20 0.15 0.20 +activiste activiste nom s 0.88 0.54 0.23 0.07 +activistes activiste nom p 0.88 0.54 0.65 0.47 +activité activité nom f s 23.47 38.92 13.05 25.81 +activités activité nom f p 23.47 38.92 10.42 13.11 +activons activer ver 12.58 6.62 0.33 0.34 imp:pre:1p;ind:pre:1p; +activèrent activer ver 12.58 6.62 0.00 0.14 ind:pas:3p; +activé activer ver m s 12.58 6.62 2.13 0.14 par:pas; +activée activé adj f s 2.57 0.07 0.81 0.00 +activées activé adj f p 2.57 0.07 0.34 0.00 +activés activé adj m p 2.57 0.07 0.48 0.00 +actrice acteur nom f s 72.27 38.31 23.83 7.57 +actrices actrice nom f p 2.50 0.00 2.50 0.00 +actuaire actuaire nom s 0.03 0.00 0.03 0.00 +actualisation actualisation nom f s 0.03 0.07 0.03 0.07 +actualise actualiser ver 0.17 0.34 0.01 0.07 ind:pre:3s; +actualiser actualiser ver 0.17 0.34 0.06 0.07 inf; +actualisez actualiser ver 0.17 0.34 0.04 0.00 imp:pre:2p; +actualisé actualiser ver m s 0.17 0.34 0.02 0.07 par:pas; +actualisée actualiser ver f s 0.17 0.34 0.02 0.07 par:pas; +actualisées actualiser ver f p 0.17 0.34 0.01 0.07 par:pas; +actualité actualité nom f s 3.25 8.72 1.79 5.68 +actualités actualité nom f p 3.25 8.72 1.45 3.04 +actuariel actuariel adj m s 0.02 0.00 0.02 0.00 +actuation actuation nom f s 0.01 0.00 0.01 0.00 +actuel actuel adj m s 14.86 20.68 4.69 6.49 +actuelle actuel adj f s 14.86 20.68 7.80 8.58 +actuellement actuellement adv 11.39 16.69 11.39 16.69 +actuelles actuel adj f p 14.86 20.68 1.14 2.64 +actuels actuel adj m p 14.86 20.68 1.23 2.97 +acuité acuité nom f s 0.56 3.18 0.56 3.18 +acumen acumen nom m s 0.00 0.07 0.00 0.07 +acéphale acéphale nom m s 0.00 0.20 0.00 0.14 +acéphales acéphale nom m p 0.00 0.20 0.00 0.07 +acuponcteur acuponcteur nom m s 0.23 0.00 0.23 0.00 +acuponcture acuponcture nom f s 0.17 0.00 0.17 0.00 +acupuncteur acupuncteur nom m s 0.11 0.07 0.11 0.07 +acupuncture acupuncture nom f s 0.79 0.41 0.79 0.41 +acéré acéré adj m s 0.81 2.43 0.14 0.74 +acérée acéré adj f s 0.81 2.43 0.11 0.54 +acérées acéré adj f p 0.81 2.43 0.51 0.68 +acérés acéré adj m p 0.81 2.43 0.06 0.47 +acétate acétate nom m s 0.20 0.14 0.20 0.14 +acétique acétique adj m s 0.05 0.07 0.05 0.07 +acétone acétone nom f s 0.21 0.27 0.21 0.27 +acétylcholine acétylcholine nom f s 0.25 0.00 0.25 0.00 +acétylsalicylique acétylsalicylique adj m s 0.03 0.00 0.03 0.00 +acétylène acétylène nom m s 0.18 1.96 0.18 1.96 +ad_hoc ad_hoc adj 0.11 0.81 0.11 0.81 +ad_infinitum ad_infinitum adv 0.05 0.00 0.05 0.00 +ad_libitum ad_libitum adv 0.00 0.14 0.00 0.14 +ad_limina ad_limina adv 0.00 0.07 0.00 0.07 +ad_majorem_dei_gloriam ad_majorem_dei_gloriam adv 0.00 0.14 0.00 0.14 +ad_nutum ad_nutum adv 0.00 0.07 0.00 0.07 +ad_patres ad_patres adv 0.02 0.27 0.02 0.27 +ad_vitam_aeternam ad_vitam_aeternam adv 0.00 0.20 0.00 0.20 +ada ada nom m s 0.05 0.00 0.05 0.00 +adage adage nom m s 0.62 0.74 0.61 0.54 +adages adage nom m p 0.62 0.74 0.01 0.20 +adagio adagio nom m s 0.13 0.34 0.13 0.34 +adamantin adamantin adj m s 0.01 0.20 0.00 0.14 +adamantine adamantin adj f s 0.01 0.20 0.01 0.07 +adamique adamique adj m s 0.00 0.14 0.00 0.14 +adapta adapter ver 13.44 12.57 0.01 0.14 ind:pas:3s; +adaptabilité adaptabilité nom f s 0.16 0.00 0.16 0.00 +adaptable adaptable adj s 0.10 0.20 0.07 0.07 +adaptables adaptable adj m p 0.10 0.20 0.02 0.14 +adaptai adapter ver 13.44 12.57 0.00 0.07 ind:pas:1s; +adaptaient adapter ver 13.44 12.57 0.01 0.14 ind:imp:3p; +adaptais adapter ver 13.44 12.57 0.00 0.20 ind:imp:1s; +adaptait adapter ver 13.44 12.57 0.04 0.68 ind:imp:3s; +adaptant adapter ver 13.44 12.57 0.05 0.47 par:pre; +adaptateur adaptateur nom m s 0.15 0.41 0.12 0.41 +adaptateurs adaptateur nom m p 0.15 0.41 0.04 0.00 +adaptatif adaptatif adj m s 0.04 0.07 0.04 0.00 +adaptatifs adaptatif adj m p 0.04 0.07 0.00 0.07 +adaptation adaptation nom f s 2.48 4.66 2.46 4.46 +adaptations adaptation nom f p 2.48 4.66 0.03 0.20 +adapte adapter ver 13.44 12.57 1.75 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adaptent adapter ver 13.44 12.57 0.39 0.07 ind:pre:3p; +adapter adapter ver 13.44 12.57 5.63 3.72 inf; +adaptera adapter ver 13.44 12.57 0.18 0.07 ind:fut:3s; +adapterai adapter ver 13.44 12.57 0.05 0.07 ind:fut:1s; +adapterais adapter ver 13.44 12.57 0.00 0.07 cnd:pre:1s; +adapterait adapter ver 13.44 12.57 0.01 0.07 cnd:pre:3s; +adapteras adapter ver 13.44 12.57 0.04 0.00 ind:fut:2s; +adapterez adapter ver 13.44 12.57 0.05 0.00 ind:fut:2p; +adapterons adapter ver 13.44 12.57 0.05 0.07 ind:fut:1p; +adapteront adapter ver 13.44 12.57 0.01 0.07 ind:fut:3p; +adaptes adapter ver 13.44 12.57 0.16 0.07 ind:pre:2s; +adaptez adapter ver 13.44 12.57 0.07 0.07 imp:pre:2p;ind:pre:2p; +adaptât adapter ver 13.44 12.57 0.00 0.07 sub:imp:3s; +adaptèrent adapter ver 13.44 12.57 0.01 0.07 ind:pas:3p; +adapté adapter ver m s 13.44 12.57 3.16 2.36 imp:pre:2s;par:pas; +adaptée adapter ver f s 13.44 12.57 0.78 1.42 par:pas; +adaptées adapter ver f p 13.44 12.57 0.66 0.61 par:pas; +adaptés adapter ver m p 13.44 12.57 0.34 0.81 par:pas; +addenda addenda nom m 0.07 0.00 0.07 0.00 +addendum addendum nom m s 0.01 0.07 0.01 0.07 +addiction addiction nom f s 0.41 0.07 0.41 0.07 +additif additif nom m s 0.21 0.14 0.15 0.14 +additifs additif nom m p 0.21 0.14 0.06 0.00 +addition addition nom f s 8.61 9.53 8.24 7.36 +additionnaient additionner ver 1.25 2.64 0.00 0.07 ind:imp:3p; +additionnais additionner ver 1.25 2.64 0.00 0.07 ind:imp:1s; +additionnait additionner ver 1.25 2.64 0.00 0.07 ind:imp:3s; +additionnant additionner ver 1.25 2.64 0.19 0.34 par:pre; +additionne additionner ver 1.25 2.64 0.22 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +additionnel additionnel adj m s 0.25 0.34 0.04 0.20 +additionnelle additionnel adj f s 0.25 0.34 0.11 0.00 +additionnelles additionnel adj f p 0.25 0.34 0.05 0.14 +additionnels additionnel adj m p 0.25 0.34 0.05 0.00 +additionnent additionner ver 1.25 2.64 0.13 0.20 ind:pre:3p; +additionner additionner ver 1.25 2.64 0.33 0.41 inf; +additionneraient additionner ver 1.25 2.64 0.14 0.07 cnd:pre:3p; +additionnerait additionner ver 1.25 2.64 0.00 0.07 cnd:pre:3s; +additionnez additionner ver 1.25 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +additionné additionner ver m s 1.25 2.64 0.06 0.07 par:pas; +additionnée additionner ver f s 1.25 2.64 0.01 0.20 par:pas; +additionnées additionner ver f p 1.25 2.64 0.14 0.27 par:pas; +additionnés additionner ver m p 1.25 2.64 0.01 0.20 par:pas; +additions addition nom f p 8.61 9.53 0.37 2.16 +adducteur adducteur nom m s 0.02 0.00 0.01 0.00 +adducteurs adducteur nom m p 0.02 0.00 0.01 0.00 +adduction adduction nom f s 0.04 0.14 0.04 0.14 +adent adent nom m s 0.01 0.00 0.01 0.00 +adepte adepte nom s 2.73 2.84 0.88 0.88 +adeptes adepte nom p 2.73 2.84 1.85 1.96 +adhère adhérer ver 2.67 5.07 0.73 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adhèrent adhérer ver 2.67 5.07 0.21 0.34 ind:pre:3p; +adhéra adhérer ver 2.67 5.07 0.02 0.00 ind:pas:3s; +adhéraient adhérer ver 2.67 5.07 0.01 0.27 ind:imp:3p; +adhérais adhérer ver 2.67 5.07 0.03 0.07 ind:imp:1s; +adhérait adhérer ver 2.67 5.07 0.01 0.95 ind:imp:3s; +adhérant adhérer ver 2.67 5.07 0.03 0.41 par:pre; +adhérence adhérence nom f s 0.11 0.54 0.06 0.14 +adhérences adhérence nom f p 0.11 0.54 0.04 0.41 +adhérent adhérent nom m s 0.57 1.01 0.16 0.14 +adhérente adhérent adj f s 0.16 0.27 0.01 0.00 +adhérentes adhérent adj f p 0.16 0.27 0.00 0.14 +adhérents adhérent nom m p 0.57 1.01 0.42 0.88 +adhérer adhérer ver 2.67 5.07 0.82 1.82 inf; +adhérez adhérer ver 2.67 5.07 0.48 0.00 imp:pre:2p;ind:pre:2p; +adhéré adhérer ver m s 2.67 5.07 0.32 0.34 par:pas; +adhésif adhésif adj m s 1.05 0.81 0.73 0.47 +adhésifs adhésif adj m p 1.05 0.81 0.07 0.20 +adhésion adhésion nom f s 0.50 6.55 0.45 6.15 +adhésions adhésion nom f p 0.50 6.55 0.04 0.41 +adhésive adhésif adj f s 1.05 0.81 0.17 0.14 +adhésives adhésif adj f p 1.05 0.81 0.07 0.00 +adieu adieu ono 39.70 7.36 39.70 7.36 +adieux adieu nom m p 44.44 38.04 7.57 10.54 +adipeuse adipeux adj f s 0.22 1.28 0.01 0.27 +adipeuses adipeux adj f p 0.22 1.28 0.10 0.07 +adipeux adipeux adj m 0.22 1.28 0.11 0.95 +adipique adipique adj m s 0.03 0.00 0.03 0.00 +adiposité adiposité nom f s 0.00 0.07 0.00 0.07 +adira adire ver 0.16 0.00 0.16 0.00 ind:fut:3s; +adja adja nom m s 0.00 1.01 0.00 0.34 +adjacent adjacent adj m s 0.59 0.95 0.16 0.14 +adjacente adjacent adj f s 0.59 0.95 0.06 0.34 +adjacentes adjacent adj f p 0.59 0.95 0.15 0.47 +adjacents adjacent adj m p 0.59 0.95 0.22 0.00 +adjas adja nom m p 0.00 1.01 0.00 0.68 +adjectif adjectif nom m s 0.45 3.51 0.28 1.96 +adjectifs adjectif nom m p 0.45 3.51 0.17 1.55 +adjective adjectif adj f s 0.01 0.14 0.00 0.07 +adjoignît adjoindre ver 1.71 2.97 0.00 0.07 sub:imp:3s; +adjoignait adjoindre ver 1.71 2.97 0.00 0.07 ind:imp:3s; +adjoignant adjoindre ver 1.71 2.97 0.00 0.07 par:pre; +adjoigne adjoindre ver 1.71 2.97 0.00 0.07 sub:pre:1s; +adjoignit adjoindre ver 1.71 2.97 0.00 0.14 ind:pas:3s; +adjoindra adjoindre ver 1.71 2.97 0.02 0.00 ind:fut:3s; +adjoindre adjoindre ver 1.71 2.97 0.05 0.68 inf; +adjoindront adjoindre ver 1.71 2.97 0.00 0.07 ind:fut:3p; +adjoins adjoindre ver 1.71 2.97 0.14 0.07 ind:pre:1s; +adjoint adjoint nom m s 9.42 5.14 6.54 4.05 +adjointe adjoint adj f s 6.77 2.16 0.25 0.00 +adjointes adjoint nom f p 9.42 5.14 0.01 0.00 +adjoints adjoint nom m p 9.42 5.14 2.66 0.95 +adjonction adjonction nom f s 0.02 0.41 0.02 0.41 +adjudant_chef adjudant_chef nom m s 2.57 2.70 2.57 2.57 +adjudant_major adjudant_major nom m s 0.05 0.00 0.05 0.00 +adjudant adjudant nom m s 16.60 22.23 16.49 21.15 +adjudant_chef adjudant_chef nom m p 2.57 2.70 0.00 0.14 +adjudants adjudant nom m p 16.60 22.23 0.11 1.08 +adjudication adjudication nom f s 0.37 0.20 0.02 0.14 +adjudications adjudication nom f p 0.37 0.20 0.34 0.07 +adjuge adjuger ver 1.64 0.68 0.05 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adjugeait adjuger ver 1.64 0.68 0.00 0.14 ind:imp:3s; +adjugeant adjuger ver 1.64 0.68 0.00 0.07 par:pre; +adjuger adjuger ver 1.64 0.68 0.03 0.00 inf; +adjugez adjuger ver 1.64 0.68 0.01 0.00 imp:pre:2p; +adjugé adjuger ver m s 1.64 0.68 1.50 0.34 par:pas; +adjugée adjuger ver f s 1.64 0.68 0.04 0.00 par:pas; +adjugés adjuger ver m p 1.64 0.68 0.02 0.00 par:pas; +adjupète adjupète nom m s 0.00 0.14 0.00 0.07 +adjupètes adjupète nom m p 0.00 0.14 0.00 0.07 +adjura adjurer ver 0.32 2.97 0.00 0.14 ind:pas:3s; +adjurai adjurer ver 0.32 2.97 0.00 0.20 ind:pas:1s; +adjuraient adjurer ver 0.32 2.97 0.00 0.07 ind:imp:3p; +adjurais adjurer ver 0.32 2.97 0.00 0.14 ind:imp:1s; +adjurait adjurer ver 0.32 2.97 0.01 0.61 ind:imp:3s; +adjurant adjurer ver 0.32 2.97 0.00 0.54 par:pre; +adjuration adjuration nom f s 0.00 0.34 0.00 0.20 +adjurations adjuration nom f p 0.00 0.34 0.00 0.14 +adjure adjurer ver 0.32 2.97 0.29 0.41 ind:pre:1s;ind:pre:3s; +adjurer adjurer ver 0.32 2.97 0.00 0.47 inf; +adjurerai adjurer ver 0.32 2.97 0.01 0.00 ind:fut:1s; +adjurerait adjurer ver 0.32 2.97 0.00 0.07 cnd:pre:3s; +adjuré adjurer ver m s 0.32 2.97 0.01 0.34 par:pas; +adjutrice adjutrice nom f s 0.00 0.07 0.00 0.07 +adjuvants adjuvant nom m p 0.01 0.07 0.01 0.07 +admît admettre ver 50.05 59.46 0.00 0.34 sub:imp:3s; +admet admettre ver 50.05 59.46 2.83 3.45 ind:pre:3s; +admets admettre ver 50.05 59.46 10.14 3.92 imp:pre:2s;ind:pre:1s;ind:pre:2s; +admettaient admettre ver 50.05 59.46 0.04 1.01 ind:imp:3p; +admettais admettre ver 50.05 59.46 0.20 0.88 ind:imp:1s;ind:imp:2s; +admettait admettre ver 50.05 59.46 0.07 3.78 ind:imp:3s; +admettant admettre ver 50.05 59.46 0.55 3.31 par:pre; +admette admettre ver 50.05 59.46 0.44 0.34 sub:pre:1s;sub:pre:3s; +admettent admettre ver 50.05 59.46 0.37 0.47 ind:pre:3p; +admettes admettre ver 50.05 59.46 0.30 0.00 sub:pre:2s; +admettez admettre ver 50.05 59.46 2.22 0.47 imp:pre:2p;ind:pre:2p; +admettiez admettre ver 50.05 59.46 0.21 0.07 ind:imp:2p; +admettions admettre ver 50.05 59.46 0.03 0.20 ind:imp:1p; +admettons admettre ver 50.05 59.46 4.30 2.70 imp:pre:1p;ind:pre:1p; +admettra admettre ver 50.05 59.46 0.45 0.20 ind:fut:3s; +admettrai admettre ver 50.05 59.46 0.28 0.34 ind:fut:1s; +admettraient admettre ver 50.05 59.46 0.00 0.14 cnd:pre:3p; +admettrais admettre ver 50.05 59.46 0.06 0.20 cnd:pre:1s;cnd:pre:2s; +admettrait admettre ver 50.05 59.46 0.25 0.54 cnd:pre:3s; +admettras admettre ver 50.05 59.46 0.09 0.20 ind:fut:2s; +admettre admettre ver 50.05 59.46 17.92 19.73 inf; +admettrez admettre ver 50.05 59.46 0.22 0.20 ind:fut:2p; +admettriez admettre ver 50.05 59.46 0.03 0.00 cnd:pre:2p; +admettrons admettre ver 50.05 59.46 0.02 0.14 ind:fut:1p; +admettront admettre ver 50.05 59.46 0.09 0.00 ind:fut:3p; +administra administrer ver 3.53 8.04 0.00 0.47 ind:pas:3s; +administrai administrer ver 3.53 8.04 0.00 0.07 ind:pas:1s; +administraient administrer ver 3.53 8.04 0.01 0.34 ind:imp:3p; +administrais administrer ver 3.53 8.04 0.01 0.14 ind:imp:1s; +administrait administrer ver 3.53 8.04 0.04 0.74 ind:imp:3s; +administrant administrer ver 3.53 8.04 0.06 0.27 par:pre; +administrateur administrateur nom m s 4.95 4.73 4.05 3.78 +administrateurs administrateur nom m p 4.95 4.73 0.80 0.95 +administratif administratif adj m s 3.27 11.08 1.34 2.97 +administratifs administratif adj m p 3.27 11.08 0.63 1.62 +administration administration nom f s 13.40 26.42 13.24 23.85 +administrations administration nom f p 13.40 26.42 0.16 2.57 +administrative administratif adj f s 3.27 11.08 0.70 4.26 +administrativement administrativement adv 0.05 0.14 0.05 0.14 +administratives administratif adj f p 3.27 11.08 0.60 2.23 +administratrice administrateur nom f s 4.95 4.73 0.10 0.00 +administre administrer ver 3.53 8.04 0.92 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +administrent administrer ver 3.53 8.04 0.04 0.34 ind:pre:3p; +administrer administrer ver 3.53 8.04 1.12 2.84 inf; +administrera administrer ver 3.53 8.04 0.05 0.07 ind:fut:3s; +administrerai administrer ver 3.53 8.04 0.16 0.00 ind:fut:1s; +administrerons administrer ver 3.53 8.04 0.03 0.00 ind:fut:1p; +administres administrer ver 3.53 8.04 0.01 0.07 ind:pre:2s; +administrez administrer ver 3.53 8.04 0.10 0.07 imp:pre:2p;ind:pre:2p; +administrât administrer ver 3.53 8.04 0.00 0.07 sub:imp:3s; +administré administrer ver m s 3.53 8.04 0.63 1.08 par:pas; +administrée administrer ver f s 3.53 8.04 0.19 0.41 par:pas; +administrées administrer ver f p 3.53 8.04 0.01 0.14 par:pas; +administrés administré nom m p 0.47 0.61 0.27 0.34 +admira admirer ver 32.39 68.18 0.01 3.04 ind:pas:3s; +admirable admirable adj s 6.51 31.55 6.02 23.92 +admirablement admirablement adv 0.71 4.73 0.71 4.73 +admirables admirable adj p 6.51 31.55 0.49 7.64 +admirai admirer ver 32.39 68.18 0.14 0.81 ind:pas:1s; +admiraient admirer ver 32.39 68.18 0.06 1.82 ind:imp:3p; +admirais admirer ver 32.39 68.18 3.11 6.35 ind:imp:1s;ind:imp:2s; +admirait admirer ver 32.39 68.18 0.99 11.49 ind:imp:3s; +admirant admirer ver 32.39 68.18 0.08 1.82 par:pre; +admirateur admirateur nom m s 5.28 5.14 2.63 1.28 +admirateurs admirateur nom m p 5.28 5.14 2.33 2.91 +admiratif admiratif adj m s 0.41 6.96 0.26 2.57 +admiratifs admiratif adj m p 0.41 6.96 0.00 1.49 +admiration admiration nom f s 4.54 32.70 4.54 32.30 +admirations admiration nom f p 4.54 32.70 0.00 0.41 +admirative admiratif adj f s 0.41 6.96 0.02 2.30 +admirativement admirativement adv 0.00 0.20 0.00 0.20 +admiratives admiratif adj f p 0.41 6.96 0.14 0.61 +admiratrice admirateur nom f s 5.28 5.14 0.32 0.27 +admiratrices admiratrice nom f p 0.36 0.00 0.36 0.00 +admire admirer ver 32.39 68.18 13.85 13.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +admirent admirer ver 32.39 68.18 0.86 0.95 ind:pre:3p; +admirer admirer ver 32.39 68.18 6.50 17.64 inf;; +admirera admirer ver 32.39 68.18 0.05 0.07 ind:fut:3s; +admirerai admirer ver 32.39 68.18 0.04 0.07 ind:fut:1s; +admirerais admirer ver 32.39 68.18 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +admirerait admirer ver 32.39 68.18 0.03 0.27 cnd:pre:3s; +admirerez admirer ver 32.39 68.18 0.01 0.07 ind:fut:2p; +admireront admirer ver 32.39 68.18 0.04 0.14 ind:fut:3p; +admires admirer ver 32.39 68.18 0.82 0.41 ind:pre:2s; +admirez admirer ver 32.39 68.18 2.25 1.42 imp:pre:2p;ind:pre:2p; +admiriez admirer ver 32.39 68.18 0.22 0.00 ind:imp:2p; +admirions admirer ver 32.39 68.18 0.12 0.81 ind:imp:1p; +admirâmes admirer ver 32.39 68.18 0.00 0.07 ind:pas:1p; +admirons admirer ver 32.39 68.18 0.43 0.61 imp:pre:1p;ind:pre:1p; +admirèrent admirer ver 32.39 68.18 0.00 0.74 ind:pas:3p; +admiré admirer ver m s 32.39 68.18 2.00 4.12 par:pas; +admirée admirer ver f s 32.39 68.18 0.66 1.15 par:pas; +admirées admirer ver f p 32.39 68.18 0.04 0.27 par:pas; +admirés admirer ver m p 32.39 68.18 0.05 0.54 par:pas; +admis admettre ver m 50.05 59.46 6.74 11.35 ind:pas:1s;par:pas;par:pas; +admise admettre ver f s 50.05 59.46 1.75 2.03 par:pas; +admises admettre ver f p 50.05 59.46 0.20 0.54 par:pas; +admissibilité admissibilité nom f s 0.02 0.07 0.02 0.07 +admissible admissible adj m s 0.49 0.61 0.44 0.54 +admissibles admissible adj f p 0.49 0.61 0.05 0.07 +admission admission nom f s 3.42 1.82 2.34 1.82 +admissions admission nom f p 3.42 1.82 1.08 0.00 +admit admettre ver 50.05 59.46 0.24 2.84 ind:pas:3s; +admixtion admixtion nom f s 0.00 0.07 0.00 0.07 +admonesta admonester ver 0.03 0.61 0.00 0.07 ind:pas:3s; +admonestait admonester ver 0.03 0.61 0.00 0.07 ind:imp:3s; +admonestation admonestation nom f s 0.00 0.47 0.00 0.34 +admonestations admonestation nom f p 0.00 0.47 0.00 0.14 +admoneste admonester ver 0.03 0.61 0.02 0.20 ind:pre:3s; +admonester admonester ver 0.03 0.61 0.01 0.00 inf; +admonestât admonester ver 0.03 0.61 0.00 0.07 sub:imp:3s; +admonesté admonester ver m s 0.03 0.61 0.00 0.07 par:pas; +admonestés admonester ver m p 0.03 0.61 0.00 0.14 par:pas; +admonition admonition nom f s 0.12 0.20 0.01 0.14 +admonitions admonition nom f p 0.12 0.20 0.11 0.07 +ado ado nom s 3.40 0.20 3.40 0.20 +adobe adobe nom m s 0.08 0.00 0.08 0.00 +adolescence adolescence nom f s 2.88 13.78 2.88 13.72 +adolescences adolescence nom f p 2.88 13.78 0.00 0.07 +adolescent adolescent nom m s 6.84 25.20 2.38 9.66 +adolescente adolescent nom f s 6.84 25.20 1.59 7.57 +adolescentes adolescent nom f p 6.84 25.20 0.53 1.28 +adolescents adolescent nom m p 6.84 25.20 2.34 6.69 +adon adon nom m s 0.01 0.00 0.01 0.00 +adonc adonc adv 0.00 0.07 0.00 0.07 +adoncques adoncques adv 0.00 0.07 0.00 0.07 +adonies adonies nom f p 0.00 0.07 0.00 0.07 +adonis adonis nom m 0.28 0.00 0.28 0.00 +adonisant adoniser ver 0.00 0.07 0.00 0.07 par:pre; +adonna adonner ver 1.60 5.74 0.00 0.47 ind:pas:3s; +adonnai adonner ver 1.60 5.74 0.00 0.14 ind:pas:1s; +adonnaient adonner ver 1.60 5.74 0.16 0.61 ind:imp:3p; +adonnais adonner ver 1.60 5.74 0.01 0.14 ind:imp:1s; +adonnait adonner ver 1.60 5.74 0.09 0.81 ind:imp:3s; +adonnant adonner ver 1.60 5.74 0.02 0.07 par:pre; +adonne adonner ver 1.60 5.74 0.55 0.81 ind:pre:1s;ind:pre:3s; +adonnent adonner ver 1.60 5.74 0.20 0.34 ind:pre:3p; +adonner adonner ver 1.60 5.74 0.48 1.08 inf; +adonnerait adonner ver 1.60 5.74 0.00 0.07 cnd:pre:3s; +adonnez adonner ver 1.60 5.74 0.01 0.00 ind:pre:2p; +adonnions adonner ver 1.60 5.74 0.00 0.14 ind:imp:1p; +adonné adonner ver m s 1.60 5.74 0.04 0.61 par:pas; +adonnée adonner ver f s 1.60 5.74 0.02 0.00 par:pas; +adonnées adonner ver f p 1.60 5.74 0.00 0.07 par:pas; +adonnés adonner ver m p 1.60 5.74 0.01 0.41 par:pas; +adopta adopter ver 15.18 29.86 0.05 1.49 ind:pas:3s; +adoptable adoptable adj f s 0.00 0.07 0.00 0.07 +adoptai adopter ver 15.18 29.86 0.02 0.41 ind:pas:1s; +adoptaient adopter ver 15.18 29.86 0.01 0.14 ind:imp:3p; +adoptais adopter ver 15.18 29.86 0.00 0.14 ind:imp:1s; +adoptait adopter ver 15.18 29.86 0.13 1.89 ind:imp:3s; +adoptant adoptant adj m s 0.00 0.07 0.00 0.07 +adoptant adopter ver 15.18 29.86 0.06 0.81 par:pre; +adopte adopter ver 15.18 29.86 1.28 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adoptent adopter ver 15.18 29.86 0.11 0.41 ind:pre:3p; +adopter adopter ver 15.18 29.86 7.25 9.19 inf; +adoptera adopter ver 15.18 29.86 0.14 0.00 ind:fut:3s; +adopterai adopter ver 15.18 29.86 0.05 0.07 ind:fut:1s; +adopteraient adopter ver 15.18 29.86 0.00 0.14 cnd:pre:3p; +adopterait adopter ver 15.18 29.86 0.02 0.34 cnd:pre:3s; +adopterez adopter ver 15.18 29.86 0.02 0.14 ind:fut:2p; +adopterons adopter ver 15.18 29.86 0.02 0.00 ind:fut:1p; +adopteront adopter ver 15.18 29.86 0.04 0.14 ind:fut:3p; +adoptez adopter ver 15.18 29.86 0.23 0.07 imp:pre:2p;ind:pre:2p; +adoptif adoptif adj m s 3.98 3.38 2.15 1.96 +adoptifs adoptif adj m p 3.98 3.38 1.12 0.20 +adoption adoption nom f s 4.06 2.91 3.97 2.84 +adoptions adoption nom f p 4.06 2.91 0.09 0.07 +adoptive adoptif adj f s 3.98 3.38 0.70 1.15 +adoptives adoptif adj f p 3.98 3.38 0.01 0.07 +adoptons adopter ver 15.18 29.86 0.28 0.14 imp:pre:1p;ind:pre:1p; +adoptât adopter ver 15.18 29.86 0.00 0.41 sub:imp:3s; +adoptèrent adopter ver 15.18 29.86 0.02 0.47 ind:pas:3p; +adopté adopter ver m s 15.18 29.86 3.77 7.36 par:pas; +adoptée adopter ver f s 15.18 29.86 1.25 2.64 par:pas; +adoptées adopter ver f p 15.18 29.86 0.17 0.61 par:pas; +adoptés adopter ver m p 15.18 29.86 0.23 0.47 par:pas; +adora adorer ver 193.67 44.59 0.06 0.07 ind:pas:3s; +adorable adorable adj s 25.95 7.97 23.00 6.28 +adorablement adorablement adv 0.20 0.27 0.20 0.27 +adorables adorable adj p 25.95 7.97 2.94 1.69 +adorai adorer ver 193.67 44.59 0.03 0.14 ind:pas:1s; +adoraient adorer ver 193.67 44.59 1.29 2.09 ind:imp:3p; +adorais adorer ver 193.67 44.59 6.44 2.30 ind:imp:1s;ind:imp:2s; +adorait adorer ver 193.67 44.59 7.02 9.46 ind:imp:3s; +adorant adorer ver 193.67 44.59 0.14 0.14 par:pre; +adorante adorant adj f s 0.01 0.20 0.00 0.07 +adorants adorant adj m p 0.01 0.20 0.00 0.07 +adorateur adorateur nom m s 1.22 1.82 0.30 0.34 +adorateurs adorateur nom m p 1.22 1.82 0.71 1.42 +adoration adoration nom f s 0.88 5.07 0.88 4.86 +adorations adoration nom f p 0.88 5.07 0.00 0.20 +adoratrice adorateur nom f s 1.22 1.82 0.21 0.00 +adoratrices adoratrice nom f p 0.11 0.00 0.11 0.00 +adore adorer ver 193.67 44.59 121.69 16.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +adorent adorer ver 193.67 44.59 10.76 2.91 ind:pre:3p;sub:pre:3p; +adorer adorer ver 193.67 44.59 11.79 3.31 inf; +adorera adorer ver 193.67 44.59 0.75 0.14 ind:fut:3s; +adorerai adorer ver 193.67 44.59 0.36 0.00 ind:fut:1s; +adoreraient adorer ver 193.67 44.59 0.52 0.00 cnd:pre:3p; +adorerais adorer ver 193.67 44.59 7.39 0.07 cnd:pre:1s;cnd:pre:2s; +adorerait adorer ver 193.67 44.59 1.32 0.07 cnd:pre:3s; +adoreras adorer ver 193.67 44.59 0.60 0.00 ind:fut:2s; +adorerez adorer ver 193.67 44.59 0.51 0.00 ind:fut:2p; +adoreriez adorer ver 193.67 44.59 0.08 0.00 cnd:pre:2p; +adorerions adorer ver 193.67 44.59 0.12 0.00 cnd:pre:1p; +adorerons adorer ver 193.67 44.59 0.01 0.00 ind:fut:1p; +adoreront adorer ver 193.67 44.59 0.24 0.07 ind:fut:3p; +adores adorer ver 193.67 44.59 4.37 0.27 ind:pre:2s; +adorez adorer ver 193.67 44.59 1.11 0.14 imp:pre:2p;ind:pre:2p; +adoriez adorer ver 193.67 44.59 0.26 0.07 ind:imp:2p; +adorions adorer ver 193.67 44.59 0.09 0.20 ind:imp:1p; +adornaient adorner ver 0.01 0.47 0.00 0.20 ind:imp:3p; +adornait adorner ver 0.01 0.47 0.00 0.14 ind:imp:3s; +adorne adorner ver 0.01 0.47 0.01 0.07 imp:pre:2s;ind:pre:3s; +adorné adorner ver m s 0.01 0.47 0.00 0.07 par:pas; +adorons adorer ver 193.67 44.59 1.22 0.54 imp:pre:1p;ind:pre:1p; +adorèrent adorer ver 193.67 44.59 0.02 0.00 ind:pas:3p; +adoré adorer ver m s 193.67 44.59 12.81 3.11 par:pas; +adorée adorer ver f s 193.67 44.59 2.27 1.82 par:pas; +adorées adorer ver f p 193.67 44.59 0.19 0.27 par:pas; +adorés adorer ver m p 193.67 44.59 0.24 0.68 par:pas; +ados ados nom m 3.27 0.27 3.27 0.27 +adossa adosser ver 0.80 16.89 0.00 2.23 ind:pas:3s; +adossai adosser ver 0.80 16.89 0.10 0.07 ind:pas:1s; +adossaient adosser ver 0.80 16.89 0.00 0.27 ind:imp:3p; +adossais adosser ver 0.80 16.89 0.01 0.14 ind:imp:1s; +adossait adosser ver 0.80 16.89 0.00 0.68 ind:imp:3s; +adossant adosser ver 0.80 16.89 0.01 0.14 par:pre; +adosse adosser ver 0.80 16.89 0.28 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adossent adosser ver 0.80 16.89 0.00 0.07 ind:pre:3p; +adosser adosser ver 0.80 16.89 0.07 1.35 inf; +adossez adosser ver 0.80 16.89 0.04 0.00 imp:pre:2p;ind:pre:2p; +adossèrent adosser ver 0.80 16.89 0.00 0.14 ind:pas:3p; +adossé adosser ver m s 0.80 16.89 0.28 6.49 par:pas; +adossée adossé adj f s 0.13 0.34 0.10 0.14 +adossées adosser ver f p 0.80 16.89 0.01 0.34 par:pas; +adossés adosser ver m p 0.80 16.89 0.00 1.49 par:pas; +adouba adouber ver 0.04 0.34 0.00 0.07 ind:pas:3s; +adoubement adoubement nom m s 0.01 0.27 0.01 0.27 +adouber adouber ver 0.04 0.34 0.01 0.00 inf; +adoubé adouber ver m s 0.04 0.34 0.03 0.27 par:pas; +adoucît adoucir ver 3.27 11.01 0.00 0.07 sub:imp:3s; +adouci adoucir ver m s 3.27 11.01 0.44 1.01 par:pas; +adoucie adoucir ver f s 3.27 11.01 0.29 1.08 par:pas; +adoucies adoucir ver f p 3.27 11.01 0.02 0.27 par:pas; +adoucir adoucir ver 3.27 11.01 1.56 3.58 inf; +adoucira adoucir ver 3.27 11.01 0.09 0.14 ind:fut:3s; +adoucirait adoucir ver 3.27 11.01 0.02 0.14 cnd:pre:3s; +adoucirent adoucir ver 3.27 11.01 0.00 0.07 ind:pas:3p; +adoucis adoucir ver m p 3.27 11.01 0.20 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +adoucissaient adoucir ver 3.27 11.01 0.00 0.27 ind:imp:3p; +adoucissait adoucir ver 3.27 11.01 0.02 1.35 ind:imp:3s; +adoucissant adoucissant nom m s 0.06 0.00 0.06 0.00 +adoucissantes adoucissant adj f p 0.00 0.14 0.00 0.07 +adoucisse adoucir ver 3.27 11.01 0.01 0.07 sub:pre:1s;sub:pre:3s; +adoucissement adoucissement nom m s 0.01 0.61 0.01 0.54 +adoucissements adoucissement nom m p 0.01 0.61 0.00 0.07 +adoucissent adoucir ver 3.27 11.01 0.02 0.34 ind:pre:3p; +adoucisseur adoucisseur nom m s 0.04 0.14 0.03 0.00 +adoucisseurs adoucisseur nom m p 0.04 0.14 0.01 0.14 +adoucissez adoucir ver 3.27 11.01 0.13 0.00 imp:pre:2p; +adoucit adoucir ver 3.27 11.01 0.46 2.09 ind:pre:3s;ind:pas:3s; +adp adp nom m s 0.04 0.00 0.04 0.00 +adragante adragant adj f s 0.00 0.07 0.00 0.07 +adressa adresser ver 30.71 98.04 0.19 11.15 ind:pas:3s; +adressage adressage nom m s 0.01 0.00 0.01 0.00 +adressai adresser ver 30.71 98.04 0.00 2.57 ind:pas:1s; +adressaient adresser ver 30.71 98.04 0.06 3.04 ind:imp:3p; +adressais adresser ver 30.71 98.04 0.24 1.49 ind:imp:1s;ind:imp:2s; +adressait adresser ver 30.71 98.04 0.76 14.12 ind:imp:3s; +adressant adresser ver 30.71 98.04 0.41 9.39 par:pre; +adressassent adresser ver 30.71 98.04 0.00 0.07 sub:imp:3p; +adresse adresse nom f s 73.92 49.80 67.28 43.92 +adressent adresser ver 30.71 98.04 0.71 1.55 ind:pre:3p; +adresser adresser ver 30.71 98.04 7.95 17.91 inf; +adressera adresser ver 30.71 98.04 0.66 0.34 ind:fut:3s; +adresserai adresser ver 30.71 98.04 0.34 0.34 ind:fut:1s; +adresseraient adresser ver 30.71 98.04 0.00 0.14 cnd:pre:3p; +adresserais adresser ver 30.71 98.04 0.04 0.20 cnd:pre:1s;cnd:pre:2s; +adresserait adresser ver 30.71 98.04 0.02 0.81 cnd:pre:3s; +adresseras adresser ver 30.71 98.04 0.03 0.00 ind:fut:2s; +adresserez adresser ver 30.71 98.04 0.11 0.07 ind:fut:2p; +adresserons adresser ver 30.71 98.04 0.11 0.07 ind:fut:1p; +adresseront adresser ver 30.71 98.04 0.17 0.07 ind:fut:3p; +adresses adresse nom f p 73.92 49.80 6.65 5.88 +adressez adresser ver 30.71 98.04 2.77 0.47 imp:pre:2p;ind:pre:2p; +adressiez adresser ver 30.71 98.04 0.34 0.00 ind:imp:2p; +adressions adresser ver 30.71 98.04 0.00 0.41 ind:imp:1p; +adressâmes adresser ver 30.71 98.04 0.00 0.14 ind:pas:1p; +adressons adresser ver 30.71 98.04 0.20 0.47 imp:pre:1p;ind:pre:1p; +adressât adresser ver 30.71 98.04 0.00 0.68 sub:imp:3s; +adressèrent adresser ver 30.71 98.04 0.02 0.34 ind:pas:3p; +adressé adresser ver m s 30.71 98.04 2.66 9.73 par:pas; +adressée adresser ver f s 30.71 98.04 1.76 5.20 par:pas; +adressées adresser ver f p 30.71 98.04 0.41 2.09 par:pas; +adressés adresser ver m p 30.71 98.04 0.51 0.88 par:pas; +adret adret nom m s 0.00 0.07 0.00 0.07 +adriatique adriatique adj s 0.14 0.14 0.14 0.07 +adriatiques adriatique adj p 0.14 0.14 0.00 0.07 +adroit adroit adj m s 1.87 4.86 1.13 3.51 +adroite adroit adj f s 1.87 4.86 0.41 0.74 +adroitement adroitement adv 0.85 1.96 0.85 1.96 +adroites adroit adj f p 1.87 4.86 0.25 0.07 +adroits adroit adj m p 1.87 4.86 0.09 0.54 +adrénaline adrénaline nom f s 3.57 0.68 3.56 0.68 +adrénalines adrénaline nom f p 3.57 0.68 0.01 0.00 +adulaient aduler ver 0.51 1.62 0.00 0.07 ind:imp:3p; +adulais aduler ver 0.51 1.62 0.02 0.00 ind:imp:1s; +adulait aduler ver 0.51 1.62 0.02 0.07 ind:imp:3s; +adulateur adulateur nom m s 0.10 0.07 0.10 0.07 +adulation adulation nom f s 0.16 0.81 0.16 0.61 +adulations adulation nom f p 0.16 0.81 0.00 0.20 +adulent aduler ver 0.51 1.62 0.27 0.00 ind:pre:3p; +aduler aduler ver 0.51 1.62 0.04 0.07 inf; +adultat adultat nom m s 0.00 0.14 0.00 0.14 +adulte adulte nom s 23.34 27.64 9.78 10.41 +adultes adulte nom p 23.34 27.64 13.56 17.23 +adultère adultère nom m s 3.69 3.65 3.54 3.18 +adultères adultère nom m p 3.69 3.65 0.15 0.47 +adultéraient adultérer ver 0.01 0.14 0.00 0.07 ind:imp:3p; +adultération adultération nom f s 0.00 0.07 0.00 0.07 +adultérin adultérin adj m s 0.02 0.34 0.01 0.00 +adultérine adultérin adj f s 0.02 0.34 0.01 0.14 +adultérins adultérin adj m p 0.02 0.34 0.00 0.20 +adultéré adultérer ver m s 0.01 0.14 0.01 0.00 par:pas; +adultérées adultérer ver f p 0.01 0.14 0.00 0.07 par:pas; +adulé aduler ver m s 0.51 1.62 0.09 0.61 par:pas; +adulée aduler ver f s 0.51 1.62 0.03 0.47 par:pas; +adulés aduler ver m p 0.51 1.62 0.04 0.34 par:pas; +adénine adénine nom f s 0.01 0.00 0.01 0.00 +adénocarcinome adénocarcinome nom m s 0.04 0.00 0.04 0.00 +adénome adénome nom m s 0.05 0.07 0.05 0.07 +adénopathie adénopathie nom f s 0.01 0.00 0.01 0.00 +adénosine adénosine nom f s 0.07 0.00 0.07 0.00 +adénovirus adénovirus nom m 0.01 0.00 0.01 0.00 +adéquat adéquat adj m s 3.28 4.80 1.35 1.82 +adéquate adéquat adj f s 3.28 4.80 1.23 1.69 +adéquatement adéquatement adv 0.03 0.00 0.03 0.00 +adéquates adéquat adj f p 3.28 4.80 0.50 0.47 +adéquation adéquation nom f s 0.14 0.34 0.14 0.34 +adéquats adéquat adj m p 3.28 4.80 0.21 0.81 +advînt advenir ver 7.94 9.39 0.00 0.34 sub:imp:3s; +advenait advenir ver 7.94 9.39 0.11 0.74 ind:imp:3s; +advenir advenir ver 7.94 9.39 1.03 1.15 inf; +adventices adventice adj m p 0.00 0.20 0.00 0.20 +adventiste adventiste nom s 0.27 0.00 0.27 0.00 +advenu advenir ver m s 7.94 9.39 0.99 1.62 par:pas; +advenue advenir ver f s 7.94 9.39 0.00 0.20 par:pas; +advenues advenir ver f p 7.94 9.39 0.00 0.07 par:pas; +adverbe adverbe nom m s 0.11 0.61 0.09 0.27 +adverbes adverbe nom m p 0.11 0.61 0.02 0.34 +adversaire adversaire nom s 10.96 25.14 7.61 15.95 +adversaires adversaire nom p 10.96 25.14 3.36 9.19 +adverse adverse adj s 1.93 4.32 1.83 2.50 +adverses adverse adj p 1.93 4.32 0.10 1.82 +adversité adversité nom f s 1.30 2.16 1.27 2.09 +adversités adversité nom f p 1.30 2.16 0.02 0.07 +adviendra advenir ver 7.94 9.39 2.53 0.68 ind:fut:3s; +adviendrait advenir ver 7.94 9.39 0.25 0.68 cnd:pre:3s; +advienne advenir ver 7.94 9.39 1.24 1.01 sub:pre:1s;sub:pre:3s; +adviennent advenir ver 7.94 9.39 0.00 0.07 ind:pre:3p; +advient advenir ver 7.94 9.39 0.58 1.49 ind:pre:3s; +advint advenir ver 7.94 9.39 1.20 1.35 ind:pas:3s; +aegipans aegipan nom m p 0.00 0.07 0.00 0.07 +affût affût nom m s 1.42 11.35 1.36 10.81 +affûta affûter ver 0.77 3.65 0.00 0.14 ind:pas:3s; +affûtage affûtage nom m s 0.04 0.14 0.04 0.14 +affûtait affûter ver 0.77 3.65 0.00 0.14 ind:imp:3s; +affûtant affûter ver 0.77 3.65 0.00 0.20 par:pre; +affûte affûter ver 0.77 3.65 0.11 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affûter affûter ver 0.77 3.65 0.20 0.74 inf; +affûterai affûter ver 0.77 3.65 0.01 0.00 ind:fut:1s; +affûteur affûteur nom m s 0.01 0.07 0.01 0.07 +affûtez affûter ver 0.77 3.65 0.01 0.00 imp:pre:2p; +affûtât affûter ver 0.77 3.65 0.00 0.07 sub:imp:3s; +affûts affût nom m p 1.42 11.35 0.06 0.54 +affûté affûter ver m s 0.77 3.65 0.23 0.81 par:pas; +affûtée affûter ver f s 0.77 3.65 0.12 0.68 par:pas; +affûtées affûter ver f p 0.77 3.65 0.02 0.07 par:pas; +affûtés affûter ver m p 0.77 3.65 0.06 0.41 par:pas; +affabilité affabilité nom f s 0.13 1.28 0.13 1.22 +affabilités affabilité nom f p 0.13 1.28 0.00 0.07 +affable affable adj s 0.39 3.78 0.37 3.11 +affablement affablement adv 0.00 0.20 0.00 0.20 +affables affable adj p 0.39 3.78 0.02 0.68 +affabulation affabulation nom f s 0.22 1.22 0.20 1.01 +affabulations affabulation nom f p 0.22 1.22 0.02 0.20 +affabulatrice affabulateur nom f s 0.14 0.00 0.14 0.00 +affabule affabuler ver 0.28 0.27 0.15 0.14 ind:pre:1s;ind:pre:3s; +affabuler affabuler ver 0.28 0.27 0.00 0.07 inf; +affabules affabuler ver 0.28 0.27 0.14 0.00 ind:pre:2s; +affabulé affabuler ver m s 0.28 0.27 0.00 0.07 par:pas; +affacturage affacturage nom m s 0.01 0.00 0.01 0.00 +affadi affadir ver m s 0.01 1.35 0.00 0.20 par:pas; +affadie affadir ver f s 0.01 1.35 0.00 0.27 par:pas; +affadies affadir ver f p 0.01 1.35 0.00 0.07 par:pas; +affadir affadir ver 0.01 1.35 0.00 0.14 inf; +affadis affadir ver m p 0.01 1.35 0.00 0.07 par:pas; +affadissaient affadir ver 0.01 1.35 0.00 0.07 ind:imp:3p; +affadissait affadir ver 0.01 1.35 0.00 0.34 ind:imp:3s; +affadissant affadir ver 0.01 1.35 0.00 0.07 par:pre; +affadisse affadir ver 0.01 1.35 0.01 0.07 sub:pre:1s;sub:pre:3s; +affadissement affadissement nom m s 0.00 0.20 0.00 0.20 +affadit affadir ver 0.01 1.35 0.00 0.07 ind:pas:3s; +affaibli affaiblir ver m s 6.66 7.84 1.62 1.49 par:pas; +affaiblie affaiblir ver f s 6.66 7.84 0.38 0.61 par:pas; +affaiblies affaiblir ver f p 6.66 7.84 0.02 0.27 par:pas; +affaiblir affaiblir ver 6.66 7.84 1.13 1.35 inf; +affaiblira affaiblir ver 6.66 7.84 0.30 0.07 ind:fut:3s; +affaiblis affaiblir ver m p 6.66 7.84 0.84 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +affaiblissaient affaiblir ver 6.66 7.84 0.00 0.14 ind:imp:3p; +affaiblissais affaiblir ver 6.66 7.84 0.00 0.07 ind:imp:1s; +affaiblissait affaiblir ver 6.66 7.84 0.23 1.01 ind:imp:3s; +affaiblissant affaiblir ver 6.66 7.84 0.17 0.61 par:pre; +affaiblisse affaiblir ver 6.66 7.84 0.05 0.00 sub:pre:1s;sub:pre:3s; +affaiblissement affaiblissement nom m s 0.23 1.49 0.23 1.49 +affaiblissent affaiblir ver 6.66 7.84 0.30 0.41 ind:pre:3p; +affaiblissez affaiblir ver 6.66 7.84 0.04 0.00 ind:pre:2p; +affaiblissons affaiblir ver 6.66 7.84 0.02 0.00 ind:pre:1p; +affaiblit affaiblir ver 6.66 7.84 1.56 1.22 ind:pre:3s;ind:pas:3s; +affaira affairer ver 2.75 13.38 0.00 0.68 ind:pas:3s; +affairai affairer ver 2.75 13.38 0.00 0.07 ind:pas:1s; +affairaient affairer ver 2.75 13.38 0.01 2.43 ind:imp:3p; +affairais affairer ver 2.75 13.38 0.00 0.07 ind:imp:1s; +affairait affairer ver 2.75 13.38 0.01 2.70 ind:imp:3s; +affairant affairer ver 2.75 13.38 0.00 0.47 par:pre; +affaire affaire nom f s 393.83 253.38 207.50 150.54 +affairement affairement nom m s 0.00 0.54 0.00 0.34 +affairements affairement nom m p 0.00 0.54 0.00 0.20 +affairent affairer ver 2.75 13.38 0.44 1.42 ind:pre:3p; +affairer affairer ver 2.75 13.38 0.28 1.42 inf; +affaireraient affairer ver 2.75 13.38 0.00 0.07 cnd:pre:3p; +affaires affaire nom f p 393.83 253.38 186.32 102.84 +affairions affairer ver 2.75 13.38 0.00 0.07 ind:imp:1p; +affairisme affairisme nom m s 0.00 0.07 0.00 0.07 +affairiste affairiste adj m s 0.01 0.14 0.01 0.14 +affairistes affairiste nom p 0.14 0.14 0.14 0.07 +affairons affairer ver 2.75 13.38 0.00 0.07 ind:pre:1p; +affairèrent affairer ver 2.75 13.38 0.00 0.20 ind:pas:3p; +affairé affairer ver m s 2.75 13.38 0.16 0.41 par:pas; +affairée affairé adj f s 0.21 2.64 0.04 0.61 +affairées affairé adj f p 0.21 2.64 0.01 0.27 +affairés affairé adj m p 0.21 2.64 0.12 0.74 +affaissa affaisser ver 1.03 11.22 0.00 1.08 ind:pas:3s; +affaissaient affaisser ver 1.03 11.22 0.01 0.41 ind:imp:3p; +affaissait affaisser ver 1.03 11.22 0.03 0.74 ind:imp:3s; +affaissant affaisser ver 1.03 11.22 0.01 0.61 par:pre; +affaisse affaisser ver 1.03 11.22 0.31 1.49 imp:pre:2s;ind:pre:3s; +affaissement affaissement nom m s 0.08 1.55 0.07 1.35 +affaissements affaissement nom m p 0.08 1.55 0.01 0.20 +affaissent affaisser ver 1.03 11.22 0.34 1.08 ind:pre:3p; +affaisser affaisser ver 1.03 11.22 0.03 0.88 inf; +affaisseraient affaisser ver 1.03 11.22 0.00 0.14 cnd:pre:3p; +affaisserait affaisser ver 1.03 11.22 0.00 0.07 cnd:pre:3s; +affaissions affaisser ver 1.03 11.22 0.00 0.07 ind:imp:1p; +affaissèrent affaisser ver 1.03 11.22 0.00 0.14 ind:pas:3p; +affaissé affaisser ver m s 1.03 11.22 0.14 2.50 par:pas; +affaissée affaisser ver f s 1.03 11.22 0.05 1.15 par:pas; +affaissées affaisser ver f p 1.03 11.22 0.00 0.41 par:pas; +affaissés affaisser ver m p 1.03 11.22 0.11 0.47 par:pas; +affala affaler ver 1.01 14.05 0.00 2.09 ind:pas:3s; +affalai affaler ver 1.01 14.05 0.00 0.07 ind:pas:1s; +affalaient affaler ver 1.01 14.05 0.00 0.20 ind:imp:3p; +affalais affaler ver 1.01 14.05 0.00 0.14 ind:imp:1s; +affalait affaler ver 1.01 14.05 0.01 0.54 ind:imp:3s; +affalant affaler ver 1.01 14.05 0.01 0.74 par:pre; +affale affaler ver 1.01 14.05 0.10 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affalement affalement nom m s 0.01 0.14 0.01 0.14 +affalent affaler ver 1.01 14.05 0.01 0.27 ind:pre:3p; +affaler affaler ver 1.01 14.05 0.27 1.89 inf; +affalez affaler ver 1.01 14.05 0.05 0.00 imp:pre:2p; +affalons affaler ver 1.01 14.05 0.00 0.07 ind:pre:1p; +affalèrent affaler ver 1.01 14.05 0.00 0.14 ind:pas:3p; +affalé affaler ver m s 1.01 14.05 0.38 3.92 par:pas; +affalée affaler ver f s 1.01 14.05 0.04 1.01 par:pas; +affalées affaler ver f p 1.01 14.05 0.02 0.54 par:pas; +affalés affaler ver m p 1.01 14.05 0.13 1.08 par:pas; +affamaient affamer ver 6.01 3.72 0.01 0.07 ind:imp:3p; +affamait affamer ver 6.01 3.72 0.03 0.34 ind:imp:3s; +affamant affamer ver 6.01 3.72 0.17 0.07 par:pre; +affamantes affamant adj f p 0.00 0.07 0.00 0.07 +affame affamer ver 6.01 3.72 0.25 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affament affamer ver 6.01 3.72 0.18 0.00 ind:pre:3p; +affamer affamer ver 6.01 3.72 0.33 0.14 inf; +affamera affamer ver 6.01 3.72 0.01 0.00 ind:fut:3s; +affamez affamer ver 6.01 3.72 0.05 0.00 imp:pre:2p;ind:pre:2p; +affamé affamer ver m s 6.01 3.72 2.99 1.15 par:pas; +affamée affamé adj f s 5.67 6.08 0.73 1.35 +affamées affamé adj f p 5.67 6.08 0.59 0.68 +affamés affamé adj m p 5.67 6.08 1.92 2.50 +affect affect nom m s 0.26 0.00 0.26 0.00 +affecta affecter ver 16.08 25.34 0.03 1.28 ind:pas:3s; +affectai affecter ver 16.08 25.34 0.00 0.14 ind:pas:1s; +affectaient affecter ver 16.08 25.34 0.07 1.62 ind:imp:3p; +affectais affecter ver 16.08 25.34 0.01 0.34 ind:imp:1s; +affectait affecter ver 16.08 25.34 0.36 4.12 ind:imp:3s; +affectant affecter ver 16.08 25.34 0.27 2.36 par:pre; +affectassent affecter ver 16.08 25.34 0.00 0.07 sub:imp:3p; +affectation affectation nom f s 2.93 5.27 2.65 5.00 +affectations affectation nom f p 2.93 5.27 0.28 0.27 +affecte affecter ver 16.08 25.34 4.38 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affectent affecter ver 16.08 25.34 0.61 1.01 ind:pre:3p; +affecter affecter ver 16.08 25.34 2.33 2.23 inf; +affectera affecter ver 16.08 25.34 0.72 0.14 ind:fut:3s; +affecterai affecter ver 16.08 25.34 0.03 0.07 ind:fut:1s; +affecteraient affecter ver 16.08 25.34 0.02 0.00 cnd:pre:3p; +affecterait affecter ver 16.08 25.34 0.32 0.00 cnd:pre:3s; +affecteriez affecter ver 16.08 25.34 0.01 0.00 cnd:pre:2p; +affecteront affecter ver 16.08 25.34 0.04 0.00 ind:fut:3p; +affectez affecter ver 16.08 25.34 0.20 0.07 imp:pre:2p;ind:pre:2p; +affectiez affecter ver 16.08 25.34 0.01 0.07 ind:imp:2p; +affectif affectif adj m s 2.05 2.91 0.94 1.28 +affectifs affectif adj m p 2.05 2.91 0.27 0.34 +affection affection nom f s 13.06 31.22 12.68 29.53 +affectionnaient affectionner ver 0.40 4.12 0.00 0.20 ind:imp:3p; +affectionnais affectionner ver 0.40 4.12 0.00 0.14 ind:imp:1s; +affectionnait affectionner ver 0.40 4.12 0.07 1.49 ind:imp:3s; +affectionnant affectionner ver 0.40 4.12 0.00 0.14 par:pre; +affectionne affectionner ver 0.40 4.12 0.22 1.01 ind:pre:1s;ind:pre:3s; +affectionnent affectionner ver 0.40 4.12 0.00 0.74 ind:pre:3p; +affectionner affectionner ver 0.40 4.12 0.00 0.20 inf; +affectionnez affectionner ver 0.40 4.12 0.01 0.14 imp:pre:2p;ind:pre:2p; +affectionné affectionner ver m s 0.40 4.12 0.10 0.00 par:pas; +affectionnée affectionné adj f s 0.01 0.41 0.00 0.27 +affectionnés affectionné adj m p 0.01 0.41 0.00 0.07 +affections affection nom f p 13.06 31.22 0.38 1.69 +affective affectif adj f s 2.05 2.91 0.66 1.08 +affectivement affectivement adv 0.30 0.20 0.30 0.20 +affectives affectif adj f p 2.05 2.91 0.18 0.20 +affectivité affectivité nom f s 0.01 0.41 0.01 0.41 +affectâmes affecter ver 16.08 25.34 0.00 0.07 ind:pas:1p; +affectons affecter ver 16.08 25.34 0.03 0.20 imp:pre:1p;ind:pre:1p; +affectât affecter ver 16.08 25.34 0.00 0.14 sub:imp:3s; +affectèrent affecter ver 16.08 25.34 0.00 0.61 ind:pas:3p; +affecté affecter ver m s 16.08 25.34 4.43 4.93 par:pas; +affectée affecter ver f s 16.08 25.34 1.17 1.35 par:pas; +affectées affecter ver f p 16.08 25.34 0.29 0.74 par:pas; +affectueuse affectueux adj f s 5.20 14.59 1.56 5.41 +affectueusement affectueusement adv 1.11 3.38 1.11 3.38 +affectueuses affectueux adj f p 5.20 14.59 0.08 1.22 +affectueux affectueux adj m 5.20 14.59 3.56 7.97 +affectés affecter ver m p 16.08 25.34 0.73 1.22 par:pas; +affermi affermir ver m s 0.23 5.61 0.02 0.34 par:pas; +affermie affermir ver f s 0.23 5.61 0.01 0.54 par:pas; +affermir affermir ver 0.23 5.61 0.02 1.69 inf; +affermira affermir ver 0.23 5.61 0.02 0.00 ind:fut:3s; +affermis affermir ver m p 0.23 5.61 0.00 0.41 ind:pre:1s;par:pas; +affermissaient affermir ver 0.23 5.61 0.00 0.20 ind:imp:3p; +affermissait affermir ver 0.23 5.61 0.00 0.34 ind:imp:3s; +affermissant affermir ver 0.23 5.61 0.01 0.34 par:pre; +affermisse affermir ver 0.23 5.61 0.00 0.07 sub:pre:3s; +affermissement affermissement nom m s 0.00 0.14 0.00 0.14 +affermissent affermir ver 0.23 5.61 0.01 0.20 ind:pre:3p; +affermit affermir ver 0.23 5.61 0.14 1.49 ind:pre:3s;ind:pas:3s; +afficha afficher ver 8.35 19.26 0.00 0.47 ind:pas:3s; +affichage affichage nom m s 1.30 1.49 1.29 1.42 +affichages affichage nom m p 1.30 1.49 0.01 0.07 +affichaient afficher ver 8.35 19.26 0.01 1.35 ind:imp:3p; +affichais afficher ver 8.35 19.26 0.02 0.68 ind:imp:1s;ind:imp:2s; +affichait afficher ver 8.35 19.26 0.15 4.93 ind:imp:3s; +affichant afficher ver 8.35 19.26 0.19 1.49 par:pre; +affiche affiche nom f s 9.78 19.86 5.38 8.38 +affichent afficher ver 8.35 19.26 0.52 0.68 ind:pre:3p; +afficher afficher ver 8.35 19.26 2.06 3.78 ind:pre:2p;inf; +affichera afficher ver 8.35 19.26 0.04 0.07 ind:fut:3s; +afficherai afficher ver 8.35 19.26 0.07 0.00 ind:fut:1s; +afficherait afficher ver 8.35 19.26 0.01 0.14 cnd:pre:3s; +affiches affiche nom f p 9.78 19.86 4.39 11.49 +affichette affichette nom f s 0.26 1.35 0.19 1.08 +affichettes affichette nom f p 0.26 1.35 0.07 0.27 +afficheur afficheur nom m s 0.03 0.27 0.01 0.27 +afficheurs afficheur nom m p 0.03 0.27 0.01 0.00 +affichez afficher ver 8.35 19.26 0.41 0.07 imp:pre:2p;ind:pre:2p; +affichions afficher ver 8.35 19.26 0.00 0.14 ind:imp:1p; +affichiste affichiste nom s 0.00 0.20 0.00 0.14 +affichistes affichiste nom p 0.00 0.20 0.00 0.07 +affichons afficher ver 8.35 19.26 0.16 0.00 imp:pre:1p;ind:pre:1p; +affichât afficher ver 8.35 19.26 0.00 0.07 sub:imp:3s; +affichèrent afficher ver 8.35 19.26 0.00 0.20 ind:pas:3p; +affiché afficher ver m s 8.35 19.26 1.79 1.62 par:pas; +affichée afficher ver f s 8.35 19.26 0.29 0.88 par:pas; +affichées afficher ver f p 8.35 19.26 0.17 0.47 par:pas; +affichés afficher ver m p 8.35 19.26 0.11 0.74 par:pas; +affidavit affidavit nom m s 0.06 0.00 0.06 0.00 +affidé affidé nom m s 0.01 0.27 0.01 0.14 +affidée affidé adj f s 0.00 0.07 0.00 0.07 +affidés affidé nom m p 0.01 0.27 0.00 0.14 +affile affiler ver 0.04 0.07 0.00 0.07 ind:pre:3s; +affiler affiler ver 0.04 0.07 0.03 0.00 inf; +affilia affilier ver 0.36 0.74 0.00 0.07 ind:pas:3s; +affiliaient affilier ver 0.36 0.74 0.00 0.07 ind:imp:3p; +affiliant affilier ver 0.36 0.74 0.00 0.07 par:pre; +affiliation affiliation nom f s 0.33 0.14 0.26 0.14 +affiliations affiliation nom f p 0.33 0.14 0.07 0.00 +affilier affilier ver 0.36 0.74 0.01 0.27 inf; +affilié affilier ver m s 0.36 0.74 0.15 0.20 par:pas; +affiliée affilier ver f s 0.36 0.74 0.04 0.00 par:pas; +affiliées affilié nom f p 0.14 0.41 0.04 0.00 +affiliés affilier ver m p 0.36 0.74 0.17 0.07 par:pas; +affilé affilé adj m s 3.04 4.19 0.17 0.07 +affilée affilé adj f s 3.04 4.19 2.80 3.92 +affilées affilé adj f p 3.04 4.19 0.04 0.14 +affilés affilé adj m p 3.04 4.19 0.04 0.07 +affin affin adj m s 0.02 0.00 0.02 0.00 +affina affiner ver 0.76 3.38 0.00 0.07 ind:pas:3s; +affinage affinage nom m s 0.00 0.07 0.00 0.07 +affinaient affiner ver 0.76 3.38 0.00 0.07 ind:imp:3p; +affinait affiner ver 0.76 3.38 0.00 0.88 ind:imp:3s; +affinant affiner ver 0.76 3.38 0.00 0.41 par:pre; +affine affiner ver 0.76 3.38 0.18 0.34 ind:pre:1s;ind:pre:3s; +affinement affinement nom m s 0.01 0.20 0.01 0.20 +affinent affiner ver 0.76 3.38 0.01 0.20 ind:pre:3p; +affiner affiner ver 0.76 3.38 0.43 0.68 inf; +affinera affiner ver 0.76 3.38 0.02 0.00 ind:fut:3s; +affinerait affiner ver 0.76 3.38 0.01 0.07 cnd:pre:3s; +affinité affinité nom f s 1.23 4.46 0.60 2.16 +affinités affinité nom f p 1.23 4.46 0.62 2.30 +affinons affiner ver 0.76 3.38 0.01 0.00 ind:pre:1p; +affiné affiné adj m s 0.12 0.27 0.12 0.20 +affinée affiner ver f s 0.76 3.38 0.01 0.14 par:pas; +affinées affiner ver f p 0.76 3.38 0.02 0.20 par:pas; +affiquets affiquet nom m p 0.00 0.07 0.00 0.07 +affirma affirmer ver 15.61 63.51 0.06 10.07 ind:pas:3s; +affirmai affirmer ver 15.61 63.51 0.00 0.81 ind:pas:1s; +affirmaient affirmer ver 15.61 63.51 0.03 2.36 ind:imp:3p; +affirmais affirmer ver 15.61 63.51 0.03 1.22 ind:imp:1s;ind:imp:2s; +affirmait affirmer ver 15.61 63.51 0.53 11.08 ind:imp:3s; +affirmant affirmer ver 15.61 63.51 0.51 3.92 par:pre; +affirmatif affirmatif adj m s 4.91 1.89 4.82 1.35 +affirmatifs affirmatif adj m p 4.91 1.89 0.00 0.14 +affirmation affirmation nom f s 1.96 6.42 1.27 4.66 +affirmations affirmation nom f p 1.96 6.42 0.69 1.76 +affirmative affirmative nom f s 0.16 0.61 0.16 0.61 +affirmativement affirmativement adv 0.00 0.74 0.00 0.74 +affirme affirmer ver 15.61 63.51 5.46 9.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +affirment affirmer ver 15.61 63.51 1.67 2.70 ind:pre:3p; +affirmer affirmer ver 15.61 63.51 4.26 13.58 inf; +affirmerai affirmer ver 15.61 63.51 0.00 0.07 ind:fut:1s; +affirmerait affirmer ver 15.61 63.51 0.01 0.14 cnd:pre:3s; +affirmeras affirmer ver 15.61 63.51 0.01 0.07 ind:fut:2s; +affirmerez affirmer ver 15.61 63.51 0.01 0.00 ind:fut:2p; +affirmeriez affirmer ver 15.61 63.51 0.01 0.00 cnd:pre:2p; +affirmeront affirmer ver 15.61 63.51 0.03 0.07 ind:fut:3p; +affirmes affirmer ver 15.61 63.51 0.09 0.20 ind:pre:2s; +affirmez affirmer ver 15.61 63.51 0.87 0.41 imp:pre:2p;ind:pre:2p; +affirmiez affirmer ver 15.61 63.51 0.15 0.07 ind:imp:2p; +affirmions affirmer ver 15.61 63.51 0.00 0.14 ind:imp:1p; +affirmons affirmer ver 15.61 63.51 0.06 0.27 imp:pre:1p;ind:pre:1p; +affirmât affirmer ver 15.61 63.51 0.00 0.14 sub:imp:3s; +affirmèrent affirmer ver 15.61 63.51 0.01 0.81 ind:pas:3p; +affirmé affirmer ver m s 15.61 63.51 1.66 4.59 imp:pre:2s;par:pas;par:pas; +affirmée affirmer ver f s 15.61 63.51 0.04 0.41 par:pas; +affirmées affirmer ver f p 15.61 63.51 0.00 0.20 par:pas; +affirmés affirmer ver m p 15.61 63.51 0.10 0.27 par:pas; +affixé affixé adj m s 0.00 0.07 0.00 0.07 +afflanqué afflanquer ver m s 0.00 0.07 0.00 0.07 par:pas; +affleura affleurer ver 0.15 6.01 0.00 0.47 ind:pas:3s; +affleuraient affleurer ver 0.15 6.01 0.01 0.34 ind:imp:3p; +affleurait affleurer ver 0.15 6.01 0.11 1.08 ind:imp:3s; +affleurant affleurer ver 0.15 6.01 0.00 0.14 par:pre; +affleure affleurer ver 0.15 6.01 0.02 1.55 imp:pre:2s;ind:pre:3s; +affleurement affleurement nom m s 0.03 0.88 0.03 0.47 +affleurements affleurement nom m p 0.03 0.88 0.00 0.41 +affleurent affleurer ver 0.15 6.01 0.01 0.95 ind:pre:3p; +affleurer affleurer ver 0.15 6.01 0.00 1.08 inf; +affleurât affleurer ver 0.15 6.01 0.00 0.07 sub:imp:3s; +affleurèrent affleurer ver 0.15 6.01 0.00 0.14 ind:pas:3p; +affleuré affleurer ver m s 0.15 6.01 0.00 0.20 par:pas; +affliction affliction nom f s 1.27 2.77 1.09 2.50 +afflictions affliction nom f p 1.27 2.77 0.18 0.27 +afflige affliger ver 3.21 5.95 0.74 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affligea affliger ver 3.21 5.95 0.03 0.20 ind:pas:3s; +affligeaient affliger ver 3.21 5.95 0.01 0.07 ind:imp:3p; +affligeait affliger ver 3.21 5.95 0.01 0.20 ind:imp:3s; +affligeant affligeant adj m s 0.60 1.62 0.38 0.54 +affligeante affligeant adj f s 0.60 1.62 0.08 0.68 +affligeantes affligeant adj f p 0.60 1.62 0.02 0.27 +affligeants affligeant adj m p 0.60 1.62 0.12 0.14 +affligent affliger ver 3.21 5.95 0.20 0.14 ind:pre:3p; +affliger affliger ver 3.21 5.95 0.38 0.20 inf; +affligez affliger ver 3.21 5.95 0.03 0.07 imp:pre:2p; +affligèrent affliger ver 3.21 5.95 0.01 0.07 ind:pas:3p; +affligé affliger ver m s 3.21 5.95 1.11 2.30 par:pas; +affligée affliger ver f s 3.21 5.95 0.49 0.95 par:pas; +affligés affligé adj m p 1.66 1.49 0.60 0.34 +afflua affluer ver 1.51 7.50 0.00 0.27 ind:pas:3s; +affluaient affluer ver 1.51 7.50 0.04 1.69 ind:imp:3p; +affluait affluer ver 1.51 7.50 0.02 0.54 ind:imp:3s; +affluant affluer ver 1.51 7.50 0.11 0.27 par:pre; +afflue affluer ver 1.51 7.50 0.39 0.61 ind:pre:3s; +affluence affluence nom f s 0.51 2.64 0.51 2.64 +affluent affluer ver 1.51 7.50 0.61 1.49 ind:pre:3p; +affluentes affluent adj f p 0.16 0.41 0.00 0.07 +affluents affluent nom m p 0.39 0.95 0.34 0.41 +affluer affluer ver 1.51 7.50 0.21 1.35 inf; +afflueraient affluer ver 1.51 7.50 0.01 0.07 cnd:pre:3p; +affluèrent affluer ver 1.51 7.50 0.00 0.81 ind:pas:3p; +afflué affluer ver m s 1.51 7.50 0.12 0.41 par:pas; +afflux afflux nom m 0.25 2.30 0.25 2.30 +affola affoler ver 5.92 20.54 0.00 2.16 ind:pas:3s; +affolai affoler ver 5.92 20.54 0.00 0.14 ind:pas:1s; +affolaient affoler ver 5.92 20.54 0.01 0.54 ind:imp:3p; +affolais affoler ver 5.92 20.54 0.01 0.27 ind:imp:1s; +affolait affoler ver 5.92 20.54 0.02 2.70 ind:imp:3s; +affolant affolant adj m s 0.10 2.57 0.10 1.35 +affolante affolant adj f s 0.10 2.57 0.00 0.74 +affolantes affolant adj f p 0.10 2.57 0.00 0.20 +affolants affolant adj m p 0.10 2.57 0.00 0.27 +affole affoler ver 5.92 20.54 1.63 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affolement affolement nom m s 0.89 5.34 0.89 5.34 +affolent affoler ver 5.92 20.54 0.28 0.68 ind:pre:3p; +affoler affoler ver 5.92 20.54 1.00 2.50 inf;; +affolera affoler ver 5.92 20.54 0.14 0.07 ind:fut:3s; +affolerais affoler ver 5.92 20.54 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +affolerait affoler ver 5.92 20.54 0.14 0.07 cnd:pre:3s; +affoleront affoler ver 5.92 20.54 0.01 0.00 ind:fut:3p; +affoles affoler ver 5.92 20.54 0.23 0.20 ind:pre:2s; +affolez affoler ver 5.92 20.54 0.93 0.27 imp:pre:2p;ind:pre:2p; +affoliez affoler ver 5.92 20.54 0.01 0.00 ind:imp:2p; +affolons affoler ver 5.92 20.54 0.04 0.27 imp:pre:1p;ind:pre:1p; +affolât affoler ver 5.92 20.54 0.00 0.07 sub:imp:3s; +affolèrent affoler ver 5.92 20.54 0.00 0.14 ind:pas:3p; +affolé affoler ver m s 5.92 20.54 0.76 2.84 par:pas; +affolée affoler ver f s 5.92 20.54 0.51 1.22 par:pas; +affolées affolé adj f p 0.91 11.49 0.10 0.74 +affolés affolé adj m p 0.91 11.49 0.18 2.57 +affouage affouage nom m s 0.00 0.14 0.00 0.07 +affouages affouage nom m p 0.00 0.14 0.00 0.07 +affouillait affouiller ver 0.00 0.14 0.00 0.07 ind:imp:3s; +affouillement affouillement nom m s 0.00 0.14 0.00 0.07 +affouillements affouillement nom m p 0.00 0.14 0.00 0.07 +affouillé affouiller ver m s 0.00 0.14 0.00 0.07 par:pas; +affranchi affranchi nom m s 1.34 1.49 0.46 0.61 +affranchie affranchir ver f s 1.87 11.42 0.19 1.01 par:pas; +affranchies affranchi adj f p 0.24 1.82 0.00 0.34 +affranchir affranchir ver 1.87 11.42 0.55 5.20 inf; +affranchirait affranchir ver 1.87 11.42 0.00 0.14 cnd:pre:3s; +affranchis affranchi nom m p 1.34 1.49 0.76 0.61 +affranchissais affranchir ver 1.87 11.42 0.01 0.07 ind:imp:1s;ind:imp:2s; +affranchissait affranchir ver 1.87 11.42 0.00 0.27 ind:imp:3s; +affranchissant affranchir ver 1.87 11.42 0.00 0.27 par:pre; +affranchisse affranchir ver 1.87 11.42 0.01 0.47 sub:pre:1s;sub:pre:3s; +affranchissement affranchissement nom m s 0.05 0.47 0.05 0.47 +affranchit affranchir ver 1.87 11.42 0.29 1.15 ind:pre:3s;ind:pas:3s; +affres affre nom f p 1.23 2.36 1.23 2.36 +affreuse affreux adj f s 34.96 39.46 7.86 12.64 +affreusement affreusement adv 3.13 5.61 3.13 5.61 +affreuses affreux adj f p 34.96 39.46 1.77 4.59 +affreux affreux adj m 34.96 39.46 25.34 22.23 +affriandai affriander ver 0.00 0.27 0.00 0.07 ind:pas:1s; +affriander affriander ver 0.00 0.27 0.00 0.07 inf; +affriandé affriander ver m s 0.00 0.27 0.00 0.07 par:pas; +affriandés affriander ver m p 0.00 0.27 0.00 0.07 par:pas; +affriolait affrioler ver 0.02 0.27 0.00 0.07 ind:imp:3s; +affriolant affriolant adj m s 0.26 0.20 0.12 0.14 +affriolante affriolant adj f s 0.26 0.20 0.03 0.07 +affriolantes affriolant adj f p 0.26 0.20 0.04 0.00 +affriolants affriolant adj m p 0.26 0.20 0.07 0.00 +affriole affrioler ver 0.02 0.27 0.01 0.00 ind:pre:3s; +affrioler affrioler ver 0.02 0.27 0.00 0.07 inf; +affriolerait affrioler ver 0.02 0.27 0.01 0.00 cnd:pre:3s; +affriolés affrioler ver m p 0.02 0.27 0.00 0.07 par:pas; +affront affront nom m s 3.36 3.85 3.11 2.77 +affronta affronter ver 30.72 22.43 0.03 0.54 ind:pas:3s; +affrontai affronter ver 30.72 22.43 0.00 0.07 ind:pas:1s; +affrontaient affronter ver 30.72 22.43 0.20 1.62 ind:imp:3p; +affrontais affronter ver 30.72 22.43 0.17 0.27 ind:imp:1s;ind:imp:2s; +affrontait affronter ver 30.72 22.43 0.14 0.88 ind:imp:3s; +affrontant affronter ver 30.72 22.43 0.63 0.88 par:pre; +affronte affronter ver 30.72 22.43 2.96 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +affrontement affrontement nom m s 2.66 4.05 1.72 2.43 +affrontements affrontement nom m p 2.66 4.05 0.94 1.62 +affrontent affronter ver 30.72 22.43 0.74 1.49 ind:pre:3p; +affronter affronter ver 30.72 22.43 19.57 13.38 inf;; +affrontera affronter ver 30.72 22.43 0.63 0.07 ind:fut:3s; +affronterai affronter ver 30.72 22.43 0.56 0.00 ind:fut:1s; +affronteraient affronter ver 30.72 22.43 0.01 0.14 cnd:pre:3p; +affronterais affronter ver 30.72 22.43 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +affronterait affronter ver 30.72 22.43 0.08 0.41 cnd:pre:3s; +affronteras affronter ver 30.72 22.43 0.20 0.00 ind:fut:2s; +affronterez affronter ver 30.72 22.43 0.14 0.00 ind:fut:2p; +affronterons affronter ver 30.72 22.43 0.22 0.00 ind:fut:1p; +affronteront affronter ver 30.72 22.43 0.20 0.00 ind:fut:3p; +affrontes affronter ver 30.72 22.43 0.58 0.07 ind:pre:2s; +affrontez affronter ver 30.72 22.43 0.51 0.00 imp:pre:2p;ind:pre:2p; +affrontiez affronter ver 30.72 22.43 0.02 0.07 ind:imp:2p; +affrontions affronter ver 30.72 22.43 0.16 0.14 ind:imp:1p; +affrontons affronter ver 30.72 22.43 0.60 0.14 imp:pre:1p;ind:pre:1p; +affronts affront nom m p 3.36 3.85 0.25 1.08 +affrontèrent affronter ver 30.72 22.43 0.02 0.14 ind:pas:3p; +affronté affronter ver m s 30.72 22.43 1.92 0.81 par:pas; +affrontée affronter ver f s 30.72 22.43 0.11 0.14 par:pas; +affrontées affronter ver f p 30.72 22.43 0.04 0.14 par:pas; +affrontés affronter ver m p 30.72 22.43 0.23 0.20 par:pas; +affrète affréter ver 0.67 0.47 0.04 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +affrètement affrètement nom m s 0.03 0.00 0.03 0.00 +affréter affréter ver 0.67 0.47 0.28 0.27 inf; +affréterons affréter ver 0.67 0.47 0.00 0.07 ind:fut:1p; +affréteur affréteur nom m s 0.02 0.07 0.02 0.07 +affrétez affréter ver 0.67 0.47 0.18 0.00 imp:pre:2p;ind:pre:2p; +affrété affréter ver m s 0.67 0.47 0.18 0.07 par:pas; +affubla affubler ver 0.48 6.55 0.00 0.14 ind:pas:3s; +affublait affubler ver 0.48 6.55 0.00 0.41 ind:imp:3s; +affublant affubler ver 0.48 6.55 0.01 0.54 par:pre; +affuble affubler ver 0.48 6.55 0.03 0.47 ind:pre:1s;ind:pre:3s; +affublement affublement nom m s 0.00 0.14 0.00 0.14 +affublent affubler ver 0.48 6.55 0.02 0.34 ind:pre:3p; +affubler affubler ver 0.48 6.55 0.14 0.68 inf; +affublerais affubler ver 0.48 6.55 0.00 0.07 cnd:pre:1s; +affublerait affubler ver 0.48 6.55 0.00 0.14 cnd:pre:3s; +affublons affubler ver 0.48 6.55 0.00 0.07 ind:pre:1p; +affublé affubler ver m s 0.48 6.55 0.23 2.03 par:pas; +affublée affubler ver f s 0.48 6.55 0.03 0.34 par:pas; +affublées affubler ver f p 0.48 6.55 0.00 0.14 par:pas; +affublés affubler ver m p 0.48 6.55 0.02 1.22 par:pas; +affurait affurer ver 0.00 1.49 0.00 0.07 ind:imp:3s; +affure affurer ver 0.00 1.49 0.00 0.81 ind:pre:3s; +afférent afférent adj m s 0.06 0.34 0.04 0.00 +afférente afférent adj f s 0.06 0.34 0.01 0.00 +afférentes afférent adj f p 0.06 0.34 0.01 0.20 +afférents afférent adj m p 0.06 0.34 0.00 0.14 +affurer affurer ver 0.00 1.49 0.00 0.41 inf; +affures affurer ver 0.00 1.49 0.00 0.07 ind:pre:2s; +affuré affurer ver m s 0.00 1.49 0.00 0.07 par:pas; +affurée affurer ver f s 0.00 1.49 0.00 0.07 par:pas; +affusions affusion nom f p 0.00 0.07 0.00 0.07 +afféterie afféterie nom f s 0.00 0.41 0.00 0.20 +afféteries afféterie nom f p 0.00 0.41 0.00 0.20 +affétées affété adj f p 0.00 0.07 0.00 0.07 +afghan afghan adj m s 1.48 0.68 0.68 0.34 +afghane afghan adj f s 1.48 0.68 0.39 0.07 +afghanes afghan adj f p 1.48 0.68 0.16 0.14 +afghans afghan nom m p 1.12 0.20 0.47 0.07 +aficionado aficionado nom m s 0.21 0.68 0.04 0.20 +aficionados aficionado nom m p 0.21 0.68 0.17 0.47 +afin_d afin_d pre 0.04 0.07 0.04 0.07 +afin_de afin_de pre 15.64 43.18 15.64 43.18 +afin_qu afin_qu con 0.05 0.00 0.05 0.00 +afin_que afin_que con 9.63 14.93 9.63 14.93 +afin afin adv_sup 0.76 0.95 0.76 0.95 +africain africain adj m s 5.46 12.09 2.34 3.65 +africaine africain adj f s 5.46 12.09 1.40 4.32 +africaines africain adj f p 5.46 12.09 0.52 1.35 +africains africain nom m p 2.28 4.05 1.48 1.76 +africanisme africanisme nom m s 0.10 0.00 0.10 0.00 +afrikaans afrikaans nom m 0.05 0.00 0.05 0.00 +afrikaner afrikaner nom s 0.14 0.00 0.05 0.00 +afrikaners afrikaner nom p 0.14 0.00 0.09 0.00 +afro_américain afro_américain nom m s 0.95 0.00 0.48 0.00 +afro_américain afro_américain adj f s 0.67 0.00 0.23 0.00 +afro_américain afro_américain nom m p 0.95 0.00 0.39 0.00 +afro_asiatique afro_asiatique adj f s 0.01 0.00 0.01 0.00 +afro_brésilien afro_brésilien adj f s 0.01 0.00 0.01 0.00 +afro_cubain afro_cubain adj m s 0.03 0.07 0.01 0.00 +afro_cubain afro_cubain adj f s 0.03 0.07 0.02 0.00 +afro_cubain afro_cubain adj m p 0.03 0.07 0.00 0.07 +afro afro adj 1.21 0.27 1.21 0.27 +after_shave after_shave nom m 0.51 0.68 0.47 0.61 +after_shave after_shave nom m 0.51 0.68 0.03 0.07 +agît agir ver 195.94 219.73 0.07 1.08 sub:imp:3s; +aga aga nom m s 0.65 6.01 0.65 5.95 +agace agacer ver 6.34 30.68 2.30 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agacement agacement nom m s 0.21 7.57 0.21 7.30 +agacements agacement nom m p 0.21 7.57 0.00 0.27 +agacent agacer ver 6.34 30.68 0.44 1.08 ind:pre:3p; +agacer agacer ver 6.34 30.68 1.18 2.77 inf; +agacera agacer ver 6.34 30.68 0.01 0.14 ind:fut:3s; +agacerait agacer ver 6.34 30.68 0.01 0.14 cnd:pre:3s; +agaceras agacer ver 6.34 30.68 0.01 0.00 ind:fut:2s; +agacerie agacerie nom f s 0.01 0.54 0.00 0.07 +agaceries agacerie nom f p 0.01 0.54 0.01 0.47 +agaceront agacer ver 6.34 30.68 0.00 0.07 ind:fut:3p; +agaces agacer ver 6.34 30.68 0.46 0.27 ind:pre:2s; +agaceur agaceur nom m s 0.00 0.07 0.00 0.07 +agacez agacer ver 6.34 30.68 0.35 0.14 imp:pre:2p;ind:pre:2p; +agacèrent agacer ver 6.34 30.68 0.00 0.14 ind:pas:3p; +agacé agacer ver m s 6.34 30.68 0.74 8.45 par:pas; +agacée agacer ver f s 6.34 30.68 0.28 3.11 par:pas; +agacées agacer ver f p 6.34 30.68 0.00 0.34 par:pas; +agacés agacer ver m p 6.34 30.68 0.13 0.47 par:pas; +agames agame nom m p 0.01 0.00 0.01 0.00 +agami agami nom m s 0.00 0.07 0.00 0.07 +agapanthe agapanthe nom f s 0.01 0.07 0.01 0.00 +agapanthes agapanthe nom f p 0.01 0.07 0.00 0.07 +agape agape nom f s 0.04 0.68 0.00 0.07 +agapes agape nom f p 0.04 0.68 0.04 0.61 +agar_agar agar_agar nom m s 0.00 0.07 0.00 0.07 +agas aga nom m p 0.65 6.01 0.00 0.07 +agasses agasse nom f p 0.00 0.07 0.00 0.07 +agate agate nom f s 0.01 1.22 0.01 0.61 +agates agate nom f p 0.01 1.22 0.00 0.61 +agaça agacer ver 6.34 30.68 0.00 1.22 ind:pas:3s; +agaçaient agacer ver 6.34 30.68 0.01 1.96 ind:imp:3p; +agaçais agacer ver 6.34 30.68 0.00 0.27 ind:imp:1s; +agaçait agacer ver 6.34 30.68 0.35 6.42 ind:imp:3s; +agaçant agaçant adj m s 1.99 4.19 1.45 2.50 +agaçante agaçant adj f s 1.99 4.19 0.40 1.22 +agaçantes agaçant adj f p 1.99 4.19 0.07 0.14 +agaçants agaçant adj m p 1.99 4.19 0.07 0.34 +agathe agathe nom f s 0.00 0.14 0.00 0.14 +agave agave nom m s 0.01 0.47 0.00 0.07 +agaves agave nom m p 0.01 0.47 0.01 0.41 +age age nom m s 3.37 0.47 3.25 0.47 +agence agence nom f s 23.15 17.77 20.38 14.12 +agencement agencement nom m s 0.19 1.89 0.19 1.69 +agencements agencement nom m p 0.19 1.89 0.00 0.20 +agencer agencer ver 0.48 2.91 0.02 0.61 inf; +agences agence nom f p 23.15 17.77 2.77 3.65 +agencé agencer ver m s 0.48 2.91 0.16 0.61 par:pas; +agencée agencer ver f s 0.48 2.91 0.00 0.54 par:pas; +agencées agencer ver f p 0.48 2.91 0.01 0.27 par:pas; +agencés agencer ver m p 0.48 2.91 0.01 0.41 par:pas; +agenda agenda nom m s 5.84 6.08 5.69 5.41 +agendas agenda nom m p 5.84 6.08 0.16 0.68 +agenouilla agenouiller ver 5.20 23.31 0.03 5.54 ind:pas:3s; +agenouillai agenouiller ver 5.20 23.31 0.11 0.47 ind:pas:1s; +agenouillaient agenouiller ver 5.20 23.31 0.01 0.61 ind:imp:3p; +agenouillais agenouiller ver 5.20 23.31 0.00 0.27 ind:imp:1s; +agenouillait agenouiller ver 5.20 23.31 0.06 1.15 ind:imp:3s; +agenouillant agenouiller ver 5.20 23.31 0.01 0.88 par:pre; +agenouille agenouiller ver 5.20 23.31 1.52 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agenouillement agenouillement nom m s 0.27 0.27 0.27 0.27 +agenouillent agenouiller ver 5.20 23.31 0.14 0.61 ind:pre:3p; +agenouiller agenouiller ver 5.20 23.31 1.64 3.72 inf; +agenouillera agenouiller ver 5.20 23.31 0.06 0.00 ind:fut:3s; +agenouilleront agenouiller ver 5.20 23.31 0.01 0.00 ind:fut:3p; +agenouilles agenouiller ver 5.20 23.31 0.04 0.00 ind:pre:2s; +agenouillez agenouiller ver 5.20 23.31 0.33 0.00 imp:pre:2p;ind:pre:2p; +agenouillons agenouiller ver 5.20 23.31 0.12 0.07 imp:pre:1p;ind:pre:1p; +agenouillât agenouiller ver 5.20 23.31 0.00 0.07 sub:imp:3s; +agenouillèrent agenouiller ver 5.20 23.31 0.01 0.41 ind:pas:3p; +agenouillé agenouiller ver m s 5.20 23.31 1.04 3.72 par:pas; +agenouillée agenouiller ver f s 5.20 23.31 0.06 2.23 par:pas; +agenouillées agenouillé adj f p 0.15 2.36 0.00 0.41 +agenouillés agenouiller ver m p 5.20 23.31 0.02 1.08 par:pas; +agent agent nom m s 117.60 39.26 92.42 22.50 +agente agente nom f s 0.30 0.00 0.30 0.00 +agença agencer ver 0.48 2.91 0.00 0.07 ind:pas:3s; +agençaient agencer ver 0.48 2.91 0.01 0.07 ind:imp:3p; +agençait agencer ver 0.48 2.91 0.01 0.07 ind:imp:3s; +agençant agencer ver 0.48 2.91 0.00 0.07 par:pre; +agents agent nom m p 117.60 39.26 25.00 16.69 +ages age nom m p 3.37 0.47 0.13 0.00 +aggiornamento aggiornamento nom m s 0.04 0.07 0.04 0.07 +agglo agglo nom m s 0.00 0.07 0.00 0.07 +agglomère agglomérer ver 0.01 1.62 0.00 0.07 ind:pre:3s; +agglomèrent agglomérer ver 0.01 1.62 0.00 0.41 ind:pre:3p; +aggloméraient agglomérer ver 0.01 1.62 0.00 0.14 ind:imp:3p; +agglomérant agglomérer ver 0.01 1.62 0.00 0.07 par:pre; +agglomérat agglomérat nom m s 0.00 0.47 0.00 0.47 +agglomération agglomération nom f s 0.12 2.16 0.10 1.62 +agglomérations agglomération nom f p 0.12 2.16 0.02 0.54 +agglomérer agglomérer ver 0.01 1.62 0.00 0.20 inf; +agglomérera agglomérer ver 0.01 1.62 0.00 0.07 ind:fut:3s; +aggloméreront agglomérer ver 0.01 1.62 0.00 0.07 ind:fut:3p; +aggloméré aggloméré nom m s 0.06 0.34 0.06 0.27 +agglomérée agglomérer ver f s 0.01 1.62 0.00 0.14 par:pas; +agglomérées agglomérer ver f p 0.01 1.62 0.01 0.27 par:pas; +agglomérés aggloméré adj m p 0.00 0.47 0.00 0.41 +agglutina agglutiner ver 0.24 6.55 0.00 0.07 ind:pas:3s; +agglutinaient agglutiner ver 0.24 6.55 0.00 0.95 ind:imp:3p; +agglutinait agglutiner ver 0.24 6.55 0.00 0.34 ind:imp:3s; +agglutinant agglutiner ver 0.24 6.55 0.00 0.41 par:pre; +agglutinatif agglutinatif adj m s 0.00 0.07 0.00 0.07 +agglutination agglutination nom f s 0.01 0.14 0.01 0.14 +agglutine agglutiner ver 0.24 6.55 0.00 0.27 ind:pre:3s; +agglutinement agglutinement nom m s 0.00 0.07 0.00 0.07 +agglutinent agglutiner ver 0.24 6.55 0.04 1.01 ind:pre:3p; +agglutiner agglutiner ver 0.24 6.55 0.02 0.27 inf; +agglutinez agglutiner ver 0.24 6.55 0.01 0.00 imp:pre:2p; +agglutinogène agglutinogène nom m s 0.00 0.07 0.00 0.07 +agglutinèrent agglutiner ver 0.24 6.55 0.00 0.14 ind:pas:3p; +agglutiné agglutiner ver m s 0.24 6.55 0.01 0.20 par:pas; +agglutinée agglutiner ver f s 0.24 6.55 0.00 0.14 par:pas; +agglutinées agglutiner ver f p 0.24 6.55 0.01 0.88 par:pas; +agglutinés agglutiner ver m p 0.24 6.55 0.15 1.89 par:pas; +aggrava aggraver ver 7.61 10.54 0.02 0.68 ind:pas:3s; +aggravai aggraver ver 7.61 10.54 0.00 0.07 ind:pas:1s; +aggravaient aggraver ver 7.61 10.54 0.00 0.68 ind:imp:3p; +aggravait aggraver ver 7.61 10.54 0.06 2.43 ind:imp:3s; +aggravant aggraver ver 7.61 10.54 0.02 0.41 par:pre; +aggravante aggravant adj f s 0.26 0.54 0.02 0.34 +aggravantes aggravant adj f p 0.26 0.54 0.24 0.20 +aggravation aggravation nom f s 0.45 0.74 0.45 0.74 +aggrave aggraver ver 7.61 10.54 2.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aggravent aggraver ver 7.61 10.54 0.17 0.34 ind:pre:3p; +aggraver aggraver ver 7.61 10.54 2.32 2.43 inf; +aggravera aggraver ver 7.61 10.54 0.04 0.07 ind:fut:3s; +aggraverait aggraver ver 7.61 10.54 0.07 0.00 cnd:pre:3s; +aggraveriez aggraver ver 7.61 10.54 0.00 0.07 cnd:pre:2p; +aggravez aggraver ver 7.61 10.54 0.78 0.00 imp:pre:2p;ind:pre:2p; +aggraviez aggraver ver 7.61 10.54 0.00 0.07 ind:imp:2p; +aggravons aggraver ver 7.61 10.54 0.05 0.00 imp:pre:1p;ind:pre:1p; +aggravèrent aggraver ver 7.61 10.54 0.00 0.14 ind:pas:3p; +aggravé aggraver ver m s 7.61 10.54 1.36 0.88 par:pas; +aggravée aggraver ver f s 7.61 10.54 0.39 1.28 par:pas; +aggravées aggraver ver f p 7.61 10.54 0.04 0.07 par:pas; +aggravés aggraver ver m p 7.61 10.54 0.16 0.07 par:pas; +aghas agha nom m p 0.00 0.07 0.00 0.07 +agi agir ver m s 195.94 219.73 13.69 13.31 par:pas; +agie agir ver f s 195.94 219.73 0.14 0.00 par:pas; +agile agile adj s 2.17 5.00 1.69 3.31 +agiles agile adj p 2.17 5.00 0.47 1.69 +agilité agilité nom f s 1.00 3.38 1.00 3.31 +agilités agilité nom f p 1.00 3.38 0.00 0.07 +agios agio nom m p 0.17 0.07 0.17 0.07 +agioteur agioteur nom m s 0.01 0.07 0.01 0.07 +agir agir ver 195.94 219.73 37.48 29.66 inf; +agira agir ver 195.94 219.73 1.25 1.08 ind:fut:3s; +agirai agir ver 195.94 219.73 0.79 0.34 ind:fut:1s; +agiraient agir ver 195.94 219.73 0.03 0.14 cnd:pre:3p; +agirais agir ver 195.94 219.73 0.29 0.07 cnd:pre:1s;cnd:pre:2s; +agirait agir ver 195.94 219.73 2.08 3.85 cnd:pre:3s; +agiras agir ver 195.94 219.73 0.10 0.07 ind:fut:2s; +agirent agir ver 195.94 219.73 0.00 0.14 ind:pas:3p; +agirez agir ver 195.94 219.73 0.14 0.20 ind:fut:2p; +agiriez agir ver 195.94 219.73 0.09 0.00 cnd:pre:2p; +agirons agir ver 195.94 219.73 0.36 0.00 ind:fut:1p; +agiront agir ver 195.94 219.73 0.09 0.27 ind:fut:3p; +agis agir ver m p 195.94 219.73 6.61 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +agissaient agir ver 195.94 219.73 0.32 1.49 ind:imp:3p; +agissais agir ver 195.94 219.73 0.49 0.95 ind:imp:1s;ind:imp:2s; +agissait agir ver 195.94 219.73 12.30 80.47 ind:imp:3s; +agissant agir ver 195.94 219.73 1.26 4.32 par:pre; +agissante agissant adj f s 0.16 0.68 0.11 0.41 +agissantes agissant adj f p 0.16 0.68 0.00 0.14 +agisse agir ver 195.94 219.73 2.80 4.53 sub:pre:1s;sub:pre:3s; +agissement agissement nom m s 1.34 1.08 0.16 0.14 +agissements agissement nom m p 1.34 1.08 1.18 0.95 +agissent agir ver 195.94 219.73 3.61 1.69 ind:pre:3p; +agisses agir ver 195.94 219.73 0.27 0.00 sub:pre:2s; +agissez agir ver 195.94 219.73 4.20 0.74 imp:pre:2p;ind:pre:2p; +agissiez agir ver 195.94 219.73 0.23 0.14 ind:imp:2p; +agissions agir ver 195.94 219.73 0.12 0.07 ind:imp:1p; +agissons agir ver 195.94 219.73 2.14 0.61 imp:pre:1p;ind:pre:1p; +agit_prop agit_prop nom f 0.10 0.00 0.10 0.00 +agit agir ver 195.94 219.73 105.02 73.72 ind:pre:3s;ind:pas:3s; +agita agiter ver 14.62 89.19 0.06 6.76 ind:pas:3s; +agitai agiter ver 14.62 89.19 0.00 0.14 ind:pas:1s; +agitaient agiter ver 14.62 89.19 0.08 9.93 ind:imp:3p; +agitais agiter ver 14.62 89.19 0.20 0.41 ind:imp:1s;ind:imp:2s; +agitait agiter ver 14.62 89.19 0.47 17.09 ind:imp:3s; +agitant agiter ver 14.62 89.19 0.82 11.22 par:pre; +agitassent agiter ver 14.62 89.19 0.00 0.07 sub:imp:3p; +agitateur agitateur nom m s 1.72 1.89 0.86 0.68 +agitateurs agitateur nom m p 1.72 1.89 0.85 1.22 +agitation agitation nom f s 4.73 21.35 4.46 20.07 +agitations agitation nom f p 4.73 21.35 0.27 1.28 +agitato agitato adv 0.17 0.07 0.17 0.07 +agitatrice agitateur nom f s 1.72 1.89 0.01 0.00 +agite agiter ver 14.62 89.19 3.51 12.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agitent agiter ver 14.62 89.19 1.53 5.54 ind:pre:3p; +agiter agiter ver 14.62 89.19 2.72 11.89 inf; +agitera agiter ver 14.62 89.19 0.03 0.07 ind:fut:3s; +agiterai agiter ver 14.62 89.19 0.02 0.00 ind:fut:1s; +agiterait agiter ver 14.62 89.19 0.01 0.27 cnd:pre:3s; +agiteront agiter ver 14.62 89.19 0.06 0.14 ind:fut:3p; +agites agiter ver 14.62 89.19 0.84 0.07 ind:pre:2s; +agitez agiter ver 14.62 89.19 0.76 0.14 imp:pre:2p;ind:pre:2p; +agitiez agiter ver 14.62 89.19 0.04 0.00 ind:imp:2p; +agitions agiter ver 14.62 89.19 0.00 0.07 ind:imp:1p; +agitons agiter ver 14.62 89.19 0.01 0.14 ind:pre:1p; +agitât agiter ver 14.62 89.19 0.00 0.07 sub:imp:3s; +agitèrent agiter ver 14.62 89.19 0.01 1.22 ind:pas:3p; +agité agité adj m s 5.37 9.86 2.90 3.38 +agitée agité adj f s 5.37 9.86 1.76 3.38 +agitées agité adj f p 5.37 9.86 0.20 1.49 +agités agité adj m p 5.37 9.86 0.51 1.62 +aglagla aglagla adv 0.00 0.07 0.00 0.07 +agnat agnat nom m s 0.03 0.07 0.03 0.07 +agnathes agnathe nom m p 0.00 0.07 0.00 0.07 +agneau agneau nom m s 16.13 8.78 13.01 5.95 +agneaux agneau nom m p 16.13 8.78 3.12 2.84 +agnela agneler ver 0.00 0.47 0.00 0.47 ind:pas:3s; +agnelage agnelage nom m s 0.00 0.07 0.00 0.07 +agnelet agnelet nom m s 0.11 0.07 0.11 0.07 +agneline agneline nom f s 0.00 0.07 0.00 0.07 +agnelle agnel nom f s 0.14 0.41 0.14 0.14 +agnelles agnel nom f p 0.14 0.41 0.00 0.27 +agnosie agnosie nom f s 0.02 0.00 0.02 0.00 +agnostique agnostique adj f s 0.08 0.47 0.08 0.41 +agnostiques agnostique nom p 0.03 0.14 0.01 0.07 +agnus_dei agnus_dei nom m 0.00 0.07 0.00 0.07 +agnus_dei agnus_dei nom m 0.47 0.14 0.47 0.14 +agonie agonie nom f s 4.68 14.59 4.44 13.38 +agonies agonie nom f p 4.68 14.59 0.25 1.22 +agonique agonique adj f s 0.01 0.00 0.01 0.00 +agoniques agonique nom p 0.00 0.14 0.00 0.07 +agonir agonir ver 0.03 0.95 0.01 0.61 inf; +agonirent agonir ver 0.03 0.95 0.00 0.07 ind:pas:3p; +agonisa agoniser ver 1.36 5.34 0.00 0.14 ind:pas:3s; +agonisai agoniser ver 1.36 5.34 0.00 0.07 ind:pas:1s; +agonisaient agoniser ver 1.36 5.34 0.00 0.34 ind:imp:3p; +agonisais agoniser ver 1.36 5.34 0.03 0.07 ind:imp:1s; +agonisait agoniser ver 1.36 5.34 0.23 1.62 ind:imp:3s; +agonisant agonisant adj m s 0.52 2.30 0.41 1.08 +agonisante agonisant adj f s 0.52 2.30 0.07 0.88 +agonisantes agonisant adj f p 0.52 2.30 0.01 0.27 +agonisants agonisant nom m p 0.23 3.38 0.17 1.35 +agonise agoniser ver 1.36 5.34 0.45 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agonisent agoniser ver 1.36 5.34 0.14 0.34 ind:pre:3p; +agoniser agoniser ver 1.36 5.34 0.10 1.01 inf; +agonisez agoniser ver 1.36 5.34 0.02 0.07 imp:pre:2p; +agonisiez agoniser ver 1.36 5.34 0.02 0.07 ind:imp:2p; +agonissait agonir ver 0.03 0.95 0.00 0.07 ind:imp:3s; +agoniste agoniste adj s 0.00 0.07 0.00 0.07 +agonisé agoniser ver m s 1.36 5.34 0.26 0.00 par:pas; +agonit agonir ver 0.03 0.95 0.00 0.14 ind:pre:3s;ind:pas:3s; +agora agora nom f s 0.03 0.68 0.03 0.68 +agoraphobe agoraphobe adj m s 0.07 0.00 0.07 0.00 +agoraphobes agoraphobe nom p 0.01 0.07 0.00 0.07 +agoraphobie agoraphobie nom f s 0.23 0.07 0.23 0.07 +agouti agouti nom m s 0.01 0.41 0.01 0.34 +agoutis agouti nom m p 0.01 0.41 0.00 0.07 +agoyate agoyate nom m s 0.00 0.41 0.00 0.27 +agoyates agoyate nom m p 0.00 0.41 0.00 0.14 +agrafa agrafer ver 1.34 2.36 0.00 0.07 ind:pas:3s; +agrafage agrafage nom m s 0.03 0.00 0.03 0.00 +agrafait agrafer ver 1.34 2.36 0.00 0.47 ind:imp:3s; +agrafant agrafer ver 1.34 2.36 0.00 0.14 par:pre; +agrafe agrafe nom f s 0.86 2.43 0.34 0.88 +agrafent agrafer ver 1.34 2.36 0.01 0.07 ind:pre:3p; +agrafer agrafer ver 1.34 2.36 0.85 0.47 inf; +agraferai agrafer ver 1.34 2.36 0.01 0.00 ind:fut:1s; +agrafes agrafe nom f p 0.86 2.43 0.52 1.55 +agrafeur agrafeur nom m s 0.75 0.14 0.03 0.00 +agrafeuse agrafeur nom f s 0.75 0.14 0.73 0.07 +agrafeuses agrafeuse nom f p 0.06 0.00 0.06 0.00 +agrafez agrafer ver 1.34 2.36 0.06 0.00 imp:pre:2p;ind:pre:2p; +agrafons agrafer ver 1.34 2.36 0.02 0.00 imp:pre:1p; +agrafé agrafer ver m s 1.34 2.36 0.15 0.41 par:pas; +agrafée agrafer ver f s 1.34 2.36 0.04 0.41 par:pas; +agrafées agrafer ver f p 1.34 2.36 0.00 0.07 par:pas; +agrafés agrafer ver m p 1.34 2.36 0.03 0.07 par:pas; +agrainage agrainage nom m s 0.00 0.07 0.00 0.07 +agraire agraire adj s 0.35 0.54 0.31 0.41 +agraires agraire adj p 0.35 0.54 0.04 0.14 +agrandît agrandir ver 7.26 16.15 0.00 0.07 sub:imp:3s; +agrandi agrandir ver m s 7.26 16.15 0.53 1.96 par:pas; +agrandie agrandir ver f s 7.26 16.15 0.45 1.62 par:pas; +agrandies agrandir ver f p 7.26 16.15 0.00 0.68 par:pas; +agrandir agrandir ver 7.26 16.15 3.89 2.70 inf; +agrandira agrandir ver 7.26 16.15 0.14 0.14 ind:fut:3s; +agrandirai agrandir ver 7.26 16.15 0.01 0.00 ind:fut:1s; +agrandirait agrandir ver 7.26 16.15 0.28 0.00 cnd:pre:3s; +agrandirent agrandir ver 7.26 16.15 0.00 0.61 ind:pas:3p; +agrandiront agrandir ver 7.26 16.15 0.01 0.00 ind:fut:3p; +agrandis agrandir ver m p 7.26 16.15 0.41 3.85 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +agrandissaient agrandir ver 7.26 16.15 0.00 0.74 ind:imp:3p; +agrandissait agrandir ver 7.26 16.15 0.04 1.01 ind:imp:3s; +agrandissant agrandir ver 7.26 16.15 0.16 0.47 par:pre; +agrandissement agrandissement nom m s 0.90 1.69 0.68 1.28 +agrandissements agrandissement nom m p 0.90 1.69 0.21 0.41 +agrandissent agrandir ver 7.26 16.15 0.03 0.54 ind:pre:3p; +agrandisseur agrandisseur nom m s 0.13 0.27 0.13 0.20 +agrandisseurs agrandisseur nom m p 0.13 0.27 0.00 0.07 +agrandissez agrandir ver 7.26 16.15 0.44 0.14 imp:pre:2p;ind:pre:2p; +agrandissons agrandir ver 7.26 16.15 0.04 0.00 imp:pre:1p; +agrandit agrandir ver 7.26 16.15 0.86 1.62 ind:pre:3s;ind:pas:3s; +agranulocytose agranulocytose nom f s 0.01 0.00 0.01 0.00 +agrarien agrarien adj m s 0.00 0.14 0.00 0.14 +agressa agresser ver 13.39 2.97 0.01 0.07 ind:pas:3s; +agressaient agresser ver 13.39 2.97 0.02 0.07 ind:imp:3p; +agressais agresser ver 13.39 2.97 0.02 0.07 ind:imp:1s;ind:imp:2s; +agressait agresser ver 13.39 2.97 0.08 0.14 ind:imp:3s; +agressant agresser ver 13.39 2.97 0.05 0.07 par:pre; +agresse agresser ver 13.39 2.97 1.46 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agressent agresser ver 13.39 2.97 0.07 0.07 ind:pre:3p; +agresser agresser ver 13.39 2.97 2.42 0.34 inf; +agresseraient agresser ver 13.39 2.97 0.01 0.00 cnd:pre:3p; +agresserait agresser ver 13.39 2.97 0.01 0.00 cnd:pre:3s; +agresseur agresseur nom m s 6.87 3.78 5.03 2.43 +agresseurs agresseur nom m p 6.87 3.78 1.84 1.35 +agressez agresser ver 13.39 2.97 0.17 0.00 ind:pre:2p; +agressif agressif adj m s 9.83 15.88 5.76 6.82 +agressifs agressif adj m p 9.83 15.88 1.20 1.69 +agression agression nom f s 12.91 6.15 10.92 4.53 +agressions agression nom f p 12.91 6.15 1.99 1.62 +agressive agressif adj f s 9.83 15.88 2.48 6.22 +agressivement agressivement adv 0.11 1.01 0.11 1.01 +agressives agressif adj f p 9.83 15.88 0.39 1.15 +agressivité agressivité nom f s 2.54 5.00 2.54 4.86 +agressivités agressivité nom f p 2.54 5.00 0.00 0.14 +agressé agresser ver m s 13.39 2.97 5.33 0.81 par:pas; +agressée agresser ver f s 13.39 2.97 2.56 0.41 par:pas; +agressées agresser ver f p 13.39 2.97 0.25 0.07 par:pas; +agressés agresser ver m p 13.39 2.97 0.92 0.20 par:pas; +agreste agreste adj s 0.10 0.81 0.10 0.68 +agrestes agreste adj f p 0.10 0.81 0.00 0.14 +agriche agricher ver 0.00 0.14 0.00 0.07 ind:pre:3s; +agriches agricher ver 0.00 0.14 0.00 0.07 ind:pre:2s; +agricole agricole adj s 3.31 7.36 2.03 4.32 +agricoles agricole adj p 3.31 7.36 1.28 3.04 +agriculteur agriculteur nom m s 1.06 1.76 0.42 0.54 +agriculteurs agriculteur nom m p 1.06 1.76 0.63 1.08 +agricultrice agriculteur nom f s 1.06 1.76 0.01 0.00 +agricultrices agriculteur nom f p 1.06 1.76 0.00 0.14 +agriculture agriculture nom f s 3.39 2.77 3.39 2.77 +agrippa agripper ver 2.81 17.57 0.12 2.50 ind:pas:3s; +agrippai agripper ver 2.81 17.57 0.00 0.54 ind:pas:1s; +agrippaient agripper ver 2.81 17.57 0.00 1.08 ind:imp:3p; +agrippais agripper ver 2.81 17.57 0.01 0.07 ind:imp:1s;ind:imp:2s; +agrippait agripper ver 2.81 17.57 0.33 1.82 ind:imp:3s; +agrippant agripper ver 2.81 17.57 0.08 2.03 par:pre; +agrippants agrippant adj m p 0.00 0.14 0.00 0.07 +agrippe agripper ver 2.81 17.57 0.72 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agrippement agrippement nom m s 0.00 0.07 0.00 0.07 +agrippent agripper ver 2.81 17.57 0.09 1.08 ind:pre:3p; +agripper agripper ver 2.81 17.57 0.44 1.28 imp:pre:2p;inf; +agrippes agripper ver 2.81 17.57 0.09 0.07 ind:pre:2s; +agrippez agripper ver 2.81 17.57 0.11 0.00 imp:pre:2p;ind:pre:2p; +agrippions agripper ver 2.81 17.57 0.00 0.07 ind:imp:1p; +agrippèrent agripper ver 2.81 17.57 0.00 0.41 ind:pas:3p; +agrippé agripper ver m s 2.81 17.57 0.56 2.30 par:pas; +agrippée agripper ver f s 2.81 17.57 0.23 1.01 par:pas; +agrippées agripper ver f p 2.81 17.57 0.03 0.61 par:pas; +agrippés agripper ver m p 2.81 17.57 0.01 0.81 par:pas; +agro_alimentaire agro_alimentaire adj f s 0.15 0.00 0.15 0.00 +agro agro nom s 0.00 0.20 0.00 0.20 +agroalimentaire agroalimentaire nom m s 0.04 0.00 0.04 0.00 +agronome agronome nom s 0.40 0.34 0.40 0.20 +agronomes agronome nom p 0.40 0.34 0.00 0.14 +agronomie agronomie nom f s 0.07 0.07 0.07 0.07 +agronomique agronomique adj s 0.03 0.07 0.03 0.07 +agrovilles agroville nom f p 0.00 0.07 0.00 0.07 +agrège agréger ver 0.46 0.81 0.00 0.07 ind:pre:3s; +agrègent agréger ver 0.46 0.81 0.00 0.07 ind:pre:3p; +agrès agrès nom m 0.24 1.01 0.24 1.01 +agréa agréer ver 1.09 5.07 0.14 0.20 ind:pas:3s; +agréable agréable adj s 40.24 36.01 37.71 31.35 +agréablement agréablement adv 0.63 3.65 0.63 3.65 +agréables agréable adj p 40.24 36.01 2.54 4.66 +agréaient agréer ver 1.09 5.07 0.00 0.14 ind:imp:3p; +agréais agréer ver 1.09 5.07 0.00 0.14 ind:imp:1s; +agréait agréer ver 1.09 5.07 0.00 0.47 ind:imp:3s; +agrée agréer ver 1.09 5.07 0.07 0.20 ind:pre:1s;ind:pre:3s; +agréent agréer ver 1.09 5.07 0.02 0.00 ind:pre:3p; +agréer agréer ver 1.09 5.07 0.45 3.18 inf; +agréera agréer ver 1.09 5.07 0.01 0.00 ind:fut:3s; +agréerait agréer ver 1.09 5.07 0.00 0.07 cnd:pre:3s; +agrées agréer ver 1.09 5.07 0.00 0.07 ind:pre:2s; +agréez agréer ver 1.09 5.07 0.14 0.14 imp:pre:2p;ind:pre:2p; +agrég agrég nom f s 0.14 0.00 0.14 0.00 +agrégat agrégat nom m s 0.03 0.61 0.02 0.47 +agrégatif agrégatif nom m s 0.00 0.47 0.00 0.41 +agrégatifs agrégatif nom m p 0.00 0.47 0.00 0.07 +agrégation agrégation nom f s 0.29 2.97 0.29 2.97 +agrégative agrégative nom f s 0.00 0.07 0.00 0.07 +agrégats agrégat nom m p 0.03 0.61 0.01 0.14 +agrégeaient agréger ver 0.46 0.81 0.00 0.07 ind:imp:3p; +agrégeait agréger ver 0.46 0.81 0.00 0.07 ind:imp:3s; +agréger agréger ver 0.46 0.81 0.00 0.07 inf; +agrégé agréger ver m s 0.46 0.81 0.34 0.20 par:pas; +agrégée agréger ver f s 0.46 0.81 0.10 0.20 par:pas; +agrégées agréger ver f p 0.46 0.81 0.01 0.00 par:pas; +agrégés agrégé nom m p 0.32 1.15 0.20 0.41 +agréions agréer ver 1.09 5.07 0.00 0.07 ind:imp:1p; +agrume agrume nom m s 0.41 0.54 0.01 0.07 +agrément agrément nom m s 1.75 7.16 1.50 6.01 +agrémenta agrémenter ver 0.35 5.68 0.01 0.20 ind:pas:3s; +agrémentaient agrémenter ver 0.35 5.68 0.00 0.20 ind:imp:3p; +agrémentait agrémenter ver 0.35 5.68 0.01 0.61 ind:imp:3s; +agrémentant agrémenter ver 0.35 5.68 0.00 0.20 par:pre; +agrémente agrémenter ver 0.35 5.68 0.03 0.14 ind:pre:3s; +agrémentent agrémenter ver 0.35 5.68 0.00 0.14 ind:pre:3p; +agrémenter agrémenter ver 0.35 5.68 0.03 0.41 inf; +agréments agrément nom m p 1.75 7.16 0.25 1.15 +agrémenté agrémenté adj m s 0.14 0.14 0.14 0.00 +agrémentée agrémenter ver f s 0.35 5.68 0.06 0.88 par:pas; +agrémentées agrémenter ver f p 0.35 5.68 0.00 0.68 par:pas; +agrémentés agrémenter ver m p 0.35 5.68 0.10 0.68 par:pas; +agrumes agrume nom m p 0.41 0.54 0.40 0.47 +agréé agréer ver m s 1.09 5.07 0.22 0.14 par:pas; +agréée agréé adj f s 0.17 0.68 0.04 0.00 +agréées agréer ver f p 1.09 5.07 0.02 0.00 par:pas; +agréés agréé adj m p 0.17 0.68 0.00 0.20 +aguardiente aguardiente nom f s 0.03 0.00 0.03 0.00 +aguerri aguerri adj m s 0.66 1.01 0.59 0.41 +aguerrie aguerri adj f s 0.66 1.01 0.04 0.14 +aguerries aguerri adj f p 0.66 1.01 0.01 0.07 +aguerrir aguerrir ver 0.21 0.81 0.07 0.20 inf; +aguerrira aguerrir ver 0.21 0.81 0.01 0.00 ind:fut:3s; +aguerris aguerri adj m p 0.66 1.01 0.01 0.41 +aguerrissait aguerrir ver 0.21 0.81 0.00 0.07 ind:imp:3s; +aguerrit aguerrir ver 0.21 0.81 0.01 0.00 ind:pre:3s; +aguichage aguichage nom m s 0.01 0.00 0.01 0.00 +aguichait aguicher ver 0.30 0.88 0.03 0.20 ind:imp:3s; +aguichant aguichant adj m s 0.14 0.54 0.04 0.07 +aguichante aguichant adj f s 0.14 0.54 0.07 0.27 +aguichantes aguichant adj f p 0.14 0.54 0.03 0.20 +aguiche aguicher ver 0.30 0.88 0.04 0.14 ind:pre:3s; +aguichent aguicher ver 0.30 0.88 0.03 0.14 ind:pre:3p; +aguicher aguicher ver 0.30 0.88 0.21 0.41 inf; +aguicheur aguicheur adj m s 0.23 0.47 0.06 0.07 +aguicheurs aguicheur adj m p 0.23 0.47 0.00 0.07 +aguicheuse aguicheur nom f s 0.04 0.14 0.04 0.14 +aguicheuses aguicheur adj f p 0.23 0.47 0.17 0.14 +aguillera aguiller ver 0.01 0.00 0.01 0.00 ind:fut:3s; +ah ah ono 576.53 297.16 576.53 297.16 +ahan ahan nom m s 0.00 0.54 0.00 0.34 +ahana ahaner ver 0.01 2.16 0.00 0.20 ind:pas:3s; +ahanaient ahaner ver 0.01 2.16 0.00 0.14 ind:imp:3p; +ahanait ahaner ver 0.01 2.16 0.00 0.34 ind:imp:3s; +ahanant ahaner ver 0.01 2.16 0.00 0.61 par:pre; +ahanante ahanant adj f s 0.00 0.41 0.00 0.14 +ahane ahaner ver 0.01 2.16 0.01 0.34 ind:pre:1s;ind:pre:3s; +ahanement ahanement nom m s 0.00 0.34 0.00 0.07 +ahanements ahanement nom m p 0.00 0.34 0.00 0.27 +ahanent ahaner ver 0.01 2.16 0.00 0.14 ind:pre:3p; +ahaner ahaner ver 0.01 2.16 0.00 0.27 inf; +ahans ahan nom m p 0.00 0.54 0.00 0.20 +ahané ahaner ver m s 0.01 2.16 0.00 0.14 par:pas; +ahi ahi adv 0.06 0.27 0.06 0.27 +ahou ahou adv 0.01 0.00 0.01 0.00 +ahuri ahuri nom m s 0.41 3.04 0.37 1.76 +ahurie ahuri adj f s 0.39 7.70 0.04 2.03 +ahuries ahuri adj f p 0.39 7.70 0.00 0.27 +ahurir ahurir ver 0.34 3.38 0.00 0.41 inf; +ahuris ahuri nom m p 0.41 3.04 0.04 1.22 +ahurissait ahurir ver 0.34 3.38 0.00 0.27 ind:imp:3s; +ahurissant ahurissant adj m s 0.70 2.16 0.42 1.15 +ahurissante ahurissant adj f s 0.70 2.16 0.21 0.61 +ahurissantes ahurissant adj f p 0.70 2.16 0.05 0.14 +ahurissants ahurissant adj m p 0.70 2.16 0.03 0.27 +ahurissement ahurissement nom m s 0.00 1.82 0.00 1.76 +ahurissements ahurissement nom m p 0.00 1.82 0.00 0.07 +ahurit ahurir ver 0.34 3.38 0.00 0.41 ind:pre:3s;ind:pas:3s; +ai avoir aux 18559.23 12800.81 4902.10 2119.12 ind:pre:1s; +aicher aicher ver 0.10 0.00 0.10 0.00 inf; +aida aider ver 688.71 158.65 0.81 7.09 ind:pas:3s; +aidai aider ver 688.71 158.65 0.03 1.08 ind:pas:1s; +aidaient aider ver 688.71 158.65 1.04 3.31 ind:imp:3p; +aidais aider ver 688.71 158.65 3.18 1.49 ind:imp:1s;ind:imp:2s; +aidait aider ver 688.71 158.65 3.47 9.73 ind:imp:3s; +aidant aider ver 688.71 158.65 1.70 11.49 par:pre; +aidassent aider ver 688.71 158.65 0.00 0.14 sub:imp:3p; +aide_bourreau aide_bourreau nom s 0.00 0.14 0.00 0.14 +aide_comptable aide_comptable nom m s 0.04 0.07 0.04 0.07 +aide_cuisinier aide_cuisinier nom m s 0.02 0.14 0.02 0.14 +aide_infirmier aide_infirmier nom s 0.04 0.00 0.04 0.00 +aide_jardinier aide_jardinier nom m s 0.01 0.07 0.01 0.07 +aide_major aide_major nom m 0.00 0.14 0.00 0.14 +aide_mémoire aide_mémoire nom m 0.04 0.41 0.04 0.41 +aide_ménagère aide_ménagère nom f s 0.00 0.27 0.00 0.27 +aide_pharmacien aide_pharmacien nom s 0.00 0.07 0.00 0.07 +aide_soignant aide_soignant nom m s 0.40 0.27 0.20 0.00 +aide_soignant aide_soignant nom f s 0.40 0.27 0.12 0.14 +aide aide nom s 175.59 55.54 171.41 52.30 +aident aider ver 688.71 158.65 6.75 2.57 ind:pre:3p;sub:pre:3p; +aider aider ver 688.71 158.65 362.77 60.41 inf;;inf;;inf;;inf;; +aidera aider ver 688.71 158.65 19.59 2.97 ind:fut:3s; +aiderai aider ver 688.71 158.65 10.91 2.03 ind:fut:1s; +aideraient aider ver 688.71 158.65 0.41 0.41 cnd:pre:3p; +aiderais aider ver 688.71 158.65 2.60 0.20 cnd:pre:1s;cnd:pre:2s; +aiderait aider ver 688.71 158.65 7.82 3.58 cnd:pre:3s; +aideras aider ver 688.71 158.65 3.29 0.81 ind:fut:2s; +aiderez aider ver 688.71 158.65 2.18 0.54 ind:fut:2p; +aideriez aider ver 688.71 158.65 0.96 0.20 cnd:pre:2p; +aiderions aider ver 688.71 158.65 0.02 0.07 cnd:pre:1p; +aiderons aider ver 688.71 158.65 1.47 0.14 ind:fut:1p; +aideront aider ver 688.71 158.65 3.19 0.74 ind:fut:3p; +aide_soignant aide_soignant nom f p 0.40 0.27 0.00 0.14 +aide_soignant aide_soignant nom m p 0.40 0.27 0.08 0.00 +aides aider ver 688.71 158.65 19.22 1.49 ind:pre:2s;sub:pre:2s; +aidez aider ver 688.71 158.65 64.36 2.77 imp:pre:2p;ind:pre:2p; +aidiez aider ver 688.71 158.65 2.21 0.20 ind:imp:2p;sub:pre:2p; +aidions aider ver 688.71 158.65 0.14 0.27 ind:imp:1p; +aidons aider ver 688.71 158.65 1.75 0.47 imp:pre:1p;ind:pre:1p; +aidât aider ver 688.71 158.65 0.00 0.54 sub:imp:3s; +aidèrent aider ver 688.71 158.65 0.03 1.76 ind:pas:3p; +aidé aider ver m s 688.71 158.65 34.74 15.61 par:pas; +aidée aider ver f s 688.71 158.65 8.64 4.80 par:pas; +aidées aider ver f p 688.71 158.65 0.62 0.34 par:pas; +aidés aider ver m p 688.71 158.65 5.13 3.04 par:pas; +aie avoir aux 18559.23 12800.81 31.75 21.69 sub:pre:1s; +aient avoir aux 18559.23 12800.81 12.67 19.80 sub:pre:3p; +aies avoir aux 18559.23 12800.81 22.71 4.93 sub:pre:2s; +aigle aigle nom s 6.90 11.35 5.50 7.91 +aiglefin aiglefin nom m s 0.00 0.07 0.00 0.07 +aigles aigle nom p 6.90 11.35 1.40 3.45 +aiglon aiglon nom m s 0.47 0.95 0.42 0.68 +aiglons aiglon nom m p 0.47 0.95 0.05 0.27 +aigre_doux aigre_doux adj f s 0.29 1.08 0.08 0.54 +aigre_doux aigre_doux adj m 0.29 1.08 0.20 0.34 +aigre aigre adj s 0.55 10.47 0.42 8.38 +aigrelet aigrelet adj m s 0.14 3.58 0.00 1.35 +aigrelets aigrelet adj m p 0.14 3.58 0.14 0.20 +aigrelette aigrelet adj f s 0.14 3.58 0.01 1.76 +aigrelettes aigrelet adj f p 0.14 3.58 0.00 0.27 +aigrement aigrement adv 0.00 1.42 0.00 1.42 +aigre_douce aigre_douce adj f p 0.01 0.20 0.01 0.20 +aigre_doux aigre_doux adj m p 0.29 1.08 0.01 0.20 +aigres aigre adj p 0.55 10.47 0.13 2.09 +aigrette aigrette nom f s 0.72 2.64 0.02 1.22 +aigrettes aigrette nom f p 0.72 2.64 0.70 1.42 +aigreur aigreur nom f s 0.56 4.32 0.21 2.91 +aigreurs aigreur nom f p 0.56 4.32 0.35 1.42 +aigri aigri adj m s 1.06 1.08 0.79 0.54 +aigrie aigri adj f s 1.06 1.08 0.24 0.20 +aigries aigri adj f p 1.06 1.08 0.02 0.00 +aigrir aigrir ver 0.65 2.09 0.01 0.41 inf; +aigrirent aigrir ver 0.65 2.09 0.00 0.14 ind:pas:3p; +aigris aigri nom m p 0.40 0.54 0.17 0.20 +aigrissaient aigrir ver 0.65 2.09 0.00 0.14 ind:imp:3p; +aigrissait aigrir ver 0.65 2.09 0.00 0.14 ind:imp:3s; +aigrissent aigrir ver 0.65 2.09 0.00 0.07 ind:pre:3p; +aigrit aigrir ver 0.65 2.09 0.10 0.07 ind:pre:3s;ind:pas:3s; +aigu aigu adj m s 4.46 32.09 1.75 11.96 +aiguade aiguade nom f s 0.00 0.14 0.00 0.14 +aiguail aiguail nom m s 0.00 0.27 0.00 0.27 +aigue_marine aigue_marine nom f s 0.00 0.81 0.00 0.47 +aigue aiguer ver 0.17 0.00 0.17 0.00 ind:pre:3s; +aigue_marine aigue_marine nom f p 0.00 0.81 0.00 0.34 +aiguilla aiguiller ver 1.13 3.24 0.00 0.34 ind:pas:3s; +aiguillage aiguillage nom m s 0.60 2.16 0.48 1.42 +aiguillages aiguillage nom m p 0.60 2.16 0.12 0.74 +aiguillant aiguiller ver 1.13 3.24 0.00 0.20 par:pre; +aiguillat aiguillat nom m s 0.02 0.00 0.02 0.00 +aiguille aiguille nom f s 14.34 34.19 10.40 18.38 +aiguiller aiguiller ver 1.13 3.24 0.21 0.27 inf; +aiguilles aiguille nom f p 14.34 34.19 3.94 15.81 +aiguillettes aiguillette nom f p 0.07 0.20 0.07 0.20 +aiguilleur aiguilleur nom m s 0.35 0.41 0.29 0.34 +aiguilleurs aiguilleur nom m p 0.35 0.41 0.06 0.07 +aiguillon aiguillon nom m s 0.36 2.50 0.35 2.09 +aiguillonnaient aiguillonner ver 0.17 1.55 0.00 0.14 ind:imp:3p; +aiguillonnait aiguillonner ver 0.17 1.55 0.00 0.20 ind:imp:3s; +aiguillonnant aiguillonner ver 0.17 1.55 0.00 0.07 par:pre; +aiguillonnante aiguillonnant adj f s 0.00 0.07 0.00 0.07 +aiguillonne aiguillonner ver 0.17 1.55 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aiguillonnent aiguillonner ver 0.17 1.55 0.10 0.07 ind:pre:3p; +aiguillonner aiguillonner ver 0.17 1.55 0.03 0.27 inf; +aiguillonné aiguillonner ver m s 0.17 1.55 0.00 0.34 par:pas; +aiguillonnée aiguillonner ver f s 0.17 1.55 0.00 0.14 par:pas; +aiguillonnées aiguillonner ver f p 0.17 1.55 0.00 0.07 par:pas; +aiguillonnés aiguillonner ver m p 0.17 1.55 0.01 0.20 par:pas; +aiguillons aiguillon nom m p 0.36 2.50 0.01 0.41 +aiguillé aiguiller ver m s 1.13 3.24 0.22 0.20 par:pas; +aiguillée aiguiller ver f s 1.13 3.24 0.04 0.14 par:pas; +aiguillées aiguiller ver f p 1.13 3.24 0.00 0.14 par:pas; +aiguillés aiguiller ver m p 1.13 3.24 0.03 0.00 par:pas; +aiguisa aiguiser ver 2.62 7.36 0.00 0.20 ind:pas:3s; +aiguisai aiguiser ver 2.62 7.36 0.00 0.07 ind:pas:1s; +aiguisaient aiguiser ver 2.62 7.36 0.00 0.34 ind:imp:3p; +aiguisait aiguiser ver 2.62 7.36 0.01 1.01 ind:imp:3s; +aiguisant aiguiser ver 2.62 7.36 0.01 0.61 par:pre; +aiguisas aiguiser ver 2.62 7.36 0.00 0.07 ind:pas:2s; +aiguise aiguiser ver 2.62 7.36 0.53 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aiguisent aiguiser ver 2.62 7.36 0.23 0.41 ind:pre:3p; +aiguiser aiguiser ver 2.62 7.36 0.84 1.62 inf; +aiguisera aiguiser ver 2.62 7.36 0.01 0.00 ind:fut:3s; +aiguiserai aiguiser ver 2.62 7.36 0.00 0.07 ind:fut:1s; +aiguiseur aiguiseur nom m s 0.04 0.00 0.04 0.00 +aiguisez aiguiser ver 2.62 7.36 0.25 0.00 imp:pre:2p;ind:pre:2p; +aiguisoir aiguisoir nom m s 0.01 0.07 0.01 0.07 +aiguisons aiguiser ver 2.62 7.36 0.03 0.00 imp:pre:1p; +aiguisèrent aiguiser ver 2.62 7.36 0.00 0.20 ind:pas:3p; +aiguisé aiguisé adj m s 1.47 1.69 0.66 0.34 +aiguisée aiguisé adj f s 1.47 1.69 0.39 0.61 +aiguisées aiguisé adj f p 1.47 1.69 0.11 0.41 +aiguisés aiguisé adj m p 1.47 1.69 0.31 0.34 +aiguière aiguière nom f s 0.00 0.27 0.00 0.27 +aigus aigu adj m p 4.46 32.09 0.31 5.00 +aiguë aigu adj f s 4.46 32.09 2.13 11.49 +aiguës aigu adj f p 4.46 32.09 0.27 3.65 +ail ail nom m s 9.14 7.97 9.14 7.97 +aile aile nom f s 33.45 60.47 15.00 20.47 +aileron aileron nom m s 0.79 1.49 0.42 0.41 +ailerons aileron nom m p 0.79 1.49 0.37 1.08 +ailes aile nom f p 33.45 60.47 18.45 40.00 +ailette ailette nom f s 0.03 0.54 0.01 0.14 +ailettes ailette nom f p 0.03 0.54 0.02 0.41 +ailier ailier nom m s 1.40 1.35 1.35 1.22 +ailiers ailier nom m p 1.40 1.35 0.05 0.14 +aillais ailler ver 0.20 0.61 0.14 0.00 ind:imp:1s; +aille aller ver 9992.78 2854.93 89.81 36.55 sub:pre:1s;sub:pre:3s; +aillent aller ver 9992.78 2854.93 5.93 4.86 sub:pre:3p; +ailler ailler ver 0.20 0.61 0.01 0.00 inf; +ailles aller ver 9992.78 2854.93 14.98 2.43 sub:pre:2s; +ailleurs ailleurs adv_sup 128.74 346.35 128.74 346.35 +aillions ailler ver 0.20 0.61 0.03 0.00 ind:imp:1p; +aillons ailler ver 0.20 0.61 0.01 0.00 ind:pre:1p; +aillé ailler ver m s 0.20 0.61 0.01 0.27 par:pas; +aillée ailler ver f s 0.20 0.61 0.00 0.07 par:pas; +aillés ailler ver m p 0.20 0.61 0.00 0.27 par:pas; +ailé ailé adj m s 1.19 3.04 0.71 1.42 +ailée ailer ver f s 0.21 0.74 0.16 0.20 par:pas; +ailées ailé adj f p 1.19 3.04 0.07 0.27 +ailés ailé adj m p 1.19 3.04 0.29 0.54 +aima aimer ver 1655.04 795.61 0.41 1.69 ind:pas:3s; +aimable aimable adj s 23.41 29.26 21.98 24.59 +aimablement aimablement adv 0.52 3.85 0.52 3.85 +aimables aimable adj p 23.41 29.26 1.43 4.66 +aimai aimer ver 1655.04 795.61 0.20 0.81 ind:pas:1s; +aimaient aimer ver 1655.04 795.61 6.20 16.42 ind:imp:3p; +aimais aimer ver 1655.04 795.61 58.07 57.16 ind:imp:1s;ind:imp:2s; +aimait aimer ver 1655.04 795.61 49.57 128.72 ind:imp:3s; +aimant aimer ver 1655.04 795.61 2.60 3.92 par:pre; +aimantaient aimanter ver 0.35 2.30 0.00 0.14 ind:imp:3p; +aimantait aimanter ver 0.35 2.30 0.00 0.07 ind:imp:3s; +aimantation aimantation nom f s 0.00 0.47 0.00 0.47 +aimante aimant adj f s 2.86 2.70 1.37 1.42 +aimanter aimanter ver 0.35 2.30 0.02 0.14 inf; +aimantes aimant adj f p 2.86 2.70 0.07 0.14 +aimants aimant nom m p 2.31 2.97 0.61 0.27 +aimanté aimanter ver m s 0.35 2.30 0.14 0.34 par:pas; +aimantée aimanter ver f s 0.35 2.30 0.04 0.54 par:pas; +aimantées aimanter ver f p 0.35 2.30 0.12 0.20 par:pas; +aimantés aimanter ver m p 0.35 2.30 0.02 0.41 par:pas; +aimasse aimer ver 1655.04 795.61 0.02 0.00 sub:imp:1s; +aimassent aimer ver 1655.04 795.61 0.00 0.20 sub:imp:3p; +aimassions aimer ver 1655.04 795.61 0.00 0.07 sub:imp:1p; +aime aimer ver 1655.04 795.61 751.29 257.57 imp:pre:2s;ind:pre:1s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +aiment aimer ver 1655.04 795.61 48.46 26.96 ind:pre:3p;sub:pre:3p; +aimer aimer ver 1655.04 795.61 90.41 84.46 inf;;inf;;inf;;inf;;inf;; +aimera aimer ver 1655.04 795.61 8.10 2.57 ind:fut:3s; +aimerai aimer ver 1655.04 795.61 13.99 2.97 ind:fut:1s; +aimeraient aimer ver 1655.04 795.61 5.08 2.03 cnd:pre:3p; +aimerais aimer ver 1655.04 795.61 227.66 36.01 cnd:pre:1s;cnd:pre:2s; +aimerait aimer ver 1655.04 795.61 21.70 12.43 cnd:pre:3s; +aimeras aimer ver 1655.04 795.61 4.30 1.28 ind:fut:2s; +aimerez aimer ver 1655.04 795.61 2.71 1.01 ind:fut:2p; +aimeriez aimer ver 1655.04 795.61 8.88 0.88 cnd:pre:2p; +aimerions aimer ver 1655.04 795.61 7.21 1.01 cnd:pre:1p; +aimerons aimer ver 1655.04 795.61 0.46 0.27 ind:fut:1p; +aimeront aimer ver 1655.04 795.61 1.32 0.34 ind:fut:3p; +aimes aimer ver 1655.04 795.61 170.38 25.61 ind:pre:2s;sub:pre:2s; +aimeuse aimeur nom f s 0.00 0.07 0.00 0.07 +aimez aimer ver 1655.04 795.61 62.25 18.38 imp:pre:2p;ind:pre:2p; +aimiez aimer ver 1655.04 795.61 6.92 2.64 ind:imp:2p;sub:pre:2p; +aimions aimer ver 1655.04 795.61 2.03 6.55 ind:imp:1p;sub:pre:1p; +aimâmes aimer ver 1655.04 795.61 0.00 0.14 ind:pas:1p; +aimons aimer ver 1655.04 795.61 11.58 6.22 imp:pre:1p;ind:pre:1p; +aimât aimer ver 1655.04 795.61 0.10 2.03 sub:imp:3s; +aimâtes aimer ver 1655.04 795.61 0.03 0.00 ind:pas:2p; +aimèrent aimer ver 1655.04 795.61 0.16 0.47 ind:pas:3p; +aimé aimer ver m s 1655.04 795.61 75.92 71.96 par:pas; +aimée aimer ver f s 1655.04 795.61 12.66 14.80 par:pas; +aimées aimer ver f p 1655.04 795.61 0.43 1.62 par:pas; +aimés aimer ver m p 1655.04 795.61 3.94 6.42 par:pas; +aine aine nom f s 0.64 2.77 0.64 2.64 +aines aine nom f p 0.64 2.77 0.00 0.14 +ains ains con 0.02 0.00 0.02 0.00 +ainsi ainsi adv_sup 207.68 469.46 207.68 469.46 +air_air air_air adj m 0.09 0.00 0.09 0.00 +air_mer air_mer adj 0.02 0.00 0.02 0.00 +air_sol air_sol adj m p 0.13 0.00 0.13 0.00 +air_bag air_bag nom m s 0.02 0.00 0.02 0.00 +air air nom m s 485.18 690.81 473.50 661.01 +airain airain nom m s 0.17 1.69 0.17 1.69 +airbag airbag nom m s 1.11 0.00 0.44 0.00 +airbags airbag nom m p 1.11 0.00 0.67 0.00 +airbus airbus nom m 0.01 0.00 0.01 0.00 +aire aire nom f s 5.54 5.14 4.55 4.46 +airedale airedale nom m s 0.01 0.00 0.01 0.00 +airelle airelle nom f s 1.12 0.41 0.08 0.07 +airelles airelle nom f p 1.12 0.41 1.04 0.34 +aires aire nom f p 5.54 5.14 0.99 0.68 +airs air nom m p 485.18 690.81 11.68 29.80 +ais ais nom m 10.14 0.47 10.14 0.47 +aisance aisance nom f s 1.50 15.41 1.44 15.20 +aisances aisance nom f p 1.50 15.41 0.06 0.20 +aise aise nom f s 32.73 52.64 31.64 50.81 +aises aise nom f p 32.73 52.64 1.09 1.82 +aisseau aisseau nom m s 0.01 0.00 0.01 0.00 +aisselle aisselle nom f s 1.29 8.99 0.54 3.72 +aisselles aisselle nom f p 1.29 8.99 0.75 5.27 +aisé aisé adj m s 3.03 7.77 1.44 3.11 +aisée aisé adj f s 3.03 7.77 1.04 2.91 +aisées aisé adj f p 3.03 7.77 0.22 0.68 +aisément aisément adv 2.51 11.69 2.51 11.69 +aisés aisé adj m p 3.03 7.77 0.33 1.08 +ait avoir aux 18559.23 12800.81 95.36 99.53 sub:pre:3s; +aixois aixois nom m 0.00 0.14 0.00 0.14 +ajaccienne ajaccienne nom f s 0.00 0.07 0.00 0.07 +ajax ajax nom m s 0.00 0.07 0.00 0.07 +ajistes ajiste adj f p 0.00 0.07 0.00 0.07 +ajointer ajointer ver 0.00 0.20 0.00 0.07 inf; +ajointée ajointer ver f s 0.00 0.20 0.00 0.14 par:pas; +ajonc ajonc nom m s 0.00 1.69 0.00 0.20 +ajoncs ajonc nom m p 0.00 1.69 0.00 1.49 +ajouraient ajourer ver 0.00 1.42 0.00 0.07 ind:imp:3p; +ajourait ajourer ver 0.00 1.42 0.00 0.14 ind:imp:3s; +ajourant ajourer ver 0.00 1.42 0.00 0.14 par:pre; +ajourna ajourner ver 1.48 0.88 0.00 0.07 ind:pas:3s; +ajournait ajourner ver 1.48 0.88 0.00 0.07 ind:imp:3s; +ajourne ajourner ver 1.48 0.88 0.19 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ajournement ajournement nom m s 0.47 0.14 0.45 0.07 +ajournements ajournement nom m p 0.47 0.14 0.02 0.07 +ajourner ajourner ver 1.48 0.88 0.28 0.47 inf; +ajournez ajourner ver 1.48 0.88 0.01 0.00 imp:pre:2p; +ajourné ajourner ver m s 1.48 0.88 0.27 0.14 par:pas; +ajournée ajourner ver f s 1.48 0.88 0.71 0.14 par:pas; +ajournés ajourner ver m p 1.48 0.88 0.01 0.00 par:pas; +ajours ajour nom m p 0.00 0.14 0.00 0.14 +ajouré ajouré adj m s 0.02 2.70 0.00 0.81 +ajourée ajouré adj f s 0.02 2.70 0.00 0.81 +ajourées ajouré adj f p 0.02 2.70 0.02 0.68 +ajourés ajouré adj m p 0.02 2.70 0.00 0.41 +ajout ajout nom m s 0.94 0.47 0.73 0.20 +ajouta ajouter ver 38.88 224.66 0.39 85.00 ind:pas:3s; +ajoutai ajouter ver 38.88 224.66 0.04 5.34 ind:pas:1s; +ajoutaient ajouter ver 38.88 224.66 0.09 4.26 ind:imp:3p; +ajoutais ajouter ver 38.88 224.66 0.19 1.42 ind:imp:1s;ind:imp:2s; +ajoutait ajouter ver 38.88 224.66 0.35 22.57 ind:imp:3s; +ajoutant ajouter ver 38.88 224.66 0.63 11.08 par:pre; +ajoutassent ajouter ver 38.88 224.66 0.00 0.07 sub:imp:3p; +ajoute ajouter ver 38.88 224.66 8.34 29.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ajoutent ajouter ver 38.88 224.66 0.79 1.89 ind:pre:3p; +ajouter ajouter ver 38.88 224.66 15.45 33.85 imp:pre:2p;inf; +ajoutera ajouter ver 38.88 224.66 0.50 0.68 ind:fut:3s; +ajouterai ajouter ver 38.88 224.66 1.09 1.22 ind:fut:1s; +ajouteraient ajouter ver 38.88 224.66 0.00 0.27 cnd:pre:3p; +ajouterais ajouter ver 38.88 224.66 0.65 0.41 cnd:pre:1s;cnd:pre:2s; +ajouterait ajouter ver 38.88 224.66 0.27 0.74 cnd:pre:3s; +ajouteras ajouter ver 38.88 224.66 0.01 0.00 ind:fut:2s; +ajouterez ajouter ver 38.88 224.66 0.02 0.41 ind:fut:2p; +ajouterons ajouter ver 38.88 224.66 0.08 0.00 ind:fut:1p; +ajouteront ajouter ver 38.88 224.66 0.03 0.41 ind:fut:3p; +ajoutes ajouter ver 38.88 224.66 0.70 0.61 ind:pre:2s; +ajoutez ajouter ver 38.88 224.66 3.09 2.30 imp:pre:2p;ind:pre:2p; +ajoutiez ajouter ver 38.88 224.66 0.03 0.14 ind:imp:2p; +ajoutions ajouter ver 38.88 224.66 0.14 0.14 ind:imp:1p; +ajoutons ajouter ver 38.88 224.66 0.57 0.68 imp:pre:1p;ind:pre:1p; +ajoutât ajouter ver 38.88 224.66 0.00 0.27 sub:imp:3s; +ajouts ajout nom m p 0.94 0.47 0.21 0.27 +ajoutèrent ajouter ver 38.88 224.66 0.27 0.68 ind:pas:3p; +ajouté ajouter ver m s 38.88 224.66 4.42 18.99 imp:pre:2s;par:pas;par:pas; +ajoutée ajouter ver f s 38.88 224.66 0.43 0.95 par:pas; +ajoutées ajouter ver f p 38.88 224.66 0.15 0.74 par:pas; +ajoutés ajouter ver m p 38.88 224.66 0.17 0.41 par:pas; +ajusta ajuster ver 4.88 10.41 0.01 2.50 ind:pas:3s; +ajustable ajustable adj s 0.07 0.07 0.07 0.07 +ajustables ajustable adj p 0.07 0.07 0.01 0.00 +ajustage ajustage nom m s 0.01 0.14 0.01 0.14 +ajustaient ajuster ver 4.88 10.41 0.02 0.07 ind:imp:3p; +ajustais ajuster ver 4.88 10.41 0.02 0.00 ind:imp:1s;ind:imp:2s; +ajustait ajuster ver 4.88 10.41 0.02 0.81 ind:imp:3s; +ajustant ajuster ver 4.88 10.41 0.08 1.01 par:pre; +ajuste ajuster ver 4.88 10.41 1.68 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ajustement ajustement nom m s 0.85 0.88 0.40 0.61 +ajustements ajustement nom m p 0.85 0.88 0.46 0.27 +ajustent ajuster ver 4.88 10.41 0.10 0.27 ind:pre:3p; +ajuster ajuster ver 4.88 10.41 1.77 1.76 inf; +ajusterai ajuster ver 4.88 10.41 0.01 0.07 ind:fut:1s; +ajusteur ajusteur nom m s 0.62 0.61 0.62 0.54 +ajusteurs ajusteur nom m p 0.62 0.61 0.00 0.07 +ajustez ajuster ver 4.88 10.41 0.43 0.00 imp:pre:2p;ind:pre:2p; +ajustons ajuster ver 4.88 10.41 0.04 0.07 imp:pre:1p;ind:pre:1p; +ajustèrent ajuster ver 4.88 10.41 0.00 0.07 ind:pas:3p; +ajusté ajusté adj m s 0.42 3.24 0.28 1.22 +ajustée ajusté adj f s 0.42 3.24 0.04 1.08 +ajustées ajuster ver f p 4.88 10.41 0.15 0.34 par:pas; +ajusture ajusture nom f s 0.00 0.07 0.00 0.07 +ajustés ajuster ver m p 4.88 10.41 0.28 0.41 par:pas; +ajutage ajutage nom m s 0.10 0.00 0.10 0.00 +akkadien akkadien nom m s 0.03 0.00 0.03 0.00 +akkadienne akkadienne adj f s 0.01 0.00 0.01 0.00 +ako ako nom m s 0.08 0.00 0.08 0.00 +akvavit akvavit nom m s 0.01 0.20 0.01 0.20 +al_dente al_dente adv 0.40 0.14 0.40 0.14 +alabandines alabandine nom f p 0.00 0.07 0.00 0.07 +alacrité alacrité nom f s 0.01 0.61 0.01 0.61 +alain alain nom s 0.14 0.00 0.14 0.00 +alaire alaire adj s 0.14 0.00 0.14 0.00 +alaise alaise nom f s 0.02 0.07 0.02 0.07 +alambic alambic nom m s 0.70 1.22 0.65 1.08 +alambics alambic nom m p 0.70 1.22 0.05 0.14 +alambiqué alambiquer ver m s 0.04 0.00 0.02 0.00 par:pas; +alambiquée alambiqué adj f s 0.09 0.14 0.01 0.00 +alambiquées alambiqué adj f p 0.09 0.14 0.04 0.07 +alambiqués alambiqué adj m p 0.09 0.14 0.03 0.07 +alangui alangui adj m s 0.04 2.30 0.02 0.95 +alanguie alanguir ver f s 0.13 1.89 0.12 0.34 par:pas; +alanguies alangui adj f p 0.04 2.30 0.00 0.20 +alanguir alanguir ver 0.13 1.89 0.00 0.20 inf; +alanguis alangui adj m p 0.04 2.30 0.00 0.27 +alanguissaient alanguir ver 0.13 1.89 0.00 0.14 ind:imp:3p; +alanguissait alanguir ver 0.13 1.89 0.01 0.20 ind:imp:3s; +alanguissant alanguir ver 0.13 1.89 0.00 0.14 par:pre; +alanguissante alanguissant adj f s 0.00 0.07 0.00 0.07 +alanguissement alanguissement nom m s 0.00 0.47 0.00 0.34 +alanguissements alanguissement nom m p 0.00 0.47 0.00 0.14 +alanguissent alanguir ver 0.13 1.89 0.00 0.07 ind:pre:3p; +alanguit alanguir ver 0.13 1.89 0.00 0.34 ind:pre:3s;ind:pas:3s; +alarma alarmer ver 2.45 6.28 0.14 0.81 ind:pas:3s; +alarmai alarmer ver 2.45 6.28 0.00 0.07 ind:pas:1s; +alarmaient alarmer ver 2.45 6.28 0.00 0.07 ind:imp:3p; +alarmait alarmer ver 2.45 6.28 0.00 1.08 ind:imp:3s; +alarmant alarmant adj m s 1.54 2.84 1.12 0.81 +alarmante alarmant adj f s 1.54 2.84 0.22 0.68 +alarmantes alarmant adj f p 1.54 2.84 0.16 0.54 +alarmants alarmant adj m p 1.54 2.84 0.03 0.81 +alarme alarme nom f s 19.29 7.84 16.71 6.35 +alarmer alarmer ver 2.45 6.28 1.19 1.22 inf; +alarmeraient alarmer ver 2.45 6.28 0.01 0.00 cnd:pre:3p; +alarmerait alarmer ver 2.45 6.28 0.02 0.07 cnd:pre:3s; +alarmes alarme nom f p 19.29 7.84 2.58 1.49 +alarmez alarmer ver 2.45 6.28 0.41 0.07 imp:pre:2p;ind:pre:2p; +alarmisme alarmisme nom m s 0.00 0.07 0.00 0.07 +alarmiste alarmiste adj f s 0.24 0.27 0.19 0.00 +alarmistes alarmiste adj p 0.24 0.27 0.04 0.27 +alarmé alarmer ver m s 2.45 6.28 0.14 1.15 par:pas; +alarmée alarmer ver f s 2.45 6.28 0.13 0.54 par:pas; +alarmées alarmer ver f p 2.45 6.28 0.00 0.20 par:pas; +alarmés alarmer ver m p 2.45 6.28 0.03 0.41 par:pas; +alba alba nom f s 0.00 0.20 0.00 0.20 +albacore albacore nom m s 0.09 0.00 0.09 0.00 +albanais albanais adj m 0.68 1.28 0.39 0.74 +albanaise albanais adj f s 0.68 1.28 0.28 0.47 +albanaises albanais adj f p 0.68 1.28 0.00 0.07 +albanophone albanophone adj m s 0.01 0.00 0.01 0.00 +albatros albatros nom m 2.01 1.15 2.01 1.15 +albe albe nom m s 0.01 0.00 0.01 0.00 +albertine albertine nom f s 0.00 0.07 0.00 0.07 +albigeois albigeois adj m 0.00 0.14 0.00 0.14 +albigeois albigeois nom m 0.00 0.14 0.00 0.14 +albinisme albinisme nom m s 0.02 0.00 0.02 0.00 +albinos albinos adj 0.47 0.74 0.47 0.74 +alboche alboche nom s 0.00 0.07 0.00 0.07 +albâtre albâtre nom m s 0.57 3.11 0.57 2.97 +albâtres albâtre nom m p 0.57 3.11 0.00 0.14 +albène albène nom m s 0.00 0.07 0.00 0.07 +albugo albugo nom m s 0.00 0.07 0.00 0.07 +album album nom m s 11.29 18.38 9.36 13.31 +albumine albumine nom f s 0.19 0.14 0.17 0.14 +albumines albumine nom f p 0.19 0.14 0.02 0.00 +albumineuse albumineux adj f s 0.00 0.14 0.00 0.14 +albums album nom m p 11.29 18.38 1.93 5.07 +alcôve alcôve nom f s 0.84 4.59 0.79 4.32 +alcôves alcôve nom f p 0.84 4.59 0.05 0.27 +alcade alcade nom m s 0.30 0.20 0.30 0.20 +alcalde alcalde nom m s 0.05 0.00 0.05 0.00 +alcali alcali nom m s 0.11 0.27 0.08 0.27 +alcalin alcalin adj m s 0.24 0.14 0.09 0.07 +alcaline alcalin adj f s 0.24 0.14 0.08 0.00 +alcalines alcalin adj f p 0.24 0.14 0.03 0.00 +alcaliniser alcaliniser ver 0.02 0.00 0.02 0.00 inf; +alcalinité alcalinité nom f s 0.03 0.00 0.03 0.00 +alcalins alcalin adj m p 0.24 0.14 0.04 0.07 +alcalis alcali nom m p 0.11 0.27 0.03 0.00 +alcaloïde alcaloïde nom m s 0.16 0.00 0.16 0.00 +alcalose alcalose nom f s 0.02 0.00 0.02 0.00 +alcatraz alcatraz nom m 1.09 0.20 1.09 0.20 +alcazar alcazar nom m s 0.53 1.69 0.53 1.69 +alchimie alchimie nom f s 1.05 1.96 0.95 1.82 +alchimies alchimie nom f p 1.05 1.96 0.10 0.14 +alchimique alchimique adj s 0.02 1.15 0.02 0.81 +alchimiques alchimique adj f p 0.02 1.15 0.00 0.34 +alchimiste alchimiste nom s 2.87 2.84 2.65 2.16 +alchimistes alchimiste nom p 2.87 2.84 0.22 0.68 +alcibiade alcibiade nom m s 0.01 0.00 0.01 0.00 +alcool alcool nom m s 41.30 42.84 40.29 39.73 +alcoolique alcoolique adj s 3.73 2.16 3.54 1.55 +alcooliques alcoolique nom p 4.12 1.55 1.37 0.61 +alcoolise alcooliser ver 0.33 0.34 0.00 0.07 ind:pre:3s; +alcoolisme alcoolisme nom m s 1.84 0.95 1.84 0.95 +alcoolisé alcoolisé adj m s 0.60 1.55 0.31 0.47 +alcoolisée alcoolisé adj f s 0.60 1.55 0.04 0.20 +alcoolisées alcoolisé adj f p 0.60 1.55 0.23 0.68 +alcoolisés alcoolisé adj m p 0.60 1.55 0.01 0.20 +alcoolo alcoolo adj s 1.16 0.47 1.08 0.27 +alcoolos alcoolo nom p 1.40 0.88 0.41 0.20 +alcools alcool nom m p 41.30 42.84 1.00 3.11 +alcoolémie alcoolémie nom f s 0.58 0.20 0.58 0.20 +alcoomètre alcoomètre nom m s 0.00 0.07 0.00 0.07 +alcootest alcootest nom m s 0.31 0.20 0.31 0.20 +alcoran alcoran nom m s 0.00 0.07 0.00 0.07 +alcées alcée nom f p 0.00 0.07 0.00 0.07 +alcyon alcyon nom m s 0.13 0.74 0.13 0.61 +alcyons alcyon nom m p 0.13 0.74 0.00 0.14 +alde alde nom m s 0.22 0.00 0.22 0.00 +alderman alderman nom m s 0.14 0.00 0.14 0.00 +aldol aldol nom m s 0.05 0.00 0.05 0.00 +aldéhyde aldéhyde nom m s 0.01 0.07 0.01 0.07 +ale ale nom f s 2.10 0.14 2.10 0.14 +alea_jacta_est alea_jacta_est adv 0.30 0.07 0.30 0.07 +alençonnais alençonnais adj m s 0.00 0.27 0.00 0.07 +alençonnaise alençonnais adj f s 0.00 0.27 0.00 0.20 +alenti alentir ver m s 0.00 0.47 0.00 0.14 par:pas; +alentie alentir ver f s 0.00 0.47 0.00 0.07 par:pas; +alenties alentir ver f p 0.00 0.47 0.00 0.07 par:pas; +alentis alentir ver m p 0.00 0.47 0.00 0.20 ind:pre:1s;par:pas; +alentour alentour adv_sup 1.63 8.92 1.63 8.92 +alentours alentour nom_sup m p 4.77 9.12 4.77 9.12 +aleph aleph nom m 0.05 0.41 0.05 0.41 +alerta alerter ver 6.40 12.91 0.04 0.88 ind:pas:3s; +alertait alerter ver 6.40 12.91 0.03 0.61 ind:imp:3s; +alertant alerter ver 6.40 12.91 0.17 0.14 par:pre; +alerte alerte ono 5.41 0.81 5.41 0.81 +alertement alertement adv 0.00 0.27 0.00 0.27 +alertent alerter ver 6.40 12.91 0.06 0.00 ind:pre:3p; +alerter alerter ver 6.40 12.91 1.61 2.91 inf; +alertera alerter ver 6.40 12.91 0.12 0.00 ind:fut:3s; +alerterai alerter ver 6.40 12.91 0.20 0.00 ind:fut:1s; +alerterais alerter ver 6.40 12.91 0.02 0.00 cnd:pre:1s; +alerterait alerter ver 6.40 12.91 0.05 0.27 cnd:pre:3s; +alerterez alerter ver 6.40 12.91 0.01 0.00 ind:fut:2p; +alerteront alerter ver 6.40 12.91 0.14 0.00 ind:fut:3p; +alertes alerte nom f p 13.45 13.11 0.78 2.64 +alertez alerter ver 6.40 12.91 1.13 0.07 imp:pre:2p;ind:pre:2p; +alertions alerter ver 6.40 12.91 0.00 0.07 ind:imp:1p; +alertons alerter ver 6.40 12.91 0.09 0.00 imp:pre:1p;ind:pre:1p; +alertât alerter ver 6.40 12.91 0.00 0.07 sub:imp:3s; +alertèrent alerter ver 6.40 12.91 0.01 0.14 ind:pas:3p; +alerté alerter ver m s 6.40 12.91 0.90 3.65 par:pas; +alertée alerter ver f s 6.40 12.91 0.25 1.22 par:pas; +alertées alerter ver f p 6.40 12.91 0.01 0.14 par:pas; +alertés alerter ver m p 6.40 12.91 0.34 1.62 par:pas; +alevin alevin nom m s 0.02 0.68 0.01 0.07 +alevins alevin nom m p 0.02 0.68 0.01 0.61 +alexandra alexandra nom m s 0.51 0.47 0.51 0.47 +alexandrin alexandrin nom m s 0.82 1.89 0.54 0.41 +alexandrine alexandrin adj f s 0.37 0.14 0.00 0.07 +alexandrines alexandrin adj f p 0.37 0.14 0.10 0.00 +alexandrins alexandrin nom m p 0.82 1.89 0.29 1.49 +alexie alexie nom f s 0.01 0.00 0.01 0.00 +alexithymie alexithymie nom m s 0.03 0.00 0.03 0.00 +alezan alezan nom m s 0.12 1.35 0.11 1.01 +alezane alezan adj f s 0.04 2.36 0.02 1.82 +alezanes alezan adj f p 0.04 2.36 0.00 0.07 +alezans alezan nom m p 0.12 1.35 0.01 0.34 +alfa alfa nom m s 0.10 1.01 0.10 0.88 +alfas alfa nom m p 0.10 1.01 0.00 0.14 +alfénides alfénide nom m p 0.00 0.07 0.00 0.07 +algarade algarade nom f s 0.02 1.96 0.02 1.62 +algarades algarade nom f p 0.02 1.96 0.00 0.34 +algie algie nom f s 0.27 0.00 0.27 0.00 +algonquin algonquin nom m s 0.09 0.54 0.09 0.47 +algonquines algonquin nom f p 0.09 0.54 0.00 0.07 +algorithme algorithme nom m s 0.72 0.00 0.51 0.00 +algorithmes algorithme nom m p 0.72 0.00 0.21 0.00 +algorithmique algorithmique adj s 0.13 0.07 0.13 0.07 +algèbre algèbre nom f s 1.37 2.03 1.37 2.03 +algébrique algébrique adj s 0.14 0.54 0.11 0.27 +algébriquement algébriquement adv 0.00 0.07 0.00 0.07 +algébriques algébrique adj p 0.14 0.54 0.03 0.27 +algébriste algébriste nom s 0.00 0.14 0.00 0.07 +algébristes algébriste nom p 0.00 0.14 0.00 0.07 +algue algue nom f s 2.66 12.03 0.29 1.62 +algues algue nom f p 2.66 12.03 2.36 10.41 +algérien algérien adj m s 0.83 7.43 0.46 3.18 +algérienne algérien adj f s 0.83 7.43 0.25 2.03 +algériennes algérien adj f p 0.83 7.43 0.01 0.74 +algériens algérien nom m p 0.79 5.81 0.34 2.91 +algérois algérois adj m 0.00 0.74 0.00 0.61 +algéroise algérois adj f s 0.00 0.74 0.00 0.14 +alhambra alhambra nom f s 0.00 1.76 0.00 1.76 +alias alias adv_sup 5.45 3.85 5.45 3.85 +alibi alibi nom m s 11.13 6.82 10.28 5.47 +alibis alibi nom m p 11.13 6.82 0.85 1.35 +alidade alidade nom f s 0.00 0.07 0.00 0.07 +aligna aligner ver 7.80 26.69 0.00 0.61 ind:pas:3s; +alignaient aligner ver 7.80 26.69 0.05 5.07 ind:imp:3p; +alignais aligner ver 7.80 26.69 0.11 0.27 ind:imp:1s;ind:imp:2s; +alignait aligner ver 7.80 26.69 0.06 1.89 ind:imp:3s; +alignant aligner ver 7.80 26.69 0.08 0.41 par:pre; +aligne aligner ver 7.80 26.69 1.48 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alignement alignement nom m s 1.68 5.14 1.66 4.12 +alignements alignement nom m p 1.68 5.14 0.02 1.01 +alignent aligner ver 7.80 26.69 0.46 2.30 ind:pre:3p; +aligner aligner ver 7.80 26.69 1.61 3.78 inf; +alignera aligner ver 7.80 26.69 0.03 0.07 ind:fut:3s; +aligneraient aligner ver 7.80 26.69 0.02 0.07 cnd:pre:3p; +alignerez aligner ver 7.80 26.69 0.02 0.00 ind:fut:2p; +alignerons aligner ver 7.80 26.69 0.02 0.00 ind:fut:1p; +aligneront aligner ver 7.80 26.69 0.19 0.07 ind:fut:3p; +alignes aligner ver 7.80 26.69 0.19 0.20 ind:pre:2s; +alignez aligner ver 7.80 26.69 1.39 0.07 imp:pre:2p;ind:pre:2p; +alignons aligner ver 7.80 26.69 0.12 0.07 imp:pre:1p;ind:pre:1p; +alignèrent aligner ver 7.80 26.69 0.00 0.27 ind:pas:3p; +aligné aligner ver m s 7.80 26.69 0.47 0.88 par:pas; +alignée aligner ver f s 7.80 26.69 0.19 0.61 par:pas; +alignées aligner ver f p 7.80 26.69 0.48 3.58 par:pas; +alignés aligner ver m p 7.80 26.69 0.84 5.20 par:pas; +aligot aligot nom m s 0.03 0.00 0.03 0.00 +aligoté aligoté adj m s 0.00 0.20 0.00 0.20 +aligoté aligoté nom m s 0.00 0.20 0.00 0.20 +alim alim nom f s 0.21 0.00 0.21 0.00 +aliment aliment nom m s 4.67 6.62 1.11 1.76 +alimenta alimenter ver 6.24 8.92 0.00 0.20 ind:pas:3s; +alimentaient alimenter ver 6.24 8.92 0.02 0.95 ind:imp:3p; +alimentaire alimentaire adj s 5.85 4.80 4.50 2.57 +alimentaires alimentaire adj p 5.85 4.80 1.35 2.23 +alimentais alimenter ver 6.24 8.92 0.01 0.07 ind:imp:1s; +alimentait alimenter ver 6.24 8.92 0.31 1.01 ind:imp:3s; +alimentant alimenter ver 6.24 8.92 0.23 0.07 par:pre; +alimentation alimentation nom f s 5.64 4.19 5.59 4.19 +alimentations alimentation nom f p 5.64 4.19 0.05 0.00 +alimente alimenter ver 6.24 8.92 1.32 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alimentent alimenter ver 6.24 8.92 0.20 0.54 ind:pre:3p; +alimenter alimenter ver 6.24 8.92 2.62 3.85 inf; +alimentera alimenter ver 6.24 8.92 0.17 0.14 ind:fut:3s; +alimentez alimenter ver 6.24 8.92 0.08 0.00 imp:pre:2p;ind:pre:2p; +alimentons alimenter ver 6.24 8.92 0.04 0.00 imp:pre:1p;ind:pre:1p; +aliments aliment nom m p 4.67 6.62 3.56 4.86 +alimentèrent alimenter ver 6.24 8.92 0.00 0.07 ind:pas:3p; +alimenté alimenter ver m s 6.24 8.92 0.82 0.27 par:pas; +alimentée alimenter ver f s 6.24 8.92 0.20 0.81 par:pas; +alimentées alimenter ver f p 6.24 8.92 0.03 0.20 par:pas; +alimentés alimenter ver m p 6.24 8.92 0.19 0.20 par:pas; +alinéa alinéa nom m s 0.75 0.68 0.73 0.47 +alinéas alinéa nom m p 0.75 0.68 0.01 0.20 +alise alise nom f s 0.05 0.07 0.01 0.00 +alises alise nom f p 0.05 0.07 0.04 0.07 +alisier alisier nom m s 0.00 0.07 0.00 0.07 +alita aliter ver 0.90 1.49 0.01 0.27 ind:pas:3s; +alitai aliter ver 0.90 1.49 0.00 0.07 ind:pas:1s; +alitait aliter ver 0.90 1.49 0.00 0.07 ind:imp:3s; +alitement alitement nom m s 0.01 0.00 0.01 0.00 +aliter aliter ver 0.90 1.49 0.02 0.20 inf; +aliène aliéner ver 0.49 2.23 0.19 0.00 ind:pre:1s;ind:pre:3s; +alité aliter ver m s 0.90 1.49 0.55 0.41 par:pas; +alitée aliter ver f s 0.90 1.49 0.32 0.34 par:pas; +alitées aliter ver f p 0.90 1.49 0.00 0.14 par:pas; +aliéna aliéner ver 0.49 2.23 0.00 0.74 ind:pas:3s; +aliénant aliénant adj m s 0.14 1.22 0.14 0.14 +aliénante aliénant adj f s 0.14 1.22 0.00 1.08 +aliénation aliénation nom f s 1.19 1.49 1.19 1.49 +aliéner aliéner ver 0.49 2.23 0.12 0.54 inf; +aliénerait aliéner ver 0.49 2.23 0.00 0.07 cnd:pre:3s; +aliénerez aliéner ver 0.49 2.23 0.01 0.00 ind:fut:2p; +aliéniez aliéner ver 0.49 2.23 0.01 0.00 ind:imp:2p; +aliéniste aliéniste nom s 0.05 0.00 0.05 0.00 +aliénât aliéner ver 0.49 2.23 0.00 0.07 sub:imp:3s; +aliéné aliéné nom m s 2.28 0.61 0.54 0.14 +aliénée aliéné nom f s 2.28 0.61 0.19 0.00 +aliénées aliéner ver f p 0.49 2.23 0.00 0.07 par:pas; +aliénés aliéné nom m p 2.28 0.61 1.56 0.47 +alizé alizé nom m s 0.33 0.68 0.10 0.41 +alizés alizé nom m p 0.33 0.68 0.22 0.27 +alkali alkali nom m s 0.06 0.00 0.06 0.00 +all_right all_right adv 1.53 0.20 1.53 0.20 +allô allô ono 116.05 14.32 116.05 14.32 +alla aller ver 9992.78 2854.93 4.67 67.57 ind:pas:3s; +allai aller ver 9992.78 2854.93 1.12 18.92 ind:pas:1s; +allaient aller ver 9992.78 2854.93 16.55 80.88 ind:imp:3p; +allais aller ver 9992.78 2854.93 108.69 91.01 ind:imp:1s;ind:imp:2s; +allait aller ver 9992.78 2854.93 132.04 370.61 ind:imp:3s; +allaitais allaiter ver 1.73 1.55 0.14 0.00 ind:imp:1s; +allaitait allaiter ver 1.73 1.55 0.16 0.20 ind:imp:3s; +allaitant allaiter ver 1.73 1.55 0.01 0.14 par:pre; +allaitante allaitant adj f s 0.03 0.14 0.01 0.00 +allaitantes allaitant adj f p 0.03 0.14 0.01 0.07 +allaite allaiter ver 1.73 1.55 0.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allaitement allaitement nom m s 0.29 0.14 0.29 0.14 +allaitent allaiter ver 1.73 1.55 0.01 0.14 ind:pre:3p; +allaiter allaiter ver 1.73 1.55 0.60 0.61 inf; +allaiterait allaiter ver 1.73 1.55 0.00 0.07 cnd:pre:3s; +allaité allaiter ver m s 1.73 1.55 0.16 0.14 par:pas; +allaitée allaiter ver f s 1.73 1.55 0.12 0.00 par:pas; +allaités allaiter ver m p 1.73 1.55 0.00 0.20 par:pas; +allant aller ver 9992.78 2854.93 8.11 24.39 par:pre; +allante allant adj f s 0.86 4.19 0.10 0.00 +allas aller ver 9992.78 2854.93 0.00 0.07 ind:pas:2s; +allassent aller ver 9992.78 2854.93 0.00 0.20 sub:imp:3p; +allegretto allegretto adv 0.00 0.27 0.00 0.27 +allegro allegro adv 0.11 0.47 0.11 0.47 +allemagne allemagne nom f s 0.08 0.27 0.08 0.27 +allemand allemand adj m s 41.32 86.55 19.91 27.97 +allemande allemand adj f s 41.32 86.55 10.82 25.34 +allemandes allemand adj f p 41.32 86.55 2.69 12.97 +allemands allemand nom m p 49.08 91.55 30.66 61.42 +aller_retour aller_retour nom m s 2.33 2.43 1.83 2.36 +aller aller ver 9992.78 2854.93 816.76 368.04 inf;;inf;;inf;; +allergie allergie nom f s 5.00 0.61 3.12 0.61 +allergies allergie nom f p 5.00 0.61 1.88 0.00 +allergique allergique adj s 8.15 0.74 7.76 0.61 +allergiques allergique adj p 8.15 0.74 0.39 0.14 +allergologie allergologie nom f s 0.14 0.00 0.14 0.00 +allergologue allergologue nom s 0.03 0.00 0.03 0.00 +allergène allergène nom m s 0.08 0.00 0.04 0.00 +allergènes allergène nom m p 0.08 0.00 0.04 0.00 +aller_retour aller_retour nom m p 2.33 2.43 0.50 0.07 +allers aller nom m p 17.78 8.78 0.56 0.68 +allez aller ver 9992.78 2854.93 1414.85 155.54 imp:pre:2p;ind:pre:2p; +allia allier ver 4.62 7.97 0.01 0.14 ind:pas:3s; +alliacé alliacé adj m s 0.00 0.14 0.00 0.14 +alliage alliage nom m s 1.07 1.01 0.81 0.95 +alliages alliage nom m p 1.07 1.01 0.27 0.07 +alliait allier ver 4.62 7.97 0.01 0.81 ind:imp:3s; +alliance alliance nom f s 18.85 24.73 16.73 20.81 +alliances alliance nom f p 18.85 24.73 2.12 3.92 +alliant allier ver 4.62 7.97 0.25 0.27 par:pre; +allie allier ver 4.62 7.97 1.15 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allient allier ver 4.62 7.97 0.34 0.07 ind:pre:3p; +allier allier ver 4.62 7.97 1.14 0.88 inf; +alliera allier ver 4.62 7.97 0.02 0.00 ind:fut:3s; +allierait allier ver 4.62 7.97 0.02 0.00 cnd:pre:3s; +alliez aller ver 9992.78 2854.93 16.49 3.31 ind:imp:2p; +alligator alligator nom m s 2.80 0.47 1.63 0.20 +alligators alligator nom m p 2.80 0.47 1.17 0.27 +allions aller ver 9992.78 2854.93 8.62 23.65 ind:imp:1p; +alliât allier ver 4.62 7.97 0.00 0.07 sub:imp:3s; +allitératif allitératif adj m s 0.01 0.00 0.01 0.00 +allitération allitération nom f s 0.09 0.00 0.05 0.00 +allitérations allitération nom f p 0.09 0.00 0.03 0.00 +allié allié nom m s 11.64 55.34 2.40 4.05 +alliée allié nom f s 11.64 55.34 1.47 2.16 +alliées allié adj f p 2.66 25.68 0.64 9.53 +allium allium nom m s 0.02 0.00 0.02 0.00 +alliés allié nom m p 11.64 55.34 7.59 48.51 +allo allo ono 31.11 2.16 31.11 2.16 +allobarbital allobarbital nom m 0.00 0.07 0.00 0.07 +allobroges allobroge adj p 0.00 0.27 0.00 0.27 +alloc alloc nom f s 0.59 0.14 0.18 0.00 +allocataires allocataire nom p 0.03 0.00 0.03 0.00 +allocation allocation nom f s 3.16 1.55 1.35 0.41 +allocations allocation nom f p 3.16 1.55 1.81 1.15 +allochtone allochtone nom m s 0.01 0.00 0.01 0.00 +allocs alloc nom f p 0.59 0.14 0.41 0.14 +allocution allocution nom f s 0.33 4.12 0.31 3.11 +allocutions allocution nom f p 0.33 4.12 0.02 1.01 +allogreffe allogreffe nom f s 0.01 0.00 0.01 0.00 +allogènes allogène adj f p 0.00 0.07 0.00 0.07 +allâmes aller ver 9992.78 2854.93 0.06 3.45 ind:pas:1p; +allonge allonger ver 41.05 89.66 11.81 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +allongea allonger ver 41.05 89.66 0.12 8.99 ind:pas:3s; +allongeai allonger ver 41.05 89.66 0.02 0.88 ind:pas:1s; +allongeaient allonger ver 41.05 89.66 0.03 2.43 ind:imp:3p; +allongeais allonger ver 41.05 89.66 0.47 0.95 ind:imp:1s;ind:imp:2s; +allongeait allonger ver 41.05 89.66 0.32 6.35 ind:imp:3s; +allongeant allonger ver 41.05 89.66 0.40 3.58 par:pre; +allongement allongement nom m s 0.09 0.68 0.09 0.68 +allongent allonger ver 41.05 89.66 0.97 2.57 ind:pre:3p; +allongeâmes allonger ver 41.05 89.66 0.00 0.20 ind:pas:1p; +allongeons allonger ver 41.05 89.66 0.11 0.14 imp:pre:1p;ind:pre:1p; +allongeât allonger ver 41.05 89.66 0.00 0.07 sub:imp:3s; +allonger allonger ver 41.05 89.66 9.96 12.16 ind:pre:2p;inf; +allongera allonger ver 41.05 89.66 0.04 0.20 ind:fut:3s; +allongerai allonger ver 41.05 89.66 0.05 0.14 ind:fut:1s; +allongeraient allonger ver 41.05 89.66 0.01 0.07 cnd:pre:3p; +allongerais allonger ver 41.05 89.66 0.04 0.20 cnd:pre:1s;cnd:pre:2s; +allongerait allonger ver 41.05 89.66 0.00 0.47 cnd:pre:3s; +allongeras allonger ver 41.05 89.66 0.04 0.00 ind:fut:2s; +allonges allonger ver 41.05 89.66 1.02 0.07 ind:pre:2s; +allongez allonger ver 41.05 89.66 4.13 0.34 imp:pre:2p;ind:pre:2p; +allongiez allonger ver 41.05 89.66 0.10 0.07 ind:imp:2p; +allongions allonger ver 41.05 89.66 0.01 0.27 ind:imp:1p; +allongèrent allonger ver 41.05 89.66 0.00 0.88 ind:pas:3p; +allongé allonger ver m s 41.05 89.66 5.92 20.20 par:pas; +allongée allonger ver f s 41.05 89.66 4.04 10.88 par:pas; +allongées allongé adj f p 3.42 12.57 0.14 2.09 +allongés allonger ver m p 41.05 89.66 1.37 5.61 par:pas; +allons aller ver 9992.78 2854.93 500.21 129.80 imp:pre:1p;ind:pre:1p; +allopathie allopathie nom f s 0.14 0.00 0.14 0.00 +allostérique allostérique adj m s 0.01 0.00 0.01 0.00 +allât aller ver 9992.78 2854.93 0.01 2.97 sub:imp:3s; +alloua allouer ver 0.57 2.09 0.00 0.14 ind:pas:3s; +allouait allouer ver 0.57 2.09 0.00 0.54 ind:imp:3s; +allouant allouer ver 0.57 2.09 0.00 0.07 par:pre; +alloue allouer ver 0.57 2.09 0.04 0.00 ind:pre:1s;ind:pre:3s; +allouer allouer ver 0.57 2.09 0.09 0.34 inf; +allouerait allouer ver 0.57 2.09 0.00 0.14 cnd:pre:3s; +alloué allouer ver m s 0.57 2.09 0.21 0.41 par:pas; +allouée allouer ver f s 0.57 2.09 0.14 0.20 par:pas; +alloués allouer ver m p 0.57 2.09 0.09 0.27 par:pas; +allèche allécher ver 0.07 2.09 0.00 0.07 ind:pre:3s; +allège alléger ver 3.65 6.89 0.36 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allègement allègement nom m s 0.04 0.20 0.04 0.20 +allègent alléger ver 3.65 6.89 0.01 0.27 ind:pre:3p; +allègre allègre adj s 0.13 4.93 0.13 4.46 +allègrement allègrement adv 0.33 2.03 0.33 2.03 +allègres allègre adj p 0.13 4.93 0.00 0.47 +allègue alléguer ver 0.07 2.97 0.01 0.07 ind:pre:1s;ind:pre:3s; +allèle allèle nom m s 0.04 0.00 0.04 0.00 +allèrent aller ver 9992.78 2854.93 0.42 11.69 ind:pas:3p; +allé aller ver m s 9992.78 2854.93 123.26 57.30 par:pas; +allécha allécher ver 0.07 2.09 0.00 0.07 ind:pas:3s; +alléchait allécher ver 0.07 2.09 0.00 0.07 ind:imp:3s; +alléchant alléchant adj m s 0.60 2.09 0.25 0.68 +alléchante alléchant adj f s 0.60 2.09 0.29 0.61 +alléchantes alléchant adj f p 0.60 2.09 0.03 0.41 +alléchants alléchant adj m p 0.60 2.09 0.03 0.41 +allécher allécher ver 0.07 2.09 0.04 0.20 inf; +allécherait allécher ver 0.07 2.09 0.00 0.07 cnd:pre:3s; +alléché allécher ver m s 0.07 2.09 0.01 1.01 par:pas; +alléchée allécher ver f s 0.07 2.09 0.00 0.34 par:pas; +alléchés allécher ver m p 0.07 2.09 0.01 0.20 par:pas; +allée aller ver f s 9992.78 2854.93 52.93 25.00 par:pas; +allées aller ver f p 9992.78 2854.93 3.15 2.23 par:pas; +allégation allégation nom f s 1.87 0.54 0.28 0.07 +allégations allégation nom f p 1.87 0.54 1.59 0.47 +allégea alléger ver 3.65 6.89 0.10 0.07 ind:pas:3s; +allégeaient alléger ver 3.65 6.89 0.01 0.20 ind:imp:3p; +allégeais alléger ver 3.65 6.89 0.00 0.07 ind:imp:1s; +allégeait alléger ver 3.65 6.89 0.00 0.88 ind:imp:3s; +allégeance allégeance nom f s 1.64 1.42 1.61 1.35 +allégeances allégeance nom f p 1.64 1.42 0.04 0.07 +allégeant alléger ver 3.65 6.89 0.02 0.27 par:pre; +allégement allégement nom m s 0.03 0.54 0.03 0.47 +allégements allégement nom m p 0.03 0.54 0.00 0.07 +alléger alléger ver 3.65 6.89 1.40 1.69 inf; +allégera alléger ver 3.65 6.89 0.04 0.00 ind:fut:3s; +allégerait alléger ver 3.65 6.89 0.04 0.07 cnd:pre:3s; +allégez alléger ver 3.65 6.89 0.06 0.07 imp:pre:2p;ind:pre:2p; +allégorie allégorie nom f s 0.41 2.16 0.38 1.15 +allégories allégorie nom f p 0.41 2.16 0.04 1.01 +allégorique allégorique adj s 0.04 1.35 0.04 0.68 +allégoriquement allégoriquement adv 0.10 0.07 0.10 0.07 +allégoriques allégorique adj p 0.04 1.35 0.00 0.68 +allégorisé allégoriser ver m s 0.00 0.07 0.00 0.07 par:pas; +allégrement allégrement adv 0.03 2.77 0.03 2.77 +allégresse allégresse nom f s 2.36 11.89 2.36 11.82 +allégresses allégresse nom f p 2.36 11.89 0.00 0.07 +allégé alléger ver m s 3.65 6.89 1.16 1.08 par:pas; +allégua alléguer ver 0.07 2.97 0.00 0.20 ind:pas:3s; +alléguaient alléguer ver 0.07 2.97 0.00 0.20 ind:imp:3p; +alléguais alléguer ver 0.07 2.97 0.00 0.07 ind:imp:1s; +alléguait alléguer ver 0.07 2.97 0.00 0.27 ind:imp:3s; +alléguant alléguer ver 0.07 2.97 0.02 1.82 par:pre; +allégée alléger ver f s 3.65 6.89 0.18 1.08 par:pas; +alléguer alléguer ver 0.07 2.97 0.00 0.20 inf; +alléguera alléguer ver 0.07 2.97 0.00 0.07 ind:fut:3s; +allégées alléger ver f p 3.65 6.89 0.16 0.14 par:pas; +allégés alléger ver m p 3.65 6.89 0.10 0.07 par:pas; +allégué alléguer ver m s 0.07 2.97 0.03 0.07 par:pas; +alléguée alléguer ver f s 0.07 2.97 0.01 0.00 par:pas; +alléluia alléluia ono 2.62 0.41 2.62 0.41 +alléluias alléluia nom m p 0.99 0.34 0.28 0.14 +alluma allumer ver 54.80 116.28 0.33 23.78 ind:pas:3s; +allumage allumage nom m s 1.75 1.35 1.75 1.35 +allumai allumer ver 54.80 116.28 0.01 2.09 ind:pas:1s; +allumaient allumer ver 54.80 116.28 0.17 4.53 ind:imp:3p; +allumais allumer ver 54.80 116.28 0.40 1.22 ind:imp:1s;ind:imp:2s; +allumait allumer ver 54.80 116.28 0.78 8.11 ind:imp:3s; +allumant allumer ver 54.80 116.28 0.33 4.05 par:pre; +allume_cigare allume_cigare nom m s 0.19 0.14 0.19 0.14 +allume_cigares allume_cigares nom m 0.14 0.14 0.14 0.14 +allume_feu allume_feu nom m 0.04 0.27 0.04 0.27 +allume_gaz allume_gaz nom m 0.20 0.14 0.20 0.14 +allume allumer ver 54.80 116.28 19.22 18.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allument allumer ver 54.80 116.28 1.23 3.24 ind:pre:3p; +allumer allumer ver 54.80 116.28 11.98 20.74 inf; +allumera allumer ver 54.80 116.28 0.74 0.34 ind:fut:3s; +allumerai allumer ver 54.80 116.28 0.97 0.14 ind:fut:1s; +allumeraient allumer ver 54.80 116.28 0.00 0.34 cnd:pre:3p; +allumerais allumer ver 54.80 116.28 0.04 0.07 cnd:pre:1s; +allumerait allumer ver 54.80 116.28 0.03 0.34 cnd:pre:3s; +allumeras allumer ver 54.80 116.28 0.07 0.07 ind:fut:2s; +allumerons allumer ver 54.80 116.28 0.02 0.14 ind:fut:1p; +allumeront allumer ver 54.80 116.28 0.45 0.20 ind:fut:3p; +allumes allumer ver 54.80 116.28 1.69 0.27 ind:pre:2s;sub:pre:2s; +allumette allumette nom f s 15.65 20.88 4.43 9.73 +allumettes allumette nom f p 15.65 20.88 11.22 11.15 +allumeur allumeur nom m s 1.41 1.15 0.32 0.14 +allumeurs allumeur nom m p 1.41 1.15 0.07 0.07 +allumeuse allumeur nom f s 1.41 1.15 1.02 0.74 +allumeuses allumeuse nom f p 0.09 0.00 0.09 0.00 +allumez allumer ver 54.80 116.28 5.27 0.47 imp:pre:2p;ind:pre:2p; +allumiez allumer ver 54.80 116.28 0.25 0.00 ind:imp:2p; +allumions allumer ver 54.80 116.28 0.01 0.34 ind:imp:1p; +allumoir allumoir nom m s 0.00 0.07 0.00 0.07 +allumâmes allumer ver 54.80 116.28 0.00 0.14 ind:pas:1p; +allumons allumer ver 54.80 116.28 0.53 0.47 imp:pre:1p;ind:pre:1p; +allumât allumer ver 54.80 116.28 0.00 0.20 sub:imp:3s; +allumèrent allumer ver 54.80 116.28 0.02 2.50 ind:pas:3p; +allumé allumer ver m s 54.80 116.28 6.76 15.54 par:pas; +allumée allumé adj f s 5.76 14.59 3.59 5.74 +allumées allumer ver f p 54.80 116.28 0.80 1.89 par:pas; +allumés allumer ver m p 54.80 116.28 0.62 1.49 par:pas; +allure allure nom f s 10.57 65.88 10.00 57.09 +allures allure nom f p 10.57 65.88 0.56 8.78 +alluré alluré adj m s 0.00 0.07 0.00 0.07 +allés aller ver m p 9992.78 2854.93 26.37 17.23 par:pas; +allusif allusif adj m s 0.00 1.22 0.00 0.34 +allusifs allusif adj m p 0.00 1.22 0.00 0.20 +allusion allusion nom f s 4.72 31.15 3.88 23.18 +allusionne allusionner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +allusions allusion nom f p 4.72 31.15 0.84 7.97 +allusive allusif adj f s 0.00 1.22 0.00 0.41 +allusivement allusivement adv 0.10 0.14 0.10 0.14 +allusives allusif adj f p 0.00 1.22 0.00 0.27 +alluvion alluvion nom f s 0.16 0.95 0.01 0.14 +alluvions alluvion nom f p 0.16 0.95 0.14 0.81 +alma alma nom f s 0.86 0.14 0.86 0.14 +almanach almanach nom m s 1.00 1.89 0.89 1.22 +almanachs almanach nom m p 1.00 1.89 0.11 0.68 +almohade almohade nom s 0.10 0.14 0.10 0.07 +almohades almohade nom p 0.10 0.14 0.00 0.07 +almée almée nom f s 0.00 0.27 0.00 0.14 +almées almée nom f p 0.00 0.27 0.00 0.14 +aloi aloi nom m s 0.22 1.89 0.22 1.89 +alopécie alopécie nom f s 0.05 0.07 0.05 0.07 +alors alors adv_sup 1777.65 1033.78 1777.65 1033.78 +alose alose nom f s 0.04 0.47 0.04 0.20 +aloses alose nom f p 0.04 0.47 0.00 0.27 +aloès aloès nom m 0.23 1.15 0.23 1.15 +alouette alouette nom f s 1.41 4.32 1.32 1.82 +alouettes alouette nom f p 1.41 4.32 0.09 2.50 +alourdît alourdir ver 0.66 15.34 0.00 0.07 sub:imp:3s; +alourdi alourdir ver m s 0.66 15.34 0.07 2.50 par:pas; +alourdie alourdir ver f s 0.66 15.34 0.01 2.64 par:pas; +alourdies alourdir ver f p 0.66 15.34 0.00 1.28 par:pas; +alourdir alourdir ver 0.66 15.34 0.38 1.82 inf; +alourdirai alourdir ver 0.66 15.34 0.01 0.00 ind:fut:1s; +alourdiraient alourdir ver 0.66 15.34 0.00 0.07 cnd:pre:3p; +alourdirent alourdir ver 0.66 15.34 0.00 0.20 ind:pas:3p; +alourdis alourdir ver m p 0.66 15.34 0.13 1.55 imp:pre:2s;ind:pre:1s;par:pas; +alourdissaient alourdir ver 0.66 15.34 0.01 0.68 ind:imp:3p; +alourdissait alourdir ver 0.66 15.34 0.00 1.69 ind:imp:3s; +alourdissant alourdir ver 0.66 15.34 0.00 0.41 par:pre; +alourdissement alourdissement nom m s 0.00 0.14 0.00 0.14 +alourdissent alourdir ver 0.66 15.34 0.00 0.68 ind:pre:3p; +alourdit alourdir ver 0.66 15.34 0.04 1.76 ind:pre:3s;ind:pas:3s; +aloyau aloyau nom m s 0.27 0.27 0.27 0.27 +alpa alper ver 0.30 0.07 0.30 0.07 ind:pas:3s; +alpaga alpaga nom m s 0.12 1.28 0.12 1.28 +alpage alpage nom m s 0.01 0.81 0.00 0.34 +alpages alpage nom m p 0.01 0.81 0.01 0.47 +alpaguait alpaguer ver 0.34 2.16 0.01 0.07 ind:imp:3s; +alpague alpaguer ver 0.34 2.16 0.19 0.88 ind:pre:1s;ind:pre:3s; +alpaguent alpaguer ver 0.34 2.16 0.02 0.07 ind:pre:3p; +alpaguer alpaguer ver 0.34 2.16 0.09 0.74 inf; +alpaguerait alpaguer ver 0.34 2.16 0.00 0.07 cnd:pre:3s; +alpagué alpaguer ver m s 0.34 2.16 0.03 0.20 par:pas; +alpaguée alpaguer ver f s 0.34 2.16 0.00 0.07 par:pas; +alpagués alpaguer ver m p 0.34 2.16 0.00 0.07 par:pas; +alpe alpe nom f s 0.14 0.27 0.00 0.20 +alpenstock alpenstock nom m s 0.00 0.34 0.00 0.34 +alpes alpe nom f p 0.14 0.27 0.14 0.07 +alpestre alpestre adj s 0.10 0.47 0.10 0.27 +alpestres alpestre adj m p 0.10 0.47 0.00 0.20 +alpha alpha nom m 2.09 0.61 2.09 0.61 +alphabet alphabet nom m s 3.16 4.73 3.14 4.39 +alphabets alphabet nom m p 3.16 4.73 0.02 0.34 +alphabétique alphabétique adj s 1.00 1.69 1.00 1.69 +alphabétiquement alphabétiquement adv 0.14 0.07 0.14 0.07 +alphabétisation alphabétisation nom f s 0.30 0.07 0.30 0.07 +alphabétiser alphabétiser ver 0.02 0.00 0.02 0.00 inf; +alphabétisé alphabétisé adj m s 0.01 0.00 0.01 0.00 +alphanumérique alphanumérique adj m s 0.07 0.00 0.07 0.00 +alpin alpin adj m s 1.19 3.04 0.18 0.95 +alpine alpin adj f s 1.19 3.04 0.43 0.47 +alpines alpin adj f p 1.19 3.04 0.00 0.20 +alpinisme alpinisme nom m s 0.67 0.61 0.67 0.61 +alpiniste alpiniste nom s 1.96 1.49 0.95 1.15 +alpinistes alpiniste nom p 1.96 1.49 1.00 0.34 +alpins alpin adj m p 1.19 3.04 0.58 1.42 +alsacien alsacien adj m s 0.04 3.99 0.02 1.89 +alsacienne alsacien adj f s 0.04 3.99 0.00 1.55 +alsaciennes alsacien adj f p 0.04 3.99 0.00 0.20 +alsaciens alsacien adj m p 0.04 3.99 0.03 0.34 +alstonia alstonia nom f s 0.14 0.00 0.14 0.00 +alter_ego alter_ego nom m 0.30 0.54 0.30 0.54 +alter alter adv 0.00 0.07 0.00 0.07 +altercation altercation nom f s 1.20 1.49 1.12 1.42 +altercations altercation nom f p 1.20 1.49 0.09 0.07 +alterna alterner ver 1.49 6.82 0.00 0.07 ind:pas:3s; +alternaient alterner ver 1.49 6.82 0.02 1.76 ind:imp:3p; +alternait alterner ver 1.49 6.82 0.04 0.34 ind:imp:3s; +alternance alternance nom f s 0.20 3.78 0.20 2.84 +alternances alternance nom f p 0.20 3.78 0.00 0.95 +alternant alterner ver 1.49 6.82 0.26 1.62 par:pre; +alternateur alternateur nom m s 0.14 0.00 0.14 0.00 +alternatif alternatif adj m s 2.02 0.95 1.02 0.14 +alternatifs alternatif adj m p 2.02 0.95 0.23 0.07 +alternative alternative nom f s 5.89 2.23 4.96 1.89 +alternativement alternativement adv 0.16 5.88 0.16 5.88 +alternatives alternative nom f p 5.89 2.23 0.93 0.34 +alterne alterner ver 1.49 6.82 0.19 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alternent alterner ver 1.49 6.82 0.02 0.68 ind:pre:3p; +alterner alterner ver 1.49 6.82 0.70 0.74 inf; +alternera alterner ver 1.49 6.82 0.01 0.00 ind:fut:3s; +alternez alterner ver 1.49 6.82 0.06 0.00 imp:pre:2p;ind:pre:2p; +alternions alterner ver 1.49 6.82 0.01 0.00 ind:imp:1p; +alternèrent alterner ver 1.49 6.82 0.00 0.07 ind:pas:3p; +alterné alterner ver m s 1.49 6.82 0.16 0.14 par:pas; +alternée alterné adj f s 0.09 0.81 0.07 0.00 +alternées alterné adj f p 0.09 0.81 0.01 0.41 +alternés alterner ver m p 1.49 6.82 0.00 0.41 par:pas; +altesse altesse nom f s 12.93 4.05 12.72 1.08 +altesses altesse nom f p 12.93 4.05 0.20 2.97 +althaea althaea nom f s 0.01 0.00 0.01 0.00 +alène alène nom f s 0.24 0.34 0.24 0.34 +alèse alèse nom f s 0.01 0.61 0.01 0.61 +alèze alèze nom f s 0.00 0.07 0.00 0.07 +altier altier adj m s 0.56 2.91 0.14 0.88 +altiers altier adj m p 0.56 2.91 0.01 0.07 +altimètre altimètre nom m s 0.75 0.14 0.72 0.14 +altimètres altimètre nom m p 0.75 0.14 0.02 0.00 +altière altier adj f s 0.56 2.91 0.41 1.69 +altièrement altièrement adv 0.00 0.07 0.00 0.07 +altières altier adj f p 0.56 2.91 0.00 0.27 +altitude altitude nom f s 6.39 6.96 6.37 6.35 +altitudes altitude nom f p 6.39 6.96 0.03 0.61 +alto alto nom s 0.45 1.08 0.35 0.95 +altos alto nom p 0.45 1.08 0.10 0.14 +altruisme altruisme nom m s 0.31 0.74 0.31 0.74 +altruiste altruiste adj s 0.86 0.00 0.52 0.00 +altruistes altruiste adj p 0.86 0.00 0.34 0.00 +altère altérer ver 2.62 7.50 0.51 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +altèrent altérer ver 2.62 7.50 0.20 0.41 ind:pre:3p; +altuglas altuglas nom m 0.00 0.07 0.00 0.07 +altéra altérer ver 2.62 7.50 0.00 0.27 ind:pas:3s; +altérable altérable adj s 0.01 0.00 0.01 0.00 +altéraient altérer ver 2.62 7.50 0.00 0.41 ind:imp:3p; +altérait altérer ver 2.62 7.50 0.01 0.61 ind:imp:3s; +altérant altérer ver 2.62 7.50 0.06 0.07 par:pre; +altération altération nom f s 0.64 1.49 0.59 0.95 +altérations altération nom f p 0.64 1.49 0.05 0.54 +altérer altérer ver 2.62 7.50 0.83 1.89 inf; +altérera altérer ver 2.62 7.50 0.02 0.07 ind:fut:3s; +altéreront altérer ver 2.62 7.50 0.02 0.00 ind:fut:3p; +altérez altérer ver 2.62 7.50 0.01 0.00 ind:pre:2p; +altériez altérer ver 2.62 7.50 0.01 0.00 ind:imp:2p; +altérité altérité nom f s 0.02 0.20 0.02 0.20 +altérât altérer ver 2.62 7.50 0.01 0.20 sub:imp:3s; +altérèrent altérer ver 2.62 7.50 0.00 0.07 ind:pas:3p; +altéré altérer ver m s 2.62 7.50 0.69 1.35 par:pas; +altérée altérer ver f s 2.62 7.50 0.14 0.81 par:pas; +altérées altérer ver f p 2.62 7.50 0.07 0.20 par:pas; +altérés altérer ver m p 2.62 7.50 0.04 0.20 par:pas; +alu alu nom m 1.06 0.95 1.06 0.95 +aléa aléa nom m s 0.34 1.01 0.02 0.20 +aléas aléa nom m p 0.34 1.01 0.32 0.81 +aléatoire aléatoire adj s 2.04 2.16 1.36 1.96 +aléatoirement aléatoirement adv 0.09 0.00 0.09 0.00 +aléatoires aléatoire adj p 2.04 2.16 0.69 0.20 +aludes alude nom f p 0.14 0.00 0.14 0.00 +aluette aluette nom f s 0.01 0.00 0.01 0.00 +alémaniques alémanique adj p 0.00 0.07 0.00 0.07 +aluminium aluminium nom m s 2.38 4.32 2.38 4.32 +alun alun nom m s 0.00 0.74 0.00 0.74 +aluni alunir ver m s 0.43 0.07 0.06 0.00 par:pas; +alunir alunir ver 0.43 0.07 0.25 0.07 inf; +alunira alunir ver 0.43 0.07 0.13 0.00 ind:fut:3s; +alunissage alunissage nom m s 0.52 0.00 0.51 0.00 +alunissages alunissage nom m p 0.52 0.00 0.01 0.00 +aléoutien aléoutien adj m s 0.02 0.00 0.02 0.00 +alésait aléser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +aléser aléser ver 0.00 0.14 0.00 0.07 inf; +alvar alvar nom m s 0.05 0.00 0.05 0.00 +alvin alvin adj m s 0.12 0.00 0.12 0.00 +alvéolaire alvéolaire adj f s 0.04 0.00 0.04 0.00 +alvéole alvéole nom m s 0.20 3.18 0.11 1.62 +alvéoles alvéole nom m p 0.20 3.18 0.09 1.55 +alvéolé alvéolé adj m s 0.00 0.34 0.00 0.07 +alvéolée alvéolé adj f s 0.00 0.34 0.00 0.14 +alvéolées alvéolé adj f p 0.00 0.34 0.00 0.07 +alvéolés alvéolé adj m p 0.00 0.34 0.00 0.07 +alysse alysse nom m s 0.03 0.27 0.03 0.27 +am_stram_gram am_stram_gram ono 0.08 0.14 0.08 0.14 +amabilité amabilité nom f s 2.91 5.34 2.81 3.78 +amabilités amabilité nom f p 2.91 5.34 0.11 1.55 +amadou amadou nom m s 0.01 1.76 0.01 1.76 +amadoua amadouer ver 1.51 3.58 0.00 0.20 ind:pas:3s; +amadouaient amadouer ver 1.51 3.58 0.00 0.07 ind:imp:3p; +amadouait amadouer ver 1.51 3.58 0.01 0.14 ind:imp:3s; +amadouant amadouer ver 1.51 3.58 0.02 0.14 par:pre; +amadoue amadouer ver 1.51 3.58 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amadouer amadouer ver 1.51 3.58 1.01 2.70 inf; +amadoueras amadouer ver 1.51 3.58 0.01 0.00 ind:fut:2s; +amadouez amadouer ver 1.51 3.58 0.01 0.00 ind:pre:2p; +amadoué amadouer ver m s 1.51 3.58 0.23 0.27 par:pas; +amaigri amaigrir ver m s 0.04 1.01 0.03 0.54 par:pas; +amaigrie amaigri adj f s 0.02 2.16 0.00 0.54 +amaigries amaigri adj f p 0.02 2.16 0.00 0.14 +amaigris amaigri adj m p 0.02 2.16 0.00 0.41 +amaigrissait amaigrir ver 0.04 1.01 0.00 0.07 ind:imp:3s; +amaigrissant amaigrissant adj m s 0.09 0.14 0.03 0.07 +amaigrissante amaigrissant adj f s 0.09 0.14 0.01 0.00 +amaigrissantes amaigrissant adj f p 0.09 0.14 0.04 0.00 +amaigrissants amaigrissant adj m p 0.09 0.14 0.00 0.07 +amaigrissement amaigrissement nom m s 0.20 0.54 0.20 0.54 +amaigrit amaigrir ver 0.04 1.01 0.01 0.07 ind:pre:3s;ind:pas:3s; +amalfitaine amalfitain adj f s 0.00 0.07 0.00 0.07 +amalgamaient amalgamer ver 0.44 1.22 0.00 0.14 ind:imp:3p; +amalgamais amalgamer ver 0.44 1.22 0.00 0.07 ind:imp:1s; +amalgamait amalgamer ver 0.44 1.22 0.00 0.07 ind:imp:3s; +amalgamant amalgamer ver 0.44 1.22 0.10 0.00 par:pre; +amalgame amalgame nom m s 0.31 2.03 0.30 1.82 +amalgamer amalgamer ver 0.44 1.22 0.00 0.27 inf; +amalgames amalgame nom m p 0.31 2.03 0.01 0.20 +amalgamez amalgamer ver 0.44 1.22 0.00 0.07 ind:pre:2p; +amalgamé amalgamer ver m s 0.44 1.22 0.27 0.14 par:pas; +amalgamée amalgamer ver f s 0.44 1.22 0.04 0.00 par:pas; +amalgamées amalgamer ver f p 0.44 1.22 0.00 0.14 par:pas; +amalgamés amalgamer ver m p 0.44 1.22 0.02 0.34 par:pas; +aman aman nom m s 0.04 0.14 0.04 0.14 +amande amande nom f s 2.19 8.18 1.07 3.99 +amandes amande nom f p 2.19 8.18 1.13 4.19 +amandier amandier nom m s 0.40 2.23 0.14 0.34 +amandiers amandier nom m p 0.40 2.23 0.27 1.89 +amandine amandin nom f s 0.01 0.07 0.01 0.00 +amandines amandine nom f p 0.02 0.00 0.02 0.00 +amanite amanite nom f s 0.10 0.27 0.00 0.14 +amanites amanite nom f p 0.10 0.27 0.10 0.14 +amant amant nom m s 35.03 69.59 23.28 46.76 +amante amante nom f s 1.55 6.76 1.04 5.54 +amantes amante nom f p 1.55 6.76 0.52 1.22 +amants amant nom m p 35.03 69.59 11.75 22.84 +amarante amarante nom s 0.05 0.61 0.02 0.27 +amarantes amarante nom p 0.05 0.61 0.03 0.34 +amaro amaro nom m s 2.02 0.00 2.02 0.00 +amarra amarrer ver 1.44 6.69 0.08 0.34 ind:pas:3s; +amarrage amarrage nom m s 0.46 0.61 0.45 0.54 +amarrages amarrage nom m p 0.46 0.61 0.01 0.07 +amarrai amarrer ver 1.44 6.69 0.00 0.07 ind:pas:1s; +amarraient amarrer ver 1.44 6.69 0.00 0.27 ind:imp:3p; +amarrais amarrer ver 1.44 6.69 0.00 0.07 ind:imp:1s; +amarrait amarrer ver 1.44 6.69 0.04 0.20 ind:imp:3s; +amarrant amarrer ver 1.44 6.69 0.00 0.14 par:pre; +amarre amarre nom f s 1.66 4.66 0.58 1.42 +amarrent amarrer ver 1.44 6.69 0.00 0.07 ind:pre:3p; +amarrer amarrer ver 1.44 6.69 0.22 1.01 inf; +amarres amarre nom f p 1.66 4.66 1.08 3.24 +amarrez amarrer ver 1.44 6.69 0.16 0.00 imp:pre:2p; +amarré amarrer ver m s 1.44 6.69 0.49 1.89 par:pas; +amarrée amarrer ver f s 1.44 6.69 0.15 0.88 par:pas; +amarrées amarrer ver f p 1.44 6.69 0.00 0.68 par:pas; +amarrés amarrer ver m p 1.44 6.69 0.08 0.81 par:pas; +amaryllis amaryllis nom f 0.03 1.22 0.03 1.22 +amas amas nom m 1.56 9.32 1.56 9.32 +amassa amasser ver 3.46 8.24 0.02 0.34 ind:pas:3s; +amassai amasser ver 3.46 8.24 0.00 0.07 ind:pas:1s; +amassaient amasser ver 3.46 8.24 0.01 0.61 ind:imp:3p; +amassait amasser ver 3.46 8.24 0.02 0.68 ind:imp:3s; +amassant amasser ver 3.46 8.24 0.03 0.54 par:pre; +amasse amasser ver 3.46 8.24 0.71 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amassent amasser ver 3.46 8.24 0.19 0.27 ind:pre:3p; +amasser amasser ver 3.46 8.24 0.47 1.55 inf; +amassera amasser ver 3.46 8.24 0.14 0.00 ind:fut:3s; +amassez amasser ver 3.46 8.24 0.62 0.00 imp:pre:2p;ind:pre:2p; +amassons amasser ver 3.46 8.24 0.01 0.00 ind:pre:1p; +amassèrent amasser ver 3.46 8.24 0.00 0.07 ind:pas:3p; +amassé amasser ver m s 3.46 8.24 0.91 1.55 par:pas; +amassée amasser ver f s 3.46 8.24 0.03 0.61 par:pas; +amassées amasser ver f p 3.46 8.24 0.17 0.41 par:pas; +amassés amasser ver m p 3.46 8.24 0.12 0.95 par:pas; +amateur amateur nom s 11.66 16.15 5.53 7.16 +amateurisme amateurisme nom m s 0.12 0.34 0.12 0.34 +amateurs amateur nom p 11.66 16.15 6.04 8.99 +amati amatir ver m s 0.00 0.14 0.00 0.14 par:pas; +amatrice amateur nom f s 11.66 16.15 0.09 0.00 +amaurose amaurose nom f s 0.00 0.07 0.00 0.07 +amazone amazone nom f s 0.55 2.23 0.25 1.89 +amazones amazone nom f p 0.55 2.23 0.30 0.34 +amazonien amazonien adj m s 0.36 0.14 0.03 0.07 +amazonienne amazonien adj f s 0.36 0.14 0.30 0.00 +amazoniennes amazonien adj f p 0.36 0.14 0.04 0.07 +ambages ambages nom f p 0.29 0.88 0.29 0.88 +ambassade ambassade nom f s 9.49 15.34 8.85 13.38 +ambassades ambassade nom f p 9.49 15.34 0.65 1.96 +ambassadeur ambassadeur nom m s 13.85 33.72 11.57 26.15 +ambassadeurs ambassadeur nom m p 13.85 33.72 0.96 3.85 +ambassadrice ambassadeur nom f s 13.85 33.72 1.32 3.58 +ambassadrices ambassadeur nom f p 13.85 33.72 0.00 0.14 +ambiance ambiance nom f s 12.37 11.55 12.33 11.08 +ambiances ambiance nom f p 12.37 11.55 0.03 0.47 +ambiant ambiant adj m s 0.75 4.05 0.20 1.49 +ambiante ambiant adj f s 0.75 4.05 0.50 2.23 +ambiantes ambiant adj f p 0.75 4.05 0.01 0.34 +ambiants ambiant adj m p 0.75 4.05 0.04 0.00 +ambidextre ambidextre adj f s 0.32 0.00 0.32 0.00 +ambigu ambigu adj m s 2.58 8.99 1.77 4.05 +ambiguïté ambiguïté nom f s 0.52 3.04 0.39 2.84 +ambiguïtés ambiguïté nom f p 0.52 3.04 0.14 0.20 +ambigus ambigu adj m p 2.58 8.99 0.27 1.55 +ambiguë ambigu adj f s 2.58 8.99 0.51 2.57 +ambiguës ambigu adj f p 2.58 8.99 0.04 0.81 +ambitieuse ambitieux adj f s 6.08 4.73 1.09 0.81 +ambitieuses ambitieux adj f p 6.08 4.73 0.17 0.20 +ambitieux ambitieux adj m 6.08 4.73 4.82 3.72 +ambition ambition nom f s 11.15 30.34 7.98 19.32 +ambitionnais ambitionner ver 0.06 1.49 0.02 0.14 ind:imp:1s; +ambitionnait ambitionner ver 0.06 1.49 0.00 0.41 ind:imp:3s; +ambitionnant ambitionner ver 0.06 1.49 0.00 0.07 par:pre; +ambitionne ambitionner ver 0.06 1.49 0.03 0.41 ind:pre:1s;ind:pre:3s; +ambitionnent ambitionner ver 0.06 1.49 0.01 0.07 ind:pre:3p; +ambitionner ambitionner ver 0.06 1.49 0.00 0.14 inf; +ambitionnez ambitionner ver 0.06 1.49 0.00 0.07 ind:pre:2p; +ambitionné ambitionner ver m s 0.06 1.49 0.00 0.20 par:pas; +ambitions ambition nom f p 11.15 30.34 3.17 11.01 +ambivalence ambivalence nom f s 0.28 0.41 0.28 0.34 +ambivalences ambivalence nom f p 0.28 0.41 0.00 0.07 +ambivalent ambivalent adj m s 0.17 0.20 0.11 0.14 +ambivalente ambivalent adj f s 0.17 0.20 0.06 0.07 +amble amble nom m s 0.30 0.47 0.30 0.47 +ambler ambler ver 0.05 0.00 0.05 0.00 inf; +amboine amboine nom s 0.00 0.07 0.00 0.07 +ambon ambon nom m s 0.00 0.07 0.00 0.07 +ambras ambrer ver 0.04 0.54 0.00 0.07 ind:pas:2s; +ambre ambre nom m s 0.93 4.39 0.93 4.39 +ambrer ambrer ver 0.04 0.54 0.01 0.00 inf; +ambroisie ambroisie nom f s 0.51 0.14 0.51 0.14 +ambré ambré adj m s 0.19 2.16 0.01 0.74 +ambrée ambré adj f s 0.19 2.16 0.17 1.08 +ambrées ambrer ver f p 0.04 0.54 0.01 0.00 par:pas; +ambrés ambré adj m p 0.19 2.16 0.01 0.20 +ambulance ambulance nom f s 27.55 11.69 25.94 9.26 +ambulances ambulance nom f p 27.55 11.69 1.61 2.43 +ambulancier ambulancier nom m s 1.64 1.69 0.57 0.61 +ambulanciers ambulancier nom m p 1.64 1.69 1.01 0.88 +ambulancière ambulancier nom f s 1.64 1.69 0.04 0.14 +ambulancières ambulancier nom f p 1.64 1.69 0.00 0.07 +ambulant ambulant adj m s 3.08 5.41 1.82 3.04 +ambulante ambulant adj f s 3.08 5.41 0.98 1.15 +ambulantes ambulant adj f p 3.08 5.41 0.13 0.07 +ambulants ambulant adj m p 3.08 5.41 0.15 1.15 +ambulatoire ambulatoire adj s 0.14 0.07 0.14 0.07 +amen amen ono 19.70 2.23 19.70 2.23 +amena amener ver 190.32 93.92 0.74 5.27 ind:pas:3s; +amenai amener ver 190.32 93.92 0.02 0.34 ind:pas:1s; +amenaient amener ver 190.32 93.92 0.37 2.16 ind:imp:3p; +amenais amener ver 190.32 93.92 1.17 0.34 ind:imp:1s;ind:imp:2s; +amenait amener ver 190.32 93.92 1.87 9.46 ind:imp:3s; +amenant amener ver 190.32 93.92 0.66 2.43 par:pre; +amendai amender ver 1.49 1.08 0.00 0.07 ind:pas:1s; +amendait amender ver 1.49 1.08 0.00 0.07 ind:imp:3s; +amende amende nom f s 9.37 4.80 8.38 3.65 +amendement amendement nom m s 3.75 0.68 3.28 0.14 +amendements amendement nom m p 3.75 0.68 0.47 0.54 +amendent amender ver 1.49 1.08 0.01 0.14 ind:pre:3p; +amender amender ver 1.49 1.08 1.06 0.47 inf; +amenderez amender ver 1.49 1.08 0.00 0.07 ind:fut:2p; +amendes amende nom f p 9.37 4.80 0.99 1.15 +amendez amender ver 1.49 1.08 0.04 0.00 imp:pre:2p;ind:pre:2p; +amendât amender ver 1.49 1.08 0.00 0.07 sub:imp:3s; +amendé amender ver m s 1.49 1.08 0.05 0.07 par:pas; +amendée amender ver f s 1.49 1.08 0.05 0.00 par:pas; +amener amener ver 190.32 93.92 35.60 18.18 inf;; +amenez amener ver 190.32 93.92 21.53 1.28 imp:pre:2p;ind:pre:2p; +ameniez amener ver 190.32 93.92 0.25 0.07 ind:imp:2p; +amenions amener ver 190.32 93.92 0.25 0.14 ind:imp:1p; +amenons amener ver 190.32 93.92 1.02 0.00 imp:pre:1p;ind:pre:1p; +amenât amener ver 190.32 93.92 0.00 0.20 sub:imp:3s; +amenèrent amener ver 190.32 93.92 0.61 1.08 ind:pas:3p; +amené amener ver m s 190.32 93.92 38.14 20.00 par:pas; +amenée amener ver f s 190.32 93.92 7.87 5.81 par:pas; +amenées amener ver f p 190.32 93.92 0.73 0.88 par:pas; +amenuisaient amenuiser ver 0.42 4.19 0.00 0.14 ind:imp:3p; +amenuisait amenuiser ver 0.42 4.19 0.02 0.95 ind:imp:3s; +amenuisant amenuiser ver 0.42 4.19 0.00 0.88 par:pre; +amenuise amenuiser ver 0.42 4.19 0.14 0.61 ind:pre:3s; +amenuisement amenuisement nom m s 0.00 0.14 0.00 0.14 +amenuisent amenuiser ver 0.42 4.19 0.23 0.41 ind:pre:3p; +amenuiser amenuiser ver 0.42 4.19 0.01 0.47 inf; +amenuiserait amenuiser ver 0.42 4.19 0.03 0.14 cnd:pre:3s; +amenuisèrent amenuiser ver 0.42 4.19 0.00 0.14 ind:pas:3p; +amenuisé amenuiser ver m s 0.42 4.19 0.00 0.14 par:pas; +amenuisée amenuiser ver f s 0.42 4.19 0.00 0.27 par:pas; +amenuisés amenuiser ver m p 0.42 4.19 0.00 0.07 par:pas; +amenés amener ver m p 190.32 93.92 4.71 6.15 par:pas; +amer amer adj m s 11.94 30.07 5.82 11.69 +amerlo amerlo nom s 0.10 0.47 0.00 0.14 +amerloque amerloque nom s 1.05 1.76 0.61 1.01 +amerloques amerloque nom p 1.05 1.76 0.44 0.74 +amerlos amerlo nom p 0.10 0.47 0.10 0.34 +amerri amerrir ver m s 0.13 0.07 0.04 0.00 par:pas; +amerrir amerrir ver 0.13 0.07 0.06 0.07 inf; +amerrissage amerrissage nom m s 0.16 0.00 0.16 0.00 +amerrit amerrir ver 0.13 0.07 0.02 0.00 ind:pre:3s;ind:pas:3s; +amers amer adj m p 11.94 30.07 1.25 2.57 +amertume amertume nom f s 4.64 19.39 4.64 19.05 +amertumes amertume nom f p 4.64 19.39 0.00 0.34 +ameublement ameublement nom m s 0.12 0.95 0.12 0.88 +ameublements ameublement nom m p 0.12 0.95 0.00 0.07 +ameuta ameuter ver 1.48 3.51 0.00 0.14 ind:pas:3s; +ameutaient ameuter ver 1.48 3.51 0.00 0.14 ind:imp:3p; +ameutait ameuter ver 1.48 3.51 0.00 0.07 ind:imp:3s; +ameutant ameuter ver 1.48 3.51 0.00 0.27 par:pre; +ameute ameuter ver 1.48 3.51 0.30 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ameutent ameuter ver 1.48 3.51 0.01 0.07 ind:pre:3p; +ameuter ameuter ver 1.48 3.51 0.89 1.62 inf; +ameutera ameuter ver 1.48 3.51 0.01 0.00 ind:fut:3s; +ameuterait ameuter ver 1.48 3.51 0.01 0.14 cnd:pre:3s; +ameutât ameuter ver 1.48 3.51 0.00 0.07 sub:imp:3s; +ameuté ameuter ver m s 1.48 3.51 0.25 0.47 par:pas; +ameutée ameuter ver f s 1.48 3.51 0.00 0.07 par:pas; +ameutées ameuter ver f p 1.48 3.51 0.00 0.07 par:pas; +ameutés ameuter ver m p 1.48 3.51 0.01 0.14 par:pas; +amharique amharique nom m s 0.27 0.00 0.27 0.00 +ami ami nom m s 747.98 354.12 360.90 140.14 +amiable amiable adj m s 1.06 1.82 1.06 1.82 +amiante amiante nom m s 0.82 0.54 0.82 0.54 +amibe amibe nom f s 0.40 0.20 0.27 0.14 +amibes amibe nom f p 0.40 0.20 0.13 0.07 +amibienne amibien adj f s 0.05 0.14 0.05 0.14 +amical amical adj m s 9.88 23.04 4.26 11.22 +amicale amical adj f s 9.88 23.04 3.67 7.57 +amicalement amicalement adv 1.15 4.12 1.15 4.12 +amicales amical adj f p 9.88 23.04 0.60 2.57 +amicalités amicalité nom f p 0.00 0.07 0.00 0.07 +amicaux amical adj m p 9.88 23.04 1.35 1.69 +amidon amidon nom m s 0.49 0.74 0.49 0.74 +amidonnaient amidonner ver 0.33 1.89 0.00 0.07 ind:imp:3p; +amidonnent amidonner ver 0.33 1.89 0.02 0.00 ind:pre:3p; +amidonner amidonner ver 0.33 1.89 0.04 0.20 inf; +amidonnez amidonner ver 0.33 1.89 0.02 0.00 imp:pre:2p;ind:pre:2p; +amidonné amidonner ver m s 0.33 1.89 0.04 0.54 par:pas; +amidonnée amidonner ver f s 0.33 1.89 0.02 0.34 par:pas; +amidonnées amidonner ver f p 0.33 1.89 0.15 0.20 par:pas; +amidonnés amidonner ver m p 0.33 1.89 0.04 0.54 par:pas; +amie ami nom f s 747.98 354.12 113.54 54.32 +amies ami nom f p 747.98 354.12 20.88 16.22 +amignoter amignoter ver 0.00 0.07 0.00 0.07 inf; +amigo amigo nom m s 6.91 1.08 4.75 0.95 +amigos amigo nom m p 6.91 1.08 2.15 0.14 +aminci aminci adj m s 0.10 0.47 0.10 0.14 +amincie amincir ver f s 0.25 2.30 0.00 0.14 par:pas; +amincies aminci adj f p 0.10 0.47 0.00 0.20 +amincir amincir ver 0.25 2.30 0.03 0.27 inf; +amincis aminci adj m p 0.10 0.47 0.00 0.07 +amincissaient amincir ver 0.25 2.30 0.00 0.27 ind:imp:3p; +amincissait amincir ver 0.25 2.30 0.03 0.20 ind:imp:3s; +amincissant amincissant adj m s 0.09 0.07 0.03 0.07 +amincissante amincissant adj f s 0.09 0.07 0.04 0.00 +amincissantes amincissant adj f p 0.09 0.07 0.01 0.00 +amincissants amincissant nom m p 0.03 0.14 0.01 0.00 +amincissement amincissement nom m s 0.10 0.14 0.10 0.14 +amincissent amincir ver 0.25 2.30 0.00 0.34 ind:pre:3p; +amincit amincir ver 0.25 2.30 0.19 0.68 ind:pre:3s;ind:pas:3s; +amine amine nom f s 0.01 0.00 0.01 0.00 +aminoacides aminoacide nom m p 0.02 0.00 0.02 0.00 +aminophylline aminophylline nom f s 0.01 0.00 0.01 0.00 +aminé aminé adj m s 0.36 0.00 0.04 0.00 +aminés aminé adj m p 0.36 0.00 0.31 0.00 +amiral amiral nom m s 6.00 13.51 5.60 11.22 +amirale amiral adj f s 4.04 8.58 0.01 0.14 +amirauté amirauté nom f s 0.22 6.96 0.22 6.89 +amirautés amirauté nom f p 0.22 6.96 0.00 0.07 +amiraux amiral nom m p 6.00 13.51 0.39 2.30 +amis ami nom m p 747.98 354.12 252.66 143.45 +amish amish adj m s 0.14 0.00 0.14 0.00 +amitieuse amitieux adj f s 0.00 0.07 0.00 0.07 +amitié amitié nom f s 36.69 77.77 32.39 67.70 +amitiés amitié nom f p 36.69 77.77 4.30 10.07 +ammoniac ammoniac nom m s 0.28 0.14 0.28 0.14 +ammoniacale ammoniacal adj f s 0.00 0.54 0.00 0.41 +ammoniacales ammoniacal adj f p 0.00 0.54 0.00 0.07 +ammoniacaux ammoniacal adj m p 0.00 0.54 0.00 0.07 +ammoniaque ammoniaque nom f s 0.40 0.27 0.40 0.27 +ammoniaqué ammoniaqué adj m s 0.00 0.27 0.00 0.14 +ammoniaquée ammoniaqué adj f s 0.00 0.27 0.00 0.07 +ammoniaquées ammoniaqué adj f p 0.00 0.27 0.00 0.07 +ammonite ammonite nom f s 0.40 0.14 0.40 0.14 +ammonitrate ammonitrate nom m 0.00 0.14 0.00 0.14 +ammonium ammonium nom m s 0.36 0.00 0.36 0.00 +amniocentèse amniocentèse nom f s 0.38 0.00 0.38 0.00 +amnios amnios nom m 0.04 0.00 0.04 0.00 +amniotique amniotique adj m s 0.14 0.14 0.14 0.14 +amnistiable amnistiable adj s 0.00 0.07 0.00 0.07 +amnistiante amnistiant adj f s 0.00 0.07 0.00 0.07 +amnistie amnistie nom f s 2.93 1.89 2.66 1.82 +amnistier amnistier ver 0.52 0.41 0.20 0.07 inf; +amnistierons amnistier ver 0.52 0.41 0.00 0.07 ind:fut:1p; +amnisties amnistie nom f p 2.93 1.89 0.27 0.07 +amnistié amnistier ver m s 0.52 0.41 0.07 0.27 par:pas; +amnistiée amnistier ver f s 0.52 0.41 0.11 0.00 par:pas; +amnistiés amnistier ver m p 0.52 0.41 0.02 0.00 par:pas; +amnésie amnésie nom f s 3.74 1.15 3.59 1.08 +amnésies amnésie nom f p 3.74 1.15 0.15 0.07 +amnésique amnésique adj s 2.48 0.54 2.44 0.47 +amnésiques amnésique nom p 1.33 0.20 0.17 0.00 +amochait amocher ver 3.80 2.77 0.00 0.07 ind:imp:3s; +amoche amocher ver 3.80 2.77 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amocher amocher ver 3.80 2.77 0.41 0.27 inf; +amochez amocher ver 3.80 2.77 0.02 0.00 imp:pre:2p;ind:pre:2p; +amochie amochir ver f s 0.00 0.07 0.00 0.07 par:pas; +amoché amocher ver m s 3.80 2.77 2.00 1.42 par:pas; +amochée amocher ver f s 3.80 2.77 1.03 0.47 par:pas; +amochés amocher ver m p 3.80 2.77 0.26 0.47 par:pas; +amoindri amoindrir ver m s 0.60 2.36 0.34 0.47 par:pas; +amoindrie amoindrir ver f s 0.60 2.36 0.04 0.34 par:pas; +amoindries amoindrir ver f p 0.60 2.36 0.00 0.07 par:pas; +amoindrir amoindrir ver 0.60 2.36 0.12 0.81 inf; +amoindrira amoindrir ver 0.60 2.36 0.02 0.00 ind:fut:3s; +amoindris amoindrir ver m p 0.60 2.36 0.04 0.14 ind:pre:2s;par:pas; +amoindrissait amoindrir ver 0.60 2.36 0.00 0.27 ind:imp:3s; +amoindrissement amoindrissement nom m s 0.01 0.07 0.01 0.07 +amoindrit amoindrir ver 0.60 2.36 0.04 0.27 ind:pre:3s;ind:pas:3s; +amok amok nom m s 0.01 0.07 0.01 0.07 +amolli amollir ver m s 0.17 5.41 0.11 0.95 par:pas; +amollie amollir ver f s 0.17 5.41 0.00 0.68 par:pas; +amollies amollir ver f p 0.17 5.41 0.00 0.41 par:pas; +amollir amollir ver 0.17 5.41 0.03 0.54 inf; +amollirent amollir ver 0.17 5.41 0.00 0.14 ind:pas:3p; +amollis amollir ver m p 0.17 5.41 0.01 0.47 ind:pre:1s;ind:pre:2s;par:pas; +amollissaient amollir ver 0.17 5.41 0.00 0.20 ind:imp:3p; +amollissait amollir ver 0.17 5.41 0.00 0.27 ind:imp:3s; +amollissant amollissant adj m s 0.00 0.14 0.00 0.14 +amollissement amollissement nom m s 0.00 0.14 0.00 0.14 +amollissent amollir ver 0.17 5.41 0.01 0.27 ind:pre:3p; +amollit amollir ver 0.17 5.41 0.01 1.42 ind:pre:3s;ind:pas:3s; +amoncelaient amonceler ver 0.16 4.86 0.02 1.69 ind:imp:3p; +amoncelait amonceler ver 0.16 4.86 0.10 0.34 ind:imp:3s; +amoncelant amonceler ver 0.16 4.86 0.00 0.14 par:pre; +amonceler amonceler ver 0.16 4.86 0.01 0.14 inf; +amoncelle amonceler ver 0.16 4.86 0.00 0.34 ind:pre:3s; +amoncellement amoncellement nom m s 0.07 6.08 0.07 4.32 +amoncellements amoncellement nom m p 0.07 6.08 0.00 1.76 +amoncellent amonceler ver 0.16 4.86 0.02 0.34 ind:pre:3p; +amoncelleraient amonceler ver 0.16 4.86 0.00 0.07 cnd:pre:3p; +amoncelèrent amonceler ver 0.16 4.86 0.00 0.07 ind:pas:3p; +amoncelé amonceler ver m s 0.16 4.86 0.01 0.20 par:pas; +amoncelée amonceler ver f s 0.16 4.86 0.00 0.07 par:pas; +amoncelées amonceler ver f p 0.16 4.86 0.00 0.41 par:pas; +amoncelés amonceler ver m p 0.16 4.86 0.00 1.08 par:pas; +amont amont nom m s 1.40 3.85 1.40 3.85 +amontillado amontillado nom m s 0.29 0.14 0.29 0.14 +amoral amoral adj m s 0.68 0.68 0.61 0.20 +amorale amoral adj f s 0.68 0.68 0.03 0.41 +amoraliste amoraliste nom s 0.05 0.00 0.05 0.00 +amoralité amoralité nom f s 0.04 0.07 0.04 0.07 +amoraux amoral adj m p 0.68 0.68 0.04 0.07 +amorce amorce nom f s 1.76 4.59 1.19 3.92 +amorcent amorcer ver 2.06 11.89 0.04 0.00 ind:pre:3p; +amorcer amorcer ver 2.06 11.89 0.40 2.64 inf; +amorcerait amorcer ver 2.06 11.89 0.01 0.07 cnd:pre:3s; +amorces amorce nom f p 1.76 4.59 0.57 0.68 +amorcez amorcer ver 2.06 11.89 0.18 0.00 imp:pre:2p; +amorcèrent amorcer ver 2.06 11.89 0.00 0.27 ind:pas:3p; +amorcé amorcer ver m s 2.06 11.89 0.20 1.69 par:pas; +amorcée amorcer ver f s 2.06 11.89 0.30 1.01 par:pas; +amorcées amorcer ver f p 2.06 11.89 0.05 0.14 par:pas; +amorcés amorcer ver m p 2.06 11.89 0.08 0.34 par:pas; +amoroso amoroso adv 0.45 0.07 0.45 0.07 +amorphe amorphe adj s 0.25 1.42 0.14 0.88 +amorphes amorphe adj p 0.25 1.42 0.11 0.54 +amorça amorcer ver 2.06 11.89 0.02 0.68 ind:pas:3s; +amorçage amorçage nom m s 0.09 0.07 0.09 0.07 +amorçai amorcer ver 2.06 11.89 0.00 0.14 ind:pas:1s; +amorçaient amorcer ver 2.06 11.89 0.01 0.27 ind:imp:3p; +amorçais amorcer ver 2.06 11.89 0.00 0.07 ind:imp:1s; +amorçait amorcer ver 2.06 11.89 0.00 2.03 ind:imp:3s; +amorçant amorcer ver 2.06 11.89 0.01 0.41 par:pre; +amorçoir amorçoir nom m s 0.00 0.07 0.00 0.07 +amorçons amorcer ver 2.06 11.89 0.40 0.00 imp:pre:1p;ind:pre:1p; +amorti amortir ver m s 1.69 4.93 0.51 0.68 par:pas; +amortie amortir ver f s 1.69 4.93 0.13 0.41 par:pas; +amorties amorti adj f p 0.20 1.55 0.14 0.27 +amortir amortir ver 1.69 4.93 0.41 1.62 inf; +amortirent amortir ver 1.69 4.93 0.00 0.14 ind:pas:3p; +amortiront amortir ver 1.69 4.93 0.01 0.00 ind:fut:3p; +amortis amortir ver m p 1.69 4.93 0.26 0.14 ind:pre:1s;par:pas; +amortissaient amortir ver 1.69 4.93 0.01 0.14 ind:imp:3p; +amortissait amortir ver 1.69 4.93 0.00 0.34 ind:imp:3s; +amortissant amortir ver 1.69 4.93 0.01 0.27 par:pre; +amortisse amortir ver 1.69 4.93 0.04 0.14 sub:pre:1s;sub:pre:3s; +amortissement amortissement nom m s 0.42 0.20 0.42 0.20 +amortissent amortir ver 1.69 4.93 0.00 0.07 ind:pre:3p; +amortisseur amortisseur nom m s 0.85 0.47 0.20 0.00 +amortisseurs amortisseur nom m p 0.85 0.47 0.66 0.47 +amortit amortir ver 1.69 4.93 0.32 0.95 ind:pre:3s;ind:pas:3s; +amour_goût amour_goût nom m s 0.00 0.07 0.00 0.07 +amour_passion amour_passion nom m s 0.00 0.41 0.00 0.41 +amour_propre amour_propre nom m s 2.54 6.89 2.54 6.76 +amour amour nom m s 458.27 403.92 450.46 373.58 +amouracha amouracher ver 1.03 1.15 0.00 0.14 ind:pas:3s; +amourache amouracher ver 1.03 1.15 0.06 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amourachent amouracher ver 1.03 1.15 0.02 0.00 ind:pre:3p; +amouracher amouracher ver 1.03 1.15 0.44 0.20 inf; +amourachera amouracher ver 1.03 1.15 0.00 0.07 ind:fut:3s; +amouraches amouracher ver 1.03 1.15 0.02 0.07 ind:pre:2s; +amouraché amouracher ver m s 1.03 1.15 0.28 0.20 par:pas; +amourachée amouracher ver f s 1.03 1.15 0.22 0.34 par:pas; +amourer amourer ver 0.00 0.07 0.00 0.07 inf; +amourette amourette nom f s 0.66 1.15 0.54 0.47 +amourettes amourette nom f p 0.66 1.15 0.12 0.68 +amoureuse amoureux adj f s 107.79 58.45 41.65 23.11 +amoureusement amoureusement adv 0.22 2.50 0.22 2.50 +amoureuses amoureux adj f p 107.79 58.45 2.73 4.05 +amoureux amoureux adj m 107.79 58.45 63.41 31.28 +amour_propre amour_propre nom m p 2.54 6.89 0.00 0.14 +amours amour nom p 458.27 403.92 7.81 30.34 +amovible amovible adj s 0.38 0.68 0.11 0.20 +amovibles amovible adj p 0.38 0.68 0.27 0.47 +amphi amphi nom m s 0.29 1.08 0.29 0.61 +amphibie amphibie adj s 0.71 0.61 0.38 0.47 +amphibien amphibien nom m s 0.20 0.00 0.12 0.00 +amphibiens amphibien nom m p 0.20 0.00 0.08 0.00 +amphibies amphibie adj p 0.71 0.61 0.33 0.14 +amphigouri amphigouri nom m s 0.02 0.27 0.00 0.27 +amphigourique amphigourique adj s 0.00 0.20 0.00 0.07 +amphigouriques amphigourique adj m p 0.00 0.20 0.00 0.14 +amphigouris amphigouri nom m p 0.02 0.27 0.02 0.00 +amphis amphi nom m p 0.29 1.08 0.00 0.47 +amphithéâtre amphithéâtre nom m s 0.59 2.57 0.46 2.09 +amphithéâtres amphithéâtre nom m p 0.59 2.57 0.14 0.47 +amphitrite amphitrite nom f s 0.00 0.07 0.00 0.07 +amphitryon amphitryon nom m s 0.13 0.07 0.13 0.07 +amphore amphore nom f s 0.46 1.35 0.45 0.81 +amphores amphore nom f p 0.46 1.35 0.01 0.54 +amphés amphé nom m p 0.36 0.14 0.36 0.14 +amphétamine amphétamine nom f s 1.13 0.54 0.27 0.14 +amphétamines amphétamine nom f p 1.13 0.54 0.86 0.41 +ample ample adj s 1.30 11.89 0.82 8.04 +amplement amplement adv 1.33 1.82 1.33 1.82 +amples ample adj p 1.30 11.89 0.48 3.85 +ampleur ampleur nom f s 2.38 7.57 2.38 7.43 +ampleurs ampleur nom f p 2.38 7.57 0.00 0.14 +ampli_tuner ampli_tuner nom m s 0.01 0.00 0.01 0.00 +ampli ampli nom m s 0.98 1.15 0.74 0.54 +amplifia amplifier ver 1.63 8.65 0.00 0.68 ind:pas:3s; +amplifiaient amplifier ver 1.63 8.65 0.00 0.47 ind:imp:3p; +amplifiait amplifier ver 1.63 8.65 0.05 2.43 ind:imp:3s; +amplifiant amplifier ver 1.63 8.65 0.01 0.54 par:pre; +amplificateur amplificateur nom m s 0.29 0.20 0.26 0.20 +amplificateurs amplificateur nom m p 0.29 0.20 0.04 0.00 +amplification amplification nom f s 0.21 0.54 0.19 0.54 +amplifications amplification nom f p 0.21 0.54 0.02 0.00 +amplifie amplifier ver 1.63 8.65 0.43 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amplifient amplifier ver 1.63 8.65 0.20 0.41 ind:pre:3p; +amplifier amplifier ver 1.63 8.65 0.37 0.61 inf; +amplifiera amplifier ver 1.63 8.65 0.05 0.00 ind:fut:3s; +amplifierais amplifier ver 1.63 8.65 0.00 0.07 cnd:pre:1s; +amplifiez amplifier ver 1.63 8.65 0.09 0.00 imp:pre:2p;ind:pre:2p; +amplifions amplifier ver 1.63 8.65 0.03 0.00 imp:pre:1p; +amplifièrent amplifier ver 1.63 8.65 0.00 0.20 ind:pas:3p; +amplifié amplifier ver m s 1.63 8.65 0.14 0.95 par:pas; +amplifiée amplifier ver f s 1.63 8.65 0.09 0.27 par:pas; +amplifiées amplifier ver f p 1.63 8.65 0.05 0.20 par:pas; +amplifiés amplifier ver m p 1.63 8.65 0.11 0.61 par:pas; +amplis ampli nom m p 0.98 1.15 0.24 0.61 +amplitude amplitude nom f s 0.29 1.76 0.29 1.76 +ampoule ampoule nom f s 7.66 19.12 4.80 11.49 +ampoules ampoule nom f p 7.66 19.12 2.85 7.64 +ampoulé ampoulé adj m s 0.07 0.95 0.05 0.54 +ampoulée ampoulé adj f s 0.07 0.95 0.01 0.20 +ampoulées ampoulé adj f p 0.07 0.95 0.00 0.20 +ampoulés ampoulé adj m p 0.07 0.95 0.01 0.00 +ampère ampère nom m s 0.26 0.07 0.01 0.00 +ampèremètre ampèremètre nom m s 0.02 0.00 0.02 0.00 +ampères ampère nom m p 0.26 0.07 0.25 0.07 +ampélopsis ampélopsis nom m 0.00 0.07 0.00 0.07 +ampérage ampérage nom m s 0.01 0.00 0.01 0.00 +amputa amputer ver 3.62 2.77 0.01 0.07 ind:pas:3s; +amputait amputer ver 3.62 2.77 0.03 0.07 ind:imp:3s; +amputant amputer ver 3.62 2.77 0.00 0.14 par:pre; +amputation amputation nom f s 0.79 1.62 0.55 1.28 +amputations amputation nom f p 0.79 1.62 0.23 0.34 +ampute amputer ver 3.62 2.77 0.71 0.20 ind:pre:1s;ind:pre:3s; +amputent amputer ver 3.62 2.77 0.02 0.00 ind:pre:3p; +amputer amputer ver 3.62 2.77 1.17 1.01 inf; +amputerai amputer ver 3.62 2.77 0.10 0.00 ind:fut:1s; +amputerait amputer ver 3.62 2.77 0.01 0.00 cnd:pre:3s; +amputez amputer ver 3.62 2.77 0.16 0.00 imp:pre:2p;ind:pre:2p; +amputé amputer ver m s 3.62 2.77 0.81 0.54 par:pas; +amputée amputer ver f s 3.62 2.77 0.40 0.61 par:pas; +amputées amputer ver f p 3.62 2.77 0.16 0.00 par:pas; +amputés amputé adj m p 1.28 1.49 0.81 0.27 +amène amener ver 190.32 93.92 59.80 13.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +amènent amener ver 190.32 93.92 2.29 1.62 ind:pre:3p;sub:pre:3p; +amènera amener ver 190.32 93.92 1.90 0.74 ind:fut:3s; +amènerai amener ver 190.32 93.92 2.39 0.34 ind:fut:1s; +amèneraient amener ver 190.32 93.92 0.03 0.41 cnd:pre:3p; +amènerais amener ver 190.32 93.92 0.88 0.14 cnd:pre:1s;cnd:pre:2s; +amènerait amener ver 190.32 93.92 0.36 2.16 cnd:pre:3s; +amèneras amener ver 190.32 93.92 0.28 0.07 ind:fut:2s; +amènerez amener ver 190.32 93.92 0.32 0.07 ind:fut:2p; +amèneriez amener ver 190.32 93.92 0.02 0.00 cnd:pre:2p; +amènerions amener ver 190.32 93.92 0.01 0.00 cnd:pre:1p; +amènerons amener ver 190.32 93.92 0.22 0.07 ind:fut:1p; +amèneront amener ver 190.32 93.92 0.50 0.14 ind:fut:3p; +amènes amener ver 190.32 93.92 5.79 0.81 ind:pre:2s;sub:pre:2s; +amère amer adj f s 11.94 30.07 3.65 12.03 +amèrement amèrement adv 0.63 5.20 0.63 5.20 +amères amer adj f p 11.94 30.07 1.22 3.78 +amé amé nom m s 0.01 0.00 0.01 0.00 +amulette amulette nom f s 3.08 1.08 2.45 0.41 +amulettes amulette nom f p 3.08 1.08 0.63 0.68 +améliora améliorer ver 22.34 8.65 0.03 0.14 ind:pas:3s; +améliorable améliorable adj s 0.00 0.07 0.00 0.07 +amélioraient améliorer ver 22.34 8.65 0.10 0.20 ind:imp:3p; +améliorait améliorer ver 22.34 8.65 0.10 0.54 ind:imp:3s; +améliorant améliorer ver 22.34 8.65 0.14 0.34 par:pre; +améliorateur améliorateur adj m s 0.04 0.00 0.04 0.00 +amélioration amélioration nom f s 2.87 2.43 2.08 2.23 +améliorations amélioration nom f p 2.87 2.43 0.79 0.20 +améliore améliorer ver 22.34 8.65 4.75 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +améliorent améliorer ver 22.34 8.65 0.56 0.34 ind:pre:3p; +améliorer améliorer ver 22.34 8.65 10.66 3.65 inf; +améliorera améliorer ver 22.34 8.65 0.79 0.20 ind:fut:3s; +améliorerait améliorer ver 22.34 8.65 0.09 0.07 cnd:pre:3s; +amélioreront améliorer ver 22.34 8.65 0.05 0.14 ind:fut:3p; +améliores améliorer ver 22.34 8.65 0.67 0.07 ind:pre:2s; +améliorez améliorer ver 22.34 8.65 0.23 0.07 imp:pre:2p;ind:pre:2p; +améliorons améliorer ver 22.34 8.65 0.07 0.00 imp:pre:1p;ind:pre:1p; +améliorèrent améliorer ver 22.34 8.65 0.01 0.00 ind:pas:3p; +amélioré améliorer ver m s 22.34 8.65 2.75 0.88 par:pas; +améliorée améliorer ver f s 22.34 8.65 1.01 0.34 par:pas; +améliorées améliorer ver f p 22.34 8.65 0.23 0.27 par:pas; +améliorés améliorer ver m p 22.34 8.65 0.10 0.20 par:pas; +aménage aménager ver 1.95 12.57 0.02 0.07 ind:pre:3s; +aménagea aménager ver 1.95 12.57 0.00 0.41 ind:pas:3s; +aménageai aménager ver 1.95 12.57 0.00 0.14 ind:pas:1s; +aménageaient aménager ver 1.95 12.57 0.01 0.07 ind:imp:3p; +aménageait aménager ver 1.95 12.57 0.00 0.14 ind:imp:3s; +aménageant aménager ver 1.95 12.57 0.00 0.14 par:pre; +aménagement aménagement nom m s 0.69 2.77 0.41 1.82 +aménagements aménagement nom m p 0.69 2.77 0.29 0.95 +aménagent aménager ver 1.95 12.57 0.00 0.20 ind:pre:3p; +aménager aménager ver 1.95 12.57 1.10 2.64 inf; +aménagerai aménager ver 1.95 12.57 0.01 0.07 ind:fut:1s; +aménagerait aménager ver 1.95 12.57 0.00 0.07 cnd:pre:3s; +aménagez aménager ver 1.95 12.57 0.00 0.07 imp:pre:2p; +aménagèrent aménager ver 1.95 12.57 0.00 0.14 ind:pas:3p; +aménagé aménager ver m s 1.95 12.57 0.48 3.72 par:pas; +aménagée aménager ver f s 1.95 12.57 0.29 3.31 par:pas; +aménagées aménager ver f p 1.95 12.57 0.01 0.68 par:pas; +aménagés aménager ver m p 1.95 12.57 0.03 0.74 par:pas; +aménité aménité nom f s 0.01 1.96 0.00 1.82 +aménités aménité nom f p 0.01 1.96 0.01 0.14 +aménorrhée aménorrhée nom f s 0.28 0.14 0.28 0.14 +amura amurer ver 0.03 0.00 0.03 0.00 ind:pas:3s; +amure amure nom f s 0.01 0.27 0.00 0.14 +amures amure nom f p 0.01 0.27 0.01 0.14 +américain américain adj m s 63.92 74.73 30.93 25.95 +américaine américain adj f s 63.92 74.73 17.49 19.53 +américaines américain adj f p 63.92 74.73 3.48 10.47 +américains américain nom m p 45.64 47.43 24.90 26.28 +américanisais américaniser ver 0.03 0.14 0.00 0.07 ind:imp:1s; +américanisation américanisation nom f s 0.02 0.07 0.02 0.07 +américaniser américaniser ver 0.03 0.14 0.01 0.00 inf; +américanisme américanisme nom m s 0.03 0.14 0.03 0.07 +américanismes américanisme nom m p 0.03 0.14 0.00 0.07 +américanisé américaniser ver m s 0.03 0.14 0.02 0.00 par:pas; +américanisés américaniser ver m p 0.03 0.14 0.00 0.07 par:pas; +américanité américanité nom f s 0.00 0.07 0.00 0.07 +américano_britannique américano_britannique adj s 0.01 0.00 0.01 0.00 +américano_japonais américano_japonais adj f s 0.01 0.00 0.01 0.00 +américano_russe américano_russe adj f s 0.01 0.00 0.01 0.00 +américano_soviétique américano_soviétique adj m s 0.03 0.00 0.03 0.00 +américano_suédois américano_suédois adj f s 0.01 0.00 0.01 0.00 +américano américano nom m s 0.01 0.27 0.01 0.20 +américanophile américanophile adj s 0.00 0.27 0.00 0.20 +américanophiles américanophile adj p 0.00 0.27 0.00 0.07 +américanos américano nom m p 0.01 0.27 0.00 0.07 +américium américium nom m s 0.03 0.00 0.03 0.00 +amérindien amérindien adj m s 0.14 0.07 0.04 0.00 +amérindienne amérindien adj f s 0.14 0.07 0.06 0.00 +amérindiennes amérindien adj f p 0.14 0.07 0.01 0.07 +amérindiens amérindien nom m p 0.12 0.00 0.08 0.00 +amérique amérique nom f s 0.34 1.08 0.34 1.08 +amusa amuser ver 141.41 120.95 0.11 4.26 ind:pas:3s; +amusai amuser ver 141.41 120.95 0.01 0.54 ind:pas:1s; +amusaient amuser ver 141.41 120.95 0.75 4.53 ind:imp:3p; +amusais amuser ver 141.41 120.95 1.78 3.18 ind:imp:1s;ind:imp:2s; +amusait amuser ver 141.41 120.95 4.59 18.24 ind:imp:3s; +amusant amusant adj m s 29.36 18.85 25.24 13.04 +amusante amusant adj f s 29.36 18.85 2.34 3.11 +amusantes amusant adj f p 29.36 18.85 0.96 1.15 +amusants amusant adj m p 29.36 18.85 0.81 1.55 +amuse_bouche amuse_bouche nom m 0.05 0.00 0.03 0.00 +amuse_bouche amuse_bouche nom m p 0.05 0.00 0.02 0.00 +amuse_gueule amuse_gueule nom m 1.23 0.81 0.53 0.81 +amuse_gueule amuse_gueule nom m p 1.23 0.81 0.70 0.00 +amuse amuser ver 141.41 120.95 39.85 24.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +amusement amusement nom m s 4.29 7.30 3.88 6.35 +amusements amusement nom m p 4.29 7.30 0.41 0.95 +amusent amuser ver 141.41 120.95 4.03 4.26 ind:pre:3p; +amuser amuser ver 141.41 120.95 43.77 25.34 inf;;inf;;inf;; +amusera amuser ver 141.41 120.95 1.25 1.08 ind:fut:3s; +amuserai amuser ver 141.41 120.95 0.25 0.07 ind:fut:1s; +amuseraient amuser ver 141.41 120.95 0.12 0.41 cnd:pre:3p; +amuserais amuser ver 141.41 120.95 0.42 0.27 cnd:pre:1s;cnd:pre:2s; +amuserait amuser ver 141.41 120.95 1.04 2.16 cnd:pre:3s; +amuseras amuser ver 141.41 120.95 0.58 0.07 ind:fut:2s; +amuserez amuser ver 141.41 120.95 0.22 0.07 ind:fut:2p; +amuseriez amuser ver 141.41 120.95 0.03 0.00 cnd:pre:2p; +amuserons amuser ver 141.41 120.95 0.16 0.00 ind:fut:1p; +amuseront amuser ver 141.41 120.95 0.15 0.14 ind:fut:3p; +amuses amuser ver 141.41 120.95 7.11 0.54 ind:pre:2s;sub:pre:2s; +amusette amusette nom f s 0.03 1.15 0.03 0.61 +amusettes amusette nom f p 0.03 1.15 0.00 0.54 +amuseur amuseur nom m s 0.24 0.34 0.18 0.20 +amuseurs amuseur nom m p 0.24 0.34 0.06 0.14 +amusez amuser ver 141.41 120.95 14.84 1.15 imp:pre:2p;ind:pre:2p; +amusiez amuser ver 141.41 120.95 0.46 0.14 ind:imp:2p; +amusions amuser ver 141.41 120.95 0.36 0.47 ind:imp:1p; +amusâmes amuser ver 141.41 120.95 0.00 0.20 ind:pas:1p; +amusons amuser ver 141.41 120.95 1.48 0.41 imp:pre:1p;ind:pre:1p; +amusât amuser ver 141.41 120.95 0.01 0.34 sub:imp:3s; +amusèrent amuser ver 141.41 120.95 0.01 0.95 ind:pas:3p; +amusé amuser ver m s 141.41 120.95 6.99 12.16 par:pas; +amusée amuser ver f s 141.41 120.95 3.92 7.43 par:pas; +amusées amuser ver f p 141.41 120.95 0.33 0.74 par:pas; +amusés amuser ver m p 141.41 120.95 4.41 2.91 par:pas; +améthyste améthyste nom f s 0.22 0.81 0.20 0.27 +améthystes améthyste nom f p 0.22 0.81 0.02 0.54 +amygdale amygdale nom f s 1.50 0.95 0.21 0.07 +amygdalectomie amygdalectomie nom f s 0.14 0.00 0.13 0.00 +amygdalectomies amygdalectomie nom f p 0.14 0.00 0.01 0.00 +amygdales amygdale nom f p 1.50 0.95 1.29 0.88 +amygdalien amygdalien adj m s 0.02 0.00 0.02 0.00 +amygdalite amygdalite nom f s 0.23 0.00 0.23 0.00 +amylase amylase nom f s 0.09 0.00 0.09 0.00 +amyle amyle nom m s 0.02 0.27 0.02 0.27 +amylique amylique adj m s 0.02 0.00 0.02 0.00 +amyotrophique amyotrophique adj f s 0.05 0.07 0.05 0.07 +an an nom m s 866.58 685.81 148.41 76.76 +ana ana nom m 4.91 0.14 4.91 0.14 +anabaptiste anabaptiste adj s 0.01 0.41 0.01 0.34 +anabaptistes anabaptiste nom p 0.00 0.34 0.00 0.34 +anabase anabase nom f s 0.00 0.14 0.00 0.14 +anabolisant anabolisant adj m s 0.02 0.00 0.01 0.00 +anabolisant anabolisant nom m s 0.09 0.00 0.01 0.00 +anabolisants anabolisant nom m p 0.09 0.00 0.08 0.00 +anachorète anachorète nom m s 0.11 0.47 0.10 0.41 +anachorètes anachorète nom m p 0.11 0.47 0.01 0.07 +anachronique anachronique adj s 0.04 2.36 0.04 1.69 +anachroniquement anachroniquement adv 0.00 0.07 0.00 0.07 +anachroniques anachronique adj p 0.04 2.36 0.00 0.68 +anachronisme anachronisme nom m s 0.26 0.88 0.24 0.54 +anachronismes anachronisme nom m p 0.26 0.88 0.02 0.34 +anacoluthe anacoluthe nom f s 0.10 0.07 0.10 0.07 +anaconda anaconda nom m s 0.49 0.00 0.43 0.00 +anacondas anaconda nom m p 0.49 0.00 0.06 0.00 +anadyomène anadyomène adj f s 0.00 0.14 0.00 0.14 +anaglyphe anaglyphe nom m s 0.04 0.00 0.04 0.00 +anagramme anagramme nom f s 0.60 0.20 0.47 0.07 +anagrammes anagramme nom f p 0.60 0.20 0.13 0.14 +anal anal adj m s 2.18 0.74 1.43 0.54 +anale anal adj f s 2.18 0.74 0.35 0.07 +analeptiques analeptique nom m p 0.01 0.00 0.01 0.00 +anales anal adj f p 2.18 0.74 0.23 0.14 +analgésie analgésie nom f s 0.01 0.00 0.01 0.00 +analgésique analgésique nom m s 0.64 0.07 0.27 0.00 +analgésiques analgésique nom m p 0.64 0.07 0.37 0.07 +analogie analogie nom f s 0.98 2.03 0.84 1.49 +analogies analogie nom f p 0.98 2.03 0.14 0.54 +analogique analogique adj s 0.35 0.14 0.28 0.07 +analogiques analogique adj p 0.35 0.14 0.07 0.07 +analogue analogue adj s 0.53 6.82 0.38 4.66 +analogues analogue adj p 0.53 6.82 0.16 2.16 +analphabète analphabète adj s 1.18 1.22 0.78 0.88 +analphabètes analphabète nom p 1.09 1.15 0.73 0.68 +analphabétisme analphabétisme nom m s 0.13 0.20 0.13 0.20 +analysa analyser ver 15.40 7.43 0.00 0.41 ind:pas:3s; +analysaient analyser ver 15.40 7.43 0.02 0.14 ind:imp:3p; +analysais analyser ver 15.40 7.43 0.04 0.14 ind:imp:1s; +analysait analyser ver 15.40 7.43 0.18 0.81 ind:imp:3s; +analysant analyser ver 15.40 7.43 0.16 0.14 par:pre; +analysants analysant nom m p 0.02 0.20 0.00 0.14 +analyse analyse nom f s 23.26 12.43 14.87 8.31 +analysent analyser ver 15.40 7.43 0.11 0.00 ind:pre:3p; +analyser analyser ver 15.40 7.43 6.90 3.38 inf; +analysera analyser ver 15.40 7.43 0.15 0.00 ind:fut:3s; +analyserai analyser ver 15.40 7.43 0.04 0.14 ind:fut:1s; +analyserait analyser ver 15.40 7.43 0.01 0.00 cnd:pre:3s; +analyserons analyser ver 15.40 7.43 0.13 0.00 ind:fut:1p; +analyseront analyser ver 15.40 7.43 0.03 0.07 ind:fut:3p; +analyses analyse nom f p 23.26 12.43 8.39 4.12 +analyseur analyseur nom m s 0.45 0.00 0.29 0.00 +analyseurs analyseur nom m p 0.45 0.00 0.16 0.00 +analysez analyser ver 15.40 7.43 0.42 0.00 imp:pre:2p;ind:pre:2p; +analysions analyser ver 15.40 7.43 0.01 0.07 ind:imp:1p; +analysons analyser ver 15.40 7.43 0.57 0.14 imp:pre:1p;ind:pre:1p; +analyste analyste nom s 2.44 1.08 1.82 0.88 +analystes analyste nom p 2.44 1.08 0.62 0.20 +analysèrent analyser ver 15.40 7.43 0.01 0.07 ind:pas:3p; +analysé analyser ver m s 15.40 7.43 3.36 0.61 par:pas; +analysée analyser ver f s 15.40 7.43 0.47 0.07 par:pas; +analysées analyser ver f p 15.40 7.43 0.29 0.07 par:pas; +analysés analyser ver m p 15.40 7.43 0.07 0.00 par:pas; +analytique analytique adj s 0.38 0.34 0.38 0.34 +analytiquement analytiquement adv 0.01 0.07 0.01 0.07 +anamnèse anamnèse nom f s 0.00 0.07 0.00 0.07 +anamorphose anamorphose nom f s 0.00 0.27 0.00 0.27 +ananas ananas nom m 2.02 3.51 2.02 3.51 +anaphase anaphase nom f s 0.03 0.00 0.03 0.00 +anaphoriquement anaphoriquement adv 0.00 0.14 0.00 0.14 +anaphylactique anaphylactique adj s 0.52 0.00 0.52 0.00 +anaphylaxie anaphylaxie nom f s 0.06 0.00 0.06 0.00 +anar anar nom s 0.01 0.74 0.01 0.34 +anarchie anarchie nom f s 4.18 4.80 4.18 4.80 +anarchique anarchique adj s 0.18 1.15 0.18 1.08 +anarchiquement anarchiquement adv 0.01 0.14 0.01 0.14 +anarchiques anarchique adj p 0.18 1.15 0.00 0.07 +anarchisant anarchisant adj m s 0.01 0.00 0.01 0.00 +anarchisme anarchisme nom m s 0.71 0.47 0.71 0.47 +anarchiste anarchiste adj s 1.69 2.84 1.19 2.16 +anarchistes anarchiste nom p 2.02 4.46 1.03 2.30 +anarcho_syndicalisme anarcho_syndicalisme nom m s 0.00 0.07 0.00 0.07 +anarcho_syndicaliste anarcho_syndicaliste adj s 0.00 0.14 0.00 0.07 +anarcho_syndicaliste anarcho_syndicaliste adj m p 0.00 0.14 0.00 0.07 +anars anar nom p 0.01 0.74 0.00 0.41 +anas anas nom m 0.02 0.07 0.02 0.07 +anastomose anastomose nom f s 0.08 0.07 0.08 0.00 +anastomoses anastomose nom f p 0.08 0.07 0.00 0.07 +anathème anathème nom m s 1.12 1.08 1.08 0.88 +anathèmes anathème nom m p 1.12 1.08 0.03 0.20 +anathématisait anathématiser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +anathématisé anathématiser ver m s 0.00 0.14 0.00 0.07 par:pas; +anatidés anatidé nom m p 0.00 0.07 0.00 0.07 +anatifes anatife nom m p 0.01 0.07 0.01 0.07 +anatomie anatomie nom f s 3.63 4.80 3.37 4.66 +anatomies anatomie nom f p 3.63 4.80 0.26 0.14 +anatomique anatomique adj s 0.26 1.69 0.10 1.15 +anatomiquement anatomiquement adv 0.09 0.20 0.09 0.20 +anatomiques anatomique adj p 0.26 1.69 0.16 0.54 +anatomiser anatomiser ver 0.00 0.07 0.00 0.07 inf; +anatomiste anatomiste nom s 0.00 0.34 0.00 0.27 +anatomistes anatomiste nom p 0.00 0.34 0.00 0.07 +anatomophysiologique anatomophysiologique adj m s 0.00 0.07 0.00 0.07 +anaérobie anaérobie adj m s 0.05 0.00 0.05 0.00 +anaux anal adj m p 2.18 0.74 0.16 0.00 +ancestral ancestral adj m s 2.22 5.41 1.04 1.89 +ancestrale ancestral adj f s 2.22 5.41 0.97 2.03 +ancestralement ancestralement adv 0.01 0.14 0.01 0.14 +ancestrales ancestral adj f p 2.22 5.41 0.12 1.35 +ancestralité ancestralité nom f s 0.00 0.07 0.00 0.07 +ancestraux ancestral adj m p 2.22 5.41 0.09 0.14 +anch_io_son_pittore anch_io_son_pittore adv 0.00 0.07 0.00 0.07 +anche anche nom f s 0.17 0.27 0.17 0.27 +anchilops anchilops nom m 0.00 0.07 0.00 0.07 +anchoïade anchoïade nom f s 0.00 0.07 0.00 0.07 +anchois anchois nom m 1.30 2.57 1.30 2.57 +ancien ancien adj m s 73.16 154.86 32.41 59.26 +ancienne ancien adj f s 73.16 154.86 19.82 37.09 +anciennement anciennement adv 0.45 1.01 0.45 1.01 +anciennes ancien adj f p 73.16 154.86 6.22 18.65 +ancienneté ancienneté nom f s 0.90 1.55 0.90 1.55 +anciens ancien adj m p 73.16 154.86 14.72 39.86 +ancillaire ancillaire adj f s 0.01 0.88 0.00 0.34 +ancillaires ancillaire adj p 0.01 0.88 0.01 0.54 +ancolie ancolie nom f s 0.00 0.07 0.00 0.07 +ancra ancrer ver 1.79 5.54 0.10 0.20 ind:pas:3s; +ancrage ancrage nom m s 0.19 0.41 0.19 0.41 +ancraient ancrer ver 1.79 5.54 0.00 0.07 ind:imp:3p; +ancrais ancrer ver 1.79 5.54 0.00 0.07 ind:imp:1s; +ancrait ancrer ver 1.79 5.54 0.01 0.14 ind:imp:3s; +ancrant ancrer ver 1.79 5.54 0.00 0.07 par:pre; +ancre ancre nom f s 4.75 5.81 4.63 4.53 +ancrer ancrer ver 1.79 5.54 0.26 0.61 inf; +ancrera ancrer ver 1.79 5.54 0.02 0.00 ind:fut:3s; +ancres ancre nom f p 4.75 5.81 0.11 1.28 +ancrez ancrer ver 1.79 5.54 0.02 0.00 imp:pre:2p; +ancré ancrer ver m s 1.79 5.54 0.64 2.16 par:pas; +ancrée ancrer ver f s 1.79 5.54 0.42 1.08 par:pas; +ancrées ancrer ver f p 1.79 5.54 0.05 0.34 par:pas; +ancrés ancré adj m p 0.40 1.08 0.14 0.20 +ancêtre ancêtre nom s 12.75 22.23 1.61 6.28 +ancêtres ancêtre nom p 12.75 22.23 11.14 15.95 +anda anda nom m s 1.13 0.14 1.13 0.14 +andain andain nom m s 0.00 0.20 0.00 0.07 +andains andain nom m p 0.00 0.20 0.00 0.14 +andalou andalou adj m s 0.21 2.23 0.20 1.08 +andalous andalou nom m p 0.14 1.15 0.14 0.27 +andalouse andalouse nom f s 0.02 0.47 0.02 0.47 +andalouses andalou adj f p 0.21 2.23 0.01 0.20 +andante andante nom m s 0.14 0.47 0.14 0.47 +andine andin adj f s 0.01 0.14 0.01 0.07 +andines andin adj f p 0.01 0.14 0.00 0.07 +andorranes andorran adj f p 0.00 0.07 0.00 0.07 +andouille andouille nom f s 6.94 6.28 6.29 4.86 +andouiller andouiller nom m s 0.02 1.28 0.00 0.20 +andouillers andouiller nom m p 0.02 1.28 0.02 1.08 +andouilles andouille nom f p 6.94 6.28 0.65 1.42 +andouillette andouillette nom f s 0.07 0.74 0.04 0.54 +andouillettes andouillette nom f p 0.07 0.74 0.03 0.20 +andrinople andrinople nom f s 0.00 0.20 0.00 0.20 +androïde androïde nom m s 0.82 0.07 0.44 0.07 +androïdes androïde nom m p 0.82 0.07 0.38 0.00 +androgènes androgène nom m p 0.01 0.00 0.01 0.00 +androgyne androgyne nom s 0.17 0.41 0.16 0.41 +androgynes androgyne adj p 0.06 0.54 0.01 0.27 +androgynie androgynie nom f s 0.00 0.07 0.00 0.07 +androgynique androgynique adj s 0.00 0.07 0.00 0.07 +andropause andropause nom f s 0.23 0.14 0.23 0.14 +anecdote anecdote nom f s 2.12 12.91 1.13 5.34 +anecdotes anecdote nom f p 2.12 12.91 0.99 7.57 +anecdotier anecdotier nom m s 0.01 0.00 0.01 0.00 +anecdotique anecdotique adj s 0.18 0.81 0.14 0.61 +anecdotiquement anecdotiquement adv 0.00 0.14 0.00 0.14 +anecdotiques anecdotique adj p 0.18 0.81 0.04 0.20 +anesthésia anesthésier ver 1.18 1.55 0.00 0.07 ind:pas:3s; +anesthésiaient anesthésier ver 1.18 1.55 0.00 0.14 ind:imp:3p; +anesthésiait anesthésier ver 1.18 1.55 0.00 0.07 ind:imp:3s; +anesthésiant anesthésiant nom m s 0.44 0.14 0.44 0.07 +anesthésiante anesthésiant adj f s 0.32 0.20 0.00 0.07 +anesthésiantes anesthésiant adj f p 0.32 0.20 0.02 0.14 +anesthésiants anesthésiant adj m p 0.32 0.20 0.02 0.00 +anesthésie anesthésie nom f s 3.74 2.70 3.71 2.64 +anesthésient anesthésier ver 1.18 1.55 0.01 0.07 ind:pre:3p; +anesthésier anesthésier ver 1.18 1.55 0.37 0.07 inf; +anesthésierai anesthésier ver 1.18 1.55 0.01 0.00 ind:fut:1s; +anesthésies anesthésie nom f p 3.74 2.70 0.02 0.07 +anesthésiez anesthésier ver 1.18 1.55 0.16 0.00 imp:pre:2p;ind:pre:2p; +anesthésions anesthésier ver 1.18 1.55 0.02 0.00 ind:pre:1p; +anesthésique anesthésique nom m s 0.47 0.34 0.44 0.34 +anesthésiques anesthésique nom m p 0.47 0.34 0.03 0.00 +anesthésiste anesthésiste nom s 1.07 0.61 0.82 0.61 +anesthésistes anesthésiste nom p 1.07 0.61 0.25 0.00 +anesthésié anesthésier ver m s 1.18 1.55 0.14 0.20 par:pas; +anesthésiée anesthésier ver f s 1.18 1.55 0.08 0.54 par:pas; +anesthésiées anesthésier ver f p 1.18 1.55 0.00 0.07 par:pas; +anesthésiés anesthésier ver m p 1.18 1.55 0.01 0.20 par:pas; +aneth aneth nom m s 0.07 0.61 0.07 0.61 +anfractuosité anfractuosité nom f s 0.14 1.28 0.14 0.54 +anfractuosités anfractuosité nom f p 0.14 1.28 0.00 0.74 +ange ange nom m s 69.27 42.50 47.90 21.62 +angelot angelot nom m s 0.69 1.49 0.37 0.74 +angelots angelot nom m p 0.69 1.49 0.32 0.74 +anges ange nom m p 69.27 42.50 21.38 20.88 +angevin angevin adj m s 0.10 0.07 0.10 0.00 +angevine angevin nom f s 0.00 0.14 0.00 0.07 +angevins angevin nom m p 0.00 0.14 0.00 0.07 +angine angine nom f s 1.39 2.57 1.20 2.30 +angines angine nom f p 1.39 2.57 0.19 0.27 +angiocholite angiocholite nom f s 0.01 0.00 0.01 0.00 +angiographie angiographie nom f s 0.32 0.00 0.32 0.00 +angiome angiome nom m s 0.13 0.00 0.13 0.00 +angioplastie angioplastie nom f s 0.19 0.00 0.19 0.00 +anglais anglais nom m 51.01 79.53 48.81 69.46 +anglaise anglais adj f s 32.22 61.69 8.21 18.58 +anglaises anglais adj f p 32.22 61.69 1.00 6.42 +angle angle nom m s 13.29 57.64 11.56 46.89 +angler angler ver 0.22 0.20 0.01 0.07 inf; +angles angle nom m p 13.29 57.64 1.73 10.74 +angleterre angleterre nom f s 0.20 0.47 0.20 0.47 +anglican anglican adj m s 0.16 0.61 0.06 0.34 +anglicane anglican adj f s 0.16 0.61 0.10 0.14 +anglicans anglican nom m p 0.04 0.07 0.01 0.00 +angliche angliche nom s 0.44 0.41 0.32 0.20 +angliches angliche nom p 0.44 0.41 0.12 0.20 +anglicisation anglicisation nom f s 0.00 0.07 0.00 0.07 +angliciser angliciser ver 0.11 0.00 0.01 0.00 inf; +anglicismes anglicisme nom m p 0.00 0.07 0.00 0.07 +anglicisé angliciser ver m s 0.11 0.00 0.10 0.00 par:pas; +anglo_albanais anglo_albanais adj m s 0.00 0.07 0.00 0.07 +anglo_allemand anglo_allemand adj m s 0.01 0.00 0.01 0.00 +anglo_américain anglo_américain adj m s 0.05 0.20 0.01 0.07 +anglo_américain anglo_américain adj f s 0.05 0.20 0.02 0.07 +anglo_américain anglo_américain adj f p 0.05 0.20 0.00 0.07 +anglo_américain anglo_américain adj m p 0.05 0.20 0.02 0.00 +anglo_arabe anglo_arabe adj s 0.00 0.27 0.00 0.14 +anglo_arabe anglo_arabe adj m p 0.00 0.27 0.00 0.14 +anglo_chinois anglo_chinois adj m s 0.01 0.00 0.01 0.00 +anglo_français anglo_français adj m s 0.02 0.14 0.01 0.07 +anglo_français anglo_français adj f s 0.02 0.14 0.01 0.07 +anglo_hellénique anglo_hellénique adj f s 0.00 0.07 0.00 0.07 +anglo_irlandais anglo_irlandais adj m s 0.00 0.27 0.00 0.27 +anglo_normand anglo_normand adj m s 0.04 0.34 0.00 0.14 +anglo_normand anglo_normand adj f s 0.04 0.34 0.00 0.20 +anglo_normand anglo_normand adj f p 0.04 0.34 0.04 0.00 +anglo_russe anglo_russe adj m s 0.02 0.00 0.01 0.00 +anglo_russe anglo_russe adj f p 0.02 0.00 0.01 0.00 +anglo_saxon anglo_saxon adj m s 0.48 4.12 0.23 1.08 +anglo_saxon anglo_saxon adj f s 0.48 4.12 0.04 0.74 +anglo_saxon anglo_saxon adj f p 0.48 4.12 0.18 0.88 +anglo_saxon anglo_saxon adj m p 0.48 4.12 0.03 1.42 +anglo_soviétique anglo_soviétique adj s 0.02 0.07 0.02 0.07 +anglo_égyptien anglo_égyptien adj m s 0.01 0.41 0.00 0.20 +anglo_égyptien anglo_égyptien adj f s 0.01 0.41 0.01 0.20 +anglo_éthiopien anglo_éthiopien adj m s 0.00 0.07 0.00 0.07 +anglomane anglomane adj s 0.00 0.14 0.00 0.07 +anglomanes anglomane adj p 0.00 0.14 0.00 0.07 +anglomanie anglomanie nom f s 0.00 0.07 0.00 0.07 +anglophile anglophile adj f s 0.02 0.20 0.02 0.20 +anglophobe anglophobe adj s 0.01 0.00 0.01 0.00 +anglophobes anglophobe nom p 0.00 0.07 0.00 0.07 +anglophobie anglophobie nom f s 0.00 0.07 0.00 0.07 +anglophone anglophone adj s 0.10 0.14 0.09 0.14 +anglophones anglophone nom p 0.01 0.07 0.01 0.07 +angoissa angoisser ver 5.84 5.88 0.00 0.14 ind:pas:3s; +angoissaient angoisser ver 5.84 5.88 0.01 0.14 ind:imp:3p; +angoissais angoisser ver 5.84 5.88 0.06 0.00 ind:imp:1s; +angoissait angoisser ver 5.84 5.88 0.07 1.35 ind:imp:3s; +angoissant angoissant adj m s 1.87 4.19 0.80 1.96 +angoissante angoissant adj f s 1.87 4.19 1.05 1.42 +angoissantes angoissant adj f p 1.87 4.19 0.01 0.27 +angoissants angoissant adj m p 1.87 4.19 0.01 0.54 +angoisse angoisse nom f s 17.82 68.99 14.98 60.68 +angoissent angoisser ver 5.84 5.88 0.25 0.00 ind:pre:3p; +angoisser angoisser ver 5.84 5.88 0.98 0.27 inf; +angoisserait angoisser ver 5.84 5.88 0.01 0.00 cnd:pre:3s; +angoisses angoisse nom f p 17.82 68.99 2.84 8.31 +angoissez angoisser ver 5.84 5.88 0.02 0.00 ind:pre:2p; +angoissiez angoisser ver 5.84 5.88 0.01 0.00 ind:imp:2p; +angoissé angoisser ver m s 5.84 5.88 0.55 0.95 par:pas; +angoissée angoissé adj f s 1.17 5.27 0.88 2.09 +angoissées angoissé nom f p 0.16 1.22 0.01 0.07 +angoissés angoissé adj m p 1.17 5.27 0.01 0.27 +angolais angolais adj m p 0.20 0.07 0.20 0.07 +angon angon nom m s 0.00 0.41 0.00 0.41 +angor angor nom m s 0.01 0.00 0.01 0.00 +angora angora nom m s 0.29 0.47 0.29 0.34 +angoras angora nom m p 0.29 0.47 0.00 0.14 +angström angström nom m s 0.01 0.20 0.01 0.20 +anguille anguille nom f s 4.32 3.31 1.74 2.03 +anguilles anguille nom f p 4.32 3.31 2.58 1.28 +anguillules anguillule nom f p 0.00 0.07 0.00 0.07 +anguis anguis nom m 0.00 0.07 0.00 0.07 +angéite angéite nom f s 0.01 0.00 0.01 0.00 +angulaire angulaire adj s 0.36 0.47 0.32 0.34 +angulaires angulaire adj p 0.36 0.47 0.05 0.14 +anguleuse anguleux adj f s 0.63 3.24 0.45 0.81 +anguleuses anguleux adj f p 0.63 3.24 0.01 0.61 +anguleux anguleux adj m 0.63 3.24 0.17 1.82 +angélique angélique adj s 0.59 4.86 0.41 3.85 +angéliquement angéliquement adv 0.00 0.14 0.00 0.14 +angéliques angélique adj p 0.59 4.86 0.17 1.01 +angélisme angélisme nom m s 0.00 0.47 0.00 0.47 +angulosité angulosité nom f s 0.00 0.07 0.00 0.07 +angélus angélus nom m 0.80 1.28 0.80 1.28 +angustura angustura nom f s 0.00 0.27 0.00 0.27 +anhèle anhéler ver 0.00 0.07 0.00 0.07 ind:pre:3s; +anhélations anhélation nom f p 0.00 0.07 0.00 0.07 +anhydre anhydre adj f s 0.04 0.00 0.04 0.00 +anhydride anhydride nom m s 0.04 0.07 0.04 0.07 +anicroche anicroche nom f s 0.12 0.74 0.06 0.54 +anicroches anicroche nom f p 0.12 0.74 0.06 0.20 +aniline aniline nom f s 0.01 0.27 0.01 0.27 +anima animer ver 6.28 33.78 0.29 1.89 ind:pas:3s; +animai animer ver 6.28 33.78 0.34 0.07 ind:pas:1s; +animaient animer ver 6.28 33.78 0.12 1.42 ind:imp:3p; +animais animer ver 6.28 33.78 0.03 0.07 ind:imp:1s; +animait animer ver 6.28 33.78 0.46 6.28 ind:imp:3s; +animal_roi animal_roi nom m s 0.00 0.07 0.00 0.07 +animal animal nom m s 80.50 82.64 36.89 47.23 +animalcule animalcule nom m s 0.00 0.14 0.00 0.14 +animale animal adj f s 6.33 14.19 1.96 6.49 +animalement animalement adv 0.00 0.27 0.00 0.27 +animalerie animalerie nom f s 0.42 0.07 0.42 0.07 +animales animal adj f p 6.33 14.19 1.03 1.69 +animalier animalier adj m s 0.48 0.61 0.32 0.20 +animaliers animalier adj m p 0.48 0.61 0.12 0.00 +animalisait animaliser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +animalise animaliser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +animalière animalier adj f s 0.48 0.61 0.01 0.34 +animalières animalier adj f p 0.48 0.61 0.03 0.07 +animalité animalité nom f s 0.01 1.42 0.01 1.42 +animant animer ver 6.28 33.78 0.01 0.81 par:pre; +animas animer ver 6.28 33.78 0.03 0.00 ind:pas:2s; +animateur animateur nom m s 2.72 2.23 1.90 1.42 +animateurs animateur nom m p 2.72 2.23 0.12 0.61 +animation animation nom f s 1.53 8.31 1.45 8.18 +animations animation nom f p 1.53 8.31 0.08 0.14 +animatrice animateur nom f s 2.72 2.23 0.69 0.14 +animatrices animateur nom f p 2.72 2.23 0.00 0.07 +animaux_espions animaux_espions nom m p 0.01 0.00 0.01 0.00 +animaux animal nom m p 80.50 82.64 43.62 35.41 +anime animer ver 6.28 33.78 1.82 5.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +animent animer ver 6.28 33.78 0.12 1.22 ind:pre:3p; +animer animer ver 6.28 33.78 0.94 4.12 inf; +animeraient animer ver 6.28 33.78 0.00 0.14 cnd:pre:3p; +animerait animer ver 6.28 33.78 0.00 0.27 cnd:pre:3s; +animes animer ver 6.28 33.78 0.07 0.00 ind:pre:2s; +animique animique adj s 0.00 0.07 0.00 0.07 +animisme animisme nom m s 0.00 0.07 0.00 0.07 +animiste animiste adj f s 0.00 0.07 0.00 0.07 +animosité animosité nom f s 1.09 2.64 1.07 2.57 +animosités animosité nom f p 1.09 2.64 0.01 0.07 +animât animer ver 6.28 33.78 0.00 0.20 sub:imp:3s; +animèrent animer ver 6.28 33.78 0.00 0.81 ind:pas:3p; +animé animé adj m s 6.21 8.92 2.79 3.18 +animée animer ver f s 6.28 33.78 0.37 3.78 par:pas; +animées animé adj f p 6.21 8.92 0.42 1.22 +animés animé adj m p 6.21 8.92 2.66 1.42 +animus animus nom m 0.02 0.00 0.02 0.00 +anionique anionique adj m s 0.01 0.00 0.01 0.00 +anis anis nom m 1.05 2.50 1.05 2.50 +anise aniser ver 0.11 0.20 0.10 0.00 imp:pre:2s; +anisette anisette nom f s 0.15 1.15 0.15 1.01 +anisettes anisette nom f p 0.15 1.15 0.00 0.14 +anisé aniser ver m s 0.11 0.20 0.00 0.07 par:pas; +anisée aniser ver f s 0.11 0.20 0.01 0.07 par:pas; +anisées aniser ver f p 0.11 0.20 0.00 0.07 par:pas; +ankh ankh nom m s 0.07 0.07 0.07 0.07 +ankylosait ankyloser ver 0.00 0.88 0.00 0.14 ind:imp:3s; +ankylose ankylose nom f s 0.12 0.95 0.12 0.88 +ankyloser ankyloser ver 0.00 0.88 0.00 0.14 inf; +ankyloses ankylose nom f p 0.12 0.95 0.00 0.07 +ankylosé ankylosé adj m s 0.13 1.28 0.11 0.47 +ankylosée ankylosé adj f s 0.13 1.28 0.01 0.41 +ankylosées ankylosé adj f p 0.13 1.28 0.00 0.20 +ankylosés ankylosé adj m p 0.13 1.28 0.00 0.20 +annales annales nom f 0.78 1.76 0.78 1.76 +annamite annamite nom s 0.00 0.34 0.00 0.14 +annamites annamite nom p 0.00 0.34 0.00 0.20 +anneau anneau nom m s 21.61 17.50 17.59 9.53 +anneaux anneau nom m p 21.61 17.50 4.01 7.97 +annelets annelet nom m p 0.00 0.07 0.00 0.07 +annelé annelé adj m s 0.00 1.22 0.00 0.27 +annelée annelé adj f s 0.00 1.22 0.00 0.41 +annelées annelé adj f p 0.00 1.22 0.00 0.34 +annelures annelure nom f p 0.00 0.07 0.00 0.07 +annelés annelé adj m p 0.00 1.22 0.00 0.20 +annexa annexer ver 0.90 3.45 0.00 0.07 ind:pas:3s; +annexaient annexer ver 0.90 3.45 0.00 0.34 ind:imp:3p; +annexait annexer ver 0.90 3.45 0.00 0.14 ind:imp:3s; +annexant annexer ver 0.90 3.45 0.02 0.07 par:pre; +annexe annexe nom f s 1.36 2.97 1.27 2.03 +annexer annexer ver 0.90 3.45 0.51 0.81 inf; +annexes annexe adj p 1.17 1.22 0.46 0.61 +annexion annexion nom f s 0.37 0.74 0.37 0.61 +annexions annexion nom f p 0.37 0.74 0.00 0.14 +annexèrent annexer ver 0.90 3.45 0.00 0.07 ind:pas:3p; +annexé annexer ver m s 0.90 3.45 0.14 0.88 par:pas; +annexée annexer ver f s 0.90 3.45 0.02 0.41 par:pas; +annexées annexer ver f p 0.90 3.45 0.00 0.14 par:pas; +annexés annexer ver m p 0.90 3.45 0.04 0.14 par:pas; +annihila annihiler ver 0.84 0.74 0.00 0.07 ind:pas:3s; +annihilait annihiler ver 0.84 0.74 0.00 0.14 ind:imp:3s; +annihilant annihiler ver 0.84 0.74 0.01 0.00 par:pre; +annihilante annihilant adj f s 0.00 0.14 0.00 0.07 +annihilateur annihilateur adj m s 0.12 0.00 0.12 0.00 +annihilation annihilation nom f s 0.46 0.07 0.46 0.07 +annihile annihiler ver 0.84 0.74 0.06 0.00 imp:pre:2s;ind:pre:3s; +annihilent annihiler ver 0.84 0.74 0.00 0.14 ind:pre:3p; +annihiler annihiler ver 0.84 0.74 0.36 0.27 inf; +annihilez annihiler ver 0.84 0.74 0.01 0.00 ind:pre:2p; +annihilons annihiler ver 0.84 0.74 0.01 0.00 imp:pre:1p; +annihilé annihiler ver m s 0.84 0.74 0.32 0.07 par:pas; +annihilée annihiler ver f s 0.84 0.74 0.08 0.07 par:pas; +anniv anniv nom m s 0.26 0.00 0.26 0.00 +anniversaire anniversaire nom m s 82.79 12.97 80.24 12.09 +anniversaires anniversaire nom m p 82.79 12.97 2.55 0.88 +annonce annonce nom f s 23.76 16.62 18.93 13.18 +annoncent annoncer ver 55.67 133.92 1.79 2.77 ind:pre:3p; +annoncer annoncer ver 55.67 133.92 21.14 23.38 inf; +annoncera annoncer ver 55.67 133.92 0.74 0.27 ind:fut:3s; +annoncerai annoncer ver 55.67 133.92 0.88 0.07 ind:fut:1s; +annonceraient annoncer ver 55.67 133.92 0.00 0.07 cnd:pre:3p; +annoncerais annoncer ver 55.67 133.92 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +annoncerait annoncer ver 55.67 133.92 0.04 0.54 cnd:pre:3s; +annonceras annoncer ver 55.67 133.92 0.04 0.07 ind:fut:2s; +annoncerez annoncer ver 55.67 133.92 0.23 0.07 ind:fut:2p; +annoncerons annoncer ver 55.67 133.92 0.13 0.07 ind:fut:1p; +annonceront annoncer ver 55.67 133.92 0.10 0.07 ind:fut:3p; +annonces annonce nom f p 23.76 16.62 4.83 3.45 +annonceur annonceur nom m s 0.58 0.54 0.09 0.20 +annonceurs annonceur nom m p 0.58 0.54 0.50 0.07 +annonceuse annonceur nom f s 0.58 0.54 0.00 0.27 +annoncez annoncer ver 55.67 133.92 2.00 0.47 imp:pre:2p;ind:pre:2p; +annonciateur annonciateur adj m s 0.28 2.30 0.25 0.88 +annonciateurs annonciateur adj m p 0.28 2.30 0.03 0.88 +annonciation annonciation nom f s 0.01 0.61 0.00 0.54 +annonciations annonciation nom f p 0.01 0.61 0.01 0.07 +annonciatrice annonciateur adj f s 0.28 2.30 0.00 0.34 +annonciatrices annonciateur adj f p 0.28 2.30 0.00 0.20 +annonciez annoncer ver 55.67 133.92 0.06 0.07 ind:imp:2p; +annoncions annoncer ver 55.67 133.92 0.13 0.07 ind:imp:1p; +annoncèrent annoncer ver 55.67 133.92 0.03 1.15 ind:pas:3p; +annoncé annoncer ver m s 55.67 133.92 9.15 15.68 par:pas; +annoncée annoncer ver f s 55.67 133.92 0.85 2.91 par:pas; +annoncées annoncer ver f p 55.67 133.92 0.18 0.88 par:pas; +annoncés annoncer ver m p 55.67 133.92 0.28 0.41 par:pas; +annonça annoncer ver 55.67 133.92 0.56 23.38 ind:pas:3s; +annonçai annoncer ver 55.67 133.92 0.02 1.76 ind:pas:1s; +annonçaient annoncer ver 55.67 133.92 0.28 5.14 ind:imp:3p; +annonçais annoncer ver 55.67 133.92 0.13 0.88 ind:imp:1s;ind:imp:2s; +annonçait annoncer ver 55.67 133.92 1.03 21.96 ind:imp:3s; +annonçant annoncer ver 55.67 133.92 1.22 9.05 par:pre; +annonçons annoncer ver 55.67 133.92 0.26 0.00 imp:pre:1p;ind:pre:1p; +annonçât annoncer ver 55.67 133.92 0.00 0.74 sub:imp:3s; +annotais annoter ver 0.12 0.81 0.00 0.14 ind:imp:1s; +annotait annoter ver 0.12 0.81 0.00 0.14 ind:imp:3s; +annotant annoter ver 0.12 0.81 0.00 0.07 par:pre; +annotation annotation nom f s 0.25 0.88 0.19 0.14 +annotations annotation nom f p 0.25 0.88 0.05 0.74 +annote annoter ver 0.12 0.81 0.02 0.07 ind:pre:1s;ind:pre:3s; +annoter annoter ver 0.12 0.81 0.03 0.00 inf; +annoté annoter ver m s 0.12 0.81 0.02 0.20 par:pas; +annotée annoter ver f s 0.12 0.81 0.01 0.14 par:pas; +annotés annoter ver m p 0.12 0.81 0.04 0.07 par:pas; +annuaire annuaire nom m s 4.56 3.78 4.43 3.04 +annuaires annuaire nom m p 4.56 3.78 0.14 0.74 +année_lumière année_lumière nom f s 1.16 1.01 0.03 0.07 +année année nom f s 316.25 375.54 129.64 128.99 +annuel annuel adj m s 4.47 4.12 3.28 1.35 +annuelle annuelle adj f s 1.30 0.00 1.30 0.00 +annuellement annuellement adv 0.15 0.14 0.15 0.14 +annuelles annuel adj f p 4.47 4.12 0.22 0.47 +annuels annuel adj m p 4.47 4.12 0.41 0.47 +année_homme année_homme nom f p 0.01 0.00 0.01 0.00 +année_lumière année_lumière nom f p 1.16 1.01 1.13 0.95 +années année nom f p 316.25 375.54 186.61 246.55 +annula annuler ver 42.11 5.47 0.00 0.20 ind:pas:3s; +annulai annuler ver 42.11 5.47 0.00 0.07 ind:pas:1s; +annulaient annuler ver 42.11 5.47 0.12 0.27 ind:imp:3p; +annulaire annulaire nom m s 0.55 2.64 0.55 2.64 +annulais annuler ver 42.11 5.47 0.36 0.07 ind:imp:1s;ind:imp:2s; +annulait annuler ver 42.11 5.47 0.09 0.68 ind:imp:3s; +annulant annuler ver 42.11 5.47 0.30 0.34 par:pre; +annulation annulation nom f s 2.46 0.88 2.28 0.74 +annulations annulation nom f p 2.46 0.88 0.18 0.14 +annule annuler ver 42.11 5.47 7.34 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +annulent annuler ver 42.11 5.47 0.52 0.27 ind:pre:3p; +annuler annuler ver 42.11 5.47 14.08 1.15 inf; +annulera annuler ver 42.11 5.47 0.26 0.00 ind:fut:3s; +annulerai annuler ver 42.11 5.47 0.17 0.00 ind:fut:1s; +annuleraient annuler ver 42.11 5.47 0.02 0.07 cnd:pre:3p; +annulerais annuler ver 42.11 5.47 0.08 0.00 cnd:pre:1s; +annulerait annuler ver 42.11 5.47 0.17 0.20 cnd:pre:3s; +annulerez annuler ver 42.11 5.47 0.11 0.00 ind:fut:2p; +annulerons annuler ver 42.11 5.47 0.04 0.00 ind:fut:1p; +annuleront annuler ver 42.11 5.47 0.08 0.00 ind:fut:3p; +annules annuler ver 42.11 5.47 0.39 0.00 ind:pre:2s; +annulez annuler ver 42.11 5.47 3.02 0.14 imp:pre:2p;ind:pre:2p; +annuliez annuler ver 42.11 5.47 0.07 0.00 ind:imp:2p; +annulons annuler ver 42.11 5.47 0.12 0.00 imp:pre:1p;ind:pre:1p; +annulèrent annuler ver 42.11 5.47 0.01 0.14 ind:pas:3p; +annulé annuler ver m s 42.11 5.47 10.94 0.41 par:pas; +annulée annuler ver f s 42.11 5.47 3.08 0.27 par:pas; +annulées annuler ver f p 42.11 5.47 0.27 0.14 par:pas; +annulés annuler ver m p 42.11 5.47 0.46 0.20 par:pas; +anobli anoblir ver m s 0.47 0.68 0.08 0.20 par:pas; +anoblie anoblir ver f s 0.47 0.68 0.27 0.00 par:pas; +anoblies anobli adj f p 0.02 0.07 0.00 0.07 +anoblir anoblir ver 0.47 0.68 0.01 0.20 inf; +anoblissait anoblir ver 0.47 0.68 0.00 0.07 ind:imp:3s; +anoblissant anoblir ver 0.47 0.68 0.00 0.07 par:pre; +anoblissante anoblissant adj f s 0.00 0.07 0.00 0.07 +anoblissement anoblissement nom m s 0.00 0.14 0.00 0.14 +anoblit anoblir ver 0.47 0.68 0.11 0.14 ind:pre:3s;ind:pas:3s; +anode anode nom f s 0.02 0.00 0.02 0.00 +anodin anodin adj m s 1.03 8.65 0.38 2.97 +anodine anodin adj f s 1.03 8.65 0.20 2.03 +anodines anodin adj f p 1.03 8.65 0.20 2.09 +anodins anodin adj m p 1.03 8.65 0.25 1.55 +anodique anodique adj f s 0.20 0.00 0.20 0.00 +anodisé anodiser ver m s 0.21 0.07 0.21 0.07 par:pas; +anomalie anomalie nom f s 3.96 2.16 2.75 1.55 +anomalies anomalie nom f p 3.96 2.16 1.21 0.61 +anomoure anomoure nom m s 0.00 0.07 0.00 0.07 +anonymat anonymat nom m s 1.41 3.04 1.41 3.04 +anonyme anonyme adj s 11.65 14.80 7.74 9.26 +anonymement anonymement adv 0.42 0.14 0.42 0.14 +anonymes anonyme adj p 11.65 14.80 3.92 5.54 +anonymographe anonymographe nom m s 0.00 0.14 0.00 0.14 +anophèle anophèle nom m s 0.01 0.00 0.01 0.00 +anorak anorak nom m s 0.49 0.88 0.25 0.81 +anoraks anorak nom m p 0.49 0.88 0.25 0.07 +anorexie anorexie nom f s 0.88 0.81 0.87 0.74 +anorexies anorexie nom f p 0.88 0.81 0.01 0.07 +anorexique anorexique adj s 0.38 0.41 0.31 0.34 +anorexiques anorexique nom p 0.25 0.14 0.16 0.00 +anormal anormal adj m s 7.40 7.91 4.80 4.46 +anormale anormal adj f s 7.40 7.91 1.23 2.57 +anormalement anormalement adv 1.08 1.15 1.08 1.15 +anormales anormal adj f p 7.40 7.91 0.61 0.27 +anormalité anormalité nom f s 0.20 0.20 0.20 0.20 +anormaux anormal adj m p 7.40 7.91 0.76 0.61 +anosmie anosmie nom f s 0.07 0.00 0.07 0.00 +anosmique anosmique adj m s 0.01 0.07 0.01 0.07 +anoxie anoxie nom f s 0.09 0.00 0.09 0.00 +ans an nom m p 866.58 685.81 718.17 609.05 +anse anse nom f s 0.47 6.08 0.33 4.86 +anses anse nom f p 0.47 6.08 0.14 1.22 +ansée ansé adj f s 0.02 0.07 0.01 0.00 +ansées ansé adj f p 0.02 0.07 0.01 0.07 +antagonique antagonique adj s 0.03 0.00 0.03 0.00 +antagonisme antagonisme nom m s 0.17 1.55 0.16 1.15 +antagonismes antagonisme nom m p 0.17 1.55 0.02 0.41 +antagoniste antagoniste nom s 0.14 0.68 0.12 0.27 +antagonistes antagoniste adj p 0.10 0.88 0.03 0.68 +antalgique antalgique nom m s 0.50 0.00 0.15 0.00 +antalgiques antalgique nom m p 0.50 0.00 0.35 0.00 +antan antan nom m s 1.53 4.86 1.53 4.86 +antarctique antarctique adj s 0.06 0.07 0.06 0.00 +antarctiques antarctique adj p 0.06 0.07 0.00 0.07 +ante ante nom f s 1.12 0.27 1.12 0.27 +antenne antenne nom f s 11.59 8.45 10.08 3.65 +antennes antenne nom f p 11.59 8.45 1.50 4.80 +anthologie anthologie nom f s 0.48 0.81 0.48 0.68 +anthologies anthologie nom f p 0.48 0.81 0.00 0.14 +anthonome anthonome nom m s 0.01 0.00 0.01 0.00 +anthracine anthracine nom m s 0.04 0.00 0.04 0.00 +anthracite anthracite adj 0.07 1.15 0.07 1.15 +anthracites anthracite nom m p 0.01 1.82 0.00 0.07 +anthracose anthracose nom f s 0.01 0.00 0.01 0.00 +anthracène anthracène nom m s 0.01 0.00 0.01 0.00 +anthraquinone anthraquinone nom f s 0.01 0.00 0.01 0.00 +anthrax anthrax nom m 1.26 0.47 1.26 0.47 +anthropiques anthropique adj p 0.02 0.00 0.02 0.00 +anthropoïde anthropoïde nom s 0.03 0.20 0.02 0.07 +anthropoïdes anthropoïde nom p 0.03 0.20 0.01 0.14 +anthropologie anthropologie nom f s 0.78 0.41 0.78 0.41 +anthropologique anthropologique adj s 0.27 0.20 0.16 0.07 +anthropologiquement anthropologiquement adv 0.01 0.00 0.01 0.00 +anthropologiques anthropologique adj f p 0.27 0.20 0.11 0.14 +anthropologiste anthropologiste nom s 0.11 0.00 0.11 0.00 +anthropologue anthropologue nom s 1.46 0.20 1.18 0.07 +anthropologues anthropologue nom p 1.46 0.20 0.28 0.14 +anthropomorphe anthropomorphe adj f s 0.01 0.07 0.01 0.07 +anthropomorphique anthropomorphique adj f s 0.03 0.07 0.03 0.07 +anthropomorphiser anthropomorphiser ver 0.01 0.00 0.01 0.00 inf; +anthropomorphisme anthropomorphisme nom m s 0.01 0.34 0.01 0.34 +anthropométrie anthropométrie nom f s 0.00 0.27 0.00 0.27 +anthropométrique anthropométrique adj s 0.00 0.41 0.00 0.34 +anthropométriques anthropométrique adj f p 0.00 0.41 0.00 0.07 +anthropophage anthropophage adj m s 0.14 0.00 0.03 0.00 +anthropophages anthropophage adj p 0.14 0.00 0.11 0.00 +anthropophagie anthropophagie nom f s 0.11 0.61 0.11 0.61 +anthropophagiques anthropophagique adj f p 0.00 0.07 0.00 0.07 +anthropopithèque anthropopithèque nom m s 0.00 0.14 0.00 0.07 +anthropopithèques anthropopithèque nom m p 0.00 0.14 0.00 0.07 +anthume anthume adj s 0.00 0.20 0.00 0.20 +anti_acné anti_acné nom f s 0.02 0.00 0.02 0.00 +anti_agression anti_agression nom f s 0.03 0.07 0.03 0.07 +anti_allergie anti_allergie nom f s 0.01 0.00 0.01 0.00 +anti_anatomique anti_anatomique adj s 0.01 0.00 0.01 0.00 +anti_apartheid anti_apartheid nom m s 0.00 0.07 0.00 0.07 +anti_aphrodisiaque anti_aphrodisiaque adj f s 0.00 0.07 0.00 0.07 +anti_asthmatique anti_asthmatique nom s 0.01 0.00 0.01 0.00 +anti_atomique anti_atomique adj m s 0.06 0.07 0.05 0.00 +anti_atomique anti_atomique adj m p 0.06 0.07 0.01 0.07 +anti_aérien anti_aérien adj m s 0.41 0.27 0.20 0.07 +anti_aérien anti_aérien adj f s 0.41 0.27 0.17 0.07 +anti_aérien anti_aérien adj m p 0.41 0.27 0.04 0.14 +anti_avortement anti_avortement nom m s 0.12 0.00 0.12 0.00 +anti_beauf anti_beauf nom m s 0.01 0.00 0.01 0.00 +anti_bison anti_bison nom m s 0.00 0.07 0.00 0.07 +anti_blindage anti_blindage nom m s 0.04 0.00 0.04 0.00 +anti_blouson anti_blouson nom m s 0.00 0.07 0.00 0.07 +anti_bombe anti_bombe nom f s 0.10 0.07 0.09 0.00 +anti_bombe anti_bombe nom f p 0.10 0.07 0.01 0.07 +anti_boson anti_boson nom m p 0.04 0.00 0.04 0.00 +anti_braquage anti_braquage nom m s 0.01 0.00 0.01 0.00 +anti_brouillard anti_brouillard adj s 0.12 0.00 0.12 0.00 +anti_bruit anti_bruit nom m s 0.16 0.00 0.16 0.00 +anti_calcique anti_calcique adj f p 0.01 0.00 0.01 0.00 +anti_cancer anti_cancer nom m s 0.04 0.00 0.04 0.00 +anti_capitaliste anti_capitaliste adj m s 0.03 0.00 0.03 0.00 +anti_castriste anti_castriste adj s 0.02 0.00 0.02 0.00 +anti_castriste anti_castriste nom p 0.01 0.00 0.01 0.00 +anti_cellulite anti_cellulite nom f s 0.01 0.00 0.01 0.00 +anti_chambre anti_chambre nom f s 0.00 0.14 0.00 0.07 +anti_chambre anti_chambre nom f p 0.00 0.14 0.00 0.07 +anti_char anti_char nom m s 0.12 0.20 0.00 0.14 +anti_char anti_char nom m p 0.12 0.20 0.12 0.07 +anti_chien anti_chien nom m p 0.00 0.07 0.00 0.07 +anti_cité anti_cité nom f s 0.00 0.07 0.00 0.07 +anti_civilisation anti_civilisation nom f s 0.00 0.07 0.00 0.07 +anti_club anti_club nom m s 0.02 0.00 0.02 0.00 +anti_coco anti_coco nom p 0.01 0.00 0.01 0.00 +anti_colère anti_colère nom f s 0.01 0.00 0.01 0.00 +anti_communisme anti_communisme nom m s 0.00 0.14 0.00 0.14 +anti_communiste anti_communiste adj s 0.03 0.07 0.03 0.07 +anti_conformisme anti_conformisme nom m s 0.01 0.14 0.01 0.14 +anti_conformiste anti_conformiste nom s 0.01 0.00 0.01 0.00 +anti_conglutinatif anti_conglutinatif adj m s 0.00 0.07 0.00 0.07 +anti_corps anti_corps nom m 0.08 0.00 0.08 0.00 +anti_corruption anti_corruption nom f s 0.04 0.00 0.04 0.00 +anti_crash anti_crash nom m s 0.01 0.00 0.01 0.00 +anti_crime anti_crime nom m s 0.03 0.00 0.03 0.00 +anti_criminalité anti_criminalité nom f s 0.01 0.00 0.01 0.00 +anti_célibataire anti_célibataire adj f p 0.01 0.00 0.01 0.00 +anti_dauphin anti_dauphin nom m p 0.01 0.00 0.01 0.00 +anti_desperado anti_desperado nom m s 0.01 0.00 0.01 0.00 +anti_dieu anti_dieu nom m s 0.03 0.00 0.03 0.00 +anti_discrimination anti_discrimination nom f s 0.02 0.00 0.02 0.00 +anti_dopage anti_dopage nom m s 0.06 0.00 0.06 0.00 +anti_douleur anti_douleur nom f s 0.46 0.00 0.30 0.00 +anti_douleur anti_douleur nom f p 0.46 0.00 0.15 0.00 +anti_drague anti_drague nom f s 0.01 0.00 0.01 0.00 +anti_dramatique anti_dramatique adj s 0.00 0.07 0.00 0.07 +anti_drogue anti_drogue nom f s 0.42 0.00 0.35 0.00 +anti_drogue anti_drogue nom f p 0.42 0.00 0.07 0.00 +anti_débauche anti_débauche nom f s 0.00 0.07 0.00 0.07 +anti_démocratique anti_démocratique adj f s 0.14 0.07 0.14 0.07 +anti_démocratique anti_démocratique adj f p 0.14 0.07 0.01 0.00 +anti_démon anti_démon nom m s 0.04 0.00 0.04 0.00 +anti_espionne anti_espionne nom f p 0.01 0.00 0.01 0.00 +anti_establishment anti_establishment nom m s 0.02 0.00 0.02 0.00 +anti_existence anti_existence nom f s 0.00 0.07 0.00 0.07 +anti_explosion anti_explosion nom f s 0.04 0.00 0.04 0.00 +anti_fantôme anti_fantôme nom m p 0.02 0.00 0.02 0.00 +anti_fasciste anti_fasciste adj f s 0.02 0.00 0.02 0.00 +anti_femme anti_femme nom f s 0.01 0.00 0.01 0.00 +anti_flingage anti_flingage nom m s 0.00 0.07 0.00 0.07 +anti_flip anti_flip nom m s 0.00 0.07 0.00 0.07 +anti_frigo anti_frigo nom m s 0.00 0.07 0.00 0.07 +anti_féministe anti_féministe nom s 0.03 0.07 0.03 0.07 +anti_fusionnel anti_fusionnel adj m s 0.01 0.00 0.01 0.00 +anti_fusée anti_fusée nom f p 0.00 0.20 0.00 0.20 +anti_g anti_g adj f p 0.01 0.00 0.01 0.00 +anti_gang anti_gang nom m s 0.33 0.00 0.33 0.00 +anti_gel anti_gel nom m s 0.05 0.00 0.05 0.00 +anti_gerce anti_gerce nom f s 0.01 0.00 0.01 0.00 +anti_gouvernement anti_gouvernement nom m s 0.10 0.00 0.10 0.00 +anti_graffiti anti_graffiti nom m 0.01 0.00 0.01 0.00 +anti_gravité anti_gravité nom f s 0.06 0.00 0.06 0.00 +anti_grimace anti_grimace nom f p 0.01 0.00 0.01 0.00 +anti_gros anti_gros adj m 0.01 0.00 0.01 0.00 +anti_hanneton anti_hanneton nom m p 0.00 0.07 0.00 0.07 +anti_hypertenseur anti_hypertenseur adj m s 0.01 0.00 0.01 0.00 +anti_immigration anti_immigration nom f s 0.02 0.00 0.02 0.00 +anti_immigré anti_immigré adj p 0.00 0.07 0.00 0.07 +anti_impérialiste anti_impérialiste adj s 0.11 0.07 0.11 0.07 +anti_incendie anti_incendie nom m s 0.16 0.00 0.16 0.00 +anti_inertie anti_inertie nom f s 0.01 0.00 0.01 0.00 +anti_infectieux anti_infectieux adj m p 0.01 0.00 0.01 0.00 +anti_inflammatoire anti_inflammatoire nom m s 0.07 0.07 0.07 0.07 +anti_insecte anti_insecte nom m s 0.03 0.07 0.01 0.00 +anti_insecte anti_insecte nom m p 0.03 0.07 0.02 0.07 +anti_instinct anti_instinct nom m s 0.00 0.07 0.00 0.07 +anti_insurrectionnel anti_insurrectionnel adj m s 0.01 0.00 0.01 0.00 +anti_intimité anti_intimité nom f s 0.04 0.00 0.04 0.00 +anti_japon anti_japon nom m s 0.00 0.07 0.00 0.07 +anti_jeunes anti_jeunes adj m s 0.00 0.07 0.00 0.07 +anti_mafia anti_mafia nom f s 0.01 0.07 0.01 0.07 +anti_maison anti_maison nom f s 0.00 0.14 0.00 0.14 +anti_manipulation anti_manipulation nom f s 0.01 0.00 0.01 0.00 +anti_manoir anti_manoir nom m s 0.00 0.07 0.00 0.07 +anti_mariage anti_mariage nom m s 0.03 0.00 0.03 0.00 +anti_matière anti_matière nom f s 0.09 0.00 0.08 0.00 +anti_matière anti_matière nom f p 0.09 0.00 0.01 0.00 +anti_mec anti_mec nom m p 0.02 0.00 0.02 0.00 +anti_militariste anti_militariste nom s 0.01 0.00 0.01 0.00 +anti_missile anti_missile nom m p 0.03 0.00 0.03 0.00 +anti_mite anti_mite nom f s 0.10 0.14 0.03 0.07 +anti_mite anti_mite nom f p 0.10 0.14 0.08 0.07 +anti_monde anti_monde nom m s 0.00 0.07 0.00 0.07 +anti_monstre anti_monstre adj f p 0.01 0.00 0.01 0.00 +anti_moustique anti_moustique nom m s 0.58 0.07 0.41 0.00 +anti_moustique anti_moustique nom m p 0.58 0.07 0.17 0.07 +anti_médicament anti_médicament nom m p 0.01 0.00 0.01 0.00 +anti_métaphysique anti_métaphysique adj m s 0.00 0.07 0.00 0.07 +anti_météorite anti_météorite nom f p 0.20 0.00 0.20 0.00 +anti_nausée anti_nausée nom f s 0.01 0.00 0.01 0.00 +anti_navire anti_navire nom m s 0.01 0.00 0.01 0.00 +anti_nucléaire anti_nucléaire adj m s 0.06 0.00 0.05 0.00 +anti_nucléaire anti_nucléaire adj p 0.06 0.00 0.01 0.00 +anti_nucléaire anti_nucléaire nom m p 0.01 0.00 0.01 0.00 +anti_odeur anti_odeur nom f s 0.02 0.14 0.01 0.07 +anti_odeur anti_odeur nom f p 0.02 0.14 0.01 0.07 +anti_odorant anti_odorant adj m p 0.00 0.07 0.00 0.07 +anti_âge anti_âge adj 0.04 0.74 0.04 0.74 +anti_origine anti_origine nom f s 0.00 0.07 0.00 0.07 +anti_panache anti_panache nom m s 0.00 0.07 0.00 0.07 +anti_particule anti_particule nom f s 0.01 0.00 0.01 0.00 +anti_pasteur anti_pasteur nom m s 0.00 0.07 0.00 0.07 +anti_patriote anti_patriote nom s 0.01 0.00 0.01 0.00 +anti_patriotique anti_patriotique adj f s 0.06 0.00 0.06 0.00 +anti_pelliculaire anti_pelliculaire adj m s 0.13 0.07 0.13 0.07 +anti_piratage anti_piratage nom m s 0.01 0.00 0.01 0.00 +anti_pirate anti_pirate adj s 0.01 0.00 0.01 0.00 +anti_poison anti_poison nom m s 0.04 0.14 0.04 0.14 +anti_poisse anti_poisse nom f s 0.05 0.07 0.05 0.07 +anti_pollution anti_pollution nom f s 0.04 0.00 0.04 0.00 +anti_poux anti_poux nom m p 0.04 0.00 0.04 0.00 +anti_progressiste anti_progressiste nom p 0.00 0.07 0.00 0.07 +anti_psychotique anti_psychotique adj s 0.01 0.00 0.01 0.00 +anti_pub anti_pub nom s 0.00 0.07 0.00 0.07 +anti_puce anti_puce nom f p 0.14 0.00 0.14 0.00 +anti_pédérastique anti_pédérastique adj p 0.00 0.07 0.00 0.07 +anti_racket anti_racket nom m s 0.06 0.00 0.06 0.00 +anti_radiation anti_radiation nom f p 0.08 0.00 0.08 0.00 +anti_rapt anti_rapt nom m s 0.00 0.07 0.00 0.07 +anti_reflet anti_reflet nom m p 0.00 0.07 0.00 0.07 +anti_rejet anti_rejet nom m s 0.20 0.00 0.20 0.00 +anti_religion anti_religion nom f s 0.01 0.00 0.01 0.00 +anti_rhume anti_rhume nom m s 0.02 0.00 0.02 0.00 +anti_ride anti_ride nom f p 0.06 0.00 0.06 0.00 +anti_romain anti_romain nom m s 0.00 0.07 0.00 0.07 +anti_romantique anti_romantique adj s 0.01 0.00 0.01 0.00 +anti_rouille anti_rouille nom f s 0.01 0.00 0.01 0.00 +anti_russe anti_russe adj m s 0.11 0.00 0.11 0.00 +anti_sida anti_sida nom m s 0.02 0.00 0.02 0.00 +anti_socialiste anti_socialiste adj p 0.01 0.00 0.01 0.00 +anti_sociaux anti_sociaux adj m p 0.04 0.00 0.04 0.00 +anti_société anti_société nom f s 0.00 0.07 0.00 0.07 +anti_somnolence anti_somnolence nom f s 0.01 0.00 0.01 0.00 +anti_souffle anti_souffle nom m s 0.03 0.00 0.03 0.00 +anti_sous_marin anti_sous_marin adj m s 0.02 0.00 0.02 0.00 +anti_soviétique anti_soviétique adj f s 0.00 0.07 0.00 0.07 +anti_sèche anti_sèche adj f s 0.01 0.07 0.01 0.00 +anti_sèche anti_sèche adj f p 0.01 0.07 0.00 0.07 +anti_stress anti_stress nom m 0.35 0.00 0.35 0.00 +anti_sémite anti_sémite adj s 0.04 0.00 0.02 0.00 +anti_sémite anti_sémite adj f p 0.04 0.00 0.02 0.00 +anti_sémitisme anti_sémitisme nom m s 0.08 0.00 0.08 0.00 +anti_syndical anti_syndical adj m s 0.01 0.00 0.01 0.00 +anti_tabac anti_tabac adj s 0.17 0.00 0.17 0.00 +anti_tache anti_tache nom f p 0.15 0.00 0.15 0.00 +anti_tank anti_tank nom m s 0.03 0.00 0.03 0.00 +anti_tapisserie anti_tapisserie nom f s 0.00 0.07 0.00 0.07 +anti_temps anti_temps nom m 0.00 0.27 0.00 0.27 +anti_tension anti_tension nom f s 0.01 0.00 0.01 0.00 +anti_terrorisme anti_terrorisme nom m s 0.53 0.00 0.53 0.00 +anti_terroriste anti_terroriste adj s 0.26 0.00 0.26 0.00 +anti_tornade anti_tornade nom f p 0.01 0.00 0.01 0.00 +anti_toux anti_toux nom f 0.01 0.00 0.01 0.00 +anti_truie anti_truie nom f s 0.01 0.00 0.01 0.00 +anti_trust anti_trust nom m p 0.02 0.00 0.02 0.00 +anti_émeute anti_émeute adj s 0.15 0.00 0.10 0.00 +anti_émeute anti_émeute adj p 0.15 0.00 0.05 0.00 +anti_émotionnelle anti_émotionnelle adj f s 0.00 0.07 0.00 0.07 +anti_évasion anti_évasion nom f s 0.01 0.00 0.01 0.00 +anti_venin anti_venin nom m s 0.18 0.00 0.18 0.00 +anti_vieillissement anti_vieillissement nom m s 0.04 0.00 0.04 0.00 +anti_viol anti_viol nom m s 0.09 0.00 0.09 0.00 +anti_violence anti_violence nom f s 0.01 0.00 0.01 0.00 +anti_viral anti_viral adj m s 0.13 0.00 0.13 0.00 +anti_virus anti_virus nom m 0.09 0.00 0.09 0.00 +anti_vol anti_vol nom m s 0.36 0.27 0.35 0.27 +anti_vol anti_vol nom m p 0.36 0.27 0.01 0.00 +anti anti adv_sup 0.09 0.81 0.09 0.81 +antiacide antiacide adj s 0.12 0.00 0.07 0.00 +antiacides antiacide adj m p 0.12 0.00 0.04 0.00 +antialcoolique antialcoolique adj f s 0.02 0.00 0.02 0.00 +antiallemands antiallemand adj m p 0.00 0.07 0.00 0.07 +antiaméricain antiaméricain adj m s 0.06 0.14 0.05 0.00 +antiaméricaine antiaméricain adj f s 0.06 0.14 0.00 0.14 +antiaméricaines antiaméricain adj f p 0.06 0.14 0.01 0.00 +antiaméricanisme antiaméricanisme nom m s 0.02 0.07 0.02 0.07 +antiatomique antiatomique adj m s 0.31 0.00 0.31 0.00 +antiaérien antiaérien adj m s 0.75 1.35 0.25 0.20 +antiaérienne antiaérien adj f s 0.75 1.35 0.29 0.54 +antiaériennes antiaérien adj f p 0.75 1.35 0.17 0.27 +antiaériens antiaérien adj m p 0.75 1.35 0.05 0.34 +antibactérien antibactérien adj m s 0.03 0.00 0.03 0.00 +antibiotique antibiotique nom m s 5.22 1.55 1.04 0.14 +antibiotiques antibiotique nom m p 5.22 1.55 4.18 1.42 +antiblocage antiblocage adj m s 0.03 0.07 0.03 0.07 +antibois antibois nom m 0.14 0.00 0.14 0.00 +antibolcheviques antibolchevique adj m p 0.00 0.07 0.00 0.07 +antibolchevisme antibolchevisme nom m s 0.00 0.14 0.00 0.14 +antibourgeois antibourgeois adj m 0.00 0.07 0.00 0.07 +antibrouillard antibrouillard adj m p 0.00 0.07 0.00 0.07 +antibruit antibruit adj f s 0.01 0.00 0.01 0.00 +anticalcaire anticalcaire adj m s 0.00 0.07 0.00 0.07 +anticapitaliste anticapitaliste adj s 0.10 0.14 0.10 0.14 +anticastriste anticastriste adj s 0.03 0.07 0.01 0.07 +anticastristes anticastriste adj p 0.03 0.07 0.02 0.00 +anticatalyseurs anticatalyseur nom m p 0.00 0.07 0.00 0.07 +anticatholique anticatholique adj f s 0.00 0.07 0.00 0.07 +antichambre antichambre nom f s 0.89 8.58 0.89 7.84 +antichambres antichambre nom f p 0.89 8.58 0.00 0.74 +antichar antichar adj s 0.33 1.89 0.07 0.20 +antichars antichar adj p 0.33 1.89 0.27 1.69 +antichoc antichoc adj f p 0.04 0.00 0.04 0.00 +anticholinergique anticholinergique adj s 0.01 0.00 0.01 0.00 +antichristianisme antichristianisme nom m s 0.00 0.07 0.00 0.07 +antichrétien antichrétien adj m s 0.00 0.14 0.00 0.07 +antichrétienne antichrétien adj f s 0.00 0.14 0.00 0.07 +anticipa anticiper ver 4.14 3.31 0.01 0.07 ind:pas:3s; +anticipais anticiper ver 4.14 3.31 0.04 0.14 ind:imp:1s; +anticipait anticiper ver 4.14 3.31 0.20 0.34 ind:imp:3s; +anticipant anticiper ver 4.14 3.31 0.06 0.47 par:pre; +anticipateur anticipateur adj m s 0.00 0.20 0.00 0.14 +anticipation anticipation nom f s 0.63 2.23 0.63 2.16 +anticipations anticipation nom f p 0.63 2.23 0.00 0.07 +anticipatoire anticipatoire adj f s 0.00 0.07 0.00 0.07 +anticipatrice anticipateur adj f s 0.00 0.20 0.00 0.07 +anticipe anticiper ver 4.14 3.31 1.24 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +anticipent anticiper ver 4.14 3.31 0.03 0.07 ind:pre:3p; +anticiper anticiper ver 4.14 3.31 1.29 0.27 inf; +anticipera anticiper ver 4.14 3.31 0.03 0.07 ind:fut:3s; +anticiperait anticiper ver 4.14 3.31 0.01 0.07 cnd:pre:3s; +anticipez anticiper ver 4.14 3.31 0.17 0.07 imp:pre:2p;ind:pre:2p; +anticipons anticiper ver 4.14 3.31 0.16 0.20 imp:pre:1p;ind:pre:1p; +anticipé anticiper ver m s 4.14 3.31 0.56 0.14 par:pas; +anticipée anticipé adj f s 1.64 1.08 1.40 0.54 +anticipées anticiper ver f p 4.14 3.31 0.14 0.00 par:pas; +anticipés anticipé adj m p 1.64 1.08 0.03 0.00 +anticlérical anticlérical adj m s 0.16 1.15 0.16 0.41 +anticléricale anticlérical adj f s 0.16 1.15 0.00 0.47 +anticléricales anticlérical adj f p 0.16 1.15 0.00 0.07 +anticléricalisme anticléricalisme nom m s 0.00 0.34 0.00 0.34 +anticléricaux anticlérical adj m p 0.16 1.15 0.00 0.20 +anticoagulant anticoagulant nom m s 0.21 0.00 0.14 0.00 +anticoagulants anticoagulant nom m p 0.21 0.00 0.06 0.00 +anticolonialisme anticolonialisme nom m s 0.00 0.07 0.00 0.07 +anticommunisme anticommunisme nom m s 0.10 0.88 0.10 0.88 +anticommuniste anticommuniste adj s 0.19 1.82 0.17 1.22 +anticommunistes anticommuniste adj p 0.19 1.82 0.01 0.61 +anticonceptionnelle anticonceptionnel adj f s 0.20 0.14 0.20 0.00 +anticonceptionnelles anticonceptionnel adj f p 0.20 0.14 0.00 0.07 +anticonceptionnels anticonceptionnel adj m p 0.20 0.14 0.00 0.07 +anticonformisme anticonformisme nom m s 0.00 0.07 0.00 0.07 +anticonformiste anticonformiste adj m s 0.05 0.00 0.05 0.00 +anticonstitutionnel anticonstitutionnel adj m s 0.19 0.00 0.14 0.00 +anticonstitutionnelle anticonstitutionnel adj f s 0.19 0.00 0.05 0.00 +anticonstitutionnellement anticonstitutionnellement adv 0.01 0.00 0.01 0.00 +anticorps anticorps nom m 1.35 0.41 1.35 0.41 +anticyclique anticyclique adj f s 0.01 0.00 0.01 0.00 +anticyclone anticyclone nom m s 0.03 0.07 0.03 0.07 +anticycloniques anticyclonique adj m p 0.00 0.07 0.00 0.07 +antidatait antidater ver 0.01 0.27 0.00 0.07 ind:imp:3s; +antidater antidater ver 0.01 0.27 0.00 0.07 inf; +antidaté antidater ver m s 0.01 0.27 0.01 0.07 par:pas; +antidatée antidater ver f s 0.01 0.27 0.00 0.07 par:pas; +antidictatoriaux antidictatorial adj m p 0.00 0.07 0.00 0.07 +antidopage antidopage adj m s 0.01 0.00 0.01 0.00 +antidote antidote nom m s 4.48 1.35 4.38 1.08 +antidotes antidote nom m p 4.48 1.35 0.09 0.27 +antidouleur antidouleur adj s 0.34 0.00 0.34 0.00 +antidreyfusard antidreyfusard nom m s 0.14 0.07 0.14 0.00 +antidreyfusarde antidreyfusard adj f s 0.14 0.00 0.14 0.00 +antidreyfusards antidreyfusard nom m p 0.14 0.07 0.00 0.07 +antidreyfusisme antidreyfusisme nom m s 0.00 0.07 0.00 0.07 +antidrogue antidrogue adj s 0.08 0.07 0.08 0.07 +antidémarrage antidémarrage nom m s 0.01 0.00 0.01 0.00 +antidémocratique antidémocratique adj s 0.02 0.07 0.02 0.07 +antidépresseur antidépresseur nom m s 0.98 0.27 0.26 0.00 +antidépresseurs antidépresseur nom m p 0.98 0.27 0.72 0.27 +antidérapant antidérapant adj m s 0.07 0.14 0.03 0.00 +antidérapante antidérapant adj f s 0.07 0.14 0.01 0.00 +antidérapantes antidérapant adj f p 0.07 0.14 0.01 0.14 +antidérapants antidérapant adj m p 0.07 0.14 0.02 0.00 +antienne antienne nom f s 0.00 1.62 0.00 1.49 +antiennes antienne nom f p 0.00 1.62 0.00 0.14 +antiesclavagiste antiesclavagiste nom s 0.01 0.00 0.01 0.00 +antifading antifading nom m s 0.00 0.07 0.00 0.07 +antifascisme antifascisme nom m s 0.00 0.07 0.00 0.07 +antifasciste antifasciste nom s 0.26 0.27 0.10 0.07 +antifascistes antifasciste nom p 0.26 0.27 0.16 0.20 +antifongique antifongique nom m s 0.03 0.00 0.03 0.00 +antifrançaise antifrançais adj f s 0.00 0.34 0.00 0.20 +antifrançaises antifrançais adj f p 0.00 0.34 0.00 0.14 +antiféminisme antiféminisme nom m s 0.00 0.07 0.00 0.07 +antifumée antifumée adj m p 0.01 0.00 0.01 0.00 +antigang antigang adj f s 0.16 0.07 0.16 0.07 +antigangs antigang nom p 0.12 0.14 0.01 0.00 +antigaullistes antigaulliste adj f p 0.00 0.07 0.00 0.07 +antigel antigel nom m s 0.20 0.00 0.20 0.00 +antigermanisme antigermanisme nom m s 0.00 0.07 0.00 0.07 +antigravitation antigravitation nom f s 0.01 0.00 0.01 0.00 +antigravitationnel antigravitationnel adj m s 0.04 0.00 0.04 0.00 +antigravité antigravité nom f s 0.01 0.00 0.01 0.00 +antigrippe antigrippe nom f s 0.16 0.00 0.16 0.00 +antigène antigène nom m s 0.28 0.34 0.11 0.27 +antigènes antigène nom m p 0.28 0.34 0.17 0.07 +antihistaminique antihistaminique nom m s 0.25 0.00 0.10 0.00 +antihistaminiques antihistaminique nom m p 0.25 0.00 0.15 0.00 +antihémorragiques antihémorragique adj p 0.00 0.07 0.00 0.07 +antihéros antihéros nom m 0.04 0.00 0.04 0.00 +antihygiénique antihygiénique adj f s 0.01 0.07 0.01 0.07 +antillais antillais nom m 0.14 4.12 0.12 3.72 +antillaise antillais nom f s 0.14 4.12 0.01 0.20 +antillaises antillais nom f p 0.14 4.12 0.00 0.20 +antilogique antilogique adj s 0.01 0.00 0.01 0.00 +antilope antilope nom f s 0.88 2.16 0.73 1.28 +antilopes antilope nom f p 0.88 2.16 0.16 0.88 +antimarxiste antimarxiste adj f s 0.00 0.07 0.00 0.07 +antimaçonniques antimaçonnique adj p 0.00 0.07 0.00 0.07 +antimatière antimatière nom f s 0.13 0.14 0.13 0.14 +antimicrobien antimicrobien adj m s 0.01 0.00 0.01 0.00 +antimigraineux antimigraineux adj m 0.02 0.00 0.02 0.00 +antimilitarisme antimilitarisme nom m s 0.00 0.34 0.00 0.34 +antimilitariste antimilitariste adj m s 0.12 0.81 0.11 0.54 +antimilitaristes antimilitariste adj p 0.12 0.81 0.01 0.27 +antimissile antimissile adj s 0.04 0.00 0.04 0.00 +antimissiles antimissile nom m p 0.06 0.00 0.06 0.00 +antimite antimite nom m s 0.05 0.61 0.04 0.27 +antimites antimite nom m p 0.05 0.61 0.01 0.34 +antimitotiques antimitotique nom m p 0.01 0.00 0.01 0.00 +antimoine antimoine nom m s 0.01 0.27 0.01 0.27 +antimonde antimonde adj s 0.00 0.07 0.00 0.07 +antinationale antinational adj f s 0.00 0.14 0.00 0.07 +antinationales antinational adj f p 0.00 0.14 0.00 0.07 +antinationaliste antinationaliste adj s 0.00 0.14 0.00 0.14 +antinaturel antinaturel adj m s 0.00 0.14 0.00 0.07 +antinaturelle antinaturel adj f s 0.00 0.14 0.00 0.07 +antinazie antinazi adj f s 0.10 0.07 0.10 0.00 +antinazis antinazi nom m p 0.01 0.00 0.01 0.00 +antinomie antinomie nom f s 0.01 0.34 0.00 0.27 +antinomies antinomie nom f p 0.01 0.34 0.01 0.07 +antinomique antinomique adj s 0.03 0.20 0.03 0.14 +antinomiques antinomique adj m p 0.03 0.20 0.00 0.07 +antinucléaire antinucléaire adj s 0.11 0.14 0.03 0.14 +antinucléaires antinucléaire adj f p 0.11 0.14 0.07 0.00 +antioxydant antioxydant nom m s 0.05 0.00 0.02 0.00 +antioxydants antioxydant nom m p 0.05 0.00 0.03 0.00 +antipape antipape nom m s 0.11 0.14 0.11 0.07 +antipapes antipape nom m p 0.11 0.14 0.00 0.07 +antiparasitage antiparasitage adj f s 0.00 0.07 0.00 0.07 +antiparasite antiparasite adj f s 0.01 0.07 0.01 0.07 +antiparasites antiparasite nom m p 0.02 0.14 0.01 0.14 +antipathie antipathie nom f s 0.71 1.82 0.57 1.69 +antipathies antipathie nom f p 0.71 1.82 0.14 0.14 +antipathique antipathique adj s 0.97 2.03 0.96 1.55 +antipathiques antipathique adj p 0.97 2.03 0.01 0.47 +antipatriote antipatriote adj m s 0.01 0.00 0.01 0.00 +antipatriotiques antipatriotique adj f p 0.01 0.00 0.01 0.00 +antipelliculaire antipelliculaire adj m s 0.01 0.00 0.01 0.00 +antipersonnel antipersonnel adj 0.41 0.00 0.37 0.00 +antipersonnelle antipersonnel adj f s 0.41 0.00 0.03 0.00 +antipersonnelles antipersonnel adj f p 0.41 0.00 0.01 0.00 +antiphonaires antiphonaire nom m p 0.00 0.14 0.00 0.14 +antiphrase antiphrase nom f s 0.00 0.34 0.00 0.34 +antiphysiques antiphysique adj p 0.00 0.07 0.00 0.07 +antipodaire antipodaire adj m s 0.00 0.07 0.00 0.07 +antipode antipode nom m s 1.21 2.43 0.02 0.14 +antipodes antipode nom m p 1.21 2.43 1.19 2.30 +antipodiste antipodiste nom s 0.00 0.14 0.00 0.07 +antipodistes antipodiste nom p 0.00 0.14 0.00 0.07 +antipoison antipoison adj m s 0.16 0.07 0.16 0.07 +antipoisons antipoison nom m p 0.00 0.07 0.00 0.07 +antipoliomyélitique antipoliomyélitique adj m s 0.00 0.07 0.00 0.07 +antipollution antipollution adj 0.05 0.00 0.05 0.00 +antipopulaire antipopulaire adj m s 0.00 0.07 0.00 0.07 +antiproton antiproton nom m s 0.07 0.00 0.04 0.00 +antiprotons antiproton nom m p 0.07 0.00 0.03 0.00 +antiprotéase antiprotéase nom f s 0.01 0.00 0.01 0.00 +antipsychiatrie antipsychiatrie nom f s 0.01 0.14 0.01 0.14 +antipsychotique antipsychotique adj m s 0.07 0.00 0.04 0.00 +antipsychotique antipsychotique nom m s 0.10 0.00 0.04 0.00 +antipsychotiques antipsychotique nom m p 0.10 0.00 0.06 0.00 +antiquaille antiquaille nom f s 0.14 0.41 0.00 0.14 +antiquailleries antiquaillerie nom f p 0.00 0.07 0.00 0.07 +antiquailles antiquaille nom f p 0.14 0.41 0.14 0.27 +antiquaire antiquaire nom s 2.33 7.03 1.52 3.58 +antiquaires antiquaire nom p 2.33 7.03 0.81 3.45 +antiquark antiquark nom m s 0.01 0.00 0.01 0.00 +antique antique adj s 7.21 15.54 5.59 10.61 +antiques antique adj p 7.21 15.54 1.63 4.93 +antiquité antiquité nom f s 4.92 6.55 2.12 3.65 +antiquités antiquité nom f p 4.92 6.55 2.80 2.91 +antirabique antirabique adj m s 0.01 0.07 0.01 0.07 +antiracisme antiracisme nom m s 0.11 0.00 0.11 0.00 +antiracistes antiraciste adj m p 0.02 0.27 0.02 0.27 +antiradiation antiradiation adj p 0.02 0.00 0.02 0.00 +antireligieuse antireligieux adj f s 0.02 0.14 0.02 0.00 +antireligieux antireligieux adj m 0.02 0.14 0.00 0.14 +antirides antirides adj 0.02 0.07 0.02 0.07 +antirouille antirouille adj s 0.06 0.00 0.06 0.00 +antirépublicain antirépublicain adj m s 0.00 0.07 0.00 0.07 +antirusse antirusse adj m s 0.00 0.07 0.00 0.07 +antisatellite antisatellite adj 0.03 0.00 0.03 0.00 +antiscientifique antiscientifique adj f s 0.14 0.07 0.14 0.07 +antisepsie antisepsie nom f s 0.00 0.07 0.00 0.07 +antiseptique antiseptique adj s 0.32 0.14 0.30 0.00 +antiseptiques antiseptique adj p 0.32 0.14 0.03 0.14 +antisexistes antisexiste adj m p 0.00 0.07 0.00 0.07 +antisexuel antisexuel adj m s 0.00 0.07 0.00 0.07 +antisionistes antisioniste adj p 0.00 0.07 0.00 0.07 +antiskating antiskating adj f p 0.00 0.07 0.00 0.07 +antisocial antisocial adj m s 0.77 0.07 0.12 0.00 +antisociale antisocial adj f s 0.77 0.07 0.17 0.00 +antisociales antisocial adj f p 0.77 0.07 0.02 0.07 +antisociaux antisocial adj m p 0.77 0.07 0.46 0.00 +antisolaire antisolaire adj f s 0.00 0.14 0.00 0.07 +antisolaires antisolaire adj f p 0.00 0.14 0.00 0.07 +antisoviétique antisoviétique adj s 0.00 0.34 0.00 0.27 +antisoviétiques antisoviétique adj p 0.00 0.34 0.00 0.07 +antisoviétisme antisoviétisme nom m s 0.00 0.07 0.00 0.07 +antispasmodique antispasmodique nom m s 0.02 0.00 0.02 0.00 +antisportif antisportif adj m s 0.01 0.00 0.01 0.00 +antistalinien antistalinien adj m s 0.00 0.27 0.00 0.20 +antistaliniens antistalinien adj m p 0.00 0.27 0.00 0.07 +antistatique antistatique adj f s 0.01 0.07 0.01 0.00 +antistatiques antistatique adj p 0.01 0.07 0.00 0.07 +antisèche antisèche nom s 0.23 0.14 0.15 0.00 +antisèches antisèche nom p 0.23 0.14 0.08 0.14 +antistress antistress adj m s 0.01 0.00 0.01 0.00 +antisémite antisémite adj s 0.96 1.55 0.72 0.61 +antisémites antisémite adj p 0.96 1.55 0.23 0.95 +antisémitisme antisémitisme nom m s 0.36 1.62 0.36 1.62 +antisérum antisérum nom m s 0.09 0.00 0.09 0.00 +antitabac antitabac adj f s 0.07 0.00 0.07 0.00 +antiterrorisme antiterrorisme nom m s 0.01 0.00 0.01 0.00 +antiterroriste antiterroriste adj s 0.66 0.27 0.66 0.27 +antithèse antithèse nom f s 0.11 0.88 0.11 0.81 +antithèses antithèse nom f p 0.11 0.88 0.00 0.07 +antithétiques antithétique adj p 0.00 0.07 0.00 0.07 +antitout antitout nom m s 0.00 0.07 0.00 0.07 +antitoxine antitoxine nom f s 0.08 0.00 0.08 0.00 +antitoxique antitoxique adj s 0.10 0.00 0.10 0.00 +antitrust antitrust adj 0.24 0.00 0.24 0.00 +antituberculeux antituberculeux nom m 0.00 0.14 0.00 0.14 +antitussif antitussif adj m s 0.01 0.07 0.01 0.00 +antitussives antitussif adj f p 0.01 0.07 0.00 0.07 +antitétanique antitétanique adj s 0.22 0.14 0.22 0.14 +antityphoïdique antityphoïdique adj m s 0.00 0.07 0.00 0.07 +antiémeute antiémeute adj s 0.01 0.00 0.01 0.00 +antiémétique antiémétique nom m s 0.01 0.00 0.01 0.00 +antivariolique antivariolique adj m s 0.01 0.00 0.01 0.00 +antivenimeux antivenimeux adj m s 0.03 0.00 0.03 0.00 +antiviolence antiviolence adj s 0.02 0.00 0.02 0.00 +antiviral antiviral adj m s 0.05 0.00 0.02 0.00 +antiviraux antiviral nom m p 0.16 0.00 0.14 0.00 +antivirus antivirus nom m 0.66 0.00 0.66 0.00 +antivol antivol nom m s 0.30 0.14 0.30 0.14 +antonin antonin adj m s 0.14 0.14 0.14 0.14 +antonomase antonomase nom f s 0.00 0.07 0.00 0.07 +antonyme antonyme nom m s 0.00 0.14 0.00 0.07 +antonymes antonyme nom m p 0.00 0.14 0.00 0.07 +antre antre nom m s 2.96 4.66 2.96 4.39 +antres antre nom m p 2.96 4.66 0.01 0.27 +anté anter ver 0.00 0.07 0.00 0.07 imp:pre:2s; +antéchrist antéchrist nom m s 2.89 1.08 2.83 1.08 +antéchrists antéchrist nom m p 2.89 1.08 0.06 0.00 +antécédent antécédent nom m s 5.71 0.68 0.38 0.00 +antécédents antécédent nom m p 5.71 0.68 5.33 0.68 +antédiluvien antédiluvien adj m s 0.03 0.88 0.01 0.41 +antédiluvienne antédiluvien adj f s 0.03 0.88 0.01 0.20 +antédiluviennes antédiluvien adj f p 0.03 0.88 0.00 0.27 +antédiluviens antédiluvien adj m p 0.03 0.88 0.01 0.00 +antépénultième antépénultième nom f s 0.00 0.20 0.00 0.14 +antépénultièmes antépénultième nom f p 0.00 0.20 0.00 0.07 +antérieur antérieur adj m s 3.82 10.27 0.88 2.43 +antérieure antérieur adj f s 3.82 10.27 1.82 3.92 +antérieurement antérieurement adv 0.36 1.01 0.36 1.01 +antérieures antérieur adj f p 3.82 10.27 0.66 1.69 +antérieurs antérieur adj m p 3.82 10.27 0.46 2.23 +antérograde antérograde adj f s 0.00 0.07 0.00 0.07 +anéanti anéantir ver m s 13.18 12.70 3.27 2.84 par:pas; +anéantie anéantir ver f s 13.18 12.70 1.55 1.96 par:pas; +anéanties anéantir ver f p 13.18 12.70 0.19 0.41 par:pas; +anéantir anéantir ver 13.18 12.70 4.41 3.78 inf; +anéantira anéantir ver 13.18 12.70 0.47 0.07 ind:fut:3s; +anéantirai anéantir ver 13.18 12.70 0.05 0.00 ind:fut:1s; +anéantiraient anéantir ver 13.18 12.70 0.01 0.07 cnd:pre:3p; +anéantirait anéantir ver 13.18 12.70 0.27 0.07 cnd:pre:3s; +anéantirent anéantir ver 13.18 12.70 0.00 0.14 ind:pas:3p; +anéantiriez anéantir ver 13.18 12.70 0.02 0.00 cnd:pre:2p; +anéantirons anéantir ver 13.18 12.70 0.06 0.00 ind:fut:1p; +anéantiront anéantir ver 13.18 12.70 0.09 0.00 ind:fut:3p; +anéantis anéantir ver m p 13.18 12.70 1.62 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +anéantissaient anéantir ver 13.18 12.70 0.00 0.27 ind:imp:3p; +anéantissait anéantir ver 13.18 12.70 0.00 0.47 ind:imp:3s; +anéantissant anéantir ver 13.18 12.70 0.04 0.14 par:pre; +anéantissante anéantissant adj f s 0.01 0.14 0.01 0.07 +anéantissantes anéantissant adj f p 0.01 0.14 0.00 0.07 +anéantisse anéantir ver 13.18 12.70 0.36 0.07 sub:pre:1s;sub:pre:3s; +anéantissement anéantissement nom m s 0.63 3.38 0.62 3.24 +anéantissements anéantissement nom m p 0.63 3.38 0.01 0.14 +anéantissent anéantir ver 13.18 12.70 0.14 0.14 ind:pre:3p; +anéantissez anéantir ver 13.18 12.70 0.08 0.00 imp:pre:2p;ind:pre:2p; +anéantissons anéantir ver 13.18 12.70 0.02 0.00 imp:pre:1p;ind:pre:1p; +anéantit anéantir ver 13.18 12.70 0.52 0.68 ind:pre:3s;ind:pas:3s; +anuité anuiter ver m s 0.00 0.20 0.00 0.14 par:pas; +anuitées anuiter ver f p 0.00 0.20 0.00 0.07 par:pas; +anémiais anémier ver 0.04 0.14 0.00 0.07 ind:imp:1s; +anémiante anémiant adj f s 0.00 0.07 0.00 0.07 +anémie anémie nom f s 1.31 0.41 1.31 0.41 +anémique anémique adj s 0.75 1.15 0.52 0.81 +anémiques anémique adj p 0.75 1.15 0.23 0.34 +anémié anémier ver m s 0.04 0.14 0.01 0.00 par:pas; +anémiée anémié adj f s 0.02 0.14 0.01 0.00 +anémiés anémié adj m p 0.02 0.14 0.01 0.07 +anémomètre anémomètre nom m s 0.02 0.14 0.02 0.14 +anémométrique anémométrique adj s 0.00 0.07 0.00 0.07 +anémone anémone nom f s 0.17 3.45 0.05 0.68 +anémones anémone nom f p 0.17 3.45 0.12 2.77 +anus anus nom m 1.63 1.82 1.63 1.82 +anuscopie anuscopie nom f s 0.01 0.00 0.01 0.00 +anévrisme anévrisme nom m s 1.33 0.07 1.28 0.07 +anévrismes anévrisme nom m p 1.33 0.07 0.05 0.00 +anxieuse anxieux adj f s 3.76 10.47 0.91 3.58 +anxieusement anxieusement adv 0.17 2.36 0.17 2.36 +anxieuses anxieux adj f p 3.76 10.47 0.02 0.54 +anxieux anxieux adj m 3.76 10.47 2.83 6.35 +anxiolytique anxiolytique nom m s 0.28 0.00 0.21 0.00 +anxiolytiques anxiolytique nom m p 0.28 0.00 0.07 0.00 +anxiété anxiété nom f s 3.06 10.27 2.92 9.86 +anxiétés anxiété nom f p 3.06 10.27 0.14 0.41 +anya anya nom m s 0.26 0.00 0.26 0.00 +août août nom m 12.65 49.66 12.65 49.66 +aoûtat aoûtat nom m s 0.08 0.00 0.08 0.00 +aoûtien aoûtien nom m s 0.00 0.07 0.00 0.07 +aoriste aoriste nom m s 0.00 0.07 0.00 0.07 +aorte aorte nom f s 1.16 0.20 1.16 0.20 +aortique aortique adj s 0.21 0.07 0.15 0.07 +aortiques aortique adj p 0.21 0.07 0.06 0.00 +aouls aoul nom m p 0.00 0.07 0.00 0.07 +apôtre apôtre nom m s 2.89 6.28 1.36 2.03 +apôtres apôtre nom m p 2.89 6.28 1.53 4.26 +apache apache adj s 0.60 0.20 0.40 0.20 +apaches apache adj p 0.60 0.20 0.20 0.00 +apaisa apaiser ver 8.52 35.00 0.12 3.04 ind:pas:3s; +apaisai apaiser ver 8.52 35.00 0.00 0.07 ind:pas:1s; +apaisaient apaiser ver 8.52 35.00 0.00 0.54 ind:imp:3p; +apaisais apaiser ver 8.52 35.00 0.02 0.07 ind:imp:1s;ind:imp:2s; +apaisait apaiser ver 8.52 35.00 0.04 3.18 ind:imp:3s; +apaisant apaisant adj m s 1.28 6.62 0.70 2.30 +apaisante apaisant adj f s 1.28 6.62 0.48 2.43 +apaisantes apaisant adj f p 1.28 6.62 0.06 0.95 +apaisants apaisant adj m p 1.28 6.62 0.04 0.95 +apaise apaiser ver 8.52 35.00 2.01 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apaisement apaisement nom m s 0.47 7.23 0.46 6.69 +apaisements apaisement nom m p 0.47 7.23 0.01 0.54 +apaisent apaiser ver 8.52 35.00 0.11 0.88 ind:pre:3p; +apaiser apaiser ver 8.52 35.00 3.49 8.85 inf; +apaisera apaiser ver 8.52 35.00 0.60 0.20 ind:fut:3s; +apaiseraient apaiser ver 8.52 35.00 0.01 0.14 cnd:pre:3p; +apaiserais apaiser ver 8.52 35.00 0.01 0.07 cnd:pre:1s; +apaiserait apaiser ver 8.52 35.00 0.09 0.54 cnd:pre:3s; +apaisez apaiser ver 8.52 35.00 0.19 0.07 imp:pre:2p; +apaisiez apaiser ver 8.52 35.00 0.01 0.00 ind:imp:2p; +apaisons apaiser ver 8.52 35.00 0.00 0.07 imp:pre:1p; +apaisât apaiser ver 8.52 35.00 0.00 0.27 sub:imp:3s; +apaisèrent apaiser ver 8.52 35.00 0.00 0.68 ind:pas:3p; +apaisé apaiser ver m s 8.52 35.00 1.08 4.66 par:pas; +apaisée apaiser ver f s 8.52 35.00 0.47 4.05 par:pas; +apaisées apaiser ver f p 8.52 35.00 0.04 0.74 par:pas; +apaisés apaiser ver m p 8.52 35.00 0.17 1.15 par:pas; +apanage apanage nom m s 0.27 1.22 0.27 1.15 +apanages apanage nom m p 0.27 1.22 0.00 0.07 +apartheid apartheid nom m s 0.53 0.07 0.53 0.07 +aparté aparté nom m s 0.24 1.69 0.20 1.15 +apartés aparté nom m p 0.24 1.69 0.04 0.54 +apathie apathie nom f s 0.91 1.49 0.91 1.49 +apathique apathique adj s 0.52 0.54 0.46 0.41 +apathiques apathique adj m p 0.52 0.54 0.06 0.14 +apatride apatride adj m s 0.32 0.54 0.30 0.27 +apatrides apatride adj m p 0.32 0.54 0.02 0.27 +apax apax nom m 0.00 0.07 0.00 0.07 +ape ape nom m s 0.23 0.14 0.23 0.07 +aperceptions aperception nom f p 0.00 0.14 0.00 0.14 +apercevaient apercevoir ver 34.56 233.11 0.00 2.30 ind:imp:3p; +apercevais apercevoir ver 34.56 233.11 0.15 6.55 ind:imp:1s;ind:imp:2s; +apercevait apercevoir ver 34.56 233.11 0.79 25.68 ind:imp:3s; +apercevant apercevoir ver 34.56 233.11 0.08 8.45 par:pre; +apercevez apercevoir ver 34.56 233.11 0.49 0.41 ind:pre:2p; +aperceviez apercevoir ver 34.56 233.11 0.14 0.00 ind:imp:2p; +apercevions apercevoir ver 34.56 233.11 0.03 1.08 ind:imp:1p;sub:pre:1p; +apercevoir apercevoir ver 34.56 233.11 6.16 35.20 inf; +apercevons apercevoir ver 34.56 233.11 0.06 0.95 ind:pre:1p; +apercevra apercevoir ver 34.56 233.11 1.27 1.42 ind:fut:3s; +apercevrai apercevoir ver 34.56 233.11 0.03 0.20 ind:fut:1s; +apercevraient apercevoir ver 34.56 233.11 0.00 0.07 cnd:pre:3p; +apercevrais apercevoir ver 34.56 233.11 0.08 0.34 cnd:pre:1s;cnd:pre:2s; +apercevrait apercevoir ver 34.56 233.11 0.37 1.22 cnd:pre:3s; +apercevras apercevoir ver 34.56 233.11 0.35 0.27 ind:fut:2s; +apercevrez apercevoir ver 34.56 233.11 0.23 0.68 ind:fut:2p; +apercevrons apercevoir ver 34.56 233.11 0.02 0.14 ind:fut:1p; +apercevront apercevoir ver 34.56 233.11 0.61 0.47 ind:fut:3p; +aperçûmes apercevoir ver 34.56 233.11 0.12 0.81 ind:pas:1p; +aperçût apercevoir ver 34.56 233.11 0.00 1.62 sub:imp:3s; +aperçois apercevoir ver 34.56 233.11 3.82 14.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +aperçoit apercevoir ver 34.56 233.11 3.15 21.82 ind:pre:3s; +aperçoive apercevoir ver 34.56 233.11 2.42 4.05 sub:pre:1s;sub:pre:3s; +aperçoivent apercevoir ver 34.56 233.11 0.43 1.62 ind:pre:3p; +aperçoives apercevoir ver 34.56 233.11 0.34 0.14 sub:pre:2s; +aperçu apercevoir ver m s 34.56 233.11 8.28 27.23 par:pas; +aperçue apercevoir ver f s 34.56 233.11 2.77 8.58 par:pas; +aperçues apercevoir ver f p 34.56 233.11 0.04 0.88 par:pas; +aperçurent apercevoir ver 34.56 233.11 0.25 3.85 ind:pas:3p; +aperçus apercevoir ver m p 34.56 233.11 1.34 16.69 ind:pas:1s;par:pas; +aperçussent apercevoir ver 34.56 233.11 0.00 0.07 sub:imp:3p; +aperçut apercevoir ver 34.56 233.11 0.76 45.47 ind:pas:3s; +apes ape nom m p 0.23 0.14 0.00 0.07 +apesanteur apesanteur nom f s 0.93 0.81 0.93 0.81 +apeura apeurer ver 0.36 1.76 0.00 0.07 ind:pas:3s; +apeuraient apeurer ver 0.36 1.76 0.00 0.07 ind:imp:3p; +apeurait apeurer ver 0.36 1.76 0.00 0.14 ind:imp:3s; +apeure apeurer ver 0.36 1.76 0.01 0.07 ind:pre:3s; +apeurer apeurer ver 0.36 1.76 0.01 0.20 inf; +apeuré apeuré adj m s 1.31 5.68 0.69 2.36 +apeurée apeuré adj f s 1.31 5.68 0.47 1.22 +apeurées apeuré adj f p 1.31 5.68 0.01 0.34 +apeurés apeuré adj m p 1.31 5.68 0.14 1.76 +apex apex nom m 0.33 0.07 0.33 0.07 +aphaniptères aphaniptère nom m p 0.00 0.07 0.00 0.07 +aphasie aphasie nom f s 0.20 0.27 0.20 0.27 +aphasique aphasique adj s 0.03 0.47 0.02 0.27 +aphasiques aphasique adj m p 0.03 0.47 0.01 0.20 +aphone aphone adj s 0.27 1.01 0.25 0.74 +aphones aphone adj m p 0.27 1.01 0.02 0.27 +aphonie aphonie nom f s 0.00 0.14 0.00 0.14 +aphorisme aphorisme nom m s 0.04 0.88 0.02 0.14 +aphorismes aphorisme nom m p 0.04 0.88 0.02 0.74 +aphrodisiaque aphrodisiaque nom m s 1.27 0.27 1.09 0.14 +aphrodisiaques aphrodisiaque nom m p 1.27 0.27 0.17 0.14 +aphrodisie aphrodisie nom f s 0.00 0.14 0.00 0.14 +aphrodite aphrodite nom f s 0.01 0.00 0.01 0.00 +aphtes aphte nom m p 0.05 0.00 0.05 0.00 +aphteuse aphteux adj f s 0.17 0.34 0.16 0.34 +aphteux aphteux adj m 0.17 0.34 0.01 0.00 +aphérèse aphérèse nom f s 0.00 0.07 0.00 0.07 +api api nom m s 0.16 0.20 0.16 0.20 +apiculteur apiculteur nom m s 0.10 0.07 0.04 0.07 +apiculteurs apiculteur nom m p 0.10 0.07 0.02 0.00 +apicultrice apiculteur nom f s 0.10 0.07 0.04 0.00 +apiculture apiculture nom f s 0.04 0.00 0.04 0.00 +apion apion nom m s 0.00 0.07 0.00 0.07 +apis apis nom m 0.01 0.00 0.01 0.00 +apitoie apitoyer ver 2.52 6.22 0.69 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apitoiement apitoiement nom m s 0.29 0.61 0.29 0.61 +apitoient apitoyer ver 2.52 6.22 0.01 0.20 ind:pre:3p; +apitoierai apitoyer ver 2.52 6.22 0.03 0.00 ind:fut:1s; +apitoierait apitoyer ver 2.52 6.22 0.00 0.07 cnd:pre:3s; +apitoies apitoyer ver 2.52 6.22 0.14 0.00 ind:pre:2s; +apitoya apitoyer ver 2.52 6.22 0.00 0.61 ind:pas:3s; +apitoyaient apitoyer ver 2.52 6.22 0.00 0.14 ind:imp:3p; +apitoyait apitoyer ver 2.52 6.22 0.01 0.47 ind:imp:3s; +apitoyant apitoyer ver 2.52 6.22 0.07 0.27 par:pre; +apitoyer apitoyer ver 2.52 6.22 1.32 1.62 inf; +apitoyez apitoyer ver 2.52 6.22 0.08 0.00 imp:pre:2p;ind:pre:2p; +apitoyons apitoyer ver 2.52 6.22 0.01 0.14 imp:pre:1p;ind:pre:1p; +apitoyèrent apitoyer ver 2.52 6.22 0.00 0.07 ind:pas:3p; +apitoyé apitoyer ver m s 2.52 6.22 0.04 1.15 par:pas; +apitoyée apitoyer ver f s 2.52 6.22 0.01 0.61 par:pas; +apitoyées apitoyer ver f p 2.52 6.22 0.00 0.14 par:pas; +apitoyés apitoyer ver m p 2.52 6.22 0.10 0.41 par:pas; +apivore apivore adj s 0.00 0.07 0.00 0.07 +aplani aplanir ver m s 0.61 2.57 0.05 0.61 par:pas; +aplanie aplanir ver f s 0.61 2.57 0.01 0.20 par:pas; +aplanies aplanir ver f p 0.61 2.57 0.00 0.14 par:pas; +aplanir aplanir ver 0.61 2.57 0.35 0.41 inf; +aplanira aplanir ver 0.61 2.57 0.00 0.07 ind:fut:3s; +aplaniront aplanir ver 0.61 2.57 0.00 0.14 ind:fut:3p; +aplanis aplanir ver 0.61 2.57 0.01 0.07 imp:pre:2s;ind:pre:1s; +aplanissaient aplanir ver 0.61 2.57 0.00 0.20 ind:imp:3p; +aplanissait aplanir ver 0.61 2.57 0.01 0.47 ind:imp:3s; +aplanissant aplanir ver 0.61 2.57 0.01 0.14 par:pre; +aplanissement aplanissement nom m s 0.01 0.34 0.01 0.34 +aplanissez aplanir ver 0.61 2.57 0.14 0.00 imp:pre:2p; +aplanissons aplanir ver 0.61 2.57 0.00 0.07 imp:pre:1p; +aplanit aplanir ver 0.61 2.57 0.01 0.07 ind:pre:3s; +aplasie aplasie nom f s 0.01 0.00 0.01 0.00 +aplat aplat nom m s 0.01 0.27 0.00 0.07 +aplati aplatir ver m s 1.91 14.53 0.32 2.77 par:pas; +aplatie aplatir ver f s 1.91 14.53 0.21 1.28 par:pas; +aplaties aplatir ver f p 1.91 14.53 0.02 0.47 par:pas; +aplatir aplatir ver 1.91 14.53 0.67 2.30 inf; +aplatirais aplatir ver 1.91 14.53 0.02 0.00 cnd:pre:1s; +aplatirait aplatir ver 1.91 14.53 0.02 0.07 cnd:pre:3s; +aplatirent aplatir ver 1.91 14.53 0.00 0.20 ind:pas:3p; +aplatirez aplatir ver 1.91 14.53 0.00 0.07 ind:fut:2p; +aplatis aplatir ver m p 1.91 14.53 0.34 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +aplatissaient aplatir ver 1.91 14.53 0.01 0.20 ind:imp:3p; +aplatissais aplatir ver 1.91 14.53 0.00 0.14 ind:imp:1s; +aplatissait aplatir ver 1.91 14.53 0.00 0.81 ind:imp:3s; +aplatissant aplatir ver 1.91 14.53 0.00 0.95 par:pre; +aplatisse aplatir ver 1.91 14.53 0.03 0.14 sub:pre:1s;sub:pre:3s; +aplatissement aplatissement nom m s 0.03 0.54 0.03 0.41 +aplatissements aplatissement nom m p 0.03 0.54 0.00 0.14 +aplatissent aplatir ver 1.91 14.53 0.02 0.54 ind:pre:3p; +aplatissez aplatir ver 1.91 14.53 0.06 0.07 imp:pre:2p;ind:pre:2p; +aplatit aplatir ver 1.91 14.53 0.19 2.84 ind:pre:3s;ind:pas:3s; +aplats aplat nom m p 0.01 0.27 0.01 0.20 +aplomb aplomb nom m s 1.61 9.05 1.61 8.99 +aplombs aplomb nom m p 1.61 9.05 0.00 0.07 +apnée apnée nom f s 0.60 0.27 0.60 0.27 +apocalypse apocalypse nom f s 4.87 6.35 4.85 6.01 +apocalypses apocalypse nom f p 4.87 6.35 0.03 0.34 +apocalyptique apocalyptique adj s 0.58 1.76 0.38 1.01 +apocalyptiques apocalyptique adj p 0.58 1.76 0.20 0.74 +apocope apocope nom f s 0.01 0.00 0.01 0.00 +apocryphe apocryphe adj s 0.01 0.27 0.01 0.14 +apocryphes apocryphe nom m p 0.04 0.14 0.03 0.00 +apodictique apodictique adj f s 0.00 0.07 0.00 0.07 +apogée apogée nom m s 1.40 1.76 1.40 1.76 +apâli apâlir ver m s 0.00 0.14 0.00 0.07 par:pas; +apâlis apâlir ver m p 0.00 0.14 0.00 0.07 par:pas; +apolitique apolitique adj m s 0.60 0.20 0.58 0.14 +apolitiques apolitique nom p 0.20 0.07 0.10 0.07 +apolitisme apolitisme nom m s 0.00 0.07 0.00 0.07 +apollon apollon nom m s 0.04 0.14 0.04 0.00 +apollons apollon nom m p 0.04 0.14 0.01 0.14 +apologie apologie nom f s 0.17 1.22 0.17 1.22 +apologiste apologiste nom s 0.02 0.20 0.01 0.14 +apologistes apologiste nom p 0.02 0.20 0.01 0.07 +apologue apologue nom m s 0.00 0.61 0.00 0.61 +apologétique apologétique nom s 0.00 0.47 0.00 0.47 +apologétiques apologétique adj m p 0.00 0.14 0.00 0.07 +aponévroses aponévrose nom f p 0.01 0.07 0.01 0.07 +aponévrotique aponévrotique adj f s 0.01 0.00 0.01 0.00 +apophtegmes apophtegme nom m p 0.00 0.20 0.00 0.20 +apoplectique apoplectique adj s 0.15 0.88 0.14 0.88 +apoplectiques apoplectique adj p 0.15 0.88 0.01 0.00 +apoplexie apoplexie nom f s 0.33 0.95 0.33 0.88 +apoplexies apoplexie nom f p 0.33 0.95 0.00 0.07 +apoptose apoptose nom f s 0.03 0.00 0.03 0.00 +apostasie apostasie nom f s 0.01 0.41 0.01 0.41 +apostasié apostasier ver m s 0.00 0.07 0.00 0.07 par:pas; +apostat apostat nom m s 0.46 0.27 0.25 0.20 +apostate apostat nom f s 0.46 0.27 0.00 0.07 +apostats apostat nom m p 0.46 0.27 0.21 0.00 +apostillée apostiller ver f s 0.00 0.07 0.00 0.07 par:pas; +apostolat apostolat nom m s 0.10 1.08 0.10 1.08 +apostolique apostolique adj s 0.72 1.96 0.72 1.89 +apostoliques apostolique adj f p 0.72 1.96 0.00 0.07 +apostropha apostropher ver 0.05 3.31 0.00 0.68 ind:pas:3s; +apostrophaient apostropher ver 0.05 3.31 0.00 0.20 ind:imp:3p; +apostrophait apostropher ver 0.05 3.31 0.00 0.61 ind:imp:3s; +apostrophant apostropher ver 0.05 3.31 0.00 0.34 par:pre; +apostrophe apostrophe nom f s 0.15 1.76 0.15 1.15 +apostrophent apostropher ver 0.05 3.31 0.00 0.14 ind:pre:3p; +apostropher apostropher ver 0.05 3.31 0.01 0.27 inf; +apostrophes apostrophe nom f p 0.15 1.76 0.00 0.61 +apostrophèrent apostropher ver 0.05 3.31 0.00 0.07 ind:pas:3p; +apostrophé apostropher ver m s 0.05 3.31 0.00 0.34 par:pas; +apostrophée apostropher ver f s 0.05 3.31 0.00 0.20 par:pas; +apostées aposter ver f p 0.00 0.07 0.00 0.07 par:pas; +apostume apostume nom m s 0.00 0.07 0.00 0.07 +apothicaire apothicaire nom m s 0.32 1.28 0.32 1.15 +apothicairerie apothicairerie nom f s 0.00 0.07 0.00 0.07 +apothicaires apothicaire nom m p 0.32 1.28 0.00 0.14 +apothéose apothéose nom f s 0.49 4.26 0.49 4.12 +apothéoses apothéose nom f p 0.49 4.26 0.00 0.14 +apparût apparaître ver 43.78 159.26 0.01 0.74 sub:imp:3s; +apparaît apparaître ver 43.78 159.26 11.14 27.91 ind:pre:3s; +apparaîtra apparaître ver 43.78 159.26 1.77 1.08 ind:fut:3s; +apparaîtrai apparaître ver 43.78 159.26 0.03 0.07 ind:fut:1s; +apparaîtraient apparaître ver 43.78 159.26 0.02 0.20 cnd:pre:3p; +apparaîtrais apparaître ver 43.78 159.26 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +apparaîtrait apparaître ver 43.78 159.26 0.31 1.35 cnd:pre:3s; +apparaîtras apparaître ver 43.78 159.26 0.02 0.07 ind:fut:2s; +apparaître apparaître ver 43.78 159.26 6.30 24.46 inf; +apparaîtrez apparaître ver 43.78 159.26 0.03 0.07 ind:fut:2p; +apparaîtrions apparaître ver 43.78 159.26 0.01 0.07 cnd:pre:1p; +apparaîtrons apparaître ver 43.78 159.26 0.01 0.20 ind:fut:1p; +apparaîtront apparaître ver 43.78 159.26 0.41 0.61 ind:fut:3p; +apparais apparaître ver 43.78 159.26 0.90 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +apparaissaient apparaître ver 43.78 159.26 0.32 8.51 ind:imp:3p; +apparaissais apparaître ver 43.78 159.26 0.03 0.34 ind:imp:1s;ind:imp:2s; +apparaissait apparaître ver 43.78 159.26 1.06 27.09 ind:imp:3s; +apparaissant apparaître ver 43.78 159.26 0.27 2.43 par:pre; +apparaisse apparaître ver 43.78 159.26 0.93 2.03 sub:pre:1s;sub:pre:3s; +apparaissent apparaître ver 43.78 159.26 3.89 7.97 ind:pre:3p; +apparaissez apparaître ver 43.78 159.26 0.38 0.27 imp:pre:2p;ind:pre:2p; +apparaissiez apparaître ver 43.78 159.26 0.05 0.14 ind:imp:2p; +apparaissions apparaître ver 43.78 159.26 0.00 0.07 ind:imp:1p; +apparaissons apparaître ver 43.78 159.26 0.05 0.07 imp:pre:1p;ind:pre:1p; +apparat apparat nom m s 0.51 4.86 0.51 4.80 +apparatchik apparatchik nom m s 0.01 0.34 0.01 0.27 +apparatchiks apparatchik nom m p 0.01 0.34 0.00 0.07 +apparats apparat nom m p 0.51 4.86 0.00 0.07 +apparaux apparaux nom m p 0.00 0.20 0.00 0.20 +appareil_photo appareil_photo nom m s 0.32 0.27 0.32 0.27 +appareil appareil nom m s 51.53 44.66 44.20 35.88 +appareilla appareiller ver 1.24 2.97 0.00 0.34 ind:pas:3s; +appareillage appareillage nom m s 0.29 1.89 0.29 1.62 +appareillages appareillage nom m p 0.29 1.89 0.00 0.27 +appareillaient appareiller ver 1.24 2.97 0.00 0.07 ind:imp:3p; +appareillait appareiller ver 1.24 2.97 0.00 0.41 ind:imp:3s; +appareillant appareiller ver 1.24 2.97 0.00 0.14 par:pre; +appareille appareiller ver 1.24 2.97 0.22 0.27 ind:pre:1s;ind:pre:3s; +appareillent appareiller ver 1.24 2.97 0.01 0.07 ind:pre:3p; +appareiller appareiller ver 1.24 2.97 0.51 0.81 inf; +appareilleraient appareiller ver 1.24 2.97 0.00 0.07 cnd:pre:3p; +appareillez appareiller ver 1.24 2.97 0.06 0.00 imp:pre:2p; +appareillions appareiller ver 1.24 2.97 0.00 0.07 ind:imp:1p; +appareillons appareiller ver 1.24 2.97 0.40 0.14 imp:pre:1p;ind:pre:1p; +appareillé appareiller ver m s 1.24 2.97 0.04 0.41 par:pas; +appareillés appareiller ver m p 1.24 2.97 0.01 0.20 par:pas; +appareils appareil nom m p 51.53 44.66 7.34 8.78 +apparemment apparemment adv 43.08 29.53 43.08 29.53 +apparence apparence nom f s 17.64 48.51 11.85 34.32 +apparences apparence nom f p 17.64 48.51 5.79 14.19 +apparent apparent adj m s 2.88 19.32 1.08 4.86 +apparentaient apparenter ver 0.77 4.86 0.01 0.54 ind:imp:3p; +apparentait apparenter ver 0.77 4.86 0.02 0.74 ind:imp:3s; +apparentant apparenter ver 0.77 4.86 0.01 0.27 par:pre; +apparente apparent adj f s 2.88 19.32 1.35 10.34 +apparentement apparentement nom m s 0.03 0.07 0.03 0.07 +apparentent apparenter ver 0.77 4.86 0.03 0.41 ind:pre:3p; +apparenter apparenter ver 0.77 4.86 0.03 0.34 inf; +apparentes apparent adj f p 2.88 19.32 0.18 2.30 +apparents apparent adj m p 2.88 19.32 0.27 1.82 +apparenté apparenter ver m s 0.77 4.86 0.27 0.74 par:pas; +apparentée apparenter ver f s 0.77 4.86 0.05 0.47 par:pas; +apparentés apparenter ver m p 0.77 4.86 0.13 0.14 par:pas; +appariait apparier ver 0.19 0.81 0.00 0.14 ind:imp:3s; +appariant apparier ver 0.19 0.81 0.00 0.14 par:pre; +apparie apparier ver 0.19 0.81 0.00 0.07 ind:pre:3s; +apparier apparier ver 0.19 0.81 0.00 0.07 inf; +appariteur appariteur nom m s 0.28 0.61 0.28 0.34 +appariteurs appariteur nom m p 0.28 0.61 0.00 0.27 +apparition apparition nom f s 8.02 32.64 6.93 28.65 +apparitions apparition nom f p 8.02 32.64 1.08 3.99 +apparié apparier ver m s 0.19 0.81 0.01 0.07 par:pas; +appariée apparier ver f s 0.19 0.81 0.00 0.07 par:pas; +appariées apparier ver f p 0.19 0.81 0.00 0.14 par:pas; +appariés apparier ver m p 0.19 0.81 0.18 0.14 par:pas; +appart appart nom m s 18.07 2.03 17.48 1.96 +appartînt appartenir ver 80.57 92.36 0.00 0.74 sub:imp:3s; +appartement_roi appartement_roi nom m s 0.00 0.07 0.00 0.07 +appartement appartement nom m s 76.33 99.26 69.77 86.01 +appartements appartement nom m p 76.33 99.26 6.56 13.24 +appartenaient appartenir ver 80.57 92.36 2.26 9.05 ind:imp:3p; +appartenais appartenir ver 80.57 92.36 0.86 1.96 ind:imp:1s;ind:imp:2s; +appartenait appartenir ver 80.57 92.36 8.89 24.19 ind:imp:3s; +appartenance appartenance nom f s 1.83 3.45 1.82 3.24 +appartenances appartenance nom f p 1.83 3.45 0.01 0.20 +appartenant appartenir ver 80.57 92.36 2.90 5.47 par:pre; +appartenez appartenir ver 80.57 92.36 0.89 0.74 imp:pre:2p;ind:pre:2p; +apparteniez appartenir ver 80.57 92.36 0.19 0.14 ind:imp:2p; +appartenions appartenir ver 80.57 92.36 0.04 0.68 ind:imp:1p; +appartenir appartenir ver 80.57 92.36 3.74 9.12 inf; +appartenons appartenir ver 80.57 92.36 0.71 0.81 imp:pre:1p;ind:pre:1p; +appartenu appartenir ver m s 80.57 92.36 2.23 4.66 par:pas; +appartenues appartenir ver f p 80.57 92.36 0.01 0.00 par:pas; +appartiendra appartenir ver 80.57 92.36 1.23 1.01 ind:fut:3s; +appartiendrai appartenir ver 80.57 92.36 0.02 0.14 ind:fut:1s; +appartiendraient appartenir ver 80.57 92.36 0.22 0.47 cnd:pre:3p; +appartiendrais appartenir ver 80.57 92.36 0.00 0.14 cnd:pre:1s;cnd:pre:2s; +appartiendrait appartenir ver 80.57 92.36 0.36 1.42 cnd:pre:3s; +appartiendras appartenir ver 80.57 92.36 0.12 0.00 ind:fut:2s; +appartiendrons appartenir ver 80.57 92.36 0.01 0.00 ind:fut:1p; +appartiendront appartenir ver 80.57 92.36 0.07 0.07 ind:fut:3p; +appartienne appartenir ver 80.57 92.36 0.63 0.74 sub:pre:1s;sub:pre:3s; +appartiennent appartenir ver 80.57 92.36 6.86 6.76 ind:pre:3p; +appartiens appartenir ver 80.57 92.36 7.37 2.84 imp:pre:2s;ind:pre:1s;ind:pre:2s; +appartient appartenir ver 80.57 92.36 40.94 20.27 ind:pre:3s; +appartins appartenir ver 80.57 92.36 0.00 0.07 ind:pas:1s; +appartinssent appartenir ver 80.57 92.36 0.00 0.14 sub:imp:3p; +appartint appartenir ver 80.57 92.36 0.00 0.74 ind:pas:3s; +apparts appart nom m p 18.07 2.03 0.59 0.07 +apparu apparaître ver m s 43.78 159.26 6.43 9.12 par:pas; +apparue apparaître ver f s 43.78 159.26 4.21 6.55 par:pas; +apparues apparaître ver f p 43.78 159.26 0.81 1.15 par:pas; +apparurent apparaître ver 43.78 159.26 0.52 5.95 ind:pas:3p; +apparus apparaître ver m p 43.78 159.26 1.74 2.09 ind:pas:1s;par:pas; +apparussent apparaître ver 43.78 159.26 0.00 0.14 sub:imp:3p; +apparut apparaître ver 43.78 159.26 2.10 28.04 ind:pas:3s; +appas appas nom m p 0.40 0.95 0.40 0.95 +appauvri appauvrir ver m s 0.56 1.89 0.20 0.41 par:pas; +appauvrie appauvrir ver f s 0.56 1.89 0.12 0.41 par:pas; +appauvries appauvrir ver f p 0.56 1.89 0.03 0.07 par:pas; +appauvrir appauvrir ver 0.56 1.89 0.14 0.27 inf; +appauvris appauvrir ver m p 0.56 1.89 0.03 0.20 par:pas; +appauvrissaient appauvrir ver 0.56 1.89 0.00 0.14 ind:imp:3p; +appauvrissait appauvrir ver 0.56 1.89 0.00 0.07 ind:imp:3s; +appauvrissant appauvrissant adj m s 0.00 0.20 0.00 0.14 +appauvrissante appauvrissant adj f s 0.00 0.20 0.00 0.07 +appauvrissement appauvrissement nom m s 0.00 0.74 0.00 0.74 +appauvrissez appauvrir ver 0.56 1.89 0.02 0.07 imp:pre:2p;ind:pre:2p; +appauvrissions appauvrir ver 0.56 1.89 0.00 0.07 ind:imp:1p; +appauvrissons appauvrir ver 0.56 1.89 0.00 0.07 imp:pre:1p; +appauvrit appauvrir ver 0.56 1.89 0.03 0.14 ind:pre:3s;ind:pas:3s; +appeau appeau nom m s 0.08 0.41 0.06 0.27 +appeaux appeau nom m p 0.08 0.41 0.02 0.14 +appel appel nom m s 100.18 73.45 80.88 56.69 +appela appeler ver 1165.45 465.34 1.67 24.26 ind:pas:3s; +appelai appeler ver 1165.45 465.34 0.14 3.92 ind:pas:1s; +appelaient appeler ver 1165.45 465.34 4.61 14.93 ind:imp:3p; +appelais appeler ver 1165.45 465.34 8.02 6.62 ind:imp:1s;ind:imp:2s; +appelait appeler ver 1165.45 465.34 47.44 104.59 ind:imp:3s; +appelant appeler ver 1165.45 465.34 2.40 7.16 par:pre; +appelants appelant nom m p 0.42 0.54 0.10 0.07 +appeler appeler ver 1165.45 465.34 192.66 63.92 ind:imp:3s;inf; +appeleur appeleur nom m s 0.00 0.07 0.00 0.07 +appelez appeler ver 1165.45 465.34 95.78 11.42 imp:pre:2p;ind:pre:2p; +appeliez appeler ver 1165.45 465.34 2.53 0.81 ind:imp:2p;sub:pre:2p; +appelions appeler ver 1165.45 465.34 0.70 3.38 ind:imp:1p; +appellation appellation nom f s 0.36 3.31 0.28 2.43 +appellations appellation nom f p 0.36 3.31 0.08 0.88 +appelle appeler ver 1165.45 465.34 485.77 132.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +appellent appeler ver 1165.45 465.34 23.89 16.01 ind:pre:3p; +appellera appeler ver 1165.45 465.34 9.29 2.50 ind:fut:3s; +appellerai appeler ver 1165.45 465.34 20.71 3.58 ind:fut:1s; +appelleraient appeler ver 1165.45 465.34 0.38 0.34 cnd:pre:3p; +appellerais appeler ver 1165.45 465.34 4.08 0.61 cnd:pre:1s;cnd:pre:2s; +appellerait appeler ver 1165.45 465.34 2.66 3.85 cnd:pre:3s; +appelleras appeler ver 1165.45 465.34 2.66 0.81 ind:fut:2s; +appellerez appeler ver 1165.45 465.34 1.30 0.20 ind:fut:2p; +appelleriez appeler ver 1165.45 465.34 0.77 0.20 cnd:pre:2p; +appellerions appeler ver 1165.45 465.34 0.10 0.14 cnd:pre:1p; +appellerons appeler ver 1165.45 465.34 0.88 0.54 ind:fut:1p; +appelleront appeler ver 1165.45 465.34 1.59 0.47 ind:fut:3p; +appelles appeler ver 1165.45 465.34 67.07 8.72 ind:pre:2s;sub:pre:2s; +appelons appeler ver 1165.45 465.34 8.38 5.68 imp:pre:1p;ind:pre:1p; +appelât appeler ver 1165.45 465.34 0.01 1.28 sub:imp:3s; +appels appel nom m p 100.18 73.45 19.30 16.76 +appelèrent appeler ver 1165.45 465.34 0.17 1.49 ind:pas:3p; +appelé appeler ver m s 1165.45 465.34 144.29 30.61 par:pas; +appelée appeler ver f s 1165.45 465.34 27.50 9.12 par:pas; +appelées appeler ver f p 1165.45 465.34 0.95 2.03 par:pas; +appelés appeler ver m p 1165.45 465.34 7.04 3.78 par:pas; +appendait appendre ver 0.04 0.41 0.00 0.07 ind:imp:3s; +appendice appendice nom m s 1.59 1.96 1.50 1.35 +appendicectomie appendicectomie nom f s 0.25 0.00 0.25 0.00 +appendices appendice nom m p 1.59 1.96 0.09 0.61 +appendicite appendicite nom f s 1.75 1.08 1.75 1.08 +appendrait appendre ver 0.04 0.41 0.00 0.07 cnd:pre:3s; +appendre appendre ver 0.04 0.41 0.03 0.07 inf; +appends appendre ver 0.04 0.41 0.01 0.00 imp:pre:2s; +appendu appendre ver m s 0.04 0.41 0.00 0.07 par:pas; +appendues appendre ver f p 0.04 0.41 0.00 0.07 par:pas; +appendus appendre ver m p 0.04 0.41 0.00 0.07 par:pas; +appentis appentis nom m 0.08 2.64 0.08 2.64 +appert appert ver 0.00 0.14 0.00 0.14 inf; +appesanti appesantir ver m s 0.02 3.04 0.00 0.27 par:pas; +appesantie appesantir ver f s 0.02 3.04 0.00 0.41 par:pas; +appesanties appesantir ver f p 0.02 3.04 0.00 0.14 par:pas; +appesantir appesantir ver 0.02 3.04 0.01 0.61 inf; +appesantis appesantir ver m p 0.02 3.04 0.00 0.20 ind:pre:1s;par:pas; +appesantissais appesantir ver 0.02 3.04 0.01 0.07 ind:imp:1s; +appesantissait appesantir ver 0.02 3.04 0.00 0.61 ind:imp:3s; +appesantissant appesantir ver 0.02 3.04 0.00 0.07 par:pre; +appesantissement appesantissement nom m s 0.00 0.07 0.00 0.07 +appesantit appesantir ver 0.02 3.04 0.00 0.68 ind:pre:3s;ind:pas:3s; +applaudîmes applaudir ver 15.82 17.97 0.00 0.07 ind:pas:1p; +applaudît applaudir ver 15.82 17.97 0.00 0.07 sub:imp:3s; +applaudi applaudir ver m s 15.82 17.97 1.56 2.03 par:pas; +applaudie applaudir ver f s 15.82 17.97 0.15 0.27 par:pas; +applaudies applaudir ver f p 15.82 17.97 0.01 0.20 par:pas; +applaudimètre applaudimètre nom m s 0.02 0.00 0.02 0.00 +applaudir applaudir ver 15.82 17.97 3.16 4.46 inf; +applaudira applaudir ver 15.82 17.97 0.07 0.07 ind:fut:3s; +applaudirai applaudir ver 15.82 17.97 0.25 0.00 ind:fut:1s; +applaudiraient applaudir ver 15.82 17.97 0.02 0.14 cnd:pre:3p; +applaudirais applaudir ver 15.82 17.97 0.17 0.07 cnd:pre:1s; +applaudirait applaudir ver 15.82 17.97 0.03 0.07 cnd:pre:3s; +applaudirent applaudir ver 15.82 17.97 0.00 0.61 ind:pas:3p; +applaudirez applaudir ver 15.82 17.97 0.02 0.07 ind:fut:2p; +applaudirons applaudir ver 15.82 17.97 0.02 0.00 ind:fut:1p; +applaudis applaudir ver m p 15.82 17.97 0.60 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +applaudissaient applaudir ver 15.82 17.97 0.27 1.15 ind:imp:3p; +applaudissais applaudir ver 15.82 17.97 0.22 0.14 ind:imp:1s;ind:imp:2s; +applaudissait applaudir ver 15.82 17.97 0.49 2.16 ind:imp:3s; +applaudissant applaudir ver 15.82 17.97 0.20 0.14 par:pre; +applaudisse applaudir ver 15.82 17.97 0.10 0.00 sub:pre:1s;sub:pre:3s; +applaudissement applaudissement nom m s 7.04 9.26 0.50 0.34 +applaudissements applaudissement nom m p 7.04 9.26 6.54 8.92 +applaudissent applaudir ver 15.82 17.97 0.47 0.95 ind:pre:3p;sub:imp:3p; +applaudisseur applaudisseur nom m s 0.01 0.00 0.01 0.00 +applaudissez applaudir ver 15.82 17.97 2.75 0.07 imp:pre:2p;ind:pre:2p; +applaudissiez applaudir ver 15.82 17.97 0.02 0.00 ind:imp:2p; +applaudissions applaudir ver 15.82 17.97 0.00 0.07 ind:imp:1p; +applaudissons applaudir ver 15.82 17.97 0.89 0.07 imp:pre:1p;ind:pre:1p; +applaudit applaudir ver 15.82 17.97 4.37 3.99 ind:pre:3s;ind:pas:3s; +applicabilité applicabilité nom f s 0.02 0.00 0.02 0.00 +applicable applicable adj s 0.30 1.01 0.14 0.61 +applicables applicable adj p 0.30 1.01 0.16 0.41 +applicateur applicateur nom m s 0.28 0.00 0.28 0.00 +application application nom f s 2.81 15.88 2.10 15.34 +applications application nom f p 2.81 15.88 0.70 0.54 +appliqua appliquer ver 17.89 47.84 0.01 3.11 ind:pas:3s; +appliquai appliquer ver 17.89 47.84 0.01 1.01 ind:pas:1s; +appliquaient appliquer ver 17.89 47.84 0.04 1.22 ind:imp:3p; +appliquais appliquer ver 17.89 47.84 0.46 1.35 ind:imp:1s;ind:imp:2s; +appliquait appliquer ver 17.89 47.84 0.14 7.09 ind:imp:3s; +appliquant appliquer ver 17.89 47.84 0.16 4.26 par:pre; +appliquasse appliquer ver 17.89 47.84 0.00 0.07 sub:imp:1s; +appliquassions appliquer ver 17.89 47.84 0.00 0.07 sub:imp:1p; +applique appliquer ver 17.89 47.84 5.85 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +appliquent appliquer ver 17.89 47.84 1.23 1.62 ind:pre:3p; +appliquer appliquer ver 17.89 47.84 4.77 10.61 inf; +appliquera appliquer ver 17.89 47.84 0.09 0.34 ind:fut:3s; +appliquerai appliquer ver 17.89 47.84 0.23 0.14 ind:fut:1s; +appliquerais appliquer ver 17.89 47.84 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +appliquerait appliquer ver 17.89 47.84 0.04 0.27 cnd:pre:3s; +appliqueras appliquer ver 17.89 47.84 0.00 0.07 ind:fut:2s; +appliquerez appliquer ver 17.89 47.84 0.12 0.00 ind:fut:2p; +appliquerons appliquer ver 17.89 47.84 0.02 0.07 ind:fut:1p; +appliques appliquer ver 17.89 47.84 0.50 0.14 ind:pre:2s; +appliquez appliquer ver 17.89 47.84 0.86 0.00 imp:pre:2p;ind:pre:2p; +appliquions appliquer ver 17.89 47.84 0.00 0.07 ind:imp:1p; +appliquons appliquer ver 17.89 47.84 0.14 0.07 imp:pre:1p;ind:pre:1p; +appliquât appliquer ver 17.89 47.84 0.00 0.41 sub:imp:3s; +appliquèrent appliquer ver 17.89 47.84 0.00 0.54 ind:pas:3p; +appliqué appliquer ver m s 17.89 47.84 1.85 5.07 par:pas; +appliquée appliquer ver f s 17.89 47.84 0.91 2.43 par:pas; +appliquées appliquer ver f p 17.89 47.84 0.26 1.08 par:pas; +appliqués appliqué adj m p 0.59 6.01 0.08 0.74 +appoggiature appoggiature nom f s 0.01 0.07 0.01 0.00 +appoggiatures appoggiature nom f p 0.01 0.07 0.00 0.07 +appoint appoint nom m s 0.35 1.76 0.35 1.76 +appointaient appointer ver 0.02 0.74 0.00 0.07 ind:imp:3p; +appointait appointer ver 0.02 0.74 0.00 0.07 ind:imp:3s; +appointe appointer ver 0.02 0.74 0.00 0.14 ind:pre:3s; +appointements appointement nom m p 0.03 0.74 0.03 0.74 +appointer appointer ver 0.02 0.74 0.00 0.07 inf; +appointé appointé adj m s 0.02 0.34 0.02 0.07 +appointée appointer ver f s 0.02 0.74 0.00 0.27 par:pas; +appointés appointer ver m p 0.02 0.74 0.01 0.00 par:pas; +appontage appontage nom m s 0.20 0.00 0.20 0.00 +appontement appontement nom m s 0.05 0.47 0.05 0.47 +apponter apponter ver 0.09 0.00 0.09 0.00 inf; +apport apport nom m s 1.80 1.82 1.63 1.35 +apporta apporter ver 209.89 159.32 0.93 16.82 ind:pas:3s; +apportai apporter ver 209.89 159.32 0.02 1.08 ind:pas:1s; +apportaient apporter ver 209.89 159.32 0.53 5.61 ind:imp:3p; +apportais apporter ver 209.89 159.32 1.78 2.09 ind:imp:1s;ind:imp:2s; +apportait apporter ver 209.89 159.32 3.24 24.86 ind:imp:3s; +apportant apporter ver 209.89 159.32 0.81 5.88 par:pre; +apportas apporter ver 209.89 159.32 0.00 0.07 ind:pas:2s; +apporte apporter ver 209.89 159.32 65.97 22.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +apportent apporter ver 209.89 159.32 3.04 4.12 ind:pre:3p; +apporter apporter ver 209.89 159.32 34.40 29.53 inf;; +apportera apporter ver 209.89 159.32 4.78 1.28 ind:fut:3s; +apporterai apporter ver 209.89 159.32 6.29 1.49 ind:fut:1s; +apporteraient apporter ver 209.89 159.32 0.14 0.41 cnd:pre:3p; +apporterais apporter ver 209.89 159.32 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +apporterait apporter ver 209.89 159.32 0.81 2.09 cnd:pre:3s; +apporteras apporter ver 209.89 159.32 0.69 0.54 ind:fut:2s; +apporterez apporter ver 209.89 159.32 0.41 0.20 ind:fut:2p; +apporteriez apporter ver 209.89 159.32 0.22 0.07 cnd:pre:2p; +apporterons apporter ver 209.89 159.32 0.32 0.00 ind:fut:1p; +apporteront apporter ver 209.89 159.32 0.68 0.07 ind:fut:3p; +apportes apporter ver 209.89 159.32 5.41 0.88 ind:pre:2s; +apportez apporter ver 209.89 159.32 18.50 1.69 imp:pre:2p;ind:pre:2p; +apportiez apporter ver 209.89 159.32 0.33 0.07 ind:imp:2p; +apportions apporter ver 209.89 159.32 0.01 0.47 ind:imp:1p; +apportons apporter ver 209.89 159.32 1.04 0.41 imp:pre:1p;ind:pre:1p; +apportât apporter ver 209.89 159.32 0.00 0.54 sub:imp:3s; +apports apport nom m p 1.80 1.82 0.17 0.47 +apportèrent apporter ver 209.89 159.32 0.03 1.42 ind:pas:3p; +apporté apporter ver m s 209.89 159.32 54.44 24.53 par:pas; +apportée apporter ver f s 209.89 159.32 2.49 3.38 par:pas; +apportées apporter ver f p 209.89 159.32 1.27 2.43 par:pas; +apportés apporter ver m p 209.89 159.32 0.99 4.19 par:pas; +apposa apposer ver 0.95 3.04 0.01 0.27 ind:pas:3s; +apposai apposer ver 0.95 3.04 0.00 0.07 ind:pas:1s; +apposait apposer ver 0.95 3.04 0.01 0.14 ind:imp:3s; +apposant apposer ver 0.95 3.04 0.01 0.00 par:pre; +appose apposer ver 0.95 3.04 0.40 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apposent apposer ver 0.95 3.04 0.00 0.07 ind:pre:3p; +apposer apposer ver 0.95 3.04 0.28 0.81 inf; +apposerait apposer ver 0.95 3.04 0.00 0.14 cnd:pre:3s; +apposeras apposer ver 0.95 3.04 0.01 0.00 ind:fut:2s; +apposez apposer ver 0.95 3.04 0.04 0.00 imp:pre:2p; +apposition apposition nom f s 0.01 0.14 0.01 0.14 +apposé apposer ver m s 0.95 3.04 0.04 0.54 par:pas; +apposée apposer ver f s 0.95 3.04 0.00 0.34 par:pas; +apposées apposer ver f p 0.95 3.04 0.00 0.34 par:pas; +apposés apposer ver m p 0.95 3.04 0.14 0.20 par:pas; +appât appât nom m s 6.74 3.92 5.97 3.24 +appâtais appâter ver 1.59 1.55 0.01 0.07 ind:imp:1s; +appâtant appâter ver 1.59 1.55 0.01 0.07 par:pre; +appâte appâter ver 1.59 1.55 0.14 0.00 ind:pre:1s;ind:pre:3s; +appâtent appâter ver 1.59 1.55 0.02 0.07 ind:pre:3p; +appâter appâter ver 1.59 1.55 0.92 0.68 inf; +appâtera appâter ver 1.59 1.55 0.01 0.00 ind:fut:3s; +appâterait appâter ver 1.59 1.55 0.00 0.07 cnd:pre:3s; +appâtes appâter ver 1.59 1.55 0.02 0.00 ind:pre:2s; +appâtez appâter ver 1.59 1.55 0.02 0.00 imp:pre:2p;ind:pre:2p; +appâtons appâter ver 1.59 1.55 0.01 0.00 imp:pre:1p; +appâts appât nom m p 6.74 3.92 0.77 0.68 +appâté appâter ver m s 1.59 1.55 0.31 0.41 par:pas; +appâtée appâter ver f s 1.59 1.55 0.00 0.14 par:pas; +appâtées appâter ver f p 1.59 1.55 0.00 0.07 par:pas; +appâtés appâter ver m p 1.59 1.55 0.11 0.00 par:pas; +apprîmes apprendre ver 348.45 286.69 0.04 1.08 ind:pas:1p; +apprît apprendre ver 348.45 286.69 0.01 0.81 sub:imp:3s; +apprenaient apprendre ver 348.45 286.69 0.74 2.43 ind:imp:3p; +apprenais apprendre ver 348.45 286.69 1.61 5.47 ind:imp:1s;ind:imp:2s; +apprenait apprendre ver 348.45 286.69 3.27 11.76 ind:imp:3s; +apprenant apprendre ver 348.45 286.69 2.88 7.23 par:pre; +apprend apprendre ver 348.45 286.69 27.11 17.16 ind:pre:3s; +apprendra apprendre ver 348.45 286.69 11.14 5.07 ind:fut:3s; +apprendrai apprendre ver 348.45 286.69 7.16 3.58 ind:fut:1s; +apprendraient apprendre ver 348.45 286.69 0.05 0.88 cnd:pre:3p; +apprendrais apprendre ver 348.45 286.69 1.36 1.28 cnd:pre:1s;cnd:pre:2s; +apprendrait apprendre ver 348.45 286.69 0.77 3.78 cnd:pre:3s; +apprendras apprendre ver 348.45 286.69 6.43 1.49 ind:fut:2s; +apprendre apprendre ver 348.45 286.69 101.75 71.22 inf; +apprendrez apprendre ver 348.45 286.69 3.35 0.74 ind:fut:2p; +apprendriez apprendre ver 348.45 286.69 0.10 0.27 cnd:pre:2p; +apprendrions apprendre ver 348.45 286.69 0.00 0.27 cnd:pre:1p; +apprendrons apprendre ver 348.45 286.69 0.63 0.68 ind:fut:1p; +apprendront apprendre ver 348.45 286.69 1.38 1.08 ind:fut:3p; +apprends apprendre ver 348.45 286.69 27.50 8.38 imp:pre:2s;ind:pre:1s;ind:pre:2s; +apprenez apprendre ver 348.45 286.69 7.34 2.23 imp:pre:2p;ind:pre:2p; +appreniez apprendre ver 348.45 286.69 0.72 0.41 ind:imp:2p;sub:pre:2p; +apprenions apprendre ver 348.45 286.69 0.09 1.76 ind:imp:1p; +apprenne apprendre ver 348.45 286.69 6.25 4.19 sub:pre:1s;sub:pre:3s; +apprennent apprendre ver 348.45 286.69 7.79 4.66 ind:pre:3p; +apprennes apprendre ver 348.45 286.69 2.51 0.88 sub:pre:2s; +apprenons apprendre ver 348.45 286.69 1.39 0.68 imp:pre:1p;ind:pre:1p; +apprenti_pilote apprenti_pilote nom m s 0.02 0.00 0.02 0.00 +apprenti_sorcier apprenti_sorcier nom m s 0.00 0.14 0.00 0.14 +apprenti apprenti nom m s 2.52 17.64 1.96 10.95 +apprentie apprenti nom f s 2.52 17.64 0.23 0.47 +apprenties apprenti nom f p 2.52 17.64 0.02 0.27 +apprentis apprenti nom m p 2.52 17.64 0.31 5.95 +apprentissage apprentissage nom m s 1.86 10.47 1.86 10.14 +apprentissages apprentissage nom m p 1.86 10.47 0.00 0.34 +apprirent apprendre ver 348.45 286.69 0.15 2.23 ind:pas:3p; +appris apprendre ver m 348.45 286.69 120.98 97.70 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +apprise apprendre ver f s 348.45 286.69 1.81 3.45 par:pas; +apprises apprendre ver f p 348.45 286.69 0.64 1.82 par:pas; +apprissent apprendre ver 348.45 286.69 0.00 0.07 sub:imp:3p; +apprit apprendre ver 348.45 286.69 1.48 21.96 ind:pas:3s; +apprivoisa apprivoiser ver 2.40 10.54 0.00 0.20 ind:pas:3s; +apprivoisaient apprivoiser ver 2.40 10.54 0.00 0.07 ind:imp:3p; +apprivoisais apprivoiser ver 2.40 10.54 0.00 0.14 ind:imp:1s; +apprivoisait apprivoiser ver 2.40 10.54 0.00 0.41 ind:imp:3s; +apprivoisant apprivoiser ver 2.40 10.54 0.01 0.14 par:pre; +apprivoise apprivoiser ver 2.40 10.54 0.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprivoisent apprivoiser ver 2.40 10.54 0.01 0.27 ind:pre:3p; +apprivoiser apprivoiser ver 2.40 10.54 0.42 5.14 inf; +apprivoiserai apprivoiser ver 2.40 10.54 0.14 0.20 ind:fut:1s; +apprivoiseur apprivoiseur adj m s 0.00 0.07 0.00 0.07 +apprivoisez apprivoiser ver 2.40 10.54 0.03 0.07 imp:pre:2p;ind:pre:2p; +apprivoisons apprivoiser ver 2.40 10.54 0.01 0.00 ind:pre:1p; +apprivoisèrent apprivoiser ver 2.40 10.54 0.00 0.14 ind:pas:3p; +apprivoisé apprivoiser ver m s 2.40 10.54 0.98 1.28 par:pas; +apprivoisée apprivoiser ver f s 2.40 10.54 0.17 1.15 par:pas; +apprivoisées apprivoiser ver f p 2.40 10.54 0.04 0.27 par:pas; +apprivoisés apprivoiser ver m p 2.40 10.54 0.36 0.34 par:pas; +approbateur approbateur adj m s 0.00 1.55 0.00 1.08 +approbateurs approbateur adj m p 0.00 1.55 0.00 0.27 +approbatif approbatif adj m s 0.00 0.07 0.00 0.07 +approbation approbation nom f s 2.56 9.80 2.55 9.19 +approbations approbation nom f p 2.56 9.80 0.01 0.61 +approbativement approbativement adv 0.00 0.07 0.00 0.07 +approbatrice approbateur adj f s 0.00 1.55 0.00 0.20 +approcha approcher ver 117.65 196.15 1.09 42.70 ind:pas:3s; +approchai approcher ver 117.65 196.15 0.20 4.32 ind:pas:1s; +approchaient approcher ver 117.65 196.15 0.45 6.62 ind:imp:3p; +approchais approcher ver 117.65 196.15 0.53 2.09 ind:imp:1s;ind:imp:2s; +approchait approcher ver 117.65 196.15 2.79 27.70 ind:imp:3s; +approchant approcher ver 117.65 196.15 0.90 10.74 par:pre; +approchants approchant adj m p 0.41 1.82 0.01 0.14 +approchassent approcher ver 117.65 196.15 0.00 0.07 sub:imp:3p; +approche approcher ver 117.65 196.15 44.17 31.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +approchent approcher ver 117.65 196.15 5.66 4.93 ind:pre:3p; +approcher approcher ver 117.65 196.15 19.62 35.27 ind:pre:2p;inf; +approchera approcher ver 117.65 196.15 0.83 0.20 ind:fut:3s; +approcherai approcher ver 117.65 196.15 0.33 0.00 ind:fut:1s; +approcherais approcher ver 117.65 196.15 0.18 0.14 cnd:pre:1s; +approcherait approcher ver 117.65 196.15 0.07 0.34 cnd:pre:3s; +approcheras approcher ver 117.65 196.15 0.13 0.00 ind:fut:2s; +approcherez approcher ver 117.65 196.15 0.17 0.20 ind:fut:2p; +approcherions approcher ver 117.65 196.15 0.00 0.07 cnd:pre:1p; +approcherons approcher ver 117.65 196.15 0.05 0.00 ind:fut:1p; +approcheront approcher ver 117.65 196.15 0.11 0.07 ind:fut:3p; +approches approcher ver 117.65 196.15 2.97 0.61 ind:pre:2s;sub:pre:2s; +approchez approcher ver 117.65 196.15 27.75 2.43 imp:pre:2p;ind:pre:2p; +approchiez approcher ver 117.65 196.15 0.24 0.07 ind:imp:2p; +approchions approcher ver 117.65 196.15 0.09 1.76 ind:imp:1p; +approchâmes approcher ver 117.65 196.15 0.01 0.34 ind:pas:1p; +approchons approcher ver 117.65 196.15 2.45 1.55 imp:pre:1p;ind:pre:1p; +approchât approcher ver 117.65 196.15 0.00 0.20 sub:imp:3s; +approchèrent approcher ver 117.65 196.15 0.02 3.38 ind:pas:3p; +approché approcher ver m s 117.65 196.15 4.75 11.96 par:pas; +approchée approcher ver f s 117.65 196.15 1.36 5.14 par:pas; +approchées approcher ver f p 117.65 196.15 0.25 0.34 par:pas; +approchés approcher ver m p 117.65 196.15 0.50 1.76 par:pas; +approfondît approfondir ver 1.69 7.57 0.00 0.14 sub:imp:3s; +approfondi approfondi adj m s 1.46 1.69 0.34 0.61 +approfondie approfondi adj f s 1.46 1.69 0.83 0.81 +approfondies approfondir ver f p 1.69 7.57 0.09 0.20 par:pas; +approfondir approfondir ver 1.69 7.57 1.04 3.58 inf; +approfondirai approfondir ver 1.69 7.57 0.00 0.07 ind:fut:1s; +approfondirent approfondir ver 1.69 7.57 0.00 0.14 ind:pas:3p; +approfondirions approfondir ver 1.69 7.57 0.00 0.07 cnd:pre:1p; +approfondirons approfondir ver 1.69 7.57 0.01 0.07 ind:fut:1p; +approfondis approfondi adj m p 1.46 1.69 0.20 0.07 +approfondissaient approfondir ver 1.69 7.57 0.00 0.20 ind:imp:3p; +approfondissais approfondir ver 1.69 7.57 0.00 0.14 ind:imp:1s; +approfondissait approfondir ver 1.69 7.57 0.01 0.27 ind:imp:3s; +approfondissant approfondir ver 1.69 7.57 0.01 0.27 par:pre; +approfondisse approfondir ver 1.69 7.57 0.02 0.07 sub:pre:1s;sub:pre:3s; +approfondissement approfondissement nom m s 0.02 0.00 0.02 0.00 +approfondissent approfondir ver 1.69 7.57 0.01 0.14 ind:pre:3p; +approfondissons approfondir ver 1.69 7.57 0.01 0.00 ind:pre:1p; +approfondit approfondir ver 1.69 7.57 0.13 0.88 ind:pre:3s;ind:pas:3s; +appropriaient approprier ver 5.73 5.47 0.10 0.20 ind:imp:3p; +appropriait approprier ver 5.73 5.47 0.00 0.20 ind:imp:3s; +appropriant approprier ver 5.73 5.47 0.17 0.14 par:pre; +appropriation appropriation nom f s 0.19 0.34 0.04 0.34 +appropriations appropriation nom f p 0.19 0.34 0.15 0.00 +approprie approprier ver 5.73 5.47 0.33 0.27 ind:pre:3s;sub:pre:3s; +approprient approprier ver 5.73 5.47 0.05 0.07 ind:pre:3p; +approprier approprier ver 5.73 5.47 1.30 1.76 inf; +approprieraient approprier ver 5.73 5.47 0.00 0.07 cnd:pre:3p; +approprierais approprier ver 5.73 5.47 0.01 0.00 cnd:pre:1s; +approprierait approprier ver 5.73 5.47 0.00 0.07 cnd:pre:3s; +approprieront approprier ver 5.73 5.47 0.02 0.00 ind:fut:3p; +appropriez approprier ver 5.73 5.47 0.02 0.00 ind:pre:2p; +approprié approprié adj m s 4.77 3.38 2.84 1.08 +appropriée approprié adj f s 4.77 3.38 0.89 1.15 +appropriées approprié adj f p 4.77 3.38 0.47 0.20 +appropriés approprié adj m p 4.77 3.38 0.57 0.95 +approuva approuver ver 15.39 36.08 0.01 7.43 ind:pas:3s; +approuvai approuver ver 15.39 36.08 0.00 0.61 ind:pas:1s; +approuvaient approuver ver 15.39 36.08 0.20 0.81 ind:imp:3p; +approuvais approuver ver 15.39 36.08 0.26 0.68 ind:imp:1s;ind:imp:2s; +approuvait approuver ver 15.39 36.08 0.65 4.73 ind:imp:3s; +approuvant approuver ver 15.39 36.08 0.07 1.15 par:pre; +approuve approuver ver 15.39 36.08 4.44 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +approuvent approuver ver 15.39 36.08 0.97 0.61 ind:pre:3p; +approuver approuver ver 15.39 36.08 1.67 5.61 inf; +approuvera approuver ver 15.39 36.08 0.33 0.14 ind:fut:3s; +approuverai approuver ver 15.39 36.08 0.05 0.00 ind:fut:1s; +approuverais approuver ver 15.39 36.08 0.12 0.00 cnd:pre:1s;cnd:pre:2s; +approuverait approuver ver 15.39 36.08 0.39 0.20 cnd:pre:3s; +approuveras approuver ver 15.39 36.08 0.04 0.07 ind:fut:2s; +approuverons approuver ver 15.39 36.08 0.03 0.00 ind:fut:1p; +approuveront approuver ver 15.39 36.08 0.01 0.07 ind:fut:3p; +approuves approuver ver 15.39 36.08 0.58 0.07 ind:pre:2s; +approuvez approuver ver 15.39 36.08 0.85 0.41 imp:pre:2p;ind:pre:2p; +approuviez approuver ver 15.39 36.08 0.43 0.14 ind:imp:2p; +approuvions approuver ver 15.39 36.08 0.01 0.20 ind:imp:1p; +approuvâmes approuver ver 15.39 36.08 0.00 0.07 ind:pas:1p; +approuvons approuver ver 15.39 36.08 0.20 0.27 imp:pre:1p;ind:pre:1p; +approuvât approuver ver 15.39 36.08 0.10 0.14 sub:imp:3s; +approuvèrent approuver ver 15.39 36.08 0.00 0.88 ind:pas:3p; +approuvé approuver ver m s 15.39 36.08 3.26 3.18 par:pas; +approuvée approuver ver f s 15.39 36.08 0.45 0.27 par:pas; +approuvées approuvé adj f p 1.23 0.27 0.21 0.00 +approuvés approuver ver m p 15.39 36.08 0.18 0.61 par:pas; +approvisionnait approvisionner ver 1.55 2.16 0.02 0.14 ind:imp:3s; +approvisionnant approvisionner ver 1.55 2.16 0.01 0.00 par:pre; +approvisionne approvisionner ver 1.55 2.16 0.33 0.00 ind:pre:1s;ind:pre:3s; +approvisionnement approvisionnement nom m s 2.07 2.57 2.02 1.49 +approvisionnements approvisionnement nom m p 2.07 2.57 0.05 1.08 +approvisionnent approvisionner ver 1.55 2.16 0.05 0.07 ind:pre:3p; +approvisionner approvisionner ver 1.55 2.16 0.75 1.01 inf; +approvisionnera approvisionner ver 1.55 2.16 0.01 0.00 ind:fut:3s; +approvisionniez approvisionner ver 1.55 2.16 0.01 0.00 ind:imp:2p; +approvisionnons approvisionner ver 1.55 2.16 0.03 0.00 ind:pre:1p; +approvisionné approvisionner ver m s 1.55 2.16 0.28 0.27 par:pas; +approvisionnée approvisionner ver f s 1.55 2.16 0.01 0.14 par:pas; +approvisionnées approvisionner ver f p 1.55 2.16 0.01 0.27 par:pas; +approvisionnés approvisionner ver m p 1.55 2.16 0.02 0.27 par:pas; +approximatif approximatif adj m s 1.07 3.65 0.39 1.49 +approximatifs approximatif adj m p 1.07 3.65 0.17 0.61 +approximation approximation nom f s 0.24 1.35 0.20 0.54 +approximations approximation nom f p 0.24 1.35 0.04 0.81 +approximative approximatif adj f s 1.07 3.65 0.49 1.35 +approximativement approximativement adv 1.64 1.96 1.64 1.96 +approximatives approximatif adj f p 1.07 3.65 0.02 0.20 +apprécia apprécier ver 77.21 44.12 0.00 2.57 ind:pas:3s; +appréciable appréciable adj s 0.46 3.18 0.46 2.91 +appréciables appréciable adj m p 0.46 3.18 0.00 0.27 +appréciai apprécier ver 77.21 44.12 0.07 0.41 ind:pas:1s; +appréciaient apprécier ver 77.21 44.12 0.62 1.22 ind:imp:3p; +appréciais apprécier ver 77.21 44.12 0.70 1.49 ind:imp:1s;ind:imp:2s; +appréciait apprécier ver 77.21 44.12 1.47 6.76 ind:imp:3s; +appréciant apprécier ver 77.21 44.12 0.09 1.15 par:pre; +appréciateur appréciateur nom m s 0.00 0.54 0.00 0.41 +appréciation appréciation nom f s 0.94 3.99 0.86 2.97 +appréciations appréciation nom f p 0.94 3.99 0.08 1.01 +appréciatrice appréciateur nom f s 0.00 0.54 0.00 0.14 +apprécie apprécier ver 77.21 44.12 32.23 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprécient apprécier ver 77.21 44.12 3.28 1.08 ind:pre:3p;sub:pre:3p; +apprécier apprécier ver 77.21 44.12 11.53 11.28 inf; +appréciera apprécier ver 77.21 44.12 1.19 0.20 ind:fut:3s; +apprécierai apprécier ver 77.21 44.12 0.28 0.00 ind:fut:1s; +apprécieraient apprécier ver 77.21 44.12 0.35 0.07 cnd:pre:3p; +apprécierais apprécier ver 77.21 44.12 3.02 0.14 cnd:pre:1s;cnd:pre:2s; +apprécierait apprécier ver 77.21 44.12 1.41 0.41 cnd:pre:3s; +apprécieras apprécier ver 77.21 44.12 0.34 0.00 ind:fut:2s; +apprécierez apprécier ver 77.21 44.12 1.27 0.14 ind:fut:2p; +apprécieriez apprécier ver 77.21 44.12 0.19 0.00 cnd:pre:2p; +apprécierions apprécier ver 77.21 44.12 0.10 0.00 cnd:pre:1p; +apprécierons apprécier ver 77.21 44.12 0.09 0.00 ind:fut:1p; +apprécieront apprécier ver 77.21 44.12 0.57 0.27 ind:fut:3p; +apprécies apprécier ver 77.21 44.12 2.19 0.27 ind:pre:2s; +appréciez apprécier ver 77.21 44.12 2.41 0.34 imp:pre:2p;ind:pre:2p; +appréciions apprécier ver 77.21 44.12 0.00 0.07 ind:imp:1p; +apprécions apprécier ver 77.21 44.12 1.77 0.34 imp:pre:1p;ind:pre:1p; +appréciât apprécier ver 77.21 44.12 0.00 0.14 sub:imp:3s; +apprécièrent apprécier ver 77.21 44.12 0.11 0.14 ind:pas:3p; +apprécié apprécier ver m s 77.21 44.12 9.32 5.47 par:pas; +appréciée apprécier ver f s 77.21 44.12 1.85 1.82 par:pas; +appréciées apprécier ver f p 77.21 44.12 0.31 0.14 par:pas; +appréciés apprécier ver m p 77.21 44.12 0.45 0.74 par:pas; +appréhendai appréhender ver 4.22 5.34 0.00 0.07 ind:pas:1s; +appréhendaient appréhender ver 4.22 5.34 0.01 0.14 ind:imp:3p; +appréhendais appréhender ver 4.22 5.34 0.17 1.08 ind:imp:1s;ind:imp:2s; +appréhendait appréhender ver 4.22 5.34 0.04 0.74 ind:imp:3s; +appréhendant appréhender ver 4.22 5.34 0.04 0.68 par:pre; +appréhende appréhender ver 4.22 5.34 0.95 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +appréhendent appréhender ver 4.22 5.34 0.14 0.07 ind:pre:3p; +appréhender appréhender ver 4.22 5.34 1.51 0.95 inf; +appréhendera appréhender ver 4.22 5.34 0.02 0.00 ind:fut:3s; +appréhenderons appréhender ver 4.22 5.34 0.01 0.00 ind:fut:1p; +appréhendez appréhender ver 4.22 5.34 0.07 0.07 imp:pre:2p;ind:pre:2p; +appréhendions appréhender ver 4.22 5.34 0.00 0.07 ind:imp:1p; +appréhendons appréhender ver 4.22 5.34 0.02 0.00 ind:pre:1p; +appréhendé appréhender ver m s 4.22 5.34 1.00 0.74 par:pas; +appréhendée appréhender ver f s 4.22 5.34 0.05 0.07 par:pas; +appréhendées appréhender ver f p 4.22 5.34 0.02 0.00 par:pas; +appréhendés appréhender ver m p 4.22 5.34 0.17 0.14 par:pas; +appréhensif appréhensif adj m s 0.01 0.00 0.01 0.00 +appréhension appréhension nom f s 1.28 10.20 0.80 8.92 +appréhensions appréhension nom f p 1.28 10.20 0.48 1.28 +apprêt apprêt nom m s 0.14 1.42 0.11 0.81 +apprêta apprêter ver 9.13 29.46 0.01 0.41 ind:pas:3s; +apprêtai apprêter ver 9.13 29.46 0.01 0.14 ind:pas:1s; +apprêtaient apprêter ver 9.13 29.46 0.26 2.84 ind:imp:3p; +apprêtais apprêter ver 9.13 29.46 1.19 2.91 ind:imp:1s;ind:imp:2s; +apprêtait apprêter ver 9.13 29.46 1.21 11.96 ind:imp:3s; +apprêtant apprêter ver 9.13 29.46 0.07 1.15 par:pre; +apprête apprêter ver 9.13 29.46 4.16 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprêtent apprêter ver 9.13 29.46 0.87 1.35 ind:pre:3p; +apprêter apprêter ver 9.13 29.46 0.10 0.68 inf; +apprêterait apprêter ver 9.13 29.46 0.00 0.14 cnd:pre:3s; +apprêtes apprêter ver 9.13 29.46 0.29 0.00 ind:pre:2s;sub:pre:2s; +apprêtez apprêter ver 9.13 29.46 0.39 0.07 imp:pre:2p;ind:pre:2p; +apprêtiez apprêter ver 9.13 29.46 0.16 0.00 ind:imp:2p; +apprêtions apprêter ver 9.13 29.46 0.05 0.27 ind:imp:1p; +apprêts apprêt nom m p 0.14 1.42 0.03 0.61 +apprêtèrent apprêter ver 9.13 29.46 0.20 0.14 ind:pas:3p; +apprêté apprêté adj m s 0.13 1.22 0.11 0.27 +apprêtée apprêter ver f s 9.13 29.46 0.14 0.07 par:pas; +apprêtées apprêté adj f p 0.13 1.22 0.01 0.14 +apprêtés apprêté adj m p 0.13 1.22 0.01 0.14 +appui_main appui_main nom m s 0.00 0.14 0.00 0.14 +appui_tête appui_tête nom m s 0.01 0.00 0.01 0.00 +appui appui nom m s 8.81 30.81 7.83 28.65 +appuie_tête appuie_tête nom m 0.05 0.14 0.05 0.14 +appuie appuyer ver 40.94 126.01 14.57 15.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +appuient appuyer ver 40.94 126.01 0.60 1.49 ind:pre:3p; +appuiera appuyer ver 40.94 126.01 0.20 0.20 ind:fut:3s; +appuierai appuyer ver 40.94 126.01 0.25 0.07 ind:fut:1s; +appuieraient appuyer ver 40.94 126.01 0.00 0.07 cnd:pre:3p; +appuierais appuyer ver 40.94 126.01 0.11 0.07 cnd:pre:1s;cnd:pre:2s; +appuierait appuyer ver 40.94 126.01 0.16 0.27 cnd:pre:3s; +appuieras appuyer ver 40.94 126.01 0.21 0.00 ind:fut:2s; +appuierez appuyer ver 40.94 126.01 0.05 0.07 ind:fut:2p; +appuierons appuyer ver 40.94 126.01 0.01 0.00 ind:fut:1p; +appuieront appuyer ver 40.94 126.01 0.06 0.07 ind:fut:3p; +appuies appuyer ver 40.94 126.01 2.89 0.41 ind:pre:2s;sub:pre:2s; +appuis appui nom m p 8.81 30.81 0.98 2.16 +appétence appétence nom f s 0.00 0.34 0.00 0.27 +appétences appétence nom f p 0.00 0.34 0.00 0.07 +appétissant appétissant adj m s 1.74 2.77 0.77 0.88 +appétissante appétissant adj f s 1.74 2.77 0.59 1.01 +appétissantes appétissant adj f p 1.74 2.77 0.32 0.41 +appétissants appétissant adj m p 1.74 2.77 0.06 0.47 +appétit appétit nom m s 20.98 26.76 20.68 23.78 +appétits appétit nom m p 20.98 26.76 0.30 2.97 +appuya appuyer ver 40.94 126.01 0.12 17.84 ind:pas:3s; +appuyai appuyer ver 40.94 126.01 0.10 1.28 ind:pas:1s; +appuyaient appuyer ver 40.94 126.01 0.16 1.35 ind:imp:3p; +appuyais appuyer ver 40.94 126.01 0.19 1.01 ind:imp:1s;ind:imp:2s; +appuyait appuyer ver 40.94 126.01 0.23 11.89 ind:imp:3s; +appuyant appuyer ver 40.94 126.01 1.01 13.18 par:pre; +appuyer appuyer ver 40.94 126.01 9.77 16.49 inf; +appuyez appuyer ver 40.94 126.01 5.55 0.54 imp:pre:2p;ind:pre:2p; +appuyiez appuyer ver 40.94 126.01 0.03 0.00 ind:imp:2p; +appuyâmes appuyer ver 40.94 126.01 0.00 0.14 ind:pas:1p; +appuyons appuyer ver 40.94 126.01 0.07 0.00 imp:pre:1p;ind:pre:1p; +appuyât appuyer ver 40.94 126.01 0.00 0.07 sub:imp:3s; +appuyèrent appuyer ver 40.94 126.01 0.11 0.54 ind:pas:3p; +appuyé appuyer ver m s 40.94 126.01 4.00 22.97 par:pas; +appuyée appuyer ver f s 40.94 126.01 0.31 11.82 par:pas; +appuyées appuyer ver f p 40.94 126.01 0.13 3.18 par:pas; +appuyés appuyer ver m p 40.94 126.01 0.05 5.34 par:pas; +aprèm aprèm nom f s 0.22 1.35 0.22 0.07 +aprème aprèm nom f s 0.22 1.35 0.00 1.28 +après_coup après_coup nom m s 0.02 0.00 0.02 0.00 +après_dîner après_dîner nom m s 0.02 0.74 0.02 0.61 +après_dîner après_dîner nom m p 0.02 0.74 0.00 0.14 +après_demain après_demain adv 11.77 6.76 11.77 6.76 +après_déjeuner après_déjeuner ver 0.00 0.14 0.00 0.14 inf; +après_guerre après_guerre nom s 0.73 3.24 0.73 3.24 +après_mort après_mort nom f s 0.00 0.07 0.00 0.07 +après_rasage après_rasage nom m s 0.45 0.00 0.45 0.00 +après_repas après_repas nom m 0.01 0.07 0.01 0.07 +après_shampoing après_shampoing nom m s 0.04 0.00 0.04 0.00 +après_shampooing après_shampooing nom m s 0.04 0.07 0.04 0.07 +après_ski après_ski nom m s 0.06 0.20 0.06 0.20 +après_vente après_vente adj s 0.05 0.00 0.05 0.00 +après après pre 593.92 821.55 593.92 821.55 +apte apte adj s 2.93 4.59 1.77 2.77 +aptes apte adj p 2.93 4.59 1.16 1.82 +aptitude aptitude nom f s 2.74 4.59 1.76 2.70 +aptitudes aptitude nom f p 2.74 4.59 0.98 1.89 +aptère aptère adj s 0.00 0.14 0.00 0.07 +aptères aptère adj p 0.00 0.14 0.00 0.07 +apurait apurer ver 0.01 0.41 0.00 0.07 ind:imp:3s; +apurer apurer ver 0.01 0.41 0.01 0.20 inf; +apéritif apéritif nom m s 3.29 9.46 2.57 7.09 +apéritifs apéritif nom m p 3.29 9.46 0.72 2.36 +apéritive apéritif adj f s 0.28 1.28 0.00 0.14 +apéritives apéritif adj f p 0.28 1.28 0.00 0.14 +apéro apéro nom m s 0.78 4.05 0.61 3.45 +apéros apéro nom m p 0.78 4.05 0.17 0.61 +apuré apurer ver m s 0.01 0.41 0.00 0.07 par:pas; +apurés apurer ver m p 0.01 0.41 0.00 0.07 par:pas; +aquaculture aquaculture nom f s 0.01 0.00 0.01 0.00 +aquagym aquagym nom f s 0.04 0.00 0.04 0.00 +aquaplane aquaplane nom m s 0.02 0.07 0.02 0.07 +aquarellait aquareller ver 0.00 0.07 0.00 0.07 ind:imp:3s; +aquarelle aquarelle nom f s 0.23 8.85 0.14 6.55 +aquarelles aquarelle nom f p 0.23 8.85 0.09 2.30 +aquarelliste aquarelliste nom s 0.00 0.14 0.00 0.07 +aquarellistes aquarelliste nom p 0.00 0.14 0.00 0.07 +aquarellés aquarellé adj m p 0.00 0.07 0.00 0.07 +aquariophilie aquariophilie nom f s 0.03 0.00 0.03 0.00 +aquarium aquarium nom m s 4.26 5.88 3.94 5.20 +aquariums aquarium nom m p 4.26 5.88 0.32 0.68 +aquatinte aquatinte nom f s 0.10 0.00 0.10 0.00 +aquatique aquatique adj s 1.52 1.89 1.18 0.88 +aquatiques aquatique adj p 1.52 1.89 0.34 1.01 +aquavit aquavit nom m s 0.18 0.14 0.18 0.14 +aqueduc aqueduc nom m s 0.44 1.15 0.23 0.81 +aqueducs aqueduc nom m p 0.44 1.15 0.21 0.34 +aqueuse aqueux adj f s 0.09 0.88 0.05 0.41 +aqueuses aqueux adj f p 0.09 0.88 0.01 0.14 +aqueux aqueux adj m 0.09 0.88 0.02 0.34 +aquifère aquifère adj f s 0.01 0.00 0.01 0.00 +aquilin aquilin adj m s 0.02 1.08 0.02 1.08 +aquilon aquilon nom m s 0.00 0.54 0.00 0.47 +aquilons aquilon nom m p 0.00 0.54 0.00 0.07 +aquitain aquitain adj m s 0.00 0.07 0.00 0.07 +arôme arôme nom m s 1.43 2.70 1.12 2.43 +arômes arôme nom m p 1.43 2.70 0.32 0.27 +ara ara nom m s 0.85 0.54 0.81 0.41 +arabe arabe nom s 13.62 32.64 6.71 17.57 +arabes arabe nom p 13.62 32.64 6.91 15.07 +arabesque arabesque nom f s 0.10 4.53 0.08 0.74 +arabesques arabesque nom f p 0.10 4.53 0.02 3.78 +arabica arabica nom m s 0.16 0.27 0.16 0.14 +arabicas arabica nom m p 0.16 0.27 0.00 0.14 +arabique arabique adj s 0.05 0.27 0.05 0.27 +arabisant arabiser ver 0.00 0.20 0.00 0.14 par:pre; +arabisants arabisant nom m p 0.00 0.27 0.00 0.27 +arabisé arabiser ver m s 0.00 0.20 0.00 0.07 par:pas; +arable arable adj f s 0.18 0.00 0.04 0.00 +arables arable adj p 0.18 0.00 0.13 0.00 +arac arac nom m s 0.03 0.00 0.03 0.00 +arachide arachide nom f s 0.51 0.61 0.26 0.34 +arachides arachide nom f p 0.51 0.61 0.25 0.27 +arachnide arachnide nom m s 0.39 0.00 0.06 0.00 +arachnides arachnide nom m p 0.39 0.00 0.33 0.00 +arachnoïde arachnoïde nom f s 0.01 0.14 0.00 0.07 +arachnoïdes arachnoïde nom f p 0.01 0.14 0.01 0.07 +arachnéen arachnéen adj m s 0.02 0.68 0.02 0.20 +arachnéenne arachnéen adj f s 0.02 0.68 0.00 0.27 +arachnéennes arachnéen adj f p 0.02 0.68 0.00 0.20 +aragonais aragonais nom m 0.00 0.20 0.00 0.20 +aragonaise aragonais adj f s 0.00 0.20 0.00 0.14 +aragonite aragonite nom f s 0.01 0.00 0.01 0.00 +araigne araigne nom f s 0.00 0.07 0.00 0.07 +araignée_crabe araignée_crabe nom f s 0.00 0.07 0.00 0.07 +araignée araignée nom f s 18.20 17.84 12.21 12.36 +araignées araignée nom f p 18.20 17.84 6.00 5.47 +araire araire nom m s 0.01 0.00 0.01 0.00 +arak arak nom m s 0.41 0.07 0.41 0.07 +araldite araldite nom m 0.01 0.00 0.01 0.00 +aralia aralia nom m s 0.00 0.07 0.00 0.07 +aramide aramide adj f s 0.01 0.00 0.01 0.00 +aramon aramon nom m s 0.00 0.41 0.00 0.41 +araméen araméen nom m s 0.45 0.20 0.45 0.20 +araméenne araméen adj f s 0.05 0.07 0.01 0.00 +aranéeuse aranéeux adj f s 0.00 0.07 0.00 0.07 +arapèdes arapède nom m p 0.00 0.20 0.00 0.20 +aras ara nom m p 0.85 0.54 0.04 0.14 +arasant araser ver 0.10 0.14 0.00 0.07 par:pre; +araser araser ver 0.10 0.14 0.10 0.00 inf; +arasée araser ver f s 0.10 0.14 0.00 0.07 par:pas; +aratoire aratoire adj m s 0.00 0.47 0.00 0.07 +aratoires aratoire adj m p 0.00 0.47 0.00 0.41 +araucan araucan nom m s 0.00 0.07 0.00 0.07 +araucanien araucanien adj m s 0.00 0.27 0.00 0.07 +araucaniennes araucanien adj f p 0.00 0.27 0.00 0.07 +araucaniens araucanien adj m p 0.00 0.27 0.00 0.14 +araucaria araucaria nom m s 0.01 0.54 0.01 0.34 +araucarias araucaria nom m p 0.01 0.54 0.00 0.20 +arbalète arbalète nom f s 0.55 1.55 0.52 1.35 +arbalètes arbalète nom f p 0.55 1.55 0.03 0.20 +arbalétrier arbalétrier nom m s 0.01 0.88 0.00 0.14 +arbalétriers arbalétrier nom m p 0.01 0.88 0.01 0.74 +arbi arbi nom m s 0.00 0.27 0.00 0.14 +arbis arbi nom m p 0.00 0.27 0.00 0.14 +arbitrage arbitrage nom m s 0.52 0.88 0.48 0.88 +arbitrages arbitrage nom m p 0.52 0.88 0.04 0.00 +arbitraire arbitraire adj s 1.29 3.78 0.73 2.50 +arbitrairement arbitrairement adv 0.12 0.95 0.12 0.95 +arbitraires arbitraire adj p 1.29 3.78 0.56 1.28 +arbitrait arbitrer ver 0.90 1.08 0.00 0.27 ind:imp:3s; +arbitrale arbitral adj f s 0.01 0.00 0.01 0.00 +arbitre arbitre nom s 7.59 5.34 6.92 5.20 +arbitrer arbitrer ver 0.90 1.08 0.34 0.27 inf; +arbitrera arbitrer ver 0.90 1.08 0.02 0.07 ind:fut:3s; +arbitres arbitre nom p 7.59 5.34 0.67 0.14 +arbitré arbitrer ver m s 0.90 1.08 0.01 0.14 par:pas; +arbitrée arbitrer ver f s 0.90 1.08 0.00 0.07 par:pas; +arbitrées arbitrer ver f p 0.90 1.08 0.01 0.07 par:pas; +arbois arbois nom s 0.00 0.07 0.00 0.07 +arbora arborer ver 0.53 10.61 0.01 0.14 ind:pas:3s; +arboraient arborer ver 0.53 10.61 0.04 1.42 ind:imp:3p; +arborais arborer ver 0.53 10.61 0.00 0.20 ind:imp:1s; +arborait arborer ver 0.53 10.61 0.08 3.72 ind:imp:3s; +arborant arborer ver 0.53 10.61 0.06 1.55 par:pre; +arbore arborer ver 0.53 10.61 0.10 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arborent arborer ver 0.53 10.61 0.12 0.54 ind:pre:3p; +arborer arborer ver 0.53 10.61 0.06 1.08 inf; +arborerait arborer ver 0.53 10.61 0.00 0.07 cnd:pre:3s; +arbores arborer ver 0.53 10.61 0.00 0.07 ind:pre:2s; +arborescence arborescence nom f s 0.02 0.20 0.02 0.07 +arborescences arborescence nom f p 0.02 0.20 0.00 0.14 +arborescent arborescent adj m s 0.16 0.27 0.02 0.00 +arborescentes arborescent adj f p 0.16 0.27 0.00 0.20 +arborescents arborescent adj m p 0.16 0.27 0.14 0.07 +arboretum arboretum nom m s 0.09 0.00 0.09 0.00 +arborez arborer ver 0.53 10.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +arboricole arboricole adj f s 0.01 0.00 0.01 0.00 +arboriculteur arboriculteur nom m s 0.01 0.00 0.01 0.00 +arboriculture arboriculture nom f s 0.01 0.07 0.01 0.07 +arborions arborer ver 0.53 10.61 0.00 0.07 ind:imp:1p; +arborisations arborisation nom f p 0.00 0.07 0.00 0.07 +arborât arborer ver 0.53 10.61 0.01 0.07 sub:imp:3s; +arborèrent arborer ver 0.53 10.61 0.00 0.07 ind:pas:3p; +arboré arborer ver m s 0.53 10.61 0.01 0.41 par:pas; +arborée arborer ver f s 0.53 10.61 0.00 0.14 par:pas; +arborés arborer ver m p 0.53 10.61 0.00 0.14 par:pas; +arbouse arbouse nom f s 0.10 0.41 0.10 0.00 +arbouses arbouse nom f p 0.10 0.41 0.00 0.41 +arbousiers arbousier nom m p 0.14 0.41 0.14 0.41 +arbre arbre nom m s 81.69 208.58 49.29 67.16 +arbres_refuge arbres_refuge nom m p 0.00 0.07 0.00 0.07 +arbres arbre nom m p 81.69 208.58 32.40 141.42 +arbrisseau arbrisseau nom m s 0.26 1.28 0.22 0.34 +arbrisseaux arbrisseau nom m p 0.26 1.28 0.04 0.95 +arbuste arbuste nom m s 1.00 7.30 0.28 1.89 +arbustes arbuste nom m p 1.00 7.30 0.71 5.41 +arc_bouter arc_bouter ver 0.17 5.00 0.00 0.47 ind:pas:3s; +arc_bouter arc_bouter ver 0.17 5.00 0.04 0.27 ind:imp:1s;ind:imp:2s; +arc_bouter arc_bouter ver 0.17 5.00 0.00 0.34 ind:imp:3s; +arc_boutant arc_boutant nom m s 0.14 0.54 0.14 0.20 +arc_boutant arc_boutant nom m p 0.14 0.54 0.01 0.00 +arc_bouter arc_bouter ver 0.17 5.00 0.10 0.88 ind:pre:1s;ind:pre:3s; +arc_boutement arc_boutement nom m s 0.00 0.07 0.00 0.07 +arc_bouter arc_bouter ver 0.17 5.00 0.01 0.20 ind:pre:3p; +arc_bouter arc_bouter ver 0.17 5.00 0.00 0.07 inf; +arc_bouter arc_bouter ver 0.17 5.00 0.01 0.00 ind:fut:3s; +arc_bouter arc_bouter ver 0.17 5.00 0.00 0.07 ind:pas:3p; +arc_bouter arc_bouter ver m s 0.17 5.00 0.01 1.15 par:pas; +arc_bouter arc_bouter ver f s 0.17 5.00 0.00 0.41 par:pas; +arc_bouter arc_bouter ver f p 0.17 5.00 0.00 0.27 par:pas; +arc_bouter arc_bouter ver m p 0.17 5.00 0.00 0.27 par:pas; +arc_en_ciel arc_en_ciel nom m s 3.00 4.46 2.56 3.92 +arc arc nom m s 5.25 17.30 4.52 14.05 +arcade arcade nom f s 1.25 12.36 0.91 2.23 +arcades arcade nom f p 1.25 12.36 0.35 10.14 +arcadien arcadien adj m s 0.10 0.20 0.10 0.07 +arcadienne arcadien adj f s 0.10 0.20 0.00 0.07 +arcadiens arcadien nom m p 0.01 0.00 0.01 0.00 +arcan arcan nom m s 0.02 0.74 0.00 0.27 +arcane arcane nom m s 0.09 1.35 0.05 0.74 +arcanes arcane nom m p 0.09 1.35 0.04 0.61 +arcans arcan nom m p 0.02 0.74 0.02 0.47 +arcatures arcature nom f p 0.00 0.07 0.00 0.07 +arceau arceau nom m s 0.17 3.04 0.14 0.27 +arceaux arceau nom m p 0.17 3.04 0.03 2.77 +archaïque archaïque adj s 1.15 2.50 0.88 1.96 +archaïques archaïque adj p 1.15 2.50 0.27 0.54 +archaïsant archaïsant nom m s 0.00 0.07 0.00 0.07 +archaïsme archaïsme nom m s 0.01 0.54 0.01 0.54 +archange archange nom m s 1.30 4.46 0.98 3.58 +archanges archange nom m p 1.30 4.46 0.32 0.88 +archangélique archangélique adj m s 0.00 0.20 0.00 0.20 +arche arche nom f s 3.19 7.16 2.83 5.68 +archer archer nom m s 3.77 2.50 2.24 0.41 +archers archer nom m p 3.77 2.50 1.53 2.03 +arches arche nom f p 3.19 7.16 0.36 1.49 +archet archet nom m s 0.47 2.30 0.46 1.96 +archets archet nom m p 0.47 2.30 0.01 0.34 +archevêché archevêché nom m s 0.40 1.08 0.40 1.01 +archevêchés archevêché nom m p 0.40 1.08 0.00 0.07 +archevêque archevêque nom m s 3.42 6.28 3.23 5.81 +archevêques archevêque nom m p 3.42 6.28 0.20 0.47 +archi_blet archi_blet adj m s 0.00 0.07 0.00 0.07 +archi_chiant archi_chiant adj m p 0.01 0.00 0.01 0.00 +archi_connu archi_connu adj m s 0.01 0.07 0.01 0.00 +archi_connu archi_connu adj m p 0.01 0.07 0.00 0.07 +archiduc archiduc nom f s 0.48 4.46 0.01 0.00 +archi_dégueu archi_dégueu adj s 0.00 0.07 0.00 0.07 +archi_faux archi_faux adj m 0.05 0.00 0.05 0.00 +archi_libre archi_libre adj f s 0.00 0.07 0.00 0.07 +archi_mortels archi_mortels nom m 0.01 0.00 0.01 0.00 +archi_mort archi_mort nom f p 0.00 0.07 0.00 0.07 +archi_méfiance archi_méfiance nom f s 0.00 0.07 0.00 0.07 +archi_nul archi_nul nom m s 0.01 0.00 0.01 0.00 +archi_nuls archi_nuls nom m 0.23 0.00 0.23 0.00 +archi_plein archi_plein nom m s 0.00 0.07 0.00 0.07 +archi_prouvé archi_prouvé adj m s 0.00 0.07 0.00 0.07 +archi_prudent archi_prudent nom m s 0.00 0.07 0.00 0.07 +archi_ringard archi_ringard nom m s 0.00 0.07 0.00 0.07 +archi_sophistiqué archi_sophistiqué adj f s 0.01 0.00 0.01 0.00 +archi_sèche archi_sèche adj f p 0.01 0.00 0.01 0.00 +archi_usé archi_usé adj m s 0.01 0.00 0.01 0.00 +archi_vieux archi_vieux adj m 0.00 0.07 0.00 0.07 +archi archi nom m s 0.75 0.74 0.75 0.74 +archiatre archiatre nom m s 0.00 0.20 0.00 0.20 +archicomble archicomble adj s 0.01 0.14 0.01 0.07 +archicombles archicomble adj p 0.01 0.14 0.00 0.07 +archiconnu archiconnu adj m s 0.00 0.07 0.00 0.07 +archidiacre archidiacre nom m s 0.26 0.07 0.26 0.07 +archidiocèse archidiocèse nom m s 0.19 0.00 0.19 0.00 +archiduc archiduc nom m s 0.48 4.46 0.36 4.05 +archiduchesse archiduc nom f s 0.48 4.46 0.11 0.27 +archiducs archiduc nom m p 0.48 4.46 0.00 0.14 +archie archi-e nom m 0.01 0.00 0.01 0.00 +archifaux archifaux adj m 0.04 0.07 0.04 0.07 +archimandrite archimandrite nom m s 0.00 0.61 0.00 0.61 +archinulles archinul adj f p 0.00 0.07 0.00 0.07 +archipel archipel nom m s 0.49 3.85 0.48 2.97 +archipels archipel nom m p 0.49 3.85 0.01 0.88 +archiprêtre archiprêtre nom m s 0.01 0.95 0.01 0.95 +architecte architecte nom s 9.98 7.70 8.39 4.93 +architectes architecte nom f p 9.98 7.70 1.60 2.77 +architectonie architectonie nom f s 0.14 0.00 0.14 0.00 +architectonique architectonique adj s 0.00 0.14 0.00 0.14 +architectural architectural adj m s 0.28 2.70 0.15 0.88 +architecturale architectural adj f s 0.28 2.70 0.08 1.01 +architecturalement architecturalement adv 0.01 0.07 0.01 0.07 +architecturales architectural adj f p 0.28 2.70 0.01 0.74 +architecturant architecturer ver 0.11 0.20 0.00 0.07 par:pre; +architecturaux architectural adj m p 0.28 2.70 0.04 0.07 +architecture architecture nom f s 4.07 12.23 3.90 10.47 +architecturent architecturer ver 0.11 0.20 0.00 0.07 ind:pre:3p; +architectures architecture nom f p 4.07 12.23 0.17 1.76 +architecturées architecturer ver f p 0.11 0.20 0.00 0.07 par:pas; +architrave architrave nom f s 0.00 0.20 0.00 0.20 +archiépiscopal archiépiscopal adj m s 0.00 0.07 0.00 0.07 +archivage archivage nom m s 0.06 0.00 0.06 0.00 +archive archive nom f s 9.42 8.51 0.13 0.20 +archiver archiver ver 0.90 0.07 0.13 0.07 inf; +archives archive nom f p 9.42 8.51 9.29 8.31 +archivez archiver ver 0.90 0.07 0.02 0.00 imp:pre:2p;ind:pre:2p; +archivions archiver ver 0.90 0.07 0.10 0.00 ind:imp:1p; +archiviste_paléographe archiviste_paléographe nom s 0.00 0.14 0.00 0.07 +archiviste archiviste nom s 0.41 1.55 0.41 1.22 +archiviste_paléographe archiviste_paléographe nom p 0.00 0.14 0.00 0.07 +archivistes archiviste nom p 0.41 1.55 0.01 0.34 +archivolte archivolte nom f s 0.00 0.41 0.00 0.14 +archivoltes archivolte nom f p 0.00 0.41 0.00 0.27 +archivons archiver ver 0.90 0.07 0.01 0.00 ind:pre:1p; +archivé archiver ver m s 0.90 0.07 0.33 0.00 par:pas; +archivées archiver ver f p 0.90 0.07 0.02 0.00 par:pas; +archivés archiver ver m p 0.90 0.07 0.07 0.00 par:pas; +archonte archonte nom m s 0.00 0.14 0.00 0.14 +archères archer nom f p 3.77 2.50 0.00 0.07 +archéologie archéologie nom f s 1.42 1.69 1.42 1.69 +archéologique archéologique adj s 0.76 0.81 0.52 0.41 +archéologiques archéologique adj p 0.76 0.81 0.24 0.41 +archéologue archéologue nom s 2.11 4.59 1.19 2.64 +archéologues archéologue nom p 2.11 4.59 0.92 1.96 +archéoptéryx archéoptéryx nom m 0.05 0.20 0.05 0.20 +archétypale archétypal adj f s 0.11 0.00 0.01 0.00 +archétypaux archétypal adj m p 0.11 0.00 0.10 0.00 +archétype archétype nom m s 0.67 0.88 0.61 0.68 +archétypes archétype nom m p 0.67 0.88 0.05 0.20 +arc_boutant arc_boutant nom m p 0.14 0.54 0.00 0.34 +arc_en_ciel arc_en_ciel nom m p 3.00 4.46 0.44 0.54 +arcs arc nom m p 5.25 17.30 0.73 3.24 +arctique arctique adj s 0.39 0.61 0.37 0.27 +arctiques arctique adj p 0.39 0.61 0.02 0.34 +ardûment ardûment adv 0.00 0.14 0.00 0.14 +ardais arder ver 0.51 0.34 0.00 0.07 ind:imp:1s; +ardait arder ver 0.51 0.34 0.00 0.14 ind:imp:3s; +ardant arder ver 0.51 0.34 0.01 0.00 par:pre; +arde arder ver 0.51 0.34 0.38 0.07 imp:pre:2s;ind:pre:3s; +ardemment ardemment adv 1.39 5.20 1.39 5.20 +ardennais ardennais nom m 0.20 0.34 0.20 0.27 +ardennaise ardennais nom f s 0.20 0.34 0.00 0.07 +ardent ardent adj m s 8.43 21.89 4.16 6.15 +ardente ardent adj f s 8.43 21.89 2.12 8.85 +ardentes ardent adj f p 8.43 21.89 0.97 2.43 +ardents ardent adj m p 8.43 21.89 1.17 4.46 +arder arder ver 0.51 0.34 0.11 0.00 inf; +ardeur ardeur nom f s 7.08 25.74 5.60 23.24 +ardeurs ardeur nom f p 7.08 25.74 1.47 2.50 +ardillon ardillon nom m s 0.00 0.68 0.00 0.54 +ardillons ardillon nom m p 0.00 0.68 0.00 0.14 +ardin ardin nom m s 0.01 0.07 0.01 0.07 +ardito ardito adv 0.00 0.07 0.00 0.07 +ardoise ardoise nom f s 3.45 9.80 3.35 5.95 +ardoises ardoise nom f p 3.45 9.80 0.10 3.85 +ardoisière ardoisier nom f s 0.00 0.07 0.00 0.07 +ardoisée ardoisé adj f s 0.00 0.14 0.00 0.07 +ardoisées ardoiser ver f p 0.00 0.07 0.00 0.07 par:pas; +ardoisés ardoisé adj m p 0.00 0.14 0.00 0.07 +ardre ardre ver 0.00 0.07 0.00 0.07 inf; +ardé arder ver m s 0.51 0.34 0.00 0.07 par:pas; +ardu ardu adj m s 1.42 5.00 0.61 2.43 +ardéchois ardéchois nom m 0.00 0.07 0.00 0.07 +ardéchoise ardéchois adj f s 0.00 0.14 0.00 0.14 +ardue ardu adj f s 1.42 5.00 0.61 1.42 +ardues ardu adj f p 1.42 5.00 0.06 0.34 +ardus ardu adj m p 1.42 5.00 0.14 0.81 +are are nom m s 15.80 1.28 15.55 1.22 +area area nom f s 0.12 0.07 0.12 0.07 +arec arec nom m s 0.27 0.07 0.27 0.07 +ares are nom m p 15.80 1.28 0.25 0.07 +arganier arganier nom m s 0.00 0.34 0.00 0.07 +arganiers arganier nom m p 0.00 0.34 0.00 0.27 +argans argan nom m p 0.00 0.07 0.00 0.07 +argent argent nom m s 515.10 194.39 515.04 194.32 +argentait argenter ver 0.62 3.99 0.00 0.34 ind:imp:3s; +argente argenter ver 0.62 3.99 0.17 0.14 ind:pre:3s; +argenterie argenterie nom f s 3.11 3.99 3.01 3.92 +argenteries argenterie nom f p 3.11 3.99 0.10 0.07 +argentier argentier nom m s 0.00 0.41 0.00 0.41 +argentifères argentifère adj f p 0.00 0.14 0.00 0.14 +argentin argentin adj m s 2.23 5.47 1.26 2.57 +argentine argentin adj f s 2.23 5.47 0.46 1.62 +argentines argentin adj f p 2.23 5.47 0.03 0.68 +argentins argentin nom m p 1.83 1.49 0.79 0.34 +argenton argenton nom m s 0.00 0.07 0.00 0.07 +argents argent nom m p 515.10 194.39 0.06 0.07 +argenté argenté adj m s 1.87 10.54 0.68 3.99 +argentée argenté adj f s 1.87 10.54 0.53 1.89 +argentées argenté adj f p 1.87 10.54 0.52 1.96 +argentés argenté adj m p 1.87 10.54 0.14 2.70 +argile argile nom f s 4.26 9.66 4.25 9.32 +argiles argile nom f p 4.26 9.66 0.01 0.34 +argileuse argileux adj f s 0.00 0.54 0.00 0.20 +argileux argileux adj m s 0.00 0.54 0.00 0.34 +argilière argilière nom f s 0.02 0.00 0.02 0.00 +argol argol nom m s 0.00 0.14 0.00 0.14 +argon argon nom m s 0.38 0.07 0.38 0.07 +argonaute argonaute nom m s 0.10 0.07 0.10 0.07 +argot argot nom m s 1.06 4.86 1.06 4.46 +argotique argotique adj s 0.05 0.95 0.05 0.68 +argotiques argotique adj p 0.05 0.95 0.00 0.27 +argots argot nom m p 1.06 4.86 0.00 0.41 +argougnasses argougner ver 0.00 0.27 0.00 0.07 sub:imp:2s; +argougne argougner ver 0.00 0.27 0.00 0.20 ind:pre:1s; +argousin argousin nom m s 0.00 1.35 0.00 0.61 +argousins argousin nom m p 0.00 1.35 0.00 0.74 +argua arguer ver 0.27 1.89 0.00 0.20 ind:pas:3s; +arguais arguer ver 0.27 1.89 0.01 0.00 ind:imp:2s; +arguait arguer ver 0.27 1.89 0.00 0.07 ind:imp:3s; +arguant arguer ver 0.27 1.89 0.08 1.15 par:pre; +argue arguer ver 0.27 1.89 0.11 0.07 imp:pre:2s;ind:pre:3s; +arguer arguer ver 0.27 1.89 0.05 0.41 inf; +argument argument nom m s 9.58 18.18 5.07 8.24 +argumenta argumenter ver 0.88 1.49 0.00 0.14 ind:pas:3s; +argumentaire argumentaire nom m s 0.13 0.00 0.13 0.00 +argumentait argumenter ver 0.88 1.49 0.03 0.20 ind:imp:3s; +argumentant argumenter ver 0.88 1.49 0.03 0.00 par:pre; +argumentateur argumentateur nom m s 0.01 0.00 0.01 0.00 +argumentatif argumentatif nom m s 0.02 0.00 0.02 0.00 +argumentation argumentation nom f s 0.54 0.88 0.44 0.68 +argumentations argumentation nom f p 0.54 0.88 0.10 0.20 +argumente argumenter ver 0.88 1.49 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +argumentent argumenter ver 0.88 1.49 0.04 0.00 ind:pre:3p; +argumenter argumenter ver 0.88 1.49 0.61 0.54 inf; +argumenterai argumenter ver 0.88 1.49 0.02 0.00 ind:fut:1s; +argumentes argumenter ver 0.88 1.49 0.01 0.00 ind:pre:2s; +argumentez argumenter ver 0.88 1.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +arguments argument nom m p 9.58 18.18 4.51 9.93 +argumenté argumenter ver m s 0.88 1.49 0.05 0.14 par:pas; +argus argus nom m 0.09 0.68 0.09 0.68 +argutie argutie nom f s 0.03 0.54 0.00 0.14 +arguties argutie nom f p 0.03 0.54 0.03 0.41 +argué arguer ver m s 0.27 1.89 0.02 0.00 par:pas; +aria aria nom s 0.81 0.47 0.48 0.34 +arianisme arianisme nom m s 0.00 0.07 0.00 0.07 +arias aria nom m p 0.81 0.47 0.33 0.14 +aride aride adj s 1.30 6.15 1.17 4.26 +arides aride adj p 1.30 6.15 0.14 1.89 +aridité aridité nom f s 0.14 1.55 0.14 1.55 +arien arien adj m s 0.72 0.07 0.29 0.00 +arienne arien adj f s 0.72 0.07 0.44 0.00 +ariens arien nom m p 0.04 0.07 0.04 0.00 +ariettes ariette nom f p 0.00 0.07 0.00 0.07 +arioso arioso nom m s 0.00 0.14 0.00 0.14 +aristarque aristarque nom m s 0.00 0.14 0.00 0.07 +aristarques aristarque nom m p 0.00 0.14 0.00 0.07 +aristo aristo nom s 0.40 1.08 0.28 0.81 +aristocrate aristocrate nom s 3.13 3.58 1.76 2.23 +aristocrates aristocrate nom p 3.13 3.58 1.37 1.35 +aristocratie aristocratie nom f s 1.60 3.92 1.60 3.92 +aristocratique aristocratique adj s 0.15 2.91 0.12 2.36 +aristocratiquement aristocratiquement adv 0.00 0.07 0.00 0.07 +aristocratiques aristocratique adj p 0.15 2.91 0.03 0.54 +aristocratisme aristocratisme nom m s 0.00 0.07 0.00 0.07 +aristoloche aristoloche nom f s 0.00 0.14 0.00 0.07 +aristoloches aristoloche nom f p 0.00 0.14 0.00 0.07 +aristos aristo nom p 0.40 1.08 0.12 0.27 +aristotélicien aristotélicien adj m s 0.01 0.14 0.00 0.07 +aristotélicienne aristotélicien adj f s 0.01 0.14 0.01 0.07 +arithmomètre arithmomètre nom m s 0.00 0.07 0.00 0.07 +arithmétique arithmétique nom f s 0.57 2.23 0.57 2.23 +arithmétiquement arithmétiquement adv 0.01 0.07 0.01 0.07 +arithmétiques arithmétique adj p 0.20 0.47 0.00 0.07 +ariégeois ariégeois adj m s 0.00 0.14 0.00 0.07 +ariégeoise ariégeois adj f s 0.00 0.14 0.00 0.07 +arkose arkose nom f s 0.00 0.14 0.00 0.14 +arlequin arlequin nom m s 0.04 0.47 0.04 0.07 +arlequins arlequin nom m p 0.04 0.47 0.00 0.41 +arlésien arlésien nom m s 0.00 0.14 0.00 0.07 +arlésienne arlésienne nom f s 0.02 0.20 0.00 0.20 +arlésiennes arlésienne nom f p 0.02 0.20 0.02 0.00 +arma armer ver 29.77 28.45 0.38 1.22 ind:pas:3s; +armada armada nom f s 1.05 1.35 1.04 1.15 +armadas armada nom f p 1.05 1.35 0.01 0.20 +armadille armadille nom f s 0.00 0.07 0.00 0.07 +armagnac armagnac nom m s 0.66 0.74 0.66 0.61 +armagnacs armagnac nom m p 0.66 0.74 0.00 0.14 +armai armer ver 29.77 28.45 0.00 0.07 ind:pas:1s; +armaient armer ver 29.77 28.45 0.00 0.14 ind:imp:3p; +armait armer ver 29.77 28.45 0.16 0.54 ind:imp:3s; +armant armer ver 29.77 28.45 0.01 0.27 par:pre; +armateur armateur nom m s 0.59 2.30 0.56 1.42 +armateurs armateur nom m p 0.59 2.30 0.03 0.88 +armature armature nom f s 0.77 2.91 0.54 2.30 +armaturent armaturer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +armatures armature nom f p 0.77 2.91 0.23 0.61 +arme_miracle arme_miracle nom f s 0.10 0.00 0.10 0.00 +arme arme nom f s 220.22 111.49 114.40 37.09 +armement armement nom m s 3.34 9.80 3.01 9.05 +armements armement nom m p 3.34 9.80 0.33 0.74 +arment armer ver 29.77 28.45 0.17 0.20 ind:pre:3p; +armer armer ver 29.77 28.45 1.33 2.64 inf; +armeraient armer ver 29.77 28.45 0.00 0.07 cnd:pre:3p; +armerais armer ver 29.77 28.45 0.01 0.07 cnd:pre:1s; +armeront armer ver 29.77 28.45 0.01 0.00 ind:fut:3p; +armes arme nom f p 220.22 111.49 105.82 74.39 +armez armer ver 29.77 28.45 2.68 0.07 imp:pre:2p;ind:pre:2p; +armistice armistice nom m s 1.05 15.54 1.05 14.93 +armistices armistice nom m p 1.05 15.54 0.00 0.61 +armoire armoire nom f s 9.79 45.54 9.05 38.58 +armoires armoire nom f p 9.79 45.54 0.73 6.96 +armoirie armoirie nom f s 0.36 1.89 0.01 0.14 +armoiries armoirie nom f p 0.36 1.89 0.35 1.76 +armoise armoise nom f s 0.38 0.27 0.36 0.20 +armoises armoise nom f p 0.38 0.27 0.01 0.07 +armon armon nom m s 0.01 0.00 0.01 0.00 +armons armer ver 29.77 28.45 0.14 0.20 imp:pre:1p;ind:pre:1p; +armorial armorial nom m s 0.00 0.34 0.00 0.34 +armoricaine armoricain adj f s 0.00 0.20 0.00 0.20 +armorié armorier ver m s 0.00 0.61 0.00 0.27 par:pas; +armoriée armorier ver f s 0.00 0.61 0.00 0.07 par:pas; +armoriées armorier ver f p 0.00 0.61 0.00 0.14 par:pas; +armoriés armorier ver m p 0.00 0.61 0.00 0.14 par:pas; +armât armer ver 29.77 28.45 0.00 0.07 sub:imp:3s; +armé armer ver m s 29.77 28.45 10.97 8.31 par:pas; +armée armée nom f s 101.07 146.55 93.97 114.46 +armées armée nom f p 101.07 146.55 7.10 32.09 +arménien arménien adj m s 1.07 0.95 0.21 0.27 +arménienne arménien adj f s 1.07 0.95 0.28 0.54 +arméniennes arménien adj f p 1.07 0.95 0.00 0.07 +arméniens arménien adj m p 1.07 0.95 0.58 0.07 +arménoïde arménoïde adj m s 0.00 0.07 0.00 0.07 +armure armure nom f s 5.46 8.11 5.00 5.47 +armurerie armurerie nom f s 0.94 0.27 0.89 0.27 +armureries armurerie nom f p 0.94 0.27 0.05 0.00 +armures armure nom f p 5.46 8.11 0.46 2.64 +arméria arméria nom f s 0.00 0.14 0.00 0.07 +armérias arméria nom f p 0.00 0.14 0.00 0.07 +armurier armurier nom m s 0.75 1.69 0.60 1.22 +armuriers armurier nom m p 0.75 1.69 0.14 0.47 +armés armer ver m p 29.77 28.45 6.70 7.91 par:pas; +arnaquait arnaquer ver 6.37 0.68 0.15 0.00 ind:imp:3s; +arnaquant arnaquer ver 6.37 0.68 0.16 0.00 par:pre; +arnaque arnaque nom f s 6.27 5.14 5.49 4.59 +arnaquent arnaquer ver 6.37 0.68 0.32 0.00 ind:pre:3p; +arnaquer arnaquer ver 6.37 0.68 2.65 0.47 inf; +arnaquera arnaquer ver 6.37 0.68 0.02 0.00 ind:fut:3s; +arnaques arnaque nom f p 6.27 5.14 0.78 0.54 +arnaqueur arnaqueur nom m s 1.47 0.54 0.99 0.07 +arnaqueurs arnaqueur nom m p 1.47 0.54 0.32 0.47 +arnaqueuse arnaqueur nom f s 1.47 0.54 0.16 0.00 +arnaquez arnaquer ver 6.37 0.68 0.20 0.00 imp:pre:2p;ind:pre:2p; +arnaqué arnaquer ver m s 6.37 0.68 1.46 0.14 par:pas; +arnaquée arnaquer ver f s 6.37 0.68 0.06 0.00 par:pas; +arnaqués arnaquer ver m p 6.37 0.68 0.50 0.00 par:pas; +arnica arnica nom s 0.02 0.61 0.02 0.61 +arobase arobase nom f s 0.14 0.00 0.14 0.00 +aromate aromate nom m s 0.11 0.88 0.01 0.00 +aromates aromate nom m p 0.11 0.88 0.10 0.88 +aromathérapie aromathérapie nom f s 0.18 0.00 0.18 0.00 +aromatique aromatique adj s 0.10 0.74 0.02 0.20 +aromatiques aromatique adj p 0.10 0.74 0.07 0.54 +aromatiser aromatiser ver 0.20 0.54 0.01 0.00 inf; +aromatisé aromatiser ver m s 0.20 0.54 0.16 0.34 par:pas; +aromatisée aromatiser ver f s 0.20 0.54 0.01 0.07 par:pas; +aromatisées aromatiser ver f p 0.20 0.54 0.00 0.14 par:pas; +aromatisés aromatiser ver m p 0.20 0.54 0.01 0.00 par:pas; +aronde aronde nom f s 0.00 0.47 0.00 0.47 +arousal arousal nom m s 0.00 0.07 0.00 0.07 +arpent arpent nom m s 0.56 0.95 0.17 0.14 +arpenta arpenter ver 2.00 9.53 0.10 0.47 ind:pas:3s; +arpentage arpentage nom m s 0.20 0.27 0.20 0.20 +arpentages arpentage nom m p 0.20 0.27 0.00 0.07 +arpentai arpenter ver 2.00 9.53 0.01 0.27 ind:pas:1s; +arpentaient arpenter ver 2.00 9.53 0.00 0.47 ind:imp:3p; +arpentais arpenter ver 2.00 9.53 0.00 0.27 ind:imp:1s; +arpentait arpenter ver 2.00 9.53 0.04 1.76 ind:imp:3s; +arpentant arpenter ver 2.00 9.53 0.02 1.49 par:pre; +arpente arpenter ver 2.00 9.53 0.62 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arpentent arpenter ver 2.00 9.53 0.08 0.61 ind:pre:3p; +arpenter arpenter ver 2.00 9.53 0.64 2.30 inf; +arpenterai arpenter ver 2.00 9.53 0.03 0.00 ind:fut:1s; +arpenteront arpenter ver 2.00 9.53 0.01 0.00 ind:fut:3p; +arpenteur arpenteur nom m s 0.25 1.49 0.16 0.74 +arpenteurs arpenteur nom m p 0.25 1.49 0.09 0.74 +arpentez arpenter ver 2.00 9.53 0.02 0.00 imp:pre:2p;ind:pre:2p; +arpentions arpenter ver 2.00 9.53 0.00 0.14 ind:imp:1p; +arpentons arpenter ver 2.00 9.53 0.00 0.07 ind:pre:1p; +arpents arpent nom m p 0.56 0.95 0.38 0.81 +arpentèrent arpenter ver 2.00 9.53 0.00 0.07 ind:pas:3p; +arpenté arpenter ver m s 2.00 9.53 0.41 0.47 par:pas; +arpentée arpenter ver f s 2.00 9.53 0.00 0.07 par:pas; +arpentés arpenter ver m p 2.00 9.53 0.00 0.07 par:pas; +arpette arpette nom s 0.01 0.00 0.01 0.00 +arpion arpion nom m s 0.03 1.08 0.00 0.07 +arpions arpion nom m p 0.03 1.08 0.03 1.01 +arpège arpège nom m s 0.20 1.49 0.03 1.15 +arpèges arpège nom m p 0.20 1.49 0.18 0.34 +arpète arpète nom s 0.00 1.15 0.00 0.88 +arpètes arpète nom p 0.00 1.15 0.00 0.27 +arpégé arpéger ver m s 0.14 0.00 0.14 0.00 par:pas; +arqua arquer ver 0.34 2.36 0.00 0.07 ind:pas:3s; +arquaient arquer ver 0.34 2.36 0.00 0.41 ind:imp:3p; +arquait arquer ver 0.34 2.36 0.00 0.14 ind:imp:3s; +arquant arquer ver 0.34 2.36 0.00 0.14 par:pre; +arque arquer ver 0.34 2.36 0.00 0.07 ind:pre:1s; +arquebusade arquebusade nom f s 0.00 0.14 0.00 0.14 +arquebuse arquebuse nom f s 0.41 8.72 0.39 8.51 +arquebuses arquebuse nom f p 0.41 8.72 0.02 0.20 +arquebusiers arquebusier nom m p 0.40 0.00 0.40 0.00 +arquebusât arquebuser ver 0.01 0.00 0.01 0.00 sub:imp:3s; +arquent arquer ver 0.34 2.36 0.00 0.20 ind:pre:3p; +arquepince arquepincer ver 0.00 0.07 0.00 0.07 imp:pre:2s; +arquer arquer ver 0.34 2.36 0.31 0.47 inf; +arqué arqué adj m s 0.14 2.97 0.02 0.47 +arquée arquer ver f s 0.34 2.36 0.01 0.14 par:pas; +arquées arqué adj f p 0.14 2.97 0.10 1.49 +arqués arqué adj m p 0.14 2.97 0.01 0.61 +arracha arracher ver 54.19 113.38 0.33 11.82 ind:pas:3s; +arrachage arrachage nom m s 0.10 0.27 0.10 0.27 +arrachai arracher ver 54.19 113.38 0.04 1.15 ind:pas:1s; +arrachaient arracher ver 54.19 113.38 0.18 2.16 ind:imp:3p; +arrachais arracher ver 54.19 113.38 0.84 0.74 ind:imp:1s;ind:imp:2s; +arrachait arracher ver 54.19 113.38 0.31 9.59 ind:imp:3s; +arrachant arracher ver 54.19 113.38 0.46 7.43 par:pre; +arrache_clou arrache_clou nom m s 0.00 0.07 0.00 0.07 +arrache arracher ver 54.19 113.38 13.52 14.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrachement arrachement nom m s 0.02 3.11 0.02 2.64 +arrachements arrachement nom m p 0.02 3.11 0.00 0.47 +arrachent arracher ver 54.19 113.38 1.23 2.57 ind:pre:3p; +arracher arracher ver 54.19 113.38 17.20 34.32 ind:pre:2p;inf; +arrachera arracher ver 54.19 113.38 0.90 0.68 ind:fut:3s; +arracherai arracher ver 54.19 113.38 1.68 0.27 ind:fut:1s; +arracheraient arracher ver 54.19 113.38 0.05 0.20 cnd:pre:3p; +arracherais arracher ver 54.19 113.38 0.49 0.20 cnd:pre:1s;cnd:pre:2s; +arracherait arracher ver 54.19 113.38 0.35 1.01 cnd:pre:3s; +arracheras arracher ver 54.19 113.38 0.01 0.07 ind:fut:2s; +arracherons arracher ver 54.19 113.38 0.43 0.07 ind:fut:1p; +arracheront arracher ver 54.19 113.38 0.50 0.14 ind:fut:3p; +arraches arracher ver 54.19 113.38 0.82 0.07 ind:pre:2s; +arracheur arracheur nom m s 0.34 0.74 0.31 0.41 +arracheurs arracheur nom m p 0.34 0.74 0.00 0.27 +arracheuse arracheur nom f s 0.34 0.74 0.04 0.00 +arracheuses arracheur nom f p 0.34 0.74 0.00 0.07 +arrachez arracher ver 54.19 113.38 1.42 0.27 imp:pre:2p;ind:pre:2p; +arrachiez arracher ver 54.19 113.38 0.04 0.00 ind:imp:2p; +arrachions arracher ver 54.19 113.38 0.00 0.07 ind:imp:1p; +arrachons arracher ver 54.19 113.38 0.42 0.14 imp:pre:1p;ind:pre:1p; +arrachât arracher ver 54.19 113.38 0.00 0.61 sub:imp:3s; +arrachèrent arracher ver 54.19 113.38 0.28 0.88 ind:pas:3p; +arraché arracher ver m s 54.19 113.38 9.53 13.04 par:pas; +arrachée arracher ver f s 54.19 113.38 1.40 5.74 par:pas; +arrachées arracher ver f p 54.19 113.38 0.69 2.09 par:pas; +arrachures arrachure nom f p 0.00 0.07 0.00 0.07 +arrachés arracher ver m p 54.19 113.38 1.09 3.11 par:pas; +arraisonner arraisonner ver 0.14 0.61 0.05 0.07 inf; +arraisonnerons arraisonner ver 0.14 0.61 0.00 0.07 ind:fut:1p; +arraisonné arraisonner ver m s 0.14 0.61 0.07 0.27 par:pas; +arraisonnées arraisonner ver f p 0.14 0.61 0.00 0.07 par:pas; +arraisonnés arraisonner ver m p 0.14 0.61 0.02 0.14 par:pas; +arrange arranger ver 116.14 75.81 22.14 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arrangea arranger ver 116.14 75.81 0.25 2.43 ind:pas:3s; +arrangeai arranger ver 116.14 75.81 0.01 0.27 ind:pas:1s; +arrangeaient arranger ver 116.14 75.81 0.12 1.62 ind:imp:3p; +arrangeais arranger ver 116.14 75.81 0.45 0.74 ind:imp:1s;ind:imp:2s; +arrangeait arranger ver 116.14 75.81 1.19 9.46 ind:imp:3s; +arrangeant arranger ver 116.14 75.81 0.18 1.42 par:pre; +arrangeante arrangeant adj f s 0.10 0.47 0.04 0.07 +arrangeantes arrangeant adj f p 0.10 0.47 0.00 0.14 +arrangeants arrangeant adj m p 0.10 0.47 0.03 0.07 +arrangement arrangement nom m s 10.23 9.39 8.62 5.81 +arrangements arrangement nom m p 10.23 9.39 1.61 3.58 +arrangent arranger ver 116.14 75.81 1.30 2.50 ind:pre:3p;sub:pre:3p; +arrangeons arranger ver 116.14 75.81 0.29 0.07 imp:pre:1p;ind:pre:1p; +arrangeât arranger ver 116.14 75.81 0.00 0.07 sub:imp:3s; +arranger arranger ver 116.14 75.81 48.51 18.45 imp:pre:2p;inf; +arrangera arranger ver 116.14 75.81 8.40 2.30 ind:fut:3s; +arrangerai arranger ver 116.14 75.81 3.51 2.57 ind:fut:1s; +arrangeraient arranger ver 116.14 75.81 0.01 0.41 cnd:pre:3p; +arrangerais arranger ver 116.14 75.81 0.61 0.34 cnd:pre:1s;cnd:pre:2s; +arrangerait arranger ver 116.14 75.81 3.05 3.31 cnd:pre:3s; +arrangeras arranger ver 116.14 75.81 0.24 0.20 ind:fut:2s; +arrangerez arranger ver 116.14 75.81 0.14 0.34 ind:fut:2p; +arrangerions arranger ver 116.14 75.81 0.00 0.07 cnd:pre:1p; +arrangerons arranger ver 116.14 75.81 0.39 0.47 ind:fut:1p; +arrangeront arranger ver 116.14 75.81 0.30 0.41 ind:fut:3p; +arranges arranger ver 116.14 75.81 1.50 0.47 ind:pre:2s; +arrangeur arrangeur nom m s 0.10 0.07 0.06 0.00 +arrangeurs arrangeur nom m p 0.10 0.07 0.04 0.07 +arrangez arranger ver 116.14 75.81 2.42 0.74 imp:pre:2p;ind:pre:2p; +arrangiez arranger ver 116.14 75.81 0.01 0.07 ind:imp:2p; +arrangions arranger ver 116.14 75.81 0.04 0.20 ind:imp:1p; +arrangèrent arranger ver 116.14 75.81 0.01 0.34 ind:pas:3p; +arrangé arranger ver m s 116.14 75.81 18.24 9.93 par:pas; +arrangée arranger ver f s 116.14 75.81 1.29 2.50 par:pas; +arrangées arranger ver f p 116.14 75.81 0.41 0.34 par:pas; +arrangés arranger ver m p 116.14 75.81 1.13 0.81 par:pas; +arrestation arrestation nom f s 20.59 10.41 17.59 8.58 +arrestations arrestation nom f p 20.59 10.41 3.00 1.82 +arrhes arrhe nom f p 0.30 0.41 0.30 0.41 +arrima arrimer ver 0.97 2.91 0.00 0.07 ind:pas:3s; +arrimage arrimage nom m s 0.61 0.20 0.61 0.20 +arrimais arrimer ver 0.97 2.91 0.00 0.07 ind:imp:1s; +arrimait arrimer ver 0.97 2.91 0.00 0.20 ind:imp:3s; +arrimant arrimer ver 0.97 2.91 0.10 0.07 par:pre; +arrime arrimer ver 0.97 2.91 0.05 0.00 imp:pre:2s;ind:pre:3s; +arriment arrimer ver 0.97 2.91 0.03 0.07 ind:pre:3p; +arrimer arrimer ver 0.97 2.91 0.32 0.41 inf; +arrimez arrimer ver 0.97 2.91 0.08 0.00 imp:pre:2p; +arrimé arrimer ver m s 0.97 2.91 0.16 0.68 par:pas; +arrimée arrimer ver f s 0.97 2.91 0.05 0.74 par:pas; +arrimées arrimer ver f p 0.97 2.91 0.11 0.27 par:pas; +arrimés arrimer ver m p 0.97 2.91 0.08 0.34 par:pas; +arrière_automne arrière_automne nom m 0.00 0.14 0.00 0.14 +arrière_ban arrière_ban nom m s 0.00 0.20 0.00 0.20 +arrière_boutique arrière_boutique nom f s 0.31 6.35 0.31 5.95 +arrière_boutique arrière_boutique nom f p 0.31 6.35 0.00 0.41 +arrière_cabinet arrière_cabinet nom m p 0.00 0.07 0.00 0.07 +arrière_cour arrière_cour nom f s 0.45 1.35 0.41 1.01 +arrière_cour arrière_cour nom f p 0.45 1.35 0.03 0.34 +arrière_cousin arrière_cousin nom m s 0.12 0.00 0.12 0.00 +arrière_cuisine arrière_cuisine nom f s 0.02 0.14 0.02 0.07 +arrière_cuisine arrière_cuisine nom f p 0.02 0.14 0.00 0.07 +arrière_fond arrière_fond nom m s 0.04 0.95 0.04 0.95 +arrière_garde arrière_garde nom f s 0.47 2.03 0.47 1.69 +arrière_garde arrière_garde nom f p 0.47 2.03 0.00 0.34 +arrière_goût arrière_goût nom m s 0.55 1.28 0.55 1.22 +arrière_goût arrière_goût nom m p 0.55 1.28 0.00 0.07 +arrière_gorge arrière_gorge nom f s 0.00 0.27 0.00 0.27 +arrière_grand_mère arrière_grand_mère nom f s 0.85 2.57 0.83 2.30 +arrière_grand_mère arrière_grand_mère nom f p 0.85 2.57 0.00 0.20 +arrière_grand_oncle arrière_grand_oncle nom m s 0.04 0.41 0.04 0.41 +arrière_grand_père arrière_grand_père nom m s 1.48 4.12 1.48 3.78 +arrière_grand_tante arrière_grand_tante nom f s 0.00 0.20 0.00 0.14 +arrière_grand_tante arrière_grand_tante nom f p 0.00 0.20 0.00 0.07 +arrière_grand_mère arrière_grand_mère nom f p 0.85 2.57 0.02 0.07 +arrière_grand_parent arrière_grand_parent nom m p 0.16 1.08 0.16 1.08 +arrière_grand_père arrière_grand_père nom m p 1.48 4.12 0.00 0.34 +arrière_loge arrière_loge nom m s 0.00 0.07 0.00 0.07 +arrière_magasin arrière_magasin nom m 0.00 0.07 0.00 0.07 +arrière_main arrière_main nom s 0.00 0.07 0.00 0.07 +arrière_monde arrière_monde nom m s 0.00 0.14 0.00 0.14 +arrière_neveux arrière_neveux nom m p 0.00 0.07 0.00 0.07 +arrière_pays arrière_pays nom m 0.37 1.15 0.37 1.15 +arrière_pensée arrière_pensée nom f s 0.91 5.95 0.79 3.58 +arrière_pensée arrière_pensée nom f p 0.91 5.95 0.13 2.36 +arrière_petit_fils arrière_petit_fils nom m 0.14 0.61 0.14 0.61 +arrière_petit_neveu arrière_petit_neveu nom m s 0.01 0.27 0.01 0.27 +arrière_petite_fille arrière_petite_fille nom f s 0.13 0.81 0.13 0.47 +arrière_petite_nièce arrière_petite_nièce nom f s 0.00 0.14 0.00 0.07 +arrière_petite_fille arrière_petite_fille nom f p 0.13 0.81 0.00 0.34 +arrière_petite_nièce arrière_petite_nièce nom f p 0.00 0.14 0.00 0.07 +arrière_petit_enfant arrière_petit_enfant nom m p 0.36 0.27 0.36 0.27 +arrière_petits_fils arrière_petits_fils nom m p 0.00 0.41 0.00 0.41 +arrière_petits_neveux arrière_petits_neveux nom m p 0.00 0.07 0.00 0.07 +arrière_plan arrière_plan nom m s 0.94 2.70 0.91 2.03 +arrière_plan arrière_plan nom m p 0.94 2.70 0.02 0.68 +arrière_saison arrière_saison nom f s 0.00 1.22 0.00 1.22 +arrière_salle arrière_salle nom f s 0.28 2.36 0.24 2.16 +arrière_salle arrière_salle nom f p 0.28 2.36 0.04 0.20 +arrière_train arrière_train nom m s 0.66 1.69 0.64 1.62 +arrière_train arrière_train nom m p 0.66 1.69 0.03 0.07 +arrière arrière ono 2.75 0.14 2.75 0.14 +arrières arrière nom m p 52.15 95.00 4.76 4.73 +arriération arriération nom f s 0.03 0.27 0.03 0.27 +arriéré arriéré nom m s 0.79 2.03 0.22 0.54 +arriérée arriéré adj f s 0.57 1.62 0.20 0.34 +arriérées arriéré adj f p 0.57 1.62 0.04 0.14 +arriérés arriéré nom m p 0.79 2.03 0.54 1.35 +arriva arriver ver 1252.39 723.04 5.75 47.50 ind:pas:3s; +arrivage arrivage nom m s 0.82 1.96 0.76 1.55 +arrivages arrivage nom m p 0.82 1.96 0.07 0.41 +arrivai arriver ver 1252.39 723.04 0.49 6.76 ind:pas:1s; +arrivaient arriver ver 1252.39 723.04 2.72 22.91 ind:imp:3p; +arrivais arriver ver 1252.39 723.04 11.24 18.51 ind:imp:1s;ind:imp:2s; +arrivait arriver ver 1252.39 723.04 22.16 105.00 ind:imp:3s; +arrivant arriver ver 1252.39 723.04 9.19 22.57 par:pre; +arrivante arrivant nom f s 0.48 5.07 0.03 0.27 +arrivants arrivant nom m p 0.48 5.07 0.27 2.64 +arrivas arriver ver 1252.39 723.04 0.02 0.07 ind:pas:2s; +arrivassent arriver ver 1252.39 723.04 0.00 0.07 sub:imp:3p; +arrive arriver ver 1252.39 723.04 525.10 164.12 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrivent arriver ver 1252.39 723.04 58.12 21.82 ind:pre:3p;sub:pre:3p; +arriver arriver ver 1252.39 723.04 182.85 95.00 inf;; +arrivera arriver ver 1252.39 723.04 53.86 10.07 ind:fut:3s; +arriverai arriver ver 1252.39 723.04 13.08 3.85 ind:fut:1s; +arriveraient arriver ver 1252.39 723.04 0.58 1.22 cnd:pre:3p; +arriverais arriver ver 1252.39 723.04 3.93 1.76 cnd:pre:1s;cnd:pre:2s; +arriverait arriver ver 1252.39 723.04 11.06 9.73 cnd:pre:3s; +arriveras arriver ver 1252.39 723.04 8.98 1.96 ind:fut:2s; +arriverez arriver ver 1252.39 723.04 5.30 1.22 ind:fut:2p; +arriveriez arriver ver 1252.39 723.04 0.46 0.07 cnd:pre:2p; +arriverions arriver ver 1252.39 723.04 0.25 0.27 cnd:pre:1p; +arriverons arriver ver 1252.39 723.04 3.61 1.42 ind:fut:1p; +arriveront arriver ver 1252.39 723.04 5.17 1.62 ind:fut:3p; +arrives arriver ver 1252.39 723.04 28.82 3.31 ind:pre:2s; +arrivez arriver ver 1252.39 723.04 10.69 2.23 imp:pre:2p;ind:pre:2p; +arriviez arriver ver 1252.39 723.04 1.30 0.88 ind:imp:2p; +arrivions arriver ver 1252.39 723.04 0.99 4.59 ind:imp:1p; +arrivisme arrivisme nom m s 0.16 0.27 0.16 0.27 +arriviste arriviste nom s 0.77 0.41 0.60 0.20 +arrivistes arriviste nom p 0.77 0.41 0.17 0.20 +arrivâmes arriver ver 1252.39 723.04 0.46 3.18 ind:pas:1p; +arrivons arriver ver 1252.39 723.04 6.09 4.86 imp:pre:1p;ind:pre:1p; +arrivât arriver ver 1252.39 723.04 0.43 2.09 sub:imp:3s; +arrivâtes arriver ver 1252.39 723.04 0.01 0.07 ind:pas:2p; +arrivèrent arriver ver 1252.39 723.04 1.36 12.57 ind:pas:3p; +arrivé arriver ver m s 1252.39 723.04 203.06 97.91 par:pas;par:pas;par:pas; +arrivée arrivée nom f s 42.66 80.00 41.90 77.84 +arrivées arriver ver f p 1252.39 723.04 4.24 2.91 par:pas; +arrivés arriver ver m p 1252.39 723.04 32.78 25.81 par:pas; +arrogamment arrogamment adv 0.00 0.47 0.00 0.47 +arrogance arrogance nom f s 3.92 3.85 3.92 3.85 +arrogant arrogant adj m s 5.29 4.05 2.98 2.16 +arrogante arrogant adj f s 5.29 4.05 1.53 1.01 +arrogantes arrogant adj f p 5.29 4.05 0.18 0.20 +arrogants arrogant adj m p 5.29 4.05 0.59 0.68 +arroge arroger ver 0.39 1.01 0.22 0.14 ind:pre:1s;ind:pre:3s; +arrogeaient arroger ver 0.39 1.01 0.00 0.07 ind:imp:3p; +arrogeait arroger ver 0.39 1.01 0.00 0.07 ind:imp:3s; +arrogeant arroger ver 0.39 1.01 0.00 0.07 par:pre; +arrogent arroger ver 0.39 1.01 0.14 0.00 ind:pre:3p; +arroger arroger ver 0.39 1.01 0.00 0.54 inf; +arrogèrent arroger ver 0.39 1.01 0.01 0.00 ind:pas:3p; +arrogé arroger ver m s 0.39 1.01 0.02 0.07 par:pas; +arrogée arroger ver f s 0.39 1.01 0.00 0.07 par:pas; +arroi arroi nom m s 0.00 0.68 0.00 0.68 +arrondi arrondi adj m s 0.57 7.84 0.20 2.91 +arrondie arrondi adj f s 0.57 7.84 0.17 1.96 +arrondies arrondi adj f p 0.57 7.84 0.04 0.95 +arrondir arrondir ver 2.04 14.53 1.06 2.23 inf; +arrondira arrondir ver 2.04 14.53 0.15 0.07 ind:fut:3s; +arrondirait arrondir ver 2.04 14.53 0.01 0.07 cnd:pre:3s; +arrondirent arrondir ver 2.04 14.53 0.00 0.20 ind:pas:3p; +arrondis arrondir ver m p 2.04 14.53 0.22 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +arrondissaient arrondir ver 2.04 14.53 0.00 0.74 ind:imp:3p; +arrondissait arrondir ver 2.04 14.53 0.20 2.43 ind:imp:3s; +arrondissant arrondir ver 2.04 14.53 0.01 0.74 par:pre; +arrondissement arrondissement nom m s 0.95 8.38 0.94 7.30 +arrondissements arrondissement nom m p 0.95 8.38 0.01 1.08 +arrondissent arrondir ver 2.04 14.53 0.05 1.08 ind:pre:3p; +arrondissons arrondir ver 2.04 14.53 0.04 0.00 imp:pre:1p; +arrondit arrondir ver 2.04 14.53 0.14 2.30 ind:pre:3s;ind:pas:3s; +arrosa arroser ver 14.07 19.73 0.00 0.54 ind:pas:3s; +arrosage arrosage nom m s 1.72 1.89 1.72 1.89 +arrosaient arroser ver 14.07 19.73 0.04 0.68 ind:imp:3p; +arrosais arroser ver 14.07 19.73 0.11 0.07 ind:imp:1s;ind:imp:2s; +arrosait arroser ver 14.07 19.73 0.62 2.64 ind:imp:3s; +arrosant arroser ver 14.07 19.73 0.30 1.35 par:pre; +arrose arroser ver 14.07 19.73 3.34 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arrosent arroser ver 14.07 19.73 0.22 0.61 ind:pre:3p; +arroser arroser ver 14.07 19.73 5.53 4.46 inf; +arrosera arroser ver 14.07 19.73 0.02 0.00 ind:fut:3s; +arroserais arroser ver 14.07 19.73 0.00 0.14 cnd:pre:1s; +arroserait arroser ver 14.07 19.73 0.02 0.14 cnd:pre:3s; +arroseras arroser ver 14.07 19.73 0.02 0.00 ind:fut:2s; +arroserez arroser ver 14.07 19.73 0.00 0.07 ind:fut:2p; +arroseront arroser ver 14.07 19.73 0.01 0.07 ind:fut:3p; +arroses arroser ver 14.07 19.73 0.19 0.07 ind:pre:2s; +arroseur arroseur nom m s 0.43 0.47 0.22 0.14 +arroseurs arroseur nom m p 0.43 0.47 0.19 0.07 +arroseuse arroseur nom f s 0.43 0.47 0.02 0.20 +arroseuses arroseuse nom f p 0.01 0.00 0.01 0.00 +arrosez arroser ver 14.07 19.73 0.70 0.14 imp:pre:2p;ind:pre:2p; +arrosiez arroser ver 14.07 19.73 0.00 0.07 ind:imp:2p; +arrosions arroser ver 14.07 19.73 0.00 0.14 ind:imp:1p; +arrosoir arrosoir nom m s 0.37 3.58 0.37 3.04 +arrosoirs arrosoir nom m p 0.37 3.58 0.00 0.54 +arrosons arroser ver 14.07 19.73 0.40 0.14 imp:pre:1p;ind:pre:1p; +arrosèrent arroser ver 14.07 19.73 0.01 0.14 ind:pas:3p; +arrosé arroser ver m s 14.07 19.73 1.70 2.97 par:pas; +arrosée arroser ver f s 14.07 19.73 0.28 1.22 par:pas; +arrosées arroser ver f p 14.07 19.73 0.26 0.81 par:pas; +arrosés arroser ver m p 14.07 19.73 0.31 0.88 par:pas; +arrérages arrérage nom m p 0.20 0.14 0.20 0.14 +arrêt_buffet arrêt_buffet nom m s 0.01 0.07 0.00 0.07 +arrêt arrêt nom m s 50.88 53.92 46.80 46.82 +arrêta arrêter ver 993.79 462.50 1.68 93.31 ind:pas:3s; +arrêtai arrêter ver 993.79 462.50 0.48 6.15 ind:pas:1s; +arrêtaient arrêter ver 993.79 462.50 1.13 9.59 ind:imp:3p; +arrêtais arrêter ver 993.79 462.50 3.70 4.66 ind:imp:1s;ind:imp:2s; +arrêtait arrêter ver 993.79 462.50 8.97 37.09 ind:imp:3s; +arrêtant arrêter ver 993.79 462.50 1.00 16.01 par:pre; +arrêtassent arrêter ver 993.79 462.50 0.00 0.20 sub:imp:3p; +arrête_boeuf arrête_boeuf nom m s 0.00 0.07 0.00 0.07 +arrête arrêter ver 993.79 462.50 456.59 85.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrêtent arrêter ver 993.79 462.50 9.22 10.81 ind:pre:3p;sub:pre:3p; +arrêter arrêter ver 993.79 462.50 178.62 80.61 inf;;inf;;inf;;inf;; +arrêtera arrêter ver 993.79 462.50 14.42 2.70 ind:fut:3s; +arrêterai arrêter ver 993.79 462.50 4.00 0.54 ind:fut:1s; +arrêteraient arrêter ver 993.79 462.50 0.75 0.34 cnd:pre:3p; +arrêterais arrêter ver 993.79 462.50 2.13 0.61 cnd:pre:1s;cnd:pre:2s; +arrêterait arrêter ver 993.79 462.50 1.77 2.84 cnd:pre:3s; +arrêteras arrêter ver 993.79 462.50 1.40 0.34 ind:fut:2s; +arrêterez arrêter ver 993.79 462.50 1.27 0.07 ind:fut:2p; +arrêteriez arrêter ver 993.79 462.50 0.18 0.14 cnd:pre:2p; +arrêterions arrêter ver 993.79 462.50 0.04 0.07 cnd:pre:1p; +arrêterons arrêter ver 993.79 462.50 0.90 0.68 ind:fut:1p; +arrêteront arrêter ver 993.79 462.50 2.49 0.88 ind:fut:3p; +arrêtes arrêter ver 993.79 462.50 21.90 1.96 ind:pre:2s;sub:pre:2s; +arrêtez arrêter ver 993.79 462.50 174.12 6.69 imp:pre:2p;ind:pre:2p; +arrêtiez arrêter ver 993.79 462.50 1.56 0.20 ind:imp:2p; +arrêtions arrêter ver 993.79 462.50 0.55 1.42 ind:imp:1p;sub:pre:1p; +arrêtâmes arrêter ver 993.79 462.50 0.01 1.22 ind:pas:1p; +arrêtons arrêter ver 993.79 462.50 6.60 2.70 imp:pre:1p;ind:pre:1p; +arrêtât arrêter ver 993.79 462.50 0.00 1.42 sub:imp:3s; +arrêt_buffet arrêt_buffet nom m p 0.01 0.07 0.01 0.00 +arrêts arrêt nom m p 50.88 53.92 4.08 7.09 +arrêtèrent arrêter ver 993.79 462.50 0.24 10.00 ind:pas:3p; +arrêté arrêter ver m s 993.79 462.50 77.28 48.24 par:pas; +arrêtée arrêter ver f s 993.79 462.50 11.22 17.97 par:pas; +arrêtées arrêter ver f p 993.79 462.50 1.47 3.38 par:pas; +arrêtés arrêter ver m p 993.79 462.50 8.11 14.59 par:pas; +ars ars nom m 0.94 0.07 0.94 0.07 +arsacide arsacide nom s 0.00 0.07 0.00 0.07 +arsenal arsenal nom m s 2.36 5.74 2.27 4.86 +arsenaux arsenal nom m p 2.36 5.74 0.09 0.88 +arsenic arsenic nom m s 1.10 1.22 1.10 1.22 +arsenicales arsenical adj f p 0.00 0.07 0.00 0.07 +arsouille arsouille nom s 0.23 0.54 0.23 0.41 +arsouiller arsouiller ver 0.00 0.07 0.00 0.07 inf; +arsouilles arsouille nom p 0.23 0.54 0.00 0.14 +arsénieux arsénieux adj m s 0.00 0.07 0.00 0.07 +art art nom m s 72.79 91.49 65.93 81.49 +artefact artefact nom m s 0.67 0.14 0.34 0.00 +artefacts artefact nom m p 0.67 0.14 0.33 0.14 +arène arène nom f s 2.50 5.54 2.25 4.12 +arènes arène nom f p 2.50 5.54 0.25 1.42 +arçon arçon nom m s 0.02 0.95 0.01 0.81 +arçons arçon nom m p 0.02 0.95 0.01 0.14 +arthrite arthrite nom f s 1.75 0.34 1.75 0.27 +arthrites arthrite nom f p 1.75 0.34 0.00 0.07 +arthritique arthritique adj s 0.14 0.41 0.03 0.34 +arthritiques arthritique adj m p 0.14 0.41 0.11 0.07 +arthrodèse arthrodèse nom f s 0.00 0.14 0.00 0.14 +arthropathie arthropathie nom f s 0.01 0.00 0.01 0.00 +arthroplastie arthroplastie nom f s 0.01 0.00 0.01 0.00 +arthropodes arthropode nom m p 0.04 0.07 0.04 0.07 +arthroscopie arthroscopie nom f s 0.01 0.00 0.01 0.00 +arthrose arthrose nom f s 0.86 0.61 0.86 0.47 +arthroses arthrose nom f p 0.86 0.61 0.00 0.14 +arthurien arthurien adj m s 0.04 0.20 0.01 0.07 +arthurienne arthurien adj f s 0.04 0.20 0.03 0.07 +arthuriens arthurien adj m p 0.04 0.20 0.00 0.07 +artichaut artichaut nom m s 2.39 2.57 1.45 0.95 +artichauts artichaut nom m p 2.39 2.57 0.94 1.62 +artiche artiche nom m s 0.01 1.82 0.01 1.82 +article_choc article_choc nom m s 0.00 0.07 0.00 0.07 +article article nom m s 44.45 50.34 33.39 31.69 +articles article nom m p 44.45 50.34 11.06 18.65 +articula articuler ver 1.21 12.97 0.00 1.82 ind:pas:3s; +articulai articuler ver 1.21 12.97 0.00 0.07 ind:pas:1s; +articulaient articuler ver 1.21 12.97 0.00 0.07 ind:imp:3p; +articulaire articulaire adj s 0.17 0.07 0.09 0.00 +articulaires articulaire adj p 0.17 0.07 0.08 0.07 +articulait articuler ver 1.21 12.97 0.04 0.68 ind:imp:3s; +articulant articuler ver 1.21 12.97 0.02 1.28 par:pre; +articulation articulation nom f s 1.51 6.01 0.54 2.16 +articulations articulation nom f p 1.51 6.01 0.97 3.85 +articule articuler ver 1.21 12.97 0.50 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +articulent articuler ver 1.21 12.97 0.02 0.07 ind:pre:3p; +articuler articuler ver 1.21 12.97 0.34 4.32 inf; +articulet articulet nom m s 0.00 0.14 0.00 0.14 +articulez articuler ver 1.21 12.97 0.19 0.07 imp:pre:2p;ind:pre:2p; +articulé articulé adj m s 0.27 3.65 0.13 1.42 +articulée articuler ver f s 1.21 12.97 0.01 0.34 par:pas; +articulées articulé adj f p 0.27 3.65 0.12 0.41 +articulés articulé adj m p 0.27 3.65 0.03 1.08 +artifice artifice nom m s 6.95 10.95 5.38 8.51 +artifices artifice nom m p 6.95 10.95 1.57 2.43 +artificialité artificialité nom f s 0.01 0.00 0.01 0.00 +artificiel artificiel adj m s 7.12 12.16 2.55 3.51 +artificielle artificiel adj f s 7.12 12.16 2.99 4.39 +artificiellement artificiellement adv 0.48 1.42 0.48 1.42 +artificielles artificiel adj f p 7.12 12.16 0.87 2.57 +artificiels artificiel adj m p 7.12 12.16 0.71 1.69 +artificier artificier nom m s 0.79 1.35 0.44 0.68 +artificiers artificier nom m p 0.79 1.35 0.34 0.68 +artificieuse artificieux adj f s 0.14 0.14 0.00 0.07 +artificieuses artificieux adj f p 0.14 0.14 0.14 0.07 +artiflot artiflot nom m s 0.00 0.34 0.00 0.07 +artiflots artiflot nom m p 0.00 0.34 0.00 0.27 +artillerie artillerie nom f s 8.63 17.36 8.63 17.36 +artilleur artilleur nom m s 0.79 8.45 0.47 2.16 +artilleurs artilleur nom m p 0.79 8.45 0.32 6.28 +artimon artimon nom m s 0.22 0.07 0.22 0.07 +artisan artisan nom m s 3.09 10.74 1.79 5.00 +artisanal artisanal adj m s 0.75 1.62 0.15 0.41 +artisanale artisanal adj f s 0.75 1.62 0.30 0.68 +artisanalement artisanalement adv 0.01 0.07 0.01 0.07 +artisanales artisanal adj f p 0.75 1.62 0.25 0.27 +artisanat artisanat nom m s 0.77 1.15 0.77 1.15 +artisanaux artisanal adj m p 0.75 1.62 0.05 0.27 +artisane artisan nom f s 3.09 10.74 0.00 0.07 +artisans artisan nom m p 3.09 10.74 1.30 5.68 +artison artison nom m s 0.00 0.07 0.00 0.07 +artiste_peintre artiste_peintre nom s 0.02 0.14 0.02 0.14 +artiste artiste nom s 40.78 45.88 28.00 28.85 +artistement artistement adv 0.00 0.81 0.00 0.81 +artistes artiste nom p 40.78 45.88 12.78 17.03 +artistique artistique adj s 10.00 10.00 8.08 6.76 +artistiquement artistiquement adv 0.26 0.61 0.26 0.61 +artistiques artistique adj p 10.00 10.00 1.92 3.24 +arts art nom m p 72.79 91.49 6.86 10.00 +artère artère nom f s 5.13 7.09 3.13 2.16 +artères artère nom f p 5.13 7.09 2.00 4.93 +artéfact artéfact nom m s 0.13 0.00 0.13 0.00 +artériectomie artériectomie nom f s 0.00 0.07 0.00 0.07 +artériel artériel adj m s 1.76 0.61 0.19 0.20 +artérielle artériel adj f s 1.76 0.61 1.55 0.41 +artérielles artériel adj f p 1.76 0.61 0.02 0.00 +artériographie artériographie nom f s 0.09 0.00 0.09 0.00 +artériole artériole nom f s 0.03 0.14 0.01 0.00 +artérioles artériole nom f p 0.03 0.14 0.01 0.14 +artériopathie artériopathie nom f s 0.16 0.00 0.16 0.00 +artériosclérose artériosclérose nom f s 0.17 0.27 0.17 0.27 +artérite artérite nom f s 0.03 0.07 0.03 0.07 +artésien artésien adj m s 0.01 0.27 0.01 0.27 +aréflexie aréflexie nom f s 0.02 0.00 0.02 0.00 +arum arum nom m s 0.09 0.61 0.02 0.00 +arums arum nom m p 0.09 0.61 0.07 0.61 +aréna aréna nom m s 0.05 0.00 0.05 0.00 +aréole aréole nom f s 0.04 0.54 0.04 0.34 +aréoles aréole nom f p 0.04 0.54 0.00 0.20 +aréopage aréopage nom m s 0.10 1.08 0.10 1.01 +aréopages aréopage nom m p 0.10 1.08 0.00 0.07 +aréopagite aréopagite nom m s 0.00 0.07 0.00 0.07 +aréquier aréquier nom m s 0.14 0.00 0.14 0.00 +aruspice aruspice nom m s 0.15 0.07 0.15 0.00 +aruspices aruspice nom m p 0.15 0.07 0.00 0.07 +arête arête nom f s 1.60 10.81 0.70 6.01 +arêtes arête nom f p 1.60 10.81 0.90 4.80 +arétin arétin nom m s 0.00 0.07 0.00 0.07 +arverne arverne nom s 0.00 0.14 0.00 0.07 +arvernes arverne nom p 0.00 0.14 0.00 0.07 +aryen aryen adj m s 1.84 0.61 0.22 0.14 +aryenne aryen adj f s 1.84 0.61 1.09 0.34 +aryennes aryen adj f p 1.84 0.61 0.03 0.07 +aryens aryen adj m p 1.84 0.61 0.50 0.07 +arythmie arythmie nom f s 0.64 0.07 0.64 0.07 +arythmique arythmique adj m s 0.03 0.00 0.03 0.00 +arzels arzel nom m p 0.00 0.07 0.00 0.07 +as_rois as_rois nom m 0.01 0.00 0.01 0.00 +as avoir aux 18559.23 12800.81 2144.15 294.46 ind:pre:2s; +asa asa nom m 0.02 0.00 0.02 0.00 +asana asana nom f s 0.02 0.00 0.02 0.00 +asbeste asbeste nom m s 0.01 0.00 0.01 0.00 +asbestose asbestose nom f s 0.01 0.00 0.01 0.00 +ascaris ascaris nom m 0.20 0.07 0.20 0.07 +ascendance ascendance nom f s 0.24 2.23 0.24 1.89 +ascendances ascendance nom f p 0.24 2.23 0.00 0.34 +ascendant ascendant adj m s 1.26 2.36 1.10 1.08 +ascendante ascendant adj f s 1.26 2.36 0.13 0.88 +ascendantes ascendant adj f p 1.26 2.36 0.00 0.27 +ascendants ascendant adj m p 1.26 2.36 0.03 0.14 +ascendre ascendre ver 0.05 0.00 0.04 0.00 inf; +ascendu ascendre ver m s 0.05 0.00 0.01 0.00 par:pas; +ascenseur ascenseur nom m s 25.34 25.88 22.87 23.65 +ascenseurs ascenseur nom m p 25.34 25.88 2.48 2.23 +ascension ascension nom f s 3.87 8.04 3.65 7.70 +ascensionne ascensionner ver 0.01 0.07 0.00 0.07 ind:pre:3s; +ascensionnel ascensionnel adj m s 0.05 0.34 0.02 0.14 +ascensionnelle ascensionnel adj f s 0.05 0.34 0.02 0.20 +ascensionnelles ascensionnel adj f p 0.05 0.34 0.01 0.00 +ascensionner ascensionner ver 0.01 0.07 0.01 0.00 inf; +ascensions ascension nom f p 3.87 8.04 0.22 0.34 +ascite ascite nom f s 0.04 0.00 0.04 0.00 +asclépias asclépias nom m 0.01 0.14 0.01 0.14 +ascorbique ascorbique adj m s 0.01 0.00 0.01 0.00 +ascot ascot nom s 0.03 0.00 0.03 0.00 +ascèse ascèse nom f s 0.00 1.35 0.00 1.28 +ascèses ascèse nom f p 0.00 1.35 0.00 0.07 +ascète ascète nom s 0.06 0.74 0.02 0.54 +ascètes ascète nom p 0.06 0.74 0.04 0.20 +ascétique ascétique adj s 0.65 1.22 0.11 0.88 +ascétiques ascétique adj p 0.65 1.22 0.54 0.34 +ascétisme ascétisme nom m s 0.14 0.74 0.14 0.74 +asdic asdic nom m s 0.10 0.07 0.10 0.07 +ase as nom_sup f s 18.80 6.62 0.02 0.20 +asepsie asepsie nom f s 0.00 0.07 0.00 0.07 +aseptique aseptique adj s 0.01 0.27 0.01 0.20 +aseptiques aseptique adj p 0.01 0.27 0.00 0.07 +aseptisant aseptiser ver 0.04 0.07 0.01 0.00 par:pre; +aseptisation aseptisation nom f s 0.00 0.14 0.00 0.14 +aseptisé aseptisé adj m s 0.14 0.68 0.09 0.34 +aseptisée aseptisé adj f s 0.14 0.68 0.02 0.14 +aseptisées aseptisé adj f p 0.14 0.68 0.00 0.07 +aseptisés aseptisé adj m p 0.14 0.68 0.03 0.14 +asexualité asexualité nom f s 0.01 0.00 0.01 0.00 +asexuelle asexuel adj f s 0.02 0.00 0.02 0.00 +asexué asexué adj m s 0.33 0.95 0.13 0.14 +asexuée asexué adj f s 0.33 0.95 0.12 0.54 +asexuées asexué adj f p 0.33 0.95 0.02 0.14 +asexués asexué adj m p 0.33 0.95 0.07 0.14 +ashanti ashanti nom s 0.00 0.07 0.00 0.07 +ashkénaze ashkénaze nom s 0.00 0.27 0.00 0.07 +ashkénazes ashkénaze nom p 0.00 0.27 0.00 0.20 +ashram ashram nom m s 0.16 0.07 0.16 0.07 +asiate asiate adj s 0.01 0.47 0.01 0.47 +asiatique asiatique adj s 3.00 2.77 2.46 1.82 +asiatiques asiatique nom p 1.30 0.74 0.69 0.47 +asiatisé asiatiser ver m s 0.00 0.07 0.00 0.07 par:pas; +asilaire asilaire adj m s 0.00 0.07 0.00 0.07 +asile asile nom m s 26.56 13.58 25.52 11.55 +asiles asile nom m p 26.56 13.58 1.04 2.03 +asociabilité asociabilité nom f s 0.01 0.07 0.01 0.07 +asocial asocial adj m s 0.40 0.74 0.07 0.54 +asociale asocial adj f s 0.40 0.74 0.03 0.00 +asociales asocial adj f p 0.40 0.74 0.03 0.07 +asociaux asocial adj m p 0.40 0.74 0.28 0.14 +asparagus asparagus nom m 0.01 0.41 0.01 0.41 +aspartam aspartam nom m s 0.07 0.00 0.07 0.00 +aspartame aspartame nom m s 0.01 0.00 0.01 0.00 +aspartique aspartique adj m s 0.01 0.00 0.01 0.00 +aspect aspect nom m s 12.78 41.28 9.88 36.01 +aspects aspect nom m p 12.78 41.28 2.90 5.27 +asperge asperge nom f s 1.74 8.65 0.71 5.88 +aspergea asperger ver 2.48 7.23 0.00 0.74 ind:pas:3s; +aspergeaient asperger ver 2.48 7.23 0.00 0.34 ind:imp:3p; +aspergeait asperger ver 2.48 7.23 0.07 0.61 ind:imp:3s; +aspergeant asperger ver 2.48 7.23 0.03 0.61 par:pre; +aspergent asperger ver 2.48 7.23 0.16 0.07 ind:pre:3p; +asperger asperger ver 2.48 7.23 0.79 1.28 inf; +aspergerait asperger ver 2.48 7.23 0.00 0.14 cnd:pre:3s; +asperges asperge nom f p 1.74 8.65 1.03 2.77 +aspergez asperger ver 2.48 7.23 0.10 0.07 imp:pre:2p;ind:pre:2p; +aspergillose aspergillose nom f s 0.02 0.00 0.02 0.00 +aspergillus aspergillus nom m 0.07 0.00 0.07 0.00 +aspergèrent asperger ver 2.48 7.23 0.00 0.20 ind:pas:3p; +aspergé asperger ver m s 2.48 7.23 0.61 1.08 par:pas; +aspergée asperger ver f s 2.48 7.23 0.11 0.41 par:pas; +aspergées asperger ver f p 2.48 7.23 0.01 0.14 par:pas; +aspergés asperger ver m p 2.48 7.23 0.06 0.07 par:pas; +aspersion aspersion nom f s 0.06 0.68 0.06 0.47 +aspersions aspersion nom f p 0.06 0.68 0.00 0.20 +asphalte asphalte nom m s 1.40 6.89 1.40 6.89 +asphalter asphalter ver 0.12 0.47 0.01 0.00 inf; +asphalté asphalter ver m s 0.12 0.47 0.01 0.14 par:pas; +asphaltée asphalter ver f s 0.12 0.47 0.10 0.14 par:pas; +asphaltées asphalter ver f p 0.12 0.47 0.00 0.07 par:pas; +asphaltés asphalter ver m p 0.12 0.47 0.00 0.07 par:pas; +asphodèle asphodèle nom m s 0.03 0.61 0.02 0.14 +asphodèles asphodèle nom m p 0.03 0.61 0.01 0.47 +asphyxia asphyxier ver 1.52 2.91 0.00 0.14 ind:pas:3s; +asphyxiaient asphyxier ver 1.52 2.91 0.01 0.07 ind:imp:3p; +asphyxiait asphyxier ver 1.52 2.91 0.00 0.27 ind:imp:3s; +asphyxiant asphyxiant adj m s 0.03 1.08 0.03 0.47 +asphyxiante asphyxiant adj f s 0.03 1.08 0.00 0.34 +asphyxiants asphyxiant adj m p 0.03 1.08 0.00 0.27 +asphyxie asphyxie nom f s 1.19 1.35 1.19 1.35 +asphyxient asphyxier ver 1.52 2.91 0.17 0.14 ind:pre:3p; +asphyxier asphyxier ver 1.52 2.91 0.39 0.27 inf; +asphyxiera asphyxier ver 1.52 2.91 0.00 0.07 ind:fut:3s; +asphyxié asphyxier ver m s 1.52 2.91 0.67 0.68 par:pas; +asphyxiée asphyxier ver f s 1.52 2.91 0.03 0.27 par:pas; +asphyxiées asphyxié adj f p 0.10 1.08 0.04 0.14 +asphyxiés asphyxier ver m p 1.52 2.91 0.10 0.47 par:pas; +aspi aspi nom s 0.14 0.07 0.14 0.00 +aspic aspic nom m s 0.54 1.08 0.52 0.88 +aspics aspic nom m p 0.54 1.08 0.02 0.20 +aspidistra aspidistra nom m s 0.01 0.41 0.01 0.07 +aspidistras aspidistra nom m p 0.01 0.41 0.00 0.34 +aspira aspirer ver 12.07 28.85 0.03 3.04 ind:pas:3s; +aspirai aspirer ver 12.07 28.85 0.00 0.27 ind:pas:1s; +aspiraient aspirer ver 12.07 28.85 0.02 0.88 ind:imp:3p; +aspirais aspirer ver 12.07 28.85 0.32 1.49 ind:imp:1s; +aspirait aspirer ver 12.07 28.85 0.25 5.27 ind:imp:3s; +aspirant aspirant nom m s 1.35 1.82 1.11 0.95 +aspirante aspirant adj f s 1.13 1.15 0.36 0.07 +aspirantes aspirant adj f p 1.13 1.15 0.02 0.07 +aspirants aspirant nom m p 1.35 1.82 0.23 0.88 +aspirateur aspirateur nom m s 4.52 3.31 4.33 3.04 +aspirateurs_traîneaux aspirateurs_traîneaux nom m p 0.00 0.07 0.00 0.07 +aspirateurs aspirateur nom m p 4.52 3.31 0.19 0.27 +aspiration aspiration nom f s 3.99 6.22 2.49 2.97 +aspirations aspiration nom f p 3.99 6.22 1.50 3.24 +aspire aspirer ver 12.07 28.85 4.24 5.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aspirent aspirer ver 12.07 28.85 0.67 1.08 ind:pre:3p; +aspirer aspirer ver 12.07 28.85 2.36 3.92 inf; +aspirera aspirer ver 12.07 28.85 0.08 0.07 ind:fut:3s; +aspireraient aspirer ver 12.07 28.85 0.01 0.07 cnd:pre:3p; +aspirerait aspirer ver 12.07 28.85 0.02 0.07 cnd:pre:3s; +aspires aspirer ver 12.07 28.85 0.54 0.07 ind:pre:2s; +aspirez aspirer ver 12.07 28.85 0.47 0.41 imp:pre:2p;ind:pre:2p; +aspiriez aspirer ver 12.07 28.85 0.03 0.07 ind:imp:2p; +aspirine aspirine nom f s 9.18 4.93 8.55 4.53 +aspirines aspirine nom f p 9.18 4.93 0.62 0.41 +aspirions aspirer ver 12.07 28.85 0.02 0.07 ind:imp:1p; +aspirons aspirer ver 12.07 28.85 0.16 0.14 imp:pre:1p;ind:pre:1p; +aspirât aspirer ver 12.07 28.85 0.00 0.07 sub:imp:3s; +aspiré aspirer ver m s 12.07 28.85 2.00 2.70 par:pas; +aspirée aspirer ver f s 12.07 28.85 0.32 1.15 par:pas; +aspirées aspirer ver f p 12.07 28.85 0.07 0.14 par:pas; +aspirés aspirer ver m p 12.07 28.85 0.15 0.41 par:pas; +aspis aspi nom p 0.14 0.07 0.00 0.07 +aspre aspre nom f s 0.00 0.07 0.00 0.07 +aspécifique aspécifique adj s 0.01 0.00 0.01 0.00 +aspérité aspérité nom f s 0.06 2.77 0.00 0.74 +aspérités aspérité nom f p 0.06 2.77 0.06 2.03 +assîmes asseoir ver 322.71 395.27 0.00 0.88 ind:pas:1p; +assît asseoir ver 322.71 395.27 0.00 0.41 sub:imp:3s; +assa_foetida assa_foetida nom f s 0.27 0.00 0.27 0.00 +assagi assagir ver m s 0.42 0.95 0.14 0.27 par:pas; +assagie assagir ver f s 0.42 0.95 0.03 0.07 par:pas; +assagir assagir ver 0.42 0.95 0.15 0.41 inf; +assagirai assagir ver 0.42 0.95 0.01 0.00 ind:fut:1s; +assagis assagir ver 0.42 0.95 0.01 0.00 ind:pre:1s; +assagissant assagir ver 0.42 0.95 0.01 0.00 par:pre; +assagisse assagir ver 0.42 0.95 0.03 0.00 sub:pre:3s; +assagit assagir ver 0.42 0.95 0.04 0.20 ind:pre:3s;ind:pas:3s; +assaillaient assaillir ver 2.84 10.54 0.19 1.08 ind:imp:3p; +assaillait assaillir ver 2.84 10.54 0.00 0.74 ind:imp:3s; +assaillant assaillant nom m s 0.87 3.72 0.60 0.88 +assaillante assaillant adj f s 0.01 0.20 0.01 0.00 +assaillants assaillant nom m p 0.87 3.72 0.27 2.84 +assaille assaillir ver 2.84 10.54 0.41 0.81 ind:pre:1s;ind:pre:3s; +assaillent assaillir ver 2.84 10.54 0.55 1.22 ind:pre:3p; +assailles assaillir ver 2.84 10.54 0.01 0.00 ind:pre:2s; +assailli assaillir ver m s 2.84 10.54 0.81 2.64 par:pas; +assaillie assaillir ver f s 2.84 10.54 0.35 0.41 par:pas; +assaillies assaillir ver f p 2.84 10.54 0.00 0.20 par:pas; +assaillir assaillir ver 2.84 10.54 0.42 1.69 inf; +assaillira assaillir ver 2.84 10.54 0.00 0.07 ind:fut:3s; +assaillirent assaillir ver 2.84 10.54 0.02 0.41 ind:pas:3p; +assaillis assaillir ver m p 2.84 10.54 0.08 0.47 ind:pas:1s;par:pas; +assaillit assaillir ver 2.84 10.54 0.00 0.61 ind:pas:3s; +assaillons assaillir ver 2.84 10.54 0.01 0.00 imp:pre:1p; +assaini assainir ver m s 0.54 1.01 0.18 0.14 par:pas; +assainie assainir ver f s 0.54 1.01 0.03 0.00 par:pas; +assainir assainir ver 0.54 1.01 0.33 0.68 inf; +assainirait assainir ver 0.54 1.01 0.00 0.07 cnd:pre:3s; +assainis assainir ver m p 0.54 1.01 0.00 0.14 ind:pre:1s;par:pas; +assainissement assainissement nom m s 0.26 0.34 0.26 0.34 +assaisonna assaisonner ver 0.36 2.36 0.00 0.14 ind:pas:3s; +assaisonnait assaisonner ver 0.36 2.36 0.01 0.27 ind:imp:3s; +assaisonne assaisonner ver 0.36 2.36 0.01 0.14 imp:pre:2s;ind:pre:3s; +assaisonnement assaisonnement nom m s 0.52 0.41 0.50 0.34 +assaisonnements assaisonnement nom m p 0.52 0.41 0.02 0.07 +assaisonner assaisonner ver 0.36 2.36 0.09 0.61 inf; +assaisonnerait assaisonner ver 0.36 2.36 0.00 0.14 cnd:pre:3s; +assaisonnèrent assaisonner ver 0.36 2.36 0.00 0.07 ind:pas:3p; +assaisonné assaisonner ver m s 0.36 2.36 0.18 0.54 par:pas; +assaisonnée assaisonner ver f s 0.36 2.36 0.06 0.14 par:pas; +assaisonnées assaisonner ver f p 0.36 2.36 0.01 0.07 par:pas; +assaisonnés assaisonner ver m p 0.36 2.36 0.00 0.27 par:pas; +assassin assassin nom m s 55.37 20.34 43.17 14.39 +assassina assassiner ver 30.87 15.27 0.27 0.41 ind:pas:3s; +assassinai assassiner ver 30.87 15.27 0.00 0.07 ind:pas:1s; +assassinaient assassiner ver 30.87 15.27 0.04 0.14 ind:imp:3p; +assassinais assassiner ver 30.87 15.27 0.01 0.00 ind:imp:2s; +assassinait assassiner ver 30.87 15.27 0.09 0.47 ind:imp:3s; +assassinant assassiner ver 30.87 15.27 0.17 0.27 par:pre; +assassinat assassinat nom m s 8.38 12.16 7.26 9.73 +assassinats assassinat nom m p 8.38 12.16 1.13 2.43 +assassine assassiner ver 30.87 15.27 1.32 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assassinent assassiner ver 30.87 15.27 0.36 0.20 ind:pre:3p; +assassiner assassiner ver 30.87 15.27 6.16 4.39 imp:pre:2p;inf; +assassinera assassiner ver 30.87 15.27 0.07 0.00 ind:fut:3s; +assassinerai assassiner ver 30.87 15.27 0.01 0.00 ind:fut:1s; +assassinerais assassiner ver 30.87 15.27 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +assassinerez assassiner ver 30.87 15.27 0.01 0.00 ind:fut:2p; +assassines assassiner ver 30.87 15.27 0.31 0.14 ind:pre:2s; +assassinez assassiner ver 30.87 15.27 0.10 0.00 imp:pre:2p;ind:pre:2p; +assassinons assassiner ver 30.87 15.27 0.01 0.00 imp:pre:1p; +assassins assassin nom m p 55.37 20.34 12.20 5.95 +assassiné assassiner ver m s 30.87 15.27 15.08 5.14 par:pas; +assassinée assassiner ver f s 30.87 15.27 4.88 1.08 par:pas; +assassinées assassiner ver f p 30.87 15.27 0.47 0.14 par:pas; +assassinés assassiner ver m p 30.87 15.27 1.50 1.28 par:pas; +assaut assaut nom m s 12.12 32.16 11.23 27.36 +assauts assaut nom m p 12.12 32.16 0.90 4.80 +assavoir assavoir ver 0.00 0.14 0.00 0.14 inf; +asse asse nom f s 0.66 0.14 0.66 0.14 +asseau asseau nom m s 0.03 0.00 0.03 0.00 +assembla assembler ver 3.86 7.03 0.00 0.20 ind:pas:3s; +assemblage assemblage nom m s 1.01 5.88 0.99 4.86 +assemblages assemblage nom m p 1.01 5.88 0.02 1.01 +assemblaient assembler ver 3.86 7.03 0.02 0.74 ind:imp:3p; +assemblait assembler ver 3.86 7.03 0.02 0.47 ind:imp:3s; +assemblant assembler ver 3.86 7.03 0.04 0.07 par:pre; +assemble assembler ver 3.86 7.03 0.68 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assemblent assembler ver 3.86 7.03 0.61 0.54 ind:pre:3p; +assembler assembler ver 3.86 7.03 1.13 1.55 inf; +assemblera assembler ver 3.86 7.03 0.10 0.00 ind:fut:3s; +assemblerez assembler ver 3.86 7.03 0.01 0.00 ind:fut:2p; +assembleur assembleur nom m s 0.12 0.14 0.01 0.07 +assembleurs assembleur nom m p 0.12 0.14 0.11 0.07 +assemblez assembler ver 3.86 7.03 0.16 0.07 imp:pre:2p;ind:pre:2p; +assemblons assembler ver 3.86 7.03 0.16 0.07 imp:pre:1p;ind:pre:1p; +assemblé assembler ver m s 3.86 7.03 0.48 0.41 par:pas; +assemblée assemblée nom f s 7.34 35.14 7.03 31.08 +assemblées assemblée nom f p 7.34 35.14 0.30 4.05 +assemblés assembler ver m p 3.86 7.03 0.19 0.81 par:pas; +assena assener ver 0.11 5.47 0.00 0.74 ind:pas:3s; +assenai assener ver 0.11 5.47 0.00 0.14 ind:pas:1s; +assenaient assener ver 0.11 5.47 0.00 0.20 ind:imp:3p; +assenais assener ver 0.11 5.47 0.00 0.14 ind:imp:1s; +assenait assener ver 0.11 5.47 0.00 0.41 ind:imp:3s; +assenant assener ver 0.11 5.47 0.00 0.41 par:pre; +assener assener ver 0.11 5.47 0.03 0.74 inf; +assentiment assentiment nom m s 0.17 3.45 0.17 3.38 +assentiments assentiment nom m p 0.17 3.45 0.00 0.07 +assené assener ver m s 0.11 5.47 0.00 0.61 par:pas; +assenée assener ver f s 0.11 5.47 0.00 0.34 par:pas; +assenées assener ver f p 0.11 5.47 0.01 0.20 par:pas; +assenés assener ver m p 0.11 5.47 0.02 0.47 par:pas; +asseoir asseoir ver 322.71 395.27 65.10 66.08 inf; +assermenter assermenter ver 0.16 0.34 0.03 0.00 inf; +assermentez assermenter ver 0.16 0.34 0.02 0.00 imp:pre:2p;ind:pre:2p; +assermenté assermenté adj m s 0.37 0.27 0.32 0.07 +assermentée assermenter ver f s 0.16 0.34 0.02 0.07 par:pas; +assermentés assermenter ver m p 0.16 0.34 0.06 0.00 par:pas; +assertion assertion nom f s 0.10 1.42 0.07 0.54 +assertions assertion nom f p 0.10 1.42 0.04 0.88 +asservi asservir ver m s 1.33 2.36 0.42 0.41 par:pas; +asservie asservir ver f s 1.33 2.36 0.04 0.07 par:pas; +asservies asservir ver f p 1.33 2.36 0.11 0.14 par:pas; +asservir asservir ver 1.33 2.36 0.37 0.88 inf; +asservirai asservir ver 1.33 2.36 0.01 0.00 ind:fut:1s; +asservirait asservir ver 1.33 2.36 0.00 0.07 cnd:pre:3s; +asserviront asservir ver 1.33 2.36 0.01 0.07 ind:fut:3p; +asservis asservir ver m p 1.33 2.36 0.27 0.34 par:pas; +asservissaient asservir ver 1.33 2.36 0.00 0.07 ind:imp:3p; +asservissait asservir ver 1.33 2.36 0.00 0.20 ind:imp:3s; +asservissant asservir ver 1.33 2.36 0.02 0.07 par:pre; +asservissement asservissement nom m s 0.11 1.15 0.11 1.08 +asservissements asservissement nom m p 0.11 1.15 0.00 0.07 +asservissent asservir ver 1.33 2.36 0.05 0.00 ind:pre:3p; +asservit asservir ver 1.33 2.36 0.02 0.07 ind:pre:3s;ind:pas:3s; +assesseur assesseur nom m s 0.73 1.28 0.59 0.54 +assesseurs assesseur nom m p 0.73 1.28 0.14 0.74 +asseyaient asseoir ver 322.71 395.27 0.36 2.77 ind:imp:3p; +asseyais asseoir ver 322.71 395.27 1.25 2.23 ind:imp:1s;ind:imp:2s; +asseyait asseoir ver 322.71 395.27 2.21 11.62 ind:imp:3s; +asseyant asseoir ver 322.71 395.27 0.12 5.81 par:pre; +asseye asseoir ver 322.71 395.27 0.61 0.14 sub:pre:1s;sub:pre:3s; +asseyent asseoir ver 322.71 395.27 0.31 0.81 ind:pre:3p; +asseyes asseoir ver 322.71 395.27 0.21 0.00 sub:pre:2s; +asseyez asseoir ver 322.71 395.27 80.07 7.84 imp:pre:2p;ind:pre:2p; +asseyiez asseoir ver 322.71 395.27 0.04 0.00 ind:imp:2p; +asseyions asseoir ver 322.71 395.27 0.04 0.81 ind:imp:1p; +asseyons asseoir ver 322.71 395.27 4.64 1.69 imp:pre:1p;ind:pre:1p; +assez assez adv_sup 407.75 420.14 407.75 420.14 +assidûment assidûment adv 0.09 1.96 0.09 1.96 +assidu assidu adj m s 0.68 2.91 0.50 1.01 +assidue assidu adj f s 0.68 2.91 0.12 0.95 +assidues assidu adj f p 0.68 2.91 0.03 0.14 +assiduité assiduité nom f s 0.36 1.82 0.19 1.62 +assiduités assiduité nom f p 0.36 1.82 0.17 0.20 +assidus assidu adj m p 0.68 2.91 0.02 0.81 +assied asseoir ver 322.71 395.27 4.74 9.26 ind:pre:3s; +assieds asseoir ver 322.71 395.27 79.85 9.12 imp:pre:2s;ind:pre:1s;ind:pre:2s; +assiette assiette nom f s 21.24 56.62 14.88 36.28 +assiettes assiette nom f p 21.24 56.62 6.36 20.34 +assiettée assiettée nom f s 0.00 0.95 0.00 0.41 +assiettées assiettée nom f p 0.00 0.95 0.00 0.54 +assigna assigner ver 4.25 4.93 0.01 0.27 ind:pas:3s; +assignai assigner ver 4.25 4.93 0.00 0.07 ind:pas:1s; +assignais assigner ver 4.25 4.93 0.00 0.07 ind:imp:1s; +assignait assigner ver 4.25 4.93 0.03 0.74 ind:imp:3s; +assignant assigner ver 4.25 4.93 0.01 0.14 par:pre; +assignation assignation nom f s 1.68 0.47 1.43 0.20 +assignations assignation nom f p 1.68 0.47 0.25 0.27 +assignats assignat nom m p 0.15 0.07 0.15 0.07 +assigne assigner ver 4.25 4.93 0.39 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assignement assignement nom m s 0.01 0.00 0.01 0.00 +assignent assigner ver 4.25 4.93 0.04 0.00 ind:pre:3p; +assigner assigner ver 4.25 4.93 0.68 0.74 inf; +assignera assigner ver 4.25 4.93 0.05 0.00 ind:fut:3s; +assignerai assigner ver 4.25 4.93 0.04 0.00 ind:fut:1s; +assignerait assigner ver 4.25 4.93 0.01 0.07 cnd:pre:3s; +assignerons assigner ver 4.25 4.93 0.05 0.00 ind:fut:1p; +assigneront assigner ver 4.25 4.93 0.03 0.07 ind:fut:3p; +assignes assigner ver 4.25 4.93 0.00 0.07 ind:pre:2s; +assigné assigner ver m s 4.25 4.93 1.88 1.08 par:pas; +assignée assigner ver f s 4.25 4.93 0.43 1.08 par:pas; +assignées assigner ver f p 4.25 4.93 0.09 0.27 par:pas; +assignés assigner ver m p 4.25 4.93 0.52 0.07 par:pas; +assimila assimiler ver 1.36 8.38 0.00 0.14 ind:pas:3s; +assimilable assimilable adj s 0.02 0.54 0.02 0.41 +assimilables assimilable adj p 0.02 0.54 0.00 0.14 +assimilaient assimiler ver 1.36 8.38 0.00 0.07 ind:imp:3p; +assimilais assimiler ver 1.36 8.38 0.01 0.20 ind:imp:1s; +assimilait assimiler ver 1.36 8.38 0.00 0.95 ind:imp:3s; +assimilant assimiler ver 1.36 8.38 0.00 0.41 par:pre; +assimilateurs assimilateur adj m p 0.00 0.07 0.00 0.07 +assimilation assimilation nom f s 0.14 1.49 0.14 1.42 +assimilations assimilation nom f p 0.14 1.49 0.00 0.07 +assimile assimiler ver 1.36 8.38 0.20 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assimilent assimiler ver 1.36 8.38 0.00 0.14 ind:pre:3p; +assimiler assimiler ver 1.36 8.38 0.70 3.04 inf; +assimilerait assimiler ver 1.36 8.38 0.00 0.07 cnd:pre:3s; +assimilez assimiler ver 1.36 8.38 0.04 0.14 imp:pre:2p;ind:pre:2p; +assimilèrent assimiler ver 1.36 8.38 0.01 0.20 ind:pas:3p; +assimilé assimiler ver m s 1.36 8.38 0.35 1.62 par:pas; +assimilée assimiler ver f s 1.36 8.38 0.03 0.34 par:pas; +assimilées assimiler ver f p 1.36 8.38 0.00 0.20 par:pas; +assimilés assimilé nom m p 0.04 0.34 0.03 0.34 +assirent asseoir ver 322.71 395.27 0.04 6.76 ind:pas:3p; +assis asseoir ver m 322.71 395.27 52.34 150.07 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +assise asseoir ver f s 322.71 395.27 15.99 51.69 par:pas; +assises assise nom f p 3.88 9.66 1.88 6.55 +assista assister ver 30.57 62.23 0.13 2.30 ind:pas:3s; +assistai assister ver 30.57 62.23 0.02 2.16 ind:pas:1s; +assistaient assister ver 30.57 62.23 0.36 1.49 ind:imp:3p; +assistais assister ver 30.57 62.23 0.30 2.57 ind:imp:1s;ind:imp:2s; +assistait assister ver 30.57 62.23 0.63 6.01 ind:imp:3s; +assistanat assistanat nom m s 0.00 0.14 0.00 0.14 +assistance assistance nom f s 10.23 20.00 10.20 19.93 +assistances assistance nom f p 10.23 20.00 0.03 0.07 +assistant assistant nom m s 31.93 16.22 15.70 5.14 +assistante assistant nom f s 31.93 16.22 12.34 5.54 +assistantes assistant nom f p 31.93 16.22 0.59 0.95 +assistants assistant nom m p 31.93 16.22 3.30 4.59 +assistas assister ver 30.57 62.23 0.00 0.07 ind:pas:2s; +assiste assister ver 30.57 62.23 4.21 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assistent assister ver 30.57 62.23 0.41 0.95 ind:pre:3p; +assister assister ver 30.57 62.23 12.49 23.18 ind:pre:2p;inf; +assistera assister ver 30.57 62.23 0.85 0.07 ind:fut:3s; +assisterai assister ver 30.57 62.23 0.25 0.27 ind:fut:1s; +assisteraient assister ver 30.57 62.23 0.00 0.27 cnd:pre:3p; +assisterais assister ver 30.57 62.23 0.02 0.07 cnd:pre:1s; +assisterait assister ver 30.57 62.23 0.07 0.34 cnd:pre:3s; +assisteras assister ver 30.57 62.23 0.09 0.07 ind:fut:2s; +assisterez assister ver 30.57 62.23 0.41 0.14 ind:fut:2p; +assisteriez assister ver 30.57 62.23 0.02 0.00 cnd:pre:2p; +assisterons assister ver 30.57 62.23 0.30 0.27 ind:fut:1p; +assisteront assister ver 30.57 62.23 0.15 0.00 ind:fut:3p; +assistez assister ver 30.57 62.23 0.61 0.20 imp:pre:2p;ind:pre:2p; +assistiez assister ver 30.57 62.23 0.52 0.14 ind:imp:2p; +assistions assister ver 30.57 62.23 0.01 0.61 ind:imp:1p; +assistâmes assister ver 30.57 62.23 0.00 0.74 ind:pas:1p; +assistons assister ver 30.57 62.23 0.51 0.34 imp:pre:1p;ind:pre:1p; +assistât assister ver 30.57 62.23 0.00 0.14 sub:imp:3s; +assistèrent assister ver 30.57 62.23 0.05 0.54 ind:pas:3p; +assisté assister ver m s 30.57 62.23 6.91 12.64 par:pas; +assistée assisté adj f s 0.88 0.68 0.33 0.20 +assistées assisté adj f p 0.88 0.68 0.04 0.07 +assistés assisté nom m p 0.39 0.47 0.20 0.20 +assit asseoir ver 322.71 395.27 0.82 48.72 ind:pas:3s; +assiège assiéger ver 1.36 5.81 0.15 0.34 ind:pre:3s; +assiègent assiéger ver 1.36 5.81 0.41 0.61 ind:pre:3p; +assiégea assiéger ver 1.36 5.81 0.00 0.07 ind:pas:3s; +assiégeaient assiéger ver 1.36 5.81 0.01 0.61 ind:imp:3p; +assiégeait assiéger ver 1.36 5.81 0.01 0.47 ind:imp:3s; +assiégeant assiéger ver 1.36 5.81 0.00 0.27 par:pre; +assiégeantes assiégeant adj f p 0.00 0.07 0.00 0.07 +assiégeants assiégeant nom m p 0.04 0.95 0.04 0.74 +assiéger assiéger ver 1.36 5.81 0.09 0.88 inf; +assiégera assiéger ver 1.36 5.81 0.01 0.00 ind:fut:3s; +assiégeraient assiéger ver 1.36 5.81 0.00 0.07 cnd:pre:3p; +assiégé assiéger ver m s 1.36 5.81 0.23 0.47 par:pas; +assiégée assiéger ver f s 1.36 5.81 0.14 1.15 par:pas; +assiégées assiéger ver f p 1.36 5.81 0.02 0.27 par:pas; +assiégés assiéger ver m p 1.36 5.81 0.28 0.61 par:pas; +assiéra asseoir ver 322.71 395.27 0.31 0.07 ind:fut:3s; +assiérai asseoir ver 322.71 395.27 0.33 0.14 ind:fut:1s; +assiérais asseoir ver 322.71 395.27 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +assiérait asseoir ver 322.71 395.27 0.07 0.34 cnd:pre:3s; +assiéras asseoir ver 322.71 395.27 0.02 0.00 ind:fut:2s; +assiérions asseoir ver 322.71 395.27 0.00 0.07 cnd:pre:1p; +assiéront asseoir ver 322.71 395.27 0.19 0.00 ind:fut:3p; +associa associer ver 13.67 14.19 0.12 0.41 ind:pas:3s; +associai associer ver 13.67 14.19 0.00 0.14 ind:pas:1s; +associaient associer ver 13.67 14.19 0.02 0.27 ind:imp:3p; +associais associer ver 13.67 14.19 0.02 0.07 ind:imp:1s; +associait associer ver 13.67 14.19 0.11 1.08 ind:imp:3s; +associant associer ver 13.67 14.19 0.27 0.68 par:pre; +associassent associer ver 13.67 14.19 0.00 0.07 sub:imp:3p; +associatifs associatif adj m p 0.11 0.07 0.01 0.00 +association association nom f s 12.02 10.61 10.49 8.65 +associations association nom f p 12.02 10.61 1.53 1.96 +associative associatif adj f s 0.11 0.07 0.10 0.07 +associe associer ver 13.67 14.19 1.81 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +associent associer ver 13.67 14.19 0.42 0.41 ind:pre:3p; +associer associer ver 13.67 14.19 2.86 4.53 inf; +associera associer ver 13.67 14.19 0.06 0.00 ind:fut:3s; +associerai associer ver 13.67 14.19 0.31 0.07 ind:fut:1s; +associeraient associer ver 13.67 14.19 0.01 0.07 cnd:pre:3p; +associerais associer ver 13.67 14.19 0.04 0.07 cnd:pre:1s; +associerait associer ver 13.67 14.19 0.01 0.14 cnd:pre:3s; +associeront associer ver 13.67 14.19 0.00 0.07 ind:fut:3p; +associez associer ver 13.67 14.19 0.35 0.07 imp:pre:2p;ind:pre:2p; +associions associer ver 13.67 14.19 0.00 0.07 ind:imp:1p; +associons associer ver 13.67 14.19 0.19 0.00 imp:pre:1p;ind:pre:1p; +associât associer ver 13.67 14.19 0.00 0.14 sub:imp:3s; +associèrent associer ver 13.67 14.19 0.01 0.07 ind:pas:3p; +associé associé nom m s 22.51 4.12 14.18 2.09 +associée associé nom f s 22.51 4.12 1.72 0.14 +associées associer ver f p 13.67 14.19 0.38 0.27 par:pas; +associés associé nom m p 22.51 4.12 6.46 1.89 +assoie asseoir ver 322.71 395.27 1.14 0.14 sub:pre:1s;sub:pre:3s; +assoient asseoir ver 322.71 395.27 0.96 0.88 ind:pre:3p; +assoies asseoir ver 322.71 395.27 0.26 0.07 sub:pre:2s; +assoiffent assoiffer ver 2.19 2.91 0.00 0.07 ind:pre:3p; +assoiffer assoiffer ver 2.19 2.91 0.02 0.00 inf; +assoiffez assoiffer ver 2.19 2.91 0.01 0.00 imp:pre:2p; +assoiffé assoiffer ver m s 2.19 2.91 0.81 1.08 par:pas; +assoiffée assoiffer ver f s 2.19 2.91 0.38 0.54 par:pas; +assoiffées assoiffer ver f p 2.19 2.91 0.09 0.27 par:pas; +assoiffés assoiffer ver m p 2.19 2.91 0.88 0.95 par:pas; +assoira asseoir ver 322.71 395.27 0.25 0.00 ind:fut:3s; +assoirai asseoir ver 322.71 395.27 0.15 0.27 ind:fut:1s; +assoiraient asseoir ver 322.71 395.27 0.00 0.07 cnd:pre:3p; +assoirais asseoir ver 322.71 395.27 0.14 0.00 cnd:pre:1s; +assoirait asseoir ver 322.71 395.27 0.01 0.14 cnd:pre:3s; +assoiras asseoir ver 322.71 395.27 0.14 0.00 ind:fut:2s; +assoiront asseoir ver 322.71 395.27 0.01 0.20 ind:fut:3p; +assois asseoir ver 322.71 395.27 4.94 2.64 imp:pre:2s;ind:pre:1s;ind:pre:2s; +assoit asseoir ver 322.71 395.27 3.31 6.42 ind:pre:3s; +assombrît assombrir ver 1.83 13.78 0.00 0.07 sub:imp:3s; +assombri assombrir ver m s 1.83 13.78 0.33 2.43 par:pas; +assombrie assombrir ver f s 1.83 13.78 0.16 1.08 par:pas; +assombries assombrir ver f p 1.83 13.78 0.01 0.61 par:pas; +assombrir assombrir ver 1.83 13.78 0.34 1.62 inf; +assombrira assombrir ver 1.83 13.78 0.04 0.07 ind:fut:3s; +assombrirent assombrir ver 1.83 13.78 0.00 0.20 ind:pas:3p; +assombris assombrir ver m p 1.83 13.78 0.03 0.81 ind:pre:2s;par:pas; +assombrissaient assombrir ver 1.83 13.78 0.01 0.27 ind:imp:3p; +assombrissait assombrir ver 1.83 13.78 0.03 2.43 ind:imp:3s; +assombrissant assombrir ver 1.83 13.78 0.00 0.34 par:pre; +assombrissement assombrissement nom m s 0.00 0.14 0.00 0.14 +assombrissent assombrir ver 1.83 13.78 0.19 0.20 ind:pre:3p; +assombrit assombrir ver 1.83 13.78 0.69 3.65 ind:pre:3s;ind:pas:3s; +assomma assommer ver 13.09 17.23 0.00 0.68 ind:pas:3s; +assommaient assommer ver 13.09 17.23 0.00 0.34 ind:imp:3p; +assommait assommer ver 13.09 17.23 0.14 1.35 ind:imp:3s; +assommant assommant adj m s 1.50 3.04 1.06 1.15 +assommante assommant adj f s 1.50 3.04 0.26 0.47 +assommantes assommant adj f p 1.50 3.04 0.09 0.81 +assommants assommant adj m p 1.50 3.04 0.09 0.61 +assomme assommer ver 13.09 17.23 3.17 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assomment assommer ver 13.09 17.23 0.25 0.41 ind:pre:3p; +assommer assommer ver 13.09 17.23 3.45 3.51 inf; +assommera assommer ver 13.09 17.23 0.07 0.07 ind:fut:3s; +assommerai assommer ver 13.09 17.23 0.03 0.00 ind:fut:1s; +assommeraient assommer ver 13.09 17.23 0.10 0.07 cnd:pre:3p; +assommerais assommer ver 13.09 17.23 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +assommerait assommer ver 13.09 17.23 0.05 0.07 cnd:pre:3s; +assommeras assommer ver 13.09 17.23 0.05 0.00 ind:fut:2s; +assommes assommer ver 13.09 17.23 0.35 0.07 ind:pre:2s; +assommeur assommeur nom m s 0.01 0.14 0.01 0.14 +assommez assommer ver 13.09 17.23 0.62 0.07 imp:pre:2p;ind:pre:2p; +assommiez assommer ver 13.09 17.23 0.02 0.07 ind:imp:2p; +assommoir assommoir nom m s 0.02 0.68 0.02 0.54 +assommoirs assommoir nom m p 0.02 0.68 0.00 0.14 +assommons assommer ver 13.09 17.23 0.12 0.27 imp:pre:1p; +assommât assommer ver 13.09 17.23 0.00 0.07 sub:imp:3s; +assommé assommer ver m s 13.09 17.23 3.54 4.80 par:pas; +assommée assommer ver f s 13.09 17.23 0.72 1.69 par:pas; +assommées assommer ver f p 13.09 17.23 0.01 0.14 par:pas; +assommés assommer ver m p 13.09 17.23 0.24 1.22 par:pas; +assomption assomption nom f s 0.03 0.47 0.00 0.41 +assomptions assomption nom f p 0.03 0.47 0.03 0.07 +assonance assonance nom f s 0.01 0.27 0.00 0.07 +assonances assonance nom f p 0.01 0.27 0.01 0.20 +assonants assonant adj m p 0.00 0.07 0.00 0.07 +assorti assorti adj m s 1.71 4.05 0.53 0.95 +assortie assortir ver f s 2.00 5.95 0.45 1.22 par:pas; +assorties assortir ver f p 2.00 5.95 0.42 0.95 par:pas; +assortiment assortiment nom m s 1.12 2.23 1.09 2.16 +assortiments assortiment nom m p 1.12 2.23 0.03 0.07 +assortir assortir ver 2.00 5.95 0.16 0.54 inf; +assortirai assortir ver 2.00 5.95 0.01 0.00 ind:fut:1s; +assortirais assortir ver 2.00 5.95 0.01 0.00 cnd:pre:1s; +assortis assorti adj m p 1.71 4.05 0.68 1.69 +assortissaient assortir ver 2.00 5.95 0.00 0.14 ind:imp:3p; +assortissais assortir ver 2.00 5.95 0.00 0.07 ind:imp:1s; +assortissait assortir ver 2.00 5.95 0.10 0.07 ind:imp:3s; +assortissant assortir ver 2.00 5.95 0.00 0.07 par:pre; +assortissent assortir ver 2.00 5.95 0.00 0.07 ind:pre:3p; +assortit assortir ver 2.00 5.95 0.00 0.27 ind:pre:3s;ind:pas:3s; +assoté assoter ver m s 0.00 0.14 0.00 0.07 par:pas; +assotés assoter ver m p 0.00 0.14 0.00 0.07 par:pas; +assoupi assoupir ver m s 2.18 11.01 0.88 2.36 par:pas; +assoupie assoupir ver f s 2.18 11.01 0.25 1.22 par:pas; +assoupies assoupir ver f p 2.18 11.01 0.14 0.00 par:pas; +assoupir assoupir ver 2.18 11.01 0.40 3.24 inf; +assoupira assoupir ver 2.18 11.01 0.01 0.00 ind:fut:3s; +assoupirais assoupir ver 2.18 11.01 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +assoupis assoupir ver m p 2.18 11.01 0.34 1.01 ind:pre:1s;ind:pre:2s;par:pas; +assoupissaient assoupir ver 2.18 11.01 0.00 0.34 ind:imp:3p; +assoupissais assoupir ver 2.18 11.01 0.00 0.14 ind:imp:1s; +assoupissait assoupir ver 2.18 11.01 0.00 0.74 ind:imp:3s; +assoupissant assoupir ver 2.18 11.01 0.00 0.07 par:pre; +assoupisse assoupir ver 2.18 11.01 0.02 0.14 sub:pre:1s;sub:pre:3s; +assoupissement assoupissement nom m s 0.10 1.01 0.10 1.01 +assoupissent assoupir ver 2.18 11.01 0.02 0.27 ind:pre:3p; +assoupit assoupir ver 2.18 11.01 0.03 1.42 ind:pre:3s;ind:pas:3s; +assoupli assouplir ver m s 0.51 2.23 0.02 0.20 par:pas; +assouplie assouplir ver f s 0.51 2.23 0.00 0.14 par:pas; +assouplies assouplir ver f p 0.51 2.23 0.00 0.07 par:pas; +assouplir assouplir ver 0.51 2.23 0.42 0.88 inf; +assouplira assouplir ver 0.51 2.23 0.02 0.00 ind:fut:3s; +assouplis assouplir ver m p 0.51 2.23 0.01 0.07 imp:pre:2s;par:pas; +assouplissaient assouplir ver 0.51 2.23 0.01 0.07 ind:imp:3p; +assouplissait assouplir ver 0.51 2.23 0.00 0.34 ind:imp:3s; +assouplissant assouplissant nom m s 0.03 0.00 0.03 0.00 +assouplissement assouplissement nom m s 0.09 0.54 0.04 0.54 +assouplissements assouplissement nom m p 0.09 0.54 0.04 0.00 +assouplissent assouplir ver 0.51 2.23 0.00 0.14 ind:pre:3p; +assouplit assouplir ver 0.51 2.23 0.03 0.34 ind:pre:3s;ind:pas:3s; +assourdi assourdir ver m s 0.17 7.70 0.02 2.91 par:pas; +assourdie assourdir ver f s 0.17 7.70 0.02 0.88 par:pas; +assourdies assourdir ver f p 0.17 7.70 0.00 0.27 par:pas; +assourdir assourdir ver 0.17 7.70 0.01 0.34 inf; +assourdiraient assourdir ver 0.17 7.70 0.00 0.07 cnd:pre:3p; +assourdiras assourdir ver 0.17 7.70 0.00 0.07 ind:fut:2s; +assourdirent assourdir ver 0.17 7.70 0.00 0.07 ind:pas:3p; +assourdis assourdir ver m p 0.17 7.70 0.04 0.88 ind:pre:1s;ind:pre:2s;par:pas; +assourdissaient assourdir ver 0.17 7.70 0.00 0.27 ind:imp:3p; +assourdissait assourdir ver 0.17 7.70 0.01 0.41 ind:imp:3s; +assourdissant assourdissant adj m s 0.73 6.49 0.57 4.86 +assourdissante assourdissant adj f s 0.73 6.49 0.02 0.81 +assourdissantes assourdissant adj f p 0.73 6.49 0.01 0.41 +assourdissants assourdissant adj m p 0.73 6.49 0.12 0.41 +assourdissement assourdissement nom m s 0.00 0.14 0.00 0.14 +assourdissent assourdir ver 0.17 7.70 0.01 0.34 ind:pre:3p; +assourdit assourdir ver 0.17 7.70 0.02 0.61 ind:pre:3s;ind:pas:3s; +assouvi assouvir ver m s 2.15 5.41 0.18 0.54 par:pas; +assouvie assouvir ver f s 2.15 5.41 0.28 0.54 par:pas; +assouvies assouvir ver f p 2.15 5.41 0.01 0.14 par:pas; +assouvir assouvir ver 2.15 5.41 0.96 2.57 inf; +assouvira assouvir ver 2.15 5.41 0.00 0.20 ind:fut:3s; +assouvirai assouvir ver 2.15 5.41 0.00 0.07 ind:fut:1s; +assouvirait assouvir ver 2.15 5.41 0.00 0.07 cnd:pre:3s; +assouviras assouvir ver 2.15 5.41 0.01 0.07 ind:fut:2s; +assouvirent assouvir ver 2.15 5.41 0.01 0.00 ind:pas:3p; +assouvis assouvir ver m p 2.15 5.41 0.27 0.34 ind:pre:1s;ind:pre:2s;par:pas; +assouvissaient assouvir ver 2.15 5.41 0.01 0.00 ind:imp:3p; +assouvissait assouvir ver 2.15 5.41 0.02 0.34 ind:imp:3s; +assouvissant assouvir ver 2.15 5.41 0.00 0.07 par:pre; +assouvisse assouvir ver 2.15 5.41 0.00 0.07 sub:pre:3s; +assouvissement assouvissement nom m s 0.03 1.22 0.03 1.22 +assouvissent assouvir ver 2.15 5.41 0.38 0.07 ind:pre:3p; +assouvit assouvir ver 2.15 5.41 0.02 0.34 ind:pre:3s;ind:pas:3s; +assoyait asseoir ver 322.71 395.27 0.00 0.07 ind:imp:3s; +assoyez asseoir ver 322.71 395.27 0.87 0.00 imp:pre:2p;ind:pre:2p; +assoyons asseoir ver 322.71 395.27 0.00 0.07 ind:pre:1p; +assèche assécher ver 2.48 3.58 0.48 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assèchement assèchement nom m s 0.23 0.47 0.23 0.47 +assèchent assécher ver 2.48 3.58 0.29 0.00 ind:pre:3p; +assène assener ver 0.11 5.47 0.03 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assènent assener ver 0.11 5.47 0.00 0.20 ind:pre:3p; +assènerai assener ver 0.11 5.47 0.01 0.00 ind:fut:1s; +assécha assécher ver 2.48 3.58 0.00 0.14 ind:pas:3s; +asséchaient assécher ver 2.48 3.58 0.01 0.07 ind:imp:3p; +asséchais assécher ver 2.48 3.58 0.01 0.07 ind:imp:1s; +asséchait assécher ver 2.48 3.58 0.02 0.41 ind:imp:3s; +asséchant assécher ver 2.48 3.58 0.01 0.14 par:pre; +assécher assécher ver 2.48 3.58 0.84 0.81 inf; +assécherait assécher ver 2.48 3.58 0.00 0.07 cnd:pre:3s; +asséchez assécher ver 2.48 3.58 0.02 0.00 imp:pre:2p;ind:pre:2p; +asséchons assécher ver 2.48 3.58 0.14 0.00 imp:pre:1p; +asséché assécher ver m s 2.48 3.58 0.43 0.61 par:pas; +asséchée assécher ver f s 2.48 3.58 0.11 0.47 par:pas; +asséchées assécher ver f p 2.48 3.58 0.01 0.14 par:pas; +asséchés assécher ver m p 2.48 3.58 0.11 0.14 par:pas; +assujetti assujettir ver m s 0.15 3.24 0.04 0.81 par:pas; +assujettie assujettir ver f s 0.15 3.24 0.03 0.20 par:pas; +assujetties assujettir ver f p 0.15 3.24 0.01 0.20 par:pas; +assujettir assujettir ver 0.15 3.24 0.04 1.01 inf; +assujettiraient assujettir ver 0.15 3.24 0.00 0.07 cnd:pre:3p; +assujettis assujetti adj m p 0.05 0.27 0.03 0.14 +assujettissaient assujettir ver 0.15 3.24 0.00 0.07 ind:imp:3p; +assujettissait assujettir ver 0.15 3.24 0.00 0.07 ind:imp:3s; +assujettissant assujettissant adj m s 0.01 0.00 0.01 0.00 +assujettisse assujettir ver 0.15 3.24 0.01 0.00 sub:pre:3s; +assujettissement assujettissement nom m s 0.03 0.34 0.03 0.34 +assujettissent assujettir ver 0.15 3.24 0.00 0.07 ind:pre:3p; +assujettit assujettir ver 0.15 3.24 0.00 0.47 ind:pre:3s;ind:pas:3s; +assuma assumer ver 12.83 14.80 0.03 0.27 ind:pas:3s; +assumai assumer ver 12.83 14.80 0.00 0.07 ind:pas:1s; +assumaient assumer ver 12.83 14.80 0.00 0.27 ind:imp:3p; +assumais assumer ver 12.83 14.80 0.04 0.07 ind:imp:1s; +assumait assumer ver 12.83 14.80 0.17 1.96 ind:imp:3s; +assumant assumer ver 12.83 14.80 0.11 0.41 par:pre; +assume assumer ver 12.83 14.80 4.17 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assument assumer ver 12.83 14.80 0.33 0.47 ind:pre:3p; +assumer assumer ver 12.83 14.80 5.70 6.35 inf; +assumera assumer ver 12.83 14.80 0.20 0.00 ind:fut:3s; +assumerai assumer ver 12.83 14.80 0.36 0.07 ind:fut:1s; +assumeraient assumer ver 12.83 14.80 0.00 0.07 cnd:pre:3p; +assumerais assumer ver 12.83 14.80 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +assumerait assumer ver 12.83 14.80 0.04 0.20 cnd:pre:3s; +assumeras assumer ver 12.83 14.80 0.14 0.00 ind:fut:2s; +assumerez assumer ver 12.83 14.80 0.09 0.07 ind:fut:2p; +assumerions assumer ver 12.83 14.80 0.01 0.00 cnd:pre:1p; +assumerons assumer ver 12.83 14.80 0.00 0.07 ind:fut:1p; +assumez assumer ver 12.83 14.80 0.38 0.14 imp:pre:2p;ind:pre:2p; +assumions assumer ver 12.83 14.80 0.01 0.00 ind:imp:1p; +assumons assumer ver 12.83 14.80 0.48 0.27 imp:pre:1p;ind:pre:1p; +assumât assumer ver 12.83 14.80 0.00 0.07 sub:imp:3s; +assumèrent assumer ver 12.83 14.80 0.00 0.07 ind:pas:3p; +assumé assumer ver m s 12.83 14.80 0.53 1.42 par:pas; +assumée assumer ver f s 12.83 14.80 0.01 0.47 par:pas; +assumées assumer ver f p 12.83 14.80 0.00 0.20 par:pas; +assumés assumer ver m p 12.83 14.80 0.02 0.07 par:pas; +asséna asséner ver 0.14 0.47 0.01 0.07 ind:pas:3s; +assénait asséner ver 0.14 0.47 0.01 0.07 ind:imp:3s; +asséner asséner ver 0.14 0.47 0.06 0.14 inf; +asséné asséner ver m s 0.14 0.47 0.05 0.14 par:pas; +assénées asséner ver f p 0.14 0.47 0.00 0.07 par:pas; +assura assurer ver 107.63 126.55 0.22 11.62 ind:pas:3s; +assurable assurable adj m s 0.01 0.00 0.01 0.00 +assurage assurage nom m s 0.02 0.00 0.02 0.00 +assurai assurer ver 107.63 126.55 0.01 1.42 ind:pas:1s; +assuraient assurer ver 107.63 126.55 0.11 3.38 ind:imp:3p; +assurais assurer ver 107.63 126.55 0.59 0.54 ind:imp:1s;ind:imp:2s; +assurait assurer ver 107.63 126.55 0.85 11.49 ind:imp:3s; +assurance_accidents assurance_accidents nom f s 0.10 0.00 0.10 0.00 +assurance_chômage assurance_chômage nom f s 0.01 0.00 0.01 0.00 +assurance_maladie assurance_maladie nom f s 0.04 0.07 0.04 0.07 +assurance_vie assurance_vie nom f s 1.32 0.27 1.26 0.27 +assurance assurance nom f s 29.80 33.24 24.30 25.14 +assurance_vie assurance_vie nom f p 1.32 0.27 0.06 0.00 +assurances assurance nom f p 29.80 33.24 5.50 8.11 +assurant assurer ver 107.63 126.55 0.43 5.27 par:pre; +assurassent assurer ver 107.63 126.55 0.00 0.07 sub:imp:3p; +assure assurer ver 107.63 126.55 43.77 27.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assurent assurer ver 107.63 126.55 1.89 2.43 ind:pre:3p; +assurer assurer ver 107.63 126.55 34.84 38.85 inf; +assurera assurer ver 107.63 126.55 0.79 1.15 ind:fut:3s; +assurerai assurer ver 107.63 126.55 1.69 0.00 ind:fut:1s; +assureraient assurer ver 107.63 126.55 0.03 0.54 cnd:pre:3p; +assurerais assurer ver 107.63 126.55 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +assurerait assurer ver 107.63 126.55 0.11 1.08 cnd:pre:3s; +assureras assurer ver 107.63 126.55 0.09 0.07 ind:fut:2s; +assurerez assurer ver 107.63 126.55 0.14 0.07 ind:fut:2p; +assurerons assurer ver 107.63 126.55 0.24 0.00 ind:fut:1p; +assureront assurer ver 107.63 126.55 0.21 0.20 ind:fut:3p; +assures assurer ver 107.63 126.55 2.57 0.34 ind:pre:2s;sub:pre:2s; +assureur_conseil assureur_conseil nom m s 0.00 0.07 0.00 0.07 +assureur assureur nom m s 1.93 0.41 1.48 0.20 +assureurs assureur nom m p 1.93 0.41 0.45 0.20 +assurez assurer ver 107.63 126.55 6.16 0.54 imp:pre:2p;ind:pre:2p; +assuriez assurer ver 107.63 126.55 0.10 0.07 ind:imp:2p; +assurions assurer ver 107.63 126.55 0.03 0.14 ind:imp:1p; +assurons assurer ver 107.63 126.55 0.80 0.07 imp:pre:1p;ind:pre:1p; +assurât assurer ver 107.63 126.55 0.00 0.41 sub:imp:3s; +assurèrent assurer ver 107.63 126.55 0.00 0.68 ind:pas:3p; +assuré assurer ver m s 107.63 126.55 8.40 12.91 par:pas; +assurée assurer ver f s 107.63 126.55 1.94 3.51 par:pas; +assurées assurer ver f p 107.63 126.55 0.14 1.01 par:pas; +assurément assurément adv 3.19 10.41 3.19 10.41 +assurés assurer ver m p 107.63 126.55 1.35 1.55 par:pas; +assuétude assuétude nom f s 0.01 0.00 0.01 0.00 +assyrien assyrien adj m s 0.01 0.27 0.01 0.00 +assyrienne assyrien adj f s 0.01 0.27 0.00 0.14 +assyriennes assyrien adj f p 0.01 0.27 0.00 0.07 +assyriens assyrien nom m p 0.04 0.14 0.03 0.14 +assyro assyro adv 0.00 0.20 0.00 0.20 +astarté astarté nom f s 0.01 0.07 0.01 0.07 +aste aste nom f s 0.02 0.00 0.02 0.00 +aster aster nom m s 0.42 0.47 0.42 0.00 +asters aster nom m p 0.42 0.47 0.00 0.47 +asthmatique asthmatique adj s 1.37 1.22 1.20 1.15 +asthmatiques asthmatique adj p 1.37 1.22 0.18 0.07 +asthme asthme nom m s 3.14 3.18 3.13 3.11 +asthmes asthme nom m p 3.14 3.18 0.01 0.07 +asthénie asthénie nom f s 0.02 0.47 0.02 0.07 +asthénies asthénie nom f p 0.02 0.47 0.00 0.41 +asti asti nom m s 0.01 0.20 0.01 0.20 +astic astic nom m s 0.00 0.07 0.00 0.07 +asticot asticot nom m s 2.18 2.23 0.95 0.88 +asticota asticoter ver 0.58 1.89 0.00 0.07 ind:pas:3s; +asticotages asticotage nom m p 0.00 0.07 0.00 0.07 +asticotaient asticoter ver 0.58 1.89 0.01 0.07 ind:imp:3p; +asticotais asticoter ver 0.58 1.89 0.01 0.14 ind:imp:1s; +asticotait asticoter ver 0.58 1.89 0.01 0.20 ind:imp:3s; +asticotant asticoter ver 0.58 1.89 0.00 0.07 par:pre; +asticote asticoter ver 0.58 1.89 0.11 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +asticotent asticoter ver 0.58 1.89 0.04 0.00 ind:pre:3p; +asticoter asticoter ver 0.58 1.89 0.24 0.74 inf;; +asticotez asticoter ver 0.58 1.89 0.03 0.00 imp:pre:2p; +asticots asticot nom m p 2.18 2.23 1.23 1.35 +asticoté asticoter ver m s 0.58 1.89 0.13 0.34 par:pas; +asticotés asticoter ver m p 0.58 1.89 0.00 0.07 par:pas; +astigmate astigmate adj m s 0.06 0.00 0.06 0.00 +astigmatisme astigmatisme nom m s 0.00 0.07 0.00 0.07 +astiqua astiquer ver 2.98 9.80 0.00 0.20 ind:pas:3s; +astiquage astiquage nom m s 0.01 0.47 0.01 0.47 +astiquaient astiquer ver 2.98 9.80 0.01 0.07 ind:imp:3p; +astiquais astiquer ver 2.98 9.80 0.06 0.00 ind:imp:1s; +astiquait astiquer ver 2.98 9.80 0.03 1.15 ind:imp:3s; +astiquant astiquer ver 2.98 9.80 0.00 0.41 par:pre; +astique astiquer ver 2.98 9.80 1.04 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +astiquent astiquer ver 2.98 9.80 0.01 0.27 ind:pre:3p; +astiquer astiquer ver 2.98 9.80 0.90 2.23 inf; +astiquera astiquer ver 2.98 9.80 0.12 0.00 ind:fut:3s; +astiquerai astiquer ver 2.98 9.80 0.02 0.07 ind:fut:1s; +astiquerons astiquer ver 2.98 9.80 0.00 0.07 ind:fut:1p; +astiqueur astiqueur nom m s 0.01 0.00 0.01 0.00 +astiquez astiquer ver 2.98 9.80 0.12 0.07 imp:pre:2p;ind:pre:2p; +astiqué astiquer ver m s 2.98 9.80 0.48 1.49 par:pas; +astiquée astiquer ver f s 2.98 9.80 0.02 1.01 par:pas; +astiquées astiquer ver f p 2.98 9.80 0.16 0.47 par:pas; +astiqués astiquer ver m p 2.98 9.80 0.01 1.35 par:pas; +astragale astragale nom m s 0.00 0.47 0.00 0.34 +astragales astragale nom m p 0.00 0.47 0.00 0.14 +astrakan astrakan nom m s 0.14 1.69 0.14 1.69 +astral astral adj m s 2.02 1.69 0.78 1.15 +astrale astral adj f s 2.02 1.69 0.66 0.41 +astrales astral adj f p 2.02 1.69 0.55 0.14 +astraux astral adj m p 2.02 1.69 0.04 0.00 +astre astre nom m s 3.13 12.30 1.89 4.32 +astreignais astreindre ver 0.09 3.78 0.00 0.20 ind:imp:1s; +astreignait astreindre ver 0.09 3.78 0.01 1.01 ind:imp:3s; +astreignant astreignant adj m s 0.11 0.34 0.09 0.20 +astreignante astreignant adj f s 0.11 0.34 0.01 0.00 +astreignantes astreignant adj f p 0.11 0.34 0.01 0.14 +astreigne astreindre ver 0.09 3.78 0.00 0.07 sub:pre:3s; +astreignions astreindre ver 0.09 3.78 0.00 0.07 ind:imp:1p; +astreignis astreindre ver 0.09 3.78 0.00 0.07 ind:pas:1s; +astreignit astreindre ver 0.09 3.78 0.00 0.20 ind:pas:3s; +astreindre astreindre ver 0.09 3.78 0.02 0.68 inf; +astreins astreindre ver 0.09 3.78 0.00 0.14 ind:pre:1s; +astreint astreindre ver m s 0.09 3.78 0.04 0.81 ind:pre:3s;par:pas; +astreinte astreinte nom f s 0.03 0.07 0.02 0.07 +astreintes astreinte nom f p 0.03 0.07 0.01 0.00 +astreints astreindre ver m p 0.09 3.78 0.01 0.27 par:pas; +astres astre nom m p 3.13 12.30 1.24 7.97 +astringent astringent adj m s 0.17 0.47 0.16 0.00 +astringente astringent adj f s 0.17 0.47 0.01 0.20 +astringentes astringent adj f p 0.17 0.47 0.00 0.27 +astro astro adv 0.14 0.00 0.14 0.00 +astrochimie astrochimie nom f s 0.04 0.00 0.04 0.00 +astrolabe astrolabe nom m s 0.01 0.14 0.01 0.07 +astrolabes astrolabe nom m p 0.01 0.14 0.00 0.07 +astrologie astrologie nom f s 0.87 0.54 0.87 0.54 +astrologique astrologique adj s 0.48 0.61 0.44 0.14 +astrologiquement astrologiquement adv 0.01 0.00 0.01 0.00 +astrologiques astrologique adj p 0.48 0.61 0.04 0.47 +astrologue astrologue nom s 0.79 1.08 0.39 0.47 +astrologues astrologue nom p 0.79 1.08 0.40 0.61 +astrolâtres astrolâtre nom p 0.00 0.07 0.00 0.07 +astrométrie astrométrie nom f s 0.01 0.00 0.01 0.00 +astronaute astronaute nom s 6.45 0.41 3.71 0.14 +astronautes astronaute nom p 6.45 0.41 2.73 0.27 +astronautique astronautique nom f s 0.05 0.07 0.05 0.07 +astronef astronef nom m s 0.27 0.00 0.27 0.00 +astronome astronome nom s 0.50 1.42 0.30 0.54 +astronomes astronome nom p 0.50 1.42 0.19 0.88 +astronomie astronomie nom f s 0.91 1.01 0.91 1.01 +astronomique astronomique adj s 1.11 1.89 0.92 0.95 +astronomiquement astronomiquement adv 0.02 0.00 0.02 0.00 +astronomiques astronomique adj p 1.11 1.89 0.19 0.95 +astrophore astrophore nom m s 0.00 0.14 0.00 0.14 +astrophysicien astrophysicien nom m s 0.14 0.00 0.12 0.00 +astrophysicienne astrophysicien nom f s 0.14 0.00 0.01 0.00 +astrophysiciens astrophysicien nom m p 0.14 0.00 0.01 0.00 +astrophysique astrophysique nom f s 0.28 0.00 0.28 0.00 +astroport astroport nom m s 0.06 0.00 0.06 0.00 +astroscope astroscope nom m s 0.01 0.00 0.01 0.00 +astuce astuce nom f s 3.36 5.07 2.74 3.58 +astuces astuce nom f p 3.36 5.07 0.62 1.49 +astucieuse astucieux adj f s 3.75 2.36 0.18 0.81 +astucieusement astucieusement adv 0.05 0.41 0.05 0.41 +astucieuses astucieux adj f p 3.75 2.36 0.04 0.27 +astucieux astucieux adj m 3.75 2.36 3.52 1.28 +asturienne asturienne nom f s 0.00 0.07 0.00 0.07 +astérisme astérisme nom m s 0.14 0.00 0.14 0.00 +astérisque astérisque nom m s 0.04 0.34 0.04 0.27 +astérisques astérisque nom m p 0.04 0.34 0.00 0.07 +astéroïde astéroïde nom m s 2.28 0.07 1.52 0.00 +astéroïdes astéroïde nom m p 2.28 0.07 0.76 0.07 +asymptomatique asymptomatique adj m s 0.09 0.20 0.05 0.00 +asymptomatiques asymptomatique adj m p 0.09 0.20 0.04 0.20 +asymétrie asymétrie nom f s 0.49 0.34 0.49 0.34 +asymétrique asymétrique adj s 0.35 1.08 0.26 0.47 +asymétriquement asymétriquement adv 0.00 0.20 0.00 0.20 +asymétriques asymétrique adj p 0.35 1.08 0.09 0.61 +asynchrone asynchrone adj s 0.01 0.00 0.01 0.00 +asystolie asystolie nom f s 0.27 0.00 0.27 0.00 +atabeg atabeg nom m s 0.00 0.20 0.00 0.07 +atabegs atabeg nom m p 0.00 0.20 0.00 0.14 +ataman ataman nom m s 0.10 0.14 0.10 0.07 +atamans ataman nom m p 0.10 0.14 0.00 0.07 +ataraxie ataraxie nom f s 0.02 0.07 0.02 0.07 +atavique atavique adj s 0.24 1.28 0.23 1.15 +ataviques atavique adj p 0.24 1.28 0.01 0.14 +atavisme atavisme nom m s 0.03 1.22 0.03 1.08 +atavismes atavisme nom m p 0.03 1.22 0.00 0.14 +ataxie ataxie nom f s 0.01 0.00 0.01 0.00 +atchoum atchoum ono 0.14 0.27 0.14 0.27 +atelier atelier nom m s 16.95 45.07 15.21 35.88 +ateliers atelier nom m p 16.95 45.07 1.73 9.19 +atellanes atellane nom f p 0.00 0.07 0.00 0.07 +atermoiement atermoiement nom m s 0.28 1.08 0.00 0.14 +atermoiements atermoiement nom m p 0.28 1.08 0.28 0.95 +atermoyé atermoyer ver m s 0.00 0.07 0.00 0.07 par:pas; +athanor athanor nom m s 0.00 0.68 0.00 0.68 +aède aède nom m s 0.11 0.27 0.10 0.20 +aèdes aède nom m p 0.11 0.27 0.01 0.07 +athlète athlète nom s 4.75 4.32 3.09 3.11 +athlètes athlète nom p 4.75 4.32 1.66 1.22 +athlétique athlétique adj s 0.74 2.57 0.65 2.16 +athlétiques athlétique adj p 0.74 2.57 0.09 0.41 +athlétisme athlétisme nom m s 0.56 0.47 0.56 0.47 +aère aérer ver 2.65 4.12 0.32 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +athée athée nom s 1.77 2.70 1.50 1.69 +athées athée nom p 1.77 2.70 0.27 1.01 +athéisme athéisme nom m s 0.29 1.76 0.29 1.76 +athéiste athéiste adj f s 0.01 0.00 0.01 0.00 +athénien athénien adj m s 0.33 0.88 0.20 0.14 +athénienne athénien adj f s 0.33 0.88 0.13 0.34 +athéniennes athénienne nom f p 0.10 0.41 0.10 0.07 +athéniens athénien nom m p 0.08 1.08 0.08 0.74 +athénée athénée nom m s 0.01 0.00 0.01 0.00 +atlante atlante nom m s 0.28 0.41 0.05 0.27 +atlantes atlante nom m p 0.28 0.41 0.23 0.14 +atlantique atlantique adj s 0.39 1.89 0.23 1.62 +atlantiques atlantique adj p 0.39 1.89 0.16 0.27 +atlas atlas nom m 0.93 2.16 0.93 2.16 +atmosphère atmosphère nom f s 13.85 36.69 13.45 36.15 +atmosphères atmosphère nom f p 13.85 36.69 0.40 0.54 +atmosphérique atmosphérique adj s 1.89 1.42 1.14 0.95 +atmosphériques atmosphérique adj p 1.89 1.42 0.76 0.47 +atoll atoll nom m s 0.15 0.61 0.12 0.54 +atolls atoll nom m p 0.15 0.61 0.03 0.07 +atome atome nom m s 2.85 4.12 1.30 1.82 +atomes atome nom m p 2.85 4.12 1.55 2.30 +atomique atomique adj s 6.33 8.31 5.30 6.22 +atomiques atomique adj p 6.33 8.31 1.02 2.09 +atomisait atomiser ver 0.33 0.20 0.00 0.07 ind:imp:3s; +atomise atomiser ver 0.33 0.20 0.04 0.14 ind:pre:1s;ind:pre:3s; +atomisent atomiser ver 0.33 0.20 0.01 0.00 ind:pre:3p; +atomiser atomiser ver 0.33 0.20 0.17 0.00 inf; +atomiseur atomiseur nom m s 0.11 0.00 0.11 0.00 +atomisez atomiser ver 0.33 0.20 0.02 0.00 imp:pre:2p; +atomiste atomiste nom s 0.01 0.14 0.01 0.07 +atomistes atomiste adj p 0.01 0.20 0.01 0.14 +atomisé atomiser ver m s 0.33 0.20 0.06 0.00 par:pas; +atomisée atomiser ver f s 0.33 0.20 0.03 0.00 par:pas; +atomisés atomiser ver m p 0.33 0.20 0.01 0.00 par:pas; +atonal atonal adj m s 0.03 0.20 0.01 0.07 +atonale atonal adj f s 0.03 0.20 0.01 0.07 +atonales atonal adj f p 0.03 0.20 0.00 0.07 +atone atone adj s 0.02 0.88 0.02 0.74 +atones atone adj m p 0.02 0.88 0.00 0.14 +atonie atonie nom f s 0.01 0.54 0.01 0.54 +atour atour nom m s 1.09 1.35 0.14 0.07 +atourné atourner ver m s 0.00 0.07 0.00 0.07 par:pas; +atours atour nom m p 1.09 1.35 0.95 1.28 +atout atout nom m s 5.74 4.53 3.66 2.84 +atouts atout nom m p 5.74 4.53 2.08 1.69 +atrabilaire atrabilaire nom s 0.01 0.00 0.01 0.00 +atrium atrium nom m s 0.30 0.14 0.30 0.14 +atroce atroce adj s 10.94 17.43 8.41 13.24 +atrocement atrocement adv 2.27 3.18 2.27 3.18 +atroces atroce adj p 10.94 17.43 2.53 4.19 +atrocité atrocité nom f s 3.92 2.50 0.96 0.74 +atrocités atrocité nom f p 3.92 2.50 2.96 1.76 +atrophiait atrophier ver 0.51 0.74 0.00 0.07 ind:imp:3s; +atrophie atrophie nom f s 0.39 0.27 0.39 0.27 +atrophient atrophier ver 0.51 0.74 0.11 0.00 ind:pre:3p; +atrophier atrophier ver 0.51 0.74 0.05 0.07 inf; +atrophieraient atrophier ver 0.51 0.74 0.01 0.00 cnd:pre:3p; +atrophies atrophier ver 0.51 0.74 0.01 0.00 ind:pre:2s; +atrophié atrophié adj m s 0.21 1.22 0.04 0.61 +atrophiée atrophier ver f s 0.51 0.74 0.15 0.20 par:pas; +atrophiées atrophié adj f p 0.21 1.22 0.01 0.27 +atrophiés atrophier ver m p 0.51 0.74 0.08 0.14 par:pas; +atropine atropine nom f s 0.86 0.07 0.86 0.07 +atrésie atrésie nom f s 0.04 0.00 0.04 0.00 +attabla attabler ver 0.20 7.84 0.00 0.41 ind:pas:3s; +attablai attabler ver 0.20 7.84 0.00 0.07 ind:pas:1s; +attablaient attabler ver 0.20 7.84 0.00 0.27 ind:imp:3p; +attablais attabler ver 0.20 7.84 0.00 0.14 ind:imp:1s; +attablait attabler ver 0.20 7.84 0.00 0.20 ind:imp:3s; +attablant attabler ver 0.20 7.84 0.00 0.07 par:pre; +attable attabler ver 0.20 7.84 0.00 0.34 ind:pre:1s;ind:pre:3s; +attablent attabler ver 0.20 7.84 0.00 0.14 ind:pre:3p; +attabler attabler ver 0.20 7.84 0.02 0.54 inf; +attablions attabler ver 0.20 7.84 0.00 0.14 ind:imp:1p; +attablons attabler ver 0.20 7.84 0.00 0.07 imp:pre:1p; +attablèrent attabler ver 0.20 7.84 0.00 0.20 ind:pas:3p; +attablé attabler ver m s 0.20 7.84 0.02 1.96 par:pas; +attablée attabler ver f s 0.20 7.84 0.02 0.41 par:pas; +attablées attablé adj f p 0.13 1.08 0.01 0.07 +attablés attabler ver m p 0.20 7.84 0.13 2.57 par:pas; +attacha attacher ver 46.37 71.01 0.04 2.84 ind:pas:3s; +attachai attacher ver 46.37 71.01 0.02 0.47 ind:pas:1s; +attachaient attacher ver 46.37 71.01 0.23 2.09 ind:imp:3p; +attachais attacher ver 46.37 71.01 0.26 0.74 ind:imp:1s;ind:imp:2s; +attachait attacher ver 46.37 71.01 0.48 6.62 ind:imp:3s; +attachant attachant adj m s 1.22 2.03 0.69 1.35 +attachante attachant adj f s 1.22 2.03 0.50 0.47 +attachants attachant adj m p 1.22 2.03 0.04 0.20 +attache attacher ver 46.37 71.01 10.42 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attachement attachement nom m s 3.33 10.95 2.87 9.59 +attachements attachement nom m p 3.33 10.95 0.46 1.35 +attachent attacher ver 46.37 71.01 0.70 1.96 ind:pre:3p; +attacher attacher ver 46.37 71.01 9.86 11.69 inf;; +attachera attacher ver 46.37 71.01 0.42 0.00 ind:fut:3s; +attacherai attacher ver 46.37 71.01 0.29 0.20 ind:fut:1s; +attacherais attacher ver 46.37 71.01 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +attacherait attacher ver 46.37 71.01 0.19 0.41 cnd:pre:3s; +attacheras attacher ver 46.37 71.01 0.17 0.07 ind:fut:2s; +attacherez attacher ver 46.37 71.01 0.01 0.07 ind:fut:2p; +attacherions attacher ver 46.37 71.01 0.00 0.07 cnd:pre:1p; +attacheront attacher ver 46.37 71.01 0.02 0.14 ind:fut:3p; +attaches attache nom f p 2.95 7.16 1.13 3.18 +attachez attacher ver 46.37 71.01 4.49 1.01 imp:pre:2p;ind:pre:2p; +attachiez attacher ver 46.37 71.01 0.10 0.14 ind:imp:2p;sub:pre:2p; +attachions attacher ver 46.37 71.01 0.01 0.27 ind:imp:1p; +attachons attacher ver 46.37 71.01 0.56 0.14 imp:pre:1p;ind:pre:1p; +attachât attacher ver 46.37 71.01 0.00 0.54 sub:imp:3s; +attachèrent attacher ver 46.37 71.01 0.10 0.54 ind:pas:3p; +attaché_case attaché_case nom m s 0.01 0.54 0.00 0.54 +attaché attacher ver m s 46.37 71.01 8.76 13.85 par:pas; +attachée attacher ver f s 46.37 71.01 5.33 6.28 par:pas; +attachées attacher ver f p 46.37 71.01 0.61 1.89 par:pas; +attaché_case attaché_case nom m p 0.01 0.54 0.01 0.00 +attachés attacher ver m p 46.37 71.01 1.83 6.96 par:pas; +attaqua attaquer ver 99.64 70.41 0.26 5.00 ind:pas:3s; +attaquable attaquable adj s 0.01 0.00 0.01 0.00 +attaquai attaquer ver 99.64 70.41 0.01 0.74 ind:pas:1s; +attaquaient attaquer ver 99.64 70.41 0.42 2.84 ind:imp:3p; +attaquais attaquer ver 99.64 70.41 0.12 0.47 ind:imp:1s;ind:imp:2s; +attaquait attaquer ver 99.64 70.41 1.88 6.01 ind:imp:3s; +attaquant attaquer ver 99.64 70.41 0.88 2.77 par:pre; +attaquante attaquant adj f s 0.25 0.14 0.06 0.07 +attaquants attaquant nom m p 1.13 0.41 0.56 0.14 +attaque attaque nom f s 59.92 37.03 52.39 29.93 +attaquent attaquer ver 99.64 70.41 6.82 4.26 ind:pre:3p;sub:pre:3p; +attaquer attaquer ver 99.64 70.41 25.91 17.70 inf;; +attaquera attaquer ver 99.64 70.41 2.25 0.34 ind:fut:3s; +attaquerai attaquer ver 99.64 70.41 0.44 0.41 ind:fut:1s; +attaqueraient attaquer ver 99.64 70.41 0.51 0.34 cnd:pre:3p; +attaquerais attaquer ver 99.64 70.41 0.30 0.14 cnd:pre:1s;cnd:pre:2s; +attaquerait attaquer ver 99.64 70.41 0.75 0.41 cnd:pre:3s; +attaqueras attaquer ver 99.64 70.41 0.05 0.07 ind:fut:2s; +attaquerez attaquer ver 99.64 70.41 0.29 0.07 ind:fut:2p; +attaqueriez attaquer ver 99.64 70.41 0.04 0.00 cnd:pre:2p; +attaquerions attaquer ver 99.64 70.41 0.02 0.00 cnd:pre:1p; +attaquerons attaquer ver 99.64 70.41 1.25 0.07 ind:fut:1p; +attaqueront attaquer ver 99.64 70.41 2.08 0.34 ind:fut:3p; +attaques attaque nom f p 59.92 37.03 7.53 7.09 +attaqueur attaqueur nom m s 0.01 0.00 0.01 0.00 +attaquez attaquer ver 99.64 70.41 3.48 0.41 imp:pre:2p;ind:pre:2p; +attaquiez attaquer ver 99.64 70.41 0.10 0.00 ind:imp:2p; +attaquâmes attaquer ver 99.64 70.41 0.00 0.07 ind:pas:1p; +attaquons attaquer ver 99.64 70.41 2.06 0.54 imp:pre:1p;ind:pre:1p; +attaquât attaquer ver 99.64 70.41 0.00 0.14 sub:imp:3s; +attaquèrent attaquer ver 99.64 70.41 0.14 1.08 ind:pas:3p; +attaqué attaquer ver m s 99.64 70.41 20.04 9.12 par:pas; +attaquée attaquer ver f s 99.64 70.41 5.80 2.43 par:pas; +attaquées attaquer ver f p 99.64 70.41 0.46 0.34 par:pas; +attaqués attaquer ver m p 99.64 70.41 5.34 2.84 par:pas; +attarda attarder ver 4.36 29.39 0.01 3.45 ind:pas:3s; +attardai attarder ver 4.36 29.39 0.00 0.54 ind:pas:1s; +attardaient attarder ver 4.36 29.39 0.01 1.82 ind:imp:3p; +attardais attarder ver 4.36 29.39 0.00 1.15 ind:imp:1s; +attardait attarder ver 4.36 29.39 0.13 3.65 ind:imp:3s; +attardant attarder ver 4.36 29.39 0.04 1.22 par:pre; +attarde attarder ver 4.36 29.39 0.84 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +attardement attardement nom m s 0.00 0.07 0.00 0.07 +attardent attarder ver 4.36 29.39 0.05 1.15 ind:pre:3p; +attarder attarder ver 4.36 29.39 1.61 7.03 inf; +attardera attarder ver 4.36 29.39 0.02 0.07 ind:fut:3s; +attarderai attarder ver 4.36 29.39 0.02 0.00 ind:fut:1s; +attarderaient attarder ver 4.36 29.39 0.00 0.14 cnd:pre:3p; +attarderait attarder ver 4.36 29.39 0.02 0.07 cnd:pre:3s; +attarderont attarder ver 4.36 29.39 0.00 0.07 ind:fut:3p; +attardez attarder ver 4.36 29.39 0.20 0.20 imp:pre:2p;ind:pre:2p; +attardions attarder ver 4.36 29.39 0.01 0.20 ind:imp:1p; +attardâmes attarder ver 4.36 29.39 0.00 0.27 ind:pas:1p; +attardons attarder ver 4.36 29.39 0.09 0.20 imp:pre:1p;ind:pre:1p; +attardât attarder ver 4.36 29.39 0.00 0.20 sub:imp:3s; +attardèrent attarder ver 4.36 29.39 0.00 0.81 ind:pas:3p; +attardé attarder ver m s 4.36 29.39 0.84 1.49 par:pas; +attardée attarder ver f s 4.36 29.39 0.33 0.68 par:pas; +attardées attardé adj f p 1.06 3.11 0.02 0.27 +attardés attardé nom m p 1.58 1.55 0.74 0.88 +atteignîmes atteindre ver 61.83 126.76 0.33 0.95 ind:pas:1p; +atteignît atteindre ver 61.83 126.76 0.00 0.47 sub:imp:3s; +atteignable atteignable adj s 0.01 0.00 0.01 0.00 +atteignaient atteindre ver 61.83 126.76 0.04 4.39 ind:imp:3p; +atteignais atteindre ver 61.83 126.76 0.22 0.74 ind:imp:1s;ind:imp:2s; +atteignait atteindre ver 61.83 126.76 0.50 9.59 ind:imp:3s; +atteignant atteindre ver 61.83 126.76 0.54 2.57 par:pre; +atteigne atteindre ver 61.83 126.76 1.82 1.28 sub:pre:1s;sub:pre:3s; +atteignent atteindre ver 61.83 126.76 1.54 2.16 ind:pre:3p; +atteignes atteindre ver 61.83 126.76 0.03 0.00 sub:pre:2s; +atteignez atteindre ver 61.83 126.76 0.28 0.07 imp:pre:2p;ind:pre:2p; +atteignions atteindre ver 61.83 126.76 0.06 0.34 ind:imp:1p; +atteignirent atteindre ver 61.83 126.76 0.24 2.70 ind:pas:3p; +atteignis atteindre ver 61.83 126.76 0.14 1.01 ind:pas:1s; +atteignissent atteindre ver 61.83 126.76 0.00 0.07 sub:imp:3p; +atteignit atteindre ver 61.83 126.76 0.39 10.34 ind:pas:3s; +atteignons atteindre ver 61.83 126.76 0.28 0.95 imp:pre:1p;ind:pre:1p; +atteindra atteindre ver 61.83 126.76 1.90 1.08 ind:fut:3s; +atteindrai atteindre ver 61.83 126.76 0.31 0.27 ind:fut:1s; +atteindraient atteindre ver 61.83 126.76 0.15 0.34 cnd:pre:3p; +atteindrais atteindre ver 61.83 126.76 0.05 0.41 cnd:pre:1s;cnd:pre:2s; +atteindrait atteindre ver 61.83 126.76 0.50 1.08 cnd:pre:3s; +atteindras atteindre ver 61.83 126.76 0.27 0.07 ind:fut:2s; +atteindre atteindre ver 61.83 126.76 24.42 40.47 inf; +atteindrez atteindre ver 61.83 126.76 0.41 0.20 ind:fut:2p; +atteindrons atteindre ver 61.83 126.76 0.60 0.14 ind:fut:1p; +atteindront atteindre ver 61.83 126.76 0.79 0.20 ind:fut:3p; +atteins atteindre ver 61.83 126.76 1.27 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +atteint atteindre ver m s 61.83 126.76 19.99 35.68 ind:pre:3s;par:pas; +atteinte atteindre ver f s 61.83 126.76 2.71 5.20 par:pas; +atteintes atteindre ver f p 61.83 126.76 0.36 1.01 par:pas; +atteints atteindre ver m p 61.83 126.76 1.71 2.03 par:pas; +attela atteler ver 2.12 8.58 0.02 0.41 ind:pas:3s; +attelage attelage nom m s 1.52 5.61 1.43 4.05 +attelages attelage nom m p 1.52 5.61 0.10 1.55 +attelai atteler ver 2.12 8.58 0.00 0.14 ind:pas:1s; +attelaient atteler ver 2.12 8.58 0.00 0.20 ind:imp:3p; +attelais atteler ver 2.12 8.58 0.10 0.14 ind:imp:1s; +attelait atteler ver 2.12 8.58 0.02 0.41 ind:imp:3s; +attelant atteler ver 2.12 8.58 0.00 0.07 par:pre; +atteler atteler ver 2.12 8.58 0.97 1.42 inf; +attelez atteler ver 2.12 8.58 0.09 0.00 imp:pre:2p;ind:pre:2p; +attelions atteler ver 2.12 8.58 0.00 0.07 ind:imp:1p; +attelle attelle nom f s 0.83 0.68 0.73 0.47 +attellent atteler ver 2.12 8.58 0.01 0.07 ind:pre:3p; +attellera atteler ver 2.12 8.58 0.00 0.07 ind:fut:3s; +attellerais atteler ver 2.12 8.58 0.00 0.07 cnd:pre:1s; +attelles attelle nom f p 0.83 0.68 0.10 0.20 +attelâmes atteler ver 2.12 8.58 0.00 0.07 ind:pas:1p; +attelons atteler ver 2.12 8.58 0.01 0.00 imp:pre:1p; +attelèrent atteler ver 2.12 8.58 0.01 0.20 ind:pas:3p; +attelé atteler ver m s 2.12 8.58 0.15 1.89 par:pas; +attelée atteler ver f s 2.12 8.58 0.03 1.01 par:pas; +attelées atteler ver f p 2.12 8.58 0.00 0.34 par:pas; +attelés atteler ver m p 2.12 8.58 0.09 1.35 par:pas; +attenant attenant adj m s 0.40 3.72 0.05 2.23 +attenante attenant adj f s 0.40 3.72 0.09 1.35 +attenantes attenant adj f p 0.40 3.72 0.26 0.14 +attend attendre ver 1351.44 706.69 173.86 74.46 ind:pre:3s; +attendîmes attendre ver 1351.44 706.69 0.03 0.61 ind:pas:1p; +attendît attendre ver 1351.44 706.69 0.00 0.47 sub:imp:3s; +attendaient attendre ver 1351.44 706.69 5.12 32.77 ind:imp:3p; +attendais attendre ver 1351.44 706.69 59.29 36.82 ind:imp:1s;ind:imp:2s; +attendait attendre ver 1351.44 706.69 25.02 127.09 ind:imp:3s; +attendant attendre ver 1351.44 706.69 40.34 75.47 par:pre; +attende attendre ver 1351.44 706.69 5.18 3.38 sub:pre:1s;sub:pre:3s; +attendent attendre ver 1351.44 706.69 36.95 21.82 ind:pre:3p; +attendes attendre ver 1351.44 706.69 0.69 0.27 sub:pre:2s; +attendez attendre ver 1351.44 706.69 230.66 19.86 imp:pre:2p;ind:pre:2p; +attendiez attendre ver 1351.44 706.69 7.13 0.95 ind:imp:2p;sub:pre:2p; +attendions attendre ver 1351.44 706.69 4.25 5.47 ind:imp:1p; +attendirent attendre ver 1351.44 706.69 0.05 2.97 ind:pas:3p; +attendis attendre ver 1351.44 706.69 0.67 4.86 ind:pas:1s; +attendisse attendre ver 1351.44 706.69 0.00 0.14 sub:imp:1s; +attendissent attendre ver 1351.44 706.69 0.00 0.07 sub:imp:3p; +attendit attendre ver 1351.44 706.69 0.49 28.65 ind:pas:3s; +attendons attendre ver 1351.44 706.69 21.35 6.28 imp:pre:1p;ind:pre:1p; +attendra attendre ver 1351.44 706.69 8.23 3.04 ind:fut:3s; +attendrai attendre ver 1351.44 706.69 18.83 5.20 ind:fut:1s; +attendraient attendre ver 1351.44 706.69 0.25 1.01 cnd:pre:3p; +attendrais attendre ver 1351.44 706.69 2.04 0.61 cnd:pre:1s;cnd:pre:2s; +attendrait attendre ver 1351.44 706.69 1.23 3.51 cnd:pre:3s; +attendras attendre ver 1351.44 706.69 2.28 1.42 ind:fut:2s; +attendre attendre ver 1351.44 706.69 177.43 143.45 inf;; +attendrez attendre ver 1351.44 706.69 1.22 0.68 ind:fut:2p; +attendri attendrir ver m s 2.96 20.95 0.14 5.00 par:pas; +attendrie attendrir ver f s 2.96 20.95 0.31 2.77 par:pas; +attendries attendrir ver f p 2.96 20.95 0.00 0.34 par:pas; +attendriez attendre ver 1351.44 706.69 0.10 0.00 cnd:pre:2p; +attendrions attendre ver 1351.44 706.69 0.03 0.20 cnd:pre:1p; +attendrir attendrir ver 2.96 20.95 1.23 5.07 inf; +attendrirait attendrir ver 2.96 20.95 0.01 0.07 cnd:pre:3s; +attendriras attendrir ver 2.96 20.95 0.01 0.00 ind:fut:2s; +attendrirent attendrir ver 2.96 20.95 0.10 0.27 ind:pas:3p; +attendris attendrir ver m p 2.96 20.95 0.23 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +attendrissaient attendrir ver 2.96 20.95 0.00 0.20 ind:imp:3p; +attendrissais attendrir ver 2.96 20.95 0.00 0.07 ind:imp:1s; +attendrissait attendrir ver 2.96 20.95 0.14 1.76 ind:imp:3s; +attendrissant attendrissant adj m s 0.42 3.99 0.37 2.03 +attendrissante attendrissant adj f s 0.42 3.99 0.02 0.95 +attendrissantes attendrissant adj f p 0.42 3.99 0.00 0.54 +attendrissants attendrissant adj m p 0.42 3.99 0.03 0.47 +attendrisse attendrir ver 2.96 20.95 0.01 0.14 sub:pre:1s;sub:pre:3s; +attendrissement attendrissement nom m s 0.10 7.64 0.10 6.89 +attendrissements attendrissement nom m p 0.10 7.64 0.00 0.74 +attendrissent attendrir ver 2.96 20.95 0.16 0.54 ind:pre:3p; +attendrisseur attendrisseur nom m s 0.01 0.00 0.01 0.00 +attendrissons attendrir ver 2.96 20.95 0.00 0.07 ind:pre:1p; +attendrit attendrir ver 2.96 20.95 0.47 2.64 ind:pre:3s;ind:pas:3s; +attendrons attendre ver 1351.44 706.69 3.40 0.61 ind:fut:1p; +attendront attendre ver 1351.44 706.69 1.92 0.81 ind:fut:3p; +attends attendre ver 1351.44 706.69 478.32 62.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +attendu attendre ver m s 1351.44 706.69 38.45 34.66 par:pas; +attendue attendre ver f s 1351.44 706.69 4.69 4.39 par:pas; +attendues attendre ver f p 1351.44 706.69 0.58 0.20 par:pas; +attendus attendre ver m p 1351.44 706.69 1.39 1.89 par:pas; +attenta attenter ver 1.17 1.01 0.00 0.07 ind:pas:3s; +attentais attenter ver 1.17 1.01 0.00 0.07 ind:imp:1s; +attentait attenter ver 1.17 1.01 0.01 0.00 ind:imp:3s; +attentant attenter ver 1.17 1.01 0.02 0.00 par:pre; +attentat attentat nom m s 14.58 8.72 11.42 5.34 +attentatoire attentatoire adj m s 0.00 0.14 0.00 0.07 +attentatoires attentatoire adj p 0.00 0.14 0.00 0.07 +attentats attentat nom m p 14.58 8.72 3.16 3.38 +attente attente nom f s 25.07 63.85 22.77 61.35 +attenter attenter ver 1.17 1.01 0.39 0.54 inf; +attenterai attenter ver 1.17 1.01 0.00 0.07 ind:fut:1s; +attenterait attenter ver 1.17 1.01 0.01 0.07 cnd:pre:3s; +attentes attente nom f p 25.07 63.85 2.29 2.50 +attentez attenter ver 1.17 1.01 0.16 0.00 imp:pre:2p;ind:pre:2p; +attentiez attenter ver 1.17 1.01 0.14 0.00 ind:imp:2p; +attentif attentif adj m s 6.66 35.74 3.77 17.30 +attentifs attentif adj m p 6.66 35.74 1.49 6.22 +attention attention ono 159.10 21.35 159.10 21.35 +attentionné attentionné adj m s 2.64 0.74 1.73 0.34 +attentionnée attentionné adj f s 2.64 0.74 0.41 0.27 +attentionnées attentionné adj f p 2.64 0.74 0.07 0.00 +attentionnés attentionné adj m p 2.64 0.74 0.44 0.14 +attentions attention nom f p 158.52 124.53 1.63 4.86 +attentisme attentisme nom m s 0.02 0.81 0.02 0.81 +attentiste attentiste adj s 0.02 0.00 0.02 0.00 +attentistes attentiste nom p 0.00 0.07 0.00 0.07 +attentive attentif adj f s 6.66 35.74 1.25 11.15 +attentivement attentivement adv 8.38 11.82 8.38 11.82 +attentives attentif adj f p 6.66 35.74 0.15 1.08 +attenté attenter ver m s 1.17 1.01 0.13 0.07 par:pas; +atterrîmes atterrir ver 26.73 9.39 0.01 0.14 ind:pas:1p; +atterrît atterrir ver 26.73 9.39 0.00 0.07 sub:imp:3s; +atterrages atterrage nom m p 0.00 0.20 0.00 0.20 +atterraient atterrer ver 0.23 2.91 0.00 0.07 ind:imp:3p; +atterrait atterrer ver 0.23 2.91 0.00 0.07 ind:imp:3s; +atterrant atterrant adj m s 0.01 0.20 0.01 0.14 +atterrante atterrant adj f s 0.01 0.20 0.00 0.07 +atterre atterrer ver 0.23 2.91 0.02 0.07 ind:pre:1s;ind:pre:3s; +atterri atterrir ver m s 26.73 9.39 8.64 1.89 par:pas; +atterrir atterrir ver 26.73 9.39 10.84 3.04 inf;; +atterrira atterrir ver 26.73 9.39 0.48 0.00 ind:fut:3s; +atterrirai atterrir ver 26.73 9.39 0.06 0.00 ind:fut:1s; +atterrirais atterrir ver 26.73 9.39 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +atterriras atterrir ver 26.73 9.39 0.05 0.00 ind:fut:2s; +atterrirent atterrir ver 26.73 9.39 0.04 0.14 ind:pas:3p; +atterrirez atterrir ver 26.73 9.39 0.05 0.00 ind:fut:2p; +atterrirons atterrir ver 26.73 9.39 0.28 0.00 ind:fut:1p; +atterris atterrir ver m p 26.73 9.39 1.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +atterrissage atterrissage nom m s 9.06 2.23 8.84 2.16 +atterrissages atterrissage nom m p 9.06 2.23 0.22 0.07 +atterrissaient atterrir ver 26.73 9.39 0.04 0.34 ind:imp:3p; +atterrissais atterrir ver 26.73 9.39 0.01 0.14 ind:imp:1s; +atterrissait atterrir ver 26.73 9.39 0.08 0.14 ind:imp:3s; +atterrissant atterrir ver 26.73 9.39 0.14 0.14 par:pre; +atterrisse atterrir ver 26.73 9.39 0.40 0.07 sub:pre:1s;sub:pre:3s; +atterrissent atterrir ver 26.73 9.39 0.76 0.41 ind:pre:3p; +atterrisses atterrir ver 26.73 9.39 0.02 0.00 sub:pre:2s; +atterrissez atterrir ver 26.73 9.39 0.52 0.00 imp:pre:2p;ind:pre:2p; +atterrissons atterrir ver 26.73 9.39 0.08 0.00 imp:pre:1p;ind:pre:1p; +atterrit atterrir ver 26.73 9.39 2.96 1.96 ind:pre:3s;ind:pas:3s; +atterrèrent atterrer ver 0.23 2.91 0.00 0.14 ind:pas:3p; +atterré atterrer ver m s 0.23 2.91 0.05 1.62 par:pas; +atterrée atterrer ver f s 0.23 2.91 0.04 0.34 par:pas; +atterrées atterrer ver f p 0.23 2.91 0.00 0.07 par:pas; +atterrés atterrer ver m p 0.23 2.91 0.12 0.54 par:pas; +attesta attester ver 2.67 6.55 0.00 0.07 ind:pas:3s; +attestaient attester ver 2.67 6.55 0.00 0.47 ind:imp:3p; +attestait attester ver 2.67 6.55 0.01 1.15 ind:imp:3s; +attestant attester ver 2.67 6.55 0.14 1.15 par:pre; +attestation attestation nom f s 1.00 0.20 0.95 0.14 +attestations attestation nom f p 1.00 0.20 0.05 0.07 +atteste attester ver 2.67 6.55 0.98 1.22 ind:pre:1s;ind:pre:3s; +attestent attester ver 2.67 6.55 0.15 0.54 ind:pre:3p; +attester attester ver 2.67 6.55 0.87 1.08 inf; +attestera attester ver 2.67 6.55 0.05 0.00 ind:fut:3s; +attestons attester ver 2.67 6.55 0.01 0.07 imp:pre:1p;ind:pre:1p; +attestèrent attester ver 2.67 6.55 0.00 0.07 ind:pas:3p; +attesté attester ver m s 2.67 6.55 0.34 0.34 par:pas; +attestée attester ver f s 2.67 6.55 0.11 0.34 par:pas; +attestées attester ver f p 2.67 6.55 0.00 0.07 par:pas; +atèle atèle nom m s 0.01 0.00 0.01 0.00 +attifa attifer ver 0.30 1.69 0.00 0.07 ind:pas:3s; +attifait attifer ver 0.30 1.69 0.00 0.07 ind:imp:3s; +attifant attifer ver 0.30 1.69 0.00 0.07 par:pre; +attife attifer ver 0.30 1.69 0.00 0.14 ind:pre:3s; +attifer attifer ver 0.30 1.69 0.01 0.20 inf; +attifiaux attifiaux nom m p 0.00 0.07 0.00 0.07 +attifé attifer ver m s 0.30 1.69 0.25 0.27 par:pas; +attifée attifer ver f s 0.30 1.69 0.02 0.68 par:pas; +attifées attifer ver f p 0.30 1.69 0.00 0.07 par:pas; +attifés attifer ver m p 0.30 1.69 0.02 0.14 par:pas; +attige attiger ver 0.00 0.74 0.00 0.27 ind:pre:1s;ind:pre:3s; +attigeait attiger ver 0.00 0.74 0.00 0.07 ind:imp:3s; +attigent attiger ver 0.00 0.74 0.00 0.14 ind:pre:3p; +attiges attiger ver 0.00 0.74 0.00 0.07 ind:pre:2s; +attigés attiger ver m p 0.00 0.74 0.00 0.20 par:pas; +attique attique adj s 0.00 0.34 0.00 0.27 +attiques attique adj f p 0.00 0.34 0.00 0.07 +attira attirer ver 54.90 75.27 0.33 7.70 ind:pas:3s; +attirai attirer ver 54.90 75.27 0.00 0.34 ind:pas:1s; +attiraient attirer ver 54.90 75.27 0.43 2.91 ind:imp:3p; +attirail attirail nom m s 1.52 3.99 1.52 3.99 +attirais attirer ver 54.90 75.27 0.26 0.34 ind:imp:1s;ind:imp:2s; +attirait attirer ver 54.90 75.27 2.03 10.41 ind:imp:3s; +attirance attirance nom f s 2.39 2.91 2.38 2.77 +attirances attirance nom f p 2.39 2.91 0.01 0.14 +attirant attirant adj m s 5.74 3.85 2.59 1.62 +attirante attirant adj f s 5.74 3.85 2.59 1.55 +attirantes attirant adj f p 5.74 3.85 0.28 0.54 +attirants attirant adj m p 5.74 3.85 0.28 0.14 +attire attirer ver 54.90 75.27 13.43 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attirent attirer ver 54.90 75.27 2.83 2.84 ind:pre:3p; +attirer attirer ver 54.90 75.27 17.08 17.43 inf; +attirera attirer ver 54.90 75.27 0.94 0.14 ind:fut:3s; +attirerai attirer ver 54.90 75.27 0.11 0.00 ind:fut:1s; +attireraient attirer ver 54.90 75.27 0.02 0.14 cnd:pre:3p; +attirerais attirer ver 54.90 75.27 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +attirerait attirer ver 54.90 75.27 0.56 0.61 cnd:pre:3s; +attirerez attirer ver 54.90 75.27 0.04 0.14 ind:fut:2p; +attireriez attirer ver 54.90 75.27 0.01 0.00 cnd:pre:2p; +attirerons attirer ver 54.90 75.27 0.04 0.00 ind:fut:1p; +attireront attirer ver 54.90 75.27 0.04 0.00 ind:fut:3p; +attires attirer ver 54.90 75.27 0.89 0.20 ind:pre:2s; +attirez attirer ver 54.90 75.27 0.82 0.07 imp:pre:2p;ind:pre:2p; +attiriez attirer ver 54.90 75.27 0.40 0.14 ind:imp:2p; +attirions attirer ver 54.90 75.27 0.02 0.07 ind:imp:1p; +attirons attirer ver 54.90 75.27 0.28 0.14 imp:pre:1p;ind:pre:1p; +attirât attirer ver 54.90 75.27 0.00 0.20 sub:imp:3s; +attirèrent attirer ver 54.90 75.27 0.13 0.81 ind:pas:3p; +attiré attirer ver m s 54.90 75.27 8.15 10.47 par:pas; +attirée attirer ver f s 54.90 75.27 2.78 3.85 par:pas; +attirées attirer ver f p 54.90 75.27 0.48 0.47 par:pas; +attirés attirer ver m p 54.90 75.27 2.09 2.57 par:pas; +attisa attiser ver 1.88 3.65 0.01 0.14 ind:pas:3s; +attisaient attiser ver 1.88 3.65 0.01 0.27 ind:imp:3p; +attisait attiser ver 1.88 3.65 0.14 0.54 ind:imp:3s; +attisant attiser ver 1.88 3.65 0.00 0.20 par:pre; +attise attiser ver 1.88 3.65 0.55 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attisement attisement nom m s 0.00 0.07 0.00 0.07 +attisent attiser ver 1.88 3.65 0.23 0.07 ind:pre:3p; +attiser attiser ver 1.88 3.65 0.33 1.35 inf; +attisera attiser ver 1.88 3.65 0.00 0.07 ind:fut:3s; +attises attiser ver 1.88 3.65 0.02 0.00 ind:pre:2s; +attisez attiser ver 1.88 3.65 0.16 0.00 imp:pre:2p;ind:pre:2p; +attisoir attisoir nom m s 0.00 0.07 0.00 0.07 +attisons attiser ver 1.88 3.65 0.01 0.00 imp:pre:1p; +attisé attiser ver m s 1.88 3.65 0.29 0.07 par:pas; +attisée attiser ver f s 1.88 3.65 0.12 0.20 par:pas; +attisées attiser ver f p 1.88 3.65 0.00 0.07 par:pas; +attisés attiser ver m p 1.88 3.65 0.00 0.07 par:pas; +attitré attitré adj m s 0.41 1.35 0.28 0.54 +attitrée attitrer ver f s 0.19 0.88 0.11 0.20 par:pas; +attitrées attitré adj f p 0.41 1.35 0.01 0.07 +attitrés attitré adj m p 0.41 1.35 0.03 0.34 +attitude attitude nom f s 23.03 67.91 21.37 57.50 +attitudes attitude nom f p 23.03 67.91 1.66 10.41 +attiédi attiédir ver m s 0.00 0.27 0.00 0.07 par:pas; +attiédie attiédir ver f s 0.00 0.27 0.00 0.07 par:pas; +attiédis attiédir ver m p 0.00 0.27 0.00 0.07 par:pas; +attiédissait attiédir ver 0.00 0.27 0.00 0.07 ind:imp:3s; +attorney attorney nom m s 0.15 0.00 0.15 0.00 +attouchant attoucher ver 0.00 0.07 0.00 0.07 par:pre; +attouchement attouchement nom m s 0.33 1.76 0.00 0.81 +attouchements attouchement nom m p 0.33 1.76 0.33 0.95 +attracteur attracteur adj m s 0.11 0.00 0.09 0.00 +attracteurs attracteur adj m p 0.11 0.00 0.02 0.00 +attractif attractif adj m s 0.24 0.41 0.14 0.27 +attractifs attractif adj m p 0.24 0.41 0.01 0.00 +attraction_vedette attraction_vedette nom f s 0.01 0.00 0.01 0.00 +attraction attraction nom f s 7.45 7.64 4.96 5.74 +attractions attraction nom f p 7.45 7.64 2.48 1.89 +attractive attractif adj f s 0.24 0.41 0.09 0.14 +attrait attrait nom m s 1.76 9.39 1.18 6.96 +attraits attrait nom m p 1.76 9.39 0.58 2.43 +attrapa attraper ver 112.52 55.34 0.16 5.74 ind:pas:3s; +attrapage attrapage nom m s 0.01 0.00 0.01 0.00 +attrapai attraper ver 112.52 55.34 0.00 1.82 ind:pas:1s; +attrapaient attraper ver 112.52 55.34 0.30 0.68 ind:imp:3p; +attrapais attraper ver 112.52 55.34 0.50 0.41 ind:imp:1s;ind:imp:2s; +attrapait attraper ver 112.52 55.34 0.66 3.58 ind:imp:3s; +attrapant attraper ver 112.52 55.34 0.30 1.69 par:pre; +attrape_couillon attrape_couillon nom m s 0.04 0.07 0.03 0.00 +attrape_couillon attrape_couillon nom m p 0.04 0.07 0.01 0.07 +attrape_mouche attrape_mouche nom m s 0.04 0.07 0.01 0.00 +attrape_mouche attrape_mouche nom m p 0.04 0.07 0.03 0.07 +attrape_nigaud attrape_nigaud nom m s 0.10 0.20 0.10 0.20 +attrape attraper ver 112.52 55.34 24.29 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +attrapent attraper ver 112.52 55.34 3.79 0.88 ind:pre:3p; +attraper attraper ver 112.52 55.34 35.32 17.09 inf; +attrapera attraper ver 112.52 55.34 1.04 0.27 ind:fut:3s; +attraperai attraper ver 112.52 55.34 1.10 0.14 ind:fut:1s; +attraperaient attraper ver 112.52 55.34 0.22 0.07 cnd:pre:3p; +attraperais attraper ver 112.52 55.34 0.32 0.07 cnd:pre:1s;cnd:pre:2s; +attraperait attraper ver 112.52 55.34 0.22 0.20 cnd:pre:3s; +attraperas attraper ver 112.52 55.34 1.00 0.14 ind:fut:2s; +attraperez attraper ver 112.52 55.34 0.47 0.00 ind:fut:2p; +attraperiez attraper ver 112.52 55.34 0.05 0.00 cnd:pre:2p; +attraperons attraper ver 112.52 55.34 0.22 0.00 ind:fut:1p; +attraperont attraper ver 112.52 55.34 0.88 0.20 ind:fut:3p; +attrapes attraper ver 112.52 55.34 2.14 0.34 ind:pre:2s;sub:pre:2s; +attrapeur attrapeur nom m s 1.20 0.00 1.20 0.00 +attrapez attraper ver 112.52 55.34 14.91 0.14 imp:pre:2p;ind:pre:2p; +attrapiez attraper ver 112.52 55.34 0.26 0.00 ind:imp:2p; +attrapions attraper ver 112.52 55.34 0.08 0.14 ind:imp:1p; +attrapons attraper ver 112.52 55.34 1.22 0.00 imp:pre:1p;ind:pre:1p; +attrapèrent attraper ver 112.52 55.34 0.02 0.14 ind:pas:3p; +attrapé attraper ver m s 112.52 55.34 19.20 11.35 par:pas; +attrapée attraper ver f s 112.52 55.34 2.41 1.69 par:pas; +attrapées attraper ver f p 112.52 55.34 0.30 0.07 par:pas; +attrapés attraper ver m p 112.52 55.34 1.16 0.54 par:pas; +attrayant attrayant adj m s 1.39 1.22 0.89 0.61 +attrayante attrayant adj f s 1.39 1.22 0.32 0.41 +attrayantes attrayant adj f p 1.39 1.22 0.02 0.14 +attrayants attrayant adj m p 1.39 1.22 0.16 0.07 +attribua attribuer ver 7.56 21.89 0.16 1.28 ind:pas:3s; +attribuable attribuable adj m s 0.03 0.00 0.03 0.00 +attribuai attribuer ver 7.56 21.89 0.01 0.54 ind:pas:1s; +attribuaient attribuer ver 7.56 21.89 0.00 0.27 ind:imp:3p; +attribuais attribuer ver 7.56 21.89 0.02 0.54 ind:imp:1s; +attribuait attribuer ver 7.56 21.89 0.16 3.11 ind:imp:3s; +attribuant attribuer ver 7.56 21.89 0.13 1.08 par:pre; +attribue attribuer ver 7.56 21.89 1.78 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attribuent attribuer ver 7.56 21.89 0.09 0.07 ind:pre:3p; +attribuer attribuer ver 7.56 21.89 1.49 5.68 inf; +attribuera attribuer ver 7.56 21.89 0.09 0.14 ind:fut:3s; +attribueraient attribuer ver 7.56 21.89 0.00 0.20 cnd:pre:3p; +attribuerais attribuer ver 7.56 21.89 0.01 0.20 cnd:pre:1s; +attribuerait attribuer ver 7.56 21.89 0.03 0.14 cnd:pre:3s; +attribueront attribuer ver 7.56 21.89 0.02 0.00 ind:fut:3p; +attribues attribuer ver 7.56 21.89 0.19 0.07 ind:pre:2s; +attribuez attribuer ver 7.56 21.89 0.17 0.00 ind:pre:2p; +attribuions attribuer ver 7.56 21.89 0.00 0.07 ind:imp:1p; +attribuâmes attribuer ver 7.56 21.89 0.00 0.07 ind:pas:1p; +attribuons attribuer ver 7.56 21.89 0.14 0.00 imp:pre:1p;ind:pre:1p; +attribuât attribuer ver 7.56 21.89 0.00 0.27 sub:imp:3s; +attribut attribut nom m s 1.13 6.01 0.08 1.69 +attribuèrent attribuer ver 7.56 21.89 0.10 0.14 ind:pas:3p; +attribution attribution nom f s 1.40 8.72 0.47 2.23 +attributions attribution nom f p 1.40 8.72 0.93 6.49 +attributs attribut nom m p 1.13 6.01 1.05 4.32 +attribué attribuer ver m s 7.56 21.89 1.95 2.97 par:pas; +attribuée attribuer ver f s 7.56 21.89 0.25 1.49 par:pas; +attribuées attribuer ver f p 7.56 21.89 0.14 0.54 par:pas; +attribués attribuer ver m p 7.56 21.89 0.60 0.81 par:pas; +attriquait attriquer ver 0.00 1.62 0.00 0.07 ind:imp:3s; +attriquant attriquer ver 0.00 1.62 0.00 0.07 par:pre; +attrique attriquer ver 0.00 1.62 0.00 0.20 ind:pre:1s;ind:pre:3s; +attriquent attriquer ver 0.00 1.62 0.00 0.07 ind:pre:3p; +attriquer attriquer ver 0.00 1.62 0.00 0.68 inf; +attriquerait attriquer ver 0.00 1.62 0.00 0.07 cnd:pre:3s; +attriqué attriquer ver m s 0.00 1.62 0.00 0.27 par:pas; +attriquée attriquer ver f s 0.00 1.62 0.00 0.20 par:pas; +attrista attrister ver 2.71 6.42 0.01 0.47 ind:pas:3s; +attristai attrister ver 2.71 6.42 0.00 0.20 ind:pas:1s; +attristaient attrister ver 2.71 6.42 0.00 0.27 ind:imp:3p; +attristais attrister ver 2.71 6.42 0.00 0.14 ind:imp:1s; +attristait attrister ver 2.71 6.42 0.01 1.15 ind:imp:3s; +attristant attristant adj m s 0.01 0.47 0.01 0.27 +attristante attristant adj f s 0.01 0.47 0.00 0.14 +attristantes attristant adj f p 0.01 0.47 0.00 0.07 +attriste attrister ver 2.71 6.42 1.54 1.01 ind:pre:1s;ind:pre:3s; +attristent attrister ver 2.71 6.42 0.00 0.47 ind:pre:3p; +attrister attrister ver 2.71 6.42 0.50 1.01 inf; +attristerait attrister ver 2.71 6.42 0.01 0.00 cnd:pre:3s; +attristez attrister ver 2.71 6.42 0.03 0.07 imp:pre:2p;ind:pre:2p; +attristât attrister ver 2.71 6.42 0.00 0.20 sub:imp:3s; +attristèrent attrister ver 2.71 6.42 0.01 0.20 ind:pas:3p; +attristé attrister ver m s 2.71 6.42 0.36 0.41 par:pas; +attristée attrister ver f s 2.71 6.42 0.09 0.14 par:pas; +attristés attrister ver m p 2.71 6.42 0.15 0.14 par:pas; +attrition attrition nom f s 0.02 0.20 0.02 0.14 +attritions attrition nom f p 0.02 0.20 0.00 0.07 +attroupa attrouper ver 0.14 2.36 0.00 0.07 ind:pas:3s; +attroupaient attrouper ver 0.14 2.36 0.14 0.34 ind:imp:3p; +attroupait attrouper ver 0.14 2.36 0.00 0.14 ind:imp:3s; +attroupement attroupement nom m s 0.17 3.85 0.08 3.45 +attroupements attroupement nom m p 0.17 3.85 0.08 0.41 +attroupent attrouper ver 0.14 2.36 0.00 0.27 ind:pre:3p; +attrouper attrouper ver 0.14 2.36 0.00 0.54 inf; +attrouperaient attrouper ver 0.14 2.36 0.00 0.07 cnd:pre:3p; +attroupèrent attrouper ver 0.14 2.36 0.00 0.14 ind:pas:3p; +attroupé attrouper ver m s 0.14 2.36 0.00 0.20 par:pas; +attroupée attrouper ver f s 0.14 2.36 0.00 0.07 par:pas; +attroupées attrouper ver f p 0.14 2.36 0.00 0.14 par:pas; +attroupés attrouper ver m p 0.14 2.36 0.01 0.41 par:pas; +atténua atténuer ver 2.47 12.64 0.00 0.54 ind:pas:3s; +atténuaient atténuer ver 2.47 12.64 0.00 0.68 ind:imp:3p; +atténuait atténuer ver 2.47 12.64 0.01 1.96 ind:imp:3s; +atténuant atténuer ver 2.47 12.64 0.00 0.41 par:pre; +atténuante atténuant adj f s 1.56 2.09 0.30 0.27 +atténuantes atténuant adj f p 1.56 2.09 1.27 1.82 +atténuateur atténuateur nom m s 0.09 0.00 0.09 0.00 +atténuation atténuation nom f s 0.01 0.07 0.01 0.00 +atténuations atténuation nom f p 0.01 0.07 0.00 0.07 +atténue atténuer ver 2.47 12.64 0.56 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +atténuent atténuer ver 2.47 12.64 0.08 0.27 ind:pre:3p; +atténuer atténuer ver 2.47 12.64 1.30 4.46 inf; +atténuera atténuer ver 2.47 12.64 0.37 0.14 ind:fut:3s; +atténueraient atténuer ver 2.47 12.64 0.00 0.14 cnd:pre:3p; +atténuez atténuer ver 2.47 12.64 0.03 0.00 imp:pre:2p;ind:pre:2p; +atténuons atténuer ver 2.47 12.64 0.01 0.00 imp:pre:1p; +atténuât atténuer ver 2.47 12.64 0.00 0.20 sub:imp:3s; +atténuèrent atténuer ver 2.47 12.64 0.00 0.07 ind:pas:3p; +atténué atténuer ver m s 2.47 12.64 0.07 1.22 par:pas; +atténuée atténuer ver f s 2.47 12.64 0.01 0.88 par:pas; +atténuées atténuer ver f p 2.47 12.64 0.01 0.41 par:pas; +atténués atténuer ver m p 2.47 12.64 0.02 0.07 par:pas; +atélectasie atélectasie nom f s 0.03 0.00 0.03 0.00 +atémi atémi nom m s 0.01 0.00 0.01 0.00 +atypique atypique adj s 0.57 0.34 0.26 0.14 +atypiques atypique adj p 0.57 0.34 0.31 0.20 +au_dedans au_dedans adv 0.92 4.86 0.92 4.86 +au_dehors au_dehors adv 0.91 11.42 0.91 11.42 +au_delà au_delà adv 21.77 52.91 21.77 52.91 +au_dessous au_dessous adv 2.98 24.59 2.98 24.59 +au_dessus au_dessus pre 0.02 0.07 0.02 0.07 +au_devant au_devant adv 0.98 11.08 0.98 11.08 +au au art_def m s 3737.75 5322.50 3737.75 5322.50 +aubade aubade nom f s 0.01 0.47 0.01 0.47 +aubadent aubader ver 0.00 0.07 0.00 0.07 ind:pre:3p; +aubain aubain nom m s 0.00 14.19 0.00 14.19 +aubaine aubaine nom f s 1.08 5.81 1.04 5.27 +aubaines aubaine nom f p 1.08 5.81 0.03 0.54 +aube aube pre 0.10 0.00 0.10 0.00 +auberge auberge nom f s 14.44 17.30 14.12 15.47 +auberges auberge nom f p 14.44 17.30 0.32 1.82 +aubergine aubergine nom f s 1.44 1.35 0.35 0.61 +aubergines aubergine nom f p 1.44 1.35 1.09 0.74 +aubergiste aubergiste nom s 1.93 3.24 1.91 2.91 +aubergistes aubergiste nom p 1.93 3.24 0.02 0.34 +aubes aube nom f p 30.32 57.77 0.27 1.96 +aubette aubette nom f s 0.00 0.34 0.00 0.34 +aubier aubier nom m s 0.00 0.47 0.00 0.47 +aubour aubour nom m 0.00 0.07 0.00 0.07 +aubère aubère adj s 0.00 0.14 0.00 0.14 +aubères aubère nom m p 0.00 0.20 0.00 0.14 +aubépine aubépine nom f s 0.06 2.03 0.05 0.81 +aubépines aubépine nom f p 0.06 2.03 0.01 1.22 +auburn auburn adj 0.23 1.15 0.23 1.15 +aubusson aubusson nom s 0.00 0.07 0.00 0.07 +aucubas aucuba nom m p 0.00 0.14 0.00 0.14 +aucun aucun adj_ind m s 175.78 180.95 175.78 180.95 +aucune aucune adj_ind f s 207.00 174.73 207.00 174.73 +aucunement aucunement adv_sup 1.01 5.81 1.01 5.81 +aucunes aucunes adj_ind f p 1.03 0.14 1.03 0.14 +aucuns aucuns adj_ind m p 1.22 3.11 1.22 3.11 +audace audace nom f s 5.12 19.46 5.10 16.55 +audaces audace nom f p 5.12 19.46 0.02 2.91 +audacieuse audacieux adj f s 4.76 7.03 1.46 1.76 +audacieusement audacieusement adv 0.09 0.47 0.09 0.47 +audacieuses audacieux adj f p 4.76 7.03 0.25 0.81 +audacieux audacieux adj m 4.76 7.03 3.06 4.46 +audible audible adj s 0.29 2.70 0.22 2.23 +audibles audible adj p 0.29 2.70 0.08 0.47 +audience audience nom f s 14.02 9.53 13.51 7.84 +audiences audience nom f p 14.02 9.53 0.50 1.69 +audiencia audiencia nom f s 0.00 0.07 0.00 0.07 +audienciers audiencier adj m p 0.00 0.07 0.00 0.07 +audimat audimat nom m 1.39 0.00 1.37 0.00 +audimats audimat nom m p 1.39 0.00 0.03 0.00 +audio_visuel audio_visuel adj m s 0.06 0.20 0.06 0.20 +audiovisuel audiovisuel adj f s 0.88 0.27 0.00 0.14 +audio audio adj 1.87 0.00 1.87 0.00 +audioconférence audioconférence nom f s 0.03 0.00 0.03 0.00 +audiogramme audiogramme nom m s 0.01 0.00 0.01 0.00 +audiométrie audiométrie nom f s 0.01 0.00 0.01 0.00 +audiophile audiophile nom s 0.03 0.00 0.03 0.00 +audiophone audiophone nom m s 0.02 0.00 0.02 0.00 +audiovisuel audiovisuel nom m s 0.16 0.14 0.16 0.14 +audiovisuelle audiovisuel adj f s 0.88 0.27 0.72 0.00 +audiovisuelles audiovisuel adj f p 0.88 0.27 0.00 0.07 +audit audit pre 0.03 0.20 0.03 0.20 +auditer auditer ver 0.01 0.00 0.01 0.00 inf; +auditeur auditeur nom m s 3.12 6.49 0.85 1.69 +auditeurs auditeur nom m p 3.12 6.49 2.21 4.46 +auditif auditif adj m s 1.25 1.28 0.45 0.54 +auditifs auditif adj m p 1.25 1.28 0.08 0.20 +audition audition nom f s 11.64 2.64 9.32 1.89 +auditionnais auditionner ver 2.57 0.27 0.10 0.00 ind:imp:1s;ind:imp:2s; +auditionne auditionner ver 2.57 0.27 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +auditionnent auditionner ver 2.57 0.27 0.10 0.00 ind:pre:3p; +auditionner auditionner ver 2.57 0.27 1.27 0.14 inf; +auditionnera auditionner ver 2.57 0.27 0.02 0.00 ind:fut:3s; +auditionnerais auditionner ver 2.57 0.27 0.02 0.00 cnd:pre:1s; +auditionnes auditionner ver 2.57 0.27 0.07 0.00 ind:pre:2s; +auditionnez auditionner ver 2.57 0.27 0.18 0.00 imp:pre:2p;ind:pre:2p; +auditionné auditionner ver m s 2.57 0.27 0.44 0.00 par:pas; +auditionnée auditionner ver f s 2.57 0.27 0.03 0.00 par:pas; +auditions audition nom f p 11.64 2.64 2.31 0.74 +auditive auditif adj f s 1.25 1.28 0.41 0.20 +auditives auditif adj f p 1.25 1.28 0.32 0.34 +auditoire auditoire nom m s 0.62 4.19 0.58 3.92 +auditoires auditoire nom m p 0.62 4.19 0.04 0.27 +auditorium auditorium nom m s 0.80 0.74 0.80 0.61 +auditoriums auditorium nom m p 0.80 0.74 0.00 0.14 +auditrice auditeur nom f s 3.12 6.49 0.06 0.07 +auditrices auditrice nom f p 0.04 0.00 0.04 0.00 +audits audit nom m p 0.54 0.14 0.06 0.00 +auge auge nom f s 0.52 2.23 0.49 1.76 +auges auge nom f p 0.52 2.23 0.03 0.47 +augment augment nom m s 0.20 0.00 0.20 0.00 +augmenta augmenter ver 29.86 20.95 0.05 0.88 ind:pas:3s; +augmentaient augmenter ver 29.86 20.95 0.06 0.95 ind:imp:3p; +augmentais augmenter ver 29.86 20.95 0.04 0.00 ind:imp:1s;ind:imp:2s; +augmentait augmenter ver 29.86 20.95 0.27 4.66 ind:imp:3s; +augmentant augmenter ver 29.86 20.95 0.57 1.01 par:pre; +augmentation augmentation nom f s 6.85 3.99 6.61 3.24 +augmentations augmentation nom f p 6.85 3.99 0.24 0.74 +augmente augmenter ver 29.86 20.95 7.58 4.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +augmentent augmenter ver 29.86 20.95 1.23 0.47 ind:pre:3p; +augmenter augmenter ver 29.86 20.95 9.94 4.80 inf; +augmentera augmenter ver 29.86 20.95 0.42 0.20 ind:fut:3s; +augmenterai augmenter ver 29.86 20.95 0.11 0.07 ind:fut:1s; +augmenteraient augmenter ver 29.86 20.95 0.02 0.07 cnd:pre:3p; +augmenterais augmenter ver 29.86 20.95 0.03 0.00 cnd:pre:2s; +augmenterait augmenter ver 29.86 20.95 0.51 0.00 cnd:pre:3s; +augmenteras augmenter ver 29.86 20.95 0.01 0.00 ind:fut:2s; +augmenterez augmenter ver 29.86 20.95 0.01 0.07 ind:fut:2p; +augmenteront augmenter ver 29.86 20.95 0.38 0.00 ind:fut:3p; +augmentez augmenter ver 29.86 20.95 1.31 0.27 imp:pre:2p;ind:pre:2p; +augmentions augmenter ver 29.86 20.95 0.02 0.07 ind:imp:1p; +augmentons augmenter ver 29.86 20.95 0.36 0.00 imp:pre:1p;ind:pre:1p; +augmentât augmenter ver 29.86 20.95 0.00 0.07 sub:imp:3s; +augmentèrent augmenter ver 29.86 20.95 0.11 0.14 ind:pas:3p; +augmenté augmenter ver m s 29.86 20.95 6.15 2.30 par:pas; +augmentée augmenter ver f s 29.86 20.95 0.54 0.34 par:pas; +augmentées augmenter ver f p 29.86 20.95 0.03 0.07 par:pas; +augmentés augmenter ver m p 29.86 20.95 0.13 0.27 par:pas; +augurai augurer ver 0.81 1.76 0.00 0.07 ind:pas:1s; +augurais augurer ver 0.81 1.76 0.01 0.14 ind:imp:1s; +augurait augurer ver 0.81 1.76 0.11 0.68 ind:imp:3s; +augural augural adj m s 0.03 0.34 0.03 0.14 +augurale augural adj f s 0.03 0.34 0.00 0.20 +augurant augurer ver 0.81 1.76 0.00 0.07 par:pre; +augure augure nom m s 3.21 3.38 2.13 2.77 +augurent augurer ver 0.81 1.76 0.14 0.07 ind:pre:3p; +augurer augurer ver 0.81 1.76 0.12 0.61 inf; +augurerais augurer ver 0.81 1.76 0.00 0.07 cnd:pre:1s; +augures augure nom m p 3.21 3.38 1.08 0.61 +auguste auguste adj s 1.12 2.09 1.00 1.89 +augustes auguste adj p 1.12 2.09 0.11 0.20 +augustin augustin nom m s 0.00 0.81 0.00 0.07 +augustinien augustinien adj m s 0.00 0.07 0.00 0.07 +augustins augustin nom m p 0.00 0.81 0.00 0.74 +aujourd_hui aujourd_hui adv 360.17 158.38 360.17 158.38 +aula aula nom f s 0.01 0.00 0.01 0.00 +aulique aulique adj m s 0.00 0.07 0.00 0.07 +aulnaie aulnaie nom f s 0.00 0.07 0.00 0.07 +aulne aulne nom m s 0.04 2.16 0.04 0.27 +aulnes aulne nom m p 0.04 2.16 0.00 1.89 +auloffée auloffée nom f s 0.00 0.07 0.00 0.07 +aulos aulos nom m 0.00 0.07 0.00 0.07 +aulx aulx nom m p 0.00 0.27 0.00 0.27 +aumône aumône nom f s 3.57 3.78 3.09 3.18 +aumônerie aumônerie nom f s 0.02 0.07 0.02 0.07 +aumônes aumône nom f p 3.57 3.78 0.48 0.61 +aumônier aumônier nom m s 1.51 4.53 1.44 3.72 +aumôniers aumônier nom m p 1.51 4.53 0.05 0.47 +aumônière aumônier nom f s 1.51 4.53 0.02 0.27 +aumônières aumônier nom f p 1.51 4.53 0.00 0.07 +aune aune nom s 0.72 1.15 0.44 0.68 +auner auner ver 0.00 0.07 0.00 0.07 inf; +aunes aune nom p 0.72 1.15 0.28 0.47 +auparavant auparavant adv_sup 14.11 41.62 14.11 41.62 +auprès auprès pre 29.95 93.45 29.95 93.45 +auquel auquel pro_rel m s 9.97 52.57 9.68 47.70 +aura avoir aux 18559.23 12800.81 39.72 39.86 ind:fut:3s; +aérage aérage nom m s 0.06 0.00 0.06 0.00 +aurai avoir aux 18559.23 12800.81 32.96 15.54 ind:fut:1s; +aéraient aérer ver 2.65 4.12 0.00 0.07 ind:imp:3p; +auraient avoir aux 18559.23 12800.81 34.48 69.53 cnd:pre:3p; +aurais avoir aux 18559.23 12800.81 354.36 236.35 cnd:pre:2s; +aérait aérer ver 2.65 4.12 0.01 0.41 ind:imp:3s; +aurait avoir aux 18559.23 12800.81 282.17 491.15 cnd:pre:3s; +auras avoir aux 18559.23 12800.81 16.96 7.03 ind:fut:2s; +aérateur aérateur nom m s 0.02 0.20 0.01 0.00 +aérateurs aérateur nom m p 0.02 0.20 0.01 0.20 +aération aération nom f s 2.02 1.35 2.00 1.35 +aérations aération nom f p 2.02 1.35 0.03 0.00 +aérer aérer ver 2.65 4.12 1.68 2.03 inf; +aureus aureus nom m 0.03 0.00 0.03 0.00 +aérez aérer ver 2.65 4.12 0.32 0.07 imp:pre:2p;ind:pre:2p; +aurez avoir aux 18559.23 12800.81 13.18 5.14 ind:fut:2p; +auriculaire auriculaire nom m s 0.42 1.01 0.42 0.95 +auriculaires auriculaire nom m p 0.42 1.01 0.00 0.07 +auricule auricule nom f s 0.00 0.07 0.00 0.07 +aérien aérien adj m s 13.71 21.15 4.84 6.08 +aérienne aérien adj f s 13.71 21.15 5.37 6.49 +aériennes aérien adj f p 13.71 21.15 2.24 6.15 +aériens aérien adj m p 13.71 21.15 1.26 2.43 +auriez avoir aux 18559.23 12800.81 46.75 16.96 cnd:pre:2p; +aurifiées aurifier ver f p 0.00 0.07 0.00 0.07 par:pas; +aurifère aurifère adj s 0.02 0.14 0.01 0.00 +aurifères aurifère adj p 0.02 0.14 0.01 0.14 +aurige aurige nom m s 0.00 0.14 0.00 0.14 +aurions avoir aux 18559.23 12800.81 10.35 17.57 cnd:pre:1p; +aéro_club aéro_club nom m s 0.01 0.07 0.01 0.07 +aéro aéro nom m 0.04 0.20 0.04 0.20 +aérobic aérobic nom m s 1.21 0.07 1.20 0.07 +aérobics aérobic nom m p 1.21 0.07 0.01 0.00 +aurochs aurochs nom m 0.00 0.81 0.00 0.81 +aérodrome aérodrome nom m s 2.20 4.26 1.92 3.31 +aérodromes aérodrome nom m p 2.20 4.26 0.28 0.95 +aérodynamique aérodynamique adj s 0.51 0.41 0.45 0.20 +aérodynamiques aérodynamique adj p 0.51 0.41 0.06 0.20 +aérodynamisme aérodynamisme nom m s 0.02 0.07 0.02 0.07 +aérofrein aérofrein nom m s 0.05 0.07 0.01 0.00 +aérofreins aérofrein nom m p 0.05 0.07 0.04 0.07 +aérogare aérogare nom f s 0.12 2.23 0.11 2.16 +aérogares aérogare nom f p 0.12 2.23 0.01 0.07 +aéroglisseur aéroglisseur nom m s 0.75 0.00 0.73 0.00 +aéroglisseurs aéroglisseur nom m p 0.75 0.00 0.02 0.00 +aérographe aérographe nom m s 0.04 0.07 0.04 0.07 +aérolithe aérolithe nom m s 0.00 0.47 0.00 0.34 +aérolithes aérolithe nom m p 0.00 0.47 0.00 0.14 +aérologie aérologie nom f s 0.01 0.00 0.01 0.00 +aéromobile aéromobile adj f s 0.06 0.00 0.06 0.00 +aéromodélisme aéromodélisme nom m s 0.00 0.14 0.00 0.14 +aéronaute aéronaute nom s 0.03 0.07 0.01 0.00 +aéronautes aéronaute nom p 0.03 0.07 0.02 0.07 +aéronautique aéronautique nom f s 0.58 0.41 0.45 0.41 +aéronautiques aéronautique nom f p 0.58 0.41 0.14 0.00 +aéronaval aéronaval adj m s 0.17 0.20 0.10 0.00 +aéronavale aéronavale nom f s 0.48 0.20 0.48 0.20 +aéronavales aéronaval adj f p 0.17 0.20 0.03 0.07 +aéronavals aéronaval adj m p 0.17 0.20 0.00 0.07 +aurone aurone nom f s 0.00 0.07 0.00 0.07 +aéronef aéronef nom m s 0.03 0.14 0.03 0.07 +aéronefs aéronef nom m p 0.03 0.14 0.00 0.07 +aérons aérer ver 2.65 4.12 0.01 0.07 imp:pre:1p;ind:pre:1p; +aurons avoir aux 18559.23 12800.81 4.22 5.14 ind:fut:1p; +auront avoir aux 18559.23 12800.81 7.46 14.05 ind:fut:3p; +aéropathie aéropathie nom f s 0.01 0.00 0.01 0.00 +aérophagie aérophagie nom f s 0.15 0.14 0.15 0.14 +aéroplane aéroplane nom m s 0.16 1.62 0.16 1.15 +aéroplanes aéroplane nom m p 0.16 1.62 0.00 0.47 +aéroport aéroport nom m s 33.13 8.99 31.44 7.91 +aéroports aéroport nom m p 33.13 8.99 1.69 1.08 +aéroporté aéroporté adj m s 0.68 0.34 0.10 0.07 +aéroportée aéroporté adj f s 0.68 0.34 0.44 0.07 +aéroportées aéroporté adj f p 0.68 0.34 0.09 0.00 +aéroportés aéroporté adj m p 0.68 0.34 0.05 0.20 +aéropostale aéropostale nom f s 0.01 0.00 0.01 0.00 +auroral auroral adj m s 0.00 0.07 0.00 0.07 +aurore aurore nom f s 3.68 11.62 3.01 9.39 +aurores aurore nom f p 3.68 11.62 0.68 2.23 +aérosol aérosol nom m s 0.61 0.54 0.44 0.47 +aérosols aérosol nom m p 0.61 0.54 0.17 0.07 +aérospatial aérospatial adj m s 0.17 0.00 0.07 0.00 +aérospatiale aérospatiale nom f s 0.12 0.00 0.12 0.00 +aérostat aérostat nom m s 0.16 0.00 0.16 0.00 +aérostier aérostier nom m s 0.00 0.20 0.00 0.14 +aérostiers aérostier nom m p 0.00 0.20 0.00 0.07 +aérotrains aérotrain nom m p 0.00 0.07 0.00 0.07 +aérèrent aérer ver 2.65 4.12 0.00 0.07 ind:pas:3p; +aéré aéré adj m s 0.50 2.36 0.28 0.68 +aérée aéré adj f s 0.50 2.36 0.05 0.95 +aérées aéré adj f p 0.50 2.36 0.00 0.47 +auréola auréoler ver 0.71 3.38 0.00 0.07 ind:pas:3s; +auréolaient auréoler ver 0.71 3.38 0.00 0.27 ind:imp:3p; +auréolaire auréolaire adj f s 0.13 0.00 0.13 0.00 +auréolait auréoler ver 0.71 3.38 0.00 0.54 ind:imp:3s; +auréolant auréoler ver 0.71 3.38 0.00 0.07 par:pre; +auréole auréole nom f s 1.29 6.35 1.04 4.59 +auréoler auréoler ver 0.71 3.38 0.00 0.07 inf; +auréoles auréole nom f p 1.29 6.35 0.25 1.76 +auréolé auréoler ver m s 0.71 3.38 0.44 1.15 par:pas; +auréolée auréolé adj f s 0.21 0.34 0.20 0.07 +auréolées auréoler ver f p 0.71 3.38 0.01 0.14 par:pas; +auréolés auréoler ver m p 0.71 3.38 0.12 0.41 par:pas; +auréomycine auréomycine nom f s 0.00 0.07 0.00 0.07 +aérés aéré adj m p 0.50 2.36 0.17 0.27 +ausculta ausculter ver 1.18 3.58 0.00 0.54 ind:pas:3s; +auscultais ausculter ver 1.18 3.58 0.00 0.14 ind:imp:1s; +auscultait ausculter ver 1.18 3.58 0.02 0.54 ind:imp:3s; +auscultant ausculter ver 1.18 3.58 0.01 0.34 par:pre; +auscultation auscultation nom f s 0.00 0.74 0.00 0.68 +auscultations auscultation nom f p 0.00 0.74 0.00 0.07 +ausculte ausculter ver 1.18 3.58 0.34 0.41 ind:pre:1s;ind:pre:3s; +auscultent ausculter ver 1.18 3.58 0.14 0.07 ind:pre:3p; +ausculter ausculter ver 1.18 3.58 0.57 0.88 inf; +auscultez ausculter ver 1.18 3.58 0.04 0.00 imp:pre:2p;ind:pre:2p; +ausculté ausculter ver m s 1.18 3.58 0.07 0.54 par:pas; +auscultées ausculter ver f p 1.18 3.58 0.01 0.00 par:pas; +auscultés ausculter ver m p 1.18 3.58 0.00 0.14 par:pas; +auspices auspice nom m p 0.21 0.95 0.21 0.95 +aussi aussi adv_sup 1402.33 1359.86 1402.33 1359.86 +aussitôt aussitôt adv 13.52 189.93 13.52 189.93 +aussière aussière nom f s 0.00 0.20 0.00 0.07 +aussières aussière nom f p 0.00 0.20 0.00 0.14 +austral austral adj m s 0.07 0.95 0.03 0.20 +australe austral adj f s 0.07 0.95 0.03 0.68 +australes austral adj f p 0.07 0.95 0.01 0.07 +australien australien adj m s 1.57 1.89 0.76 0.88 +australienne australien adj f s 1.57 1.89 0.48 0.41 +australiennes australien adj f p 1.57 1.89 0.06 0.00 +australiens australien adj m p 1.57 1.89 0.27 0.61 +australopithèque australopithèque nom m s 0.07 0.07 0.03 0.07 +australopithèques australopithèque nom m p 0.07 0.07 0.04 0.00 +austro_hongrois austro_hongrois adj m s 0.05 0.41 0.05 0.27 +austro_hongrois austro_hongrois adj f p 0.05 0.41 0.00 0.14 +austro austro adv 0.02 0.07 0.02 0.07 +austère austère adj s 1.52 10.95 1.26 8.24 +austèrement austèrement adv 0.00 0.14 0.00 0.14 +austères austère adj p 1.52 10.95 0.25 2.70 +austérité austérité nom f s 0.64 4.73 0.64 4.59 +austérités austérité nom f p 0.64 4.73 0.00 0.14 +ausweis ausweis nom m 0.00 0.41 0.00 0.41 +autan autan nom m s 0.00 0.07 0.00 0.07 +autant autant adv_sup 152.16 240.41 152.16 240.41 +autarcie autarcie nom f s 0.17 0.34 0.17 0.34 +autarcique autarcique adj s 0.01 0.27 0.01 0.20 +autarciques autarcique adj f p 0.01 0.27 0.00 0.07 +autel autel nom m s 8.27 15.34 7.62 13.31 +autels autel nom m p 8.27 15.34 0.66 2.03 +auteur auteur nom m s 23.52 41.89 17.62 32.30 +auteure auteur nom f s 23.52 41.89 0.01 0.00 +auteurs auteur nom m p 23.52 41.89 5.88 9.59 +authenticité authenticité nom f s 1.05 2.43 1.05 2.43 +authentifiait authentifier ver 0.79 0.61 0.00 0.07 ind:imp:3s; +authentification authentification nom f s 0.33 0.14 0.33 0.14 +authentifie authentifier ver 0.79 0.61 0.06 0.20 ind:pre:1s;ind:pre:3s; +authentifient authentifier ver 0.79 0.61 0.00 0.07 ind:pre:3p; +authentifier authentifier ver 0.79 0.61 0.32 0.14 inf; +authentifierait authentifier ver 0.79 0.61 0.00 0.07 cnd:pre:3s; +authentifiez authentifier ver 0.79 0.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +authentifié authentifier ver m s 0.79 0.61 0.21 0.00 par:pas; +authentifiée authentifier ver f s 0.79 0.61 0.10 0.07 par:pas; +authentifiées authentifier ver f p 0.79 0.61 0.04 0.00 par:pas; +authentifiés authentifier ver m p 0.79 0.61 0.04 0.00 par:pas; +authentiquant authentiquer ver 0.17 0.07 0.00 0.07 par:pre; +authentique authentique adj s 9.22 11.35 7.28 8.51 +authentiquement authentiquement adv 0.17 0.54 0.17 0.54 +authentiques authentique adj p 9.22 11.35 1.94 2.84 +autisme autisme nom m s 0.31 0.00 0.31 0.00 +autiste autiste adj s 0.58 0.27 0.46 0.20 +autistes autiste adj m p 0.58 0.27 0.12 0.07 +autistique autistique adj s 0.04 0.07 0.04 0.07 +auto_adhésif auto_adhésif adj f s 0.00 0.07 0.00 0.07 +auto_analyse auto_analyse nom f s 0.02 0.07 0.02 0.07 +auto_immun auto_immun adj m s 0.12 0.00 0.01 0.00 +auto_immun auto_immun adj f s 0.12 0.00 0.10 0.00 +auto_intoxication auto_intoxication nom f s 0.00 0.14 0.00 0.14 +auto_pilote auto_pilote nom s 0.10 0.00 0.10 0.00 +auto_stop auto_stop nom m s 1.06 0.74 1.06 0.74 +auto_stoppeur auto_stoppeur nom m s 0.63 0.20 0.28 0.00 +auto_stoppeur auto_stoppeur nom m p 0.63 0.20 0.27 0.00 +auto_stoppeur auto_stoppeur nom f s 0.63 0.20 0.08 0.07 +auto_stoppeuse auto_stoppeuse nom f p 0.04 0.00 0.04 0.00 +auto_tamponneuse auto_tamponneuse nom f s 0.26 0.00 0.04 0.00 +auto_tamponneuse auto_tamponneuse nom f p 0.26 0.00 0.22 0.00 +auto_école auto_école nom f s 0.58 0.07 0.58 0.07 +auto_érotisme auto_érotisme nom m s 0.02 0.00 0.02 0.00 +auto auto nom s 18.66 42.36 16.25 30.34 +autobiographe autobiographe nom s 0.00 0.20 0.00 0.20 +autobiographie autobiographie nom f s 1.26 1.35 1.12 0.68 +autobiographies autobiographie nom f p 1.26 1.35 0.14 0.68 +autobiographique autobiographique adj s 0.40 0.68 0.34 0.61 +autobiographiques autobiographique adj p 0.40 0.68 0.06 0.07 +autobronzant autobronzant nom m s 0.16 0.00 0.16 0.00 +autobus autobus nom m 4.67 26.28 4.67 26.28 +autocar autocar nom m s 2.33 8.85 2.23 7.70 +autocars autocar nom m p 2.33 8.85 0.10 1.15 +autocensure autocensure nom f s 0.35 0.34 0.35 0.34 +autocensurent autocensurer ver 0.01 0.14 0.00 0.07 ind:pre:3p; +autocensurer autocensurer ver 0.01 0.14 0.00 0.07 inf; +autochenille autochenille nom f s 0.00 0.07 0.00 0.07 +autochtone autochtone adj s 0.20 1.15 0.14 0.47 +autochtones autochtone nom p 0.84 1.69 0.72 1.35 +autoclave autoclave nom m s 0.01 0.14 0.01 0.14 +autocollant autocollant nom m s 2.07 0.00 0.73 0.00 +autocollante autocollant adj f s 0.09 0.27 0.01 0.00 +autocollantes autocollant adj f p 0.09 0.27 0.01 0.14 +autocollants autocollant nom m p 2.07 0.00 1.34 0.00 +autoconservation autoconservation nom f s 0.01 0.07 0.01 0.07 +autocrate autocrate adj s 0.02 0.00 0.02 0.00 +autocrates autocrate nom p 0.00 0.07 0.00 0.07 +autocratie autocratie nom f s 0.10 0.07 0.10 0.07 +autocratique autocratique adj s 0.03 0.20 0.03 0.14 +autocratiques autocratique adj p 0.03 0.20 0.00 0.07 +autocritique autocritique nom f s 0.16 1.22 0.16 1.15 +autocritiquer autocritiquer ver 0.01 0.00 0.01 0.00 inf; +autocritiques autocritique nom f p 0.16 1.22 0.00 0.07 +autocréation autocréation nom f s 0.00 0.07 0.00 0.07 +autocuiseur autocuiseur nom m s 0.28 0.00 0.28 0.00 +autodafé autodafé nom m s 0.07 0.61 0.07 0.41 +autodafés autodafé nom m p 0.07 0.61 0.00 0.20 +autodestructeur autodestructeur adj m s 0.35 0.07 0.20 0.00 +autodestructeurs autodestructeur adj m p 0.35 0.07 0.04 0.00 +autodestructible autodestructible adj s 0.00 0.07 0.00 0.07 +autodestruction autodestruction nom f s 2.14 0.47 2.14 0.47 +autodestructrice autodestructeur adj f s 0.35 0.07 0.12 0.07 +autodidacte autodidacte nom s 0.30 0.74 0.27 0.61 +autodidactes autodidacte nom p 0.30 0.74 0.03 0.14 +autodidactique autodidactique adj f s 0.01 0.07 0.01 0.07 +autodirecteur autodirecteur adj m s 0.12 0.00 0.12 0.00 +autodiscipline autodiscipline nom f s 0.18 0.00 0.18 0.00 +autodrome autodrome nom m s 0.01 0.00 0.01 0.00 +autodéfense autodéfense nom f s 1.74 0.47 1.74 0.47 +autodénigrement autodénigrement nom m s 0.01 0.07 0.01 0.07 +autodérision autodérision nom f s 0.04 0.00 0.04 0.00 +autodétermination autodétermination nom f s 0.47 0.00 0.47 0.00 +autodétruira autodétruire ver 0.51 0.00 0.07 0.00 ind:fut:3s; +autodétruire autodétruire ver 0.51 0.00 0.21 0.00 inf; +autodétruiront autodétruire ver 0.51 0.00 0.02 0.00 ind:fut:3p; +autodétruisant autodétruire ver 0.51 0.00 0.01 0.00 par:pre; +autodétruisent autodétruire ver 0.51 0.00 0.04 0.00 ind:pre:3p; +autodétruit autodétruire ver m s 0.51 0.00 0.11 0.00 ind:pre:3s;par:pas; +autodétruite autodétruire ver f s 0.51 0.00 0.04 0.00 par:pas; +autofinancement autofinancement nom m s 0.01 0.00 0.01 0.00 +autofocus autofocus adj 0.13 0.00 0.13 0.00 +autogenèse autogenèse nom f s 0.02 0.00 0.02 0.00 +autogestion autogestion nom f s 0.14 0.20 0.14 0.20 +autogire autogire nom m s 0.02 0.07 0.01 0.07 +autogires autogire nom m p 0.02 0.07 0.01 0.00 +autographe autographe nom m s 8.52 1.82 7.35 0.95 +autographes autographe nom m p 8.52 1.82 1.17 0.88 +autographier autographier ver 0.01 0.07 0.00 0.07 inf; +autographié autographier ver m s 0.01 0.07 0.01 0.00 par:pas; +autogène autogène adj f s 0.01 0.07 0.01 0.07 +autoguidage autoguidage nom m s 0.05 0.00 0.05 0.00 +autoguidé autoguidé adj m s 0.01 0.00 0.01 0.00 +autogérer autogérer ver 0.13 0.00 0.13 0.00 inf; +autogérée autogéré adj f s 0.12 0.00 0.12 0.00 +autolimite autolimiter ver 0.01 0.00 0.01 0.00 ind:pre:3s; +autologues autologue adj m p 0.01 0.00 0.01 0.00 +autolysat autolysat nom m s 0.00 0.07 0.00 0.07 +autolyse autolyse nom f s 0.01 0.00 0.01 0.00 +automate automate nom s 0.50 5.54 0.19 4.12 +automates automate nom p 0.50 5.54 0.30 1.42 +automatico automatico adv 0.00 0.07 0.00 0.07 +automation automation nom f s 0.14 0.14 0.14 0.14 +automatique automatique adj s 8.60 7.57 6.60 5.74 +automatiquement automatiquement adv 2.61 3.85 2.61 3.85 +automatiques automatique adj p 8.60 7.57 2.00 1.82 +automatisation automatisation nom f s 0.14 0.14 0.14 0.14 +automatisme automatisme nom m s 0.18 1.22 0.17 1.08 +automatismes automatisme nom m p 0.18 1.22 0.01 0.14 +automatisé automatiser ver m s 0.28 0.00 0.20 0.00 par:pas; +automatisée automatiser ver f s 0.28 0.00 0.04 0.00 par:pas; +automatisées automatisé adj f p 0.24 0.00 0.04 0.00 +automatisés automatiser ver m p 0.28 0.00 0.04 0.00 par:pas; +automitrailleuse automitrailleur nom f s 0.10 1.76 0.00 0.47 +automitrailleuses automitrailleur nom f p 0.10 1.76 0.10 1.28 +automnal automnal adj m s 0.32 1.76 0.11 1.08 +automnale automnal adj f s 0.32 1.76 0.11 0.47 +automnales automnal adj f p 0.32 1.76 0.10 0.20 +automne automne nom m s 16.91 43.65 16.88 42.97 +automnes automne nom m p 16.91 43.65 0.03 0.68 +automobile_club automobile_club nom f s 0.03 0.00 0.03 0.00 +automobile automobile nom f s 3.71 19.46 2.96 12.70 +automobiles automobile nom f p 3.71 19.46 0.76 6.76 +automobiliste automobiliste nom s 0.39 3.78 0.20 1.76 +automobilistes automobiliste nom p 0.39 3.78 0.19 2.03 +automoteur automoteur adj m s 0.02 0.20 0.01 0.00 +automoteurs automoteur adj m p 0.02 0.20 0.00 0.07 +automotrice automoteur adj f s 0.02 0.20 0.01 0.14 +automédication automédication nom f s 0.08 0.00 0.08 0.00 +automutilation automutilation nom f s 0.20 0.27 0.20 0.27 +automutiler automutiler ver 0.10 0.00 0.10 0.00 inf; +autoneige autoneige nom f s 0.04 0.00 0.04 0.00 +autoneiges autoneige nom f p 0.04 0.00 0.01 0.00 +autonettoyant autonettoyant adj m s 0.03 0.07 0.02 0.07 +autonettoyante autonettoyant adj f s 0.03 0.07 0.01 0.00 +autonome autonome adj s 2.08 2.91 1.70 1.89 +autonomes autonome adj p 2.08 2.91 0.38 1.01 +autonomie autonomie nom f s 2.76 2.16 2.76 2.16 +autonomique autonomique adj m s 0.03 0.00 0.03 0.00 +autonomistes autonomiste nom p 0.00 0.14 0.00 0.14 +autopilote autopilote nom m s 0.01 0.00 0.01 0.00 +autoplastie autoplastie nom f s 0.01 0.00 0.01 0.00 +autoportrait autoportrait nom m s 0.85 0.34 0.71 0.14 +autoportraits autoportrait nom m p 0.85 0.34 0.14 0.20 +autoportée autoporté adj f s 0.00 0.07 0.00 0.07 +autoproclamé autoproclamer ver m s 0.11 0.00 0.09 0.00 par:pas; +autoproclamée autoproclamer ver f s 0.11 0.00 0.02 0.00 par:pas; +autoproduit autoproduit nom m s 0.01 0.07 0.01 0.07 +autopropulseur autopropulseur nom m s 0.01 0.00 0.01 0.00 +autopropulsé autopropulsé adj m s 0.07 0.00 0.01 0.00 +autopropulsée autopropulsé adj f s 0.07 0.00 0.04 0.00 +autopropulsés autopropulsé adj m p 0.07 0.00 0.02 0.00 +autopsia autopsier ver 0.46 0.41 0.00 0.07 ind:pas:3s; +autopsiais autopsier ver 0.46 0.41 0.01 0.07 ind:imp:1s;ind:imp:2s; +autopsie autopsie nom f s 12.23 1.55 11.57 1.49 +autopsier autopsier ver 0.46 0.41 0.28 0.20 inf; +autopsies autopsie nom f p 12.23 1.55 0.66 0.07 +autopsié autopsier ver m s 0.46 0.41 0.16 0.07 par:pas; +autopunition autopunition nom f s 0.03 0.00 0.03 0.00 +autoradio autoradio nom m s 1.40 0.07 0.81 0.07 +autoradios autoradio nom m p 1.40 0.07 0.59 0.00 +autorail autorail nom m s 0.00 0.14 0.00 0.14 +autoreproduction autoreproduction nom f s 0.01 0.00 0.01 0.00 +autorisa autoriser ver 30.28 20.88 0.07 0.74 ind:pas:3s; +autorisai autoriser ver 30.28 20.88 0.00 0.07 ind:pas:1s; +autorisaient autoriser ver 30.28 20.88 0.03 0.74 ind:imp:3p; +autorisais autoriser ver 30.28 20.88 0.12 0.00 ind:imp:1s; +autorisait autoriser ver 30.28 20.88 0.22 4.53 ind:imp:3s; +autorisant autoriser ver 30.28 20.88 0.83 0.95 par:pre; +autorisassent autoriser ver 30.28 20.88 0.00 0.07 sub:imp:3p; +autorisation autorisation nom f s 21.10 10.07 19.55 8.92 +autorisations autorisation nom f p 21.10 10.07 1.55 1.15 +autorise autoriser ver 30.28 20.88 6.57 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +autorisent autoriser ver 30.28 20.88 0.53 0.34 ind:pre:3p; +autoriser autoriser ver 30.28 20.88 3.16 1.69 inf; +autorisera autoriser ver 30.28 20.88 0.20 0.14 ind:fut:3s; +autoriserai autoriser ver 30.28 20.88 0.70 0.00 ind:fut:1s; +autoriserais autoriser ver 30.28 20.88 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +autoriserait autoriser ver 30.28 20.88 0.29 0.41 cnd:pre:3s; +autoriserez autoriser ver 30.28 20.88 0.14 0.00 ind:fut:2p; +autoriserons autoriser ver 30.28 20.88 0.02 0.00 ind:fut:1p; +autoriseront autoriser ver 30.28 20.88 0.09 0.00 ind:fut:3p; +autorises autoriser ver 30.28 20.88 0.44 0.07 ind:pre:2s; +autorisez autoriser ver 30.28 20.88 0.96 0.27 imp:pre:2p;ind:pre:2p; +autorisiez autoriser ver 30.28 20.88 0.03 0.07 ind:imp:2p; +autorisions autoriser ver 30.28 20.88 0.00 0.07 ind:imp:1p; +autorisons autoriser ver 30.28 20.88 0.15 0.00 imp:pre:1p;ind:pre:1p; +autorisât autoriser ver 30.28 20.88 0.00 0.41 sub:imp:3s; +autorisèrent autoriser ver 30.28 20.88 0.00 0.14 ind:pas:3p; +autorisé autoriser ver m s 30.28 20.88 10.22 3.78 par:pas; +autorisée autoriser ver f s 30.28 20.88 2.55 1.22 par:pas; +autorisées autoriser ver f p 30.28 20.88 0.71 0.41 par:pas; +autorisés autoriser ver m p 30.28 20.88 2.19 1.49 par:pas; +autoritaire autoritaire adj s 1.35 3.65 1.19 3.31 +autoritairement autoritairement adv 0.01 0.00 0.01 0.00 +autoritaires autoritaire adj p 1.35 3.65 0.16 0.34 +autoritarisme autoritarisme nom m s 0.02 0.07 0.02 0.07 +autorité autorité nom f s 32.95 77.03 18.62 56.22 +autorités autorité nom f p 32.95 77.03 14.32 20.81 +autoroute autoroute nom f s 14.76 15.00 13.81 12.77 +autoroutes autoroute nom f p 14.76 15.00 0.95 2.23 +autoroutiers autoroutier adj m p 0.03 0.14 0.01 0.07 +autoroutière autoroutier adj f s 0.03 0.14 0.01 0.07 +autorégulateur autorégulateur adj m s 0.01 0.00 0.01 0.00 +autorégulation autorégulation nom f s 0.14 0.00 0.14 0.00 +autorégule autoréguler ver 0.01 0.00 0.01 0.00 ind:pre:3s; +autos auto nom f p 18.66 42.36 2.42 12.03 +autosatisfaction autosatisfaction nom f s 0.13 0.27 0.13 0.27 +autostop autostop nom m s 0.07 0.00 0.07 0.00 +autostrade autostrade nom f s 0.02 0.27 0.02 0.20 +autostrades autostrade nom f p 0.02 0.27 0.00 0.07 +autosubsistance autosubsistance nom f s 0.01 0.00 0.01 0.00 +autosuffisance autosuffisance nom f s 0.04 0.00 0.04 0.00 +autosuffisant autosuffisant adj m s 0.04 0.00 0.01 0.00 +autosuffisants autosuffisant adj m p 0.04 0.00 0.03 0.00 +autosuggestion autosuggestion nom f s 0.09 0.14 0.09 0.14 +autosuggestionna autosuggestionner ver 0.00 0.07 0.00 0.07 ind:pas:3s; +autosurveillance autosurveillance nom f s 0.02 0.00 0.02 0.00 +autour autour adv_sup 87.02 361.55 87.02 361.55 +autoérotique autoérotique adj f s 0.03 0.00 0.03 0.00 +autours autour nom_sup m p 0.42 2.03 0.16 0.07 +autre autre pro_ind s 473.33 661.82 473.33 661.82 +autrefois autrefois pro_ind f s 0.00 0.07 0.00 0.07 +autrement autrement adv 40.16 62.77 40.16 62.77 +autres autres pro_ind p 249.70 375.14 249.70 375.14 +autrichien autrichien adj m s 2.67 7.36 1.26 2.91 +autrichienne autrichien adj f s 2.67 7.36 0.88 1.89 +autrichiennes autrichien adj f p 2.67 7.36 0.03 0.88 +autrichiens autrichiens pro_ind m p 0.00 0.14 0.00 0.14 +autruche autruche nom f s 3.53 3.04 2.79 2.43 +autruches autruche nom f p 3.53 3.04 0.74 0.61 +autrui autrui pro_ind m s 6.56 12.30 6.56 12.30 +auvent auvent nom m s 0.46 6.89 0.31 6.28 +auvents auvent nom m p 0.46 6.89 0.14 0.61 +auvergnat auvergnat nom m s 0.01 2.50 0.00 1.28 +auvergnate auvergnat nom f s 0.01 2.50 0.01 0.41 +auvergnates auvergnat adj f p 0.00 2.23 0.00 0.20 +auvergnats auvergnat nom m p 0.01 2.50 0.00 0.74 +auvergne auvergne nom f s 0.00 1.22 0.00 1.22 +auverpin auverpin nom m s 0.00 0.54 0.00 0.41 +auverpins auverpin nom m p 0.00 0.54 0.00 0.14 +aux_aguets aux_aguets adv 0.87 5.88 0.87 5.88 +aux aux art_def p 835.65 1907.57 835.65 1907.57 +auxdits auxdits pre 0.00 0.14 0.00 0.14 +auxerrois auxerrois nom m 0.00 0.07 0.00 0.07 +auxiliaire auxiliaire adj s 1.90 2.09 1.52 1.15 +auxiliaires auxiliaire nom p 1.42 3.51 0.73 2.03 +auxquelles auxquelles pro_rel f p 3.57 22.09 3.53 20.54 +auxquels auxquels pro_rel m p 3.35 26.28 3.31 23.72 +avachi avachir ver m s 0.33 2.23 0.23 0.74 par:pas; +avachie avachi adj f s 0.24 3.58 0.05 0.74 +avachies avachi adj f p 0.24 3.58 0.00 0.41 +avachir avachir ver 0.33 2.23 0.02 0.07 inf; +avachirait avachir ver 0.33 2.23 0.00 0.07 cnd:pre:3s; +avachirons avachir ver 0.33 2.23 0.00 0.07 ind:fut:1p; +avachis avachi adj m p 0.24 3.58 0.14 1.08 +avachissait avachir ver 0.33 2.23 0.00 0.07 ind:imp:3s; +avachissement avachissement nom m s 0.01 0.47 0.01 0.47 +avachissent avachir ver 0.33 2.23 0.01 0.00 ind:pre:3p; +avachit avachir ver 0.33 2.23 0.00 0.47 ind:pre:3s;ind:pas:3s; +avaient avoir aux 18559.23 12800.81 54.37 524.26 ind:imp:3p; +avais avoir aux 18559.23 12800.81 412.04 566.76 ind:imp:2s; +avait avoir aux 18559.23 12800.81 395.71 3116.42 ind:imp:3s; +aval aval nom m s 2.08 3.99 2.08 3.99 +avala avaler ver 35.89 65.27 0.23 7.97 ind:pas:3s; +avalage avalage nom m s 0.03 0.07 0.03 0.07 +avalai avaler ver 35.89 65.27 0.00 1.69 ind:pas:1s; +avalaient avaler ver 35.89 65.27 0.16 0.61 ind:imp:3p; +avalais avaler ver 35.89 65.27 0.03 0.74 ind:imp:1s; +avalait avaler ver 35.89 65.27 0.46 5.95 ind:imp:3s; +avalanche avalanche nom f s 2.75 5.68 1.89 4.86 +avalanches avalanche nom f p 2.75 5.68 0.86 0.81 +avalant avaler ver 35.89 65.27 0.28 2.84 par:pre; +avale avaler ver 35.89 65.27 8.02 9.26 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avalement avalement nom m s 0.00 0.14 0.00 0.14 +avalent avaler ver 35.89 65.27 0.62 1.15 ind:pre:3p; +avaler avaler ver 35.89 65.27 11.95 19.39 inf; +avalera avaler ver 35.89 65.27 0.54 0.07 ind:fut:3s; +avalerai avaler ver 35.89 65.27 0.35 0.20 ind:fut:1s; +avaleraient avaler ver 35.89 65.27 0.01 0.00 cnd:pre:3p; +avalerais avaler ver 35.89 65.27 0.39 0.20 cnd:pre:1s; +avalerait avaler ver 35.89 65.27 0.19 0.41 cnd:pre:3s; +avaleras avaler ver 35.89 65.27 0.03 0.07 ind:fut:2s; +avaleriez avaler ver 35.89 65.27 0.02 0.07 cnd:pre:2p; +avaleront avaler ver 35.89 65.27 0.36 0.14 ind:fut:3p; +avales avaler ver 35.89 65.27 1.11 0.14 ind:pre:2s; +avaleur avaleur nom m s 0.68 0.61 0.17 0.41 +avaleurs avaleur nom m p 0.68 0.61 0.03 0.20 +avaleuse avaleur nom f s 0.68 0.61 0.47 0.00 +avalez avaler ver 35.89 65.27 1.73 0.14 imp:pre:2p;ind:pre:2p; +avaliez avaler ver 35.89 65.27 0.01 0.00 ind:imp:2p; +avaliser avaliser ver 0.09 0.14 0.08 0.14 inf; +avaliseur avaliseur nom m s 0.03 0.00 0.03 0.00 +avalisés avaliser ver m p 0.09 0.14 0.01 0.00 par:pas; +avaloires avaloire nom f p 0.00 0.07 0.00 0.07 +avalâmes avaler ver 35.89 65.27 0.00 0.07 ind:pas:1p; +avalons avaler ver 35.89 65.27 0.03 0.14 imp:pre:1p;ind:pre:1p; +avalât avaler ver 35.89 65.27 0.00 0.07 sub:imp:3s; +avalèrent avaler ver 35.89 65.27 0.01 0.07 ind:pas:3p; +avalé avaler ver m s 35.89 65.27 7.55 9.46 par:pas; +avalée avaler ver f s 35.89 65.27 0.71 2.77 par:pas; +avalées avaler ver f p 35.89 65.27 0.38 0.74 par:pas; +avalés avaler ver m p 35.89 65.27 0.74 0.95 par:pas; +avance avance nom f s 69.25 82.30 65.68 77.64 +avancement avancement nom m s 3.34 3.18 3.30 2.97 +avancements avancement nom m p 3.34 3.18 0.04 0.20 +avancent avancer ver 95.62 195.00 4.63 7.50 ind:pre:3p; +avancer avancer ver 95.62 195.00 22.65 30.41 inf; +avancera avancer ver 95.62 195.00 1.37 0.74 ind:fut:3s; +avancerai avancer ver 95.62 195.00 0.29 0.20 ind:fut:1s; +avancerais avancer ver 95.62 195.00 0.06 0.07 cnd:pre:1s; +avancerait avancer ver 95.62 195.00 0.84 1.15 cnd:pre:3s; +avancerez avancer ver 95.62 195.00 0.04 0.00 ind:fut:2p; +avancerons avancer ver 95.62 195.00 0.24 0.00 ind:fut:1p; +avanceront avancer ver 95.62 195.00 0.10 0.41 ind:fut:3p; +avances avance nom f p 69.25 82.30 3.57 4.66 +avancez avancer ver 95.62 195.00 19.95 0.54 imp:pre:2p;ind:pre:2p; +avanciez avancer ver 95.62 195.00 0.06 0.14 ind:imp:2p; +avancions avancer ver 95.62 195.00 0.17 2.43 ind:imp:1p; +avancèrent avancer ver 95.62 195.00 0.04 2.43 ind:pas:3p; +avancé avancer ver m s 95.62 195.00 6.08 12.23 par:pas; +avancée avancé adj f s 6.71 11.15 2.19 3.92 +avancées avancée nom f p 2.25 4.39 0.70 0.81 +avancés avancé adj m p 6.71 11.15 1.08 1.28 +avanie avanie nom f s 0.04 1.42 0.04 0.27 +avanies avanie nom f p 0.04 1.42 0.00 1.15 +avant_avant_dernier avant_avant_dernier nom m s 0.00 0.07 0.00 0.07 +avant_bec avant_bec nom m s 0.01 0.00 0.01 0.00 +avant_bras avant_bras nom m 0.84 12.70 0.84 12.70 +avant_centre avant_centre nom m s 0.28 0.20 0.28 0.20 +avant_clou avant_clou nom m p 0.00 0.07 0.00 0.07 +avant_corps avant_corps nom m 0.00 0.07 0.00 0.07 +avant_coureur avant_coureur adj m s 0.32 1.62 0.02 0.74 +avant_coureur avant_coureur adj m p 0.32 1.62 0.29 0.88 +avant_courrier avant_courrier adj f s 0.00 0.07 0.00 0.07 +avant_courrier avant_courrier nom f p 0.00 0.07 0.00 0.07 +avant_cour avant_cour nom f p 0.00 0.07 0.00 0.07 +avant_dîner avant_dîner nom m 0.00 0.07 0.00 0.07 +avant_dernier avant_dernier adj m s 0.45 1.96 0.11 0.88 +avant_dernier avant_dernier adj f s 0.45 1.96 0.34 1.08 +avant_garde avant_garde nom f s 1.52 7.91 1.52 7.09 +avant_garde avant_garde nom f p 1.52 7.91 0.00 0.81 +avant_gardiste avant_gardiste adj s 0.23 0.20 0.21 0.14 +avant_gardiste avant_gardiste adj m p 0.23 0.20 0.03 0.07 +avant_gauche avant_gauche adj 0.10 0.00 0.10 0.00 +avant_goût avant_goût nom m s 1.25 1.62 1.25 1.62 +avant_guerre avant_guerre nom s 0.65 7.16 0.65 7.16 +avant_hier avant_hier adv 6.69 8.78 6.69 8.78 +avant_mont avant_mont nom m p 0.01 0.00 0.01 0.00 +avant_papier avant_papier nom m s 0.00 0.20 0.00 0.20 +avant_plan avant_plan nom m s 0.02 0.07 0.02 0.07 +avant_port avant_port nom m s 0.00 0.07 0.00 0.07 +avant_poste avant_poste nom m s 2.15 3.72 1.52 0.27 +avant_poste avant_poste nom m p 2.15 3.72 0.62 3.45 +avant_première avant_première nom f s 0.50 0.41 0.45 0.41 +avant_première avant_première nom f p 0.50 0.41 0.05 0.00 +avant_printemps avant_printemps nom m 0.00 0.07 0.00 0.07 +avant_projet avant_projet nom m s 0.04 0.00 0.04 0.00 +avant_propos avant_propos nom m 0.05 0.41 0.05 0.41 +avant_scène avant_scène nom f s 0.73 0.88 0.73 0.68 +avant_scène avant_scène nom f p 0.73 0.88 0.00 0.20 +avant_toit avant_toit nom m s 0.03 0.27 0.01 0.27 +avant_toit avant_toit nom m p 0.03 0.27 0.02 0.00 +avant_train avant_train nom m s 0.02 0.34 0.01 0.20 +avant_train avant_train nom m p 0.02 0.34 0.01 0.14 +avant_trou avant_trou nom m s 0.01 0.00 0.01 0.00 +avant_veille avant_veille nom f s 0.01 3.65 0.01 3.65 +avant avant pre 529.51 574.32 529.51 574.32 +avantage avantage nom m s 24.63 32.16 16.95 21.28 +avantageaient avantager ver 0.95 2.09 0.01 0.00 ind:imp:3p; +avantageais avantager ver 0.95 2.09 0.00 0.07 ind:imp:1s; +avantageait avantager ver 0.95 2.09 0.03 0.20 ind:imp:3s; +avantageant avantager ver 0.95 2.09 0.00 0.07 par:pre; +avantagent avantager ver 0.95 2.09 0.03 0.00 ind:pre:3p; +avantager avantager ver 0.95 2.09 0.07 0.14 inf; +avantagera avantager ver 0.95 2.09 0.04 0.07 ind:fut:3s; +avantages avantage nom m p 24.63 32.16 7.68 10.88 +avantageuse avantageux adj f s 1.36 5.07 0.36 1.01 +avantageusement avantageusement adv 0.16 1.42 0.16 1.42 +avantageuses avantageux adj f p 1.36 5.07 0.04 0.54 +avantageux avantageux adj m 1.36 5.07 0.95 3.51 +avantagé avantager ver m s 0.95 2.09 0.12 0.47 par:pas; +avantagée avantager ver f s 0.95 2.09 0.05 0.07 par:pas; +avantagés avantager ver m p 0.95 2.09 0.01 0.20 par:pas; +avança avancer ver 95.62 195.00 0.48 27.97 ind:pas:3s; +avançai avancer ver 95.62 195.00 0.14 2.16 ind:pas:1s; +avançaient avancer ver 95.62 195.00 0.27 9.05 ind:imp:3p; +avançais avancer ver 95.62 195.00 0.47 4.19 ind:imp:1s;ind:imp:2s; +avançait avancer ver 95.62 195.00 1.70 34.32 ind:imp:3s; +avançant avancer ver 95.62 195.00 0.50 10.41 par:pre; +avançâmes avancer ver 95.62 195.00 0.00 0.20 ind:pas:1p; +avançons avancer ver 95.62 195.00 1.54 1.82 imp:pre:1p;ind:pre:1p; +avançât avancer ver 95.62 195.00 0.00 0.27 sub:imp:3s; +avants avant nom_sup m p 8.05 21.35 0.11 0.14 +avare avare adj s 2.69 7.09 2.26 5.95 +avarement avarement adv 0.00 0.20 0.00 0.20 +avares avare adj p 2.69 7.09 0.43 1.15 +avarice avarice nom f s 1.18 3.24 1.18 3.18 +avarices avarice nom f p 1.18 3.24 0.00 0.07 +avaricieuse avaricieux adj f s 0.00 0.27 0.00 0.14 +avaricieusement avaricieusement adv 0.00 0.14 0.00 0.14 +avaricieux avaricieux nom m 0.01 0.07 0.01 0.07 +avarie avarie nom f s 1.19 1.08 0.25 0.41 +avarient avarier ver 0.23 0.27 0.00 0.07 ind:pre:3p; +avaries avarie nom f p 1.19 1.08 0.94 0.68 +avarié avarié adj m s 0.92 1.69 0.20 0.54 +avariée avarié adj f s 0.92 1.69 0.35 0.41 +avariées avarié adj f p 0.92 1.69 0.16 0.27 +avariés avarié adj m p 0.92 1.69 0.21 0.47 +avaro avaro nom m s 0.00 0.41 0.00 0.20 +avaros avaro nom m p 0.00 0.41 0.00 0.20 +avatar avatar nom m s 2.55 4.93 2.41 2.91 +avatars avatar nom m p 2.55 4.93 0.14 2.03 +ave ave nom m 3.75 2.36 3.75 2.36 +avec avec pre 3704.89 4000.41 3704.89 4000.41 +avelines aveline nom f p 0.00 0.07 0.00 0.07 +avenant avenant adj m s 0.78 2.84 0.52 0.88 +avenante avenant adj f s 0.78 2.84 0.26 1.15 +avenantes avenant adj f p 0.78 2.84 0.00 0.61 +avenants avenant nom m p 0.27 0.88 0.01 0.00 +avenir avenir nom m s 72.61 113.72 72.47 113.18 +avenirs avenir nom m p 72.61 113.72 0.14 0.54 +avent avent nom m s 0.06 0.47 0.06 0.47 +aventura aventurer ver 2.63 12.57 0.14 0.54 ind:pas:3s; +aventurai aventurer ver 2.63 12.57 0.01 0.27 ind:pas:1s; +aventuraient aventurer ver 2.63 12.57 0.03 0.54 ind:imp:3p; +aventurais aventurer ver 2.63 12.57 0.00 0.07 ind:imp:1s; +aventurait aventurer ver 2.63 12.57 0.04 1.01 ind:imp:3s; +aventurant aventurer ver 2.63 12.57 0.01 0.54 par:pre; +aventure aventure nom f s 29.66 84.86 22.54 54.86 +aventurent aventurer ver 2.63 12.57 0.09 0.54 ind:pre:3p; +aventurer aventurer ver 2.63 12.57 0.60 3.99 inf; +aventurerai aventurer ver 2.63 12.57 0.00 0.07 ind:fut:1s; +aventurerais aventurer ver 2.63 12.57 0.06 0.00 cnd:pre:1s; +aventurerait aventurer ver 2.63 12.57 0.03 0.07 cnd:pre:3s; +aventures aventure nom f p 29.66 84.86 7.13 30.00 +aventureuse aventureux adj f s 0.95 3.65 0.11 1.49 +aventureuses aventureux adj f p 0.95 3.65 0.15 0.47 +aventureux aventureux adj m 0.95 3.65 0.69 1.69 +aventurez aventurer ver 2.63 12.57 0.07 0.00 imp:pre:2p;ind:pre:2p; +aventurier aventurier nom m s 2.36 7.50 0.92 3.72 +aventuriers aventurier nom m p 2.36 7.50 1.05 2.43 +aventurines aventurine nom f p 0.00 0.07 0.00 0.07 +aventurions aventurer ver 2.63 12.57 0.01 0.14 ind:imp:1p; +aventurière aventurier nom f s 2.36 7.50 0.39 0.95 +aventurières aventurière nom f p 0.16 0.00 0.16 0.00 +aventurons aventurer ver 2.63 12.57 0.04 0.14 imp:pre:1p;ind:pre:1p; +aventurât aventurer ver 2.63 12.57 0.00 0.14 sub:imp:3s; +aventurèrent aventurer ver 2.63 12.57 0.00 0.07 ind:pas:3p; +aventuré aventurer ver m s 2.63 12.57 0.23 1.49 par:pas; +aventurée aventurer ver f s 2.63 12.57 0.22 0.68 par:pas; +aventurées aventurer ver f p 2.63 12.57 0.00 0.07 par:pas; +aventurés aventurer ver m p 2.63 12.57 0.14 0.54 par:pas; +avenu avenu adj m s 0.07 1.42 0.05 0.41 +avenue avenue nom f s 8.70 47.70 8.19 40.81 +avenues avenue nom f p 8.70 47.70 0.52 6.89 +avenus avenu adj m p 0.07 1.42 0.03 0.27 +avers avers nom m 0.00 0.14 0.00 0.14 +averse averse nom f s 1.77 11.96 1.15 9.80 +averses averse nom f p 1.77 11.96 0.63 2.16 +aversion aversion nom f s 0.97 2.64 0.97 2.57 +aversions aversion nom f p 0.97 2.64 0.00 0.07 +avertît avertir ver 30.80 37.70 0.00 0.14 sub:imp:3s; +averti avertir ver m s 30.80 37.70 6.26 9.73 par:pas; +avertie avertir ver f s 30.80 37.70 2.08 2.23 par:pas; +averties avertir ver f p 30.80 37.70 0.10 0.41 par:pas; +avertir avertir ver 30.80 37.70 13.49 11.01 inf; +avertira avertir ver 30.80 37.70 0.43 0.00 ind:fut:3s; +avertirai avertir ver 30.80 37.70 0.59 0.20 ind:fut:1s; +avertirait avertir ver 30.80 37.70 0.01 0.47 cnd:pre:3s; +avertiras avertir ver 30.80 37.70 0.03 0.00 ind:fut:2s; +avertirent avertir ver 30.80 37.70 0.10 0.34 ind:pas:3p; +avertirez avertir ver 30.80 37.70 0.01 0.07 ind:fut:2p; +avertis avertir ver m p 30.80 37.70 4.75 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +avertissaient avertir ver 30.80 37.70 0.01 0.27 ind:imp:3p; +avertissais avertir ver 30.80 37.70 0.03 0.27 ind:imp:1s;ind:imp:2s; +avertissait avertir ver 30.80 37.70 0.12 2.03 ind:imp:3s; +avertissant avertir ver 30.80 37.70 0.05 0.54 par:pre; +avertisse avertir ver 30.80 37.70 0.30 0.68 sub:pre:1s;sub:pre:3s; +avertissement avertissement nom m s 9.60 9.53 8.68 7.09 +avertissements avertissement nom m p 9.60 9.53 0.92 2.43 +avertissent avertir ver 30.80 37.70 0.20 0.41 ind:pre:3p; +avertisseur avertisseur nom m s 0.15 1.89 0.14 1.08 +avertisseurs avertisseur nom m p 0.15 1.89 0.01 0.81 +avertisseuses avertisseur adj f p 0.04 0.34 0.00 0.07 +avertissez avertir ver 30.80 37.70 1.52 0.20 imp:pre:2p;ind:pre:2p; +avertissiez avertir ver 30.80 37.70 0.03 0.00 ind:imp:2p; +avertissons avertir ver 30.80 37.70 0.09 0.14 imp:pre:1p;ind:pre:1p; +avertit avertir ver 30.80 37.70 0.61 5.07 ind:pre:3s;ind:pas:3s; +aveu aveu nom m s 11.15 21.55 5.86 13.45 +aveugla aveugler ver 6.50 15.47 0.00 0.47 ind:pas:3s; +aveuglaient aveugler ver 6.50 15.47 0.03 0.74 ind:imp:3p; +aveuglais aveugler ver 6.50 15.47 0.00 0.07 ind:imp:1s; +aveuglait aveugler ver 6.50 15.47 0.14 1.22 ind:imp:3s; +aveuglant aveuglant adj m s 1.00 6.15 0.35 2.16 +aveuglante aveuglant adj f s 1.00 6.15 0.61 3.11 +aveuglantes aveuglant adj f p 1.00 6.15 0.04 0.34 +aveuglants aveuglant adj m p 1.00 6.15 0.01 0.54 +aveugle_né aveugle_né nom m s 0.00 0.14 0.00 0.07 +aveugle_né aveugle_né nom f s 0.00 0.14 0.00 0.07 +aveugle aveugle adj s 38.53 38.51 33.85 30.20 +aveuglement aveuglement nom m s 1.79 4.46 1.77 4.39 +aveuglements aveuglement nom m p 1.79 4.46 0.01 0.07 +aveuglent aveugler ver 6.50 15.47 0.21 0.47 ind:pre:3p; +aveugler aveugler ver 6.50 15.47 1.54 1.96 inf; +aveuglera aveugler ver 6.50 15.47 0.30 0.00 ind:fut:3s; +aveuglerait aveugler ver 6.50 15.47 0.04 0.07 cnd:pre:3s; +aveugles aveugle adj p 38.53 38.51 4.67 8.31 +aveuglez aveugler ver 6.50 15.47 0.03 0.00 imp:pre:2p; +aveuglons aveugler ver 6.50 15.47 0.01 0.00 imp:pre:1p; +aveuglât aveugler ver 6.50 15.47 0.00 0.07 sub:imp:3s; +aveuglèrent aveugler ver 6.50 15.47 0.00 0.07 ind:pas:3p; +aveuglé aveugler ver m s 6.50 15.47 1.32 4.05 par:pas; +aveuglée aveugler ver f s 6.50 15.47 0.45 1.42 par:pas; +aveuglées aveugler ver f p 6.50 15.47 0.01 0.14 par:pas; +aveuglément aveuglément adv 1.30 3.31 1.30 3.31 +aveuglés aveugler ver m p 6.50 15.47 0.31 1.96 par:pas; +aveuli aveulir ver m s 0.00 0.07 0.00 0.07 par:pas; +aveulissante aveulissant adj f s 0.00 0.07 0.00 0.07 +aveux aveu nom m p 11.15 21.55 5.29 8.11 +avez avoir aux 18559.23 12800.81 1122.37 206.82 ind:pre:2p; +aviaire aviaire adj s 0.37 0.00 0.37 0.00 +aviateur aviateur nom m s 3.06 8.85 1.23 4.05 +aviateurs aviateur nom m p 3.06 8.85 1.68 4.73 +aviation aviation nom f s 5.18 13.72 5.17 13.38 +aviations aviation nom f p 5.18 13.72 0.01 0.34 +aviatrice aviateur nom f s 3.06 8.85 0.16 0.00 +aviatrices aviatrice nom f p 0.02 0.00 0.02 0.00 +avicole avicole adj f s 0.01 0.00 0.01 0.00 +aviculture aviculture nom f s 0.10 0.00 0.10 0.00 +avide avide adj s 3.52 16.22 1.94 10.34 +avidement avidement adv 0.38 6.08 0.38 6.08 +avides avide adj p 3.52 16.22 1.57 5.88 +avidité avidité nom f s 1.05 7.97 1.05 7.91 +avidités avidité nom f p 1.05 7.97 0.00 0.07 +aviez avoir aux 18559.23 12800.81 50.30 16.35 ind:imp:2p; +avignonnais avignonnais nom m 0.00 0.07 0.00 0.07 +avignonnaise avignonnais adj f s 0.00 0.07 0.00 0.07 +avili avilir ver m s 0.69 2.64 0.03 0.41 par:pas; +avilie avilir ver f s 0.69 2.64 0.20 0.07 par:pas; +avilies avilir ver f p 0.69 2.64 0.01 0.07 par:pas; +avilir avilir ver 0.69 2.64 0.27 1.22 inf; +avilis avilir ver m p 0.69 2.64 0.04 0.27 ind:pre:1s;ind:pre:2s;par:pas; +avilissait avilir ver 0.69 2.64 0.01 0.14 ind:imp:3s; +avilissant avilissant adj m s 0.62 0.88 0.39 0.41 +avilissante avilissant adj f s 0.62 0.88 0.10 0.20 +avilissantes avilissant adj f p 0.62 0.88 0.10 0.07 +avilissants avilissant adj m p 0.62 0.88 0.03 0.20 +avilissement avilissement nom m s 0.16 0.34 0.16 0.34 +avilissent avilir ver 0.69 2.64 0.01 0.07 ind:pre:3p; +avilit avilir ver 0.69 2.64 0.09 0.34 ind:pre:3s;ind:pas:3s; +aviné aviné adj m s 0.05 1.89 0.01 0.54 +avinée aviné adj f s 0.05 1.89 0.01 0.68 +avinées aviné adj f p 0.05 1.89 0.00 0.20 +avinés aviné adj m p 0.05 1.89 0.03 0.47 +avion_cargo avion_cargo nom m s 0.20 0.14 0.20 0.00 +avion_citerne avion_citerne nom m s 0.03 0.00 0.03 0.00 +avion_suicide avion_suicide nom m s 0.01 0.07 0.01 0.07 +avion_école avion_école nom m s 0.01 0.00 0.01 0.00 +avion avion nom m s 125.29 78.04 105.54 46.82 +avionique avionique nom f s 0.13 0.00 0.13 0.00 +avionnettes avionnette nom f p 0.00 0.07 0.00 0.07 +avionneurs avionneur nom m p 0.01 0.00 0.01 0.00 +avion_cargo avion_cargo nom m p 0.20 0.14 0.00 0.14 +avions_espions avions_espions nom m p 0.01 0.00 0.01 0.00 +avions avoir aux 18559.23 12800.81 16.42 81.01 ind:imp:1p; +aviron aviron nom m s 1.73 2.36 1.35 0.95 +avirons aviron nom m p 1.73 2.36 0.38 1.42 +avis avis nom m p 139.22 65.14 139.22 65.14 +avisa aviser ver 9.77 27.50 0.14 4.66 ind:pas:3s; +avisai aviser ver 9.77 27.50 0.01 1.76 ind:pas:1s; +avisaient aviser ver 9.77 27.50 0.01 0.20 ind:imp:3p; +avisais aviser ver 9.77 27.50 0.01 0.20 ind:imp:1s; +avisait aviser ver 9.77 27.50 0.10 2.09 ind:imp:3s; +avisant aviser ver 9.77 27.50 0.02 2.50 par:pre; +avise aviser ver 9.77 27.50 3.52 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avisent aviser ver 9.77 27.50 0.02 0.07 ind:pre:3p; +aviser aviser ver 9.77 27.50 0.65 3.18 inf; +avisera aviser ver 9.77 27.50 0.81 0.54 ind:fut:3s; +aviserai aviser ver 9.77 27.50 0.44 0.20 ind:fut:1s; +aviseraient aviser ver 9.77 27.50 0.00 0.07 cnd:pre:3p; +aviserais aviser ver 9.77 27.50 0.02 0.20 cnd:pre:1s; +aviserait aviser ver 9.77 27.50 0.01 0.68 cnd:pre:3s; +aviseras aviser ver 9.77 27.50 0.00 0.07 ind:fut:2s; +aviserons aviser ver 9.77 27.50 0.65 0.54 ind:fut:1p; +aviseront aviser ver 9.77 27.50 0.05 0.00 ind:fut:3p; +avises aviser ver 9.77 27.50 0.32 0.20 ind:pre:2s; +avisez aviser ver 9.77 27.50 0.89 0.14 imp:pre:2p;ind:pre:2p; +avisions aviser ver 9.77 27.50 0.00 0.07 ind:imp:1p; +aviso aviso nom m s 0.02 2.23 0.02 1.08 +avisos aviso nom m p 0.02 2.23 0.00 1.15 +avisât aviser ver 9.77 27.50 0.27 0.34 sub:imp:3s; +avisèrent aviser ver 9.77 27.50 0.12 0.14 ind:pas:3p; +avisé aviser ver m s 9.77 27.50 1.21 3.99 par:pas; +avisée avisé adj f s 1.76 2.36 0.32 0.54 +avisées avisé adj f p 1.76 2.36 0.01 0.00 +avisés avisé adj m p 1.76 2.36 0.56 0.47 +avitailler avitailler ver 0.01 0.00 0.01 0.00 inf; +avitaminose avitaminose nom f s 0.00 0.07 0.00 0.07 +aviva aviver ver 0.19 4.26 0.01 0.20 ind:pas:3s; +avivaient aviver ver 0.19 4.26 0.00 0.07 ind:imp:3p; +avivait aviver ver 0.19 4.26 0.00 0.74 ind:imp:3s; +avivant aviver ver 0.19 4.26 0.00 0.14 par:pre; +avive aviver ver 0.19 4.26 0.00 0.61 ind:pre:3s; +avivent aviver ver 0.19 4.26 0.11 0.27 ind:pre:3p; +aviver aviver ver 0.19 4.26 0.03 0.54 inf; +avivons aviver ver 0.19 4.26 0.01 0.07 imp:pre:1p;ind:pre:1p; +avivât aviver ver 0.19 4.26 0.00 0.07 sub:imp:3s; +avivèrent aviver ver 0.19 4.26 0.00 0.07 ind:pas:3p; +avivé aviver ver m s 0.19 4.26 0.02 0.47 par:pas; +avivée aviver ver f s 0.19 4.26 0.00 0.68 par:pas; +avivées aviver ver f p 0.19 4.26 0.00 0.27 par:pas; +avivés aviver ver m p 0.19 4.26 0.00 0.07 par:pas; +avocaillon avocaillon nom m s 0.16 0.00 0.16 0.00 +avocasseries avocasserie nom f p 0.00 0.07 0.00 0.07 +avocat_conseil avocat_conseil nom m s 0.08 0.00 0.08 0.00 +avocat avocat nom m s 112.69 37.64 89.28 24.32 +avocate avocat nom f s 112.69 37.64 7.56 1.55 +avocates avocat nom f p 112.69 37.64 0.10 0.00 +avocatier avocatier nom m s 0.04 0.00 0.04 0.00 +avocats avocat nom m p 112.69 37.64 15.76 11.76 +avocette avocette nom f s 0.01 0.14 0.01 0.14 +avoient avoyer ver 0.00 0.14 0.00 0.07 ind:pre:3p; +avoinaient avoiner ver 0.00 0.34 0.00 0.07 ind:imp:3p; +avoine avoine nom f s 1.54 6.96 1.52 6.35 +avoiner avoiner ver 0.00 0.34 0.00 0.27 inf; +avoines avoine nom f p 1.54 6.96 0.01 0.61 +avoir avoir aux 18559.23 12800.81 674.24 649.26 inf; +avoirs avoir nom_sup m p 3.13 3.31 0.41 0.54 +avoisinaient avoisiner ver 0.26 1.49 0.00 0.07 ind:imp:3p; +avoisinait avoisiner ver 0.26 1.49 0.02 0.47 ind:imp:3s; +avoisinant avoisinant adj m s 0.43 1.89 0.05 0.07 +avoisinante avoisinant adj f s 0.43 1.89 0.16 0.14 +avoisinantes avoisinant adj f p 0.43 1.89 0.18 1.15 +avoisinants avoisinant adj m p 0.43 1.89 0.05 0.54 +avoisine avoisiner ver 0.26 1.49 0.20 0.20 ind:pre:3s; +avoisinent avoisiner ver 0.26 1.49 0.00 0.27 ind:pre:3p; +avoisiner avoisiner ver 0.26 1.49 0.00 0.14 inf; +avoisinerait avoisiner ver 0.26 1.49 0.00 0.07 cnd:pre:3s; +avons avoir aux 18559.23 12800.81 291.71 190.00 ind:pre:1p; +avorta avorter ver 5.43 4.32 0.01 0.07 ind:pas:3s; +avortait avorter ver 5.43 4.32 0.00 0.14 ind:imp:3s; +avortant avorter ver 5.43 4.32 0.01 0.00 par:pre; +avorte avorter ver 5.43 4.32 0.61 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avortement avortement nom m s 5.24 2.70 4.37 2.16 +avortements avortement nom m p 5.24 2.70 0.87 0.54 +avortent avorter ver 5.43 4.32 0.00 0.14 ind:pre:3p; +avorter avorter ver 5.43 4.32 3.65 3.11 inf; +avorterai avorter ver 5.43 4.32 0.00 0.07 ind:fut:1s; +avorterait avorter ver 5.43 4.32 0.00 0.14 cnd:pre:3s; +avorteriez avorter ver 5.43 4.32 0.00 0.07 cnd:pre:2p; +avorteur avorteur nom m s 0.37 0.68 0.01 0.07 +avorteurs avorteur nom m p 0.37 0.68 0.05 0.07 +avorteuse avorteur nom f s 0.37 0.68 0.31 0.34 +avorteuses avorteur nom f p 0.37 0.68 0.00 0.20 +avortez avorter ver 5.43 4.32 0.05 0.00 imp:pre:2p;ind:pre:2p; +avorton avorton nom m s 1.44 2.30 1.35 1.42 +avortons avorton nom m p 1.44 2.30 0.09 0.88 +avorté avorter ver m s 5.43 4.32 1.01 0.07 par:pas; +avortée avorté adj f s 0.40 1.49 0.08 0.47 +avortées avorter ver f p 5.43 4.32 0.02 0.07 par:pas; +avortés avorté adj m p 0.40 1.49 0.20 0.14 +avoua avouer ver 61.54 96.22 0.33 7.50 ind:pas:3s; +avouable avouable adj s 0.02 1.08 0.01 0.54 +avouables avouable adj p 0.02 1.08 0.01 0.54 +avouai avouer ver 61.54 96.22 0.00 1.22 ind:pas:1s; +avouaient avouer ver 61.54 96.22 0.00 0.68 ind:imp:3p; +avouais avouer ver 61.54 96.22 0.22 0.74 ind:imp:1s;ind:imp:2s; +avouait avouer ver 61.54 96.22 0.31 5.47 ind:imp:3s; +avouant avouer ver 61.54 96.22 0.35 1.76 par:pre; +avouas avouer ver 61.54 96.22 0.00 0.07 ind:pas:2s; +avoue avouer ver 61.54 96.22 24.48 24.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avouent avouer ver 61.54 96.22 0.35 1.22 ind:pre:3p; +avouer avouer ver 61.54 96.22 18.27 33.72 inf; +avouera avouer ver 61.54 96.22 0.26 0.41 ind:fut:3s; +avouerai avouer ver 61.54 96.22 0.71 1.08 ind:fut:1s; +avoueraient avouer ver 61.54 96.22 0.14 0.20 cnd:pre:3p; +avouerais avouer ver 61.54 96.22 0.17 0.34 cnd:pre:1s;cnd:pre:2s; +avouerait avouer ver 61.54 96.22 0.41 0.61 cnd:pre:3s; +avoueras avouer ver 61.54 96.22 0.07 0.95 ind:fut:2s; +avouerez avouer ver 61.54 96.22 0.08 0.74 ind:fut:2p; +avoueriez avouer ver 61.54 96.22 0.00 0.07 cnd:pre:2p; +avouerions avouer ver 61.54 96.22 0.00 0.07 cnd:pre:1p; +avoueront avouer ver 61.54 96.22 0.01 0.07 ind:fut:3p; +avoues avouer ver 61.54 96.22 1.23 0.68 ind:pre:2s; +avouez avouer ver 61.54 96.22 4.07 3.72 imp:pre:2p;ind:pre:2p; +avouiez avouer ver 61.54 96.22 0.03 0.07 ind:imp:2p; +avouions avouer ver 61.54 96.22 0.00 0.07 ind:imp:1p; +avouâmes avouer ver 61.54 96.22 0.00 0.07 ind:pas:1p; +avouons avouer ver 61.54 96.22 0.39 1.42 imp:pre:1p;ind:pre:1p; +avouât avouer ver 61.54 96.22 0.00 0.20 sub:imp:3s; +avouèrent avouer ver 61.54 96.22 0.10 0.27 ind:pas:3p; +avoué avouer ver m s 61.54 96.22 9.50 7.23 par:pas; +avouée avoué adj f s 0.24 1.35 0.10 0.14 +avouées avouer ver f p 61.54 96.22 0.04 0.14 par:pas; +avoués avouer ver m p 61.54 96.22 0.02 0.14 par:pas; +avoyer avoyer ver 0.00 0.14 0.00 0.07 inf; +avril avril nom m 11.23 32.03 11.23 32.03 +avrillée avrillée nom f s 0.00 0.07 0.00 0.07 +avènement avènement nom m s 0.53 3.92 0.53 3.92 +avère avérer ver 9.26 6.96 4.59 0.68 ind:pre:3s;sub:pre:3s; +avèrent avérer ver 9.26 6.96 0.26 0.20 ind:pre:3p; +avé avé nom m 0.11 0.20 0.11 0.20 +avulsion avulsion nom f s 0.03 0.00 0.03 0.00 +avunculaire avunculaire adj s 0.01 0.14 0.01 0.14 +avunculat avunculat nom m s 0.00 0.07 0.00 0.07 +avéra avérer ver 9.26 6.96 0.25 1.55 ind:pas:3s; +avérai avérer ver 9.26 6.96 0.00 0.07 ind:pas:1s; +avéraient avérer ver 9.26 6.96 0.12 0.61 ind:imp:3p; +avérait avérer ver 9.26 6.96 0.56 2.03 ind:imp:3s; +avérant avérer ver 9.26 6.96 0.00 0.27 par:pre; +avérer avérer ver 9.26 6.96 0.88 0.27 inf; +avérera avérer ver 9.26 6.96 0.10 0.00 ind:fut:3s; +avéreraient avérer ver 9.26 6.96 0.00 0.14 cnd:pre:3p; +avérerait avérer ver 9.26 6.96 0.08 0.00 cnd:pre:3s; +avérât avérer ver 9.26 6.96 0.00 0.07 sub:imp:3s; +avérèrent avérer ver 9.26 6.96 0.04 0.14 ind:pas:3p; +avéré avérer ver m s 9.26 6.96 1.64 0.61 par:pas; +avérée avérer ver f s 9.26 6.96 0.37 0.27 par:pas; +avérées avérer ver f p 9.26 6.96 0.18 0.00 par:pas; +avérés avérer ver m p 9.26 6.96 0.19 0.07 par:pas; +awacs awacs nom m 0.12 0.00 0.12 0.00 +axa axer ver 0.61 0.88 0.00 0.07 ind:pas:3s; +axe axe nom m s 3.05 10.88 2.90 9.53 +axel axel nom m s 0.06 0.00 0.05 0.00 +axels axel nom m p 0.06 0.00 0.01 0.00 +axent axer ver 0.61 0.88 0.00 0.07 ind:pre:3p; +axer axer ver 0.61 0.88 0.02 0.00 inf; +axes axe nom m p 3.05 10.88 0.16 1.35 +axial axial adj m s 0.06 0.20 0.01 0.20 +axiale axial adj f s 0.06 0.20 0.04 0.00 +axillaire axillaire adj s 0.05 0.00 0.05 0.00 +axiomatisation axiomatisation nom f s 0.00 0.07 0.00 0.07 +axiome axiome nom m s 0.11 0.61 0.10 0.41 +axiomes axiome nom m p 0.11 0.61 0.01 0.20 +axis axis nom m 3.87 0.00 3.87 0.00 +axolotl axolotl nom m s 0.02 0.07 0.02 0.00 +axolotls axolotl nom m p 0.02 0.07 0.00 0.07 +axonge axonge nom f s 0.00 0.07 0.00 0.07 +axé axer ver m s 0.61 0.88 0.19 0.20 par:pas; +axée axer ver f s 0.61 0.88 0.08 0.47 par:pas; +axées axer ver f p 0.61 0.88 0.13 0.00 par:pas; +axés axer ver m p 0.61 0.88 0.05 0.00 par:pas; +aya aya nom f s 0.03 0.00 0.03 0.00 +ayans ayan nom m p 0.00 0.07 0.00 0.07 +ayant avoir aux 18559.23 12800.81 21.68 147.84 par:pre; +ayants_droit ayants_droit nom m p 0.01 0.14 0.01 0.14 +ayatollah ayatollah nom m s 0.53 0.27 0.50 0.14 +ayatollahs ayatollah nom m p 0.53 0.27 0.03 0.14 +aye_aye aye_aye nom m s 0.01 0.00 0.01 0.00 +ayez avoir aux 18559.23 12800.81 20.80 5.34 sub:pre:2p; +ayons avoir aux 18559.23 12800.81 4.36 4.39 sub:pre:1p; +ayuntamiento ayuntamiento nom m s 0.00 0.07 0.00 0.07 +azalée azalée nom f s 0.13 1.22 0.05 0.20 +azalées azalée nom f p 0.13 1.22 0.08 1.01 +azerbaïdjanais azerbaïdjanais adj m 0.00 0.07 0.00 0.07 +azerbaïdjanais azerbaïdjanais nom m 0.00 0.07 0.00 0.07 +azimut azimut nom m s 0.78 1.69 0.26 0.07 +azimutal azimutal adj m s 0.01 0.00 0.01 0.00 +azimuts azimut nom m p 0.78 1.69 0.52 1.62 +azimuté azimuter ver m s 0.03 0.20 0.03 0.14 par:pas; +azimutée azimuter ver f s 0.03 0.20 0.00 0.07 par:pas; +azoïque azoïque adj m s 0.01 0.00 0.01 0.00 +azoospermie azoospermie nom f s 0.01 0.00 0.01 0.00 +azote azote nom m s 1.05 0.14 1.05 0.14 +azoture azoture nom m s 0.01 0.00 0.01 0.00 +aztèque aztèque adj s 0.60 0.74 0.51 0.27 +aztèques aztèque adj p 0.60 0.74 0.09 0.47 +azulejo azulejo nom m s 0.10 0.54 0.10 0.00 +azulejos azulejo nom m p 0.10 0.54 0.00 0.54 +azur azur nom m s 2.98 9.53 2.98 9.39 +azéri azéri adj m s 0.27 0.07 0.27 0.00 +azéris azéri adj m p 0.27 0.07 0.00 0.07 +azurs azur nom m p 2.98 9.53 0.00 0.14 +azuré azuré adj m s 0.14 0.68 0.13 0.00 +azurée azuré adj f s 0.14 0.68 0.01 0.27 +azurées azuré adj f p 0.14 0.68 0.00 0.34 +azurés azuré adj m p 0.14 0.68 0.00 0.07 +azygos azygos adj f s 0.01 0.00 0.01 0.00 +azyme azyme adj m s 0.04 0.41 0.04 0.41 +b b nom m 31.78 8.65 31.78 8.65 +bôme bôme nom f s 0.02 0.47 0.02 0.47 +bûchais bûcher ver 0.30 0.54 0.02 0.00 ind:imp:1s; +bûchant bûcher ver 0.30 0.54 0.01 0.07 par:pre; +bûche bûche nom f s 2.91 13.18 2.09 5.14 +bûchent bûcher ver 0.30 0.54 0.01 0.00 ind:pre:3p; +bûcher bûcher nom m s 3.82 9.59 3.43 7.09 +bûcheron bûcheron nom m s 3.33 8.24 2.13 4.12 +bûcheronne bûcheronner ver 0.00 0.20 0.00 0.07 ind:pre:3s; +bûcheronner bûcheronner ver 0.00 0.20 0.00 0.14 inf; +bûcherons bûcheron nom m p 3.33 8.24 1.20 4.12 +bûchers bûcher nom m p 3.82 9.59 0.40 2.50 +bûches bûche nom f p 2.91 13.18 0.82 8.04 +bûchette bûchette nom f s 0.01 0.61 0.00 0.14 +bûchettes bûchette nom f p 0.01 0.61 0.01 0.47 +bûcheur bûcheur nom m s 0.20 0.61 0.04 0.20 +bûcheurs bûcheur nom m p 0.20 0.61 0.05 0.20 +bûcheuse bûcheur nom f s 0.20 0.61 0.11 0.14 +bûcheuses bûcheur nom f p 0.20 0.61 0.00 0.07 +bûchez bûcher ver 0.30 0.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +bûché bûcher ver m s 0.30 0.54 0.07 0.07 par:pas; +bûmes boire ver 339.06 274.32 0.03 1.89 ind:pas:1p; +bût boire ver 339.06 274.32 0.01 0.00 sub:imp:3s; +baïonnette baïonnette nom f s 2.33 7.57 1.28 4.80 +baïonnettes baïonnette nom f p 2.33 7.57 1.05 2.77 +baba baba nom m s 1.05 1.89 0.80 1.42 +baballe baballe nom f s 0.18 0.34 0.18 0.34 +babas baba nom m p 1.05 1.89 0.26 0.47 +babasse babasse nom s 0.00 0.07 0.00 0.07 +babel babel nom m s 0.05 0.00 0.05 0.00 +babeurre babeurre nom m s 0.13 0.00 0.13 0.00 +babi babi nom m s 0.02 0.00 0.02 0.00 +babil babil nom m s 0.07 0.74 0.07 0.68 +babillage babillage nom m s 0.34 0.81 0.07 0.54 +babillages babillage nom m p 0.34 0.81 0.26 0.27 +babillaient babiller ver 0.41 1.42 0.00 0.34 ind:imp:3p; +babillait babiller ver 0.41 1.42 0.02 0.27 ind:imp:3s; +babillant babiller ver 0.41 1.42 0.03 0.07 par:pre; +babillard babillard nom m s 0.01 0.07 0.01 0.07 +babillarde babillard adj f s 0.02 0.20 0.02 0.14 +babille babiller ver 0.41 1.42 0.02 0.07 ind:pre:1s;ind:pre:3s; +babillent babiller ver 0.41 1.42 0.00 0.07 ind:pre:3p; +babiller babiller ver 0.41 1.42 0.34 0.54 inf; +babilles babiller ver 0.41 1.42 0.00 0.07 ind:pre:2s; +babillé babiller ver m s 0.41 1.42 0.01 0.00 par:pas; +babils babil nom m p 0.07 0.74 0.00 0.07 +babine babine nom f s 0.33 3.38 0.00 0.47 +babines babine nom f p 0.33 3.38 0.33 2.91 +babiole babiole nom f s 1.85 2.03 0.48 0.47 +babioles babiole nom f p 1.85 2.03 1.36 1.55 +babiroussa babiroussa nom m s 0.00 0.07 0.00 0.07 +babouche babouche nom f s 0.08 2.64 0.04 0.34 +babouches babouche nom f p 0.08 2.64 0.04 2.30 +babouchka babouchka nom f s 0.12 3.72 0.12 2.91 +babouchkas babouchka nom f p 0.12 3.72 0.00 0.81 +babouin babouin nom m s 2.00 1.15 1.41 0.54 +babouine babouin nom f s 2.00 1.15 0.00 0.14 +babouines babouine nom f p 0.01 0.00 0.01 0.00 +babouins babouin nom m p 2.00 1.15 0.58 0.34 +babouvistes babouviste nom p 0.00 0.14 0.00 0.14 +babélienne babélien adj f s 0.00 0.07 0.00 0.07 +baby_boom baby_boom nom m s 0.05 0.00 0.05 0.00 +baby_foot baby_foot nom m 0.55 0.74 0.55 0.74 +baby_sitter baby_sitter nom f s 7.85 0.20 7.00 0.14 +baby_sitter baby_sitter nom f p 7.85 0.20 0.85 0.07 +baby_sitting baby_sitting nom m s 1.63 0.41 1.63 0.41 +baby baby nom m s 13.20 2.84 13.19 2.77 +babylonien babylonien adj m s 0.10 0.47 0.08 0.27 +babylonienne babylonien nom f s 0.11 0.14 0.02 0.00 +babyloniens babylonien nom m p 0.11 0.14 0.06 0.14 +babys baby nom m p 13.20 2.84 0.01 0.07 +bac bac nom m s 9.99 16.08 9.03 13.99 +baccalauréat baccalauréat nom m s 0.49 1.89 0.49 1.89 +baccara baccara nom m s 0.22 1.08 0.22 1.08 +baccarat baccarat nom m s 0.05 0.00 0.05 0.00 +bacchanal bacchanal nom m s 0.04 0.14 0.04 0.14 +bacchanale bacchanale nom f s 0.39 0.54 0.37 0.41 +bacchanales bacchanale nom f p 0.39 0.54 0.02 0.14 +bacchante bacchante nom f s 0.67 2.70 0.67 1.15 +bacchantes bacchante nom f p 0.67 2.70 0.00 1.55 +bachaghas bachagha nom m p 0.00 0.07 0.00 0.07 +bachelier bachelier nom m s 0.09 1.76 0.05 1.22 +bacheliers bachelier nom m p 0.09 1.76 0.04 0.41 +bachelière bachelier nom f s 0.09 1.76 0.00 0.14 +bachi_bouzouk bachi_bouzouk nom m s 0.00 0.07 0.00 0.07 +bachique bachique adj m s 0.00 0.34 0.00 0.07 +bachiques bachique adj p 0.00 0.34 0.00 0.27 +bachot bachot nom m s 0.29 3.85 0.29 3.18 +bachotage bachotage nom m s 0.02 0.00 0.02 0.00 +bachotaient bachoter ver 0.03 0.20 0.00 0.07 ind:imp:3p; +bachotait bachoter ver 0.03 0.20 0.01 0.07 ind:imp:3s; +bachotant bachoter ver 0.03 0.20 0.00 0.07 par:pre; +bachoter bachoter ver 0.03 0.20 0.01 0.00 inf; +bachots bachot nom m p 0.29 3.85 0.00 0.68 +bacillaires bacillaire adj f p 0.00 0.14 0.00 0.14 +bacille bacille nom m s 0.45 1.15 0.18 0.34 +bacilles bacille nom m p 0.45 1.15 0.26 0.81 +back_up back_up nom m s 0.09 0.00 0.09 0.00 +back back nom m s 4.82 0.74 4.82 0.74 +backgammon backgammon nom m s 0.66 0.00 0.66 0.00 +background background nom m s 0.05 0.07 0.05 0.07 +bacon bacon nom m s 4.50 0.47 4.50 0.47 +bacs bac nom m p 9.99 16.08 0.96 2.09 +bactéricide bactéricide adj m s 0.02 0.00 0.01 0.00 +bactéricides bactéricide adj p 0.02 0.00 0.01 0.00 +bactérie bactérie nom f s 5.00 0.88 2.22 0.27 +bactérien bactérien adj m s 0.49 0.00 0.07 0.00 +bactérienne bactérien adj f s 0.49 0.00 0.34 0.00 +bactériennes bactérien adj f p 0.49 0.00 0.08 0.00 +bactéries bactérie nom f p 5.00 0.88 2.79 0.61 +bactériologie bactériologie nom f s 0.11 0.00 0.11 0.00 +bactériologique bactériologique adj s 0.82 0.14 0.45 0.14 +bactériologiques bactériologique adj p 0.82 0.14 0.37 0.00 +bactériologiste bactériologiste nom s 0.01 0.00 0.01 0.00 +bactériophage bactériophage nom m s 0.07 0.00 0.07 0.00 +bactériémie bactériémie nom f s 0.01 0.00 0.01 0.00 +bada bader ver 0.40 2.36 0.37 2.16 ind:pas:3s; +badabam badabam ono 0.00 0.14 0.00 0.14 +badaboum badaboum ono 0.12 0.74 0.12 0.74 +badamier badamier nom m s 0.27 0.34 0.27 0.00 +badamiers badamier nom m p 0.27 0.34 0.00 0.34 +badant bader ver 0.40 2.36 0.00 0.14 par:pre; +badaud badaud nom m s 0.54 6.82 0.05 0.68 +badauda badauder ver 0.10 0.41 0.00 0.07 ind:pas:3s; +badaudaient badauder ver 0.10 0.41 0.10 0.07 ind:imp:3p; +badaudant badauder ver 0.10 0.41 0.00 0.14 par:pre; +badaude badauder ver 0.10 0.41 0.00 0.07 ind:pre:1s; +badauder badauder ver 0.10 0.41 0.00 0.07 inf; +badauderie badauderie nom f s 0.00 0.34 0.00 0.20 +badauderies badauderie nom f p 0.00 0.34 0.00 0.14 +badauds badaud nom m p 0.54 6.82 0.49 6.15 +bader bader ver 0.40 2.36 0.01 0.07 inf; +baderne baderne nom f s 0.08 0.47 0.07 0.27 +badernes baderne nom f p 0.08 0.47 0.01 0.20 +bades bader ver 0.40 2.36 0.02 0.00 ind:pre:2s; +badge badge nom m s 7.14 1.42 6.03 0.74 +badges badge nom m p 7.14 1.42 1.12 0.68 +badgés badgé adj m p 0.00 0.07 0.00 0.07 +badigeon badigeon nom m s 0.00 1.01 0.00 0.88 +badigeonna badigeonner ver 0.13 3.31 0.00 0.20 ind:pas:3s; +badigeonnage badigeonnage nom m s 0.00 0.20 0.00 0.07 +badigeonnages badigeonnage nom m p 0.00 0.20 0.00 0.14 +badigeonnaient badigeonner ver 0.13 3.31 0.00 0.07 ind:imp:3p; +badigeonnait badigeonner ver 0.13 3.31 0.00 0.14 ind:imp:3s; +badigeonnant badigeonner ver 0.13 3.31 0.00 0.14 par:pre; +badigeonne badigeonner ver 0.13 3.31 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +badigeonner badigeonner ver 0.13 3.31 0.04 0.27 inf; +badigeonnerai badigeonner ver 0.13 3.31 0.02 0.00 ind:fut:1s; +badigeonnerez badigeonner ver 0.13 3.31 0.01 0.07 ind:fut:2p; +badigeonneur badigeonneur nom m s 0.00 0.07 0.00 0.07 +badigeonnions badigeonner ver 0.13 3.31 0.00 0.07 ind:imp:1p; +badigeonnèrent badigeonner ver 0.13 3.31 0.00 0.07 ind:pas:3p; +badigeonné badigeonner ver m s 0.13 3.31 0.04 0.54 par:pas; +badigeonnée badigeonner ver f s 0.13 3.31 0.00 0.41 par:pas; +badigeonnées badigeonner ver f p 0.13 3.31 0.00 0.27 par:pas; +badigeonnés badigeonner ver m p 0.13 3.31 0.00 0.81 par:pas; +badigeons badigeon nom m p 0.00 1.01 0.00 0.14 +badigoinces badigoinces nom f p 0.00 0.20 0.00 0.20 +badin badin adj m s 0.44 1.96 0.33 1.35 +badina badiner ver 0.59 1.35 0.00 0.07 ind:pas:3s; +badinage badinage nom m s 0.16 0.61 0.14 0.47 +badinages badinage nom m p 0.16 0.61 0.02 0.14 +badinaient badiner ver 0.59 1.35 0.00 0.14 ind:imp:3p; +badinais badiner ver 0.59 1.35 0.01 0.00 ind:imp:1s; +badinait badiner ver 0.59 1.35 0.00 0.34 ind:imp:3s; +badine badiner ver 0.59 1.35 0.22 0.47 imp:pre:2s;ind:pre:3s; +badiner badiner ver 0.59 1.35 0.18 0.27 inf; +badines badiner ver 0.59 1.35 0.01 0.00 ind:pre:2s; +badinez badiner ver 0.59 1.35 0.14 0.07 imp:pre:2p;ind:pre:2p; +badins badin adj m p 0.44 1.96 0.00 0.14 +badiné badiner ver m s 0.59 1.35 0.02 0.00 par:pas; +badminton badminton nom m s 0.18 0.20 0.18 0.20 +badois badois adj m 0.00 0.27 0.00 0.07 +badoise badois adj f s 0.00 0.27 0.00 0.20 +baffe baffe nom f s 2.93 3.58 1.41 1.49 +baffer baffer ver 0.62 0.14 0.49 0.00 inf; +baffes baffe nom f p 2.93 3.58 1.52 2.09 +baffle baffle nom m s 0.06 0.68 0.00 0.20 +baffles baffle nom m p 0.06 0.68 0.06 0.47 +baffés baffer ver m p 0.62 0.14 0.00 0.07 par:pas; +bafouais bafouer ver 3.54 3.78 0.00 0.07 ind:imp:1s; +bafouait bafouer ver 3.54 3.78 0.14 0.27 ind:imp:3s; +bafouant bafouer ver 3.54 3.78 0.03 0.27 par:pre; +bafoue bafouer ver 3.54 3.78 0.71 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bafouent bafouer ver 3.54 3.78 0.17 0.14 ind:pre:3p; +bafouer bafouer ver 3.54 3.78 0.54 0.68 inf; +bafoues bafouer ver 3.54 3.78 0.25 0.14 ind:pre:2s; +bafouez bafouer ver 3.54 3.78 0.32 0.00 imp:pre:2p;ind:pre:2p; +bafouilla bafouiller ver 2.08 8.92 0.01 2.23 ind:pas:3s; +bafouillage bafouillage nom m s 0.01 0.47 0.01 0.27 +bafouillages bafouillage nom m p 0.01 0.47 0.00 0.20 +bafouillai bafouiller ver 2.08 8.92 0.00 0.14 ind:pas:1s; +bafouillaient bafouiller ver 2.08 8.92 0.00 0.07 ind:imp:3p; +bafouillais bafouiller ver 2.08 8.92 0.00 0.20 ind:imp:1s; +bafouillait bafouiller ver 2.08 8.92 0.02 1.15 ind:imp:3s; +bafouillant bafouillant adj m s 0.01 0.34 0.01 0.20 +bafouillante bafouillant adj f s 0.01 0.34 0.00 0.07 +bafouillantes bafouillant adj f p 0.01 0.34 0.00 0.07 +bafouille bafouiller ver 2.08 8.92 0.93 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bafouillent bafouiller ver 2.08 8.92 0.01 0.27 ind:pre:3p; +bafouiller bafouiller ver 2.08 8.92 0.13 0.68 inf; +bafouilles bafouiller ver 2.08 8.92 0.23 0.14 ind:pre:2s; +bafouilleur bafouilleur nom m s 0.01 0.00 0.01 0.00 +bafouillez bafouiller ver 2.08 8.92 0.03 0.07 imp:pre:2p;ind:pre:2p; +bafouillis bafouillis nom m 0.00 0.27 0.00 0.27 +bafouillèrent bafouiller ver 2.08 8.92 0.00 0.07 ind:pas:3p; +bafouillé bafouiller ver m s 2.08 8.92 0.72 0.81 par:pas; +bafoué bafouer ver m s 3.54 3.78 0.52 1.22 par:pas; +bafouée bafouer ver f s 3.54 3.78 0.39 0.61 par:pas; +bafouées bafouer ver f p 3.54 3.78 0.04 0.07 par:pas; +bafoués bafouer ver m p 3.54 3.78 0.43 0.14 par:pas; +bagage bagage nom m s 29.69 24.39 3.21 7.43 +bagagerie bagagerie nom f s 0.00 0.14 0.00 0.14 +bagages bagage nom m p 29.69 24.39 26.48 16.96 +bagagiste bagagiste nom s 0.30 0.07 0.24 0.07 +bagagistes bagagiste nom p 0.30 0.07 0.06 0.00 +bagarraient bagarrer ver 5.08 2.23 0.05 0.27 ind:imp:3p; +bagarrais bagarrer ver 5.08 2.23 0.05 0.00 ind:imp:1s;ind:imp:2s; +bagarrait bagarrer ver 5.08 2.23 0.05 0.14 ind:imp:3s; +bagarrant bagarrer ver 5.08 2.23 0.12 0.07 par:pre; +bagarre bagarre nom f s 19.24 13.85 16.05 9.86 +bagarrent bagarrer ver 5.08 2.23 0.64 0.14 ind:pre:3p; +bagarrer bagarrer ver 5.08 2.23 1.73 0.68 inf;; +bagarrerais bagarrer ver 5.08 2.23 0.02 0.00 cnd:pre:1s; +bagarrerait bagarrer ver 5.08 2.23 0.01 0.00 cnd:pre:3s; +bagarres bagarre nom f p 19.24 13.85 3.19 3.99 +bagarreur bagarreur adj m s 0.65 0.61 0.47 0.41 +bagarreurs bagarreur adj m p 0.65 0.61 0.09 0.14 +bagarreuse bagarreur adj f s 0.65 0.61 0.07 0.07 +bagarreuses bagarreur adj f p 0.65 0.61 0.01 0.00 +bagarrez bagarrer ver 5.08 2.23 0.15 0.00 imp:pre:2p;ind:pre:2p; +bagarrons bagarrer ver 5.08 2.23 0.01 0.00 imp:pre:1p; +bagarré bagarrer ver m s 5.08 2.23 0.70 0.47 par:pas; +bagarrée bagarrer ver f s 5.08 2.23 0.16 0.07 par:pas; +bagarrés bagarrer ver m p 5.08 2.23 0.22 0.00 par:pas; +bagasse bagasse nom f s 0.15 0.00 0.15 0.00 +bagatelle bagatelle nom f s 1.08 3.58 1.03 2.64 +bagatelles bagatelle nom f p 1.08 3.58 0.05 0.95 +bagnard bagnard nom m s 0.60 2.57 0.50 1.08 +bagnards bagnard nom m p 0.60 2.57 0.11 1.49 +bagne bagne nom m s 2.50 3.85 2.49 3.31 +bagnes bagne nom m p 2.50 3.85 0.01 0.54 +bagnole bagnole nom f s 23.93 34.26 21.18 26.28 +bagnoles bagnole nom f p 23.93 34.26 2.75 7.97 +bagote bagoter ver 0.00 0.41 0.00 0.07 ind:pre:3s; +bagoter bagoter ver 0.00 0.41 0.00 0.34 inf; +bagottaient bagotter ver 0.00 0.34 0.00 0.07 ind:imp:3p; +bagottais bagotter ver 0.00 0.34 0.00 0.07 ind:imp:1s; +bagotte bagotter ver 0.00 0.34 0.00 0.14 ind:pre:3s; +bagotter bagotter ver 0.00 0.34 0.00 0.07 inf; +bagou bagou nom m s 0.01 0.27 0.01 0.27 +bagoulait bagouler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +bagoule bagouler ver 0.00 0.14 0.00 0.07 ind:pre:3s; +bagouse bagouse nom f s 0.00 0.20 0.00 0.20 +bagousées bagousé adj f p 0.00 0.07 0.00 0.07 +bagout bagout nom m s 0.25 0.81 0.25 0.74 +bagouts bagout nom m p 0.25 0.81 0.00 0.07 +bagouze bagouze nom f s 0.03 0.20 0.01 0.14 +bagouzes bagouze nom f p 0.03 0.20 0.02 0.07 +baguage baguage nom m s 0.02 0.00 0.02 0.00 +bague bague nom f s 30.32 22.36 26.14 16.08 +baguenaudaient baguenauder ver 0.18 1.62 0.00 0.07 ind:imp:3p; +baguenaudais baguenauder ver 0.18 1.62 0.00 0.07 ind:imp:1s; +baguenaudait baguenauder ver 0.18 1.62 0.00 0.27 ind:imp:3s; +baguenaudant baguenauder ver 0.18 1.62 0.00 0.27 par:pre; +baguenaude baguenauder ver 0.18 1.62 0.14 0.14 ind:pre:1s;ind:pre:3s; +baguenaudent baguenauder ver 0.18 1.62 0.00 0.07 ind:pre:3p; +baguenauder baguenauder ver 0.18 1.62 0.03 0.61 inf; +baguenauderait baguenauder ver 0.18 1.62 0.00 0.07 cnd:pre:3s; +baguenaudé baguenauder ver m s 0.18 1.62 0.01 0.07 par:pas; +baguer baguer ver 0.23 0.68 0.02 0.07 inf; +bagues bague nom f p 30.32 22.36 4.19 6.28 +baguette baguette nom f s 7.74 13.45 5.67 9.46 +baguettes baguette nom f p 7.74 13.45 2.06 3.99 +bagué baguer ver m s 0.23 0.68 0.14 0.07 par:pas; +baguée bagué adj f s 0.01 1.01 0.00 0.34 +baguées bagué adj f p 0.01 1.01 0.00 0.20 +bagués bagué adj m p 0.01 1.01 0.01 0.41 +bah bah ono 22.77 12.03 22.77 12.03 +baht baht nom m s 0.52 0.00 0.07 0.00 +bahts baht nom m p 0.52 0.00 0.45 0.00 +bahut bahut nom m s 1.59 8.38 1.50 7.23 +bahute bahuter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +bahutent bahuter ver 0.00 0.14 0.00 0.07 ind:pre:3p; +bahuts bahut nom m p 1.59 8.38 0.09 1.15 +bai bai adj m s 0.89 1.35 0.86 1.22 +baie baie nom f s 7.09 19.80 5.84 14.86 +baies baie nom f p 7.09 19.80 1.24 4.93 +baigna baigner ver 26.42 41.42 0.00 0.41 ind:pas:3s; +baignade baignade nom f s 1.10 2.84 1.00 1.89 +baignades baignade nom f p 1.10 2.84 0.10 0.95 +baignai baigner ver 26.42 41.42 0.10 0.07 ind:pas:1s; +baignaient baigner ver 26.42 41.42 0.31 3.04 ind:imp:3p; +baignais baigner ver 26.42 41.42 0.17 0.88 ind:imp:1s;ind:imp:2s; +baignait baigner ver 26.42 41.42 0.77 6.62 ind:imp:3s; +baignant baigner ver 26.42 41.42 0.22 2.77 par:pre; +baigne baigner ver 26.42 41.42 7.87 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +baignent baigner ver 26.42 41.42 0.70 1.28 ind:pre:3p; +baigner baigner ver 26.42 41.42 11.33 10.41 inf; +baignera baigner ver 26.42 41.42 0.41 0.00 ind:fut:3s; +baigneraient baigner ver 26.42 41.42 0.00 0.07 cnd:pre:3p; +baignerait baigner ver 26.42 41.42 0.04 0.07 cnd:pre:3s; +baignerons baigner ver 26.42 41.42 0.02 0.07 ind:fut:1p; +baigneront baigner ver 26.42 41.42 0.17 0.07 ind:fut:3p; +baignes baigner ver 26.42 41.42 0.77 0.20 ind:pre:2s; +baigneur baigneur nom m s 0.39 10.00 0.33 4.73 +baigneurs baigneur nom m p 0.39 10.00 0.03 3.45 +baigneuse baigneur nom f s 0.39 10.00 0.03 0.74 +baigneuses baigneuse nom f p 0.04 0.00 0.01 0.00 +baignez baigner ver 26.42 41.42 0.49 0.27 imp:pre:2p;ind:pre:2p; +baignions baigner ver 26.42 41.42 0.01 0.34 ind:imp:1p; +baignoire baignoire nom f s 12.39 15.27 11.90 14.12 +baignoires baignoire nom f p 12.39 15.27 0.50 1.15 +baignons baigner ver 26.42 41.42 0.19 0.14 imp:pre:1p;ind:pre:1p; +baignèrent baigner ver 26.42 41.42 0.00 0.20 ind:pas:3p; +baigné baigner ver m s 26.42 41.42 1.42 3.72 par:pas; +baignée baigner ver f s 26.42 41.42 0.63 1.96 par:pas; +baignées baigner ver f p 26.42 41.42 0.37 0.41 par:pas; +baignés baigner ver m p 26.42 41.42 0.42 1.69 par:pas; +bail bail nom m s 11.49 2.57 11.49 2.57 +baile baile nom m s 0.05 0.47 0.05 0.27 +bailes baile nom m p 0.05 0.47 0.00 0.20 +baillait bailler ver 1.02 0.61 0.03 0.14 ind:imp:3s; +baillant bailler ver 1.02 0.61 0.02 0.14 par:pre; +baille bailler ver 1.02 0.61 0.47 0.07 ind:pre:1s;ind:pre:3s; +bailler bailler ver 1.02 0.61 0.21 0.14 inf; +bailles bailler ver 1.02 0.61 0.16 0.07 ind:pre:2s; +bailleur bailleur nom m s 0.56 0.47 0.28 0.20 +bailleurs bailleur nom m p 0.56 0.47 0.28 0.27 +baillez bailler ver 1.02 0.61 0.00 0.07 ind:pre:2p; +bailli bailli nom m s 0.01 0.47 0.01 0.41 +bailliage bailliage nom m s 0.00 0.20 0.00 0.20 +baillis bailli nom m p 0.01 0.47 0.00 0.07 +baillive baillive nom f s 0.00 0.07 0.00 0.07 +baillé bailler ver m s 1.02 0.61 0.14 0.00 par:pas; +bain_marie bain_marie nom m s 0.08 0.95 0.08 0.88 +bain bain nom m s 74.48 83.04 50.52 43.11 +bain_marie bain_marie nom m p 0.08 0.95 0.00 0.07 +bains bain nom m p 74.48 83.04 23.96 39.93 +bais bai adj m p 0.89 1.35 0.03 0.14 +baisa baiser ver 112.82 44.12 0.00 3.51 ind:pas:3s; +baisable baisable adj s 0.35 0.20 0.26 0.14 +baisables baisable adj p 0.35 0.20 0.10 0.07 +baisade baisade nom f s 0.00 0.07 0.00 0.07 +baisai baiser ver 112.82 44.12 0.10 0.41 ind:pas:1s; +baisaient baiser ver 112.82 44.12 0.25 0.74 ind:imp:3p; +baisais baiser ver 112.82 44.12 1.42 0.61 ind:imp:1s;ind:imp:2s; +baisait baiser ver 112.82 44.12 2.25 3.11 ind:imp:3s; +baisant baiser ver 112.82 44.12 1.72 0.95 par:pre; +baise_en_ville baise_en_ville nom m s 0.03 0.20 0.03 0.20 +baise baiser ver 112.82 44.12 22.02 8.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +baisemain baisemain nom m s 0.81 0.61 0.81 0.54 +baisemains baisemain nom m p 0.81 0.61 0.00 0.07 +baisement baisement nom m s 0.00 0.07 0.00 0.07 +baisent baiser ver 112.82 44.12 3.15 1.69 ind:pre:3p; +baiser baiser ver 112.82 44.12 42.25 15.34 inf; +baisera baiser ver 112.82 44.12 0.99 0.54 ind:fut:3s; +baiserai baiser ver 112.82 44.12 1.33 0.41 ind:fut:1s; +baiseraient baiser ver 112.82 44.12 0.00 0.07 cnd:pre:3p; +baiserais baiser ver 112.82 44.12 1.45 0.14 cnd:pre:1s;cnd:pre:2s; +baiserait baiser ver 112.82 44.12 0.17 0.34 cnd:pre:3s; +baiseras baiser ver 112.82 44.12 0.49 0.07 ind:fut:2s; +baiserez baiser ver 112.82 44.12 0.12 0.00 ind:fut:2p; +baiseriez baiser ver 112.82 44.12 0.01 0.00 cnd:pre:2p; +baiserons baiser ver 112.82 44.12 0.00 0.07 ind:fut:1p; +baiseront baiser ver 112.82 44.12 0.03 0.07 ind:fut:3p; +baisers baiser nom m p 52.17 54.59 11.25 25.95 +baises baiser ver 112.82 44.12 7.66 0.88 ind:pre:2s;sub:pre:2s; +baiseur baiseur nom m s 2.00 1.49 1.40 0.61 +baiseurs baiseur nom m p 2.00 1.49 0.40 0.34 +baiseuse baiseur nom f s 2.00 1.49 0.20 0.54 +baisez baiser ver 112.82 44.12 1.77 0.47 imp:pre:2p;ind:pre:2p; +baisiez baiser ver 112.82 44.12 0.31 0.00 ind:imp:2p; +baisions baiser ver 112.82 44.12 0.01 0.07 ind:imp:1p; +baisodrome baisodrome nom m s 0.46 0.07 0.46 0.07 +baisons baiser ver 112.82 44.12 0.17 0.14 imp:pre:1p;ind:pre:1p; +baisotant baisoter ver 0.00 0.07 0.00 0.07 par:pre; +baisouiller baisouiller ver 0.04 0.20 0.04 0.14 inf; +baisouillé baisouiller ver m s 0.04 0.20 0.00 0.07 par:pas; +baissa baisser ver 63.69 115.27 0.27 25.54 ind:pas:3s; +baissai baisser ver 63.69 115.27 0.00 1.28 ind:pas:1s; +baissaient baisser ver 63.69 115.27 0.18 1.42 ind:imp:3p; +baissais baisser ver 63.69 115.27 0.14 1.28 ind:imp:1s;ind:imp:2s; +baissait baisser ver 63.69 115.27 0.23 9.93 ind:imp:3s; +baissant baisser ver 63.69 115.27 0.58 10.54 par:pre; +baisse baisser ver 63.69 115.27 20.10 14.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +baissement baissement nom m s 0.27 0.00 0.27 0.00 +baissent baisser ver 63.69 115.27 1.11 1.42 ind:pre:3p;sub:pre:3p; +baisser baisser ver 63.69 115.27 12.31 12.70 inf; +baissera baisser ver 63.69 115.27 0.28 0.20 ind:fut:3s; +baisserai baisser ver 63.69 115.27 0.18 0.07 ind:fut:1s; +baisseraient baisser ver 63.69 115.27 0.02 0.00 cnd:pre:3p; +baisserais baisser ver 63.69 115.27 0.11 0.00 cnd:pre:1s; +baisserait baisser ver 63.69 115.27 0.14 0.27 cnd:pre:3s; +baisseras baisser ver 63.69 115.27 0.05 0.07 ind:fut:2s; +baisserez baisser ver 63.69 115.27 0.01 0.00 ind:fut:2p; +baisserons baisser ver 63.69 115.27 0.11 0.00 ind:fut:1p; +baisseront baisser ver 63.69 115.27 0.19 0.14 ind:fut:3p; +baisses baisser ver 63.69 115.27 1.14 0.14 ind:pre:2s;sub:pre:2s; +baissez baisser ver 63.69 115.27 16.45 0.47 imp:pre:2p;ind:pre:2p; +baissier baissier adj m s 0.14 0.00 0.14 0.00 +baissiez baisser ver 63.69 115.27 0.27 0.00 ind:imp:2p; +baissions baisser ver 63.69 115.27 0.00 0.07 ind:imp:1p; +baissâmes baisser ver 63.69 115.27 0.00 0.07 ind:pas:1p; +baissons baisser ver 63.69 115.27 0.15 0.27 imp:pre:1p;ind:pre:1p; +baissât baisser ver 63.69 115.27 0.00 0.07 sub:imp:3s; +baissèrent baisser ver 63.69 115.27 0.01 0.74 ind:pas:3p; +baissé baisser ver m s 63.69 115.27 5.70 14.12 par:pas; +baissée baisser ver f s 63.69 115.27 2.36 9.05 ind:imp:3s;par:pas; +baissées baisser ver f p 63.69 115.27 0.34 2.43 par:pas; +baissés baisser ver m p 63.69 115.27 1.25 8.18 par:pas; +baisèrent baiser ver 112.82 44.12 0.00 0.14 ind:pas:3p; +baisé baiser ver m s 112.82 44.12 17.65 4.19 par:pas; +baisée baiser ver f s 112.82 44.12 4.70 1.08 par:pas; +baisées baiser ver f p 112.82 44.12 0.50 0.47 par:pas; +baisés baiser ver m p 112.82 44.12 2.33 0.47 par:pas; +bajoue bajoue nom f s 0.49 2.50 0.30 0.00 +bajoues bajoue nom f p 0.49 2.50 0.19 2.50 +bajoyers bajoyer nom m p 0.00 0.07 0.00 0.07 +bakchich bakchich nom m s 0.31 0.61 0.17 0.54 +bakchichs bakchich nom m p 0.31 0.61 0.14 0.07 +baklava baklava nom m s 0.24 0.34 0.21 0.14 +baklavas baklava nom m p 0.24 0.34 0.03 0.20 +bakélite bakélite nom f s 0.04 1.08 0.04 1.08 +bal bal nom m s 30.25 25.54 28.57 18.31 +balada balader ver 24.30 13.51 0.00 0.07 ind:pas:3s; +baladai balader ver 24.30 13.51 0.00 0.07 ind:pas:1s; +baladaient balader ver 24.30 13.51 0.07 0.54 ind:imp:3p; +baladais balader ver 24.30 13.51 0.87 0.47 ind:imp:1s;ind:imp:2s; +baladait balader ver 24.30 13.51 0.65 1.08 ind:imp:3s; +baladant balader ver 24.30 13.51 0.21 0.47 par:pre; +balade balade nom f s 7.71 6.28 6.58 4.59 +baladent balader ver 24.30 13.51 1.51 0.88 ind:pre:3p; +balader balader ver 24.30 13.51 12.41 5.41 ind:pre:2p;inf; +baladera balader ver 24.30 13.51 0.21 0.14 ind:fut:3s; +baladerai balader ver 24.30 13.51 0.01 0.00 ind:fut:1s; +baladerais balader ver 24.30 13.51 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +baladerait balader ver 24.30 13.51 0.07 0.14 cnd:pre:3s; +baladerez balader ver 24.30 13.51 0.01 0.07 ind:fut:2p; +balades balader ver 24.30 13.51 1.43 0.34 ind:pre:2s;sub:pre:2s; +baladeur baladeur nom m s 0.34 0.68 0.32 0.14 +baladeurs baladeur adj m p 0.65 0.88 0.02 0.20 +baladeuse baladeur adj f s 0.65 0.88 0.04 0.54 +baladeuses baladeur adj f p 0.65 0.88 0.48 0.07 +baladez balader ver 24.30 13.51 0.37 0.00 imp:pre:2p;ind:pre:2p; +baladiez balader ver 24.30 13.51 0.04 0.00 ind:imp:2p; +baladin baladin nom m s 0.14 0.88 0.14 0.20 +baladins baladin nom m p 0.14 0.88 0.00 0.68 +baladèrent balader ver 24.30 13.51 0.00 0.07 ind:pas:3p; +baladé balader ver m s 24.30 13.51 0.62 0.47 par:pas; +baladée balader ver f s 24.30 13.51 0.37 0.27 par:pas; +baladées balader ver f p 24.30 13.51 0.02 0.14 par:pas; +baladés balader ver m p 24.30 13.51 0.37 0.14 par:pas; +balafon balafon nom m s 0.00 0.14 0.00 0.07 +balafons balafon nom m p 0.00 0.14 0.00 0.07 +balafra balafrer ver 0.16 1.55 0.00 0.07 ind:pas:3s; +balafraient balafrer ver 0.16 1.55 0.01 0.14 ind:imp:3p; +balafrait balafrer ver 0.16 1.55 0.00 0.27 ind:imp:3s; +balafre balafre nom f s 0.57 1.69 0.55 1.15 +balafrent balafrer ver 0.16 1.55 0.00 0.07 ind:pre:3p; +balafrer balafrer ver 0.16 1.55 0.02 0.07 inf; +balafres balafre nom f p 0.57 1.69 0.03 0.54 +balafrons balafrer ver 0.16 1.55 0.01 0.00 imp:pre:1p; +balafrât balafrer ver 0.16 1.55 0.00 0.07 sub:imp:3s; +balafré balafré adj m s 0.57 1.15 0.35 0.88 +balafrée balafré adj f s 0.57 1.15 0.21 0.20 +balafrées balafrer ver f p 0.16 1.55 0.00 0.07 par:pas; +balafrés balafrer ver m p 0.16 1.55 0.04 0.00 par:pas; +balai_brosse balai_brosse nom m s 0.40 0.61 0.29 0.34 +balai balai nom m s 10.91 17.70 8.24 11.96 +balaie balayer ver 12.17 37.43 1.99 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balaient balayer ver 12.17 37.43 0.20 1.01 ind:pre:3p; +balaiera balayer ver 12.17 37.43 0.18 0.34 ind:fut:3s; +balaierai balayer ver 12.17 37.43 0.28 0.00 ind:fut:1s; +balaieraient balayer ver 12.17 37.43 0.00 0.07 cnd:pre:3p; +balaierait balayer ver 12.17 37.43 0.02 0.20 cnd:pre:3s; +balaieras balayer ver 12.17 37.43 0.02 0.00 ind:fut:2s; +balaierez balayer ver 12.17 37.43 0.00 0.07 ind:fut:2p; +balaies balayer ver 12.17 37.43 0.38 0.00 ind:pre:2s; +balai_brosse balai_brosse nom m p 0.40 0.61 0.11 0.27 +balais balai nom m p 10.91 17.70 2.68 5.74 +balaise balaise adj m s 0.49 0.34 0.45 0.27 +balaises balaise adj m p 0.49 0.34 0.04 0.07 +balalaïka balalaïka nom f s 0.03 0.41 0.02 0.14 +balalaïkas balalaïka nom f p 0.03 0.41 0.01 0.27 +balan balan nom m s 0.00 0.07 0.00 0.07 +balance balancer ver 40.12 67.70 9.66 12.16 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +balancelle balancelle nom f s 0.18 0.34 0.18 0.27 +balancelles balancelle nom f p 0.18 0.34 0.00 0.07 +balancement balancement nom m s 0.83 5.41 0.69 4.93 +balancements balancement nom m p 0.83 5.41 0.14 0.47 +balancent balancer ver 40.12 67.70 1.73 2.97 ind:pre:3p;sub:pre:3p; +balancer balancer ver 40.12 67.70 10.15 11.89 inf; +balancera balancer ver 40.12 67.70 0.35 0.34 ind:fut:3s; +balancerai balancer ver 40.12 67.70 0.27 0.07 ind:fut:1s; +balanceraient balancer ver 40.12 67.70 0.04 0.07 cnd:pre:3p; +balancerais balancer ver 40.12 67.70 0.29 0.20 cnd:pre:1s;cnd:pre:2s; +balancerait balancer ver 40.12 67.70 0.36 0.07 cnd:pre:3s; +balanceras balancer ver 40.12 67.70 0.05 0.00 ind:fut:2s; +balancerez balancer ver 40.12 67.70 0.01 0.00 ind:fut:2p; +balanceriez balancer ver 40.12 67.70 0.02 0.00 cnd:pre:2p; +balanceront balancer ver 40.12 67.70 0.04 0.00 ind:fut:3p; +balances balancer ver 40.12 67.70 1.39 0.54 ind:pre:2s;sub:pre:2s; +balancez balancer ver 40.12 67.70 1.33 0.20 imp:pre:2p;ind:pre:2p; +balancier balancier nom m s 0.26 4.05 0.26 3.72 +balanciers balancier nom m p 0.26 4.05 0.00 0.34 +balanciez balancer ver 40.12 67.70 0.03 0.00 ind:imp:2p; +balancines balancine nom f p 0.00 0.07 0.00 0.07 +balancions balancer ver 40.12 67.70 0.01 0.07 ind:imp:1p; +balancèrent balancer ver 40.12 67.70 0.00 0.47 ind:pas:3p; +balancé balancer ver m s 40.12 67.70 10.50 8.18 par:pas; +balancée balancer ver f s 40.12 67.70 1.06 1.55 par:pas; +balancées balancer ver f p 40.12 67.70 0.07 0.74 par:pas; +balancés balancer ver m p 40.12 67.70 0.80 1.55 par:pas; +balandras balandras nom m 0.00 0.07 0.00 0.07 +balanes balane nom f p 0.01 0.27 0.01 0.27 +balanstiquant balanstiquer ver 0.00 0.41 0.00 0.07 par:pre; +balanstique balanstiquer ver 0.00 0.41 0.00 0.20 imp:pre:2s;ind:pre:3s; +balanstiquer balanstiquer ver 0.00 0.41 0.00 0.14 inf; +balança balancer ver 40.12 67.70 0.01 3.78 ind:pas:3s; +balançage balançage nom m s 0.00 0.34 0.00 0.20 +balançages balançage nom m p 0.00 0.34 0.00 0.14 +balançai balancer ver 40.12 67.70 0.00 0.14 ind:pas:1s; +balançaient balancer ver 40.12 67.70 0.29 3.51 ind:imp:3p; +balançais balancer ver 40.12 67.70 0.17 0.88 ind:imp:1s;ind:imp:2s; +balançait balancer ver 40.12 67.70 0.56 9.93 ind:imp:3s; +balançant balancer ver 40.12 67.70 0.71 8.38 par:pre; +balançoire balançoire nom f s 2.14 3.11 1.93 1.89 +balançoires balançoire nom f p 2.14 3.11 0.21 1.22 +balançons balancer ver 40.12 67.70 0.22 0.00 imp:pre:1p;ind:pre:1p; +balatum balatum nom m s 0.00 0.14 0.00 0.14 +balaya balayer ver 12.17 37.43 0.16 2.36 ind:pas:3s; +balayage balayage nom m s 1.69 0.81 1.56 0.74 +balayages balayage nom m p 1.69 0.81 0.13 0.07 +balayai balayer ver 12.17 37.43 0.00 0.07 ind:pas:1s; +balayaient balayer ver 12.17 37.43 0.00 2.30 ind:imp:3p; +balayais balayer ver 12.17 37.43 0.05 0.20 ind:imp:1s;ind:imp:2s; +balayait balayer ver 12.17 37.43 0.28 5.07 ind:imp:3s; +balayant balayer ver 12.17 37.43 0.23 3.31 par:pre; +balaye balayer ver 12.17 37.43 1.03 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balayent balayer ver 12.17 37.43 0.04 0.20 ind:pre:3p; +balayer balayer ver 12.17 37.43 3.40 7.23 inf; +balayera balayer ver 12.17 37.43 0.08 0.00 ind:fut:3s; +balayerai balayer ver 12.17 37.43 0.12 0.00 ind:fut:1s; +balayeraient balayer ver 12.17 37.43 0.00 0.07 cnd:pre:3p; +balayerait balayer ver 12.17 37.43 0.04 0.07 cnd:pre:3s; +balayerez balayer ver 12.17 37.43 0.01 0.07 ind:fut:2p; +balayerons balayer ver 12.17 37.43 0.01 0.00 ind:fut:1p; +balayeront balayer ver 12.17 37.43 0.03 0.00 ind:fut:3p; +balayette balayette nom f s 0.33 0.54 0.33 0.34 +balayettes balayette nom f p 0.33 0.54 0.00 0.20 +balayeur balayeur nom m s 0.80 2.97 0.48 1.42 +balayeurs balayeur nom m p 0.80 2.97 0.11 1.35 +balayeuse balayeur nom f s 0.80 2.97 0.21 0.07 +balayeuses balayeuse nom f p 0.02 0.00 0.02 0.00 +balayez balayer ver 12.17 37.43 0.60 0.07 imp:pre:2p;ind:pre:2p; +balayons balayer ver 12.17 37.43 0.05 0.07 imp:pre:1p; +balayât balayer ver 12.17 37.43 0.00 0.14 sub:imp:3s; +balayèrent balayer ver 12.17 37.43 0.00 0.41 ind:pas:3p; +balayé balayer ver m s 12.17 37.43 1.84 5.54 par:pas; +balayée balayer ver f s 12.17 37.43 0.35 1.76 par:pas; +balayées balayer ver f p 12.17 37.43 0.26 0.95 par:pas; +balayure balayure nom f s 0.00 0.34 0.00 0.14 +balayures balayure nom f p 0.00 0.34 0.00 0.20 +balayés balayer ver m p 12.17 37.43 0.50 1.69 par:pas; +balboa balboa nom m s 0.02 0.00 0.02 0.00 +balbutia balbutier ver 0.23 13.99 0.00 5.54 ind:pas:3s; +balbutiai balbutier ver 0.23 13.99 0.00 0.81 ind:pas:1s; +balbutiaient balbutier ver 0.23 13.99 0.00 0.14 ind:imp:3p; +balbutiais balbutier ver 0.23 13.99 0.01 0.20 ind:imp:1s; +balbutiait balbutier ver 0.23 13.99 0.01 1.89 ind:imp:3s; +balbutiant balbutier ver 0.23 13.99 0.14 1.35 par:pre; +balbutiante balbutiant adj f s 0.14 1.15 0.01 0.54 +balbutiantes balbutiant adj f p 0.14 1.15 0.00 0.14 +balbutie balbutier ver 0.23 13.99 0.03 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balbutiement balbutiement nom m s 0.06 1.15 0.00 0.61 +balbutiements balbutiement nom m p 0.06 1.15 0.06 0.54 +balbutier balbutier ver 0.23 13.99 0.02 1.08 inf; +balbutions balbutier ver 0.23 13.99 0.00 0.07 ind:pre:1p; +balbutièrent balbutier ver 0.23 13.99 0.00 0.14 ind:pas:3p; +balbutié balbutier ver m s 0.23 13.99 0.01 0.74 par:pas; +balbutiées balbutier ver f p 0.23 13.99 0.00 0.07 par:pas; +balbutiés balbutier ver m p 0.23 13.99 0.00 0.14 par:pas; +balbuzard balbuzard nom m s 0.03 0.07 0.03 0.07 +balcon balcon nom m s 10.53 40.41 9.90 32.97 +balconnet balconnet nom m s 0.02 0.54 0.01 0.41 +balconnets balconnet nom m p 0.02 0.54 0.01 0.14 +balcons balcon nom m p 10.53 40.41 0.63 7.43 +baldaquin baldaquin nom m s 0.66 2.77 0.63 2.57 +baldaquins baldaquin nom m p 0.66 2.77 0.04 0.20 +bale bale nom f s 0.50 0.00 0.36 0.00 +baleine baleine nom f s 16.68 5.00 11.52 3.11 +baleineau baleineau nom m s 0.05 0.00 0.05 0.00 +baleines baleine nom f p 16.68 5.00 5.17 1.89 +baleinier baleinier nom m s 0.30 0.81 0.09 0.07 +baleiniers baleinier nom m p 0.30 0.81 0.20 0.14 +baleinière baleinier nom f s 0.30 0.81 0.02 0.54 +baleinières baleinier adj f p 0.06 0.00 0.01 0.00 +baleiné baleiné adj m s 0.00 0.41 0.00 0.07 +baleinée baleiné adj f s 0.00 0.41 0.00 0.07 +baleinées baleiné adj f p 0.00 0.41 0.00 0.07 +baleinés baleiné adj m p 0.00 0.41 0.00 0.20 +bales bale nom f p 0.50 0.00 0.14 0.00 +balinais balinais adj m s 0.03 0.20 0.01 0.14 +balinaise balinais adj f s 0.03 0.20 0.02 0.07 +balisage balisage nom m s 0.12 0.07 0.12 0.07 +balisaient baliser ver 0.65 2.03 0.01 0.20 ind:imp:3p; +balisait baliser ver 0.65 2.03 0.01 0.14 ind:imp:3s; +balisant baliser ver 0.65 2.03 0.00 0.07 par:pre; +balise balise nom f s 2.82 0.68 2.31 0.27 +balisent baliser ver 0.65 2.03 0.01 0.07 ind:pre:3p; +baliser baliser ver 0.65 2.03 0.06 0.34 inf; +baliseraient baliser ver 0.65 2.03 0.01 0.00 cnd:pre:3p; +balises balise nom f p 2.82 0.68 0.51 0.41 +baliste baliste nom f s 0.02 0.14 0.01 0.00 +balistes baliste nom f p 0.02 0.14 0.01 0.14 +balistique balistique nom f s 1.06 0.14 1.06 0.14 +balistiquement balistiquement adv 0.00 0.07 0.00 0.07 +balistiques balistique adj p 1.11 0.14 0.31 0.07 +balisé baliser ver m s 0.65 2.03 0.06 0.07 par:pas; +balisée baliser ver f s 0.65 2.03 0.19 0.20 par:pas; +balisées baliser ver f p 0.65 2.03 0.00 0.07 par:pas; +balisés baliser ver m p 0.65 2.03 0.00 0.20 par:pas; +baliveau baliveau nom m s 0.00 1.08 0.00 0.07 +baliveaux baliveau nom m p 0.00 1.08 0.00 1.01 +baliverne baliverne nom f s 2.79 1.55 0.20 0.14 +balivernes baliverne nom f p 2.79 1.55 2.59 1.42 +balkanique balkanique adj s 0.00 1.49 0.00 0.81 +balkaniques balkanique adj p 0.00 1.49 0.00 0.68 +balkanisés balkaniser ver m p 0.00 0.07 0.00 0.07 par:pas; +ball_trap ball_trap nom m s 0.20 0.14 0.20 0.14 +ballade ballade nom f s 4.54 1.22 3.64 0.95 +ballades ballade nom f p 4.54 1.22 0.90 0.27 +ballaient baller ver 0.12 0.95 0.10 0.07 ind:imp:3p; +ballant ballant adj m s 0.33 6.28 0.02 0.54 +ballante ballant adj f s 0.33 6.28 0.00 0.54 +ballantes ballant adj f p 0.33 6.28 0.00 0.74 +ballants ballant adj m p 0.33 6.28 0.31 4.46 +ballast ballast nom m s 1.44 2.57 0.40 2.50 +ballasts ballast nom m p 1.44 2.57 1.04 0.07 +balle_peau balle_peau ono 0.00 0.07 0.00 0.07 +balle balle nom f s 122.07 94.59 77.32 44.73 +baller baller ver 0.12 0.95 0.02 0.41 inf; +ballerine ballerine nom f s 1.75 2.16 1.23 1.22 +ballerines ballerine nom f p 1.75 2.16 0.51 0.95 +balles balle nom f p 122.07 94.59 44.75 49.86 +ballet ballet nom m s 8.66 8.24 7.80 6.01 +ballets ballet nom m p 8.66 8.24 0.86 2.23 +balloches balloche nom m p 0.12 0.41 0.12 0.41 +ballon_sonde ballon_sonde nom m s 0.14 0.00 0.14 0.00 +ballon ballon nom m s 32.92 21.42 27.27 17.16 +ballonnaient ballonner ver 0.66 1.15 0.00 0.07 ind:imp:3p; +ballonnant ballonnant adj m s 0.00 0.27 0.00 0.07 +ballonnante ballonnant adj f s 0.00 0.27 0.00 0.14 +ballonnants ballonnant adj m p 0.00 0.27 0.00 0.07 +ballonne ballonner ver 0.66 1.15 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ballonnement ballonnement nom m s 0.04 0.14 0.02 0.07 +ballonnements ballonnement nom m p 0.04 0.14 0.02 0.07 +ballonnent ballonner ver 0.66 1.15 0.00 0.07 ind:pre:3p; +ballonner ballonner ver 0.66 1.15 0.15 0.14 inf; +ballonnets ballonnet nom m p 0.01 0.14 0.01 0.14 +ballonné ballonné adj m s 0.27 1.15 0.19 0.74 +ballonnée ballonner ver f s 0.66 1.15 0.15 0.14 par:pas; +ballonnées ballonner ver f p 0.66 1.15 0.01 0.07 par:pas; +ballonnées ballonné adj f p 0.27 1.15 0.01 0.07 +ballonnés ballonné adj m p 0.27 1.15 0.01 0.27 +ballons ballon nom m p 32.92 21.42 5.65 4.26 +ballot ballot nom m s 1.01 5.88 0.81 1.82 +ballote ballote nom f s 0.00 0.07 0.00 0.07 +ballots ballot nom m p 1.01 5.88 0.20 4.05 +ballottage ballottage nom m s 0.02 0.14 0.02 0.00 +ballottages ballottage nom m p 0.02 0.14 0.00 0.14 +ballottaient ballotter ver 0.72 5.68 0.00 0.41 ind:imp:3p; +ballottait ballotter ver 0.72 5.68 0.01 0.54 ind:imp:3s; +ballottant ballotter ver 0.72 5.68 0.00 0.41 par:pre; +ballotte ballotter ver 0.72 5.68 0.02 0.41 ind:pre:1s;ind:pre:3s; +ballottement ballottement nom m s 0.00 0.14 0.00 0.14 +ballottent ballotter ver 0.72 5.68 0.01 0.27 ind:pre:3p; +ballotter ballotter ver 0.72 5.68 0.02 0.41 inf; +ballottine ballottine nom f s 0.01 0.07 0.01 0.00 +ballottines ballottine nom f p 0.01 0.07 0.00 0.07 +ballottèrent ballotter ver 0.72 5.68 0.00 0.07 ind:pas:3p; +ballotté ballotter ver m s 0.72 5.68 0.44 1.49 par:pas; +ballottée ballotter ver f s 0.72 5.68 0.17 0.68 par:pas; +ballottées ballotter ver f p 0.72 5.68 0.00 0.20 par:pas; +ballottés ballotter ver m p 0.72 5.68 0.04 0.81 par:pas; +balluche balluche nom m s 0.01 0.14 0.00 0.07 +balluches balluche nom m p 0.01 0.14 0.01 0.07 +balluchon balluchon nom m s 0.18 0.54 0.16 0.34 +balluchonnage balluchonnage nom m s 0.00 0.07 0.00 0.07 +balluchonné balluchonner ver m s 0.00 0.07 0.00 0.07 par:pas; +balluchons balluchon nom m p 0.18 0.54 0.02 0.20 +balnéaire balnéaire adj s 0.39 1.22 0.39 0.74 +balnéaires balnéaire adj f p 0.39 1.22 0.00 0.47 +balnéothérapie balnéothérapie nom f s 0.01 0.00 0.01 0.00 +balourd balourd nom m s 0.73 0.54 0.67 0.41 +balourde balourd adj f s 0.82 0.68 0.14 0.00 +balourdise balourdise nom f s 0.02 0.88 0.02 0.81 +balourdises balourdise nom f p 0.02 0.88 0.00 0.07 +balourds balourd adj m p 0.82 0.68 0.28 0.14 +balpeau balpeau ono 0.01 0.61 0.01 0.61 +bals bal nom m p 30.25 25.54 1.67 7.23 +balsa balsa nom m s 0.13 0.00 0.13 0.00 +balsamier balsamier nom m s 0.01 0.07 0.00 0.07 +balsamiers balsamier nom m p 0.01 0.07 0.01 0.00 +balsamine balsamine nom f s 0.00 0.61 0.00 0.07 +balsamines balsamine nom f p 0.00 0.61 0.00 0.54 +balsamique balsamique adj s 0.10 0.47 0.10 0.41 +balsamiques balsamique adj m p 0.10 0.47 0.00 0.07 +balte balte adj s 0.52 2.23 0.05 0.34 +baltes balte adj p 0.52 2.23 0.47 1.89 +balthazar balthazar nom m s 0.00 0.54 0.00 0.47 +balthazars balthazar nom m p 0.00 0.54 0.00 0.07 +balèze balèze adj s 1.30 0.81 1.12 0.74 +balèzes balèze adj p 1.30 0.81 0.19 0.07 +baltique baltique adj s 0.14 0.47 0.14 0.34 +baltiques baltique adj f p 0.14 0.47 0.00 0.14 +balto balto adv 0.00 0.54 0.00 0.54 +baluba baluba nom s 0.00 0.07 0.00 0.07 +baluchon baluchon nom m s 0.97 2.30 0.87 1.96 +baluchonnage baluchonnage nom m s 0.00 0.07 0.00 0.07 +baluchonne baluchonner ver 0.00 0.41 0.00 0.07 ind:pre:3s; +baluchonnent baluchonner ver 0.00 0.41 0.00 0.07 ind:pre:3p; +baluchonner baluchonner ver 0.00 0.41 0.00 0.20 inf; +baluchonneur baluchonneur nom m s 0.00 0.20 0.00 0.07 +baluchonneurs baluchonneur nom m p 0.00 0.20 0.00 0.14 +baluchonné baluchonner ver m s 0.00 0.41 0.00 0.07 par:pas; +baluchons baluchon nom m p 0.97 2.30 0.10 0.34 +balustrade balustrade nom f s 0.61 11.28 0.61 10.20 +balustrades balustrade nom f p 0.61 11.28 0.00 1.08 +balustre balustre nom m s 0.00 1.35 0.00 0.20 +balustres balustre nom m p 0.00 1.35 0.00 1.15 +balzacien balzacien adj m s 0.00 0.61 0.00 0.34 +balzacienne balzacien adj f s 0.00 0.61 0.00 0.14 +balzaciennes balzacien adj f p 0.00 0.61 0.00 0.07 +balzaciens balzacien adj m p 0.00 0.61 0.00 0.07 +balzanes balzane nom f p 0.00 0.07 0.00 0.07 +bambara bambara adj m s 0.00 0.07 0.00 0.07 +bambara bambara nom s 0.00 0.07 0.00 0.07 +bambin bambin nom m s 1.35 4.66 0.87 2.16 +bambine bambin nom f s 1.35 4.66 0.00 0.14 +bambines bambin nom f p 1.35 4.66 0.00 0.14 +bambinette bambinette nom f s 0.01 0.07 0.01 0.07 +bambino bambino nom m s 0.37 0.34 0.33 0.27 +bambinos bambino nom m p 0.37 0.34 0.04 0.07 +bambins bambin nom m p 1.35 4.66 0.48 2.23 +bambochait bambocher ver 0.01 0.27 0.00 0.14 ind:imp:3s; +bamboche bamboche nom f s 0.02 0.07 0.02 0.07 +bambocher bambocher ver 0.01 0.27 0.01 0.00 inf; +bambocheurs bambocheur nom m p 0.00 0.14 0.00 0.14 +bambou bambou nom m s 1.73 6.15 1.32 3.78 +bamboula bamboula nom f s 1.29 0.27 1.29 0.27 +bambous bambou nom m p 1.73 6.15 0.41 2.36 +ban ban nom m s 1.66 2.16 0.76 1.76 +banal banal adj m s 8.66 26.22 4.88 11.28 +banale banal adj f s 8.66 26.22 2.75 9.93 +banalement banalement adv 0.16 1.22 0.16 1.22 +banales banal adj f p 8.66 26.22 0.78 2.84 +banalisait banaliser ver 0.70 0.81 0.01 0.07 ind:imp:3s; +banalisation banalisation nom f s 0.00 0.07 0.00 0.07 +banalise banaliser ver 0.70 0.81 0.08 0.00 ind:pre:3s; +banalisent banaliser ver 0.70 0.81 0.00 0.07 ind:pre:3p; +banaliser banaliser ver 0.70 0.81 0.16 0.00 inf; +banalisé banaliser ver m s 0.70 0.81 0.08 0.00 par:pas; +banalisée banaliser ver f s 0.70 0.81 0.26 0.47 par:pas; +banalisées banaliser ver f p 0.70 0.81 0.08 0.00 par:pas; +banalisés banaliser ver m p 0.70 0.81 0.04 0.20 par:pas; +banalité banalité nom f s 1.47 8.65 0.77 5.34 +banalités banalité nom f p 1.47 8.65 0.71 3.31 +banals banal adj m p 8.66 26.22 0.25 2.03 +banana bananer ver 1.04 0.20 0.81 0.14 ind:pas:3s; +bananas bananer ver 1.04 0.20 0.23 0.00 ind:pas:2s; +banane banane nom f s 11.14 7.57 6.09 4.05 +bananer bananer ver 1.04 0.20 0.00 0.07 inf; +bananeraie bananeraie nom f s 0.14 0.20 0.14 0.20 +bananes banane nom f p 11.14 7.57 5.05 3.51 +bananier bananier nom m s 0.76 3.85 0.18 0.61 +bananiers bananier nom m p 0.76 3.85 0.57 3.24 +bananière bananier adj f s 0.16 0.27 0.02 0.00 +banaux banal adj m p 8.66 26.22 0.00 0.14 +banc_titre banc_titre nom m s 0.14 0.00 0.14 0.00 +banc banc nom m s 10.76 66.42 8.96 48.31 +bancaire bancaire adj s 3.94 1.49 2.71 0.74 +bancaires bancaire adj p 3.94 1.49 1.23 0.74 +bancal bancal adj m s 0.53 3.18 0.29 1.42 +bancale bancal adj f s 0.53 3.18 0.20 1.08 +bancales bancal adj f p 0.53 3.18 0.02 0.34 +bancals bancal adj m p 0.53 3.18 0.02 0.34 +banche bancher ver 0.01 0.00 0.01 0.00 ind:pre:3s; +banco banco ono 0.42 0.41 0.42 0.41 +bancos banco nom m p 0.04 0.27 0.01 0.07 +bancroche bancroche adj s 0.01 0.14 0.01 0.00 +bancroches bancroche adj p 0.01 0.14 0.00 0.14 +bancs banc nom m p 10.76 66.42 1.81 18.11 +banda bander ver 14.51 15.54 0.01 0.54 ind:pas:3s; +bandage bandage nom m s 4.76 2.97 2.79 1.35 +bandages bandage nom m p 4.76 2.97 1.96 1.62 +bandagiste bandagiste nom s 0.00 0.14 0.00 0.14 +bandai bander ver 14.51 15.54 0.00 0.07 ind:pas:1s; +bandaient bander ver 14.51 15.54 0.02 0.20 ind:imp:3p; +bandais bander ver 14.51 15.54 0.12 0.61 ind:imp:1s;ind:imp:2s; +bandaison bandaison nom f s 0.00 0.74 0.00 0.54 +bandaisons bandaison nom f p 0.00 0.74 0.00 0.20 +bandait bander ver 14.51 15.54 0.18 1.49 ind:imp:3s; +bandana bandana nom m s 0.50 0.07 0.46 0.07 +bandanas bandana nom m p 0.50 0.07 0.04 0.00 +bandant bandant adj m s 1.46 1.55 0.33 0.27 +bandante bandant adj f s 1.46 1.55 1.04 0.68 +bandantes bandant adj f p 1.46 1.55 0.05 0.41 +bandants bandant adj m p 1.46 1.55 0.04 0.20 +bandasse bander ver 14.51 15.54 0.00 0.07 sub:imp:1s; +bande_annonce bande_annonce nom f s 0.51 0.00 0.41 0.00 +bande_son bande_son nom f s 0.09 0.27 0.09 0.27 +bande bande nom f s 78.36 72.23 69.10 52.36 +bandeau bandeau nom m s 2.60 6.49 2.34 4.73 +bandeaux bandeau nom m p 2.60 6.49 0.26 1.76 +bandelette bandelette nom f s 0.69 1.15 0.09 0.07 +bandelettes bandelette nom f p 0.69 1.15 0.61 1.08 +bandent bander ver 14.51 15.54 0.14 1.01 ind:pre:3p; +bander bander ver 14.51 15.54 5.34 5.07 inf; +bandera bandera nom f s 0.17 0.27 0.02 0.20 +banderai bander ver 14.51 15.54 0.15 0.14 ind:fut:1s; +banderaient bander ver 14.51 15.54 0.01 0.07 cnd:pre:3p; +banderait bander ver 14.51 15.54 0.00 0.07 cnd:pre:3s; +banderas bander ver 14.51 15.54 0.14 0.07 ind:fut:2s; +banderille banderille nom f s 0.00 0.88 0.00 0.41 +banderillero banderillero nom m s 0.10 0.07 0.10 0.00 +banderilleros banderillero nom m p 0.10 0.07 0.00 0.07 +banderilles banderille nom f p 0.00 0.88 0.00 0.47 +banderole banderole nom f s 1.34 4.19 0.67 2.23 +banderoles banderole nom f p 1.34 4.19 0.67 1.96 +bande_annonce bande_annonce nom f p 0.51 0.00 0.10 0.00 +bandes bande nom f p 78.36 72.23 9.26 19.86 +bandeur bandeur nom m s 0.07 0.14 0.03 0.00 +bandeurs bandeur nom m p 0.07 0.14 0.04 0.14 +bandez bander ver 14.51 15.54 0.82 0.14 imp:pre:2p;ind:pre:2p; +bandiez bander ver 14.51 15.54 0.02 0.00 ind:imp:2p; +bandit bandit nom m s 19.70 8.85 8.26 4.59 +banditisme banditisme nom m s 0.47 0.95 0.47 0.95 +bandits bandit nom m p 19.70 8.85 11.45 4.26 +bandoline bandoline nom f s 0.00 0.07 0.00 0.07 +bandonéon bandonéon nom m s 0.00 0.20 0.00 0.20 +bandothèque bandothèque nom f s 0.01 0.00 0.01 0.00 +bandoulière bandoulière nom f s 0.12 4.19 0.12 4.19 +bandé bander ver m s 14.51 15.54 0.60 0.81 par:pas; +bandée bandé adj f s 1.40 3.58 0.33 1.22 +bandées bandé adj f p 1.40 3.58 0.00 0.27 +bandés bandé adj m p 1.40 3.58 1.03 1.55 +bang bang ono 1.74 0.20 1.74 0.20 +bangladais bangladais nom m 0.00 0.07 0.00 0.07 +bangs bang nom m p 2.37 0.61 0.34 0.27 +banian banian nom m s 0.05 0.27 0.04 0.20 +banians banian nom m p 0.05 0.27 0.01 0.07 +banjo banjo nom m s 3.13 1.08 3.08 0.81 +banjos banjo nom m p 3.13 1.08 0.06 0.27 +bank_note bank_note nom f s 0.00 0.20 0.00 0.07 +bank_note bank_note nom f p 0.00 0.20 0.00 0.14 +banlieue banlieue nom f s 7.92 23.85 6.96 21.35 +banlieues banlieue nom f p 7.92 23.85 0.96 2.50 +banlieusard banlieusard nom m s 0.23 0.68 0.09 0.20 +banlieusarde banlieusard nom f s 0.23 0.68 0.01 0.14 +banlieusardes banlieusard nom f p 0.23 0.68 0.02 0.00 +banlieusards banlieusard nom m p 0.23 0.68 0.10 0.34 +banne banner ver 0.86 0.07 0.40 0.00 imp:pre:2s;ind:pre:3s; +banner banner ver 0.86 0.07 0.46 0.07 inf; +bannes banne nom f p 0.00 0.07 0.00 0.07 +banni bannir ver m s 7.03 3.31 2.48 1.49 par:pas; +bannie bannir ver f s 7.03 3.31 0.85 0.27 par:pas; +bannies bannir ver f p 7.03 3.31 0.07 0.14 par:pas; +bannir bannir ver 7.03 3.31 1.62 0.61 inf; +bannirait bannir ver 7.03 3.31 0.34 0.14 cnd:pre:3s; +bannirent bannir ver 7.03 3.31 0.02 0.00 ind:pas:3p; +bannis bannir ver m p 7.03 3.31 0.93 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bannissaient bannir ver 7.03 3.31 0.00 0.14 ind:imp:3p; +bannissait bannir ver 7.03 3.31 0.00 0.14 ind:imp:3s; +bannissant bannir ver 7.03 3.31 0.01 0.07 par:pre; +bannisse bannir ver 7.03 3.31 0.02 0.00 sub:pre:3s; +bannissement bannissement nom m s 0.62 0.47 0.59 0.34 +bannissements bannissement nom m p 0.62 0.47 0.03 0.14 +bannissez bannir ver 7.03 3.31 0.57 0.07 imp:pre:2p; +bannissons bannir ver 7.03 3.31 0.06 0.00 imp:pre:1p;ind:pre:1p; +bannit bannir ver 7.03 3.31 0.05 0.07 ind:pre:3s;ind:pas:3s; +bannière bannière nom f s 2.14 6.96 1.83 2.91 +bannières bannière nom f p 2.14 6.96 0.31 4.05 +banqua banquer ver 0.08 0.47 0.00 0.07 ind:pas:3s; +banque banque nom f s 79.35 30.88 70.79 25.54 +banquer banquer ver 0.08 0.47 0.04 0.27 inf; +banquerai banquer ver 0.08 0.47 0.00 0.07 ind:fut:1s; +banqueroute banqueroute nom f s 1.02 0.74 0.82 0.68 +banqueroutes banqueroute nom f p 1.02 0.74 0.20 0.07 +banqueroutier banqueroutier nom m s 0.11 0.00 0.01 0.00 +banqueroutiers banqueroutier nom m p 0.11 0.00 0.10 0.00 +banques banque nom f p 79.35 30.88 8.56 5.34 +banquet banquet nom m s 4.41 5.88 3.62 4.12 +banquets banquet nom m p 4.41 5.88 0.79 1.76 +banquette banquette nom f s 3.02 30.88 2.66 24.26 +banquettes banquette nom f p 3.02 30.88 0.36 6.62 +banqueté banqueter ver m s 0.04 0.00 0.04 0.00 par:pas; +banquier banquier nom m s 6.32 12.70 4.70 8.38 +banquiers banquier nom m p 6.32 12.70 1.33 3.99 +banquise banquise nom f s 0.66 1.55 0.65 1.42 +banquises banquise nom f p 0.66 1.55 0.01 0.14 +banquistes banquiste nom p 0.00 0.14 0.00 0.14 +banquière banquier nom f s 6.32 12.70 0.29 0.20 +banquières banquière nom f p 0.07 0.00 0.03 0.00 +banqué banquer ver m s 0.08 0.47 0.04 0.07 par:pas; +bans ban nom m p 1.66 2.16 0.90 0.41 +bantou bantou nom m s 0.14 0.00 0.14 0.00 +bantoue bantou adj f s 0.14 0.07 0.02 0.07 +bantu bantu nom m s 0.01 0.00 0.01 0.00 +banyan banyan nom m s 0.07 0.00 0.07 0.00 +banyuls banyuls nom m 0.00 0.74 0.00 0.74 +baobab baobab nom m s 0.58 1.15 0.18 0.81 +baobabs baobab nom m p 0.58 1.15 0.40 0.34 +baou baou nom m s 0.00 0.20 0.00 0.20 +baptisa baptiser ver 9.90 16.35 0.33 1.35 ind:pas:3s; +baptisai baptiser ver 9.90 16.35 0.00 0.07 ind:pas:1s; +baptisaient baptiser ver 9.90 16.35 0.00 0.34 ind:imp:3p; +baptisais baptiser ver 9.90 16.35 0.01 0.07 ind:imp:1s; +baptisait baptiser ver 9.90 16.35 0.05 0.95 ind:imp:3s; +baptisant baptiser ver 9.90 16.35 0.14 0.07 par:pre; +baptise baptiser ver 9.90 16.35 1.96 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +baptisent baptiser ver 9.90 16.35 0.00 0.41 ind:pre:3p; +baptiser baptiser ver 9.90 16.35 1.82 1.96 inf; +baptisera baptiser ver 9.90 16.35 0.20 0.14 ind:fut:3s; +baptiserai baptiser ver 9.90 16.35 0.01 0.00 ind:fut:1s; +baptiseraient baptiser ver 9.90 16.35 0.01 0.00 cnd:pre:3p; +baptiserait baptiser ver 9.90 16.35 0.00 0.14 cnd:pre:3s; +baptiseront baptiser ver 9.90 16.35 0.02 0.07 ind:fut:3p; +baptises baptiser ver 9.90 16.35 0.04 0.14 ind:pre:2s; +baptiseur baptiseur nom m s 0.02 0.07 0.02 0.07 +baptisez baptiser ver 9.90 16.35 0.06 0.00 imp:pre:2p;ind:pre:2p; +baptisions baptiser ver 9.90 16.35 0.14 0.20 ind:imp:1p; +baptismal baptismal adj m s 0.19 1.22 0.00 0.20 +baptismale baptismal adj f s 0.19 1.22 0.01 0.20 +baptismales baptismal adj f p 0.19 1.22 0.00 0.07 +baptismaux baptismal adj m p 0.19 1.22 0.17 0.74 +baptisons baptiser ver 9.90 16.35 0.03 0.07 imp:pre:1p;ind:pre:1p; +baptiste baptiste adj s 0.77 0.34 0.69 0.34 +baptistes baptiste nom p 0.24 0.07 0.19 0.07 +baptisèrent baptiser ver 9.90 16.35 0.06 0.07 ind:pas:3p; +baptistère baptistère nom m s 0.00 0.41 0.00 0.41 +baptisé baptiser ver m s 9.90 16.35 3.61 5.54 par:pas; +baptisée baptiser ver f s 9.90 16.35 0.99 1.96 par:pas; +baptisées baptiser ver f p 9.90 16.35 0.04 0.27 par:pas; +baptisés baptiser ver m p 9.90 16.35 0.41 1.08 par:pas; +baptême baptême nom m s 4.84 10.34 4.41 9.39 +baptêmes baptême nom m p 4.84 10.34 0.43 0.95 +baquet baquet nom m s 0.48 4.86 0.46 3.65 +baquets baquet nom m p 0.48 4.86 0.02 1.22 +bar_hôtel bar_hôtel nom m s 0.01 0.00 0.01 0.00 +bar_mitsva bar_mitsva nom f 0.41 0.07 0.41 0.07 +bar_restaurant bar_restaurant nom m s 0.00 0.07 0.00 0.07 +bar_tabac bar_tabac nom m s 0.03 0.61 0.03 0.61 +bar bar nom m s 67.57 61.35 60.17 52.57 +baragouin baragouin nom m s 0.12 0.41 0.11 0.41 +baragouinage baragouinage nom m s 0.10 0.00 0.10 0.00 +baragouinaient baragouiner ver 0.68 1.49 0.00 0.07 ind:imp:3p; +baragouinait baragouiner ver 0.68 1.49 0.01 0.54 ind:imp:3s; +baragouinant baragouiner ver 0.68 1.49 0.25 0.20 par:pre; +baragouine baragouiner ver 0.68 1.49 0.19 0.20 ind:pre:1s;ind:pre:3s; +baragouinent baragouiner ver 0.68 1.49 0.02 0.14 ind:pre:3p; +baragouiner baragouiner ver 0.68 1.49 0.07 0.20 inf; +baragouines baragouiner ver 0.68 1.49 0.09 0.00 ind:pre:2s; +baragouineur baragouineur nom m s 0.01 0.00 0.01 0.00 +baragouinez baragouiner ver 0.68 1.49 0.04 0.00 ind:pre:2p; +baragouins baragouin nom m p 0.12 0.41 0.01 0.00 +baragouiné baragouiner ver m s 0.68 1.49 0.01 0.14 par:pas; +baraka baraka nom f s 0.18 0.47 0.18 0.47 +baralipton baralipton nom m s 0.00 0.07 0.00 0.07 +baraque baraque nom f s 12.27 30.47 11.10 22.84 +baraquement baraquement nom m s 1.35 2.64 0.68 1.01 +baraquements baraquement nom m p 1.35 2.64 0.67 1.62 +baraques baraque nom f p 12.27 30.47 1.17 7.64 +baraqué baraqué adj m s 1.04 0.68 0.96 0.41 +baraquée baraqué adj f s 1.04 0.68 0.02 0.14 +baraqués baraqué adj m p 1.04 0.68 0.06 0.14 +baraterie baraterie nom f s 0.01 0.00 0.01 0.00 +baratin baratin nom m s 4.03 2.97 3.90 2.84 +baratinais baratiner ver 1.89 1.15 0.03 0.00 ind:imp:1s;ind:imp:2s; +baratinait baratiner ver 1.89 1.15 0.11 0.07 ind:imp:3s; +baratine baratiner ver 1.89 1.15 0.75 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +baratinent baratiner ver 1.89 1.15 0.01 0.00 ind:pre:3p; +baratiner baratiner ver 1.89 1.15 0.42 0.68 inf; +baratines baratiner ver 1.89 1.15 0.13 0.00 ind:pre:2s; +baratineur baratineur nom m s 0.74 0.27 0.44 0.20 +baratineurs baratineur nom m p 0.74 0.27 0.17 0.07 +baratineuse baratineur nom f s 0.74 0.27 0.13 0.00 +baratinez baratiner ver 1.89 1.15 0.05 0.00 imp:pre:2p;ind:pre:2p; +baratins baratin nom m p 4.03 2.97 0.14 0.14 +baratiné baratiner ver m s 1.89 1.15 0.21 0.27 par:pas; +baratinée baratiner ver f s 1.89 1.15 0.15 0.00 par:pas; +baratinés baratiner ver m p 1.89 1.15 0.02 0.00 par:pas; +barattage barattage nom m s 0.10 0.00 0.10 0.00 +barattait baratter ver 0.14 0.47 0.00 0.14 ind:imp:3s; +barattant baratter ver 0.14 0.47 0.00 0.07 par:pre; +baratte baratte nom f s 0.03 0.41 0.03 0.34 +barattent baratter ver 0.14 0.47 0.00 0.07 ind:pre:3p; +baratter baratter ver 0.14 0.47 0.13 0.07 inf; +barattes baratte nom f p 0.03 0.41 0.00 0.07 +baratté baratter ver m s 0.14 0.47 0.01 0.00 par:pas; +barattés baratter ver m p 0.14 0.47 0.00 0.07 par:pas; +barba barber ver 0.78 1.69 0.14 0.27 ind:pas:3s; +barbacane barbacane nom f s 0.02 0.14 0.02 0.07 +barbacanes barbacane nom f p 0.02 0.14 0.00 0.07 +barbaient barber ver 0.78 1.69 0.01 0.00 ind:imp:3p; +barbait barber ver 0.78 1.69 0.03 0.14 ind:imp:3s; +barbant barbant adj m s 1.90 0.27 1.02 0.20 +barbante barbant adj f s 1.90 0.27 0.65 0.00 +barbantes barbant adj f p 1.90 0.27 0.05 0.00 +barbants barbant adj m p 1.90 0.27 0.18 0.07 +barbaque barbaque nom f s 0.24 3.18 0.24 3.18 +barbara barbara nom s 0.05 0.00 0.05 0.00 +barbare barbare nom s 5.15 5.47 2.03 1.62 +barbarement barbarement adv 0.00 0.14 0.00 0.14 +barbares barbare nom p 5.15 5.47 3.12 3.85 +barbaresque barbaresque adj m s 0.00 0.95 0.00 0.41 +barbaresques barbaresque nom p 0.05 0.61 0.05 0.54 +barbarie barbarie nom f s 1.37 3.72 1.36 3.58 +barbaries barbarie nom f p 1.37 3.72 0.01 0.14 +barbarisme barbarisme nom m s 0.04 0.34 0.04 0.14 +barbarismes barbarisme nom m p 0.04 0.34 0.00 0.20 +barbe_de_capucin barbe_de_capucin nom f s 0.00 0.07 0.00 0.07 +barbe barbe nom s 24.15 50.54 23.40 47.70 +barbeau barbeau nom m s 0.01 1.08 0.01 0.74 +barbeaux barbeau nom m p 0.01 1.08 0.00 0.34 +barbecue barbecue nom m s 5.87 0.47 5.47 0.47 +barbecues barbecue nom m p 5.87 0.47 0.39 0.00 +barbelé barbelé adj m s 0.86 2.97 0.35 0.81 +barbelée barbelé adj f s 0.86 2.97 0.05 0.41 +barbelées barbelé adj f p 0.86 2.97 0.12 0.14 +barbelés barbelé nom m p 3.56 8.38 3.25 7.36 +barbent barber ver 0.78 1.69 0.00 0.14 ind:pre:3p; +barber barber ver 0.78 1.69 0.06 0.20 inf; +barbera barber ver 0.78 1.69 0.00 0.07 ind:fut:3s; +barberait barber ver 0.78 1.69 0.00 0.07 cnd:pre:3s; +barbes barbe nom p 24.15 50.54 0.75 2.84 +barbet barbet nom m s 0.00 0.41 0.00 0.34 +barbets barbet nom m p 0.00 0.41 0.00 0.07 +barbette barbette adj f s 0.01 0.00 0.01 0.00 +barbiche barbiche nom f s 0.18 3.78 0.18 3.65 +barbiches barbiche nom f p 0.18 3.78 0.00 0.14 +barbichette barbichette nom f s 0.38 0.81 0.38 0.81 +barbichu barbichu adj m s 0.01 0.68 0.01 0.61 +barbichus barbichu adj m p 0.01 0.68 0.00 0.07 +barbier barbier nom m s 3.62 22.50 3.57 22.16 +barbiers barbier nom m p 3.62 22.50 0.05 0.34 +barbillon barbillon nom m s 0.01 0.81 0.00 0.34 +barbillons barbillon nom m p 0.01 0.81 0.01 0.47 +barbiquet barbiquet nom m s 0.00 0.41 0.00 0.07 +barbiquets barbiquet nom m p 0.00 0.41 0.00 0.34 +barbiturique barbiturique nom m s 0.80 0.61 0.10 0.14 +barbituriques barbiturique nom m p 0.80 0.61 0.70 0.47 +barbon barbon nom m s 0.03 0.61 0.02 0.54 +barbons barbon nom m p 0.03 0.61 0.01 0.07 +barbot barbot nom m s 0.00 0.20 0.00 0.20 +barbota barboter ver 0.75 3.18 0.00 0.14 ind:pas:3s; +barbotages barbotage nom m p 0.00 0.07 0.00 0.07 +barbotaient barboter ver 0.75 3.18 0.00 0.14 ind:imp:3p; +barbotait barboter ver 0.75 3.18 0.00 0.88 ind:imp:3s; +barbotant barboter ver 0.75 3.18 0.01 0.41 par:pre; +barbote barboter ver 0.75 3.18 0.04 0.20 ind:pre:1s;ind:pre:3s; +barbotent barboter ver 0.75 3.18 0.00 0.14 ind:pre:3p; +barboter barboter ver 0.75 3.18 0.26 0.88 inf; +barboterais barboter ver 0.75 3.18 0.00 0.07 cnd:pre:1s; +barboterait barboter ver 0.75 3.18 0.00 0.07 cnd:pre:3s; +barboteuse barboteur nom f s 0.02 0.34 0.02 0.20 +barboteuses barboteuse nom f p 0.01 0.00 0.01 0.00 +barbotière barbotière nom f s 0.00 0.07 0.00 0.07 +barbotons barboter ver 0.75 3.18 0.16 0.14 imp:pre:1p;ind:pre:1p; +barbotte barbotte nom f s 0.03 0.07 0.02 0.07 +barbottes barbotte nom f p 0.03 0.07 0.01 0.00 +barboté barboter ver m s 0.75 3.18 0.28 0.14 par:pas; +barbouilla barbouiller ver 1.31 8.99 0.00 0.27 ind:pas:3s; +barbouillage barbouillage nom m s 0.30 0.81 0.00 0.41 +barbouillages barbouillage nom m p 0.30 0.81 0.30 0.41 +barbouillai barbouiller ver 1.31 8.99 0.00 0.07 ind:pas:1s; +barbouillaient barbouiller ver 1.31 8.99 0.00 0.20 ind:imp:3p; +barbouillais barbouiller ver 1.31 8.99 0.00 0.14 ind:imp:1s; +barbouillait barbouiller ver 1.31 8.99 0.00 0.74 ind:imp:3s; +barbouillant barbouiller ver 1.31 8.99 0.01 0.41 par:pre; +barbouille barbouiller ver 1.31 8.99 0.29 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +barbouillent barbouiller ver 1.31 8.99 0.00 0.20 ind:pre:3p; +barbouiller barbouiller ver 1.31 8.99 0.67 1.15 inf; +barbouilles barbouiller ver 1.31 8.99 0.10 0.14 ind:pre:2s; +barbouilleur barbouilleur nom m s 0.00 1.22 0.00 0.81 +barbouilleurs barbouilleur nom m p 0.00 1.22 0.00 0.41 +barbouillis barbouillis nom m 0.00 0.07 0.00 0.07 +barbouillèrent barbouiller ver 1.31 8.99 0.00 0.14 ind:pas:3p; +barbouillé barbouillé adj m s 0.62 1.55 0.35 1.15 +barbouillée barbouillé adj f s 0.62 1.55 0.12 0.07 +barbouillées barbouillé adj f p 0.62 1.55 0.01 0.20 +barbouillés barbouillé adj m p 0.62 1.55 0.14 0.14 +barbouze barbouze nom s 0.33 0.68 0.16 0.34 +barbouzes barbouze nom p 0.33 0.68 0.17 0.34 +barbé barber ver m s 0.78 1.69 0.04 0.07 par:pas; +barbu barbu nom m s 1.70 3.65 1.37 2.77 +barbue barbu adj f s 1.46 8.31 0.08 0.74 +barbues barbu adj f p 1.46 8.31 0.00 0.14 +barbules barbule nom f p 0.01 0.00 0.01 0.00 +barbés barber ver m p 0.78 1.69 0.10 0.07 par:pas; +barbus barbu nom m p 1.70 3.65 0.34 0.88 +barca barca adv 0.16 0.20 0.16 0.20 +barcarolle barcarolle nom f s 0.03 0.14 0.03 0.14 +barcasse barcasse nom f s 0.00 0.68 0.00 0.41 +barcasses barcasse nom f p 0.00 0.68 0.00 0.27 +barda barda nom m s 1.62 2.16 1.46 1.55 +bardage bardage nom m s 0.01 0.00 0.01 0.00 +bardaient barder ver 2.58 6.55 0.00 0.14 ind:imp:3p; +bardait barder ver 2.58 6.55 0.05 0.41 ind:imp:3s; +bardane bardane nom f s 0.04 0.34 0.04 0.20 +bardanes bardane nom f p 0.04 0.34 0.00 0.14 +bardas barda nom m p 1.62 2.16 0.16 0.61 +barde barder ver 2.58 6.55 0.30 0.20 ind:pre:3s; +bardeau bardeau nom m s 0.08 0.41 0.00 0.14 +bardeaux bardeau nom m p 0.08 0.41 0.08 0.27 +barder barder ver 2.58 6.55 1.84 0.47 inf; +bardera barder ver 2.58 6.55 0.15 0.07 ind:fut:3s; +barderait barder ver 2.58 6.55 0.00 0.07 cnd:pre:3s; +bardes barde nom p 0.18 0.68 0.00 0.27 +bardeurs bardeur nom m p 0.00 0.07 0.00 0.07 +bardiques bardique adj f p 0.00 0.07 0.00 0.07 +bardo bardo nom m s 0.11 0.20 0.11 0.20 +bardolino bardolino nom m s 0.14 0.00 0.14 0.00 +bardot bardot nom m s 0.27 0.20 0.27 0.07 +bardots bardot nom m p 0.27 0.20 0.00 0.14 +bardé barder ver m s 2.58 6.55 0.07 2.30 par:pas; +bardée barder ver f s 2.58 6.55 0.01 1.22 par:pas; +bardées barder ver f p 2.58 6.55 0.01 0.54 par:pas; +bardés barder ver m p 2.58 6.55 0.14 1.15 par:pas; +baret baret nom m s 0.00 0.07 0.00 0.07 +barge barge adj s 1.70 0.14 1.60 0.07 +barges barge nom f p 1.00 0.74 0.28 0.34 +barguigna barguigner ver 0.14 0.34 0.00 0.07 ind:pas:3s; +barguigner barguigner ver 0.14 0.34 0.14 0.20 inf; +barguigné barguigner ver m s 0.14 0.34 0.00 0.07 par:pas; +baril baril nom m s 2.71 3.04 1.81 2.03 +barillet barillet nom m s 0.69 2.03 0.67 1.96 +barillets barillet nom m p 0.69 2.03 0.03 0.07 +barils baril nom m p 2.71 3.04 0.90 1.01 +barine barine nom m s 0.22 0.00 0.22 0.00 +bariolage bariolage nom m s 0.00 0.61 0.00 0.41 +bariolages bariolage nom m p 0.00 0.61 0.00 0.20 +bariolaient barioler ver 0.03 2.64 0.00 0.07 ind:imp:3p; +bariolant barioler ver 0.03 2.64 0.00 0.14 par:pre; +bariole barioler ver 0.03 2.64 0.00 0.07 ind:pre:3s; +bariolé bariolé adj m s 0.21 5.47 0.02 1.35 +bariolée bariolé adj f s 0.21 5.47 0.03 1.76 +bariolées bariolé adj f p 0.21 5.47 0.01 0.88 +bariolures bariolure nom f p 0.00 0.07 0.00 0.07 +bariolés bariolé adj m p 0.21 5.47 0.16 1.49 +barje barje adj m s 0.00 0.27 0.00 0.20 +barjes barje adj p 0.00 0.27 0.00 0.07 +barjo barjo adj m s 1.02 0.14 0.95 0.14 +barjos barjo nom m p 1.01 0.14 0.28 0.00 +barjot barjot adj m s 0.84 0.47 0.63 0.34 +barjots barjot adj m p 0.84 0.47 0.21 0.14 +barmaid barmaid nom f s 0.67 1.82 0.65 1.76 +barmaids barmaid nom f p 0.67 1.82 0.02 0.07 +barman barman nom m s 7.91 11.01 7.53 10.14 +barmans barman nom m p 7.91 11.01 0.14 0.00 +barmen barman nom m p 7.91 11.01 0.24 0.88 +barnum barnum nom m s 0.03 0.20 0.03 0.20 +barolo barolo nom m s 0.05 0.00 0.05 0.00 +baromètre baromètre nom m s 0.57 2.91 0.56 2.30 +baromètres baromètre nom m p 0.57 2.91 0.01 0.61 +barométrique barométrique adj s 0.04 0.14 0.04 0.14 +baron baron nom m s 20.80 28.24 16.07 17.64 +baronet baronet nom m s 0.07 0.07 0.07 0.07 +baronnait baronner ver 0.00 0.20 0.00 0.07 ind:imp:3s; +baronne baron nom f s 20.80 28.24 4.17 7.03 +baronner baronner ver 0.00 0.20 0.00 0.07 inf; +baronnes baronne nom f p 0.02 0.00 0.02 0.00 +baronnet baronnet nom m s 0.10 0.34 0.10 0.07 +baronnets baronnet nom m p 0.10 0.34 0.00 0.27 +baronnez baronner ver 0.00 0.20 0.00 0.07 ind:pre:2p; +baronnie baronnie nom f s 0.02 0.14 0.02 0.07 +baronnies baronnie nom f p 0.02 0.14 0.00 0.07 +barons baron nom m p 20.80 28.24 0.56 3.51 +baroque baroque adj s 1.24 4.86 0.91 2.91 +baroques baroque adj p 1.24 4.86 0.34 1.96 +barotraumatisme barotraumatisme nom m s 0.01 0.00 0.01 0.00 +baroud baroud nom m s 0.04 1.35 0.04 1.35 +baroudeur baroudeur nom m s 0.32 0.68 0.05 0.34 +baroudeurs baroudeur nom m p 0.32 0.68 0.13 0.14 +baroudeuse baroudeur nom f s 0.32 0.68 0.14 0.20 +baroudé barouder ver m s 0.28 0.00 0.28 0.00 par:pas; +barouf barouf nom m s 0.28 0.68 0.28 0.68 +barque barque nom f s 10.40 41.28 9.52 29.93 +barques barque nom f p 10.40 41.28 0.89 11.35 +barquette barquette nom f s 0.27 0.54 0.15 0.14 +barquettes barquette nom f p 0.27 0.54 0.12 0.41 +barra barrer ver 26.71 32.36 0.13 1.01 ind:pas:3s; +barracuda barracuda nom m s 2.26 0.34 2.19 0.34 +barracudas barracuda nom m p 2.26 0.34 0.08 0.00 +barrage barrage nom m s 13.40 19.66 9.60 10.68 +barrages barrage nom m p 13.40 19.66 3.80 8.99 +barrai barrer ver 26.71 32.36 0.00 0.14 ind:pas:1s; +barraient barrer ver 26.71 32.36 0.03 1.35 ind:imp:3p; +barrais barrer ver 26.71 32.36 0.04 0.27 ind:imp:1s;ind:imp:2s; +barrait barrer ver 26.71 32.36 0.34 4.39 ind:imp:3s; +barrant barrer ver 26.71 32.36 0.03 2.23 par:pre; +barre barre nom f s 18.78 29.39 15.59 23.18 +barreau barreau nom m s 7.61 19.53 2.15 3.99 +barreaudées barreaudé adj f p 0.00 0.07 0.00 0.07 +barreaux barreau nom m p 7.61 19.53 5.46 15.54 +barrent barrer ver 26.71 32.36 0.75 0.95 ind:pre:3p; +barrer barrer ver 26.71 32.36 4.58 4.80 inf; +barrera barrer ver 26.71 32.36 0.06 0.41 ind:fut:3s; +barrerai barrer ver 26.71 32.36 0.01 0.07 ind:fut:1s; +barrerais barrer ver 26.71 32.36 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +barreront barrer ver 26.71 32.36 0.03 0.14 ind:fut:3p; +barres barre nom f p 18.78 29.39 3.19 6.22 +barrette barrette nom f s 0.46 2.50 0.33 1.42 +barrettes barrette nom f p 0.46 2.50 0.13 1.08 +barreur barreur nom m s 0.07 0.00 0.05 0.00 +barreurs barreur nom m p 0.07 0.00 0.01 0.00 +barreuse barreur nom f s 0.07 0.00 0.01 0.00 +barrez barrer ver 26.71 32.36 4.38 0.68 imp:pre:2p;ind:pre:2p; +barri barrir ver m s 0.10 0.54 0.01 0.07 par:pas; +barricada barricader ver 2.46 5.41 0.00 0.07 ind:pas:3s; +barricadai barricader ver 2.46 5.41 0.00 0.14 ind:pas:1s; +barricadaient barricader ver 2.46 5.41 0.00 0.20 ind:imp:3p; +barricadait barricader ver 2.46 5.41 0.00 0.54 ind:imp:3s; +barricade barricade nom f s 2.68 7.57 0.94 3.11 +barricadent barricader ver 2.46 5.41 0.05 0.41 ind:pre:3p; +barricader barricader ver 2.46 5.41 0.51 0.95 inf; +barricaderait barricader ver 2.46 5.41 0.00 0.14 cnd:pre:3s; +barricades barricade nom f p 2.68 7.57 1.74 4.46 +barricadez barricader ver 2.46 5.41 0.56 0.07 imp:pre:2p;ind:pre:2p; +barricadier barricadier nom m s 0.00 0.14 0.00 0.07 +barricadières barricadier nom f p 0.00 0.14 0.00 0.07 +barricadons barricader ver 2.46 5.41 0.07 0.00 imp:pre:1p;ind:pre:1p; +barricadèrent barricader ver 2.46 5.41 0.01 0.07 ind:pas:3p; +barricadé barricader ver m s 2.46 5.41 0.52 1.08 par:pas; +barricadée barricader ver f s 2.46 5.41 0.07 0.34 par:pas; +barricadées barricader ver f p 2.46 5.41 0.06 0.47 par:pas; +barricadés barricader ver m p 2.46 5.41 0.14 0.61 par:pas; +barrique barrique nom f s 0.99 1.55 0.68 0.81 +barriques barrique nom f p 0.99 1.55 0.31 0.74 +barris barrir ver m p 0.10 0.54 0.07 0.00 imp:pre:2s;par:pas; +barrissait barrir ver 0.10 0.54 0.00 0.20 ind:imp:3s; +barrissant barrir ver 0.10 0.54 0.03 0.07 par:pre; +barrissement barrissement nom m s 0.01 0.88 0.00 0.54 +barrissements barrissement nom m p 0.01 0.88 0.01 0.34 +barrissent barrir ver 0.10 0.54 0.00 0.07 ind:pre:3p; +barriste barriste nom s 0.00 0.07 0.00 0.07 +barrit barrir ver 0.10 0.54 0.00 0.14 ind:pre:3s; +barrière barrière nom f s 9.13 22.91 7.33 17.36 +barrières barrière nom f p 9.13 22.91 1.80 5.54 +barrons barrer ver 26.71 32.36 0.85 0.20 imp:pre:1p;ind:pre:1p; +barrèrent barrer ver 26.71 32.36 0.01 0.14 ind:pas:3p; +barré barrer ver m s 26.71 32.36 4.04 4.80 par:pas; +barrée barrer ver f s 26.71 32.36 1.88 3.18 par:pas; +barrées barrer ver f p 26.71 32.36 0.25 0.61 par:pas; +barrés barré adj m p 3.36 2.64 0.69 0.81 +barrésien barrésien nom m s 0.00 0.07 0.00 0.07 +bars bar nom m p 67.57 61.35 7.39 8.78 +bartavelle bartavelle nom f s 1.61 1.08 0.67 0.00 +bartavelles bartavelle nom f p 1.61 1.08 0.94 1.08 +barème barème nom m s 0.31 0.54 0.17 0.34 +barèmes barème nom m p 0.31 0.54 0.14 0.20 +barye barye nom f s 0.01 0.00 0.01 0.00 +baryon baryon nom m s 0.01 0.00 0.01 0.00 +baryte baryte nom f s 0.00 0.07 0.00 0.07 +baryton baryton nom m s 0.83 2.70 0.78 2.50 +barytonnant barytonner ver 0.00 0.14 0.00 0.07 par:pre; +barytonner barytonner ver 0.00 0.14 0.00 0.07 inf; +barytons baryton nom m p 0.83 2.70 0.05 0.20 +baryté baryté adj m s 0.01 0.00 0.01 0.00 +baryum baryum nom m s 0.06 0.14 0.06 0.14 +barzoï barzoï nom m s 0.07 0.07 0.07 0.07 +bas_bleu bas_bleu nom m s 0.01 0.47 0.01 0.34 +bas_bleu bas_bleu nom m p 0.01 0.47 0.00 0.14 +bas_côté bas_côté nom m s 0.60 5.34 0.58 3.58 +bas_côté bas_côté nom m p 0.60 5.34 0.02 1.76 +bas_empire bas_empire nom m 0.00 0.07 0.00 0.07 +bas_flanc bas_flanc nom m 0.00 0.14 0.00 0.14 +bas_fond bas_fond nom m s 1.05 3.72 0.02 1.62 +bas_fond bas_fond nom m p 1.05 3.72 1.03 2.09 +bas_relief bas_relief nom m s 0.09 1.22 0.08 0.34 +bas_relief bas_relief nom m p 0.09 1.22 0.01 0.88 +bas_ventre bas_ventre nom m s 0.23 2.30 0.23 2.30 +bas bas adj m 85.56 187.09 73.86 99.80 +basa baser ver 15.61 2.70 0.02 0.00 ind:pas:3s; +basaient baser ver 15.61 2.70 0.10 0.07 ind:imp:3p; +basait baser ver 15.61 2.70 0.04 0.14 ind:imp:3s; +basal basal adj m s 0.15 0.00 0.15 0.00 +basalte basalte nom m s 0.03 1.01 0.03 0.95 +basaltes basalte nom m p 0.03 1.01 0.00 0.07 +basaltique basaltique adj s 0.00 0.34 0.00 0.34 +basane basane nom f s 0.01 0.95 0.00 0.88 +basanes basane nom f p 0.01 0.95 0.01 0.07 +basant baser ver 15.61 2.70 1.47 0.00 par:pre; +basané basané adj m s 0.44 2.50 0.32 1.69 +basanée basané adj f s 0.44 2.50 0.01 0.47 +basanées basané adj f p 0.44 2.50 0.01 0.14 +basanés basané adj m p 0.44 2.50 0.10 0.20 +bascula basculer ver 5.29 31.35 0.22 3.78 ind:pas:3s; +basculai basculer ver 5.29 31.35 0.00 0.27 ind:pas:1s; +basculaient basculer ver 5.29 31.35 0.10 0.74 ind:imp:3p; +basculais basculer ver 5.29 31.35 0.00 0.14 ind:imp:1s;ind:imp:2s; +basculait basculer ver 5.29 31.35 0.01 2.50 ind:imp:3s; +basculant basculant adj m s 0.06 0.95 0.04 0.54 +basculante basculant adj f s 0.06 0.95 0.00 0.27 +basculants basculant adj m p 0.06 0.95 0.03 0.14 +bascule basculer ver 5.29 31.35 1.12 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +basculement basculement nom m s 0.04 0.14 0.04 0.14 +basculent basculer ver 5.29 31.35 0.02 0.74 ind:pre:3p; +basculer basculer ver 5.29 31.35 2.33 10.95 inf; +basculera basculer ver 5.29 31.35 0.00 0.20 ind:fut:3s; +basculerai basculer ver 5.29 31.35 0.00 0.07 ind:fut:1s; +basculerais basculer ver 5.29 31.35 0.14 0.00 cnd:pre:2s; +basculerait basculer ver 5.29 31.35 0.01 0.14 cnd:pre:3s; +basculeront basculer ver 5.29 31.35 0.14 0.07 ind:fut:3p; +bascules basculer ver 5.29 31.35 0.03 0.07 ind:pre:2s; +basculez basculer ver 5.29 31.35 0.15 0.00 imp:pre:2p;ind:pre:2p; +basculions basculer ver 5.29 31.35 0.00 0.07 ind:imp:1p; +basculâmes basculer ver 5.29 31.35 0.00 0.07 ind:pas:1p; +basculât basculer ver 5.29 31.35 0.00 0.07 sub:imp:3s; +basculèrent basculer ver 5.29 31.35 0.00 0.34 ind:pas:3p; +basculé basculer ver m s 5.29 31.35 1.02 3.72 par:pas; +basculée basculer ver f s 5.29 31.35 0.00 0.54 par:pas; +basculées basculer ver f p 5.29 31.35 0.01 0.07 par:pas; +basculés basculer ver m p 5.29 31.35 0.01 0.20 par:pas; +base_ball base_ball nom m s 10.12 1.28 10.12 1.28 +base base nom f s 59.22 44.46 51.69 31.96 +baseball baseball nom m s 6.95 0.00 6.95 0.00 +basent baser ver 15.61 2.70 0.23 0.00 ind:pre:3p; +baser baser ver 15.61 2.70 0.44 0.07 inf; +basera baser ver 15.61 2.70 0.01 0.00 ind:fut:3s; +baseront baser ver 15.61 2.70 0.03 0.00 ind:fut:3p; +bases base nom f p 59.22 44.46 7.53 12.50 +basez baser ver 15.61 2.70 0.35 0.07 imp:pre:2p;ind:pre:2p; +basic basic nom m s 0.03 0.00 0.03 0.00 +basilaire basilaire adj s 0.04 0.00 0.04 0.00 +basileus basileus nom m 0.04 0.00 0.04 0.00 +basilic basilic nom m s 1.86 1.01 1.86 1.01 +basilicum basilicum nom m s 0.00 0.07 0.00 0.07 +basilique basilique nom f s 0.66 4.19 0.52 3.92 +basiliques basilique nom f p 0.66 4.19 0.14 0.27 +basin basin nom m s 0.00 0.07 0.00 0.07 +basique basique adj s 1.30 0.00 0.85 0.00 +basiques basique adj p 1.30 0.00 0.45 0.00 +basket_ball basket_ball nom m s 1.38 0.34 1.38 0.34 +basket basket nom s 16.48 3.45 10.91 0.88 +baskets basket nom p 16.48 3.45 5.56 2.57 +basketteur basketteur nom m s 0.43 0.20 0.31 0.07 +basketteurs basketteur nom m p 0.43 0.20 0.10 0.07 +basketteuse basketteur nom f s 0.43 0.20 0.01 0.00 +basketteuses basketteur nom f p 0.43 0.20 0.01 0.07 +basmati basmati nom m s 0.03 0.00 0.03 0.00 +basoche basoche nom f s 0.00 0.07 0.00 0.07 +basons baser ver 15.61 2.70 0.02 0.07 imp:pre:1p;ind:pre:1p; +basquaise basquais adj f s 0.13 0.14 0.13 0.14 +basque basque adj s 8.73 3.58 7.51 3.24 +basques basque nom p 4.12 2.64 3.52 2.16 +bassa bassa nom s 0.00 0.14 0.00 0.07 +bassas bassa nom p 0.00 0.14 0.00 0.07 +basse_cour basse_cour nom f s 0.81 3.85 0.57 3.65 +basse_fosse basse_fosse nom f s 0.01 0.20 0.01 0.14 +basse_taille basse_taille nom f s 0.00 0.14 0.00 0.14 +basse bas adj f s 85.56 187.09 9.54 71.28 +bassement bassement adv 0.35 0.54 0.35 0.54 +basse_cour basse_cour nom f p 0.81 3.85 0.23 0.20 +basse_fosse basse_fosse nom f p 0.01 0.20 0.00 0.07 +basses bas adj f p 85.56 187.09 2.15 16.01 +bassesse bassesse nom f s 1.72 3.65 1.15 2.50 +bassesses bassesse nom f p 1.72 3.65 0.57 1.15 +basset basset nom m s 0.70 1.49 0.53 1.28 +bassets basset nom m p 0.70 1.49 0.17 0.20 +bassette bassette nom f s 0.01 0.07 0.01 0.07 +bassin bassin nom m s 5.03 25.20 4.51 21.22 +bassinaient bassiner ver 0.46 1.42 0.00 0.07 ind:imp:3p; +bassinais bassiner ver 0.46 1.42 0.00 0.07 ind:imp:1s; +bassinait bassiner ver 0.46 1.42 0.02 0.07 ind:imp:3s; +bassinant bassiner ver 0.46 1.42 0.00 0.07 par:pre; +bassine bassine nom f s 1.59 8.99 1.55 6.55 +bassiner bassiner ver 0.46 1.42 0.23 0.54 inf; +bassines bassine nom f p 1.59 8.99 0.04 2.43 +bassinet bassinet nom m s 0.16 0.34 0.16 0.34 +bassinez bassiner ver 0.46 1.42 0.01 0.00 ind:pre:2p; +bassinoire bassinoire nom f s 0.01 0.47 0.00 0.41 +bassinoires bassinoire nom f p 0.01 0.47 0.01 0.07 +bassins bassin nom m p 5.03 25.20 0.52 3.99 +bassiné bassiner ver m s 0.46 1.42 0.07 0.14 par:pas; +bassiste bassiste nom s 0.94 0.81 0.93 0.74 +bassistes bassiste nom p 0.94 0.81 0.02 0.07 +basson basson nom m s 0.07 0.07 0.07 0.07 +basta basta ono 2.15 1.49 2.15 1.49 +baste baste ono 0.42 0.14 0.42 0.14 +baster baster ver 0.10 0.20 0.01 0.00 inf; +bastide bastide nom f s 1.14 0.41 0.73 0.27 +bastides bastide nom f p 1.14 0.41 0.40 0.14 +bastille bastille nom f s 1.81 4.32 1.81 4.12 +bastilles bastille nom f p 1.81 4.32 0.00 0.20 +bastingage bastingage nom m s 0.23 2.03 0.23 1.82 +bastingages bastingage nom m p 0.23 2.03 0.00 0.20 +bastion bastion nom m s 1.49 2.70 1.44 1.89 +bastionnée bastionner ver f s 0.00 0.07 0.00 0.07 par:pas; +bastions bastion nom m p 1.49 2.70 0.04 0.81 +baston baston nom m s 1.51 0.88 1.43 0.81 +bastonnade bastonnade nom f s 0.13 0.47 0.12 0.41 +bastonnades bastonnade nom f p 0.13 0.47 0.01 0.07 +bastonne bastonner ver 0.62 0.68 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bastonnent bastonner ver 0.62 0.68 0.01 0.00 ind:pre:3p; +bastonner bastonner ver 0.62 0.68 0.17 0.20 inf; +bastonneurs bastonneur nom m p 0.02 0.00 0.02 0.00 +bastonné bastonner ver m s 0.62 0.68 0.06 0.27 par:pas; +bastonnée bastonner ver f s 0.62 0.68 0.10 0.07 par:pas; +bastonnés bastonner ver m p 0.62 0.68 0.02 0.00 par:pas; +bastons baston nom m p 1.51 0.88 0.09 0.07 +bastos bastos nom f 0.42 1.62 0.42 1.62 +bastringue bastringue nom m s 0.50 1.08 0.42 1.01 +bastringues bastringue nom m p 0.50 1.08 0.08 0.07 +basé baser ver m s 15.61 2.70 4.86 0.41 par:pas; +basée baser ver f s 15.61 2.70 3.60 0.74 par:pas; +basées baser ver f p 15.61 2.70 1.14 0.27 par:pas; +basés baser ver m p 15.61 2.70 1.15 0.61 par:pas; +bat_flanc bat_flanc nom m 0.00 2.84 0.00 2.84 +bat_l_eau bat_l_eau nom m s 0.00 0.07 0.00 0.07 +bat battre ver 200.32 182.36 27.36 17.97 ind:pre:3s; +bataclan bataclan nom m s 0.25 1.08 0.25 1.08 +batailla batailler ver 0.34 1.76 0.00 0.07 ind:pas:3s; +bataillait batailler ver 0.34 1.76 0.00 0.27 ind:imp:3s; +bataillant batailler ver 0.34 1.76 0.01 0.27 par:pre; +bataille bataille nom f s 32.02 77.77 28.31 64.19 +bataillent batailler ver 0.34 1.76 0.00 0.14 ind:pre:3p; +batailler batailler ver 0.34 1.76 0.10 0.61 inf; +batailles bataille nom f p 32.02 77.77 3.71 13.58 +batailleur batailleur nom m s 0.01 0.00 0.01 0.00 +batailleurs batailleur adj m p 0.00 1.35 0.00 0.47 +batailleuse batailleur adj f s 0.00 1.35 0.00 0.20 +batailleuses batailleur adj f p 0.00 1.35 0.00 0.07 +bataillon bataillon nom m s 8.13 29.53 6.84 20.07 +bataillonnaire bataillonnaire nom m s 0.00 0.14 0.00 0.07 +bataillonnaires bataillonnaire nom m p 0.00 0.14 0.00 0.07 +bataillons bataillon nom m p 8.13 29.53 1.28 9.46 +bataillèrent batailler ver 0.34 1.76 0.00 0.07 ind:pas:3p; +bataillé batailler ver m s 0.34 1.76 0.06 0.07 par:pas; +bataillés batailler ver m p 0.34 1.76 0.00 0.07 par:pas; +batak batak nom m s 0.05 0.00 0.05 0.00 +batardeau batardeau nom m s 0.02 0.00 0.02 0.00 +batave batave adj s 0.01 0.27 0.01 0.14 +bataves batave adj p 0.01 0.27 0.00 0.14 +bateau_citerne bateau_citerne nom m s 0.03 0.00 0.03 0.00 +bateau_lavoir bateau_lavoir nom m s 0.00 0.20 0.00 0.14 +bateau_mouche bateau_mouche nom m s 0.01 0.74 0.01 0.34 +bateau_pilote bateau_pilote nom m s 0.01 0.00 0.01 0.00 +bateau_pompe bateau_pompe nom m s 0.00 0.07 0.00 0.07 +bateau bateau nom m s 124.82 82.36 106.55 61.22 +bateau_lavoir bateau_lavoir nom m p 0.00 0.20 0.00 0.07 +bateau_mouche bateau_mouche nom m p 0.01 0.74 0.00 0.41 +bateaux bateau nom m p 124.82 82.36 18.27 21.15 +batelets batelet nom m p 0.00 0.20 0.00 0.20 +bateleur bateleur nom m s 0.00 1.08 0.00 0.61 +bateleurs bateleur nom m p 0.00 1.08 0.00 0.47 +batelier batelier nom m s 0.36 1.89 0.25 0.61 +bateliers batelier nom m p 0.36 1.89 0.11 1.28 +batellerie batellerie nom f s 0.00 0.20 0.00 0.20 +bath bath adj 0.29 4.73 0.29 4.73 +bathyale bathyal adj f s 0.01 0.00 0.01 0.00 +bathymètre bathymètre nom m s 0.01 0.00 0.01 0.00 +bathymétrique bathymétrique adj m s 0.01 0.00 0.01 0.00 +bathyscaphe bathyscaphe nom m s 0.05 0.00 0.05 0.00 +bathysphère bathysphère nom f s 0.01 0.00 0.01 0.00 +batifola batifoler ver 1.21 0.88 0.00 0.07 ind:pas:3s; +batifolage batifolage nom m s 0.25 0.14 0.23 0.07 +batifolages batifolage nom m p 0.25 0.14 0.01 0.07 +batifolaient batifoler ver 1.21 0.88 0.01 0.14 ind:imp:3p; +batifolais batifoler ver 1.21 0.88 0.01 0.00 ind:imp:1s; +batifolait batifoler ver 1.21 0.88 0.01 0.14 ind:imp:3s; +batifolant batifoler ver 1.21 0.88 0.17 0.20 par:pre; +batifole batifoler ver 1.21 0.88 0.17 0.07 ind:pre:1s;ind:pre:3s; +batifolent batifoler ver 1.21 0.88 0.03 0.00 ind:pre:3p; +batifoler batifoler ver 1.21 0.88 0.72 0.20 inf; +batifoles batifoler ver 1.21 0.88 0.01 0.00 ind:pre:2s; +batifoleurs batifoleur nom m p 0.00 0.14 0.00 0.14 +batifolez batifoler ver 1.21 0.88 0.02 0.00 imp:pre:2p;ind:pre:2p; +batifolé batifoler ver m s 1.21 0.88 0.05 0.07 par:pas; +batik batik nom m s 0.00 0.14 0.00 0.14 +batiste batiste nom f s 0.00 0.88 0.00 0.88 +batracien batracien nom m s 0.03 0.54 0.03 0.27 +batracienne batracien adj f s 0.01 0.07 0.01 0.07 +batraciens batracien nom m p 0.03 0.54 0.00 0.27 +bats battre ver 200.32 182.36 13.72 2.77 imp:pre:2s;ind:pre:1s;ind:pre:2s; +battîmes battre ver 200.32 182.36 0.00 0.07 ind:pas:1p; +battît battre ver 200.32 182.36 0.00 0.14 sub:imp:3s; +battage battage nom m s 0.18 0.34 0.18 0.27 +battages battage nom m p 0.18 0.34 0.00 0.07 +battaient battre ver 200.32 182.36 2.14 11.15 ind:imp:3p; +battais battre ver 200.32 182.36 1.24 1.62 ind:imp:1s;ind:imp:2s; +battait battre ver 200.32 182.36 6.78 28.38 ind:imp:3s; +battant battre ver 200.32 182.36 2.00 8.31 par:pre; +battante battant nom f s 1.73 11.42 0.42 0.07 +battantes battant adj f p 1.07 12.84 0.01 1.28 +battants battant nom m p 1.73 11.42 0.39 3.99 +batte batte nom f s 6.87 0.41 6.39 0.27 +battement battement nom m s 5.28 19.26 2.59 10.81 +battements battement nom m p 5.28 19.26 2.69 8.45 +battent battre ver 200.32 182.36 8.87 7.91 ind:pre:3p; +batterie batterie nom f s 14.24 15.54 10.61 9.73 +batteries batterie nom f p 14.24 15.54 3.63 5.81 +battes battre ver 200.32 182.36 0.65 0.14 sub:pre:2s; +batteur batteur nom m s 4.50 3.99 3.34 1.82 +batteurs batteur nom m p 4.50 3.99 0.89 0.61 +batteuse batteur nom f s 4.50 3.99 0.27 1.42 +batteuses batteuse nom f p 0.11 0.00 0.11 0.00 +battez battre ver 200.32 182.36 7.69 0.68 imp:pre:2p;ind:pre:2p; +battiez battre ver 200.32 182.36 0.52 0.27 ind:imp:2p; +battions battre ver 200.32 182.36 0.22 0.54 ind:imp:1p; +battirent battre ver 200.32 182.36 0.27 1.22 ind:pas:3p; +battis battre ver 200.32 182.36 0.14 0.41 ind:pas:1s; +battit battre ver 200.32 182.36 0.36 6.42 ind:pas:3s; +battle_dress battle_dress nom m 0.00 0.14 0.00 0.14 +battoir battoir nom m s 0.06 2.43 0.02 1.35 +battoires battoire nom m p 0.00 0.07 0.00 0.07 +battoirs battoir nom m p 0.06 2.43 0.03 1.08 +battons battre ver 200.32 182.36 2.26 1.55 imp:pre:1p;ind:pre:1p; +battra battre ver 200.32 182.36 2.74 0.81 ind:fut:3s; +battrai battre ver 200.32 182.36 2.54 0.47 ind:fut:1s; +battraient battre ver 200.32 182.36 0.17 0.68 cnd:pre:3p; +battrais battre ver 200.32 182.36 1.15 0.07 cnd:pre:1s;cnd:pre:2s; +battrait battre ver 200.32 182.36 1.02 1.55 cnd:pre:3s; +battras battre ver 200.32 182.36 0.52 0.27 ind:fut:2s; +battre battre ver 200.32 182.36 75.89 57.36 inf;; +battrez battre ver 200.32 182.36 0.41 0.14 ind:fut:2p; +battriez battre ver 200.32 182.36 0.12 0.00 cnd:pre:2p; +battrions battre ver 200.32 182.36 0.01 0.00 cnd:pre:1p; +battrons battre ver 200.32 182.36 1.07 0.47 ind:fut:1p; +battront battre ver 200.32 182.36 0.84 0.00 ind:fut:3p; +battu battre ver m s 200.32 182.36 24.13 17.36 par:pas; +battue battre ver f s 200.32 182.36 5.87 4.93 par:pas; +battues battre ver f p 200.32 182.36 0.41 0.95 par:pas; +battus battre ver m p 200.32 182.36 6.89 6.49 par:pas; +batée batée nom f s 0.01 0.07 0.01 0.07 +bau bau nom m s 0.22 0.07 0.22 0.07 +baud baud nom m s 0.01 0.00 0.01 0.00 +baudelairien baudelairien adj m s 0.00 0.27 0.00 0.07 +baudelairiennes baudelairien adj f p 0.00 0.27 0.00 0.07 +baudelairiens baudelairien adj m p 0.00 0.27 0.00 0.14 +baudet baudet nom m s 0.13 0.54 0.11 0.41 +baudets baudet nom m p 0.13 0.54 0.03 0.14 +baudrier baudrier nom m s 0.18 3.45 0.17 2.50 +baudriers baudrier nom m p 0.18 3.45 0.01 0.95 +baudroie baudroie nom f s 0.01 0.07 0.01 0.00 +baudroies baudroie nom f p 0.01 0.07 0.00 0.07 +baudruche baudruche nom f s 0.32 0.88 0.28 0.81 +baudruches baudruche nom f p 0.32 0.88 0.04 0.07 +bauge bauge nom f s 0.14 1.35 0.14 1.22 +bauges bauge nom f p 0.14 1.35 0.00 0.14 +baugé bauger ver m s 0.00 0.07 0.00 0.07 par:pas; +baume baume nom s 1.94 3.65 1.79 2.91 +baumes baume nom p 1.94 3.65 0.16 0.74 +baumier baumier nom m s 0.01 0.07 0.01 0.00 +baumiers baumier nom m p 0.01 0.07 0.00 0.07 +baux bail,bau nom m p 0.19 0.34 0.19 0.34 +bauxite bauxite nom f s 0.18 0.41 0.18 0.41 +bava baver ver 9.79 12.36 0.02 0.20 ind:pas:3s; +bavaient baver ver 9.79 12.36 0.02 0.41 ind:imp:3p; +bavais baver ver 9.79 12.36 0.06 0.54 ind:imp:1s; +bavait baver ver 9.79 12.36 0.39 1.62 ind:imp:3s; +bavant baver ver 9.79 12.36 0.14 1.35 par:pre; +bavard bavard adj m s 4.85 12.30 2.39 4.86 +bavarda bavarder ver 16.43 24.19 0.00 0.47 ind:pas:3s; +bavardage bavardage nom m s 3.57 9.73 1.48 5.34 +bavardages bavardage nom m p 3.57 9.73 2.08 4.39 +bavardai bavarder ver 16.43 24.19 0.01 0.07 ind:pas:1s; +bavardaient bavarder ver 16.43 24.19 0.04 2.23 ind:imp:3p; +bavardais bavarder ver 16.43 24.19 0.07 0.20 ind:imp:1s; +bavardait bavarder ver 16.43 24.19 0.89 2.16 ind:imp:3s; +bavardant bavarder ver 16.43 24.19 0.18 2.64 par:pre; +bavarde bavarder ver 16.43 24.19 1.55 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bavardent bavarder ver 16.43 24.19 0.48 0.88 ind:pre:3p; +bavarder bavarder ver 16.43 24.19 8.66 8.99 inf; +bavardera bavarder ver 16.43 24.19 0.48 0.14 ind:fut:3s; +bavarderai bavarder ver 16.43 24.19 0.00 0.14 ind:fut:1s; +bavarderait bavarder ver 16.43 24.19 0.10 0.07 cnd:pre:3s; +bavarderas bavarder ver 16.43 24.19 0.01 0.00 ind:fut:2s; +bavarderons bavarder ver 16.43 24.19 0.32 0.07 ind:fut:1p; +bavardes bavard adj f p 4.85 12.30 0.61 0.61 +bavardez bavarder ver 16.43 24.19 0.63 0.07 imp:pre:2p;ind:pre:2p; +bavardiez bavarder ver 16.43 24.19 0.01 0.07 ind:imp:2p; +bavardions bavarder ver 16.43 24.19 0.06 0.74 ind:imp:1p; +bavardons bavarder ver 16.43 24.19 0.98 0.47 imp:pre:1p;ind:pre:1p; +bavards bavard adj m p 4.85 12.30 0.69 2.09 +bavardèrent bavarder ver 16.43 24.19 0.00 0.47 ind:pas:3p; +bavardé bavarder ver m s 16.43 24.19 1.90 2.16 par:pas; +bavarois bavarois adj m 0.52 1.82 0.29 0.95 +bavaroise bavarois adj f s 0.52 1.82 0.20 0.27 +bavaroises bavarois adj f p 0.52 1.82 0.02 0.61 +bavassaient bavasser ver 0.91 0.95 0.00 0.07 ind:imp:3p; +bavassait bavasser ver 0.91 0.95 0.16 0.14 ind:imp:3s; +bavassant bavasser ver 0.91 0.95 0.01 0.07 par:pre; +bavasse bavasser ver 0.91 0.95 0.18 0.07 ind:pre:1s;ind:pre:3s; +bavassent bavasser ver 0.91 0.95 0.01 0.14 ind:pre:3p; +bavasser bavasser ver 0.91 0.95 0.48 0.41 inf; +bavasses bavasser ver 0.91 0.95 0.03 0.07 ind:pre:2s; +bavasseur bavasseur adj m s 0.01 0.00 0.01 0.00 +bavassiez bavasser ver 0.91 0.95 0.01 0.00 ind:imp:2p; +bavassé bavasser ver m s 0.91 0.95 0.03 0.00 par:pas; +bave bave nom f s 2.10 3.99 2.08 3.78 +bavent baver ver 9.79 12.36 0.74 0.61 ind:pre:3p; +baver baver ver 9.79 12.36 3.04 4.12 inf; +baverais baver ver 9.79 12.36 0.00 0.07 cnd:pre:1s; +baveras baver ver 9.79 12.36 0.17 0.00 ind:fut:2s; +baverez baver ver 9.79 12.36 0.02 0.07 ind:fut:2p; +baveront baver ver 9.79 12.36 0.01 0.07 ind:fut:3p; +baves baver ver 9.79 12.36 0.97 0.00 ind:pre:2s; +bavette bavette nom f s 0.35 0.95 0.19 0.88 +bavettes bavette nom f p 0.35 0.95 0.16 0.07 +baveur baveur adj m s 0.05 0.20 0.05 0.14 +baveurs baveur adj m p 0.05 0.20 0.00 0.07 +baveuse baveux adj f s 1.31 4.05 0.17 0.95 +baveuses baveux adj f p 1.31 4.05 0.11 0.34 +baveux baveux adj m 1.31 4.05 1.02 2.77 +bavez baver ver 9.79 12.36 0.08 0.14 imp:pre:2p;ind:pre:2p; +bavocher bavocher ver 0.00 0.07 0.00 0.07 inf; +bavoir bavoir nom m s 0.26 0.61 0.22 0.41 +bavoirs bavoir nom m p 0.26 0.61 0.04 0.20 +bavons baver ver 9.79 12.36 0.16 0.00 imp:pre:1p;ind:pre:1p; +bavotait bavoter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +bavotant bavoter ver 0.00 0.14 0.00 0.07 par:pre; +bavé baver ver m s 9.79 12.36 2.52 1.42 par:pas; +bavure bavure nom f s 1.65 4.12 1.28 1.69 +bavures bavure nom f p 1.65 4.12 0.38 2.43 +bayadère bayadère nom f s 0.21 0.27 0.10 0.14 +bayadères bayadère nom f p 0.21 0.27 0.11 0.14 +bayaient bayer ver 0.05 0.54 0.00 0.07 ind:imp:3p; +bayant bayer ver 0.05 0.54 0.00 0.07 par:pre; +bayard bayard nom m s 0.00 0.07 0.00 0.07 +baye bayer ver 0.05 0.54 0.00 0.07 ind:pre:3s; +bayer bayer ver 0.05 0.54 0.01 0.20 inf; +bayons bayer ver 0.05 0.54 0.01 0.00 imp:pre:1p; +bayou bayou nom m s 0.81 0.14 0.76 0.00 +bayous bayou nom m p 0.81 0.14 0.05 0.14 +bayé bayer ver m s 0.05 0.54 0.00 0.14 par:pas; +bazar bazar nom m s 8.36 7.43 8.18 6.42 +bazard bazard nom m s 0.20 0.00 0.20 0.00 +bazardait bazarder ver 1.07 1.42 0.00 0.14 ind:imp:3s; +bazardant bazarder ver 1.07 1.42 0.00 0.07 par:pre; +bazarde bazarder ver 1.07 1.42 0.40 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bazarder bazarder ver 1.07 1.42 0.30 0.61 inf; +bazarderez bazarder ver 1.07 1.42 0.00 0.07 ind:fut:2p; +bazardes bazarder ver 1.07 1.42 0.17 0.00 ind:pre:2s; +bazardeur bazardeur nom m s 0.00 0.07 0.00 0.07 +bazardé bazarder ver m s 1.07 1.42 0.14 0.20 par:pas; +bazardée bazarder ver f s 1.07 1.42 0.05 0.00 par:pas; +bazardées bazarder ver f p 1.07 1.42 0.01 0.07 par:pas; +bazars bazar nom m p 8.36 7.43 0.17 1.01 +bazooka bazooka nom m s 1.57 0.88 1.21 0.81 +bazookas bazooka nom m p 1.57 0.88 0.36 0.07 +bcbg bcbg adj 0.14 0.14 0.14 0.14 +be_bop be_bop nom m 0.31 0.34 0.31 0.34 +beagle beagle nom m s 0.15 0.00 0.08 0.00 +beagles beagle nom m p 0.15 0.00 0.07 0.00 +beat_generation beat_generation nom f s 0.00 0.14 0.00 0.14 +beat beat adj s 1.34 0.20 1.34 0.20 +beatnik beatnik nom s 0.45 0.07 0.33 0.00 +beatniks beatnik nom p 0.45 0.07 0.12 0.07 +beau_fils beau_fils nom m 1.29 1.01 1.27 1.01 +beau_frère beau_frère nom m s 13.14 15.68 9.13 8.65 +beau_papa beau_papa nom m s 0.23 0.14 0.23 0.14 +beau_parent beau_parent nom m s 0.01 0.00 0.01 0.00 +beau_père beau_père nom m s 16.54 14.05 9.29 7.09 +beau beau adj m s 671.86 620.07 281.23 270.07 +beauceron beauceron adj m s 0.00 1.35 0.00 0.47 +beauceronne beauceron adj f s 0.00 1.35 0.00 0.47 +beauceronnes beauceron adj f p 0.00 1.35 0.00 0.07 +beaucerons beauceron adj m p 0.00 1.35 0.00 0.34 +beaucoup beaucoup adv_sup 626.00 461.42 626.00 461.42 +beauf beauf nom m s 1.07 0.41 0.96 0.34 +beaufs beauf nom m p 1.07 0.41 0.11 0.07 +beaujolais beaujolais nom m 0.04 1.49 0.04 1.49 +beaujolpif beaujolpif nom m s 0.00 0.41 0.00 0.41 +beaupré beaupré nom m s 0.01 0.07 0.01 0.07 +beauté beauté nom f s 72.56 92.64 68.57 87.64 +beautés beauté nom f p 72.56 92.64 3.99 5.00 +beauvais beauvais nom s 0.00 0.07 0.00 0.07 +beaux_arts beaux_arts nom m p 2.19 3.38 2.19 3.38 +beaux_enfants beaux_enfants nom m p 0.06 0.00 0.06 0.00 +beau_fils beau_fils nom m p 1.29 1.01 0.03 0.00 +beau_frère beau_frère nom m p 13.14 15.68 0.62 1.01 +beaux_parents beaux_parents nom m p 1.52 1.22 1.52 1.22 +beaux beau adj m p 671.86 620.07 57.20 63.78 +bec_de_cane bec_de_cane nom m s 0.01 1.42 0.01 1.42 +bec_de_lièvre bec_de_lièvre nom m s 0.10 0.61 0.10 0.61 +bec bec nom m s 7.39 26.96 6.74 23.31 +because because con 2.78 1.01 2.78 1.01 +becfigue becfigue nom m s 0.27 0.07 0.14 0.00 +becfigues becfigue nom m p 0.27 0.07 0.14 0.07 +becquant becquer ver 0.04 0.54 0.00 0.54 par:pre; +becquer becquer ver 0.04 0.54 0.01 0.00 inf; +becquet becquet nom m s 0.02 0.07 0.02 0.00 +becquetaient becqueter ver 0.10 1.89 0.00 0.20 ind:imp:3p; +becquetait becqueter ver 0.10 1.89 0.00 0.14 ind:imp:3s; +becquetance becquetance nom f s 0.00 0.07 0.00 0.07 +becquetant becqueter ver 0.10 1.89 0.00 0.07 par:pre; +becqueter becqueter ver 0.10 1.89 0.10 1.08 inf; +becquets becquet nom m p 0.02 0.07 0.00 0.07 +becquette becqueter ver 0.10 1.89 0.00 0.07 imp:pre:2s; +becqueté becqueter ver m s 0.10 1.89 0.00 0.20 par:pas; +becquetés becqueter ver m p 0.10 1.89 0.00 0.14 par:pas; +becqué becquer ver m s 0.04 0.54 0.03 0.00 par:pas; +becquée becquée nom f s 0.02 0.41 0.02 0.41 +becs bec nom m p 7.39 26.96 0.66 3.65 +becta becter ver 0.17 4.53 0.00 0.07 ind:pas:3s; +bectais becter ver 0.17 4.53 0.00 0.14 ind:imp:1s; +bectait becter ver 0.17 4.53 0.00 0.34 ind:imp:3s; +bectance bectance nom f s 0.10 0.95 0.10 0.95 +bectant becter ver 0.17 4.53 0.00 0.14 par:pre; +becte becter ver 0.17 4.53 0.14 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bectent becter ver 0.17 4.53 0.00 0.14 ind:pre:3p; +becter becter ver 0.17 4.53 0.02 2.09 inf; +becterais becter ver 0.17 4.53 0.00 0.07 cnd:pre:1s; +becteras becter ver 0.17 4.53 0.00 0.07 ind:fut:2s; +becté becter ver m s 0.17 4.53 0.00 1.01 par:pas; +bectées becter ver f p 0.17 4.53 0.01 0.07 par:pas; +bectés becter ver m p 0.17 4.53 0.00 0.07 par:pas; +bedaine bedaine nom f s 0.89 1.62 0.89 1.42 +bedaines bedaine nom f p 0.89 1.62 0.00 0.20 +bedeau bedeau nom m s 0.25 1.76 0.25 1.69 +bedeaux bedeau nom m p 0.25 1.76 0.00 0.07 +bedon bedon nom m s 0.04 0.27 0.04 0.20 +bedonnant bedonnant adj m s 0.33 1.49 0.14 1.01 +bedonnante bedonnant adj f s 0.33 1.49 0.01 0.07 +bedonnantes bedonnant adj f p 0.33 1.49 0.14 0.20 +bedonnants bedonnant adj m p 0.33 1.49 0.05 0.20 +bedonne bedonner ver 0.03 0.34 0.00 0.07 ind:pre:3s; +bedons bedon nom m p 0.04 0.27 0.00 0.07 +beefsteak beefsteak nom m s 0.21 0.34 0.20 0.20 +beefsteaks beefsteak nom m p 0.21 0.34 0.01 0.14 +beeper beeper nom m s 0.34 0.00 0.34 0.00 +beethovénien beethovénien adj m s 0.00 0.07 0.00 0.07 +beffroi beffroi nom m s 0.47 0.74 0.47 0.74 +behavioriste behavioriste adj s 0.01 0.00 0.01 0.00 +behavioriste behavioriste nom s 0.01 0.00 0.01 0.00 +beige beige adj m s 1.03 8.11 1.02 6.82 +beigeasses beigeasse adj p 0.00 0.07 0.00 0.07 +beiges beige nom p 0.27 1.49 0.03 0.34 +beigne beigne nom f s 0.58 2.16 0.48 1.42 +beignes beigne nom f p 0.58 2.16 0.10 0.74 +beignet beignet nom m s 8.69 2.77 2.52 0.61 +beignets beignet nom m p 8.69 2.77 6.17 2.16 +bel_canto bel_canto nom m 0.26 0.41 0.26 0.41 +bel bel adj m s 31.35 37.09 31.35 37.09 +belette belette nom f s 2.01 0.88 1.74 0.68 +belettes belette nom f p 2.01 0.88 0.27 0.20 +belge belge adj s 3.03 8.99 2.83 6.55 +belges belge nom p 2.00 5.07 0.68 2.70 +belgicains belgicain nom m p 0.00 0.07 0.00 0.07 +belgique belgique nom f s 0.02 0.27 0.02 0.27 +belladone belladone nom f s 0.15 0.47 0.15 0.41 +belladones belladone nom f p 0.15 0.47 0.00 0.07 +belle_doche belle_doche nom f s 0.05 0.07 0.05 0.07 +belle_famille belle_famille nom f s 0.71 1.22 0.71 1.15 +belle_fille belle_fille nom f s 3.32 2.57 3.29 2.50 +belle_maman belle_maman nom f s 0.85 0.34 0.85 0.34 +beau_père beau_père nom f s 16.54 14.05 7.17 6.82 +belle_à_voir belle_à_voir nom f s 0.00 0.27 0.00 0.27 +beau_frère beau_frère nom f s 13.14 15.68 3.36 5.47 +belle_lurette belle_lurette nom f s 0.75 2.64 0.75 2.64 +belle beau adj f s 671.86 620.07 284.08 223.65 +bellement bellement adv 0.14 0.54 0.14 0.54 +belle_de_jour belle_de_jour nom f p 0.00 0.07 0.00 0.07 +belle_de_nuit belle_de_nuit nom f p 0.00 0.34 0.00 0.34 +belle_famille belle_famille nom f p 0.71 1.22 0.00 0.07 +belle_fille belle_fille nom f p 3.32 2.57 0.04 0.07 +belle_lettre belle_lettre nom f p 0.00 0.41 0.00 0.41 +beau_père beau_père nom f p 16.54 14.05 0.08 0.14 +beau_frère beau_frère nom f p 13.14 15.68 0.04 0.54 +belles beau adj f p 671.86 620.07 49.35 62.57 +bellevillois bellevillois adj m 0.00 0.20 0.00 0.07 +bellevilloise bellevillois adj f s 0.00 0.20 0.00 0.14 +belliciste belliciste nom s 0.07 0.07 0.05 0.00 +bellicistes belliciste adj p 0.21 0.14 0.17 0.07 +belligérance belligérance nom f s 0.01 0.34 0.01 0.34 +belligérant belligérant adj m s 0.11 1.15 0.01 0.14 +belligérante belligérant adj f s 0.11 1.15 0.00 0.54 +belligérantes belligérant adj f p 0.11 1.15 0.10 0.14 +belligérants belligérant nom m p 0.07 0.88 0.05 0.81 +belliqueuse belliqueux adj f s 0.51 2.30 0.06 0.81 +belliqueusement belliqueusement adv 0.00 0.07 0.00 0.07 +belliqueuses belliqueux adj f p 0.51 2.30 0.04 0.20 +belliqueux belliqueux adj m 0.51 2.30 0.41 1.28 +bellissime bellissime adj f s 0.01 0.07 0.01 0.07 +bellot bellot adj m s 0.01 0.00 0.01 0.00 +bellâtre bellâtre nom m s 0.32 1.01 0.32 1.01 +belluaire belluaire nom m s 0.00 0.14 0.00 0.14 +belon belon nom f s 0.00 1.01 0.00 0.54 +belons belon nom f p 0.00 1.01 0.00 0.47 +belote belote nom f s 0.26 4.19 0.26 3.99 +beloter beloter ver 0.00 0.14 0.00 0.14 inf; +belotes belote nom f p 0.26 4.19 0.00 0.20 +beloteurs beloteur nom m p 0.00 0.20 0.00 0.20 +belotte belotter ver 0.00 0.07 0.00 0.07 ind:pre:1s; +beluga beluga nom m s 0.04 0.07 0.04 0.07 +belvédère belvédère nom m s 0.18 0.74 0.17 0.54 +belvédères belvédère nom m p 0.18 0.74 0.01 0.20 +ben ben nom_sup m 61.43 24.19 61.43 24.19 +benedictus benedictus nom m 0.11 0.07 0.11 0.07 +bengalais bengalais nom m 0.27 0.00 0.27 0.00 +bengali bengali nom m s 0.26 0.61 0.16 0.41 +bengalis bengali nom m p 0.26 0.61 0.10 0.20 +benjamin benjamin nom m s 0.81 0.81 0.33 0.47 +benjamine benjamin nom f s 0.81 0.81 0.44 0.27 +benjamins benjamin nom m p 0.81 0.81 0.04 0.07 +benjoin benjoin nom m s 0.00 0.88 0.00 0.88 +benne benne nom f s 2.38 3.11 2.12 1.76 +bennes benne nom f p 2.38 3.11 0.27 1.35 +benoît benoît adj m s 0.90 0.20 0.90 0.07 +benoîte benoît adj f s 0.90 0.20 0.00 0.14 +benoîtement benoîtement adv 0.00 0.81 0.00 0.81 +benthique benthique adj m s 0.01 0.00 0.01 0.00 +benêt benêt nom m s 1.30 1.49 1.20 1.08 +benêts benêt nom m p 1.30 1.49 0.10 0.41 +benzidine benzidine nom f s 0.01 0.00 0.01 0.00 +benzine benzine nom f s 0.01 0.41 0.01 0.41 +benzoate benzoate nom m s 0.04 0.00 0.04 0.00 +benzodiazépine benzodiazépine nom f s 0.02 0.00 0.02 0.00 +benzonaphtol benzonaphtol nom m s 0.10 0.00 0.10 0.00 +benzène benzène nom m s 0.12 0.00 0.12 0.00 +benzédrine benzédrine nom f s 0.07 0.27 0.07 0.27 +benzylique benzylique adj m s 0.01 0.00 0.01 0.00 +ber ber nom m s 0.16 0.07 0.16 0.07 +berbère berbère adj s 0.03 1.22 0.01 0.81 +berbères berbère adj p 0.03 1.22 0.02 0.41 +bercail bercail nom m s 2.33 1.96 2.33 1.96 +berce bercer ver 4.46 18.04 0.94 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +berceau berceau nom m s 7.05 13.31 6.72 12.43 +berceaux berceau nom m p 7.05 13.31 0.33 0.88 +bercelonnette bercelonnette nom f s 0.00 0.07 0.00 0.07 +bercement bercement nom m s 0.00 0.74 0.00 0.68 +bercements bercement nom m p 0.00 0.74 0.00 0.07 +bercent bercer ver 4.46 18.04 0.35 0.54 ind:pre:3p; +bercer bercer ver 4.46 18.04 1.17 3.92 inf; +bercera bercer ver 4.46 18.04 0.03 0.00 ind:fut:3s; +bercerai bercer ver 4.46 18.04 0.05 0.00 ind:fut:1s; +bercerait bercer ver 4.46 18.04 0.01 0.07 cnd:pre:3s; +bercerez bercer ver 4.46 18.04 0.10 0.07 ind:fut:2p; +berces bercer ver 4.46 18.04 0.16 0.00 ind:pre:2s; +berceur berceur adj m s 0.13 1.01 0.01 0.41 +berceurs berceur adj m p 0.13 1.01 0.00 0.07 +berceuse berceur nom f s 1.58 1.55 1.58 1.22 +berceuses berceuse nom f p 0.25 0.00 0.25 0.00 +bercez bercer ver 4.46 18.04 0.30 0.00 imp:pre:2p;ind:pre:2p; +bercèrent bercer ver 4.46 18.04 0.00 0.07 ind:pas:3p; +bercé bercer ver m s 4.46 18.04 0.85 3.78 par:pas; +bercée bercer ver f s 4.46 18.04 0.08 1.89 par:pas; +bercés bercer ver m p 4.46 18.04 0.19 0.88 par:pas; +berdouillette berdouillette nom f s 0.00 0.20 0.00 0.20 +berg berg nom m s 0.04 0.00 0.04 0.00 +bergamasques bergamasque nom f p 0.00 0.07 0.00 0.07 +bergamote bergamote nom f s 0.16 0.07 0.16 0.07 +berge berge nom f s 2.77 16.49 1.79 8.72 +berger berger nom m s 11.49 24.80 8.33 11.15 +bergerie bergerie nom f s 0.99 3.45 0.99 2.84 +bergeries bergerie nom f p 0.99 3.45 0.00 0.61 +bergeronnette bergeronnette nom f s 0.01 0.41 0.01 0.14 +bergeronnettes bergeronnette nom f p 0.01 0.41 0.00 0.27 +bergers berger nom m p 11.49 24.80 1.89 4.19 +berges berge nom f p 2.77 16.49 0.98 7.77 +bergère berger nom f s 11.49 24.80 1.27 6.76 +bergères bergère nom f p 0.34 0.00 0.34 0.00 +berk berk ono 1.35 0.95 1.35 0.95 +berle berle nom f s 0.13 0.00 0.13 0.00 +berlin berlin nom s 0.00 0.07 0.00 0.07 +berline berline nom f s 1.03 2.30 0.62 2.09 +berlines berline nom f p 1.03 2.30 0.42 0.20 +berlingot berlingot nom m s 0.15 1.76 0.06 0.41 +berlingots berlingot nom m p 0.15 1.76 0.09 1.35 +berlingue berlingue nom m 0.00 0.34 0.00 0.34 +berlinois berlinois adj m 0.82 1.69 0.32 1.08 +berlinoise berlinois adj f s 0.82 1.69 0.50 0.54 +berlinoises berlinois nom f p 0.18 0.47 0.00 0.14 +berloque berloque nom f s 0.00 0.14 0.00 0.14 +berlue berlue nom f s 0.30 1.35 0.30 1.08 +berlues berlue nom f p 0.30 1.35 0.00 0.27 +berlurais berlurer ver 0.00 1.01 0.00 0.20 ind:imp:1s; +berlurait berlurer ver 0.00 1.01 0.00 0.14 ind:imp:3s; +berlure berlure nom f s 0.00 1.08 0.00 0.68 +berlurent berlurer ver 0.00 1.01 0.00 0.14 ind:pre:3p; +berlurer berlurer ver 0.00 1.01 0.00 0.34 inf; +berlures berlure nom f p 0.00 1.08 0.00 0.41 +berluré berlurer ver m s 0.00 1.01 0.00 0.14 par:pas; +berlurée berlurer ver f s 0.00 1.01 0.00 0.07 par:pas; +berme berme nom f s 0.04 0.27 0.03 0.14 +bermes berme nom f p 0.04 0.27 0.01 0.14 +bermuda bermuda nom m s 0.12 0.61 0.08 0.41 +bermudas bermuda nom m p 0.12 0.61 0.04 0.20 +bernache bernache nom f s 0.08 0.41 0.03 0.14 +bernaches bernache nom f p 0.08 0.41 0.05 0.27 +bernait berner ver 3.56 2.64 0.01 0.14 ind:imp:3s; +bernant berner ver 3.56 2.64 0.01 0.00 par:pre; +bernard_l_ermite bernard_l_ermite nom m 0.00 0.34 0.00 0.34 +bernard_l_hermite bernard_l_hermite nom m 0.01 0.14 0.01 0.14 +bernardines bernardin nom f p 0.00 0.54 0.00 0.54 +berne berner ver 3.56 2.64 0.12 0.20 ind:pre:1s;ind:pre:3s; +berner berner ver 3.56 2.64 2.04 0.54 inf; +berneras berner ver 3.56 2.64 0.02 0.00 ind:fut:2s; +bernez berner ver 3.56 2.64 0.01 0.00 ind:pre:2p; +bernicle bernicle nom f s 0.07 0.34 0.07 0.00 +bernicles bernicle nom f p 0.07 0.34 0.01 0.34 +bernique bernique ono 0.00 0.47 0.00 0.47 +berniques bernique nom f p 0.01 0.61 0.00 0.20 +bernois bernois adj m p 0.00 0.41 0.00 0.07 +bernoise bernois nom f s 0.01 0.14 0.01 0.07 +bernoises bernois adj f p 0.00 0.41 0.00 0.34 +berné berner ver m s 3.56 2.64 0.53 1.15 par:pas; +bernée berner ver f s 3.56 2.64 0.28 0.27 par:pas; +bernées berner ver f p 3.56 2.64 0.00 0.07 par:pas; +bernés berner ver m p 3.56 2.64 0.53 0.27 par:pas; +berrichon berrichon adj m s 0.27 0.88 0.00 0.61 +berrichonne berrichon adj f s 0.27 0.88 0.27 0.27 +bersaglier bersaglier nom m s 0.23 0.07 0.10 0.00 +bersagliers bersaglier nom m p 0.23 0.07 0.14 0.07 +berça bercer ver 4.46 18.04 0.01 0.61 ind:pas:3s; +bertha bertha nom f s 0.00 0.20 0.00 0.14 +berçaient bercer ver 4.46 18.04 0.01 0.61 ind:imp:3p; +berçais bercer ver 4.46 18.04 0.01 0.47 ind:imp:1s;ind:imp:2s; +berçait bercer ver 4.46 18.04 0.06 2.16 ind:imp:3s; +berçant bercer ver 4.46 18.04 0.14 1.01 par:pre; +berthas bertha nom f p 0.00 0.20 0.00 0.07 +berthe berthe nom f s 0.00 0.61 0.00 0.61 +berzingue berzingue nom f s 0.28 1.49 0.28 1.49 +besace besace nom f s 0.13 2.70 0.13 2.43 +besaces besace nom f p 0.13 2.70 0.00 0.27 +besaiguë besaiguë nom f s 0.00 0.07 0.00 0.07 +besant besant nom m s 0.04 0.07 0.01 0.00 +besants besant nom m p 0.04 0.07 0.03 0.07 +besef besef adv 0.00 0.07 0.00 0.07 +besicles besicles nom f p 0.01 0.27 0.01 0.27 +besogna besogner ver 0.60 2.30 0.00 0.34 ind:pas:3s; +besognaient besogner ver 0.60 2.30 0.00 0.14 ind:imp:3p; +besognais besogner ver 0.60 2.30 0.11 0.00 ind:imp:1s;ind:imp:2s; +besognait besogner ver 0.60 2.30 0.14 0.68 ind:imp:3s; +besognant besogner ver 0.60 2.30 0.01 0.41 par:pre; +besogne besogne nom f s 2.71 15.61 2.54 10.74 +besognent besogner ver 0.60 2.30 0.01 0.07 ind:pre:3p; +besogner besogner ver 0.60 2.30 0.20 0.20 inf; +besogneras besogner ver 0.60 2.30 0.00 0.07 ind:fut:2s; +besognes besogne nom f p 2.71 15.61 0.17 4.86 +besogneuse besogneux adj f s 0.02 1.82 0.02 0.34 +besogneuses besogneux adj f p 0.02 1.82 0.00 0.20 +besogneux besogneux nom m 0.12 0.47 0.12 0.47 +besognèrent besogner ver 0.60 2.30 0.00 0.20 ind:pas:3p; +besogné besogner ver m s 0.60 2.30 0.01 0.00 par:pas; +besoin besoin nom m s 771.24 266.62 758.04 251.76 +besoins besoin nom m p 771.24 266.62 13.20 14.86 +besson besson nom m s 0.01 0.14 0.01 0.00 +bessons besson nom m p 0.01 0.14 0.00 0.14 +best_seller best_seller nom m s 1.09 0.81 0.82 0.54 +best_seller best_seller nom m p 1.09 0.81 0.27 0.27 +best_of best_of nom m s 0.17 0.00 0.17 0.00 +best best nom m s 0.52 0.34 0.52 0.34 +bestiaire bestiaire nom m s 0.00 1.28 0.00 1.22 +bestiaires bestiaire nom m p 0.00 1.28 0.00 0.07 +bestial bestial adj m s 1.54 3.04 0.69 1.42 +bestiale bestial adj f s 1.54 3.04 0.63 0.68 +bestialement bestialement adv 0.02 0.00 0.02 0.00 +bestiales bestial adj f p 1.54 3.04 0.06 0.47 +bestialité bestialité nom f s 0.42 1.49 0.42 1.42 +bestialités bestialité nom f p 0.42 1.49 0.00 0.07 +bestiasse bestiasse nom f s 0.00 0.14 0.00 0.14 +bestiau bestiau nom m s 2.54 6.35 1.26 0.81 +bestiaux bestiau nom m p 2.54 6.35 1.28 5.54 +bestiole bestiole nom f s 5.07 6.76 2.50 3.04 +bestioles bestiole nom f p 5.07 6.76 2.57 3.72 +bette bette nom f s 1.60 0.41 1.55 0.20 +betterave betterave nom f s 1.47 4.12 0.77 1.35 +betteraves betterave nom f p 1.47 4.12 0.69 2.77 +betteravier betteravier nom m s 0.00 0.07 0.00 0.07 +bettes bette nom f p 1.60 0.41 0.05 0.20 +betting betting nom m 0.03 0.00 0.03 0.00 +beu beu ono 0.73 0.95 0.73 0.95 +beuark beuark ono 0.01 0.07 0.01 0.07 +beugla beugler ver 0.75 5.74 0.00 1.08 ind:pas:3s; +beuglaient beugler ver 0.75 5.74 0.01 0.14 ind:imp:3p; +beuglais beugler ver 0.75 5.74 0.02 0.20 ind:imp:1s;ind:imp:2s; +beuglait beugler ver 0.75 5.74 0.11 0.95 ind:imp:3s; +beuglant beugler ver 0.75 5.74 0.04 0.88 par:pre; +beuglante beuglante nom f s 0.01 0.00 0.01 0.00 +beuglantes beuglant nom f p 0.03 0.88 0.00 0.14 +beuglants beuglant nom m p 0.03 0.88 0.00 0.34 +beugle beugler ver 0.75 5.74 0.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +beuglement beuglement nom m s 0.19 1.15 0.00 0.27 +beuglements beuglement nom m p 0.19 1.15 0.19 0.88 +beuglent beugler ver 0.75 5.74 0.02 0.27 ind:pre:3p; +beugler beugler ver 0.75 5.74 0.17 0.88 inf; +beuglions beugler ver 0.75 5.74 0.00 0.07 ind:imp:1p; +beuglé beugler ver m s 0.75 5.74 0.16 0.27 par:pas; +beuglée beugler ver f s 0.75 5.74 0.00 0.07 par:pas; +beuh beuh adv 1.06 0.88 1.06 0.88 +beur beur adj m s 0.14 0.14 0.14 0.14 +beurk beurk ono 4.01 0.54 4.01 0.54 +beurra beurrer ver 0.92 2.97 0.00 0.34 ind:pas:3s; +beurrage beurrage nom m s 0.00 0.07 0.00 0.07 +beurraient beurrer ver 0.92 2.97 0.00 0.07 ind:imp:3p; +beurrais beurrer ver 0.92 2.97 0.11 0.14 ind:imp:1s; +beurrait beurrer ver 0.92 2.97 0.01 0.54 ind:imp:3s; +beurrant beurrer ver 0.92 2.97 0.01 0.14 par:pre; +beurre beurre nom m s 15.14 27.97 15.12 27.50 +beurrer beurrer ver 0.92 2.97 0.32 0.61 inf; +beurres beurre nom m p 15.14 27.97 0.02 0.47 +beurrier beurrier nom m s 0.12 0.07 0.12 0.07 +beurré beurré adj m s 0.84 2.50 0.43 0.74 +beurrée beurré adj f s 0.84 2.50 0.07 0.47 +beurrées beurré adj f p 0.84 2.50 0.11 1.15 +beurrés beurré adj m p 0.84 2.50 0.23 0.14 +beuverie beuverie nom f s 0.79 1.55 0.54 0.47 +beuveries beuverie nom f p 0.79 1.55 0.26 1.08 +bey bey nom m s 2.06 2.91 2.06 2.91 +bezef bezef adv 0.00 0.14 0.00 0.14 +bi bi nom m s 1.27 0.34 1.27 0.34 +biafrais biafrais nom m 0.00 0.14 0.00 0.14 +biais biais nom m 1.60 16.69 1.60 16.69 +biaisai biaiser ver 0.05 0.68 0.00 0.07 ind:pas:1s; +biaise biaiser ver 0.05 0.68 0.00 0.27 ind:pre:1s;ind:pre:3s; +biaisements biaisement nom m p 0.00 0.07 0.00 0.07 +biaiser biaiser ver 0.05 0.68 0.03 0.27 inf; +biaises biais adj f p 0.04 0.61 0.00 0.07 +biaisé biaisé adj m s 0.03 0.00 0.02 0.00 +biaisée biaiser ver f s 0.05 0.68 0.01 0.00 par:pas; +biathlon biathlon nom m s 0.30 0.00 0.30 0.00 +bib bib nom m 0.01 0.00 0.01 0.00 +bibard bibard nom m s 0.00 0.20 0.00 0.20 +bibelot bibelot nom m s 1.52 7.43 0.63 0.81 +bibelots bibelot nom m p 1.52 7.43 0.90 6.62 +bibendum bibendum nom m s 0.09 0.20 0.09 0.20 +biberon biberon nom m s 6.65 5.68 5.25 3.85 +biberonnait biberonner ver 0.04 0.95 0.01 0.20 ind:imp:3s; +biberonne biberonner ver 0.04 0.95 0.01 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +biberonner biberonner ver 0.04 0.95 0.02 0.41 inf; +biberonneurs biberonneur nom m p 0.00 0.07 0.00 0.07 +biberonné biberonner ver m s 0.04 0.95 0.00 0.14 par:pas; +biberons biberon nom m p 6.65 5.68 1.40 1.82 +bibi bibi nom m s 0.56 1.15 0.54 0.54 +bibiche bibiche nom f s 0.05 3.04 0.05 3.04 +bibine bibine nom f s 0.73 3.99 0.71 3.85 +bibines bibine nom f p 0.73 3.99 0.02 0.14 +bibis bibi nom m p 0.56 1.15 0.02 0.61 +bibite bibite nom f s 0.00 0.27 0.00 0.27 +bible bible nom f s 17.79 17.84 17.03 17.16 +bibles bible nom f p 17.79 17.84 0.76 0.68 +bibliobus bibliobus nom m 0.05 0.07 0.05 0.07 +bibliographe bibliographe nom s 0.00 0.07 0.00 0.07 +bibliographie bibliographie nom f s 0.17 0.81 0.17 0.68 +bibliographies bibliographie nom f p 0.17 0.81 0.00 0.14 +bibliographique bibliographique adj s 0.01 0.14 0.01 0.00 +bibliographiques bibliographique adj f p 0.01 0.14 0.00 0.14 +bibliophile bibliophile nom s 0.03 0.68 0.02 0.27 +bibliophiles bibliophile nom p 0.03 0.68 0.01 0.41 +bibliophilie bibliophilie nom f s 0.00 0.14 0.00 0.14 +bibliophilique bibliophilique adj f s 0.00 0.07 0.00 0.07 +bibliothèque bibliothèque nom f s 19.86 40.74 18.22 36.82 +bibliothèques bibliothèque nom f p 19.86 40.74 1.63 3.92 +bibliothécaire bibliothécaire nom s 2.25 2.50 2.09 2.30 +bibliothécaires bibliothécaire nom p 2.25 2.50 0.16 0.20 +biblique biblique adj s 2.77 4.19 2.09 3.04 +bibliquement bibliquement adv 0.13 0.07 0.13 0.07 +bibliques biblique adj p 2.77 4.19 0.69 1.15 +bic bic nom m s 0.44 0.41 0.44 0.41 +bicamérale bicaméral adj f s 0.01 0.00 0.01 0.00 +bicarbonate bicarbonate nom m s 1.20 0.34 1.20 0.27 +bicarbonates bicarbonate nom m p 1.20 0.34 0.00 0.07 +bicause bicause pre 0.00 0.68 0.00 0.68 +bicentenaire bicentenaire nom m s 0.36 0.07 0.36 0.07 +biceps biceps nom m 1.62 3.72 1.62 3.72 +bichais bicher ver 0.27 1.89 0.00 0.20 ind:imp:1s; +bichait bicher ver 0.27 1.89 0.01 0.47 ind:imp:3s; +bichant bicher ver 0.27 1.89 0.00 0.07 par:pre; +biche biche nom f s 5.80 13.92 5.29 7.30 +bicher bicher ver 0.27 1.89 0.02 0.34 inf; +biches biche nom f p 5.80 13.92 0.51 6.62 +bichette bichette nom f s 0.09 0.07 0.09 0.07 +bichez bicher ver 0.27 1.89 0.01 0.00 ind:pre:2p; +bichon bichon nom m s 0.46 0.68 0.46 0.68 +bichonnait bichonner ver 1.40 1.42 0.02 0.20 ind:imp:3s; +bichonnant bichonner ver 1.40 1.42 0.00 0.07 par:pre; +bichonne bichonner ver 1.40 1.42 0.57 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bichonner bichonner ver 1.40 1.42 0.72 0.41 inf; +bichonnerai bichonner ver 1.40 1.42 0.02 0.00 ind:fut:1s; +bichonnez bichonner ver 1.40 1.42 0.03 0.00 imp:pre:2p;ind:pre:2p; +bichonné bichonner ver m s 1.40 1.42 0.03 0.34 par:pas; +bichonnée bichonner ver f s 1.40 1.42 0.02 0.14 par:pas; +biché bicher ver m s 0.27 1.89 0.00 0.07 par:pas; +biclou biclou nom m s 0.01 0.14 0.00 0.07 +biclous biclou nom m p 0.01 0.14 0.01 0.07 +bicolore bicolore adj s 0.30 0.68 0.15 0.47 +bicolores bicolore adj p 0.30 0.68 0.14 0.20 +biconvexes biconvexe adj p 0.02 0.00 0.02 0.00 +bicoque bicoque nom f s 0.94 3.85 0.89 3.11 +bicoques bicoque nom f p 0.94 3.85 0.05 0.74 +bicorne bicorne nom m s 0.16 2.64 0.16 2.16 +bicornes bicorne adj m p 0.01 0.14 0.01 0.00 +bicot bicot nom m s 0.11 4.46 0.11 3.72 +bicots bicot nom m p 0.11 4.46 0.00 0.74 +biculturelle biculturel adj f s 0.01 0.00 0.01 0.00 +bicéphale bicéphale adj s 0.04 0.54 0.04 0.47 +bicéphales bicéphale adj p 0.04 0.54 0.00 0.07 +bicéphalie bicéphalie nom f s 0.00 0.20 0.00 0.20 +bicuspide bicuspide adj s 0.01 0.00 0.01 0.00 +bicycle bicycle nom m s 0.29 0.00 0.28 0.00 +bicycles bicycle nom m p 0.29 0.00 0.01 0.00 +bicyclette bicyclette nom f s 8.06 28.51 7.34 23.51 +bicyclettes bicyclette nom f p 8.06 28.51 0.72 5.00 +bicycliste bicycliste adj s 0.00 0.07 0.00 0.07 +bidasse bidasse nom m s 0.37 0.81 0.21 0.34 +bidasses bidasse nom m p 0.37 0.81 0.16 0.47 +bide bide nom m s 3.73 8.58 3.66 8.38 +bides bide nom m p 3.73 8.58 0.07 0.20 +bidet bidet nom m s 0.69 3.45 0.69 2.97 +bidets bidet nom m p 0.69 3.45 0.00 0.47 +bidimensionnel bidimensionnel adj m s 0.00 0.07 0.00 0.07 +bidoche bidoche nom f s 0.33 3.78 0.33 3.31 +bidoches bidoche nom f p 0.33 3.78 0.00 0.47 +bidon bidon adj 7.78 3.72 7.78 3.72 +bidonnage bidonnage nom m s 0.00 0.14 0.00 0.14 +bidonnaient bidonner ver 1.00 1.89 0.00 0.07 ind:imp:3p; +bidonnais bidonner ver 1.00 1.89 0.03 0.00 ind:imp:1s;ind:imp:2s; +bidonnait bidonner ver 1.00 1.89 0.00 0.14 ind:imp:3s; +bidonnant bidonnant adj m s 0.14 0.14 0.12 0.14 +bidonnante bidonnant adj f s 0.14 0.14 0.03 0.00 +bidonne bidonner ver 1.00 1.89 0.00 0.61 ind:pre:3s; +bidonnent bidonner ver 1.00 1.89 0.01 0.27 ind:pre:3p; +bidonner bidonner ver 1.00 1.89 0.33 0.34 inf; +bidonnera bidonner ver 1.00 1.89 0.01 0.00 ind:fut:3s; +bidonnez bidonner ver 1.00 1.89 0.01 0.00 ind:pre:2p; +bidonné bidonner ver m s 1.00 1.89 0.30 0.00 par:pas; +bidonnée bidonner ver f s 1.00 1.89 0.01 0.00 par:pas; +bidonnées bidonner ver f p 1.00 1.89 0.29 0.00 par:pas; +bidonnés bidonner ver m p 1.00 1.89 0.00 0.07 par:pas; +bidons bidon nom m p 8.02 16.28 2.66 6.62 +bidonville bidonville nom m s 0.72 1.55 0.43 0.81 +bidonvilles bidonville nom m p 0.72 1.55 0.29 0.74 +bidouilla bidouiller ver 0.45 0.14 0.00 0.07 ind:pas:3s; +bidouillage bidouillage nom m s 0.05 0.00 0.05 0.00 +bidouille bidouille nom f s 0.19 0.00 0.19 0.00 +bidouiller bidouiller ver 0.45 0.14 0.12 0.00 inf; +bidouillerai bidouiller ver 0.45 0.14 0.03 0.00 ind:fut:1s; +bidouillé bidouiller ver m s 0.45 0.14 0.13 0.00 par:pas; +bidouillée bidouiller ver f s 0.45 0.14 0.15 0.07 par:pas; +bidouillés bidouiller ver m p 0.45 0.14 0.02 0.00 par:pas; +bidule bidule nom m s 1.10 2.03 0.94 1.22 +bidules bidule nom m p 1.10 2.03 0.17 0.81 +bief bief nom m s 0.10 0.61 0.10 0.54 +biefs bief nom m p 0.10 0.61 0.00 0.07 +bielle bielle nom f s 1.86 1.22 1.70 0.20 +bielles bielle nom f p 1.86 1.22 0.16 1.01 +bien_aimé bien_aimé nom m s 8.50 4.66 4.51 1.89 +bien_aimé bien_aimé nom f s 8.50 4.66 3.76 2.43 +bien_aimé bien_aimé adj f p 8.19 4.39 0.04 0.20 +bien_aimé bien_aimé adj m p 8.19 4.39 0.68 0.54 +bien_disant bien_disant adj m p 0.00 0.07 0.00 0.07 +bien_fonds bien_fonds nom m 0.00 0.07 0.00 0.07 +bien_fondé bien_fondé nom m s 0.31 0.81 0.31 0.81 +bien_manger bien_manger nom m 0.00 0.14 0.00 0.14 +bien_pensant bien_pensant adj m s 0.06 2.16 0.01 1.28 +bien_pensant bien_pensant adj f s 0.06 2.16 0.02 0.47 +bien_pensant bien_pensant adj m p 0.06 2.16 0.03 0.41 +bien_portant bien_portant adj m s 0.03 0.41 0.00 0.14 +bien_portant bien_portant adj m p 0.03 0.41 0.03 0.27 +bien_être bien_être nom m 4.28 8.78 4.28 8.78 +bien bien adv_sup 4213.78 2535.14 4213.78 2535.14 +bienfaisance bienfaisance nom f s 1.69 1.96 1.69 1.96 +bienfaisant bienfaisant adj m s 0.64 4.05 0.29 1.08 +bienfaisante bienfaisant adj f s 0.64 4.05 0.31 2.30 +bienfaisantes bienfaisant adj f p 0.64 4.05 0.00 0.54 +bienfaisants bienfaisant adj m p 0.64 4.05 0.04 0.14 +bienfait bienfait nom m s 2.51 4.26 0.98 1.01 +bienfaiteur bienfaiteur nom m s 3.38 3.45 2.46 1.62 +bienfaiteurs bienfaiteur nom m p 3.38 3.45 0.26 0.81 +bienfaitrice bienfaiteur nom f s 3.38 3.45 0.66 1.01 +bienfaitrices bienfaitrice nom f p 0.01 0.00 0.01 0.00 +bienfaits bienfait nom m p 2.51 4.26 1.53 3.24 +bienheureuse bienheureux nom f s 1.22 2.43 0.30 0.34 +bienheureusement bienheureusement adv 0.00 0.27 0.00 0.27 +bienheureuses bienheureux adj f p 2.25 5.20 0.00 0.14 +bienheureux bienheureux adj m 2.25 5.20 2.09 2.84 +biennale biennale nom f s 0.05 0.14 0.05 0.14 +biens bien nom_sup m p 106.60 70.20 16.99 13.31 +bienséance bienséance nom f s 0.64 2.23 0.57 2.09 +bienséances bienséance nom f p 0.64 2.23 0.06 0.14 +bienséant bienséant adj m s 0.06 1.08 0.04 0.47 +bienséante bienséant adj f s 0.06 1.08 0.03 0.41 +bienséantes bienséant adj f p 0.06 1.08 0.00 0.07 +bienséants bienséant adj m p 0.06 1.08 0.00 0.14 +bientôt bientôt adv 184.96 169.59 184.96 169.59 +bienveillamment bienveillamment adv 0.10 0.00 0.10 0.00 +bienveillance bienveillance nom f s 2.32 7.30 2.32 7.23 +bienveillances bienveillance nom f p 2.32 7.30 0.00 0.07 +bienveillant bienveillant adj m s 1.47 7.50 0.84 2.97 +bienveillante bienveillant adj f s 1.47 7.50 0.30 3.24 +bienveillantes bienveillant adj f p 1.47 7.50 0.06 0.41 +bienveillants bienveillant adj m p 1.47 7.50 0.27 0.88 +bienvenu bienvenu nom m s 14.30 1.82 9.82 1.22 +bienvenue bienvenue nom f s 22.63 5.27 21.81 5.14 +bienvenues bienvenue nom f p 22.63 5.27 0.82 0.14 +bienvenus bienvenu nom m p 14.30 1.82 4.48 0.61 +bif bif nom m s 0.02 0.14 0.02 0.14 +biface biface nom m s 0.00 0.07 0.00 0.07 +bifaces biface adj m p 0.00 0.07 0.00 0.07 +biffa biffer ver 0.11 1.62 0.00 0.41 ind:pas:3s; +biffaient biffer ver 0.11 1.62 0.00 0.07 ind:imp:3p; +biffais biffer ver 0.11 1.62 0.00 0.07 ind:imp:1s; +biffant biffer ver 0.11 1.62 0.01 0.07 par:pre; +biffe biffe nom f s 0.33 0.54 0.33 0.54 +biffer biffer ver 0.11 1.62 0.07 0.47 inf; +biffeton biffeton nom m s 0.29 2.64 0.01 0.88 +biffetons biffeton nom m p 0.29 2.64 0.28 1.76 +biffin biffin nom m s 0.05 1.62 0.03 0.88 +biffins biffin nom m p 0.05 1.62 0.02 0.74 +biffé biffer ver m s 0.11 1.62 0.02 0.07 par:pas; +bifide bifide adj s 0.01 0.61 0.01 0.47 +bifides bifide adj f p 0.01 0.61 0.00 0.14 +bifrons bifron adj p 0.00 0.20 0.00 0.20 +bifteck bifteck nom m s 1.45 5.14 1.30 3.58 +biftecks bifteck nom m p 1.45 5.14 0.14 1.55 +bifton bifton nom m s 0.64 2.84 0.16 1.08 +biftons bifton nom m p 0.64 2.84 0.49 1.76 +biftèque biftèque nom m s 0.00 0.47 0.00 0.14 +biftèques biftèque nom m p 0.00 0.47 0.00 0.34 +bifurcation bifurcation nom f s 0.33 0.54 0.29 0.41 +bifurcations bifurcation nom f p 0.33 0.54 0.04 0.14 +bifurqua bifurquer ver 0.68 2.03 0.00 0.14 ind:pas:3s; +bifurquait bifurquer ver 0.68 2.03 0.00 0.20 ind:imp:3s; +bifurquant bifurquer ver 0.68 2.03 0.00 0.20 par:pre; +bifurque bifurquer ver 0.68 2.03 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bifurquent bifurquer ver 0.68 2.03 0.00 0.07 ind:pre:3p; +bifurquer bifurquer ver 0.68 2.03 0.14 0.20 inf; +bifurqueront bifurquer ver 0.68 2.03 0.00 0.07 ind:fut:3p; +bifurqué bifurquer ver m s 0.68 2.03 0.36 0.61 par:pas; +bifurquée bifurquer ver f s 0.68 2.03 0.00 0.14 par:pas; +big_bang big_bang nom m 0.03 0.41 0.03 0.41 +big_band big_band nom m 0.05 0.00 0.05 0.00 +big_bang big_bang nom m 0.38 1.62 0.38 1.62 +bigaille bigaille nom f s 0.00 0.27 0.00 0.27 +bigame bigame adj m s 0.23 0.00 0.23 0.00 +bigamie bigamie nom f s 0.37 0.47 0.37 0.47 +bigarreau bigarreau nom m s 0.00 0.07 0.00 0.07 +bigarrer bigarrer ver 0.11 0.81 0.00 0.07 inf; +bigarré bigarrer ver m s 0.11 0.81 0.10 0.20 par:pas; +bigarrée bigarré adj f s 0.17 1.62 0.02 0.88 +bigarrées bigarré adj f p 0.17 1.62 0.00 0.07 +bigarrure bigarrure nom f s 0.00 0.74 0.00 0.61 +bigarrures bigarrure nom f p 0.00 0.74 0.00 0.14 +bigarrés bigarré adj m p 0.17 1.62 0.14 0.34 +bighorn bighorn nom m s 0.20 0.14 0.18 0.07 +bighorns bighorn nom m p 0.20 0.14 0.03 0.07 +biglaient bigler ver 0.00 2.16 0.00 0.07 ind:imp:3p; +biglais bigler ver 0.00 2.16 0.00 0.07 ind:imp:1s; +biglait bigler ver 0.00 2.16 0.00 0.20 ind:imp:3s; +biglant bigler ver 0.00 2.16 0.00 0.20 par:pre; +bigle bigler ver 0.00 2.16 0.00 0.34 ind:pre:1s;ind:pre:3s; +biglent bigler ver 0.00 2.16 0.00 0.14 ind:pre:3p; +bigler bigler ver 0.00 2.16 0.00 0.54 inf; +bigles bigle adj m p 0.00 0.34 0.00 0.07 +bigleuse bigleux nom f s 1.88 0.20 0.14 0.07 +bigleux bigleux nom m 1.88 0.20 1.75 0.14 +biglez bigler ver 0.00 2.16 0.00 0.07 imp:pre:2p; +biglé bigler ver m s 0.00 2.16 0.00 0.34 par:pas; +biglée bigler ver f s 0.00 2.16 0.00 0.14 par:pas; +biglés bigler ver m p 0.00 2.16 0.00 0.07 par:pas; +bigne bigne nom f s 0.00 0.20 0.00 0.20 +bignolait bignoler ver 0.00 0.07 0.00 0.07 ind:imp:3s; +bignole bignole nom f s 0.00 5.74 0.00 5.14 +bignoles bignole nom f p 0.00 5.74 0.00 0.61 +bignolle bignolle nom f s 0.00 0.07 0.00 0.07 +bignon bignon nom m s 0.00 0.07 0.00 0.07 +bignones bignone nom f p 0.00 0.07 0.00 0.07 +bignonias bignonia nom m p 0.00 0.07 0.00 0.07 +bigo bigo nom m s 0.05 0.54 0.05 0.54 +bigophone bigophone nom m s 0.17 0.68 0.17 0.68 +bigophoner bigophoner ver 0.03 0.81 0.00 0.41 inf; +bigophones bigophoner ver 0.03 0.81 0.01 0.00 ind:pre:2s; +bigophoné bigophoner ver m s 0.03 0.81 0.00 0.27 par:pas; +bigorne bigorne nom f s 0.00 0.20 0.00 0.14 +bigorneau bigorneau nom m s 1.01 1.55 0.19 0.74 +bigorneaux bigorneau nom m p 1.01 1.55 0.82 0.81 +bigorner bigorner ver 0.00 0.61 0.00 0.27 inf; +bigornes bigorne nom f p 0.00 0.20 0.00 0.07 +bigorné bigorner ver m s 0.00 0.61 0.00 0.20 par:pas; +bigornés bigorner ver m p 0.00 0.61 0.00 0.07 par:pas; +bigot bigot adj m s 0.20 0.27 0.17 0.20 +bigote bigot nom f s 0.50 1.01 0.34 0.41 +bigoterie bigoterie nom f s 0.14 0.20 0.14 0.20 +bigotes bigot nom f p 0.50 1.01 0.00 0.41 +bigots bigot nom m p 0.50 1.01 0.06 0.07 +bigouden bigouden adj f s 0.00 0.34 0.00 0.34 +bigoudens bigouden nom p 0.00 0.07 0.00 0.07 +bigoudi bigoudi nom m s 0.73 3.45 0.18 0.61 +bigoudis bigoudi nom m p 0.73 3.45 0.55 2.84 +bigre bigre ono 0.47 0.54 0.47 0.54 +bigrement bigrement adv 0.28 1.49 0.28 1.49 +bigue bigue nom f s 0.00 0.14 0.00 0.14 +biguine biguine nom f s 0.10 0.34 0.10 0.34 +bihebdomadaire bihebdomadaire adj s 0.01 0.14 0.00 0.07 +bihebdomadaires bihebdomadaire adj p 0.01 0.14 0.01 0.07 +bihoreau bihoreau nom m s 0.00 0.27 0.00 0.27 +bijou bijou nom m s 8.37 11.96 8.37 11.96 +bijouterie bijouterie nom f s 2.41 1.55 2.15 1.15 +bijouteries bijouterie nom f p 2.41 1.55 0.26 0.41 +bijoutier bijoutier nom m s 1.64 2.70 1.54 1.62 +bijoutiers bijoutier nom m p 1.64 2.70 0.10 0.68 +bijoutière bijoutier nom f s 1.64 2.70 0.00 0.41 +bijoux bijoux nom m p 20.64 21.01 20.64 21.01 +bikini bikini nom m s 2.98 2.09 2.34 1.49 +bikinis bikini nom m p 2.98 2.09 0.65 0.61 +bilais biler ver 2.95 2.84 0.01 0.07 ind:imp:1s; +bilait biler ver 2.95 2.84 0.00 0.07 ind:imp:3s; +bilan bilan nom m s 6.13 7.36 5.63 6.22 +bilans bilan nom m p 6.13 7.36 0.50 1.15 +bilatéral bilatéral adj m s 0.51 0.34 0.14 0.14 +bilatérale bilatéral adj f s 0.51 0.34 0.23 0.14 +bilatéralement bilatéralement adv 0.03 0.00 0.03 0.00 +bilatéraux bilatéral adj m p 0.51 0.34 0.14 0.07 +bilbergia bilbergia nom f s 0.00 0.07 0.00 0.07 +bilboquet bilboquet nom m s 0.04 1.15 0.04 1.01 +bilboquets bilboquet nom m p 0.04 1.15 0.00 0.14 +bile bile nom f s 2.78 4.66 2.59 4.66 +biler biler ver 2.95 2.84 0.10 1.15 inf; +biles biler ver 2.95 2.84 0.29 0.00 ind:pre:2s; +bileux bileux adj m 0.01 0.00 0.01 0.00 +bilez biler ver 2.95 2.84 0.22 0.47 imp:pre:2p;ind:pre:2p; +bilharziose bilharziose nom f s 0.01 0.20 0.01 0.20 +biliaire biliaire adj s 0.75 0.47 0.57 0.47 +biliaires biliaire adj p 0.75 0.47 0.18 0.00 +bilieuse bilieux adj f s 0.03 0.68 0.03 0.20 +bilieuses bilieux adj f p 0.03 0.68 0.00 0.07 +bilieux bilieux adj m s 0.03 0.68 0.00 0.41 +bilingue bilingue nom s 0.39 0.00 0.38 0.00 +bilingues bilingue adj p 0.34 0.88 0.04 0.34 +bilinguisme bilinguisme nom m s 0.00 0.07 0.00 0.07 +bilirubine bilirubine nom f s 0.07 0.00 0.07 0.00 +bill bill nom m s 0.56 0.07 0.47 0.07 +billard billard nom m s 7.84 12.23 7.56 11.35 +billards billard nom m p 7.84 12.23 0.28 0.88 +bille bille nom f s 5.21 19.53 2.50 8.58 +biller biller ver 0.07 0.00 0.04 0.00 inf; +billes bille nom f p 5.21 19.53 2.70 10.95 +billet billet nom m s 83.87 63.58 41.47 32.23 +billets billet nom m p 83.87 63.58 42.40 31.35 +billetterie billetterie nom f s 0.19 0.00 0.17 0.00 +billetteries billetterie nom f p 0.19 0.00 0.02 0.00 +billettes billette nom f p 0.00 0.07 0.00 0.07 +billevesée billevesée nom f s 0.27 0.54 0.00 0.07 +billevesées billevesée nom f p 0.27 0.54 0.27 0.47 +billion billion nom m s 0.42 0.07 0.19 0.00 +billions billion nom m p 0.42 0.07 0.23 0.07 +billon billon nom m s 0.00 0.14 0.00 0.14 +billot billot nom m s 0.69 2.50 0.68 2.03 +billots billot nom m p 0.69 2.50 0.01 0.47 +bills bill nom m p 0.56 0.07 0.09 0.00 +bilobée bilobé adj f s 0.01 0.00 0.01 0.00 +bim bim ono 0.52 0.20 0.52 0.20 +bimbeloterie bimbeloterie nom f s 0.03 0.61 0.02 0.47 +bimbeloteries bimbeloterie nom f p 0.03 0.61 0.01 0.14 +bimensuel bimensuel adj m s 0.04 0.14 0.01 0.07 +bimensuelle bimensuel adj f s 0.04 0.14 0.02 0.07 +bimensuelles bimensuel adj f p 0.04 0.14 0.01 0.00 +bimestre bimestre nom m s 0.01 0.00 0.01 0.00 +bimoteur bimoteur nom m s 0.08 0.34 0.08 0.27 +bimoteurs bimoteur nom m p 0.08 0.34 0.00 0.07 +bimétallisme bimétallisme nom m s 0.00 0.14 0.00 0.14 +bin_s bin_s nom m 0.03 0.00 0.03 0.00 +binôme binôme nom m s 0.27 0.14 0.20 0.07 +binômes binôme nom m p 0.27 0.14 0.06 0.07 +binaire binaire adj s 0.68 0.34 0.45 0.27 +binaires binaire adj p 0.68 0.34 0.23 0.07 +binait biner ver 0.33 0.68 0.00 0.14 ind:imp:3s; +binant biner ver 0.33 0.68 0.00 0.14 par:pre; +biner biner ver 0.33 0.68 0.33 0.34 inf; +binet_simon binet_simon nom m s 0.00 0.07 0.00 0.07 +binette binette nom f s 0.27 1.49 0.25 1.08 +binettes binette nom f p 0.27 1.49 0.03 0.41 +bing bing ono 1.81 1.76 1.81 1.76 +bingo bingo nom m s 9.08 0.14 9.08 0.14 +biniou biniou nom m s 0.29 0.81 0.29 0.74 +binious biniou nom m p 0.29 0.81 0.00 0.07 +binoclard binoclard adj m s 2.29 2.43 2.22 2.09 +binoclarde binoclard adj f s 2.29 2.43 0.02 0.14 +binoclards binoclard adj m p 2.29 2.43 0.04 0.20 +binocle binocle nom m s 0.18 1.01 0.01 0.47 +binocles binocle nom m p 0.18 1.01 0.17 0.54 +binoculaire binoculaire adj f s 0.03 0.07 0.03 0.07 +bintje bintje nom f s 0.00 0.07 0.00 0.07 +biné biner ver m s 0.33 0.68 0.00 0.07 par:pas; +binz binz nom s 0.27 0.14 0.27 0.14 +bio bio adj 3.30 0.41 3.30 0.41 +biochimie biochimie nom f s 0.63 0.00 0.63 0.00 +biochimique biochimique adj s 0.32 0.14 0.22 0.14 +biochimiquement biochimiquement adv 0.02 0.00 0.02 0.00 +biochimiques biochimique adj p 0.32 0.14 0.11 0.00 +biochimiste biochimiste nom s 0.35 0.00 0.30 0.00 +biochimistes biochimiste nom p 0.35 0.00 0.05 0.00 +biodiversité biodiversité nom f s 0.05 0.00 0.05 0.00 +biodégradable biodégradable adj m s 0.16 0.07 0.10 0.07 +biodégradables biodégradable adj f p 0.16 0.07 0.06 0.00 +biographe biographe nom s 0.75 0.88 0.75 0.61 +biographes biographe nom p 0.75 0.88 0.00 0.27 +biographie biographie nom f s 2.82 5.34 2.36 4.19 +biographies biographie nom f p 2.82 5.34 0.46 1.15 +biographique biographique adj s 0.18 0.88 0.14 0.34 +biographiques biographique adj p 0.18 0.88 0.03 0.54 +biogénique biogénique adj m s 0.01 0.00 0.01 0.00 +biogénétique biogénétique adj s 0.14 0.00 0.14 0.00 +biologie biologie nom f s 4.13 1.22 4.13 1.22 +biologique biologique adj s 7.34 2.36 5.35 1.69 +biologiquement biologiquement adv 0.46 0.34 0.46 0.34 +biologiques biologique adj p 7.34 2.36 2.00 0.68 +biologiste biologiste nom s 1.08 0.34 0.84 0.34 +biologistes biologiste nom p 1.08 0.34 0.24 0.00 +biologisé biologiser ver m s 0.01 0.00 0.01 0.00 par:pas; +bioluminescence bioluminescence nom f s 0.05 0.00 0.05 0.00 +bioluminescente bioluminescent adj f s 0.01 0.00 0.01 0.00 +biomasse biomasse nom f s 0.03 0.00 0.03 0.00 +biomécanique biomécanique nom f s 0.16 0.00 0.16 0.00 +biomécanisme biomécanisme nom m s 0.01 0.00 0.01 0.00 +biomédical biomédical adj m s 0.10 0.00 0.06 0.00 +biomédicale biomédical adj f s 0.10 0.00 0.03 0.00 +biomédicaux biomédical adj m p 0.10 0.00 0.01 0.00 +biométrie biométrie nom f s 0.03 0.00 0.03 0.00 +biométrique biométrique adj s 0.19 0.00 0.12 0.00 +biométriques biométrique adj p 0.19 0.00 0.07 0.00 +bionique bionique adj s 0.34 0.00 0.24 0.00 +bioniques bionique adj p 0.34 0.00 0.10 0.00 +biophysique biophysique nom f s 0.06 0.00 0.06 0.00 +biopsie biopsie nom f s 2.19 0.47 2.04 0.47 +biopsies biopsie nom f p 2.19 0.47 0.15 0.00 +biorythme biorythme nom m s 0.06 0.00 0.01 0.00 +biorythmes biorythme nom m p 0.06 0.00 0.04 0.00 +biosphère biosphère nom f s 0.08 0.00 0.08 0.00 +biosynthétiques biosynthétique adj p 0.01 0.00 0.01 0.00 +biotechnique biotechnique nom f s 0.15 0.00 0.15 0.00 +biotechnologie biotechnologie nom f s 0.22 0.00 0.22 0.00 +biotique biotique adj s 0.02 0.00 0.02 0.00 +biotite biotite nom f s 0.03 0.00 0.03 0.00 +biotope biotope nom m s 0.07 0.00 0.07 0.00 +bioélectrique bioélectrique adj s 0.01 0.00 0.01 0.00 +bioxyde bioxyde nom m s 0.02 0.07 0.02 0.07 +bip_bip bip_bip nom m s 0.47 0.00 0.47 0.00 +bip bip nom m s 7.68 1.28 6.94 1.28 +bipais biper ver 4.07 0.00 0.01 0.00 ind:imp:1s; +bipartisan bipartisan adj m s 0.01 0.00 0.01 0.00 +bipartisme bipartisme nom m s 0.07 0.00 0.07 0.00 +bipartite bipartite adj s 0.15 0.00 0.15 0.00 +bipe biper ver 4.07 0.00 0.77 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +biper biper ver 4.07 0.00 0.96 0.00 inf; +biperai biper ver 4.07 0.00 0.06 0.00 ind:fut:1s; +biperait biper ver 4.07 0.00 0.01 0.00 cnd:pre:3s; +bipes biper ver 4.07 0.00 0.09 0.00 ind:pre:2s; +bipez biper ver 4.07 0.00 0.43 0.00 imp:pre:2p;ind:pre:2p; +biphényle biphényle nom m s 0.01 0.00 0.01 0.00 +biplace biplace adj s 0.16 0.07 0.02 0.00 +biplaces biplace adj p 0.16 0.07 0.14 0.07 +biplan biplan nom m s 0.32 0.68 0.32 0.54 +biplans biplan nom m p 0.32 0.68 0.00 0.14 +bipolaire bipolaire adj f s 0.29 0.00 0.26 0.00 +bipolaires bipolaire adj m p 0.29 0.00 0.04 0.00 +bipolarité bipolarité nom f s 0.00 0.07 0.00 0.07 +bips bip nom m p 7.68 1.28 0.74 0.00 +bipède bipède nom m s 0.78 0.47 0.58 0.20 +bipèdes bipède nom m p 0.78 0.47 0.20 0.27 +bipé biper ver m s 4.07 0.00 1.27 0.00 par:pas; +bipée biper ver f s 4.07 0.00 0.40 0.00 par:pas; +bipés biper ver m p 4.07 0.00 0.05 0.00 par:pas; +bique bique nom f s 0.94 4.39 0.56 2.97 +biques bique nom f p 0.94 4.39 0.38 1.42 +biquet biquet nom m s 0.54 2.77 0.54 1.28 +biquets biquet nom m p 0.54 2.77 0.00 1.49 +biquette biquette nom f s 0.46 1.35 0.05 1.01 +biquettes biquette nom f p 0.46 1.35 0.40 0.34 +biquotidienne biquotidien adj f s 0.00 0.20 0.00 0.07 +biquotidiens biquotidien adj m p 0.00 0.20 0.00 0.14 +birbe birbe nom m s 0.02 0.47 0.00 0.34 +birbes birbe nom m p 0.02 0.47 0.02 0.14 +birchers bircher nom m p 0.05 0.00 0.05 0.00 +bire bire nom f s 0.00 0.07 0.00 0.07 +biribi biribi nom m s 0.00 0.74 0.00 0.74 +birman birman adj m s 0.36 0.00 0.16 0.00 +birmane birman adj f s 0.36 0.00 0.08 0.00 +birmanes birman adj f p 0.36 0.00 0.02 0.00 +birmans birman nom m p 0.29 0.00 0.25 0.00 +biroute biroute nom f s 0.18 0.95 0.18 0.81 +biroutes biroute nom f p 0.18 0.95 0.00 0.14 +birth_control birth_control nom m 0.01 0.14 0.01 0.14 +biréfringence biréfringence nom f s 0.01 0.00 0.01 0.00 +bis bis adj_sup m 3.48 4.32 0.86 1.82 +bisaïeul bisaïeul nom m s 0.05 0.20 0.05 0.07 +bisaïeule bisaïeul nom f s 0.05 0.20 0.00 0.14 +bisannuel bisannuel adj m s 0.01 0.07 0.01 0.00 +bisannuelles bisannuel adj f p 0.01 0.07 0.00 0.07 +bisbille bisbille nom f s 0.08 0.34 0.07 0.20 +bisbilles bisbille nom f p 0.08 0.34 0.01 0.14 +biscaïen biscaïen nom m s 0.00 0.20 0.00 0.20 +bischof bischof nom m s 0.14 0.00 0.14 0.00 +biscornu biscornu adj m s 0.06 3.04 0.01 0.88 +biscornue biscornu adj f s 0.06 3.04 0.03 0.74 +biscornues biscornu adj f p 0.06 3.04 0.01 0.61 +biscornus biscornu adj m p 0.06 3.04 0.01 0.81 +biscoteaux biscoteau nom m p 0.21 0.00 0.21 0.00 +biscotos biscoto nom m p 0.01 0.34 0.01 0.34 +biscotte biscotte nom f s 1.95 2.43 1.53 0.88 +biscottes biscotte nom f p 1.95 2.43 0.42 1.55 +biscuit biscuit nom m s 12.72 11.55 4.75 2.77 +biscuiterie biscuiterie nom f s 0.06 0.68 0.06 0.68 +biscuits biscuit nom m p 12.72 11.55 7.96 8.78 +bise bise nom f s 3.84 8.72 2.69 8.11 +biseau biseau nom m s 0.02 0.95 0.02 0.88 +biseauté biseauter ver m s 0.17 0.68 0.01 0.00 par:pas; +biseautée biseauter ver f s 0.17 0.68 0.00 0.07 par:pas; +biseautées biseauter ver f p 0.17 0.68 0.01 0.34 par:pas; +biseautés biseauter ver m p 0.17 0.68 0.14 0.27 par:pas; +biseaux biseau nom m p 0.02 0.95 0.00 0.07 +biseness biseness nom m 0.00 0.14 0.00 0.14 +biser biser ver 0.14 0.20 0.14 0.00 inf; +bises bise nom f p 3.84 8.72 1.14 0.61 +bisets biset nom m p 0.00 0.14 0.00 0.14 +bisette bisette nom f s 0.00 0.07 0.00 0.07 +bisexualité bisexualité nom f s 0.05 0.07 0.05 0.07 +bisexuel bisexuel adj m s 1.77 0.14 0.88 0.14 +bisexuelle bisexuel adj f s 1.77 0.14 0.21 0.00 +bisexuelles bisexuelle adj f p 0.03 0.00 0.03 0.00 +bisexuels bisexuel adj m p 1.77 0.14 0.69 0.00 +bisexué bisexué adj m s 0.01 0.07 0.00 0.07 +bisexués bisexué adj m p 0.01 0.07 0.01 0.00 +bishop bishop nom m s 0.02 0.00 0.02 0.00 +bismarckien bismarckien adj m s 0.00 0.07 0.00 0.07 +bismuth bismuth nom m s 0.02 0.14 0.02 0.14 +bisness bisness nom m 0.00 0.14 0.00 0.14 +bison bison nom m s 2.65 3.38 1.49 1.28 +bisons bison nom m p 2.65 3.38 1.16 2.09 +bisou_éclair bisou_éclair nom m s 0.01 0.00 0.01 0.00 +bisou bisou nom m s 18.40 1.08 13.99 0.54 +bisous bisou nom m p 18.40 1.08 4.40 0.54 +bisque bisque nom f s 0.41 0.61 0.41 0.54 +bisquent bisquer ver 0.17 0.27 0.00 0.07 ind:pre:3p; +bisquer bisquer ver 0.17 0.27 0.02 0.07 inf; +bisques bisque nom f p 0.41 0.61 0.00 0.07 +bissac bissac nom m s 0.01 0.34 0.01 0.27 +bissacs bissac nom m p 0.01 0.34 0.00 0.07 +bissant bisser ver 0.03 0.27 0.00 0.07 par:pre; +bisse bisser ver 0.03 0.27 0.01 0.07 imp:pre:2s;ind:pre:3s; +bissel bissel nom m s 0.02 0.00 0.02 0.00 +bisser bisser ver 0.03 0.27 0.01 0.00 inf; +bissextile bissextile adj f s 0.07 0.47 0.03 0.07 +bissextiles bissextile adj f p 0.07 0.47 0.03 0.41 +bissé bisser ver m s 0.03 0.27 0.01 0.14 par:pas; +bistorte bistorte nom f s 0.14 0.07 0.14 0.07 +bistouille bistouille nom f s 0.00 0.07 0.00 0.07 +bistouquette bistouquette nom f s 0.22 0.07 0.22 0.07 +bistouri bistouri nom m s 0.79 2.36 0.79 2.03 +bistouris bistouri nom m p 0.79 2.36 0.00 0.34 +bistouriser bistouriser ver 0.00 0.07 0.00 0.07 inf; +bistre bistre adj 0.00 2.16 0.00 2.16 +bistres bistre nom m p 0.00 1.69 0.00 0.41 +bistro bistro nom m s 0.63 3.04 0.60 2.43 +bistroquet bistroquet nom m s 0.00 0.47 0.00 0.47 +bistros bistro nom m p 0.63 3.04 0.02 0.61 +bistrot bistrot nom m s 3.30 27.50 2.80 21.69 +bistrote bistrot nom f s 3.30 27.50 0.00 0.07 +bistrotier bistrotier nom m s 0.00 0.41 0.00 0.20 +bistrotiers bistrotier nom m p 0.00 0.41 0.00 0.07 +bistrotière bistrotier nom f s 0.00 0.41 0.00 0.07 +bistrotières bistrotier nom f p 0.00 0.41 0.00 0.07 +bistrots bistrot nom m p 3.30 27.50 0.50 5.74 +bistrouille bistrouille nom f s 0.00 0.20 0.00 0.20 +bistré bistrer ver m s 0.00 0.41 0.00 0.07 par:pas; +bistrée bistré adj f s 0.00 0.34 0.00 0.20 +bistrées bistrer ver f p 0.00 0.41 0.00 0.14 par:pas; +bistrés bistré adj m p 0.00 0.34 0.00 0.14 +bisulfite bisulfite nom m s 0.00 0.07 0.00 0.07 +bit bit nom m s 1.24 0.14 1.04 0.14 +bite bite nom f s 26.41 6.08 22.93 4.93 +bitent biter ver 0.02 0.14 0.00 0.07 ind:pre:3p; +bites bite nom f p 26.41 6.08 3.49 1.15 +bière bière nom f s 81.67 38.11 68.55 35.34 +bières bière nom f p 81.67 38.11 13.12 2.77 +bithynien bithynien nom m s 0.00 0.41 0.00 0.27 +bithyniens bithynien nom m p 0.00 0.41 0.00 0.14 +bitoniau bitoniau nom m s 0.01 0.00 0.01 0.00 +bitos bitos nom m 0.00 0.74 0.00 0.74 +bits bit nom m p 1.24 0.14 0.20 0.00 +bitte bitte nom f s 0.72 1.01 0.69 0.74 +bitter bitter ver 0.23 0.00 0.23 0.00 inf; +bitters bitter nom m p 0.16 0.00 0.02 0.00 +bittes bitte nom f p 0.72 1.01 0.03 0.27 +bité biter ver m s 0.02 0.14 0.02 0.07 par:pas; +bitume bitume nom m s 1.12 6.01 0.99 5.88 +bitumes bitume nom m p 1.12 6.01 0.14 0.14 +bitumeuse bitumeux adj f s 0.00 0.34 0.00 0.14 +bitumeux bitumeux adj m p 0.00 0.34 0.00 0.20 +bitumineuse bitumineux adj f s 0.03 0.07 0.02 0.07 +bitumineux bitumineux adj m p 0.03 0.07 0.01 0.00 +bitumé bitumer ver m s 0.01 0.68 0.00 0.41 par:pas; +bitumée bitumer ver f s 0.01 0.68 0.00 0.20 par:pas; +bitumées bitumer ver f p 0.01 0.68 0.01 0.07 par:pas; +biture biture nom f s 0.12 1.22 0.09 1.01 +biturer biturer ver 0.19 0.20 0.02 0.00 inf; +bitures biture nom f p 0.12 1.22 0.03 0.20 +biturin biturin nom m s 0.00 0.27 0.00 0.20 +biturins biturin nom m p 0.00 0.27 0.00 0.07 +bituré biturer ver m s 0.19 0.20 0.16 0.07 par:pas; +biturés biturer ver m p 0.19 0.20 0.00 0.14 par:pas; +bivalente bivalent adj f s 0.00 0.07 0.00 0.07 +bivalve bivalve nom m s 0.01 0.00 0.01 0.00 +bivalves bivalve adj p 0.02 0.00 0.02 0.00 +bivouac bivouac nom m s 0.41 3.85 0.26 2.23 +bivouacs bivouac nom m p 0.41 3.85 0.14 1.62 +bivouaquaient bivouaquer ver 0.75 0.61 0.00 0.14 ind:imp:3p; +bivouaquait bivouaquer ver 0.75 0.61 0.00 0.14 ind:imp:3s; +bivouaque bivouaquer ver 0.75 0.61 0.25 0.00 ind:pre:3s; +bivouaquent bivouaquer ver 0.75 0.61 0.11 0.20 ind:pre:3p; +bivouaquer bivouaquer ver 0.75 0.61 0.09 0.00 inf; +bivouaquerons bivouaquer ver 0.75 0.61 0.16 0.00 ind:fut:1p; +bivouaquons bivouaquer ver 0.75 0.61 0.02 0.00 imp:pre:1p; +bivouaqué bivouaquer ver m s 0.75 0.61 0.13 0.07 par:pas; +bivouaquée bivouaquer ver f s 0.75 0.61 0.00 0.07 par:pas; +bizarde bizarde adj f s 0.00 0.27 0.00 0.27 +bizarre bizarre adj s 131.41 52.23 117.31 41.76 +bizarrement bizarrement adv 7.12 11.82 7.12 11.82 +bizarrerie bizarrerie nom f s 1.12 3.38 0.70 1.82 +bizarreries bizarrerie nom f p 1.12 3.38 0.42 1.55 +bizarres bizarre adj p 131.41 52.23 14.10 10.47 +bizarroïde bizarroïde adj s 0.16 0.27 0.14 0.14 +bizarroïdes bizarroïde adj p 0.16 0.27 0.03 0.14 +bizness bizness nom m 2.02 0.68 2.02 0.68 +bizou bizou nom m s 0.00 0.07 0.00 0.07 +bizut bizut nom m s 2.30 0.07 2.05 0.07 +bizutage bizutage nom m s 1.02 0.14 1.00 0.07 +bizutages bizutage nom m p 1.02 0.14 0.01 0.07 +bizuter bizuter ver 0.14 0.00 0.10 0.00 inf; +bizuteurs bizuteur nom m p 0.01 0.00 0.01 0.00 +bizuth bizuth nom m s 0.02 0.00 0.02 0.00 +bizuts bizut nom m p 2.30 0.07 0.25 0.00 +bizuté bizuter ver m s 0.14 0.00 0.04 0.00 par:pas; +bla_bla_bla bla_bla_bla nom m 0.41 0.34 0.41 0.34 +bla_bla bla_bla nom m 1.51 1.49 1.11 1.49 +bla_bla bla_bla nom m 1.51 1.49 0.40 0.00 +blabla blabla nom m 0.81 1.42 0.81 1.42 +blablabla blablabla nom m 0.88 0.34 0.88 0.34 +blablatait blablater ver 0.04 0.14 0.00 0.07 ind:imp:3s; +blablater blablater ver 0.04 0.14 0.03 0.00 inf; +blablateurs blablateur nom m p 0.00 0.07 0.00 0.07 +blablatez blablater ver 0.04 0.14 0.01 0.00 ind:pre:2p; +blablaté blablater ver m s 0.04 0.14 0.00 0.07 par:pas; +black_bass black_bass nom m 0.00 0.07 0.00 0.07 +black_jack black_jack nom m s 0.75 0.00 0.75 0.00 +black_out black_out nom m 1.00 0.88 1.00 0.88 +black black adj m s 2.67 0.47 2.45 0.47 +blackboule blackbouler ver 0.06 0.07 0.01 0.00 ind:pre:3s; +blackbouler blackbouler ver 0.06 0.07 0.04 0.07 inf; +blackboulé blackbouler ver m s 0.06 0.07 0.01 0.00 par:pas; +blacks black nom m p 4.07 1.42 2.13 1.01 +blafard blafard adj m s 0.64 10.27 0.37 4.80 +blafarde blafard adj f s 0.64 10.27 0.16 3.72 +blafardes blafard adj f p 0.64 10.27 0.00 0.74 +blafards blafard adj m p 0.64 10.27 0.11 1.01 +blagua blaguer ver 9.41 3.24 0.00 0.14 ind:pas:3s; +blaguaient blaguer ver 9.41 3.24 0.04 0.20 ind:imp:3p; +blaguais blaguer ver 9.41 3.24 2.23 0.27 ind:imp:1s;ind:imp:2s; +blaguait blaguer ver 9.41 3.24 0.69 0.14 ind:imp:3s; +blaguant blaguer ver 9.41 3.24 0.04 0.20 par:pre; +blague blague nom f s 72.63 22.70 60.33 16.82 +blaguent blaguer ver 9.41 3.24 0.06 0.20 ind:pre:3p; +blaguer blaguer ver 9.41 3.24 1.22 0.74 inf; +blaguerais blaguer ver 9.41 3.24 0.03 0.00 cnd:pre:1s; +blagues blague nom f p 72.63 22.70 12.30 5.88 +blagueur blagueur nom m s 0.35 0.00 0.29 0.00 +blagueurs blagueur nom m p 0.35 0.00 0.05 0.00 +blagueuse blagueur nom f s 0.35 0.00 0.01 0.00 +blagueuses blagueur adj f p 0.08 0.74 0.00 0.07 +blaguez blaguer ver 9.41 3.24 0.34 0.20 imp:pre:2p;ind:pre:2p; +blaguons blaguer ver 9.41 3.24 0.01 0.00 ind:pre:1p; +blagué blaguer ver m s 9.41 3.24 0.28 0.20 par:pas; +blair blair nom m s 0.06 1.35 0.05 1.28 +blairaient blairer ver 1.39 2.03 0.00 0.07 ind:imp:3p; +blairait blairer ver 1.39 2.03 0.00 0.20 ind:imp:3s; +blaire blairer ver 1.39 2.03 0.09 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +blaireau blaireau nom m s 3.75 3.78 2.64 2.70 +blaireaux blaireau nom m p 3.75 3.78 1.11 1.08 +blairer blairer ver 1.39 2.03 1.30 1.01 inf; +blairs blair nom m p 0.06 1.35 0.01 0.07 +blairé blairer ver m s 1.39 2.03 0.00 0.07 par:pas; +blaise blaiser ver 0.00 0.27 0.00 0.27 ind:pre:1s;ind:pre:3s; +blaisois blaisois nom m 0.00 0.07 0.00 0.07 +blanc_bec blanc_bec nom m s 1.50 0.61 1.39 0.47 +blanc_bleu blanc_bleu nom m s 0.16 0.41 0.16 0.41 +blanc_gris blanc_gris adj m s 0.00 0.07 0.00 0.07 +blanc_seing blanc_seing nom m s 0.01 0.27 0.01 0.27 +blanc blanc adj m s 118.74 430.54 53.93 152.03 +blanche blanc adj f s 118.74 430.54 35.92 145.07 +blanchecaille blanchecaille nom f s 0.00 0.54 0.00 0.41 +blanchecailles blanchecaille nom f p 0.00 0.54 0.00 0.14 +blanchement blanchement nom m s 0.00 0.07 0.00 0.07 +blanches blanc adj f p 118.74 430.54 11.43 60.68 +blanchet blanchet nom m s 0.00 1.15 0.00 1.15 +blancheur blancheur nom f s 1.23 15.27 1.23 14.73 +blancheurs blancheur nom f p 1.23 15.27 0.00 0.54 +blanchi blanchir ver m s 5.34 12.23 1.09 2.23 par:pas; +blanchie blanchir ver f s 5.34 12.23 0.06 0.68 par:pas; +blanchies blanchir ver f p 5.34 12.23 0.02 1.49 par:pas; +blanchiment blanchiment nom m s 0.75 0.07 0.74 0.00 +blanchiments blanchiment nom m p 0.75 0.07 0.01 0.07 +blanchir blanchir ver 5.34 12.23 1.86 2.64 inf; +blanchira blanchir ver 5.34 12.23 0.17 0.00 ind:fut:3s; +blanchiraient blanchir ver 5.34 12.23 0.00 0.14 cnd:pre:3p; +blanchirait blanchir ver 5.34 12.23 0.01 0.14 cnd:pre:3s; +blanchirent blanchir ver 5.34 12.23 0.00 0.14 ind:pas:3p; +blanchirez blanchir ver 5.34 12.23 0.02 0.00 ind:fut:2p; +blanchiront blanchir ver 5.34 12.23 0.01 0.07 ind:fut:3p; +blanchis blanchir ver m p 5.34 12.23 0.78 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +blanchissage blanchissage nom m s 0.31 0.27 0.31 0.27 +blanchissaient blanchir ver 5.34 12.23 0.02 0.81 ind:imp:3p; +blanchissait blanchir ver 5.34 12.23 0.07 1.28 ind:imp:3s; +blanchissant blanchissant adj m s 0.04 0.61 0.03 0.27 +blanchissante blanchissant adj f s 0.04 0.61 0.01 0.14 +blanchissantes blanchissant adj f p 0.04 0.61 0.00 0.07 +blanchissants blanchissant adj m p 0.04 0.61 0.00 0.14 +blanchisse blanchir ver 5.34 12.23 0.02 0.07 sub:pre:3s; +blanchissement blanchissement nom m s 0.09 0.14 0.09 0.14 +blanchissent blanchir ver 5.34 12.23 0.26 0.34 ind:pre:3p; +blanchisserie blanchisserie nom f s 1.23 3.45 1.23 3.45 +blanchisses blanchir ver 5.34 12.23 0.01 0.00 sub:pre:2s; +blanchisseur blanchisseur nom m s 0.95 3.65 0.44 0.27 +blanchisseurs blanchisseur nom m p 0.95 3.65 0.09 0.54 +blanchisseuse blanchisseur nom f s 0.95 3.65 0.42 1.55 +blanchisseuses blanchisseuse nom f p 0.16 0.00 0.16 0.00 +blanchissez blanchir ver 5.34 12.23 0.01 0.00 ind:pre:2p; +blanchit blanchir ver 5.34 12.23 0.91 0.95 ind:pre:3s;ind:pas:3s; +blanchoie blanchoyer ver 0.00 0.27 0.00 0.14 ind:pre:3s; +blanchoiement blanchoiement nom m 0.00 0.07 0.00 0.07 +blanchon blanchon nom m s 0.06 1.28 0.06 1.28 +blanchâtre blanchâtre adj s 0.05 7.23 0.05 4.66 +blanchâtres blanchâtre adj p 0.05 7.23 0.00 2.57 +blanchoyait blanchoyer ver 0.00 0.27 0.00 0.07 ind:imp:3s; +blanchoyant blanchoyer ver 0.00 0.27 0.00 0.07 par:pre; +blanc_bec blanc_bec nom m p 1.50 0.61 0.12 0.14 +blancs_manteaux blancs_manteaux adj m p 0.00 0.07 0.00 0.07 +blancs blanc nom m p 46.88 72.36 19.31 12.64 +blandices blandice nom f p 0.00 0.14 0.00 0.14 +blanque blanque nom f s 0.00 0.07 0.00 0.07 +blanquette blanquette nom f s 0.17 1.01 0.17 0.88 +blanquettes blanquette nom f p 0.17 1.01 0.00 0.14 +blasait blaser ver 0.31 1.89 0.00 0.14 ind:imp:3s; +blase blase nom m s 0.12 1.55 0.12 1.35 +blaser blaser ver 0.31 1.89 0.01 0.14 inf; +blases blase nom m p 0.12 1.55 0.00 0.20 +blason blason nom m s 0.33 3.45 0.29 3.04 +blasonnait blasonner ver 0.00 0.41 0.00 0.07 ind:imp:3s; +blasonné blasonner ver m s 0.00 0.41 0.00 0.14 par:pas; +blasonnée blasonner ver f s 0.00 0.41 0.00 0.07 par:pas; +blasonnées blasonner ver f p 0.00 0.41 0.00 0.07 par:pas; +blasonnés blasonner ver m p 0.00 0.41 0.00 0.07 par:pas; +blasons blason nom m p 0.33 3.45 0.04 0.41 +blasphème blasphème nom m s 5.51 2.97 4.46 1.69 +blasphèment blasphémer ver 4.11 1.96 0.10 0.07 ind:pre:3p; +blasphèmes blasphème nom m p 5.51 2.97 1.06 1.28 +blasphéma blasphémer ver 4.11 1.96 0.00 0.14 ind:pas:3s; +blasphémaient blasphémer ver 4.11 1.96 0.01 0.14 ind:imp:3p; +blasphémais blasphémer ver 4.11 1.96 0.00 0.07 ind:imp:1s; +blasphémait blasphémer ver 4.11 1.96 0.15 0.00 ind:imp:3s; +blasphémant blasphémer ver 4.11 1.96 0.01 0.07 par:pre; +blasphémateur blasphémateur nom m s 0.68 0.27 0.36 0.20 +blasphémateurs blasphémateur nom m p 0.68 0.27 0.29 0.07 +blasphématoire blasphématoire adj s 0.62 0.81 0.61 0.54 +blasphématoires blasphématoire adj f p 0.62 0.81 0.01 0.27 +blasphématrice blasphémateur nom f s 0.68 0.27 0.03 0.00 +blasphémer blasphémer ver 4.11 1.96 1.28 0.61 inf; +blasphémez blasphémer ver 4.11 1.96 0.44 0.00 imp:pre:2p;ind:pre:2p; +blasphémé blasphémer ver m s 4.11 1.96 0.90 0.41 par:pas; +blastula blastula nom f s 0.01 0.00 0.01 0.00 +blasé blasé adj m s 1.00 3.92 0.66 2.43 +blasée blasé adj f s 1.00 3.92 0.08 0.61 +blasées blasé adj f p 1.00 3.92 0.01 0.07 +blasés blasé adj m p 1.00 3.92 0.25 0.81 +blatte blatte nom f s 0.86 0.68 0.41 0.14 +blattes blatte nom f p 0.86 0.68 0.45 0.54 +blatérant blatérer ver 0.00 0.07 0.00 0.07 par:pre; +blaze blaze nom m s 0.53 3.18 0.48 2.77 +blazer blazer nom m s 0.36 3.24 0.32 2.70 +blazers blazer nom m p 0.36 3.24 0.04 0.54 +blazes blaze nom m p 0.53 3.18 0.05 0.41 +bled bled nom m s 5.67 8.04 5.55 7.23 +bleds bled nom m p 5.67 8.04 0.12 0.81 +blennies blennie nom f p 0.00 0.07 0.00 0.07 +blennorragie blennorragie nom f s 0.14 0.07 0.14 0.07 +blessa blesser ver 103.74 43.31 0.30 0.74 ind:pas:3s; +blessaient blesser ver 103.74 43.31 0.03 1.08 ind:imp:3p; +blessais blesser ver 103.74 43.31 0.05 0.14 ind:imp:1s;ind:imp:2s; +blessait blesser ver 103.74 43.31 0.19 3.65 ind:imp:3s; +blessant blessant adj m s 1.20 2.91 0.82 1.08 +blessante blessant adj f s 1.20 2.91 0.23 1.08 +blessantes blessant adj f p 1.20 2.91 0.09 0.34 +blessants blessant adj m p 1.20 2.91 0.06 0.41 +blesse blesser ver 103.74 43.31 9.22 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +blessent blesser ver 103.74 43.31 1.08 1.15 ind:pre:3p; +blesser blesser ver 103.74 43.31 19.93 8.31 ind:pre:2p;inf; +blessera blesser ver 103.74 43.31 0.49 0.07 ind:fut:3s; +blesserai blesser ver 103.74 43.31 0.31 0.14 ind:fut:1s; +blesseraient blesser ver 103.74 43.31 0.01 0.07 cnd:pre:3p; +blesserais blesser ver 103.74 43.31 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +blesserait blesser ver 103.74 43.31 0.55 0.14 cnd:pre:3s; +blesseras blesser ver 103.74 43.31 0.13 0.00 ind:fut:2s; +blesserez blesser ver 103.74 43.31 0.04 0.00 ind:fut:2p; +blesseriez blesser ver 103.74 43.31 0.12 0.00 cnd:pre:2p; +blesserons blesser ver 103.74 43.31 0.01 0.00 ind:fut:1p; +blesseront blesser ver 103.74 43.31 0.15 0.20 ind:fut:3p; +blesses blesser ver 103.74 43.31 2.67 0.07 ind:pre:2s; +blessez blesser ver 103.74 43.31 1.79 0.00 imp:pre:2p;ind:pre:2p; +blessiez blesser ver 103.74 43.31 0.07 0.00 ind:imp:2p; +blessing blessing nom m s 0.01 0.00 0.01 0.00 +blessât blesser ver 103.74 43.31 0.00 0.14 sub:imp:3s; +blessèrent blesser ver 103.74 43.31 0.01 0.14 ind:pas:3p; +blessé blesser ver m s 103.74 43.31 49.12 17.43 par:pas;par:pas;par:pas;par:pas; +blessée blesser ver f s 103.74 43.31 13.00 3.51 par:pas; +blessées blesser ver f p 103.74 43.31 0.64 0.54 par:pas; +blessure blessure nom f s 41.81 32.57 23.05 19.39 +blessures blessure nom f p 41.81 32.57 18.77 13.18 +blessés blessé nom m p 21.88 30.34 12.21 17.70 +blet blet adj m s 0.04 1.42 0.00 0.47 +blets blet adj m p 0.04 1.42 0.01 0.07 +blette blet adj f s 0.04 1.42 0.02 0.61 +blettes blette nom f p 0.16 0.20 0.16 0.20 +blettir blettir ver 0.00 0.14 0.00 0.07 inf; +blettissait blettir ver 0.00 0.14 0.00 0.07 ind:imp:3s; +blettissement blettissement nom m s 0.00 0.14 0.00 0.14 +bleu_ciel bleu_ciel adj m s 0.00 0.07 0.00 0.07 +bleu_noir bleu_noir adj 0.01 1.01 0.01 1.01 +bleu_roi bleu_roi nom m s 0.02 0.00 0.02 0.00 +bleu_vert bleu_vert adj 0.13 0.47 0.13 0.47 +bleu bleu adj 70.61 207.64 31.24 100.41 +bleuît bleuir ver 0.16 3.11 0.00 0.07 sub:imp:3s; +bleubite bleubite nom m s 0.00 0.27 0.00 0.20 +bleubites bleubite nom m p 0.00 0.27 0.00 0.07 +bleue bleu adj f s 70.61 207.64 21.63 53.11 +bleues bleu adj f p 70.61 207.64 4.77 21.28 +bleuet bleuet nom m s 1.98 1.22 1.02 0.14 +bleuets bleuet nom m p 1.98 1.22 0.95 1.08 +bleuette bleuette nom f s 0.03 0.00 0.03 0.00 +bleui bleuir ver m s 0.16 3.11 0.01 0.20 par:pas; +bleuie bleui adj f s 0.00 1.08 0.00 0.27 +bleuies bleuir ver f p 0.16 3.11 0.10 0.74 par:pas; +bleuir bleuir ver 0.16 3.11 0.00 0.20 inf; +bleuira bleuir ver 0.16 3.11 0.00 0.07 ind:fut:3s; +bleuis bleuir ver m p 0.16 3.11 0.00 0.14 par:pas; +bleuissaient bleuir ver 0.16 3.11 0.00 0.27 ind:imp:3p; +bleuissait bleuir ver 0.16 3.11 0.00 0.54 ind:imp:3s; +bleuissante bleuissant adj f s 0.00 0.27 0.00 0.14 +bleuissantes bleuissant adj f p 0.00 0.27 0.00 0.14 +bleuissent bleuir ver 0.16 3.11 0.03 0.20 ind:pre:3p; +bleuit bleuir ver 0.16 3.11 0.03 0.47 ind:pre:3s;ind:pas:3s; +bleuâtre bleuâtre adj s 0.09 7.23 0.04 4.66 +bleuâtres bleuâtre adj p 0.09 7.23 0.04 2.57 +bleus bleu adj m p 70.61 207.64 12.97 32.84 +bleusaille bleusaille nom f s 0.38 0.20 0.37 0.20 +bleusailles bleusaille nom f p 0.38 0.20 0.01 0.00 +bleuté bleuté adj m s 0.46 7.09 0.07 2.23 +bleutée bleuté adj f s 0.46 7.09 0.25 2.09 +bleutées bleuté adj f p 0.46 7.09 0.00 1.28 +bleutés bleuté adj m p 0.46 7.09 0.14 1.49 +bliaut bliaut nom m s 0.00 0.27 0.00 0.27 +blindage blindage nom m s 0.59 1.01 0.43 0.74 +blindages blindage nom m p 0.59 1.01 0.16 0.27 +blindant blinder ver 2.37 3.58 0.00 0.07 par:pre; +blinde blinde nom f s 0.12 0.47 0.10 0.41 +blindent blinder ver 2.37 3.58 0.00 0.07 ind:pre:3p; +blinder blinder ver 2.37 3.58 0.10 0.34 inf; +blindera blinder ver 2.37 3.58 0.00 0.07 ind:fut:3s; +blindes blinde nom f p 0.12 0.47 0.02 0.07 +blindez blinder ver 2.37 3.58 0.01 0.00 imp:pre:2p; +blindé blindé adj m s 3.95 9.05 1.44 1.35 +blindée blindé adj f s 3.95 9.05 1.17 4.46 +blindées blindé adj f p 3.95 9.05 0.97 1.96 +blindés blindé nom m p 1.37 3.31 1.11 2.91 +blini blini nom m s 0.93 0.14 0.02 0.00 +blinis blini nom m p 0.93 0.14 0.91 0.14 +blitzkrieg blitzkrieg nom m s 0.09 0.00 0.09 0.00 +blizzard blizzard nom m s 1.12 0.47 0.76 0.47 +blizzards blizzard nom m p 1.12 0.47 0.36 0.00 +blob blob nom m s 0.19 0.00 0.19 0.00 +bloc_cylindres bloc_cylindres nom m 0.01 0.00 0.01 0.00 +bloc_moteur bloc_moteur nom m s 0.01 0.00 0.01 0.00 +bloc_notes bloc_notes nom m 0.47 0.61 0.47 0.61 +bloc bloc nom m s 17.28 38.78 14.25 28.31 +blocage blocage nom m s 1.73 1.82 1.57 1.49 +blocages blocage nom m p 1.73 1.82 0.16 0.34 +blocaille blocaille nom f s 0.02 0.07 0.02 0.07 +block block nom m s 1.06 0.27 0.70 0.00 +blockhaus blockhaus nom m 1.77 6.15 1.77 6.15 +blocks block nom m p 1.06 0.27 0.36 0.27 +blocs_notes blocs_notes nom m p 0.07 0.07 0.07 0.07 +blocs bloc nom m p 17.28 38.78 3.03 10.47 +blocus blocus nom m 1.43 2.36 1.43 2.36 +blâma blâmer ver 9.38 6.42 0.01 0.14 ind:pas:3s; +blâmable blâmable adj f s 0.04 0.41 0.04 0.41 +blâmaient blâmer ver 9.38 6.42 0.00 0.41 ind:imp:3p; +blâmais blâmer ver 9.38 6.42 0.02 0.20 ind:imp:1s; +blâmait blâmer ver 9.38 6.42 0.03 0.74 ind:imp:3s; +blâmant blâmer ver 9.38 6.42 0.02 0.14 par:pre; +blâme blâmer ver 9.38 6.42 2.91 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +blâment blâmer ver 9.38 6.42 0.20 0.07 ind:pre:3p; +blâmer blâmer ver 9.38 6.42 4.37 2.03 inf;;inf;;inf;; +blâmera blâmer ver 9.38 6.42 0.27 0.00 ind:fut:3s; +blâmerais blâmer ver 9.38 6.42 0.07 0.00 cnd:pre:1s; +blâmerait blâmer ver 9.38 6.42 0.09 0.07 cnd:pre:3s; +blâmeras blâmer ver 9.38 6.42 0.02 0.00 ind:fut:2s; +blâmerions blâmer ver 9.38 6.42 0.01 0.00 cnd:pre:1p; +blâmeront blâmer ver 9.38 6.42 0.03 0.07 ind:fut:3p; +blâmes blâme nom m p 2.04 4.73 0.19 0.68 +blâmez blâmer ver 9.38 6.42 0.42 0.07 imp:pre:2p;ind:pre:2p; +blâmons blâmer ver 9.38 6.42 0.41 0.00 imp:pre:1p;ind:pre:1p; +blâmé blâmer ver m s 9.38 6.42 0.21 0.54 par:pas; +blâmée blâmer ver f s 9.38 6.42 0.05 0.20 par:pas; +blâmées blâmer ver f p 9.38 6.42 0.03 0.07 par:pas; +blâmés blâmer ver m p 9.38 6.42 0.03 0.07 par:pas; +blond blond adj m s 21.45 76.76 8.73 21.28 +blondasse blondasse adj s 0.82 0.88 0.77 0.74 +blondasses blondasse adj m p 0.82 0.88 0.05 0.14 +blonde blond nom f s 22.65 33.45 14.06 21.28 +blondes blond nom f p 22.65 33.45 4.54 2.77 +blondeur blondeur nom f s 0.20 2.64 0.20 2.57 +blondeurs blondeur nom f p 0.20 2.64 0.01 0.07 +blondi blondir ver m s 0.82 1.15 0.36 0.14 par:pas; +blondie blondir ver f s 0.82 1.15 0.46 0.47 par:pas; +blondin blondin adj m s 0.03 0.14 0.02 0.07 +blondine blondin adj f s 0.03 0.14 0.00 0.07 +blondines blondin adj f p 0.03 0.14 0.01 0.00 +blondinet blondinet nom m s 0.45 0.95 0.44 0.95 +blondinets blondinet nom m p 0.45 0.95 0.01 0.00 +blondinette blondinet adj f s 0.63 0.68 0.40 0.20 +blondir blondir ver 0.82 1.15 0.00 0.14 inf; +blondis blondir ver m p 0.82 1.15 0.00 0.07 par:pas; +blondissait blondir ver 0.82 1.15 0.00 0.20 ind:imp:3s; +blondit blondir ver 0.82 1.15 0.00 0.14 ind:pre:3s; +blonds blond adj m p 21.45 76.76 3.45 18.38 +bloody_mary bloody_mary nom m s 1.32 0.20 1.32 0.20 +bloom bloom nom m s 0.01 0.00 0.01 0.00 +bloomer bloomer nom m s 0.01 0.00 0.01 0.00 +bloqua bloquer ver 38.62 23.11 0.02 1.28 ind:pas:3s; +bloquai bloquer ver 38.62 23.11 0.00 0.07 ind:pas:1s; +bloquaient bloquer ver 38.62 23.11 0.43 0.54 ind:imp:3p; +bloquais bloquer ver 38.62 23.11 0.17 0.20 ind:imp:1s;ind:imp:2s; +bloquait bloquer ver 38.62 23.11 0.43 2.03 ind:imp:3s; +bloquant bloquer ver 38.62 23.11 0.39 1.28 par:pre; +bloque bloquer ver 38.62 23.11 5.92 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +bloquent bloquer ver 38.62 23.11 1.10 0.54 ind:pre:3p; +bloquer bloquer ver 38.62 23.11 4.38 3.18 inf; +bloquera bloquer ver 38.62 23.11 0.33 0.07 ind:fut:3s; +bloquerai bloquer ver 38.62 23.11 0.08 0.00 ind:fut:1s; +bloquerais bloquer ver 38.62 23.11 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +bloquerait bloquer ver 38.62 23.11 0.07 0.07 cnd:pre:3s; +bloqueront bloquer ver 38.62 23.11 0.23 0.00 ind:fut:3p; +bloques bloquer ver 38.62 23.11 0.73 0.14 ind:pre:2s;sub:pre:2s; +bloqueur bloqueur nom m s 0.24 0.00 0.19 0.00 +bloqueurs bloqueur nom m p 0.24 0.00 0.05 0.00 +bloquez bloquer ver 38.62 23.11 4.45 0.00 imp:pre:2p;ind:pre:2p; +bloquiez bloquer ver 38.62 23.11 0.06 0.00 ind:imp:2p; +bloquons bloquer ver 38.62 23.11 0.12 0.14 imp:pre:1p;ind:pre:1p; +bloquât bloquer ver 38.62 23.11 0.00 0.07 sub:imp:3s; +bloquèrent bloquer ver 38.62 23.11 0.01 0.14 ind:pas:3p; +bloqué bloquer ver m s 38.62 23.11 11.55 4.86 par:pas; +bloquée bloquer ver f s 38.62 23.11 4.59 2.30 par:pas; +bloquées bloquer ver f p 38.62 23.11 1.13 1.08 par:pas; +bloqués bloquer ver m p 38.62 23.11 2.41 2.09 par:pas; +blot blot nom m s 0.71 1.76 0.71 1.49 +blots blot nom m p 0.71 1.76 0.00 0.27 +blotti blottir ver m s 1.70 12.84 0.22 2.30 par:pas; +blottie blottir ver f s 1.70 12.84 0.27 2.64 par:pas; +blotties blottir ver f p 1.70 12.84 0.00 0.34 par:pas; +blottir blottir ver 1.70 12.84 0.33 2.64 inf; +blottirai blottir ver 1.70 12.84 0.01 0.00 ind:fut:1s; +blottirait blottir ver 1.70 12.84 0.00 0.07 cnd:pre:3s; +blottirent blottir ver 1.70 12.84 0.00 0.07 ind:pas:3p; +blottis blottir ver m p 1.70 12.84 0.42 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +blottissaient blottir ver 1.70 12.84 0.00 0.41 ind:imp:3p; +blottissais blottir ver 1.70 12.84 0.01 0.14 ind:imp:1s; +blottissait blottir ver 1.70 12.84 0.15 0.47 ind:imp:3s; +blottissant blottir ver 1.70 12.84 0.01 0.20 par:pre; +blottisse blottir ver 1.70 12.84 0.01 0.07 sub:pre:3s; +blottissement blottissement nom m 0.00 0.07 0.00 0.07 +blottissent blottir ver 1.70 12.84 0.11 0.14 ind:pre:3p; +blottissions blottir ver 1.70 12.84 0.00 0.07 ind:imp:1p; +blottit blottir ver 1.70 12.84 0.16 2.09 ind:pre:3s;ind:pas:3s; +bloum bloum nom m s 0.00 0.07 0.00 0.07 +blousantes blousant adj f p 0.00 0.07 0.00 0.07 +blouse blouse nom f s 5.68 32.64 5.29 28.51 +blousent blouser ver 0.53 0.54 0.02 0.00 ind:pre:3p; +blouser blouser ver 0.53 0.54 0.33 0.14 inf; +blouses blouse nom f p 5.68 32.64 0.39 4.12 +blouson blouson nom m s 7.15 25.20 6.62 22.57 +blousons blouson nom m p 7.15 25.20 0.53 2.64 +blousé blouser ver m s 0.53 0.54 0.13 0.14 par:pas; +blousée blouser ver f s 0.53 0.54 0.00 0.14 par:pas; +blousés blouser ver m p 0.53 0.54 0.02 0.14 par:pas; +blèche blèche adj s 0.00 0.34 0.00 0.20 +blèches blèche adj p 0.00 0.34 0.00 0.14 +blèsement blèsement nom m s 0.00 0.07 0.00 0.07 +blé blé nom m s 19.98 28.65 19.07 23.24 +blédard blédard nom m s 0.00 0.14 0.00 0.07 +blédards blédard nom m p 0.00 0.14 0.00 0.07 +blue_jean blue_jean nom m s 0.17 2.03 0.05 1.08 +blue_jean blue_jean nom m p 0.17 2.03 0.10 0.95 +blue_jean blue_jean nom m p 0.17 2.03 0.01 0.00 +blue_note blue_note nom f s 0.02 0.00 0.02 0.00 +blues blues nom m 7.81 5.68 7.81 5.68 +bluets bluet nom m p 0.00 0.07 0.00 0.07 +bluette bluette nom f s 0.01 0.61 0.00 0.34 +bluettes bluette nom f p 0.01 0.61 0.01 0.27 +bluff bluff nom m s 3.02 1.62 3.00 1.55 +bluffa bluffer ver 6.30 2.36 0.00 0.07 ind:pas:3s; +bluffaient bluffer ver 6.30 2.36 0.03 0.07 ind:imp:3p; +bluffais bluffer ver 6.30 2.36 0.31 0.00 ind:imp:1s;ind:imp:2s; +bluffait bluffer ver 6.30 2.36 0.19 0.27 ind:imp:3s; +bluffant bluffer ver 6.30 2.36 0.05 0.00 par:pre; +bluffe bluffer ver 6.30 2.36 2.03 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bluffent bluffer ver 6.30 2.36 0.12 0.14 ind:pre:3p; +bluffer bluffer ver 6.30 2.36 1.47 0.61 inf; +blufferais bluffer ver 6.30 2.36 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +blufferez bluffer ver 6.30 2.36 0.02 0.00 ind:fut:2p; +bluffes bluffer ver 6.30 2.36 0.60 0.14 ind:pre:2s; +bluffeur bluffeur nom m s 0.30 0.27 0.28 0.14 +bluffeurs bluffeur nom m p 0.30 0.27 0.02 0.07 +bluffeuses bluffeur nom f p 0.30 0.27 0.00 0.07 +bluffez bluffer ver 6.30 2.36 0.56 0.00 imp:pre:2p;ind:pre:2p; +bluffiez bluffer ver 6.30 2.36 0.03 0.00 ind:imp:2p; +bluffons bluffer ver 6.30 2.36 0.10 0.00 imp:pre:1p;ind:pre:1p; +bluffs bluff nom m p 3.02 1.62 0.02 0.07 +bluffé bluffer ver m s 6.30 2.36 0.42 0.14 par:pas; +bluffée bluffer ver f s 6.30 2.36 0.14 0.07 par:pas; +bluffées bluffer ver f p 6.30 2.36 0.00 0.07 par:pas; +bluffés bluffer ver m p 6.30 2.36 0.23 0.07 par:pas; +blême blême adj s 1.48 14.73 1.16 11.62 +blêmes blême adj p 1.48 14.73 0.31 3.11 +blêmi blêmir ver m s 0.42 2.70 0.01 0.47 par:pas; +blêmies blêmir ver f p 0.42 2.70 0.00 0.07 par:pas; +blêmir blêmir ver 0.42 2.70 0.14 0.54 inf; +blêmis blêmir ver 0.42 2.70 0.00 0.14 ind:pre:1s;ind:pas:1s; +blêmissais blêmir ver 0.42 2.70 0.00 0.07 ind:imp:1s; +blêmissait blêmir ver 0.42 2.70 0.00 0.20 ind:imp:3s; +blêmissant blêmir ver 0.42 2.70 0.00 0.07 par:pre; +blêmissante blêmissant adj f s 0.00 0.07 0.00 0.07 +blêmit blêmir ver 0.42 2.70 0.28 1.15 ind:pre:3s;ind:pas:3s; +blépharite blépharite nom f s 0.00 0.14 0.00 0.14 +blés blé nom m p 19.98 28.65 0.91 5.41 +blush blush nom m s 0.20 0.14 0.20 0.14 +bluter bluter ver 0.00 0.07 0.00 0.07 inf; +blutoir blutoir nom m s 0.00 0.07 0.00 0.07 +boîte boîte nom f s 88.81 134.05 74.58 94.32 +boîtes_repas boîtes_repas nom f p 0.00 0.07 0.00 0.07 +boîtes boîte nom f p 88.81 134.05 14.23 39.73 +boîtier boîtier nom m s 1.04 0.88 0.72 0.81 +boîtiers boîtier nom m p 1.04 0.88 0.32 0.07 +boa boa nom m s 1.62 2.30 1.56 1.96 +boas boa nom m p 1.62 2.30 0.06 0.34 +boat_people boat_people nom m 0.02 0.07 0.02 0.07 +bob bob nom m s 0.71 0.88 0.69 0.27 +bobard bobard nom m s 3.13 1.96 1.00 0.41 +bobards bobard nom m p 3.13 1.96 2.13 1.55 +bobbies bobbies nom m p 0.00 0.20 0.00 0.20 +bobby bobby nom m s 0.32 0.00 0.32 0.00 +bobinage bobinage nom m s 0.02 0.14 0.02 0.14 +bobinait bobiner ver 0.01 0.14 0.00 0.07 ind:imp:3s; +bobinard bobinard nom m s 0.00 0.41 0.00 0.34 +bobinards bobinard nom m p 0.00 0.41 0.00 0.07 +bobine bobine nom f s 3.63 5.88 1.69 2.91 +bobineau bobineau nom m s 0.03 0.07 0.03 0.07 +bobines bobine nom f p 3.63 5.88 1.94 2.97 +bobinette bobinette nom f s 0.14 0.20 0.11 0.20 +bobinettes bobinette nom f p 0.14 0.20 0.03 0.00 +bobineuse bobineur nom f s 0.00 0.20 0.00 0.14 +bobineuses bobineur nom f p 0.00 0.20 0.00 0.07 +bobino bobino nom m s 0.00 0.41 0.00 0.41 +bobo bobo nom m s 2.42 2.23 1.89 1.55 +bobonne bobonne nom f s 0.79 1.15 0.79 1.08 +bobonnes bobonne nom f p 0.79 1.15 0.00 0.07 +bâbord bâbord nom m s 1.97 0.95 1.97 0.95 +bobos bobo nom m p 2.42 2.23 0.53 0.68 +bobosse bobosse nom s 0.00 0.61 0.00 0.61 +bobs bob nom m p 0.71 0.88 0.02 0.61 +bobsleigh bobsleigh nom m s 0.91 0.20 0.91 0.20 +bobèche bobèche nom f s 0.00 0.14 0.00 0.07 +bobèches bobèche nom f p 0.00 0.14 0.00 0.07 +boc boc nom m s 0.00 0.07 0.00 0.07 +bocage bocage nom m s 0.14 2.84 0.14 2.50 +bocages bocage nom m p 0.14 2.84 0.00 0.34 +bocagères bocager adj f p 0.00 0.07 0.00 0.07 +bocal bocal nom m s 3.83 7.50 2.73 4.66 +bocard bocard nom m s 0.00 0.07 0.00 0.07 +bocaux bocal nom m p 3.83 7.50 1.10 2.84 +bâche bâche nom f s 2.40 13.38 2.30 10.07 +boche boche nom s 8.63 25.14 2.24 3.38 +bâcher bâcher ver 0.04 0.47 0.01 0.00 inf; +bâches bâche nom f p 2.40 13.38 0.10 3.31 +boches boche nom p 8.63 25.14 6.38 21.76 +bochiman bochiman nom m s 0.01 0.00 0.01 0.00 +bâché bâché adj m s 0.02 0.81 0.01 0.34 +bâchée bâcher ver f s 0.04 0.47 0.00 0.14 par:pas; +bâchées bâché adj f p 0.02 0.81 0.00 0.14 +bâchés bâché adj m p 0.02 0.81 0.01 0.27 +bock bock nom m s 0.11 1.35 0.10 0.88 +bocks bock nom m p 0.11 1.35 0.01 0.47 +bâcla bâcler ver 1.39 3.99 0.00 0.14 ind:pas:3s; +bâclai bâcler ver 1.39 3.99 0.00 0.07 ind:pas:1s; +bâclaient bâcler ver 1.39 3.99 0.00 0.07 ind:imp:3p; +bâclais bâcler ver 1.39 3.99 0.01 0.07 ind:imp:1s; +bâclait bâcler ver 1.39 3.99 0.01 0.20 ind:imp:3s; +bâclant bâcler ver 1.39 3.99 0.01 0.27 par:pre; +bâcle bâcler ver 1.39 3.99 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâcler bâcler ver 1.39 3.99 0.12 0.68 inf; +bâclera bâcler ver 1.39 3.99 0.00 0.07 ind:fut:3s; +bâclerait bâcler ver 1.39 3.99 0.00 0.07 cnd:pre:3s; +bâcles bâcler ver 1.39 3.99 0.02 0.07 ind:pre:2s; +bâcleurs bâcleur nom m p 0.00 0.07 0.00 0.07 +bâclez bâcler ver 1.39 3.99 0.01 0.07 ind:pre:2p; +bâclons bâcler ver 1.39 3.99 0.00 0.07 ind:pre:1p; +bâclé bâcler ver m s 1.39 3.99 0.82 1.01 par:pas; +bâclée bâcler ver f s 1.39 3.99 0.20 0.41 par:pas; +bâclées bâcler ver f p 1.39 3.99 0.01 0.07 par:pas; +bâclés bâcler ver m p 1.39 3.99 0.01 0.27 par:pas; +bocson bocson nom m s 0.00 0.27 0.00 0.27 +bodega bodega nom f s 0.65 0.14 0.63 0.14 +bodegas bodega nom f p 0.65 0.14 0.03 0.00 +bodhi bodhi nom f s 2.21 0.00 2.21 0.00 +bodhisattva bodhisattva nom m s 0.38 0.00 0.38 0.00 +bodo bodo nom m s 1.00 0.07 1.00 0.07 +body_building body_building nom m s 0.01 0.00 0.01 0.00 +body body nom m s 1.24 0.07 1.24 0.07 +bodybuilding bodybuilding nom m s 0.01 0.00 0.01 0.00 +boer boer nom m s 0.01 0.41 0.01 0.14 +boers boer nom m p 0.01 0.41 0.00 0.27 +boeuf boeuf nom m s 10.39 21.01 8.58 14.32 +boeufs boeuf nom m p 10.39 21.01 1.81 6.69 +bof bof ono 4.70 2.84 4.70 2.84 +bâfra bâfrer ver 0.72 1.96 0.00 0.14 ind:pas:3s; +bâfraient bâfrer ver 0.72 1.96 0.00 0.07 ind:imp:3p; +bâfrais bâfrer ver 0.72 1.96 0.00 0.07 ind:imp:1s; +bâfrait bâfrer ver 0.72 1.96 0.01 0.20 ind:imp:3s; +bâfrant bâfrer ver 0.72 1.96 0.00 0.20 par:pre; +bâfre bâfrer ver 0.72 1.96 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâfrements bâfrement nom m p 0.00 0.07 0.00 0.07 +bâfrer bâfrer ver 0.72 1.96 0.26 0.54 inf; +bâfres bâfrer ver 0.72 1.96 0.17 0.00 ind:pre:2s; +bâfreur bâfreur nom m s 0.07 0.07 0.05 0.07 +bâfreurs bâfreur nom m p 0.07 0.07 0.02 0.00 +bâfrez bâfrer ver 0.72 1.96 0.01 0.07 imp:pre:2p;ind:pre:2p; +bâfrèrent bâfrer ver 0.72 1.96 0.00 0.07 ind:pas:3p; +bâfré bâfrer ver m s 0.72 1.96 0.11 0.34 par:pas; +boggie boggie nom m s 0.02 0.41 0.02 0.00 +boggies boggie nom m p 0.02 0.41 0.00 0.41 +boghei boghei nom m s 0.02 2.64 0.02 2.64 +bogie bogie nom m s 0.14 0.00 0.14 0.00 +bogomiles bogomile nom m p 0.00 0.07 0.00 0.07 +bogue boguer ver 0.16 0.00 0.14 0.00 ind:pre:3s; +boguer boguer ver 0.16 0.00 0.01 0.00 inf; +bogues bogue nom p 0.17 0.47 0.05 0.07 +boguet boguet nom m s 0.00 0.07 0.00 0.07 +bohème bohème nom s 2.17 2.84 2.01 2.23 +bohèmes bohème nom p 2.17 2.84 0.16 0.61 +bohême bohême nom s 0.00 0.54 0.00 0.54 +bohémien bohémien nom m s 3.94 1.49 0.34 0.27 +bohémienne bohémien nom f s 3.94 1.49 2.80 0.41 +bohémiennes bohémienne nom f p 0.14 0.00 0.14 0.00 +bohémiens bohémien nom m p 3.94 1.49 0.79 0.68 +bâilla bâiller ver 1.87 18.51 0.01 3.85 ind:pas:3s; +bâillai bâiller ver 1.87 18.51 0.00 0.07 ind:pas:1s; +bâillaient bâiller ver 1.87 18.51 0.00 0.74 ind:imp:3p; +bâillais bâiller ver 1.87 18.51 0.01 0.34 ind:imp:1s; +bâillait bâiller ver 1.87 18.51 0.05 2.70 ind:imp:3s; +bâillant bâiller ver 1.87 18.51 0.10 3.58 par:pre; +bâillante bâillant adj f s 0.00 0.81 0.00 0.34 +bâillantes bâillant adj f p 0.00 0.81 0.00 0.20 +bâille bâiller ver 1.87 18.51 0.62 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâillement bâillement nom m s 0.53 4.19 0.50 3.11 +bâillements bâillement nom m p 0.53 4.19 0.03 1.08 +bâillent bâiller ver 1.87 18.51 0.29 0.74 ind:pre:3p; +bâiller bâiller ver 1.87 18.51 0.36 2.77 inf; +bâillera bâiller ver 1.87 18.51 0.01 0.07 ind:fut:3s; +bâillerez bâiller ver 1.87 18.51 0.14 0.00 ind:fut:2p; +bâilles bâiller ver 1.87 18.51 0.12 0.07 ind:pre:2s; +bâillez bâiller ver 1.87 18.51 0.14 0.07 imp:pre:2p;ind:pre:2p; +bâillâmes bâiller ver 1.87 18.51 0.00 0.07 ind:pas:1p; +bâillon bâillon nom m s 0.64 1.96 0.63 1.89 +bâillonna bâillonner ver 2.61 2.70 0.00 0.20 ind:pas:3s; +bâillonnait bâillonner ver 2.61 2.70 0.01 0.54 ind:imp:3s; +bâillonnant bâillonner ver 2.61 2.70 0.00 0.14 par:pre; +bâillonne bâillonner ver 2.61 2.70 0.60 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâillonnent bâillonner ver 2.61 2.70 0.00 0.07 ind:pre:3p; +bâillonner bâillonner ver 2.61 2.70 0.36 0.47 inf; +bâillonnera bâillonner ver 2.61 2.70 0.01 0.00 ind:fut:3s; +bâillonnerait bâillonner ver 2.61 2.70 0.02 0.00 cnd:pre:3s; +bâillonnez bâillonner ver 2.61 2.70 0.20 0.00 imp:pre:2p;ind:pre:2p; +bâillonnons bâillonner ver 2.61 2.70 0.01 0.00 imp:pre:1p; +bâillonné bâillonner ver m s 2.61 2.70 0.40 0.88 par:pas; +bâillonnée bâillonner ver f s 2.61 2.70 0.83 0.14 par:pas; +bâillonnés bâillonner ver m p 2.61 2.70 0.16 0.07 par:pas; +bâillons bâillon nom m p 0.64 1.96 0.01 0.07 +bâillèrent bâiller ver 1.87 18.51 0.00 0.07 ind:pas:3p; +bâillé bâiller ver m s 1.87 18.51 0.02 0.74 par:pas; +boira boire ver 339.06 274.32 2.97 1.55 ind:fut:3s; +boirai boire ver 339.06 274.32 3.13 1.55 ind:fut:1s; +boiraient boire ver 339.06 274.32 0.01 0.34 cnd:pre:3p; +boirais boire ver 339.06 274.32 2.37 1.22 cnd:pre:1s;cnd:pre:2s; +boirait boire ver 339.06 274.32 0.46 1.55 cnd:pre:3s; +boiras boire ver 339.06 274.32 1.14 0.74 ind:fut:2s; +boire boire ver 339.06 274.32 142.15 100.27 inf;; +boirez boire ver 339.06 274.32 0.84 0.54 ind:fut:2p; +boiriez boire ver 339.06 274.32 0.12 0.14 cnd:pre:2p; +boirions boire ver 339.06 274.32 0.03 0.27 cnd:pre:1p; +boirons boire ver 339.06 274.32 0.91 0.95 ind:fut:1p; +boiront boire ver 339.06 274.32 0.11 0.34 ind:fut:3p; +bois bois nom m 115.56 299.46 115.56 299.46 +boisaient boiser ver 0.06 1.42 0.00 0.07 ind:imp:3p; +boisait boiser ver 0.06 1.42 0.00 0.07 ind:imp:3s; +boisant boiser ver 0.06 1.42 0.00 0.07 par:pre; +boise boiser ver 0.06 1.42 0.01 0.07 ind:pre:3s; +boiserie boiserie nom f s 0.26 5.00 0.11 0.88 +boiseries boiserie nom f p 0.26 5.00 0.15 4.12 +boiseur boiseur nom m s 0.00 0.07 0.00 0.07 +boisseau boisseau nom m s 0.42 0.61 0.26 0.54 +boisseaux boisseau nom m p 0.42 0.61 0.16 0.07 +boisselier boisselier nom m s 0.27 0.00 0.27 0.00 +boisson boisson nom f s 18.55 13.24 11.73 7.36 +boissonnée boissonner ver f s 0.00 0.07 0.00 0.07 par:pas; +boissons boisson nom f p 18.55 13.24 6.82 5.88 +boisé boisé adj m s 0.46 3.04 0.15 0.61 +boisée boisé adj f s 0.46 3.04 0.17 1.28 +boisées boisé adj f p 0.46 3.04 0.12 0.95 +boisés boisé adj m p 0.46 3.04 0.02 0.20 +boit boire ver 339.06 274.32 25.63 21.08 ind:pre:3s; +boitaient boiter ver 15.43 7.77 0.01 0.41 ind:imp:3p; +boitais boiter ver 15.43 7.77 0.18 0.07 ind:imp:1s;ind:imp:2s; +boitait boiter ver 15.43 7.77 0.64 1.96 ind:imp:3s; +boitant boiter ver 15.43 7.77 0.24 1.69 par:pre; +boite boiter ver 15.43 7.77 11.83 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boitement boitement nom m s 0.05 0.00 0.05 0.00 +boitent boiter ver 15.43 7.77 0.04 0.07 ind:pre:3p; +boiter boiter ver 15.43 7.77 0.36 0.81 inf; +boitera boiter ver 15.43 7.77 0.05 0.00 ind:fut:3s; +boiterai boiter ver 15.43 7.77 0.02 0.07 ind:fut:1s; +boiteraient boiter ver 15.43 7.77 0.00 0.07 cnd:pre:3p; +boiterait boiter ver 15.43 7.77 0.00 0.07 cnd:pre:3s; +boiteras boiter ver 15.43 7.77 0.16 0.00 ind:fut:2s; +boiterie boiterie nom f s 0.00 0.54 0.00 0.54 +boites boiter ver 15.43 7.77 1.63 0.27 ind:pre:2s; +boiteuse boiteux adj f s 2.83 4.39 0.78 1.96 +boiteuses boiteux adj f p 2.83 4.39 0.03 0.20 +boiteux boiteux nom m 2.32 2.03 2.32 2.03 +boitez boiter ver 15.43 7.77 0.10 0.14 ind:pre:2p; +boitiez boiter ver 15.43 7.77 0.04 0.00 ind:imp:2p; +boitillait boitiller ver 0.04 1.82 0.02 0.41 ind:imp:3s; +boitillant boitiller ver 0.04 1.82 0.00 1.01 par:pre; +boitille boitiller ver 0.04 1.82 0.01 0.27 ind:pre:1s;ind:pre:3s; +boitillement boitillement nom m s 0.03 0.14 0.03 0.07 +boitillements boitillement nom m p 0.03 0.14 0.00 0.07 +boitiller boitiller ver 0.04 1.82 0.01 0.14 inf; +boité boiter ver m s 15.43 7.77 0.13 0.27 par:pas; +boive boire ver 339.06 274.32 2.86 1.96 sub:pre:1s;sub:pre:3s; +boivent boire ver 339.06 274.32 5.47 5.95 ind:pre:3p; +boives boire ver 339.06 274.32 0.71 0.20 sub:pre:2s; +bol bol nom m s 17.62 25.14 16.93 20.07 +bola bola nom f s 0.25 0.47 0.11 0.27 +bolas bola nom f p 0.25 0.47 0.14 0.20 +bolchevik bolchevik nom s 2.11 1.42 0.36 0.27 +bolcheviks bolchevik nom p 2.11 1.42 1.75 1.15 +bolchevique bolchevique adj s 1.24 1.49 0.87 0.74 +bolcheviques bolchevique adj p 1.24 1.49 0.37 0.74 +bolchevisme bolchevisme nom m s 0.11 1.08 0.11 1.08 +bolcheviste bolcheviste adj s 0.00 0.14 0.00 0.07 +bolchevistes bolcheviste adj p 0.00 0.14 0.00 0.07 +bolcho bolcho nom s 0.04 0.00 0.04 0.00 +bold bold adj m s 0.04 0.00 0.04 0.00 +boldo boldo nom m s 0.00 0.20 0.00 0.20 +bolduc bolduc nom m s 0.00 0.34 0.00 0.34 +bolet bolet nom m s 0.00 0.81 0.00 0.41 +bolets bolet nom m p 0.00 0.81 0.00 0.41 +bolge bolge nom f s 0.00 0.07 0.00 0.07 +bolide bolide nom m s 0.49 2.70 0.38 1.82 +bolides bolide nom m p 0.49 2.70 0.11 0.88 +bolivar bolivar nom m s 0.09 0.47 0.09 0.47 +bolivien bolivien adj m s 0.22 0.07 0.01 0.00 +bolivienne bolivien nom f s 0.39 0.00 0.27 0.00 +boliviens bolivien nom m p 0.39 0.00 0.11 0.00 +bolognais bolognais adj m p 0.25 0.34 0.00 0.07 +bolognaise bolognais adj f s 0.25 0.34 0.23 0.20 +bolognaises bolognais adj f p 0.25 0.34 0.02 0.07 +bolonaise bolonais adj f s 0.01 0.00 0.01 0.00 +bols bol nom m p 17.62 25.14 0.69 5.07 +bolée bolée nom f s 0.01 0.27 0.01 0.20 +bolées bolée nom f p 0.01 0.27 0.00 0.07 +boléro boléro nom m s 0.56 1.22 0.56 1.08 +boléros boléro nom m p 0.56 1.22 0.00 0.14 +bomba bomber ver 1.34 5.74 0.27 0.41 ind:pas:3s; +bombage bombage nom m s 0.00 0.20 0.00 0.20 +bombaient bomber ver 1.34 5.74 0.00 0.20 ind:imp:3p; +bombais bomber ver 1.34 5.74 0.00 0.07 ind:imp:1s; +bombait bomber ver 1.34 5.74 0.01 0.81 ind:imp:3s; +bombance bombance nom f s 0.23 0.54 0.23 0.47 +bombances bombance nom f p 0.23 0.54 0.00 0.07 +bombant bomber ver 1.34 5.74 0.04 0.88 par:pre; +bombarda bombarder ver 10.86 8.65 0.01 0.54 ind:pas:3s; +bombardaient bombarder ver 10.86 8.65 0.24 0.47 ind:imp:3p; +bombardais bombarder ver 10.86 8.65 0.01 0.14 ind:imp:1s;ind:imp:2s; +bombardait bombarder ver 10.86 8.65 0.19 0.88 ind:imp:3s; +bombardant bombarder ver 10.86 8.65 0.18 0.41 par:pre; +bombarde bombarder ver 10.86 8.65 0.96 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bombardement bombardement nom m s 6.45 17.16 3.96 11.22 +bombardements bombardement nom m p 6.45 17.16 2.48 5.95 +bombardent bombarder ver 10.86 8.65 1.68 0.81 ind:pre:3p; +bombarder bombarder ver 10.86 8.65 2.42 2.09 inf; +bombardera bombarder ver 10.86 8.65 0.15 0.00 ind:fut:3s; +bombarderai bombarder ver 10.86 8.65 0.15 0.00 ind:fut:1s; +bombarderaient bombarder ver 10.86 8.65 0.01 0.07 cnd:pre:3p; +bombarderais bombarder ver 10.86 8.65 0.02 0.00 cnd:pre:1s; +bombarderait bombarder ver 10.86 8.65 0.02 0.07 cnd:pre:3s; +bombarderons bombarder ver 10.86 8.65 0.02 0.00 ind:fut:1p; +bombarderont bombarder ver 10.86 8.65 0.23 0.00 ind:fut:3p; +bombardes bombarde nom f p 0.19 0.95 0.14 0.54 +bombardez bombarder ver 10.86 8.65 0.10 0.00 imp:pre:2p;ind:pre:2p; +bombardier bombardier nom m s 3.02 3.31 0.89 0.68 +bombardiers bombardier nom m p 3.02 3.31 2.13 2.64 +bombardions bombarder ver 10.86 8.65 0.01 0.00 ind:imp:1p; +bombardâmes bombarder ver 10.86 8.65 0.00 0.07 ind:pas:1p; +bombardon bombardon nom m s 0.27 0.00 0.14 0.00 +bombardons bombarder ver 10.86 8.65 0.14 0.07 imp:pre:1p;ind:pre:1p; +bombardèrent bombarder ver 10.86 8.65 0.00 0.07 ind:pas:3p; +bombardé bombarder ver m s 10.86 8.65 2.33 1.42 par:pas; +bombardée bombarder ver f s 10.86 8.65 0.83 0.27 par:pas; +bombardées bombarder ver f p 10.86 8.65 0.25 0.20 par:pas; +bombardés bombarder ver m p 10.86 8.65 0.89 0.68 par:pas; +bombas bomber ver 1.34 5.74 0.00 0.07 ind:pas:2s; +bombasses bomber ver 1.34 5.74 0.01 0.00 sub:imp:2s; +bombe bombe nom f s 64.39 30.81 48.70 15.00 +bombements bombement nom m p 0.00 0.07 0.00 0.07 +bombent bomber ver 1.34 5.74 0.00 0.14 ind:pre:3p; +bomber bomber ver 1.34 5.74 0.34 0.61 inf; +bombes_test bombes_test nom f p 0.01 0.00 0.01 0.00 +bombes bombe nom f p 64.39 30.81 15.70 15.81 +bombeur bombeur nom m s 0.03 0.00 0.03 0.00 +bombez bomber ver 1.34 5.74 0.08 0.00 imp:pre:2p; +bombillement bombillement nom m s 0.00 0.07 0.00 0.07 +bombinette bombinette nom f s 0.00 0.20 0.00 0.07 +bombinettes bombinette nom f p 0.00 0.20 0.00 0.14 +bombonne bombonne nom f s 0.23 0.47 0.16 0.34 +bombonnes bombonne nom f p 0.23 0.47 0.08 0.14 +bombèrent bomber ver 1.34 5.74 0.00 0.07 ind:pas:3p; +bombé bombé adj m s 0.30 5.61 0.16 2.43 +bombée bombé adj f s 0.30 5.61 0.03 1.49 +bombées bombé adj f p 0.30 5.61 0.11 0.81 +bombés bombé adj m p 0.30 5.61 0.00 0.88 +bombyx bombyx nom m 0.12 0.00 0.12 0.00 +bon_papa bon_papa nom m s 0.07 1.55 0.07 1.55 +bon bon ono 521.22 109.86 521.22 109.86 +bonace bonace nom f s 0.00 0.14 0.00 0.07 +bonaces bonace nom f p 0.00 0.14 0.00 0.07 +bonapartiste bonapartiste nom s 0.28 0.14 0.14 0.07 +bonapartistes bonapartiste nom p 0.28 0.14 0.14 0.07 +bonard bonard adj m s 0.01 0.34 0.01 0.27 +bonardes bonard adj f p 0.01 0.34 0.00 0.07 +bonasse bonasse adj s 0.08 2.03 0.08 1.62 +bonassement bonassement adv 0.00 0.07 0.00 0.07 +bonasserie bonasserie nom f s 0.00 0.07 0.00 0.07 +bonasses bonasse adj p 0.08 2.03 0.00 0.41 +bonbon bonbon nom m s 23.45 15.00 6.89 3.72 +bonbonne bonbonne nom f s 0.47 2.43 0.33 1.62 +bonbonnes bonbonne nom f p 0.47 2.43 0.15 0.81 +bonbonnière bonbonnière nom f s 0.14 1.35 0.14 1.08 +bonbonnières bonbonnière nom f p 0.14 1.35 0.00 0.27 +bonbons bonbon nom m p 23.45 15.00 16.55 11.28 +bond bond nom m s 4.69 25.74 3.44 20.07 +bondît bondir ver 5.10 35.41 0.00 0.20 sub:imp:3s; +bondage bondage nom m s 0.41 0.07 0.41 0.00 +bondages bondage nom m p 0.41 0.07 0.00 0.07 +bondait bonder ver 1.84 2.30 0.00 0.07 ind:imp:3s; +bonde bonde nom f s 0.24 0.61 0.23 0.54 +bonder bonder ver 1.84 2.30 0.09 0.00 inf; +bondes bonde nom f p 0.24 0.61 0.01 0.07 +bondi bondir ver m s 5.10 35.41 0.91 3.85 par:pas; +bondieusard bondieusard nom m s 0.01 0.00 0.01 0.00 +bondieuserie bondieuserie nom f s 0.05 0.68 0.00 0.27 +bondieuseries bondieuserie nom f p 0.05 0.68 0.05 0.41 +bondieuses bondieuser ver 0.00 0.07 0.00 0.07 ind:pre:2s; +bondir bondir ver 5.10 35.41 2.11 9.05 inf; +bondira bondir ver 5.10 35.41 0.16 0.14 ind:fut:3s; +bondirais bondir ver 5.10 35.41 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +bondirait bondir ver 5.10 35.41 0.02 0.20 cnd:pre:3s; +bondirent bondir ver 5.10 35.41 0.11 0.88 ind:pas:3p; +bondis bondir ver m p 5.10 35.41 0.34 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bondissaient bondir ver 5.10 35.41 0.03 0.88 ind:imp:3p; +bondissais bondir ver 5.10 35.41 0.04 0.27 ind:imp:1s;ind:imp:2s; +bondissait bondir ver 5.10 35.41 0.17 2.57 ind:imp:3s; +bondissant bondir ver 5.10 35.41 0.20 2.70 par:pre; +bondissante bondissant adj f s 0.34 2.77 0.09 0.95 +bondissantes bondissant adj f p 0.34 2.77 0.14 0.68 +bondissants bondissant adj m p 0.34 2.77 0.02 0.27 +bondisse bondir ver 5.10 35.41 0.02 0.07 sub:pre:1s;sub:pre:3s; +bondissement bondissement nom m s 0.00 0.61 0.00 0.54 +bondissements bondissement nom m p 0.00 0.61 0.00 0.07 +bondissent bondir ver 5.10 35.41 0.04 0.88 ind:pre:3p; +bondissez bondir ver 5.10 35.41 0.11 0.07 imp:pre:2p;ind:pre:2p; +bondissons bondir ver 5.10 35.41 0.00 0.14 imp:pre:1p;ind:pre:1p; +bondit bondir ver 5.10 35.41 0.81 11.96 ind:pre:3s;ind:pas:3s; +bondrée bondrée nom f s 0.01 0.20 0.01 0.20 +bonds bond nom m p 4.69 25.74 1.25 5.68 +bondé bonder ver m s 1.84 2.30 1.07 1.15 par:pas; +bondée bonder ver f s 1.84 2.30 0.33 0.34 par:pas; +bondées bonder ver f p 1.84 2.30 0.19 0.27 par:pas; +bondés bonder ver m p 1.84 2.30 0.17 0.47 par:pas; +bongo bongo nom m s 0.21 0.14 0.09 0.07 +bongos bongo nom m p 0.21 0.14 0.12 0.07 +bonheur_du_jour bonheur_du_jour nom m s 0.02 0.14 0.02 0.07 +bonheur bonheur nom m s 78.74 162.36 78.34 156.35 +bonheur_du_jour bonheur_du_jour nom m p 0.02 0.14 0.00 0.07 +bonheurs bonheur nom m p 78.74 162.36 0.41 6.01 +bonhomie bonhomie nom f s 0.02 4.12 0.02 4.12 +bonhomme bonhomme nom m s 10.57 29.80 9.96 26.01 +bonhommes bonhomme adj m p 4.85 4.46 0.47 0.14 +boni boni nom m s 0.01 0.68 0.01 0.54 +boniche boniche nom f s 1.28 1.22 1.16 0.81 +boniches boniche nom f p 1.28 1.22 0.12 0.41 +bonifiaient bonifier ver 0.14 0.14 0.00 0.07 ind:imp:3p; +bonification bonification nom f s 0.00 0.07 0.00 0.07 +bonifier bonifier ver 0.14 0.14 0.08 0.00 inf; +bonifierait bonifier ver 0.14 0.14 0.00 0.07 cnd:pre:3s; +bonifiez bonifier ver 0.14 0.14 0.01 0.00 ind:pre:2p; +bonifié bonifier ver m s 0.14 0.14 0.04 0.00 par:pas; +bonifiée bonifier ver f s 0.14 0.14 0.01 0.00 par:pas; +boniment boniment nom m s 1.30 3.99 0.65 1.55 +bonimentait bonimenter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +bonimente bonimenter ver 0.00 0.20 0.00 0.07 ind:pre:3s; +bonimenter bonimenter ver 0.00 0.20 0.00 0.07 inf; +bonimenteur bonimenteur nom m s 0.18 0.47 0.18 0.14 +bonimenteurs bonimenteur nom m p 0.18 0.47 0.00 0.34 +boniments boniment nom m p 1.30 3.99 0.65 2.43 +bonir bonir ver 0.00 1.08 0.00 0.74 inf; +bonis boni nom m p 0.01 0.68 0.00 0.14 +bonissait bonir ver 0.00 1.08 0.00 0.14 ind:imp:3s; +bonisse bonir ver 0.00 1.08 0.00 0.07 sub:pre:1s; +bonit bonir ver 0.00 1.08 0.00 0.14 ind:pre:3s; +bonjour bonjour nom m s 570.57 51.55 569.88 50.74 +bonjours bonjour nom m p 570.57 51.55 0.69 0.81 +bonnard bonnard adj m s 0.18 1.62 0.18 1.08 +bonnarde bonnard adj f s 0.18 1.62 0.00 0.27 +bonnardes bonnard adj f p 0.18 1.62 0.00 0.07 +bonnards bonnard adj m p 0.18 1.62 0.00 0.20 +bonne_maman bonne_maman nom f s 0.14 2.03 0.14 2.03 +bonne bon adj_sup f s 1554.44 789.66 578.93 294.53 +bonnement bonnement adv 1.37 4.66 1.37 4.66 +bonnes bon adj_sup f p 1554.44 789.66 71.25 61.76 +bonnet bonnet nom m s 8.37 18.58 6.62 14.66 +bonneteau bonneteau nom m s 0.02 1.35 0.02 1.35 +bonneter bonneter ver 0.00 0.07 0.00 0.07 inf; +bonneterie bonneterie nom f s 0.14 0.61 0.14 0.54 +bonneteries bonneterie nom f p 0.14 0.61 0.00 0.07 +bonneteur bonneteur nom m s 0.01 0.07 0.01 0.00 +bonneteurs bonneteur nom m p 0.01 0.07 0.00 0.07 +bonnets bonnet nom m p 8.37 18.58 1.75 3.92 +bonnette bonnette nom f s 0.14 0.14 0.14 0.00 +bonnettes bonnette nom f p 0.14 0.14 0.00 0.14 +bonni bonnir ver m s 6.67 2.09 0.01 0.27 par:pas; +bonniche bonniche nom f s 0.45 2.91 0.43 1.96 +bonniches bonniche nom f p 0.45 2.91 0.02 0.95 +bonnie bonnir ver f s 6.67 2.09 6.66 0.00 par:pas; +bonnir bonnir ver 6.67 2.09 0.00 0.95 inf; +bonnis bonnir ver 6.67 2.09 0.00 0.07 ind:pre:1s; +bonnisse bonnir ver 6.67 2.09 0.00 0.14 sub:pre:3s; +bonnissent bonnir ver 6.67 2.09 0.00 0.07 ind:pre:3p; +bonnit bonnir ver 6.67 2.09 0.00 0.61 ind:pre:3s; +bon_cadeaux bon_cadeaux adv 0.01 0.00 0.01 0.00 +bon_chrétien bon_chrétien nom m p 0.00 0.07 0.00 0.07 +bons bon adj_sup m p 1554.44 789.66 67.97 57.09 +bonsaï bonsaï nom m s 0.23 0.14 0.22 0.14 +bonsaïs bonsaï nom m p 0.23 0.14 0.01 0.00 +bonshommes bonhomme nom m p 10.57 29.80 0.60 3.78 +bonsoir bonsoir nom m s 161.17 22.23 161.16 22.03 +bonsoirs bonsoir nom m p 161.17 22.23 0.01 0.20 +bonté bonté nom f s 17.88 19.80 17.31 18.65 +bontés bonté nom f p 17.88 19.80 0.56 1.15 +bonus bonus nom m 3.80 0.41 3.80 0.41 +bonzaï bonzaï nom m s 0.14 0.20 0.14 0.20 +bonze bonze nom m s 0.91 1.55 0.89 1.22 +bonzes bonze nom m p 0.91 1.55 0.03 0.34 +boogie_woogie boogie_woogie nom m s 0.28 0.07 0.28 0.07 +book book nom m s 2.89 0.54 1.50 0.41 +bookmaker bookmaker nom m s 2.07 0.20 1.62 0.14 +bookmakers bookmaker nom m p 2.07 0.20 0.45 0.07 +books book nom m p 2.89 0.54 1.39 0.14 +boom boom nom m s 2.83 0.41 2.81 0.41 +boomer boomer nom m s 2.19 0.07 2.19 0.07 +boomerang boomerang nom m s 2.17 0.68 2.17 0.68 +booms boom nom m p 2.83 0.41 0.02 0.00 +booster booster nom m s 0.63 0.00 0.52 0.00 +boosters booster nom m p 0.63 0.00 0.11 0.00 +bootlegger bootlegger nom m s 0.22 0.07 0.10 0.00 +bootleggers bootlegger nom m p 0.22 0.07 0.13 0.07 +boots boots nom m p 0.54 0.95 0.54 0.95 +bop bop nom m s 0.19 0.27 0.19 0.27 +boqueteau boqueteau nom m s 0.02 3.04 0.02 1.49 +boqueteaux boqueteau nom m p 0.02 3.04 0.00 1.55 +boquillons boquillon nom m p 0.00 0.14 0.00 0.14 +bora bora nom s 0.01 0.14 0.01 0.14 +borax borax nom m 0.16 0.07 0.16 0.07 +borborygme borborygme nom m s 0.28 1.96 0.00 0.47 +borborygmes borborygme nom m p 0.28 1.96 0.28 1.49 +borchtch borchtch nom m s 0.00 0.07 0.00 0.07 +bord bord nom m s 79.90 228.11 77.06 197.36 +borda border ver 3.75 34.46 0.00 0.20 ind:pas:3s; +bordage bordage nom m s 0.02 0.47 0.00 0.47 +bordages bordage nom m p 0.02 0.47 0.02 0.00 +bordai border ver 3.75 34.46 0.00 0.07 ind:pas:1s; +bordaient border ver 3.75 34.46 0.04 2.43 ind:imp:3p; +bordait border ver 3.75 34.46 0.03 2.03 ind:imp:3s; +bordant border ver 3.75 34.46 0.17 2.50 par:pre; +borde border ver 3.75 34.46 0.72 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s; +bordeau bordeau nom m s 0.02 0.00 0.02 0.00 +bordeaux bordeaux adj 0.70 1.62 0.70 1.62 +bordel bordel nom m s 98.77 21.89 97.84 18.99 +bordelais bordelais adj m 0.06 1.01 0.00 0.61 +bordelaise bordelais nom f s 0.14 1.28 0.14 1.01 +bordelaises bordelais nom f p 0.14 1.28 0.00 0.20 +bordelières bordelier nom f p 0.00 0.07 0.00 0.07 +bordels bordel nom m p 98.77 21.89 0.93 2.91 +bordent border ver 3.75 34.46 0.26 2.91 ind:pre:3p; +border border ver 3.75 34.46 0.95 1.82 imp:pre:2p;inf; +bordera border ver 3.75 34.46 0.03 0.00 ind:fut:3s; +borderait border ver 3.75 34.46 0.10 0.07 cnd:pre:3s; +bordereau bordereau nom m s 1.09 0.68 0.71 0.27 +bordereaux bordereau nom m p 1.09 0.68 0.38 0.41 +borderie borderie nom f s 0.01 0.00 0.01 0.00 +borderiez border ver 3.75 34.46 0.01 0.00 cnd:pre:2p; +borderline borderline nom m s 0.14 0.00 0.14 0.00 +bordes border ver 3.75 34.46 0.04 0.07 ind:pre:2s;;ind:pre:2s; +bordez border ver 3.75 34.46 0.20 0.00 imp:pre:2p; +bordier bordier adj m s 0.00 0.07 0.00 0.07 +bordille bordille nom f s 0.00 0.07 0.00 0.07 +bordj bordj nom m s 0.00 0.74 0.00 0.74 +bords bord nom m p 79.90 228.11 2.84 30.74 +bordèrent border ver 3.75 34.46 0.00 0.07 ind:pas:3p; +bordé border ver m s 3.75 34.46 0.78 5.14 par:pas; +bordée bordée nom f s 0.39 3.45 0.38 2.23 +bordées border ver f p 3.75 34.46 0.10 3.72 par:pas; +bordélique bordélique adj s 0.65 0.61 0.60 0.54 +bordéliques bordélique adj f p 0.65 0.61 0.04 0.07 +bordéliser bordéliser ver 0.00 0.07 0.00 0.07 inf; +bordurant bordurer ver 0.00 0.47 0.00 0.07 par:pre; +bordure bordure nom f s 1.11 12.91 1.03 11.62 +bordurer bordurer ver 0.00 0.47 0.00 0.14 inf; +bordures bordure nom f p 1.11 12.91 0.08 1.28 +borduré bordurer ver m s 0.00 0.47 0.00 0.14 par:pas; +bordurée bordurer ver f s 0.00 0.47 0.00 0.14 par:pas; +bordés border ver m p 3.75 34.46 0.01 3.31 par:pas; +bore bore nom m s 0.17 0.00 0.17 0.00 +borgne borgne adj s 1.80 3.99 1.67 3.45 +borgnes borgne adj p 1.80 3.99 0.14 0.54 +borgnotaient borgnoter ver 0.00 0.74 0.00 0.07 ind:imp:3p; +borgnotant borgnoter ver 0.00 0.74 0.00 0.07 par:pre; +borgnote borgnoter ver 0.00 0.74 0.00 0.41 ind:pre:1s;ind:pre:3s; +borgnoté borgnoter ver m s 0.00 0.74 0.00 0.20 par:pas; +borie borie nom f s 0.00 0.61 0.00 0.61 +borique borique adj m s 0.11 0.00 0.11 0.00 +borna borner ver 2.19 13.24 0.00 1.28 ind:pas:3s; +bornage bornage nom m s 0.10 0.61 0.00 0.61 +bornages bornage nom m p 0.10 0.61 0.10 0.00 +bornai borner ver 2.19 13.24 0.00 0.34 ind:pas:1s; +bornaient borner ver 2.19 13.24 0.01 0.68 ind:imp:3p; +bornais borner ver 2.19 13.24 0.01 0.20 ind:imp:1s; +bornait borner ver 2.19 13.24 0.01 2.97 ind:imp:3s; +bornant borner ver 2.19 13.24 0.00 1.42 par:pre; +borne_fontaine borne_fontaine nom f s 0.00 0.20 0.00 0.07 +borne borne nom f s 8.35 20.61 1.69 8.04 +bornent borner ver 2.19 13.24 0.02 0.34 ind:pre:3p; +borner borner ver 2.19 13.24 0.29 0.81 inf; +bornera borner ver 2.19 13.24 0.01 0.00 ind:fut:3s; +bornerai borner ver 2.19 13.24 0.04 0.00 ind:fut:1s; +borneraient borner ver 2.19 13.24 0.00 0.07 cnd:pre:3p; +bornerait borner ver 2.19 13.24 0.00 0.14 cnd:pre:3s; +bornerons borner ver 2.19 13.24 0.00 0.07 ind:fut:1p; +borne_fontaine borne_fontaine nom f p 0.00 0.20 0.00 0.14 +bornes borne nom f p 8.35 20.61 6.66 12.57 +bornez borner ver 2.19 13.24 0.01 0.00 imp:pre:2p; +bornions borner ver 2.19 13.24 0.00 0.07 ind:imp:1p; +bornât borner ver 2.19 13.24 0.00 0.07 sub:imp:3s; +bornèrent borner ver 2.19 13.24 0.02 0.14 ind:pas:3p; +borné borné adj m s 3.13 4.66 2.07 1.96 +bornée borné adj f s 3.13 4.66 0.48 1.08 +bornées borner ver f p 2.19 13.24 0.01 0.00 par:pas; +bornés borné adj m p 3.13 4.66 0.58 1.22 +borough borough nom m s 0.18 0.00 0.18 0.00 +borsalino borsalino nom m s 0.00 0.07 0.00 0.07 +bortch bortch nom m s 0.02 0.00 0.02 0.00 +bortsch bortsch nom m s 1.03 0.27 1.03 0.27 +boréal boréal adj m s 0.57 1.49 0.11 0.34 +boréale boréal adj f s 0.57 1.49 0.38 0.88 +boréales boréal adj f p 0.57 1.49 0.08 0.27 +borée borée nom f s 0.14 0.00 0.14 0.00 +bosco bosco nom m s 0.04 1.01 0.04 1.01 +boscotte boscot adj f s 0.00 0.20 0.00 0.20 +boskoop boskoop nom f s 0.00 0.14 0.00 0.14 +bosniaque bosniaque adj s 0.82 0.07 0.78 0.00 +bosniaques bosniaque nom p 0.30 0.27 0.20 0.27 +bosnien bosnien adj m s 0.00 0.07 0.00 0.07 +bosquet bosquet nom m s 0.80 5.81 0.47 2.64 +bosquets bosquet nom m p 0.80 5.81 0.32 3.18 +boss boss nom m 13.45 2.50 13.45 2.50 +bossa_nova bossa_nova nom f s 0.12 0.07 0.12 0.07 +bossa bosser ver 76.28 10.95 0.89 0.00 ind:pas:3s; +bossage bossage nom m s 0.01 0.00 0.01 0.00 +bossaient bosser ver 76.28 10.95 0.33 0.20 ind:imp:3p; +bossais bosser ver 76.28 10.95 2.79 0.20 ind:imp:1s;ind:imp:2s; +bossait bosser ver 76.28 10.95 2.56 1.22 ind:imp:3s; +bossant bosser ver 76.28 10.95 0.46 0.14 par:pre; +bosse bosser ver 76.28 10.95 21.92 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bossela bosseler ver 0.05 2.36 0.01 0.07 ind:pas:3s; +bosselaient bosseler ver 0.05 2.36 0.00 0.34 ind:imp:3p; +bosselait bosseler ver 0.05 2.36 0.00 0.07 ind:imp:3s; +bosseler bosseler ver 0.05 2.36 0.00 0.07 inf; +bossellement bossellement nom m s 0.00 0.14 0.00 0.07 +bossellements bossellement nom m p 0.00 0.14 0.00 0.07 +bosselé bosselé adj m s 0.12 2.50 0.09 1.28 +bosselée bosselé adj f s 0.12 2.50 0.03 0.34 +bosselées bosseler ver f p 0.05 2.36 0.03 0.27 par:pas; +bosselure bosselure nom f s 0.01 0.07 0.01 0.07 +bosselés bosselé adj m p 0.12 2.50 0.01 0.68 +bossent bosser ver 76.28 10.95 1.93 1.01 ind:pre:3p; +bosser bosser ver 76.28 10.95 26.82 3.78 inf; +bossera bosser ver 76.28 10.95 0.24 0.20 ind:fut:3s; +bosserai bosser ver 76.28 10.95 0.55 0.00 ind:fut:1s; +bosserais bosser ver 76.28 10.95 0.39 0.00 cnd:pre:1s;cnd:pre:2s; +bosserait bosser ver 76.28 10.95 0.18 0.07 cnd:pre:3s; +bosseras bosser ver 76.28 10.95 0.51 0.00 ind:fut:2s; +bosserez bosser ver 76.28 10.95 0.06 0.00 ind:fut:2p; +bosses bosser ver 76.28 10.95 6.95 0.47 ind:pre:2s; +bosseur bosseur nom m s 0.59 0.34 0.53 0.00 +bosseurs bosseur adj m p 0.34 0.14 0.14 0.07 +bosseuse bosseur nom f s 0.59 0.34 0.02 0.20 +bossez bosser ver 76.28 10.95 1.97 0.00 imp:pre:2p;ind:pre:2p; +bossiez bosser ver 76.28 10.95 0.14 0.00 ind:imp:2p; +bossions bosser ver 76.28 10.95 0.01 0.07 ind:imp:1p; +bossoir bossoir nom m s 0.09 0.27 0.05 0.07 +bossoirs bossoir nom m p 0.09 0.27 0.04 0.20 +bosson bosson nom m s 0.02 0.07 0.00 0.07 +bossons bosser ver 76.28 10.95 0.02 0.00 ind:pre:1p; +bossé bosser ver m s 76.28 10.95 7.56 0.95 par:pas; +bossu bossu nom m s 4.74 1.82 4.19 1.69 +bossuaient bossuer ver 0.00 0.54 0.00 0.14 ind:imp:3p; +bossue bossu adj f s 1.97 4.66 0.35 1.89 +bossues bossu adj f p 1.97 4.66 0.01 0.41 +bossus bossu nom m p 4.74 1.82 0.55 0.14 +bossué bossué adj m s 0.00 0.61 0.00 0.34 +bossuée bossué adj f s 0.00 0.61 0.00 0.14 +bossuées bossuer ver f p 0.00 0.54 0.00 0.14 par:pas; +bossués bossué adj m p 0.00 0.61 0.00 0.14 +boston boston nom m s 0.44 0.47 0.44 0.47 +bostonien bostonien nom m s 0.04 0.20 0.02 0.07 +bostonienne bostonien adj f s 0.04 0.27 0.02 0.14 +bostoniens bostonien nom m p 0.04 0.20 0.02 0.14 +bostonner bostonner ver 0.00 0.07 0.00 0.07 inf; +bât bât nom m s 0.12 2.57 0.12 2.36 +bot bot adj m s 0.52 0.54 0.39 0.54 +botanique botanique adj s 0.88 0.74 0.70 0.47 +botaniquement botaniquement adv 0.01 0.00 0.01 0.00 +botaniques botanique adj p 0.88 0.74 0.17 0.27 +botaniste botaniste nom s 0.61 0.74 0.47 0.61 +botanistes botaniste nom p 0.61 0.74 0.14 0.14 +bâtard bâtard nom m s 13.66 11.89 9.89 9.12 +bâtarde bâtard nom f s 13.66 11.89 0.32 0.34 +bâtardes bâtard adj f p 2.69 5.74 0.01 0.20 +bâtardise bâtardise nom f s 0.01 3.04 0.01 2.97 +bâtardises bâtardise nom f p 0.01 3.04 0.00 0.07 +bâtards bâtard nom m p 13.66 11.89 3.45 2.23 +bote bot adj f s 0.52 0.54 0.13 0.00 +bâter bâter ver 0.16 0.34 0.14 0.07 inf; +bâti bâtir ver m s 18.55 24.53 5.47 5.54 par:pas; +bâtie bâtir ver f s 18.55 24.53 1.58 4.32 par:pas; +bâties bâtir ver f p 18.55 24.53 0.30 1.89 par:pas; +bâtiment bâtiment nom m s 27.58 36.82 22.73 19.93 +bâtiments bâtiment nom m p 27.58 36.82 4.85 16.89 +bâtir bâtir ver 18.55 24.53 5.62 8.24 inf; +bâtira bâtir ver 18.55 24.53 0.18 0.07 ind:fut:3s; +bâtirai bâtir ver 18.55 24.53 1.38 0.07 ind:fut:1s; +bâtirais bâtir ver 18.55 24.53 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +bâtirait bâtir ver 18.55 24.53 0.16 0.14 cnd:pre:3s; +bâtirent bâtir ver 18.55 24.53 0.03 0.14 ind:pas:3p; +bâtirions bâtir ver 18.55 24.53 0.02 0.00 cnd:pre:1p; +bâtirons bâtir ver 18.55 24.53 0.28 0.00 ind:fut:1p; +bâtiront bâtir ver 18.55 24.53 0.01 0.00 ind:fut:3p; +bâtis bâtir ver m p 18.55 24.53 0.76 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bâtissaient bâtir ver 18.55 24.53 0.27 0.20 ind:imp:3p; +bâtissais bâtir ver 18.55 24.53 0.04 0.27 ind:imp:1s; +bâtissait bâtir ver 18.55 24.53 0.17 0.95 ind:imp:3s; +bâtissant bâtir ver 18.55 24.53 0.02 0.61 par:pre; +bâtisse bâtisse nom f s 0.93 9.59 0.78 7.43 +bâtissent bâtir ver 18.55 24.53 0.24 0.14 ind:pre:3p; +bâtisses bâtisse nom f p 0.93 9.59 0.16 2.16 +bâtisseur bâtisseur nom m s 1.00 1.01 0.22 0.20 +bâtisseurs bâtisseur nom m p 1.00 1.01 0.79 0.74 +bâtisseuse bâtisseur nom f s 1.00 1.01 0.00 0.07 +bâtissez bâtir ver 18.55 24.53 0.21 0.00 imp:pre:2p;ind:pre:2p; +bâtissions bâtir ver 18.55 24.53 0.03 0.00 ind:imp:1p; +bâtissons bâtir ver 18.55 24.53 0.42 0.07 imp:pre:1p;ind:pre:1p; +bâtit bâtir ver 18.55 24.53 1.16 0.81 ind:pre:3s;ind:pas:3s; +bâtière bâtier nom f s 0.00 0.07 0.00 0.07 +bâton bâton nom m s 18.11 30.27 13.40 21.22 +bâtonnant bâtonner ver 0.14 0.14 0.14 0.00 par:pre; +bâtonner bâtonner ver 0.14 0.14 0.01 0.00 inf; +bâtonnet bâtonnet nom m s 0.83 2.84 0.38 1.28 +bâtonnets bâtonnet nom m p 0.83 2.84 0.46 1.55 +bâtonnier bâtonnier nom m s 0.16 1.35 0.16 1.35 +bâtonnée bâtonner ver f s 0.14 0.14 0.00 0.14 par:pas; +bâtons bâton nom m p 18.11 30.27 4.71 9.05 +bâts bât nom m p 0.12 2.57 0.00 0.20 +botta botter ver 15.54 5.61 0.00 0.14 ind:pas:3s; +bottai botter ver 15.54 5.61 0.00 0.07 ind:pas:1s; +bottaient botter ver 15.54 5.61 0.00 0.27 ind:imp:3p; +bottait botter ver 15.54 5.61 0.13 0.74 ind:imp:3s; +bottant botter ver 15.54 5.61 0.04 0.07 par:pre; +botte botte nom f s 32.19 44.93 6.38 8.51 +botteler botteler ver 0.00 0.34 0.00 0.14 inf; +bottellent botteler ver 0.00 0.34 0.00 0.07 ind:pre:3p; +bottelé bottelé adj m s 0.01 0.00 0.01 0.00 +bottelées botteler ver f p 0.00 0.34 0.00 0.07 par:pas; +bottent botter ver 15.54 5.61 0.08 0.00 ind:pre:3p; +botter botter ver 15.54 5.61 7.63 1.22 imp:pre:2p;ind:pre:2p;inf; +bottera botter ver 15.54 5.61 0.20 0.00 ind:fut:3s; +botterai botter ver 15.54 5.61 0.61 0.07 ind:fut:1s; +botterais botter ver 15.54 5.61 0.24 0.07 cnd:pre:1s;cnd:pre:2s; +botterait botter ver 15.54 5.61 0.21 0.07 cnd:pre:3s; +botteras botter ver 15.54 5.61 0.05 0.00 ind:fut:2s; +botterons botter ver 15.54 5.61 0.01 0.00 ind:fut:1p; +botteront botter ver 15.54 5.61 0.04 0.00 ind:fut:3p; +bottes botte nom f p 32.19 44.93 25.81 36.42 +botteur botteur nom m s 0.14 0.00 0.10 0.00 +botteurs botteur nom m p 0.14 0.00 0.03 0.00 +bottez botter ver 15.54 5.61 0.17 0.00 imp:pre:2p;ind:pre:2p; +botticellienne botticellien nom f s 0.00 0.07 0.00 0.07 +bottier bottier nom m s 0.25 0.74 0.25 0.68 +bottiers bottier nom m p 0.25 0.74 0.00 0.07 +bottiez botter ver 15.54 5.61 0.01 0.00 ind:imp:2p; +bottillon bottillon nom m s 0.04 0.74 0.00 0.07 +bottillons bottillon nom m p 0.04 0.74 0.04 0.68 +bottin bottin nom m s 1.05 1.35 1.05 0.68 +bottine bottine nom f s 2.27 4.86 0.54 0.61 +bottines bottine nom f p 2.27 4.86 1.73 4.26 +bottins bottin nom m p 1.05 1.35 0.00 0.68 +bottiné bottiner ver m s 0.00 0.07 0.00 0.07 par:pas; +bottons botter ver 15.54 5.61 0.12 0.20 imp:pre:1p;ind:pre:1p; +botté botter ver m s 15.54 5.61 1.63 0.47 par:pas; +bottée botté adj f s 0.32 2.23 0.10 0.07 +bottées botter ver f p 15.54 5.61 0.03 0.20 par:pas; +bottés botté adj m p 0.32 2.23 0.01 0.68 +bâté bâté adj m s 0.21 0.47 0.19 0.47 +botulique botulique adj f s 0.19 0.00 0.19 0.00 +botulisme botulisme nom m s 0.15 0.00 0.15 0.00 +bâtés bâté adj m p 0.21 0.47 0.03 0.00 +boubou boubou nom m s 0.11 2.30 0.11 1.55 +bouboule boubouler ver 0.19 0.54 0.18 0.54 imp:pre:2s;ind:pre:3s; +bouboules boubouler ver 0.19 0.54 0.01 0.00 ind:pre:2s; +boubous boubou nom m p 0.11 2.30 0.00 0.74 +bouc bouc nom m s 8.49 10.07 7.92 8.92 +boucan boucan nom m s 3.22 2.36 3.22 2.36 +boucanait boucaner ver 0.00 1.08 0.00 0.07 ind:imp:3s; +boucaner boucaner ver 0.00 1.08 0.00 0.07 inf; +boucanerie boucanerie nom f s 0.00 0.07 0.00 0.07 +boucanier boucanier nom m s 0.36 0.14 0.07 0.07 +boucaniers boucanier nom m p 0.36 0.14 0.29 0.07 +boucané boucaner ver m s 0.00 1.08 0.00 0.20 par:pas; +boucanée boucaner ver f s 0.00 1.08 0.00 0.47 par:pas; +boucanées boucaner ver f p 0.00 1.08 0.00 0.14 par:pas; +boucanés boucaner ver m p 0.00 1.08 0.00 0.14 par:pas; +boucha boucher ver 16.23 21.22 0.00 0.54 ind:pas:3s; +bouchage bouchage nom m s 0.00 0.07 0.00 0.07 +bouchai boucher ver 16.23 21.22 0.00 0.07 ind:pas:1s; +bouchaient boucher ver 16.23 21.22 0.14 0.88 ind:imp:3p; +bouchais boucher ver 16.23 21.22 0.10 0.27 ind:imp:1s; +bouchait boucher ver 16.23 21.22 0.06 1.55 ind:imp:3s; +bouchant boucher ver 16.23 21.22 0.37 0.88 par:pre; +bouchardant boucharder ver 0.01 0.07 0.00 0.07 par:pre; +boucharde boucharde nom f s 0.00 0.27 0.00 0.27 +boucharder boucharder ver 0.01 0.07 0.01 0.00 inf; +bouche_à_bouche bouche_à_bouche nom m 0.00 0.20 0.00 0.20 +bouche_à_oreille bouche_à_oreille nom m s 0.00 0.07 0.00 0.07 +bouche_trou bouche_trou nom m s 0.25 0.07 0.22 0.07 +bouche_trou bouche_trou nom m p 0.25 0.07 0.03 0.00 +bouche bouche nom f s 90.03 283.45 87.75 267.64 +bouchent boucher ver 16.23 21.22 0.25 0.54 ind:pre:3p; +boucher boucher nom m s 8.26 11.55 7.15 7.70 +bouchera boucher ver 16.23 21.22 0.09 0.00 ind:fut:3s; +boucheraient boucher ver 16.23 21.22 0.01 0.07 cnd:pre:3p; +boucherais boucher ver 16.23 21.22 0.00 0.07 cnd:pre:1s; +boucherait boucher ver 16.23 21.22 0.05 0.07 cnd:pre:3s; +boucheras boucher ver 16.23 21.22 0.01 0.00 ind:fut:2s; +boucherie boucherie nom f s 4.11 8.92 4.02 7.43 +boucheries boucherie nom f p 4.11 8.92 0.08 1.49 +boucherons boucher ver 16.23 21.22 0.01 0.00 ind:fut:1p; +bouchers boucher nom m p 8.26 11.55 0.93 2.91 +bouches bouche nom f p 90.03 283.45 2.27 15.81 +bouchez boucher ver 16.23 21.22 0.82 0.00 imp:pre:2p;ind:pre:2p; +bouchions boucher ver 16.23 21.22 0.00 0.07 ind:imp:1p; +bouchon bouchon nom m s 7.25 14.46 5.47 10.68 +bouchonna bouchonner ver 0.36 0.95 0.00 0.07 ind:pas:3s; +bouchonnaient bouchonner ver 0.36 0.95 0.00 0.07 ind:imp:3p; +bouchonnait bouchonner ver 0.36 0.95 0.00 0.07 ind:imp:3s; +bouchonnant bouchonner ver 0.36 0.95 0.00 0.07 par:pre; +bouchonne bouchonner ver 0.36 0.95 0.29 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouchonner bouchonner ver 0.36 0.95 0.02 0.34 inf; +bouchonneras bouchonner ver 0.36 0.95 0.00 0.07 ind:fut:2s; +bouchonné bouchonner ver m s 0.36 0.95 0.03 0.07 par:pas; +bouchonnée bouchonner ver f s 0.36 0.95 0.01 0.14 par:pas; +bouchons bouchon nom m p 7.25 14.46 1.77 3.78 +bouchot bouchot nom m s 0.00 0.14 0.00 0.07 +bouchoteurs bouchoteur nom m p 0.00 0.07 0.00 0.07 +bouchots bouchot nom m p 0.00 0.14 0.00 0.07 +bouchère boucher nom f s 8.26 11.55 0.18 0.81 +bouchèrent boucher ver 16.23 21.22 0.00 0.14 ind:pas:3p; +bouchères boucher nom f p 8.26 11.55 0.00 0.14 +bouché boucher ver m s 16.23 21.22 3.21 2.57 par:pas; +bouchée bouchée nom f s 5.61 11.49 4.77 6.28 +bouchées bouchée nom f p 5.61 11.49 0.84 5.20 +bouchure bouchure nom f s 0.00 0.07 0.00 0.07 +bouchés boucher ver m p 16.23 21.22 0.63 0.41 par:pas; +boucla boucler ver 24.61 23.45 0.00 1.49 ind:pas:3s; +bouclage bouclage nom m s 0.27 0.54 0.27 0.54 +bouclaient boucler ver 24.61 23.45 0.14 0.54 ind:imp:3p; +bouclais boucler ver 24.61 23.45 0.05 0.14 ind:imp:1s; +bouclait boucler ver 24.61 23.45 0.05 1.35 ind:imp:3s; +bouclant boucler ver 24.61 23.45 0.03 0.74 par:pre; +boucle boucle nom f s 18.86 29.86 8.62 11.22 +bouclent boucler ver 24.61 23.45 0.54 0.47 ind:pre:3p; +boucler boucler ver 24.61 23.45 6.91 6.55 inf; +bouclera boucler ver 24.61 23.45 0.26 0.00 ind:fut:3s; +bouclerai boucler ver 24.61 23.45 0.12 0.00 ind:fut:1s; +boucleraient boucler ver 24.61 23.45 0.00 0.07 cnd:pre:3p; +bouclerais boucler ver 24.61 23.45 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +bouclerait boucler ver 24.61 23.45 0.05 0.07 cnd:pre:3s; +boucleras boucler ver 24.61 23.45 0.02 0.14 ind:fut:2s; +bouclerons boucler ver 24.61 23.45 0.02 0.00 ind:fut:1p; +boucleront boucler ver 24.61 23.45 0.03 0.07 ind:fut:3p; +boucles boucle nom f p 18.86 29.86 10.23 18.65 +bouclette bouclette nom f s 0.56 1.49 0.05 0.07 +bouclettes bouclette nom f p 0.56 1.49 0.51 1.42 +bouclez boucler ver 24.61 23.45 3.88 0.68 imp:pre:2p;ind:pre:2p; +bouclier bouclier nom m s 14.45 7.30 10.47 4.59 +boucliers bouclier nom m p 14.45 7.30 3.98 2.70 +bouclâmes boucler ver 24.61 23.45 0.00 0.14 ind:pas:1p; +bouclons boucler ver 24.61 23.45 0.18 0.00 imp:pre:1p;ind:pre:1p; +bouclât boucler ver 24.61 23.45 0.00 0.07 sub:imp:3s; +bouclèrent boucler ver 24.61 23.45 0.00 0.07 ind:pas:3p; +bouclé boucler ver m s 24.61 23.45 2.88 3.31 par:pas; +bouclée boucler ver f s 24.61 23.45 1.20 2.64 par:pas; +bouclées boucler ver f p 24.61 23.45 0.05 0.27 par:pas; +bouclés bouclé adj m p 2.38 7.16 0.77 2.64 +boucs bouc nom m p 8.49 10.07 0.57 1.15 +bouda bouder ver 5.11 8.04 0.01 0.61 ind:pas:3s; +boudaient bouder ver 5.11 8.04 0.00 0.34 ind:imp:3p; +boudais bouder ver 5.11 8.04 0.04 0.14 ind:imp:1s;ind:imp:2s; +boudait bouder ver 5.11 8.04 0.03 1.76 ind:imp:3s; +boudant bouder ver 5.11 8.04 0.00 0.14 par:pre; +bouddha bouddha nom m s 0.57 1.55 0.11 1.08 +bouddhas bouddha nom m p 0.57 1.55 0.46 0.47 +bouddhique bouddhique adj s 0.01 0.20 0.01 0.14 +bouddhiques bouddhique adj f p 0.01 0.20 0.00 0.07 +bouddhisme bouddhisme nom m s 0.42 1.89 0.42 1.89 +bouddhiste bouddhiste adj s 1.00 1.69 0.94 1.22 +bouddhistes bouddhiste nom p 0.32 0.54 0.22 0.27 +boude bouder ver 5.11 8.04 2.31 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boudent bouder ver 5.11 8.04 0.16 0.27 ind:pre:3p; +bouder bouder ver 5.11 8.04 0.95 2.09 inf; +bouderai bouder ver 5.11 8.04 0.00 0.07 ind:fut:1s; +bouderait bouder ver 5.11 8.04 0.00 0.14 cnd:pre:3s; +bouderie bouderie nom f s 0.12 1.69 0.12 1.15 +bouderies bouderie nom f p 0.12 1.69 0.00 0.54 +boudes bouder ver 5.11 8.04 1.03 0.27 ind:pre:2s; +boudeur boudeur nom m s 0.04 0.14 0.02 0.14 +boudeurs boudeur adj m p 0.12 4.05 0.00 0.14 +boudeuse boudeur adj f s 0.12 4.05 0.11 1.55 +boudeuses boudeur adj f p 0.12 4.05 0.00 0.27 +boudez bouder ver 5.11 8.04 0.22 0.14 imp:pre:2p;ind:pre:2p; +boudi boudi adv 0.01 0.00 0.01 0.00 +boudiez bouder ver 5.11 8.04 0.11 0.07 ind:imp:2p; +boudin boudin nom m s 2.85 7.57 2.49 5.88 +boudinaient boudiner ver 0.32 1.76 0.00 0.07 ind:imp:3p; +boudinait boudiner ver 0.32 1.76 0.00 0.14 ind:imp:3s; +boudinant boudiner ver 0.32 1.76 0.00 0.14 par:pre; +boudine boudiner ver 0.32 1.76 0.27 0.07 ind:pre:1s;ind:pre:3s; +boudinent boudiner ver 0.32 1.76 0.00 0.07 ind:pre:3p; +boudins boudin nom m p 2.85 7.57 0.36 1.69 +boudiné boudiner ver m s 0.32 1.76 0.00 0.54 par:pas; +boudinée boudiner ver f s 0.32 1.76 0.02 0.20 par:pas; +boudinées boudiné adj f p 0.18 1.35 0.01 0.27 +boudinés boudiné adj m p 0.18 1.35 0.15 0.74 +boudiou boudiou ono 0.00 0.20 0.00 0.20 +boudoir boudoir nom m s 0.94 3.92 0.93 3.04 +boudoirs boudoir nom m p 0.94 3.92 0.01 0.88 +boudons bouder ver 5.11 8.04 0.00 0.07 ind:pre:1p; +boudèrent bouder ver 5.11 8.04 0.00 0.07 ind:pas:3p; +boudé bouder ver m s 5.11 8.04 0.23 0.14 par:pas; +boudu boudu ono 7.37 0.07 7.37 0.07 +boudée bouder ver f s 5.11 8.04 0.01 0.14 par:pas; +boudés bouder ver m p 5.11 8.04 0.00 0.07 par:pas; +boue boue nom f s 15.10 53.31 15.09 52.30 +boues boue nom f p 15.10 53.31 0.01 1.01 +boueur boueur nom m s 0.00 0.07 0.00 0.07 +boueuse boueux adj f s 1.38 11.15 0.33 3.78 +boueuses boueux adj f p 1.38 11.15 0.16 2.30 +boueux boueux adj m 1.38 11.15 0.89 5.07 +bouf bouf ono 0.02 0.14 0.02 0.14 +bouffable bouffable adj s 0.03 0.00 0.03 0.00 +bouffaient bouffer ver 42.72 33.04 0.29 0.34 ind:imp:3p; +bouffais bouffer ver 42.72 33.04 0.25 0.14 ind:imp:1s;ind:imp:2s; +bouffait bouffer ver 42.72 33.04 0.60 2.09 ind:imp:3s; +bouffant bouffer ver 42.72 33.04 0.21 0.41 par:pre; +bouffante bouffant adj f s 0.25 3.11 0.01 0.61 +bouffantes bouffant adj f p 0.25 3.11 0.14 1.01 +bouffants bouffant adj m p 0.25 3.11 0.04 0.88 +bouffarde bouffarde nom f s 0.20 1.01 0.20 0.95 +bouffardes bouffarde nom f p 0.20 1.01 0.00 0.07 +bouffe bouffe nom f s 14.51 7.36 14.40 6.62 +bouffent bouffer ver 42.72 33.04 1.93 1.49 ind:pre:3p; +bouffer bouffer ver 42.72 33.04 18.26 15.61 inf; +bouffera bouffer ver 42.72 33.04 0.38 0.61 ind:fut:3s; +boufferai bouffer ver 42.72 33.04 0.19 0.07 ind:fut:1s; +boufferaient bouffer ver 42.72 33.04 0.26 0.07 cnd:pre:3p; +boufferais bouffer ver 42.72 33.04 0.54 0.20 cnd:pre:1s;cnd:pre:2s; +boufferait bouffer ver 42.72 33.04 0.28 0.41 cnd:pre:3s; +boufferas bouffer ver 42.72 33.04 0.20 0.14 ind:fut:2s; +boufferez bouffer ver 42.72 33.04 0.02 0.00 ind:fut:2p; +boufferont bouffer ver 42.72 33.04 0.36 0.27 ind:fut:3p; +bouffes bouffer ver 42.72 33.04 1.56 0.41 ind:pre:2s; +bouffetance bouffetance nom f s 0.00 0.14 0.00 0.14 +bouffettes bouffette nom f p 0.01 0.07 0.01 0.07 +bouffeur bouffeur nom m s 0.81 0.34 0.32 0.14 +bouffeurs bouffeur nom m p 0.81 0.34 0.29 0.14 +bouffeuse bouffeur nom f s 0.81 0.34 0.20 0.00 +bouffeuses bouffeuse nom f p 0.03 0.00 0.03 0.00 +bouffez bouffer ver 42.72 33.04 0.74 0.14 imp:pre:2p;ind:pre:2p; +bouffi bouffi adj m s 1.16 3.92 0.66 2.03 +bouffie bouffi adj f s 1.16 3.92 0.32 0.74 +bouffies bouffir ver f p 0.70 3.04 0.01 0.14 par:pas; +bouffiez bouffer ver 42.72 33.04 0.03 0.00 ind:imp:2p; +bouffis bouffi adj m p 1.16 3.92 0.18 0.88 +bouffissure bouffissure nom f s 0.01 0.41 0.00 0.27 +bouffissures bouffissure nom f p 0.01 0.41 0.01 0.14 +bouffon bouffon nom m s 6.76 2.57 5.13 1.69 +bouffonna bouffonner ver 0.01 0.54 0.00 0.14 ind:pas:3s; +bouffonnait bouffonner ver 0.01 0.54 0.00 0.14 ind:imp:3s; +bouffonnant bouffonner ver 0.01 0.54 0.00 0.14 par:pre; +bouffonnante bouffonnant adj f s 0.00 0.20 0.00 0.14 +bouffonne bouffon nom f s 6.76 2.57 0.28 0.00 +bouffonnement bouffonnement adv 0.00 0.07 0.00 0.07 +bouffonner bouffonner ver 0.01 0.54 0.00 0.14 inf; +bouffonnerie bouffonnerie nom f s 0.42 1.01 0.20 0.81 +bouffonneries bouffonnerie nom f p 0.42 1.01 0.22 0.20 +bouffonnes bouffon adj f p 2.57 2.30 0.01 0.20 +bouffons bouffon nom m p 6.76 2.57 1.36 0.88 +bouffé bouffer ver m s 42.72 33.04 6.28 3.85 par:pas; +bouffée bouffée nom f s 2.89 26.35 1.92 14.19 +bouffées bouffée nom f p 2.89 26.35 0.97 12.16 +bouffés bouffer ver m p 42.72 33.04 0.32 0.54 par:pas; +bouftance bouftance nom f s 0.00 0.07 0.00 0.07 +bougainvillier bougainvillier nom m s 0.05 0.14 0.03 0.00 +bougainvilliers bougainvillier nom m p 0.05 0.14 0.02 0.14 +bougainvillée bougainvillée nom f s 0.05 1.42 0.04 0.47 +bougainvillées bougainvillée nom f p 0.05 1.42 0.01 0.95 +bouge bouger ver 211.90 156.76 85.45 30.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bougea bouger ver 211.90 156.76 0.04 11.42 ind:pas:3s; +bougeai bouger ver 211.90 156.76 0.00 0.95 ind:pas:1s; +bougeaient bouger ver 211.90 156.76 1.10 6.28 ind:imp:3p; +bougeais bouger ver 211.90 156.76 0.61 1.76 ind:imp:1s;ind:imp:2s; +bougeait bouger ver 211.90 156.76 2.73 22.97 ind:imp:3s; +bougeant bouger ver 211.90 156.76 0.50 3.31 par:pre; +bougeassent bouger ver 211.90 156.76 0.00 0.07 sub:imp:3p; +bougent bouger ver 211.90 156.76 5.84 5.41 ind:pre:3p; +bougeoir bougeoir nom m s 0.21 2.57 0.17 1.55 +bougeoirs bougeoir nom m p 0.21 2.57 0.03 1.01 +bougeons bouger ver 211.90 156.76 1.71 0.34 imp:pre:1p;ind:pre:1p; +bougeât bouger ver 211.90 156.76 0.00 0.54 sub:imp:3s; +bougeotte bougeotte nom f s 1.04 1.15 1.04 1.15 +bouger bouger ver 211.90 156.76 44.32 46.62 inf; +bougera bouger ver 211.90 156.76 1.89 1.08 ind:fut:3s; +bougerai bouger ver 211.90 156.76 1.95 0.61 ind:fut:1s; +bougeraient bouger ver 211.90 156.76 0.12 0.20 cnd:pre:3p; +bougerais bouger ver 211.90 156.76 0.28 0.14 cnd:pre:1s; +bougerait bouger ver 211.90 156.76 0.14 0.95 cnd:pre:3s; +bougeras bouger ver 211.90 156.76 0.38 0.07 ind:fut:2s; +bougerez bouger ver 211.90 156.76 0.19 0.07 ind:fut:2p; +bougeriez bouger ver 211.90 156.76 0.04 0.00 cnd:pre:2p; +bougerons bouger ver 211.90 156.76 0.10 0.00 ind:fut:1p; +bougeront bouger ver 211.90 156.76 0.40 0.27 ind:fut:3p; +bouges bouger ver 211.90 156.76 9.04 1.08 ind:pre:2s;sub:pre:2s; +bougez bouger ver 211.90 156.76 44.09 2.50 imp:pre:2p;ind:pre:2p; +bougie bougie nom f s 18.32 29.86 7.40 16.22 +bougies bougie nom f p 18.32 29.86 10.92 13.65 +bougiez bougier ver 0.30 0.00 0.30 0.00 ind:pre:2p; +bougions bouger ver 211.90 156.76 0.14 0.20 ind:imp:1p; +bougnat bougnat nom m s 0.00 2.57 0.00 1.76 +bougnats bougnat nom m p 0.00 2.57 0.00 0.81 +bougne bougner ver 0.00 0.54 0.00 0.47 ind:pre:1s;ind:pre:3s; +bougnes bougner ver 0.00 0.54 0.00 0.07 ind:pre:2s; +bougnoul bougnoul nom m 0.11 0.00 0.11 0.00 +bougnoule bougnoule nom s 0.26 3.31 0.12 1.49 +bougnoules bougnoule nom p 0.26 3.31 0.14 1.82 +bougon bougon adj m s 0.17 2.91 0.13 1.96 +bougonna bougonner ver 0.04 5.74 0.00 2.09 ind:pas:3s; +bougonnaient bougonner ver 0.04 5.74 0.00 0.07 ind:imp:3p; +bougonnais bougonner ver 0.04 5.74 0.00 0.07 ind:imp:1s; +bougonnait bougonner ver 0.04 5.74 0.00 0.95 ind:imp:3s; +bougonnant bougonner ver 0.04 5.74 0.01 0.81 par:pre; +bougonne bougon adj f s 0.17 2.91 0.04 0.81 +bougonnement bougonnement nom m s 0.01 0.00 0.01 0.00 +bougonnent bougonner ver 0.04 5.74 0.00 0.07 ind:pre:3p; +bougonner bougonner ver 0.04 5.74 0.00 0.27 inf; +bougonné bougonner ver m s 0.04 5.74 0.01 0.34 par:pas; +bougons bougon adj m p 0.17 2.91 0.00 0.14 +bougran bougran nom m s 0.23 0.00 0.23 0.00 +bougre bougre ono 0.01 0.74 0.01 0.74 +bougrement bougrement adv 0.52 1.55 0.52 1.55 +bougrerie bougrerie nom f s 0.00 0.14 0.00 0.07 +bougreries bougrerie nom f p 0.00 0.14 0.00 0.07 +bougres bougre nom m p 4.75 11.22 0.56 2.70 +bougresse bougresse nom f s 0.02 0.47 0.02 0.47 +bougèrent bouger ver 211.90 156.76 0.01 1.01 ind:pas:3p; +bougé bouger ver m s 211.90 156.76 10.52 17.97 par:pas; +bougée bouger ver f s 211.90 156.76 0.20 0.00 par:pas; +bougées bouger ver f p 211.90 156.76 0.13 0.07 par:pas; +boui_boui boui_boui nom m s 0.39 0.27 0.35 0.27 +bouiboui bouiboui nom m s 0.04 0.14 0.04 0.14 +bouibouis bouiboui nom m p 0.04 0.14 0.01 0.00 +bouif bouif nom m s 0.00 0.14 0.00 0.14 +bouillabaisse bouillabaisse nom f s 0.66 0.61 0.66 0.61 +bouillaient bouillir ver 7.62 13.58 0.00 0.20 ind:imp:3p; +bouillais bouillir ver 7.62 13.58 0.03 0.20 ind:imp:1s; +bouillait bouillir ver 7.62 13.58 0.00 1.35 ind:imp:3s; +bouillant bouillant adj m s 4.53 8.11 2.34 3.11 +bouillante bouillant adj f s 4.53 8.11 2.13 3.72 +bouillantes bouillant adj f p 4.53 8.11 0.03 0.47 +bouillants bouillant adj m p 4.53 8.11 0.04 0.81 +bouillasse bouillasse nom f s 0.17 0.61 0.17 0.61 +bouille bouille nom f s 0.80 6.55 0.70 5.81 +bouillent bouillir ver 7.62 13.58 0.04 0.07 ind:pre:3p; +bouilles bouille nom f p 0.80 6.55 0.10 0.74 +bouilleur bouilleur nom m s 0.00 0.34 0.00 0.27 +bouilleurs bouilleur nom m p 0.00 0.34 0.00 0.07 +bouilli bouilli adj m s 1.21 4.26 0.37 2.36 +bouillie bouillie nom f s 4.42 9.73 4.18 8.58 +bouillies bouillie nom f p 4.42 9.73 0.23 1.15 +bouillir bouillir ver 7.62 13.58 3.60 4.93 inf; +bouillira bouillir ver 7.62 13.58 0.02 0.00 ind:fut:3s; +bouillirons bouillir ver 7.62 13.58 0.01 0.00 ind:fut:1p; +bouillis bouilli adj m p 1.21 4.26 0.25 0.07 +bouilloire bouilloire nom f s 1.61 3.85 1.52 3.45 +bouilloires bouilloire nom f p 1.61 3.85 0.09 0.41 +bouillon bouillon nom m s 4.00 8.92 3.68 6.62 +bouillonnaient bouillonner ver 1.90 6.08 0.01 0.88 ind:imp:3p; +bouillonnais bouillonner ver 1.90 6.08 0.01 0.07 ind:imp:1s; +bouillonnait bouillonner ver 1.90 6.08 0.13 1.15 ind:imp:3s; +bouillonnant bouillonner ver 1.90 6.08 0.26 1.08 par:pre; +bouillonnante bouillonnant adj f s 0.42 2.50 0.14 0.95 +bouillonnantes bouillonnant adj f p 0.42 2.50 0.00 0.34 +bouillonnants bouillonnant adj m p 0.42 2.50 0.11 0.20 +bouillonne bouillonner ver 1.90 6.08 0.99 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouillonnement bouillonnement nom m s 0.12 3.11 0.11 2.50 +bouillonnements bouillonnement nom m p 0.12 3.11 0.01 0.61 +bouillonnent bouillonner ver 1.90 6.08 0.14 0.41 ind:pre:3p; +bouillonner bouillonner ver 1.90 6.08 0.35 0.68 inf; +bouillonneux bouillonneux adj m s 0.00 0.07 0.00 0.07 +bouillonnèrent bouillonner ver 1.90 6.08 0.00 0.07 ind:pas:3p; +bouillonné bouillonner ver m s 1.90 6.08 0.01 0.07 par:pas; +bouillonnée bouillonner ver f s 1.90 6.08 0.00 0.07 par:pas; +bouillonnées bouillonner ver f p 1.90 6.08 0.00 0.07 par:pas; +bouillonnés bouillonné nom m p 0.00 0.34 0.00 0.20 +bouillons bouillon nom m p 4.00 8.92 0.32 2.30 +bouillottait bouillotter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +bouillotte bouillotte nom f s 0.69 1.96 0.50 1.82 +bouillottes bouillotte nom f p 0.69 1.96 0.19 0.14 +bouillu bouillu adj m s 0.01 0.07 0.01 0.07 +boui_boui boui_boui nom m p 0.39 0.27 0.04 0.00 +boukha boukha nom f s 0.14 0.07 0.14 0.07 +boula bouler ver 1.00 1.82 0.00 0.07 ind:pas:3s; +boulait bouler ver 1.00 1.82 0.00 0.07 ind:imp:3s; +boulange boulange nom f s 0.10 0.27 0.10 0.27 +boulanger_pâtissier boulanger_pâtissier nom m s 0.00 0.14 0.00 0.14 +boulanger boulanger nom m s 3.00 13.31 2.44 8.78 +boulangerie boulangerie nom f s 4.01 8.04 3.76 7.57 +boulangeries boulangerie nom f p 4.01 8.04 0.25 0.47 +boulangers boulanger nom m p 3.00 13.31 0.08 2.09 +boulangisme boulangisme nom m s 0.00 0.07 0.00 0.07 +boulangère boulanger nom f s 3.00 13.31 0.47 2.30 +boulangères boulanger nom f p 3.00 13.31 0.00 0.14 +boulants boulant nom m p 0.00 0.07 0.00 0.07 +boulder boulder nom m s 0.46 0.00 0.46 0.00 +boule_de_neige boule_de_neige nom f s 0.07 0.00 0.07 0.00 +boule boule nom f s 30.68 61.22 19.29 38.31 +bouleau bouleau nom m s 1.08 4.05 0.58 0.95 +bouleaux bouleau nom m p 1.08 4.05 0.50 3.11 +bouledogue bouledogue nom m s 0.81 2.09 0.71 1.96 +bouledogues bouledogue nom m p 0.81 2.09 0.09 0.14 +boulent bouler ver 1.00 1.82 0.00 0.07 ind:pre:3p; +bouler bouler ver 1.00 1.82 0.45 0.34 inf; +boules boule nom f p 30.68 61.22 11.40 22.91 +boulet boulet nom m s 2.95 8.11 1.99 3.78 +boulets boulet nom m p 2.95 8.11 0.96 4.32 +boulette boulette nom f s 6.13 5.20 2.34 2.36 +boulettes boulette nom f p 6.13 5.20 3.79 2.84 +boulevard boulevard nom m s 4.87 61.15 4.19 52.03 +boulevardier boulevardier nom m s 0.01 0.07 0.01 0.00 +boulevardiers boulevardier nom m p 0.01 0.07 0.00 0.07 +boulevardière boulevardier adj f s 0.00 0.27 0.00 0.07 +boulevards boulevard nom m p 4.87 61.15 0.68 9.12 +bouleversa bouleverser ver 13.79 27.03 0.26 2.36 ind:pas:3s; +bouleversaient bouleverser ver 13.79 27.03 0.01 0.47 ind:imp:3p; +bouleversait bouleverser ver 13.79 27.03 0.03 2.36 ind:imp:3s; +bouleversant bouleversant adj m s 1.61 5.27 1.24 1.28 +bouleversante bouleversant adj f s 1.61 5.27 0.29 2.43 +bouleversantes bouleversant adj f p 1.61 5.27 0.04 1.08 +bouleversants bouleversant adj m p 1.61 5.27 0.04 0.47 +bouleverse bouleverser ver 13.79 27.03 1.23 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouleversement bouleversement nom m s 0.46 7.30 0.17 4.26 +bouleversements bouleversement nom m p 0.46 7.30 0.29 3.04 +bouleversent bouleverser ver 13.79 27.03 0.13 0.74 ind:pre:3p; +bouleverser bouleverser ver 13.79 27.03 1.64 3.92 inf; +bouleversera bouleverser ver 13.79 27.03 0.16 0.00 ind:fut:3s; +bouleverseraient bouleverser ver 13.79 27.03 0.00 0.07 cnd:pre:3p; +bouleverserais bouleverser ver 13.79 27.03 0.01 0.00 cnd:pre:1s; +bouleverserait bouleverser ver 13.79 27.03 0.23 0.20 cnd:pre:3s; +bouleverseras bouleverser ver 13.79 27.03 0.01 0.00 ind:fut:2s; +bouleverserons bouleverser ver 13.79 27.03 0.00 0.07 ind:fut:1p; +bouleverseront bouleverser ver 13.79 27.03 0.00 0.14 ind:fut:3p; +bouleversions bouleverser ver 13.79 27.03 0.00 0.07 ind:imp:1p; +bouleversons bouleverser ver 13.79 27.03 0.01 0.00 imp:pre:1p; +bouleversèrent bouleverser ver 13.79 27.03 0.10 0.27 ind:pas:3p; +bouleversé bouleverser ver m s 13.79 27.03 4.85 8.45 par:pas; +bouleversée bouleverser ver f s 13.79 27.03 4.37 3.24 par:pas; +bouleversées bouleverser ver f p 13.79 27.03 0.03 0.27 par:pas; +bouleversés bouleverser ver m p 13.79 27.03 0.69 0.61 par:pas; +boulgour boulgour nom m s 0.15 0.07 0.15 0.07 +boulier boulier nom m s 0.16 1.96 0.15 1.89 +bouliers boulier nom m p 0.16 1.96 0.01 0.07 +boulimie boulimie nom f s 0.26 0.54 0.26 0.47 +boulimies boulimie nom f p 0.26 0.54 0.00 0.07 +boulimique boulimique adj s 0.22 0.34 0.21 0.20 +boulimiques boulimique nom p 0.14 0.07 0.04 0.00 +bouline bouline nom f s 0.07 0.07 0.07 0.00 +boulines bouline nom f p 0.07 0.07 0.00 0.07 +boulingrins boulingrin nom m p 0.00 0.27 0.00 0.27 +boulins boulin nom m p 0.00 0.07 0.00 0.07 +bouliste bouliste nom s 0.02 0.61 0.02 0.00 +boulistes bouliste nom p 0.02 0.61 0.00 0.61 +boulle boulle nom m s 0.01 0.14 0.01 0.14 +boulochait boulocher ver 0.10 0.00 0.10 0.00 ind:imp:3s; +boulodrome boulodrome nom m s 0.00 0.07 0.00 0.07 +bouloir bouloir nom m s 0.01 0.00 0.01 0.00 +boulon boulon nom m s 2.72 3.51 1.06 1.49 +boulonnage boulonnage nom m s 0.01 0.00 0.01 0.00 +boulonnais boulonnais adj m s 0.00 0.07 0.00 0.07 +boulonnait boulonner ver 0.10 0.61 0.00 0.14 ind:imp:3s; +boulonnant boulonner ver 0.10 0.61 0.00 0.07 par:pre; +boulonne boulonner ver 0.10 0.61 0.01 0.07 imp:pre:2s;ind:pre:3s; +boulonner boulonner ver 0.10 0.61 0.04 0.14 inf; +boulonnerie boulonnerie nom f s 0.00 0.07 0.00 0.07 +boulonné boulonner ver m s 0.10 0.61 0.03 0.07 par:pas; +boulonnée boulonner ver f s 0.10 0.61 0.01 0.07 par:pas; +boulonnés boulonner ver m p 0.10 0.61 0.01 0.07 par:pas; +boulons boulon nom m p 2.72 3.51 1.66 2.03 +boulot_refuge boulot_refuge adj m s 0.00 0.07 0.00 0.07 +boulot boulot nom m s 202.97 35.61 198.68 32.57 +boulots boulot nom m p 202.97 35.61 4.30 3.04 +boulottait boulotter ver 0.16 0.41 0.00 0.07 ind:imp:3s; +boulotte boulotte nom f s 0.27 0.27 0.26 0.27 +boulotter boulotter ver 0.16 0.41 0.12 0.14 inf; +boulottes boulot adj f p 8.21 3.04 0.01 0.07 +boulottées boulotter ver f p 0.16 0.41 0.00 0.07 par:pas; +boulé bouler ver m s 1.00 1.82 0.12 0.47 par:pas; +boulu boulu adj m s 0.00 0.14 0.00 0.07 +boulés bouler ver m p 1.00 1.82 0.00 0.14 par:pas; +boulus boulu adj m p 0.00 0.14 0.00 0.07 +boum boum ono 5.20 2.09 5.20 2.09 +boumaient boumer ver 1.90 1.49 0.00 0.07 ind:imp:3p; +boumait boumer ver 1.90 1.49 0.00 0.07 ind:imp:3s; +boume boumer ver 1.90 1.49 1.90 1.15 imp:pre:2s;ind:pre:3s; +boums boum nom_sup m p 7.01 3.04 0.21 0.41 +boumé boumer ver m s 1.90 1.49 0.00 0.20 par:pas; +bouniouls bounioul nom m p 0.00 0.07 0.00 0.07 +bouquet bouquet nom m s 9.35 37.09 8.76 26.01 +bouquetier bouquetier nom m s 0.00 0.41 0.00 0.07 +bouquetin bouquetin nom m s 0.16 0.34 0.03 0.20 +bouquetins bouquetin nom m p 0.16 0.34 0.14 0.14 +bouquetière bouquetier nom f s 0.00 0.41 0.00 0.34 +bouquets bouquet nom m p 9.35 37.09 0.59 11.08 +bouqueté bouqueté adj m s 0.00 0.07 0.00 0.07 +bouquin bouquin nom m s 13.49 27.70 8.02 14.46 +bouquinage bouquinage nom m s 0.00 0.07 0.00 0.07 +bouquinais bouquiner ver 0.81 2.03 0.14 0.14 ind:imp:1s; +bouquinait bouquiner ver 0.81 2.03 0.01 0.20 ind:imp:3s; +bouquinant bouquiner ver 0.81 2.03 0.01 0.07 par:pre; +bouquine bouquiner ver 0.81 2.03 0.45 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouquiner bouquiner ver 0.81 2.03 0.17 1.08 inf; +bouquinerait bouquiner ver 0.81 2.03 0.00 0.07 cnd:pre:3s; +bouquineur bouquineur nom m s 0.01 0.00 0.01 0.00 +bouquiniste bouquiniste nom s 0.41 2.09 0.28 0.95 +bouquinistes bouquiniste nom p 0.41 2.09 0.12 1.15 +bouquins bouquin nom m p 13.49 27.70 5.46 13.24 +bouquiné bouquiner ver m s 0.81 2.03 0.03 0.00 par:pas; +bour bour nom m s 0.09 0.14 0.09 0.14 +bourbe bourbe nom f s 0.04 0.20 0.04 0.20 +bourbeuse bourbeux adj f s 0.03 1.89 0.00 0.61 +bourbeuses bourbeux adj f p 0.03 1.89 0.00 0.27 +bourbeux bourbeux adj m 0.03 1.89 0.03 1.01 +bourbier bourbier nom m s 1.12 1.35 1.10 1.01 +bourbiers bourbier nom m p 1.12 1.35 0.02 0.34 +bourbon bourbon nom m s 2.76 6.96 2.66 6.96 +bourbonien bourbonien adj m s 0.00 0.95 0.00 0.81 +bourbonienne bourbonien adj f s 0.00 0.95 0.00 0.14 +bourbons bourbon nom m p 2.76 6.96 0.10 0.00 +bourdaine bourdaine nom f s 0.00 0.14 0.00 0.07 +bourdaines bourdaine nom f p 0.00 0.14 0.00 0.07 +bourdalous bourdalou nom m p 0.00 0.07 0.00 0.07 +bourde bourde nom f s 1.54 0.95 1.10 0.54 +bourdes bourde nom f p 1.54 0.95 0.44 0.41 +bourdillon bourdillon nom m s 0.14 0.07 0.14 0.07 +bourdon bourdon nom m s 1.28 5.54 1.17 4.73 +bourdonna bourdonner ver 2.20 9.53 0.00 0.41 ind:pas:3s; +bourdonnaient bourdonner ver 2.20 9.53 0.05 1.76 ind:imp:3p; +bourdonnais bourdonner ver 2.20 9.53 0.00 0.07 ind:imp:1s; +bourdonnait bourdonner ver 2.20 9.53 0.13 2.23 ind:imp:3s; +bourdonnant bourdonner ver 2.20 9.53 0.01 1.01 par:pre; +bourdonnante bourdonnant adj f s 0.06 2.97 0.03 1.35 +bourdonnantes bourdonnant adj f p 0.06 2.97 0.01 1.01 +bourdonnants bourdonnant adj m p 0.06 2.97 0.01 0.34 +bourdonne bourdonner ver 2.20 9.53 0.87 1.42 ind:pre:3s; +bourdonnement bourdonnement nom m s 1.71 10.54 1.63 9.19 +bourdonnements bourdonnement nom m p 1.71 10.54 0.08 1.35 +bourdonnent bourdonner ver 2.20 9.53 1.05 1.49 ind:pre:3p; +bourdonner bourdonner ver 2.20 9.53 0.07 1.08 inf; +bourdonné bourdonner ver m s 2.20 9.53 0.01 0.07 par:pas; +bourdons bourdon nom m p 1.28 5.54 0.11 0.81 +bourg bourg nom m s 1.60 15.88 1.48 13.85 +bourgade bourgade nom f s 0.46 3.99 0.44 2.91 +bourgades bourgade nom f p 0.46 3.99 0.02 1.08 +bourge bourge nom s 1.22 0.47 0.90 0.07 +bourgeois bourgeois nom m 6.02 28.65 4.01 23.04 +bourgeoise bourgeois adj f s 6.36 23.45 2.80 7.43 +bourgeoisement bourgeoisement adv 0.00 0.54 0.00 0.54 +bourgeoises bourgeois adj f p 6.36 23.45 0.44 4.19 +bourgeoisie bourgeoisie nom f s 3.65 10.27 3.65 10.14 +bourgeoisies bourgeoisie nom f p 3.65 10.27 0.00 0.14 +bourgeoisisme bourgeoisisme nom m s 0.00 0.07 0.00 0.07 +bourgeon bourgeon nom m s 0.63 2.84 0.47 0.68 +bourgeonnaient bourgeonner ver 0.24 1.22 0.00 0.14 ind:imp:3p; +bourgeonnait bourgeonner ver 0.24 1.22 0.02 0.14 ind:imp:3s; +bourgeonnant bourgeonnant adj m s 0.04 0.41 0.01 0.14 +bourgeonnante bourgeonnant adj f s 0.04 0.41 0.03 0.07 +bourgeonnants bourgeonnant adj m p 0.04 0.41 0.00 0.20 +bourgeonne bourgeonner ver 0.24 1.22 0.03 0.34 ind:pre:1s;ind:pre:3s; +bourgeonnement bourgeonnement nom m s 0.00 0.27 0.00 0.14 +bourgeonnements bourgeonnement nom m p 0.00 0.27 0.00 0.14 +bourgeonnent bourgeonner ver 0.24 1.22 0.14 0.00 ind:pre:3p; +bourgeonner bourgeonner ver 0.24 1.22 0.02 0.34 inf; +bourgeonneraient bourgeonner ver 0.24 1.22 0.00 0.07 cnd:pre:3p; +bourgeonneuse bourgeonneux adj f s 0.00 0.07 0.00 0.07 +bourgeonné bourgeonner ver m s 0.24 1.22 0.02 0.00 par:pas; +bourgeons bourgeon nom m p 0.63 2.84 0.16 2.16 +bourgeron bourgeron nom m s 0.00 1.28 0.00 1.01 +bourgerons bourgeron nom m p 0.00 1.28 0.00 0.27 +bourges bourge nom p 1.22 0.47 0.32 0.41 +bourgmestre bourgmestre nom m s 1.02 1.49 1.01 1.35 +bourgmestres bourgmestre nom m p 1.02 1.49 0.01 0.14 +bourgogne bourgogne nom m s 0.52 1.35 0.51 1.01 +bourgognes bourgogne nom m p 0.52 1.35 0.01 0.34 +bourgs bourg nom m p 1.60 15.88 0.12 2.03 +bourgueil bourgueil nom m s 0.00 0.07 0.00 0.07 +bourgues bourgue nom m p 0.00 0.07 0.00 0.07 +bourguignon bourguignon adj m s 0.29 4.19 0.25 2.30 +bourguignonne bourguignon adj f s 0.29 4.19 0.04 0.54 +bourguignonnes bourguignon adj f p 0.29 4.19 0.01 0.34 +bourguignons bourguignon nom m p 0.01 1.89 0.00 1.08 +bouriates bouriate adj p 0.00 0.07 0.00 0.07 +bouriates bouriate nom p 0.00 0.07 0.00 0.07 +bourlinguant bourlinguer ver 0.37 0.61 0.01 0.14 par:pre; +bourlingue bourlingue nom f s 0.01 0.00 0.01 0.00 +bourlinguer bourlinguer ver 0.37 0.61 0.06 0.07 inf; +bourlinguera bourlinguer ver 0.37 0.61 0.00 0.07 ind:fut:3s; +bourlingueur bourlingueur nom m s 0.02 0.34 0.02 0.27 +bourlingueuses bourlingueur nom f p 0.02 0.34 0.00 0.07 +bourlinguons bourlinguer ver 0.37 0.61 0.00 0.07 ind:pre:1p; +bourlingué bourlinguer ver m s 0.37 0.61 0.29 0.27 par:pas; +bourra bourrer ver 22.37 29.39 0.00 1.01 ind:pas:3s; +bourrache bourrache nom f s 0.01 0.07 0.01 0.07 +bourrade bourrade nom f s 0.00 4.80 0.00 2.70 +bourrades bourrade nom f p 0.00 4.80 0.00 2.09 +bourrage bourrage nom m s 0.15 0.27 0.15 0.20 +bourrages bourrage nom m p 0.15 0.27 0.00 0.07 +bourrai bourrer ver 22.37 29.39 0.00 0.20 ind:pas:1s; +bourraient bourrer ver 22.37 29.39 0.03 0.27 ind:imp:3p; +bourrais bourrer ver 22.37 29.39 0.02 0.14 ind:imp:1s; +bourrait bourrer ver 22.37 29.39 0.40 1.82 ind:imp:3s; +bourrant bourrer ver 22.37 29.39 0.03 0.95 par:pre; +bourrasque bourrasque nom f s 0.77 6.01 0.55 3.92 +bourrasques bourrasque nom f p 0.77 6.01 0.22 2.09 +bourratif bourratif adj m s 0.03 0.20 0.02 0.07 +bourrative bourratif adj f s 0.03 0.20 0.01 0.07 +bourratives bourratif adj f p 0.03 0.20 0.00 0.07 +bourre_mou bourre_mou nom m s 0.01 0.00 0.01 0.00 +bourre_pif bourre_pif nom m s 0.04 0.07 0.04 0.07 +bourre bourre nom s 4.37 6.49 4.24 3.92 +bourreau bourreau nom m s 9.83 12.91 7.28 7.09 +bourreaux bourreau nom m p 9.83 12.91 2.55 5.81 +bourrelet bourrelet nom m s 0.49 6.22 0.06 2.64 +bourrelets bourrelet nom m p 0.49 6.22 0.43 3.58 +bourrelier bourrelier nom m s 0.00 0.88 0.00 0.81 +bourreliers bourrelier nom m p 0.00 0.88 0.00 0.07 +bourrellerie bourrellerie nom f s 0.00 0.27 0.00 0.27 +bourrelé bourreler ver m s 0.00 0.41 0.00 0.27 par:pas; +bourrelée bourreler ver f s 0.00 0.41 0.00 0.07 par:pas; +bourrelés bourreler ver m p 0.00 0.41 0.00 0.07 par:pas; +bourrent bourrer ver 22.37 29.39 0.11 0.54 ind:pre:3p; +bourrer bourrer ver 22.37 29.39 3.48 3.72 inf; +bourrera bourrer ver 22.37 29.39 0.02 0.07 ind:fut:3s; +bourrerai bourrer ver 22.37 29.39 0.02 0.00 ind:fut:1s; +bourres bourrer ver 22.37 29.39 0.33 0.14 ind:pre:2s;sub:pre:2s; +bourreur bourreur nom m s 0.00 0.14 0.00 0.14 +bourrez bourrer ver 22.37 29.39 0.24 0.07 imp:pre:2p;ind:pre:2p; +bourriche bourriche nom f s 0.04 0.68 0.04 0.14 +bourriches bourriche nom f p 0.04 0.68 0.00 0.54 +bourrichon bourrichon nom m s 0.40 0.20 0.40 0.20 +bourricot bourricot nom m s 0.52 1.08 0.49 0.34 +bourricots bourricot nom m p 0.52 1.08 0.03 0.74 +bourrier bourrier nom m 0.00 0.34 0.00 0.34 +bourrin bourrin nom m s 0.56 1.62 0.53 1.08 +bourrine bourrine nom f s 0.01 0.00 0.01 0.00 +bourrins bourrin nom m p 0.56 1.62 0.04 0.54 +bourriquait bourriquer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +bourrique bourrique nom f s 1.97 2.97 1.90 2.09 +bourriques bourrique nom f p 1.97 2.97 0.07 0.88 +bourriquet bourriquet nom m s 0.16 0.14 0.16 0.07 +bourriquets bourriquet nom m p 0.16 0.14 0.00 0.07 +bourrons bourrer ver 22.37 29.39 0.02 0.00 imp:pre:1p;ind:pre:1p; +bourrèrent bourrer ver 22.37 29.39 0.00 0.14 ind:pas:3p; +bourré bourrer ver m s 22.37 29.39 11.14 10.41 par:pas; +bourru bourru adj m s 0.34 5.20 0.28 3.51 +bourrée bourrer ver f s 22.37 29.39 2.65 2.57 par:pas; +bourrue bourru adj f s 0.34 5.20 0.02 1.35 +bourrées bourrer ver f p 22.37 29.39 0.26 2.03 par:pas; +bourrues bourru adj f p 0.34 5.20 0.02 0.20 +bourrés bourrer ver m p 22.37 29.39 1.57 3.58 par:pas; +bourrus bourru adj m p 0.34 5.20 0.03 0.14 +bourse bourse nom f s 19.66 13.18 17.48 11.22 +bourses bourse nom f p 19.66 13.18 2.18 1.96 +boursicot boursicot nom m s 0.00 0.07 0.00 0.07 +boursicotage boursicotage nom m s 0.00 0.07 0.00 0.07 +boursicoteur boursicoteur nom m s 0.04 0.14 0.01 0.14 +boursicoteurs boursicoteur nom m p 0.04 0.14 0.03 0.00 +boursier boursier adj m s 0.73 0.74 0.39 0.20 +boursiers boursier adj m p 0.73 0.74 0.13 0.07 +boursière boursier adj f s 0.73 0.74 0.15 0.14 +boursières boursier adj f p 0.73 0.74 0.07 0.34 +boursouflaient boursoufler ver 0.04 3.04 0.00 0.14 ind:imp:3p; +boursouflait boursoufler ver 0.04 3.04 0.00 0.34 ind:imp:3s; +boursoufle boursoufler ver 0.04 3.04 0.01 0.47 ind:pre:3s; +boursouflement boursouflement nom m s 0.00 0.07 0.00 0.07 +boursoufler boursoufler ver 0.04 3.04 0.01 0.20 inf; +boursouflé boursouflé adj m s 0.25 3.31 0.19 1.22 +boursouflée boursouflé adj f s 0.25 3.31 0.03 0.88 +boursouflées boursouflé adj f p 0.25 3.31 0.04 0.41 +boursouflure boursouflure nom f s 0.06 1.82 0.02 0.81 +boursouflures boursouflure nom f p 0.06 1.82 0.03 1.01 +boursouflés boursouflé adj m p 0.25 3.31 0.00 0.81 +bous bouillir ver 7.62 13.58 0.60 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +bousards bousard nom m p 0.00 0.07 0.00 0.07 +bousbir bousbir nom m s 0.00 0.54 0.00 0.41 +bousbirs bousbir nom m p 0.00 0.54 0.00 0.14 +bouscula bousculer ver 8.63 34.46 0.00 2.36 ind:pas:3s; +bousculade bousculade nom f s 0.90 6.28 0.86 5.34 +bousculades bousculade nom f p 0.90 6.28 0.03 0.95 +bousculai bousculer ver 8.63 34.46 0.00 0.20 ind:pas:1s; +bousculaient bousculer ver 8.63 34.46 0.05 3.65 ind:imp:3p; +bousculait bousculer ver 8.63 34.46 0.12 3.24 ind:imp:3s; +bousculant bousculer ver 8.63 34.46 0.04 4.53 par:pre; +bouscule bousculer ver 8.63 34.46 2.44 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bousculent bousculer ver 8.63 34.46 0.50 2.36 ind:pre:3p; +bousculer bousculer ver 8.63 34.46 2.17 5.07 inf; +bousculera bousculer ver 8.63 34.46 0.16 0.00 ind:fut:3s; +bousculerait bousculer ver 8.63 34.46 0.03 0.00 cnd:pre:3s; +bousculerons bousculer ver 8.63 34.46 0.00 0.07 ind:fut:1p; +bousculeront bousculer ver 8.63 34.46 0.04 0.14 ind:fut:3p; +bousculez bousculer ver 8.63 34.46 0.47 0.14 imp:pre:2p;ind:pre:2p; +bousculons bousculer ver 8.63 34.46 0.00 0.07 imp:pre:1p; +bousculât bousculer ver 8.63 34.46 0.00 0.07 sub:imp:3s; +bousculèrent bousculer ver 8.63 34.46 0.00 0.88 ind:pas:3p; +bousculé bousculer ver m s 8.63 34.46 2.01 4.19 par:pas; +bousculée bousculer ver f s 8.63 34.46 0.46 1.49 par:pas; +bousculées bousculer ver f p 8.63 34.46 0.01 0.20 par:pas; +bousculés bousculer ver m p 8.63 34.46 0.13 1.69 par:pas; +bouse bouse nom f s 1.93 5.14 1.71 3.72 +bouses bouse nom f p 1.93 5.14 0.22 1.42 +bouseuse bouseux nom f s 2.44 1.22 0.16 0.07 +bouseux bouseux nom m 2.44 1.22 2.29 1.15 +bousier bousier nom m s 0.06 0.34 0.03 0.14 +bousiers bousier nom m p 0.06 0.34 0.03 0.20 +bousillage bousillage nom m s 0.15 0.27 0.15 0.20 +bousillages bousillage nom m p 0.15 0.27 0.00 0.07 +bousillaient bousiller ver 12.91 3.24 0.00 0.07 ind:imp:3p; +bousillais bousiller ver 12.91 3.24 0.01 0.07 ind:imp:1s;ind:imp:2s; +bousillait bousiller ver 12.91 3.24 0.03 0.07 ind:imp:3s; +bousillant bousiller ver 12.91 3.24 0.02 0.27 par:pre; +bousille bousiller ver 12.91 3.24 2.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bousillent bousiller ver 12.91 3.24 0.20 0.00 ind:pre:3p; +bousiller bousiller ver 12.91 3.24 4.05 1.15 inf; +bousillera bousiller ver 12.91 3.24 0.19 0.00 ind:fut:3s; +bousillerai bousiller ver 12.91 3.24 0.07 0.00 ind:fut:1s; +bousillerait bousiller ver 12.91 3.24 0.01 0.00 cnd:pre:3s; +bousilleras bousiller ver 12.91 3.24 0.01 0.00 ind:fut:2s; +bousilleront bousiller ver 12.91 3.24 0.01 0.00 ind:fut:3p; +bousilles bousiller ver 12.91 3.24 0.70 0.07 ind:pre:2s; +bousilleur bousilleur nom m s 0.03 0.00 0.03 0.00 +bousillez bousiller ver 12.91 3.24 0.42 0.07 imp:pre:2p;ind:pre:2p; +bousilliez bousiller ver 12.91 3.24 0.02 0.00 ind:imp:2p; +bousillons bousiller ver 12.91 3.24 0.03 0.00 imp:pre:1p; +bousillé bousiller ver m s 12.91 3.24 4.00 0.74 par:pas; +bousillée bousiller ver f s 12.91 3.24 0.52 0.34 par:pas; +bousillées bousiller ver f p 12.91 3.24 0.16 0.07 par:pas; +bousillés bousiller ver m p 12.91 3.24 0.11 0.20 par:pas; +bousin bousin nom m s 0.00 0.14 0.00 0.07 +bousine bousine nom f s 0.00 0.14 0.00 0.14 +bousins bousin nom m p 0.00 0.14 0.00 0.07 +boussole boussole nom f s 2.91 4.66 2.71 4.05 +boussoles boussole nom f p 2.91 4.66 0.20 0.61 +boustifaille boustifaille nom f s 0.23 0.81 0.23 0.74 +boustifailles boustifaille nom f p 0.23 0.81 0.00 0.07 +boustifailleuse boustifailleur nom f s 0.00 0.07 0.00 0.07 +boustrophédon boustrophédon nom m s 0.00 0.20 0.00 0.20 +bout_dehors bout_dehors nom m 0.00 0.20 0.00 0.20 +bout_rimé bout_rimé nom m s 0.14 0.07 0.14 0.00 +bout bout nom m s 128.33 398.11 121.12 375.68 +bouta bouter ver 0.47 1.55 0.00 0.14 ind:pas:3s; +boutade boutade nom f s 0.25 1.49 0.19 1.35 +boutades boutade nom f p 0.25 1.49 0.06 0.14 +boutanche boutanche nom f s 0.17 2.16 0.16 1.42 +boutanches boutanche nom f p 0.17 2.16 0.01 0.74 +boutargue boutargue nom f s 0.00 0.07 0.00 0.07 +boutasse bouter ver 0.47 1.55 0.00 0.54 sub:imp:1s; +boute_en_train boute_en_train nom m 0.39 0.74 0.39 0.74 +boute bouter ver 0.47 1.55 0.03 0.27 ind:pre:3s; +boutefeu boutefeu nom s 0.02 0.41 0.02 0.41 +boutefeux boutefeux nom p 0.00 0.20 0.00 0.20 +bouteille bouteille nom f s 57.24 104.05 42.31 70.41 +bouteilles bouteille nom f p 57.24 104.05 14.92 33.65 +bouteillon bouteillon nom m s 0.00 0.68 0.00 0.47 +bouteillons bouteillon nom m p 0.00 0.68 0.00 0.20 +bouter bouter ver 0.47 1.55 0.16 0.20 inf; +bouterais bouter ver 0.47 1.55 0.00 0.07 cnd:pre:1s; +bouteur bouteur nom m s 0.02 0.07 0.02 0.00 +bouteurs bouteur nom m p 0.02 0.07 0.00 0.07 +bouthéon bouthéon nom m s 0.00 1.15 0.00 0.68 +bouthéons bouthéon nom m p 0.00 1.15 0.00 0.47 +boutillier boutillier nom m s 0.00 0.14 0.00 0.14 +boutique_cadeaux boutique_cadeaux nom f s 0.02 0.00 0.02 0.00 +boutique boutique nom f s 26.53 48.92 22.29 36.01 +boutiquer boutiquer ver 0.00 0.14 0.00 0.07 inf; +boutiques boutique nom f p 26.53 48.92 4.24 12.91 +boutiquier boutiquier adj m s 0.14 0.61 0.14 0.41 +boutiquiers boutiquier nom m p 0.18 1.76 0.04 1.15 +boutiquière boutiquier nom f s 0.18 1.76 0.00 0.20 +boutiquières boutiquier nom f p 0.18 1.76 0.00 0.07 +boutiqué boutiquer ver m s 0.00 0.14 0.00 0.07 par:pas; +boutisses boutisse nom f p 0.00 0.07 0.00 0.07 +boutoir boutoir nom m s 0.00 2.23 0.00 2.23 +bouton_d_or bouton_d_or nom m s 0.01 0.20 0.00 0.14 +bouton_pression bouton_pression nom m s 0.04 0.14 0.02 0.07 +bouton bouton nom m s 32.44 44.46 21.29 21.55 +boutonna boutonner ver 2.17 6.22 0.00 0.41 ind:pas:3s; +boutonnage boutonnage nom m s 0.00 0.34 0.00 0.34 +boutonnaient boutonner ver 2.17 6.22 0.00 0.07 ind:imp:3p; +boutonnais boutonner ver 2.17 6.22 0.01 0.07 ind:imp:1s;ind:imp:2s; +boutonnait boutonner ver 2.17 6.22 0.00 0.41 ind:imp:3s; +boutonnant boutonner ver 2.17 6.22 0.01 0.34 par:pre; +boutonne boutonner ver 2.17 6.22 0.98 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boutonnent boutonner ver 2.17 6.22 0.01 0.20 ind:pre:3p; +boutonner boutonner ver 2.17 6.22 0.72 1.35 inf; +boutonnerait boutonner ver 2.17 6.22 0.00 0.07 cnd:pre:3s; +boutonnes boutonner ver 2.17 6.22 0.03 0.00 ind:pre:2s; +boutonneuse boutonneux adj f s 0.59 1.76 0.03 0.14 +boutonneuses boutonneux adj f p 0.59 1.76 0.01 0.07 +boutonneux boutonneux adj m 0.59 1.76 0.55 1.55 +boutonnez boutonner ver 2.17 6.22 0.23 0.00 imp:pre:2p; +boutonnière boutonnière nom f s 0.73 3.65 0.45 3.18 +boutonnières boutonnière nom f p 0.73 3.65 0.28 0.47 +boutonné boutonner ver m s 2.17 6.22 0.07 0.81 par:pas; +boutonnée boutonner ver f s 2.17 6.22 0.11 0.95 par:pas; +boutonnées boutonner ver f p 2.17 6.22 0.00 0.34 par:pas; +boutonnés boutonner ver m p 2.17 6.22 0.01 0.27 par:pas; +bouton_d_or bouton_d_or nom m p 0.01 0.20 0.01 0.07 +bouton_pression bouton_pression nom m p 0.04 0.14 0.02 0.07 +boutons bouton nom m p 32.44 44.46 11.16 22.91 +boutre boutre nom m s 0.00 0.81 0.00 0.68 +boutres boutre nom m p 0.00 0.81 0.00 0.14 +bout_rimé bout_rimé nom m p 0.14 0.07 0.00 0.07 +bouts bout nom m p 128.33 398.11 7.21 22.43 +boëttes boëtte nom f p 0.00 0.07 0.00 0.07 +bouté bouter ver m s 0.47 1.55 0.14 0.00 par:pas; +boutée bouter ver f s 0.47 1.55 0.00 0.07 par:pas; +boutées bouter ver f p 0.47 1.55 0.00 0.07 par:pas; +bouture bouture nom f s 0.07 0.47 0.03 0.14 +boutures bouture nom f p 0.07 0.47 0.04 0.34 +boutés bouter ver m p 0.47 1.55 0.14 0.14 par:pas; +bouée bouée nom f s 2.04 5.47 1.30 4.59 +bouées bouée nom f p 2.04 5.47 0.73 0.88 +bouvet bouvet nom m s 0.00 0.07 0.00 0.07 +bouvier bouvier nom m s 0.15 1.01 0.12 0.68 +bouviers bouvier nom m p 0.15 1.01 0.03 0.34 +bouvillon bouvillon nom m s 0.04 0.20 0.04 0.20 +bouvreuil bouvreuil nom m s 0.04 0.27 0.01 0.07 +bouvreuils bouvreuil nom m p 0.04 0.27 0.03 0.20 +bouzine bouzine nom f s 0.00 0.27 0.00 0.27 +bouzouki bouzouki nom m s 0.21 0.47 0.21 0.47 +bouzy bouzy nom m 0.00 0.07 0.00 0.07 +bovidé bovidé nom m s 0.01 0.68 0.01 0.14 +bovidés bovidé nom m p 0.01 0.68 0.00 0.54 +bovin bovin adj m s 0.28 1.49 0.09 0.47 +bovine bovin adj f s 0.28 1.49 0.10 0.68 +bovines bovin adj f p 0.28 1.49 0.03 0.07 +bovins bovin nom m p 0.23 1.49 0.17 1.22 +bow_window bow_window nom m s 0.00 0.54 0.00 0.27 +bow_window bow_window nom m p 0.00 0.54 0.00 0.27 +bowling bowling nom m s 0.00 1.08 0.00 1.08 +box_calf box_calf nom m s 0.00 0.27 0.00 0.27 +box_office box_office nom m s 0.35 0.20 0.35 0.14 +box_office box_office nom m p 0.35 0.20 0.00 0.07 +box box nom m 2.48 4.05 2.48 4.05 +boxa boxer ver 5.78 2.84 0.01 0.20 ind:pas:3s; +boxaient boxer ver 5.78 2.84 0.00 0.14 ind:imp:3p; +boxais boxer ver 5.78 2.84 0.29 0.00 ind:imp:1s;ind:imp:2s; +boxait boxer ver 5.78 2.84 0.08 0.27 ind:imp:3s; +boxant boxer ver 5.78 2.84 0.05 0.07 par:pre; +boxe boxe nom f s 9.32 8.58 9.20 7.64 +boxent boxer ver 5.78 2.84 0.01 0.00 ind:pre:3p; +boxer_short boxer_short nom m s 0.05 0.07 0.05 0.07 +boxer boxer ver 5.78 2.84 3.14 1.28 inf; +boxerai boxer ver 5.78 2.84 0.06 0.00 ind:fut:1s; +boxerais boxer ver 5.78 2.84 0.04 0.00 cnd:pre:1s; +boxerez boxer ver 5.78 2.84 0.02 0.00 ind:fut:2p; +boxers boxer nom m p 0.75 0.34 0.13 0.14 +boxes boxer ver 5.78 2.84 0.62 0.14 ind:pre:2s; +boxeur boxeur nom m s 8.71 7.97 6.32 6.15 +boxeurs boxeur nom m p 8.71 7.97 2.04 1.82 +boxeuse boxeur nom f s 8.71 7.97 0.35 0.00 +boxez boxer ver 5.78 2.84 0.41 0.07 imp:pre:2p;ind:pre:2p; +boxon boxon nom m s 0.62 1.01 0.60 0.74 +boxons boxon nom m p 0.62 1.01 0.02 0.27 +boxé boxer ver m s 5.78 2.84 0.41 0.34 par:pas; +boxés boxer ver m p 5.78 2.84 0.00 0.07 par:pas; +boy_friend boy_friend nom m s 0.00 0.14 0.00 0.14 +boy_scout boy_scout nom m s 2.09 1.62 0.86 0.68 +boy_scoutesque boy_scoutesque adj f s 0.00 0.07 0.00 0.07 +boy_scout boy_scout nom m p 2.09 1.62 1.22 0.95 +boy boy nom m s 12.82 8.51 8.36 6.42 +boyard boyard nom m s 3.96 0.88 1.72 0.54 +boyards boyard nom m p 3.96 0.88 2.24 0.34 +boyau boyau nom m s 2.86 13.58 0.19 8.24 +boyauter boyauter ver 0.00 0.07 0.00 0.07 inf; +boyaux boyau nom m p 2.86 13.58 2.67 5.34 +boycott boycott nom m s 0.64 0.00 0.64 0.00 +boycotte boycotter ver 0.67 0.14 0.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boycottent boycotter ver 0.67 0.14 0.17 0.00 ind:pre:3p; +boycotter boycotter ver 0.67 0.14 0.32 0.07 inf; +boycotterai boycotter ver 0.67 0.14 0.01 0.00 ind:fut:1s; +boycotteront boycotter ver 0.67 0.14 0.00 0.07 ind:fut:3p; +boycottes boycotter ver 0.67 0.14 0.01 0.00 ind:pre:2s; +boycottez boycotter ver 0.67 0.14 0.04 0.00 imp:pre:2p; +boycotté boycotter ver m s 0.67 0.14 0.02 0.00 par:pas; +boys boy nom m p 12.82 8.51 4.46 2.09 +bozo bozo nom m s 0.25 0.00 0.25 0.00 +brûla brûler ver 110.28 104.73 0.76 2.77 ind:pas:3s; +brûlage brûlage nom m s 0.10 0.20 0.10 0.20 +brûlai brûler ver 110.28 104.73 0.01 0.27 ind:pas:1s; +brûlaient brûler ver 110.28 104.73 0.97 7.03 ind:imp:3p; +brûlais brûler ver 110.28 104.73 0.50 1.28 ind:imp:1s;ind:imp:2s; +brûlait brûler ver 110.28 104.73 2.69 18.72 ind:imp:3s; +brûlant brûlant adj m s 10.48 36.28 4.48 15.68 +brûlante brûlant adj f s 10.48 36.28 3.75 10.74 +brûlantes brûlant adj f p 10.48 36.28 1.20 4.73 +brûlants brûlant adj m p 10.48 36.28 1.06 5.14 +brûlasse brûler ver 110.28 104.73 0.00 0.07 sub:imp:1s; +brûlassent brûler ver 110.28 104.73 0.00 0.07 sub:imp:3p; +brûle_gueule brûle_gueule nom m s 0.00 0.41 0.00 0.41 +brûle brûler ver 110.28 104.73 33.66 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +brûlent brûler ver 110.28 104.73 5.41 4.73 ind:pre:3p; +brûler brûler ver 110.28 104.73 23.14 21.15 inf;; +brûlera brûler ver 110.28 104.73 1.75 0.47 ind:fut:3s; +brûlerai brûler ver 110.28 104.73 1.17 0.41 ind:fut:1s; +brûleraient brûler ver 110.28 104.73 0.05 0.20 cnd:pre:3p; +brûlerais brûler ver 110.28 104.73 0.34 0.20 cnd:pre:1s;cnd:pre:2s; +brûlerait brûler ver 110.28 104.73 0.38 1.08 cnd:pre:3s; +brûleras brûler ver 110.28 104.73 0.37 0.07 ind:fut:2s; +brûlerez brûler ver 110.28 104.73 0.18 0.00 ind:fut:2p; +brûlerons brûler ver 110.28 104.73 0.23 0.20 ind:fut:1p; +brûleront brûler ver 110.28 104.73 1.51 0.41 ind:fut:3p; +brûles brûler ver 110.28 104.73 1.57 0.41 ind:pre:2s;sub:pre:2s; +brûleur brûleur nom m s 0.37 0.34 0.12 0.14 +brûleurs brûleur nom m p 0.37 0.34 0.23 0.20 +brûleuse brûleur nom f s 0.37 0.34 0.01 0.00 +brûlez brûler ver 110.28 104.73 4.89 0.61 imp:pre:2p;ind:pre:2p; +brûliez brûler ver 110.28 104.73 0.05 0.00 ind:imp:2p; +brûlions brûler ver 110.28 104.73 0.06 0.07 ind:imp:1p; +brûlis brûlis nom m 0.11 0.34 0.11 0.34 +brûloirs brûloir nom m p 0.00 0.07 0.00 0.07 +brûlons brûler ver 110.28 104.73 1.45 0.27 imp:pre:1p;ind:pre:1p; +brûlât brûler ver 110.28 104.73 0.00 0.41 sub:imp:3s; +brûlot brûlot nom m s 0.14 1.35 0.01 0.74 +brûlots brûlot nom m p 0.14 1.35 0.14 0.61 +brûlèrent brûler ver 110.28 104.73 0.11 0.54 ind:pas:3p; +brûlé brûler ver m s 110.28 104.73 20.41 11.42 par:pas;par:pas;par:pas; +brûlée brûler ver f s 110.28 104.73 3.57 3.51 par:pas; +brûlées brûler ver f p 110.28 104.73 1.11 1.96 par:pas; +brûlure brûlure nom f s 6.47 12.50 2.31 9.19 +brûlures brûlure nom f p 6.47 12.50 4.16 3.31 +brûlés brûler ver m p 110.28 104.73 2.33 3.18 par:pas; +brabant brabant nom m s 0.20 0.00 0.20 0.00 +brabançon brabançon adj m s 0.00 0.27 0.00 0.20 +brabançonne brabançon adj f s 0.00 0.27 0.00 0.07 +brabançons brabançon nom m p 0.00 0.07 0.00 0.07 +bracelet_montre bracelet_montre nom m s 0.00 2.70 0.00 1.76 +bracelet bracelet nom m s 13.45 9.53 9.81 5.74 +bracelet_montre bracelet_montre nom m p 0.00 2.70 0.00 0.95 +bracelets bracelet nom m p 13.45 9.53 3.63 3.78 +brachial brachial adj m s 0.19 0.00 0.12 0.00 +brachiale brachial adj f s 0.19 0.00 0.07 0.00 +brachiocéphalique brachiocéphalique adj m s 0.01 0.00 0.01 0.00 +brachiosaure brachiosaure nom m s 0.02 0.00 0.02 0.00 +brachycéphale brachycéphale nom s 0.00 0.07 0.00 0.07 +brachycéphales brachycéphale adj m p 0.00 0.14 0.00 0.14 +braco braco nom m s 0.00 0.20 0.00 0.20 +braconnage braconnage nom m s 0.28 0.61 0.27 0.54 +braconnages braconnage nom m p 0.28 0.61 0.01 0.07 +braconnais braconner ver 0.18 0.95 0.01 0.07 ind:imp:1s; +braconnait braconner ver 0.18 0.95 0.01 0.07 ind:imp:3s; +braconnant braconner ver 0.18 0.95 0.01 0.14 par:pre; +braconne braconner ver 0.18 0.95 0.02 0.14 imp:pre:2s;ind:pre:3s; +braconner braconner ver 0.18 0.95 0.08 0.47 inf; +braconnez braconner ver 0.18 0.95 0.02 0.07 ind:pre:2p; +braconnier braconnier nom m s 0.85 2.77 0.48 2.03 +braconniers braconnier nom m p 0.85 2.77 0.36 0.61 +braconnière braconnier nom f s 0.85 2.77 0.01 0.07 +braconnières braconnier nom f p 0.85 2.77 0.00 0.07 +braconné braconner ver m s 0.18 0.95 0.02 0.00 par:pas; +bractées bractée nom f p 0.00 0.20 0.00 0.20 +bradaient brader ver 0.98 1.22 0.00 0.07 ind:imp:3p; +bradait brader ver 0.98 1.22 0.01 0.00 ind:imp:3s; +brade brader ver 0.98 1.22 0.26 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bradent brader ver 0.98 1.22 0.01 0.14 ind:pre:3p; +brader brader ver 0.98 1.22 0.48 0.20 inf; +braderai brader ver 0.98 1.22 0.10 0.00 ind:fut:1s; +braderais brader ver 0.98 1.22 0.01 0.00 cnd:pre:1s; +braderait brader ver 0.98 1.22 0.01 0.00 cnd:pre:3s; +braderie braderie nom f s 0.31 0.14 0.31 0.07 +braderies braderie nom f p 0.31 0.14 0.00 0.07 +bradillon bradillon nom m s 0.00 0.20 0.00 0.07 +bradillons bradillon nom m p 0.00 0.20 0.00 0.14 +bradons brader ver 0.98 1.22 0.00 0.07 imp:pre:1p; +bradé brader ver m s 0.98 1.22 0.07 0.41 par:pas; +bradée brader ver f s 0.98 1.22 0.03 0.14 par:pas; +bradycardie bradycardie nom f s 0.17 0.00 0.17 0.00 +bragard bragard nom m s 0.00 0.07 0.00 0.07 +braguette braguette nom f s 3.96 6.69 3.85 5.95 +braguettes braguette nom f p 3.96 6.69 0.11 0.74 +brahmane brahmane nom m s 0.02 0.47 0.00 0.20 +brahmanes brahmane nom m p 0.02 0.47 0.02 0.27 +brahmanique brahmanique adj m s 0.00 0.07 0.00 0.07 +brahmanisme brahmanisme nom m s 0.02 0.07 0.02 0.07 +brahmanistes brahmaniste adj m p 0.00 0.07 0.00 0.07 +brahmanistes brahmaniste nom p 0.00 0.07 0.00 0.07 +brai brai nom m s 0.02 0.00 0.01 0.00 +braie brayer ver 0.01 0.34 0.01 0.14 ind:pre:3s; +braiement braiement nom m s 0.01 0.07 0.01 0.00 +braiements braiement nom m p 0.01 0.07 0.00 0.07 +braies braie nom f p 0.03 0.81 0.03 0.81 +brailla brailler ver 2.90 14.53 0.00 1.42 ind:pas:3s; +braillaient brailler ver 2.90 14.53 0.00 0.95 ind:imp:3p; +braillait brailler ver 2.90 14.53 0.16 1.96 ind:imp:3s; +braillant brailler ver 2.90 14.53 0.11 1.96 par:pre; +braillard braillard adj m s 0.21 2.16 0.10 0.20 +braillarde braillard adj f s 0.21 2.16 0.04 0.14 +braillardes braillard adj f p 0.21 2.16 0.01 0.07 +braillards braillard adj m p 0.21 2.16 0.07 1.76 +braille braille nom m s 0.55 0.47 0.55 0.47 +braillement braillement nom m s 0.01 0.54 0.01 0.14 +braillements braillement nom m p 0.01 0.54 0.00 0.41 +braillent brailler ver 2.90 14.53 0.15 0.74 ind:pre:3p; +brailler brailler ver 2.90 14.53 1.62 3.18 inf; +braillera brailler ver 2.90 14.53 0.14 0.00 ind:fut:3s; +braillerai brailler ver 2.90 14.53 0.16 0.00 ind:fut:1s; +brailles brailler ver 2.90 14.53 0.06 0.07 ind:pre:2s; +brailleur brailleur adj m s 0.01 0.07 0.01 0.00 +brailleur brailleur nom m s 0.03 0.07 0.01 0.00 +brailleurs brailleur nom m p 0.03 0.07 0.01 0.07 +brailleuse brailleur nom f s 0.03 0.07 0.01 0.00 +braillez brailler ver 2.90 14.53 0.15 0.00 imp:pre:2p;ind:pre:2p; +braillèrent brailler ver 2.90 14.53 0.00 0.27 ind:pas:3p; +braillé brailler ver m s 2.90 14.53 0.07 1.15 par:pas; +braillée brailler ver f s 2.90 14.53 0.00 0.07 par:pas; +braillés brailler ver m p 2.90 14.53 0.00 0.07 par:pas; +braiment braiment nom m s 7.91 0.34 2.69 0.27 +braiments braiment nom m p 7.91 0.34 5.22 0.07 +brain_trust brain_trust nom m s 0.03 0.07 0.03 0.07 +brainstorming brainstorming nom m s 0.04 0.00 0.04 0.00 +braire braire ver 0.37 0.61 0.34 0.61 inf; +brais brai nom m p 0.02 0.00 0.01 0.00 +braise braise nom f s 2.04 12.23 1.12 5.88 +braiser braiser ver 0.08 0.27 0.04 0.00 inf; +braises braise nom f p 2.04 12.23 0.93 6.35 +braisillant braisillant adj m s 0.00 0.14 0.00 0.07 +braisillante braisillant adj f s 0.00 0.14 0.00 0.07 +braisé braisé adj m s 0.42 0.20 0.28 0.07 +braisée braisé adj f s 0.42 0.20 0.14 0.07 +braisés braisé adj m p 0.42 0.20 0.01 0.07 +brait braire ver 0.37 0.61 0.03 0.00 ind:pre:3s; +brama bramer ver 0.12 4.26 0.00 0.54 ind:pas:3s; +bramaient bramer ver 0.12 4.26 0.00 0.14 ind:imp:3p; +bramait bramer ver 0.12 4.26 0.00 0.54 ind:imp:3s; +bramant bramer ver 0.12 4.26 0.00 0.34 par:pre; +brame brame nom m s 0.01 3.58 0.01 3.24 +bramement bramement nom m s 0.11 0.20 0.10 0.14 +bramements bramement nom m p 0.11 0.20 0.01 0.07 +brament bramer ver 0.12 4.26 0.00 0.07 ind:pre:3p; +bramer bramer ver 0.12 4.26 0.01 1.28 inf; +brames bramer ver 0.12 4.26 0.10 0.00 ind:pre:2s; +bramé bramer ver m s 0.12 4.26 0.00 0.81 par:pas; +bramées bramer ver f p 0.12 4.26 0.00 0.07 par:pas; +bran bran nom m s 0.16 0.07 0.16 0.07 +brancard brancard nom m s 2.47 7.30 1.97 3.11 +brancarder brancarder ver 0.01 0.00 0.01 0.00 inf; +brancardier brancardier nom m s 1.42 3.92 0.55 0.54 +brancardiers brancardier nom m p 1.42 3.92 0.86 3.38 +brancards brancard nom m p 2.47 7.30 0.51 4.19 +brancha brancher ver 20.34 8.04 0.01 0.27 ind:pas:3s; +branchage branchage nom m s 0.41 4.46 0.00 0.81 +branchages branchage nom m p 0.41 4.46 0.41 3.65 +branchai brancher ver 20.34 8.04 0.00 0.14 ind:pas:1s; +branchaient brancher ver 20.34 8.04 0.02 0.20 ind:imp:3p; +branchais brancher ver 20.34 8.04 0.05 0.07 ind:imp:1s; +branchait brancher ver 20.34 8.04 0.23 0.54 ind:imp:3s; +branchant brancher ver 20.34 8.04 0.06 0.07 par:pre; +branche branche nom f s 18.07 85.61 11.85 24.12 +branchement branchement nom m s 0.52 0.27 0.33 0.20 +branchements branchement nom m p 0.52 0.27 0.20 0.07 +branchent brancher ver 20.34 8.04 0.30 0.00 ind:pre:3p; +brancher brancher ver 20.34 8.04 4.40 1.55 inf; +branchera brancher ver 20.34 8.04 0.04 0.00 ind:fut:3s; +brancheraient brancher ver 20.34 8.04 0.00 0.07 cnd:pre:3p; +brancherait brancher ver 20.34 8.04 0.39 0.00 cnd:pre:3s; +brancheras brancher ver 20.34 8.04 0.01 0.00 ind:fut:2s; +brancherez brancher ver 20.34 8.04 0.01 0.07 ind:fut:2p; +branches branche nom f p 18.07 85.61 6.22 61.49 +branchette branchette nom f s 0.16 2.30 0.16 0.54 +branchettes branchette nom f p 0.16 2.30 0.00 1.76 +branchez brancher ver 20.34 8.04 1.44 0.00 imp:pre:2p;ind:pre:2p; +branchiale branchial adj f s 0.03 0.00 0.03 0.00 +branchie branchie nom f s 0.50 0.20 0.03 0.00 +branchies branchie nom f p 0.50 0.20 0.47 0.20 +branchons brancher ver 20.34 8.04 0.06 0.07 imp:pre:1p;ind:pre:1p; +branché brancher ver m s 20.34 8.04 4.72 1.96 par:pas; +branchu branchu adj m s 0.01 0.27 0.00 0.07 +branchée brancher ver f s 20.34 8.04 1.23 0.88 par:pas; +branchue branchu adj f s 0.01 0.27 0.00 0.07 +branchées branché adj f p 4.64 1.42 0.17 0.00 +branchés branché adj m p 4.64 1.42 0.83 0.34 +branchus branchu adj m p 0.01 0.27 0.01 0.14 +brand brand nom m s 0.02 0.14 0.02 0.00 +brandît brandir ver 5.40 22.09 0.00 0.07 sub:imp:3s; +brandade brandade nom f s 0.14 0.14 0.14 0.14 +brande brand nom f s 0.02 0.14 0.00 0.14 +brandebourgeois brandebourgeois adj m s 0.11 0.14 0.11 0.14 +brandebourgs brandebourg nom m p 0.00 1.15 0.00 1.15 +brandevin brandevin nom m s 0.01 0.00 0.01 0.00 +brandevinier brandevinier nom m s 0.00 0.41 0.00 0.41 +brandi brandir ver m s 5.40 22.09 1.08 2.16 par:pas; +brandie brandir ver f s 5.40 22.09 0.27 0.54 par:pas; +brandies brandir ver f p 5.40 22.09 0.03 0.54 par:pas; +brandillon brandillon nom m s 0.00 0.61 0.00 0.34 +brandillons brandillon nom m p 0.00 0.61 0.00 0.27 +brandir brandir ver 5.40 22.09 1.01 1.42 inf; +brandira brandir ver 5.40 22.09 0.27 0.07 ind:fut:3s; +brandirait brandir ver 5.40 22.09 0.00 0.07 cnd:pre:3s; +brandirent brandir ver 5.40 22.09 0.00 0.14 ind:pas:3p; +brandiront brandir ver 5.40 22.09 0.14 0.07 ind:fut:3p; +brandis brandir ver m p 5.40 22.09 0.36 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +brandissaient brandir ver 5.40 22.09 0.01 0.88 ind:imp:3p; +brandissais brandir ver 5.40 22.09 0.05 0.34 ind:imp:1s;ind:imp:2s; +brandissait brandir ver 5.40 22.09 0.07 3.18 ind:imp:3s; +brandissant brandir ver 5.40 22.09 0.84 5.54 par:pre; +brandisse brandir ver 5.40 22.09 0.01 0.14 sub:pre:3s; +brandissent brandir ver 5.40 22.09 0.47 0.68 ind:pre:3p; +brandissez brandir ver 5.40 22.09 0.28 0.07 imp:pre:2p;ind:pre:2p; +brandissiez brandir ver 5.40 22.09 0.01 0.00 ind:imp:2p; +brandissions brandir ver 5.40 22.09 0.00 0.07 ind:imp:1p; +brandissons brandir ver 5.40 22.09 0.01 0.07 imp:pre:1p; +brandit brandir ver 5.40 22.09 0.49 5.34 ind:pre:3s;ind:pas:3s; +brandon brandon nom m s 0.12 0.81 0.02 0.68 +brandons brandon nom m p 0.12 0.81 0.10 0.14 +brandouille brandouiller ver 0.00 0.07 0.00 0.07 ind:pre:3s; +brandy brandy nom m s 3.10 0.14 3.10 0.14 +branla branler ver 12.72 9.93 0.00 0.27 ind:pas:3s; +branlage branlage nom m 0.02 0.07 0.02 0.07 +branlaient branler ver 12.72 9.93 0.03 0.34 ind:imp:3p; +branlais branler ver 12.72 9.93 0.33 0.27 ind:imp:1s;ind:imp:2s; +branlait branler ver 12.72 9.93 0.11 1.49 ind:imp:3s; +branlant branlant adj m s 0.56 4.66 0.20 1.55 +branlante branlant adj f s 0.56 4.66 0.28 1.76 +branlantes branlant adj f p 0.56 4.66 0.07 0.95 +branlants branlant adj m p 0.56 4.66 0.01 0.41 +branle_bas branle_bas nom m 0.29 1.82 0.29 1.82 +branle branler ver 12.72 9.93 5.07 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +branlement branlement nom m s 0.01 0.07 0.01 0.07 +branlent branler ver 12.72 9.93 0.27 0.34 ind:pre:3p; +branler branler ver 12.72 9.93 4.82 3.04 inf; +branlera branler ver 12.72 9.93 0.02 0.00 ind:fut:3s; +branlerais branler ver 12.72 9.93 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +branlerait branler ver 12.72 9.93 0.00 0.07 cnd:pre:3s; +branles branler ver 12.72 9.93 1.27 0.34 ind:pre:2s; +branlette branlette nom f s 3.25 0.68 2.68 0.41 +branlettes branlette nom f p 3.25 0.68 0.57 0.27 +branleur branleur nom m s 5.08 1.35 2.90 0.34 +branleurs branleur nom m p 5.08 1.35 2.15 0.81 +branleuse branleur nom f s 5.08 1.35 0.03 0.14 +branleuses branleuse nom f p 0.14 0.00 0.14 0.00 +branlez branler ver 12.72 9.93 0.18 0.20 imp:pre:2p;ind:pre:2p; +branlochais branlocher ver 0.00 0.20 0.00 0.07 ind:imp:1s; +branlochant branlocher ver 0.00 0.20 0.00 0.07 par:pre; +branlochent branlocher ver 0.00 0.20 0.00 0.07 ind:pre:3p; +branlé branler ver m s 12.72 9.93 0.41 0.41 par:pas; +branlée branlée nom f s 0.80 0.47 0.80 0.47 +branlés branler ver m p 12.72 9.93 0.03 0.00 par:pas; +branque branque adj s 0.68 3.11 0.42 2.43 +branques branque adj m p 0.68 3.11 0.26 0.68 +branquignol branquignol nom m s 0.05 0.07 0.03 0.00 +branquignols branquignol nom m p 0.05 0.07 0.02 0.07 +braqua braquer ver 15.67 15.54 0.01 0.54 ind:pas:3s; +braquage braquage nom m s 7.74 1.62 6.49 1.22 +braquages braquage nom m p 7.74 1.62 1.26 0.41 +braquai braquer ver 15.67 15.54 0.00 0.14 ind:pas:1s; +braquaient braquer ver 15.67 15.54 0.18 0.14 ind:imp:3p; +braquais braquer ver 15.67 15.54 0.07 0.27 ind:imp:1s;ind:imp:2s; +braquait braquer ver 15.67 15.54 0.32 1.28 ind:imp:3s; +braquant braquer ver 15.67 15.54 0.28 1.01 par:pre; +braque braquer ver 15.67 15.54 1.94 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +braquemart braquemart nom m s 0.22 0.61 0.19 0.61 +braquemarts braquemart nom m p 0.22 0.61 0.03 0.00 +braquent braquer ver 15.67 15.54 0.28 0.68 ind:pre:3p; +braquer braquer ver 15.67 15.54 5.19 2.97 inf; +braquera braquer ver 15.67 15.54 0.05 0.00 ind:fut:3s; +braquerais braquer ver 15.67 15.54 0.00 0.07 cnd:pre:2s; +braquerait braquer ver 15.67 15.54 0.05 0.00 cnd:pre:3s; +braques braquer ver 15.67 15.54 0.73 0.07 ind:pre:2s; +braquet braquet nom m s 0.00 0.20 0.00 0.14 +braquets braquet nom m p 0.00 0.20 0.00 0.07 +braqueur braqueur nom m s 2.91 1.01 1.74 0.54 +braqueurs braqueur nom m p 2.91 1.01 1.14 0.47 +braqueuse braqueur nom f s 2.91 1.01 0.03 0.00 +braqueuses braqueuse nom f p 0.21 0.00 0.21 0.00 +braquez braquer ver 15.67 15.54 0.23 0.07 imp:pre:2p;ind:pre:2p; +braquèrent braquer ver 15.67 15.54 0.00 0.14 ind:pas:3p; +braqué braquer ver m s 15.67 15.54 4.79 2.57 par:pas; +braquée braquer ver f s 15.67 15.54 0.47 1.08 par:pas; +braquées braquer ver f p 15.67 15.54 0.40 0.74 par:pas; +braqués braquer ver m p 15.67 15.54 0.70 2.30 par:pas; +bras bras nom m 149.26 487.97 149.26 487.97 +brasage brasage nom m s 0.00 0.07 0.00 0.07 +braser braser ver 0.00 0.07 0.00 0.07 inf; +brasero brasero nom m s 0.04 1.82 0.02 1.15 +braseros brasero nom m p 0.04 1.82 0.01 0.68 +brasier brasier nom m s 1.47 6.42 1.43 5.81 +brasiers brasier nom m p 1.47 6.42 0.04 0.61 +brasillaient brasiller ver 0.00 0.88 0.00 0.34 ind:imp:3p; +brasillait brasiller ver 0.00 0.88 0.00 0.14 ind:imp:3s; +brasillant brasiller ver 0.00 0.88 0.00 0.07 par:pre; +brasille brasiller ver 0.00 0.88 0.00 0.14 ind:pre:3s; +brasillement brasillement nom m s 0.00 0.20 0.00 0.20 +brasiller brasiller ver 0.00 0.88 0.00 0.20 inf; +brassage brassage nom m s 0.09 0.81 0.09 0.61 +brassages brassage nom m p 0.09 0.81 0.00 0.20 +brassai brasser ver 1.03 5.61 0.00 0.07 ind:pas:1s; +brassaient brasser ver 1.03 5.61 0.01 0.27 ind:imp:3p; +brassait brasser ver 1.03 5.61 0.01 0.95 ind:imp:3s; +brassant brasser ver 1.03 5.61 0.01 0.95 par:pre; +brassard brassard nom m s 0.71 4.93 0.42 3.92 +brassards brassard nom m p 0.71 4.93 0.29 1.01 +brasse brasse nom f s 0.67 2.16 0.37 0.81 +brassent brasser ver 1.03 5.61 0.01 0.27 ind:pre:3p; +brasser brasser ver 1.03 5.61 0.43 0.74 inf; +brasserie_hôtel brasserie_hôtel nom f s 0.00 0.07 0.00 0.07 +brasserie brasserie nom f s 1.89 9.05 1.31 7.97 +brasseries brasserie nom f p 1.89 9.05 0.58 1.08 +brasseront brasser ver 1.03 5.61 0.00 0.07 ind:fut:3p; +brasses brasse nom f p 0.67 2.16 0.30 1.35 +brasseur brasseur nom m s 0.24 0.54 0.23 0.34 +brasseurs brasseur nom m p 0.24 0.54 0.01 0.20 +brassez brasser ver 1.03 5.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +brassicourt brassicourt adj m s 0.00 0.07 0.00 0.07 +brassions brasser ver 1.03 5.61 0.00 0.14 ind:imp:1p; +brassière brassière nom f s 0.55 0.54 0.36 0.20 +brassières brassière nom f p 0.55 0.54 0.18 0.34 +brassé brasser ver m s 1.03 5.61 0.20 0.54 par:pas; +brassée brassée nom f s 0.06 3.18 0.04 1.96 +brassées brassée nom f p 0.06 3.18 0.02 1.22 +brassés brasser ver m p 1.03 5.61 0.01 0.14 par:pas; +brasure brasure nom f s 0.00 0.07 0.00 0.07 +brava braver ver 3.20 5.20 0.22 0.41 ind:pas:3s; +bravache bravache adj m s 0.16 0.14 0.14 0.07 +bravaches bravache nom m p 0.08 0.27 0.01 0.20 +bravade bravade nom f s 0.15 1.69 0.12 1.42 +bravades bravade nom f p 0.15 1.69 0.03 0.27 +bravaient braver ver 3.20 5.20 0.00 0.20 ind:imp:3p; +bravais braver ver 3.20 5.20 0.16 0.14 ind:imp:1s;ind:imp:2s; +bravait braver ver 3.20 5.20 0.01 0.41 ind:imp:3s; +bravant braver ver 3.20 5.20 0.36 0.74 par:pre; +brave brave adj s 30.93 35.00 24.55 23.31 +bravement bravement adv 0.59 3.78 0.59 3.78 +bravent braver ver 3.20 5.20 0.02 0.07 ind:pre:3p; +braver braver ver 3.20 5.20 1.48 2.09 inf; +braverai braver ver 3.20 5.20 0.02 0.00 ind:fut:1s; +braveraient braver ver 3.20 5.20 0.01 0.00 cnd:pre:3p; +braverait braver ver 3.20 5.20 0.00 0.07 cnd:pre:3s; +braveries braverie nom f p 0.00 0.07 0.00 0.07 +braveriez braver ver 3.20 5.20 0.01 0.00 cnd:pre:2p; +braves brave adj p 30.93 35.00 6.39 11.69 +bravez braver ver 3.20 5.20 0.03 0.00 imp:pre:2p;ind:pre:2p; +bravissimo bravissimo nom m s 0.15 0.20 0.15 0.20 +bravo bravo ono 48.98 7.91 48.98 7.91 +bravons braver ver 3.20 5.20 0.02 0.00 imp:pre:1p; +bravos bravo nom m p 8.93 4.59 0.73 1.35 +bravoure bravoure nom f s 2.78 3.18 2.78 3.18 +bravèrent braver ver 3.20 5.20 0.03 0.00 ind:pas:3p; +bravé braver ver m s 3.20 5.20 0.45 0.20 par:pas; +bravée braver ver f s 3.20 5.20 0.00 0.07 par:pas; +brayaient brayer ver 0.01 0.34 0.00 0.07 ind:imp:3p; +brayait brayer ver 0.01 0.34 0.00 0.07 ind:imp:3s; +braye braye nom f s 0.00 0.61 0.00 0.61 +brayes brayer ver 0.01 0.34 0.00 0.07 ind:pre:2s; +brayons brayon nom m p 0.00 0.07 0.00 0.07 +break_down break_down nom m 0.00 0.14 0.00 0.14 +break break nom m s 7.18 2.09 6.91 1.96 +breakdance breakdance nom f s 0.10 0.00 0.10 0.00 +breakfast breakfast nom m s 0.64 1.22 0.60 1.22 +breakfasts breakfast nom m p 0.64 1.22 0.03 0.00 +breaks break nom m p 7.18 2.09 0.27 0.14 +brebis brebis nom f 7.02 7.03 7.02 7.03 +brechtienne brechtien nom f s 0.00 0.07 0.00 0.07 +bredin bredin nom m s 0.00 0.07 0.00 0.07 +bredouilla bredouiller ver 0.73 13.38 0.00 4.46 ind:pas:3s; +bredouillage bredouillage nom m s 0.00 0.14 0.00 0.14 +bredouillai bredouiller ver 0.73 13.38 0.00 0.41 ind:pas:1s; +bredouillaient bredouiller ver 0.73 13.38 0.00 0.41 ind:imp:3p; +bredouillais bredouiller ver 0.73 13.38 0.00 0.41 ind:imp:1s; +bredouillait bredouiller ver 0.73 13.38 0.06 1.01 ind:imp:3s; +bredouillant bredouiller ver 0.73 13.38 0.00 1.42 par:pre; +bredouillante bredouillant adj f s 0.00 0.20 0.00 0.07 +bredouille bredouille adj s 1.41 2.70 1.18 2.09 +bredouillement bredouillement nom m s 0.00 0.68 0.00 0.54 +bredouillements bredouillement nom m p 0.00 0.68 0.00 0.14 +bredouillent bredouiller ver 0.73 13.38 0.00 0.07 ind:pre:3p; +bredouiller bredouiller ver 0.73 13.38 0.11 1.96 inf; +bredouilles bredouille adj m p 1.41 2.70 0.23 0.61 +bredouilleurs bredouilleur nom m p 0.00 0.07 0.00 0.07 +bredouillez bredouiller ver 0.73 13.38 0.11 0.00 imp:pre:2p;ind:pre:2p; +bredouillis bredouillis nom m 0.00 0.14 0.00 0.14 +bredouillé bredouiller ver m s 0.73 13.38 0.13 1.15 par:pas; +bredouillées bredouiller ver f p 0.73 13.38 0.00 0.14 par:pas; +bref bref adv 22.26 38.78 22.26 38.78 +brefs bref adj m p 15.63 74.80 0.92 10.20 +bregma bregma nom m s 0.01 0.00 0.01 0.00 +breitschwanz breitschwanz nom m s 0.00 0.20 0.00 0.20 +brelan brelan nom m s 1.29 0.54 1.28 0.54 +brelans brelan nom m p 1.29 0.54 0.01 0.00 +breloque breloque nom f s 0.56 1.69 0.27 0.95 +breloques breloque nom f p 0.56 1.69 0.29 0.74 +breneuses breneux adj f p 0.00 0.14 0.00 0.07 +breneux breneux adj m s 0.00 0.14 0.00 0.07 +bressan bressan adj m s 0.00 0.68 0.00 0.20 +bressane bressan adj f s 0.00 0.68 0.00 0.34 +bressanes bressan adj f p 0.00 0.68 0.00 0.07 +bressans bressan adj m p 0.00 0.68 0.00 0.07 +brestois brestois nom m 0.00 0.20 0.00 0.14 +brestoise brestois nom f s 0.00 0.20 0.00 0.07 +bretelle bretelle nom f s 2.63 13.04 1.10 3.72 +bretelles bretelle nom f p 2.63 13.04 1.54 9.32 +breton breton adj m s 0.71 9.86 0.17 3.99 +bretonnant bretonnant adj m s 0.00 0.14 0.00 0.07 +bretonnants bretonnant adj m p 0.00 0.14 0.00 0.07 +bretonne breton adj f s 0.71 9.86 0.54 3.18 +bretonnes bretonne nom f p 0.03 0.00 0.01 0.00 +bretons breton nom m p 0.32 4.86 0.18 1.35 +brette brette nom f s 0.01 0.00 0.01 0.00 +bretteur bretteur nom m s 0.31 0.20 0.27 0.00 +bretteurs bretteur nom m p 0.31 0.20 0.04 0.20 +bretzel bretzel nom s 1.51 0.47 0.47 0.07 +bretzels bretzel nom p 1.51 0.47 1.04 0.41 +breuil breuil nom m s 0.00 0.14 0.00 0.07 +breuils breuil nom m p 0.00 0.14 0.00 0.07 +breuvage breuvage nom m s 0.88 2.57 0.83 2.09 +breuvages breuvage nom m p 0.88 2.57 0.04 0.47 +brevet brevet nom m s 3.10 3.58 1.83 3.11 +breveter breveter ver 0.49 0.41 0.32 0.14 inf; +brevets brevet nom m p 3.10 3.58 1.27 0.47 +breveté breveté adj m s 0.36 0.61 0.30 0.47 +brevetée breveter ver f s 0.49 0.41 0.05 0.07 par:pas; +brevetées breveté adj f p 0.36 0.61 0.03 0.07 +brevetés breveter ver m p 0.49 0.41 0.03 0.00 par:pas; +bri bri nom m s 0.54 0.41 0.54 0.41 +briard briard adj m s 0.03 0.20 0.03 0.14 +briarde briard adj f s 0.03 0.20 0.00 0.07 +briards briard nom m p 0.01 0.20 0.00 0.07 +bribe bribe nom f s 0.88 14.73 0.03 1.55 +bribes bribe nom f p 0.88 14.73 0.85 13.18 +bric_à_brac bric_à_brac nom m 0.00 3.24 0.00 3.24 +bric_et_de_broc bric_et_de_broc adv 0.03 0.47 0.03 0.47 +bricheton bricheton nom m s 0.00 0.68 0.00 0.68 +brick brick nom m s 1.51 0.34 1.30 0.14 +bricks brick nom m p 1.51 0.34 0.21 0.20 +bricola bricoler ver 4.03 6.15 0.00 0.07 ind:pas:3s; +bricolage bricolage nom m s 0.89 1.76 0.87 1.28 +bricolages bricolage nom m p 0.89 1.76 0.01 0.47 +bricolaient bricoler ver 4.03 6.15 0.01 0.07 ind:imp:3p; +bricolais bricoler ver 4.03 6.15 0.01 0.14 ind:imp:1s;ind:imp:2s; +bricolait bricoler ver 4.03 6.15 0.19 0.88 ind:imp:3s; +bricolant bricoler ver 4.03 6.15 0.01 0.20 par:pre; +bricole bricoler ver 4.03 6.15 1.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bricolent bricoler ver 4.03 6.15 0.04 0.20 ind:pre:3p; +bricoler bricoler ver 4.03 6.15 1.33 1.82 inf; +bricoles bricole nom f p 1.83 5.68 1.41 3.99 +bricoleur bricoleur nom m s 0.58 0.54 0.52 0.27 +bricoleurs bricoleur nom m p 0.58 0.54 0.04 0.27 +bricoleuse bricoleur nom f s 0.58 0.54 0.03 0.00 +bricolez bricoler ver 4.03 6.15 0.23 0.07 ind:pre:2p; +bricolo bricolo nom m s 0.04 0.27 0.04 0.14 +bricolons bricoler ver 4.03 6.15 0.01 0.00 ind:pre:1p; +bricolos bricolo nom m p 0.04 0.27 0.00 0.14 +bricolé bricoler ver m s 4.03 6.15 0.61 0.88 par:pas; +bricolée bricoler ver f s 4.03 6.15 0.07 0.47 par:pas; +bricolées bricoler ver f p 4.03 6.15 0.01 0.07 par:pas; +bricolés bricoler ver m p 4.03 6.15 0.01 0.14 par:pas; +bridais brider ver 0.91 2.30 0.00 0.07 ind:imp:1s; +bridait brider ver 0.91 2.30 0.00 0.41 ind:imp:3s; +bridant brider ver 0.91 2.30 0.10 0.07 par:pre; +bride bride nom f s 1.79 10.07 1.63 8.92 +brident brider ver 0.91 2.30 0.04 0.07 ind:pre:3p; +brider brider ver 0.91 2.30 0.27 0.47 inf; +brides bride nom f p 1.79 10.07 0.16 1.15 +bridez brider ver 0.91 2.30 0.01 0.00 ind:pre:2p; +bridge bridge nom m s 4.33 4.12 4.31 3.99 +bridgeait bridger ver 0.36 0.61 0.00 0.20 ind:imp:3s; +bridgeant bridger ver 0.36 0.61 0.00 0.07 par:pre; +bridgent bridger ver 0.36 0.61 0.00 0.07 ind:pre:3p; +bridgeons bridger ver 0.36 0.61 0.00 0.07 ind:pre:1p; +bridger bridger ver 0.36 0.61 0.35 0.14 inf; +bridges bridge nom m p 4.33 4.12 0.02 0.14 +bridgeurs bridgeur nom m p 0.02 0.07 0.00 0.07 +bridgeuse bridgeur nom f s 0.02 0.07 0.02 0.00 +bridgez bridger ver 0.36 0.61 0.01 0.00 ind:pre:2p; +bridgées bridger ver f p 0.36 0.61 0.00 0.07 par:pas; +bridon bridon nom m s 0.00 0.41 0.00 0.34 +bridons bridon nom m p 0.00 0.41 0.00 0.07 +bridé bridé adj m s 1.45 2.64 0.63 0.20 +bridée bridé adj f s 1.45 2.64 0.14 0.20 +bridées bridé adj f p 1.45 2.64 0.11 0.14 +bridés bridé adj m p 1.45 2.64 0.57 2.09 +brie brie nom s 0.33 0.88 0.33 0.74 +briefe briefer ver 2.04 0.00 0.17 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +briefer briefer ver 2.04 0.00 0.62 0.00 inf; +briefera briefer ver 2.04 0.00 0.09 0.00 ind:fut:3s; +brieferai briefer ver 2.04 0.00 0.20 0.00 ind:fut:1s; +brieferas briefer ver 2.04 0.00 0.05 0.00 ind:fut:2s; +briefes briefer ver 2.04 0.00 0.04 0.00 ind:pre:2s; +briefez briefer ver 2.04 0.00 0.06 0.00 imp:pre:2p; +briefing briefing nom m s 3.25 0.47 3.00 0.34 +briefings briefing nom m p 3.25 0.47 0.24 0.14 +briefé briefer ver m s 2.04 0.00 0.49 0.00 par:pas; +briefée briefer ver f s 2.04 0.00 0.07 0.00 par:pas; +briefés briefer ver m p 2.04 0.00 0.24 0.00 par:pas; +bries brie nom p 0.33 0.88 0.00 0.14 +brifez brifer ver 0.00 0.07 0.00 0.07 imp:pre:2p; +briffe briffer ver 0.12 0.88 0.10 0.34 ind:pre:1s;ind:pre:3s; +briffer briffer ver 0.12 0.88 0.02 0.54 inf; +brigade brigade nom f s 16.65 12.43 13.75 8.78 +brigades brigade nom f p 16.65 12.43 2.90 3.65 +brigadier_chef brigadier_chef nom m s 0.01 1.96 0.01 1.82 +brigadier brigadier nom m s 2.86 14.53 2.73 13.92 +brigadier_chef brigadier_chef nom m p 0.01 1.96 0.00 0.14 +brigadiers brigadier nom m p 2.86 14.53 0.14 0.61 +brigadiste brigadiste adj s 0.00 0.07 0.00 0.07 +brigadistes brigadiste nom p 0.00 0.07 0.00 0.07 +brigand brigand nom m s 5.14 3.72 2.10 1.35 +brigandage brigandage nom m s 0.30 0.74 0.30 0.47 +brigandages brigandage nom m p 0.30 0.74 0.00 0.27 +brigandaient brigander ver 0.11 0.27 0.00 0.07 ind:imp:3p; +brigandasse brigander ver 0.11 0.27 0.00 0.07 sub:imp:1s; +brigande brigander ver 0.11 0.27 0.11 0.14 imp:pre:2s;ind:pre:3s; +brigandeaux brigandeau nom m p 0.00 0.07 0.00 0.07 +brigands brigand nom m p 5.14 3.72 3.04 2.36 +brigantin brigantin nom m s 0.20 0.20 0.20 0.20 +brigantine brigantine nom f s 0.00 0.07 0.00 0.07 +brignolet brignolet nom m s 0.00 0.27 0.00 0.27 +briguaient briguer ver 0.81 1.01 0.01 0.07 ind:imp:3p; +briguait briguer ver 0.81 1.01 0.13 0.07 ind:imp:3s; +briguant briguer ver 0.81 1.01 0.00 0.07 par:pre; +brigue briguer ver 0.81 1.01 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +briguer briguer ver 0.81 1.01 0.32 0.54 inf; +briguerait briguer ver 0.81 1.01 0.00 0.07 cnd:pre:3s; +brigues brigue nom f p 0.00 0.34 0.00 0.34 +briguèrent briguer ver 0.81 1.01 0.00 0.07 ind:pas:3p; +brigué briguer ver m s 0.81 1.01 0.16 0.07 par:pas; +brilla briller ver 28.91 81.22 0.02 1.89 ind:pas:3s; +brillaient briller ver 28.91 81.22 0.27 17.84 ind:imp:3p; +brillais briller ver 28.91 81.22 0.04 0.14 ind:imp:1s;ind:imp:2s; +brillait briller ver 28.91 81.22 1.73 19.39 ind:imp:3s; +brillamment brillamment adv 0.88 2.30 0.88 2.30 +brillance brillance nom f s 0.27 0.74 0.27 0.54 +brillances brillance nom f p 0.27 0.74 0.00 0.20 +brillant brillant adj m s 29.89 53.31 14.23 16.62 +brillantage brillantage nom m s 0.00 0.07 0.00 0.07 +brillante brillant adj f s 29.89 53.31 9.20 13.18 +brillantes brillant adj f p 29.89 53.31 2.31 7.36 +brillantine brillantine nom f s 0.10 1.96 0.10 1.96 +brillantiner brillantiner ver 0.03 0.47 0.00 0.07 inf; +brillantinée brillantiner ver f s 0.03 0.47 0.00 0.07 par:pas; +brillantinées brillantiner ver f p 0.03 0.47 0.00 0.07 par:pas; +brillantinés brillantiner ver m p 0.03 0.47 0.03 0.20 par:pas; +brillants brillant adj m p 29.89 53.31 4.16 16.15 +brillantés brillanter ver m p 0.08 0.20 0.00 0.07 par:pas; +brille briller ver 28.91 81.22 13.73 10.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brillent briller ver 28.91 81.22 3.93 7.50 ind:pre:3p; +briller briller ver 28.91 81.22 5.08 16.76 inf;; +brillera briller ver 28.91 81.22 1.12 0.14 ind:fut:3s; +brilleraient briller ver 28.91 81.22 0.00 0.34 cnd:pre:3p; +brillerais briller ver 28.91 81.22 0.20 0.07 cnd:pre:2s; +brillerait briller ver 28.91 81.22 0.04 0.41 cnd:pre:3s; +brillerons briller ver 28.91 81.22 0.00 0.07 ind:fut:1p; +brilleront briller ver 28.91 81.22 0.09 0.20 ind:fut:3p; +brilles briller ver 28.91 81.22 0.48 0.07 ind:pre:2s; +brillez briller ver 28.91 81.22 0.06 0.00 imp:pre:2p;ind:pre:2p; +brillions briller ver 28.91 81.22 0.00 0.14 ind:imp:1p; +brillons briller ver 28.91 81.22 0.04 0.00 ind:pre:1p; +brillât briller ver 28.91 81.22 0.00 0.20 sub:imp:3s; +brillèrent briller ver 28.91 81.22 0.00 1.49 ind:pas:3p; +brillé briller ver m s 28.91 81.22 0.80 1.42 par:pas; +brima brimer ver 0.66 2.16 0.31 0.00 ind:pas:3s; +brimade brimade nom f s 0.10 2.91 0.04 0.95 +brimades brimade nom f p 0.10 2.91 0.05 1.96 +brimaient brimer ver 0.66 2.16 0.01 0.14 ind:imp:3p; +brimais brimer ver 0.66 2.16 0.00 0.07 ind:imp:1s; +brimait brimer ver 0.66 2.16 0.00 0.14 ind:imp:3s; +brimbala brimbaler ver 0.00 0.27 0.00 0.07 ind:pas:3s; +brimbalant brimbaler ver 0.00 0.27 0.00 0.07 par:pre; +brimbalement brimbalement nom m s 0.00 0.14 0.00 0.07 +brimbalements brimbalement nom m p 0.00 0.14 0.00 0.07 +brimbaler brimbaler ver 0.00 0.27 0.00 0.07 inf; +brimbalés brimbaler ver m p 0.00 0.27 0.00 0.07 par:pas; +brimborion brimborion nom m s 0.00 0.34 0.00 0.14 +brimborions brimborion nom m p 0.00 0.34 0.00 0.20 +brime brimer ver 0.66 2.16 0.04 0.27 ind:pre:3s; +briment brimer ver 0.66 2.16 0.00 0.07 ind:pre:3p; +brimer brimer ver 0.66 2.16 0.14 0.74 inf; +brimé brimer ver m s 0.66 2.16 0.14 0.34 par:pas; +brimée brimer ver f s 0.66 2.16 0.01 0.14 par:pas; +brimées brimer ver f p 0.66 2.16 0.01 0.14 par:pas; +brimés brimer ver m p 0.66 2.16 0.00 0.14 par:pas; +brin brin nom m s 5.38 19.26 4.95 13.99 +brindes brinde nom f p 0.03 0.00 0.03 0.00 +brindezingue brindezingue adj s 0.01 0.07 0.01 0.07 +brindille brindille nom f s 1.25 6.55 0.69 1.62 +brindilles brindille nom f p 1.25 6.55 0.56 4.93 +bringue bringue nom f s 1.27 1.42 1.27 1.42 +bringuebalaient bringuebaler ver 0.01 0.95 0.00 0.07 ind:imp:3p; +bringuebalait bringuebaler ver 0.01 0.95 0.00 0.20 ind:imp:3s; +bringuebalant bringuebalant adj m s 0.02 0.47 0.02 0.07 +bringuebalante bringuebalant adj f s 0.02 0.47 0.00 0.14 +bringuebalantes bringuebalant adj f p 0.02 0.47 0.00 0.07 +bringuebalants bringuebalant adj m p 0.02 0.47 0.00 0.20 +bringuebale bringuebaler ver 0.01 0.95 0.00 0.34 ind:pre:3s; +bringuebalent bringuebaler ver 0.01 0.95 0.00 0.14 ind:pre:3p; +bringuebaler bringuebaler ver 0.01 0.95 0.01 0.14 inf; +brinquebalait brinquebaler ver 0.12 0.41 0.00 0.14 ind:imp:3s; +brinquebalants brinquebalant adj m p 0.00 0.07 0.00 0.07 +brinquebale brinquebaler ver 0.12 0.41 0.11 0.07 ind:pre:3s; +brinquebaler brinquebaler ver 0.12 0.41 0.01 0.07 inf; +brinqueballant brinqueballer ver 0.00 0.27 0.00 0.14 par:pre; +brinqueballé brinqueballer ver m s 0.00 0.27 0.00 0.07 par:pas; +brinqueballés brinqueballer ver m p 0.00 0.27 0.00 0.07 par:pas; +brinquebalé brinquebaler ver m s 0.12 0.41 0.00 0.14 par:pas; +brins brin nom m p 5.38 19.26 0.44 5.27 +brio brio nom m s 0.93 1.89 0.93 1.89 +brioche brioche nom f s 2.55 7.09 1.45 4.66 +brioches brioche nom f p 2.55 7.09 1.10 2.43 +brioché brioché adj m s 0.03 0.07 0.02 0.00 +briochée brioché adj f s 0.03 0.07 0.01 0.00 +briochés brioché adj m p 0.03 0.07 0.00 0.07 +brions brion nom m p 0.03 0.00 0.03 0.00 +briquage briquage nom m s 0.00 0.14 0.00 0.14 +briquaient briquer ver 0.69 2.57 0.00 0.07 ind:imp:3p; +briquais briquer ver 0.69 2.57 0.01 0.00 ind:imp:1s; +briquait briquer ver 0.69 2.57 0.00 0.20 ind:imp:3s; +briquant briquer ver 0.69 2.57 0.00 0.14 par:pre; +brique brique nom f s 13.56 31.55 4.02 11.69 +briquent briquer ver 0.69 2.57 0.01 0.00 ind:pre:3p; +briquer briquer ver 0.69 2.57 0.40 0.68 inf; +briquerait briquer ver 0.69 2.57 0.00 0.07 cnd:pre:3s; +briques brique nom f p 13.56 31.55 9.54 19.86 +briquet briquet nom m s 10.64 13.65 9.98 12.30 +briquetage briquetage nom m s 0.00 0.14 0.00 0.14 +briqueterie briqueterie nom f s 0.45 0.41 0.45 0.34 +briqueteries briqueterie nom f p 0.45 0.41 0.00 0.07 +briquetier briquetier nom m s 0.00 0.07 0.00 0.07 +briquets briquet nom m p 10.64 13.65 0.66 1.35 +briquette briquette nom f s 0.03 0.61 0.01 0.07 +briquettes briquette nom f p 0.03 0.61 0.02 0.54 +briquetées briqueté adj f p 0.00 0.07 0.00 0.07 +briquez briquer ver 0.69 2.57 0.03 0.14 imp:pre:2p; +briqué briquer ver m s 0.69 2.57 0.16 0.34 par:pas; +briquée briquer ver f s 0.69 2.57 0.02 0.20 par:pas; +briquées briquer ver f p 0.69 2.57 0.00 0.27 par:pas; +briqués briquer ver m p 0.69 2.57 0.00 0.27 par:pas; +bris bris nom m 0.90 1.35 0.90 1.35 +brisa briser ver 55.20 61.62 0.31 3.85 ind:pas:3s; +brisai briser ver 55.20 61.62 0.00 0.07 ind:pas:1s; +brisaient briser ver 55.20 61.62 0.05 1.69 ind:imp:3p; +brisais briser ver 55.20 61.62 0.14 0.41 ind:imp:1s; +brisait briser ver 55.20 61.62 0.43 4.93 ind:imp:3s; +brisant briser ver 55.20 61.62 0.30 2.30 par:pre; +brisante brisant adj f s 0.06 0.54 0.00 0.14 +brisantes brisant adj f p 0.06 0.54 0.00 0.14 +brisants brisant nom m p 0.20 1.35 0.18 1.28 +briscard briscard nom m s 0.18 0.34 0.06 0.14 +briscards briscard nom m p 0.18 0.34 0.12 0.20 +brise_bise brise_bise nom m 0.00 0.41 0.00 0.41 +brise_fer brise_fer nom m 0.01 0.00 0.01 0.00 +brise_glace brise_glace nom m 0.07 0.20 0.07 0.20 +brise_jet brise_jet nom m 0.00 0.07 0.00 0.07 +brise_lame brise_lame nom m s 0.00 0.14 0.00 0.14 +brise_vent brise_vent nom m 0.01 0.00 0.01 0.00 +brise briser ver 55.20 61.62 8.45 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brisent briser ver 55.20 61.62 1.48 1.49 ind:pre:3p; +briser briser ver 55.20 61.62 14.99 16.28 inf; +brisera briser ver 55.20 61.62 1.44 0.41 ind:fut:3s; +briserai briser ver 55.20 61.62 1.38 0.27 ind:fut:1s; +briseraient briser ver 55.20 61.62 0.01 0.20 cnd:pre:3p; +briserais briser ver 55.20 61.62 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +briserait briser ver 55.20 61.62 0.81 0.88 cnd:pre:3s; +briseras briser ver 55.20 61.62 0.10 0.00 ind:fut:2s; +briserez briser ver 55.20 61.62 0.18 0.00 ind:fut:2p; +briseriez briser ver 55.20 61.62 0.02 0.00 cnd:pre:2p; +briserons briser ver 55.20 61.62 0.23 0.07 ind:fut:1p; +briseront briser ver 55.20 61.62 0.21 0.34 ind:fut:3p; +brises briser ver 55.20 61.62 0.99 0.14 ind:pre:2s; +briseur briseur nom m s 1.11 1.01 0.66 0.54 +briseurs briseur nom m p 1.11 1.01 0.16 0.41 +briseuse briseur nom f s 1.11 1.01 0.29 0.07 +brisez briser ver 55.20 61.62 2.29 0.20 imp:pre:2p;ind:pre:2p; +brisions briser ver 55.20 61.62 0.01 0.20 ind:imp:1p; +brisis brisis nom m 0.05 0.00 0.05 0.00 +brisons briser ver 55.20 61.62 0.38 0.20 imp:pre:1p;ind:pre:1p; +brisât briser ver 55.20 61.62 0.00 0.27 sub:imp:3s; +brisque brisque nom f s 0.03 0.00 0.03 0.00 +brisèrent briser ver 55.20 61.62 0.06 0.54 ind:pas:3p; +bristol bristol nom m s 0.10 1.55 0.08 1.35 +bristols bristol nom m p 0.10 1.55 0.03 0.20 +brisé briser ver m s 55.20 61.62 15.70 9.32 par:pas; +brisée brisé adj f s 10.09 16.42 2.42 6.62 +brisées briser ver f p 55.20 61.62 1.30 5.54 par:pas; +brisure brisure nom f s 0.01 0.95 0.00 0.74 +brisures brisure nom f p 0.01 0.95 0.01 0.20 +brisés brisé adj m p 10.09 16.42 1.46 3.45 +britannique britannique adj s 8.23 68.72 6.57 47.97 +britanniques britannique nom p 1.97 13.72 1.71 12.84 +brièvement brièvement adv 1.92 6.22 1.92 6.22 +brièveté brièveté nom f s 0.13 1.35 0.13 1.35 +british british adj s 1.75 1.08 1.75 1.08 +brivadois brivadois nom m 0.00 0.14 0.00 0.14 +brivadoise brivadois adj f s 0.00 0.07 0.00 0.07 +brize brize nom f s 0.01 0.47 0.01 0.47 +broc broc nom m s 0.38 4.53 0.38 3.51 +brocante brocante nom f s 0.86 1.42 0.78 1.35 +brocantes brocante nom f p 0.86 1.42 0.07 0.07 +brocanteur brocanteur nom m s 0.29 9.26 0.28 3.58 +brocanteurs brocanteur nom m p 0.29 9.26 0.01 2.50 +brocanteuse brocanteur nom f s 0.29 9.26 0.00 3.18 +brocantées brocanter ver f p 0.00 0.07 0.00 0.07 par:pas; +brocard brocard nom m s 0.14 1.01 0.14 0.41 +brocardaient brocarder ver 0.01 0.27 0.00 0.07 ind:imp:3p; +brocardait brocarder ver 0.01 0.27 0.00 0.07 ind:imp:3s; +brocarde brocarder ver 0.01 0.27 0.01 0.00 ind:pre:3s; +brocarder brocarder ver 0.01 0.27 0.00 0.07 inf; +brocardions brocarder ver 0.01 0.27 0.00 0.07 ind:imp:1p; +brocards brocard nom m p 0.14 1.01 0.00 0.61 +brocart brocart nom m s 0.37 3.99 0.27 2.91 +brocarts brocart nom m p 0.37 3.99 0.10 1.08 +brocatelle brocatelle nom f s 0.00 0.07 0.00 0.07 +brochage brochage nom m s 0.00 0.20 0.00 0.14 +brochages brochage nom m p 0.00 0.20 0.00 0.07 +brochaient brocher ver 0.05 1.08 0.00 0.14 ind:imp:3p; +brochant brochant adj m s 6.29 0.07 6.29 0.07 +broche broche nom f s 4.57 5.74 3.88 4.32 +brocher brocher ver 0.05 1.08 0.00 0.14 inf; +broches broche nom f p 4.57 5.74 0.70 1.42 +brochet brochet nom m s 0.46 3.99 0.44 3.18 +brochets brochet nom m p 0.46 3.99 0.02 0.81 +brochette brochette nom f s 2.26 3.04 1.08 1.76 +brochettes brochette nom f p 2.26 3.04 1.18 1.28 +brocheur brocheur nom m s 0.00 0.34 0.00 0.27 +brocheurs brocheur nom m p 0.00 0.34 0.00 0.07 +brochoirs brochoir nom m p 0.00 0.07 0.00 0.07 +broché brocher ver m s 0.05 1.08 0.02 0.20 par:pas; +brochée brocher ver f s 0.05 1.08 0.00 0.20 par:pas; +brochées broché adj f p 0.01 0.74 0.00 0.07 +brochure brochure nom f s 2.88 3.99 1.64 1.76 +brochures brochure nom f p 2.88 3.99 1.25 2.23 +brochés broché adj m p 0.01 0.74 0.01 0.27 +brocoli brocoli nom m s 1.32 0.07 0.69 0.00 +brocolis brocoli nom m p 1.32 0.07 0.63 0.07 +brocs broc nom m p 0.38 4.53 0.00 1.01 +broda broder ver 3.52 14.86 0.01 0.14 ind:pas:3s; +brodaient broder ver 3.52 14.86 0.00 0.27 ind:imp:3p; +brodais broder ver 3.52 14.86 0.37 0.14 ind:imp:1s;ind:imp:2s; +brodait broder ver 3.52 14.86 0.01 0.88 ind:imp:3s; +brodant broder ver 3.52 14.86 0.27 0.41 par:pre; +brode broder ver 3.52 14.86 0.56 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brodent broder ver 3.52 14.86 0.01 0.20 ind:pre:3p; +brodequin brodequin nom m s 0.07 4.12 0.07 0.61 +brodequins brodequin nom m p 0.07 4.12 0.00 3.51 +broder broder ver 3.52 14.86 1.01 1.82 inf; +brodera broder ver 3.52 14.86 0.01 0.07 ind:fut:3s; +broderai broder ver 3.52 14.86 0.00 0.07 ind:fut:1s; +broderie broderie nom f s 0.97 6.22 0.93 2.36 +broderies broderie nom f p 0.97 6.22 0.04 3.85 +brodes broder ver 3.52 14.86 0.15 0.07 ind:pre:2s; +brodeuse brodeur nom f s 0.05 0.47 0.05 0.27 +brodeuses brodeuse nom f p 0.01 0.00 0.01 0.00 +brodez broder ver 3.52 14.86 0.05 0.00 imp:pre:2p; +brodé broder ver m s 3.52 14.86 0.83 4.05 par:pas; +brodée broder ver f s 3.52 14.86 0.06 1.96 par:pas; +brodées brodé adj f p 0.57 8.11 0.28 0.88 +brodés broder ver m p 3.52 14.86 0.17 2.50 par:pas; +broie broyer ver 4.08 8.85 0.74 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +broiement broiement nom m s 0.00 0.20 0.00 0.14 +broiements broiement nom m p 0.00 0.20 0.00 0.07 +broient broyer ver 4.08 8.85 0.14 0.34 ind:pre:3p; +broiera broyer ver 4.08 8.85 0.00 0.07 ind:fut:3s; +broierai broyer ver 4.08 8.85 0.04 0.00 ind:fut:1s; +broieras broyer ver 4.08 8.85 0.00 0.07 ind:fut:2s; +broies broyer ver 4.08 8.85 0.16 0.00 ind:pre:2s; +broker broker nom m s 0.02 0.07 0.02 0.07 +brol brol nom m s 0.01 0.00 0.01 0.00 +brome brome nom m s 0.01 0.14 0.01 0.14 +bromure bromure nom m s 0.52 0.47 0.52 0.41 +bromures bromure nom m p 0.52 0.47 0.00 0.07 +broncha broncher ver 1.97 12.84 0.00 2.50 ind:pas:3s; +bronchai broncher ver 1.97 12.84 0.00 0.14 ind:pas:1s; +bronchaient broncher ver 1.97 12.84 0.03 0.27 ind:imp:3p; +bronchais broncher ver 1.97 12.84 0.00 0.07 ind:imp:1s; +bronchait broncher ver 1.97 12.84 0.10 1.15 ind:imp:3s; +bronchant broncher ver 1.97 12.84 0.00 0.07 par:pre; +bronche broncher ver 1.97 12.84 0.45 1.96 imp:pre:2s;ind:pre:3s; +bronchent broncher ver 1.97 12.84 0.02 0.20 ind:pre:3p; +broncher broncher ver 1.97 12.84 0.65 4.26 inf; +bronchera broncher ver 1.97 12.84 0.14 0.14 ind:fut:3s; +broncherai broncher ver 1.97 12.84 0.02 0.07 ind:fut:1s; +broncherais broncher ver 1.97 12.84 0.01 0.00 cnd:pre:1s; +broncherait broncher ver 1.97 12.84 0.02 0.14 cnd:pre:3s; +broncherons broncher ver 1.97 12.84 0.00 0.07 ind:fut:1p; +broncheront broncher ver 1.97 12.84 0.01 0.00 ind:fut:3p; +bronches bronche nom f p 0.58 2.23 0.55 2.23 +bronchez broncher ver 1.97 12.84 0.07 0.07 imp:pre:2p;ind:pre:2p; +bronchioles bronchiole nom f p 0.01 0.14 0.01 0.14 +bronchique bronchique adj s 0.24 0.07 0.20 0.00 +bronchiques bronchique adj m p 0.24 0.07 0.04 0.07 +bronchite bronchite nom f s 1.16 2.36 1.15 2.09 +bronchites bronchite nom f p 1.16 2.36 0.01 0.27 +bronchitique bronchitique adj f s 0.00 0.14 0.00 0.07 +bronchitiques bronchitique adj p 0.00 0.14 0.00 0.07 +broncho_pneumonie broncho_pneumonie nom f s 0.00 0.41 0.00 0.41 +broncho_pneumopathie broncho_pneumopathie nom f s 0.01 0.07 0.01 0.07 +broncho broncho nom m s 0.03 0.00 0.03 0.00 +bronchons broncher ver 1.97 12.84 0.00 0.07 ind:pre:1p; +bronchoscope bronchoscope nom m s 0.01 0.00 0.01 0.00 +bronchoscopie bronchoscopie nom f s 0.13 0.00 0.13 0.00 +bronchât broncher ver 1.97 12.84 0.00 0.07 sub:imp:3s; +bronchèrent broncher ver 1.97 12.84 0.10 0.14 ind:pas:3p; +bronché broncher ver m s 1.97 12.84 0.27 1.49 par:pas; +brontosaure brontosaure nom m s 0.12 0.07 0.10 0.07 +brontosaures brontosaure nom m p 0.12 0.07 0.02 0.00 +bronzage bronzage nom m s 1.67 1.62 1.66 1.55 +bronzages bronzage nom m p 1.67 1.62 0.01 0.07 +bronzaient bronzer ver 5.10 5.74 0.00 0.07 ind:imp:3p; +bronzait bronzer ver 5.10 5.74 0.00 0.34 ind:imp:3s; +bronzant bronzer ver 5.10 5.74 0.02 0.07 par:pre; +bronzante bronzant adj f s 0.04 0.14 0.01 0.14 +bronzants bronzant adj m p 0.04 0.14 0.01 0.00 +bronze bronze nom m s 3.37 19.26 3.15 18.58 +bronzent bronzer ver 5.10 5.74 0.26 0.00 ind:pre:3p; +bronzer bronzer ver 5.10 5.74 1.88 1.89 inf; +bronzes bronzer ver 5.10 5.74 0.44 0.00 ind:pre:2s; +bronzette bronzette nom f s 0.12 0.14 0.12 0.07 +bronzettes bronzette nom f p 0.12 0.14 0.00 0.07 +bronzier bronzier nom m s 0.00 0.07 0.00 0.07 +bronzions bronzer ver 5.10 5.74 0.00 0.07 ind:imp:1p; +bronzé bronzé adj m s 2.72 6.69 1.65 2.84 +bronzée bronzé adj f s 2.72 6.69 0.60 1.55 +bronzées bronzé adj f p 2.72 6.69 0.07 1.22 +bronzés bronzé adj m p 2.72 6.69 0.39 1.08 +brook brook nom m s 0.12 0.00 0.02 0.00 +brooks brook nom m p 0.12 0.00 0.10 0.00 +broquarts broquart nom m p 0.00 0.07 0.00 0.07 +broque broque nom f s 0.00 0.74 0.00 0.68 +broques broque nom f p 0.00 0.74 0.00 0.07 +broquettes broquette nom f p 0.04 0.07 0.04 0.07 +broquille broquille nom f s 0.00 1.15 0.00 0.68 +broquilles broquille nom f p 0.00 1.15 0.00 0.47 +brossa brosser ver 7.65 10.14 0.00 1.15 ind:pas:3s; +brossage brossage nom m s 0.20 0.14 0.20 0.14 +brossaient brosser ver 7.65 10.14 0.02 0.14 ind:imp:3p; +brossais brosser ver 7.65 10.14 0.07 0.20 ind:imp:1s;ind:imp:2s; +brossait brosser ver 7.65 10.14 0.19 1.42 ind:imp:3s; +brossant brosser ver 7.65 10.14 0.05 0.41 par:pre; +brosse brosse nom f s 8.43 19.59 7.29 16.01 +brossent brosser ver 7.65 10.14 0.04 0.14 ind:pre:3p;sub:pre:3p; +brosser brosser ver 7.65 10.14 2.76 2.23 inf; +brossera brosser ver 7.65 10.14 0.06 0.00 ind:fut:3s; +brosserai brosser ver 7.65 10.14 0.03 0.00 ind:fut:1s; +brosseras brosser ver 7.65 10.14 0.03 0.14 ind:fut:2s; +brosserez brosser ver 7.65 10.14 0.14 0.00 ind:fut:2p; +brosses brosse nom f p 8.43 19.59 1.14 3.58 +brosseur brosseur nom m s 0.00 0.20 0.00 0.07 +brosseurs brosseur nom m p 0.00 0.20 0.00 0.14 +brossez brosser ver 7.65 10.14 0.44 0.00 imp:pre:2p;ind:pre:2p; +brossier brossier nom m s 0.00 0.07 0.00 0.07 +brossé brosser ver m s 7.65 10.14 1.23 1.82 par:pas; +brossée brosser ver f s 7.65 10.14 0.04 0.34 par:pas; +brossées brosser ver f p 7.65 10.14 0.44 0.14 par:pas; +brossés brosser ver m p 7.65 10.14 0.12 0.54 par:pas; +brou brou nom m s 0.02 0.74 0.02 0.74 +brouet brouet nom m s 0.06 0.81 0.04 0.74 +brouets brouet nom m p 0.06 0.81 0.01 0.07 +brouetta brouetter ver 0.00 0.20 0.00 0.07 ind:pas:3s; +brouettait brouetter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +brouette brouette nom f s 1.16 6.76 1.10 5.14 +brouetter brouetter ver 0.00 0.20 0.00 0.07 inf; +brouettes brouette nom f p 1.16 6.76 0.06 1.62 +brouettée brouettée nom f s 0.00 0.27 0.00 0.14 +brouettées brouettée nom f p 0.00 0.27 0.00 0.14 +brouhaha brouhaha nom m s 4.98 9.66 4.98 9.39 +brouhahas brouhaha nom m p 4.98 9.66 0.00 0.27 +brouilla brouiller ver 6.12 24.12 0.00 0.81 ind:pas:3s; +brouillade brouillade nom f s 0.00 0.07 0.00 0.07 +brouillage brouillage nom m s 0.62 0.95 0.60 0.74 +brouillages brouillage nom m p 0.62 0.95 0.02 0.20 +brouillaient brouiller ver 6.12 24.12 0.03 1.49 ind:imp:3p; +brouillait brouiller ver 6.12 24.12 0.01 3.92 ind:imp:3s; +brouillamini brouillamini nom m s 0.01 0.27 0.01 0.27 +brouillant brouiller ver 6.12 24.12 0.21 0.95 par:pre; +brouillard brouillard nom m s 10.88 35.20 10.51 32.84 +brouillardeuse brouillardeux adj f s 0.00 0.27 0.00 0.07 +brouillardeux brouillardeux adj m s 0.00 0.27 0.00 0.20 +brouillards brouillard nom m p 10.88 35.20 0.37 2.36 +brouillassait brouillasser ver 0.00 0.07 0.00 0.07 ind:imp:3s; +brouillasse brouillasse nom f s 0.00 0.27 0.00 0.27 +brouille brouiller ver 6.12 24.12 1.20 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brouillent brouiller ver 6.12 24.12 0.29 1.35 ind:pre:3p; +brouiller brouiller ver 6.12 24.12 1.33 4.32 inf; +brouilleraient brouiller ver 6.12 24.12 0.02 0.00 cnd:pre:3p; +brouillerait brouiller ver 6.12 24.12 0.00 0.07 cnd:pre:3s; +brouillerons brouiller ver 6.12 24.12 0.10 0.07 ind:fut:1p; +brouilles brouiller ver 6.12 24.12 0.06 0.07 ind:pre:2s;sub:pre:2s; +brouilleur brouilleur nom m s 0.78 0.00 0.66 0.00 +brouilleurs brouilleur nom m p 0.78 0.00 0.12 0.00 +brouillez brouiller ver 6.12 24.12 0.10 0.00 imp:pre:2p;ind:pre:2p; +brouillon brouillon nom m s 1.17 4.93 1.12 3.18 +brouillonne brouillon adj f s 0.39 1.96 0.10 0.47 +brouillonnes brouillon adj f p 0.39 1.96 0.00 0.14 +brouillonné brouillonner ver m s 0.00 0.07 0.00 0.07 par:pas; +brouillons brouillon adj m p 0.39 1.96 0.19 0.41 +brouillât brouiller ver 6.12 24.12 0.00 0.20 sub:imp:3s; +brouillèrent brouiller ver 6.12 24.12 0.00 0.41 ind:pas:3p; +brouillé brouiller ver m s 6.12 24.12 1.52 3.51 par:pas; +brouillée brouiller ver f s 6.12 24.12 0.24 1.62 par:pas; +brouillées brouillé adj f p 2.44 4.32 0.20 0.61 +brouillés brouillé adj m p 2.44 4.32 1.72 1.35 +brouis brouir ver 0.00 0.14 0.00 0.07 ind:pas:1s; +brouit brouir ver 0.00 0.14 0.00 0.07 ind:pre:3s; +broum broum ono 0.19 0.74 0.19 0.74 +broussaille broussaille nom f s 1.94 7.16 0.50 2.64 +broussailles broussaille nom f p 1.94 7.16 1.44 4.53 +broussailleuse broussailleux adj f s 0.05 1.96 0.02 0.41 +broussailleuses broussailleux adj f p 0.05 1.96 0.00 0.20 +broussailleux broussailleux adj m 0.05 1.96 0.03 1.35 +broussait brousser ver 0.00 0.07 0.00 0.07 ind:imp:3s; +broussard broussard nom m s 0.28 0.14 0.28 0.14 +brousse brousse nom f s 0.95 11.01 0.95 10.88 +brousses brousse nom f p 0.95 11.01 0.00 0.14 +brout brout nom m s 0.10 0.81 0.10 0.81 +brouta brouter ver 1.65 6.01 0.00 0.07 ind:pas:3s; +broutage broutage nom m s 0.03 0.00 0.03 0.00 +broutaient brouter ver 1.65 6.01 0.01 0.88 ind:imp:3p; +broutait brouter ver 1.65 6.01 0.00 0.47 ind:imp:3s; +broutant brouter ver 1.65 6.01 0.01 0.74 par:pre; +broutantes broutant adj f p 0.00 0.07 0.00 0.07 +broutard broutard nom m s 0.01 0.14 0.01 0.14 +broute brouter ver 1.65 6.01 0.36 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +broutent brouter ver 1.65 6.01 0.16 0.34 ind:pre:3p; +brouter brouter ver 1.65 6.01 0.70 2.16 inf; +brouterai brouter ver 1.65 6.01 0.00 0.07 ind:fut:1s; +brouteraient brouter ver 1.65 6.01 0.00 0.07 cnd:pre:3p; +broutes brouter ver 1.65 6.01 0.14 0.07 ind:pre:2s; +brouteur brouteur adj m s 0.19 0.41 0.01 0.00 +brouteurs brouteur adj m p 0.19 0.41 0.00 0.14 +brouteuse brouteur adj f s 0.19 0.41 0.09 0.14 +brouteuses brouteur adj f p 0.19 0.41 0.09 0.14 +broutez brouter ver 1.65 6.01 0.02 0.00 imp:pre:2p;ind:pre:2p; +broutille broutille nom f s 1.87 1.82 0.77 0.61 +broutilles broutille nom f p 1.87 1.82 1.10 1.22 +broutèrent brouter ver 1.65 6.01 0.00 0.07 ind:pas:3p; +brouté brouter ver m s 1.65 6.01 0.24 0.20 par:pas; +broutée brouter ver f s 1.65 6.01 0.01 0.07 par:pas; +broutés brouter ver m p 1.65 6.01 0.00 0.07 par:pas; +brown_sugar brown_sugar nom m 0.00 0.07 0.00 0.07 +browning browning nom m s 0.00 0.20 0.00 0.14 +brownings browning nom m p 0.00 0.20 0.00 0.07 +broya broyer ver 4.08 8.85 0.01 0.20 ind:pas:3s; +broyage broyage nom m s 0.08 0.14 0.08 0.07 +broyages broyage nom m p 0.08 0.14 0.00 0.07 +broyaient broyer ver 4.08 8.85 0.00 0.41 ind:imp:3p; +broyais broyer ver 4.08 8.85 0.04 0.27 ind:imp:1s;ind:imp:2s; +broyait broyer ver 4.08 8.85 0.10 1.28 ind:imp:3s; +broyant broyer ver 4.08 8.85 0.00 1.08 par:pre; +broyer broyer ver 4.08 8.85 1.61 1.89 inf; +broyeur broyeur nom m s 1.56 0.27 1.54 0.20 +broyeurs broyeur nom m p 1.56 0.27 0.03 0.07 +broyeuse broyeur adj f s 0.12 0.54 0.06 0.41 +broyez broyer ver 4.08 8.85 0.23 0.00 imp:pre:2p;ind:pre:2p; +broyèrent broyer ver 4.08 8.85 0.00 0.07 ind:pas:3p; +broyé broyer ver m s 4.08 8.85 0.55 1.01 par:pas; +broyée broyé adj f s 0.75 1.82 0.16 0.54 +broyées broyé adj f p 0.75 1.82 0.19 0.14 +broyés broyer ver m p 4.08 8.85 0.27 0.27 par:pas; +brrr brrr ono 0.31 1.82 0.31 1.82 +brèche_dent brèche_dent nom p 0.00 0.07 0.00 0.07 +brèche brèche nom f s 3.83 9.59 3.54 7.70 +brèches brèche nom f p 3.83 9.59 0.28 1.89 +brème brème nom f s 0.05 1.49 0.05 0.54 +brèmes brème nom f p 0.05 1.49 0.00 0.95 +brève bref adj f s 15.63 74.80 3.86 20.41 +brèves bref adj f p 15.63 74.80 0.52 8.99 +bru bru nom f s 1.45 3.24 1.44 2.84 +bruant bruant nom m s 0.00 0.14 0.00 0.07 +bruants bruant nom m p 0.00 0.14 0.00 0.07 +brucellose brucellose nom f s 0.03 0.07 0.03 0.07 +bréchet bréchet nom m s 0.11 0.54 0.11 0.54 +brugeois brugeois adj m 0.00 0.34 0.00 0.14 +brugeoise brugeois adj f s 0.00 0.34 0.00 0.14 +brugeoises brugeois adj f p 0.00 0.34 0.00 0.07 +bruges bruges nom s 0.00 0.07 0.00 0.07 +brugnon brugnon nom m s 0.14 0.27 0.00 0.20 +brugnons brugnon nom m p 0.14 0.27 0.14 0.07 +bréhaigne bréhaigne adj f s 0.00 0.27 0.00 0.14 +bréhaignes bréhaigne adj f p 0.00 0.27 0.00 0.14 +bruinait bruiner ver 0.14 0.95 0.00 0.54 ind:imp:3s; +bruinasse bruiner ver 0.14 0.95 0.00 0.07 sub:imp:1s; +bruine bruiner ver 0.14 0.95 0.14 0.27 ind:pre:3s; +bruiner bruiner ver 0.14 0.95 0.00 0.07 inf; +bruines bruine nom f p 0.06 2.77 0.00 0.07 +bruire bruire ver 0.48 2.97 0.23 1.42 inf; +bruissa bruisser ver 0.15 3.45 0.00 0.07 ind:pas:3s; +bruissaient bruisser ver 0.15 3.45 0.00 0.74 ind:imp:3p; +bruissait bruisser ver 0.15 3.45 0.00 1.42 ind:imp:3s; +bruissant bruissant adj m s 0.02 4.66 0.01 1.35 +bruissante bruissant adj f s 0.02 4.66 0.00 2.09 +bruissantes bruissant adj f p 0.02 4.66 0.01 0.68 +bruissants bruissant adj m p 0.02 4.66 0.00 0.54 +bruisse bruisser ver 0.15 3.45 0.01 0.14 ind:pre:3s; +bruissement bruissement nom m s 0.77 8.24 0.75 6.96 +bruissements bruissement nom m p 0.77 8.24 0.02 1.28 +bruissent bruisser ver 0.15 3.45 0.14 0.47 ind:pre:3p; +bruissé bruisser ver m s 0.15 3.45 0.00 0.07 par:pas; +bruit bruit nom m s 94.13 281.49 78.94 223.18 +bruita bruiter ver 0.01 0.07 0.01 0.00 ind:pas:3s; +bruitage bruitage nom m s 0.23 0.54 0.04 0.47 +bruitages bruitage nom m p 0.23 0.54 0.20 0.07 +bruiter bruiter ver 0.01 0.07 0.00 0.07 inf; +bruiteur bruiteur nom m s 0.04 0.20 0.03 0.20 +bruiteuse bruiteur nom f s 0.04 0.20 0.01 0.00 +bruits bruit nom m p 94.13 281.49 15.18 58.31 +brêles brêler ver 0.02 0.07 0.02 0.07 ind:pre:2s; +brumaille brumaille nom f s 0.00 0.07 0.00 0.07 +brumaire brumaire nom m s 0.10 0.27 0.10 0.27 +brumassait brumasser ver 0.00 0.07 0.00 0.07 ind:imp:3s; +brume brume nom f s 5.07 42.57 4.17 35.88 +brument brumer ver 0.00 0.47 0.00 0.47 ind:pre:3p; +brumes brume nom f p 5.07 42.57 0.91 6.69 +brumeuse brumeux adj f s 1.19 6.89 0.10 2.09 +brumeuses brumeux adj f p 1.19 6.89 0.05 0.61 +brumeux brumeux adj m 1.19 6.89 1.04 4.19 +brumisateur brumisateur nom m s 0.01 0.00 0.01 0.00 +brun brun adj m s 13.16 68.18 3.39 21.35 +brunch brunch nom m s 1.63 0.14 1.53 0.00 +brunches brunch nom m p 1.63 0.14 0.02 0.07 +brunchs brunch nom m p 1.63 0.14 0.08 0.07 +brune brun adj f s 13.16 68.18 6.51 25.34 +brunes brune nom f p 5.20 7.77 0.76 1.35 +brunet brunet adj m s 0.04 0.14 0.00 0.07 +brunette brunette nom f s 0.35 0.54 0.28 0.47 +brunettes brunette nom f p 0.35 0.54 0.07 0.07 +bruni bruni adj m s 0.01 1.96 0.01 0.81 +brunie brunir ver f s 0.19 3.24 0.01 0.54 par:pas; +brunies brunir ver f p 0.19 3.24 0.00 0.61 par:pas; +brunir brunir ver 0.19 3.24 0.16 0.74 inf; +brunirent brunir ver 0.19 3.24 0.00 0.07 ind:pas:3p; +brunis bruni adj m p 0.01 1.96 0.00 0.27 +brunissage brunissage nom m s 0.02 0.00 0.02 0.00 +brunissaient brunir ver 0.19 3.24 0.00 0.07 ind:imp:3p; +brunissent brunir ver 0.19 3.24 0.01 0.20 ind:pre:3p; +brunissoir brunissoir nom m s 0.00 0.07 0.00 0.07 +brunissures brunissure nom f p 0.00 0.07 0.00 0.07 +brunit brunir ver 0.19 3.24 0.00 0.34 ind:pre:3s;ind:pas:3s; +brunâtre brunâtre adj s 0.04 5.20 0.03 3.51 +brunâtres brunâtre adj p 0.04 5.20 0.01 1.69 +bruns brun adj m p 13.16 68.18 2.69 10.88 +brus bru nom f p 1.45 3.24 0.01 0.41 +brushing brushing nom m s 0.65 0.34 0.65 0.34 +brésil brésil nom m s 0.10 0.20 0.10 0.07 +brésilien brésilien nom m s 2.88 2.43 1.61 0.61 +brésilienne brésilien adj f s 1.92 4.32 0.70 1.55 +brésiliennes brésilien adj f p 1.92 4.32 0.05 0.61 +brésiliens brésilien nom m p 2.88 2.43 0.89 1.08 +brésils brésil nom m p 0.10 0.20 0.00 0.14 +brusqua brusquer ver 1.83 4.05 0.00 0.20 ind:pas:3s; +brusquai brusquer ver 1.83 4.05 0.00 0.07 ind:pas:1s; +brusquait brusquer ver 1.83 4.05 0.00 0.07 ind:imp:3s; +brusquant brusquer ver 1.83 4.05 0.00 0.07 par:pre; +brusque brusque adj s 2.69 35.34 1.77 26.76 +brusquement brusquement adv 4.88 111.42 4.88 111.42 +brusquent brusquer ver 1.83 4.05 0.00 0.07 ind:pre:3p; +brusquer brusquer ver 1.83 4.05 0.83 2.03 inf; +brusquerai brusquer ver 1.83 4.05 0.15 0.00 ind:fut:1s; +brusqueraient brusquer ver 1.83 4.05 0.01 0.00 cnd:pre:3p; +brusquerie brusquerie nom f s 0.09 4.32 0.09 4.26 +brusqueries brusquerie nom f p 0.09 4.32 0.00 0.07 +brusques brusque adj p 2.69 35.34 0.92 8.58 +brusquette brusquet adj f s 0.00 0.07 0.00 0.07 +brusquez brusquer ver 1.83 4.05 0.34 0.20 imp:pre:2p;ind:pre:2p; +brusquons brusquer ver 1.83 4.05 0.17 0.00 imp:pre:1p; +brusquât brusquer ver 1.83 4.05 0.00 0.07 sub:imp:3s; +brusqué brusquer ver m s 1.83 4.05 0.04 0.34 par:pas; +brusquée brusquer ver f s 1.83 4.05 0.14 0.14 par:pas; +brut brut adj m s 3.86 8.65 1.38 3.31 +brutal brutal adj m s 9.82 35.34 5.29 15.47 +brutale brutal adj f s 9.82 35.34 3.29 14.19 +brutalement brutalement adv 2.89 23.11 2.89 23.11 +brutales brutal adj f p 9.82 35.34 0.32 3.24 +brutalisaient brutaliser ver 1.41 1.15 0.02 0.00 ind:imp:3p; +brutalisait brutaliser ver 1.41 1.15 0.08 0.00 ind:imp:3s; +brutalisant brutaliser ver 1.41 1.15 0.01 0.07 par:pre; +brutalise brutaliser ver 1.41 1.15 0.12 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brutaliser brutaliser ver 1.41 1.15 0.48 0.41 inf; +brutaliserai brutaliser ver 1.41 1.15 0.01 0.00 ind:fut:1s; +brutaliserait brutaliser ver 1.41 1.15 0.00 0.07 cnd:pre:3s; +brutalisez brutaliser ver 1.41 1.15 0.07 0.00 imp:pre:2p;ind:pre:2p; +brutalisé brutaliser ver m s 1.41 1.15 0.49 0.20 par:pas; +brutalisée brutaliser ver f s 1.41 1.15 0.08 0.14 par:pas; +brutalisées brutaliser ver f p 1.41 1.15 0.02 0.00 par:pas; +brutalisés brutaliser ver m p 1.41 1.15 0.03 0.07 par:pas; +brutalité brutalité nom f s 3.11 11.15 2.87 9.93 +brutalités brutalité nom f p 3.11 11.15 0.24 1.22 +brutaux brutal adj m p 9.82 35.34 0.92 2.43 +brute brute nom f s 14.03 12.09 9.04 7.57 +brutes brute nom f p 14.03 12.09 5.00 4.53 +bruts brut adj m p 3.86 8.65 0.42 0.74 +bréviaire bréviaire nom m s 0.21 1.69 0.21 1.69 +bruxellois bruxellois adj m 0.00 0.54 0.00 0.47 +bruxelloise bruxellois adj f s 0.00 0.54 0.00 0.07 +bruyamment bruyamment adv 0.95 10.54 0.95 10.54 +bruyant bruyant adj m s 5.88 16.82 2.91 4.80 +bruyante bruyant adj f s 5.88 16.82 1.17 5.61 +bruyantes bruyant adj f p 5.88 16.82 0.45 1.82 +bruyants bruyant adj m p 5.88 16.82 1.37 4.59 +bruyère bruyère nom f s 0.58 6.01 0.53 4.12 +bruyères bruyère nom f p 0.58 6.01 0.05 1.89 +bègue bègue nom s 0.24 0.54 0.20 0.41 +bègues bègue nom p 0.24 0.54 0.04 0.14 +bé bé ono 0.85 1.15 0.85 1.15 +bu boire ver m s 339.06 274.32 53.10 40.07 par:pas; +béa béer ver 0.23 3.65 0.00 0.20 ind:pas:3s; +bua buer ver 0.09 0.00 0.09 0.00 ind:pas:3s; +béaient béer ver 0.23 3.65 0.00 0.61 ind:imp:3p; +béait béer ver 0.23 3.65 0.10 1.01 ind:imp:3s; +béance béance nom f s 0.16 0.61 0.16 0.61 +buanderie buanderie nom f s 0.81 1.69 0.81 1.55 +buanderies buanderie nom f p 0.81 1.69 0.00 0.14 +béant béant adj m s 1.21 10.34 0.34 2.77 +béante béant adj f s 1.21 10.34 0.44 4.26 +béantes béant adj f p 1.21 10.34 0.21 2.30 +béants béant adj m p 1.21 10.34 0.22 1.01 +béarnais béarnais adj m p 0.13 0.00 0.01 0.00 +béarnaise béarnais adj f s 0.13 0.00 0.12 0.00 +béat béat adj m s 0.26 4.73 0.21 1.89 +béate béat adj f s 0.26 4.73 0.05 2.36 +béatement béatement adv 0.01 1.42 0.01 1.42 +béates béat adj f p 0.26 4.73 0.00 0.14 +béatification béatification nom f s 0.05 0.27 0.05 0.20 +béatifications béatification nom f p 0.05 0.27 0.00 0.07 +béatifier béatifier ver 0.11 0.54 0.00 0.20 inf; +béatifique béatifique adj m s 0.00 0.14 0.00 0.14 +béatifié béatifier ver m s 0.11 0.54 0.11 0.14 par:pas; +béatifiée béatifier ver f s 0.11 0.54 0.00 0.07 par:pas; +béatifiés béatifier ver m p 0.11 0.54 0.00 0.14 par:pas; +béatitude béatitude nom f s 0.58 5.74 0.58 5.47 +béatitudes béatitude nom f p 0.58 5.74 0.00 0.27 +béats béat adj m p 0.26 4.73 0.00 0.34 +bubble_gum bubble_gum nom m s 0.08 0.07 0.07 0.07 +bubble_gum bubble_gum nom m s 0.08 0.07 0.01 0.00 +bubon bubon nom m s 0.22 0.34 0.02 0.14 +bubonique bubonique adj s 0.25 0.07 0.25 0.07 +bubons bubon nom m p 0.22 0.34 0.20 0.20 +bébé bébé nom m s 191.63 45.20 173.82 36.22 +bébé_éprouvette bébé_éprouvette nom m p 0.01 0.00 0.01 0.00 +bébés bébé nom m p 191.63 45.20 17.81 8.99 +bébête bébête adj s 0.32 2.91 0.25 2.77 +bébêtes bébête adj p 0.32 2.91 0.07 0.14 +bécabunga bécabunga nom m s 0.00 0.07 0.00 0.07 +bécane bécane nom f s 1.77 4.80 1.46 3.92 +bécanes bécane nom f p 1.77 4.80 0.32 0.88 +bécard bécard nom m s 0.00 0.07 0.00 0.07 +bécarre bécarre nom m s 0.02 0.07 0.02 0.07 +bécasse bécasse nom f s 1.56 1.08 1.40 0.54 +bécasses bécasse nom f p 1.56 1.08 0.16 0.54 +bécassine bécassine nom f s 0.01 0.20 0.01 0.14 +bécassines bécassine nom f p 0.01 0.20 0.00 0.07 +buccal buccal adj m s 0.54 0.34 0.16 0.14 +buccale buccal adj f s 0.54 0.34 0.33 0.07 +buccales buccal adj f p 0.54 0.34 0.04 0.07 +buccaux buccal adj m p 0.54 0.34 0.03 0.07 +buccin buccin nom m s 0.00 0.14 0.00 0.14 +buccinateur buccinateur nom m s 0.00 0.07 0.00 0.07 +bucco_génital bucco_génital adj m s 0.11 0.00 0.06 0.00 +bucco_génital bucco_génital adj f p 0.11 0.00 0.02 0.00 +bucco_génital bucco_génital adj m p 0.11 0.00 0.02 0.00 +bucco bucco nom m s 0.21 0.20 0.21 0.20 +buccogénitales buccogénital adj f p 0.01 0.00 0.01 0.00 +bêchaient bêcher ver 0.55 2.70 0.00 0.14 ind:imp:3p; +bêchait bêcher ver 0.55 2.70 0.01 0.41 ind:imp:3s; +béchamel béchamel nom f s 0.37 0.41 0.37 0.41 +bêchant bêcher ver 0.55 2.70 0.14 0.14 par:pre; +bêche bêche nom f s 0.46 3.72 0.42 3.51 +bêchent bêcher ver 0.55 2.70 0.00 0.14 ind:pre:3p; +bécher bécher nom m s 0.01 0.00 0.01 0.00 +bêcher bêcher ver 0.55 2.70 0.36 1.15 inf; +bêches bêche nom f p 0.46 3.72 0.04 0.20 +bêcheur bêcheur adj m s 0.52 0.95 0.22 0.41 +bêcheurs bêcheur nom m p 0.35 1.22 0.00 0.20 +bêcheuse bêcheur adj f s 0.52 0.95 0.28 0.34 +bêcheuses bêcheuse nom f p 0.04 0.00 0.04 0.00 +bêché bêcher ver m s 0.55 2.70 0.00 0.47 par:pas; +bucoliastes bucoliaste nom m p 0.00 0.07 0.00 0.07 +bucolique bucolique adj s 0.17 1.22 0.14 0.95 +bucoliques bucolique adj m p 0.17 1.22 0.03 0.27 +bécot bécot nom m s 0.42 0.47 0.41 0.20 +bécotait bécoter ver 1.05 0.88 0.05 0.07 ind:imp:3s; +bécotant bécoter ver 1.05 0.88 0.00 0.14 par:pre; +bécote bécoter ver 1.05 0.88 0.21 0.14 ind:pre:1s;ind:pre:3s;sub:pre:3s; +bécotent bécoter ver 1.05 0.88 0.27 0.07 ind:pre:3p; +bécoter bécoter ver 1.05 0.88 0.28 0.41 inf; +bécoteur bécoteur nom m s 0.02 0.00 0.02 0.00 +bécots bécot nom m p 0.42 0.47 0.01 0.27 +bécoté bécoter ver m s 1.05 0.88 0.13 0.00 par:pas; +bécotée bécoter ver f s 1.05 0.88 0.00 0.07 par:pas; +bécotés bécoter ver m p 1.05 0.88 0.11 0.00 par:pas; +bucranes bucrane nom m p 0.00 0.14 0.00 0.14 +bucéphales bucéphale nom m p 0.00 0.07 0.00 0.07 +bédane bédane nom m s 0.00 0.20 0.00 0.20 +buddha buddha nom m s 0.40 0.00 0.40 0.00 +budget budget nom m s 11.21 6.62 10.54 5.34 +budgets budget nom m p 11.21 6.62 0.67 1.28 +budgétaire budgétaire adj s 1.08 0.27 0.55 0.07 +budgétairement budgétairement adv 0.00 0.07 0.00 0.07 +budgétaires budgétaire adj p 1.08 0.27 0.53 0.20 +budgétisation budgétisation nom f s 0.01 0.00 0.01 0.00 +budgétivores budgétivore nom p 0.00 0.07 0.00 0.07 +bédouin bédouin adj m s 0.26 0.47 0.24 0.00 +bédouine bédouin nom f s 0.23 0.54 0.14 0.00 +bédouines bédouin nom f p 0.23 0.54 0.02 0.00 +bédouins bédouin nom m p 0.23 0.54 0.04 0.20 +bédé bédé nom f s 0.29 0.00 0.09 0.00 +bédéphiles bédéphile nom p 0.01 0.00 0.01 0.00 +bédés bédé nom f p 0.29 0.00 0.20 0.00 +bée bé adj f s 0.96 5.34 0.96 5.14 +bue bu adj f s 3.04 4.86 0.44 2.36 +buen_retiro buen_retiro nom m 0.00 0.14 0.00 0.14 +béent béer ver 0.23 3.65 0.10 0.14 ind:pre:3p; +béer béer ver 0.23 3.65 0.00 0.27 inf; +bées bé adj f p 0.96 5.34 0.00 0.20 +bues bu adj f p 3.04 4.86 0.18 0.34 +buffalo buffalo nom s 0.05 0.00 0.05 0.00 +buffet buffet nom m s 6.93 21.35 6.63 20.14 +buffets buffet nom m p 6.93 21.35 0.30 1.22 +buffle buffle nom m s 1.79 4.19 1.16 1.96 +buffles buffle nom m p 1.79 4.19 0.62 2.23 +buffleterie buffleterie nom f s 0.00 0.74 0.00 0.14 +buffleteries buffleterie nom f p 0.00 0.74 0.00 0.61 +bufflonne bufflon nom f s 0.00 0.07 0.00 0.07 +bufo bufo nom m s 0.01 0.00 0.01 0.00 +bug bug nom m s 1.90 0.00 0.64 0.00 +bégaie bégayer ver 2.61 7.50 0.59 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bégaiement bégaiement nom m s 0.54 2.23 0.54 1.49 +bégaiements bégaiement nom m p 0.54 2.23 0.00 0.74 +bégaient bégayer ver 2.61 7.50 0.00 0.07 ind:pre:3p; +bégaiera bégayer ver 2.61 7.50 0.01 0.00 ind:fut:3s; +bégaies bégayer ver 2.61 7.50 0.23 0.07 ind:pre:2s; +bégaya bégayer ver 2.61 7.50 0.01 1.15 ind:pas:3s; +bégayai bégayer ver 2.61 7.50 0.00 0.14 ind:pas:1s; +bégayaient bégayer ver 2.61 7.50 0.00 0.07 ind:imp:3p; +bégayais bégayer ver 2.61 7.50 0.08 0.27 ind:imp:1s;ind:imp:2s; +bégayait bégayer ver 2.61 7.50 0.18 1.76 ind:imp:3s; +bégayant bégayer ver 2.61 7.50 0.00 0.95 par:pre; +bégayante bégayant adj f s 0.01 0.68 0.01 0.14 +bégayantes bégayant adj f p 0.01 0.68 0.00 0.07 +bégayants bégayant adj m p 0.01 0.68 0.00 0.07 +bégaye bégayer ver 2.61 7.50 0.41 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bégayer bégayer ver 2.61 7.50 0.64 1.01 inf; +bégayes bégayer ver 2.61 7.50 0.05 0.00 ind:pre:2s; +bégayeur bégayeur adj m s 0.00 0.14 0.00 0.14 +bégayez bégayer ver 2.61 7.50 0.15 0.07 ind:pre:2p; +bégayé bégayer ver m s 2.61 7.50 0.27 0.27 par:pas; +bégayées bégayer ver f p 2.61 7.50 0.00 0.07 par:pas; +buggy buggy nom m s 0.28 0.00 0.28 0.00 +bugle bugle nom m s 0.07 0.34 0.06 0.34 +bugler bugler ver 0.07 0.00 0.07 0.00 inf; +bugles bugle nom p 0.07 0.34 0.01 0.00 +bugne bugne nom f s 0.01 0.14 0.01 0.07 +bugnes bugne nom f p 0.01 0.14 0.00 0.07 +bugné bugner ver m s 0.01 0.00 0.01 0.00 par:pas; +bégonias bégonia nom m p 0.05 1.15 0.05 1.15 +bugs bug nom m p 1.90 0.00 1.27 0.00 +bégueule bégueule nom f s 0.07 0.20 0.06 0.07 +bégueulerie bégueulerie nom f s 0.00 0.07 0.00 0.07 +bégueules bégueule nom f p 0.07 0.20 0.01 0.14 +béguin béguin nom m s 3.11 2.57 3.09 2.16 +béguinage béguinage nom m s 0.00 0.07 0.00 0.07 +béguine béguine nom f s 0.00 0.14 0.00 0.14 +béguineuse béguineuse nom f s 0.00 0.14 0.00 0.14 +béguins béguin nom m p 3.11 2.57 0.02 0.41 +bégum bégum nom f s 0.00 0.27 0.00 0.27 +béhème béhème nom f s 0.20 0.00 0.20 0.00 +béhémoth béhémoth nom m s 0.00 0.47 0.00 0.47 +building building nom m s 2.01 3.24 1.67 1.42 +buildings building nom m p 2.01 3.24 0.34 1.82 +buires buire nom f p 0.00 0.07 0.00 0.07 +buis buis nom m 0.03 7.23 0.03 7.23 +buisson_ardent buisson_ardent nom m s 0.01 0.00 0.01 0.00 +buisson buisson nom m s 7.73 27.09 3.81 10.00 +buissonnant buissonner ver 0.00 0.20 0.00 0.07 par:pre; +buissonnants buissonnant adj m p 0.00 0.14 0.00 0.07 +buissonne buissonner ver 0.00 0.20 0.00 0.07 ind:pre:3s; +buissonner buissonner ver 0.00 0.20 0.00 0.07 inf; +buissonneuse buissonneux adj f s 0.00 0.41 0.00 0.07 +buissonneuses buissonneux adj f p 0.00 0.41 0.00 0.07 +buissonneux buissonneux adj m p 0.00 0.41 0.00 0.27 +buissonnière buissonnier adj f s 0.79 1.55 0.79 1.22 +buissonnières buissonnier adj f p 0.79 1.55 0.00 0.34 +buissons buisson nom m p 7.73 27.09 3.92 17.09 +béjaune béjaune nom m s 0.00 0.20 0.00 0.20 +bélître bélître nom m s 0.01 0.07 0.01 0.07 +bêlaient bêler ver 0.23 1.55 0.00 0.20 ind:imp:3p; +bêlait bêler ver 0.23 1.55 0.00 0.20 ind:imp:3s; +bêlant bêler ver 0.23 1.55 0.03 0.34 par:pre; +bêlantes bêlant adj f p 0.16 0.47 0.00 0.27 +bêlants bêlant adj m p 0.16 0.47 0.14 0.07 +bulbe bulbe nom m s 0.47 1.82 0.31 1.01 +bulbes bulbe nom m p 0.47 1.82 0.16 0.81 +bulbeuse bulbeux adj f s 0.16 0.07 0.14 0.00 +bulbeux bulbeux adj m s 0.16 0.07 0.02 0.07 +bulbul bulbul nom m s 0.00 0.47 0.00 0.47 +bêle bêler ver 0.23 1.55 0.17 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bêlement bêlement nom m s 0.12 1.22 0.12 0.54 +bêlements bêlement nom m p 0.12 1.22 0.00 0.68 +bêlent bêler ver 0.23 1.55 0.00 0.14 ind:pre:3p; +bêler bêler ver 0.23 1.55 0.02 0.27 inf; +bulgare bulgare adj s 1.38 0.95 1.14 0.74 +bulgares bulgare nom p 0.79 1.08 0.28 0.61 +bulgaro bulgaro adv 0.00 0.07 0.00 0.07 +bulge bulge nom m s 0.02 0.00 0.02 0.00 +bélier bélier nom m s 1.51 3.99 1.32 3.11 +béliers bélier nom m p 1.51 3.99 0.19 0.88 +bélinogramme bélinogramme nom m s 0.00 0.07 0.00 0.07 +bull_dog bull_dog nom m s 0.01 0.68 0.01 0.61 +bull_dog bull_dog nom m p 0.01 0.68 0.00 0.07 +bull_finch bull_finch nom m s 0.00 0.14 0.00 0.14 +bull_terrier bull_terrier nom m s 0.02 0.00 0.02 0.00 +bull bull nom m s 1.04 0.61 0.61 0.41 +bulla buller ver 0.35 0.20 0.00 0.14 ind:pas:3s; +bullaire bullaire nom m s 0.01 0.00 0.01 0.00 +bulldog bulldog nom m s 0.49 0.20 0.30 0.14 +bulldogs bulldog nom m p 0.49 0.20 0.19 0.07 +bulldozer bulldozer nom m s 2.33 2.64 1.26 1.89 +bulldozers bulldozer nom m p 2.33 2.64 1.07 0.74 +bulle bulle nom f s 8.11 16.55 2.99 6.62 +buller buller ver 0.35 0.20 0.12 0.07 inf; +bulles bulle nom f p 8.11 16.55 5.12 9.93 +bulletin bulletin nom m s 6.35 7.50 4.99 5.41 +bulletins bulletin nom m p 6.35 7.50 1.36 2.09 +bulleux bulleux adj m s 0.00 0.14 0.00 0.14 +bullez buller ver 0.35 0.20 0.01 0.00 imp:pre:2p; +bulls bull nom m p 1.04 0.61 0.43 0.20 +bulot bulot nom m s 0.01 0.07 0.01 0.00 +bulots bulot nom m p 0.01 0.07 0.00 0.07 +bélouga bélouga nom m s 0.02 0.00 0.02 0.00 +bêlé bêler ver m s 0.23 1.55 0.01 0.27 par:pas; +béluga béluga nom m s 0.02 0.00 0.02 0.00 +bémol bémol nom m s 0.88 1.01 0.88 0.81 +bémolisé bémoliser ver m s 0.00 0.07 0.00 0.07 par:pas; +bémols bémol nom m p 0.88 1.01 0.00 0.20 +bumper bumper nom m 0.14 0.14 0.14 0.14 +buna buna nom m s 0.01 0.00 0.01 0.00 +bénard bénard nom m s 0.00 1.82 0.00 1.69 +bénarde bénard adj f s 0.00 0.34 0.00 0.14 +bénards bénard nom m p 0.00 1.82 0.00 0.14 +bénef bénef nom m s 0.71 0.68 0.43 0.61 +bénefs bénef nom m p 0.71 0.68 0.28 0.07 +bungalow bungalow nom m s 0.03 12.84 0.01 12.43 +bungalows bungalow nom m p 0.03 12.84 0.02 0.41 +béni bénir ver m s 48.77 18.92 10.90 4.26 par:pas; +bénie bénir ver f s 48.77 18.92 5.51 2.16 par:pas; +bénies bénir ver f p 48.77 18.92 0.72 0.47 par:pas; +bénigne bénin adj f s 1.56 3.45 0.88 1.69 +bénignement bénignement adv 0.00 0.07 0.00 0.07 +bénignes bénin adj f p 1.56 3.45 0.10 0.81 +bénignité bénignité nom f s 0.01 0.20 0.01 0.20 +bénin bénin adj m s 1.56 3.45 0.56 0.74 +béninois béninois adj m s 0.00 0.14 0.00 0.14 +bénins bénin adj m p 1.56 3.45 0.03 0.20 +bénir bénir ver 48.77 18.92 2.36 3.38 inf; +bénira bénir ver 48.77 18.92 0.66 0.20 ind:fut:3s; +bénirai bénir ver 48.77 18.92 0.05 0.00 ind:fut:1s; +bénirais bénir ver 48.77 18.92 0.01 0.14 cnd:pre:1s; +bénirait bénir ver 48.77 18.92 0.00 0.07 cnd:pre:3s; +béniras bénir ver 48.77 18.92 0.01 0.00 ind:fut:2s; +bénirez bénir ver 48.77 18.92 0.03 0.00 ind:fut:2p; +bénirons bénir ver 48.77 18.92 0.00 0.07 ind:fut:1p; +béniront bénir ver 48.77 18.92 0.04 0.00 ind:fut:3p; +bénis bénir ver m p 48.77 18.92 6.64 2.64 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bénissaient bénir ver 48.77 18.92 0.00 0.27 ind:imp:3p; +bénissais bénir ver 48.77 18.92 0.01 0.20 ind:imp:1s; +bénissait bénir ver 48.77 18.92 0.03 1.28 ind:imp:3s; +bénissant bénir ver 48.77 18.92 0.02 0.47 par:pre; +bénisse bénir ver 48.77 18.92 18.82 0.95 sub:pre:1s;sub:pre:3s; +bénissent bénir ver 48.77 18.92 0.47 0.20 ind:pre:3p; +bénisseur bénisseur adj m s 0.00 0.61 0.00 0.34 +bénisseurs bénisseur adj m p 0.00 0.61 0.00 0.14 +bénisseuse bénisseur adj f s 0.00 0.61 0.00 0.14 +bénissez bénir ver 48.77 18.92 1.62 0.20 imp:pre:2p;ind:pre:2p; +bénissions bénir ver 48.77 18.92 0.00 0.14 ind:imp:1p; +bénissons bénir ver 48.77 18.92 0.17 0.00 imp:pre:1p;ind:pre:1p; +bénit bénit adj m s 2.81 4.26 0.72 1.15 +bénite bénit adj f s 2.81 4.26 2.08 2.64 +bénites bénit adj f p 2.81 4.26 0.01 0.27 +bénitier bénitier nom m s 0.80 1.96 0.72 1.76 +bénitiers bénitier nom m p 0.80 1.96 0.07 0.20 +bénits bénit adj m p 2.81 4.26 0.00 0.20 +bunker bunker nom m s 4.51 0.81 3.89 0.68 +bunkers bunker nom m p 4.51 0.81 0.62 0.14 +bénouze bénouze nom m s 0.00 0.20 0.00 0.20 +bunraku bunraku nom m s 0.00 0.07 0.00 0.07 +bunsen bunsen nom m 0.00 0.07 0.00 0.07 +bénédicité bénédicité nom m s 0.43 0.34 0.41 0.27 +bénédicités bénédicité nom m p 0.43 0.34 0.02 0.07 +bénédictin bénédictin adj m s 0.04 0.95 0.01 0.34 +bénédictine bénédictin nom f s 0.19 0.74 0.03 0.20 +bénédictines bénédictin nom f p 0.19 0.74 0.14 0.20 +bénédictins bénédictin nom m p 0.19 0.74 0.01 0.14 +bénédiction bénédiction nom f s 11.15 8.18 10.61 7.43 +bénédictions bénédiction nom f p 11.15 8.18 0.54 0.74 +bénéfice bénéfice nom m s 8.97 11.42 4.31 8.04 +bénéfices bénéfice nom m p 8.97 11.42 4.66 3.38 +bénéficia bénéficier ver 3.85 9.66 0.00 0.27 ind:pas:3s; +bénéficiaient bénéficier ver 3.85 9.66 0.01 0.68 ind:imp:3p; +bénéficiaire bénéficiaire nom s 0.92 1.55 0.77 0.74 +bénéficiaires bénéficiaire nom p 0.92 1.55 0.15 0.81 +bénéficiais bénéficier ver 3.85 9.66 0.00 0.34 ind:imp:1s; +bénéficiait bénéficier ver 3.85 9.66 0.02 1.28 ind:imp:3s; +bénéficiant bénéficier ver 3.85 9.66 0.17 0.47 par:pre; +bénéficie bénéficier ver 3.85 9.66 1.05 0.88 ind:pre:1s;ind:pre:3s; +bénéficient bénéficier ver 3.85 9.66 0.16 0.47 ind:pre:3p; +bénéficier bénéficier ver 3.85 9.66 1.43 3.24 inf; +bénéficiera bénéficier ver 3.85 9.66 0.26 0.14 ind:fut:3s; +bénéficierai bénéficier ver 3.85 9.66 0.04 0.00 ind:fut:1s; +bénéficierais bénéficier ver 3.85 9.66 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +bénéficierait bénéficier ver 3.85 9.66 0.05 0.14 cnd:pre:3s; +bénéficierez bénéficier ver 3.85 9.66 0.02 0.07 ind:fut:2p; +bénéficierons bénéficier ver 3.85 9.66 0.01 0.00 ind:fut:1p; +bénéficies bénéficier ver 3.85 9.66 0.08 0.00 ind:pre:2s; +bénéficiez bénéficier ver 3.85 9.66 0.19 0.00 imp:pre:2p;ind:pre:2p; +bénéficions bénéficier ver 3.85 9.66 0.04 0.07 ind:pre:1p; +bénéficiât bénéficier ver 3.85 9.66 0.00 0.07 sub:imp:3s; +bénéficièrent bénéficier ver 3.85 9.66 0.00 0.07 ind:pas:3p; +bénéficié bénéficier ver m s 3.85 9.66 0.30 1.49 par:pas; +bénéfique bénéfique adj s 1.61 3.24 1.43 2.84 +bénéfiques bénéfique adj p 1.61 3.24 0.18 0.41 +bénévolat bénévolat nom m s 0.98 0.07 0.98 0.07 +bénévole bénévole adj s 1.52 2.70 1.23 1.69 +bénévolement bénévolement adv 0.23 0.54 0.23 0.54 +bénévolence bénévolence nom f s 0.00 0.07 0.00 0.07 +bénévoles bénévole nom p 1.33 0.27 0.61 0.14 +béotien béotien nom m s 0.23 0.47 0.20 0.07 +béotienne béotien adj f s 0.06 0.00 0.02 0.00 +béotiens béotien adj m p 0.06 0.00 0.03 0.00 +buprestes bupreste nom m p 0.00 0.07 0.00 0.07 +béquant béquer ver 0.00 0.07 0.00 0.07 par:pre; +béquillant béquiller ver 0.00 0.14 0.00 0.07 par:pre; +béquillard béquillard adj m s 0.00 0.07 0.00 0.07 +béquille béquille nom f s 2.70 6.15 1.05 2.91 +béquillent béquiller ver 0.00 0.14 0.00 0.07 ind:pre:3p; +béquilles béquille nom f p 2.70 6.15 1.65 3.24 +béquilleux béquilleux adj m s 0.00 0.07 0.00 0.07 +buraliste buraliste nom s 0.57 0.95 0.57 0.88 +buralistes buraliste nom p 0.57 0.95 0.00 0.07 +bure bure nom s 0.57 3.18 0.57 3.18 +bureau bureau nom m s 167.13 150.07 156.68 130.07 +bureaucrate bureaucrate nom s 1.95 1.28 0.80 0.47 +bureaucrates bureaucrate nom p 1.95 1.28 1.15 0.81 +bureaucratie bureaucratie nom f s 1.17 0.81 1.17 0.74 +bureaucraties bureaucratie nom f p 1.17 0.81 0.00 0.07 +bureaucratique bureaucratique adj s 0.70 0.47 0.61 0.41 +bureaucratiquement bureaucratiquement adv 0.00 0.07 0.00 0.07 +bureaucratiques bureaucratique adj p 0.70 0.47 0.09 0.07 +bureaucratisées bureaucratiser ver f p 0.00 0.07 0.00 0.07 par:pas; +bureautique bureautique adj f s 0.01 0.00 0.01 0.00 +bureautique bureautique nom f s 0.01 0.00 0.01 0.00 +bureaux bureau nom m p 167.13 150.07 10.45 20.00 +burent boire ver 339.06 274.32 0.02 3.99 ind:pas:3p; +béret béret nom m s 1.50 15.07 1.19 13.31 +bérets béret nom m p 1.50 15.07 0.31 1.76 +burette burette nom f s 1.03 1.62 0.61 0.88 +burettes burette nom f p 1.03 1.62 0.42 0.74 +burg burg nom m s 0.05 0.20 0.05 0.20 +burger burger nom m s 2.31 0.07 1.33 0.00 +burgers burger nom m p 2.31 0.07 0.97 0.07 +burgondes burgonde adj m p 0.10 0.07 0.10 0.07 +burgraviat burgraviat nom m s 0.00 0.07 0.00 0.07 +béribéri béribéri nom m s 0.18 0.00 0.18 0.00 +burin burin nom m s 0.59 2.23 0.57 1.96 +burina buriner ver 0.11 0.61 0.10 0.07 ind:pas:3s; +buriner buriner ver 0.11 0.61 0.01 0.07 inf; +burins burin nom m p 0.59 2.23 0.02 0.27 +buriné buriné adj m s 0.02 0.68 0.01 0.47 +burinée buriné adj f s 0.02 0.68 0.01 0.07 +burinées buriné adj f p 0.02 0.68 0.00 0.07 +burinés buriner ver m p 0.11 0.61 0.00 0.14 par:pas; +burkinabé burkinabé adj s 0.01 0.00 0.01 0.00 +burlesque burlesque nom m s 0.34 0.74 0.33 0.68 +burlesques burlesque adj p 0.07 2.36 0.01 0.81 +burlingue burlingue nom m s 0.00 1.15 0.00 0.88 +burlingues burlingue nom m p 0.00 1.15 0.00 0.27 +burne burne nom f s 1.42 1.49 0.09 0.07 +burnes burne nom f p 1.42 1.49 1.33 1.42 +burnous burnous nom m 0.13 1.76 0.13 1.76 +burons buron nom m p 0.00 0.07 0.00 0.07 +bursite bursite nom f s 0.09 0.00 0.09 0.00 +bérullienne bérullien nom f s 0.00 0.07 0.00 0.07 +burundais burundais nom m 0.01 0.00 0.01 0.00 +bérézina bérézina nom f s 0.00 0.41 0.00 0.41 +béryl béryl nom m s 0.02 0.27 0.02 0.20 +béryllium béryllium nom m s 0.20 0.00 0.20 0.00 +béryls béryl nom m p 0.02 0.27 0.00 0.07 +bus bus nom m 50.63 10.54 50.63 10.54 +busard busard nom m s 0.06 0.74 0.02 0.47 +busards busard nom m p 0.06 0.74 0.04 0.27 +buse buse nom f s 1.28 2.84 0.82 2.09 +bésef bésef adv 0.01 0.14 0.01 0.14 +buses buse nom f p 1.28 2.84 0.46 0.74 +bush bush nom m s 0.24 0.00 0.24 0.00 +bushi bushi nom m s 0.01 0.20 0.01 0.20 +bushido bushido nom m s 0.01 0.00 0.01 0.00 +bushman bushman nom m s 0.00 0.07 0.00 0.07 +bésiclard bésiclard nom m s 0.00 0.07 0.00 0.07 +bésicles bésicles nom f p 0.01 0.20 0.01 0.20 +bésigue bésigue nom m s 0.06 0.00 0.06 0.00 +business business nom m 15.62 2.23 15.62 2.23 +businessman businessman nom m s 1.31 0.34 0.84 0.27 +businessmen businessman nom m p 1.31 0.34 0.47 0.07 +busqué busqué adj m s 0.00 1.76 0.00 1.76 +busse boire ver 339.06 274.32 0.00 0.07 sub:imp:1s; +buste buste nom m s 2.44 24.46 2.02 21.62 +bustes buste nom m p 2.44 24.46 0.42 2.84 +bustier bustier nom m s 0.20 0.34 0.20 0.34 +but but nom m s 78.43 60.41 73.80 51.89 +bêta bêta nom m s 2.36 0.81 2.14 0.74 +buta buter ver 31.86 21.62 0.02 2.09 ind:pas:3s; +butadiène butadiène nom m s 0.03 0.00 0.03 0.00 +butagaz butagaz nom m 0.14 0.47 0.14 0.47 +butai buter ver 31.86 21.62 0.00 0.27 ind:pas:1s; +butaient buter ver 31.86 21.62 0.00 0.41 ind:imp:3p; +bétail bétail nom m s 9.71 5.41 9.69 5.41 +bétaillère bétaillère nom f s 0.16 0.20 0.16 0.14 +bétaillères bétaillère nom f p 0.16 0.20 0.00 0.07 +bétails bétail nom m p 9.71 5.41 0.02 0.00 +butais buter ver 31.86 21.62 0.02 0.14 ind:imp:1s; +butait buter ver 31.86 21.62 0.20 2.30 ind:imp:3s; +butane butane nom m s 0.13 1.08 0.13 1.08 +butant buter ver 31.86 21.62 0.06 1.35 par:pre; +bêtas bêta nom m p 2.36 0.81 0.01 0.07 +bêtasse bêta nom f s 2.36 0.81 0.21 0.00 +bêtasses bêta adj f p 2.13 0.68 0.00 0.07 +bêtatron bêtatron nom m s 0.01 0.00 0.01 0.00 +bête bête adj s 56.55 41.89 51.33 33.31 +bute buter ver 31.86 21.62 8.21 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bétel bétel nom m s 2.94 0.14 2.94 0.14 +bêtement bêtement adv 4.56 11.28 4.56 11.28 +butent buter ver 31.86 21.62 0.44 0.74 ind:pre:3p; +buter buter ver 31.86 21.62 12.89 6.01 inf; +butera buter ver 31.86 21.62 0.16 0.14 ind:fut:3s; +buterai buter ver 31.86 21.62 0.54 0.00 ind:fut:1s; +buterais buter ver 31.86 21.62 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +buterait buter ver 31.86 21.62 0.03 0.07 cnd:pre:3s; +buteras buter ver 31.86 21.62 0.14 0.00 ind:fut:2s; +buterez buter ver 31.86 21.62 0.02 0.00 ind:fut:2p; +buterions buter ver 31.86 21.62 0.01 0.00 cnd:pre:1p; +buteront buter ver 31.86 21.62 0.07 0.00 ind:fut:3p; +bêtes bête nom f p 67.67 117.36 23.82 54.19 +butes buter ver 31.86 21.62 0.50 0.27 ind:pre:2s; +buteur buteur nom m s 0.39 0.00 0.39 0.00 +butez buter ver 31.86 21.62 0.73 0.07 imp:pre:2p;ind:pre:2p; +béèrent béer ver 0.23 3.65 0.00 0.14 ind:pas:3p; +bêtifia bêtifier ver 0.02 0.81 0.00 0.07 ind:pas:3s; +bêtifiaient bêtifier ver 0.02 0.81 0.00 0.14 ind:imp:3p; +bêtifiais bêtifier ver 0.02 0.81 0.00 0.07 ind:imp:1s; +bêtifiait bêtifier ver 0.02 0.81 0.00 0.20 ind:imp:3s; +bêtifiant bêtifiant adj m s 0.00 0.20 0.00 0.20 +bêtifie bêtifier ver 0.02 0.81 0.00 0.14 ind:pre:1s;ind:pre:3s; +bêtifier bêtifier ver 0.02 0.81 0.02 0.14 inf; +bêtifié bêtifier ver m s 0.02 0.81 0.00 0.07 par:pas; +butin butin nom m s 6.35 5.61 6.27 5.20 +butinait butiner ver 0.49 1.69 0.00 0.20 ind:imp:3s; +butinant butiner ver 0.49 1.69 0.14 0.20 par:pre; +butine butiner ver 0.49 1.69 0.17 0.34 ind:pre:1s;ind:pre:3s; +butinent butiner ver 0.49 1.69 0.01 0.34 ind:pre:3p; +butiner butiner ver 0.49 1.69 0.16 0.41 inf; +butines butiner ver 0.49 1.69 0.00 0.07 ind:pre:2s; +butineur butineur adj m s 0.03 0.07 0.01 0.00 +butineuse butineur adj f s 0.03 0.07 0.01 0.00 +butineuses butineur adj f p 0.03 0.07 0.01 0.07 +butins butin nom m p 6.35 5.61 0.08 0.41 +butiné butiner ver m s 0.49 1.69 0.01 0.00 par:pas; +butinées butiner ver f p 0.49 1.69 0.00 0.07 par:pas; +butinés butiner ver m p 0.49 1.69 0.00 0.07 par:pas; +bêtise bêtise nom f s 39.31 28.38 14.29 14.73 +bêtises bêtise nom f p 39.31 28.38 25.03 13.65 +bêtisier bêtisier nom m s 0.04 0.00 0.04 0.00 +bétoine bétoine nom f s 0.01 0.00 0.01 0.00 +butoir butoir nom m s 0.33 0.81 0.31 0.54 +butoirs butoir nom m p 0.33 0.81 0.02 0.27 +béton béton nom m s 6.41 15.68 6.41 15.20 +bétonnage bétonnage nom m s 0.00 0.14 0.00 0.14 +bétonnaient bétonner ver 0.22 0.14 0.01 0.00 ind:imp:3p; +bétonner bétonner ver 0.22 0.14 0.16 0.00 inf; +bétonneurs bétonneur nom m p 0.17 0.54 0.01 0.07 +bétonneuse bétonneur nom f s 0.17 0.54 0.16 0.20 +bétonneuses bétonneuse nom f p 0.14 0.00 0.14 0.00 +bétonnière bétonnière nom f s 0.23 0.07 0.22 0.00 +bétonnières bétonnière nom f p 0.23 0.07 0.01 0.07 +bétonné bétonner ver m s 0.22 0.14 0.05 0.00 par:pas; +bétonnée bétonné adj f s 0.02 0.61 0.00 0.14 +bétonnées bétonné adj f p 0.02 0.61 0.00 0.14 +bétonnés bétonné adj m p 0.02 0.61 0.00 0.14 +bétons béton nom m p 6.41 15.68 0.00 0.47 +butons buter ver 31.86 21.62 0.14 0.07 imp:pre:1p;ind:pre:1p; +butor butor nom m s 0.28 1.08 0.27 0.88 +butors butor nom m p 0.28 1.08 0.01 0.20 +buts but nom m p 78.43 60.41 4.63 8.51 +butte butte nom f s 1.48 7.03 1.17 5.34 +butter butter ver 1.17 1.01 0.69 0.14 inf; +buttes butte nom f p 1.48 7.03 0.32 1.69 +butteur butteur nom m s 0.11 0.00 0.11 0.00 +butèrent buter ver 31.86 21.62 0.00 0.41 ind:pas:3p; +buttoir buttoir nom m s 0.01 0.07 0.01 0.07 +buttèrent butter ver 1.17 1.01 0.00 0.07 ind:pas:3p; +butté butter ver m s 1.17 1.01 0.16 0.00 par:pas; +buttés butter ver m p 1.17 1.01 0.00 0.74 par:pas; +buté buter ver m s 31.86 21.62 6.71 3.24 par:pas; +butée buter ver f s 31.86 21.62 0.49 0.34 par:pas; +butées buter ver f p 31.86 21.62 0.01 0.00 par:pas; +butés buter ver m p 31.86 21.62 0.34 0.34 par:pas; +béé béer ver m s 0.23 3.65 0.00 0.07 par:pas; +buée buée nom f s 0.32 13.51 0.32 13.11 +béée béer ver f s 0.23 3.65 0.00 0.07 par:pas; +buées buée nom f p 0.32 13.51 0.00 0.41 +buvable buvable adj s 0.21 0.68 0.21 0.61 +buvables buvable adj p 0.21 0.68 0.00 0.07 +buvaient boire ver 339.06 274.32 0.78 7.09 ind:imp:3p; +buvais boire ver 339.06 274.32 4.10 3.11 ind:imp:1s;ind:imp:2s; +buvait boire ver 339.06 274.32 7.06 23.38 ind:imp:3s; +buvant boire ver 339.06 274.32 2.58 11.28 par:pre; +buvard buvard nom m s 0.12 4.32 0.10 3.58 +buvarde buvarder ver 0.00 0.20 0.00 0.07 ind:pre:3s; +buvards buvard nom m p 0.12 4.32 0.02 0.74 +buvardé buvarder ver m s 0.00 0.20 0.00 0.07 par:pas; +buvardés buvarder ver m p 0.00 0.20 0.00 0.07 par:pas; +buvette buvette nom f s 0.76 3.04 0.75 2.91 +buvettes buvette nom f p 0.76 3.04 0.01 0.14 +buveur buveur nom m s 2.22 4.66 1.67 1.49 +buveurs buveur nom m p 2.22 4.66 0.49 2.91 +buveuse buveur nom f s 2.22 4.66 0.06 0.27 +buvez boire ver 339.06 274.32 25.24 3.72 imp:pre:2p;ind:pre:2p; +buviez boire ver 339.06 274.32 0.72 0.14 ind:imp:2p; +buvions boire ver 339.06 274.32 0.53 2.36 ind:imp:1p; +buvons boire ver 339.06 274.32 13.69 3.04 imp:pre:1p;ind:pre:1p; +bévue bévue nom f s 0.36 1.22 0.28 0.68 +bévues bévue nom f p 0.36 1.22 0.08 0.54 +bézef bézef adv 0.01 0.14 0.01 0.14 +bézoard bézoard nom m s 0.01 0.00 0.01 0.00 +by_pass by_pass nom m 0.03 0.00 0.03 0.00 +by_night by_night adj m s 0.25 0.41 0.25 0.41 +by by nom m s 12.49 0.68 12.49 0.68 +bye_bye bye_bye ono 2.36 0.34 2.36 0.34 +bye bye ono 23.11 2.03 23.11 2.03 +byronien byronien adj m s 0.00 0.07 0.00 0.07 +bytes byte nom m p 0.09 0.00 0.09 0.00 +bytures byture nom m p 0.00 0.07 0.00 0.07 +byzantin byzantin adj m s 0.13 3.38 0.05 0.81 +byzantine byzantin adj f s 0.13 3.38 0.05 1.55 +byzantines byzantin adj f p 0.13 3.38 0.03 0.68 +byzantinisant byzantinisant adj m s 0.00 0.07 0.00 0.07 +byzantinisme byzantinisme nom m s 0.00 0.34 0.00 0.34 +byzantins byzantin nom m p 0.04 0.34 0.04 0.34 +c_est_à_dire c_est_à_dire adv 0.00 52.03 0.00 52.03 +c c pro_dem 46.69 4.59 46.69 4.59 +côlon côlon nom m s 0.23 0.20 0.23 0.20 +cône cône nom m s 1.08 3.38 0.78 2.57 +cônes cône nom m p 1.08 3.38 0.30 0.81 +côte côte nom f s 35.16 112.50 25.86 90.74 +côtelette côtelette nom f s 3.38 3.45 1.18 1.62 +côtelettes côtelette nom f p 3.38 3.45 2.19 1.82 +côtelé côtelé adj m s 0.17 1.08 0.16 1.08 +côtelée côtelé adj f s 0.17 1.08 0.01 0.00 +côtes_du_rhône côtes_du_rhône nom m s 0.00 0.47 0.00 0.47 +côtes côte nom f p 35.16 112.50 9.31 21.76 +côtier côtier adj m s 0.69 1.96 0.09 0.20 +côtiers côtier adj m p 0.69 1.96 0.01 0.14 +côtière côtier adj f s 0.69 1.96 0.40 0.95 +côtières côtier adj f p 0.69 1.96 0.19 0.68 +côtoie côtoyer ver 2.42 7.43 0.44 1.22 ind:pre:1s;ind:pre:3s; +côtoiements côtoiement nom m p 0.00 0.07 0.00 0.07 +côtoient côtoyer ver 2.42 7.43 0.19 0.27 ind:pre:3p; +côtoies côtoyer ver 2.42 7.43 0.17 0.07 ind:pre:2s; +côtoya côtoyer ver 2.42 7.43 0.00 0.07 ind:pas:3s; +côtoyaient côtoyer ver 2.42 7.43 0.02 1.22 ind:imp:3p; +côtoyais côtoyer ver 2.42 7.43 0.05 0.20 ind:imp:1s;ind:imp:2s; +côtoyait côtoyer ver 2.42 7.43 0.01 1.15 ind:imp:3s; +côtoyant côtoyer ver 2.42 7.43 0.04 0.27 par:pre; +côtoyer côtoyer ver 2.42 7.43 0.94 0.88 inf; +côtoyons côtoyer ver 2.42 7.43 0.02 0.20 ind:pre:1p; +côtoyé côtoyer ver m s 2.42 7.43 0.36 1.22 par:pas; +côtoyée côtoyer ver f s 2.42 7.43 0.01 0.00 par:pas; +côtoyées côtoyer ver f p 2.42 7.43 0.01 0.14 par:pas; +côtoyés côtoyer ver m p 2.42 7.43 0.17 0.54 par:pas; +côté côté nom m s 285.99 566.49 250.51 497.43 +côtés côté nom m p 285.99 566.49 35.48 69.05 +caïd caïd nom m s 2.63 7.97 2.19 6.82 +caïds caïd nom m p 2.63 7.97 0.44 1.15 +caïman caïman nom m s 1.02 0.54 0.90 0.34 +caïmans caïman nom m p 1.02 0.54 0.13 0.20 +caïque caïque nom m s 0.00 5.47 0.00 3.24 +caïques caïque nom m p 0.00 5.47 0.00 2.23 +cañon cañon nom m s 0.07 0.00 0.07 0.00 +cab cab nom m s 0.42 0.20 0.40 0.20 +cabale cabale nom f s 0.73 0.88 0.73 0.41 +cabales cabale nom f p 0.73 0.88 0.00 0.47 +cabaliste cabaliste nom s 0.00 0.34 0.00 0.20 +cabalistes cabaliste nom p 0.00 0.34 0.00 0.14 +cabalistique cabalistique adj s 0.05 0.68 0.03 0.14 +cabalistiques cabalistique adj p 0.05 0.68 0.02 0.54 +caballero caballero nom f s 0.11 0.20 0.11 0.20 +caban caban nom m s 0.14 1.49 0.14 1.28 +cabana cabaner ver 0.02 0.00 0.02 0.00 ind:pas:3s; +cabane cabane nom f s 15.36 29.46 14.34 25.68 +cabanes cabane nom f p 15.36 29.46 1.02 3.78 +cabanettes cabanette nom f p 0.00 0.07 0.00 0.07 +cabanon cabanon nom m s 1.27 2.09 1.26 1.69 +cabanons cabanon nom m p 1.27 2.09 0.01 0.41 +cabans caban nom m p 0.14 1.49 0.00 0.20 +cabaret cabaret nom m s 4.82 6.69 4.44 4.93 +cabaretier cabaretier nom m s 0.25 0.74 0.01 0.54 +cabaretiers cabaretier nom m p 0.25 0.74 0.23 0.07 +cabaretière cabaretier nom f s 0.25 0.74 0.00 0.14 +cabarets cabaret nom m p 4.82 6.69 0.38 1.76 +cabas cabas nom m 0.14 5.68 0.14 5.68 +caberlot caberlot nom m s 0.04 0.07 0.04 0.07 +cabernet cabernet nom m s 0.16 0.07 0.16 0.07 +cabestan cabestan nom m s 0.23 0.34 0.23 0.34 +cabiais cabiai nom m p 0.01 0.00 0.01 0.00 +cabillaud cabillaud nom m s 0.25 0.27 0.25 0.27 +cabillots cabillot nom m p 0.00 0.07 0.00 0.07 +cabine cabine nom f s 20.00 35.07 17.65 29.86 +cabiner cabiner ver 0.00 0.07 0.00 0.07 inf; +cabines cabine nom f p 20.00 35.07 2.35 5.20 +cabinet cabinet nom m s 21.97 36.49 19.45 29.80 +cabinets cabinet nom m p 21.97 36.49 2.51 6.69 +cabochard cabochard adj m s 0.21 0.47 0.18 0.27 +cabocharde cabochard adj f s 0.21 0.47 0.01 0.07 +cabochards cabochard adj m p 0.21 0.47 0.02 0.14 +caboche caboche nom f s 1.13 1.49 1.12 1.22 +caboches caboche nom f p 1.13 1.49 0.01 0.27 +cabochon cabochon nom m s 0.00 1.35 0.00 0.68 +cabochons cabochon nom m p 0.00 1.35 0.00 0.68 +cabossa cabosser ver 0.94 4.32 0.00 0.07 ind:pas:3s; +cabossages cabossage nom m p 0.00 0.07 0.00 0.07 +cabossait cabosser ver 0.94 4.32 0.00 0.07 ind:imp:3s; +cabosse cabosser ver 0.94 4.32 0.01 0.07 imp:pre:2s;ind:pre:3s; +cabosser cabosser ver 0.94 4.32 0.06 0.27 inf; +cabosses cabosse nom f p 0.00 0.14 0.00 0.07 +cabossé cabosser ver m s 0.94 4.32 0.40 1.62 par:pas; +cabossée cabosser ver f s 0.94 4.32 0.37 1.35 par:pas; +cabossées cabosser ver f p 0.94 4.32 0.05 0.54 par:pas; +cabossés cabosser ver m p 0.94 4.32 0.05 0.34 par:pas; +cabot cabot nom m s 1.52 1.49 1.45 0.68 +cabotage cabotage nom m s 0.00 0.20 0.00 0.20 +cabotaient caboter ver 0.02 0.41 0.00 0.07 ind:imp:3p; +cabotait caboter ver 0.02 0.41 0.00 0.14 ind:imp:3s; +cabote caboter ver 0.02 0.41 0.01 0.07 ind:pre:3s; +caboter caboter ver 0.02 0.41 0.01 0.07 inf; +caboteur caboteur nom m s 0.02 1.01 0.02 1.01 +cabotin cabotin nom m s 0.20 0.81 0.18 0.47 +cabotinage cabotinage nom m s 0.05 0.47 0.05 0.47 +cabotine cabotin nom f s 0.20 0.81 0.01 0.14 +cabotines cabotiner ver 0.01 0.00 0.01 0.00 ind:pre:2s; +cabotins cabotin nom m p 0.20 0.81 0.01 0.20 +cabots cabot nom m p 1.52 1.49 0.07 0.81 +caboté caboter ver m s 0.02 0.41 0.00 0.07 par:pas; +caboulot caboulot nom m s 0.00 0.68 0.00 0.47 +caboulots caboulot nom m p 0.00 0.68 0.00 0.20 +cabra cabrer ver 0.34 6.55 0.00 0.95 ind:pas:3s; +cabrade cabrade nom f s 0.00 0.07 0.00 0.07 +cabrage cabrage nom m s 0.04 0.00 0.04 0.00 +cabraient cabrer ver 0.34 6.55 0.00 0.34 ind:imp:3p; +cabrais cabrer ver 0.34 6.55 0.00 0.07 ind:imp:1s; +cabrait cabrer ver 0.34 6.55 0.00 0.61 ind:imp:3s; +cabrant cabrer ver 0.34 6.55 0.00 0.27 par:pre; +cabre cabrer ver 0.34 6.55 0.20 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cabrent cabrer ver 0.34 6.55 0.00 0.14 ind:pre:3p; +cabrer cabrer ver 0.34 6.55 0.01 1.08 inf; +cabrera cabrer ver 0.34 6.55 0.02 0.00 ind:fut:3s; +cabrerait cabrer ver 0.34 6.55 0.00 0.07 cnd:pre:3s; +cabrette cabrette nom f s 0.00 0.20 0.00 0.20 +cabri cabri nom m s 0.08 1.08 0.07 0.41 +cabriolaient cabrioler ver 0.02 0.47 0.00 0.14 ind:imp:3p; +cabriolait cabrioler ver 0.02 0.47 0.01 0.07 ind:imp:3s; +cabriolant cabrioler ver 0.02 0.47 0.00 0.07 par:pre; +cabriole cabriole nom f s 0.45 1.15 0.31 0.20 +cabrioler cabrioler ver 0.02 0.47 0.00 0.07 inf; +cabrioles cabriole nom f p 0.45 1.15 0.14 0.95 +cabriolet cabriolet nom m s 0.65 3.38 0.53 2.91 +cabriolets cabriolet nom m p 0.65 3.38 0.12 0.47 +cabris cabri nom m p 0.08 1.08 0.01 0.68 +cabrèrent cabrer ver 0.34 6.55 0.00 0.07 ind:pas:3p; +cabré cabrer ver m s 0.34 6.55 0.10 0.47 par:pas; +cabrée cabrer ver f s 0.34 6.55 0.01 0.34 par:pas; +cabrées cabrer ver f p 0.34 6.55 0.00 0.27 par:pas; +cabrés cabrer ver m p 0.34 6.55 0.00 0.41 par:pas; +cabs cab nom m p 0.42 0.20 0.02 0.00 +cabèche cabèche nom f s 0.00 0.54 0.00 0.47 +cabèches cabèche nom f p 0.00 0.54 0.00 0.07 +cabécous cabécou nom m p 0.00 0.07 0.00 0.07 +cabus cabus adj m s 0.00 0.07 0.00 0.07 +caca caca adj 3.16 1.76 3.16 1.76 +cacahouète cacahouète nom f s 1.00 0.00 0.39 0.00 +cacahouètes cacahouète nom f p 1.00 0.00 0.62 0.00 +cacahuète cacahuète nom f s 7.29 3.58 1.71 0.74 +cacahuètes cacahuète nom f p 7.29 3.58 5.59 2.84 +cacao cacao nom m s 1.30 1.42 1.29 1.42 +cacaos cacao nom m p 1.30 1.42 0.01 0.00 +cacaotier cacaotier nom m s 0.01 0.00 0.01 0.00 +cacaotés cacaoté adj m p 0.00 0.07 0.00 0.07 +cacaoyer cacaoyer nom m s 0.01 0.00 0.01 0.00 +cacarda cacarder ver 0.14 0.20 0.00 0.07 ind:pas:3s; +cacardait cacarder ver 0.14 0.20 0.00 0.07 ind:imp:3s; +cacarde cacarder ver 0.14 0.20 0.14 0.07 ind:pre:1s;ind:pre:3s; +cacas caca nom m p 3.09 2.23 0.04 0.47 +cacatois cacatois nom m 0.03 0.07 0.03 0.07 +cacatoès cacatoès nom m 0.12 0.34 0.12 0.34 +cacha cacher ver 204.10 181.89 1.13 6.82 ind:pas:3s; +cachai cacher ver 204.10 181.89 0.16 1.01 ind:pas:1s; +cachaient cacher ver 204.10 181.89 0.78 9.66 ind:imp:3p; +cachais cacher ver 204.10 181.89 3.61 2.03 ind:imp:1s;ind:imp:2s; +cachait cacher ver 204.10 181.89 5.84 21.89 ind:imp:3s; +cachalot cachalot nom m s 0.72 0.95 0.70 0.88 +cachalots cachalot nom m p 0.72 0.95 0.01 0.07 +cachant cacher ver 204.10 181.89 1.84 8.11 par:pre; +cache_brassière cache_brassière nom m 0.00 0.07 0.00 0.07 +cache_cache cache_cache nom m 3.42 2.70 3.42 2.70 +cache_coeur cache_coeur nom s 0.00 0.14 0.00 0.14 +cache_col cache_col nom m 0.01 1.35 0.01 1.35 +cache_corset cache_corset nom m 0.00 0.14 0.00 0.14 +cache_nez cache_nez nom m 0.15 2.09 0.15 2.09 +cache_pot cache_pot nom m s 0.16 0.81 0.16 0.41 +cache_pot cache_pot nom m p 0.16 0.81 0.00 0.41 +cache_poussière cache_poussière nom m 0.01 0.20 0.01 0.20 +cache_sexe cache_sexe nom m 0.03 0.27 0.03 0.27 +cache_tampon cache_tampon nom m 0.00 0.20 0.00 0.20 +cache cacher ver 204.10 181.89 44.82 20.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cachectique cachectique adj f s 0.00 0.20 0.00 0.14 +cachectiques cachectique adj m p 0.00 0.20 0.00 0.07 +cachemire cachemire nom m s 1.38 2.84 1.35 2.64 +cachemires cachemire nom m p 1.38 2.84 0.02 0.20 +cachemiris cachemiri nom m p 0.01 0.00 0.01 0.00 +cachent cacher ver 204.10 181.89 7.50 5.00 ind:pre:3p; +cacher cacher ver 204.10 181.89 61.04 48.45 inf;; +cachera cacher ver 204.10 181.89 0.83 0.27 ind:fut:3s; +cacherai cacher ver 204.10 181.89 1.35 1.01 ind:fut:1s; +cacheraient cacher ver 204.10 181.89 0.07 0.00 cnd:pre:3p; +cacherais cacher ver 204.10 181.89 0.81 0.27 cnd:pre:1s;cnd:pre:2s; +cacherait cacher ver 204.10 181.89 1.02 0.61 cnd:pre:3s; +cacheras cacher ver 204.10 181.89 0.08 0.20 ind:fut:2s; +cacherez cacher ver 204.10 181.89 0.30 0.07 ind:fut:2p; +cacheriez cacher ver 204.10 181.89 0.07 0.00 cnd:pre:2p; +cacherons cacher ver 204.10 181.89 0.12 0.14 ind:fut:1p; +cacheront cacher ver 204.10 181.89 0.08 0.07 ind:fut:3p; +caches cacher ver 204.10 181.89 12.67 1.89 ind:pre:2s;sub:pre:2s; +cachet cachet nom m s 16.46 10.20 6.97 4.93 +cacheta cacheter ver 0.96 2.64 0.00 0.27 ind:pas:3s; +cachetais cacheter ver 0.96 2.64 0.00 0.07 ind:imp:1s; +cachetait cacheter ver 0.96 2.64 0.00 0.20 ind:imp:3s; +cacheter cacheter ver 0.96 2.64 0.13 0.34 inf; +cacheton cacheton nom m s 0.59 0.20 0.03 0.14 +cachetonnais cachetonner ver 0.02 0.14 0.00 0.07 ind:imp:1s; +cachetonnait cachetonner ver 0.02 0.14 0.00 0.07 ind:imp:3s; +cachetonne cachetonner ver 0.02 0.14 0.02 0.00 ind:pre:3s; +cachetons cacheton nom m p 0.59 0.20 0.56 0.07 +cachets cachet nom m p 16.46 10.20 9.49 5.27 +cachette cachette nom f s 11.81 16.96 11.21 14.59 +cachettes cachette nom f p 11.81 16.96 0.59 2.36 +cacheté cacheter ver m s 0.96 2.64 0.14 0.74 par:pas; +cachetée cacheter ver f s 0.96 2.64 0.40 0.41 par:pas; +cachetées cacheter ver f p 0.96 2.64 0.01 0.20 par:pas; +cachetés cacheter ver m p 0.96 2.64 0.00 0.20 par:pas; +cachexie cachexie nom f s 0.01 0.07 0.01 0.07 +cachez cacher ver 204.10 181.89 10.65 1.35 imp:pre:2p;ind:pre:2p; +cachiez cacher ver 204.10 181.89 0.88 0.00 ind:imp:2p; +cachions cacher ver 204.10 181.89 0.15 0.74 ind:imp:1p; +cachons cacher ver 204.10 181.89 1.75 0.81 imp:pre:1p;ind:pre:1p; +cachât cacher ver 204.10 181.89 0.00 0.61 sub:imp:3s; +cachot cachot nom m s 3.67 7.09 3.01 5.95 +cachots cachot nom m p 3.67 7.09 0.66 1.15 +cachotterie cachotterie nom f s 0.93 0.54 0.01 0.20 +cachotteries cachotterie nom f p 0.93 0.54 0.92 0.34 +cachottier cachottier nom m s 0.71 0.47 0.57 0.34 +cachottiers cachottier adj m p 0.28 0.41 0.17 0.00 +cachottière cachottier nom f s 0.71 0.47 0.13 0.14 +cachottières cachottier adj f p 0.28 0.41 0.00 0.07 +cachou cachou nom m s 0.23 0.68 0.17 0.27 +cachous cachou nom m p 0.23 0.68 0.05 0.41 +cachère cachère adj 0.01 0.00 0.01 0.00 +cachèrent cacher ver 204.10 181.89 0.09 0.61 ind:pas:3p; +caché cacher ver m s 204.10 181.89 32.13 25.81 par:pas; +cachée cacher ver f s 204.10 181.89 8.17 11.89 par:pas; +cachées cacher ver f p 204.10 181.89 1.92 4.80 par:pas; +cachés cacher ver m p 204.10 181.89 4.29 7.70 par:pas; +cacique cacique nom m s 0.00 0.20 0.00 0.14 +caciques cacique nom m p 0.00 0.20 0.00 0.07 +cacochyme cacochyme adj s 0.00 0.74 0.00 0.47 +cacochymes cacochyme adj m p 0.00 0.74 0.00 0.27 +cacodylate cacodylate nom m s 0.00 0.07 0.00 0.07 +cacographes cacographe nom p 0.00 0.07 0.00 0.07 +cacophonie cacophonie nom f s 0.05 1.35 0.04 1.22 +cacophonies cacophonie nom f p 0.05 1.35 0.01 0.14 +cacophonique cacophonique adj s 0.00 0.34 0.00 0.27 +cacophoniques cacophonique adj m p 0.00 0.34 0.00 0.07 +cactées cactée nom f p 0.02 0.47 0.02 0.47 +cactus cactus nom m 2.86 2.30 2.86 2.30 +cadastral cadastral adj m s 0.00 1.62 0.00 1.15 +cadastrale cadastral adj f s 0.00 1.62 0.00 0.07 +cadastraux cadastral adj m p 0.00 1.62 0.00 0.41 +cadastre cadastre nom m s 0.56 3.58 0.54 3.45 +cadastres cadastre nom m p 0.56 3.58 0.02 0.14 +cadastré cadastrer ver m s 0.10 0.14 0.10 0.00 par:pas; +cadastrée cadastrer ver f s 0.10 0.14 0.00 0.14 par:pas; +cadavre cadavre nom m s 47.75 54.05 27.93 32.30 +cadavres cadavre nom m p 47.75 54.05 19.82 21.76 +cadavéreuse cadavéreux adj f s 0.04 0.20 0.00 0.14 +cadavéreux cadavéreux adj m 0.04 0.20 0.04 0.07 +cadavérique cadavérique adj s 0.34 0.95 0.34 0.68 +cadavériques cadavérique adj p 0.34 0.95 0.00 0.27 +cadavérise cadavériser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +cadavérisés cadavériser ver m p 0.00 0.14 0.00 0.07 par:pas; +caddie caddie nom m s 1.50 2.43 1.35 1.28 +caddies caddie nom m p 1.50 2.43 0.15 1.15 +caddy caddy nom m s 0.81 1.49 0.81 1.49 +cade cade nom m s 0.14 0.00 0.14 0.00 +cadeau cadeau nom m s 125.79 50.81 98.09 32.77 +cadeaux cadeau nom m p 125.79 50.81 27.70 18.04 +cadenas cadenas nom m 2.10 2.43 2.10 2.43 +cadenassaient cadenasser ver 0.21 1.89 0.00 0.07 ind:imp:3p; +cadenassait cadenasser ver 0.21 1.89 0.00 0.14 ind:imp:3s; +cadenassant cadenasser ver 0.21 1.89 0.00 0.07 par:pre; +cadenasse cadenasser ver 0.21 1.89 0.01 0.07 ind:pre:3s; +cadenasser cadenasser ver 0.21 1.89 0.02 0.20 inf; +cadenassez cadenasser ver 0.21 1.89 0.04 0.00 imp:pre:2p; +cadenassé cadenasser ver m s 0.21 1.89 0.09 0.41 par:pas; +cadenassée cadenasser ver f s 0.21 1.89 0.06 0.68 par:pas; +cadenassées cadenasser ver f p 0.21 1.89 0.00 0.27 par:pas; +cadence cadence nom f s 2.42 13.78 2.12 12.64 +cadencer cadencer ver 0.38 1.22 0.00 0.14 inf; +cadences cadence nom f p 2.42 13.78 0.30 1.15 +cadencé cadencer ver m s 0.38 1.22 0.10 0.74 par:pas; +cadencée cadencer ver f s 0.38 1.22 0.01 0.14 par:pas; +cadencées cadencé adj f p 0.05 1.96 0.00 0.07 +cadencés cadencer ver m p 0.38 1.22 0.14 0.07 par:pas; +cadet cadet nom m s 7.38 8.85 3.71 4.32 +cadets cadet nom m p 7.38 8.85 2.44 1.69 +cadette cadet adj f s 4.64 3.18 1.52 1.28 +cadettes cadet adj f p 4.64 3.18 0.01 0.14 +cadi cadi nom m s 0.10 2.30 0.10 2.30 +cadmié cadmier ver m s 0.00 0.20 0.00 0.20 par:pas; +cadmium cadmium nom m s 0.13 0.07 0.13 0.07 +cadogan cadogan nom m s 0.20 0.00 0.20 0.00 +cador cador nom m s 0.45 1.96 0.41 1.42 +cadors cador nom m p 0.45 1.96 0.03 0.54 +cadrage cadrage nom m s 0.59 0.47 0.58 0.34 +cadrages cadrage nom m p 0.59 0.47 0.01 0.14 +cadrais cadrer ver 1.55 2.43 0.00 0.07 ind:imp:2s; +cadrait cadrer ver 1.55 2.43 0.02 0.68 ind:imp:3s; +cadran cadran nom m s 1.58 7.70 1.42 6.55 +cadrans cadran nom m p 1.58 7.70 0.16 1.15 +cadrant cadrer ver 1.55 2.43 0.03 0.00 par:pre; +cadratin cadratin nom m s 0.00 0.14 0.00 0.07 +cadratins cadratin nom m p 0.00 0.14 0.00 0.07 +cadre cadre nom m s 13.53 42.84 10.98 29.80 +cadrent cadrer ver 1.55 2.43 0.03 0.14 ind:pre:3p; +cadrer cadrer ver 1.55 2.43 0.64 0.34 inf; +cadres cadre nom m p 13.53 42.84 2.56 13.04 +cadreur cadreur nom m s 0.14 0.14 0.11 0.07 +cadreurs cadreur nom m p 0.14 0.14 0.04 0.07 +cadrez cadrer ver 1.55 2.43 0.03 0.00 imp:pre:2p; +cadré cadrer ver m s 1.55 2.43 0.10 0.47 par:pas; +cadrée cadrer ver f s 1.55 2.43 0.01 0.27 par:pas; +cadènes cadène nom f p 0.00 1.01 0.00 1.01 +caduc caduc adj m s 0.24 1.01 0.14 0.74 +caducité caducité nom f s 0.00 0.07 0.00 0.07 +caducs caduc adj m p 0.24 1.01 0.10 0.27 +caducée caducée nom m s 0.16 0.20 0.16 0.14 +caducées caducée nom m p 0.16 0.20 0.00 0.07 +caduque caduque adj f s 0.23 0.95 0.19 0.47 +caduques caduque adj f p 0.23 0.95 0.04 0.47 +caecum caecum nom m s 0.01 0.00 0.01 0.00 +caesium caesium nom m s 0.11 0.00 0.11 0.00 +caf caf adj s 0.14 0.00 0.14 0.00 +cafard cafard nom m s 9.87 9.80 5.77 7.84 +cafardage cafardage nom m s 0.11 0.00 0.11 0.00 +cafarde cafarder ver 0.34 0.34 0.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cafarder cafarder ver 0.34 0.34 0.21 0.27 inf; +cafarderait cafarder ver 0.34 0.34 0.00 0.07 cnd:pre:3s; +cafardeur cafardeur nom m s 0.29 0.00 0.16 0.00 +cafardeuse cafardeur nom f s 0.29 0.00 0.14 0.00 +cafardeux cafardeux adj m 0.09 0.34 0.07 0.34 +cafards cafard nom m p 9.87 9.80 4.10 1.96 +cafetais cafeter ver 0.27 0.07 0.00 0.07 ind:imp:1s; +cafetan cafetan nom m s 0.29 0.07 0.28 0.00 +cafetans cafetan nom m p 0.29 0.07 0.01 0.07 +cafeter cafeter ver 0.27 0.07 0.25 0.00 inf; +cafeteria cafeteria nom f s 0.11 1.35 0.11 1.28 +cafeterias cafeteria nom f p 0.11 1.35 0.00 0.07 +cafeteur cafeteur nom m s 0.01 0.00 0.01 0.00 +cafetier cafetier nom m s 0.35 2.97 0.34 2.77 +cafetiers cafetier nom m p 0.35 2.97 0.01 0.20 +cafetière cafetière nom f s 2.07 5.88 1.92 5.54 +cafetières cafetière nom f p 2.07 5.88 0.15 0.34 +cafeton cafeton nom m s 0.00 0.14 0.00 0.14 +cafeté cafeter ver m s 0.27 0.07 0.02 0.00 par:pas; +cafouilla cafouiller ver 0.43 0.41 0.00 0.14 ind:pas:3s; +cafouillage cafouillage nom m s 0.33 0.54 0.30 0.41 +cafouillages cafouillage nom m p 0.33 0.54 0.02 0.14 +cafouillait cafouiller ver 0.43 0.41 0.03 0.07 ind:imp:3s; +cafouillant cafouiller ver 0.43 0.41 0.00 0.07 par:pre; +cafouille cafouiller ver 0.43 0.41 0.19 0.00 ind:pre:1s;ind:pre:3s; +cafouillent cafouiller ver 0.43 0.41 0.01 0.07 ind:pre:3p; +cafouiller cafouiller ver 0.43 0.41 0.02 0.07 inf; +cafouilles cafouiller ver 0.43 0.41 0.01 0.00 ind:pre:2s; +cafouilleuse cafouilleux adj f s 0.00 0.27 0.00 0.14 +cafouilleux cafouilleux adj m 0.00 0.27 0.00 0.14 +cafouillis cafouillis nom m 0.00 0.14 0.00 0.14 +cafouillé cafouiller ver m s 0.43 0.41 0.17 0.00 par:pas; +cafre cafre nom m s 0.03 0.00 0.03 0.00 +caftage caftage nom m s 0.00 0.07 0.00 0.07 +caftaient cafter ver 1.05 1.22 0.00 0.07 ind:imp:3p; +caftait cafter ver 1.05 1.22 0.01 0.00 ind:imp:3s; +caftan caftan nom m s 0.15 2.64 0.15 1.89 +caftans caftan nom m p 0.15 2.64 0.00 0.74 +cafte cafter ver 1.05 1.22 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cafter cafter ver 1.05 1.22 0.32 0.54 inf; +cafterai cafter ver 1.05 1.22 0.01 0.00 ind:fut:1s; +cafterait cafter ver 1.05 1.22 0.00 0.14 cnd:pre:3s; +cafteras cafter ver 1.05 1.22 0.00 0.07 ind:fut:2s; +caftes cafter ver 1.05 1.22 0.14 0.07 ind:pre:2s; +cafteur cafteur nom m s 0.51 0.47 0.35 0.14 +cafteurs cafteur nom m p 0.51 0.47 0.15 0.14 +cafteuse cafteur nom f s 0.51 0.47 0.01 0.20 +cafté cafter ver m s 1.05 1.22 0.37 0.27 par:pas; +caftés cafter ver m p 1.05 1.22 0.01 0.00 par:pas; +café_concert café_concert nom m s 0.00 0.47 0.00 0.34 +café_crème café_crème nom m s 0.00 0.95 0.00 0.95 +café_hôtel café_hôtel nom m s 0.00 0.07 0.00 0.07 +café_restaurant café_restaurant nom m s 0.00 0.41 0.00 0.41 +café_tabac café_tabac nom m s 0.00 1.22 0.00 1.22 +café_théâtre café_théâtre nom m s 0.00 0.27 0.00 0.27 +café café nom m s 163.56 177.30 157.56 154.93 +caféier caféier nom m s 0.02 0.07 0.01 0.00 +caféiers caféier nom m p 0.02 0.07 0.01 0.07 +caféine caféine nom f s 1.58 0.14 1.58 0.14 +café_concert café_concert nom m p 0.00 0.47 0.00 0.14 +cafés café nom m p 163.56 177.30 6.00 22.36 +cafétéria cafétéria nom f s 4.12 1.28 4.08 1.15 +cafétérias cafétéria nom f p 4.12 1.28 0.04 0.14 +cagade cagade nom f s 0.00 0.68 0.00 0.54 +cagades cagade nom f p 0.00 0.68 0.00 0.14 +cage cage nom f s 18.30 41.82 16.61 34.86 +cageot cageot nom m s 1.21 7.36 0.64 3.11 +cageots cageot nom m p 1.21 7.36 0.57 4.26 +cages cage nom f p 18.30 41.82 1.69 6.96 +cagette cagette nom f s 0.01 0.54 0.01 0.07 +cagettes cagette nom f p 0.01 0.54 0.00 0.47 +cagibi cagibi nom m s 0.85 5.34 0.85 5.07 +cagibis cagibi nom m p 0.85 5.34 0.00 0.27 +cagna cagna nom f s 0.01 2.64 0.01 1.69 +cagnard cagnard adj m s 0.17 0.27 0.17 0.20 +cagnards cagnard adj m p 0.17 0.27 0.00 0.07 +cagnas cagna nom f p 0.01 2.64 0.00 0.95 +cagne cagne nom f s 0.00 0.07 0.00 0.07 +cagneuse cagneux adj f s 0.21 1.01 0.01 0.07 +cagneuses cagneux adj f p 0.21 1.01 0.00 0.14 +cagneux cagneux adj m 0.21 1.01 0.20 0.81 +cagnotte cagnotte nom f s 1.09 1.01 1.09 1.01 +cagot cagot nom m s 0.00 0.41 0.00 0.14 +cagote cagot nom f s 0.00 0.41 0.00 0.07 +cagotes cagot adj f p 0.00 0.20 0.00 0.07 +cagots cagot nom m p 0.00 0.41 0.00 0.20 +cagou cagou nom m s 0.01 0.00 0.01 0.00 +cagoulard cagoulard nom m s 0.00 0.54 0.00 0.14 +cagoulards cagoulard nom m p 0.00 0.54 0.00 0.41 +cagoule cagoule nom f s 2.84 1.76 1.92 1.28 +cagoules cagoule nom f p 2.84 1.76 0.93 0.47 +cagoulé cagoulé adj m s 0.31 0.20 0.03 0.14 +cagoulés cagoulé adj m p 0.31 0.20 0.28 0.07 +caguait caguer ver 0.01 0.88 0.00 0.20 ind:imp:3s; +cague caguer ver 0.01 0.88 0.00 0.27 ind:pre:1s;ind:pre:3s; +caguer caguer ver 0.01 0.88 0.01 0.41 inf; +cahier cahier nom m s 6.98 31.55 5.04 20.07 +cahiers cahier nom m p 6.98 31.55 1.94 11.49 +cahin_caha cahin_caha adv 0.00 1.08 0.00 1.08 +cahors cahors nom m 0.00 0.14 0.00 0.14 +cahot cahot nom m s 0.08 4.39 0.01 1.42 +cahota cahoter ver 0.06 4.53 0.00 0.14 ind:pas:3s; +cahotait cahoter ver 0.06 4.53 0.01 0.34 ind:imp:3s; +cahotant cahoter ver 0.06 4.53 0.00 1.42 par:pre; +cahotante cahotant adj f s 0.00 1.08 0.00 0.68 +cahote cahoter ver 0.06 4.53 0.01 0.54 ind:pre:3s; +cahotement cahotement nom m s 0.00 0.27 0.00 0.27 +cahotent cahoter ver 0.06 4.53 0.00 0.14 ind:pre:3p; +cahoter cahoter ver 0.06 4.53 0.03 0.41 inf; +cahoteuse cahoteux adj f s 0.15 0.74 0.10 0.07 +cahoteuses cahoteux adj f p 0.15 0.74 0.00 0.07 +cahoteux cahoteux adj m 0.15 0.74 0.05 0.61 +cahotons cahoter ver 0.06 4.53 0.00 0.07 ind:pre:1p; +cahots cahot nom m p 0.08 4.39 0.07 2.97 +cahotèrent cahoter ver 0.06 4.53 0.00 0.07 ind:pas:3p; +cahoté cahoter ver m s 0.06 4.53 0.00 0.68 par:pas; +cahotée cahoter ver f s 0.06 4.53 0.01 0.07 par:pas; +cahotées cahoter ver f p 0.06 4.53 0.00 0.14 par:pas; +cahotés cahoter ver m p 0.06 4.53 0.00 0.54 par:pas; +cahute cahute nom f s 0.17 1.69 0.17 1.01 +cahutes cahute nom f p 0.17 1.69 0.00 0.68 +cailla cailler ver 1.46 2.91 0.00 0.07 ind:pas:3s; +caillaient cailler ver 1.46 2.91 0.00 0.07 ind:imp:3p; +caillais cailler ver 1.46 2.91 0.00 0.07 ind:imp:1s; +caillait cailler ver 1.46 2.91 0.02 0.47 ind:imp:3s; +caillant cailler ver 1.46 2.91 0.01 0.07 par:pre; +caillasse caillasse nom f s 0.16 2.70 0.14 1.35 +caillasser caillasser ver 0.03 0.00 0.03 0.00 inf; +caillasses caillasse nom f p 0.16 2.70 0.02 1.35 +caille caille nom f s 2.34 4.59 1.81 2.97 +caillebotis caillebotis nom m 0.01 0.20 0.01 0.20 +caillent cailler ver 1.46 2.91 0.01 0.07 ind:pre:3p; +cailler cailler ver 1.46 2.91 0.21 0.68 inf; +caillera caillera nom f s 0.03 0.00 0.03 0.00 +caillerait cailler ver 1.46 2.91 0.01 0.00 cnd:pre:3s; +caillerez cailler ver 1.46 2.91 0.01 0.00 ind:fut:2p; +cailles caille nom f p 2.34 4.59 0.53 1.62 +caillette caillette nom f s 0.01 0.00 0.01 0.00 +caillot caillot nom m s 3.09 2.84 2.39 1.82 +caillots caillot nom m p 3.09 2.84 0.70 1.01 +caillou caillou nom m s 10.02 38.58 4.11 11.22 +cailloutage cailloutage nom m s 0.00 0.07 0.00 0.07 +caillouteuse caillouteux adj f s 0.34 3.11 0.15 1.42 +caillouteuses caillouteux adj f p 0.34 3.11 0.00 0.34 +caillouteux caillouteux adj m 0.34 3.11 0.20 1.35 +cailloutis cailloutis nom m 0.00 0.54 0.00 0.54 +caillouté caillouter ver m s 0.03 0.00 0.03 0.00 par:pas; +cailloux caillou nom m p 10.02 38.58 5.91 27.36 +caillé caillé adj m s 0.21 1.96 0.21 1.96 +caillée cailler ver f s 1.46 2.91 0.00 0.07 par:pas; +caillées cailler ver f p 1.46 2.91 0.00 0.07 par:pas; +cairn cairn nom m s 0.08 0.07 0.03 0.07 +cairns cairn nom m p 0.08 0.07 0.05 0.00 +cairote cairote nom s 0.00 0.14 0.00 0.07 +cairotes cairote nom p 0.00 0.14 0.00 0.07 +caisse caisse nom f s 38.03 69.39 29.46 51.01 +caisses caisse nom f p 38.03 69.39 8.57 18.38 +caissette caissette nom f s 0.00 1.15 0.00 0.61 +caissettes caissette nom f p 0.00 1.15 0.00 0.54 +caissier caissier nom m s 4.07 7.09 1.66 1.96 +caissiers caissier nom m p 4.07 7.09 0.38 0.20 +caissière caissier nom f s 4.07 7.09 2.03 4.19 +caissières caissière nom f p 0.25 0.00 0.25 0.00 +caisson caisson nom m s 1.72 3.04 1.43 0.81 +caissons caisson nom m p 1.72 3.04 0.29 2.23 +cajola cajoler ver 1.36 3.45 0.00 0.41 ind:pas:3s; +cajolaient cajoler ver 1.36 3.45 0.00 0.47 ind:imp:3p; +cajolait cajoler ver 1.36 3.45 0.03 0.20 ind:imp:3s; +cajolant cajoler ver 1.36 3.45 0.11 0.27 par:pre; +cajole cajoler ver 1.36 3.45 0.59 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cajolent cajoler ver 1.36 3.45 0.01 0.07 ind:pre:3p; +cajoler cajoler ver 1.36 3.45 0.36 1.15 inf; +cajolera cajoler ver 1.36 3.45 0.01 0.07 ind:fut:3s; +cajolerai cajoler ver 1.36 3.45 0.20 0.00 ind:fut:1s; +cajolerait cajoler ver 1.36 3.45 0.00 0.07 cnd:pre:3s; +cajolerie cajolerie nom f s 0.03 0.81 0.00 0.20 +cajoleries cajolerie nom f p 0.03 0.81 0.03 0.61 +cajoleur cajoleur nom m s 0.10 0.20 0.10 0.07 +cajoleurs cajoleur nom m p 0.10 0.20 0.00 0.07 +cajoleuse cajoleur adj f s 0.11 0.54 0.10 0.14 +cajolèrent cajoler ver 1.36 3.45 0.00 0.14 ind:pas:3p; +cajolé cajoler ver m s 1.36 3.45 0.01 0.20 par:pas; +cajolée cajoler ver f s 1.36 3.45 0.01 0.07 par:pas; +cajolés cajoler ver m p 1.36 3.45 0.02 0.00 par:pas; +cajou cajou nom m s 0.18 0.14 0.17 0.14 +cajous cajou nom m p 0.18 0.14 0.01 0.00 +cajun cajun adj s 0.47 0.00 0.47 0.00 +cajuns cajun nom p 0.28 0.00 0.10 0.00 +cake_walk cake_walk nom m s 0.03 0.00 0.03 0.00 +cake cake nom m s 3.13 1.96 2.57 1.69 +cakes cake nom m p 3.13 1.96 0.56 0.27 +cal cal nom m s 3.54 0.68 3.50 0.34 +cala caler ver 4.19 17.77 0.15 2.16 ind:pas:3s; +calabrais calabrais adj m 0.34 0.41 0.34 0.34 +calabraises calabrais adj f p 0.34 0.41 0.00 0.07 +calade calade nom f s 0.00 0.20 0.00 0.20 +calai caler ver 4.19 17.77 0.01 0.14 ind:pas:1s; +calaient caler ver 4.19 17.77 0.00 0.14 ind:imp:3p; +calais caler ver 4.19 17.77 0.01 0.14 ind:imp:1s;ind:imp:2s; +calaisiens calaisien nom m p 0.00 0.07 0.00 0.07 +calaison calaison nom f s 0.10 0.00 0.10 0.00 +calait caler ver 4.19 17.77 0.01 0.47 ind:imp:3s; +calamar calamar nom m s 1.09 0.47 0.40 0.14 +calamars calamar nom m p 1.09 0.47 0.69 0.34 +calame calame nom m s 0.14 0.27 0.14 0.20 +calames calame nom m p 0.14 0.27 0.00 0.07 +calamine calamine nom f s 0.01 0.20 0.01 0.00 +calamines calamine nom f p 0.01 0.20 0.00 0.20 +calamistre calamistrer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +calamistré calamistré adj m s 0.00 0.41 0.00 0.14 +calamistrée calamistré adj f s 0.00 0.41 0.00 0.14 +calamistrés calamistré adj m p 0.00 0.41 0.00 0.14 +calamita calamiter ver 0.04 0.27 0.01 0.00 ind:pas:3s; +calamitait calamiter ver 0.04 0.27 0.00 0.07 ind:imp:3s; +calamiteuse calamiteux adj f s 0.06 0.81 0.02 0.34 +calamiteuses calamiteux adj f p 0.06 0.81 0.00 0.07 +calamiteux calamiteux adj m s 0.06 0.81 0.03 0.41 +calamité calamité nom f s 2.21 2.84 1.63 1.42 +calamités calamité nom f p 2.21 2.84 0.58 1.42 +calanchaient calancher ver 0.10 0.41 0.00 0.07 ind:imp:3p; +calanchais calancher ver 0.10 0.41 0.00 0.07 ind:imp:1s; +calanche calancher ver 0.10 0.41 0.00 0.07 ind:pre:1s; +calancher calancher ver 0.10 0.41 0.00 0.14 inf; +calanché calancher ver m s 0.10 0.41 0.10 0.07 par:pas; +calandre calandre nom f s 0.09 0.68 0.09 0.68 +calanque calanque nom f s 0.40 0.41 0.14 0.14 +calanques calanque nom f p 0.40 0.41 0.27 0.27 +calant caler ver 4.19 17.77 0.02 0.68 par:pre; +calao calao nom m s 0.01 0.00 0.01 0.00 +calbar calbar nom m s 0.02 0.34 0.02 0.20 +calbars calbar nom m p 0.02 0.34 0.00 0.14 +calbombe calbombe nom f s 0.00 0.54 0.00 0.47 +calbombes calbombe nom f p 0.00 0.54 0.00 0.07 +calcaire calcaire nom m s 0.28 1.55 0.28 1.35 +calcaires calcaire adj p 0.15 1.08 0.04 0.68 +calce calcer ver 0.00 0.34 0.00 0.07 ind:pre:3s; +calcer calcer ver 0.00 0.34 0.00 0.20 inf; +calcerais calcer ver 0.00 0.34 0.00 0.07 cnd:pre:1s; +calcif calcif nom m s 0.10 0.74 0.08 0.54 +calcification calcification nom f s 0.08 0.14 0.08 0.14 +calcifié calcifier ver m s 0.07 0.00 0.05 0.00 par:pas; +calcifiée calcifier ver f s 0.07 0.00 0.01 0.00 par:pas; +calcifiée calcifié adj f s 0.02 0.00 0.01 0.00 +calcifs calcif nom m p 0.10 0.74 0.02 0.20 +calcinaient calciner ver 0.50 2.16 0.01 0.00 ind:imp:3p; +calcinait calciner ver 0.50 2.16 0.00 0.07 ind:imp:3s; +calcinant calciner ver 0.50 2.16 0.00 0.14 par:pre; +calcination calcination nom f s 0.00 0.20 0.00 0.20 +calcine calciner ver 0.50 2.16 0.04 0.00 ind:pre:3s; +calciner calciner ver 0.50 2.16 0.02 0.14 inf; +calciné calciner ver m s 0.50 2.16 0.13 0.41 par:pas; +calcinée calciné adj f s 0.34 3.18 0.13 0.68 +calcinées calciné adj f p 0.34 3.18 0.01 1.15 +calcinés calciner ver m p 0.50 2.16 0.26 0.54 par:pas; +calcite calcite nom m s 0.01 0.00 0.01 0.00 +calcium calcium nom m s 0.98 0.74 0.98 0.74 +calcul calcul nom m s 11.47 19.86 5.95 11.55 +calcula calculer ver 12.19 23.31 0.00 1.76 ind:pas:3s; +calculables calculable adj f p 0.00 0.07 0.00 0.07 +calculai calculer ver 12.19 23.31 0.00 0.34 ind:pas:1s; +calculaient calculer ver 12.19 23.31 0.02 0.20 ind:imp:3p; +calculais calculer ver 12.19 23.31 0.13 0.34 ind:imp:1s; +calculait calculer ver 12.19 23.31 0.29 1.49 ind:imp:3s; +calculant calculer ver 12.19 23.31 0.12 1.28 par:pre; +calculateur calculateur adj m s 0.52 0.54 0.30 0.20 +calculateurs calculateur nom m p 0.75 0.88 0.21 0.07 +calculatrice calculateur nom f s 0.75 0.88 0.51 0.34 +calculatrices calculatrice nom f p 0.05 0.00 0.05 0.00 +calcule calculer ver 12.19 23.31 1.96 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +calculent calculer ver 12.19 23.31 0.05 0.07 ind:pre:3p; +calculer calculer ver 12.19 23.31 3.09 5.61 inf; +calculera calculer ver 12.19 23.31 0.03 0.07 ind:fut:3s; +calculerai calculer ver 12.19 23.31 0.01 0.00 ind:fut:1s; +calculerait calculer ver 12.19 23.31 0.00 0.07 cnd:pre:3s; +calcules calculer ver 12.19 23.31 0.28 0.07 ind:pre:2s; +calculette calculette nom f s 0.20 0.20 0.14 0.14 +calculettes calculette nom f p 0.20 0.20 0.07 0.07 +calculeuse calculeux adj f s 0.01 0.00 0.01 0.00 +calculez calculer ver 12.19 23.31 0.28 0.14 imp:pre:2p;ind:pre:2p; +calculiez calculer ver 12.19 23.31 0.01 0.07 ind:imp:2p; +calculons calculer ver 12.19 23.31 0.06 0.00 imp:pre:1p;ind:pre:1p; +calculs calcul nom m p 11.47 19.86 5.52 8.31 +calculèrent calculer ver 12.19 23.31 0.00 0.27 ind:pas:3p; +calculé calculer ver m s 12.19 23.31 5.29 5.61 par:pas; +calculée calculer ver f s 12.19 23.31 0.37 2.23 par:pas; +calculées calculer ver f p 12.19 23.31 0.02 0.68 par:pas; +calculés calculer ver m p 12.19 23.31 0.18 0.81 par:pas; +calcémie calcémie nom f s 0.03 0.00 0.03 0.00 +caldarium caldarium nom m s 0.00 0.07 0.00 0.07 +caldeira caldeira nom f s 0.05 0.00 0.05 0.00 +cale_pied cale_pied nom m s 0.00 0.34 0.00 0.07 +cale_pied cale_pied nom m p 0.00 0.34 0.00 0.27 +cale cale nom f s 4.08 6.15 3.00 4.80 +calebar calebar nom m s 0.16 0.00 0.16 0.00 +calebasse calebasse nom f s 0.12 1.69 0.11 0.95 +calebasses calebasse nom f p 0.12 1.69 0.01 0.74 +calebassier calebassier nom m s 0.00 0.07 0.00 0.07 +calebombe calebombe nom f s 0.00 0.07 0.00 0.07 +calecif calecif nom m s 0.02 0.14 0.02 0.14 +calembour calembour nom m s 0.40 2.23 0.23 0.74 +calembours calembour nom m p 0.40 2.23 0.17 1.49 +calembredaine calembredaine nom f s 0.00 0.54 0.00 0.14 +calembredaines calembredaine nom f p 0.00 0.54 0.00 0.41 +calenché calencher ver m s 0.00 0.07 0.00 0.07 par:pas; +calendaire calendaire adj f s 0.01 0.00 0.01 0.00 +calendes calendes nom f p 0.07 0.61 0.07 0.61 +calendo calendo nom m s 0.00 0.07 0.00 0.07 +calendos calendos nom m 0.00 0.88 0.00 0.88 +calendre calendre nom f s 0.01 0.00 0.01 0.00 +calendrier calendrier nom m s 6.18 14.53 5.37 12.84 +calendriers calendrier nom m p 6.18 14.53 0.82 1.69 +calendula calendula nom m s 0.15 0.00 0.15 0.00 +calent caler ver 4.19 17.77 0.16 0.07 ind:pre:3p; +calepin calepin nom m s 1.17 3.72 1.00 3.11 +calepins calepin nom m p 1.17 3.72 0.17 0.61 +caler caler ver 4.19 17.77 0.77 2.50 inf; +calerai caler ver 4.19 17.77 0.01 0.00 ind:fut:1s; +calerait caler ver 4.19 17.77 0.00 0.07 cnd:pre:3s; +caleras caler ver 4.19 17.77 0.01 0.14 ind:fut:2s; +cales cale nom f p 4.08 6.15 1.08 1.35 +caleçon caleçon nom m s 7.58 6.69 4.63 4.86 +caleçonnade caleçonnade nom f s 0.00 0.07 0.00 0.07 +caleçons caleçon nom m p 7.58 6.69 2.95 1.82 +calez caler ver 4.19 17.77 0.22 2.36 imp:pre:2p;ind:pre:2p; +calf calf nom m s 0.04 0.07 0.04 0.07 +calfat calfat nom m s 0.00 0.27 0.00 0.07 +calfatage calfatage nom m s 0.00 0.07 0.00 0.07 +calfatait calfater ver 0.03 0.47 0.00 0.07 ind:imp:3s; +calfatant calfater ver 0.03 0.47 0.01 0.07 par:pre; +calfate calfater ver 0.03 0.47 0.00 0.07 ind:pre:3s; +calfater calfater ver 0.03 0.47 0.01 0.07 inf; +calfats calfat nom m p 0.00 0.27 0.00 0.20 +calfaté calfater ver m s 0.03 0.47 0.00 0.07 par:pas; +calfatée calfater ver f s 0.03 0.47 0.00 0.07 par:pas; +calfatés calfater ver m p 0.03 0.47 0.01 0.07 par:pas; +calfeutra calfeutrer ver 0.22 3.51 0.00 0.07 ind:pas:3s; +calfeutrage calfeutrage nom m s 0.14 0.00 0.14 0.00 +calfeutrai calfeutrer ver 0.22 3.51 0.00 0.07 ind:pas:1s; +calfeutraient calfeutrer ver 0.22 3.51 0.00 0.34 ind:imp:3p; +calfeutrais calfeutrer ver 0.22 3.51 0.00 0.07 ind:imp:1s; +calfeutrait calfeutrer ver 0.22 3.51 0.00 0.20 ind:imp:3s; +calfeutrant calfeutrer ver 0.22 3.51 0.00 0.07 par:pre; +calfeutre calfeutrer ver 0.22 3.51 0.14 0.34 imp:pre:2s;ind:pre:3s; +calfeutrer calfeutrer ver 0.22 3.51 0.04 0.41 inf; +calfeutres calfeutrer ver 0.22 3.51 0.00 0.07 ind:pre:2s; +calfeutré calfeutrer ver m s 0.22 3.51 0.03 0.61 par:pas; +calfeutrée calfeutrer ver f s 0.22 3.51 0.01 0.74 par:pas; +calfeutrées calfeutrer ver f p 0.22 3.51 0.00 0.27 par:pas; +calfeutrés calfeutrer ver m p 0.22 3.51 0.00 0.27 par:pas; +calibrage calibrage nom m s 0.13 0.07 0.12 0.07 +calibrages calibrage nom m p 0.13 0.07 0.01 0.00 +calibration calibration nom f s 0.07 0.00 0.07 0.00 +calibre calibre nom m s 7.32 6.15 6.63 5.00 +calibrer calibrer ver 1.27 0.61 0.27 0.20 inf; +calibres calibre nom m p 7.32 6.15 0.69 1.15 +calibrez calibrer ver 1.27 0.61 0.01 0.00 imp:pre:2p; +calibré calibrer ver m s 1.27 0.61 0.32 0.14 par:pas; +calibrée calibrer ver f s 1.27 0.61 0.04 0.07 par:pas; +calibrées calibrer ver f p 1.27 0.61 0.16 0.00 par:pas; +calibrés calibrer ver m p 1.27 0.61 0.01 0.07 par:pas; +calice calice nom m s 1.42 2.97 1.20 2.64 +calices calice nom m p 1.42 2.97 0.22 0.34 +calicot calicot nom m s 0.32 2.09 0.17 1.28 +calicots calicot nom m p 0.32 2.09 0.14 0.81 +califat califat nom m s 0.00 0.14 0.00 0.14 +calife calife nom m s 3.51 2.03 3.50 1.96 +califes calife nom m p 3.51 2.03 0.01 0.07 +californie californie nom f s 0.09 0.07 0.09 0.07 +californien californien adj m s 0.81 1.15 0.53 0.54 +californienne californienne adj f s 0.43 0.00 0.35 0.00 +californiennes californienne adj f p 0.43 0.00 0.08 0.00 +californiens californien adj m p 0.81 1.15 0.22 0.14 +californium californium nom m s 0.03 0.00 0.03 0.00 +califourchon califourchon adv 0.44 4.19 0.44 4.19 +calisson calisson nom m s 0.14 0.07 0.14 0.00 +calissons calisson nom m p 0.14 0.07 0.00 0.07 +call_girl call_girl nom f s 1.36 0.14 0.98 0.14 +call_girl call_girl nom f p 1.36 0.14 0.09 0.00 +call_girl call_girl nom f s 1.36 0.14 0.25 0.00 +call_girl call_girl nom f p 1.36 0.14 0.03 0.00 +calla calla nom f s 0.13 0.07 0.13 0.07 +calle caller ver 0.66 1.42 0.63 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +caller caller ver 0.66 1.42 0.00 0.14 inf; +calles caller ver 0.66 1.42 0.03 0.07 ind:pre:2s; +calleuse calleux adj f s 0.64 1.69 0.02 0.20 +calleuses calleux adj f p 0.64 1.69 0.25 1.22 +calleux calleux adj m 0.64 1.69 0.37 0.27 +calligrammes calligramme nom m p 0.00 0.07 0.00 0.07 +calligraphe calligraphe nom s 0.01 0.41 0.01 0.41 +calligraphiais calligraphier ver 0.04 2.16 0.00 0.07 ind:imp:1s; +calligraphiait calligraphier ver 0.04 2.16 0.00 0.07 ind:imp:3s; +calligraphiant calligraphier ver 0.04 2.16 0.00 0.20 par:pre; +calligraphie calligraphie nom f s 1.09 1.35 1.09 1.22 +calligraphient calligraphier ver 0.04 2.16 0.00 0.07 ind:pre:3p; +calligraphier calligraphier ver 0.04 2.16 0.00 0.14 inf; +calligraphies calligraphie nom f p 1.09 1.35 0.00 0.14 +calligraphiez calligraphier ver 0.04 2.16 0.01 0.00 ind:pre:2p; +calligraphique calligraphique adj f s 0.01 0.07 0.01 0.00 +calligraphiquement calligraphiquement adv 0.00 0.07 0.00 0.07 +calligraphiques calligraphique adj m p 0.01 0.07 0.00 0.07 +calligraphié calligraphier ver m s 0.04 2.16 0.01 0.61 par:pas; +calligraphiée calligraphier ver f s 0.04 2.16 0.00 0.34 par:pas; +calligraphiées calligraphier ver f p 0.04 2.16 0.01 0.07 par:pas; +calligraphiés calligraphier ver m p 0.04 2.16 0.00 0.47 par:pas; +callipyge callipyge adj f s 0.00 0.07 0.00 0.07 +callosité callosité nom f s 0.05 0.20 0.02 0.00 +callosités callosité nom f p 0.05 0.20 0.03 0.20 +calma calmer ver 168.51 45.07 0.04 2.97 ind:pas:3s; +calmai calmer ver 168.51 45.07 0.01 0.34 ind:pas:1s; +calmaient calmer ver 168.51 45.07 0.14 0.47 ind:imp:3p; +calmais calmer ver 168.51 45.07 0.21 0.20 ind:imp:1s;ind:imp:2s; +calmait calmer ver 168.51 45.07 0.58 3.38 ind:imp:3s; +calmant calmant nom m s 7.38 1.55 3.46 0.61 +calmante calmant adj f s 0.81 1.08 0.03 0.54 +calmants calmant nom m p 7.38 1.55 3.92 0.95 +calmar calmar nom m s 1.10 0.61 0.70 0.27 +calmars calmar nom m p 1.10 0.61 0.40 0.34 +calmas calmer ver 168.51 45.07 0.01 0.00 ind:pas:2s; +calme calme nom m s 105.20 53.24 105.08 52.03 +calmement calmement adv 6.74 12.43 6.74 12.43 +calment calmer ver 168.51 45.07 0.66 0.54 ind:pre:3p; +calmer calmer ver 168.51 45.07 22.86 14.66 inf;; +calmera calmer ver 168.51 45.07 2.84 0.61 ind:fut:3s; +calmerai calmer ver 168.51 45.07 0.64 0.00 ind:fut:1s; +calmeraient calmer ver 168.51 45.07 0.01 0.14 cnd:pre:3p; +calmerais calmer ver 168.51 45.07 0.18 0.07 cnd:pre:1s; +calmerait calmer ver 168.51 45.07 0.27 0.20 cnd:pre:3s; +calmeras calmer ver 168.51 45.07 0.11 0.00 ind:fut:2s; +calmerez calmer ver 168.51 45.07 0.03 0.00 ind:fut:2p; +calmerons calmer ver 168.51 45.07 0.00 0.07 ind:fut:1p; +calmeront calmer ver 168.51 45.07 0.20 0.14 ind:fut:3p; +calmes calme adj p 66.57 73.65 7.79 7.84 +calmez calmer ver 168.51 45.07 34.63 1.55 imp:pre:2p;ind:pre:2p; +calmi calmir ver m s 0.00 0.20 0.00 0.14 par:pas; +calmiez calmer ver 168.51 45.07 0.12 0.00 ind:imp:2p; +calmir calmir ver 0.00 0.20 0.00 0.07 inf; +calmons calmer ver 168.51 45.07 0.98 0.34 imp:pre:1p;ind:pre:1p; +calmos calmos ono 1.69 0.88 1.69 0.88 +calmât calmer ver 168.51 45.07 0.00 0.14 sub:imp:3s; +calmèrent calmer ver 168.51 45.07 0.00 0.74 ind:pas:3p; +calmé calmer ver m s 168.51 45.07 4.41 3.65 par:pas; +calmée calmer ver f s 168.51 45.07 1.48 3.45 par:pas; +calmées calmer ver f p 168.51 45.07 0.13 0.27 par:pas; +calmés calmer ver m p 168.51 45.07 0.35 0.47 par:pas; +calo calo nom m s 0.08 0.00 0.08 0.00 +calomel calomel nom m s 0.01 0.20 0.01 0.20 +calomniant calomnier ver 1.69 1.55 0.02 0.00 par:pre; +calomniateur calomniateur nom m s 0.12 0.27 0.01 0.07 +calomniateurs calomniateur nom m p 0.12 0.27 0.11 0.14 +calomniatrice calomniateur nom f s 0.12 0.27 0.00 0.07 +calomnie calomnie nom f s 4.49 3.92 2.71 1.69 +calomnient calomnier ver 1.69 1.55 0.17 0.20 ind:pre:3p; +calomnier calomnier ver 1.69 1.55 0.36 0.34 inf; +calomnies calomnie nom f p 4.49 3.92 1.77 2.23 +calomnieuse calomnieux adj f s 0.11 0.34 0.02 0.20 +calomnieuses calomnieux adj f p 0.11 0.34 0.06 0.00 +calomnieux calomnieux adj m p 0.11 0.34 0.03 0.14 +calomniez calomnier ver 1.69 1.55 0.05 0.00 imp:pre:2p;ind:pre:2p; +calomnié calomnier ver m s 1.69 1.55 0.34 0.47 par:pas; +calomniée calomnier ver f s 1.69 1.55 0.16 0.27 par:pas; +calomniés calomnier ver m p 1.69 1.55 0.07 0.20 par:pas; +caloporteur caloporteur nom m s 0.01 0.00 0.01 0.00 +calorie calorie nom f s 1.43 0.95 0.15 0.00 +calories calorie nom f p 1.43 0.95 1.28 0.95 +calorifique calorifique adj s 0.13 0.00 0.13 0.00 +calorifère calorifère nom m s 0.05 0.81 0.04 0.54 +calorifères calorifère nom m p 0.05 0.81 0.01 0.27 +calorifuges calorifuge nom m p 0.00 0.07 0.00 0.07 +calorique calorique adj s 0.10 0.07 0.10 0.07 +calot calot nom m s 0.23 5.81 0.12 4.19 +calotin calotin nom m s 0.00 0.14 0.00 0.07 +calotins calotin nom m p 0.00 0.14 0.00 0.07 +calots calot nom m p 0.23 5.81 0.11 1.62 +calottais calotter ver 0.04 0.54 0.00 0.07 ind:imp:1s; +calotte calotte nom f s 0.43 4.73 0.25 3.85 +calottes calotte nom f p 0.43 4.73 0.18 0.88 +calotté calotter ver m s 0.04 0.54 0.01 0.14 par:pas; +calottées calotter ver f p 0.04 0.54 0.00 0.07 par:pas; +calottés calotter ver m p 0.04 0.54 0.00 0.07 par:pas; +calquaient calquer ver 0.36 1.35 0.00 0.07 ind:imp:3p; +calquait calquer ver 0.36 1.35 0.00 0.27 ind:imp:3s; +calquant calquer ver 0.36 1.35 0.02 0.07 par:pre; +calque calquer ver 0.36 1.35 0.23 0.27 imp:pre:2s;ind:pre:3s; +calquer calquer ver 0.36 1.35 0.03 0.20 inf; +calquera calquer ver 0.36 1.35 0.00 0.07 ind:fut:3s; +calques calque nom m p 0.07 0.61 0.03 0.20 +calqué calquer ver m s 0.36 1.35 0.08 0.07 par:pas; +calquée calquer ver f s 0.36 1.35 0.00 0.20 par:pas; +calquées calquer ver f p 0.36 1.35 0.00 0.14 par:pas; +cals cal nom m p 3.54 0.68 0.04 0.34 +calte calter ver 0.47 1.62 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +caltent calter ver 0.47 1.62 0.00 0.14 ind:pre:3p; +calter calter ver 0.47 1.62 0.02 0.54 inf; +caltez calter ver 0.47 1.62 0.43 0.47 imp:pre:2p;ind:pre:2p; +calèche calèche nom f s 1.36 3.72 1.32 3.24 +calèches calèche nom f p 1.36 3.72 0.04 0.47 +calèrent caler ver 4.19 17.77 0.00 0.14 ind:pas:3p; +caltons calter ver 0.47 1.62 0.00 0.07 imp:pre:1p; +caltés calter ver m p 0.47 1.62 0.00 0.14 par:pas; +calé caler ver m s 4.19 17.77 1.39 4.46 par:pas; +calédonien calédonien adj m s 0.02 0.14 0.02 0.07 +calédonienne calédonienne adj f s 0.01 0.00 0.01 0.00 +calédoniens calédonien nom m p 0.07 0.14 0.07 0.14 +calée caler ver f s 4.19 17.77 0.25 1.49 par:pas; +calées caler ver f p 4.19 17.77 0.00 0.20 par:pas; +caléidoscope caléidoscope nom m s 0.11 0.00 0.11 0.00 +calumet calumet nom m s 0.24 0.27 0.23 0.20 +calumets calumet nom m p 0.24 0.27 0.01 0.07 +calés caler ver m p 4.19 17.77 0.19 0.68 par:pas; +calus calus nom m 0.00 0.07 0.00 0.07 +calva calva nom m s 0.03 2.36 0.03 2.23 +calvados calvados nom m 0.02 1.35 0.02 1.35 +calvaire calvaire nom m s 2.19 8.24 2.19 7.70 +calvaires calvaire nom m p 2.19 8.24 0.00 0.54 +calvas calva nom m p 0.03 2.36 0.00 0.14 +calville calville nom f s 0.04 0.14 0.04 0.07 +calvilles calville nom f p 0.04 0.14 0.00 0.07 +calvinisme calvinisme nom m s 0.10 0.07 0.10 0.07 +calviniste calviniste adj f s 0.12 0.34 0.11 0.14 +calvinistes calviniste adj p 0.12 0.34 0.01 0.20 +calvitie calvitie nom f s 1.02 2.84 1.00 2.77 +calvities calvitie nom f p 1.02 2.84 0.01 0.07 +calypso calypso nom m s 0.05 0.20 0.05 0.20 +cama camer ver 3.35 1.08 0.20 0.14 ind:pas:3s; +camaïeu camaïeu nom m s 0.00 0.34 0.00 0.34 +camaïeux camaïeux nom m p 0.00 0.14 0.00 0.14 +camail camail nom m s 0.00 0.61 0.00 0.54 +camails camail nom m p 0.00 0.61 0.00 0.07 +camarade camarade nom s 77.81 98.99 47.32 38.85 +camaraderie camaraderie nom f s 1.23 3.58 1.22 3.24 +camaraderies camaraderie nom f p 1.23 3.58 0.01 0.34 +camarades camarade nom p 77.81 98.99 30.50 60.14 +camard camard adj m s 0.01 0.47 0.01 0.27 +camarde camard nom f s 0.00 0.20 0.00 0.20 +camards camard adj m p 0.01 0.47 0.00 0.07 +camarero camarero nom m s 0.00 0.14 0.00 0.07 +camareros camarero nom m p 0.00 0.14 0.00 0.07 +camarguais camarguais adj m 0.00 0.14 0.00 0.14 +camarguaises camarguais nom f p 0.00 0.07 0.00 0.07 +camarilla camarilla nom f s 0.00 0.07 0.00 0.07 +camarin camarin nom m s 0.00 0.34 0.00 0.14 +camarins camarin nom m p 0.00 0.34 0.00 0.20 +camarluche camarluche nom m s 0.00 0.07 0.00 0.07 +camaro camaro nom m s 0.38 0.00 0.38 0.00 +camber camber ver 0.09 0.00 0.09 0.00 inf; +cambiste cambiste nom s 0.01 0.00 0.01 0.00 +cambodgien cambodgien adj m s 0.16 0.14 0.06 0.00 +cambodgienne cambodgien adj f s 0.16 0.14 0.07 0.07 +cambodgiennes cambodgien adj f p 0.16 0.14 0.01 0.00 +cambodgiens cambodgien nom m p 0.09 0.47 0.07 0.00 +cambouis cambouis nom m 0.38 4.59 0.38 4.59 +cambra cambrer ver 1.35 3.51 0.01 0.34 ind:pas:3s; +cambrait cambrer ver 1.35 3.51 0.00 0.41 ind:imp:3s; +cambrant cambrer ver 1.35 3.51 0.00 0.27 par:pre; +cambre cambrer ver 1.35 3.51 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cambrement cambrement nom m s 0.00 0.14 0.00 0.14 +cambrent cambrer ver 1.35 3.51 0.00 0.14 ind:pre:3p; +cambrer cambrer ver 1.35 3.51 0.69 0.20 inf; +cambrera cambrer ver 1.35 3.51 0.00 0.07 ind:fut:3s; +cambres cambrer ver 1.35 3.51 0.00 0.34 ind:pre:2s; +cambrez cambrer ver 1.35 3.51 0.31 0.00 imp:pre:2p; +cambrienne cambrien adj f s 0.04 0.00 0.04 0.00 +cambriolage cambriolage nom m s 8.05 2.77 6.60 2.03 +cambriolages cambriolage nom m p 8.05 2.77 1.45 0.74 +cambriolaient cambrioler ver 6.80 1.15 0.02 0.07 ind:imp:3p; +cambriolais cambrioler ver 6.80 1.15 0.05 0.07 ind:imp:1s;ind:imp:2s; +cambriolant cambrioler ver 6.80 1.15 0.05 0.00 par:pre; +cambriole cambrioler ver 6.80 1.15 0.49 0.14 ind:pre:1s;ind:pre:3s; +cambriolent cambrioler ver 6.80 1.15 0.09 0.14 ind:pre:3p; +cambrioler cambrioler ver 6.80 1.15 2.27 0.27 inf; +cambrioles cambrioler ver 6.80 1.15 0.06 0.00 ind:pre:2s; +cambrioleur cambrioleur nom m s 4.70 2.36 3.17 1.08 +cambrioleurs cambrioleur nom m p 4.70 2.36 1.41 1.28 +cambrioleuse cambrioleur nom f s 4.70 2.36 0.12 0.00 +cambriolez cambrioler ver 6.80 1.15 0.06 0.00 imp:pre:2p;ind:pre:2p; +cambrioliez cambrioler ver 6.80 1.15 0.02 0.00 ind:imp:2p; +cambriolons cambrioler ver 6.80 1.15 0.01 0.00 ind:pre:1p; +cambriolé cambrioler ver m s 6.80 1.15 2.69 0.27 par:pas; +cambriolée cambrioler ver f s 6.80 1.15 0.34 0.07 par:pas; +cambriolées cambrioler ver f p 6.80 1.15 0.02 0.14 par:pas; +cambriolés cambrioler ver m p 6.80 1.15 0.62 0.00 par:pas; +cambrousse cambrousse nom f s 1.04 1.96 1.04 1.89 +cambrousses cambrousse nom f p 1.04 1.96 0.00 0.07 +cambré cambré adj m s 0.32 2.77 0.19 0.68 +cambrée cambré adj f s 0.32 2.77 0.14 1.01 +cambrées cambrer ver f p 1.35 3.51 0.00 0.14 par:pas; +cambrure cambrure nom f s 0.20 1.01 0.19 0.95 +cambrures cambrure nom f p 0.20 1.01 0.01 0.07 +cambrés cambré adj m p 0.32 2.77 0.00 0.95 +cambuse cambuse nom f s 0.06 2.50 0.06 2.43 +cambuses cambuse nom f p 0.06 2.50 0.00 0.07 +cambusier cambusier nom m s 0.02 0.00 0.02 0.00 +cambute cambuter ver 0.00 0.27 0.00 0.20 ind:pre:3s; +cambuté cambuter ver m s 0.00 0.27 0.00 0.07 par:pas; +came came nom f s 16.77 4.73 16.50 4.59 +camellia camellia nom m s 0.01 0.00 0.01 0.00 +camelot camelot nom m s 0.48 2.50 0.47 1.28 +camelote camelote nom f s 3.59 4.80 3.59 4.46 +camelotes camelote nom f p 3.59 4.80 0.00 0.34 +camelots camelot nom m p 0.48 2.50 0.01 1.22 +camembert camembert nom m s 0.80 3.85 0.79 3.18 +camemberts camembert nom m p 0.80 3.85 0.01 0.68 +cament camer ver 3.35 1.08 0.08 0.07 ind:pre:3p; +camer camer ver 3.35 1.08 0.30 0.00 inf; +camera camer ver 3.35 1.08 1.55 0.41 ind:fut:3s; +cameraman cameraman nom m s 1.68 0.68 1.54 0.34 +cameramen cameraman nom m p 1.68 0.68 0.14 0.34 +cameras camer ver 3.35 1.08 0.59 0.14 ind:fut:2s; +camerounais camerounais adj m 0.02 0.20 0.01 0.20 +camerounaise camerounais adj f s 0.02 0.20 0.01 0.00 +cames came nom f p 16.77 4.73 0.28 0.14 +camez camer ver 3.35 1.08 0.01 0.00 ind:pre:2p; +camion_benne camion_benne nom m s 0.06 0.14 0.03 0.00 +camion_citerne camion_citerne nom m s 0.70 0.47 0.62 0.34 +camion_grue camion_grue nom m s 0.00 0.14 0.00 0.14 +camion camion nom m s 59.46 50.74 50.06 30.27 +camionnage camionnage nom m s 0.18 0.00 0.18 0.00 +camionnette camionnette nom f s 10.77 17.97 10.05 15.54 +camionnettes camionnette nom f p 10.77 17.97 0.72 2.43 +camionneur camionneur nom m s 2.17 2.36 1.17 1.62 +camionneurs camionneur nom m p 2.17 2.36 1.00 0.74 +camionnée camionner ver f s 0.00 0.07 0.00 0.07 par:pas; +camion_benne camion_benne nom m p 0.06 0.14 0.03 0.14 +camion_citerne camion_citerne nom m p 0.70 0.47 0.08 0.14 +camions camion nom m p 59.46 50.74 9.41 20.47 +camisards camisard nom m p 0.00 0.07 0.00 0.07 +camisole camisole nom f s 2.62 1.69 2.52 1.35 +camisoles camisole nom f p 2.62 1.69 0.10 0.34 +camomille camomille nom f s 1.16 0.68 1.16 0.54 +camomilles camomille nom f p 1.16 0.68 0.00 0.14 +camorra camorra nom f s 0.20 0.07 0.20 0.07 +camoufla camoufler ver 2.19 8.65 0.00 0.14 ind:pas:3s; +camouflage camouflage nom m s 2.43 2.16 2.41 1.82 +camouflages camouflage nom m p 2.43 2.16 0.02 0.34 +camouflaient camoufler ver 2.19 8.65 0.01 0.07 ind:imp:3p; +camouflais camoufler ver 2.19 8.65 0.00 0.07 ind:imp:2s; +camouflait camoufler ver 2.19 8.65 0.02 0.68 ind:imp:3s; +camouflant camoufler ver 2.19 8.65 0.02 0.14 par:pre; +camoufle camoufler ver 2.19 8.65 0.30 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +camouflent camoufler ver 2.19 8.65 0.18 0.27 ind:pre:3p; +camoufler camoufler ver 2.19 8.65 0.80 2.23 inf; +camouflerait camoufler ver 2.19 8.65 0.00 0.07 cnd:pre:3s; +camouflet camouflet nom m s 0.02 0.61 0.02 0.41 +camouflets camouflet nom m p 0.02 0.61 0.00 0.20 +camouflez camoufler ver 2.19 8.65 0.08 0.07 imp:pre:2p;ind:pre:2p; +camouflé camoufler ver m s 2.19 8.65 0.55 1.28 par:pas; +camouflée camoufler ver f s 2.19 8.65 0.18 1.49 par:pas; +camouflées camoufler ver f p 2.19 8.65 0.01 0.54 par:pas; +camouflés camoufler ver m p 2.19 8.65 0.04 1.15 par:pas; +camp camp nom m s 114.93 97.23 105.92 75.61 +campa camper ver 6.16 13.85 0.06 0.68 ind:pas:3s; +campagnard campagnard adj m s 0.88 6.42 0.32 1.55 +campagnarde campagnard adj f s 0.88 6.42 0.24 2.84 +campagnardes campagnard adj f p 0.88 6.42 0.28 1.08 +campagnards campagnard nom m p 0.16 0.74 0.06 0.27 +campagne campagne nom f s 51.12 107.23 48.61 94.73 +campagnes campagne nom f p 51.12 107.23 2.51 12.50 +campagnol campagnol nom m s 0.03 0.41 0.03 0.27 +campagnols campagnol nom m p 0.03 0.41 0.00 0.14 +campaient camper ver 6.16 13.85 0.04 0.95 ind:imp:3p; +campais camper ver 6.16 13.85 0.04 0.07 ind:imp:1s; +campait camper ver 6.16 13.85 0.15 1.76 ind:imp:3s; +campanaire campanaire adj m s 0.00 0.07 0.00 0.07 +campanelles campanelle nom f p 0.00 0.07 0.00 0.07 +campanile campanile nom m s 0.02 2.09 0.02 1.42 +campaniles campanile nom m p 0.02 2.09 0.00 0.68 +campant camper ver 6.16 13.85 0.04 0.41 par:pre; +campanule campanule nom f s 0.18 0.47 0.11 0.00 +campanules campanule nom f p 0.18 0.47 0.07 0.47 +campe camper ver 6.16 13.85 0.89 1.49 ind:pre:1s;ind:pre:3s; +campement campement nom m s 2.52 6.49 2.46 5.34 +campements campement nom m p 2.52 6.49 0.07 1.15 +campent camper ver 6.16 13.85 0.51 0.54 ind:pre:3p; +camper camper ver 6.16 13.85 3.02 3.92 inf; +campera camper ver 6.16 13.85 0.11 0.00 ind:fut:3s; +camperai camper ver 6.16 13.85 0.02 0.00 ind:fut:1s; +camperait camper ver 6.16 13.85 0.01 0.14 cnd:pre:3s; +camperons camper ver 6.16 13.85 0.10 0.14 ind:fut:1p; +campes camper ver 6.16 13.85 0.16 0.07 ind:pre:2s; +campeur campeur nom m s 0.68 4.26 0.13 0.47 +campeurs campeur nom m p 0.68 4.26 0.49 3.72 +campeuse campeur nom f s 0.68 4.26 0.05 0.00 +campeuses campeur nom f p 0.68 4.26 0.00 0.07 +campez camper ver 6.16 13.85 0.08 0.00 imp:pre:2p;ind:pre:2p; +camphre camphre nom m s 0.26 0.74 0.26 0.74 +camphrier camphrier nom m s 0.00 0.14 0.00 0.14 +camphrée camphré adj f s 0.00 0.14 0.00 0.07 +camphrées camphré adj f p 0.00 0.14 0.00 0.07 +camping_car camping_car nom m s 1.06 0.00 1.01 0.00 +camping_car camping_car nom m p 1.06 0.00 0.05 0.00 +camping_gaz camping_gaz nom m 0.00 0.47 0.00 0.47 +camping camping nom m s 4.20 3.24 4.11 2.97 +campings camping nom m p 4.20 3.24 0.09 0.27 +campions camper ver 6.16 13.85 0.02 0.20 ind:imp:1p; +campo campo nom m s 0.58 1.49 0.47 1.49 +campâmes camper ver 6.16 13.85 0.00 0.07 ind:pas:1p; +campons camper ver 6.16 13.85 0.16 0.14 imp:pre:1p;ind:pre:1p; +campos campo nom m p 0.58 1.49 0.11 0.00 +camps camp nom m p 114.93 97.23 9.01 21.62 +campèrent camper ver 6.16 13.85 0.01 0.00 ind:pas:3p; +campé camper ver m s 6.16 13.85 0.74 1.96 par:pas; +campêche campêche nom m s 0.00 0.14 0.00 0.14 +campée camper ver f s 6.16 13.85 0.00 0.81 par:pas; +campées camper ver f p 6.16 13.85 0.00 0.14 par:pas; +campés camper ver m p 6.16 13.85 0.01 0.41 par:pas; +campus campus nom m 6.04 1.62 6.04 1.62 +camé camé nom m s 2.69 0.54 1.71 0.34 +camée camée nom m s 0.58 1.01 0.47 0.88 +camées camée nom m p 0.58 1.01 0.11 0.14 +camélia camélia nom m s 0.42 2.23 0.04 0.27 +camélias camélia nom m p 0.42 2.23 0.38 1.96 +camélidé camélidé nom m s 0.00 0.14 0.00 0.07 +camélidés camélidé nom m p 0.00 0.14 0.00 0.07 +caméléon caméléon nom m s 2.51 0.81 2.35 0.68 +caméléons caméléon nom m p 2.51 0.81 0.16 0.14 +caméra_espion caméra_espion nom f s 0.01 0.00 0.01 0.00 +caméra caméra nom f s 56.18 6.35 41.64 4.39 +caméraman caméraman nom m s 1.28 0.07 1.14 0.07 +caméramans caméraman nom m p 1.28 0.07 0.14 0.00 +caméras caméra nom f p 56.18 6.35 14.54 1.96 +camériste camériste nom f s 0.18 1.01 0.17 0.81 +caméristes camériste nom f p 0.18 1.01 0.01 0.20 +camés camé nom m p 2.69 0.54 0.97 0.20 +camus camus nom m 0.16 0.07 0.16 0.07 +caméscope caméscope nom m s 0.78 0.00 0.74 0.00 +caméscopes caméscope nom m p 0.78 0.00 0.04 0.00 +camuse camus adj f s 0.14 0.61 0.14 0.07 +cana caner ver 0.86 1.55 0.01 0.07 ind:pas:3s; +canada canada nom f s 0.03 0.54 0.03 0.54 +canadair canadair nom m s 0.26 0.00 0.10 0.00 +canadairs canadair nom m p 0.26 0.00 0.16 0.00 +canadian_river canadian_river nom s 0.00 0.07 0.00 0.07 +canadien canadien adj m s 3.57 4.93 1.86 2.09 +canadienne canadien adj f s 3.57 4.93 0.75 1.35 +canadiennes canadien adj f p 3.57 4.93 0.41 0.68 +canadiens canadien nom m p 2.10 5.74 1.36 0.47 +canado canado adv 0.02 0.00 0.02 0.00 +canaille canaille nom f s 6.09 2.91 4.70 2.16 +canaillement canaillement adv 0.00 0.07 0.00 0.07 +canaillerie canaillerie nom f s 0.00 0.41 0.00 0.41 +canailles canaille nom f p 6.09 2.91 1.39 0.74 +canal canal nom m s 17.11 27.43 14.20 20.95 +canalicules canalicule nom m p 0.00 0.14 0.00 0.14 +canalisa canaliser ver 1.88 1.96 0.00 0.07 ind:pas:3s; +canalisaient canaliser ver 1.88 1.96 0.00 0.14 ind:imp:3p; +canalisait canaliser ver 1.88 1.96 0.00 0.20 ind:imp:3s; +canalisateur canalisateur nom m s 0.01 0.00 0.01 0.00 +canalisation canalisation nom f s 1.47 1.28 0.51 0.47 +canalisations canalisation nom f p 1.47 1.28 0.96 0.81 +canalise canaliser ver 1.88 1.96 0.50 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +canalisent canaliser ver 1.88 1.96 0.01 0.20 ind:pre:3p; +canaliser canaliser ver 1.88 1.96 1.06 0.74 inf; +canalisez canaliser ver 1.88 1.96 0.06 0.00 imp:pre:2p;ind:pre:2p; +canalisons canaliser ver 1.88 1.96 0.02 0.07 ind:pre:1p; +canalisé canaliser ver m s 1.88 1.96 0.11 0.27 par:pas; +canalisée canaliser ver f s 1.88 1.96 0.09 0.14 par:pas; +canalisées canaliser ver f p 1.88 1.96 0.00 0.14 par:pas; +canalisés canaliser ver m p 1.88 1.96 0.02 0.00 par:pas; +cananéen cananéen adj m s 0.00 0.07 0.00 0.07 +canapé_lit canapé_lit nom m s 0.02 1.15 0.00 1.15 +canapé canapé nom m s 18.58 20.27 17.66 17.97 +canapé_lit canapé_lit nom m p 0.02 1.15 0.02 0.00 +canapés canapé nom m p 18.58 20.27 0.93 2.30 +canaque canaque adj m s 0.00 0.34 0.00 0.34 +canaques canaque nom p 0.00 0.07 0.00 0.07 +canard canard nom m s 23.05 29.05 15.46 16.15 +canardaient canarder ver 1.36 1.35 0.05 0.07 ind:imp:3p; +canardait canarder ver 1.36 1.35 0.04 0.14 ind:imp:3s; +canarde canarder ver 1.36 1.35 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +canardeaux canardeau nom m p 0.00 0.07 0.00 0.07 +canardent canarder ver 1.36 1.35 0.08 0.20 ind:pre:3p; +canarder canarder ver 1.36 1.35 0.63 0.47 inf; +canardera canarder ver 1.36 1.35 0.02 0.00 ind:fut:3s; +canarderais canarder ver 1.36 1.35 0.01 0.00 cnd:pre:2s; +canarderont canarder ver 1.36 1.35 0.01 0.00 ind:fut:3p; +canardez canarder ver 1.36 1.35 0.03 0.00 imp:pre:2p; +canards canard nom m p 23.05 29.05 6.66 11.49 +canardé canarder ver m s 1.36 1.35 0.18 0.14 par:pas; +canardée canarder ver f s 1.36 1.35 0.00 0.07 par:pas; +canardés canarder ver m p 1.36 1.35 0.02 0.14 par:pas; +canari canari nom m s 2.72 2.77 1.51 1.49 +canaris canari nom m p 2.72 2.77 1.21 1.28 +canas caner ver 0.86 1.55 0.00 0.07 ind:pas:2s; +canasson canasson nom m s 0.98 1.49 0.58 1.01 +canassons canasson nom m p 0.98 1.49 0.40 0.47 +canasta canasta nom f s 0.21 0.68 0.21 0.68 +canaux canal nom m p 17.11 27.43 2.90 6.49 +cancan cancan nom m s 1.29 1.76 0.51 0.88 +cancanaient cancaner ver 0.31 0.68 0.00 0.14 ind:imp:3p; +cancanait cancaner ver 0.31 0.68 0.00 0.07 ind:imp:3s; +cancanant cancaner ver 0.31 0.68 0.00 0.20 par:pre; +cancane cancaner ver 0.31 0.68 0.03 0.00 ind:pre:3s; +cancaner cancaner ver 0.31 0.68 0.25 0.27 inf; +cancaneries cancanerie nom f p 0.00 0.07 0.00 0.07 +cancanes cancaner ver 0.31 0.68 0.03 0.00 ind:pre:2s; +cancanier cancanier nom m s 0.01 0.07 0.01 0.00 +cancanière cancanier adj f s 0.10 0.14 0.10 0.07 +cancanières cancanier nom f p 0.01 0.07 0.00 0.07 +cancans cancan nom m p 1.29 1.76 0.78 0.88 +cancel cancel nom m s 0.27 0.00 0.27 0.00 +cancer cancer nom m s 23.15 9.46 22.34 8.78 +cancers cancer nom m p 23.15 9.46 0.81 0.68 +canche canche nom f s 0.01 0.00 0.01 0.00 +cancoillotte cancoillotte nom f s 0.00 0.20 0.00 0.20 +cancre cancre nom m s 0.97 3.78 0.77 2.50 +cancrelat cancrelat nom m s 0.23 0.95 0.14 0.41 +cancrelats cancrelat nom m p 0.23 0.95 0.09 0.54 +cancres cancre nom m p 0.97 3.78 0.20 1.28 +cancéreuse cancéreux adj f s 0.62 0.74 0.22 0.34 +cancéreuses cancéreux adj f p 0.62 0.74 0.25 0.14 +cancéreux cancéreux adj m 0.62 0.74 0.16 0.27 +cancérigène cancérigène adj s 0.38 0.27 0.30 0.07 +cancérigènes cancérigène adj p 0.38 0.27 0.08 0.20 +cancériser cancériser ver 0.00 0.07 0.00 0.07 inf; +cancérogène cancérogène adj m s 0.02 0.00 0.02 0.00 +cancérologie cancérologie nom f s 0.01 0.00 0.01 0.00 +cancérologue cancérologue nom s 0.12 0.00 0.09 0.00 +cancérologues cancérologue nom p 0.12 0.00 0.04 0.00 +candeur candeur nom f s 1.27 4.59 1.27 4.46 +candeurs candeur nom f p 1.27 4.59 0.00 0.14 +candi candi adj m s 0.24 0.34 0.24 0.27 +candida candida nom m s 0.13 0.00 0.13 0.00 +candidat candidat nom m s 17.70 8.04 9.63 2.84 +candidate candidat nom f s 17.70 8.04 1.80 0.74 +candidates candidat nom f p 17.70 8.04 0.60 0.47 +candidats candidat nom m p 17.70 8.04 5.67 3.99 +candidature candidature nom f s 2.71 1.76 2.15 1.42 +candidatures candidature nom f p 2.71 1.76 0.56 0.34 +candide candide adj s 0.96 4.73 0.89 3.92 +candidement candidement adv 0.00 0.47 0.00 0.47 +candides candide adj p 0.96 4.73 0.07 0.81 +candidose candidose nom f s 0.04 0.00 0.04 0.00 +candie candir ver f s 0.00 0.74 0.00 0.68 par:pas; +candis candi adj m p 0.24 0.34 0.00 0.07 +candélabre candélabre nom m s 0.50 3.24 0.34 1.42 +candélabres candélabre nom m p 0.50 3.24 0.16 1.82 +cane canard nom f s 23.05 29.05 0.94 1.35 +canebière canebière nom f s 0.00 1.28 0.00 1.28 +canepetière canepetière nom f s 0.00 0.07 0.00 0.07 +caner caner ver 0.86 1.55 0.04 0.47 inf; +caneras caner ver 0.86 1.55 0.00 0.07 ind:fut:2s; +canes caner ver 0.86 1.55 0.11 0.20 ind:pre:2s; +canetille canetille nom f s 0.00 0.07 0.00 0.07 +caneton caneton nom m s 0.69 1.82 0.48 1.15 +canetons caneton nom m p 0.69 1.82 0.21 0.68 +canette canette nom f s 1.95 6.62 1.10 3.18 +canettes canette nom f p 1.95 6.62 0.85 3.45 +canevas canevas nom m 0.32 1.35 0.32 1.35 +canfouine canfouine nom f s 0.00 0.41 0.00 0.41 +cangue cangue nom f s 0.00 0.07 0.00 0.07 +caniche caniche nom m s 2.56 3.99 2.00 3.72 +caniches caniche nom m p 2.56 3.99 0.56 0.27 +caniculaire caniculaire adj s 0.02 0.54 0.02 0.34 +caniculaires caniculaire adj m p 0.02 0.54 0.00 0.20 +canicule canicule nom f s 0.38 3.58 0.35 3.31 +canicules canicule nom f p 0.38 3.58 0.02 0.27 +canidés canidé nom m p 0.07 0.00 0.07 0.00 +canif canif nom m s 0.95 4.93 0.91 4.32 +canifs canif nom m p 0.95 4.93 0.04 0.61 +canin canin adj m s 0.76 0.61 0.56 0.61 +canine canine adj f s 0.54 1.08 0.41 1.01 +canines canine nom f p 0.47 1.15 0.25 0.47 +caninette caninette nom f s 0.00 0.07 0.00 0.07 +canins canin adj m p 0.76 0.61 0.20 0.00 +canisses canisse nom f p 0.00 0.07 0.00 0.07 +caniveau caniveau nom m s 2.94 7.16 2.86 5.27 +caniveaux caniveau nom m p 2.94 7.16 0.08 1.89 +canna canna nom m s 0.10 0.54 0.10 0.00 +cannabis cannabis nom m 1.05 0.14 1.05 0.14 +cannage cannage nom m s 0.00 0.20 0.00 0.20 +cannait canner ver 0.31 2.57 0.00 0.14 ind:imp:3s; +cannant canner ver 0.31 2.57 0.00 0.07 par:pre; +cannas canna nom m p 0.10 0.54 0.00 0.54 +canne_épée canne_épée nom f s 0.01 0.54 0.01 0.34 +canne canne nom f s 10.91 34.32 10.21 26.62 +canneberge canneberge nom f s 0.46 0.00 0.17 0.00 +canneberges canneberge nom f p 0.46 0.00 0.29 0.00 +canneliers cannelier nom m p 0.00 0.20 0.00 0.20 +cannelle cannelle nom f s 1.38 2.97 1.38 2.97 +cannelloni cannelloni nom m s 0.93 0.00 0.67 0.00 +cannellonis cannelloni nom m p 0.93 0.00 0.27 0.00 +cannelé cannelé adj m s 0.01 0.20 0.01 0.00 +cannelée canneler ver f s 0.01 0.07 0.01 0.00 par:pas; +cannelées cannelé adj f p 0.01 0.20 0.00 0.07 +cannelure cannelure nom f s 0.18 0.95 0.01 0.27 +cannelures cannelure nom f p 0.18 0.95 0.17 0.68 +cannelés cannelé adj m p 0.01 0.20 0.00 0.07 +canner canner ver 0.31 2.57 0.28 0.68 inf; +canneraient canner ver 0.31 2.57 0.00 0.07 cnd:pre:3p; +canne_épée canne_épée nom f p 0.01 0.54 0.00 0.20 +cannes canne nom f p 10.91 34.32 0.71 7.70 +cannette cannette nom f s 0.66 0.14 0.42 0.14 +cannettes cannette nom f p 0.66 0.14 0.25 0.00 +cannibale cannibale nom s 4.06 0.95 1.11 0.27 +cannibales cannibale nom p 4.06 0.95 2.95 0.68 +cannibalisme cannibalisme nom m s 1.61 0.47 1.61 0.47 +canné canner ver m s 0.31 2.57 0.02 0.68 par:pas; +cannée canné adj f s 0.00 1.28 0.00 0.47 +cannées canné adj f p 0.00 1.28 0.00 0.27 +canon canon nom m s 22.22 48.99 14.89 28.65 +canoniale canonial adj f s 0.00 0.14 0.00 0.07 +canoniales canonial adj f p 0.00 0.14 0.00 0.07 +canonique canonique adj s 0.22 0.68 0.22 0.47 +canoniquement canoniquement adv 0.00 0.07 0.00 0.07 +canoniques canonique adj f p 0.22 0.68 0.00 0.20 +canonisation canonisation nom f s 0.06 0.47 0.05 0.34 +canonisations canonisation nom f p 0.06 0.47 0.01 0.14 +canoniser canoniser ver 0.61 1.01 0.22 0.14 inf; +canonisez canoniser ver 0.61 1.01 0.10 0.07 imp:pre:2p; +canonisé canoniser ver m s 0.61 1.01 0.25 0.27 par:pas; +canonisée canoniser ver f s 0.61 1.01 0.04 0.27 par:pas; +canonisés canoniser ver m p 0.61 1.01 0.00 0.27 par:pas; +canonnade canonnade nom f s 0.04 2.70 0.04 2.57 +canonnades canonnade nom f p 0.04 2.70 0.00 0.14 +canonnage canonnage nom m s 0.01 0.00 0.01 0.00 +canonnait canonner ver 0.01 0.54 0.00 0.07 ind:imp:3s; +canonner canonner ver 0.01 0.54 0.00 0.20 inf; +canonnier canonnier nom m s 0.39 0.95 0.16 0.47 +canonniers canonnier nom m p 0.39 0.95 0.23 0.47 +canonnière canonnière nom f s 0.34 0.61 0.31 0.41 +canonnières canonnière nom f p 0.34 0.61 0.03 0.20 +canonné canonner ver m s 0.01 0.54 0.00 0.14 par:pas; +canonnées canonner ver f p 0.01 0.54 0.00 0.07 par:pas; +canonnés canonner ver m p 0.01 0.54 0.01 0.07 par:pas; +canons canon nom m p 22.22 48.99 7.34 20.34 +canope canope nom m s 0.09 0.00 0.07 0.00 +canopes canope nom m p 0.09 0.00 0.02 0.00 +canot canot nom m s 4.58 9.19 3.31 7.16 +canotage canotage nom m s 0.04 0.34 0.04 0.34 +canotaient canoter ver 0.01 0.47 0.00 0.07 ind:imp:3p; +canote canoter ver 0.01 0.47 0.00 0.07 ind:pre:3s; +canotent canoter ver 0.01 0.47 0.01 0.00 ind:pre:3p; +canoter canoter ver 0.01 0.47 0.00 0.20 inf; +canoteurs canoteur nom m p 0.00 0.07 0.00 0.07 +canotier canotier nom m s 0.16 3.04 0.00 2.36 +canotiers canotier nom m p 0.16 3.04 0.16 0.68 +canotâmes canoter ver 0.01 0.47 0.00 0.07 ind:pas:1p; +canots canot nom m p 4.58 9.19 1.27 2.03 +canoté canoter ver m s 0.01 0.47 0.00 0.07 par:pas; +canoë canoë nom m s 1.95 1.49 1.73 1.22 +canoës canoë nom m p 1.95 1.49 0.22 0.27 +cantabile cantabile nom m s 0.02 0.61 0.02 0.61 +cantabrique cantabrique adj f s 0.00 0.20 0.00 0.07 +cantabriques cantabrique adj p 0.00 0.20 0.00 0.14 +cantal cantal nom m s 0.00 0.27 0.00 0.27 +cantaloup cantaloup nom m s 0.07 0.07 0.06 0.00 +cantaloups cantaloup nom m p 0.07 0.07 0.01 0.07 +cantate cantate nom f s 0.25 0.54 0.24 0.27 +cantates cantate nom f p 0.25 0.54 0.01 0.27 +cantatrice cantatrice nom f s 0.59 2.43 0.55 1.76 +cantatrices cantatrice nom f p 0.59 2.43 0.04 0.68 +canter canter nom m s 0.02 0.27 0.02 0.27 +canthare canthare nom m s 0.00 0.20 0.00 0.14 +canthares canthare nom m p 0.00 0.20 0.00 0.07 +cantharide cantharide nom f s 0.07 0.14 0.06 0.07 +cantharides cantharide nom f p 0.07 0.14 0.01 0.07 +cantilever cantilever nom m s 0.07 0.00 0.07 0.00 +cantilène cantilène nom f s 0.11 0.34 0.11 0.34 +cantina cantiner ver 0.33 0.34 0.33 0.00 ind:pas:3s; +cantinaient cantiner ver 0.33 0.34 0.00 0.07 ind:imp:3p; +cantine cantine nom f s 4.23 12.16 3.76 10.61 +cantiner cantiner ver 0.33 0.34 0.00 0.27 inf; +cantines cantine nom f p 4.23 12.16 0.47 1.55 +cantinier cantinier nom m s 0.23 1.15 0.05 0.07 +cantiniers cantinier nom m p 0.23 1.15 0.14 0.20 +cantinière cantinier nom f s 0.23 1.15 0.04 0.68 +cantinières cantinier nom f p 0.23 1.15 0.01 0.20 +cantique cantique nom m s 1.68 6.62 0.83 2.50 +cantiques cantique nom m p 1.68 6.62 0.84 4.12 +canton canton nom m s 0.36 4.73 0.34 3.58 +cantonade cantonade nom f s 0.01 3.45 0.01 3.45 +cantonais cantonais adj m s 0.28 0.00 0.27 0.00 +cantonaise cantonais adj f s 0.28 0.00 0.02 0.00 +cantonal cantonal adj m s 0.34 0.34 0.00 0.07 +cantonale cantonal adj f s 0.34 0.34 0.34 0.07 +cantonales cantonal adj f p 0.34 0.34 0.00 0.20 +cantonna cantonner ver 0.76 5.00 0.00 0.14 ind:pas:3s; +cantonnai cantonner ver 0.76 5.00 0.00 0.14 ind:pas:1s; +cantonnaient cantonner ver 0.76 5.00 0.10 0.20 ind:imp:3p; +cantonnais cantonner ver 0.76 5.00 0.04 0.00 ind:imp:1s; +cantonnait cantonner ver 0.76 5.00 0.00 0.34 ind:imp:3s; +cantonnant cantonner ver 0.76 5.00 0.01 0.14 par:pre; +cantonne cantonner ver 0.76 5.00 0.21 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cantonnement cantonnement nom m s 0.81 5.20 0.68 3.24 +cantonnements cantonnement nom m p 0.81 5.20 0.14 1.96 +cantonnent cantonner ver 0.76 5.00 0.00 0.27 ind:pre:3p; +cantonner cantonner ver 0.76 5.00 0.08 0.47 inf; +cantonneraient cantonner ver 0.76 5.00 0.00 0.07 cnd:pre:3p; +cantonnez cantonner ver 0.76 5.00 0.03 0.00 imp:pre:2p;ind:pre:2p; +cantonnier cantonnier nom m s 0.19 3.04 0.17 1.96 +cantonniers cantonnier nom m p 0.19 3.04 0.03 1.01 +cantonnières cantonnier nom f p 0.19 3.04 0.00 0.07 +cantonnons cantonner ver 0.76 5.00 0.01 0.27 imp:pre:1p;ind:pre:1p; +cantonnèrent cantonner ver 0.76 5.00 0.00 0.07 ind:pas:3p; +cantonné cantonner ver m s 0.76 5.00 0.23 0.88 par:pas; +cantonnée cantonner ver f s 0.76 5.00 0.01 0.41 par:pas; +cantonnées cantonner ver f p 0.76 5.00 0.02 0.34 par:pas; +cantonnés cantonner ver m p 0.76 5.00 0.01 0.81 par:pas; +cantons canton nom m p 0.36 4.73 0.02 1.15 +cantre cantre nom m s 0.00 0.07 0.00 0.07 +cané caner ver m s 0.86 1.55 0.04 0.34 par:pas; +canulant canuler ver 0.00 0.07 0.00 0.07 par:pre; +canular canular nom m s 1.98 0.81 1.71 0.74 +canularesque canularesque adj s 0.00 0.07 0.00 0.07 +canulars canular nom m p 1.98 0.81 0.27 0.07 +canule canule nom f s 0.23 0.07 0.23 0.07 +canés caner ver m p 0.86 1.55 0.00 0.07 par:pas; +canut canut nom m s 0.01 0.14 0.00 0.07 +canuts canut nom m p 0.01 0.14 0.01 0.07 +canyon canyon nom m s 4.45 0.88 4.18 0.47 +canyons canyon nom m p 4.45 0.88 0.27 0.41 +canzonettes canzonette nom f p 0.00 0.07 0.00 0.07 +caoua caoua nom m s 0.07 2.43 0.07 2.30 +caouas caoua nom m p 0.07 2.43 0.00 0.14 +caoutchouc caoutchouc nom m s 5.59 16.55 5.20 16.01 +caoutchoucs caoutchouc nom m p 5.59 16.55 0.39 0.54 +caoutchouteuse caoutchouteux adj f s 0.06 0.88 0.00 0.14 +caoutchouteuses caoutchouteux adj f p 0.06 0.88 0.00 0.20 +caoutchouteux caoutchouteux adj m 0.06 0.88 0.06 0.54 +caoutchouté caoutchouter ver m s 0.01 0.20 0.01 0.00 par:pas; +caoutchoutée caoutchouté adj f s 0.00 1.08 0.00 0.27 +caoutchoutées caoutchouté adj f p 0.00 1.08 0.00 0.47 +caoutchoutés caoutchouté adj m p 0.00 1.08 0.00 0.07 +cap_hornier cap_hornier nom m s 0.00 0.07 0.00 0.07 +cap cap nom m s 19.49 16.55 19.48 15.68 +capable capable adj s 76.85 86.35 65.15 69.73 +capables capable adj p 76.85 86.35 11.70 16.62 +capacité capacité nom f s 17.29 14.39 9.42 8.38 +capacités capacité nom f p 17.29 14.39 7.87 6.01 +capades capade nom f p 0.06 0.00 0.06 0.00 +caparaçon caparaçon nom m s 0.00 0.54 0.00 0.27 +caparaçonnait caparaçonner ver 0.00 1.08 0.00 0.07 ind:imp:3s; +caparaçonne caparaçonner ver 0.00 1.08 0.00 0.07 ind:pre:3s; +caparaçonné caparaçonner ver m s 0.00 1.08 0.00 0.41 par:pas; +caparaçonnée caparaçonner ver f s 0.00 1.08 0.00 0.07 par:pas; +caparaçonnées caparaçonner ver f p 0.00 1.08 0.00 0.07 par:pas; +caparaçonnés caparaçonner ver m p 0.00 1.08 0.00 0.41 par:pas; +caparaçons caparaçon nom m p 0.00 0.54 0.00 0.27 +cape cape nom f s 6.25 11.69 5.40 10.34 +capelage capelage nom m s 0.02 0.07 0.02 0.07 +capeline capeline nom f s 0.11 2.50 0.10 2.09 +capelines capeline nom f p 0.11 2.50 0.01 0.41 +capelé capeler ver m s 0.00 0.14 0.00 0.14 par:pas; +caper caper ver 0.02 0.00 0.02 0.00 inf; +capes cape nom f p 6.25 11.69 0.85 1.35 +capharnaüm capharnaüm nom m s 0.05 1.49 0.05 1.49 +capillaire capillaire adj s 0.93 0.47 0.48 0.20 +capillaires capillaire adj p 0.93 0.47 0.45 0.27 +capillarité capillarité nom f s 0.00 0.07 0.00 0.07 +capilliculteur capilliculteur nom m s 0.01 0.00 0.01 0.00 +capilotade capilotade nom f s 0.01 0.74 0.01 0.61 +capilotades capilotade nom f p 0.01 0.74 0.00 0.14 +capisco capisco nom m s 0.03 0.20 0.03 0.20 +capitaine capitaine nom m s 152.69 92.57 150.59 88.45 +capitainerie capitainerie nom f s 0.15 0.14 0.15 0.14 +capitaines capitaine nom m p 152.69 92.57 2.11 4.12 +capital_risque capital_risque nom m s 0.04 0.00 0.04 0.00 +capital capital nom m s 8.53 9.86 5.49 6.96 +capitale capitale nom f s 11.38 26.62 10.60 23.18 +capitalement capitalement adv 0.00 0.07 0.00 0.07 +capitales capitale nom f p 11.38 26.62 0.78 3.45 +capitalisation capitalisation nom f s 0.03 0.14 0.03 0.14 +capitalise capitaliser ver 0.22 0.20 0.00 0.07 ind:pre:3s; +capitaliser capitaliser ver 0.22 0.20 0.20 0.07 inf; +capitalisme capitalisme nom m s 2.97 3.65 2.97 3.65 +capitalisons capitaliser ver 0.22 0.20 0.00 0.07 ind:pre:1p; +capitaliste capitaliste adj s 1.89 2.03 1.63 1.28 +capitalistes capitaliste nom p 1.09 1.35 0.58 0.81 +capitalistiques capitalistique adj f p 0.00 0.07 0.00 0.07 +capitalisé capitaliser ver m s 0.22 0.20 0.01 0.00 par:pas; +capitalisés capitaliser ver m p 0.22 0.20 0.01 0.00 par:pas; +capitan capitan nom m s 0.10 0.81 0.10 0.74 +capitanat capitanat nom m s 0.01 0.00 0.01 0.00 +capitane capitane nom m s 0.01 0.00 0.01 0.00 +capitans capitan nom m p 0.10 0.81 0.00 0.07 +capitaux capital nom m p 8.53 9.86 1.07 2.91 +capiteuse capiteux adj f s 0.25 2.30 0.00 0.54 +capiteuses capiteux adj f p 0.25 2.30 0.01 0.27 +capiteux capiteux adj m 0.25 2.30 0.24 1.49 +capitole capitole nom m s 0.10 0.07 0.10 0.07 +capiton capiton nom m s 0.00 0.54 0.00 0.20 +capitonnage capitonnage nom m s 0.01 0.27 0.01 0.27 +capitonnaient capitonner ver 0.09 2.70 0.00 0.07 ind:imp:3p; +capitonnait capitonner ver 0.09 2.70 0.00 0.07 ind:imp:3s; +capitonner capitonner ver 0.09 2.70 0.00 0.34 inf; +capitonné capitonner ver m s 0.09 2.70 0.02 0.81 par:pas; +capitonnée capitonné adj f s 0.32 2.23 0.28 0.74 +capitonnées capitonné adj f p 0.32 2.23 0.01 0.41 +capitonnés capitonner ver m p 0.09 2.70 0.02 0.61 par:pas; +capitons capiton nom m p 0.00 0.54 0.00 0.34 +capitouls capitoul nom m p 0.00 0.07 0.00 0.07 +capitula capituler ver 2.31 4.80 0.00 0.47 ind:pas:3s; +capitulaient capituler ver 2.31 4.80 0.01 0.14 ind:imp:3p; +capitulaire capitulaire adj m s 0.00 0.07 0.00 0.07 +capitulais capituler ver 2.31 4.80 0.00 0.07 ind:imp:1s; +capitulait capituler ver 2.31 4.80 0.01 0.14 ind:imp:3s; +capitulant capituler ver 2.31 4.80 0.01 0.07 par:pre; +capitulard capitulard nom m s 0.01 0.00 0.01 0.00 +capitulation capitulation nom f s 0.81 7.77 0.80 7.70 +capitulations capitulation nom f p 0.81 7.77 0.01 0.07 +capitule capituler ver 2.31 4.80 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +capitulent capituler ver 2.31 4.80 0.13 0.00 ind:pre:3p; +capituler capituler ver 2.31 4.80 0.58 1.82 inf; +capitulera capituler ver 2.31 4.80 0.00 0.07 ind:fut:3s; +capitulerait capituler ver 2.31 4.80 0.02 0.07 cnd:pre:3s; +capitulerez capituler ver 2.31 4.80 0.00 0.14 ind:fut:2p; +capitulerons capituler ver 2.31 4.80 0.04 0.00 ind:fut:1p; +capituleront capituler ver 2.31 4.80 0.01 0.00 ind:fut:3p; +capitules capituler ver 2.31 4.80 0.02 0.00 ind:pre:2s; +capituliez capituler ver 2.31 4.80 0.01 0.00 ind:imp:2p; +capitulions capituler ver 2.31 4.80 0.11 0.00 ind:imp:1p; +capitulons capituler ver 2.31 4.80 0.22 0.00 ind:pre:1p; +capitulèrent capituler ver 2.31 4.80 0.02 0.00 ind:pas:3p; +capitulé capituler ver m s 2.31 4.80 0.84 1.69 par:pas; +capo capo nom m s 2.17 0.14 2.03 0.14 +capoc capoc nom m s 0.00 0.07 0.00 0.07 +capon capon adj m s 0.14 0.41 0.14 0.34 +capons capon adj m p 0.14 0.41 0.01 0.07 +caporal_chef caporal_chef nom m s 0.52 0.54 0.52 0.54 +caporal caporal nom m s 10.22 18.99 9.95 17.03 +caporale caporal nom f s 10.22 18.99 0.04 0.00 +caporaux caporal nom m p 10.22 18.99 0.23 1.96 +capos capo nom m p 2.17 0.14 0.14 0.00 +capot capot nom m s 3.17 8.18 3.13 7.23 +capota capoter ver 0.90 1.15 0.00 0.07 ind:pas:3s; +capotaient capoter ver 0.90 1.15 0.01 0.07 ind:imp:3p; +capote capote nom f s 7.59 18.04 4.67 13.45 +capoter capoter ver 0.90 1.15 0.54 0.61 inf; +capotes capote nom f p 7.59 18.04 2.92 4.59 +capots capot nom m p 3.17 8.18 0.03 0.95 +capoté capoter ver m s 0.90 1.15 0.15 0.20 par:pas; +capotée capoter ver f s 0.90 1.15 0.00 0.07 par:pas; +cappa cappa nom f s 0.01 0.00 0.01 0.00 +cappuccino cappuccino nom m s 1.98 0.07 1.79 0.07 +cappuccinos cappuccino nom m p 1.98 0.07 0.19 0.00 +capricant capricant adj m s 0.00 0.14 0.00 0.07 +capricants capricant adj m p 0.00 0.14 0.00 0.07 +caprice caprice nom m s 8.94 18.31 4.63 9.32 +caprices caprice nom m p 8.94 18.31 4.31 8.99 +capricieuse capricieux adj f s 3.37 6.76 0.71 2.16 +capricieusement capricieusement adv 0.10 0.74 0.10 0.74 +capricieuses capricieux adj f p 3.37 6.76 0.54 1.55 +capricieux capricieux adj m 3.37 6.76 2.12 3.04 +capricorne capricorne nom m s 0.34 0.00 0.29 0.00 +capricornes capricorne nom m p 0.34 0.00 0.05 0.00 +caprine caprin adj f s 0.00 0.07 0.00 0.07 +caps cap nom m p 19.49 16.55 0.01 0.88 +capsulaire capsulaire adj f s 0.03 0.00 0.03 0.00 +capsule capsule nom f s 5.69 3.18 3.96 1.82 +capsules capsule nom f p 5.69 3.18 1.73 1.35 +capsulé capsuler ver m s 0.02 0.07 0.00 0.07 par:pas; +capta capter ver 9.89 9.59 0.00 0.20 ind:pas:3s; +captage captage nom m s 0.02 0.00 0.02 0.00 +captaient capter ver 9.89 9.59 0.00 0.07 ind:imp:3p; +captais capter ver 9.89 9.59 0.01 0.27 ind:imp:1s;ind:imp:2s; +captait capter ver 9.89 9.59 0.11 0.47 ind:imp:3s; +captant capter ver 9.89 9.59 0.01 0.27 par:pre; +captation captation nom f s 0.00 0.14 0.00 0.07 +captations captation nom f p 0.00 0.14 0.00 0.07 +capte capter ver 9.89 9.59 3.84 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +captent capter ver 9.89 9.59 0.19 0.20 ind:pre:3p; +capter capter ver 9.89 9.59 1.95 3.85 inf; +capterai capter ver 9.89 9.59 0.04 0.00 ind:fut:1s; +capterais capter ver 9.89 9.59 0.01 0.14 cnd:pre:1s; +capterait capter ver 9.89 9.59 0.01 0.07 cnd:pre:3s; +capteront capter ver 9.89 9.59 0.01 0.07 ind:fut:3p; +capteur capteur nom m s 2.79 0.00 1.10 0.00 +capteurs capteur nom m p 2.79 0.00 1.69 0.00 +captez capter ver 9.89 9.59 0.62 0.00 imp:pre:2p;ind:pre:2p; +captieuse captieux adj f s 0.00 0.14 0.00 0.07 +captieux captieux adj m p 0.00 0.14 0.00 0.07 +captif captif adj m s 1.11 4.80 0.63 2.16 +captifs captif nom m p 0.78 2.84 0.46 1.15 +captions capter ver 9.89 9.59 0.27 0.14 ind:imp:1p; +captiva captiver ver 1.35 4.73 0.03 0.07 ind:pas:3s; +captivaient captiver ver 1.35 4.73 0.00 0.27 ind:imp:3p; +captivait captiver ver 1.35 4.73 0.03 1.08 ind:imp:3s; +captivant captivant adj m s 0.87 1.55 0.62 0.95 +captivante captivant adj f s 0.87 1.55 0.22 0.41 +captivantes captivant adj f p 0.87 1.55 0.03 0.20 +captive captiver ver 1.35 4.73 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +captivent captiver ver 1.35 4.73 0.04 0.14 ind:pre:3p; +captiver captiver ver 1.35 4.73 0.14 0.47 inf; +captives captive nom f p 0.06 0.00 0.06 0.00 +captivité captivité nom f s 2.15 4.46 2.15 4.46 +captivèrent captiver ver 1.35 4.73 0.00 0.07 ind:pas:3p; +captivé captiver ver m s 1.35 4.73 0.27 1.49 par:pas; +captivée captiver ver f s 1.35 4.73 0.05 0.27 par:pas; +captivés captiver ver m p 1.35 4.73 0.34 0.14 par:pas; +captons capter ver 9.89 9.59 0.34 0.00 imp:pre:1p;ind:pre:1p; +capté capter ver m s 9.89 9.59 2.03 1.62 par:pas; +captée capter ver f s 9.89 9.59 0.22 0.41 par:pas; +captées capter ver f p 9.89 9.59 0.04 0.27 par:pas; +captura capturer ver 17.67 5.81 0.03 0.20 ind:pas:3s; +capturait capturer ver 17.67 5.81 0.02 0.27 ind:imp:3s; +capturant capturer ver 17.67 5.81 0.09 0.07 par:pre; +capture capture nom f s 3.00 1.76 2.93 1.69 +capturent capturer ver 17.67 5.81 0.23 0.00 ind:pre:3p; +capturer capturer ver 17.67 5.81 6.17 1.82 inf; +capturera capturer ver 17.67 5.81 0.28 0.07 ind:fut:3s; +capturerait capturer ver 17.67 5.81 0.02 0.00 cnd:pre:3s; +captureras capturer ver 17.67 5.81 0.02 0.00 ind:fut:2s; +capturerez capturer ver 17.67 5.81 0.02 0.00 ind:fut:2p; +capturerons capturer ver 17.67 5.81 0.14 0.00 ind:fut:1p; +captureront capturer ver 17.67 5.81 0.02 0.00 ind:fut:3p; +captures capture nom f p 3.00 1.76 0.07 0.07 +capturez capturer ver 17.67 5.81 0.51 0.00 imp:pre:2p;ind:pre:2p; +capturons capturer ver 17.67 5.81 0.07 0.00 imp:pre:1p;ind:pre:1p; +capturé capturer ver m s 17.67 5.81 6.33 2.09 par:pas; +capturée capturer ver f s 17.67 5.81 0.83 0.27 par:pas; +capturées capturer ver f p 17.67 5.81 0.09 0.20 par:pas; +capturés capturer ver m p 17.67 5.81 1.96 0.68 par:pas; +captés capter ver m p 9.89 9.59 0.20 0.20 par:pas; +capuccino capuccino nom m s 0.27 0.14 0.27 0.14 +capuche capuche nom f s 1.60 0.74 1.53 0.61 +capuches capuche nom f p 1.60 0.74 0.07 0.14 +capuchon capuchon nom m s 1.02 6.42 1.02 5.81 +capuchonnés capuchonner ver m p 0.00 0.07 0.00 0.07 par:pas; +capuchons capuchon nom m p 1.02 6.42 0.00 0.61 +capucin capucin nom m s 0.18 1.15 0.03 0.74 +capucinade capucinade nom f s 0.00 0.14 0.00 0.07 +capucinades capucinade nom f p 0.00 0.14 0.00 0.07 +capucine capucine nom f s 0.13 1.22 0.00 0.27 +capucines capucine nom f p 0.13 1.22 0.13 0.95 +capucino capucino nom m 0.00 0.07 0.00 0.07 +capucins capucin nom m p 0.18 1.15 0.14 0.41 +capulet capulet nom m s 0.00 0.07 0.00 0.07 +caput_mortuum caput_mortuum nom m s 0.00 0.07 0.00 0.07 +capétien capétien adj m s 0.00 0.34 0.00 0.20 +capétienne capétien adj f s 0.00 0.34 0.00 0.07 +capétiennes capétien adj f p 0.00 0.34 0.00 0.07 +caque caque nom f s 0.12 0.54 0.12 0.41 +caquelon caquelon nom m s 0.00 0.07 0.00 0.07 +caques caque nom f p 0.12 0.54 0.00 0.14 +caquet caquet nom m s 0.46 0.61 0.45 0.41 +caquetage caquetage nom m s 0.14 1.22 0.04 0.74 +caquetages caquetage nom m p 0.14 1.22 0.11 0.47 +caquetaient caqueter ver 0.53 1.55 0.00 0.54 ind:imp:3p; +caquetait caqueter ver 0.53 1.55 0.00 0.07 ind:imp:3s; +caquetant caqueter ver 0.53 1.55 0.01 0.20 par:pre; +caquetante caquetant adj f s 0.02 0.27 0.00 0.14 +caquetantes caquetant adj f p 0.02 0.27 0.01 0.07 +caqueter caqueter ver 0.53 1.55 0.31 0.14 inf; +caqueteuse caqueteur nom f s 0.00 0.07 0.00 0.07 +caquets caquet nom m p 0.46 0.61 0.01 0.20 +caquette caqueter ver 0.53 1.55 0.07 0.20 ind:pre:1s;ind:pre:3s; +caquettent caqueter ver 0.53 1.55 0.14 0.41 ind:pre:3p; +caquètement caquètement nom m s 0.04 0.47 0.02 0.27 +caquètements caquètement nom m p 0.04 0.47 0.01 0.20 +car car con 237.20 469.32 237.20 469.32 +caraïbe caraïbe nom s 0.16 0.14 0.10 0.00 +caraïbes caraïbe nom p 0.16 0.14 0.06 0.14 +carabas carabas nom m 0.00 0.20 0.00 0.20 +carabe carabe nom m s 0.01 0.20 0.00 0.07 +carabes carabe nom m p 0.01 0.20 0.01 0.14 +carabin carabin nom m s 0.01 0.47 0.00 0.27 +carabine carabine nom f s 2.71 11.15 2.08 10.07 +carabines carabine nom f p 2.71 11.15 0.63 1.08 +carabinier carabinier nom m s 2.91 1.69 0.96 0.20 +carabiniers carabinier nom m p 2.91 1.69 1.94 1.49 +carabins carabin nom m p 0.01 0.47 0.01 0.20 +carabiné carabiné adj m s 0.21 1.08 0.04 0.20 +carabinée carabiné adj f s 0.21 1.08 0.17 0.81 +carabinés carabiné adj m p 0.21 1.08 0.00 0.07 +carabosse carabosse nom f s 0.12 1.62 0.12 1.62 +caracal caracal nom m s 0.00 0.14 0.00 0.14 +caraco caraco nom m s 0.28 1.01 0.14 0.81 +caracola caracoler ver 0.09 1.76 0.00 0.14 ind:pas:3s; +caracolade caracolade nom f s 0.00 0.27 0.00 0.27 +caracolait caracoler ver 0.09 1.76 0.01 0.20 ind:imp:3s; +caracolant caracoler ver 0.09 1.76 0.01 0.27 par:pre; +caracole caracoler ver 0.09 1.76 0.03 0.27 ind:pre:1s;ind:pre:3s; +caracolent caracoler ver 0.09 1.76 0.01 0.27 ind:pre:3p; +caracoler caracoler ver 0.09 1.76 0.02 0.54 inf; +caracolerez caracoler ver 0.09 1.76 0.00 0.07 ind:fut:2p; +caracos caraco nom m p 0.28 1.01 0.14 0.20 +caractère caractère nom m s 18.86 62.16 17.22 47.50 +caractères caractère nom m p 18.86 62.16 1.65 14.66 +caractériel caractériel adj m s 0.49 0.68 0.28 0.27 +caractérielle caractériel adj f s 0.49 0.68 0.02 0.14 +caractérielles caractériel adj f p 0.49 0.68 0.14 0.00 +caractériels caractériel adj m p 0.49 0.68 0.05 0.27 +caractérisait caractériser ver 0.91 3.58 0.15 0.47 ind:imp:3s; +caractérisant caractériser ver 0.91 3.58 0.01 0.00 par:pre; +caractérisation caractérisation nom f s 0.01 0.00 0.01 0.00 +caractérise caractériser ver 0.91 3.58 0.25 2.16 ind:pre:3s; +caractérisent caractériser ver 0.91 3.58 0.04 0.20 ind:pre:3p; +caractériser caractériser ver 0.91 3.58 0.11 0.34 inf; +caractériserais caractériser ver 0.91 3.58 0.01 0.00 cnd:pre:1s; +caractériserait caractériser ver 0.91 3.58 0.00 0.07 cnd:pre:3s; +caractéristique caractéristique adj s 1.31 4.73 0.90 3.78 +caractéristiques caractéristique nom f p 3.69 2.77 2.81 2.09 +caractérisé caractériser ver m s 0.91 3.58 0.29 0.20 par:pas; +caractérisée caractérisé adj f s 0.20 0.81 0.13 0.27 +caractérisées caractérisé adj f p 0.20 0.81 0.00 0.20 +caractérisés caractériser ver m p 0.91 3.58 0.01 0.00 par:pas; +caractérologie caractérologie nom f s 0.00 0.07 0.00 0.07 +caracul caracul nom m s 0.27 0.00 0.27 0.00 +carafe carafe nom f s 1.04 5.47 1.02 4.46 +carafes carafe nom f p 1.04 5.47 0.02 1.01 +carafon carafon nom m s 0.16 0.68 0.01 0.61 +carafons carafon nom m p 0.16 0.68 0.15 0.07 +caramba caramba ono 0.77 0.07 0.77 0.07 +carambar carambar nom m s 0.43 0.34 0.30 0.14 +carambars carambar nom m p 0.43 0.34 0.13 0.20 +carambolage carambolage nom m s 0.48 0.47 0.31 0.34 +carambolages carambolage nom m p 0.48 0.47 0.17 0.14 +carambolaient caramboler ver 0.02 0.95 0.00 0.14 ind:imp:3p; +carambolait caramboler ver 0.02 0.95 0.00 0.07 ind:imp:3s; +carambole caramboler ver 0.02 0.95 0.01 0.20 ind:pre:1s;ind:pre:3s; +carambolent caramboler ver 0.02 0.95 0.00 0.07 ind:pre:3p; +caramboler caramboler ver 0.02 0.95 0.01 0.41 inf; +caramboles carambole nom f p 0.14 0.07 0.14 0.00 +carambolé caramboler ver m s 0.02 0.95 0.00 0.07 par:pas; +carambouillage carambouillage nom m s 0.00 0.14 0.00 0.14 +carambouille carambouille nom f s 0.00 0.27 0.00 0.27 +carambouilleurs carambouilleur nom m p 0.00 0.20 0.00 0.20 +carambouillé carambouiller ver m s 0.00 0.07 0.00 0.07 par:pas; +caramel caramel nom m s 2.76 3.38 1.56 2.30 +caramels caramel nom m p 2.76 3.38 1.20 1.08 +caramélisait caraméliser ver 0.17 0.27 0.00 0.07 ind:imp:3s; +caramélise caraméliser ver 0.17 0.27 0.01 0.14 ind:pre:3s; +caraméliser caraméliser ver 0.17 0.27 0.01 0.00 inf; +caramélisé caraméliser ver m s 0.17 0.27 0.14 0.07 par:pas; +caramélisée caramélisé adj f s 0.11 0.27 0.02 0.00 +caramélisées caramélisé adj f p 0.11 0.27 0.04 0.00 +caramélisés caramélisé adj m p 0.11 0.27 0.03 0.07 +carapace carapace nom f s 1.25 8.38 1.22 6.62 +carapaces carapace nom f p 1.25 8.38 0.04 1.76 +carapatait carapater ver 0.14 1.01 0.00 0.07 ind:imp:3s; +carapate carapater ver 0.14 1.01 0.02 0.34 ind:pre:1s;ind:pre:3s; +carapatent carapater ver 0.14 1.01 0.01 0.07 ind:pre:3p; +carapater carapater ver 0.14 1.01 0.01 0.41 inf; +carapaté carapater ver m s 0.14 1.01 0.10 0.07 par:pas; +carapatés carapater ver m p 0.14 1.01 0.00 0.07 par:pas; +caraque caraque nom f s 0.00 0.20 0.00 0.20 +carat carat nom m s 1.46 2.23 0.14 1.15 +carats carat nom m p 1.46 2.23 1.33 1.08 +caravane caravane nom f s 11.64 6.76 10.34 5.14 +caravanes caravane nom f p 11.64 6.76 1.30 1.62 +caravanier caravanier nom m s 0.41 1.22 0.41 0.07 +caravaniers caravanier nom m p 0.41 1.22 0.00 0.74 +caravaning caravaning nom m s 0.13 0.20 0.13 0.14 +caravanings caravaning nom m p 0.13 0.20 0.00 0.07 +caravanière caravanier nom f s 0.41 1.22 0.00 0.34 +caravanières caravanier nom f p 0.41 1.22 0.00 0.07 +caravansérail caravansérail nom m s 0.14 0.81 0.00 0.54 +caravansérails caravansérail nom m p 0.14 0.81 0.14 0.27 +caravelle caravelle nom f s 0.32 0.95 0.31 0.20 +caravelles caravelle nom f p 0.32 0.95 0.01 0.74 +carbets carbet nom m p 0.00 0.07 0.00 0.07 +carboglace carboglace nom m s 0.05 0.00 0.05 0.00 +carbonade carbonade nom f s 0.14 0.00 0.14 0.00 +carbonari carbonari nom m s 0.00 0.07 0.00 0.07 +carbonate carbonate nom m s 0.08 0.14 0.08 0.14 +carbone carbone nom m s 3.18 1.82 3.15 1.62 +carbones carbone nom m p 3.18 1.82 0.04 0.20 +carbonique carbonique adj s 0.89 0.81 0.79 0.74 +carboniques carbonique adj m p 0.89 0.81 0.10 0.07 +carbonisa carboniser ver 1.25 2.50 0.00 0.07 ind:pas:3s; +carbonisant carboniser ver 1.25 2.50 0.00 0.07 par:pre; +carbonisation carbonisation nom f s 0.03 0.00 0.03 0.00 +carboniser carboniser ver 1.25 2.50 0.10 0.34 inf; +carbonisé carboniser ver m s 1.25 2.50 0.60 0.61 par:pas; +carbonisée carboniser ver f s 1.25 2.50 0.10 0.27 par:pas; +carbonisées carboniser ver f p 1.25 2.50 0.13 0.41 par:pas; +carbonisés carboniser ver m p 1.25 2.50 0.32 0.74 par:pas; +carboné carboné adj m s 0.01 0.00 0.01 0.00 +carboxyhémoglobine carboxyhémoglobine nom f s 0.04 0.00 0.04 0.00 +carburaient carburer ver 0.85 1.22 0.01 0.07 ind:imp:3p; +carburais carburer ver 0.85 1.22 0.00 0.07 ind:imp:1s; +carburait carburer ver 0.85 1.22 0.00 0.34 ind:imp:3s; +carburant carburant nom m s 5.67 1.69 5.56 1.35 +carburants carburant nom m p 5.67 1.69 0.11 0.34 +carburateur carburateur nom m s 1.11 1.22 1.05 1.15 +carburateurs carburateur nom m p 1.11 1.22 0.05 0.07 +carburation carburation nom f s 0.02 0.14 0.02 0.14 +carbure carburer ver 0.85 1.22 0.43 0.27 ind:pre:1s;ind:pre:3s; +carburent carburer ver 0.85 1.22 0.02 0.07 ind:pre:3p; +carburer carburer ver 0.85 1.22 0.17 0.14 inf; +carburez carburer ver 0.85 1.22 0.02 0.00 imp:pre:2p; +carburé carburer ver m s 0.85 1.22 0.01 0.14 par:pas; +carcajou carcajou nom m s 0.00 0.07 0.00 0.07 +carcan carcan nom m s 0.29 4.19 0.28 2.77 +carcans carcan nom m p 0.29 4.19 0.01 1.42 +carcasse carcasse nom f s 2.58 13.85 1.89 10.41 +carcasses carcasse nom f p 2.58 13.85 0.69 3.45 +carcharodon carcharodon nom m s 0.03 0.00 0.03 0.00 +carcinoïde carcinoïde adj s 0.01 0.00 0.01 0.00 +carcinoïde carcinoïde nom m s 0.01 0.00 0.01 0.00 +carcinome carcinome nom m s 0.13 0.00 0.13 0.00 +carcéral carcéral adj m s 1.11 2.30 0.52 1.15 +carcérale carcéral adj f s 1.11 2.30 0.45 0.81 +carcérales carcéral adj f p 1.11 2.30 0.14 0.14 +carcéraux carcéral adj m p 1.11 2.30 0.00 0.20 +cardage cardage nom m s 0.00 0.14 0.00 0.14 +cardait carder ver 0.08 1.35 0.00 0.27 ind:imp:3s; +cardamome cardamome nom f s 0.19 0.34 0.19 0.27 +cardamomes cardamome nom f p 0.19 0.34 0.00 0.07 +cardan cardan nom m s 0.23 0.34 0.21 0.34 +cardans cardan nom m p 0.23 0.34 0.02 0.00 +cardant carder ver 0.08 1.35 0.00 0.27 par:pre; +carde carde nom f s 0.01 0.27 0.01 0.20 +carder carder ver 0.08 1.35 0.07 0.27 inf; +carderai carder ver 0.08 1.35 0.00 0.07 ind:fut:1s; +carderie carderie nom f s 0.00 0.20 0.00 0.20 +cardes carde nom f p 0.01 0.27 0.00 0.07 +cardeur cardeur nom m s 0.01 1.01 0.01 0.20 +cardeuse cardeur nom f s 0.01 1.01 0.00 0.14 +cardeuses cardeur nom f p 0.01 1.01 0.00 0.68 +cardia cardia nom m s 0.01 0.00 0.01 0.00 +cardiaque cardiaque adj s 20.55 3.72 18.34 3.04 +cardiaques cardiaque adj p 20.55 3.72 2.21 0.68 +cardigan cardigan nom m s 0.47 0.61 0.40 0.47 +cardigans cardigan nom m p 0.47 0.61 0.06 0.14 +cardinal_archevêque cardinal_archevêque nom m s 0.02 0.07 0.02 0.07 +cardinal_légat cardinal_légat nom m s 0.00 0.07 0.00 0.07 +cardinal cardinal nom m s 5.18 6.62 4.78 4.80 +cardinale cardinal adj f s 1.09 4.12 0.42 0.68 +cardinales cardinal adj f p 1.09 4.12 0.02 0.20 +cardinalice cardinalice adj f s 0.01 0.14 0.01 0.07 +cardinalices cardinalice adj f p 0.01 0.14 0.00 0.07 +cardinaux cardinal nom m p 5.18 6.62 0.40 1.82 +cardio_pulmonaire cardio_pulmonaire adj s 0.07 0.00 0.07 0.00 +cardio_respiratoire cardio_respiratoire adj f s 0.10 0.00 0.10 0.00 +cardio_vasculaire cardio_vasculaire adj s 0.14 0.07 0.14 0.07 +cardioïde cardioïde adj s 0.00 0.07 0.00 0.07 +cardiogramme cardiogramme nom m s 0.11 0.00 0.11 0.00 +cardiographe cardiographe nom m s 0.01 0.00 0.01 0.00 +cardiographie cardiographie nom f s 0.01 0.00 0.01 0.00 +cardiologie cardiologie nom f s 0.82 0.00 0.82 0.00 +cardiologue cardiologue nom s 1.23 0.27 1.17 0.27 +cardiologues cardiologue nom p 1.23 0.27 0.06 0.00 +cardiomégalie cardiomégalie nom f s 0.04 0.00 0.04 0.00 +cardiomyopathie cardiomyopathie nom f s 0.09 0.00 0.09 0.00 +cardiotonique cardiotonique adj s 0.11 0.00 0.11 0.00 +cardiovasculaire cardiovasculaire adj s 0.24 0.00 0.24 0.00 +cardite cardite nom f s 0.01 0.00 0.01 0.00 +cardium cardium nom m s 0.00 0.07 0.00 0.07 +cardon cardon nom m s 0.06 1.15 0.06 0.07 +cardons cardon nom m p 0.06 1.15 0.00 1.08 +cardères carder nom f p 0.00 0.07 0.00 0.07 +cardé carder ver m s 0.08 1.35 0.00 0.34 par:pas; +cardée carder ver f s 0.08 1.35 0.00 0.07 par:pas; +cardés carder ver m p 0.08 1.35 0.00 0.07 par:pas; +care care nom f s 1.42 0.14 1.42 0.14 +carence carence nom f s 1.06 1.76 0.91 1.49 +carences carence nom f p 1.06 1.76 0.15 0.27 +caressa caresser ver 15.69 83.72 0.13 9.46 ind:pas:3s; +caressai caresser ver 15.69 83.72 0.00 0.74 ind:pas:1s; +caressaient caresser ver 15.69 83.72 0.03 2.23 ind:imp:3p; +caressais caresser ver 15.69 83.72 0.49 2.03 ind:imp:1s;ind:imp:2s; +caressait caresser ver 15.69 83.72 0.57 14.46 ind:imp:3s; +caressant caresser ver 15.69 83.72 1.13 8.18 par:pre; +caressante caressant adj f s 0.23 4.26 0.13 1.55 +caressantes caressant adj f p 0.23 4.26 0.01 0.54 +caressants caressant adj m p 0.23 4.26 0.01 0.61 +caresse caresser ver 15.69 83.72 4.60 14.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +caressent caresser ver 15.69 83.72 0.44 1.62 ind:pre:3p; +caresser caresser ver 15.69 83.72 5.66 18.24 inf; +caressera caresser ver 15.69 83.72 0.04 0.20 ind:fut:3s; +caresserai caresser ver 15.69 83.72 0.03 0.07 ind:fut:1s; +caresseraient caresser ver 15.69 83.72 0.00 0.07 cnd:pre:3p; +caresserait caresser ver 15.69 83.72 0.10 0.20 cnd:pre:3s; +caresserez caresser ver 15.69 83.72 0.00 0.07 ind:fut:2p; +caresseront caresser ver 15.69 83.72 0.01 0.14 ind:fut:3p; +caresses caresse nom f p 5.32 33.04 3.11 16.89 +caresseurs caresseur adj m p 0.00 0.07 0.00 0.07 +caresseuse caresseur nom f s 0.00 0.20 0.00 0.07 +caresseuses caresseur nom f p 0.00 0.20 0.00 0.14 +caressez caresser ver 15.69 83.72 0.53 0.20 imp:pre:2p;ind:pre:2p; +caressions caresser ver 15.69 83.72 0.01 0.20 ind:imp:1p; +caressât caresser ver 15.69 83.72 0.00 0.14 sub:imp:3s; +caressèrent caresser ver 15.69 83.72 0.00 0.27 ind:pas:3p; +caressé caresser ver m s 15.69 83.72 0.68 5.81 par:pas; +caressée caresser ver f s 15.69 83.72 0.27 2.70 par:pas; +caressées caresser ver f p 15.69 83.72 0.00 0.34 par:pas; +caressés caresser ver m p 15.69 83.72 0.04 1.15 par:pas; +caret caret nom m s 0.00 0.14 0.00 0.14 +carex carex nom m 0.00 0.20 0.00 0.20 +cargaison cargaison nom f s 7.57 4.26 6.82 3.18 +cargaisons cargaison nom f p 7.57 4.26 0.75 1.08 +cargo cargo nom m s 5.17 7.09 4.18 3.99 +cargos cargo nom m p 5.17 7.09 0.99 3.11 +cargua carguer ver 0.03 0.47 0.00 0.14 ind:pas:3s; +carguent carguer ver 0.03 0.47 0.00 0.07 ind:pre:3p; +carguer carguer ver 0.03 0.47 0.00 0.07 inf; +carguez carguer ver 0.03 0.47 0.03 0.00 imp:pre:2p; +carguée carguer ver f s 0.03 0.47 0.00 0.07 par:pas; +carguées carguer ver f p 0.03 0.47 0.00 0.14 par:pas; +cari cari nom m s 0.08 0.95 0.08 0.07 +cariatide cariatide nom f s 0.00 0.54 0.00 0.34 +cariatides cariatide nom f p 0.00 0.54 0.00 0.20 +caribou caribou nom m s 0.91 0.20 0.74 0.14 +caribous caribou nom m p 0.91 0.20 0.17 0.07 +caribéenne caribéen adj f s 0.03 0.00 0.03 0.00 +caricatural caricatural adj m s 0.04 2.09 0.04 1.22 +caricaturale caricatural adj f s 0.04 2.09 0.01 0.61 +caricaturales caricatural adj f p 0.04 2.09 0.00 0.20 +caricaturaux caricatural adj m p 0.04 2.09 0.00 0.07 +caricature caricature nom f s 1.68 6.49 1.58 4.26 +caricaturer caricaturer ver 0.09 0.27 0.02 0.07 inf; +caricatures caricature nom f p 1.68 6.49 0.10 2.23 +caricaturiste caricaturiste nom s 0.02 0.54 0.02 0.27 +caricaturistes caricaturiste nom p 0.02 0.54 0.00 0.27 +caricaturé caricaturer ver m s 0.09 0.27 0.02 0.00 par:pas; +caricaturées caricaturer ver f p 0.09 0.27 0.01 0.07 par:pas; +caricaturés caricaturer ver m p 0.09 0.27 0.02 0.07 par:pas; +carie carie nom f s 0.89 1.15 0.38 0.61 +carien carien adj m s 0.50 0.07 0.50 0.07 +carier carier ver 0.12 0.07 0.01 0.00 inf; +caries carie nom f p 0.89 1.15 0.51 0.54 +carillon carillon nom m s 1.67 5.88 1.56 5.54 +carillonnaient carillonner ver 0.41 1.35 0.00 0.14 ind:imp:3p; +carillonnait carillonner ver 0.41 1.35 0.00 0.14 ind:imp:3s; +carillonnant carillonner ver 0.41 1.35 0.00 0.14 par:pre; +carillonne carillonner ver 0.41 1.35 0.00 0.14 ind:pre:3s; +carillonnent carillonner ver 0.41 1.35 0.16 0.07 ind:pre:3p; +carillonner carillonner ver 0.41 1.35 0.25 0.61 inf; +carillonnes carillonner ver 0.41 1.35 0.00 0.07 ind:pre:2s; +carillonneur carillonneur nom m s 0.01 0.07 0.00 0.07 +carillonneuse carillonneur nom f s 0.01 0.07 0.01 0.00 +carillonné carillonner ver m s 0.41 1.35 0.00 0.07 par:pas; +carillonnées carillonné adj f p 0.00 0.41 0.00 0.27 +carillonnés carillonné adj m p 0.00 0.41 0.00 0.07 +carillons carillon nom m p 1.67 5.88 0.12 0.34 +carioca carioca adj m s 0.14 0.00 0.14 0.00 +caris cari nom m p 0.08 0.95 0.00 0.88 +carissime carissime adj s 0.00 0.07 0.00 0.07 +cariste cariste nom s 0.04 0.00 0.04 0.00 +caritatif caritatif adj m s 0.57 0.27 0.12 0.07 +caritatifs caritatif adj m p 0.57 0.27 0.02 0.07 +caritative caritatif adj f s 0.57 0.27 0.33 0.07 +caritatives caritatif adj f p 0.57 0.27 0.11 0.07 +carié carié adj m s 0.40 0.47 0.00 0.14 +cariée carié adj f s 0.40 0.47 0.27 0.07 +cariées carié adj f p 0.40 0.47 0.13 0.27 +carlin carlin nom m s 0.96 0.47 0.86 0.34 +carlines carline nom f p 0.00 0.07 0.00 0.07 +carlingue carlingue nom f s 0.23 2.77 0.22 2.36 +carlingues carlingue nom f p 0.23 2.77 0.01 0.41 +carlins carlin nom m p 0.96 0.47 0.10 0.14 +carlisme carlisme nom m s 0.20 0.00 0.20 0.00 +carliste carliste adj f s 0.70 0.00 0.60 0.00 +carlistes carliste adj p 0.70 0.00 0.10 0.00 +carma carmer ver 0.01 1.01 0.01 0.00 ind:pas:3s; +carmagnole carmagnole nom f s 0.00 0.54 0.00 0.47 +carmagnoles carmagnole nom f p 0.00 0.54 0.00 0.07 +carmant carmer ver 0.01 1.01 0.00 0.07 par:pre; +carme carme nom m s 0.14 0.61 0.00 0.14 +carmel carmel nom m s 0.28 0.20 0.28 0.20 +carmer carmer ver 0.01 1.01 0.00 0.68 inf; +carmes carme nom m p 0.14 0.61 0.14 0.47 +carmin carmin nom m s 0.26 0.81 0.26 0.68 +carmina carminer ver 0.23 0.07 0.01 0.00 ind:pas:3s; +carmine carminer ver 0.23 0.07 0.22 0.00 imp:pre:2s;ind:pre:3s; +carmins carmin nom m p 0.26 0.81 0.00 0.14 +carminé carminé adj m s 0.00 0.74 0.00 0.07 +carminée carminé adj f s 0.00 0.74 0.00 0.20 +carminées carminé adj f p 0.00 0.74 0.00 0.34 +carminés carminé adj m p 0.00 0.74 0.00 0.14 +carmé carmer ver m s 0.01 1.01 0.00 0.14 par:pas; +carmée carmer ver f s 0.01 1.01 0.00 0.14 par:pas; +carmélite carmélite nom f s 0.40 1.35 0.28 0.68 +carmélites carmélite nom f p 0.40 1.35 0.12 0.68 +carnage carnage nom m s 5.59 3.38 5.46 3.18 +carnages carnage nom m p 5.59 3.38 0.14 0.20 +carnassier carnassier nom m s 0.04 2.09 0.02 0.74 +carnassiers carnassier adj m p 0.03 1.82 0.03 0.27 +carnassière carnassier nom f s 0.04 2.09 0.01 0.34 +carnassières carnassier nom f p 0.04 2.09 0.00 0.14 +carnation carnation nom f s 0.30 1.08 0.30 1.08 +carnaval carnaval nom m s 7.86 5.81 7.83 5.68 +carnavalesque carnavalesque adj s 0.01 0.20 0.01 0.20 +carnavals carnaval nom m p 7.86 5.81 0.03 0.14 +carne carne nom f s 1.21 2.77 1.09 2.03 +carnes carne nom f p 1.21 2.77 0.12 0.74 +carnet carnet nom m s 13.23 31.82 11.06 24.66 +carnets carnet nom m p 13.23 31.82 2.17 7.16 +carnier carnier nom m s 0.27 0.27 0.27 0.20 +carniers carnier nom m p 0.27 0.27 0.00 0.07 +carnivore carnivore adj s 0.64 1.01 0.25 0.47 +carnivores carnivore adj p 0.64 1.01 0.39 0.54 +carné carné adj m s 0.02 0.27 0.00 0.07 +carnée carné adj f s 0.02 0.27 0.00 0.07 +carnées carné adj f p 0.02 0.27 0.01 0.07 +carnés carné adj m p 0.02 0.27 0.01 0.07 +carogne carogne nom f s 0.14 0.00 0.14 0.00 +carole carole nom f s 0.00 0.07 0.00 0.07 +caroline carolin adj f s 0.03 0.61 0.03 0.14 +carolines carolin adj f p 0.03 0.61 0.00 0.14 +carolingien carolingien adj m s 0.00 0.20 0.00 0.07 +carolingienne carolingien adj f s 0.00 0.20 0.00 0.07 +carolingiens carolingien adj m p 0.00 0.20 0.00 0.07 +carolins carolin adj m p 0.03 0.61 0.00 0.34 +carolus carolus nom m 0.10 0.00 0.10 0.00 +caronades caronade nom f p 0.01 0.14 0.01 0.14 +caroncule caroncule nom f s 0.01 0.14 0.01 0.14 +carotide carotide nom f s 0.84 1.28 0.78 0.88 +carotides carotide nom f p 0.84 1.28 0.06 0.41 +carotidien carotidien adj m s 0.12 0.00 0.09 0.00 +carotidienne carotidien adj f s 0.12 0.00 0.03 0.00 +carottage carottage nom m s 0.02 0.00 0.02 0.00 +carottait carotter ver 0.14 0.41 0.00 0.07 ind:imp:3s; +carotte carotte nom f s 7.12 8.31 2.45 2.97 +carottent carotter ver 0.14 0.41 0.00 0.07 ind:pre:3p; +carotter carotter ver 0.14 0.41 0.03 0.07 inf; +carotterait carotter ver 0.14 0.41 0.00 0.07 cnd:pre:3s; +carottes carotte nom f p 7.12 8.31 4.67 5.34 +carotteur carotteur adj m s 0.12 0.00 0.10 0.00 +carotteuse carotteur adj f s 0.12 0.00 0.02 0.00 +carotène carotène nom m s 0.01 0.00 0.01 0.00 +carottier carottier adj m s 0.01 0.00 0.01 0.00 +carotté carotter ver m s 0.14 0.41 0.06 0.00 par:pas; +carottés carotter ver m p 0.14 0.41 0.00 0.07 par:pas; +caroube caroube nom f s 0.13 0.07 0.13 0.07 +caroubier caroubier nom m s 0.01 0.34 0.01 0.14 +caroubiers caroubier nom m p 0.01 0.34 0.00 0.20 +caroublant caroubler ver 0.00 0.14 0.00 0.07 par:pre; +carouble carouble nom f s 0.00 0.74 0.00 0.07 +caroubler caroubler ver 0.00 0.14 0.00 0.07 inf; +caroubles carouble nom f p 0.00 0.74 0.00 0.68 +caroubleur caroubleur nom m s 0.00 0.14 0.00 0.14 +carousse carousse nom f s 0.00 0.07 0.00 0.07 +carpaccio carpaccio nom m s 0.18 0.00 0.18 0.00 +carpe carpe nom s 2.87 3.85 2.42 2.77 +carpes carpe nom f p 2.87 3.85 0.45 1.08 +carpette carpette nom f s 0.35 2.36 0.32 2.09 +carpettes carpette nom f p 0.35 2.36 0.03 0.27 +carpien carpien adj m s 0.26 0.00 0.23 0.00 +carpienne carpien adj f s 0.26 0.00 0.03 0.00 +carpillon carpillon nom m s 0.00 0.27 0.00 0.27 +carpé carpé adj m s 0.02 0.14 0.02 0.14 +carquois carquois nom m 0.34 0.68 0.34 0.68 +carra carrer ver 1.13 6.55 0.00 0.47 ind:pas:3s; +carraient carrer ver 1.13 6.55 0.00 0.14 ind:imp:3p; +carrais carrer ver 1.13 6.55 0.00 0.14 ind:imp:1s; +carrait carrer ver 1.13 6.55 0.00 0.14 ind:imp:3s; +carrant carrer ver 1.13 6.55 0.00 0.27 par:pre; +carrare carrare nom m s 0.00 0.07 0.00 0.07 +carre carrer ver 1.13 6.55 0.17 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +carreau carreau nom m s 8.10 41.69 4.34 13.51 +carreaux carreau nom m p 8.10 41.69 3.75 28.18 +carrefour carrefour nom m s 5.40 35.95 5.00 30.34 +carrefours carrefour nom m p 5.40 35.95 0.40 5.61 +carrelage carrelage nom m s 2.40 13.18 2.39 12.36 +carrelages carrelage nom m p 2.40 13.18 0.01 0.81 +carrelait carreler ver 0.22 3.24 0.00 0.07 ind:imp:3s; +carrelant carreler ver 0.22 3.24 0.01 0.00 par:pre; +carreler carreler ver 0.22 3.24 0.17 0.07 inf; +carrelet carrelet nom m s 0.05 1.82 0.04 1.69 +carrelets carrelet nom m p 0.05 1.82 0.01 0.14 +carreleur carreleur nom m s 0.14 0.34 0.14 0.20 +carreleurs carreleur nom m p 0.14 0.34 0.00 0.14 +carrelé carreler ver m s 0.22 3.24 0.02 1.62 par:pas; +carrelée carreler ver f s 0.22 3.24 0.02 1.01 par:pas; +carrelées carreler ver f p 0.22 3.24 0.00 0.20 par:pas; +carrelés carreler ver m p 0.22 3.24 0.00 0.27 par:pas; +carrent carrer ver 1.13 6.55 0.00 0.07 ind:pre:3p; +carrer carrer ver 1.13 6.55 0.32 0.88 inf; +carrerais carrer ver 1.13 6.55 0.01 0.00 cnd:pre:1s; +carres carrer ver 1.13 6.55 0.03 0.00 ind:pre:2s;sub:pre:2s; +carrick carrick nom m s 0.28 0.00 0.28 0.00 +carrier carrier nom m s 0.01 0.74 0.01 0.47 +carriers carrier nom m p 0.01 0.74 0.00 0.27 +carriole carriole nom f s 1.42 10.47 1.25 8.38 +carrioles carriole nom f p 1.42 10.47 0.17 2.09 +carrière carrière nom s 36.54 36.15 35.23 33.04 +carrières carrière nom f p 36.54 36.15 1.31 3.11 +carriérisme carriérisme nom m s 0.01 0.00 0.01 0.00 +carriériste carriériste nom s 0.39 0.00 0.34 0.00 +carriéristes carriériste nom p 0.39 0.00 0.04 0.00 +carron carron nom m s 0.01 0.00 0.01 0.00 +carrossable carrossable adj s 0.14 0.54 0.00 0.47 +carrossables carrossable adj f p 0.14 0.54 0.14 0.07 +carrosse carrosse nom m s 2.77 4.05 2.59 3.72 +carrosser carrosser ver 0.03 0.34 0.00 0.07 inf; +carrosserie carrosserie nom f s 1.45 6.55 1.22 5.61 +carrosseries carrosserie nom f p 1.45 6.55 0.23 0.95 +carrosses carrosse nom m p 2.77 4.05 0.18 0.34 +carrossier carrossier nom m s 0.04 0.27 0.02 0.20 +carrossiers carrossier nom m p 0.04 0.27 0.02 0.07 +carrossée carrosser ver f s 0.03 0.34 0.02 0.20 par:pas; +carrossées carrosser ver f p 0.03 0.34 0.00 0.07 par:pas; +carrousel carrousel nom m s 0.42 2.50 0.40 2.36 +carrousels carrousel nom m p 0.42 2.50 0.03 0.14 +carré carré nom m s 3.85 32.23 3.48 25.07 +carrée carré adj f s 4.92 27.77 0.84 10.07 +carrées carrer ver f p 1.13 6.55 0.08 0.20 par:pas; +carrément carrément adv 9.99 16.55 9.99 16.55 +carrure carrure nom f s 0.94 4.53 0.94 4.39 +carrures carrure nom f p 0.94 4.53 0.00 0.14 +carrés carré adj m p 4.92 27.77 1.36 6.49 +carry carry nom m s 0.61 0.20 0.61 0.20 +cars car nom_sup m p 14.84 19.86 0.64 3.99 +carta carter ver 0.30 0.20 0.01 0.14 ind:pas:3s; +cartable cartable nom m s 1.58 11.28 1.54 9.32 +cartables cartable nom m p 1.58 11.28 0.04 1.96 +carte_clé carte_clé nom f s 0.03 0.00 0.03 0.00 +carte_lettre carte_lettre nom f s 0.00 0.41 0.00 0.34 +carte carte nom f s 144.96 111.42 96.11 60.95 +cartel cartel nom m s 2.04 0.81 1.75 0.61 +cartels cartel nom m p 2.04 0.81 0.28 0.20 +carter carter nom m s 1.14 0.34 1.12 0.34 +carterie carterie nom f s 0.07 0.00 0.07 0.00 +carters carter nom m p 1.14 0.34 0.01 0.00 +carte_lettre carte_lettre nom f p 0.00 0.41 0.00 0.07 +cartes carte nom f p 144.96 111.42 48.84 50.47 +carthaginois carthaginois nom m 0.04 0.27 0.04 0.27 +carthaginoise carthaginois adj f s 0.04 0.07 0.01 0.07 +carthame carthame nom m s 0.02 0.00 0.02 0.00 +carène carène nom f s 0.11 0.54 0.11 0.34 +carènes carène nom f p 0.11 0.54 0.00 0.20 +cartilage cartilage nom m s 0.84 1.42 0.75 0.68 +cartilages cartilage nom m p 0.84 1.42 0.09 0.74 +cartilagineuse cartilagineux adj f s 0.07 0.14 0.02 0.14 +cartilagineuses cartilagineux adj f p 0.07 0.14 0.03 0.00 +cartilagineux cartilagineux adj m p 0.07 0.14 0.02 0.00 +cartographe cartographe nom s 0.16 0.61 0.11 0.27 +cartographes cartographe nom p 0.16 0.61 0.05 0.34 +cartographie cartographie nom f s 0.37 0.34 0.37 0.34 +cartographient cartographier ver 0.10 0.07 0.00 0.07 ind:pre:3p; +cartographier cartographier ver 0.10 0.07 0.02 0.00 inf; +cartographique cartographique adj s 0.26 0.20 0.18 0.07 +cartographiques cartographique adj p 0.26 0.20 0.07 0.14 +cartographié cartographier ver m s 0.10 0.07 0.07 0.00 par:pas; +cartographiés cartographier ver m p 0.10 0.07 0.01 0.00 par:pas; +cartomancie cartomancie nom f s 0.01 0.00 0.01 0.00 +cartomancien cartomancien nom m s 0.16 1.15 0.00 0.14 +cartomancienne cartomancien nom f s 0.16 1.15 0.16 0.88 +cartomanciennes cartomancien nom f p 0.16 1.15 0.00 0.14 +carton_pâte carton_pâte nom m s 0.17 1.28 0.17 1.28 +carton carton nom m s 16.01 44.86 10.92 34.80 +cartonnage cartonnage nom m s 0.00 0.54 0.00 0.14 +cartonnages cartonnage nom m p 0.00 0.54 0.00 0.41 +cartonnant cartonner ver 2.02 2.16 0.00 0.07 par:pre; +cartonne cartonner ver 2.02 2.16 0.32 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cartonnent cartonner ver 2.02 2.16 0.05 0.00 ind:pre:3p; +cartonner cartonner ver 2.02 2.16 1.09 0.41 inf; +cartonneuse cartonneux adj f s 0.00 0.47 0.00 0.20 +cartonneuses cartonneux adj f p 0.00 0.47 0.00 0.07 +cartonneux cartonneux adj m 0.00 0.47 0.00 0.20 +cartonnier cartonnier nom m s 0.00 0.34 0.00 0.20 +cartonniers cartonnier nom m p 0.00 0.34 0.00 0.14 +cartonné cartonner ver m s 2.02 2.16 0.54 0.47 par:pas; +cartonnée cartonner ver f s 2.02 2.16 0.03 0.41 par:pas; +cartonnées cartonner ver f p 2.02 2.16 0.00 0.27 par:pas; +cartonnés cartonner ver m p 2.02 2.16 0.00 0.41 par:pas; +cartons carton nom m p 16.01 44.86 5.09 10.07 +cartoon cartoon nom m s 0.76 0.07 0.43 0.00 +cartoons cartoon nom m p 0.76 0.07 0.33 0.07 +cartothèque cartothèque nom f s 0.10 0.00 0.10 0.00 +cartouche cartouche nom s 5.81 9.53 1.76 2.91 +cartoucherie cartoucherie nom f s 0.00 0.07 0.00 0.07 +cartouches cartouche nom p 5.81 9.53 4.05 6.62 +cartouchière cartouchière nom f s 0.17 2.16 0.04 0.47 +cartouchières cartouchière nom f p 0.17 2.16 0.14 1.69 +carté carter ver m s 0.30 0.20 0.00 0.07 par:pas; +cartulaires cartulaire nom m p 0.00 0.14 0.00 0.14 +cartésianisme cartésianisme nom m s 0.00 0.20 0.00 0.20 +cartésien cartésien adj m s 0.06 0.68 0.01 0.34 +cartésienne cartésien adj f s 0.06 0.68 0.04 0.20 +cartésiennes cartésien adj f p 0.06 0.68 0.00 0.07 +cartésiens cartésien adj m p 0.06 0.68 0.00 0.07 +carême_prenant carême_prenant nom m s 0.00 0.07 0.00 0.07 +carême carême nom m s 0.25 1.96 0.25 1.82 +carêmes carême nom m p 0.25 1.96 0.00 0.14 +carénage carénage nom m s 0.04 0.41 0.04 0.34 +carénages carénage nom m p 0.04 0.41 0.00 0.07 +caréner caréner ver 0.01 0.14 0.01 0.00 inf; +caréné caréné adj m s 0.00 0.07 0.00 0.07 +carénées caréner ver f p 0.01 0.14 0.00 0.07 par:pas; +carvi carvi nom m s 0.04 0.00 0.04 0.00 +cary cary nom m s 0.01 0.00 0.01 0.00 +caryatides caryatide nom f p 0.00 0.07 0.00 0.07 +caryotype caryotype nom m s 0.04 0.00 0.04 0.00 +cas cas nom m 280.59 217.36 280.59 217.36 +casa casa nom f s 1.49 2.57 1.49 2.57 +casablancaises casablancais adj f p 0.00 0.07 0.00 0.07 +casaient caser ver 4.76 7.70 0.01 0.07 ind:imp:3p; +casait caser ver 4.76 7.70 0.01 0.27 ind:imp:3s; +casanier casanier adj m s 0.46 0.81 0.20 0.47 +casaniers casanier adj m p 0.46 0.81 0.13 0.07 +casanière casanier adj f s 0.46 0.81 0.13 0.20 +casanières casanier adj f p 0.46 0.81 0.01 0.07 +casant caser ver 4.76 7.70 0.00 0.07 par:pre; +casaque casaque nom f s 0.45 2.84 0.18 2.16 +casaques casaque nom f p 0.45 2.84 0.27 0.68 +casaquin casaquin nom m s 0.00 0.14 0.00 0.14 +casas caser ver 4.76 7.70 0.11 0.47 ind:pas:2s; +casbah casbah nom f s 1.76 4.32 1.76 4.32 +cascadaient cascader ver 0.27 1.62 0.00 0.20 ind:imp:3p; +cascadait cascader ver 0.27 1.62 0.00 0.34 ind:imp:3s; +cascadant cascader ver 0.27 1.62 0.00 0.07 par:pre; +cascadas cascader ver 0.27 1.62 0.00 0.07 ind:pas:2s; +cascade cascade nom f s 4.41 11.55 3.19 7.30 +cascadent cascader ver 0.27 1.62 0.00 0.20 ind:pre:3p; +cascader cascader ver 0.27 1.62 0.27 0.20 inf; +cascades cascade nom f p 4.41 11.55 1.22 4.26 +cascadeur cascadeur nom m s 2.81 0.27 1.88 0.14 +cascadeurs cascadeur nom m p 2.81 0.27 0.65 0.14 +cascadeuse cascadeur nom f s 2.81 0.27 0.28 0.00 +cascadèrent cascader ver 0.27 1.62 0.00 0.07 ind:pas:3p; +cascadé cascader ver m s 0.27 1.62 0.00 0.07 par:pas; +cascara cascara nom f s 0.04 0.00 0.04 0.00 +cascatelle cascatelle nom f s 0.00 0.14 0.00 0.07 +cascatelles cascatelle nom f p 0.00 0.14 0.00 0.07 +cascher cascher adj 0.03 0.00 0.03 0.00 +case case nom f s 5.18 14.53 4.41 9.46 +casemate casemate nom f s 0.01 3.18 0.00 1.55 +casemates casemate nom f p 0.01 3.18 0.01 1.62 +casent caser ver 4.76 7.70 0.02 0.07 ind:pre:3p; +caser caser ver 4.76 7.70 2.12 3.78 ind:pre:2p;inf; +caserai caser ver 4.76 7.70 0.04 0.07 ind:fut:1s; +caserais caser ver 4.76 7.70 0.03 0.07 cnd:pre:1s; +caserait caser ver 4.76 7.70 0.05 0.00 cnd:pre:3s; +caserne caserne nom f s 8.99 16.49 7.97 12.03 +casernement casernement nom m s 0.01 0.68 0.01 0.41 +casernements casernement nom m p 0.01 0.68 0.00 0.27 +caserner caserner ver 0.01 0.34 0.00 0.07 inf; +casernes caserne nom f p 8.99 16.49 1.03 4.46 +caserné caserner ver m s 0.01 0.34 0.01 0.07 par:pas; +casernés caserner ver m p 0.01 0.34 0.00 0.20 par:pas; +cases case nom f p 5.18 14.53 0.78 5.07 +casette casette nom f s 0.06 0.00 0.05 0.00 +casettes casette nom f p 0.06 0.00 0.01 0.00 +cash cash adv 7.25 0.61 7.25 0.61 +casher casher adj s 0.53 0.07 0.53 0.07 +cashmere cashmere nom m s 0.46 0.34 0.46 0.34 +casier casier nom m s 17.81 8.11 15.82 4.46 +casiers casier nom m p 17.81 8.11 1.98 3.65 +casimir casimir nom m s 0.01 0.27 0.01 0.27 +casino casino nom m s 12.75 10.81 10.89 9.80 +casinos casino nom m p 12.75 10.81 1.86 1.01 +casoar casoar nom m s 0.14 0.61 0.13 0.41 +casoars casoar nom m p 0.14 0.61 0.01 0.20 +caspiennes caspienne adj f p 0.01 0.00 0.01 0.00 +casquaient casquer ver 1.92 6.69 0.00 0.07 ind:imp:3p; +casquais casquer ver 1.92 6.69 0.01 0.07 ind:imp:1s;ind:imp:2s; +casquait casquer ver 1.92 6.69 0.01 0.14 ind:imp:3s; +casquant casquer ver 1.92 6.69 0.01 0.20 par:pre; +casque casque nom m s 15.42 29.19 12.11 21.62 +casquent casquer ver 1.92 6.69 0.02 0.00 ind:pre:3p; +casquer casquer ver 1.92 6.69 1.25 1.89 inf; +casquera casquer ver 1.92 6.69 0.02 0.07 ind:fut:3s; +casqueras casquer ver 1.92 6.69 0.00 0.07 ind:fut:2s; +casqueront casquer ver 1.92 6.69 0.00 0.07 ind:fut:3p; +casques casque nom m p 15.42 29.19 3.32 7.57 +casquette casquette nom f s 9.73 38.58 8.64 34.39 +casquettes casquette nom f p 9.73 38.58 1.09 4.19 +casquettiers casquettier nom m p 0.00 0.07 0.00 0.07 +casquettés casquetté adj m p 0.00 0.07 0.00 0.07 +casquez casquer ver 1.92 6.69 0.21 0.14 imp:pre:2p;ind:pre:2p; +casqué casquer ver m s 1.92 6.69 0.11 1.42 par:pas; +casquée casqué adj f s 0.12 4.46 0.00 0.61 +casquées casqué adj f p 0.12 4.46 0.01 0.34 +casqués casqué adj m p 0.12 4.46 0.04 2.57 +cassa casser ver 160.61 92.70 0.12 4.73 ind:pas:3s; +cassable cassable adj s 0.02 0.20 0.01 0.14 +cassables cassable adj m p 0.02 0.20 0.01 0.07 +cassage cassage nom m s 0.16 0.54 0.14 0.41 +cassages cassage nom m p 0.16 0.54 0.03 0.14 +cassai casser ver 160.61 92.70 0.00 0.20 ind:pas:1s; +cassaient casser ver 160.61 92.70 0.12 1.89 ind:imp:3p; +cassais casser ver 160.61 92.70 0.64 0.68 ind:imp:1s;ind:imp:2s; +cassait casser ver 160.61 92.70 0.75 3.78 ind:imp:3s; +cassandre cassandre nom m s 0.06 0.07 0.06 0.07 +cassant casser ver 160.61 92.70 0.59 2.64 par:pre; +cassante cassant adj f s 0.35 2.77 0.04 0.88 +cassantes cassant adj f p 0.35 2.77 0.00 0.41 +cassants cassant adj m p 0.35 2.77 0.02 0.27 +cassate cassate nom f s 0.00 0.07 0.00 0.07 +cassation cassation nom f s 0.85 0.95 0.85 0.88 +cassations cassation nom f p 0.85 0.95 0.00 0.07 +casse_bonbon casse_bonbon nom m p 0.10 0.00 0.10 0.00 +casse_burnes casse_burnes nom m 0.05 0.00 0.05 0.00 +casse_cou casse_cou adj s 0.35 0.54 0.35 0.54 +casse_couilles casse_couilles nom m 1.47 0.20 1.47 0.20 +casse_croûte casse_croûte nom m s 1.54 4.46 1.52 4.32 +casse_croûte casse_croûte nom m p 1.54 4.46 0.02 0.14 +casse_cul casse_cul adj 0.01 0.00 0.01 0.00 +casse_dalle casse_dalle nom m 0.29 0.95 0.28 0.81 +casse_dalle casse_dalle nom m p 0.29 0.95 0.01 0.14 +casse_graine casse_graine nom m 0.00 0.95 0.00 0.95 +casse_gueule casse_gueule nom m 0.10 0.07 0.10 0.07 +casse_noisette casse_noisette nom m s 0.22 0.41 0.22 0.41 +casse_noisettes casse_noisettes nom m 0.13 0.27 0.13 0.27 +casse_noix casse_noix nom m 0.12 0.20 0.12 0.20 +casse_pattes casse_pattes nom m 0.03 0.20 0.03 0.20 +casse_pieds casse_pieds adj s 0.87 1.22 0.87 1.22 +casse_pipe casse_pipe nom m s 0.50 0.74 0.50 0.74 +casse_pipes casse_pipes nom m 0.02 0.20 0.02 0.20 +casse_tête casse_tête nom m 0.69 0.88 0.69 0.88 +casse casser ver 160.61 92.70 41.32 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cassement cassement nom m s 0.00 0.20 0.00 0.14 +cassements cassement nom m p 0.00 0.20 0.00 0.07 +cassent casser ver 160.61 92.70 3.78 2.50 ind:pre:3p; +casser casser ver 160.61 92.70 36.24 30.14 inf; +cassera casser ver 160.61 92.70 1.47 0.81 ind:fut:3s; +casserai casser ver 160.61 92.70 1.58 0.74 ind:fut:1s; +casseraient casser ver 160.61 92.70 0.04 0.07 cnd:pre:3p; +casserais casser ver 160.61 92.70 0.42 0.41 cnd:pre:1s;cnd:pre:2s; +casserait casser ver 160.61 92.70 0.51 0.61 cnd:pre:3s; +casseras casser ver 160.61 92.70 0.35 0.27 ind:fut:2s; +casserez casser ver 160.61 92.70 0.05 0.00 ind:fut:2p; +casseriez casser ver 160.61 92.70 0.03 0.00 cnd:pre:2p; +casserole casserole nom f s 4.95 22.84 2.91 16.22 +casseroles casserole nom f p 4.95 22.84 2.05 6.62 +casserolée casserolée nom f s 0.00 0.34 0.00 0.27 +casserolées casserolée nom f p 0.00 0.34 0.00 0.07 +casserons casser ver 160.61 92.70 0.01 0.07 ind:fut:1p; +casseront casser ver 160.61 92.70 0.25 0.27 ind:fut:3p; +casses casser ver 160.61 92.70 7.47 1.55 ind:pre:2s;sub:pre:2s; +cassetins cassetin nom m p 0.00 0.07 0.00 0.07 +cassette cassette nom f s 32.40 6.42 23.55 4.05 +cassettes cassette nom f p 32.40 6.42 8.86 2.36 +casseur casseur nom m s 1.46 3.18 0.71 1.76 +casseurs casseur nom m p 1.46 3.18 0.68 1.28 +casseuse casseur nom f s 1.46 3.18 0.07 0.07 +casseuses casseuse nom f p 0.01 0.07 0.01 0.00 +cassez casser ver 160.61 92.70 7.91 1.08 imp:pre:2p;ind:pre:2p; +cassier cassier nom m s 0.00 0.07 0.00 0.07 +cassiez casser ver 160.61 92.70 0.07 0.07 ind:imp:2p; +cassine cassine nom f s 0.00 1.55 0.00 1.55 +cassis cassis nom m 0.67 3.18 0.67 3.18 +cassitérite cassitérite nom f s 0.00 0.07 0.00 0.07 +cassolette cassolette nom f s 0.01 0.68 0.01 0.20 +cassolettes cassolette nom f p 0.01 0.68 0.00 0.47 +cassonade cassonade nom f s 0.32 0.07 0.32 0.07 +cassons casser ver 160.61 92.70 2.13 0.07 imp:pre:1p;ind:pre:1p; +cassoulet cassoulet nom m s 0.52 1.62 0.52 1.62 +cassèrent casser ver 160.61 92.70 0.00 0.47 ind:pas:3p; +cassé casser ver m s 160.61 92.70 42.71 15.88 par:pas; +cassée casser ver f s 160.61 92.70 9.30 4.12 par:pas; +cassées cassé adj f p 22.07 22.84 1.85 3.11 +cassure cassure nom f s 0.51 3.78 0.44 2.50 +cassures cassure nom f p 0.51 3.78 0.07 1.28 +cassés cassé adj m p 22.07 22.84 2.14 4.05 +castagnait castagner ver 0.10 0.68 0.00 0.14 ind:imp:3s; +castagne castagne nom f s 0.15 0.95 0.15 0.95 +castagnent castagner ver 0.10 0.68 0.00 0.20 ind:pre:3p; +castagner castagner ver 0.10 0.68 0.04 0.27 inf; +castagnes castagner ver 0.10 0.68 0.03 0.00 ind:pre:2s; +castagnette castagnette nom f s 0.99 2.57 0.00 0.07 +castagnettes castagnette nom f p 0.99 2.57 0.99 2.50 +castagné castagner ver m s 0.10 0.68 0.03 0.07 par:pas; +castard castard nom m s 0.01 0.00 0.01 0.00 +caste caste nom f s 0.73 4.19 0.50 3.38 +castel castel nom m s 0.14 1.08 0.14 1.08 +castelet castelet nom m s 0.00 0.07 0.00 0.07 +castes caste nom f p 0.73 4.19 0.23 0.81 +castillan castillan nom m s 0.38 0.61 0.38 0.34 +castillane castillan adj f s 0.23 0.81 0.00 0.27 +castillanes castillan adj f p 0.23 0.81 0.00 0.07 +castillans castillan adj m p 0.23 0.81 0.00 0.07 +castille castille nom f s 0.01 0.00 0.01 0.00 +castine castine nom f s 0.07 0.07 0.07 0.07 +casting casting nom m s 3.03 0.20 2.99 0.20 +castings casting nom m p 3.03 0.20 0.04 0.00 +castor castor nom m s 2.86 1.76 2.40 1.08 +castors castor nom m p 2.86 1.76 0.46 0.68 +castrat castrat nom m s 0.09 0.41 0.06 0.14 +castrateur castrateur adj m s 0.08 0.34 0.01 0.00 +castration castration nom f s 0.47 1.28 0.47 1.28 +castratrice castratrice adj f s 0.07 0.00 0.07 0.00 +castratrices castrateur adj f p 0.08 0.34 0.04 0.07 +castrats castrat nom m p 0.09 0.41 0.03 0.27 +castrer castrer ver 1.58 0.47 0.47 0.14 inf; +castreur castreur nom m s 0.00 0.20 0.00 0.14 +castreurs castreur nom m p 0.00 0.20 0.00 0.07 +castrez castrer ver 1.58 0.47 0.04 0.00 imp:pre:2p; +castrisme castrisme nom m s 0.14 0.00 0.14 0.00 +castriste castriste adj f s 0.04 0.07 0.02 0.07 +castristes castriste adj m p 0.04 0.07 0.02 0.00 +castrons castrer ver 1.58 0.47 0.01 0.00 imp:pre:1p; +castré castrer ver m s 1.58 0.47 0.97 0.27 par:pas; +castrée castrer ver f s 1.58 0.47 0.01 0.00 par:pas; +castrés castrer ver m p 1.58 0.47 0.07 0.07 par:pas; +casé caser ver m s 4.76 7.70 0.73 0.74 par:pas; +casée caser ver f s 4.76 7.70 0.31 0.41 par:pas; +casuel casuel nom m s 0.00 0.41 0.00 0.41 +casées caser ver f p 4.76 7.70 0.01 0.14 par:pas; +caséeuse caséeux adj f s 0.00 0.07 0.00 0.07 +caséine caséine nom f s 0.14 0.00 0.14 0.00 +casuistes casuiste nom m p 0.00 0.07 0.00 0.07 +casuistique casuistique nom f s 0.01 0.41 0.01 0.41 +casuistiques casuistique adj p 0.00 0.20 0.00 0.07 +casus_belli casus_belli nom m 0.05 0.00 0.05 0.00 +casés caser ver m p 4.76 7.70 0.33 0.34 par:pas; +cata cata nom f s 0.61 0.34 0.61 0.34 +catabolique catabolique adj m s 0.01 0.00 0.01 0.00 +catachrèse catachrèse nom f s 0.01 0.07 0.01 0.07 +cataclysme cataclysme nom m s 0.69 5.27 0.62 4.26 +cataclysmes cataclysme nom m p 0.69 5.27 0.06 1.01 +cataclysmique cataclysmique adj s 0.17 0.20 0.13 0.14 +cataclysmiques cataclysmique adj p 0.17 0.20 0.04 0.07 +catacombe catacombe nom f s 2.04 1.96 0.00 0.20 +catacombes catacombe nom f p 2.04 1.96 2.04 1.76 +catadioptre catadioptre nom m s 0.00 0.14 0.00 0.07 +catadioptres catadioptre nom m p 0.00 0.14 0.00 0.07 +catafalque catafalque nom m s 0.01 1.69 0.01 1.49 +catafalques catafalque nom m p 0.01 1.69 0.00 0.20 +catalan catalan nom m s 1.09 0.54 0.96 0.20 +catalane catalan adj f s 0.74 0.81 0.37 0.20 +catalanes catalan adj f p 0.74 0.81 0.00 0.14 +catalans catalan adj m p 0.74 0.81 0.14 0.27 +catalauniques catalaunique adj m p 0.01 0.20 0.01 0.20 +catalepsie catalepsie nom f s 0.51 0.61 0.51 0.47 +catalepsies catalepsie nom f p 0.51 0.61 0.00 0.14 +cataleptique cataleptique adj s 0.23 0.47 0.23 0.47 +cataleptiques cataleptique nom p 0.00 0.14 0.00 0.07 +catalogage catalogage nom m s 0.02 0.00 0.02 0.00 +catalogne catalogne nom f s 0.00 0.07 0.00 0.07 +cataloguais cataloguer ver 1.11 2.50 0.00 0.07 ind:imp:1s; +cataloguant cataloguer ver 1.11 2.50 0.01 0.00 par:pre; +catalogue catalogue nom m s 4.87 7.16 3.89 5.61 +cataloguent cataloguer ver 1.11 2.50 0.01 0.07 ind:pre:3p; +cataloguer cataloguer ver 1.11 2.50 0.23 0.27 inf; +cataloguerai cataloguer ver 1.11 2.50 0.02 0.00 ind:fut:1s; +catalogues catalogue nom m p 4.87 7.16 0.98 1.55 +cataloguiez cataloguer ver 1.11 2.50 0.00 0.07 ind:imp:2p; +catalogué cataloguer ver m s 1.11 2.50 0.25 0.81 par:pas; +cataloguée cataloguer ver f s 1.11 2.50 0.18 0.34 par:pas; +cataloguées cataloguer ver f p 1.11 2.50 0.04 0.27 par:pas; +catalogués cataloguer ver m p 1.11 2.50 0.06 0.41 par:pas; +catalpa catalpa nom m s 0.00 0.47 0.00 0.27 +catalpas catalpa nom m p 0.00 0.47 0.00 0.20 +catalyser catalyser ver 0.07 0.00 0.05 0.00 inf; +catalyses catalyse nom f p 0.00 0.07 0.00 0.07 +catalyseur catalyseur nom m s 1.31 0.20 1.23 0.07 +catalyseurs catalyseur nom m p 1.31 0.20 0.08 0.14 +catalysé catalyser ver m s 0.07 0.00 0.01 0.00 par:pas; +catalytique catalytique adj m s 0.16 0.00 0.14 0.00 +catalytiques catalytique adj m p 0.16 0.00 0.01 0.00 +catamaran catamaran nom m s 0.18 0.27 0.18 0.27 +cataphotes cataphote nom m p 0.00 0.14 0.00 0.14 +cataplasme cataplasme nom m s 0.35 1.49 0.08 1.22 +cataplasmes cataplasme nom m p 0.35 1.49 0.28 0.27 +cataplexie cataplexie nom f s 0.02 0.00 0.02 0.00 +catapulta catapulter ver 0.29 1.62 0.01 0.07 ind:pas:3s; +catapultait catapulter ver 0.29 1.62 0.00 0.07 ind:imp:3s; +catapulte catapulte nom f s 1.42 0.74 0.16 0.27 +catapulter catapulter ver 0.29 1.62 0.04 0.14 inf; +catapultera catapulter ver 0.29 1.62 0.01 0.00 ind:fut:3s; +catapultes catapulte nom f p 1.42 0.74 1.25 0.47 +catapulté catapulter ver m s 0.29 1.62 0.14 0.47 par:pas; +catapultée catapulter ver f s 0.29 1.62 0.02 0.27 par:pas; +catapultées catapulter ver f p 0.29 1.62 0.00 0.07 par:pas; +catapultés catapulter ver m p 0.29 1.62 0.00 0.20 par:pas; +cataracte cataracte nom f s 0.54 3.51 0.51 2.50 +cataractes cataracte nom f p 0.54 3.51 0.03 1.01 +catarrhal catarrhal adj m s 0.00 0.07 0.00 0.07 +catarrhe catarrhe nom m s 0.02 0.14 0.02 0.14 +catarrheuse catarrheux adj f s 0.00 0.34 0.00 0.07 +catarrheux catarrheux adj m 0.00 0.34 0.00 0.27 +catastropha catastropher ver 0.16 0.81 0.00 0.07 ind:pas:3s; +catastrophait catastropher ver 0.16 0.81 0.00 0.07 ind:imp:3s; +catastrophas catastropher ver 0.16 0.81 0.00 0.07 ind:pas:2s; +catastrophe catastrophe nom f s 16.47 30.14 14.71 22.91 +catastropher catastropher ver 0.16 0.81 0.10 0.00 inf; +catastrophes catastrophe nom f p 16.47 30.14 1.76 7.23 +catastrophique catastrophique adj s 2.78 3.72 1.77 3.24 +catastrophiquement catastrophiquement adv 0.00 0.14 0.00 0.14 +catastrophiques catastrophique adj p 2.78 3.72 1.01 0.47 +catastrophisme catastrophisme nom m s 0.00 0.07 0.00 0.07 +catastrophiste catastrophiste adj s 0.01 0.00 0.01 0.00 +catastrophé catastropher ver m s 0.16 0.81 0.04 0.41 par:pas; +catastrophée catastropher ver f s 0.16 0.81 0.02 0.20 par:pas; +catatonie catatonie nom f s 0.19 0.00 0.19 0.00 +catatonique catatonique adj s 0.37 0.07 0.37 0.07 +catatoniques catatonique nom p 0.05 0.00 0.03 0.00 +catch catch nom m s 2.47 0.88 2.47 0.88 +catcher catcher ver 0.50 0.07 0.33 0.00 inf; +catcheur catcheur nom m s 0.76 0.41 0.60 0.27 +catcheurs catcheur nom m p 0.76 0.41 0.10 0.07 +catcheuse catcheur nom f s 0.76 0.41 0.04 0.00 +catcheuses catcheur nom f p 0.76 0.41 0.02 0.07 +catché catcher ver m s 0.50 0.07 0.17 0.07 par:pas; +caterpillar caterpillar nom m 0.03 0.00 0.03 0.00 +catgut catgut nom m s 0.05 0.14 0.05 0.07 +catguts catgut nom m p 0.05 0.14 0.00 0.07 +cathare cathare adj m s 0.00 0.47 0.00 0.14 +cathares cathare nom m p 0.00 0.68 0.00 0.61 +catharsis catharsis nom f 0.23 0.07 0.23 0.07 +cathartique cathartique adj s 0.19 0.07 0.19 0.07 +catherinette catherinette nom f s 0.00 0.07 0.00 0.07 +cathexis cathexis nom f 0.01 0.00 0.01 0.00 +catho catho nom s 1.19 0.95 1.01 0.41 +cathode cathode nom f s 0.32 0.00 0.32 0.00 +cathodique cathodique adj s 0.19 0.20 0.18 0.07 +cathodiques cathodique adj m p 0.19 0.20 0.01 0.14 +catholicisme catholicisme nom m s 0.77 2.43 0.77 2.43 +catholicité catholicité nom f s 0.00 0.20 0.00 0.20 +catholique catholique adj s 13.26 27.03 10.91 21.28 +catholiquement catholiquement adv 0.00 0.14 0.00 0.14 +catholiques catholique nom p 5.28 13.99 2.71 8.04 +cathos catho nom p 1.19 0.95 0.18 0.54 +cathèdre cathèdre nom f s 0.00 0.20 0.00 0.07 +cathèdres cathèdre nom f p 0.00 0.20 0.00 0.14 +cathédral cathédral adj m s 0.00 0.07 0.00 0.07 +cathédrale cathédrale nom f s 4.67 21.28 3.24 17.23 +cathédrales cathédrale nom f p 4.67 21.28 1.43 4.05 +cathéter cathéter nom m s 0.73 0.00 0.73 0.00 +cathétérisme cathétérisme nom m s 0.01 0.00 0.01 0.00 +cati cati nom m s 0.70 0.00 0.70 0.00 +catiche catiche nom m s 0.00 0.07 0.00 0.07 +catin catin nom f s 2.83 1.49 2.21 1.28 +catins catin nom f p 2.83 1.49 0.63 0.20 +cation cation nom m s 0.01 0.00 0.01 0.00 +cato cato nom f s 1.00 0.00 1.00 0.00 +catoblépas catoblépas nom m 0.00 0.07 0.00 0.07 +catogan catogan nom m s 0.04 0.54 0.03 0.47 +catogans catogan nom m p 0.04 0.54 0.01 0.07 +cattleyas cattleya nom m p 0.00 0.07 0.00 0.07 +caté caté nom m s 0.06 0.07 0.06 0.07 +catéchisme catéchisme nom m s 2.36 4.93 2.36 4.80 +catéchismes catéchisme nom m p 2.36 4.93 0.00 0.14 +catéchiste catéchiste nom s 0.23 0.14 0.23 0.14 +catéchisée catéchiser ver f s 0.00 0.14 0.00 0.14 par:pas; +catécholamine catécholamine nom f s 0.01 0.00 0.01 0.00 +catéchèse catéchèse nom f s 0.00 0.07 0.00 0.07 +catéchumène catéchumène nom s 0.00 0.34 0.00 0.14 +catéchumènes catéchumène nom p 0.00 0.34 0.00 0.20 +catégorie catégorie nom f s 6.28 13.24 5.19 8.31 +catégories catégorie nom f p 6.28 13.24 1.09 4.93 +catégorique catégorique adj s 1.13 5.47 1.08 4.80 +catégoriquement catégoriquement adv 0.70 1.69 0.70 1.69 +catégoriques catégorique adj p 1.13 5.47 0.04 0.68 +catégorisation catégorisation nom f s 0.03 0.00 0.03 0.00 +catégorise catégoriser ver 0.08 0.07 0.03 0.00 imp:pre:2s;ind:pre:3s; +catégoriser catégoriser ver 0.08 0.07 0.02 0.07 inf; +catégorisé catégoriser ver m s 0.08 0.07 0.03 0.00 par:pas; +caténaire caténaire nom f s 0.17 0.20 0.17 0.00 +caténaires caténaire nom f p 0.17 0.20 0.00 0.20 +caucasien caucasien adj m s 0.81 0.68 0.59 0.14 +caucasienne caucasien adj f s 0.81 0.68 0.22 0.34 +caucasiens caucasien nom m p 0.19 0.14 0.03 0.14 +caucasique caucasique adj s 0.03 0.00 0.03 0.00 +cauchemar cauchemar nom m s 36.94 26.62 26.80 19.66 +cauchemardais cauchemarder ver 0.08 0.41 0.00 0.07 ind:imp:1s; +cauchemarde cauchemarder ver 0.08 0.41 0.02 0.00 ind:pre:1s; +cauchemarder cauchemarder ver 0.08 0.41 0.04 0.27 inf; +cauchemardes cauchemarder ver 0.08 0.41 0.00 0.07 ind:pre:2s; +cauchemardesque cauchemardesque adj s 0.41 0.27 0.36 0.14 +cauchemardesques cauchemardesque adj f p 0.41 0.27 0.04 0.14 +cauchemardeuse cauchemardeux adj f s 0.00 0.20 0.00 0.07 +cauchemardeuses cauchemardeux adj f p 0.00 0.20 0.00 0.07 +cauchemardeux cauchemardeux adj m 0.00 0.20 0.00 0.07 +cauchemardé cauchemarder ver m s 0.08 0.41 0.02 0.00 par:pas; +cauchemars cauchemar nom m p 36.94 26.62 10.14 6.96 +cauchois cauchois adj m 0.00 0.27 0.00 0.14 +cauchoise cauchois nom f s 0.00 0.07 0.00 0.07 +cauchoises cauchois adj f p 0.00 0.27 0.00 0.14 +caudal caudal adj m s 0.06 0.20 0.04 0.00 +caudale caudal adj f s 0.06 0.20 0.02 0.14 +caudales caudal adj f p 0.06 0.20 0.00 0.07 +caudebec caudebec nom m s 0.00 0.14 0.00 0.14 +caudillo caudillo nom m s 0.00 0.07 0.00 0.07 +caudines caudines adj f p 0.00 0.07 0.00 0.07 +cauri cauri nom m s 0.00 0.74 0.00 0.07 +cauris cauri nom m p 0.00 0.74 0.00 0.68 +causa causer ver 63.65 69.93 0.38 1.28 ind:pas:3s; +causai causer ver 63.65 69.93 0.01 0.14 ind:pas:1s; +causaient causer ver 63.65 69.93 0.25 2.57 ind:imp:3p; +causais causer ver 63.65 69.93 0.25 0.74 ind:imp:1s;ind:imp:2s; +causait causer ver 63.65 69.93 0.99 6.55 ind:imp:3s; +causal causal adj m s 0.01 0.14 0.01 0.14 +causaliste causaliste adj s 0.00 0.07 0.00 0.07 +causalité causalité nom f s 0.23 0.34 0.23 0.20 +causalités causalité nom f p 0.23 0.34 0.00 0.14 +causant causer ver 63.65 69.93 1.15 1.76 par:pre; +causante causant adj f s 0.51 1.96 0.20 0.20 +causantes causant adj f p 0.51 1.96 0.00 0.07 +causants causant adj m p 0.51 1.96 0.01 0.20 +cause cause nom f s 218.60 197.30 213.51 188.04 +causent causer ver 63.65 69.93 1.47 2.36 ind:pre:3p; +causer causer ver 63.65 69.93 15.46 18.31 inf; +causera causer ver 63.65 69.93 1.59 0.20 ind:fut:3s; +causerai causer ver 63.65 69.93 0.25 0.14 ind:fut:1s; +causeraient causer ver 63.65 69.93 0.01 0.14 cnd:pre:3p; +causerais causer ver 63.65 69.93 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +causerait causer ver 63.65 69.93 0.91 0.61 cnd:pre:3s; +causeras causer ver 63.65 69.93 0.16 0.00 ind:fut:2s; +causerez causer ver 63.65 69.93 0.08 0.27 ind:fut:2p; +causerie causerie nom f s 0.30 2.09 0.18 1.01 +causeries causerie nom f p 0.30 2.09 0.12 1.08 +causerions causer ver 63.65 69.93 0.01 0.14 cnd:pre:1p; +causerons causer ver 63.65 69.93 0.03 0.14 ind:fut:1p; +causeront causer ver 63.65 69.93 0.12 0.00 ind:fut:3p; +causes cause nom f p 218.60 197.30 5.08 9.26 +causette causette nom f s 0.71 1.76 0.69 1.62 +causettes causette nom f p 0.71 1.76 0.02 0.14 +causeur causeur adj m s 0.29 0.14 0.29 0.14 +causeurs causeur nom m p 0.58 0.68 0.00 0.07 +causeuse causeur nom f s 0.58 0.68 0.05 0.14 +causeuses causeur nom f p 0.58 0.68 0.40 0.14 +causez causer ver 63.65 69.93 1.24 0.54 imp:pre:2p;ind:pre:2p; +causiez causer ver 63.65 69.93 0.04 0.07 ind:imp:2p; +causions causer ver 63.65 69.93 0.29 1.01 ind:imp:1p; +causâmes causer ver 63.65 69.93 0.00 0.61 ind:pas:1p; +causons causer ver 63.65 69.93 0.58 0.95 imp:pre:1p;ind:pre:1p; +causse causse nom m s 0.00 0.95 0.00 0.74 +caussenard caussenard adj m s 0.00 0.07 0.00 0.07 +causses causse nom m p 0.00 0.95 0.00 0.20 +causèrent causer ver 63.65 69.93 0.03 0.47 ind:pas:3p; +causticité causticité nom f s 0.00 0.07 0.00 0.07 +caustique caustique adj s 0.36 1.15 0.34 1.15 +caustiques caustique adj f p 0.36 1.15 0.02 0.00 +causé causer ver m s 63.65 69.93 14.06 9.66 imp:pre:2s;par:pas;par:pas; +causée causer ver f s 63.65 69.93 2.11 1.49 par:pas; +causées causer ver f p 63.65 69.93 0.94 0.95 par:pas; +causés causer ver m p 63.65 69.93 1.47 1.35 par:pas; +cauteleuse cauteleux adj f s 0.00 1.01 0.00 0.20 +cauteleusement cauteleusement adv 0.00 0.20 0.00 0.20 +cauteleuses cauteleux adj f p 0.00 1.01 0.00 0.07 +cauteleux cauteleux adj m s 0.00 1.01 0.00 0.74 +caution caution nom f s 10.88 2.23 10.71 2.23 +cautionnaire cautionnaire nom s 0.14 0.00 0.14 0.00 +cautionnait cautionner ver 0.93 0.27 0.00 0.07 ind:imp:3s; +cautionne cautionner ver 0.93 0.27 0.20 0.00 ind:pre:1s;ind:pre:3s; +cautionnement cautionnement nom m s 0.02 0.00 0.02 0.00 +cautionnent cautionner ver 0.93 0.27 0.02 0.07 ind:pre:3p; +cautionner cautionner ver 0.93 0.27 0.27 0.07 inf; +cautionnerait cautionner ver 0.93 0.27 0.02 0.00 cnd:pre:3s; +cautionnes cautionner ver 0.93 0.27 0.06 0.00 ind:pre:2s; +cautionnez cautionner ver 0.93 0.27 0.04 0.00 imp:pre:2p;ind:pre:2p; +cautionné cautionner ver m s 0.93 0.27 0.31 0.00 par:pas; +cautionnée cautionner ver f s 0.93 0.27 0.00 0.07 par:pas; +cautions caution nom f p 10.88 2.23 0.17 0.00 +cautèle cautèle nom f s 0.00 0.27 0.00 0.14 +cautèles cautèle nom f p 0.00 0.27 0.00 0.14 +cautère cautère nom m s 0.13 0.54 0.12 0.41 +cautères cautère nom m p 0.13 0.54 0.01 0.14 +cautérisant cautériser ver 0.58 0.41 0.01 0.00 par:pre; +cautérisation cautérisation nom f s 0.03 0.07 0.03 0.07 +cautérise cautériser ver 0.58 0.41 0.05 0.14 imp:pre:2s;ind:pre:3s; +cautériser cautériser ver 0.58 0.41 0.32 0.27 inf; +cautérisée cautériser ver f s 0.58 0.41 0.04 0.00 par:pas; +cautérisées cautériser ver f p 0.58 0.41 0.16 0.00 par:pas; +cava caver ver 0.17 0.27 0.17 0.00 ind:pas:3s; +cavaillon cavaillon nom m s 0.00 0.34 0.00 0.34 +cavalaient cavaler ver 2.12 8.99 0.00 0.54 ind:imp:3p; +cavalais cavaler ver 2.12 8.99 0.14 0.20 ind:imp:1s;ind:imp:2s; +cavalait cavaler ver 2.12 8.99 0.15 0.27 ind:imp:3s; +cavalant cavaler ver 2.12 8.99 0.01 0.74 par:pre; +cavalcadaient cavalcader ver 0.00 0.68 0.00 0.14 ind:imp:3p; +cavalcadait cavalcader ver 0.00 0.68 0.00 0.07 ind:imp:3s; +cavalcadant cavalcader ver 0.00 0.68 0.00 0.14 par:pre; +cavalcade cavalcade nom f s 0.22 3.72 0.04 2.43 +cavalcadent cavalcader ver 0.00 0.68 0.00 0.07 ind:pre:3p; +cavalcader cavalcader ver 0.00 0.68 0.00 0.27 inf; +cavalcades cavalcade nom f p 0.22 3.72 0.19 1.28 +cavale cavale nom f s 4.00 4.32 3.87 4.26 +cavalent cavaler ver 2.12 8.99 0.16 0.74 ind:pre:3p; +cavaler cavaler ver 2.12 8.99 0.68 3.04 inf; +cavalerais cavaler ver 2.12 8.99 0.00 0.07 cnd:pre:2s; +cavaleras cavaler ver 2.12 8.99 0.01 0.07 ind:fut:2s; +cavalerie cavalerie nom f s 6.60 12.70 6.60 12.50 +cavaleries cavalerie nom f p 6.60 12.70 0.00 0.20 +cavaleront cavaler ver 2.12 8.99 0.01 0.00 ind:fut:3p; +cavales cavaler ver 2.12 8.99 0.17 0.14 ind:pre:2s; +cavaleur cavaleur nom m s 0.19 0.20 0.17 0.00 +cavaleurs cavaleur nom m p 0.19 0.20 0.00 0.07 +cavaleuse cavaleur nom f s 0.19 0.20 0.01 0.14 +cavalez cavaler ver 2.12 8.99 0.02 0.07 imp:pre:2p;ind:pre:2p; +cavalier cavalier nom m s 10.73 34.19 6.45 13.31 +cavaliers cavalier nom m p 10.73 34.19 3.06 18.85 +cavalière cavalier nom f s 10.73 34.19 1.22 1.62 +cavalièrement cavalièrement adv 0.09 0.34 0.09 0.34 +cavalières cavalière nom f p 0.22 0.00 0.22 0.00 +cavalé cavaler ver m s 2.12 8.99 0.23 1.08 par:pas; +cave cave nom f s 22.40 56.35 19.98 42.09 +caveau caveau nom m s 2.27 5.68 1.99 5.14 +caveaux caveau nom m p 2.27 5.68 0.29 0.54 +cavecés cavecé adj m p 0.00 0.07 0.00 0.07 +caver caver ver 0.17 0.27 0.00 0.14 inf; +caverne caverne nom f s 6.58 10.54 3.88 6.82 +cavernes caverne nom f p 6.58 10.54 2.70 3.72 +caverneuse caverneux adj f s 0.39 3.04 0.15 1.35 +caverneuses caverneux adj f p 0.39 3.04 0.01 0.41 +caverneux caverneux adj m 0.39 3.04 0.22 1.28 +cavernicoles cavernicole adj p 0.00 0.07 0.00 0.07 +caves cave nom f p 22.40 56.35 2.42 14.26 +cavette cavette nom f s 0.14 0.54 0.14 0.47 +cavettes cavette nom f p 0.14 0.54 0.00 0.07 +caviar caviar nom m s 6.29 4.26 6.29 4.26 +caviardé caviarder ver m s 0.00 0.07 0.00 0.07 par:pas; +cavillon cavillon nom m s 0.00 0.27 0.00 0.07 +cavillonne cavillon nom f s 0.00 0.27 0.00 0.07 +cavillons cavillon nom m p 0.00 0.27 0.00 0.14 +caviste caviste nom s 0.14 0.14 0.14 0.14 +cavitation cavitation nom f s 0.02 0.00 0.02 0.00 +cavité cavité nom f s 1.89 2.16 1.26 1.49 +cavités cavité nom f p 1.89 2.16 0.63 0.68 +cavé caver ver m s 0.17 0.27 0.01 0.14 par:pas; +cavée cavée nom f s 0.00 0.27 0.00 0.14 +cavées cavée nom f p 0.00 0.27 0.00 0.14 +cavum cavum nom m 0.01 0.00 0.01 0.00 +cayenne cayenne nom f s 0.01 0.07 0.01 0.07 +ce ce pro_dem m s 5219.10 2958.58 5219.10 2958.58 +ceci ceci pro_dem s 133.07 53.78 133.07 53.78 +ceignait ceindre ver 0.56 4.32 0.00 0.41 ind:imp:3s; +ceignant ceindre ver 0.56 4.32 0.01 0.27 par:pre; +ceignent ceindre ver 0.56 4.32 0.00 0.14 ind:pre:3p; +ceignit ceindre ver 0.56 4.32 0.00 0.27 ind:pas:3s; +ceindra ceindre ver 0.56 4.32 0.14 0.00 ind:fut:3s; +ceindrait ceindre ver 0.56 4.32 0.00 0.14 cnd:pre:3s; +ceindre ceindre ver 0.56 4.32 0.03 0.41 inf; +ceins ceindre ver 0.56 4.32 0.00 0.07 imp:pre:2s; +ceint ceindre ver m s 0.56 4.32 0.17 1.35 ind:pre:3s;par:pas; +ceinte ceindre ver f s 0.56 4.32 0.10 0.61 par:pas; +ceintes ceindre ver f p 0.56 4.32 0.01 0.07 par:pas; +ceints ceindre ver m p 0.56 4.32 0.11 0.61 par:pas; +ceintura ceinturer ver 0.28 6.08 0.00 0.14 ind:pas:3s; +ceinturaient ceinturer ver 0.28 6.08 0.01 0.14 ind:imp:3p; +ceinturait ceinturer ver 0.28 6.08 0.01 0.54 ind:imp:3s; +ceinturant ceinturer ver 0.28 6.08 0.00 0.27 par:pre; +ceinture ceinture nom f s 22.57 35.20 19.41 32.23 +ceinturent ceinturer ver 0.28 6.08 0.00 0.34 ind:pre:3p; +ceinturer ceinturer ver 0.28 6.08 0.02 0.47 inf; +ceintures ceinture nom f p 22.57 35.20 3.17 2.97 +ceinturez ceinturer ver 0.28 6.08 0.01 0.00 imp:pre:2p; +ceinturon ceinturon nom m s 0.91 7.23 0.70 5.88 +ceinturons ceinturon nom m p 0.91 7.23 0.20 1.35 +ceinturât ceinturer ver 0.28 6.08 0.00 0.07 sub:imp:3s; +ceinturèrent ceinturer ver 0.28 6.08 0.00 0.14 ind:pas:3p; +ceinturé ceinturer ver m s 0.28 6.08 0.00 1.49 par:pas; +ceinturée ceinturer ver f s 0.28 6.08 0.02 0.81 par:pas; +ceinturées ceinturer ver f p 0.28 6.08 0.00 0.41 par:pas; +ceinturés ceinturer ver m p 0.28 6.08 0.02 0.68 par:pas; +cela cela pro_dem s 492.56 741.82 492.56 741.82 +celait celer ver 0.68 0.34 0.00 0.07 ind:imp:3s; +celer celer ver 0.68 0.34 0.40 0.20 inf; +cella cella nom f s 0.28 0.81 0.28 0.81 +celle_ci celle_ci pro_dem f s 38.71 57.57 38.71 57.57 +celle_là celle_là pro_dem f s 52.63 28.65 52.63 28.65 +celle celle pro_dem f s 141.28 299.46 141.28 299.46 +celles_ci celles_ci pro_dem f p 6.64 9.39 6.64 9.39 +celles_là celles_là pro_dem f p 5.90 6.08 5.90 6.08 +celles celles pro_dem f p 34.73 107.97 34.73 107.97 +cellier cellier nom m s 1.11 3.65 1.01 2.97 +celliers cellier nom m p 1.11 3.65 0.10 0.68 +cellophane cellophane nom f s 0.39 2.43 0.39 2.43 +cellulaire cellulaire adj s 3.19 2.03 2.76 1.62 +cellulairement cellulairement adv 0.00 0.07 0.00 0.07 +cellulaires cellulaire adj p 3.19 2.03 0.43 0.41 +cellular cellular nom m s 0.01 0.20 0.01 0.20 +cellule cellule nom f s 42.98 46.28 31.06 35.34 +cellules cellule nom f p 42.98 46.28 11.92 10.95 +cellulite cellulite nom f s 0.66 1.15 0.56 1.08 +cellulites cellulite nom f p 0.66 1.15 0.10 0.07 +celluliteux celluliteux adj m s 0.00 0.14 0.00 0.14 +celluloïd celluloïd nom m s 0.08 3.38 0.08 3.38 +cellulose cellulose nom f s 0.12 0.27 0.12 0.27 +cellérier cellérier adj m s 0.00 0.07 0.00 0.07 +celte celte adj s 0.44 1.22 0.32 0.68 +celtes celte adj p 0.44 1.22 0.13 0.54 +celtique celtique adj s 0.15 1.08 0.09 0.81 +celtiques celtique adj p 0.15 1.08 0.06 0.27 +celtisants celtisant adj m p 0.00 0.07 0.00 0.07 +celtisme celtisme nom m s 0.00 0.07 0.00 0.07 +celée celer ver f s 0.68 0.34 0.00 0.07 par:pas; +celui_ci celui_ci pro_dem m s 45.97 71.76 45.97 71.76 +celui_là celui_là pro_dem m s 78.13 56.89 78.13 56.89 +celui celui pro_dem m s 250.13 319.19 250.13 319.19 +cendraient cendrer ver 0.00 0.68 0.00 0.07 ind:imp:3p; +cendrait cendrer ver 0.00 0.68 0.00 0.14 ind:imp:3s; +cendre cendre nom f s 17.18 28.85 3.24 11.08 +cendres cendre nom f p 17.18 28.85 13.95 17.77 +cendreuse cendreux adj f s 0.00 0.95 0.00 0.34 +cendreuses cendreux adj f p 0.00 0.95 0.00 0.20 +cendreux cendreux adj m s 0.00 0.95 0.00 0.41 +cendrier cendrier nom m s 4.35 14.73 3.86 10.95 +cendriers cendrier nom m p 4.35 14.73 0.48 3.78 +cendrillon cendrillon nom f s 0.07 0.20 0.02 0.07 +cendrillons cendrillon nom f p 0.07 0.20 0.05 0.14 +cendré cendré adj m s 0.09 2.03 0.03 0.81 +cendrée cendrée adj f s 0.03 0.00 0.03 0.00 +cendrées cendré adj f p 0.09 2.03 0.02 0.20 +cendrés cendré adj m p 0.09 2.03 0.04 0.61 +cens cens nom m 0.03 0.34 0.03 0.34 +censeur censeur nom m s 0.88 1.96 0.68 1.08 +censeurs censeur nom m p 0.88 1.96 0.20 0.88 +censier censier nom m s 0.00 0.07 0.00 0.07 +censitaire censitaire adj m s 0.00 0.14 0.00 0.14 +censé censé adj m s 62.52 8.11 38.22 4.53 +censée censé adj f s 62.52 8.11 13.51 1.76 +censées censé adj f p 62.52 8.11 1.61 0.61 +censément censément adv 0.05 0.41 0.05 0.41 +censuraient censurer ver 2.17 1.89 0.01 0.07 ind:imp:3p; +censurait censurer ver 2.17 1.89 0.01 0.07 ind:imp:3s; +censurant censurer ver 2.17 1.89 0.00 0.07 par:pre; +censure censure nom f s 2.87 3.51 2.87 3.04 +censurer censurer ver 2.17 1.89 0.44 0.61 inf; +censures censurer ver 2.17 1.89 0.14 0.00 ind:pre:2s; +censurez censurer ver 2.17 1.89 0.20 0.00 ind:pre:2p; +censuriez censurer ver 2.17 1.89 0.00 0.07 ind:imp:2p; +censuré censurer ver m s 2.17 1.89 0.88 0.54 imp:pre:2s;par:pas; +censurée censurer ver f s 2.17 1.89 0.11 0.27 par:pas; +censurées censurer ver f p 2.17 1.89 0.04 0.07 par:pas; +censurés censurer ver m p 2.17 1.89 0.06 0.00 par:pas; +censés censé adj m p 62.52 8.11 9.18 1.22 +cent cent adj_num 43.05 135.41 43.05 135.41 +centaine centaine nom f s 29.22 41.82 6.33 10.54 +centaines centaine nom f p 29.22 41.82 22.90 31.28 +centaure centaure nom m s 0.59 0.74 0.42 0.41 +centaures centaure nom m p 0.59 0.74 0.17 0.34 +centaurée centaurée nom f s 0.05 0.00 0.05 0.00 +centavo centavo nom m s 0.20 0.00 0.02 0.00 +centavos centavo nom m p 0.20 0.00 0.18 0.00 +centenaire centenaire nom s 0.55 1.28 0.55 1.08 +centenaires centenaire adj p 0.72 2.77 0.18 1.49 +centigrade centigrade nom m s 0.05 0.07 0.04 0.00 +centigrades centigrade nom m p 0.05 0.07 0.01 0.07 +centigrammes centigramme nom m p 0.10 0.00 0.10 0.00 +centile centile nom m s 0.96 0.00 0.96 0.00 +centilitres centilitre nom m p 0.00 0.14 0.00 0.14 +centime centime nom m s 7.14 5.68 3.25 1.49 +centimes centime nom m p 7.14 5.68 3.88 4.19 +centimètre centimètre nom m s 6.81 27.84 2.48 5.95 +centimètres centimètre nom m p 6.81 27.84 4.33 21.89 +centième centième adj m 0.29 2.64 0.28 2.64 +centièmes centième nom p 0.35 1.35 0.07 0.07 +centon centon nom m s 0.32 0.07 0.32 0.07 +centrafricain centrafricain adj m s 0.01 0.14 0.01 0.00 +centrafricaine centrafricain adj f s 0.01 0.14 0.00 0.14 +centrage centrage nom m s 0.11 0.00 0.11 0.00 +centrait centrer ver 1.38 1.82 0.00 0.14 ind:imp:3s; +central central adj m s 18.14 37.23 10.09 20.74 +centrale centrale nom f s 8.04 6.01 7.34 4.73 +centrales centrale nom f p 8.04 6.01 0.69 1.28 +centralisait centraliser ver 0.34 0.81 0.00 0.07 ind:imp:3s; +centralisation centralisation nom f s 0.16 0.14 0.16 0.14 +centralisatrice centralisateur adj f s 0.00 0.07 0.00 0.07 +centralise centraliser ver 0.34 0.81 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +centraliser centraliser ver 0.34 0.81 0.13 0.14 inf; +centralisiez centraliser ver 0.34 0.81 0.01 0.00 ind:imp:2p; +centralisme centralisme nom m s 0.00 0.41 0.00 0.41 +centralisons centraliser ver 0.34 0.81 0.01 0.00 ind:pre:1p; +centralisé centraliser ver m s 0.34 0.81 0.10 0.20 par:pas; +centralisée centraliser ver f s 0.34 0.81 0.02 0.20 par:pas; +centralisés centraliser ver m p 0.34 0.81 0.01 0.14 par:pas; +centrant centrer ver 1.38 1.82 0.11 0.00 par:pre; +centraux central adj m p 18.14 37.23 0.26 0.54 +centre_ville centre_ville nom m s 2.87 0.54 2.87 0.54 +centre centre nom m s 57.00 84.46 53.46 80.00 +centrer centrer ver 1.38 1.82 0.11 0.14 inf; +centres centre nom m p 57.00 84.46 3.54 4.46 +centrifugation centrifugation nom f s 0.01 0.00 0.01 0.00 +centrifuge centrifuge adj s 0.26 2.36 0.25 2.03 +centrifuges centrifuge adj f p 0.26 2.36 0.01 0.34 +centrifugeur centrifugeur nom m s 0.25 0.07 0.01 0.00 +centrifugeuse centrifugeur nom f s 0.25 0.07 0.24 0.07 +centrifugeuses centrifugeuse nom f p 0.04 0.00 0.04 0.00 +centriole centriole nom m s 0.14 0.00 0.14 0.00 +centripète centripète adj f s 0.02 0.20 0.02 0.14 +centripètes centripète adj p 0.02 0.20 0.00 0.07 +centriste centriste adj m s 0.01 0.07 0.01 0.07 +centrouse centrouse nom f s 0.00 0.20 0.00 0.20 +centré centrer ver m s 1.38 1.82 0.30 0.41 par:pas; +centrée centrer ver f s 1.38 1.82 0.29 0.20 par:pas; +centrées centrer ver f p 1.38 1.82 0.01 0.27 par:pas; +centrum centrum nom m s 0.14 0.00 0.14 0.00 +centrés centrer ver m p 1.38 1.82 0.07 0.00 par:pas; +cents cents adj_num 27.67 80.54 27.67 80.54 +centuple centuple nom m s 0.31 1.08 0.31 1.08 +centuplé centupler ver m s 0.00 0.14 0.00 0.07 par:pas; +centuplée centupler ver f s 0.00 0.14 0.00 0.07 par:pas; +centurie centurie nom f s 0.03 1.15 0.02 0.54 +centuries centurie nom f p 0.03 1.15 0.01 0.61 +centurion centurion nom m s 1.04 0.88 0.68 0.61 +centurions centurion nom m p 1.04 0.88 0.36 0.27 +cep cep nom m s 0.24 1.49 0.12 0.88 +cependant cependant con 1.54 13.51 1.54 13.51 +ceps cep nom m p 0.24 1.49 0.12 0.61 +cerbère cerbère nom m s 0.05 0.47 0.05 0.14 +cerbères cerbère nom m p 0.05 0.47 0.00 0.34 +cerceau cerceau nom m s 0.64 2.77 0.52 1.96 +cerceaux cerceau nom m p 0.64 2.77 0.12 0.81 +cerclage cerclage nom m s 0.03 0.00 0.03 0.00 +cerclait cercler ver 0.22 5.34 0.00 0.14 ind:imp:3s; +cerclant cercler ver 0.22 5.34 0.00 0.07 par:pre; +cercle cercle nom m s 21.77 54.26 17.77 42.43 +cercler cercler ver 0.22 5.34 0.00 0.20 inf; +cercles cercle nom m p 21.77 54.26 4.00 11.82 +cercleux cercleux nom m 0.00 0.07 0.00 0.07 +cerclé cercler ver m s 0.22 5.34 0.02 1.22 par:pas; +cerclée cercler ver f s 0.22 5.34 0.03 0.74 par:pas; +cerclées cercler ver f p 0.22 5.34 0.01 1.89 par:pas; +cerclés cercler ver m p 0.22 5.34 0.01 0.95 par:pas; +cercueil cercueil nom m s 22.14 22.16 18.90 19.26 +cercueils cercueil nom m p 22.14 22.16 3.24 2.91 +cerf_roi cerf_roi nom m s 0.01 0.00 0.01 0.00 +cerf_volant cerf_volant nom m s 1.85 1.82 1.40 1.22 +cerf cerf nom m s 7.56 25.54 6.17 20.27 +cerfeuil cerfeuil nom m s 0.03 0.95 0.03 0.95 +cerf_volant cerf_volant nom m p 1.85 1.82 0.46 0.61 +cerfs cerf nom m p 7.56 25.54 1.39 5.27 +cerisaie cerisaie nom f s 0.36 0.20 0.36 0.20 +cerise cerise nom f s 5.26 10.07 2.75 3.31 +cerises cerise nom f p 5.26 10.07 2.52 6.76 +cerisier cerisier nom m s 0.88 3.51 0.44 1.49 +cerisiers cerisier nom m p 0.88 3.51 0.44 2.03 +cerna cerner ver 7.74 21.01 0.00 0.07 ind:pas:3s; +cernable cernable adj s 0.00 0.07 0.00 0.07 +cernaient cerner ver 7.74 21.01 0.01 1.49 ind:imp:3p; +cernais cerner ver 7.74 21.01 0.00 0.07 ind:imp:1s; +cernait cerner ver 7.74 21.01 0.05 2.30 ind:imp:3s; +cernant cerner ver 7.74 21.01 0.00 0.34 par:pre; +cerne cerner ver 7.74 21.01 0.43 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cerneau cerneau nom m s 0.00 0.14 0.00 0.07 +cerneaux cerneau nom m p 0.00 0.14 0.00 0.07 +cernent cerner ver 7.74 21.01 0.54 1.08 ind:pre:3p; +cerner cerner ver 7.74 21.01 1.73 2.91 inf; +cernes cerne nom m p 1.30 5.20 1.18 3.78 +cernez cerner ver 7.74 21.01 0.38 0.00 imp:pre:2p;ind:pre:2p; +cerniez cerner ver 7.74 21.01 0.01 0.00 ind:imp:2p; +cernons cerner ver 7.74 21.01 0.04 0.00 ind:pre:1p; +cerné cerner ver m s 7.74 21.01 1.97 4.12 par:pas; +cernée cerner ver f s 7.74 21.01 1.14 2.91 par:pas; +cernées cerner ver f p 7.74 21.01 0.05 1.08 par:pas; +cernés cerner ver m p 7.74 21.01 1.39 2.91 par:pas; +cerque cerque nom m s 0.14 0.07 0.14 0.07 +certain certain adj_ind m s 103.57 182.64 2.18 6.89 +certaine certaine adj_ind f s 1.03 4.86 1.03 4.86 +certainement certainement adv 55.16 59.93 55.16 59.93 +certaines certaines adj_ind f p 48.41 51.55 48.41 51.55 +certains certains adj_ind m p 57.58 101.28 57.58 101.28 +certes certes adv_sup 14.88 69.66 14.88 69.66 +certif certif nom m s 0.14 1.08 0.03 1.01 +certifia certifier ver 2.52 2.91 0.00 0.07 ind:pas:3s; +certifiaient certifier ver 2.52 2.91 0.00 0.07 ind:imp:3p; +certifiait certifier ver 2.52 2.91 0.00 0.47 ind:imp:3s; +certifiant certifier ver 2.52 2.91 0.03 0.20 par:pre; +certificat certificat nom m s 12.30 9.93 11.27 7.30 +certification certification nom f s 0.09 0.00 0.09 0.00 +certificats certificat nom m p 12.30 9.93 1.03 2.64 +certifie certifier ver 2.52 2.91 0.89 0.47 ind:pre:1s;ind:pre:3s;sub:pre:1s; +certifier certifier ver 2.52 2.91 0.59 0.74 inf; +certifierait certifier ver 2.52 2.91 0.00 0.07 cnd:pre:3s; +certifieront certifier ver 2.52 2.91 0.01 0.00 ind:fut:3p; +certifiez certifier ver 2.52 2.91 0.17 0.00 imp:pre:2p;ind:pre:2p; +certifions certifier ver 2.52 2.91 0.03 0.07 imp:pre:1p;ind:pre:1p; +certifié certifier ver m s 2.52 2.91 0.68 0.54 par:pas; +certifiée certifié adj f s 0.43 0.74 0.14 0.14 +certifiées certifié adj f p 0.43 0.74 0.01 0.07 +certifiés certifier ver m p 2.52 2.91 0.04 0.07 par:pas; +certifs certif nom m p 0.14 1.08 0.11 0.07 +certitude certitude nom f s 10.18 41.89 8.94 37.09 +certitudes certitude nom f p 10.18 41.89 1.24 4.80 +cerveau cerveau nom m 69.22 46.69 57.67 28.92 +cerveaux cerveau nom m p 69.22 46.69 3.92 1.96 +cervelas cervelas nom m 0.03 0.27 0.03 0.27 +cervelet cervelet nom m s 0.85 0.61 0.85 0.47 +cervelets cervelet nom m p 0.85 0.61 0.00 0.14 +cervelle cerveau nom f s 69.22 46.69 7.63 14.05 +cervelles cervelle nom f p 6.93 0.00 0.40 0.00 +cervical cervical adj m s 1.79 1.01 0.29 0.14 +cervicale cervical adj f s 1.79 1.01 0.67 0.47 +cervicales cervical adj f p 1.79 1.01 0.79 0.41 +cervicaux cervical adj m p 1.79 1.01 0.05 0.00 +cervidés cervidé nom m p 0.00 0.14 0.00 0.14 +cervoise cervoise nom f s 0.02 0.00 0.02 0.00 +ces ces adj_dem p 1222.51 1547.50 1222.51 1547.50 +cessa cesser ver 68.11 177.77 0.64 16.28 ind:pas:3s; +cessai cesser ver 68.11 177.77 0.28 2.16 ind:pas:1s; +cessaient cesser ver 68.11 177.77 0.17 4.53 ind:imp:3p; +cessais cesser ver 68.11 177.77 0.47 1.28 ind:imp:1s;ind:imp:2s; +cessait cesser ver 68.11 177.77 1.56 18.18 ind:imp:3s; +cessant cesser ver 68.11 177.77 0.11 5.00 par:pre; +cessante cessant adj f s 0.01 1.55 0.00 0.27 +cessantes cessant adj f p 0.01 1.55 0.01 0.27 +cessasse cesser ver 68.11 177.77 0.00 0.07 sub:imp:1s; +cessation cessation nom f s 0.11 0.95 0.11 0.95 +cesse cesse nom f s 28.88 71.96 28.86 71.96 +cessent cesser ver 68.11 177.77 2.06 6.49 ind:pre:3p; +cesser cesser ver 68.11 177.77 13.20 21.01 inf; +cessera cesser ver 68.11 177.77 1.92 1.76 ind:fut:3s; +cesserai cesser ver 68.11 177.77 0.64 0.74 ind:fut:1s; +cesseraient cesser ver 68.11 177.77 0.05 0.68 cnd:pre:3p; +cesserais cesser ver 68.11 177.77 0.15 0.41 cnd:pre:1s;cnd:pre:2s; +cesserait cesser ver 68.11 177.77 0.28 1.96 cnd:pre:3s; +cesseras cesser ver 68.11 177.77 0.94 0.34 ind:fut:2s; +cesserez cesser ver 68.11 177.77 0.63 0.27 ind:fut:2p; +cesseriez cesser ver 68.11 177.77 0.06 0.20 cnd:pre:2p; +cesserons cesser ver 68.11 177.77 0.21 0.20 ind:fut:1p; +cesseront cesser ver 68.11 177.77 0.72 0.68 ind:fut:3p; +cesses cesser ver 68.11 177.77 0.91 0.54 ind:pre:2s; +cessez_le_feu cessez_le_feu nom m 1.54 0.41 1.54 0.41 +cessez cesser ver 68.11 177.77 15.24 1.82 imp:pre:2p;ind:pre:2p; +cessiez cesser ver 68.11 177.77 0.50 0.14 ind:imp:2p; +cession cession nom f s 0.22 0.47 0.22 0.34 +cessionnaire cessionnaire nom m s 0.01 0.00 0.01 0.00 +cessions cesser ver 68.11 177.77 0.27 0.74 ind:imp:1p; +cessâmes cesser ver 68.11 177.77 0.01 0.20 ind:pas:1p; +cessons cesser ver 68.11 177.77 1.17 0.81 imp:pre:1p;ind:pre:1p; +cessât cesser ver 68.11 177.77 0.00 1.28 sub:imp:3s; +cessèrent cesser ver 68.11 177.77 0.15 4.19 ind:pas:3p; +cessé cesser ver m s 68.11 177.77 13.89 61.22 par:pas; +cessée cesser ver f s 68.11 177.77 0.02 0.00 par:pas; +ceste ceste nom m s 0.00 0.07 0.00 0.07 +cet cet adj_dem m s 499.91 497.50 499.91 497.50 +cette cette adj_dem f s 1902.27 2320.68 1902.27 2320.68 +ceux_ci ceux_ci pro_dem m p 4.26 20.95 4.26 20.95 +ceux_là ceux_là pro_dem m p 14.65 25.81 14.65 25.81 +ceux ceux pro_dem m p 202.02 309.86 202.02 309.86 +ch_timi ch_timi adj s 0.27 0.07 0.27 0.00 +ch_timi ch_timi nom p 0.14 0.20 0.00 0.07 +chômage chômage nom m s 12.50 5.41 12.50 5.41 +chômaient chômer ver 1.05 1.35 0.00 0.20 ind:imp:3p; +chômait chômer ver 1.05 1.35 0.01 0.34 ind:imp:3s; +chôme chômer ver 1.05 1.35 0.18 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chômedu chômedu nom m s 0.04 0.47 0.04 0.47 +chôment chômer ver 1.05 1.35 0.03 0.07 ind:pre:3p; +chômer chômer ver 1.05 1.35 0.37 0.20 inf; +chômerez chômer ver 1.05 1.35 0.10 0.00 ind:fut:2p; +chômeur chômeur nom m s 4.54 4.39 2.23 2.16 +chômeurs chômeur nom m p 4.54 4.39 2.02 2.09 +chômeuse chômeur nom f s 4.54 4.39 0.27 0.14 +chômeuses chômeur nom f p 4.54 4.39 0.01 0.00 +chômez chômer ver 1.05 1.35 0.12 0.00 ind:pre:2p; +chômé chômer ver m s 1.05 1.35 0.24 0.41 par:pas; +chômée chômé adj f s 0.02 0.27 0.01 0.00 +chômés chômé adj m p 0.02 0.27 0.00 0.07 +cha_cha_cha cha_cha_cha nom m s 0.61 0.20 0.61 0.20 +chaîne chaîne nom f s 38.80 57.77 28.40 43.24 +chaînes chaîne nom f p 38.80 57.77 10.40 14.53 +chaînette chaînette nom f s 0.26 2.77 0.25 2.16 +chaînettes chaînette nom f p 0.26 2.77 0.01 0.61 +chaînon chaînon nom m s 0.70 0.68 0.67 0.47 +chaînons chaînon nom m p 0.70 0.68 0.04 0.20 +chaîné chaîner ver m s 0.00 0.07 0.00 0.07 par:pas; +chabanais chabanais nom s 0.00 0.14 0.00 0.14 +chabichou chabichou nom m s 0.00 0.27 0.00 0.27 +chabler chabler ver 0.00 0.07 0.00 0.07 inf; +chablis chablis nom m 0.09 0.07 0.09 0.07 +chaboisseaux chaboisseau nom m p 0.00 0.07 0.00 0.07 +chabot chabot nom m s 0.14 0.07 0.14 0.00 +chabots chabot nom m p 0.14 0.07 0.01 0.07 +chabraque chabraque nom f s 0.00 0.41 0.00 0.41 +chabrot chabrot nom m s 0.27 0.14 0.27 0.14 +chacal chacal nom m s 3.02 2.57 1.16 1.55 +chacals chacal nom m p 3.02 2.57 1.86 1.01 +chachlik chachlik nom m s 0.10 0.07 0.10 0.07 +chaconne chaconne nom f s 0.00 0.07 0.00 0.07 +chacun chacun pro_ind m s 93.61 187.84 93.61 187.84 +chacune chacune pro_ind f s 12.20 35.95 12.20 35.95 +chafaud chafaud nom m s 0.00 0.14 0.00 0.07 +chafauds chafaud nom m p 0.00 0.14 0.00 0.07 +chafouin chafouin adj m s 0.04 1.15 0.03 0.41 +chafouine chafouin adj f s 0.04 1.15 0.01 0.61 +chafouins chafouin adj m p 0.04 1.15 0.00 0.14 +chagatte chagatte nom f s 0.21 0.88 0.19 0.68 +chagattes chagatte nom f p 0.21 0.88 0.02 0.20 +chagrin chagrin nom m s 21.61 44.05 20.39 38.72 +chagrina chagriner ver 1.94 2.97 0.00 0.14 ind:pas:3s; +chagrinaient chagriner ver 1.94 2.97 0.00 0.07 ind:imp:3p; +chagrinait chagriner ver 1.94 2.97 0.00 0.88 ind:imp:3s; +chagrine chagriner ver 1.94 2.97 1.43 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chagrinent chagriner ver 1.94 2.97 0.02 0.07 ind:pre:3p; +chagriner chagriner ver 1.94 2.97 0.20 0.74 inf; +chagrinerait chagriner ver 1.94 2.97 0.05 0.00 cnd:pre:3s; +chagrines chagriner ver 1.94 2.97 0.14 0.00 ind:pre:2s; +chagrins chagrin nom m p 21.61 44.05 1.21 5.34 +chagriné chagriné adj m s 0.06 0.47 0.05 0.20 +chagrinée chagriner ver f s 1.94 2.97 0.04 0.14 par:pas; +chagrinés chagriné adj m p 0.06 0.47 0.01 0.14 +chah chah nom m s 0.04 0.00 0.04 0.00 +chahut chahut nom m s 1.28 2.70 1.27 2.30 +chahutaient chahuter ver 0.94 3.85 0.01 0.27 ind:imp:3p; +chahutais chahuter ver 0.94 3.85 0.00 0.14 ind:imp:1s; +chahutait chahuter ver 0.94 3.85 0.21 0.34 ind:imp:3s; +chahutant chahuter ver 0.94 3.85 0.01 0.47 par:pre; +chahute chahuter ver 0.94 3.85 0.08 0.27 ind:pre:1s;ind:pre:3s; +chahutent chahuter ver 0.94 3.85 0.15 0.20 ind:pre:3p; +chahuter chahuter ver 0.94 3.85 0.28 1.22 inf; +chahuteraient chahuter ver 0.94 3.85 0.00 0.07 cnd:pre:3p; +chahuteur chahuteur nom m s 0.09 0.41 0.07 0.14 +chahuteurs chahuteur nom m p 0.09 0.41 0.00 0.27 +chahuteuse chahuteur nom f s 0.09 0.41 0.01 0.00 +chahutez chahuter ver 0.94 3.85 0.04 0.00 imp:pre:2p;ind:pre:2p; +chahuts chahut nom m p 1.28 2.70 0.01 0.41 +chahutèrent chahuter ver 0.94 3.85 0.00 0.07 ind:pas:3p; +chahuté chahuter ver m s 0.94 3.85 0.14 0.41 par:pas; +chahutée chahuter ver f s 0.94 3.85 0.01 0.14 par:pas; +chahutées chahuter ver f p 0.94 3.85 0.00 0.07 par:pas; +chahutés chahuter ver m p 0.94 3.85 0.00 0.20 par:pas; +chai chai nom m s 0.21 1.62 0.11 0.27 +chair chair nom f s 37.07 101.69 36.01 90.81 +chaire chaire nom f s 1.46 5.74 1.46 5.47 +chaires chaire nom f p 1.46 5.74 0.00 0.27 +chairman chairman nom m s 0.03 0.27 0.03 0.27 +chairs chair nom f p 37.07 101.69 1.07 10.88 +chais chai nom m p 0.21 1.62 0.10 1.35 +chaise chaise nom f s 40.02 118.31 32.70 86.35 +chaises chaise nom f p 40.02 118.31 7.33 31.96 +chaisière chaisier nom f s 0.00 0.68 0.00 0.54 +chaisières chaisier nom f p 0.00 0.68 0.00 0.14 +chaix chaix nom m 0.00 0.27 0.00 0.27 +chaland chaland nom m s 0.53 3.11 0.50 1.49 +chalands chaland nom m p 0.53 3.11 0.03 1.62 +chalazions chalazion nom m p 0.00 0.07 0.00 0.07 +chaldaïques chaldaïque adj m p 0.00 0.07 0.00 0.07 +chaldéen chaldéen nom m s 0.03 0.20 0.01 0.00 +chaldéens chaldéen nom m p 0.03 0.20 0.02 0.20 +chalet chalet nom m s 4.38 8.11 3.92 7.16 +chalets chalet nom m p 4.38 8.11 0.46 0.95 +chaleur chaleur nom f s 39.13 116.22 38.77 112.23 +chaleureuse chaleureux adj f s 5.72 11.55 1.29 4.32 +chaleureusement chaleureusement adv 1.46 1.89 1.46 1.89 +chaleureuses chaleureux adj f p 5.72 11.55 0.47 1.01 +chaleureux chaleureux adj m 5.72 11.55 3.96 6.22 +chaleurs chaleur nom f p 39.13 116.22 0.36 3.99 +challenge challenge nom m s 1.69 0.27 1.41 0.27 +challenger challenger nom m s 1.47 0.47 0.94 0.41 +challengers challenger nom m p 1.47 0.47 0.53 0.07 +challenges challenge nom m p 1.69 0.27 0.29 0.00 +challengeur challengeur nom m s 0.01 0.00 0.01 0.00 +chalon chalon nom m s 0.14 2.64 0.14 2.57 +chalonnaises chalonnais adj f p 0.00 0.07 0.00 0.07 +chalons chalon nom m p 0.14 2.64 0.00 0.07 +chaloupait chalouper ver 0.01 1.01 0.00 0.14 ind:imp:3s; +chaloupant chalouper ver 0.01 1.01 0.00 0.20 par:pre; +chaloupe chaloupe nom f s 0.82 2.50 0.73 1.89 +chalouper chalouper ver 0.01 1.01 0.00 0.07 inf; +chaloupes chaloupe nom f p 0.82 2.50 0.09 0.61 +chaloupé chalouper ver m s 0.01 1.01 0.00 0.20 par:pas; +chaloupée chaloupé adj f s 0.01 0.74 0.01 0.54 +chaloupées chalouper ver f p 0.01 1.01 0.00 0.07 par:pas; +chaloupés chalouper ver m p 0.01 1.01 0.00 0.07 par:pas; +chalumeau chalumeau nom m s 1.63 2.70 1.59 2.36 +chalumeaux chalumeau nom m p 1.63 2.70 0.03 0.34 +chalut chalut nom m s 0.04 0.27 0.04 0.20 +chalutier_patrouilleur chalutier_patrouilleur nom m s 0.00 0.07 0.00 0.07 +chalutier chalutier nom m s 1.13 3.18 0.66 1.28 +chalutiers chalutier nom m p 1.13 3.18 0.47 1.89 +chaluts chalut nom m p 0.04 0.27 0.00 0.07 +chamade chamade nom f s 0.75 1.35 0.75 1.35 +chamaillaient chamailler ver 2.11 3.45 0.05 0.88 ind:imp:3p; +chamaillait chamailler ver 2.11 3.45 0.03 0.34 ind:imp:3s; +chamaillant chamailler ver 2.11 3.45 0.04 0.07 par:pre; +chamaille chamailler ver 2.11 3.45 0.21 0.14 ind:pre:1s;ind:pre:3s; +chamaillent chamailler ver 2.11 3.45 0.13 0.47 ind:pre:3p; +chamailler chamailler ver 2.11 3.45 1.22 1.08 inf; +chamaillerie chamaillerie nom f s 0.77 0.61 0.00 0.07 +chamailleries chamaillerie nom f p 0.77 0.61 0.77 0.54 +chamailleur chamailleur adj m s 0.01 0.20 0.01 0.00 +chamailleurs chamailleur adj m p 0.01 0.20 0.00 0.14 +chamailleuse chamailleur adj f s 0.01 0.20 0.00 0.07 +chamaillez chamailler ver 2.11 3.45 0.22 0.07 imp:pre:2p;ind:pre:2p; +chamaillions chamailler ver 2.11 3.45 0.00 0.07 ind:imp:1p; +chamaillis chamaillis nom m 0.00 0.07 0.00 0.07 +chamaillons chamailler ver 2.11 3.45 0.13 0.00 ind:pre:1p; +chamaillèrent chamailler ver 2.11 3.45 0.00 0.07 ind:pas:3p; +chamaillé chamailler ver m s 2.11 3.45 0.02 0.00 par:pas; +chamaillés chamailler ver m p 2.11 3.45 0.08 0.27 par:pas; +chaman chaman nom m s 1.03 0.41 0.97 0.20 +chamane chamane nom m s 0.04 0.14 0.02 0.07 +chamanes chamane nom m p 0.04 0.14 0.01 0.07 +chamanisme chamanisme nom m s 0.04 0.14 0.04 0.14 +chamans chaman nom m p 1.03 0.41 0.06 0.20 +chamarré chamarré adj m s 0.14 1.82 0.14 0.81 +chamarrée chamarré adj f s 0.14 1.82 0.01 0.27 +chamarrées chamarré adj f p 0.14 1.82 0.00 0.14 +chamarrures chamarrure nom f p 0.00 0.07 0.00 0.07 +chamarrés chamarré adj m p 0.14 1.82 0.00 0.61 +chambard chambard nom m s 0.22 0.20 0.22 0.20 +chambarda chambarder ver 0.02 0.34 0.00 0.07 ind:pas:3s; +chambardait chambarder ver 0.02 0.34 0.00 0.07 ind:imp:3s; +chambardement chambardement nom m s 0.17 0.68 0.17 0.61 +chambardements chambardement nom m p 0.17 0.68 0.00 0.07 +chambarder chambarder ver 0.02 0.34 0.02 0.07 inf; +chambardé chambarder ver m s 0.02 0.34 0.00 0.07 par:pas; +chambardée chambarder ver f s 0.02 0.34 0.00 0.07 par:pas; +chambellan chambellan nom m s 0.55 0.88 0.53 0.61 +chambellans chambellan nom m p 0.55 0.88 0.02 0.27 +chambertin chambertin nom m s 0.04 0.68 0.04 0.61 +chambertins chambertin nom m p 0.04 0.68 0.00 0.07 +chamboulaient chambouler ver 2.76 2.23 0.00 0.14 ind:imp:3p; +chamboulait chambouler ver 2.76 2.23 0.00 0.14 ind:imp:3s; +chamboulant chambouler ver 2.76 2.23 0.01 0.07 par:pre; +chamboule chambouler ver 2.76 2.23 0.41 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chamboulement chamboulement nom m s 0.04 0.20 0.03 0.20 +chamboulements chamboulement nom m p 0.04 0.20 0.01 0.00 +chamboulent chambouler ver 2.76 2.23 0.17 0.00 ind:pre:3p; +chambouler chambouler ver 2.76 2.23 0.58 0.54 inf; +chambouleras chambouler ver 2.76 2.23 0.00 0.07 ind:fut:2s; +chamboulez chambouler ver 2.76 2.23 0.03 0.00 imp:pre:2p;ind:pre:2p; +chamboulât chambouler ver 2.76 2.23 0.00 0.07 sub:imp:3s; +chamboulé chambouler ver m s 2.76 2.23 0.85 0.34 par:pas; +chamboulée chambouler ver f s 2.76 2.23 0.51 0.68 par:pas; +chamboulées chambouler ver f p 2.76 2.23 0.16 0.07 par:pas; +chamboulés chambouler ver m p 2.76 2.23 0.04 0.07 par:pas; +chambra chambrer ver 1.50 3.31 0.02 0.14 ind:pas:3s; +chambrais chambrer ver 1.50 3.31 0.00 0.07 ind:imp:1s; +chambrait chambrer ver 1.50 3.31 0.00 0.20 ind:imp:3s; +chambranle chambranle nom m s 0.09 4.26 0.09 4.12 +chambranles chambranle nom m p 0.09 4.26 0.00 0.14 +chambrant chambrer ver 1.50 3.31 0.00 0.27 par:pre; +chambre_salon chambre_salon nom f s 0.00 0.07 0.00 0.07 +chambre chambre nom f s 288.64 413.31 263.93 380.07 +chambrent chambrer ver 1.50 3.31 0.01 0.14 ind:pre:3p; +chambrer chambrer ver 1.50 3.31 0.39 0.41 inf; +chambres chambre nom f p 288.64 413.31 24.71 33.24 +chambrette chambrette nom f s 0.24 2.50 0.24 2.50 +chambrez chambrer ver 1.50 3.31 0.01 0.00 ind:pre:2p; +chambrière chambrière nom f s 0.01 1.35 0.01 0.81 +chambrières chambrière nom f p 0.01 1.35 0.00 0.54 +chambré chambrer ver m s 1.50 3.31 0.02 0.61 par:pas; +chambrée chambrée nom f s 0.98 1.89 0.64 1.62 +chambrées chambrée nom f p 0.98 1.89 0.34 0.27 +chameau chameau nom m s 10.87 10.54 7.21 5.41 +chameaux chameau nom m p 10.87 10.54 3.34 4.73 +chamelier chamelier nom m s 0.12 0.41 0.11 0.20 +chameliers chamelier nom m p 0.12 0.41 0.01 0.20 +chamelle chameau nom f s 10.87 10.54 0.32 0.27 +chamelles chamelle nom f p 0.12 0.00 0.12 0.00 +chamois chamois nom m 0.61 2.57 0.61 2.57 +chamoisine chamoisine nom f s 0.00 0.07 0.00 0.07 +champ champ nom m s 57.22 106.49 0.04 1.76 +champ champ nom m s 57.22 106.49 38.05 51.76 +champagne champagne nom m s 32.49 29.86 32.38 29.86 +champagnes champagne nom m p 32.49 29.86 0.12 0.00 +champagnisés champagniser ver m p 0.00 0.07 0.00 0.07 par:pas; +champenois champenois nom m 0.00 4.19 0.00 4.12 +champenoise champenois adj f s 0.00 1.62 0.00 0.34 +champenoises champenois nom f p 0.00 4.19 0.00 0.07 +champi champi nom m s 0.02 0.14 0.00 0.14 +champignon champignon nom m s 11.03 12.97 3.34 3.99 +champignonnaient champignonner ver 0.00 0.27 0.00 0.07 ind:imp:3p; +champignonnait champignonner ver 0.00 0.27 0.00 0.07 ind:imp:3s; +champignonne champignonner ver 0.00 0.27 0.00 0.07 ind:pre:3s; +champignonnent champignonner ver 0.00 0.27 0.00 0.07 ind:pre:3p; +champignonnière champignonnière nom f s 0.01 0.34 0.01 0.27 +champignonnières champignonnière nom f p 0.01 0.34 0.00 0.07 +champignons champignon nom m p 11.03 12.97 7.69 8.99 +champion champion nom m s 34.90 15.07 27.69 10.81 +championnat championnat nom m s 8.24 2.97 6.87 2.57 +championnats championnat nom m p 8.24 2.97 1.38 0.41 +championne champion nom f s 34.90 15.07 2.46 1.08 +championnes championne nom f p 0.12 0.00 0.12 0.00 +champions champion nom m p 34.90 15.07 4.75 2.97 +champis champi nom m p 0.02 0.14 0.02 0.00 +champs_élysées champs_élysées nom m p 0.00 0.14 0.00 0.14 +champs champ nom m p 57.22 106.49 19.14 52.97 +champêtre champêtre adj s 0.70 6.01 0.47 4.66 +champêtres champêtre adj p 0.70 6.01 0.23 1.35 +chance chance nom s 360.60 136.35 334.02 114.05 +chancel chancel nom m s 0.01 0.00 0.01 0.00 +chancela chanceler ver 1.06 7.50 0.00 1.08 ind:pas:3s; +chancelai chanceler ver 1.06 7.50 0.00 0.07 ind:pas:1s; +chancelaient chanceler ver 1.06 7.50 0.00 0.07 ind:imp:3p; +chancelais chanceler ver 1.06 7.50 0.01 0.14 ind:imp:1s; +chancelait chanceler ver 1.06 7.50 0.03 1.69 ind:imp:3s; +chancelant chanceler ver 1.06 7.50 0.29 0.88 par:pre; +chancelante chancelant adj f s 0.23 2.23 0.04 1.08 +chancelantes chancelant adj f p 0.23 2.23 0.01 0.27 +chancelants chancelant adj m p 0.23 2.23 0.14 0.27 +chanceler chanceler ver 1.06 7.50 0.14 1.22 inf; +chancelier chancelier nom m s 3.08 2.03 2.97 1.69 +chanceliers chancelier nom m p 3.08 2.03 0.11 0.20 +chancelions chanceler ver 1.06 7.50 0.00 0.07 ind:imp:1p; +chancelière chancelière nom f s 0.06 0.00 0.06 0.00 +chancelières chancelier nom f p 3.08 2.03 0.00 0.14 +chancelle chanceler ver 1.06 7.50 0.56 1.28 ind:pre:1s;ind:pre:3s; +chancellent chanceler ver 1.06 7.50 0.02 0.27 ind:pre:3p; +chancellerie chancellerie nom f s 1.21 2.70 1.20 1.69 +chancelleries chancellerie nom f p 1.21 2.70 0.01 1.01 +chancelèrent chanceler ver 1.06 7.50 0.00 0.20 ind:pas:3p; +chancelé chanceler ver m s 1.06 7.50 0.01 0.54 par:pas; +chances chance nom f p 360.60 136.35 26.58 22.30 +chanceuse chanceux adj f s 12.88 1.08 2.49 0.27 +chanceuses chanceux adj f p 12.88 1.08 0.15 0.07 +chanceux chanceux adj m 12.88 1.08 10.24 0.74 +chanci chancir ver m s 0.00 0.14 0.00 0.14 par:pas; +chancre chancre nom m s 0.83 1.08 0.53 0.74 +chancres chancre nom m p 0.83 1.08 0.30 0.34 +chand chand nom m s 0.00 0.14 0.00 0.14 +chandail chandail nom m s 0.82 14.19 0.63 11.42 +chandails chandail nom m p 0.82 14.19 0.19 2.77 +chandeleur chandeleur nom f s 0.52 0.47 0.52 0.47 +chandelier chandelier nom m s 1.71 4.12 1.36 1.82 +chandeliers chandelier nom m p 1.71 4.12 0.34 2.30 +chandelle chandelle nom f s 5.15 12.57 3.51 7.91 +chandelles chandelle nom f p 5.15 12.57 1.64 4.66 +chanfrein chanfrein nom m s 0.00 0.54 0.00 0.54 +chanfreinée chanfreiner ver f s 0.00 0.07 0.00 0.07 par:pas; +change changer ver 411.98 246.49 67.83 30.20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +changea changer ver 411.98 246.49 2.04 12.43 ind:pas:3s; +changeai changer ver 411.98 246.49 0.04 0.61 ind:pas:1s; +changeaient changer ver 411.98 246.49 0.44 4.12 ind:imp:3p; +changeais changer ver 411.98 246.49 1.56 1.89 ind:imp:1s;ind:imp:2s; +changeait changer ver 411.98 246.49 3.30 18.11 ind:imp:3s; +changeant changer ver 411.98 246.49 1.38 6.15 par:pre; +changeante changeant adj f s 1.60 5.47 0.36 1.96 +changeantes changeant adj f p 1.60 5.47 0.02 0.61 +changeants changeant adj m p 1.60 5.47 0.03 1.01 +changeas changer ver 411.98 246.49 0.01 0.00 ind:pas:2s; +changement changement nom m s 37.70 36.42 27.00 26.28 +changements changement nom m p 37.70 36.42 10.70 10.14 +changent changer ver 411.98 246.49 12.39 5.34 ind:pre:3p; +changeâmes changer ver 411.98 246.49 0.00 0.27 ind:pas:1p; +changeons changer ver 411.98 246.49 2.74 0.68 imp:pre:1p;ind:pre:1p; +changeât changer ver 411.98 246.49 0.00 0.81 sub:imp:3s; +changer changer ver 411.98 246.49 140.49 72.30 inf;; +changera changer ver 411.98 246.49 16.54 5.07 ind:fut:3s; +changerai changer ver 411.98 246.49 3.15 0.74 ind:fut:1s; +changeraient changer ver 411.98 246.49 0.23 0.61 cnd:pre:3p; +changerais changer ver 411.98 246.49 1.92 0.88 cnd:pre:1s;cnd:pre:2s; +changerait changer ver 411.98 246.49 6.29 4.32 cnd:pre:3s; +changeras changer ver 411.98 246.49 2.92 0.81 ind:fut:2s; +changerez changer ver 411.98 246.49 1.29 0.07 ind:fut:2p; +changeriez changer ver 411.98 246.49 0.29 0.00 cnd:pre:2p; +changerons changer ver 411.98 246.49 0.58 0.27 ind:fut:1p; +changeront changer ver 411.98 246.49 1.65 1.01 ind:fut:3p; +changes changer ver 411.98 246.49 9.22 1.82 ind:pre:2s; +changeur changeur nom m s 0.47 0.61 0.42 0.41 +changeurs changeur nom m p 0.47 0.61 0.03 0.20 +changeuse changeur nom f s 0.47 0.61 0.02 0.00 +changez changer ver 411.98 246.49 10.18 1.28 imp:pre:2p;ind:pre:2p; +changiez changer ver 411.98 246.49 0.80 0.14 ind:imp:2p; +changions changer ver 411.98 246.49 0.03 0.27 ind:imp:1p; +changèrent changer ver 411.98 246.49 0.38 0.95 ind:pas:3p; +changé changer ver m s 411.98 246.49 117.83 68.85 par:pas; +changée changer ver f s 411.98 246.49 3.94 4.32 par:pas; +changées changer ver f p 411.98 246.49 1.01 0.68 par:pas; +changés changer ver m p 411.98 246.49 1.52 1.49 par:pas; +chanoine chanoine nom m s 0.44 11.96 0.43 11.28 +chanoines chanoine nom m p 0.44 11.96 0.01 0.68 +chanoinesse chanoinesse nom f s 0.00 0.54 0.00 0.27 +chanoinesses chanoinesse nom f p 0.00 0.54 0.00 0.27 +chanson chanson nom f s 84.92 46.55 64.50 26.15 +chansonner chansonner ver 0.01 0.00 0.01 0.00 inf; +chansonnette chansonnette nom f s 1.25 2.43 1.00 1.69 +chansonnettes chansonnette nom f p 1.25 2.43 0.25 0.74 +chansonnier chansonnier nom m s 0.03 1.62 0.03 0.61 +chansonniers chansonnier nom m p 0.03 1.62 0.00 1.01 +chansons chanson nom f p 84.92 46.55 20.42 20.41 +chanstiquait chanstiquer ver 0.00 1.22 0.00 0.07 ind:imp:3s; +chanstique chanstiquer ver 0.00 1.22 0.00 0.41 ind:pre:1s;ind:pre:3s; +chanstiquent chanstiquer ver 0.00 1.22 0.00 0.07 ind:pre:3p; +chanstiquer chanstiquer ver 0.00 1.22 0.00 0.20 inf; +chanstiquèrent chanstiquer ver 0.00 1.22 0.00 0.07 ind:pas:3p; +chanstiqué chanstiquer ver m s 0.00 1.22 0.00 0.34 par:pas; +chanstiquée chanstiquer ver f s 0.00 1.22 0.00 0.07 par:pas; +chant chant nom m s 25.90 42.03 17.64 28.38 +chanta chanter ver 166.34 125.81 0.43 6.62 ind:pas:3s; +chantage chantage nom m s 8.51 7.64 8.50 7.43 +chantages chantage nom m p 8.51 7.64 0.01 0.20 +chantai chanter ver 166.34 125.81 0.00 0.14 ind:pas:1s; +chantaient chanter ver 166.34 125.81 1.98 8.24 ind:imp:3p; +chantais chanter ver 166.34 125.81 3.56 1.22 ind:imp:1s;ind:imp:2s; +chantait chanter ver 166.34 125.81 8.76 22.57 ind:imp:3s; +chantant chanter ver 166.34 125.81 4.34 10.14 par:pre; +chantante chantant adj f s 1.03 7.36 0.23 3.24 +chantantes chantant adj f p 1.03 7.36 0.02 0.68 +chantants chantant adj m p 1.03 7.36 0.21 0.47 +chante chanter ver 166.34 125.81 56.16 18.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chanteau chanteau nom m s 0.00 0.14 0.00 0.14 +chantent chanter ver 166.34 125.81 7.10 7.70 ind:pre:3p; +chanter chanter ver 166.34 125.81 48.12 34.26 inf; +chantera chanter ver 166.34 125.81 2.39 0.68 ind:fut:3s; +chanterai chanter ver 166.34 125.81 1.31 0.41 ind:fut:1s; +chanteraient chanter ver 166.34 125.81 0.09 0.20 cnd:pre:3p; +chanterais chanter ver 166.34 125.81 0.50 0.07 cnd:pre:1s;cnd:pre:2s; +chanterait chanter ver 166.34 125.81 0.31 0.74 cnd:pre:3s; +chanteras chanter ver 166.34 125.81 0.79 0.07 ind:fut:2s; +chanterelle chanterelle nom f s 0.05 0.27 0.01 0.14 +chanterelles chanterelle nom f p 0.05 0.27 0.04 0.14 +chanterez chanter ver 166.34 125.81 0.45 0.14 ind:fut:2p; +chanteriez chanter ver 166.34 125.81 0.04 0.00 cnd:pre:2p; +chanterons chanter ver 166.34 125.81 0.25 0.00 ind:fut:1p; +chanteront chanter ver 166.34 125.81 0.46 0.27 ind:fut:3p; +chantes chanter ver 166.34 125.81 6.97 2.09 ind:pre:2s; +chanteur chanteur nom m s 20.25 20.07 9.80 9.19 +chanteurs chanteur nom m p 20.25 20.07 2.65 4.93 +chanteuse_vedette chanteuse_vedette nom f s 0.00 0.07 0.00 0.07 +chanteuse chanteur nom f s 20.25 20.07 7.81 4.39 +chanteuses chanteuse nom f p 0.91 0.00 0.91 0.00 +chantez chanter ver 166.34 125.81 8.26 0.74 imp:pre:2p;ind:pre:2p; +chançard chançard nom m s 0.17 0.07 0.16 0.07 +chançarde chançard nom f s 0.17 0.07 0.01 0.00 +chantier chantier nom m s 12.96 22.50 9.93 15.14 +chantiers chantier nom m p 12.96 22.50 3.03 7.36 +chantiez chanter ver 166.34 125.81 0.81 0.00 ind:imp:2p; +chantilly chantilly nom f s 0.59 0.74 0.59 0.74 +chantions chanter ver 166.34 125.81 0.24 0.95 ind:imp:1p; +chantâmes chanter ver 166.34 125.81 0.00 0.14 ind:pas:1p; +chantonna chantonner ver 2.84 14.86 0.00 2.43 ind:pas:3s; +chantonnai chantonner ver 2.84 14.86 0.00 0.07 ind:pas:1s; +chantonnaient chantonner ver 2.84 14.86 0.00 0.41 ind:imp:3p; +chantonnais chantonner ver 2.84 14.86 0.01 0.14 ind:imp:1s; +chantonnait chantonner ver 2.84 14.86 0.02 3.65 ind:imp:3s; +chantonnant chantonner ver 2.84 14.86 0.03 2.57 par:pre; +chantonnante chantonnant adj f s 0.00 0.41 0.00 0.20 +chantonne chantonner ver 2.84 14.86 2.27 2.50 imp:pre:2s;ind:pre:3s;sub:pre:3s; +chantonnement chantonnement nom m s 0.00 0.74 0.00 0.74 +chantonnent chantonner ver 2.84 14.86 0.14 0.34 ind:pre:3p; +chantonner chantonner ver 2.84 14.86 0.35 2.23 inf; +chantonnèrent chantonner ver 2.84 14.86 0.00 0.07 ind:pas:3p; +chantonné chantonner ver m s 2.84 14.86 0.03 0.34 par:pas; +chantonnée chantonner ver f s 2.84 14.86 0.00 0.07 par:pas; +chantonnés chantonner ver m p 2.84 14.86 0.00 0.07 par:pas; +chantons chanter ver 166.34 125.81 3.98 0.54 imp:pre:1p;ind:pre:1p; +chantât chanter ver 166.34 125.81 0.00 0.27 sub:imp:3s; +chantoung chantoung nom m s 0.00 0.20 0.00 0.20 +chantourner chantourner ver 0.00 0.68 0.00 0.07 inf; +chantourné chantourner ver m s 0.00 0.68 0.00 0.14 par:pas; +chantournées chantourner ver f p 0.00 0.68 0.00 0.27 par:pas; +chantournés chantourner ver m p 0.00 0.68 0.00 0.20 par:pas; +chantre chantre nom m s 0.46 1.82 0.44 1.35 +chantrerie chantrerie nom f s 0.01 0.00 0.01 0.00 +chantres chantre nom m p 0.46 1.82 0.02 0.47 +chants chant nom m p 25.90 42.03 8.26 13.65 +chantèrent chanter ver 166.34 125.81 0.17 0.95 ind:pas:3p; +chanté chanter ver m s 166.34 125.81 7.81 6.15 par:pas; +chantée chanter ver f s 166.34 125.81 0.94 1.01 par:pas; +chantées chanter ver f p 166.34 125.81 0.06 0.81 par:pas; +chantés chanter ver m p 166.34 125.81 0.08 0.27 par:pas; +chanvre chanvre nom m s 0.77 2.91 0.77 2.84 +chanvres chanvre nom m p 0.77 2.91 0.00 0.07 +chao chao adv 0.15 0.07 0.15 0.07 +chaos chaos nom m 11.30 10.20 11.30 10.20 +chaotique chaotique adj s 0.95 2.57 0.76 1.89 +chaotiquement chaotiquement adv 0.00 0.07 0.00 0.07 +chaotiques chaotique adj p 0.95 2.57 0.20 0.68 +chaouch chaouch nom m s 0.00 0.54 0.00 0.34 +chaouchs chaouch nom m p 0.00 0.54 0.00 0.20 +chaparda chaparder ver 0.16 1.28 0.00 0.07 ind:pas:3s; +chapardage chapardage nom m s 0.09 0.27 0.06 0.07 +chapardages chapardage nom m p 0.09 0.27 0.02 0.20 +chapardait chaparder ver 0.16 1.28 0.01 0.14 ind:imp:3s; +chapardant chaparder ver 0.16 1.28 0.01 0.00 par:pre; +chapardent chaparder ver 0.16 1.28 0.01 0.14 ind:pre:3p; +chaparder chaparder ver 0.16 1.28 0.08 0.74 inf; +chapardeur chapardeur nom m s 0.07 0.68 0.02 0.20 +chapardeurs chapardeur nom m p 0.07 0.68 0.03 0.41 +chapardeuse chapardeur nom f s 0.07 0.68 0.02 0.07 +chapardé chaparder ver m s 0.16 1.28 0.04 0.07 par:pas; +chapardée chaparder ver f s 0.16 1.28 0.00 0.07 par:pas; +chapardées chaparder ver f p 0.16 1.28 0.00 0.07 par:pas; +chaparral chaparral nom m s 0.12 0.00 0.10 0.00 +chaparrals chaparral nom m p 0.12 0.00 0.02 0.00 +chape chape nom f s 0.10 2.23 0.10 2.16 +chapeau chapeau nom m s 54.91 88.04 48.61 72.91 +chapeautait chapeauter ver 0.08 1.08 0.01 0.07 ind:imp:3s; +chapeaute chapeauter ver 0.08 1.08 0.04 0.14 ind:pre:1s;ind:pre:3s; +chapeauter chapeauter ver 0.08 1.08 0.01 0.07 inf; +chapeauté chapeauté adj m s 0.01 0.95 0.01 0.14 +chapeautée chapeauter ver f s 0.08 1.08 0.02 0.27 par:pas; +chapeautées chapeauté adj f p 0.01 0.95 0.00 0.20 +chapeautés chapeauté adj m p 0.01 0.95 0.00 0.20 +chapeaux chapeau nom m p 54.91 88.04 6.29 15.14 +chapelain chapelain nom m s 0.21 0.74 0.21 0.61 +chapelains chapelain nom m p 0.21 0.74 0.00 0.14 +chapelet chapelet nom m s 1.91 12.91 1.54 9.73 +chapelets chapelet nom m p 1.91 12.91 0.37 3.18 +chapelier chapelier nom m s 0.24 0.88 0.23 0.61 +chapeliers chapelier nom m p 0.24 0.88 0.01 0.27 +chapelle chapelle nom f s 7.42 35.88 7.37 32.36 +chapellerie chapellerie nom f s 0.00 0.20 0.00 0.20 +chapelles chapelle nom f p 7.42 35.88 0.05 3.51 +chapelure chapelure nom f s 0.31 0.54 0.31 0.47 +chapelures chapelure nom f p 0.31 0.54 0.00 0.07 +chaperon chaperon nom m s 3.84 1.35 3.71 1.22 +chaperonnais chaperonner ver 0.28 0.54 0.01 0.07 ind:imp:1s; +chaperonnait chaperonner ver 0.28 0.54 0.01 0.20 ind:imp:3s; +chaperonner chaperonner ver 0.28 0.54 0.21 0.07 inf; +chaperonné chaperonner ver m s 0.28 0.54 0.03 0.07 par:pas; +chaperonnée chaperonner ver f s 0.28 0.54 0.01 0.07 par:pas; +chaperonnés chaperonner ver m p 0.28 0.54 0.01 0.07 par:pas; +chaperons chaperon nom m p 3.84 1.35 0.13 0.14 +chapes chape nom f p 0.10 2.23 0.00 0.07 +chapiteau chapiteau nom m s 1.84 3.45 1.83 1.96 +chapiteau_dortoir chapiteau_dortoir nom m p 0.00 0.07 0.00 0.07 +chapiteaux chapiteau nom m p 1.84 3.45 0.01 1.49 +chapitre chapitre nom m s 13.00 38.65 12.10 35.81 +chapitrer chapitrer ver 0.35 1.35 0.02 0.47 inf; +chapitres chapitre nom m p 13.00 38.65 0.91 2.84 +chapitré chapitrer ver m s 0.35 1.35 0.02 0.20 par:pas; +chapitrée chapitrer ver f s 0.35 1.35 0.01 0.14 par:pas; +chapitrées chapitrer ver f p 0.35 1.35 0.00 0.14 par:pas; +chapka chapka nom f s 0.23 1.15 0.23 1.15 +chaplinesque chaplinesque adj f s 0.00 0.14 0.00 0.14 +chapon chapon nom m s 1.16 0.41 0.58 0.20 +chapons chapon nom m p 1.16 0.41 0.58 0.20 +chappe chappe nom m s 0.00 0.20 0.00 0.20 +chapska chapska nom m s 0.00 0.20 0.00 0.14 +chapskas chapska nom m p 0.00 0.20 0.00 0.07 +chapés chapé adj m p 0.00 0.07 0.00 0.07 +chaque chaque adj_ind s 246.29 486.35 246.29 486.35 +char char nom m s 11.86 27.57 8.60 7.91 +charabia charabia nom m s 2.46 1.55 2.46 1.42 +charabias charabia nom m p 2.46 1.55 0.00 0.14 +charade charade nom f s 0.53 0.74 0.12 0.27 +charades charade nom f p 0.53 0.74 0.41 0.47 +charale charale nom f s 0.03 0.00 0.03 0.00 +charançon charançon nom m s 0.20 0.47 0.07 0.14 +charançonné charançonné adj m s 0.00 0.27 0.00 0.07 +charançonnée charançonné adj f s 0.00 0.27 0.00 0.07 +charançonnés charançonné adj m p 0.00 0.27 0.00 0.14 +charançons charançon nom m p 0.20 0.47 0.14 0.34 +charbon charbon nom m s 9.24 24.59 8.39 21.96 +charbonnages charbonnage nom m p 0.27 0.68 0.27 0.68 +charbonnaient charbonner ver 0.00 1.28 0.00 0.14 ind:imp:3p; +charbonnait charbonner ver 0.00 1.28 0.00 0.20 ind:imp:3s; +charbonne charbonner ver 0.00 1.28 0.00 0.27 ind:pre:3s; +charbonnent charbonner ver 0.00 1.28 0.00 0.14 ind:pre:3p; +charbonner charbonner ver 0.00 1.28 0.00 0.07 inf; +charbonnette charbonnette nom f s 0.00 0.14 0.00 0.14 +charbonneuse charbonneux adj f s 0.00 4.46 0.00 1.01 +charbonneuses charbonneux adj f p 0.00 4.46 0.00 0.95 +charbonneux charbonneux adj m 0.00 4.46 0.00 2.50 +charbonnier charbonnier adj m s 0.13 0.95 0.10 0.61 +charbonniers charbonnier nom m p 0.04 2.36 0.03 1.01 +charbonnière charbonnier adj f s 0.13 0.95 0.02 0.34 +charbonnières charbonnière nom f p 0.00 0.47 0.00 0.14 +charbonné charbonner ver m s 0.00 1.28 0.00 0.14 par:pas; +charbonnées charbonner ver f p 0.00 1.28 0.00 0.14 par:pas; +charbonnés charbonner ver m p 0.00 1.28 0.00 0.20 par:pas; +charbons charbon nom m p 9.24 24.59 0.85 2.64 +charca charca nom s 0.00 0.47 0.00 0.47 +charcutage charcutage nom m s 0.04 0.14 0.04 0.14 +charcutaient charcuter ver 1.15 1.15 0.00 0.14 ind:imp:3p; +charcutaille charcutaille nom f s 0.01 0.27 0.01 0.27 +charcutait charcuter ver 1.15 1.15 0.03 0.07 ind:imp:3s; +charcute charcuter ver 1.15 1.15 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +charcuter charcuter ver 1.15 1.15 0.60 0.47 inf; +charcuterie charcuterie nom f s 0.94 5.20 0.81 4.32 +charcuteries charcuterie nom f p 0.94 5.20 0.14 0.88 +charcutez charcuter ver 1.15 1.15 0.01 0.14 imp:pre:2p;ind:pre:2p; +charcutier charcutier nom m s 0.04 4.73 0.03 2.70 +charcutiers charcutier nom m p 0.04 4.73 0.01 0.81 +charcutière charcutier nom f s 0.04 4.73 0.00 0.95 +charcutières charcutier nom f p 0.04 4.73 0.00 0.27 +charcuté charcuter ver m s 1.15 1.15 0.20 0.00 par:pas; +charcutée charcuter ver f s 1.15 1.15 0.05 0.07 par:pas; +charcutées charcuter ver f p 1.15 1.15 0.01 0.07 par:pas; +charcutés charcuter ver m p 1.15 1.15 0.00 0.07 par:pas; +chardon chardon nom m s 0.28 3.38 0.20 1.01 +chardonay chardonay nom m s 0.04 0.00 0.04 0.00 +chardonnay chardonnay nom m s 0.41 0.00 0.41 0.00 +chardonneret chardonneret nom m s 0.10 0.34 0.00 0.07 +chardonnerets chardonneret nom m p 0.10 0.34 0.10 0.27 +chardons chardon nom m p 0.28 3.38 0.08 2.36 +charentaise charentais nom f s 0.01 2.09 0.00 0.07 +charentaises charentais nom f p 0.01 2.09 0.01 2.03 +charge charger ver 93.02 122.16 28.43 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +chargea charger ver 93.02 122.16 0.24 4.46 ind:pas:3s; +chargeai charger ver 93.02 122.16 0.01 1.35 ind:pas:1s; +chargeaient charger ver 93.02 122.16 0.14 2.43 ind:imp:3p; +chargeais charger ver 93.02 122.16 0.43 0.47 ind:imp:1s;ind:imp:2s; +chargeait charger ver 93.02 122.16 0.68 7.16 ind:imp:3s; +chargeant charger ver 93.02 122.16 0.14 1.82 par:pre; +chargement chargement nom m s 7.14 6.42 6.37 5.68 +chargements chargement nom m p 7.14 6.42 0.78 0.74 +chargent charger ver 93.02 122.16 1.63 2.03 ind:pre:3p; +chargeons charger ver 93.02 122.16 0.53 0.14 imp:pre:1p;ind:pre:1p; +chargeât charger ver 93.02 122.16 0.00 0.34 sub:imp:3s; +charger charger ver 93.02 122.16 15.58 10.20 inf; +chargera charger ver 93.02 122.16 2.56 0.95 ind:fut:3s; +chargerai charger ver 93.02 122.16 1.92 0.68 ind:fut:1s; +chargeraient charger ver 93.02 122.16 0.14 0.68 cnd:pre:3p; +chargerais charger ver 93.02 122.16 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +chargerait charger ver 93.02 122.16 0.22 1.08 cnd:pre:3s; +chargeras charger ver 93.02 122.16 0.28 0.07 ind:fut:2s; +chargerez charger ver 93.02 122.16 0.37 0.07 ind:fut:2p; +chargerons charger ver 93.02 122.16 0.24 0.14 ind:fut:1p; +chargeront charger ver 93.02 122.16 0.39 0.34 ind:fut:3p; +charges charge nom f p 32.86 41.28 7.88 5.20 +chargeur chargeur nom m s 4.63 3.72 3.68 2.77 +chargeurs chargeur nom m p 4.63 3.72 0.95 0.95 +chargez charger ver 93.02 122.16 5.37 0.54 imp:pre:2p;ind:pre:2p; +chargiez charger ver 93.02 122.16 0.11 0.00 ind:imp:2p; +chargions charger ver 93.02 122.16 0.01 0.20 ind:imp:1p; +chargèrent charger ver 93.02 122.16 0.01 1.15 ind:pas:3p; +chargé charger ver m s 93.02 122.16 23.18 40.07 par:pas; +chargée charger ver f s 93.02 122.16 4.81 13.65 par:pas; +chargées charger ver f p 93.02 122.16 0.81 5.68 par:pas; +chargés charger ver m p 93.02 122.16 3.30 18.24 par:pas; +charia charia nom f s 0.01 0.00 0.01 0.00 +chariot chariot nom m s 14.40 14.12 12.12 8.45 +chariots chariot nom m p 14.40 14.12 2.28 5.68 +charismatique charismatique adj s 0.54 0.14 0.54 0.14 +charisme charisme nom m s 0.75 0.07 0.75 0.07 +charitable charitable adj s 4.16 3.78 2.90 2.70 +charitablement charitablement adv 0.01 0.47 0.01 0.47 +charitables charitable adj p 4.16 3.78 1.26 1.08 +charité charité nom f s 13.75 14.53 13.54 14.32 +charités charité nom f p 13.75 14.53 0.21 0.20 +charivari charivari nom m s 0.08 1.08 0.07 0.95 +charivaris charivari nom m p 0.08 1.08 0.01 0.14 +charlatan charlatan nom m s 4.44 1.08 3.07 0.47 +charlataner charlataner ver 0.00 0.07 0.00 0.07 inf; +charlatanerie charlatanerie nom f s 0.02 0.07 0.02 0.07 +charlatanisme charlatanisme nom m s 0.16 0.34 0.16 0.20 +charlatanismes charlatanisme nom m p 0.16 0.34 0.00 0.14 +charlatans charlatan nom m p 4.44 1.08 1.37 0.61 +charleston charleston nom m s 0.27 0.41 0.27 0.41 +charlot charlot nom m s 0.46 0.20 0.18 0.00 +charlots charlot nom m p 0.46 0.20 0.28 0.20 +charlotte charlotte nom f s 0.99 0.61 0.97 0.54 +charlottes charlotte nom f p 0.99 0.61 0.01 0.07 +charma charmer ver 5.69 6.96 0.00 0.14 ind:pas:3s; +charmaient charmer ver 5.69 6.96 0.00 0.41 ind:imp:3p; +charmait charmer ver 5.69 6.96 0.13 1.01 ind:imp:3s; +charmant charmant adj m s 54.51 41.15 27.52 19.86 +charmante charmant adj f s 54.51 41.15 21.04 14.32 +charmantes charmant adj f p 54.51 41.15 2.23 3.38 +charmants charmant adj m p 54.51 41.15 3.72 3.58 +charme charme nom m s 22.92 53.45 19.70 43.65 +charment charmer ver 5.69 6.96 0.04 0.34 ind:pre:3p; +charmer charmer ver 5.69 6.96 1.30 0.81 inf; +charmera charmer ver 5.69 6.96 0.01 0.07 ind:fut:3s; +charmes charme nom m p 22.92 53.45 3.22 9.80 +charmeur charmeur adj m s 1.01 1.76 0.93 0.88 +charmeurs charmeur adj m p 1.01 1.76 0.03 0.34 +charmeuse charmeuse nom f s 0.14 0.00 0.14 0.00 +charmeuses charmeur nom f p 0.94 1.35 0.00 0.47 +charmille charmille nom f s 0.02 1.55 0.02 1.22 +charmilles charmille nom f p 0.02 1.55 0.00 0.34 +charmé charmer ver m s 5.69 6.96 1.11 1.22 par:pas; +charmée charmé adj f s 0.73 1.08 0.34 0.20 +charmés charmer ver m p 5.69 6.96 0.05 0.00 par:pas; +charnel charnel adj m s 2.10 11.01 0.74 3.99 +charnelle charnel adj f s 2.10 11.01 0.59 4.46 +charnellement charnellement adv 0.00 0.61 0.00 0.61 +charnelles charnel adj f p 2.10 11.01 0.18 1.62 +charnels charnel adj m p 2.10 11.01 0.58 0.95 +charnier charnier nom m s 0.84 3.72 0.42 3.04 +charniers charnier nom m p 0.84 3.72 0.41 0.68 +charnière charnière nom f s 0.38 1.82 0.32 1.08 +charnières charnière nom f p 0.38 1.82 0.06 0.74 +charnu charnu adj m s 0.76 6.15 0.06 1.28 +charnue charnu adj f s 0.76 6.15 0.35 2.23 +charnues charnu adj f p 0.76 6.15 0.31 1.69 +charnus charnu adj m p 0.76 6.15 0.03 0.95 +charognard charognard nom m s 0.85 2.03 0.37 0.41 +charognards charognard nom m p 0.85 2.03 0.48 1.62 +charogne charogne nom f s 3.64 7.16 2.58 5.07 +charognerie charognerie nom f s 0.00 0.27 0.00 0.27 +charognes charogne nom f p 3.64 7.16 1.06 2.09 +charolaise charolais nom f s 0.00 0.14 0.00 0.07 +charolaises charolais nom f p 0.00 0.14 0.00 0.07 +charpente charpente nom f s 0.59 5.27 0.58 4.05 +charpenter charpenter ver 0.01 0.34 0.00 0.07 inf; +charpenterie charpenterie nom f s 0.04 0.00 0.04 0.00 +charpentes charpente nom f p 0.59 5.27 0.01 1.22 +charpentier charpentier nom m s 2.57 3.11 2.11 1.82 +charpentiers charpentier nom m p 2.57 3.11 0.45 1.28 +charpentière charpentier nom f s 2.57 3.11 0.01 0.00 +charpenté charpenté adj m s 0.02 0.47 0.01 0.20 +charpentée charpenté adj f s 0.02 0.47 0.01 0.20 +charpentés charpenté adj m p 0.02 0.47 0.00 0.07 +charpie charpie nom f s 0.52 2.50 0.52 2.43 +charpies charpie nom f p 0.52 2.50 0.00 0.07 +charre charre nom m s 0.18 2.03 0.18 1.69 +charres charre nom m p 0.18 2.03 0.00 0.34 +charretier charretier nom m s 0.19 1.89 0.16 1.01 +charretiers charretier nom m p 0.19 1.89 0.01 0.54 +charretière charretier nom f s 0.19 1.89 0.02 0.34 +charreton charreton nom m s 0.00 0.61 0.00 0.54 +charretons charreton nom m p 0.00 0.61 0.00 0.07 +charrette charrette nom f s 6.98 20.95 6.63 16.82 +charrettes charrette nom f p 6.98 20.95 0.36 4.12 +charretée charretée nom f s 0.01 0.74 0.01 0.34 +charretées charretée nom f p 0.01 0.74 0.00 0.41 +charria charrier ver 4.24 12.36 0.26 0.14 ind:pas:3s; +charriage charriage nom m s 0.00 0.14 0.00 0.14 +charriaient charrier ver 4.24 12.36 0.01 0.54 ind:imp:3p; +charriais charrier ver 4.24 12.36 0.03 0.14 ind:imp:1s; +charriait charrier ver 4.24 12.36 0.02 1.35 ind:imp:3s; +charriant charrier ver 4.24 12.36 0.14 1.49 par:pre; +charrie charrier ver 4.24 12.36 1.37 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +charrient charrier ver 4.24 12.36 0.04 0.61 ind:pre:3p; +charrier charrier ver 4.24 12.36 0.82 3.11 inf; +charrieras charrier ver 4.24 12.36 0.01 0.00 ind:fut:2s; +charrierons charrier ver 4.24 12.36 0.00 0.07 ind:fut:1p; +charrieront charrier ver 4.24 12.36 0.01 0.07 ind:fut:3p; +charries charrier ver 4.24 12.36 0.79 0.61 ind:pre:2s;sub:pre:2s; +charrieurs charrieur nom m p 0.01 0.00 0.01 0.00 +charriez charrier ver 4.24 12.36 0.41 0.81 imp:pre:2p;ind:pre:2p; +charrions charrier ver 4.24 12.36 0.01 0.00 imp:pre:1p; +charrière charrier nom f s 0.00 0.20 0.00 0.07 +charrièrent charrier ver 4.24 12.36 0.00 0.07 ind:pas:3p; +charrières charrier nom f p 0.00 0.20 0.00 0.14 +charrié charrier ver m s 4.24 12.36 0.28 1.22 par:pas; +charriée charrier ver f s 4.24 12.36 0.03 0.20 par:pas; +charriées charrier ver f p 4.24 12.36 0.03 0.20 par:pas; +charriés charrier ver m p 4.24 12.36 0.00 0.14 par:pas; +charroi charroi nom m s 0.00 1.82 0.00 0.95 +charrois charroi nom m p 0.00 1.82 0.00 0.88 +charron charron nom m s 0.03 0.47 0.03 0.34 +charronnées charronner ver f p 0.00 0.07 0.00 0.07 par:pas; +charrons charron nom m p 0.03 0.47 0.00 0.14 +charrue charrue nom f s 1.54 4.32 1.50 3.38 +charrues charrue nom f p 1.54 4.32 0.05 0.95 +charruée charruer ver f s 0.00 0.07 0.00 0.07 par:pas; +chars char nom m p 11.86 27.57 3.27 19.66 +charte charte nom f s 1.07 2.30 1.04 1.82 +charter charter nom m s 0.99 0.74 0.75 0.27 +charters charter nom m p 0.99 0.74 0.25 0.47 +chartes charte nom f p 1.07 2.30 0.03 0.47 +chartiste chartiste nom s 0.00 0.34 0.00 0.20 +chartistes chartiste nom p 0.00 0.34 0.00 0.14 +chartre chartre nom f s 0.01 0.00 0.01 0.00 +chartreuse chartreux nom f s 0.34 1.15 0.06 0.34 +chartreuses chartreux nom f p 0.34 1.15 0.00 0.14 +chartreux chartreux nom m 0.34 1.15 0.28 0.68 +charybde charybde nom m s 0.16 0.68 0.16 0.68 +chas chas nom m 0.74 0.47 0.74 0.47 +chassa chasser ver 54.93 67.91 0.47 4.46 ind:pas:3s; +chassai chasser ver 54.93 67.91 0.14 0.27 ind:pas:1s; +chassaient chasser ver 54.93 67.91 0.26 2.03 ind:imp:3p; +chassais chasser ver 54.93 67.91 0.93 0.47 ind:imp:1s;ind:imp:2s; +chassait chasser ver 54.93 67.91 0.90 7.30 ind:imp:3s; +chassant chasser ver 54.93 67.91 0.68 3.11 par:pre; +chasse_d_eau chasse_d_eau nom f s 0.00 0.07 0.00 0.07 +chasse_goupille chasse_goupille nom f p 0.00 0.20 0.00 0.20 +chasse_mouche chasse_mouche nom m s 0.00 0.14 0.00 0.14 +chasse_mouches chasse_mouches nom m 0.12 0.61 0.12 0.61 +chasse_neige chasse_neige nom m 0.58 0.54 0.58 0.54 +chasse_pierres chasse_pierres nom m 0.01 0.00 0.01 0.00 +chasse chasse nom f s 47.99 59.46 46.80 53.38 +chasselas chasselas nom m 0.01 0.14 0.01 0.14 +chassent chasser ver 54.93 67.91 1.45 0.88 ind:pre:3p; +chasser chasser ver 54.93 67.91 19.86 20.81 inf; +chassera chasser ver 54.93 67.91 1.41 0.61 ind:fut:3s; +chasserai chasser ver 54.93 67.91 0.80 0.20 ind:fut:1s; +chasseraient chasser ver 54.93 67.91 0.02 0.07 cnd:pre:3p; +chasserais chasser ver 54.93 67.91 0.23 0.00 cnd:pre:1s;cnd:pre:2s; +chasserait chasser ver 54.93 67.91 0.15 0.41 cnd:pre:3s; +chasseras chasser ver 54.93 67.91 0.04 0.14 ind:fut:2s; +chasseresse chasseur nom f s 34.91 41.55 0.46 0.41 +chasseresses chasseresse nom f p 0.01 0.00 0.01 0.00 +chasserez chasser ver 54.93 67.91 0.07 0.07 ind:fut:2p; +chasserions chasser ver 54.93 67.91 0.01 0.00 cnd:pre:1p; +chasserons chasser ver 54.93 67.91 0.36 0.14 ind:fut:1p; +chasseront chasser ver 54.93 67.91 0.69 0.07 ind:fut:3p; +chasses chasser ver 54.93 67.91 1.71 0.20 ind:pre:2s; +chasseur chasseur nom m s 34.91 41.55 21.27 23.58 +chasseurs chasseur nom m p 34.91 41.55 12.88 17.43 +chasseuse chasseur nom f s 34.91 41.55 0.30 0.07 +chassez chasser ver 54.93 67.91 2.97 0.61 imp:pre:2p;ind:pre:2p; +chassie chassie nom f s 0.05 0.14 0.05 0.14 +chassieuse chassieux adj f s 0.14 1.35 0.00 0.07 +chassieux chassieux adj m 0.14 1.35 0.14 1.28 +chassiez chasser ver 54.93 67.91 0.35 0.07 ind:imp:2p; +chassions chasser ver 54.93 67.91 0.04 0.27 ind:imp:1p; +chassons chasser ver 54.93 67.91 0.47 0.07 imp:pre:1p;ind:pre:1p; +chassât chasser ver 54.93 67.91 0.00 0.27 sub:imp:3s; +chassèrent chasser ver 54.93 67.91 0.02 0.27 ind:pas:3p; +chassé_croisé chassé_croisé nom m s 0.02 1.01 0.00 0.68 +chassé chasser ver m s 54.93 67.91 6.62 10.14 par:pas; +chassée chasser ver f s 54.93 67.91 1.71 2.77 par:pas; +chassées chasser ver f p 54.93 67.91 0.16 0.81 par:pas; +chassé_croisé chassé_croisé nom m p 0.02 1.01 0.02 0.34 +chassés chasser ver m p 54.93 67.91 1.64 3.04 par:pas; +chaste chaste adj s 2.22 5.14 1.50 4.32 +chastement chastement adv 0.01 0.54 0.01 0.54 +chastes chaste adj p 2.22 5.14 0.72 0.81 +chasteté chasteté nom f s 2.37 3.92 2.37 3.92 +chasuble chasuble nom f s 0.11 1.76 0.09 0.95 +chasubles chasuble nom f p 0.11 1.76 0.02 0.81 +chat_huant chat_huant nom m s 0.00 0.27 0.00 0.27 +chat_tigre chat_tigre nom m s 0.00 0.14 0.00 0.14 +chat chat nom m s 90.25 130.74 57.71 59.26 +chateaubriand chateaubriand nom m s 0.17 0.27 0.15 0.20 +chateaubriands chateaubriand nom m p 0.17 0.27 0.02 0.07 +chatière chatière nom f s 0.14 0.54 0.14 0.54 +chatoiement chatoiement nom m s 0.05 1.35 0.05 1.01 +chatoiements chatoiement nom m p 0.05 1.35 0.00 0.34 +chatoient chatoyer ver 0.00 0.81 0.00 0.07 ind:pre:3p; +chaton chaton nom m s 4.41 4.66 3.32 2.50 +chatonne chatonner ver 0.01 0.00 0.01 0.00 ind:pre:3s; +chatons chaton nom m p 4.41 4.66 1.09 2.16 +chatouilla chatouiller ver 7.04 7.36 0.00 0.41 ind:pas:3s; +chatouillaient chatouiller ver 7.04 7.36 0.01 0.61 ind:imp:3p; +chatouillait chatouiller ver 7.04 7.36 0.37 1.55 ind:imp:3s; +chatouillant chatouiller ver 7.04 7.36 0.11 0.34 par:pre; +chatouille chatouiller ver 7.04 7.36 3.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chatouillement chatouillement nom m s 0.17 0.81 0.15 0.74 +chatouillements chatouillement nom m p 0.17 0.81 0.01 0.07 +chatouillent chatouiller ver 7.04 7.36 0.06 0.27 ind:pre:3p; +chatouiller chatouiller ver 7.04 7.36 0.85 1.69 inf; +chatouillera chatouiller ver 7.04 7.36 0.04 0.00 ind:fut:3s; +chatouilles chatouiller ver 7.04 7.36 1.95 0.14 ind:pre:2s; +chatouilleuse chatouilleux adj f s 1.00 0.95 0.34 0.20 +chatouilleuses chatouilleux adj f p 1.00 0.95 0.03 0.00 +chatouilleux chatouilleux adj m 1.00 0.95 0.63 0.74 +chatouillez chatouiller ver 7.04 7.36 0.23 0.07 imp:pre:2p;ind:pre:2p; +chatouillis chatouillis nom m 0.02 0.34 0.02 0.34 +chatouillons chatouiller ver 7.04 7.36 0.01 0.00 imp:pre:1p; +chatouillât chatouiller ver 7.04 7.36 0.00 0.14 sub:imp:3s; +chatouillèrent chatouiller ver 7.04 7.36 0.00 0.27 ind:pas:3p; +chatouillé chatouiller ver m s 7.04 7.36 0.14 0.47 par:pas; +chatouillée chatouiller ver f s 7.04 7.36 0.01 0.41 par:pas; +chatouillées chatouiller ver f p 7.04 7.36 0.00 0.07 par:pas; +chatouillés chatouiller ver m p 7.04 7.36 0.00 0.20 par:pas; +chatoyaient chatoyer ver 0.00 0.81 0.00 0.14 ind:imp:3p; +chatoyait chatoyer ver 0.00 0.81 0.00 0.07 ind:imp:3s; +chatoyant chatoyant adj m s 0.44 2.03 0.29 0.74 +chatoyante chatoyant adj f s 0.44 2.03 0.02 0.54 +chatoyantes chatoyant adj f p 0.44 2.03 0.10 0.47 +chatoyants chatoyant adj m p 0.44 2.03 0.03 0.27 +chatoyer chatoyer ver 0.00 0.81 0.00 0.20 inf; +chats chat nom m p 90.25 130.74 16.00 38.11 +chattant chatter ver 0.45 0.00 0.14 0.00 par:pre; +chatte chat nom f s 90.25 130.74 16.54 29.12 +chattemite chattemite nom f s 0.00 0.14 0.00 0.14 +chatter chatter ver 0.45 0.00 0.30 0.00 inf; +chatterie chatterie nom f s 0.01 0.54 0.00 0.20 +chatteries chatterie nom f p 0.01 0.54 0.01 0.34 +chatterton chatterton nom m s 0.21 0.34 0.21 0.34 +chattes chatte nom f p 2.75 0.00 2.75 0.00 +chattons chatter ver 0.45 0.00 0.01 0.00 imp:pre:1p; +chaud_froid chaud_froid nom m s 0.00 0.41 0.00 0.34 +chaud chaud adj m s 84.16 113.31 50.20 46.42 +chaude_pisse chaude_pisse nom f s 0.15 0.34 0.15 0.27 +chaude chaud adj f s 84.16 113.31 22.48 45.47 +chaudement chaudement adv 1.07 2.64 1.07 2.64 +chaude_pisse chaude_pisse nom f p 0.15 0.34 0.00 0.07 +chaudes chaud adj f p 84.16 113.31 4.89 13.18 +chaudière chaudière nom f s 2.62 3.51 1.89 3.11 +chaudières chaudière nom f p 2.62 3.51 0.73 0.41 +chaudron chaudron nom m s 1.12 5.81 0.79 4.26 +chaudronnerie chaudronnerie nom f s 0.00 0.34 0.00 0.27 +chaudronneries chaudronnerie nom f p 0.00 0.34 0.00 0.07 +chaudronnier chaudronnier nom m s 0.02 0.47 0.02 0.34 +chaudronniers chaudronnier nom m p 0.02 0.47 0.00 0.14 +chaudronné chaudronner ver m s 0.00 0.07 0.00 0.07 par:pas; +chaudronnée chaudronnée nom f s 0.00 0.07 0.00 0.07 +chaudrons chaudron nom m p 1.12 5.81 0.33 1.55 +chaud_froid chaud_froid nom m p 0.00 0.41 0.00 0.07 +chauds chaud adj m p 84.16 113.31 6.59 8.24 +chauffa chauffer ver 21.75 29.80 0.00 0.34 ind:pas:3s; +chauffage chauffage nom m s 4.96 6.08 4.96 6.08 +chauffagiste chauffagiste nom m s 0.04 0.00 0.04 0.00 +chauffaient chauffer ver 21.75 29.80 0.12 1.01 ind:imp:3p; +chauffais chauffer ver 21.75 29.80 0.03 0.27 ind:imp:1s;ind:imp:2s; +chauffait chauffer ver 21.75 29.80 0.34 3.72 ind:imp:3s; +chauffant chauffant adj m s 0.58 0.41 0.09 0.00 +chauffante chauffant adj f s 0.58 0.41 0.30 0.34 +chauffantes chauffant adj f p 0.58 0.41 0.08 0.07 +chauffants chauffant adj m p 0.58 0.41 0.11 0.00 +chauffard chauffard nom m s 1.62 0.95 1.38 0.47 +chauffards chauffard nom m p 1.62 0.95 0.24 0.47 +chauffe_biberon chauffe_biberon nom m s 0.10 0.00 0.10 0.00 +chauffe_eau chauffe_eau nom m 0.63 0.61 0.63 0.61 +chauffe_plats chauffe_plats nom m 0.00 0.14 0.00 0.14 +chauffe chauffer ver 21.75 29.80 7.01 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chauffent chauffer ver 21.75 29.80 0.52 0.61 ind:pre:3p; +chauffer chauffer ver 21.75 29.80 9.06 10.14 inf; +chauffera chauffer ver 21.75 29.80 0.28 0.07 ind:fut:3s; +chaufferai chauffer ver 21.75 29.80 0.05 0.00 ind:fut:1s; +chaufferette chaufferette nom f s 0.12 0.81 0.12 0.68 +chaufferettes chaufferette nom f p 0.12 0.81 0.00 0.14 +chaufferie chaufferie nom f s 0.64 0.88 0.63 0.81 +chaufferies chaufferie nom f p 0.64 0.88 0.01 0.07 +chauffes chauffer ver 21.75 29.80 0.42 0.00 ind:pre:2s; +chauffeur_livreur chauffeur_livreur nom m s 0.00 0.14 0.00 0.14 +chauffeur chauffeur nom m s 40.59 49.86 37.35 44.19 +chauffeurs chauffeur nom m p 40.59 49.86 3.19 5.00 +chauffeuse chauffeur nom f s 40.59 49.86 0.05 0.68 +chauffez chauffer ver 21.75 29.80 0.70 0.27 imp:pre:2p;ind:pre:2p; +chauffiez chauffer ver 21.75 29.80 0.01 0.00 ind:imp:2p; +chauffions chauffer ver 21.75 29.80 0.00 0.07 ind:imp:1p; +chauffâmes chauffer ver 21.75 29.80 0.00 0.07 ind:pas:1p; +chauffons chauffer ver 21.75 29.80 0.22 0.14 imp:pre:1p;ind:pre:1p; +chauffèrent chauffer ver 21.75 29.80 0.00 0.07 ind:pas:3p; +chauffé chauffer ver m s 21.75 29.80 1.75 3.58 par:pas; +chauffée chauffer ver f s 21.75 29.80 0.78 2.91 par:pas; +chauffées chauffer ver f p 21.75 29.80 0.08 0.74 par:pas; +chauffés chauffer ver m p 21.75 29.80 0.35 1.62 par:pas; +chaule chauler ver 0.00 1.22 0.00 0.07 ind:pre:3s; +chauler chauler ver 0.00 1.22 0.00 0.07 inf; +chaulé chauler ver m s 0.00 1.22 0.00 0.07 par:pas; +chaulée chauler ver f s 0.00 1.22 0.00 0.14 par:pas; +chaulées chauler ver f p 0.00 1.22 0.00 0.20 par:pas; +chaulés chauler ver m p 0.00 1.22 0.00 0.68 par:pas; +chaume chaume nom m s 0.36 7.09 0.36 4.86 +chaumes chaume nom m p 0.36 7.09 0.00 2.23 +chaumine chaumine nom f s 0.11 0.47 0.11 0.41 +chaumines chaumine nom f p 0.11 0.47 0.00 0.07 +chaumière chaumière nom f s 1.47 2.77 1.23 1.08 +chaumières chaumière nom f p 1.47 2.77 0.24 1.69 +chaumé chaumer ver m s 0.00 0.07 0.00 0.07 par:pas; +chaussa chausser ver 1.27 15.61 0.00 1.28 ind:pas:3s; +chaussai chausser ver 1.27 15.61 0.00 0.07 ind:pas:1s; +chaussaient chausser ver 1.27 15.61 0.00 0.20 ind:imp:3p; +chaussait chausser ver 1.27 15.61 0.02 0.88 ind:imp:3s; +chaussant chaussant adj m s 0.03 0.00 0.03 0.00 +chausse_pied chausse_pied nom m s 0.24 0.14 0.24 0.14 +chausse_trape chausse_trape nom f s 0.00 0.20 0.00 0.07 +chausse_trape chausse_trape nom f p 0.00 0.20 0.00 0.14 +chausse_trappe chausse_trappe nom f s 0.00 0.07 0.00 0.07 +chausse chausser ver 1.27 15.61 0.74 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chaussent chausser ver 1.27 15.61 0.01 0.20 ind:pre:3p; +chausser chausser ver 1.27 15.61 0.17 1.42 inf; +chausserai chausser ver 1.27 15.61 0.00 0.07 ind:fut:1s; +chausses chausser ver 1.27 15.61 0.16 0.07 ind:pre:2s; +chaussette chaussette nom f s 16.45 22.84 3.29 4.39 +chaussettes chaussette nom f p 16.45 22.84 13.16 18.45 +chausseur chausseur nom m s 0.07 0.54 0.07 0.41 +chausseurs chausseur nom m p 0.07 0.54 0.00 0.14 +chaussez chausser ver 1.27 15.61 0.06 0.00 imp:pre:2p;ind:pre:2p; +chausson chausson nom m s 3.50 5.95 0.67 0.61 +chaussons chausson nom m p 3.50 5.95 2.83 5.34 +chaussèrent chausser ver 1.27 15.61 0.00 0.14 ind:pas:3p; +chaussé chausser ver m s 1.27 15.61 0.06 4.53 par:pas; +chaussée chaussée nom f s 1.87 24.32 1.64 22.36 +chaussées chaussée nom f p 1.87 24.32 0.23 1.96 +chaussure chaussure nom f s 73.58 56.49 12.49 8.78 +chaussures chaussure nom f p 73.58 56.49 61.09 47.70 +chaussés chausser ver m p 1.27 15.61 0.03 3.65 par:pas; +chaut chaut ver 0.01 0.34 0.01 0.34 inf; +chauve_souris chauve_souris nom f s 7.16 4.66 5.43 2.23 +chauve chauve adj s 5.92 10.81 5.25 9.46 +chauve_souris chauve_souris nom f p 7.16 4.66 1.73 2.43 +chauves chauve nom p 5.20 5.47 0.72 0.34 +chauvin chauvin adj m s 0.43 2.50 0.32 2.30 +chauvine chauvin nom f s 0.04 2.03 0.00 0.07 +chauvines chauvin adj f p 0.43 2.50 0.01 0.14 +chauvinisme chauvinisme nom m s 0.08 0.74 0.08 0.74 +chauviniste chauviniste nom s 0.03 0.00 0.03 0.00 +chauvins chauvin adj m p 0.43 2.50 0.10 0.07 +chauvit chauvir ver 0.00 0.07 0.00 0.07 ind:pas:3s; +chaux chaux nom f 1.32 7.36 1.32 7.36 +chavignol chavignol nom m s 0.00 0.07 0.00 0.07 +chavira chavirer ver 2.41 8.65 0.00 0.68 ind:pas:3s; +chavirai chavirer ver 2.41 8.65 0.00 0.07 ind:pas:1s; +chaviraient chavirer ver 2.41 8.65 0.00 0.27 ind:imp:3p; +chavirait chavirer ver 2.41 8.65 0.02 1.08 ind:imp:3s; +chavirant chavirer ver 2.41 8.65 0.00 0.07 par:pre; +chavirante chavirant adj f s 0.00 0.27 0.00 0.20 +chavire chavirer ver 2.41 8.65 0.43 0.95 ind:pre:1s;ind:pre:3s; +chavirement chavirement nom m s 0.14 0.34 0.14 0.20 +chavirements chavirement nom m p 0.14 0.34 0.00 0.14 +chavirent chavirer ver 2.41 8.65 0.02 0.34 ind:pre:3p; +chavirer chavirer ver 2.41 8.65 1.01 2.36 inf; +chavireraient chavirer ver 2.41 8.65 0.00 0.07 cnd:pre:3p; +chavirerait chavirer ver 2.41 8.65 0.01 0.07 cnd:pre:3s; +chavireront chavirer ver 2.41 8.65 0.00 0.07 ind:fut:3p; +chavirions chavirer ver 2.41 8.65 0.00 0.07 ind:imp:1p; +chavirons chavirer ver 2.41 8.65 0.14 0.07 ind:pre:1p; +chavirèrent chavirer ver 2.41 8.65 0.00 0.14 ind:pas:3p; +chaviré chavirer ver m s 2.41 8.65 0.62 1.49 par:pas; +chavirée chavirer ver f s 2.41 8.65 0.16 0.34 par:pas; +chavirés chavirer ver m p 2.41 8.65 0.01 0.54 par:pas; +cheap cheap adj m s 0.50 0.14 0.50 0.14 +check_list check_list nom f s 0.22 0.00 0.22 0.00 +check_up check_up nom m 0.69 0.00 0.68 0.00 +check_up check_up nom m 0.69 0.00 0.01 0.00 +cheddar cheddar nom m s 0.53 0.00 0.53 0.00 +cheddite cheddite nom f s 0.00 0.20 0.00 0.20 +cheese_cake cheese_cake nom m s 0.32 0.00 0.28 0.00 +cheese_cake cheese_cake nom m p 0.32 0.00 0.05 0.00 +cheeseburger cheeseburger nom m s 3.06 0.00 2.22 0.00 +cheeseburgers cheeseburger nom m p 3.06 0.00 0.84 0.00 +chef_adjoint chef_adjoint nom s 0.04 0.00 0.04 0.00 +chef_d_oeuvre chef_d_oeuvre nom m s 3.34 12.77 2.56 8.51 +chef_d_oeuvres chef_d_oeuvres nom s 0.11 0.00 0.11 0.00 +chef_lieu chef_lieu nom m s 0.19 1.82 0.19 1.82 +chef chef nom s 205.26 205.95 189.79 172.57 +chef_d_oeuvre chef_d_oeuvre nom m p 3.34 12.77 0.77 4.26 +chefs_lieux chefs_lieux nom m p 0.00 0.27 0.00 0.27 +chefs chef nom p 205.26 205.95 15.46 33.38 +cheftaine cheftaine nom f s 0.13 0.54 0.13 0.27 +cheftaines cheftaine nom f p 0.13 0.54 0.00 0.27 +cheik cheik nom m s 0.48 0.95 0.45 0.88 +cheikh cheikh nom m s 0.32 0.00 0.32 0.00 +cheiks cheik nom m p 0.48 0.95 0.04 0.07 +chelem chelem nom m s 0.31 0.20 0.31 0.20 +chemin chemin nom m s 125.18 231.42 114.34 197.50 +chemina cheminer ver 0.87 8.99 0.01 0.07 ind:pas:3s; +cheminaient cheminer ver 0.87 8.99 0.00 0.74 ind:imp:3p; +cheminait cheminer ver 0.87 8.99 0.10 0.88 ind:imp:3s; +cheminant cheminer ver 0.87 8.99 0.04 1.42 par:pre; +chemine cheminer ver 0.87 8.99 0.48 1.15 ind:pre:1s;ind:pre:3s; +chemineau chemineau nom m s 0.04 1.62 0.02 0.95 +chemineaux chemineau nom m p 0.04 1.62 0.02 0.68 +cheminement cheminement nom m s 0.18 6.08 0.17 4.86 +cheminements cheminement nom m p 0.18 6.08 0.01 1.22 +cheminent cheminer ver 0.87 8.99 0.02 0.47 ind:pre:3p; +cheminer cheminer ver 0.87 8.99 0.02 2.23 inf; +chemineraient cheminer ver 0.87 8.99 0.00 0.07 cnd:pre:3p; +cheminerait cheminer ver 0.87 8.99 0.00 0.07 cnd:pre:3s; +cheminerons cheminer ver 0.87 8.99 0.00 0.07 ind:fut:1p; +chemineront cheminer ver 0.87 8.99 0.00 0.07 ind:fut:3p; +cheminions cheminer ver 0.87 8.99 0.00 0.07 ind:imp:1p; +cheminâmes cheminer ver 0.87 8.99 0.00 0.07 ind:pas:1p; +cheminons cheminer ver 0.87 8.99 0.01 0.20 imp:pre:1p;ind:pre:1p; +cheminot cheminot nom m s 1.42 2.50 1.06 1.01 +cheminots cheminot nom m p 1.42 2.50 0.35 1.49 +chemins chemin nom m p 125.18 231.42 10.85 33.92 +cheminèrent cheminer ver 0.87 8.99 0.00 0.14 ind:pas:3p; +cheminé cheminer ver m s 0.87 8.99 0.11 1.15 par:pas; +cheminée cheminée nom f s 11.39 43.99 9.99 36.28 +cheminées cheminée nom f p 11.39 43.99 1.40 7.70 +chemise chemise nom f s 43.66 91.42 36.48 74.59 +chemiser chemiser ver 0.21 0.07 0.14 0.07 inf; +chemiserie chemiserie nom f s 0.16 0.14 0.16 0.14 +chemises chemise nom f p 43.66 91.42 7.18 16.82 +chemisette chemisette nom f s 0.16 4.12 0.15 2.77 +chemisettes chemisette nom f p 0.16 4.12 0.01 1.35 +chemisier chemisier nom m s 4.00 7.97 3.77 6.76 +chemisiers chemisier nom m p 4.00 7.97 0.23 1.22 +chemisée chemiser ver f s 0.21 0.07 0.02 0.00 par:pas; +chemisées chemiser ver f p 0.21 0.07 0.05 0.00 par:pas; +chenal chenal nom m s 0.24 4.73 0.20 3.65 +chenapan chenapan nom m s 1.08 0.88 0.72 0.41 +chenapans chenapan nom m p 1.08 0.88 0.36 0.47 +chenaux chenal nom m p 0.24 4.73 0.04 1.08 +chenet chenet nom m s 0.06 0.81 0.01 0.14 +chenets chenet nom m p 0.06 0.81 0.04 0.68 +chenil chenil nom m s 1.40 3.24 1.30 2.77 +chenille chenille nom f s 2.14 5.68 1.38 2.50 +chenilles chenille nom f p 2.14 5.68 0.76 3.18 +chenillette chenillette nom f s 0.06 0.34 0.06 0.07 +chenillettes chenillette nom f p 0.06 0.34 0.00 0.27 +chenillé chenillé adj m s 0.00 0.14 0.00 0.07 +chenillés chenillé adj m p 0.00 0.14 0.00 0.07 +chenils chenil nom m p 1.40 3.24 0.09 0.47 +chenu chenu adj m s 0.26 1.22 0.14 0.54 +chenue chenu adj f s 0.26 1.22 0.01 0.34 +chenues chenu adj f p 0.26 1.22 0.10 0.14 +chenus chenu adj m p 0.26 1.22 0.00 0.20 +cheptel cheptel nom m s 0.09 1.35 0.09 1.35 +cher cher adj m s 205.75 133.65 130.70 90.47 +chercha chercher ver 712.46 448.99 0.96 27.03 ind:pas:3s; +cherchai chercher ver 712.46 448.99 0.92 4.93 ind:pas:1s; +cherchaient chercher ver 712.46 448.99 4.01 11.76 ind:imp:3p; +cherchais chercher ver 712.46 448.99 26.40 15.34 ind:imp:1s;ind:imp:2s; +cherchait chercher ver 712.46 448.99 16.27 52.50 ind:imp:3s; +cherchant chercher ver 712.46 448.99 5.90 31.62 par:pre; +cherchas chercher ver 712.46 448.99 0.00 0.07 ind:pas:2s; +cherche_midi cherche_midi nom m 0.01 0.27 0.01 0.27 +cherche chercher ver 712.46 448.99 150.75 66.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cherchent chercher ver 712.46 448.99 17.53 12.09 ind:pre:3p;sub:pre:3p; +chercher chercher ver 712.46 448.99 341.01 172.36 inf;;inf;;inf;; +cherchera chercher ver 712.46 448.99 2.11 1.01 ind:fut:3s; +chercherai chercher ver 712.46 448.99 2.39 0.74 ind:fut:1s; +chercheraient chercher ver 712.46 448.99 0.40 0.47 cnd:pre:3p; +chercherais chercher ver 712.46 448.99 1.52 0.54 cnd:pre:1s;cnd:pre:2s; +chercherait chercher ver 712.46 448.99 1.06 1.69 cnd:pre:3s; +chercheras chercher ver 712.46 448.99 0.50 0.14 ind:fut:2s; +chercherez chercher ver 712.46 448.99 0.19 0.07 ind:fut:2p; +chercheriez chercher ver 712.46 448.99 0.04 0.14 cnd:pre:2p; +chercherions chercher ver 712.46 448.99 0.00 0.14 cnd:pre:1p; +chercherons chercher ver 712.46 448.99 0.86 0.20 ind:fut:1p; +chercheront chercher ver 712.46 448.99 1.04 0.81 ind:fut:3p; +cherches chercher ver 712.46 448.99 36.45 5.81 ind:pre:2s;sub:pre:2s; +chercheur chercheur nom m s 5.71 3.78 2.66 1.76 +chercheurs chercheur nom m p 5.71 3.78 2.58 1.96 +chercheuse chercheur nom f s 5.71 3.78 0.48 0.07 +chercheuses chercheur adj f p 1.35 0.81 0.06 0.00 +cherchez chercher ver 712.46 448.99 42.95 7.36 imp:pre:2p;ind:pre:2p; +cherchiez chercher ver 712.46 448.99 4.79 0.74 ind:imp:2p;sub:pre:2p; +cherchions chercher ver 712.46 448.99 2.04 2.03 ind:imp:1p;sub:pre:1p; +cherchâmes chercher ver 712.46 448.99 0.00 0.20 ind:pas:1p; +cherchons chercher ver 712.46 448.99 13.13 2.03 imp:pre:1p;ind:pre:1p; +cherchât chercher ver 712.46 448.99 0.00 0.95 sub:imp:3s; +cherchèrent chercher ver 712.46 448.99 0.19 2.03 ind:pas:3p; +cherché chercher ver m s 712.46 448.99 32.27 24.53 par:pas; +cherchée chercher ver f s 712.46 448.99 5.56 2.03 par:pas; +cherchées chercher ver f p 712.46 448.99 0.43 0.54 par:pas; +cherchés chercher ver m p 712.46 448.99 0.81 0.41 par:pas; +chergui chergui nom m s 0.00 0.74 0.00 0.74 +cherokee cherokee nom m s 0.34 0.27 0.21 0.07 +cherokees cherokee nom m p 0.34 0.27 0.13 0.20 +cherres cherrer ver 0.00 0.07 0.00 0.07 ind:pre:2s; +cherry cherry nom m s 0.13 0.34 0.13 0.34 +chers cher adj m p 205.75 133.65 28.61 13.99 +cherté cherté nom f s 0.00 0.47 0.00 0.47 +chester chester nom m s 0.12 0.07 0.12 0.07 +chevai chever ver 0.45 0.00 0.45 0.00 ind:pas:1s; +cheval_vapeur cheval_vapeur nom m s 0.03 0.20 0.02 0.07 +cheval cheval nom m s 129.12 179.26 85.42 110.27 +chevaler chevaler ver 0.00 0.14 0.00 0.07 inf; +chevaleresque chevaleresque adj s 0.40 1.22 0.39 0.95 +chevaleresquement chevaleresquement adv 0.00 0.07 0.00 0.07 +chevaleresques chevaleresque adj m p 0.40 1.22 0.01 0.27 +chevalerie chevalerie nom f s 0.77 2.23 0.77 2.09 +chevaleries chevalerie nom f p 0.77 2.23 0.00 0.14 +chevalet chevalet nom m s 0.53 6.22 0.47 4.93 +chevalets chevalet nom m p 0.53 6.22 0.05 1.28 +chevalier chevalier nom m s 15.91 36.15 10.77 21.89 +chevaliers chevalier nom m p 15.91 36.15 5.14 14.26 +chevalin chevalin adj m s 0.18 1.82 0.03 0.68 +chevaline chevalin adj f s 0.18 1.82 0.14 1.01 +chevalins chevalin adj m p 0.18 1.82 0.00 0.14 +chevalière chevalière nom f s 0.47 2.97 0.45 2.43 +chevalières chevalière nom f p 0.47 2.97 0.02 0.54 +chevalée chevaler ver f s 0.00 0.14 0.00 0.07 par:pas; +chevance chevance nom f s 0.00 0.20 0.00 0.20 +chevau_léger chevau_léger nom m s 0.01 0.14 0.01 0.14 +chevaucha chevaucher ver 3.67 12.77 0.01 0.34 ind:pas:3s; +chevauchaient chevaucher ver 3.67 12.77 0.17 1.62 ind:imp:3p; +chevauchais chevaucher ver 3.67 12.77 0.05 0.07 ind:imp:1s;ind:imp:2s; +chevauchait chevaucher ver 3.67 12.77 0.22 1.69 ind:imp:3s; +chevauchant chevaucher ver 3.67 12.77 0.30 2.09 par:pre; +chevauche chevaucher ver 3.67 12.77 0.79 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chevauchement chevauchement nom m s 0.14 0.14 0.14 0.14 +chevauchent chevaucher ver 3.67 12.77 0.18 1.69 ind:pre:3p; +chevaucher chevaucher ver 3.67 12.77 1.00 2.16 inf; +chevauchera chevaucher ver 3.67 12.77 0.02 0.00 ind:fut:3s; +chevaucherai chevaucher ver 3.67 12.77 0.26 0.00 ind:fut:1s; +chevaucheraient chevaucher ver 3.67 12.77 0.00 0.07 cnd:pre:3p; +chevaucheur chevaucheur nom m s 0.00 0.07 0.00 0.07 +chevauchez chevaucher ver 3.67 12.77 0.08 0.00 imp:pre:2p;ind:pre:2p; +chevauchons chevaucher ver 3.67 12.77 0.09 0.14 imp:pre:1p;ind:pre:1p; +chevauchèrent chevaucher ver 3.67 12.77 0.00 0.27 ind:pas:3p; +chevauché chevaucher ver m s 3.67 12.77 0.35 0.61 par:pas; +chevauchée chevauchée nom f s 0.56 4.19 0.42 2.50 +chevauchées chevauchée nom f p 0.56 4.19 0.14 1.69 +chevauchés chevaucher ver m p 3.67 12.77 0.00 0.14 par:pas; +cheval_vapeur cheval_vapeur nom m p 0.03 0.20 0.01 0.14 +chevaux cheval nom m p 129.12 179.26 43.70 68.99 +chevelu chevelu adj m s 1.53 4.66 1.31 2.36 +chevelue chevelu adj f s 1.53 4.66 0.04 0.81 +chevelues chevelu adj f p 1.53 4.66 0.00 0.34 +chevelure chevelure nom f s 2.52 27.50 2.50 25.07 +chevelures chevelure nom f p 2.52 27.50 0.02 2.43 +chevelus chevelu adj m p 1.53 4.66 0.18 1.15 +chevesne chevesne nom m s 0.02 1.35 0.02 0.95 +chevesnes chevesne nom m p 0.02 1.35 0.00 0.41 +chevet chevet nom m s 3.27 18.92 3.27 18.51 +chevets chevet nom m p 3.27 18.92 0.00 0.41 +cheveu cheveu nom m s 121.27 270.68 5.11 7.50 +cheveux cheveu nom m p 121.27 270.68 116.16 263.18 +chevillage chevillage nom m s 0.00 0.07 0.00 0.07 +chevillard chevillard nom m s 0.00 0.14 0.00 0.07 +chevillards chevillard nom m p 0.00 0.14 0.00 0.07 +cheville cheville nom f s 12.24 22.16 8.79 8.99 +chevilles cheville nom f p 12.24 22.16 3.45 13.18 +chevillette chevillette nom f s 0.10 0.07 0.10 0.07 +chevillé cheviller ver m s 0.16 0.88 0.14 0.41 par:pas; +chevillée cheviller ver f s 0.16 0.88 0.01 0.41 par:pas; +chevillées cheviller ver f p 0.16 0.88 0.00 0.07 par:pas; +cheviotte cheviotte nom f s 0.00 0.20 0.00 0.20 +chevir chevir ver 0.27 0.00 0.27 0.00 inf; +chevreau chevreau nom m s 0.84 3.38 0.44 2.36 +chevreaux chevreau nom m p 0.84 3.38 0.40 1.01 +chevrette chevrette nom f s 0.11 0.81 0.11 0.68 +chevrettes chevrette nom f p 0.11 0.81 0.00 0.14 +chevreuil chevreuil nom m s 1.58 5.14 1.31 2.97 +chevreuils chevreuil nom m p 1.58 5.14 0.26 2.16 +chevrier chevrier nom m s 0.35 0.27 0.20 0.14 +chevriers chevrier nom m p 0.35 0.27 0.14 0.07 +chevrière chevrier nom f s 0.35 0.27 0.00 0.07 +chevron chevron nom m s 1.36 2.50 0.96 0.41 +chevronné chevronné adj m s 0.31 1.01 0.11 0.47 +chevronnée chevronner ver f s 0.04 0.14 0.00 0.07 par:pas; +chevronnés chevronné adj m p 0.31 1.01 0.20 0.54 +chevrons chevron nom m p 1.36 2.50 0.40 2.09 +chevrota chevroter ver 0.03 1.28 0.00 0.20 ind:pas:3s; +chevrotais chevroter ver 0.03 1.28 0.00 0.07 ind:imp:1s; +chevrotait chevroter ver 0.03 1.28 0.00 0.34 ind:imp:3s; +chevrotant chevroter ver 0.03 1.28 0.00 0.07 par:pre; +chevrotante chevrotant adj f s 0.14 1.15 0.14 1.15 +chevrote chevroter ver 0.03 1.28 0.01 0.27 ind:pre:1s;ind:pre:3s; +chevrotement chevrotement nom m s 0.00 0.41 0.00 0.34 +chevrotements chevrotement nom m p 0.00 0.41 0.00 0.07 +chevroter chevroter ver 0.03 1.28 0.02 0.20 inf; +chevrotine chevrotine nom f s 0.78 1.42 0.43 0.54 +chevrotines chevrotine nom f p 0.78 1.42 0.35 0.88 +chevroté chevroter ver m s 0.03 1.28 0.00 0.07 par:pas; +chevrotée chevroter ver f s 0.03 1.28 0.00 0.07 par:pas; +chevêche chevêche nom f s 0.00 0.41 0.00 0.27 +chevêches chevêche nom f p 0.00 0.41 0.00 0.14 +chewing_gum chewing_gum nom m s 0.01 3.58 0.00 3.11 +chewing_gum chewing_gum nom m p 0.01 3.58 0.01 0.41 +chewing_gum chewing_gum nom m s 0.01 3.58 0.00 0.07 +chez_soi chez_soi nom m 0.31 0.41 0.31 0.41 +chez chez pre 842.18 680.54 842.18 680.54 +chi chi nom m s 1.29 0.54 1.29 0.54 +chia chier ver 67.53 22.64 0.02 0.00 ind:pas:3s; +chiader chiader ver 0.14 0.47 0.05 0.14 inf; +chiadé chiader ver m s 0.14 0.47 0.06 0.27 par:pas; +chiadée chiader ver f s 0.14 0.47 0.02 0.00 par:pas; +chiadées chiader ver f p 0.14 0.47 0.01 0.07 par:pas; +chiaient chier ver 67.53 22.64 0.39 0.00 ind:imp:3p; +chiais chier ver 67.53 22.64 1.30 0.00 ind:imp:1s;ind:imp:2s; +chiait chier ver 67.53 22.64 0.12 0.07 ind:imp:3s; +chiala chialer ver 7.25 13.78 0.00 0.07 ind:pas:3s; +chialaient chialer ver 7.25 13.78 0.01 0.00 ind:imp:3p; +chialais chialer ver 7.25 13.78 0.17 0.41 ind:imp:1s;ind:imp:2s; +chialait chialer ver 7.25 13.78 0.20 0.74 ind:imp:3s; +chialant chialer ver 7.25 13.78 0.01 0.74 par:pre; +chiale chialer ver 7.25 13.78 1.28 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chialent chialer ver 7.25 13.78 0.34 0.14 ind:pre:3p; +chialer chialer ver 7.25 13.78 4.01 6.28 inf; +chialera chialer ver 7.25 13.78 0.03 0.00 ind:fut:3s; +chialeraient chialer ver 7.25 13.78 0.00 0.07 cnd:pre:3p; +chialerais chialer ver 7.25 13.78 0.11 0.20 cnd:pre:1s; +chialerait chialer ver 7.25 13.78 0.00 0.07 cnd:pre:3s; +chialeras chialer ver 7.25 13.78 0.00 0.07 ind:fut:2s; +chialeries chialerie nom f p 0.00 0.07 0.00 0.07 +chiales chialer ver 7.25 13.78 0.72 0.47 ind:pre:2s; +chialeur chialeur nom m s 0.04 0.07 0.03 0.00 +chialeuse chialeur nom f s 0.04 0.07 0.01 0.07 +chialez chialer ver 7.25 13.78 0.01 0.00 ind:pre:2p; +chialèrent chialer ver 7.25 13.78 0.00 0.07 ind:pas:3p; +chialé chialer ver m s 7.25 13.78 0.35 0.95 par:pas; +chiant chiant adj m s 11.89 2.84 8.46 1.01 +chiante chiant adj f s 11.89 2.84 2.09 1.08 +chiantes chiant adj f p 11.89 2.84 0.30 0.20 +chianti chianti nom m s 0.32 0.95 0.32 0.95 +chiants chiant adj m p 11.89 2.84 1.03 0.54 +chiard chiard nom m s 0.68 0.54 0.47 0.14 +chiards chiard nom m p 0.68 0.54 0.22 0.41 +chiasma chiasma nom m s 0.01 0.07 0.01 0.07 +chiasme chiasme nom m s 0.01 0.00 0.01 0.00 +chiasse chiasse nom f s 0.94 1.49 0.81 1.28 +chiasses chiasse nom f p 0.94 1.49 0.14 0.20 +chiasseux chiasseux adj m s 0.02 0.20 0.02 0.20 +chiatique chiatique adj s 0.11 0.20 0.11 0.14 +chiatiques chiatique adj m p 0.11 0.20 0.00 0.07 +chibouk chibouk nom m s 0.00 0.34 0.00 0.34 +chibre chibre nom m s 0.25 0.74 0.25 0.74 +chic_type chic_type adj m s 0.01 0.00 0.01 0.00 +chic chic ono 1.20 0.68 1.20 0.68 +chica chica nom f s 0.71 0.07 0.68 0.07 +chicanait chicaner ver 0.59 0.68 0.01 0.07 ind:imp:3s; +chicanant chicaner ver 0.59 0.68 0.01 0.07 par:pre; +chicane chicane nom f s 0.45 2.16 0.41 1.22 +chicanent chicaner ver 0.59 0.68 0.00 0.07 ind:pre:3p; +chicaner chicaner ver 0.59 0.68 0.24 0.20 inf; +chicaneries chicanerie nom f p 0.03 0.00 0.03 0.00 +chicanerons chicaner ver 0.59 0.68 0.00 0.07 ind:fut:1p; +chicanes chicane nom f p 0.45 2.16 0.04 0.95 +chicaneur chicaneur nom m s 0.21 0.00 0.21 0.00 +chicanez chicaner ver 0.59 0.68 0.18 0.00 imp:pre:2p;ind:pre:2p; +chicanier chicanier adj m s 0.00 0.20 0.00 0.14 +chicaniers chicanier nom m p 0.01 0.07 0.01 0.07 +chicanière chicanier adj f s 0.00 0.20 0.00 0.07 +chicano chicano adj m s 0.13 0.00 0.11 0.00 +chicanons chicaner ver 0.59 0.68 0.05 0.00 imp:pre:1p; +chicanos chicano nom m p 0.25 0.07 0.19 0.00 +chicané chicaner ver m s 0.59 0.68 0.03 0.00 par:pas; +chicanées chicaner ver f p 0.59 0.68 0.00 0.07 par:pas; +chicas chica nom f p 0.71 0.07 0.03 0.00 +chiche_kebab chiche_kebab nom m s 0.24 0.07 0.24 0.07 +chiche chiche ono 0.75 0.74 0.75 0.74 +chichement chichement adv 0.04 1.42 0.04 1.42 +chiches chiche adj p 3.62 3.18 2.12 1.22 +chichi chichi nom m s 1.46 5.00 0.55 3.04 +chichis chichi nom m p 1.46 5.00 0.91 1.96 +chichiteuse chichiteux adj f s 0.02 0.68 0.01 0.34 +chichiteuses chichiteux adj f p 0.02 0.68 0.00 0.27 +chichiteux chichiteux adj m p 0.02 0.68 0.01 0.07 +chicon chicon nom m s 0.05 0.00 0.05 0.00 +chicore chicorer ver 0.00 0.61 0.00 0.27 ind:pre:1s;ind:pre:3s; +chicorent chicorer ver 0.00 0.61 0.00 0.14 ind:pre:3p; +chicorer chicorer ver 0.00 0.61 0.00 0.07 inf; +chicores chicorer ver 0.00 0.61 0.00 0.07 ind:pre:2s; +chicoré chicorer ver m s 0.00 0.61 0.00 0.07 par:pas; +chicorée chicorée nom f s 0.59 1.69 0.59 1.42 +chicorées chicorée nom f p 0.59 1.69 0.00 0.27 +chicot chicot nom m s 0.22 3.58 0.14 0.14 +chicote chicot nom f s 0.22 3.58 0.03 0.54 +chicoter chicoter ver 0.00 0.14 0.00 0.07 inf; +chicotin chicotin nom m s 0.01 0.00 0.01 0.00 +chicots chicot nom m p 0.22 3.58 0.06 2.91 +chicotte chicotte nom f s 0.00 0.07 0.00 0.07 +chicoté chicoter ver m s 0.00 0.14 0.00 0.07 par:pas; +chics chic adj p 19.57 14.32 1.95 1.82 +chie chier ver 67.53 22.64 4.31 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +chien_assis chien_assis nom m 0.00 0.07 0.00 0.07 +chien_loup chien_loup nom m s 0.27 1.08 0.14 1.08 +chien_robot chien_robot nom m s 0.01 0.00 0.01 0.00 +chien_étoile chien_étoile nom m s 0.00 0.07 0.00 0.07 +chien chien nom m s 222.38 184.59 158.77 117.64 +chienchien chienchien nom m s 0.30 0.20 0.30 0.14 +chienchiens chienchien nom m p 0.30 0.20 0.00 0.07 +chiendent chiendent nom m s 0.69 2.16 0.69 2.16 +chienlit chienlit nom s 0.60 0.74 0.60 0.74 +chiennasse chienner ver 0.00 0.07 0.00 0.07 sub:imp:1s; +chienne chien nom f s 222.38 184.59 12.84 11.55 +chiennerie chiennerie nom f s 0.30 0.68 0.30 0.61 +chienneries chiennerie nom f p 0.30 0.68 0.00 0.07 +chiennes chienne nom f p 1.15 0.00 1.15 0.00 +chien_loup chien_loup nom m p 0.27 1.08 0.12 0.00 +chiens chien nom m p 222.38 184.59 50.76 54.53 +chient chier ver 67.53 22.64 0.89 0.34 ind:pre:3p; +chier chier ver 67.53 22.64 53.30 18.11 inf; +chiera chier ver 67.53 22.64 0.15 0.27 ind:fut:3s; +chierai chier ver 67.53 22.64 0.24 0.00 ind:fut:1s; +chierais chier ver 67.53 22.64 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +chieras chier ver 67.53 22.64 0.06 0.00 ind:fut:2s; +chierez chier ver 67.53 22.64 0.02 0.00 ind:fut:2p; +chierie chierie nom f s 0.53 0.88 0.39 0.74 +chieries chierie nom f p 0.53 0.88 0.14 0.14 +chieront chier ver 67.53 22.64 0.15 0.00 ind:fut:3p; +chies chier ver 67.53 22.64 1.22 0.14 ind:pre:2s; +chieur chieur nom m s 2.29 0.88 0.96 0.34 +chieurs chieur nom m p 2.29 0.88 0.22 0.07 +chieuse chieur nom f s 2.29 0.88 1.11 0.47 +chieuses chieuse nom f p 0.01 0.00 0.01 0.00 +chiez chier ver 67.53 22.64 0.21 0.20 imp:pre:2p;ind:pre:2p; +chiffe chiffe nom f s 0.89 1.62 0.81 1.55 +chiffes chiffe nom f p 0.89 1.62 0.09 0.07 +chiffon chiffon nom m s 6.11 18.99 3.67 10.41 +chiffonna chiffonner ver 1.65 2.30 0.00 0.20 ind:pas:3s; +chiffonnade chiffonnade nom f s 0.02 0.14 0.02 0.07 +chiffonnades chiffonnade nom f p 0.02 0.14 0.00 0.07 +chiffonnaient chiffonner ver 1.65 2.30 0.01 0.07 ind:imp:3p; +chiffonnait chiffonner ver 1.65 2.30 0.06 0.61 ind:imp:3s; +chiffonnant chiffonner ver 1.65 2.30 0.01 0.14 par:pre; +chiffonne chiffonner ver 1.65 2.30 1.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chiffonner chiffonner ver 1.65 2.30 0.06 0.34 inf; +chiffonnier chiffonnier nom m s 0.99 3.58 0.76 1.62 +chiffonniers chiffonnier nom m p 0.99 3.58 0.13 1.35 +chiffonnière chiffonnier nom f s 0.99 3.58 0.10 0.54 +chiffonnières chiffonnière nom f p 0.01 0.00 0.01 0.00 +chiffonné chiffonné adj m s 0.98 2.16 0.60 0.88 +chiffonnée chiffonné adj f s 0.98 2.16 0.25 0.41 +chiffonnées chiffonné adj f p 0.98 2.16 0.00 0.47 +chiffonnés chiffonné adj m p 0.98 2.16 0.14 0.41 +chiffons chiffon nom m p 6.11 18.99 2.43 8.58 +chiffrable chiffrable adj s 0.01 0.00 0.01 0.00 +chiffrage chiffrage nom m s 0.00 0.07 0.00 0.07 +chiffrait chiffrer ver 0.64 1.01 0.00 0.07 ind:imp:3s; +chiffrant chiffrer ver 0.64 1.01 0.02 0.00 par:pre; +chiffre chiffre nom m s 27.28 33.11 9.38 12.70 +chiffrement chiffrement nom m s 0.13 0.00 0.13 0.00 +chiffrent chiffrer ver 0.64 1.01 0.02 0.07 ind:pre:3p; +chiffrer chiffrer ver 0.64 1.01 0.19 0.27 inf; +chiffres_clé chiffres_clé nom m p 0.00 0.07 0.00 0.07 +chiffres chiffre nom m p 27.28 33.11 17.90 20.41 +chiffreur chiffreur nom m s 0.02 0.00 0.01 0.00 +chiffreuse chiffreur nom f s 0.02 0.00 0.01 0.00 +chiffré chiffré adj m s 0.07 1.35 0.05 0.41 +chiffrée chiffrer ver f s 0.64 1.01 0.16 0.00 par:pas; +chiffrées chiffré adj f p 0.07 1.35 0.00 0.20 +chiffrés chiffrer ver m p 0.64 1.01 0.01 0.14 par:pas; +chignole chignole nom f s 0.31 0.47 0.30 0.34 +chignoles chignole nom f p 0.31 0.47 0.01 0.14 +chignon chignon nom m s 1.31 12.77 1.29 11.76 +chignons chignon nom m p 1.31 12.77 0.02 1.01 +chihuahua chihuahua nom m s 0.38 0.07 0.30 0.07 +chihuahuas chihuahua nom m p 0.38 0.07 0.07 0.00 +chiites chiite nom p 0.00 0.07 0.00 0.07 +chiles chile nom m p 0.03 0.00 0.03 0.00 +chili chili nom m s 2.21 0.14 2.18 0.07 +chilien chilien adj m s 2.21 1.28 1.03 0.07 +chilienne chilien adj f s 2.21 1.28 0.58 0.68 +chiliennes chilien adj f p 2.21 1.28 0.16 0.14 +chiliens chilien nom m p 0.83 0.20 0.64 0.00 +chilis chili nom m p 2.21 0.14 0.04 0.07 +chilom chilom nom m s 0.10 0.00 0.10 0.00 +chimie chimie nom f s 5.29 5.20 5.28 5.00 +chimies chimie nom f p 5.29 5.20 0.01 0.20 +chimiothérapie chimiothérapie nom f s 1.05 0.14 1.05 0.14 +chimique chimique adj s 10.51 4.59 5.40 1.96 +chimiquement chimiquement adv 0.54 0.34 0.54 0.34 +chimiques chimique adj p 10.51 4.59 5.11 2.64 +chimiste chimiste nom s 1.90 1.55 1.60 1.15 +chimistes chimiste nom p 1.90 1.55 0.30 0.41 +chimpanzé chimpanzé nom m s 2.35 1.69 1.96 1.15 +chimpanzés chimpanzé nom m p 2.35 1.69 0.39 0.54 +chimère chimère nom f s 2.94 5.54 1.74 2.23 +chimères chimère nom f p 2.94 5.54 1.21 3.31 +chimérique chimérique adj s 0.55 2.23 0.52 1.15 +chimériquement chimériquement adv 0.00 0.07 0.00 0.07 +chimériques chimérique adj p 0.55 2.23 0.03 1.08 +china chiner ver 0.81 8.45 0.76 7.57 ind:pas:3s; +chinaient chiner ver 0.81 8.45 0.00 0.07 ind:imp:3p; +chinait chiner ver 0.81 8.45 0.00 0.14 ind:imp:3s; +chinant chiner ver 0.81 8.45 0.00 0.07 par:pre; +chinchard chinchard nom m s 0.00 0.07 0.00 0.07 +chinchilla chinchilla nom m s 0.13 0.41 0.12 0.34 +chinchillas chinchilla nom m p 0.13 0.41 0.01 0.07 +chine chine nom s 0.67 0.54 0.67 0.54 +chiner chiner ver 0.81 8.45 0.04 0.14 inf; +chinera chiner ver 0.81 8.45 0.01 0.00 ind:fut:3s; +chinetoque chinetoque nom m s 1.80 1.01 1.06 0.61 +chinetoques chinetoque nom m p 1.80 1.01 0.74 0.41 +chineur chineur nom m s 0.01 0.34 0.00 0.20 +chineurs chineur nom m p 0.01 0.34 0.01 0.14 +chinois chinois nom m s 24.73 16.22 21.88 14.59 +chinoise chinois adj f s 21.34 25.14 5.47 5.14 +chinoiser chinoiser ver 0.14 0.07 0.14 0.07 inf; +chinoiserie chinoiserie nom f s 0.31 0.68 0.00 0.20 +chinoiseries chinoiserie nom f p 0.31 0.68 0.31 0.47 +chinoises chinois adj f p 21.34 25.14 1.25 3.38 +chinook chinook nom m s 0.05 0.27 0.05 0.27 +chintz chintz nom m 0.09 0.27 0.09 0.27 +chiné chiné adj m s 0.03 0.41 0.03 0.20 +chinée chiné adj f s 0.03 0.41 0.00 0.14 +chinées chiner ver f p 0.81 8.45 0.00 0.14 par:pas; +chinés chiné adj m p 0.03 0.41 0.00 0.07 +chiot chiot nom m s 5.67 2.70 3.98 1.49 +chiots chiot nom m p 5.67 2.70 1.70 1.22 +chiotte chiotte nom f s 12.86 14.73 1.20 1.42 +chiottes chiotte nom f p 12.86 14.73 11.66 13.31 +chiourme chiourme nom f s 0.00 0.20 0.00 0.20 +chip chip nom s 2.51 0.00 2.51 0.00 +chipa chiper ver 2.34 2.97 0.00 0.14 ind:pas:3s; +chipaient chiper ver 2.34 2.97 0.00 0.14 ind:imp:3p; +chipais chiper ver 2.34 2.97 0.01 0.07 ind:imp:1s; +chipait chiper ver 2.34 2.97 0.14 0.34 ind:imp:3s; +chipant chiper ver 2.34 2.97 0.00 0.07 par:pre; +chipe chiper ver 2.34 2.97 0.45 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chiper chiper ver 2.34 2.97 0.89 0.95 inf; +chiperaient chiper ver 2.34 2.97 0.01 0.00 cnd:pre:3p; +chiperiez chiper ver 2.34 2.97 0.01 0.00 cnd:pre:2p; +chipeur chipeur adj m s 0.00 0.07 0.00 0.07 +chipez chiper ver 2.34 2.97 0.02 0.00 imp:pre:2p;ind:pre:2p; +chipie chipie nom f s 0.76 0.88 0.58 0.68 +chipies chipie nom f p 0.76 0.88 0.18 0.20 +chipolata chipolata nom f s 0.23 0.47 0.03 0.27 +chipolatas chipolata nom f p 0.23 0.47 0.20 0.20 +chipota chipoter ver 0.50 1.22 0.00 0.07 ind:pas:3s; +chipotage chipotage nom m s 0.04 0.20 0.03 0.14 +chipotages chipotage nom m p 0.04 0.20 0.02 0.07 +chipotais chipoter ver 0.50 1.22 0.00 0.07 ind:imp:1s; +chipotait chipoter ver 0.50 1.22 0.02 0.34 ind:imp:3s; +chipotant chipoter ver 0.50 1.22 0.00 0.07 par:pre; +chipote chipoter ver 0.50 1.22 0.08 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chipotent chipoter ver 0.50 1.22 0.04 0.00 ind:pre:3p; +chipoter chipoter ver 0.50 1.22 0.27 0.27 inf; +chipotes chipoter ver 0.50 1.22 0.05 0.00 ind:pre:2s; +chipoteur chipoteur adj m s 0.00 0.20 0.00 0.14 +chipoteuse chipoteur adj f s 0.00 0.20 0.00 0.07 +chipotez chipoter ver 0.50 1.22 0.01 0.00 imp:pre:2p; +chipotons chipoter ver 0.50 1.22 0.03 0.07 imp:pre:1p; +chipoté chipoter ver m s 0.50 1.22 0.00 0.07 par:pas; +chippendale chippendale nom m s 0.12 0.00 0.01 0.00 +chippendales chippendale nom m p 0.12 0.00 0.10 0.00 +chips chips nom p 6.72 0.95 6.72 0.95 +chipèrent chiper ver 2.34 2.97 0.00 0.07 ind:pas:3p; +chipé chiper ver m s 2.34 2.97 0.60 0.74 par:pas; +chipée chiper ver f s 2.34 2.97 0.18 0.14 par:pas; +chipées chiper ver f p 2.34 2.97 0.01 0.14 par:pas; +chipés chiper ver m p 2.34 2.97 0.03 0.14 par:pas; +chiquaient chiquer ver 0.50 2.70 0.00 0.14 ind:imp:3p; +chiquait chiquer ver 0.50 2.70 0.05 0.20 ind:imp:3s; +chiquant chiquer ver 0.50 2.70 0.00 0.47 par:pre; +chique chique nom f s 0.40 2.23 0.24 2.16 +chiquement chiquement adv 0.01 0.14 0.01 0.14 +chiquenaude chiquenaude nom f s 0.03 1.22 0.03 1.15 +chiquenaudes chiquenaude nom f p 0.03 1.22 0.00 0.07 +chiquent chiquer ver 0.50 2.70 0.02 0.00 ind:pre:3p; +chiquer chiquer ver 0.50 2.70 0.16 1.35 inf; +chiquerai chiquer ver 0.50 2.70 0.00 0.07 ind:fut:1s; +chiqueront chiquer ver 0.50 2.70 0.00 0.07 ind:fut:3p; +chiques chique nom f p 0.40 2.23 0.16 0.07 +chiqueur chiqueur nom m s 0.01 0.27 0.01 0.07 +chiqueurs chiqueur nom m p 0.01 0.27 0.00 0.14 +chiqueuses chiqueur nom f p 0.01 0.27 0.00 0.07 +chiqué chiqué nom m s 0.58 1.08 0.58 1.01 +chiqués chiqué nom m p 0.58 1.08 0.00 0.07 +chiraquien chiraquien adj m s 0.00 0.07 0.00 0.07 +chiricahua chiricahua adj s 0.10 0.00 0.05 0.00 +chiricahuas chiricahua nom p 0.19 0.00 0.16 0.00 +chiromancie chiromancie nom f s 0.02 0.07 0.02 0.07 +chiromancien chiromancien nom m s 0.16 0.20 0.00 0.07 +chiromancienne chiromancien nom f s 0.16 0.20 0.14 0.07 +chiromanciens chiromancien nom m p 0.16 0.20 0.03 0.07 +chiropracteur chiropracteur nom m s 0.57 0.00 0.57 0.00 +chiropraticien chiropraticien nom m s 0.06 0.00 0.04 0.00 +chiropraticienne chiropraticien nom f s 0.06 0.00 0.02 0.00 +chiropratique chiropratique nom f s 0.02 0.00 0.02 0.00 +chiropraxie chiropraxie nom f s 0.07 0.00 0.07 0.00 +chiroptère chiroptère nom m s 0.03 0.00 0.03 0.00 +chiroubles chiroubles nom m 0.00 0.20 0.00 0.20 +chirurgical chirurgical adj m s 3.60 2.16 1.23 0.54 +chirurgicale chirurgical adj f s 3.60 2.16 1.84 1.01 +chirurgicalement chirurgicalement adv 0.33 0.20 0.33 0.20 +chirurgicales chirurgical adj f p 3.60 2.16 0.27 0.41 +chirurgicaux chirurgical adj m p 3.60 2.16 0.26 0.20 +chirurgie chirurgie nom f s 11.84 2.03 11.74 2.03 +chirurgien_dentiste chirurgien_dentiste nom s 0.02 0.27 0.02 0.27 +chirurgien chirurgien nom m s 15.57 8.45 12.38 6.89 +chirurgienne chirurgien nom f s 15.57 8.45 0.27 0.00 +chirurgiens chirurgien nom m p 15.57 8.45 2.92 1.55 +chirurgies chirurgie nom f p 11.84 2.03 0.10 0.00 +chisel chisel nom m s 0.01 0.00 0.01 0.00 +chistera chistera nom m s 0.11 0.00 0.11 0.00 +chitine chitine nom f s 0.01 0.07 0.01 0.07 +chitineux chitineux adj m p 0.00 0.07 0.00 0.07 +chiton chiton nom m s 0.00 0.07 0.00 0.07 +chié chier ver m s 67.53 22.64 3.72 1.49 par:pas; +chiée chiée nom f s 0.22 0.95 0.22 0.47 +chiées chier ver f p 67.53 22.64 0.01 0.00 par:pas; +chiure chiure nom f s 0.56 1.08 0.42 0.27 +chiures chiure nom f p 0.56 1.08 0.14 0.81 +chiés chier ver m p 67.53 22.64 0.01 0.00 par:pas; +chlamyde chlamyde nom f s 0.00 0.20 0.00 0.20 +chlamydia chlamydia nom f s 0.42 0.00 0.30 0.00 +chlamydiae chlamydia nom f p 0.42 0.00 0.12 0.00 +chlass chlass adj 0.03 0.00 0.03 0.00 +chleuh chleuh nom m s 0.22 0.54 0.04 0.07 +chleuhs chleuh nom m p 0.22 0.54 0.18 0.47 +chlingue chlinguer ver 0.21 0.07 0.18 0.07 ind:pre:1s;ind:pre:3s; +chlinguer chlinguer ver 0.21 0.07 0.01 0.00 inf; +chlingues chlinguer ver 0.21 0.07 0.02 0.00 ind:pre:2s; +chloral chloral nom m s 0.20 0.00 0.20 0.00 +chloramphénicol chloramphénicol nom m s 0.09 0.00 0.09 0.00 +chlorate chlorate nom m s 0.07 0.14 0.07 0.14 +chlore chlore nom m s 0.79 0.81 0.79 0.81 +chlorer chlorer ver 0.03 0.00 0.02 0.00 inf; +chlorhydrate chlorhydrate nom m s 0.17 0.00 0.17 0.00 +chlorhydrique chlorhydrique adj m s 0.22 0.07 0.22 0.07 +chlorique chlorique adj s 0.01 0.00 0.01 0.00 +chloroformant chloroformer ver 0.22 0.20 0.00 0.07 par:pre; +chloroforme chloroforme nom m s 0.63 0.41 0.63 0.41 +chloroformer chloroformer ver 0.22 0.20 0.02 0.07 inf; +chloroformes chloroformer ver 0.22 0.20 0.14 0.00 ind:pre:2s; +chloroformez chloroformer ver 0.22 0.20 0.01 0.00 imp:pre:2p; +chloroformisation chloroformisation nom f s 0.00 0.07 0.00 0.07 +chloroformé chloroformer ver m s 0.22 0.20 0.05 0.07 par:pas; +chlorophylle chlorophylle nom f s 0.25 0.68 0.25 0.68 +chlorophyllien chlorophyllien adj m s 0.00 0.07 0.00 0.07 +chlorophytums chlorophytum nom m p 0.01 0.00 0.01 0.00 +chloroplaste chloroplaste nom m s 0.01 0.00 0.01 0.00 +chloroquine chloroquine nom f s 0.01 0.00 0.01 0.00 +chlorotique chlorotique adj f s 0.00 0.27 0.00 0.14 +chlorotiques chlorotique adj f p 0.00 0.27 0.00 0.14 +chlorpromazine chlorpromazine nom f s 0.06 0.00 0.06 0.00 +chloré chloré adj m s 0.06 0.07 0.01 0.07 +chlorée chloré adj f s 0.06 0.07 0.05 0.00 +chlorure chlorure nom m s 0.33 0.14 0.32 0.07 +chlorures chlorure nom m p 0.33 0.14 0.01 0.07 +chnoque chnoque nom s 0.08 0.54 0.07 0.34 +chnoques chnoque nom p 0.08 0.54 0.01 0.20 +chnord chnord nom m s 0.00 0.07 0.00 0.07 +chnouf chnouf nom f s 0.02 0.07 0.02 0.07 +choanes choane nom m p 0.01 0.00 0.01 0.00 +choc choc nom m s 31.46 44.19 30.22 37.57 +chocard chocard nom m s 0.00 0.07 0.00 0.07 +chochotte chochotte nom f s 1.65 0.61 1.37 0.27 +chochottes chochotte nom f p 1.65 0.61 0.28 0.34 +chocolat chocolat nom m s 31.03 34.86 27.74 30.61 +chocolaterie chocolaterie nom f s 0.27 0.27 0.27 0.20 +chocolateries chocolaterie nom f p 0.27 0.27 0.00 0.07 +chocolatier chocolatier nom m s 0.11 0.27 0.11 0.14 +chocolatière chocolatier nom f s 0.11 0.27 0.00 0.14 +chocolats chocolat nom m p 31.03 34.86 3.29 4.26 +chocolaté chocolaté adj m s 0.81 0.07 0.17 0.07 +chocolatée chocolaté adj f s 0.81 0.07 0.27 0.00 +chocolatées chocolaté adj f p 0.81 0.07 0.36 0.00 +chocolatés chocolaté adj m p 0.81 0.07 0.01 0.00 +chocottes chocotte nom f p 0.45 0.95 0.45 0.95 +chocs choc nom m p 31.46 44.19 1.24 6.62 +choeur choeur nom m s 7.00 26.69 6.39 24.86 +choeurs choeur nom m p 7.00 26.69 0.61 1.82 +choie choyer ver 0.40 2.03 0.02 0.20 ind:pre:3s; +choient choyer ver 0.40 2.03 0.01 0.07 ind:pre:3p; +choieront choyer ver 0.40 2.03 0.00 0.07 ind:fut:3p; +choir choir ver 2.05 10.00 0.33 6.89 inf; +choiras choir ver 2.05 10.00 0.00 0.07 ind:fut:2s; +chois choir ver 2.05 10.00 0.01 0.27 imp:pre:2s;ind:pre:1s; +choisîmes choisir ver 170.48 133.92 0.01 0.20 ind:pas:1p; +choisît choisir ver 170.48 133.92 0.00 0.20 sub:imp:3s; +choisi choisir ver m s 170.48 133.92 58.19 44.53 par:pas; +choisie choisir ver f s 170.48 133.92 6.78 5.34 par:pas; +choisies choisir ver f p 170.48 133.92 0.67 1.55 par:pas; +choisir choisir ver 170.48 133.92 47.09 35.00 inf; +choisira choisir ver 170.48 133.92 1.92 1.01 ind:fut:3s; +choisirai choisir ver 170.48 133.92 1.27 0.47 ind:fut:1s; +choisiraient choisir ver 170.48 133.92 0.06 0.20 cnd:pre:3p; +choisirais choisir ver 170.48 133.92 1.68 0.74 cnd:pre:1s;cnd:pre:2s; +choisirait choisir ver 170.48 133.92 0.59 1.22 cnd:pre:3s; +choisiras choisir ver 170.48 133.92 0.88 0.20 ind:fut:2s; +choisirent choisir ver 170.48 133.92 0.06 0.81 ind:pas:3p; +choisirez choisir ver 170.48 133.92 0.73 0.00 ind:fut:2p; +choisiriez choisir ver 170.48 133.92 0.23 0.20 cnd:pre:2p; +choisirions choisir ver 170.48 133.92 0.04 0.07 cnd:pre:1p; +choisirons choisir ver 170.48 133.92 0.36 0.20 ind:fut:1p; +choisiront choisir ver 170.48 133.92 0.13 0.20 ind:fut:3p; +choisis choisir ver m p 170.48 133.92 21.33 8.78 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:1s;par:pas; +choisissaient choisir ver 170.48 133.92 0.16 1.08 ind:imp:3p; +choisissais choisir ver 170.48 133.92 0.41 0.81 ind:imp:1s;ind:imp:2s; +choisissait choisir ver 170.48 133.92 0.64 6.15 ind:imp:3s; +choisissant choisir ver 170.48 133.92 1.18 3.24 par:pre; +choisisse choisir ver 170.48 133.92 1.68 1.15 sub:pre:1s;sub:pre:3s; +choisissent choisir ver 170.48 133.92 2.13 1.96 ind:pre:3p; +choisisses choisir ver 170.48 133.92 0.77 0.00 sub:pre:2s; +choisissez choisir ver 170.48 133.92 9.45 1.55 imp:pre:2p;ind:pre:2p; +choisissiez choisir ver 170.48 133.92 0.23 0.27 ind:imp:2p; +choisissions choisir ver 170.48 133.92 0.08 0.27 ind:imp:1p; +choisissons choisir ver 170.48 133.92 0.50 0.47 imp:pre:1p;ind:pre:1p; +choisit choisir ver 170.48 133.92 11.23 16.01 ind:pre:3s;ind:pas:3s; +choit choir ver 2.05 10.00 0.00 0.68 ind:pre:3s; +choix choix nom m 113.35 51.42 113.35 51.42 +choke choke nom m s 0.01 0.00 0.01 0.00 +châle châle nom m s 2.23 12.09 2.08 9.32 +cholera choler ver 0.02 0.00 0.02 0.00 ind:fut:3s; +châles châle nom m p 2.23 12.09 0.15 2.77 +cholestérol cholestérol nom m s 1.81 0.41 1.81 0.41 +choline choline nom f s 0.11 0.00 0.10 0.00 +cholines choline nom f p 0.11 0.00 0.01 0.00 +cholinestérase cholinestérase nom f s 0.02 0.00 0.02 0.00 +cholique cholique adj m s 0.01 0.00 0.01 0.00 +châlit châlit nom m s 0.00 0.41 0.00 0.27 +châlits châlit nom m p 0.00 0.41 0.00 0.14 +châlonnais châlonnais adj m 0.00 0.07 0.00 0.07 +châlonnais châlonnais nom m 0.00 0.07 0.00 0.07 +cholécystectomie cholécystectomie nom f s 0.03 0.00 0.03 0.00 +cholécystite cholécystite nom f s 0.03 0.00 0.03 0.00 +cholédoque cholédoque adj m s 0.04 0.00 0.04 0.00 +choléra choléra nom m s 2.52 2.43 2.52 2.36 +choléras choléra nom m p 2.52 2.43 0.00 0.07 +cholériques cholérique nom p 0.01 0.07 0.01 0.07 +chop_suey chop_suey nom m s 0.13 0.00 0.13 0.00 +chopaient choper ver 17.69 4.05 0.01 0.07 ind:imp:3p; +chopais choper ver 17.69 4.05 0.12 0.07 ind:imp:1s;ind:imp:2s; +chopait choper ver 17.69 4.05 0.14 0.14 ind:imp:3s; +chopant choper ver 17.69 4.05 0.00 0.07 par:pre; +chope choper ver 17.69 4.05 4.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +chopent choper ver 17.69 4.05 0.56 0.41 ind:pre:3p; +choper choper ver 17.69 4.05 6.06 1.28 inf; +chopera choper ver 17.69 4.05 0.31 0.00 ind:fut:3s; +choperai choper ver 17.69 4.05 0.10 0.00 ind:fut:1s; +choperais choper ver 17.69 4.05 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +choperait choper ver 17.69 4.05 0.01 0.00 cnd:pre:3s; +choperas choper ver 17.69 4.05 0.03 0.00 ind:fut:2s; +choperez choper ver 17.69 4.05 0.04 0.00 ind:fut:2p; +choperons choper ver 17.69 4.05 0.01 0.00 ind:fut:1p; +choperont choper ver 17.69 4.05 0.06 0.00 ind:fut:3p; +chopes choper ver 17.69 4.05 0.58 0.00 ind:pre:2s;sub:pre:2s; +chopez choper ver 17.69 4.05 1.27 0.00 imp:pre:2p;ind:pre:2p; +chopine chopine nom f s 0.03 2.70 0.02 2.09 +chopines chopine nom f p 0.03 2.70 0.01 0.61 +chopons choper ver 17.69 4.05 0.43 0.00 imp:pre:1p; +choppe chopper ver 1.90 0.20 0.34 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +choppent chopper ver 1.90 0.20 0.03 0.07 ind:pre:3p; +chopper chopper ver 1.90 0.20 0.95 0.07 inf; +choppers chopper nom m p 0.29 0.20 0.01 0.00 +choppes chopper ver 1.90 0.20 0.01 0.00 ind:pre:2s; +choppez chopper ver 1.90 0.20 0.05 0.00 imp:pre:2p;ind:pre:2p; +choppons chopper ver 1.90 0.20 0.02 0.00 imp:pre:1p; +choppé chopper ver m s 1.90 0.20 0.47 0.00 par:pas; +choppée chopper ver f s 1.90 0.20 0.01 0.00 par:pas; +chopé choper ver m s 17.69 4.05 3.42 1.01 par:pas; +chopée choper ver f s 17.69 4.05 0.34 0.00 par:pas; +chopées choper ver f p 17.69 4.05 0.00 0.07 par:pas; +chopés choper ver m p 17.69 4.05 0.10 0.14 par:pas; +choqua choquer ver 13.56 15.41 0.01 0.61 ind:pas:3s; +choquaient choquer ver 13.56 15.41 0.00 0.54 ind:imp:3p; +choquait choquer ver 13.56 15.41 0.30 2.23 ind:imp:3s; +choquant choquant adj m s 3.61 1.69 2.43 0.81 +choquante choquant adj f s 3.61 1.69 0.43 0.68 +choquantes choquant adj f p 3.61 1.69 0.58 0.20 +choquants choquant adj m p 3.61 1.69 0.17 0.00 +choque choquer ver 13.56 15.41 4.01 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +choquent choquer ver 13.56 15.41 0.15 0.34 ind:pre:3p; +choquer choquer ver 13.56 15.41 2.39 3.04 inf;; +choquera choquer ver 13.56 15.41 0.05 0.27 ind:fut:3s; +choqueraient choquer ver 13.56 15.41 0.01 0.07 cnd:pre:3p; +choquerais choquer ver 13.56 15.41 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +choquerait choquer ver 13.56 15.41 0.21 0.20 cnd:pre:3s; +choqueras choquer ver 13.56 15.41 0.01 0.00 ind:fut:2s; +choquez choquer ver 13.56 15.41 0.09 0.00 imp:pre:2p;ind:pre:2p; +choquons choquer ver 13.56 15.41 0.01 0.00 ind:pre:1p; +choquèrent choquer ver 13.56 15.41 0.01 0.07 ind:pas:3p; +choqué choquer ver m s 13.56 15.41 3.44 2.64 par:pas; +choquée choquer ver f s 13.56 15.41 1.35 1.35 par:pas; +choquées choquer ver f p 13.56 15.41 0.14 0.41 par:pas; +choqués choquer ver m p 13.56 15.41 1.00 0.61 par:pas; +choral choral adj m s 0.26 0.27 0.14 0.00 +chorale chorale nom f s 2.63 1.96 2.56 1.76 +chorales chorale nom f p 2.63 1.96 0.07 0.20 +chorals choral nom m p 0.01 0.95 0.00 0.07 +choraux choral adj m p 0.26 0.27 0.00 0.20 +chorba chorba nom f s 0.00 0.07 0.00 0.07 +choreutes choreute nom m p 0.00 0.07 0.00 0.07 +choriste choriste nom s 0.46 1.35 0.32 0.27 +choristes choriste nom p 0.46 1.35 0.14 1.08 +chorizo chorizo nom m s 1.57 0.20 1.37 0.14 +chorizos chorizo nom m p 1.57 0.20 0.20 0.07 +chortens chorten nom m p 0.00 0.07 0.00 0.07 +chorée chorée nom f s 0.04 0.00 0.04 0.00 +chorégraphe chorégraphe nom s 0.71 0.47 0.48 0.41 +chorégraphes chorégraphe nom p 0.71 0.47 0.22 0.07 +chorégraphie chorégraphie nom f s 1.06 0.68 0.99 0.54 +chorégraphier chorégraphier ver 0.21 0.00 0.20 0.00 inf; +chorégraphies chorégraphie nom f p 1.06 0.68 0.07 0.14 +chorégraphique chorégraphique adj m s 0.02 0.34 0.02 0.27 +chorégraphiques chorégraphique adj p 0.02 0.34 0.00 0.07 +chorégraphiées chorégraphier ver f p 0.21 0.00 0.01 0.00 par:pas; +chorus chorus nom m 0.15 1.49 0.15 1.49 +chose chose nom f s 1773.62 1057.64 1321.79 695.20 +choser choser ver 0.01 0.07 0.00 0.07 inf; +choses chose nom f p 1773.62 1057.64 451.83 362.43 +chosification chosification nom f s 0.00 0.07 0.00 0.07 +chosifient chosifier ver 0.01 0.07 0.00 0.07 ind:pre:3p; +chosifier chosifier ver 0.01 0.07 0.01 0.00 inf; +châsse châsse nom f s 0.29 8.99 0.29 3.18 +châsses châsse nom m p 0.29 8.99 0.00 5.81 +châssis châssis nom m 0.97 4.46 0.97 4.46 +châtaigne châtaigne nom f s 1.24 2.50 0.55 0.88 +châtaignent châtaigner ver 0.14 0.20 0.00 0.07 ind:pre:3p; +châtaigner châtaigner ver 0.14 0.20 0.12 0.07 inf; +châtaigneraie châtaigneraie nom f s 0.00 0.54 0.00 0.20 +châtaigneraies châtaigneraie nom f p 0.00 0.54 0.00 0.34 +châtaignes châtaigne nom f p 1.24 2.50 0.69 1.62 +châtaignier châtaignier nom m s 0.14 3.38 0.14 1.76 +châtaigniers châtaignier nom m p 0.14 3.38 0.00 1.62 +châtaigné châtaigner ver m s 0.14 0.20 0.02 0.07 par:pas; +châtain châtain adj m s 0.81 4.26 0.34 1.55 +châtaine châtain adj f s 0.81 4.26 0.00 0.20 +châtaines châtain adj f p 0.81 4.26 0.01 0.07 +châtains châtain adj m p 0.81 4.26 0.46 2.43 +château_fort château_fort nom m s 0.00 0.07 0.00 0.07 +château château nom m s 43.68 74.12 40.51 63.38 +châteaubriant châteaubriant nom m s 0.13 0.00 0.13 0.00 +châteaux château nom m p 43.68 74.12 3.17 10.74 +châtel châtel adj s 0.00 0.07 0.00 0.07 +châtelain châtelain nom m s 0.30 4.26 0.27 1.69 +châtelaine châtelain nom f s 0.30 4.26 0.01 1.01 +châtelaines châtelain nom f p 0.30 4.26 0.00 0.07 +châtelains châtelain nom m p 0.30 4.26 0.02 1.49 +châtelet châtelet nom m s 0.00 0.14 0.00 0.14 +châtellenie châtellenie nom f s 0.00 0.07 0.00 0.07 +châtiaient châtier ver 3.25 4.53 0.00 0.07 ind:imp:3p; +châtiait châtier ver 3.25 4.53 0.00 0.20 ind:imp:3s; +châtiant châtier ver 3.25 4.53 0.00 0.07 par:pre; +châtie châtier ver 3.25 4.53 0.54 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +châtier châtier ver 3.25 4.53 1.55 1.89 inf; +châtiera châtier ver 3.25 4.53 0.04 0.00 ind:fut:3s; +châtierai châtier ver 3.25 4.53 0.12 0.00 ind:fut:1s; +châtierait châtier ver 3.25 4.53 0.00 0.07 cnd:pre:3s; +châtiez châtier ver 3.25 4.53 0.16 0.07 imp:pre:2p; +châtiment châtiment nom m s 7.54 9.12 6.62 7.50 +châtiments châtiment nom m p 7.54 9.12 0.93 1.62 +châtié châtier ver m s 3.25 4.53 0.47 1.28 par:pas; +châtiée châtier ver f s 3.25 4.53 0.05 0.20 par:pas; +châtiés châtier ver m p 3.25 4.53 0.32 0.34 par:pas; +châtrage châtrage nom m s 0.00 0.07 0.00 0.07 +châtraient châtrer ver 0.94 0.68 0.00 0.14 ind:imp:3p; +châtre châtrer ver 0.94 0.68 0.01 0.14 ind:pre:1s;ind:pre:3s; +châtrent châtrer ver 0.94 0.68 0.01 0.07 ind:pre:3p; +châtrer châtrer ver 0.94 0.68 0.47 0.20 inf; +châtreront châtrer ver 0.94 0.68 0.00 0.07 ind:fut:3p; +châtron châtron nom m s 0.00 0.14 0.00 0.07 +châtrons châtron nom m p 0.00 0.14 0.00 0.07 +châtré châtré adj m s 0.21 0.61 0.18 0.34 +châtrés châtrer ver m p 0.94 0.68 0.36 0.00 par:pas; +chotts chott nom m p 0.00 0.14 0.00 0.14 +chou_fleur chou_fleur nom m s 0.54 1.01 0.54 1.01 +chou_palmiste chou_palmiste nom m s 0.00 0.07 0.00 0.07 +chou_rave chou_rave nom m s 0.00 0.20 0.00 0.20 +chou chou nom m s 29.86 21.96 25.50 13.99 +chouïa chouïa nom m s 0.25 1.82 0.25 1.82 +chouan chouan nom m s 0.14 1.28 0.01 0.20 +chouannerie chouannerie nom f s 0.00 0.34 0.00 0.34 +chouans chouan nom m p 0.14 1.28 0.14 1.08 +choucard choucard adj m s 0.01 1.49 0.00 0.81 +choucarde choucard adj f s 0.01 1.49 0.01 0.47 +choucardes choucard adj f p 0.01 1.49 0.00 0.07 +choucards choucard adj m p 0.01 1.49 0.00 0.14 +choucas choucas nom m 0.16 0.14 0.16 0.14 +chouchou chouchou nom m s 3.44 1.69 3.16 1.49 +chouchous chouchou nom m p 3.44 1.69 0.28 0.20 +chouchoutage chouchoutage nom m s 0.00 0.14 0.00 0.14 +chouchoutaient chouchouter ver 0.61 0.74 0.01 0.07 ind:imp:3p; +chouchoutait chouchouter ver 0.61 0.74 0.02 0.07 ind:imp:3s; +chouchoute chouchouter ver 0.61 0.74 0.18 0.07 ind:pre:1s;ind:pre:3s; +chouchouter chouchouter ver 0.61 0.74 0.33 0.07 inf; +chouchouteras chouchouter ver 0.61 0.74 0.01 0.00 ind:fut:2s; +chouchoutes chouchoute nom f p 0.21 0.14 0.11 0.00 +chouchoutez chouchouter ver 0.61 0.74 0.01 0.00 ind:pre:2p; +chouchouté chouchouter ver m s 0.61 0.74 0.05 0.14 par:pas; +chouchoutée chouchouter ver f s 0.61 0.74 0.00 0.34 par:pas; +choucroute choucroute nom f s 1.18 3.04 1.16 2.64 +choucroutes choucroute nom f p 1.18 3.04 0.02 0.41 +chouette chouette ono 4.00 1.15 4.00 1.15 +chouettement chouettement adv 0.00 0.07 0.00 0.07 +chouettes chouette adj p 23.77 13.78 1.50 1.49 +chougnait chougner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +chougne chougner ver 0.00 0.14 0.00 0.07 ind:pre:3s; +chouia chouia nom m s 0.32 1.01 0.32 1.01 +chouiner chouiner ver 0.05 0.00 0.05 0.00 inf; +choupette choupette nom f s 0.10 0.00 0.10 0.00 +chouquet chouquet nom m s 0.06 0.00 0.06 0.00 +chouquette chouquette nom f s 0.06 0.07 0.06 0.07 +choura chourer ver 3.96 1.42 3.29 0.47 ind:pas:3s; +chouravait chouraver ver 0.75 2.50 0.00 0.14 ind:imp:3s; +chourave chouraver ver 0.75 2.50 0.01 0.41 imp:pre:2s;ind:pre:3s; +chouravent chouraver ver 0.75 2.50 0.00 0.14 ind:pre:3p; +chouraver chouraver ver 0.75 2.50 0.26 0.74 inf; +chouraveur chouraveur nom m s 0.00 0.54 0.00 0.07 +chouraveurs chouraveur nom m p 0.00 0.54 0.00 0.27 +chouraveuse chouraveur nom f s 0.00 0.54 0.00 0.07 +chouraveuses chouraveur nom f p 0.00 0.54 0.00 0.14 +chouravé chouraver ver m s 0.75 2.50 0.37 0.74 par:pas; +chouravée chouraver ver f s 0.75 2.50 0.11 0.14 par:pas; +chouravés chouraver ver m p 0.75 2.50 0.00 0.20 par:pas; +choure chourer ver 3.96 1.42 0.03 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chourent chourer ver 3.96 1.42 0.01 0.00 ind:pre:3p; +chourer chourer ver 3.96 1.42 0.20 0.34 inf; +chouriez chourer ver 3.96 1.42 0.00 0.07 ind:imp:2p; +chourineurs chourineur nom m p 0.00 0.07 0.00 0.07 +chouré chourer ver m s 3.96 1.42 0.41 0.41 par:pas; +chourée chourer ver f s 3.96 1.42 0.01 0.07 par:pas; +chourées chourer ver f p 3.96 1.42 0.01 0.07 par:pas; +choute chou nom f s 29.86 21.96 0.16 0.27 +choutes chou nom f p 29.86 21.96 0.01 0.07 +choux_fleurs choux_fleurs nom m p 0.57 1.28 0.57 1.28 +choux_raves choux_raves nom m p 0.00 0.07 0.00 0.07 +choux chou nom m p 29.86 21.96 4.20 7.64 +chouya chouya nom m s 0.04 0.07 0.04 0.07 +choya choyer ver 0.40 2.03 0.00 0.07 ind:pas:3s; +choyais choyer ver 0.40 2.03 0.01 0.00 ind:imp:1s; +choyait choyer ver 0.40 2.03 0.01 0.20 ind:imp:3s; +choyant choyer ver 0.40 2.03 0.00 0.07 par:pre; +choyer choyer ver 0.40 2.03 0.11 0.41 inf; +choyez choyer ver 0.40 2.03 0.12 0.00 imp:pre:2p;ind:pre:2p; +choyé choyer ver m s 0.40 2.03 0.06 0.41 par:pas; +choyée choyer ver f s 0.40 2.03 0.05 0.41 par:pas; +choyées choyé adj f p 0.17 0.68 0.14 0.00 +choyés choyé adj m p 0.17 0.68 0.01 0.14 +christ christ nom m s 1.65 3.18 1.54 2.57 +christiania christiania nom m s 0.00 0.07 0.00 0.07 +christianisme christianisme nom m s 2.11 4.32 2.11 4.32 +christianisés christianiser ver m p 0.00 0.14 0.00 0.14 par:pas; +christique christique adj f s 0.00 0.27 0.00 0.27 +christmas christmas nom s 0.08 0.00 0.08 0.00 +christocentrisme christocentrisme nom m s 0.00 0.20 0.00 0.20 +christologique christologique adj s 0.00 0.07 0.00 0.07 +christs christ nom m p 1.65 3.18 0.11 0.61 +chromage chromage nom m s 0.01 0.00 0.01 0.00 +chromatique chromatique adj s 0.02 0.68 0.01 0.54 +chromatiques chromatique adj p 0.02 0.68 0.01 0.14 +chromatisme chromatisme nom m s 0.00 0.20 0.00 0.14 +chromatismes chromatisme nom m p 0.00 0.20 0.00 0.07 +chromatogramme chromatogramme nom m s 0.01 0.00 0.01 0.00 +chromatographie chromatographie nom f s 0.07 0.00 0.07 0.00 +chrome chrome nom m s 0.82 3.04 0.75 1.15 +chromes chrome nom m p 0.82 3.04 0.07 1.89 +chromo chromo nom s 0.21 2.16 0.19 0.81 +chromogènes chromogène adj p 0.01 0.00 0.01 0.00 +chromos chromo nom p 0.21 2.16 0.02 1.35 +chromosome chromosome nom m s 1.72 0.81 0.52 0.14 +chromosomes chromosome nom m p 1.72 0.81 1.20 0.68 +chromosomique chromosomique adj s 0.14 0.27 0.08 0.20 +chromosomiques chromosomique adj p 0.14 0.27 0.06 0.07 +chromosphère chromosphère nom f s 0.05 0.00 0.05 0.00 +chromé chromer ver m s 0.36 4.59 0.17 2.30 par:pas; +chromée chromer ver f s 0.36 4.59 0.03 1.28 par:pas; +chromées chromer ver f p 0.36 4.59 0.06 0.14 par:pas; +chromés chromer ver m p 0.36 4.59 0.07 0.61 par:pas; +chroniquais chroniquer ver 0.01 0.34 0.00 0.07 ind:imp:1s; +chronique chronique adj s 2.34 4.59 1.73 3.65 +chroniquement chroniquement adv 0.00 0.07 0.00 0.07 +chroniquer chroniquer ver 0.01 0.34 0.00 0.14 inf; +chroniques chronique nom f p 2.46 9.59 0.79 2.77 +chroniqueur chroniqueur nom m s 0.69 2.91 0.49 1.35 +chroniqueurs chroniqueur nom m p 0.69 2.91 0.15 1.35 +chroniqueuse chroniqueur nom f s 0.69 2.91 0.05 0.07 +chroniqueuses chroniqueur nom f p 0.69 2.91 0.00 0.14 +chrono chrono nom m s 2.67 1.89 2.42 1.82 +chronographe chronographe nom m s 0.01 0.00 0.01 0.00 +chronologie chronologie nom f s 0.49 3.24 0.49 3.24 +chronologique chronologique adj s 0.64 1.49 0.64 1.35 +chronologiquement chronologiquement adv 0.10 0.27 0.10 0.27 +chronologiques chronologique adj p 0.64 1.49 0.00 0.14 +chronomètre chronomètre nom m s 1.02 2.23 0.98 2.09 +chronomètres chronométrer ver 1.43 1.08 0.18 0.00 ind:pre:2s; +chronométrage chronométrage nom m s 0.37 0.20 0.37 0.20 +chronométrait chronométrer ver 1.43 1.08 0.01 0.07 ind:imp:3s; +chronométrant chronométrer ver 1.43 1.08 0.14 0.07 par:pre; +chronométrer chronométrer ver 1.43 1.08 0.26 0.14 inf; +chronométreur chronométreur nom m s 0.03 0.00 0.03 0.00 +chronométrez chronométrer ver 1.43 1.08 0.06 0.00 imp:pre:2p; +chronométrions chronométrer ver 1.43 1.08 0.00 0.07 ind:imp:1p; +chronométré chronométrer ver m s 1.43 1.08 0.26 0.07 par:pas; +chronométrée chronométrer ver f s 1.43 1.08 0.05 0.07 par:pas; +chronométrées chronométrer ver f p 1.43 1.08 0.01 0.07 par:pas; +chronométrés chronométrer ver m p 1.43 1.08 0.03 0.07 par:pas; +chronophotographie chronophotographie nom f s 0.02 0.00 0.02 0.00 +chronophotographique chronophotographique adj m s 0.01 0.00 0.01 0.00 +chronos chrono nom m p 2.67 1.89 0.25 0.07 +chrême chrême nom m s 0.00 0.14 0.00 0.14 +chrétien_démocrate chrétien_démocrate adj m s 0.16 0.00 0.01 0.00 +chrétien chrétien adj m s 12.33 21.55 4.46 7.23 +chrétienne chrétien adj f s 12.33 21.55 4.59 8.99 +chrétiennement chrétiennement adv 0.13 0.20 0.13 0.20 +chrétiennes chrétien adj f p 12.33 21.55 0.74 2.57 +chrétien_démocrate chrétien_démocrate adj m p 0.16 0.00 0.14 0.00 +chrétiens chrétien nom m p 11.82 16.76 6.39 9.19 +chrétienté chrétienté nom f s 0.88 2.70 0.88 2.70 +chrysalide chrysalide nom f s 0.10 0.68 0.10 0.47 +chrysalides chrysalide nom f p 0.10 0.68 0.00 0.20 +chrysanthème chrysanthème nom m s 0.47 2.09 0.02 0.20 +chrysanthèmes chrysanthème nom m p 0.47 2.09 0.45 1.89 +chrysolite chrysolite nom f s 0.01 0.00 0.01 0.00 +chrysolithe chrysolithe nom f s 0.01 0.00 0.01 0.00 +chrysostome chrysostome nom m s 0.00 0.07 0.00 0.07 +chtar chtar nom m s 0.04 0.20 0.04 0.20 +chtarbé chtarbé adj m s 0.11 0.07 0.09 0.00 +chtarbée chtarbé adj f s 0.11 0.07 0.02 0.00 +chtarbées chtarbé adj f p 0.11 0.07 0.00 0.07 +chèche chèche nom m s 0.01 0.68 0.01 0.54 +chèches chèche nom m p 0.01 0.68 0.00 0.14 +chènevis chènevis nom m 0.00 0.27 0.00 0.27 +chthoniennes chthonien adj f p 0.00 0.07 0.00 0.07 +chèque_cadeau chèque_cadeau nom m s 0.05 0.00 0.05 0.00 +chèque chèque nom m s 32.03 9.86 23.86 6.01 +chèques chèque nom m p 32.03 9.86 8.18 3.85 +chère cher adj f s 205.75 133.65 40.80 23.38 +chèrement chèrement adv 0.43 0.88 0.43 0.88 +chères cher adj f p 205.75 133.65 5.63 5.81 +chèvre_pied chèvre_pied nom s 0.00 0.14 0.00 0.14 +chèvre chèvre nom f s 14.08 20.61 8.26 10.14 +chèvrefeuille chèvrefeuille nom m s 0.11 2.70 0.11 2.16 +chèvrefeuilles chèvrefeuille nom m p 0.11 2.70 0.00 0.54 +chèvres chèvre nom f p 14.08 20.61 5.81 10.47 +chtibe chtibe nom m s 0.00 0.14 0.00 0.14 +chtimi chtimi nom s 0.00 0.41 0.00 0.34 +chtimis chtimi nom p 0.00 0.41 0.00 0.07 +chtouille chtouille nom f s 0.42 0.14 0.42 0.14 +chtourbe chtourbe nom f s 0.00 0.27 0.00 0.27 +chu choir ver m s 2.05 10.00 1.24 0.81 par:pas; +chébran chébran adj m s 0.03 0.07 0.03 0.07 +chéchia chéchia nom f s 0.27 1.28 0.27 1.08 +chéchias chéchia nom f p 0.27 1.28 0.00 0.20 +chuchota chuchoter ver 5.20 34.39 0.01 7.09 ind:pas:3s; +chuchotai chuchoter ver 5.20 34.39 0.00 1.69 ind:pas:1s; +chuchotaient chuchoter ver 5.20 34.39 0.14 2.16 ind:imp:3p; +chuchotais chuchoter ver 5.20 34.39 0.06 0.07 ind:imp:1s;ind:imp:2s; +chuchotait chuchoter ver 5.20 34.39 0.38 4.05 ind:imp:3s; +chuchotant chuchoter ver 5.20 34.39 0.06 2.23 par:pre; +chuchotante chuchotant adj f s 0.19 1.89 0.17 1.22 +chuchotantes chuchotant adj f p 0.19 1.89 0.00 0.34 +chuchotants chuchotant adj m p 0.19 1.89 0.00 0.07 +chuchote chuchoter ver 5.20 34.39 1.86 6.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chuchotement chuchotement nom m s 1.90 8.11 0.11 4.39 +chuchotements chuchotement nom m p 1.90 8.11 1.79 3.72 +chuchotent chuchoter ver 5.20 34.39 0.39 1.62 ind:pre:3p; +chuchoter chuchoter ver 5.20 34.39 1.46 3.92 inf; +chuchoteraient chuchoter ver 5.20 34.39 0.00 0.07 cnd:pre:3p; +chuchoterais chuchoter ver 5.20 34.39 0.02 0.00 cnd:pre:1s; +chuchoterait chuchoter ver 5.20 34.39 0.00 0.14 cnd:pre:3s; +chuchoteras chuchoter ver 5.20 34.39 0.01 0.00 ind:fut:2s; +chuchoterez chuchoter ver 5.20 34.39 0.00 0.07 ind:fut:2p; +chuchoteries chuchoterie nom f p 0.00 0.07 0.00 0.07 +chuchoteur chuchoteur adj m s 0.00 0.20 0.00 0.14 +chuchoteuse chuchoteur nom f s 0.03 0.00 0.03 0.00 +chuchotez chuchoter ver 5.20 34.39 0.43 0.07 imp:pre:2p;ind:pre:2p; +chuchotions chuchoter ver 5.20 34.39 0.00 0.20 ind:imp:1p; +chuchotis chuchotis nom m 0.13 2.43 0.13 2.43 +chuchotât chuchoter ver 5.20 34.39 0.00 0.07 sub:imp:3s; +chuchotèrent chuchoter ver 5.20 34.39 0.00 0.20 ind:pas:3p; +chuchoté chuchoter ver m s 5.20 34.39 0.33 2.36 par:pas; +chuchotée chuchoter ver f s 5.20 34.39 0.03 0.54 par:pas; +chuchotées chuchoter ver f p 5.20 34.39 0.00 0.68 par:pas; +chuchotés chuchoter ver m p 5.20 34.39 0.03 0.61 par:pas; +chue choir ver f s 2.05 10.00 0.05 0.20 par:pas; +chues choir ver f p 2.05 10.00 0.00 0.07 par:pas; +chéfesse chéfesse nom f s 0.00 0.34 0.00 0.34 +chuinta chuinter ver 0.00 1.89 0.00 0.14 ind:pas:3s; +chuintaient chuinter ver 0.00 1.89 0.00 0.07 ind:imp:3p; +chuintait chuinter ver 0.00 1.89 0.00 0.34 ind:imp:3s; +chuintant chuinter ver 0.00 1.89 0.00 0.61 par:pre; +chuintante chuintant adj f s 0.01 0.81 0.01 0.27 +chuintants chuintant adj m p 0.01 0.81 0.00 0.14 +chuinte chuinter ver 0.00 1.89 0.00 0.20 ind:pre:3s; +chuintement chuintement nom m s 0.07 4.46 0.07 3.58 +chuintements chuintement nom m p 0.07 4.46 0.00 0.88 +chuinter chuinter ver 0.00 1.89 0.00 0.20 inf; +chuintèrent chuinter ver 0.00 1.89 0.00 0.14 ind:pas:3p; +chuinté chuinter ver m s 0.00 1.89 0.00 0.20 par:pas; +chélate chélate nom m s 0.01 0.00 0.01 0.00 +chélidoine chélidoine nom f s 0.00 0.20 0.00 0.14 +chélidoines chélidoine nom f p 0.00 0.20 0.00 0.07 +chulo chulo nom m s 0.34 0.00 0.34 0.00 +chéloïde chéloïde nom f s 0.03 0.00 0.03 0.00 +chum chum nom m s 0.38 0.00 0.38 0.00 +chênaie chênaie nom f s 0.06 0.61 0.04 0.47 +chênaies chênaie nom f p 0.06 0.61 0.01 0.14 +chêne_liège chêne_liège nom m s 0.00 0.95 0.00 0.14 +chêne chêne nom m s 5.17 23.51 4.25 16.49 +chéneau chéneau nom m s 0.00 0.81 0.00 0.47 +chéneaux chéneau nom m p 0.00 0.81 0.00 0.34 +chêne_liège chêne_liège nom m p 0.00 0.95 0.00 0.81 +chênes chêne nom m p 5.17 23.51 0.93 7.03 +chêneteau chêneteau nom m s 0.00 0.07 0.00 0.07 +chéquier chéquier nom m s 1.94 0.68 1.72 0.61 +chéquiers chéquier nom m p 1.94 0.68 0.22 0.07 +chéri chéri nom s 171.98 36.28 69.08 17.03 +chérie chéri nom f s 171.98 36.28 98.95 17.64 +chéries chéri nom f p 171.98 36.28 1.54 0.74 +chérif chérif nom m s 0.20 6.69 0.20 6.69 +chérifienne chérifien adj f s 0.00 0.07 0.00 0.07 +chérir chérir ver 22.66 7.03 1.49 1.15 inf; +chérirai chérir ver 22.66 7.03 0.19 0.00 ind:fut:1s; +chérirais chérir ver 22.66 7.03 0.14 0.00 cnd:pre:1s; +chérirez chérir ver 22.66 7.03 0.01 0.00 ind:fut:2p; +chérirons chérir ver 22.66 7.03 0.01 0.00 ind:fut:1p; +chéris chéri nom m p 171.98 36.28 2.41 0.88 +chérissaient chérir ver 22.66 7.03 0.03 0.27 ind:imp:3p; +chérissais chérir ver 22.66 7.03 0.07 0.20 ind:imp:1s;ind:imp:2s; +chérissait chérir ver 22.66 7.03 0.16 1.15 ind:imp:3s; +chérissant chérir ver 22.66 7.03 0.00 0.07 par:pre; +chérisse chérir ver 22.66 7.03 0.06 0.07 sub:pre:3s; +chérissent chérir ver 22.66 7.03 0.05 0.27 ind:pre:3p; +chérissez chérir ver 22.66 7.03 0.17 0.07 imp:pre:2p;ind:pre:2p; +chérissons chérir ver 22.66 7.03 0.31 0.07 imp:pre:1p;ind:pre:1p; +chérit chérir ver 22.66 7.03 0.56 0.27 ind:pre:3s;ind:pas:3s; +chérot chérot adj m s 0.02 0.14 0.02 0.14 +churrigueresque churrigueresque adj s 0.00 0.07 0.00 0.07 +churros churro nom m p 0.69 0.20 0.69 0.20 +chérubin chérubin nom m s 2.09 1.82 1.89 0.81 +chérubinique chérubinique adj f s 0.00 0.07 0.00 0.07 +chérubins chérubin nom m p 2.09 1.82 0.20 1.01 +chus choir ver m p 2.05 10.00 0.01 0.07 par:pas; +chut chut ono 29.81 6.62 29.81 6.62 +chuta chuter ver 5.50 2.77 0.02 0.07 ind:pas:3s; +chutait chuter ver 5.50 2.77 0.06 0.41 ind:imp:3s; +chutant chuter ver 5.50 2.77 0.06 0.20 par:pre; +chute chute nom f s 25.15 41.28 21.01 35.27 +chutent chuter ver 5.50 2.77 0.28 0.07 ind:pre:3p; +chuter chuter ver 5.50 2.77 0.99 1.08 inf; +chutera chuter ver 5.50 2.77 0.04 0.00 ind:fut:3s; +chuteraient chuter ver 5.50 2.77 0.11 0.07 cnd:pre:3p; +chuterait chuter ver 5.50 2.77 0.01 0.00 cnd:pre:3s; +chuterez chuter ver 5.50 2.77 0.01 0.00 ind:fut:2p; +chutes chute nom f p 25.15 41.28 4.14 6.01 +chétif chétif adj m s 0.91 7.36 0.43 3.65 +chétifs chétif adj m p 0.91 7.36 0.07 0.95 +chétive chétif adj f s 0.91 7.36 0.38 1.89 +chétivement chétivement adv 0.00 0.07 0.00 0.07 +chétives chétif adj f p 0.91 7.36 0.02 0.88 +chétivité chétivité nom f s 0.00 0.07 0.00 0.07 +chutney chutney nom m s 0.23 0.00 0.23 0.00 +chutèrent chuter ver 5.50 2.77 0.02 0.14 ind:pas:3p; +chuté chuter ver m s 5.50 2.77 1.87 0.41 par:pas; +chutée chuter ver f s 5.50 2.77 0.04 0.07 par:pas; +chyle chyle nom m s 0.00 0.14 0.00 0.14 +chypre chypre nom m s 0.00 0.14 0.00 0.14 +chypriote chypriote adj s 0.01 0.14 0.01 0.14 +ci_après ci_après adv 0.15 0.61 0.15 0.61 +ci_contre ci_contre adv 0.00 0.07 0.00 0.07 +ci_dessous ci_dessous adv 0.13 0.61 0.13 0.61 +ci_dessus ci_dessus adv 0.20 1.28 0.20 1.28 +ci_gît ci_gît adv 0.70 0.34 0.70 0.34 +ci_inclus ci_inclus adj m 0.03 0.14 0.01 0.07 +ci_inclus ci_inclus adj f s 0.03 0.14 0.01 0.07 +ci_inclus ci_inclus adj f p 0.03 0.14 0.01 0.00 +ci_joint ci_joint adj m s 0.62 1.89 0.59 1.69 +ci_joint ci_joint adj f s 0.62 1.89 0.04 0.14 +ci_joint ci_joint adj m p 0.62 1.89 0.00 0.07 +ci ci adv_sup 10.23 3.65 10.23 3.65 +ciao ciao ono 15.32 3.72 15.32 3.72 +cibiche cibiche nom f s 0.07 0.81 0.06 0.54 +cibiches cibiche nom f p 0.07 0.81 0.01 0.27 +cibiste cibiste nom m s 0.07 0.00 0.04 0.00 +cibistes cibiste nom m p 0.07 0.00 0.02 0.00 +ciblage ciblage nom m s 0.34 0.00 0.34 0.00 +ciblais cibler ver 1.90 0.81 0.01 0.07 ind:imp:1s; +ciblait cibler ver 1.90 0.81 0.04 0.14 ind:imp:3s; +cible cible nom f s 33.55 10.74 28.69 8.65 +cibler cibler ver 1.90 0.81 0.76 0.14 inf; +ciblera cibler ver 1.90 0.81 0.03 0.00 ind:fut:3s; +cibleront cibler ver 1.90 0.81 0.01 0.00 ind:fut:3p; +cibles cible nom f p 33.55 10.74 4.86 2.09 +ciblez cibler ver 1.90 0.81 0.12 0.00 imp:pre:2p;ind:pre:2p; +ciblons cibler ver 1.90 0.81 0.03 0.00 imp:pre:1p;ind:pre:1p; +ciblé cibler ver m s 1.90 0.81 0.45 0.34 par:pas; +ciblée cibler ver f s 1.90 0.81 0.15 0.00 par:pas; +ciblées cibler ver f p 1.90 0.81 0.06 0.00 par:pas; +ciblés cibler ver m p 1.90 0.81 0.25 0.14 par:pas; +ciboire ciboire nom m s 0.03 1.15 0.03 0.81 +ciboires ciboire nom m p 0.03 1.15 0.00 0.34 +ciboule ciboule nom f s 0.00 0.07 0.00 0.07 +ciboulette ciboulette nom f s 0.95 0.27 0.95 0.27 +ciboulot ciboulot nom m s 0.25 1.55 0.25 1.49 +ciboulots ciboulot nom m p 0.25 1.55 0.00 0.07 +cicatrice cicatrice nom f s 13.00 12.23 7.58 6.28 +cicatrices cicatrice nom f p 13.00 12.23 5.42 5.95 +cicatriciel cicatriciel adj m s 0.06 0.14 0.06 0.00 +cicatriciels cicatriciel adj m p 0.06 0.14 0.00 0.14 +cicatrisa cicatriser ver 2.20 2.16 0.00 0.07 ind:pas:3s; +cicatrisable cicatrisable adj s 0.00 0.07 0.00 0.07 +cicatrisait cicatriser ver 2.20 2.16 0.02 0.14 ind:imp:3s; +cicatrisante cicatrisant adj f s 0.02 0.07 0.02 0.00 +cicatrisants cicatrisant adj m p 0.02 0.07 0.00 0.07 +cicatrisation cicatrisation nom f s 0.48 0.47 0.48 0.47 +cicatrise cicatriser ver 2.20 2.16 0.39 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cicatrisent cicatriser ver 2.20 2.16 0.08 0.14 ind:pre:3p; +cicatriser cicatriser ver 2.20 2.16 0.48 0.47 inf; +cicatrisera cicatriser ver 2.20 2.16 0.18 0.00 ind:fut:3s; +cicatriserait cicatriser ver 2.20 2.16 0.10 0.07 cnd:pre:3s; +cicatriseront cicatriser ver 2.20 2.16 0.13 0.07 ind:fut:3p; +cicatrisez cicatriser ver 2.20 2.16 0.11 0.00 imp:pre:2p;ind:pre:2p; +cicatrisé cicatriser ver m s 2.20 2.16 0.59 0.27 par:pas; +cicatrisée cicatriser ver f s 2.20 2.16 0.05 0.41 par:pas; +cicatrisées cicatriser ver f p 2.20 2.16 0.03 0.34 par:pas; +cicatrisés cicatriser ver m p 2.20 2.16 0.04 0.00 par:pas; +cicero cicero nom m s 0.68 0.00 0.68 0.00 +cicindèle cicindèle nom f s 0.00 0.88 0.00 0.61 +cicindèles cicindèle nom f p 0.00 0.88 0.00 0.27 +cicérone cicérone nom m s 0.22 0.34 0.22 0.27 +cicérones cicérone nom m p 0.22 0.34 0.00 0.07 +cicéronienne cicéronien adj f s 0.00 0.14 0.00 0.14 +cidre cidre nom m s 2.00 3.99 2.00 3.99 +cidrerie cidrerie nom f s 0.01 0.00 0.01 0.00 +ciel ciel nom m s 142.32 305.20 142.22 301.76 +ciels ciel nom m p 142.32 305.20 0.10 3.45 +cierge cierge nom m s 3.50 15.95 2.02 5.20 +cierges cierge nom m p 3.50 15.95 1.48 10.74 +cieux cieux nom m p 20.05 4.93 20.05 4.93 +cigale cigale nom f s 3.00 4.93 1.43 1.15 +cigales cigale nom f p 3.00 4.93 1.57 3.78 +cigalon cigalon nom m s 0.02 0.00 0.02 0.00 +cigalou cigalou nom m s 0.00 0.07 0.00 0.07 +cigare cigare nom m s 17.15 24.93 10.63 17.70 +cigares cigare nom m p 17.15 24.93 6.52 7.23 +cigarette cigarette nom f s 65.57 114.93 39.22 77.57 +cigarettes cigarette nom f p 65.57 114.93 26.35 37.36 +cigarettier cigarettier nom m s 0.01 0.00 0.01 0.00 +cigarillo cigarillo nom m s 0.13 1.08 0.13 0.68 +cigarillos cigarillo nom m p 0.13 1.08 0.00 0.41 +cigarière cigarier nom f s 0.00 0.20 0.00 0.07 +cigarières cigarier nom f p 0.00 0.20 0.00 0.14 +cigle cigler ver 0.00 0.68 0.00 0.14 ind:pre:3s; +ciglent cigler ver 0.00 0.68 0.00 0.07 ind:pre:3p; +cigler cigler ver 0.00 0.68 0.00 0.27 inf; +ciglé cigler ver m s 0.00 0.68 0.00 0.07 par:pas; +ciglées cigler ver f p 0.00 0.68 0.00 0.07 par:pas; +ciglés cigler ver m p 0.00 0.68 0.00 0.07 par:pas; +cigogne cigogne nom f s 3.22 2.50 2.21 1.35 +cigognes cigogne nom f p 3.22 2.50 1.00 1.15 +ciguë ciguë nom f s 0.20 0.88 0.20 0.68 +ciguës ciguë nom f p 0.20 0.88 0.00 0.20 +cil cil nom m s 3.57 19.26 0.77 2.16 +ciliaires ciliaire adj m p 0.00 0.07 0.00 0.07 +cilice cilice nom m s 0.16 0.27 0.16 0.27 +cilla ciller ver 0.28 4.32 0.00 0.61 ind:pas:3s; +cillaient ciller ver 0.28 4.32 0.00 0.47 ind:imp:3p; +cillait ciller ver 0.28 4.32 0.01 0.14 ind:imp:3s; +cillant ciller ver 0.28 4.32 0.00 0.20 par:pre; +cille ciller ver 0.28 4.32 0.05 0.07 ind:pre:3s; +cillement cillement nom m s 0.00 0.81 0.00 0.74 +cillements cillement nom m p 0.00 0.81 0.00 0.07 +cillent ciller ver 0.28 4.32 0.00 0.20 ind:pre:3p; +ciller ciller ver 0.28 4.32 0.04 1.82 inf; +cillerait ciller ver 0.28 4.32 0.00 0.07 cnd:pre:3s; +cillèrent ciller ver 0.28 4.32 0.00 0.27 ind:pas:3p; +cillé ciller ver m s 0.28 4.32 0.19 0.47 par:pas; +cils cil nom m p 3.57 19.26 2.80 17.09 +cimaise cimaise nom f s 0.00 0.47 0.00 0.14 +cimaises cimaise nom f p 0.00 0.47 0.00 0.34 +cimarron cimarron nom m s 0.07 0.00 0.07 0.00 +cime cime nom f s 1.77 9.73 1.08 4.46 +ciment ciment nom m s 5.75 18.85 5.60 18.78 +cimentaient cimenter ver 0.16 2.43 0.00 0.07 ind:imp:3p; +cimentait cimenter ver 0.16 2.43 0.00 0.20 ind:imp:3s; +cimentant cimenter ver 0.16 2.43 0.00 0.07 par:pre; +cimente cimenter ver 0.16 2.43 0.02 0.14 imp:pre:2s;ind:pre:3s; +cimentent cimenter ver 0.16 2.43 0.01 0.00 ind:pre:3p; +cimenter cimenter ver 0.16 2.43 0.06 0.14 inf; +cimentera cimenter ver 0.16 2.43 0.00 0.07 ind:fut:3s; +cimenterie cimenterie nom f s 0.08 0.61 0.08 0.27 +cimenteries cimenterie nom f p 0.08 0.61 0.00 0.34 +ciments ciment nom m p 5.75 18.85 0.15 0.07 +cimenté cimenter ver m s 0.16 2.43 0.04 0.47 par:pas; +cimentée cimenter ver f s 0.16 2.43 0.01 0.88 par:pas; +cimentées cimenter ver f p 0.16 2.43 0.00 0.20 par:pas; +cimentés cimenter ver m p 0.16 2.43 0.01 0.20 par:pas; +cimes cime nom f p 1.77 9.73 0.70 5.27 +cimeterre cimeterre nom m s 0.14 1.28 0.14 0.95 +cimeterres cimeterre nom m p 0.14 1.28 0.00 0.34 +cimetière cimetière nom m s 31.34 44.19 29.07 39.86 +cimetières cimetière nom m p 31.34 44.19 2.27 4.32 +cimier cimier nom m s 0.18 0.68 0.17 0.54 +cimiers cimier nom m p 0.18 0.68 0.01 0.14 +cinabre cinabre nom m s 0.00 0.14 0.00 0.14 +cinghalais cinghalais adj m s 0.00 0.20 0.00 0.14 +cinghalaises cinghalais adj f p 0.00 0.20 0.00 0.07 +cingla cingler ver 18.93 9.39 0.02 0.61 ind:pas:3s; +cinglage cinglage nom m s 0.05 0.00 0.05 0.00 +cinglaient cingler ver 18.93 9.39 0.00 0.61 ind:imp:3p; +cinglait cingler ver 18.93 9.39 0.14 1.62 ind:imp:3s; +cinglant cinglant adj m s 0.28 2.77 0.04 0.54 +cinglante cinglant adj f s 0.28 2.77 0.20 1.15 +cinglantes cinglant adj f p 0.28 2.77 0.03 0.74 +cinglants cinglant adj m p 0.28 2.77 0.00 0.34 +cingle cingler ver 18.93 9.39 0.26 1.22 ind:pre:3s; +cinglement cinglement nom m s 0.00 0.07 0.00 0.07 +cinglent cingler ver 18.93 9.39 0.00 0.27 ind:pre:3p; +cingler cingler ver 18.93 9.39 0.00 0.88 inf; +cinglions cingler ver 18.93 9.39 0.00 0.07 ind:imp:1p; +cinglons cingler ver 18.93 9.39 0.20 0.00 imp:pre:1p; +cinglèrent cingler ver 18.93 9.39 0.00 0.07 ind:pas:3p; +cinglé cingler ver m s 18.93 9.39 12.44 2.30 par:pas; +cinglée cingler ver f s 18.93 9.39 3.46 0.95 par:pas; +cinglées cinglé nom f p 12.37 5.81 0.28 0.20 +cinglés cinglé nom m p 12.37 5.81 3.49 1.69 +cinname cinname nom m s 0.00 0.07 0.00 0.07 +cinoche cinoche nom m s 1.08 6.35 1.07 6.22 +cinoches cinoche nom m p 1.08 6.35 0.01 0.14 +cinoque cinoque adj m s 0.01 0.27 0.01 0.27 +cinoques cinoque nom m p 0.00 0.14 0.00 0.14 +cinq cinq adj_num 161.96 220.61 161.96 220.61 +cinquantaine cinquantaine nom f s 1.44 9.93 1.44 9.86 +cinquantaines cinquantaine nom f p 1.44 9.93 0.00 0.07 +cinquante_cinq cinquante_cinq adj_num 0.20 2.50 0.20 2.50 +cinquante_deux cinquante_deux adj_num 0.21 1.42 0.21 1.42 +cinquante_huit cinquante_huit adj_num 0.06 0.88 0.06 0.88 +cinquante_huitième cinquante_huitième adj 0.00 0.07 0.00 0.07 +cinquante_neuf cinquante_neuf adj_num 0.03 0.34 0.03 0.34 +cinquante_neuvième cinquante_neuvième adj 0.00 0.07 0.00 0.07 +cinquante_quatre cinquante_quatre adj_num 0.13 0.68 0.13 0.68 +cinquante_sept cinquante_sept adj_num 0.08 0.95 0.08 0.95 +cinquante_septième cinquante_septième adj 0.03 0.07 0.03 0.07 +cinquante_six cinquante_six adj_num 0.18 0.68 0.18 0.68 +cinquante_sixième cinquante_sixième adj 0.00 0.14 0.00 0.14 +cinquante_trois cinquante_trois adj_num 0.15 0.81 0.15 0.81 +cinquante_troisième cinquante_troisième adj 0.00 0.14 0.00 0.14 +cinquante cinquante adj_num 9.26 61.08 9.26 61.08 +cinquantenaire cinquantenaire nom m s 0.20 0.14 0.18 0.14 +cinquantenaires cinquantenaire nom m p 0.20 0.14 0.02 0.00 +cinquantième cinquantième nom s 0.04 0.68 0.04 0.68 +cinquantièmes cinquantième adj 0.01 0.54 0.00 0.07 +cinquième cinquième adj m 6.14 11.15 6.13 11.01 +cinquièmement cinquièmement adv 0.16 0.14 0.16 0.14 +cinquièmes cinquième nom p 5.17 7.91 0.01 0.54 +cintra cintrer ver 0.07 1.49 0.00 0.68 ind:pas:3s; +cintrage cintrage nom m s 0.01 0.00 0.01 0.00 +cintrait cintrer ver 0.07 1.49 0.00 0.07 ind:imp:3s; +cintrant cintrer ver 0.07 1.49 0.00 0.07 par:pre; +cintras cintrer ver 0.07 1.49 0.00 0.07 ind:pas:2s; +cintre cintre nom m s 0.85 4.86 0.57 2.91 +cintrer cintrer ver 0.07 1.49 0.01 0.00 inf; +cintres cintre nom m p 0.85 4.86 0.28 1.96 +cintré cintrer ver m s 0.07 1.49 0.05 0.34 par:pas; +cintrée cintré adj f s 0.07 1.42 0.02 0.54 +cintrées cintré adj f p 0.07 1.42 0.00 0.27 +cintrés cintré adj m p 0.07 1.42 0.03 0.07 +ciné_club ciné_club nom m s 0.00 0.74 0.00 0.54 +ciné_club ciné_club nom m p 0.00 0.74 0.00 0.20 +ciné_roman ciné_roman nom m s 0.00 0.14 0.00 0.14 +ciné ciné nom m s 10.35 4.73 10.32 4.46 +cinéaste cinéaste nom s 3.56 1.76 2.45 1.08 +cinéastes cinéaste nom p 3.56 1.76 1.11 0.68 +cinéma_vérité cinéma_vérité nom m s 0.20 0.07 0.20 0.07 +cinéma cinéma nom m s 63.49 78.51 62.23 72.91 +cinémas cinéma nom m p 63.49 78.51 1.26 5.61 +cinémascope cinémascope nom m s 0.07 0.20 0.07 0.20 +cinémathèque cinémathèque nom f s 0.72 0.61 0.71 0.47 +cinémathèques cinémathèque nom f p 0.72 0.61 0.01 0.14 +cinématique cinématique nom f s 0.03 0.00 0.03 0.00 +cinématographe cinématographe nom m s 0.48 0.68 0.48 0.61 +cinématographes cinématographe nom m p 0.48 0.68 0.00 0.07 +cinématographie cinématographie nom f s 0.04 0.07 0.04 0.07 +cinématographique cinématographique adj s 1.42 2.23 0.85 1.49 +cinématographiquement cinématographiquement adv 0.01 0.14 0.01 0.14 +cinématographiques cinématographique adj p 1.42 2.23 0.57 0.74 +cinémomètres cinémomètre nom m p 0.00 0.07 0.00 0.07 +cinéphile cinéphile nom s 0.20 0.27 0.15 0.07 +cinéphiles cinéphile nom p 0.20 0.27 0.05 0.20 +cinéraire cinéraire adj f s 0.00 0.07 0.00 0.07 +cinéraire cinéraire nom f s 0.00 0.07 0.00 0.07 +cinérama cinérama nom m s 0.00 0.07 0.00 0.07 +cinés ciné nom m p 10.35 4.73 0.02 0.27 +cinétique cinétique adj s 0.17 0.07 0.17 0.07 +cinzano cinzano nom m s 0.50 0.88 0.50 0.88 +cipal cipal nom m s 0.01 0.14 0.01 0.14 +cipaye cipaye nom m s 0.01 0.41 0.01 0.00 +cipayes cipaye nom m p 0.01 0.41 0.00 0.41 +cipolin cipolin nom m s 0.00 0.07 0.00 0.07 +cippes cippe nom m p 0.00 0.14 0.00 0.14 +cira cirer ver 6.42 20.27 0.00 0.14 ind:pas:3s; +cirage cirage nom m s 2.08 4.39 2.08 4.39 +ciraient cirer ver 6.42 20.27 0.00 0.07 ind:imp:3p; +cirais cirer ver 6.42 20.27 0.02 0.20 ind:imp:1s;ind:imp:2s; +cirait cirer ver 6.42 20.27 0.04 0.41 ind:imp:3s; +cirant cirer ver 6.42 20.27 0.02 0.14 par:pre; +circadien circadien adj m s 0.03 0.00 0.03 0.00 +circassien circassien nom m s 0.05 0.14 0.05 0.14 +circassienne circassienne nom f s 0.14 0.20 0.14 0.14 +circassiennes circassienne nom f p 0.14 0.20 0.00 0.07 +circaète circaète nom m s 0.00 0.41 0.00 0.41 +circoncire circoncire ver 1.69 1.42 0.53 0.68 inf; +circoncis circoncire ver m 1.69 1.42 1.09 0.68 ind:pre:1s;par:pas;par:pas; +circoncise circoncire ver f s 1.69 1.42 0.03 0.00 par:pas; +circoncisent circoncire ver 1.69 1.42 0.01 0.00 ind:pre:3p; +circoncision circoncision nom f s 1.31 2.30 1.25 2.30 +circoncisions circoncision nom f p 1.31 2.30 0.06 0.00 +circoncit circoncire ver 1.69 1.42 0.03 0.07 ind:pre:3s;ind:pas:3s; +circonflexe circonflexe adj s 0.16 1.55 0.16 0.95 +circonflexes circonflexe adj m p 0.16 1.55 0.00 0.61 +circonférence circonférence nom f s 0.24 1.28 0.24 1.28 +circonlocutions circonlocution nom f p 0.00 0.88 0.00 0.88 +circonscription circonscription nom f s 0.78 0.74 0.67 0.34 +circonscriptions_clé circonscriptions_clé nom f p 0.01 0.00 0.01 0.00 +circonscriptions circonscription nom f p 0.78 0.74 0.11 0.41 +circonscrire circonscrire ver 0.13 1.35 0.05 0.27 inf; +circonscris circonscrire ver 0.13 1.35 0.00 0.07 ind:pre:1s; +circonscrit circonscrire ver m s 0.13 1.35 0.03 0.27 ind:pre:3s;par:pas; +circonscrite circonscrire ver f s 0.13 1.35 0.03 0.27 par:pas; +circonscrites circonscrire ver f p 0.13 1.35 0.00 0.07 par:pas; +circonscrits circonscrire ver m p 0.13 1.35 0.02 0.07 par:pas; +circonscrivait circonscrire ver 0.13 1.35 0.00 0.20 ind:imp:3s; +circonscrivent circonscrire ver 0.13 1.35 0.00 0.07 ind:pre:3p; +circonscrivit circonscrire ver 0.13 1.35 0.00 0.07 ind:pas:3s; +circonspect circonspect adj m s 0.21 2.91 0.04 1.96 +circonspecte circonspect adj f s 0.21 2.91 0.01 0.34 +circonspectes circonspect adj f p 0.21 2.91 0.00 0.07 +circonspection circonspection nom f s 0.04 2.70 0.04 2.64 +circonspections circonspection nom f p 0.04 2.70 0.00 0.07 +circonspects circonspect adj m p 0.21 2.91 0.16 0.54 +circonstance circonstance nom f s 21.80 58.24 2.48 16.01 +circonstances circonstance nom f p 21.80 58.24 19.32 42.23 +circonstancia circonstancier ver 0.00 0.41 0.00 0.14 ind:pas:3s; +circonstanciel circonstanciel adj m s 0.11 0.07 0.05 0.00 +circonstancielle circonstanciel adj f s 0.11 0.07 0.05 0.00 +circonstanciels circonstanciel adj m p 0.11 0.07 0.00 0.07 +circonstancié circonstancié adj m s 0.03 0.47 0.03 0.14 +circonstanciée circonstancier ver f s 0.00 0.41 0.00 0.07 par:pas; +circonstanciées circonstancié adj f p 0.03 0.47 0.00 0.07 +circonstanciés circonstancié adj m p 0.03 0.47 0.00 0.27 +circonvallation circonvallation nom f s 0.00 0.14 0.00 0.07 +circonvallations circonvallation nom f p 0.00 0.14 0.00 0.07 +circonvenant circonvenir ver 0.09 0.95 0.01 0.00 par:pre; +circonvenir circonvenir ver 0.09 0.95 0.05 0.47 inf; +circonvenu circonvenir ver m s 0.09 0.95 0.01 0.41 par:pas; +circonvenue circonvenir ver f s 0.09 0.95 0.01 0.07 par:pas; +circonvient circonvenir ver 0.09 0.95 0.01 0.00 ind:pre:3s; +circonvolution circonvolution nom f s 0.05 1.08 0.03 0.20 +circonvolutions circonvolution nom f p 0.05 1.08 0.02 0.88 +circuit circuit nom m s 10.23 9.59 7.00 7.77 +circuits circuit nom m p 10.23 9.59 3.24 1.82 +circula circuler ver 15.19 25.81 0.01 0.54 ind:pas:3s; +circulaient circuler ver 15.19 25.81 0.29 3.92 ind:imp:3p; +circulaire circulaire adj s 1.48 9.73 1.35 8.24 +circulairement circulairement adv 0.00 0.07 0.00 0.07 +circulaires circulaire adj p 1.48 9.73 0.14 1.49 +circulais circuler ver 15.19 25.81 0.01 0.34 ind:imp:1s; +circulait circuler ver 15.19 25.81 0.29 4.59 ind:imp:3s; +circulant circuler ver 15.19 25.81 0.06 0.95 par:pre; +circularité circularité nom f s 0.00 0.14 0.00 0.14 +circulation circulation nom f s 10.78 14.46 10.78 14.32 +circulations circulation nom f p 10.78 14.46 0.00 0.14 +circulatoire circulatoire adj s 0.51 0.20 0.28 0.00 +circulatoires circulatoire adj m p 0.51 0.20 0.23 0.20 +circule circuler ver 15.19 25.81 3.56 4.93 imp:pre:2s;ind:pre:1s;ind:pre:3s; +circulent circuler ver 15.19 25.81 1.73 2.30 ind:pre:3p; +circuler circuler ver 15.19 25.81 4.04 6.42 inf; +circulera circuler ver 15.19 25.81 0.24 0.00 ind:fut:3s; +circuleraient circuler ver 15.19 25.81 0.02 0.07 cnd:pre:3p; +circulerait circuler ver 15.19 25.81 0.02 0.14 cnd:pre:3s; +circuleront circuler ver 15.19 25.81 0.01 0.07 ind:fut:3p; +circules circuler ver 15.19 25.81 0.01 0.07 ind:pre:2s; +circulez circuler ver 15.19 25.81 4.63 0.74 imp:pre:2p;ind:pre:2p; +circulions circuler ver 15.19 25.81 0.00 0.07 ind:imp:1p; +circulons circuler ver 15.19 25.81 0.06 0.00 imp:pre:1p;ind:pre:1p; +circulèrent circuler ver 15.19 25.81 0.00 0.07 ind:pas:3p; +circulé circuler ver m s 15.19 25.81 0.21 0.61 par:pas; +circumnavigation circumnavigation nom f s 0.14 0.27 0.14 0.27 +cire cire nom f s 5.59 15.88 5.49 15.41 +cirent cirer ver 6.42 20.27 0.25 0.00 ind:pre:3p; +cirer cirer ver 6.42 20.27 3.29 3.24 inf; +cirerais cirer ver 6.42 20.27 0.00 0.07 cnd:pre:1s; +cirerait cirer ver 6.42 20.27 0.00 0.07 cnd:pre:3s; +cires cire nom f p 5.59 15.88 0.10 0.47 +cireur cireur nom m s 0.45 1.22 0.36 0.74 +cireurs cireur nom m p 0.45 1.22 0.01 0.34 +cireuse cireur nom f s 0.45 1.22 0.08 0.14 +cireuses cireux adj f p 0.15 2.50 0.04 0.41 +cireux cireux adj m 0.15 2.50 0.06 1.42 +cirez cirer ver 6.42 20.27 0.14 0.07 imp:pre:2p;ind:pre:2p; +cirions cirer ver 6.42 20.27 0.00 0.07 ind:imp:1p; +ciron ciron nom m s 0.00 0.14 0.00 0.07 +cirons cirer ver 6.42 20.27 0.00 0.07 imp:pre:1p; +cirque cirque nom m s 23.25 19.53 22.95 18.38 +cirques cirque nom m p 23.25 19.53 0.30 1.15 +cirrhose cirrhose nom f s 0.90 0.27 0.90 0.27 +cirrhotique cirrhotique adj s 0.01 0.07 0.01 0.07 +cirrus cirrus nom m 0.04 0.14 0.04 0.14 +cirses cirse nom m p 0.00 0.07 0.00 0.07 +ciré ciré adj m s 0.36 5.27 0.35 3.58 +cirée cirer ver f s 6.42 20.27 0.14 12.16 par:pas; +cirées cirer ver f p 6.42 20.27 1.28 1.62 par:pas; +cirés ciré nom m p 0.69 2.70 0.46 0.61 +cis cis adj m 0.03 0.00 0.03 0.00 +cisailla cisailler ver 0.11 2.57 0.00 0.20 ind:pas:3s; +cisaillage cisaillage nom m s 0.00 0.07 0.00 0.07 +cisaillaient cisailler ver 0.11 2.57 0.00 0.34 ind:imp:3p; +cisaillait cisailler ver 0.11 2.57 0.00 0.20 ind:imp:3s; +cisaillant cisailler ver 0.11 2.57 0.00 0.20 par:pre; +cisaille cisaille nom f s 1.60 0.95 0.36 0.74 +cisaillement cisaillement nom m s 0.05 0.14 0.05 0.14 +cisaillent cisailler ver 0.11 2.57 0.01 0.07 ind:pre:3p; +cisailler cisailler ver 0.11 2.57 0.05 0.68 inf; +cisailles cisaille nom f p 1.60 0.95 1.24 0.20 +cisaillèrent cisailler ver 0.11 2.57 0.00 0.07 ind:pas:3p; +cisaillé cisailler ver m s 0.11 2.57 0.01 0.41 par:pas; +cisaillée cisailler ver f s 0.11 2.57 0.00 0.07 par:pas; +cisaillées cisailler ver f p 0.11 2.57 0.00 0.07 par:pas; +cisaillés cisailler ver m p 0.11 2.57 0.00 0.07 par:pas; +ciseau ciseau nom m s 8.72 13.85 0.86 2.84 +ciseaux ciseau nom m p 8.72 13.85 7.86 11.01 +ciselaient ciseler ver 0.23 2.03 0.00 0.07 ind:imp:3p; +ciselait ciseler ver 0.23 2.03 0.01 0.14 ind:imp:3s; +ciseler ciseler ver 0.23 2.03 0.01 0.20 inf; +ciselet ciselet nom m s 0.00 0.07 0.00 0.07 +ciseleurs ciseleur nom m p 0.00 0.07 0.00 0.07 +ciselions ciseler ver 0.23 2.03 0.01 0.00 ind:imp:1p; +ciselé ciselé adj m s 0.07 2.43 0.02 1.15 +ciselée ciselé adj f s 0.07 2.43 0.05 0.27 +ciselées ciselé adj f p 0.07 2.43 0.00 0.61 +ciselure ciselure nom f s 0.00 0.27 0.00 0.07 +ciselures ciselure nom f p 0.00 0.27 0.00 0.20 +ciselés ciseler ver m p 0.23 2.03 0.14 0.07 par:pas; +ciste ciste nom s 0.02 0.34 0.01 0.00 +cistercien cistercien adj m s 0.01 0.34 0.00 0.07 +cistercienne cistercien adj f s 0.01 0.34 0.00 0.20 +cisterciennes cistercien nom f p 0.01 0.07 0.00 0.07 +cisterciens cistercien adj m p 0.01 0.34 0.01 0.07 +cistes ciste nom p 0.02 0.34 0.01 0.34 +cisèle ciseler ver 0.23 2.03 0.01 0.20 ind:pre:3s; +cita citer ver 17.51 27.09 0.00 0.88 ind:pas:3s; +citadelle citadelle nom f s 0.98 6.42 0.98 5.54 +citadelles citadelle nom f p 0.98 6.42 0.00 0.88 +citadin citadin nom m s 1.25 3.72 0.56 0.54 +citadine citadin nom f s 1.25 3.72 0.10 0.27 +citadines citadin adj f p 0.42 2.03 0.11 0.54 +citadins citadin nom m p 1.25 3.72 0.55 2.84 +citai citer ver 17.51 27.09 0.00 0.68 ind:pas:1s; +citaient citer ver 17.51 27.09 0.02 0.34 ind:imp:3p; +citais citer ver 17.51 27.09 0.19 0.47 ind:imp:1s;ind:imp:2s; +citait citer ver 17.51 27.09 0.15 3.18 ind:imp:3s; +citant citer ver 17.51 27.09 0.46 1.69 par:pre; +citation citation nom f s 5.01 8.11 3.51 4.19 +citations citation nom f p 5.01 8.11 1.50 3.92 +cite citer ver 17.51 27.09 5.61 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +citent citer ver 17.51 27.09 0.10 0.34 ind:pre:3p; +citer citer ver 17.51 27.09 4.38 7.16 inf;; +citera citer ver 17.51 27.09 0.11 0.14 ind:fut:3s; +citerai citer ver 17.51 27.09 0.35 0.68 ind:fut:1s; +citerais citer ver 17.51 27.09 0.03 0.14 cnd:pre:1s;cnd:pre:2s; +citerait citer ver 17.51 27.09 0.00 0.14 cnd:pre:3s; +citeras citer ver 17.51 27.09 0.02 0.00 ind:fut:2s; +citerne citerne nom f s 4.19 2.09 3.74 1.28 +citernes citerne nom f p 4.19 2.09 0.45 0.81 +cites citer ver 17.51 27.09 0.63 0.27 ind:pre:2s;sub:pre:2s; +citez citer ver 17.51 27.09 1.37 0.68 imp:pre:2p;ind:pre:2p; +cithare cithare nom f s 0.34 0.95 0.34 0.54 +cithares cithare nom f p 0.34 0.95 0.00 0.41 +citiez citer ver 17.51 27.09 0.04 0.07 ind:imp:2p; +citions citer ver 17.51 27.09 0.01 0.07 ind:imp:1p; +citizen_band citizen_band nom f s 0.01 0.00 0.01 0.00 +citons citer ver 17.51 27.09 0.20 0.20 imp:pre:1p;ind:pre:1p; +citât citer ver 17.51 27.09 0.00 0.14 sub:imp:3s; +citoyen citoyen nom m s 29.01 14.73 11.61 5.20 +citoyenne citoyen nom f s 29.01 14.73 1.56 0.61 +citoyennes citoyenne nom f p 0.59 0.00 0.59 0.00 +citoyenneté citoyenneté nom f s 1.13 0.34 1.13 0.34 +citoyens citoyen nom m p 29.01 14.73 15.83 8.65 +citrate citrate nom m s 0.20 0.00 0.20 0.00 +citrine citrine nom f s 0.06 0.07 0.06 0.07 +citrique citrique adj s 0.07 0.14 0.07 0.14 +citron citron nom m s 10.92 10.81 8.10 9.05 +citronnade citronnade nom f s 0.58 1.01 0.56 0.95 +citronnades citronnade nom f p 0.58 1.01 0.02 0.07 +citronnelle citronnelle nom f s 0.46 0.88 0.46 0.81 +citronnelles citronnelle nom f p 0.46 0.88 0.00 0.07 +citronnez citronner ver 0.01 0.07 0.00 0.07 imp:pre:2p; +citronnier citronnier nom m s 0.21 1.49 0.04 0.41 +citronniers citronnier nom m p 0.21 1.49 0.17 1.08 +citronné citronné adj m s 0.06 0.07 0.03 0.07 +citronnée citronné adj f s 0.06 0.07 0.03 0.00 +citrons citron nom m p 10.92 10.81 2.82 1.76 +citrouille citrouille nom f s 1.88 2.91 1.56 2.43 +citrouilles citrouille nom f p 1.88 2.91 0.32 0.47 +citrus citrus nom m 0.17 0.00 0.17 0.00 +citèrent citer ver 17.51 27.09 0.01 0.07 ind:pas:3p; +cité_dortoir cité_dortoir nom f s 0.00 0.27 0.00 0.14 +cité_jardin cité_jardin nom f s 0.00 0.20 0.00 0.20 +cité cité nom f s 16.11 23.99 14.55 20.68 +citée citer ver f s 17.51 27.09 0.53 0.68 par:pas; +citées citer ver f p 17.51 27.09 0.03 0.14 par:pas; +citérieure citérieur adj f s 0.00 0.07 0.00 0.07 +cité_dortoir cité_dortoir nom f p 0.00 0.27 0.00 0.14 +cités cité nom f p 16.11 23.99 1.56 3.31 +city city nom f s 0.54 0.27 0.54 0.27 +civadière civadière nom f s 0.01 0.00 0.01 0.00 +civelles civelle nom f p 0.30 0.27 0.30 0.27 +civelots civelot nom m p 0.00 0.14 0.00 0.14 +civet civet nom m s 0.88 2.43 0.78 2.36 +civets civet nom m p 0.88 2.43 0.10 0.07 +civette civette nom f s 0.15 0.54 0.15 0.54 +civil civil adj m s 20.46 28.51 5.92 9.46 +civile civil adj f s 20.46 28.51 9.76 10.61 +civilement civilement adv 0.04 0.74 0.04 0.74 +civiles civil adj f p 20.46 28.51 1.42 3.04 +civilisateur civilisateur adj m s 0.10 0.34 0.00 0.14 +civilisation civilisation nom f s 12.43 19.32 10.48 16.62 +civilisations civilisation nom f p 12.43 19.32 1.94 2.70 +civilisatrice civilisateur adj f s 0.10 0.34 0.10 0.20 +civilise civiliser ver 2.17 1.08 0.02 0.07 ind:pre:3s; +civiliser civiliser ver 2.17 1.08 0.34 0.20 inf; +civilises civiliser ver 2.17 1.08 0.00 0.07 ind:pre:2s; +civilisé civilisé adj m s 5.64 3.78 2.88 1.96 +civilisée civilisé adj f s 5.64 3.78 1.11 0.47 +civilisées civilisé adj f p 5.64 3.78 0.35 0.27 +civilisés civilisé adj m p 5.64 3.78 1.31 1.08 +civilité civilité nom f s 1.48 1.42 0.90 1.01 +civilités civilité nom f p 1.48 1.42 0.58 0.41 +civils civil nom m p 14.23 13.99 8.00 5.54 +civique civique adj s 2.97 1.82 1.37 1.35 +civiques civique adj p 2.97 1.82 1.60 0.47 +civisme civisme nom m s 0.26 0.54 0.26 0.54 +civière civière nom f s 2.42 4.46 1.97 4.12 +civières civière nom f p 2.42 4.46 0.45 0.34 +clôt clore ver 7.75 31.28 0.23 1.55 ind:pre:3s; +clôtura clôturer ver 1.12 1.82 0.02 0.07 ind:pas:3s; +clôturai clôturer ver 1.12 1.82 0.00 0.20 ind:pas:1s; +clôturaient clôturer ver 1.12 1.82 0.00 0.20 ind:imp:3p; +clôturait clôturer ver 1.12 1.82 0.00 0.20 ind:imp:3s; +clôture clôture nom f s 6.00 10.68 5.34 7.84 +clôturent clôturer ver 1.12 1.82 0.00 0.07 ind:pre:3p; +clôturer clôturer ver 1.12 1.82 0.55 0.27 inf; +clôturera clôturer ver 1.12 1.82 0.02 0.00 ind:fut:3s; +clôtures clôture nom f p 6.00 10.68 0.66 2.84 +clôturé clôturer ver m s 1.12 1.82 0.30 0.34 par:pas; +clôturée clôturer ver f s 1.12 1.82 0.03 0.07 par:pas; +clabaudage clabaudage nom m s 0.02 0.07 0.01 0.00 +clabaudages clabaudage nom m p 0.02 0.07 0.01 0.07 +clabaudaient clabauder ver 0.01 0.34 0.00 0.14 ind:imp:3p; +clabaudent clabauder ver 0.01 0.34 0.00 0.07 ind:pre:3p; +clabauder clabauder ver 0.01 0.34 0.01 0.07 inf; +clabauderies clabauderie nom f p 0.00 0.07 0.00 0.07 +clabaudé clabauder ver m s 0.01 0.34 0.00 0.07 par:pas; +clabote claboter ver 0.01 0.47 0.00 0.14 ind:pre:1s;ind:pre:3s; +clabotent claboter ver 0.01 0.47 0.00 0.07 ind:pre:3p; +claboter claboter ver 0.01 0.47 0.00 0.14 inf; +claboté claboter ver m s 0.01 0.47 0.01 0.14 par:pas; +clac clac ono 0.29 3.72 0.29 3.72 +clafouti clafouti nom m s 0.00 0.07 0.00 0.07 +clafoutis clafoutis nom m 0.05 0.54 0.05 0.54 +claie claie nom f s 0.01 2.43 0.01 1.01 +claies claie nom f p 0.01 2.43 0.00 1.42 +claim claim nom m s 0.08 0.00 0.08 0.00 +clair_obscur clair_obscur nom m s 0.02 1.96 0.02 1.62 +clair clair adj m s 122.69 156.69 88.54 91.01 +claire_voie claire_voie nom f s 0.01 2.43 0.01 1.96 +claire clair adj f s 122.69 156.69 21.21 38.04 +clairement clairement adv 18.75 18.18 18.75 18.18 +claire_voie claire_voie nom f p 0.01 2.43 0.00 0.47 +claires clair adj f p 122.69 156.69 7.05 12.91 +clairet clairet nom m s 0.02 0.00 0.02 0.00 +clairette clairet adj f s 0.00 0.88 0.00 0.88 +clairière clairière nom f s 1.84 17.77 1.72 14.59 +clairières clairière nom f p 1.84 17.77 0.12 3.18 +clairon clairon nom m s 2.19 5.61 2.03 4.32 +claironna claironner ver 0.91 3.24 0.00 0.68 ind:pas:3s; +claironnait claironner ver 0.91 3.24 0.00 0.54 ind:imp:3s; +claironnant claironner ver 0.91 3.24 0.01 0.61 par:pre; +claironnante claironnant adj f s 0.00 1.08 0.00 0.74 +claironnantes claironnant adj f p 0.00 1.08 0.00 0.07 +claironnants claironnant adj m p 0.00 1.08 0.00 0.20 +claironne claironner ver 0.91 3.24 0.42 0.41 ind:pre:1s;ind:pre:3s; +claironnent claironner ver 0.91 3.24 0.27 0.07 ind:pre:3p; +claironner claironner ver 0.91 3.24 0.20 0.61 inf; +claironnions claironner ver 0.91 3.24 0.00 0.07 ind:imp:1p; +claironné claironner ver m s 0.91 3.24 0.01 0.27 par:pas; +clairons clairon nom m p 2.19 5.61 0.16 1.28 +clair_obscur clair_obscur nom m p 0.02 1.96 0.00 0.34 +clairs clair adj m p 122.69 156.69 5.89 14.73 +clairsemaient clairsemer ver 0.04 1.49 0.00 0.14 ind:imp:3p; +clairsemait clairsemer ver 0.04 1.49 0.00 0.07 ind:imp:3s; +clairsemant clairsemer ver 0.04 1.49 0.00 0.07 par:pre; +clairsemé clairsemé adj m s 0.27 3.18 0.01 0.54 +clairsemée clairsemer ver f s 0.04 1.49 0.01 0.41 par:pas; +clairsemées clairsemer ver f p 0.04 1.49 0.01 0.27 par:pas; +clairsemés clairsemé adj m p 0.27 3.18 0.26 1.22 +clairvoyance clairvoyance nom f s 0.67 1.89 0.67 1.82 +clairvoyances clairvoyance nom f p 0.67 1.89 0.00 0.07 +clairvoyant clairvoyant adj m s 0.96 1.69 0.53 1.01 +clairvoyante clairvoyant adj f s 0.96 1.69 0.22 0.47 +clairvoyants clairvoyant adj m p 0.96 1.69 0.22 0.20 +clam clam nom m s 0.34 0.20 0.06 0.07 +clama clamer ver 2.61 7.30 0.00 1.15 ind:pas:3s; +clamai clamer ver 2.61 7.30 0.00 0.07 ind:pas:1s; +clamaient clamer ver 2.61 7.30 0.01 0.61 ind:imp:3p; +clamait clamer ver 2.61 7.30 0.11 1.15 ind:imp:3s; +clamant clamer ver 2.61 7.30 0.39 0.88 par:pre; +clame clamer ver 2.61 7.30 0.67 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clamecer clamecer ver 0.00 0.20 0.00 0.07 inf; +clamecé clamecer ver m s 0.00 0.20 0.00 0.07 par:pas; +clamecée clamecer ver f s 0.00 0.20 0.00 0.07 par:pas; +clament clamer ver 2.61 7.30 0.32 0.34 ind:pre:3p; +clamer clamer ver 2.61 7.30 0.71 0.61 inf; +clameraient clamer ver 2.61 7.30 0.00 0.07 cnd:pre:3p; +clameur clameur nom f s 0.90 9.73 0.73 5.61 +clameurs clameur nom f p 0.90 9.73 0.16 4.12 +clamez clamer ver 2.61 7.30 0.14 0.00 imp:pre:2p;ind:pre:2p; +clamions clamer ver 2.61 7.30 0.00 0.07 ind:imp:1p; +clamp clamp nom m s 1.09 0.00 0.97 0.00 +clampe clamper ver 0.41 0.00 0.09 0.00 ind:pre:1s;ind:pre:3s; +clamper clamper ver 0.41 0.00 0.14 0.00 inf; +clampin clampin nom m s 0.03 0.34 0.02 0.20 +clampins clampin nom m p 0.03 0.34 0.01 0.14 +clamps clamp nom m p 1.09 0.00 0.12 0.00 +clampé clamper ver m s 0.41 0.00 0.17 0.00 par:pas; +clams clam nom m p 0.34 0.20 0.28 0.14 +clamse clamser ver 0.97 1.69 0.26 0.07 ind:pre:3s; +clamser clamser ver 0.97 1.69 0.29 0.74 inf; +clamserai clamser ver 0.97 1.69 0.01 0.20 ind:fut:1s; +clamserait clamser ver 0.97 1.69 0.01 0.14 cnd:pre:3s; +clamsé clamser ver m s 0.97 1.69 0.37 0.20 par:pas; +clamsée clamser ver f s 0.97 1.69 0.01 0.27 par:pas; +clamsés clamser ver m p 0.97 1.69 0.01 0.07 par:pas; +clamèrent clamer ver 2.61 7.30 0.01 0.07 ind:pas:3p; +clamé clamer ver m s 2.61 7.30 0.12 0.34 par:pas; +clamée clamer ver f s 2.61 7.30 0.14 0.07 par:pas; +clamés clamer ver m p 2.61 7.30 0.00 0.07 par:pas; +clan clan nom m s 8.83 16.42 7.61 13.51 +clandestin clandestin adj m s 6.78 17.64 2.79 5.07 +clandestine clandestin adj f s 6.78 17.64 1.93 6.22 +clandestinement clandestinement adv 1.48 2.84 1.48 2.84 +clandestines clandestin nom f p 2.86 1.76 0.83 0.07 +clandestinité clandestinité nom f s 0.48 4.80 0.48 4.73 +clandestinités clandestinité nom f p 0.48 4.80 0.00 0.07 +clandestins clandestin adj m p 6.78 17.64 1.46 3.58 +clandé clandé nom m s 0.19 1.35 0.04 1.28 +clandés clandé nom m p 0.19 1.35 0.16 0.07 +clans clan nom m p 8.83 16.42 1.22 2.91 +clap clap nom m s 1.43 0.54 1.43 0.54 +clapant claper ver 0.00 2.30 0.00 0.47 par:pre; +clape claper ver 0.00 2.30 0.00 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clapent claper ver 0.00 2.30 0.00 0.14 ind:pre:3p; +claper claper ver 0.00 2.30 0.00 0.61 inf; +claperai claper ver 0.00 2.30 0.00 0.07 ind:fut:1s; +clapes claper ver 0.00 2.30 0.00 0.07 ind:pre:2s; +clapet clapet nom m s 1.15 1.15 0.98 0.68 +clapets clapet nom m p 1.15 1.15 0.17 0.47 +clapette clapette nom f s 0.00 0.07 0.00 0.07 +clapier clapier nom m s 0.30 2.84 0.28 1.42 +clapiers clapier nom m p 0.30 2.84 0.02 1.42 +clapir clapir ver 0.00 0.14 0.00 0.07 inf; +clapit clapir ver 0.00 0.14 0.00 0.07 ind:pre:3s; +clapot clapot nom m s 0.16 0.47 0.16 0.47 +clapota clapoter ver 0.09 3.24 0.00 0.14 ind:pas:3s; +clapotaient clapoter ver 0.09 3.24 0.00 0.27 ind:imp:3p; +clapotait clapoter ver 0.09 3.24 0.01 1.01 ind:imp:3s; +clapotant clapotant adj m s 0.00 1.22 0.00 0.47 +clapotante clapotant adj f s 0.00 1.22 0.00 0.54 +clapotantes clapotant adj f p 0.00 1.22 0.00 0.20 +clapote clapoter ver 0.09 3.24 0.03 0.41 imp:pre:2s;ind:pre:3s; +clapotement clapotement nom m s 0.00 1.08 0.00 0.68 +clapotements clapotement nom m p 0.00 1.08 0.00 0.41 +clapotent clapoter ver 0.09 3.24 0.01 0.34 ind:pre:3p; +clapoter clapoter ver 0.09 3.24 0.04 0.74 inf; +clapoterait clapoter ver 0.09 3.24 0.00 0.07 cnd:pre:3s; +clapotis clapotis nom m 0.30 5.41 0.30 5.41 +clappait clapper ver 0.03 0.41 0.00 0.07 ind:imp:3s; +clappant clapper ver 0.03 0.41 0.00 0.20 par:pre; +clappe clapper ver 0.03 0.41 0.00 0.14 ind:pre:3s; +clappement clappement nom m s 0.01 0.54 0.00 0.27 +clappements clappement nom m p 0.01 0.54 0.01 0.27 +clapper clapper ver 0.03 0.41 0.03 0.00 inf; +clapé claper ver m s 0.00 2.30 0.00 0.41 par:pas; +claqua claquer ver 15.13 74.19 0.00 7.23 ind:pas:3s; +claquage claquage nom m s 0.10 0.07 0.10 0.07 +claquai claquer ver 15.13 74.19 0.00 0.14 ind:pas:1s; +claquaient claquer ver 15.13 74.19 0.07 4.39 ind:imp:3p; +claquais claquer ver 15.13 74.19 0.05 0.34 ind:imp:1s;ind:imp:2s; +claquait claquer ver 15.13 74.19 0.15 4.12 ind:imp:3s; +claquant claquer ver 15.13 74.19 0.65 9.19 par:pre; +claquante claquant adj f s 0.14 1.42 0.00 0.14 +claquantes claquant adj f p 0.14 1.42 0.00 0.14 +claquants claquant adj m p 0.14 1.42 0.00 0.20 +claque_merde claque_merde nom m s 0.19 0.27 0.19 0.27 +claque claque nom s 6.88 14.26 5.19 8.65 +claquedents claquedent nom m p 0.00 0.07 0.00 0.07 +claquement claquement nom m s 0.96 14.73 0.71 9.46 +claquements claquement nom m p 0.96 14.73 0.25 5.27 +claquemurait claquemurer ver 0.14 1.28 0.00 0.14 ind:imp:3s; +claquemurant claquemurer ver 0.14 1.28 0.14 0.00 par:pre; +claquemurer claquemurer ver 0.14 1.28 0.00 0.07 inf; +claquemures claquemurer ver 0.14 1.28 0.00 0.07 ind:pre:2s; +claquemuré claquemurer ver m s 0.14 1.28 0.01 0.41 par:pas; +claquemurée claquemurer ver f s 0.14 1.28 0.00 0.34 par:pas; +claquemurées claquemurer ver f p 0.14 1.28 0.00 0.20 par:pas; +claquemurés claquemurer ver m p 0.14 1.28 0.00 0.07 par:pas; +claquent claquer ver 15.13 74.19 0.28 5.14 ind:pre:3p; +claquer claquer ver 15.13 74.19 4.50 19.59 inf; +claquera claquer ver 15.13 74.19 0.19 0.20 ind:fut:3s; +claquerai claquer ver 15.13 74.19 0.15 0.07 ind:fut:1s; +claqueraient claquer ver 15.13 74.19 0.00 0.20 cnd:pre:3p; +claquerais claquer ver 15.13 74.19 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +claquerait claquer ver 15.13 74.19 0.25 0.34 cnd:pre:3s; +claqueriez claquer ver 15.13 74.19 0.01 0.00 cnd:pre:2p; +claqueront claquer ver 15.13 74.19 0.01 0.00 ind:fut:3p; +claques claque nom p 6.88 14.26 1.69 5.61 +claquet claquet nom m s 0.02 0.00 0.02 0.00 +claquette claquette nom f s 1.71 1.22 0.10 0.07 +claquettes claquette nom f p 1.71 1.22 1.61 1.15 +claquetèrent claqueter ver 0.00 0.07 0.00 0.07 ind:pas:3p; +claqueurs claqueur nom m p 0.00 0.07 0.00 0.07 +claquez claquer ver 15.13 74.19 0.46 0.07 imp:pre:2p;ind:pre:2p; +claquions claquer ver 15.13 74.19 0.00 0.07 ind:imp:1p; +claquoirs claquoir nom m p 0.01 0.14 0.01 0.14 +claquons claquer ver 15.13 74.19 0.02 0.00 imp:pre:1p; +claquât claquer ver 15.13 74.19 0.00 0.07 sub:imp:3s; +claquèrent claquer ver 15.13 74.19 0.00 1.35 ind:pas:3p; +claqué claquer ver m s 15.13 74.19 2.56 7.30 par:pas; +claquée claquer ver f s 15.13 74.19 0.55 1.15 par:pas; +claquées claquer ver f p 15.13 74.19 0.11 1.15 par:pas; +claqués claquer ver m p 15.13 74.19 0.10 0.27 par:pas; +clarifia clarifier ver 3.64 0.74 0.00 0.14 ind:pas:3s; +clarifiant clarifier ver 3.64 0.74 0.01 0.00 par:pre; +clarification clarification nom f s 0.07 0.07 0.07 0.07 +clarifie clarifier ver 3.64 0.74 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clarifier clarifier ver 3.64 0.74 2.79 0.27 inf; +clarifions clarifier ver 3.64 0.74 0.26 0.00 imp:pre:1p; +clarifié clarifier ver m s 3.64 0.74 0.33 0.20 par:pas; +clarifiée clarifier ver f s 3.64 0.74 0.02 0.00 par:pas; +clarine clarine nom f s 0.40 0.54 0.40 0.07 +clarines clarine nom f p 0.40 0.54 0.00 0.47 +clarinette clarinette nom f s 2.21 3.58 2.20 3.11 +clarinettes clarinette nom f p 2.21 3.58 0.01 0.47 +clarinettiste clarinettiste nom s 0.23 0.20 0.23 0.20 +clarisse clarisse nom f s 0.33 0.41 0.06 0.00 +clarisses clarisse nom f p 0.33 0.41 0.27 0.41 +clarissimes clarissime nom m p 0.00 0.14 0.00 0.14 +clarté clarté nom f s 4.62 30.68 4.48 28.24 +clartés clarté nom f p 4.62 30.68 0.14 2.43 +clash clash nom m s 1.70 1.55 1.70 1.55 +class class adj 0.51 1.08 0.51 1.08 +classa classer ver 12.11 12.70 0.02 0.27 ind:pas:3s; +classable classable adj s 0.14 0.00 0.14 0.00 +classaient classer ver 12.11 12.70 0.03 0.20 ind:imp:3p; +classais classer ver 12.11 12.70 0.27 0.41 ind:imp:1s;ind:imp:2s; +classait classer ver 12.11 12.70 0.04 1.01 ind:imp:3s; +classant classer ver 12.11 12.70 0.04 0.47 par:pre; +classe classe nom f s 78.99 108.92 70.46 90.74 +classement classement nom m s 2.65 2.09 2.34 1.76 +classements classement nom m p 2.65 2.09 0.31 0.34 +classent classer ver 12.11 12.70 0.05 0.14 ind:pre:3p; +classer classer ver 12.11 12.70 2.02 2.84 inf; +classera classer ver 12.11 12.70 0.03 0.07 ind:fut:3s; +classerai classer ver 12.11 12.70 0.02 0.00 ind:fut:1s; +classeraient classer ver 12.11 12.70 0.00 0.07 cnd:pre:3p; +classerais classer ver 12.11 12.70 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +classerait classer ver 12.11 12.70 0.03 0.14 cnd:pre:3s; +classeras classer ver 12.11 12.70 0.01 0.00 ind:fut:2s; +classes classe nom f p 78.99 108.92 8.53 18.18 +classeur classeur nom m s 0.69 3.38 0.56 1.35 +classeurs classeur nom m p 0.69 3.38 0.13 2.03 +classez classer ver 12.11 12.70 0.34 0.07 imp:pre:2p;ind:pre:2p; +classicisme classicisme nom m s 0.04 0.34 0.04 0.34 +classico classico adv 0.01 0.00 0.01 0.00 +classieuse classieux adj f s 0.28 0.00 0.13 0.00 +classieux classieux adj m 0.28 0.00 0.14 0.00 +classiez classer ver 12.11 12.70 0.01 0.00 sub:pre:2p; +classifiables classifiable adj p 0.00 0.07 0.00 0.07 +classificateur classificateur adj m s 0.00 0.20 0.00 0.14 +classification classification nom f s 0.59 1.08 0.57 0.95 +classifications classification nom f p 0.59 1.08 0.02 0.14 +classificatrice classificateur adj f s 0.00 0.20 0.00 0.07 +classifient classifier ver 0.53 0.20 0.00 0.07 ind:pre:3p; +classifier classifier ver 0.53 0.20 0.23 0.14 inf; +classifierais classifier ver 0.53 0.20 0.01 0.00 cnd:pre:2s; +classifié classifier ver m s 0.53 0.20 0.23 0.00 par:pas; +classifiées classifier ver f p 0.53 0.20 0.06 0.00 par:pas; +classique classique adj s 15.58 21.01 13.74 15.81 +classiquement classiquement adv 0.00 0.14 0.00 0.14 +classiques classique nom p 7.02 4.80 1.87 2.57 +classons classer ver 12.11 12.70 0.05 0.00 imp:pre:1p;ind:pre:1p; +classèrent classer ver 12.11 12.70 0.00 0.14 ind:pas:3p; +classé classer ver m s 12.11 12.70 2.28 1.42 par:pas; +classée classé adj f s 4.75 2.70 2.39 0.81 +classées classé adj f p 4.75 2.70 0.98 0.34 +classés classer ver m p 12.11 12.70 0.58 0.81 par:pas; +clathres clathre nom m p 0.00 0.14 0.00 0.14 +claude claude nom s 0.01 2.64 0.01 2.64 +claudicant claudicant adj m s 0.01 0.54 0.00 0.20 +claudicante claudicant adj f s 0.01 0.54 0.01 0.27 +claudicants claudicant adj m p 0.01 0.54 0.00 0.07 +claudication claudication nom f s 0.07 0.68 0.07 0.68 +claudiquait claudiquer ver 0.08 0.88 0.00 0.14 ind:imp:3s; +claudiquant claudiquer ver 0.08 0.88 0.01 0.68 par:pre; +claudique claudiquer ver 0.08 0.88 0.05 0.00 imp:pre:2s;ind:pre:1s; +claudiquer claudiquer ver 0.08 0.88 0.01 0.00 inf; +claudiquerait claudiquer ver 0.08 0.88 0.00 0.07 cnd:pre:3s; +claudiquerez claudiquer ver 0.08 0.88 0.01 0.00 ind:fut:2p; +claudélienne claudélien adj f s 0.00 0.07 0.00 0.07 +clause clause nom f s 3.47 1.89 2.94 1.01 +clauses clause nom f p 3.47 1.89 0.53 0.88 +clausewitziens clausewitzien adj m p 0.00 0.07 0.00 0.07 +claustrait claustrer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +claustrale claustral adj f s 0.00 0.07 0.00 0.07 +claustration claustration nom f s 0.02 1.01 0.02 1.01 +claustrophobe claustrophobe adj m s 0.90 0.07 0.90 0.07 +claustrophobie claustrophobie nom f s 0.26 0.07 0.26 0.07 +claustrée claustrer ver f s 0.00 0.20 0.00 0.14 par:pas; +clavaire clavaire nom f s 0.00 0.20 0.00 0.07 +clavaires clavaire nom f p 0.00 0.20 0.00 0.14 +claveaux claveau nom m p 0.00 0.14 0.00 0.14 +clavecin clavecin nom m s 0.75 2.43 0.75 2.30 +claveciniste claveciniste nom s 0.00 0.20 0.00 0.20 +clavecins clavecin nom m p 0.75 2.43 0.00 0.14 +clavette clavette nom f s 0.01 0.00 0.01 0.00 +clavicule clavicule nom f s 1.96 1.28 1.74 0.68 +clavicules clavicule nom f p 1.96 1.28 0.22 0.61 +clavier clavier nom m s 1.77 3.58 1.62 3.24 +claviers clavier nom m p 1.77 3.58 0.15 0.34 +clayettes clayette nom f p 0.00 0.07 0.00 0.07 +claymore claymore nom f s 0.20 0.00 0.20 0.00 +clayon clayon nom m s 0.00 0.14 0.00 0.07 +clayonnage clayonnage nom m s 0.01 0.20 0.01 0.07 +clayonnages clayonnage nom m p 0.01 0.20 0.00 0.14 +clayonnée clayonner ver f s 0.00 0.27 0.00 0.27 par:pas; +clayons clayon nom m p 0.00 0.14 0.00 0.07 +clean clean adj 4.66 0.74 4.66 0.74 +clearing clearing nom m s 0.04 0.00 0.04 0.00 +clebs clebs nom m 2.00 3.11 2.00 3.11 +clef clef nom f s 24.32 44.86 14.61 35.61 +clefs clef nom f p 24.32 44.86 9.72 9.26 +clenche clenche nom f s 0.00 0.47 0.00 0.41 +clenches clenche nom f p 0.00 0.47 0.00 0.07 +clepsydre clepsydre nom f s 0.00 1.62 0.00 1.62 +cleptomane cleptomane nom s 0.09 0.00 0.09 0.00 +cleptomanie cleptomanie nom f s 0.02 0.00 0.02 0.00 +clerc clerc nom m s 0.82 9.26 0.73 5.68 +clercs clerc nom m p 0.82 9.26 0.09 3.58 +clergeon clergeon nom m s 0.00 0.14 0.00 0.14 +clergé clergé nom m s 2.08 3.99 2.07 3.78 +clergés clergé nom m p 2.08 3.99 0.01 0.20 +clergyman clergyman nom m s 0.05 0.81 0.05 0.61 +clergymen clergyman nom m p 0.05 0.81 0.00 0.20 +clermontois clermontois nom m 0.00 0.14 0.00 0.14 +clermontoise clermontois adj f s 0.00 0.07 0.00 0.07 +clic_clac clic_clac ono 0.10 0.07 0.10 0.07 +clic clic ono 0.20 0.81 0.20 0.81 +clichage clichage nom m s 0.00 0.07 0.00 0.07 +clicher clicher ver 0.60 0.27 0.01 0.07 inf; +clicherie clicherie nom f s 0.00 0.27 0.00 0.27 +clicheur clicheur nom m s 0.00 0.07 0.00 0.07 +cliché cliché nom m s 7.59 11.96 3.69 5.34 +clichée cliché adj f s 1.20 0.54 0.00 0.07 +clichés cliché nom m p 7.59 11.96 3.89 6.62 +click click nom m s 0.40 0.00 0.40 0.00 +clics clic nom m p 1.17 1.08 0.22 0.20 +client_roi client_roi nom m s 0.00 0.07 0.00 0.07 +client client nom m s 112.12 81.55 53.63 28.78 +cliente client nom f s 112.12 81.55 9.22 6.89 +clientes client nom f p 112.12 81.55 2.24 4.26 +clients client nom m p 112.12 81.55 47.03 41.62 +clientèle clientèle nom f s 3.88 18.78 3.87 18.51 +clientèles clientèle nom f p 3.88 18.78 0.01 0.27 +cligna cligner ver 2.80 18.85 0.02 3.04 ind:pas:3s; +clignaient cligner ver 2.80 18.85 0.16 0.68 ind:imp:3p; +clignais cligner ver 2.80 18.85 0.00 0.27 ind:imp:1s; +clignait cligner ver 2.80 18.85 0.14 1.62 ind:imp:3s; +clignant cligner ver 2.80 18.85 0.22 5.68 par:pre; +cligne cligner ver 2.80 18.85 0.95 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clignement clignement nom m s 0.14 2.03 0.11 1.22 +clignements clignement nom m p 0.14 2.03 0.03 0.81 +clignent cligner ver 2.80 18.85 0.31 0.41 ind:pre:3p; +cligner cligner ver 2.80 18.85 0.47 2.77 inf; +clignez cligner ver 2.80 18.85 0.16 0.00 imp:pre:2p;ind:pre:2p; +clignons cligner ver 2.80 18.85 0.00 0.07 ind:pre:1p; +clignota clignoter ver 1.57 5.68 0.00 0.20 ind:pas:3s; +clignotaient clignoter ver 1.57 5.68 0.00 1.62 ind:imp:3p; +clignotait clignoter ver 1.57 5.68 0.08 0.61 ind:imp:3s; +clignotant clignotant nom m s 1.00 1.35 0.97 1.01 +clignotante clignotant adj f s 1.06 2.77 0.07 0.74 +clignotantes clignotant adj f p 1.06 2.77 0.05 0.61 +clignotants clignotant adj m p 1.06 2.77 0.18 0.81 +clignote clignoter ver 1.57 5.68 0.61 0.88 imp:pre:2s;ind:pre:3s; +clignotement clignotement nom m s 0.07 1.49 0.07 0.81 +clignotements clignotement nom m p 0.07 1.49 0.00 0.68 +clignotent clignoter ver 1.57 5.68 0.49 1.01 ind:pre:3p; +clignoter clignoter ver 1.57 5.68 0.16 0.54 inf; +clignotera clignoter ver 1.57 5.68 0.01 0.00 ind:fut:3s; +clignoterait clignoter ver 1.57 5.68 0.00 0.07 cnd:pre:3s; +clignoteur clignoteur nom m s 0.00 0.07 0.00 0.07 +clignotèrent clignoter ver 1.57 5.68 0.00 0.14 ind:pas:3p; +clignoté clignoter ver m s 1.57 5.68 0.04 0.14 par:pas; +clignèrent cligner ver 2.80 18.85 0.00 0.34 ind:pas:3p; +cligné cligner ver m s 2.80 18.85 0.38 1.15 par:pas; +clignées cligner ver f p 2.80 18.85 0.00 0.14 par:pas; +clignés cligner ver m p 2.80 18.85 0.00 0.20 par:pas; +clilles clille nom p 0.00 0.27 0.00 0.27 +climat climat nom m s 7.21 18.99 6.64 17.16 +climatique climatique adj s 0.51 0.27 0.26 0.07 +climatiques climatique adj p 0.51 0.27 0.25 0.20 +climatisant climatiser ver 0.39 0.41 0.00 0.07 par:pre; +climatisation climatisation nom f s 1.79 0.20 1.79 0.20 +climatiser climatiser ver 0.39 0.41 0.01 0.00 inf; +climatiseur climatiseur nom m s 0.85 0.20 0.78 0.14 +climatiseurs climatiseur nom m p 0.85 0.20 0.07 0.07 +climatisé climatisé adj m s 0.37 0.47 0.29 0.27 +climatisée climatiser ver f s 0.39 0.41 0.20 0.20 par:pas; +climatisées climatisé adj f p 0.37 0.47 0.02 0.07 +climatisés climatisé adj m p 0.37 0.47 0.01 0.07 +climatologue climatologue nom s 0.02 0.00 0.02 0.00 +climats climat nom m p 7.21 18.99 0.57 1.82 +climatériques climatérique adj f p 0.00 0.07 0.00 0.07 +climax climax nom m 0.18 0.07 0.18 0.07 +clin_d_oeil clin_d_oeil nom m s 0.01 0.00 0.01 0.00 +clin clin nom m s 3.97 19.46 3.63 16.55 +clinche clinche nom f s 0.00 0.07 0.00 0.07 +clinicat clinicat nom m s 0.07 0.00 0.07 0.00 +clinicien clinicien nom m s 0.05 0.20 0.01 0.20 +clinicienne clinicien nom f s 0.05 0.20 0.01 0.00 +cliniciens clinicien nom m p 0.05 0.20 0.03 0.00 +clinique clinique nom f s 18.79 11.82 17.72 10.81 +cliniquement cliniquement adv 0.92 0.14 0.92 0.14 +cliniques clinique nom f p 18.79 11.82 1.06 1.01 +clinker clinker nom m s 0.14 0.00 0.14 0.00 +clinquant clinquant adj m s 0.34 1.76 0.07 0.47 +clinquante clinquant adj f s 0.34 1.76 0.06 0.34 +clinquantes clinquant adj f p 0.34 1.76 0.16 0.34 +clinquants clinquant adj m p 0.34 1.76 0.05 0.61 +clins clin nom m p 3.97 19.46 0.34 2.91 +clip clip nom m s 2.98 1.28 2.12 0.61 +clipper clipper nom m s 0.50 0.20 0.40 0.20 +clippers clipper nom m p 0.50 0.20 0.09 0.00 +clips clip nom m p 2.98 1.28 0.86 0.68 +cliquant cliquer ver 0.68 0.00 0.02 0.00 par:pre; +clique clique nom f s 2.78 3.11 2.41 2.84 +cliquer cliquer ver 0.68 0.00 0.27 0.00 inf; +cliques clique nom f p 2.78 3.11 0.37 0.27 +cliquet cliquet nom m s 0.16 0.07 0.02 0.07 +cliqueta cliqueter ver 0.69 3.11 0.00 0.14 ind:pas:3s; +cliquetaient cliqueter ver 0.69 3.11 0.02 0.68 ind:imp:3p; +cliquetait cliqueter ver 0.69 3.11 0.00 0.54 ind:imp:3s; +cliquetant cliqueter ver 0.69 3.11 0.03 0.34 par:pre; +cliquetante cliquetant adj f s 0.00 0.95 0.00 0.34 +cliquetantes cliquetant adj f p 0.00 0.95 0.00 0.20 +cliquetants cliquetant adj m p 0.00 0.95 0.00 0.14 +cliqueter cliqueter ver 0.69 3.11 0.19 0.81 inf; +cliquetis cliquetis nom m 0.38 8.04 0.38 8.04 +cliquets cliquet nom m p 0.16 0.07 0.14 0.00 +cliquette cliqueter ver 0.69 3.11 0.04 0.47 ind:pre:1s;ind:pre:3s; +cliquettement cliquettement nom m s 0.00 0.07 0.00 0.07 +cliquettent cliqueter ver 0.69 3.11 0.41 0.14 ind:pre:3p; +cliquettes cliquette nom f p 0.00 0.07 0.00 0.07 +cliquez cliquer ver 0.68 0.00 0.28 0.00 imp:pre:2p;ind:pre:2p; +cliquètement cliquètement nom m s 0.00 0.27 0.00 0.20 +cliquètements cliquètement nom m p 0.00 0.27 0.00 0.07 +cliqué cliquer ver m s 0.68 0.00 0.10 0.00 par:pas; +clissées clisser ver f p 0.00 0.07 0.00 0.07 par:pas; +clito clito nom m s 0.36 0.41 0.36 0.41 +clitoridectomie clitoridectomie nom f s 0.03 0.00 0.03 0.00 +clitoridien clitoridien adj m s 0.04 0.41 0.04 0.07 +clitoridienne clitoridien adj f s 0.04 0.41 0.00 0.34 +clitoris clitoris nom m 1.28 0.41 1.28 0.41 +clivage clivage nom m s 0.02 0.61 0.01 0.27 +clivages clivage nom m p 0.02 0.61 0.01 0.34 +cliver cliver ver 0.01 0.00 0.01 0.00 inf; +clivés clivé adj m p 0.03 0.00 0.03 0.00 +cloîtra cloîtrer ver 0.80 2.09 0.00 0.07 ind:pas:3s; +cloîtrai cloîtrer ver 0.80 2.09 0.00 0.07 ind:pas:1s; +cloîtraient cloîtrer ver 0.80 2.09 0.00 0.14 ind:imp:3p; +cloîtrait cloîtrer ver 0.80 2.09 0.00 0.14 ind:imp:3s; +cloîtrant cloîtrer ver 0.80 2.09 0.01 0.00 par:pre; +cloître cloître nom m s 0.89 7.23 0.84 6.28 +cloîtrer cloîtrer ver 0.80 2.09 0.17 0.27 inf; +cloîtres cloître nom m p 0.89 7.23 0.05 0.95 +cloîtrâmes cloîtrer ver 0.80 2.09 0.01 0.00 ind:pas:1p; +cloîtré cloîtrer ver m s 0.80 2.09 0.22 0.54 par:pas; +cloîtrée cloîtrer ver f s 0.80 2.09 0.17 0.61 par:pas; +cloîtrées cloîtré adj f p 0.33 0.54 0.14 0.07 +cloîtrés cloîtrer ver m p 0.80 2.09 0.05 0.00 par:pas; +cloacal cloacal adj m s 0.00 0.07 0.00 0.07 +cloaque cloaque nom m s 0.75 1.89 0.59 1.76 +cloaques cloaque nom m p 0.75 1.89 0.16 0.14 +cloc cloc nom m s 0.00 0.07 0.00 0.07 +clochaient clocher ver 8.93 2.97 0.00 0.07 ind:imp:3p; +clochait clocher ver 8.93 2.97 0.93 1.08 ind:imp:3s; +clochant clocher ver 8.93 2.97 0.00 0.27 par:pre; +clochard clochard nom m s 3.88 10.88 2.40 5.27 +clocharde clochard nom f s 3.88 10.88 0.32 1.15 +clochardes clochard nom f p 3.88 10.88 0.18 0.00 +clochardisait clochardiser ver 0.00 0.34 0.00 0.07 ind:imp:3s; +clochardisation clochardisation nom f s 0.01 0.20 0.01 0.20 +clochardiser clochardiser ver 0.00 0.34 0.00 0.20 inf; +clochardisé clochardiser ver m s 0.00 0.34 0.00 0.07 par:pas; +clochards clochard nom m p 3.88 10.88 0.98 4.46 +cloche_pied cloche_pied nom f s 0.01 0.14 0.01 0.14 +cloche cloche nom f s 19.72 34.59 9.01 18.24 +clochent clocher ver 8.93 2.97 0.15 0.00 ind:pre:3p; +clocher clocher nom m s 2.38 13.65 1.87 11.01 +clochers clocher nom m p 2.38 13.65 0.51 2.64 +cloches cloche nom f p 19.72 34.59 10.71 16.35 +clocheton clocheton nom m s 0.00 2.09 0.00 0.88 +clochetons clocheton nom m p 0.00 2.09 0.00 1.22 +clochette clochette nom f s 3.43 5.74 2.57 2.50 +clochettes clochette nom f p 3.43 5.74 0.86 3.24 +clochât clocher ver 8.93 2.97 0.00 0.07 sub:imp:3s; +cloché clocher ver m s 8.93 2.97 0.03 0.00 par:pas; +clodo clodo nom m s 4.12 4.05 3.36 2.16 +clodos clodo nom m p 4.12 4.05 0.76 1.89 +cloison cloison nom f s 2.83 18.24 1.52 12.77 +cloisonnaient cloisonner ver 0.03 0.61 0.00 0.14 ind:imp:3p; +cloisonnais cloisonner ver 0.03 0.61 0.00 0.07 ind:imp:1s; +cloisonnant cloisonner ver 0.03 0.61 0.00 0.07 par:pre; +cloisonne cloisonner ver 0.03 0.61 0.01 0.00 ind:pre:3s; +cloisonnement cloisonnement nom m s 0.01 0.68 0.01 0.47 +cloisonnements cloisonnement nom m p 0.01 0.68 0.00 0.20 +cloisonner cloisonner ver 0.03 0.61 0.00 0.07 inf; +cloisonné cloisonné adj m s 0.16 0.68 0.01 0.41 +cloisonnée cloisonné adj f s 0.16 0.68 0.14 0.00 +cloisonnées cloisonné adj f p 0.16 0.68 0.01 0.07 +cloisonnés cloisonner ver m p 0.03 0.61 0.01 0.14 par:pas; +cloisons cloison nom f p 2.83 18.24 1.31 5.47 +clonage clonage nom m s 1.05 0.07 1.05 0.07 +clonant cloner ver 1.31 0.00 0.01 0.00 par:pre; +clone clone nom m s 3.49 0.20 2.48 0.07 +clonent cloner ver 1.31 0.00 0.04 0.00 ind:pre:3p; +cloner cloner ver 1.31 0.00 0.63 0.00 inf; +clones clone nom m p 3.49 0.20 1.01 0.14 +clonique clonique adj f s 0.01 0.00 0.01 0.00 +cloné cloner ver m s 1.31 0.00 0.46 0.00 par:pas; +clonés cloner ver m p 1.31 0.00 0.09 0.00 par:pas; +clopais cloper ver 0.07 0.74 0.01 0.00 ind:imp:1s; +clopant cloper ver 0.07 0.74 0.00 0.14 par:pre; +clope clope nom s 11.94 4.93 7.87 2.50 +cloper cloper ver 0.07 0.74 0.03 0.34 inf; +clopes clope nom p 11.94 4.93 4.08 2.43 +clopeur clopeur nom m s 0.00 0.07 0.00 0.07 +clopin_clopant clopin_clopant adv 0.00 0.14 0.00 0.14 +clopina clopiner ver 0.12 1.01 0.00 0.14 ind:pas:3s; +clopinait clopiner ver 0.12 1.01 0.02 0.27 ind:imp:3s; +clopinant clopiner ver 0.12 1.01 0.05 0.41 par:pre; +clopine clopiner ver 0.12 1.01 0.02 0.07 ind:pre:3s; +clopinements clopinement nom m p 0.00 0.07 0.00 0.07 +clopiner clopiner ver 0.12 1.01 0.01 0.07 inf; +clopinettes clopinettes nom f p 0.94 0.27 0.94 0.27 +clopinez clopiner ver 0.12 1.01 0.02 0.00 imp:pre:2p;ind:pre:2p; +clopinâmes clopiner ver 0.12 1.01 0.00 0.07 ind:pas:1p; +cloporte cloporte nom m s 0.70 2.97 0.13 1.55 +cloportes cloporte nom m p 0.70 2.97 0.57 1.42 +cloquait cloquer ver 0.00 3.99 0.00 0.20 ind:imp:3s; +cloquant cloquer ver 0.00 3.99 0.00 0.07 par:pre; +cloque cloque nom f s 1.43 3.45 1.14 1.89 +cloquent cloquer ver 0.00 3.99 0.00 0.07 ind:pre:3p; +cloquer cloquer ver 0.00 3.99 0.00 0.74 inf; +cloques cloque nom f p 1.43 3.45 0.28 1.55 +cloqué cloquer ver m s 0.00 3.99 0.00 1.35 par:pas; +cloquée cloquer ver f s 0.00 3.99 0.00 0.34 par:pas; +cloquées cloquer ver f p 0.00 3.99 0.00 0.07 par:pas; +cloqués cloqué adj m p 0.00 0.27 0.00 0.14 +clora clore ver 7.75 31.28 0.01 0.00 ind:fut:3s; +clore clore ver 7.75 31.28 1.42 2.57 inf; +clos clore ver m 7.75 31.28 3.70 21.96 imp:pre:2s;ind:pre:1s;par:pas;par:pas; +close_combat close_combat nom m s 0.04 0.07 0.04 0.07 +close_up close_up nom m s 0.01 0.07 0.01 0.07 +close clore ver f s 7.75 31.28 2.26 3.24 par:pas;par:pas;sub:pre:1s;sub:pre:3s; +closent clore ver 7.75 31.28 0.00 0.14 ind:pre:3p; +closerie closerie nom f s 0.01 0.81 0.01 0.81 +closes clos adj f p 4.62 19.46 1.90 7.43 +clou clou nom m s 13.83 27.50 7.79 10.20 +cloua clouer ver 7.51 19.39 0.14 1.35 ind:pas:3s; +clouage clouage nom m s 0.00 0.07 0.00 0.07 +clouai clouer ver 7.51 19.39 0.00 0.20 ind:pas:1s; +clouaient clouer ver 7.51 19.39 0.23 0.54 ind:imp:3p; +clouait clouer ver 7.51 19.39 0.18 2.09 ind:imp:3s; +clouant clouer ver 7.51 19.39 0.15 0.61 par:pre; +cloue clouer ver 7.51 19.39 1.12 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clouent clouer ver 7.51 19.39 0.04 0.47 ind:pre:3p; +clouer clouer ver 7.51 19.39 1.39 2.64 inf; +clouera clouer ver 7.51 19.39 0.04 0.00 ind:fut:3s; +clouerai clouer ver 7.51 19.39 0.07 0.00 ind:fut:1s; +cloueraient clouer ver 7.51 19.39 0.01 0.07 cnd:pre:3p; +clouerait clouer ver 7.51 19.39 0.14 0.14 cnd:pre:3s; +cloueras clouer ver 7.51 19.39 0.00 0.07 ind:fut:2s; +clouerez clouer ver 7.51 19.39 0.01 0.00 ind:fut:2p; +cloueur cloueur nom m s 0.16 0.07 0.00 0.07 +cloueuse cloueur nom f s 0.16 0.07 0.16 0.00 +clouez clouer ver 7.51 19.39 0.22 0.07 imp:pre:2p;ind:pre:2p; +clouions clouer ver 7.51 19.39 0.00 0.07 ind:imp:1p; +clouons clouer ver 7.51 19.39 0.03 0.00 imp:pre:1p;ind:pre:1p; +clous clou nom m p 13.83 27.50 6.04 17.30 +cloutage cloutage nom m s 0.00 0.07 0.00 0.07 +clouèrent clouer ver 7.51 19.39 0.00 0.14 ind:pas:3p; +cloutier cloutier nom m s 0.62 0.00 0.62 0.00 +clouté clouté adj m s 0.80 3.78 0.29 1.62 +cloutée clouté adj f s 0.80 3.78 0.05 0.34 +cloutées clouté adj f p 0.80 3.78 0.14 0.54 +cloutés clouté adj m p 0.80 3.78 0.31 1.28 +cloué clouer ver m s 7.51 19.39 2.40 5.54 par:pas; +clouée clouer ver f s 7.51 19.39 0.53 2.84 par:pas; +clouées clouer ver f p 7.51 19.39 0.32 0.61 par:pas; +cloués clouer ver m p 7.51 19.39 0.49 0.74 par:pas; +clown clown nom m s 0.06 9.19 0.06 6.49 +clownerie clownerie nom f s 0.00 0.34 0.00 0.07 +clowneries clownerie nom f p 0.00 0.34 0.00 0.27 +clownesque clownesque adj s 0.10 0.41 0.10 0.34 +clownesques clownesque adj p 0.10 0.41 0.00 0.07 +clowns clown nom m p 0.06 9.19 0.00 2.70 +clé clé nom f s 118.13 48.58 68.73 35.00 +club_house club_house nom m s 0.05 0.07 0.05 0.07 +club club nom m s 67.51 21.42 61.99 18.58 +clébard clébard nom m s 1.65 4.19 1.27 2.91 +clébards clébard nom m p 1.65 4.19 0.38 1.28 +clubhouse clubhouse nom m s 0.05 0.00 0.05 0.00 +clubiste clubiste nom s 0.03 0.00 0.03 0.00 +clubman clubman nom m s 0.00 0.07 0.00 0.07 +clubs club nom m p 67.51 21.42 5.52 2.84 +clématite clématite nom f s 0.14 0.68 0.14 0.14 +clématites clématite nom f p 0.14 0.68 0.00 0.54 +clémence clémence nom f s 3.44 2.43 3.44 2.43 +clément clément adj m s 3.36 3.18 2.50 1.96 +clémente clément adj f s 3.36 3.18 0.47 0.88 +clémentes clément adj f p 3.36 3.18 0.07 0.14 +clémentine clémentine nom f s 0.02 0.00 0.02 0.00 +cléments clément adj m p 3.36 3.18 0.33 0.20 +clunisien clunisien adj m s 0.00 0.07 0.00 0.07 +clérical clérical adj m s 0.04 1.01 0.01 0.54 +cléricale clérical adj f s 0.04 1.01 0.01 0.20 +cléricales clérical adj f p 0.04 1.01 0.01 0.14 +cléricalisme cléricalisme nom m s 0.00 0.20 0.00 0.20 +cléricature cléricature nom f s 0.00 0.07 0.00 0.07 +cléricaux clérical adj m p 0.04 1.01 0.00 0.14 +clés clé nom f p 118.13 48.58 49.40 13.58 +cluse cluse nom f s 0.00 0.14 0.00 0.07 +cluses cluse nom f p 0.00 0.14 0.00 0.07 +cluster cluster nom m s 0.03 0.00 0.03 0.00 +clystère clystère nom m s 0.14 0.20 0.14 0.07 +clystères clystère nom m p 0.14 0.20 0.00 0.14 +cm cm nom m 10.89 1.01 10.89 1.01 +co_animateur co_animateur nom m s 0.03 0.00 0.03 0.00 +co_auteur co_auteur nom m s 0.46 0.00 0.46 0.00 +co_avocat co_avocat nom m s 0.01 0.00 0.01 0.00 +co_capitaine co_capitaine nom m s 0.09 0.00 0.09 0.00 +co_dépendance co_dépendance nom f s 0.01 0.00 0.01 0.00 +co_dépendant co_dépendant adj f s 0.01 0.00 0.01 0.00 +co_existence co_existence nom f s 0.00 0.07 0.00 0.07 +co_exister co_exister ver 0.05 0.00 0.05 0.00 inf; +co_habiter co_habiter ver 0.02 0.00 0.02 0.00 inf; +co_locataire co_locataire nom s 0.22 0.00 0.22 0.00 +co_pilote co_pilote nom s 0.49 0.00 0.49 0.00 +co_pilote co_pilote adj p 0.28 0.00 0.01 0.00 +co_production co_production nom f s 0.11 0.00 0.01 0.00 +co_production co_production nom f p 0.11 0.00 0.10 0.00 +co_proprio co_proprio nom m s 0.01 0.07 0.01 0.00 +co_proprio co_proprio nom m p 0.01 0.07 0.00 0.07 +co_propriétaire co_propriétaire nom s 0.19 0.27 0.05 0.00 +co_propriétaire co_propriétaire nom p 0.19 0.27 0.14 0.27 +co_propriété co_propriété nom f s 0.00 0.34 0.00 0.34 +co_président co_président nom m s 0.02 0.07 0.02 0.07 +co_responsable co_responsable adj s 0.01 0.07 0.01 0.07 +co_signer co_signer ver 0.07 0.00 0.07 0.00 inf; +cosigner cosigner ver 0.32 0.00 0.01 0.00 ind:pre:1p; +co_tuteur co_tuteur nom m s 0.00 0.07 0.00 0.07 +co_éducatif co_éducatif adj f s 0.01 0.00 0.01 0.00 +co_équipier co_équipier nom m s 0.21 0.00 0.21 0.00 +coéquipier coéquipier nom f s 4.20 0.47 0.06 0.00 +co_vedette co_vedette nom f s 0.02 0.00 0.02 0.00 +co_voiturage co_voiturage nom m s 0.07 0.00 0.07 0.00 +co co adv 0.14 0.00 0.14 0.00 +coïncida coïncider ver 1.93 7.09 0.11 0.54 ind:pas:3s; +coïncidaient coïncider ver 1.93 7.09 0.01 0.27 ind:imp:3p; +coïncidais coïncider ver 1.93 7.09 0.00 0.07 ind:imp:1s; +coïncidait coïncider ver 1.93 7.09 0.07 1.62 ind:imp:3s; +coïncidant coïncider ver 1.93 7.09 0.03 0.47 par:pre; +coïncidassent coïncider ver 1.93 7.09 0.00 0.07 sub:imp:3p; +coïncide coïncider ver 1.93 7.09 0.78 1.22 imp:pre:2s;ind:pre:3s; +coïncidence coïncidence nom f s 18.04 7.16 15.95 5.61 +coïncidences coïncidence nom f p 18.04 7.16 2.09 1.55 +coïncident coïncider ver 1.93 7.09 0.44 0.47 ind:pre:3p; +coïncider coïncider ver 1.93 7.09 0.32 1.35 inf; +coïnciderait coïncider ver 1.93 7.09 0.01 0.20 cnd:pre:3s; +coïncidions coïncider ver 1.93 7.09 0.00 0.07 ind:imp:1p; +coïncidât coïncider ver 1.93 7.09 0.00 0.07 sub:imp:3s; +coïncidèrent coïncider ver 1.93 7.09 0.00 0.20 ind:pas:3p; +coïncidé coïncider ver m s 1.93 7.09 0.15 0.47 par:pas; +coït coït nom m s 0.83 3.38 0.81 2.84 +coïts coït nom m p 0.83 3.38 0.03 0.54 +coïté coïter ver m s 0.00 0.07 0.00 0.07 par:pas; +coût coût nom m s 5.04 1.35 3.58 1.22 +coûta coûter ver 83.14 48.11 0.05 1.22 ind:pas:3s; +coûtaient coûter ver 83.14 48.11 0.37 1.35 ind:imp:3p; +coûtais coûter ver 83.14 48.11 0.00 0.14 ind:imp:1s; +coûtait coûter ver 83.14 48.11 0.86 6.35 ind:imp:3s; +coûtant coûtant adj m s 0.11 0.07 0.11 0.07 +coûte coûter ver 83.14 48.11 38.84 20.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coûtent coûter ver 83.14 48.11 5.35 1.76 ind:pre:3p; +coûter coûter ver 83.14 48.11 12.58 5.27 inf; +coûtera coûter ver 83.14 48.11 7.11 1.82 ind:fut:3s; +coûterai coûter ver 83.14 48.11 0.02 0.07 ind:fut:1s; +coûteraient coûter ver 83.14 48.11 0.06 0.07 cnd:pre:3p; +coûterait coûter ver 83.14 48.11 2.29 2.30 cnd:pre:3s; +coûteras coûter ver 83.14 48.11 0.01 0.00 ind:fut:2s; +coûteront coûter ver 83.14 48.11 0.41 0.20 ind:fut:3p; +coûtes coûter ver 83.14 48.11 0.44 0.00 ind:pre:2s; +coûteuse coûteux adj f s 3.09 5.07 1.23 1.22 +coûteusement coûteusement adv 0.00 0.07 0.00 0.07 +coûteuses coûteux adj f p 3.09 5.07 0.26 0.81 +coûteux coûteux adj m 3.09 5.07 1.60 3.04 +coûtez coûter ver 83.14 48.11 0.20 0.07 ind:pre:2p; +coûtions coûter ver 83.14 48.11 0.00 0.07 ind:imp:1p; +coûtât coûter ver 83.14 48.11 0.00 0.47 sub:imp:3s; +coûts coût nom m p 5.04 1.35 1.46 0.14 +coûté coûter ver m s 83.14 48.11 14.35 6.15 par:pas; +coûtée coûter ver f s 83.14 48.11 0.01 0.07 par:pas; +coûtées coûter ver f p 83.14 48.11 0.01 0.07 par:pas; +coûtés coûter ver m p 83.14 48.11 0.12 0.07 par:pas; +coaccusé coaccusé nom m s 0.04 0.00 0.04 0.00 +coaccusés coaccusé nom m p 0.04 0.00 0.01 0.00 +coach coach nom m s 7.37 0.00 7.33 0.00 +coache coacher ver 0.23 0.00 0.01 0.00 ind:pre:3s; +coacher coacher ver 0.23 0.00 0.10 0.00 inf; +coaches coache nom m p 0.04 0.00 0.04 0.00 +coachs coach nom m p 7.37 0.00 0.04 0.00 +coaché coacher ver m s 0.23 0.00 0.12 0.00 par:pas; +coactionnaires coactionnaire nom p 0.01 0.00 0.01 0.00 +coadjuteur coadjuteur nom m s 0.00 0.07 0.00 0.07 +coagula coaguler ver 0.51 2.64 0.01 0.07 ind:pas:3s; +coagulaient coaguler ver 0.51 2.64 0.00 0.07 ind:imp:3p; +coagulait coaguler ver 0.51 2.64 0.01 0.34 ind:imp:3s; +coagulant coagulant adj m s 0.03 0.07 0.03 0.00 +coagulantes coagulant adj f p 0.03 0.07 0.00 0.07 +coagulants coagulant nom m p 0.15 0.07 0.14 0.00 +coagulation coagulation nom f s 0.33 0.27 0.33 0.27 +coagule coaguler ver 0.51 2.64 0.15 0.14 ind:pre:3s; +coagulent coaguler ver 0.51 2.64 0.00 0.14 ind:pre:3p; +coaguler coaguler ver 0.51 2.64 0.19 0.27 inf; +coagulera coaguler ver 0.51 2.64 0.01 0.00 ind:fut:3s; +coagulât coaguler ver 0.51 2.64 0.00 0.07 sub:imp:3s; +coagulé coaguler ver m s 0.51 2.64 0.13 0.81 par:pas; +coagulée coaguler ver f s 0.51 2.64 0.00 0.27 par:pas; +coagulées coaguler ver f p 0.51 2.64 0.00 0.07 par:pas; +coagulés coaguler ver m p 0.51 2.64 0.01 0.20 par:pas; +coalisaient coaliser ver 0.00 0.47 0.00 0.14 ind:imp:3p; +coalisent coaliser ver 0.00 0.47 0.00 0.07 ind:pre:3p; +coaliser coaliser ver 0.00 0.47 0.00 0.07 inf; +coalisée coaliser ver f s 0.00 0.47 0.00 0.07 par:pas; +coalisés coalisé nom m p 0.00 0.34 0.00 0.34 +coalition coalition nom f s 1.34 3.45 1.29 3.11 +coalitions coalition nom f p 1.34 3.45 0.05 0.34 +coaltar coaltar nom m s 0.00 0.20 0.00 0.20 +coassaient coasser ver 0.13 0.61 0.00 0.20 ind:imp:3p; +coassant coasser ver 0.13 0.61 0.01 0.14 par:pre; +coasse coasser ver 0.13 0.61 0.10 0.00 ind:pre:3s; +coassement coassement nom m s 0.14 0.41 0.01 0.34 +coassements coassement nom m p 0.14 0.41 0.14 0.07 +coassent coasser ver 0.13 0.61 0.00 0.14 ind:pre:3p; +coasser coasser ver 0.13 0.61 0.02 0.14 inf; +coati coati nom m s 0.01 0.00 0.01 0.00 +coauteur coauteur nom m s 0.12 0.07 0.08 0.00 +coauteurs coauteur nom m p 0.12 0.07 0.04 0.07 +coaxial coaxial adj m s 0.14 0.00 0.13 0.00 +coaxiales coaxial adj f p 0.14 0.00 0.01 0.00 +cob cob nom m s 0.04 0.00 0.04 0.00 +cobalt cobalt nom m s 0.55 0.61 0.55 0.61 +cobaye cobaye nom m s 4.27 0.95 3.02 0.74 +cobayes cobaye nom m p 4.27 0.95 1.25 0.20 +cobelligérants cobelligérant nom m p 0.00 0.07 0.00 0.07 +câbla câbler ver 0.47 0.61 0.00 0.14 ind:pas:3s; +câblage câblage nom m s 0.44 0.00 0.42 0.00 +câblages câblage nom m p 0.44 0.00 0.02 0.00 +câblait câbler ver 0.47 0.61 0.00 0.07 ind:imp:3s; +câble câble nom m s 17.04 6.08 13.36 2.97 +câbler câbler ver 0.47 0.61 0.12 0.00 inf; +câblerais câbler ver 0.47 0.61 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +câblerie câblerie nom f s 0.02 0.00 0.02 0.00 +câbleront câbler ver 0.47 0.61 0.00 0.07 ind:fut:3p; +câbles câble nom m p 17.04 6.08 3.67 3.11 +câbleur câbleur nom m s 0.19 0.07 0.16 0.00 +câbleurs câbleur nom m p 0.19 0.07 0.02 0.07 +câblez câbler ver 0.47 0.61 0.02 0.07 imp:pre:2p; +câblier câblier nom m s 0.01 0.00 0.01 0.00 +câblogramme câblogramme nom m s 0.02 0.00 0.02 0.00 +câblé câbler ver m s 0.47 0.61 0.18 0.20 par:pas; +câblée câblé adj f s 0.25 0.07 0.07 0.00 +câblées câblé adj f p 0.25 0.07 0.08 0.00 +câblés câbler ver m p 0.47 0.61 0.04 0.00 par:pas; +cobol cobol nom m s 0.01 0.00 0.01 0.00 +cobra cobra nom m s 4.24 0.81 3.96 0.74 +cobras cobra nom m p 4.24 0.81 0.28 0.07 +coca_cola coca_cola nom m 0.41 1.01 0.41 1.01 +coca coca nom s 14.53 2.64 14.08 2.64 +cocaïne cocaïne nom f s 5.57 1.22 5.57 1.22 +cocaïnomane cocaïnomane nom s 0.08 0.07 0.08 0.07 +cocagne cocagne nom f s 0.56 0.81 0.56 0.74 +cocagnes cocagne nom f p 0.56 0.81 0.00 0.07 +cocard cocard nom m s 0.19 0.34 0.16 0.14 +cocardasse cocarder ver 0.00 0.20 0.00 0.07 sub:imp:1s; +cocarde cocarde nom f s 0.25 1.49 0.22 1.22 +cocarder cocarder ver 0.00 0.20 0.00 0.07 inf; +cocardes cocarde nom f p 0.25 1.49 0.03 0.27 +cocardier cocardier adj m s 0.02 0.41 0.01 0.14 +cocardiers cocardier adj m p 0.02 0.41 0.00 0.14 +cocardière cocardier adj f s 0.02 0.41 0.01 0.00 +cocardières cocardier adj f p 0.02 0.41 0.00 0.14 +cocards cocard nom m p 0.19 0.34 0.03 0.20 +cocardés cocarder ver m p 0.00 0.20 0.00 0.07 par:pas; +cocas coca nom p 14.53 2.64 0.45 0.00 +cocasse cocasse adj s 0.21 2.84 0.20 2.03 +cocassement cocassement adv 0.00 0.20 0.00 0.20 +cocasserie cocasserie nom f s 0.01 0.47 0.01 0.47 +cocasses cocasse adj p 0.21 2.84 0.01 0.81 +coccinelle coccinelle nom f s 1.33 1.82 1.15 1.35 +coccinelles coccinelle nom f p 1.33 1.82 0.18 0.47 +coccyx coccyx nom m 0.69 0.27 0.69 0.27 +cocha cocher ver 2.15 3.24 0.00 0.07 ind:pas:3s; +cochait cocher ver 2.15 3.24 0.01 0.27 ind:imp:3s; +cochant cocher ver 2.15 3.24 0.00 0.20 par:pre; +coche coche nom s 1.23 1.89 1.23 1.69 +cochelet cochelet nom m s 0.00 0.07 0.00 0.07 +cochenille cochenille nom f s 0.09 0.00 0.07 0.00 +cochenilles cochenille nom f p 0.09 0.00 0.01 0.00 +cocher cocher nom m s 2.50 5.27 2.10 4.12 +cocheras cocher ver 2.15 3.24 0.01 0.00 ind:fut:2s; +cochers cocher nom m p 2.50 5.27 0.41 1.15 +coches cocher ver 2.15 3.24 0.04 0.00 ind:pre:2s; +cochez cocher ver 2.15 3.24 0.12 0.00 imp:pre:2p;ind:pre:2p; +cochléaire cochléaire adj m s 0.17 0.00 0.04 0.00 +cochléaires cochléaire adj m p 0.17 0.00 0.14 0.00 +cochlée cochlée nom f s 0.01 0.00 0.01 0.00 +cochon cochon nom m s 31.09 21.42 21.67 12.70 +cochonceté cochonceté nom f s 0.24 0.20 0.01 0.00 +cochoncetés cochonceté nom f p 0.24 0.20 0.23 0.20 +cochonnaille cochonnaille nom f s 0.00 0.47 0.00 0.14 +cochonnailles cochonnaille nom f p 0.00 0.47 0.00 0.34 +cochonne cochon nom f s 31.09 21.42 0.92 0.68 +cochonner cochonner ver 0.07 0.41 0.02 0.00 inf; +cochonnerie cochonnerie nom f s 5.25 4.05 1.22 1.01 +cochonneries cochonnerie nom f p 5.25 4.05 4.03 3.04 +cochonnes cochon adj f p 7.76 5.88 0.87 0.47 +cochonnet cochonnet nom m s 0.76 0.61 0.53 0.34 +cochonnets cochonnet nom m p 0.76 0.61 0.22 0.27 +cochonnez cochonner ver 0.07 0.41 0.00 0.07 ind:pre:2p; +cochonné cochonner ver m s 0.07 0.41 0.01 0.20 par:pas; +cochonnée cochonnée nom f s 0.01 0.00 0.01 0.00 +cochonnées cochonner ver f p 0.07 0.41 0.00 0.07 par:pas; +cochons cochon nom m p 31.09 21.42 8.50 7.91 +cochât cocher ver 2.15 3.24 0.00 0.07 sub:imp:3s; +cochère cocher adj f s 0.45 6.28 0.45 5.14 +cochères cocher adj f p 0.45 6.28 0.00 1.15 +coché cocher ver m s 2.15 3.24 0.41 0.41 par:pas; +cochée cocher ver f s 2.15 3.24 0.01 0.00 par:pas; +cochées cocher ver f p 2.15 3.24 0.05 0.07 par:pas; +cochés cocher ver m p 2.15 3.24 0.01 0.00 par:pas; +cochylis cochylis nom m 0.00 0.07 0.00 0.07 +cocker cocker nom m s 0.47 1.08 0.47 1.08 +cockney cockney nom m s 0.24 0.14 0.13 0.14 +cockneys cockney nom m p 0.24 0.14 0.11 0.00 +cockpit cockpit nom m s 1.93 0.88 1.93 0.88 +cocktail cocktail nom m s 10.27 9.59 6.62 5.68 +cocktails cocktail nom m p 10.27 9.59 3.65 3.92 +coco coco nom s 8.58 7.77 6.74 6.08 +cocolait cocoler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +cocole cocoler ver 0.00 0.14 0.00 0.07 ind:pre:3s; +cocon cocon nom m s 1.65 3.24 1.07 2.91 +cocons cocon nom m p 1.65 3.24 0.58 0.34 +cocoon cocoon nom m s 0.09 0.00 0.09 0.00 +cocorico cocorico nom m s 1.27 1.01 1.27 0.81 +cocoricos cocorico nom m p 1.27 1.01 0.01 0.20 +cocos coco nom p 8.58 7.77 1.84 1.69 +cocotent cocoter ver 0.00 0.20 0.00 0.07 ind:pre:3p; +cocoter cocoter ver 0.00 0.20 0.00 0.07 inf; +cocoteraies cocoteraie nom f p 0.00 0.07 0.00 0.07 +cocoterait cocoter ver 0.00 0.20 0.00 0.07 cnd:pre:3s; +cocotier cocotier nom m s 0.73 2.43 0.39 0.54 +cocotiers cocotier nom m p 0.73 2.43 0.35 1.89 +cocotte_minute cocotte_minute nom f s 0.07 0.34 0.07 0.34 +cocotte cocotte nom f s 3.47 6.15 3.35 4.73 +cocottes cocotte nom f p 3.47 6.15 0.12 1.42 +coction coction nom f s 0.00 0.07 0.00 0.07 +cocu cocu nom m s 3.78 2.03 3.17 1.49 +cocuage cocuage nom m s 0.00 0.14 0.00 0.07 +cocuages cocuage nom m p 0.00 0.14 0.00 0.07 +cocue cocu adj f s 3.03 3.78 0.45 0.27 +cocues cocu adj f p 3.03 3.78 0.00 0.14 +cocufiant cocufier ver 0.14 0.41 0.01 0.00 par:pre; +cocufie cocufier ver 0.14 0.41 0.03 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cocufier cocufier ver 0.14 0.41 0.04 0.07 inf; +cocufiera cocufier ver 0.14 0.41 0.01 0.00 ind:fut:3s; +cocufié cocufier ver m s 0.14 0.41 0.05 0.14 par:pas; +cocus cocu nom m p 3.78 2.03 0.50 0.54 +coda coda nom f s 0.14 0.14 0.14 0.14 +codage codage nom m s 0.30 0.27 0.30 0.14 +codages codage nom m p 0.30 0.27 0.00 0.14 +codait coder ver 2.19 0.88 0.00 0.07 ind:imp:3s; +codante codant adj f s 0.01 0.00 0.01 0.00 +code_barre code_barre nom m s 0.07 0.00 0.07 0.00 +code_barres code_barres nom m 0.18 0.00 0.18 0.00 +code_clé code_clé nom m s 0.01 0.00 0.01 0.00 +code code nom m s 51.27 15.00 43.85 13.58 +coder coder ver 2.19 0.88 0.16 0.07 inf; +codes_clé codes_clé nom m p 0.01 0.00 0.01 0.00 +codes code nom m p 51.27 15.00 7.42 1.42 +codeur codeur nom m s 0.04 0.00 0.04 0.00 +codex codex nom m 0.62 0.14 0.62 0.14 +codicille codicille nom m s 0.05 0.27 0.05 0.14 +codicilles codicille nom m p 0.05 0.27 0.00 0.14 +codifia codifier ver 0.07 0.88 0.00 0.07 ind:pas:3s; +codifiait codifier ver 0.07 0.88 0.01 0.00 ind:imp:3s; +codifiant codifier ver 0.07 0.88 0.00 0.07 par:pre; +codification codification nom f s 0.15 0.07 0.15 0.07 +codifier codifier ver 0.07 0.88 0.01 0.07 inf; +codifièrent codifier ver 0.07 0.88 0.00 0.07 ind:pas:3p; +codifié codifier ver m s 0.07 0.88 0.01 0.27 par:pas; +codifiée codifier ver f s 0.07 0.88 0.03 0.27 par:pas; +codifiées codifier ver f p 0.07 0.88 0.01 0.07 par:pas; +codon codon nom m s 0.01 0.00 0.01 0.00 +codé codé adj m s 2.26 0.74 1.22 0.34 +codée codé adj f s 2.26 0.74 0.56 0.14 +codées coder ver f p 2.19 0.88 0.35 0.00 par:pas; +codéine codéine nom f s 0.21 0.07 0.21 0.07 +codés codé adj m p 2.26 0.74 0.34 0.20 +codétenu codétenu nom m s 0.17 0.20 0.13 0.07 +codétenus codétenu nom m p 0.17 0.20 0.05 0.14 +coefficient coefficient nom m s 0.99 1.22 0.81 1.08 +coefficients coefficient nom m p 0.99 1.22 0.18 0.14 +coelacanthe coelacanthe nom m s 0.06 0.07 0.06 0.07 +coeliaque coeliaque adj m s 0.01 0.00 0.01 0.00 +coentreprise coentreprise nom f s 0.03 0.00 0.03 0.00 +coenzyme coenzyme nom f s 0.03 0.00 0.03 0.00 +coercitif coercitif adj m s 0.01 0.20 0.00 0.07 +coercition coercition nom f s 0.48 0.14 0.48 0.14 +coercitive coercitif adj f s 0.01 0.20 0.01 0.14 +coeur_poumon coeur_poumon nom m p 0.03 0.07 0.03 0.07 +coeur coeur nom m s 239.97 400.74 224.98 380.07 +coeurs coeur nom m p 239.97 400.74 15.00 20.68 +coexistaient coexister ver 0.42 1.28 0.00 0.14 ind:imp:3p; +coexistait coexister ver 0.42 1.28 0.00 0.07 ind:imp:3s; +coexistant coexister ver 0.42 1.28 0.00 0.20 par:pre; +coexistants coexistant adj m p 0.01 0.14 0.01 0.14 +coexiste coexister ver 0.42 1.28 0.04 0.07 ind:pre:3s; +coexistence coexistence nom f s 0.49 0.41 0.49 0.41 +coexistent coexister ver 0.42 1.28 0.02 0.34 ind:pre:3p; +coexister coexister ver 0.42 1.28 0.29 0.41 inf; +coexisteront coexister ver 0.42 1.28 0.00 0.07 ind:fut:3p; +coexistez coexister ver 0.42 1.28 0.03 0.00 ind:pre:2p; +coexistons coexister ver 0.42 1.28 0.03 0.00 ind:pre:1p; +coexisté coexister ver m s 0.42 1.28 0.02 0.00 par:pas; +coffee_shop coffee_shop nom m s 0.10 0.00 0.10 0.00 +coffin coffin nom m s 0.33 0.00 0.33 0.00 +coffio coffio nom m s 0.01 0.74 0.01 0.61 +coffios coffio nom m p 0.01 0.74 0.00 0.14 +coffiot coffiot nom m s 0.00 0.34 0.00 0.14 +coffiots coffiot nom m p 0.00 0.34 0.00 0.20 +coffrage coffrage nom m s 0.01 0.88 0.01 0.81 +coffrages coffrage nom m p 0.01 0.88 0.00 0.07 +coffraient coffrer ver 7.75 0.68 0.01 0.00 ind:imp:3p; +coffrait coffrer ver 7.75 0.68 0.12 0.00 ind:imp:3s; +coffre_fort coffre_fort nom m s 4.62 3.92 4.17 3.24 +coffre coffre nom m s 39.35 29.32 35.97 25.14 +coffrent coffrer ver 7.75 0.68 0.23 0.00 ind:pre:3p; +coffrer coffrer ver 7.75 0.68 3.33 0.34 inf; +coffrera coffrer ver 7.75 0.68 0.05 0.00 ind:fut:3s; +coffrerai coffrer ver 7.75 0.68 0.03 0.00 ind:fut:1s; +coffrerais coffrer ver 7.75 0.68 0.01 0.00 cnd:pre:1s; +coffrerons coffrer ver 7.75 0.68 0.01 0.00 ind:fut:1p; +coffreront coffrer ver 7.75 0.68 0.29 0.00 ind:fut:3p; +coffre_fort coffre_fort nom m p 4.62 3.92 0.45 0.68 +coffres coffre nom m p 39.35 29.32 3.38 4.19 +coffret coffret nom m s 1.98 6.42 1.77 5.81 +coffrets coffret nom m p 1.98 6.42 0.22 0.61 +coffrez coffrer ver 7.75 0.68 0.35 0.00 imp:pre:2p;ind:pre:2p; +coffrons coffrer ver 7.75 0.68 0.09 0.00 imp:pre:1p; +coffré coffrer ver m s 7.75 0.68 1.39 0.00 par:pas; +coffrée coffrer ver f s 7.75 0.68 0.07 0.07 par:pas; +coffrées coffrer ver f p 7.75 0.68 0.02 0.00 par:pas; +coffrés coffrer ver m p 7.75 0.68 0.38 0.14 par:pas; +cofinancement cofinancement nom m s 0.01 0.00 0.01 0.00 +cofondateur cofondateur nom m s 0.29 0.07 0.25 0.00 +cofondateurs cofondateur nom m p 0.29 0.07 0.02 0.07 +cofondatrice cofondateur nom f s 0.29 0.07 0.01 0.00 +cofondé cofondé adj m s 0.01 0.00 0.01 0.00 +cogitais cogiter ver 0.70 0.54 0.01 0.00 ind:imp:1s; +cogitait cogiter ver 0.70 0.54 0.02 0.07 ind:imp:3s; +cogitant cogiter ver 0.70 0.54 0.00 0.07 par:pre; +cogitation cogitation nom f s 0.21 0.61 0.02 0.07 +cogitations cogitation nom f p 0.21 0.61 0.19 0.54 +cogite cogiter ver 0.70 0.54 0.12 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cogitent cogiter ver 0.70 0.54 0.00 0.07 ind:pre:3p; +cogiter cogiter ver 0.70 0.54 0.43 0.07 inf; +cogito cogito nom m s 0.01 0.34 0.01 0.34 +cogité cogiter ver m s 0.70 0.54 0.12 0.14 par:pas; +cogna cogner ver 27.01 34.26 0.13 2.09 ind:pas:3s; +cognac cognac nom m s 12.07 11.01 11.69 10.68 +cognacs cognac nom m p 12.07 11.01 0.39 0.34 +cognai cogner ver 27.01 34.26 0.01 0.20 ind:pas:1s; +cognaient cogner ver 27.01 34.26 0.08 0.88 ind:imp:3p; +cognais cogner ver 27.01 34.26 0.18 0.47 ind:imp:1s; +cognait cogner ver 27.01 34.26 0.79 4.59 ind:imp:3s; +cognant cogner ver 27.01 34.26 0.44 3.24 par:pre; +cognassier cognassier nom m s 0.50 0.27 0.10 0.20 +cognassiers cognassier nom m p 0.50 0.27 0.40 0.07 +cogne cogner ver 27.01 34.26 7.36 8.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +cognement cognement nom m s 0.03 0.20 0.00 0.14 +cognements cognement nom m p 0.03 0.20 0.03 0.07 +cognent cogner ver 27.01 34.26 0.48 1.22 ind:pre:3p; +cogner cogner ver 27.01 34.26 7.73 8.65 inf; +cognera cogner ver 27.01 34.26 0.05 0.00 ind:fut:3s; +cognerai cogner ver 27.01 34.26 0.07 0.00 ind:fut:1s; +cogneraient cogner ver 27.01 34.26 0.01 0.00 cnd:pre:3p; +cognerais cogner ver 27.01 34.26 0.05 0.00 cnd:pre:1s; +cognerait cogner ver 27.01 34.26 0.01 0.34 cnd:pre:3s; +cognerez cogner ver 27.01 34.26 0.04 0.00 ind:fut:2p; +cogneront cogner ver 27.01 34.26 0.04 0.07 ind:fut:3p; +cognes cogner ver 27.01 34.26 0.85 0.41 ind:pre:2s; +cogneur cogneur nom m s 0.48 0.47 0.24 0.34 +cogneurs cogneur nom m p 0.48 0.47 0.23 0.07 +cogneuse cogneur nom f s 0.48 0.47 0.01 0.07 +cognez cogner ver 27.01 34.26 0.42 0.00 imp:pre:2p;ind:pre:2p; +cognitif cognitif adj m s 0.42 0.07 0.09 0.00 +cognitifs cognitif adj m p 0.42 0.07 0.02 0.07 +cognition cognition nom f s 0.01 0.00 0.01 0.00 +cognitive cognitif adj f s 0.42 0.07 0.17 0.00 +cognitives cognitif adj f p 0.42 0.07 0.14 0.00 +cognons cogner ver 27.01 34.26 0.13 0.07 imp:pre:1p;ind:pre:1p; +cognèrent cogner ver 27.01 34.26 0.00 0.20 ind:pas:3p; +cogné cogner ver m s 27.01 34.26 6.94 2.84 par:pas; +cognée cogner ver f s 27.01 34.26 1.18 0.34 par:pas; +cognées cognée nom f p 0.25 1.55 0.00 0.41 +cognés cogner ver m p 27.01 34.26 0.01 0.27 par:pas; +cogérant cogérant nom m s 0.01 0.00 0.01 0.00 +cohabita cohabiter ver 1.31 1.08 0.00 0.07 ind:pas:3s; +cohabitaient cohabiter ver 1.31 1.08 0.11 0.41 ind:imp:3p; +cohabitait cohabiter ver 1.31 1.08 0.00 0.14 ind:imp:3s; +cohabitant cohabitant adj m s 0.01 0.00 0.01 0.00 +cohabitation cohabitation nom f s 0.20 1.15 0.19 1.15 +cohabitations cohabitation nom f p 0.20 1.15 0.01 0.00 +cohabite cohabiter ver 1.31 1.08 0.26 0.20 ind:pre:3s; +cohabitent cohabiter ver 1.31 1.08 0.15 0.14 ind:pre:3p; +cohabiter cohabiter ver 1.31 1.08 0.71 0.14 inf; +cohabiteraient cohabiter ver 1.31 1.08 0.02 0.00 cnd:pre:3p; +cohabitiez cohabiter ver 1.31 1.08 0.02 0.00 ind:imp:2p; +cohabité cohabiter ver m s 1.31 1.08 0.04 0.00 par:pas; +cohorte cohorte nom f s 0.78 4.53 0.49 3.31 +cohortes cohorte nom f p 0.78 4.53 0.29 1.22 +cohue cohue nom f s 0.89 7.70 0.88 7.23 +cohues cohue nom f p 0.89 7.70 0.01 0.47 +cohérence cohérence nom f s 0.46 3.51 0.46 3.45 +cohérences cohérence nom f p 0.46 3.51 0.00 0.07 +cohérent cohérent adj m s 1.92 4.66 1.23 2.43 +cohérente cohérent adj f s 1.92 4.66 0.52 1.35 +cohérentes cohérent adj f p 1.92 4.66 0.07 0.41 +cohérents cohérent adj m p 1.92 4.66 0.09 0.47 +cohéritier cohéritier nom m s 0.14 0.07 0.14 0.00 +cohéritiers cohéritier nom m p 0.14 0.07 0.00 0.07 +cohésion cohésion nom f s 0.47 4.59 0.47 4.59 +cohésive cohésif adj f s 0.02 0.00 0.02 0.00 +coi coi adj s 0.50 3.58 0.42 2.16 +coiffa coiffer ver 8.38 42.43 0.01 1.42 ind:pas:3s; +coiffai coiffer ver 8.38 42.43 0.14 0.34 ind:pas:1s; +coiffaient coiffer ver 8.38 42.43 0.00 0.47 ind:imp:3p; +coiffais coiffer ver 8.38 42.43 0.11 0.20 ind:imp:1s;ind:imp:2s; +coiffait coiffer ver 8.38 42.43 0.31 2.50 ind:imp:3s; +coiffant coiffer ver 8.38 42.43 0.04 1.28 par:pre; +coiffante coiffant adj f s 0.03 0.20 0.01 0.07 +coiffe coiffer ver 8.38 42.43 1.81 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coiffent coiffer ver 8.38 42.43 0.30 0.34 ind:pre:3p; +coiffer coiffer ver 8.38 42.43 2.67 3.99 inf; +coiffera coiffer ver 8.38 42.43 0.04 0.00 ind:fut:3s; +coifferais coiffer ver 8.38 42.43 0.14 0.07 cnd:pre:2s; +coifferait coiffer ver 8.38 42.43 0.01 0.14 cnd:pre:3s; +coifferas coiffer ver 8.38 42.43 0.00 0.07 ind:fut:2s; +coifferont coiffer ver 8.38 42.43 0.01 0.00 ind:fut:3p; +coiffes coiffer ver 8.38 42.43 0.61 0.00 ind:pre:2s; +coiffeur coiffeur nom m s 14.05 21.82 11.01 13.38 +coiffeurs coiffeur nom m p 14.05 21.82 0.78 2.70 +coiffeuse coiffeur nom f s 14.05 21.82 2.27 5.34 +coiffeuses coiffeuse nom f p 0.21 0.00 0.21 0.00 +coiffez coiffer ver 8.38 42.43 0.33 0.14 imp:pre:2p;ind:pre:2p; +coiffiez coiffer ver 8.38 42.43 0.13 0.07 ind:imp:2p; +coiffât coiffer ver 8.38 42.43 0.00 0.07 sub:imp:3s; +coiffèrent coiffer ver 8.38 42.43 0.00 0.07 ind:pas:3p; +coiffé coiffer ver m s 8.38 42.43 0.63 11.62 par:pas; +coiffée coiffer ver f s 8.38 42.43 0.80 8.65 par:pas; +coiffées coiffer ver f p 8.38 42.43 0.04 2.03 par:pas; +coiffure coiffure nom f s 10.46 15.81 10.09 14.05 +coiffures coiffure nom f p 10.46 15.81 0.37 1.76 +coiffés coiffer ver m p 8.38 42.43 0.27 5.81 par:pas; +coin_coin coin_coin nom m s 0.19 0.34 0.19 0.34 +coin_repas coin_repas nom m s 0.02 0.00 0.02 0.00 +coin coin nom m s 99.51 199.26 93.43 167.09 +coince coincer ver 56.95 30.61 4.26 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +coincent coincer ver 56.95 30.61 0.47 0.34 ind:pre:3p; +coincer coincer ver 56.95 30.61 9.78 4.73 inf; +coincera coincer ver 56.95 30.61 0.98 0.00 ind:fut:3s; +coincerai coincer ver 56.95 30.61 0.69 0.07 ind:fut:1s; +coincerais coincer ver 56.95 30.61 0.04 0.00 cnd:pre:1s; +coincerait coincer ver 56.95 30.61 0.02 0.14 cnd:pre:3s; +coinceriez coincer ver 56.95 30.61 0.01 0.00 cnd:pre:2p; +coincerons coincer ver 56.95 30.61 0.05 0.00 ind:fut:1p; +coinceront coincer ver 56.95 30.61 0.09 0.00 ind:fut:3p; +coinces coincer ver 56.95 30.61 0.13 0.07 ind:pre:2s; +coinceur coinceur nom m s 0.00 0.07 0.00 0.07 +coincez coincer ver 56.95 30.61 0.43 0.07 imp:pre:2p;ind:pre:2p; +coincher coincher ver 0.00 0.07 0.00 0.07 inf; +coinciez coincer ver 56.95 30.61 0.01 0.00 ind:imp:2p; +coincèrent coincer ver 56.95 30.61 0.00 0.07 ind:pas:3p; +coincé coincer ver m s 56.95 30.61 23.27 10.27 par:pas; +coincée coincer ver f s 56.95 30.61 8.18 5.54 ind:imp:3p;par:pas; +coincées coincer ver f p 56.95 30.61 1.02 0.81 par:pas; +coincés coincer ver m p 56.95 30.61 7.14 2.64 par:pas; +coing coing nom m s 2.13 0.68 0.67 0.41 +coings coing nom m p 2.13 0.68 1.46 0.27 +coins coin nom m p 99.51 199.26 6.08 32.16 +coinstot coinstot nom m s 0.00 0.74 0.00 0.68 +coinstots coinstot nom m p 0.00 0.74 0.00 0.07 +coinça coincer ver 56.95 30.61 0.01 0.68 ind:pas:3s; +coinçage coinçage nom m s 0.00 0.27 0.00 0.20 +coinçages coinçage nom m p 0.00 0.27 0.00 0.07 +coinçaient coincer ver 56.95 30.61 0.00 0.41 ind:imp:3p; +coinçais coincer ver 56.95 30.61 0.15 0.07 ind:imp:1s; +coinçait coincer ver 56.95 30.61 0.10 1.22 ind:imp:3s; +coinçant coincer ver 56.95 30.61 0.05 0.47 par:pre; +coinçons coincer ver 56.95 30.61 0.05 0.00 imp:pre:1p; +coir coir nom m s 0.01 0.00 0.01 0.00 +cois coi adj p 0.50 3.58 0.08 0.61 +coite coi adj f s 0.50 3.58 0.00 0.68 +coites coi adj f p 0.50 3.58 0.00 0.14 +coke coke nom s 8.54 5.47 8.49 5.47 +cokes coke nom f p 8.54 5.47 0.05 0.00 +col_de_cygne col_de_cygne nom m s 0.01 0.00 0.01 0.00 +col_vert col_vert nom m s 0.12 0.14 0.12 0.07 +col col nom m s 9.76 57.43 8.35 51.82 +cola cola nom m s 0.45 0.74 0.43 0.34 +colas cola nom m p 0.45 0.74 0.01 0.41 +colback colback nom m s 0.00 0.47 0.00 0.41 +colbacks colback nom m p 0.00 0.47 0.00 0.07 +colchicine colchicine nom f s 0.13 0.00 0.13 0.00 +colchique colchique nom m s 0.00 0.34 0.00 0.07 +colchiques colchique nom m p 0.00 0.34 0.00 0.27 +colcotar colcotar nom m s 0.00 0.07 0.00 0.07 +cold_cream cold_cream nom m s 0.03 0.07 0.03 0.07 +cold cold adj m s 2.01 0.07 2.01 0.07 +cole cole nom m s 0.14 0.00 0.14 0.00 +colectomie colectomie nom f s 0.01 0.00 0.01 0.00 +colibacilles colibacille nom m p 0.01 0.07 0.01 0.07 +colibri colibri nom m s 0.33 0.61 0.21 0.34 +colibris colibri nom m p 0.33 0.61 0.12 0.27 +colifichet colifichet nom m s 0.32 1.08 0.22 0.07 +colifichets colifichet nom m p 0.32 1.08 0.09 1.01 +colimaçon colimaçon nom m s 0.04 1.76 0.04 1.62 +colimaçons colimaçon nom m p 0.04 1.76 0.00 0.14 +colin_maillard colin_maillard nom m s 0.93 0.95 0.93 0.95 +câlin câlin nom m s 6.38 1.96 4.11 0.61 +colin colin nom m s 0.27 0.54 0.27 0.54 +câlina câliner ver 0.81 1.22 0.14 0.07 ind:pas:3s; +câlinait câliner ver 0.81 1.22 0.00 0.20 ind:imp:3s; +câlinant câliner ver 0.81 1.22 0.01 0.07 par:pre; +câline câlin adj f s 1.31 2.84 0.58 1.15 +câlinement câlinement adv 0.00 0.14 0.00 0.14 +câlinent câliner ver 0.81 1.22 0.01 0.14 ind:pre:3p; +câliner câliner ver 0.81 1.22 0.45 0.41 inf; +câlinerai câliner ver 0.81 1.22 0.01 0.00 ind:fut:1s; +câlinerie câlinerie nom f s 0.10 0.61 0.10 0.14 +câlineries câlinerie nom f p 0.10 0.61 0.00 0.47 +câlines câlin adj f p 1.31 2.84 0.01 0.20 +câlins câlin nom m p 6.38 1.96 2.22 0.61 +câliné câliner ver m s 0.81 1.22 0.04 0.14 par:pas; +câlinée câliner ver f s 0.81 1.22 0.00 0.07 par:pas; +colique colique nom f s 1.40 2.03 1.02 0.95 +coliques colique nom f p 1.40 2.03 0.37 1.08 +colis_cadeau colis_cadeau nom m 0.02 0.00 0.02 0.00 +colis_repas colis_repas nom m 0.00 0.07 0.00 0.07 +colis colis nom m 7.50 10.54 7.50 10.54 +colistier colistier nom m s 0.02 0.00 0.02 0.00 +colite colite nom f s 0.27 0.41 0.25 0.34 +colites colite nom f p 0.27 0.41 0.02 0.07 +colla coller ver 51.34 107.16 0.26 4.66 ind:pas:3s; +collabo collabo nom s 0.62 2.43 0.33 0.88 +collabora collaborer ver 7.53 5.41 0.00 0.07 ind:pas:3s; +collaborai collaborer ver 7.53 5.41 0.01 0.07 ind:pas:1s; +collaboraient collaborer ver 7.53 5.41 0.03 0.07 ind:imp:3p; +collaborais collaborer ver 7.53 5.41 0.03 0.14 ind:imp:1s;ind:imp:2s; +collaborait collaborer ver 7.53 5.41 0.45 0.27 ind:imp:3s; +collaborant collaborer ver 7.53 5.41 0.18 0.20 par:pre; +collaborateur collaborateur nom m s 4.54 11.49 1.27 3.78 +collaborateurs collaborateur nom m p 4.54 11.49 2.38 6.96 +collaboration collaboration nom f s 5.12 12.50 5.11 12.43 +collaborationniste collaborationniste adj m s 0.00 0.20 0.00 0.14 +collaborationnistes collaborationniste adj m p 0.00 0.20 0.00 0.07 +collaborations collaboration nom f p 5.12 12.50 0.01 0.07 +collaboratrice collaborateur nom f s 4.54 11.49 0.89 0.47 +collaboratrices collaboratrice nom f p 0.01 0.00 0.01 0.00 +collabore collaborer ver 7.53 5.41 1.09 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +collaborent collaborer ver 7.53 5.41 0.43 0.41 ind:pre:3p; +collaborer collaborer ver 7.53 5.41 2.71 2.16 inf; +collaborera collaborer ver 7.53 5.41 0.05 0.07 ind:fut:3s; +collaborerai collaborer ver 7.53 5.41 0.07 0.00 ind:fut:1s; +collaboreraient collaborer ver 7.53 5.41 0.01 0.07 cnd:pre:3p; +collaborerez collaborer ver 7.53 5.41 0.02 0.07 ind:fut:2p; +collaborerons collaborer ver 7.53 5.41 0.16 0.00 ind:fut:1p; +collabores collaborer ver 7.53 5.41 0.11 0.00 ind:pre:2s; +collaborez collaborer ver 7.53 5.41 0.40 0.00 imp:pre:2p;ind:pre:2p; +collaborions collaborer ver 7.53 5.41 0.00 0.07 ind:imp:1p; +collaborons collaborer ver 7.53 5.41 0.26 0.00 imp:pre:1p;ind:pre:1p; +collaboré collaborer ver m s 7.53 5.41 1.54 1.01 par:pas; +collabos collabo nom p 0.62 2.43 0.29 1.55 +collage collage nom m s 1.31 0.81 1.22 0.74 +collages collage nom m p 1.31 0.81 0.10 0.07 +collagène collagène nom m s 1.23 0.14 1.23 0.14 +collai coller ver 51.34 107.16 0.00 0.81 ind:pas:1s; +collaient coller ver 51.34 107.16 0.11 3.78 ind:imp:3p; +collais coller ver 51.34 107.16 0.24 0.34 ind:imp:1s;ind:imp:2s; +collait coller ver 51.34 107.16 2.03 13.18 ind:imp:3s; +collant collant adj m s 3.37 4.93 1.75 1.96 +collante collant adj f s 3.37 4.93 0.83 1.42 +collantes collant adj f p 3.37 4.93 0.08 0.27 +collants collant nom m p 4.28 4.46 2.60 2.03 +collapse collapser ver 0.02 0.07 0.01 0.07 imp:pre:2s;ind:pre:3s; +collapserait collapser ver 0.02 0.07 0.01 0.00 cnd:pre:3s; +collapsus collapsus nom m 0.17 0.14 0.17 0.14 +collas coller ver 51.34 107.16 0.00 0.14 ind:pas:2s; +collation collation nom f s 0.92 2.03 0.88 1.76 +collationne collationner ver 0.13 0.14 0.02 0.07 ind:pre:1s;ind:pre:3s; +collationnement collationnement nom m s 0.01 0.00 0.01 0.00 +collationner collationner ver 0.13 0.14 0.10 0.00 inf; +collationnés collationner ver m p 0.13 0.14 0.01 0.07 par:pas; +collations collation nom f p 0.92 2.03 0.04 0.27 +collatéral collatéral adj m s 0.66 0.34 0.33 0.07 +collatérale collatéral adj f s 0.66 0.34 0.01 0.07 +collatérales collatéral adj f p 0.66 0.34 0.01 0.07 +collatéraux collatéral adj m p 0.66 0.34 0.30 0.14 +colle coller ver 51.34 107.16 18.32 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +collectait collecter ver 2.17 1.01 0.05 0.00 ind:imp:3s; +collectant collecter ver 2.17 1.01 0.04 0.14 par:pre; +collecte collecte nom f s 3.13 1.49 2.88 1.28 +collecter collecter ver 2.17 1.01 1.07 0.41 inf; +collectes collecte nom f p 3.13 1.49 0.25 0.20 +collecteur collecteur nom m s 0.87 1.28 0.67 0.88 +collecteurs collecteur nom m p 0.87 1.28 0.20 0.41 +collectez collecter ver 2.17 1.01 0.01 0.00 imp:pre:2p; +collectif collectif nom m s 3.44 0.27 3.44 0.27 +collectifs collectif adj m p 4.60 15.68 0.27 1.35 +collection collection nom f s 16.93 25.68 16.25 21.62 +collectionna collectionner ver 5.74 5.07 0.00 0.07 ind:pas:3s; +collectionnaient collectionner ver 5.74 5.07 0.01 0.20 ind:imp:3p; +collectionnais collectionner ver 5.74 5.07 0.40 0.41 ind:imp:1s;ind:imp:2s; +collectionnait collectionner ver 5.74 5.07 0.70 1.28 ind:imp:3s; +collectionnant collectionner ver 5.74 5.07 0.01 0.20 par:pre; +collectionne collectionner ver 5.74 5.07 2.63 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +collectionnent collectionner ver 5.74 5.07 0.23 0.20 ind:pre:3p; +collectionner collectionner ver 5.74 5.07 0.65 1.15 inf; +collectionnes collectionner ver 5.74 5.07 0.52 0.07 ind:pre:2s; +collectionneur collectionneur nom m s 1.72 4.32 1.30 2.36 +collectionneurs collectionneur nom m p 1.72 4.32 0.36 1.76 +collectionneuse collectionneuse nom f s 0.10 0.00 0.10 0.00 +collectionnez collectionner ver 5.74 5.07 0.26 0.07 imp:pre:2p;ind:pre:2p; +collectionnions collectionner ver 5.74 5.07 0.00 0.07 ind:imp:1p; +collectionnons collectionner ver 5.74 5.07 0.04 0.00 ind:pre:1p; +collectionné collectionner ver m s 5.74 5.07 0.19 0.14 par:pas; +collectionnées collectionner ver f p 5.74 5.07 0.11 0.07 par:pas; +collectionnés collectionner ver m p 5.74 5.07 0.00 0.14 par:pas; +collections collection nom f p 16.93 25.68 0.69 4.05 +collective collectif adj f s 4.60 15.68 1.88 7.91 +collectivement collectivement adv 0.22 0.74 0.22 0.74 +collectives collectif adj f p 4.60 15.68 0.36 1.69 +collectivisation collectivisation nom f s 0.04 0.27 0.04 0.27 +collectiviser collectiviser ver 0.19 0.14 0.05 0.00 inf; +collectivisme collectivisme nom m s 0.14 0.34 0.14 0.34 +collectiviste collectiviste adj s 0.01 0.20 0.01 0.20 +collectivisé collectiviser ver m s 0.19 0.14 0.14 0.00 par:pas; +collectivisée collectiviser ver f s 0.19 0.14 0.01 0.07 par:pas; +collectivisés collectiviser ver m p 0.19 0.14 0.00 0.07 par:pas; +collectivité collectivité nom f s 0.42 2.91 0.41 2.57 +collectivités collectivité nom f p 0.42 2.91 0.01 0.34 +collectons collecter ver 2.17 1.01 0.09 0.00 ind:pre:1p; +collector collector nom m s 0.24 0.00 0.24 0.00 +collectrice collecteur adj f s 0.01 0.00 0.01 0.00 +collecté collecter ver m s 2.17 1.01 0.35 0.20 par:pas; +collectée collecter ver f s 2.17 1.01 0.04 0.07 par:pas; +collectées collecter ver f p 2.17 1.01 0.05 0.00 par:pas; +collectés collecter ver m p 2.17 1.01 0.08 0.14 par:pas; +collent coller ver 51.34 107.16 1.59 2.97 ind:pre:3p; +coller coller ver 51.34 107.16 10.33 12.36 ind:pre:2p;inf; +collera coller ver 51.34 107.16 0.63 0.34 ind:fut:3s; +collerai coller ver 51.34 107.16 0.65 0.07 ind:fut:1s; +collerais coller ver 51.34 107.16 0.10 0.14 cnd:pre:1s;cnd:pre:2s; +collerait coller ver 51.34 107.16 0.22 0.41 cnd:pre:3s; +colleras coller ver 51.34 107.16 0.03 0.00 ind:fut:2s; +collerette collerette nom f s 0.04 2.09 0.04 1.62 +collerettes collerette nom f p 0.04 2.09 0.00 0.47 +collerez coller ver 51.34 107.16 0.06 0.00 ind:fut:2p; +colleront coller ver 51.34 107.16 0.37 0.00 ind:fut:3p; +colles coller ver 51.34 107.16 1.56 0.41 ind:pre:2s;sub:pre:2s; +collet collet nom m s 1.11 3.72 1.08 2.57 +colletage colletage nom m s 0.00 0.07 0.00 0.07 +colleter colleter ver 0.07 0.95 0.03 0.41 inf; +colletin colletin nom m s 0.00 0.14 0.00 0.14 +collets collet nom m p 1.11 3.72 0.03 1.15 +collette colleter ver 0.07 0.95 0.01 0.14 imp:pre:2s;ind:pre:3s; +colleté colleter ver m s 0.07 0.95 0.03 0.27 par:pas; +colletés colleter ver m p 0.07 0.95 0.00 0.14 par:pas; +colleur colleur nom m s 0.11 0.34 0.11 0.00 +colleurs colleur nom m p 0.11 0.34 0.00 0.34 +colleuse colleuse nom f s 0.01 0.00 0.01 0.00 +colley colley nom m s 0.28 0.00 0.27 0.00 +colleys colley nom m p 0.28 0.00 0.01 0.00 +collez coller ver 51.34 107.16 1.68 0.27 imp:pre:2p;ind:pre:2p; +collier collier nom m s 19.91 20.00 17.79 14.80 +colliers collier nom m p 19.91 20.00 2.13 5.20 +colliez coller ver 51.34 107.16 0.05 0.00 ind:imp:2p; +collignon collignon nom m s 2.54 0.20 2.54 0.20 +collimateur collimateur nom m s 0.69 0.81 0.69 0.81 +collimation collimation nom f s 0.00 0.07 0.00 0.07 +colline colline nom f s 26.39 55.61 15.61 30.07 +collines colline nom f p 26.39 55.61 10.79 25.54 +collions coller ver 51.34 107.16 0.01 0.34 ind:imp:1p; +collision collision nom f s 3.91 2.23 3.53 1.76 +collisions collision nom f p 3.91 2.23 0.38 0.47 +colloïdale colloïdal adj f s 0.01 0.00 0.01 0.00 +colloïde colloïde nom m s 0.00 0.07 0.00 0.07 +collodion collodion nom m s 0.03 0.14 0.03 0.14 +collons coller ver 51.34 107.16 0.14 0.14 imp:pre:1p;ind:pre:1p; +colloquant colloquer ver 0.00 0.54 0.00 0.07 par:pre; +colloque colloque nom m s 0.70 2.23 0.58 1.55 +colloquer colloquer ver 0.00 0.54 0.00 0.20 inf; +colloques colloque nom m p 0.70 2.23 0.12 0.68 +colloqué colloquer ver m s 0.00 0.54 0.00 0.20 par:pas; +colloquée colloquer ver f s 0.00 0.54 0.00 0.07 par:pas; +collège collège nom m s 11.58 26.82 11.30 25.00 +collèges collège nom m p 11.58 26.82 0.28 1.82 +collègue collègue nom s 38.93 32.09 18.22 12.16 +collègues collègue nom p 38.93 32.09 20.72 19.93 +collèrent coller ver 51.34 107.16 0.00 0.34 ind:pas:3p; +collé coller ver m s 51.34 107.16 6.66 20.41 par:pas; +collée coller ver f s 51.34 107.16 2.39 11.28 par:pas; +collées coller ver f p 51.34 107.16 1.19 7.57 par:pas; +collégial collégial adj m s 0.20 0.34 0.14 0.00 +collégiale collégial adj f s 0.20 0.34 0.05 0.27 +collégiales collégial adj f p 0.20 0.34 0.00 0.07 +collégialité collégialité nom f s 0.00 0.14 0.00 0.14 +collégiaux collégial adj m p 0.20 0.34 0.01 0.00 +collégien collégien nom m s 0.84 4.66 0.30 1.89 +collégienne collégien nom f s 0.84 4.66 0.26 0.61 +collégiennes collégienne nom f p 0.05 0.00 0.05 0.00 +collégiens collégien nom m p 0.84 4.66 0.28 1.76 +collure collure nom f s 0.03 0.00 0.03 0.00 +collés coller ver m p 51.34 107.16 2.21 11.15 par:pas; +collusion collusion nom f s 0.10 0.74 0.10 0.54 +collusions collusion nom f p 0.10 0.74 0.00 0.20 +collutoire collutoire nom m s 0.00 0.07 0.00 0.07 +collyre collyre nom m s 0.50 0.47 0.50 0.27 +collyres collyre nom m p 0.50 0.47 0.00 0.20 +colmatage colmatage nom m s 0.03 0.07 0.03 0.07 +colmataient colmater ver 1.51 1.76 0.00 0.07 ind:imp:3p; +colmatais colmater ver 1.51 1.76 0.00 0.07 ind:imp:1s; +colmatait colmater ver 1.51 1.76 0.00 0.27 ind:imp:3s; +colmatant colmater ver 1.51 1.76 0.01 0.07 par:pre; +colmate colmater ver 1.51 1.76 0.31 0.20 imp:pre:2s;ind:pre:3s; +colmater colmater ver 1.51 1.76 0.56 0.47 inf; +colmatez colmater ver 1.51 1.76 0.01 0.00 imp:pre:2p; +colmatons colmater ver 1.51 1.76 0.01 0.00 imp:pre:1p; +colmaté colmater ver m s 1.51 1.76 0.14 0.20 par:pas; +colmatée colmater ver f s 1.51 1.76 0.27 0.20 par:pas; +colmatées colmater ver f p 1.51 1.76 0.20 0.14 par:pas; +colmatés colmater ver m p 1.51 1.76 0.00 0.07 par:pas; +colo colo nom f s 1.11 2.91 1.10 2.77 +colocataire colocataire nom s 4.88 0.07 3.91 0.00 +colocataires colocataire nom p 4.88 0.07 0.97 0.07 +colocation colocation nom f s 0.23 0.07 0.23 0.07 +colombages colombage nom m p 0.00 0.68 0.00 0.68 +colombe colombe nom f s 6.84 5.34 5.08 3.51 +colombelle colombelle nom f s 0.00 1.22 0.00 1.22 +colombes colombe nom f p 6.84 5.34 1.76 1.82 +colombien colombien adj m s 0.54 0.14 0.29 0.00 +colombienne colombien nom f s 1.11 0.14 0.17 0.14 +colombiens colombien nom m p 1.11 0.14 0.75 0.00 +colombier colombier nom m s 0.12 1.49 0.12 1.35 +colombiers colombier nom m p 0.12 1.49 0.00 0.14 +colombin colombin nom m s 0.01 0.61 0.01 0.14 +colombine colombin adj f s 0.02 0.34 0.01 0.27 +colombines colombin adj f p 0.02 0.34 0.00 0.07 +colombins colombin nom m p 0.01 0.61 0.00 0.47 +colombo colombo nom m s 0.00 0.07 0.00 0.07 +colombophile colombophile adj s 0.27 0.34 0.27 0.34 +colombophilie colombophilie nom f s 0.14 0.07 0.14 0.07 +colon colon nom m s 5.46 4.05 1.21 0.88 +colonel colonel nom m s 103.70 47.03 102.86 42.91 +colonelle colonel nom f s 103.70 47.03 0.14 1.82 +colonels colonel nom m p 103.70 47.03 0.71 2.30 +colonial colonial adj m s 2.85 12.70 1.12 4.32 +coloniale colonial adj f s 2.85 12.70 1.11 5.34 +coloniales colonial adj f p 2.85 12.70 0.31 1.49 +colonialisme colonialisme nom m s 0.34 0.74 0.34 0.68 +colonialismes colonialisme nom m p 0.34 0.74 0.00 0.07 +colonialiste colonialiste nom s 0.26 0.07 0.10 0.00 +colonialistes colonialiste nom p 0.26 0.07 0.16 0.07 +coloniaux colonial adj m p 2.85 12.70 0.30 1.55 +colonie colonie nom f s 8.75 19.05 5.53 10.34 +colonies colonie nom f p 8.75 19.05 3.22 8.72 +colonisait coloniser ver 0.60 1.62 0.00 0.14 ind:imp:3s; +colonisateur colonisateur nom m s 0.01 0.20 0.00 0.14 +colonisateurs colonisateur nom m p 0.01 0.20 0.01 0.07 +colonisation colonisation nom f s 0.71 0.68 0.71 0.61 +colonisations colonisation nom f p 0.71 0.68 0.00 0.07 +colonisatrice colonisateur adj f s 0.01 0.14 0.01 0.14 +colonise coloniser ver 0.60 1.62 0.01 0.14 ind:pre:3s; +colonisent coloniser ver 0.60 1.62 0.04 0.00 ind:pre:3p; +coloniser coloniser ver 0.60 1.62 0.22 0.41 inf; +coloniserait coloniser ver 0.60 1.62 0.01 0.00 cnd:pre:3s; +colonisez coloniser ver 0.60 1.62 0.01 0.00 ind:pre:2p; +colonisons coloniser ver 0.60 1.62 0.02 0.00 imp:pre:1p;ind:pre:1p; +colonisèrent coloniser ver 0.60 1.62 0.02 0.07 ind:pas:3p; +colonisé coloniser ver m s 0.60 1.62 0.15 0.41 par:pas; +colonisée coloniser ver f s 0.60 1.62 0.06 0.27 par:pas; +colonisées coloniser ver f p 0.60 1.62 0.02 0.00 par:pas; +colonisés coloniser ver m p 0.60 1.62 0.02 0.20 par:pas; +colonnade colonnade nom f s 0.17 2.84 0.15 1.15 +colonnades colonnade nom f p 0.17 2.84 0.02 1.69 +colonne colonne nom f s 9.29 50.07 6.58 25.95 +colonnes colonne nom f p 9.29 50.07 2.71 24.12 +colonnette colonnette nom f s 0.00 1.82 0.00 0.74 +colonnettes colonnette nom f p 0.00 1.82 0.00 1.08 +colonoscopie colonoscopie nom f s 0.01 0.00 0.01 0.00 +colons colon nom m p 5.46 4.05 1.58 3.18 +colopathie colopathie nom f s 0.01 0.00 0.01 0.00 +colophane colophane nom f s 0.28 0.20 0.28 0.20 +colophané colophaner ver m s 0.10 0.00 0.10 0.00 par:pas; +coloquinte coloquinte nom f s 0.00 0.27 0.00 0.14 +coloquintes coloquinte nom f p 0.00 0.27 0.00 0.14 +colora colorer ver 1.10 9.39 0.00 0.81 ind:pas:3s; +colorai colorer ver 1.10 9.39 0.00 0.07 ind:pas:1s; +coloraient colorer ver 1.10 9.39 0.00 0.54 ind:imp:3p; +colorait colorer ver 1.10 9.39 0.00 1.55 ind:imp:3s; +colorant colorant nom m s 0.42 0.47 0.33 0.20 +colorantes colorant adj f p 0.20 0.14 0.00 0.07 +colorants colorant nom m p 0.42 0.47 0.09 0.27 +coloration coloration nom f s 0.67 1.49 0.65 1.15 +colorations coloration nom f p 0.67 1.49 0.01 0.34 +colorature colorature nom f s 0.14 0.14 0.14 0.14 +colore colorer ver 1.10 9.39 0.13 1.01 imp:pre:2s;ind:pre:3s; +colorectal colorectal adj m s 0.01 0.00 0.01 0.00 +colorent colorer ver 1.10 9.39 0.14 0.41 ind:pre:3p; +colorer colorer ver 1.10 9.39 0.16 0.68 inf; +colorez colorer ver 1.10 9.39 0.01 0.07 imp:pre:2p; +coloriage coloriage nom m s 0.49 0.34 0.31 0.27 +coloriages coloriage nom m p 0.49 0.34 0.18 0.07 +coloriaient colorier ver 1.10 5.41 0.00 0.07 ind:imp:3p; +coloriait colorier ver 1.10 5.41 0.01 0.20 ind:imp:3s; +colorie colorier ver 1.10 5.41 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +colorient colorier ver 1.10 5.41 0.01 0.07 ind:pre:3p; +colorier colorier ver 1.10 5.41 0.25 0.68 inf; +coloriez colorier ver 1.10 5.41 0.17 0.00 imp:pre:2p;ind:pre:2p; +coloris coloris nom m 0.39 1.62 0.39 1.62 +colorisation colorisation nom f s 0.04 0.00 0.04 0.00 +coloriste coloriste nom s 0.16 0.27 0.16 0.27 +colorisé coloriser ver m s 0.02 0.00 0.02 0.00 par:pas; +colorié colorier ver m s 1.10 5.41 0.18 1.08 par:pas; +coloriée colorier ver f s 1.10 5.41 0.11 0.81 par:pas; +coloriées colorier ver f p 1.10 5.41 0.06 1.49 par:pas; +coloriés colorier ver m p 1.10 5.41 0.25 0.95 par:pas; +colorèrent colorer ver 1.10 9.39 0.00 0.20 ind:pas:3p; +coloré coloré adj m s 2.32 9.53 0.78 2.36 +colorée colorer ver f s 1.10 9.39 0.32 1.01 par:pas; +colorées coloré adj f p 2.32 9.53 0.60 2.36 +colorés coloré adj m p 2.32 9.53 0.78 2.70 +colos colo nom f p 1.11 2.91 0.01 0.14 +coloscopie coloscopie nom f s 0.13 0.00 0.13 0.00 +colossal colossal adj m s 1.37 9.05 0.81 4.46 +colossale colossal adj f s 1.37 9.05 0.48 2.70 +colossales colossal adj f p 1.37 9.05 0.02 1.42 +colossaux colossal adj m p 1.37 9.05 0.05 0.47 +colosse colosse nom m s 2.72 6.82 2.46 6.08 +colosses colosse nom m p 2.72 6.82 0.26 0.74 +colostomie colostomie nom f s 0.09 0.00 0.09 0.00 +colostrum colostrum nom m s 0.01 0.00 0.01 0.00 +colporta colporter ver 0.56 2.16 0.00 0.07 ind:pas:3s; +colportage colportage nom m s 0.01 0.14 0.01 0.14 +colportaient colporter ver 0.56 2.16 0.00 0.14 ind:imp:3p; +colportait colporter ver 0.56 2.16 0.00 0.68 ind:imp:3s; +colportant colporter ver 0.56 2.16 0.01 0.20 par:pre; +colporte colporter ver 0.56 2.16 0.08 0.14 imp:pre:2s;ind:pre:3s; +colportent colporter ver 0.56 2.16 0.03 0.00 ind:pre:3p; +colporter colporter ver 0.56 2.16 0.37 0.47 inf; +colportera colporter ver 0.56 2.16 0.00 0.07 ind:fut:3s; +colportes colporter ver 0.56 2.16 0.00 0.07 ind:pre:2s; +colporteur colporteur nom m s 0.53 1.42 0.38 0.54 +colporteurs colporteur nom m p 0.53 1.42 0.15 0.74 +colporteuse colporteur nom f s 0.53 1.42 0.00 0.14 +colportons colporter ver 0.56 2.16 0.02 0.00 imp:pre:1p;ind:pre:1p; +colporté colporter ver m s 0.56 2.16 0.01 0.14 par:pas; +colportée colporter ver f s 0.56 2.16 0.01 0.14 par:pas; +colportées colporter ver f p 0.56 2.16 0.02 0.07 par:pas; +colposcopie colposcopie nom f s 0.01 0.00 0.01 0.00 +cols_de_cygne cols_de_cygne nom m p 0.00 0.07 0.00 0.07 +col_vert col_vert nom m p 0.12 0.14 0.00 0.07 +cols col nom m p 9.76 57.43 1.37 5.61 +colt colt nom m s 0.97 1.82 0.57 1.82 +colère colère nom f s 68.90 100.07 67.91 92.77 +colères colère nom f p 68.90 100.07 0.99 7.30 +coltin coltin nom m s 0.00 0.27 0.00 0.27 +coltina coltiner ver 1.15 3.04 0.00 0.14 ind:pas:3s; +coltinage coltinage nom m s 0.00 0.34 0.00 0.27 +coltinages coltinage nom m p 0.00 0.34 0.00 0.07 +coltinais coltiner ver 1.15 3.04 0.02 0.20 ind:imp:1s; +coltinait coltiner ver 1.15 3.04 0.02 0.14 ind:imp:3s; +coltinant coltiner ver 1.15 3.04 0.00 0.14 par:pre; +coltine coltiner ver 1.15 3.04 0.15 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coltinent coltiner ver 1.15 3.04 0.01 0.07 ind:pre:3p; +coltiner coltiner ver 1.15 3.04 0.48 1.22 inf; +coltines coltiner ver 1.15 3.04 0.23 0.14 ind:pre:2s; +coltineur coltineur nom m s 0.00 0.07 0.00 0.07 +coltinez coltiner ver 1.15 3.04 0.01 0.00 ind:pre:2p; +coltiné coltiner ver m s 1.15 3.04 0.18 0.20 par:pas; +coltinée coltiner ver f s 1.15 3.04 0.04 0.07 par:pas; +coltinés coltiner ver m p 1.15 3.04 0.00 0.14 par:pas; +colts colt nom m p 0.97 1.82 0.40 0.00 +colée colée nom f s 0.01 0.07 0.01 0.07 +columbarium columbarium nom m s 0.00 0.54 0.00 0.54 +coléoptère coléoptère nom m s 0.64 1.49 0.38 0.61 +coléoptères coléoptère nom m p 0.64 1.49 0.27 0.88 +colérer colérer ver 0.01 0.00 0.01 0.00 inf; +coléreuse coléreux adj f s 1.05 2.64 0.32 0.54 +coléreusement coléreusement adv 0.00 0.07 0.00 0.07 +coléreux coléreux adj m 1.05 2.64 0.73 2.09 +colérique colérique adj s 0.44 0.88 0.43 0.61 +colériques colérique adj f p 0.44 0.88 0.01 0.27 +colvert colvert nom m s 0.19 0.68 0.17 0.41 +colverts colvert nom m p 0.19 0.68 0.03 0.27 +colza colza nom m s 0.05 0.81 0.05 0.61 +colzas colza nom m p 0.05 0.81 0.00 0.20 +com com nom m s 40.90 0.27 40.90 0.27 +coma coma nom m s 12.66 4.93 12.58 4.86 +comac comac adj s 0.16 1.22 0.14 1.08 +comacs comac adj m p 0.16 1.22 0.01 0.14 +comanche comanche nom m s 0.36 0.07 0.36 0.07 +comandant comandant nom s 0.16 0.27 0.16 0.27 +comas coma nom m p 12.66 4.93 0.08 0.07 +comateuse comateux adj f s 0.55 1.08 0.14 0.14 +comateux comateux adj m 0.55 1.08 0.41 0.95 +combat combat nom m s 64.83 72.57 57.31 52.36 +combatif combatif adj m s 0.90 1.42 0.78 0.54 +combatifs combatif adj m p 0.90 1.42 0.05 0.07 +combative combatif adj f s 0.90 1.42 0.07 0.81 +combativité combativité nom f s 0.28 0.41 0.28 0.41 +combats combat nom m p 64.83 72.57 7.53 20.20 +combattît combattre ver 42.89 36.35 0.02 0.07 sub:imp:3s; +combattaient combattre ver 42.89 36.35 0.31 1.62 ind:imp:3p; +combattais combattre ver 42.89 36.35 0.17 0.14 ind:imp:1s;ind:imp:2s; +combattait combattre ver 42.89 36.35 0.50 1.35 ind:imp:3s; +combattant combattant nom m s 6.28 18.31 2.49 4.46 +combattante combattant nom f s 6.28 18.31 0.22 0.54 +combattantes combattant nom f p 6.28 18.31 0.14 0.27 +combattants combattant nom m p 6.28 18.31 3.43 13.04 +combatte combattre ver 42.89 36.35 0.15 0.14 sub:pre:1s;sub:pre:3s; +combattent combattre ver 42.89 36.35 1.51 2.64 ind:pre:3p; +combattes combattre ver 42.89 36.35 0.04 0.00 sub:pre:2s; +combattez combattre ver 42.89 36.35 1.52 0.34 imp:pre:2p;ind:pre:2p; +combattiez combattre ver 42.89 36.35 0.11 0.00 ind:imp:2p; +combattions combattre ver 42.89 36.35 0.10 0.07 ind:imp:1p; +combattirent combattre ver 42.89 36.35 0.03 0.14 ind:pas:3p; +combattit combattre ver 42.89 36.35 0.05 0.20 ind:pas:3s; +combattons combattre ver 42.89 36.35 1.40 0.27 imp:pre:1p;ind:pre:1p; +combattra combattre ver 42.89 36.35 0.63 0.07 ind:fut:3s; +combattrai combattre ver 42.89 36.35 0.52 0.07 ind:fut:1s; +combattraient combattre ver 42.89 36.35 0.04 0.00 cnd:pre:3p; +combattrais combattre ver 42.89 36.35 0.10 0.00 cnd:pre:1s;cnd:pre:2s; +combattrait combattre ver 42.89 36.35 0.00 0.14 cnd:pre:3s; +combattras combattre ver 42.89 36.35 0.19 0.00 ind:fut:2s; +combattre combattre ver 42.89 36.35 20.96 17.97 inf; +combattrez combattre ver 42.89 36.35 0.19 0.00 ind:fut:2p; +combattriez combattre ver 42.89 36.35 0.02 0.00 cnd:pre:2p; +combattrons combattre ver 42.89 36.35 0.59 0.00 ind:fut:1p; +combattront combattre ver 42.89 36.35 0.07 0.14 ind:fut:3p; +combattu combattre ver m s 42.89 36.35 6.41 3.65 par:pas; +combattue combattre ver f s 42.89 36.35 0.22 0.27 par:pas; +combattues combattre ver f p 42.89 36.35 0.04 0.14 par:pas; +combattus combattre ver m p 42.89 36.35 0.30 0.27 par:pas; +combe combe nom f s 0.07 4.59 0.07 3.99 +combes combe nom f p 0.07 4.59 0.00 0.61 +combette combette nom f s 0.00 0.14 0.00 0.14 +combi combi nom m s 0.69 0.00 0.67 0.00 +combien combien adv_sup 390.58 108.04 390.58 108.04 +combientième combientième adj s 0.05 0.07 0.05 0.07 +combina combiner ver 4.50 6.35 0.01 0.07 ind:pas:3s; +combinaient combiner ver 4.50 6.35 0.01 0.47 ind:imp:3p; +combinaison combinaison nom f s 14.56 17.43 11.44 10.81 +combinaisons combinaison nom f p 14.56 17.43 3.12 6.62 +combinait combiner ver 4.50 6.35 0.04 0.74 ind:imp:3s; +combinant combiner ver 4.50 6.35 0.21 0.81 par:pre; +combinard combinard nom m s 0.50 0.27 0.39 0.14 +combinards combinard nom m p 0.50 0.27 0.11 0.14 +combinat combinat nom m s 0.23 0.00 0.23 0.00 +combinatoire combinatoire adj f s 0.10 0.41 0.07 0.34 +combinatoires combinatoire adj f p 0.10 0.41 0.03 0.07 +combine combine nom f s 6.84 8.24 4.32 4.80 +combinent combiner ver 4.50 6.35 0.04 0.41 ind:pre:3p; +combiner combiner ver 4.50 6.35 1.42 1.55 inf; +combineraient combiner ver 4.50 6.35 0.00 0.07 cnd:pre:3p; +combinerait combiner ver 4.50 6.35 0.01 0.00 cnd:pre:3s; +combinerons combiner ver 4.50 6.35 0.02 0.00 ind:fut:1p; +combines combine nom f p 6.84 8.24 2.52 3.45 +combinez combiner ver 4.50 6.35 0.08 0.00 imp:pre:2p;ind:pre:2p; +combinons combiner ver 4.50 6.35 0.01 0.07 ind:pre:1p; +combiné combiner ver m s 4.50 6.35 1.50 0.88 par:pas; +combinée combiner ver f s 4.50 6.35 0.28 0.54 par:pas; +combinées combiné adj f p 0.88 1.69 0.20 0.41 +combinés combiné adj m p 0.88 1.69 0.33 0.41 +combis combi nom m p 0.69 0.00 0.02 0.00 +combisme combisme nom m s 0.00 0.07 0.00 0.07 +combla combler ver 9.35 25.34 0.03 0.61 ind:pas:3s; +comblaient combler ver 9.35 25.34 0.02 0.47 ind:imp:3p; +comblais combler ver 9.35 25.34 0.01 0.07 ind:imp:1s;ind:imp:2s; +comblait combler ver 9.35 25.34 0.06 4.12 ind:imp:3s; +comblant combler ver 9.35 25.34 0.02 0.41 par:pre; +comblants comblant adj m p 0.00 0.27 0.00 0.07 +comble comble nom m s 8.56 27.30 7.86 22.50 +comblent combler ver 9.35 25.34 0.29 0.20 ind:pre:3p; +combler combler ver 9.35 25.34 2.50 7.97 inf; +comblera combler ver 9.35 25.34 0.27 0.07 ind:fut:3s; +comblerai combler ver 9.35 25.34 0.04 0.07 ind:fut:1s; +combleraient combler ver 9.35 25.34 0.00 0.27 cnd:pre:3p; +comblerais combler ver 9.35 25.34 0.01 0.07 cnd:pre:1s; +comblerait combler ver 9.35 25.34 0.07 0.07 cnd:pre:3s; +comblerez combler ver 9.35 25.34 0.02 0.00 ind:fut:2p; +combleront combler ver 9.35 25.34 0.01 0.27 ind:fut:3p; +combles comble nom m p 8.56 27.30 0.70 4.80 +comblez combler ver 9.35 25.34 0.56 0.07 imp:pre:2p;ind:pre:2p; +comblons combler ver 9.35 25.34 0.02 0.00 imp:pre:1p; +comblât combler ver 9.35 25.34 0.00 0.07 sub:imp:3s; +comblèrent combler ver 9.35 25.34 0.00 0.14 ind:pas:3p; +comblé combler ver m s 9.35 25.34 2.00 3.58 par:pas; +comblée combler ver f s 9.35 25.34 1.12 1.89 par:pas; +comblées combler ver f p 9.35 25.34 0.03 0.27 par:pas; +comblés combler ver m p 9.35 25.34 0.49 1.55 par:pas; +combo combo nom m s 0.40 0.00 0.40 0.00 +combourgeois combourgeois nom m 0.00 0.07 0.00 0.07 +comburant comburant adj m s 0.03 0.00 0.03 0.00 +combustible combustible nom m s 1.27 1.49 1.21 1.01 +combustibles combustible nom m p 1.27 1.49 0.05 0.47 +combustion combustion nom f s 3.78 1.89 3.71 1.82 +combustions combustion nom f p 3.78 1.89 0.07 0.07 +comestibilité comestibilité nom f s 0.01 0.00 0.01 0.00 +comestible comestible adj s 1.20 2.36 1.04 1.22 +comestibles comestible adj p 1.20 2.36 0.16 1.15 +comic_book comic_book nom m s 0.08 0.07 0.01 0.00 +comic_book comic_book nom m p 0.08 0.07 0.07 0.07 +comice comice nom s 0.00 0.34 0.00 0.07 +comices comice nom m p 0.00 0.34 0.00 0.27 +comics comics nom m p 0.69 0.41 0.69 0.41 +comique comique adj s 4.86 13.45 4.33 10.34 +comiquement comiquement adv 0.14 1.35 0.14 1.35 +comiques comique nom p 5.17 3.92 0.94 0.41 +comitadji comitadji nom m s 0.01 0.07 0.01 0.07 +comite comite nom m s 0.05 0.14 0.05 0.00 +comites comite nom m p 0.05 0.14 0.00 0.14 +comité comité nom m s 18.72 63.65 18.34 58.99 +comités comité nom m p 18.72 63.65 0.38 4.66 +commît commettre ver 47.45 37.16 0.00 0.07 sub:imp:3s; +comma comma nom m s 0.03 0.00 0.03 0.00 +command command nom m s 0.44 0.07 0.44 0.07 +commanda commander ver 63.49 80.34 0.22 10.14 ind:pas:3s; +commandai commander ver 63.49 80.34 0.01 0.61 ind:pas:1s; +commandaient commander ver 63.49 80.34 0.05 1.89 ind:imp:3p; +commandais commander ver 63.49 80.34 0.47 0.61 ind:imp:1s;ind:imp:2s; +commandait commander ver 63.49 80.34 0.95 10.81 ind:imp:3s; +commandant commandant nom m s 55.24 49.80 54.31 47.64 +commandante commandant adj f s 17.32 5.14 0.13 0.07 +commandants commandant nom m p 55.24 49.80 0.93 2.16 +commande commander ver 63.49 80.34 20.50 13.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +commandement commandement nom m s 20.47 47.23 18.13 43.51 +commandements commandement nom m p 20.47 47.23 2.34 3.72 +commandent commander ver 63.49 80.34 1.14 2.64 ind:pre:3p; +commander commander ver 63.49 80.34 13.50 11.55 ind:pre:2p;inf; +commandera commander ver 63.49 80.34 0.70 0.14 ind:fut:3s; +commanderai commander ver 63.49 80.34 0.84 0.27 ind:fut:1s; +commanderait commander ver 63.49 80.34 0.04 0.20 cnd:pre:3s; +commanderas commander ver 63.49 80.34 0.28 0.14 ind:fut:2s; +commanderez commander ver 63.49 80.34 0.22 0.00 ind:fut:2p; +commanderie commanderie nom f s 0.14 0.14 0.14 0.07 +commanderies commanderie nom f p 0.14 0.14 0.00 0.07 +commanderons commander ver 63.49 80.34 0.03 0.07 ind:fut:1p; +commanderont commander ver 63.49 80.34 0.01 0.07 ind:fut:3p; +commandes commande nom f p 31.36 18.72 11.96 6.08 +commandeur commandeur nom m s 2.55 0.74 2.52 0.61 +commandeurs commandeur nom m p 2.55 0.74 0.03 0.14 +commandez commander ver 63.49 80.34 2.84 0.34 imp:pre:2p;ind:pre:2p; +commandiez commander ver 63.49 80.34 0.32 0.07 ind:imp:2p; +commandions commander ver 63.49 80.34 0.02 0.14 ind:imp:1p; +commanditaire commanditaire nom s 1.02 1.08 0.82 0.68 +commanditaires commanditaire nom p 1.02 1.08 0.20 0.41 +commandite commanditer ver 0.68 0.20 0.06 0.00 ind:pre:1s;ind:pre:3s; +commanditer commanditer ver 0.68 0.20 0.06 0.14 inf; +commandites commanditer ver 0.68 0.20 0.10 0.00 ind:pre:2s; +commandité commanditer ver m s 0.68 0.20 0.42 0.00 par:pas; +commanditée commanditer ver f s 0.68 0.20 0.03 0.07 par:pas; +commanditées commanditer ver f p 0.68 0.20 0.01 0.00 par:pas; +commando commando nom m s 5.39 6.82 4.01 3.85 +commandons commander ver 63.49 80.34 0.69 0.07 imp:pre:1p;ind:pre:1p; +commando_suicide commando_suicide nom m p 0.01 0.00 0.01 0.00 +commandos commando nom m p 5.39 6.82 1.38 2.97 +commandât commander ver 63.49 80.34 0.00 0.14 sub:imp:3s; +commandèrent commander ver 63.49 80.34 0.00 1.01 ind:pas:3p; +commandé commander ver m s 63.49 80.34 14.77 12.30 par:pas; +commandée commander ver f s 63.49 80.34 1.30 3.04 par:pas; +commandées commander ver f p 63.49 80.34 0.47 1.28 par:pas; +commandés commander ver m p 63.49 80.34 0.64 1.76 par:pas; +comme comme con 2326.08 3429.32 2326.08 3429.32 +commedia_dell_arte commedia_dell_arte nom f s 0.02 0.14 0.02 0.14 +commence commencer ver 436.83 421.89 143.51 82.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +commencement commencement nom m s 6.41 16.55 6.22 15.68 +commencements commencement nom m p 6.41 16.55 0.20 0.88 +commencent commencer ver 436.83 421.89 11.69 13.85 ind:pre:3p; +commencer commencer ver 436.83 421.89 92.51 42.50 inf; +commencera commencer ver 436.83 421.89 4.70 1.89 ind:fut:3s; +commencerai commencer ver 436.83 421.89 1.61 0.54 ind:fut:1s; +commenceraient commencer ver 436.83 421.89 0.04 0.68 cnd:pre:3p; +commencerais commencer ver 436.83 421.89 1.01 0.61 cnd:pre:1s;cnd:pre:2s; +commencerait commencer ver 436.83 421.89 0.37 1.82 cnd:pre:3s; +commenceras commencer ver 436.83 421.89 0.54 0.20 ind:fut:2s; +commencerez commencer ver 436.83 421.89 0.51 0.07 ind:fut:2p; +commenceriez commencer ver 436.83 421.89 0.06 0.00 cnd:pre:2p; +commencerions commencer ver 436.83 421.89 0.14 0.00 cnd:pre:1p; +commencerons commencer ver 436.83 421.89 1.55 0.14 ind:fut:1p; +commenceront commencer ver 436.83 421.89 1.02 0.61 ind:fut:3p; +commences commencer ver 436.83 421.89 16.10 2.91 ind:pre:2s;sub:pre:2s; +commencez commencer ver 436.83 421.89 17.43 2.36 imp:pre:2p;ind:pre:2p; +commenciez commencer ver 436.83 421.89 0.91 0.34 ind:imp:2p; +commencions commencer ver 436.83 421.89 0.49 1.69 ind:imp:1p; +commencèrent commencer ver 436.83 421.89 0.88 9.39 ind:pas:3p; +commencé commencer ver m s 436.83 421.89 102.62 73.99 par:pas;par:pas;par:pas; +commencée commencer ver f s 436.83 421.89 1.64 4.32 par:pas; +commencées commencer ver f p 436.83 421.89 0.05 0.74 par:pas; +commencés commencer ver m p 436.83 421.89 0.09 0.88 par:pas; +commensal commensal nom m s 0.02 0.88 0.00 0.27 +commensalisme commensalisme nom m s 0.00 0.07 0.00 0.07 +commensaux commensal nom m p 0.02 0.88 0.02 0.61 +commensurable commensurable adj s 0.00 0.14 0.00 0.07 +commensurables commensurable adj p 0.00 0.14 0.00 0.07 +comment comment con 558.33 241.35 558.33 241.35 +commenta commenter ver 2.70 19.93 0.04 3.04 ind:pas:3s; +commentai commenter ver 2.70 19.93 0.00 0.14 ind:pas:1s; +commentaient commenter ver 2.70 19.93 0.00 0.81 ind:imp:3p; +commentaire commentaire nom m s 13.94 20.81 8.21 8.51 +commentaires commentaire nom m p 13.94 20.81 5.73 12.30 +commentais commenter ver 2.70 19.93 0.01 0.20 ind:imp:1s;ind:imp:2s; +commentait commenter ver 2.70 19.93 0.00 3.45 ind:imp:3s; +commentant commenter ver 2.70 19.93 0.20 1.49 par:pre; +commentateur commentateur nom m s 0.61 1.89 0.25 0.68 +commentateurs commentateur nom m p 0.61 1.89 0.32 1.22 +commentatrice commentateur nom f s 0.61 1.89 0.04 0.00 +commente commenter ver 2.70 19.93 0.17 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +commentent commenter ver 2.70 19.93 0.01 0.68 ind:pre:3p; +commenter commenter ver 2.70 19.93 1.40 3.51 inf; +commentera commenter ver 2.70 19.93 0.01 0.07 ind:fut:3s; +commenterai commenter ver 2.70 19.93 0.01 0.07 ind:fut:1s; +commenterait commenter ver 2.70 19.93 0.01 0.00 cnd:pre:3s; +commentez commenter ver 2.70 19.93 0.52 0.00 imp:pre:2p;ind:pre:2p; +commença commencer ver 436.83 421.89 3.95 51.35 ind:pas:3s; +commençai commencer ver 436.83 421.89 0.44 6.96 ind:pas:1s; +commençaient commencer ver 436.83 421.89 0.93 20.20 ind:imp:3p; +commençais commencer ver 436.83 421.89 6.38 14.73 ind:imp:1s;ind:imp:2s; +commençait commencer ver 436.83 421.89 7.69 74.66 ind:imp:3s; +commençant commencer ver 436.83 421.89 2.76 8.04 par:pre; +commençante commençant adj f s 0.00 1.15 0.00 0.74 +commençantes commençant adj f p 0.00 1.15 0.00 0.07 +commençants commençant adj m p 0.00 1.15 0.00 0.14 +commenças commencer ver 436.83 421.89 0.00 0.14 ind:pas:2s; +commençâmes commencer ver 436.83 421.89 0.02 0.61 ind:pas:1p; +commençons commencer ver 436.83 421.89 15.20 2.30 imp:pre:1p;ind:pre:1p; +commençât commencer ver 436.83 421.89 0.00 0.88 sub:imp:3s; +commentions commenter ver 2.70 19.93 0.00 0.34 ind:imp:1p; +commenté commenter ver m s 2.70 19.93 0.08 1.42 par:pas; +commentée commenter ver f s 2.70 19.93 0.14 0.68 par:pas; +commentées commenter ver f p 2.70 19.93 0.01 0.47 par:pas; +commentés commenter ver m p 2.70 19.93 0.10 0.47 par:pas; +commerce commerce nom m s 19.57 29.93 18.55 29.05 +commercent commercer ver 1.01 1.01 0.11 0.00 ind:pre:3p; +commercer commercer ver 1.01 1.01 0.27 0.20 inf; +commerces commerce nom m p 19.57 29.93 1.01 0.88 +commercial commercial adj m s 13.13 9.73 8.47 4.12 +commerciale commercial adj f s 13.13 9.73 2.39 2.77 +commercialement commercialement adv 0.16 0.27 0.16 0.27 +commerciales commercial adj f p 13.13 9.73 1.03 1.55 +commercialisable commercialisable adj s 0.02 0.00 0.02 0.00 +commercialisation commercialisation nom f s 0.15 0.41 0.15 0.41 +commercialiser commercialiser ver 0.47 0.20 0.18 0.14 inf; +commercialisera commercialiser ver 0.47 0.20 0.01 0.00 ind:fut:3s; +commercialisé commercialiser ver m s 0.47 0.20 0.28 0.07 par:pas; +commerciaux commercial adj m p 13.13 9.73 1.24 1.28 +commerciez commercer ver 1.01 1.01 0.01 0.00 ind:imp:2p; +commercé commercer ver m s 1.01 1.01 0.08 0.07 par:pas; +commerçait commercer ver 1.01 1.01 0.01 0.20 ind:imp:3s; +commerçant commerçant nom m s 4.34 16.28 1.54 4.19 +commerçante commerçant nom f s 4.34 16.28 0.11 1.28 +commerçantes commerçant adj f p 0.99 2.57 0.02 0.20 +commerçants commerçant nom m p 4.34 16.28 2.69 10.81 +commerçons commercer ver 1.01 1.01 0.00 0.07 ind:pre:1p; +commet commettre ver 47.45 37.16 3.12 1.62 ind:pre:3s; +commets commettre ver 47.45 37.16 0.97 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +commettaient commettre ver 47.45 37.16 0.05 0.47 ind:imp:3p; +commettais commettre ver 47.45 37.16 0.06 0.41 ind:imp:1s;ind:imp:2s; +commettait commettre ver 47.45 37.16 0.09 0.88 ind:imp:3s; +commettant commettre ver 47.45 37.16 0.14 0.27 par:pre; +commettants commettant nom m p 0.02 0.07 0.01 0.07 +commette commettre ver 47.45 37.16 0.17 0.27 sub:pre:1s;sub:pre:3s; +commettent commettre ver 47.45 37.16 0.90 0.95 ind:pre:3p; +commettes commettre ver 47.45 37.16 0.04 0.00 sub:pre:2s; +commettez commettre ver 47.45 37.16 0.82 0.00 imp:pre:2p;ind:pre:2p; +commettiez commettre ver 47.45 37.16 0.06 0.00 ind:imp:2p; +commettions commettre ver 47.45 37.16 0.00 0.14 ind:imp:1p; +commettons commettre ver 47.45 37.16 0.27 0.07 imp:pre:1p;ind:pre:1p; +commettra commettre ver 47.45 37.16 0.11 0.20 ind:fut:3s; +commettrai commettre ver 47.45 37.16 0.17 0.34 ind:fut:1s; +commettraient commettre ver 47.45 37.16 0.03 0.27 cnd:pre:3p; +commettrais commettre ver 47.45 37.16 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +commettrait commettre ver 47.45 37.16 0.23 0.27 cnd:pre:3s; +commettras commettre ver 47.45 37.16 0.33 0.07 ind:fut:2s; +commettre commettre ver 47.45 37.16 9.69 8.99 inf; +commettrez commettre ver 47.45 37.16 0.04 0.00 ind:fut:2p; +comminatoire comminatoire adj s 0.00 0.68 0.00 0.47 +comminatoires comminatoire adj p 0.00 0.68 0.00 0.20 +comminutive comminutif adj f s 0.01 0.00 0.01 0.00 +commirent commettre ver 47.45 37.16 0.01 0.27 ind:pas:3p; +commis_voyageur commis_voyageur nom m s 0.05 0.41 0.05 0.20 +commis_voyageur commis_voyageur nom m p 0.05 0.41 0.00 0.20 +commis commettre ver m 47.45 37.16 27.91 15.81 ind:pas:1s;par:pas;par:pas; +commise commettre ver f s 47.45 37.16 0.94 1.89 par:pas; +commises commettre ver f p 47.45 37.16 0.94 2.57 par:pas; +commissaire_adjoint commissaire_adjoint nom s 0.02 0.07 0.02 0.07 +commissaire_priseur commissaire_priseur nom m s 0.06 0.81 0.06 0.61 +commissaire commissaire nom s 43.39 36.69 42.99 32.09 +commissaire_priseur commissaire_priseur nom m p 0.06 0.81 0.00 0.20 +commissaires commissaire nom p 43.39 36.69 0.40 4.59 +commissariat commissariat nom m s 15.05 12.70 14.61 11.35 +commissariats commissariat nom m p 15.05 12.70 0.44 1.35 +commission commission nom f s 24.50 17.43 22.00 10.81 +commissionnaire commissionnaire nom s 0.79 1.22 0.79 0.95 +commissionnaires commissionnaire nom p 0.79 1.22 0.00 0.27 +commissionné commissionner ver m s 0.01 0.07 0.01 0.07 par:pas; +commissions commission nom f p 24.50 17.43 2.50 6.62 +commissurale commissural adj f s 0.00 0.07 0.00 0.07 +commissure commissure nom f s 0.02 5.41 0.00 2.43 +commissures commissure nom f p 0.02 5.41 0.02 2.97 +commisération commisération nom f s 0.14 2.50 0.14 2.50 +commit commettre ver 47.45 37.16 0.20 0.81 ind:pas:3s; +commode_toilette commode_toilette nom f s 0.00 0.14 0.00 0.14 +commode commode adj s 4.96 17.16 4.43 15.74 +commodes commode adj p 4.96 17.16 0.52 1.42 +commodité commodité nom f s 0.40 3.31 0.26 1.89 +commodités commodité nom f p 0.40 3.31 0.14 1.42 +commodore commodore nom m s 1.00 0.07 0.95 0.07 +commodores commodore nom m p 1.00 0.07 0.04 0.00 +commodément commodément adv 0.09 1.35 0.09 1.35 +commotion commotion nom f s 2.24 0.81 2.03 0.68 +commotionnerait commotionner ver 0.14 0.54 0.00 0.07 cnd:pre:3s; +commotionné commotionner ver m s 0.14 0.54 0.05 0.20 par:pas; +commotionnée commotionner ver f s 0.14 0.54 0.08 0.14 par:pas; +commotionnés commotionner ver m p 0.14 0.54 0.01 0.14 par:pas; +commotions commotion nom f p 2.24 0.81 0.21 0.14 +commère commère nom f s 2.36 3.78 2.01 1.35 +commères commère nom f p 2.36 3.78 0.34 2.43 +commuais commuer ver 0.47 0.54 0.00 0.07 ind:imp:1s; +commuant commuer ver 0.47 0.54 0.00 0.07 par:pre; +commuent commuer ver 0.47 0.54 0.01 0.00 ind:pre:3p; +commuer commuer ver 0.47 0.54 0.08 0.07 inf; +commémorait commémorer ver 0.64 1.69 0.00 0.14 ind:imp:3s; +commémorant commémorer ver 0.64 1.69 0.04 0.27 par:pre; +commémoratif commémoratif adj m s 0.84 1.35 0.16 0.47 +commémoratifs commémoratif adj m p 0.84 1.35 0.04 0.07 +commémoration commémoration nom f s 0.45 1.22 0.42 0.95 +commémorations commémoration nom f p 0.45 1.22 0.04 0.27 +commémorative commémoratif adj f s 0.84 1.35 0.56 0.61 +commémoratives commémoratif adj f p 0.84 1.35 0.08 0.20 +commémore commémorer ver 0.64 1.69 0.04 0.34 ind:pre:3s; +commémorent commémorer ver 0.64 1.69 0.01 0.14 ind:pre:3p; +commémorer commémorer ver 0.64 1.69 0.48 0.81 inf; +commémorions commémorer ver 0.64 1.69 0.01 0.00 ind:imp:1p; +commémorons commémorer ver 0.64 1.69 0.04 0.00 ind:pre:1p; +commémoré commémorer ver m s 0.64 1.69 0.01 0.00 par:pas; +commun commun nom m s 13.98 22.77 13.84 21.49 +communal communal adj m s 1.58 9.12 0.53 6.35 +communale communal adj f s 1.58 9.12 0.71 2.36 +communales communal adj f p 1.58 9.12 0.03 0.41 +communard communard nom m s 0.10 0.88 0.10 0.14 +communards communard nom m p 0.10 0.88 0.00 0.74 +communautaire communautaire adj s 1.15 1.49 0.89 1.01 +communautaires communautaire adj p 1.15 1.49 0.26 0.47 +communauté communauté nom f s 23.36 12.64 22.10 10.95 +communautés communauté nom f p 23.36 12.64 1.25 1.69 +communaux communal adj m p 1.58 9.12 0.30 0.00 +commune commun adj f s 25.08 75.95 7.17 28.58 +communes commun adj f p 25.08 75.95 1.54 4.39 +communia communier ver 1.75 6.62 0.00 0.07 ind:pas:3s; +communiaient communier ver 1.75 6.62 0.00 0.54 ind:imp:3p; +communiais communier ver 1.75 6.62 0.11 0.34 ind:imp:1s; +communiait communier ver 1.75 6.62 0.02 0.41 ind:imp:3s; +communiant communiant nom m s 0.28 3.18 0.14 0.81 +communiante communiant nom f s 0.28 3.18 0.14 1.35 +communiantes communiant nom f p 0.28 3.18 0.00 0.27 +communiants communiant nom m p 0.28 3.18 0.01 0.74 +communiasse communier ver 1.75 6.62 0.00 0.07 sub:imp:1s; +communicabilité communicabilité nom f s 0.00 0.07 0.00 0.07 +communicable communicable adj s 0.01 0.14 0.00 0.07 +communicables communicable adj m p 0.01 0.14 0.01 0.07 +communicant communicant nom m s 0.03 0.00 0.01 0.00 +communicante communicant adj f s 0.10 0.61 0.03 0.00 +communicantes communicant adj f p 0.10 0.61 0.05 0.27 +communicants communicant adj m p 0.10 0.61 0.01 0.34 +communicateur communicateur nom m s 0.49 0.00 0.44 0.00 +communicateurs communicateur nom m p 0.49 0.00 0.05 0.00 +communicatif communicatif adj m s 0.16 2.70 0.12 1.15 +communicatifs communicatif adj m p 0.16 2.70 0.00 0.20 +communication communication nom f s 18.17 26.82 12.88 17.23 +communications communication nom f p 18.17 26.82 5.29 9.59 +communicative communicatif adj f s 0.16 2.70 0.04 1.35 +communie communier ver 1.75 6.62 0.42 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +communient communier ver 1.75 6.62 0.01 0.34 ind:pre:3p; +communier communier ver 1.75 6.62 0.95 2.36 inf; +communierons communier ver 1.75 6.62 0.00 0.07 ind:fut:1p; +communieront communier ver 1.75 6.62 0.00 0.07 ind:fut:3p; +communiez communier ver 1.75 6.62 0.04 0.14 imp:pre:2p;ind:pre:2p; +communion communion nom f s 5.01 13.04 4.76 11.96 +communions communion nom f p 5.01 13.04 0.26 1.08 +communiqua communiquer ver 19.09 26.49 0.00 1.08 ind:pas:3s; +communiquai communiquer ver 19.09 26.49 0.00 0.20 ind:pas:1s; +communiquaient communiquer ver 19.09 26.49 0.30 0.88 ind:imp:3p; +communiquais communiquer ver 19.09 26.49 0.07 0.14 ind:imp:1s;ind:imp:2s; +communiquait communiquer ver 19.09 26.49 0.39 2.36 ind:imp:3s; +communiquant communiquer ver 19.09 26.49 0.09 1.28 par:pre; +communiquassent communiquer ver 19.09 26.49 0.00 0.07 sub:imp:3p; +communique communiquer ver 19.09 26.49 3.17 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +communiquent communiquer ver 19.09 26.49 1.12 1.15 ind:pre:3p; +communiquer communiquer ver 19.09 26.49 10.78 10.61 inf;; +communiquera communiquer ver 19.09 26.49 0.21 0.00 ind:fut:3s; +communiquerai communiquer ver 19.09 26.49 0.08 0.00 ind:fut:1s; +communiqueraient communiquer ver 19.09 26.49 0.01 0.07 cnd:pre:3p; +communiquerait communiquer ver 19.09 26.49 0.00 0.14 cnd:pre:3s; +communiquerez communiquer ver 19.09 26.49 0.02 0.00 ind:fut:2p; +communiquerons communiquer ver 19.09 26.49 0.08 0.07 ind:fut:1p; +communiqueront communiquer ver 19.09 26.49 0.03 0.07 ind:fut:3p; +communiques communiquer ver 19.09 26.49 0.13 0.07 ind:pre:2s; +communiquez communiquer ver 19.09 26.49 0.82 0.07 imp:pre:2p;ind:pre:2p; +communiquiez communiquer ver 19.09 26.49 0.09 0.00 ind:imp:2p; +communiquions communiquer ver 19.09 26.49 0.02 0.20 ind:imp:1p; +communiquons communiquer ver 19.09 26.49 0.25 0.20 imp:pre:1p;ind:pre:1p; +communiquât communiquer ver 19.09 26.49 0.00 0.20 sub:imp:3s; +communiquèrent communiquer ver 19.09 26.49 0.00 0.14 ind:pas:3p; +communiqué communiqué nom m s 4.29 8.99 3.85 7.03 +communiquée communiquer ver f s 19.09 26.49 0.18 0.88 par:pas; +communiquées communiquer ver f p 19.09 26.49 0.08 0.07 par:pas; +communiqués communiqué nom m p 4.29 8.99 0.45 1.96 +communisant communisant adj m s 0.00 0.20 0.00 0.07 +communisants communisant adj m p 0.00 0.20 0.00 0.14 +communisme communisme nom m s 4.29 9.66 4.29 9.66 +communiste communiste adj s 13.47 22.70 10.26 16.35 +communistes communiste nom p 10.93 26.35 8.49 21.15 +communisée communiser ver f s 0.00 0.07 0.00 0.07 par:pas; +communièrent communier ver 1.75 6.62 0.00 0.07 ind:pas:3p; +communié communier ver m s 1.75 6.62 0.18 1.22 par:pas; +communs commun adj m p 25.08 75.95 3.83 10.81 +communément communément adv 0.54 2.50 0.54 2.50 +commérage commérage nom m s 1.54 1.28 0.18 0.14 +commérages commérage nom m p 1.54 1.28 1.36 1.15 +commérait commérer ver 0.04 0.07 0.01 0.07 ind:imp:3s; +commérer commérer ver 0.04 0.07 0.03 0.00 inf; +commutateur commutateur nom m s 0.48 2.77 0.38 2.57 +commutateurs commutateur nom m p 0.48 2.77 0.10 0.20 +commutation commutation nom f s 0.11 0.14 0.11 0.14 +commute commuter ver 0.08 0.00 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +commuter commuter ver 0.08 0.00 0.04 0.00 inf; +commué commuer ver m s 0.47 0.54 0.02 0.00 par:pas; +commuée commuer ver f s 0.47 0.54 0.36 0.34 par:pas; +comnène comnène adj m s 0.00 0.07 0.00 0.07 +compacité compacité nom f s 0.00 0.20 0.00 0.20 +compact compact adj m s 1.56 10.47 0.62 3.24 +compactage compactage nom m s 0.01 0.00 0.01 0.00 +compacte compact adj f s 1.56 10.47 0.81 4.66 +compactes compact adj f p 1.56 10.47 0.10 0.95 +compacteur compacteur nom m s 0.13 0.00 0.10 0.00 +compacteurs compacteur nom m p 0.13 0.00 0.03 0.00 +compacts compact nom m p 0.15 0.27 0.04 0.00 +compacté compacter ver m s 0.15 0.00 0.01 0.00 par:pas; +compadre compadre nom m s 0.42 0.00 0.37 0.00 +compadres compadre nom m p 0.42 0.00 0.05 0.00 +compagne compagnon nom f s 21.09 80.00 4.90 9.32 +compagnes compagne nom f p 1.12 0.00 1.12 0.00 +compagnie compagnie nom f s 73.78 97.16 68.90 90.88 +compagnies compagnie nom f p 73.78 97.16 4.88 6.28 +compagnon compagnon nom m s 21.09 80.00 8.40 34.26 +compagnonnage compagnonnage nom m s 0.14 0.68 0.14 0.61 +compagnonnages compagnonnage nom m p 0.14 0.68 0.00 0.07 +compagnonnes compagnon nom f p 21.09 80.00 0.00 0.07 +compagnons compagnon nom m p 21.09 80.00 7.79 28.85 +compara comparer ver 25.84 26.01 0.02 0.95 ind:pas:3s; +comparaît comparaître ver 2.52 3.31 0.19 0.14 ind:pre:3s; +comparaîtra comparaître ver 2.52 3.31 0.16 0.00 ind:fut:3s; +comparaîtrait comparaître ver 2.52 3.31 0.01 0.07 cnd:pre:3s; +comparaître comparaître ver 2.52 3.31 1.63 1.62 inf; +comparaîtrez comparaître ver 2.52 3.31 0.17 0.00 ind:fut:2p; +comparaîtrons comparaître ver 2.52 3.31 0.00 0.07 ind:fut:1p; +comparabilité comparabilité nom f s 0.01 0.00 0.01 0.00 +comparable comparable adj s 2.04 6.08 1.93 4.73 +comparables comparable adj p 2.04 6.08 0.11 1.35 +comparai comparer ver 25.84 26.01 0.01 0.14 ind:pas:1s; +comparaient comparer ver 25.84 26.01 0.02 0.68 ind:imp:3p; +comparais comparaître ver 2.52 3.31 0.17 0.34 ind:pre:1s;ind:pre:2s; +comparaison comparaison nom f s 5.25 13.72 4.84 11.35 +comparaisons comparaison nom f p 5.25 13.72 0.41 2.36 +comparaissaient comparaître ver 2.52 3.31 0.00 0.27 ind:imp:3p; +comparaissait comparaître ver 2.52 3.31 0.01 0.00 ind:imp:3s; +comparaissant comparaître ver 2.52 3.31 0.00 0.14 par:pre; +comparaissent comparaître ver 2.52 3.31 0.02 0.00 ind:pre:3p; +comparaisses comparaître ver 2.52 3.31 0.01 0.00 sub:pre:2s; +comparaissons comparaître ver 2.52 3.31 0.01 0.00 ind:pre:1p; +comparait comparer ver 25.84 26.01 0.19 3.31 ind:imp:3s; +comparant comparer ver 25.84 26.01 0.56 1.22 par:pre; +comparateur comparateur nom m s 0.03 0.00 0.03 0.00 +comparatif comparatif adj m s 0.50 0.47 0.14 0.07 +comparatifs comparatif adj m p 0.50 0.47 0.04 0.07 +comparative comparatif adj f s 0.50 0.47 0.18 0.27 +comparativement comparativement adv 0.19 0.07 0.19 0.07 +comparatives comparatif adj f p 0.50 0.47 0.14 0.07 +compare comparer ver 25.84 26.01 4.00 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +comparent comparer ver 25.84 26.01 0.14 0.34 ind:pre:3p; +comparer comparer ver 25.84 26.01 9.01 8.11 inf; +comparera comparer ver 25.84 26.01 0.21 0.14 ind:fut:3s; +comparerai comparer ver 25.84 26.01 0.05 0.07 ind:fut:1s; +comparerais comparer ver 25.84 26.01 0.04 0.00 cnd:pre:1s; +comparerons comparer ver 25.84 26.01 0.36 0.00 ind:fut:1p; +compareront comparer ver 25.84 26.01 0.00 0.07 ind:fut:3p; +compares comparer ver 25.84 26.01 0.69 0.07 ind:pre:2s; +comparez comparer ver 25.84 26.01 1.60 0.20 imp:pre:2p;ind:pre:2p; +compariez comparer ver 25.84 26.01 0.07 0.07 ind:imp:2p; +comparions comparer ver 25.84 26.01 0.02 0.27 ind:imp:1p; +comparoir comparoir ver 0.01 0.00 0.01 0.00 inf; +comparons comparer ver 25.84 26.01 0.17 0.14 imp:pre:1p;ind:pre:1p; +comparse comparse nom s 0.18 1.76 0.13 0.54 +comparses comparse nom p 0.18 1.76 0.05 1.22 +compartiment compartiment nom m s 6.73 13.58 5.58 10.54 +compartimentage compartimentage nom m s 0.00 0.07 0.00 0.07 +compartimentaient compartimenter ver 0.10 0.27 0.00 0.07 ind:imp:3p; +compartimentant compartimenter ver 0.10 0.27 0.01 0.07 par:pre; +compartimente compartimenter ver 0.10 0.27 0.01 0.00 imp:pre:2s; +compartimenter compartimenter ver 0.10 0.27 0.07 0.00 inf; +compartiments compartiment nom m p 6.73 13.58 1.15 3.04 +compartimenté compartimenté adj m s 0.02 0.20 0.02 0.14 +compartimentée compartimenter ver f s 0.10 0.27 0.00 0.07 par:pas; +comparé comparer ver m s 25.84 26.01 6.47 2.36 par:pas; +comparu comparaître ver m s 2.52 3.31 0.13 0.41 par:pas; +comparée comparer ver f s 25.84 26.01 1.50 2.09 par:pas; +comparées comparer ver f p 25.84 26.01 0.35 0.68 par:pas; +comparés comparer ver m p 25.84 26.01 0.28 1.28 par:pas; +comparut comparaître ver 2.52 3.31 0.02 0.27 ind:pas:3s; +comparution comparution nom f s 0.34 0.34 0.34 0.34 +compas compas nom m 1.50 2.84 1.50 2.84 +compassion compassion nom f s 10.15 7.30 10.15 7.30 +compassé compassé adj m s 0.00 1.76 0.00 0.88 +compassée compassé adj f s 0.00 1.76 0.00 0.27 +compassées compassé adj f p 0.00 1.76 0.00 0.14 +compassés compassé adj m p 0.00 1.76 0.00 0.47 +compati compatir ver m s 3.46 2.57 0.04 0.07 par:pas; +compatibilité compatibilité nom f s 0.40 0.00 0.40 0.00 +compatible compatible adj s 2.52 2.09 1.25 1.62 +compatibles compatible adj p 2.52 2.09 1.27 0.47 +compatie compatir ver f s 3.46 2.57 0.06 0.00 par:pas; +compatir compatir ver 3.46 2.57 0.47 0.54 inf; +compatira compatir ver 3.46 2.57 0.02 0.00 ind:fut:3s; +compatirait compatir ver 3.46 2.57 0.03 0.00 cnd:pre:3s; +compatirent compatir ver 3.46 2.57 0.00 0.07 ind:pas:3p; +compatis compatir ver m p 3.46 2.57 2.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +compatissaient compatir ver 3.46 2.57 0.00 0.07 ind:imp:3p; +compatissais compatir ver 3.46 2.57 0.05 0.20 ind:imp:1s;ind:imp:2s; +compatissait compatir ver 3.46 2.57 0.02 0.14 ind:imp:3s; +compatissant compatissant adj m s 1.59 3.18 1.01 1.35 +compatissante compatissant adj f s 1.59 3.18 0.39 0.88 +compatissantes compatissant adj f p 1.59 3.18 0.07 0.20 +compatissants compatissant adj m p 1.59 3.18 0.11 0.74 +compatisse compatir ver 3.46 2.57 0.02 0.00 sub:pre:1s;sub:pre:3s; +compatissent compatir ver 3.46 2.57 0.01 0.14 ind:pre:3p; +compatissez compatir ver 3.46 2.57 0.10 0.14 imp:pre:2p;ind:pre:2p; +compatissons compatir ver 3.46 2.57 0.14 0.07 imp:pre:1p;ind:pre:1p; +compatit compatir ver 3.46 2.57 0.41 0.54 ind:pre:3s;ind:pas:3s; +compatriote compatriote nom s 4.76 9.05 1.48 2.23 +compatriotes compatriote nom p 4.76 9.05 3.29 6.82 +compendium compendium nom m s 0.01 0.07 0.01 0.00 +compendiums compendium nom m p 0.01 0.07 0.00 0.07 +compensa compenser ver 4.59 9.32 0.01 0.20 ind:pas:3s; +compensaient compenser ver 4.59 9.32 0.01 0.54 ind:imp:3p; +compensais compenser ver 4.59 9.32 0.00 0.07 ind:imp:1s; +compensait compenser ver 4.59 9.32 0.04 1.08 ind:imp:3s; +compensant compenser ver 4.59 9.32 0.02 0.41 par:pre; +compensateur compensateur adj m s 0.12 0.00 0.05 0.00 +compensateurs compensateur adj m p 0.12 0.00 0.06 0.00 +compensation compensation nom f s 3.33 5.81 2.83 4.39 +compensations compensation nom f p 3.33 5.81 0.49 1.42 +compensatoire compensatoire adj s 0.02 0.34 0.02 0.34 +compense compenser ver 4.59 9.32 0.99 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compensent compenser ver 4.59 9.32 0.26 0.20 ind:pre:3p; +compenser compenser ver 4.59 9.32 2.06 3.99 inf; +compensera compenser ver 4.59 9.32 0.32 0.00 ind:fut:3s; +compenserais compenser ver 4.59 9.32 0.01 0.00 cnd:pre:2s; +compenserait compenser ver 4.59 9.32 0.17 0.41 cnd:pre:3s; +compensez compenser ver 4.59 9.32 0.28 0.00 imp:pre:2p;ind:pre:2p; +compensât compenser ver 4.59 9.32 0.00 0.14 sub:imp:3s; +compensèrent compenser ver 4.59 9.32 0.00 0.07 ind:pas:3p; +compensé compenser ver m s 4.59 9.32 0.31 0.61 par:pas; +compensée compenser ver f s 4.59 9.32 0.06 0.68 par:pas; +compensées compensé adj f p 0.21 0.95 0.04 0.61 +compensés compensé adj m p 0.21 0.95 0.13 0.00 +compil compil nom f s 0.19 0.00 0.19 0.00 +compilant compiler ver 0.58 0.54 0.14 0.27 par:pre; +compilateur compilateur nom m s 0.08 0.14 0.08 0.14 +compilation compilation nom f s 0.29 0.47 0.26 0.34 +compilations compilation nom f p 0.29 0.47 0.03 0.14 +compile compiler ver 0.58 0.54 0.09 0.07 imp:pre:2s;ind:pre:3s; +compiler compiler ver 0.58 0.54 0.23 0.00 inf; +compilons compiler ver 0.58 0.54 0.01 0.00 ind:pre:1p; +compilé compiler ver m s 0.58 0.54 0.11 0.07 par:pas; +compilées compiler ver f p 0.58 0.54 0.02 0.14 par:pas; +compissait compisser ver 0.01 0.27 0.00 0.07 ind:imp:3s; +compisse compisser ver 0.01 0.27 0.01 0.07 ind:pre:1s;ind:pre:3s; +compisser compisser ver 0.01 0.27 0.00 0.07 inf; +compissé compisser ver m s 0.01 0.27 0.00 0.07 par:pas; +complaît complaire ver 0.93 4.19 0.16 0.47 ind:pre:3s; +complainte complainte nom f s 0.66 2.30 0.61 1.62 +complaintes complainte nom f p 0.66 2.30 0.04 0.68 +complairait complaire ver 0.93 4.19 0.00 0.14 cnd:pre:3s; +complaire complaire ver 0.93 4.19 0.19 1.08 inf; +complais complaire ver 0.93 4.19 0.34 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +complaisaient complaire ver 0.93 4.19 0.00 0.14 ind:imp:3p; +complaisais complaire ver 0.93 4.19 0.00 0.14 ind:imp:1s; +complaisait complaire ver 0.93 4.19 0.00 0.68 ind:imp:3s; +complaisamment complaisamment adv 0.01 3.18 0.01 3.18 +complaisance complaisance nom f s 0.94 11.22 0.80 10.00 +complaisances complaisance nom f p 0.94 11.22 0.14 1.22 +complaisant complaisant adj m s 0.61 4.93 0.42 1.82 +complaisante complaisant adj f s 0.61 4.93 0.03 1.96 +complaisantes complaisant adj f p 0.61 4.93 0.00 0.27 +complaisants complaisant adj m p 0.61 4.93 0.16 0.88 +complaise complaire ver 0.93 4.19 0.00 0.14 sub:pre:3s; +complaisent complaire ver 0.93 4.19 0.02 0.20 ind:pre:3p; +complaisez complaire ver 0.93 4.19 0.06 0.07 ind:pre:2p; +complaisiez complaire ver 0.93 4.19 0.00 0.14 ind:imp:2p; +complet_veston complet_veston nom m s 0.00 0.54 0.00 0.54 +complet complet adj m s 29.19 44.12 17.76 20.61 +complets complet adj m p 29.19 44.12 1.68 2.03 +complexait complexer ver 0.42 0.68 0.00 0.07 ind:imp:3s; +complexe complexe adj s 8.62 8.51 6.70 5.68 +complexer complexer ver 0.42 0.68 0.17 0.14 inf; +complexes complexe adj p 8.62 8.51 1.92 2.84 +complexion complexion nom f s 0.02 0.68 0.02 0.68 +complexité complexité nom f s 1.28 2.64 0.92 2.64 +complexités complexité nom f p 1.28 2.64 0.36 0.00 +complexé complexer ver m s 0.42 0.68 0.11 0.14 par:pas; +complexée complexé adj f s 0.12 0.41 0.05 0.00 +complexés complexer ver m p 0.42 0.68 0.03 0.00 par:pas; +complication complication nom f s 4.59 8.38 1.01 3.24 +complications complication nom f p 4.59 8.38 3.58 5.14 +complice complice nom s 14.41 14.73 9.22 7.64 +complices complice nom p 14.41 14.73 5.19 7.09 +complicité complicité nom f s 5.61 24.46 5.20 22.03 +complicités complicité nom f p 5.61 24.46 0.42 2.43 +complies complies nom f p 0.09 0.95 0.09 0.95 +compliment compliment nom m s 17.18 15.00 8.29 5.54 +complimenta complimenter ver 1.22 1.55 0.00 0.07 ind:pas:3s; +complimentaient complimenter ver 1.22 1.55 0.00 0.14 ind:imp:3p; +complimentais complimenter ver 1.22 1.55 0.04 0.07 ind:imp:1s; +complimentait complimenter ver 1.22 1.55 0.03 0.20 ind:imp:3s; +complimentant complimenter ver 1.22 1.55 0.03 0.07 par:pre; +complimente complimenter ver 1.22 1.55 0.25 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +complimentent complimenter ver 1.22 1.55 0.01 0.07 ind:pre:3p; +complimenter complimenter ver 1.22 1.55 0.68 0.20 ind:pre:2p;inf; +complimenteraient complimenter ver 1.22 1.55 0.00 0.14 cnd:pre:3p; +complimentez complimenter ver 1.22 1.55 0.05 0.00 imp:pre:2p; +complimentât complimenter ver 1.22 1.55 0.00 0.07 sub:imp:3s; +compliments compliment nom m p 17.18 15.00 8.89 9.46 +complimenté complimenter ver m s 1.22 1.55 0.08 0.14 par:pas; +complimentée complimenter ver f s 1.22 1.55 0.05 0.20 par:pas; +compliqua compliquer ver 22.30 18.85 0.11 0.14 ind:pas:3s; +compliquaient compliquer ver 22.30 18.85 0.15 0.95 ind:imp:3p; +compliquais compliquer ver 22.30 18.85 0.00 0.07 ind:imp:1s; +compliquait compliquer ver 22.30 18.85 0.02 0.81 ind:imp:3s; +compliquant compliquer ver 22.30 18.85 0.00 0.47 par:pre; +complique compliquer ver 22.30 18.85 4.74 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compliquent compliquer ver 22.30 18.85 0.40 0.47 ind:pre:3p; +compliquer compliquer ver 22.30 18.85 1.91 2.70 inf; +compliquera compliquer ver 22.30 18.85 0.02 0.07 ind:fut:3s; +compliquerai compliquer ver 22.30 18.85 0.11 0.00 ind:fut:1s; +compliquerait compliquer ver 22.30 18.85 0.02 0.34 cnd:pre:3s; +compliques compliquer ver 22.30 18.85 0.68 0.41 ind:pre:2s; +compliquez compliquer ver 22.30 18.85 0.90 0.14 imp:pre:2p;ind:pre:2p; +compliquions compliquer ver 22.30 18.85 0.00 0.07 ind:imp:1p; +compliquons compliquer ver 22.30 18.85 0.51 0.14 imp:pre:1p;ind:pre:1p; +compliquèrent compliquer ver 22.30 18.85 0.00 0.07 ind:pas:3p; +compliqué compliqué adj m s 23.51 24.46 17.17 12.91 +compliquée compliqué adj f s 23.51 24.46 4.44 5.07 +compliquées compliqué adj f p 23.51 24.46 0.95 3.04 +compliqués compliqué adj m p 23.51 24.46 0.94 3.45 +complot complot nom m s 10.45 6.49 9.82 4.80 +complotai comploter ver 3.68 2.50 0.00 0.07 ind:pas:1s; +complotaient comploter ver 3.68 2.50 0.26 0.14 ind:imp:3p; +complotais comploter ver 3.68 2.50 0.01 0.00 ind:imp:2s; +complotait comploter ver 3.68 2.50 0.04 0.47 ind:imp:3s; +complotant comploter ver 3.68 2.50 0.19 0.14 par:pre; +complote comploter ver 3.68 2.50 0.61 0.47 ind:pre:1s;ind:pre:3s; +complotent comploter ver 3.68 2.50 0.32 0.14 ind:pre:3p; +comploter comploter ver 3.68 2.50 0.71 0.54 ind:pre:2p;inf; +comploteraient comploter ver 3.68 2.50 0.01 0.00 cnd:pre:3p; +comploterait comploter ver 3.68 2.50 0.01 0.00 cnd:pre:3s; +complotes comploter ver 3.68 2.50 0.20 0.00 ind:pre:2s; +comploteur comploteur nom m s 0.19 0.34 0.16 0.14 +comploteurs comploteur nom m p 0.19 0.34 0.01 0.20 +comploteuse comploteur nom f s 0.19 0.34 0.01 0.00 +complotez comploter ver 3.68 2.50 0.63 0.14 imp:pre:2p;ind:pre:2p; +complotiez comploter ver 3.68 2.50 0.15 0.00 ind:imp:2p; +complotons comploter ver 3.68 2.50 0.00 0.14 ind:pre:1p; +complots complot nom m p 10.45 6.49 0.63 1.69 +complotèrent comploter ver 3.68 2.50 0.01 0.00 ind:pas:3p; +comploté comploter ver m s 3.68 2.50 0.53 0.27 par:pas; +complète complet adj f s 29.19 44.12 8.84 18.18 +complètement complètement adv 105.33 81.49 105.33 81.49 +complètements complètement nom m p 0.16 0.00 0.06 0.00 +complètent compléter ver 4.89 14.39 0.37 0.41 ind:pre:3p; +complètes complet adj f p 29.19 44.12 0.92 3.31 +complu complu adj m s 0.00 0.47 0.00 0.47 +complément complément nom m s 1.25 3.51 0.96 2.77 +complémentaire complémentaire adj s 0.81 3.51 0.47 1.55 +complémentairement complémentairement adv 0.00 0.14 0.00 0.14 +complémentaires complémentaire adj p 0.81 3.51 0.34 1.96 +complémentarité complémentarité nom f s 0.03 0.14 0.03 0.14 +compléments complément nom m p 1.25 3.51 0.28 0.74 +complus complaire ver 0.93 4.19 0.00 0.07 ind:pas:1s; +complut complaire ver 0.93 4.19 0.00 0.14 ind:pas:3s; +compléta compléter ver 4.89 14.39 0.00 1.69 ind:pas:3s; +complétai compléter ver 4.89 14.39 0.00 0.14 ind:pas:1s; +complétaient compléter ver 4.89 14.39 0.01 1.15 ind:imp:3p; +complétais compléter ver 4.89 14.39 0.01 0.07 ind:imp:1s; +complétait compléter ver 4.89 14.39 0.21 1.49 ind:imp:3s; +complétant compléter ver 4.89 14.39 0.03 0.54 par:pre; +compléter compléter ver 4.89 14.39 2.02 4.46 inf; +complétera compléter ver 4.89 14.39 0.02 0.20 ind:fut:3s; +compléterai compléter ver 4.89 14.39 0.02 0.00 ind:fut:1s; +compléteraient compléter ver 4.89 14.39 0.00 0.14 cnd:pre:3p; +compléterait compléter ver 4.89 14.39 0.01 0.14 cnd:pre:3s; +compléteras compléter ver 4.89 14.39 0.00 0.07 ind:fut:2s; +compléterez compléter ver 4.89 14.39 0.01 0.07 ind:fut:2p; +compléteront compléter ver 4.89 14.39 0.01 0.00 ind:fut:3p; +complétez compléter ver 4.89 14.39 0.18 0.00 imp:pre:2p;ind:pre:2p; +complétiez compléter ver 4.89 14.39 0.01 0.07 ind:imp:2p; +complétons compléter ver 4.89 14.39 0.14 0.00 imp:pre:1p;ind:pre:1p; +complétèrent compléter ver 4.89 14.39 0.00 0.14 ind:pas:3p; +complété compléter ver m s 4.89 14.39 0.45 1.42 par:pas; +complétude complétude nom f s 0.14 0.07 0.14 0.07 +complétée compléter ver f s 4.89 14.39 0.11 0.68 par:pas; +complétées compléter ver f p 4.89 14.39 0.01 0.34 par:pas; +complétés compléter ver m p 4.89 14.39 0.12 0.20 par:pas; +compo compo nom f s 0.06 1.35 0.06 1.35 +componction componction nom f s 0.01 1.76 0.01 1.76 +components component nom m p 0.01 0.07 0.01 0.07 +comporta comporter ver 24.59 30.54 0.41 0.47 ind:pas:3s; +comportai comporter ver 24.59 30.54 0.01 0.07 ind:pas:1s; +comportaient comporter ver 24.59 30.54 0.21 1.69 ind:imp:3p; +comportais comporter ver 24.59 30.54 0.23 0.14 ind:imp:1s;ind:imp:2s; +comportait comporter ver 24.59 30.54 1.28 7.77 ind:imp:3s; +comportant comporter ver 24.59 30.54 0.23 1.22 par:pre; +comportassent comporter ver 24.59 30.54 0.00 0.07 sub:imp:3p; +comporte comporter ver 24.59 30.54 7.05 7.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +comportement comportement nom m s 20.94 17.03 19.68 15.27 +comportemental comportemental adj m s 0.79 0.00 0.21 0.00 +comportementale comportemental adj f s 0.79 0.00 0.40 0.00 +comportementales comportemental adj f p 0.79 0.00 0.10 0.00 +comportementalisme comportementalisme nom m s 0.00 0.07 0.00 0.07 +comportementaliste comportementaliste adj m s 0.04 0.07 0.04 0.07 +comportementaux comportemental adj m p 0.79 0.00 0.08 0.00 +comportements comportement nom m p 20.94 17.03 1.25 1.76 +comportent comporter ver 24.59 30.54 1.26 1.69 ind:pre:3p; +comporter comporter ver 24.59 30.54 6.02 6.49 inf; +comportera comporter ver 24.59 30.54 0.18 0.27 ind:fut:3s; +comporterai comporter ver 24.59 30.54 0.03 0.07 ind:fut:1s; +comporteraient comporter ver 24.59 30.54 0.02 0.20 cnd:pre:3p; +comporterais comporter ver 24.59 30.54 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +comporterait comporter ver 24.59 30.54 0.02 1.08 cnd:pre:3s; +comporterez comporter ver 24.59 30.54 0.05 0.00 ind:fut:2p; +comporteriez comporter ver 24.59 30.54 0.13 0.00 cnd:pre:2p; +comporterions comporter ver 24.59 30.54 0.01 0.07 cnd:pre:1p; +comporteront comporter ver 24.59 30.54 0.02 0.07 ind:fut:3p; +comportes comporter ver 24.59 30.54 2.20 0.07 ind:pre:2s;sub:pre:2s; +comportez comporter ver 24.59 30.54 1.63 0.07 imp:pre:2p;ind:pre:2p; +comportiez comporter ver 24.59 30.54 0.17 0.00 ind:imp:2p; +comportions comporter ver 24.59 30.54 0.01 0.14 ind:imp:1p; +comportons comporter ver 24.59 30.54 0.26 0.00 imp:pre:1p;ind:pre:1p; +comportât comporter ver 24.59 30.54 0.00 0.41 sub:imp:3s; +comporté comporter ver m s 24.59 30.54 1.85 0.68 par:pas; +comportée comporter ver f s 24.59 30.54 0.76 0.47 par:pas; +comportés comporter ver m p 24.59 30.54 0.53 0.07 par:pas; +composa composer ver 14.07 47.57 0.12 2.50 ind:pas:3s; +composai composer ver 14.07 47.57 0.00 0.41 ind:pas:1s; +composaient composer ver 14.07 47.57 0.14 4.39 ind:imp:3p; +composais composer ver 14.07 47.57 0.04 0.34 ind:imp:1s;ind:imp:2s; +composait composer ver 14.07 47.57 0.27 5.54 ind:imp:3s; +composant composant nom m s 2.81 1.49 0.96 0.07 +composante composant adj f s 0.60 0.34 0.15 0.07 +composantes composant nom f p 2.81 1.49 0.39 0.68 +composants composant nom m p 2.81 1.49 1.35 0.27 +compose composer ver 14.07 47.57 3.44 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +composent composer ver 14.07 47.57 0.47 3.11 ind:pre:3p; +composer composer ver 14.07 47.57 2.87 7.30 inf; +composera composer ver 14.07 47.57 0.04 0.27 ind:fut:3s; +composerai composer ver 14.07 47.57 0.12 0.00 ind:fut:1s; +composerait composer ver 14.07 47.57 0.01 0.20 cnd:pre:3s; +composeront composer ver 14.07 47.57 0.11 0.07 ind:fut:3p; +composes composer ver 14.07 47.57 0.20 0.07 ind:pre:2s; +composeur composeur nom m s 0.69 0.00 0.69 0.00 +composez composer ver 14.07 47.57 0.86 0.14 imp:pre:2p;ind:pre:2p; +composiez composer ver 14.07 47.57 0.03 0.00 ind:imp:2p; +composions composer ver 14.07 47.57 0.00 0.14 ind:imp:1p; +composite composite adj s 0.16 1.01 0.14 0.88 +composites composite nom m p 0.10 0.00 0.04 0.00 +compositeur compositeur nom m s 4.32 3.38 3.62 2.91 +compositeurs compositeur nom m p 4.32 3.38 0.61 0.47 +composition composition nom f s 3.99 17.43 3.56 14.59 +compositions composition nom f p 3.99 17.43 0.43 2.84 +compositrice compositeur nom f s 4.32 3.38 0.09 0.00 +composons composer ver 14.07 47.57 0.09 0.14 imp:pre:1p;ind:pre:1p; +compost compost nom m s 0.15 0.14 0.15 0.14 +composter composter ver 0.14 0.34 0.00 0.20 inf; +composteur composteur nom m s 0.00 0.54 0.00 0.47 +composteurs composteur nom m p 0.00 0.54 0.00 0.07 +compostez composter ver 0.14 0.34 0.00 0.07 imp:pre:2p; +composèrent composer ver 14.07 47.57 0.00 0.14 ind:pas:3p; +composté composter ver m s 0.14 0.34 0.14 0.07 par:pas; +composé composer ver m s 14.07 47.57 3.34 9.19 par:pas; +composée composer ver f s 14.07 47.57 1.38 4.19 par:pas; +composées composer ver f p 14.07 47.57 0.12 1.01 par:pas; +composés composé nom m p 0.70 1.08 0.35 0.14 +compote compote nom f s 3.01 3.31 3.00 2.77 +compotes compote nom f p 3.01 3.31 0.01 0.54 +compotier compotier nom m s 0.00 0.68 0.00 0.61 +compotiers compotier nom m p 0.00 0.68 0.00 0.07 +compound compound adj 0.02 0.00 0.02 0.00 +comprîmes comprendre ver 893.40 614.80 0.02 0.20 ind:pas:1p; +comprît comprendre ver 893.40 614.80 0.01 2.64 sub:imp:3s; +comprador comprador nom m s 0.02 0.00 0.02 0.00 +comprenaient comprendre ver 893.40 614.80 0.61 5.20 ind:imp:3p; +comprenais comprendre ver 893.40 614.80 5.34 24.12 ind:imp:1s;ind:imp:2s; +comprenait comprendre ver 893.40 614.80 4.69 41.28 ind:imp:3s; +comprenant comprendre ver 893.40 614.80 0.55 9.32 par:pre; +comprend comprendre ver 893.40 614.80 41.39 31.82 ind:pre:3s; +comprendra comprendre ver 893.40 614.80 7.10 4.32 ind:fut:3s; +comprendrai comprendre ver 893.40 614.80 2.63 1.42 ind:fut:1s; +comprendraient comprendre ver 893.40 614.80 0.90 1.01 cnd:pre:3p; +comprendrais comprendre ver 893.40 614.80 4.97 2.50 cnd:pre:1s;cnd:pre:2s; +comprendrait comprendre ver 893.40 614.80 3.20 5.00 cnd:pre:3s; +comprendras comprendre ver 893.40 614.80 6.82 2.97 ind:fut:2s; +comprendre comprendre ver 893.40 614.80 135.13 148.51 inf; +comprendrez comprendre ver 893.40 614.80 4.48 2.23 ind:fut:2p; +comprendriez comprendre ver 893.40 614.80 1.52 0.27 cnd:pre:2p; +comprendrions comprendre ver 893.40 614.80 0.04 0.07 cnd:pre:1p; +comprendrons comprendre ver 893.40 614.80 0.42 0.14 ind:fut:1p; +comprendront comprendre ver 893.40 614.80 2.84 1.15 ind:fut:3p; +comprends comprendre ver 893.40 614.80 368.53 103.18 imp:pre:2s;ind:pre:1s;ind:pre:2s; +comprenette comprenette nom f s 0.03 0.14 0.03 0.14 +comprenez comprendre ver 893.40 614.80 68.86 28.18 imp:pre:2p;ind:pre:2p; +compreniez comprendre ver 893.40 614.80 2.44 1.15 ind:imp:2p; +comprenions comprendre ver 893.40 614.80 0.33 1.82 ind:imp:1p; +comprenne comprendre ver 893.40 614.80 5.98 5.54 sub:pre:1s;sub:pre:3s; +comprennent comprendre ver 893.40 614.80 12.53 8.85 ind:pre:3p;sub:pre:3p; +comprennes comprendre ver 893.40 614.80 4.22 1.15 sub:pre:2s; +comprenons comprendre ver 893.40 614.80 3.83 2.23 imp:pre:1p;ind:pre:1p; +compresse compresse nom f s 1.86 2.03 0.76 0.68 +compresser compresser ver 0.51 0.61 0.16 0.20 inf; +compresses compresse nom f p 1.86 2.03 1.09 1.35 +compresseur compresseur nom m s 0.88 0.14 0.31 0.07 +compresseurs compresseur nom m p 0.88 0.14 0.57 0.07 +compressible compressible adj f s 0.01 0.14 0.01 0.00 +compressibles compressible adj p 0.01 0.14 0.00 0.14 +compressif compressif adj m s 0.07 0.00 0.07 0.00 +compression compression nom f s 1.45 0.74 1.21 0.47 +compressions compression nom f p 1.45 0.74 0.24 0.27 +compressé compresser ver m s 0.51 0.61 0.09 0.14 par:pas; +compressée compresser ver f s 0.51 0.61 0.17 0.07 par:pas; +compressées compressé adj f p 0.10 0.68 0.03 0.20 +compressés compressé adj m p 0.10 0.68 0.04 0.07 +comprima comprimer ver 1.15 3.99 0.14 0.20 ind:pas:3s; +comprimait comprimer ver 1.15 3.99 0.00 1.01 ind:imp:3s; +comprimant comprimer ver 1.15 3.99 0.00 0.61 par:pre; +comprime comprimer ver 1.15 3.99 0.16 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compriment comprimer ver 1.15 3.99 0.02 0.14 ind:pre:3p; +comprimer comprimer ver 1.15 3.99 0.20 0.61 inf; +comprimez comprimer ver 1.15 3.99 0.08 0.00 imp:pre:2p; +comprimèrent comprimer ver 1.15 3.99 0.00 0.07 ind:pas:3p; +comprimé comprimé nom m s 4.27 3.99 1.62 1.35 +comprimée comprimé adj f s 0.55 1.82 0.03 0.27 +comprimées comprimer ver f p 1.15 3.99 0.01 0.14 par:pas; +comprimés comprimé nom m p 4.27 3.99 2.65 2.64 +comprirent comprendre ver 893.40 614.80 0.14 1.69 ind:pas:3p; +compris comprendre ver m 893.40 614.80 198.16 136.62 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +comprise comprendre ver f s 893.40 614.80 3.32 2.91 par:pas; +comprises comprendre ver f p 893.40 614.80 0.66 0.41 par:pas; +comprisse comprendre ver 893.40 614.80 0.00 0.27 sub:imp:1s; +comprit comprendre ver 893.40 614.80 1.74 36.62 ind:pas:3s; +compromît compromettre ver 10.28 16.62 0.01 0.07 sub:imp:3s; +compromet compromettre ver 10.28 16.62 0.90 0.41 ind:pre:3s; +compromets compromettre ver 10.28 16.62 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +compromettaient compromettre ver 10.28 16.62 0.03 0.14 ind:imp:3p; +compromettait compromettre ver 10.28 16.62 0.02 1.15 ind:imp:3s; +compromettant compromettant adj m s 1.63 2.64 0.75 0.88 +compromettante compromettant adj f s 1.63 2.64 0.21 0.54 +compromettantes compromettant adj f p 1.63 2.64 0.32 0.47 +compromettants compromettant adj m p 1.63 2.64 0.35 0.74 +compromette compromettre ver 10.28 16.62 0.14 0.07 sub:pre:3s; +compromettent compromettre ver 10.28 16.62 0.06 0.27 ind:pre:3p; +compromettes compromettre ver 10.28 16.62 0.01 0.07 sub:pre:2s; +compromettez compromettre ver 10.28 16.62 0.27 0.07 imp:pre:2p;ind:pre:2p; +compromettiez compromettre ver 10.28 16.62 0.04 0.20 ind:imp:2p; +compromettrai compromettre ver 10.28 16.62 0.01 0.07 ind:fut:1s; +compromettrait compromettre ver 10.28 16.62 0.46 0.41 cnd:pre:3s; +compromettre compromettre ver 10.28 16.62 3.83 6.42 inf; +compromettrons compromettre ver 10.28 16.62 0.01 0.00 ind:fut:1p; +compromirent compromettre ver 10.28 16.62 0.00 0.07 ind:pas:3p; +compromis compromis nom m 6.26 5.88 6.26 5.88 +compromise compromettre ver f s 10.28 16.62 1.08 1.82 par:pas; +compromises compromettre ver f p 10.28 16.62 0.21 0.41 par:pas; +compromission compromission nom f s 0.29 1.62 0.16 0.34 +compromissions compromission nom f p 0.29 1.62 0.14 1.28 +compromissoire compromissoire adj f s 0.01 0.00 0.01 0.00 +compromit compromettre ver 10.28 16.62 0.00 0.27 ind:pas:3s; +compréhensible compréhensible adj s 4.47 3.04 4.25 2.50 +compréhensibles compréhensible adj p 4.47 3.04 0.21 0.54 +compréhensif compréhensif adj m s 5.21 4.93 2.73 2.36 +compréhensifs compréhensif adj m p 5.21 4.93 0.72 0.68 +compréhension compréhension nom f s 5.85 10.00 5.85 9.93 +compréhensions compréhension nom f p 5.85 10.00 0.00 0.07 +compréhensive compréhensif adj f s 5.21 4.93 1.67 1.55 +compréhensives compréhensif adj f p 5.21 4.93 0.08 0.34 +compta compter ver 227.77 203.72 0.95 5.47 ind:pas:3s; +comptabilisait comptabiliser ver 0.40 1.28 0.00 0.20 ind:imp:3s; +comptabilisant comptabiliser ver 0.40 1.28 0.00 0.20 par:pre; +comptabilisation comptabilisation nom f s 0.00 0.14 0.00 0.14 +comptabilise comptabiliser ver 0.40 1.28 0.04 0.14 ind:pre:1s;ind:pre:3s; +comptabiliser comptabiliser ver 0.40 1.28 0.09 0.61 inf; +comptabilisé comptabiliser ver m s 0.40 1.28 0.23 0.14 par:pas; +comptabilisées comptabiliser ver f p 0.40 1.28 0.01 0.00 par:pas; +comptabilisés comptabiliser ver m p 0.40 1.28 0.03 0.00 par:pas; +comptabilité comptabilité nom f s 4.37 4.53 4.37 4.39 +comptabilités comptabilité nom f p 4.37 4.53 0.00 0.14 +comptable comptable nom s 7.15 4.26 6.43 3.31 +comptables comptable nom p 7.15 4.26 0.72 0.95 +comptage comptage nom m s 0.30 0.14 0.30 0.14 +comptai compter ver 227.77 203.72 0.01 0.14 ind:pas:1s; +comptaient compter ver 227.77 203.72 0.93 8.04 ind:imp:3p; +comptais compter ver 227.77 203.72 7.39 7.03 ind:imp:1s;ind:imp:2s; +comptait compter ver 227.77 203.72 7.32 32.50 ind:imp:3s; +comptant compter ver 227.77 203.72 2.47 6.15 par:pre; +compte_fils compte_fils nom m 0.00 0.34 0.00 0.34 +compte_gouttes compte_gouttes nom m 0.45 1.42 0.45 1.42 +compte_rendu compte_rendu nom m s 2.21 0.14 2.06 0.07 +compte_tours compte_tours nom m 0.04 0.41 0.04 0.41 +compte compte nom m s 160.95 208.38 138.88 187.23 +comptent compter ver 227.77 203.72 8.09 6.69 ind:pre:3p; +compter compter ver 227.77 203.72 45.04 52.77 ind:pre:2p;inf; +comptera compter ver 227.77 203.72 1.62 0.88 ind:fut:3s; +compterai compter ver 227.77 203.72 0.40 0.27 ind:fut:1s; +compteraient compter ver 227.77 203.72 0.01 0.27 cnd:pre:3p; +compterais compter ver 227.77 203.72 0.49 0.07 cnd:pre:1s;cnd:pre:2s; +compterait compter ver 227.77 203.72 0.39 1.42 cnd:pre:3s; +compteras compter ver 227.77 203.72 0.18 0.00 ind:fut:2s; +compterez compter ver 227.77 203.72 0.04 0.07 ind:fut:2p; +compterons compter ver 227.77 203.72 0.02 0.14 ind:fut:1p; +compteront compter ver 227.77 203.72 0.37 0.27 ind:fut:3p; +compte_rendu compte_rendu nom m p 2.21 0.14 0.16 0.07 +comptes compte nom m p 160.95 208.38 22.07 21.15 +compteur compteur nom m s 4.81 5.95 4.27 4.19 +compteurs compteur nom m p 4.81 5.95 0.55 1.76 +comptez compter ver 227.77 203.72 21.36 5.88 imp:pre:2p;ind:pre:2p; +compère compère nom m s 2.13 3.85 1.70 2.36 +compères compère nom m p 2.13 3.85 0.42 1.49 +compète compéter ver 0.96 0.07 0.80 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compètes compéter ver 0.96 0.07 0.14 0.00 ind:pre:2s; +comptiez compter ver 227.77 203.72 1.38 0.20 ind:imp:2p;sub:pre:2p; +comptine comptine nom f s 2.00 1.76 1.73 1.22 +comptines comptine nom f p 2.00 1.76 0.28 0.54 +comptions compter ver 227.77 203.72 0.26 0.68 ind:imp:1p; +comptoir comptoir nom m s 8.66 41.55 8.49 39.53 +comptoirs comptoir nom m p 8.66 41.55 0.17 2.03 +comptons compter ver 227.77 203.72 2.17 2.84 imp:pre:1p;ind:pre:1p; +comptât compter ver 227.77 203.72 0.00 0.20 sub:imp:3s; +comptèrent compter ver 227.77 203.72 0.01 0.20 ind:pas:3p; +compté compter ver m s 227.77 203.72 10.34 11.55 par:pas; +comptée compter ver f s 227.77 203.72 0.12 0.88 par:pas; +comptées compter ver f p 227.77 203.72 0.25 1.28 par:pas; +comptés compter ver m p 227.77 203.72 1.96 2.84 par:pas; +compulsait compulser ver 0.27 1.69 0.00 0.27 ind:imp:3s; +compulsant compulser ver 0.27 1.69 0.01 0.20 par:pre; +compulse compulser ver 0.27 1.69 0.10 0.47 imp:pre:2s;ind:pre:3s; +compulser compulser ver 0.27 1.69 0.03 0.47 inf; +compulsez compulser ver 0.27 1.69 0.10 0.00 imp:pre:2p; +compulsif compulsif adj m s 1.04 0.14 0.72 0.07 +compulsifs compulsif adj m p 1.04 0.14 0.11 0.00 +compulsion compulsion nom f s 0.17 0.00 0.17 0.00 +compulsive compulsif adj f s 1.04 0.14 0.18 0.00 +compulsivement compulsivement adv 0.03 0.00 0.03 0.00 +compulsives compulsif adj f p 1.04 0.14 0.03 0.07 +compulsoire compulsoire nom m s 0.00 0.07 0.00 0.07 +compulsons compulser ver 0.27 1.69 0.00 0.07 ind:pre:1p; +compulsé compulser ver m s 0.27 1.69 0.02 0.14 par:pas; +compulsés compulser ver m p 0.27 1.69 0.00 0.07 par:pas; +comput comput nom m s 0.00 0.14 0.00 0.14 +compétant compéter ver 0.96 0.07 0.02 0.00 par:pre; +computations computation nom f p 0.00 0.07 0.00 0.07 +compétence compétence nom f s 5.98 5.07 2.12 3.24 +compétences compétence nom f p 5.98 5.07 3.86 1.82 +compétent compétent adj m s 7.44 3.11 4.45 1.08 +compétente compétent adj f s 7.44 3.11 1.05 1.08 +compétentes compétent adj f p 7.44 3.11 0.52 0.34 +compétents compétent adj m p 7.44 3.11 1.42 0.61 +computer computer nom m s 0.17 0.14 0.14 0.07 +computers computer nom m p 0.17 0.14 0.03 0.07 +computeur computeur nom m s 0.05 0.07 0.04 0.00 +computeurs computeur nom m p 0.05 0.07 0.01 0.07 +compétiteur compétiteur nom m s 0.34 0.20 0.28 0.00 +compétiteurs compétiteur nom m p 0.34 0.20 0.05 0.20 +compétitif compétitif adj m s 1.27 0.00 0.53 0.00 +compétitifs compétitif adj m p 1.27 0.00 0.22 0.00 +compétition compétition nom f s 9.15 4.80 8.43 3.85 +compétitions compétition nom f p 9.15 4.80 0.73 0.95 +compétitive compétitif adj f s 1.27 0.00 0.52 0.00 +compétitivité compétitivité nom f s 0.06 0.00 0.06 0.00 +compétitrice compétiteur nom f s 0.34 0.20 0.01 0.00 +comtal comtal adj m s 0.00 0.20 0.00 0.14 +comtale comtal adj f s 0.00 0.20 0.00 0.07 +comte comte nom m s 27.31 67.77 12.89 51.42 +comtes comte nom m p 27.31 67.77 0.74 2.64 +comtesse comte nom f s 27.31 67.77 13.69 12.43 +comtesses comtesse nom f p 0.05 0.00 0.05 0.00 +comète comète nom f s 2.28 2.50 1.96 2.30 +comètes comète nom f p 2.28 2.50 0.32 0.20 +comtois comtois adj m 0.00 0.27 0.00 0.07 +comtois comtois nom m 0.00 0.27 0.00 0.07 +comtoise comtois adj f s 0.00 0.27 0.00 0.20 +comtoise comtois nom f s 0.00 0.27 0.00 0.20 +comté comté nom m s 11.64 2.36 10.96 2.36 +comtés comté nom m p 11.64 2.36 0.68 0.00 +comédie comédie nom f s 22.11 29.73 20.87 25.68 +comédien comédien nom m s 6.06 10.74 3.02 5.27 +comédienne comédien nom f s 6.06 10.74 0.75 1.76 +comédiennes comédienne nom f p 0.44 0.00 0.44 0.00 +comédiens comédien nom m p 6.06 10.74 2.30 3.11 +comédies comédie nom f p 22.11 29.73 1.23 4.05 +comédons comédon nom m p 0.00 0.07 0.00 0.07 +con con pro_per s 7.87 4.59 7.87 4.59 +conard conard nom m s 0.19 0.47 0.16 0.27 +conarde conard nom f s 0.19 0.47 0.00 0.07 +conards conard nom m p 0.19 0.47 0.03 0.14 +conasse conasse nom f s 0.34 0.27 0.34 0.20 +conasses conasse nom f p 0.34 0.27 0.00 0.07 +concassage concassage nom m s 0.00 0.14 0.00 0.14 +concassait concasser ver 0.09 1.76 0.00 0.07 ind:imp:3s; +concassant concasser ver 0.09 1.76 0.00 0.14 par:pre; +concasse concasser ver 0.09 1.76 0.00 0.07 ind:pre:3s; +concassent concasser ver 0.09 1.76 0.00 0.07 ind:pre:3p; +concasser concasser ver 0.09 1.76 0.01 0.07 inf; +concasseur concasseur nom m s 0.19 0.68 0.17 0.27 +concasseurs concasseur nom m p 0.19 0.68 0.01 0.41 +concassé concasser ver m s 0.09 1.76 0.04 0.54 par:pas; +concassée concasser ver f s 0.09 1.76 0.01 0.27 par:pas; +concassées concasser ver f p 0.09 1.76 0.01 0.20 par:pas; +concassés concasser ver m p 0.09 1.76 0.01 0.34 par:pas; +concaténation concaténation nom f s 0.01 0.00 0.01 0.00 +concave concave adj s 0.20 1.22 0.19 1.08 +concaves concave adj p 0.20 1.22 0.01 0.14 +concavité concavité nom f s 0.00 0.34 0.00 0.34 +concentra concentrer ver 39.58 18.92 0.04 1.28 ind:pas:3s; +concentrai concentrer ver 39.58 18.92 0.00 0.27 ind:pas:1s; +concentraient concentrer ver 39.58 18.92 0.15 0.68 ind:imp:3p; +concentrais concentrer ver 39.58 18.92 0.16 0.00 ind:imp:1s;ind:imp:2s; +concentrait concentrer ver 39.58 18.92 0.14 1.42 ind:imp:3s; +concentrant concentrer ver 39.58 18.92 0.43 0.74 par:pre; +concentrateur concentrateur nom m s 0.12 0.00 0.12 0.00 +concentration concentration nom f s 8.54 10.41 8.46 10.27 +concentrationnaire concentrationnaire adj m s 0.32 0.61 0.32 0.34 +concentrationnaires concentrationnaire adj m p 0.32 0.61 0.00 0.27 +concentrations concentration nom f p 8.54 10.41 0.08 0.14 +concentre concentrer ver 39.58 18.92 12.05 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concentrent concentrer ver 39.58 18.92 0.30 0.20 ind:pre:3p; +concentrer concentrer ver 39.58 18.92 14.13 6.28 ind:pre:2p;inf; +concentrera concentrer ver 39.58 18.92 0.20 0.00 ind:fut:3s; +concentrerai concentrer ver 39.58 18.92 0.06 0.00 ind:fut:1s; +concentrerais concentrer ver 39.58 18.92 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +concentrerait concentrer ver 39.58 18.92 0.04 0.00 cnd:pre:3s; +concentrerons concentrer ver 39.58 18.92 0.05 0.00 ind:fut:1p; +concentreront concentrer ver 39.58 18.92 0.03 0.07 ind:fut:3p; +concentres concentrer ver 39.58 18.92 0.88 0.00 ind:pre:2s;sub:pre:2s; +concentrez concentrer ver 39.58 18.92 4.39 0.00 imp:pre:2p;ind:pre:2p; +concentriez concentrer ver 39.58 18.92 0.12 0.00 ind:imp:2p; +concentrions concentrer ver 39.58 18.92 0.04 0.00 ind:imp:1p; +concentrique concentrique adj s 0.16 4.12 0.00 0.54 +concentriques concentrique adj p 0.16 4.12 0.16 3.58 +concentrons concentrer ver 39.58 18.92 1.69 0.07 imp:pre:1p;ind:pre:1p; +concentré concentrer ver m s 39.58 18.92 2.55 2.30 par:pas; +concentrée concentrer ver f s 39.58 18.92 0.66 1.69 par:pas; +concentrées concentrer ver f p 39.58 18.92 0.32 0.61 par:pas; +concentrés concentrer ver m p 39.58 18.92 1.08 0.54 par:pas; +concept concept nom m s 8.66 3.24 7.63 2.03 +concepteur concepteur adj m s 0.51 0.00 0.50 0.00 +concepteurs concepteur nom m p 0.77 0.14 0.23 0.00 +conception conception nom f s 4.37 11.55 3.84 8.31 +conceptions conception nom f p 4.37 11.55 0.53 3.24 +conceptrice concepteur nom f s 0.77 0.14 0.05 0.00 +concepts concept nom m p 8.66 3.24 1.02 1.22 +conceptualise conceptualiser ver 0.04 0.00 0.01 0.00 ind:pre:1s; +conceptualiser conceptualiser ver 0.04 0.00 0.02 0.00 inf; +conceptualisé conceptualiser ver m s 0.04 0.00 0.01 0.00 par:pas; +conceptuel conceptuel adj m s 0.46 0.14 0.32 0.14 +conceptuelle conceptuel adj f s 0.46 0.14 0.07 0.00 +conceptuellement conceptuellement adv 0.01 0.00 0.01 0.00 +conceptuelles conceptuel adj f p 0.46 0.14 0.05 0.00 +conceptuels conceptuel adj m p 0.46 0.14 0.02 0.00 +concernaient concerner ver 49.31 50.47 0.18 1.76 ind:imp:3p; +concernait concerner ver 49.31 50.47 2.13 10.95 ind:imp:3s; +concernant concernant pre 13.08 14.26 13.08 14.26 +concerne concerner ver 49.31 50.47 33.49 26.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concernent concerner ver 49.31 50.47 1.64 1.96 ind:pre:3p; +concerner concerner ver 49.31 50.47 0.36 1.22 inf; +concernera concerner ver 49.31 50.47 0.25 0.07 ind:fut:3s; +concerneraient concerner ver 49.31 50.47 0.01 0.07 cnd:pre:3p; +concernerait concerner ver 49.31 50.47 0.17 0.34 cnd:pre:3s; +concernât concerner ver 49.31 50.47 0.00 0.20 sub:imp:3s; +concernèrent concerner ver 49.31 50.47 0.00 0.07 ind:pas:3p; +concerné concerner ver m s 49.31 50.47 3.06 1.49 par:pas; +concernée concerner ver f s 49.31 50.47 1.42 1.08 par:pas; +concernées concerner ver f p 49.31 50.47 0.63 0.14 par:pas; +concernés concerner ver m p 49.31 50.47 2.51 1.08 par:pas; +concert concert nom m s 31.65 30.14 26.51 24.86 +concertaient concerter ver 0.65 3.78 0.01 0.14 ind:imp:3p; +concertait concerter ver 0.65 3.78 0.00 0.14 ind:imp:3s; +concertant concerter ver 0.65 3.78 0.00 0.07 par:pre; +concertation concertation nom f s 0.17 0.07 0.15 0.07 +concertations concertation nom f p 0.17 0.07 0.01 0.00 +concerte concerter ver 0.65 3.78 0.05 0.07 ind:pre:3s; +concertent concerter ver 0.65 3.78 0.02 0.41 ind:pre:3p; +concerter concerter ver 0.65 3.78 0.32 1.15 inf; +concertez concerter ver 0.65 3.78 0.01 0.00 ind:pre:2p; +concertina concertina nom m s 0.01 0.00 0.01 0.00 +concertiste concertiste nom s 0.60 0.00 0.60 0.00 +concerto concerto nom m s 1.63 2.77 1.56 2.36 +concertons concerter ver 0.65 3.78 0.01 0.07 imp:pre:1p;ind:pre:1p; +concertos concerto nom m p 1.63 2.77 0.07 0.41 +concerts concert nom m p 31.65 30.14 5.14 5.27 +concertèrent concerter ver 0.65 3.78 0.00 0.20 ind:pas:3p; +concerté concerter ver m s 0.65 3.78 0.17 0.20 par:pas; +concertée concerter ver f s 0.65 3.78 0.03 0.41 par:pas; +concertées concerter ver f p 0.65 3.78 0.00 0.27 par:pas; +concertés concerter ver m p 0.65 3.78 0.02 0.68 par:pas; +concession concession nom f s 5.31 14.12 3.54 9.32 +concessionnaire concessionnaire nom s 0.70 0.95 0.63 0.68 +concessionnaires concessionnaire nom p 0.70 0.95 0.07 0.27 +concessions concession nom f p 5.31 14.12 1.77 4.80 +concetto concetto nom m s 0.00 0.07 0.00 0.07 +concevable concevable adj s 0.28 2.77 0.27 2.50 +concevables concevable adj f p 0.28 2.77 0.01 0.27 +concevaient concevoir ver 18.75 27.84 0.12 0.34 ind:imp:3p; +concevais concevoir ver 18.75 27.84 0.06 1.15 ind:imp:1s; +concevait concevoir ver 18.75 27.84 0.15 2.36 ind:imp:3s; +concevant concevoir ver 18.75 27.84 0.05 0.14 par:pre; +concevez concevoir ver 18.75 27.84 0.06 0.07 imp:pre:2p;ind:pre:2p; +conceviez concevoir ver 18.75 27.84 0.14 0.14 ind:imp:2p; +concevions concevoir ver 18.75 27.84 0.00 0.07 ind:imp:1p; +concevoir concevoir ver 18.75 27.84 3.14 7.57 inf; +concevons concevoir ver 18.75 27.84 0.02 0.20 imp:pre:1p;ind:pre:1p; +concevrais concevoir ver 18.75 27.84 0.00 0.14 cnd:pre:1s; +concevrait concevoir ver 18.75 27.84 0.01 0.27 cnd:pre:3s; +conchiaient conchier ver 0.03 0.54 0.00 0.07 ind:imp:3p; +conchie conchier ver 0.03 0.54 0.01 0.07 ind:pre:1s;ind:pre:3s; +conchier conchier ver 0.03 0.54 0.01 0.34 inf; +conchié conchier ver m s 0.03 0.54 0.01 0.07 par:pas; +conchoïdaux conchoïdal adj m p 0.01 0.00 0.01 0.00 +concierge concierge nom s 11.15 29.05 10.81 25.41 +conciergerie conciergerie nom f s 0.04 0.74 0.04 0.68 +conciergeries conciergerie nom f p 0.04 0.74 0.00 0.07 +concierges concierge nom p 11.15 29.05 0.34 3.65 +concile concile nom m s 0.17 3.11 0.17 2.57 +conciles concile nom m p 0.17 3.11 0.00 0.54 +conciliable conciliable adj s 0.00 0.34 0.00 0.27 +conciliables conciliable adj p 0.00 0.34 0.00 0.07 +conciliabule conciliabule nom m s 0.28 3.58 0.02 1.76 +conciliabules conciliabule nom m p 0.28 3.58 0.26 1.82 +conciliaient concilier ver 0.85 5.00 0.00 0.07 ind:imp:3p; +conciliaires conciliaire adj m p 0.00 0.07 0.00 0.07 +conciliait concilier ver 0.85 5.00 0.00 0.34 ind:imp:3s; +conciliant conciliant adj m s 0.63 3.85 0.30 2.09 +conciliante conciliant adj f s 0.63 3.85 0.12 1.22 +conciliantes conciliant adj f p 0.63 3.85 0.03 0.20 +conciliants conciliant adj m p 0.63 3.85 0.17 0.34 +conciliateur conciliateur nom m s 0.10 0.14 0.07 0.14 +conciliateurs conciliateur nom m p 0.10 0.14 0.01 0.00 +conciliation conciliation nom f s 0.64 1.82 0.37 1.69 +conciliations conciliation nom f p 0.64 1.82 0.27 0.14 +conciliatrice conciliateur nom f s 0.10 0.14 0.01 0.00 +concilie concilier ver 0.85 5.00 0.20 0.14 ind:pre:3s; +concilier concilier ver 0.85 5.00 0.60 3.18 inf; +concilierait concilier ver 0.85 5.00 0.00 0.07 cnd:pre:3s; +concilies concilier ver 0.85 5.00 0.00 0.07 ind:pre:2s; +concilié concilier ver m s 0.85 5.00 0.02 0.14 par:pas; +conciliées concilier ver f p 0.85 5.00 0.00 0.07 par:pas; +conciliés concilier ver m p 0.85 5.00 0.00 0.07 par:pas; +concis concis adj m 1.42 0.68 0.77 0.61 +concise concis adj f s 1.42 0.68 0.65 0.07 +concision concision nom f s 0.31 0.61 0.31 0.61 +concitoyen concitoyen nom m s 4.36 1.62 0.33 0.07 +concitoyenne concitoyen nom f s 4.36 1.62 0.11 0.07 +concitoyennes concitoyenne nom f p 0.10 0.00 0.10 0.00 +concitoyens concitoyen nom m p 4.36 1.62 3.92 1.49 +conclûmes conclure ver 27.26 51.76 0.00 0.07 ind:pas:1p; +conclût conclure ver 27.26 51.76 0.00 0.07 sub:imp:3s; +conclave conclave nom m s 0.00 0.47 0.00 0.47 +conclaviste conclaviste nom m s 0.00 0.07 0.00 0.07 +conclu conclure ver m s 27.26 51.76 11.88 10.61 par:pas; +concluaient conclure ver 27.26 51.76 0.00 0.47 ind:imp:3p; +concluais conclure ver 27.26 51.76 0.02 0.68 ind:imp:1s; +concluait conclure ver 27.26 51.76 0.06 2.50 ind:imp:3s; +concluant concluant adj m s 1.49 0.95 0.71 0.41 +concluante concluant adj f s 1.49 0.95 0.33 0.34 +concluantes concluant adj f p 1.49 0.95 0.10 0.00 +concluants concluant adj m p 1.49 0.95 0.35 0.20 +conclue conclure ver f s 27.26 51.76 1.82 1.49 par:pas;sub:pre:1s;sub:pre:3s; +concluent conclure ver 27.26 51.76 0.20 0.61 ind:pre:3p; +conclues conclure ver f p 27.26 51.76 0.06 0.20 par:pas;sub:pre:2s; +concluez conclure ver 27.26 51.76 0.57 0.07 imp:pre:2p;ind:pre:2p; +concluions conclure ver 27.26 51.76 0.02 0.07 ind:imp:1p; +concluons conclure ver 27.26 51.76 0.75 0.07 imp:pre:1p;ind:pre:1p; +conclura conclure ver 27.26 51.76 0.24 0.07 ind:fut:3s; +conclurai conclure ver 27.26 51.76 0.27 0.07 ind:fut:1s; +conclurais conclure ver 27.26 51.76 0.03 0.00 cnd:pre:1s; +conclurait conclure ver 27.26 51.76 0.04 0.00 cnd:pre:3s; +conclure conclure ver 27.26 51.76 7.57 10.34 inf; +conclurent conclure ver 27.26 51.76 0.03 0.27 ind:pas:3p; +conclurez conclure ver 27.26 51.76 0.01 0.00 ind:fut:2p; +conclurions conclure ver 27.26 51.76 0.01 0.07 cnd:pre:1p; +conclurons conclure ver 27.26 51.76 0.07 0.00 ind:fut:1p; +concluront conclure ver 27.26 51.76 0.03 0.07 ind:fut:3p; +conclus conclure ver m p 27.26 51.76 1.88 4.32 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +conclusion conclusion nom f s 13.90 20.68 8.19 14.32 +conclusions conclusion nom f p 13.90 20.68 5.71 6.35 +conclusive conclusif adj f s 0.01 0.00 0.01 0.00 +conclut conclure ver 27.26 51.76 1.65 18.92 ind:pre:3s;ind:pas:3s; +concocta concocter ver 1.00 1.01 0.01 0.00 ind:pas:3s; +concoctait concocter ver 1.00 1.01 0.01 0.14 ind:imp:3s; +concoctent concocter ver 1.00 1.01 0.02 0.00 ind:pre:3p; +concocter concocter ver 1.00 1.01 0.34 0.41 inf; +concocteras concocter ver 1.00 1.01 0.01 0.07 ind:fut:2s; +concoction concoction nom f s 0.06 0.20 0.06 0.20 +concocté concocter ver m s 1.00 1.01 0.57 0.27 par:pas; +concoctée concocter ver f s 1.00 1.01 0.04 0.07 par:pas; +concoctés concocter ver m p 1.00 1.01 0.01 0.07 par:pas; +concombre concombre nom m s 2.75 4.12 1.82 1.15 +concombres concombre nom m p 2.75 4.12 0.94 2.97 +concomitance concomitance nom f s 0.01 0.07 0.01 0.07 +concomitant concomitant adj m s 0.02 0.41 0.00 0.14 +concomitante concomitant adj f s 0.02 0.41 0.01 0.14 +concomitantes concomitant adj f p 0.02 0.41 0.01 0.14 +concordaient concorder ver 2.45 0.81 0.02 0.14 ind:imp:3p; +concordait concorder ver 2.45 0.81 0.13 0.27 ind:imp:3s; +concordance concordance nom f s 0.45 0.54 0.45 0.54 +concordant concorder ver 2.45 0.81 0.03 0.00 par:pre; +concordante concordant adj f s 0.23 0.14 0.03 0.00 +concordantes concordant adj f p 0.23 0.14 0.02 0.00 +concordants concordant adj m p 0.23 0.14 0.16 0.07 +concordat concordat nom m s 0.00 0.07 0.00 0.07 +concorde concorder ver 2.45 0.81 1.40 0.07 imp:pre:2s;ind:pre:3s; +concordent concorder ver 2.45 0.81 0.71 0.20 ind:pre:3p; +concorder concorder ver 2.45 0.81 0.15 0.14 inf; +concordez concorder ver 2.45 0.81 0.01 0.00 imp:pre:2p; +concordistes concordiste nom p 0.00 0.07 0.00 0.07 +concourût concourir ver 1.35 3.72 0.00 0.07 sub:imp:3s; +concouraient concourir ver 1.35 3.72 0.03 0.20 ind:imp:3p; +concourait concourir ver 1.35 3.72 0.01 0.34 ind:imp:3s; +concourant concourant adj m s 0.01 0.00 0.01 0.00 +concoure concourir ver 1.35 3.72 0.02 0.00 sub:pre:3s; +concourent concourir ver 1.35 3.72 0.08 0.47 ind:pre:3p; +concourez concourir ver 1.35 3.72 0.04 0.00 ind:pre:2p; +concourir concourir ver 1.35 3.72 0.55 1.28 inf; +concourrai concourir ver 1.35 3.72 0.01 0.00 ind:fut:1s; +concourrait concourir ver 1.35 3.72 0.01 0.14 cnd:pre:3s; +concourront concourir ver 1.35 3.72 0.00 0.07 ind:fut:3p; +concours concours nom m 23.89 31.69 23.89 31.69 +concourt concourir ver 1.35 3.72 0.17 0.54 ind:pre:3s; +concouru concourir ver m s 1.35 3.72 0.10 0.54 par:pas; +concret concret adj m s 3.48 7.09 1.88 2.09 +concrets concret adj m p 3.48 7.09 0.24 1.22 +concrète concret adj f s 3.48 7.09 0.93 2.84 +concrètement concrètement adv 2.04 1.15 2.04 1.15 +concrètes concret adj f p 3.48 7.09 0.42 0.95 +concrétion concrétion nom f s 0.01 0.81 0.01 0.47 +concrétions concrétion nom f p 0.01 0.81 0.00 0.34 +concrétisant concrétiser ver 0.83 1.35 0.01 0.07 par:pre; +concrétisation concrétisation nom f s 0.04 0.07 0.04 0.07 +concrétise concrétiser ver 0.83 1.35 0.20 0.14 ind:pre:1s;ind:pre:3s; +concrétisent concrétiser ver 0.83 1.35 0.01 0.00 ind:pre:3p; +concrétiser concrétiser ver 0.83 1.35 0.39 0.54 inf; +concrétisèrent concrétiser ver 0.83 1.35 0.00 0.14 ind:pas:3p; +concrétisé concrétiser ver m s 0.83 1.35 0.05 0.27 par:pas; +concrétisée concrétiser ver f s 0.83 1.35 0.16 0.14 par:pas; +concrétisées concrétiser ver f p 0.83 1.35 0.01 0.00 par:pas; +concrétisés concrétiser ver m p 0.83 1.35 0.00 0.07 par:pas; +concède concéder ver 1.79 5.74 0.75 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concèdes concéder ver 1.79 5.74 0.02 0.00 ind:pre:2s; +concubin concubin nom m s 1.98 2.84 0.02 0.61 +concubinage concubinage nom m s 0.77 0.68 0.77 0.61 +concubinages concubinage nom m p 0.77 0.68 0.00 0.07 +concubinait concubiner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +concubine concubin nom f s 1.98 2.84 1.56 1.69 +concubines concubin nom f p 1.98 2.84 0.40 0.47 +concubins concubin nom m p 1.98 2.84 0.00 0.07 +concéda concéder ver 1.79 5.74 0.01 1.28 ind:pas:3s; +concédai concéder ver 1.79 5.74 0.00 0.07 ind:pas:1s; +concédaient concéder ver 1.79 5.74 0.10 0.20 ind:imp:3p; +concédais concéder ver 1.79 5.74 0.00 0.14 ind:imp:1s; +concédait concéder ver 1.79 5.74 0.00 0.74 ind:imp:3s; +concédant concédant nom m s 0.00 0.07 0.00 0.07 +concéder concéder ver 1.79 5.74 0.39 0.81 inf; +concéderait concéder ver 1.79 5.74 0.01 0.07 cnd:pre:3s; +concédez concéder ver 1.79 5.74 0.03 0.00 ind:pre:2p; +concédons concéder ver 1.79 5.74 0.00 0.07 ind:pre:1p; +concédât concéder ver 1.79 5.74 0.00 0.14 sub:imp:3s; +concédé concéder ver m s 1.79 5.74 0.25 0.88 par:pas; +concédée concéder ver f s 1.79 5.74 0.23 0.47 par:pas; +concédés concéder ver m p 1.79 5.74 0.00 0.20 par:pas; +concélèbrent concélébrer ver 0.37 0.00 0.37 0.00 ind:pre:3p; +concupiscence concupiscence nom f s 0.38 2.09 0.38 2.03 +concupiscences concupiscence nom f p 0.38 2.09 0.00 0.07 +concupiscent concupiscent adj m s 0.11 0.54 0.11 0.14 +concupiscente concupiscent adj f s 0.11 0.54 0.00 0.14 +concupiscentes concupiscent adj f p 0.11 0.54 0.00 0.14 +concupiscents concupiscent adj m p 0.11 0.54 0.00 0.14 +concurremment concurremment adv 0.00 0.41 0.00 0.41 +concurrence concurrence nom f s 6.00 5.00 6.00 4.73 +concurrencer concurrencer ver 0.33 0.74 0.30 0.07 inf; +concurrences concurrence nom f p 6.00 5.00 0.00 0.27 +concurrencé concurrencer ver m s 0.33 0.74 0.01 0.14 par:pas; +concurrencée concurrencer ver f s 0.33 0.74 0.00 0.07 par:pas; +concurrent concurrent nom m s 6.36 3.51 1.65 1.49 +concurrente concurrent adj f s 1.45 1.62 0.71 0.54 +concurrentes concurrent adj f p 1.45 1.62 0.27 0.41 +concurrençait concurrencer ver 0.33 0.74 0.00 0.27 ind:imp:3s; +concurrentiel concurrentiel adj m s 0.09 0.14 0.07 0.07 +concurrentielle concurrentiel adj f s 0.09 0.14 0.02 0.00 +concurrentiels concurrentiel adj m p 0.09 0.14 0.00 0.07 +concurrents concurrent nom m p 6.36 3.51 4.71 2.03 +concussion concussion nom f s 0.07 0.20 0.07 0.20 +concussionnaire concussionnaire adj f s 0.00 0.07 0.00 0.07 +condamna condamner ver 44.14 44.59 0.59 0.47 ind:pas:3s; +condamnable condamnable adj s 0.44 0.88 0.44 0.61 +condamnables condamnable adj m p 0.44 0.88 0.00 0.27 +condamnai condamner ver 44.14 44.59 0.00 0.07 ind:pas:1s; +condamnaient condamner ver 44.14 44.59 0.04 1.35 ind:imp:3p; +condamnais condamner ver 44.14 44.59 0.02 0.27 ind:imp:1s;ind:imp:2s; +condamnait condamner ver 44.14 44.59 0.17 3.51 ind:imp:3s; +condamnant condamner ver 44.14 44.59 0.31 1.49 par:pre; +condamnation condamnation nom f s 6.79 8.85 5.18 7.64 +condamnations condamnation nom f p 6.79 8.85 1.62 1.22 +condamne condamner ver 44.14 44.59 6.56 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +condamnent condamner ver 44.14 44.59 0.94 1.15 ind:pre:3p;sub:pre:3p; +condamner condamner ver 44.14 44.59 5.53 4.73 inf; +condamnera condamner ver 44.14 44.59 0.60 0.27 ind:fut:3s; +condamnerai condamner ver 44.14 44.59 0.02 0.00 ind:fut:1s; +condamneraient condamner ver 44.14 44.59 0.02 0.00 cnd:pre:3p; +condamnerais condamner ver 44.14 44.59 0.04 0.20 cnd:pre:1s; +condamnerait condamner ver 44.14 44.59 0.22 0.00 cnd:pre:3s; +condamneras condamner ver 44.14 44.59 0.03 0.00 ind:fut:2s; +condamnerons condamner ver 44.14 44.59 0.00 0.07 ind:fut:1p; +condamneront condamner ver 44.14 44.59 0.32 0.14 ind:fut:3p; +condamnes condamner ver 44.14 44.59 0.16 0.14 ind:pre:2s; +condamnez condamner ver 44.14 44.59 1.17 0.07 imp:pre:2p;ind:pre:2p; +condamniez condamner ver 44.14 44.59 0.01 0.14 ind:imp:2p; +condamnions condamner ver 44.14 44.59 0.00 0.07 ind:imp:1p; +condamnons condamner ver 44.14 44.59 0.93 0.07 imp:pre:1p;ind:pre:1p; +condamnât condamner ver 44.14 44.59 0.00 0.14 sub:imp:3s; +condamnèrent condamner ver 44.14 44.59 0.14 0.20 ind:pas:3p; +condamné condamner ver m s 44.14 44.59 17.10 12.30 par:pas; +condamnée condamner ver f s 44.14 44.59 3.42 6.42 par:pas; +condamnées condamner ver f p 44.14 44.59 0.65 1.01 par:pas; +condamnés condamner ver m p 44.14 44.59 5.14 5.07 par:pas; +condensa condenser ver 0.59 2.70 0.00 0.20 ind:pas:3s; +condensaient condenser ver 0.59 2.70 0.00 0.20 ind:imp:3p; +condensait condenser ver 0.59 2.70 0.00 0.54 ind:imp:3s; +condensant condenser ver 0.59 2.70 0.10 0.07 par:pre; +condensateur condensateur nom m s 1.02 0.07 0.77 0.07 +condensateurs condensateur nom m p 1.02 0.07 0.26 0.00 +condensation condensation nom f s 0.28 1.22 0.28 1.22 +condense condenser ver 0.59 2.70 0.14 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +condensent condenser ver 0.59 2.70 0.00 0.14 ind:pre:3p; +condenser condenser ver 0.59 2.70 0.17 0.41 inf; +condensera condenser ver 0.59 2.70 0.01 0.00 ind:fut:3s; +condenseur condenseur nom m s 0.01 0.00 0.01 0.00 +condensèrent condenser ver 0.59 2.70 0.00 0.07 ind:pas:3p; +condensé condenser ver m s 0.59 2.70 0.16 0.14 par:pas; +condensée condensé adj f s 0.05 1.15 0.02 0.00 +condensées condenser ver f p 0.59 2.70 0.03 0.14 par:pas; +condensés condensé adj m p 0.05 1.15 0.01 0.07 +condescend condescendre ver 0.17 1.01 0.00 0.14 ind:pre:3s; +condescendait condescendre ver 0.17 1.01 0.00 0.07 ind:imp:3s; +condescendance condescendance nom f s 0.70 4.53 0.70 4.53 +condescendant condescendant adj m s 1.35 2.09 0.95 0.95 +condescendante condescendant adj f s 1.35 2.09 0.30 0.88 +condescendants condescendant adj m p 1.35 2.09 0.09 0.27 +condescendit condescendre ver 0.17 1.01 0.01 0.20 ind:pas:3s; +condescendrais condescendre ver 0.17 1.01 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +condescendre condescendre ver 0.17 1.01 0.01 0.20 inf; +condescendu condescendre ver m s 0.17 1.01 0.00 0.07 par:pas; +condiment condiment nom m s 0.68 0.61 0.11 0.07 +condiments condiment nom m p 0.68 0.61 0.56 0.54 +condisciple condisciple nom s 0.15 3.11 0.01 0.74 +condisciples condisciple nom p 0.15 3.11 0.14 2.36 +condition condition nom f s 46.73 91.62 25.61 45.81 +conditionnait conditionner ver 1.58 1.55 0.02 0.00 ind:imp:3s; +conditionnant conditionner ver 1.58 1.55 0.02 0.07 par:pre; +conditionne conditionner ver 1.58 1.55 0.32 0.14 ind:pre:1s;ind:pre:3s; +conditionnel conditionnel nom m s 0.07 0.81 0.06 0.74 +conditionnelle conditionnel adj f s 4.76 0.74 4.59 0.74 +conditionnellement conditionnellement adv 0.00 0.07 0.00 0.07 +conditionnelles conditionnel adj f p 4.76 0.74 0.16 0.00 +conditionnels conditionnel nom m p 0.07 0.81 0.01 0.07 +conditionnement conditionnement nom m s 0.52 0.95 0.52 0.74 +conditionnements conditionnement nom m p 0.52 0.95 0.00 0.20 +conditionnent conditionner ver 1.58 1.55 0.14 0.00 ind:pre:3p; +conditionner conditionner ver 1.58 1.55 0.32 0.27 inf; +conditionnerons conditionner ver 1.58 1.55 0.01 0.00 ind:fut:1p; +conditionneur conditionneur nom m s 0.06 0.14 0.04 0.00 +conditionneurs conditionneur nom m p 0.06 0.14 0.02 0.14 +conditionnons conditionner ver 1.58 1.55 0.01 0.00 ind:pre:1p; +conditionné conditionné adj m s 2.09 1.82 2.02 1.55 +conditionnée conditionner ver f s 1.58 1.55 0.14 0.14 par:pas; +conditionnées conditionner ver f p 1.58 1.55 0.02 0.14 par:pas; +conditionnés conditionner ver m p 1.58 1.55 0.07 0.20 par:pas; +conditions condition nom f p 46.73 91.62 21.12 45.81 +condo condo nom m s 1.01 0.00 0.61 0.00 +condoléance condoléance nom f s 10.82 4.32 0.03 0.14 +condoléances condoléance nom f p 10.82 4.32 10.80 4.19 +condoléants condoléant adj m p 0.00 0.07 0.00 0.07 +condom condom nom m s 0.18 0.00 0.18 0.00 +condominium condominium nom m s 0.02 0.14 0.02 0.14 +condor condor nom m s 1.33 0.61 1.30 0.47 +condors condor nom m p 1.33 0.61 0.02 0.14 +condos condo nom m p 1.01 0.00 0.40 0.00 +condottiere condottiere nom m s 0.00 0.61 0.00 0.54 +condottieres condottiere nom m p 0.00 0.61 0.00 0.07 +condottieri condottieri nom m p 0.00 0.07 0.00 0.07 +condé condé nom m s 0.10 6.49 0.05 2.64 +conductance conductance nom f s 0.03 0.00 0.03 0.00 +conducteur conducteur nom m s 10.91 15.14 8.67 11.08 +conducteurs conducteur nom m p 10.91 15.14 1.66 3.24 +conductibilité conductibilité nom f s 0.01 0.00 0.01 0.00 +conduction conduction nom f s 0.07 0.00 0.07 0.00 +conductivité conductivité nom f s 0.02 0.00 0.02 0.00 +conductrice conducteur nom f s 10.91 15.14 0.58 0.61 +conductrices conductrice nom f p 0.03 0.00 0.03 0.00 +conduira conduire ver 169.61 144.66 3.67 2.03 ind:fut:3s; +conduirai conduire ver 169.61 144.66 2.53 0.68 ind:fut:1s; +conduiraient conduire ver 169.61 144.66 0.01 0.47 cnd:pre:3p; +conduirais conduire ver 169.61 144.66 0.59 0.07 cnd:pre:1s;cnd:pre:2s; +conduirait conduire ver 169.61 144.66 0.62 2.30 cnd:pre:3s; +conduiras conduire ver 169.61 144.66 0.61 0.20 ind:fut:2s; +conduire conduire ver 169.61 144.66 60.52 40.27 imp:pre:2p;inf; +conduirez conduire ver 169.61 144.66 0.44 0.14 ind:fut:2p; +conduiriez conduire ver 169.61 144.66 0.10 0.00 cnd:pre:2p; +conduirons conduire ver 169.61 144.66 0.22 0.14 ind:fut:1p; +conduiront conduire ver 169.61 144.66 1.26 0.34 ind:fut:3p; +conduis conduire ver 169.61 144.66 29.82 3.58 imp:pre:2s;ind:pre:1s;ind:pre:2s; +conduisît conduire ver 169.61 144.66 0.00 0.47 sub:imp:3s; +conduisaient conduire ver 169.61 144.66 0.51 2.43 ind:imp:3p; +conduisais conduire ver 169.61 144.66 2.58 1.28 ind:imp:1s;ind:imp:2s; +conduisait conduire ver 169.61 144.66 6.37 20.41 ind:imp:3s; +conduisant conduire ver 169.61 144.66 1.73 7.36 par:pre; +conduise conduire ver 169.61 144.66 2.82 1.62 sub:pre:1s;sub:pre:3s; +conduisent conduire ver 169.61 144.66 2.90 3.31 ind:pre:3p; +conduises conduire ver 169.61 144.66 0.77 0.07 sub:pre:2s; +conduisez conduire ver 169.61 144.66 8.11 0.68 imp:pre:2p;ind:pre:2p; +conduisiez conduire ver 169.61 144.66 0.63 0.07 ind:imp:2p; +conduisions conduire ver 169.61 144.66 0.04 0.20 ind:imp:1p; +conduisirent conduire ver 169.61 144.66 0.15 1.01 ind:pas:3p; +conduisis conduire ver 169.61 144.66 0.02 0.68 ind:pas:1s; +conduisit conduire ver 169.61 144.66 0.72 7.77 ind:pas:3s; +conduisons conduire ver 169.61 144.66 0.22 0.14 imp:pre:1p;ind:pre:1p; +conduit conduire ver m s 169.61 144.66 34.51 33.45 ind:pre:3s;par:pas; +conduite_intérieure conduite_intérieure nom f s 0.00 0.27 0.00 0.27 +conduite conduite nom f s 19.20 26.76 18.75 25.34 +conduites conduite nom f p 19.20 26.76 0.44 1.42 +conduits conduire ver m p 169.61 144.66 2.61 5.47 par:pas; +condés condé nom m p 0.10 6.49 0.05 3.85 +condyle condyle nom m s 0.01 0.14 0.01 0.07 +condyles condyle nom m p 0.01 0.14 0.00 0.07 +confabulaient confabuler ver 0.00 0.14 0.00 0.14 ind:imp:3p; +confection confection nom f s 0.61 3.51 0.61 3.51 +confectionna confectionner ver 0.66 10.00 0.00 0.74 ind:pas:3s; +confectionnai confectionner ver 0.66 10.00 0.00 0.20 ind:pas:1s; +confectionnaient confectionner ver 0.66 10.00 0.00 0.41 ind:imp:3p; +confectionnais confectionner ver 0.66 10.00 0.01 0.07 ind:imp:1s; +confectionnait confectionner ver 0.66 10.00 0.01 2.09 ind:imp:3s; +confectionne confectionner ver 0.66 10.00 0.02 0.88 ind:pre:1s;ind:pre:3s; +confectionner confectionner ver 0.66 10.00 0.04 2.70 inf; +confectionnerai confectionner ver 0.66 10.00 0.01 0.07 ind:fut:1s; +confectionnerais confectionner ver 0.66 10.00 0.00 0.07 cnd:pre:1s; +confectionnerait confectionner ver 0.66 10.00 0.00 0.07 cnd:pre:3s; +confectionneur confectionneur nom m s 0.14 0.47 0.14 0.14 +confectionneurs confectionneur nom m p 0.14 0.47 0.00 0.20 +confectionneuse confectionneur nom f s 0.14 0.47 0.00 0.07 +confectionneuses confectionneur nom f p 0.14 0.47 0.00 0.07 +confectionnez confectionner ver 0.66 10.00 0.02 0.07 imp:pre:2p;ind:pre:2p; +confectionnions confectionner ver 0.66 10.00 0.00 0.14 ind:imp:1p; +confectionnâmes confectionner ver 0.66 10.00 0.00 0.07 ind:pas:1p; +confectionnât confectionner ver 0.66 10.00 0.00 0.07 sub:imp:3s; +confectionnèrent confectionner ver 0.66 10.00 0.01 0.07 ind:pas:3p; +confectionné confectionner ver m s 0.66 10.00 0.49 1.35 par:pas; +confectionnée confectionner ver f s 0.66 10.00 0.02 0.47 par:pas; +confectionnées confectionner ver f p 0.66 10.00 0.01 0.27 par:pas; +confectionnés confectionner ver m p 0.66 10.00 0.01 0.20 par:pas; +confessa confesser ver 16.05 10.20 0.16 0.07 ind:pas:3s; +confessai confesser ver 16.05 10.20 0.00 0.07 ind:pas:1s; +confessaient confesser ver 16.05 10.20 0.14 0.07 ind:imp:3p; +confessais confesser ver 16.05 10.20 0.19 0.14 ind:imp:1s;ind:imp:2s; +confessait confesser ver 16.05 10.20 0.15 0.74 ind:imp:3s; +confessant confesser ver 16.05 10.20 0.04 0.34 par:pre; +confesse confesser ver 16.05 10.20 3.05 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confessent confesser ver 16.05 10.20 0.06 0.34 ind:pre:3p; +confesser confesser ver 16.05 10.20 8.09 4.32 inf; +confesserai confesser ver 16.05 10.20 0.26 0.07 ind:fut:1s; +confesserait confesser ver 16.05 10.20 0.00 0.20 cnd:pre:3s; +confesseras confesser ver 16.05 10.20 0.00 0.07 ind:fut:2s; +confesserez confesser ver 16.05 10.20 0.01 0.00 ind:fut:2p; +confesseur confesseur nom m s 1.86 2.70 1.63 2.16 +confesseurs confesseur nom m p 1.86 2.70 0.23 0.54 +confessez confesser ver 16.05 10.20 1.21 0.00 imp:pre:2p;ind:pre:2p; +confessiez confesser ver 16.05 10.20 0.02 0.07 ind:imp:2p; +confession confession nom f s 12.84 10.00 10.78 7.77 +confessionnal confessionnal nom m s 1.40 1.89 1.29 1.82 +confessionnaux confessionnal nom m p 1.40 1.89 0.10 0.07 +confessionnel confessionnel adj m s 0.12 0.34 0.01 0.14 +confessionnelle confessionnel adj f s 0.12 0.34 0.11 0.14 +confessionnels confessionnel adj m p 0.12 0.34 0.00 0.07 +confessions confession nom f p 12.84 10.00 2.05 2.23 +confessons confesser ver 16.05 10.20 0.04 0.07 imp:pre:1p;ind:pre:1p; +confessé confesser ver m s 16.05 10.20 2.04 1.42 par:pas; +confessée confesser ver f s 16.05 10.20 0.26 0.27 par:pas; +confessés confesser ver m p 16.05 10.20 0.34 0.07 par:pas; +confetti confetti nom m s 1.08 3.78 0.04 1.49 +confettis confetti nom m p 1.08 3.78 1.04 2.30 +confia confier ver 41.48 69.53 0.51 9.73 ind:pas:3s; +confiai confier ver 41.48 69.53 0.00 0.61 ind:pas:1s; +confiaient confier ver 41.48 69.53 0.16 0.74 ind:imp:3p; +confiais confier ver 41.48 69.53 0.10 0.34 ind:imp:1s;ind:imp:2s; +confiait confier ver 41.48 69.53 0.43 5.81 ind:imp:3s; +confiance confiance nom f s 162.90 91.96 162.88 91.76 +confiances confiance nom f p 162.90 91.96 0.03 0.20 +confiant confiant adj m s 4.14 10.34 2.46 4.73 +confiante confiant adj f s 4.14 10.34 1.26 3.45 +confiantes confiant adj f p 4.14 10.34 0.06 0.47 +confiants confiant adj m p 4.14 10.34 0.36 1.69 +confidence confidence nom f s 3.28 24.53 2.23 10.14 +confidences confidence nom f p 3.28 24.53 1.04 14.39 +confident confident nom m s 1.28 5.54 0.80 3.18 +confidente confident nom f s 1.28 5.54 0.23 1.55 +confidentes confident nom f p 1.28 5.54 0.00 0.41 +confidentialité confidentialité nom f s 1.31 0.00 1.31 0.00 +confidentiel confidentiel adj m s 9.57 4.73 5.68 2.77 +confidentielle confidentiel adj f s 9.57 4.73 1.72 0.88 +confidentiellement confidentiellement adv 0.37 0.41 0.37 0.41 +confidentielles confidentiel adj f p 9.57 4.73 0.84 0.68 +confidentiels confidentiel adj m p 9.57 4.73 1.33 0.41 +confidents confident nom m p 1.28 5.54 0.26 0.41 +confie confier ver 41.48 69.53 8.29 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confient confier ver 41.48 69.53 0.38 0.81 ind:pre:3p; +confier confier ver 41.48 69.53 11.59 16.62 ind:pre:2p;inf; +confiera confier ver 41.48 69.53 0.24 0.27 ind:fut:3s; +confierai confier ver 41.48 69.53 0.31 0.54 ind:fut:1s; +confieraient confier ver 41.48 69.53 0.01 0.14 cnd:pre:3p; +confierais confier ver 41.48 69.53 0.27 0.07 cnd:pre:1s; +confierait confier ver 41.48 69.53 0.23 0.95 cnd:pre:3s; +confieras confier ver 41.48 69.53 0.10 0.00 ind:fut:2s; +confierez confier ver 41.48 69.53 0.04 0.07 ind:fut:2p; +confieriez confier ver 41.48 69.53 0.04 0.07 cnd:pre:2p; +confiez confier ver 41.48 69.53 1.15 0.88 imp:pre:2p;ind:pre:2p; +configuration configuration nom f s 1.15 1.55 1.00 1.55 +configurations configuration nom f p 1.15 1.55 0.15 0.00 +configure configurer ver 0.18 0.00 0.05 0.00 imp:pre:2s;ind:pre:1s; +configurer configurer ver 0.18 0.00 0.07 0.00 inf; +configuré configurer ver m s 0.18 0.00 0.07 0.00 par:pas; +confiions confier ver 41.48 69.53 0.00 0.07 ind:imp:1p; +confina confiner ver 1.83 5.34 0.00 0.07 ind:pas:3s; +confinaient confiner ver 1.83 5.34 0.00 0.54 ind:imp:3p; +confinait confiner ver 1.83 5.34 0.00 0.68 ind:imp:3s; +confinant confiner ver 1.83 5.34 0.01 0.20 par:pre; +confine confiner ver 1.83 5.34 0.20 0.61 ind:pre:3s; +confinement confinement nom m s 1.01 0.34 1.01 0.34 +confinent confiner ver 1.83 5.34 0.00 0.20 ind:pre:3p; +confiner confiner ver 1.83 5.34 0.23 0.34 inf; +confinerez confiner ver 1.83 5.34 0.01 0.00 ind:fut:2p; +confins confins nom m p 1.66 7.30 1.66 7.30 +confiné confiner ver m s 1.83 5.34 0.78 1.08 par:pas; +confinée confiner ver f s 1.83 5.34 0.20 0.88 par:pas; +confinées confiner ver f p 1.83 5.34 0.02 0.20 par:pas; +confinés confiner ver m p 1.83 5.34 0.38 0.54 par:pas; +confiâmes confier ver 41.48 69.53 0.00 0.07 ind:pas:1p; +confions confier ver 41.48 69.53 0.89 0.14 imp:pre:1p;ind:pre:1p; +confiât confier ver 41.48 69.53 0.00 0.47 sub:imp:3s; +confiote confiote nom f s 0.02 0.20 0.02 0.14 +confiotes confiote nom f p 0.02 0.20 0.00 0.07 +confire confire ver 0.30 0.95 0.01 0.00 inf; +confirma confirmer ver 33.80 27.57 0.06 3.45 ind:pas:3s; +confirmai confirmer ver 33.80 27.57 0.00 0.54 ind:pas:1s; +confirmaient confirmer ver 33.80 27.57 0.17 0.74 ind:imp:3p; +confirmais confirmer ver 33.80 27.57 0.01 0.14 ind:imp:1s; +confirmait confirmer ver 33.80 27.57 0.05 2.57 ind:imp:3s; +confirmant confirmer ver 33.80 27.57 0.50 1.08 par:pre; +confirmation confirmation nom f s 5.55 5.27 5.15 5.14 +confirmations confirmation nom f p 5.55 5.27 0.40 0.14 +confirme confirmer ver 33.80 27.57 9.27 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confirment confirmer ver 33.80 27.57 1.75 0.68 ind:pre:3p; +confirmer confirmer ver 33.80 27.57 7.26 6.96 ind:pre:2p;inf; +confirmera confirmer ver 33.80 27.57 1.35 0.27 ind:fut:3s; +confirmerai confirmer ver 33.80 27.57 0.11 0.07 ind:fut:1s; +confirmeraient confirmer ver 33.80 27.57 0.03 0.00 cnd:pre:3p; +confirmerait confirmer ver 33.80 27.57 0.17 0.68 cnd:pre:3s; +confirmerez confirmer ver 33.80 27.57 0.05 0.00 ind:fut:2p; +confirmeront confirmer ver 33.80 27.57 0.38 0.14 ind:fut:3p; +confirmes confirmer ver 33.80 27.57 0.31 0.07 ind:pre:2s; +confirmez confirmer ver 33.80 27.57 2.63 0.00 imp:pre:2p;ind:pre:2p; +confirmions confirmer ver 33.80 27.57 0.01 0.07 ind:imp:1p; +confirmâmes confirmer ver 33.80 27.57 0.10 0.00 ind:pas:1p; +confirmons confirmer ver 33.80 27.57 0.31 0.00 imp:pre:1p;ind:pre:1p; +confirmât confirmer ver 33.80 27.57 0.00 0.20 sub:imp:3s; +confirmèrent confirmer ver 33.80 27.57 0.01 0.61 ind:pas:3p; +confirmé confirmer ver m s 33.80 27.57 7.73 3.92 par:pas; +confirmée confirmé adj f s 3.84 1.28 1.04 0.27 +confirmées confirmer ver f p 33.80 27.57 0.40 0.14 par:pas; +confirmés confirmé adj m p 3.84 1.28 0.40 0.14 +confiscation confiscation nom f s 0.47 0.81 0.41 0.74 +confiscations confiscation nom f p 0.47 0.81 0.05 0.07 +confiserie confiserie nom f s 1.56 1.69 0.91 0.95 +confiseries confiserie nom f p 1.56 1.69 0.66 0.74 +confiseur confiseur nom m s 0.27 1.15 0.22 0.54 +confiseurs confiseur nom m p 0.27 1.15 0.04 0.61 +confiseuse confiseur nom f s 0.27 1.15 0.01 0.00 +confisqua confisquer ver 5.92 3.58 0.02 0.34 ind:pas:3s; +confisquaient confisquer ver 5.92 3.58 0.01 0.07 ind:imp:3p; +confisquait confisquer ver 5.92 3.58 0.01 0.47 ind:imp:3s; +confisquant confisquer ver 5.92 3.58 0.01 0.14 par:pre; +confisque confisquer ver 5.92 3.58 1.11 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confisquent confisquer ver 5.92 3.58 0.20 0.14 ind:pre:3p; +confisquer confisquer ver 5.92 3.58 1.03 0.54 inf; +confisquera confisquer ver 5.92 3.58 0.01 0.07 ind:fut:3s; +confisquerai confisquer ver 5.92 3.58 0.03 0.00 ind:fut:1s; +confisqueraient confisquer ver 5.92 3.58 0.01 0.00 cnd:pre:3p; +confisquerait confisquer ver 5.92 3.58 0.01 0.00 cnd:pre:3s; +confisquerons confisquer ver 5.92 3.58 0.34 0.00 ind:fut:1p; +confisqueront confisquer ver 5.92 3.58 0.03 0.00 ind:fut:3p; +confisquez confisquer ver 5.92 3.58 0.16 0.00 imp:pre:2p;ind:pre:2p; +confisquons confisquer ver 5.92 3.58 0.02 0.00 ind:pre:1p; +confisquât confisquer ver 5.92 3.58 0.00 0.07 sub:imp:3s; +confisquèrent confisquer ver 5.92 3.58 0.00 0.07 ind:pas:3p; +confisqué confisquer ver m s 5.92 3.58 2.06 0.68 par:pas; +confisquée confisquer ver f s 5.92 3.58 0.36 0.41 par:pas; +confisquées confisquer ver f p 5.92 3.58 0.19 0.27 par:pas; +confisqués confisquer ver m p 5.92 3.58 0.30 0.20 par:pas; +confit confit adj m s 0.71 2.43 0.25 0.20 +confite confit adj f s 0.71 2.43 0.15 0.34 +confiteor confiteor nom m 0.00 0.41 0.00 0.41 +confites confit adj f p 0.71 2.43 0.17 0.34 +confièrent confier ver 41.48 69.53 0.11 0.47 ind:pas:3p; +confits confit adj m p 0.71 2.43 0.15 1.55 +confiture confiture nom f s 7.41 15.41 6.71 8.72 +confitures confiture nom f p 7.41 15.41 0.70 6.69 +confituriers confiturier nom m p 0.01 0.14 0.00 0.14 +confiturière confiturier nom f s 0.01 0.14 0.01 0.00 +confié confier ver m s 41.48 69.53 10.71 15.00 par:pas; +confiée confier ver f s 41.48 69.53 3.38 4.19 par:pas; +confiées confier ver f p 41.48 69.53 0.69 0.68 par:pas; +confiés confier ver m p 41.48 69.53 0.92 0.95 par:pas; +conflagration conflagration nom f s 0.00 0.41 0.00 0.41 +conflictuel conflictuel adj m s 0.70 0.00 0.18 0.00 +conflictuelle conflictuel adj f s 0.70 0.00 0.33 0.00 +conflictuelles conflictuel adj f p 0.70 0.00 0.06 0.00 +conflictuels conflictuel adj m p 0.70 0.00 0.13 0.00 +conflit conflit nom m s 13.79 14.12 9.63 11.08 +conflits conflit nom m p 13.79 14.12 4.16 3.04 +confluaient confluer ver 0.07 0.68 0.00 0.14 ind:imp:3p; +confluait confluer ver 0.07 0.68 0.00 0.14 ind:imp:3s; +confluant confluer ver 0.07 0.68 0.00 0.07 par:pre; +conflue confluer ver 0.07 0.68 0.01 0.07 ind:pre:3s; +confluence confluence nom f s 0.27 0.27 0.27 0.27 +confluent confluent nom m s 0.21 0.88 0.21 0.81 +confluents confluent nom m p 0.21 0.88 0.00 0.07 +confluer confluer ver 0.07 0.68 0.05 0.14 inf; +conflué confluer ver m s 0.07 0.68 0.00 0.07 par:pas; +confond confondre ver 16.09 53.85 2.09 5.47 ind:pre:3s; +confondît confondre ver 16.09 53.85 0.00 0.14 sub:imp:3s; +confondaient confondre ver 16.09 53.85 0.05 4.73 ind:imp:3p; +confondais confondre ver 16.09 53.85 0.16 0.81 ind:imp:1s;ind:imp:2s; +confondait confondre ver 16.09 53.85 0.21 8.58 ind:imp:3s; +confondant confondre ver 16.09 53.85 0.03 2.23 par:pre; +confondante confondant adj f s 0.01 0.95 0.01 0.14 +confondantes confondant adj f p 0.01 0.95 0.00 0.20 +confondants confondant adj m p 0.01 0.95 0.00 0.20 +confonde confondre ver 16.09 53.85 0.22 0.68 sub:pre:1s;sub:pre:3s; +confondent confondre ver 16.09 53.85 1.01 4.19 ind:pre:3p; +confondez confondre ver 16.09 53.85 0.89 0.74 imp:pre:2p;ind:pre:2p; +confondions confondre ver 16.09 53.85 0.00 0.47 ind:imp:1p; +confondirent confondre ver 16.09 53.85 0.00 0.41 ind:pas:3p; +confondis confondre ver 16.09 53.85 0.00 0.14 ind:pas:1s; +confondit confondre ver 16.09 53.85 0.04 1.08 ind:pas:3s; +confondons confondre ver 16.09 53.85 0.16 0.27 imp:pre:1p; +confondra confondre ver 16.09 53.85 0.20 0.34 ind:fut:3s; +confondrai confondre ver 16.09 53.85 0.01 0.00 ind:fut:1s; +confondrais confondre ver 16.09 53.85 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +confondrait confondre ver 16.09 53.85 0.41 0.27 cnd:pre:3s; +confondre confondre ver 16.09 53.85 4.83 13.18 inf; +confondrez confondre ver 16.09 53.85 0.01 0.07 ind:fut:2p; +confondront confondre ver 16.09 53.85 0.31 0.14 ind:fut:3p; +confonds confondre ver 16.09 53.85 2.50 1.82 imp:pre:2s;ind:pre:1s;ind:pre:2s; +confondu confondre ver m s 16.09 53.85 2.50 3.65 par:pas; +confondue confondre ver f s 16.09 53.85 0.32 1.62 par:pas; +confondues confondu adj f p 0.30 3.85 0.06 1.42 +confondus confondu adj m p 0.30 3.85 0.21 1.69 +conformai conformer ver 1.62 5.00 0.00 0.07 ind:pas:1s; +conformaient conformer ver 1.62 5.00 0.00 0.07 ind:imp:3p; +conformais conformer ver 1.62 5.00 0.00 0.14 ind:imp:1s; +conformait conformer ver 1.62 5.00 0.01 0.54 ind:imp:3s; +conformant conformer ver 1.62 5.00 0.25 0.41 par:pre; +conformation conformation nom f s 0.01 0.27 0.01 0.27 +conforme conforme adj s 2.07 10.20 1.63 8.18 +conforment conformer ver 1.62 5.00 0.13 0.20 ind:pre:3p; +conformer conformer ver 1.62 5.00 0.60 2.16 inf; +conformera conformer ver 1.62 5.00 0.06 0.00 ind:fut:3s; +conformerai conformer ver 1.62 5.00 0.15 0.00 ind:fut:1s; +conformeraient conformer ver 1.62 5.00 0.00 0.07 cnd:pre:3p; +conformerez conformer ver 1.62 5.00 0.01 0.00 ind:fut:2p; +conformes conforme adj p 2.07 10.20 0.44 2.03 +conformisme conformisme nom m s 1.22 3.31 1.22 3.24 +conformismes conformisme nom m p 1.22 3.31 0.00 0.07 +conformiste conformiste nom s 0.42 0.95 0.32 0.47 +conformistes conformiste nom p 0.42 0.95 0.10 0.47 +conformité conformité nom f s 0.52 1.22 0.52 1.22 +conformât conformer ver 1.62 5.00 0.00 0.20 sub:imp:3s; +conformé conformer ver m s 1.62 5.00 0.04 0.14 par:pas; +conformée conformer ver f s 1.62 5.00 0.01 0.07 par:pas; +conformément conformément adv 3.09 4.26 3.09 4.26 +confort confort nom m s 6.02 17.03 5.97 16.62 +conforta conforter ver 0.47 1.82 0.00 0.14 ind:pas:3s; +confortable confortable adj s 13.78 15.20 12.04 12.30 +confortablement confortablement adv 1.54 3.24 1.54 3.24 +confortables confortable adj p 13.78 15.20 1.74 2.91 +confortaient conforter ver 0.47 1.82 0.00 0.07 ind:imp:3p; +confortait conforter ver 0.47 1.82 0.00 0.07 ind:imp:3s; +confortant conforter ver 0.47 1.82 0.01 0.00 par:pre; +conforte conforter ver 0.47 1.82 0.16 0.14 ind:pre:1s;ind:pre:3s; +conforter conforter ver 0.47 1.82 0.23 0.61 inf; +conforterait conforter ver 0.47 1.82 0.01 0.07 cnd:pre:3s; +conforts confort nom m p 6.02 17.03 0.05 0.41 +conforté conforter ver m s 0.47 1.82 0.05 0.41 par:pas; +confortée conforter ver f s 0.47 1.82 0.01 0.34 par:pas; +confraternel confraternel adj m s 0.01 0.41 0.01 0.14 +confraternelle confraternel adj f s 0.01 0.41 0.00 0.07 +confraternellement confraternellement adv 0.00 0.07 0.00 0.07 +confraternelles confraternel adj f p 0.01 0.41 0.00 0.14 +confraternels confraternel adj m p 0.01 0.41 0.00 0.07 +confraternité confraternité nom f s 0.00 0.07 0.00 0.07 +confrontai confronter ver 8.14 5.41 0.00 0.07 ind:pas:1s; +confrontaient confronter ver 8.14 5.41 0.00 0.14 ind:imp:3p; +confrontais confronter ver 8.14 5.41 0.01 0.14 ind:imp:1s; +confrontait confronter ver 8.14 5.41 0.01 0.14 ind:imp:3s; +confrontant confronter ver 8.14 5.41 0.05 0.27 par:pre; +confrontation confrontation nom f s 2.44 3.45 2.12 2.84 +confrontations confrontation nom f p 2.44 3.45 0.32 0.61 +confronte confronter ver 8.14 5.41 0.59 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confrontent confronter ver 8.14 5.41 0.16 0.20 ind:pre:3p; +confronter confronter ver 8.14 5.41 2.11 1.35 inf; +confrontez confronter ver 8.14 5.41 0.08 0.00 imp:pre:2p;ind:pre:2p; +confrontons confronter ver 8.14 5.41 0.06 0.00 imp:pre:1p;ind:pre:1p; +confrontèrent confronter ver 8.14 5.41 0.00 0.07 ind:pas:3p; +confronté confronter ver m s 8.14 5.41 2.76 1.28 par:pas; +confrontée confronter ver f s 8.14 5.41 0.69 0.61 par:pas; +confrontées confronter ver f p 8.14 5.41 0.19 0.27 par:pas; +confrontés confronter ver m p 8.14 5.41 1.43 0.68 par:pas; +confrère confrère nom m s 3.98 11.28 2.76 5.00 +confrères confrère nom m p 3.98 11.28 1.22 6.28 +confrérie confrérie nom f s 3.02 1.69 2.86 1.49 +confréries confrérie nom f p 3.02 1.69 0.16 0.20 +confère conférer ver 2.99 13.18 0.78 3.11 ind:pre:1s;ind:pre:3s; +confèrent conférer ver 2.99 13.18 0.17 0.54 ind:pre:3p; +confucianisme confucianisme nom m s 0.02 0.14 0.02 0.14 +confucéenne confucéen adj f s 0.00 0.07 0.00 0.07 +confédéral confédéral adj m s 0.00 0.14 0.00 0.07 +confédération confédération nom f s 0.56 1.15 0.56 1.15 +confédéraux confédéral adj m p 0.00 0.14 0.00 0.07 +confédérer confédérer ver 0.03 0.07 0.00 0.07 inf; +confédéré confédéré adj m s 0.79 0.00 0.36 0.00 +confédérée confédéré adj f s 0.79 0.00 0.11 0.00 +confédérés confédéré nom m p 0.95 0.07 0.86 0.07 +conféra conférer ver 2.99 13.18 0.00 0.14 ind:pas:3s; +conféraient conférer ver 2.99 13.18 0.00 0.81 ind:imp:3p; +conférais conférer ver 2.99 13.18 0.00 0.07 ind:imp:1s; +conférait conférer ver 2.99 13.18 0.04 3.24 ind:imp:3s; +conférant conférer ver 2.99 13.18 0.03 0.95 par:pre; +conférence conférence nom f s 19.86 22.03 17.37 16.28 +conférences_débat conférences_débat nom f p 0.00 0.07 0.00 0.07 +conférences conférence nom f p 19.86 22.03 2.49 5.74 +conférencier conférencier nom m s 0.43 0.95 0.26 0.61 +conférenciers conférencier nom m p 0.43 0.95 0.15 0.34 +conférencière conférencier nom f s 0.43 0.95 0.03 0.00 +conférents conférent nom m p 0.00 0.07 0.00 0.07 +conférer conférer ver 2.99 13.18 0.09 2.30 inf; +conférera conférer ver 2.99 13.18 0.01 0.07 ind:fut:3s; +conféreraient conférer ver 2.99 13.18 0.00 0.07 cnd:pre:3p; +conférerait conférer ver 2.99 13.18 0.00 0.14 cnd:pre:3s; +conférerez conférer ver 2.99 13.18 0.00 0.07 ind:fut:2p; +conféreront conférer ver 2.99 13.18 0.01 0.07 ind:fut:3p; +conférez conférer ver 2.99 13.18 0.01 0.00 ind:pre:2p; +conférât conférer ver 2.99 13.18 0.00 0.07 sub:imp:3s; +conférèrent conférer ver 2.99 13.18 0.00 0.07 ind:pas:3p; +conféré conférer ver m s 2.99 13.18 0.22 0.95 par:pas; +conférée conférer ver f s 2.99 13.18 0.18 0.27 par:pas; +conférées conférer ver f p 2.99 13.18 0.01 0.07 par:pas; +conférés conférer ver m p 2.99 13.18 1.45 0.20 par:pas; +confus confus adj m 11.02 37.23 7.48 19.86 +confuse confus adj f s 11.02 37.23 2.76 12.70 +confuses confus adj f p 11.02 37.23 0.77 4.66 +confusion confusion nom f s 8.53 20.61 8.12 20.07 +confusionnisme confusionnisme nom m s 0.01 0.07 0.01 0.07 +confusions confusion nom f p 8.53 20.61 0.41 0.54 +confusément confusément adv 0.03 10.00 0.03 10.00 +conga conga nom f s 0.20 0.07 0.14 0.07 +congaïs congaï nom f p 0.00 0.07 0.00 0.07 +congas conga nom f p 0.20 0.07 0.06 0.00 +congayes congaye nom f p 0.00 0.07 0.00 0.07 +congela congeler ver 3.85 0.74 0.02 0.00 ind:pas:3s; +congelait congeler ver 3.85 0.74 0.01 0.00 ind:imp:3s; +congelant congeler ver 3.85 0.74 0.01 0.00 par:pre; +congeler congeler ver 3.85 0.74 1.12 0.14 inf; +congelez congeler ver 3.85 0.74 0.04 0.00 imp:pre:2p;ind:pre:2p; +congelons congeler ver 3.85 0.74 0.16 0.00 ind:pre:1p; +congelé congelé adj m s 1.87 0.68 1.16 0.27 +congelée congeler ver f s 3.85 0.74 0.57 0.14 par:pas; +congelées congelé adj f p 1.87 0.68 0.23 0.07 +congelés congelé adj m p 1.87 0.68 0.31 0.27 +congestif congestif adj m s 0.07 0.00 0.03 0.00 +congestion congestion nom f s 1.10 1.76 1.08 1.69 +congestionnaient congestionner ver 0.16 1.42 0.00 0.07 ind:imp:3p; +congestionnait congestionner ver 0.16 1.42 0.00 0.20 ind:imp:3s; +congestionne congestionner ver 0.16 1.42 0.01 0.07 ind:pre:3s; +congestionnent congestionner ver 0.16 1.42 0.11 0.00 ind:pre:3p; +congestionné congestionner ver m s 0.16 1.42 0.03 0.74 par:pas; +congestionnée congestionné adj f s 0.10 2.43 0.04 0.27 +congestionnées congestionné adj f p 0.10 2.43 0.04 0.20 +congestionnés congestionné adj m p 0.10 2.43 0.01 0.54 +congestions congestion nom f p 1.10 1.76 0.03 0.07 +congestive congestif adj f s 0.07 0.00 0.04 0.00 +conglobation conglobation nom f s 0.00 0.07 0.00 0.07 +conglomérat conglomérat nom m s 0.44 0.54 0.38 0.41 +conglomérats conglomérat nom m p 0.44 0.54 0.06 0.14 +conglomérée conglomérer ver f s 0.00 0.07 0.00 0.07 par:pas; +congolais congolais adj m 0.30 0.20 0.28 0.07 +congolaise congolais adj f s 0.30 0.20 0.01 0.14 +congrûment congrûment adv 0.00 0.07 0.00 0.07 +congratula congratuler ver 0.19 2.30 0.00 0.07 ind:pas:3s; +congratulaient congratuler ver 0.19 2.30 0.00 0.41 ind:imp:3p; +congratulait congratuler ver 0.19 2.30 0.00 0.47 ind:imp:3s; +congratulant congratuler ver 0.19 2.30 0.00 0.07 par:pre; +congratulations congratulation nom f p 0.09 0.41 0.09 0.41 +congratule congratuler ver 0.19 2.30 0.01 0.14 ind:pre:3s; +congratulent congratuler ver 0.19 2.30 0.00 0.27 ind:pre:3p; +congratuler congratuler ver 0.19 2.30 0.17 0.47 inf; +congratulions congratuler ver 0.19 2.30 0.00 0.07 ind:imp:1p; +congratulâmes congratuler ver 0.19 2.30 0.00 0.07 ind:pas:1p; +congratulèrent congratuler ver 0.19 2.30 0.00 0.14 ind:pas:3p; +congratulé congratuler ver m s 0.19 2.30 0.01 0.07 par:pas; +congratulés congratuler ver m p 0.19 2.30 0.00 0.07 par:pas; +congre congre nom m s 0.44 0.20 0.01 0.14 +congres congre nom m p 0.44 0.20 0.43 0.07 +congressistes congressiste nom p 0.04 0.20 0.04 0.20 +congrès congrès nom m 15.77 8.78 15.77 8.78 +congrue congru adj f s 0.00 0.34 0.00 0.34 +congréganiste congréganiste nom s 0.00 0.07 0.00 0.07 +congrégation congrégation nom f s 1.34 0.61 1.33 0.34 +congrégationaliste congrégationaliste adj f s 0.01 0.00 0.01 0.00 +congrégations congrégation nom f p 1.34 0.61 0.01 0.27 +congèle congeler ver 3.85 0.74 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +congèlera congeler ver 3.85 0.74 0.11 0.00 ind:fut:3s; +congèlerais congeler ver 3.85 0.74 0.01 0.00 cnd:pre:1s; +congère congère nom f s 0.05 1.15 0.02 0.34 +congères congère nom f p 0.05 1.15 0.03 0.81 +congé congé nom m s 20.74 21.62 18.16 17.64 +congédia congédier ver 2.17 3.45 0.00 0.68 ind:pas:3s; +congédiai congédier ver 2.17 3.45 0.00 0.07 ind:pas:1s; +congédiait congédier ver 2.17 3.45 0.00 0.14 ind:imp:3s; +congédiant congédier ver 2.17 3.45 0.00 0.20 par:pre; +congédie congédier ver 2.17 3.45 0.38 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +congédiement congédiement nom m s 0.02 0.14 0.02 0.14 +congédient congédier ver 2.17 3.45 0.01 0.00 ind:pre:3p; +congédier congédier ver 2.17 3.45 0.68 0.81 inf; +congédiez congédier ver 2.17 3.45 0.08 0.00 imp:pre:2p;ind:pre:2p; +congédié congédier ver m s 2.17 3.45 0.69 0.68 par:pas; +congédiée congédier ver f s 2.17 3.45 0.26 0.00 par:pas; +congédiées congédier ver f p 2.17 3.45 0.00 0.07 par:pas; +congédiés congédier ver m p 2.17 3.45 0.07 0.14 par:pas; +congélateur congélateur nom m s 2.00 0.34 1.96 0.34 +congélateurs congélateur nom m p 2.00 0.34 0.04 0.00 +congélation congélation nom f s 0.49 0.47 0.49 0.47 +congénital congénital adj m s 0.82 1.96 0.34 0.61 +congénitale congénital adj f s 0.82 1.96 0.34 1.08 +congénitalement congénitalement adv 0.00 0.20 0.00 0.20 +congénitales congénital adj f p 0.82 1.96 0.13 0.14 +congénitaux congénital adj m p 0.82 1.96 0.02 0.14 +congénère congénère nom s 0.38 1.89 0.02 0.27 +congénères congénère nom p 0.38 1.89 0.36 1.62 +congés congé nom m p 20.74 21.62 2.58 3.99 +conifère conifère nom m s 0.15 0.81 0.02 0.07 +conifères conifère nom m p 0.15 0.81 0.13 0.74 +conique conique adj s 0.07 2.64 0.06 1.76 +coniques conique adj p 0.07 2.64 0.01 0.88 +conjecturai conjecturer ver 0.23 0.20 0.01 0.00 ind:pas:1s; +conjectural conjectural adj m s 0.01 0.07 0.00 0.07 +conjecturale conjectural adj f s 0.01 0.07 0.01 0.00 +conjecture conjecture nom f s 0.65 1.55 0.28 0.27 +conjecturent conjecturer ver 0.23 0.20 0.01 0.00 ind:pre:3p; +conjecturer conjecturer ver 0.23 0.20 0.14 0.20 inf; +conjectures conjecture nom f p 0.65 1.55 0.37 1.28 +conjoindre conjoindre ver 0.05 0.14 0.01 0.00 inf; +conjoint conjoint nom m s 0.98 1.76 0.55 1.08 +conjointe conjoint adj f s 0.48 0.95 0.30 0.68 +conjointement conjointement adv 0.23 1.35 0.23 1.35 +conjointes conjoint adj f p 0.48 0.95 0.06 0.07 +conjoints conjoint nom m p 0.98 1.76 0.41 0.54 +conjoncteur conjoncteur nom m s 0.01 0.00 0.01 0.00 +conjonctif conjonctif adj m s 0.11 0.07 0.09 0.00 +conjonction conjonction nom f s 0.41 2.43 0.41 1.96 +conjonctions conjonction nom f p 0.41 2.43 0.00 0.47 +conjonctive conjonctif adj f s 0.11 0.07 0.01 0.00 +conjonctive conjonctive nom f s 0.01 0.07 0.01 0.00 +conjonctives conjonctif adj f p 0.11 0.07 0.01 0.07 +conjonctivite conjonctivite nom f s 0.54 0.47 0.39 0.34 +conjonctivites conjonctivite nom f p 0.54 0.47 0.16 0.14 +conjoncture conjoncture nom f s 0.80 2.50 0.79 2.16 +conjonctures conjoncture nom f p 0.80 2.50 0.01 0.34 +conjugaison conjugaison nom f s 0.14 1.15 0.04 0.74 +conjugaisons conjugaison nom f p 0.14 1.15 0.10 0.41 +conjugal conjugal adj m s 4.88 9.59 1.42 4.46 +conjugale conjugal adj f s 4.88 9.59 2.08 3.18 +conjugalement conjugalement adv 0.00 0.07 0.00 0.07 +conjugales conjugal adj f p 4.88 9.59 0.67 1.08 +conjugalité conjugalité nom f s 0.00 0.27 0.00 0.27 +conjugaux conjugal adj m p 4.88 9.59 0.72 0.88 +conjuguaient conjuguer ver 0.59 5.74 0.00 0.20 ind:imp:3p; +conjuguait conjuguer ver 0.59 5.74 0.00 0.27 ind:imp:3s; +conjuguant conjuguer ver 0.59 5.74 0.00 0.07 par:pre; +conjugue conjuguer ver 0.59 5.74 0.27 0.20 imp:pre:2s;ind:pre:3s; +conjuguent conjuguer ver 0.59 5.74 0.00 0.54 ind:pre:3p; +conjuguer conjuguer ver 0.59 5.74 0.21 1.01 inf; +conjuguerions conjuguer ver 0.59 5.74 0.00 0.07 cnd:pre:1p; +conjugues conjuguer ver 0.59 5.74 0.00 0.14 ind:pre:2s; +conjugué conjugué adj m s 0.15 0.41 0.15 0.34 +conjuguée conjuguer ver f s 0.59 5.74 0.00 0.74 par:pas; +conjuguées conjuguer ver f p 0.59 5.74 0.00 0.68 par:pas; +conjugués conjuguer ver m p 0.59 5.74 0.12 1.08 par:pas; +conjungo conjungo nom m s 0.00 0.27 0.00 0.20 +conjungos conjungo nom m p 0.00 0.27 0.00 0.07 +conjura conjurer ver 5.88 6.35 0.00 0.20 ind:pas:3s; +conjurait conjurer ver 5.88 6.35 0.00 0.20 ind:imp:3s; +conjurant conjurer ver 5.88 6.35 0.02 0.07 par:pre; +conjurateur conjurateur nom m s 0.01 0.00 0.01 0.00 +conjuration conjuration nom f s 0.32 1.69 0.32 1.35 +conjurations conjuration nom f p 0.32 1.69 0.00 0.34 +conjuratoire conjuratoire adj f s 0.01 0.00 0.01 0.00 +conjure conjurer ver 5.88 6.35 5.01 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conjurer conjurer ver 5.88 6.35 0.49 3.78 inf; +conjurera conjurer ver 5.88 6.35 0.00 0.07 ind:fut:3s; +conjuré conjurer ver m s 5.88 6.35 0.21 0.27 par:pas; +conjurée conjuré nom f s 0.56 0.47 0.01 0.07 +conjurées conjurer ver f p 5.88 6.35 0.00 0.07 par:pas; +conjurés conjuré nom m p 0.56 0.47 0.55 0.34 +connûmes connaître ver 961.03 629.19 0.01 0.20 ind:pas:1p; +connût connaître ver 961.03 629.19 0.00 2.23 sub:imp:3s; +connaît connaître ver 961.03 629.19 103.42 57.03 ind:pre:3s; +connaîtra connaître ver 961.03 629.19 2.67 1.69 ind:fut:3s; +connaîtrai connaître ver 961.03 629.19 1.17 1.96 ind:fut:1s; +connaîtraient connaître ver 961.03 629.19 0.07 0.95 cnd:pre:3p; +connaîtrais connaître ver 961.03 629.19 1.54 1.62 cnd:pre:1s;cnd:pre:2s; +connaîtrait connaître ver 961.03 629.19 0.72 2.77 cnd:pre:3s; +connaîtras connaître ver 961.03 629.19 1.85 1.42 ind:fut:2s; +connaître connaître ver 961.03 629.19 88.63 90.07 inf;; +connaîtrez connaître ver 961.03 629.19 1.47 0.74 ind:fut:2p; +connaîtriez connaître ver 961.03 629.19 0.70 0.20 cnd:pre:2p; +connaîtrions connaître ver 961.03 629.19 0.03 0.14 cnd:pre:1p; +connaîtrons connaître ver 961.03 629.19 0.76 0.88 ind:fut:1p; +connaîtront connaître ver 961.03 629.19 0.81 0.74 ind:fut:3p; +connais connaître ver 961.03 629.19 415.87 111.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +connaissable connaissable adj m s 0.01 0.20 0.01 0.14 +connaissables connaissable adj p 0.01 0.20 0.00 0.07 +connaissaient connaître ver 961.03 629.19 5.23 16.08 ind:imp:3p; +connaissais connaître ver 961.03 629.19 34.19 41.82 ind:imp:1s;ind:imp:2s; +connaissait connaître ver 961.03 629.19 20.02 90.68 ind:imp:3s; +connaissance connaissance nom f s 43.08 67.50 36.60 55.81 +connaissances connaissance nom f p 43.08 67.50 6.47 11.69 +connaissant connaître ver 961.03 629.19 2.65 8.51 par:pre; +connaisse connaître ver 961.03 629.19 10.78 4.32 sub:pre:1s;sub:pre:3s; +connaissement connaissement nom m s 0.06 0.07 0.06 0.00 +connaissements connaissement nom m p 0.06 0.07 0.00 0.07 +connaissent connaître ver 961.03 629.19 18.32 16.89 ind:pre:3p; +connaisses connaître ver 961.03 629.19 1.90 0.74 sub:pre:2s; +connaisseur connaisseur nom m s 1.36 5.61 1.09 3.04 +connaisseurs connaisseur nom m p 1.36 5.61 0.24 1.76 +connaisseuse connaisseur nom f s 1.36 5.61 0.04 0.68 +connaisseuses connaisseur nom f p 1.36 5.61 0.00 0.14 +connaissez connaître ver 961.03 629.19 125.09 29.53 imp:pre:2p;ind:pre:2p; +connaissiez connaître ver 961.03 629.19 13.71 2.84 ind:imp:2p;sub:pre:2p; +connaissions connaître ver 961.03 629.19 1.40 5.61 ind:imp:1p; +connaissons connaître ver 961.03 629.19 11.78 6.89 imp:pre:1p;ind:pre:1p; +connard connard nom m s 50.13 6.28 40.70 4.53 +connards connard nom m p 50.13 6.28 9.44 1.76 +connasse connasse nom f s 5.29 2.03 5.10 1.55 +connasses connasse nom f p 5.29 2.03 0.20 0.47 +conne con nom f s 121.91 68.99 8.57 3.78 +conneau conneau nom m s 0.16 0.27 0.16 0.14 +conneaux conneau nom m p 0.16 0.27 0.00 0.14 +connectant connecter ver 8.88 0.54 0.15 0.00 par:pre; +connecte connecter ver 8.88 0.54 1.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +connectent connecter ver 8.88 0.54 0.05 0.00 ind:pre:3p; +connecter connecter ver 8.88 0.54 1.73 0.14 inf; +connectera connecter ver 8.88 0.54 0.01 0.00 ind:fut:3s; +connecteur connecteur nom m s 0.08 0.00 0.08 0.00 +connectez connecter ver 8.88 0.54 0.34 0.00 imp:pre:2p;ind:pre:2p; +connectiez connecter ver 8.88 0.54 0.01 0.00 ind:imp:2p; +connections connecter ver 8.88 0.54 0.75 0.14 ind:imp:1p; +connectivité connectivité nom f s 0.06 0.00 0.06 0.00 +connectons connecter ver 8.88 0.54 0.01 0.00 ind:pre:1p; +connecté connecter ver m s 8.88 0.54 3.15 0.07 par:pas; +connectée connecter ver f s 8.88 0.54 0.48 0.00 par:pas; +connectées connecter ver f p 8.88 0.54 0.18 0.07 par:pas; +connectés connecter ver m p 8.88 0.54 0.90 0.14 par:pas; +connement connement adv 0.00 1.28 0.00 1.28 +connerie connerie nom f s 95.42 29.73 19.68 12.50 +conneries connerie nom f p 95.42 29.73 75.75 17.23 +connes conne nom f p 0.71 0.00 0.71 0.00 +connexe connexe adj m s 0.00 0.20 0.00 0.14 +connexes connexe adj p 0.00 0.20 0.00 0.07 +connexion connexion nom f s 4.45 0.95 3.71 0.47 +connexions connexion nom f p 4.45 0.95 0.74 0.47 +connils connil nom m p 0.00 0.07 0.00 0.07 +connivence connivence nom f s 0.74 6.69 0.60 6.08 +connivences connivence nom f p 0.74 6.69 0.14 0.61 +connotation connotation nom f s 0.54 0.14 0.50 0.07 +connotations connotation nom f p 0.54 0.14 0.04 0.07 +connu connaître ver m s 961.03 629.19 70.33 84.53 par:pas; +connue connaître ver f s 961.03 629.19 13.32 17.77 par:pas; +connues connaître ver f p 961.03 629.19 2.03 5.34 par:pas; +connurent connaître ver 961.03 629.19 0.33 1.55 ind:pas:3p; +connus connaître ver m p 961.03 629.19 9.39 14.26 ind:pas:1s;ind:pas:2s;par:pas; +connusse connaître ver 961.03 629.19 0.00 0.34 sub:imp:1s; +connussent connaître ver 961.03 629.19 0.00 0.34 sub:imp:3p; +connusses connaître ver 961.03 629.19 0.00 0.07 sub:imp:2s; +connut connaître ver 961.03 629.19 0.84 7.09 ind:pas:3s; +connétable connétable nom m s 0.11 2.03 0.11 1.49 +connétables connétable nom m p 0.11 2.03 0.00 0.54 +conoïdaux conoïdal adj m p 0.00 0.07 0.00 0.07 +conoïde conoïde adj s 0.00 0.07 0.00 0.07 +conquît conquérir ver 14.89 17.64 0.00 0.14 sub:imp:3s; +conque conque nom f s 0.48 2.23 0.44 1.89 +conquerra conquérir ver 14.89 17.64 0.11 0.00 ind:fut:3s; +conquerraient conquérir ver 14.89 17.64 0.00 0.07 cnd:pre:3p; +conquerrons conquérir ver 14.89 17.64 0.02 0.00 ind:fut:1p; +conquerront conquérir ver 14.89 17.64 0.02 0.14 ind:fut:3p; +conques conque nom f p 0.48 2.23 0.04 0.34 +conquiers conquérir ver 14.89 17.64 0.13 0.07 imp:pre:2s;ind:pre:1s; +conquiert conquérir ver 14.89 17.64 0.49 0.68 ind:pre:3s; +conquirent conquérir ver 14.89 17.64 0.02 0.07 ind:pas:3p; +conquis conquérir ver m 14.89 17.64 5.40 7.97 par:pas; +conquise conquérir ver f s 14.89 17.64 0.77 0.95 par:pas; +conquises conquis adj f p 0.88 2.70 0.13 0.47 +conquistador conquistador nom m s 0.38 1.69 0.12 0.74 +conquistadores conquistador nom m p 0.38 1.69 0.01 0.54 +conquistadors conquistador nom m p 0.38 1.69 0.25 0.41 +conquit conquérir ver 14.89 17.64 0.29 0.81 ind:pas:3s; +conquière conquérir ver 14.89 17.64 0.02 0.07 sub:pre:1s;sub:pre:3s; +conquièrent conquérir ver 14.89 17.64 0.05 0.27 ind:pre:3p; +conquérait conquérir ver 14.89 17.64 0.01 0.07 ind:imp:3s; +conquérant conquérant nom m s 1.34 5.20 0.82 2.64 +conquérante conquérant adj f s 0.53 2.64 0.29 1.01 +conquérantes conquérant adj f p 0.53 2.64 0.00 0.27 +conquérants conquérant nom m p 1.34 5.20 0.52 2.36 +conquérez conquérir ver 14.89 17.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +conquérir conquérir ver 14.89 17.64 7.11 5.54 inf; +conquérons conquérir ver 14.89 17.64 0.01 0.07 ind:pre:1p; +conquête conquête nom f s 5.95 16.42 3.85 10.88 +conquêtes conquête nom f p 5.95 16.42 2.10 5.54 +cons con nom m p 121.91 68.99 19.90 19.05 +consacra consacrer ver 18.27 38.18 0.29 1.89 ind:pas:3s; +consacrai consacrer ver 18.27 38.18 0.01 0.34 ind:pas:1s; +consacraient consacrer ver 18.27 38.18 0.14 0.41 ind:imp:3p; +consacrais consacrer ver 18.27 38.18 0.04 0.41 ind:imp:1s;ind:imp:2s; +consacrait consacrer ver 18.27 38.18 0.34 2.64 ind:imp:3s; +consacrant consacrer ver 18.27 38.18 0.07 1.15 par:pre; +consacre consacrer ver 18.27 38.18 2.94 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +consacrent consacrer ver 18.27 38.18 0.48 0.27 ind:pre:3p; +consacrer consacrer ver 18.27 38.18 5.10 11.89 inf; +consacrera consacrer ver 18.27 38.18 0.14 0.07 ind:fut:3s; +consacrerai consacrer ver 18.27 38.18 0.78 0.14 ind:fut:1s; +consacreraient consacrer ver 18.27 38.18 0.00 0.07 cnd:pre:3p; +consacrerais consacrer ver 18.27 38.18 0.02 0.07 cnd:pre:1s; +consacrerait consacrer ver 18.27 38.18 0.12 0.47 cnd:pre:3s; +consacreras consacrer ver 18.27 38.18 0.10 0.00 ind:fut:2s; +consacrerez consacrer ver 18.27 38.18 0.01 0.00 ind:fut:2p; +consacreriez consacrer ver 18.27 38.18 0.00 0.07 cnd:pre:2p; +consacrerions consacrer ver 18.27 38.18 0.00 0.07 cnd:pre:1p; +consacreront consacrer ver 18.27 38.18 0.11 0.00 ind:fut:3p; +consacres consacrer ver 18.27 38.18 0.31 0.20 ind:pre:2s; +consacrez consacrer ver 18.27 38.18 0.28 0.07 imp:pre:2p;ind:pre:2p; +consacriez consacrer ver 18.27 38.18 0.04 0.07 ind:imp:2p; +consacrons consacrer ver 18.27 38.18 0.39 0.07 imp:pre:1p;ind:pre:1p; +consacrèrent consacrer ver 18.27 38.18 0.00 0.20 ind:pas:3p; +consacré consacrer ver m s 18.27 38.18 4.13 6.15 par:pas; +consacrée consacrer ver f s 18.27 38.18 2.15 4.53 par:pas; +consacrées consacré adj f p 1.53 2.77 0.12 0.61 +consacrés consacrer ver m p 18.27 38.18 0.22 2.30 par:pas; +consanguin consanguin adj m s 0.13 0.61 0.02 0.14 +consanguine consanguin adj f s 0.13 0.61 0.02 0.07 +consanguinité consanguinité nom f s 0.22 0.27 0.22 0.20 +consanguinités consanguinité nom f p 0.22 0.27 0.00 0.07 +consanguins consanguin adj m p 0.13 0.61 0.09 0.41 +consciemment consciemment adv 0.92 2.36 0.92 2.36 +conscience conscience nom f s 45.53 81.55 44.46 80.07 +consciences conscience nom f p 45.53 81.55 1.07 1.49 +consciencieuse consciencieux adj f s 1.64 3.38 0.17 0.68 +consciencieusement consciencieusement adv 0.25 4.86 0.25 4.86 +consciencieuses consciencieux adj f p 1.64 3.38 0.01 0.41 +consciencieux consciencieux adj m 1.64 3.38 1.45 2.30 +conscient conscient adj m s 15.15 14.59 8.51 7.43 +consciente conscient adj f s 15.15 14.59 4.00 4.32 +conscientes conscient adj f p 15.15 14.59 0.34 0.47 +conscients conscient adj m p 15.15 14.59 2.30 2.36 +conscription conscription nom f s 0.16 0.20 0.16 0.20 +conscrit conscrit nom m s 0.27 1.89 0.02 0.88 +conscrits conscrit nom m p 0.27 1.89 0.25 1.01 +conseil conseil nom m s 87.14 84.46 68.86 58.18 +conseilla conseiller ver 32.11 34.93 0.03 4.59 ind:pas:3s; +conseillai conseiller ver 32.11 34.93 0.00 0.68 ind:pas:1s; +conseillaient conseiller ver 32.11 34.93 0.20 0.47 ind:imp:3p; +conseillais conseiller ver 32.11 34.93 0.22 0.74 ind:imp:1s;ind:imp:2s; +conseillait conseiller ver 32.11 34.93 0.09 3.51 ind:imp:3s; +conseillant conseiller ver 32.11 34.93 0.18 0.88 par:pre; +conseille conseiller ver 32.11 34.93 13.40 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +conseillent conseiller ver 32.11 34.93 0.29 0.14 ind:pre:3p; +conseiller conseiller nom m s 22.97 19.32 16.42 11.62 +conseillera conseiller ver 32.11 34.93 0.08 0.14 ind:fut:3s; +conseillerai conseiller ver 32.11 34.93 0.24 0.14 ind:fut:1s; +conseillerais conseiller ver 32.11 34.93 0.72 0.47 cnd:pre:1s; +conseillerait conseiller ver 32.11 34.93 0.07 0.20 cnd:pre:3s; +conseillerez conseiller ver 32.11 34.93 0.12 0.14 ind:fut:2p; +conseilleriez conseiller ver 32.11 34.93 0.07 0.07 cnd:pre:2p; +conseillers conseiller nom m p 22.97 19.32 4.74 6.89 +conseilles conseiller ver 32.11 34.93 0.83 0.20 ind:pre:2s; +conseilleurs conseilleur nom m p 0.00 0.07 0.00 0.07 +conseillez conseiller ver 32.11 34.93 1.63 0.61 imp:pre:2p;ind:pre:2p; +conseillons conseiller ver 32.11 34.93 0.78 0.00 imp:pre:1p;ind:pre:1p; +conseillère conseiller nom f s 22.97 19.32 1.82 0.74 +conseillèrent conseiller ver 32.11 34.93 0.01 0.27 ind:pas:3p; +conseillères conseillère nom f p 0.04 0.00 0.04 0.00 +conseillé conseiller ver m s 32.11 34.93 5.63 8.18 par:pas; +conseillée conseiller ver f s 32.11 34.93 0.16 0.41 par:pas; +conseillées conseiller ver f p 32.11 34.93 0.01 0.20 par:pas; +conseillés conseiller ver m p 32.11 34.93 0.52 0.41 par:pas; +conseils conseil nom m p 87.14 84.46 18.29 26.28 +consens consentir ver 6.03 34.46 1.12 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +consensuel consensuel adj m s 0.24 0.07 0.13 0.07 +consensuelle consensuel adj f s 0.24 0.07 0.11 0.00 +consensus consensus nom m 0.65 0.34 0.65 0.34 +consent consentir ver 6.03 34.46 0.90 3.11 ind:pre:3s; +consentît consentir ver 6.03 34.46 0.01 1.35 sub:imp:3s; +consentaient consentir ver 6.03 34.46 0.00 0.88 ind:imp:3p; +consentais consentir ver 6.03 34.46 0.21 0.61 ind:imp:1s;ind:imp:2s; +consentait consentir ver 6.03 34.46 0.14 4.12 ind:imp:3s; +consentant consentant adj m s 1.47 2.77 0.51 0.68 +consentante consentant adj f s 1.47 2.77 0.55 1.55 +consentantes consentant adj f p 1.47 2.77 0.05 0.27 +consentants consentant adj m p 1.47 2.77 0.35 0.27 +consente consentir ver 6.03 34.46 0.02 0.61 sub:pre:1s;sub:pre:3s; +consentement consentement nom m s 3.56 5.95 2.96 5.68 +consentements consentement nom m p 3.56 5.95 0.59 0.27 +consentent consentir ver 6.03 34.46 0.28 0.95 ind:pre:3p; +consentes consentir ver 6.03 34.46 0.01 0.14 sub:pre:2s; +consentez consentir ver 6.03 34.46 0.69 0.27 imp:pre:2p;ind:pre:2p; +consenti consentir ver m s 6.03 34.46 0.98 6.82 par:pas; +consentie consentir ver f s 6.03 34.46 0.09 1.08 par:pas; +consenties consentir ver f p 6.03 34.46 0.03 0.34 par:pas; +consentiez consentir ver 6.03 34.46 0.01 0.07 ind:imp:2p; +consentions consentir ver 6.03 34.46 0.00 0.34 ind:imp:1p; +consentir consentir ver 6.03 34.46 0.50 4.32 inf; +consentira consentir ver 6.03 34.46 0.05 0.47 ind:fut:3s; +consentirai consentir ver 6.03 34.46 0.09 0.07 ind:fut:1s; +consentiraient consentir ver 6.03 34.46 0.00 0.07 cnd:pre:3p; +consentirais consentir ver 6.03 34.46 0.16 0.20 cnd:pre:1s;cnd:pre:2s; +consentirait consentir ver 6.03 34.46 0.06 1.35 cnd:pre:3s; +consentiras consentir ver 6.03 34.46 0.01 0.07 ind:fut:2s; +consentirent consentir ver 6.03 34.46 0.00 0.27 ind:pas:3p; +consentirez consentir ver 6.03 34.46 0.16 0.07 ind:fut:2p; +consentiriez consentir ver 6.03 34.46 0.01 0.14 cnd:pre:2p; +consentirions consentir ver 6.03 34.46 0.00 0.07 cnd:pre:1p; +consentiront consentir ver 6.03 34.46 0.13 0.00 ind:fut:3p; +consentis consentir ver m p 6.03 34.46 0.08 0.88 ind:pas:1s;par:pas; +consentisse consentir ver 6.03 34.46 0.00 0.07 sub:imp:1s; +consentissent consentir ver 6.03 34.46 0.00 0.14 sub:imp:3p; +consentit consentir ver 6.03 34.46 0.19 4.19 ind:pas:3s; +consentons consentir ver 6.03 34.46 0.05 0.07 ind:pre:1p; +conserva conserver ver 15.08 55.14 0.34 1.22 ind:pas:3s; +conservai conserver ver 15.08 55.14 0.00 0.34 ind:pas:1s; +conservaient conserver ver 15.08 55.14 0.04 1.49 ind:imp:3p; +conservais conserver ver 15.08 55.14 0.06 0.20 ind:imp:1s; +conservait conserver ver 15.08 55.14 0.27 7.03 ind:imp:3s; +conservant conserver ver 15.08 55.14 0.35 2.70 par:pre; +conservateur conservateur adj m s 2.96 3.78 1.37 2.36 +conservateurs conservateur nom m p 1.68 5.20 0.68 1.82 +conservation conservation nom f s 0.85 3.24 0.85 3.24 +conservatisme conservatisme nom m s 0.01 0.54 0.01 0.54 +conservatoire conservatoire nom m s 4.68 2.97 4.67 2.77 +conservatoires conservatoire nom m p 4.68 2.97 0.01 0.20 +conservatrice conservateur adj f s 2.96 3.78 0.85 0.47 +conservatrices conservateur adj f p 2.96 3.78 0.07 0.14 +conserve conserver ver 15.08 55.14 3.42 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conservent conserver ver 15.08 55.14 0.41 1.42 ind:pre:3p; +conserver conserver ver 15.08 55.14 5.39 17.57 inf; +conservera conserver ver 15.08 55.14 0.31 0.27 ind:fut:3s; +conserverai conserver ver 15.08 55.14 0.03 0.14 ind:fut:1s; +conserveraient conserver ver 15.08 55.14 0.00 0.07 cnd:pre:3p; +conserverais conserver ver 15.08 55.14 0.04 0.07 cnd:pre:1s; +conserverait conserver ver 15.08 55.14 0.19 0.47 cnd:pre:3s; +conserveras conserver ver 15.08 55.14 0.02 0.00 ind:fut:2s; +conserverez conserver ver 15.08 55.14 0.04 0.14 ind:fut:2p; +conserverie conserverie nom f s 0.68 0.74 0.66 0.68 +conserveries conserverie nom f p 0.68 0.74 0.02 0.07 +conserverons conserver ver 15.08 55.14 0.02 0.07 ind:fut:1p; +conserveront conserver ver 15.08 55.14 0.01 0.20 ind:fut:3p; +conserves conserve nom f p 5.50 14.26 2.76 7.36 +conservez conserver ver 15.08 55.14 0.46 0.14 imp:pre:2p;ind:pre:2p; +conserviez conserver ver 15.08 55.14 0.06 0.00 ind:imp:2p; +conservions conserver ver 15.08 55.14 0.00 0.14 ind:imp:1p; +conservons conserver ver 15.08 55.14 0.14 0.34 imp:pre:1p;ind:pre:1p; +conservât conserver ver 15.08 55.14 0.00 0.14 sub:imp:3s; +conservèrent conserver ver 15.08 55.14 0.00 0.20 ind:pas:3p; +conservé conserver ver m s 15.08 55.14 2.31 11.08 par:pas; +conservée conserver ver f s 15.08 55.14 0.39 1.62 par:pas; +conservées conserver ver f p 15.08 55.14 0.10 1.01 par:pas; +conservés conserver ver m p 15.08 55.14 0.60 1.22 par:pas; +considère considérer ver 43.00 87.43 12.53 13.72 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +considèrent considérer ver 43.00 87.43 2.06 2.57 ind:pre:3p; +considères considérer ver 43.00 87.43 1.04 0.14 ind:pre:2s; +considéra considérer ver 43.00 87.43 0.04 7.84 ind:pas:3s; +considérable considérable adj s 2.98 20.95 2.31 16.01 +considérablement considérablement adv 1.00 4.39 1.00 4.39 +considérables considérable adj p 2.98 20.95 0.68 4.93 +considérai considérer ver 43.00 87.43 0.00 0.41 ind:pas:1s; +considéraient considérer ver 43.00 87.43 0.40 2.97 ind:imp:3p; +considérais considérer ver 43.00 87.43 0.52 2.03 ind:imp:1s;ind:imp:2s; +considérait considérer ver 43.00 87.43 1.03 14.59 ind:imp:3s; +considérant considérer ver 43.00 87.43 1.47 4.66 par:pre; +considérants considérant nom m p 0.05 0.27 0.00 0.14 +considérassent considérer ver 43.00 87.43 0.00 0.07 sub:imp:3p; +considération considération nom f s 5.60 20.34 5.04 12.36 +considérations considération nom f p 5.60 20.34 0.57 7.97 +considérer considérer ver 43.00 87.43 5.59 19.32 inf; +considérera considérer ver 43.00 87.43 0.08 0.20 ind:fut:3s; +considérerai considérer ver 43.00 87.43 0.09 0.20 ind:fut:1s; +considéreraient considérer ver 43.00 87.43 0.04 0.14 cnd:pre:3p; +considérerais considérer ver 43.00 87.43 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +considérerait considérer ver 43.00 87.43 0.10 0.41 cnd:pre:3s; +considéreras considérer ver 43.00 87.43 0.03 0.07 ind:fut:2s; +considéreriez considérer ver 43.00 87.43 0.09 0.00 cnd:pre:2p; +considérerions considérer ver 43.00 87.43 0.01 0.07 cnd:pre:1p; +considérerons considérer ver 43.00 87.43 0.14 0.07 ind:fut:1p; +considérez considérer ver 43.00 87.43 4.83 1.15 imp:pre:2p;ind:pre:2p; +considériez considérer ver 43.00 87.43 0.25 0.14 ind:imp:2p; +considérions considérer ver 43.00 87.43 0.05 0.61 ind:imp:1p; +considérons considérer ver 43.00 87.43 1.30 1.08 imp:pre:1p;ind:pre:1p; +considérât considérer ver 43.00 87.43 0.00 0.54 sub:imp:3s; +considérèrent considérer ver 43.00 87.43 0.00 0.27 ind:pas:3p; +considéré considérer ver m s 43.00 87.43 6.78 8.11 par:pas; +considérée considérer ver f s 43.00 87.43 2.58 3.04 par:pas; +considérées considérer ver f p 43.00 87.43 0.20 1.08 par:pas; +considérés considérer ver m p 43.00 87.43 1.64 1.89 par:pas; +consigna consigner ver 3.46 5.47 0.04 0.34 ind:pas:3s; +consignais consigner ver 3.46 5.47 0.00 0.07 ind:imp:1s; +consignait consigner ver 3.46 5.47 0.02 0.41 ind:imp:3s; +consignant consigner ver 3.46 5.47 0.00 0.07 par:pre; +consignataire consignataire nom s 0.01 0.07 0.01 0.07 +consignation consignation nom f s 0.40 0.20 0.40 0.07 +consignations consignation nom f p 0.40 0.20 0.00 0.14 +consigne consigne nom f s 5.24 15.81 3.04 7.91 +consignent consigner ver 3.46 5.47 0.04 0.07 ind:pre:3p; +consigner consigner ver 3.46 5.47 0.69 1.55 inf; +consignera consigner ver 3.46 5.47 0.10 0.00 ind:fut:3s; +consignerais consigner ver 3.46 5.47 0.00 0.07 cnd:pre:1s; +consignes consigne nom f p 5.24 15.81 2.19 7.91 +consignez consigner ver 3.46 5.47 0.22 0.07 imp:pre:2p;ind:pre:2p; +consigné consigner ver m s 3.46 5.47 1.32 1.35 par:pas; +consignée consigner ver f s 3.46 5.47 0.44 0.27 par:pas; +consignées consigner ver f p 3.46 5.47 0.18 0.20 par:pas; +consignés consigné adj m p 0.72 0.27 0.39 0.00 +consista consister ver 7.51 31.35 0.00 0.68 ind:pas:3s; +consistaient consister ver 7.51 31.35 0.17 1.08 ind:imp:3p; +consistait consister ver 7.51 31.35 1.10 11.22 ind:imp:3s; +consistance consistance nom f s 1.31 7.43 1.31 7.36 +consistances consistance nom f p 1.31 7.43 0.00 0.07 +consistant consistant adj m s 1.06 1.55 0.67 1.01 +consistante consistant adj f s 1.06 1.55 0.37 0.20 +consistantes consistant adj f p 1.06 1.55 0.01 0.07 +consistants consistant adj m p 1.06 1.55 0.02 0.27 +consiste consister ver 7.51 31.35 5.55 12.84 imp:pre:2s;ind:pre:3s;sub:pre:3s; +consistent consister ver 7.51 31.35 0.14 0.95 ind:pre:3p; +consister consister ver 7.51 31.35 0.06 0.88 inf; +consistera consister ver 7.51 31.35 0.14 0.27 ind:fut:3s; +consisteraient consister ver 7.51 31.35 0.00 0.07 cnd:pre:3p; +consisterait consister ver 7.51 31.35 0.15 0.61 cnd:pre:3s; +consistoire consistoire nom m s 0.00 0.14 0.00 0.14 +consistorial consistorial adj m s 0.00 0.20 0.00 0.14 +consistoriales consistorial adj f p 0.00 0.20 0.00 0.07 +consistèrent consister ver 7.51 31.35 0.00 0.07 ind:pas:3p; +consisté consister ver m s 7.51 31.35 0.08 1.01 par:pas; +conso conso nom f s 0.19 0.14 0.13 0.07 +consoeur consoeur nom f s 0.17 0.68 0.15 0.47 +consoeurs consoeur nom f p 0.17 0.68 0.02 0.20 +consola consoler ver 14.41 33.18 0.04 1.42 ind:pas:3s; +consolai consoler ver 14.41 33.18 0.01 0.14 ind:pas:1s; +consolaient consoler ver 14.41 33.18 0.01 0.47 ind:imp:3p; +consolais consoler ver 14.41 33.18 0.25 0.61 ind:imp:1s;ind:imp:2s; +consolait consoler ver 14.41 33.18 0.28 2.77 ind:imp:3s; +consolant consoler ver 14.41 33.18 0.13 0.81 par:pre; +consolante consolant adj f s 0.12 2.16 0.01 0.68 +consolantes consolant adj f p 0.12 2.16 0.00 0.34 +consolants consolant adj m p 0.12 2.16 0.00 0.27 +consolasse consoler ver 14.41 33.18 0.00 0.07 sub:imp:1s; +consolateur consolateur adj m s 0.16 0.95 0.14 0.20 +consolateurs consolateur adj m p 0.16 0.95 0.01 0.14 +consolation consolation nom f s 4.84 10.74 4.62 8.72 +consolations consolation nom f p 4.84 10.74 0.22 2.03 +consolatrice consolateur nom f s 0.29 0.47 0.27 0.20 +consolatrices consolateur adj f p 0.16 0.95 0.00 0.27 +console consoler ver 14.41 33.18 3.71 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consolent consoler ver 14.41 33.18 0.42 0.88 ind:pre:3p; +consoler consoler ver 14.41 33.18 6.63 16.15 inf; +consolera consoler ver 14.41 33.18 0.46 0.34 ind:fut:3s; +consolerai consoler ver 14.41 33.18 0.25 0.07 ind:fut:1s; +consoleraient consoler ver 14.41 33.18 0.00 0.14 cnd:pre:3p; +consolerais consoler ver 14.41 33.18 0.12 0.14 cnd:pre:1s; +consolerait consoler ver 14.41 33.18 0.28 0.27 cnd:pre:3s; +consoleras consoler ver 14.41 33.18 0.11 0.07 ind:fut:2s; +consolerez consoler ver 14.41 33.18 0.02 0.00 ind:fut:2p; +consolerons consoler ver 14.41 33.18 0.11 0.07 ind:fut:1p; +consoleront consoler ver 14.41 33.18 0.04 0.00 ind:fut:3p; +consoles console nom f p 2.78 3.72 0.13 1.15 +consolez consoler ver 14.41 33.18 0.29 0.07 imp:pre:2p; +consolidaient consolider ver 1.38 4.19 0.00 0.20 ind:imp:3p; +consolidais consolider ver 1.38 4.19 0.00 0.07 ind:imp:1s; +consolidait consolider ver 1.38 4.19 0.00 0.54 ind:imp:3s; +consolidant consolider ver 1.38 4.19 0.01 0.27 par:pre; +consolidation consolidation nom f s 0.20 0.41 0.20 0.41 +consolide consolider ver 1.38 4.19 0.18 0.20 ind:pre:1s;ind:pre:3s; +consolident consolider ver 1.38 4.19 0.04 0.07 ind:pre:3p; +consolider consolider ver 1.38 4.19 1.00 1.89 inf; +consolideraient consolider ver 1.38 4.19 0.00 0.07 cnd:pre:3p; +consolidons consolider ver 1.38 4.19 0.01 0.00 imp:pre:1p; +consolidé consolider ver m s 1.38 4.19 0.08 0.20 par:pas; +consolidée consolider ver f s 1.38 4.19 0.04 0.41 par:pas; +consolidées consolidé adj f p 0.05 0.41 0.04 0.00 +consolidés consolider ver m p 1.38 4.19 0.01 0.14 par:pas; +consoliez consoler ver 14.41 33.18 0.00 0.07 ind:imp:2p; +consolions consoler ver 14.41 33.18 0.00 0.07 ind:imp:1p; +consolât consoler ver 14.41 33.18 0.00 0.07 sub:imp:3s; +consolèrent consoler ver 14.41 33.18 0.00 0.27 ind:pas:3p; +consolé consoler ver m s 14.41 33.18 0.47 1.96 par:pas; +consolée consoler ver f s 14.41 33.18 0.41 1.08 par:pas; +consolées consoler ver f p 14.41 33.18 0.00 0.27 par:pas; +consolés consoler ver m p 14.41 33.18 0.31 0.27 par:pas; +consomma consommer ver 7.54 11.35 0.02 0.20 ind:pas:3s; +consommable consommable adj s 0.04 0.61 0.01 0.47 +consommables consommable adj p 0.04 0.61 0.02 0.14 +consommai consommer ver 7.54 11.35 0.00 0.07 ind:pas:1s; +consommaient consommer ver 7.54 11.35 0.03 0.27 ind:imp:3p; +consommait consommer ver 7.54 11.35 0.20 1.82 ind:imp:3s; +consommant consommer ver 7.54 11.35 0.07 0.20 par:pre; +consommateur consommateur nom m s 1.88 6.22 0.79 1.69 +consommateurs consommateur nom m p 1.88 6.22 1.04 4.05 +consommation consommation nom f s 3.70 9.66 3.38 7.36 +consommations consommation nom f p 3.70 9.66 0.32 2.30 +consommatrice consommateur nom f s 1.88 6.22 0.05 0.34 +consommatrices consommatrice nom f p 0.02 0.00 0.02 0.00 +consomme consommer ver 7.54 11.35 1.44 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consomment consommer ver 7.54 11.35 0.42 0.88 ind:pre:3p; +consommer consommer ver 7.54 11.35 3.00 4.12 inf; +consommerait consommer ver 7.54 11.35 0.01 0.07 cnd:pre:3s; +consommeront consommer ver 7.54 11.35 0.03 0.00 ind:fut:3p; +consommez consommer ver 7.54 11.35 0.63 0.00 imp:pre:2p;ind:pre:2p; +consommions consommer ver 7.54 11.35 0.00 0.14 ind:imp:1p; +consommons consommer ver 7.54 11.35 0.16 0.00 imp:pre:1p;ind:pre:1p; +consommé consommer ver m s 7.54 11.35 1.07 2.09 par:pas; +consommée consommer ver f s 7.54 11.35 0.34 0.34 par:pas; +consommées consommer ver f p 7.54 11.35 0.02 0.07 par:pas; +consommés consommer ver m p 7.54 11.35 0.10 0.14 par:pas; +consomption consomption nom f s 0.27 0.20 0.27 0.20 +consomptive consomptif adj f s 0.00 0.07 0.00 0.07 +consonance consonance nom f s 0.19 1.89 0.17 1.01 +consonances consonance nom f p 0.19 1.89 0.02 0.88 +consonne consonne nom f s 0.45 1.69 0.20 0.07 +consonnes consonne nom f p 0.45 1.69 0.25 1.62 +consort consort adj m s 0.04 0.41 0.02 0.27 +consortium consortium nom m s 0.81 0.07 0.79 0.07 +consortiums consortium nom m p 0.81 0.07 0.03 0.00 +consorts consort nom m p 0.30 0.41 0.28 0.34 +consos conso nom f p 0.19 0.14 0.06 0.07 +consoude consoude nom f s 0.00 0.07 0.00 0.07 +conspiraient conspirer ver 1.66 1.35 0.06 0.14 ind:imp:3p; +conspirait conspirer ver 1.66 1.35 0.12 0.41 ind:imp:3s; +conspirant conspirer ver 1.66 1.35 0.09 0.00 par:pre; +conspirateur conspirateur nom m s 0.85 1.89 0.16 0.61 +conspirateurs conspirateur nom m p 0.85 1.89 0.69 1.15 +conspiratif conspiratif adj m s 0.00 0.07 0.00 0.07 +conspiration conspiration nom f s 5.24 2.91 4.93 2.30 +conspirations conspiration nom f p 5.24 2.91 0.30 0.61 +conspiratrice conspirateur adj f s 0.29 0.07 0.03 0.00 +conspiratrices conspirateur nom f p 0.85 1.89 0.00 0.07 +conspire conspirer ver 1.66 1.35 0.41 0.47 ind:pre:1s;ind:pre:3s; +conspirent conspirer ver 1.66 1.35 0.16 0.00 ind:pre:3p; +conspirer conspirer ver 1.66 1.35 0.41 0.20 inf; +conspirez conspirer ver 1.66 1.35 0.08 0.00 ind:pre:2p; +conspiré conspirer ver m s 1.66 1.35 0.33 0.14 par:pas; +conspuaient conspuer ver 0.04 1.15 0.00 0.20 ind:imp:3p; +conspuant conspuer ver 0.04 1.15 0.00 0.14 par:pre; +conspue conspuer ver 0.04 1.15 0.01 0.07 ind:pre:3s; +conspuer conspuer ver 0.04 1.15 0.02 0.27 inf; +conspuèrent conspuer ver 0.04 1.15 0.00 0.14 ind:pas:3p; +conspué conspuer ver m s 0.04 1.15 0.01 0.27 par:pas; +conspués conspuer ver m p 0.04 1.15 0.00 0.07 par:pas; +constable constable nom m s 0.05 0.14 0.05 0.14 +constamment constamment adv 8.18 15.68 8.18 15.68 +constance constance nom f s 0.99 2.97 0.96 2.84 +constances constance nom f p 0.99 2.97 0.03 0.14 +constant constant adj m s 5.76 16.82 1.88 6.55 +constante constant adj f s 5.76 16.82 2.92 7.30 +constantes constante nom f p 1.54 0.47 1.14 0.07 +constants constant adj m p 5.76 16.82 0.63 1.55 +constat constat nom m s 1.38 3.45 1.36 2.77 +constata constater ver 10.58 57.43 0.16 8.99 ind:pas:3s; +constatai constater ver 10.58 57.43 0.41 2.16 ind:pas:1s; +constataient constater ver 10.58 57.43 0.00 0.54 ind:imp:3p; +constatais constater ver 10.58 57.43 0.00 1.28 ind:imp:1s; +constatait constater ver 10.58 57.43 0.01 2.64 ind:imp:3s; +constatant constater ver 10.58 57.43 0.15 3.58 par:pre; +constatation constatation nom f s 0.54 4.86 0.47 3.65 +constatations constatation nom f p 0.54 4.86 0.07 1.22 +constate constater ver 10.58 57.43 2.17 9.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +constatent constater ver 10.58 57.43 0.04 0.68 ind:pre:3p; +constater constater ver 10.58 57.43 3.48 19.66 inf; +constatera constater ver 10.58 57.43 0.06 0.14 ind:fut:3s; +constaterai constater ver 10.58 57.43 0.00 0.07 ind:fut:1s; +constateraient constater ver 10.58 57.43 0.01 0.14 cnd:pre:3p; +constaterais constater ver 10.58 57.43 0.00 0.07 cnd:pre:1s; +constaterait constater ver 10.58 57.43 0.00 0.07 cnd:pre:3s; +constateras constater ver 10.58 57.43 0.13 0.20 ind:fut:2s; +constaterez constater ver 10.58 57.43 0.30 0.00 ind:fut:2p; +constateriez constater ver 10.58 57.43 0.02 0.00 cnd:pre:2p; +constatez constater ver 10.58 57.43 0.83 0.34 imp:pre:2p;ind:pre:2p; +constatiez constater ver 10.58 57.43 0.06 0.07 ind:imp:2p; +constations constater ver 10.58 57.43 0.01 0.07 ind:imp:1p; +constatâmes constater ver 10.58 57.43 0.00 0.07 ind:pas:1p; +constatons constater ver 10.58 57.43 0.34 0.68 imp:pre:1p;ind:pre:1p; +constats constat nom m p 1.38 3.45 0.03 0.68 +constatèrent constater ver 10.58 57.43 0.00 0.14 ind:pas:3p; +constaté constater ver m s 10.58 57.43 2.30 5.61 imp:pre:2s;par:pas; +constatée constater ver f s 10.58 57.43 0.06 0.27 par:pas; +constatées constater ver f p 10.58 57.43 0.01 0.14 par:pas; +constatés constater ver m p 10.58 57.43 0.04 0.07 par:pas; +constellaient consteller ver 0.14 4.39 0.00 0.20 ind:imp:3p; +constellait consteller ver 0.14 4.39 0.00 0.07 ind:imp:3s; +constellant consteller ver 0.14 4.39 0.00 0.07 par:pre; +constellation constellation nom f s 1.86 6.76 1.61 3.58 +constellations constellation nom f p 1.86 6.76 0.25 3.18 +constelle consteller ver 0.14 4.39 0.00 0.07 ind:pre:3s; +constellent consteller ver 0.14 4.39 0.00 0.14 ind:pre:3p; +constellé consteller ver m s 0.14 4.39 0.01 1.76 par:pas; +constellée consteller ver f s 0.14 4.39 0.13 1.15 par:pas; +constellées consteller ver f p 0.14 4.39 0.00 0.47 par:pas; +constellés consteller ver m p 0.14 4.39 0.00 0.47 par:pas; +consterna consterner ver 0.85 4.26 0.02 0.47 ind:pas:3s; +consternait consterner ver 0.85 4.26 0.00 0.88 ind:imp:3s; +consternant consternant adj m s 0.53 1.49 0.48 0.61 +consternante consternant adj f s 0.53 1.49 0.03 0.47 +consternantes consternant adj f p 0.53 1.49 0.01 0.20 +consternants consternant adj m p 0.53 1.49 0.01 0.20 +consternation consternation nom f s 0.69 4.53 0.69 4.53 +consterne consterner ver 0.85 4.26 0.06 0.07 ind:pre:3s; +consternent consterner ver 0.85 4.26 0.00 0.07 ind:pre:3p; +consterné consterner ver m s 0.85 4.26 0.52 1.42 par:pas; +consternée consterner ver f s 0.85 4.26 0.07 0.68 par:pas; +consternées consterné adj f p 0.46 3.58 0.00 0.27 +consternés consterné adj m p 0.46 3.58 0.23 0.54 +constipant constipant adj m s 0.00 0.07 0.00 0.07 +constipation constipation nom f s 0.41 1.69 0.38 1.55 +constipations constipation nom f p 0.41 1.69 0.03 0.14 +constipe constiper ver 0.55 0.74 0.06 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +constipé constipé adj m s 0.66 0.54 0.35 0.34 +constipée constipé adj f s 0.66 0.54 0.26 0.07 +constipées constipé nom f p 0.34 0.34 0.00 0.07 +constipés constipé nom m p 0.34 0.34 0.14 0.07 +constitua constituer ver 8.99 54.39 0.05 0.54 ind:pas:3s; +constituaient constituer ver 8.99 54.39 0.11 6.22 ind:imp:3p; +constituais constituer ver 8.99 54.39 0.01 0.14 ind:imp:1s; +constituait constituer ver 8.99 54.39 0.50 9.80 ind:imp:3s; +constituant constituer ver 8.99 54.39 0.17 1.82 par:pre; +constituante constituant nom f s 0.27 1.01 0.23 0.68 +constituantes constituant adj f p 0.02 3.92 0.00 0.07 +constituants constituant nom m p 0.27 1.01 0.04 0.20 +constitue constituer ver 8.99 54.39 2.89 7.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +constituent constituer ver 8.99 54.39 1.32 5.47 ind:pre:3p; +constituer constituer ver 8.99 54.39 1.56 9.46 inf; +constituera constituer ver 8.99 54.39 0.05 0.27 ind:fut:3s; +constituerai constituer ver 8.99 54.39 0.00 0.14 ind:fut:1s; +constitueraient constituer ver 8.99 54.39 0.02 0.47 cnd:pre:3p; +constituerais constituer ver 8.99 54.39 0.00 0.07 cnd:pre:1s; +constituerait constituer ver 8.99 54.39 0.23 0.74 cnd:pre:3s; +constitueras constituer ver 8.99 54.39 0.00 0.07 ind:fut:2s; +constitueront constituer ver 8.99 54.39 0.02 0.20 ind:fut:3p; +constituez constituer ver 8.99 54.39 0.08 0.14 imp:pre:2p;ind:pre:2p; +constituions constituer ver 8.99 54.39 0.00 0.20 ind:imp:1p; +constituons constituer ver 8.99 54.39 0.12 0.20 imp:pre:1p;ind:pre:1p; +constituât constituer ver 8.99 54.39 0.00 0.20 sub:imp:3s; +constituèrent constituer ver 8.99 54.39 0.01 0.54 ind:pas:3p; +constitutif constitutif adj m s 0.19 0.34 0.14 0.14 +constitutifs constitutif adj m p 0.19 0.34 0.05 0.20 +constitution constitution nom f s 6.74 9.12 6.72 8.92 +constitutionnaliste constitutionnaliste nom s 0.10 0.00 0.10 0.00 +constitutionnalité constitutionnalité nom f s 0.02 0.00 0.02 0.00 +constitutionnel constitutionnel adj m s 1.60 2.50 0.72 0.88 +constitutionnelle constitutionnel adj f s 1.60 2.50 0.40 1.01 +constitutionnellement constitutionnellement adv 0.03 0.07 0.03 0.07 +constitutionnelles constitutionnel adj f p 1.60 2.50 0.03 0.34 +constitutionnels constitutionnel adj m p 1.60 2.50 0.45 0.27 +constitutions constitution nom f p 6.74 9.12 0.02 0.20 +constitué constituer ver m s 8.99 54.39 0.98 6.82 par:pas; +constituée constituer ver f s 8.99 54.39 0.64 2.16 par:pas; +constituées constitué adj f p 0.19 2.91 0.11 0.68 +constitués constituer ver m p 8.99 54.39 0.16 0.81 par:pas; +constricteur constricteur nom m s 0.11 0.07 0.11 0.00 +constricteurs constricteur nom m p 0.11 0.07 0.00 0.07 +constriction constriction nom f s 0.01 0.61 0.01 0.61 +constrictive constrictif adj f s 0.01 0.00 0.01 0.00 +constrictor constrictor adj m s 0.16 0.41 0.16 0.34 +constrictors constrictor nom m p 0.05 0.00 0.03 0.00 +constructeur constructeur nom m s 1.81 1.82 0.88 0.81 +constructeurs constructeur nom m p 1.81 1.82 0.93 1.01 +constructif constructif adj m s 1.25 1.28 0.39 0.54 +constructifs constructif adj m p 1.25 1.28 0.01 0.07 +construction construction nom f s 13.12 24.12 11.30 18.24 +constructions construction nom f p 13.12 24.12 1.83 5.88 +constructive constructif adj f s 1.25 1.28 0.58 0.41 +constructives constructif adj f p 1.25 1.28 0.26 0.27 +constructivisme constructivisme nom m s 0.01 0.00 0.01 0.00 +construira construire ver 67.59 52.64 0.93 0.41 ind:fut:3s; +construirai construire ver 67.59 52.64 0.68 0.00 ind:fut:1s; +construiraient construire ver 67.59 52.64 0.02 0.07 cnd:pre:3p; +construirais construire ver 67.59 52.64 0.12 0.14 cnd:pre:1s; +construirait construire ver 67.59 52.64 0.30 0.20 cnd:pre:3s; +construiras construire ver 67.59 52.64 0.17 0.00 ind:fut:2s; +construire construire ver 67.59 52.64 26.94 18.38 inf; +construirez construire ver 67.59 52.64 0.29 0.07 ind:fut:2p; +construiriez construire ver 67.59 52.64 0.02 0.00 cnd:pre:2p; +construirons construire ver 67.59 52.64 1.19 0.07 ind:fut:1p; +construiront construire ver 67.59 52.64 0.37 0.00 ind:fut:3p; +construis construire ver 67.59 52.64 2.33 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +construisît construire ver 67.59 52.64 0.00 0.07 sub:imp:3s; +construisaient construire ver 67.59 52.64 0.27 0.81 ind:imp:3p; +construisais construire ver 67.59 52.64 0.29 0.34 ind:imp:1s;ind:imp:2s; +construisait construire ver 67.59 52.64 0.98 1.76 ind:imp:3s; +construisant construire ver 67.59 52.64 0.54 0.95 par:pre; +construise construire ver 67.59 52.64 0.40 0.20 sub:pre:1s;sub:pre:3s; +construisent construire ver 67.59 52.64 1.37 1.15 ind:pre:3p; +construisez construire ver 67.59 52.64 1.01 0.00 imp:pre:2p;ind:pre:2p; +construisiez construire ver 67.59 52.64 0.06 0.00 ind:imp:2p; +construisions construire ver 67.59 52.64 0.05 0.00 ind:imp:1p; +construisirent construire ver 67.59 52.64 0.06 0.14 ind:pas:3p; +construisis construire ver 67.59 52.64 0.11 0.14 ind:pas:1s; +construisit construire ver 67.59 52.64 0.21 1.62 ind:pas:3s; +construisons construire ver 67.59 52.64 1.23 0.14 imp:pre:1p;ind:pre:1p; +construit construire ver m s 67.59 52.64 21.48 15.61 ind:pre:3s;par:pas; +construite construire ver f s 67.59 52.64 4.64 5.41 par:pas; +construites construire ver f p 67.59 52.64 0.47 1.82 par:pas; +construits construire ver m p 67.59 52.64 1.08 2.70 par:pas; +consubstantiel consubstantiel adj m s 0.00 0.61 0.00 0.20 +consubstantielle consubstantiel adj f s 0.00 0.61 0.00 0.27 +consubstantiels consubstantiel adj m p 0.00 0.61 0.00 0.14 +consécration consécration nom f s 0.37 1.15 0.37 1.15 +consécutif consécutif adj m s 1.16 1.82 0.12 0.20 +consécutifs consécutif adj m p 1.16 1.82 0.46 0.68 +consécution consécution nom f s 0.00 0.07 0.00 0.07 +consécutive consécutif adj f s 1.16 1.82 0.15 0.47 +consécutivement consécutivement adv 0.02 0.14 0.02 0.14 +consécutives consécutif adj f p 1.16 1.82 0.43 0.47 +consul consul nom m s 3.95 10.07 3.56 8.11 +consulaire consulaire adj s 0.31 0.81 0.31 0.41 +consulaires consulaire adj p 0.31 0.81 0.00 0.41 +consulat consulat nom m s 3.84 2.43 3.77 1.96 +consulats consulat nom m p 3.84 2.43 0.07 0.47 +consuls consul nom m p 3.95 10.07 0.39 1.96 +consulta consulter ver 18.45 36.22 0.01 4.12 ind:pas:3s; +consultable consultable adj f s 0.00 0.07 0.00 0.07 +consultai consulter ver 18.45 36.22 0.02 0.61 ind:pas:1s; +consultaient consulter ver 18.45 36.22 0.00 0.68 ind:imp:3p; +consultais consulter ver 18.45 36.22 0.22 0.34 ind:imp:1s;ind:imp:2s; +consultait consulter ver 18.45 36.22 0.13 2.70 ind:imp:3s; +consultant consultant nom m s 1.76 0.20 1.29 0.07 +consultante consultant nom f s 1.76 0.20 0.18 0.07 +consultants consultant nom m p 1.76 0.20 0.29 0.07 +consultatif consultatif adj m s 0.13 6.28 0.13 0.74 +consultatifs consultatif adj m p 0.13 6.28 0.00 0.14 +consultation consultation nom f s 4.59 8.24 3.61 6.49 +consultations consultation nom f p 4.59 8.24 0.98 1.76 +consultative consultatif adj f s 0.13 6.28 0.00 5.41 +consulte consulter ver 18.45 36.22 2.21 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consultent consulter ver 18.45 36.22 0.10 0.27 ind:pre:3p; +consulter consulter ver 18.45 36.22 9.05 13.04 inf; +consultera consulter ver 18.45 36.22 0.03 0.20 ind:fut:3s; +consulterai consulter ver 18.45 36.22 0.18 0.07 ind:fut:1s; +consulteraient consulter ver 18.45 36.22 0.00 0.07 cnd:pre:3p; +consulterais consulter ver 18.45 36.22 0.22 0.07 cnd:pre:1s;cnd:pre:2s; +consulteras consulter ver 18.45 36.22 0.01 0.00 ind:fut:2s; +consulterons consulter ver 18.45 36.22 0.01 0.00 ind:fut:1p; +consulteront consulter ver 18.45 36.22 0.00 0.07 ind:fut:3p; +consultes consulter ver 18.45 36.22 0.23 0.00 ind:pre:2s; +consultez consulter ver 18.45 36.22 1.04 0.34 imp:pre:2p;ind:pre:2p; +consultions consulter ver 18.45 36.22 0.01 0.07 ind:imp:1p; +consultâmes consulter ver 18.45 36.22 0.00 0.07 ind:pas:1p; +consultons consulter ver 18.45 36.22 0.24 0.07 imp:pre:1p;ind:pre:1p; +consultèrent consulter ver 18.45 36.22 0.00 0.81 ind:pas:3p; +consulté consulter ver m s 18.45 36.22 4.05 5.00 par:pas; +consultée consulter ver f s 18.45 36.22 0.14 0.88 par:pas; +consultées consulter ver f p 18.45 36.22 0.03 0.07 par:pas; +consultés consulter ver m p 18.45 36.22 0.22 1.42 par:pas; +consuma consumer ver 6.54 9.93 0.16 0.07 ind:pas:3s; +consumable consumable adj s 0.00 0.07 0.00 0.07 +consumai consumer ver 6.54 9.93 0.00 0.07 ind:pas:1s; +consumaient consumer ver 6.54 9.93 0.01 0.47 ind:imp:3p; +consumais consumer ver 6.54 9.93 0.00 0.14 ind:imp:1s; +consumait consumer ver 6.54 9.93 0.19 1.49 ind:imp:3s; +consumant consumer ver 6.54 9.93 0.36 0.20 par:pre; +consumation consumation nom f s 0.00 0.07 0.00 0.07 +consume consumer ver 6.54 9.93 2.21 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consument consumer ver 6.54 9.93 0.38 0.47 ind:pre:3p; +consumer consumer ver 6.54 9.93 0.89 2.09 inf; +consumera consumer ver 6.54 9.93 0.25 0.14 ind:fut:3s; +consumerait consumer ver 6.54 9.93 0.01 0.07 cnd:pre:3s; +consumeront consumer ver 6.54 9.93 0.04 0.07 ind:fut:3p; +consumes consumer ver 6.54 9.93 0.00 0.07 ind:pre:2s; +consumez consumer ver 6.54 9.93 0.05 0.00 imp:pre:2p;ind:pre:2p; +consumât consumer ver 6.54 9.93 0.00 0.07 sub:imp:3s; +consumèrent consumer ver 6.54 9.93 0.00 0.07 ind:pas:3p; +consumé consumer ver m s 6.54 9.93 1.07 0.81 par:pas; +consumée consumer ver f s 6.54 9.93 0.52 1.15 par:pas; +consumées consumer ver f p 6.54 9.93 0.03 0.61 par:pas; +consumérisme consumérisme nom m s 0.43 0.00 0.43 0.00 +consumériste consumériste adj f s 0.20 0.00 0.20 0.00 +consumés consumer ver m p 6.54 9.93 0.37 0.20 par:pas; +conséquemment conséquemment adv 0.03 0.41 0.03 0.41 +conséquence conséquence nom f s 19.27 34.86 5.91 16.89 +conséquences conséquence nom f p 19.27 34.86 13.36 17.97 +conséquent conséquent adj m s 6.45 12.43 6.05 11.55 +conséquente conséquent adj f s 6.45 12.43 0.26 0.54 +conséquentes conséquent adj f p 6.45 12.43 0.12 0.07 +conséquents conséquent adj m p 6.45 12.43 0.02 0.27 +contînt contenir ver 30.07 58.92 0.00 0.34 sub:imp:3s; +conta conter ver 3.76 8.99 0.01 0.88 ind:pas:3s; +contact contact nom m s 69.85 65.47 59.58 55.68 +contacta contacter ver 38.96 2.03 0.01 0.41 ind:pas:3s; +contactais contacter ver 38.96 2.03 0.14 0.00 ind:imp:1s;ind:imp:2s; +contactait contacter ver 38.96 2.03 0.08 0.07 ind:imp:3s; +contactant contacter ver 38.96 2.03 0.05 0.07 par:pre; +contacte contacter ver 38.96 2.03 3.89 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contactent contacter ver 38.96 2.03 0.14 0.00 ind:pre:3p; +contacter contacter ver 38.96 2.03 16.11 0.95 ind:pre:2p;inf; +contactera contacter ver 38.96 2.03 1.18 0.00 ind:fut:3s; +contacterai contacter ver 38.96 2.03 1.69 0.00 ind:fut:1s; +contacteraient contacter ver 38.96 2.03 0.01 0.00 cnd:pre:3p; +contacterais contacter ver 38.96 2.03 0.03 0.00 cnd:pre:1s; +contacterait contacter ver 38.96 2.03 0.05 0.00 cnd:pre:3s; +contacteras contacter ver 38.96 2.03 0.01 0.00 ind:fut:2s; +contacterez contacter ver 38.96 2.03 0.10 0.00 ind:fut:2p; +contacterons contacter ver 38.96 2.03 0.30 0.00 ind:fut:1p; +contacteront contacter ver 38.96 2.03 0.23 0.00 ind:fut:3p; +contacteur contacteur nom m s 0.05 0.07 0.05 0.07 +contactez contacter ver 38.96 2.03 4.20 0.07 imp:pre:2p;ind:pre:2p; +contactiez contacter ver 38.96 2.03 0.37 0.00 ind:imp:2p; +contactions contacter ver 38.96 2.03 0.11 0.00 ind:imp:1p; +contactons contacter ver 38.96 2.03 0.22 0.00 imp:pre:1p;ind:pre:1p; +contacts contact nom m p 69.85 65.47 10.27 9.80 +contacté contacter ver m s 38.96 2.03 7.12 0.41 par:pas; +contactée contacter ver f s 38.96 2.03 1.27 0.00 par:pas; +contactées contacter ver f p 38.96 2.03 0.08 0.00 par:pas; +contactés contacter ver m p 38.96 2.03 1.56 0.07 par:pas; +contagieuse contagieux adj f s 6.01 4.05 1.74 1.82 +contagieuses contagieux adj f p 6.01 4.05 0.57 0.61 +contagieux contagieux adj m 6.01 4.05 3.71 1.62 +contagion contagion nom f s 1.21 3.72 1.21 3.72 +contai conter ver 3.76 8.99 0.00 0.14 ind:pas:1s; +contaient conter ver 3.76 8.99 0.01 0.34 ind:imp:3p; +container container nom m s 3.00 1.01 2.09 0.27 +containers container nom m p 3.00 1.01 0.92 0.74 +containeur containeur nom m s 0.01 0.00 0.01 0.00 +contais conter ver 3.76 8.99 0.01 0.00 ind:imp:1s; +contait conter ver 3.76 8.99 0.16 0.88 ind:imp:3s; +contaminaient contaminer ver 9.63 4.32 0.00 0.07 ind:imp:3p; +contaminait contaminer ver 9.63 4.32 0.01 0.27 ind:imp:3s; +contaminant contaminant adj m s 0.13 0.07 0.02 0.07 +contaminants contaminant adj m p 0.13 0.07 0.11 0.00 +contaminateur contaminateur nom m s 0.01 0.00 0.01 0.00 +contamination contamination nom f s 2.27 1.35 2.26 1.22 +contaminations contamination nom f p 2.27 1.35 0.01 0.14 +contamine contaminer ver 9.63 4.32 1.39 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contaminer contaminer ver 9.63 4.32 1.27 0.61 inf; +contaminera contaminer ver 9.63 4.32 0.01 0.00 ind:fut:3s; +contamineras contaminer ver 9.63 4.32 0.01 0.00 ind:fut:2s; +contamines contaminer ver 9.63 4.32 0.05 0.00 ind:pre:2s; +contaminons contaminer ver 9.63 4.32 0.01 0.00 imp:pre:1p; +contaminât contaminer ver 9.63 4.32 0.00 0.07 sub:imp:3s; +contaminé contaminer ver m s 9.63 4.32 2.68 1.08 par:pas; +contaminée contaminer ver f s 9.63 4.32 2.19 0.81 par:pas; +contaminées contaminer ver f p 9.63 4.32 0.55 0.34 par:pas; +contaminés contaminer ver m p 9.63 4.32 1.44 0.61 par:pas; +contant conter ver 3.76 8.99 0.19 0.41 par:pre; +conte conte nom m s 13.30 15.07 8.84 6.69 +contempla contempler ver 8.58 64.46 0.17 5.34 ind:pas:3s; +contemplai contempler ver 8.58 64.46 0.01 1.35 ind:pas:1s; +contemplaient contempler ver 8.58 64.46 0.01 3.04 ind:imp:3p; +contemplais contempler ver 8.58 64.46 0.45 2.91 ind:imp:1s;ind:imp:2s; +contemplait contempler ver 8.58 64.46 0.30 11.35 ind:imp:3s; +contemplant contempler ver 8.58 64.46 0.35 6.55 par:pre; +contemplateur contemplateur nom m s 0.00 0.20 0.00 0.14 +contemplatif contemplatif nom m s 0.17 0.41 0.17 0.20 +contemplatifs contemplatif adj m p 0.10 1.42 0.00 0.20 +contemplation contemplation nom f s 0.44 9.66 0.44 9.32 +contemplations contemplation nom f p 0.44 9.66 0.00 0.34 +contemplative contemplatif adj f s 0.10 1.42 0.03 0.81 +contemplativement contemplativement adv 0.00 0.07 0.00 0.07 +contemplatives contemplatif adj f p 0.10 1.42 0.01 0.20 +contemplatrice contemplateur nom f s 0.00 0.20 0.00 0.07 +contemple contempler ver 8.58 64.46 2.28 7.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contemplent contempler ver 8.58 64.46 0.33 1.55 ind:pre:3p; +contempler contempler ver 8.58 64.46 2.90 18.11 inf; +contemplera contempler ver 8.58 64.46 0.11 0.00 ind:fut:3s; +contemplerai contempler ver 8.58 64.46 0.12 0.00 ind:fut:1s; +contempleraient contempler ver 8.58 64.46 0.00 0.07 cnd:pre:3p; +contemplerait contempler ver 8.58 64.46 0.00 0.07 cnd:pre:3s; +contempleront contempler ver 8.58 64.46 0.01 0.07 ind:fut:3p; +contemples contempler ver 8.58 64.46 0.07 0.20 ind:pre:2s; +contemplez contempler ver 8.58 64.46 0.63 0.27 imp:pre:2p;ind:pre:2p; +contempliez contempler ver 8.58 64.46 0.11 0.00 ind:imp:2p; +contemplions contempler ver 8.58 64.46 0.00 0.61 ind:imp:1p; +contemplâmes contempler ver 8.58 64.46 0.00 0.14 ind:pas:1p; +contemplons contempler ver 8.58 64.46 0.07 0.27 imp:pre:1p;ind:pre:1p; +contemplèrent contempler ver 8.58 64.46 0.00 0.61 ind:pas:3p; +contemplé contempler ver m s 8.58 64.46 0.62 3.38 par:pas; +contemplée contempler ver f s 8.58 64.46 0.03 0.68 par:pas; +contemplées contempler ver f p 8.58 64.46 0.00 0.14 par:pas; +contemplés contempler ver m p 8.58 64.46 0.00 0.61 par:pas; +contemporain contemporain adj m s 1.98 6.62 0.94 1.89 +contemporaine contemporain adj f s 1.98 6.62 0.79 2.77 +contemporaines contemporain adj f p 1.98 6.62 0.05 0.61 +contemporains contemporain nom m p 0.53 5.54 0.39 4.32 +contempteur contempteur nom m s 0.14 0.27 0.01 0.27 +contempteurs contempteur nom m p 0.14 0.27 0.14 0.00 +contenaient contenir ver 30.07 58.92 0.81 3.65 ind:imp:3p; +contenais contenir ver 30.07 58.92 0.00 0.14 ind:imp:1s; +contenait contenir ver 30.07 58.92 3.47 15.41 ind:imp:3s; +contenance contenance nom f s 0.41 6.15 0.41 6.01 +contenances contenance nom f p 0.41 6.15 0.00 0.14 +contenant contenir ver 30.07 58.92 2.75 9.53 par:pre; +contenants contenant nom m p 0.50 0.74 0.04 0.07 +conteneur conteneur nom m s 2.92 0.07 2.37 0.07 +conteneurs conteneur nom m p 2.92 0.07 0.55 0.00 +contenez contenir ver 30.07 58.92 0.11 0.00 imp:pre:2p; +contenir contenir ver 30.07 58.92 4.81 9.86 inf; +content content adj m s 178.94 86.49 114.75 51.22 +contenta contenter ver 29.04 60.61 0.12 8.24 ind:pas:3s; +contentai contenter ver 29.04 60.61 0.00 1.08 ind:pas:1s; +contentaient contenter ver 29.04 60.61 0.26 2.84 ind:imp:3p; +contentais contenter ver 29.04 60.61 0.36 1.89 ind:imp:1s;ind:imp:2s; +contentait contenter ver 29.04 60.61 0.37 9.32 ind:imp:3s; +contentant contenter ver 29.04 60.61 0.24 4.46 par:pre; +contentassent contenter ver 29.04 60.61 0.00 0.07 sub:imp:3p; +contente content adj f s 178.94 86.49 50.76 24.32 +contentement contentement nom m s 0.15 6.35 0.15 6.08 +contentements contentement nom m p 0.15 6.35 0.00 0.27 +contentent contenter ver 29.04 60.61 1.27 1.35 ind:pre:3p; +contenter contenter ver 29.04 60.61 5.98 11.35 inf; +contentera contenter ver 29.04 60.61 0.86 0.20 ind:fut:3s; +contenterai contenter ver 29.04 60.61 0.84 0.27 ind:fut:1s; +contenteraient contenter ver 29.04 60.61 0.02 0.14 cnd:pre:3p; +contenterais contenter ver 29.04 60.61 0.70 0.14 cnd:pre:1s;cnd:pre:2s; +contenterait contenter ver 29.04 60.61 0.21 0.68 cnd:pre:3s; +contenteras contenter ver 29.04 60.61 0.05 0.00 ind:fut:2s; +contenterez contenter ver 29.04 60.61 0.04 0.14 ind:fut:2p; +contenteriez contenter ver 29.04 60.61 0.01 0.00 cnd:pre:2p; +contenterions contenter ver 29.04 60.61 0.01 0.14 cnd:pre:1p; +contenterons contenter ver 29.04 60.61 0.49 0.00 ind:fut:1p; +contenteront contenter ver 29.04 60.61 0.09 0.14 ind:fut:3p; +contentes content adj f p 178.94 86.49 1.46 0.41 +contentez contenter ver 29.04 60.61 1.77 0.61 imp:pre:2p;ind:pre:2p; +contentieux contentieux nom m 0.28 0.47 0.28 0.47 +contentiez contenter ver 29.04 60.61 0.05 0.07 ind:imp:2p; +contention contention nom f s 0.17 0.41 0.06 0.41 +contentions contention nom f p 0.17 0.41 0.11 0.00 +contentons contenter ver 29.04 60.61 0.51 0.34 imp:pre:1p;ind:pre:1p; +contents content adj m p 178.94 86.49 11.96 10.54 +contentèrent contenter ver 29.04 60.61 0.00 0.27 ind:pas:3p; +contenté contenter ver m s 29.04 60.61 0.91 5.47 par:pas; +contentée contenter ver f s 29.04 60.61 0.30 1.96 par:pas; +contentées contenter ver f p 29.04 60.61 0.00 0.07 par:pas; +contentés contenter ver m p 29.04 60.61 0.12 0.68 par:pas; +contenu contenu nom m s 6.34 16.82 6.31 16.42 +contenue contenir ver f s 30.07 58.92 0.55 2.70 par:pas; +contenues contenir ver f p 30.07 58.92 0.22 0.74 par:pas; +contenus contenir ver m p 30.07 58.92 0.09 0.61 par:pas; +conter conter ver 3.76 8.99 1.32 2.64 inf; +contera conter ver 3.76 8.99 0.03 0.00 ind:fut:3s; +conterai conter ver 3.76 8.99 0.17 0.07 ind:fut:1s; +conterait conter ver 3.76 8.99 0.00 0.07 cnd:pre:3s; +conteras conter ver 3.76 8.99 0.00 0.14 ind:fut:2s; +conterez conter ver 3.76 8.99 0.00 0.07 ind:fut:2p; +conterons conter ver 3.76 8.99 0.00 0.07 ind:fut:1p; +contes conte nom m p 13.30 15.07 4.46 8.38 +contesta contester ver 4.84 8.58 0.00 0.07 ind:pas:3s; +contestable contestable adj s 0.26 1.69 0.26 1.15 +contestables contestable adj p 0.26 1.69 0.00 0.54 +contestaient contester ver 4.84 8.58 0.11 0.20 ind:imp:3p; +contestais contester ver 4.84 8.58 0.14 0.20 ind:imp:1s;ind:imp:2s; +contestait contester ver 4.84 8.58 0.01 0.68 ind:imp:3s; +contestant contester ver 4.84 8.58 0.03 0.27 par:pre; +contestataire contestataire adj s 0.21 0.47 0.14 0.14 +contestataires contestataire nom p 0.26 0.54 0.19 0.34 +contestation contestation nom f s 0.97 3.24 0.69 2.70 +contestations contestation nom f p 0.97 3.24 0.29 0.54 +conteste contester ver 4.84 8.58 1.21 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contestent contester ver 4.84 8.58 0.10 0.41 ind:pre:3p; +contester contester ver 4.84 8.58 1.48 2.70 inf; +contestera contester ver 4.84 8.58 0.09 0.07 ind:fut:3s; +contesterai contester ver 4.84 8.58 0.03 0.07 ind:fut:1s; +contesterait contester ver 4.84 8.58 0.01 0.07 cnd:pre:3s; +contesteriez contester ver 4.84 8.58 0.00 0.07 cnd:pre:2p; +contesterons contester ver 4.84 8.58 0.01 0.00 ind:fut:1p; +contestes contester ver 4.84 8.58 0.29 0.20 ind:pre:2s; +contestez contester ver 4.84 8.58 0.17 0.00 imp:pre:2p;ind:pre:2p; +contestiez contester ver 4.84 8.58 0.00 0.07 ind:imp:2p; +contestons contester ver 4.84 8.58 0.02 0.07 ind:pre:1p; +contesté contester ver m s 4.84 8.58 0.69 0.81 par:pas; +contestée contester ver f s 4.84 8.58 0.11 0.74 par:pas; +contestées contester ver f p 4.84 8.58 0.26 0.41 par:pas; +contestés contester ver m p 4.84 8.58 0.08 0.27 par:pas; +conteur conteur nom m s 1.29 4.46 0.84 2.84 +conteurs conteur nom m p 1.29 4.46 0.30 1.01 +conteuse conteur nom f s 1.29 4.46 0.15 0.61 +contexte contexte nom m s 4.50 2.30 4.34 2.16 +contextes contexte nom m p 4.50 2.30 0.16 0.14 +contextualiser contextualiser ver 0.01 0.00 0.01 0.00 inf; +contextuel contextuel adj m s 0.01 0.00 0.01 0.00 +contez conter ver 3.76 8.99 0.38 0.00 imp:pre:2p; +conçois concevoir ver 18.75 27.84 1.31 1.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +conçoit concevoir ver 18.75 27.84 0.42 2.03 ind:pre:3s; +conçoivent concevoir ver 18.75 27.84 0.29 0.47 ind:pre:3p; +conçu concevoir ver m s 18.75 27.84 9.04 6.01 par:pas; +conçue concevoir ver f s 18.75 27.84 2.50 1.62 par:pas; +conçues concevoir ver f p 18.75 27.84 0.35 0.68 par:pas; +conçurent concevoir ver 18.75 27.84 0.01 0.27 ind:pas:3p; +conçus concevoir ver m p 18.75 27.84 0.86 1.42 ind:pas:1s;ind:pas:2s;par:pas; +conçut concevoir ver 18.75 27.84 0.22 1.62 ind:pas:3s; +contiendra contenir ver 30.07 58.92 0.22 0.27 ind:fut:3s; +contiendrai contenir ver 30.07 58.92 0.01 0.00 ind:fut:1s; +contiendraient contenir ver 30.07 58.92 0.00 0.20 cnd:pre:3p; +contiendrait contenir ver 30.07 58.92 0.07 0.47 cnd:pre:3s; +contienne contenir ver 30.07 58.92 0.17 0.20 sub:pre:1s;sub:pre:3s; +contiennent contenir ver 30.07 58.92 2.10 1.69 ind:pre:3p; +contiens contenir ver 30.07 58.92 0.33 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +contient contenir ver 30.07 58.92 13.23 7.36 ind:pre:3s; +contigu contigu adj m s 0.08 2.30 0.02 0.47 +contiguïté contiguïté nom f s 0.00 0.07 0.00 0.07 +contigus contigu adj m p 0.08 2.30 0.00 0.20 +contiguë contigu adj f s 0.08 2.30 0.02 1.35 +contiguës contigu adj f p 0.08 2.30 0.04 0.27 +continûment continûment adv 0.01 0.88 0.01 0.88 +continence continence nom f s 0.10 0.61 0.10 0.61 +continent continent nom m s 6.92 15.95 5.79 12.16 +continental continental adj m s 0.71 1.22 0.48 0.54 +continentale continental nom f s 1.00 0.34 0.29 0.07 +continentales continental adj f p 0.71 1.22 0.03 0.07 +continentaux continental nom m p 1.00 0.34 0.29 0.20 +continents continent nom m p 6.92 15.95 1.13 3.78 +contingence contingence nom f s 0.11 1.76 0.06 0.27 +contingences contingence nom f p 0.11 1.76 0.04 1.49 +contingent contingent nom m s 0.77 2.64 0.76 1.69 +contingente contingent adj f s 0.13 0.41 0.01 0.00 +contingentement contingentement nom m s 0.01 0.00 0.01 0.00 +contingentes contingent adj f p 0.13 0.41 0.00 0.07 +contingents contingent nom m p 0.77 2.64 0.01 0.95 +contingenté contingenter ver m s 0.00 0.14 0.00 0.14 par:pas; +continrent contenir ver 30.07 58.92 0.00 0.14 ind:pas:3p; +contins contenir ver 30.07 58.92 0.02 0.07 ind:pas:1s; +contint contenir ver 30.07 58.92 0.00 1.55 ind:pas:3s; +continu continu adj m s 2.79 9.66 1.58 8.92 +continua continuer ver 269.95 282.77 1.18 28.38 ind:pas:3s; +continuai continuer ver 269.95 282.77 0.03 3.51 ind:pas:1s; +continuaient continuer ver 269.95 282.77 0.70 16.96 ind:imp:3p; +continuais continuer ver 269.95 282.77 1.47 6.08 ind:imp:1s;ind:imp:2s; +continuait continuer ver 269.95 282.77 2.32 60.27 ind:imp:3s; +continuant continuer ver 269.95 282.77 1.27 15.34 par:pre; +continuassent continuer ver 269.95 282.77 0.00 0.14 sub:imp:3p; +continuateur continuateur nom m s 0.11 0.34 0.11 0.20 +continuateurs continuateur nom m p 0.11 0.34 0.00 0.14 +continuation continuation nom f s 1.09 1.01 1.09 1.01 +continue continuer ver 269.95 282.77 76.64 50.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +continuel continuel adj m s 1.22 6.76 0.21 1.49 +continuelle continuel adj f s 1.22 6.76 0.70 2.70 +continuellement continuellement adv 1.67 4.80 1.67 4.80 +continuelles continuel adj f p 1.22 6.76 0.20 1.69 +continuels continuel adj m p 1.22 6.76 0.11 0.88 +continuent continuer ver 269.95 282.77 7.61 9.59 ind:pre:3p; +continuer continuer ver 269.95 282.77 82.29 43.51 inf; +continuera continuer ver 269.95 282.77 6.04 2.57 ind:fut:3s; +continuerai continuer ver 269.95 282.77 3.73 1.08 ind:fut:1s; +continueraient continuer ver 269.95 282.77 0.13 1.22 cnd:pre:3p; +continuerais continuer ver 269.95 282.77 1.02 0.54 cnd:pre:1s;cnd:pre:2s; +continuerait continuer ver 269.95 282.77 0.85 2.91 cnd:pre:3s; +continueras continuer ver 269.95 282.77 1.03 0.41 ind:fut:2s; +continuerez continuer ver 269.95 282.77 0.58 0.61 ind:fut:2p; +continueriez continuer ver 269.95 282.77 0.02 0.00 cnd:pre:2p; +continuerons continuer ver 269.95 282.77 1.55 0.54 ind:fut:1p; +continueront continuer ver 269.95 282.77 1.36 1.42 ind:fut:3p; +continues continuer ver 269.95 282.77 11.66 2.23 ind:pre:2s;sub:pre:2s; +continuez continuer ver 269.95 282.77 47.08 4.73 imp:pre:2p;ind:pre:2p; +continuiez continuer ver 269.95 282.77 0.31 0.00 ind:imp:2p; +continuions continuer ver 269.95 282.77 0.19 1.42 ind:imp:1p;sub:pre:1p; +continuité continuité nom f s 0.45 4.73 0.45 4.73 +continuâmes continuer ver 269.95 282.77 0.05 0.34 ind:pas:1p; +continuons continuer ver 269.95 282.77 8.06 2.77 imp:pre:1p;ind:pre:1p; +continuât continuer ver 269.95 282.77 0.00 1.76 sub:imp:3s; +continus continu adj m p 2.79 9.66 0.17 0.41 +continuèrent continuer ver 269.95 282.77 0.54 4.39 ind:pas:3p; +continué continuer ver m s 269.95 282.77 12.03 18.65 par:pas; +continuée continuer ver f s 269.95 282.77 0.17 0.54 par:pas; +continuées continuer ver f p 269.95 282.77 0.00 0.27 par:pas; +continuum continuum nom m s 0.55 0.27 0.55 0.27 +continués continuer ver m p 269.95 282.77 0.03 0.07 par:pas; +contions conter ver 3.76 8.99 0.00 0.07 ind:imp:1p; +contondant contondant adj m s 0.82 0.47 0.78 0.07 +contondante contondant adj f s 0.82 0.47 0.01 0.00 +contondants contondant adj m p 0.82 0.47 0.04 0.41 +contorsion contorsion nom f s 0.16 2.23 0.02 0.47 +contorsionna contorsionner ver 0.20 2.09 0.00 0.07 ind:pas:3s; +contorsionnaient contorsionner ver 0.20 2.09 0.00 0.07 ind:imp:3p; +contorsionnait contorsionner ver 0.20 2.09 0.00 0.34 ind:imp:3s; +contorsionnant contorsionner ver 0.20 2.09 0.00 0.54 par:pre; +contorsionne contorsionner ver 0.20 2.09 0.13 0.20 imp:pre:2s;ind:pre:3s; +contorsionnent contorsionner ver 0.20 2.09 0.01 0.14 ind:pre:3p; +contorsionner contorsionner ver 0.20 2.09 0.04 0.07 inf; +contorsionniste contorsionniste nom s 0.37 0.14 0.34 0.14 +contorsionnistes contorsionniste nom p 0.37 0.14 0.04 0.00 +contorsionné contorsionner ver m s 0.20 2.09 0.01 0.27 par:pas; +contorsionnée contorsionner ver f s 0.20 2.09 0.00 0.14 par:pas; +contorsionnées contorsionner ver f p 0.20 2.09 0.00 0.07 par:pas; +contorsionnés contorsionner ver m p 0.20 2.09 0.00 0.20 par:pas; +contorsions contorsion nom f p 0.16 2.23 0.14 1.76 +contât conter ver 3.76 8.99 0.00 0.07 sub:imp:3s; +contour contour nom m s 2.09 16.28 0.87 5.00 +contourna contourner ver 6.68 19.59 0.00 2.84 ind:pas:3s; +contournai contourner ver 6.68 19.59 0.00 0.47 ind:pas:1s; +contournaient contourner ver 6.68 19.59 0.01 0.47 ind:imp:3p; +contournais contourner ver 6.68 19.59 0.00 0.07 ind:imp:1s; +contournait contourner ver 6.68 19.59 0.17 1.76 ind:imp:3s; +contournant contourner ver 6.68 19.59 0.23 2.91 par:pre; +contourne contourner ver 6.68 19.59 0.99 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contournement contournement nom m s 0.14 0.07 0.13 0.00 +contournements contournement nom m p 0.14 0.07 0.01 0.07 +contournent contourner ver 6.68 19.59 0.08 0.54 ind:pre:3p; +contourner contourner ver 6.68 19.59 3.63 5.47 inf; +contournera contourner ver 6.68 19.59 0.10 0.00 ind:fut:3s; +contournerai contourner ver 6.68 19.59 0.02 0.07 ind:fut:1s; +contournerais contourner ver 6.68 19.59 0.01 0.00 cnd:pre:1s; +contournerez contourner ver 6.68 19.59 0.11 0.00 ind:fut:2p; +contournerons contourner ver 6.68 19.59 0.02 0.07 ind:fut:1p; +contournes contourner ver 6.68 19.59 0.17 0.07 ind:pre:2s; +contournez contourner ver 6.68 19.59 0.20 0.00 imp:pre:2p;ind:pre:2p; +contournions contourner ver 6.68 19.59 0.01 0.14 ind:imp:1p; +contournons contourner ver 6.68 19.59 0.27 0.20 imp:pre:1p;ind:pre:1p; +contournèrent contourner ver 6.68 19.59 0.01 0.47 ind:pas:3p; +contourné contourner ver m s 6.68 19.59 0.59 1.82 par:pas; +contournée contourné adj f s 0.05 1.28 0.04 0.34 +contournées contourner ver f p 6.68 19.59 0.03 0.07 par:pas; +contournés contourner ver m p 6.68 19.59 0.01 0.07 par:pas; +contours contour nom m p 2.09 16.28 1.22 11.28 +contrôla contrôler ver 61.13 21.01 0.00 0.41 ind:pas:3s; +contrôlable contrôlable adj s 0.12 0.14 0.08 0.14 +contrôlables contrôlable adj p 0.12 0.14 0.04 0.00 +contrôlai contrôler ver 61.13 21.01 0.00 0.20 ind:pas:1s; +contrôlaient contrôler ver 61.13 21.01 0.44 0.47 ind:imp:3p; +contrôlais contrôler ver 61.13 21.01 0.60 0.27 ind:imp:1s;ind:imp:2s; +contrôlait contrôler ver 61.13 21.01 1.17 2.57 ind:imp:3s; +contrôlant contrôler ver 61.13 21.01 0.28 0.81 par:pre; +contrôle contrôle nom m s 66.28 19.66 63.48 17.43 +contrôlent contrôler ver 61.13 21.01 2.22 0.41 ind:pre:3p; +contrôler contrôler ver 61.13 21.01 24.91 7.57 inf; +contrôlera contrôler ver 61.13 21.01 0.33 0.00 ind:fut:3s; +contrôlerai contrôler ver 61.13 21.01 0.26 0.00 ind:fut:1s; +contrôlerais contrôler ver 61.13 21.01 0.02 0.00 cnd:pre:1s; +contrôlerait contrôler ver 61.13 21.01 0.22 0.07 cnd:pre:3s; +contrôleras contrôler ver 61.13 21.01 0.05 0.00 ind:fut:2s; +contrôlerez contrôler ver 61.13 21.01 0.06 0.00 ind:fut:2p; +contrôleriez contrôler ver 61.13 21.01 0.01 0.00 cnd:pre:2p; +contrôlerons contrôler ver 61.13 21.01 0.67 0.00 ind:fut:1p; +contrôleront contrôler ver 61.13 21.01 0.22 0.00 ind:fut:3p; +contrôles contrôle nom m p 66.28 19.66 2.80 2.23 +contrôleur contrôleur nom m s 8.93 5.14 7.43 4.26 +contrôleurs contrôleur nom m p 8.93 5.14 1.00 0.88 +contrôleuse contrôleur nom f s 8.93 5.14 0.49 0.00 +contrôlez contrôler ver 61.13 21.01 3.36 0.14 imp:pre:2p;ind:pre:2p; +contrôliez contrôler ver 61.13 21.01 0.09 0.00 ind:imp:2p; +contrôlions contrôler ver 61.13 21.01 0.06 0.14 ind:imp:1p; +contrôlâmes contrôler ver 61.13 21.01 0.00 0.07 ind:pas:1p; +contrôlons contrôler ver 61.13 21.01 1.62 0.00 imp:pre:1p;ind:pre:1p; +contrôlèrent contrôler ver 61.13 21.01 0.01 0.00 ind:pas:3p; +contrôlé contrôler ver m s 61.13 21.01 4.70 2.43 par:pas; +contrôlée contrôler ver f s 61.13 21.01 1.43 1.15 par:pas; +contrôlées contrôler ver f p 61.13 21.01 0.79 0.61 par:pas; +contrôlés contrôler ver m p 61.13 21.01 0.70 0.47 par:pas; +contra contrer ver 19.15 18.72 0.12 0.14 ind:pas:3s; +contraceptif contraceptif nom m s 0.55 0.07 0.26 0.00 +contraceptifs contraceptif nom m p 0.55 0.07 0.29 0.07 +contraception contraception nom f s 0.66 0.68 0.66 0.68 +contraceptive contraceptif adj f s 0.56 0.20 0.10 0.00 +contraceptives contraceptif adj f p 0.56 0.20 0.38 0.20 +contracta contracter ver 3.31 12.30 0.01 0.95 ind:pas:3s; +contractai contracter ver 3.31 12.30 0.00 0.14 ind:pas:1s; +contractaient contracter ver 3.31 12.30 0.00 0.68 ind:imp:3p; +contractais contracter ver 3.31 12.30 0.00 0.07 ind:imp:1s; +contractait contracter ver 3.31 12.30 0.00 0.95 ind:imp:3s; +contractant contractant adj m s 0.20 0.07 0.10 0.00 +contractantes contractant adj f p 0.20 0.07 0.10 0.07 +contractants contractant nom m p 0.06 0.14 0.04 0.14 +contracte contracter ver 3.31 12.30 0.61 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contractent contracter ver 3.31 12.30 0.40 0.47 ind:pre:3p; +contracter contracter ver 3.31 12.30 0.48 1.42 inf; +contracterait contracter ver 3.31 12.30 0.00 0.07 cnd:pre:3s; +contractez contracter ver 3.31 12.30 0.11 0.00 imp:pre:2p; +contractile contractile adj s 0.01 0.00 0.01 0.00 +contraction contraction nom f s 3.05 2.97 1.00 2.23 +contractions contraction nom f p 3.05 2.97 2.05 0.74 +contractons contracter ver 3.31 12.30 0.00 0.07 ind:pre:1p; +contractèrent contracter ver 3.31 12.30 0.00 0.27 ind:pas:3p; +contracté contracter ver m s 3.31 12.30 1.22 2.97 par:pas; +contractée contracter ver f s 3.31 12.30 0.36 0.88 par:pas; +contractuel contractuel nom m s 0.68 0.34 0.07 0.00 +contractuelle contractuel nom f s 0.68 0.34 0.58 0.07 +contractuellement contractuellement adv 0.13 0.00 0.13 0.00 +contractuelles contractuel adj f p 0.35 0.47 0.17 0.00 +contractuels contractuel nom m p 0.68 0.34 0.02 0.27 +contractées contracter ver f p 3.31 12.30 0.06 0.41 par:pas; +contracture contracture nom f s 0.04 0.34 0.03 0.27 +contractures contracture nom f p 0.04 0.34 0.01 0.07 +contractés contracter ver m p 3.31 12.30 0.03 0.34 par:pas; +contradicteur contradicteur nom m s 0.02 0.14 0.01 0.00 +contradicteurs contradicteur nom m p 0.02 0.14 0.01 0.14 +contradiction contradiction nom f s 2.09 12.97 1.28 7.36 +contradictions contradiction nom f p 2.09 12.97 0.81 5.61 +contradictoire contradictoire adj s 2.42 9.05 1.56 2.43 +contradictoirement contradictoirement adv 0.00 0.20 0.00 0.20 +contradictoires contradictoire adj p 2.42 9.05 0.87 6.62 +contraignît contraindre ver 6.66 24.73 0.00 0.14 sub:imp:3s; +contraignaient contraindre ver 6.66 24.73 0.00 0.41 ind:imp:3p; +contraignais contraindre ver 6.66 24.73 0.00 0.14 ind:imp:1s; +contraignait contraindre ver 6.66 24.73 0.10 1.89 ind:imp:3s; +contraignant contraignant adj m s 0.16 1.15 0.11 0.68 +contraignante contraignant adj f s 0.16 1.15 0.04 0.34 +contraignantes contraignant adj f p 0.16 1.15 0.02 0.14 +contraigne contraindre ver 6.66 24.73 0.04 0.07 sub:pre:3s; +contraignent contraindre ver 6.66 24.73 0.26 0.88 ind:pre:3p; +contraignit contraindre ver 6.66 24.73 0.00 1.96 ind:pas:3s; +contraindra contraindre ver 6.66 24.73 0.02 0.07 ind:fut:3s; +contraindrai contraindre ver 6.66 24.73 0.01 0.07 ind:fut:1s; +contraindraient contraindre ver 6.66 24.73 0.00 0.07 cnd:pre:3p; +contraindrais contraindre ver 6.66 24.73 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +contraindrait contraindre ver 6.66 24.73 0.00 0.14 cnd:pre:3s; +contraindre contraindre ver 6.66 24.73 1.21 3.99 inf; +contrains contraindre ver 6.66 24.73 0.06 0.27 ind:pre:1s;ind:pre:2s; +contraint contraindre ver m s 6.66 24.73 3.42 8.92 ind:pre:3s;par:pas; +contrainte contrainte nom f s 2.94 5.81 2.94 5.81 +contraintes contraint nom f p 1.13 3.31 1.13 3.31 +contraints contraindre ver m p 6.66 24.73 0.95 2.23 par:pas; +contraire contraire nom m s 62.13 126.01 62.03 125.47 +contrairement contrairement adv 8.79 10.41 8.79 10.41 +contraires contraire adj p 6.90 14.53 0.51 3.78 +contrait contrer ver 19.15 18.72 0.01 0.14 ind:imp:3s; +contralto contralto nom m s 0.28 0.27 0.28 0.20 +contraltos contralto nom m p 0.28 0.27 0.01 0.07 +contrant contrer ver 19.15 18.72 0.00 0.07 par:pre; +contrapunctique contrapunctique adj m s 0.00 0.07 0.00 0.07 +contrapuntique contrapuntique adj f s 0.02 0.00 0.02 0.00 +contraria contrarier ver 11.03 13.31 0.10 0.61 ind:pas:3s; +contrariaient contrarier ver 11.03 13.31 0.01 0.20 ind:imp:3p; +contrariais contrarier ver 11.03 13.31 0.01 0.07 ind:imp:1s; +contrariait contrarier ver 11.03 13.31 0.27 1.49 ind:imp:3s; +contrariant contrariant adj m s 0.84 1.55 0.76 1.15 +contrariante contrariant adj f s 0.84 1.55 0.04 0.20 +contrariantes contrariant adj f p 0.84 1.55 0.03 0.14 +contrariants contrariant adj m p 0.84 1.55 0.01 0.07 +contrarie contrarier ver 11.03 13.31 1.77 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contrarient contrarier ver 11.03 13.31 0.08 0.41 ind:pre:3p; +contrarier contrarier ver 11.03 13.31 2.72 5.81 inf; +contrarierai contrarier ver 11.03 13.31 0.00 0.14 ind:fut:1s; +contrarierait contrarier ver 11.03 13.31 0.23 0.20 cnd:pre:3s; +contrariez contrarier ver 11.03 13.31 0.23 0.00 imp:pre:2p;ind:pre:2p; +contrarions contrarier ver 11.03 13.31 0.02 0.07 imp:pre:1p; +contrariât contrarier ver 11.03 13.31 0.00 0.07 sub:imp:3s; +contrarié contrarier ver m s 11.03 13.31 3.29 1.55 par:pas; +contrariée contrarier ver f s 11.03 13.31 1.94 1.15 par:pas; +contrariées contrarié adj f p 2.62 4.12 0.03 0.27 +contrariés contrarié adj m p 2.62 4.12 0.41 0.27 +contrariété contrariété nom f s 0.58 3.99 0.38 3.18 +contrariétés contrariété nom f p 0.58 3.99 0.21 0.81 +contras contra nom m p 0.20 0.00 0.08 0.00 +contrasta contraster ver 0.21 8.58 0.00 0.07 ind:pas:3s; +contrastaient contraster ver 0.21 8.58 0.00 1.28 ind:imp:3p; +contrastait contraster ver 0.21 8.58 0.00 3.65 ind:imp:3s; +contrastant contraster ver 0.21 8.58 0.02 1.42 par:pre; +contraste contraste nom m s 1.48 12.50 1.23 11.62 +contrastent contraster ver 0.21 8.58 0.01 0.47 ind:pre:3p; +contraster contraster ver 0.21 8.58 0.09 0.14 inf; +contrasteraient contraster ver 0.21 8.58 0.01 0.00 cnd:pre:3p; +contrasterait contraster ver 0.21 8.58 0.01 0.07 cnd:pre:3s; +contrastes contraste nom m p 1.48 12.50 0.25 0.88 +contrastez contraster ver 0.21 8.58 0.01 0.00 imp:pre:2p; +contrastât contraster ver 0.21 8.58 0.00 0.14 sub:imp:3s; +contrasté contraster ver m s 0.21 8.58 0.02 0.07 par:pas; +contrastée contrasté adj f s 0.03 0.41 0.01 0.14 +contrastées contrasté adj f p 0.03 0.41 0.00 0.14 +contrastés contraster ver m p 0.21 8.58 0.00 0.07 par:pas; +contrat_type contrat_type nom m s 0.01 0.07 0.01 0.07 +contrat contrat nom m s 53.23 15.00 45.70 12.43 +contrats contrat nom m p 53.23 15.00 7.53 2.57 +contravention contravention nom f s 2.76 1.22 1.85 0.95 +contraventions contravention nom f p 2.76 1.22 0.91 0.27 +contre_accusation contre_accusation nom f p 0.01 0.00 0.01 0.00 +contre_alizé contre_alizé nom m p 0.00 0.07 0.00 0.07 +contre_allée contre_allée nom f s 0.05 0.34 0.04 0.20 +contre_allée contre_allée nom f p 0.05 0.34 0.01 0.14 +contre_amiral contre_amiral nom m s 0.19 0.07 0.19 0.07 +contre_appel contre_appel nom m s 0.00 0.07 0.00 0.07 +contre_assurance contre_assurance nom f s 0.00 0.07 0.00 0.07 +contre_attaquer contre_attaquer ver 0.71 1.96 0.01 0.07 ind:pas:3s; +contre_attaquer contre_attaquer ver 0.71 1.96 0.00 0.20 ind:imp:3p; +contre_attaquer contre_attaquer ver 0.71 1.96 0.00 0.07 ind:imp:3s; +contre_attaquer contre_attaquer ver 0.71 1.96 0.00 0.07 par:pre; +contre_attaque contre_attaque nom f s 1.46 2.16 1.35 1.69 +contre_attaquer contre_attaquer ver 0.71 1.96 0.07 0.20 ind:pre:3p; +contre_attaquer contre_attaquer ver 0.71 1.96 0.37 0.95 inf; +contre_attaquer contre_attaquer ver 0.71 1.96 0.01 0.00 ind:fut:3s; +contre_attaquer contre_attaquer ver 0.71 1.96 0.03 0.07 ind:fut:1p; +contre_attaque contre_attaque nom f p 1.46 2.16 0.11 0.47 +contre_attaquer contre_attaquer ver 0.71 1.96 0.03 0.07 ind:pre:1p; +contre_attaquer contre_attaquer ver 0.71 1.96 0.03 0.07 ind:pas:3p; +contre_attaquer contre_attaquer ver m s 0.71 1.96 0.07 0.07 par:pas; +contre_champ contre_champ nom m s 0.00 0.07 0.00 0.07 +contre_chant contre_chant nom m s 0.00 0.14 0.00 0.14 +contre_choc contre_choc nom m p 0.00 0.07 0.00 0.07 +contre_clé contre_clé nom f p 0.00 0.07 0.00 0.07 +contre_courant contre_courant nom m s 0.59 1.96 0.59 1.96 +contre_culture contre_culture nom f s 0.03 0.00 0.03 0.00 +contre_emploi contre_emploi nom m s 0.01 0.00 0.01 0.00 +contre_espionnage contre_espionnage nom m s 0.67 0.34 0.67 0.34 +contre_exemple contre_exemple nom m s 0.00 0.07 0.00 0.07 +contre_expertise contre_expertise nom f s 0.52 0.27 0.51 0.20 +contre_expertise contre_expertise nom f p 0.52 0.27 0.01 0.07 +contre_feu contre_feu nom m s 0.07 0.00 0.07 0.00 +contre_feux contre_feux nom m p 0.00 0.07 0.00 0.07 +contre_fiche contre_fiche nom f p 0.00 0.07 0.00 0.07 +contre_fil contre_fil nom m s 0.00 0.07 0.00 0.07 +contre_gré contre_gré nom m s 0.00 0.14 0.00 0.14 +contre_indication contre_indication nom f s 0.07 0.00 0.04 0.00 +contre_indication contre_indication nom f p 0.07 0.00 0.04 0.00 +contre_indiquer contre_indiquer ver m s 0.06 0.14 0.06 0.14 par:pas; +contre_interrogatoire contre_interrogatoire nom m s 0.48 0.00 0.46 0.00 +contre_interrogatoire contre_interrogatoire nom m p 0.48 0.00 0.02 0.00 +contre_jour contre_jour nom m s 0.39 6.01 0.39 6.01 +contre_la_montre contre_la_montre nom m s 0.80 0.00 0.80 0.00 +contre_lame contre_lame nom f s 0.00 0.07 0.00 0.07 +contre_lettre contre_lettre nom f s 0.00 0.14 0.00 0.14 +contre_manifestant contre_manifestant nom m p 0.00 0.14 0.00 0.14 +contre_manifester contre_manifester ver 0.00 0.07 0.00 0.07 ind:pre:3p; +contre_mesure contre_mesure nom f s 0.42 0.00 0.04 0.00 +contre_mesure contre_mesure nom f p 0.42 0.00 0.39 0.00 +contre_mine contre_mine nom f s 0.00 0.14 0.00 0.07 +contre_mine contre_mine nom f p 0.00 0.14 0.00 0.07 +contre_miner contre_miner ver m s 0.00 0.07 0.00 0.07 par:pas; +contre_nature contre_nature adj s 0.41 0.14 0.41 0.14 +contre_offensive contre_offensive nom f s 0.29 0.41 0.18 0.41 +contre_offensive contre_offensive nom f p 0.29 0.41 0.11 0.00 +contre_ordre contre_ordre nom m s 0.47 0.95 0.46 0.81 +contre_ordre contre_ordre nom m p 0.47 0.95 0.01 0.14 +contre_pente contre_pente nom f s 0.00 0.34 0.00 0.34 +contre_performance contre_performance nom f s 0.14 0.07 0.14 0.00 +contre_performance contre_performance nom f p 0.14 0.07 0.00 0.07 +contre_pied contre_pied nom m s 0.04 0.61 0.04 0.54 +contre_pied contre_pied nom m p 0.04 0.61 0.00 0.07 +contre_plaqué contre_plaqué nom m s 0.10 0.54 0.10 0.54 +contre_plongée contre_plongée nom f s 0.23 0.47 0.23 0.47 +contre_pouvoir contre_pouvoir nom m p 0.00 0.07 0.00 0.07 +contre_pression contre_pression nom f s 0.02 0.00 0.02 0.00 +contre_productif contre_productif adj m s 0.10 0.00 0.09 0.00 +contre_productif contre_productif adj f s 0.10 0.00 0.01 0.00 +contre_propagande contre_propagande nom f s 0.02 0.07 0.02 0.07 +contre_proposition contre_proposition nom f s 0.40 0.07 0.39 0.07 +contre_proposition contre_proposition nom f p 0.40 0.07 0.01 0.00 +contre_réaction contre_réaction nom f s 0.01 0.00 0.01 0.00 +contre_réforme contre_réforme nom f s 0.00 0.61 0.00 0.61 +contre_révolution contre_révolution nom f s 0.37 0.34 0.37 0.34 +contre_révolutionnaire contre_révolutionnaire adj s 0.14 0.27 0.03 0.00 +contre_révolutionnaire contre_révolutionnaire adj p 0.14 0.27 0.11 0.27 +contre_terrorisme contre_terrorisme nom m s 0.07 0.00 0.07 0.00 +contre_terroriste contre_terroriste adj f s 0.00 0.07 0.00 0.07 +contre_test contre_test nom m s 0.00 0.07 0.00 0.07 +contre_torpilleur contre_torpilleur nom m s 0.20 1.22 0.08 0.61 +contre_torpilleur contre_torpilleur nom m p 0.20 1.22 0.12 0.61 +contre_transfert contre_transfert nom m s 0.01 0.00 0.01 0.00 +contre_épreuve contre_épreuve nom f s 0.01 0.07 0.00 0.07 +contre_épreuve contre_épreuve nom f p 0.01 0.07 0.01 0.00 +contre_ut contre_ut nom m 0.04 0.07 0.04 0.07 +contre_voie contre_voie nom f s 0.00 0.27 0.00 0.27 +contre_vérité contre_vérité nom f s 0.02 0.07 0.02 0.07 +contre contre pre 313.71 591.15 313.71 591.15 +contrebalance contrebalancer ver 0.19 0.68 0.03 0.14 ind:pre:1s;ind:pre:3s; +contrebalancer contrebalancer ver 0.19 0.68 0.12 0.27 inf; +contrebalancé contrebalancer ver m s 0.19 0.68 0.01 0.00 par:pas; +contrebalancée contrebalancer ver f s 0.19 0.68 0.02 0.00 par:pas; +contrebalancés contrebalancer ver m p 0.19 0.68 0.01 0.07 par:pas; +contrebalançais contrebalancer ver 0.19 0.68 0.00 0.07 ind:imp:1s; +contrebalançait contrebalancer ver 0.19 0.68 0.00 0.14 ind:imp:3s; +contrebande contrebande nom f s 3.72 1.96 3.72 1.96 +contrebandier contrebandier nom m s 1.43 1.08 0.47 0.47 +contrebandiers contrebandier nom m p 1.43 1.08 0.94 0.54 +contrebandière contrebandier nom f s 1.43 1.08 0.01 0.07 +contrebas contrebas adv 0.23 6.49 0.23 6.49 +contrebasse contrebasse nom s 0.41 0.34 0.41 0.27 +contrebasses contrebasse nom p 0.41 0.34 0.00 0.07 +contrebassiste contrebassiste nom s 0.02 0.14 0.01 0.14 +contrebassistes contrebassiste nom p 0.02 0.14 0.01 0.00 +contrebraque contrebraquer ver 0.01 0.07 0.01 0.07 imp:pre:2s;ind:pre:1s; +contrecarraient contrecarrer ver 1.06 1.82 0.00 0.07 ind:imp:3p; +contrecarrais contrecarrer ver 1.06 1.82 0.00 0.07 ind:imp:1s; +contrecarre contrecarrer ver 1.06 1.82 0.08 0.54 imp:pre:2s;ind:pre:3s;sub:pre:3s; +contrecarrer contrecarrer ver 1.06 1.82 0.93 0.68 inf; +contrecarres contrecarrer ver 1.06 1.82 0.00 0.27 ind:pre:2s; +contrecarré contrecarrer ver m s 1.06 1.82 0.03 0.07 par:pas; +contrecarrée contrecarrer ver f s 1.06 1.82 0.03 0.14 par:pas; +contrechamp contrechamp nom m s 0.46 0.34 0.11 0.34 +contrechamps contrechamp nom m p 0.46 0.34 0.35 0.00 +contrecoeur contrecoeur nom m s 0.69 3.38 0.69 3.38 +contrecollé contrecollé adj m s 0.00 0.07 0.00 0.07 +contrecoup contrecoup nom m s 0.26 2.03 0.23 1.49 +contrecoups contrecoup nom m p 0.26 2.03 0.04 0.54 +contredît contredire ver 6.99 7.84 0.00 0.07 sub:imp:3s; +contredanse contredanse nom f s 0.50 0.54 0.30 0.27 +contredanses contredanse nom f p 0.50 0.54 0.20 0.27 +contredira contredire ver 6.99 7.84 0.05 0.07 ind:fut:3s; +contredirai contredire ver 6.99 7.84 0.18 0.07 ind:fut:1s; +contrediraient contredire ver 6.99 7.84 0.03 0.07 cnd:pre:3p; +contredirait contredire ver 6.99 7.84 0.08 0.14 cnd:pre:3s; +contredire contredire ver 6.99 7.84 3.03 3.51 inf; +contredirez contredire ver 6.99 7.84 0.03 0.00 ind:fut:2p; +contredis contredire ver 6.99 7.84 0.92 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +contredisaient contredire ver 6.99 7.84 0.34 0.20 ind:imp:3p; +contredisait contredire ver 6.99 7.84 0.27 0.81 ind:imp:3s; +contredisant contredire ver 6.99 7.84 0.01 0.47 par:pre; +contredise contredire ver 6.99 7.84 0.03 0.14 sub:pre:3s; +contredisent contredire ver 6.99 7.84 0.48 0.41 ind:pre:3p; +contredises contredire ver 6.99 7.84 0.02 0.00 sub:pre:2s; +contredisez contredire ver 6.99 7.84 0.11 0.00 imp:pre:2p;ind:pre:2p; +contredit contredire ver m s 6.99 7.84 1.34 1.28 ind:pre:3s;par:pas; +contredite contredire ver f s 6.99 7.84 0.04 0.20 par:pas; +contredites contredire ver f p 6.99 7.84 0.01 0.14 par:pas; +contredits contredire ver m p 6.99 7.84 0.04 0.07 par:pas; +contrefacteurs contrefacteur nom m p 0.00 0.07 0.00 0.07 +contrefaire contrefaire ver 0.51 0.74 0.22 0.20 inf; +contrefaisait contrefaire ver 0.51 0.74 0.00 0.14 ind:imp:3s; +contrefaisant contrefaire ver 0.51 0.74 0.00 0.14 par:pre; +contrefait contrefaire ver m s 0.51 0.74 0.17 0.14 ind:pre:3s;par:pas; +contrefaite contrefaire ver f s 0.51 0.74 0.07 0.00 par:pas; +contrefaits contrefait adj m p 0.17 0.95 0.07 0.14 +contrefaçon contrefaçon nom f s 1.12 1.15 0.70 0.95 +contrefaçons contrefaçon nom f p 1.12 1.15 0.42 0.20 +contreferait contrefaire ver 0.51 0.74 0.00 0.07 cnd:pre:3s; +contrefichais contreficher ver 0.59 0.68 0.00 0.20 ind:imp:1s; +contrefichait contreficher ver 0.59 0.68 0.00 0.20 ind:imp:3s; +contrefiche contreficher ver 0.59 0.68 0.59 0.27 ind:pre:1s;ind:pre:3s; +contrefort contrefort nom m s 0.08 3.65 0.02 0.47 +contreforts contrefort nom m p 0.08 3.65 0.06 3.18 +contrefous contrefoutre ver 0.89 0.54 0.72 0.20 ind:pre:1s;ind:pre:2s; +contrefout contrefoutre ver 0.89 0.54 0.16 0.14 ind:pre:3s; +contrefoutait contrefoutre ver 0.89 0.54 0.00 0.20 ind:imp:3s; +contrefoutre contrefoutre ver 0.89 0.54 0.01 0.00 inf; +contremaître contremaître nom m s 3.65 3.99 3.61 3.51 +contremaîtres contremaître nom m p 3.65 3.99 0.04 0.47 +contremaîtresse contremaîtresse nom f s 0.00 0.27 0.00 0.27 +contremander contremander ver 0.01 0.00 0.01 0.00 inf; +contremarches contremarche nom f p 0.00 0.07 0.00 0.07 +contremarques contremarque nom f p 0.00 0.07 0.00 0.07 +contrent contrer ver 19.15 18.72 0.02 0.00 ind:pre:3p; +contrepartie contrepartie nom f s 1.33 2.16 1.33 2.16 +contreplaqué contreplaqué nom m s 0.15 1.35 0.15 1.35 +contrepoids contrepoids nom m 0.56 1.82 0.56 1.82 +contrepoint contrepoint nom m s 0.33 1.62 0.33 1.62 +contrepoison contrepoison nom m s 0.00 0.47 0.00 0.27 +contrepoisons contrepoison nom m p 0.00 0.47 0.00 0.20 +contreproposition contreproposition nom f s 0.01 0.00 0.01 0.00 +contrepèterie contrepèterie nom f s 0.00 0.20 0.00 0.07 +contrepèteries contrepèterie nom f p 0.00 0.20 0.00 0.14 +contrer contrer ver 19.15 18.72 1.60 1.08 inf; +contrerai contrer ver 19.15 18.72 0.01 0.00 ind:fut:1s; +contrerait contrer ver 19.15 18.72 0.01 0.07 cnd:pre:3s; +contreras contrer ver 19.15 18.72 0.31 0.00 ind:fut:2s; +contreront contrer ver 19.15 18.72 0.00 0.07 ind:fut:3p; +contres contre nom_sup m p 5.43 5.81 0.08 0.07 +contrescarpe contrescarpe nom f s 0.14 0.61 0.14 0.61 +contreseing contreseing nom m s 0.21 0.07 0.21 0.07 +contresens contresens nom m 0.50 1.55 0.50 1.55 +contresignait contresigner ver 0.24 0.74 0.00 0.07 ind:imp:3s; +contresigne contresigner ver 0.24 0.74 0.01 0.14 ind:pre:1s;ind:pre:3s; +contresigner contresigner ver 0.24 0.74 0.06 0.14 inf; +contresigné contresigner ver m s 0.24 0.74 0.06 0.14 par:pas; +contresignée contresigner ver f s 0.24 0.74 0.10 0.07 par:pas; +contresignées contresigner ver f p 0.24 0.74 0.00 0.07 par:pas; +contresignés contresigner ver m p 0.24 0.74 0.01 0.14 par:pas; +contretemps contretemps nom m 1.43 3.18 1.43 3.18 +contretypés contretyper ver m p 0.00 0.07 0.00 0.07 par:pas; +contrevallation contrevallation nom f s 0.01 0.00 0.01 0.00 +contrevenaient contrevenir ver 0.31 1.08 0.00 0.07 ind:imp:3p; +contrevenait contrevenir ver 0.31 1.08 0.00 0.07 ind:imp:3s; +contrevenant contrevenir ver 0.31 1.08 0.21 0.07 par:pre; +contrevenants contrevenant nom m p 0.50 0.27 0.37 0.27 +contrevenez contrevenir ver 0.31 1.08 0.01 0.00 ind:pre:2p; +contrevenir contrevenir ver 0.31 1.08 0.04 0.47 inf; +contrevent contrevent nom m s 0.00 1.15 0.00 0.07 +contrevents contrevent nom m p 0.00 1.15 0.00 1.08 +contrevenu contrevenir ver m s 0.31 1.08 0.02 0.14 par:pas; +contreviendrait contrevenir ver 0.31 1.08 0.01 0.00 cnd:pre:3s; +contreviens contrevenir ver 0.31 1.08 0.00 0.07 ind:pre:1s; +contrevient contrevenir ver 0.31 1.08 0.01 0.20 ind:pre:3s; +contrevérité contrevérité nom f s 0.05 0.14 0.00 0.07 +contrevérités contrevérité nom f p 0.05 0.14 0.05 0.07 +contribua contribuer ver 5.63 18.11 0.14 0.81 ind:pas:3s; +contribuable contribuable nom s 2.55 0.41 1.25 0.07 +contribuables contribuable nom p 2.55 0.41 1.30 0.34 +contribuaient contribuer ver 5.63 18.11 0.00 1.42 ind:imp:3p; +contribuait contribuer ver 5.63 18.11 0.02 2.57 ind:imp:3s; +contribuant contribuer ver 5.63 18.11 0.06 0.20 par:pre; +contribue contribuer ver 5.63 18.11 0.97 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contribuent contribuer ver 5.63 18.11 0.16 0.74 ind:pre:3p; +contribuer contribuer ver 5.63 18.11 1.67 2.84 inf; +contribuera contribuer ver 5.63 18.11 0.05 0.61 ind:fut:3s; +contribueraient contribuer ver 5.63 18.11 0.01 0.34 cnd:pre:3p; +contribuerais contribuer ver 5.63 18.11 0.01 0.00 cnd:pre:2s; +contribuerait contribuer ver 5.63 18.11 0.03 0.54 cnd:pre:3s; +contribueras contribuer ver 5.63 18.11 0.01 0.00 ind:fut:2s; +contribuerez contribuer ver 5.63 18.11 0.04 0.00 ind:fut:2p; +contribueront contribuer ver 5.63 18.11 0.13 0.07 ind:fut:3p; +contribuez contribuer ver 5.63 18.11 0.01 0.14 ind:pre:2p; +contribuons contribuer ver 5.63 18.11 0.10 0.07 imp:pre:1p;ind:pre:1p; +contribuât contribuer ver 5.63 18.11 0.00 0.07 sub:imp:3s; +contributeur contributeur nom m s 0.02 0.00 0.02 0.00 +contribuèrent contribuer ver 5.63 18.11 0.00 0.27 ind:pas:3p; +contribution contribution nom f s 4.03 5.34 3.30 4.39 +contributions contribution nom f p 4.03 5.34 0.73 0.95 +contribué contribuer ver m s 5.63 18.11 2.20 5.68 par:pas; +contrista contrister ver 0.00 0.20 0.00 0.07 ind:pas:3s; +contristant contrister ver 0.00 0.20 0.00 0.07 par:pre; +contristées contrister ver f p 0.00 0.20 0.00 0.07 par:pas; +contrit contrit adj m s 0.19 2.50 0.14 1.89 +contrite contrit adj f s 0.19 2.50 0.02 0.41 +contrites contrit adj f p 0.19 2.50 0.01 0.00 +contrition contrition nom f s 0.87 1.76 0.87 1.69 +contritions contrition nom f p 0.87 1.76 0.00 0.07 +contrits contrit adj m p 0.19 2.50 0.01 0.20 +control control adj s 1.27 0.07 1.27 0.07 +contrordre contrordre nom m s 0.41 0.34 0.28 0.00 +contrordres contrordre nom m p 0.41 0.34 0.14 0.34 +controverse controverse nom f s 1.38 2.57 1.13 1.42 +controverses controverse nom f p 1.38 2.57 0.24 1.15 +controversé controversé adj m s 0.85 0.27 0.46 0.14 +controversée controversé adj f s 0.85 0.27 0.20 0.14 +controversées controversé adj f p 0.85 0.27 0.06 0.00 +controversés controversé adj m p 0.85 0.27 0.14 0.00 +contré contrer ver m s 19.15 18.72 0.27 0.27 par:pas; +contrée contrée nom f s 2.77 5.41 1.65 2.70 +contrées contrée nom f p 2.77 5.41 1.12 2.70 +contrés contrer ver m p 19.15 18.72 0.03 0.07 par:pas; +conté conter ver m s 3.76 8.99 0.47 0.88 par:pas; +contée conter ver f s 3.76 8.99 0.18 0.68 par:pas; +contées conter ver f p 3.76 8.99 0.01 0.20 par:pas; +contumace contumace nom f s 0.03 0.61 0.03 0.54 +contumaces contumace nom f p 0.03 0.61 0.00 0.07 +contumax contumax adj 0.00 0.20 0.00 0.20 +contés conter ver m p 3.76 8.99 0.01 0.14 par:pas; +contuse contus adj f s 0.00 0.07 0.00 0.07 +contusion contusion nom f s 3.23 0.74 1.03 0.47 +contusionné contusionné adj m s 0.07 0.14 0.06 0.00 +contusionnée contusionner ver f s 0.27 0.07 0.22 0.00 par:pas; +contusionnés contusionner ver m p 0.27 0.07 0.03 0.00 par:pas; +contusions contusion nom f p 3.23 0.74 2.19 0.27 +convînmes convenir ver 38.82 73.78 0.00 0.68 ind:pas:1p; +convînt convenir ver 38.82 73.78 0.00 0.34 sub:imp:3s; +convainc convaincre ver 56.67 46.35 0.70 0.34 ind:pre:3s; +convaincant convaincant adj m s 4.39 4.26 2.86 2.30 +convaincante convaincant adj f s 4.39 4.26 0.96 1.42 +convaincantes convaincant adj f p 4.39 4.26 0.09 0.27 +convaincants convaincant adj m p 4.39 4.26 0.49 0.27 +convaincra convaincre ver 56.67 46.35 0.84 0.00 ind:fut:3s; +convaincrai convaincre ver 56.67 46.35 0.47 0.07 ind:fut:1s; +convaincrait convaincre ver 56.67 46.35 0.14 0.34 cnd:pre:3s; +convaincras convaincre ver 56.67 46.35 0.34 0.07 ind:fut:2s; +convaincre convaincre ver 56.67 46.35 28.40 23.72 inf;; +convaincrez convaincre ver 56.67 46.35 0.16 0.07 ind:fut:2p; +convaincrons convaincre ver 56.67 46.35 0.03 0.07 ind:fut:1p; +convaincront convaincre ver 56.67 46.35 0.07 0.07 ind:fut:3p; +convaincs convaincre ver 56.67 46.35 0.72 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +convaincu convaincre ver m s 56.67 46.35 16.11 12.84 par:pas; +convaincue convaincre ver f s 56.67 46.35 5.57 3.92 par:pas; +convaincues convaincu adj f p 5.79 11.35 0.15 0.34 +convaincus convaincre ver m p 56.67 46.35 1.99 1.82 par:pas; +convainquaient convaincre ver 56.67 46.35 0.00 0.07 ind:imp:3p; +convainquait convaincre ver 56.67 46.35 0.00 0.61 ind:imp:3s; +convainquant convaincre ver 56.67 46.35 0.19 0.20 par:pre; +convainque convaincre ver 56.67 46.35 0.14 0.14 sub:pre:1s;sub:pre:3s; +convainquent convaincre ver 56.67 46.35 0.23 0.14 ind:pre:3p; +convainques convaincre ver 56.67 46.35 0.04 0.07 sub:pre:2s; +convainquez convaincre ver 56.67 46.35 0.32 0.00 imp:pre:2p;ind:pre:2p; +convainquiez convaincre ver 56.67 46.35 0.04 0.00 ind:imp:2p; +convainquirent convaincre ver 56.67 46.35 0.00 0.20 ind:pas:3p; +convainquis convaincre ver 56.67 46.35 0.01 0.34 ind:pas:1s; +convainquit convaincre ver 56.67 46.35 0.12 0.81 ind:pas:3s; +convainquons convaincre ver 56.67 46.35 0.01 0.07 imp:pre:1p; +convalescence convalescence nom f s 1.65 3.24 1.64 3.04 +convalescences convalescence nom f p 1.65 3.24 0.01 0.20 +convalescent convalescent adj m s 0.23 1.28 0.20 0.74 +convalescente convalescent adj f s 0.23 1.28 0.01 0.47 +convalescentes convalescent adj f p 0.23 1.28 0.01 0.07 +convalescents convalescent adj m p 0.23 1.28 0.01 0.00 +convalo convalo nom f s 0.01 0.34 0.01 0.27 +convalos convalo nom f p 0.01 0.34 0.00 0.07 +convecteur convecteur nom m s 0.01 0.00 0.01 0.00 +convection convection nom f s 0.06 0.00 0.06 0.00 +convenable convenable adj s 5.96 16.22 5.37 12.91 +convenablement convenablement adv 2.02 6.22 2.02 6.22 +convenables convenable adj p 5.96 16.22 0.59 3.31 +convenaient convenir ver 38.82 73.78 0.41 1.76 ind:imp:3p; +convenais convenir ver 38.82 73.78 0.20 0.20 ind:imp:1s;ind:imp:2s; +convenait convenir ver 38.82 73.78 1.72 15.34 ind:imp:3s; +convenance convenance nom f s 1.82 5.47 1.22 2.64 +convenances convenance nom f p 1.82 5.47 0.60 2.84 +convenant convenir ver 38.82 73.78 0.20 1.08 par:pre; +convenez convenir ver 38.82 73.78 0.62 0.61 imp:pre:2p;ind:pre:2p; +conveniez convenir ver 38.82 73.78 0.16 0.00 ind:imp:2p; +convenir convenir ver 38.82 73.78 2.02 8.85 inf; +convenons convenir ver 38.82 73.78 0.17 0.34 imp:pre:1p;ind:pre:1p; +convent convent nom m s 0.03 0.07 0.03 0.07 +conventicule conventicule nom m s 0.00 0.07 0.00 0.07 +convention convention nom f s 7.44 12.64 5.73 8.85 +conventionnel conventionnel adj m s 3.06 3.92 1.16 1.62 +conventionnelle conventionnel adj f s 3.06 3.92 1.40 1.28 +conventionnellement conventionnellement adv 0.01 0.20 0.01 0.20 +conventionnelles conventionnel adj f p 3.06 3.92 0.22 0.41 +conventionnels conventionnel adj m p 3.06 3.92 0.29 0.61 +conventionnée conventionné adj f s 0.14 0.00 0.14 0.00 +conventions convention nom f p 7.44 12.64 1.71 3.78 +conventuel conventuel adj m s 0.10 0.68 0.00 0.20 +conventuelle conventuel adj f s 0.10 0.68 0.10 0.34 +conventuellement conventuellement adv 0.00 0.07 0.00 0.07 +conventuelles conventuel adj f p 0.10 0.68 0.00 0.07 +conventuels conventuel adj m p 0.10 0.68 0.00 0.07 +convenu convenir ver m s 38.82 73.78 6.88 11.01 par:pas; +convenue convenu adj f s 2.21 5.07 0.11 1.22 +convenues convenu adj f p 2.21 5.07 0.01 0.41 +convenus convenir ver m p 38.82 73.78 0.09 1.15 par:pas; +converge converger ver 0.86 3.99 0.23 0.41 ind:pre:3s; +convergeaient converger ver 0.86 3.99 0.01 1.15 ind:imp:3p; +convergeait converger ver 0.86 3.99 0.00 0.27 ind:imp:3s; +convergeant converger ver 0.86 3.99 0.13 0.61 par:pre; +convergence convergence nom f s 0.24 0.68 0.24 0.68 +convergent converger ver 0.86 3.99 0.29 0.41 ind:pre:3p; +convergente convergent adj f s 0.08 1.08 0.01 0.14 +convergentes convergent adj f p 0.08 1.08 0.00 0.20 +convergents convergent adj m p 0.08 1.08 0.01 0.54 +convergeons converger ver 0.86 3.99 0.03 0.00 imp:pre:1p;ind:pre:1p; +converger converger ver 0.86 3.99 0.05 0.81 inf; +convergeraient converger ver 0.86 3.99 0.00 0.07 cnd:pre:3p; +convergez converger ver 0.86 3.99 0.08 0.00 imp:pre:2p; +convergèrent converger ver 0.86 3.99 0.00 0.14 ind:pas:3p; +convergé converger ver m s 0.86 3.99 0.02 0.14 par:pas; +convers convers adj m 0.01 0.95 0.01 0.95 +conversaient converser ver 0.70 4.53 0.00 0.34 ind:imp:3p; +conversais converser ver 0.70 4.53 0.02 0.00 ind:imp:1s; +conversait converser ver 0.70 4.53 0.00 0.61 ind:imp:3s; +conversant converser ver 0.70 4.53 0.02 0.68 par:pre; +conversation conversation nom f s 42.17 115.34 35.14 84.12 +conversations conversation nom f p 42.17 115.34 7.03 31.22 +converse converser ver 0.70 4.53 0.17 0.14 ind:pre:1s;ind:pre:3s; +conversent converser ver 0.70 4.53 0.01 0.14 ind:pre:3p; +converser converser ver 0.70 4.53 0.36 1.89 inf; +converses converse adj p 0.07 0.47 0.04 0.47 +conversez converser ver 0.70 4.53 0.03 0.00 ind:pre:2p; +conversiez converser ver 0.70 4.53 0.02 0.00 ind:imp:2p; +conversion conversion nom f s 1.91 3.92 1.71 3.65 +conversions conversion nom f p 1.91 3.92 0.20 0.27 +conversâmes converser ver 0.70 4.53 0.00 0.14 ind:pas:1p; +conversons converser ver 0.70 4.53 0.01 0.07 ind:pre:1p; +conversèrent converser ver 0.70 4.53 0.00 0.14 ind:pas:3p; +conversé converser ver m s 0.70 4.53 0.05 0.34 par:pas; +convertît convertir ver 9.34 10.34 0.00 0.14 sub:imp:3s; +converti convertir ver m s 9.34 10.34 2.41 2.30 par:pas; +convertible convertible adj s 0.24 0.34 0.20 0.20 +convertibles convertible adj p 0.24 0.34 0.04 0.14 +convertie convertir ver f s 9.34 10.34 0.52 0.88 par:pas; +converties convertir ver f p 9.34 10.34 0.17 0.14 par:pas; +convertir convertir ver 9.34 10.34 4.12 3.78 inf; +convertira convertir ver 9.34 10.34 0.02 0.07 ind:fut:3s; +convertirai convertir ver 9.34 10.34 0.03 0.00 ind:fut:1s; +convertirais convertir ver 9.34 10.34 0.04 0.07 cnd:pre:1s; +convertirait convertir ver 9.34 10.34 0.00 0.14 cnd:pre:3s; +convertirons convertir ver 9.34 10.34 0.01 0.00 ind:fut:1p; +convertis convertir ver m p 9.34 10.34 0.95 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +convertissaient convertir ver 9.34 10.34 0.00 0.07 ind:imp:3p; +convertissais convertir ver 9.34 10.34 0.01 0.07 ind:imp:1s; +convertissait convertir ver 9.34 10.34 0.05 0.27 ind:imp:3s; +convertissant convertir ver 9.34 10.34 0.01 0.27 par:pre; +convertisse convertir ver 9.34 10.34 0.09 0.07 sub:pre:1s;sub:pre:3s; +convertissent convertir ver 9.34 10.34 0.40 0.20 ind:pre:3p; +convertisseur convertisseur nom m s 0.35 0.00 0.22 0.00 +convertisseurs convertisseur nom m p 0.35 0.00 0.13 0.00 +convertissez convertir ver 9.34 10.34 0.07 0.07 imp:pre:2p;ind:pre:2p; +convertissions convertir ver 9.34 10.34 0.00 0.14 ind:imp:1p; +convertit convertir ver 9.34 10.34 0.45 0.47 ind:pre:3s;ind:pas:3s; +convexe convexe adj s 0.08 0.88 0.07 0.54 +convexes convexe adj p 0.08 0.88 0.01 0.34 +convexité convexité nom f s 0.00 0.20 0.00 0.20 +convia convier ver 2.63 7.50 0.02 0.81 ind:pas:3s; +conviaient convier ver 2.63 7.50 0.00 0.27 ind:imp:3p; +conviais convier ver 2.63 7.50 0.14 0.07 ind:imp:1s; +conviait convier ver 2.63 7.50 0.14 0.61 ind:imp:3s; +conviant convier ver 2.63 7.50 0.00 0.41 par:pre; +convict convict nom m s 0.02 0.07 0.01 0.00 +conviction conviction nom f s 13.32 37.23 9.27 31.49 +convictions conviction nom f p 13.32 37.23 4.05 5.74 +convicts convict nom m p 0.02 0.07 0.01 0.07 +convie convier ver 2.63 7.50 0.37 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conviendra convenir ver 38.82 73.78 1.31 0.61 ind:fut:3s; +conviendrai convenir ver 38.82 73.78 0.00 0.07 ind:fut:1s; +conviendraient convenir ver 38.82 73.78 0.07 0.07 cnd:pre:3p; +conviendrais convenir ver 38.82 73.78 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +conviendrait convenir ver 38.82 73.78 1.56 2.57 cnd:pre:3s; +conviendras convenir ver 38.82 73.78 0.17 0.14 ind:fut:2s; +conviendrez convenir ver 38.82 73.78 0.39 0.68 ind:fut:2p; +conviendrions convenir ver 38.82 73.78 0.00 0.07 cnd:pre:1p; +conviendrons convenir ver 38.82 73.78 0.01 0.07 ind:fut:1p; +conviendront convenir ver 38.82 73.78 0.01 0.07 ind:fut:3p; +convienne convenir ver 38.82 73.78 0.86 0.74 sub:pre:1s;sub:pre:3s; +conviennent convenir ver 38.82 73.78 1.51 2.03 ind:pre:3p; +conviens convenir ver 38.82 73.78 0.96 3.45 imp:pre:2s;ind:pre:1s;ind:pre:2s; +convient convenir ver 38.82 73.78 19.21 16.89 ind:pre:3s; +convier convier ver 2.63 7.50 0.44 0.41 inf; +conviera convier ver 2.63 7.50 0.00 0.07 ind:fut:3s; +convierai convier ver 2.63 7.50 0.01 0.00 ind:fut:1s; +convierait convier ver 2.63 7.50 0.01 0.07 cnd:pre:3s; +conviez convier ver 2.63 7.50 0.16 0.00 imp:pre:2p;ind:pre:2p; +convinrent convenir ver 38.82 73.78 0.00 1.08 ind:pas:3p; +convins convenir ver 38.82 73.78 0.01 0.27 ind:pas:1s; +convint convenir ver 38.82 73.78 0.12 2.77 ind:pas:3s; +convions convier ver 2.63 7.50 0.01 0.00 ind:pre:1p; +convièrent convier ver 2.63 7.50 0.00 0.07 ind:pas:3p; +convié convier ver m s 2.63 7.50 0.60 1.42 par:pas; +conviée convier ver f s 2.63 7.50 0.13 0.27 par:pas; +conviées convier ver f p 2.63 7.50 0.00 0.14 par:pas; +conviés convier ver m p 2.63 7.50 0.15 1.35 par:pas; +convive convive nom s 0.67 6.49 0.15 1.08 +convives convive nom p 0.67 6.49 0.53 5.41 +convivial convivial adj m s 0.67 0.27 0.49 0.14 +conviviale convivial adj f s 0.67 0.27 0.06 0.07 +conviviales convivial adj f p 0.67 0.27 0.02 0.07 +convivialisez convivialiser ver 0.00 0.07 0.00 0.07 ind:pre:2p; +convivialité convivialité nom f s 0.42 0.27 0.42 0.27 +conviviaux convivial adj m p 0.67 0.27 0.10 0.00 +convocable convocable adj s 0.01 0.00 0.01 0.00 +convocation convocation nom f s 1.78 3.65 1.56 3.18 +convocations convocation nom f p 1.78 3.65 0.22 0.47 +convoi convoi nom m s 9.39 18.78 7.86 11.35 +convoie convoyer ver 0.51 1.89 0.04 0.00 ind:pre:3s; +convois convoi nom m p 9.39 18.78 1.53 7.43 +convoita convoiter ver 2.31 5.27 0.00 0.07 ind:pas:3s; +convoitaient convoiter ver 2.31 5.27 0.02 0.47 ind:imp:3p; +convoitais convoiter ver 2.31 5.27 0.07 0.61 ind:imp:1s;ind:imp:2s; +convoitait convoiter ver 2.31 5.27 0.16 0.81 ind:imp:3s; +convoitant convoiter ver 2.31 5.27 0.02 0.14 par:pre; +convoite convoiter ver 2.31 5.27 0.69 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +convoitent convoiter ver 2.31 5.27 0.13 0.20 ind:pre:3p; +convoiter convoiter ver 2.31 5.27 0.20 0.34 inf; +convoiteras convoiter ver 2.31 5.27 0.04 0.00 ind:fut:2s; +convoiteront convoiter ver 2.31 5.27 0.10 0.00 ind:fut:3p; +convoiteur convoiteur adj m s 0.00 0.07 0.00 0.07 +convoiteux convoiteux adj m p 0.00 0.07 0.00 0.07 +convoitez convoiter ver 2.31 5.27 0.12 0.20 ind:pre:2p; +convoitise convoitise nom f s 1.05 5.20 0.80 4.05 +convoitises convoitise nom f p 1.05 5.20 0.25 1.15 +convoité convoiter ver m s 2.31 5.27 0.57 0.88 par:pas; +convoitée convoiter ver f s 2.31 5.27 0.13 0.54 par:pas; +convoitées convoiter ver f p 2.31 5.27 0.02 0.14 par:pas; +convoités convoiter ver m p 2.31 5.27 0.05 0.41 par:pas; +convola convoler ver 0.22 0.61 0.00 0.07 ind:pas:3s; +convolait convoler ver 0.22 0.61 0.00 0.07 ind:imp:3s; +convolant convoler ver 0.22 0.61 0.00 0.07 par:pre; +convolent convoler ver 0.22 0.61 0.00 0.07 ind:pre:3p; +convoler convoler ver 0.22 0.61 0.19 0.20 inf; +convolèrent convoler ver 0.22 0.61 0.01 0.00 ind:pas:3p; +convolé convoler ver m s 0.22 0.61 0.02 0.14 par:pas; +convoqua convoquer ver 10.89 19.32 0.14 2.91 ind:pas:3s; +convoquai convoquer ver 10.89 19.32 0.01 0.41 ind:pas:1s; +convoquaient convoquer ver 10.89 19.32 0.00 0.20 ind:imp:3p; +convoquait convoquer ver 10.89 19.32 0.01 1.62 ind:imp:3s; +convoquant convoquer ver 10.89 19.32 0.17 0.41 par:pre; +convoque convoquer ver 10.89 19.32 2.30 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +convoquent convoquer ver 10.89 19.32 0.06 0.14 ind:pre:3p; +convoquer convoquer ver 10.89 19.32 1.94 2.09 inf;; +convoquera convoquer ver 10.89 19.32 0.17 0.27 ind:fut:3s; +convoquerai convoquer ver 10.89 19.32 0.07 0.00 ind:fut:1s; +convoqueraient convoquer ver 10.89 19.32 0.00 0.07 cnd:pre:3p; +convoquerait convoquer ver 10.89 19.32 0.03 0.20 cnd:pre:3s; +convoquerez convoquer ver 10.89 19.32 0.02 0.00 ind:fut:2p; +convoqueront convoquer ver 10.89 19.32 0.01 0.00 ind:fut:3p; +convoquez convoquer ver 10.89 19.32 0.71 0.14 imp:pre:2p;ind:pre:2p; +convoquions convoquer ver 10.89 19.32 0.00 0.07 ind:imp:1p; +convoquons convoquer ver 10.89 19.32 0.07 0.00 imp:pre:1p;ind:pre:1p; +convoquât convoquer ver 10.89 19.32 0.00 0.14 sub:imp:3s; +convoquèrent convoquer ver 10.89 19.32 0.01 0.00 ind:pas:3p; +convoqué convoquer ver m s 10.89 19.32 3.26 5.81 par:pas; +convoquée convoquer ver f s 10.89 19.32 1.02 0.81 par:pas; +convoquées convoquer ver f p 10.89 19.32 0.20 0.20 par:pas; +convoqués convoquer ver m p 10.89 19.32 0.68 1.69 par:pas; +convoya convoyer ver 0.51 1.89 0.00 0.07 ind:pas:3s; +convoyage convoyage nom m s 0.10 0.20 0.08 0.14 +convoyages convoyage nom m p 0.10 0.20 0.02 0.07 +convoyaient convoyer ver 0.51 1.89 0.00 0.07 ind:imp:3p; +convoyait convoyer ver 0.51 1.89 0.01 0.20 ind:imp:3s; +convoyant convoyer ver 0.51 1.89 0.11 0.20 par:pre; +convoyer convoyer ver 0.51 1.89 0.32 0.81 inf; +convoyeur convoyeur nom m s 1.10 0.95 0.58 0.54 +convoyeurs convoyeur nom m p 1.10 0.95 0.51 0.27 +convoyeuse convoyeur nom f s 1.10 0.95 0.01 0.14 +convoyé convoyer ver m s 0.51 1.89 0.02 0.14 par:pas; +convoyée convoyer ver f s 0.51 1.89 0.00 0.07 par:pas; +convoyés convoyer ver m p 0.51 1.89 0.01 0.34 par:pas; +convulsa convulser ver 0.84 1.42 0.00 0.07 ind:pas:3s; +convulsai convulser ver 0.84 1.42 0.00 0.07 ind:pas:1s; +convulsais convulser ver 0.84 1.42 0.00 0.07 ind:imp:1s; +convulsait convulser ver 0.84 1.42 0.04 0.27 ind:imp:3s; +convulsant convulser ver 0.84 1.42 0.00 0.14 par:pre; +convulse convulser ver 0.84 1.42 0.42 0.14 ind:pre:3s; +convulser convulser ver 0.84 1.42 0.19 0.07 inf; +convulsif convulsif adj m s 0.39 3.04 0.13 1.35 +convulsifs convulsif adj m p 0.39 3.04 0.14 0.68 +convulsion convulsion nom f s 1.60 5.61 0.19 1.28 +convulsionnaire convulsionnaire nom s 0.00 0.14 0.00 0.14 +convulsionne convulsionner ver 0.00 0.20 0.00 0.14 ind:pre:1s;ind:pre:3s; +convulsionnée convulsionner ver f s 0.00 0.20 0.00 0.07 par:pas; +convulsions convulsion nom f p 1.60 5.61 1.42 4.32 +convulsive convulsif adj f s 0.39 3.04 0.13 0.41 +convulsivement convulsivement adv 0.01 1.35 0.01 1.35 +convulsives convulsif adj f p 0.39 3.04 0.00 0.61 +convulsé convulser ver m s 0.84 1.42 0.07 0.34 par:pas; +convulsée convulsé adj f s 0.11 0.74 0.10 0.27 +convulsées convulsé adj f p 0.11 0.74 0.00 0.07 +convulsés convulsé adj m p 0.11 0.74 0.01 0.00 +cooccupant cooccupant adj m s 0.00 0.07 0.00 0.07 +cookie cookie nom m s 8.22 0.07 3.08 0.07 +cookies cookie nom m p 8.22 0.07 5.14 0.00 +cool cool adj 63.63 3.18 63.63 3.18 +coolie_pousse coolie_pousse nom m s 0.01 0.00 0.01 0.00 +coolie coolie nom m s 0.16 0.41 0.13 0.20 +coolies coolie nom m p 0.16 0.41 0.03 0.20 +coolos coolos adj 0.04 0.41 0.04 0.41 +cooptant coopter ver 0.16 0.07 0.01 0.00 par:pre; +cooptation cooptation nom f s 0.01 0.14 0.01 0.14 +coopter coopter ver 0.16 0.07 0.01 0.07 inf; +coopère coopérer ver 11.91 1.08 1.60 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coopèrent coopérer ver 11.91 1.08 0.42 0.14 ind:pre:3p; +coopères coopérer ver 11.91 1.08 0.49 0.07 ind:pre:2s; +coopté coopter ver m s 0.16 0.07 0.14 0.00 par:pas; +coopé coopé nom f s 0.02 0.27 0.02 0.27 +coopérais coopérer ver 11.91 1.08 0.04 0.00 ind:imp:1s;ind:imp:2s; +coopérait coopérer ver 11.91 1.08 0.20 0.07 ind:imp:3s; +coopérant coopérer ver 11.91 1.08 0.13 0.00 par:pre; +coopérante coopérant nom f s 0.10 0.14 0.03 0.00 +coopérants coopérant nom m p 0.10 0.14 0.05 0.07 +coopérateur coopérateur nom m s 0.03 0.00 0.03 0.00 +coopératif coopératif adj m s 2.65 0.47 1.53 0.27 +coopératifs coopératif adj m p 2.65 0.47 0.41 0.00 +coopération coopération nom f s 5.21 6.96 5.21 6.96 +coopératisme coopératisme nom m s 0.01 0.00 0.01 0.00 +coopérative coopérative nom f s 1.66 0.74 1.53 0.61 +coopératives coopératif adj f p 2.65 0.47 0.25 0.07 +coopérer coopérer ver 11.91 1.08 6.05 0.54 inf; +coopérera coopérer ver 11.91 1.08 0.14 0.00 ind:fut:3s; +coopérerai coopérer ver 11.91 1.08 0.10 0.00 ind:fut:1s; +coopéreraient coopérer ver 11.91 1.08 0.01 0.14 cnd:pre:3p; +coopérerais coopérer ver 11.91 1.08 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +coopérerez coopérer ver 11.91 1.08 0.04 0.00 ind:fut:2p; +coopéreriez coopérer ver 11.91 1.08 0.02 0.00 cnd:pre:2p; +coopérerons coopérer ver 11.91 1.08 0.07 0.00 ind:fut:1p; +coopéreront coopérer ver 11.91 1.08 0.03 0.00 ind:fut:3p; +coopérez coopérer ver 11.91 1.08 1.26 0.00 imp:pre:2p;ind:pre:2p; +coopériez coopérer ver 11.91 1.08 0.19 0.00 ind:imp:2p; +coopérions coopérer ver 11.91 1.08 0.06 0.00 ind:imp:1p; +coopérons coopérer ver 11.91 1.08 0.07 0.00 ind:pre:1p; +coopéré coopérer ver m s 11.91 1.08 0.96 0.07 par:pas; +coordinateur coordinateur nom m s 0.83 0.07 0.54 0.07 +coordinateurs coordinateur nom m p 0.83 0.07 0.04 0.00 +coordination coordination nom f s 1.36 2.16 1.36 2.16 +coordinatrice coordinateur nom f s 0.83 0.07 0.26 0.00 +coordonna coordonner ver 2.15 2.09 0.01 0.07 ind:pas:3s; +coordonnaient coordonner ver 2.15 2.09 0.02 0.07 ind:imp:3p; +coordonnait coordonner ver 2.15 2.09 0.01 0.00 ind:imp:3s; +coordonnant coordonner ver 2.15 2.09 0.16 0.00 par:pre; +coordonnateur coordonnateur adj m s 0.03 0.00 0.03 0.00 +coordonne coordonner ver 2.15 2.09 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coordonner coordonner ver 2.15 2.09 0.96 1.22 inf; +coordonnera coordonner ver 2.15 2.09 0.07 0.07 ind:fut:3s; +coordonnerait coordonner ver 2.15 2.09 0.01 0.07 cnd:pre:3s; +coordonnez coordonner ver 2.15 2.09 0.19 0.00 imp:pre:2p;ind:pre:2p; +coordonnons coordonner ver 2.15 2.09 0.00 0.07 imp:pre:1p; +coordonné coordonner ver m s 2.15 2.09 0.16 0.14 par:pas; +coordonnée coordonnée nom f s 8.30 1.55 0.24 0.00 +coordonnées coordonnée nom f p 8.30 1.55 8.05 1.55 +coordonnés coordonné nom m p 0.16 0.07 0.16 0.07 +cop cop nom f s 0.63 0.27 0.63 0.27 +copaïba copaïba nom m s 0.00 0.07 0.00 0.07 +copain copain nom m s 146.92 103.18 61.14 34.05 +copains copain nom m p 146.92 103.18 30.47 49.93 +copal copal nom m s 0.01 0.00 0.01 0.00 +copeau copeau nom m s 0.67 5.41 0.10 0.34 +copeaux copeau nom m p 0.67 5.41 0.57 5.07 +copernicienne copernicien adj f s 0.00 0.14 0.00 0.14 +copia copier ver 8.07 8.45 0.01 0.07 ind:pas:3s; +copiable copiable adj m s 0.01 0.00 0.01 0.00 +copiage copiage nom m s 0.01 0.00 0.01 0.00 +copiai copier ver 8.07 8.45 0.00 0.07 ind:pas:1s; +copiaient copier ver 8.07 8.45 0.01 0.27 ind:imp:3p; +copiais copier ver 8.07 8.45 0.30 0.07 ind:imp:1s;ind:imp:2s; +copiait copier ver 8.07 8.45 0.01 0.47 ind:imp:3s; +copiant copier ver 8.07 8.45 0.03 0.41 par:pre; +copie copie nom f s 25.70 14.26 16.88 8.45 +copient copier ver 8.07 8.45 0.20 0.07 ind:pre:3p; +copier copier ver 8.07 8.45 2.96 2.70 inf; +copiera copier ver 8.07 8.45 0.04 0.00 ind:fut:3s; +copierai copier ver 8.07 8.45 0.01 0.00 ind:fut:1s; +copierait copier ver 8.07 8.45 0.03 0.07 cnd:pre:3s; +copieras copier ver 8.07 8.45 0.14 0.34 ind:fut:2s; +copierez copier ver 8.07 8.45 0.00 0.14 ind:fut:2p; +copieront copier ver 8.07 8.45 0.02 0.07 ind:fut:3p; +copies copie nom f p 25.70 14.26 8.82 5.81 +copieur copieur nom m s 0.28 0.20 0.19 0.07 +copieurs copieur nom m p 0.28 0.20 0.04 0.14 +copieuse copieux adj f s 0.59 3.04 0.11 0.88 +copieusement copieusement adv 0.13 2.57 0.13 2.57 +copieuses copieuse nom f p 0.01 0.00 0.01 0.00 +copieux copieux adj m s 0.59 3.04 0.48 1.82 +copiez copier ver 8.07 8.45 0.34 0.00 imp:pre:2p;ind:pre:2p; +copilote copilote nom m s 1.50 0.00 1.50 0.00 +copinage copinage nom m s 0.08 0.27 0.08 0.27 +copinait copiner ver 1.26 0.47 0.01 0.14 ind:imp:3s; +copine copain nom f s 146.92 103.18 55.32 12.43 +copiner copiner ver 1.26 0.47 0.09 0.07 inf; +copines copine nom f p 10.57 0.00 10.57 0.00 +copineur copineur adj m s 0.00 0.20 0.00 0.07 +copineurs copineur adj m p 0.00 0.20 0.00 0.07 +copineuse copineur adj f s 0.00 0.20 0.00 0.07 +copiniez copiner ver 1.26 0.47 0.01 0.00 ind:imp:2p; +copiné copiner ver m s 1.26 0.47 0.02 0.07 par:pas; +copiste copiste nom s 0.40 0.81 0.22 0.74 +copistes copiste nom p 0.40 0.81 0.17 0.07 +copié copier ver m s 8.07 8.45 2.17 1.15 par:pas; +copiée copier ver f s 8.07 8.45 0.29 0.54 par:pas; +copiées copier ver f p 8.07 8.45 0.28 0.20 par:pas; +copiés copier ver m p 8.07 8.45 0.20 0.34 par:pas; +copla copla nom f s 0.00 0.07 0.00 0.07 +coppa coppa nom f s 0.01 0.00 0.01 0.00 +copra copra nom m s 0.04 0.07 0.04 0.07 +câpre câpre nom f s 0.31 0.47 0.11 0.00 +câpres câpre nom f p 0.31 0.47 0.20 0.47 +câpriers câprier nom m p 0.00 0.07 0.00 0.07 +coprins coprin nom m p 0.00 0.07 0.00 0.07 +coproculture coproculture nom f s 0.01 0.00 0.01 0.00 +coproducteur coproducteur nom m s 0.11 0.07 0.09 0.00 +coproducteurs coproducteur nom m p 0.11 0.07 0.02 0.07 +coproduction coproduction nom f s 0.16 0.27 0.16 0.27 +coproduire coproduire ver 0.04 0.07 0.01 0.07 inf; +coproduit coproduire ver m s 0.04 0.07 0.03 0.00 ind:pre:3s;par:pas; +coprologie coprologie nom f s 0.00 0.07 0.00 0.07 +coprologique coprologique adj f s 0.00 0.14 0.00 0.14 +coprophage coprophage nom s 0.00 0.20 0.00 0.20 +coprophagie coprophagie nom f s 0.20 0.00 0.20 0.00 +coprophile coprophile nom s 0.00 0.07 0.00 0.07 +coprophilie coprophilie nom f s 0.02 0.00 0.02 0.00 +copropriétaire copropriétaire nom s 0.29 0.27 0.11 0.07 +copropriétaires copropriétaire nom p 0.29 0.27 0.18 0.20 +copropriété copropriété nom f s 0.56 0.41 0.56 0.41 +coprésidence coprésidence nom f s 0.01 0.00 0.01 0.00 +coprésident coprésider ver 0.01 0.00 0.01 0.00 ind:pre:3p; +cops cops nom m 0.41 0.07 0.41 0.07 +copte copte nom m s 0.02 0.34 0.02 0.14 +coptes copte nom m p 0.02 0.34 0.00 0.20 +copula copuler ver 1.19 0.54 0.01 0.07 ind:pas:3s; +copulait copuler ver 1.19 0.54 0.01 0.07 ind:imp:3s; +copulant copuler ver 1.19 0.54 0.02 0.07 par:pre; +copulation copulation nom f s 0.19 0.47 0.17 0.41 +copulations copulation nom f p 0.19 0.47 0.02 0.07 +copule copule nom f s 0.14 0.00 0.14 0.00 +copulent copuler ver 1.19 0.54 0.25 0.00 ind:pre:3p; +copuler copuler ver 1.19 0.54 0.66 0.34 inf; +copulez copuler ver 1.19 0.54 0.10 0.00 ind:pre:2p; +copulé copuler ver m s 1.19 0.54 0.15 0.00 par:pas; +copyright copyright nom m s 0.41 0.14 0.41 0.14 +coq_à_l_âne coq_à_l_âne nom m 0.00 0.14 0.00 0.14 +coq coq nom m s 12.47 19.12 10.74 15.68 +coqs coq nom m p 12.47 19.12 1.73 3.45 +coquard coquard nom m s 0.34 0.41 0.30 0.34 +coquards coquard nom m p 0.34 0.41 0.03 0.07 +coquart coquart nom m s 0.11 0.14 0.11 0.07 +coquarts coquart nom m p 0.11 0.14 0.00 0.07 +coque coque nom f s 5.00 12.64 4.60 9.93 +coquebin coquebin adj m s 0.00 0.34 0.00 0.34 +coquelet coquelet nom m s 0.10 0.07 0.10 0.07 +coquelicot coquelicot nom m s 1.05 3.24 0.71 0.95 +coquelicots coquelicot nom m p 1.05 3.24 0.34 2.30 +coquelle coquelle nom f s 0.00 0.07 0.00 0.07 +coqueluche coqueluche nom f s 1.01 2.43 0.97 2.43 +coqueluches coqueluche nom f p 1.01 2.43 0.04 0.00 +coquemar coquemar nom m s 0.00 0.07 0.00 0.07 +coquerelle coquerelle nom f s 0.03 0.07 0.03 0.07 +coquerie coquerie nom f s 0.05 0.00 0.05 0.00 +coqueron coqueron nom m s 0.02 0.00 0.02 0.00 +coques coque nom f p 5.00 12.64 0.40 2.70 +coquet coquet adj m s 1.57 6.55 0.77 2.70 +coquetel coquetel nom m s 0.00 0.07 0.00 0.07 +coqueter coqueter ver 0.01 0.00 0.01 0.00 inf; +coquetier coquetier nom m s 0.29 0.61 0.14 0.47 +coquetiers coquetier nom m p 0.29 0.61 0.15 0.14 +coquets coquet adj m p 1.57 6.55 0.02 0.41 +coquette coquet adj f s 1.57 6.55 0.77 2.84 +coquettement coquettement adv 0.00 0.41 0.00 0.41 +coquetterie coquetterie nom f s 0.63 7.03 0.61 6.22 +coquetteries coquetterie nom f p 0.63 7.03 0.01 0.81 +coquettes coquette nom f p 0.71 2.23 0.13 0.27 +coquillage coquillage nom m s 2.66 10.47 0.77 3.51 +coquillages coquillage nom m p 2.66 10.47 1.89 6.96 +coquillard coquillard nom m s 0.02 0.74 0.02 0.68 +coquillards coquillard nom m p 0.02 0.74 0.00 0.07 +coquillart coquillart nom m s 0.00 0.07 0.00 0.07 +coquille coquille nom f s 4.92 13.45 3.19 9.46 +coquilles coquille nom f p 4.92 13.45 1.73 3.99 +coquillettes coquillette nom f p 0.01 0.61 0.01 0.61 +coquilleux coquilleux adj m s 0.00 0.07 0.00 0.07 +coquin coquin nom m s 7.55 4.26 4.96 2.43 +coquine coquin nom f s 7.55 4.26 1.53 0.27 +coquinement coquinement adv 0.00 0.07 0.00 0.07 +coquinerie coquinerie nom f s 0.03 0.20 0.03 0.14 +coquineries coquinerie nom f p 0.03 0.20 0.00 0.07 +coquines coquin adj f p 3.92 3.24 0.17 0.47 +coquinet coquinet adj m s 0.01 0.07 0.01 0.07 +coquins coquin nom m p 7.55 4.26 0.98 1.49 +cor cor nom m s 3.35 3.92 2.57 2.36 +cora cora nom f s 0.00 0.34 0.00 0.27 +corail corail nom m s 1.43 3.51 1.04 2.97 +coralliaires coralliaire nom p 0.00 0.07 0.00 0.07 +corallien corallien adj m s 0.03 0.00 0.01 0.00 +coralliens corallien adj m p 0.03 0.00 0.02 0.00 +coramine coramine nom f s 0.10 0.07 0.10 0.07 +coran coran nom m s 1.96 2.43 1.96 2.43 +coranique coranique adj f s 0.16 0.34 0.16 0.20 +coraniques coranique adj m p 0.16 0.34 0.00 0.14 +coras cora nom f p 0.00 0.34 0.00 0.07 +coraux corail nom m p 1.43 3.51 0.39 0.54 +corbeau corbeau nom m s 5.72 8.85 3.57 3.92 +corbeaux corbeau nom m p 5.72 8.85 2.15 4.93 +corbeille corbeille nom f s 2.71 19.12 2.30 15.68 +corbeilles corbeille nom f p 2.71 19.12 0.41 3.45 +corbillard corbillard nom m s 1.63 4.19 1.58 3.72 +corbillards corbillard nom m p 1.63 4.19 0.04 0.47 +corbin corbin nom m s 0.14 0.47 0.14 0.47 +corbières corbières nom m 0.00 0.14 0.00 0.14 +cordage cordage nom m s 0.27 3.85 0.17 0.61 +cordages cordage nom m p 0.27 3.85 0.11 3.24 +corde corde nom f s 38.57 48.38 28.89 31.76 +cordeau cordeau nom m s 0.20 1.76 0.16 1.62 +cordeaux cordeau nom m p 0.20 1.76 0.01 0.14 +cordelette cordelette nom f s 0.11 3.72 0.10 2.91 +cordelettes cordelette nom f p 0.11 3.72 0.01 0.81 +cordelier cordelier nom m s 0.01 2.77 0.00 0.20 +cordeliers cordelier nom m p 0.01 2.77 0.01 1.22 +cordelière cordelier nom f s 0.01 2.77 0.00 1.01 +cordelières cordelier nom f p 0.01 2.77 0.00 0.34 +cordelle cordeau nom f s 0.20 1.76 0.04 0.00 +corder corder ver 0.31 0.47 0.16 0.00 inf; +corderie corderie nom f s 0.00 0.14 0.00 0.14 +cordes corde nom f p 38.57 48.38 9.68 16.62 +cordial cordial nom m s 0.44 1.96 0.44 1.96 +cordiale cordial adj f s 0.53 4.80 0.30 2.43 +cordialement cordialement adv 0.72 1.82 0.72 1.82 +cordiales cordial adj f p 0.53 4.80 0.05 0.74 +cordialité cordialité nom f s 0.09 3.65 0.08 3.65 +cordialités cordialité nom f p 0.09 3.65 0.01 0.00 +cordiaux cordial adj m p 0.53 4.80 0.11 0.41 +cordiers cordier nom m p 0.00 0.74 0.00 0.74 +cordiforme cordiforme adj f s 0.00 0.27 0.00 0.20 +cordiformes cordiforme adj f p 0.00 0.27 0.00 0.07 +cordillère cordillère nom f s 0.28 0.14 0.28 0.14 +cordite cordite nom f s 0.13 0.07 0.13 0.07 +cordobas cordoba nom m p 0.01 0.00 0.01 0.00 +cordon_bleu cordon_bleu nom m s 0.27 0.14 0.26 0.07 +cordon cordon nom m s 5.21 12.23 4.42 9.19 +cordonner cordonner ver 0.04 0.00 0.01 0.00 inf; +cordonnerie cordonnerie nom f s 0.16 0.20 0.16 0.20 +cordonnet cordonnet nom m s 0.16 0.81 0.14 0.61 +cordonnets cordonnet nom m p 0.16 0.81 0.02 0.20 +cordonnier cordonnier nom m s 1.86 3.92 1.72 2.91 +cordonniers cordonnier nom m p 1.86 3.92 0.14 0.95 +cordonnière cordonnier nom f s 1.86 3.92 0.00 0.07 +cordonnées cordonner ver f p 0.04 0.00 0.02 0.00 par:pas; +cordon_bleu cordon_bleu nom m p 0.27 0.14 0.01 0.07 +cordons cordon nom m p 5.21 12.23 0.79 3.04 +cordouan cordouan adj m s 0.00 0.07 0.00 0.07 +cordé corder ver m s 0.31 0.47 0.00 0.07 par:pas; +cordée cordée nom f s 0.02 0.61 0.02 0.47 +cordées cordée nom f p 0.02 0.61 0.00 0.14 +cordés cordé adj m p 0.01 0.07 0.01 0.00 +coreligionnaires coreligionnaire nom p 0.00 0.95 0.00 0.95 +corelliens corellien adj m p 0.01 0.00 0.01 0.00 +coriace coriace adj s 4.70 2.57 3.68 1.69 +coriaces coriace adj p 4.70 2.57 1.02 0.88 +coriacité coriacité nom f s 0.00 0.07 0.00 0.07 +coriandre coriandre nom f s 0.24 0.27 0.24 0.27 +corindon corindon nom m s 0.00 0.14 0.00 0.14 +corinthe corinthe nom s 0.00 0.07 0.00 0.07 +corinthien corinthien adj m s 0.27 0.54 0.11 0.41 +corinthiennes corinthien adj f p 0.27 0.54 0.01 0.14 +corinthiens corinthien nom m p 0.45 0.07 0.44 0.07 +cormier cormier nom m s 0.08 0.00 0.08 0.00 +cormoran cormoran nom m s 0.26 1.22 0.12 0.54 +cormorans cormoran nom m p 0.26 1.22 0.14 0.68 +corn_flakes corn_flakes nom m p 0.22 0.00 0.22 0.00 +corn_flakes corn_flakes nom f p 0.14 0.07 0.14 0.07 +corna corner ver 0.26 3.38 0.00 0.27 ind:pas:3s; +cornac cornac nom m s 0.03 0.41 0.03 0.41 +cornaient corner ver 0.26 3.38 0.00 0.07 ind:imp:3p; +cornais corner ver 0.26 3.38 0.00 0.07 ind:imp:1s; +cornait corner ver 0.26 3.38 0.00 0.20 ind:imp:3s; +cornaline cornaline nom f s 0.00 0.14 0.00 0.07 +cornalines cornaline nom f p 0.00 0.14 0.00 0.07 +cornant corner ver 0.26 3.38 0.00 0.20 par:pre; +cornaquaient cornaquer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +cornaquée cornaquer ver f s 0.00 0.14 0.00 0.07 par:pas; +cornard cornard nom m s 0.71 0.47 0.71 0.41 +cornards cornard nom m p 0.71 0.47 0.00 0.07 +cornas corner ver 0.26 3.38 0.00 0.07 ind:pas:2s; +corne corne nom f s 7.79 19.46 2.63 9.80 +cornecul cornecul nom s 0.00 0.20 0.00 0.20 +corneille corneille nom f s 0.86 2.36 0.19 0.47 +corneilles corneille nom f p 0.86 2.36 0.67 1.89 +cornemuse cornemuse nom f s 1.38 0.61 0.98 0.34 +cornemuses cornemuse nom f p 1.38 0.61 0.40 0.27 +cornemuseur cornemuseur nom m s 0.01 0.00 0.01 0.00 +cornent corner ver 0.26 3.38 0.02 0.07 ind:pre:3p; +corner corner ver 0.26 3.38 0.17 1.49 inf; +corners corner nom m p 0.30 0.14 0.14 0.07 +cornes corne nom f p 7.79 19.46 5.16 9.66 +cornet cornet nom m s 1.85 8.04 1.46 6.15 +cornets cornet nom m p 1.85 8.04 0.39 1.89 +cornette cornette nom s 0.18 2.70 0.03 1.69 +cornettes cornette nom p 0.18 2.70 0.16 1.01 +corniaud corniaud nom m s 0.95 5.34 0.68 4.12 +corniauds corniaud nom m p 0.95 5.34 0.27 1.22 +corniche corniche nom f s 0.81 7.03 0.76 5.74 +corniches corniche nom f p 0.81 7.03 0.05 1.28 +cornichon cornichon nom m s 4.17 2.30 1.29 0.68 +cornichons cornichon nom m p 4.17 2.30 2.88 1.62 +cornillon cornillon nom m s 0.02 0.20 0.02 0.20 +cornistes corniste nom p 0.00 0.20 0.00 0.20 +cornières cornière nom f p 0.00 0.34 0.00 0.34 +cornouaillais cornouaillais nom m 0.06 0.00 0.06 0.00 +cornouille cornouille nom f s 0.00 0.14 0.00 0.07 +cornouiller cornouiller nom m s 0.08 0.34 0.08 0.14 +cornouillers cornouiller nom m p 0.08 0.34 0.00 0.20 +cornouilles cornouille nom f p 0.00 0.14 0.00 0.07 +cornèrent corner ver 0.26 3.38 0.00 0.07 ind:pas:3p; +corné corner ver m s 0.26 3.38 0.02 0.41 par:pas; +cornu cornu adj m s 0.42 1.62 0.17 0.61 +cornée cornée nom f s 0.85 1.22 0.78 1.08 +cornue cornu adj f s 0.42 1.62 0.10 0.34 +cornéen cornéen adj m s 0.05 0.00 0.03 0.00 +cornéenne cornéen adj f s 0.05 0.00 0.02 0.00 +cornées corné adj f p 0.12 1.42 0.11 0.41 +cornues cornue nom f p 0.01 1.08 0.00 0.61 +cornélien cornélien adj m s 0.02 0.54 0.02 0.27 +cornélienne cornélien adj f s 0.02 0.54 0.00 0.20 +cornéliennes cornélien adj f p 0.02 0.54 0.00 0.07 +cornés corner ver m p 0.26 3.38 0.01 0.07 par:pas; +cornus cornu adj m p 0.42 1.62 0.15 0.54 +corollaire corollaire nom m s 0.05 0.74 0.04 0.68 +corollaires corollaire nom m p 0.05 0.74 0.01 0.07 +corolle corolle nom f s 0.40 3.65 0.26 2.03 +corolles corolle nom f p 0.40 3.65 0.14 1.62 +coron coron nom m s 0.01 1.76 0.01 0.54 +corona corona nom f s 0.50 0.27 0.50 0.27 +coronaire coronaire adj s 0.44 0.14 0.19 0.00 +coronaires coronaire adj f p 0.44 0.14 0.25 0.14 +coronal coronal adj m s 0.07 0.00 0.03 0.00 +coronale coronal adj f s 0.07 0.00 0.04 0.00 +coronales coronal adj f p 0.07 0.00 0.01 0.00 +coronarien coronarien adj m s 0.17 0.00 0.08 0.00 +coronarienne coronarien adj f s 0.17 0.00 0.09 0.00 +coroner coroner nom m s 2.02 0.00 1.98 0.00 +coroners coroner nom m p 2.02 0.00 0.04 0.00 +coronilles coronille nom f p 0.00 0.20 0.00 0.20 +corons coron nom m p 0.01 1.76 0.00 1.22 +corozo corozo nom m s 0.00 0.20 0.00 0.20 +corporal corporal nom m s 0.11 0.07 0.11 0.07 +corporalisés corporaliser ver m p 0.00 0.07 0.00 0.07 par:pas; +corporalité corporalité nom f s 0.01 0.07 0.01 0.07 +corporatif corporatif adj m s 0.18 0.20 0.01 0.00 +corporatifs corporatif adj m p 0.18 0.20 0.13 0.00 +corporation corporation nom f s 0.77 2.77 0.53 2.23 +corporations corporation nom f p 0.77 2.77 0.24 0.54 +corporatisme corporatisme nom m s 0.02 0.07 0.02 0.07 +corporatiste corporatiste adj s 0.04 0.07 0.04 0.07 +corporative corporatif adj f s 0.18 0.20 0.01 0.14 +corporatives corporatif adj f p 0.18 0.20 0.03 0.07 +corporel corporel adj m s 3.64 2.70 1.10 0.34 +corporelle corporel adj f s 3.64 2.70 1.47 1.01 +corporelles corporel adj f p 3.64 2.70 0.26 0.61 +corporels corporel adj m p 3.64 2.70 0.81 0.74 +corps_mort corps_mort nom m s 0.00 0.07 0.00 0.07 +corps corps nom m 250.15 480.34 250.15 480.34 +corpsard corpsard nom m s 0.00 0.07 0.00 0.07 +corpulence corpulence nom f s 0.54 1.76 0.54 1.76 +corpulent corpulent adj m s 0.81 1.76 0.66 1.08 +corpulente corpulent adj f s 0.81 1.76 0.00 0.47 +corpulentes corpulent adj f p 0.81 1.76 0.00 0.07 +corpulents corpulent adj m p 0.81 1.76 0.16 0.14 +corpus_delicti corpus_delicti nom m s 0.03 0.00 0.03 0.00 +corpus corpus nom m 0.38 0.88 0.38 0.88 +corpuscule corpuscule nom f s 0.25 0.47 0.06 0.14 +corpuscules corpuscule nom f p 0.25 0.47 0.18 0.34 +corral corral nom m s 0.90 1.08 0.87 0.95 +corrals corral nom m p 0.90 1.08 0.03 0.14 +correct correct adj m s 19.24 8.18 14.32 5.00 +correcte correct adj f s 19.24 8.18 2.94 1.76 +correctement correctement adv 11.08 5.41 11.08 5.41 +correctes correct adj f p 19.24 8.18 0.58 0.41 +correcteur correcteur nom m s 0.28 0.74 0.22 0.34 +correcteurs correcteur nom m p 0.28 0.74 0.06 0.41 +correctif correctif adj m s 0.16 0.41 0.13 0.27 +correction correction nom f s 8.89 6.08 4.17 4.53 +correctionnaliser correctionnaliser ver 0.00 0.07 0.00 0.07 inf; +correctionnel correctionnel adj m s 0.43 0.54 0.35 0.00 +correctionnelle correctionnel nom f s 0.47 1.82 0.47 1.69 +correctionnelles correctionnel adj f p 0.43 0.54 0.01 0.14 +correctionnels correctionnel adj m p 0.43 0.54 0.01 0.00 +corrections correction nom f p 8.89 6.08 4.72 1.55 +corrective correctif adj f s 0.16 0.41 0.03 0.14 +corrector corrector nom m s 0.00 0.14 0.00 0.14 +correctrice correcteur adj f s 0.07 0.47 0.01 0.00 +correctrices correcteur adj f p 0.07 0.47 0.01 0.07 +corrects correct adj m p 19.24 8.18 1.39 1.01 +corregidor corregidor nom m s 0.15 0.14 0.15 0.14 +correspond correspondre ver 23.62 19.46 13.76 3.78 ind:pre:3s; +correspondît correspondre ver 23.62 19.46 0.00 0.27 sub:imp:3s; +correspondaient correspondre ver 23.62 19.46 0.21 1.69 ind:imp:3p; +correspondais correspondre ver 23.62 19.46 0.18 0.20 ind:imp:1s;ind:imp:2s; +correspondait correspondre ver 23.62 19.46 1.14 6.08 ind:imp:3s; +correspondance correspondance nom f s 5.71 13.51 5.33 11.89 +correspondances correspondance nom f p 5.71 13.51 0.38 1.62 +correspondancier correspondancier nom m s 0.01 0.00 0.01 0.00 +correspondant correspondant nom m s 2.59 5.88 1.87 3.24 +correspondante correspondant adj f s 1.10 3.24 0.24 0.47 +correspondantes correspondant adj f p 1.10 3.24 0.07 0.27 +correspondants correspondant nom m p 2.59 5.88 0.54 2.16 +corresponde correspondre ver 23.62 19.46 0.44 0.20 sub:pre:3s; +correspondent correspondre ver 23.62 19.46 4.06 1.55 ind:pre:3p;sub:pre:3p; +correspondez correspondre ver 23.62 19.46 0.20 0.07 ind:pre:2p; +correspondiez correspondre ver 23.62 19.46 0.02 0.00 ind:imp:2p; +correspondions correspondre ver 23.62 19.46 0.02 0.07 ind:imp:1p; +correspondra correspondre ver 23.62 19.46 0.12 0.07 ind:fut:3s; +correspondrai correspondre ver 23.62 19.46 0.00 0.07 ind:fut:1s; +correspondraient correspondre ver 23.62 19.46 0.05 0.07 cnd:pre:3p; +correspondrait correspondre ver 23.62 19.46 0.27 0.27 cnd:pre:3s; +correspondre correspondre ver 23.62 19.46 1.67 1.76 inf; +correspondrons correspondre ver 23.62 19.46 0.02 0.00 ind:fut:1p; +corresponds correspondre ver 23.62 19.46 0.29 0.14 ind:pre:1s;ind:pre:2s; +correspondu correspondre ver m s 23.62 19.46 0.18 0.47 par:pas; +corrida corrida nom f s 1.88 4.53 1.73 3.65 +corridas corrida nom f p 1.88 4.53 0.14 0.88 +corridor corridor nom m s 1.84 12.50 1.51 9.86 +corridors corridor nom m p 1.84 12.50 0.34 2.64 +corrige corriger ver 12.24 16.08 2.21 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +corrigea corriger ver 12.24 16.08 0.01 1.55 ind:pas:3s; +corrigeai corriger ver 12.24 16.08 0.00 0.20 ind:pas:1s; +corrigeaient corriger ver 12.24 16.08 0.00 0.14 ind:imp:3p; +corrigeais corriger ver 12.24 16.08 0.13 0.20 ind:imp:1s;ind:imp:2s; +corrigeait corriger ver 12.24 16.08 0.04 1.28 ind:imp:3s; +corrigeant corriger ver 12.24 16.08 0.02 1.01 par:pre; +corrigent corriger ver 12.24 16.08 0.06 0.34 ind:pre:3p; +corrigeons corriger ver 12.24 16.08 0.08 0.07 imp:pre:1p;ind:pre:1p; +corriger corriger ver 12.24 16.08 5.87 6.82 inf; +corrigera corriger ver 12.24 16.08 0.25 0.20 ind:fut:3s; +corrigerai corriger ver 12.24 16.08 0.22 0.07 ind:fut:1s; +corrigerais corriger ver 12.24 16.08 0.02 0.07 cnd:pre:1s; +corrigerait corriger ver 12.24 16.08 0.03 0.27 cnd:pre:3s; +corrigeras corriger ver 12.24 16.08 0.02 0.00 ind:fut:2s; +corrigerez corriger ver 12.24 16.08 0.11 0.00 ind:fut:2p; +corrigerons corriger ver 12.24 16.08 0.02 0.00 ind:fut:1p; +corriges corriger ver 12.24 16.08 0.15 0.00 ind:pre:2s; +corrigez corriger ver 12.24 16.08 0.90 0.00 imp:pre:2p;ind:pre:2p; +corrigiez corriger ver 12.24 16.08 0.05 0.00 ind:imp:2p; +corrigions corriger ver 12.24 16.08 0.00 0.07 ind:imp:1p; +corrigé corriger ver m s 12.24 16.08 1.81 1.01 par:pas; +corrigée corriger ver f s 12.24 16.08 0.14 0.54 par:pas; +corrigées corrigé adj f p 0.38 1.08 0.17 0.07 +corrigés corrigé adj m p 0.38 1.08 0.14 0.14 +corrobora corroborer ver 1.35 1.15 0.00 0.07 ind:pas:3s; +corroboraient corroborer ver 1.35 1.15 0.02 0.07 ind:imp:3p; +corroborait corroborer ver 1.35 1.15 0.02 0.27 ind:imp:3s; +corroborant corroborer ver 1.35 1.15 0.01 0.00 par:pre; +corroboration corroboration nom f s 0.03 0.00 0.03 0.00 +corrobore corroborer ver 1.35 1.15 0.15 0.20 ind:pre:3s; +corroborent corroborer ver 1.35 1.15 0.20 0.07 ind:pre:3p; +corroborer corroborer ver 1.35 1.15 0.69 0.41 inf; +corroborera corroborer ver 1.35 1.15 0.08 0.00 ind:fut:3s; +corroborèrent corroborer ver 1.35 1.15 0.00 0.07 ind:pas:3p; +corroboré corroborer ver m s 1.35 1.15 0.16 0.00 par:pas; +corroborées corroborer ver f p 1.35 1.15 0.02 0.00 par:pas; +corrodait corroder ver 0.23 1.22 0.00 0.41 ind:imp:3s; +corrodant corrodant adj m s 0.00 0.14 0.00 0.07 +corrodante corrodant adj f s 0.00 0.14 0.00 0.07 +corrode corroder ver 0.23 1.22 0.01 0.07 ind:pre:3s; +corrodent corroder ver 0.23 1.22 0.00 0.07 ind:pre:3p; +corroder corroder ver 0.23 1.22 0.00 0.07 inf; +corrodé corroder ver m s 0.23 1.22 0.04 0.27 par:pas; +corrodée corroder ver f s 0.23 1.22 0.01 0.20 par:pas; +corrodées corroder ver f p 0.23 1.22 0.13 0.00 par:pas; +corrodés corroder ver m p 0.23 1.22 0.03 0.14 par:pas; +corroierie corroierie nom f s 0.00 0.07 0.00 0.07 +corrompais corrompre ver 5.27 3.58 0.02 0.00 ind:imp:1s; +corrompant corrompre ver 5.27 3.58 0.05 0.07 par:pre; +corrompe corrompre ver 5.27 3.58 0.09 0.07 sub:pre:1s;sub:pre:3s; +corrompent corrompre ver 5.27 3.58 0.05 0.41 ind:pre:3p; +corrompez corrompre ver 5.27 3.58 0.23 0.00 imp:pre:2p;ind:pre:2p; +corrompis corrompre ver 5.27 3.58 0.00 0.07 ind:pas:1s; +corrompra corrompre ver 5.27 3.58 0.02 0.07 ind:fut:3s; +corrompraient corrompre ver 5.27 3.58 0.01 0.00 cnd:pre:3p; +corrompre corrompre ver 5.27 3.58 1.61 1.49 inf; +corromps corrompre ver 5.27 3.58 0.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +corrompt corrompre ver 5.27 3.58 0.53 0.34 ind:pre:3s; +corrompu corrompre ver m s 5.27 3.58 1.56 0.68 par:pas; +corrompue corrompu adj f s 2.79 1.42 0.34 0.41 +corrompues corrompu adj f p 2.79 1.42 0.08 0.07 +corrompus corrompu adj m p 2.79 1.42 0.83 0.34 +corrosif corrosif adj m s 0.33 1.35 0.17 0.61 +corrosifs corrosif adj m p 0.33 1.35 0.10 0.00 +corrosion corrosion nom f s 0.18 0.20 0.18 0.20 +corrosive corrosif adj f s 0.33 1.35 0.04 0.61 +corrosives corrosif adj f p 0.33 1.35 0.01 0.14 +corrélatif corrélatif adj m s 0.05 0.00 0.01 0.00 +corrélation corrélation nom f s 0.17 0.20 0.17 0.20 +corrélative corrélatif adj f s 0.05 0.00 0.04 0.00 +corrélativement corrélativement adv 0.00 0.34 0.00 0.34 +corréler corréler ver 0.01 0.00 0.01 0.00 inf; +corrupteur corrupteur nom m s 0.30 0.41 0.16 0.34 +corrupteurs corrupteur nom m p 0.30 0.41 0.14 0.07 +corruptible corruptible adj s 0.13 0.07 0.09 0.00 +corruptibles corruptible adj p 0.13 0.07 0.04 0.07 +corruption corruption nom f s 6.59 3.58 6.54 3.45 +corruptions corruption nom f p 6.59 3.58 0.04 0.14 +corruptrice corrupteur adj f s 0.13 0.27 0.02 0.00 +corruptrices corrupteur adj f p 0.13 0.27 0.00 0.14 +corréziennes corrézien adj f p 0.00 0.07 0.00 0.07 +cors cor nom m p 3.35 3.92 0.78 1.55 +corsa corser ver 1.81 1.69 0.14 0.07 ind:pas:3s; +corsage corsage nom m s 1.44 15.14 1.28 12.23 +corsages corsage nom m p 1.44 15.14 0.16 2.91 +corsaire corsaire nom s 0.78 3.58 0.58 1.96 +corsaires corsaire nom p 0.78 3.58 0.20 1.62 +corsait corser ver 1.81 1.69 0.02 0.27 ind:imp:3s; +corsant corser ver 1.81 1.69 0.00 0.07 par:pre; +corse corse adj s 3.37 3.51 2.17 2.64 +corselet corselet nom m s 0.00 0.88 0.00 0.54 +corselets corselet nom m p 0.00 0.88 0.00 0.34 +corsent corser ver 1.81 1.69 0.18 0.00 ind:pre:3p; +corser corser ver 1.81 1.69 0.29 0.74 inf; +corserait corser ver 1.81 1.69 0.00 0.07 cnd:pre:3s; +corses corse adj p 3.37 3.51 1.21 0.88 +corset corset nom m s 2.04 2.91 1.51 2.30 +corseter corseter ver 0.03 1.42 0.01 0.00 inf; +corsetière corsetier nom f s 0.00 0.07 0.00 0.07 +corsets corset nom m p 2.04 2.91 0.53 0.61 +corseté corseter ver m s 0.03 1.42 0.01 0.34 par:pas; +corsetée corseter ver f s 0.03 1.42 0.00 0.74 par:pas; +corsetées corseter ver f p 0.03 1.42 0.00 0.20 par:pas; +corsetés corseter ver m p 0.03 1.42 0.00 0.14 par:pas; +corso corso nom m s 0.48 1.08 0.48 1.01 +corsos corso nom m p 0.48 1.08 0.00 0.07 +corsé corser ver m s 1.81 1.69 0.33 0.14 par:pas; +corsée corser ver f s 1.81 1.69 0.14 0.20 par:pas; +corsées corsé adj f p 0.49 1.28 0.00 0.07 +corsés corsé adj m p 0.49 1.28 0.23 0.07 +cortes corte nom f p 0.01 0.00 0.01 0.00 +cortex cortex nom m 8.68 0.14 8.68 0.14 +cortical cortical adj m s 0.45 0.07 0.08 0.07 +corticale cortical adj f s 0.45 0.07 0.16 0.00 +corticales cortical adj f p 0.45 0.07 0.20 0.00 +corticaux cortical adj m p 0.45 0.07 0.01 0.00 +cortine cortine nom f s 0.03 0.00 0.03 0.00 +cortisol cortisol nom m s 0.03 0.00 0.03 0.00 +cortisone cortisone nom f s 1.28 0.14 1.28 0.14 +corton corton nom m s 0.03 0.27 0.03 0.27 +cortège cortège nom m s 2.91 20.34 2.77 18.11 +cortèges cortège nom m p 2.91 20.34 0.13 2.23 +cortès cortès nom f p 0.02 0.07 0.02 0.07 +cortégeant cortéger ver 0.00 0.07 0.00 0.07 par:pre; +coré coré nom f s 0.40 0.14 0.40 0.14 +coréen coréen adj m s 2.90 0.07 1.67 0.07 +coréenne coréen adj f s 2.90 0.07 0.70 0.00 +coréennes coréenne adj f p 0.05 0.00 0.05 0.00 +coréennes coréenne nom f p 0.10 0.00 0.05 0.00 +coréens coréen nom m p 1.69 0.27 1.09 0.27 +coruscant coruscant adj m s 0.13 0.27 0.13 0.07 +coruscante coruscant adj f s 0.13 0.27 0.00 0.07 +coruscants coruscant adj m p 0.13 0.27 0.00 0.14 +coruscation coruscation nom f s 0.00 0.07 0.00 0.07 +corvette corvette nom f s 1.32 1.55 1.28 0.81 +corvettes corvette nom f p 1.32 1.55 0.04 0.74 +corvéable corvéable adj s 0.00 0.14 0.00 0.14 +corvée corvée nom f s 6.32 16.76 4.05 10.74 +corvées corvée nom f p 6.32 16.76 2.27 6.01 +corybantes corybante nom m p 0.00 0.07 0.00 0.07 +coryphène coryphène nom m s 0.01 0.00 0.01 0.00 +coryphée coryphée nom m s 0.00 0.07 0.00 0.07 +coryste coryste nom m s 0.00 0.07 0.00 0.07 +coryza coryza nom m s 0.00 0.68 0.00 0.68 +cosaque cosaque nom s 1.33 2.09 0.44 1.22 +cosaques cosaque nom p 1.33 2.09 0.89 0.88 +coseigneurs coseigneur nom m p 0.00 0.07 0.00 0.07 +cosigner cosigner ver 0.32 0.00 0.10 0.00 inf; +cosigné cosigner ver m s 0.32 0.00 0.21 0.00 par:pas; +cosinus cosinus nom m 0.28 0.20 0.28 0.20 +cosmique cosmique adj s 2.51 3.58 2.18 3.31 +cosmiquement cosmiquement adv 0.02 0.00 0.02 0.00 +cosmiques cosmique adj p 2.51 3.58 0.33 0.27 +cosmo cosmo adv 1.07 0.07 1.07 0.07 +cosmodromes cosmodrome nom m p 0.01 0.00 0.01 0.00 +cosmogonie cosmogonie nom f s 0.00 0.27 0.00 0.20 +cosmogonies cosmogonie nom f p 0.00 0.27 0.00 0.07 +cosmogonique cosmogonique adj m s 0.00 0.07 0.00 0.07 +cosmographie cosmographie nom f s 0.00 0.14 0.00 0.14 +cosmologie cosmologie nom f s 0.09 0.07 0.09 0.07 +cosmologique cosmologique adj f s 0.05 0.07 0.03 0.00 +cosmologiques cosmologique adj m p 0.05 0.07 0.02 0.07 +cosmologue cosmologue nom s 0.00 0.07 0.00 0.07 +cosmonaute cosmonaute nom s 1.29 0.88 0.83 0.54 +cosmonautes cosmonaute nom p 1.29 0.88 0.46 0.34 +cosmopolite cosmopolite adj s 0.35 2.50 0.24 1.96 +cosmopolites cosmopolite adj p 0.35 2.50 0.11 0.54 +cosmopolitisme cosmopolitisme nom m s 0.00 0.47 0.00 0.47 +cosmos cosmos nom m 2.34 1.42 2.34 1.42 +cosméticienne cosméticien nom f s 0.02 0.07 0.02 0.07 +cosmétique cosmétique adj s 0.47 0.34 0.23 0.20 +cosmétiques cosmétique nom p 0.69 0.81 0.52 0.54 +cosmétiqué cosmétiquer ver m s 0.00 0.34 0.00 0.07 par:pas; +cosmétiquée cosmétiquer ver f s 0.00 0.34 0.00 0.14 par:pas; +cosmétiquées cosmétiquer ver f p 0.00 0.34 0.00 0.07 par:pas; +cosmétiqués cosmétiquer ver m p 0.00 0.34 0.00 0.07 par:pas; +cosmétologie cosmétologie nom f s 0.07 0.00 0.07 0.00 +cosmétologue cosmétologue nom s 0.02 0.00 0.02 0.00 +cossard cossard adj m s 0.04 0.27 0.04 0.14 +cossarde cossard nom f s 0.01 0.47 0.00 0.07 +cossards cossard nom m p 0.01 0.47 0.01 0.27 +cosse cosse nom f s 0.62 0.68 0.34 0.20 +cossent cosser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +cosses cosse nom f p 0.62 0.68 0.28 0.47 +cossu cossu adj m s 0.08 4.53 0.04 1.96 +cossue cossu adj f s 0.08 4.53 0.02 1.08 +cossues cossu adj f p 0.08 4.53 0.01 0.61 +cossus cossu adj m p 0.08 4.53 0.00 0.88 +costal costal adj m s 0.13 0.00 0.07 0.00 +costale costal adj f s 0.13 0.00 0.04 0.00 +costar costar nom m s 0.03 0.00 0.03 0.00 +costard costard nom m s 3.81 6.82 3.19 5.34 +costards costard nom m p 3.81 6.82 0.61 1.49 +costaricain costaricain adj m s 0.01 0.00 0.01 0.00 +costaud costaud adj m s 6.98 6.42 5.84 5.27 +costaude costaud adj f s 6.98 6.42 0.15 0.27 +costaudes costaud adj f p 6.98 6.42 0.01 0.00 +costauds costaud adj m p 6.98 6.42 0.98 0.88 +costaux costal adj m p 0.13 0.00 0.01 0.00 +costume costume nom m s 51.42 55.88 38.95 44.19 +costumer costumer ver 1.03 1.76 0.05 0.14 inf; +costumes costume nom m p 51.42 55.88 12.47 11.69 +costumier costumier nom m s 0.42 0.47 0.12 0.27 +costumiers costumier nom m p 0.42 0.47 0.07 0.14 +costumière costumier nom f s 0.42 0.47 0.23 0.07 +costumé costumé adj m s 1.26 1.08 0.68 0.54 +costumée costumé adj f s 1.26 1.08 0.27 0.14 +costumées costumer ver f p 1.03 1.76 0.00 0.07 par:pas; +costumés costumé adj m p 1.26 1.08 0.31 0.41 +cosy_corner cosy_corner nom m s 0.00 0.54 0.00 0.47 +cosy_corner cosy_corner nom m p 0.00 0.54 0.00 0.07 +cosy cosy nom m s 0.12 0.95 0.12 0.88 +cosys cosy nom m p 0.12 0.95 0.00 0.07 +cot_cot_codec cot_cot_codec ono 0.14 0.07 0.14 0.07 +cota coter ver 9.13 1.89 0.21 0.00 ind:pas:3s; +cotait coter ver 9.13 1.89 0.01 0.00 ind:imp:3s; +cotation cotation nom f s 0.31 0.27 0.14 0.14 +cotations cotation nom f p 0.31 0.27 0.17 0.14 +cote cote nom f s 8.47 5.47 7.50 5.07 +coteau coteau nom m s 0.41 7.70 0.19 5.20 +coteaux coteau nom m p 0.41 7.70 0.22 2.50 +cotent coter ver 9.13 1.89 0.02 0.07 ind:pre:3p; +coter coter ver 9.13 1.89 0.02 0.20 inf; +coterie coterie nom f s 0.14 1.55 0.00 1.15 +coteries coterie nom f p 0.14 1.55 0.14 0.41 +cotes cote nom f p 8.47 5.47 0.97 0.41 +cothurne cothurne nom m s 0.00 0.41 0.00 0.07 +cothurnes cothurne nom m p 0.00 0.41 0.00 0.34 +coties cotir ver f p 0.00 0.07 0.00 0.07 par:pas; +cotillon cotillon nom m s 0.32 0.81 0.19 0.20 +cotillons cotillon nom m p 0.32 0.81 0.13 0.61 +cotisa cotiser ver 0.88 0.88 0.00 0.07 ind:pas:3s; +cotisaient cotiser ver 0.88 0.88 0.00 0.14 ind:imp:3p; +cotisais cotiser ver 0.88 0.88 0.00 0.07 ind:imp:1s; +cotisant cotiser ver 0.88 0.88 0.00 0.14 par:pre; +cotisants cotisant nom m p 0.01 0.14 0.01 0.07 +cotisation cotisation nom f s 0.96 1.15 0.35 0.74 +cotisations cotisation nom f p 0.96 1.15 0.60 0.41 +cotise cotiser ver 0.88 0.88 0.21 0.07 ind:pre:1s;ind:pre:3s; +cotisent cotiser ver 0.88 0.88 0.03 0.00 ind:pre:3p; +cotiser cotiser ver 0.88 0.88 0.14 0.20 inf; +cotises cotiser ver 0.88 0.88 0.14 0.00 ind:pre:2s; +cotisèrent cotiser ver 0.88 0.88 0.00 0.07 ind:pas:3p; +cotisé cotiser ver m s 0.88 0.88 0.15 0.14 par:pas; +cotisées cotiser ver f p 0.88 0.88 0.01 0.00 par:pas; +cotisés cotiser ver m p 0.88 0.88 0.20 0.00 par:pas; +coton_tige coton_tige nom m s 0.43 0.07 0.20 0.00 +coton coton nom m s 10.09 26.22 10.06 24.66 +cotonnade cotonnade nom f s 0.00 3.18 0.00 2.23 +cotonnades cotonnade nom f p 0.00 3.18 0.00 0.95 +cotonnait cotonner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +cotonnant cotonner ver 0.00 0.14 0.00 0.07 par:pre; +cotonnerie cotonnerie nom f s 0.01 0.00 0.01 0.00 +cotonneuse cotonneux adj f s 0.07 3.45 0.01 0.95 +cotonneuses cotonneux adj f p 0.07 3.45 0.00 0.74 +cotonneux cotonneux adj m 0.07 3.45 0.06 1.76 +cotonnier cotonnier adj m s 0.00 0.07 0.00 0.07 +cotonnier cotonnier nom m s 0.00 0.07 0.00 0.07 +cotonnière cotonnière nom f s 0.01 0.00 0.01 0.00 +coton_tige coton_tige nom m p 0.43 0.07 0.23 0.07 +cotons coton nom m p 10.09 26.22 0.03 1.55 +cotonéasters cotonéaster nom m p 0.00 0.07 0.00 0.07 +cotât coter ver 9.13 1.89 0.00 0.07 sub:imp:3s; +cotre cotre nom m s 0.03 1.96 0.03 1.76 +cotres cotre nom m p 0.03 1.96 0.00 0.20 +cotrets cotret nom m p 0.00 0.14 0.00 0.14 +cotriade cotriade nom f s 0.00 0.07 0.00 0.07 +cottage cottage nom m s 1.54 0.68 1.49 0.47 +cottages cottage nom m p 1.54 0.68 0.05 0.20 +cotte cotte nom f s 0.32 4.05 0.30 2.23 +cottes cotte nom f p 0.32 4.05 0.02 1.82 +coté coter ver m s 9.13 1.89 7.66 0.54 par:pas; +cotée coter ver f s 9.13 1.89 0.08 0.20 par:pas; +cotées coter ver f p 9.13 1.89 0.13 0.27 par:pas; +coturne coturne nom m s 0.00 0.07 0.00 0.07 +cotés coté adj m p 7.56 1.28 0.95 0.47 +cotylédons cotylédon nom m p 0.00 0.07 0.00 0.07 +cou_de_pied cou_de_pied nom m s 0.01 0.27 0.01 0.27 +cou cou nom m s 44.09 115.34 43.71 112.70 +couac couac nom m s 0.14 1.01 0.11 0.81 +couacs couac nom m p 0.14 1.01 0.03 0.20 +couaille couaille nom f s 0.00 0.14 0.00 0.14 +couaquait couaquer ver 0.00 0.34 0.00 0.07 ind:imp:3s; +couaquer couaquer ver 0.00 0.34 0.00 0.27 inf; +couard couard nom m s 0.25 0.47 0.20 0.34 +couarde couard adj f s 0.09 0.61 0.01 0.00 +couardise couardise nom f s 0.10 0.54 0.10 0.54 +couards couard nom m p 0.25 0.47 0.04 0.14 +coucha coucher ver 181.96 196.22 0.41 7.57 ind:pas:3s; +couchage couchage nom m s 1.86 1.28 1.86 1.28 +couchai coucher ver 181.96 196.22 0.00 1.35 ind:pas:1s; +couchaient coucher ver 181.96 196.22 0.13 2.57 ind:imp:3p; +couchailler couchailler ver 0.00 0.07 0.00 0.07 inf; +couchais coucher ver 181.96 196.22 1.89 2.57 ind:imp:1s;ind:imp:2s; +couchait coucher ver 181.96 196.22 2.23 11.89 ind:imp:3s; +couchant couchant adj m s 1.10 4.93 1.09 4.80 +couchants couchant adj m p 1.10 4.93 0.01 0.14 +couche_culotte couche_culotte nom f s 0.22 0.27 0.11 0.07 +couche coucher ver 181.96 196.22 29.50 18.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +couchent coucher ver 181.96 196.22 2.48 3.38 ind:pre:3p; +coucher coucher ver 181.96 196.22 82.63 63.24 inf;; +couchera coucher ver 181.96 196.22 0.86 0.81 ind:fut:3s; +coucherai coucher ver 181.96 196.22 1.36 1.28 ind:fut:1s; +coucheraient coucher ver 181.96 196.22 0.10 0.20 cnd:pre:3p; +coucherais coucher ver 181.96 196.22 0.56 0.68 cnd:pre:1s;cnd:pre:2s; +coucherait coucher ver 181.96 196.22 0.43 1.42 cnd:pre:3s; +coucheras coucher ver 181.96 196.22 0.96 0.88 ind:fut:2s; +coucherez coucher ver 181.96 196.22 0.54 0.54 ind:fut:2p; +coucherie coucherie nom f s 0.44 1.15 0.17 0.54 +coucheries coucherie nom f p 0.44 1.15 0.27 0.61 +coucheriez coucher ver 181.96 196.22 0.04 0.07 cnd:pre:2p; +coucherions coucher ver 181.96 196.22 0.00 0.07 cnd:pre:1p; +coucherons coucher ver 181.96 196.22 0.17 0.61 ind:fut:1p; +coucheront coucher ver 181.96 196.22 0.07 0.14 ind:fut:3p; +couchers coucher nom m p 7.80 8.92 0.73 0.81 +couche_culotte couche_culotte nom f p 0.22 0.27 0.11 0.20 +couches couche nom f p 19.95 32.91 9.06 10.14 +couchette couchette nom f s 1.99 6.28 1.50 5.00 +couchettes couchette nom f p 1.99 6.28 0.50 1.28 +coucheur coucheur nom m s 0.06 0.47 0.05 0.34 +coucheurs coucheur nom m p 0.06 0.47 0.00 0.14 +coucheuse coucheur nom f s 0.06 0.47 0.01 0.00 +couchez coucher ver 181.96 196.22 6.79 1.49 imp:pre:2p;ind:pre:2p; +couchiez coucher ver 181.96 196.22 0.48 0.20 ind:imp:2p; +couchions coucher ver 181.96 196.22 0.08 0.47 ind:imp:1p; +couchoir couchoir nom m s 0.00 0.07 0.00 0.07 +couchâmes coucher ver 181.96 196.22 0.00 0.14 ind:pas:1p; +couchons coucher ver 181.96 196.22 0.53 0.41 imp:pre:1p;ind:pre:1p; +couchât coucher ver 181.96 196.22 0.00 0.41 sub:imp:3s; +couchèrent coucher ver 181.96 196.22 0.03 2.30 ind:pas:3p; +couché coucher ver m s 181.96 196.22 35.71 40.74 par:pas; +couchée coucher ver f s 181.96 196.22 5.92 15.61 par:pas; +couchées coucher ver f p 181.96 196.22 0.31 2.43 par:pas; +couchés coucher ver m p 181.96 196.22 1.95 10.74 par:pas; +couci_couça couci_couça adv 0.60 0.20 0.60 0.20 +coucou coucou nom m s 13.16 5.07 12.71 3.92 +coucous coucou nom m p 13.16 5.07 0.45 1.15 +coud coudre ver 8.88 20.74 0.63 0.68 ind:pre:3s; +coude coude nom m s 10.19 54.19 5.36 33.24 +coudent couder ver 0.02 0.41 0.00 0.07 ind:pre:3p; +coudes coude nom m p 10.19 54.19 4.84 20.95 +coudoie coudoyer ver 0.00 0.88 0.00 0.07 ind:pre:3s; +coudoient coudoyer ver 0.00 0.88 0.00 0.14 ind:pre:3p; +coudoyai coudoyer ver 0.00 0.88 0.00 0.07 ind:pas:1s; +coudoyaient coudoyer ver 0.00 0.88 0.00 0.20 ind:imp:3p; +coudoyais coudoyer ver 0.00 0.88 0.00 0.07 ind:imp:1s; +coudoyant coudoyer ver 0.00 0.88 0.00 0.07 par:pre; +coudoyer coudoyer ver 0.00 0.88 0.00 0.14 inf; +coudoyons coudoyer ver 0.00 0.88 0.00 0.07 ind:pre:1p; +coudoyé coudoyer ver m s 0.00 0.88 0.00 0.07 par:pas; +coudra coudre ver 8.88 20.74 0.10 0.07 ind:fut:3s; +coudrai coudre ver 8.88 20.74 0.02 0.07 ind:fut:1s; +coudrais coudre ver 8.88 20.74 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +coudrait coudre ver 8.88 20.74 0.00 0.07 cnd:pre:3s; +coudras coudre ver 8.88 20.74 0.00 0.07 ind:fut:2s; +coudre coudre ver 8.88 20.74 4.83 8.65 inf; +coudreuse coudreuse nom f s 0.00 0.07 0.00 0.07 +coudrier coudrier nom m s 0.04 10.41 0.04 10.07 +coudriers coudrier nom m p 0.04 10.41 0.00 0.34 +couds coudre ver 8.88 20.74 0.34 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +coudé coudé adj m s 0.06 0.61 0.03 0.41 +coudée coudée nom f s 0.07 1.55 0.01 0.20 +coudées coudée nom f p 0.07 1.55 0.06 1.35 +couenne couenne nom f s 0.53 1.82 0.40 1.49 +couennes couenne nom f p 0.53 1.82 0.14 0.34 +couette couette nom f s 1.58 2.03 1.34 1.28 +couettes couette nom f p 1.58 2.03 0.23 0.74 +couffin couffin nom m s 1.48 1.96 1.25 1.01 +couffins couffin nom m p 1.48 1.96 0.22 0.95 +couguar couguar nom m s 0.72 1.01 0.65 0.41 +couguars couguar nom m p 0.72 1.01 0.08 0.61 +couic couic nom_sup m s 0.64 1.22 0.64 1.22 +couillard couillard nom m s 0.00 0.07 0.00 0.07 +couille couille nom f s 38.80 11.42 3.56 1.55 +couilles couille nom f p 38.80 11.42 35.24 9.86 +couillettes couillette nom f p 0.00 0.27 0.00 0.27 +couillon couillon nom m s 5.75 2.36 4.04 1.76 +couillonnade couillonnade nom f s 0.82 0.41 0.42 0.14 +couillonnades couillonnade nom f p 0.82 0.41 0.40 0.27 +couillonne couillonner ver 0.53 0.68 0.02 0.07 imp:pre:2s;ind:pre:3s; +couillonnent couillonner ver 0.53 0.68 0.00 0.07 ind:pre:3p; +couillonner couillonner ver 0.53 0.68 0.33 0.34 inf; +couillonné couillonner ver m s 0.53 0.68 0.02 0.20 par:pas; +couillonnée couillonner ver f s 0.53 0.68 0.01 0.00 par:pas; +couillonnés couillonner ver m p 0.53 0.68 0.14 0.00 par:pas; +couillons couillon nom m p 5.75 2.36 1.71 0.61 +couillu couillu adj m s 0.51 0.00 0.23 0.00 +couillus couillu adj m p 0.51 0.00 0.28 0.00 +couina couiner ver 1.13 3.85 0.00 0.20 ind:pas:3s; +couinaient couiner ver 1.13 3.85 0.00 0.34 ind:imp:3p; +couinais couiner ver 1.13 3.85 0.01 0.07 ind:imp:1s;ind:imp:2s; +couinait couiner ver 1.13 3.85 0.00 0.54 ind:imp:3s; +couinant couiner ver 1.13 3.85 0.02 0.68 par:pre; +couine couiner ver 1.13 3.85 0.43 0.41 imp:pre:2s;ind:pre:3s; +couinement couinement nom m s 0.09 1.76 0.06 0.68 +couinements couinement nom m p 0.09 1.76 0.02 1.08 +couinent couiner ver 1.13 3.85 0.03 0.20 ind:pre:3p; +couiner couiner ver 1.13 3.85 0.45 1.01 inf; +couinerais couiner ver 1.13 3.85 0.01 0.00 cnd:pre:1s; +couineras couiner ver 1.13 3.85 0.01 0.00 ind:fut:2s; +couineront couiner ver 1.13 3.85 0.01 0.00 ind:fut:3p; +couines couiner ver 1.13 3.85 0.02 0.00 ind:pre:2s; +couinez couiner ver 1.13 3.85 0.00 0.14 ind:pre:2p; +couiné couiner ver m s 1.13 3.85 0.15 0.27 par:pas; +coula couler ver 47.55 121.15 0.18 5.61 ind:pas:3s; +coulage coulage nom m s 0.17 0.47 0.17 0.47 +coulai couler ver 47.55 121.15 0.00 0.20 ind:pas:1s; +coulaient couler ver 47.55 121.15 0.80 7.03 ind:imp:3p; +coulais couler ver 47.55 121.15 0.16 0.27 ind:imp:1s;ind:imp:2s; +coulait couler ver 47.55 121.15 2.96 26.62 ind:imp:3s; +coulant coulant adj m s 1.01 2.91 0.71 2.64 +coulante coulant adj f s 1.01 2.91 0.20 0.00 +coulants coulant adj m p 1.01 2.91 0.10 0.27 +coule couler ver 47.55 121.15 14.70 20.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +coulemelle coulemelle nom f s 0.00 0.07 0.00 0.07 +coulent couler ver 47.55 121.15 2.29 5.00 ind:pre:3p; +couler couler ver 47.55 121.15 14.91 37.70 inf; +coulera couler ver 47.55 121.15 2.15 0.54 ind:fut:3s; +coulerai couler ver 47.55 121.15 0.14 0.20 ind:fut:1s; +couleraient couler ver 47.55 121.15 0.14 0.07 cnd:pre:3p; +coulerais couler ver 47.55 121.15 0.01 0.00 cnd:pre:2s; +coulerait couler ver 47.55 121.15 0.19 0.47 cnd:pre:3s; +couleras couler ver 47.55 121.15 0.05 0.00 ind:fut:2s; +coulerez couler ver 47.55 121.15 0.07 0.07 ind:fut:2p; +couleront couler ver 47.55 121.15 0.05 0.00 ind:fut:3p; +coules couler ver 47.55 121.15 0.68 0.34 ind:pre:2s; +couleur couleur nom f s 82.25 198.72 57.46 118.65 +couleurs couleur nom f p 82.25 198.72 24.79 80.07 +couleuvre couleuvre nom f s 0.89 2.91 0.71 1.55 +couleuvres couleuvre nom f p 0.89 2.91 0.18 1.35 +couleuvrine couleuvrine nom f s 0.23 0.20 0.14 0.00 +couleuvrines couleuvrine nom f p 0.23 0.20 0.10 0.20 +coulez couler ver 47.55 121.15 0.75 0.00 imp:pre:2p;ind:pre:2p; +couliez couler ver 47.55 121.15 0.02 0.07 ind:imp:2p; +coulions couler ver 47.55 121.15 0.02 0.07 ind:imp:1p; +coulis coulis nom m 0.58 0.68 0.58 0.68 +coulissa coulisser ver 0.14 2.36 0.00 0.14 ind:pas:3s; +coulissaient coulisser ver 0.14 2.36 0.00 0.07 ind:imp:3p; +coulissait coulisser ver 0.14 2.36 0.00 0.54 ind:imp:3s; +coulissant coulisser ver 0.14 2.36 0.00 0.54 par:pre; +coulissante coulissant adj f s 0.17 1.62 0.16 0.41 +coulissantes coulissant adj f p 0.17 1.62 0.01 0.68 +coulissants coulissant adj m p 0.17 1.62 0.01 0.14 +coulisse coulisse nom f s 4.50 9.05 1.05 2.30 +coulissements coulissement nom m p 0.00 0.07 0.00 0.07 +coulissent coulisser ver 0.14 2.36 0.02 0.14 ind:pre:3p; +coulisser coulisser ver 0.14 2.36 0.04 0.61 inf; +coulisses coulisse nom f p 4.50 9.05 3.44 6.76 +coulissier coulissier nom m s 0.00 0.14 0.00 0.14 +coulissèrent coulisser ver 0.14 2.36 0.00 0.07 ind:pas:3p; +coulissé coulisser ver m s 0.14 2.36 0.00 0.07 par:pas; +coulissée coulisser ver f s 0.14 2.36 0.00 0.07 par:pas; +couloir_symbole couloir_symbole nom m s 0.00 0.07 0.00 0.07 +couloir couloir nom m s 29.17 104.53 24.77 80.47 +couloirs couloir nom m p 29.17 104.53 4.41 24.05 +coulombs coulomb nom m p 0.00 0.07 0.00 0.07 +coulons couler ver 47.55 121.15 0.26 0.14 imp:pre:1p;ind:pre:1p; +coulât couler ver 47.55 121.15 0.00 0.20 sub:imp:3s; +coulpe coulpe nom f s 0.04 0.14 0.04 0.14 +coulèrent couler ver 47.55 121.15 0.13 1.08 ind:pas:3p; +coulé couler ver m s 47.55 121.15 6.46 8.24 par:pas; +coulée coulée nom f s 0.62 9.80 0.53 7.43 +coulées coulée nom f p 0.62 9.80 0.09 2.36 +coulure coulure nom f s 0.01 0.41 0.01 0.07 +coulures coulure nom f p 0.01 0.41 0.00 0.34 +coulés couler ver m p 47.55 121.15 0.12 0.88 par:pas; +coumarine coumarine nom f s 0.01 0.00 0.01 0.00 +countries countries nom p 0.01 0.07 0.01 0.07 +country country adj 1.73 0.07 1.73 0.07 +coup_de_poing coup_de_poing nom m s 0.13 0.00 0.13 0.00 +coup coup nom m s 471.82 837.70 389.49 641.55 +coupa couper ver 155.82 140.88 0.69 17.97 ind:pas:3s; +coupable coupable adj s 50.84 23.58 46.45 20.20 +coupablement coupablement adv 0.00 0.07 0.00 0.07 +coupables coupable adj p 50.84 23.58 4.39 3.38 +coupage coupage nom m s 0.02 0.20 0.02 0.14 +coupages coupage nom m p 0.02 0.20 0.00 0.07 +coupai couper ver 155.82 140.88 0.01 0.41 ind:pas:1s; +coupaient couper ver 155.82 140.88 0.33 2.43 ind:imp:3p; +coupailler coupailler ver 0.01 0.00 0.01 0.00 inf; +coupais couper ver 155.82 140.88 0.53 0.41 ind:imp:1s;ind:imp:2s; +coupait couper ver 155.82 140.88 1.64 10.61 ind:imp:3s; +coupant couper ver 155.82 140.88 0.97 4.73 par:pre; +coupante coupant adj f s 0.51 6.69 0.21 2.23 +coupantes coupant adj f p 0.51 6.69 0.10 1.35 +coupants coupant adj m p 0.51 6.69 0.04 0.74 +coupe_chou coupe_chou nom m s 0.05 0.34 0.05 0.34 +coupe_choux coupe_choux nom m 0.14 0.27 0.14 0.27 +coupe_cigare coupe_cigare nom m s 0.02 0.20 0.02 0.07 +coupe_cigare coupe_cigare nom m p 0.02 0.20 0.00 0.14 +coupe_circuit coupe_circuit nom m s 0.13 0.34 0.11 0.27 +coupe_circuit coupe_circuit nom m p 0.13 0.34 0.02 0.07 +coupe_coupe coupe_coupe nom m 0.10 0.68 0.10 0.68 +coupe_faim coupe_faim nom m s 0.09 0.07 0.08 0.07 +coupe_faim coupe_faim nom m p 0.09 0.07 0.01 0.00 +coupe_feu coupe_feu nom m s 0.12 0.14 0.12 0.14 +coupe_file coupe_file nom m s 0.03 0.00 0.03 0.00 +coupe_gorge coupe_gorge nom m 0.28 0.61 0.28 0.61 +coupe_jarret coupe_jarret nom m s 0.03 0.00 0.02 0.00 +coupe_jarret coupe_jarret nom m p 0.03 0.00 0.01 0.00 +coupe_ongle coupe_ongle nom m s 0.05 0.00 0.05 0.00 +coupe_ongles coupe_ongles nom m 0.26 0.14 0.26 0.14 +coupe_papier coupe_papier nom m 0.36 0.95 0.36 0.95 +coupe_pâte coupe_pâte nom m s 0.00 0.07 0.00 0.07 +coupe_racine coupe_racine nom m p 0.00 0.07 0.00 0.07 +coupe_vent coupe_vent nom m s 0.31 0.34 0.31 0.34 +coupe couper ver 155.82 140.88 32.66 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +coupelle coupelle nom f s 0.04 0.61 0.04 0.47 +coupelles coupelle nom f p 0.04 0.61 0.00 0.14 +coupent couper ver 155.82 140.88 2.19 3.99 ind:pre:3p; +couper couper ver 155.82 140.88 41.45 31.76 inf;;inf;;inf;; +coupera couper ver 155.82 140.88 1.13 0.61 ind:fut:3s; +couperai couper ver 155.82 140.88 1.67 0.20 ind:fut:1s; +couperaient couper ver 155.82 140.88 0.07 0.27 cnd:pre:3p; +couperais couper ver 155.82 140.88 1.00 0.41 cnd:pre:1s;cnd:pre:2s; +couperait couper ver 155.82 140.88 0.68 1.22 cnd:pre:3s; +couperas couper ver 155.82 140.88 0.31 0.27 ind:fut:2s; +couperet couperet nom m s 0.42 2.09 0.42 2.03 +couperets couperet nom m p 0.42 2.09 0.00 0.07 +couperez couper ver 155.82 140.88 0.11 0.20 ind:fut:2p; +couperons couper ver 155.82 140.88 0.17 0.20 ind:fut:1p; +couperont couper ver 155.82 140.88 0.20 0.20 ind:fut:3p; +couperose couperose nom f s 0.01 0.88 0.01 0.88 +couperosé couperoser ver m s 0.02 0.14 0.02 0.14 par:pas; +couperosée couperosé adj f s 0.00 1.28 0.00 0.20 +couperosées couperosé adj f p 0.00 1.28 0.00 0.20 +coupes couper ver 155.82 140.88 3.87 0.41 ind:pre:2s; +coupeur coupeur nom m s 0.55 0.41 0.30 0.27 +coupeurs coupeur nom m p 0.55 0.41 0.17 0.14 +coupeuse coupeur nom f s 0.55 0.41 0.08 0.00 +coupez couper ver 155.82 140.88 19.53 1.82 imp:pre:2p;ind:pre:2p; +coupiez couper ver 155.82 140.88 0.22 0.07 ind:imp:2p; +coupions couper ver 155.82 140.88 0.22 0.07 ind:imp:1p; +couplage couplage nom m s 0.11 0.00 0.07 0.00 +couplages couplage nom m p 0.11 0.00 0.04 0.00 +couplant coupler ver 0.42 0.95 0.02 0.00 par:pre; +couple couple nom s 49.62 63.99 41.13 47.23 +coupler coupler ver 0.42 0.95 0.01 0.14 inf; +couples couple nom m p 49.62 63.99 8.49 16.76 +couplet couplet nom m s 1.31 5.34 1.06 3.51 +couplets couplet nom m p 1.31 5.34 0.25 1.82 +coupleur coupleur nom m s 0.18 0.00 0.14 0.00 +coupleurs coupleur nom m p 0.18 0.00 0.04 0.00 +couplé coupler ver m s 0.42 0.95 0.07 0.20 par:pas; +couplée coupler ver f s 0.42 0.95 0.04 0.00 par:pas; +couplées coupler ver f p 0.42 0.95 0.02 0.14 par:pas; +couplés coupler ver m p 0.42 0.95 0.03 0.27 par:pas; +coupole coupole nom f s 1.16 8.92 1.13 5.27 +coupoles coupole nom f p 1.16 8.92 0.04 3.65 +coupon_cadeau coupon_cadeau nom m s 0.01 0.00 0.01 0.00 +coupon coupon nom m s 1.69 2.09 0.51 0.88 +coupons couper ver 155.82 140.88 1.86 0.20 imp:pre:1p;ind:pre:1p; +coups_de_poing coups_de_poing nom m p 0.00 0.14 0.00 0.14 +coups coup nom m p 471.82 837.70 82.33 196.15 +coupèrent couper ver 155.82 140.88 0.10 0.68 ind:pas:3p; +coupé couper ver m s 155.82 140.88 30.34 25.41 par:pas;par:pas;par:pas; +coupée couper ver f s 155.82 140.88 8.14 7.91 par:pas; +coupées couper ver f p 155.82 140.88 1.90 3.92 par:pas; +coupure coupure nom f s 10.48 11.08 6.29 5.81 +coupures coupure nom f p 10.48 11.08 4.19 5.27 +coupés couper ver m p 155.82 140.88 3.85 6.76 par:pas; +couques couque nom f p 0.00 0.07 0.00 0.07 +coéquipier coéquipier nom m s 4.20 0.47 2.73 0.07 +coéquipiers coéquipier nom m p 4.20 0.47 0.71 0.34 +coéquipière coéquipier nom f s 4.20 0.47 0.69 0.07 +coéquipières coéquipière nom f p 0.01 0.00 0.01 0.00 +cour_jardin cour_jardin nom f s 0.00 0.07 0.00 0.07 +cour cour nom f s 95.80 176.96 71.80 150.14 +courûmes courir ver 146.50 263.38 0.01 0.20 ind:pas:1p; +courût courir ver 146.50 263.38 0.00 0.27 sub:imp:3s; +courûtes courir ver 146.50 263.38 0.01 0.00 ind:pas:2p; +courage courage nom m s 70.73 70.34 70.70 69.80 +courages courage nom m p 70.73 70.34 0.03 0.54 +courageuse courageux adj f s 28.68 11.96 7.87 2.97 +courageusement courageusement adv 0.61 3.45 0.61 3.45 +courageuses courageux adj f p 28.68 11.96 0.59 0.61 +courageux courageux adj m 28.68 11.96 20.22 8.38 +couraient courir ver 146.50 263.38 1.54 17.91 ind:imp:3p; +courailler courailler ver 0.02 0.00 0.02 0.00 inf; +courais courir ver 146.50 263.38 2.86 5.00 ind:imp:1s;ind:imp:2s; +courait courir ver 146.50 263.38 3.38 32.43 ind:imp:3s; +couramment couramment adv 1.38 3.11 1.38 3.11 +courant courant nom m s 111.58 79.73 108.69 67.36 +courante courant adj f s 10.13 20.14 1.83 8.51 +courantes courant adj f p 10.13 20.14 0.53 2.23 +courants courant nom m p 111.58 79.73 2.89 12.36 +courba courber ver 2.84 19.66 0.00 2.09 ind:pas:3s; +courbaient courber ver 2.84 19.66 0.00 0.81 ind:imp:3p; +courbait courber ver 2.84 19.66 0.00 1.35 ind:imp:3s; +courbant courber ver 2.84 19.66 0.16 2.36 par:pre; +courbatu courbatu adj m s 0.02 0.54 0.01 0.27 +courbatue courbatu adj f s 0.02 0.54 0.01 0.14 +courbature courbature nom f s 0.39 1.62 0.01 0.54 +courbatures courbature nom f p 0.39 1.62 0.38 1.08 +courbaturé courbaturé adj m s 0.33 0.07 0.32 0.07 +courbaturée courbaturé adj f s 0.33 0.07 0.01 0.00 +courbatus courbatu adj m p 0.02 0.54 0.00 0.14 +courbe courbe nom f s 3.00 18.11 1.72 11.82 +courbent courber ver 2.84 19.66 0.11 0.07 ind:pre:3p; +courber courber ver 2.84 19.66 0.61 2.50 inf; +courberait courber ver 2.84 19.66 0.00 0.07 cnd:pre:3s; +courbes courbe nom f p 3.00 18.11 1.28 6.28 +courbette courbette nom f s 0.69 2.70 0.32 0.74 +courbettes courbette nom f p 0.69 2.70 0.38 1.96 +courbez courber ver 2.84 19.66 0.07 0.14 imp:pre:2p;ind:pre:2p; +courbons courber ver 2.84 19.66 0.01 0.07 imp:pre:1p;ind:pre:1p; +courbé courbé adj m s 0.66 6.08 0.59 2.97 +courbée courber ver f s 2.84 19.66 0.21 1.69 par:pas; +courbées courber ver f p 2.84 19.66 0.01 0.41 par:pas; +courbure courbure nom f s 0.33 2.50 0.21 2.16 +courbures courbure nom f p 0.33 2.50 0.12 0.34 +courbés courber ver m p 2.84 19.66 0.55 1.82 par:pas; +coure courir ver 146.50 263.38 0.72 1.22 sub:pre:1s;sub:pre:3s; +courent courir ver 146.50 263.38 8.83 12.84 ind:pre:3p; +coures courir ver 146.50 263.38 0.29 0.00 sub:pre:2s; +courette courette nom f s 0.00 2.09 0.00 1.69 +courettes courette nom f p 0.00 2.09 0.00 0.41 +coureur coureur nom m s 5.48 8.31 3.71 4.80 +coureurs coureur nom m p 5.48 8.31 1.42 2.36 +coureuse coureur nom f s 5.48 8.31 0.36 1.08 +coureuses coureuse nom f p 0.04 0.00 0.04 0.00 +courez courir ver 146.50 263.38 11.99 1.28 imp:pre:2p;ind:pre:2p; +courge courge nom f s 2.46 0.88 1.38 0.61 +courges courge nom f p 2.46 0.88 1.08 0.27 +courgette courgette nom f s 1.24 0.41 0.25 0.00 +courgettes courgette nom f p 1.24 0.41 1.00 0.41 +couriez courir ver 146.50 263.38 0.14 0.20 ind:imp:2p;sub:pre:2p; +courions courir ver 146.50 263.38 0.09 0.68 ind:imp:1p; +courir courir ver 146.50 263.38 47.19 71.82 inf; +courlis courlis nom m 0.03 0.47 0.03 0.47 +couronna couronner ver 5.56 14.86 0.14 0.27 ind:pas:3s; +couronnaient couronner ver 5.56 14.86 0.01 0.47 ind:imp:3p; +couronnait couronner ver 5.56 14.86 0.01 0.88 ind:imp:3s; +couronnant couronner ver 5.56 14.86 0.01 1.42 par:pre; +couronne couronne nom f s 23.15 20.61 15.16 12.50 +couronnement couronnement nom m s 2.40 2.09 2.38 2.03 +couronnements couronnement nom m p 2.40 2.09 0.01 0.07 +couronnent couronner ver 5.56 14.86 0.14 0.34 ind:pre:3p; +couronner couronner ver 5.56 14.86 1.76 2.23 inf; +couronnera couronner ver 5.56 14.86 0.01 0.07 ind:fut:3s; +couronnerai couronner ver 5.56 14.86 0.02 0.00 ind:fut:1s; +couronnerons couronner ver 5.56 14.86 0.02 0.00 ind:fut:1p; +couronnes couronne nom f p 23.15 20.61 7.99 8.11 +couronné couronner ver m s 5.56 14.86 1.45 3.65 par:pas; +couronnée couronner ver f s 5.56 14.86 1.05 2.57 par:pas; +couronnées couronné adj f p 0.63 1.49 0.27 0.34 +couronnés couronner ver m p 5.56 14.86 0.14 1.28 par:pas; +courons courir ver 146.50 263.38 2.19 1.76 imp:pre:1p;ind:pre:1p; +courra courir ver 146.50 263.38 0.90 0.41 ind:fut:3s; +courrai courir ver 146.50 263.38 0.22 0.07 ind:fut:1s; +courraient courir ver 146.50 263.38 0.07 0.14 cnd:pre:3p; +courrais courir ver 146.50 263.38 0.86 0.14 cnd:pre:1s;cnd:pre:2s; +courrait courir ver 146.50 263.38 0.37 0.61 cnd:pre:3s; +courras courir ver 146.50 263.38 0.35 0.00 ind:fut:2s; +courre courre ver 0.75 2.91 0.75 2.91 inf; +courrez courir ver 146.50 263.38 1.05 0.00 ind:fut:2p; +courriel courriel nom m s 0.24 0.00 0.24 0.00 +courrier courrier nom m s 23.98 24.46 23.40 23.04 +courriers courrier nom m p 23.98 24.46 0.59 1.42 +courriez courir ver 146.50 263.38 0.09 0.00 cnd:pre:2p; +courrions courir ver 146.50 263.38 0.02 0.00 cnd:pre:1p; +courriériste courriériste nom s 0.00 0.27 0.00 0.27 +courroie courroie nom f s 1.05 5.61 0.56 3.11 +courroies courroie nom f p 1.05 5.61 0.50 2.50 +courrons courir ver 146.50 263.38 0.19 0.20 ind:fut:1p; +courront courir ver 146.50 263.38 0.17 0.34 ind:fut:3p; +courrouce courroucer ver 0.63 2.50 0.02 0.14 imp:pre:2s;ind:pre:3s; +courroucer courroucer ver 0.63 2.50 0.02 0.00 inf; +courroucé courroucer ver m s 0.63 2.50 0.57 1.49 par:pas; +courroucée courroucer ver f s 0.63 2.50 0.02 0.47 par:pas; +courroucées courroucer ver f p 0.63 2.50 0.00 0.07 par:pas; +courroucés courroucer ver m p 0.63 2.50 0.00 0.20 par:pas; +courrouçaient courroucer ver 0.63 2.50 0.00 0.07 ind:imp:3p; +courrouçait courroucer ver 0.63 2.50 0.00 0.07 ind:imp:3s; +courroux courroux nom m 3.55 2.09 3.55 2.09 +cours cours nom m 119.05 149.93 119.05 149.93 +coursaient courser ver 1.30 2.50 0.02 0.07 ind:imp:3p; +coursais courser ver 1.30 2.50 0.01 0.07 ind:imp:1s;ind:imp:2s; +coursait courser ver 1.30 2.50 0.02 0.07 ind:imp:3s; +coursant courser ver 1.30 2.50 0.00 0.14 par:pre; +course_poursuite course_poursuite nom f s 0.34 0.00 0.34 0.00 +course course nom f s 72.48 81.22 40.45 51.22 +coursent courser ver 1.30 2.50 0.03 0.20 ind:pre:3p; +courser courser ver 1.30 2.50 0.14 0.41 inf; +courserais courser ver 1.30 2.50 0.01 0.00 cnd:pre:2s; +courses course nom f p 72.48 81.22 32.04 30.00 +coursier coursier nom m s 4.81 2.64 4.06 1.96 +coursiers coursier nom m p 4.81 2.64 0.73 0.61 +coursière coursier nom f s 4.81 2.64 0.02 0.07 +coursive coursive nom f s 0.34 3.38 0.26 2.36 +coursives coursive nom f p 0.34 3.38 0.09 1.01 +coursé courser ver m s 1.30 2.50 0.09 0.34 par:pas; +coursée courser ver f s 1.30 2.50 0.03 0.07 par:pas; +coursés courser ver m p 1.30 2.50 0.27 0.07 par:pas; +court_bouillon court_bouillon nom m s 0.29 0.68 0.29 0.68 +court_circuit court_circuit nom m s 1.53 1.76 1.47 1.55 +court_circuiter court_circuiter ver 0.83 0.54 0.00 0.07 ind:imp:3s; +court_circuiter court_circuiter ver 0.83 0.54 0.00 0.07 par:pre; +court_circuiter court_circuiter ver 0.83 0.54 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +court_circuiter court_circuiter ver 0.83 0.54 0.29 0.20 inf; +court_circuit court_circuit ver 0.01 0.00 0.01 0.00 ind:pre:3s; +court_circuits court_circuits nom m s 0.02 0.00 0.02 0.00 +court_circuiter court_circuiter ver m s 0.83 0.54 0.28 0.07 par:pas; +court_circuiter court_circuiter ver f s 0.83 0.54 0.02 0.07 par:pas; +court_circuiter court_circuiter ver f p 0.83 0.54 0.10 0.00 par:pas; +court_courrier court_courrier nom m s 0.01 0.00 0.01 0.00 +court_jus court_jus nom m 0.03 0.00 0.03 0.00 +court_métrage court_métrage nom m s 0.17 0.00 0.17 0.00 +court_vêtu court_vêtu adj f s 0.01 0.14 0.01 0.00 +court_vêtu court_vêtu adj f p 0.01 0.14 0.00 0.14 +court courir ver 146.50 263.38 19.25 22.30 ind:pre:3s; +courtage courtage nom m s 0.36 0.27 0.36 0.07 +courtages courtage nom m p 0.36 0.27 0.00 0.20 +courtaud courtaud adj m s 0.22 1.15 0.21 0.61 +courtaude courtaud adj f s 0.22 1.15 0.01 0.27 +courtaudes courtaud adj f p 0.22 1.15 0.00 0.20 +courtauds courtaud adj m p 0.22 1.15 0.00 0.07 +courte court adj f s 41.15 108.99 14.07 32.77 +courtelinesque courtelinesque adj m s 0.00 0.14 0.00 0.07 +courtelinesques courtelinesque adj p 0.00 0.14 0.00 0.07 +courtement courtement adv 0.00 0.20 0.00 0.20 +courtepointe courtepointe nom f s 0.01 1.35 0.01 1.28 +courtepointes courtepointe nom f p 0.01 1.35 0.00 0.07 +courtes court adj f p 41.15 108.99 3.63 20.14 +courtier courtier nom m s 2.96 1.76 2.21 0.74 +courtiers courtier nom m p 2.96 1.76 0.73 0.61 +courtilière courtilière nom f s 0.00 0.14 0.00 0.07 +courtilières courtilière nom f p 0.00 0.14 0.00 0.07 +courtils courtil nom m p 0.00 0.07 0.00 0.07 +courtine courtine nom f s 0.00 2.43 0.00 0.34 +courtines courtine nom f p 0.00 2.43 0.00 2.09 +courtisa courtiser ver 2.79 2.50 0.00 0.07 ind:pas:3s; +courtisaient courtiser ver 2.79 2.50 0.03 0.07 ind:imp:3p; +courtisais courtiser ver 2.79 2.50 0.04 0.07 ind:imp:1s;ind:imp:2s; +courtisait courtiser ver 2.79 2.50 0.03 0.34 ind:imp:3s; +courtisan courtisan adj m s 0.30 0.47 0.28 0.34 +courtisane courtisan nom f s 2.58 6.82 0.66 2.09 +courtisanerie courtisanerie nom f s 0.00 0.41 0.00 0.41 +courtisanes courtisan nom f p 2.58 6.82 0.47 1.62 +courtisans courtisan nom m p 2.58 6.82 1.25 1.89 +courtisant courtiser ver 2.79 2.50 0.02 0.07 par:pre; +courtise courtiser ver 2.79 2.50 0.52 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +courtisent courtiser ver 2.79 2.50 0.14 0.07 ind:pre:3p; +courtiser courtiser ver 2.79 2.50 1.01 0.34 inf; +courtiserai courtiser ver 2.79 2.50 0.01 0.00 ind:fut:1s; +courtiseras courtiser ver 2.79 2.50 0.01 0.00 ind:fut:2s; +courtisez courtiser ver 2.79 2.50 0.05 0.00 imp:pre:2p;ind:pre:2p; +courtisiez courtiser ver 2.79 2.50 0.12 0.00 ind:imp:2p; +courtisé courtiser ver m s 2.79 2.50 0.45 0.20 par:pas; +courtisée courtiser ver f s 2.79 2.50 0.33 0.88 par:pas; +courtisées courtiser ver f p 2.79 2.50 0.01 0.07 par:pas; +courtière courtier nom f s 2.96 1.76 0.02 0.34 +courtières courtier nom f p 2.96 1.76 0.00 0.07 +courtois courtois adj m 1.97 9.73 1.58 7.03 +courtoise courtois adj f s 1.97 9.73 0.28 2.23 +courtoisement courtoisement adv 0.27 1.96 0.27 1.96 +courtoises courtois adj f p 1.97 9.73 0.11 0.47 +courtoisie courtoisie nom f s 4.59 8.18 4.42 8.04 +courtoisies courtoisie nom f p 4.59 8.18 0.16 0.14 +court_circuit court_circuit nom m p 1.53 1.76 0.07 0.20 +courts court adj m p 41.15 108.99 6.03 16.22 +couru courir ver m s 146.50 263.38 12.76 16.42 par:pas; +courue courir ver f s 146.50 263.38 0.11 0.14 par:pas; +courues courir ver f p 146.50 263.38 0.00 0.14 par:pas; +coururent courir ver 146.50 263.38 0.49 3.78 ind:pas:3p; +courus courir ver m p 146.50 263.38 0.23 4.73 ind:pas:1s;par:pas; +courussent courir ver 146.50 263.38 0.00 0.07 sub:imp:3p; +courut courir ver 146.50 263.38 1.65 22.64 ind:pas:3s; +cous_de_pied cous_de_pied nom m p 0.00 0.07 0.00 0.07 +cous cou nom m p 44.09 115.34 0.38 2.64 +cousaient coudre ver 8.88 20.74 0.01 0.20 ind:imp:3p; +cousait coudre ver 8.88 20.74 0.16 2.36 ind:imp:3s; +cousant coudre ver 8.88 20.74 0.03 0.88 par:pre; +couscous couscous nom m 1.05 3.24 1.05 3.24 +couscoussier couscoussier nom m s 0.15 0.34 0.15 0.27 +couscoussiers couscoussier nom m p 0.15 0.34 0.00 0.07 +couse coudre ver 8.88 20.74 0.06 0.07 sub:pre:1s;sub:pre:3s; +cousent coudre ver 8.88 20.74 0.07 0.14 ind:pre:3p; +cousette cousette nom f s 0.01 0.68 0.00 0.14 +cousettes cousette nom f p 0.01 0.68 0.01 0.54 +couseuse couseur nom f s 0.01 0.00 0.01 0.00 +cousez coudre ver 8.88 20.74 0.17 0.00 imp:pre:2p;ind:pre:2p; +cousiez coudre ver 8.88 20.74 0.00 0.07 ind:imp:2p; +cousin cousin nom m s 73.87 89.93 37.31 39.05 +cousinage cousinage nom m s 0.00 0.88 0.00 0.47 +cousinages cousinage nom m p 0.00 0.88 0.00 0.41 +cousinant cousiner ver 0.00 0.14 0.00 0.14 par:pre; +cousine cousin nom f s 73.87 89.93 23.72 25.14 +cousines cousin nom f p 73.87 89.93 2.18 5.14 +cousins cousin nom m p 73.87 89.93 10.66 20.61 +cousirent coudre ver 8.88 20.74 0.00 0.07 ind:pas:3p; +cousissent coudre ver 8.88 20.74 0.00 0.07 sub:imp:3p; +cousit coudre ver 8.88 20.74 0.00 0.14 ind:pas:3s; +coussin coussin nom m s 4.41 22.70 2.44 8.45 +coussinet coussinet nom m s 0.07 0.88 0.04 0.47 +coussinets coussinet nom m p 0.07 0.88 0.02 0.41 +coussins coussin nom m p 4.41 22.70 1.98 14.26 +cousu coudre ver m s 8.88 20.74 1.18 2.97 par:pas; +cousue cousu adj f s 1.86 2.50 1.50 0.88 +cousues coudre ver f p 8.88 20.74 0.25 0.95 par:pas; +cousus coudre ver m p 8.88 20.74 0.43 1.69 par:pas; +couteau_scie couteau_scie nom m s 0.01 0.07 0.01 0.07 +couteau couteau nom m s 58.15 52.64 51.08 44.26 +couteaux couteau nom m p 58.15 52.64 7.08 8.38 +coutelas coutelas nom m 0.02 1.22 0.02 1.22 +coutelier coutelier nom m s 0.02 0.20 0.02 0.20 +coutellerie coutellerie nom f s 0.01 0.20 0.01 0.14 +coutelleries coutellerie nom f p 0.01 0.20 0.00 0.07 +coutil coutil nom m s 0.00 1.28 0.00 1.28 +coutume coutume nom f s 10.46 25.14 7.27 17.03 +coutumes coutume nom f p 10.46 25.14 3.19 8.11 +coutumier coutumier adj m s 0.85 6.15 0.63 2.36 +coutumiers coutumier adj m p 0.85 6.15 0.00 0.88 +coutumière coutumier adj f s 0.85 6.15 0.20 2.57 +coutumièrement coutumièrement adv 0.00 0.07 0.00 0.07 +coutumières coutumier adj f p 0.85 6.15 0.02 0.34 +couturaient couturer ver 0.10 1.28 0.00 0.14 ind:imp:3p; +couture couture nom f s 5.52 10.54 4.31 8.45 +coutures couture nom f p 5.52 10.54 1.21 2.09 +couturier couturier nom m s 3.15 10.27 0.56 2.43 +couturiers couturier nom m p 3.15 10.27 0.15 1.28 +couturière couturier nom f s 3.15 10.27 2.45 5.81 +couturières couturière nom f p 0.36 0.00 0.36 0.00 +couturé couturer ver m s 0.10 1.28 0.00 0.47 par:pas; +couturée couturer ver f s 0.10 1.28 0.10 0.41 par:pas; +couturées couturer ver f p 0.10 1.28 0.00 0.14 par:pas; +couturés couturer ver m p 0.10 1.28 0.00 0.14 par:pas; +couvade couvade nom f s 0.01 0.00 0.01 0.00 +couvaient couver ver 3.59 12.03 0.14 0.54 ind:imp:3p; +couvais couver ver 3.59 12.03 0.01 0.14 ind:imp:1s; +couvaison couvaison nom f s 0.00 0.20 0.00 0.14 +couvaisons couvaison nom f p 0.00 0.20 0.00 0.07 +couvait couver ver 3.59 12.03 0.25 3.58 ind:imp:3s; +couvant couver ver 3.59 12.03 0.02 0.54 par:pre; +couve couver ver 3.59 12.03 1.54 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +couvent couvent nom m s 16.83 26.15 16.09 22.50 +couventine couventine nom f s 0.00 0.41 0.00 0.20 +couventines couventine nom f p 0.00 0.41 0.00 0.20 +couvents couvent nom m p 16.83 26.15 0.74 3.65 +couver couver ver 3.59 12.03 0.75 1.62 inf; +couvercle couvercle nom m s 2.71 22.09 2.56 20.61 +couvercles couvercle nom m p 2.71 22.09 0.16 1.49 +couveront couver ver 3.59 12.03 0.01 0.07 ind:fut:3p; +couvert couvrir ver m s 88.29 133.51 14.62 26.89 par:pas; +couverte couvrir ver f s 88.29 133.51 4.77 18.31 par:pas; +couvertes couvrir ver f p 88.29 133.51 1.77 10.27 par:pas; +couverts couvrir ver m p 88.29 133.51 2.92 11.82 par:pas; +couverture couverture nom f s 34.39 62.03 26.50 41.01 +couvertures couverture nom f p 34.39 62.03 7.89 21.01 +couves couver ver 3.59 12.03 0.23 0.27 ind:pre:2s; +couvet couvet nom m s 0.00 0.14 0.00 0.14 +couveuse couveuse nom f s 0.51 0.95 0.51 0.74 +couveuses couveuse nom f p 0.51 0.95 0.00 0.20 +couvez couver ver 3.59 12.03 0.09 0.07 imp:pre:2p;ind:pre:2p; +couvis couvi adj m p 0.00 0.07 0.00 0.07 +couvrît couvrir ver 88.29 133.51 0.00 0.07 sub:imp:3s; +couvraient couvrir ver 88.29 133.51 0.45 4.26 ind:imp:3p; +couvrais couvrir ver 88.29 133.51 0.76 0.54 ind:imp:1s;ind:imp:2s; +couvrait couvrir ver 88.29 133.51 1.35 15.27 ind:imp:3s; +couvrant couvrir ver 88.29 133.51 0.85 4.26 par:pre; +couvrante couvrant adj f s 0.18 2.64 0.01 1.49 +couvrantes couvrant adj f p 0.18 2.64 0.00 0.88 +couvre_chef couvre_chef nom m s 0.58 1.55 0.42 1.35 +couvre_chef couvre_chef nom m p 0.58 1.55 0.16 0.20 +couvre_feu couvre_feu nom m s 3.63 3.11 3.63 3.11 +couvre_feux couvre_feux nom m p 0.04 0.00 0.04 0.00 +couvre_lit couvre_lit nom m s 0.33 2.77 0.30 2.70 +couvre_lit couvre_lit nom m p 0.33 2.77 0.03 0.07 +couvre_pied couvre_pied nom m s 0.01 0.47 0.01 0.47 +couvre_pieds couvre_pieds nom m 0.01 0.47 0.01 0.47 +couvre couvrir ver 88.29 133.51 23.58 11.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +couvrent couvrir ver 88.29 133.51 1.96 3.65 ind:pre:3p; +couvres couvrir ver 88.29 133.51 2.54 0.27 ind:pre:2s;sub:pre:2s; +couvreur couvreur nom m s 0.41 1.01 0.37 0.74 +couvreurs couvreur nom m p 0.41 1.01 0.04 0.27 +couvrez couvrir ver 88.29 133.51 8.41 0.47 imp:pre:2p;ind:pre:2p; +couvriez couvrir ver 88.29 133.51 0.09 0.00 ind:imp:2p; +couvrir couvrir ver 88.29 133.51 19.57 16.82 inf; +couvrira couvrir ver 88.29 133.51 1.72 0.41 ind:fut:3s; +couvrirai couvrir ver 88.29 133.51 1.03 0.07 ind:fut:1s; +couvriraient couvrir ver 88.29 133.51 0.06 0.41 cnd:pre:3p; +couvrirais couvrir ver 88.29 133.51 0.29 0.00 cnd:pre:1s;cnd:pre:2s; +couvrirait couvrir ver 88.29 133.51 0.15 0.68 cnd:pre:3s; +couvriras couvrir ver 88.29 133.51 0.07 0.20 ind:fut:2s; +couvrirent couvrir ver 88.29 133.51 0.00 1.15 ind:pas:3p; +couvrirez couvrir ver 88.29 133.51 0.27 0.14 ind:fut:2p; +couvrirons couvrir ver 88.29 133.51 0.10 0.00 ind:fut:1p; +couvriront couvrir ver 88.29 133.51 0.27 0.07 ind:fut:3p; +couvris couvrir ver 88.29 133.51 0.00 0.61 ind:pas:1s; +couvrit couvrir ver 88.29 133.51 0.20 5.61 ind:pas:3s; +couvrons couvrir ver 88.29 133.51 0.48 0.07 imp:pre:1p;ind:pre:1p; +couvé couver ver m s 3.59 12.03 0.17 1.82 par:pas; +couvée couvée nom f s 0.20 1.42 0.19 1.15 +couvées couvée nom f p 0.20 1.42 0.01 0.27 +couvés couver ver m p 3.59 12.03 0.01 0.68 par:pas; +covalent covalent adj m s 0.03 0.00 0.01 0.00 +covalente covalent adj f s 0.03 0.00 0.01 0.00 +covenant covenant nom m s 0.05 0.00 0.05 0.00 +cover_girl cover_girl nom f s 0.14 0.47 0.14 0.20 +cover_girl cover_girl nom f p 0.14 0.47 0.00 0.27 +covoiturage covoiturage nom m s 0.07 0.00 0.07 0.00 +cow_boy cow_boy nom m s 0.01 5.27 0.00 3.11 +cow_boy cow_boy nom m p 0.01 5.27 0.01 2.16 +coxalgie coxalgie nom f s 0.00 0.07 0.00 0.07 +coxalgique coxalgique adj s 0.00 0.07 0.00 0.07 +coyote coyote nom m s 4.01 0.47 2.50 0.34 +coyotes coyote nom m p 4.01 0.47 1.52 0.14 +crû croître ver m s 4.79 10.34 0.93 0.41 par:pas; +crûment crûment adv 0.54 1.89 0.54 1.89 +crûmes croire ver_sup 1711.99 947.23 0.00 0.54 ind:pas:1p; +crût croire ver_sup 1711.99 947.23 0.05 0.68 sub:imp:3s; +crabe crabe nom m s 8.14 12.36 4.90 7.30 +crabes crabe nom m p 8.14 12.36 3.24 5.07 +crabillon crabillon nom m s 0.00 0.20 0.00 0.07 +crabillons crabillon nom m p 0.00 0.20 0.00 0.14 +crabs crabs nom m p 0.41 0.00 0.41 0.00 +crac crac nom_sup m s 2.85 6.01 2.85 6.01 +cracha cracher ver 27.93 45.81 0.16 5.20 ind:pas:3s; +crachai cracher ver 27.93 45.81 0.00 0.20 ind:pas:1s; +crachaient cracher ver 27.93 45.81 0.03 1.76 ind:imp:3p; +crachais cracher ver 27.93 45.81 0.13 0.68 ind:imp:1s;ind:imp:2s; +crachait cracher ver 27.93 45.81 0.87 4.66 ind:imp:3s; +crachant cracher ver 27.93 45.81 0.36 4.32 par:pre; +crachat crachat nom m s 1.34 3.72 1.08 1.62 +crachats crachat nom m p 1.34 3.72 0.26 2.09 +crache cracher ver 27.93 45.81 10.28 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crachement crachement nom m s 0.00 0.68 0.00 0.54 +crachements crachement nom m p 0.00 0.68 0.00 0.14 +crachent cracher ver 27.93 45.81 0.93 1.42 ind:pre:3p; +cracher cracher ver 27.93 45.81 6.86 10.34 inf; +crachera cracher ver 27.93 45.81 0.30 0.14 ind:fut:3s; +cracherai cracher ver 27.93 45.81 0.21 0.34 ind:fut:1s; +cracherais cracher ver 27.93 45.81 0.64 0.14 cnd:pre:1s;cnd:pre:2s; +cracherait cracher ver 27.93 45.81 0.18 0.20 cnd:pre:3s; +cracheriez cracher ver 27.93 45.81 0.01 0.00 cnd:pre:2p; +cracheront cracher ver 27.93 45.81 0.04 0.14 ind:fut:3p; +craches cracher ver 27.93 45.81 1.41 0.41 ind:pre:2s;sub:pre:2s; +cracheur cracheur nom m s 0.32 1.08 0.28 0.88 +cracheurs cracheur nom m p 0.32 1.08 0.01 0.14 +cracheuse cracheur nom f s 0.32 1.08 0.03 0.07 +cracheuses cracheuse nom f p 0.01 0.00 0.01 0.00 +crachez cracher ver 27.93 45.81 0.91 0.14 imp:pre:2p;ind:pre:2p; +crachin crachin nom m s 0.03 2.03 0.03 1.89 +crachine crachiner ver 0.00 0.20 0.00 0.07 ind:pre:3s; +crachiner crachiner ver 0.00 0.20 0.00 0.14 inf; +crachins crachin nom m p 0.03 2.03 0.00 0.14 +crachoir crachoir nom m s 0.56 0.61 0.32 0.47 +crachoirs crachoir nom m p 0.56 0.61 0.24 0.14 +crachons cracher ver 27.93 45.81 0.14 0.07 imp:pre:1p;ind:pre:1p; +crachota crachoter ver 0.02 2.30 0.01 0.14 ind:pas:3s; +crachotaient crachoter ver 0.02 2.30 0.00 0.07 ind:imp:3p; +crachotait crachoter ver 0.02 2.30 0.00 0.41 ind:imp:3s; +crachotant crachoter ver 0.02 2.30 0.00 0.47 par:pre; +crachotantes crachotant adj f p 0.00 0.41 0.00 0.07 +crachotants crachotant adj m p 0.00 0.41 0.00 0.07 +crachote crachoter ver 0.02 2.30 0.01 0.41 ind:pre:3s; +crachotement crachotement nom m s 0.00 0.27 0.00 0.14 +crachotements crachotement nom m p 0.00 0.27 0.00 0.14 +crachotent crachoter ver 0.02 2.30 0.00 0.14 ind:pre:3p; +crachoter crachoter ver 0.02 2.30 0.00 0.54 inf; +crachoteuse crachoteux adj f s 0.00 0.20 0.00 0.14 +crachoteux crachoteux adj m 0.00 0.20 0.00 0.07 +crachoté crachoter ver m s 0.02 2.30 0.00 0.14 par:pas; +crachouilla crachouiller ver 0.00 0.34 0.00 0.14 ind:pas:3s; +crachouille crachouiller ver 0.00 0.34 0.00 0.20 ind:pre:3s; +crachouillis crachouillis nom m 0.01 0.14 0.01 0.14 +crachèrent cracher ver 27.93 45.81 0.00 0.27 ind:pas:3p; +craché cracher ver m s 27.93 45.81 4.26 4.53 par:pas; +crachée craché adj f s 3.24 1.62 0.19 0.27 +crachées cracher ver f p 27.93 45.81 0.01 0.07 par:pas; +crachés cracher ver m p 27.93 45.81 0.01 0.20 par:pas; +crack crack nom m s 7.77 0.88 7.30 0.68 +cracker cracker nom m s 2.22 0.27 0.72 0.00 +crackers cracker nom m p 2.22 0.27 1.50 0.27 +cracking cracking nom m s 0.01 0.00 0.01 0.00 +cracks crack nom m p 7.77 0.88 0.47 0.20 +cracra cracra adj f s 0.04 0.54 0.04 0.54 +crade crade adj s 1.31 1.55 1.19 1.35 +crades crade adj p 1.31 1.55 0.12 0.20 +cradingue cradingue adj s 0.12 1.42 0.12 1.01 +cradingues cradingue adj p 0.12 1.42 0.00 0.41 +crado crado adj s 0.23 1.22 0.17 0.95 +cradoque cradoque adj f s 0.01 0.00 0.01 0.00 +crados crado adj p 0.23 1.22 0.06 0.27 +craie craie nom f s 5.80 10.68 5.66 10.20 +craies craie nom f p 5.80 10.68 0.14 0.47 +craignît craindre ver 117.44 108.31 0.00 0.20 sub:imp:3s; +craignaient craindre ver 117.44 108.31 0.82 2.91 ind:imp:3p; +craignais craindre ver 117.44 108.31 5.34 8.31 ind:imp:1s;ind:imp:2s; +craignait craindre ver 117.44 108.31 3.42 20.14 ind:imp:3s; +craignant craindre ver 117.44 108.31 1.35 7.97 par:pre; +craigne craindre ver 117.44 108.31 0.49 0.41 sub:pre:1s;sub:pre:3s; +craignent craindre ver 117.44 108.31 3.75 2.36 ind:pre:3p; +craignes craindre ver 117.44 108.31 0.14 0.00 sub:pre:2s; +craignez craindre ver 117.44 108.31 9.27 3.38 imp:pre:2p;ind:pre:2p; +craigniez craindre ver 117.44 108.31 0.38 0.20 ind:imp:2p; +craignions craindre ver 117.44 108.31 0.22 0.20 ind:imp:1p; +craignirent craindre ver 117.44 108.31 0.00 0.07 ind:pas:3p; +craignis craindre ver 117.44 108.31 0.14 0.54 ind:pas:1s; +craignissent craindre ver 117.44 108.31 0.00 0.07 sub:imp:3p; +craignit craindre ver 117.44 108.31 0.01 1.82 ind:pas:3s; +craignons craindre ver 117.44 108.31 1.32 1.08 imp:pre:1p;ind:pre:1p; +craignos craignos adj 1.02 0.74 1.02 0.74 +craillaient crailler ver 0.00 0.14 0.00 0.07 ind:imp:3p; +craillent crailler ver 0.00 0.14 0.00 0.07 ind:pre:3p; +craindra craindre ver 117.44 108.31 0.22 0.07 ind:fut:3s; +craindrai craindre ver 117.44 108.31 0.08 0.00 ind:fut:1s; +craindraient craindre ver 117.44 108.31 0.04 0.07 cnd:pre:3p; +craindrais craindre ver 117.44 108.31 0.19 0.20 cnd:pre:1s;cnd:pre:2s; +craindrait craindre ver 117.44 108.31 0.10 0.34 cnd:pre:3s; +craindras craindre ver 117.44 108.31 0.03 0.00 ind:fut:2s; +craindre craindre ver 117.44 108.31 18.73 19.73 inf; +craindriez craindre ver 117.44 108.31 0.16 0.00 cnd:pre:2p; +craindrons craindre ver 117.44 108.31 0.01 0.00 ind:fut:1p; +craindront craindre ver 117.44 108.31 0.02 0.07 ind:fut:3p; +crains craindre ver 117.44 108.31 40.76 17.64 imp:pre:2s;ind:pre:1s;ind:pre:2s; +craint craindre ver m s 117.44 108.31 23.43 15.54 ind:pre:3s;par:pas; +crainte crainte nom f s 14.54 52.64 11.39 45.61 +craintes crainte nom f p 14.54 52.64 3.15 7.03 +craintif craintif adj m s 1.38 8.31 0.97 3.92 +craintifs craintif adj m p 1.38 8.31 0.19 1.49 +craintive craintif adj f s 1.38 8.31 0.22 2.23 +craintivement craintivement adv 0.00 1.15 0.00 1.15 +craintives craintif adj f p 1.38 8.31 0.00 0.68 +craints craindre ver m p 117.44 108.31 0.25 0.14 par:pas; +crama cramer ver 4.59 2.97 0.00 0.07 ind:pas:3s; +cramaient cramer ver 4.59 2.97 0.00 0.07 ind:imp:3p; +cramait cramer ver 4.59 2.97 0.01 0.14 ind:imp:3s; +cramant cramer ver 4.59 2.97 0.00 0.07 par:pre; +crame cramer ver 4.59 2.97 1.17 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crament cramer ver 4.59 2.97 0.05 0.07 ind:pre:3p; +cramer cramer ver 4.59 2.97 1.47 0.81 inf; +crameraient cramer ver 4.59 2.97 0.01 0.00 cnd:pre:3p; +cramerais cramer ver 4.59 2.97 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +crameras cramer ver 4.59 2.97 0.01 0.00 ind:fut:2s; +cramez cramer ver 4.59 2.97 0.16 0.00 imp:pre:2p;ind:pre:2p; +cramoisi cramoisi adj m s 0.25 4.26 0.13 2.70 +cramoisie cramoisi adj f s 0.25 4.26 0.10 0.47 +cramoisies cramoisi adj f p 0.25 4.26 0.00 0.47 +cramoisis cramoisi adj m p 0.25 4.26 0.02 0.61 +cramouille cramouille nom f s 0.06 0.47 0.05 0.34 +cramouilles cramouille nom f p 0.06 0.47 0.01 0.14 +crampe crampe nom f s 5.18 6.01 2.62 2.84 +crampes crampe nom f p 5.18 6.01 2.57 3.18 +crampette crampette nom f s 0.00 0.14 0.00 0.07 +crampettes crampette nom f p 0.00 0.14 0.00 0.07 +crampon crampon nom m s 1.49 1.15 0.98 0.20 +cramponna cramponner ver 1.67 13.45 0.00 0.54 ind:pas:3s; +cramponnaient cramponner ver 1.67 13.45 0.00 0.14 ind:imp:3p; +cramponnais cramponner ver 1.67 13.45 0.14 0.41 ind:imp:1s;ind:imp:2s; +cramponnait cramponner ver 1.67 13.45 0.02 1.49 ind:imp:3s; +cramponnant cramponner ver 1.67 13.45 0.00 1.08 par:pre; +cramponne cramponner ver 1.67 13.45 0.49 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cramponnent cramponner ver 1.67 13.45 0.00 0.27 ind:pre:3p; +cramponner cramponner ver 1.67 13.45 0.09 1.35 inf; +cramponneront cramponner ver 1.67 13.45 0.02 0.00 ind:fut:3p; +cramponnez cramponner ver 1.67 13.45 0.55 0.14 imp:pre:2p;ind:pre:2p; +cramponniez cramponner ver 1.67 13.45 0.01 0.07 ind:imp:2p; +cramponnons cramponner ver 1.67 13.45 0.01 0.14 imp:pre:1p;ind:pre:1p; +cramponné cramponner ver m s 1.67 13.45 0.16 2.50 par:pas; +cramponnée cramponner ver f s 1.67 13.45 0.14 1.62 par:pas; +cramponnées cramponner ver f p 1.67 13.45 0.00 0.41 par:pas; +cramponnés cramponner ver m p 1.67 13.45 0.03 1.35 par:pas; +crampons crampon nom m p 1.49 1.15 0.51 0.95 +cramé cramer ver m s 4.59 2.97 1.50 0.88 par:pas; +cramée cramer ver f s 4.59 2.97 0.06 0.07 par:pas; +cramées cramer ver f p 4.59 2.97 0.00 0.07 par:pas; +cramés cramer ver m p 4.59 2.97 0.14 0.07 par:pas; +cran cran nom m s 13.97 8.11 13.61 6.96 +crane crane nom m s 0.96 0.00 0.96 0.00 +craniométrie craniométrie nom f s 0.03 0.00 0.03 0.00 +craniotomie craniotomie nom f s 0.03 0.00 0.03 0.00 +crans cran nom m p 13.97 8.11 0.36 1.15 +cranter cranter ver 0.08 0.34 0.05 0.14 inf; +cranté cranter ver m s 0.08 0.34 0.01 0.14 par:pas; +crantées cranter ver f p 0.08 0.34 0.01 0.00 par:pas; +crantés cranter ver m p 0.08 0.34 0.01 0.07 par:pas; +craonnais craonnais adj m 0.00 0.61 0.00 0.27 +craonnaise craonnais adj f s 0.00 0.61 0.00 0.07 +craonnaises craonnais adj f p 0.00 0.61 0.00 0.27 +crapahutait crapahuter ver 0.25 0.47 0.00 0.07 ind:imp:3s; +crapahutant crapahuter ver 0.25 0.47 0.00 0.07 par:pre; +crapahute crapahuter ver 0.25 0.47 0.01 0.07 ind:pre:1s;ind:pre:3s; +crapahuter crapahuter ver 0.25 0.47 0.19 0.14 inf; +crapahutons crapahuter ver 0.25 0.47 0.00 0.07 ind:pre:1p; +crapahuté crapahuter ver m s 0.25 0.47 0.05 0.07 par:pas; +crapaud_buffle crapaud_buffle nom m s 0.01 0.14 0.01 0.00 +crapaud crapaud nom m s 11.30 9.19 9.60 6.08 +crapaud_buffle crapaud_buffle nom m p 0.01 0.14 0.00 0.14 +crapauds crapaud nom m p 11.30 9.19 1.70 3.11 +crapoter crapoter ver 0.01 0.00 0.01 0.00 inf; +crapoteuse crapoteux adj f s 0.01 0.41 0.00 0.20 +crapoteuses crapoteux adj f p 0.01 0.41 0.00 0.07 +crapoteux crapoteux adj m 0.01 0.41 0.01 0.14 +crapouillot crapouillot nom m s 0.01 0.20 0.01 0.07 +crapouillots crapouillot nom m p 0.01 0.20 0.00 0.14 +craps craps nom m p 0.73 0.07 0.73 0.07 +crapule crapule nom f s 7.09 3.45 4.43 2.50 +crapulerie crapulerie nom f s 0.01 0.27 0.01 0.27 +crapules crapule nom f p 7.09 3.45 2.66 0.95 +crapuleuse crapuleux adj f s 0.36 2.36 0.03 0.95 +crapuleusement crapuleusement adv 0.00 0.14 0.00 0.14 +crapuleuses crapuleux adj f p 0.36 2.36 0.00 0.20 +crapuleux crapuleux adj m 0.36 2.36 0.33 1.22 +craqua craquer ver 21.23 37.16 0.01 1.69 ind:pas:3s; +craquage craquage nom m s 0.04 0.00 0.04 0.00 +craquaient craquer ver 21.23 37.16 0.06 1.96 ind:imp:3p; +craquais craquer ver 21.23 37.16 0.19 0.00 ind:imp:1s;ind:imp:2s; +craquait craquer ver 21.23 37.16 0.23 4.32 ind:imp:3s; +craquant craquant adj m s 1.75 3.45 0.90 1.42 +craquante craquant adj f s 1.75 3.45 0.66 0.88 +craquantes craquant adj f p 1.75 3.45 0.05 0.74 +craquants craquant adj m p 1.75 3.45 0.14 0.41 +craque craquer ver 21.23 37.16 4.40 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +craquela craqueler ver 0.05 2.36 0.00 0.07 ind:pas:3s; +craquelaient craqueler ver 0.05 2.36 0.00 0.07 ind:imp:3p; +craquelait craqueler ver 0.05 2.36 0.00 0.27 ind:imp:3s; +craquelant craqueler ver 0.05 2.36 0.00 0.20 par:pre; +craqueler craqueler ver 0.05 2.36 0.02 0.34 inf; +craquelin craquelin nom m s 1.01 0.07 0.40 0.00 +craquelins craquelin nom m p 1.01 0.07 0.61 0.07 +craquelle craqueler ver 0.05 2.36 0.01 0.14 ind:pre:3s; +craquellent craqueler ver 0.05 2.36 0.00 0.20 ind:pre:3p; +craquelèrent craqueler ver 0.05 2.36 0.00 0.07 ind:pas:3p; +craquelé craquelé adj m s 0.12 2.57 0.11 0.47 +craquelée craquelé adj f s 0.12 2.57 0.01 0.74 +craquelées craquelé adj f p 0.12 2.57 0.00 0.88 +craquelure craquelure nom f s 0.14 1.15 0.14 0.27 +craquelures craquelure nom f p 0.14 1.15 0.00 0.88 +craquelés craquelé adj m p 0.12 2.57 0.00 0.47 +craquement craquement nom m s 2.48 13.45 1.17 7.36 +craquements craquement nom m p 2.48 13.45 1.31 6.08 +craquent craquer ver 21.23 37.16 0.79 2.03 ind:pre:3p; +craquer craquer ver 21.23 37.16 8.52 15.74 inf; +craquera craquer ver 21.23 37.16 0.79 0.07 ind:fut:3s; +craqueraient craquer ver 21.23 37.16 0.01 0.07 cnd:pre:3p; +craquerait craquer ver 21.23 37.16 0.13 0.14 cnd:pre:3s; +craqueras craquer ver 21.23 37.16 0.04 0.07 ind:fut:2s; +craqueront craquer ver 21.23 37.16 0.16 0.14 ind:fut:3p; +craques craquer ver 21.23 37.16 1.07 0.14 ind:pre:2s; +craquette craqueter ver 0.02 0.07 0.02 0.07 ind:pre:3s; +craquez craquer ver 21.23 37.16 0.15 0.07 imp:pre:2p;ind:pre:2p; +craquiez craquer ver 21.23 37.16 0.12 0.00 ind:imp:2p; +craquèlement craquèlement nom m s 0.00 0.14 0.00 0.14 +craquèrent craquer ver 21.23 37.16 0.00 0.47 ind:pas:3p; +craqué craquer ver m s 21.23 37.16 4.39 3.04 par:pas; +craquée craquer ver f s 21.23 37.16 0.17 0.00 par:pas; +craquées craquer ver f p 21.23 37.16 0.00 0.07 par:pas; +crase crase nom f s 0.01 0.00 0.01 0.00 +crash_test crash_test nom m s 0.02 0.00 0.02 0.00 +crash crash nom m s 6.68 0.07 6.68 0.07 +crashe crasher ver 1.52 0.00 0.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crasher crasher ver 1.52 0.00 0.36 0.00 inf; +crashes crashe nom m p 0.02 0.00 0.02 0.00 +crashé crasher ver m s 1.52 0.00 0.97 0.00 par:pas; +crashée crasher ver f s 1.52 0.00 0.06 0.00 par:pas; +craspec craspec adj m s 0.00 0.07 0.00 0.07 +crasse crasse nom f s 3.29 13.45 3.16 13.11 +crasses crasse nom f p 3.29 13.45 0.14 0.34 +crasseuse crasseux adj f s 2.08 11.01 0.27 2.64 +crasseuses crasseux adj f p 2.08 11.01 0.06 1.22 +crasseux crasseux adj m 2.08 11.01 1.75 7.16 +crassier crassier nom m s 0.04 0.07 0.04 0.00 +crassiers crassier nom m p 0.04 0.07 0.00 0.07 +crassula crassula nom f s 0.00 0.14 0.00 0.14 +crataegus crataegus nom m 0.00 0.07 0.00 0.07 +cratère cratère nom m s 2.79 4.66 2.13 3.11 +cratères cratère nom m p 2.79 4.66 0.66 1.55 +cravachais cravacher ver 0.37 0.88 0.00 0.07 ind:imp:1s; +cravachait cravacher ver 0.37 0.88 0.10 0.20 ind:imp:3s; +cravachant cravacher ver 0.37 0.88 0.00 0.14 par:pre; +cravache cravache nom f s 0.58 3.72 0.56 3.58 +cravacher cravacher ver 0.37 0.88 0.16 0.34 inf; +cravaches cravache nom f p 0.58 3.72 0.02 0.14 +cravaché cravacher ver m s 0.37 0.88 0.04 0.00 par:pas; +cravachées cravacher ver f p 0.37 0.88 0.00 0.07 par:pas; +cravant cravant nom m s 0.00 0.27 0.00 0.07 +cravants cravant nom m p 0.00 0.27 0.00 0.20 +cravatage cravatage nom m s 0.00 0.07 0.00 0.07 +cravatait cravater ver 0.21 3.31 0.00 0.14 ind:imp:3s; +cravate cravate nom f s 17.92 34.12 15.99 27.70 +cravater cravater ver 0.21 3.31 0.03 0.54 inf; +cravates cravate nom f p 17.92 34.12 1.93 6.42 +cravateur cravateur nom m s 0.00 0.14 0.00 0.14 +cravatière cravatier nom f s 0.00 0.07 0.00 0.07 +cravaté cravater ver m s 0.21 3.31 0.06 1.01 par:pas; +cravatée cravater ver f s 0.21 3.31 0.00 0.14 par:pas; +cravatées cravater ver f p 0.21 3.31 0.00 0.14 par:pas; +cravatés cravater ver m p 0.21 3.31 0.03 0.74 par:pas; +crawl crawl nom m s 0.00 0.74 0.00 0.74 +crawlait crawler ver 0.00 0.20 0.00 0.07 ind:imp:3s; +crawlant crawler ver 0.00 0.20 0.00 0.14 par:pre; +crawlé crawlé adj m s 0.00 0.07 0.00 0.07 +crayeuse crayeux adj f s 0.03 1.96 0.00 0.61 +crayeuses crayeux adj f p 0.03 1.96 0.01 0.34 +crayeux crayeux adj m 0.03 1.96 0.01 1.01 +crayon_encre crayon_encre nom m s 0.00 0.27 0.00 0.27 +crayon crayon nom m s 10.97 30.47 8.08 25.47 +crayonna crayonner ver 0.14 1.82 0.00 0.07 ind:pas:3s; +crayonnage crayonnage nom m s 0.00 0.14 0.00 0.07 +crayonnages crayonnage nom m p 0.00 0.14 0.00 0.07 +crayonnait crayonner ver 0.14 1.82 0.03 0.54 ind:imp:3s; +crayonnant crayonner ver 0.14 1.82 0.00 0.34 par:pre; +crayonne crayonner ver 0.14 1.82 0.11 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crayonner crayonner ver 0.14 1.82 0.00 0.27 inf; +crayonneur crayonneur nom m s 0.00 0.14 0.00 0.07 +crayonneurs crayonneur nom m p 0.00 0.14 0.00 0.07 +crayonnez crayonner ver 0.14 1.82 0.00 0.07 ind:pre:2p; +crayonné crayonner ver m s 0.14 1.82 0.00 0.14 par:pas; +crayonnées crayonner ver f p 0.14 1.82 0.00 0.14 par:pas; +crayonnés crayonner ver m p 0.14 1.82 0.00 0.07 par:pas; +crayon_feutre crayon_feutre nom m p 0.00 0.14 0.00 0.14 +crayons crayon nom m p 10.97 30.47 2.88 5.00 +credo credo nom m 0.78 2.84 0.78 2.84 +creek creek nom m s 0.78 0.34 0.77 0.27 +creeks creek nom m p 0.78 0.34 0.01 0.07 +crematorium crematorium nom m s 0.22 0.00 0.22 0.00 +crescendo crescendo adv 0.46 0.61 0.46 0.61 +cresson cresson nom m s 0.24 1.01 0.24 0.95 +cressonnette cressonnette nom f s 0.00 0.07 0.00 0.07 +cressonnière cressonnière nom f s 0.00 0.14 0.00 0.07 +cressonnières cressonnière nom f p 0.00 0.14 0.00 0.07 +cressons cresson nom m p 0.24 1.01 0.00 0.07 +creton creton nom m s 0.01 1.69 0.01 0.00 +cretonne creton nom f s 0.01 1.69 0.00 1.55 +cretonnes creton nom f p 0.01 1.69 0.00 0.07 +cretons creton nom m p 0.01 1.69 0.00 0.07 +creusa creuser ver 25.11 64.19 0.26 1.96 ind:pas:3s; +creusai creuser ver 25.11 64.19 0.01 0.07 ind:pas:1s; +creusaient creuser ver 25.11 64.19 0.24 3.24 ind:imp:3p; +creusais creuser ver 25.11 64.19 0.36 0.81 ind:imp:1s;ind:imp:2s; +creusait creuser ver 25.11 64.19 0.32 7.36 ind:imp:3s; +creusant creuser ver 25.11 64.19 0.50 3.45 par:pre; +creusas creuser ver 25.11 64.19 0.00 0.07 ind:pas:2s; +creusassent creuser ver 25.11 64.19 0.00 0.07 sub:imp:3p; +creuse creuser ver 25.11 64.19 3.67 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +creusement creusement nom m s 0.00 0.41 0.00 0.34 +creusements creusement nom m p 0.00 0.41 0.00 0.07 +creusent creuser ver 25.11 64.19 0.86 3.24 ind:pre:3p; +creuser creuser ver 25.11 64.19 10.34 11.82 inf; +creusera creuser ver 25.11 64.19 0.09 0.14 ind:fut:3s; +creuserai creuser ver 25.11 64.19 0.58 0.14 ind:fut:1s; +creuseraient creuser ver 25.11 64.19 0.01 0.14 cnd:pre:3p; +creuserais creuser ver 25.11 64.19 0.03 0.00 cnd:pre:1s; +creuserait creuser ver 25.11 64.19 0.09 0.14 cnd:pre:3s; +creuseras creuser ver 25.11 64.19 0.15 0.20 ind:fut:2s; +creuserez creuser ver 25.11 64.19 0.05 0.00 ind:fut:2p; +creuserons creuser ver 25.11 64.19 0.02 0.00 ind:fut:1p; +creuseront creuser ver 25.11 64.19 0.07 0.14 ind:fut:3p; +creuses creux adj f p 5.90 25.14 0.97 7.16 +creuset creuset nom m s 0.21 1.15 0.21 1.08 +creusets creuset nom m p 0.21 1.15 0.00 0.07 +creuseur creuseur nom m s 0.01 0.07 0.01 0.07 +creusez creuser ver 25.11 64.19 1.88 0.54 imp:pre:2p;ind:pre:2p; +creusiez creuser ver 25.11 64.19 0.06 0.00 ind:imp:2p; +creusions creuser ver 25.11 64.19 0.01 0.07 ind:imp:1p; +creusons creuser ver 25.11 64.19 0.26 0.54 imp:pre:1p;ind:pre:1p; +creusèrent creuser ver 25.11 64.19 0.03 0.68 ind:pas:3p; +creusé creuser ver m s 25.11 64.19 3.35 11.01 par:pas; +creusée creuser ver f s 25.11 64.19 0.55 5.47 par:pas; +creusées creuser ver f p 25.11 64.19 0.36 3.92 par:pas; +creusés creuser ver m p 25.11 64.19 0.13 3.24 par:pas; +creux creux adj m 5.90 25.14 3.32 12.64 +creva crever ver 64.95 81.55 0.03 1.42 ind:pas:3s; +crevage crevage nom m s 0.00 0.07 0.00 0.07 +crevaient crever ver 64.95 81.55 0.12 1.82 ind:imp:3p; +crevais crever ver 64.95 81.55 0.17 1.22 ind:imp:1s;ind:imp:2s; +crevaison crevaison nom f s 0.63 0.20 0.60 0.14 +crevaisons crevaison nom f p 0.63 0.20 0.03 0.07 +crevait crever ver 64.95 81.55 0.34 4.19 ind:imp:3s; +crevant crevant adj m s 1.03 0.74 0.74 0.61 +crevante crevant adj f s 1.03 0.74 0.29 0.07 +crevants crevant adj m p 1.03 0.74 0.00 0.07 +crevard crevard nom m s 0.29 0.74 0.04 0.20 +crevarde crevard nom f s 0.29 0.74 0.00 0.20 +crevards crevard nom m p 0.29 0.74 0.26 0.34 +crevasse crevasse nom f s 1.16 4.86 0.92 2.30 +crevassent crevasser ver 0.06 2.57 0.00 0.14 ind:pre:3p; +crevasser crevasser ver 0.06 2.57 0.00 0.14 inf; +crevasses crevasse nom f p 1.16 4.86 0.24 2.57 +crevassé crevasser ver m s 0.06 2.57 0.01 0.41 par:pas; +crevassée crevasser ver f s 0.06 2.57 0.03 0.47 par:pas; +crevassées crevasser ver f p 0.06 2.57 0.01 0.88 par:pas; +crevassés crevasser ver m p 0.06 2.57 0.00 0.47 par:pas; +crever crever ver 64.95 81.55 25.27 29.05 ind:imp:3s;inf; +crevette crevette nom f s 9.03 5.00 1.13 1.62 +crevettes crevette nom f p 9.03 5.00 7.90 3.38 +crevettier crevettier nom m s 0.16 0.00 0.12 0.00 +crevettiers crevettier nom m p 0.16 0.00 0.04 0.00 +crevez crever ver 64.95 81.55 0.74 0.27 imp:pre:2p;ind:pre:2p; +creviez crever ver 64.95 81.55 0.04 0.07 ind:imp:2p; +crevions crever ver 64.95 81.55 0.00 0.07 ind:imp:1p; +crevons crever ver 64.95 81.55 0.27 0.07 imp:pre:1p;ind:pre:1p; +crevât crever ver 64.95 81.55 0.00 0.07 sub:imp:3s; +crevotant crevoter ver 0.00 0.07 0.00 0.07 par:pre; +crevèrent crever ver 64.95 81.55 0.00 0.34 ind:pas:3p; +crevé crever ver m s 64.95 81.55 9.34 8.65 par:pas; +crevée crever ver f s 64.95 81.55 5.10 4.12 par:pas; +crevées crever ver f p 64.95 81.55 0.47 1.22 par:pas; +crevure crevure nom f s 0.52 0.34 0.47 0.34 +crevures crevure nom f p 0.52 0.34 0.04 0.00 +crevés crever ver m p 64.95 81.55 1.84 6.96 par:pas; +cri cri nom m s 45.58 155.41 18.79 71.55 +cria crier ver 116.93 239.73 1.20 55.74 ind:pas:3s; +criai crier ver 116.93 239.73 0.02 2.57 ind:pas:1s; +criaient crier ver 116.93 239.73 2.05 9.05 ind:imp:3p; +criaillaient criailler ver 0.23 0.88 0.10 0.14 ind:imp:3p; +criaillait criailler ver 0.23 0.88 0.00 0.14 ind:imp:3s; +criaillant criailler ver 0.23 0.88 0.00 0.27 par:pre; +criaillement criaillement nom m s 0.00 0.07 0.00 0.07 +criaillent criailler ver 0.23 0.88 0.14 0.14 ind:pre:3p; +criailler criailler ver 0.23 0.88 0.00 0.20 inf; +criaillerie criaillerie nom f s 0.00 1.69 0.00 0.20 +criailleries criaillerie nom f p 0.00 1.69 0.00 1.49 +criais crier ver 116.93 239.73 1.89 2.09 ind:imp:1s;ind:imp:2s; +criait crier ver 116.93 239.73 6.37 26.35 ind:imp:3s; +criant crier ver 116.93 239.73 3.82 20.95 par:pre; +criante criant adj f s 0.38 3.51 0.06 0.68 +criantes criant adj f p 0.38 3.51 0.14 0.20 +criard criard adj m s 0.95 6.49 0.17 1.49 +criarde criard adj f s 0.95 6.49 0.31 1.69 +criardes criard adj f p 0.95 6.49 0.23 1.96 +criards criard adj m p 0.95 6.49 0.23 1.35 +crib crib nom m s 0.04 0.00 0.04 0.00 +cribla cribler ver 1.86 6.69 0.01 0.07 ind:pas:3s; +criblage criblage nom m s 0.03 0.14 0.03 0.14 +criblaient cribler ver 1.86 6.69 0.00 0.47 ind:imp:3p; +criblait cribler ver 1.86 6.69 0.00 0.20 ind:imp:3s; +criblant cribler ver 1.86 6.69 0.00 0.74 par:pre; +crible crible nom m s 0.92 1.15 0.91 1.08 +criblent cribler ver 1.86 6.69 0.00 0.20 ind:pre:3p; +cribler cribler ver 1.86 6.69 0.07 0.20 inf; +cribles crible nom m p 0.92 1.15 0.01 0.07 +criblé cribler ver m s 1.86 6.69 0.92 2.09 par:pas; +criblée cribler ver f s 1.86 6.69 0.20 1.01 par:pas; +criblées cribler ver f p 1.86 6.69 0.16 0.61 par:pas; +criblés cribler ver m p 1.86 6.69 0.26 0.61 par:pas; +cric_crac cric_crac ono 0.00 0.07 0.00 0.07 +cric cric nom m s 1.20 1.42 1.18 1.08 +cricket cricket nom m s 2.94 0.41 2.92 0.41 +crickets cricket nom m p 2.94 0.41 0.02 0.00 +cricoïde cricoïde adj s 0.12 0.00 0.12 0.00 +cricri cricri nom m s 0.28 1.42 0.28 1.28 +cricris cricri nom m p 0.28 1.42 0.00 0.14 +crics cric nom m p 1.20 1.42 0.03 0.34 +crie crier ver 116.93 239.73 35.65 40.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crient crier ver 116.93 239.73 5.35 5.61 ind:pre:3p; +crier crier ver 116.93 239.73 31.48 47.30 inf; +criera crier ver 116.93 239.73 0.75 0.20 ind:fut:3s; +crierai crier ver 116.93 239.73 0.99 0.27 ind:fut:1s; +crieraient crier ver 116.93 239.73 0.03 0.20 cnd:pre:3p; +crierais crier ver 116.93 239.73 0.28 0.00 cnd:pre:1s;cnd:pre:2s; +crierait crier ver 116.93 239.73 0.07 0.81 cnd:pre:3s; +crieras crier ver 116.93 239.73 0.34 0.20 ind:fut:2s; +crieront crier ver 116.93 239.73 0.42 0.14 ind:fut:3p; +cries crier ver 116.93 239.73 5.64 0.41 ind:pre:2s;sub:pre:2s; +crieur crieur nom m s 0.34 2.09 0.27 0.95 +crieurs crieur nom m p 0.34 2.09 0.04 1.08 +crieuse crieur nom f s 0.34 2.09 0.03 0.07 +criez crier ver 116.93 239.73 6.57 0.74 imp:pre:2p;ind:pre:2p; +criions crier ver 116.93 239.73 0.00 0.14 ind:imp:1p; +crime crime nom m s 104.07 45.07 81.77 29.32 +crimes crime nom m p 104.07 45.07 22.30 15.74 +criminaliser criminaliser ver 0.03 0.00 0.03 0.00 inf; +criminaliste criminaliste nom s 0.10 0.00 0.10 0.00 +criminalistique criminalistique adj s 0.01 0.00 0.01 0.00 +criminalité criminalité nom f s 1.91 0.61 1.91 0.61 +criminel criminel nom m s 35.49 8.04 17.37 3.45 +criminelle criminel adj f s 18.17 8.45 6.36 3.11 +criminellement criminellement adv 0.02 0.07 0.02 0.07 +criminelles criminel adj f p 18.17 8.45 0.94 1.15 +criminels criminel nom m p 35.49 8.04 13.90 3.38 +criminologie criminologie nom f s 0.48 0.07 0.48 0.07 +criminologiste criminologiste nom s 0.03 0.14 0.03 0.14 +criminologue criminologue nom s 0.35 0.00 0.30 0.00 +criminologues criminologue nom p 0.35 0.00 0.05 0.00 +crin crin nom m s 0.46 6.22 0.32 3.92 +crincrin crincrin nom m s 0.05 0.27 0.04 0.20 +crincrins crincrin nom m p 0.05 0.27 0.01 0.07 +crinière crinière nom f s 2.28 10.27 2.27 8.92 +crinières crinière nom f p 2.28 10.27 0.01 1.35 +crinoline crinoline nom f s 0.15 0.47 0.15 0.14 +crinolines crinoline nom f p 0.15 0.47 0.00 0.34 +crins crin nom m p 0.46 6.22 0.14 2.30 +crions crier ver 116.93 239.73 0.79 0.14 imp:pre:1p;ind:pre:1p; +criât crier ver 116.93 239.73 0.00 0.34 sub:imp:3s; +crique crique nom f s 1.10 5.20 1.06 3.78 +criques crique nom f p 1.10 5.20 0.04 1.42 +criquet criquet nom m s 1.29 2.36 0.57 0.34 +criquets criquet nom m p 1.29 2.36 0.72 2.03 +cris_craft cris_craft nom m s 0.00 0.07 0.00 0.07 +cris cri nom m p 45.58 155.41 26.79 83.85 +crise crise nom f s 50.15 49.73 43.51 37.97 +crises crise nom f p 50.15 49.73 6.64 11.76 +crispa crisper ver 2.05 30.41 0.00 2.36 ind:pas:3s; +crispai crisper ver 2.05 30.41 0.00 0.14 ind:pas:1s; +crispaient crisper ver 2.05 30.41 0.00 1.01 ind:imp:3p; +crispait crisper ver 2.05 30.41 0.01 3.18 ind:imp:3s; +crispant crispant adj m s 0.07 0.41 0.06 0.27 +crispante crispant adj f s 0.07 0.41 0.00 0.07 +crispantes crispant adj f p 0.07 0.41 0.01 0.07 +crispation crispation nom f s 0.04 3.92 0.04 3.31 +crispations crispation nom f p 0.04 3.92 0.00 0.61 +crispe crisper ver 2.05 30.41 0.39 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crispent crisper ver 2.05 30.41 0.14 0.41 ind:pre:3p; +crisper crisper ver 2.05 30.41 0.33 1.28 inf; +crispes crisper ver 2.05 30.41 0.00 0.14 ind:pre:2s; +crispin crispin nom m s 0.10 0.20 0.10 0.20 +crispèrent crisper ver 2.05 30.41 0.00 0.41 ind:pas:3p; +crispé crisper ver m s 2.05 30.41 0.53 6.28 par:pas; +crispée crisper ver f s 2.05 30.41 0.50 5.00 par:pas; +crispées crisper ver f p 2.05 30.41 0.02 3.51 par:pas; +crispés crisper ver m p 2.05 30.41 0.13 3.24 par:pas; +crissa crisser ver 1.46 11.49 0.00 0.41 ind:pas:3s; +crissaient crisser ver 1.46 11.49 0.01 1.62 ind:imp:3p; +crissait crisser ver 1.46 11.49 0.00 1.62 ind:imp:3s; +crissant crisser ver 1.46 11.49 0.02 2.09 par:pre; +crisse crisser ver 1.46 11.49 1.29 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crissement crissement nom m s 1.77 9.32 1.18 7.77 +crissements crissement nom m p 1.77 9.32 0.59 1.55 +crissent crisser ver 1.46 11.49 0.02 0.95 ind:pre:3p; +crisser crisser ver 1.46 11.49 0.09 2.57 inf; +crissèrent crisser ver 1.46 11.49 0.00 0.20 ind:pas:3p; +crissé crisser ver m s 1.46 11.49 0.02 0.20 par:pas; +cristal cristal nom m s 10.22 18.51 6.34 13.72 +cristallerie cristallerie nom f s 0.01 0.07 0.01 0.00 +cristalleries cristallerie nom f p 0.01 0.07 0.00 0.07 +cristallin cristallin adj m s 0.35 4.59 0.04 1.69 +cristalline cristallin adj f s 0.35 4.59 0.26 1.82 +cristallines cristallin adj f p 0.35 4.59 0.05 0.54 +cristallins cristallin nom m p 0.17 0.74 0.14 0.00 +cristallisaient cristalliser ver 0.41 2.03 0.00 0.07 ind:imp:3p; +cristallisait cristalliser ver 0.41 2.03 0.00 0.14 ind:imp:3s; +cristallisation cristallisation nom f s 0.20 0.27 0.20 0.27 +cristallise cristalliser ver 0.41 2.03 0.01 0.41 ind:pre:3s; +cristallisent cristalliser ver 0.41 2.03 0.14 0.20 ind:pre:3p; +cristalliser cristalliser ver 0.41 2.03 0.13 0.34 inf; +cristallisera cristalliser ver 0.41 2.03 0.01 0.00 ind:fut:3s; +cristallisèrent cristalliser ver 0.41 2.03 0.00 0.14 ind:pas:3p; +cristallisé cristalliser ver m s 0.41 2.03 0.09 0.34 par:pas; +cristallisée cristallisé adj f s 0.18 0.14 0.14 0.00 +cristallisées cristallisé adj f p 0.18 0.14 0.00 0.07 +cristallisés cristalliser ver m p 0.41 2.03 0.01 0.07 par:pas; +cristalloïde cristalloïde nom s 0.03 0.00 0.03 0.00 +cristallographie cristallographie nom f s 0.00 0.07 0.00 0.07 +cristallomancie cristallomancie nom f s 0.02 0.00 0.02 0.00 +cristaux cristal nom m p 10.22 18.51 3.88 4.80 +cristi cristi ono 0.15 0.07 0.15 0.07 +crièrent crier ver 116.93 239.73 0.06 1.89 ind:pas:3p; +criticaillent criticailler ver 0.00 0.07 0.00 0.07 ind:pre:3p; +critiqua critiquer ver 10.38 7.43 0.01 0.14 ind:pas:3s; +critiquable critiquable adj s 0.02 0.07 0.01 0.07 +critiquables critiquable adj p 0.02 0.07 0.01 0.00 +critiquaient critiquer ver 10.38 7.43 0.04 0.14 ind:imp:3p; +critiquais critiquer ver 10.38 7.43 0.38 0.14 ind:imp:1s;ind:imp:2s; +critiquait critiquer ver 10.38 7.43 0.58 0.95 ind:imp:3s; +critiquant critiquer ver 10.38 7.43 0.06 0.20 par:pre; +critique critique adj s 9.34 10.47 7.83 8.85 +critiquent critiquer ver 10.38 7.43 0.18 0.00 ind:pre:3p; +critiquer critiquer ver 10.38 7.43 4.39 3.51 inf; +critiquera critiquer ver 10.38 7.43 0.09 0.00 ind:fut:3s; +critiquerais critiquer ver 10.38 7.43 0.01 0.07 cnd:pre:1s; +critiquerait critiquer ver 10.38 7.43 0.00 0.07 cnd:pre:3s; +critiqueras critiquer ver 10.38 7.43 0.01 0.00 ind:fut:2s; +critiques critique nom p 13.93 20.54 7.24 9.39 +critiquez critiquer ver 10.38 7.43 0.54 0.00 imp:pre:2p;ind:pre:2p; +critiquiez critiquer ver 10.38 7.43 0.03 0.00 ind:imp:2p; +critiquons critiquer ver 10.38 7.43 0.03 0.00 imp:pre:1p; +critiquât critiquer ver 10.38 7.43 0.00 0.07 sub:imp:3s; +critiqué critiquer ver m s 10.38 7.43 0.96 0.74 par:pas; +critiquée critiquer ver f s 10.38 7.43 0.18 0.07 par:pas; +critiquées critiquer ver f p 10.38 7.43 0.05 0.07 par:pas; +critiqués critiquer ver m p 10.38 7.43 0.08 0.07 par:pas; +critère critère nom m s 3.55 1.89 1.06 0.54 +critères critère nom m p 3.55 1.89 2.49 1.35 +critérium critérium nom m s 0.38 0.34 0.38 0.27 +critériums critérium nom m p 0.38 0.34 0.00 0.07 +crié crier ver m s 116.93 239.73 13.00 23.04 par:pas; +criée crier ver f s 116.93 239.73 0.17 0.07 par:pas; +criées crier ver f p 116.93 239.73 0.00 0.07 par:pas; +criés crier ver m p 116.93 239.73 0.01 0.61 par:pas; +croîs croître ver 4.79 10.34 0.01 0.00 ind:pre:1s; +croît croître ver 4.79 10.34 1.20 1.55 ind:pre:3s; +croîtraient croître ver 4.79 10.34 0.00 0.07 cnd:pre:3p; +croîtrait croître ver 4.79 10.34 0.01 0.07 cnd:pre:3s; +croître croître ver 4.79 10.34 1.35 2.77 inf; +croûte croûte nom f s 5.81 17.30 5.07 12.23 +croûter croûter ver 0.30 1.01 0.07 0.61 inf; +croûtes croûte nom f p 5.81 17.30 0.74 5.07 +croûteuse croûteux adj f s 0.03 0.68 0.00 0.20 +croûteuses croûteux adj f p 0.03 0.68 0.00 0.14 +croûteux croûteux adj m 0.03 0.68 0.03 0.34 +croûton croûton nom m s 0.91 3.78 0.59 1.62 +croûtonnais croûtonner ver 0.00 0.07 0.00 0.07 ind:imp:1s; +croûtons croûton nom m p 0.91 3.78 0.31 2.16 +croûté croûter ver m s 0.30 1.01 0.03 0.20 par:pas; +croûtée croûter ver f s 0.30 1.01 0.00 0.07 par:pas; +croûtées croûter ver f p 0.30 1.01 0.00 0.07 par:pas; +croa_croa croa_croa adv 0.00 0.41 0.00 0.27 +croa_croa croa_croa adv 0.00 0.41 0.00 0.14 +croassa croasser ver 0.19 0.47 0.00 0.14 ind:pas:3s; +croassaient croasser ver 0.19 0.47 0.00 0.14 ind:imp:3p; +croassait croasser ver 0.19 0.47 0.00 0.07 ind:imp:3s; +croassant croassant adj m s 0.01 0.07 0.01 0.07 +croasse croasser ver 0.19 0.47 0.12 0.00 imp:pre:2s;ind:pre:3s; +croassement croassement nom m s 0.02 0.27 0.02 0.07 +croassements croassement nom m p 0.02 0.27 0.00 0.20 +croassent croasser ver 0.19 0.47 0.04 0.07 ind:pre:3p; +croasser croasser ver 0.19 0.47 0.03 0.07 inf; +croate croate adj s 0.93 0.54 0.51 0.34 +croates croate adj p 0.93 0.54 0.42 0.20 +crobard crobard nom m s 0.00 0.27 0.00 0.27 +croc_en_jambe croc_en_jambe nom m s 0.16 0.61 0.16 0.61 +croc croc nom m s 3.19 7.84 0.66 1.15 +crocha crocher ver 0.01 1.08 0.00 0.14 ind:pas:3s; +crochaient crocher ver 0.01 1.08 0.00 0.20 ind:imp:3p; +crochait crocher ver 0.01 1.08 0.00 0.07 ind:imp:3s; +croche_patte croche_patte nom m s 0.17 0.34 0.17 0.34 +croche_pied croche_pied nom m s 0.56 0.68 0.43 0.41 +croche_pied croche_pied nom m p 0.56 0.68 0.14 0.27 +croche croche nom f s 0.26 0.41 0.07 0.34 +crochent crocher ver 0.01 1.08 0.00 0.07 ind:pre:3p; +crocher crocher ver 0.01 1.08 0.00 0.27 inf; +croches croche nom f p 0.26 0.41 0.19 0.07 +crochet crochet nom m s 10.69 15.81 8.21 9.80 +crocheta crocheter ver 0.66 1.55 0.00 0.20 ind:pas:3s; +crochetage crochetage nom m s 0.04 0.00 0.04 0.00 +crochetaient crocheter ver 0.66 1.55 0.00 0.14 ind:imp:3p; +crochetait crocheter ver 0.66 1.55 0.00 0.14 ind:imp:3s; +crochetant crocheter ver 0.66 1.55 0.00 0.07 par:pre; +crocheter crocheter ver 0.66 1.55 0.42 0.47 inf; +crocheteur crocheteur nom m s 0.29 0.07 0.29 0.00 +crocheteurs crocheteur nom m p 0.29 0.07 0.00 0.07 +crochets crochet nom m p 10.69 15.81 2.47 6.01 +crocheté crocheter ver m s 0.66 1.55 0.22 0.27 par:pas; +crochetées crocheter ver f p 0.66 1.55 0.01 0.07 par:pas; +crochetés crocheter ver m p 0.66 1.55 0.00 0.07 par:pas; +crochètent crocheter ver 0.66 1.55 0.01 0.14 ind:pre:3p; +croché crocher ver m s 0.01 1.08 0.01 0.27 par:pas; +crochu crochu adj m s 0.83 3.72 0.33 1.49 +crochue crochu adj f s 0.83 3.72 0.13 0.47 +crochées crocher ver f p 0.01 1.08 0.00 0.07 par:pas; +crochues crochu adj f p 0.83 3.72 0.02 0.41 +crochus crochu adj m p 0.83 3.72 0.35 1.35 +croco croco nom m s 1.51 1.35 0.75 1.28 +crocodile crocodile nom m s 9.26 5.20 6.14 4.05 +crocodiles crocodile nom m p 9.26 5.20 3.12 1.15 +crocos croco nom m p 1.51 1.35 0.76 0.07 +crocs_en_jambe crocs_en_jambe nom m p 0.00 0.20 0.00 0.20 +crocs croc nom m p 3.19 7.84 2.53 6.69 +crocus crocus nom m 0.04 0.95 0.04 0.95 +croie croire ver_sup 1711.99 947.23 5.43 3.85 sub:pre:1s;sub:pre:3s; +croient croire ver_sup 1711.99 947.23 29.38 19.19 ind:pre:3p; +croies croire ver_sup 1711.99 947.23 3.10 0.61 sub:pre:2s; +croira croire ver_sup 1711.99 947.23 8.27 3.18 ind:fut:3s; +croirai croire ver_sup 1711.99 947.23 2.55 1.49 ind:fut:1s; +croiraient croire ver_sup 1711.99 947.23 0.70 0.47 cnd:pre:3p; +croirais croire ver_sup 1711.99 947.23 4.40 2.50 cnd:pre:1s;cnd:pre:2s; +croirait croire ver_sup 1711.99 947.23 12.22 13.72 cnd:pre:3s; +croiras croire ver_sup 1711.99 947.23 3.87 1.28 ind:fut:2s; +croire croire ver_sup 1711.99 947.23 193.37 167.91 inf;;inf;;inf;; +croirez croire ver_sup 1711.99 947.23 2.77 1.82 ind:fut:2p; +croiriez croire ver_sup 1711.99 947.23 1.71 0.88 cnd:pre:2p; +croirions croire ver_sup 1711.99 947.23 0.00 0.34 cnd:pre:1p; +croirons croire ver_sup 1711.99 947.23 0.17 0.14 ind:fut:1p; +croiront croire ver_sup 1711.99 947.23 4.14 0.81 ind:fut:3p; +crois croire ver_sup 1711.99 947.23 904.45 305.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +croisa croiser ver 28.84 76.35 0.05 9.05 ind:pas:3s; +croisade croisade nom f s 4.21 6.15 3.23 3.18 +croisades croisade nom f p 4.21 6.15 0.98 2.97 +croisai croiser ver 28.84 76.35 0.05 1.08 ind:pas:1s; +croisaient croiser ver 28.84 76.35 0.10 5.07 ind:imp:3p; +croisais croiser ver 28.84 76.35 0.13 1.62 ind:imp:1s;ind:imp:2s; +croisait croiser ver 28.84 76.35 0.47 6.62 ind:imp:3s; +croisant croiser ver 28.84 76.35 0.26 5.34 par:pre; +croise croiser ver 28.84 76.35 6.65 8.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croisement croisement nom m s 2.70 6.22 2.58 4.93 +croisements croisement nom m p 2.70 6.22 0.12 1.28 +croisent croiser ver 28.84 76.35 1.16 5.00 ind:pre:3p; +croiser croiser ver 28.84 76.35 4.76 7.57 ind:pre:2p;inf; +croisera croiser ver 28.84 76.35 0.80 0.00 ind:fut:3s; +croiserai croiser ver 28.84 76.35 0.16 0.00 ind:fut:1s; +croiseraient croiser ver 28.84 76.35 0.05 0.20 cnd:pre:3p; +croiserais croiser ver 28.84 76.35 0.01 0.20 cnd:pre:1s; +croiserait croiser ver 28.84 76.35 0.02 0.27 cnd:pre:3s; +croiserez croiser ver 28.84 76.35 0.16 0.07 ind:fut:2p; +croiserons croiser ver 28.84 76.35 0.02 0.07 ind:fut:1p; +croiseront croiser ver 28.84 76.35 0.11 0.14 ind:fut:3p; +croises croiser ver 28.84 76.35 1.27 0.20 ind:pre:2s; +croisette croisette nom f s 0.00 1.01 0.00 1.01 +croiseur croiseur nom m s 2.46 4.59 1.81 1.69 +croiseurs croiseur nom m p 2.46 4.59 0.65 2.91 +croisez croiser ver 28.84 76.35 1.42 0.20 imp:pre:2p;ind:pre:2p; +croisillon croisillon nom m s 0.01 2.03 0.00 0.47 +croisillons croisillon nom m p 0.01 2.03 0.01 1.55 +croisions croiser ver 28.84 76.35 0.34 0.95 ind:imp:1p; +croisière croisière nom f s 5.47 5.81 5.05 5.07 +croisières croisière nom f p 5.47 5.81 0.42 0.74 +croisâmes croiser ver 28.84 76.35 0.01 0.68 ind:pas:1p; +croisons croiser ver 28.84 76.35 0.30 1.22 imp:pre:1p;ind:pre:1p; +croisât croiser ver 28.84 76.35 0.00 0.07 sub:imp:3s; +croissaient croître ver 4.79 10.34 0.00 0.81 ind:imp:3p; +croissais croître ver 4.79 10.34 0.01 0.07 ind:imp:1s; +croissait croître ver 4.79 10.34 0.33 1.28 ind:imp:3s; +croissance croissance nom f s 4.16 3.99 4.16 3.92 +croissances croissance nom f p 4.16 3.99 0.00 0.07 +croissant croissant nom m s 3.85 18.72 1.54 6.96 +croissante croissant adj f s 1.28 7.43 0.66 3.65 +croissantes croissant adj f p 1.28 7.43 0.02 0.47 +croissants croissant nom m p 3.85 18.72 2.31 11.76 +croisse croître ver 4.79 10.34 0.03 0.07 sub:pre:3s; +croissent croître ver 4.79 10.34 0.33 0.27 ind:pre:3p; +croissez croître ver 4.79 10.34 0.11 0.14 imp:pre:2p; +croisèrent croiser ver 28.84 76.35 0.02 3.38 ind:pas:3p; +croisé croiser ver m s 28.84 76.35 6.38 8.24 par:pas; +croisée croiser ver f s 28.84 76.35 0.92 1.01 par:pas; +croisées croiser ver f p 28.84 76.35 0.34 4.46 par:pas; +croisés croisé adj m p 4.62 17.23 3.76 9.12 +croit croire ver_sup 1711.99 947.23 68.72 60.00 ind:pre:3s; +croix croix nom f 29.10 71.62 29.10 71.62 +cromlech cromlech nom m s 0.02 0.14 0.02 0.07 +cromlechs cromlech nom m p 0.02 0.14 0.00 0.07 +cromorne cromorne nom m s 0.00 0.54 0.00 0.54 +crâna crâner ver 1.37 2.23 0.00 0.07 ind:pas:3s; +crânais crâner ver 1.37 2.23 0.14 0.14 ind:imp:1s; +crânait crâner ver 1.37 2.23 0.00 0.41 ind:imp:3s; +crânant crâner ver 1.37 2.23 0.00 0.14 par:pre; +crâne crâne nom m s 28.60 56.82 26.88 52.23 +crânement crânement adv 0.01 1.15 0.01 1.15 +crânent crâner ver 1.37 2.23 0.01 0.07 ind:pre:3p; +crâner crâner ver 1.37 2.23 0.40 0.88 inf; +crânerie crânerie nom f s 0.00 0.27 0.00 0.27 +crânes crâne nom m p 28.60 56.82 1.72 4.59 +crâneur crâneur nom m s 0.60 0.95 0.56 0.34 +crâneurs crâneur nom m p 0.60 0.95 0.02 0.27 +crâneuse crâneur nom f s 0.60 0.95 0.02 0.14 +crâneuses crâneur nom f p 0.60 0.95 0.00 0.20 +crânez crâner ver 1.37 2.23 0.01 0.07 imp:pre:2p;ind:pre:2p; +crânien crânien adj m s 2.36 1.15 1.58 0.14 +crânienne crânien adj f s 2.36 1.15 0.74 0.88 +crâniens crânien adj m p 2.36 1.15 0.04 0.14 +cronstadt cronstadt nom s 0.00 0.07 0.00 0.07 +crâné crâner ver m s 1.37 2.23 0.02 0.00 par:pas; +crooner crooner nom m s 0.25 0.14 0.23 0.07 +crooners crooner nom m p 0.25 0.14 0.02 0.07 +croqua croquer ver 5.23 12.64 0.00 0.81 ind:pas:3s; +croquai croquer ver 5.23 12.64 0.00 0.14 ind:pas:1s; +croquaient croquer ver 5.23 12.64 0.00 0.34 ind:imp:3p; +croquais croquer ver 5.23 12.64 0.00 0.20 ind:imp:1s; +croquait croquer ver 5.23 12.64 0.02 1.01 ind:imp:3s; +croquant croquant adj m s 0.43 0.68 0.34 0.20 +croquante croquant adj f s 0.43 0.68 0.04 0.07 +croquantes croquant adj f p 0.43 0.68 0.03 0.20 +croquants croquant nom m p 0.23 1.42 0.02 0.61 +croque_madame croque_madame nom m s 0.03 0.00 0.03 0.00 +croque_mitaine croque_mitaine nom m s 0.61 0.20 0.61 0.20 +croque_monsieur croque_monsieur nom m 0.28 0.14 0.28 0.14 +croque_mort croque_mort nom m s 2.20 3.31 1.81 1.28 +croque_mort croque_mort nom m p 2.20 3.31 0.39 2.03 +croque croquer ver 5.23 12.64 1.00 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croquemitaine croquemitaine nom m s 0.39 0.47 0.39 0.34 +croquemitaines croquemitaine nom m p 0.39 0.47 0.00 0.14 +croquemort croquemort nom m s 0.08 0.14 0.08 0.00 +croquemorts croquemort nom m p 0.08 0.14 0.00 0.14 +croquenots croquenot nom m p 0.00 0.95 0.00 0.95 +croquent croquer ver 5.23 12.64 0.05 0.34 ind:pre:3p; +croquer croquer ver 5.23 12.64 2.59 3.99 inf; +croquera croquer ver 5.23 12.64 0.01 0.14 ind:fut:3s; +croquerai croquer ver 5.23 12.64 0.01 0.07 ind:fut:1s; +croqueraient croquer ver 5.23 12.64 0.01 0.07 cnd:pre:3p; +croquerais croquer ver 5.23 12.64 0.02 0.07 cnd:pre:1s; +croquerait croquer ver 5.23 12.64 0.02 0.61 cnd:pre:3s; +croquerons croquer ver 5.23 12.64 0.00 0.07 ind:fut:1p; +croques croquer ver 5.23 12.64 0.22 0.20 ind:pre:2s; +croquet croquet nom m s 0.42 1.49 0.42 1.49 +croqueton croqueton nom m s 0.00 0.14 0.00 0.07 +croquetons croqueton nom m p 0.00 0.14 0.00 0.07 +croquette croquette nom f s 2.04 0.27 0.18 0.07 +croquettes croquette nom f p 2.04 0.27 1.86 0.20 +croqueur croqueur nom m s 0.17 0.07 0.02 0.00 +croqueuse croqueur nom f s 0.17 0.07 0.14 0.07 +croquez croquer ver 5.23 12.64 0.16 0.07 imp:pre:2p;ind:pre:2p; +croquignol croquignol adj m s 0.03 0.27 0.03 0.27 +croquignolet croquignolet adj m s 0.02 0.27 0.01 0.14 +croquignolets croquignolet adj m p 0.02 0.27 0.01 0.14 +croquis_minute croquis_minute nom m 0.00 0.07 0.00 0.07 +croquis croquis nom m 2.63 7.64 2.63 7.64 +croquons croquer ver 5.23 12.64 0.01 0.07 imp:pre:1p;ind:pre:1p; +croquèrent croquer ver 5.23 12.64 0.00 0.14 ind:pas:3p; +croqué croquer ver m s 5.23 12.64 0.34 1.76 par:pas; +croquée croquer ver f s 5.23 12.64 0.33 0.20 par:pas; +croquées croquer ver f p 5.23 12.64 0.10 0.07 par:pas; +croqués croquer ver m p 5.23 12.64 0.01 0.00 par:pas; +crosne crosne nom m s 0.00 0.27 0.00 0.07 +crosnes crosne nom m p 0.00 0.27 0.00 0.20 +cross_country cross_country nom m s 0.05 0.34 0.05 0.34 +cross cross nom m 0.22 0.41 0.22 0.41 +crosse crosse nom f s 2.27 11.96 1.96 10.14 +crosser crosser ver 0.14 0.00 0.14 0.00 inf; +crosses crosse nom f p 2.27 11.96 0.31 1.82 +crossman crossman nom m s 0.01 0.00 0.01 0.00 +crossé crossé adj m s 0.00 0.07 0.00 0.07 +crotale crotale nom m s 0.82 0.95 0.62 0.88 +crotales crotale nom m p 0.82 0.95 0.20 0.07 +croton croton nom m s 0.28 0.07 0.28 0.07 +crottait crotter ver 0.45 1.01 0.00 0.14 ind:imp:3s; +crotte crotte nom f s 6.52 6.76 3.46 3.51 +crotter crotter ver 0.45 1.01 0.02 0.14 inf; +crottes crotte nom f p 6.52 6.76 3.06 3.24 +crottin crottin nom m s 0.58 2.57 0.57 2.30 +crottins crottin nom m p 0.58 2.57 0.01 0.27 +crotté crotté adj m s 0.23 0.95 0.18 0.27 +crottée crotté adj f s 0.23 0.95 0.02 0.14 +crottées crotter ver f p 0.45 1.01 0.11 0.00 par:pas; +crottés crotter ver m p 0.45 1.01 0.29 0.00 par:pas; +crouillat crouillat nom m s 0.00 0.88 0.00 0.27 +crouillats crouillat nom m p 0.00 0.88 0.00 0.61 +crouille crouille adv 0.00 0.07 0.00 0.07 +croula crouler ver 2.37 8.24 0.00 0.14 ind:pas:3s; +croulaient crouler ver 2.37 8.24 0.00 0.95 ind:imp:3p; +croulait crouler ver 2.37 8.24 0.14 1.22 ind:imp:3s; +croulant croulant nom m s 0.92 0.74 0.60 0.27 +croulante croulant adj f s 0.80 3.72 0.26 0.81 +croulantes croulant adj f p 0.80 3.72 0.00 0.61 +croulants croulant nom m p 0.92 0.74 0.33 0.20 +croule crouler ver 2.37 8.24 1.16 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croulement croulement nom m s 0.00 0.07 0.00 0.07 +croulent crouler ver 2.37 8.24 0.26 0.41 ind:pre:3p; +crouler crouler ver 2.37 8.24 0.43 2.91 inf; +croulera crouler ver 2.37 8.24 0.03 0.00 ind:fut:3s; +croulerai crouler ver 2.37 8.24 0.01 0.00 ind:fut:1s; +crouleraient crouler ver 2.37 8.24 0.00 0.07 cnd:pre:3p; +croulerait crouler ver 2.37 8.24 0.02 0.07 cnd:pre:3s; +crouleras crouler ver 2.37 8.24 0.11 0.00 ind:fut:2s; +croulerons crouler ver 2.37 8.24 0.01 0.00 ind:fut:1p; +crouleront crouler ver 2.37 8.24 0.01 0.07 ind:fut:3p; +croulons crouler ver 2.37 8.24 0.16 0.07 ind:pre:1p; +croulât crouler ver 2.37 8.24 0.00 0.07 sub:imp:3s; +croulèrent crouler ver 2.37 8.24 0.00 0.14 ind:pas:3p; +croulé crouler ver m s 2.37 8.24 0.02 0.41 par:pas; +croulée crouler ver f s 2.37 8.24 0.00 0.07 par:pas; +croulés crouler ver m p 2.37 8.24 0.00 0.07 par:pas; +croup croup nom m s 0.14 0.61 0.09 0.61 +croupade croupade nom f s 0.00 0.14 0.00 0.14 +croupe croupe nom f s 0.90 14.05 0.64 10.95 +croupes croupe nom f p 0.90 14.05 0.27 3.11 +croupi croupir ver m s 1.74 4.93 0.10 0.34 par:pas; +croupie croupi adj f s 0.03 1.42 0.02 1.01 +croupier croupier nom m s 0.69 0.88 0.33 0.54 +croupiers croupier nom m p 0.69 0.88 0.29 0.07 +croupies croupi adj f p 0.03 1.42 0.00 0.14 +croupion croupion nom m s 0.52 1.08 0.37 0.88 +croupionne croupionner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +croupions croupion nom m p 0.52 1.08 0.15 0.20 +croupir croupir ver 1.74 4.93 0.86 1.49 inf; +croupira croupir ver 1.74 4.93 0.02 0.07 ind:fut:3s; +croupis croupir ver 1.74 4.93 0.15 0.07 ind:pre:1s;ind:pre:2s; +croupissaient croupir ver 1.74 4.93 0.01 0.41 ind:imp:3p; +croupissais croupir ver 1.74 4.93 0.23 0.07 ind:imp:1s;ind:imp:2s; +croupissait croupir ver 1.74 4.93 0.00 1.08 ind:imp:3s; +croupissant croupissant adj m s 0.01 0.81 0.01 0.20 +croupissante croupissant adj f s 0.01 0.81 0.00 0.47 +croupissantes croupissant adj f p 0.01 0.81 0.00 0.14 +croupissent croupir ver 1.74 4.93 0.16 0.27 ind:pre:3p; +croupissez croupir ver 1.74 4.93 0.01 0.00 ind:pre:2p; +croupissoir croupissoir nom m s 0.00 0.07 0.00 0.07 +croupissure croupissure nom f s 0.00 0.20 0.00 0.20 +croupit croupir ver 1.74 4.93 0.18 0.61 ind:pre:3s;ind:pas:3s; +croupière croupier nom f s 0.69 0.88 0.06 0.20 +croupières croupière nom f p 0.03 0.00 0.03 0.00 +croupon croupon nom m s 0.00 0.20 0.00 0.20 +croustade croustade nom f s 0.02 0.20 0.02 0.07 +croustades croustade nom f p 0.02 0.20 0.00 0.14 +croustillaient croustiller ver 0.11 0.27 0.00 0.07 ind:imp:3p; +croustillait croustiller ver 0.11 0.27 0.00 0.07 ind:imp:3s; +croustillance croustillance nom f s 0.00 0.07 0.00 0.07 +croustillant croustillant adj m s 1.93 1.96 0.95 0.47 +croustillante croustillant adj f s 1.93 1.96 0.45 0.61 +croustillantes croustillant adj f p 1.93 1.96 0.14 0.27 +croustillants croustillant adj m p 1.93 1.96 0.38 0.61 +croustille croustille nom f s 0.05 0.00 0.03 0.00 +croustillent croustiller ver 0.11 0.27 0.01 0.07 ind:pre:3p; +croustilles croustille nom f p 0.05 0.00 0.02 0.00 +croustillon croustillon nom m s 0.00 0.20 0.00 0.07 +croustillons croustillon nom m p 0.00 0.20 0.00 0.14 +crown crown nom m s 0.03 0.00 0.03 0.00 +croyable croyable adj s 6.21 5.14 6.08 4.80 +croyables croyable adj p 6.21 5.14 0.14 0.34 +croyaient croire ver_sup 1711.99 947.23 4.70 11.42 ind:imp:3p; +croyais croire ver_sup 1711.99 947.23 162.56 57.36 ind:imp:1s;ind:imp:2s; +croyait croire ver_sup 1711.99 947.23 22.86 73.24 ind:imp:3s; +croyance croyance nom f s 7.95 6.55 3.30 3.38 +croyances croyance nom f p 7.95 6.55 4.65 3.18 +croyant croire ver_sup 1711.99 947.23 3.17 12.30 par:pre; +croyante croyant adj f s 3.99 5.88 1.14 1.22 +croyantes croyant nom f p 2.99 6.96 0.01 0.27 +croyants croyant nom m p 2.99 6.96 1.63 2.77 +croyez croire ver_sup 1711.99 947.23 152.54 55.07 imp:pre:2p;ind:pre:2p; +croyiez croire ver_sup 1711.99 947.23 3.63 0.81 ind:imp:2p;sub:pre:2p; +croyions croire ver_sup 1711.99 947.23 0.69 1.76 ind:imp:1p; +croyons croire ver_sup 1711.99 947.23 4.54 4.59 imp:pre:1p;ind:pre:1p; +crèche crèche nom f s 3.91 9.39 3.46 8.31 +crèchent crécher ver 1.48 2.43 0.08 0.20 ind:pre:3p; +crèches crèche nom f p 3.91 9.39 0.44 1.08 +crème crème nom s 20.61 24.46 19.72 20.95 +crèmes crème nom p 20.61 24.46 0.90 3.51 +crève crever ver 64.95 81.55 13.21 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +crèvent crever ver 64.95 81.55 2.01 5.47 ind:pre:3p; +crèvera crever ver 64.95 81.55 1.08 0.95 ind:fut:3s; +crèverai crever ver 64.95 81.55 0.41 0.14 ind:fut:1s; +crèveraient crever ver 64.95 81.55 0.04 0.14 cnd:pre:3p; +crèverais crever ver 64.95 81.55 0.22 0.20 cnd:pre:1s;cnd:pre:2s; +crèverait crever ver 64.95 81.55 0.24 1.01 cnd:pre:3s; +crèveras crever ver 64.95 81.55 0.55 0.47 ind:fut:2s; +crèverez crever ver 64.95 81.55 0.35 0.81 ind:fut:2p; +crèveriez crever ver 64.95 81.55 0.03 0.00 cnd:pre:2p; +crèverons crever ver 64.95 81.55 0.12 0.07 ind:fut:1p; +crèveront crever ver 64.95 81.55 0.54 0.20 ind:fut:3p; +crèves crever ver 64.95 81.55 1.98 0.34 ind:pre:2s; +cré cré ono 0.32 1.69 0.32 1.69 +cru croire ver_sup m s 1711.99 947.23 104.49 90.81 par:pas; +créa créer ver 85.17 54.80 2.00 1.82 ind:pas:3s; +créai créer ver 85.17 54.80 0.00 0.14 ind:pas:1s; +créaient créer ver 85.17 54.80 0.13 1.82 ind:imp:3p; +créais créer ver 85.17 54.80 0.23 0.07 ind:imp:1s;ind:imp:2s; +créait créer ver 85.17 54.80 0.82 3.65 ind:imp:3s; +créance créance nom f s 1.09 1.55 0.32 1.22 +créances créance nom f p 1.09 1.55 0.77 0.34 +créancier créancier nom m s 1.42 1.42 0.50 0.07 +créanciers créancier nom m p 1.42 1.42 0.92 1.35 +créant créer ver 85.17 54.80 1.83 1.55 par:pre; +créateur créateur nom m s 6.53 5.88 5.13 4.59 +créateurs créateur nom m p 6.53 5.88 1.29 1.15 +créatif créatif adj m s 3.50 0.20 2.30 0.14 +créatifs créatif adj m p 3.50 0.20 0.63 0.00 +créatine créatine nom f s 0.13 0.00 0.13 0.00 +créatinine créatinine nom f s 0.15 0.00 0.15 0.00 +création création nom f s 11.15 18.72 9.74 17.50 +créationnisme créationnisme nom m s 0.14 0.00 0.14 0.00 +créations création nom f p 11.15 18.72 1.41 1.22 +créative créatif adj f s 3.50 0.20 0.48 0.07 +créatives créatif adj f p 3.50 0.20 0.09 0.00 +créativité créativité nom f s 2.15 0.34 2.15 0.34 +créatrice créateur adj f s 2.80 4.86 1.00 1.89 +créatrices créateur adj f p 2.80 4.86 0.14 0.14 +créature créature nom f s 35.22 27.23 20.41 15.41 +créatures créature nom f p 35.22 27.23 14.81 11.82 +cruauté cruauté nom f s 5.80 15.88 5.70 14.32 +cruautés cruauté nom f p 5.80 15.88 0.11 1.55 +crécelle crécelle nom f s 0.07 1.82 0.03 1.35 +crécelles crécelle nom f p 0.07 1.82 0.03 0.47 +crécerelle crécerelle nom f s 0.04 0.20 0.02 0.14 +crécerelles crécerelle nom f p 0.04 0.20 0.02 0.07 +créchaient crécher ver 1.48 2.43 0.00 0.07 ind:imp:3p; +créchait crécher ver 1.48 2.43 0.07 0.27 ind:imp:3s; +créchant crécher ver 1.48 2.43 0.00 0.07 par:pre; +cruche cruche nom f s 3.04 4.46 2.92 3.92 +crécher crécher ver 1.48 2.43 0.46 0.54 inf; +cruches cruche nom f p 3.04 4.46 0.12 0.54 +cruchon cruchon nom m s 0.05 0.81 0.05 0.68 +cruchons cruchon nom m p 0.05 0.81 0.00 0.14 +crucial crucial adj m s 3.66 2.91 2.23 1.82 +cruciale crucial adj f s 3.66 2.91 0.87 0.61 +crucialement crucialement adv 0.00 0.07 0.00 0.07 +cruciales crucial adj f p 3.66 2.91 0.30 0.27 +cruciaux crucial adj m p 3.66 2.91 0.26 0.20 +crucifia crucifier ver 4.24 2.77 0.01 0.07 ind:pas:3s; +crucifiaient crucifier ver 4.24 2.77 0.05 0.14 ind:imp:3p; +crucifiait crucifier ver 4.24 2.77 0.16 0.27 ind:imp:3s; +crucifiant crucifiant adj m s 0.00 0.14 0.00 0.07 +crucifiante crucifiant adj f s 0.00 0.14 0.00 0.07 +crucifie crucifier ver 4.24 2.77 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crucifiement crucifiement nom m s 0.00 0.20 0.00 0.20 +crucifient crucifier ver 4.24 2.77 0.04 0.07 ind:pre:3p; +crucifier crucifier ver 4.24 2.77 1.13 0.34 inf; +crucifierez crucifier ver 4.24 2.77 0.14 0.07 ind:fut:2p; +crucifieront crucifier ver 4.24 2.77 0.02 0.07 ind:fut:3p; +crucifiez crucifier ver 4.24 2.77 0.33 0.07 imp:pre:2p;ind:pre:2p; +crucifié crucifier ver m s 4.24 2.77 2.12 1.01 par:pas; +crucifiée crucifié adj f s 0.49 1.76 0.02 0.54 +crucifiées crucifier ver f p 4.24 2.77 0.01 0.00 par:pas; +crucifiés crucifié adj m p 0.49 1.76 0.14 0.27 +crucifix crucifix nom m 1.22 7.43 1.22 7.43 +crucifixion crucifixion nom f s 0.69 0.95 0.60 0.68 +crucifixions crucifixion nom f p 0.69 0.95 0.09 0.27 +cruciforme cruciforme adj f s 0.48 0.27 0.47 0.20 +cruciformes cruciforme adj p 0.48 0.27 0.01 0.07 +crucifère crucifère nom f s 0.01 0.27 0.00 0.14 +crucifères crucifère nom f p 0.01 0.27 0.01 0.14 +cruciverbiste cruciverbiste nom s 0.00 0.14 0.00 0.07 +cruciverbistes cruciverbiste nom p 0.00 0.14 0.00 0.07 +crécy crécy nom f s 0.02 0.20 0.02 0.20 +crédence crédence nom f s 0.00 0.95 0.00 0.81 +crédences crédence nom f p 0.00 0.95 0.00 0.14 +crédibilité crédibilité nom f s 1.89 0.34 1.89 0.34 +crédible crédible adj s 3.92 0.88 3.29 0.81 +crédibles crédible adj p 3.92 0.88 0.63 0.07 +crédit_bail crédit_bail nom m s 0.02 0.00 0.02 0.00 +crédit crédit nom m s 28.21 20.27 25.82 17.57 +créditait créditer ver 0.47 0.61 0.01 0.07 ind:imp:3s; +crédite créditer ver 0.47 0.61 0.03 0.07 ind:pre:1s;ind:pre:3s; +créditent créditer ver 0.47 0.61 0.01 0.00 ind:pre:3p; +créditer créditer ver 0.47 0.61 0.08 0.07 inf; +créditeraient créditer ver 0.47 0.61 0.00 0.07 cnd:pre:3p; +créditeur créditeur nom m s 0.22 0.14 0.21 0.00 +créditeurs créditeur nom m p 0.22 0.14 0.01 0.14 +créditez créditer ver 0.47 0.61 0.03 0.00 imp:pre:2p; +créditrice créditeur adj f s 0.07 0.14 0.01 0.00 +crédits crédit nom m p 28.21 20.27 2.38 2.70 +crédité créditer ver m s 0.47 0.61 0.23 0.14 par:pas; +crudité crudité nom f s 0.45 1.96 0.01 1.01 +créditée créditer ver f s 0.47 0.61 0.06 0.14 par:pas; +crédités créditer ver m p 0.47 0.61 0.02 0.07 par:pas; +crudités crudité nom f p 0.45 1.96 0.44 0.95 +crédié crédié adv 0.04 0.20 0.04 0.20 +crédule crédule adj s 1.09 1.42 0.74 1.01 +crédules crédule adj p 1.09 1.42 0.35 0.41 +crédulité crédulité nom f s 0.75 1.69 0.75 1.62 +crédulités crédulité nom f p 0.75 1.69 0.00 0.07 +crée créer ver 85.17 54.80 12.93 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +crue croire ver_sup f s 1711.99 947.23 5.06 2.64 par:pas; +cruel cruel adj m s 28.98 35.88 15.64 14.59 +cruelle cruel adj f s 28.98 35.88 9.47 11.89 +cruellement cruellement adv 1.46 8.65 1.46 8.65 +cruelles cruel adj f p 28.98 35.88 1.30 4.26 +cruels cruel adj m p 28.98 35.88 2.56 5.14 +créent créer ver 85.17 54.80 1.68 2.09 ind:pre:3p; +créer créer ver 85.17 54.80 28.15 16.22 inf; +créera créer ver 85.17 54.80 0.50 0.14 ind:fut:3s; +créerai créer ver 85.17 54.80 0.51 0.00 ind:fut:1s; +créeraient créer ver 85.17 54.80 0.01 0.07 cnd:pre:3p; +créerais créer ver 85.17 54.80 0.21 0.07 cnd:pre:1s;cnd:pre:2s; +créerait créer ver 85.17 54.80 0.49 0.41 cnd:pre:3s; +créerez créer ver 85.17 54.80 0.03 0.00 ind:fut:2p; +créerons créer ver 85.17 54.80 0.14 0.00 ind:fut:1p; +créeront créer ver 85.17 54.80 0.09 0.00 ind:fut:3p; +crues cru adj f p 4.85 15.88 0.34 1.82 +créez créer ver 85.17 54.80 0.75 0.07 imp:pre:2p;ind:pre:2p; +créiez créer ver 85.17 54.80 0.04 0.00 ind:imp:2p; +créions créer ver 85.17 54.80 0.02 0.07 ind:imp:1p; +cruiser cruiser nom m s 0.17 0.00 0.17 0.00 +crémaillère crémaillère nom f s 1.14 1.08 1.13 1.01 +crémaillères crémaillère nom f p 1.14 1.08 0.01 0.07 +crémant crémant adj m s 0.01 0.00 0.01 0.00 +crémateurs crémateur nom m p 0.00 0.14 0.00 0.14 +crémation crémation nom f s 0.78 0.14 0.68 0.14 +crémations crémation nom f p 0.78 0.14 0.10 0.00 +crématoire crématoire nom m s 0.92 0.68 0.65 0.34 +crématoires crématoire nom m p 0.92 0.68 0.27 0.34 +crématorium crématorium nom m s 0.81 0.54 0.81 0.54 +crumble crumble nom m s 0.11 0.00 0.11 0.00 +crémer crémer ver 0.01 0.14 0.01 0.00 inf; +crémerie crémerie nom f s 0.27 0.81 0.27 0.68 +crémeries crémerie nom f p 0.27 0.81 0.00 0.14 +crémeuse crémeux adj f s 0.46 3.24 0.13 0.81 +crémeuses crémeux adj f p 0.46 3.24 0.03 0.27 +crémeux crémeux adj m 0.46 3.24 0.29 2.16 +crémier crémier nom m s 0.34 1.82 0.12 0.54 +crémiers crémier nom m p 0.34 1.82 0.01 0.20 +crémière crémier nom f s 0.34 1.82 0.21 1.01 +crémières crémier nom f p 0.34 1.82 0.00 0.07 +crémone crémone nom f s 0.00 0.34 0.00 0.34 +crémés crémer ver m p 0.01 0.14 0.00 0.14 par:pas; +créneau créneau nom m s 1.76 5.34 1.49 2.57 +créneaux créneau nom m p 1.76 5.34 0.27 2.77 +crénelait créneler ver 0.00 0.47 0.00 0.07 ind:imp:3s; +crénelé crénelé adj m s 0.00 1.15 0.00 0.20 +crénelée crénelé adj f s 0.00 1.15 0.00 0.34 +crénelées crénelé adj f p 0.00 1.15 0.00 0.41 +crénelés crénelé adj m p 0.00 1.15 0.00 0.20 +crénom crénom ono 0.58 0.14 0.58 0.14 +créole créole adj s 0.58 0.88 0.57 0.68 +créoles créole nom p 0.66 1.01 0.14 0.14 +créolophone créolophone adj s 0.01 0.00 0.01 0.00 +créons créer ver 85.17 54.80 0.98 0.41 imp:pre:1p;ind:pre:1p; +créosote créosote nom f s 0.04 0.41 0.04 0.41 +créosotée créosoter ver f s 0.00 0.07 0.00 0.07 par:pas; +créât créer ver 85.17 54.80 0.00 0.14 sub:imp:3s; +crêpage crêpage nom m s 0.06 0.14 0.04 0.07 +crêpages crêpage nom m p 0.06 0.14 0.01 0.07 +crêpaient crêper ver 0.27 1.01 0.00 0.14 ind:imp:3p; +crêpait crêper ver 0.27 1.01 0.00 0.20 ind:imp:3s; +crêpe crêpe nom s 8.44 9.05 3.27 6.01 +crêpelait crêpeler ver 0.00 0.07 0.00 0.07 ind:imp:3s; +crêpelées crêpelé adj f p 0.00 0.20 0.00 0.07 +crêpelure crêpelure nom f s 0.00 0.14 0.00 0.14 +crêpelés crêpelé adj m p 0.00 0.20 0.00 0.14 +crêper crêper ver 0.27 1.01 0.06 0.27 inf; +crêpes crêpe nom p 8.44 9.05 5.16 3.04 +crépi crépir ver m s 0.17 1.28 0.07 0.20 par:pas; +crépie crépir ver f s 0.17 1.28 0.00 0.07 par:pas; +crépies crépir ver f p 0.17 1.28 0.00 0.34 par:pas; +crépine crépine nom f s 0.00 0.07 0.00 0.07 +crépinette crépinette nom f s 0.00 0.14 0.00 0.07 +crépinettes crépinette nom f p 0.00 0.14 0.00 0.07 +crépins crépin nom m p 0.00 0.07 0.00 0.07 +crépir crépir ver 0.17 1.28 0.00 0.07 inf; +crépis crépi nom m p 0.14 3.31 0.14 0.27 +crépissage crépissage nom m s 0.00 0.07 0.00 0.07 +crépissez crépir ver 0.17 1.28 0.10 0.00 ind:pre:2p; +crépita crépiter ver 1.31 10.20 0.00 0.68 ind:pas:3s; +crépitaient crépiter ver 1.31 10.20 0.00 1.42 ind:imp:3p; +crépitait crépiter ver 1.31 10.20 0.00 1.62 ind:imp:3s; +crépitant crépitant adj m s 0.10 1.35 0.02 0.61 +crépitante crépitant adj f s 0.10 1.35 0.01 0.20 +crépitantes crépitant adj f p 0.10 1.35 0.00 0.34 +crépitants crépitant adj m p 0.10 1.35 0.07 0.20 +crépitation crépitation nom f s 0.01 0.00 0.01 0.00 +crépite crépiter ver 1.31 10.20 0.75 1.82 imp:pre:2s;ind:pre:3s; +crépitement crépitement nom m s 0.42 8.18 0.28 7.03 +crépitements crépitement nom m p 0.42 8.18 0.13 1.15 +crépitent crépiter ver 1.31 10.20 0.14 1.15 ind:pre:3p; +crépiter crépiter ver 1.31 10.20 0.15 1.82 inf; +crépiteront crépiter ver 1.31 10.20 0.00 0.07 ind:fut:3p; +crépitèrent crépiter ver 1.31 10.20 0.00 0.68 ind:pas:3p; +crépité crépiter ver m s 1.31 10.20 0.27 0.34 par:pas; +crépon crépon nom m s 0.07 0.47 0.06 0.41 +crépons crépon nom m p 0.07 0.47 0.01 0.07 +crêpé crêper ver m s 0.27 1.01 0.15 0.14 par:pas; +crépu crépu adj m s 0.77 2.84 0.25 0.61 +crêpée crêpé adj f s 0.03 0.27 0.01 0.07 +crépue crépu adj f s 0.77 2.84 0.20 0.68 +crépues crépu adj f p 0.77 2.84 0.00 0.20 +crêpés crêpé adj m p 0.03 0.27 0.02 0.20 +crépus crépu adj m p 0.77 2.84 0.33 1.35 +crépusculaire crépusculaire adj s 0.06 2.30 0.03 1.89 +crépusculaires crépusculaire adj p 0.06 2.30 0.03 0.41 +crépuscule crépuscule nom m s 7.35 26.35 7.12 24.86 +crépuscules crépuscule nom m p 7.35 26.35 0.23 1.49 +créquier créquier nom m s 0.00 0.07 0.00 0.07 +crurent croire ver_sup 1711.99 947.23 0.04 1.62 ind:pas:3p; +crus croire ver_sup m p 1711.99 947.23 1.51 15.20 ind:pas:1s;ind:pas:2s;par:pas; +crésol crésol nom m s 0.01 0.00 0.01 0.00 +crusse croire ver_sup 1711.99 947.23 0.00 0.07 sub:imp:1s; +crussent croire ver_sup 1711.99 947.23 0.00 0.07 sub:imp:3p; +crusses croire ver_sup 1711.99 947.23 0.00 0.14 sub:imp:2s; +crustacé crustacé nom m s 0.95 1.89 0.32 0.54 +crustacés crustacé nom m p 0.95 1.89 0.64 1.35 +crésus crésus nom m 0.01 0.00 0.01 0.00 +crésyl crésyl nom m s 0.01 0.41 0.01 0.41 +crésylée crésylé adj f s 0.00 0.07 0.00 0.07 +crêt crêt nom m s 0.03 0.00 0.03 0.00 +crut croire ver_sup 1711.99 947.23 0.93 34.93 ind:pas:3s; +crétacé crétacé nom m s 0.23 0.07 0.23 0.07 +crétacée crétacé adj f s 0.03 0.00 0.03 0.00 +crêtaient crêter ver 0.00 0.74 0.00 0.07 ind:imp:3p; +crête crête nom f s 4.23 26.22 3.52 21.62 +crételle crételle nom f s 0.00 0.14 0.00 0.14 +crêtes_de_coq crêtes_de_coq nom f p 0.03 0.07 0.03 0.07 +crêtes crête nom f p 4.23 26.22 0.71 4.59 +créèrent créer ver 85.17 54.80 0.13 0.20 ind:pas:3p; +crétin crétin nom m s 33.54 8.58 25.61 4.66 +crétine crétin nom f s 33.54 8.58 0.69 0.54 +crétinerie crétinerie nom f s 0.04 0.14 0.03 0.07 +crétineries crétinerie nom f p 0.04 0.14 0.01 0.07 +crétineux crétineux adj m 0.02 0.00 0.02 0.00 +crétinisant crétinisant adj m s 0.00 0.07 0.00 0.07 +crétinisation crétinisation nom f s 0.00 0.07 0.00 0.07 +crétiniser crétiniser ver 0.01 0.20 0.01 0.00 inf; +crétinisme crétinisme nom m s 0.01 0.41 0.01 0.41 +crétinisé crétiniser ver m s 0.01 0.20 0.00 0.20 par:pas; +crétins crétin nom m p 33.54 8.58 7.24 3.38 +crêtions crêter ver 0.00 0.74 0.00 0.07 ind:imp:1p; +crétois crétois adj m s 0.01 0.88 0.01 0.27 +crétoise crétois adj f s 0.01 0.88 0.00 0.47 +crétoises crétois adj f p 0.01 0.88 0.00 0.14 +crêté crêter ver m s 0.00 0.74 0.00 0.20 par:pas; +crêtée crêter ver f s 0.00 0.74 0.00 0.14 par:pas; +crêtées crêter ver f p 0.00 0.74 0.00 0.20 par:pas; +crêtés crêter ver m p 0.00 0.74 0.00 0.07 par:pas; +créé créer ver m s 85.17 54.80 24.93 12.97 par:pas;par:pas;par:pas; +créée créer ver f s 85.17 54.80 4.58 3.65 par:pas; +créées créer ver f p 85.17 54.80 0.81 1.42 par:pas; +créés créer ver p 85.17 54.80 3.16 1.96 par:pas; +cruzeiro cruzeiro nom m s 0.80 0.07 0.20 0.00 +cruzeiros cruzeiro nom m p 0.80 0.07 0.60 0.07 +cryofracture cryofracture nom f s 0.14 0.00 0.14 0.00 +cryogène cryogène adj s 0.11 0.00 0.11 0.00 +cryogénie cryogénie nom f s 0.27 0.00 0.27 0.00 +cryogénique cryogénique adj s 0.44 0.00 0.34 0.00 +cryogéniques cryogénique adj p 0.44 0.00 0.10 0.00 +cryogénisation cryogénisation nom f s 0.17 0.00 0.17 0.00 +cryonique cryonique adj f s 0.01 0.00 0.01 0.00 +cryotechnique cryotechnique nom f s 0.01 0.00 0.01 0.00 +cryptage cryptage nom m s 0.52 0.00 0.52 0.00 +crypte crypte nom f s 2.91 3.18 2.82 2.70 +crypter crypter ver 1.56 0.34 0.01 0.00 inf; +cryptes crypte nom f p 2.91 3.18 0.08 0.47 +cryptique cryptique adj m s 0.03 0.00 0.01 0.00 +cryptiques cryptique adj f p 0.03 0.00 0.02 0.00 +crypto crypto nom m s 0.04 0.07 0.04 0.07 +cryptocommunistes cryptocommuniste nom p 0.00 0.07 0.00 0.07 +cryptogame cryptogame adj s 0.00 0.07 0.00 0.07 +cryptogames cryptogame nom m p 0.00 0.14 0.00 0.14 +cryptogamique cryptogamique adj f s 0.01 0.00 0.01 0.00 +cryptogramme cryptogramme nom m s 0.40 0.20 0.39 0.00 +cryptogrammes cryptogramme nom m p 0.40 0.20 0.01 0.20 +cryptographe cryptographe nom s 0.02 0.00 0.02 0.00 +cryptographie cryptographie nom f s 0.10 0.07 0.10 0.07 +cryptographique cryptographique adj s 0.03 0.00 0.03 0.00 +cryptologie cryptologie nom f s 0.03 0.00 0.03 0.00 +cryptomère cryptomère nom m s 0.01 0.00 0.01 0.00 +crypté crypter ver m s 1.56 0.34 0.98 0.07 par:pas; +cryptée crypter ver f s 1.56 0.34 0.23 0.00 par:pas; +cryptées crypter ver f p 1.56 0.34 0.12 0.00 par:pas; +cryptés crypter ver m p 1.56 0.34 0.22 0.07 par:pas; +csardas csardas nom f 0.30 0.00 0.30 0.00 +cède céder ver 24.21 61.35 5.99 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cèdent céder ver 24.21 61.35 0.55 1.28 ind:pre:3p; +cèdre cèdre nom m s 0.70 3.85 0.47 2.16 +cèdres cèdre nom m p 0.70 3.85 0.23 1.69 +cèle celer ver 0.68 0.34 0.28 0.00 imp:pre:2s;ind:pre:1s; +cène cène nom f s 0.02 0.20 0.02 0.20 +cèpe cèpe nom m s 0.78 1.15 0.02 0.27 +cèpes cèpe nom m p 0.78 1.15 0.75 0.88 +cuadrilla cuadrilla nom f s 0.00 0.74 0.00 0.68 +cuadrillas cuadrilla nom f p 0.00 0.74 0.00 0.07 +céans céans adv 0.32 0.34 0.32 0.34 +céara céara nom m s 0.14 0.00 0.14 0.00 +cubage cubage nom m s 0.14 0.34 0.14 0.27 +cubages cubage nom m p 0.14 0.34 0.00 0.07 +cubain cubain adj m s 3.28 0.61 1.37 0.34 +cubaine cubain adj f s 3.28 0.61 1.09 0.07 +cubaines cubain adj f p 3.28 0.61 0.05 0.07 +cubains cubain nom m p 2.69 0.61 1.27 0.00 +cubait cuber ver 0.32 0.54 0.00 0.07 ind:imp:3s; +cubasse cuber ver 0.32 0.54 0.00 0.34 sub:imp:1s; +cube cube nom m s 2.81 11.76 1.58 5.74 +cubes cube nom m p 2.81 11.76 1.24 6.01 +cubique cubique adj s 0.05 1.82 0.05 0.88 +cubiques cubique adj p 0.05 1.82 0.00 0.95 +cubisme cubisme nom m s 0.03 0.54 0.03 0.54 +cubiste cubiste adj s 0.04 0.74 0.03 0.47 +cubistes cubiste adj m p 0.04 0.74 0.01 0.27 +cubitainer cubitainer nom m s 0.04 0.00 0.04 0.00 +cubital cubital adj m s 0.04 0.00 0.01 0.00 +cubitale cubital adj f s 0.04 0.00 0.03 0.00 +cubitières cubitière nom f p 0.00 0.14 0.00 0.14 +cubitus cubitus nom m 0.20 0.14 0.20 0.14 +cucaracha cucaracha nom f s 0.15 0.07 0.15 0.07 +cécidomyies cécidomyie nom f p 0.00 0.07 0.00 0.07 +cécité cécité nom f s 1.12 3.65 1.12 3.65 +cucu cucu adj 0.17 0.27 0.17 0.27 +cucul cucul adj m 0.57 0.95 0.57 0.95 +cucurbitacée cucurbitacée nom f s 0.14 0.00 0.14 0.00 +cucurbite cucurbite nom f s 0.01 0.14 0.01 0.00 +cucurbites cucurbite nom f p 0.01 0.14 0.00 0.14 +cucuterie cucuterie nom f s 0.01 0.00 0.01 0.00 +céda céder ver 24.21 61.35 0.39 4.32 ind:pas:3s; +cédai céder ver 24.21 61.35 0.00 0.68 ind:pas:1s; +cédaient céder ver 24.21 61.35 0.03 1.69 ind:imp:3p; +cédais céder ver 24.21 61.35 0.12 0.47 ind:imp:1s;ind:imp:2s; +cédait céder ver 24.21 61.35 0.18 6.28 ind:imp:3s; +cédant céder ver 24.21 61.35 0.50 3.11 par:pre; +céder céder ver 24.21 61.35 7.17 20.54 inf; +cédera céder ver 24.21 61.35 0.58 1.15 ind:fut:3s; +céderai céder ver 24.21 61.35 0.85 0.20 ind:fut:1s; +céderaient céder ver 24.21 61.35 0.02 0.14 cnd:pre:3p; +céderais céder ver 24.21 61.35 0.09 0.20 cnd:pre:1s;cnd:pre:2s; +céderait céder ver 24.21 61.35 0.19 0.68 cnd:pre:3s; +céderas céder ver 24.21 61.35 0.02 0.14 ind:fut:2s; +céderez céder ver 24.21 61.35 0.04 0.14 ind:fut:2p; +céderiez céder ver 24.21 61.35 0.10 0.07 cnd:pre:2p; +céderons céder ver 24.21 61.35 0.14 0.00 ind:fut:1p; +céderont céder ver 24.21 61.35 0.37 0.14 ind:fut:3p; +cédez céder ver 24.21 61.35 1.13 0.20 imp:pre:2p;ind:pre:2p; +cédiez céder ver 24.21 61.35 0.06 0.14 ind:imp:2p; +cédions céder ver 24.21 61.35 0.01 0.20 ind:imp:1p; +cédons céder ver 24.21 61.35 0.69 0.27 imp:pre:1p;ind:pre:1p; +cédât céder ver 24.21 61.35 0.00 0.07 sub:imp:3s; +cédrat cédrat nom m s 0.01 0.27 0.01 0.14 +cédratier cédratier nom m s 0.00 0.07 0.00 0.07 +cédrats cédrat nom m p 0.01 0.27 0.00 0.14 +cédèrent céder ver 24.21 61.35 0.03 0.41 ind:pas:3p; +cédé céder ver m s 24.21 61.35 4.59 11.96 par:pas; +cédée céder ver f s 24.21 61.35 0.00 0.20 par:pas; +cédées céder ver f p 24.21 61.35 0.25 0.20 par:pas; +cédulaire cédulaire adj m s 0.00 0.14 0.00 0.14 +cédule cédule nom f s 0.01 0.00 0.01 0.00 +cédés céder ver m p 24.21 61.35 0.13 0.14 par:pas; +cueillîmes cueillir ver 13.84 25.81 0.00 0.07 ind:pas:1p; +cueillaient cueillir ver 13.84 25.81 0.02 0.47 ind:imp:3p; +cueillais cueillir ver 13.84 25.81 0.34 0.27 ind:imp:1s;ind:imp:2s; +cueillaison cueillaison nom f s 0.01 0.00 0.01 0.00 +cueillait cueillir ver 13.84 25.81 0.16 2.16 ind:imp:3s; +cueillant cueillir ver 13.84 25.81 0.14 1.08 par:pre; +cueille cueillir ver 13.84 25.81 1.91 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cueillent cueillir ver 13.84 25.81 0.19 0.41 ind:pre:3p; +cueillera cueillir ver 13.84 25.81 0.11 0.07 ind:fut:3s; +cueillerai cueillir ver 13.84 25.81 0.02 0.14 ind:fut:1s; +cueillerais cueillir ver 13.84 25.81 0.01 0.00 cnd:pre:1s; +cueillerait cueillir ver 13.84 25.81 0.01 0.00 cnd:pre:3s; +cueilleras cueillir ver 13.84 25.81 0.11 0.07 ind:fut:2s; +cueilleront cueillir ver 13.84 25.81 0.02 0.00 ind:fut:3p; +cueilles cueillir ver 13.84 25.81 0.23 0.14 ind:pre:2s; +cueillette cueillette nom f s 0.57 1.89 0.57 1.62 +cueillettes cueillette nom f p 0.57 1.89 0.00 0.27 +cueilleur cueilleur nom m s 0.24 0.41 0.11 0.00 +cueilleurs cueilleur nom m p 0.24 0.41 0.12 0.34 +cueilleuse cueilleur nom f s 0.24 0.41 0.01 0.00 +cueilleuses cueilleur nom f p 0.24 0.41 0.00 0.07 +cueillez cueillir ver 13.84 25.81 0.73 0.14 imp:pre:2p;ind:pre:2p; +cueilli cueillir ver m s 13.84 25.81 1.34 2.30 par:pas; +cueillie cueillir ver f s 13.84 25.81 0.18 0.95 par:pas; +cueillies cueillir ver f p 13.84 25.81 1.27 1.15 par:pas; +cueillir cueillir ver 13.84 25.81 6.26 10.07 inf; +cueillirent cueillir ver 13.84 25.81 0.00 0.07 ind:pas:3p; +cueillis cueillir ver m p 13.84 25.81 0.62 1.49 ind:pas:1s;par:pas; +cueillissent cueillir ver 13.84 25.81 0.00 0.07 sub:imp:3p; +cueillit cueillir ver 13.84 25.81 0.01 2.36 ind:pas:3s; +cueillons cueillir ver 13.84 25.81 0.16 0.07 imp:pre:1p;ind:pre:1p; +cuesta cuesta nom f s 0.39 0.20 0.39 0.20 +cueva cueva nom f s 0.23 1.01 0.23 0.34 +cuevas cueva nom f p 0.23 1.01 0.00 0.68 +cégep cégep nom m s 0.54 0.00 0.54 0.00 +cégétiste cégétiste nom s 0.00 0.14 0.00 0.07 +cégétistes cégétiste nom p 0.00 0.14 0.00 0.07 +cui_cui cui_cui nom m 0.15 0.34 0.15 0.34 +cuiller cuiller nom f s 2.50 10.20 2.11 8.38 +cuilleron cuilleron nom m s 0.00 0.07 0.00 0.07 +cuillers cuiller nom f p 2.50 10.20 0.39 1.82 +cuillerée cuillerée nom f s 1.15 4.46 0.90 2.70 +cuillerées cuillerée nom f p 1.15 4.46 0.25 1.76 +cuillère cuillère nom f s 7.30 11.89 5.18 9.80 +cuillères cuillère nom f p 7.30 11.89 2.13 2.09 +cuir cuir nom m s 14.25 79.19 14.11 76.08 +cuira cuire ver 21.65 20.41 0.35 0.14 ind:fut:3s; +cuirai cuire ver 21.65 20.41 0.01 0.07 ind:fut:1s; +cuirait cuire ver 21.65 20.41 0.16 0.14 cnd:pre:3s; +cuiras cuire ver 21.65 20.41 0.01 0.00 ind:fut:2s; +cuirassaient cuirasser ver 0.05 1.69 0.00 0.07 ind:imp:3p; +cuirassait cuirasser ver 0.05 1.69 0.00 0.07 ind:imp:3s; +cuirasse cuirasse nom f s 1.07 5.14 0.77 3.72 +cuirassements cuirassement nom m p 0.00 0.07 0.00 0.07 +cuirassent cuirasser ver 0.05 1.69 0.00 0.07 ind:pre:3p; +cuirasser cuirasser ver 0.05 1.69 0.00 0.20 inf; +cuirasses cuirasse nom f p 1.07 5.14 0.30 1.42 +cuirassier cuirassier nom m s 0.25 5.54 0.10 2.30 +cuirassiers cuirassier nom m p 0.25 5.54 0.14 3.24 +cuirassé cuirassé nom m s 1.48 2.64 1.17 1.62 +cuirassée cuirassé adj f s 0.18 2.77 0.00 1.08 +cuirassées cuirassé adj f p 0.18 2.77 0.00 0.54 +cuirassés cuirassé nom m p 1.48 2.64 0.31 1.01 +cuire cuire ver 21.65 20.41 9.12 8.78 inf; +cuirez cuire ver 21.65 20.41 0.00 0.14 ind:fut:2p; +cuiront cuire ver 21.65 20.41 0.02 0.00 ind:fut:3p; +cuirs cuir nom m p 14.25 79.19 0.14 3.11 +cuis cuire ver 21.65 20.41 0.97 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +cuisaient cuire ver 21.65 20.41 0.14 1.22 ind:imp:3p; +cuisait cuire ver 21.65 20.41 0.33 2.09 ind:imp:3s; +cuisant cuisant adj m s 0.49 2.57 0.30 1.08 +cuisante cuisant adj f s 0.49 2.57 0.02 0.81 +cuisantes cuisant adj f p 0.49 2.57 0.10 0.20 +cuisants cuisant adj m p 0.49 2.57 0.06 0.47 +cuise cuire ver 21.65 20.41 0.32 0.14 sub:pre:1s;sub:pre:3s; +cuisent cuire ver 21.65 20.41 0.10 0.95 ind:pre:3p; +cuises cuire ver 21.65 20.41 0.01 0.00 sub:pre:2s; +cuiseurs cuiseur nom m p 0.10 0.00 0.10 0.00 +cuisez cuire ver 21.65 20.41 0.15 0.00 imp:pre:2p;ind:pre:2p; +cuisiez cuire ver 21.65 20.41 0.00 0.07 ind:imp:2p; +cuisina cuisiner ver 27.12 6.15 0.00 0.20 ind:pas:3s; +cuisinaient cuisiner ver 27.12 6.15 0.03 0.07 ind:imp:3p; +cuisinais cuisiner ver 27.12 6.15 0.38 0.07 ind:imp:1s;ind:imp:2s; +cuisinait cuisiner ver 27.12 6.15 1.09 0.74 ind:imp:3s; +cuisinant cuisiner ver 27.12 6.15 0.16 0.27 par:pre; +cuisine cuisine nom f s 87.92 135.41 85.08 123.31 +cuisinent cuisiner ver 27.12 6.15 0.67 0.20 ind:pre:3p; +cuisiner cuisiner ver 27.12 6.15 11.98 2.36 inf; +cuisinera cuisiner ver 27.12 6.15 0.23 0.07 ind:fut:3s; +cuisinerai cuisiner ver 27.12 6.15 0.40 0.07 ind:fut:1s; +cuisinerais cuisiner ver 27.12 6.15 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +cuisinerait cuisiner ver 27.12 6.15 0.02 0.14 cnd:pre:3s; +cuisineras cuisiner ver 27.12 6.15 0.07 0.00 ind:fut:2s; +cuisinerons cuisiner ver 27.12 6.15 0.12 0.00 ind:fut:1p; +cuisines cuisine nom f p 87.92 135.41 2.84 12.09 +cuisinette cuisinette nom f s 0.00 0.14 0.00 0.14 +cuisinez cuisiner ver 27.12 6.15 0.79 0.00 imp:pre:2p;ind:pre:2p; +cuisinier cuisinier nom m s 15.70 26.42 6.79 6.35 +cuisiniers cuisinier nom m p 15.70 26.42 1.25 2.84 +cuisiniez cuisiner ver 27.12 6.15 0.05 0.00 ind:imp:2p; +cuisinière cuisinier nom f s 15.70 26.42 7.66 16.08 +cuisinières cuisinière nom f p 0.19 0.00 0.19 0.00 +cuisinons cuisiner ver 27.12 6.15 0.09 0.00 imp:pre:1p;ind:pre:1p; +cuisiné cuisiner ver m s 27.12 6.15 2.71 0.61 par:pas; +cuisinée cuisiner ver f s 27.12 6.15 0.09 0.14 par:pas; +cuisinées cuisiner ver f p 27.12 6.15 0.02 0.07 par:pas; +cuisinés cuisiné adj m p 0.22 0.61 0.09 0.47 +cuisit cuire ver 21.65 20.41 0.00 0.20 ind:pas:3s; +cuisons cuire ver 21.65 20.41 0.14 0.07 imp:pre:1p;ind:pre:1p; +cuissage cuissage nom m s 0.02 0.34 0.02 0.34 +cuissard cuissard nom m s 0.01 1.76 0.01 0.07 +cuissardes cuissarde nom f p 0.26 0.00 0.26 0.00 +cuissards cuissard nom m p 0.01 1.76 0.00 0.27 +cuisse_madame cuisse_madame nom f s 0.00 0.07 0.00 0.07 +cuisse cuisse nom f s 12.73 69.73 4.38 21.22 +cuisseau cuisseau nom m s 0.14 0.00 0.14 0.00 +cuisses cuisse nom f p 12.73 69.73 8.34 48.51 +cuissette cuissette nom f s 0.00 0.14 0.00 0.07 +cuissettes cuissette nom f p 0.00 0.14 0.00 0.07 +cuisson cuisson nom f s 1.39 3.38 1.38 3.04 +cuissons cuisson nom f p 1.39 3.38 0.01 0.34 +cuissot cuissot nom m s 0.11 0.95 0.10 0.81 +cuissots cuissot nom m p 0.11 0.95 0.01 0.14 +cuistance cuistance nom f s 0.00 1.96 0.00 1.82 +cuistances cuistance nom f p 0.00 1.96 0.00 0.14 +cuistot cuistot nom m s 2.46 4.46 2.24 2.30 +cuistots cuistot nom m p 2.46 4.46 0.22 2.16 +cuistre cuistre nom m s 0.11 1.55 0.10 0.74 +cuistrerie cuistrerie nom f s 0.00 0.34 0.00 0.20 +cuistreries cuistrerie nom f p 0.00 0.34 0.00 0.14 +cuistres cuistre nom m p 0.11 1.55 0.01 0.81 +cuit cuire ver m s 21.65 20.41 7.39 4.59 ind:pre:3s;par:pas; +cuitant cuiter ver 0.20 0.34 0.01 0.00 par:pre; +cuite cuit adj f s 8.39 15.41 2.79 5.74 +cuiter cuiter ver 0.20 0.34 0.12 0.20 inf; +cuites cuit adj f p 8.39 15.41 1.02 3.31 +cuits cuire ver m p 21.65 20.41 2.40 1.15 par:pas; +cuité cuiter ver m s 0.20 0.34 0.07 0.14 par:pas; +cuivra cuivrer ver 0.28 1.08 0.00 0.07 ind:pas:3s; +cuivrait cuivrer ver 0.28 1.08 0.00 0.07 ind:imp:3s; +cuivre cuivre nom m s 5.64 36.08 4.74 30.68 +cuivres cuivre nom m p 5.64 36.08 0.90 5.41 +cuivreux cuivreux adj m 0.03 0.27 0.03 0.27 +cuivré cuivré adj m s 0.07 3.24 0.01 1.22 +cuivrée cuivrer ver f s 0.28 1.08 0.27 0.27 par:pas; +cuivrées cuivré adj f p 0.07 3.24 0.00 0.41 +cuivrés cuivré adj m p 0.07 3.24 0.01 0.47 +cul_blanc cul_blanc nom m s 0.16 0.20 0.01 0.14 +cul_bénit cul_bénit nom m s 0.08 0.20 0.02 0.07 +cul_cul cul_cul adj 0.04 0.00 0.04 0.00 +cul_de_basse_fosse cul_de_basse_fosse nom m s 0.01 0.41 0.01 0.41 +cul_de_four cul_de_four nom m s 0.00 0.20 0.00 0.20 +cul_de_jatte cul_de_jatte nom m s 0.54 1.42 0.42 1.08 +cul_de_lampe cul_de_lampe nom m s 0.01 0.20 0.01 0.14 +cul_de_plomb cul_de_plomb nom m s 0.00 0.07 0.00 0.07 +cul_de_porc cul_de_porc nom m s 0.02 0.00 0.02 0.00 +cul_de_poule cul_de_poule nom m s 0.00 0.14 0.00 0.14 +cul_de_sac cul_de_sac nom m s 0.80 1.55 0.75 1.22 +cul_terreux cul_terreux nom m 2.23 1.28 1.60 0.41 +cul cul nom m s 150.81 68.31 145.85 64.46 +céladon céladon nom m s 0.22 0.47 0.22 0.47 +culasse culasse nom f s 0.60 3.51 0.60 2.84 +culasses culasse nom f p 0.60 3.51 0.00 0.68 +culbuta culbuter ver 1.14 5.54 0.00 0.41 ind:pas:3s; +culbutages culbutage nom m p 0.00 0.07 0.00 0.07 +culbutaient culbuter ver 1.14 5.54 0.02 0.14 ind:imp:3p; +culbutait culbuter ver 1.14 5.54 0.11 0.68 ind:imp:3s; +culbutant culbuter ver 1.14 5.54 0.01 0.47 par:pre; +culbute culbute nom f s 1.72 1.01 1.52 0.68 +culbutent culbuter ver 1.14 5.54 0.14 0.14 ind:pre:3p; +culbuter culbuter ver 1.14 5.54 0.57 1.49 inf; +culbuterais culbuter ver 1.14 5.54 0.01 0.00 cnd:pre:1s; +culbutes culbute nom f p 1.72 1.01 0.20 0.34 +culbuteur culbuteur nom m s 0.06 0.27 0.04 0.14 +culbuteurs culbuteur nom m p 0.06 0.27 0.01 0.14 +culbuto culbuto nom m s 0.03 0.14 0.03 0.14 +culbutèrent culbuter ver 1.14 5.54 0.00 0.07 ind:pas:3p; +culbuté culbuter ver m s 1.14 5.54 0.15 0.74 par:pas; +culbutée culbuter ver f s 1.14 5.54 0.04 0.27 par:pas; +culbutées culbuter ver f p 1.14 5.54 0.00 0.27 par:pas; +culbutés culbuter ver m p 1.14 5.54 0.01 0.20 par:pas; +cule culer ver 0.24 0.14 0.08 0.00 imp:pre:2s;ind:pre:3s; +culer culer ver 0.24 0.14 0.03 0.00 inf; +céleri céleri nom m s 1.62 1.01 1.43 0.81 +céleris céleri nom m p 1.62 1.01 0.19 0.20 +céleste céleste adj s 6.48 7.30 4.43 5.81 +célestes céleste adj p 6.48 7.30 2.04 1.49 +célestin célestin nom m s 0.01 0.20 0.01 0.00 +célestins célestin nom m p 0.01 0.20 0.00 0.20 +culex culex nom m 0.02 0.00 0.02 0.00 +célibat célibat nom m s 1.75 1.35 1.75 1.35 +célibataire célibataire adj s 13.48 4.05 11.02 3.45 +célibataires célibataire nom p 7.69 4.86 3.15 2.64 +célimène célimène nom f s 0.79 0.07 0.79 0.07 +culinaire culinaire adj s 1.60 2.36 1.14 1.22 +culinaires culinaire adj p 1.60 2.36 0.46 1.15 +célinien célinien adj m s 0.00 0.14 0.00 0.07 +célinienne célinien adj f s 0.00 0.14 0.00 0.07 +culmina culminer ver 0.27 1.28 0.01 0.20 ind:pas:3s; +culminait culminer ver 0.27 1.28 0.00 0.41 ind:imp:3s; +culminance culminance nom f s 0.00 0.07 0.00 0.07 +culminant culminant adj m s 0.50 1.82 0.48 1.69 +culminants culminant adj m p 0.50 1.82 0.02 0.14 +culmination culmination nom f s 0.02 0.34 0.02 0.34 +culmine culminer ver 0.27 1.28 0.18 0.27 ind:pre:3s; +culminent culminer ver 0.27 1.28 0.02 0.00 ind:pre:3p; +culminer culminer ver 0.27 1.28 0.03 0.20 inf; +culminé culminer ver m s 0.27 1.28 0.01 0.14 par:pas; +culons culer ver 0.24 0.14 0.00 0.07 imp:pre:1p; +culot culot nom m s 9.73 7.23 9.24 6.76 +culots culot nom m p 9.73 7.23 0.49 0.47 +culotte culotte nom f s 18.14 37.30 13.34 27.70 +culotter culotter ver 0.63 1.42 0.00 0.07 inf; +culottes culotte nom f p 18.14 37.30 4.80 9.59 +culottier culottier nom m s 0.00 0.41 0.00 0.07 +culottiers culottier nom m p 0.00 0.41 0.00 0.07 +culottière culottier nom f s 0.00 0.41 0.00 0.20 +culottières culottier nom f p 0.00 0.41 0.00 0.07 +culotté culotté adj m s 0.70 0.88 0.55 0.47 +culottée culotté adj f s 0.70 0.88 0.15 0.34 +culottées culotter ver f p 0.63 1.42 0.01 0.14 par:pas; +culottés culotté adj m p 0.70 0.88 0.01 0.07 +culpabilisais culpabiliser ver 5.34 0.47 0.35 0.00 ind:imp:1s; +culpabilisait culpabiliser ver 5.34 0.47 0.04 0.14 ind:imp:3s; +culpabilisant culpabiliser ver 5.34 0.47 0.02 0.00 par:pre; +culpabilisation culpabilisation nom f s 0.01 0.20 0.01 0.20 +culpabilise culpabiliser ver 5.34 0.47 1.75 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +culpabilisent culpabiliser ver 5.34 0.47 0.20 0.00 ind:pre:3p; +culpabiliser culpabiliser ver 5.34 0.47 2.07 0.20 inf; +culpabiliserai culpabiliser ver 5.34 0.47 0.02 0.00 ind:fut:1s; +culpabilises culpabiliser ver 5.34 0.47 0.33 0.00 ind:pre:2s; +culpabilisez culpabiliser ver 5.34 0.47 0.25 0.00 imp:pre:2p;ind:pre:2p; +culpabilisiez culpabiliser ver 5.34 0.47 0.03 0.00 ind:imp:2p; +culpabilisons culpabiliser ver 5.34 0.47 0.03 0.00 imp:pre:1p;ind:pre:1p; +culpabilisé culpabiliser ver m s 5.34 0.47 0.22 0.00 par:pas; +culpabilisée culpabiliser ver f s 5.34 0.47 0.02 0.14 par:pas; +culpabilisés culpabiliser ver m p 5.34 0.47 0.01 0.00 par:pas; +culpabilité culpabilité nom f s 11.57 6.22 11.57 6.22 +cul_blanc cul_blanc nom m p 0.16 0.20 0.14 0.07 +cul_bénit cul_bénit nom m p 0.08 0.20 0.06 0.14 +culs_de_basse_fosse culs_de_basse_fosse nom m p 0.00 0.27 0.00 0.27 +cul_de_jatte cul_de_jatte nom m p 0.54 1.42 0.12 0.34 +cul_de_lampe cul_de_lampe nom m p 0.01 0.20 0.00 0.07 +cul_de_sac cul_de_sac nom m p 0.80 1.55 0.05 0.34 +cul_terreux cul_terreux nom m p 2.23 1.28 0.63 0.88 +culs cul nom m p 150.81 68.31 4.96 3.85 +culte culte nom m s 5.37 14.93 4.74 13.58 +cultes culte nom m p 5.37 14.93 0.63 1.35 +célèbre célèbre adj s 31.67 33.58 25.98 24.73 +célèbrent célébrer ver 17.50 20.07 0.40 0.54 ind:pre:3p; +célèbres célèbre adj p 31.67 33.58 5.69 8.85 +cultiva cultiver ver 10.30 13.51 0.14 0.07 ind:pas:3s; +cultivable cultivable adj s 0.07 0.41 0.04 0.20 +cultivables cultivable adj p 0.07 0.41 0.02 0.20 +cultivai cultiver ver 10.30 13.51 0.00 0.07 ind:pas:1s; +cultivaient cultiver ver 10.30 13.51 0.12 0.41 ind:imp:3p; +cultivais cultiver ver 10.30 13.51 0.16 0.20 ind:imp:1s; +cultivait cultiver ver 10.30 13.51 0.44 1.82 ind:imp:3s; +cultivant cultiver ver 10.30 13.51 0.09 0.74 par:pre; +cultivateur cultivateur nom m s 0.82 2.84 0.46 0.88 +cultivateurs cultivateur nom m p 0.82 2.84 0.26 1.76 +cultivatrice cultivateur nom f s 0.82 2.84 0.10 0.07 +cultivatrices cultivateur nom f p 0.82 2.84 0.00 0.14 +cultive cultiver ver 10.30 13.51 2.79 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cultivent cultiver ver 10.30 13.51 0.36 0.81 ind:pre:3p; +cultiver cultiver ver 10.30 13.51 3.34 4.32 inf;; +cultivera cultiver ver 10.30 13.51 0.39 0.00 ind:fut:3s; +cultiverai cultiver ver 10.30 13.51 0.04 0.07 ind:fut:1s; +cultiveraient cultiver ver 10.30 13.51 0.14 0.00 cnd:pre:3p; +cultiverait cultiver ver 10.30 13.51 0.00 0.20 cnd:pre:3s; +cultiveras cultiver ver 10.30 13.51 0.02 0.07 ind:fut:2s; +cultives cultiver ver 10.30 13.51 0.04 0.07 ind:pre:2s; +cultivez cultiver ver 10.30 13.51 0.59 0.07 imp:pre:2p;ind:pre:2p; +cultivions cultiver ver 10.30 13.51 0.02 0.07 ind:imp:1p; +cultivons cultiver ver 10.30 13.51 0.22 0.00 imp:pre:1p;ind:pre:1p; +cultivèrent cultiver ver 10.30 13.51 0.00 0.07 ind:pas:3p; +cultivé cultivé adj m s 2.29 6.89 1.52 2.64 +cultivée cultiver ver f s 10.30 13.51 0.45 0.88 par:pas; +cultivées cultiver ver f p 10.30 13.51 0.04 0.20 par:pas; +cultivés cultivé adj m p 2.29 6.89 0.48 1.69 +cultural cultural adj m s 0.01 0.00 0.01 0.00 +culturalismes culturalisme nom m p 0.00 0.07 0.00 0.07 +culture culture nom f s 22.65 28.51 18.76 24.32 +culturel culturel adj m s 6.04 9.73 2.31 5.14 +culturelle culturel adj f s 6.04 9.73 2.25 2.03 +culturellement culturellement adv 0.36 0.00 0.36 0.00 +culturelles culturel adj f p 6.04 9.73 0.89 1.28 +culturels culturel adj m p 6.04 9.73 0.60 1.28 +cultures culture nom f p 22.65 28.51 3.89 4.19 +culturisme culturisme nom m s 0.41 0.07 0.41 0.07 +culturiste culturiste nom s 0.14 0.20 0.10 0.07 +culturistes culturiste nom p 0.14 0.20 0.05 0.14 +culé culer ver m s 0.24 0.14 0.14 0.07 par:pas; +célébra célébrer ver 17.50 20.07 0.03 0.61 ind:pas:3s; +célébraient célébrer ver 17.50 20.07 0.14 0.95 ind:imp:3p; +célébrais célébrer ver 17.50 20.07 0.04 0.07 ind:imp:1s;ind:imp:2s; +célébrait célébrer ver 17.50 20.07 0.37 1.49 ind:imp:3s; +célébrant célébrer ver 17.50 20.07 0.11 0.81 par:pre; +célébrants célébrant nom m p 0.11 0.74 0.00 0.14 +célébration célébration nom f s 2.79 2.64 2.30 1.96 +célébrations célébration nom f p 2.79 2.64 0.49 0.68 +célébrer célébrer ver 17.50 20.07 7.92 5.74 inf; +célébrera célébrer ver 17.50 20.07 0.06 0.07 ind:fut:3s; +célébrerais célébrer ver 17.50 20.07 0.01 0.07 cnd:pre:1s; +célébrerait célébrer ver 17.50 20.07 0.00 0.20 cnd:pre:3s; +célébrerons célébrer ver 17.50 20.07 0.29 0.00 ind:fut:1p; +célébreront célébrer ver 17.50 20.07 0.17 0.00 ind:fut:3p; +célébriez célébrer ver 17.50 20.07 0.11 0.00 ind:imp:2p; +célébrions célébrer ver 17.50 20.07 0.11 0.07 ind:imp:1p; +célébrissime célébrissime adj s 0.09 0.07 0.09 0.07 +célébrité célébrité nom f s 6.42 4.80 4.15 3.51 +célébrités célébrité nom f p 6.42 4.80 2.27 1.28 +célébrâmes célébrer ver 17.50 20.07 0.10 0.07 ind:pas:1p; +célébrons célébrer ver 17.50 20.07 1.27 0.47 imp:pre:1p;ind:pre:1p; +célébrât célébrer ver 17.50 20.07 0.00 0.14 sub:imp:3s; +célébrèrent célébrer ver 17.50 20.07 0.01 0.14 ind:pas:3p; +célébré célébrer ver m s 17.50 20.07 1.75 2.50 par:pas; +célébrée célébrer ver f s 17.50 20.07 0.20 1.35 par:pas; +célébrées célébrer ver f p 17.50 20.07 0.26 0.81 par:pas; +célébrés célébrer ver m p 17.50 20.07 0.05 0.41 par:pas; +culée culée nom f s 0.00 0.07 0.00 0.07 +célérifère célérifère nom m s 0.00 0.07 0.00 0.07 +célérité célérité nom f s 0.26 0.88 0.26 0.88 +cumin cumin nom m s 0.50 0.74 0.50 0.74 +cumul cumul nom m s 0.02 0.20 0.02 0.20 +cumulaient cumuler ver 0.65 1.35 0.00 0.07 ind:imp:3p; +cumulait cumuler ver 0.65 1.35 0.01 0.34 ind:imp:3s; +cumulant cumuler ver 0.65 1.35 0.03 0.07 par:pre; +cumulard cumulard nom m s 0.01 0.00 0.01 0.00 +cumulatif cumulatif adj m s 0.11 0.20 0.11 0.07 +cumulatifs cumulatif adj m p 0.11 0.20 0.00 0.07 +cumulation cumulation nom f s 0.00 0.07 0.00 0.07 +cumulative cumulatif adj f s 0.11 0.20 0.00 0.07 +cumule cumuler ver 0.65 1.35 0.26 0.34 ind:pre:1s;ind:pre:3s; +cumuler cumuler ver 0.65 1.35 0.07 0.20 inf; +cumulera cumuler ver 0.65 1.35 0.01 0.00 ind:fut:3s; +cumulez cumuler ver 0.65 1.35 0.14 0.07 ind:pre:2p; +cumuliez cumuler ver 0.65 1.35 0.00 0.07 ind:imp:2p; +cumulo_nimbus cumulo_nimbus nom m 0.02 0.14 0.02 0.14 +cumulé cumuler ver m s 0.65 1.35 0.09 0.14 par:pas; +cumulés cumuler ver m p 0.65 1.35 0.04 0.07 par:pas; +cumulus cumulus nom m 0.09 0.81 0.09 0.81 +cénacle cénacle nom m s 0.41 0.27 0.41 0.14 +cénacles cénacle nom m p 0.41 0.27 0.00 0.14 +cunnilinctus cunnilinctus nom m 0.00 0.07 0.00 0.07 +cunnilingus cunnilingus nom m 0.24 0.07 0.24 0.07 +cénobite cénobite nom m s 0.05 0.07 0.01 0.07 +cénobites cénobite nom m p 0.05 0.07 0.04 0.00 +cénotaphe cénotaphe nom m s 0.01 0.41 0.01 0.41 +cunéiforme cunéiforme adj s 0.14 0.20 0.12 0.20 +cunéiformes cunéiforme adj p 0.14 0.20 0.03 0.00 +cépage cépage nom m s 0.04 0.00 0.04 0.00 +céphaline céphaline nom f s 0.01 0.00 0.01 0.00 +céphalique céphalique adj s 0.02 0.20 0.02 0.20 +céphalo_rachidien céphalo_rachidien adj m s 0.30 0.00 0.30 0.00 +céphalopode céphalopode nom m s 0.05 0.00 0.02 0.00 +céphalopodes céphalopode nom m p 0.05 0.00 0.03 0.00 +céphalorachidien céphalorachidien adj m s 0.09 0.00 0.09 0.00 +céphalosporine céphalosporine nom f s 0.03 0.00 0.03 0.00 +céphalée céphalée nom f s 0.14 0.20 0.04 0.07 +céphalées céphalée nom f p 0.14 0.20 0.10 0.14 +cupide cupide adj s 1.47 1.15 1.02 0.88 +cupidement cupidement adv 0.00 0.07 0.00 0.07 +cupides cupide adj p 1.47 1.15 0.45 0.27 +cupidité cupidité nom f s 1.77 1.96 1.77 1.96 +cupidon cupidon nom m s 0.08 0.27 0.04 0.20 +cupidons cupidon nom m p 0.08 0.27 0.04 0.07 +cupressus cupressus nom m 0.00 0.27 0.00 0.27 +cuprifères cuprifère adj p 0.00 0.07 0.00 0.07 +cupriques cuprique adj f p 0.00 0.07 0.00 0.07 +cupronickel cupronickel nom m s 0.01 0.00 0.01 0.00 +cépée cépée nom f s 0.00 0.20 0.00 0.14 +cépées cépée nom f p 0.00 0.20 0.00 0.07 +cupule cupule nom f s 0.01 0.20 0.01 0.14 +cupules cupule nom f p 0.01 0.20 0.00 0.07 +cura curer ver 2.25 3.72 0.01 0.14 ind:pas:3s; +curable curable adj f s 0.33 0.00 0.32 0.00 +curables curable adj p 0.33 0.00 0.01 0.00 +curage curage nom m s 0.00 0.07 0.00 0.07 +curaille curaille nom f s 0.00 0.07 0.00 0.07 +curaillon curaillon nom m s 0.14 0.00 0.14 0.00 +curait curer ver 2.25 3.72 0.02 0.61 ind:imp:3s; +céramique céramique nom f s 0.85 3.24 0.61 2.50 +céramiques céramique nom f p 0.85 3.24 0.24 0.74 +céramiste céramiste nom s 0.13 0.00 0.13 0.00 +curant curer ver 2.25 3.72 0.01 0.14 par:pre; +curare curare nom m s 0.22 0.47 0.22 0.47 +curarisant curarisant adj m s 0.00 0.07 0.00 0.07 +curariser curariser ver 0.01 0.00 0.01 0.00 inf; +curateur curateur nom m s 0.07 0.14 0.06 0.14 +curaçao curaçao nom m s 0.04 0.54 0.04 0.47 +curaçaos curaçao nom m p 0.04 0.54 0.00 0.07 +curatif curatif adj m s 0.65 0.34 0.21 0.14 +curatifs curatif adj m p 0.65 0.34 0.18 0.07 +curative curatif adj f s 0.65 0.34 0.05 0.07 +curatives curatif adj f p 0.65 0.34 0.21 0.07 +curatrice curateur nom f s 0.07 0.14 0.01 0.00 +curcuma curcuma nom m s 0.00 0.07 0.00 0.07 +cure_dent cure_dent nom m s 1.39 0.88 0.60 0.14 +cure_dent cure_dent nom m p 1.39 0.88 0.78 0.74 +cure_pipe cure_pipe nom m s 0.07 0.00 0.05 0.00 +cure_pipe cure_pipe nom m p 0.07 0.00 0.02 0.00 +cure cure nom f s 6.08 9.12 5.60 8.18 +curer curer ver 2.25 3.72 0.80 0.95 inf; +cureras curer ver 2.25 3.72 0.01 0.00 ind:fut:2s; +cures cure nom f p 6.08 9.12 0.48 0.95 +curetage curetage nom m s 0.14 0.00 0.14 0.00 +cureter cureter ver 0.01 0.00 0.01 0.00 inf; +cureton cureton nom m s 0.38 2.50 0.22 1.69 +curetons cureton nom m p 0.38 2.50 0.17 0.81 +curette curette nom f s 0.02 0.00 0.01 0.00 +curettes curette nom f p 0.02 0.00 0.01 0.00 +curial curial adj m s 0.00 0.27 0.00 0.20 +curiales curial adj f p 0.00 0.27 0.00 0.07 +curie curie nom s 0.36 0.14 0.36 0.14 +curieuse curieux adj f s 34.36 66.22 7.81 17.23 +curieusement curieusement adv 1.90 12.84 1.90 12.84 +curieuses curieux adj f p 34.36 66.22 0.44 4.73 +curieux curieux adj m 34.36 66.22 26.11 44.26 +curiosité curiosité nom f s 14.01 54.39 13.70 49.80 +curiosités curiosité nom f p 14.01 54.39 0.31 4.59 +curiste curiste nom s 0.10 0.95 0.00 0.07 +curistes curiste nom p 0.10 0.95 0.10 0.88 +curling curling nom m s 0.12 0.14 0.12 0.14 +curricula curriculum nom m p 0.23 0.41 0.00 0.14 +curriculum_vitae curriculum_vitae nom m 0.13 0.74 0.13 0.74 +curriculum curriculum nom m s 0.23 0.41 0.23 0.27 +curry curry nom m s 1.65 0.14 1.65 0.14 +curseur curseur nom m s 0.11 0.07 0.11 0.07 +cursif cursif adj m s 0.05 0.34 0.02 0.14 +cursive cursif adj f s 0.05 0.34 0.03 0.20 +cursus cursus nom m 0.54 0.07 0.54 0.07 +curé curé nom m s 15.73 51.82 13.65 46.62 +céréale céréale nom f s 4.67 1.69 0.06 0.07 +céréales céréale nom f p 4.67 1.69 4.62 1.62 +céréalier céréalier adj m s 0.00 0.54 0.00 0.14 +céréaliers céréalier adj m p 0.00 0.54 0.00 0.14 +céréalière céréalier adj f s 0.00 0.54 0.00 0.07 +céréalières céréalier adj f p 0.00 0.54 0.00 0.20 +cérébelleuse cérébelleux adj f s 0.03 0.07 0.02 0.07 +cérébelleuses cérébelleux adj f p 0.03 0.07 0.01 0.00 +cérébral cérébral adj m s 11.59 3.31 2.90 0.88 +cérébrale cérébral adj f s 11.59 3.31 6.10 2.23 +cérébralement cérébralement adv 0.04 0.07 0.04 0.07 +cérébrales cérébral adj f p 11.59 3.31 2.09 0.07 +cérébralité cérébralité nom f s 0.00 0.07 0.00 0.07 +cérébraux cérébral adj m p 11.59 3.31 0.51 0.14 +cérébro_spinal cérébro_spinal adj f s 0.03 0.14 0.03 0.14 +curée curée nom f s 0.06 1.22 0.06 1.15 +curées curée nom f p 0.06 1.22 0.00 0.07 +céruléen céruléen adj m s 0.00 0.74 0.00 0.47 +céruléens céruléen adj m p 0.00 0.74 0.00 0.27 +cérumen cérumen nom m s 0.13 0.41 0.13 0.41 +cérémoniaires cérémoniaire nom m p 0.00 0.07 0.00 0.07 +cérémonial cérémonial nom m s 0.69 4.46 0.69 4.39 +cérémoniale cérémonial adj f s 0.13 0.41 0.02 0.07 +cérémonials cérémonial nom m p 0.69 4.46 0.00 0.07 +cérémonie cérémonie nom f s 23.82 30.95 21.72 23.92 +cérémoniel cérémoniel adj m s 0.09 0.14 0.05 0.07 +cérémonielle cérémoniel adj f s 0.09 0.14 0.02 0.00 +cérémoniels cérémoniel adj m p 0.09 0.14 0.01 0.07 +cérémonies cérémonie nom f p 23.82 30.95 2.10 7.03 +cérémonieuse cérémonieux adj f s 0.06 3.24 0.01 0.95 +cérémonieusement cérémonieusement adv 0.02 1.76 0.02 1.76 +cérémonieuses cérémonieux adj f p 0.06 3.24 0.00 0.41 +cérémonieux cérémonieux adj m 0.06 3.24 0.04 1.89 +curés curé nom m p 15.73 51.82 2.08 5.20 +céruse céruse nom f s 0.00 0.14 0.00 0.14 +cérusé cérusé adj m s 0.00 0.14 0.00 0.14 +curve curve adj s 0.09 0.00 0.09 0.00 +curviligne curviligne adj m s 0.01 0.14 0.00 0.07 +curvilignes curviligne adj f p 0.01 0.14 0.01 0.07 +curvimètres curvimètre nom m p 0.00 0.07 0.00 0.07 +césar césar nom m s 0.59 1.15 0.01 0.20 +césarien césarien adj m s 0.11 0.27 0.10 0.00 +césarienne césarien nom f s 1.56 0.47 1.56 0.41 +césariennes césarienne nom f p 0.07 0.00 0.07 0.00 +césariens césarien adj m p 0.11 0.27 0.00 0.07 +césars césar nom m p 0.59 1.15 0.58 0.95 +césium césium nom m s 0.20 0.00 0.20 0.00 +custode custode nom f s 0.00 0.14 0.00 0.14 +custom custom nom m s 0.01 0.00 0.01 0.00 +customisé customiser ver m s 0.07 0.00 0.07 0.00 par:pas; +césure césure nom f s 0.14 0.47 0.14 0.41 +césures césure nom f p 0.14 0.47 0.00 0.07 +cétacé cétacé nom m s 0.19 0.14 0.03 0.14 +cétacés cétacé nom m p 0.19 0.14 0.16 0.00 +cutané cutané adj m s 0.41 0.20 0.05 0.00 +cutanée cutané adj f s 0.41 0.20 0.15 0.14 +cutanées cutané adj f p 0.41 0.20 0.16 0.00 +cutanés cutané adj m p 0.41 0.20 0.05 0.07 +cuti_réaction cuti_réaction nom f s 0.00 0.07 0.00 0.07 +cuti cuti nom f s 0.30 0.47 0.30 0.41 +cuticule cuticule nom f s 0.18 0.07 0.04 0.07 +cuticules cuticule nom f p 0.18 0.07 0.14 0.00 +cutis cuti nom f p 0.30 0.47 0.00 0.07 +cétoine cétoine nom f s 0.00 0.27 0.00 0.14 +cétoines cétoine nom f p 0.00 0.27 0.00 0.14 +cétone cétone nom f s 0.01 0.00 0.01 0.00 +cutter cutter nom m s 2.41 0.07 2.36 0.07 +cutters cutter nom m p 2.41 0.07 0.04 0.00 +cévadille cévadille nom f s 0.00 0.07 0.00 0.07 +cuvaient cuver ver 1.10 2.36 0.01 0.07 ind:imp:3p; +cuvait cuver ver 1.10 2.36 0.03 0.14 ind:imp:3s; +cuvant cuver ver 1.10 2.36 0.01 0.27 par:pre; +cuve cuve nom f s 1.38 4.32 0.86 2.09 +cuveau cuveau nom m s 0.00 0.34 0.00 0.27 +cuveaux cuveau nom m p 0.00 0.34 0.00 0.07 +cévenol cévenol nom m s 0.00 0.07 0.00 0.07 +cuvent cuver ver 1.10 2.36 0.00 0.07 ind:pre:3p; +cuver cuver ver 1.10 2.36 0.51 1.55 inf; +cuvera cuver ver 1.10 2.36 0.01 0.00 ind:fut:3s; +cuverez cuver ver 1.10 2.36 0.01 0.00 ind:fut:2p; +cuves cuve nom f p 1.38 4.32 0.53 2.23 +cuvette cuvette nom f s 2.49 12.97 2.38 11.82 +cuvettes cuvette nom f p 2.49 12.97 0.10 1.15 +cuvier cuvier nom m s 0.00 0.20 0.00 0.14 +cuviers cuvier nom m p 0.00 0.20 0.00 0.07 +cuvé cuver ver m s 1.10 2.36 0.04 0.00 par:pas; +cuvée cuvée nom f s 0.57 0.47 0.55 0.41 +cuvées cuvée nom f p 0.57 0.47 0.02 0.07 +cézigue cézigue nom m s 0.00 3.51 0.00 3.51 +cyan cyan adj s 0.25 0.00 0.25 0.00 +cyanhydrique cyanhydrique adj s 0.17 0.00 0.17 0.00 +cyanoacrylate cyanoacrylate nom m s 0.05 0.00 0.05 0.00 +cyanobactérie cyanobactérie nom f s 0.01 0.00 0.01 0.00 +cyanogène cyanogène nom m s 0.03 0.00 0.03 0.00 +cyanose cyanose nom f s 0.06 0.00 0.06 0.00 +cyanosé cyanoser ver m s 0.23 0.07 0.12 0.07 par:pas; +cyanosée cyanoser ver f s 0.23 0.07 0.12 0.00 par:pas; +cyanure cyanure nom m s 2.23 0.95 2.23 0.95 +cybercafé cybercafé nom m s 0.17 0.00 0.17 0.00 +cyberespace cyberespace nom m s 0.13 0.00 0.13 0.00 +cybermonde cybermonde nom m s 0.01 0.00 0.01 0.00 +cybernautes cybernaute nom p 0.02 0.00 0.02 0.00 +cybernéticien cybernéticien adj m s 0.10 0.00 0.10 0.00 +cybernétique cybernétique adj s 0.26 0.07 0.19 0.07 +cybernétiques cybernétique adj m p 0.26 0.07 0.06 0.00 +cybernétiser cybernétiser ver 0.02 0.00 0.02 0.00 inf; +cyberspace cyberspace nom m s 0.02 0.00 0.02 0.00 +cycas cycas nom m 0.01 0.00 0.01 0.00 +cyclable cyclable adj s 0.05 0.20 0.05 0.14 +cyclables cyclable adj f p 0.05 0.20 0.00 0.07 +cyclamen cyclamen nom m s 0.01 0.34 0.01 0.27 +cyclamens cyclamen nom m p 0.01 0.34 0.00 0.07 +cycle cycle nom m s 8.20 5.81 5.69 4.05 +cycles cycle nom m p 8.20 5.81 2.50 1.76 +cyclique cyclique adj s 0.13 0.41 0.09 0.34 +cycliquement cycliquement adv 0.01 0.07 0.01 0.07 +cycliques cyclique adj m p 0.13 0.41 0.04 0.07 +cyclisme cyclisme nom m s 0.34 1.01 0.34 1.01 +cycliste cycliste nom s 1.08 6.49 0.71 3.65 +cyclistes cycliste nom p 1.08 6.49 0.37 2.84 +cyclo_cross cyclo_cross nom m 0.00 0.07 0.00 0.07 +cyclo_pousse cyclo_pousse nom m 0.05 0.00 0.05 0.00 +cyclo cyclo nom m s 1.06 0.07 1.06 0.07 +cycloïdal cycloïdal adj m s 0.00 0.07 0.00 0.07 +cyclomoteur cyclomoteur nom m s 0.23 0.14 0.23 0.07 +cyclomoteurs cyclomoteur nom m p 0.23 0.14 0.00 0.07 +cyclone cyclone nom m s 1.42 3.51 1.33 3.18 +cyclones cyclone nom m p 1.42 3.51 0.09 0.34 +cyclonique cyclonique adj s 0.03 0.00 0.03 0.00 +cyclope cyclope nom m s 1.31 2.36 1.12 2.23 +cyclopes cyclope nom m p 1.31 2.36 0.20 0.14 +cyclopousses cyclopousse nom m p 0.00 0.07 0.00 0.07 +cyclopéen cyclopéen adj m s 0.01 0.81 0.00 0.20 +cyclopéenne cyclopéen adj f s 0.01 0.81 0.01 0.20 +cyclopéennes cyclopéen adj f p 0.01 0.81 0.00 0.20 +cyclopéens cyclopéen adj m p 0.01 0.81 0.00 0.20 +cyclorama cyclorama nom m s 0.02 0.00 0.02 0.00 +cyclosporine cyclosporine nom f s 0.17 0.00 0.17 0.00 +cyclostomes cyclostome nom m p 0.00 0.07 0.00 0.07 +cyclothymie cyclothymie nom f s 0.10 0.07 0.10 0.07 +cyclothymique cyclothymique adj s 0.05 0.34 0.05 0.34 +cyclotron cyclotron nom m s 0.16 0.27 0.16 0.27 +cyclées cycler ver f p 0.00 0.07 0.00 0.07 par:pas; +cygne cygne nom m s 7.26 7.57 5.28 4.66 +cygnes cygne nom m p 7.26 7.57 1.99 2.91 +cylindre cylindre nom m s 1.60 5.20 0.62 3.11 +cylindres cylindre nom m p 1.60 5.20 0.97 2.09 +cylindrique cylindrique adj s 0.35 3.45 0.10 2.23 +cylindriques cylindrique adj p 0.35 3.45 0.26 1.22 +cylindré cylindrer ver m s 0.02 0.20 0.00 0.07 par:pas; +cylindrée cylindrée nom f s 0.41 0.68 0.36 0.61 +cylindrées cylindrée nom f p 0.41 0.68 0.04 0.07 +cylindrés cylindrer ver m p 0.02 0.20 0.00 0.07 par:pas; +cymbale cymbale nom f s 0.45 1.89 0.19 0.14 +cymbales cymbale nom f p 0.45 1.89 0.26 1.76 +cymbaliste cymbaliste nom s 0.14 0.27 0.14 0.07 +cymbalistes cymbaliste nom p 0.14 0.27 0.00 0.20 +cymbalum cymbalum nom m s 0.00 0.14 0.00 0.14 +cymes cyme nom f p 0.00 0.07 0.00 0.07 +cynips cynips nom m 0.01 0.00 0.01 0.00 +cynique cynique adj s 4.70 6.42 3.90 4.86 +cyniquement cyniquement adv 0.00 0.74 0.00 0.74 +cyniques cynique adj p 4.70 6.42 0.80 1.55 +cynisme cynisme nom m s 1.95 6.49 1.95 6.42 +cynismes cynisme nom m p 1.95 6.49 0.00 0.07 +cynocéphale cynocéphale nom m s 0.01 0.14 0.01 0.07 +cynocéphales cynocéphale nom m p 0.01 0.14 0.00 0.07 +cynodrome cynodrome nom m s 0.01 0.00 0.01 0.00 +cynophile cynophile adj f s 0.04 0.00 0.04 0.00 +cynos cyno nom m p 0.00 0.07 0.00 0.07 +cynégétique cynégétique adj f s 0.00 0.27 0.00 0.14 +cynégétiques cynégétique adj m p 0.00 0.27 0.00 0.14 +cyphoscoliose cyphoscoliose nom f s 0.01 0.00 0.01 0.00 +cyphose cyphose nom f s 0.01 0.07 0.01 0.07 +cyprin cyprin nom m s 0.00 1.82 0.00 1.62 +cyprinidé cyprinidé nom m s 0.00 0.14 0.00 0.07 +cyprinidés cyprinidé nom m p 0.00 0.14 0.00 0.07 +cyprins cyprin nom m p 0.00 1.82 0.00 0.20 +cypriote cypriote nom s 0.01 0.47 0.00 0.07 +cypriotes cypriote nom p 0.01 0.47 0.01 0.41 +cyprès cyprès nom m 0.52 8.51 0.52 8.51 +cyrard cyrard nom m s 0.00 0.27 0.00 0.20 +cyrards cyrard nom m p 0.00 0.27 0.00 0.07 +cyrillique cyrillique adj m s 0.22 0.47 0.07 0.14 +cyrilliques cyrillique adj p 0.22 0.47 0.15 0.34 +cystique cystique adj s 0.09 0.00 0.09 0.00 +cystite cystite nom f s 0.09 0.00 0.09 0.00 +cystotomie cystotomie nom f s 0.01 0.00 0.01 0.00 +cytises cytise nom m p 0.00 0.27 0.00 0.27 +cytologie cytologie nom f s 0.01 0.00 0.01 0.00 +cytologiques cytologique adj f p 0.00 0.07 0.00 0.07 +cytomégalovirus cytomégalovirus nom m 0.08 0.00 0.08 0.00 +cytoplasme cytoplasme nom m s 0.04 0.00 0.04 0.00 +cytoplasmique cytoplasmique adj m s 0.01 0.00 0.01 0.00 +cytosine cytosine nom f s 0.04 0.00 0.04 0.00 +cytotoxique cytotoxique adj s 0.04 0.00 0.04 0.00 +czar czar nom m s 0.00 0.54 0.00 0.41 +czardas czardas nom f 0.01 0.14 0.01 0.14 +czars czar nom m p 0.00 0.54 0.00 0.14 +d_ d_ pre 7224.74 11876.35 7224.74 11876.35 +d_abord d_abord adv 175.45 169.32 175.45 169.32 +d_autres d_autres adj_ind p 133.34 119.73 133.34 119.73 +d_emblée d_emblée adv 1.31 8.38 1.31 8.38 +d_ores_et_déjà d_ores_et_déjà adv 0.26 1.28 0.26 1.28 +d d pre 54.68 2.97 54.68 2.97 +dîme dîme nom f s 0.44 1.28 0.43 1.22 +dîmes dîme nom f p 0.44 1.28 0.01 0.07 +dîna dîner ver 79.30 59.66 0.10 1.08 ind:pas:3s; +dînai dîner ver 79.30 59.66 0.00 0.68 ind:pas:1s; +dînaient dîner ver 79.30 59.66 0.05 1.55 ind:imp:3p; +dînais dîner ver 79.30 59.66 0.31 0.95 ind:imp:1s;ind:imp:2s; +dînait dîner ver 79.30 59.66 0.88 3.24 ind:imp:3s; +dînant dîner ver 79.30 59.66 0.33 1.15 par:pre; +dînatoire dînatoire adj s 0.29 0.14 0.29 0.00 +dînatoires dînatoire adj f p 0.29 0.14 0.00 0.14 +dîne dîner ver 79.30 59.66 8.22 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dînent dîner ver 79.30 59.66 0.47 0.47 ind:pre:3p; +dîner dîner nom m s 88.45 68.58 84.73 60.00 +dînera dîner ver 79.30 59.66 1.36 0.54 ind:fut:3s; +dînerai dîner ver 79.30 59.66 0.22 0.14 ind:fut:1s; +dîneraient dîner ver 79.30 59.66 0.00 0.27 cnd:pre:3p; +dînerais dîner ver 79.30 59.66 0.26 0.07 cnd:pre:1s;cnd:pre:2s; +dînerait dîner ver 79.30 59.66 0.14 0.20 cnd:pre:3s; +dîneras dîner ver 79.30 59.66 0.22 0.07 ind:fut:2s; +dînerez dîner ver 79.30 59.66 0.55 0.27 ind:fut:2p; +dîneriez dîner ver 79.30 59.66 0.20 0.00 cnd:pre:2p; +dînerions dîner ver 79.30 59.66 0.00 0.14 cnd:pre:1p; +dînerons dîner ver 79.30 59.66 0.59 0.47 ind:fut:1p; +dîneront dîner ver 79.30 59.66 0.05 0.00 ind:fut:3p; +dîners dîner nom m p 88.45 68.58 3.72 8.58 +dînes dîner ver 79.30 59.66 1.42 0.14 ind:pre:2s; +dînette dînette nom f s 0.59 1.55 0.49 1.35 +dînettes dînette nom f p 0.59 1.55 0.10 0.20 +dîneur dîneur nom m s 0.01 2.57 0.01 0.14 +dîneurs dîneur nom m p 0.01 2.57 0.00 2.23 +dîneuse dîneur nom f s 0.01 2.57 0.00 0.20 +dînez dîner ver 79.30 59.66 2.13 0.27 imp:pre:2p;ind:pre:2p; +dîniez dîner ver 79.30 59.66 0.20 0.00 ind:imp:2p; +dînions dîner ver 79.30 59.66 0.26 1.69 ind:imp:1p; +dînâmes dîner ver 79.30 59.66 0.01 0.34 ind:pas:1p; +dînons dîner ver 79.30 59.66 1.95 1.89 imp:pre:1p;ind:pre:1p; +dînât dîner ver 79.30 59.66 0.00 0.07 sub:imp:3s; +dînèrent dîner ver 79.30 59.66 0.04 1.22 ind:pas:3p; +dîné dîner ver m s 79.30 59.66 7.54 6.15 par:pas; +dît dire ver_sup 5946.17 4832.50 0.34 1.22 sub:imp:3s; +dîtes dire ver_sup 5946.17 4832.50 10.24 0.07 ind:pas:2p; +dôle dôle nom m s 0.01 0.00 0.01 0.00 +dôme dôme nom m s 1.93 4.93 1.81 3.78 +dômes dôme nom m p 1.93 4.93 0.12 1.15 +dôngs dông nom m p 0.14 0.00 0.14 0.00 +dû devoir ver_sup m s 3232.80 1318.24 363.68 243.65 par:pas; +dûment dûment adv 0.55 4.32 0.55 4.32 +dûmes devoir ver_sup 3232.80 1318.24 0.04 1.55 ind:pas:1p; +dût devoir ver_sup 3232.80 1318.24 0.65 4.19 sub:imp:3s; +da da ono 8.02 3.24 8.02 3.24 +daïmios daïmio nom m p 0.00 0.14 0.00 0.14 +daïquiri daïquiri nom m s 0.14 0.14 0.01 0.14 +daïquiris daïquiri nom m p 0.14 0.14 0.14 0.00 +dab dab nom m s 0.17 1.35 0.17 1.28 +daba daba nom f s 0.01 0.00 0.01 0.00 +dabe dabe nom m s 0.00 1.42 0.00 1.42 +dabs dab nom m p 0.17 1.35 0.00 0.07 +dabuche dabuche nom f s 0.00 0.54 0.00 0.47 +dabuches dabuche nom f p 0.00 0.54 0.00 0.07 +dace dace adj s 0.04 0.61 0.03 0.07 +daces dace adj p 0.04 0.61 0.01 0.54 +dache dache nom m s 0.00 0.27 0.00 0.27 +dacique dacique adj s 0.00 0.14 0.00 0.14 +dacron dacron nom m s 0.02 0.07 0.02 0.07 +dactyle dactyle nom m s 0.00 0.20 0.00 0.07 +dactyles dactyle nom m p 0.00 0.20 0.00 0.14 +dactylo dactylo nom s 0.93 4.66 0.73 2.97 +dactylographe dactylographe nom s 0.10 0.34 0.00 0.34 +dactylographes dactylographe nom p 0.10 0.34 0.10 0.00 +dactylographie dactylographie nom f s 0.04 0.41 0.04 0.41 +dactylographier dactylographier ver 0.09 0.61 0.06 0.20 inf; +dactylographié dactylographié adj m s 0.11 1.08 0.06 0.20 +dactylographiée dactylographié adj f s 0.11 1.08 0.04 0.34 +dactylographiées dactylographié adj f p 0.11 1.08 0.00 0.41 +dactylographiés dactylographié adj m p 0.11 1.08 0.01 0.14 +dactyloptères dactyloptère nom m p 0.02 0.00 0.02 0.00 +dactylos dactylo nom p 0.93 4.66 0.20 1.69 +dactyloscopie dactyloscopie nom f s 0.11 0.00 0.11 0.00 +dada dada nom m s 1.90 2.57 1.80 1.96 +dadaïsme dadaïsme nom m s 0.01 0.00 0.01 0.00 +dadaïste dadaïste adj f s 0.01 0.07 0.01 0.00 +dadaïstes dadaïste nom p 0.01 0.07 0.01 0.07 +dadais dadais nom m 0.34 1.28 0.34 1.28 +dadas dada nom m p 1.90 2.57 0.10 0.61 +dague dague nom f s 2.46 2.09 2.19 1.55 +daguerréotype daguerréotype nom m s 0.10 0.34 0.10 0.27 +daguerréotypes daguerréotype nom m p 0.10 0.34 0.00 0.07 +dagues dague nom f p 2.46 2.09 0.27 0.54 +daguet daguet nom m s 0.00 0.41 0.00 0.34 +daguets daguet nom m p 0.00 0.41 0.00 0.07 +dagué daguer ver m s 0.00 0.07 0.00 0.07 par:pas; +dahlia dahlia nom m s 0.02 2.50 0.00 0.20 +dahlias dahlia nom m p 0.02 2.50 0.02 2.30 +dahoméenne dahoméen adj f s 0.00 0.07 0.00 0.07 +dahu dahu nom m s 0.19 0.14 0.18 0.14 +dahus dahu nom m p 0.19 0.14 0.01 0.00 +daigna daigner ver 4.41 9.39 0.00 1.69 ind:pas:3s; +daignaient daigner ver 4.41 9.39 0.00 0.34 ind:imp:3p; +daignait daigner ver 4.41 9.39 0.13 1.49 ind:imp:3s; +daignant daigner ver 4.41 9.39 0.01 0.20 par:pre; +daigne daigner ver 4.41 9.39 1.09 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +daignent daigner ver 4.41 9.39 0.07 0.27 ind:pre:3p; +daigner daigner ver 4.41 9.39 0.02 0.34 inf; +daignera daigner ver 4.41 9.39 0.03 0.27 ind:fut:3s; +daigneraient daigner ver 4.41 9.39 0.01 0.07 cnd:pre:3p; +daignerais daigner ver 4.41 9.39 0.00 0.07 cnd:pre:1s; +daignerait daigner ver 4.41 9.39 0.19 0.00 cnd:pre:3s; +daigneras daigner ver 4.41 9.39 0.01 0.00 ind:fut:2s; +daignes daigner ver 4.41 9.39 0.09 0.00 ind:pre:2s; +daignez daigner ver 4.41 9.39 1.86 0.47 imp:pre:2p;ind:pre:2p; +daignons daigner ver 4.41 9.39 0.01 0.00 imp:pre:1p; +daignât daigner ver 4.41 9.39 0.00 0.34 sub:imp:3s; +daignèrent daigner ver 4.41 9.39 0.00 0.07 ind:pas:3p; +daigné daigner ver m s 4.41 9.39 0.89 1.35 par:pas; +daim daim nom m s 1.65 5.74 1.41 5.14 +daims daim nom m p 1.65 5.74 0.25 0.61 +daine daine nom f s 0.00 0.07 0.00 0.07 +daiquiri daiquiri nom m s 0.41 0.14 0.27 0.14 +daiquiris daiquiri nom m p 0.41 0.14 0.14 0.00 +dais dais nom m 0.23 3.04 0.23 3.04 +dakarois dakarois adj m s 0.00 0.14 0.00 0.07 +dakaroise dakarois adj f s 0.00 0.14 0.00 0.07 +dakin dakin nom m s 0.03 0.07 0.03 0.07 +dakotas dakota nom p 0.05 0.00 0.05 0.00 +dal dal nom m s 0.01 0.00 0.01 0.00 +dalaï_lama dalaï_lama nom m s 0.00 0.20 0.00 0.20 +dale dale nom m s 0.16 0.00 0.16 0.00 +dalinienne dalinien adj f s 0.00 0.07 0.00 0.07 +dallage dallage nom m s 0.04 3.04 0.04 2.91 +dallages dallage nom m p 0.04 3.04 0.00 0.14 +dalle dalle nom f s 13.00 29.19 12.35 13.38 +daller daller ver 1.62 3.99 0.43 0.00 inf; +dalles dalle nom f p 13.00 29.19 0.65 15.81 +dallé daller ver m s 1.62 3.99 0.00 0.88 par:pas; +dallée daller ver f s 1.62 3.99 0.00 0.88 par:pas; +dallées daller ver f p 1.62 3.99 0.00 0.54 par:pas; +dallés daller ver m p 1.62 3.99 0.00 0.34 par:pas; +dalmate dalmate adj s 0.30 0.41 0.30 0.27 +dalmates dalmate adj p 0.30 0.41 0.00 0.14 +dalmatien dalmatien nom m s 0.33 0.20 0.14 0.00 +dalmatienne dalmatien nom f s 0.33 0.20 0.11 0.00 +dalmatiens dalmatien nom m p 0.33 0.20 0.08 0.20 +dalmatique dalmatique nom f s 0.02 0.68 0.02 0.54 +dalmatiques dalmatique nom f p 0.02 0.68 0.00 0.14 +daltonien daltonien adj m s 0.48 0.00 0.28 0.00 +daltonienne daltonien adj f s 0.48 0.00 0.16 0.00 +daltoniennes daltonien adj f p 0.48 0.00 0.01 0.00 +daltoniens daltonien adj m p 0.48 0.00 0.03 0.00 +daltonisme daltonisme nom m s 0.02 0.00 0.02 0.00 +daltons dalton nom m p 0.00 0.07 0.00 0.07 +dam dam nom m s 0.81 1.69 0.70 1.62 +damage damage nom m s 0.10 0.00 0.10 0.00 +damas damas nom m 0.42 0.61 0.42 0.61 +damasquin damasquin nom m s 0.00 0.14 0.00 0.07 +damasquinage damasquinage nom m s 0.01 0.00 0.01 0.00 +damasquinerie damasquinerie nom f s 0.00 0.07 0.00 0.07 +damasquins damasquin nom m p 0.00 0.14 0.00 0.07 +damasquiné damasquiné adj m s 0.00 0.27 0.00 0.07 +damasquinée damasquiné adj f s 0.00 0.27 0.00 0.07 +damasquinure damasquinure nom f s 0.00 0.07 0.00 0.07 +damasquinés damasquiné adj m p 0.00 0.27 0.00 0.14 +damassé damassé adj m s 0.05 1.35 0.00 0.27 +damassée damassé adj f s 0.05 1.35 0.03 0.81 +damassées damassé adj f p 0.05 1.35 0.02 0.20 +damassés damassé adj m p 0.05 1.35 0.00 0.07 +dame_jeanne dame_jeanne nom f s 0.01 0.20 0.01 0.07 +dame dame ono 1.01 1.49 1.01 1.49 +dament damer ver 11.60 3.78 0.00 0.07 ind:pre:3p; +damer damer ver 11.60 3.78 0.04 0.14 inf; +dameret dameret nom m s 0.00 0.07 0.00 0.07 +dameriez damer ver 11.60 3.78 0.01 0.00 cnd:pre:2p; +dame_jeanne dame_jeanne nom f p 0.01 0.20 0.00 0.14 +dames dame nom f p 111.20 151.35 24.70 45.20 +damez damer ver 11.60 3.78 0.02 0.00 imp:pre:2p; +damier damier nom m s 0.47 2.57 0.42 1.96 +damiers damier nom m p 0.47 2.57 0.04 0.61 +damnable damnable adj f s 0.01 0.20 0.01 0.00 +damnables damnable adj p 0.01 0.20 0.00 0.20 +damnait damner ver 4.36 3.78 0.00 0.07 ind:imp:3s; +damnant damner ver 4.36 3.78 0.00 0.07 par:pre; +damnation damnation nom f s 1.70 3.92 1.70 3.72 +damnations damnation nom f p 1.70 3.92 0.00 0.20 +damne damner ver 4.36 3.78 0.14 0.61 ind:pre:1s;ind:pre:3s; +damned damned ono 0.26 0.41 0.26 0.41 +damnent damner ver 4.36 3.78 0.00 0.14 ind:pre:3p; +damner damner ver 4.36 3.78 0.61 0.88 inf; +damnera damner ver 4.36 3.78 0.17 0.07 ind:fut:3s; +damneraient damner ver 4.36 3.78 0.02 0.00 cnd:pre:3p; +damnerais damner ver 4.36 3.78 0.03 0.41 cnd:pre:1s; +damnez damner ver 4.36 3.78 0.02 0.00 imp:pre:2p; +damné damner ver m s 4.36 3.78 2.12 0.68 par:pas; +damnée damné adj f s 2.82 2.23 1.87 0.81 +damnées damné adj f p 2.82 2.23 0.28 0.41 +damnés damné nom m p 2.57 3.24 1.33 2.23 +damoiseau damoiseau nom m s 11.41 20.00 0.16 0.00 +damoiselle damoiselle nom f s 0.60 0.14 0.55 0.14 +damoiselles damoiselle nom f p 0.60 0.14 0.05 0.00 +dams dam nom m p 0.81 1.69 0.11 0.07 +damé damer ver m s 11.60 3.78 0.04 0.00 par:pas; +damée damer ver f s 11.60 3.78 0.00 0.07 par:pas; +damées damer ver f p 11.60 3.78 0.00 0.14 par:pas; +dan dan nom m s 0.49 0.07 0.49 0.07 +danaïde danaïde nom f s 0.00 0.07 0.00 0.07 +dancing dancing nom m s 1.15 3.51 0.94 2.70 +dancings dancing nom m p 1.15 3.51 0.20 0.81 +dandina dandiner ver 0.26 7.30 0.00 0.34 ind:pas:3s; +dandinaient dandiner ver 0.26 7.30 0.00 0.34 ind:imp:3p; +dandinais dandiner ver 0.26 7.30 0.00 0.07 ind:imp:1s; +dandinait dandiner ver 0.26 7.30 0.01 1.76 ind:imp:3s; +dandinant dandiner ver 0.26 7.30 0.03 2.57 par:pre; +dandine dandiner ver 0.26 7.30 0.09 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dandinement dandinement nom m s 0.00 0.74 0.00 0.54 +dandinements dandinement nom m p 0.00 0.74 0.00 0.20 +dandinent dandiner ver 0.26 7.30 0.02 0.20 ind:pre:3p; +dandiner dandiner ver 0.26 7.30 0.09 0.88 inf; +dandinez dandiner ver 0.26 7.30 0.02 0.07 imp:pre:2p;ind:pre:2p; +dandinée dandiner ver f s 0.26 7.30 0.00 0.07 par:pas; +dandinés dandiner ver m p 0.26 7.30 0.00 0.07 par:pas; +dandy dandy nom m s 2.87 3.51 2.61 3.18 +dandys dandy nom m p 2.87 3.51 0.26 0.34 +dandysme dandysme nom m s 0.00 0.41 0.00 0.41 +danger danger nom m s 80.61 55.27 76.73 45.20 +dangereuse dangereux adj f s 101.84 47.57 13.61 10.27 +dangereusement dangereusement adv 2.13 5.88 2.13 5.88 +dangereuses dangereux adj f p 101.84 47.57 4.75 4.53 +dangereux dangereux adj m 101.84 47.57 83.48 32.77 +dangerosité dangerosité nom f s 0.01 0.14 0.01 0.14 +dangers danger nom m p 80.61 55.27 3.87 10.07 +dano dano nom m s 0.25 0.07 0.25 0.07 +danois danois adj m 3.37 2.03 2.77 1.22 +danoise danois adj f s 3.37 2.03 0.57 0.34 +danoises danois adj f p 3.37 2.03 0.02 0.47 +dans dans pre 4658.59 8296.08 4658.59 8296.08 +dansa danser ver 137.40 92.57 0.07 1.15 ind:pas:3s; +dansai danser ver 137.40 92.57 0.00 0.14 ind:pas:1s; +dansaient danser ver 137.40 92.57 1.20 8.99 ind:imp:3p; +dansais danser ver 137.40 92.57 2.43 1.69 ind:imp:1s;ind:imp:2s; +dansait danser ver 137.40 92.57 3.15 13.85 ind:imp:3s; +dansant danser ver 137.40 92.57 2.25 5.54 par:pre; +dansante dansant adj f s 2.44 6.89 0.57 1.76 +dansantes dansant adj f p 2.44 6.89 0.64 1.96 +dansants dansant adj m p 2.44 6.89 0.41 0.61 +danse danse nom f s 51.23 35.27 46.92 29.19 +dansent danser ver 137.40 92.57 5.58 5.54 ind:pre:3p; +danser danser ver 137.40 92.57 70.06 35.41 ind:pre:2p;inf; +dansera danser ver 137.40 92.57 1.44 0.20 ind:fut:3s; +danserai danser ver 137.40 92.57 1.30 0.20 ind:fut:1s; +danseraient danser ver 137.40 92.57 0.01 0.27 cnd:pre:3p; +danserais danser ver 137.40 92.57 0.19 0.14 cnd:pre:1s;cnd:pre:2s; +danserait danser ver 137.40 92.57 0.25 0.34 cnd:pre:3s; +danseras danser ver 137.40 92.57 0.34 0.20 ind:fut:2s; +danserez danser ver 137.40 92.57 0.53 0.00 ind:fut:2p; +danseriez danser ver 137.40 92.57 0.01 0.00 cnd:pre:2p; +danserions danser ver 137.40 92.57 0.03 0.00 cnd:pre:1p; +danserons danser ver 137.40 92.57 0.31 0.07 ind:fut:1p; +danseront danser ver 137.40 92.57 0.14 0.20 ind:fut:3p; +danses danser ver 137.40 92.57 6.81 0.47 ind:pre:2s;sub:pre:2s; +danseur danseur nom m s 19.54 25.68 5.85 5.00 +danseurs danseur nom m p 19.54 25.68 3.64 5.95 +danseuse danseur nom f s 19.54 25.68 10.05 8.58 +danseuses danseuse nom f p 3.51 0.00 3.51 0.00 +dansez danser ver 137.40 92.57 6.41 0.74 imp:pre:2p;ind:pre:2p; +dansiez danser ver 137.40 92.57 0.37 0.07 ind:imp:2p; +dansions danser ver 137.40 92.57 0.56 0.68 ind:imp:1p; +dansâmes danser ver 137.40 92.57 0.00 0.07 ind:pas:1p; +dansons danser ver 137.40 92.57 4.33 0.88 imp:pre:1p;ind:pre:1p; +dansota dansoter ver 0.00 0.34 0.00 0.07 ind:pas:3s; +dansotait dansoter ver 0.00 0.34 0.00 0.27 ind:imp:3s; +dansotter dansotter ver 0.00 0.07 0.00 0.07 inf; +dansèrent danser ver 137.40 92.57 0.15 1.35 ind:pas:3p; +dansé danser ver m s 137.40 92.57 5.94 4.32 par:pas; +dansée danser ver f s 137.40 92.57 0.05 0.27 par:pas; +dantesque dantesque adj s 0.29 0.34 0.18 0.20 +dantesques dantesque adj p 0.29 0.34 0.11 0.14 +danubien danubien adj m s 0.00 0.20 0.00 0.07 +danubienne danubien adj f s 0.00 0.20 0.00 0.07 +danubiennes danubien adj f p 0.00 0.20 0.00 0.07 +dao dao nom m s 0.09 0.00 0.09 0.00 +daphné daphné nom m s 0.13 0.07 0.13 0.07 +darce darce nom f s 0.02 0.00 0.02 0.00 +dard dard nom m s 1.61 2.84 1.30 1.55 +darda darder ver 0.16 4.19 0.00 0.20 ind:pas:3s; +dardaient darder ver 0.16 4.19 0.00 0.14 ind:imp:3p; +dardait darder ver 0.16 4.19 0.00 0.74 ind:imp:3s; +dardant darder ver 0.16 4.19 0.01 0.68 par:pre; +darde darder ver 0.16 4.19 0.03 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dardent darder ver 0.16 4.19 0.01 0.07 ind:pre:3p; +darder darder ver 0.16 4.19 0.10 0.07 inf; +dardillonnaient dardillonner ver 0.00 0.14 0.00 0.07 ind:imp:3p; +dardillonne dardillonner ver 0.00 0.14 0.00 0.07 ind:pre:3s; +dards dard nom m p 1.61 2.84 0.31 1.28 +dardé darder ver m s 0.16 4.19 0.01 0.61 par:pas; +dardée darder ver f s 0.16 4.19 0.00 0.61 par:pas; +dardées darder ver f p 0.16 4.19 0.00 0.41 par:pas; +dardés darder ver m p 0.16 4.19 0.00 0.20 par:pas; +dare_dare dare_dare adv 0.21 1.55 0.17 1.28 +dare_dare dare_dare adv 0.21 1.55 0.04 0.27 +darioles dariole nom f p 0.01 0.00 0.01 0.00 +darne darne nom f s 0.00 0.14 0.00 0.14 +daron daron nom m s 0.04 2.50 0.01 0.88 +daronne daron nom f s 0.04 2.50 0.00 1.01 +daronnes daron nom f p 0.04 2.50 0.00 0.14 +darons daron nom m p 0.04 2.50 0.02 0.47 +darse darse nom f s 0.00 0.61 0.00 0.54 +darses darse nom f p 0.00 0.61 0.00 0.07 +dartres dartre nom f p 0.00 0.14 0.00 0.14 +dartreuses dartreux adj f p 0.00 0.07 0.00 0.07 +dasein dasein nom m s 0.00 0.07 0.00 0.07 +data dater ver 16.69 17.23 0.46 0.00 ind:pas:3s; +datable datable adj m s 0.00 0.07 0.00 0.07 +datage datage nom m s 0.01 0.00 0.01 0.00 +dataient dater ver 16.69 17.23 0.12 0.95 ind:imp:3p; +datait dater ver 16.69 17.23 0.34 3.18 ind:imp:3s; +datant dater ver 16.69 17.23 1.01 2.57 par:pre; +datation datation nom f s 0.20 0.14 0.20 0.14 +datcha datcha nom f s 1.74 1.15 1.74 0.74 +datchas datcha nom f p 1.74 1.15 0.00 0.41 +date date nom f s 31.41 45.74 26.88 36.62 +datent dater ver 16.69 17.23 2.35 0.95 ind:pre:3p; +dater dater ver 16.69 17.23 1.48 1.55 inf; +daterai dater ver 16.69 17.23 0.00 0.07 ind:fut:1s; +daterais dater ver 16.69 17.23 0.00 0.07 cnd:pre:1s; +daterait dater ver 16.69 17.23 0.03 0.14 cnd:pre:3s; +dates date nom f p 31.41 45.74 4.53 9.12 +dateur dateur adj m s 0.01 0.00 0.01 0.00 +dateur dateur nom m s 0.01 0.00 0.01 0.00 +datez dater ver 16.69 17.23 0.04 0.00 imp:pre:2p;ind:pre:2p; +datif datif nom m s 0.02 0.00 0.02 0.00 +datte datte nom f s 0.95 2.64 0.24 0.14 +dattes datte nom f p 0.95 2.64 0.71 2.50 +dattier dattier nom m s 0.01 1.62 0.00 0.68 +dattiers dattier nom m p 0.01 1.62 0.01 0.95 +daté dater ver m s 16.69 17.23 0.81 1.82 par:pas; +datée dater ver f s 16.69 17.23 0.34 1.42 par:pas; +datées dater ver f p 16.69 17.23 0.09 0.34 par:pas; +datura datura nom m s 0.02 0.20 0.02 0.00 +daturas datura nom m p 0.02 0.20 0.00 0.20 +datés dater ver m p 16.69 17.23 0.09 0.41 par:pas; +daubait dauber ver 0.02 0.20 0.00 0.07 ind:imp:3s; +daube daube nom f s 0.99 0.68 0.98 0.54 +dauber dauber ver 0.02 0.20 0.01 0.14 inf; +daubes daube nom f p 0.99 0.68 0.01 0.14 +daubière daubière nom f s 0.01 0.00 0.01 0.00 +daubé dauber ver m s 0.02 0.20 0.01 0.00 par:pas; +dauphin dauphin nom m s 4.71 11.82 1.76 1.22 +dauphinat dauphinat nom m s 0.00 0.20 0.00 0.20 +dauphine dauphin nom f s 4.71 11.82 0.32 9.26 +dauphines dauphin nom f p 4.71 11.82 0.00 0.14 +dauphinois dauphinois adj m s 0.27 0.41 0.27 0.41 +dauphins dauphin nom m p 4.71 11.82 2.63 1.22 +daurade daurade nom f s 0.30 0.95 0.29 0.74 +daurades daurade nom f p 0.30 0.95 0.01 0.20 +davantage davantage adv_sup 29.56 97.84 29.56 97.84 +davier davier nom m s 0.02 0.20 0.02 0.20 +daya daya nom f s 4.13 0.00 4.13 0.00 +dc dc adj_num 0.58 0.07 0.58 0.07 +de_amicis de_amicis nom m s 0.00 0.07 0.00 0.07 +de_auditu de_auditu adv 0.00 0.07 0.00 0.07 +de_facto de_facto adv 0.16 0.07 0.16 0.07 +de_guingois de_guingois adv 0.01 2.64 0.01 2.64 +de_plano de_plano adv 0.04 0.00 0.04 0.00 +de_profundis de_profundis nom m 0.06 0.41 0.06 0.41 +de_santis de_santis nom m s 0.10 0.00 0.10 0.00 +de_traviole de_traviole adv 0.43 1.28 0.43 1.28 +de_visu de_visu adv 1.02 0.54 1.02 0.54 +de de pre 25220.86 38928.92 25220.86 38928.92 +deadline deadline nom s 0.16 0.00 0.16 0.00 +deal deal nom m s 8.76 0.54 8.05 0.47 +dealaient dealer ver 5.27 1.42 0.01 0.07 ind:imp:3p; +dealais dealer ver 5.27 1.42 0.12 0.00 ind:imp:1s;ind:imp:2s; +dealait dealer ver 5.27 1.42 0.38 0.14 ind:imp:3s; +dealant dealer ver 5.27 1.42 0.06 0.00 par:pre; +deale dealer ver 5.27 1.42 1.14 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dealent dealer ver 5.27 1.42 0.31 0.07 ind:pre:3p; +dealer dealer nom m s 12.65 1.62 8.43 1.08 +dealera dealer ver 5.27 1.42 0.16 0.00 ind:fut:3s; +dealeront dealer ver 5.27 1.42 0.02 0.00 ind:fut:3p; +dealers dealer nom m p 12.65 1.62 4.22 0.54 +deales dealer ver 5.27 1.42 0.38 0.00 ind:pre:2s; +dealez dealer ver 5.27 1.42 0.03 0.00 ind:pre:2p; +deals deal nom m p 8.76 0.54 0.71 0.07 +dealé dealer ver m s 5.27 1.42 0.10 0.00 par:pas; +debater debater nom m s 0.00 0.07 0.00 0.07 +debout debout adv_sup 91.81 158.85 91.81 158.85 +decca decca nom m s 0.26 0.07 0.26 0.07 +deck deck nom m s 0.22 0.00 0.22 0.00 +decrescendo decrescendo nom m s 0.10 0.14 0.10 0.14 +dedans dedans adv_sup 76.55 39.46 76.55 39.46 +degré degré nom m s 21.30 27.97 7.93 16.55 +degrés degré nom m p 21.30 27.97 13.37 11.42 +dehors dehors ono 30.23 0.61 30.23 0.61 +delco delco nom m s 0.27 0.34 0.27 0.34 +delirium_tremens delirium_tremens nom m 0.07 0.27 0.07 0.27 +delirium delirium nom m s 0.09 0.41 0.09 0.41 +della_francesca della_francesca nom m s 0.34 0.20 0.34 0.20 +della_porta della_porta nom m s 0.00 0.07 0.00 0.07 +della_robbia della_robbia nom m s 0.00 0.07 0.00 0.07 +delà delà adv 3.73 12.70 3.73 12.70 +delphinidés delphinidé nom m p 0.01 0.00 0.01 0.00 +delphinium delphinium nom m s 0.04 0.00 0.02 0.00 +delphiniums delphinium nom m p 0.04 0.00 0.02 0.00 +delta_plane delta_plane nom m s 0.03 0.07 0.03 0.07 +delta delta nom m s 6.59 2.09 6.50 1.82 +deltaplane deltaplane nom m s 0.26 0.00 0.26 0.00 +deltas delta nom m p 6.59 2.09 0.09 0.27 +deltoïde deltoïde nom m s 0.16 0.20 0.06 0.00 +deltoïdes deltoïde nom m p 0.16 0.20 0.10 0.20 +demain demain adv_sup 425.85 134.12 425.85 134.12 +demains demain nom_sup m p 50.40 21.55 0.00 0.14 +demanda demander ver 909.77 984.39 3.90 270.74 ind:pas:3s; +demandai demander ver 909.77 984.39 0.60 31.49 ind:pas:1s; +demandaient demander ver 909.77 984.39 1.80 10.00 ind:imp:3p; +demandais demander ver 909.77 984.39 35.69 30.07 ind:imp:1s;ind:imp:2s; +demandait demander ver 909.77 984.39 11.55 77.03 ind:imp:3s; +demandant demander ver 909.77 984.39 5.41 21.76 par:pre; +demande demander ver 909.77 984.39 289.34 208.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +demandent demander ver 909.77 984.39 16.13 10.88 ind:pre:3p;sub:pre:3p; +demander demander ver 909.77 984.39 188.86 144.59 inf;;inf;;inf;;inf;; +demandera demander ver 909.77 984.39 7.56 3.58 ind:fut:3s; +demanderai demander ver 909.77 984.39 11.46 4.05 ind:fut:1s; +demanderaient demander ver 909.77 984.39 0.06 0.74 cnd:pre:3p; +demanderais demander ver 909.77 984.39 5.55 1.55 cnd:pre:1s;cnd:pre:2s; +demanderait demander ver 909.77 984.39 1.48 5.41 cnd:pre:3s; +demanderas demander ver 909.77 984.39 2.73 1.28 ind:fut:2s; +demanderesse demandeur nom f s 0.78 0.34 0.04 0.00 +demanderez demander ver 909.77 984.39 1.48 1.22 ind:fut:2p; +demanderiez demander ver 909.77 984.39 0.87 0.14 cnd:pre:2p; +demanderons demander ver 909.77 984.39 1.06 0.27 ind:fut:1p; +demanderont demander ver 909.77 984.39 1.67 0.61 ind:fut:3p; +demandes demander ver 909.77 984.39 32.92 5.68 ind:pre:2s;sub:pre:2s; +demandeur demandeur nom m s 0.78 0.34 0.20 0.14 +demandeurs demandeur nom m p 0.78 0.34 0.54 0.20 +demandeuse demandeur nom f s 0.78 0.34 0.01 0.00 +demandez demander ver 909.77 984.39 51.74 12.23 imp:pre:2p;ind:pre:2p; +demandiez demander ver 909.77 984.39 2.00 0.88 ind:imp:2p; +demandions demander ver 909.77 984.39 0.79 1.62 ind:imp:1p; +demandâmes demander ver 909.77 984.39 0.00 0.07 ind:pas:1p; +demandons demander ver 909.77 984.39 12.09 2.30 imp:pre:1p;ind:pre:1p; +demandât demander ver 909.77 984.39 0.00 1.76 sub:imp:3s; +demandèrent demander ver 909.77 984.39 0.66 2.70 ind:pas:3p; +demandé demander ver m s 909.77 984.39 212.89 128.92 par:pas;par:pas;par:pas; +demandée demander ver f s 909.77 984.39 6.81 2.70 par:pas; +demandées demander ver f p 909.77 984.39 0.65 0.74 par:pas; +demandés demander ver m p 909.77 984.39 2.02 1.22 par:pas; +demeura demeurer ver 13.18 128.85 0.27 18.65 ind:pas:3s; +demeurai demeurer ver 13.18 128.85 0.02 3.24 ind:pas:1s; +demeuraient demeurer ver 13.18 128.85 0.16 6.49 ind:imp:3p; +demeurais demeurer ver 13.18 128.85 0.00 2.23 ind:imp:1s; +demeurait demeurer ver 13.18 128.85 0.45 24.59 ind:imp:3s; +demeurant demeurer ver 13.18 128.85 0.27 13.85 par:pre; +demeurassent demeurer ver 13.18 128.85 0.00 0.27 sub:imp:3p; +demeure demeure nom f s 13.34 28.11 12.24 20.07 +demeurent demeurer ver 13.18 128.85 1.99 5.34 ind:pre:3p; +demeurer demeurer ver 13.18 128.85 1.86 14.12 inf; +demeurera demeurer ver 13.18 128.85 0.41 1.01 ind:fut:3s; +demeurerai demeurer ver 13.18 128.85 0.09 0.27 ind:fut:1s; +demeureraient demeurer ver 13.18 128.85 0.00 0.34 cnd:pre:3p; +demeurerais demeurer ver 13.18 128.85 0.00 0.20 cnd:pre:1s; +demeurerait demeurer ver 13.18 128.85 0.00 1.49 cnd:pre:3s; +demeureras demeurer ver 13.18 128.85 0.18 0.00 ind:fut:2s; +demeurerez demeurer ver 13.18 128.85 0.06 0.07 ind:fut:2p; +demeurerions demeurer ver 13.18 128.85 0.00 0.07 cnd:pre:1p; +demeurerons demeurer ver 13.18 128.85 0.13 0.07 ind:fut:1p; +demeureront demeurer ver 13.18 128.85 0.03 0.54 ind:fut:3p; +demeures demeure nom f p 13.34 28.11 1.10 8.04 +demeurez demeurer ver 13.18 128.85 1.02 0.47 imp:pre:2p;ind:pre:2p; +demeuriez demeurer ver 13.18 128.85 0.14 0.20 ind:imp:2p; +demeurions demeurer ver 13.18 128.85 0.00 0.68 ind:imp:1p; +demeurâmes demeurer ver 13.18 128.85 0.00 0.47 ind:pas:1p; +demeurons demeurer ver 13.18 128.85 0.12 1.01 imp:pre:1p;ind:pre:1p; +demeurât demeurer ver 13.18 128.85 0.01 1.28 sub:imp:3s; +demeurèrent demeurer ver 13.18 128.85 0.00 4.12 ind:pas:3p; +demeuré demeuré nom m s 2.92 2.23 2.06 1.28 +demeurée demeuré nom f s 2.92 2.23 0.31 0.47 +demeurées demeuré adj f p 0.80 2.36 0.01 0.20 +demeurés demeuré nom m p 2.92 2.23 0.55 0.41 +demi_barbare demi_barbare nom s 0.00 0.07 0.00 0.07 +demi_bas demi_bas nom m 0.01 0.14 0.01 0.14 +demi_bonheur demi_bonheur nom m s 0.00 0.07 0.00 0.07 +demi_botte demi_botte nom f p 0.00 0.14 0.00 0.14 +demi_bouteille demi_bouteille nom f s 0.41 0.47 0.41 0.47 +demi_brigade demi_brigade nom f s 0.00 0.68 0.00 0.61 +demi_brigade demi_brigade nom f p 0.00 0.68 0.00 0.07 +demi_cent demi_cent nom m s 0.01 0.07 0.01 0.07 +demi_centimètre demi_centimètre nom m s 0.02 0.20 0.02 0.20 +demi_centre demi_centre nom m s 0.00 0.07 0.00 0.07 +demi_cercle demi_cercle nom m s 0.12 4.80 0.11 4.46 +demi_cercle demi_cercle nom m p 0.12 4.80 0.01 0.34 +demi_chagrin demi_chagrin nom m s 0.00 0.07 0.00 0.07 +demi_clair demi_clair nom m s 0.00 0.07 0.00 0.07 +demi_clarté demi_clarté nom f s 0.00 0.20 0.00 0.20 +demi_cloison demi_cloison nom f s 0.00 0.20 0.00 0.20 +demi_coma demi_coma nom m s 0.01 0.27 0.01 0.27 +demi_confidence demi_confidence nom f s 0.00 0.07 0.00 0.07 +demi_conscience demi_conscience nom f s 0.00 0.20 0.00 0.20 +demi_cylindre demi_cylindre nom m s 0.00 0.14 0.00 0.14 +demi_degré demi_degré nom m s 0.01 0.00 0.01 0.00 +demi_deuil demi_deuil nom m s 0.00 0.34 0.00 0.34 +demi_dieu demi_dieu nom m s 0.47 0.47 0.47 0.47 +demi_dieux demi_dieux nom m p 0.16 0.47 0.16 0.47 +demi_dose demi_dose nom f s 0.03 0.00 0.03 0.00 +demi_douzaine demi_douzaine nom f s 1.34 6.55 1.34 6.55 +demi_dévêtu demi_dévêtu adj m s 0.00 0.14 0.00 0.07 +demi_dévêtu demi_dévêtu adj f s 0.00 0.14 0.00 0.07 +demi_figure demi_figure nom f s 0.00 0.07 0.00 0.07 +demi_finale demi_finale nom f s 1.13 0.00 0.87 0.00 +demi_finale demi_finale nom f p 1.13 0.00 0.26 0.00 +demi_finaliste demi_finaliste nom s 0.01 0.00 0.01 0.00 +demi_fond demi_fond nom m s 0.21 0.14 0.21 0.14 +demi_fou demi_fou nom m s 0.14 0.14 0.14 0.00 +demi_fou demi_fou nom m p 0.14 0.14 0.00 0.14 +demi_frère demi_frère nom m s 2.70 2.91 2.17 2.91 +demi_frère demi_frère nom m p 2.70 2.91 0.53 0.00 +demi_gros demi_gros nom m 0.01 0.47 0.01 0.47 +demi_heure demi_heure nom f s 26.65 23.18 26.65 22.43 +heur heur nom f p 0.28 1.15 0.22 0.07 +demi_jour demi_jour nom m s 0.02 1.28 0.02 1.28 +demi_journée demi_journée nom f s 1.65 1.08 1.60 1.01 +demi_journée demi_journée nom f p 1.65 1.08 0.05 0.07 +demi_juif demi_juif nom m s 0.01 0.00 0.01 0.00 +demi_kilomètre demi_kilomètre nom m s 0.14 0.14 0.14 0.14 +demi_liberté demi_liberté nom f s 0.00 0.07 0.00 0.07 +demi_lieue demi_lieue nom f s 0.30 0.41 0.30 0.41 +demi_litre demi_litre nom m s 0.67 0.81 0.67 0.81 +demi_livre demi_livre nom f s 0.12 0.34 0.12 0.34 +demi_longueur demi_longueur nom f s 0.06 0.00 0.06 0.00 +demi_louis demi_louis nom m 0.00 0.07 0.00 0.07 +demi_lueur demi_lueur nom f s 0.00 0.07 0.00 0.07 +demi_lumière demi_lumière nom f s 0.00 0.07 0.00 0.07 +demi_lune demi_lune nom f s 1.03 2.36 0.92 2.23 +demi_lune demi_lune nom f p 1.03 2.36 0.11 0.14 +demi_luxe demi_luxe nom m s 0.00 0.07 0.00 0.07 +demi_mal demi_mal nom m s 0.00 0.07 0.00 0.07 +demi_mensonge demi_mensonge nom m s 0.01 0.07 0.01 0.07 +demi_mesure demi_mesure nom f s 0.39 0.54 0.14 0.14 +demi_mesure demi_mesure nom f p 0.39 0.54 0.25 0.41 +demi_mille demi_mille nom m 0.00 0.07 0.00 0.07 +demi_milliard demi_milliard nom m s 0.87 0.07 0.87 0.07 +demi_millimètre demi_millimètre nom m s 0.00 0.07 0.00 0.07 +demi_million demi_million nom m s 3.08 0.41 3.08 0.41 +demi_minute demi_minute nom f s 0.04 0.07 0.04 0.07 +demi_mois demi_mois nom m 0.15 0.00 0.15 0.00 +demi_mondain demi_mondain nom f s 0.00 0.74 0.00 0.27 +demi_mondain demi_mondain nom f p 0.00 0.74 0.00 0.47 +demi_monde demi_monde nom m s 0.01 0.14 0.01 0.14 +demi_mort demi_mort nom m s 0.26 0.27 0.11 0.20 +demi_mort demi_mort nom f s 0.26 0.27 0.04 0.07 +demi_mort demi_mort nom m p 0.26 0.27 0.10 0.00 +demi_mot demi_mot nom m s 0.19 1.49 0.19 1.49 +demi_mètre demi_mètre nom m s 0.00 0.54 0.00 0.54 +demi_muid demi_muid nom m s 0.00 0.07 0.00 0.07 +demi_nu demi_nu adv 0.14 0.00 0.14 0.00 +demi_nuit demi_nuit nom f s 0.02 0.27 0.02 0.27 +demi_obscurité demi_obscurité nom f s 0.00 1.96 0.00 1.96 +demi_ouvert demi_ouvert adj f s 0.00 0.07 0.00 0.07 +demi_ouvrier demi_ouvrier nom m s 0.00 0.07 0.00 0.07 +demi_page demi_page nom f s 0.05 0.41 0.05 0.41 +demi_paralysé demi_paralysé adj m s 0.10 0.00 0.10 0.00 +demi_part demi_part nom f s 0.01 0.00 0.01 0.00 +demi_pas demi_pas nom m 0.21 0.27 0.21 0.27 +demi_pension demi_pension nom f s 0.00 0.41 0.00 0.41 +demi_pensionnaire demi_pensionnaire nom s 0.00 0.41 0.00 0.20 +demi_pensionnaire demi_pensionnaire nom p 0.00 0.41 0.00 0.20 +demi_personne demi_personne adj m s 0.00 0.07 0.00 0.07 +demi_pied demi_pied nom m s 0.00 0.07 0.00 0.07 +demi_pinte demi_pinte nom f s 0.07 0.07 0.07 0.07 +demi_pièce demi_pièce nom f s 0.00 0.07 0.00 0.07 +demi_place demi_place nom f s 0.11 0.00 0.11 0.00 +demi_plein demi_plein adj m s 0.01 0.00 0.01 0.00 +demi_point demi_point nom m s 0.14 0.00 0.14 0.00 +demi_pointe demi_pointe nom f p 0.00 0.07 0.00 0.07 +demi_porte demi_porte nom f s 0.00 0.14 0.00 0.14 +demi_portion demi_portion nom f s 1.23 0.20 1.18 0.00 +demi_portion demi_portion nom f p 1.23 0.20 0.05 0.20 +demi_pouce demi_pouce adj m s 0.01 0.00 0.01 0.00 +demi_quart demi_quart nom m s 0.00 0.07 0.00 0.07 +demi_queue demi_queue nom m s 0.01 0.20 0.01 0.20 +demi_rond demi_rond nom f s 0.00 0.34 0.00 0.34 +demi_réussite demi_réussite nom f s 0.00 0.14 0.00 0.14 +demi_rêve demi_rêve nom m s 0.00 0.20 0.00 0.20 +demi_révérence demi_révérence nom f s 0.00 0.07 0.00 0.07 +demi_saison demi_saison nom f s 0.00 0.95 0.00 0.81 +demi_saison demi_saison nom f p 0.00 0.95 0.00 0.14 +demi_sang demi_sang nom m s 0.04 0.54 0.04 0.47 +demi_sang demi_sang nom m p 0.04 0.54 0.00 0.07 +demi_seconde demi_seconde nom f s 0.13 1.01 0.13 1.01 +demi_section demi_section nom f s 0.00 0.41 0.00 0.41 +demi_sel demi_sel nom m 0.04 0.47 0.03 0.27 +demi_sel demi_sel nom m p 0.04 0.47 0.01 0.20 +demi_siècle demi_siècle nom m s 0.17 5.95 0.17 5.81 +demi_siècle demi_siècle nom m p 0.17 5.95 0.00 0.14 +demi_soeur demi_soeur nom f s 0.50 9.05 0.42 8.92 +demi_soeur demi_soeur nom f p 0.50 9.05 0.07 0.14 +demi_solde demi_solde nom f s 0.01 0.14 0.01 0.07 +demi_solde demi_solde nom f p 0.01 0.14 0.00 0.07 +demi_sommeil demi_sommeil nom m s 0.25 2.50 0.25 2.43 +demi_sommeil demi_sommeil nom m p 0.25 2.50 0.00 0.07 +demi_somnolence demi_somnolence nom f s 0.00 0.14 0.00 0.14 +demi_sourire demi_sourire nom m s 0.00 2.84 0.00 2.77 +demi_sourire demi_sourire nom m p 0.00 2.84 0.00 0.07 +demi_succès demi_succès nom m 0.00 0.20 0.00 0.20 +demi_suicide demi_suicide nom m s 0.00 0.07 0.00 0.07 +demi_talent demi_talent nom m s 0.05 0.00 0.05 0.00 +demi_tarif demi_tarif nom m s 0.56 0.14 0.56 0.14 +demi_tasse demi_tasse nom f s 0.08 0.07 0.08 0.07 +demi_teinte demi_teinte nom f s 0.06 0.95 0.04 0.47 +demi_teinte demi_teinte nom f p 0.06 0.95 0.02 0.47 +demi_ton demi_ton nom m s 0.34 0.61 0.00 0.34 +demi_ton demi_ton nom f s 0.34 0.61 0.21 0.07 +demi_tonneau demi_tonneau nom m s 0.00 0.07 0.00 0.07 +demi_ton demi_ton nom m p 0.34 0.61 0.14 0.20 +demi_tour demi_tour nom m s 19.27 16.08 19.25 15.88 +demi_tour demi_tour nom m p 19.27 16.08 0.02 0.20 +demi_tête demi_tête nom f s 0.11 0.14 0.11 0.14 +demi_échec demi_échec nom m s 0.00 0.07 0.00 0.07 +demi_verre demi_verre nom m s 0.30 1.22 0.30 1.22 +demi_vertu demi_vertu nom f s 0.00 0.07 0.00 0.07 +demi_vie demi_vie nom f s 0.11 0.00 0.08 0.00 +demi_vierge demi_vierge nom f s 0.02 0.20 0.02 0.07 +demi_vierge demi_vierge nom f p 0.02 0.20 0.00 0.14 +demi_vie demi_vie nom f p 0.11 0.00 0.02 0.00 +demi_volte demi_volte nom f s 0.01 0.07 0.01 0.00 +demi_volte demi_volte nom f p 0.01 0.07 0.00 0.07 +demi_volée demi_volée nom f s 0.00 0.07 0.00 0.07 +demi_volume demi_volume nom m s 0.00 0.07 0.00 0.07 +demi_vérité demi_vérité nom f s 0.32 0.07 0.32 0.07 +demi demi adj_sup m s 38.26 43.51 25.18 19.12 +demie demi adj_sup f s 38.26 43.51 12.98 24.05 +demies demie nom f p 0.13 0.00 0.13 0.00 +demis demi nom_sup m p 4.52 9.80 0.19 1.49 +demoiselle damoiseau nom f s 11.41 20.00 11.25 12.64 +demoiselles demoiselle nom f p 4.62 0.00 4.62 0.00 +dendrite dendrite nom f s 0.01 0.00 0.01 0.00 +dengue dengue nom f s 0.02 0.00 0.02 0.00 +denier denier nom m s 1.97 1.62 0.64 0.41 +deniers denier nom m p 1.97 1.62 1.34 1.22 +denim denim nom m s 0.04 0.07 0.04 0.00 +denims denim nom m p 0.04 0.07 0.00 0.07 +denrée denrée nom f s 1.86 4.73 1.23 1.01 +denrées denrée nom f p 1.86 4.73 0.64 3.72 +dense dense adj s 2.04 11.69 1.69 9.86 +denses dense adj p 2.04 11.69 0.35 1.82 +densifia densifier ver 0.02 0.07 0.00 0.07 ind:pas:3s; +densifie densifier ver 0.02 0.07 0.01 0.00 ind:pre:3s; +densifié densifier ver m s 0.02 0.07 0.01 0.00 par:pas; +densimètre densimètre nom m s 0.01 0.00 0.01 0.00 +densité densité nom f s 1.50 5.74 1.47 5.54 +densités densité nom f p 1.50 5.74 0.04 0.20 +dent_de_lion dent_de_lion nom f s 0.03 0.07 0.03 0.07 +dent dent nom f s 74.20 125.68 13.27 11.15 +dentaire dentaire adj s 4.22 1.28 3.50 0.68 +dentaires dentaire adj p 4.22 1.28 0.72 0.61 +dental dental adj m s 0.04 0.47 0.04 0.07 +dentale dental adj f s 0.04 0.47 0.00 0.07 +dentales dental adj f p 0.04 0.47 0.00 0.34 +dentelle dentelle nom f s 3.78 25.07 3.04 17.50 +dentelles dentelle nom f p 3.78 25.07 0.73 7.57 +dentellière dentellière nom f s 0.00 2.36 0.00 2.36 +dentelé denteler ver m s 0.13 0.81 0.07 0.34 par:pas; +dentelée dentelé adj f s 0.23 2.70 0.17 0.68 +dentelées denteler ver f p 0.13 0.81 0.02 0.14 par:pas; +dentelure dentelure nom f s 0.11 0.88 0.11 0.61 +dentelures dentelure nom f p 0.11 0.88 0.00 0.27 +dentelés dentelé adj m p 0.23 2.70 0.01 0.47 +dentier dentier nom m s 1.74 2.77 1.64 2.50 +dentiers dentier nom m p 1.74 2.77 0.10 0.27 +dentifrice dentifrice nom m s 3.87 1.28 3.84 1.15 +dentifrices dentifrice nom m p 3.87 1.28 0.02 0.14 +dentiste dentiste nom s 15.40 5.61 14.57 4.93 +dentisterie dentisterie nom f s 0.16 0.00 0.16 0.00 +dentistes dentiste nom p 15.40 5.61 0.83 0.68 +dentition dentition nom f s 1.08 0.47 1.07 0.41 +dentitions dentition nom f p 1.08 0.47 0.01 0.07 +dents dent nom f p 74.20 125.68 60.94 114.53 +denté denté adj m s 0.04 0.27 0.00 0.07 +dentée denté adj f s 0.04 0.27 0.03 0.07 +dentées denté adj f p 0.04 0.27 0.00 0.14 +denture denture nom f s 0.07 2.16 0.07 1.96 +dentures denture nom f p 0.07 2.16 0.00 0.20 +dentés denté adj m p 0.04 0.27 0.01 0.00 +deo_gratias deo_gratias nom m 0.01 0.20 0.01 0.20 +depuis depuis pre 483.95 542.64 483.95 542.64 +der der nom s 4.70 3.92 4.53 3.58 +derby derby nom m s 0.39 0.20 0.36 0.14 +derbys derby nom m p 0.39 0.20 0.03 0.07 +derche derche nom m s 0.83 3.04 0.72 2.57 +derches derche nom m p 0.83 3.04 0.11 0.47 +derechef derechef adv 0.01 3.24 0.01 3.24 +dermatite dermatite nom f s 0.08 0.00 0.08 0.00 +dermatoglyphes dermatoglyphe nom m p 0.00 0.07 0.00 0.07 +dermatologie dermatologie nom f s 0.23 0.00 0.23 0.00 +dermatologique dermatologique adj s 0.35 0.61 0.32 0.54 +dermatologiques dermatologique adj p 0.35 0.61 0.03 0.07 +dermatologiste dermatologiste nom s 0.07 0.00 0.07 0.00 +dermatologue dermatologue nom s 0.38 0.00 0.38 0.00 +dermatose dermatose nom f s 0.00 0.14 0.00 0.07 +dermatoses dermatose nom f p 0.00 0.14 0.00 0.07 +derme derme nom m s 0.52 0.41 0.52 0.41 +dermeste dermeste nom m s 0.01 0.00 0.01 0.00 +dermique dermique adj m s 0.03 0.07 0.03 0.00 +dermiques dermique adj p 0.03 0.07 0.00 0.07 +dermite dermite nom f s 0.09 0.07 0.09 0.00 +dermites dermite nom f p 0.09 0.07 0.00 0.07 +dermographie dermographie nom f s 0.14 0.07 0.14 0.07 +dernier_né dernier_né nom m s 0.05 1.01 0.05 0.88 +dernier dernier adj m s 431.08 403.11 138.57 146.42 +dernier_né dernier_né nom m p 0.05 1.01 0.00 0.14 +derniers dernier adj m p 431.08 403.11 41.81 63.38 +dernière_née dernière_née nom f s 0.01 0.20 0.01 0.20 +dernière dernier adj f s 431.08 403.11 224.41 145.27 +dernièrement dernièrement adv 11.24 1.35 11.24 1.35 +dernières dernier adj f p 431.08 403.11 26.30 48.04 +derrick derrick nom m s 2.04 0.27 1.98 0.07 +derricks derrick nom m p 2.04 0.27 0.06 0.20 +derrière derrière pre 105.10 349.39 105.10 349.39 +derrières derrière nom m p 9.95 15.47 0.86 1.22 +ders der nom p 4.70 3.92 0.17 0.34 +derviche derviche nom m s 0.11 1.76 0.08 1.35 +derviches derviche nom m p 0.11 1.76 0.03 0.41 +des des art_ind p 6055.71 10624.93 6055.71 10624.93 +descamisados descamisado nom m p 0.00 0.07 0.00 0.07 +descella desceller ver 0.07 1.55 0.00 0.07 ind:pas:3s; +descellant desceller ver 0.07 1.55 0.00 0.07 par:pre; +desceller desceller ver 0.07 1.55 0.01 0.41 inf; +descellera desceller ver 0.07 1.55 0.02 0.00 ind:fut:3s; +descellez desceller ver 0.07 1.55 0.00 0.07 ind:pre:2p; +descellé desceller ver m s 0.07 1.55 0.02 0.47 par:pas; +descellée desceller ver f s 0.07 1.55 0.02 0.14 par:pas; +descellées desceller ver f p 0.07 1.55 0.00 0.14 par:pas; +descellés desceller ver m p 0.07 1.55 0.00 0.20 par:pas; +descend descendre ver 235.97 301.62 26.09 32.64 ind:pre:3s; +descendîmes descendre ver 235.97 301.62 0.13 2.09 ind:pas:1p; +descendît descendre ver 235.97 301.62 0.00 0.34 sub:imp:3s; +descendaient descendre ver 235.97 301.62 0.67 10.41 ind:imp:3p; +descendais descendre ver 235.97 301.62 0.97 3.45 ind:imp:1s;ind:imp:2s; +descendait descendre ver 235.97 301.62 2.43 33.45 ind:imp:3s; +descendance descendance nom f s 1.31 1.96 1.30 1.89 +descendances descendance nom f p 1.31 1.96 0.01 0.07 +descendant descendre ver 235.97 301.62 3.73 16.76 par:pre; +descendante descendant nom f s 3.45 5.00 0.25 0.34 +descendantes descendant nom f p 3.45 5.00 0.04 0.00 +descendants descendant nom m p 3.45 5.00 2.38 2.97 +descende descendre ver 235.97 301.62 3.55 2.50 sub:pre:1s;sub:pre:3s; +descendent descendre ver 235.97 301.62 4.27 10.41 ind:pre:3p;sub:pre:3p; +descendes descendre ver 235.97 301.62 1.13 0.14 sub:pre:2s; +descendeur descendeur nom m s 0.04 0.07 0.04 0.00 +descendeurs descendeur nom m p 0.04 0.07 0.00 0.07 +descendez descendre ver 235.97 301.62 25.89 1.96 imp:pre:2p;ind:pre:2p; +descendiez descendre ver 235.97 301.62 0.53 0.14 ind:imp:2p; +descendions descendre ver 235.97 301.62 0.38 2.70 ind:imp:1p; +descendirent descendre ver 235.97 301.62 0.04 10.00 ind:pas:3p; +descendis descendre ver 235.97 301.62 0.05 4.93 ind:pas:1s; +descendit descendre ver 235.97 301.62 0.61 33.99 ind:pas:3s; +descendons descendre ver 235.97 301.62 4.30 3.31 imp:pre:1p;ind:pre:1p; +descendra descendre ver 235.97 301.62 3.44 1.82 ind:fut:3s; +descendrai descendre ver 235.97 301.62 1.82 1.42 ind:fut:1s; +descendraient descendre ver 235.97 301.62 0.05 0.41 cnd:pre:3p; +descendrais descendre ver 235.97 301.62 0.46 0.41 cnd:pre:1s;cnd:pre:2s; +descendrait descendre ver 235.97 301.62 0.78 1.35 cnd:pre:3s; +descendras descendre ver 235.97 301.62 0.44 0.20 ind:fut:2s; +descendre descendre ver 235.97 301.62 65.28 70.41 inf; +descendrez descendre ver 235.97 301.62 0.53 0.14 ind:fut:2p; +descendriez descendre ver 235.97 301.62 0.03 0.00 cnd:pre:2p; +descendrions descendre ver 235.97 301.62 0.00 0.20 cnd:pre:1p; +descendrons descendre ver 235.97 301.62 0.69 0.54 ind:fut:1p; +descendront descendre ver 235.97 301.62 0.81 0.20 ind:fut:3p; +descends descendre ver 235.97 301.62 62.31 12.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +descendu descendre ver m s 235.97 301.62 18.05 26.01 par:pas; +descendue descendre ver f s 235.97 301.62 3.66 7.97 par:pas; +descendues descendre ver f p 235.97 301.62 0.16 1.15 par:pas; +descendus descendre ver m p 235.97 301.62 2.71 8.04 par:pas; +descenseur descenseur nom m s 0.01 0.00 0.01 0.00 +descente descente nom f s 11.59 23.24 10.48 20.81 +descentes descente nom f p 11.59 23.24 1.10 2.43 +descriptible descriptible adj m s 0.00 0.27 0.00 0.07 +descriptibles descriptible adj f p 0.00 0.27 0.00 0.20 +descriptif descriptif nom m s 0.14 0.41 0.12 0.20 +descriptifs descriptif nom m p 0.14 0.41 0.02 0.20 +description description nom f s 7.80 11.49 7.08 8.04 +descriptions description nom f p 7.80 11.49 0.73 3.45 +descriptive descriptif adj f s 0.17 0.41 0.04 0.14 +descriptives descriptif adj f p 0.17 0.41 0.01 0.07 +desdites desdites pre 0.00 0.07 0.00 0.07 +desdits desdits pre 0.00 0.20 0.00 0.20 +desiderata desiderata nom m 0.04 0.27 0.04 0.27 +design design nom m s 1.54 0.88 1.47 0.88 +designer designer nom s 0.57 0.00 0.51 0.00 +designers designer nom p 0.57 0.00 0.07 0.00 +designs design nom m p 1.54 0.88 0.08 0.00 +desk desk nom m s 0.11 0.14 0.11 0.14 +desperado desperado nom m s 0.27 0.47 0.21 0.20 +desperados desperado nom m p 0.27 0.47 0.06 0.27 +despote despote nom s 1.01 0.74 0.85 0.61 +despotes despote nom p 1.01 0.74 0.16 0.14 +despotique despotique adj s 0.16 0.54 0.16 0.41 +despotiques despotique adj m p 0.16 0.54 0.00 0.14 +despotisme despotisme nom m s 0.45 0.81 0.45 0.81 +desquamante desquamant adj f s 0.00 0.07 0.00 0.07 +desquamation desquamation nom f s 0.01 0.07 0.01 0.07 +desquame desquamer ver 0.01 0.00 0.01 0.00 ind:pre:3s; +desquelles desquelles pro_rel f p 0.81 9.39 0.81 7.64 +desquels desquels pro_rel m p 0.78 10.14 0.64 7.97 +dessaisi dessaisir ver m s 0.25 0.61 0.07 0.07 par:pas; +dessaisir dessaisir ver 0.25 0.61 0.16 0.27 inf; +dessaisis dessaisir ver m p 0.25 0.61 0.01 0.07 ind:pre:1s;par:pas; +dessaisissais dessaisir ver 0.25 0.61 0.00 0.07 ind:imp:1s; +dessaisissement dessaisissement nom m s 0.00 0.07 0.00 0.07 +dessaisissent dessaisir ver 0.25 0.61 0.00 0.07 ind:pre:3p; +dessaisit dessaisir ver 0.25 0.61 0.01 0.07 ind:pre:3s;ind:pas:3s; +dessalaient dessaler ver 0.16 0.34 0.00 0.07 ind:imp:3p; +dessalait dessaler ver 0.16 0.34 0.00 0.07 ind:imp:3s; +dessalant dessaler ver 0.16 0.34 0.00 0.07 par:pre; +dessale dessaler ver 0.16 0.34 0.00 0.07 ind:pre:3s; +dessaler dessaler ver 0.16 0.34 0.16 0.00 inf; +dessalé dessalé adj m s 0.00 0.47 0.00 0.14 +dessalée dessalé adj f s 0.00 0.47 0.00 0.14 +dessalées dessalé adj f p 0.00 0.47 0.00 0.14 +dessalés dessalé adj m p 0.00 0.47 0.00 0.07 +dessaoulais dessaouler ver 0.39 1.15 0.01 0.00 ind:imp:1s; +dessaoule dessaouler ver 0.39 1.15 0.13 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessaoulent dessaouler ver 0.39 1.15 0.00 0.07 ind:pre:3p; +dessaouler dessaouler ver 0.39 1.15 0.08 0.14 inf; +dessaoulé dessaouler ver m s 0.39 1.15 0.07 0.41 par:pas; +dessaoulée dessaouler ver f s 0.39 1.15 0.10 0.07 par:pas; +dessaoulés dessaouler ver m p 0.39 1.15 0.00 0.07 par:pas; +dessape dessaper ver 0.00 0.14 0.00 0.07 ind:pre:3s; +dessaper dessaper ver 0.00 0.14 0.00 0.07 inf; +dessein dessein nom m s 7.29 14.86 5.32 10.20 +desseins dessein nom m p 7.29 14.86 1.97 4.66 +desselle desseller ver 0.12 0.61 0.02 0.07 imp:pre:2s;ind:pre:3s; +desseller desseller ver 0.12 0.61 0.03 0.41 inf; +dessellez desseller ver 0.12 0.61 0.05 0.00 imp:pre:2p; +dessellé desseller ver m s 0.12 0.61 0.01 0.00 par:pas; +dessellées desseller ver f p 0.12 0.61 0.00 0.07 par:pas; +dessellés desseller ver m p 0.12 0.61 0.01 0.07 par:pas; +desserra desserrer ver 2.54 10.88 0.01 1.76 ind:pas:3s; +desserrage desserrage nom m s 0.01 0.07 0.01 0.07 +desserrai desserrer ver 2.54 10.88 0.00 0.27 ind:pas:1s; +desserraient desserrer ver 2.54 10.88 0.00 0.20 ind:imp:3p; +desserrais desserrer ver 2.54 10.88 0.01 0.07 ind:imp:1s;ind:imp:2s; +desserrait desserrer ver 2.54 10.88 0.01 0.81 ind:imp:3s; +desserrant desserrer ver 2.54 10.88 0.00 0.47 par:pre; +desserre desserrer ver 2.54 10.88 0.83 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +desserrent desserrer ver 2.54 10.88 0.03 0.20 ind:pre:3p; +desserrer desserrer ver 2.54 10.88 0.38 3.58 inf; +desserrera desserrer ver 2.54 10.88 0.01 0.07 ind:fut:3s; +desserreraient desserrer ver 2.54 10.88 0.00 0.07 cnd:pre:3p; +desserrerait desserrer ver 2.54 10.88 0.00 0.07 cnd:pre:3s; +desserrez desserrer ver 2.54 10.88 0.72 0.07 imp:pre:2p;ind:pre:2p; +desserrons desserrer ver 2.54 10.88 0.03 0.00 imp:pre:1p; +desserrât desserrer ver 2.54 10.88 0.00 0.07 sub:imp:3s; +desserrèrent desserrer ver 2.54 10.88 0.00 0.14 ind:pas:3p; +desserré desserrer ver m s 2.54 10.88 0.32 1.69 par:pas; +desserrée desserrer ver f s 2.54 10.88 0.07 0.27 par:pas; +desserrées desserrer ver f p 2.54 10.88 0.01 0.20 par:pas; +desserrés desserrer ver m p 2.54 10.88 0.10 0.14 par:pas; +dessers desservir ver 1.16 5.14 0.00 0.07 ind:pre:2s; +dessert dessert nom m s 13.40 12.57 11.61 11.62 +desserte desserte nom f s 0.09 1.76 0.07 1.49 +dessertes desserte nom f p 0.09 1.76 0.01 0.27 +dessertie dessertir ver f s 0.01 0.14 0.01 0.07 par:pas; +dessertir dessertir ver 0.01 0.14 0.00 0.07 inf; +desserts dessert nom m p 13.40 12.57 1.79 0.95 +desservaient desservir ver 1.16 5.14 0.01 0.34 ind:imp:3p; +desservait desservir ver 1.16 5.14 0.02 0.88 ind:imp:3s; +desservant desservir ver 1.16 5.14 0.14 0.61 par:pre; +desserve desservir ver 1.16 5.14 0.02 0.07 sub:pre:3s; +desservent desservir ver 1.16 5.14 0.16 0.34 ind:pre:3p; +desservi desservir ver m s 1.16 5.14 0.16 0.61 par:pas; +desservie desservir ver f s 1.16 5.14 0.12 0.41 par:pas; +desservies desservir ver f p 1.16 5.14 0.14 0.07 par:pas; +desservir desservir ver 1.16 5.14 0.07 1.08 inf; +desservira desservir ver 1.16 5.14 0.02 0.00 ind:fut:3s; +desservirait desservir ver 1.16 5.14 0.02 0.07 cnd:pre:3s; +desserviront desservir ver 1.16 5.14 0.00 0.07 ind:fut:3p; +desservis desservir ver m p 1.16 5.14 0.03 0.07 par:pas; +desservit desservir ver 1.16 5.14 0.00 0.07 ind:pas:3s; +dessiccation dessiccation nom f s 0.03 0.07 0.03 0.07 +dessille dessiller ver 0.29 0.81 0.00 0.07 ind:pre:3s; +dessiller dessiller ver 0.29 0.81 0.00 0.34 inf; +dessilleront dessiller ver 0.29 0.81 0.00 0.07 ind:fut:3p; +dessillé dessiller ver m s 0.29 0.81 0.29 0.07 par:pas; +dessillés dessiller ver m p 0.29 0.81 0.00 0.27 par:pas; +dessin dessin nom m s 29.60 56.28 17.92 34.86 +dessina dessiner ver 29.97 79.66 0.29 3.45 ind:pas:3s; +dessinai dessiner ver 29.97 79.66 0.00 0.68 ind:pas:1s; +dessinaient dessiner ver 29.97 79.66 0.14 5.20 ind:imp:3p; +dessinais dessiner ver 29.97 79.66 0.89 0.88 ind:imp:1s;ind:imp:2s; +dessinait dessiner ver 29.97 79.66 0.85 10.88 ind:imp:3s; +dessinant dessiner ver 29.97 79.66 0.29 4.73 par:pre; +dessinateur dessinateur nom m s 1.86 7.30 1.08 5.27 +dessinateurs dessinateur nom m p 1.86 7.30 0.46 1.76 +dessinatrice dessinateur nom f s 1.86 7.30 0.31 0.27 +dessine dessiner ver 29.97 79.66 6.05 10.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessinent dessiner ver 29.97 79.66 0.44 3.85 ind:pre:3p; +dessiner dessiner ver 29.97 79.66 9.10 12.97 inf; +dessinera dessiner ver 29.97 79.66 0.12 0.00 ind:fut:3s; +dessinerai dessiner ver 29.97 79.66 0.32 0.14 ind:fut:1s; +dessineraient dessiner ver 29.97 79.66 0.00 0.07 cnd:pre:3p; +dessinerais dessiner ver 29.97 79.66 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +dessinerait dessiner ver 29.97 79.66 0.16 0.07 cnd:pre:3s; +dessinerez dessiner ver 29.97 79.66 0.00 0.07 ind:fut:2p; +dessineront dessiner ver 29.97 79.66 0.03 0.07 ind:fut:3p; +dessines dessiner ver 29.97 79.66 1.39 0.07 ind:pre:2s; +dessinez dessiner ver 29.97 79.66 0.99 0.27 imp:pre:2p;ind:pre:2p; +dessiniez dessiner ver 29.97 79.66 0.26 0.00 ind:imp:2p; +dessinions dessiner ver 29.97 79.66 0.02 0.07 ind:imp:1p; +dessinât dessiner ver 29.97 79.66 0.00 0.20 sub:imp:3s; +dessins dessin nom m p 29.60 56.28 11.68 21.42 +dessinèrent dessiner ver 29.97 79.66 0.01 0.41 ind:pas:3p; +dessiné dessiner ver m s 29.97 79.66 5.05 8.99 par:pas; +dessinée dessiner ver f s 29.97 79.66 1.33 7.70 par:pas; +dessinées dessiner ver f p 29.97 79.66 1.85 5.27 par:pas; +dessinés dessiner ver m p 29.97 79.66 0.33 2.84 par:pas; +dessoûla dessoûler ver 1.69 0.81 0.00 0.07 ind:pas:3s; +dessoûlait dessoûler ver 1.69 0.81 0.00 0.14 ind:imp:3s; +dessoûle dessoûler ver 1.69 0.81 0.63 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessoûlent dessoûler ver 1.69 0.81 0.05 0.00 ind:pre:3p; +dessoûler dessoûler ver 1.69 0.81 0.37 0.14 inf; +dessoûles dessoûler ver 1.69 0.81 0.01 0.00 ind:pre:2s; +dessoûlez dessoûler ver 1.69 0.81 0.04 0.00 imp:pre:2p;ind:pre:2p; +dessoûlé dessoûler ver m s 1.69 0.81 0.58 0.14 par:pas; +dessoûlée dessoûler ver f s 1.69 0.81 0.01 0.14 par:pas; +dessoucha dessoucher ver 0.00 0.14 0.00 0.07 ind:pas:3s; +dessouchée dessoucher ver f s 0.00 0.14 0.00 0.07 par:pas; +dessouda dessouder ver 0.63 0.54 0.00 0.07 ind:pas:3s; +dessouder dessouder ver 0.63 0.54 0.45 0.14 inf; +dessoudé dessouder ver m s 0.63 0.54 0.18 0.20 par:pas; +dessoudée dessouder ver f s 0.63 0.54 0.00 0.07 par:pas; +dessoudées dessouder ver f p 0.63 0.54 0.00 0.07 par:pas; +dessoulait dessouler ver 0.04 0.20 0.00 0.07 ind:imp:3s; +dessouler dessouler ver 0.04 0.20 0.01 0.00 inf; +dessoulé dessouler ver m s 0.04 0.20 0.04 0.14 par:pas; +dessous_de_bras dessous_de_bras nom m 0.01 0.07 0.01 0.07 +dessous_de_plat dessous_de_plat nom m 0.20 0.54 0.20 0.54 +dessous_de_table dessous_de_table nom m 0.21 0.00 0.21 0.00 +dessous_de_verre dessous_de_verre nom m 0.01 0.00 0.01 0.00 +dessous dessous nom_sup m 18.14 29.46 18.14 29.46 +dessèche dessécher ver 3.54 15.61 0.85 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +dessèchement dessèchement nom m s 0.02 0.07 0.02 0.07 +dessèchent dessécher ver 3.54 15.61 0.14 0.34 ind:pre:3p; +dessécha dessécher ver 3.54 15.61 0.02 0.00 ind:pas:3s; +desséchaient dessécher ver 3.54 15.61 0.02 0.47 ind:imp:3p; +desséchais dessécher ver 3.54 15.61 0.00 0.07 ind:imp:1s; +desséchait dessécher ver 3.54 15.61 0.01 1.42 ind:imp:3s; +desséchant dessécher ver 3.54 15.61 0.14 0.20 par:pre; +desséchante desséchant adj f s 0.01 0.20 0.00 0.14 +dessécher dessécher ver 3.54 15.61 0.25 0.88 inf; +dessécherait dessécher ver 3.54 15.61 0.01 0.07 cnd:pre:3s; +dessécheront dessécher ver 3.54 15.61 0.01 0.07 ind:fut:3p; +desséchez dessécher ver 3.54 15.61 0.01 0.00 ind:pre:2p; +desséchèrent dessécher ver 3.54 15.61 0.00 0.07 ind:pas:3p; +desséché dessécher ver m s 3.54 15.61 0.49 3.72 par:pas; +desséchée dessécher ver f s 3.54 15.61 0.80 4.32 par:pas; +desséchées dessécher ver f p 3.54 15.61 0.24 1.28 par:pas; +desséchés dessécher ver m p 3.54 15.61 0.56 1.96 par:pas; +dessuintée dessuinter ver f s 0.00 0.07 0.00 0.07 par:pas; +dessus_de_lit dessus_de_lit nom m 0.09 1.08 0.09 1.08 +dessus dessus adv_sup 111.19 57.57 111.19 57.57 +destin destin nom m s 53.03 67.23 51.93 62.77 +destina destiner ver 12.52 35.00 0.00 0.07 ind:pas:3s; +destinaient destiner ver 12.52 35.00 0.00 0.34 ind:imp:3p; +destinais destiner ver 12.52 35.00 0.09 0.27 ind:imp:1s;ind:imp:2s; +destinait destiner ver 12.52 35.00 0.21 1.76 ind:imp:3s; +destinant destiner ver 12.52 35.00 0.00 0.07 par:pre; +destinataire destinataire nom s 0.71 2.23 0.67 1.82 +destinataires destinataire nom p 0.71 2.23 0.04 0.41 +destination destination nom f s 10.88 10.14 10.41 9.59 +destinations destination nom f p 10.88 10.14 0.46 0.54 +destinatrice destinateur nom f s 0.00 0.14 0.00 0.14 +destine destiner ver 12.52 35.00 0.37 1.28 ind:pre:1s;ind:pre:3s; +destinent destiner ver 12.52 35.00 0.01 0.14 ind:pre:3p; +destiner destiner ver 12.52 35.00 0.00 0.07 inf; +destines destiner ver 12.52 35.00 0.20 0.00 ind:pre:2s; +destinez destiner ver 12.52 35.00 0.16 0.20 ind:pre:2p; +destiniez destiner ver 12.52 35.00 0.01 0.00 ind:imp:2p; +destins destin nom m p 53.03 67.23 1.10 4.46 +destiné destiner ver m s 12.52 35.00 5.09 11.35 par:pas; +destinée destinée nom f s 9.08 11.22 8.64 8.31 +destinées destiner ver f p 12.52 35.00 1.08 3.85 par:pas; +destinés destiner ver m p 12.52 35.00 2.11 6.69 par:pas; +destitue destituer ver 0.56 0.74 0.01 0.07 ind:pre:3s; +destituer destituer ver 0.56 0.74 0.17 0.14 inf; +destitueront destituer ver 0.56 0.74 0.00 0.07 ind:fut:3p; +destituez destituer ver 0.56 0.74 0.01 0.07 imp:pre:2p; +destitution destitution nom f s 0.17 0.34 0.17 0.34 +destitué destituer ver m s 0.56 0.74 0.36 0.41 par:pas; +destituée destituer ver f s 0.56 0.74 0.01 0.00 par:pas; +destrier destrier nom m s 0.38 0.74 0.25 0.34 +destriers destrier nom m p 0.38 0.74 0.14 0.41 +destroy destroy adj s 0.25 0.14 0.25 0.14 +destroyer destroyer nom m s 2.82 0.88 1.84 0.41 +destroyers destroyer nom m p 2.82 0.88 0.98 0.47 +destructeur destructeur adj m s 2.84 2.77 1.10 0.95 +destructeurs destructeur adj m p 2.84 2.77 0.28 0.27 +destructible destructible adj m s 0.03 0.00 0.03 0.00 +destructif destructif adj m s 0.35 0.14 0.05 0.14 +destructifs destructif adj m p 0.35 0.14 0.01 0.00 +destruction destruction nom f s 14.31 15.34 13.96 11.76 +destructions destruction nom f p 14.31 15.34 0.35 3.58 +destructive destructif adj f s 0.35 0.14 0.29 0.00 +destructrice destructeur adj f s 2.84 2.77 0.97 1.15 +destructrices destructeur adj f p 2.84 2.77 0.49 0.41 +deçà deçà adv 0.27 2.97 0.27 2.97 +dette dette nom f s 26.13 12.16 12.77 5.14 +dettes dette nom f p 26.13 12.16 13.36 7.03 +deuche deuche nom f s 0.00 0.07 0.00 0.07 +deuil deuil nom m s 12.24 26.22 12.21 23.51 +deuils deuil nom m p 12.24 26.22 0.03 2.70 +deus_ex_machina deus_ex_machina nom m 0.16 0.47 0.16 0.47 +deusio deusio adv 0.20 0.00 0.20 0.00 +deutsche_mark deutsche_mark adj m s 0.02 0.00 0.02 0.00 +deutérium deutérium nom m s 0.07 0.00 0.07 0.00 +deutéronome deutéronome nom m s 0.23 0.20 0.23 0.20 +deux_chevaux deux_chevaux nom f 0.00 1.22 0.00 1.22 +deux_deux deux_deux nom m 0.02 0.00 0.02 0.00 +deux_mâts deux_mâts nom m 0.14 0.07 0.14 0.07 +deux_pièces deux_pièces nom m 0.27 1.82 0.27 1.82 +deux_points deux_points nom m 0.01 0.00 0.01 0.00 +deux_ponts deux_ponts nom m 0.00 0.07 0.00 0.07 +deux_quatre deux_quatre nom m 0.03 0.00 0.03 0.00 +deux_roues deux_roues nom m 0.11 0.00 0.11 0.00 +deux deux adj_num 1009.01 1557.91 1009.01 1557.91 +deuxième deuxième adj 43.97 59.05 43.77 58.58 +deuxièmement deuxièmement adv 4.58 0.88 4.58 0.88 +deuxièmes deuxième adj 43.97 59.05 0.20 0.47 +deuzio deuzio adv 0.89 0.20 0.89 0.20 +devînmes devenir ver 438.57 533.51 0.04 0.27 ind:pas:1p; +devînt devenir ver 438.57 533.51 0.29 2.09 sub:imp:3s; +devaient devoir ver_sup 3232.80 1318.24 13.59 61.22 ind:imp:3p; +devais devoir ver_sup 3232.80 1318.24 81.01 53.38 ind:imp:1s;ind:imp:2s; +devait devoir ver_sup 3232.80 1318.24 108.88 298.99 ind:imp:3s; +devance devancer ver 3.94 8.04 0.89 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +devancent devancer ver 3.94 8.04 0.06 0.20 ind:pre:3p; +devancer devancer ver 3.94 8.04 0.99 2.03 inf; +devancerait devancer ver 3.94 8.04 0.01 0.00 cnd:pre:3s; +devancerez devancer ver 3.94 8.04 0.01 0.00 ind:fut:2p; +devancez devancer ver 3.94 8.04 0.07 0.00 imp:pre:2p;ind:pre:2p; +devanciers devancier nom m p 0.00 0.07 0.00 0.07 +devancèrent devancer ver 3.94 8.04 0.00 0.07 ind:pas:3p; +devancé devancer ver m s 3.94 8.04 0.98 1.15 par:pas; +devancée devancer ver f s 3.94 8.04 0.31 0.27 par:pas; +devancés devancer ver m p 3.94 8.04 0.54 0.14 par:pas; +devant devant pre 208.19 690.34 208.19 690.34 +devança devancer ver 3.94 8.04 0.02 0.61 ind:pas:3s; +devançaient devancer ver 3.94 8.04 0.00 0.34 ind:imp:3p; +devançais devancer ver 3.94 8.04 0.00 0.07 ind:imp:1s; +devançait devancer ver 3.94 8.04 0.03 0.68 ind:imp:3s; +devançant devancer ver 3.94 8.04 0.01 1.55 par:pre; +devançons devancer ver 3.94 8.04 0.03 0.00 imp:pre:1p; +devants devant nom_sup m p 4.20 11.08 0.75 2.36 +devanture devanture nom f s 0.48 7.64 0.46 5.07 +devantures devanture nom f p 0.48 7.64 0.03 2.57 +devenaient devenir ver 438.57 533.51 1.76 19.39 ind:imp:3p; +devenais devenir ver 438.57 533.51 2.82 6.15 ind:imp:1s;ind:imp:2s; +devenait devenir ver 438.57 533.51 7.41 77.16 ind:imp:3s; +devenant devenir ver 438.57 533.51 1.23 5.27 par:pre; +devenez devenir ver 438.57 533.51 3.69 1.28 imp:pre:2p;ind:pre:2p; +deveniez devenir ver 438.57 533.51 0.71 0.14 ind:imp:2p; +devenions devenir ver 438.57 533.51 0.20 0.95 ind:imp:1p; +devenir devenir ver 438.57 533.51 108.83 85.27 inf; +devenons devenir ver 438.57 533.51 1.23 0.74 imp:pre:1p;ind:pre:1p; +devenu devenir ver m s 438.57 533.51 92.42 95.68 par:pas; +devenue devenir ver f s 438.57 533.51 32.70 52.03 par:pas; +devenues devenir ver f p 438.57 533.51 3.57 8.99 par:pas; +devenus devenir ver m p 438.57 533.51 17.16 23.45 par:pas; +devers devers pre 0.06 2.57 0.06 2.57 +devez devoir ver_sup 3232.80 1318.24 150.16 16.15 imp:pre:2p;ind:pre:2p; +deviendra devenir ver 438.57 533.51 9.28 4.12 ind:fut:3s; +deviendrai devenir ver 438.57 533.51 3.13 1.49 ind:fut:1s; +deviendraient devenir ver 438.57 533.51 0.22 1.55 cnd:pre:3p; +deviendrais devenir ver 438.57 533.51 3.05 1.96 cnd:pre:1s;cnd:pre:2s; +deviendrait devenir ver 438.57 533.51 3.16 8.58 cnd:pre:3s; +deviendras devenir ver 438.57 533.51 3.71 0.95 ind:fut:2s; +deviendrez devenir ver 438.57 533.51 1.45 0.27 ind:fut:2p; +deviendriez devenir ver 438.57 533.51 0.22 0.20 cnd:pre:2p; +deviendrions devenir ver 438.57 533.51 0.08 0.14 cnd:pre:1p; +deviendrons devenir ver 438.57 533.51 0.86 0.20 ind:fut:1p; +deviendront devenir ver 438.57 533.51 2.15 1.35 ind:fut:3p; +devienne devenir ver 438.57 533.51 10.24 7.36 sub:pre:1s;sub:pre:3s; +deviennent devenir ver 438.57 533.51 14.29 16.22 ind:pre:3p; +deviennes devenir ver 438.57 533.51 1.94 0.61 sub:pre:2s; +deviens devenir ver 438.57 533.51 32.11 8.99 imp:pre:2s;ind:pre:1s;ind:pre:2s; +devient devenir ver 438.57 533.51 69.59 59.46 ind:pre:3s; +deviez devoir ver_sup 3232.80 1318.24 13.48 1.69 ind:imp:2p;sub:pre:2p; +devin devin nom m s 1.82 1.08 1.61 0.68 +devina deviner ver 72.77 112.30 0.02 5.14 ind:pas:3s; +devinai deviner ver 72.77 112.30 0.14 2.91 ind:pas:1s; +devinaient deviner ver 72.77 112.30 0.00 1.49 ind:imp:3p; +devinais deviner ver 72.77 112.30 0.21 7.30 ind:imp:1s;ind:imp:2s; +devinait deviner ver 72.77 112.30 0.07 18.85 ind:imp:3s; +devinant deviner ver 72.77 112.30 0.05 1.89 par:pre; +devine deviner ver 72.77 112.30 27.12 21.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +devinent deviner ver 72.77 112.30 0.14 1.28 ind:pre:3p; +deviner deviner ver 72.77 112.30 17.60 25.95 inf; +devinera deviner ver 72.77 112.30 0.22 0.20 ind:fut:3s; +devinerai deviner ver 72.77 112.30 0.07 0.14 ind:fut:1s; +devineraient deviner ver 72.77 112.30 0.02 0.00 cnd:pre:3p; +devinerais deviner ver 72.77 112.30 0.08 0.34 cnd:pre:1s;cnd:pre:2s; +devinerait deviner ver 72.77 112.30 0.06 0.41 cnd:pre:3s; +devineras deviner ver 72.77 112.30 1.50 0.00 ind:fut:2s; +devineresse devineur nom f s 0.15 0.20 0.14 0.14 +devineresses devineur nom f p 0.15 0.20 0.00 0.07 +devinerez deviner ver 72.77 112.30 0.90 0.27 ind:fut:2p; +devineriez deviner ver 72.77 112.30 0.22 0.07 cnd:pre:2p; +devineront deviner ver 72.77 112.30 0.03 0.07 ind:fut:3p; +devines deviner ver 72.77 112.30 2.10 1.01 ind:pre:2s;sub:pre:2s; +devinette devinette nom f s 2.97 2.70 1.48 1.42 +devinettes devinette nom f p 2.97 2.70 1.49 1.28 +devineur devineur nom m s 0.15 0.20 0.01 0.00 +devinez deviner ver 72.77 112.30 10.15 2.91 imp:pre:2p;ind:pre:2p; +devinions deviner ver 72.77 112.30 0.00 0.95 ind:imp:1p; +devinâmes deviner ver 72.77 112.30 0.00 0.14 ind:pas:1p; +devinons deviner ver 72.77 112.30 0.09 0.14 imp:pre:1p;ind:pre:1p; +devinât deviner ver 72.77 112.30 0.00 0.47 sub:imp:3s; +devinrent devenir ver 438.57 533.51 1.40 5.61 ind:pas:3p; +devins devenir ver 438.57 533.51 0.69 1.89 ind:pas:1s; +devinsse devenir ver 438.57 533.51 0.00 0.14 sub:imp:1s; +devinssent devenir ver 438.57 533.51 0.00 0.27 sub:imp:3p; +devinssiez devenir ver 438.57 533.51 0.01 0.00 sub:imp:2p; +devint devenir ver 438.57 533.51 6.96 33.31 ind:pas:3s; +devinèrent deviner ver 72.77 112.30 0.00 0.14 ind:pas:3p; +deviné deviner ver m s 72.77 112.30 11.95 16.96 par:pas; +devinée deviner ver f s 72.77 112.30 0.02 1.49 par:pas; +devinées deviner ver f p 72.77 112.30 0.00 0.34 par:pas; +devinés deviner ver m p 72.77 112.30 0.01 0.20 par:pas; +devions devoir ver_sup 3232.80 1318.24 6.25 9.46 ind:imp:1p; +devis devis nom m 0.94 1.62 0.94 1.62 +devisaient deviser ver 0.25 3.58 0.01 0.68 ind:imp:3p; +devisais deviser ver 0.25 3.58 0.00 0.07 ind:imp:1s; +devisait deviser ver 0.25 3.58 0.00 0.54 ind:imp:3s; +devisant deviser ver 0.25 3.58 0.00 1.28 par:pre; +devise devise nom f s 5.54 7.77 4.75 6.22 +devisent deviser ver 0.25 3.58 0.01 0.20 ind:pre:3p; +deviser deviser ver 0.25 3.58 0.03 0.47 inf; +devises devise nom f p 5.54 7.77 0.79 1.55 +devisions deviser ver 0.25 3.58 0.16 0.07 ind:imp:1p; +devisèrent deviser ver 0.25 3.58 0.00 0.07 ind:pas:3p; +devisé deviser ver m s 0.25 3.58 0.04 0.07 par:pas; +devoir devoir ver_sup 3232.80 1318.24 74.06 29.26 inf; +devoirs devoir nom_sup m p 63.59 55.54 20.70 22.50 +devon devon nom m s 1.98 0.27 0.04 0.00 +devons devoir ver_sup 3232.80 1318.24 114.35 14.93 imp:pre:1p;ind:pre:1p; +devra devoir ver_sup 3232.80 1318.24 22.45 8.04 ind:fut:3s; +devrai devoir ver_sup 3232.80 1318.24 10.32 1.15 ind:fut:1s; +devraient devoir ver_sup 3232.80 1318.24 23.70 10.41 cnd:pre:3p; +devrais devoir ver_sup 3232.80 1318.24 235.63 36.49 cnd:pre:1s;cnd:pre:2s; +devrait devoir ver_sup 3232.80 1318.24 208.85 51.49 cnd:pre:3s; +devras devoir ver_sup 3232.80 1318.24 15.16 0.41 ind:fut:2s; +devrez devoir ver_sup 3232.80 1318.24 12.97 0.74 ind:fut:2p; +devriez devoir ver_sup 3232.80 1318.24 75.83 11.89 cnd:pre:2p; +devrions devoir ver_sup 3232.80 1318.24 27.74 2.36 cnd:pre:1p; +devrons devoir ver_sup 3232.80 1318.24 7.11 0.34 ind:fut:1p; +devront devoir ver_sup 3232.80 1318.24 7.26 3.04 ind:fut:3p; +dexaméthasone dexaméthasone nom f s 0.01 0.00 0.01 0.00 +dextre dextre nom f s 0.17 0.54 0.17 0.54 +dextrement dextrement adv 0.00 0.14 0.00 0.14 +dextrose dextrose nom m s 0.12 0.00 0.12 0.00 +dextérité dextérité nom f s 0.32 2.16 0.32 2.16 +dey dey nom m s 0.02 1.96 0.02 1.96 +dharma dharma nom m s 0.26 0.14 0.26 0.14 +dhole dhole nom m s 0.08 0.00 0.08 0.00 +dia dia ono 0.41 1.22 0.41 1.22 +diable diable ono 4.25 2.91 4.25 2.91 +diablement diablement adv 0.75 1.01 0.75 1.01 +diablerie diablerie nom f s 0.18 0.61 0.14 0.07 +diableries diablerie nom f p 0.18 0.61 0.04 0.54 +diables diable nom m p 93.34 54.80 5.80 3.78 +diablesse diablesse nom f s 1.12 1.28 0.95 1.01 +diablesses diablesse nom f p 1.12 1.28 0.16 0.27 +diablotin diablotin nom m s 0.53 0.34 0.38 0.14 +diablotins diablotin nom m p 0.53 0.34 0.15 0.20 +diabolique diabolique adj s 8.61 5.95 6.89 4.73 +diaboliquement diaboliquement adv 0.11 0.34 0.11 0.34 +diaboliques diabolique adj p 8.61 5.95 1.71 1.22 +diabolisent diaboliser ver 0.09 0.07 0.01 0.00 ind:pre:3p; +diaboliser diaboliser ver 0.09 0.07 0.05 0.00 inf; +diabolisme diabolisme nom m s 0.04 0.00 0.04 0.00 +diabolisé diaboliser ver m s 0.09 0.07 0.02 0.07 par:pas; +diabolisée diaboliser ver f s 0.09 0.07 0.01 0.00 par:pas; +diabolo diabolo nom m s 0.03 0.88 0.03 0.47 +diabolos diabolo nom m p 0.03 0.88 0.00 0.41 +diabète diabète nom m s 2.27 1.42 2.25 1.35 +diabètes diabète nom m p 2.27 1.42 0.01 0.07 +diabétique diabétique adj s 1.29 0.34 1.28 0.34 +diabétiques diabétique nom p 0.53 0.00 0.16 0.00 +diachronique diachronique adj f s 0.01 0.07 0.01 0.07 +diaclase diaclase nom f s 0.14 0.00 0.14 0.00 +diaconesse diaconesse nom f s 0.00 0.20 0.00 0.14 +diaconesses diaconesse nom f p 0.00 0.20 0.00 0.07 +diaconie diaconie nom f s 0.00 0.07 0.00 0.07 +diacre diacre nom m s 0.94 1.15 0.84 1.01 +diacres diacre nom m p 0.94 1.15 0.09 0.14 +diacritique diacritique adj m s 0.03 0.07 0.03 0.07 +diacétylmorphine diacétylmorphine nom f s 0.01 0.00 0.01 0.00 +diadème diadème nom m s 1.52 1.76 1.38 1.15 +diadèmes diadème nom m p 1.52 1.76 0.15 0.61 +diagnose diagnose nom f s 0.01 0.00 0.01 0.00 +diagnostic diagnostic nom m s 6.78 3.85 6.25 3.51 +diagnostics diagnostic nom m p 6.78 3.85 0.53 0.34 +diagnostiqua diagnostiquer ver 1.93 1.15 0.00 0.14 ind:pas:3s; +diagnostiquait diagnostiquer ver 1.93 1.15 0.02 0.14 ind:imp:3s; +diagnostiquant diagnostiquer ver 1.93 1.15 0.03 0.07 par:pre; +diagnostique diagnostique adj s 0.88 0.20 0.70 0.20 +diagnostiquer diagnostiquer ver 1.93 1.15 0.53 0.27 inf; +diagnostiques diagnostique adj p 0.88 0.20 0.17 0.00 +diagnostiqueur diagnostiqueur nom m s 0.01 0.00 0.01 0.00 +diagnostiquez diagnostiquer ver 1.93 1.15 0.03 0.00 imp:pre:2p;ind:pre:2p; +diagnostiquèrent diagnostiquer ver 1.93 1.15 0.00 0.14 ind:pas:3p; +diagnostiqué diagnostiquer ver m s 1.93 1.15 1.20 0.27 par:pas; +diagnostiqués diagnostiquer ver m p 1.93 1.15 0.04 0.07 par:pas; +diagonal diagonal adj m s 0.11 0.27 0.00 0.07 +diagonale diagonale nom f s 0.28 4.32 0.18 3.85 +diagonalement diagonalement adv 0.01 0.07 0.01 0.07 +diagonales diagonale nom f p 0.28 4.32 0.10 0.47 +diagonaux diagonal adj m p 0.11 0.27 0.00 0.07 +diagramme diagramme nom m s 0.77 0.14 0.58 0.00 +diagrammes diagramme nom m p 0.77 0.14 0.19 0.14 +dialectal dialectal adj m s 0.32 0.00 0.21 0.00 +dialectale dialectal adj f s 0.32 0.00 0.11 0.00 +dialecte dialecte nom m s 1.79 2.57 1.44 2.03 +dialectes dialecte nom m p 1.79 2.57 0.35 0.54 +dialecticien dialecticien nom m s 0.01 0.34 0.00 0.20 +dialecticienne dialecticien nom f s 0.01 0.34 0.00 0.07 +dialecticiens dialecticien nom m p 0.01 0.34 0.01 0.07 +dialectique dialectique nom f s 0.66 2.23 0.66 2.16 +dialectiques dialectique adj f p 0.19 2.03 0.00 0.20 +dialogique dialogique adj m s 0.01 0.00 0.01 0.00 +dialoguai dialoguer ver 1.01 2.64 0.00 0.07 ind:pas:1s; +dialoguaient dialoguer ver 1.01 2.64 0.01 0.14 ind:imp:3p; +dialoguait dialoguer ver 1.01 2.64 0.01 0.14 ind:imp:3s; +dialoguant dialoguer ver 1.01 2.64 0.05 0.27 par:pre; +dialogue dialogue nom m s 16.71 19.19 14.11 14.46 +dialoguent dialoguer ver 1.01 2.64 0.00 0.20 ind:pre:3p; +dialoguer dialoguer ver 1.01 2.64 0.76 0.74 inf; +dialoguera dialoguer ver 1.01 2.64 0.01 0.07 ind:fut:3s; +dialogues dialogue nom m p 16.71 19.19 2.60 4.73 +dialoguez dialoguer ver 1.01 2.64 0.11 0.00 imp:pre:2p;ind:pre:2p; +dialoguiste dialoguiste nom s 0.02 0.14 0.00 0.07 +dialoguistes dialoguiste nom p 0.02 0.14 0.02 0.07 +dialoguons dialoguer ver 1.01 2.64 0.03 0.00 imp:pre:1p;ind:pre:1p; +dialoguât dialoguer ver 1.01 2.64 0.00 0.07 sub:imp:3s; +dialogué dialoguer ver m s 1.01 2.64 0.00 0.27 par:pas; +dialoguée dialoguer ver f s 1.01 2.64 0.00 0.14 par:pas; +dialoguées dialoguer ver f p 1.01 2.64 0.01 0.27 par:pas; +dialyse dialyse nom f s 1.06 0.20 1.02 0.20 +dialyser dialyser ver 0.16 0.00 0.01 0.00 inf; +dialyses dialyse nom f p 1.06 0.20 0.04 0.00 +dialysé dialyser ver m s 0.16 0.00 0.01 0.00 par:pas; +dialysée dialyser ver f s 0.16 0.00 0.14 0.00 par:pas; +diam diam nom m s 0.43 1.01 0.17 0.61 +diamant diamant nom m s 20.56 22.91 7.97 14.12 +diamantaire diamantaire nom s 0.07 2.43 0.05 1.28 +diamantaires diamantaire nom p 0.07 2.43 0.02 1.15 +diamante diamanter ver 0.00 0.20 0.00 0.07 ind:pre:3s; +diamantifère diamantifère adj f s 0.00 0.07 0.00 0.07 +diamantin diamantin adj m s 0.06 0.88 0.05 0.20 +diamantine diamantin adj f s 0.06 0.88 0.00 0.41 +diamantines diamantin adj f p 0.06 0.88 0.00 0.20 +diamantins diamantin adj m p 0.06 0.88 0.01 0.07 +diamants diamant nom m p 20.56 22.91 12.59 8.78 +diamanté diamanté adj m s 0.01 0.14 0.00 0.14 +diamantée diamanter ver f s 0.00 0.20 0.00 0.07 par:pas; +diamantés diamanté adj m p 0.01 0.14 0.01 0.00 +diamine diamine nom f s 0.01 0.00 0.01 0.00 +diamorphine diamorphine nom f s 0.01 0.00 0.01 0.00 +diams diam nom m p 0.43 1.01 0.26 0.41 +diamètre diamètre nom m s 1.81 2.23 1.81 2.23 +diamétralement diamétralement adv 0.14 0.74 0.14 0.74 +diane diane nom f s 0.03 0.47 0.03 0.41 +dianes diane nom f p 0.03 0.47 0.00 0.07 +diantre diantre ono 0.46 0.14 0.46 0.14 +diapason diapason nom m s 0.50 1.49 0.46 1.42 +diapasons diapason nom m p 0.50 1.49 0.04 0.07 +diaphane diaphane adj s 0.03 2.91 0.03 2.03 +diaphanes diaphane adj f p 0.03 2.91 0.00 0.88 +diaphorétique diaphorétique adj s 0.06 0.00 0.06 0.00 +diaphragma diaphragmer ver 0.00 0.07 0.00 0.07 ind:pas:3s; +diaphragmatique diaphragmatique adj f s 0.05 0.00 0.05 0.00 +diaphragme diaphragme nom m s 1.32 1.49 1.32 1.42 +diaphragmes diaphragme nom m p 1.32 1.49 0.00 0.07 +diapo diapo nom f s 1.78 0.27 0.66 0.07 +diaporama diaporama nom m s 0.05 0.07 0.05 0.00 +diaporamas diaporama nom m p 0.05 0.07 0.00 0.07 +diapos diapo nom f p 1.78 0.27 1.13 0.20 +diapositifs diapositif adj m p 0.21 0.07 0.00 0.07 +diapositive diapositif adj f s 0.21 0.07 0.20 0.00 +diapositives diapositive nom f p 0.92 0.61 0.86 0.61 +diapré diapré adj m s 0.00 0.41 0.00 0.07 +diaprée diapré adj f s 0.00 0.41 0.00 0.14 +diaprées diaprer ver f p 0.00 0.20 0.00 0.07 par:pas; +diaprures diaprure nom f p 0.00 0.07 0.00 0.07 +diaprés diapré adj m p 0.00 0.41 0.00 0.20 +diarrhée diarrhée nom f s 3.38 1.82 2.84 1.15 +diarrhées diarrhée nom f p 3.38 1.82 0.54 0.68 +diarrhéique diarrhéique adj s 0.01 0.07 0.01 0.07 +diaspora diaspora nom f s 0.00 0.61 0.00 0.54 +diasporas diaspora nom f p 0.00 0.61 0.00 0.07 +diastole diastole nom f s 0.01 0.07 0.00 0.07 +diastoles diastole nom f p 0.01 0.07 0.01 0.00 +diastolique diastolique adj s 0.07 0.07 0.07 0.00 +diastoliques diastolique adj m p 0.07 0.07 0.00 0.07 +diatomée diatomée nom f s 0.07 0.07 0.01 0.00 +diatomées diatomée nom f p 0.07 0.07 0.06 0.07 +diatonique diatonique adj s 0.00 0.14 0.00 0.14 +diatribe diatribe nom f s 0.14 2.09 0.12 1.49 +diatribes diatribe nom f p 0.14 2.09 0.02 0.61 +dicastères dicastère nom m p 0.00 0.07 0.00 0.07 +dichotomie dichotomie nom f s 0.20 0.00 0.20 0.00 +dichroïque dichroïque adj m s 0.01 0.00 0.01 0.00 +dichroïsme dichroïsme nom m s 0.00 0.07 0.00 0.07 +dicible dicible adj s 0.00 0.07 0.00 0.07 +dico dico nom m s 0.77 0.74 0.75 0.68 +dicos dico nom m p 0.77 0.74 0.02 0.07 +dicta dicter ver 8.42 12.30 0.11 0.68 ind:pas:3s; +dictai dicter ver 8.42 12.30 0.00 0.14 ind:pas:1s; +dictaient dicter ver 8.42 12.30 0.14 0.20 ind:imp:3p; +dictais dicter ver 8.42 12.30 0.03 0.07 ind:imp:1s;ind:imp:2s; +dictait dicter ver 8.42 12.30 0.07 2.36 ind:imp:3s; +dictames dictame nom m p 0.00 0.14 0.00 0.14 +dictant dicter ver 8.42 12.30 0.01 0.34 par:pre; +dictaphone dictaphone nom m s 0.42 0.34 0.41 0.27 +dictaphones dictaphone nom m p 0.42 0.34 0.02 0.07 +dictateur dictateur nom m s 2.53 5.68 2.14 5.00 +dictateurs dictateur nom m p 2.53 5.68 0.36 0.68 +dictatorial dictatorial adj m s 0.17 0.34 0.03 0.20 +dictatoriale dictatorial adj f s 0.17 0.34 0.03 0.07 +dictatoriales dictatorial adj f p 0.17 0.34 0.10 0.07 +dictatoriaux dictatorial adj m p 0.17 0.34 0.01 0.00 +dictatrice dictateur nom f s 2.53 5.68 0.04 0.00 +dictats dictat nom m p 0.01 0.14 0.01 0.14 +dictature dictature nom f s 3.86 5.27 3.84 4.86 +dictatures dictature nom f p 3.86 5.27 0.02 0.41 +dicte dicter ver 8.42 12.30 2.78 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dictent dicter ver 8.42 12.30 0.32 0.41 ind:pre:3p; +dicter dicter ver 8.42 12.30 2.28 1.89 inf; +dictera dicter ver 8.42 12.30 0.07 0.14 ind:fut:3s; +dicterai dicter ver 8.42 12.30 0.14 0.07 ind:fut:1s; +dicterez dicter ver 8.42 12.30 0.02 0.00 ind:fut:2p; +dictes dicter ver 8.42 12.30 0.03 0.27 ind:pre:2s; +dictez dicter ver 8.42 12.30 0.09 0.07 imp:pre:2p;ind:pre:2p; +dictiez dicter ver 8.42 12.30 0.01 0.07 ind:imp:2p; +diction diction nom f s 1.37 1.49 1.37 1.49 +dictionnaire dictionnaire nom m s 2.94 10.88 2.62 8.11 +dictionnaires dictionnaire nom m p 2.94 10.88 0.32 2.77 +dicton dicton nom m s 2.83 1.62 2.48 1.15 +dictons dicton nom m p 2.83 1.62 0.34 0.47 +dictât dicter ver 8.42 12.30 0.00 0.07 sub:imp:3s; +dictèrent dicter ver 8.42 12.30 0.00 0.07 ind:pas:3p; +dicté dicter ver m s 8.42 12.30 1.22 1.42 par:pas; +dictée dictée nom f s 2.25 4.05 1.59 3.51 +dictées dictée nom f p 2.25 4.05 0.66 0.54 +dictés dicter ver m p 8.42 12.30 0.16 0.34 par:pas; +didactique didactique adj s 0.60 1.35 0.60 1.01 +didactiquement didactiquement adv 0.00 0.07 0.00 0.07 +didactiques didactique adj p 0.60 1.35 0.00 0.34 +die die nom s 2.17 1.82 2.17 1.82 +dieffenbachia dieffenbachia nom f s 0.00 0.07 0.00 0.07 +diem diem nom m s 0.58 0.00 0.58 0.00 +dieppoise dieppois adj f s 0.00 0.41 0.00 0.34 +dieppoises dieppois adj f p 0.00 0.41 0.00 0.07 +dies_irae dies_irae nom m 0.54 0.14 0.54 0.14 +diesel diesel nom m s 1.71 0.88 1.47 0.68 +diesels diesel nom m p 1.71 0.88 0.25 0.20 +dieu_roi dieu_roi nom m s 0.01 0.07 0.01 0.07 +dieu dieu nom m s 903.41 396.49 852.91 368.51 +dieux dieu nom m p 903.41 396.49 50.49 27.97 +diffamait diffamer ver 0.81 0.54 0.00 0.07 ind:imp:3s; +diffamant diffamer ver 0.81 0.54 0.04 0.00 par:pre; +diffamateur diffamateur nom m s 0.21 0.20 0.21 0.07 +diffamateurs diffamateur nom m p 0.21 0.20 0.00 0.07 +diffamation diffamation nom f s 1.98 0.27 1.86 0.20 +diffamations diffamation nom f p 1.98 0.27 0.12 0.07 +diffamatoire diffamatoire adj s 0.20 0.14 0.10 0.14 +diffamatoires diffamatoire adj f p 0.20 0.14 0.09 0.00 +diffamatrice diffamateur nom f s 0.21 0.20 0.00 0.07 +diffame diffamer ver 0.81 0.54 0.13 0.14 ind:pre:3s; +diffament diffamer ver 0.81 0.54 0.01 0.07 ind:pre:3p; +diffamer diffamer ver 0.81 0.54 0.12 0.07 inf; +diffamé diffamer ver m s 0.81 0.54 0.48 0.00 par:pas; +diffamée diffamer ver f s 0.81 0.54 0.02 0.07 par:pas; +diffamées diffamer ver f p 0.81 0.54 0.00 0.07 par:pas; +diffamés diffamer ver m p 0.81 0.54 0.00 0.07 par:pas; +difficile difficile adj s 150.58 118.11 135.15 100.74 +difficilement difficilement adv 3.72 13.04 3.72 13.04 +difficiles difficile adj p 150.58 118.11 15.43 17.36 +difficulté difficulté nom f s 15.74 49.80 6.86 22.03 +difficultueux difficultueux adj m 0.00 0.07 0.00 0.07 +difficultés difficulté nom f p 15.74 49.80 8.89 27.77 +difforme difforme adj s 1.18 2.91 0.94 1.76 +difformes difforme adj p 1.18 2.91 0.25 1.15 +difformité difformité nom f s 0.68 0.81 0.42 0.47 +difformités difformité nom f p 0.68 0.81 0.26 0.34 +diffractent diffracter ver 0.00 0.14 0.00 0.07 ind:pre:3p; +diffraction diffraction nom f s 0.04 0.00 0.04 0.00 +diffractée diffracter ver f s 0.00 0.14 0.00 0.07 par:pas; +diffère différer ver 3.71 10.07 0.55 1.35 ind:pre:1s;ind:pre:3s; +diffèrent différer ver 3.71 10.07 1.86 0.95 ind:pre:3p; +différa différer ver 3.71 10.07 0.00 0.27 ind:pas:3s; +différaient différer ver 3.71 10.07 0.13 0.81 ind:imp:3p; +différais différer ver 3.71 10.07 0.01 0.14 ind:imp:1s; +différait différer ver 3.71 10.07 0.12 1.82 ind:imp:3s; +différant différer ver 3.71 10.07 0.00 0.68 par:pre; +différemment différemment adv 8.46 4.19 8.46 4.19 +différence différence nom f s 55.88 44.46 51.47 38.65 +différences différence nom f p 55.88 44.46 4.41 5.81 +différenciables différenciable adj f p 0.00 0.07 0.00 0.07 +différenciaient différencier ver 3.17 2.91 0.01 0.07 ind:imp:3p; +différenciais différencier ver 3.17 2.91 0.00 0.07 ind:imp:1s; +différenciait différencier ver 3.17 2.91 0.28 0.81 ind:imp:3s; +différenciant différencier ver 3.17 2.91 0.00 0.07 par:pre; +différenciation différenciation nom f s 0.03 0.14 0.03 0.07 +différenciations différenciation nom f p 0.03 0.14 0.00 0.07 +différencie différencier ver 3.17 2.91 1.52 0.41 ind:pre:3s; +différencient différencier ver 3.17 2.91 0.04 0.07 ind:pre:3p; +différencier différencier ver 3.17 2.91 1.18 1.15 inf; +différenciera différencier ver 3.17 2.91 0.02 0.00 ind:fut:3s; +différencierez différencier ver 3.17 2.91 0.01 0.00 ind:fut:2p; +différencieront différencier ver 3.17 2.91 0.00 0.07 ind:fut:3p; +différenciez différencier ver 3.17 2.91 0.06 0.00 imp:pre:2p;ind:pre:2p; +différencié différencier ver m s 3.17 2.91 0.03 0.07 par:pas; +différenciée différencié adj f s 0.01 0.27 0.00 0.07 +différenciées différencié adj f p 0.01 0.27 0.01 0.07 +différenciés différencier ver m p 3.17 2.91 0.01 0.07 par:pas; +différend différend nom m s 2.68 1.49 1.15 0.95 +différends différend nom m p 2.68 1.49 1.53 0.54 +différent différent adj m s 130.91 89.32 65.42 27.43 +différente différent adj f s 130.91 89.32 24.45 18.31 +différentes différentes adj_ind f p 4.89 2.70 4.89 2.70 +différentie différentier ver 0.02 0.00 0.02 0.00 ind:pre:3s; +différentiel différentiel nom m s 0.21 0.00 0.21 0.00 +différentielle différentiel adj f s 0.22 0.07 0.06 0.07 +différentielles différentiel adj f p 0.22 0.07 0.03 0.00 +différents différents adj_ind m p 3.94 2.84 3.94 2.84 +différer différer ver 3.71 10.07 0.27 2.70 inf; +différera différer ver 3.71 10.07 0.00 0.07 ind:fut:3s; +différerais différer ver 3.71 10.07 0.00 0.07 cnd:pre:1s; +différerait différer ver 3.71 10.07 0.01 0.14 cnd:pre:3s; +différeront différer ver 3.71 10.07 0.01 0.00 ind:fut:3p; +différez différer ver 3.71 10.07 0.06 0.00 imp:pre:2p;ind:pre:2p; +différions différer ver 3.71 10.07 0.00 0.07 ind:imp:1p; +différons différer ver 3.71 10.07 0.18 0.07 ind:pre:1p; +différât différer ver 3.71 10.07 0.00 0.07 sub:imp:3s; +différèrent différer ver 3.71 10.07 0.00 0.07 ind:pas:3p; +différé différer ver m s 3.71 10.07 0.19 0.47 par:pas; +différée différer ver f s 3.71 10.07 0.31 0.34 par:pas; +différées différé adj f p 0.13 1.55 0.01 0.14 +différés différé adj m p 0.13 1.55 0.02 0.00 +diffus diffus adj m 0.69 5.88 0.17 1.82 +diffusa diffuser ver 10.33 10.20 0.00 0.41 ind:pas:3s; +diffusaient diffuser ver 10.33 10.20 0.03 1.08 ind:imp:3p; +diffusais diffuser ver 10.33 10.20 0.02 0.00 ind:imp:1s; +diffusait diffuser ver 10.33 10.20 0.10 2.84 ind:imp:3s; +diffusant diffuser ver 10.33 10.20 0.09 0.81 par:pre; +diffuse diffuser ver 10.33 10.20 1.06 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +diffusent diffuser ver 10.33 10.20 0.64 0.27 ind:pre:3p; +diffuser diffuser ver 10.33 10.20 3.61 1.22 inf; +diffusera diffuser ver 10.33 10.20 0.16 0.00 ind:fut:3s; +diffuserai diffuser ver 10.33 10.20 0.01 0.00 ind:fut:1s; +diffuseraient diffuser ver 10.33 10.20 0.00 0.07 cnd:pre:3p; +diffuserais diffuser ver 10.33 10.20 0.01 0.00 cnd:pre:1s; +diffuserait diffuser ver 10.33 10.20 0.01 0.00 cnd:pre:3s; +diffuserions diffuser ver 10.33 10.20 0.10 0.00 cnd:pre:1p; +diffuserons diffuser ver 10.33 10.20 0.06 0.00 ind:fut:1p; +diffuseront diffuser ver 10.33 10.20 0.10 0.14 ind:fut:3p; +diffuses diffus adj f p 0.69 5.88 0.13 0.20 +diffuseur diffuseur nom m s 0.19 0.14 0.09 0.07 +diffuseurs diffuseur nom m p 0.19 0.14 0.10 0.07 +diffusez diffuser ver 10.33 10.20 0.39 0.14 imp:pre:2p;ind:pre:2p; +diffusion diffusion nom f s 2.55 1.28 2.53 1.28 +diffusions diffusion nom f p 2.55 1.28 0.02 0.00 +diffusons diffuser ver 10.33 10.20 0.24 0.00 imp:pre:1p;ind:pre:1p; +diffusèrent diffuser ver 10.33 10.20 0.00 0.07 ind:pas:3p; +diffusé diffuser ver m s 10.33 10.20 2.43 0.61 par:pas; +diffusée diffuser ver f s 10.33 10.20 0.71 0.81 par:pas; +diffusées diffuser ver f p 10.33 10.20 0.12 0.34 par:pas; +diffusés diffuser ver m p 10.33 10.20 0.44 0.27 par:pas; +difracter difracter ver 0.01 0.00 0.01 0.00 inf; +dig dig ono 0.29 0.27 0.29 0.27 +digest digest nom m s 0.23 0.41 0.23 0.34 +digeste digeste adj f s 0.05 0.07 0.05 0.07 +digestibles digestible adj p 0.00 0.07 0.00 0.07 +digestif digestif nom m s 0.68 0.54 0.67 0.34 +digestifs digestif adj m p 1.22 1.82 0.23 0.27 +digestion digestion nom f s 1.48 2.97 1.48 2.84 +digestions digestion nom f p 1.48 2.97 0.01 0.14 +digestive digestif adj f s 1.22 1.82 0.19 0.54 +digestives digestif adj f p 1.22 1.82 0.22 0.20 +digests digest nom m p 0.23 0.41 0.00 0.07 +digicode digicode nom m s 0.04 0.07 0.04 0.07 +digit digit nom m s 0.01 0.00 0.01 0.00 +digital digital adj m s 3.81 1.22 0.36 0.07 +digitale digital adj f s 3.81 1.22 0.93 0.20 +digitales digital adj f p 3.81 1.22 2.47 0.95 +digitaline digitaline nom f s 0.21 0.88 0.21 0.88 +digitaliseur digitaliseur nom m s 0.03 0.00 0.03 0.00 +digitalisée digitaliser ver f s 0.03 0.00 0.01 0.00 par:pas; +digitalisées digitaliser ver f p 0.03 0.00 0.02 0.00 par:pas; +digitaux digital adj m p 3.81 1.22 0.04 0.00 +digitée digité adj f s 0.00 0.07 0.00 0.07 +digne digne adj s 25.29 35.27 21.96 27.30 +dignement dignement adv 1.80 3.51 1.80 3.51 +dignes digne adj p 25.29 35.27 3.33 7.97 +dignitaire dignitaire nom s 0.70 4.26 0.21 1.01 +dignitaires dignitaire nom p 0.70 4.26 0.49 3.24 +dignité dignité nom f s 14.61 32.77 14.59 32.43 +dignités dignité nom f p 14.61 32.77 0.02 0.34 +dignus_est_intrare dignus_est_intrare adv 0.00 0.07 0.00 0.07 +digresse digresser ver 0.02 0.14 0.02 0.14 imp:pre:2s;ind:pre:1s; +digression digression nom f s 0.08 1.62 0.06 0.34 +digressions digression nom f p 0.08 1.62 0.02 1.28 +digère digérer ver 5.80 9.53 2.29 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +digèrent digérer ver 5.80 9.53 0.08 0.41 ind:pre:3p; +digue digue nom f s 1.85 10.20 1.02 7.97 +digues digue nom f p 1.85 10.20 0.83 2.23 +digéra digérer ver 5.80 9.53 0.00 0.07 ind:pas:3s; +digérai digérer ver 5.80 9.53 0.00 0.07 ind:pas:1s; +digéraient digérer ver 5.80 9.53 0.00 0.20 ind:imp:3p; +digérait digérer ver 5.80 9.53 0.03 0.95 ind:imp:3s; +digérant digérer ver 5.80 9.53 0.02 0.47 par:pre; +digérer digérer ver 5.80 9.53 1.73 3.51 inf; +digérera digérer ver 5.80 9.53 0.01 0.00 ind:fut:3s; +digérerait digérer ver 5.80 9.53 0.01 0.07 cnd:pre:3s; +digérons digérer ver 5.80 9.53 0.00 0.07 ind:pre:1p; +digérât digérer ver 5.80 9.53 0.00 0.07 sub:imp:3s; +digéré digérer ver m s 5.80 9.53 1.25 1.55 par:pas; +digérée digérer ver f s 5.80 9.53 0.23 0.61 par:pas; +digérées digérer ver f p 5.80 9.53 0.07 0.20 par:pas; +digérés digérer ver m p 5.80 9.53 0.09 0.27 par:pas; +dijonnais dijonnais adj m s 0.00 0.20 0.00 0.20 +diktat diktat nom m s 0.12 0.20 0.10 0.20 +diktats diktat nom m p 0.12 0.20 0.02 0.00 +dilapida dilapider ver 1.31 1.35 0.00 0.14 ind:pas:3s; +dilapidait dilapider ver 1.31 1.35 0.03 0.20 ind:imp:3s; +dilapidant dilapider ver 1.31 1.35 0.01 0.00 par:pre; +dilapidation dilapidation nom f s 0.00 0.07 0.00 0.07 +dilapide dilapider ver 1.31 1.35 0.10 0.14 imp:pre:2s;ind:pre:3s; +dilapider dilapider ver 1.31 1.35 0.07 0.34 inf; +dilapides dilapider ver 1.31 1.35 0.14 0.00 ind:pre:2s; +dilapidez dilapider ver 1.31 1.35 0.19 0.00 imp:pre:2p;ind:pre:2p; +dilapidé dilapider ver m s 1.31 1.35 0.73 0.41 par:pas; +dilapidée dilapider ver f s 1.31 1.35 0.02 0.14 par:pas; +dilapidées dilapider ver f p 1.31 1.35 0.01 0.00 par:pas; +dilata dilater ver 1.30 5.54 0.00 0.20 ind:pas:3s; +dilatable dilatable adj f s 0.00 0.14 0.00 0.14 +dilataient dilater ver 1.30 5.54 0.00 0.34 ind:imp:3p; +dilatait dilater ver 1.30 5.54 0.01 1.15 ind:imp:3s; +dilatant dilater ver 1.30 5.54 0.00 0.68 par:pre; +dilatateur dilatateur adj m s 0.02 0.14 0.01 0.00 +dilatateurs dilatateur adj m p 0.02 0.14 0.01 0.14 +dilatation dilatation nom f s 0.94 1.08 0.89 1.01 +dilatations dilatation nom f p 0.94 1.08 0.05 0.07 +dilate dilater ver 1.30 5.54 0.52 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dilatent dilater ver 1.30 5.54 0.15 0.41 ind:pre:3p; +dilater dilater ver 1.30 5.54 0.29 0.54 inf; +dilation dilation nom f s 0.03 0.00 0.03 0.00 +dilatoire dilatoire adj s 0.09 0.47 0.09 0.41 +dilatoires dilatoire adj m p 0.09 0.47 0.00 0.07 +dilatât dilater ver 1.30 5.54 0.00 0.07 sub:imp:3s; +dilatèrent dilater ver 1.30 5.54 0.00 0.14 ind:pas:3p; +dilaté dilaté adj m s 0.86 2.09 0.10 0.54 +dilatée dilaté adj f s 0.86 2.09 0.11 0.47 +dilatées dilaté adj f p 0.86 2.09 0.52 0.47 +dilatés dilaté adj m p 0.86 2.09 0.14 0.61 +dilection dilection nom f s 0.00 0.54 0.00 0.54 +dilemme dilemme nom m s 2.24 1.49 2.20 1.28 +dilemmes dilemme nom m p 2.24 1.49 0.04 0.20 +dilettante dilettante nom s 0.91 0.88 0.85 0.68 +dilettantes dilettante nom p 0.91 0.88 0.06 0.20 +dilettantisme dilettantisme nom m s 0.00 0.47 0.00 0.41 +dilettantismes dilettantisme nom m p 0.00 0.47 0.00 0.07 +diligemment diligemment adv 0.05 0.27 0.05 0.27 +diligence diligence nom f s 3.49 2.91 3.25 2.36 +diligences diligence nom f p 3.49 2.91 0.23 0.54 +diligent diligent adj m s 0.07 0.81 0.04 0.41 +diligente diligent adj f s 0.07 0.81 0.01 0.20 +diligenter diligenter ver 0.01 0.00 0.01 0.00 inf; +diligentes diligent adj f p 0.07 0.81 0.01 0.14 +diligents diligent adj m p 0.07 0.81 0.01 0.07 +dilua diluer ver 1.00 6.49 0.00 0.14 ind:pas:3s; +diluaient diluer ver 1.00 6.49 0.00 0.47 ind:imp:3p; +diluait diluer ver 1.00 6.49 0.00 0.81 ind:imp:3s; +diluant diluant nom m s 0.21 0.00 0.21 0.00 +dilue diluer ver 1.00 6.49 0.28 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diluent diluer ver 1.00 6.49 0.00 0.34 ind:pre:3p; +diluer diluer ver 1.00 6.49 0.31 0.61 inf; +diluerait diluer ver 1.00 6.49 0.00 0.07 cnd:pre:3s; +diluons diluer ver 1.00 6.49 0.00 0.07 imp:pre:1p; +dilution dilution nom f s 0.05 0.20 0.05 0.20 +dilué diluer ver m s 1.00 6.49 0.26 1.08 par:pas; +diluée diluer ver f s 1.00 6.49 0.09 1.08 par:pas; +diluées diluer ver f p 1.00 6.49 0.01 0.14 par:pas; +dilués diluer ver m p 1.00 6.49 0.01 0.34 par:pas; +diluvien diluvien adj m s 0.30 0.74 0.00 0.14 +diluvienne diluvien adj f s 0.30 0.74 0.14 0.27 +diluviennes diluvien adj f p 0.30 0.74 0.16 0.34 +dimanche dimanche nom m s 63.98 101.15 59.67 87.84 +dimanches dimanche nom m p 63.98 101.15 4.30 13.31 +dimension dimension nom f s 9.62 23.11 6.10 8.92 +dimensionnel dimensionnel adj m s 0.61 0.07 0.33 0.00 +dimensionnelle dimensionnel adj f s 0.61 0.07 0.22 0.07 +dimensionnelles dimensionnel adj f p 0.61 0.07 0.05 0.00 +dimensionnels dimensionnel adj m p 0.61 0.07 0.01 0.00 +dimensionnement dimensionnement nom m s 0.01 0.00 0.01 0.00 +dimensions dimension nom f p 9.62 23.11 3.52 14.19 +diminua diminuer ver 7.94 16.28 0.14 0.74 ind:pas:3s; +diminuaient diminuer ver 7.94 16.28 0.22 0.95 ind:imp:3p; +diminuais diminuer ver 7.94 16.28 0.02 0.20 ind:imp:1s; +diminuait diminuer ver 7.94 16.28 0.10 2.64 ind:imp:3s; +diminuant diminuer ver 7.94 16.28 0.07 0.54 par:pre; +diminue diminuer ver 7.94 16.28 1.93 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diminuendo diminuendo adv 0.02 0.00 0.02 0.00 +diminuent diminuer ver 7.94 16.28 0.52 0.81 ind:pre:3p; +diminuer diminuer ver 7.94 16.28 1.93 3.72 inf; +diminuera diminuer ver 7.94 16.28 0.13 0.00 ind:fut:3s; +diminuerai diminuer ver 7.94 16.28 0.05 0.00 ind:fut:1s; +diminuerais diminuer ver 7.94 16.28 0.03 0.00 cnd:pre:1s; +diminuerait diminuer ver 7.94 16.28 0.21 0.14 cnd:pre:3s; +diminueront diminuer ver 7.94 16.28 0.01 0.00 ind:fut:3p; +diminuez diminuer ver 7.94 16.28 0.24 0.00 imp:pre:2p;ind:pre:2p; +diminuiez diminuer ver 7.94 16.28 0.01 0.00 ind:imp:2p; +diminuât diminuer ver 7.94 16.28 0.00 0.14 sub:imp:3s; +diminuèrent diminuer ver 7.94 16.28 0.00 0.07 ind:pas:3p; +diminutif diminutif nom m s 0.96 1.89 0.96 1.49 +diminutifs diminutif nom m p 0.96 1.89 0.00 0.41 +diminution diminution nom f s 1.03 1.15 1.01 1.01 +diminutions diminution nom f p 1.03 1.15 0.03 0.14 +diminué diminuer ver m s 7.94 16.28 1.68 1.82 par:pas; +diminuée diminuer ver f s 7.94 16.28 0.46 0.88 par:pas; +diminuées diminuer ver f p 7.94 16.28 0.09 0.00 par:pas; +diminués diminuer ver m p 7.94 16.28 0.09 0.61 par:pas; +dinamiteros dinamitero nom m p 0.00 0.20 0.00 0.20 +dinanderie dinanderie nom f s 0.00 0.07 0.00 0.07 +dinar dinar nom m s 1.74 0.14 0.34 0.07 +dinars dinar nom m p 1.74 0.14 1.41 0.07 +dinde dinde nom f s 9.32 2.97 8.79 1.69 +dindes dinde nom f p 9.32 2.97 0.54 1.28 +dindon dindon nom m s 1.73 1.35 1.23 0.74 +dindonne dindonner ver 0.00 0.14 0.00 0.07 ind:pre:3s; +dindonneau dindonneau nom m s 0.17 0.07 0.17 0.00 +dindonneaux dindonneau nom m p 0.17 0.07 0.00 0.07 +dindonné dindonner ver m s 0.00 0.14 0.00 0.07 par:pas; +dindons dindon nom m p 1.73 1.35 0.50 0.61 +dine dine nom m s 1.24 0.07 1.24 0.07 +ding ding ono 3.54 1.55 3.54 1.55 +dingo dingo adj s 0.98 1.08 0.95 1.01 +dingos dingo nom m p 0.95 0.88 0.28 0.20 +dingue dingue adj s 58.48 11.69 53.01 9.80 +dinguent dinguer ver 0.33 1.08 0.00 0.07 ind:pre:3p; +dinguer dinguer ver 0.33 1.08 0.00 0.95 inf; +dinguerie dinguerie nom f s 0.05 0.88 0.05 0.81 +dingueries dinguerie nom f p 0.05 0.88 0.00 0.07 +dingues dingue adj p 58.48 11.69 5.47 1.89 +dingué dinguer ver m s 0.33 1.08 0.00 0.07 par:pas; +dinosaure dinosaure nom m s 4.46 0.68 2.32 0.07 +dinosaures dinosaure nom m p 4.46 0.68 2.14 0.61 +dioclétienne dioclétien adj f s 0.00 0.14 0.00 0.07 +dioclétiennes dioclétien adj f p 0.00 0.14 0.00 0.07 +diocèse diocèse nom m s 0.44 1.15 0.44 1.01 +diocèses diocèse nom m p 0.44 1.15 0.00 0.14 +diocésain diocésain adj m s 0.10 0.14 0.10 0.00 +diocésaines diocésain adj f p 0.10 0.14 0.00 0.14 +diode diode nom f s 0.07 0.00 0.07 0.00 +diodon diodon nom m s 0.00 0.20 0.00 0.20 +dionée dionée nom f s 0.03 0.00 0.03 0.00 +dionysiaque dionysiaque adj s 0.16 0.47 0.16 0.34 +dionysiaques dionysiaque adj f p 0.16 0.47 0.00 0.14 +dionysien dionysien adj m s 0.01 0.07 0.01 0.07 +dioptre dioptre nom m s 0.00 0.07 0.00 0.07 +dioptries dioptrie nom f p 0.00 0.14 0.00 0.14 +diorama diorama nom m s 0.15 0.34 0.11 0.07 +dioramas diorama nom m p 0.15 0.34 0.04 0.27 +diorite diorite nom f s 0.04 0.00 0.04 0.00 +dioxine dioxine nom f s 0.14 0.00 0.12 0.00 +dioxines dioxine nom f p 0.14 0.00 0.02 0.00 +dioxyde dioxyde nom m s 0.56 0.00 0.56 0.00 +dipôle dipôle nom m s 0.01 0.00 0.01 0.00 +diphtongue diphtongue nom f s 0.02 0.34 0.00 0.14 +diphtongues diphtongue nom f p 0.02 0.34 0.02 0.20 +diphtérie diphtérie nom f s 0.26 0.68 0.26 0.68 +diphényle diphényle nom m s 0.00 0.07 0.00 0.07 +diplôme diplôme nom m s 17.27 7.36 13.28 4.32 +diplômer diplômer ver 4.29 0.27 0.16 0.00 inf; +diplômes diplôme nom m p 17.27 7.36 3.99 3.04 +diplômé diplômer ver m s 4.29 0.27 2.44 0.14 par:pas; +diplômée diplômer ver f s 4.29 0.27 1.17 0.07 par:pas; +diplômées diplômé adj f p 1.50 1.01 0.07 0.07 +diplômés diplômé nom m p 1.81 0.27 1.03 0.00 +diplodocus diplodocus nom m 0.01 0.68 0.01 0.68 +diplomate diplomate nom s 3.75 8.65 1.98 4.66 +diplomates diplomate nom p 3.75 8.65 1.77 3.99 +diplomatie diplomatie nom f s 1.80 5.68 1.80 5.68 +diplomatique diplomatique adj s 4.28 10.00 2.77 6.96 +diplomatiquement diplomatiquement adv 0.04 0.20 0.04 0.20 +diplomatiques diplomatique adj p 4.28 10.00 1.51 3.04 +diplopie diplopie nom f s 0.03 0.00 0.03 0.00 +dipneuste dipneuste nom m s 0.07 0.00 0.05 0.00 +dipneustes dipneuste nom m p 0.07 0.00 0.02 0.00 +dipsomane dipsomane nom s 0.26 0.00 0.25 0.00 +dipsomanes dipsomane nom p 0.26 0.00 0.01 0.00 +dipsomanie dipsomanie nom f s 0.01 0.00 0.01 0.00 +diptères diptère adj p 0.01 0.07 0.01 0.07 +diptyque diptyque nom m s 0.01 0.14 0.01 0.14 +dira dire ver_sup 5946.17 4832.50 36.47 21.89 ind:fut:3s; +dirai dire ver_sup 5946.17 4832.50 82.39 27.43 ind:fut:1s; +diraient dire ver_sup 5946.17 4832.50 3.02 3.24 cnd:pre:3p; +dirais dire ver_sup 5946.17 4832.50 57.65 16.76 cnd:pre:1s;cnd:pre:2s; +dirait dire ver_sup 5946.17 4832.50 190.63 85.88 cnd:pre:3s; +diras dire ver_sup 5946.17 4832.50 22.52 10.54 ind:fut:2s; +dire dire ver_sup 5946.17 4832.50 1564.52 827.84 inf;;inf;;inf;;inf;;inf;; +direct direct nom m s 16.34 5.00 15.81 4.39 +directe direct adj f s 21.89 26.69 6.27 11.82 +directement directement adv 26.73 39.12 26.73 39.12 +directes direct adj f p 21.89 26.69 0.49 2.03 +directeur_adjoint directeur_adjoint nom m s 0.14 0.00 0.14 0.00 +directeur directeur nom m s 64.44 38.45 57.65 30.00 +directeurs directeur nom m p 64.44 38.45 2.23 3.11 +directif directif adj m s 0.32 0.14 0.22 0.00 +direction direction nom f s 45.06 108.04 43.25 103.04 +directionnel directionnel adj m s 0.57 0.14 0.09 0.07 +directionnelle directionnel adj f s 0.57 0.14 0.04 0.00 +directionnelles directionnel adj f p 0.57 0.14 0.02 0.07 +directionnels directionnel adj m p 0.57 0.14 0.42 0.00 +directions direction nom f p 45.06 108.04 1.81 5.00 +directive directive nom f s 3.43 4.93 0.40 0.47 +directives directive nom f p 3.43 4.93 3.04 4.46 +directo directo adv 0.00 0.41 0.00 0.41 +directoire directoire nom m s 0.17 2.09 0.17 2.09 +directorat directorat nom m s 0.01 0.00 0.01 0.00 +directorial directorial adj m s 0.01 1.28 0.01 0.81 +directoriale directorial adj f s 0.01 1.28 0.00 0.27 +directoriaux directorial adj m p 0.01 1.28 0.00 0.20 +directos directos adv 0.03 0.41 0.03 0.41 +directrice directeur nom f s 64.44 38.45 4.55 5.07 +directrices directrice nom f p 0.28 0.00 0.28 0.00 +directs direct adj m p 21.89 26.69 0.84 2.16 +dirent dire ver_sup 5946.17 4832.50 1.65 7.03 ind:pas:3p; +dires dire nom_sup m p 53.88 31.42 1.94 2.50 +direz dire ver_sup 5946.17 4832.50 13.72 10.00 ind:fut:2p; +dirham dirham nom m s 0.43 0.14 0.14 0.00 +dirhams dirham nom m p 0.43 0.14 0.29 0.14 +diriez dire ver_sup 5946.17 4832.50 10.69 2.36 cnd:pre:2p; +dirige diriger ver 65.10 95.68 23.74 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dirigea diriger ver 65.10 95.68 0.06 20.20 ind:pas:3s; +dirigeable dirigeable nom m s 0.62 0.34 0.41 0.20 +dirigeables dirigeable nom m p 0.62 0.34 0.22 0.14 +dirigeai diriger ver 65.10 95.68 0.12 1.62 ind:pas:1s; +dirigeaient diriger ver 65.10 95.68 0.62 2.77 ind:imp:3p; +dirigeais diriger ver 65.10 95.68 0.52 0.68 ind:imp:1s;ind:imp:2s; +dirigeait diriger ver 65.10 95.68 3.31 11.69 ind:imp:3s; +dirigeant dirigeant nom m s 6.18 10.00 1.81 2.09 +dirigeante dirigeant adj f s 0.90 3.18 0.20 0.61 +dirigeantes dirigeant adj f p 0.90 3.18 0.06 0.41 +dirigeants dirigeant nom m p 6.18 10.00 4.30 7.77 +dirigent diriger ver 65.10 95.68 4.11 2.30 ind:pre:3p; +dirigeâmes diriger ver 65.10 95.68 0.03 0.47 ind:pas:1p; +dirigeons diriger ver 65.10 95.68 1.14 0.95 imp:pre:1p;ind:pre:1p; +dirigeât diriger ver 65.10 95.68 0.00 0.14 sub:imp:3s; +diriger diriger ver 65.10 95.68 13.94 17.64 ind:pre:2p;inf; +dirigera diriger ver 65.10 95.68 1.17 0.41 ind:fut:3s; +dirigerai diriger ver 65.10 95.68 0.34 0.20 ind:fut:1s; +dirigeraient diriger ver 65.10 95.68 0.02 0.00 cnd:pre:3p; +dirigerais diriger ver 65.10 95.68 0.10 0.00 cnd:pre:1s;cnd:pre:2s; +dirigerait diriger ver 65.10 95.68 0.11 0.14 cnd:pre:3s; +dirigeras diriger ver 65.10 95.68 0.23 0.07 ind:fut:2s; +dirigerez diriger ver 65.10 95.68 0.36 0.07 ind:fut:2p; +dirigerons diriger ver 65.10 95.68 0.06 0.07 ind:fut:1p; +dirigeront diriger ver 65.10 95.68 0.19 0.20 ind:fut:3p; +diriges diriger ver 65.10 95.68 1.31 0.00 ind:pre:2s; +dirigez diriger ver 65.10 95.68 3.88 0.20 imp:pre:2p;ind:pre:2p; +dirigiez diriger ver 65.10 95.68 0.30 0.07 ind:imp:2p; +dirigions diriger ver 65.10 95.68 0.17 0.34 ind:imp:1p; +dirigèrent diriger ver 65.10 95.68 0.01 2.23 ind:pas:3p; +dirigé diriger ver m s 65.10 95.68 4.43 7.30 par:pas; +dirigée diriger ver f s 65.10 95.68 2.29 4.19 par:pas; +dirigées diriger ver f p 65.10 95.68 0.20 1.15 par:pas; +dirigés diriger ver m p 65.10 95.68 0.91 2.36 par:pas; +dirimant dirimant adj m s 0.00 0.14 0.00 0.07 +dirimants dirimant adj m p 0.00 0.14 0.00 0.07 +dirions dire ver_sup 5946.17 4832.50 0.08 0.68 cnd:pre:1p; +dirlo dirlo nom m s 0.40 1.76 0.40 1.69 +dirlos dirlo nom m p 0.40 1.76 0.00 0.07 +dirons dire ver_sup 5946.17 4832.50 2.78 2.03 ind:fut:1p; +diront dire ver_sup 5946.17 4832.50 9.09 4.46 ind:fut:3p; +dis dire ver_sup 5946.17 4832.50 1025.78 477.36 imp:pre:2s;ind:pre:1s;ind:pre:1s;ind:pre:2s;ind:pas:1s; +disaient dire ver_sup 5946.17 4832.50 11.68 35.68 ind:imp:3p; +disais dire ver_sup 5946.17 4832.50 98.37 70.68 ind:imp:1s;ind:imp:2s; +disait dire ver_sup 5946.17 4832.50 94.00 352.30 ind:imp:3s; +disant dire ver_sup 5946.17 4832.50 26.41 81.62 par:pre; +disants disant adj m p 1.30 7.09 0.03 0.07 +disc_jockey disc_jockey nom m s 0.18 0.07 0.16 0.00 +disc_jockey disc_jockey nom m p 0.18 0.07 0.03 0.07 +discal discal adj m s 0.13 0.07 0.02 0.07 +discale discal adj f s 0.13 0.07 0.11 0.00 +discerna discerner ver 1.05 15.20 0.00 0.14 ind:pas:3s; +discernable discernable adj f s 0.01 0.47 0.01 0.34 +discernables discernable adj p 0.01 0.47 0.00 0.14 +discernai discerner ver 1.05 15.20 0.00 0.14 ind:pas:1s; +discernaient discerner ver 1.05 15.20 0.00 0.47 ind:imp:3p; +discernais discerner ver 1.05 15.20 0.00 0.95 ind:imp:1s; +discernait discerner ver 1.05 15.20 0.01 2.43 ind:imp:3s; +discernant discerner ver 1.05 15.20 0.00 0.34 par:pre; +discerne discerner ver 1.05 15.20 0.33 2.16 ind:pre:1s;ind:pre:3s; +discernement discernement nom m s 0.90 2.50 0.90 2.50 +discernent discerner ver 1.05 15.20 0.01 0.34 ind:pre:3p; +discerner discerner ver 1.05 15.20 0.69 6.69 inf; +discernerait discerner ver 1.05 15.20 0.00 0.07 cnd:pre:3s; +discernes discerner ver 1.05 15.20 0.00 0.07 ind:pre:2s; +discernions discerner ver 1.05 15.20 0.00 0.27 ind:imp:1p; +discernâmes discerner ver 1.05 15.20 0.00 0.27 ind:pas:1p; +discernât discerner ver 1.05 15.20 0.00 0.07 sub:imp:3s; +discerné discerner ver m s 1.05 15.20 0.01 0.74 par:pas; +discernées discerner ver f p 1.05 15.20 0.00 0.07 par:pas; +disciple_roi disciple_roi nom s 0.00 0.07 0.00 0.07 +disciple disciple nom s 5.62 14.46 1.98 7.64 +disciples disciple nom p 5.62 14.46 3.65 6.82 +disciplina discipliner ver 0.93 1.42 0.00 0.07 ind:pas:3s; +disciplinaient discipliner ver 0.93 1.42 0.00 0.07 ind:imp:3p; +disciplinaire disciplinaire adj s 1.28 1.15 0.93 0.81 +disciplinaires disciplinaire adj p 1.28 1.15 0.35 0.34 +disciplinais discipliner ver 0.93 1.42 0.01 0.00 ind:imp:1s; +disciplinait discipliner ver 0.93 1.42 0.00 0.14 ind:imp:3s; +discipline discipline nom f s 12.02 22.03 11.59 20.27 +discipliner discipliner ver 0.93 1.42 0.29 0.34 inf; +disciplinera discipliner ver 0.93 1.42 0.00 0.07 ind:fut:3s; +disciplinerait discipliner ver 0.93 1.42 0.00 0.07 cnd:pre:3s; +disciplines discipline nom f p 12.02 22.03 0.44 1.76 +discipliné discipliné adj m s 1.07 2.16 0.30 0.74 +disciplinée discipliné adj f s 1.07 2.16 0.24 0.41 +disciplinées discipliné adj f p 1.07 2.16 0.01 0.27 +disciplinés discipliné adj m p 1.07 2.16 0.51 0.74 +disco disco nom s 1.81 0.34 1.79 0.34 +discobole discobole nom m s 0.24 0.20 0.23 0.20 +discoboles discobole nom m p 0.24 0.20 0.01 0.00 +discographie discographie nom f s 0.01 0.00 0.01 0.00 +discographiques discographique adj p 0.00 0.07 0.00 0.07 +discontinu discontinu adj m s 0.04 1.49 0.00 0.61 +discontinuaient discontinuer ver 0.03 1.82 0.00 0.07 ind:imp:3p; +discontinue discontinu adj f s 0.04 1.49 0.04 0.41 +discontinuer discontinuer ver 0.03 1.82 0.03 1.76 inf; +discontinues discontinu adj f p 0.04 1.49 0.00 0.27 +discontinuité discontinuité nom f s 0.05 0.68 0.05 0.68 +discontinus discontinu adj m p 0.04 1.49 0.00 0.20 +disconviens disconvenir ver 0.00 0.14 0.00 0.07 ind:pre:1s; +disconvint disconvenir ver 0.00 0.14 0.00 0.07 ind:pas:3s; +discordance discordance nom f s 0.06 0.68 0.04 0.41 +discordances discordance nom f p 0.06 0.68 0.02 0.27 +discordant discordant adj m s 0.14 2.91 0.08 0.74 +discordante discordant adj f s 0.14 2.91 0.02 0.74 +discordantes discordant adj f p 0.14 2.91 0.01 0.34 +discordants discordant adj m p 0.14 2.91 0.04 1.08 +discorde discorde nom f s 1.41 2.09 1.35 2.09 +discordes discorde nom f p 1.41 2.09 0.06 0.00 +discos disco nom p 1.81 0.34 0.02 0.00 +discothèque discothèque nom f s 1.32 0.81 1.12 0.74 +discothèques discothèque nom f p 1.32 0.81 0.20 0.07 +discount discount nom m s 0.39 0.27 0.39 0.27 +discouraient discourir ver 0.66 4.12 0.00 0.20 ind:imp:3p; +discourait discourir ver 0.66 4.12 0.00 1.01 ind:imp:3s; +discourant discourir ver 0.66 4.12 0.02 0.34 par:pre; +discoure discourir ver 0.66 4.12 0.01 0.07 sub:pre:1s;sub:pre:3s; +discourent discourir ver 0.66 4.12 0.01 0.07 ind:pre:3p; +discoureur discoureur nom m s 0.01 0.14 0.01 0.07 +discoureurs discoureur nom m p 0.01 0.14 0.00 0.07 +discourir discourir ver 0.66 4.12 0.39 2.09 inf; +discours discours nom m 42.75 50.54 42.75 50.54 +discourt discourir ver 0.66 4.12 0.11 0.07 ind:pre:3s; +discourtois discourtois adj m 0.28 0.41 0.25 0.14 +discourtoise discourtois adj f s 0.28 0.41 0.03 0.20 +discourtoises discourtois adj f p 0.28 0.41 0.00 0.07 +discouru discourir ver m s 0.66 4.12 0.10 0.20 par:pas; +discourut discourir ver 0.66 4.12 0.00 0.07 ind:pas:3s; +discret discret adj m s 15.61 33.04 9.52 13.58 +discrets discret adj m p 15.61 33.04 2.96 4.93 +discriminant discriminant adj m s 0.03 0.07 0.01 0.07 +discriminants discriminant adj m p 0.03 0.07 0.01 0.00 +discrimination discrimination nom f s 1.60 0.88 1.57 0.88 +discriminations discrimination nom f p 1.60 0.88 0.03 0.00 +discriminatoire discriminatoire adj s 0.15 0.07 0.15 0.07 +discriminer discriminer ver 0.18 0.14 0.17 0.14 inf; +discriminé discriminer ver m s 0.18 0.14 0.01 0.00 par:pas; +discrète discret adj f s 15.61 33.04 2.79 11.89 +discrètement discrètement adv 5.82 19.73 5.82 19.73 +discrètes discret adj f p 15.61 33.04 0.34 2.64 +discrédit discrédit nom m s 0.11 0.61 0.11 0.61 +discréditait discréditer ver 1.61 1.35 0.01 0.07 ind:imp:3s; +discréditant discréditer ver 1.61 1.35 0.02 0.00 par:pre; +discrédite discréditer ver 1.61 1.35 0.05 0.14 ind:pre:3s; +discréditer discréditer ver 1.61 1.35 1.20 0.61 ind:pre:2p;inf; +discréditerait discréditer ver 1.61 1.35 0.04 0.00 cnd:pre:3s; +discréditez discréditer ver 1.61 1.35 0.05 0.00 imp:pre:2p;ind:pre:2p; +discrédité discréditer ver m s 1.61 1.35 0.14 0.47 par:pas; +discréditée discréditer ver f s 1.61 1.35 0.04 0.00 par:pas; +discréditées discréditer ver f p 1.61 1.35 0.03 0.07 par:pas; +discrédités discréditer ver m p 1.61 1.35 0.04 0.00 par:pas; +discrétion discrétion nom f s 4.59 21.22 4.59 21.22 +discrétionnaire discrétionnaire adj s 0.13 0.20 0.09 0.14 +discrétionnaires discrétionnaire adj f p 0.13 0.20 0.04 0.07 +disculpait disculper ver 1.27 1.55 0.00 0.20 ind:imp:3s; +disculpant disculper ver 1.27 1.55 0.07 0.00 par:pre; +disculpation disculpation nom f s 0.04 0.00 0.04 0.00 +disculpe disculper ver 1.27 1.55 0.19 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +disculpent disculper ver 1.27 1.55 0.01 0.00 ind:pre:3p; +disculper disculper ver 1.27 1.55 0.61 1.22 inf; +disculperait disculper ver 1.27 1.55 0.01 0.00 cnd:pre:3s; +disculpez disculper ver 1.27 1.55 0.01 0.07 imp:pre:2p; +disculpé disculper ver m s 1.27 1.55 0.36 0.00 par:pas; +disculpés disculper ver m p 1.27 1.55 0.01 0.00 par:pas; +discursives discursif adj f p 0.00 0.07 0.00 0.07 +discussion discussion nom f s 23.58 33.51 19.54 20.88 +discussions discussion nom f p 23.58 33.51 4.05 12.64 +discuta discuter ver 96.42 58.65 0.01 0.74 ind:pas:3s; +discutable discutable adj s 0.79 1.01 0.59 0.68 +discutables discutable adj p 0.79 1.01 0.19 0.34 +discutai discuter ver 96.42 58.65 0.00 0.27 ind:pas:1s; +discutaient discuter ver 96.42 58.65 0.20 4.53 ind:imp:3p; +discutaillaient discutailler ver 0.48 0.81 0.00 0.14 ind:imp:3p; +discutaillait discutailler ver 0.48 0.81 0.01 0.07 ind:imp:3s; +discutaille discutailler ver 0.48 0.81 0.01 0.14 ind:pre:3s; +discutaillent discutailler ver 0.48 0.81 0.00 0.07 ind:pre:3p; +discutailler discutailler ver 0.48 0.81 0.46 0.41 inf; +discutailleries discutaillerie nom f p 0.00 0.14 0.00 0.14 +discutailleur discutailleur nom m s 0.00 0.07 0.00 0.07 +discutailleuse discutailleur adj f s 0.00 0.07 0.00 0.07 +discutais discuter ver 96.42 58.65 0.57 0.41 ind:imp:1s;ind:imp:2s; +discutait discuter ver 96.42 58.65 2.09 5.14 ind:imp:3s; +discutant discuter ver 96.42 58.65 0.60 2.97 par:pre; +discute discuter ver 96.42 58.65 14.75 5.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +discutent discuter ver 96.42 58.65 2.02 3.45 ind:pre:3p; +discuter discuter ver 96.42 58.65 50.43 25.47 inf; +discutera discuter ver 96.42 58.65 2.92 0.47 ind:fut:3s; +discuterai discuter ver 96.42 58.65 1.08 0.20 ind:fut:1s; +discuteraient discuter ver 96.42 58.65 0.05 0.07 cnd:pre:3p; +discuterais discuter ver 96.42 58.65 0.10 0.07 cnd:pre:1s; +discuterait discuter ver 96.42 58.65 0.52 0.41 cnd:pre:3s; +discuterez discuter ver 96.42 58.65 0.10 0.07 ind:fut:2p; +discuteriez discuter ver 96.42 58.65 0.02 0.00 cnd:pre:2p; +discuterions discuter ver 96.42 58.65 0.01 0.07 cnd:pre:1p; +discuterons discuter ver 96.42 58.65 1.66 0.20 ind:fut:1p; +discuteront discuter ver 96.42 58.65 0.04 0.07 ind:fut:3p; +discutes discuter ver 96.42 58.65 0.82 0.14 ind:pre:2s; +discutez discuter ver 96.42 58.65 2.73 0.14 imp:pre:2p;ind:pre:2p; +discutiez discuter ver 96.42 58.65 0.23 0.00 ind:imp:2p; +discutions discuter ver 96.42 58.65 0.71 1.01 ind:imp:1p;sub:pre:1p; +discutâmes discuter ver 96.42 58.65 0.00 0.47 ind:pas:1p; +discutons discuter ver 96.42 58.65 3.44 0.61 imp:pre:1p;ind:pre:1p; +discutât discuter ver 96.42 58.65 0.10 0.07 sub:imp:3s; +discutèrent discuter ver 96.42 58.65 0.02 0.88 ind:pas:3p; +discuté discuter ver m s 96.42 58.65 10.85 4.53 par:pas; +discutée discuter ver f s 96.42 58.65 0.20 0.34 par:pas; +discutées discuter ver f p 96.42 58.65 0.02 0.27 par:pas; +discutés discuter ver m p 96.42 58.65 0.12 0.07 par:pas; +dise dire ver_sup 5946.17 4832.50 53.46 25.41 sub:pre:1s;sub:pre:3s; +disent dire ver_sup 5946.17 4832.50 88.46 44.12 ind:pre:3p;sub:pre:3p; +disert disert adj m s 0.01 0.88 0.00 0.88 +diserte disert adj f s 0.01 0.88 0.01 0.00 +dises dire ver_sup 5946.17 4832.50 11.41 2.70 sub:pre:2s; +disette disette nom f s 0.06 1.76 0.06 1.62 +disettes disette nom f p 0.06 1.76 0.00 0.14 +diseur diseur nom m s 0.47 0.68 0.26 0.14 +diseurs diseur nom m p 0.47 0.68 0.06 0.20 +diseuse diseur nom f s 0.47 0.68 0.14 0.34 +diseuses diseuse nom f p 0.06 0.00 0.06 0.00 +disfonctionnement disfonctionnement nom m s 0.44 0.00 0.44 0.00 +disgracia disgracier ver 0.09 0.68 0.00 0.07 ind:pas:3s; +disgraciaient disgracier ver 0.09 0.68 0.00 0.07 ind:imp:3p; +disgraciait disgracier ver 0.09 0.68 0.00 0.07 ind:imp:3s; +disgracier disgracier ver 0.09 0.68 0.01 0.00 inf; +disgraciera disgracier ver 0.09 0.68 0.00 0.07 ind:fut:3s; +disgracieuse disgracieux adj f s 0.14 2.30 0.01 0.95 +disgracieusement disgracieusement adv 0.00 0.07 0.00 0.07 +disgracieuses disgracieux adj f p 0.14 2.30 0.04 0.14 +disgracieux disgracieux adj m 0.14 2.30 0.09 1.22 +disgracié disgracié adj m s 0.17 0.61 0.16 0.34 +disgraciée disgracier ver f s 0.09 0.68 0.01 0.14 par:pas; +disgraciées disgracié adj f p 0.17 0.61 0.00 0.07 +disgraciés disgracier ver m p 0.09 0.68 0.01 0.07 par:pas; +disgrâce disgrâce nom f s 1.76 4.46 1.76 3.99 +disgrâces disgrâce nom f p 1.76 4.46 0.00 0.47 +disharmonie disharmonie nom f s 0.01 0.07 0.01 0.07 +disiez dire ver_sup 5946.17 4832.50 20.36 4.66 ind:imp:2p;sub:pre:2p; +disions dire ver_sup 5946.17 4832.50 1.54 5.47 ind:imp:1p; +disjoignait disjoindre ver 0.10 1.49 0.00 0.07 ind:imp:3s; +disjoignant disjoindre ver 0.10 1.49 0.00 0.20 par:pre; +disjoignent disjoindre ver 0.10 1.49 0.00 0.07 ind:pre:3p; +disjoindre disjoindre ver 0.10 1.49 0.00 0.34 inf; +disjoint disjoint adj m s 0.13 2.03 0.10 0.27 +disjointe disjoint adj f s 0.13 2.03 0.01 0.00 +disjointes disjoint adj f p 0.13 2.03 0.00 1.28 +disjoints disjoindre ver m p 0.10 1.49 0.10 0.07 par:pas; +disjoncta disjoncter ver 3.31 0.68 0.00 0.14 ind:pas:3s; +disjonctais disjoncter ver 3.31 0.68 0.01 0.07 ind:imp:1s; +disjonctait disjoncter ver 3.31 0.68 0.02 0.00 ind:imp:3s; +disjoncte disjoncter ver 3.31 0.68 0.47 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disjonctent disjoncter ver 3.31 0.68 0.02 0.00 ind:pre:3p; +disjoncter disjoncter ver 3.31 0.68 0.40 0.20 inf; +disjoncterais disjoncter ver 3.31 0.68 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +disjoncterait disjoncter ver 3.31 0.68 0.04 0.07 cnd:pre:3s; +disjonctes disjoncter ver 3.31 0.68 0.57 0.00 ind:pre:2s; +disjoncteur disjoncteur nom m s 1.45 0.20 1.34 0.07 +disjoncteurs disjoncteur nom m p 1.45 0.20 0.11 0.14 +disjonctez disjoncter ver 3.31 0.68 0.03 0.00 imp:pre:2p;ind:pre:2p; +disjonction disjonction nom f s 0.00 0.14 0.00 0.07 +disjonctions disjonction nom f p 0.00 0.14 0.00 0.07 +disjoncté disjoncter ver m s 3.31 0.68 1.65 0.14 par:pas; +disjonctée disjoncter ver f s 3.31 0.68 0.05 0.07 par:pas; +disjonctés disjoncter ver m p 3.31 0.68 0.02 0.00 par:pas; +diskette diskette nom f s 0.00 0.81 0.00 0.81 +dislocation dislocation nom f s 0.16 1.35 0.16 1.28 +dislocations dislocation nom f p 0.16 1.35 0.00 0.07 +disloqua disloquer ver 0.54 4.80 0.00 0.14 ind:pas:3s; +disloquai disloquer ver 0.54 4.80 0.00 0.07 ind:pas:1s; +disloquaient disloquer ver 0.54 4.80 0.00 0.34 ind:imp:3p; +disloquait disloquer ver 0.54 4.80 0.00 0.27 ind:imp:3s; +disloquant disloquer ver 0.54 4.80 0.00 0.20 par:pre; +disloque disloquer ver 0.54 4.80 0.12 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disloquent disloquer ver 0.54 4.80 0.01 0.14 ind:pre:3p; +disloquer disloquer ver 0.54 4.80 0.18 0.88 inf; +disloquerai disloquer ver 0.54 4.80 0.01 0.00 ind:fut:1s; +disloqueront disloquer ver 0.54 4.80 0.00 0.07 ind:fut:3p; +disloquât disloquer ver 0.54 4.80 0.00 0.07 sub:imp:3s; +disloquèrent disloquer ver 0.54 4.80 0.00 0.20 ind:pas:3p; +disloqué disloqué adj m s 0.12 3.24 0.07 1.35 +disloquée disloquer ver f s 0.54 4.80 0.05 0.27 par:pas; +disloquées disloquer ver f p 0.54 4.80 0.01 0.14 par:pas; +disloqués disloquer ver m p 0.54 4.80 0.11 0.34 par:pas; +disons dire ver_sup 5946.17 4832.50 45.13 17.84 imp:pre:1p;ind:pre:1p; +disparûmes disparaître ver 166.13 183.31 0.01 0.07 ind:pas:1p; +disparût disparaître ver 166.13 183.31 0.01 1.01 sub:imp:3s; +disparaît disparaître ver 166.13 183.31 10.02 16.35 ind:pre:3s; +disparaîtra disparaître ver 166.13 183.31 3.04 1.35 ind:fut:3s; +disparaîtrai disparaître ver 166.13 183.31 0.41 0.07 ind:fut:1s; +disparaîtraient disparaître ver 166.13 183.31 0.34 0.54 cnd:pre:3p; +disparaîtrais disparaître ver 166.13 183.31 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +disparaîtrait disparaître ver 166.13 183.31 0.73 1.28 cnd:pre:3s; +disparaîtras disparaître ver 166.13 183.31 0.22 0.00 ind:fut:2s; +disparaître disparaître ver 166.13 183.31 27.16 36.76 inf; +disparaîtrez disparaître ver 166.13 183.31 0.12 0.14 ind:fut:2p; +disparaîtrions disparaître ver 166.13 183.31 0.01 0.00 cnd:pre:1p; +disparaîtrons disparaître ver 166.13 183.31 0.18 0.07 ind:fut:1p; +disparaîtront disparaître ver 166.13 183.31 0.59 1.01 ind:fut:3p; +disparais disparaître ver 166.13 183.31 8.97 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +disparaissaient disparaître ver 166.13 183.31 0.33 6.01 ind:imp:3p; +disparaissais disparaître ver 166.13 183.31 0.29 0.54 ind:imp:1s;ind:imp:2s; +disparaissait disparaître ver 166.13 183.31 1.11 11.15 ind:imp:3s; +disparaissant disparaître ver 166.13 183.31 0.32 4.73 par:pre; +disparaissante disparaissant adj f s 0.01 1.15 0.00 0.07 +disparaisse disparaître ver 166.13 183.31 2.94 2.43 sub:pre:1s;sub:pre:3s; +disparaissent disparaître ver 166.13 183.31 6.65 6.42 ind:pre:3p; +disparaisses disparaître ver 166.13 183.31 0.23 0.07 sub:pre:2s; +disparaissez disparaître ver 166.13 183.31 4.32 0.95 imp:pre:2p;ind:pre:2p; +disparaissiez disparaître ver 166.13 183.31 0.17 0.00 ind:imp:2p; +disparaissions disparaître ver 166.13 183.31 0.14 0.34 ind:imp:1p; +disparaissons disparaître ver 166.13 183.31 0.23 0.00 imp:pre:1p;ind:pre:1p; +disparate disparate adj s 0.27 3.18 0.02 1.28 +disparates disparate adj p 0.27 3.18 0.25 1.89 +disparition disparition nom f s 16.33 23.38 14.83 22.30 +disparitions disparition nom f p 16.33 23.38 1.50 1.08 +disparité disparité nom f s 0.07 0.27 0.07 0.27 +disparu disparaître ver m s 166.13 183.31 86.21 58.78 par:pas; +disparue disparaître ver f s 166.13 183.31 4.33 1.42 par:pas; +disparues disparu adj f p 9.82 14.80 1.55 1.55 +disparurent disparaître ver 166.13 183.31 0.45 4.80 ind:pas:3p; +disparus disparu nom m p 10.07 6.42 3.27 2.77 +disparut disparaître ver 166.13 183.31 2.05 24.66 ind:pas:3s; +dispatchais dispatcher ver 0.07 0.07 0.01 0.00 ind:imp:1s; +dispatchait dispatcher ver 0.07 0.07 0.00 0.07 ind:imp:3s; +dispatche dispatcher ver 0.07 0.07 0.04 0.00 imp:pre:2s;ind:pre:3s; +dispatcher dispatcher ver 0.07 0.07 0.01 0.00 inf; +dispatching dispatching nom m s 0.12 0.14 0.12 0.14 +dispendieuse dispendieux adj f s 0.07 0.47 0.00 0.14 +dispendieusement dispendieusement adv 0.00 0.07 0.00 0.07 +dispendieux dispendieux adj m 0.07 0.47 0.07 0.34 +dispensa dispenser ver 3.27 11.15 0.00 0.54 ind:pas:3s; +dispensable dispensable adj s 0.01 0.00 0.01 0.00 +dispensaient dispenser ver 3.27 11.15 0.02 0.34 ind:imp:3p; +dispensaire dispensaire nom m s 1.76 1.69 1.71 1.28 +dispensaires dispensaire nom m p 1.76 1.69 0.04 0.41 +dispensais dispenser ver 3.27 11.15 0.00 0.14 ind:imp:1s; +dispensait dispenser ver 3.27 11.15 0.38 1.89 ind:imp:3s; +dispensant dispenser ver 3.27 11.15 0.01 0.47 par:pre; +dispensateur dispensateur nom m s 0.02 1.15 0.02 0.20 +dispensateurs dispensateur nom m p 0.02 1.15 0.00 0.27 +dispensation dispensation nom f s 0.00 0.07 0.00 0.07 +dispensatrice dispensateur nom f s 0.02 1.15 0.00 0.54 +dispensatrices dispensateur nom f p 0.02 1.15 0.00 0.14 +dispense dispenser ver 3.27 11.15 1.14 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dispensent dispenser ver 3.27 11.15 0.25 0.68 ind:pre:3p; +dispenser dispenser ver 3.27 11.15 0.33 1.76 inf; +dispenserait dispenser ver 3.27 11.15 0.03 0.20 cnd:pre:3s; +dispenseras dispenser ver 3.27 11.15 0.00 0.07 ind:fut:2s; +dispenses dispenser ver 3.27 11.15 0.03 0.00 ind:pre:2s; +dispensez dispenser ver 3.27 11.15 0.17 0.07 imp:pre:2p;ind:pre:2p; +dispensât dispenser ver 3.27 11.15 0.00 0.07 sub:imp:3s; +dispensèrent dispenser ver 3.27 11.15 0.01 0.00 ind:pas:3p; +dispensé dispenser ver m s 3.27 11.15 0.47 2.03 par:pas; +dispensée dispenser ver f s 3.27 11.15 0.35 0.61 par:pas; +dispensées dispenser ver f p 3.27 11.15 0.01 0.07 par:pas; +dispensés dispenser ver m p 3.27 11.15 0.07 0.34 par:pas; +dispersa disperser ver 10.58 18.85 0.01 1.22 ind:pas:3s; +dispersaient disperser ver 10.58 18.85 0.01 1.15 ind:imp:3p; +dispersait disperser ver 10.58 18.85 0.02 1.55 ind:imp:3s; +dispersant disperser ver 10.58 18.85 0.04 0.74 par:pre; +disperse disperser ver 10.58 18.85 1.35 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dispersement dispersement nom m s 0.01 0.14 0.01 0.14 +dispersent disperser ver 10.58 18.85 0.35 0.95 ind:pre:3p; +disperser disperser ver 10.58 18.85 2.27 2.97 inf;; +dispersera disperser ver 10.58 18.85 0.08 0.07 ind:fut:3s; +disperserai disperser ver 10.58 18.85 0.16 0.00 ind:fut:1s; +disperseraient disperser ver 10.58 18.85 0.01 0.07 cnd:pre:3p; +disperserait disperser ver 10.58 18.85 0.00 0.14 cnd:pre:3s; +disperserons disperser ver 10.58 18.85 0.01 0.07 ind:fut:1p; +disperseront disperser ver 10.58 18.85 0.02 0.07 ind:fut:3p; +disperses disperser ver 10.58 18.85 0.12 0.14 ind:pre:2s; +dispersez disperser ver 10.58 18.85 3.24 0.07 imp:pre:2p;ind:pre:2p; +dispersif dispersif adj m s 0.01 0.00 0.01 0.00 +dispersion dispersion nom f s 0.93 4.19 0.93 4.12 +dispersions disperser ver 10.58 18.85 0.10 0.07 ind:imp:1p; +dispersons disperser ver 10.58 18.85 0.30 0.00 imp:pre:1p;ind:pre:1p; +dispersât disperser ver 10.58 18.85 0.00 0.07 sub:imp:3s; +dispersèrent disperser ver 10.58 18.85 0.00 1.35 ind:pas:3p; +dispersé disperser ver m s 10.58 18.85 0.86 1.35 par:pas; +dispersée disperser ver f s 10.58 18.85 0.36 0.88 par:pas; +dispersées disperser ver f p 10.58 18.85 0.41 0.88 par:pas; +dispersés disperser ver m p 10.58 18.85 0.86 2.91 par:pas; +dispo dispo adj s 0.44 0.00 0.44 0.00 +disponibilité disponibilité nom f s 1.23 3.58 1.01 2.64 +disponibilités disponibilité nom f p 1.23 3.58 0.21 0.95 +disponible disponible adj s 13.19 11.96 8.74 7.84 +disponibles disponible adj p 13.19 11.96 4.46 4.12 +dispos dispos adj m 0.80 2.03 0.75 1.69 +disposa disposer ver 21.07 83.18 0.00 3.24 ind:pas:3s; +disposai disposer ver 21.07 83.18 0.01 0.34 ind:pas:1s; +disposaient disposer ver 21.07 83.18 0.05 3.31 ind:imp:3p; +disposais disposer ver 21.07 83.18 0.08 2.77 ind:imp:1s;ind:imp:2s; +disposait disposer ver 21.07 83.18 0.14 11.01 ind:imp:3s; +disposant disposer ver 21.07 83.18 0.16 3.92 par:pre; +disposas disposer ver 21.07 83.18 0.00 0.07 ind:pas:2s; +dispose disposer ver 21.07 83.18 3.48 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disposent disposer ver 21.07 83.18 0.56 2.36 ind:pre:3p; +disposer disposer ver 21.07 83.18 7.40 12.64 inf; +disposera disposer ver 21.07 83.18 0.21 0.34 ind:fut:3s; +disposerai disposer ver 21.07 83.18 0.17 0.07 ind:fut:1s; +disposeraient disposer ver 21.07 83.18 0.00 0.20 cnd:pre:3p; +disposerais disposer ver 21.07 83.18 0.00 0.27 cnd:pre:1s; +disposerait disposer ver 21.07 83.18 0.01 1.08 cnd:pre:3s; +disposeras disposer ver 21.07 83.18 0.00 0.07 ind:fut:2s; +disposerez disposer ver 21.07 83.18 0.17 0.27 ind:fut:2p; +disposerons disposer ver 21.07 83.18 0.13 0.07 ind:fut:1p; +disposeront disposer ver 21.07 83.18 0.00 0.20 ind:fut:3p; +disposes disposer ver 21.07 83.18 0.34 0.34 ind:pre:2s; +disposez disposer ver 21.07 83.18 2.15 0.81 imp:pre:2p;ind:pre:2p; +disposiez disposer ver 21.07 83.18 0.02 0.07 ind:imp:2p; +disposions disposer ver 21.07 83.18 0.10 1.42 ind:imp:1p; +dispositif dispositif nom m s 5.38 5.74 4.65 5.07 +dispositifs dispositif nom m p 5.38 5.74 0.73 0.68 +disposition disposition nom f s 14.99 45.07 11.62 27.91 +dispositions disposition nom f p 14.99 45.07 3.37 17.16 +disposâmes disposer ver 21.07 83.18 0.00 0.07 ind:pas:1p; +disposons disposer ver 21.07 83.18 0.81 1.22 imp:pre:1p;ind:pre:1p; +disposât disposer ver 21.07 83.18 0.00 0.68 sub:imp:3s; +disposèrent disposer ver 21.07 83.18 0.00 0.27 ind:pas:3p; +disposé disposer ver m s 21.07 83.18 2.96 12.91 par:pas; +disposée disposer ver f s 21.07 83.18 0.94 2.43 par:pas; +disposées disposer ver f p 21.07 83.18 0.26 3.24 par:pas; +disposés disposer ver m p 21.07 83.18 0.91 7.97 par:pas; +disproportion disproportion nom f s 0.27 0.95 0.27 0.88 +disproportionnelle disproportionnel adj f s 0.01 0.00 0.01 0.00 +disproportionné disproportionner ver m s 0.45 0.81 0.22 0.41 par:pas; +disproportionnée disproportionné adj f s 0.52 0.95 0.29 0.34 +disproportionnées disproportionner ver f p 0.45 0.81 0.11 0.00 par:pas; +disproportionnés disproportionné adj m p 0.52 0.95 0.03 0.20 +disproportions disproportion nom f p 0.27 0.95 0.00 0.07 +disputa disputer ver 39.31 22.09 0.00 0.20 ind:pas:3s; +disputaient disputer ver 39.31 22.09 1.21 4.46 ind:imp:3p; +disputais disputer ver 39.31 22.09 0.15 0.00 ind:imp:1s;ind:imp:2s; +disputait disputer ver 39.31 22.09 1.73 2.09 ind:imp:3s; +disputant disputer ver 39.31 22.09 0.37 1.42 par:pre; +dispute dispute nom f s 16.54 12.43 11.48 6.96 +disputent disputer ver 39.31 22.09 3.16 2.09 ind:pre:3p; +disputer disputer ver 39.31 22.09 10.54 4.12 ind:pre:2p;inf; +disputera disputer ver 39.31 22.09 0.48 0.14 ind:fut:3s; +disputerai disputer ver 39.31 22.09 0.22 0.00 ind:fut:1s; +disputeraient disputer ver 39.31 22.09 0.03 0.07 cnd:pre:3p; +disputerait disputer ver 39.31 22.09 0.20 0.07 cnd:pre:3s; +disputerez disputer ver 39.31 22.09 0.02 0.00 ind:fut:2p; +disputerons disputer ver 39.31 22.09 0.11 0.00 ind:fut:1p; +disputeront disputer ver 39.31 22.09 0.59 0.07 ind:fut:3p; +disputes dispute nom f p 16.54 12.43 5.07 5.47 +disputeur disputeur nom m s 0.00 0.07 0.00 0.07 +disputez disputer ver 39.31 22.09 2.37 0.20 imp:pre:2p;ind:pre:2p; +disputiez disputer ver 39.31 22.09 0.74 0.00 ind:imp:2p; +disputions disputer ver 39.31 22.09 0.15 0.61 ind:imp:1p; +disputâmes disputer ver 39.31 22.09 0.01 0.34 ind:pas:1p; +disputons disputer ver 39.31 22.09 1.27 0.47 imp:pre:1p;ind:pre:1p; +disputât disputer ver 39.31 22.09 0.00 0.20 sub:imp:3s; +disputèrent disputer ver 39.31 22.09 0.01 1.08 ind:pas:3p; +disputé disputer ver m s 39.31 22.09 2.96 1.08 par:pas; +disputée disputer ver f s 39.31 22.09 1.22 0.61 par:pas; +disputées disputer ver f p 39.31 22.09 0.83 0.14 par:pas; +disputés disputer ver m p 39.31 22.09 6.59 0.95 par:pas; +disquaire disquaire nom s 0.46 0.54 0.42 0.41 +disquaires disquaire nom p 0.46 0.54 0.04 0.14 +disqualifiait disqualifier ver 1.51 0.81 0.00 0.07 ind:imp:3s; +disqualifiant disqualifier ver 1.51 0.81 0.01 0.00 par:pre; +disqualification disqualification nom f s 0.15 0.07 0.14 0.07 +disqualifications disqualification nom f p 0.15 0.07 0.01 0.00 +disqualifie disqualifier ver 1.51 0.81 0.19 0.07 ind:pre:1s;ind:pre:3s; +disqualifient disqualifier ver 1.51 0.81 0.15 0.00 ind:pre:3p; +disqualifier disqualifier ver 1.51 0.81 0.14 0.20 inf; +disqualifié disqualifier ver m s 1.51 0.81 0.59 0.27 par:pas; +disqualifiée disqualifier ver f s 1.51 0.81 0.17 0.07 par:pas; +disqualifiées disqualifier ver f p 1.51 0.81 0.05 0.00 par:pas; +disqualifiés disqualifier ver m p 1.51 0.81 0.21 0.14 par:pas; +disque_jockey disque_jockey nom m s 0.01 0.07 0.01 0.07 +disque disque nom m s 33.61 42.16 20.36 21.49 +disques disque nom m p 33.61 42.16 13.26 20.68 +disquette disquette nom f s 2.48 0.41 1.81 0.41 +disquettes disquette nom f p 2.48 0.41 0.67 0.00 +disruptif disruptif adj m s 0.01 0.00 0.01 0.00 +disruption disruption nom f s 0.01 0.00 0.01 0.00 +dissection dissection nom f s 0.88 0.68 0.61 0.54 +dissections dissection nom f p 0.88 0.68 0.28 0.14 +dissemblable dissemblable adj s 0.05 1.69 0.02 0.34 +dissemblables dissemblable adj p 0.05 1.69 0.03 1.35 +dissemblance dissemblance nom f s 0.00 0.27 0.00 0.27 +dissension dissension nom f s 0.47 1.28 0.11 0.34 +dissensions dissension nom f p 0.47 1.28 0.36 0.95 +dissent dire ver_sup 5946.17 4832.50 0.04 0.00 sub:imp:3p; +dissentiment dissentiment nom m s 0.02 0.34 0.02 0.14 +dissentiments dissentiment nom m p 0.02 0.34 0.00 0.20 +dissertait disserter ver 0.22 1.28 0.02 0.20 ind:imp:3s; +dissertant disserter ver 0.22 1.28 0.00 0.14 par:pre; +dissertation dissertation nom f s 1.50 3.04 1.40 2.03 +dissertations dissertation nom f p 1.50 3.04 0.10 1.01 +disserte disserter ver 0.22 1.28 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissertent disserter ver 0.22 1.28 0.00 0.14 ind:pre:3p; +disserter disserter ver 0.22 1.28 0.04 0.68 inf; +disserterait disserter ver 0.22 1.28 0.01 0.00 cnd:pre:3s; +dissertes disserter ver 0.22 1.28 0.01 0.00 ind:pre:2s; +disserté disserter ver m s 0.22 1.28 0.02 0.07 par:pas; +dissidence dissidence nom f s 0.28 0.81 0.27 0.74 +dissidences dissidence nom f p 0.28 0.81 0.01 0.07 +dissident dissident nom m s 0.88 0.68 0.33 0.07 +dissidente dissident adj f s 0.61 0.81 0.09 0.14 +dissidentes dissident adj f p 0.61 0.81 0.02 0.20 +dissidents dissident nom m p 0.88 0.68 0.55 0.54 +dissimilaires dissimilaire adj p 0.01 0.00 0.01 0.00 +dissimiler dissimiler ver 0.01 0.00 0.01 0.00 inf; +dissimula dissimuler ver 8.67 51.01 0.14 1.55 ind:pas:3s; +dissimulables dissimulable adj p 0.00 0.07 0.00 0.07 +dissimulai dissimuler ver 8.67 51.01 0.00 0.14 ind:pas:1s; +dissimulaient dissimuler ver 8.67 51.01 0.04 2.30 ind:imp:3p; +dissimulais dissimuler ver 8.67 51.01 0.03 0.88 ind:imp:1s;ind:imp:2s; +dissimulait dissimuler ver 8.67 51.01 0.30 6.76 ind:imp:3s; +dissimulant dissimuler ver 8.67 51.01 0.26 3.18 par:pre; +dissimulateur dissimulateur adj m s 0.04 0.20 0.01 0.07 +dissimulateurs dissimulateur adj m p 0.04 0.20 0.02 0.00 +dissimulation dissimulation nom f s 1.47 2.30 1.35 2.23 +dissimulations dissimulation nom f p 1.47 2.30 0.11 0.07 +dissimulatrice dissimulateur adj f s 0.04 0.20 0.00 0.07 +dissimulatrices dissimulateur adj f p 0.04 0.20 0.00 0.07 +dissimule dissimuler ver 8.67 51.01 1.22 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissimulent dissimuler ver 8.67 51.01 0.11 1.35 ind:pre:3p; +dissimuler dissimuler ver 8.67 51.01 3.72 15.68 inf; +dissimulera dissimuler ver 8.67 51.01 0.01 0.00 ind:fut:3s; +dissimuleraient dissimuler ver 8.67 51.01 0.01 0.00 cnd:pre:3p; +dissimulerais dissimuler ver 8.67 51.01 0.00 0.07 cnd:pre:1s; +dissimulerait dissimuler ver 8.67 51.01 0.04 0.41 cnd:pre:3s; +dissimulerons dissimuler ver 8.67 51.01 0.00 0.07 ind:fut:1p; +dissimules dissimuler ver 8.67 51.01 0.02 0.00 ind:pre:2s; +dissimulez dissimuler ver 8.67 51.01 0.53 0.07 imp:pre:2p;ind:pre:2p; +dissimuliez dissimuler ver 8.67 51.01 0.00 0.07 ind:imp:2p; +dissimulions dissimuler ver 8.67 51.01 0.00 0.34 ind:imp:1p; +dissimulons dissimuler ver 8.67 51.01 0.04 0.27 imp:pre:1p;ind:pre:1p; +dissimulât dissimuler ver 8.67 51.01 0.00 0.14 sub:imp:3s; +dissimulèrent dissimuler ver 8.67 51.01 0.00 0.20 ind:pas:3p; +dissimulé dissimuler ver m s 8.67 51.01 1.24 7.43 par:pas; +dissimulée dissimuler ver f s 8.67 51.01 0.31 3.24 par:pas; +dissimulées dissimuler ver f p 8.67 51.01 0.20 0.81 par:pas; +dissimulés dissimuler ver m p 8.67 51.01 0.45 2.77 par:pas; +dissipa dissiper ver 4.76 19.59 0.12 1.62 ind:pas:3s; +dissipaient dissiper ver 4.76 19.59 0.01 0.54 ind:imp:3p; +dissipait dissiper ver 4.76 19.59 0.01 2.70 ind:imp:3s; +dissipant dissiper ver 4.76 19.59 0.03 0.47 par:pre; +dissipateur dissipateur nom m s 0.01 0.27 0.01 0.20 +dissipateurs dissipateur nom m p 0.01 0.27 0.00 0.07 +dissipation dissipation nom f s 0.04 0.95 0.04 0.61 +dissipations dissipation nom f p 0.04 0.95 0.00 0.34 +dissipe dissiper ver 4.76 19.59 1.26 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissipent dissiper ver 4.76 19.59 0.22 0.54 ind:pre:3p; +dissiper dissiper ver 4.76 19.59 1.43 5.88 inf; +dissipera dissiper ver 4.76 19.59 0.33 0.07 ind:fut:3s; +dissiperais dissiper ver 4.76 19.59 0.00 0.07 cnd:pre:1s; +dissiperait dissiper ver 4.76 19.59 0.04 0.20 cnd:pre:3s; +dissiperont dissiper ver 4.76 19.59 0.08 0.07 ind:fut:3p; +dissipez dissiper ver 4.76 19.59 0.05 0.00 imp:pre:2p;ind:pre:2p; +dissipèrent dissiper ver 4.76 19.59 0.01 0.14 ind:pas:3p; +dissipé dissiper ver m s 4.76 19.59 0.75 2.30 par:pas; +dissipée dissiper ver f s 4.76 19.59 0.34 1.89 par:pas; +dissipées dissipé adj f p 0.29 1.49 0.03 0.14 +dissipés dissiper ver m p 4.76 19.59 0.07 0.34 par:pas; +dissocia dissocier ver 0.83 3.04 0.00 0.14 ind:pas:3s; +dissociaient dissocier ver 0.83 3.04 0.00 0.14 ind:imp:3p; +dissociait dissocier ver 0.83 3.04 0.00 0.27 ind:imp:3s; +dissociant dissocier ver 0.83 3.04 0.00 0.14 par:pre; +dissociatif dissociatif adj m s 0.28 0.00 0.17 0.00 +dissociatifs dissociatif adj m p 0.28 0.00 0.01 0.00 +dissociation dissociation nom f s 0.32 0.41 0.32 0.34 +dissociations dissociation nom f p 0.32 0.41 0.00 0.07 +dissociative dissociatif adj f s 0.28 0.00 0.10 0.00 +dissocie dissocier ver 0.83 3.04 0.02 0.07 ind:pre:1s;ind:pre:3s; +dissocient dissocier ver 0.83 3.04 0.01 0.14 ind:pre:3p; +dissocier dissocier ver 0.83 3.04 0.33 0.95 inf; +dissocierons dissocier ver 0.83 3.04 0.00 0.07 ind:fut:1p; +dissocié dissocier ver m s 0.83 3.04 0.33 0.61 par:pas; +dissociée dissocier ver f s 0.83 3.04 0.07 0.00 par:pas; +dissociées dissocier ver f p 0.83 3.04 0.03 0.14 par:pas; +dissociés dissocier ver m p 0.83 3.04 0.04 0.41 par:pas; +dissolu dissolu adj m s 0.82 0.68 0.12 0.07 +dissolue dissolu adj f s 0.82 0.68 0.47 0.41 +dissolues dissolu adj f p 0.82 0.68 0.12 0.14 +dissolus dissolu adj m p 0.82 0.68 0.11 0.07 +dissolution dissolution nom f s 0.80 2.50 0.80 2.50 +dissolvaient dissoudre ver 3.94 12.30 0.00 0.81 ind:imp:3p; +dissolvait dissoudre ver 3.94 12.30 0.01 1.01 ind:imp:3s; +dissolvant dissolvant nom m s 0.41 0.34 0.38 0.34 +dissolvante dissolvant adj f s 0.01 1.01 0.00 0.34 +dissolvantes dissolvant adj f p 0.01 1.01 0.00 0.14 +dissolvants dissolvant nom m p 0.41 0.34 0.03 0.00 +dissolve dissoudre ver 3.94 12.30 0.07 0.14 sub:pre:3s; +dissolvent dissoudre ver 3.94 12.30 0.04 0.41 ind:pre:3p; +dissolves dissoudre ver 3.94 12.30 0.01 0.00 sub:pre:2s; +dissonance dissonance nom f s 0.42 0.54 0.14 0.20 +dissonances dissonance nom f p 0.42 0.54 0.28 0.34 +dissonant dissoner ver 0.01 0.00 0.01 0.00 par:pre; +dissonants dissonant adj m p 0.00 0.27 0.00 0.07 +dissoudra dissoudre ver 3.94 12.30 0.03 0.07 ind:fut:3s; +dissoudrai dissoudre ver 3.94 12.30 0.00 0.07 ind:fut:1s; +dissoudrait dissoudre ver 3.94 12.30 0.01 0.07 cnd:pre:3s; +dissoudre dissoudre ver 3.94 12.30 1.38 6.55 inf; +dissoudront dissoudre ver 3.94 12.30 0.04 0.00 ind:fut:3p; +dissous dissoudre ver m 3.94 12.30 1.19 1.42 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +dissout dissoudre ver 3.94 12.30 1.03 1.08 ind:pre:3s; +dissoute dissoute adj f s 0.46 2.57 0.40 1.42 +dissoutes dissoute adj f p 0.46 2.57 0.07 1.15 +dissèque disséquer ver 1.56 2.16 0.29 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissèquent disséquer ver 1.56 2.16 0.01 0.14 ind:pre:3p; +dissuada dissuader ver 3.66 3.72 0.00 0.47 ind:pas:3s; +dissuadai dissuader ver 3.66 3.72 0.00 0.20 ind:pas:1s; +dissuadait dissuader ver 3.66 3.72 0.01 0.20 ind:imp:3s; +dissuadant dissuader ver 3.66 3.72 0.01 0.14 par:pre; +dissuade dissuader ver 3.66 3.72 0.15 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissuadent dissuader ver 3.66 3.72 0.02 0.14 ind:pre:3p; +dissuader dissuader ver 3.66 3.72 2.62 1.96 inf; +dissuadera dissuader ver 3.66 3.72 0.10 0.00 ind:fut:3s; +dissuaderas dissuader ver 3.66 3.72 0.01 0.00 ind:fut:2s; +dissuaderez dissuader ver 3.66 3.72 0.03 0.00 ind:fut:2p; +dissuaderont dissuader ver 3.66 3.72 0.02 0.00 ind:fut:3p; +dissuadez dissuader ver 3.66 3.72 0.26 0.00 imp:pre:2p; +dissuadiez dissuader ver 3.66 3.72 0.01 0.00 ind:imp:2p; +dissuadèrent dissuader ver 3.66 3.72 0.00 0.07 ind:pas:3p; +dissuadé dissuader ver m s 3.66 3.72 0.25 0.34 par:pas; +dissuadée dissuader ver f s 3.66 3.72 0.13 0.14 par:pas; +dissuadés dissuader ver m p 3.66 3.72 0.03 0.00 par:pas; +dissuasif dissuasif adj m s 0.21 0.07 0.19 0.07 +dissuasion dissuasion nom f s 0.29 0.27 0.29 0.27 +dissuasive dissuasif adj f s 0.21 0.07 0.02 0.00 +dissémina disséminer ver 0.46 2.16 0.00 0.07 ind:pas:3s; +disséminait disséminer ver 0.46 2.16 0.00 0.07 ind:imp:3s; +disséminant disséminer ver 0.46 2.16 0.01 0.00 par:pre; +dissémination dissémination nom f s 0.07 0.14 0.07 0.14 +disséminent disséminer ver 0.46 2.16 0.01 0.00 ind:pre:3p; +disséminer disséminer ver 0.46 2.16 0.18 0.07 inf; +disséminèrent disséminer ver 0.46 2.16 0.00 0.07 ind:pas:3p; +disséminé disséminé adj m s 0.08 0.47 0.02 0.00 +disséminée disséminé adj f s 0.08 0.47 0.01 0.14 +disséminées disséminer ver f p 0.46 2.16 0.06 0.74 par:pas; +disséminés disséminer ver m p 0.46 2.16 0.17 1.15 par:pas; +disséquai disséquer ver 1.56 2.16 0.01 0.00 ind:pas:1s; +disséquait disséquer ver 1.56 2.16 0.01 0.07 ind:imp:3s; +disséquant disséquer ver 1.56 2.16 0.03 0.00 par:pre; +disséquer disséquer ver 1.56 2.16 0.64 0.88 inf;; +disséqueraient disséquer ver 1.56 2.16 0.00 0.07 cnd:pre:3p; +disséquerais disséquer ver 1.56 2.16 0.02 0.00 cnd:pre:1s; +disséqueur disséqueur nom m s 0.01 0.00 0.01 0.00 +disséquez disséquer ver 1.56 2.16 0.07 0.00 imp:pre:2p; +disséquiez disséquer ver 1.56 2.16 0.03 0.00 ind:imp:2p; +disséquions disséquer ver 1.56 2.16 0.00 0.07 ind:imp:1p; +disséquons disséquer ver 1.56 2.16 0.03 0.00 ind:pre:1p; +disséqué disséquer ver m s 1.56 2.16 0.32 0.47 par:pas; +disséquée disséquer ver f s 1.56 2.16 0.07 0.14 par:pas; +disséqués disséquer ver m p 1.56 2.16 0.04 0.14 par:pas; +dissymétrie dissymétrie nom f s 0.14 0.54 0.14 0.54 +dissymétrique dissymétrique adj m s 0.00 0.27 0.00 0.07 +dissymétriques dissymétrique adj p 0.00 0.27 0.00 0.20 +distal distal adj m s 0.19 0.00 0.15 0.00 +distale distal adj f s 0.19 0.00 0.01 0.00 +distance distance nom f s 31.56 62.43 26.13 52.64 +distancent distancer ver 1.25 1.96 0.01 0.00 ind:pre:3p; +distancer distancer ver 1.25 1.96 0.30 0.47 inf; +distancerez distancer ver 1.25 1.96 0.01 0.00 ind:fut:2p; +distances distance nom f p 31.56 62.43 5.43 9.80 +distanciation distanciation nom f s 0.01 0.00 0.01 0.00 +distancier distancier ver 0.25 0.00 0.15 0.00 inf; +distancié distancier ver m s 0.25 0.00 0.10 0.00 par:pas; +distancé distancer ver m s 1.25 1.96 0.08 0.34 par:pas; +distancée distancer ver f s 1.25 1.96 0.12 0.14 par:pas; +distancés distancer ver m p 1.25 1.96 0.03 0.61 par:pas; +distant distant adj m s 3.48 7.50 2.47 2.64 +distante distant adj f s 3.48 7.50 0.66 2.91 +distantes distant adj f p 3.48 7.50 0.08 0.74 +distança distancer ver 1.25 1.96 0.00 0.20 ind:pas:3s; +distançait distancer ver 1.25 1.96 0.00 0.07 ind:imp:3s; +distançant distancer ver 1.25 1.96 0.01 0.14 par:pre; +distançons distancer ver 1.25 1.96 0.01 0.00 imp:pre:1p; +distants distant adj m p 3.48 7.50 0.28 1.22 +distaux distal adj m p 0.19 0.00 0.03 0.00 +distend distendre ver 0.41 3.24 0.02 0.74 ind:pre:3s; +distendaient distendre ver 0.41 3.24 0.00 0.07 ind:imp:3p; +distendait distendre ver 0.41 3.24 0.00 0.34 ind:imp:3s; +distendant distendre ver 0.41 3.24 0.00 0.14 par:pre; +distende distendre ver 0.41 3.24 0.00 0.07 sub:pre:3s; +distendent distendre ver 0.41 3.24 0.00 0.14 ind:pre:3p; +distendit distendre ver 0.41 3.24 0.00 0.07 ind:pas:3s; +distendrait distendre ver 0.41 3.24 0.00 0.07 cnd:pre:3s; +distendre distendre ver 0.41 3.24 0.00 0.41 inf; +distendu distendre ver m s 0.41 3.24 0.11 0.20 par:pas; +distendue distendu adj f s 0.13 2.64 0.01 0.34 +distendues distendre ver f p 0.41 3.24 0.01 0.20 par:pas; +distendus distendre ver m p 0.41 3.24 0.27 0.47 par:pas; +distension distension nom f s 0.07 0.07 0.07 0.07 +distillaient distiller ver 1.13 4.05 0.00 0.07 ind:imp:3p; +distillait distiller ver 1.13 4.05 0.00 0.81 ind:imp:3s; +distillant distiller ver 1.13 4.05 0.01 0.27 par:pre; +distillat distillat nom m s 0.07 0.00 0.07 0.00 +distillateur distillateur nom m s 0.05 0.14 0.02 0.07 +distillateurs distillateur nom m p 0.05 0.14 0.03 0.07 +distillation distillation nom f s 0.04 0.47 0.04 0.41 +distillations distillation nom f p 0.04 0.47 0.00 0.07 +distille distiller ver 1.13 4.05 0.14 0.95 ind:pre:1s;ind:pre:3s; +distillent distiller ver 1.13 4.05 0.15 0.27 ind:pre:3p; +distiller distiller ver 1.13 4.05 0.23 0.61 inf; +distillera distiller ver 1.13 4.05 0.00 0.07 ind:fut:3s; +distillerie distillerie nom f s 0.98 0.41 0.84 0.41 +distilleries distillerie nom f p 0.98 0.41 0.14 0.00 +distilleront distiller ver 1.13 4.05 0.00 0.07 ind:fut:3p; +distillez distiller ver 1.13 4.05 0.03 0.00 imp:pre:2p;ind:pre:2p; +distillé distiller ver m s 1.13 4.05 0.25 0.54 par:pas; +distillée distiller ver f s 1.13 4.05 0.27 0.27 par:pas; +distillées distiller ver f p 1.13 4.05 0.00 0.07 par:pas; +distillés distiller ver m p 1.13 4.05 0.05 0.07 par:pas; +distinct distinct adj m s 2.56 9.46 0.31 2.43 +distincte distinct adj f s 2.56 9.46 0.26 2.64 +distinctement distinctement adv 1.48 6.76 1.48 6.76 +distinctes distinct adj f p 2.56 9.46 1.38 2.30 +distinctif distinctif adj m s 0.71 1.62 0.34 1.15 +distinctifs distinctif adj m p 0.71 1.62 0.28 0.27 +distinction distinction nom f s 2.86 10.14 2.38 9.19 +distinctions distinction nom f p 2.86 10.14 0.48 0.95 +distinctive distinctif adj f s 0.71 1.62 0.06 0.14 +distinctives distinctif adj f p 0.71 1.62 0.03 0.07 +distincts distinct adj m p 2.56 9.46 0.61 2.09 +distingua distinguer ver 12.77 74.12 0.01 4.39 ind:pas:3s; +distinguai distinguer ver 12.77 74.12 0.00 1.28 ind:pas:1s; +distinguaient distinguer ver 12.77 74.12 0.02 2.64 ind:imp:3p; +distinguais distinguer ver 12.77 74.12 0.40 2.97 ind:imp:1s; +distinguait distinguer ver 12.77 74.12 0.52 12.97 ind:imp:3s; +distinguant distinguer ver 12.77 74.12 0.00 0.74 par:pre; +distingue distinguer ver 12.77 74.12 3.59 15.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +distinguent distinguer ver 12.77 74.12 0.36 1.15 ind:pre:3p; +distinguer distinguer ver 12.77 74.12 5.74 24.12 inf; +distinguera distinguer ver 12.77 74.12 0.04 0.07 ind:fut:3s; +distingueraient distinguer ver 12.77 74.12 0.01 0.20 cnd:pre:3p; +distinguerait distinguer ver 12.77 74.12 0.00 0.27 cnd:pre:3s; +distinguerez distinguer ver 12.77 74.12 0.01 0.07 ind:fut:2p; +distingues distinguer ver 12.77 74.12 0.32 0.14 ind:pre:2s; +distinguez distinguer ver 12.77 74.12 0.22 0.14 imp:pre:2p;ind:pre:2p; +distinguions distinguer ver 12.77 74.12 0.10 0.41 ind:imp:1p; +distinguo distinguo nom m s 0.06 0.20 0.04 0.20 +distinguons distinguer ver 12.77 74.12 0.01 0.61 imp:pre:1p;ind:pre:1p; +distinguos distinguo nom m p 0.06 0.20 0.02 0.00 +distinguât distinguer ver 12.77 74.12 0.00 0.41 sub:imp:3s; +distinguèrent distinguer ver 12.77 74.12 0.00 0.54 ind:pas:3p; +distingué distingué adj m s 5.04 9.39 2.81 4.19 +distinguée distingué adj f s 5.04 9.39 1.23 2.16 +distinguées distingué adj f p 5.04 9.39 0.21 0.68 +distingués distingué adj m p 5.04 9.39 0.80 2.36 +distord distordre ver 0.10 0.61 0.00 0.07 ind:pre:3s; +distordant distordre ver 0.10 0.61 0.00 0.07 par:pre; +distordre distordre ver 0.10 0.61 0.01 0.07 inf; +distordu distordre ver m s 0.10 0.61 0.02 0.20 par:pas; +distordue distordre ver f s 0.10 0.61 0.06 0.14 par:pas; +distordues distordre ver f p 0.10 0.61 0.00 0.07 par:pas; +distorsion distorsion nom f s 1.05 0.61 0.80 0.27 +distorsions distorsion nom f p 1.05 0.61 0.26 0.34 +distraction distraction nom f s 3.98 14.05 2.80 9.19 +distractions distraction nom f p 3.98 14.05 1.18 4.86 +distractives distractif adj f p 0.00 0.07 0.00 0.07 +distraie distraire ver 15.99 27.77 0.02 0.20 sub:pre:1s;sub:pre:3s; +distraient distraire ver 15.99 27.77 0.37 0.27 ind:pre:3p;sub:pre:3p; +distraies distraire ver 15.99 27.77 0.01 0.07 sub:pre:2s; +distraira distraire ver 15.99 27.77 0.41 0.34 ind:fut:3s; +distrairaient distraire ver 15.99 27.77 0.00 0.07 cnd:pre:3p; +distrairait distraire ver 15.99 27.77 0.05 0.41 cnd:pre:3s; +distraire distraire ver 15.99 27.77 7.55 13.38 ind:pre:2p;inf; +distrairont distraire ver 15.99 27.77 0.01 0.07 ind:fut:3p; +distrais distraire ver 15.99 27.77 0.76 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +distrait distraire ver m s 15.99 27.77 4.45 6.76 ind:pre:3s;par:pas; +distraite distraire ver f s 15.99 27.77 1.20 2.50 par:pas; +distraitement distraitement adv 0.11 13.51 0.11 13.51 +distraites distraire ver f p 15.99 27.77 0.05 0.20 par:pas; +distraits distraire ver m p 15.99 27.77 0.29 0.74 par:pas; +distrayaient distraire ver 15.99 27.77 0.00 0.54 ind:imp:3p; +distrayais distraire ver 15.99 27.77 0.04 0.27 ind:imp:1s; +distrayait distraire ver 15.99 27.77 0.15 1.42 ind:imp:3s; +distrayant distrayant adj m s 0.94 1.08 0.64 0.81 +distrayante distrayant adj f s 0.94 1.08 0.25 0.00 +distrayantes distrayant adj f p 0.94 1.08 0.03 0.14 +distrayants distrayant adj m p 0.94 1.08 0.03 0.14 +distrayez distraire ver 15.99 27.77 0.34 0.00 imp:pre:2p;ind:pre:2p; +distrayons distraire ver 15.99 27.77 0.11 0.07 imp:pre:1p;ind:pre:1p; +distribua distribuer ver 14.06 25.54 0.18 1.55 ind:pas:3s; +distribuai distribuer ver 14.06 25.54 0.00 0.20 ind:pas:1s; +distribuaient distribuer ver 14.06 25.54 0.18 1.15 ind:imp:3p; +distribuais distribuer ver 14.06 25.54 0.14 0.14 ind:imp:1s;ind:imp:2s; +distribuait distribuer ver 14.06 25.54 0.41 4.59 ind:imp:3s; +distribuant distribuer ver 14.06 25.54 0.31 1.89 par:pre; +distribue distribuer ver 14.06 25.54 2.00 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +distribuent distribuer ver 14.06 25.54 0.42 0.81 ind:pre:3p; +distribuer distribuer ver 14.06 25.54 4.90 5.88 inf; +distribuera distribuer ver 14.06 25.54 0.15 0.20 ind:fut:3s; +distribuerai distribuer ver 14.06 25.54 0.36 0.00 ind:fut:1s; +distribuerais distribuer ver 14.06 25.54 0.02 0.00 cnd:pre:1s; +distribuerait distribuer ver 14.06 25.54 0.00 0.34 cnd:pre:3s; +distribuerez distribuer ver 14.06 25.54 0.19 0.00 ind:fut:2p; +distribuerions distribuer ver 14.06 25.54 0.00 0.07 cnd:pre:1p; +distribuerons distribuer ver 14.06 25.54 0.02 0.00 ind:fut:1p; +distribueront distribuer ver 14.06 25.54 0.04 0.07 ind:fut:3p; +distribues distribuer ver 14.06 25.54 0.56 0.00 ind:pre:2s; +distribuez distribuer ver 14.06 25.54 0.91 0.07 imp:pre:2p;ind:pre:2p; +distribuiez distribuer ver 14.06 25.54 0.01 0.00 ind:imp:2p; +distribuions distribuer ver 14.06 25.54 0.01 0.07 ind:imp:1p; +distribuons distribuer ver 14.06 25.54 0.10 0.07 imp:pre:1p;ind:pre:1p; +distribuât distribuer ver 14.06 25.54 0.00 0.07 sub:imp:3s; +distributeur distributeur nom m s 7.88 2.77 6.03 1.89 +distributeurs distributeur nom m p 7.88 2.77 1.84 0.81 +distribuèrent distribuer ver 14.06 25.54 0.00 0.07 ind:pas:3p; +distribution distribution nom f s 4.77 8.85 4.63 7.23 +distributions distribution nom f p 4.77 8.85 0.14 1.62 +distributive distributif adj f s 0.00 0.07 0.00 0.07 +distributrice distributeur nom f s 7.88 2.77 0.02 0.07 +distribué distribuer ver m s 14.06 25.54 2.17 2.16 par:pas; +distribuée distribuer ver f s 14.06 25.54 0.35 0.34 par:pas; +distribuées distribuer ver f p 14.06 25.54 0.34 0.95 par:pas; +distribués distribuer ver m p 14.06 25.54 0.28 1.42 par:pas; +district district nom m s 6.14 1.69 5.85 1.42 +districts district nom m p 6.14 1.69 0.29 0.27 +dit dire ver_sup m s 5946.17 4832.50 2146.01 2601.62 ind:fut:3p;ind:pre:3s;ind:pas:3s;par:pas; +dite dire ver_sup f s 5946.17 4832.50 4.53 9.19 par:pas; +dites dire ver_sup f p 5946.17 4832.50 311.69 77.43 imp:pre:2p;ind:pre:2p;par:pas; +dièdre dièdre nom m s 0.00 0.41 0.00 0.27 +dièdres dièdre nom m p 0.00 0.41 0.00 0.14 +dièse diéser ver 0.51 0.41 0.51 0.34 ind:pre:3s; +dièses dièse nom m p 0.27 0.27 0.02 0.14 +diète diète nom f s 0.42 0.54 0.42 0.54 +dithyrambe dithyrambe nom m s 0.00 0.34 0.00 0.14 +dithyrambes dithyrambe nom m p 0.00 0.34 0.00 0.20 +dithyrambique dithyrambique adj m s 0.03 0.47 0.01 0.27 +dithyrambiques dithyrambique adj p 0.03 0.47 0.02 0.20 +dito dito adv 0.00 0.34 0.00 0.34 +dits dire ver_sup m p 5946.17 4832.50 1.52 4.46 par:pas; +diurnal diurnal adj m s 0.00 0.07 0.00 0.07 +diurne diurne adj s 0.09 2.03 0.07 1.69 +diurnes diurne adj p 0.09 2.03 0.01 0.34 +diurèse diurèse nom f s 0.07 0.00 0.07 0.00 +diérèses diérèse nom f p 0.00 0.07 0.00 0.07 +diurétique diurétique adj s 0.28 0.00 0.14 0.00 +diurétiques diurétique adj p 0.28 0.00 0.14 0.00 +diéthylénique diéthylénique adj m s 0.01 0.00 0.01 0.00 +diététicien diététicien nom m s 0.09 0.61 0.03 0.54 +diététicienne diététicien nom f s 0.09 0.61 0.06 0.00 +diététiciens diététicien nom m p 0.09 0.61 0.00 0.07 +diététique diététique adj s 1.03 0.47 0.96 0.27 +diététiques diététique adj p 1.03 0.47 0.07 0.20 +diététiste diététiste nom s 0.01 0.00 0.01 0.00 +diva diva nom f s 4.16 1.28 3.60 1.22 +divagant divagant adj m s 0.00 0.20 0.00 0.14 +divagants divagant adj m p 0.00 0.20 0.00 0.07 +divagation divagation nom f s 0.53 2.23 0.00 0.61 +divagations divagation nom f p 0.53 2.23 0.53 1.62 +divaguaient divaguer ver 2.91 4.26 0.00 0.20 ind:imp:3p; +divaguait divaguer ver 2.91 4.26 0.19 0.74 ind:imp:3s; +divaguant divaguer ver 2.91 4.26 0.03 0.41 par:pre; +divague divaguer ver 2.91 4.26 1.27 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divaguent divaguer ver 2.91 4.26 0.01 0.27 ind:pre:3p; +divaguer divaguer ver 2.91 4.26 0.44 1.15 ind:pre:2p;inf; +divagues divaguer ver 2.91 4.26 0.59 0.07 ind:pre:2s; +divaguez divaguer ver 2.91 4.26 0.32 0.07 ind:pre:2p; +divagué divaguer ver m s 2.91 4.26 0.07 0.07 par:pas; +divan divan nom m s 4.92 24.46 4.89 21.55 +divans divan nom m p 4.92 24.46 0.03 2.91 +divas diva nom f p 4.16 1.28 0.56 0.07 +dive dive adj f s 0.00 0.20 0.00 0.20 +diverge diverger ver 0.57 1.01 0.17 0.00 ind:pre:3s; +divergeaient diverger ver 0.57 1.01 0.03 0.34 ind:imp:3p; +divergeait diverger ver 0.57 1.01 0.01 0.00 ind:imp:3s; +divergeant diverger ver 0.57 1.01 0.00 0.14 par:pre; +divergence divergence nom f s 1.19 2.84 0.41 0.95 +divergences divergence nom f p 1.19 2.84 0.77 1.89 +divergent diverger ver 0.57 1.01 0.25 0.20 ind:pre:3p; +divergente divergent adj f s 0.43 2.23 0.02 0.00 +divergentes divergent adj f p 0.43 2.23 0.31 0.68 +divergents divergent adj m p 0.43 2.23 0.03 0.95 +divergeons diverger ver 0.57 1.01 0.02 0.00 ind:pre:1p; +diverger diverger ver 0.57 1.01 0.01 0.27 inf; +divergez diverger ver 0.57 1.01 0.01 0.00 ind:pre:2p; +divergions diverger ver 0.57 1.01 0.01 0.00 ind:imp:1p; +divergé diverger ver m s 0.57 1.01 0.06 0.07 par:pas; +divers divers adj_ind m p 7.28 52.77 3.60 11.69 +diverse divers adj f s 7.28 52.77 0.03 0.68 +diversement diversement adv 0.04 0.74 0.04 0.74 +diverses diverses adj_ind f p 3.08 8.04 3.08 8.04 +diversifiant diversifier ver 0.54 0.88 0.00 0.07 par:pre; +diversification diversification nom f s 0.14 0.14 0.14 0.14 +diversifie diversifier ver 0.54 0.88 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diversifient diversifier ver 0.54 0.88 0.04 0.14 ind:pre:3p; +diversifier diversifier ver 0.54 0.88 0.23 0.41 inf; +diversifié diversifier ver m s 0.54 0.88 0.05 0.07 par:pas; +diversifiée diversifier ver f s 0.54 0.88 0.06 0.07 par:pas; +diversifiées diversifier ver f p 0.54 0.88 0.03 0.07 par:pas; +diversifiés diversifier ver m p 0.54 0.88 0.05 0.00 par:pas; +diversion diversion nom f s 4.33 6.22 4.26 6.01 +diversions diversion nom f p 4.33 6.22 0.07 0.20 +diversité diversité nom f s 1.02 3.85 1.01 3.78 +diversités diversité nom f p 1.02 3.85 0.01 0.07 +diverti divertir ver m s 4.49 4.26 0.28 0.68 par:pas; +diverticule diverticule nom m s 0.03 0.00 0.03 0.00 +diverticulose diverticulose nom f s 0.04 0.00 0.04 0.00 +divertie divertir ver f s 4.49 4.26 0.08 0.00 par:pas; +divertimento divertimento nom m s 0.00 0.14 0.00 0.14 +divertir divertir ver 4.49 4.26 2.71 1.82 inf; +divertira divertir ver 4.49 4.26 0.01 0.07 ind:fut:3s; +divertirait divertir ver 4.49 4.26 0.02 0.00 cnd:pre:3s; +divertirent divertir ver 4.49 4.26 0.00 0.07 ind:pas:3p; +divertirons divertir ver 4.49 4.26 0.11 0.00 ind:fut:1p; +divertiront divertir ver 4.49 4.26 0.03 0.00 ind:fut:3p; +divertis divertir ver m p 4.49 4.26 0.45 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:1s;par:pas; +divertissaient divertir ver 4.49 4.26 0.02 0.20 ind:imp:3p; +divertissais divertir ver 4.49 4.26 0.01 0.14 ind:imp:1s; +divertissait divertir ver 4.49 4.26 0.03 0.27 ind:imp:3s; +divertissant divertissant adj m s 1.44 1.55 0.95 0.68 +divertissante divertissant adj f s 1.44 1.55 0.26 0.54 +divertissantes divertissant adj f p 1.44 1.55 0.04 0.34 +divertissants divertissant adj m p 1.44 1.55 0.19 0.00 +divertissement divertissement nom m s 4.21 5.47 3.67 3.38 +divertissements divertissement nom m p 4.21 5.47 0.55 2.09 +divertissent divertir ver 4.49 4.26 0.14 0.27 ind:pre:3p; +divertissez divertir ver 4.49 4.26 0.17 0.00 imp:pre:2p;ind:pre:2p; +divertissons divertir ver 4.49 4.26 0.00 0.07 imp:pre:1p; +divertit divertir ver 4.49 4.26 0.38 0.41 ind:pre:3s;ind:pas:3s; +dividende dividende nom m s 0.57 0.47 0.03 0.07 +dividendes dividende nom m p 0.57 0.47 0.55 0.41 +divin divin adj m s 26.55 24.93 10.01 10.14 +divination divination nom f s 0.56 1.08 0.54 1.01 +divinations divination nom f p 0.56 1.08 0.02 0.07 +divinatoire divinatoire adj f s 0.04 0.27 0.00 0.20 +divinatoires divinatoire adj p 0.04 0.27 0.04 0.07 +divinatrice divinateur adj f s 0.00 0.41 0.00 0.34 +divinatrices divinateur adj f p 0.00 0.41 0.00 0.07 +divine divin adj f s 26.55 24.93 14.00 11.76 +divinement divinement adv 1.14 1.28 1.14 1.28 +divines divin adj f p 26.55 24.93 1.42 2.03 +divinisaient diviniser ver 0.00 0.41 0.00 0.07 ind:imp:3p; +divinisant divinisant adj m s 0.00 0.07 0.00 0.07 +divinise diviniser ver 0.00 0.41 0.00 0.14 ind:pre:3s; +divinisez diviniser ver 0.00 0.41 0.00 0.07 ind:pre:2p; +divinisé diviniser ver m s 0.00 0.41 0.00 0.07 par:pas; +divinisée diviniser ver f s 0.00 0.41 0.00 0.07 par:pas; +divinité divinité nom f s 2.53 5.95 2.31 3.45 +divinités divinité nom f p 2.53 5.95 0.22 2.50 +divins divin adj m p 26.55 24.93 1.12 1.01 +divisa diviser ver 10.14 16.69 0.15 0.41 ind:pas:3s; +divisaient diviser ver 10.14 16.69 0.03 0.54 ind:imp:3p; +divisais diviser ver 10.14 16.69 0.00 0.14 ind:imp:1s; +divisait diviser ver 10.14 16.69 0.17 1.62 ind:imp:3s; +divisant diviser ver 10.14 16.69 0.30 0.61 par:pre; +divise diviser ver 10.14 16.69 1.73 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divisent diviser ver 10.14 16.69 0.70 1.01 ind:pre:3p; +diviser diviser ver 10.14 16.69 2.11 2.36 inf; +divisera diviser ver 10.14 16.69 0.14 0.00 ind:fut:3s; +diviserais diviser ver 10.14 16.69 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +diviserait diviser ver 10.14 16.69 0.02 0.14 cnd:pre:3s; +divises diviser ver 10.14 16.69 0.20 0.07 ind:pre:2s; +diviseur diviseur nom m s 0.01 0.20 0.01 0.14 +diviseuse diviseur nom f s 0.01 0.20 0.00 0.07 +divisez diviser ver 10.14 16.69 0.30 0.00 imp:pre:2p;ind:pre:2p; +divisible divisible adj s 0.23 0.27 0.17 0.27 +divisibles divisible adj m p 0.23 0.27 0.06 0.00 +division division nom f s 13.07 43.51 11.60 29.73 +divisionnaire divisionnaire nom s 2.25 1.89 2.25 1.76 +divisionnaires divisionnaire adj m p 1.03 3.45 0.01 0.07 +divisionnisme divisionnisme nom m s 0.00 0.07 0.00 0.07 +divisions division nom f p 13.07 43.51 1.48 13.78 +divisons diviser ver 10.14 16.69 0.10 0.07 imp:pre:1p;ind:pre:1p; +divisèrent diviser ver 10.14 16.69 0.00 0.20 ind:pas:3p; +divisé diviser ver m s 10.14 16.69 1.85 2.91 par:pas; +divisée diviser ver f s 10.14 16.69 1.17 2.16 par:pas; +divisées diviser ver f p 10.14 16.69 0.23 0.27 par:pas; +divisés diviser ver m p 10.14 16.69 0.84 1.35 par:pas; +divorce divorce nom m s 23.23 11.15 21.64 10.54 +divorcent divorcer ver 27.50 8.11 0.67 0.61 ind:pre:3p; +divorcer divorcer ver 27.50 8.11 12.03 2.16 inf; +divorcera divorcer ver 27.50 8.11 0.32 0.14 ind:fut:3s; +divorcerai divorcer ver 27.50 8.11 0.41 0.14 ind:fut:1s; +divorcerais divorcer ver 27.50 8.11 0.30 0.20 cnd:pre:1s;cnd:pre:2s; +divorcerait divorcer ver 27.50 8.11 0.07 0.00 cnd:pre:3s; +divorceras divorcer ver 27.50 8.11 0.02 0.00 ind:fut:2s; +divorcerez divorcer ver 27.50 8.11 0.02 0.14 ind:fut:2p; +divorceriez divorcer ver 27.50 8.11 0.01 0.00 cnd:pre:2p; +divorcerons divorcer ver 27.50 8.11 0.00 0.07 ind:fut:1p; +divorceront divorcer ver 27.50 8.11 0.10 0.07 ind:fut:3p; +divorces divorce nom m p 23.23 11.15 1.58 0.61 +divorcez divorcer ver 27.50 8.11 0.67 0.00 imp:pre:2p;ind:pre:2p; +divorciez divorcer ver 27.50 8.11 0.04 0.00 ind:imp:2p; +divorcions divorcer ver 27.50 8.11 0.10 0.14 ind:imp:1p; +divorcèrent divorcer ver 27.50 8.11 0.02 0.14 ind:pas:3p; +divorcé divorcer ver m s 27.50 8.11 6.04 2.23 par:pas; +divorcée divorcer ver f s 27.50 8.11 1.58 0.47 par:pas; +divorcées divorcé adj f p 1.64 0.95 0.14 0.07 +divorcés divorcer ver m p 27.50 8.11 1.50 0.07 par:pas; +divorça divorcer ver 27.50 8.11 0.14 0.07 ind:pas:3s; +divorçaient divorcer ver 27.50 8.11 0.04 0.07 ind:imp:3p; +divorçait divorcer ver 27.50 8.11 0.12 0.27 ind:imp:3s; +divorçant divorcer ver 27.50 8.11 0.04 0.20 par:pre; +divorçons divorcer ver 27.50 8.11 0.48 0.14 imp:pre:1p;ind:pre:1p; +divulgation divulgation nom f s 0.33 0.61 0.33 0.61 +divulguait divulguer ver 2.48 1.96 0.00 0.20 ind:imp:3s; +divulguant divulguer ver 2.48 1.96 0.00 0.14 par:pre; +divulgue divulguer ver 2.48 1.96 0.27 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divulguer divulguer ver 2.48 1.96 1.06 0.95 inf; +divulguera divulguer ver 2.48 1.96 0.04 0.07 ind:fut:3s; +divulguez divulguer ver 2.48 1.96 0.09 0.00 imp:pre:2p;ind:pre:2p; +divulguons divulguer ver 2.48 1.96 0.05 0.00 imp:pre:1p;ind:pre:1p; +divulgué divulguer ver m s 2.48 1.96 0.71 0.34 par:pas; +divulguée divulguer ver f s 2.48 1.96 0.08 0.07 par:pas; +divulguées divulguer ver f p 2.48 1.96 0.06 0.00 par:pas; +divulgués divulguer ver m p 2.48 1.96 0.11 0.14 par:pas; +dix_cors dix_cors nom m 0.03 0.88 0.03 0.88 +dix_huit dix_huit adj_num 4.44 31.69 4.44 31.69 +dix_huitième dix_huitième nom s 0.16 0.27 0.16 0.27 +dix_neuf dix_neuf adj_num 2.11 10.54 2.11 10.54 +dix_neuvième dix_neuvième adj 0.15 1.22 0.15 1.22 +dix_sept dix_sept adj_num 3.69 19.59 3.69 19.59 +dix_septième dix_septième adj 0.22 1.22 0.22 1.22 +dix dix adj_num 118.29 209.86 118.29 209.86 +dixie dixie nom m s 1.40 0.00 1.40 0.00 +dixieland dixieland nom m s 0.14 0.00 0.14 0.00 +dixit dixit adj m s 0.54 0.68 0.54 0.68 +dixième dixième adj 1.76 2.77 1.73 2.70 +dixièmement dixièmement adv 0.02 0.00 0.02 0.00 +dixièmes dixième nom p 1.60 4.32 0.23 1.28 +dizain dizain nom m s 0.14 0.00 0.14 0.00 +dizaine dizaine nom f s 11.08 44.73 5.87 26.55 +dizaines dizaine nom f p 11.08 44.73 5.21 18.18 +djebel djebel nom m s 0.00 2.84 0.00 2.30 +djebels djebel nom m p 0.00 2.84 0.00 0.54 +djellaba djellaba nom f s 0.30 1.69 0.15 1.15 +djellabas djellaba nom f p 0.30 1.69 0.16 0.54 +djemââ djemââ nom f s 0.00 0.07 0.00 0.07 +djihad djihad nom m s 0.44 0.00 0.43 0.00 +djihads djihad nom m p 0.44 0.00 0.01 0.00 +djinn djinn nom m s 0.36 0.61 0.34 0.00 +djinns djinn nom m p 0.36 0.61 0.02 0.61 +dm dm adj_num 0.40 0.00 0.40 0.00 +dna dna nom m s 0.09 0.00 0.09 0.00 +do do nom m 16.66 3.78 16.66 3.78 +doña doña nom f s 2.44 0.00 2.44 0.00 +doberman doberman nom m s 1.03 0.95 0.69 0.34 +dobermans doberman nom m p 1.03 0.95 0.33 0.61 +doc doc nom m s 4.04 0.54 4.04 0.54 +doche doche nom f s 0.00 0.07 0.00 0.07 +docile docile adj s 2.12 9.66 1.68 7.43 +docilement docilement adv 0.07 5.54 0.07 5.54 +dociles docile adj p 2.12 9.66 0.44 2.23 +docilité docilité nom f s 0.14 3.85 0.14 3.85 +dock dock nom m s 3.10 3.99 0.92 0.81 +docker docker nom m s 0.90 3.18 0.39 0.68 +dockers docker nom m p 0.90 3.18 0.51 2.50 +docks dock nom m p 3.10 3.99 2.18 3.18 +docte docte adj s 0.17 1.89 0.17 1.42 +doctement doctement adv 0.00 0.54 0.00 0.54 +doctes docte adj m p 0.17 1.89 0.01 0.47 +docteur docteur nom m s 233.86 87.36 223.48 83.11 +docteurs docteur nom m p 233.86 87.36 9.72 3.18 +doctissime doctissime adj m s 0.03 0.00 0.03 0.00 +doctoral doctoral adj m s 0.00 0.81 0.00 0.54 +doctorale doctoral adj f s 0.00 0.81 0.00 0.27 +doctorat doctorat nom m s 4.07 1.82 3.76 1.76 +doctorats doctorat nom m p 4.07 1.82 0.31 0.07 +doctoresse docteur nom f s 233.86 87.36 0.66 1.08 +doctrina doctriner ver 0.00 0.07 0.00 0.07 ind:pas:3s; +doctrinaire doctrinaire adj s 0.02 0.14 0.02 0.14 +doctrinaires doctrinaire nom p 0.00 0.27 0.00 0.07 +doctrinal doctrinal adj m s 0.01 0.47 0.00 0.27 +doctrinale doctrinal adj f s 0.01 0.47 0.01 0.14 +doctrinales doctrinal adj f p 0.01 0.47 0.00 0.07 +doctrine doctrine nom f s 1.81 7.77 1.54 5.68 +doctrines doctrine nom f p 1.81 7.77 0.27 2.09 +docudrame docudrame nom m s 0.03 0.00 0.03 0.00 +document document nom m s 24.86 16.01 9.34 6.69 +documenta documenter ver 1.53 0.95 0.01 0.14 ind:pas:3s; +documentaire documentaire nom m s 4.88 0.95 4.13 0.74 +documentaires documentaire nom m p 4.88 0.95 0.75 0.20 +documentais documenter ver 1.53 0.95 0.01 0.00 ind:imp:1s; +documentait documenter ver 1.53 0.95 0.04 0.00 ind:imp:3s; +documentaliste documentaliste nom s 0.29 0.27 0.27 0.20 +documentalistes documentaliste nom p 0.29 0.27 0.03 0.07 +documentant documenter ver 1.53 0.95 0.05 0.07 par:pre; +documentariste documentariste nom s 0.04 0.00 0.03 0.00 +documentaristes documentariste nom p 0.04 0.00 0.01 0.00 +documentation documentation nom f s 1.44 2.43 1.43 2.23 +documentations documentation nom f p 1.44 2.43 0.01 0.20 +documente documenter ver 1.53 0.95 0.23 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +documentent documenter ver 1.53 0.95 0.01 0.07 ind:pre:3p; +documenter documenter ver 1.53 0.95 0.85 0.47 inf; +documenterai documenter ver 1.53 0.95 0.00 0.07 ind:fut:1s; +documentes documenter ver 1.53 0.95 0.00 0.07 ind:pre:2s; +documents document nom m p 24.86 16.01 15.53 9.32 +documenté documenter ver m s 1.53 0.95 0.22 0.07 par:pas; +documentée documenté adj f s 0.39 0.07 0.15 0.00 +documentés documenter ver m p 1.53 0.95 0.05 0.00 par:pas; +dodelinaient dodeliner ver 0.03 2.77 0.00 0.07 ind:imp:3p; +dodelinais dodeliner ver 0.03 2.77 0.01 0.07 ind:imp:1s; +dodelinait dodeliner ver 0.03 2.77 0.00 0.68 ind:imp:3s; +dodelinant dodeliner ver 0.03 2.77 0.01 1.01 par:pre; +dodelinante dodelinant adj f s 0.01 0.27 0.00 0.07 +dodelinantes dodelinant adj f p 0.01 0.27 0.00 0.07 +dodeline dodeliner ver 0.03 2.77 0.01 0.41 imp:pre:2s;ind:pre:3s; +dodelinent dodeliner ver 0.03 2.77 0.00 0.14 ind:pre:3p; +dodeliner dodeliner ver 0.03 2.77 0.00 0.27 inf; +dodelinèrent dodeliner ver 0.03 2.77 0.00 0.07 ind:pas:3p; +dodeliné dodeliner ver m s 0.03 2.77 0.00 0.07 par:pas; +dodine dodiner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +dodo dodo nom m s 7.53 2.50 7.52 2.43 +dodos dodo nom m p 7.53 2.50 0.01 0.07 +dodu dodu adj m s 0.89 5.00 0.34 1.89 +dodécagone dodécagone nom m s 0.00 0.07 0.00 0.07 +dodécaphoniste dodécaphoniste nom s 0.00 0.07 0.00 0.07 +dodécaèdre dodécaèdre nom m s 0.03 0.14 0.03 0.14 +dodue dodu adj f s 0.89 5.00 0.13 1.42 +dodues dodu adj f p 0.89 5.00 0.20 0.88 +dodus dodu adj m p 0.89 5.00 0.23 0.81 +dog_cart dog_cart nom m s 0.04 0.00 0.04 0.00 +dogaresse dogaresse nom f s 0.00 0.14 0.00 0.07 +dogaresses dogaresse nom f p 0.00 0.14 0.00 0.07 +doge doge nom m s 0.53 3.45 0.41 1.89 +doges doge nom m p 0.53 3.45 0.11 1.55 +dogger dogger nom m s 0.14 0.00 0.14 0.00 +dogmatique dogmatique adj s 0.17 1.01 0.03 0.61 +dogmatiques dogmatique adj p 0.17 1.01 0.14 0.41 +dogmatisme dogmatisme nom m s 0.10 0.34 0.10 0.34 +dogme dogme nom m s 0.63 2.77 0.49 1.35 +dogmes dogme nom m p 0.63 2.77 0.14 1.42 +dogue dogue nom m s 0.14 1.42 0.14 0.81 +dogues dogue nom m p 0.14 1.42 0.00 0.61 +doguin doguin nom m s 0.00 0.07 0.00 0.07 +doigt doigt nom m s 85.69 256.15 39.83 80.34 +doigta doigter ver 0.10 0.07 0.00 0.07 ind:pas:3s; +doigtait doigter ver 0.10 0.07 0.01 0.00 ind:imp:3s; +doigter doigter ver 0.10 0.07 0.04 0.00 inf; +doigtier doigtier nom m s 0.00 0.20 0.00 0.20 +doigts doigt nom m p 85.69 256.15 45.86 175.81 +doigté doigté nom m s 1.00 1.15 1.00 1.15 +dois devoir ver_sup 3232.80 1318.24 894.67 102.03 imp:pre:2s;ind:pre:1s;ind:pre:2s; +doit devoir ver_sup 3232.80 1318.24 654.84 224.59 ind:pre:3s; +doive devoir ver_sup 3232.80 1318.24 5.50 4.32 sub:pre:1s;sub:pre:3s; +doivent devoir ver_sup 3232.80 1318.24 85.42 45.95 ind:pre:3p;sub:pre:3p; +doives devoir ver_sup 3232.80 1318.24 1.25 0.14 sub:pre:2s; +dojo dojo nom m s 0.93 0.34 0.93 0.34 +dol dol nom m s 0.34 0.07 0.34 0.07 +dolby dolby nom m s 0.05 0.00 0.05 0.00 +dolce dolce adv 1.53 0.74 1.53 0.74 +dolent dolent adj m s 0.27 2.36 0.00 0.68 +dolente dolent adj f s 0.27 2.36 0.27 1.35 +dolentes dolent adj f p 0.27 2.36 0.00 0.14 +dolents dolent adj m p 0.27 2.36 0.00 0.20 +dolichocéphale dolichocéphale adj m s 0.10 0.20 0.10 0.00 +dolichocéphales dolichocéphale adj p 0.10 0.20 0.00 0.20 +dolichocéphalie dolichocéphalie nom f s 0.00 0.07 0.00 0.07 +doline doline nom f s 0.01 0.00 0.01 0.00 +dolique dolique nom m s 0.01 0.00 0.01 0.00 +dollar dollar nom m s 134.10 16.96 13.89 3.85 +dollars dollar nom m p 134.10 16.96 120.22 13.11 +dolman dolman nom m s 0.00 1.15 0.00 0.88 +dolmans dolman nom m p 0.00 1.15 0.00 0.27 +dolmen dolmen nom m s 0.01 1.89 0.00 1.15 +dolmens dolmen nom m p 0.01 1.89 0.01 0.74 +dolomies dolomie nom f p 0.14 0.07 0.14 0.07 +dolomite dolomite nom f s 0.08 0.00 0.08 0.00 +dolorisme dolorisme nom m s 0.00 0.07 0.00 0.07 +doloriste doloriste nom s 0.00 0.07 0.00 0.07 +doléance doléance nom f s 0.46 1.76 0.00 0.14 +doléances doléance nom f p 0.46 1.76 0.46 1.62 +dom dom nom m s 0.39 0.34 0.39 0.34 +domaine domaine nom m s 21.57 46.22 19.21 37.91 +domaines domaine nom m p 21.57 46.22 2.37 8.31 +domanial domanial adj m s 0.00 0.47 0.00 0.14 +domaniale domanial adj f s 0.00 0.47 0.00 0.27 +domaniaux domanial adj m p 0.00 0.47 0.00 0.07 +domestication domestication nom f s 0.02 0.47 0.02 0.47 +domesticité domesticité nom f s 0.18 0.88 0.18 0.88 +domestiqua domestiquer ver 0.41 3.58 0.00 0.14 ind:pas:3s; +domestiquait domestiquer ver 0.41 3.58 0.00 0.07 ind:imp:3s; +domestique domestique nom s 10.09 18.51 4.57 7.23 +domestiquement domestiquement adv 0.00 0.07 0.00 0.07 +domestiquer domestiquer ver 0.41 3.58 0.07 0.88 inf; +domestiques domestique nom p 10.09 18.51 5.52 11.28 +domestiquez domestiquer ver 0.41 3.58 0.00 0.07 imp:pre:2p; +domestiqué domestiquer ver m s 0.41 3.58 0.12 0.68 par:pas; +domestiquée domestiquer ver f s 0.41 3.58 0.04 0.81 par:pas; +domestiquées domestiquer ver f p 0.41 3.58 0.01 0.14 par:pas; +domestiqués domestiquer ver m p 0.41 3.58 0.06 0.68 par:pas; +domicile domicile nom m s 11.69 15.34 11.60 14.93 +domiciles domicile nom m p 11.69 15.34 0.09 0.41 +domiciliaires domiciliaire adj f p 0.00 0.20 0.00 0.20 +domiciliation domiciliation nom f s 0.00 0.07 0.00 0.07 +domicilier domicilier ver 0.38 0.74 0.00 0.14 inf; +domicilié domicilié adj m s 0.53 0.07 0.52 0.00 +domiciliée domicilier ver f s 0.38 0.74 0.14 0.27 par:pas; +domiciliés domicilié adj m p 0.53 0.07 0.01 0.00 +domina dominer ver 15.66 50.61 0.27 1.08 ind:pas:3s; +dominaient dominer ver 15.66 50.61 0.02 2.57 ind:imp:3p; +dominais dominer ver 15.66 50.61 0.02 0.34 ind:imp:1s;ind:imp:2s; +dominait dominer ver 15.66 50.61 0.42 9.32 ind:imp:3s; +dominance dominance nom f s 0.14 0.07 0.14 0.07 +dominant dominant adj m s 2.34 3.85 1.41 1.69 +dominante dominant adj f s 2.34 3.85 0.68 1.15 +dominantes dominant adj f p 2.34 3.85 0.04 0.54 +dominants dominant adj m p 2.34 3.85 0.22 0.47 +dominateur dominateur adj m s 0.97 1.49 0.53 0.95 +dominateurs dominateur adj m p 0.97 1.49 0.01 0.14 +domination domination nom f s 2.42 5.88 2.39 5.68 +dominations domination nom f p 2.42 5.88 0.04 0.20 +dominatrice dominateur adj f s 0.97 1.49 0.42 0.34 +dominatrices dominatrice nom f p 0.03 0.00 0.03 0.00 +domine dominer ver 15.66 50.61 4.04 9.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dominent dominer ver 15.66 50.61 0.73 3.11 ind:pre:3p; +dominer dominer ver 15.66 50.61 5.07 10.34 inf; +dominera dominer ver 15.66 50.61 0.59 0.27 ind:fut:3s; +dominerai dominer ver 15.66 50.61 0.17 0.00 ind:fut:1s; +domineraient dominer ver 15.66 50.61 0.00 0.07 cnd:pre:3p; +dominerais dominer ver 15.66 50.61 0.01 0.27 cnd:pre:1s;cnd:pre:2s; +dominerait dominer ver 15.66 50.61 0.05 0.07 cnd:pre:3s; +domineras dominer ver 15.66 50.61 0.11 0.00 ind:fut:2s; +domineriez dominer ver 15.66 50.61 0.01 0.00 cnd:pre:2p; +dominerions dominer ver 15.66 50.61 0.00 0.14 cnd:pre:1p; +dominerons dominer ver 15.66 50.61 0.07 0.07 ind:fut:1p; +domineront dominer ver 15.66 50.61 0.16 0.14 ind:fut:3p; +domines dominer ver 15.66 50.61 0.26 0.27 ind:pre:2s; +dominez dominer ver 15.66 50.61 0.11 0.07 imp:pre:2p;ind:pre:2p; +dominicain dominicain nom m s 0.58 2.57 0.23 0.61 +dominicaine dominicain adj f s 0.19 0.95 0.12 0.47 +dominicaines dominicain nom f p 0.58 2.57 0.03 0.07 +dominicains dominicain nom m p 0.58 2.57 0.28 1.89 +dominical dominical adj m s 0.31 2.97 0.10 1.15 +dominicale dominical adj f s 0.31 2.97 0.19 1.08 +dominicales dominical adj f p 0.31 2.97 0.01 0.41 +dominicaux dominical adj m p 0.31 2.97 0.01 0.34 +dominiez dominer ver 15.66 50.61 0.02 0.00 ind:imp:2p; +dominion dominion nom m s 0.34 0.54 0.34 0.27 +dominions dominer ver 15.66 50.61 0.01 0.41 ind:imp:1p; +domino domino nom m s 1.35 3.18 0.35 0.41 +dominons dominer ver 15.66 50.61 0.05 0.14 imp:pre:1p;ind:pre:1p; +dominos domino nom m p 1.35 3.18 0.99 2.77 +dominât dominer ver 15.66 50.61 0.00 0.07 sub:imp:3s; +dominèrent dominer ver 15.66 50.61 0.01 0.07 ind:pas:3p; +dominé dominer ver m s 15.66 50.61 1.45 3.85 par:pas; +dominée dominer ver f s 15.66 50.61 1.23 1.89 par:pas; +dominées dominer ver f p 15.66 50.61 0.15 1.08 par:pas; +dominés dominer ver m p 15.66 50.61 0.32 1.28 par:pas; +dommage dommage ono 25.88 5.34 25.88 5.34 +dommageable dommageable adj f s 0.12 0.20 0.10 0.07 +dommageables dommageable adj f p 0.12 0.20 0.02 0.14 +dommages_intérêts dommages_intérêts nom m p 0.04 0.00 0.04 0.00 +dommages dommage nom m p 65.59 26.15 6.16 2.09 +domotique domotique nom f s 0.02 0.00 0.02 0.00 +dompta dompter ver 2.14 3.24 0.00 0.20 ind:pas:3s; +domptage domptage nom m s 0.00 0.14 0.00 0.14 +domptai dompter ver 2.14 3.24 0.00 0.07 ind:pas:1s; +domptait dompter ver 2.14 3.24 0.00 0.07 ind:imp:3s; +dompte dompter ver 2.14 3.24 0.26 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +domptent dompter ver 2.14 3.24 0.00 0.07 ind:pre:3p; +dompter dompter ver 2.14 3.24 1.00 1.69 inf; +dompterai dompter ver 2.14 3.24 0.00 0.07 ind:fut:1s; +dompterait dompter ver 2.14 3.24 0.00 0.07 cnd:pre:3s; +dompteur dompteur nom m s 2.18 2.57 1.11 1.89 +dompteurs dompteur nom m p 2.18 2.57 0.16 0.14 +dompteuse dompteur nom f s 2.18 2.57 0.92 0.41 +dompteuses dompteur nom f p 2.18 2.57 0.00 0.14 +domptez dompter ver 2.14 3.24 0.04 0.07 imp:pre:2p; +dompté dompter ver m s 2.14 3.24 0.64 0.34 par:pas; +domptée dompter ver f s 2.14 3.24 0.19 0.20 par:pas; +domptées dompté adj f p 0.15 0.20 0.00 0.14 +domptés dompté adj m p 0.15 0.20 0.02 0.00 +don don nom m s 43.78 39.86 35.47 30.27 +dona dona nom f s 0.50 1.15 0.50 1.15 +donateur donateur nom m s 0.89 1.69 0.36 0.81 +donateurs donateur nom m p 0.89 1.69 0.50 0.61 +donation donation nom f s 1.89 0.74 1.23 0.54 +donations donation nom f p 1.89 0.74 0.66 0.20 +donatrice donateur nom f s 0.89 1.69 0.04 0.27 +donc donc con 612.51 445.88 612.51 445.88 +dondaine dondaine nom f s 0.00 0.14 0.00 0.07 +dondaines dondaine nom f p 0.00 0.14 0.00 0.07 +dondon dondon nom f s 0.23 0.47 0.20 0.34 +dondons dondon nom f p 0.23 0.47 0.03 0.14 +dong dong ono 0.97 0.95 0.97 0.95 +donjon donjon nom m s 3.14 3.31 2.94 2.84 +donjons donjon nom m p 3.14 3.31 0.20 0.47 +donjuanesque donjuanesque adj s 0.00 0.47 0.00 0.47 +donjuanisme donjuanisme nom m s 0.00 0.54 0.00 0.54 +donna donner ver 1209.58 896.01 6.28 46.28 ind:pas:3s; +donnai donner ver 1209.58 896.01 0.32 5.41 ind:pas:1s; +donnaient donner ver 1209.58 896.01 2.49 35.07 ind:imp:3p; +donnais donner ver 1209.58 896.01 5.91 6.89 ind:imp:1s;ind:imp:2s; +donnait donner ver 1209.58 896.01 15.97 123.24 ind:imp:3s; +donnant_donnant donnant_donnant adv 0.73 0.41 0.73 0.41 +donnant donner ver 1209.58 896.01 7.04 32.57 par:pre; +donnas donner ver 1209.58 896.01 0.04 0.00 ind:pas:2s; +donnassent donner ver 1209.58 896.01 0.00 0.14 sub:imp:3p; +donne donner ver 1209.58 896.01 401.06 149.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +donnent donner ver 1209.58 896.01 19.75 26.28 ind:pre:3p;sub:pre:3p; +donner donner ver 1209.58 896.01 233.21 216.55 inf;;inf;;inf;;inf;;inf;;inf;; +donnera donner ver 1209.58 896.01 24.60 8.99 ind:fut:3s; +donnerai donner ver 1209.58 896.01 30.70 6.15 ind:fut:1s; +donneraient donner ver 1209.58 896.01 1.10 2.03 cnd:pre:3p; +donnerais donner ver 1209.58 896.01 11.18 5.68 cnd:pre:1s;cnd:pre:2s; +donnerait donner ver 1209.58 896.01 6.20 13.31 cnd:pre:3s; +donneras donner ver 1209.58 896.01 5.49 1.82 ind:fut:2s; +donnerez donner ver 1209.58 896.01 4.31 1.69 ind:fut:2p; +donneriez donner ver 1209.58 896.01 1.05 0.34 cnd:pre:2p; +donnerions donner ver 1209.58 896.01 0.05 0.14 cnd:pre:1p; +donnerons donner ver 1209.58 896.01 2.96 0.61 ind:fut:1p; +donneront donner ver 1209.58 896.01 3.68 1.89 ind:fut:3p; +donnes donner ver 1209.58 896.01 34.32 5.34 ind:pre:1p;ind:pre:2s;sub:pre:2s; +donneur donneur nom m s 5.86 6.76 4.85 5.27 +donneurs donneur nom m p 5.86 6.76 0.84 0.95 +donneuse donneur adj f s 0.91 0.68 0.23 0.34 +donneuses donneuse nom f p 0.01 0.00 0.01 0.00 +donnez donner ver 1209.58 896.01 118.36 13.65 imp:pre:2p;ind:pre:2p; +donniez donner ver 1209.58 896.01 3.04 1.28 ind:imp:2p;sub:pre:2p; +donnions donner ver 1209.58 896.01 0.79 1.69 ind:imp:1p;sub:pre:1p; +donnâmes donner ver 1209.58 896.01 0.00 0.34 ind:pas:1p; +donnons donner ver 1209.58 896.01 6.66 1.96 imp:pre:1p;ind:pre:1p; +donnât donner ver 1209.58 896.01 0.02 3.38 sub:imp:3s; +donnèrent donner ver 1209.58 896.01 0.75 4.59 ind:pas:3p; +donné donner ver m s 1209.58 896.01 234.66 148.65 par:pas;par:pas;par:pas;par:pas; +donnée donner ver f s 1209.58 896.01 16.55 18.92 par:pas; +données donnée nom f p 20.92 6.89 20.05 5.41 +donnés donner ver m p 1209.58 896.01 7.06 6.82 par:pas; +donquichottesque donquichottesque adj f s 0.00 0.20 0.00 0.14 +donquichottesques donquichottesque adj f p 0.00 0.20 0.00 0.07 +donquichottisme donquichottisme nom m s 0.01 0.00 0.01 0.00 +dons don nom m p 43.78 39.86 8.31 9.59 +dont dont pro_rel 223.41 960.34 219.21 926.42 +donzelle donzelle nom f s 0.48 1.22 0.41 0.81 +donzelles donzelle nom f p 0.48 1.22 0.07 0.41 +dopage dopage nom m s 0.10 0.00 0.10 0.00 +dopais doper ver 1.33 0.54 0.01 0.00 ind:imp:1s; +dopait doper ver 1.33 0.54 0.04 0.00 ind:imp:3s; +dopamine dopamine nom f s 1.10 0.00 1.10 0.00 +dopant dopant adj m s 0.18 0.00 0.15 0.00 +dopants dopant adj m p 0.18 0.00 0.04 0.00 +dope dope nom s 7.47 2.03 7.47 1.96 +doper doper ver 1.33 0.54 0.35 0.00 inf; +dopes doper ver 1.33 0.54 0.05 0.00 ind:pre:2s; +dopez doper ver 1.33 0.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +doping doping nom m s 0.01 0.34 0.01 0.34 +doppler doppler nom m s 0.01 0.00 0.01 0.00 +dopé doper ver m s 1.33 0.54 0.46 0.27 par:pas; +dopée doper ver f s 1.33 0.54 0.05 0.00 par:pas; +dopés doper ver m p 1.33 0.54 0.06 0.14 par:pas; +dora dorer ver 2.66 15.14 0.00 0.07 ind:pas:3s; +dorade dorade nom f s 0.62 0.47 0.22 0.14 +dorades dorade nom f p 0.62 0.47 0.40 0.34 +dorage dorage nom m s 0.00 0.07 0.00 0.07 +doraient dorer ver 2.66 15.14 0.00 0.07 ind:imp:3p; +dorais dorer ver 2.66 15.14 0.01 0.07 ind:imp:1s; +dorait dorer ver 2.66 15.14 0.00 0.68 ind:imp:3s; +dorant dorer ver 2.66 15.14 0.15 0.20 par:pre; +dorcades dorcade nom f p 0.00 0.07 0.00 0.07 +dore dorer ver 2.66 15.14 0.30 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dorent dorer ver 2.66 15.14 0.01 0.20 ind:pre:3p; +dorer dorer ver 2.66 15.14 0.22 1.22 inf; +dorera dorer ver 2.66 15.14 0.00 0.07 ind:fut:3s; +doreront dorer ver 2.66 15.14 0.01 0.00 ind:fut:3p; +doreurs doreur nom m p 0.00 0.07 0.00 0.07 +doriennes dorien adj f p 0.00 0.14 0.00 0.07 +doriens dorien adj m p 0.00 0.14 0.00 0.07 +dorique dorique adj s 0.01 0.47 0.01 0.14 +doriques dorique adj p 0.01 0.47 0.00 0.34 +dorlotait dorloter ver 1.56 2.43 0.01 0.27 ind:imp:3s; +dorlotant dorloter ver 1.56 2.43 0.02 0.07 par:pre; +dorlote dorloter ver 1.56 2.43 0.28 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dorlotent dorloter ver 1.56 2.43 0.03 0.07 ind:pre:3p; +dorloter dorloter ver 1.56 2.43 0.79 1.08 inf; +dorloterai dorloter ver 1.56 2.43 0.01 0.00 ind:fut:1s; +dorloterons dorloter ver 1.56 2.43 0.00 0.07 ind:fut:1p; +dorlotez dorloter ver 1.56 2.43 0.05 0.00 imp:pre:2p;ind:pre:2p; +dorloté dorloter ver m s 1.56 2.43 0.15 0.41 par:pas; +dorlotée dorloter ver f s 1.56 2.43 0.18 0.00 par:pas; +dorlotées dorloter ver f p 1.56 2.43 0.00 0.07 par:pas; +dorlotés dorloter ver m p 1.56 2.43 0.04 0.07 par:pas; +dormîmes dormir ver 392.09 259.05 0.00 0.34 ind:pas:1p; +dormît dormir ver 392.09 259.05 0.00 0.14 sub:imp:3s; +dormaient dormir ver 392.09 259.05 1.45 10.41 ind:imp:3p; +dormais dormir ver 392.09 259.05 14.36 7.50 ind:imp:1s;ind:imp:2s; +dormait dormir ver 392.09 259.05 9.72 41.89 ind:imp:3s; +dormance dormance nom f s 0.03 0.07 0.03 0.07 +dormant dormir ver 392.09 259.05 3.16 5.47 par:pre; +dormante dormant adj f s 1.62 4.26 0.07 1.76 +dormantes dormant adj f p 1.62 4.26 0.17 0.27 +dormants dormant adj m p 1.62 4.26 0.18 0.07 +dorme dormir ver 392.09 259.05 4.13 3.18 sub:pre:1s;sub:pre:3s; +dorment dormir ver 392.09 259.05 10.48 10.27 ind:pre:3p;sub:pre:3p; +dormes dormir ver 392.09 259.05 2.23 0.41 sub:pre:2s; +dormeur dormeur nom m s 1.21 5.95 0.82 3.11 +dormeurs dormeur nom m p 1.21 5.95 0.16 1.96 +dormeuse dormeur nom f s 1.21 5.95 0.23 0.54 +dormeuses dormeur nom f p 1.21 5.95 0.00 0.34 +dormez dormir ver 392.09 259.05 12.35 2.84 imp:pre:2p;ind:pre:2p; +dormi dormir ver m s 392.09 259.05 41.25 26.49 par:pas; +dormiez dormir ver 392.09 259.05 2.40 0.95 ind:imp:2p; +dormions dormir ver 392.09 259.05 0.41 1.55 ind:imp:1p; +dormir dormir ver 392.09 259.05 160.77 95.20 inf; +dormira dormir ver 392.09 259.05 4.37 1.28 ind:fut:3s; +dormirai dormir ver 392.09 259.05 3.62 1.28 ind:fut:1s; +dormiraient dormir ver 392.09 259.05 0.17 0.14 cnd:pre:3p; +dormirais dormir ver 392.09 259.05 0.87 0.74 cnd:pre:1s;cnd:pre:2s; +dormirait dormir ver 392.09 259.05 0.35 1.42 cnd:pre:3s; +dormiras dormir ver 392.09 259.05 3.39 0.34 ind:fut:2s; +dormirent dormir ver 392.09 259.05 0.14 0.41 ind:pas:3p; +dormirez dormir ver 392.09 259.05 2.22 0.54 ind:fut:2p; +dormiriez dormir ver 392.09 259.05 0.03 0.07 cnd:pre:2p; +dormirions dormir ver 392.09 259.05 0.01 0.27 cnd:pre:1p; +dormirons dormir ver 392.09 259.05 0.28 0.34 ind:fut:1p; +dormiront dormir ver 392.09 259.05 0.70 0.14 ind:fut:3p; +dormis dormir ver 392.09 259.05 0.47 1.69 ind:pas:1s;ind:pas:2s; +dormit dormir ver 392.09 259.05 0.29 3.11 ind:pas:3s; +dormitif dormitif adj m s 0.03 0.20 0.03 0.20 +dormition dormition nom f s 0.00 0.14 0.00 0.14 +dormons dormir ver 392.09 259.05 2.38 0.81 imp:pre:1p;ind:pre:1p; +dors dormir ver 392.09 259.05 55.03 13.92 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dorsal dorsal adj m s 1.12 0.88 0.17 0.07 +dorsale dorsal adj f s 1.12 0.88 0.79 0.54 +dorsales dorsal adj f p 1.12 0.88 0.04 0.20 +dorsaux dorsal adj m p 1.12 0.88 0.11 0.07 +dort dormir ver 392.09 259.05 55.05 25.95 ind:pre:3s; +dortoir dortoir nom m s 5.29 12.36 4.83 9.32 +dortoirs dortoir nom m p 5.29 12.36 0.46 3.04 +doré doré adj m s 7.33 50.47 2.62 15.74 +dorée doré adj f s 7.33 50.47 2.31 16.42 +dorées doré adj f p 7.33 50.47 0.87 8.45 +dorénavant dorénavant adv 7.20 6.89 7.20 6.89 +dorure dorure nom f s 0.22 3.99 0.07 0.95 +dorures dorure nom f p 0.22 3.99 0.15 3.04 +dorés doré adj m p 7.33 50.47 1.53 9.86 +doryphore doryphore nom m s 0.01 0.81 0.01 0.34 +doryphores doryphore nom m p 0.01 0.81 0.00 0.47 +dos_d_âne dos_d_âne nom m 0.01 0.34 0.01 0.34 +dos dos nom m 100.34 213.99 100.34 213.99 +dosage dosage nom m s 1.89 1.69 1.67 1.62 +dosages dosage nom m p 1.89 1.69 0.22 0.07 +dosaient doser ver 0.60 2.91 0.00 0.07 ind:imp:3p; +dosais doser ver 0.60 2.91 0.00 0.07 ind:imp:1s; +dosait doser ver 0.60 2.91 0.00 0.07 ind:imp:3s; +dosant doser ver 0.60 2.91 0.00 0.34 par:pre; +dose dose nom f s 18.44 12.77 14.23 9.32 +dosent doser ver 0.60 2.91 0.00 0.07 ind:pre:3p; +doser doser ver 0.60 2.91 0.13 0.95 inf; +doses dose nom f p 18.44 12.77 4.21 3.45 +doseur doseur nom m s 0.19 0.14 0.18 0.07 +doseurs doseur nom m p 0.19 0.14 0.01 0.07 +dosimètre dosimètre nom m s 0.03 0.00 0.03 0.00 +dossard dossard nom m s 0.16 0.54 0.14 0.47 +dossards dossard nom m p 0.16 0.54 0.01 0.07 +dosseret dosseret nom m s 0.00 0.07 0.00 0.07 +dossier dossier nom m s 78.91 49.12 57.20 35.14 +dossiers dossier nom m p 78.91 49.12 21.71 13.99 +dossière dossière nom f s 0.00 0.27 0.00 0.20 +dossières dossière nom f p 0.00 0.27 0.00 0.07 +dostoïevskiens dostoïevskien adj m p 0.00 0.07 0.00 0.07 +dosé doser ver m s 0.60 2.91 0.13 0.27 par:pas; +dosée doser ver f s 0.60 2.91 0.01 0.27 par:pas; +dosées doser ver f p 0.60 2.91 0.00 0.27 par:pas; +dosés doser ver m p 0.60 2.91 0.03 0.34 par:pas; +dot dot nom f s 4.73 4.59 4.66 4.32 +dota doter ver 4.08 8.99 0.00 0.14 ind:pas:3s; +dotaient doter ver 4.08 8.99 0.00 0.07 ind:imp:3p; +dotait doter ver 4.08 8.99 0.00 0.68 ind:imp:3s; +dotant doter ver 4.08 8.99 0.01 0.20 par:pre; +dotation dotation nom f s 0.12 0.41 0.12 0.41 +dote doter ver 4.08 8.99 0.23 0.20 ind:pre:1s;ind:pre:3s; +doter doter ver 4.08 8.99 0.34 0.81 inf; +dots dot nom f p 4.73 4.59 0.07 0.27 +doté doter ver m s 4.08 8.99 1.82 2.97 par:pas; +dotée doter ver f s 4.08 8.99 0.99 2.09 par:pas; +dotées doter ver f p 4.08 8.99 0.08 0.81 par:pas; +dotés doter ver m p 4.08 8.99 0.61 1.01 par:pas; +douaire douaire nom m s 0.01 0.07 0.01 0.07 +douairière douairier nom f s 0.05 1.62 0.05 1.28 +douairières douairier nom f p 0.05 1.62 0.00 0.34 +douait douer ver 20.29 13.18 0.00 0.47 ind:imp:3s; +douane douane nom f s 6.12 9.46 4.33 8.51 +douanes douane nom f p 6.12 9.46 1.79 0.95 +douanier douanier nom m s 2.00 7.57 0.87 4.53 +douaniers douanier nom m p 2.00 7.57 1.14 3.04 +douanière douanier adj f s 0.63 1.55 0.01 0.07 +douanières douanier adj f p 0.63 1.55 0.04 0.41 +douar douar nom m s 0.00 0.61 0.00 0.47 +douars douar nom m p 0.00 0.61 0.00 0.14 +doubla doubler ver 15.29 22.84 0.20 1.28 ind:pas:3s; +doublage doublage nom m s 0.43 0.34 0.42 0.34 +doublages doublage nom m p 0.43 0.34 0.01 0.00 +doublai doubler ver 15.29 22.84 0.00 0.14 ind:pas:1s; +doublaient doubler ver 15.29 22.84 0.01 1.01 ind:imp:3p; +doublais doubler ver 15.29 22.84 0.03 0.14 ind:imp:1s; +doublait doubler ver 15.29 22.84 0.08 2.16 ind:imp:3s; +doublant doubler ver 15.29 22.84 0.06 1.01 par:pre; +doublard doublard nom m s 0.02 0.14 0.01 0.14 +doublards doublard nom m p 0.02 0.14 0.01 0.00 +double_cliquer double_cliquer ver 0.09 0.00 0.01 0.00 inf; +double_cliquer double_cliquer ver m s 0.09 0.00 0.07 0.00 par:pas; +double_croche double_croche nom f s 0.01 0.00 0.01 0.00 +double_décimètre double_décimètre nom m s 0.00 0.07 0.00 0.07 +double_fond double_fond nom m s 0.01 0.00 0.01 0.00 +double_six double_six nom m s 0.14 0.20 0.14 0.20 +double double adj s 30.46 58.99 28.68 52.84 +doubleau doubleau nom m s 0.00 0.20 0.00 0.14 +doubleaux doubleau nom m p 0.00 0.20 0.00 0.07 +doublement doublement adv 1.36 4.26 1.36 4.26 +doublent doubler ver 15.29 22.84 0.19 0.68 ind:pre:3p; +doubler doubler ver 15.29 22.84 4.65 4.39 inf; +doublera doubler ver 15.29 22.84 0.11 0.07 ind:fut:3s; +doublerai doubler ver 15.29 22.84 0.12 0.07 ind:fut:1s; +doubleraient doubler ver 15.29 22.84 0.01 0.00 cnd:pre:3p; +doublerait doubler ver 15.29 22.84 0.10 0.07 cnd:pre:3s; +doublerez doubler ver 15.29 22.84 0.01 0.07 ind:fut:2p; +doublerons doubler ver 15.29 22.84 0.03 0.00 ind:fut:1p; +doubles double adj p 30.46 58.99 1.78 6.15 +doublet doublet nom m s 0.00 0.20 0.00 0.14 +doublets doublet nom m p 0.00 0.20 0.00 0.07 +doublette doublette nom f s 0.14 0.07 0.14 0.07 +doubleur doubleur nom m s 0.07 0.00 0.07 0.00 +doubleuse doubleur nom f s 0.07 0.00 0.01 0.00 +doubleuses doubleuse nom f p 0.01 0.00 0.01 0.00 +doublez doubler ver 15.29 22.84 1.02 0.27 imp:pre:2p;ind:pre:2p; +doubliez doubler ver 15.29 22.84 0.02 0.00 ind:imp:2p; +doublions doubler ver 15.29 22.84 0.00 0.07 ind:imp:1p; +doublon doublon nom m s 0.22 0.41 0.06 0.27 +doublonner doublonner ver 0.01 0.00 0.01 0.00 inf; +doublons doublon nom m p 0.22 0.41 0.16 0.14 +doublât doubler ver 15.29 22.84 0.00 0.07 sub:imp:3s; +doublèrent doubler ver 15.29 22.84 0.00 0.14 ind:pas:3p; +doublé doubler ver m s 15.29 22.84 3.13 4.12 par:pas; +doublée doubler ver f s 15.29 22.84 0.50 2.16 par:pas; +doublées doubler ver f p 15.29 22.84 0.04 0.54 par:pas; +doublure doublure nom f s 3.84 4.53 3.70 3.38 +doublures doublure nom f p 3.84 4.53 0.14 1.15 +doublés doubler ver m p 15.29 22.84 0.61 0.95 par:pas; +douce_amère douce_amère adj f s 0.06 0.27 0.06 0.27 +douce doux adj f s 89.14 145.07 44.70 73.58 +doucement doucement adv 103.81 128.38 103.81 128.38 +douceâtre douceâtre adj s 0.15 2.70 0.15 2.30 +douceâtres douceâtre adj p 0.15 2.70 0.00 0.41 +doucereuse doucereux adj f s 0.28 2.97 0.04 0.74 +doucereusement doucereusement adv 0.00 0.20 0.00 0.20 +doucereuses doucereux adj f p 0.28 2.97 0.00 0.47 +doucereux doucereux adj m 0.28 2.97 0.25 1.76 +douce_amère douce_amère nom f p 0.00 0.14 0.00 0.07 +douces doux adj f p 89.14 145.07 6.77 12.77 +doucet doucet adj m s 0.02 1.01 0.02 0.88 +doucette doucette nom f s 0.01 0.14 0.01 0.14 +doucettement doucettement adv 0.00 0.41 0.00 0.41 +douceur douceur nom f s 16.87 70.00 16.02 66.08 +douceurs douceur nom f p 16.87 70.00 0.85 3.92 +doucha doucher ver 6.75 2.57 0.14 0.27 ind:pas:3s; +douchais doucher ver 6.75 2.57 0.09 0.07 ind:imp:1s;ind:imp:2s; +douchait doucher ver 6.75 2.57 0.03 0.61 ind:imp:3s; +douchant doucher ver 6.75 2.57 0.01 0.00 par:pre; +douche douche nom f s 36.06 23.85 32.56 20.27 +douchent doucher ver 6.75 2.57 0.14 0.07 ind:pre:3p; +doucher doucher ver 6.75 2.57 3.29 0.47 inf; +douchera doucher ver 6.75 2.57 0.01 0.00 ind:fut:3s; +doucherai doucher ver 6.75 2.57 0.00 0.07 ind:fut:1s; +doucheras doucher ver 6.75 2.57 0.02 0.00 ind:fut:2s; +douches douche nom f p 36.06 23.85 3.49 3.58 +doucheur doucheur nom m s 0.00 0.07 0.00 0.07 +douchez doucher ver 6.75 2.57 0.05 0.00 imp:pre:2p;ind:pre:2p; +douchiez doucher ver 6.75 2.57 0.01 0.00 ind:imp:2p; +douchons doucher ver 6.75 2.57 0.02 0.07 imp:pre:1p;ind:pre:1p; +douché doucher ver m s 6.75 2.57 0.99 0.34 par:pas; +douchée doucher ver f s 6.75 2.57 0.19 0.07 par:pas; +douchés doucher ver m p 6.75 2.57 0.27 0.14 par:pas; +doucie doucir ver f s 0.02 0.00 0.02 0.00 par:pas; +doucin doucin nom m s 0.00 0.14 0.00 0.07 +doucine doucine nom f s 0.01 0.00 0.01 0.00 +doucins doucin nom m p 0.00 0.14 0.00 0.07 +doudou doudou nom f s 0.58 6.76 0.58 6.76 +doudoune doudoune nom f s 0.92 0.54 0.46 0.14 +doudounes doudoune nom f p 0.92 0.54 0.46 0.41 +douelle douelle nom f s 0.00 0.61 0.00 0.14 +douelles douelle nom f p 0.00 0.61 0.00 0.47 +douer douer ver 20.29 13.18 0.00 0.20 inf; +douglas douglas nom m 0.09 0.00 0.09 0.00 +douillait douiller ver 0.22 1.28 0.00 0.14 ind:imp:3s; +douille douille nom f s 3.67 3.51 1.79 0.81 +douillent douiller ver 0.22 1.28 0.00 0.07 ind:pre:3p; +douiller douiller ver 0.22 1.28 0.17 0.54 inf; +douillera douiller ver 0.22 1.28 0.00 0.07 ind:fut:3s; +douilles douille nom f p 3.67 3.51 1.88 2.70 +douillet douillet adj m s 2.63 6.96 1.97 4.19 +douillets douillet adj m p 2.63 6.96 0.04 0.81 +douillette douillet adj f s 2.63 6.96 0.58 1.62 +douillettement douillettement adv 0.03 0.54 0.03 0.54 +douillettes douillet adj f p 2.63 6.96 0.04 0.34 +douillons douillon nom m p 0.00 0.54 0.00 0.54 +douillé douiller ver m s 0.22 1.28 0.00 0.07 par:pas; +douillée douiller ver f s 0.22 1.28 0.00 0.20 par:pas; +douleur douleur nom f s 75.89 91.89 65.78 77.84 +douleurs douleur nom f p 75.89 91.89 10.10 14.05 +douloureuse douloureux adj f s 17.16 37.50 4.05 13.58 +douloureusement douloureusement adv 1.00 5.54 1.00 5.54 +douloureuses douloureux adj f p 17.16 37.50 1.23 3.24 +douloureux douloureux adj m 17.16 37.50 11.88 20.68 +douma douma nom f s 0.34 0.14 0.34 0.14 +doura doura nom m s 0.00 0.07 0.00 0.07 +douro douro nom m s 0.00 0.54 0.00 0.20 +douros douro nom m p 0.00 0.54 0.00 0.34 +douta douter ver 77.77 88.11 0.03 1.15 ind:pas:3s; +doutai douter ver 77.77 88.11 0.14 0.54 ind:pas:1s; +doutaient douter ver 77.77 88.11 0.11 2.16 ind:imp:3p; +doutais douter ver 77.77 88.11 11.76 9.32 ind:imp:1s;ind:imp:2s; +doutait douter ver 77.77 88.11 0.96 13.99 ind:imp:3s; +doutance doutance nom f s 0.00 0.27 0.00 0.14 +doutances doutance nom f p 0.00 0.27 0.00 0.14 +doutant douter ver 77.77 88.11 0.15 2.03 par:pre; +doute doute nom m s 108.18 350.07 97.51 341.35 +doutent douter ver 77.77 88.11 1.04 1.82 ind:pre:3p;sub:pre:3p; +douter douter ver 77.77 88.11 12.64 23.92 inf;; +doutera douter ver 77.77 88.11 0.43 0.34 ind:fut:3s; +douterai douter ver 77.77 88.11 0.11 0.14 ind:fut:1s; +douterais douter ver 77.77 88.11 0.30 0.27 cnd:pre:1s;cnd:pre:2s; +douterait douter ver 77.77 88.11 0.20 0.47 cnd:pre:3s; +douteras douter ver 77.77 88.11 0.01 0.07 ind:fut:2s; +douterez douter ver 77.77 88.11 0.01 0.07 ind:fut:2p; +douteriez douter ver 77.77 88.11 0.08 0.07 cnd:pre:2p; +douteront douter ver 77.77 88.11 0.05 0.07 ind:fut:3p; +doutes doute nom m p 108.18 350.07 10.66 8.72 +douteurs douteur adj m p 0.00 0.14 0.00 0.14 +douteuse douteux adj f s 4.10 15.95 1.17 3.92 +douteusement douteusement adv 0.00 0.07 0.00 0.07 +douteuses douteux adj f p 4.10 15.95 0.69 1.82 +douteux douteux adj m 4.10 15.95 2.23 10.20 +doutez douter ver 77.77 88.11 3.17 1.82 imp:pre:2p;ind:pre:2p; +douçâtre douçâtre adj s 0.00 0.07 0.00 0.07 +doutiez douter ver 77.77 88.11 0.66 0.20 ind:imp:2p; +doutions douter ver 77.77 88.11 0.04 1.15 ind:imp:1p; +doutons douter ver 77.77 88.11 0.52 0.74 imp:pre:1p;ind:pre:1p; +doutât douter ver 77.77 88.11 0.00 0.47 sub:imp:3s; +doutèrent douter ver 77.77 88.11 0.00 0.14 ind:pas:3p; +douté douter ver m s 77.77 88.11 3.77 4.80 par:pas; +doutée douter ver f s 77.77 88.11 0.34 0.81 par:pas; +doutés douter ver m p 77.77 88.11 0.02 0.20 par:pas; +doué douer ver m s 20.29 13.18 11.31 7.43 par:pas; +douée douer ver f s 20.29 13.18 8.03 3.04 par:pas; +douées doué adj f p 12.73 7.57 0.47 0.41 +doués doué adj m p 12.73 7.57 1.03 1.69 +douve douve nom f s 0.53 1.42 0.06 0.34 +douves douve nom f p 0.53 1.42 0.47 1.08 +doux_amer doux_amer adj m s 0.04 0.00 0.04 0.00 +doux doux adj m 89.14 145.07 37.66 58.72 +douzaine douzaine nom f s 12.89 18.58 8.18 13.18 +douzaines douzaine nom f p 12.89 18.58 4.72 5.41 +douze douze adj_num 21.81 48.18 21.81 48.18 +douzième douzième nom s 0.35 0.95 0.35 0.88 +douzièmes douzième nom p 0.35 0.95 0.00 0.07 +down down adj m s 0.00 0.54 0.00 0.54 +downing_street downing_street nom f s 0.00 0.34 0.00 0.34 +doyen doyen nom m s 3.21 6.76 3.12 5.88 +doyenne doyenne nom f s 0.11 0.00 0.11 0.00 +doyenné doyenné nom m s 0.00 0.07 0.00 0.07 +doyens doyen nom m p 3.21 6.76 0.09 0.07 +drôle drôle adj s 144.48 95.07 138.46 85.47 +drôlement drôlement adv 10.79 24.86 10.79 24.86 +drôlerie drôlerie nom f s 0.14 3.72 0.14 3.45 +drôleries drôlerie nom f p 0.14 3.72 0.01 0.27 +drôles drôle adj p 144.48 95.07 6.02 9.59 +drôlesse drôlesse nom f s 0.21 0.20 0.21 0.07 +drôlesses drôlesse nom f p 0.21 0.20 0.00 0.14 +drôlet drôlet adj m s 0.01 0.41 0.01 0.07 +drôlette drôlet adj f s 0.01 0.41 0.00 0.34 +drache dracher ver 0.01 0.00 0.01 0.00 ind:pre:3s; +drachme drachme nom f s 1.30 2.57 0.02 0.54 +drachmes drachme nom f p 1.30 2.57 1.28 2.03 +draconien draconien adj m s 0.49 0.54 0.14 0.07 +draconienne draconien adj f s 0.49 0.54 0.02 0.14 +draconiennes draconien adj f p 0.49 0.54 0.28 0.20 +draconiens draconien adj m p 0.49 0.54 0.04 0.14 +drag drag nom m s 0.73 0.34 0.60 0.14 +dragage dragage nom m s 0.15 0.00 0.15 0.00 +drageoir drageoir nom m s 0.00 0.47 0.00 0.34 +drageoirs drageoir nom m p 0.00 0.47 0.00 0.14 +dragon dragon nom m s 13.98 12.23 10.53 7.97 +dragonnades dragonnade nom f p 0.00 0.14 0.00 0.14 +dragonne dragon nom f s 13.98 12.23 0.06 0.27 +dragonnier dragonnier nom m s 0.10 0.00 0.10 0.00 +dragons dragon nom m p 13.98 12.23 3.39 3.99 +drags drag nom m p 0.73 0.34 0.14 0.20 +dragster dragster nom m s 0.04 0.00 0.04 0.00 +dragua draguer ver 21.00 6.22 0.00 0.14 ind:pas:3s; +draguaient draguer ver 21.00 6.22 0.10 0.14 ind:imp:3p; +draguais draguer ver 21.00 6.22 0.57 0.07 ind:imp:1s;ind:imp:2s; +draguait draguer ver 21.00 6.22 1.08 0.54 ind:imp:3s; +draguant draguer ver 21.00 6.22 0.06 0.20 par:pre; +drague draguer ver 21.00 6.22 3.57 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dragée dragée nom f s 1.34 3.04 0.21 1.01 +draguent draguer ver 21.00 6.22 0.14 0.47 ind:pre:3p; +draguer draguer ver 21.00 6.22 9.84 2.43 inf; +draguera draguer ver 21.00 6.22 0.04 0.00 ind:fut:3s; +draguerai draguer ver 21.00 6.22 0.04 0.07 ind:fut:1s; +draguerais draguer ver 21.00 6.22 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +draguerait draguer ver 21.00 6.22 0.02 0.00 cnd:pre:3s; +dragues draguer ver 21.00 6.22 1.70 0.00 ind:pre:2s; +dragées dragée nom f p 1.34 3.04 1.14 2.03 +dragueur dragueur nom m s 0.70 1.49 0.59 0.47 +dragueurs dragueur nom m p 0.70 1.49 0.06 0.88 +dragueuse dragueur nom f s 0.70 1.49 0.05 0.14 +draguez draguer ver 21.00 6.22 0.56 0.00 imp:pre:2p;ind:pre:2p; +draguiez draguer ver 21.00 6.22 0.01 0.00 sub:pre:2p; +draguons draguer ver 21.00 6.22 0.03 0.07 imp:pre:1p;ind:pre:1p; +dragué draguer ver m s 21.00 6.22 1.51 0.41 par:pas; +draguée draguer ver f s 21.00 6.22 1.39 0.61 par:pas; +draguées draguer ver f p 21.00 6.22 0.17 0.00 par:pas; +dragués draguer ver m p 21.00 6.22 0.02 0.07 par:pas; +drailles draille nom f p 0.00 0.41 0.00 0.41 +drain drain nom m s 1.11 0.47 0.93 0.20 +draina drainer ver 0.86 1.22 0.00 0.07 ind:pas:3s; +drainage drainage nom m s 0.41 0.61 0.41 0.54 +drainages drainage nom m p 0.41 0.61 0.00 0.07 +drainaient drainer ver 0.86 1.22 0.00 0.14 ind:imp:3p; +drainait drainer ver 0.86 1.22 0.14 0.14 ind:imp:3s; +drainant drainer ver 0.86 1.22 0.00 0.27 par:pre; +draine drainer ver 0.86 1.22 0.14 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +drainent drainer ver 0.86 1.22 0.04 0.00 ind:pre:3p; +drainer drainer ver 0.86 1.22 0.42 0.14 inf; +drainera drainer ver 0.86 1.22 0.02 0.00 ind:fut:3s; +drainons drainer ver 0.86 1.22 0.01 0.00 ind:pre:1p; +drains drain nom m p 1.11 0.47 0.18 0.27 +drainé drainer ver m s 0.86 1.22 0.09 0.20 par:pas; +drainées drainer ver f p 0.86 1.22 0.00 0.07 par:pas; +drainés drainer ver m p 0.86 1.22 0.01 0.07 par:pas; +draisienne draisienne nom f s 0.00 0.07 0.00 0.07 +draisine draisine nom f s 0.02 0.07 0.02 0.07 +drakkar drakkar nom m s 0.25 0.27 0.25 0.00 +drakkars drakkar nom m p 0.25 0.27 0.00 0.27 +dramatique dramatique adj s 8.59 11.35 7.29 9.39 +dramatiquement dramatiquement adv 0.27 0.41 0.27 0.41 +dramatiques dramatique adj p 8.59 11.35 1.30 1.96 +dramatisait dramatiser ver 2.42 1.76 0.00 0.20 ind:imp:3s; +dramatisant dramatiser ver 2.42 1.76 0.00 0.07 par:pre; +dramatisation dramatisation nom f s 0.17 0.14 0.17 0.14 +dramatise dramatiser ver 2.42 1.76 0.72 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dramatisent dramatiser ver 2.42 1.76 0.01 0.00 ind:pre:3p; +dramatiser dramatiser ver 2.42 1.76 0.72 0.68 inf; +dramatises dramatiser ver 2.42 1.76 0.59 0.14 ind:pre:2s; +dramatisez dramatiser ver 2.42 1.76 0.10 0.00 imp:pre:2p;ind:pre:2p; +dramatisons dramatiser ver 2.42 1.76 0.20 0.07 imp:pre:1p;ind:pre:1p; +dramatisé dramatiser ver m s 2.42 1.76 0.05 0.07 par:pas; +dramatisée dramatiser ver f s 2.42 1.76 0.01 0.07 par:pas; +dramatisés dramatiser ver m p 2.42 1.76 0.01 0.07 par:pas; +dramaturge dramaturge nom s 0.58 0.88 0.53 0.74 +dramaturges dramaturge nom p 0.58 0.88 0.05 0.14 +dramaturgie dramaturgie nom f s 0.26 0.07 0.26 0.07 +drame drame nom m s 14.87 39.93 13.48 32.50 +drames drame nom m p 14.87 39.93 1.39 7.43 +drap drap nom m s 19.22 74.12 3.69 33.18 +drapa draper ver 0.84 7.23 0.00 0.47 ind:pas:3s; +drapai draper ver 0.84 7.23 0.00 0.07 ind:pas:1s; +drapaient draper ver 0.84 7.23 0.14 0.07 ind:imp:3p; +drapait draper ver 0.84 7.23 0.00 0.68 ind:imp:3s; +drapant draper ver 0.84 7.23 0.00 0.14 par:pre; +drape draper ver 0.84 7.23 0.14 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +drapeau drapeau nom m s 19.69 37.64 14.66 23.31 +drapeaux drapeau nom m p 19.69 37.64 5.03 14.32 +drapelets drapelet nom m p 0.00 0.07 0.00 0.07 +drapent draper ver 0.84 7.23 0.11 0.14 ind:pre:3p; +draper draper ver 0.84 7.23 0.03 0.27 inf; +draperaient draper ver 0.84 7.23 0.00 0.07 cnd:pre:3p; +draperez draper ver 0.84 7.23 0.14 0.00 ind:fut:2p; +draperie draperie nom f s 0.02 3.31 0.00 1.42 +draperies draperie nom f p 0.02 3.31 0.02 1.89 +drapier drapier nom m s 0.00 0.41 0.00 0.27 +drapiers drapier adj m p 0.00 0.47 0.00 0.34 +draps drap nom m p 19.22 74.12 15.54 40.95 +drapèrent draper ver 0.84 7.23 0.00 0.07 ind:pas:3p; +drapé draper ver m s 0.84 7.23 0.16 1.22 par:pas; +drapée draper ver f s 0.84 7.23 0.13 2.16 par:pas; +drapées draper ver f p 0.84 7.23 0.00 1.01 par:pas; +drapés drapé adj m p 0.17 2.30 0.14 0.81 +drastique drastique adj s 0.50 0.07 0.43 0.07 +drastiquement drastiquement adv 0.02 0.00 0.02 0.00 +drastiques drastique adj f p 0.50 0.07 0.07 0.00 +drave drave nom f s 0.00 0.07 0.00 0.07 +draveurs draveur nom m p 0.00 0.07 0.00 0.07 +dreadlocks dreadlocks nom f p 0.11 0.00 0.11 0.00 +dream_team dream_team nom f s 0.07 0.00 0.07 0.00 +drelin drelin nom m s 0.43 0.00 0.43 0.00 +drepou drepou nom f s 0.00 0.07 0.00 0.07 +dressa dresser ver 17.88 99.86 0.18 9.73 ind:pas:3s; +dressage dressage nom m s 0.58 1.82 0.58 1.76 +dressages dressage nom m p 0.58 1.82 0.00 0.07 +dressai dresser ver 17.88 99.86 0.10 0.61 ind:pas:1s; +dressaient dresser ver 17.88 99.86 0.32 5.47 ind:imp:3p; +dressais dresser ver 17.88 99.86 0.08 0.47 ind:imp:1s;ind:imp:2s; +dressait dresser ver 17.88 99.86 0.19 13.85 ind:imp:3s; +dressant dresser ver 17.88 99.86 0.48 3.65 par:pre; +dresse dresser ver 17.88 99.86 4.76 13.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dressement dressement nom m s 0.00 0.07 0.00 0.07 +dressent dresser ver 17.88 99.86 0.77 4.93 ind:pre:3p; +dresser dresser ver 17.88 99.86 4.65 14.93 inf; +dressera dresser ver 17.88 99.86 0.37 0.54 ind:fut:3s; +dresserai dresser ver 17.88 99.86 0.15 0.07 ind:fut:1s; +dresseraient dresser ver 17.88 99.86 0.01 0.20 cnd:pre:3p; +dresserait dresser ver 17.88 99.86 0.02 0.34 cnd:pre:3s; +dresseras dresser ver 17.88 99.86 0.01 0.00 ind:fut:2s; +dresserons dresser ver 17.88 99.86 0.26 0.07 ind:fut:1p; +dresseront dresser ver 17.88 99.86 0.16 0.14 ind:fut:3p; +dresses dresser ver 17.88 99.86 0.23 0.27 ind:pre:2s; +dresseur dresseur nom m s 0.86 0.68 0.50 0.34 +dresseurs dresseur nom m p 0.86 0.68 0.32 0.27 +dresseuse dresseur nom f s 0.86 0.68 0.05 0.07 +dressez dresser ver 17.88 99.86 0.70 0.54 imp:pre:2p;ind:pre:2p; +dressing_room dressing_room nom m s 0.01 0.00 0.01 0.00 +dressing dressing nom m s 0.28 0.00 0.28 0.00 +dressions dresser ver 17.88 99.86 0.00 0.20 ind:imp:1p; +dressoir dressoir nom m s 0.01 0.47 0.01 0.34 +dressoirs dressoir nom m p 0.01 0.47 0.00 0.14 +dressons dresser ver 17.88 99.86 0.19 0.27 imp:pre:1p;ind:pre:1p; +dressât dresser ver 17.88 99.86 0.00 0.14 sub:imp:3s; +dressèrent dresser ver 17.88 99.86 0.04 1.15 ind:pas:3p; +dressé dresser ver m s 17.88 99.86 3.36 13.24 par:pas; +dressée dresser ver f s 17.88 99.86 0.31 7.23 par:pas; +dressées dressé adj f p 1.79 11.82 0.44 2.36 +dressés dresser ver m p 17.88 99.86 0.29 4.93 par:pas; +dreyfusard dreyfusard nom m s 0.27 0.20 0.14 0.07 +dreyfusards dreyfusard nom m p 0.27 0.20 0.14 0.14 +dreyfusisme dreyfusisme nom m s 0.00 0.07 0.00 0.07 +dribbla dribbler ver 0.81 0.34 0.00 0.07 ind:pas:3s; +dribblais dribbler ver 0.81 0.34 0.10 0.07 ind:imp:1s; +dribblait dribbler ver 0.81 0.34 0.10 0.07 ind:imp:3s; +dribble dribble nom m s 0.69 0.07 0.29 0.07 +dribbler dribbler ver 0.81 0.34 0.20 0.14 inf; +dribbles dribble nom m p 0.69 0.07 0.40 0.00 +dribbleur dribbleur nom m s 0.00 0.14 0.00 0.14 +dribblez dribbler ver 0.81 0.34 0.01 0.00 imp:pre:2p; +dribblé dribbler ver m s 0.81 0.34 0.29 0.00 par:pas; +drible dribler ver 0.25 0.07 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dribler dribler ver 0.25 0.07 0.10 0.00 inf; +drift drift nom m s 0.04 0.07 0.04 0.07 +drifter drifter nom m s 0.05 37.50 0.02 37.50 +drifters drifter nom m p 0.05 37.50 0.03 0.00 +drill drill nom m s 0.01 0.07 0.01 0.07 +drille drille nom m s 0.11 1.22 0.08 0.61 +drilles drille nom m p 0.11 1.22 0.04 0.61 +dring dring ono 0.32 0.61 0.32 0.61 +drink drink nom m s 0.92 0.88 0.89 0.41 +drinks drink nom m p 0.92 0.88 0.03 0.47 +drisse drisse nom f s 0.16 0.81 0.06 0.47 +drisses drisse nom f p 0.16 0.81 0.11 0.34 +drivait driver ver 0.24 0.61 0.00 0.14 ind:imp:3s; +drivant driver ver 0.24 0.61 0.00 0.07 par:pre; +drive_in drive_in nom m s 0.94 0.00 0.94 0.00 +drive drive nom m s 1.45 0.41 1.41 0.41 +driver driver nom m s 0.31 0.34 0.25 0.27 +drivers driver nom m p 0.31 0.34 0.06 0.07 +drives drive nom m p 1.45 0.41 0.04 0.00 +drivé driver ver m s 0.24 0.61 0.00 0.07 par:pas; +drivée driver ver f s 0.24 0.61 0.01 0.14 par:pas; +drogman drogman nom m s 0.00 0.27 0.00 0.20 +drogmans drogman nom m p 0.00 0.27 0.00 0.07 +droguaient droguer ver 13.15 3.85 0.19 0.07 ind:imp:3p; +droguais droguer ver 13.15 3.85 0.29 0.00 ind:imp:1s;ind:imp:2s; +droguait droguer ver 13.15 3.85 0.94 0.68 ind:imp:3s; +droguant droguer ver 13.15 3.85 0.06 0.00 par:pre; +drogue drogue nom f s 58.76 13.72 47.20 10.54 +droguent droguer ver 13.15 3.85 0.50 0.20 ind:pre:3p; +droguer droguer ver 13.15 3.85 2.44 0.74 inf; +droguerie droguerie nom f s 0.31 0.54 0.28 0.47 +drogueries droguerie nom f p 0.31 0.54 0.03 0.07 +drogues drogue nom f p 58.76 13.72 11.56 3.18 +droguet droguet nom m s 0.00 1.08 0.00 0.95 +droguets droguet nom m p 0.00 1.08 0.00 0.14 +droguez droguer ver 13.15 3.85 0.49 0.14 imp:pre:2p;ind:pre:2p; +droguiez droguer ver 13.15 3.85 0.05 0.00 ind:imp:2p; +droguiste droguiste nom s 0.17 0.61 0.16 0.41 +droguistes droguiste nom p 0.17 0.61 0.02 0.20 +drogué drogué nom m s 6.35 2.43 2.63 0.68 +droguée droguer ver f s 13.15 3.85 1.47 0.14 par:pas; +droguées drogué nom f p 6.35 2.43 0.25 0.00 +drogués drogué nom m p 6.35 2.43 2.20 1.35 +droicos droico nom m p 0.00 0.27 0.00 0.27 +droit_fil droit_fil nom m s 0.00 0.07 0.00 0.07 +droit droit nom m s 207.62 163.72 175.60 138.72 +droite droite nom f s 58.70 117.97 58.44 116.69 +droitement droitement adv 0.01 0.07 0.01 0.07 +droites droit adj f p 77.74 163.38 0.83 4.80 +droitier droitier adj m s 0.76 0.07 0.69 0.00 +droitiers droitier nom m p 0.35 0.20 0.14 0.14 +droitière droitier adj f s 0.76 0.07 0.06 0.07 +droits droit nom m p 207.62 163.72 32.01 25.00 +droiture droiture nom f s 1.33 1.76 1.33 1.76 +drolatique drolatique adj s 0.54 0.47 0.54 0.34 +drolatiques drolatique adj m p 0.54 0.47 0.00 0.14 +dromadaire dromadaire nom m s 0.44 1.22 0.44 0.68 +dromadaires dromadaire nom m p 0.44 1.22 0.00 0.54 +drome drome nom f s 0.02 0.07 0.01 0.07 +dromes drome nom f p 0.02 0.07 0.01 0.00 +drone_espion drone_espion nom m s 0.02 0.00 0.02 0.00 +drone drone nom m s 1.79 0.00 0.88 0.00 +drones drone nom m p 1.79 0.00 0.91 0.00 +dronte dronte nom m s 0.01 0.07 0.01 0.07 +drop drop nom m s 1.11 0.00 1.11 0.00 +drope droper ver 0.00 0.20 0.00 0.07 ind:pre:3s; +dropent droper ver 0.00 0.20 0.00 0.07 ind:pre:3p; +droppage droppage nom m s 0.04 0.00 0.04 0.00 +droppant dropper ver 0.00 0.27 0.00 0.07 par:pre; +droppe dropper ver 0.00 0.27 0.00 0.20 ind:pre:3s; +dropé droper ver m s 0.00 0.20 0.00 0.07 par:pas; +drosophile drosophile nom f s 0.10 0.00 0.06 0.00 +drosophiles drosophile nom f p 0.10 0.00 0.04 0.00 +dross dross nom m 0.00 0.07 0.00 0.07 +drossait drosser ver 0.01 0.41 0.00 0.07 ind:imp:3s; +drossant drosser ver 0.01 0.41 0.00 0.07 par:pre; +drossart drossart nom m s 0.00 0.07 0.00 0.07 +drosser drosser ver 0.01 0.41 0.00 0.07 inf; +drossé drosser ver m s 0.01 0.41 0.01 0.07 par:pas; +drossée drosser ver f s 0.01 0.41 0.00 0.07 par:pas; +drossés drosser ver m p 0.01 0.41 0.00 0.07 par:pas; +droséra droséra nom m s 0.01 0.00 0.01 0.00 +drège drège nom f s 0.01 0.00 0.01 0.00 +dru dru adj m s 0.62 9.53 0.13 2.84 +drue dru adj f s 0.62 9.53 0.15 3.58 +drues dru adj f p 0.62 9.53 0.00 0.68 +drugstore drugstore nom m s 1.71 1.89 1.58 1.82 +drugstores drugstore nom m p 1.71 1.89 0.14 0.07 +druide druide nom m s 1.18 4.86 0.89 2.84 +druides druide nom m p 1.18 4.86 0.28 2.03 +druidesse druidesse nom f s 0.02 0.20 0.02 0.14 +druidesses druidesse nom f p 0.02 0.20 0.00 0.07 +druidique druidique adj s 0.19 0.74 0.19 0.54 +druidiques druidique adj m p 0.19 0.74 0.00 0.20 +druidisme druidisme nom m s 0.00 0.54 0.00 0.54 +drumlin drumlin nom m s 0.11 0.00 0.11 0.00 +drummer drummer nom m s 0.17 0.07 0.17 0.07 +drums drums nom m p 0.04 0.07 0.04 0.07 +drépanocytose drépanocytose nom f s 0.01 0.00 0.01 0.00 +drus dru adj m p 0.62 9.53 0.34 2.43 +druze druze adj s 0.56 1.28 0.40 0.54 +druzes druze adj p 0.56 1.28 0.16 0.74 +dry dry adj m s 1.02 1.22 1.02 1.22 +dryade dryade nom f s 0.16 0.27 0.00 0.07 +dryades dryade nom f p 0.16 0.27 0.16 0.20 +dèche dèche nom f s 0.39 1.96 0.38 1.89 +dèches dèche nom f p 0.39 1.96 0.01 0.07 +dèmes dème nom m p 0.00 0.14 0.00 0.14 +dès dès pre 143.72 275.07 143.72 275.07 +dé dé nom m s 23.36 11.55 5.74 3.65 +du du art_def m s 4394.70 6882.16 4394.70 6882.16 +dual dual adj m s 0.07 0.00 0.07 0.00 +dualisme dualisme nom m s 0.02 0.34 0.02 0.34 +dualiste dualiste adj m s 0.01 0.00 0.01 0.00 +dualité dualité nom f s 0.33 0.68 0.33 0.68 +déambula déambuler ver 1.84 7.70 0.01 0.27 ind:pas:3s; +déambulai déambuler ver 1.84 7.70 0.02 0.00 ind:pas:1s; +déambulaient déambuler ver 1.84 7.70 0.01 0.68 ind:imp:3p; +déambulais déambuler ver 1.84 7.70 0.20 0.20 ind:imp:1s; +déambulait déambuler ver 1.84 7.70 0.10 1.22 ind:imp:3s; +déambulant déambuler ver 1.84 7.70 0.20 1.15 par:pre; +déambulante déambulant adj f s 0.01 0.14 0.00 0.14 +déambulateur déambulateur nom m s 0.13 0.00 0.13 0.00 +déambulation déambulation nom f s 0.03 1.42 0.01 0.54 +déambulations déambulation nom f p 0.03 1.42 0.01 0.88 +déambulatoire déambulatoire adj m s 0.00 0.14 0.00 0.07 +déambulatoires déambulatoire adj m p 0.00 0.14 0.00 0.07 +déambule déambuler ver 1.84 7.70 0.52 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déambulent déambuler ver 1.84 7.70 0.10 0.47 ind:pre:3p; +déambuler déambuler ver 1.84 7.70 0.29 1.55 inf; +déambulerai déambuler ver 1.84 7.70 0.01 0.00 ind:fut:1s; +déambulez déambuler ver 1.84 7.70 0.04 0.07 imp:pre:2p;ind:pre:2p; +déambulions déambuler ver 1.84 7.70 0.14 0.14 ind:imp:1p; +déambulons déambuler ver 1.84 7.70 0.00 0.20 ind:pre:1p; +déambulèrent déambuler ver 1.84 7.70 0.00 0.20 ind:pas:3p; +déambulé déambuler ver m s 1.84 7.70 0.22 0.34 par:pas; +débagoulage débagoulage nom m s 0.00 0.07 0.00 0.07 +débagoule débagouler ver 0.01 0.68 0.00 0.34 ind:pre:1s;ind:pre:3s;sub:pre:3s; +débagouler débagouler ver 0.01 0.68 0.01 0.20 inf; +débagoulerait débagouler ver 0.01 0.68 0.00 0.07 cnd:pre:3s; +débagoules débagouler ver 0.01 0.68 0.00 0.07 ind:pre:2s; +déballa déballer ver 3.59 6.69 0.00 0.68 ind:pas:3s; +déballage déballage nom m s 0.32 1.76 0.30 1.62 +déballages déballage nom m p 0.32 1.76 0.01 0.14 +déballai déballer ver 3.59 6.69 0.00 0.20 ind:pas:1s; +déballaient déballer ver 3.59 6.69 0.00 0.34 ind:imp:3p; +déballais déballer ver 3.59 6.69 0.02 0.07 ind:imp:1s;ind:imp:2s; +déballait déballer ver 3.59 6.69 0.02 0.81 ind:imp:3s; +déballant déballer ver 3.59 6.69 0.02 0.14 par:pre; +déballe déballer ver 3.59 6.69 0.67 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déballent déballer ver 3.59 6.69 0.04 0.07 ind:pre:3p; +déballer déballer ver 3.59 6.69 1.63 1.49 inf; +déballera déballer ver 3.59 6.69 0.02 0.00 ind:fut:3s; +déballez déballer ver 3.59 6.69 0.35 0.07 imp:pre:2p;ind:pre:2p; +déballonnage déballonnage nom m s 0.00 0.07 0.00 0.07 +déballonner déballonner ver 0.01 0.74 0.00 0.41 inf; +déballonnerais déballonner ver 0.01 0.74 0.01 0.00 cnd:pre:2s; +déballonneront déballonner ver 0.01 0.74 0.00 0.07 ind:fut:3p; +déballonné déballonner ver m s 0.01 0.74 0.00 0.27 par:pas; +déballons déballer ver 3.59 6.69 0.04 0.00 imp:pre:1p;ind:pre:1p; +déballèrent déballer ver 3.59 6.69 0.00 0.20 ind:pas:3p; +déballé déballer ver m s 3.59 6.69 0.69 0.95 par:pas; +déballée déballer ver f s 3.59 6.69 0.04 0.14 par:pas; +déballées déballer ver f p 3.59 6.69 0.05 0.07 par:pas; +déballés déballer ver m p 3.59 6.69 0.01 0.07 par:pas; +débanda débander ver 0.81 2.43 0.00 0.07 ind:pas:3s; +débandade débandade nom f s 0.58 3.51 0.58 3.51 +débandaient débander ver 0.81 2.43 0.01 0.14 ind:imp:3p; +débandais débander ver 0.81 2.43 0.00 0.07 ind:imp:1s; +débandait débander ver 0.81 2.43 0.00 0.07 ind:imp:3s; +débande débander ver 0.81 2.43 0.35 0.27 ind:pre:1s;ind:pre:3s; +débandent débander ver 0.81 2.43 0.03 0.07 ind:pre:3p; +débander débander ver 0.81 2.43 0.28 0.95 inf; +débandera débander ver 0.81 2.43 0.00 0.07 ind:fut:3s; +débanderaient débander ver 0.81 2.43 0.01 0.00 cnd:pre:3p; +débandez débander ver 0.81 2.43 0.00 0.14 ind:pre:2p; +débandèrent débander ver 0.81 2.43 0.00 0.07 ind:pas:3p; +débandé débander ver m s 0.81 2.43 0.13 0.20 par:pas; +débandées débander ver f p 0.81 2.43 0.00 0.07 par:pas; +débandés débander ver m p 0.81 2.43 0.00 0.27 par:pas; +débaptiser débaptiser ver 0.00 0.27 0.00 0.07 inf; +débaptiserais débaptiser ver 0.00 0.27 0.00 0.07 cnd:pre:1s; +débaptisé débaptiser ver m s 0.00 0.27 0.00 0.07 par:pas; +débaptisée débaptiser ver f s 0.00 0.27 0.00 0.07 par:pas; +débarbot débarbot nom m s 0.00 0.20 0.00 0.14 +débarbots débarbot nom m p 0.00 0.20 0.00 0.07 +débarbouilla débarbouiller ver 0.81 2.77 0.00 0.14 ind:pas:3s; +débarbouillait débarbouiller ver 0.81 2.77 0.00 0.20 ind:imp:3s; +débarbouillant débarbouiller ver 0.81 2.77 0.00 0.07 par:pre; +débarbouille débarbouiller ver 0.81 2.77 0.28 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarbouiller débarbouiller ver 0.81 2.77 0.37 1.42 inf; +débarbouillette débarbouillette nom f s 0.02 0.00 0.02 0.00 +débarbouillé débarbouiller ver m s 0.81 2.77 0.04 0.14 par:pas; +débarbouillée débarbouiller ver f s 0.81 2.77 0.13 0.27 par:pas; +débarbouillés débarbouiller ver m p 0.81 2.77 0.00 0.07 par:pas; +débarcadère débarcadère nom m s 0.43 1.62 0.43 1.55 +débarcadères débarcadère nom m p 0.43 1.62 0.00 0.07 +débardage débardage nom m s 0.00 0.20 0.00 0.14 +débardages débardage nom m p 0.00 0.20 0.00 0.07 +débardaient débarder ver 0.00 0.41 0.00 0.07 ind:imp:3p; +débarder débarder ver 0.00 0.41 0.00 0.14 inf; +débardeur débardeur nom m s 0.77 1.42 0.69 0.68 +débardeurs débardeur nom m p 0.77 1.42 0.08 0.74 +débardée débarder ver f s 0.00 0.41 0.00 0.20 par:pas; +débaroule débarouler ver 0.00 0.14 0.00 0.07 ind:pre:3s; +débaroulent débarouler ver 0.00 0.14 0.00 0.07 ind:pre:3p; +débarqua débarquer ver 25.66 34.39 0.46 1.49 ind:pas:3s; +débarquai débarquer ver 25.66 34.39 0.00 0.47 ind:pas:1s; +débarquaient débarquer ver 25.66 34.39 0.15 1.62 ind:imp:3p; +débarquais débarquer ver 25.66 34.39 0.04 0.27 ind:imp:1s;ind:imp:2s; +débarquait débarquer ver 25.66 34.39 0.51 2.97 ind:imp:3s; +débarquant débarquer ver 25.66 34.39 0.39 2.23 par:pre; +débarque débarquer ver 25.66 34.39 6.18 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarquement débarquement nom m s 2.79 15.00 2.74 14.12 +débarquements débarquement nom m p 2.79 15.00 0.05 0.88 +débarquent débarquer ver 25.66 34.39 1.84 2.09 ind:pre:3p; +débarquer débarquer ver 25.66 34.39 5.89 7.36 inf; +débarquera débarquer ver 25.66 34.39 0.37 0.27 ind:fut:3s; +débarquerai débarquer ver 25.66 34.39 0.07 0.07 ind:fut:1s; +débarqueraient débarquer ver 25.66 34.39 0.02 0.07 cnd:pre:3p; +débarquerait débarquer ver 25.66 34.39 0.03 0.20 cnd:pre:3s; +débarqueras débarquer ver 25.66 34.39 0.02 0.00 ind:fut:2s; +débarquerez débarquer ver 25.66 34.39 0.17 0.07 ind:fut:2p; +débarquerons débarquer ver 25.66 34.39 0.40 0.07 ind:fut:1p; +débarqueront débarquer ver 25.66 34.39 0.17 0.27 ind:fut:3p; +débarques débarquer ver 25.66 34.39 1.25 0.34 ind:pre:2s; +débarquez débarquer ver 25.66 34.39 0.88 0.27 imp:pre:2p;ind:pre:2p; +débarquiez débarquer ver 25.66 34.39 0.02 0.14 ind:imp:2p; +débarquions débarquer ver 25.66 34.39 0.11 0.27 ind:imp:1p; +débarquâmes débarquer ver 25.66 34.39 0.00 0.41 ind:pas:1p; +débarquons débarquer ver 25.66 34.39 0.16 0.27 imp:pre:1p;ind:pre:1p; +débarquèrent débarquer ver 25.66 34.39 0.03 0.95 ind:pas:3p; +débarqué débarquer ver m s 25.66 34.39 6.04 6.62 par:pas; +débarquée débarqué adj f s 0.13 1.15 0.06 0.07 +débarquées débarquer ver f p 25.66 34.39 0.14 0.27 par:pas; +débarqués débarquer ver m p 25.66 34.39 0.27 0.88 par:pas; +débarra débarrer ver 0.01 0.20 0.01 0.00 ind:pas:3s; +débarras débarras nom m 2.79 6.96 2.79 6.96 +débarrassa débarrasser ver 61.77 48.92 0.01 2.50 ind:pas:3s; +débarrassai débarrasser ver 61.77 48.92 0.00 0.07 ind:pas:1s; +débarrassaient débarrasser ver 61.77 48.92 0.02 0.47 ind:imp:3p; +débarrassais débarrasser ver 61.77 48.92 0.07 0.27 ind:imp:1s;ind:imp:2s; +débarrassait débarrasser ver 61.77 48.92 0.43 1.82 ind:imp:3s; +débarrassant débarrasser ver 61.77 48.92 0.14 1.42 par:pre; +débarrasse débarrasser ver 61.77 48.92 11.42 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarrassent débarrasser ver 61.77 48.92 0.33 0.54 ind:pre:3p; +débarrasser débarrasser ver 61.77 48.92 32.37 23.58 inf;; +débarrassera débarrasser ver 61.77 48.92 1.17 0.34 ind:fut:3s; +débarrasserai débarrasser ver 61.77 48.92 0.54 0.47 ind:fut:1s; +débarrasserais débarrasser ver 61.77 48.92 0.25 0.20 cnd:pre:1s;cnd:pre:2s; +débarrasserait débarrasser ver 61.77 48.92 0.07 0.27 cnd:pre:3s; +débarrasseras débarrasser ver 61.77 48.92 0.53 0.00 ind:fut:2s; +débarrasserez débarrasser ver 61.77 48.92 0.16 0.07 ind:fut:2p; +débarrasserons débarrasser ver 61.77 48.92 0.08 0.00 ind:fut:1p; +débarrasseront débarrasser ver 61.77 48.92 0.21 0.20 ind:fut:3p; +débarrasses débarrasser ver 61.77 48.92 0.91 0.07 ind:pre:2s;sub:pre:2s; +débarrassez débarrasser ver 61.77 48.92 3.03 0.54 imp:pre:2p;ind:pre:2p; +débarrassiez débarrasser ver 61.77 48.92 0.24 0.00 ind:imp:2p; +débarrassons débarrasser ver 61.77 48.92 0.79 0.00 imp:pre:1p;ind:pre:1p; +débarrassât débarrasser ver 61.77 48.92 0.00 0.07 sub:imp:3s; +débarrassèrent débarrasser ver 61.77 48.92 0.10 0.27 ind:pas:3p; +débarrassé débarrasser ver m s 61.77 48.92 5.64 6.62 par:pas; +débarrassée débarrasser ver f s 61.77 48.92 1.72 2.57 par:pas; +débarrassées débarrasser ver f p 61.77 48.92 0.26 0.34 par:pas; +débarrassés débarrasser ver m p 61.77 48.92 1.30 2.09 par:pas; +débarrer débarrer ver 0.01 0.20 0.00 0.07 inf; +débarrons débarrer ver 0.01 0.20 0.00 0.07 imp:pre:1p; +débat débat nom m s 10.70 15.81 7.77 9.46 +débats débat nom m p 10.70 15.81 2.93 6.35 +débattît débattre ver 8.63 26.42 0.00 0.07 sub:imp:3s; +débattaient débattre ver 8.63 26.42 0.02 0.61 ind:imp:3p; +débattais débattre ver 8.63 26.42 0.02 0.88 ind:imp:1s;ind:imp:2s; +débattait débattre ver 8.63 26.42 0.51 6.42 ind:imp:3s; +débattant débattre ver 8.63 26.42 0.08 1.35 par:pre; +débatte débattre ver 8.63 26.42 0.01 0.07 sub:pre:3s; +débattent débattre ver 8.63 26.42 0.24 0.74 ind:pre:3p; +débatteur débatteur nom m s 0.00 0.07 0.00 0.07 +débattez débattre ver 8.63 26.42 0.22 0.00 imp:pre:2p;ind:pre:2p; +débattiez débattre ver 8.63 26.42 0.01 0.07 ind:imp:2p; +débattions débattre ver 8.63 26.42 0.01 0.20 ind:imp:1p; +débattirent débattre ver 8.63 26.42 0.00 0.14 ind:pas:3p; +débattis débattre ver 8.63 26.42 0.00 0.68 ind:pas:1s; +débattit débattre ver 8.63 26.42 0.01 1.28 ind:pas:3s; +débattons débattre ver 8.63 26.42 0.33 0.27 imp:pre:1p;ind:pre:1p; +débattra débattre ver 8.63 26.42 0.01 0.07 ind:fut:3s; +débattraient débattre ver 8.63 26.42 0.00 0.07 cnd:pre:3p; +débattrais débattre ver 8.63 26.42 0.02 0.07 cnd:pre:1s; +débattrait débattre ver 8.63 26.42 0.02 0.34 cnd:pre:3s; +débattre débattre ver 8.63 26.42 2.64 5.27 inf; +débattrons débattre ver 8.63 26.42 0.17 0.07 ind:fut:1p; +débattu débattre ver m s 8.63 26.42 1.05 1.62 par:pas; +débattue débattre ver f s 8.63 26.42 0.73 0.95 par:pas; +débattues débattre ver f p 8.63 26.42 0.01 0.20 par:pas; +débattus débattre ver m p 8.63 26.42 0.07 0.34 par:pas; +débauchais débaucher ver 0.80 1.69 0.00 0.07 ind:imp:1s; +débauchait débaucher ver 0.80 1.69 0.00 0.07 ind:imp:3s; +débauchant débaucher ver 0.80 1.69 0.00 0.07 par:pre; +débauche débauche nom f s 2.87 9.39 2.72 7.16 +débaucher débaucher ver 0.80 1.69 0.19 0.61 inf; +débauches débauche nom f p 2.87 9.39 0.14 2.23 +débaucheur débaucheur nom m s 0.02 0.00 0.01 0.00 +débaucheurs débaucheur nom m p 0.02 0.00 0.01 0.00 +débauché débauché nom m s 1.09 1.35 0.62 0.74 +débauchée débauché nom f s 1.09 1.35 0.24 0.00 +débauchées débauché nom f p 1.09 1.35 0.11 0.00 +débauchés débauché nom m p 1.09 1.35 0.12 0.61 +débecquetait débecqueter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +débectage débectage nom m s 0.00 0.07 0.00 0.07 +débectait débecter ver 0.46 1.89 0.00 0.20 ind:imp:3s; +débectance débectance nom f s 0.00 0.20 0.00 0.20 +débectant débecter ver 0.46 1.89 0.04 0.14 par:pre; +débecte débecter ver 0.46 1.89 0.23 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débectent débecter ver 0.46 1.89 0.01 0.14 ind:pre:3p; +débecter débecter ver 0.46 1.89 0.01 0.00 inf; +débecterais débecter ver 0.46 1.89 0.00 0.07 cnd:pre:1s; +débectez débecter ver 0.46 1.89 0.16 0.00 ind:pre:2p; +débecté débecter ver m s 0.46 1.89 0.00 0.14 par:pas; +débectée débecter ver f s 0.46 1.89 0.00 0.20 par:pas; +débectés débecter ver m p 0.46 1.89 0.00 0.07 par:pas; +débiffé débiffer ver m s 0.00 0.07 0.00 0.07 par:pas; +débile débile adj s 21.09 4.66 17.80 3.11 +débilement débilement adv 0.02 0.00 0.02 0.00 +débiles débile nom p 11.99 2.91 3.66 1.55 +débilitaient débiliter ver 0.00 0.54 0.00 0.07 ind:imp:3p; +débilitant débilitant adj m s 0.16 0.27 0.04 0.14 +débilitante débilitant adj f s 0.16 0.27 0.05 0.14 +débilitantes débilitant adj f p 0.16 0.27 0.06 0.00 +débilitation débilitation nom f s 0.00 0.14 0.00 0.14 +débilite débiliter ver 0.00 0.54 0.00 0.07 ind:pre:3s; +débilité débilité nom f s 0.34 0.88 0.27 0.74 +débilitée débiliter ver f s 0.00 0.54 0.00 0.07 par:pas; +débilités débilité nom f p 0.34 0.88 0.08 0.14 +débiller débiller ver 0.00 0.07 0.00 0.07 inf; +débinait débiner ver 2.35 3.18 0.00 0.14 ind:imp:3s; +débine débiner ver 2.35 3.18 0.98 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débinent débiner ver 2.35 3.18 0.39 0.20 ind:pre:3p; +débiner débiner ver 2.35 3.18 0.27 1.35 inf; +débinera débiner ver 2.35 3.18 0.00 0.07 ind:fut:3s; +débinerai débiner ver 2.35 3.18 0.02 0.00 ind:fut:1s; +débinerait débiner ver 2.35 3.18 0.02 0.07 cnd:pre:3s; +débineras débiner ver 2.35 3.18 0.01 0.00 ind:fut:2s; +débines débiner ver 2.35 3.18 0.27 0.07 ind:pre:2s; +débineurs débineur nom m p 0.00 0.14 0.00 0.07 +débineuses débineur nom f p 0.00 0.14 0.00 0.07 +débinez débiner ver 2.35 3.18 0.02 0.14 imp:pre:2p;ind:pre:2p; +débiné débiner ver m s 2.35 3.18 0.26 0.14 par:pas; +débinées débiner ver f p 2.35 3.18 0.00 0.07 par:pas; +débinés débiner ver m p 2.35 3.18 0.10 0.07 par:pas; +débit débit nom m s 1.24 6.35 1.10 5.27 +débita débiter ver 1.87 14.46 0.00 0.54 ind:pas:3s; +débitage débitage nom m s 0.00 0.07 0.00 0.07 +débitai débiter ver 1.87 14.46 0.00 0.20 ind:pas:1s; +débitaient débiter ver 1.87 14.46 0.01 0.54 ind:imp:3p; +débitais débiter ver 1.87 14.46 0.00 0.20 ind:imp:1s; +débitait débiter ver 1.87 14.46 0.04 2.50 ind:imp:3s; +débitant débiter ver 1.87 14.46 0.04 1.01 par:pre; +débitants débitant nom m p 0.00 0.27 0.00 0.07 +dubitatif dubitatif adj m s 0.09 2.30 0.07 1.15 +dubitatifs dubitatif adj m p 0.09 2.30 0.01 0.20 +dubitation dubitation nom f s 0.00 0.14 0.00 0.07 +dubitations dubitation nom f p 0.00 0.14 0.00 0.07 +dubitative dubitatif adj f s 0.09 2.30 0.00 0.74 +dubitativement dubitativement adv 0.00 0.14 0.00 0.14 +dubitatives dubitatif adj f p 0.09 2.30 0.00 0.20 +débite débiter ver 1.87 14.46 0.34 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débitent débiter ver 1.87 14.46 0.14 0.20 ind:pre:3p; +débiter débiter ver 1.87 14.46 0.82 3.45 inf; +débitera débiter ver 1.87 14.46 0.00 0.20 ind:fut:3s; +débiterai débiter ver 1.87 14.46 0.01 0.07 ind:fut:1s; +débiterait débiter ver 1.87 14.46 0.00 0.14 cnd:pre:3s; +débites débiter ver 1.87 14.46 0.02 0.14 ind:pre:2s; +débiteur débiteur nom m s 1.28 0.61 0.75 0.27 +débiteurs débiteur nom m p 1.28 0.61 0.54 0.34 +débitez débiter ver 1.87 14.46 0.24 0.00 imp:pre:2p;ind:pre:2p; +débitrice débiteur adj f s 0.21 0.27 0.00 0.07 +débits débit nom m p 1.24 6.35 0.14 1.08 +débité débiter ver m s 1.87 14.46 0.14 0.95 par:pas; +débitée débiter ver f s 1.87 14.46 0.06 0.41 par:pas; +débitées débiter ver f p 1.87 14.46 0.00 0.81 par:pas; +débités débiter ver m p 1.87 14.46 0.01 0.34 par:pas; +déblai déblai nom m s 0.00 0.74 0.00 0.47 +déblaie déblayer ver 0.96 4.19 0.05 0.20 imp:pre:2s;ind:pre:3s; +déblaiement déblaiement nom m s 0.14 0.74 0.14 0.74 +déblaient déblayer ver 0.96 4.19 0.02 0.14 ind:pre:3p; +déblaierez déblayer ver 0.96 4.19 0.00 0.07 ind:fut:2p; +déblais déblai nom m p 0.00 0.74 0.00 0.27 +déblatère déblatérer ver 0.32 0.47 0.07 0.07 ind:pre:3s; +déblatérait déblatérer ver 0.32 0.47 0.04 0.07 ind:imp:3s; +déblatérant déblatérer ver 0.32 0.47 0.01 0.14 par:pre; +déblatérations déblatération nom f p 0.00 0.07 0.00 0.07 +déblatérer déblatérer ver 0.32 0.47 0.20 0.20 inf; +déblaya déblayer ver 0.96 4.19 0.00 0.07 ind:pas:3s; +déblayage déblayage nom m s 0.09 0.14 0.09 0.14 +déblayaient déblayer ver 0.96 4.19 0.00 0.54 ind:imp:3p; +déblayait déblayer ver 0.96 4.19 0.01 0.47 ind:imp:3s; +déblayant déblayer ver 0.96 4.19 0.00 0.27 par:pre; +déblayer déblayer ver 0.96 4.19 0.45 1.55 inf; +déblayera déblayer ver 0.96 4.19 0.00 0.07 ind:fut:3s; +déblayeur déblayeur adj m s 0.01 0.00 0.01 0.00 +déblayeurs déblayeur nom m p 0.00 0.07 0.00 0.07 +déblayez déblayer ver 0.96 4.19 0.11 0.00 imp:pre:2p;ind:pre:2p; +déblayé déblayer ver m s 0.96 4.19 0.31 0.54 par:pas; +déblayée déblayer ver f s 0.96 4.19 0.00 0.07 par:pas; +déblayées déblayer ver f p 0.96 4.19 0.00 0.14 par:pas; +déblayés déblayer ver m p 0.96 4.19 0.01 0.07 par:pas; +déblocage déblocage nom m s 0.05 0.27 0.05 0.20 +déblocages déblocage nom m p 0.05 0.27 0.00 0.07 +débloqua débloquer ver 6.07 4.73 0.00 0.27 ind:pas:3s; +débloquait débloquer ver 6.07 4.73 0.01 0.20 ind:imp:3s; +débloquant débloquer ver 6.07 4.73 0.01 0.14 par:pre; +débloque débloquer ver 6.07 4.73 1.38 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débloquent débloquer ver 6.07 4.73 0.23 0.07 ind:pre:3p; +débloquer débloquer ver 6.07 4.73 0.77 1.55 inf; +débloques débloquer ver 6.07 4.73 2.20 0.34 ind:pre:2s; +débloquez débloquer ver 6.07 4.73 0.80 0.07 imp:pre:2p;ind:pre:2p; +débloquât débloquer ver 6.07 4.73 0.00 0.07 sub:imp:3s; +débloqué débloquer ver m s 6.07 4.73 0.42 0.54 par:pas; +débloquée débloquer ver f s 6.07 4.73 0.04 0.14 par:pas; +débloqués débloquer ver m p 6.07 4.73 0.22 0.00 par:pas; +déboîta déboîter ver 0.96 1.08 0.00 0.07 ind:pas:3s; +déboîtaient déboîter ver 0.96 1.08 0.01 0.07 ind:imp:3p; +déboîtais déboîter ver 0.96 1.08 0.01 0.07 ind:imp:1s; +déboîtait déboîter ver 0.96 1.08 0.00 0.07 ind:imp:3s; +déboîtant déboîter ver 0.96 1.08 0.00 0.07 par:pre; +déboîte déboîter ver 0.96 1.08 0.13 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboîtement déboîtement nom m s 0.01 0.00 0.01 0.00 +déboîter déboîter ver 0.96 1.08 0.22 0.20 inf; +déboîtez déboîter ver 0.96 1.08 0.02 0.07 imp:pre:2p;ind:pre:2p; +déboîté déboîter ver m s 0.96 1.08 0.32 0.27 par:pas; +déboîtée déboîter ver f s 0.96 1.08 0.25 0.00 par:pas; +déboîtées déboîter ver f p 0.96 1.08 0.00 0.07 par:pas; +débobinage débobinage nom m s 0.00 0.07 0.00 0.07 +débobiner débobiner ver 0.00 0.07 0.00 0.07 inf; +débâcle débâcle nom f s 0.89 6.69 0.76 6.49 +débâcles débâcle nom f p 0.89 6.69 0.14 0.20 +débogage débogage nom m s 0.01 0.00 0.01 0.00 +déboguer déboguer ver 0.04 0.00 0.04 0.00 inf; +débâillonné débâillonner ver m s 0.00 0.07 0.00 0.07 par:pas; +déboire déboire nom m s 0.43 3.51 0.00 0.20 +déboires déboire nom m p 0.43 3.51 0.43 3.31 +déboisement déboisement nom m s 0.01 0.00 0.01 0.00 +déboiser déboiser ver 0.04 0.54 0.01 0.07 inf; +déboisé déboiser ver m s 0.04 0.54 0.02 0.20 par:pas; +déboisée déboiser ver f s 0.04 0.54 0.00 0.20 par:pas; +déboisées déboiser ver f p 0.04 0.54 0.01 0.07 par:pas; +débonda débonder ver 0.00 0.61 0.00 0.14 ind:pas:3s; +débondait débonder ver 0.00 0.61 0.00 0.27 ind:imp:3s; +débondant débonder ver 0.00 0.61 0.00 0.07 par:pre; +débonder débonder ver 0.00 0.61 0.00 0.07 inf; +débondé débonder ver m s 0.00 0.61 0.00 0.07 par:pas; +débonnaire débonnaire adj s 0.11 3.11 0.06 2.64 +débonnaires débonnaire adj p 0.11 3.11 0.05 0.47 +débord débord nom m s 0.00 0.14 0.00 0.14 +déborda déborder ver 15.75 31.62 0.01 0.61 ind:pas:3s; +débordaient déborder ver 15.75 31.62 0.02 3.04 ind:imp:3p; +débordais déborder ver 15.75 31.62 0.21 0.20 ind:imp:1s;ind:imp:2s; +débordait déborder ver 15.75 31.62 0.67 4.86 ind:imp:3s; +débordant déborder ver 15.75 31.62 0.52 5.14 par:pre; +débordante débordant adj f s 1.13 4.66 0.84 1.76 +débordantes débordant adj f p 1.13 4.66 0.14 0.74 +débordants débordant adj m p 1.13 4.66 0.04 0.81 +déborde déborder ver 15.75 31.62 2.31 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débordement débordement nom m s 0.94 3.78 0.62 2.09 +débordements débordement nom m p 0.94 3.78 0.32 1.69 +débordent déborder ver 15.75 31.62 0.69 1.96 ind:pre:3p; +déborder déborder ver 15.75 31.62 1.78 3.92 inf; +débordera déborder ver 15.75 31.62 0.04 0.00 ind:fut:3s; +déborderaient déborder ver 15.75 31.62 0.14 0.14 cnd:pre:3p; +déborderait déborder ver 15.75 31.62 0.01 0.20 cnd:pre:3s; +débordez déborder ver 15.75 31.62 0.06 0.00 imp:pre:2p;ind:pre:2p; +débordât déborder ver 15.75 31.62 0.00 0.14 sub:imp:3s; +débordèrent déborder ver 15.75 31.62 0.00 0.14 ind:pas:3p; +débordé déborder ver m s 15.75 31.62 4.16 3.11 par:pas; +débordée déborder ver f s 15.75 31.62 1.98 1.08 par:pas; +débordées déborder ver f p 15.75 31.62 0.24 0.41 par:pas; +débordés déborder ver m p 15.75 31.62 2.94 1.08 par:pas; +débottelons débotteler ver 0.00 0.07 0.00 0.07 ind:pre:1p; +débotté débotté nom m s 0.16 0.07 0.16 0.07 +débâté débâter ver m s 0.00 0.14 0.00 0.07 par:pas; +débâtées débâter ver f p 0.00 0.14 0.00 0.07 par:pas; +déboucha déboucher ver 4.21 33.45 0.01 4.12 ind:pas:3s; +débouchage débouchage nom m s 0.01 0.00 0.01 0.00 +débouchai déboucher ver 4.21 33.45 0.00 0.34 ind:pas:1s; +débouchaient déboucher ver 4.21 33.45 0.01 1.62 ind:imp:3p; +débouchais déboucher ver 4.21 33.45 0.00 0.20 ind:imp:1s; +débouchait déboucher ver 4.21 33.45 0.16 4.39 ind:imp:3s; +débouchant déboucher ver 4.21 33.45 0.04 3.04 par:pre; +débouche déboucher ver 4.21 33.45 1.97 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débouchent déboucher ver 4.21 33.45 0.14 1.69 ind:pre:3p; +déboucher déboucher ver 4.21 33.45 0.78 6.22 inf; +débouchera déboucher ver 4.21 33.45 0.11 0.07 ind:fut:3s; +déboucherai déboucher ver 4.21 33.45 0.10 0.07 ind:fut:1s; +déboucheraient déboucher ver 4.21 33.45 0.01 0.07 cnd:pre:3p; +déboucherait déboucher ver 4.21 33.45 0.00 0.34 cnd:pre:3s; +déboucherez déboucher ver 4.21 33.45 0.01 0.00 ind:fut:2p; +déboucheur déboucheur nom m s 0.11 0.20 0.07 0.14 +déboucheurs déboucheur nom m p 0.11 0.20 0.04 0.07 +débouchez déboucher ver 4.21 33.45 0.10 0.00 imp:pre:2p;ind:pre:2p; +débouchions déboucher ver 4.21 33.45 0.00 0.07 ind:imp:1p; +débouchoir débouchoir nom m s 0.02 0.00 0.01 0.00 +débouchoirs débouchoir nom m p 0.02 0.00 0.01 0.00 +débouchâmes déboucher ver 4.21 33.45 0.01 0.27 ind:pas:1p; +débouchons déboucher ver 4.21 33.45 0.12 0.54 imp:pre:1p;ind:pre:1p; +débouchèrent déboucher ver 4.21 33.45 0.00 1.49 ind:pas:3p; +débouché déboucher ver m s 4.21 33.45 0.42 2.09 par:pas; +débouchée déboucher ver f s 4.21 33.45 0.16 0.20 par:pas; +débouchées déboucher ver f p 4.21 33.45 0.05 0.07 par:pas; +débouchés débouché nom m p 0.56 3.51 0.54 1.01 +déboucla déboucler ver 0.05 2.91 0.00 0.20 ind:pas:3s; +débouclaient déboucler ver 0.05 2.91 0.00 0.07 ind:imp:3p; +débouclait déboucler ver 0.05 2.91 0.00 0.20 ind:imp:3s; +débouclant déboucler ver 0.05 2.91 0.00 0.47 par:pre; +déboucle déboucler ver 0.05 2.91 0.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débouclent déboucler ver 0.05 2.91 0.00 0.20 ind:pre:3p; +déboucler déboucler ver 0.05 2.91 0.00 0.68 inf; +débouclez déboucler ver 0.05 2.91 0.01 0.14 imp:pre:2p; +débouclions déboucler ver 0.05 2.91 0.00 0.07 ind:imp:1p; +débouclèrent déboucler ver 0.05 2.91 0.00 0.07 ind:pas:3p; +débouclé déboucler ver m s 0.05 2.91 0.02 0.34 par:pas; +débouclées déboucler ver f p 0.05 2.91 0.00 0.07 par:pas; +débouclés déboucler ver m p 0.05 2.91 0.00 0.07 par:pas; +déboula débouler ver 1.94 6.22 0.01 0.41 ind:pas:3s; +déboulai débouler ver 1.94 6.22 0.00 0.07 ind:pas:1s; +déboulaient débouler ver 1.94 6.22 0.00 0.61 ind:imp:3p; +déboulais débouler ver 1.94 6.22 0.02 0.14 ind:imp:1s; +déboulait débouler ver 1.94 6.22 0.11 0.61 ind:imp:3s; +déboulant débouler ver 1.94 6.22 0.02 0.47 par:pre; +déboule débouler ver 1.94 6.22 0.75 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboulent débouler ver 1.94 6.22 0.08 0.47 ind:pre:3p; +débouler débouler ver 1.94 6.22 0.35 1.01 inf; +déboulerais débouler ver 1.94 6.22 0.01 0.07 cnd:pre:1s; +déboulerait débouler ver 1.94 6.22 0.00 0.07 cnd:pre:3s; +débouleront débouler ver 1.94 6.22 0.02 0.00 ind:fut:3p; +déboulez débouler ver 1.94 6.22 0.02 0.00 ind:pre:2p; +débouliez débouler ver 1.94 6.22 0.01 0.00 ind:imp:2p; +déboulions débouler ver 1.94 6.22 0.00 0.07 ind:imp:1p; +déboulonnant déboulonner ver 0.02 0.95 0.00 0.07 par:pre; +déboulonner déboulonner ver 0.02 0.95 0.00 0.27 inf; +déboulonnez déboulonner ver 0.02 0.95 0.01 0.00 imp:pre:2p; +déboulonné déboulonner ver m s 0.02 0.95 0.01 0.20 par:pas; +déboulonnée déboulonner ver f s 0.02 0.95 0.00 0.27 par:pas; +déboulonnées déboulonner ver f p 0.02 0.95 0.00 0.14 par:pas; +déboulèrent débouler ver 1.94 6.22 0.00 0.07 ind:pas:3p; +déboulé débouler ver m s 1.94 6.22 0.51 0.68 par:pas; +déboulés débouler ver m p 1.94 6.22 0.01 0.07 par:pas; +débouquaient débouquer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +débouqué débouquer ver m s 0.00 0.14 0.00 0.07 par:pas; +débourrage débourrage nom m s 0.00 0.07 0.00 0.07 +débourre débourrer ver 0.02 0.54 0.00 0.07 ind:pre:3s; +débourrent débourrer ver 0.02 0.54 0.00 0.07 ind:pre:3p; +débourrer débourrer ver 0.02 0.54 0.02 0.27 inf; +débourré débourrer ver m s 0.02 0.54 0.00 0.07 par:pas; +débourrée débourrer ver f s 0.02 0.54 0.00 0.07 par:pas; +débours débours nom m 0.01 0.20 0.01 0.20 +débourse débourser ver 1.02 0.54 0.04 0.07 ind:pre:1s;ind:pre:3s; +déboursement déboursement nom m s 0.01 0.00 0.01 0.00 +débourser débourser ver 1.02 0.54 0.66 0.20 inf; +déboursera débourser ver 1.02 0.54 0.01 0.07 ind:fut:3s; +débourseront débourser ver 1.02 0.54 0.01 0.00 ind:fut:3p; +déboursé débourser ver m s 1.02 0.54 0.29 0.14 par:pas; +déboursées débourser ver f p 1.02 0.54 0.00 0.07 par:pas; +déboussolait déboussoler ver 1.73 1.42 0.00 0.07 ind:imp:3s; +déboussolantes déboussolant adj f p 0.00 0.07 0.00 0.07 +déboussoler déboussoler ver 1.73 1.42 0.01 0.07 inf; +déboussolé déboussoler ver m s 1.73 1.42 0.82 0.54 par:pas; +déboussolée déboussoler ver f s 1.73 1.42 0.77 0.20 par:pas; +déboussolées déboussoler ver f p 1.73 1.42 0.01 0.07 par:pas; +déboussolés déboussoler ver m p 1.73 1.42 0.12 0.47 par:pas; +déboutait débouter ver 0.12 0.34 0.00 0.07 ind:imp:3s; +débouter débouter ver 0.12 0.34 0.05 0.07 inf; +déboutonna déboutonner ver 1.33 8.24 0.01 1.22 ind:pas:3s; +déboutonnage déboutonnage nom m s 0.27 0.07 0.27 0.07 +déboutonnait déboutonner ver 1.33 8.24 0.03 0.61 ind:imp:3s; +déboutonnant déboutonner ver 1.33 8.24 0.01 0.41 par:pre; +déboutonne déboutonner ver 1.33 8.24 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboutonnent déboutonner ver 1.33 8.24 0.01 0.07 ind:pre:3p; +déboutonner déboutonner ver 1.33 8.24 0.31 1.42 inf; +déboutonnez déboutonner ver 1.33 8.24 0.04 0.07 imp:pre:2p; +déboutonnât déboutonner ver 1.33 8.24 0.00 0.07 sub:imp:3s; +déboutonné déboutonner ver m s 1.33 8.24 0.57 2.16 par:pas; +déboutonnée déboutonner ver f s 1.33 8.24 0.06 0.81 par:pas; +déboutonnées déboutonner ver f p 1.33 8.24 0.00 0.47 par:pas; +déboutonnés déboutonner ver m p 1.33 8.24 0.00 0.14 par:pas; +débouté débouter ver m s 0.12 0.34 0.06 0.07 par:pas; +déboutée débouter ver f s 0.12 0.34 0.01 0.14 par:pas; +débraguette débraguetter ver 0.01 0.54 0.00 0.07 ind:pre:3s; +débraguettent débraguetter ver 0.01 0.54 0.00 0.07 ind:pre:3p; +débraguetter débraguetter ver 0.01 0.54 0.00 0.14 inf; +débraguetté débraguetter ver m s 0.01 0.54 0.01 0.14 par:pas; +débraguettés débraguetter ver m p 0.01 0.54 0.00 0.14 par:pas; +débraillé débraillé nom m s 0.43 1.55 0.26 1.35 +débraillée débraillé adj f s 0.21 1.42 0.02 0.20 +débraillées débraillé adj f p 0.21 1.42 0.01 0.07 +débraillés débraillé nom m p 0.43 1.55 0.16 0.14 +débrancha débrancher ver 6.09 3.31 0.00 0.54 ind:pas:3s; +débranchant débrancher ver 6.09 3.31 0.04 0.00 par:pre; +débranche débrancher ver 6.09 3.31 1.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débranchement débranchement nom m s 0.02 0.00 0.02 0.00 +débranchent débrancher ver 6.09 3.31 0.06 0.00 ind:pre:3p; +débrancher débrancher ver 6.09 3.31 2.27 0.81 inf; +débrancherai débrancher ver 6.09 3.31 0.02 0.07 ind:fut:1s; +débrancherais débrancher ver 6.09 3.31 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +débrancherait débrancher ver 6.09 3.31 0.02 0.14 cnd:pre:3s; +débranchez débrancher ver 6.09 3.31 0.40 0.07 imp:pre:2p;ind:pre:2p; +débranchons débrancher ver 6.09 3.31 0.12 0.00 imp:pre:1p;ind:pre:1p; +débranché débrancher ver m s 6.09 3.31 1.38 0.74 par:pas; +débranchée débrancher ver f s 6.09 3.31 0.30 0.07 par:pas; +débranchées débrancher ver f p 6.09 3.31 0.02 0.00 par:pas; +débranchés débrancher ver m p 6.09 3.31 0.10 0.20 par:pas; +débraya débrayer ver 0.07 1.42 0.00 0.14 ind:pas:3s; +débrayage débrayage nom m s 0.04 0.47 0.04 0.41 +débrayages débrayage nom m p 0.04 0.47 0.00 0.07 +débrayait débrayer ver 0.07 1.42 0.00 0.20 ind:imp:3s; +débraye débrayer ver 0.07 1.42 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débrayent débrayer ver 0.07 1.42 0.00 0.07 ind:pre:3p; +débrayer débrayer ver 0.07 1.42 0.01 0.47 inf; +débrayes débrayer ver 0.07 1.42 0.01 0.07 ind:pre:2s; +débrayez débrayer ver 0.07 1.42 0.02 0.00 imp:pre:2p;ind:pre:2p; +débrayé débrayer ver m s 0.07 1.42 0.01 0.27 par:pas; +débrayée débrayer ver f s 0.07 1.42 0.00 0.07 par:pas; +débridait débrider ver 0.28 1.69 0.00 0.07 ind:imp:3s; +débridant débrider ver 0.28 1.69 0.00 0.07 par:pre; +débride débrider ver 0.28 1.69 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débridement débridement nom m s 0.04 0.00 0.04 0.00 +débrider débrider ver 0.28 1.69 0.04 0.74 inf; +débridera débrider ver 0.28 1.69 0.00 0.07 ind:fut:3s; +débriderai débrider ver 0.28 1.69 0.01 0.07 ind:fut:1s; +débriderait débrider ver 0.28 1.69 0.00 0.07 cnd:pre:3s; +débridez débrider ver 0.28 1.69 0.06 0.00 imp:pre:2p;ind:pre:2p; +débridé débrider ver m s 0.28 1.69 0.06 0.20 par:pas; +débridée débridé adj f s 0.39 0.95 0.28 0.47 +débridées débridé adj f p 0.39 0.95 0.02 0.27 +débridés débridé adj m p 0.39 0.95 0.06 0.07 +débriefer débriefer ver 0.19 0.00 0.11 0.00 inf; +débriefing débriefing nom m s 0.58 0.00 0.58 0.00 +débriefé débriefer ver m s 0.19 0.00 0.06 0.00 par:pas; +débriefée débriefer ver f s 0.19 0.00 0.03 0.00 par:pas; +débris débris nom m 4.94 13.85 4.94 13.85 +débronzer débronzer ver 0.02 0.00 0.02 0.00 inf; +débrouilla débrouiller ver 46.72 20.81 0.03 0.14 ind:pas:3s; +débrouillage débrouillage nom m s 0.00 0.14 0.00 0.14 +débrouillai débrouiller ver 46.72 20.81 0.00 0.07 ind:pas:1s; +débrouillaient débrouiller ver 46.72 20.81 0.01 0.54 ind:imp:3p; +débrouillais débrouiller ver 46.72 20.81 0.51 0.34 ind:imp:1s;ind:imp:2s; +débrouillait débrouiller ver 46.72 20.81 0.53 1.15 ind:imp:3s; +débrouillant débrouiller ver 46.72 20.81 0.01 0.14 par:pre; +débrouillard débrouillard adj m s 0.58 1.28 0.38 0.74 +débrouillarde débrouillard adj f s 0.58 1.28 0.16 0.34 +débrouillardise débrouillardise nom f s 0.00 0.34 0.00 0.34 +débrouillards débrouillard adj m p 0.58 1.28 0.04 0.20 +débrouille débrouiller ver 46.72 20.81 12.63 4.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +débrouillent débrouiller ver 46.72 20.81 0.98 1.08 ind:pre:3p; +débrouiller débrouiller ver 46.72 20.81 12.71 5.68 inf;; +débrouillera débrouiller ver 46.72 20.81 2.36 0.74 ind:fut:3s; +débrouillerai débrouiller ver 46.72 20.81 4.13 1.35 ind:fut:1s; +débrouilleraient débrouiller ver 46.72 20.81 0.00 0.14 cnd:pre:3p; +débrouillerais débrouiller ver 46.72 20.81 0.23 0.20 cnd:pre:1s;cnd:pre:2s; +débrouillerait débrouiller ver 46.72 20.81 0.05 0.27 cnd:pre:3s; +débrouilleras débrouiller ver 46.72 20.81 0.77 0.00 ind:fut:2s; +débrouillerez débrouiller ver 46.72 20.81 0.28 0.41 ind:fut:2p; +débrouillerions débrouiller ver 46.72 20.81 0.00 0.07 cnd:pre:1p; +débrouillerons débrouiller ver 46.72 20.81 0.20 0.00 ind:fut:1p; +débrouilleront débrouiller ver 46.72 20.81 0.12 0.20 ind:fut:3p; +débrouilles débrouiller ver 46.72 20.81 3.45 0.61 ind:pre:2s; +débrouilleurs débrouilleur nom m p 0.01 0.00 0.01 0.00 +débrouillez débrouiller ver 46.72 20.81 3.27 1.22 imp:pre:2p;ind:pre:2p; +débrouilliez débrouiller ver 46.72 20.81 0.02 0.00 ind:imp:2p; +débrouillions débrouiller ver 46.72 20.81 0.01 0.07 ind:imp:1p; +débrouillons débrouiller ver 46.72 20.81 0.06 0.07 imp:pre:1p;ind:pre:1p; +débrouillât débrouiller ver 46.72 20.81 0.00 0.07 sub:imp:3s; +débrouillé débrouiller ver m s 46.72 20.81 2.36 1.22 par:pas; +débrouillée débrouiller ver f s 46.72 20.81 1.61 0.27 par:pas; +débrouillées débrouiller ver f p 46.72 20.81 0.04 0.07 par:pas; +débrouillés débrouiller ver m p 46.72 20.81 0.36 0.47 par:pas; +débroussaillage débroussaillage nom m s 0.01 0.14 0.01 0.14 +débroussaille débroussailler ver 0.14 0.54 0.00 0.20 ind:pre:1s;ind:pre:3s; +débroussailler débroussailler ver 0.14 0.54 0.14 0.20 inf; +débroussailleuse débroussailleur nom f s 0.03 0.07 0.03 0.07 +débroussaillé débroussailler ver m s 0.14 0.54 0.00 0.14 par:pas; +débucher débucher nom m s 0.00 0.07 0.00 0.07 +débusquaient débusquer ver 1.43 2.50 0.00 0.07 ind:imp:3p; +débusquait débusquer ver 1.43 2.50 0.01 0.27 ind:imp:3s; +débusquant débusquer ver 1.43 2.50 0.00 0.07 par:pre; +débusque débusquer ver 1.43 2.50 0.15 0.07 ind:pre:1s;ind:pre:3s; +débusquer débusquer ver 1.43 2.50 0.89 1.49 inf; +débusquerait débusquer ver 1.43 2.50 0.01 0.07 cnd:pre:3s; +débusquerons débusquer ver 1.43 2.50 0.01 0.00 ind:fut:1p; +débusquez débusquer ver 1.43 2.50 0.02 0.00 imp:pre:2p; +débusquèrent débusquer ver 1.43 2.50 0.00 0.07 ind:pas:3p; +débusqué débusquer ver m s 1.43 2.50 0.33 0.14 par:pas; +débusquée débusquer ver f s 1.43 2.50 0.00 0.07 par:pas; +débusqués débusquer ver m p 1.43 2.50 0.02 0.20 par:pas; +début début nom m s 114.31 141.49 109.88 128.51 +débuta débuter ver 10.08 7.16 0.42 0.68 ind:pas:3s; +débutai débuter ver 10.08 7.16 0.00 0.07 ind:pas:1s; +débutaient débuter ver 10.08 7.16 0.02 0.14 ind:imp:3p; +débutais débuter ver 10.08 7.16 0.02 0.27 ind:imp:1s; +débutait débuter ver 10.08 7.16 0.23 1.22 ind:imp:3s; +débutant débutant nom m s 5.82 2.57 2.32 1.08 +débutante débutant nom f s 5.82 2.57 1.21 0.61 +débutantes débutant nom f p 5.82 2.57 0.65 0.27 +débutants débutant nom m p 5.82 2.57 1.64 0.61 +débute débuter ver 10.08 7.16 2.77 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débutent débuter ver 10.08 7.16 0.49 0.20 ind:pre:3p; +débuter débuter ver 10.08 7.16 1.72 0.88 inf; +débutera débuter ver 10.08 7.16 0.28 0.00 ind:fut:3s; +débuteraient débuter ver 10.08 7.16 0.01 0.00 cnd:pre:3p; +débutes débuter ver 10.08 7.16 0.11 0.00 ind:pre:2s; +débutez débuter ver 10.08 7.16 0.09 0.00 imp:pre:2p;ind:pre:2p; +débutiez débuter ver 10.08 7.16 0.02 0.07 ind:imp:2p; +débutons débuter ver 10.08 7.16 0.17 0.00 imp:pre:1p;ind:pre:1p; +débuts début nom m p 114.31 141.49 4.43 12.97 +débutèrent débuter ver 10.08 7.16 0.04 0.00 ind:pas:3p; +débuté débuter ver m s 10.08 7.16 3.41 1.89 par:pas; +débutée débuter ver f s 10.08 7.16 0.02 0.00 par:pas; +déc déc nom s 0.30 0.00 0.30 0.00 +duc duc nom m s 12.40 23.51 7.66 14.80 +déca déca nom m s 1.16 0.07 1.16 0.07 +décabosser décabosser ver 0.01 0.00 0.01 0.00 inf; +décacheta décacheter ver 0.01 2.43 0.00 0.41 ind:pas:3s; +décachetage décachetage nom m s 0.01 0.00 0.01 0.00 +décachetai décacheter ver 0.01 2.43 0.00 0.14 ind:pas:1s; +décachetaient décacheter ver 0.01 2.43 0.00 0.07 ind:imp:3p; +décachetais décacheter ver 0.01 2.43 0.00 0.07 ind:imp:1s; +décachetant décacheter ver 0.01 2.43 0.00 0.14 par:pre; +décacheter décacheter ver 0.01 2.43 0.00 0.34 inf; +décachetons décacheter ver 0.01 2.43 0.01 0.00 imp:pre:1p; +décachette décacheter ver 0.01 2.43 0.00 0.14 ind:pre:1s;ind:pre:3s; +décachetteraient décacheter ver 0.01 2.43 0.00 0.07 cnd:pre:3p; +décacheté décacheter ver m s 0.01 2.43 0.00 0.47 par:pas; +décachetée décacheter ver f s 0.01 2.43 0.00 0.27 par:pas; +décachetées décacheter ver f p 0.01 2.43 0.00 0.34 par:pas; +décade décade nom f s 0.16 1.15 0.13 0.74 +décadence décadence nom f s 1.28 4.73 1.28 4.73 +décadent décadent adj m s 1.47 1.35 0.60 0.47 +décadente décadent adj f s 1.47 1.35 0.68 0.20 +décadentes décadent adj f p 1.47 1.35 0.13 0.20 +décadentisme décadentisme nom m s 0.00 0.07 0.00 0.07 +décadents décadent adj m p 1.47 1.35 0.06 0.47 +décades décade nom f p 0.16 1.15 0.03 0.41 +décadi décadi nom m s 0.00 0.34 0.00 0.27 +décadis décadi nom m p 0.00 0.34 0.00 0.07 +décaféiné décaféiné nom m s 0.22 0.07 0.22 0.07 +décaféinée décaféiner ver f s 0.06 0.07 0.01 0.00 par:pas; +décaissement décaissement nom m s 0.01 0.00 0.01 0.00 +décaisser décaisser ver 0.00 0.14 0.00 0.14 inf; +ducal ducal adj m s 0.23 1.08 0.02 0.54 +décalage décalage nom m s 2.09 3.92 2.04 3.65 +décalages décalage nom m p 2.09 3.92 0.04 0.27 +décalaminé décalaminer ver m s 0.00 0.07 0.00 0.07 par:pas; +décalant décaler ver 1.36 1.42 0.00 0.07 par:pre; +décalcification décalcification nom f s 0.01 0.00 0.01 0.00 +décalcifié décalcifier ver m s 0.00 0.20 0.00 0.07 par:pas; +décalcifiée décalcifier ver f s 0.00 0.20 0.00 0.14 par:pas; +décalcomanie décalcomanie nom f s 0.29 0.61 0.17 0.41 +décalcomanies décalcomanie nom f p 0.29 0.61 0.12 0.20 +décale décaler ver 1.36 1.42 0.11 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ducale ducal adj f s 0.23 1.08 0.11 0.47 +décalent décaler ver 1.36 1.42 0.00 0.07 ind:pre:3p; +décaler décaler ver 1.36 1.42 0.47 0.20 inf; +ducales ducal adj f p 0.23 1.08 0.00 0.07 +décalez décaler ver 1.36 1.42 0.17 0.00 imp:pre:2p; +décalitre décalitre nom m s 0.11 0.14 0.00 0.07 +décalitres décalitre nom m p 0.11 0.14 0.11 0.07 +décalogue décalogue nom m s 0.01 0.20 0.01 0.20 +décalotta décalotter ver 0.00 0.34 0.00 0.07 ind:pas:3s; +décalotter décalotter ver 0.00 0.34 0.00 0.07 inf; +décalotté décalotter ver m s 0.00 0.34 0.00 0.07 par:pas; +décalottée décalotter ver f s 0.00 0.34 0.00 0.07 par:pas; +décalottés décalotter ver m p 0.00 0.34 0.00 0.07 par:pas; +décalquai décalquer ver 0.22 1.08 0.00 0.07 ind:pas:1s; +décalquait décalquer ver 0.22 1.08 0.00 0.14 ind:imp:3s; +décalque décalquer ver 0.22 1.08 0.03 0.07 ind:pre:3s; +décalquer décalquer ver 0.22 1.08 0.06 0.14 inf; +décalques décalquer ver 0.22 1.08 0.04 0.00 ind:pre:2s; +décalqué décalquer ver m s 0.22 1.08 0.06 0.20 par:pas; +décalquée décalquer ver f s 0.22 1.08 0.01 0.34 par:pas; +décalquées décalquer ver f p 0.22 1.08 0.00 0.07 par:pas; +décalqués décalquer ver m p 0.22 1.08 0.02 0.07 par:pas; +décalé décalé adj m s 0.65 0.68 0.41 0.41 +décalée décalé adj f s 0.65 0.68 0.06 0.20 +décalées décaler ver f p 1.36 1.42 0.01 0.07 par:pas; +décalés décaler ver m p 1.36 1.42 0.30 0.14 par:pas; +décambuter décambuter ver 0.00 0.20 0.00 0.20 inf; +décampa décamper ver 4.02 2.50 0.00 0.14 ind:pas:3s; +décampait décamper ver 4.02 2.50 0.00 0.07 ind:imp:3s; +décampe décamper ver 4.02 2.50 1.66 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décampent décamper ver 4.02 2.50 0.16 0.14 ind:pre:3p; +décamper décamper ver 4.02 2.50 0.81 0.95 inf; +décampera décamper ver 4.02 2.50 0.14 0.00 ind:fut:3s; +décamperais décamper ver 4.02 2.50 0.00 0.07 cnd:pre:1s; +décamperont décamper ver 4.02 2.50 0.02 0.00 ind:fut:3p; +décampes décamper ver 4.02 2.50 0.26 0.00 ind:pre:2s; +décampez décamper ver 4.02 2.50 0.70 0.14 imp:pre:2p; +décampons décamper ver 4.02 2.50 0.05 0.00 imp:pre:1p; +décampé décamper ver m s 4.02 2.50 0.20 0.47 par:pas; +décamètre décamètre nom m s 0.00 0.20 0.00 0.14 +décamètres décamètre nom m p 0.00 0.20 0.00 0.07 +décan décan nom m s 0.02 0.07 0.02 0.07 +décanillant décaniller ver 0.02 0.61 0.00 0.07 par:pre; +décanille décaniller ver 0.02 0.61 0.01 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décaniller décaniller ver 0.02 0.61 0.00 0.27 inf; +décanillerait décaniller ver 0.02 0.61 0.00 0.07 cnd:pre:3s; +décanillez décaniller ver 0.02 0.61 0.01 0.00 imp:pre:2p; +décantai décanter ver 0.22 1.28 0.00 0.07 ind:pas:1s; +décantaient décanter ver 0.22 1.28 0.00 0.07 ind:imp:3p; +décantait décanter ver 0.22 1.28 0.00 0.07 ind:imp:3s; +décantant décanter ver 0.22 1.28 0.00 0.14 par:pre; +décantation décantation nom f s 0.10 0.07 0.10 0.07 +décante décanter ver 0.22 1.28 0.04 0.20 ind:pre:3s; +décantent décanter ver 0.22 1.28 0.00 0.07 ind:pre:3p; +décanter décanter ver 0.22 1.28 0.17 0.14 inf; +décanteur décanteur nom m s 0.01 0.00 0.01 0.00 +décanté décanter ver m s 0.22 1.28 0.01 0.14 par:pas; +décantée décanter ver f s 0.22 1.28 0.00 0.20 par:pas; +décantées décanter ver f p 0.22 1.28 0.00 0.20 par:pas; +décapage décapage nom m s 0.01 0.00 0.01 0.00 +décapais décaper ver 0.21 2.09 0.02 0.07 ind:imp:1s;ind:imp:2s; +décapait décaper ver 0.21 2.09 0.00 0.34 ind:imp:3s; +décapant décapant nom m s 0.27 0.34 0.27 0.20 +décapante décapant adj f s 0.04 0.07 0.00 0.07 +décapants décapant adj m p 0.04 0.07 0.01 0.00 +décape décaper ver 0.21 2.09 0.07 0.20 ind:pre:1s;ind:pre:3s; +décaper décaper ver 0.21 2.09 0.07 0.34 inf; +décapera décaper ver 0.21 2.09 0.00 0.07 ind:fut:3s; +décapeur décapeur nom m s 0.00 0.07 0.00 0.07 +décapita décapiter ver 3.72 6.96 0.02 0.20 ind:pas:3s; +décapitaient décapiter ver 3.72 6.96 0.02 0.07 ind:imp:3p; +décapitais décapiter ver 3.72 6.96 0.01 0.00 ind:imp:1s; +décapitait décapiter ver 3.72 6.96 0.02 0.07 ind:imp:3s; +décapitant décapiter ver 3.72 6.96 0.04 0.27 par:pre; +décapitation décapitation nom f s 0.55 0.47 0.43 0.47 +décapitations décapitation nom f p 0.55 0.47 0.13 0.00 +décapite décapiter ver 3.72 6.96 0.20 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décapitent décapiter ver 3.72 6.96 0.14 0.00 ind:pre:3p; +décapiter décapiter ver 3.72 6.96 1.09 0.88 inf; +décapitera décapiter ver 3.72 6.96 0.04 0.00 ind:fut:3s; +décapiterai décapiter ver 3.72 6.96 0.01 0.00 ind:fut:1s; +décapiterait décapiter ver 3.72 6.96 0.00 0.07 cnd:pre:3s; +décapiteront décapiter ver 3.72 6.96 0.01 0.00 ind:fut:3p; +décapitez décapiter ver 3.72 6.96 0.07 0.00 imp:pre:2p;ind:pre:2p; +décapitons décapiter ver 3.72 6.96 0.01 0.00 imp:pre:1p; +décapitât décapiter ver 3.72 6.96 0.00 0.07 sub:imp:3s; +décapitèrent décapiter ver 3.72 6.96 0.00 0.07 ind:pas:3p; +décapité décapiter ver m s 3.72 6.96 1.50 2.57 par:pas; +décapitée décapiter ver f s 3.72 6.96 0.32 1.15 par:pas; +décapitées décapiter ver f p 3.72 6.96 0.04 0.54 par:pas; +décapités décapiter ver m p 3.72 6.96 0.19 0.81 par:pas; +décapode décapode nom m s 0.00 0.07 0.00 0.07 +décapotable décapotable nom f s 1.77 0.88 1.65 0.81 +décapotables décapotable nom f p 1.77 0.88 0.12 0.07 +décapotage décapotage nom m s 0.00 0.07 0.00 0.07 +décapotait décapoter ver 0.04 0.27 0.00 0.07 ind:imp:3s; +décapote décapoter ver 0.04 0.27 0.03 0.00 ind:pre:1s; +décapoter décapoter ver 0.04 0.27 0.00 0.07 inf; +décapoté décapoté adj m s 0.03 0.47 0.01 0.00 +décapotée décapoté adj f s 0.03 0.47 0.02 0.47 +décapotés décapoter ver m p 0.04 0.27 0.00 0.07 par:pas; +décapsula décapsuler ver 0.07 1.35 0.00 0.14 ind:pas:3s; +décapsulant décapsuler ver 0.07 1.35 0.00 0.20 par:pre; +décapsule décapsuler ver 0.07 1.35 0.02 0.41 ind:pre:1s;ind:pre:3s; +décapsuler décapsuler ver 0.07 1.35 0.04 0.20 inf; +décapsulerait décapsuler ver 0.07 1.35 0.00 0.07 cnd:pre:3s; +décapsuleur décapsuleur nom m s 0.34 0.20 0.34 0.20 +décapsulez décapsuler ver 0.07 1.35 0.01 0.00 imp:pre:2p; +décapsulé décapsuler ver m s 0.07 1.35 0.00 0.14 par:pas; +décapsulée décapsuler ver f s 0.07 1.35 0.00 0.20 par:pas; +décapé décaper ver m s 0.21 2.09 0.02 0.34 par:pas; +décapuchonna décapuchonner ver 0.00 0.41 0.00 0.20 ind:pas:3s; +décapuchonne décapuchonner ver 0.00 0.41 0.00 0.07 ind:pre:3s; +décapuchonner décapuchonner ver 0.00 0.41 0.00 0.07 inf; +décapuchonnèrent décapuchonner ver 0.00 0.41 0.00 0.07 ind:pas:3p; +décapée décaper ver f s 0.21 2.09 0.00 0.41 par:pas; +décapées décaper ver f p 0.21 2.09 0.00 0.14 par:pas; +décapés décaper ver m p 0.21 2.09 0.01 0.14 par:pas; +décarcassais décarcasser ver 0.15 0.61 0.00 0.07 ind:imp:1s; +décarcassait décarcasser ver 0.15 0.61 0.00 0.07 ind:imp:3s; +décarcassent décarcasser ver 0.15 0.61 0.00 0.07 ind:pre:3p; +décarcasser décarcasser ver 0.15 0.61 0.05 0.07 inf; +décarcassé décarcasser ver m s 0.15 0.61 0.08 0.14 par:pas; +décarcassée décarcasser ver f s 0.15 0.61 0.02 0.14 par:pas; +décarcassées décarcasser ver f p 0.15 0.61 0.00 0.07 par:pas; +décarpillage décarpillage nom m s 0.00 0.20 0.00 0.20 +décarpiller décarpiller ver 0.00 0.14 0.00 0.07 inf; +décarpillé décarpiller ver m s 0.00 0.14 0.00 0.07 par:pas; +décarrade décarrade nom f s 0.00 2.50 0.00 2.43 +décarrades décarrade nom f p 0.00 2.50 0.00 0.07 +décarraient décarrer ver 0.68 4.32 0.00 0.07 ind:imp:3p; +décarrais décarrer ver 0.68 4.32 0.00 0.07 ind:imp:1s; +décarrait décarrer ver 0.68 4.32 0.00 0.07 ind:imp:3s; +décarrant décarrer ver 0.68 4.32 0.00 0.47 par:pre; +décarre décarrer ver 0.68 4.32 0.40 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décarrent décarrer ver 0.68 4.32 0.00 0.07 ind:pre:3p; +décarrer décarrer ver 0.68 4.32 0.28 1.35 inf; +décarrerait décarrer ver 0.68 4.32 0.00 0.07 cnd:pre:3s; +décarres décarrer ver 0.68 4.32 0.00 0.07 ind:pre:2s; +décarré décarrer ver m s 0.68 4.32 0.00 0.27 par:pas; +décarrés décarrer ver m p 0.68 4.32 0.00 0.07 par:pas; +ducasse ducasse nom f s 0.01 0.27 0.01 0.20 +ducasses ducasse nom f p 0.01 0.27 0.00 0.07 +ducat ducat nom m s 1.00 1.28 0.20 0.07 +décathlon décathlon nom m s 0.27 0.07 0.26 0.07 +décathlons décathlon nom m p 0.27 0.07 0.01 0.00 +décati décati adj m s 0.09 0.61 0.04 0.20 +décatie décati adj f s 0.09 0.61 0.04 0.20 +décatir décatir ver 0.01 0.47 0.00 0.14 inf; +décatis décati adj m p 0.09 0.61 0.01 0.20 +ducaton ducaton nom m s 0.00 0.14 0.00 0.14 +ducats ducat nom m p 1.00 1.28 0.80 1.22 +ducaux ducal adj m p 0.23 1.08 0.10 0.00 +décavé décavé adj m s 0.11 0.27 0.11 0.27 +duce duce nom m s 2.21 2.97 2.21 2.91 +déceint déceindre ver 0.00 0.07 0.00 0.07 ind:pre:3s; +décela déceler ver 2.00 11.15 0.00 0.20 ind:pas:3s; +décelable décelable adj f s 0.04 0.20 0.04 0.20 +décelai déceler ver 2.00 11.15 0.00 0.14 ind:pas:1s; +décelaient déceler ver 2.00 11.15 0.00 0.14 ind:imp:3p; +décelais déceler ver 2.00 11.15 0.01 0.20 ind:imp:1s; +décelait déceler ver 2.00 11.15 0.01 0.74 ind:imp:3s; +décelant déceler ver 2.00 11.15 0.00 0.20 par:pre; +déceler déceler ver 2.00 11.15 0.87 6.01 inf; +décelèrent déceler ver 2.00 11.15 0.00 0.07 ind:pas:3p; +décelé déceler ver m s 2.00 11.15 0.57 2.03 par:pas; +décelée déceler ver f s 2.00 11.15 0.03 0.20 par:pas; +décelées déceler ver f p 2.00 11.15 0.01 0.14 par:pas; +décelés déceler ver m p 2.00 11.15 0.00 0.07 par:pas; +décembre décembre nom m 8.55 31.22 8.55 31.15 +décembres décembre nom m p 8.55 31.22 0.00 0.07 +décembriste décembriste nom s 0.00 0.20 0.00 0.07 +décembristes décembriste nom p 0.00 0.20 0.00 0.14 +décemment décemment adv 0.96 2.57 0.96 2.57 +décence décence nom f s 2.92 2.84 2.92 2.77 +décences décence nom f p 2.92 2.84 0.00 0.07 +décennal décennal adj m s 0.02 0.07 0.01 0.07 +décennale décennal adj f s 0.02 0.07 0.01 0.00 +décennie décennie nom f s 2.67 2.43 1.27 0.95 +décennies décennie nom f p 2.67 2.43 1.41 1.49 +décent décent adj m s 5.95 4.32 2.67 1.89 +décente décent adj f s 5.95 4.32 2.50 1.82 +décentes décent adj f p 5.95 4.32 0.19 0.20 +décentralisation décentralisation nom f s 0.00 0.07 0.00 0.07 +décentralisé décentraliser ver m s 0.12 0.14 0.12 0.00 par:pas; +décentralisée décentraliser ver f s 0.12 0.14 0.00 0.07 par:pas; +décentralisées décentraliser ver f p 0.12 0.14 0.00 0.07 par:pas; +décentrant décentrer ver 0.41 0.41 0.00 0.07 par:pre; +décentre décentrer ver 0.41 0.41 0.00 0.07 ind:pre:3s; +décentrement décentrement nom m s 0.01 0.00 0.01 0.00 +décentrée décentrer ver f s 0.41 0.41 0.01 0.14 par:pas; +décentrées décentrer ver f p 0.41 0.41 0.40 0.14 par:pas; +décents décent adj m p 5.95 4.32 0.60 0.41 +déception déception nom f s 6.65 16.82 5.46 13.04 +déceptions déception nom f p 6.65 16.82 1.19 3.78 +décerna décerner ver 2.19 3.51 0.03 0.07 ind:pas:3s; +décernai décerner ver 2.19 3.51 0.00 0.07 ind:pas:1s; +décernais décerner ver 2.19 3.51 0.00 0.07 ind:imp:2s; +décernait décerner ver 2.19 3.51 0.19 0.41 ind:imp:3s; +décernant décerner ver 2.19 3.51 0.10 0.07 par:pre; +décerne décerner ver 2.19 3.51 0.19 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décernent décerner ver 2.19 3.51 0.02 0.14 ind:pre:3p; +décerner décerner ver 2.19 3.51 0.45 0.88 inf; +décernera décerner ver 2.19 3.51 0.02 0.00 ind:fut:3s; +décerniez décerner ver 2.19 3.51 0.02 0.00 ind:imp:2p; +décernons décerner ver 2.19 3.51 0.16 0.00 imp:pre:1p;ind:pre:1p; +décerné décerner ver m s 2.19 3.51 0.65 0.61 par:pas; +décernée décerner ver f s 2.19 3.51 0.09 0.47 par:pas; +décernées décerner ver f p 2.19 3.51 0.12 0.20 par:pas; +décernés décerner ver m p 2.19 3.51 0.14 0.14 par:pas; +décervelage décervelage nom m s 0.00 0.14 0.00 0.14 +décerveler décerveler ver 0.08 0.27 0.02 0.00 inf; +décervelle décerveler ver 0.08 0.27 0.00 0.14 ind:pre:3s; +décervelé décerveler ver m s 0.08 0.27 0.06 0.14 par:pas; +duces duce nom m p 2.21 2.97 0.00 0.07 +décesse décesser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +décessé décesser ver m s 0.00 0.14 0.00 0.07 par:pas; +décevaient décevoir ver 32.30 21.69 0.00 0.20 ind:imp:3p; +décevais décevoir ver 32.30 21.69 0.03 0.20 ind:imp:1s; +décevait décevoir ver 32.30 21.69 0.02 0.81 ind:imp:3s; +décevant décevant adj m s 2.06 4.59 1.36 2.23 +décevante décevant adj f s 2.06 4.59 0.57 1.49 +décevantes décevant adj f p 2.06 4.59 0.08 0.34 +décevants décevant adj m p 2.06 4.59 0.04 0.54 +décevez décevoir ver 32.30 21.69 1.69 0.14 imp:pre:2p;ind:pre:2p; +déceviez décevoir ver 32.30 21.69 0.02 0.00 ind:imp:2p; +décevoir décevoir ver 32.30 21.69 7.65 3.85 inf; +décevons décevoir ver 32.30 21.69 0.07 0.00 imp:pre:1p;ind:pre:1p; +décevra décevoir ver 32.30 21.69 0.22 0.00 ind:fut:3s; +décevrai décevoir ver 32.30 21.69 0.92 0.07 ind:fut:1s; +décevraient décevoir ver 32.30 21.69 0.00 0.07 cnd:pre:3p; +décevrais décevoir ver 32.30 21.69 0.15 0.00 cnd:pre:1s;cnd:pre:2s; +décevrait décevoir ver 32.30 21.69 0.09 0.20 cnd:pre:3s; +décevras décevoir ver 32.30 21.69 0.22 0.00 ind:fut:2s; +décevrez décevoir ver 32.30 21.69 0.07 0.00 ind:fut:2p; +déchaîna déchaîner ver 6.37 13.18 0.13 1.35 ind:pas:3s; +déchaînaient déchaîner ver 6.37 13.18 0.02 1.22 ind:imp:3p; +déchaînais déchaîner ver 6.37 13.18 0.01 0.14 ind:imp:1s;ind:imp:2s; +déchaînait déchaîner ver 6.37 13.18 0.43 2.43 ind:imp:3s; +déchaînant déchaîner ver 6.37 13.18 0.01 0.27 par:pre; +déchaîne déchaîner ver 6.37 13.18 1.16 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchaînement déchaînement nom m s 0.14 3.38 0.14 2.57 +déchaînements déchaînement nom m p 0.14 3.38 0.01 0.81 +déchaînent déchaîner ver 6.37 13.18 0.38 0.54 ind:pre:3p; +déchaîner déchaîner ver 6.37 13.18 1.32 2.36 inf; +déchaînera déchaîner ver 6.37 13.18 0.06 0.00 ind:fut:3s; +déchaînerait déchaîner ver 6.37 13.18 0.04 0.14 cnd:pre:3s; +déchaîneras déchaîner ver 6.37 13.18 0.00 0.07 ind:fut:2s; +déchaînez déchaîner ver 6.37 13.18 0.06 0.07 imp:pre:2p;ind:pre:2p; +déchaînât déchaîner ver 6.37 13.18 0.00 0.07 sub:imp:3s; +déchaînèrent déchaîner ver 6.37 13.18 0.00 0.07 ind:pas:3p; +déchaîné déchaîner ver m s 6.37 13.18 0.97 1.62 par:pas; +déchaînée déchaîner ver f s 6.37 13.18 0.95 0.68 par:pas; +déchaînées déchaîné adj f p 1.29 4.80 0.35 0.81 +déchaînés déchaîner ver m p 6.37 13.18 0.69 0.41 par:pas; +déchait décher ver 0.00 0.34 0.00 0.14 ind:imp:3s; +déchanta déchanter ver 0.05 1.55 0.00 0.14 ind:pas:3s; +déchantai déchanter ver 0.05 1.55 0.00 0.14 ind:pas:1s; +déchantait déchanter ver 0.05 1.55 0.00 0.14 ind:imp:3s; +déchantant déchanter ver 0.05 1.55 0.00 0.07 par:pre; +déchante déchanter ver 0.05 1.55 0.02 0.07 imp:pre:2s;ind:pre:3s; +déchantent déchanter ver 0.05 1.55 0.00 0.14 ind:pre:3p; +déchanter déchanter ver 0.05 1.55 0.02 0.61 inf; +déchanterais déchanter ver 0.05 1.55 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +déchantèrent déchanter ver 0.05 1.55 0.00 0.07 ind:pas:3p; +déchanté déchanter ver m s 0.05 1.55 0.00 0.14 par:pas; +déchard déchard nom m s 0.00 0.27 0.00 0.20 +déchards déchard nom m p 0.00 0.27 0.00 0.07 +décharge décharge nom f s 9.30 12.77 7.62 11.35 +déchargea décharger ver 10.12 11.89 0.01 0.47 ind:pas:3s; +déchargeaient décharger ver 10.12 11.89 0.12 0.81 ind:imp:3p; +déchargeait décharger ver 10.12 11.89 0.05 1.01 ind:imp:3s; +déchargeant décharger ver 10.12 11.89 0.04 0.47 par:pre; +déchargement déchargement nom m s 0.53 0.88 0.53 0.88 +déchargent décharger ver 10.12 11.89 0.30 0.20 ind:pre:3p; +déchargeons décharger ver 10.12 11.89 0.11 0.00 imp:pre:1p; +déchargeât décharger ver 10.12 11.89 0.00 0.07 sub:imp:3s; +décharger décharger ver 10.12 11.89 3.88 4.32 inf; +déchargera décharger ver 10.12 11.89 0.17 0.07 ind:fut:3s; +déchargerais décharger ver 10.12 11.89 0.00 0.07 cnd:pre:1s; +déchargerait décharger ver 10.12 11.89 0.00 0.14 cnd:pre:3s; +déchargerez décharger ver 10.12 11.89 0.00 0.07 ind:fut:2p; +décharges décharge nom f p 9.30 12.77 1.68 1.42 +déchargeur déchargeur nom m s 0.03 0.07 0.03 0.07 +déchargez décharger ver 10.12 11.89 1.13 0.00 imp:pre:2p;ind:pre:2p; +déchargions décharger ver 10.12 11.89 0.01 0.07 ind:imp:1p; +déchargèrent décharger ver 10.12 11.89 0.00 0.14 ind:pas:3p; +déchargé décharger ver m s 10.12 11.89 1.80 1.28 par:pas; +déchargée décharger ver f s 10.12 11.89 0.22 0.34 par:pas; +déchargées décharger ver f p 10.12 11.89 0.06 0.14 par:pas; +déchargés décharger ver m p 10.12 11.89 0.22 0.41 par:pas; +décharne décharner ver 0.20 1.62 0.00 0.07 ind:pre:3s; +décharnement décharnement nom m s 0.00 0.07 0.00 0.07 +décharnent décharner ver 0.20 1.62 0.00 0.07 ind:pre:3p; +décharner décharner ver 0.20 1.62 0.00 0.20 inf; +décharnerait décharner ver 0.20 1.62 0.00 0.07 cnd:pre:3s; +décharné décharner ver m s 0.20 1.62 0.17 0.27 par:pas; +décharnée décharné adj f s 0.17 5.20 0.04 1.35 +décharnées décharné adj f p 0.17 5.20 0.02 0.41 +décharnés décharné adj m p 0.17 5.20 0.01 0.88 +déchassé déchasser ver m s 0.00 0.07 0.00 0.07 par:pas; +déchaumaient déchaumer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +déchaumée déchaumer ver f s 0.00 0.14 0.00 0.07 par:pas; +déchaussa déchausser ver 0.73 2.91 0.00 0.41 ind:pas:3s; +déchaussaient déchausser ver 0.73 2.91 0.00 0.07 ind:imp:3p; +déchaussait déchausser ver 0.73 2.91 0.00 0.27 ind:imp:3s; +déchaussant déchausser ver 0.73 2.91 0.00 0.14 par:pre; +déchausse déchausser ver 0.73 2.91 0.23 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchaussent déchausser ver 0.73 2.91 0.00 0.07 ind:pre:3p; +déchausser déchausser ver 0.73 2.91 0.21 0.68 inf; +déchausserais déchausser ver 0.73 2.91 0.01 0.00 cnd:pre:1s; +déchaussez déchausser ver 0.73 2.91 0.28 0.00 imp:pre:2p;ind:pre:2p; +déchaussé déchaussé adj m s 0.05 0.95 0.02 0.27 +déchaussée déchaussé adj f s 0.05 0.95 0.01 0.20 +déchaussées déchaussé adj f p 0.05 0.95 0.01 0.07 +déchaussés déchaussé adj m p 0.05 0.95 0.01 0.41 +décher décher ver 0.00 0.34 0.00 0.14 inf; +duchesse duc nom f s 12.40 23.51 3.99 6.15 +duchesses duc nom f p 12.40 23.51 0.06 0.95 +déchet déchet nom m s 7.04 6.42 1.27 1.96 +déchets déchet nom m p 7.04 6.42 5.77 4.46 +déchetterie déchetterie nom f s 0.11 0.00 0.11 0.00 +déchiffra déchiffrer ver 4.88 15.81 0.00 0.54 ind:pas:3s; +déchiffrable déchiffrable adj m s 0.02 0.47 0.02 0.27 +déchiffrables déchiffrable adj m p 0.02 0.47 0.00 0.20 +déchiffrage déchiffrage nom m s 0.06 0.41 0.06 0.41 +déchiffrai déchiffrer ver 4.88 15.81 0.00 0.14 ind:pas:1s; +déchiffraient déchiffrer ver 4.88 15.81 0.00 0.07 ind:imp:3p; +déchiffrais déchiffrer ver 4.88 15.81 0.01 0.41 ind:imp:1s;ind:imp:2s; +déchiffrait déchiffrer ver 4.88 15.81 0.01 1.35 ind:imp:3s; +déchiffrant déchiffrer ver 4.88 15.81 0.03 0.27 par:pre; +déchiffre déchiffrer ver 4.88 15.81 0.13 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchiffrement déchiffrement nom m s 0.04 1.22 0.04 1.22 +déchiffrent déchiffrer ver 4.88 15.81 0.16 0.14 ind:pre:3p; +déchiffrer déchiffrer ver 4.88 15.81 3.08 10.07 inf; +déchiffrera déchiffrer ver 4.88 15.81 0.17 0.00 ind:fut:3s; +déchiffreur déchiffreur nom m s 0.01 0.14 0.01 0.14 +déchiffrez déchiffrer ver 4.88 15.81 0.03 0.00 imp:pre:2p; +déchiffrions déchiffrer ver 4.88 15.81 0.00 0.20 ind:imp:1p; +déchiffrâmes déchiffrer ver 4.88 15.81 0.00 0.07 ind:pas:1p; +déchiffrât déchiffrer ver 4.88 15.81 0.14 0.14 sub:imp:3s; +déchiffrèrent déchiffrer ver 4.88 15.81 0.00 0.07 ind:pas:3p; +déchiffré déchiffrer ver m s 4.88 15.81 1.01 0.68 par:pas; +déchiffrée déchiffrer ver f s 4.88 15.81 0.06 0.14 par:pas; +déchiffrées déchiffrer ver f p 4.88 15.81 0.01 0.07 par:pas; +déchiffrés déchiffrer ver m p 4.88 15.81 0.04 0.20 par:pas; +déchiqueta déchiqueter ver 2.46 5.74 0.00 0.14 ind:pas:3s; +déchiquetage déchiquetage nom m s 0.00 0.27 0.00 0.27 +déchiquetaient déchiqueter ver 2.46 5.74 0.04 0.20 ind:imp:3p; +déchiquetait déchiqueter ver 2.46 5.74 0.00 0.07 ind:imp:3s; +déchiquetant déchiqueter ver 2.46 5.74 0.03 0.27 par:pre; +déchiqueter déchiqueter ver 2.46 5.74 0.92 1.35 inf; +déchiqueteur déchiqueteur nom m s 0.02 0.20 0.01 0.07 +déchiqueteurs déchiqueteur nom m p 0.02 0.20 0.00 0.07 +déchiqueteuse déchiqueteuse nom f s 0.07 0.00 0.07 0.00 +déchiqueteuses déchiqueteur nom f p 0.02 0.20 0.00 0.07 +déchiquetons déchiqueter ver 2.46 5.74 0.00 0.07 ind:pre:1p; +déchiquette déchiqueter ver 2.46 5.74 0.14 0.27 imp:pre:2s;ind:pre:3s; +déchiquettent déchiqueter ver 2.46 5.74 0.04 0.14 ind:pre:3p; +déchiquettes déchiqueter ver 2.46 5.74 0.00 0.07 ind:pre:2s; +déchiqueté déchiqueter ver m s 2.46 5.74 0.93 1.15 par:pas; +déchiquetée déchiqueter ver f s 2.46 5.74 0.15 0.68 par:pas; +déchiquetées déchiqueter ver f p 2.46 5.74 0.04 0.27 par:pas; +déchiquetés déchiqueter ver m p 2.46 5.74 0.18 1.08 par:pas; +déchira déchirer ver 26.46 53.11 0.17 5.00 ind:pas:3s; +déchirage déchirage nom m s 0.00 0.14 0.00 0.07 +déchirages déchirage nom m p 0.00 0.14 0.00 0.07 +déchirai déchirer ver 26.46 53.11 0.14 0.47 ind:pas:1s; +déchiraient déchirer ver 26.46 53.11 0.06 2.70 ind:imp:3p; +déchirais déchirer ver 26.46 53.11 0.03 0.34 ind:imp:1s;ind:imp:2s; +déchirait déchirer ver 26.46 53.11 0.39 4.86 ind:imp:3s; +déchirant déchirer ver 26.46 53.11 0.49 2.97 par:pre; +déchirante déchirant adj f s 0.64 10.27 0.10 3.99 +déchirantes déchirant adj f p 0.64 10.27 0.02 1.22 +déchirants déchirant adj m p 0.64 10.27 0.15 2.03 +déchire déchirer ver 26.46 53.11 7.45 8.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchirement déchirement nom m s 0.36 5.68 0.23 4.05 +déchirements déchirement nom m p 0.36 5.68 0.13 1.62 +déchirent déchirer ver 26.46 53.11 1.26 2.09 ind:pre:3p; +déchirer déchirer ver 26.46 53.11 4.27 8.72 inf;; +déchirera déchirer ver 26.46 53.11 0.13 0.07 ind:fut:3s; +déchirerai déchirer ver 26.46 53.11 0.35 0.07 ind:fut:1s; +déchireraient déchirer ver 26.46 53.11 0.14 0.14 cnd:pre:3p; +déchirerais déchirer ver 26.46 53.11 0.14 0.27 cnd:pre:1s;cnd:pre:2s; +déchirerait déchirer ver 26.46 53.11 0.04 0.20 cnd:pre:3s; +déchireras déchirer ver 26.46 53.11 0.02 0.00 ind:fut:2s; +déchirerons déchirer ver 26.46 53.11 0.04 0.00 ind:fut:1p; +déchireront déchirer ver 26.46 53.11 0.07 0.07 ind:fut:3p; +déchires déchirer ver 26.46 53.11 0.81 0.07 ind:pre:2s; +déchireur déchireur nom m s 0.02 0.00 0.02 0.00 +déchirez déchirer ver 26.46 53.11 0.84 0.07 imp:pre:2p;ind:pre:2p; +déchiriez déchirer ver 26.46 53.11 0.02 0.07 ind:imp:2p; +déchirions déchirer ver 26.46 53.11 0.00 0.14 ind:imp:1p; +déchirons déchirer ver 26.46 53.11 0.17 0.07 imp:pre:1p;ind:pre:1p; +déchirât déchirer ver 26.46 53.11 0.00 0.07 sub:imp:3s; +déchirèrent déchirer ver 26.46 53.11 0.02 0.68 ind:pas:3p; +déchiré déchirer ver m s 26.46 53.11 6.50 8.24 par:pas; +déchirée déchirer ver f s 26.46 53.11 2.11 3.31 par:pas; +déchirées déchirer ver f p 26.46 53.11 0.35 1.01 par:pas; +déchirure déchirure nom f s 1.58 7.03 1.03 4.80 +déchirures déchirure nom f p 1.58 7.03 0.55 2.23 +déchirés déchiré adj m p 5.59 13.38 0.70 3.31 +duchnoque duchnoque nom s 0.02 0.07 0.02 0.07 +déchoient déchoir ver 0.88 3.04 0.00 0.07 ind:pre:3p; +déchoir déchoir ver 0.88 3.04 0.01 1.49 inf; +déchoirons déchoir ver 0.88 3.04 0.00 0.07 ind:fut:1p; +déchouer déchouer ver 0.01 0.00 0.01 0.00 inf; +déchristianise déchristianiser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +déché décher ver m s 0.00 0.34 0.00 0.07 par:pas; +déchu déchu adj m s 1.10 3.85 0.59 1.76 +duché duché nom m s 0.06 0.14 0.06 0.14 +déchéance déchéance nom f s 1.67 6.42 1.67 6.28 +déchéances déchéance nom f p 1.67 6.42 0.00 0.14 +déchue déchu adj f s 1.10 3.85 0.19 0.88 +déchues déchoir ver f p 0.88 3.04 0.14 0.07 par:pas; +déchus déchu adj m p 1.10 3.85 0.28 0.81 +déci déci nom m s 0.01 0.00 0.01 0.00 +décibel décibel nom m s 0.40 0.88 0.04 0.00 +décibels décibel nom m p 0.40 0.88 0.37 0.88 +décida décider ver 207.76 214.19 3.86 36.82 ind:pas:3s; +décidai décider ver 207.76 214.19 2.04 11.08 ind:pas:1s; +décidaient décider ver 207.76 214.19 0.38 1.96 ind:imp:3p; +décidais décider ver 207.76 214.19 0.77 1.28 ind:imp:1s;ind:imp:2s; +décidait décider ver 207.76 214.19 0.68 6.69 ind:imp:3s; +décidant décider ver 207.76 214.19 0.48 2.64 par:pre; +décide décider ver 207.76 214.19 31.25 20.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +décident décider ver 207.76 214.19 3.37 2.57 ind:pre:3p; +décider décider ver 207.76 214.19 42.27 27.16 inf; +décidera décider ver 207.76 214.19 3.48 2.16 ind:fut:3s; +déciderai décider ver 207.76 214.19 1.73 0.07 ind:fut:1s; +décideraient décider ver 207.76 214.19 0.01 0.61 cnd:pre:3p; +déciderais décider ver 207.76 214.19 0.14 0.20 cnd:pre:1s;cnd:pre:2s; +déciderait décider ver 207.76 214.19 0.42 1.15 cnd:pre:3s; +décideras décider ver 207.76 214.19 0.76 0.54 ind:fut:2s; +déciderez décider ver 207.76 214.19 0.47 0.34 ind:fut:2p; +décideriez décider ver 207.76 214.19 0.09 0.14 cnd:pre:2p; +déciderions décider ver 207.76 214.19 0.01 0.00 cnd:pre:1p; +déciderons décider ver 207.76 214.19 0.35 0.14 ind:fut:1p; +décideront décider ver 207.76 214.19 0.89 0.74 ind:fut:3p; +décides décider ver 207.76 214.19 8.15 1.89 ind:pre:2s; +décideur décideur nom m s 0.23 0.00 0.12 0.00 +décideurs décideur nom m p 0.23 0.00 0.11 0.00 +décidez décider ver 207.76 214.19 6.25 0.88 imp:pre:2p;ind:pre:2p; +décidiez décider ver 207.76 214.19 0.58 0.14 ind:imp:2p; +décidions décider ver 207.76 214.19 0.20 0.41 ind:imp:1p; +décidâmes décider ver 207.76 214.19 0.02 1.62 ind:pas:1p; +décidons décider ver 207.76 214.19 1.42 0.68 imp:pre:1p;ind:pre:1p; +décidât décider ver 207.76 214.19 0.00 1.08 sub:imp:3s; +décidèrent décider ver 207.76 214.19 0.65 5.27 ind:pas:3p; +décidé décider ver m s 207.76 214.19 92.08 73.78 par:pas;par:pas;par:pas; +décidée décider ver f s 207.76 214.19 3.63 7.50 par:pas; +décidées décider ver f p 207.76 214.19 0.13 0.88 par:pas; +décidément décidément adv 3.88 30.81 3.88 30.81 +décidés décider ver m p 207.76 214.19 1.23 3.18 par:pas; +décigramme décigramme nom m s 0.14 0.00 0.01 0.00 +décigrammes décigramme nom m p 0.14 0.00 0.14 0.00 +décile décile nom m s 0.01 0.00 0.01 0.00 +décilitre décilitre nom m s 0.03 0.07 0.03 0.07 +décima décimer ver 3.30 3.85 0.04 0.00 ind:pas:3s; +décimaient décimer ver 3.30 3.85 0.00 0.14 ind:imp:3p; +décimait décimer ver 3.30 3.85 0.01 0.27 ind:imp:3s; +décimal décimal adj m s 0.34 0.47 0.09 0.07 +décimale décimal adj f s 0.34 0.47 0.11 0.20 +décimales décimal adj f p 0.34 0.47 0.15 0.20 +décimalisation décimalisation nom f s 0.01 0.00 0.01 0.00 +décimalité décimalité nom f s 0.01 0.00 0.01 0.00 +décimant décimer ver 3.30 3.85 0.01 0.00 par:pre; +décimateur décimateur nom m s 0.01 0.00 0.01 0.00 +décimation décimation nom f s 0.42 0.20 0.42 0.20 +décime décimer ver 3.30 3.85 0.46 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déciment décimer ver 3.30 3.85 0.14 0.00 ind:pre:3p; +décimer décimer ver 3.30 3.85 0.41 0.27 inf; +décimera décimer ver 3.30 3.85 0.01 0.00 ind:fut:3s; +décimerai décimer ver 3.30 3.85 0.01 0.00 ind:fut:1s; +décimerait décimer ver 3.30 3.85 0.03 0.00 cnd:pre:3s; +décimeront décimer ver 3.30 3.85 0.01 0.07 ind:fut:3p; +décimes décime nom m p 0.00 0.07 0.00 0.07 +décimèrent décimer ver 3.30 3.85 0.00 0.07 ind:pas:3p; +décimètre décimètre nom m s 0.03 0.81 0.01 0.54 +décimètres décimètre nom m p 0.03 0.81 0.01 0.27 +décimé décimer ver m s 3.30 3.85 0.97 0.74 par:pas; +décimée décimer ver f s 3.30 3.85 0.35 0.88 par:pas; +décimées décimer ver f p 3.30 3.85 0.15 0.54 par:pas; +décimés décimer ver m p 3.30 3.85 0.68 0.68 par:pas; +décisif décisif adj m s 3.85 16.01 1.96 7.03 +décisifs décisif adj m p 3.85 16.01 0.17 1.69 +décision_clé décision_clé nom f s 0.01 0.00 0.01 0.00 +décision décision nom f s 66.48 60.00 54.63 47.77 +décisionnaire décisionnaire nom s 0.04 0.00 0.04 0.00 +décisionnel décisionnel adj m s 0.05 0.00 0.04 0.00 +décisionnelles décisionnel adj f p 0.05 0.00 0.01 0.00 +décisions décision nom f p 66.48 60.00 11.85 12.23 +décisive décisif adj f s 3.85 16.01 1.47 5.95 +décisives décisif adj f p 3.85 16.01 0.25 1.35 +décivilisés déciviliser ver m p 0.00 0.07 0.00 0.07 par:pas; +déclama déclamer ver 0.63 5.00 0.00 0.47 ind:pas:3s; +déclamai déclamer ver 0.63 5.00 0.00 0.07 ind:pas:1s; +déclamaient déclamer ver 0.63 5.00 0.00 0.20 ind:imp:3p; +déclamais déclamer ver 0.63 5.00 0.01 0.20 ind:imp:1s;ind:imp:2s; +déclamait déclamer ver 0.63 5.00 0.03 1.22 ind:imp:3s; +déclamant déclamer ver 0.63 5.00 0.01 0.47 par:pre; +déclamation déclamation nom f s 0.04 0.81 0.03 0.68 +déclamations déclamation nom f p 0.04 0.81 0.01 0.14 +déclamatoire déclamatoire adj s 0.02 0.54 0.01 0.34 +déclamatoires déclamatoire adj f p 0.02 0.54 0.01 0.20 +déclamatrice déclamateur nom f s 0.00 0.14 0.00 0.14 +déclame déclamer ver 0.63 5.00 0.05 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclamer déclamer ver 0.63 5.00 0.53 1.22 inf; +déclamera déclamer ver 0.63 5.00 0.00 0.07 ind:fut:3s; +déclamerait déclamer ver 0.63 5.00 0.01 0.07 cnd:pre:3s; +déclamât déclamer ver 0.63 5.00 0.00 0.07 sub:imp:3s; +déclamé déclamer ver m s 0.63 5.00 0.00 0.20 par:pas; +déclamée déclamer ver f s 0.63 5.00 0.00 0.14 par:pas; +déclanche déclancher ver 0.22 0.14 0.01 0.07 ind:pre:3s; +déclancher déclancher ver 0.22 0.14 0.14 0.07 inf; +déclanchera déclancher ver 0.22 0.14 0.01 0.00 ind:fut:3s; +déclanché déclancher ver m s 0.22 0.14 0.06 0.00 par:pas; +déclara déclarer ver 41.59 73.18 0.89 20.00 ind:pas:3s; +déclarai déclarer ver 41.59 73.18 0.00 3.65 ind:pas:1s; +déclaraient déclarer ver 41.59 73.18 0.22 0.95 ind:imp:3p; +déclarais déclarer ver 41.59 73.18 0.00 0.68 ind:imp:1s; +déclarait déclarer ver 41.59 73.18 0.26 6.96 ind:imp:3s; +déclarant déclarer ver 41.59 73.18 0.27 3.65 par:pre; +déclaration déclaration nom f s 19.74 21.82 16.49 15.68 +déclarations déclaration nom f p 19.74 21.82 3.25 6.15 +déclarative déclaratif adj f s 0.00 0.07 0.00 0.07 +déclaratoire déclaratoire adj s 0.03 0.00 0.03 0.00 +déclare déclarer ver 41.59 73.18 13.13 9.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclarent déclarer ver 41.59 73.18 0.75 1.08 ind:pre:3p; +déclarer déclarer ver 41.59 73.18 6.85 7.97 inf; +déclarera déclarer ver 41.59 73.18 0.28 0.20 ind:fut:3s; +déclarerai déclarer ver 41.59 73.18 0.18 0.00 ind:fut:1s; +déclarerais déclarer ver 41.59 73.18 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +déclarerait déclarer ver 41.59 73.18 0.04 0.27 cnd:pre:3s; +déclareriez déclarer ver 41.59 73.18 0.03 0.00 cnd:pre:2p; +déclarerions déclarer ver 41.59 73.18 0.00 0.07 cnd:pre:1p; +déclarerons déclarer ver 41.59 73.18 0.02 0.07 ind:fut:1p; +déclareront déclarer ver 41.59 73.18 0.16 0.00 ind:fut:3p; +déclares déclarer ver 41.59 73.18 0.11 0.00 ind:pre:2s; +déclarez déclarer ver 41.59 73.18 1.03 0.27 imp:pre:2p;ind:pre:2p; +déclariez déclarer ver 41.59 73.18 0.17 0.07 ind:imp:2p; +déclarions déclarer ver 41.59 73.18 0.01 0.07 ind:imp:1p; +déclarons déclarer ver 41.59 73.18 1.16 0.41 imp:pre:1p;ind:pre:1p; +déclarât déclarer ver 41.59 73.18 0.00 0.14 sub:imp:3s; +déclarèrent déclarer ver 41.59 73.18 0.01 0.54 ind:pas:3p; +déclaré déclarer ver m s 41.59 73.18 13.37 13.72 par:pas;par:pas;par:pas; +déclarée déclarer ver f s 41.59 73.18 2.04 1.62 par:pas; +déclarées déclarer ver f p 41.59 73.18 0.05 0.20 par:pas; +déclarés déclarer ver m p 41.59 73.18 0.54 0.68 par:pas; +déclasse déclasser ver 0.21 0.54 0.02 0.14 ind:pre:1s;ind:pre:3s; +déclassement déclassement nom m s 0.00 0.20 0.00 0.20 +déclasser déclasser ver 0.21 0.54 0.14 0.20 inf; +déclassé déclassé adj m s 0.14 0.07 0.14 0.00 +déclassée déclasser ver f s 0.21 0.54 0.01 0.00 par:pas; +déclassées déclasser ver f p 0.21 0.54 0.01 0.00 par:pas; +déclassés déclassé nom m p 0.00 0.95 0.00 0.20 +déclavetées déclaveter ver f p 0.00 0.07 0.00 0.07 par:pas; +déclencha déclencher ver 19.23 22.91 0.16 2.30 ind:pas:3s; +déclenchai déclencher ver 19.23 22.91 0.00 0.07 ind:pas:1s; +déclenchaient déclencher ver 19.23 22.91 0.18 0.34 ind:imp:3p; +déclenchait déclencher ver 19.23 22.91 0.11 1.89 ind:imp:3s; +déclenchant déclencher ver 19.23 22.91 0.39 0.74 par:pre; +déclenche déclencher ver 19.23 22.91 3.27 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclenchement déclenchement nom m s 0.53 2.50 0.53 2.50 +déclenchent déclencher ver 19.23 22.91 0.63 0.68 ind:pre:3p; +déclencher déclencher ver 19.23 22.91 4.71 5.88 inf; +déclenchera déclencher ver 19.23 22.91 0.53 0.20 ind:fut:3s; +déclencherai déclencher ver 19.23 22.91 0.08 0.00 ind:fut:1s; +déclencheraient déclencher ver 19.23 22.91 0.00 0.07 cnd:pre:3p; +déclencherais déclencher ver 19.23 22.91 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +déclencherait déclencher ver 19.23 22.91 0.34 0.07 cnd:pre:3s; +déclencherez déclencher ver 19.23 22.91 0.14 0.07 ind:fut:2p; +déclencherons déclencher ver 19.23 22.91 0.05 0.00 ind:fut:1p; +déclencheront déclencher ver 19.23 22.91 0.05 0.00 ind:fut:3p; +déclencheur déclencheur nom m s 0.94 0.07 0.84 0.07 +déclencheurs déclencheur nom m p 0.94 0.07 0.09 0.00 +déclenchez déclencher ver 19.23 22.91 0.60 0.00 imp:pre:2p;ind:pre:2p; +déclenchions déclencher ver 19.23 22.91 0.00 0.07 ind:imp:1p; +déclenchons déclencher ver 19.23 22.91 0.13 0.00 imp:pre:1p;ind:pre:1p; +déclenchât déclencher ver 19.23 22.91 0.00 0.07 sub:imp:3s; +déclenchèrent déclencher ver 19.23 22.91 0.03 0.54 ind:pas:3p; +déclenché déclencher ver m s 19.23 22.91 5.29 3.65 par:pas; +déclenchée déclencher ver f s 19.23 22.91 2.12 2.09 par:pas; +déclenchées déclencher ver f p 19.23 22.91 0.29 0.41 par:pas; +déclenchés déclencher ver m p 19.23 22.91 0.09 0.20 par:pas; +déclic déclic nom m s 1.13 7.97 0.96 7.50 +déclics déclic nom m p 1.13 7.97 0.17 0.47 +déclin déclin nom m s 1.73 6.42 1.73 6.08 +déclina décliner ver 3.55 11.28 0.12 1.08 ind:pas:3s; +déclinai décliner ver 3.55 11.28 0.00 0.34 ind:pas:1s; +déclinaient décliner ver 3.55 11.28 0.00 0.14 ind:imp:3p; +déclinais décliner ver 3.55 11.28 0.01 0.20 ind:imp:1s; +déclinaison déclinaison nom f s 0.23 0.47 0.09 0.20 +déclinaisons déclinaison nom f p 0.23 0.47 0.14 0.27 +déclinait décliner ver 3.55 11.28 0.28 2.50 ind:imp:3s; +déclinant décliner ver 3.55 11.28 0.16 0.81 par:pre; +déclinante déclinant adj f s 0.06 2.97 0.04 1.08 +déclinants déclinant adj m p 0.06 2.97 0.00 0.20 +décline décliner ver 3.55 11.28 1.11 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclinent décliner ver 3.55 11.28 0.12 0.27 ind:pre:3p; +décliner décliner ver 3.55 11.28 0.58 2.23 inf; +déclinera décliner ver 3.55 11.28 0.01 0.00 ind:fut:3s; +déclines décliner ver 3.55 11.28 0.04 0.07 ind:pre:2s; +déclinez décliner ver 3.55 11.28 0.42 0.00 imp:pre:2p;ind:pre:2p; +déclinions décliner ver 3.55 11.28 0.00 0.14 ind:imp:1p; +déclins déclin nom m p 1.73 6.42 0.00 0.34 +déclinèrent décliner ver 3.55 11.28 0.00 0.07 ind:pas:3p; +décliné décliner ver m s 3.55 11.28 0.63 1.08 par:pas; +déclinée décliner ver f s 3.55 11.28 0.07 0.07 par:pas; +déclique décliquer ver 0.01 0.00 0.01 0.00 ind:pre:1s; +décliqueté décliqueter ver m s 0.00 0.07 0.00 0.07 par:pas; +déclive déclive adj f s 0.00 0.34 0.00 0.27 +déclives déclive adj f p 0.00 0.34 0.00 0.07 +déclivité déclivité nom f s 0.01 1.08 0.01 0.74 +déclivités déclivité nom f p 0.01 1.08 0.00 0.34 +décloisonnée décloisonner ver f s 0.00 0.07 0.00 0.07 par:pas; +déclose déclore ver f s 0.01 0.00 0.01 0.00 par:pas; +décloses déclos adj f p 0.00 0.14 0.00 0.07 +déclouer déclouer ver 0.11 0.88 0.10 0.14 inf; +déclouèrent déclouer ver 0.11 0.88 0.00 0.14 ind:pas:3p; +décloué déclouer ver m s 0.11 0.88 0.00 0.20 par:pas; +déclouée déclouer ver f s 0.11 0.88 0.01 0.07 par:pas; +déclouées déclouer ver f p 0.11 0.88 0.00 0.34 par:pas; +déco déco adj 2.25 0.47 2.25 0.47 +décocha décocher ver 0.44 4.05 0.00 1.42 ind:pas:3s; +décochai décocher ver 0.44 4.05 0.00 0.07 ind:pas:1s; +décochaient décocher ver 0.44 4.05 0.00 0.07 ind:imp:3p; +décochais décocher ver 0.44 4.05 0.00 0.07 ind:imp:1s; +décochait décocher ver 0.44 4.05 0.01 0.27 ind:imp:3s; +décochant décocher ver 0.44 4.05 0.00 0.14 par:pre; +décoche décocher ver 0.44 4.05 0.23 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décochent décocher ver 0.44 4.05 0.00 0.07 ind:pre:3p; +décocher décocher ver 0.44 4.05 0.06 0.54 inf; +décochera décocher ver 0.44 4.05 0.02 0.00 ind:fut:3s; +décocheuses décocheur nom f p 0.00 0.07 0.00 0.07 +décochez décocher ver 0.44 4.05 0.03 0.00 imp:pre:2p;ind:pre:2p; +décoché décocher ver m s 0.44 4.05 0.06 0.27 par:pas; +décochée décocher ver f s 0.44 4.05 0.01 0.14 par:pas; +décochées décocher ver f p 0.44 4.05 0.01 0.07 par:pas; +décoconne décoconner ver 0.00 0.14 0.00 0.07 imp:pre:2s; +décoconnerai décoconner ver 0.00 0.14 0.00 0.07 ind:fut:1s; +décoction décoction nom f s 0.83 1.08 0.81 0.81 +décoctions décoction nom f p 0.83 1.08 0.02 0.27 +décodage décodage nom m s 0.19 0.14 0.19 0.00 +décodages décodage nom m p 0.19 0.14 0.00 0.14 +décodait décoder ver 3.04 0.54 0.00 0.14 ind:imp:3s; +décodant décoder ver 3.04 0.54 0.01 0.00 par:pre; +décode décoder ver 3.04 0.54 0.38 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décodent décoder ver 3.04 0.54 0.02 0.00 ind:pre:3p; +décoder décoder ver 3.04 0.54 1.59 0.34 inf; +décoderai décoder ver 3.04 0.54 0.12 0.00 ind:fut:1s; +décodeur décodeur nom m s 0.39 0.07 0.35 0.07 +décodeurs décodeur nom m p 0.39 0.07 0.02 0.00 +décodeuse décodeur nom f s 0.39 0.07 0.01 0.00 +décodez décoder ver 3.04 0.54 0.06 0.00 imp:pre:2p;ind:pre:2p; +décodons décoder ver 3.04 0.54 0.02 0.00 ind:pre:1p; +décodé décoder ver m s 3.04 0.54 0.71 0.07 par:pas; +décodée décoder ver f s 3.04 0.54 0.04 0.00 par:pas; +décodées décoder ver f p 3.04 0.54 0.04 0.00 par:pas; +décodés décoder ver m p 3.04 0.54 0.04 0.00 par:pas; +décoffrage décoffrage nom m s 0.02 0.00 0.02 0.00 +décoffrés décoffrer ver m p 0.00 0.07 0.00 0.07 par:pas; +décoiffa décoiffer ver 1.37 3.18 0.00 0.07 ind:pas:3s; +décoiffait décoiffer ver 1.37 3.18 0.01 0.07 ind:imp:3s; +décoiffe décoiffer ver 1.37 3.18 0.29 0.14 imp:pre:2s;ind:pre:3s; +décoiffer décoiffer ver 1.37 3.18 0.20 0.20 inf; +décoiffera décoiffer ver 1.37 3.18 0.03 0.00 ind:fut:3s; +décoifferais décoiffer ver 1.37 3.18 0.00 0.07 cnd:pre:2s; +décoifferait décoiffer ver 1.37 3.18 0.00 0.07 cnd:pre:3s; +décoiffes décoiffer ver 1.37 3.18 0.12 0.07 ind:pre:2s; +décoiffez décoiffer ver 1.37 3.18 0.12 0.00 imp:pre:2p;ind:pre:2p; +décoiffé décoiffer ver m s 1.37 3.18 0.25 0.74 par:pas; +décoiffée décoiffer ver f s 1.37 3.18 0.30 1.49 par:pas; +décoiffées décoiffer ver f p 1.37 3.18 0.00 0.14 par:pas; +décoiffés décoiffer ver m p 1.37 3.18 0.04 0.14 par:pas; +décoince décoincer ver 0.93 0.27 0.16 0.00 imp:pre:2s;ind:pre:3s; +décoincer décoincer ver 0.93 0.27 0.61 0.20 inf; +décoincera décoincer ver 0.93 0.27 0.01 0.00 ind:fut:3s; +décoincerait décoincer ver 0.93 0.27 0.01 0.00 cnd:pre:3s; +décoinces décoincer ver 0.93 0.27 0.02 0.00 ind:pre:2s; +décoincez décoincer ver 0.93 0.27 0.03 0.00 imp:pre:2p;ind:pre:2p; +décoincé décoincer ver m s 0.93 0.27 0.06 0.00 par:pas; +décoinça décoincer ver 0.93 0.27 0.00 0.07 ind:pas:3s; +décoinçage décoinçage nom m s 0.01 0.00 0.01 0.00 +décoinçant décoincer ver 0.93 0.27 0.02 0.00 par:pre; +décolla décoller ver 21.15 19.73 0.00 1.35 ind:pas:3s; +décollage décollage nom m s 7.23 1.15 7.14 1.15 +décollages décollage nom m p 7.23 1.15 0.09 0.00 +décollai décoller ver 21.15 19.73 0.00 0.07 ind:pas:1s; +décollaient décoller ver 21.15 19.73 0.02 0.88 ind:imp:3p; +décollais décoller ver 21.15 19.73 0.03 0.27 ind:imp:1s;ind:imp:2s; +décollait décoller ver 21.15 19.73 0.26 1.22 ind:imp:3s; +décollant décoller ver 21.15 19.73 0.07 1.15 par:pre; +décollassions décoller ver 21.15 19.73 0.10 0.00 sub:imp:1p; +décollation décollation nom f s 0.01 0.07 0.01 0.07 +décolle décoller ver 21.15 19.73 5.89 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décollement décollement nom m s 0.27 0.07 0.26 0.07 +décollements décollement nom m p 0.27 0.07 0.01 0.00 +décollent décoller ver 21.15 19.73 0.75 0.27 ind:pre:3p; +décoller décoller ver 21.15 19.73 8.11 5.68 inf; +décollera décoller ver 21.15 19.73 0.77 0.00 ind:fut:3s; +décollerai décoller ver 21.15 19.73 0.16 0.00 ind:fut:1s; +décollerait décoller ver 21.15 19.73 0.14 0.07 cnd:pre:3s; +décolleras décoller ver 21.15 19.73 0.01 0.00 ind:fut:2s; +décollerons décoller ver 21.15 19.73 0.08 0.00 ind:fut:1p; +décolleront décoller ver 21.15 19.73 0.19 0.00 ind:fut:3p; +décolles décoller ver 21.15 19.73 0.12 0.07 ind:pre:2s; +décolleter décolleter ver 0.16 0.95 0.01 0.07 inf; +décolleté décolleté nom m s 1.76 3.92 1.52 3.31 +décolletée décolleté adj f s 0.49 2.36 0.26 1.28 +décolletées décolleté adj f p 0.49 2.36 0.01 0.54 +décolletés décolleté nom m p 1.76 3.92 0.25 0.61 +décollez décoller ver 21.15 19.73 0.60 0.07 imp:pre:2p;ind:pre:2p; +décollons décoller ver 21.15 19.73 0.56 0.00 imp:pre:1p;ind:pre:1p; +décollèrent décoller ver 21.15 19.73 0.00 0.14 ind:pas:3p; +décollé décoller ver m s 21.15 19.73 3.02 1.89 par:pas; +décollée décoller ver f s 21.15 19.73 0.21 1.01 par:pas; +décollées décoller ver f p 21.15 19.73 0.06 1.89 par:pas; +décollés décoller ver m p 21.15 19.73 0.01 0.61 par:pas; +décolonisation décolonisation nom f s 0.00 0.41 0.00 0.41 +décolonise décoloniser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +décolora décolorer ver 0.45 3.58 0.00 0.20 ind:pas:3s; +décoloraient décolorer ver 0.45 3.58 0.00 0.27 ind:imp:3p; +décolorait décolorer ver 0.45 3.58 0.01 0.68 ind:imp:3s; +décolorant décolorer ver 0.45 3.58 0.03 0.00 par:pre; +décoloration décoloration nom f s 0.53 0.34 0.46 0.20 +décolorations décoloration nom f p 0.53 0.34 0.08 0.14 +décolore décolorer ver 0.45 3.58 0.19 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décolorent décolorer ver 0.45 3.58 0.01 0.14 ind:pre:3p; +décolorer décolorer ver 0.45 3.58 0.10 0.34 inf; +décoloré décoloré adj m s 0.29 3.38 0.07 0.95 +décolorée décoloré adj f s 0.29 3.38 0.19 1.15 +décolorées décoloré adj f p 0.29 3.38 0.01 0.54 +décolorés décoloré adj m p 0.29 3.38 0.03 0.74 +décolère décolérer ver 0.01 0.81 0.00 0.07 imp:pre:2s; +décoléraient décolérer ver 0.01 0.81 0.00 0.07 ind:imp:3p; +décolérais décolérer ver 0.01 0.81 0.00 0.07 ind:imp:1s; +décolérait décolérer ver 0.01 0.81 0.00 0.41 ind:imp:3s; +décolérer décolérer ver 0.01 0.81 0.00 0.07 inf; +décoléré décolérer ver m s 0.01 0.81 0.01 0.14 par:pas; +décombre décombrer ver 0.00 0.27 0.00 0.27 ind:pre:3s; +décombres décombre nom m p 1.09 6.55 1.09 6.55 +décommanda décommander ver 2.77 2.30 0.00 0.27 ind:pas:3s; +décommandai décommander ver 2.77 2.30 0.00 0.07 ind:pas:1s; +décommandais décommander ver 2.77 2.30 0.00 0.07 ind:imp:1s; +décommandait décommander ver 2.77 2.30 0.00 0.20 ind:imp:3s; +décommande décommander ver 2.77 2.30 0.57 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +décommander décommander ver 2.77 2.30 0.98 0.88 inf; +décommanderait décommander ver 2.77 2.30 0.00 0.07 cnd:pre:3s; +décommandes décommander ver 2.77 2.30 0.29 0.00 ind:pre:2s; +décommandez décommander ver 2.77 2.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +décommandé décommander ver m s 2.77 2.30 0.66 0.34 par:pas; +décommandée décommander ver f s 2.77 2.30 0.16 0.07 par:pas; +décommandées décommander ver f p 2.77 2.30 0.01 0.07 par:pas; +décommandés décommander ver m p 2.77 2.30 0.01 0.00 par:pas; +décompensation décompensation nom f s 0.01 0.00 0.01 0.00 +décompenser décompenser ver 0.05 0.00 0.04 0.00 inf; +décompensé décompenser ver m s 0.05 0.00 0.01 0.00 par:pas; +décompliquer décompliquer ver 0.02 0.00 0.02 0.00 inf; +décomposa décomposer ver 2.86 7.43 0.00 0.47 ind:pas:3s; +décomposable décomposable adj s 0.00 0.07 0.00 0.07 +décomposaient décomposer ver 2.86 7.43 0.01 0.27 ind:imp:3p; +décomposais décomposer ver 2.86 7.43 0.00 0.20 ind:imp:1s; +décomposait décomposer ver 2.86 7.43 0.14 0.95 ind:imp:3s; +décomposant décomposer ver 2.86 7.43 0.09 0.47 par:pre; +décompose décomposer ver 2.86 7.43 0.69 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décomposent décomposer ver 2.86 7.43 0.31 0.14 ind:pre:3p; +décomposer décomposer ver 2.86 7.43 0.81 1.42 inf; +décomposera décomposer ver 2.86 7.43 0.23 0.14 ind:fut:3s; +décomposeraient décomposer ver 2.86 7.43 0.01 0.14 cnd:pre:3p; +décomposerait décomposer ver 2.86 7.43 0.00 0.07 cnd:pre:3s; +décomposeur décomposeur nom m s 0.01 0.00 0.01 0.00 +décomposition décomposition nom f s 2.59 3.45 2.58 3.38 +décompositions décomposition nom f p 2.59 3.45 0.01 0.07 +décomposé décomposer ver m s 2.86 7.43 0.48 1.08 par:pas; +décomposée décomposé adj f s 0.24 2.97 0.04 0.47 +décomposées décomposé adj f p 0.24 2.97 0.01 0.68 +décomposés décomposé adj m p 0.24 2.97 0.06 0.34 +décompressa décompresser ver 1.11 0.41 0.00 0.07 ind:pas:3s; +décompresse décompresser ver 1.11 0.41 0.38 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décompresser décompresser ver 1.11 0.41 0.63 0.14 inf; +décompressez décompresser ver 1.11 0.41 0.05 0.00 imp:pre:2p;ind:pre:2p; +décompression décompression nom f s 0.50 0.41 0.46 0.34 +décompressions décompression nom f p 0.50 0.41 0.04 0.07 +décompressé décompresser ver m s 1.11 0.41 0.05 0.07 par:pas; +décomprimer décomprimer ver 0.01 0.00 0.01 0.00 inf; +décompte décompte nom m s 1.15 0.81 1.11 0.61 +décompter décompter ver 0.19 0.47 0.08 0.27 inf; +décomptes décompte nom m p 1.15 0.81 0.04 0.20 +décompté décompter ver m s 0.19 0.47 0.04 0.00 par:pas; +décomptés décompter ver m p 0.19 0.47 0.00 0.07 par:pas; +ducon ducon nom m s 6.86 1.01 6.86 1.01 +déconcentrant déconcentrer ver 0.88 0.20 0.01 0.14 par:pre; +déconcentration déconcentration nom f s 0.00 0.07 0.00 0.07 +déconcentrent déconcentrer ver 0.88 0.20 0.02 0.00 ind:pre:3p; +déconcentrer déconcentrer ver 0.88 0.20 0.47 0.07 inf; +déconcentrez déconcentrer ver 0.88 0.20 0.18 0.00 imp:pre:2p;ind:pre:2p; +déconcentré déconcentrer ver m s 0.88 0.20 0.14 0.00 par:pas; +déconcentrée déconcentrer ver f s 0.88 0.20 0.05 0.00 par:pas; +déconcerta déconcerter ver 1.08 7.09 0.01 1.01 ind:pas:3s; +déconcertait déconcerter ver 1.08 7.09 0.00 0.74 ind:imp:3s; +déconcertant déconcertant adj m s 1.01 4.39 0.63 1.01 +déconcertante déconcertant adj f s 1.01 4.39 0.31 2.23 +déconcertantes déconcertant adj f p 1.01 4.39 0.07 0.61 +déconcertants déconcertant adj m p 1.01 4.39 0.00 0.54 +déconcerte déconcerter ver 1.08 7.09 0.09 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconcertent déconcerter ver 1.08 7.09 0.17 0.20 ind:pre:3p; +déconcerter déconcerter ver 1.08 7.09 0.06 0.54 inf; +déconcertera déconcerter ver 1.08 7.09 0.01 0.07 ind:fut:3s; +déconcertez déconcerter ver 1.08 7.09 0.05 0.00 ind:pre:2p; +déconcertèrent déconcerter ver 1.08 7.09 0.00 0.07 ind:pas:3p; +déconcerté déconcerté adj m s 0.25 2.64 0.20 1.55 +déconcertée déconcerter ver f s 1.08 7.09 0.07 1.35 par:pas; +déconcertés déconcerter ver m p 1.08 7.09 0.39 0.34 par:pas; +déconditionnement déconditionnement nom m s 0.03 0.00 0.03 0.00 +déconditionner déconditionner ver 0.01 0.00 0.01 0.00 inf; +déconfire déconfire ver 0.03 0.41 0.01 0.00 inf; +déconfit déconfit adj m s 0.05 0.88 0.04 0.54 +déconfite déconfit adj f s 0.05 0.88 0.00 0.27 +déconfits déconfit adj m p 0.05 0.88 0.01 0.07 +déconfiture déconfiture nom f s 0.07 1.55 0.07 1.42 +déconfitures déconfiture nom f p 0.07 1.55 0.00 0.14 +décongela décongeler ver 0.52 0.34 0.01 0.00 ind:pas:3s; +décongeler décongeler ver 0.52 0.34 0.21 0.07 inf; +décongelé décongeler ver m s 0.52 0.34 0.26 0.27 par:pas; +décongelée décongeler ver f s 0.52 0.34 0.02 0.00 par:pas; +décongestif décongestif nom m s 0.01 0.00 0.01 0.00 +décongestion décongestion nom f s 0.01 0.00 0.01 0.00 +décongestionnant décongestionner ver 0.14 0.07 0.04 0.00 par:pre; +décongestionne décongestionner ver 0.14 0.07 0.00 0.07 ind:pre:3s; +décongestionner décongestionner ver 0.14 0.07 0.10 0.00 inf; +décongestionné décongestionner ver m s 0.14 0.07 0.01 0.00 par:pas; +décongèlera décongeler ver 0.52 0.34 0.01 0.00 ind:fut:3s; +décongélation décongélation nom f s 0.31 0.00 0.31 0.00 +déconnage déconnage nom m s 0.00 0.61 0.00 0.54 +déconnages déconnage nom m p 0.00 0.61 0.00 0.07 +déconnaient déconner ver 39.86 10.95 0.01 0.07 ind:imp:3p; +déconnais déconner ver 39.86 10.95 0.92 0.41 ind:imp:1s;ind:imp:2s; +déconnait déconner ver 39.86 10.95 0.49 0.61 ind:imp:3s; +déconnant déconner ver 39.86 10.95 0.01 0.20 par:pre; +déconne déconner ver 39.86 10.95 13.38 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconnectaient déconnecter ver 2.60 0.47 0.01 0.00 ind:imp:3p; +déconnectant déconnecter ver 2.60 0.47 0.00 0.07 par:pre; +déconnecte déconnecter ver 2.60 0.47 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconnectent déconnecter ver 2.60 0.47 0.01 0.00 ind:pre:3p; +déconnecter déconnecter ver 2.60 0.47 0.64 0.07 inf; +déconnectez déconnecter ver 2.60 0.47 0.20 0.00 imp:pre:2p;ind:pre:2p; +déconnectiez déconnecter ver 2.60 0.47 0.03 0.00 ind:imp:2p; +déconnection déconnection nom f s 0.03 0.00 0.03 0.00 +déconnectons déconnecter ver 2.60 0.47 0.02 0.00 ind:pre:1p; +déconnecté déconnecter ver m s 2.60 0.47 0.92 0.20 par:pas; +déconnectée déconnecter ver f s 2.60 0.47 0.18 0.07 par:pas; +déconnectés déconnecter ver m p 2.60 0.47 0.35 0.00 par:pas; +déconnent déconner ver 39.86 10.95 0.28 0.00 ind:pre:3p; +déconner déconner ver 39.86 10.95 9.39 3.04 inf; +déconnerai déconner ver 39.86 10.95 0.03 0.00 ind:fut:1s; +déconnerais déconner ver 39.86 10.95 0.15 0.00 cnd:pre:1s; +déconnes déconner ver 39.86 10.95 8.95 1.69 ind:pre:2s;sub:pre:2s; +déconneur déconneur nom m s 0.20 0.20 0.19 0.07 +déconneurs déconneur nom m p 0.20 0.20 0.00 0.14 +déconneuse déconneur nom f s 0.20 0.20 0.01 0.00 +déconnexion déconnexion nom f s 0.16 0.07 0.16 0.07 +déconnez déconner ver 39.86 10.95 2.19 0.14 imp:pre:2p;ind:pre:2p; +déconné déconner ver m s 39.86 10.95 4.07 0.68 par:pas; +déconomètre déconomètre nom m s 0.00 0.07 0.00 0.07 +déconophone déconophone nom m s 0.00 0.20 0.00 0.14 +déconophones déconophone nom m p 0.00 0.20 0.00 0.07 +déconseilla déconseiller ver 2.83 2.23 0.14 0.14 ind:pas:3s; +déconseillai déconseiller ver 2.83 2.23 0.00 0.07 ind:pas:1s; +déconseillait déconseiller ver 2.83 2.23 0.01 0.41 ind:imp:3s; +déconseillant déconseiller ver 2.83 2.23 0.01 0.14 par:pre; +déconseille déconseiller ver 2.83 2.23 1.76 0.27 ind:pre:1s;ind:pre:3s; +déconseiller déconseiller ver 2.83 2.23 0.06 0.07 inf; +déconseillerais déconseiller ver 2.83 2.23 0.12 0.07 cnd:pre:1s; +déconseilles déconseiller ver 2.83 2.23 0.00 0.07 ind:pre:2s; +déconseillèrent déconseiller ver 2.83 2.23 0.00 0.14 ind:pas:3p; +déconseillé déconseiller ver m s 2.83 2.23 0.68 0.68 par:pas; +déconseillée déconseiller ver f s 2.83 2.23 0.03 0.14 par:pas; +déconseillées déconseiller ver f p 2.83 2.23 0.01 0.07 par:pas; +déconsidèrent déconsidérer ver 0.03 1.22 0.01 0.00 ind:pre:3p; +déconsidéraient déconsidérer ver 0.03 1.22 0.00 0.07 ind:imp:3p; +déconsidérait déconsidérer ver 0.03 1.22 0.00 0.14 ind:imp:3s; +déconsidérant déconsidérer ver 0.03 1.22 0.00 0.07 par:pre; +déconsidération déconsidération nom f s 0.01 0.00 0.01 0.00 +déconsidérer déconsidérer ver 0.03 1.22 0.01 0.41 inf; +déconsidéré déconsidérer ver m s 0.03 1.22 0.01 0.27 par:pas; +déconsidérée déconsidérer ver f s 0.03 1.22 0.00 0.20 par:pas; +déconsidérés déconsidérer ver m p 0.03 1.22 0.00 0.07 par:pas; +déconsigner déconsigner ver 0.00 0.20 0.00 0.20 inf; +déconstipe déconstiper ver 0.01 0.07 0.00 0.07 ind:pre:3s; +déconstiper déconstiper ver 0.01 0.07 0.01 0.00 inf; +déconstruction déconstruction nom f s 0.08 0.07 0.08 0.07 +déconstruit déconstruire ver m s 0.01 0.07 0.01 0.07 ind:pre:3s;par:pas; +décontaminant décontaminer ver 0.17 0.00 0.01 0.00 par:pre; +décontamination décontamination nom f s 0.96 0.00 0.96 0.00 +décontaminer décontaminer ver 0.17 0.00 0.07 0.00 inf; +décontaminé décontaminer ver m s 0.17 0.00 0.09 0.00 par:pas; +décontenancer décontenancer ver 0.22 2.77 0.03 0.07 inf; +décontenancé décontenancé adj m s 0.32 2.84 0.16 2.16 +décontenancée décontenancé adj f s 0.32 2.84 0.16 0.41 +décontenancés décontenancer ver m p 0.22 2.77 0.10 0.20 par:pas; +décontenança décontenancer ver 0.22 2.77 0.00 0.14 ind:pas:3s; +décontenançaient décontenancer ver 0.22 2.77 0.00 0.14 ind:imp:3p; +décontenançait décontenancer ver 0.22 2.77 0.00 0.14 ind:imp:3s; +décontract décontract adj m s 0.24 0.07 0.24 0.07 +décontracta décontracter ver 1.54 1.28 0.00 0.20 ind:pas:3s; +décontractaient décontracter ver 1.54 1.28 0.00 0.07 ind:imp:3p; +décontractait décontracter ver 1.54 1.28 0.00 0.14 ind:imp:3s; +décontractant décontracter ver 1.54 1.28 0.20 0.20 par:pre; +décontracte décontracter ver 1.54 1.28 0.13 0.20 imp:pre:2s;ind:pre:3s; +décontracter décontracter ver 1.54 1.28 0.27 0.14 inf; +décontractez décontracter ver 1.54 1.28 0.07 0.07 imp:pre:2p; +décontraction décontraction nom f s 0.15 1.28 0.15 1.28 +décontracté décontracter ver m s 1.54 1.28 0.75 0.07 par:pas; +décontractée décontracté adj f s 1.07 1.01 0.26 0.27 +décontractées décontracté adj f p 1.07 1.01 0.03 0.07 +décontractés décontracté adj m p 1.07 1.01 0.17 0.00 +déconvenue déconvenue nom f s 0.32 2.16 0.16 1.42 +déconvenues déconvenue nom f p 0.32 2.16 0.16 0.74 +décor décor nom m s 8.38 45.61 6.01 38.78 +décora décorer ver 8.54 20.20 0.00 0.34 ind:pas:3s; +décorai décorer ver 8.54 20.20 0.00 0.14 ind:pas:1s; +décoraient décorer ver 8.54 20.20 0.03 0.68 ind:imp:3p; +décorais décorer ver 8.54 20.20 0.10 0.00 ind:imp:1s; +décorait décorer ver 8.54 20.20 0.21 0.74 ind:imp:3s; +décorant décorer ver 8.54 20.20 0.03 0.81 par:pre; +décorateur décorateur nom m s 2.55 3.11 1.37 2.03 +décorateurs décorateur nom m p 2.55 3.11 0.36 0.88 +décoratif décoratif adj m s 0.83 4.12 0.38 1.35 +décoratifs décoratif adj m p 0.83 4.12 0.12 1.22 +décoration décoration nom f s 8.15 11.76 4.80 6.35 +décorations décoration nom f p 8.15 11.76 3.35 5.41 +décorative décoratif adj f s 0.83 4.12 0.15 0.88 +décoratives décoratif adj f p 0.83 4.12 0.19 0.68 +décoratrice décorateur nom f s 2.55 3.11 0.81 0.14 +décoratrices décorateur nom f p 2.55 3.11 0.01 0.07 +décore décorer ver 8.54 20.20 0.92 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décorent décorer ver 8.54 20.20 0.43 0.47 ind:pre:3p; +décorer décorer ver 8.54 20.20 3.38 2.91 inf; +décorera décorer ver 8.54 20.20 0.19 0.00 ind:fut:3s; +décorerait décorer ver 8.54 20.20 0.03 0.07 cnd:pre:3s; +décoreront décorer ver 8.54 20.20 0.02 0.00 ind:fut:3p; +décorez décorer ver 8.54 20.20 0.14 0.14 imp:pre:2p;ind:pre:2p; +décorne décorner ver 0.01 0.27 0.00 0.07 ind:pre:3s; +décorner décorner ver 0.01 0.27 0.01 0.20 inf; +décorât décorer ver 8.54 20.20 0.00 0.07 sub:imp:3s; +décors décor nom m p 8.38 45.61 2.37 6.82 +décorèrent décorer ver 8.54 20.20 0.00 0.07 ind:pas:3p; +décorticage décorticage nom m s 0.00 0.14 0.00 0.14 +décortication décortication nom f s 0.01 0.00 0.01 0.00 +décortiqua décortiquer ver 0.70 2.64 0.00 0.14 ind:pas:3s; +décortiquaient décortiquer ver 0.70 2.64 0.01 0.07 ind:imp:3p; +décortiquait décortiquer ver 0.70 2.64 0.00 0.14 ind:imp:3s; +décortiquant décortiquer ver 0.70 2.64 0.00 0.07 par:pre; +décortique décortiquer ver 0.70 2.64 0.17 0.47 imp:pre:2s;ind:pre:3s;sub:pre:3s; +décortiquent décortiquer ver 0.70 2.64 0.00 0.14 ind:pre:3p; +décortiquer décortiquer ver 0.70 2.64 0.40 1.01 inf; +décortiquez décortiquer ver 0.70 2.64 0.03 0.07 imp:pre:2p;ind:pre:2p; +décortiqué décortiquer ver m s 0.70 2.64 0.08 0.34 par:pas; +décortiquée décortiquer ver f s 0.70 2.64 0.01 0.00 par:pas; +décortiquées décortiquer ver f p 0.70 2.64 0.00 0.07 par:pas; +décortiqués décortiquer ver m p 0.70 2.64 0.00 0.14 par:pas; +décoré décorer ver m s 8.54 20.20 2.23 5.95 par:pas; +décorée décorer ver f s 8.54 20.20 0.37 3.38 par:pas; +décorées décorer ver f p 8.54 20.20 0.26 1.49 par:pas; +décorum décorum nom m s 0.17 0.54 0.17 0.54 +décorés décoré adj m p 1.28 2.97 0.24 1.08 +découcha découcher ver 1.03 0.88 0.00 0.07 ind:pas:3s; +découchaient découcher ver 1.03 0.88 0.00 0.07 ind:imp:3p; +découche découcher ver 1.03 0.88 0.37 0.34 ind:pre:1s;ind:pre:3s; +découcher découcher ver 1.03 0.88 0.20 0.20 inf; +découches découcher ver 1.03 0.88 0.27 0.00 ind:pre:2s; +découché découcher ver m s 1.03 0.88 0.20 0.20 par:pas; +découd découdre ver 0.69 2.36 0.00 0.14 ind:pre:3s; +découdre découdre ver 0.69 2.36 0.42 1.15 inf; +découlaient découler ver 1.57 4.12 0.00 0.34 ind:imp:3p; +découlait découler ver 1.57 4.12 0.01 1.01 ind:imp:3s; +découlant découler ver 1.57 4.12 0.04 0.34 par:pre; +découle découler ver 1.57 4.12 0.98 1.01 ind:pre:3s; +découlent découler ver 1.57 4.12 0.21 0.54 ind:pre:3p; +découler découler ver 1.57 4.12 0.13 0.61 inf; +découlera découler ver 1.57 4.12 0.03 0.07 ind:fut:3s; +découlerait découler ver 1.57 4.12 0.02 0.07 cnd:pre:3s; +découlèrent découler ver 1.57 4.12 0.01 0.00 ind:pas:3p; +découlé découler ver m s 1.57 4.12 0.14 0.14 par:pas; +découpa découper ver 12.69 32.70 0.01 1.22 ind:pas:3s; +découpage découpage nom m s 0.86 1.96 0.47 1.62 +découpages découpage nom m p 0.86 1.96 0.40 0.34 +découpai découper ver 12.69 32.70 0.01 0.07 ind:pas:1s; +découpaient découper ver 12.69 32.70 0.01 2.03 ind:imp:3p; +découpais découper ver 12.69 32.70 0.08 0.07 ind:imp:1s; +découpait découper ver 12.69 32.70 0.14 4.66 ind:imp:3s; +découpant découper ver 12.69 32.70 0.28 2.43 par:pre; +découpe découper ver 12.69 32.70 2.33 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +découpent découper ver 12.69 32.70 0.22 1.08 ind:pre:3p; +découper découper ver 12.69 32.70 4.36 4.93 inf;; +découpera découper ver 12.69 32.70 0.04 0.14 ind:fut:3s; +découperai découper ver 12.69 32.70 0.21 0.07 ind:fut:1s; +découperaient découper ver 12.69 32.70 0.01 0.07 cnd:pre:3p; +découperais découper ver 12.69 32.70 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +découperait découper ver 12.69 32.70 0.03 0.14 cnd:pre:3s; +découperont découper ver 12.69 32.70 0.04 0.00 ind:fut:3p; +découpes découper ver 12.69 32.70 0.49 0.00 ind:pre:2s; +découpeur découpeur nom m s 0.17 0.07 0.15 0.00 +découpeurs découpeur nom m p 0.17 0.07 0.01 0.07 +découpeuse découpeur nom f s 0.17 0.07 0.01 0.00 +découpez découper ver 12.69 32.70 0.33 0.07 imp:pre:2p;ind:pre:2p; +découpions découper ver 12.69 32.70 0.00 0.07 ind:imp:1p; +découplage découplage nom m s 0.01 0.00 0.01 0.00 +découpler découpler ver 0.04 0.07 0.01 0.00 inf; +découplons découpler ver 0.04 0.07 0.01 0.00 imp:pre:1p; +découplé découplé adj m s 0.00 0.27 0.00 0.20 +découplée découpler ver f s 0.04 0.07 0.01 0.00 par:pas; +découpons découper ver 12.69 32.70 0.20 0.14 imp:pre:1p;ind:pre:1p; +découpèrent découper ver 12.69 32.70 0.00 0.41 ind:pas:3p; +découpé découper ver m s 12.69 32.70 2.50 4.73 par:pas; +découpée découper ver f s 12.69 32.70 0.92 2.23 par:pas; +découpées découpé adj f p 0.64 3.38 0.10 0.74 +découpure découpure nom f s 0.01 1.01 0.01 0.34 +découpures découpure nom f p 0.01 1.01 0.00 0.68 +découpés découper ver m p 12.69 32.70 0.42 2.30 par:pas; +décourage décourager ver 4.84 15.47 1.13 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +découragea décourager ver 4.84 15.47 0.01 0.41 ind:pas:3s; +décourageai décourager ver 4.84 15.47 0.00 0.07 ind:pas:1s; +décourageaient décourager ver 4.84 15.47 0.00 0.27 ind:imp:3p; +décourageais décourager ver 4.84 15.47 0.01 0.14 ind:imp:1s; +décourageait décourager ver 4.84 15.47 0.02 1.15 ind:imp:3s; +décourageant décourageant adj m s 0.34 1.96 0.19 0.74 +décourageante décourageant adj f s 0.34 1.96 0.14 0.41 +décourageantes décourageant adj f p 0.34 1.96 0.01 0.41 +décourageants décourageant adj m p 0.34 1.96 0.00 0.41 +découragement découragement nom m s 0.27 6.82 0.27 6.28 +découragements découragement nom m p 0.27 6.82 0.00 0.54 +découragent décourager ver 4.84 15.47 0.27 0.20 ind:pre:3p; +décourageons décourager ver 4.84 15.47 0.03 0.00 imp:pre:1p;ind:pre:1p; +décourageât décourager ver 4.84 15.47 0.00 0.07 sub:imp:3s; +décourager décourager ver 4.84 15.47 1.90 5.61 inf; +découragera décourager ver 4.84 15.47 0.07 0.00 ind:fut:3s; +découragerais décourager ver 4.84 15.47 0.10 0.14 cnd:pre:1s;cnd:pre:2s; +découragerait décourager ver 4.84 15.47 0.04 0.20 cnd:pre:3s; +décourages décourager ver 4.84 15.47 0.16 0.20 ind:pre:2s; +découragez décourager ver 4.84 15.47 0.49 0.07 imp:pre:2p;ind:pre:2p; +découragèrent décourager ver 4.84 15.47 0.00 0.14 ind:pas:3p; +découragé décourager ver m s 4.84 15.47 0.41 2.64 par:pas; +découragée décourager ver f s 4.84 15.47 0.09 0.88 par:pas; +découragées décourager ver f p 4.84 15.47 0.01 0.07 par:pas; +découragés décourager ver m p 4.84 15.47 0.08 0.88 par:pas; +découronné découronner ver m s 0.00 0.27 0.00 0.20 par:pas; +découronnés découronner ver m p 0.00 0.27 0.00 0.07 par:pas; +décours décours nom m 0.00 0.14 0.00 0.14 +décousit découdre ver 0.69 2.36 0.00 0.14 ind:pas:3s; +décousu décousu adj m s 0.49 1.62 0.20 0.54 +décousue décousu adj f s 0.49 1.62 0.17 0.54 +décousues décousu adj f p 0.49 1.62 0.01 0.34 +décousus décousu adj m p 0.49 1.62 0.11 0.20 +découvert découvrir ver m s 128.10 203.78 46.22 30.54 par:pas; +découverte découverte nom f s 12.46 29.53 9.25 23.18 +découvertes découverte nom f p 12.46 29.53 3.21 6.35 +découverts découvrir ver m p 128.10 203.78 1.89 1.76 par:pas; +découvrîmes découvrir ver 128.10 203.78 0.02 1.15 ind:pas:1p; +découvrît découvrir ver 128.10 203.78 0.02 0.88 sub:imp:3s; +découvraient découvrir ver 128.10 203.78 0.20 3.92 ind:imp:3p; +découvrais découvrir ver 128.10 203.78 0.54 8.31 ind:imp:1s;ind:imp:2s; +découvrait découvrir ver 128.10 203.78 1.30 17.64 ind:imp:3s; +découvrant découvrir ver 128.10 203.78 1.11 14.12 par:pre; +découvre découvrir ver 128.10 203.78 17.37 26.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +découvrent découvrir ver 128.10 203.78 2.77 3.65 ind:pre:3p;sub:pre:3p; +découvres découvrir ver 128.10 203.78 1.43 0.20 ind:pre:2s; +découvreur découvreur nom m s 0.33 0.81 0.20 0.47 +découvreurs découvreur nom m p 0.33 0.81 0.11 0.34 +découvreuse découvreur nom f s 0.33 0.81 0.01 0.00 +découvrez découvrir ver 128.10 203.78 2.26 0.47 imp:pre:2p;ind:pre:2p; +découvriez découvrir ver 128.10 203.78 0.27 0.14 ind:imp:2p; +découvrions découvrir ver 128.10 203.78 0.07 2.50 ind:imp:1p; +découvrir découvrir ver 128.10 203.78 37.11 50.88 inf; +découvrira découvrir ver 128.10 203.78 2.44 1.22 ind:fut:3s; +découvrirai découvrir ver 128.10 203.78 1.47 0.14 ind:fut:1s; +découvriraient découvrir ver 128.10 203.78 0.04 0.07 cnd:pre:3p; +découvrirais découvrir ver 128.10 203.78 0.30 0.41 cnd:pre:1s;cnd:pre:2s; +découvrirait découvrir ver 128.10 203.78 0.46 1.69 cnd:pre:3s; +découvriras découvrir ver 128.10 203.78 0.82 0.14 ind:fut:2s; +découvrirent découvrir ver 128.10 203.78 0.38 3.65 ind:pas:3p; +découvrirez découvrir ver 128.10 203.78 0.84 0.27 ind:fut:2p; +découvririez découvrir ver 128.10 203.78 0.04 0.00 cnd:pre:2p; +découvrirons découvrir ver 128.10 203.78 0.80 0.20 ind:fut:1p; +découvriront découvrir ver 128.10 203.78 0.70 0.47 ind:fut:3p; +découvris découvrir ver 128.10 203.78 0.92 6.82 ind:pas:1s; +découvrisse découvrir ver 128.10 203.78 0.00 0.07 sub:imp:1s; +découvrissent découvrir ver 128.10 203.78 0.00 0.07 sub:imp:3p; +découvrit découvrir ver 128.10 203.78 1.61 19.39 ind:pas:3s; +découvrons découvrir ver 128.10 203.78 0.81 1.15 imp:pre:1p;ind:pre:1p; +décrût décroître ver 0.35 6.69 0.00 0.14 sub:imp:3s; +décramponner décramponner ver 0.00 0.07 0.00 0.07 inf; +décrapouille décrapouiller ver 0.00 0.07 0.00 0.07 ind:pre:1s; +décrassage décrassage nom m s 0.04 0.20 0.04 0.20 +décrassait décrasser ver 0.20 1.49 0.00 0.27 ind:imp:3s; +décrasse décrasser ver 0.20 1.49 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrasser décrasser ver 0.20 1.49 0.10 0.61 inf; +décrassé décrasser ver m s 0.20 1.49 0.02 0.20 par:pas; +décrassés décrasser ver m p 0.20 1.49 0.00 0.07 par:pas; +décret_loi décret_loi nom m s 0.03 0.07 0.03 0.07 +décret décret nom m s 4.06 9.12 3.54 6.42 +décrets décret nom m p 4.06 9.12 0.52 2.70 +décrie décrier ver 0.30 0.68 0.00 0.07 ind:pre:3s; +décrier décrier ver 0.30 0.68 0.03 0.20 inf; +décries décrier ver 0.30 0.68 0.00 0.07 ind:pre:2s; +décriez décrier ver 0.30 0.68 0.15 0.00 imp:pre:2p;ind:pre:2p; +décriminaliser décriminaliser ver 0.01 0.00 0.01 0.00 inf; +décrira décrire ver 28.31 40.20 0.04 0.07 ind:fut:3s; +décrirai décrire ver 28.31 40.20 0.27 0.14 ind:fut:1s; +décriraient décrire ver 28.31 40.20 0.03 0.00 cnd:pre:3p; +décrirais décrire ver 28.31 40.20 0.40 0.34 cnd:pre:1s;cnd:pre:2s; +décrirait décrire ver 28.31 40.20 0.05 0.14 cnd:pre:3s; +décriras décrire ver 28.31 40.20 0.01 0.07 ind:fut:2s; +décrire décrire ver 28.31 40.20 11.01 13.51 inf; +décrirez décrire ver 28.31 40.20 0.02 0.00 ind:fut:2p; +décririez décrire ver 28.31 40.20 0.41 0.00 cnd:pre:2p; +décriront décrire ver 28.31 40.20 0.01 0.07 ind:fut:3p; +décris décrire ver 28.31 40.20 2.42 1.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +décrispe décrisper ver 0.12 0.54 0.09 0.14 imp:pre:2s;ind:pre:3s; +décrisper décrisper ver 0.12 0.54 0.02 0.27 inf; +décrispât décrisper ver 0.12 0.54 0.00 0.07 sub:imp:3s; +décrispé décrisper ver m s 0.12 0.54 0.01 0.07 par:pas; +décrit décrire ver m s 28.31 40.20 6.93 7.91 ind:pre:3s;par:pas; +décrite décrire ver f s 28.31 40.20 0.78 1.69 par:pas; +décrites décrire ver f p 28.31 40.20 0.17 0.74 par:pas; +décrits décrire ver m p 28.31 40.20 0.36 0.54 par:pas; +décrié décrier ver m s 0.30 0.68 0.03 0.14 par:pas; +décriée décrier ver f s 0.30 0.68 0.10 0.20 par:pas; +décriées décrié adj f p 0.02 0.54 0.01 0.07 +décriés décrié adj m p 0.02 0.54 0.01 0.07 +décrivaient décrire ver 28.31 40.20 0.03 0.88 ind:imp:3p; +décrivais décrire ver 28.31 40.20 0.13 0.27 ind:imp:1s;ind:imp:2s; +décrivait décrire ver 28.31 40.20 1.07 4.26 ind:imp:3s; +décrivant décrire ver 28.31 40.20 0.56 2.91 par:pre; +décrive décrire ver 28.31 40.20 0.13 0.41 sub:pre:1s;sub:pre:3s; +décrivent décrire ver 28.31 40.20 0.73 0.68 ind:pre:3p; +décrives décrire ver 28.31 40.20 0.05 0.00 sub:pre:2s; +décrivez décrire ver 28.31 40.20 2.56 0.34 imp:pre:2p;ind:pre:2p; +décriviez décrire ver 28.31 40.20 0.06 0.00 ind:imp:2p; +décrivirent décrire ver 28.31 40.20 0.00 0.34 ind:pas:3p; +décrivis décrire ver 28.31 40.20 0.00 0.41 ind:pas:1s; +décrivit décrire ver 28.31 40.20 0.05 3.04 ind:pas:3s; +décroît décroître ver 0.35 6.69 0.24 1.49 ind:pre:3s; +décroître décroître ver 0.35 6.69 0.05 2.23 inf; +décrocha décrocher ver 25.00 30.41 0.05 5.47 ind:pas:3s; +décrochage décrochage nom m s 0.25 0.54 0.25 0.47 +décrochages décrochage nom m p 0.25 0.54 0.00 0.07 +décrochai décrocher ver 25.00 30.41 0.01 0.74 ind:pas:1s; +décrochaient décrocher ver 25.00 30.41 0.01 0.47 ind:imp:3p; +décrochais décrocher ver 25.00 30.41 0.23 0.41 ind:imp:1s;ind:imp:2s; +décrochait décrocher ver 25.00 30.41 0.15 1.15 ind:imp:3s; +décrochant décrocher ver 25.00 30.41 0.05 0.95 par:pre; +décroche décrocher ver 25.00 30.41 9.95 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrochement décrochement nom m s 0.00 0.47 0.00 0.34 +décrochements décrochement nom m p 0.00 0.47 0.00 0.14 +décrochent décrocher ver 25.00 30.41 0.38 0.47 ind:pre:3p; +décrocher décrocher ver 25.00 30.41 6.02 7.91 inf; +décrochera décrocher ver 25.00 30.41 0.11 0.07 ind:fut:3s; +décrocherai décrocher ver 25.00 30.41 0.25 0.00 ind:fut:1s; +décrocheraient décrocher ver 25.00 30.41 0.00 0.07 cnd:pre:3p; +décrocherais décrocher ver 25.00 30.41 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +décrocherait décrocher ver 25.00 30.41 0.02 0.14 cnd:pre:3s; +décrocheras décrocher ver 25.00 30.41 0.03 0.00 ind:fut:2s; +décrocheront décrocher ver 25.00 30.41 0.05 0.00 ind:fut:3p; +décrochez_moi_ça décrochez_moi_ça nom m 0.00 0.07 0.00 0.07 +décrochez décrocher ver 25.00 30.41 2.08 0.20 imp:pre:2p;ind:pre:2p; +décrochiez décrocher ver 25.00 30.41 0.01 0.00 ind:imp:2p; +décrochons décrocher ver 25.00 30.41 0.03 0.07 imp:pre:1p;ind:pre:1p; +décrochèrent décrocher ver 25.00 30.41 0.01 0.20 ind:pas:3p; +décroché décrocher ver m s 25.00 30.41 5.28 4.80 par:pas; +décrochée décrocher ver f s 25.00 30.41 0.20 0.47 par:pas; +décrochées décrocher ver f p 25.00 30.41 0.00 0.34 par:pas; +décrochés décrocher ver m p 25.00 30.41 0.02 0.47 par:pas; +décroisa décroiser ver 0.30 1.96 0.00 0.61 ind:pas:3s; +décroisait décroiser ver 0.30 1.96 0.00 0.27 ind:imp:3s; +décroisant décroiser ver 0.30 1.96 0.00 0.14 par:pre; +décroise décroiser ver 0.30 1.96 0.28 0.47 imp:pre:2s;ind:pre:3s; +décroiser décroiser ver 0.30 1.96 0.02 0.07 inf; +décroissaient décroître ver 0.35 6.69 0.00 0.20 ind:imp:3p; +décroissait décroître ver 0.35 6.69 0.00 0.41 ind:imp:3s; +décroissance décroissance nom f s 0.01 0.00 0.01 0.00 +décroissant décroître ver 0.35 6.69 0.01 1.01 par:pre; +décroissante décroissant adj f s 0.08 1.08 0.04 0.14 +décroissantes décroissant adj f p 0.08 1.08 0.00 0.20 +décroissants décroissant adj m p 0.08 1.08 0.03 0.14 +décroisse décroître ver 0.35 6.69 0.01 0.07 sub:pre:3s; +décroissent décroître ver 0.35 6.69 0.01 0.20 ind:pre:3p; +décroisé décroiser ver m s 0.30 1.96 0.00 0.14 par:pas; +décroisées décroiser ver f p 0.30 1.96 0.00 0.27 par:pas; +décrottages décrottage nom m p 0.00 0.07 0.00 0.07 +décrottait décrotter ver 0.05 0.68 0.00 0.07 ind:imp:3s; +décrottant décrotter ver 0.05 0.68 0.01 0.00 par:pre; +décrotte décrotter ver 0.05 0.68 0.01 0.14 ind:pre:3s; +décrottent décrotter ver 0.05 0.68 0.02 0.07 ind:pre:3p; +décrotter décrotter ver 0.05 0.68 0.01 0.20 inf; +décrottions décrotter ver 0.05 0.68 0.00 0.07 ind:imp:1p; +décrottoir décrottoir nom m s 0.00 0.14 0.00 0.14 +décrottée décrotter ver f s 0.05 0.68 0.00 0.07 par:pas; +décrottés décrotter ver m p 0.05 0.68 0.00 0.07 par:pas; +décrète décréter ver 4.86 10.74 1.18 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrètent décréter ver 4.86 10.74 0.29 0.00 ind:pre:3p; +décrètes décréter ver 4.86 10.74 0.00 0.07 ind:pre:2s; +décru décroître ver m s 0.35 6.69 0.02 0.41 par:pas; +décrédibiliser décrédibiliser ver 0.02 0.00 0.01 0.00 inf; +décrédibilisez décrédibiliser ver 0.02 0.00 0.01 0.00 ind:pre:2p; +décrue décrue nom f s 0.02 0.14 0.02 0.14 +décrêpage décrêpage nom m s 0.00 0.07 0.00 0.07 +décrêper décrêper ver 0.01 0.14 0.01 0.14 inf; +décrépi décrépir ver m s 0.12 0.95 0.03 0.20 par:pas; +décrépie décrépir ver f s 0.12 0.95 0.01 0.20 par:pas; +décrépies décrépir ver f p 0.12 0.95 0.01 0.07 par:pas; +décrépis décrépir ver m p 0.12 0.95 0.01 0.41 par:pas; +décrépit décrépit adj m s 0.60 0.47 0.42 0.07 +décrépite décrépit adj f s 0.60 0.47 0.19 0.27 +décrépites décrépit adj f p 0.60 0.47 0.00 0.07 +décrépits décrépit adj m p 0.60 0.47 0.00 0.07 +décrépitude décrépitude nom f s 0.12 1.62 0.12 1.62 +décrut décroître ver 0.35 6.69 0.01 0.54 ind:pas:3s; +décréta décréter ver 4.86 10.74 0.11 3.11 ind:pas:3s; +décrétai décréter ver 4.86 10.74 0.00 0.14 ind:pas:1s; +décrétaient décréter ver 4.86 10.74 0.00 0.20 ind:imp:3p; +décrétais décréter ver 4.86 10.74 0.00 0.07 ind:imp:1s; +décrétait décréter ver 4.86 10.74 0.01 0.74 ind:imp:3s; +décrétant décréter ver 4.86 10.74 0.02 0.61 par:pre; +décréter décréter ver 4.86 10.74 0.18 0.47 inf; +décrétera décréter ver 4.86 10.74 0.00 0.07 ind:fut:3s; +décréterai décréter ver 4.86 10.74 0.01 0.00 ind:fut:1s; +décréterais décréter ver 4.86 10.74 0.00 0.07 cnd:pre:1s; +décréterait décréter ver 4.86 10.74 0.01 0.14 cnd:pre:3s; +décréteront décréter ver 4.86 10.74 0.00 0.07 ind:fut:3p; +décrétez décréter ver 4.86 10.74 0.04 0.14 imp:pre:2p;ind:pre:2p; +décrétons décréter ver 4.86 10.74 0.34 0.07 imp:pre:1p;ind:pre:1p; +décrétèrent décréter ver 4.86 10.74 0.00 0.20 ind:pas:3p; +décrété décréter ver m s 4.86 10.74 2.58 2.23 par:pas; +décrétée décréter ver f s 4.86 10.74 0.07 0.34 par:pas; +décrétés décréter ver m p 4.86 10.74 0.01 0.14 par:pas; +décryptage décryptage nom m s 0.20 0.14 0.20 0.14 +décryptai décrypter ver 0.89 0.54 0.00 0.07 ind:pas:1s; +décrypte décrypter ver 0.89 0.54 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrypter décrypter ver 0.89 0.54 0.46 0.34 inf; +décrypteur décrypteur nom m s 0.27 0.00 0.10 0.00 +décrypteurs décrypteur nom m p 0.27 0.00 0.17 0.00 +décrypté décrypter ver m s 0.89 0.54 0.30 0.07 par:pas; +décryptés décrypter ver m p 0.89 0.54 0.03 0.00 par:pas; +duc_d_albe duc_d_albe nom m p 0.00 0.07 0.00 0.07 +ducs duc nom m p 12.40 23.51 0.69 1.62 +décède décéder ver 8.38 3.04 0.26 0.14 ind:pre:3s; +décèdent décéder ver 8.38 3.04 0.03 0.00 ind:pre:3p; +décèle déceler ver 2.00 11.15 0.49 0.74 ind:pre:1s;ind:pre:3s; +décèlera déceler ver 2.00 11.15 0.01 0.00 ind:fut:3s; +décèlerait déceler ver 2.00 11.15 0.00 0.14 cnd:pre:3s; +décèleront déceler ver 2.00 11.15 0.00 0.07 ind:fut:3p; +décèles déceler ver 2.00 11.15 0.00 0.07 ind:pre:2s; +décès décès nom m 12.82 4.66 12.82 4.66 +ductile ductile adj s 0.01 0.27 0.01 0.27 +décéda décéder ver 8.38 3.04 0.04 0.00 ind:pas:3s; +décédait décéder ver 8.38 3.04 0.03 0.00 ind:imp:3s; +décéder décéder ver 8.38 3.04 0.23 0.14 inf; +décédé décéder ver m s 8.38 3.04 4.15 1.62 par:pas; +décédée décéder ver f s 8.38 3.04 2.64 1.08 par:pas; +décédées décéder ver f p 8.38 3.04 0.09 0.00 par:pas; +décédés décéder ver m p 8.38 3.04 0.91 0.07 par:pas; +décuité décuiter ver m s 0.00 0.07 0.00 0.07 par:pas; +déculotta déculotter ver 0.28 1.82 0.00 0.14 ind:pas:3s; +déculottait déculotter ver 0.28 1.82 0.01 0.14 ind:imp:3s; +déculottant déculotter ver 0.28 1.82 0.00 0.07 par:pre; +déculotte déculotter ver 0.28 1.82 0.15 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déculotter déculotter ver 0.28 1.82 0.05 0.81 inf; +déculottera déculotter ver 0.28 1.82 0.00 0.07 ind:fut:3s; +déculotté déculotter ver m s 0.28 1.82 0.07 0.34 par:pas; +déculottée déculottée nom f s 0.13 0.00 0.12 0.00 +déculottées déculottée nom f p 0.13 0.00 0.01 0.00 +déculottés déculotté nom m p 0.01 0.00 0.01 0.00 +déculpabilisait déculpabiliser ver 0.11 0.14 0.00 0.07 ind:imp:3s; +déculpabiliser déculpabiliser ver 0.11 0.14 0.11 0.00 inf; +déculpabilisé déculpabiliser ver m s 0.11 0.14 0.00 0.07 par:pas; +décélération décélération nom f s 0.30 0.14 0.30 0.14 +décélérer décélérer ver 0.06 0.00 0.05 0.00 inf; +décélérez décélérer ver 0.06 0.00 0.01 0.00 imp:pre:2p; +décupla décupler ver 0.50 3.24 0.03 0.27 ind:pas:3s; +décuplaient décupler ver 0.50 3.24 0.00 0.14 ind:imp:3p; +décuplait décupler ver 0.50 3.24 0.00 0.47 ind:imp:3s; +décuplant décupler ver 0.50 3.24 0.01 0.27 par:pre; +décuple décupler ver 0.50 3.24 0.20 0.14 ind:pre:3s; +décuplent décupler ver 0.50 3.24 0.01 0.14 ind:pre:3p; +décupler décupler ver 0.50 3.24 0.07 0.41 inf; +décuplera décupler ver 0.50 3.24 0.01 0.07 ind:fut:3s; +décuplerait décupler ver 0.50 3.24 0.00 0.07 cnd:pre:3s; +décuplèrent décupler ver 0.50 3.24 0.02 0.00 ind:pas:3p; +décuplé décupler ver m s 0.50 3.24 0.09 0.54 par:pas; +décuplée décupler ver f s 0.50 3.24 0.04 0.41 par:pas; +décuplées décupler ver f p 0.50 3.24 0.01 0.20 par:pas; +décuplés décupler ver m p 0.50 3.24 0.00 0.14 par:pas; +décérébration décérébration nom f s 0.03 0.00 0.03 0.00 +décérébrer décérébrer ver 0.22 0.07 0.01 0.00 inf; +décérébré décérébrer ver m s 0.22 0.07 0.07 0.07 par:pas; +décérébrée décérébrer ver f s 0.22 0.07 0.05 0.00 par:pas; +décérébrés décérébrer ver m p 0.22 0.07 0.09 0.00 par:pas; +décuver décuver ver 0.04 0.00 0.04 0.00 inf; +dédaigna dédaigner ver 2.18 10.47 0.02 0.20 ind:pas:3s; +dédaignables dédaignable adj p 0.00 0.07 0.00 0.07 +dédaignaient dédaigner ver 2.18 10.47 0.01 0.54 ind:imp:3p; +dédaignais dédaigner ver 2.18 10.47 0.00 0.27 ind:imp:1s; +dédaignait dédaigner ver 2.18 10.47 0.00 2.64 ind:imp:3s; +dédaignant dédaigner ver 2.18 10.47 0.02 1.49 par:pre; +dédaigne dédaigner ver 2.18 10.47 0.38 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dédaignent dédaigner ver 2.18 10.47 0.06 0.07 ind:pre:3p; +dédaigner dédaigner ver 2.18 10.47 0.41 1.49 inf; +dédaignes dédaigner ver 2.18 10.47 0.14 0.07 ind:pre:2s; +dédaigneuse dédaigneux nom f s 0.01 0.07 0.01 0.07 +dédaigneusement dédaigneusement adv 0.01 1.15 0.01 1.15 +dédaigneuses dédaigneux adj f p 0.27 6.55 0.01 0.41 +dédaigneux dédaigneux adj m 0.27 6.55 0.26 3.85 +dédaignez dédaigner ver 2.18 10.47 0.28 0.14 imp:pre:2p;ind:pre:2p; +dédaignât dédaigner ver 2.18 10.47 0.01 0.27 sub:imp:3s; +dédaigné dédaigner ver m s 2.18 10.47 0.55 1.15 par:pas; +dédaignée dédaigner ver f s 2.18 10.47 0.16 0.34 par:pas; +dédaignés dédaigner ver m p 2.18 10.47 0.14 0.41 par:pas; +dédain dédain nom m s 0.65 10.07 0.65 9.39 +dédains dédain nom m p 0.65 10.07 0.00 0.68 +dédale dédale nom m s 0.28 5.88 0.27 5.27 +dédales dédale nom m p 0.28 5.88 0.01 0.61 +dédia dédier ver 8.69 7.77 0.11 0.88 ind:pas:3s; +dédiaient dédier ver 8.69 7.77 0.00 0.34 ind:imp:3p; +dédiait dédier ver 8.69 7.77 0.01 0.61 ind:imp:3s; +dédiant dédier ver 8.69 7.77 0.04 0.20 par:pre; +dédicace dédicace nom f s 1.92 2.30 1.72 1.76 +dédicacer dédicacer ver 1.91 1.49 0.69 0.41 inf; +dédicacerai dédicacer ver 1.91 1.49 0.01 0.00 ind:fut:1s; +dédicaces dédicace nom f p 1.92 2.30 0.20 0.54 +dédicacez dédicacer ver 1.91 1.49 0.14 0.00 imp:pre:2p;ind:pre:2p; +dédicaciez dédicacer ver 1.91 1.49 0.01 0.00 ind:imp:2p; +dédicacé dédicacer ver m s 1.91 1.49 0.25 0.34 par:pas; +dédicacée dédicacé adj f s 0.76 0.61 0.59 0.34 +dédicacées dédicacé adj f p 0.76 0.61 0.01 0.00 +dédicacés dédicacé adj m p 0.76 0.61 0.04 0.14 +dédicaça dédicacer ver 1.91 1.49 0.00 0.14 ind:pas:3s; +dédicaçait dédicacer ver 1.91 1.49 0.00 0.14 ind:imp:3s; +dédicatoire dédicatoire adj f s 0.00 0.41 0.00 0.34 +dédicatoires dédicatoire adj f p 0.00 0.41 0.00 0.07 +dédie dédier ver 8.69 7.77 1.83 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dédient dédier ver 8.69 7.77 0.14 0.14 ind:pre:3p; +dédier dédier ver 8.69 7.77 1.67 1.08 inf; +dédiera dédier ver 8.69 7.77 0.03 0.00 ind:fut:3s; +dédierai dédier ver 8.69 7.77 0.03 0.14 ind:fut:1s; +dédierait dédier ver 8.69 7.77 0.00 0.20 cnd:pre:3s; +dédiez dédier ver 8.69 7.77 0.01 0.00 imp:pre:2p; +dédions dédier ver 8.69 7.77 0.23 0.00 imp:pre:1p;ind:pre:1p; +dédire dédire ver 0.04 0.61 0.01 0.27 inf; +dédit dédit nom m s 0.04 0.41 0.04 0.41 +dudit dudit pre 0.16 1.08 0.16 1.08 +dédite dédire ver f s 0.04 0.61 0.01 0.00 par:pas; +dédié dédier ver m s 8.69 7.77 3.38 1.55 par:pas; +dédiée dédier ver f s 8.69 7.77 1.07 0.74 par:pas; +dédiées dédier ver f p 8.69 7.77 0.01 0.54 par:pas; +dédiés dédier ver m p 8.69 7.77 0.11 0.41 par:pas; +dédommage dédommager ver 3.05 1.69 0.35 0.14 ind:pre:1s;ind:pre:3s; +dédommagea dédommager ver 3.05 1.69 0.10 0.07 ind:pas:3s; +dédommageait dédommager ver 3.05 1.69 0.14 0.20 ind:imp:3s; +dédommagement dédommagement nom m s 1.18 0.74 1.10 0.54 +dédommagements dédommagement nom m p 1.18 0.74 0.08 0.20 +dédommagent dédommager ver 3.05 1.69 0.00 0.20 ind:pre:3p; +dédommager dédommager ver 3.05 1.69 1.45 0.47 ind:pre:2p;inf; +dédommagera dédommager ver 3.05 1.69 0.16 0.00 ind:fut:3s; +dédommagerai dédommager ver 3.05 1.69 0.25 0.07 ind:fut:1s; +dédommagerait dédommager ver 3.05 1.69 0.00 0.07 cnd:pre:3s; +dédommagerez dédommager ver 3.05 1.69 0.01 0.00 ind:fut:2p; +dédommagerons dédommager ver 3.05 1.69 0.00 0.07 ind:fut:1p; +dédommagé dédommager ver m s 3.05 1.69 0.25 0.34 par:pas; +dédommagée dédommager ver f s 3.05 1.69 0.19 0.07 par:pas; +dédommagés dédommager ver m p 3.05 1.69 0.15 0.00 par:pas; +dédorent dédorer ver 0.00 0.47 0.00 0.07 ind:pre:3p; +dédoré dédorer ver m s 0.00 0.47 0.00 0.07 par:pas; +dédorée dédorer ver f s 0.00 0.47 0.00 0.07 par:pas; +dédorées dédorer ver f p 0.00 0.47 0.00 0.14 par:pas; +dédorés dédorer ver m p 0.00 0.47 0.00 0.14 par:pas; +dédouanait dédouaner ver 0.08 0.74 0.00 0.07 ind:imp:3s; +dédouane dédouaner ver 0.08 0.74 0.01 0.14 ind:pre:1s;ind:pre:3s; +dédouanement dédouanement nom m s 0.14 0.00 0.14 0.00 +dédouaner dédouaner ver 0.08 0.74 0.03 0.34 inf; +dédouanez dédouaner ver 0.08 0.74 0.00 0.07 ind:pre:2p; +dédouané dédouaner ver m s 0.08 0.74 0.01 0.14 par:pas; +dédouanée dédouaner ver f s 0.08 0.74 0.02 0.00 par:pas; +dédouanés dédouaner ver m p 0.08 0.74 0.01 0.00 par:pas; +dédoubla dédoubler ver 0.97 2.03 0.00 0.07 ind:pas:3s; +dédoublaient dédoubler ver 0.97 2.03 0.00 0.14 ind:imp:3p; +dédoublais dédoubler ver 0.97 2.03 0.00 0.07 ind:imp:1s; +dédoublait dédoubler ver 0.97 2.03 0.00 0.07 ind:imp:3s; +dédouble dédoubler ver 0.97 2.03 0.04 0.14 ind:pre:3s; +dédoublement dédoublement nom m s 0.46 1.01 0.46 1.01 +dédoubler dédoubler ver 0.97 2.03 0.12 0.68 inf; +dédoublerait dédoubler ver 0.97 2.03 0.00 0.07 cnd:pre:3s; +dédoublez dédoubler ver 0.97 2.03 0.02 0.00 imp:pre:2p; +dédoublons dédoubler ver 0.97 2.03 0.01 0.00 imp:pre:1p; +dédoublé dédoubler ver m s 0.97 2.03 0.44 0.54 par:pas; +dédoublée dédoubler ver f s 0.97 2.03 0.13 0.14 par:pas; +dédoublées dédoubler ver f p 0.97 2.03 0.00 0.07 par:pas; +dédoublés dédoubler ver m p 0.97 2.03 0.21 0.07 par:pas; +dédramatisant dédramatiser ver 0.06 0.27 0.00 0.07 par:pre; +dédramatise dédramatiser ver 0.06 0.27 0.02 0.00 imp:pre:2s;ind:pre:1s; +dédramatiser dédramatiser ver 0.06 0.27 0.03 0.20 inf; +déducteur déducteur nom m s 0.00 0.14 0.00 0.14 +déductibilité déductibilité nom f s 0.07 0.00 0.07 0.00 +déductible déductible adj f s 0.56 0.00 0.40 0.00 +déductibles déductible adj f p 0.56 0.00 0.16 0.00 +déductif déductif adj m s 0.16 0.07 0.14 0.00 +déduction déduction nom f s 2.06 2.16 1.55 1.08 +déductions déduction nom f p 2.06 2.16 0.52 1.08 +déductive déductif adj f s 0.16 0.07 0.03 0.07 +déduira déduire ver 7.08 6.01 0.05 0.14 ind:fut:3s; +déduirai déduire ver 7.08 6.01 0.31 0.00 ind:fut:1s; +déduiraient déduire ver 7.08 6.01 0.01 0.07 cnd:pre:3p; +déduirait déduire ver 7.08 6.01 0.03 0.00 cnd:pre:3s; +déduire déduire ver 7.08 6.01 2.00 2.36 inf; +déduirez déduire ver 7.08 6.01 0.04 0.07 ind:fut:2p; +déduis déduire ver 7.08 6.01 1.54 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +déduisaient déduire ver 7.08 6.01 0.01 0.14 ind:imp:3p; +déduisait déduire ver 7.08 6.01 0.00 0.27 ind:imp:3s; +déduisant déduire ver 7.08 6.01 0.02 0.00 par:pre; +déduise déduire ver 7.08 6.01 0.04 0.07 sub:pre:1s;sub:pre:3s; +déduisent déduire ver 7.08 6.01 0.08 0.07 ind:pre:3p; +déduisez déduire ver 7.08 6.01 0.28 0.07 imp:pre:2p;ind:pre:2p; +déduisiez déduire ver 7.08 6.01 0.01 0.07 ind:imp:2p; +déduisit déduire ver 7.08 6.01 0.02 0.34 ind:pas:3s; +déduisons déduire ver 7.08 6.01 0.00 0.14 imp:pre:1p;ind:pre:1p; +déduit déduire ver m s 7.08 6.01 2.41 1.22 ind:pre:3s;par:pas; +déduite déduire ver f s 7.08 6.01 0.01 0.34 par:pas; +déduites déduire ver f p 7.08 6.01 0.03 0.14 par:pas; +déduits déduire ver m p 7.08 6.01 0.20 0.14 par:pas; +due devoir ver_sup f s 3232.80 1318.24 3.95 5.95 par:pas; +duel duel nom m s 7.54 5.95 6.17 4.93 +duelliste duelliste nom s 0.21 0.14 0.20 0.00 +duellistes duelliste nom p 0.21 0.14 0.01 0.14 +duels duel nom m p 7.54 5.95 1.37 1.01 +dues devoir ver_sup f p 3232.80 1318.24 1.94 1.55 par:pas; +déesse déesse nom f s 13.56 8.65 11.82 6.42 +déesses déesse nom f p 13.56 8.65 1.74 2.23 +duettistes duettiste nom p 0.06 0.68 0.06 0.68 +défaillais défaillir ver 1.32 5.47 0.01 0.07 ind:imp:1s; +défaillait défaillir ver 1.32 5.47 0.02 0.54 ind:imp:3s; +défaillance défaillance nom f s 2.37 7.57 2.06 5.47 +défaillances défaillance nom f p 2.37 7.57 0.31 2.09 +défaillant défaillant adj m s 1.02 2.30 0.36 0.81 +défaillante défaillant adj f s 1.02 2.30 0.54 0.81 +défaillantes défaillant adj f p 1.02 2.30 0.04 0.27 +défaillants défaillant adj m p 1.02 2.30 0.09 0.41 +défaille défaillir ver 1.32 5.47 0.65 0.88 sub:pre:1s;sub:pre:3s; +défaillent défaillir ver 1.32 5.47 0.01 0.14 ind:pre:3p; +défailli défaillir ver m s 1.32 5.47 0.01 0.34 par:pas; +défaillir défaillir ver 1.32 5.47 0.58 2.91 inf; +défaillirait défaillir ver 1.32 5.47 0.00 0.07 cnd:pre:3s; +défaillis défaillir ver 1.32 5.47 0.02 0.07 ind:pas:1s; +défaillit défaillir ver 1.32 5.47 0.00 0.27 ind:pas:3s; +défaire défaire ver 12.32 32.23 5.26 10.14 inf; +défais défaire ver 12.32 32.23 2.13 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +défaisaient défaire ver 12.32 32.23 0.03 0.81 ind:imp:3p; +défaisais défaire ver 12.32 32.23 0.02 0.14 ind:imp:1s;ind:imp:2s; +défaisait défaire ver 12.32 32.23 0.04 2.50 ind:imp:3s; +défaisant défaire ver 12.32 32.23 0.11 0.88 par:pre; +défaisons défaire ver 12.32 32.23 0.01 0.07 ind:pre:1p; +défait défaire ver m s 12.32 32.23 2.25 7.84 ind:pre:3s;par:pas; +défaite défaite nom f s 8.38 21.82 7.64 19.46 +défaites défaire ver f p 12.32 32.23 0.75 0.14 imp:pre:2p;ind:pre:2p;par:pas; +défaitisme défaitisme nom m s 0.56 0.68 0.56 0.68 +défaitiste défaitiste adj s 1.26 0.41 0.57 0.14 +défaitistes défaitiste adj p 1.26 0.41 0.69 0.27 +défaits défaire ver m p 12.32 32.23 0.57 1.22 par:pas; +défalque défalquer ver 0.01 0.27 0.00 0.07 ind:pre:3s; +défalquer défalquer ver 0.01 0.27 0.01 0.07 inf; +défalqué défalquer ver m s 0.01 0.27 0.00 0.07 par:pas; +défalquées défalquer ver f p 0.01 0.27 0.00 0.07 par:pas; +défarguaient défarguer ver 0.00 0.61 0.00 0.07 ind:imp:3p; +défargue défarguer ver 0.00 0.61 0.00 0.20 ind:pre:3s; +défarguer défarguer ver 0.00 0.61 0.00 0.20 inf; +défargué défarguer ver m s 0.00 0.61 0.00 0.14 par:pas; +défasse défaire ver 12.32 32.23 0.05 0.54 sub:pre:1s;sub:pre:3s; +défausse défausser ver 0.02 0.07 0.01 0.00 ind:pre:3s; +défausser défausser ver 0.02 0.07 0.01 0.07 inf; +défaut défaut nom m s 18.36 38.45 11.24 27.70 +défauts défaut nom m p 18.36 38.45 7.12 10.74 +défaveur défaveur nom f s 0.18 0.41 0.18 0.41 +défavorable défavorable adj s 0.68 2.91 0.56 1.76 +défavorablement défavorablement adv 0.00 0.20 0.00 0.20 +défavorables défavorable adj p 0.68 2.91 0.12 1.15 +défavorisait défavoriser ver 0.06 0.20 0.00 0.07 ind:imp:3s; +défavorisent défavoriser ver 0.06 0.20 0.01 0.00 ind:pre:3p; +défavorisé défavorisé adj m s 0.53 0.54 0.07 0.14 +défavorisée défavorisé adj f s 0.53 0.54 0.05 0.07 +défavorisées défavorisé adj f p 0.53 0.54 0.03 0.20 +défavorisés défavorisé adj m p 0.53 0.54 0.39 0.14 +défectible défectible adj s 0.00 0.07 0.00 0.07 +défectif défectif adj m s 0.01 0.00 0.01 0.00 +défection défection nom f s 0.44 1.35 0.42 1.15 +défectionnaires défectionnaire adj p 0.00 0.07 0.00 0.07 +défections défection nom f p 0.44 1.35 0.02 0.20 +défectueuse défectueux adj f s 2.54 1.89 0.60 0.61 +défectueusement défectueusement adv 0.00 0.07 0.00 0.07 +défectueuses défectueux adj f p 2.54 1.89 0.19 0.54 +défectueux défectueux adj m 2.54 1.89 1.74 0.74 +défectuosité défectuosité nom f s 0.01 0.14 0.01 0.14 +défend défendre ver 78.36 91.08 7.00 6.01 ind:pre:3s; +défendît défendre ver 78.36 91.08 0.00 0.47 sub:imp:3s; +défendable défendable adj f s 0.20 0.20 0.20 0.20 +défendaient défendre ver 78.36 91.08 0.20 2.36 ind:imp:3p; +défendais défendre ver 78.36 91.08 0.70 1.82 ind:imp:1s;ind:imp:2s; +défendait défendre ver 78.36 91.08 1.39 8.18 ind:imp:3s; +défendant défendre ver 78.36 91.08 1.64 2.16 par:pre; +défende défendre ver 78.36 91.08 0.56 0.47 sub:pre:1s;sub:pre:3s; +défendent défendre ver 78.36 91.08 1.81 2.09 ind:pre:3p; +défenderesse défendeur nom f s 0.50 0.00 0.03 0.00 +défendes défendre ver 78.36 91.08 0.22 0.20 sub:pre:2s; +défendeur défendeur nom m s 0.50 0.00 0.43 0.00 +défendeurs défendeur nom m p 0.50 0.00 0.04 0.00 +défendez défendre ver 78.36 91.08 2.94 0.88 imp:pre:2p;ind:pre:2p; +défendiez défendre ver 78.36 91.08 0.13 0.14 ind:imp:2p; +défendions défendre ver 78.36 91.08 0.02 0.27 ind:imp:1p; +défendirent défendre ver 78.36 91.08 0.01 0.14 ind:pas:3p; +défendis défendre ver 78.36 91.08 0.10 0.27 ind:pas:1s; +défendit défendre ver 78.36 91.08 0.01 1.22 ind:pas:3s; +défendons défendre ver 78.36 91.08 0.75 0.47 imp:pre:1p;ind:pre:1p; +défendra défendre ver 78.36 91.08 1.00 0.68 ind:fut:3s; +défendrai défendre ver 78.36 91.08 1.80 0.61 ind:fut:1s; +défendraient défendre ver 78.36 91.08 0.13 0.34 cnd:pre:3p; +défendrais défendre ver 78.36 91.08 0.14 0.47 cnd:pre:1s;cnd:pre:2s; +défendrait défendre ver 78.36 91.08 0.11 1.15 cnd:pre:3s; +défendras défendre ver 78.36 91.08 0.06 0.07 ind:fut:2s; +défendre défendre ver 78.36 91.08 36.58 41.49 inf; +défendrez défendre ver 78.36 91.08 0.22 0.14 ind:fut:2p; +défendriez défendre ver 78.36 91.08 0.06 0.14 cnd:pre:2p; +défendrons défendre ver 78.36 91.08 0.37 0.14 ind:fut:1p; +défendront défendre ver 78.36 91.08 0.23 0.27 ind:fut:3p; +défends défendre ver 78.36 91.08 9.24 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +défendu défendre ver m s 78.36 91.08 9.18 10.81 par:pas; +défendue défendre ver f s 78.36 91.08 1.17 2.16 par:pas; +défendues défendre ver f p 78.36 91.08 0.10 0.14 par:pas; +défendus défendre ver m p 78.36 91.08 0.50 0.47 par:pas; +défenestraient défenestrer ver 0.44 0.27 0.00 0.07 ind:imp:3p; +défenestrant défenestrer ver 0.44 0.27 0.01 0.00 par:pre; +défenestration défenestration nom f s 0.09 0.07 0.09 0.07 +défenestrer défenestrer ver 0.44 0.27 0.17 0.00 inf; +défenestrerai défenestrer ver 0.44 0.27 0.00 0.07 ind:fut:1s; +défenestré défenestrer ver m s 0.44 0.27 0.12 0.14 par:pas; +défenestrée défenestrer ver f s 0.44 0.27 0.14 0.00 par:pas; +défens défens nom m 0.01 0.00 0.01 0.00 +défense défense nom f s 50.94 52.30 48.56 47.77 +défenses défense nom f p 50.94 52.30 2.38 4.53 +défenseur défenseur nom m s 3.74 6.35 2.59 3.38 +défenseurs défenseur nom m p 3.74 6.35 1.15 2.97 +défensif défensif adj m s 2.35 1.96 0.71 0.74 +défensifs défensif adj m p 2.35 1.96 0.33 0.00 +défensive défensive nom f s 0.98 1.89 0.98 1.89 +défensives défensif adj f p 2.35 1.96 0.57 0.27 +défera défaire ver 12.32 32.23 0.03 0.27 ind:fut:3s; +déferai défaire ver 12.32 32.23 0.05 0.14 ind:fut:1s; +déferaient défaire ver 12.32 32.23 0.00 0.07 cnd:pre:3p; +déferais défaire ver 12.32 32.23 0.01 0.00 cnd:pre:1s; +déferait défaire ver 12.32 32.23 0.15 0.27 cnd:pre:3s; +déferas défaire ver 12.32 32.23 0.02 0.00 ind:fut:2s; +déferez défaire ver 12.32 32.23 0.00 0.07 ind:fut:2p; +déferla déferler ver 1.38 11.28 0.05 1.22 ind:pas:3s; +déferlaient déferler ver 1.38 11.28 0.03 1.42 ind:imp:3p; +déferlait déferler ver 1.38 11.28 0.03 2.36 ind:imp:3s; +déferlant déferler ver 1.38 11.28 0.02 0.54 par:pre; +déferlante déferlante nom f s 0.26 0.34 0.23 0.20 +déferlantes déferlante nom f p 0.26 0.34 0.03 0.14 +déferle déferler ver 1.38 11.28 0.57 1.55 imp:pre:2s;ind:pre:3s; +déferlement déferlement nom m s 0.34 4.66 0.33 4.53 +déferlements déferlement nom m p 0.34 4.66 0.01 0.14 +déferlent déferler ver 1.38 11.28 0.30 1.15 ind:pre:3p; +déferler déferler ver 1.38 11.28 0.08 1.76 inf; +déferleraient déferler ver 1.38 11.28 0.00 0.14 cnd:pre:3p; +déferlerait déferler ver 1.38 11.28 0.00 0.20 cnd:pre:3s; +déferleront déferler ver 1.38 11.28 0.00 0.07 ind:fut:3p; +déferlez déferler ver 1.38 11.28 0.02 0.00 imp:pre:2p; +déferlât déferler ver 1.38 11.28 0.00 0.07 sub:imp:3s; +déferlèrent déferler ver 1.38 11.28 0.01 0.00 ind:pas:3p; +déferlé déferler ver m s 1.38 11.28 0.28 0.74 par:pas; +déferlées déferler ver f p 1.38 11.28 0.00 0.07 par:pas; +déferons défaire ver 12.32 32.23 0.10 0.07 ind:fut:1p; +déferont défaire ver 12.32 32.23 0.01 0.07 ind:fut:3p; +déferrer déferrer ver 0.10 0.07 0.10 0.00 inf; +déferré déferrer ver m s 0.10 0.07 0.00 0.07 par:pas; +déferré déferré adj m s 0.00 0.07 0.00 0.07 +défeuillées défeuiller ver f p 0.00 0.07 0.00 0.07 par:pas; +duffel_coat duffel_coat nom m s 0.01 0.07 0.01 0.07 +duffle_coat duffle_coat nom m s 0.00 0.34 0.00 0.27 +duffle_coat duffle_coat nom m p 0.00 0.34 0.00 0.07 +défi défi nom m s 12.24 17.36 10.23 15.20 +défia défier ver 13.49 12.30 0.04 0.27 ind:pas:3s; +défiaient défier ver 13.49 12.30 0.12 0.61 ind:imp:3p; +défiais défier ver 13.49 12.30 0.01 0.27 ind:imp:1s; +défiait défier ver 13.49 12.30 0.23 1.69 ind:imp:3s; +défiance défiance nom f s 0.58 2.09 0.58 1.96 +défiances défiance nom f p 0.58 2.09 0.00 0.14 +défiant défiant adj m s 0.43 0.34 0.43 0.27 +défiante défiant adj f s 0.43 0.34 0.00 0.07 +défibreur défibreur nom m s 0.01 0.00 0.01 0.00 +défibrillateur défibrillateur nom m s 0.58 0.00 0.57 0.00 +défibrillateurs défibrillateur nom m p 0.58 0.00 0.01 0.00 +défibrillation défibrillation nom f s 0.14 0.00 0.14 0.00 +déficeler déficeler ver 0.01 0.27 0.01 0.14 inf; +déficelle déficeler ver 0.01 0.27 0.00 0.07 ind:pre:3s; +déficelèrent déficeler ver 0.01 0.27 0.00 0.07 ind:pas:3p; +déficience déficience nom f s 1.01 1.22 0.56 0.47 +déficiences déficience nom f p 1.01 1.22 0.45 0.74 +déficient déficient adj m s 0.45 0.74 0.21 0.27 +déficiente déficient adj f s 0.45 0.74 0.11 0.41 +déficientes déficient adj f p 0.45 0.74 0.04 0.00 +déficients déficient adj m p 0.45 0.74 0.09 0.07 +déficit déficit nom m s 1.92 1.42 1.91 0.95 +déficitaire déficitaire adj s 0.10 0.34 0.06 0.07 +déficitaires déficitaire adj p 0.10 0.34 0.04 0.27 +déficits déficit nom m p 1.92 1.42 0.01 0.47 +défie défier ver 13.49 12.30 5.36 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défient défier ver 13.49 12.30 0.86 0.54 ind:pre:3p; +défier défier ver 13.49 12.30 3.92 4.39 inf; +défiera défier ver 13.49 12.30 0.05 0.00 ind:fut:3s; +défierai défier ver 13.49 12.30 0.05 0.00 ind:fut:1s; +défierais défier ver 13.49 12.30 0.03 0.00 cnd:pre:1s; +défierait défier ver 13.49 12.30 0.02 0.14 cnd:pre:3s; +défieriez défier ver 13.49 12.30 0.01 0.00 cnd:pre:2p; +défierons défier ver 13.49 12.30 0.01 0.00 ind:fut:1p; +défiez défier ver 13.49 12.30 0.57 0.27 imp:pre:2p;ind:pre:2p; +défigeait défiger ver 0.07 0.07 0.00 0.07 ind:imp:3s; +défiger défiger ver 0.07 0.07 0.07 0.00 inf; +défigura défigurer ver 3.27 5.41 0.01 0.14 ind:pas:3s; +défiguraient défigurer ver 3.27 5.41 0.00 0.27 ind:imp:3p; +défigurais défigurer ver 3.27 5.41 0.00 0.07 ind:imp:1s; +défigurait défigurer ver 3.27 5.41 0.00 0.54 ind:imp:3s; +défigurant défigurer ver 3.27 5.41 0.01 0.07 par:pre; +défiguration défiguration nom f s 0.25 0.14 0.24 0.14 +défigurations défiguration nom f p 0.25 0.14 0.01 0.00 +défigure défigurer ver 3.27 5.41 0.55 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défigurement défigurement nom m s 0.01 0.00 0.01 0.00 +défigurent défigurer ver 3.27 5.41 0.01 0.14 ind:pre:3p; +défigurer défigurer ver 3.27 5.41 0.56 0.81 inf; +défigurerait défigurer ver 3.27 5.41 0.01 0.07 cnd:pre:3s; +défiguré défigurer ver m s 3.27 5.41 1.43 1.62 par:pas; +défigurée défigurer ver f s 3.27 5.41 0.62 0.74 par:pas; +défigurées défiguré adj f p 0.71 1.69 0.02 0.07 +défigurés défigurer ver m p 3.27 5.41 0.06 0.41 par:pas; +défila défiler ver 10.82 32.64 0.00 0.54 ind:pas:3s; +défilaient défiler ver 10.82 32.64 0.17 4.73 ind:imp:3p; +défilais défiler ver 10.82 32.64 0.04 0.20 ind:imp:1s;ind:imp:2s; +défilait défiler ver 10.82 32.64 0.20 2.70 ind:imp:3s; +défilant défiler ver 10.82 32.64 0.17 1.15 par:pre; +défilantes défilant adj f p 0.00 0.14 0.00 0.07 +défilants défilant adj m p 0.00 0.14 0.00 0.07 +défile défiler ver 10.82 32.64 2.66 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défilement défilement nom m s 0.01 0.68 0.01 0.61 +défilements défilement nom m p 0.01 0.68 0.00 0.07 +défilent défiler ver 10.82 32.64 1.04 4.59 ind:pre:3p; +défiler défiler ver 10.82 32.64 4.32 11.28 inf; +défilera défiler ver 10.82 32.64 0.19 0.14 ind:fut:3s; +défileraient défiler ver 10.82 32.64 0.00 0.27 cnd:pre:3p; +défilerait défiler ver 10.82 32.64 0.02 0.27 cnd:pre:3s; +défileras défiler ver 10.82 32.64 0.01 0.00 ind:fut:2s; +défilerez défiler ver 10.82 32.64 0.01 0.07 ind:fut:2p; +défilerons défiler ver 10.82 32.64 0.03 0.00 ind:fut:1p; +défileront défiler ver 10.82 32.64 0.19 0.00 ind:fut:3p; +défilez défiler ver 10.82 32.64 0.25 0.07 imp:pre:2p;ind:pre:2p; +défiliez défiler ver 10.82 32.64 0.02 0.00 ind:imp:2p; +défilions défiler ver 10.82 32.64 0.01 0.07 ind:imp:1p; +défilons défiler ver 10.82 32.64 0.01 0.14 ind:pre:1p; +défilèrent défiler ver 10.82 32.64 0.01 1.62 ind:pas:3p; +défilé défilé nom m s 8.05 14.73 7.45 12.30 +défilée défiler ver f s 10.82 32.64 0.07 0.00 par:pas; +défilés défilé nom m p 8.05 14.73 0.59 2.43 +défini définir ver m s 7.22 14.53 0.82 1.22 par:pas; +définie définir ver f s 7.22 14.53 0.51 1.28 par:pas; +définies défini adj f p 1.40 3.38 0.22 0.14 +définir définir ver 7.22 14.53 3.07 7.70 inf; +définira définir ver 7.22 14.53 0.05 0.07 ind:fut:3s; +définirais définir ver 7.22 14.53 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +définirait définir ver 7.22 14.53 0.04 0.14 cnd:pre:3s; +définiriez définir ver 7.22 14.53 0.10 0.00 cnd:pre:2p; +définis définir ver m p 7.22 14.53 0.35 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +définissable définissable adj m s 0.00 0.20 0.00 0.14 +définissables définissable adj p 0.00 0.20 0.00 0.07 +définissaient définir ver 7.22 14.53 0.00 0.20 ind:imp:3p; +définissait définir ver 7.22 14.53 0.14 1.15 ind:imp:3s; +définissant définir ver 7.22 14.53 0.06 0.14 par:pre; +définisse définir ver 7.22 14.53 0.08 0.07 sub:pre:3s; +définissent définir ver 7.22 14.53 0.36 0.41 ind:pre:3p; +définissez définir ver 7.22 14.53 0.53 0.07 imp:pre:2p;ind:pre:2p; +définissons définir ver 7.22 14.53 0.05 0.07 imp:pre:1p;ind:pre:1p; +définit définir ver 7.22 14.53 0.93 1.28 ind:pre:3s;ind:pas:3s; +définitif définitif adj m s 8.01 31.76 4.00 10.41 +définitifs définitif adj m p 8.01 31.76 0.30 1.89 +définition définition nom f s 4.95 7.23 4.73 6.28 +définitions définition nom f p 4.95 7.23 0.22 0.95 +définitive définitif adj f s 8.01 31.76 3.43 17.97 +définitivement définitivement adv 9.34 23.51 9.34 23.51 +définitives définitif adj f p 8.01 31.76 0.27 1.49 +défions défier ver 13.49 12.30 0.47 0.07 imp:pre:1p;ind:pre:1p; +défirent défaire ver 12.32 32.23 0.00 0.27 ind:pas:3p; +défis défi nom m p 12.24 17.36 2.02 2.16 +défiscalisations défiscalisation nom f p 0.01 0.00 0.01 0.00 +défiscalisé défiscaliser ver m s 0.01 0.00 0.01 0.00 par:pas; +défit défaire ver 12.32 32.23 0.14 3.58 ind:pas:3s; +défièrent défier ver 13.49 12.30 0.02 0.07 ind:pas:3p; +défié défier ver m s 13.49 12.30 1.19 0.68 par:pas; +défiée défier ver f s 13.49 12.30 0.07 0.07 par:pas; +défiés défier ver m p 13.49 12.30 0.16 0.14 par:pas; +déflagrante déflagrant adj f s 0.00 0.07 0.00 0.07 +déflagration déflagration nom f s 0.34 2.09 0.31 1.55 +déflagrations déflagration nom f p 0.34 2.09 0.02 0.54 +déflationniste déflationniste adj f s 0.02 0.00 0.01 0.00 +déflationnistes déflationniste adj f p 0.02 0.00 0.01 0.00 +déflecteur déflecteur adj m s 0.04 0.00 0.04 0.00 +déflecteurs déflecteur nom m p 0.08 0.20 0.06 0.14 +défleuri défleurir ver m s 0.00 0.47 0.00 0.20 par:pas; +défleuries défleurir ver f p 0.00 0.47 0.00 0.20 par:pas; +défleuris défleurir ver m p 0.00 0.47 0.00 0.07 par:pas; +déflexion déflexion nom f s 0.09 0.00 0.09 0.00 +défloraison défloraison nom f s 0.00 0.20 0.00 0.20 +déflorait déflorer ver 0.89 0.81 0.02 0.07 ind:imp:3s; +défloration défloration nom f s 0.01 0.20 0.01 0.20 +déflorer déflorer ver 0.89 0.81 0.12 0.14 inf; +déflorerons déflorer ver 0.89 0.81 0.00 0.07 ind:fut:1p; +défloré déflorer ver m s 0.89 0.81 0.11 0.20 par:pas; +déflorée déflorer ver f s 0.89 0.81 0.65 0.27 par:pas; +déflorés déflorer ver m p 0.89 0.81 0.00 0.07 par:pas; +défoliant défoliant nom m s 0.01 0.00 0.01 0.00 +défonce défoncer ver 16.85 9.39 3.95 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défoncement défoncement nom m s 0.00 0.34 0.00 0.27 +défoncements défoncement nom m p 0.00 0.34 0.00 0.07 +défoncent défoncer ver 16.85 9.39 0.50 0.27 ind:pre:3p; +défoncer défoncer ver 16.85 9.39 5.22 2.84 inf; +défoncera défoncer ver 16.85 9.39 0.06 0.14 ind:fut:3s; +défoncerai défoncer ver 16.85 9.39 0.19 0.07 ind:fut:1s; +défonceraient défoncer ver 16.85 9.39 0.01 0.07 cnd:pre:3p; +défoncerait défoncer ver 16.85 9.39 0.04 0.07 cnd:pre:3s; +défonceront défoncer ver 16.85 9.39 0.00 0.07 ind:fut:3p; +défonceuse défonceuse nom f s 0.02 0.14 0.02 0.14 +défoncez défoncer ver 16.85 9.39 0.31 0.00 imp:pre:2p;ind:pre:2p; +défoncé défoncer ver m s 16.85 9.39 4.54 2.03 par:pas; +défoncée défoncer ver f s 16.85 9.39 1.30 0.95 par:pas; +défoncées défoncé adj f p 3.97 5.68 0.17 0.81 +défoncés défoncé adj m p 3.97 5.68 0.61 1.55 +défont défaire ver 12.32 32.23 0.05 1.22 ind:pre:3p; +défonça défoncer ver 16.85 9.39 0.01 0.07 ind:pas:3s; +défonçai défoncer ver 16.85 9.39 0.00 0.07 ind:pas:1s; +défonçaient défoncer ver 16.85 9.39 0.02 0.14 ind:imp:3p; +défonçais défoncer ver 16.85 9.39 0.06 0.00 ind:imp:1s;ind:imp:2s; +défonçait défoncer ver 16.85 9.39 0.21 0.34 ind:imp:3s; +défonçant défoncer ver 16.85 9.39 0.05 0.20 par:pre; +défonçons défoncer ver 16.85 9.39 0.04 0.00 imp:pre:1p;ind:pre:1p; +déforestation déforestation nom f s 0.04 0.00 0.04 0.00 +déforma déformer ver 2.75 12.43 0.00 0.41 ind:pas:3s; +déformaient déformer ver 2.75 12.43 0.01 0.27 ind:imp:3p; +déformait déformer ver 2.75 12.43 0.03 1.01 ind:imp:3s; +déformant déformant adj m s 0.07 0.95 0.04 0.27 +déformante déformant adj f s 0.07 0.95 0.04 0.41 +déformantes déformant adj f p 0.07 0.95 0.00 0.14 +déformants déformant adj m p 0.07 0.95 0.00 0.14 +déformation déformation nom f s 0.86 2.43 0.75 1.69 +déformations déformation nom f p 0.86 2.43 0.11 0.74 +déforme déformer ver 2.75 12.43 0.55 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déforment déformer ver 2.75 12.43 0.13 0.61 ind:pre:3p; +déformer déformer ver 2.75 12.43 0.62 1.15 inf; +déformera déformer ver 2.75 12.43 0.00 0.07 ind:fut:3s; +déformerai déformer ver 2.75 12.43 0.00 0.07 ind:fut:1s; +déformerait déformer ver 2.75 12.43 0.01 0.07 cnd:pre:3s; +déformeront déformer ver 2.75 12.43 0.03 0.07 ind:fut:3p; +déformes déformer ver 2.75 12.43 0.26 0.07 ind:pre:2s; +déformez déformer ver 2.75 12.43 0.20 0.07 imp:pre:2p;ind:pre:2p; +déformé déformer ver m s 2.75 12.43 0.56 2.57 par:pas; +déformée déformé adj f s 1.41 3.65 0.36 0.81 +déformées déformé adj f p 1.41 3.65 0.13 0.68 +déformés déformé adj m p 1.41 3.65 0.38 1.35 +défoulaient défouler ver 3.39 0.74 0.01 0.00 ind:imp:3p; +défoulais défouler ver 3.39 0.74 0.06 0.00 ind:imp:1s;ind:imp:2s; +défoulait défouler ver 3.39 0.74 0.05 0.00 ind:imp:3s; +défoule défouler ver 3.39 0.74 1.31 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défoulement défoulement nom m s 0.06 0.27 0.06 0.27 +défoulent défouler ver 3.39 0.74 0.14 0.07 ind:pre:3p; +défouler défouler ver 3.39 0.74 1.66 0.27 inf; +défoulera défouler ver 3.39 0.74 0.03 0.00 ind:fut:3s; +défoulerait défouler ver 3.39 0.74 0.01 0.07 cnd:pre:3s; +défoules défouler ver 3.39 0.74 0.09 0.00 ind:pre:2s; +défouliez défouler ver 3.39 0.74 0.01 0.07 ind:imp:2p; +défouloir défouloir nom m s 0.15 0.00 0.15 0.00 +défoulons défouler ver 3.39 0.74 0.01 0.00 imp:pre:1p; +défoulés défouler ver m p 3.39 0.74 0.01 0.00 par:pas; +défouraillaient défourailler ver 0.29 0.81 0.00 0.07 ind:imp:3p; +défouraille défourailler ver 0.29 0.81 0.00 0.14 ind:pre:3s; +défouraillent défourailler ver 0.29 0.81 0.00 0.07 ind:pre:3p; +défourailler défourailler ver 0.29 0.81 0.29 0.34 inf; +défouraillerait défourailler ver 0.29 0.81 0.00 0.07 cnd:pre:3s; +défouraillé défourailler ver m s 0.29 0.81 0.00 0.14 par:pas; +défourna défourner ver 0.00 0.14 0.00 0.07 ind:pas:3s; +défournait défourner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +défraîchi défraîchi adj m s 0.23 2.77 0.06 0.88 +défraîchie défraîchi adj f s 0.23 2.77 0.16 0.54 +défraîchies défraîchi adj f p 0.23 2.77 0.00 0.68 +défraîchir défraîchir ver 0.07 1.01 0.00 0.20 inf; +défraîchis défraîchi adj m p 0.23 2.77 0.01 0.68 +défraîchissait défraîchir ver 0.07 1.01 0.00 0.07 ind:imp:3s; +défragmenteur défragmenteur nom m s 0.01 0.00 0.01 0.00 +défraiement défraiement nom m s 0.42 0.07 0.05 0.00 +défraiements défraiement nom m p 0.42 0.07 0.37 0.07 +défraya défrayer ver 0.04 1.55 0.01 0.20 ind:pas:3s; +défrayaient défrayer ver 0.04 1.55 0.00 0.20 ind:imp:3p; +défrayait défrayer ver 0.04 1.55 0.00 0.47 ind:imp:3s; +défrayant défrayer ver 0.04 1.55 0.00 0.07 par:pre; +défrayent défrayer ver 0.04 1.55 0.00 0.07 ind:pre:3p; +défrayer défrayer ver 0.04 1.55 0.00 0.41 inf; +défrayèrent défrayer ver 0.04 1.55 0.00 0.07 ind:pas:3p; +défrayé défrayer ver m s 0.04 1.55 0.03 0.07 par:pas; +défricha défricher ver 0.43 1.82 0.00 0.07 ind:pas:3s; +défrichage défrichage nom m s 0.00 0.14 0.00 0.14 +défrichait défricher ver 0.43 1.82 0.00 0.07 ind:imp:3s; +défriche défricher ver 0.43 1.82 0.13 0.20 ind:pre:1s;ind:pre:3s; +défrichement défrichement nom m s 0.00 0.47 0.00 0.41 +défrichements défrichement nom m p 0.00 0.47 0.00 0.07 +défricher défricher ver 0.43 1.82 0.10 0.74 inf; +défricheurs défricheur nom m p 0.00 0.14 0.00 0.14 +défriché défricher ver m s 0.43 1.82 0.10 0.47 par:pas; +défrichée défricher ver f s 0.43 1.82 0.10 0.14 par:pas; +défrichées défricher ver f p 0.43 1.82 0.00 0.07 par:pas; +défrichés défricher ver m p 0.43 1.82 0.00 0.07 par:pas; +défringue défringuer ver 0.00 0.20 0.00 0.14 imp:pre:2s; +défringues défringuer ver 0.00 0.20 0.00 0.07 ind:pre:2s; +défripe défriper ver 0.00 0.34 0.00 0.14 ind:pre:1s;ind:pre:3s; +défripera défriper ver 0.00 0.34 0.00 0.07 ind:fut:3s; +défripé défriper ver m s 0.00 0.34 0.00 0.07 par:pas; +défripées défriper ver f p 0.00 0.34 0.00 0.07 par:pas; +défrisage défrisage nom m s 0.01 0.00 0.01 0.00 +défrisaient défriser ver 0.88 1.01 0.00 0.07 ind:imp:3p; +défrisait défriser ver 0.88 1.01 0.00 0.14 ind:imp:3s; +défrise défriser ver 0.88 1.01 0.68 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défriser défriser ver 0.88 1.01 0.05 0.27 inf; +défriserait défriser ver 0.88 1.01 0.02 0.00 cnd:pre:3s; +défrises défriser ver 0.88 1.01 0.11 0.00 ind:pre:2s; +défrisé défriser ver m s 0.88 1.01 0.02 0.14 par:pas; +défroissa défroisser ver 0.19 1.28 0.00 0.07 ind:pas:3s; +défroissai défroisser ver 0.19 1.28 0.00 0.07 ind:pas:1s; +défroissaient défroisser ver 0.19 1.28 0.00 0.07 ind:imp:3p; +défroissait défroisser ver 0.19 1.28 0.00 0.07 ind:imp:3s; +défroissant défroisser ver 0.19 1.28 0.00 0.20 par:pre; +défroisse défroisser ver 0.19 1.28 0.17 0.07 ind:pre:1s;ind:pre:3s; +défroissent défroisser ver 0.19 1.28 0.00 0.07 ind:pre:3p; +défroisser défroisser ver 0.19 1.28 0.01 0.34 inf; +défroissé défroisser ver m s 0.19 1.28 0.01 0.14 par:pas; +défroissées défroisser ver f p 0.19 1.28 0.00 0.07 par:pas; +défroissés défroisser ver m p 0.19 1.28 0.00 0.14 par:pas; +défroqua défroquer ver 0.12 0.47 0.00 0.07 ind:pas:3s; +défroque défroque nom f s 0.03 2.16 0.03 1.28 +défroquer défroquer ver 0.12 0.47 0.02 0.00 inf; +défroques défroque nom f p 0.03 2.16 0.00 0.88 +défroqué défroquer ver m s 0.12 0.47 0.08 0.20 par:pas; +défroquée défroquer ver f s 0.12 0.47 0.01 0.07 par:pas; +défroqués défroquer ver m p 0.12 0.47 0.00 0.14 par:pas; +défèque déféquer ver 0.92 0.61 0.04 0.07 ind:pre:3s; +défécation défécation nom f s 0.01 0.81 0.01 0.61 +défécations défécation nom f p 0.01 0.81 0.00 0.20 +défécatoire défécatoire adj s 0.00 0.41 0.00 0.41 +déféminiser déféminiser ver 0.01 0.00 0.01 0.00 inf; +défunt défunt nom m s 6.42 6.28 4.50 2.91 +défunte défunt adj f s 4.79 5.27 1.63 1.28 +défunter défunter ver 0.00 0.14 0.00 0.07 inf; +défuntes défunt nom f p 6.42 6.28 0.14 0.14 +défunts défunt nom m p 6.42 6.28 1.06 1.69 +défunté défunter ver m s 0.00 0.14 0.00 0.07 par:pas; +déféquaient déféquer ver 0.92 0.61 0.14 0.07 ind:imp:3p; +déféquant déféquer ver 0.92 0.61 0.03 0.07 par:pre; +déféquassent déféquer ver 0.92 0.61 0.14 0.00 sub:imp:3p; +déféquer déféquer ver 0.92 0.61 0.48 0.27 inf; +déféqué déféquer ver m s 0.92 0.61 0.09 0.14 par:pas; +déféra déférer ver 0.42 0.47 0.00 0.07 ind:pas:3s; +déférait déférer ver 0.42 0.47 0.00 0.07 ind:imp:3s; +déférant déférer ver 0.42 0.47 0.00 0.07 par:pre; +déférence déférence nom f s 0.08 4.26 0.08 4.26 +déférent déférent adj m s 0.01 2.70 0.00 1.42 +déférente déférent adj f s 0.01 2.70 0.00 0.81 +déférentes déférent adj f p 0.01 2.70 0.00 0.20 +déférents déférent adj m p 0.01 2.70 0.01 0.27 +déférer déférer ver 0.42 0.47 0.05 0.07 inf; +déférerait déférer ver 0.42 0.47 0.00 0.07 cnd:pre:3s; +déféré déférer ver m s 0.42 0.47 0.36 0.07 par:pas; +déférés déférer ver m p 0.42 0.47 0.01 0.07 par:pas; +dégage dégager ver 102.47 58.04 56.41 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dégagea dégager ver 102.47 58.04 0.00 6.62 ind:pas:3s; +dégageai dégager ver 102.47 58.04 0.00 0.27 ind:pas:1s; +dégageaient dégager ver 102.47 58.04 0.04 1.62 ind:imp:3p; +dégageait dégager ver 102.47 58.04 0.22 8.85 ind:imp:3s; +dégageant dégager ver 102.47 58.04 0.32 3.92 par:pre; +dégagement dégagement nom m s 0.44 0.74 0.44 0.54 +dégagements dégagement nom m p 0.44 0.74 0.00 0.20 +dégagent dégager ver 102.47 58.04 1.18 1.42 ind:pre:3p; +dégageons dégager ver 102.47 58.04 0.67 0.14 imp:pre:1p;ind:pre:1p; +dégageât dégager ver 102.47 58.04 0.00 0.14 sub:imp:3s; +dégager dégager ver 102.47 58.04 8.22 15.20 inf; +dégagera dégager ver 102.47 58.04 0.22 0.07 ind:fut:3s; +dégageraient dégager ver 102.47 58.04 0.00 0.07 cnd:pre:3p; +dégagerais dégager ver 102.47 58.04 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +dégagerait dégager ver 102.47 58.04 0.02 0.34 cnd:pre:3s; +dégageront dégager ver 102.47 58.04 0.03 0.00 ind:fut:3p; +dégages dégager ver 102.47 58.04 3.15 0.14 ind:pre:2s;sub:pre:2s; +dégagez dégager ver 102.47 58.04 27.61 0.41 imp:pre:2p;ind:pre:2p; +dégagèrent dégager ver 102.47 58.04 0.03 0.27 ind:pas:3p; +dégagé dégager ver m s 102.47 58.04 2.96 4.39 par:pas; +dégagée dégager ver f s 102.47 58.04 1.04 2.70 par:pas; +dégagées dégager ver f p 102.47 58.04 0.08 0.41 par:pas; +dégagés dégager ver m p 102.47 58.04 0.25 0.68 par:pas; +dégaina dégainer ver 4.95 1.96 0.01 0.07 ind:pas:3s; +dégainais dégainer ver 4.95 1.96 0.02 0.00 ind:imp:1s;ind:imp:2s; +dégainait dégainer ver 4.95 1.96 0.06 0.00 ind:imp:3s; +dégainant dégainer ver 4.95 1.96 0.01 0.14 par:pre; +dégaine dégaine nom f s 1.45 3.18 1.43 3.11 +dégainent dégainer ver 4.95 1.96 0.04 0.00 ind:pre:3p; +dégainer dégainer ver 4.95 1.96 1.62 0.54 inf; +dégainerai dégainer ver 4.95 1.96 0.01 0.00 ind:fut:1s; +dégainerez dégainer ver 4.95 1.96 0.01 0.00 ind:fut:2p; +dégaines dégainer ver 4.95 1.96 0.15 0.00 ind:pre:2s; +dégainez dégainer ver 4.95 1.96 0.81 0.00 imp:pre:2p;ind:pre:2p; +dégainèrent dégainer ver 4.95 1.96 0.00 0.07 ind:pas:3p; +dégainé dégainer ver m s 4.95 1.96 0.80 0.41 par:pas; +dégainés dégainer ver m p 4.95 1.96 0.00 0.14 par:pas; +déganta déganter ver 0.02 0.34 0.00 0.07 ind:pas:3s; +dégantant déganter ver 0.02 0.34 0.00 0.07 par:pre; +déganté déganter ver m s 0.02 0.34 0.01 0.00 par:pas; +dégantée déganter ver f s 0.02 0.34 0.01 0.14 par:pas; +dégantées déganter ver f p 0.02 0.34 0.00 0.07 par:pas; +dégarni dégarni adj m s 0.40 1.82 0.39 1.69 +dégarnie dégarni adj f s 0.40 1.82 0.01 0.00 +dégarnies dégarni adj f p 0.40 1.82 0.00 0.14 +dégarnir dégarnir ver 0.17 1.01 0.02 0.14 inf; +dégarnis dégarnir ver m p 0.17 1.01 0.04 0.00 ind:pre:1s;par:pas; +dégarnissait dégarnir ver 0.17 1.01 0.00 0.14 ind:imp:3s; +dégarnissant dégarnir ver 0.17 1.01 0.00 0.07 par:pre; +dégauchi dégauchir ver m s 0.00 2.57 0.00 0.41 par:pas; +dégauchie dégauchir ver f s 0.00 2.57 0.00 0.20 par:pas; +dégauchir dégauchir ver 0.00 2.57 0.00 1.69 inf; +dégauchira dégauchir ver 0.00 2.57 0.00 0.07 ind:fut:3s; +dégauchis dégauchir ver m p 0.00 2.57 0.00 0.14 ind:pre:1s;par:pas; +dégauchisse dégauchir ver 0.00 2.57 0.00 0.07 sub:pre:3s; +dégauchisseuse dégauchisseuse nom f s 0.00 0.07 0.00 0.07 +dégazage dégazage nom m s 0.03 0.00 0.03 0.00 +dégazent dégazer ver 0.01 0.14 0.00 0.07 ind:pre:3p; +dégazer dégazer ver 0.01 0.14 0.01 0.07 inf; +dégel dégel nom m s 0.47 3.31 0.47 3.31 +dégela dégeler ver 0.70 1.15 0.01 0.07 ind:pas:3s; +dégelai dégeler ver 0.70 1.15 0.00 0.07 ind:pas:1s; +dégelait dégeler ver 0.70 1.15 0.00 0.14 ind:imp:3s; +dégelant dégeler ver 0.70 1.15 0.01 0.00 par:pre; +dégeler dégeler ver 0.70 1.15 0.38 0.34 inf; +dégelez dégeler ver 0.70 1.15 0.01 0.00 ind:pre:2p; +dégelât dégeler ver 0.70 1.15 0.00 0.07 sub:imp:3s; +dégelé dégeler ver m s 0.70 1.15 0.08 0.14 par:pas; +dégelée dégeler ver f s 0.70 1.15 0.02 0.00 par:pas; +dégelées dégelée nom f p 0.01 1.35 0.00 0.27 +dégelés dégeler ver m p 0.70 1.15 0.04 0.07 par:pas; +dégermait dégermer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +dégingandé dégingandé adj m s 0.04 2.03 0.02 1.55 +dégingandée dégingandé adj f s 0.04 2.03 0.01 0.14 +dégingandées dégingandé adj f p 0.04 2.03 0.00 0.07 +dégingandés dégingandé adj m p 0.04 2.03 0.01 0.27 +dégivrage dégivrage nom m s 0.03 0.00 0.03 0.00 +dégivrer dégivrer ver 0.15 0.07 0.11 0.00 inf; +dégivré dégivrer ver m s 0.15 0.07 0.04 0.07 par:pas; +déglacer déglacer ver 0.06 0.00 0.01 0.00 inf; +déglacera déglacer ver 0.06 0.00 0.01 0.00 ind:fut:3s; +déglacez déglacer ver 0.06 0.00 0.02 0.00 imp:pre:2p; +déglacé déglacer ver m s 0.06 0.00 0.02 0.00 par:pas; +déglingua déglinguer ver 1.08 3.72 0.00 0.07 ind:pas:3s; +déglinguaient déglinguer ver 1.08 3.72 0.00 0.07 ind:imp:3p; +déglinguait déglinguer ver 1.08 3.72 0.00 0.27 ind:imp:3s; +déglinguant déglinguer ver 1.08 3.72 0.00 0.07 par:pre; +déglingue déglinguer ver 1.08 3.72 0.56 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déglinguent déglinguer ver 1.08 3.72 0.01 0.20 ind:pre:3p; +déglinguer déglinguer ver 1.08 3.72 0.26 0.68 inf; +déglinguions déglinguer ver 1.08 3.72 0.00 0.07 ind:imp:1p; +déglingué déglingué adj m s 0.38 2.43 0.27 1.22 +déglinguée déglinguer ver f s 1.08 3.72 0.07 0.41 par:pas; +déglinguées déglinguer ver f p 1.08 3.72 0.03 0.14 par:pas; +déglingués déglingué adj m p 0.38 2.43 0.05 0.41 +dégluti déglutir ver m s 0.17 3.18 0.00 0.34 par:pas; +déglutie déglutir ver f s 0.17 3.18 0.00 0.07 par:pas; +dégluties déglutir ver f p 0.17 3.18 0.00 0.07 par:pas; +déglutir déglutir ver 0.17 3.18 0.02 0.81 inf; +déglutis déglutir ver m p 0.17 3.18 0.00 0.14 ind:pre:1s;par:pas; +déglutissait déglutir ver 0.17 3.18 0.00 0.34 ind:imp:3s; +déglutissant déglutir ver 0.17 3.18 0.14 0.34 par:pre; +déglutit déglutir ver 0.17 3.18 0.01 1.08 ind:pre:3s;ind:pas:3s; +déglutition déglutition nom f s 0.31 1.08 0.31 0.81 +déglutitions déglutition nom f p 0.31 1.08 0.00 0.27 +dégoût dégoût nom m s 6.02 30.14 5.99 27.97 +dégoûta dégoûter ver 18.36 17.57 0.00 0.20 ind:pas:3s; +dégoûtai dégoûter ver 18.36 17.57 0.00 0.07 ind:pas:1s; +dégoûtaient dégoûter ver 18.36 17.57 0.03 0.61 ind:imp:3p; +dégoûtais dégoûter ver 18.36 17.57 0.19 0.27 ind:imp:1s;ind:imp:2s; +dégoûtait dégoûter ver 18.36 17.57 0.30 2.50 ind:imp:3s; +dégoûtant dégoûtant adj m s 15.92 6.76 11.47 3.92 +dégoûtante dégoûtant adj f s 15.92 6.76 2.06 1.82 +dégoûtantes dégoûtant adj f p 15.92 6.76 1.06 0.68 +dégoûtants dégoûtant adj m p 15.92 6.76 1.33 0.34 +dégoûtation dégoûtation nom f s 0.00 0.47 0.00 0.34 +dégoûtations dégoûtation nom f p 0.00 0.47 0.00 0.14 +dégoûte dégoûter ver 18.36 17.57 8.73 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoûtent dégoûter ver 18.36 17.57 0.88 0.74 ind:pre:3p; +dégoûter dégoûter ver 18.36 17.57 0.64 2.91 inf; +dégoûtera dégoûter ver 18.36 17.57 0.03 0.07 ind:fut:3s; +dégoûteraient dégoûter ver 18.36 17.57 0.00 0.07 cnd:pre:3p; +dégoûterais dégoûter ver 18.36 17.57 0.00 0.07 cnd:pre:1s; +dégoûterait dégoûter ver 18.36 17.57 0.34 0.27 cnd:pre:3s; +dégoûtes dégoûter ver 18.36 17.57 3.92 0.34 ind:pre:2s; +dégoûtez dégoûter ver 18.36 17.57 0.96 0.27 ind:pre:2p; +dégoûtât dégoûter ver 18.36 17.57 0.00 0.14 sub:imp:3s; +dégoûts dégoût nom m p 6.02 30.14 0.03 2.16 +dégoûtèrent dégoûter ver 18.36 17.57 0.00 0.20 ind:pas:3p; +dégoûté dégoûter ver m s 18.36 17.57 1.18 2.70 par:pas; +dégoûtée dégoûter ver f s 18.36 17.57 0.60 0.68 par:pas; +dégoûtées dégoûté nom f p 0.19 2.09 0.01 0.00 +dégoûtés dégoûter ver m p 18.36 17.57 0.20 0.54 par:pas; +dégobilla dégobiller ver 0.12 0.88 0.00 0.14 ind:pas:3s; +dégobillage dégobillage nom m s 0.01 0.00 0.01 0.00 +dégobillaient dégobiller ver 0.12 0.88 0.00 0.07 ind:imp:3p; +dégobillait dégobiller ver 0.12 0.88 0.00 0.07 ind:imp:3s; +dégobillant dégobiller ver 0.12 0.88 0.00 0.14 par:pre; +dégobille dégobiller ver 0.12 0.88 0.05 0.07 imp:pre:2s;ind:pre:3s; +dégobiller dégobiller ver 0.12 0.88 0.05 0.41 inf; +dégobillé dégobiller ver m s 0.12 0.88 0.02 0.00 par:pas; +dégoisais dégoiser ver 0.41 1.35 0.00 0.07 ind:imp:2s; +dégoisait dégoiser ver 0.41 1.35 0.00 0.07 ind:imp:3s; +dégoisant dégoiser ver 0.41 1.35 0.00 0.07 par:pre; +dégoise dégoiser ver 0.41 1.35 0.39 0.27 imp:pre:2s;ind:pre:3s; +dégoisent dégoiser ver 0.41 1.35 0.00 0.14 ind:pre:3p; +dégoiser dégoiser ver 0.41 1.35 0.02 0.61 inf; +dégoiserai dégoiser ver 0.41 1.35 0.00 0.07 ind:fut:1s; +dégoises dégoiser ver 0.41 1.35 0.00 0.07 ind:pre:2s; +dégommage dégommage nom m s 0.01 0.14 0.01 0.14 +dégommait dégommer ver 2.49 2.03 0.01 0.14 ind:imp:3s; +dégommant dégommer ver 2.49 2.03 0.01 0.00 par:pre; +dégomme dégommer ver 2.49 2.03 1.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégomment dégommer ver 2.49 2.03 0.00 0.07 ind:pre:3p; +dégommer dégommer ver 2.49 2.03 0.85 1.08 inf; +dégommera dégommer ver 2.49 2.03 0.02 0.00 ind:fut:3s; +dégommerai dégommer ver 2.49 2.03 0.01 0.07 ind:fut:1s; +dégommez dégommer ver 2.49 2.03 0.03 0.00 imp:pre:2p; +dégommons dégommer ver 2.49 2.03 0.01 0.00 imp:pre:1p; +dégommé dégommer ver m s 2.49 2.03 0.34 0.27 par:pas; +dégommée dégommer ver f s 2.49 2.03 0.02 0.00 par:pas; +dégommées dégommer ver f p 2.49 2.03 0.00 0.07 par:pas; +dégommés dégommer ver m p 2.49 2.03 0.16 0.07 par:pas; +dégonfla dégonfler ver 5.64 6.08 0.00 0.14 ind:pas:3s; +dégonflage dégonflage nom m s 0.01 0.07 0.01 0.07 +dégonflaient dégonfler ver 5.64 6.08 0.00 0.14 ind:imp:3p; +dégonflais dégonfler ver 5.64 6.08 0.01 0.00 ind:imp:2s; +dégonflait dégonfler ver 5.64 6.08 0.03 0.47 ind:imp:3s; +dégonflant dégonfler ver 5.64 6.08 0.02 0.00 par:pre; +dégonflard dégonflard nom m s 0.01 0.27 0.01 0.27 +dégonfle dégonfler ver 5.64 6.08 1.69 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégonflement dégonflement nom m s 0.01 0.00 0.01 0.00 +dégonflent dégonfler ver 5.64 6.08 0.19 0.07 ind:pre:3p; +dégonfler dégonfler ver 5.64 6.08 0.76 1.42 inf; +dégonflera dégonfler ver 5.64 6.08 0.09 0.14 ind:fut:3s; +dégonfleraient dégonfler ver 5.64 6.08 0.00 0.14 cnd:pre:3p; +dégonflerais dégonfler ver 5.64 6.08 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +dégonflerait dégonfler ver 5.64 6.08 0.02 0.07 cnd:pre:3s; +dégonfleriez dégonfler ver 5.64 6.08 0.01 0.07 cnd:pre:2p; +dégonfles dégonfler ver 5.64 6.08 1.17 0.41 ind:pre:2s; +dégonflez dégonfler ver 5.64 6.08 0.11 0.07 imp:pre:2p;ind:pre:2p; +dégonflé dégonflé nom m s 3.63 1.01 2.99 0.61 +dégonflée dégonfler ver f s 5.64 6.08 0.26 0.14 par:pas; +dégonflées dégonfler ver f p 5.64 6.08 0.01 0.00 par:pas; +dégonflés dégonflé nom m p 3.63 1.01 0.55 0.27 +dugong dugong nom m s 0.01 0.27 0.01 0.20 +dugongs dugong nom m p 0.01 0.27 0.00 0.07 +dégorge dégorger ver 0.22 2.36 0.01 0.34 ind:pre:1s;ind:pre:3s; +dégorgeaient dégorger ver 0.22 2.36 0.00 0.20 ind:imp:3p; +dégorgeais dégorger ver 0.22 2.36 0.01 0.07 ind:imp:1s;ind:imp:2s; +dégorgeait dégorger ver 0.22 2.36 0.00 0.61 ind:imp:3s; +dégorgeant dégorger ver 0.22 2.36 0.00 0.20 par:pre; +dégorgement dégorgement nom m s 0.00 0.14 0.00 0.14 +dégorgent dégorger ver 0.22 2.36 0.00 0.07 ind:pre:3p; +dégorger dégorger ver 0.22 2.36 0.17 0.34 inf; +dégorgeront dégorger ver 0.22 2.36 0.00 0.07 ind:fut:3p; +dégorgé dégorger ver m s 0.22 2.36 0.02 0.14 par:pas; +dégorgée dégorger ver f s 0.22 2.36 0.00 0.07 par:pas; +dégorgées dégorger ver f p 0.22 2.36 0.00 0.14 par:pas; +dégorgés dégorger ver m p 0.22 2.36 0.00 0.14 par:pas; +dégât dégât nom m s 14.22 9.73 0.95 0.74 +dégota dégoter ver 3.47 1.82 0.00 0.14 ind:pas:3s; +dégotait dégoter ver 3.47 1.82 0.01 0.14 ind:imp:3s; +dégote dégoter ver 3.47 1.82 0.27 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoter dégoter ver 3.47 1.82 1.02 0.61 inf; +dégoterais dégoter ver 3.47 1.82 0.01 0.07 cnd:pre:1s; +dégoteras dégoter ver 3.47 1.82 0.03 0.00 ind:fut:2s; +dégotez dégoter ver 3.47 1.82 0.03 0.07 imp:pre:2p;ind:pre:2p; +dégâts dégât nom m p 14.22 9.73 13.27 8.99 +dégotte dégotter ver 1.02 2.16 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégotter dégotter ver 1.02 2.16 0.23 0.95 inf; +dégottera dégotter ver 1.02 2.16 0.00 0.07 ind:fut:3s; +dégotterai dégotter ver 1.02 2.16 0.01 0.14 ind:fut:1s; +dégotterait dégotter ver 1.02 2.16 0.00 0.20 cnd:pre:3s; +dégottes dégotter ver 1.02 2.16 0.03 0.00 ind:pre:2s; +dégotté dégotter ver m s 1.02 2.16 0.53 0.68 par:pas; +dégoté dégoter ver m s 3.47 1.82 1.95 0.41 par:pas; +dégotée dégoter ver f s 3.47 1.82 0.04 0.07 par:pas; +dégotées dégoter ver f p 3.47 1.82 0.10 0.07 par:pas; +dégotés dégoter ver m p 3.47 1.82 0.00 0.07 par:pas; +dégoulina dégouliner ver 1.34 8.38 0.00 0.07 ind:pas:3s; +dégoulinade dégoulinade nom f s 0.00 0.41 0.00 0.27 +dégoulinades dégoulinade nom f p 0.00 0.41 0.00 0.14 +dégoulinaient dégouliner ver 1.34 8.38 0.10 0.54 ind:imp:3p; +dégoulinais dégouliner ver 1.34 8.38 0.00 0.07 ind:imp:1s; +dégoulinait dégouliner ver 1.34 8.38 0.04 2.64 ind:imp:3s; +dégoulinant dégouliner ver 1.34 8.38 0.09 1.08 par:pre; +dégoulinante dégoulinant adj f s 0.38 3.99 0.16 1.22 +dégoulinantes dégoulinant adj f p 0.38 3.99 0.12 0.68 +dégoulinants dégoulinant adj m p 0.38 3.99 0.04 0.74 +dégouline dégouliner ver 1.34 8.38 0.88 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoulinement dégoulinement nom m s 0.01 0.07 0.01 0.00 +dégoulinements dégoulinement nom m p 0.01 0.07 0.00 0.07 +dégoulinent dégouliner ver 1.34 8.38 0.03 0.34 ind:pre:3p; +dégouliner dégouliner ver 1.34 8.38 0.08 0.88 inf; +dégoulines dégouliner ver 1.34 8.38 0.07 0.00 ind:pre:2s; +dégoulinez dégouliner ver 1.34 8.38 0.02 0.00 ind:pre:2p; +dégoulinèrent dégouliner ver 1.34 8.38 0.00 0.07 ind:pas:3p; +dégouliné dégouliner ver m s 1.34 8.38 0.02 0.27 par:pas; +dégoulinures dégoulinure nom f p 0.00 0.07 0.00 0.07 +dégoupille dégoupiller ver 0.28 0.74 0.20 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoupiller dégoupiller ver 0.28 0.74 0.01 0.14 inf; +dégoupillâmes dégoupiller ver 0.28 0.74 0.00 0.07 ind:pas:1p; +dégoupillé dégoupiller ver m s 0.28 0.74 0.01 0.00 par:pas; +dégoupillée dégoupiller ver f s 0.28 0.74 0.05 0.34 par:pas; +dégoupillées dégoupiller ver f p 0.28 0.74 0.01 0.07 par:pas; +dégourdi dégourdi adj m s 0.28 0.88 0.24 0.41 +dégourdie dégourdi adj f s 0.28 0.88 0.02 0.14 +dégourdies dégourdi adj f p 0.28 0.88 0.01 0.14 +dégourdir dégourdir ver 1.65 3.31 1.40 2.43 inf; +dégourdira dégourdir ver 1.65 3.31 0.01 0.00 ind:fut:3s; +dégourdiraient dégourdir ver 1.65 3.31 0.00 0.07 cnd:pre:3p; +dégourdis dégourdir ver m p 1.65 3.31 0.07 0.14 ind:pre:1s;par:pas; +dégourdissais dégourdir ver 1.65 3.31 0.00 0.07 ind:imp:1s; +dégourdissait dégourdir ver 1.65 3.31 0.00 0.07 ind:imp:3s; +dégourdissant dégourdir ver 1.65 3.31 0.00 0.07 par:pre; +dégourdisse dégourdir ver 1.65 3.31 0.00 0.14 sub:pre:1s;sub:pre:3s; +dégourdissions dégourdir ver 1.65 3.31 0.00 0.07 ind:imp:1p; +dégourdit dégourdir ver 1.65 3.31 0.00 0.07 ind:pas:3s; +dégouttaient dégoutter ver 0.12 1.28 0.00 0.14 ind:imp:3p; +dégouttait dégoutter ver 0.12 1.28 0.10 0.54 ind:imp:3s; +dégouttant dégouttant adj m s 0.07 0.34 0.03 0.14 +dégouttante dégouttant adj f s 0.07 0.34 0.01 0.07 +dégouttantes dégouttant adj f p 0.07 0.34 0.03 0.00 +dégouttants dégouttant adj m p 0.07 0.34 0.00 0.14 +dégoutte dégoutter ver 0.12 1.28 0.01 0.07 ind:pre:1s;ind:pre:3s; +dégoutter dégoutter ver 0.12 1.28 0.00 0.14 inf; +dégrada dégrader ver 3.69 4.46 0.21 0.14 ind:pas:3s; +dégradable dégradable adj s 0.01 0.00 0.01 0.00 +dégradaient dégrader ver 3.69 4.46 0.11 0.20 ind:imp:3p; +dégradait dégrader ver 3.69 4.46 0.02 0.68 ind:imp:3s; +dégradant dégradant adj m s 1.67 1.08 1.13 0.20 +dégradante dégradant adj f s 1.67 1.08 0.15 0.47 +dégradantes dégradant adj f p 1.67 1.08 0.20 0.14 +dégradants dégradant adj m p 1.67 1.08 0.20 0.27 +dégradation dégradation nom f s 0.82 2.91 0.73 2.30 +dégradations dégradation nom f p 0.82 2.91 0.10 0.61 +dégrade dégrader ver 3.69 4.46 0.82 0.88 ind:pre:1s;ind:pre:3s; +dégradent dégrader ver 3.69 4.46 0.12 0.41 ind:pre:3p; +dégrader dégrader ver 3.69 4.46 1.00 0.54 inf; +dégrades dégrader ver 3.69 4.46 0.14 0.07 ind:pre:2s; +dégradez dégrader ver 3.69 4.46 0.03 0.00 imp:pre:2p;ind:pre:2p; +dégradé dégrader ver m s 3.69 4.46 0.93 0.47 par:pas; +dégradée dégradé adj f s 0.22 1.15 0.13 0.27 +dégradées dégrader ver f p 3.69 4.46 0.07 0.14 par:pas; +dégradés dégrader ver m p 3.69 4.46 0.04 0.14 par:pas; +dégrafa dégrafer ver 0.59 4.93 0.00 0.68 ind:pas:3s; +dégrafaient dégrafer ver 0.59 4.93 0.00 0.20 ind:imp:3p; +dégrafait dégrafer ver 0.59 4.93 0.00 0.61 ind:imp:3s; +dégrafant dégrafer ver 0.59 4.93 0.01 0.54 par:pre; +dégrafe dégrafer ver 0.59 4.93 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégrafer dégrafer ver 0.59 4.93 0.32 0.95 inf; +dégrafera dégrafer ver 0.59 4.93 0.00 0.07 ind:fut:3s; +dégraferait dégrafer ver 0.59 4.93 0.00 0.07 cnd:pre:3s; +dégrafeur dégrafeur nom m s 0.01 0.00 0.01 0.00 +dégrafez dégrafer ver 0.59 4.93 0.17 0.00 imp:pre:2p; +dégrafât dégrafer ver 0.59 4.93 0.00 0.07 sub:imp:3s; +dégrafé dégrafer ver m s 0.59 4.93 0.02 0.81 par:pas; +dégrafée dégrafer ver f s 0.59 4.93 0.01 0.27 par:pas; +dégrafées dégrafer ver f p 0.59 4.93 0.00 0.14 par:pas; +dégrafés dégrafer ver m p 0.59 4.93 0.00 0.07 par:pas; +dégraissage dégraissage nom m s 0.07 0.00 0.07 0.00 +dégraissant dégraisser ver 0.30 0.41 0.01 0.00 par:pre; +dégraissante dégraissant adj f s 0.01 0.00 0.01 0.00 +dégraisse dégraisser ver 0.30 0.41 0.04 0.14 imp:pre:2s;ind:pre:3s; +dégraissent dégraisser ver 0.30 0.41 0.03 0.00 ind:pre:3p; +dégraisser dégraisser ver 0.30 0.41 0.19 0.07 inf; +dégraissez dégraisser ver 0.30 0.41 0.00 0.07 imp:pre:2p; +dégraissé dégraisser ver m s 0.30 0.41 0.03 0.07 par:pas; +dégraissés dégraisser ver m p 0.30 0.41 0.00 0.07 par:pas; +dégressifs dégressif adj m p 0.01 0.00 0.01 0.00 +dégriffe dégriffer ver 0.03 0.14 0.00 0.07 ind:pre:3s; +dégriffer dégriffer ver 0.03 0.14 0.03 0.00 inf; +dégriffeur dégriffeur nom m s 0.00 0.27 0.00 0.27 +dégriffé dégriffé adj m s 0.02 0.07 0.02 0.00 +dégriffés dégriffé adj m p 0.02 0.07 0.00 0.07 +dégringola dégringoler ver 1.48 12.43 0.02 1.01 ind:pas:3s; +dégringolade dégringolade nom f s 0.13 1.89 0.13 1.82 +dégringolades dégringolade nom f p 0.13 1.89 0.00 0.07 +dégringolai dégringoler ver 1.48 12.43 0.00 0.20 ind:pas:1s; +dégringolaient dégringoler ver 1.48 12.43 0.00 0.54 ind:imp:3p; +dégringolait dégringoler ver 1.48 12.43 0.02 1.62 ind:imp:3s; +dégringolant dégringoler ver 1.48 12.43 0.14 0.74 par:pre; +dégringole dégringoler ver 1.48 12.43 0.58 2.16 ind:pre:1s;ind:pre:3s; +dégringolent dégringoler ver 1.48 12.43 0.05 0.95 ind:pre:3p; +dégringoler dégringoler ver 1.48 12.43 0.38 2.97 inf; +dégringoleraient dégringoler ver 1.48 12.43 0.00 0.07 cnd:pre:3p; +dégringolerais dégringoler ver 1.48 12.43 0.00 0.07 cnd:pre:1s; +dégringoleront dégringoler ver 1.48 12.43 0.00 0.07 ind:fut:3p; +dégringolions dégringoler ver 1.48 12.43 0.00 0.07 ind:imp:1p; +dégringolâmes dégringoler ver 1.48 12.43 0.01 0.07 ind:pas:1p; +dégringolèrent dégringoler ver 1.48 12.43 0.02 0.20 ind:pas:3p; +dégringolé dégringoler ver m s 1.48 12.43 0.26 1.35 par:pas; +dégringolée dégringoler ver f s 1.48 12.43 0.00 0.07 par:pas; +dégringolés dégringoler ver m p 1.48 12.43 0.00 0.27 par:pas; +dégripper dégripper ver 0.00 0.07 0.00 0.07 inf; +dégrisa dégriser ver 0.18 1.55 0.00 0.20 ind:pas:3s; +dégrisait dégriser ver 0.18 1.55 0.00 0.20 ind:imp:3s; +dégrise dégriser ver 0.18 1.55 0.03 0.00 imp:pre:2s;ind:pre:1s; +dégrisement dégrisement nom m s 0.16 0.20 0.16 0.20 +dégriser dégriser ver 0.18 1.55 0.06 0.07 inf; +dégrisât dégriser ver 0.18 1.55 0.00 0.07 sub:imp:3s; +dégrisé dégriser ver m s 0.18 1.55 0.08 0.74 par:pas; +dégrisée dégriser ver f s 0.18 1.55 0.01 0.14 par:pas; +dégrisés dégriser ver m p 0.18 1.55 0.00 0.14 par:pas; +dégrossi dégrossi adj m s 0.30 0.95 0.16 0.20 +dégrossie dégrossi adj f s 0.30 0.95 0.10 0.27 +dégrossies dégrossi adj f p 0.30 0.95 0.00 0.34 +dégrossir dégrossir ver 0.01 0.41 0.01 0.34 inf; +dégrossis dégrossi adj m p 0.30 0.95 0.04 0.14 +dégrossissage dégrossissage nom m s 0.01 0.07 0.01 0.07 +dégrossissant dégrossir ver 0.01 0.41 0.00 0.07 par:pre; +dégrouille dégrouiller ver 0.02 0.47 0.02 0.41 imp:pre:2s;ind:pre:3s; +dégrouiller dégrouiller ver 0.02 0.47 0.00 0.07 inf; +dégrène dégrèner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +dégrèvement dégrèvement nom m s 0.04 0.07 0.04 0.00 +dégrèvements dégrèvement nom m p 0.04 0.07 0.00 0.07 +dégrée dégréer ver 0.01 0.00 0.01 0.00 ind:pre:3s; +dégréner dégréner ver 0.00 0.07 0.00 0.07 inf; +dégèle dégeler ver 0.70 1.15 0.09 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégèlent dégeler ver 0.70 1.15 0.04 0.07 ind:pre:3p; +dégèlera dégeler ver 0.70 1.15 0.02 0.00 ind:fut:3s; +dégèlerait dégeler ver 0.70 1.15 0.01 0.00 cnd:pre:3s; +déguenillé déguenillé adj m s 0.16 0.27 0.01 0.07 +déguenillée déguenillé adj f s 0.16 0.27 0.13 0.00 +déguenillées déguenillé adj f p 0.16 0.27 0.01 0.00 +déguenillés déguenillé adj m p 0.16 0.27 0.01 0.20 +déguerpi déguerpir ver m s 3.75 2.43 0.46 0.41 par:pas; +déguerpir déguerpir ver 3.75 2.43 1.62 1.42 inf; +déguerpirent déguerpir ver 3.75 2.43 0.00 0.07 ind:pas:3p; +déguerpis déguerpir ver m p 3.75 2.43 0.65 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +déguerpisse déguerpir ver 3.75 2.43 0.03 0.14 sub:pre:1s;sub:pre:3s; +déguerpissent déguerpir ver 3.75 2.43 0.34 0.00 ind:pre:3p; +déguerpissez déguerpir ver 3.75 2.43 0.57 0.14 imp:pre:2p;ind:pre:2p; +déguerpissiez déguerpir ver 3.75 2.43 0.01 0.00 ind:imp:2p; +déguerpissons déguerpir ver 3.75 2.43 0.03 0.00 imp:pre:1p; +déguerpit déguerpir ver 3.75 2.43 0.04 0.14 ind:pre:3s;ind:pas:3s; +dégueu dégueu adj s 3.41 0.88 3.10 0.81 +dégueula dégueuler ver 2.36 3.65 0.00 0.07 ind:pas:3s; +dégueulais dégueuler ver 2.36 3.65 0.02 0.00 ind:imp:1s;ind:imp:2s; +dégueulait dégueuler ver 2.36 3.65 0.03 0.20 ind:imp:3s; +dégueulando dégueulando nom m s 0.00 0.20 0.00 0.20 +dégueulant dégueuler ver 2.36 3.65 0.04 0.00 par:pre; +dégueulasse dégueulasse adj s 19.98 17.30 18.80 14.53 +dégueulassement dégueulassement adv 0.01 0.14 0.01 0.14 +dégueulasser dégueulasser ver 0.34 1.01 0.04 0.34 inf; +dégueulasserie dégueulasserie nom f s 0.00 0.61 0.00 0.47 +dégueulasseries dégueulasserie nom f p 0.00 0.61 0.00 0.14 +dégueulasses dégueulasse adj p 19.98 17.30 1.18 2.77 +dégueulassé dégueulasser ver m s 0.34 1.01 0.11 0.07 par:pas; +dégueulassés dégueulasser ver m p 0.34 1.01 0.00 0.07 par:pas; +dégueule dégueuler ver 2.36 3.65 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégueulent dégueuler ver 2.36 3.65 0.04 0.20 ind:pre:3p; +dégueuler dégueuler ver 2.36 3.65 1.57 1.69 inf; +dégueulera dégueuler ver 2.36 3.65 0.00 0.07 ind:fut:3s; +dégueules dégueuler ver 2.36 3.65 0.01 0.00 ind:pre:2s; +dégueulez dégueuler ver 2.36 3.65 0.01 0.07 ind:pre:2p; +dégueulis dégueulis nom m 0.31 1.15 0.31 1.15 +dégueulé dégueuler ver m s 2.36 3.65 0.24 0.61 par:pas; +dégueulées dégueuler ver f p 2.36 3.65 0.00 0.07 par:pas; +dégueus dégueu adj m p 3.41 0.88 0.31 0.07 +déguisa déguiser ver 14.89 16.96 0.00 0.34 ind:pas:3s; +déguisaient déguiser ver 14.89 16.96 0.02 0.41 ind:imp:3p; +déguisais déguiser ver 14.89 16.96 0.17 0.34 ind:imp:1s;ind:imp:2s; +déguisait déguiser ver 14.89 16.96 0.45 1.42 ind:imp:3s; +déguisant déguiser ver 14.89 16.96 0.17 0.20 par:pre; +déguise déguiser ver 14.89 16.96 0.97 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déguisement déguisement nom m s 4.98 5.07 3.93 3.65 +déguisements déguisement nom m p 4.98 5.07 1.05 1.42 +déguisent déguiser ver 14.89 16.96 0.34 0.20 ind:pre:3p; +déguiser déguiser ver 14.89 16.96 3.34 2.50 inf; +déguisera déguiser ver 14.89 16.96 0.05 0.14 ind:fut:3s; +déguiserai déguiser ver 14.89 16.96 0.12 0.00 ind:fut:1s; +déguiserais déguiser ver 14.89 16.96 0.02 0.07 cnd:pre:1s; +déguiserait déguiser ver 14.89 16.96 0.03 0.00 cnd:pre:3s; +déguises déguiser ver 14.89 16.96 0.35 0.14 ind:pre:2s; +déguisez déguiser ver 14.89 16.96 0.33 0.14 imp:pre:2p;ind:pre:2p; +déguisiez déguiser ver 14.89 16.96 0.01 0.07 ind:imp:2p; +déguisions déguiser ver 14.89 16.96 0.01 0.07 ind:imp:1p; +déguisé déguiser ver m s 14.89 16.96 5.48 4.66 par:pas; +déguisée déguiser ver f s 14.89 16.96 1.55 2.50 par:pas; +déguisées déguiser ver f p 14.89 16.96 0.12 0.81 par:pas; +déguisés déguiser ver m p 14.89 16.96 1.34 1.49 par:pas; +dégénère dégénérer ver 2.95 2.30 1.26 0.47 imp:pre:2s;ind:pre:3s; +dégénèrent dégénérer ver 2.95 2.30 0.03 0.14 ind:pre:3p; +dégénéra dégénérer ver 2.95 2.30 0.02 0.20 ind:pas:3s; +dégénéraient dégénérer ver 2.95 2.30 0.00 0.14 ind:imp:3p; +dégénérait dégénérer ver 2.95 2.30 0.03 0.14 ind:imp:3s; +dégénérant dégénérer ver 2.95 2.30 0.01 0.07 par:pre; +dégénératif dégénératif adj m s 0.28 0.00 0.05 0.00 +dégénération dégénération nom f s 0.10 0.00 0.10 0.00 +dégénérative dégénératif adj f s 0.28 0.00 0.23 0.00 +dégénérer dégénérer ver 2.95 2.30 0.86 0.61 inf; +dégénérescence dégénérescence nom f s 1.22 1.15 1.22 1.08 +dégénérescences dégénérescence nom f p 1.22 1.15 0.00 0.07 +dégénérât dégénérer ver 2.95 2.30 0.00 0.14 sub:imp:3s; +dégénéré dégénéré nom m s 2.16 0.74 1.36 0.41 +dégénérée dégénéré adj f s 1.77 1.35 0.14 0.27 +dégénérées dégénéré adj f p 1.77 1.35 0.03 0.14 +dégénérés dégénéré nom m p 2.16 0.74 0.77 0.27 +dégurgitant dégurgiter ver 0.00 0.07 0.00 0.07 par:pre; +dégusta déguster ver 2.96 11.96 0.00 0.27 ind:pas:3s; +dégustai déguster ver 2.96 11.96 0.00 0.14 ind:pas:1s; +dégustaient déguster ver 2.96 11.96 0.02 0.41 ind:imp:3p; +dégustais déguster ver 2.96 11.96 0.01 0.54 ind:imp:1s;ind:imp:2s; +dégustait déguster ver 2.96 11.96 0.01 0.95 ind:imp:3s; +dégustant déguster ver 2.96 11.96 0.21 0.88 par:pre; +dégustateur dégustateur nom m s 0.12 0.20 0.02 0.14 +dégustateurs dégustateur nom m p 0.12 0.20 0.00 0.07 +dégustation dégustation nom f s 1.01 1.82 0.84 1.76 +dégustations dégustation nom f p 1.01 1.82 0.17 0.07 +dégustatrice dégustateur nom f s 0.12 0.20 0.10 0.00 +déguste déguster ver 2.96 11.96 0.53 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégustent déguster ver 2.96 11.96 0.03 0.27 ind:pre:3p; +déguster déguster ver 2.96 11.96 1.84 3.92 inf; +dégustera déguster ver 2.96 11.96 0.02 0.00 ind:fut:3s; +dégusteras déguster ver 2.96 11.96 0.00 0.07 ind:fut:2s; +dégusterons déguster ver 2.96 11.96 0.01 0.00 ind:fut:1p; +dégustez déguster ver 2.96 11.96 0.04 0.14 imp:pre:2p;ind:pre:2p; +dégustâmes déguster ver 2.96 11.96 0.00 0.07 ind:pas:1p; +dégustons déguster ver 2.96 11.96 0.02 0.14 imp:pre:1p;ind:pre:1p; +dégustèrent déguster ver 2.96 11.96 0.00 0.14 ind:pas:3p; +dégusté déguster ver m s 2.96 11.96 0.23 1.69 par:pas; +dégustée déguster ver f s 2.96 11.96 0.01 0.41 par:pas; +dégustées déguster ver f p 2.96 11.96 0.00 0.14 par:pas; +dégustés déguster ver m p 2.96 11.96 0.00 0.07 par:pas; +déhale déhaler ver 0.00 0.27 0.00 0.07 ind:pre:3s; +déhaler déhaler ver 0.00 0.27 0.00 0.07 inf; +déhalées déhaler ver f p 0.00 0.27 0.00 0.14 par:pas; +déhancha déhancher ver 0.67 1.76 0.00 0.07 ind:pas:3s; +déhanchaient déhancher ver 0.67 1.76 0.01 0.27 ind:imp:3p; +déhanchait déhancher ver 0.67 1.76 0.00 0.41 ind:imp:3s; +déhanchant déhancher ver 0.67 1.76 0.03 0.14 par:pre; +déhanche déhancher ver 0.67 1.76 0.47 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déhanchement déhanchement nom m s 0.05 1.76 0.04 1.08 +déhanchements déhanchement nom m p 0.05 1.76 0.01 0.68 +déhanchent déhancher ver 0.67 1.76 0.05 0.07 ind:pre:3p; +déhancher déhancher ver 0.67 1.76 0.09 0.07 inf; +déhanchez déhancher ver 0.67 1.76 0.02 0.00 imp:pre:2p; +déhanché déhanché adj m s 0.19 0.74 0.19 0.20 +déhanchée déhanché adj f s 0.19 0.74 0.00 0.41 +déhanchées déhancher ver f p 0.67 1.76 0.00 0.07 par:pas; +déhanchés déhanché adj m p 0.19 0.74 0.00 0.07 +déharnacha déharnacher ver 0.00 0.14 0.00 0.07 ind:pas:3s; +déharnachées déharnacher ver f p 0.00 0.14 0.00 0.07 par:pas; +déhiscence déhiscence nom f s 0.02 0.14 0.02 0.14 +déhotte déhotter ver 0.00 0.68 0.00 0.20 ind:pre:1s;ind:pre:3s; +déhotter déhotter ver 0.00 0.68 0.00 0.20 inf; +déhotté déhotter ver m s 0.00 0.68 0.00 0.20 par:pas; +déhottée déhotter ver f s 0.00 0.68 0.00 0.07 par:pas; +déicide déicide adj m s 0.00 0.14 0.00 0.07 +déicides déicide adj m p 0.00 0.14 0.00 0.07 +déifia déifier ver 0.07 0.34 0.00 0.07 ind:pas:3s; +déification déification nom f s 0.00 0.07 0.00 0.07 +déifier déifier ver 0.07 0.34 0.00 0.14 inf; +déifié déifier ver m s 0.07 0.34 0.04 0.14 par:pas; +déifiés déifier ver m p 0.07 0.34 0.02 0.00 par:pas; +déisme déisme nom m s 0.10 0.00 0.10 0.00 +duit duit nom m s 0.00 0.07 0.00 0.07 +déité déité nom f s 0.12 0.20 0.02 0.00 +déités déité nom f p 0.12 0.20 0.10 0.20 +déjanta déjanter ver 0.86 0.54 0.00 0.07 ind:pas:3s; +déjantait déjanter ver 0.86 0.54 0.01 0.07 ind:imp:3s; +déjante déjanter ver 0.86 0.54 0.09 0.14 ind:pre:1s;ind:pre:3s; +déjantent déjanter ver 0.86 0.54 0.01 0.00 ind:pre:3p; +déjanter déjanter ver 0.86 0.54 0.09 0.14 inf; +déjanterais déjanter ver 0.86 0.54 0.01 0.00 cnd:pre:1s; +déjantes déjanter ver 0.86 0.54 0.20 0.07 ind:pre:2s; +déjanté déjanté adj s 0.58 0.20 0.43 0.20 +déjantée déjanter ver f s 0.86 0.54 0.21 0.07 par:pas; +déjantés déjanté adj m p 0.58 0.20 0.15 0.00 +déjaugeant déjauger ver 0.00 0.07 0.00 0.07 par:pre; +déjection déjection nom f s 0.16 2.36 0.00 0.27 +déjections déjection nom f p 0.16 2.36 0.16 2.09 +déjetait déjeter ver 0.00 0.41 0.00 0.14 ind:imp:3s; +déjeté déjeté adj m s 0.00 0.47 0.00 0.41 +déjetée déjeter ver f s 0.00 0.41 0.00 0.20 par:pas; +déjetés déjeté adj m p 0.00 0.47 0.00 0.07 +déjeuna déjeuner ver 35.43 36.01 0.01 0.54 ind:pas:3s; +déjeunai déjeuner ver 35.43 36.01 0.01 0.47 ind:pas:1s; +déjeunaient déjeuner ver 35.43 36.01 0.03 0.88 ind:imp:3p; +déjeunais déjeuner ver 35.43 36.01 0.39 0.74 ind:imp:1s;ind:imp:2s; +déjeunait déjeuner ver 35.43 36.01 0.65 1.89 ind:imp:3s; +déjeunant déjeuner ver 35.43 36.01 0.31 0.68 par:pre; +déjeune déjeuner ver 35.43 36.01 5.34 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déjeunent déjeuner ver 35.43 36.01 0.20 0.20 ind:pre:3p; +déjeuner déjeuner nom m s 51.34 59.66 50.32 56.01 +déjeunera déjeuner ver 35.43 36.01 0.46 0.34 ind:fut:3s; +déjeunerai déjeuner ver 35.43 36.01 0.20 0.27 ind:fut:1s; +déjeuneraient déjeuner ver 35.43 36.01 0.00 0.14 cnd:pre:3p; +déjeunerait déjeuner ver 35.43 36.01 0.02 0.20 cnd:pre:3s; +déjeuneras déjeuner ver 35.43 36.01 0.02 0.14 ind:fut:2s; +déjeunerez déjeuner ver 35.43 36.01 0.09 0.07 ind:fut:2p; +déjeunerions déjeuner ver 35.43 36.01 0.00 0.14 cnd:pre:1p; +déjeunerons déjeuner ver 35.43 36.01 0.06 0.20 ind:fut:1p; +déjeuners déjeuner nom m p 51.34 59.66 1.02 3.65 +déjeunes déjeuner ver 35.43 36.01 1.23 0.20 ind:pre:2s;sub:pre:2s; +déjeunez déjeuner ver 35.43 36.01 0.63 0.41 imp:pre:2p;ind:pre:2p; +déjeuniez déjeuner ver 35.43 36.01 0.06 0.07 ind:imp:2p; +déjeunions déjeuner ver 35.43 36.01 0.06 1.62 ind:imp:1p; +déjeunâmes déjeuner ver 35.43 36.01 0.00 0.27 ind:pas:1p; +déjeunons déjeuner ver 35.43 36.01 0.93 0.81 imp:pre:1p;ind:pre:1p; +déjeunât déjeuner ver 35.43 36.01 0.00 0.07 sub:imp:3s; +déjeunèrent déjeuner ver 35.43 36.01 0.00 0.95 ind:pas:3p; +déjeuné déjeuner ver m s 35.43 36.01 4.75 4.73 par:pas; +déjà_vu déjà_vu nom m 0.01 0.34 0.01 0.34 +déjà déjà ono 10.84 3.31 10.84 3.31 +déjoua déjouer ver 3.58 4.39 0.01 0.07 ind:pas:3s; +déjouait déjouer ver 3.58 4.39 0.00 0.07 ind:imp:3s; +déjouant déjouer ver 3.58 4.39 0.16 0.20 par:pre; +déjoue déjouer ver 3.58 4.39 0.40 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déjouent déjouer ver 3.58 4.39 0.01 0.07 ind:pre:3p; +déjouer déjouer ver 3.58 4.39 1.80 2.36 inf; +déjouerai déjouer ver 3.58 4.39 0.02 0.00 ind:fut:1s; +déjouerez déjouer ver 3.58 4.39 0.01 0.00 ind:fut:2p; +déjouerions déjouer ver 3.58 4.39 0.00 0.07 cnd:pre:1p; +déjouez déjouer ver 3.58 4.39 0.01 0.07 imp:pre:2p;ind:pre:2p; +déjouons déjouer ver 3.58 4.39 0.10 0.00 imp:pre:1p; +déjoué déjouer ver m s 3.58 4.39 0.99 0.61 par:pas; +déjouée déjouer ver f s 3.58 4.39 0.03 0.20 par:pas; +déjouées déjouer ver f p 3.58 4.39 0.00 0.20 par:pas; +déjoués déjouer ver m p 3.58 4.39 0.04 0.00 par:pas; +déjuchaient déjucher ver 0.00 0.07 0.00 0.07 ind:imp:3p; +déjuger déjuger ver 0.02 0.07 0.02 0.00 inf; +déjugé déjuger ver m s 0.02 0.07 0.00 0.07 par:pas; +dékoulakisation dékoulakisation nom f s 0.00 0.07 0.00 0.07 +délabre délabrer ver 0.37 1.49 0.02 0.07 ind:pre:1s;ind:pre:3s; +délabrement délabrement nom m s 0.05 1.62 0.05 1.62 +délabrer délabrer ver 0.37 1.49 0.03 0.07 inf; +délabré délabrer ver m s 0.37 1.49 0.24 0.68 par:pas; +délabrée délabré adj f s 0.50 4.59 0.22 1.55 +délabrées délabré ver f p 0.14 0.00 0.14 0.00 par:pas; +délabrés délabré adj m p 0.50 4.59 0.05 0.41 +délabyrinthez délabyrinther ver 0.01 0.00 0.01 0.00 imp:pre:2p; +délace délacer ver 0.04 1.22 0.01 0.20 imp:pre:2s;ind:pre:3s; +délacer délacer ver 0.04 1.22 0.00 0.14 inf; +délacèrent délacer ver 0.04 1.22 0.00 0.07 ind:pas:3p; +délacé délacer ver m s 0.04 1.22 0.02 0.20 par:pas; +délacées délacer ver f p 0.04 1.22 0.01 0.07 par:pas; +délai délai nom m s 11.04 18.85 8.94 14.59 +délaie délayer ver 0.06 2.84 0.03 0.07 ind:pre:3s; +délais délai nom m p 11.04 18.85 2.10 4.26 +délaissa délaisser ver 2.30 7.77 0.10 0.68 ind:pas:3s; +délaissaient délaisser ver 2.30 7.77 0.02 0.27 ind:imp:3p; +délaissais délaisser ver 2.30 7.77 0.11 0.14 ind:imp:1s;ind:imp:2s; +délaissait délaisser ver 2.30 7.77 0.17 0.41 ind:imp:3s; +délaissant délaisser ver 2.30 7.77 0.25 1.76 par:pre; +délaisse délaisser ver 2.30 7.77 0.61 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délaissement délaissement nom m s 0.00 0.68 0.00 0.61 +délaissements délaissement nom m p 0.00 0.68 0.00 0.07 +délaissent délaisser ver 2.30 7.77 0.01 0.14 ind:pre:3p; +délaisser délaisser ver 2.30 7.77 0.28 1.01 inf; +délaisserait délaisser ver 2.30 7.77 0.01 0.07 cnd:pre:3s; +délaisses délaisser ver 2.30 7.77 0.03 0.07 ind:pre:2s; +délaissions délaisser ver 2.30 7.77 0.00 0.20 ind:imp:1p; +délaissèrent délaisser ver 2.30 7.77 0.00 0.14 ind:pas:3p; +délaissé délaisser ver m s 2.30 7.77 0.50 1.28 par:pas; +délaissée délaissé adj f s 0.56 2.64 0.19 1.42 +délaissées délaissé adj f p 0.56 2.64 0.15 0.20 +délaissés délaissé adj m p 0.56 2.64 0.14 0.41 +délaita délaiter ver 0.00 0.27 0.00 0.07 ind:pas:3s; +délaite délaiter ver 0.00 0.27 0.00 0.20 ind:pre:3s; +délardant délarder ver 0.00 0.07 0.00 0.07 par:pre; +délassa délasser ver 0.20 1.42 0.00 0.07 ind:pas:3s; +délassait délasser ver 0.20 1.42 0.01 0.14 ind:imp:3s; +délassant délassant adj m s 0.02 0.20 0.02 0.07 +délassante délassant adj f s 0.02 0.20 0.00 0.14 +délasse délasser ver 0.20 1.42 0.14 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délassement délassement nom m s 0.16 0.47 0.16 0.47 +délasser délasser ver 0.20 1.42 0.04 0.54 inf; +délassera délasser ver 0.20 1.42 0.01 0.07 ind:fut:3s; +délasseront délasser ver 0.20 1.42 0.00 0.14 ind:fut:3p; +délassés délasser ver m p 0.20 1.42 0.00 0.07 par:pas; +délateur délateur nom m s 0.36 0.88 0.20 0.34 +délateurs délateur nom m p 0.36 0.88 0.17 0.47 +délaça délacer ver 0.04 1.22 0.00 0.14 ind:pas:3s; +délaçais délacer ver 0.04 1.22 0.00 0.07 ind:imp:1s; +délaçait délacer ver 0.04 1.22 0.00 0.20 ind:imp:3s; +délaçant délacer ver 0.04 1.22 0.00 0.14 par:pre; +délation délation nom f s 0.26 1.55 0.26 1.28 +délations délation nom f p 0.26 1.55 0.00 0.27 +délatrice délateur nom f s 0.36 0.88 0.00 0.07 +délavait délaver ver 0.04 2.23 0.00 0.07 ind:imp:3s; +délavant délaver ver 0.04 2.23 0.00 0.07 par:pre; +délave délaver ver 0.04 2.23 0.00 0.07 ind:pre:3s; +délavent délaver ver 0.04 2.23 0.00 0.07 ind:pre:3p; +délaver délaver ver 0.04 2.23 0.00 0.07 inf; +délavé délavé adj m s 0.39 4.86 0.23 2.36 +délavée délavé adj f s 0.39 4.86 0.01 0.74 +délavées délavé adj f p 0.39 4.86 0.14 0.54 +délavés délavé adj m p 0.39 4.86 0.01 1.22 +délaya délayer ver 0.06 2.84 0.00 0.14 ind:pas:3s; +délayage délayage nom m s 0.01 0.20 0.01 0.20 +délayait délayer ver 0.06 2.84 0.00 0.14 ind:imp:3s; +délayant délayer ver 0.06 2.84 0.00 0.41 par:pre; +délaye délayer ver 0.06 2.84 0.00 0.27 ind:pre:3s; +délayent délayer ver 0.06 2.84 0.00 0.07 ind:pre:3p; +délayer délayer ver 0.06 2.84 0.03 0.47 inf; +délayé délayer ver m s 0.06 2.84 0.00 0.54 par:pas; +délayée délayé adj f s 0.01 0.20 0.01 0.14 +délayés délayer ver m p 0.06 2.84 0.00 0.34 par:pas; +dulcifiant dulcifier ver 0.00 0.14 0.00 0.14 par:pre; +dulcinée dulcinée nom f s 0.42 0.47 0.42 0.47 +délectable délectable adj s 0.70 2.16 0.56 1.55 +délectables délectable adj p 0.70 2.16 0.14 0.61 +délectai délecter ver 0.85 3.58 0.00 0.07 ind:pas:1s; +délectaient délecter ver 0.85 3.58 0.01 0.14 ind:imp:3p; +délectais délecter ver 0.85 3.58 0.03 0.14 ind:imp:1s; +délectait délecter ver 0.85 3.58 0.03 1.42 ind:imp:3s; +délectant délecter ver 0.85 3.58 0.02 0.14 par:pre; +délectation délectation nom f s 0.07 3.38 0.07 3.24 +délectations délectation nom f p 0.07 3.38 0.00 0.14 +délecte délecter ver 0.85 3.58 0.21 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délectent délecter ver 0.85 3.58 0.16 0.14 ind:pre:3p; +délecter délecter ver 0.85 3.58 0.21 0.47 inf; +délectes délecter ver 0.85 3.58 0.03 0.07 ind:pre:2s; +délectez délecter ver 0.85 3.58 0.01 0.00 ind:pre:2p; +délections délecter ver 0.85 3.58 0.00 0.07 ind:imp:1p; +délectât délecter ver 0.85 3.58 0.00 0.07 sub:imp:3s; +délecté délecter ver m s 0.85 3.58 0.14 0.20 par:pas; +délestage délestage nom m s 0.02 0.14 0.02 0.14 +délestant délester ver 0.35 3.04 0.10 0.07 par:pre; +déleste délester ver 0.35 3.04 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délester délester ver 0.35 3.04 0.15 0.54 inf; +délestons délester ver 0.35 3.04 0.01 0.00 imp:pre:1p; +délestèrent délester ver 0.35 3.04 0.00 0.07 ind:pas:3p; +délesté délester ver m s 0.35 3.04 0.05 1.15 par:pas; +délestée délester ver f s 0.35 3.04 0.02 0.61 par:pas; +délestées délester ver f p 0.35 3.04 0.00 0.14 par:pas; +délestés délester ver m p 0.35 3.04 0.00 0.34 par:pas; +délia délier ver 2.55 4.86 0.88 0.27 ind:pas:3s; +déliaient délier ver 2.55 4.86 0.00 0.14 ind:imp:3p; +déliait délier ver 2.55 4.86 0.01 0.41 ind:imp:3s; +déliant délier ver 2.55 4.86 0.00 0.27 par:pre; +délibère délibérer ver 2.44 3.78 0.27 0.07 ind:pre:1s;ind:pre:3s; +délibèrent délibérer ver 2.44 3.78 0.04 0.14 ind:pre:3p; +délibéra délibérer ver 2.44 3.78 0.02 0.07 ind:pas:3s; +délibéraient délibérer ver 2.44 3.78 0.00 0.14 ind:imp:3p; +délibérait délibérer ver 2.44 3.78 0.00 0.27 ind:imp:3s; +délibérant délibérer ver 2.44 3.78 0.00 0.07 par:pre; +délibération délibération nom f s 1.17 1.89 0.69 0.81 +délibérations délibération nom f p 1.17 1.89 0.48 1.08 +délibérative délibératif adj f s 0.00 0.14 0.00 0.14 +délibératoire délibératoire adj s 0.01 0.00 0.01 0.00 +délibérer délibérer ver 2.44 3.78 0.74 0.81 inf; +délibérera délibérer ver 2.44 3.78 0.04 0.07 ind:fut:3s; +délibéreraient délibérer ver 2.44 3.78 0.00 0.14 cnd:pre:3p; +délibérions délibérer ver 2.44 3.78 0.00 0.07 ind:imp:1p; +délibérèrent délibérer ver 2.44 3.78 0.00 0.07 ind:pas:3p; +délibéré délibérer ver m s 2.44 3.78 1.18 0.74 par:pas; +délibérée délibéré adj f s 0.76 2.70 0.19 1.08 +délibérées délibéré adj f p 0.76 2.70 0.01 0.20 +délibérément délibérément adv 3.11 5.47 3.11 5.47 +délibérés délibéré adj m p 0.76 2.70 0.04 0.07 +délicat délicat adj m s 22.52 37.03 9.60 13.72 +délicate délicat adj f s 22.52 37.03 9.26 12.50 +délicatement délicatement adv 1.48 10.34 1.48 10.34 +délicates délicat adj f p 22.52 37.03 2.31 5.27 +délicatesse délicatesse nom f s 3.37 13.58 3.34 11.96 +délicatesses délicatesse nom f p 3.37 13.58 0.02 1.62 +délicats délicat adj m p 22.52 37.03 1.35 5.54 +délice délice nom m s 6.17 19.73 3.75 4.26 +délices délice nom f p 6.17 19.73 2.42 15.47 +délicieuse délicieux adj f s 29.22 28.65 6.56 10.74 +délicieusement délicieusement adv 0.52 5.27 0.52 5.27 +délicieuses délicieux adj f p 29.22 28.65 2.04 2.84 +délicieux délicieux adj m 29.22 28.65 20.62 15.07 +délictuelle délictuel adj f s 0.01 0.00 0.01 0.00 +délictueuse délictueux adj f s 0.12 0.41 0.09 0.00 +délictueuses délictueux adj f p 0.12 0.41 0.00 0.34 +délictueux délictueux adj m 0.12 0.41 0.03 0.07 +délie délier ver 2.55 4.86 0.68 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délient délier ver 2.55 4.86 0.04 0.07 ind:pre:3p; +délier délier ver 2.55 4.86 0.23 1.22 inf; +délieraient délier ver 2.55 4.86 0.01 0.07 cnd:pre:3p; +délieras délier ver 2.55 4.86 0.14 0.07 ind:fut:2s; +déliez délier ver 2.55 4.86 0.17 0.00 imp:pre:2p;ind:pre:2p; +délimitaient délimiter ver 0.38 5.54 0.00 0.74 ind:imp:3p; +délimitais délimiter ver 0.38 5.54 0.00 0.07 ind:imp:1s; +délimitait délimiter ver 0.38 5.54 0.00 0.41 ind:imp:3s; +délimitant délimiter ver 0.38 5.54 0.01 0.61 par:pre; +délimitation délimitation nom f s 0.00 0.34 0.00 0.27 +délimitations délimitation nom f p 0.00 0.34 0.00 0.07 +délimite délimiter ver 0.38 5.54 0.14 0.20 imp:pre:2s;ind:pre:3s; +délimitent délimiter ver 0.38 5.54 0.02 0.47 ind:pre:3p; +délimiter délimiter ver 0.38 5.54 0.07 0.41 inf; +délimitez délimiter ver 0.38 5.54 0.03 0.00 imp:pre:2p;ind:pre:2p; +délimitions délimiter ver 0.38 5.54 0.00 0.07 ind:imp:1p; +délimitons délimiter ver 0.38 5.54 0.01 0.00 ind:pre:1p; +délimité délimiter ver m s 0.38 5.54 0.03 1.15 par:pas; +délimitée délimiter ver f s 0.38 5.54 0.05 0.68 par:pas; +délimitées délimiter ver f p 0.38 5.54 0.00 0.41 par:pas; +délimités délimiter ver m p 0.38 5.54 0.01 0.34 par:pas; +délinquance délinquance nom f s 1.54 1.42 1.54 1.35 +délinquances délinquance nom f p 1.54 1.42 0.00 0.07 +délinquant délinquant nom m s 4.16 1.89 1.97 0.88 +délinquante délinquant adj f s 0.86 0.61 0.15 0.27 +délinquantes délinquant nom f p 4.16 1.89 0.03 0.07 +délinquants délinquant nom m p 4.16 1.89 2.07 0.81 +délinéaments délinéament nom m p 0.00 0.07 0.00 0.07 +déliquescence déliquescence nom f s 0.16 0.14 0.16 0.14 +déliquescent déliquescent adj m s 0.02 0.41 0.02 0.07 +déliquescente déliquescent adj f s 0.02 0.41 0.00 0.27 +déliquescents déliquescent adj m p 0.02 0.41 0.00 0.07 +délira délirer ver 13.73 7.23 0.02 0.07 ind:pas:3s; +délirai délirer ver 13.73 7.23 0.00 0.07 ind:pas:1s; +déliraient délirer ver 13.73 7.23 0.01 0.20 ind:imp:3p; +délirais délirer ver 13.73 7.23 0.44 0.47 ind:imp:1s;ind:imp:2s; +délirait délirer ver 13.73 7.23 1.17 1.08 ind:imp:3s; +délirant délirant adj m s 3.05 5.61 1.36 1.28 +délirante délirant adj f s 3.05 5.61 0.83 2.30 +délirantes délirant adj f p 3.05 5.61 0.11 0.95 +délirants délirant adj m p 3.05 5.61 0.75 1.08 +délirassent délirer ver 13.73 7.23 0.00 0.07 sub:imp:3p; +délire délire nom m s 13.20 19.80 10.93 16.62 +délirent délirer ver 13.73 7.23 0.17 0.07 ind:pre:3p; +délirer délirer ver 13.73 7.23 1.94 2.23 inf; +délireras délirer ver 13.73 7.23 0.01 0.00 ind:fut:2s; +délires délirer ver 13.73 7.23 4.81 0.27 ind:pre:2s; +délirez délirer ver 13.73 7.23 0.94 0.27 imp:pre:2p;ind:pre:2p; +déliriez délirer ver 13.73 7.23 0.11 0.00 ind:imp:2p; +déliré délirer ver m s 13.73 7.23 0.45 0.27 par:pas; +délit délit nom m s 13.52 7.97 11.35 6.35 +délitaient déliter ver 0.11 0.68 0.00 0.07 ind:imp:3p; +délite déliter ver 0.11 0.68 0.01 0.20 ind:pre:3s; +délitent déliter ver 0.11 0.68 0.00 0.14 ind:pre:3p; +déliteront déliter ver 0.11 0.68 0.00 0.07 ind:fut:3p; +délièrent délier ver 2.55 4.86 0.00 0.07 ind:pas:3p; +délits délit nom m p 13.52 7.97 2.17 1.62 +délité déliter ver m s 0.11 0.68 0.10 0.00 par:pas; +délitée déliter ver f s 0.11 0.68 0.00 0.07 par:pas; +délitées déliter ver f p 0.11 0.68 0.00 0.14 par:pas; +délié délier ver m s 2.55 4.86 0.14 0.41 par:pas; +déliée délier ver f s 2.55 4.86 0.12 0.68 par:pas; +déliées délié adj f p 0.04 2.36 0.01 0.68 +déliés délier ver m p 2.55 4.86 0.14 0.34 par:pas; +délivra délivrer ver 14.45 31.15 0.00 0.74 ind:pas:3s; +délivraient délivrer ver 14.45 31.15 0.03 0.61 ind:imp:3p; +délivrais délivrer ver 14.45 31.15 0.01 0.07 ind:imp:1s; +délivrait délivrer ver 14.45 31.15 0.01 2.50 ind:imp:3s; +délivrance délivrance nom f s 1.94 5.74 1.94 5.68 +délivrances délivrance nom f p 1.94 5.74 0.00 0.07 +délivrant délivrer ver 14.45 31.15 0.04 0.20 par:pre; +délivre délivrer ver 14.45 31.15 4.37 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délivrent délivrer ver 14.45 31.15 0.25 0.68 ind:pre:3p; +délivrer délivrer ver 14.45 31.15 4.76 7.91 ind:pre:2p;inf; +délivrera délivrer ver 14.45 31.15 0.60 0.68 ind:fut:3s; +délivrerai délivrer ver 14.45 31.15 0.46 0.00 ind:fut:1s; +délivreraient délivrer ver 14.45 31.15 0.00 0.07 cnd:pre:3p; +délivrerais délivrer ver 14.45 31.15 0.01 0.00 cnd:pre:1s; +délivrerait délivrer ver 14.45 31.15 0.05 1.08 cnd:pre:3s; +délivreras délivrer ver 14.45 31.15 0.12 0.00 ind:fut:2s; +délivrerez délivrer ver 14.45 31.15 0.01 0.00 ind:fut:2p; +délivrerons délivrer ver 14.45 31.15 0.00 0.07 ind:fut:1p; +délivreront délivrer ver 14.45 31.15 0.03 0.00 ind:fut:3p; +délivreurs délivreur nom m p 0.00 0.07 0.00 0.07 +délivrez délivrer ver 14.45 31.15 0.94 0.41 imp:pre:2p;ind:pre:2p; +délivriez délivrer ver 14.45 31.15 0.02 0.00 ind:imp:2p; +délivrions délivrer ver 14.45 31.15 0.01 0.00 ind:imp:1p; +délivrons délivrer ver 14.45 31.15 0.16 0.00 imp:pre:1p;ind:pre:1p; +délivrât délivrer ver 14.45 31.15 0.00 0.14 sub:imp:3s; +délivrèrent délivrer ver 14.45 31.15 0.00 0.07 ind:pas:3p; +délivré délivrer ver m s 14.45 31.15 1.14 7.97 par:pas; +délivrée délivrer ver f s 14.45 31.15 0.52 3.99 par:pas; +délivrées délivrer ver f p 14.45 31.15 0.07 0.34 par:pas; +délivrés délivrer ver m p 14.45 31.15 0.84 1.49 par:pas; +délocalisation délocalisation nom f s 0.06 0.00 0.06 0.00 +délocaliser délocaliser ver 0.09 0.00 0.06 0.00 inf; +délocalisez délocaliser ver 0.09 0.00 0.01 0.00 imp:pre:2p; +délocalisé délocaliser ver m s 0.09 0.00 0.02 0.00 par:pas; +déloge déloger ver 1.94 3.45 0.18 0.14 imp:pre:2s;ind:pre:3s; +délogea déloger ver 1.94 3.45 0.00 0.14 ind:pas:3s; +délogeait déloger ver 1.94 3.45 0.00 0.14 ind:imp:3s; +délogeât déloger ver 1.94 3.45 0.00 0.14 sub:imp:3s; +déloger déloger ver 1.94 3.45 1.17 1.89 inf; +délogera déloger ver 1.94 3.45 0.02 0.14 ind:fut:3s; +délogerait déloger ver 1.94 3.45 0.02 0.00 cnd:pre:3s; +délogerons déloger ver 1.94 3.45 0.00 0.07 ind:fut:1p; +délogez déloger ver 1.94 3.45 0.05 0.00 imp:pre:2p; +délogé déloger ver m s 1.94 3.45 0.20 0.34 par:pas; +délogée déloger ver f s 1.94 3.45 0.01 0.27 par:pas; +délogés déloger ver m p 1.94 3.45 0.29 0.20 par:pas; +déloquaient déloquer ver 0.05 1.69 0.00 0.07 ind:imp:3p; +déloque déloquer ver 0.05 1.69 0.01 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déloquer déloquer ver 0.05 1.69 0.04 0.54 inf; +déloques déloquer ver 0.05 1.69 0.00 0.14 ind:pre:2s; +déloqué déloquer ver m s 0.05 1.69 0.00 0.07 par:pas; +déloquées déloquer ver f p 0.05 1.69 0.00 0.07 par:pas; +déloqués déloquer ver m p 0.05 1.69 0.00 0.07 par:pas; +délourdant délourder ver 0.00 0.20 0.00 0.07 par:pre; +délourder délourder ver 0.00 0.20 0.00 0.14 inf; +déloyal déloyal adj m s 1.41 0.54 0.81 0.47 +déloyale déloyal adj f s 1.41 0.54 0.54 0.07 +déloyalement déloyalement adv 0.02 0.14 0.02 0.14 +déloyauté déloyauté nom f s 0.26 0.34 0.26 0.27 +déloyautés déloyauté nom f p 0.26 0.34 0.00 0.07 +déloyaux déloyal adj m p 1.41 0.54 0.06 0.00 +délègue déléguer ver 1.90 6.62 0.21 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délégation délégation nom f s 3.49 12.77 3.11 10.68 +délégations délégation nom f p 3.49 12.77 0.39 2.09 +déluge déluge nom m s 2.53 8.58 2.51 8.18 +déluges déluge nom m p 2.53 8.58 0.03 0.41 +délégua déléguer ver 1.90 6.62 0.00 0.41 ind:pas:3s; +déléguaient déléguer ver 1.90 6.62 0.00 0.14 ind:imp:3p; +déléguait déléguer ver 1.90 6.62 0.01 0.74 ind:imp:3s; +déléguant déléguer ver 1.90 6.62 0.00 0.20 par:pre; +déléguer déléguer ver 1.90 6.62 0.52 0.95 inf; +déléguerai déléguer ver 1.90 6.62 0.04 0.00 ind:fut:1s; +délégueraient déléguer ver 1.90 6.62 0.00 0.07 cnd:pre:3p; +déléguez déléguer ver 1.90 6.62 0.04 0.14 imp:pre:2p;ind:pre:2p; +déléguiez déléguer ver 1.90 6.62 0.00 0.07 ind:imp:2p; +déléguons déléguer ver 1.90 6.62 0.01 0.00 ind:pre:1p; +déléguât déléguer ver 1.90 6.62 0.00 0.07 sub:imp:3s; +délégué_général délégué_général adj m s 0.00 0.14 0.00 0.14 +délégué_général délégué_général nom m s 0.00 0.14 0.00 0.14 +délégué délégué nom m s 3.96 12.16 1.83 7.09 +déléguée délégué nom f s 3.96 12.16 0.57 0.27 +délégués délégué nom m p 3.96 12.16 1.56 4.80 +déluré déluré adj m s 0.36 0.81 0.16 0.41 +délurée déluré adj f s 0.36 0.81 0.18 0.34 +délurées délurer ver f p 0.11 0.34 0.05 0.07 par:pas; +délustrer délustrer ver 0.00 0.07 0.00 0.07 inf; +délétère délétère adj s 0.00 1.01 0.00 0.68 +délétères délétère adj p 0.00 1.01 0.00 0.34 +dum_dum dum_dum adj 0.20 0.27 0.20 0.27 +démagnétiser démagnétiser ver 0.12 0.07 0.04 0.00 inf; +démagnétisé démagnétiser ver m s 0.12 0.07 0.05 0.00 par:pas; +démagnétisée démagnétiser ver f s 0.12 0.07 0.02 0.07 par:pas; +démago démago adj f s 0.03 0.00 0.03 0.00 +démagogie démagogie nom f s 0.47 1.35 0.47 1.35 +démagogique démagogique adj f s 0.14 0.47 0.14 0.34 +démagogiques démagogique adj m p 0.14 0.47 0.00 0.14 +démagogue démagogue adj s 0.22 0.07 0.21 0.07 +démagogues démagogue nom p 0.29 0.54 0.13 0.34 +démaille démailler ver 0.00 0.20 0.00 0.07 ind:pre:3s; +démailler démailler ver 0.00 0.20 0.00 0.07 inf; +démailloter démailloter ver 0.00 0.34 0.00 0.20 inf; +démailloté démailloter ver m s 0.00 0.34 0.00 0.14 par:pas; +démaillée démailler ver f s 0.00 0.20 0.00 0.07 par:pas; +démanche démancher ver 0.00 0.20 0.00 0.07 ind:pre:3s; +démancher démancher ver 0.00 0.20 0.00 0.07 inf; +démanché démancher ver m s 0.00 0.20 0.00 0.07 par:pas; +démange démanger ver 3.10 3.51 2.38 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démangeaient démanger ver 3.10 3.51 0.00 0.14 ind:imp:3p; +démangeais démanger ver 3.10 3.51 0.01 0.07 ind:imp:1s; +démangeaison démangeaison nom f s 1.05 2.30 0.39 1.08 +démangeaisons démangeaison nom f p 1.05 2.30 0.66 1.22 +démangeait démanger ver 3.10 3.51 0.29 1.42 ind:imp:3s; +démangent démanger ver 3.10 3.51 0.28 0.20 ind:pre:3p; +démanger démanger ver 3.10 3.51 0.13 0.07 inf; +démangé démanger ver m s 3.10 3.51 0.01 0.14 par:pas; +démangés démanger ver m p 3.10 3.51 0.00 0.07 par:pas; +démanteler démanteler ver 1.83 1.62 0.68 0.34 inf; +démantelez démanteler ver 1.83 1.62 0.04 0.00 imp:pre:2p; +démantelons démanteler ver 1.83 1.62 0.01 0.00 ind:pre:1p; +démantelé démanteler ver m s 1.83 1.62 0.68 0.27 par:pas; +démantelée démanteler ver f s 1.83 1.62 0.03 0.20 par:pas; +démantelées démanteler ver f p 1.83 1.62 0.30 0.34 par:pas; +démantelés démanteler ver m p 1.83 1.62 0.01 0.34 par:pas; +démantibulant démantibuler ver 0.04 1.76 0.00 0.07 par:pre; +démantibule démantibuler ver 0.04 1.76 0.02 0.07 ind:pre:1s;ind:pre:3s; +démantibulent démantibuler ver 0.04 1.76 0.00 0.07 ind:pre:3p; +démantibuler démantibuler ver 0.04 1.76 0.01 0.20 inf; +démantibulé démantibuler ver m s 0.04 1.76 0.01 0.47 par:pas; +démantibulée démantibuler ver f s 0.04 1.76 0.00 0.27 par:pas; +démantibulées démantibuler ver f p 0.04 1.76 0.00 0.27 par:pas; +démantibulés démantibuler ver m p 0.04 1.76 0.00 0.34 par:pas; +démantèle démanteler ver 1.83 1.62 0.08 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démantèlement démantèlement nom m s 0.14 0.41 0.14 0.34 +démantèlements démantèlement nom m p 0.14 0.41 0.00 0.07 +démantèlent démanteler ver 1.83 1.62 0.00 0.14 ind:pre:3p; +démaquillage démaquillage nom m s 0.01 0.14 0.01 0.14 +démaquillaient démaquiller ver 0.55 1.49 0.00 0.07 ind:imp:3p; +démaquillais démaquiller ver 0.55 1.49 0.00 0.07 ind:imp:1s; +démaquillait démaquiller ver 0.55 1.49 0.00 0.27 ind:imp:3s; +démaquillant démaquillant nom m s 0.04 0.41 0.04 0.41 +démaquillante démaquillant adj f s 0.04 0.07 0.04 0.00 +démaquille démaquiller ver 0.55 1.49 0.16 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démaquiller démaquiller ver 0.55 1.49 0.25 0.47 inf; +démaquillerai démaquiller ver 0.55 1.49 0.10 0.00 ind:fut:1s; +démaquillé démaquiller ver m s 0.55 1.49 0.02 0.34 par:pas; +démaquillée démaquiller ver f s 0.55 1.49 0.01 0.14 par:pas; +démarcation démarcation nom f s 0.29 1.76 0.29 1.76 +démarcha démarcher ver 0.13 0.27 0.01 0.14 ind:pas:3s; +démarchage démarchage nom m s 0.06 0.07 0.06 0.07 +démarchait démarcher ver 0.13 0.27 0.01 0.07 ind:imp:3s; +démarche démarche nom f s 5.69 32.91 3.96 25.07 +démarcher démarcher ver 0.13 0.27 0.05 0.00 inf; +démarches démarche nom f p 5.69 32.91 1.73 7.84 +démarcheur démarcheur nom m s 0.04 1.15 0.02 0.74 +démarcheurs démarcheur nom m p 0.04 1.15 0.00 0.41 +démarcheuse démarcheur nom f s 0.04 1.15 0.02 0.00 +démarient démarier ver 0.02 0.07 0.01 0.00 ind:pre:3p; +démarier démarier ver 0.02 0.07 0.01 0.00 inf; +démariée démarier ver f s 0.02 0.07 0.00 0.07 par:pas; +démarquai démarquer ver 0.94 0.74 0.00 0.07 ind:pas:1s; +démarquaient démarquer ver 0.94 0.74 0.00 0.20 ind:imp:3p; +démarquait démarquer ver 0.94 0.74 0.01 0.07 ind:imp:3s; +démarque démarquer ver 0.94 0.74 0.22 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démarquer démarquer ver 0.94 0.74 0.13 0.20 inf; +démarqué démarquer ver m s 0.94 0.74 0.49 0.14 par:pas; +démarquée démarquer ver f s 0.94 0.74 0.07 0.07 par:pas; +démarquées démarquer ver f p 0.94 0.74 0.01 0.00 par:pas; +démarqués démarquer ver m p 0.94 0.74 0.01 0.00 par:pas; +démarra démarrer ver 35.67 29.32 0.03 6.35 ind:pas:3s; +démarrage démarrage nom m s 1.18 3.31 1.17 3.11 +démarrages démarrage nom m p 1.18 3.31 0.01 0.20 +démarrai démarrer ver 35.67 29.32 0.00 0.20 ind:pas:1s; +démarraient démarrer ver 35.67 29.32 0.02 0.34 ind:imp:3p; +démarrais démarrer ver 35.67 29.32 0.06 0.34 ind:imp:1s;ind:imp:2s; +démarrait démarrer ver 35.67 29.32 0.57 2.50 ind:imp:3s; +démarrant démarrer ver 35.67 29.32 0.09 1.22 par:pre; +démarre démarrer ver 35.67 29.32 17.11 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démarrent démarrer ver 35.67 29.32 1.04 0.81 ind:pre:3p; +démarrer démarrer ver 35.67 29.32 9.10 5.27 inf; +démarrera démarrer ver 35.67 29.32 0.29 0.07 ind:fut:3s; +démarrerai démarrer ver 35.67 29.32 0.02 0.00 ind:fut:1s; +démarreront démarrer ver 35.67 29.32 0.04 0.00 ind:fut:3p; +démarres démarrer ver 35.67 29.32 0.51 0.20 ind:pre:2s; +démarreur démarreur nom m s 1.25 2.23 1.24 2.09 +démarreurs démarreur nom m p 1.25 2.23 0.01 0.14 +démarrez démarrer ver 35.67 29.32 3.15 0.07 imp:pre:2p;ind:pre:2p; +démarrions démarrer ver 35.67 29.32 0.00 0.07 ind:imp:1p; +démarrons démarrer ver 35.67 29.32 0.39 0.20 imp:pre:1p;ind:pre:1p; +démarrât démarrer ver 35.67 29.32 0.00 0.07 sub:imp:3s; +démarrèrent démarrer ver 35.67 29.32 0.00 0.27 ind:pas:3p; +démarré démarrer ver m s 35.67 29.32 3.15 4.32 par:pas; +démarrée démarrer ver f s 35.67 29.32 0.10 0.14 par:pas; +démarrées démarrer ver f p 35.67 29.32 0.00 0.07 par:pas; +démarrés démarrer ver m p 35.67 29.32 0.01 0.14 par:pas; +démasqua démasquer ver 6.41 4.66 0.00 0.27 ind:pas:3s; +démasquage démasquage nom m s 0.01 0.00 0.01 0.00 +démasquaient démasquer ver 6.41 4.66 0.00 0.07 ind:imp:3p; +démasquais démasquer ver 6.41 4.66 0.00 0.07 ind:imp:1s; +démasquait démasquer ver 6.41 4.66 0.02 0.07 ind:imp:3s; +démasquant démasquer ver 6.41 4.66 0.17 0.61 par:pre; +démasque démasquer ver 6.41 4.66 0.46 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +démasquent démasquer ver 6.41 4.66 0.07 0.20 ind:pre:3p; +démasquer démasquer ver 6.41 4.66 2.44 0.74 imp:pre:2p;inf; +démasquera démasquer ver 6.41 4.66 0.20 0.00 ind:fut:3s; +démasquerai démasquer ver 6.41 4.66 0.07 0.07 ind:fut:1s; +démasquerait démasquer ver 6.41 4.66 0.11 0.00 cnd:pre:3s; +démasqueriez démasquer ver 6.41 4.66 0.01 0.00 cnd:pre:2p; +démasquerons démasquer ver 6.41 4.66 0.03 0.07 ind:fut:1p; +démasqueront démasquer ver 6.41 4.66 0.01 0.00 ind:fut:3p; +démasquons démasquer ver 6.41 4.66 0.02 0.00 imp:pre:1p;ind:pre:1p; +démasqué démasquer ver m s 6.41 4.66 1.76 1.35 par:pas; +démasquée démasquer ver f s 6.41 4.66 0.51 0.54 par:pas; +démasquées démasquer ver f p 6.41 4.66 0.04 0.07 par:pas; +démasqués démasquer ver m p 6.41 4.66 0.50 0.27 par:pas; +dématérialisation dématérialisation nom f s 0.01 0.00 0.01 0.00 +dématérialise dématérialiser ver 0.18 0.07 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dématérialisent dématérialiser ver 0.18 0.07 0.01 0.00 ind:pre:3p; +dématérialiser dématérialiser ver 0.18 0.07 0.05 0.00 inf; +dématérialisé dématérialiser ver m s 0.18 0.07 0.08 0.00 par:pas; +démembrant démembrer ver 0.87 0.54 0.01 0.00 par:pre; +démembre démembrer ver 0.87 0.54 0.12 0.00 ind:pre:1s;ind:pre:3s; +démembrement démembrement nom m s 0.14 0.34 0.13 0.34 +démembrements démembrement nom m p 0.14 0.34 0.01 0.00 +démembrer démembrer ver 0.87 0.54 0.28 0.20 inf; +démembrez démembrer ver 0.87 0.54 0.01 0.00 ind:pre:2p; +démembré démembrer ver m s 0.87 0.54 0.25 0.20 par:pas; +démembrée démembrer ver f s 0.87 0.54 0.08 0.00 par:pas; +démembrées démembrer ver f p 0.87 0.54 0.04 0.00 par:pas; +démembrés démembrer ver m p 0.87 0.54 0.07 0.14 par:pas; +démena démener ver 2.65 3.72 0.00 0.14 ind:pas:3s; +démenaient démener ver 2.65 3.72 0.00 0.41 ind:imp:3p; +démenais démener ver 2.65 3.72 0.25 0.00 ind:imp:1s;ind:imp:2s; +démenait démener ver 2.65 3.72 0.05 0.95 ind:imp:3s; +démenant démener ver 2.65 3.72 0.01 0.47 par:pre; +démence démence nom f s 2.75 2.43 2.75 2.43 +démener démener ver 2.65 3.72 0.32 1.01 inf; +démenons démener ver 2.65 3.72 0.00 0.07 ind:pre:1p; +démenotte démenotter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +démens démentir ver 3.06 6.35 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dément dément adj m s 3.12 3.72 2.02 1.35 +démentaient démentir ver 3.06 6.35 0.01 0.61 ind:imp:3p; +démentait démentir ver 3.06 6.35 0.01 1.22 ind:imp:3s; +démentant démentir ver 3.06 6.35 0.01 0.41 par:pre; +démente dément adj f s 3.12 3.72 0.48 1.28 +démentent démentir ver 3.06 6.35 0.05 0.20 ind:pre:3p; +démentes dément adj f p 3.12 3.72 0.20 0.54 +démentez démentir ver 3.06 6.35 0.03 0.00 imp:pre:2p;ind:pre:2p; +démenti démenti nom m s 1.04 2.70 1.01 2.09 +démentie démenti adj f s 0.21 0.68 0.16 0.07 +démentiel démentiel adj m s 0.52 1.42 0.46 0.61 +démentielle démentiel adj f s 0.52 1.42 0.05 0.41 +démentielles démentiel adj f p 0.52 1.42 0.00 0.27 +démentiels démentiel adj m p 0.52 1.42 0.01 0.14 +démenties démentir ver f p 3.06 6.35 0.27 0.14 par:pas; +démentir démentir ver 3.06 6.35 1.06 1.55 inf; +démentirai démentir ver 3.06 6.35 0.01 0.00 ind:fut:1s; +démentirait démentir ver 3.06 6.35 0.01 0.00 cnd:pre:3s; +démentiront démentir ver 3.06 6.35 0.01 0.00 ind:fut:3p; +démentis démenti nom m p 1.04 2.70 0.03 0.61 +démentit démentir ver 3.06 6.35 0.03 0.41 ind:pas:3s; +déments dément adj m p 3.12 3.72 0.41 0.54 +démené démener ver m s 2.65 3.72 0.30 0.07 par:pas; +démenée démener ver f s 2.65 3.72 0.09 0.07 par:pas; +démerdaient démerder ver 5.37 6.42 0.00 0.07 ind:imp:3p; +démerdais démerder ver 5.37 6.42 0.01 0.07 ind:imp:1s; +démerdait démerder ver 5.37 6.42 0.02 0.14 ind:imp:3s; +démerdard démerdard nom m s 0.16 0.07 0.16 0.00 +démerdards démerdard nom m p 0.16 0.07 0.00 0.07 +démerde démerder ver 5.37 6.42 1.74 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démerdent démerder ver 5.37 6.42 0.21 0.41 ind:pre:3p; +démerder démerder ver 5.37 6.42 1.27 1.01 inf; +démerdera démerder ver 5.37 6.42 0.02 0.27 ind:fut:3s; +démerderai démerder ver 5.37 6.42 0.01 0.54 ind:fut:1s; +démerderas démerder ver 5.37 6.42 0.00 0.14 ind:fut:2s; +démerdes démerder ver 5.37 6.42 0.93 0.34 ind:pre:2s; +démerdez démerder ver 5.37 6.42 0.80 0.54 imp:pre:2p;ind:pre:2p; +démerdé démerder ver m s 5.37 6.42 0.23 0.81 par:pas; +démerdée démerder ver f s 5.37 6.42 0.14 0.27 par:pas; +démerdés démerder ver m p 5.37 6.42 0.00 0.20 par:pas; +démesure démesure nom f s 0.04 1.15 0.04 1.15 +démesurent démesurer ver 0.55 2.30 0.00 0.07 ind:pre:3p; +démesuré démesuré adj m s 0.72 8.38 0.41 3.18 +démesurée démesurer ver f s 0.55 2.30 0.36 0.88 par:pas; +démesurées démesuré adj f p 0.72 8.38 0.07 1.08 +démesurément démesurément adv 0.09 4.19 0.09 4.19 +démesurés démesurer ver m p 0.55 2.30 0.11 0.27 par:pas; +démet démettre ver 0.84 1.28 0.04 0.14 ind:pre:3s; +démets démettre ver 0.84 1.28 0.04 0.07 ind:pre:1s; +démette démettre ver 0.84 1.28 0.01 0.00 sub:pre:3s; +démettez démettre ver 0.84 1.28 0.04 0.00 imp:pre:2p; +démettrait démettre ver 0.84 1.28 0.00 0.07 cnd:pre:3s; +démettre démettre ver 0.84 1.28 0.20 0.41 inf; +démeublé démeubler ver m s 0.00 0.41 0.00 0.20 par:pas; +démeublée démeubler ver f s 0.00 0.41 0.00 0.20 par:pas; +démilitarisation démilitarisation nom f s 0.14 0.07 0.14 0.07 +démilitarisée démilitariser ver f s 0.25 0.14 0.25 0.07 par:pas; +démilitarisées démilitariser ver f p 0.25 0.14 0.00 0.07 par:pas; +déminage déminage nom m s 0.69 0.34 0.69 0.34 +déminant déminer ver 0.02 0.20 0.00 0.07 par:pre; +déminer déminer ver 0.02 0.20 0.01 0.00 inf; +démineur démineur nom m s 0.54 0.07 0.17 0.07 +démineurs démineur nom m p 0.54 0.07 0.37 0.00 +déminé déminer ver m s 0.02 0.20 0.01 0.07 par:pas; +déminée déminer ver f s 0.02 0.20 0.00 0.07 par:pas; +démis démettre ver m 0.84 1.28 0.41 0.41 par:pas; +démise démis adj f s 0.13 0.41 0.12 0.27 +démises démis adj f p 0.13 0.41 0.00 0.07 +démission démission nom f s 7.60 5.47 7.34 5.07 +démissionna démissionner ver 17.79 1.82 0.05 0.00 ind:pas:3s; +démissionnaient démissionner ver 17.79 1.82 0.00 0.07 ind:imp:3p; +démissionnaire démissionnaire nom s 0.32 0.00 0.14 0.00 +démissionnaires démissionnaire nom p 0.32 0.00 0.19 0.00 +démissionnais démissionner ver 17.79 1.82 0.08 0.00 ind:imp:1s;ind:imp:2s; +démissionnait démissionner ver 17.79 1.82 0.02 0.14 ind:imp:3s; +démissionnant démissionner ver 17.79 1.82 0.02 0.07 par:pre; +démissionne démissionner ver 17.79 1.82 5.28 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démissionnent démissionner ver 17.79 1.82 0.06 0.07 ind:pre:3p; +démissionner démissionner ver 17.79 1.82 5.15 0.20 inf; +démissionnera démissionner ver 17.79 1.82 0.10 0.00 ind:fut:3s; +démissionnerai démissionner ver 17.79 1.82 0.42 0.00 ind:fut:1s; +démissionneraient démissionner ver 17.79 1.82 0.01 0.00 cnd:pre:3p; +démissionnerais démissionner ver 17.79 1.82 0.07 0.14 cnd:pre:1s;cnd:pre:2s; +démissionnerait démissionner ver 17.79 1.82 0.01 0.07 cnd:pre:3s; +démissionneras démissionner ver 17.79 1.82 0.01 0.00 ind:fut:2s; +démissionnerez démissionner ver 17.79 1.82 0.04 0.00 ind:fut:2p; +démissionneront démissionner ver 17.79 1.82 0.02 0.00 ind:fut:3p; +démissionnes démissionner ver 17.79 1.82 0.48 0.00 ind:pre:2s; +démissionnez démissionner ver 17.79 1.82 0.67 0.14 imp:pre:2p;ind:pre:2p; +démissionniez démissionner ver 17.79 1.82 0.06 0.00 ind:imp:2p; +démissionné démissionner ver m s 17.79 1.82 5.23 0.68 par:pas; +démissions démission nom f p 7.60 5.47 0.26 0.41 +démit démettre ver 0.84 1.28 0.01 0.14 ind:pas:3s; +démiurge démiurge nom m s 0.16 1.01 0.16 0.88 +démiurges démiurge nom m p 0.16 1.01 0.00 0.14 +démobilisant démobiliser ver 0.28 1.28 0.00 0.07 par:pre; +démobilisateur démobilisateur adj m s 0.00 0.14 0.00 0.14 +démobilisation démobilisation nom f s 0.22 1.28 0.22 1.28 +démobilise démobiliser ver 0.28 1.28 0.01 0.27 ind:pre:1s;ind:pre:3s; +démobiliser démobiliser ver 0.28 1.28 0.03 0.14 inf; +démobiliseriez démobiliser ver 0.28 1.28 0.00 0.07 cnd:pre:2p; +démobilisé démobilisé adj m s 0.17 0.34 0.16 0.14 +démobilisés démobiliser ver m p 0.28 1.28 0.13 0.14 par:pas; +démocrate_chrétien démocrate_chrétien adj m s 0.21 0.14 0.21 0.07 +démocrate démocrate adj s 3.06 1.42 2.08 0.88 +démocrate_chrétien démocrate_chrétien nom p 0.10 0.27 0.10 0.27 +démocrates démocrate nom p 3.68 1.08 2.35 0.74 +démocratie démocratie nom f s 13.13 15.68 12.69 11.01 +démocraties démocratie nom f p 13.13 15.68 0.44 4.66 +démocratique démocratique adj s 5.38 5.74 4.97 4.12 +démocratiquement démocratiquement adv 0.18 0.27 0.18 0.27 +démocratiques démocratique adj p 5.38 5.74 0.41 1.62 +démocratisation démocratisation nom f s 0.01 0.20 0.01 0.14 +démocratisations démocratisation nom f p 0.01 0.20 0.00 0.07 +démocratise démocratiser ver 0.16 0.20 0.14 0.07 ind:pre:3s; +démocratiser démocratiser ver 0.16 0.20 0.01 0.07 inf; +démocratiseront démocratiser ver 0.16 0.20 0.00 0.07 ind:fut:3p; +démocratisé démocratiser ver m s 0.16 0.20 0.01 0.00 par:pas; +démodaient démoder ver 1.03 1.55 0.01 0.07 ind:imp:3p; +démodant démoder ver 1.03 1.55 0.00 0.07 par:pre; +démode démoder ver 1.03 1.55 0.06 0.20 ind:pre:3s; +démoder démoder ver 1.03 1.55 0.00 0.07 inf; +démodé démodé adj m s 1.64 3.58 0.80 1.35 +démodée démodé adj f s 1.64 3.58 0.43 0.88 +démodées démodé adj f p 1.64 3.58 0.26 0.74 +démodulateur démodulateur nom m s 0.03 0.00 0.02 0.00 +démodulateurs démodulateur nom m p 0.03 0.00 0.01 0.00 +démodés démodé adj m p 1.64 3.58 0.16 0.61 +démographie démographie nom f s 0.16 0.54 0.16 0.54 +démographique démographique adj s 0.20 0.54 0.14 0.20 +démographiquement démographiquement adv 0.00 0.07 0.00 0.07 +démographiques démographique adj p 0.20 0.54 0.06 0.34 +démoli démolir ver m s 18.81 11.22 4.41 2.30 par:pas; +démolie démolir ver f s 18.81 11.22 1.15 0.88 par:pas; +démolies démolir ver f p 18.81 11.22 0.02 0.61 par:pas; +démolir démolir ver 18.81 11.22 8.02 3.65 inf; +démolira démolir ver 18.81 11.22 0.51 0.14 ind:fut:3s; +démolirai démolir ver 18.81 11.22 0.06 0.07 ind:fut:1s; +démoliraient démolir ver 18.81 11.22 0.02 0.07 cnd:pre:3p; +démolirais démolir ver 18.81 11.22 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +démolirait démolir ver 18.81 11.22 0.03 0.14 cnd:pre:3s; +démolirent démolir ver 18.81 11.22 0.00 0.07 ind:pas:3p; +démolirions démolir ver 18.81 11.22 0.00 0.07 cnd:pre:1p; +démoliront démolir ver 18.81 11.22 0.15 0.07 ind:fut:3p; +démolis démolir ver m p 18.81 11.22 1.93 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +démolissaient démolir ver 18.81 11.22 0.04 0.27 ind:imp:3p; +démolissais démolir ver 18.81 11.22 0.00 0.20 ind:imp:1s; +démolissait démolir ver 18.81 11.22 0.03 0.54 ind:imp:3s; +démolissant démolir ver 18.81 11.22 0.04 0.41 par:pre; +démolisse démolir ver 18.81 11.22 0.37 0.14 sub:pre:1s;sub:pre:3s; +démolissent démolir ver 18.81 11.22 0.48 0.27 ind:pre:3p; +démolisses démolir ver 18.81 11.22 0.17 0.00 sub:pre:2s; +démolisseur démolisseur nom m s 0.23 0.61 0.18 0.07 +démolisseurs démolisseur nom m p 0.23 0.61 0.05 0.47 +démolisseuse démolisseur nom f s 0.23 0.61 0.00 0.07 +démolissez démolir ver 18.81 11.22 0.40 0.00 imp:pre:2p;ind:pre:2p; +démolissions démolir ver 18.81 11.22 0.00 0.07 ind:imp:1p; +démolit démolir ver 18.81 11.22 0.89 0.61 ind:pre:3s;ind:pas:3s; +démolition démolition nom f s 1.55 2.36 1.53 1.82 +démolitions démolition nom f p 1.55 2.36 0.02 0.54 +démon démon nom m s 61.00 20.34 39.71 13.58 +démone démon nom f s 61.00 20.34 0.14 0.14 +démones démon nom f p 61.00 20.34 0.05 0.07 +démoniaque démoniaque adj s 5.52 2.30 4.22 1.69 +démoniaquement démoniaquement adv 0.00 0.07 0.00 0.07 +démoniaques démoniaque adj p 5.52 2.30 1.29 0.61 +démonique démonique adj s 0.04 0.00 0.04 0.00 +démonologie démonologie nom f s 0.16 0.00 0.16 0.00 +démonomanie démonomanie nom f s 0.01 0.00 0.01 0.00 +démons démon nom m p 61.00 20.34 21.10 6.55 +démonstrateur démonstrateur nom m s 0.06 0.54 0.02 0.14 +démonstrateurs démonstrateur nom m p 0.06 0.54 0.00 0.34 +démonstratif démonstratif adj m s 0.46 1.08 0.23 0.54 +démonstratifs démonstratif adj m p 0.46 1.08 0.15 0.20 +démonstration démonstration nom f s 7.61 12.23 7.30 9.53 +démonstrations démonstration nom f p 7.61 12.23 0.31 2.70 +démonstrative démonstratif adj f s 0.46 1.08 0.08 0.34 +démonstrativement démonstrativement adv 0.01 0.34 0.01 0.34 +démonstratrice démonstrateur nom f s 0.06 0.54 0.04 0.07 +démonta démonter ver 6.83 7.77 0.00 0.20 ind:pas:3s; +démontable démontable adj s 0.38 0.61 0.25 0.47 +démontables démontable adj f p 0.38 0.61 0.14 0.14 +démontage démontage nom m s 0.06 0.14 0.06 0.07 +démontages démontage nom m p 0.06 0.14 0.00 0.07 +démontaient démonter ver 6.83 7.77 0.00 0.14 ind:imp:3p; +démontait démonter ver 6.83 7.77 0.05 0.74 ind:imp:3s; +démontant démonter ver 6.83 7.77 0.04 0.07 par:pre; +démonte_pneu démonte_pneu nom m s 0.26 0.20 0.25 0.07 +démonte_pneu démonte_pneu nom m p 0.26 0.20 0.01 0.14 +démonte démonter ver 6.83 7.77 1.40 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démontent démonter ver 6.83 7.77 0.18 0.07 ind:pre:3p; +démonter démonter ver 6.83 7.77 3.44 3.11 inf; +démontez démonter ver 6.83 7.77 0.35 0.00 imp:pre:2p;ind:pre:2p; +démontra démontrer ver 7.12 12.09 0.00 0.34 ind:pas:3s; +démontrable démontrable adj m s 0.03 0.00 0.03 0.00 +démontrai démontrer ver 7.12 12.09 0.00 0.20 ind:pas:1s; +démontraient démontrer ver 7.12 12.09 0.01 0.27 ind:imp:3p; +démontrait démontrer ver 7.12 12.09 0.07 0.81 ind:imp:3s; +démontrant démontrer ver 7.12 12.09 0.06 0.81 par:pre; +démontre démontrer ver 7.12 12.09 1.38 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démontrent démontrer ver 7.12 12.09 0.34 0.14 ind:pre:3p; +démontrer démontrer ver 7.12 12.09 3.23 5.61 inf; +démontrera démontrer ver 7.12 12.09 0.09 0.07 ind:fut:3s; +démontrerai démontrer ver 7.12 12.09 0.09 0.00 ind:fut:1s; +démontrerait démontrer ver 7.12 12.09 0.02 0.14 cnd:pre:3s; +démontrerons démontrer ver 7.12 12.09 0.04 0.00 ind:fut:1p; +démontreront démontrer ver 7.12 12.09 0.07 0.00 ind:fut:3p; +démontrez démontrer ver 7.12 12.09 0.30 0.00 imp:pre:2p;ind:pre:2p; +démontrions démontrer ver 7.12 12.09 0.01 0.07 ind:imp:1p; +démontrât démontrer ver 7.12 12.09 0.00 0.07 sub:imp:3s; +démontrèrent démontrer ver 7.12 12.09 0.00 0.20 ind:pas:3p; +démontré démontrer ver m s 7.12 12.09 1.16 1.82 par:pas; +démontrée démontrer ver f s 7.12 12.09 0.21 0.34 par:pas; +démontrées démontrer ver f p 7.12 12.09 0.03 0.00 par:pas; +démontrés démontrer ver m p 7.12 12.09 0.02 0.00 par:pas; +démonté démonter ver m s 6.83 7.77 1.10 1.35 par:pas; +démontée démonté adj f s 0.31 2.09 0.22 0.74 +démontées démonter ver f p 6.83 7.77 0.08 0.07 par:pas; +démontés démonter ver m p 6.83 7.77 0.06 0.27 par:pas; +démonétisé démonétiser ver m s 0.00 0.14 0.00 0.07 par:pas; +démonétisés démonétiser ver m p 0.00 0.14 0.00 0.07 par:pas; +démoralisa démoraliser ver 0.98 1.82 0.00 0.07 ind:pas:3s; +démoralisait démoraliser ver 0.98 1.82 0.00 0.14 ind:imp:3s; +démoralisant démoralisant adj m s 0.14 0.81 0.11 0.34 +démoralisante démoralisant adj f s 0.14 0.81 0.03 0.34 +démoralisants démoralisant adj m p 0.14 0.81 0.00 0.14 +démoralisateur démoralisateur nom m s 0.01 0.07 0.01 0.00 +démoralisateurs démoralisateur adj m p 0.00 0.07 0.00 0.07 +démoralisateurs démoralisateur nom m p 0.01 0.07 0.00 0.07 +démoralisation démoralisation nom f s 0.30 0.61 0.30 0.61 +démoralise démoraliser ver 0.98 1.82 0.10 0.27 imp:pre:2s;ind:pre:3s; +démoralisent démoraliser ver 0.98 1.82 0.03 0.07 ind:pre:3p; +démoraliser démoraliser ver 0.98 1.82 0.34 0.47 inf; +démoraliseraient démoraliser ver 0.98 1.82 0.00 0.07 cnd:pre:3p; +démoraliserais démoraliser ver 0.98 1.82 0.00 0.07 cnd:pre:2s; +démoralisé démoraliser ver m s 0.98 1.82 0.32 0.34 par:pas; +démoralisée démoraliser ver f s 0.98 1.82 0.16 0.14 par:pas; +démoralisées démoralisé adj f p 0.12 0.27 0.00 0.07 +démoralisés démoraliser ver m p 0.98 1.82 0.02 0.20 par:pas; +démord démordre ver 0.49 2.57 0.05 0.27 ind:pre:3s; +démordaient démordre ver 0.49 2.57 0.01 0.07 ind:imp:3p; +démordais démordre ver 0.49 2.57 0.00 0.07 ind:imp:1s; +démordait démordre ver 0.49 2.57 0.11 0.88 ind:imp:3s; +démordent démordre ver 0.49 2.57 0.00 0.14 ind:pre:3p; +démordez démordre ver 0.49 2.57 0.02 0.07 imp:pre:2p;ind:pre:2p; +démordit démordre ver 0.49 2.57 0.00 0.07 ind:pas:3s; +démordra démordre ver 0.49 2.57 0.01 0.07 ind:fut:3s; +démordrai démordre ver 0.49 2.57 0.02 0.00 ind:fut:1s; +démordrait démordre ver 0.49 2.57 0.00 0.07 cnd:pre:3s; +démordre démordre ver 0.49 2.57 0.19 0.74 inf; +démordront démordre ver 0.49 2.57 0.00 0.07 ind:fut:3p; +démords démordre ver 0.49 2.57 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +démordu démordre ver m s 0.49 2.57 0.04 0.00 par:pas; +démâtait démâter ver 0.01 0.61 0.00 0.07 ind:imp:3s; +démâter démâter ver 0.01 0.61 0.01 0.00 inf; +démotique démotique adj f s 0.00 0.14 0.00 0.14 +démotivation démotivation nom f s 0.01 0.00 0.01 0.00 +démotive démotiver ver 0.06 0.00 0.02 0.00 ind:pre:1s;ind:pre:3s; +démotiver démotiver ver 0.06 0.00 0.03 0.00 inf; +démotivée démotiver ver f s 0.06 0.00 0.01 0.00 par:pas; +démâté démâter ver m s 0.01 0.61 0.00 0.07 par:pas; +démâtée démâter ver f s 0.01 0.61 0.00 0.34 par:pas; +démâtés démâter ver m p 0.01 0.61 0.00 0.14 par:pas; +démoucheté démoucheter ver m s 0.14 0.07 0.14 0.07 par:pas; +démoule démouler ver 0.09 0.07 0.02 0.00 ind:pre:1s;ind:pre:3s; +démouler démouler ver 0.09 0.07 0.03 0.00 inf; +démoules démouler ver 0.09 0.07 0.01 0.00 ind:pre:2s; +démoulé démouler ver m s 0.09 0.07 0.02 0.00 par:pas; +démoulées démouler ver f p 0.09 0.07 0.00 0.07 par:pas; +dumper dumper nom m s 0.01 0.00 0.01 0.00 +dumping dumping nom m s 0.00 0.07 0.00 0.07 +démène démener ver 2.65 3.72 1.27 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démènent démener ver 2.65 3.72 0.11 0.20 ind:pre:3p; +démèneras démener ver 2.65 3.72 0.10 0.00 ind:fut:2s; +démènes démener ver 2.65 3.72 0.14 0.00 ind:pre:2s; +démêla démêler ver 1.41 5.20 0.00 0.07 ind:pas:3s; +démêlage démêlage nom m s 0.01 0.07 0.01 0.07 +démêlai démêler ver 1.41 5.20 0.00 0.20 ind:pas:1s; +démêlais démêler ver 1.41 5.20 0.00 0.14 ind:imp:1s; +démêlait démêler ver 1.41 5.20 0.00 0.27 ind:imp:3s; +démêlant démêlant nom m s 0.29 0.00 0.29 0.00 +démêle démêler ver 1.41 5.20 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démêlent démêler ver 1.41 5.20 0.01 0.07 ind:pre:3p; +démêler démêler ver 1.41 5.20 0.84 3.38 inf; +démêlerait démêler ver 1.41 5.20 0.00 0.07 cnd:pre:3s; +démêlions démêler ver 1.41 5.20 0.00 0.07 ind:imp:1p; +démêloir démêloir nom m s 0.00 0.07 0.00 0.07 +démultipliaient démultiplier ver 0.18 1.01 0.00 0.07 ind:imp:3p; +démultipliait démultiplier ver 0.18 1.01 0.01 0.07 ind:imp:3s; +démultipliant démultiplier ver 0.18 1.01 0.01 0.00 par:pre; +démultiplicateur démultiplicateur nom m s 0.00 0.07 0.00 0.07 +démultiplication démultiplication nom f s 0.00 0.07 0.00 0.07 +démultiplie démultiplier ver 0.18 1.01 0.01 0.07 ind:pre:3s; +démultiplient démultiplier ver 0.18 1.01 0.14 0.14 ind:pre:3p; +démultiplier démultiplier ver 0.18 1.01 0.00 0.14 inf; +démultiplié démultiplier ver m s 0.18 1.01 0.01 0.27 par:pas; +démultipliée démultiplier ver f s 0.18 1.01 0.00 0.14 par:pas; +démultipliées démultiplier ver f p 0.18 1.01 0.00 0.07 par:pas; +démultipliés démultiplier ver m p 0.18 1.01 0.00 0.07 par:pas; +démêlé démêler ver m s 1.41 5.20 0.37 0.34 par:pas; +démêlées démêler ver f p 1.41 5.20 0.00 0.07 par:pas; +démêlés démêlé nom m p 0.38 1.22 0.38 1.22 +déménage déménager ver 32.40 10.34 7.24 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déménagea déménager ver 32.40 10.34 0.16 0.07 ind:pas:3s; +déménageaient déménager ver 32.40 10.34 0.01 0.14 ind:imp:3p; +déménageais déménager ver 32.40 10.34 0.12 0.14 ind:imp:1s;ind:imp:2s; +déménageait déménager ver 32.40 10.34 0.38 0.20 ind:imp:3s; +déménageant déménager ver 32.40 10.34 0.10 0.14 par:pre; +déménagement déménagement nom m s 2.98 6.69 2.66 5.27 +déménagements déménagement nom m p 2.98 6.69 0.32 1.42 +déménagent déménager ver 32.40 10.34 0.89 0.20 ind:pre:3p; +déménageons déménager ver 32.40 10.34 0.28 0.00 imp:pre:1p;ind:pre:1p; +déménager déménager ver 32.40 10.34 11.14 4.12 inf; +déménagera déménager ver 32.40 10.34 0.40 0.00 ind:fut:3s; +déménagerai déménager ver 32.40 10.34 0.13 0.00 ind:fut:1s; +déménageraient déménager ver 32.40 10.34 0.01 0.00 cnd:pre:3p; +déménagerais déménager ver 32.40 10.34 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +déménagerait déménager ver 32.40 10.34 0.15 0.14 cnd:pre:3s; +déménageras déménager ver 32.40 10.34 0.04 0.00 ind:fut:2s; +déménagerez déménager ver 32.40 10.34 0.14 0.00 ind:fut:2p; +déménages déménager ver 32.40 10.34 1.43 0.20 ind:pre:2s; +déménageur déménageur nom m s 1.67 3.18 0.63 1.28 +déménageurs déménageur nom m p 1.67 3.18 1.03 1.82 +déménageuse déménageur nom f s 1.67 3.18 0.00 0.07 +déménagez déménager ver 32.40 10.34 1.06 0.47 imp:pre:2p;ind:pre:2p; +déménagiez déménager ver 32.40 10.34 0.03 0.00 ind:imp:2p; +déménagions déménager ver 32.40 10.34 0.10 0.20 ind:imp:1p; +déménagèrent déménager ver 32.40 10.34 0.03 0.20 ind:pas:3p; +déménagé déménager ver m s 32.40 10.34 8.41 2.36 par:pas; +déménagée déménager ver f s 32.40 10.34 0.07 0.14 par:pas; +déménagés déménager ver m p 32.40 10.34 0.04 0.14 par:pas; +démuni démunir ver m s 0.51 1.76 0.27 0.54 par:pas; +démunie démuni adj f s 0.56 3.58 0.09 0.34 +démunies démuni adj f p 0.56 3.58 0.03 0.14 +démunir démunir ver 0.51 1.76 0.01 0.14 inf; +démunis démuni nom m p 0.42 1.28 0.38 0.34 +démunissant démunir ver 0.51 1.76 0.00 0.07 par:pre; +démurge démurger ver 0.00 0.41 0.00 0.20 ind:pre:3s; +démurger démurger ver 0.00 0.41 0.00 0.20 inf; +déméritait démériter ver 0.02 0.74 0.00 0.07 ind:imp:3s; +démérite démérite nom m s 0.04 0.20 0.04 0.14 +démériter démériter ver 0.02 0.74 0.00 0.07 inf; +démérites démérite nom m p 0.04 0.20 0.00 0.07 +démérité démériter ver m s 0.02 0.74 0.02 0.61 par:pas; +démuseler démuseler ver 0.00 0.07 0.00 0.07 inf; +démystificateur démystificateur nom m s 0.03 0.00 0.03 0.00 +démystification démystification nom f s 0.10 0.07 0.10 0.00 +démystifications démystification nom f p 0.10 0.07 0.00 0.07 +démystificatrice démystificateur adj f s 0.00 0.14 0.00 0.14 +démystifier démystifier ver 0.05 0.07 0.04 0.07 inf; +démystifié démystifier ver m s 0.05 0.07 0.01 0.00 par:pas; +démythifie démythifier ver 0.00 0.14 0.00 0.07 ind:pre:3s; +démythifié démythifier ver m s 0.00 0.14 0.00 0.07 par:pas; +dénanti dénantir ver m s 0.00 0.07 0.00 0.07 par:pas; +dénatalité dénatalité nom f s 0.01 0.00 0.01 0.00 +dénaturaient dénaturer ver 0.54 1.42 0.01 0.07 ind:imp:3p; +dénaturait dénaturer ver 0.54 1.42 0.02 0.27 ind:imp:3s; +dénaturation dénaturation nom f s 0.02 0.00 0.02 0.00 +dénature dénaturer ver 0.54 1.42 0.07 0.00 imp:pre:2s;ind:pre:3s; +dénaturent dénaturer ver 0.54 1.42 0.01 0.14 ind:pre:3p; +dénaturer dénaturer ver 0.54 1.42 0.14 0.54 inf; +dénaturé dénaturer ver m s 0.54 1.42 0.26 0.14 par:pas; +dénaturée dénaturé adj f s 0.44 0.88 0.21 0.27 +dénaturées dénaturé adj f p 0.44 0.88 0.04 0.20 +dénaturés dénaturer ver m p 0.54 1.42 0.00 0.07 par:pas; +dénazification dénazification nom f s 0.03 0.00 0.03 0.00 +dénazifier dénazifier ver 0.01 0.00 0.01 0.00 inf; +dundee dundee nom m s 0.00 0.07 0.00 0.07 +dune dune nom f s 3.96 12.84 1.55 3.45 +déneigement déneigement nom m s 0.01 0.00 0.01 0.00 +déneiger déneiger ver 0.09 0.00 0.08 0.00 inf; +déneigé déneiger ver m s 0.09 0.00 0.01 0.00 par:pas; +dénervation dénervation nom f s 0.01 0.00 0.01 0.00 +dénervé dénerver ver m s 0.00 0.07 0.00 0.07 par:pas; +dunes dune nom f p 3.96 12.84 2.41 9.39 +dunette dunette nom f s 0.07 0.68 0.07 0.61 +dunettes dunette nom f p 0.07 0.68 0.00 0.07 +déni déni nom m s 0.84 0.41 0.78 0.27 +dénia dénier ver 0.64 1.22 0.00 0.07 ind:pas:3s; +déniaient dénier ver 0.64 1.22 0.00 0.07 ind:imp:3p; +déniaisa déniaiser ver 0.04 0.41 0.00 0.07 ind:pas:3s; +déniaisas déniaiser ver 0.04 0.41 0.00 0.07 ind:pas:2s; +déniaisement déniaisement nom m s 0.00 0.14 0.00 0.14 +déniaiser déniaiser ver 0.04 0.41 0.04 0.00 inf; +déniaises déniaiser ver 0.04 0.41 0.00 0.07 ind:pre:2s; +déniaisé déniaiser ver m s 0.04 0.41 0.01 0.20 par:pas; +déniait dénier ver 0.64 1.22 0.00 0.27 ind:imp:3s; +déniant dénier ver 0.64 1.22 0.02 0.20 par:pre; +dénicha dénicher ver 5.07 8.78 0.02 0.41 ind:pas:3s; +dénichai dénicher ver 5.07 8.78 0.00 0.07 ind:pas:1s; +dénichaient dénicher ver 5.07 8.78 0.00 0.07 ind:imp:3p; +dénichais dénicher ver 5.07 8.78 0.14 0.20 ind:imp:1s;ind:imp:2s; +dénichait dénicher ver 5.07 8.78 0.04 0.20 ind:imp:3s; +dénichant dénicher ver 5.07 8.78 0.01 0.00 par:pre; +déniche dénicher ver 5.07 8.78 0.52 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénichent dénicher ver 5.07 8.78 0.04 0.20 ind:pre:3p; +dénicher dénicher ver 5.07 8.78 1.91 3.85 inf; +dénichera dénicher ver 5.07 8.78 0.17 0.07 ind:fut:3s; +dénicherait dénicher ver 5.07 8.78 0.01 0.07 cnd:pre:3s; +dénicheras dénicher ver 5.07 8.78 0.01 0.07 ind:fut:2s; +dénicheur dénicheur nom m s 0.50 0.34 0.44 0.14 +dénicheurs dénicheur nom m p 0.50 0.34 0.05 0.14 +dénicheuse dénicheur nom f s 0.50 0.34 0.01 0.07 +dénichez dénicher ver 5.07 8.78 0.41 0.00 imp:pre:2p;ind:pre:2p; +dénichions dénicher ver 5.07 8.78 0.00 0.07 ind:imp:1p; +déniché dénicher ver m s 5.07 8.78 1.47 2.43 par:pas; +dénichée dénicher ver f s 5.07 8.78 0.23 0.41 par:pas; +dénichées dénicher ver f p 5.07 8.78 0.01 0.14 par:pas; +dénichés dénicher ver m p 5.07 8.78 0.08 0.34 par:pas; +dénie dénier ver 0.64 1.22 0.32 0.20 ind:pre:1s;ind:pre:3s; +dénier dénier ver 0.64 1.22 0.10 0.34 inf; +dénierai dénier ver 0.64 1.22 0.01 0.00 ind:fut:1s; +dénies dénier ver 0.64 1.22 0.02 0.00 ind:pre:2s; +dénigrais dénigrer ver 1.51 1.08 0.14 0.00 ind:imp:1s; +dénigrait dénigrer ver 1.51 1.08 0.00 0.20 ind:imp:3s; +dénigrant dénigrer ver 1.51 1.08 0.03 0.00 par:pre; +dénigrante dénigrant adj f s 0.01 0.07 0.00 0.07 +dénigre dénigrer ver 1.51 1.08 0.31 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénigrement dénigrement nom m s 0.29 0.54 0.28 0.47 +dénigrements dénigrement nom m p 0.29 0.54 0.01 0.07 +dénigrent dénigrer ver 1.51 1.08 0.04 0.07 ind:pre:3p; +dénigrer dénigrer ver 1.51 1.08 0.53 0.47 inf; +dénigres dénigrer ver 1.51 1.08 0.37 0.00 ind:pre:2s; +dénigreuses dénigreur nom f p 0.00 0.07 0.00 0.07 +dénigrez dénigrer ver 1.51 1.08 0.04 0.00 imp:pre:2p;ind:pre:2p; +dénigré dénigrer ver m s 1.51 1.08 0.04 0.20 par:pas; +dénigrées dénigrer ver f p 1.51 1.08 0.00 0.14 par:pas; +dénigrés dénigrer ver m p 1.51 1.08 0.01 0.00 par:pas; +dénions dénier ver 0.64 1.22 0.14 0.07 ind:pre:1p; +dénis déni nom m p 0.84 0.41 0.07 0.14 +dénié dénier ver m s 0.64 1.22 0.04 0.00 par:pas; +dénivellation dénivellation nom f s 0.02 1.22 0.02 0.74 +dénivellations dénivellation nom f p 0.02 1.22 0.00 0.47 +dénivelé dénivelé nom m s 0.03 0.00 0.01 0.00 +dénivelés dénivelé nom m p 0.03 0.00 0.02 0.00 +dunkerque dunkerque nom m s 0.00 0.14 0.00 0.14 +dénombra dénombrer ver 0.53 3.31 0.00 0.54 ind:pas:3s; +dénombrables dénombrable adj p 0.00 0.07 0.00 0.07 +dénombrait dénombrer ver 0.53 3.31 0.02 0.27 ind:imp:3s; +dénombrant dénombrer ver 0.53 3.31 0.00 0.20 par:pre; +dénombre dénombrer ver 0.53 3.31 0.18 0.47 ind:pre:1s;ind:pre:3s; +dénombrement dénombrement nom m s 0.00 0.47 0.00 0.41 +dénombrements dénombrement nom m p 0.00 0.47 0.00 0.07 +dénombrent dénombrer ver 0.53 3.31 0.00 0.07 ind:pre:3p; +dénombrer dénombrer ver 0.53 3.31 0.05 0.95 inf; +dénombrez dénombrer ver 0.53 3.31 0.01 0.00 ind:pre:2p; +dénombré dénombrer ver m s 0.53 3.31 0.26 0.61 par:pas; +dénombrés dénombrer ver m p 0.53 3.31 0.00 0.20 par:pas; +dénominateur dénominateur nom m s 0.15 0.47 0.15 0.47 +dénominatif dénominatif adj m s 0.01 0.00 0.01 0.00 +dénomination dénomination nom f s 0.09 1.15 0.07 0.61 +dénominations dénomination nom f p 0.09 1.15 0.02 0.54 +dénominer dénominer ver 0.00 0.07 0.00 0.07 inf; +dénommaient dénommer ver 0.25 0.95 0.00 0.14 ind:imp:3p; +dénommait dénommer ver 0.25 0.95 0.01 0.20 ind:imp:3s; +dénomment dénommer ver 0.25 0.95 0.00 0.07 ind:pre:3p; +dénommer dénommer ver 0.25 0.95 0.00 0.07 inf; +dénommez dénommer ver 0.25 0.95 0.01 0.00 ind:pre:2p; +dénommé dénommé nom m s 2.67 1.49 2.67 1.49 +dénommée dénommé adj f s 0.85 1.22 0.37 0.41 +dénommés dénommer ver m p 0.25 0.95 0.00 0.07 par:pas; +dénonce dénoncer ver 29.57 19.05 5.50 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénoncent dénoncer ver 29.57 19.05 0.70 0.20 ind:pre:3p; +dénoncer dénoncer ver 29.57 19.05 9.83 6.08 inf; +dénoncera dénoncer ver 29.57 19.05 0.92 0.27 ind:fut:3s; +dénoncerai dénoncer ver 29.57 19.05 1.21 0.14 ind:fut:1s; +dénonceraient dénoncer ver 29.57 19.05 0.14 0.20 cnd:pre:3p; +dénoncerais dénoncer ver 29.57 19.05 0.22 0.00 cnd:pre:1s; +dénoncerait dénoncer ver 29.57 19.05 0.34 0.20 cnd:pre:3s; +dénonceras dénoncer ver 29.57 19.05 0.04 0.00 ind:fut:2s; +dénoncerez dénoncer ver 29.57 19.05 0.28 0.00 ind:fut:2p; +dénonceriez dénoncer ver 29.57 19.05 0.03 0.00 cnd:pre:2p; +dénonceront dénoncer ver 29.57 19.05 0.12 0.20 ind:fut:3p; +dénonces dénoncer ver 29.57 19.05 0.88 0.14 ind:pre:2s; +dénoncez dénoncer ver 29.57 19.05 1.05 0.07 imp:pre:2p;ind:pre:2p; +dénonciateur dénonciateur nom m s 0.08 0.74 0.08 0.68 +dénonciation dénonciation nom f s 0.88 2.50 0.69 1.49 +dénonciations dénonciation nom f p 0.88 2.50 0.19 1.01 +dénonciatrice dénonciateur adj f s 0.02 0.00 0.02 0.00 +dénoncé dénoncer ver m s 29.57 19.05 5.78 3.24 par:pas; +dénoncée dénoncer ver f s 29.57 19.05 0.89 0.68 par:pas; +dénoncées dénoncer ver f p 29.57 19.05 0.07 0.27 par:pas; +dénoncés dénoncer ver m p 29.57 19.05 0.90 0.88 par:pas; +dénonça dénoncer ver 29.57 19.05 0.03 0.34 ind:pas:3s; +dénonçaient dénoncer ver 29.57 19.05 0.14 0.74 ind:imp:3p; +dénonçais dénoncer ver 29.57 19.05 0.03 0.07 ind:imp:1s; +dénonçait dénoncer ver 29.57 19.05 0.23 1.69 ind:imp:3s; +dénonçant dénoncer ver 29.57 19.05 0.25 1.08 par:pre; +dénonçons dénoncer ver 29.57 19.05 0.02 0.00 imp:pre:1p;ind:pre:1p; +dénonçât dénoncer ver 29.57 19.05 0.00 0.14 sub:imp:3s; +dénotaient dénoter ver 0.23 1.42 0.01 0.07 ind:imp:3p; +dénotait dénoter ver 0.23 1.42 0.00 0.54 ind:imp:3s; +dénotant dénoter ver 0.23 1.42 0.01 0.07 par:pre; +dénote dénoter ver 0.23 1.42 0.18 0.27 ind:pre:1s;ind:pre:3s; +dénotent dénoter ver 0.23 1.42 0.01 0.27 ind:pre:3p; +dénoter dénoter ver 0.23 1.42 0.00 0.07 inf; +dénoterait dénoter ver 0.23 1.42 0.00 0.07 cnd:pre:3s; +dénoté dénoter ver m s 0.23 1.42 0.02 0.07 par:pas; +dénoua dénouer ver 1.42 12.30 0.01 1.82 ind:pas:3s; +dénouaient dénouer ver 1.42 12.30 0.00 0.14 ind:imp:3p; +dénouait dénouer ver 1.42 12.30 0.00 0.74 ind:imp:3s; +dénouant dénouer ver 1.42 12.30 0.00 0.88 par:pre; +dénoue dénouer ver 1.42 12.30 0.46 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénouement dénouement nom m s 1.34 4.05 1.31 3.78 +dénouements dénouement nom m p 1.34 4.05 0.03 0.27 +dénouent dénouer ver 1.42 12.30 0.01 0.41 ind:pre:3p; +dénouer dénouer ver 1.42 12.30 0.62 1.96 inf; +dénouera dénouer ver 1.42 12.30 0.03 0.00 ind:fut:3s; +dénouerais dénouer ver 1.42 12.30 0.01 0.07 cnd:pre:1s; +dénouions dénouer ver 1.42 12.30 0.00 0.07 ind:imp:1p; +dénouât dénouer ver 1.42 12.30 0.00 0.07 sub:imp:3s; +dénouèrent dénouer ver 1.42 12.30 0.00 0.20 ind:pas:3p; +dénoué dénouer ver m s 1.42 12.30 0.11 1.01 par:pas; +dénouée dénouer ver f s 1.42 12.30 0.14 0.81 par:pas; +dénouées dénouer ver f p 1.42 12.30 0.00 0.34 par:pas; +dénoués dénouer ver m p 1.42 12.30 0.03 2.23 par:pas; +dénoyautait dénoyauter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +dénoyauter dénoyauter ver 0.00 0.20 0.00 0.14 inf; +dénoyauteur dénoyauteur nom m s 0.03 0.00 0.03 0.00 +dénuda dénuder ver 0.54 5.61 0.00 0.07 ind:pas:3s; +dénudaient dénuder ver 0.54 5.61 0.00 0.14 ind:imp:3p; +dénudait dénuder ver 0.54 5.61 0.00 0.81 ind:imp:3s; +dénudant dénuder ver 0.54 5.61 0.00 0.20 par:pre; +dénudation dénudation nom f s 0.18 0.00 0.18 0.00 +dénude dénuder ver 0.54 5.61 0.05 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénudent dénuder ver 0.54 5.61 0.01 0.27 ind:pre:3p; +dénuder dénuder ver 0.54 5.61 0.08 1.01 inf; +dénudera dénuder ver 0.54 5.61 0.00 0.07 ind:fut:3s; +dénuderait dénuder ver 0.54 5.61 0.00 0.07 cnd:pre:3s; +dénudèrent dénuder ver 0.54 5.61 0.00 0.20 ind:pas:3p; +dénudé dénudé adj m s 0.61 4.26 0.36 1.69 +dénudée dénudé adj f s 0.61 4.26 0.13 1.01 +dénudées dénudé adj f p 0.61 4.26 0.05 0.68 +dénudés dénudé adj m p 0.61 4.26 0.07 0.88 +dénuement dénuement nom m s 0.08 3.92 0.08 3.92 +dénégateurs dénégateur adj m p 0.00 0.07 0.00 0.07 +dénégation dénégation nom f s 0.56 2.50 0.48 1.76 +dénégations dénégation nom f p 0.56 2.50 0.08 0.74 +dénué dénuer ver m s 2.06 4.80 1.16 1.69 par:pas; +dénuée dénuer ver f s 2.06 4.80 0.44 1.42 par:pas; +dénuées dénuer ver f p 2.06 4.80 0.17 0.81 par:pas; +dénués dénuer ver m p 2.06 4.80 0.29 0.88 par:pas; +duo duo nom m s 2.58 2.50 2.49 2.09 +duodi duodi nom m s 0.00 0.07 0.00 0.07 +déodorant déodorant nom m s 1.00 0.54 0.85 0.41 +déodorants déodorant nom m p 1.00 0.54 0.15 0.14 +duodécimale duodécimal adj f s 0.00 0.07 0.00 0.07 +duodénal duodénal adj m s 0.03 0.00 0.01 0.00 +duodénale duodénal adj f s 0.03 0.00 0.01 0.00 +duodénum duodénum nom m s 0.17 0.27 0.17 0.27 +déontologie déontologie nom f s 0.37 0.41 0.37 0.41 +déontologique déontologique adj m s 0.07 0.00 0.03 0.00 +déontologiques déontologique adj p 0.07 0.00 0.03 0.00 +duopole duopole nom m s 0.01 0.00 0.01 0.00 +duos duo nom m p 2.58 2.50 0.09 0.41 +dépôt_vente dépôt_vente nom m s 0.03 0.00 0.03 0.00 +dépôt dépôt nom m s 13.20 11.96 11.90 8.58 +dépôts dépôt nom m p 13.20 11.96 1.30 3.38 +dépaillée dépailler ver f s 0.00 0.20 0.00 0.14 par:pas; +dépaillées dépailler ver f p 0.00 0.20 0.00 0.07 par:pas; +dupait duper ver 4.77 2.70 0.03 0.20 ind:imp:3s; +dépannage dépannage nom m s 1.31 1.08 1.17 1.01 +dépannages dépannage nom m p 1.31 1.08 0.14 0.07 +dépannaient dépanner ver 3.56 2.77 0.01 0.00 ind:imp:3p; +dépannait dépanner ver 3.56 2.77 0.01 0.07 ind:imp:3s; +dépanne dépanner ver 3.56 2.77 0.49 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépannent dépanner ver 3.56 2.77 0.01 0.00 ind:pre:3p; +dépanner dépanner ver 3.56 2.77 1.95 1.96 inf;; +dépannera dépanner ver 3.56 2.77 0.16 0.14 ind:fut:3s; +dépannerais dépanner ver 3.56 2.77 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +dépannerait dépanner ver 3.56 2.77 0.33 0.07 cnd:pre:3s; +dépanneriez dépanner ver 3.56 2.77 0.01 0.00 cnd:pre:2p; +dépanneront dépanner ver 3.56 2.77 0.01 0.00 ind:fut:3p; +dépanneur dépanneur nom m s 1.84 0.68 0.57 0.41 +dépanneurs dépanneur nom m p 1.84 0.68 0.13 0.00 +dépanneuse dépanneur nom f s 1.84 0.68 1.13 0.20 +dépanneuses dépanneuse nom f p 0.02 0.00 0.02 0.00 +dépannons dépanner ver 3.56 2.77 0.01 0.00 ind:pre:1p; +dépanné dépanner ver m s 3.56 2.77 0.47 0.00 par:pas; +dépannée dépanner ver f s 3.56 2.77 0.04 0.14 par:pas; +dépannés dépanner ver m p 3.56 2.77 0.03 0.14 par:pas; +dupant duper ver 4.77 2.70 0.04 0.07 par:pre; +dépaquetait dépaqueter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +déparaient déparer ver 0.13 1.42 0.00 0.14 ind:imp:3p; +déparait déparer ver 0.13 1.42 0.00 0.27 ind:imp:3s; +dépare déparer ver 0.13 1.42 0.11 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépareillaient dépareiller ver 0.10 0.68 0.00 0.07 ind:imp:3p; +dépareillait dépareiller ver 0.10 0.68 0.01 0.00 ind:imp:3s; +dépareiller dépareiller ver 0.10 0.68 0.03 0.00 inf; +dépareilleraient dépareiller ver 0.10 0.68 0.00 0.07 cnd:pre:3p; +dépareillé dépareillé adj m s 0.11 2.03 0.01 0.14 +dépareillée dépareillé adj f s 0.11 2.03 0.02 0.07 +dépareillées dépareillé adj f p 0.11 2.03 0.04 0.95 +dépareillés dépareillé adj m p 0.11 2.03 0.03 0.88 +déparer déparer ver 0.13 1.42 0.01 0.27 inf; +déparerait déparer ver 0.13 1.42 0.01 0.00 cnd:pre:3s; +déparié déparier ver m s 0.00 2.09 0.00 0.95 par:pas; +dépariée déparier ver f s 0.00 2.09 0.00 0.88 par:pas; +dépariées déparier ver f p 0.00 2.09 0.00 0.07 par:pas; +dépariés déparier ver m p 0.00 2.09 0.00 0.20 par:pas; +déparlait déparler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +déparler déparler ver 0.00 0.14 0.00 0.07 inf; +déparât déparer ver 0.13 1.42 0.00 0.07 sub:imp:3s; +départ départ nom m s 68.49 123.04 67.35 116.96 +départage départager ver 0.92 0.81 0.04 0.00 ind:pre:3s; +départageant départager ver 0.92 0.81 0.01 0.00 par:pre; +départager départager ver 0.92 0.81 0.85 0.61 inf; +départagera départager ver 0.92 0.81 0.01 0.07 ind:fut:3s; +départagions départager ver 0.92 0.81 0.00 0.07 ind:imp:1p; +départagé départager ver m s 0.92 0.81 0.00 0.07 par:pas; +départait départir ver 0.67 4.19 0.00 0.47 ind:imp:3s; +département département nom m s 15.53 12.36 14.70 8.04 +départemental départemental adj m s 0.13 2.03 0.02 0.74 +départementale départementale nom f s 0.26 1.42 0.26 1.15 +départementales départemental adj f p 0.13 2.03 0.00 0.34 +départementaux départemental adj m p 0.13 2.03 0.01 0.47 +départements département nom m p 15.53 12.36 0.83 4.32 +départent départir ver 0.67 4.19 0.00 0.07 ind:pre:3p; +départi départir ver m s 0.67 4.19 0.00 0.41 par:pas; +départie départir ver f s 0.67 4.19 0.00 0.07 par:pas; +départir départir ver 0.67 4.19 0.04 1.82 inf; +départira départir ver 0.67 4.19 0.00 0.07 ind:fut:3s; +départirent départir ver 0.67 4.19 0.00 0.14 ind:pas:3p; +départis départir ver m p 0.67 4.19 0.01 0.07 ind:pas:1s;par:pas; +départit départir ver 0.67 4.19 0.00 0.27 ind:pas:3s; +départs départ nom m p 68.49 123.04 1.14 6.08 +déparé déparer ver m s 0.13 1.42 0.00 0.20 par:pas; +dépassa dépasser ver 42.62 78.78 0.05 3.99 ind:pas:3s; +dépassai dépasser ver 42.62 78.78 0.00 0.20 ind:pas:1s; +dépassaient dépasser ver 42.62 78.78 0.17 5.95 ind:imp:3p; +dépassais dépasser ver 42.62 78.78 0.06 0.41 ind:imp:1s;ind:imp:2s; +dépassait dépasser ver 42.62 78.78 1.08 12.84 ind:imp:3s; +dépassant dépasser ver 42.62 78.78 0.47 4.86 par:pre; +dépasse dépasser ver 42.62 78.78 14.14 12.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépassement dépassement nom m s 0.55 0.61 0.49 0.41 +dépassements dépassement nom m p 0.55 0.61 0.06 0.20 +dépassent dépasser ver 42.62 78.78 3.12 5.74 ind:pre:3p; +dépasser dépasser ver 42.62 78.78 6.12 10.27 inf; +dépassera dépasser ver 42.62 78.78 0.19 0.61 ind:fut:3s; +dépasserai dépasser ver 42.62 78.78 0.01 0.07 ind:fut:1s; +dépasseraient dépasser ver 42.62 78.78 0.00 0.07 cnd:pre:3p; +dépasserais dépasser ver 42.62 78.78 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +dépasserait dépasser ver 42.62 78.78 0.41 0.54 cnd:pre:3s; +dépasseras dépasser ver 42.62 78.78 0.05 0.00 ind:fut:2s; +dépasserions dépasser ver 42.62 78.78 0.00 0.07 cnd:pre:1p; +dépasseront dépasser ver 42.62 78.78 0.20 0.14 ind:fut:3p; +dépasses dépasser ver 42.62 78.78 1.63 0.27 ind:pre:2s; +dépassez dépasser ver 42.62 78.78 1.39 0.27 imp:pre:2p;ind:pre:2p; +dépassiez dépasser ver 42.62 78.78 0.05 0.00 ind:imp:2p; +dépassionnons dépassionner ver 0.00 0.07 0.00 0.07 imp:pre:1p; +dépassions dépasser ver 42.62 78.78 0.11 0.54 ind:imp:1p; +dépassâmes dépasser ver 42.62 78.78 0.00 0.27 ind:pas:1p; +dépassons dépasser ver 42.62 78.78 0.19 0.54 imp:pre:1p;ind:pre:1p; +dépassât dépasser ver 42.62 78.78 0.00 0.41 sub:imp:3s; +dépassèrent dépasser ver 42.62 78.78 0.01 1.42 ind:pas:3p; +dépassé dépasser ver m s 42.62 78.78 10.90 12.09 par:pas; +dépassée dépasser ver f s 42.62 78.78 0.82 2.64 par:pas; +dépassées dépasser ver f p 42.62 78.78 0.39 0.47 par:pas; +dépassés dépasser ver m p 42.62 78.78 1.01 1.69 par:pas; +dépatouillait dépatouiller ver 0.05 0.41 0.00 0.07 ind:imp:3s; +dépatouille dépatouiller ver 0.05 0.41 0.00 0.14 ind:pre:1s; +dépatouiller dépatouiller ver 0.05 0.41 0.05 0.20 inf; +dépaver dépaver ver 0.00 0.07 0.00 0.07 inf; +dépaysaient dépayser ver 0.24 3.38 0.00 0.34 ind:imp:3p; +dépaysait dépayser ver 0.24 3.38 0.00 0.41 ind:imp:3s; +dépaysant dépaysant adj m s 0.16 0.34 0.15 0.07 +dépaysante dépaysant adj f s 0.16 0.34 0.00 0.20 +dépaysantes dépaysant adj f p 0.16 0.34 0.01 0.07 +dépayse dépayser ver 0.24 3.38 0.01 0.41 ind:pre:1s;ind:pre:3s; +dépaysement dépaysement nom m s 0.03 3.11 0.03 2.97 +dépaysements dépaysement nom m p 0.03 3.11 0.00 0.14 +dépayser dépayser ver 0.24 3.38 0.04 0.27 inf; +dépaysera dépayser ver 0.24 3.38 0.01 0.00 ind:fut:3s; +dépaysé dépayser ver m s 0.24 3.38 0.14 0.47 par:pas; +dépaysée dépayser ver f s 0.24 3.38 0.03 0.68 par:pas; +dépaysés dépayser ver m p 0.24 3.38 0.01 0.68 par:pas; +dupe dupe adj m s 2.71 8.51 2.37 7.36 +dépecer dépecer ver 1.18 2.57 0.47 0.68 inf; +dépeceur dépeceur nom m s 0.03 0.47 0.03 0.34 +dépeceurs dépeceur nom m p 0.03 0.47 0.00 0.14 +dépecez dépecer ver 1.18 2.57 0.02 0.00 imp:pre:2p;ind:pre:2p; +dépecèrent dépecer ver 1.18 2.57 0.00 0.14 ind:pas:3p; +dépecé dépecer ver m s 1.18 2.57 0.10 0.54 par:pas; +dépecée dépecer ver f s 1.18 2.57 0.02 0.00 par:pas; +dépecés dépecer ver m p 1.18 2.57 0.10 0.41 par:pas; +dépeignaient dépeindre ver 2.24 4.19 0.00 0.07 ind:imp:3p; +dépeignais dépeindre ver 2.24 4.19 0.00 0.07 ind:imp:1s; +dépeignait dépeindre ver 2.24 4.19 0.01 0.68 ind:imp:3s; +dépeignant dépeindre ver 2.24 4.19 0.20 0.00 par:pre; +dépeigne dépeigner ver 0.16 1.15 0.00 0.14 imp:pre:2s;ind:pre:3s; +dépeignent dépeindre ver 2.24 4.19 0.21 0.41 ind:pre:3p;ind:pre:3p;sub:pre:3p; +dépeignirent dépeindre ver 2.24 4.19 0.00 0.07 ind:pas:3p; +dépeignis dépeindre ver 2.24 4.19 0.00 0.07 ind:pas:1s; +dépeignit dépeindre ver 2.24 4.19 0.00 0.07 ind:pas:3s; +dépeigné dépeigner ver m s 0.16 1.15 0.14 0.47 par:pas; +dépeignée dépeigner ver f s 0.16 1.15 0.00 0.34 par:pas; +dépeignés dépeigner ver m p 0.16 1.15 0.00 0.20 par:pas; +dépeindre dépeindre ver 2.24 4.19 0.66 1.01 inf; +dépeins dépeindre ver 2.24 4.19 0.11 0.20 ind:pre:1s;ind:pre:2s; +dépeint dépeindre ver m s 2.24 4.19 0.79 1.15 ind:pre:3s;par:pas; +dépeinte dépeindre ver f s 2.24 4.19 0.04 0.27 par:pas; +dépeintes dépeint adj f p 0.26 0.41 0.11 0.07 +dépeints dépeindre ver m p 2.24 4.19 0.23 0.14 par:pas; +dépenaillement dépenaillement nom m s 0.00 0.14 0.00 0.07 +dépenaillements dépenaillement nom m p 0.00 0.14 0.00 0.07 +dépenaillé dépenaillé adj m s 0.06 1.22 0.05 0.41 +dépenaillée dépenaillé nom f s 0.04 0.61 0.01 0.14 +dépenaillées dépenaillé adj f p 0.06 1.22 0.01 0.07 +dépenaillés dépenaillé adj m p 0.06 1.22 0.00 0.54 +dépend dépendre ver 60.33 36.49 48.30 15.20 ind:pre:3s; +dépendît dépendre ver 60.33 36.49 0.00 0.34 sub:imp:3s; +dépendaient dépendre ver 60.33 36.49 0.13 1.76 ind:imp:3p; +dépendais dépendre ver 60.33 36.49 0.04 0.34 ind:imp:1s;ind:imp:2s; +dépendait dépendre ver 60.33 36.49 1.87 7.64 ind:imp:3s; +dépendance dépendance nom f s 2.42 5.34 2.03 3.51 +dépendances dépendance nom f p 2.42 5.34 0.39 1.82 +dépendant dépendant adj m s 1.81 0.95 0.56 0.34 +dépendante dépendant adj f s 1.81 0.95 0.68 0.27 +dépendantes dépendant adj f p 1.81 0.95 0.13 0.00 +dépendants dépendant adj m p 1.81 0.95 0.44 0.34 +dépende dépendre ver 60.33 36.49 0.17 0.27 sub:pre:1s;sub:pre:3s; +dépendent dépendre ver 60.33 36.49 2.64 2.09 ind:pre:3p; +dépendeur dépendeur nom m s 0.00 0.34 0.00 0.27 +dépendeurs dépendeur nom m p 0.00 0.34 0.00 0.07 +dépendez dépendre ver 60.33 36.49 0.25 0.00 ind:pre:2p; +dépendions dépendre ver 60.33 36.49 0.01 0.07 ind:imp:1p; +dépendit dépendre ver 60.33 36.49 0.00 0.07 ind:pas:3s; +dépendons dépendre ver 60.33 36.49 0.43 0.20 imp:pre:1p;ind:pre:1p; +dépendra dépendre ver 60.33 36.49 2.05 1.22 ind:fut:3s; +dépendraient dépendre ver 60.33 36.49 0.01 0.34 cnd:pre:3p; +dépendrait dépendre ver 60.33 36.49 0.12 1.42 cnd:pre:3s; +dépendre dépendre ver 60.33 36.49 2.46 2.84 inf; +dépendrez dépendre ver 60.33 36.49 0.01 0.14 ind:fut:2p; +dépendront dépendre ver 60.33 36.49 0.07 0.61 ind:fut:3p; +dépends dépendre ver 60.33 36.49 1.18 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dépendu dépendre ver m s 60.33 36.49 0.12 0.68 par:pas; +dépens dépens nom m p 3.19 3.99 3.19 3.99 +dépensa dépenser ver 31.10 15.41 0.04 0.74 ind:pas:3s; +dépensai dépenser ver 31.10 15.41 0.00 0.14 ind:pas:1s; +dépensaient dépenser ver 31.10 15.41 0.03 0.41 ind:imp:3p; +dépensais dépenser ver 31.10 15.41 0.31 0.20 ind:imp:1s;ind:imp:2s; +dépensait dépenser ver 31.10 15.41 0.60 2.09 ind:imp:3s; +dépensant dépenser ver 31.10 15.41 0.23 0.54 par:pre; +dépense dépenser ver 31.10 15.41 4.25 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépensent dépenser ver 31.10 15.41 1.30 0.27 ind:pre:3p; +dépenser dépenser ver 31.10 15.41 8.77 5.14 inf; +dépensera dépenser ver 31.10 15.41 0.21 0.00 ind:fut:3s; +dépenserai dépenser ver 31.10 15.41 0.17 0.07 ind:fut:1s; +dépenseraient dépenser ver 31.10 15.41 0.01 0.00 cnd:pre:3p; +dépenserais dépenser ver 31.10 15.41 0.60 0.07 cnd:pre:1s;cnd:pre:2s; +dépenserait dépenser ver 31.10 15.41 0.04 0.20 cnd:pre:3s; +dépenseras dépenser ver 31.10 15.41 0.12 0.00 ind:fut:2s; +dépenserez dépenser ver 31.10 15.41 0.15 0.07 ind:fut:2p; +dépenserions dépenser ver 31.10 15.41 0.02 0.07 cnd:pre:1p; +dépenseront dépenser ver 31.10 15.41 0.06 0.00 ind:fut:3p; +dépenses dépense nom f p 7.11 8.72 5.29 5.07 +dépensez dépenser ver 31.10 15.41 1.29 0.07 imp:pre:2p;ind:pre:2p; +dépensier dépensier adj m s 0.17 0.68 0.10 0.27 +dépensiers dépensier adj m p 0.17 0.68 0.02 0.07 +dépensiez dépenser ver 31.10 15.41 0.04 0.00 ind:imp:2p; +dépensière dépensier adj f s 0.17 0.68 0.05 0.34 +dépensons dépenser ver 31.10 15.41 0.12 0.07 imp:pre:1p;ind:pre:1p; +dépensé dépenser ver m s 31.10 15.41 10.64 2.36 par:pas; +dépensée dépenser ver f s 31.10 15.41 0.11 0.47 par:pas; +dépensées dépenser ver f p 31.10 15.41 0.06 0.41 par:pas; +dépensés dépenser ver m p 31.10 15.41 0.56 0.27 par:pas; +dupent duper ver 4.77 2.70 0.06 0.00 ind:pre:3p; +duper duper ver 4.77 2.70 1.96 1.35 inf; +dupera duper ver 4.77 2.70 0.04 0.00 ind:fut:3s; +duperas duper ver 4.77 2.70 0.03 0.00 ind:fut:2s; +déperdition déperdition nom f s 0.05 0.34 0.04 0.34 +déperditions déperdition nom f p 0.05 0.34 0.01 0.00 +duperie duperie nom f s 0.43 0.88 0.26 0.81 +duperies duperie nom f p 0.43 0.88 0.17 0.07 +dépersonnalisation dépersonnalisation nom f s 0.02 0.00 0.02 0.00 +dépersonnaliser dépersonnaliser ver 0.03 0.14 0.01 0.14 inf; +dépersonnalisé dépersonnaliser ver m s 0.03 0.14 0.02 0.00 par:pas; +dépersonnalisée dépersonnalisé adj f s 0.00 0.07 0.00 0.07 +dupes dupe nom f p 1.01 1.28 0.66 0.41 +dépeçage dépeçage nom m s 0.01 0.34 0.01 0.34 +dépeçaient dépecer ver 1.18 2.57 0.00 0.14 ind:imp:3p; +dépeçait dépecer ver 1.18 2.57 0.03 0.00 ind:imp:3s; +dépeçant dépecer ver 1.18 2.57 0.00 0.14 par:pre; +dépeuplait dépeupler ver 0.41 1.28 0.00 0.07 ind:imp:3s; +dépeuple dépeupler ver 0.41 1.28 0.14 0.20 ind:pre:3s; +dépeuplent dépeupler ver 0.41 1.28 0.00 0.07 ind:pre:3p; +dépeupler dépeupler ver 0.41 1.28 0.02 0.27 inf; +dépeuplera dépeupler ver 0.41 1.28 0.00 0.07 ind:fut:3s; +dépeuplé dépeupler ver m s 0.41 1.28 0.14 0.34 par:pas; +dépeuplée dépeupler ver f s 0.41 1.28 0.10 0.14 par:pas; +dépeuplées dépeuplé adj f p 0.00 0.61 0.00 0.07 +dépeuplés dépeupler ver m p 0.41 1.28 0.01 0.14 par:pas; +dupeur dupeur nom m s 0.01 0.00 0.01 0.00 +dupez duper ver 4.77 2.70 0.14 0.00 imp:pre:2p;ind:pre:2p; +déphasage déphasage nom m s 0.16 0.00 0.16 0.00 +déphase déphaser ver 0.20 0.20 0.01 0.00 ind:pre:3s; +déphaseurs déphaseur nom m p 0.01 0.00 0.01 0.00 +déphasé déphasé adj m s 0.28 0.20 0.25 0.00 +déphasée déphaser ver f s 0.20 0.20 0.05 0.00 par:pas; +déphasés déphasé adj m p 0.28 0.20 0.02 0.07 +dépiautaient dépiauter ver 0.10 2.03 0.00 0.07 ind:imp:3p; +dépiautait dépiauter ver 0.10 2.03 0.00 0.27 ind:imp:3s; +dépiautant dépiauter ver 0.10 2.03 0.00 0.07 par:pre; +dépiaute dépiauter ver 0.10 2.03 0.01 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépiautent dépiauter ver 0.10 2.03 0.01 0.00 ind:pre:3p; +dépiauter dépiauter ver 0.10 2.03 0.06 0.74 inf; +dépiautera dépiauter ver 0.10 2.03 0.01 0.00 ind:fut:3s; +dépiautèrent dépiauter ver 0.10 2.03 0.00 0.07 ind:pas:3p; +dépiauté dépiauter ver m s 0.10 2.03 0.00 0.34 par:pas; +dépiautés dépiauter ver m p 0.10 2.03 0.01 0.14 par:pas; +dépieute dépieuter ver 0.01 0.07 0.01 0.07 ind:pre:1s;ind:pre:3s; +dépigmentation dépigmentation nom f s 0.01 0.07 0.01 0.07 +dépigmenté dépigmenter ver m s 0.01 0.14 0.00 0.07 par:pas; +dépigmentés dépigmenter ver m p 0.01 0.14 0.01 0.07 par:pas; +dépilatoire dépilatoire adj s 0.04 0.07 0.04 0.07 +dépiler dépiler ver 0.00 0.07 0.00 0.07 inf; +dépiquage dépiquage nom m s 0.00 0.20 0.00 0.20 +dépique dépiquer ver 0.00 0.27 0.00 0.14 ind:pre:3s; +dépiquer dépiquer ver 0.00 0.27 0.00 0.07 inf; +dépiqués dépiquer ver m p 0.00 0.27 0.00 0.07 par:pas; +dépistage dépistage nom m s 0.76 0.47 0.75 0.34 +dépistages dépistage nom m p 0.76 0.47 0.01 0.14 +dépistait dépister ver 0.20 1.15 0.00 0.20 ind:imp:3s; +dépistant dépister ver 0.20 1.15 0.00 0.07 par:pre; +dépiste dépister ver 0.20 1.15 0.02 0.20 ind:pre:3s; +dépister dépister ver 0.20 1.15 0.14 0.54 inf; +dépisté dépister ver m s 0.20 1.15 0.04 0.14 par:pas; +dépit dépit nom m s 5.82 44.12 5.82 44.12 +dépita dépiter ver 0.12 1.15 0.00 0.20 ind:pas:3s; +dépitait dépiter ver 0.12 1.15 0.00 0.14 ind:imp:3s; +dépiter dépiter ver 0.12 1.15 0.10 0.00 inf; +dépité dépité adj m s 0.05 1.62 0.05 0.95 +dépitée dépiter ver f s 0.12 1.15 0.01 0.41 par:pas; +dépités dépité adj m p 0.05 1.62 0.00 0.20 +déplût déplaire ver 12.23 20.61 0.00 0.14 sub:imp:3s; +déplaît déplaire ver 12.23 20.61 5.08 4.32 ind:pre:3s; +déplace déplacer ver 38.63 46.82 7.79 6.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déplacement déplacement nom m s 5.03 11.49 3.38 6.15 +déplacements déplacement nom m p 5.03 11.49 1.64 5.34 +déplacent déplacer ver 38.63 46.82 2.30 2.30 ind:pre:3p; +déplacer déplacer ver 38.63 46.82 13.40 11.08 inf;; +déplacera déplacer ver 38.63 46.82 0.22 0.20 ind:fut:3s; +déplacerai déplacer ver 38.63 46.82 0.39 0.00 ind:fut:1s; +déplaceraient déplacer ver 38.63 46.82 0.00 0.27 cnd:pre:3p; +déplacerait déplacer ver 38.63 46.82 0.03 0.20 cnd:pre:3s; +déplaceras déplacer ver 38.63 46.82 0.02 0.00 ind:fut:2s; +déplacerez déplacer ver 38.63 46.82 0.03 0.00 ind:fut:2p; +déplacerons déplacer ver 38.63 46.82 0.13 0.07 ind:fut:1p; +déplaceront déplacer ver 38.63 46.82 0.03 0.00 ind:fut:3p; +déplaces déplacer ver 38.63 46.82 0.68 0.07 ind:pre:2s; +déplacez déplacer ver 38.63 46.82 1.69 0.07 imp:pre:2p;ind:pre:2p; +déplaciez déplacer ver 38.63 46.82 0.07 0.07 ind:imp:2p; +déplacions déplacer ver 38.63 46.82 0.00 0.20 ind:imp:1p; +déplacèrent déplacer ver 38.63 46.82 0.01 0.61 ind:pas:3p; +déplacé déplacer ver m s 38.63 46.82 5.99 3.99 par:pas; +déplacée déplacer ver f s 38.63 46.82 1.46 1.76 par:pas; +déplacées déplacé adj f p 2.87 3.92 0.40 0.54 +déplacés déplacer ver m p 38.63 46.82 1.40 0.88 par:pas; +déplaira déplaire ver 12.23 20.61 0.27 0.07 ind:fut:3s; +déplairaient déplaire ver 12.23 20.61 0.03 0.00 cnd:pre:3p; +déplairait déplaire ver 12.23 20.61 0.79 0.68 cnd:pre:3s; +déplaire déplaire ver 12.23 20.61 1.52 4.26 inf; +déplairont déplaire ver 12.23 20.61 0.14 0.00 ind:fut:3p; +déplais déplaire ver 12.23 20.61 0.74 0.14 ind:pre:1s;ind:pre:2s; +déplaisaient déplaire ver 12.23 20.61 0.10 0.68 ind:imp:3p; +déplaisais déplaire ver 12.23 20.61 0.02 0.20 ind:imp:1s; +déplaisait déplaire ver 12.23 20.61 0.34 4.86 ind:imp:3s; +déplaisant déplaisant adj m s 3.34 5.47 1.81 2.50 +déplaisante déplaisant adj f s 3.34 5.47 1.00 2.09 +déplaisantes déplaisant adj f p 3.34 5.47 0.37 0.54 +déplaisants déplaisant adj m p 3.34 5.47 0.16 0.34 +déplaise déplaire ver 12.23 20.61 0.88 0.68 sub:pre:1s;sub:pre:3s; +déplaisent déplaire ver 12.23 20.61 0.86 0.41 ind:pre:3p; +déplaisez déplaire ver 12.23 20.61 0.05 0.00 ind:pre:2p; +déplaisiez déplaire ver 12.23 20.61 0.10 0.07 ind:imp:2p; +déplaisir déplaisir nom m s 1.29 1.96 1.03 1.82 +déplaisirs déplaisir nom m p 1.29 1.96 0.27 0.14 +déplanque déplanquer ver 0.00 0.14 0.00 0.14 ind:pre:3s; +déplantoir déplantoir nom m s 0.04 0.00 0.04 0.00 +déplantèrent déplanter ver 0.00 0.07 0.00 0.07 ind:pas:3p; +déplaça déplacer ver 38.63 46.82 0.14 3.04 ind:pas:3s; +déplaçai déplacer ver 38.63 46.82 0.00 0.41 ind:pas:1s; +déplaçaient déplacer ver 38.63 46.82 0.11 2.64 ind:imp:3p; +déplaçais déplacer ver 38.63 46.82 0.30 0.27 ind:imp:1s;ind:imp:2s; +déplaçait déplacer ver 38.63 46.82 1.01 7.23 ind:imp:3s; +déplaçant déplacer ver 38.63 46.82 0.77 4.59 par:pre; +déplaçons déplacer ver 38.63 46.82 0.44 0.20 imp:pre:1p;ind:pre:1p; +déplaçât déplacer ver 38.63 46.82 0.00 0.14 sub:imp:3s; +duplex duplex nom m 0.41 1.35 0.41 1.35 +déplia déplier ver 0.89 19.46 0.00 4.12 ind:pas:3s; +dépliable dépliable adj m s 0.00 0.07 0.00 0.07 +dépliai déplier ver 0.89 19.46 0.00 0.68 ind:pas:1s; +dépliaient déplier ver 0.89 19.46 0.00 0.54 ind:imp:3p; +dépliais déplier ver 0.89 19.46 0.00 0.14 ind:imp:1s; +dépliait déplier ver 0.89 19.46 0.20 2.09 ind:imp:3s; +dépliant dépliant nom m s 0.47 1.69 0.36 1.15 +dépliante dépliant adj f s 0.04 0.34 0.02 0.14 +dépliants dépliant nom m p 0.47 1.69 0.11 0.54 +duplicata duplicata nom m 0.08 0.41 0.08 0.41 +duplicate duplicate nom m s 0.03 0.00 0.03 0.00 +duplicateur duplicateur nom m s 0.23 0.14 0.03 0.14 +duplicateurs duplicateur nom m p 0.23 0.14 0.21 0.00 +duplication duplication nom f s 0.19 0.47 0.19 0.47 +duplice duplice nom f s 0.01 0.14 0.01 0.14 +duplicité duplicité nom f s 0.30 1.28 0.30 1.28 +déplie déplier ver 0.89 19.46 0.27 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépliement dépliement nom m s 0.00 0.14 0.00 0.14 +déplient déplier ver 0.89 19.46 0.00 0.61 ind:pre:3p; +déplier déplier ver 0.89 19.46 0.16 2.43 inf; +déplies déplier ver 0.89 19.46 0.01 0.07 ind:pre:2s; +dépliâmes déplier ver 0.89 19.46 0.00 0.14 ind:pas:1p; +déplions déplier ver 0.89 19.46 0.00 0.14 imp:pre:1p;ind:pre:1p; +dupliquer dupliquer ver 0.31 0.00 0.13 0.00 inf; +dupliqué dupliquer ver m s 0.31 0.00 0.13 0.00 par:pas; +dupliqués dupliquer ver m p 0.31 0.00 0.05 0.00 par:pas; +déplissa déplisser ver 0.01 0.68 0.00 0.07 ind:pas:3s; +déplissaient déplisser ver 0.01 0.68 0.00 0.14 ind:imp:3p; +déplissait déplisser ver 0.01 0.68 0.00 0.27 ind:imp:3s; +déplisse déplisser ver 0.01 0.68 0.00 0.07 ind:pre:3s; +déplissent déplisser ver 0.01 0.68 0.00 0.07 ind:pre:3p; +déplisser déplisser ver 0.01 0.68 0.01 0.07 inf; +déplièrent déplier ver 0.89 19.46 0.00 0.27 ind:pas:3p; +déplié déplier ver m s 0.89 19.46 0.06 3.31 par:pas; +dépliée déplier ver f s 0.89 19.46 0.00 1.08 par:pas; +dépliées déplier ver f p 0.89 19.46 0.03 0.34 par:pas; +dépliés déplier ver m p 0.89 19.46 0.01 0.47 par:pas; +déploie déployer ver 7.09 30.27 0.94 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déploiement déploiement nom m s 1.25 3.04 1.20 2.43 +déploiements déploiement nom m p 1.25 3.04 0.05 0.61 +déploient déployer ver 7.09 30.27 0.34 1.42 ind:pre:3p; +déploiera déployer ver 7.09 30.27 0.04 0.14 ind:fut:3s; +déploierai déployer ver 7.09 30.27 0.00 0.14 ind:fut:1s; +déploieraient déployer ver 7.09 30.27 0.00 0.07 cnd:pre:3p; +déploierait déployer ver 7.09 30.27 0.00 0.07 cnd:pre:3s; +déploieras déployer ver 7.09 30.27 0.00 0.07 ind:fut:2s; +déploierez déployer ver 7.09 30.27 0.03 0.00 ind:fut:2p; +déploierons déployer ver 7.09 30.27 0.02 0.14 ind:fut:1p; +déploieront déployer ver 7.09 30.27 0.02 0.14 ind:fut:3p; +déploies déployer ver 7.09 30.27 0.05 0.00 ind:pre:2s; +déplombé déplomber ver m s 0.00 0.07 0.00 0.07 par:pas; +déplora déplorer ver 2.53 8.04 0.01 0.41 ind:pas:3s; +déplorable déplorable adj s 1.52 5.14 1.29 3.99 +déplorablement déplorablement adv 0.01 0.41 0.01 0.41 +déplorables déplorable adj p 1.52 5.14 0.23 1.15 +déplorai déplorer ver 2.53 8.04 0.00 0.20 ind:pas:1s; +déploraient déplorer ver 2.53 8.04 0.00 0.20 ind:imp:3p; +déplorais déplorer ver 2.53 8.04 0.01 0.34 ind:imp:1s; +déplorait déplorer ver 2.53 8.04 0.01 1.35 ind:imp:3s; +déplorant déplorer ver 2.53 8.04 0.01 0.74 par:pre; +déploration déploration nom f s 0.00 0.20 0.00 0.20 +déplore déplorer ver 2.53 8.04 1.61 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déplorent déplorer ver 2.53 8.04 0.27 0.27 ind:pre:3p; +déplorer déplorer ver 2.53 8.04 0.17 1.49 inf; +déplorerais déplorer ver 2.53 8.04 0.02 0.27 cnd:pre:1s; +déplorerait déplorer ver 2.53 8.04 0.01 0.07 cnd:pre:3s; +déplorerons déplorer ver 2.53 8.04 0.00 0.07 ind:fut:1p; +déplorez déplorer ver 2.53 8.04 0.01 0.14 imp:pre:2p;ind:pre:2p; +déplorions déplorer ver 2.53 8.04 0.00 0.07 ind:imp:1p; +déplorons déplorer ver 2.53 8.04 0.27 0.07 ind:pre:1p; +déplorèrent déplorer ver 2.53 8.04 0.00 0.07 ind:pas:3p; +déploré déplorer ver m s 2.53 8.04 0.13 0.47 par:pas; +déplorée déplorer ver f s 2.53 8.04 0.00 0.07 par:pas; +déplorés déplorer ver m p 2.53 8.04 0.00 0.07 par:pas; +déplâtré déplâtrer ver m s 0.01 0.07 0.01 0.07 par:pas; +déploya déployer ver 7.09 30.27 0.03 1.69 ind:pas:3s; +déployaient déployer ver 7.09 30.27 0.01 2.03 ind:imp:3p; +déployais déployer ver 7.09 30.27 0.00 0.07 ind:imp:1s; +déployait déployer ver 7.09 30.27 0.13 3.78 ind:imp:3s; +déployant déployer ver 7.09 30.27 0.20 1.69 par:pre; +déployasse déployer ver 7.09 30.27 0.00 0.07 sub:imp:1s; +déployer déployer ver 7.09 30.27 1.81 6.01 inf; +déployez déployer ver 7.09 30.27 1.67 0.07 imp:pre:2p;ind:pre:2p; +déployions déployer ver 7.09 30.27 0.00 0.14 ind:imp:1p; +déployons déployer ver 7.09 30.27 0.08 0.14 imp:pre:1p;ind:pre:1p; +déployât déployer ver 7.09 30.27 0.00 0.07 sub:imp:3s; +déployèrent déployer ver 7.09 30.27 0.01 0.27 ind:pas:3p; +déployé déployer ver m s 7.09 30.27 0.94 2.77 par:pas; +déployée déployer ver f s 7.09 30.27 0.24 2.03 par:pas; +déployées déployé adj f p 0.80 5.41 0.32 1.49 +déployés déployer ver m p 7.09 30.27 0.33 1.55 par:pas; +déplu déplaire ver m s 12.23 20.61 1.23 2.50 par:pas; +déplumait déplumer ver 0.17 0.47 0.00 0.07 ind:imp:3s; +déplume déplumer ver 0.17 0.47 0.11 0.07 ind:pre:1s;ind:pre:3s; +déplumer déplumer ver 0.17 0.47 0.02 0.07 inf; +déplumé déplumé adj m s 0.33 1.55 0.16 1.15 +déplumée déplumé adj f s 0.33 1.55 0.16 0.00 +déplumés déplumé adj m p 0.33 1.55 0.02 0.41 +déplurent déplaire ver 12.23 20.61 0.00 0.20 ind:pas:3p; +déplut déplaire ver 12.23 20.61 0.01 1.01 ind:pas:3s; +dépoile dépoiler ver 0.06 0.34 0.03 0.00 ind:pre:1s; +dépoiler dépoiler ver 0.06 0.34 0.03 0.00 inf; +dépoilé dépoiler ver m s 0.06 0.34 0.00 0.14 par:pas; +dépoilée dépoiler ver f s 0.06 0.34 0.00 0.07 par:pas; +dépoilées dépoiler ver f p 0.06 0.34 0.00 0.14 par:pas; +dépointées dépointer ver f p 0.00 0.07 0.00 0.07 par:pas; +dépoitraillé dépoitraillé adj m s 0.02 0.68 0.02 0.27 +dépoitraillée dépoitraillé adj f s 0.02 0.68 0.00 0.20 +dépoitraillées dépoitraillé adj f p 0.02 0.68 0.00 0.07 +dépoitraillés dépoitraillé adj m p 0.02 0.68 0.00 0.14 +dépoli dépoli adj m s 0.01 2.30 0.01 1.15 +dépolie dépoli adj f s 0.01 2.30 0.00 0.34 +dépolies dépoli adj f p 0.01 2.30 0.00 0.47 +dépolis dépoli adj m p 0.01 2.30 0.00 0.34 +dépolissait dépolir ver 0.01 0.95 0.00 0.07 ind:imp:3s; +dépolit dépolir ver 0.01 0.95 0.01 0.07 ind:pre:3s; +dépolitisant dépolitiser ver 0.10 0.07 0.00 0.07 par:pre; +dépolitisé dépolitiser ver m s 0.10 0.07 0.10 0.00 par:pas; +dépolluer dépolluer ver 0.04 0.00 0.04 0.00 inf; +dépollution dépollution nom f s 0.03 0.00 0.03 0.00 +dupons duper ver 4.77 2.70 0.01 0.07 ind:pre:1p; +dépopulation dépopulation nom f s 0.00 0.07 0.00 0.07 +déport déport nom m s 0.00 0.14 0.00 0.14 +déporta déporter ver 2.75 4.26 0.00 0.20 ind:pas:3s; +déportaient déporter ver 2.75 4.26 0.01 0.07 ind:imp:3p; +déportais déporter ver 2.75 4.26 0.01 0.07 ind:imp:1s; +déportait déporter ver 2.75 4.26 0.00 0.14 ind:imp:3s; +déportant déporter ver 2.75 4.26 0.01 0.07 par:pre; +déportation déportation nom f s 1.58 2.23 1.52 2.03 +déportations déportation nom f p 1.58 2.23 0.06 0.20 +déporte déporter ver 2.75 4.26 0.36 0.14 ind:pre:1s;ind:pre:3s; +déportements déportement nom m p 0.27 0.07 0.27 0.07 +déporter déporter ver 2.75 4.26 0.95 0.61 inf; +déporteront déporter ver 2.75 4.26 0.02 0.00 ind:fut:3p; +déportez déporter ver 2.75 4.26 0.01 0.00 imp:pre:2p; +déporté déporter ver m s 2.75 4.26 0.91 1.49 par:pas; +déportée déporter ver f s 2.75 4.26 0.08 0.61 par:pas; +déportées déporter ver f p 2.75 4.26 0.01 0.07 par:pas; +déportés déporté nom m p 2.38 5.74 2.14 4.66 +déposa déposer ver 53.09 62.70 0.19 10.20 ind:pas:3s; +déposai déposer ver 53.09 62.70 0.14 1.08 ind:pas:1s; +déposaient déposer ver 53.09 62.70 0.01 1.42 ind:imp:3p; +déposais déposer ver 53.09 62.70 0.53 0.61 ind:imp:1s;ind:imp:2s; +déposait déposer ver 53.09 62.70 0.32 4.05 ind:imp:3s; +déposant déposer ver 53.09 62.70 0.33 1.55 par:pre; +dépose déposer ver 53.09 62.70 16.14 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déposent déposer ver 53.09 62.70 0.48 0.81 ind:pre:3p; +déposer déposer ver 53.09 62.70 15.03 13.24 ind:pre:2p;inf; +déposera déposer ver 53.09 62.70 0.44 0.68 ind:fut:3s; +déposerai déposer ver 53.09 62.70 0.60 0.14 ind:fut:1s; +déposeraient déposer ver 53.09 62.70 0.00 0.14 cnd:pre:3p; +déposerais déposer ver 53.09 62.70 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +déposerait déposer ver 53.09 62.70 0.06 0.34 cnd:pre:3s; +déposeras déposer ver 53.09 62.70 0.18 0.20 ind:fut:2s; +déposerez déposer ver 53.09 62.70 0.28 0.07 ind:fut:2p; +déposerions déposer ver 53.09 62.70 0.00 0.07 cnd:pre:1p; +déposerons déposer ver 53.09 62.70 0.05 0.07 ind:fut:1p; +déposeront déposer ver 53.09 62.70 0.32 0.14 ind:fut:3p; +déposes déposer ver 53.09 62.70 1.09 0.20 ind:pre:2s; +déposez déposer ver 53.09 62.70 4.06 0.54 imp:pre:2p;ind:pre:2p; +déposiez déposer ver 53.09 62.70 0.02 0.00 ind:imp:2p; +déposions déposer ver 53.09 62.70 0.04 0.14 ind:imp:1p; +dépositaire dépositaire nom s 0.36 2.36 0.23 1.96 +dépositaires dépositaire nom p 0.36 2.36 0.14 0.41 +déposition déposition nom f s 11.25 2.43 9.66 1.82 +dépositions déposition nom f p 11.25 2.43 1.59 0.61 +déposâmes déposer ver 53.09 62.70 0.01 0.20 ind:pas:1p; +déposons déposer ver 53.09 62.70 0.10 0.20 imp:pre:1p;ind:pre:1p; +déposât déposer ver 53.09 62.70 0.00 0.07 sub:imp:3s; +dépossession dépossession nom f s 0.00 1.22 0.00 1.22 +dépossède déposséder ver 0.83 2.97 0.02 0.00 ind:pre:1s;ind:pre:3s; +dépossédais déposséder ver 0.83 2.97 0.00 0.07 ind:imp:1s; +dépossédait déposséder ver 0.83 2.97 0.00 0.14 ind:imp:3s; +déposséder déposséder ver 0.83 2.97 0.08 0.61 inf; +dépossédé déposséder ver m s 0.83 2.97 0.21 1.28 par:pas; +dépossédée déposséder ver f s 0.83 2.97 0.31 0.27 par:pas; +dépossédées déposséder ver f p 0.83 2.97 0.00 0.20 par:pas; +dépossédés déposséder ver m p 0.83 2.97 0.21 0.41 par:pas; +déposèrent déposer ver 53.09 62.70 0.04 0.88 ind:pas:3p; +déposé déposer ver m s 53.09 62.70 8.73 10.34 par:pas; +déposée déposer ver f s 53.09 62.70 2.34 3.58 par:pas; +déposées déposer ver f p 53.09 62.70 0.60 1.35 par:pas; +déposés déposer ver m p 53.09 62.70 0.81 2.36 par:pas; +dépote dépoter ver 0.23 0.27 0.15 0.14 imp:pre:2s;ind:pre:3s; +dépotent dépoter ver 0.23 0.27 0.00 0.07 ind:pre:3p; +dépoter dépoter ver 0.23 0.27 0.07 0.00 inf; +dépotoir dépotoir nom m s 1.22 1.82 1.22 1.82 +dépoté dépoter ver m s 0.23 0.27 0.01 0.07 par:pas; +dépoudrer dépoudrer ver 0.01 0.00 0.01 0.00 inf; +dépouilla dépouiller ver 4.54 20.54 0.03 0.68 ind:pas:3s; +dépouillage dépouillage nom m s 0.01 0.00 0.01 0.00 +dépouillaient dépouiller ver 4.54 20.54 0.02 0.95 ind:imp:3p; +dépouillais dépouiller ver 4.54 20.54 0.00 0.20 ind:imp:1s; +dépouillait dépouiller ver 4.54 20.54 0.03 1.15 ind:imp:3s; +dépouillant dépouiller ver 4.54 20.54 0.01 0.61 par:pre; +dépouille dépouille nom f s 1.94 6.62 1.69 5.00 +dépouillement dépouillement nom m s 0.17 2.64 0.17 2.50 +dépouillements dépouillement nom m p 0.17 2.64 0.00 0.14 +dépouillent dépouiller ver 4.54 20.54 0.08 0.47 ind:pre:3p; +dépouiller dépouiller ver 4.54 20.54 2.07 5.14 inf; +dépouillera dépouiller ver 4.54 20.54 0.01 0.00 ind:fut:3s; +dépouillerais dépouiller ver 4.54 20.54 0.01 0.00 cnd:pre:1s; +dépouillerait dépouiller ver 4.54 20.54 0.00 0.07 cnd:pre:3s; +dépouillerez dépouiller ver 4.54 20.54 0.01 0.00 ind:fut:2p; +dépouilles dépouille nom f p 1.94 6.62 0.25 1.62 +dépouillez dépouiller ver 4.54 20.54 0.05 0.00 imp:pre:2p;ind:pre:2p; +dépouillons dépouiller ver 4.54 20.54 0.02 0.07 imp:pre:1p; +dépouillât dépouiller ver 4.54 20.54 0.00 0.07 sub:imp:3s; +dépouillèrent dépouiller ver 4.54 20.54 0.14 0.14 ind:pas:3p; +dépouillé dépouiller ver m s 4.54 20.54 0.90 4.59 par:pas; +dépouillée dépouiller ver f s 4.54 20.54 0.31 2.43 par:pas; +dépouillées dépouiller ver f p 4.54 20.54 0.01 0.41 par:pas; +dépouillés dépouillé adj m p 0.94 3.04 0.66 0.61 +dépourvu dépourvu adj m s 1.10 4.32 1.00 2.03 +dépourvue dépourvoir ver f s 1.71 12.36 0.73 4.12 par:pas; +dépourvues dépourvoir ver f p 1.71 12.36 0.12 1.22 par:pas; +dépourvus dépourvu adj m p 1.10 4.32 0.09 1.82 +dépoussière dépoussiérer ver 0.78 0.27 0.02 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépoussiérage dépoussiérage nom m s 0.01 0.07 0.01 0.07 +dépoussiéraient dépoussiérer ver 0.78 0.27 0.00 0.07 ind:imp:3p; +dépoussiérant dépoussiérer ver 0.78 0.27 0.14 0.00 par:pre; +dépoussiérer dépoussiérer ver 0.78 0.27 0.45 0.14 inf; +dépoussiérez dépoussiérer ver 0.78 0.27 0.03 0.00 imp:pre:2p; +dépoussiéré dépoussiérer ver m s 0.78 0.27 0.14 0.00 par:pas; +dépoétisent dépoétiser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +dépravation dépravation nom f s 0.61 0.95 0.56 0.61 +dépravations dépravation nom f p 0.61 0.95 0.05 0.34 +dépraver dépraver ver 0.48 0.14 0.06 0.00 inf; +dépravons dépraver ver 0.48 0.14 0.01 0.00 ind:pre:1p; +dépravé dépravé nom m s 1.07 0.47 0.63 0.34 +dépravée dépravé adj f s 1.24 0.68 0.30 0.00 +dépravées dépravé adj f p 1.24 0.68 0.32 0.07 +dépravés dépravé nom m p 1.07 0.47 0.29 0.07 +déprenais déprendre ver 0.01 2.03 0.00 0.14 ind:imp:1s; +déprenait déprendre ver 0.01 2.03 0.00 0.07 ind:imp:3s; +déprend déprendre ver 0.01 2.03 0.01 0.07 ind:pre:3s; +déprendre déprendre ver 0.01 2.03 0.00 0.74 inf; +déprendront déprendre ver 0.01 2.03 0.00 0.07 ind:fut:3p; +dépressif dépressif adj m s 1.83 0.74 1.11 0.34 +dépressifs dépressif adj m p 1.83 0.74 0.17 0.14 +dépression dépression nom f s 10.41 8.38 10.10 7.36 +dépressionnaire dépressionnaire adj m s 0.03 0.07 0.03 0.07 +dépressions dépression nom f p 10.41 8.38 0.32 1.01 +dépressive dépressif adj f s 1.83 0.74 0.49 0.20 +dépressives dépressif adj f p 1.83 0.74 0.05 0.07 +dépressurisait dépressuriser ver 0.33 0.00 0.01 0.00 ind:imp:3s; +dépressurisation dépressurisation nom f s 0.36 0.14 0.36 0.14 +dépressurise dépressuriser ver 0.33 0.00 0.03 0.00 ind:pre:3s; +dépressuriser dépressuriser ver 0.33 0.00 0.14 0.00 inf; +dépressurisé dépressuriser ver m s 0.33 0.00 0.10 0.00 par:pas; +dépressurisés dépressuriser ver m p 0.33 0.00 0.05 0.00 par:pas; +déprima déprimer ver 10.61 3.85 0.01 0.14 ind:pas:3s; +déprimais déprimer ver 10.61 3.85 0.06 0.00 ind:imp:1s;ind:imp:2s; +déprimait déprimer ver 10.61 3.85 0.21 0.34 ind:imp:3s; +déprimant déprimant adj m s 3.83 3.31 2.85 1.49 +déprimante déprimant adj f s 3.83 3.31 0.62 1.28 +déprimantes déprimant adj f p 3.83 3.31 0.25 0.20 +déprimants déprimant adj m p 3.83 3.31 0.11 0.34 +déprime déprimer ver 10.61 3.85 3.61 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépriment déprimer ver 10.61 3.85 0.28 0.07 ind:pre:3p; +déprimer déprimer ver 10.61 3.85 1.05 0.54 inf; +déprimerais déprimer ver 10.61 3.85 0.10 0.00 cnd:pre:2s; +déprimerait déprimer ver 10.61 3.85 0.25 0.00 cnd:pre:3s; +déprimes déprimer ver 10.61 3.85 0.75 0.07 ind:pre:2s; +déprimez déprimer ver 10.61 3.85 0.04 0.00 ind:pre:2p; +déprimé déprimer ver m s 10.61 3.85 2.50 0.61 par:pas; +déprimée déprimer ver f s 10.61 3.85 1.43 0.41 par:pas; +déprimées déprimer ver f p 10.61 3.85 0.12 0.00 par:pas; +déprimés déprimé adj m p 3.29 1.62 0.16 0.27 +déprirent déprendre ver 0.01 2.03 0.00 0.14 ind:pas:3p; +dépris déprendre ver m 0.01 2.03 0.00 0.74 ind:pas:1s;par:pas;par:pas; +déprit déprendre ver 0.01 2.03 0.00 0.07 ind:pas:3s; +déprogrammation déprogrammation nom f s 0.07 0.00 0.07 0.00 +déprogrammer déprogrammer ver 0.37 0.07 0.21 0.00 inf; +déprogrammez déprogrammer ver 0.37 0.07 0.01 0.00 imp:pre:2p; +déprogrammé déprogrammer ver m s 0.37 0.07 0.07 0.07 par:pas; +déprogrammée déprogrammer ver f s 0.37 0.07 0.07 0.00 par:pas; +dépréciait déprécier ver 0.69 1.28 0.10 0.14 ind:imp:3s; +dépréciant déprécier ver 0.69 1.28 0.02 0.00 par:pre; +dépréciation dépréciation nom f s 0.05 0.41 0.05 0.41 +déprécie déprécier ver 0.69 1.28 0.21 0.07 imp:pre:2s;ind:pre:3s; +déprécier déprécier ver 0.69 1.28 0.15 0.61 inf; +déprécies déprécier ver 0.69 1.28 0.01 0.07 ind:pre:2s; +dépréciez déprécier ver 0.69 1.28 0.00 0.07 ind:pre:2p; +dépréciiez déprécier ver 0.69 1.28 0.00 0.07 ind:imp:2p; +déprécié déprécier ver m s 0.69 1.28 0.19 0.14 par:pas; +dépréciée déprécier ver f s 0.69 1.28 0.01 0.14 par:pas; +déprédateur déprédateur adj m s 0.00 0.07 0.00 0.07 +déprédateurs déprédateur nom m p 0.00 0.14 0.00 0.14 +déprédation déprédation nom f s 0.01 0.41 0.00 0.07 +déprédations déprédation nom f p 0.01 0.41 0.01 0.34 +dépèce dépecer ver 1.18 2.57 0.29 0.27 imp:pre:2s;ind:pre:3s; +dépècements dépècement nom m p 0.00 0.07 0.00 0.07 +dépècent dépecer ver 1.18 2.57 0.02 0.14 ind:pre:3p; +dépècera dépecer ver 1.18 2.57 0.00 0.07 ind:fut:3s; +dépècerai dépecer ver 1.18 2.57 0.13 0.00 ind:fut:1s; +dépèceraient dépecer ver 1.18 2.57 0.00 0.07 cnd:pre:3p; +dupé duper ver m s 4.77 2.70 1.15 0.34 par:pas; +dépucela dépuceler ver 1.38 1.01 0.00 0.07 ind:pas:3s; +dépucelage dépucelage nom m s 0.41 0.41 0.41 0.34 +dépucelages dépucelage nom m p 0.41 0.41 0.00 0.07 +dépuceler dépuceler ver 1.38 1.01 0.55 0.34 inf; +dépuceleur dépuceleur nom m s 0.02 0.07 0.01 0.00 +dépuceleurs dépuceleur nom m p 0.02 0.07 0.01 0.07 +dépucelle dépuceler ver 1.38 1.01 0.17 0.07 ind:pre:1s;ind:pre:3s; +dépucellera dépuceler ver 1.38 1.01 0.00 0.07 ind:fut:3s; +dépucelons dépuceler ver 1.38 1.01 0.03 0.00 imp:pre:1p; +dépucelé dépuceler ver m s 1.38 1.01 0.39 0.27 par:pas; +dépucelée dépuceler ver f s 1.38 1.01 0.25 0.20 par:pas; +dépêcha dépêcher ver 111.44 22.84 0.00 1.55 ind:pas:3s; +dépêchai dépêcher ver 111.44 22.84 0.01 0.14 ind:pas:1s; +dépêchaient dépêcher ver 111.44 22.84 0.00 0.27 ind:imp:3p; +dépêchais dépêcher ver 111.44 22.84 0.03 0.07 ind:imp:1s;ind:imp:2s; +dépêchait dépêcher ver 111.44 22.84 0.05 1.15 ind:imp:3s; +dépêchant dépêcher ver 111.44 22.84 0.08 0.41 par:pre; +dépêche dépêcher ver 111.44 22.84 55.90 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépêchent dépêcher ver 111.44 22.84 0.35 0.47 ind:pre:3p; +dépêcher dépêcher ver 111.44 22.84 7.52 3.65 inf; +dépêcherais dépêcher ver 111.44 22.84 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +dépêcherons dépêcher ver 111.44 22.84 0.00 0.07 ind:fut:1p; +dépêches dépêcher ver 111.44 22.84 0.96 0.20 ind:pre:2s;sub:pre:2s; +dépêchez dépêcher ver 111.44 22.84 35.35 2.77 imp:pre:2p;ind:pre:2p; +dépêchions dépêcher ver 111.44 22.84 0.01 0.07 ind:imp:1p; +dépêchons dépêcher ver 111.44 22.84 10.21 1.55 imp:pre:1p;ind:pre:1p; +dépêchât dépêcher ver 111.44 22.84 0.00 0.07 sub:imp:3s; +dépêchèrent dépêcher ver 111.44 22.84 0.00 0.14 ind:pas:3p; +dépêché dépêcher ver m s 111.44 22.84 0.27 1.55 par:pas; +dépêchée dépêcher ver f s 111.44 22.84 0.40 0.47 par:pas; +dépêchées dépêcher ver f p 111.44 22.84 0.11 0.07 par:pas; +dépêchés dépêcher ver m p 111.44 22.84 0.04 0.61 par:pas; +dupée duper ver f s 4.77 2.70 0.18 0.34 par:pas; +dépulpé dépulper ver m s 0.00 0.07 0.00 0.07 par:pas; +dépénaliser dépénaliser ver 0.01 0.00 0.01 0.00 inf; +dépuratifs dépuratif adj m p 0.00 0.07 0.00 0.07 +dépuratifs dépuratif nom m p 0.00 0.07 0.00 0.07 +dépéri dépérir ver m s 1.73 1.89 0.36 0.07 par:pas; +dépérir dépérir ver 1.73 1.89 0.41 0.74 inf; +dépérira dépérir ver 1.73 1.89 0.02 0.00 ind:fut:3s; +dépériraient dépérir ver 1.73 1.89 0.00 0.07 cnd:pre:3p; +dépérirait dépérir ver 1.73 1.89 0.01 0.00 cnd:pre:3s; +dépériront dépérir ver 1.73 1.89 0.01 0.07 ind:fut:3p; +dépéris dépérir ver 1.73 1.89 0.06 0.07 ind:pre:1s;ind:pre:2s; +dépérissaient dépérir ver 1.73 1.89 0.00 0.07 ind:imp:3p; +dépérissais dépérir ver 1.73 1.89 0.01 0.14 ind:imp:1s;ind:imp:2s; +dépérissait dépérir ver 1.73 1.89 0.02 0.27 ind:imp:3s; +dépérisse dépérir ver 1.73 1.89 0.02 0.07 sub:pre:3s; +dépérissement dépérissement nom m s 0.00 0.34 0.00 0.34 +dépérissent dépérir ver 1.73 1.89 0.08 0.00 ind:pre:3p; +dépérit dépérir ver 1.73 1.89 0.73 0.34 ind:pre:3s;ind:pas:3s; +dépurés dépurer ver m p 0.00 0.07 0.00 0.07 par:pas; +dupés duper ver m p 4.77 2.70 0.81 0.07 par:pas; +députation députation nom f s 0.00 0.34 0.00 0.20 +députations députation nom f p 0.00 0.34 0.00 0.14 +députer députer ver 0.19 0.07 0.01 0.00 inf; +dépêtrer dépêtrer ver 0.13 1.01 0.13 0.81 inf; +dépêtré dépêtrer ver m s 0.13 1.01 0.00 0.07 par:pas; +dépêtrée dépêtrer ver f s 0.13 1.01 0.00 0.07 par:pas; +dépêtrés dépêtrer ver m p 0.13 1.01 0.00 0.07 par:pas; +députèrent députer ver 0.19 0.07 0.00 0.07 ind:pas:3p; +député_maire député_maire nom m s 0.00 0.34 0.00 0.34 +député député nom m s 10.40 10.88 7.40 6.42 +députée député nom f s 10.40 10.88 0.42 0.00 +députés député nom m p 10.40 10.88 2.59 4.46 +déqualifier déqualifier ver 0.01 0.00 0.01 0.00 inf; +duquel duquel pro_rel m s 2.36 30.20 1.92 22.57 +déquiller déquiller ver 0.00 0.27 0.00 0.14 inf; +déquillé déquiller ver m s 0.00 0.27 0.00 0.07 par:pas; +déquillés déquiller ver m p 0.00 0.27 0.00 0.07 par:pas; +dur dur adj m s 187.84 146.69 145.55 80.68 +dura durer ver 74.39 101.62 1.56 12.70 ind:pas:3s; +durabilité durabilité nom f s 0.01 0.00 0.01 0.00 +durable durable adj s 2.13 5.95 1.61 4.73 +durablement durablement adv 0.00 0.74 0.00 0.74 +durables durable adj p 2.13 5.95 0.53 1.22 +déracina déraciner ver 0.85 2.23 0.01 0.07 ind:pas:3s; +déracinaient déraciner ver 0.85 2.23 0.01 0.00 ind:imp:3p; +déracinais déraciner ver 0.85 2.23 0.00 0.07 ind:imp:1s; +déracinait déraciner ver 0.85 2.23 0.00 0.20 ind:imp:3s; +déracinant déracinant adj m s 0.00 0.14 0.00 0.14 +déracine déraciner ver 0.85 2.23 0.10 0.20 ind:pre:3s; +déracinement déracinement nom m s 0.11 0.54 0.11 0.54 +déracinent déraciner ver 0.85 2.23 0.01 0.14 ind:pre:3p; +déraciner déraciner ver 0.85 2.23 0.27 0.61 inf; +déracinerait déraciner ver 0.85 2.23 0.00 0.07 cnd:pre:3s; +déraciné déraciner ver m s 0.85 2.23 0.43 0.54 par:pas; +déracinée déraciner ver f s 0.85 2.23 0.01 0.07 par:pas; +déracinées déraciner ver f p 0.85 2.23 0.01 0.00 par:pas; +déracinés déraciné adj m p 0.04 0.74 0.01 0.41 +duraient durer ver 74.39 101.62 0.43 2.03 ind:imp:3p; +dérailla dérailler ver 4.74 3.18 0.00 0.20 ind:pas:3s; +déraillaient dérailler ver 4.74 3.18 0.00 0.07 ind:imp:3p; +déraillais dérailler ver 4.74 3.18 0.00 0.07 ind:imp:1s; +déraillait dérailler ver 4.74 3.18 0.02 0.34 ind:imp:3s; +déraillant dérailler ver 4.74 3.18 0.00 0.07 par:pre; +déraille dérailler ver 4.74 3.18 1.89 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +duraille duraille adj s 0.02 2.43 0.00 2.36 +déraillement déraillement nom m s 0.49 0.54 0.35 0.27 +déraillements déraillement nom m p 0.49 0.54 0.14 0.27 +déraillent dérailler ver 4.74 3.18 0.05 0.07 ind:pre:3p; +dérailler dérailler ver 4.74 3.18 1.25 1.15 inf; +déraillera dérailler ver 4.74 3.18 0.02 0.00 ind:fut:3s; +dérailles dérailler ver 4.74 3.18 0.42 0.20 ind:pre:2s; +durailles duraille adj m p 0.02 2.43 0.02 0.07 +dérailleur dérailleur nom m s 0.02 0.81 0.02 0.81 +déraillez dérailler ver 4.74 3.18 0.21 0.00 ind:pre:2p; +déraillé dérailler ver m s 4.74 3.18 0.89 0.47 par:pas; +déraison déraison nom f s 0.36 1.35 0.36 1.15 +déraisonnable déraisonnable adj s 1.35 2.77 1.15 2.30 +déraisonnablement déraisonnablement adv 0.00 0.14 0.00 0.14 +déraisonnables déraisonnable adj p 1.35 2.77 0.20 0.47 +déraisonnait déraisonner ver 0.87 1.15 0.01 0.41 ind:imp:3s; +déraisonne déraisonner ver 0.87 1.15 0.20 0.20 ind:pre:1s;ind:pre:3s; +déraisonner déraisonner ver 0.87 1.15 0.10 0.34 inf; +déraisonnes déraisonner ver 0.87 1.15 0.29 0.20 ind:pre:2s; +déraisonnez déraisonner ver 0.87 1.15 0.17 0.00 ind:pre:2p; +déraisonné déraisonner ver m s 0.87 1.15 0.10 0.00 par:pas; +déraisons déraison nom f p 0.36 1.35 0.00 0.20 +durait durer ver 74.39 101.62 1.04 8.92 ind:imp:3s; +durale dural adj f s 0.01 0.00 0.01 0.00 +duralumin duralumin nom m s 0.00 0.27 0.00 0.27 +dérange déranger ver 126.95 43.99 63.69 10.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérangea déranger ver 126.95 43.99 0.01 0.61 ind:pas:3s; +dérangeaient déranger ver 126.95 43.99 0.07 1.01 ind:imp:3p; +dérangeais déranger ver 126.95 43.99 0.18 0.27 ind:imp:1s;ind:imp:2s; +dérangeait déranger ver 126.95 43.99 1.28 3.51 ind:imp:3s; +dérangeant dérangeant adj m s 1.04 1.01 0.79 0.34 +dérangeante dérangeant adj f s 1.04 1.01 0.14 0.41 +dérangeantes dérangeant adj f p 1.04 1.01 0.06 0.14 +dérangeants dérangeant adj m p 1.04 1.01 0.04 0.14 +dérangeassent déranger ver 126.95 43.99 0.00 0.07 sub:imp:3p; +dérangement dérangement nom m s 3.74 1.89 3.61 1.55 +dérangements dérangement nom m p 3.74 1.89 0.14 0.34 +dérangent déranger ver 126.95 43.99 1.97 1.08 ind:pre:3p; +dérangeons déranger ver 126.95 43.99 0.65 0.14 imp:pre:1p;ind:pre:1p; +dérangeât déranger ver 126.95 43.99 0.00 0.34 sub:imp:3s; +déranger déranger ver 126.95 43.99 31.38 14.59 inf;; +dérangera déranger ver 126.95 43.99 1.88 0.61 ind:fut:3s; +dérangerai déranger ver 126.95 43.99 0.98 0.20 ind:fut:1s; +dérangeraient déranger ver 126.95 43.99 0.01 0.07 cnd:pre:3p; +dérangerais déranger ver 126.95 43.99 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +dérangerait déranger ver 126.95 43.99 2.71 0.74 cnd:pre:3s; +dérangeras déranger ver 126.95 43.99 0.11 0.00 ind:fut:2s; +dérangerez déranger ver 126.95 43.99 0.33 0.07 ind:fut:2p; +dérangerons déranger ver 126.95 43.99 0.18 0.00 ind:fut:1p; +déranges déranger ver 126.95 43.99 2.11 0.47 ind:pre:2s; +dérangez déranger ver 126.95 43.99 6.75 1.55 imp:pre:2p;ind:pre:2p; +dérangiez déranger ver 126.95 43.99 0.01 0.00 ind:imp:2p; +dérangions déranger ver 126.95 43.99 0.00 0.14 ind:imp:1p; +dérangé déranger ver m s 126.95 43.99 7.98 3.99 par:pas; +dérangée déranger ver f s 126.95 43.99 2.38 1.62 par:pas; +dérangées déranger ver f p 126.95 43.99 0.06 0.41 par:pas; +dérangés déranger ver m p 126.95 43.99 1.67 0.95 par:pas; +durant durant pre 34.15 65.95 34.15 65.95 +dérapa déraper ver 3.85 8.31 0.00 1.01 ind:pas:3s; +dérapage dérapage nom m s 0.89 2.36 0.79 1.69 +dérapages dérapage nom m p 0.89 2.36 0.10 0.68 +dérapai déraper ver 3.85 8.31 0.00 0.14 ind:pas:1s; +dérapaient déraper ver 3.85 8.31 0.00 0.61 ind:imp:3p; +dérapait déraper ver 3.85 8.31 0.23 1.08 ind:imp:3s; +dérapant déraper ver 3.85 8.31 0.00 1.15 par:pre; +dérape déraper ver 3.85 8.31 0.95 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérapent déraper ver 3.85 8.31 0.10 0.14 ind:pre:3p; +déraper déraper ver 3.85 8.31 0.53 1.28 inf; +déraperont déraper ver 3.85 8.31 0.00 0.07 ind:fut:3p; +dérapes déraper ver 3.85 8.31 0.06 0.20 ind:pre:2s; +dérapez déraper ver 3.85 8.31 0.26 0.07 imp:pre:2p;ind:pre:2p; +dérapé déraper ver m s 3.85 8.31 1.72 0.61 par:pas; +durassent durer ver 74.39 101.62 0.00 0.07 sub:imp:3p; +dératisation dératisation nom f s 0.27 0.14 0.27 0.07 +dératisations dératisation nom f p 0.27 0.14 0.00 0.07 +dératiser dératiser ver 0.20 0.07 0.17 0.00 inf; +dératisé dératiser ver m s 0.20 0.07 0.02 0.00 par:pas; +dératisée dératiser ver f s 0.20 0.07 0.00 0.07 par:pas; +dératisés dératiser ver m p 0.20 0.07 0.01 0.00 par:pas; +dératé dératé nom m s 0.26 1.22 0.20 0.74 +dératées dératé nom f p 0.26 1.22 0.03 0.07 +dératés dératé nom m p 0.26 1.22 0.02 0.41 +dérayer dérayer ver 0.01 0.00 0.01 0.00 inf; +durci durci adj m s 0.22 4.12 0.16 1.55 +durcie durcir ver f s 1.79 13.99 0.13 0.95 par:pas; +durcies durcir ver f p 1.79 13.99 0.00 0.47 par:pas; +durcir durcir ver 1.79 13.99 0.73 2.23 inf; +durciraient durcir ver 1.79 13.99 0.00 0.07 cnd:pre:3p; +durcirent durcir ver 1.79 13.99 0.14 0.07 ind:pas:3p; +durcis durcir ver m p 1.79 13.99 0.09 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +durcissaient durcir ver 1.79 13.99 0.00 0.20 ind:imp:3p; +durcissais durcir ver 1.79 13.99 0.00 0.14 ind:imp:1s; +durcissait durcir ver 1.79 13.99 0.02 2.30 ind:imp:3s; +durcissant durcir ver 1.79 13.99 0.01 0.54 par:pre; +durcisse durcir ver 1.79 13.99 0.05 0.14 sub:pre:3s; +durcissement durcissement nom m s 0.01 0.74 0.01 0.74 +durcissent durcir ver 1.79 13.99 0.17 0.34 ind:pre:3p; +durcisseur durcisseur nom m s 0.03 0.00 0.03 0.00 +durcit durcir ver 1.79 13.99 0.30 3.65 ind:pre:3s;ind:pas:3s; +dure_mère dure_mère nom f s 0.02 0.07 0.02 0.07 +dure dur adj f s 187.84 146.69 26.16 33.65 +durement durement adv 3.27 12.97 3.27 12.97 +durent devoir ver_sup 3232.80 1318.24 2.98 6.35 ind:pas:3p; +durer durer ver 74.39 101.62 20.59 24.05 inf; +durera durer ver 74.39 101.62 8.35 4.73 ind:fut:3s; +durerai durer ver 74.39 101.62 0.19 0.20 ind:fut:1s; +dureraient durer ver 74.39 101.62 0.04 0.74 cnd:pre:3p; +durerais durer ver 74.39 101.62 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +durerait durer ver 74.39 101.62 1.16 3.31 cnd:pre:3s; +dureras durer ver 74.39 101.62 0.01 0.00 ind:fut:2s; +durerez durer ver 74.39 101.62 0.06 0.00 ind:fut:2p; +dureront durer ver 74.39 101.62 0.82 0.54 ind:fut:3p; +dures dur adj f p 187.84 146.69 4.05 11.89 +déresponsabilisation déresponsabilisation nom f s 0.00 0.07 0.00 0.07 +dureté dureté nom f s 1.56 12.23 1.56 11.35 +duretés dureté nom f p 1.56 12.23 0.00 0.88 +durham durham nom m s 0.09 0.00 0.09 0.00 +durian durian nom m s 2.21 0.00 2.21 0.00 +dérida dérider ver 0.57 2.50 0.00 0.34 ind:pas:3s; +déridait dérider ver 0.57 2.50 0.00 0.20 ind:imp:3s; +déride dérider ver 0.57 2.50 0.17 0.07 imp:pre:2s;ind:pre:3s; +dérider dérider ver 0.57 2.50 0.19 1.49 inf; +déridera dérider ver 0.57 2.50 0.01 0.07 ind:fut:3s; +dériderait dérider ver 0.57 2.50 0.01 0.07 cnd:pre:3s; +déridez dérider ver 0.57 2.50 0.18 0.00 imp:pre:2p; +déridé dérider ver m s 0.57 2.50 0.01 0.27 par:pas; +durillon durillon nom m s 0.05 1.01 0.00 0.41 +durillons durillon nom m p 0.05 1.01 0.05 0.61 +dérision dérision nom f s 1.27 8.51 1.27 8.51 +dérisoire dérisoire adj s 1.38 21.42 1.09 15.27 +dérisoirement dérisoirement adv 0.10 0.54 0.10 0.54 +dérisoires dérisoire adj p 1.38 21.42 0.29 6.15 +durit durit nom f s 0.04 0.00 0.04 0.00 +durite durite nom f s 0.50 0.07 0.47 0.07 +durites durite nom f p 0.50 0.07 0.03 0.00 +dériva dériver ver 4.28 11.42 0.00 0.54 ind:pas:3s; +dérivaient dériver ver 4.28 11.42 0.02 1.08 ind:imp:3p; +dérivais dériver ver 4.28 11.42 0.04 0.07 ind:imp:1s; +dérivait dériver ver 4.28 11.42 0.06 1.55 ind:imp:3s; +dérivant dériver ver 4.28 11.42 0.18 1.22 par:pre; +dérivante dérivant adj f s 0.03 0.07 0.01 0.00 +dérivatif dérivatif nom m s 0.03 0.54 0.03 0.47 +dérivatifs dérivatif nom m p 0.03 0.54 0.00 0.07 +dérivation dérivation nom f s 0.57 0.68 0.55 0.68 +dérivations dérivation nom f p 0.57 0.68 0.02 0.00 +dérive dérive nom f s 2.81 6.89 2.77 6.55 +dérivent dériver ver 4.28 11.42 0.26 1.15 ind:pre:3p; +dériver dériver ver 4.28 11.42 1.09 3.18 inf; +dériverai dériver ver 4.28 11.42 0.01 0.07 ind:fut:1s; +dériveras dériver ver 4.28 11.42 0.14 0.00 ind:fut:2s; +dérives dériver ver 4.28 11.42 0.22 0.00 ind:pre:2s; +dériveur dériveur nom m s 0.14 0.20 0.14 0.14 +dériveurs dériveur nom m p 0.14 0.20 0.01 0.07 +dérivez dériver ver 4.28 11.42 0.05 0.00 imp:pre:2p;ind:pre:2p; +dérivions dériver ver 4.28 11.42 0.02 0.14 ind:imp:1p; +dérivons dériver ver 4.28 11.42 0.26 0.07 ind:pre:1p; +dérivé dériver ver m s 4.28 11.42 0.84 0.54 par:pas; +dérivée dériver ver f s 4.28 11.42 0.05 0.07 par:pas; +dérivées dérivé adj f p 0.57 0.27 0.06 0.07 +dérivés dérivé adj m p 0.57 0.27 0.44 0.07 +déroba dérober ver 7.15 27.23 0.03 1.22 ind:pas:3s; +dérobade dérobade nom f s 0.21 2.77 0.21 1.76 +dérobades dérobade nom f p 0.21 2.77 0.00 1.01 +dérobai dérober ver 7.15 27.23 0.00 0.20 ind:pas:1s; +dérobaient dérober ver 7.15 27.23 0.01 0.95 ind:imp:3p; +dérobais dérober ver 7.15 27.23 0.01 0.20 ind:imp:1s;ind:imp:2s; +dérobait dérober ver 7.15 27.23 0.24 3.92 ind:imp:3s; +dérobant dérober ver 7.15 27.23 0.05 1.22 par:pre; +dérobe dérober ver 7.15 27.23 0.55 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérobent dérober ver 7.15 27.23 0.36 0.74 ind:pre:3p; +dérober dérober ver 7.15 27.23 2.08 7.57 ind:pre:2p;inf; +dérobera dérober ver 7.15 27.23 0.02 0.07 ind:fut:3s; +déroberaient dérober ver 7.15 27.23 0.00 0.07 cnd:pre:3p; +déroberait dérober ver 7.15 27.23 0.00 0.20 cnd:pre:3s; +déroberons dérober ver 7.15 27.23 0.01 0.07 ind:fut:1p; +dérobes dérober ver 7.15 27.23 0.68 0.00 ind:pre:2s; +dérobeuse dérobeur adj f s 0.00 0.07 0.00 0.07 +dérobez dérober ver 7.15 27.23 0.28 0.14 imp:pre:2p;ind:pre:2p; +dérobiez dérober ver 7.15 27.23 0.00 0.07 ind:imp:2p; +dérobions dérober ver 7.15 27.23 0.00 0.14 ind:imp:1p; +dérobons dérober ver 7.15 27.23 0.01 0.07 imp:pre:1p;ind:pre:1p; +dérobât dérober ver 7.15 27.23 0.00 0.07 sub:imp:3s; +dérobèrent dérober ver 7.15 27.23 0.00 0.14 ind:pas:3p; +dérobé dérober ver m s 7.15 27.23 1.85 2.57 par:pas; +dérobée dérober ver f s 7.15 27.23 0.68 2.77 par:pas; +dérobées dérober ver f p 7.15 27.23 0.04 0.27 par:pas; +dérobés dérober ver m p 7.15 27.23 0.25 0.47 par:pas; +dérogation dérogation nom f s 0.42 0.34 0.40 0.20 +dérogations dérogation nom f p 0.42 0.34 0.02 0.14 +dérogatoire dérogatoire adj f s 0.01 0.00 0.01 0.00 +déroge déroger ver 0.46 1.01 0.09 0.27 imp:pre:2s;ind:pre:3s; +dérogea déroger ver 0.46 1.01 0.00 0.07 ind:pas:3s; +dérogeait déroger ver 0.46 1.01 0.01 0.14 ind:imp:3s; +dérogent déroger ver 0.46 1.01 0.01 0.00 ind:pre:3p; +déroger déroger ver 0.46 1.01 0.18 0.34 inf; +dérogera déroger ver 0.46 1.01 0.01 0.07 ind:fut:3s; +dérogerait déroger ver 0.46 1.01 0.01 0.00 cnd:pre:3s; +dérogé déroger ver m s 0.46 1.01 0.15 0.14 par:pas; +durât durer ver 74.39 101.62 0.00 0.74 sub:imp:3s; +dérouillaient dérouiller ver 2.13 4.66 0.00 0.14 ind:imp:3p; +dérouillais dérouiller ver 2.13 4.66 0.02 0.00 ind:imp:1s; +dérouillait dérouiller ver 2.13 4.66 0.01 0.14 ind:imp:3s; +dérouillant dérouiller ver 2.13 4.66 0.00 0.14 par:pre; +dérouille dérouiller ver 2.13 4.66 0.48 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérouillement dérouillement nom m s 0.00 0.07 0.00 0.07 +dérouillent dérouiller ver 2.13 4.66 0.05 0.34 ind:pre:3p; +dérouiller dérouiller ver 2.13 4.66 0.94 1.69 inf; +dérouillera dérouiller ver 2.13 4.66 0.04 0.00 ind:fut:3s; +dérouillerai dérouiller ver 2.13 4.66 0.00 0.14 ind:fut:1s; +dérouillerais dérouiller ver 2.13 4.66 0.14 0.14 cnd:pre:1s;cnd:pre:2s; +dérouillerait dérouiller ver 2.13 4.66 0.01 0.07 cnd:pre:3s; +dérouilles dérouiller ver 2.13 4.66 0.04 0.20 ind:pre:2s; +dérouillez dérouiller ver 2.13 4.66 0.01 0.00 imp:pre:2p; +dérouillé dérouiller ver m s 2.13 4.66 0.36 0.54 par:pas; +dérouillée dérouillée nom f s 0.39 1.22 0.23 1.01 +dérouillées dérouillée nom f p 0.39 1.22 0.16 0.20 +déroula dérouler ver 11.37 39.46 0.27 3.04 ind:pas:3s; +déroulai dérouler ver 11.37 39.46 0.00 0.20 ind:pas:1s; +déroulaient dérouler ver 11.37 39.46 0.04 2.84 ind:imp:3p; +déroulais dérouler ver 11.37 39.46 0.02 0.27 ind:imp:1s; +déroulait dérouler ver 11.37 39.46 0.37 8.92 ind:imp:3s; +déroulant dérouler ver 11.37 39.46 0.11 1.69 par:pre; +déroule dérouler ver 11.37 39.46 5.18 6.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déroulement déroulement nom m s 0.82 5.95 0.82 5.88 +déroulements déroulement nom m p 0.82 5.95 0.00 0.07 +déroulent dérouler ver 11.37 39.46 1.41 1.42 ind:pre:3p; +dérouler dérouler ver 11.37 39.46 1.26 5.88 inf; +déroulera dérouler ver 11.37 39.46 0.36 0.34 ind:fut:3s; +dérouleraient dérouler ver 11.37 39.46 0.01 0.07 cnd:pre:3p; +déroulerait dérouler ver 11.37 39.46 0.06 0.47 cnd:pre:3s; +dérouleront dérouler ver 11.37 39.46 0.04 0.00 ind:fut:3p; +dérouleur dérouleur nom m s 0.01 0.34 0.01 0.14 +dérouleurs dérouleur nom m p 0.01 0.34 0.00 0.14 +dérouleuse dérouleur nom f s 0.01 0.34 0.00 0.07 +déroulez dérouler ver 11.37 39.46 0.19 0.07 imp:pre:2p; +déroulions dérouler ver 11.37 39.46 0.00 0.07 ind:imp:1p; +déroulât dérouler ver 11.37 39.46 0.00 0.14 sub:imp:3s; +déroulèrent dérouler ver 11.37 39.46 0.03 0.81 ind:pas:3p; +déroulé dérouler ver m s 11.37 39.46 1.15 2.57 par:pas; +déroulée dérouler ver f s 11.37 39.46 0.63 2.64 par:pas; +déroulées dérouler ver f p 11.37 39.46 0.11 0.81 par:pas; +déroulés dérouler ver m p 11.37 39.46 0.13 1.08 par:pas; +dérouta dérouter ver 1.63 4.59 0.00 0.07 ind:pas:3s; +déroutage déroutage nom m s 0.01 0.07 0.01 0.07 +déroutaient dérouter ver 1.63 4.59 0.00 0.07 ind:imp:3p; +déroutait dérouter ver 1.63 4.59 0.03 0.88 ind:imp:3s; +déroutant déroutant adj m s 1.09 2.03 0.68 0.47 +déroutante déroutant adj f s 1.09 2.03 0.22 1.28 +déroutantes déroutant adj f p 1.09 2.03 0.04 0.14 +déroutants déroutant adj m p 1.09 2.03 0.16 0.14 +déroute déroute nom f s 1.03 5.95 1.03 5.88 +déroutement déroutement nom m s 0.28 0.00 0.28 0.00 +déroutent dérouter ver 1.63 4.59 0.02 0.07 ind:pre:3p; +dérouter dérouter ver 1.63 4.59 0.54 0.47 inf;; +déroutera dérouter ver 1.63 4.59 0.01 0.00 ind:fut:3s; +déroutes dérouter ver 1.63 4.59 0.10 0.00 ind:pre:2s; +déroutez dérouter ver 1.63 4.59 0.05 0.00 imp:pre:2p;ind:pre:2p; +déroutèrent dérouter ver 1.63 4.59 0.00 0.07 ind:pas:3p; +dérouté dérouter ver m s 1.63 4.59 0.47 1.42 par:pas; +déroutée dérouter ver f s 1.63 4.59 0.16 0.47 par:pas; +déroutées dérouter ver f p 1.63 4.59 0.03 0.00 par:pas; +déroutés dérouter ver m p 1.63 4.59 0.06 0.27 par:pas; +durs dur adj m p 187.84 146.69 12.08 20.47 +dérègle dérégler ver 1.09 0.95 0.25 0.14 ind:pre:3s; +dérèglement dérèglement nom m s 1.29 1.28 0.35 1.01 +dérèglements dérèglement nom m p 1.29 1.28 0.94 0.27 +dérèglent dérégler ver 1.09 0.95 0.14 0.07 ind:pre:3p; +durèrent durer ver 74.39 101.62 0.04 1.35 ind:pas:3p; +duré durer ver m s 74.39 101.62 12.57 13.85 par:pas; +déréalisaient déréaliser ver 0.00 0.07 0.00 0.07 ind:imp:3p; +durée durée nom f s 6.86 19.39 6.84 19.12 +durées durée nom f p 6.86 19.39 0.02 0.27 +déréglage déréglage nom m s 0.01 0.00 0.01 0.00 +déréglait dérégler ver 1.09 0.95 0.01 0.07 ind:imp:3s; +déréglant dérégler ver 1.09 0.95 0.00 0.07 par:pre; +déréglementation déréglementation nom f s 0.06 0.00 0.06 0.00 +dérégler dérégler ver 1.09 0.95 0.22 0.14 inf; +déréglé dérégler ver m s 1.09 0.95 0.23 0.41 par:pas; +déréglée dérégler ver f s 1.09 0.95 0.20 0.00 par:pas; +déréglées dérégler ver f p 1.09 0.95 0.03 0.00 par:pas; +déréglés déréglé adj m p 0.23 1.35 0.10 0.34 +dérégulation dérégulation nom f s 0.04 0.00 0.04 0.00 +déréguler déréguler ver 0.01 0.00 0.01 0.00 inf; +déréliction déréliction nom f s 0.01 0.61 0.01 0.61 +dés dé nom m p 23.36 11.55 17.63 7.91 +dus devoir ver_sup m p 3232.80 1318.24 1.57 12.77 ind:pas:1s;par:pas; +désabonna désabonner ver 0.00 0.07 0.00 0.07 ind:pas:3s; +désabonnements désabonnement nom m p 0.00 0.14 0.00 0.14 +désabusement désabusement nom m s 0.00 0.41 0.00 0.41 +désabuser désabuser ver 0.11 1.08 0.00 0.07 inf; +désabusé désabusé adj m s 0.12 5.27 0.08 3.04 +désabusée désabuser ver f s 0.11 1.08 0.03 0.14 par:pas; +désabusées désabusé nom f p 0.02 1.42 0.00 0.14 +désabusés désabusé adj m p 0.12 5.27 0.02 0.47 +désaccord désaccord nom m s 3.02 5.20 2.41 4.05 +désaccorda désaccorder ver 0.38 1.22 0.00 0.07 ind:pas:3s; +désaccordaient désaccorder ver 0.38 1.22 0.00 0.07 ind:imp:3p; +désaccordent désaccorder ver 0.38 1.22 0.00 0.07 ind:pre:3p; +désaccorder désaccorder ver 0.38 1.22 0.00 0.14 inf; +désaccords désaccord nom m p 3.02 5.20 0.61 1.15 +désaccordé désaccorder ver m s 0.38 1.22 0.14 0.41 par:pas; +désaccordée désaccorder ver f s 0.38 1.22 0.22 0.07 par:pas; +désaccordées désaccorder ver f p 0.38 1.22 0.00 0.07 par:pas; +désaccordés désaccorder ver m p 0.38 1.22 0.02 0.34 par:pas; +désaccoupler désaccoupler ver 0.01 0.00 0.01 0.00 inf; +désaccoutuma désaccoutumer ver 0.14 0.07 0.00 0.07 ind:pas:3s; +désaccoutumer désaccoutumer ver 0.14 0.07 0.14 0.00 inf; +désacralisation désacralisation nom f s 0.20 0.00 0.20 0.00 +désacraliser désacraliser ver 0.04 0.07 0.03 0.00 inf; +désacralisé désacraliser ver m s 0.04 0.07 0.01 0.07 par:pas; +désacralisée désacraliser ver f s 0.04 0.07 0.01 0.00 par:pas; +désactivation désactivation nom f s 0.41 0.07 0.41 0.07 +désactive désactiver ver 4.96 0.41 0.40 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désactiver désactiver ver 4.96 0.41 1.43 0.00 inf; +désactiverai désactiver ver 4.96 0.41 0.03 0.00 ind:fut:1s; +désactiveront désactiver ver 4.96 0.41 0.02 0.00 ind:fut:3p; +désactives désactiver ver 4.96 0.41 0.04 0.00 ind:pre:2s; +désactivez désactiver ver 4.96 0.41 0.57 0.00 imp:pre:2p;ind:pre:2p; +désactivons désactiver ver 4.96 0.41 0.04 0.00 ind:pre:1p; +désactivé désactiver ver m s 4.96 0.41 1.35 0.34 par:pas; +désactivée désactiver ver f s 4.96 0.41 0.20 0.07 par:pas; +désactivées désactiver ver f p 4.96 0.41 0.78 0.00 par:pas; +désactivés désactiver ver m p 4.96 0.41 0.11 0.00 par:pas; +désadaptée désadapter ver f s 0.00 0.07 0.00 0.07 par:pas; +désadopter désadopter ver 0.01 0.00 0.01 0.00 inf; +désaffectation désaffectation nom f s 0.00 0.07 0.00 0.07 +désaffecter désaffecter ver 0.18 0.88 0.00 0.07 inf; +désaffection désaffection nom f s 0.04 0.54 0.04 0.54 +désaffecté désaffecté adj m s 0.85 4.73 0.46 1.62 +désaffectée désaffecté adj f s 0.85 4.73 0.22 1.82 +désaffectées désaffecté adj f p 0.85 4.73 0.03 0.68 +désaffectés désaffecté adj m p 0.85 4.73 0.14 0.61 +désagrège désagréger ver 0.80 3.18 0.35 0.95 imp:pre:2s;ind:pre:3s; +désagrègent désagréger ver 0.80 3.18 0.20 0.20 ind:pre:3p; +désagréable désagréable adj s 10.91 19.39 9.54 16.55 +désagréablement désagréablement adv 0.13 1.28 0.13 1.28 +désagréables désagréable adj p 10.91 19.39 1.38 2.84 +désagrégation désagrégation nom f s 0.10 1.35 0.10 1.35 +désagrégeait désagréger ver 0.80 3.18 0.11 0.41 ind:imp:3s; +désagrégeant désagréger ver 0.80 3.18 0.01 0.27 par:pre; +désagréger désagréger ver 0.80 3.18 0.11 0.88 inf; +désagrégèrent désagréger ver 0.80 3.18 0.00 0.07 ind:pas:3p; +désagrégé désagréger ver m s 0.80 3.18 0.03 0.14 par:pas; +désagrégée désagréger ver f s 0.80 3.18 0.00 0.20 par:pas; +désagrégés désagréger ver m p 0.80 3.18 0.00 0.07 par:pas; +désagrément désagrément nom m s 2.01 2.64 1.20 1.42 +désagréments désagrément nom m p 2.01 2.64 0.81 1.22 +désaimée désaimer ver f s 0.00 0.14 0.00 0.14 par:pas; +désajustés désajuster ver m p 0.00 0.07 0.00 0.07 par:pas; +désalinisation désalinisation nom f s 0.02 0.00 0.02 0.00 +désaliénation désaliénation nom f s 0.00 0.07 0.00 0.07 +désaltère désaltérer ver 0.66 1.89 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désaltéra désaltérer ver 0.66 1.89 0.00 0.07 ind:pas:3s; +désaltéraient désaltérer ver 0.66 1.89 0.00 0.07 ind:imp:3p; +désaltérait désaltérer ver 0.66 1.89 0.00 0.14 ind:imp:3s; +désaltérant désaltérer ver 0.66 1.89 0.00 0.14 par:pre; +désaltérante désaltérant adj f s 0.14 0.00 0.14 0.00 +désaltérer désaltérer ver 0.66 1.89 0.35 0.81 inf; +désaltérât désaltérer ver 0.66 1.89 0.00 0.07 sub:imp:3s; +désaltéré désaltérer ver m s 0.66 1.89 0.10 0.20 par:pas; +désaltérés désaltérer ver m p 0.66 1.89 0.00 0.14 par:pas; +désamiantage désamiantage nom m s 0.09 0.00 0.09 0.00 +désaminase désaminase nom f s 0.01 0.00 0.01 0.00 +désamorce désamorcer ver 2.80 1.62 0.50 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désamorcent désamorcer ver 2.80 1.62 0.01 0.00 ind:pre:3p; +désamorcer désamorcer ver 2.80 1.62 1.43 0.47 inf; +désamorcera désamorcer ver 2.80 1.62 0.01 0.00 ind:fut:3s; +désamorcerez désamorcer ver 2.80 1.62 0.01 0.00 ind:fut:2p; +désamorcerons désamorcer ver 2.80 1.62 0.01 0.00 ind:fut:1p; +désamorcez désamorcer ver 2.80 1.62 0.04 0.00 imp:pre:2p;ind:pre:2p; +désamorcé désamorcer ver m s 2.80 1.62 0.28 0.34 par:pas; +désamorcée désamorcer ver f s 2.80 1.62 0.45 0.20 par:pas; +désamorcées désamorcer ver f p 2.80 1.62 0.02 0.07 par:pas; +désamorcés désamorcer ver m p 2.80 1.62 0.03 0.07 par:pas; +désamorçage désamorçage nom m s 0.18 0.00 0.18 0.00 +désamorçait désamorcer ver 2.80 1.62 0.01 0.20 ind:imp:3s; +désamorçant désamorcer ver 2.80 1.62 0.00 0.07 par:pre; +désamour désamour nom m s 0.00 0.34 0.00 0.34 +désangler désangler ver 0.00 0.07 0.00 0.07 inf; +désape désaper ver 0.77 0.14 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désapent désaper ver 0.77 0.14 0.01 0.00 ind:pre:3p; +désaper désaper ver 0.77 0.14 0.38 0.00 inf; +désapeurer désapeurer ver 0.00 0.07 0.00 0.07 inf; +désapez désaper ver 0.77 0.14 0.04 0.00 imp:pre:2p;ind:pre:2p; +désappointait désappointer ver 0.13 0.88 0.00 0.07 ind:imp:3s; +désappointement désappointement nom m s 0.00 0.81 0.00 0.74 +désappointements désappointement nom m p 0.00 0.81 0.00 0.07 +désappointer désappointer ver 0.13 0.88 0.03 0.07 inf; +désappointé désappointer ver m s 0.13 0.88 0.09 0.47 par:pas; +désappointée désappointé adj f s 0.06 0.41 0.01 0.27 +désappointés désappointé adj m p 0.06 0.41 0.01 0.00 +désapprenais désapprendre ver 0.10 0.95 0.00 0.07 ind:imp:1s; +désapprenant désapprendre ver 0.10 0.95 0.00 0.07 par:pre; +désapprendre désapprendre ver 0.10 0.95 0.09 0.07 inf; +désapprenne désapprendre ver 0.10 0.95 0.00 0.14 sub:pre:3s; +désapprirent désapprendre ver 0.10 0.95 0.00 0.07 ind:pas:3p; +désappris désapprendre ver m 0.10 0.95 0.01 0.47 par:pas; +désapprit désapprendre ver 0.10 0.95 0.00 0.07 ind:pas:3s; +désapprobateur désapprobateur adj m s 0.06 1.62 0.04 0.95 +désapprobateurs désapprobateur adj m p 0.06 1.62 0.00 0.41 +désapprobation désapprobation nom f s 0.42 1.55 0.42 1.55 +désapprobatrice désapprobateur adj f s 0.06 1.62 0.02 0.20 +désapprobatrices désapprobateur adj f p 0.06 1.62 0.00 0.07 +désapprouva désapprouver ver 3.35 3.99 0.00 0.14 ind:pas:3s; +désapprouvaient désapprouver ver 3.35 3.99 0.04 0.07 ind:imp:3p; +désapprouvais désapprouver ver 3.35 3.99 0.04 0.34 ind:imp:1s;ind:imp:2s; +désapprouvait désapprouver ver 3.35 3.99 0.34 0.88 ind:imp:3s; +désapprouvant désapprouver ver 3.35 3.99 0.01 0.41 par:pre; +désapprouve désapprouver ver 3.35 3.99 1.48 0.95 ind:pre:1s;ind:pre:3s; +désapprouvent désapprouver ver 3.35 3.99 0.26 0.14 ind:pre:3p; +désapprouver désapprouver ver 3.35 3.99 0.16 0.34 inf; +désapprouvera désapprouver ver 3.35 3.99 0.01 0.07 ind:fut:3s; +désapprouverait désapprouver ver 3.35 3.99 0.04 0.07 cnd:pre:3s; +désapprouverez désapprouver ver 3.35 3.99 0.01 0.00 ind:fut:2p; +désapprouves désapprouver ver 3.35 3.99 0.36 0.00 ind:pre:2s; +désapprouvez désapprouver ver 3.35 3.99 0.46 0.07 imp:pre:2p;ind:pre:2p; +désapprouviez désapprouver ver 3.35 3.99 0.01 0.07 ind:imp:2p; +désapprouvât désapprouver ver 3.35 3.99 0.00 0.07 sub:imp:3s; +désapprouvé désapprouver ver m s 3.35 3.99 0.12 0.34 par:pas; +désapprouvée désapprouver ver f s 3.35 3.99 0.01 0.07 par:pas; +désargenté désargenter ver m s 0.01 0.14 0.01 0.07 par:pas; +désargentées désargenté adj f p 0.00 0.27 0.00 0.07 +désargentés désargenté nom m p 0.01 0.00 0.01 0.00 +désarma désarmer ver 5.72 8.11 0.00 0.34 ind:pas:3s; +désarmai désarmer ver 5.72 8.11 0.00 0.07 ind:pas:1s; +désarmaient désarmer ver 5.72 8.11 0.00 0.14 ind:imp:3p; +désarmait désarmer ver 5.72 8.11 0.01 1.15 ind:imp:3s; +désarmant désarmer ver 5.72 8.11 0.05 0.07 par:pre; +désarmante désarmant adj f s 0.08 1.76 0.03 1.08 +désarmants désarmant adj m p 0.08 1.76 0.01 0.14 +désarme désarmer ver 5.72 8.11 0.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désarmement désarmement nom m s 1.04 0.88 1.04 0.88 +désarment désarmer ver 5.72 8.11 0.04 0.07 ind:pre:3p; +désarmer désarmer ver 5.72 8.11 1.57 1.96 inf; +désarmera désarmer ver 5.72 8.11 0.01 0.00 ind:fut:3s; +désarmez désarmer ver 5.72 8.11 0.71 0.00 imp:pre:2p; +désarmèrent désarmer ver 5.72 8.11 0.00 0.07 ind:pas:3p; +désarmé désarmer ver m s 5.72 8.11 2.29 2.23 par:pas; +désarmée désarmer ver f s 5.72 8.11 0.39 0.47 par:pas; +désarmées désarmer ver f p 5.72 8.11 0.11 0.14 par:pas; +désarmés désarmé adj m p 1.56 5.41 0.72 0.68 +désarrimage désarrimage nom m s 0.02 0.00 0.02 0.00 +désarrimez désarrimer ver 0.05 0.00 0.03 0.00 imp:pre:2p; +désarrimé désarrimer ver m s 0.05 0.00 0.02 0.00 par:pas; +désarroi désarroi nom m s 1.33 14.12 1.32 13.99 +désarrois désarroi nom m p 1.33 14.12 0.01 0.14 +désarçonna désarçonner ver 0.51 2.57 0.00 0.14 ind:pas:3s; +désarçonnaient désarçonner ver 0.51 2.57 0.00 0.07 ind:imp:3p; +désarçonnait désarçonner ver 0.51 2.57 0.00 0.14 ind:imp:3s; +désarçonne désarçonner ver 0.51 2.57 0.05 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désarçonner désarçonner ver 0.51 2.57 0.17 0.81 inf; +désarçonné désarçonner ver m s 0.51 2.57 0.22 0.74 par:pas; +désarçonnée désarçonner ver f s 0.51 2.57 0.04 0.07 par:pas; +désarçonnés désarçonner ver m p 0.51 2.57 0.03 0.34 par:pas; +désarticula désarticuler ver 0.34 3.18 0.00 0.07 ind:pas:3s; +désarticulait désarticuler ver 0.34 3.18 0.00 0.27 ind:imp:3s; +désarticulant désarticuler ver 0.34 3.18 0.00 0.14 par:pre; +désarticulation désarticulation nom f s 0.00 0.14 0.00 0.14 +désarticulent désarticuler ver 0.34 3.18 0.00 0.07 ind:pre:3p; +désarticuler désarticuler ver 0.34 3.18 0.00 0.07 inf; +désarticulera désarticuler ver 0.34 3.18 0.02 0.00 ind:fut:3s; +désarticulé désarticuler ver m s 0.34 3.18 0.20 1.01 par:pas; +désarticulée désarticuler ver f s 0.34 3.18 0.07 0.81 par:pas; +désarticulées désarticuler ver f p 0.34 3.18 0.00 0.14 par:pas; +désarticulés désarticuler ver m p 0.34 3.18 0.04 0.61 par:pas; +désassemble désassembler ver 0.12 0.27 0.00 0.14 ind:pre:3s; +désassembler désassembler ver 0.12 0.27 0.05 0.14 inf; +désassemblé désassembler ver m s 0.12 0.27 0.07 0.00 par:pas; +désassortis désassorti adj m p 0.00 0.07 0.00 0.07 +désassortis désassortir ver m p 0.00 0.07 0.00 0.07 par:pas; +désastre désastre nom m s 12.82 23.72 12.26 19.86 +désastres désastre nom m p 12.82 23.72 0.55 3.85 +désastreuse désastreux adj f s 2.46 6.49 0.92 2.23 +désastreusement désastreusement adv 0.01 0.00 0.01 0.00 +désastreuses désastreux adj f p 2.46 6.49 0.41 1.62 +désastreux désastreux adj m 2.46 6.49 1.13 2.64 +désavantage désavantage nom m s 0.52 0.88 0.43 0.61 +désavantageaient désavantager ver 0.24 0.47 0.00 0.07 ind:imp:3p; +désavantageait désavantager ver 0.24 0.47 0.00 0.07 ind:imp:3s; +désavantager désavantager ver 0.24 0.47 0.02 0.07 inf; +désavantages désavantage nom m p 0.52 0.88 0.09 0.27 +désavantageuse désavantageux adj f s 0.01 0.00 0.01 0.00 +désavantagé désavantager ver m s 0.24 0.47 0.08 0.14 par:pas; +désavantagés désavantager ver m p 0.24 0.47 0.10 0.07 par:pas; +désaveu désaveu nom m s 0.07 0.61 0.07 0.61 +désaveux désaveux nom m p 0.00 0.07 0.00 0.07 +désavoua désavouer ver 0.77 3.11 0.00 0.14 ind:pas:3s; +désavouait désavouer ver 0.77 3.11 0.00 0.20 ind:imp:3s; +désavouant désavouer ver 0.77 3.11 0.00 0.20 par:pre; +désavoue désavouer ver 0.77 3.11 0.01 0.14 ind:pre:1s;ind:pre:3s; +désavouent désavouer ver 0.77 3.11 0.29 0.07 ind:pre:3p; +désavouer désavouer ver 0.77 3.11 0.20 0.74 inf; +désavoueraient désavouer ver 0.77 3.11 0.00 0.14 cnd:pre:3p; +désavouerons désavouer ver 0.77 3.11 0.00 0.14 ind:fut:1p; +désavouez désavouer ver 0.77 3.11 0.01 0.07 imp:pre:2p;ind:pre:2p; +désavouât désavouer ver 0.77 3.11 0.00 0.07 sub:imp:3s; +désavoué désavouer ver m s 0.77 3.11 0.22 0.68 par:pas; +désavouée désavouer ver f s 0.77 3.11 0.03 0.34 par:pas; +désavoués désavouer ver m p 0.77 3.11 0.01 0.20 par:pas; +désaxait désaxer ver 0.09 0.54 0.00 0.07 ind:imp:3s; +désaxant désaxer ver 0.09 0.54 0.01 0.07 par:pre; +désaxe désaxer ver 0.09 0.54 0.01 0.14 ind:pre:3s; +désaxement désaxement nom m s 0.00 0.07 0.00 0.07 +désaxé désaxé nom m s 0.40 0.27 0.26 0.07 +désaxée désaxé adj f s 0.13 0.61 0.02 0.34 +désaxées désaxé nom f p 0.40 0.27 0.01 0.07 +désaxés désaxé nom m p 0.40 0.27 0.12 0.14 +déscolarisé déscolariser ver m s 0.01 0.00 0.01 0.00 par:pas; +désembourber désembourber ver 0.05 0.20 0.05 0.14 inf; +désembourbée désembourber ver f s 0.05 0.20 0.00 0.07 par:pas; +désembrouiller désembrouiller ver 0.01 0.00 0.01 0.00 inf; +désembuer désembuer ver 0.00 0.07 0.00 0.07 inf; +désemparait désemparer ver 0.67 3.18 0.00 0.07 ind:imp:3s; +désemparer désemparer ver 0.67 3.18 0.00 0.61 inf; +désemparé désemparer ver m s 0.67 3.18 0.36 1.28 par:pas; +désemparée désemparé adj f s 0.90 4.19 0.55 1.42 +désemparées désemparé adj f p 0.90 4.19 0.11 0.07 +désemparés désemparer ver m p 0.67 3.18 0.12 0.34 par:pas; +désempenné désempenner ver m s 0.00 0.07 0.00 0.07 par:pas; +désempierraient désempierrer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +désemplissaient désemplir ver 0.17 0.61 0.00 0.07 ind:imp:3p; +désemplissait désemplir ver 0.17 0.61 0.00 0.34 ind:imp:3s; +désemplit désemplir ver 0.17 0.61 0.17 0.20 ind:pre:3s;ind:pas:3s; +désenchaînement désenchaînement nom m s 0.00 0.07 0.00 0.07 +désenchaîner désenchaîner ver 0.00 0.07 0.00 0.07 inf; +désenchanta désenchanter ver 0.02 0.54 0.00 0.07 ind:pas:3s; +désenchantant désenchanter ver 0.02 0.54 0.00 0.07 par:pre; +désenchante désenchanter ver 0.02 0.54 0.00 0.07 ind:pre:3s; +désenchantement désenchantement nom m s 0.16 1.76 0.16 1.69 +désenchantements désenchantement nom m p 0.16 1.76 0.00 0.07 +désenchantent désenchanter ver 0.02 0.54 0.00 0.07 ind:pre:3p; +désenchanter désenchanter ver 0.02 0.54 0.00 0.14 inf; +désenchanté désenchanté adj m s 0.11 0.88 0.11 0.47 +désenchantée désenchanter ver f s 0.02 0.54 0.01 0.07 par:pas; +désenchantées désenchanter ver f p 0.02 0.54 0.01 0.00 par:pas; +désenchantés désenchanté nom m p 0.17 0.34 0.14 0.07 +désenchevêtra désenchevêtrer ver 0.00 0.07 0.00 0.07 ind:pas:3s; +désenclavement désenclavement nom m s 0.00 0.07 0.00 0.07 +désencombre désencombrer ver 0.00 0.07 0.00 0.07 ind:pre:1s; +désencrasser désencrasser ver 0.03 0.07 0.03 0.07 inf; +désenflaient désenfler ver 0.22 0.07 0.00 0.07 ind:imp:3p; +désenfle désenfler ver 0.22 0.07 0.06 0.00 imp:pre:2s;ind:pre:3s; +désenfler désenfler ver 0.22 0.07 0.12 0.00 inf; +désenflé désenfler ver m s 0.22 0.07 0.04 0.00 par:pas; +désengagement désengagement nom m s 0.14 0.07 0.14 0.07 +désengager désengager ver 0.31 0.20 0.08 0.14 inf; +désengagez désengager ver 0.31 0.20 0.18 0.00 imp:pre:2p;ind:pre:2p; +désengagé désengager ver m s 0.31 0.20 0.04 0.07 par:pas; +désengluer désengluer ver 0.00 0.07 0.00 0.07 inf; +désengourdir désengourdir ver 0.00 0.14 0.00 0.14 inf; +désennuie désennuyer ver 0.02 0.41 0.00 0.07 ind:pre:3s; +désennuiera désennuyer ver 0.02 0.41 0.00 0.07 ind:fut:3s; +désennuyant désennuyer ver 0.02 0.41 0.00 0.07 par:pre; +désennuyer désennuyer ver 0.02 0.41 0.02 0.20 inf; +désenrouler désenrouler ver 0.01 0.00 0.01 0.00 inf; +désensabler désensabler ver 0.00 0.07 0.00 0.07 inf; +désensibilisation désensibilisation nom f s 0.32 0.00 0.32 0.00 +désensibilisent désensibiliser ver 0.04 0.00 0.01 0.00 ind:pre:3p; +désensibilisée désensibiliser ver f s 0.04 0.00 0.03 0.00 par:pas; +désensorceler désensorceler ver 0.00 0.14 0.00 0.07 inf; +désensorcelé désensorceler ver m s 0.00 0.14 0.00 0.07 par:pas; +désentortille désentortiller ver 0.00 0.07 0.00 0.07 ind:pre:1s; +désentravé désentraver ver m s 0.00 0.14 0.00 0.07 par:pas; +désentravée désentraver ver f s 0.00 0.14 0.00 0.07 par:pas; +désenvoûter désenvoûter ver 0.03 0.00 0.02 0.00 inf; +désenvoûteurs désenvoûteur nom m p 0.00 0.07 0.00 0.07 +désenvoûté désenvoûter ver m s 0.03 0.00 0.01 0.00 par:pas; +désert désert nom m s 27.66 41.89 26.13 36.76 +déserta déserter ver 4.90 11.28 0.01 0.41 ind:pas:3s; +désertaient déserter ver 4.90 11.28 0.01 0.20 ind:imp:3p; +désertais déserter ver 4.90 11.28 0.02 0.14 ind:imp:1s; +désertait déserter ver 4.90 11.28 0.03 0.47 ind:imp:3s; +désertant déserter ver 4.90 11.28 0.00 0.07 par:pre; +déserte désert adj f s 8.02 52.57 3.48 22.91 +désertent déserter ver 4.90 11.28 0.12 0.47 ind:pre:3p; +déserter déserter ver 4.90 11.28 1.92 1.69 inf; +déserterait déserter ver 4.90 11.28 0.11 0.00 cnd:pre:3s; +désertes désert adj f p 8.02 52.57 0.99 7.91 +déserteur déserteur nom m s 3.08 5.54 1.89 3.51 +déserteurs déserteur nom m p 3.08 5.54 1.19 2.03 +désertifie désertifier ver 0.00 0.07 0.00 0.07 ind:pre:3s; +désertion désertion nom f s 1.09 2.43 1.07 2.09 +désertions désertion nom f p 1.09 2.43 0.02 0.34 +désertique désertique adj s 0.22 2.57 0.17 1.82 +désertiques désertique adj p 0.22 2.57 0.04 0.74 +désertâmes déserter ver 4.90 11.28 0.00 0.07 ind:pas:1p; +désertons déserter ver 4.90 11.28 0.00 0.07 imp:pre:1p; +déserts désert nom m p 27.66 41.89 1.53 5.14 +désertèrent déserter ver 4.90 11.28 0.00 0.27 ind:pas:3p; +déserté déserter ver m s 4.90 11.28 1.76 4.19 par:pas; +désertée déserter ver f s 4.90 11.28 0.24 0.88 par:pas; +désertées déserter ver f p 4.90 11.28 0.15 0.14 par:pas; +désertés déserter ver m p 4.90 11.28 0.02 0.47 par:pas; +désespoir désespoir nom m s 10.62 46.89 10.61 45.47 +désespoirs désespoir nom m p 10.62 46.89 0.01 1.42 +désespère désespérer ver 12.22 17.43 1.42 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désespèrent désespérer ver 12.22 17.43 0.06 0.20 ind:pre:3p; +désespères désespérer ver 12.22 17.43 0.01 0.20 ind:pre:2s; +désespéra désespérer ver 12.22 17.43 0.00 0.61 ind:pas:3s; +désespérai désespérer ver 12.22 17.43 0.00 0.14 ind:pas:1s; +désespéraient désespérer ver 12.22 17.43 0.01 0.41 ind:imp:3p; +désespérais désespérer ver 12.22 17.43 0.37 0.41 ind:imp:1s; +désespérait désespérer ver 12.22 17.43 0.06 2.03 ind:imp:3s; +désespérance désespérance nom f s 0.03 1.08 0.03 1.08 +désespérant désespérant adj m s 0.67 1.96 0.60 0.95 +désespérante désespérant adj f s 0.67 1.96 0.06 0.88 +désespérants désespérant adj m p 0.67 1.96 0.01 0.14 +désespérer désespérer ver 12.22 17.43 1.18 4.19 inf; +désespérez désespérer ver 12.22 17.43 0.57 0.20 imp:pre:2p;ind:pre:2p; +désespérions désespérer ver 12.22 17.43 0.02 0.00 ind:imp:1p; +désespérons désespérer ver 12.22 17.43 0.14 0.07 imp:pre:1p; +désespérât désespérer ver 12.22 17.43 0.00 0.07 sub:imp:3s; +désespérèrent désespérer ver 12.22 17.43 0.00 0.07 ind:pas:3p; +désespéré désespéré adj m s 10.37 16.35 4.87 7.30 +désespérée désespéré adj f s 10.37 16.35 3.60 5.34 +désespérées désespéré adj f p 10.37 16.35 0.65 1.08 +désespérément désespérément adv 4.08 10.81 4.08 10.81 +désespérés désespéré adj m p 10.37 16.35 1.25 2.64 +déshabilla déshabiller ver 22.98 26.22 0.01 2.43 ind:pas:3s; +déshabillage_éclair déshabillage_éclair nom m s 0.00 0.07 0.00 0.07 +déshabillage déshabillage nom m s 0.23 0.81 0.23 0.68 +déshabillages déshabillage nom m p 0.23 0.81 0.00 0.14 +déshabillai déshabiller ver 22.98 26.22 0.00 0.41 ind:pas:1s; +déshabillaient déshabiller ver 22.98 26.22 0.13 0.34 ind:imp:3p; +déshabillais déshabiller ver 22.98 26.22 0.14 0.27 ind:imp:1s;ind:imp:2s; +déshabillait déshabiller ver 22.98 26.22 0.10 2.16 ind:imp:3s; +déshabillant déshabiller ver 22.98 26.22 0.10 1.01 par:pre; +déshabille déshabiller ver 22.98 26.22 8.69 5.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +déshabillent déshabiller ver 22.98 26.22 0.44 0.34 ind:pre:3p; +déshabiller déshabiller ver 22.98 26.22 5.85 8.58 inf; +déshabillera déshabiller ver 22.98 26.22 0.01 0.14 ind:fut:3s; +déshabillerai déshabiller ver 22.98 26.22 0.13 0.07 ind:fut:1s; +déshabillerait déshabiller ver 22.98 26.22 0.01 0.07 cnd:pre:3s; +déshabilleras déshabiller ver 22.98 26.22 0.01 0.07 ind:fut:2s; +déshabilleriez déshabiller ver 22.98 26.22 0.01 0.00 cnd:pre:2p; +déshabillerons déshabiller ver 22.98 26.22 0.00 0.07 ind:fut:1p; +déshabilles déshabiller ver 22.98 26.22 1.46 0.20 ind:pre:2s;sub:pre:2s; +déshabillez déshabiller ver 22.98 26.22 3.72 0.34 imp:pre:2p;ind:pre:2p; +déshabillons déshabiller ver 22.98 26.22 0.09 0.14 imp:pre:1p;ind:pre:1p; +déshabillèrent déshabiller ver 22.98 26.22 0.00 0.41 ind:pas:3p; +déshabillé déshabiller ver m s 22.98 26.22 0.90 1.89 par:pas; +déshabillée déshabiller ver f s 22.98 26.22 0.73 1.69 par:pas; +déshabillées déshabiller ver f p 22.98 26.22 0.13 0.20 par:pas; +déshabillés déshabiller ver m p 22.98 26.22 0.32 0.41 par:pas; +déshabité déshabité adj m s 0.00 0.20 0.00 0.07 +déshabitée déshabité adj f s 0.00 0.20 0.00 0.07 +déshabités déshabité adj m p 0.00 0.20 0.00 0.07 +déshabitué déshabituer ver m s 0.00 0.27 0.00 0.14 par:pas; +déshabituées déshabituer ver f p 0.00 0.27 0.00 0.07 par:pas; +déshabitués déshabituer ver m p 0.00 0.27 0.00 0.07 par:pas; +désharmonie désharmonie nom f s 0.00 0.07 0.00 0.07 +désherbage désherbage nom m s 0.15 0.00 0.15 0.00 +désherbait désherber ver 0.19 0.74 0.00 0.34 ind:imp:3s; +désherbant désherbant adj m s 0.11 0.00 0.10 0.00 +désherbants désherbant nom m p 0.07 0.07 0.01 0.07 +désherbe désherber ver 0.19 0.74 0.00 0.07 ind:pre:3s; +désherber désherber ver 0.19 0.74 0.04 0.27 inf; +désherbé désherber ver m s 0.19 0.74 0.16 0.00 par:pas; +désherbée désherber ver f s 0.19 0.74 0.00 0.07 par:pas; +désheuraient désheurer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +déshonneur déshonneur nom m s 3.28 2.84 3.28 2.84 +déshonnête déshonnête adj s 0.01 0.20 0.01 0.07 +déshonnêtes déshonnête adj p 0.01 0.20 0.00 0.14 +déshonoraient déshonorer ver 7.99 6.15 0.00 0.14 ind:imp:3p; +déshonorait déshonorer ver 7.99 6.15 0.00 0.34 ind:imp:3s; +déshonorant déshonorant adj m s 0.92 1.28 0.67 0.68 +déshonorante déshonorant adj f s 0.92 1.28 0.24 0.34 +déshonorantes déshonorant adj f p 0.92 1.28 0.01 0.14 +déshonorants déshonorant adj m p 0.92 1.28 0.00 0.14 +déshonore déshonorer ver 7.99 6.15 0.52 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déshonorent déshonorer ver 7.99 6.15 0.29 0.07 ind:pre:3p; +déshonorer déshonorer ver 7.99 6.15 1.31 1.28 inf; +déshonorera déshonorer ver 7.99 6.15 0.01 0.07 ind:fut:3s; +déshonorerai déshonorer ver 7.99 6.15 0.02 0.00 ind:fut:1s; +déshonorerais déshonorer ver 7.99 6.15 0.02 0.00 cnd:pre:1s; +déshonorerait déshonorer ver 7.99 6.15 0.01 0.07 cnd:pre:3s; +déshonores déshonorer ver 7.99 6.15 0.36 0.27 ind:pre:2s; +déshonorez déshonorer ver 7.99 6.15 0.28 0.14 imp:pre:2p;ind:pre:2p; +déshonoré déshonorer ver m s 7.99 6.15 3.15 1.42 par:pas; +déshonorée déshonorer ver f s 7.99 6.15 1.07 0.88 par:pas; +déshonorées déshonorer ver f p 7.99 6.15 0.27 0.14 par:pas; +déshonorés déshonorer ver m p 7.99 6.15 0.65 0.47 par:pas; +déshumanisant déshumaniser ver 0.12 0.14 0.03 0.00 par:pre; +déshumanisante déshumanisant adj f s 0.04 0.00 0.04 0.00 +déshumanisation déshumanisation nom f s 0.15 0.14 0.15 0.14 +déshumanise déshumaniser ver 0.12 0.14 0.01 0.00 ind:pre:3s; +déshumanisent déshumaniser ver 0.12 0.14 0.04 0.00 ind:pre:3p; +déshumaniser déshumaniser ver 0.12 0.14 0.01 0.00 inf; +déshumanisé déshumaniser ver m s 0.12 0.14 0.00 0.14 par:pas; +déshumanisée déshumaniser ver f s 0.12 0.14 0.01 0.00 par:pas; +déshumanisées déshumaniser ver f p 0.12 0.14 0.01 0.00 par:pas; +déshumidification déshumidification nom f s 0.10 0.00 0.10 0.00 +déshérence déshérence nom f s 0.00 0.20 0.00 0.20 +déshérita déshériter ver 0.85 1.08 0.01 0.07 ind:pas:3s; +déshéritais déshériter ver 0.85 1.08 0.01 0.00 ind:imp:2s; +déshérite déshériter ver 0.85 1.08 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déshériter déshériter ver 0.85 1.08 0.18 0.34 inf; +déshéritera déshériter ver 0.85 1.08 0.02 0.00 ind:fut:3s; +déshériterai déshériter ver 0.85 1.08 0.01 0.07 ind:fut:1s; +déshériterais déshériter ver 0.85 1.08 0.11 0.00 cnd:pre:1s; +déshériterait déshériter ver 0.85 1.08 0.02 0.07 cnd:pre:3s; +déshérité déshériter ver m s 0.85 1.08 0.34 0.41 par:pas; +déshéritée déshérité nom f s 0.41 0.74 0.10 0.00 +déshéritées déshérité adj f p 0.22 1.42 0.10 0.20 +déshérités déshérité nom m p 0.41 0.74 0.29 0.74 +déshydratais déshydrater ver 1.17 0.14 0.01 0.00 ind:imp:1s; +déshydratant déshydrater ver 1.17 0.14 0.01 0.00 par:pre; +déshydratation déshydratation nom f s 0.61 0.07 0.61 0.07 +déshydrate déshydrater ver 1.17 0.14 0.20 0.00 ind:pre:1s;ind:pre:3s;sub:pre:1s; +déshydrater déshydrater ver 1.17 0.14 0.29 0.00 inf; +déshydraté déshydrater ver m s 1.17 0.14 0.44 0.00 par:pas; +déshydratée déshydraté adj f s 0.69 0.54 0.33 0.27 +déshydratées déshydrater ver f p 1.17 0.14 0.03 0.00 par:pas; +déshydratés déshydraté adj m p 0.69 0.54 0.03 0.14 +désigna désigner ver 10.04 66.69 0.04 10.07 ind:pas:3s; +désignai désigner ver 10.04 66.69 0.00 0.68 ind:pas:1s; +désignaient désigner ver 10.04 66.69 0.03 0.95 ind:imp:3p; +désignais désigner ver 10.04 66.69 0.03 0.20 ind:imp:1s;ind:imp:2s; +désignait désigner ver 10.04 66.69 0.29 8.85 ind:imp:3s; +désignant désigner ver 10.04 66.69 0.25 11.69 par:pre; +désignassent désigner ver 10.04 66.69 0.00 0.07 sub:imp:3p; +désignation désignation nom f s 0.49 1.62 0.47 1.55 +désignations désignation nom f p 0.49 1.62 0.02 0.07 +désigne désigner ver 10.04 66.69 1.97 9.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +désignent désigner ver 10.04 66.69 0.18 1.28 ind:pre:3p; +désigner désigner ver 10.04 66.69 1.81 8.38 inf; +désignera désigner ver 10.04 66.69 0.32 0.20 ind:fut:3s; +désignerai désigner ver 10.04 66.69 0.02 0.07 ind:fut:1s; +désignerait désigner ver 10.04 66.69 0.01 0.34 cnd:pre:3s; +désigneras désigner ver 10.04 66.69 0.01 0.00 ind:fut:2s; +désignerez désigner ver 10.04 66.69 0.02 0.00 ind:fut:2p; +désigneriez désigner ver 10.04 66.69 0.01 0.07 cnd:pre:2p; +désignerons désigner ver 10.04 66.69 0.01 0.00 ind:fut:1p; +désigneront désigner ver 10.04 66.69 0.01 0.00 ind:fut:3p; +désignez désigner ver 10.04 66.69 0.64 0.20 imp:pre:2p;ind:pre:2p; +désignions désigner ver 10.04 66.69 0.00 0.07 ind:imp:1p; +désignât désigner ver 10.04 66.69 0.00 0.34 sub:imp:3s; +désignèrent désigner ver 10.04 66.69 0.01 0.34 ind:pas:3p; +désigné désigner ver m s 10.04 66.69 3.04 8.58 par:pas; +désignée désigner ver f s 10.04 66.69 0.65 1.35 par:pas; +désignées désigner ver f p 10.04 66.69 0.06 0.95 par:pas; +désignés désigner ver m p 10.04 66.69 0.62 2.09 par:pas; +désillusion désillusion nom f s 1.08 2.23 0.94 1.22 +désillusionnement désillusionnement nom m s 0.10 0.00 0.10 0.00 +désillusionner désillusionner ver 0.02 0.14 0.02 0.00 inf; +désillusionné désillusionner ver m s 0.02 0.14 0.00 0.14 par:pas; +désillusions désillusion nom f p 1.08 2.23 0.14 1.01 +désincarcération désincarcération nom f s 0.01 0.00 0.01 0.00 +désincarcéré désincarcérer ver m s 0.01 0.00 0.01 0.00 par:pas; +désincarnant désincarner ver 0.02 0.61 0.00 0.07 par:pre; +désincarnation désincarnation nom f s 0.01 0.00 0.01 0.00 +désincarne désincarner ver 0.02 0.61 0.01 0.07 ind:pre:1s;ind:pre:3s; +désincarner désincarner ver 0.02 0.61 0.00 0.07 inf; +désincarné désincarné nom m s 0.18 0.34 0.02 0.20 +désincarnée désincarné adj f s 0.05 0.95 0.03 0.34 +désincarnées désincarné adj f p 0.05 0.95 0.01 0.20 +désincarnés désincarné nom m p 0.18 0.34 0.15 0.00 +désincrustante désincrustant adj f s 0.01 0.00 0.01 0.00 +désincruster désincruster ver 0.01 0.00 0.01 0.00 inf; +désindividualisation désindividualisation nom f s 0.10 0.00 0.10 0.00 +désinence désinence nom f s 0.00 0.20 0.00 0.07 +désinences désinence nom f p 0.00 0.20 0.00 0.14 +désinfecta désinfecter ver 3.27 2.57 0.00 0.07 ind:pas:3s; +désinfectant désinfectant nom m s 0.82 1.62 0.79 1.49 +désinfectante désinfectant adj f s 0.10 0.14 0.01 0.00 +désinfectantes désinfectant adj f p 0.10 0.14 0.02 0.00 +désinfectants désinfectant nom m p 0.82 1.62 0.04 0.14 +désinfecte désinfecter ver 3.27 2.57 1.00 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désinfectent désinfecter ver 3.27 2.57 0.08 0.07 ind:pre:3p; +désinfecter désinfecter ver 3.27 2.57 1.59 1.35 inf; +désinfecterai désinfecter ver 3.27 2.57 0.00 0.07 ind:fut:1s; +désinfectez désinfecter ver 3.27 2.57 0.05 0.00 imp:pre:2p;ind:pre:2p; +désinfection désinfection nom f s 0.72 0.61 0.71 0.61 +désinfections désinfection nom f p 0.72 0.61 0.01 0.00 +désinfecté désinfecter ver m s 3.27 2.57 0.47 0.20 par:pas; +désinfectée désinfecter ver f s 3.27 2.57 0.03 0.00 par:pas; +désinfectées désinfecter ver f p 3.27 2.57 0.03 0.07 par:pas; +désinfectés désinfecter ver m p 3.27 2.57 0.00 0.07 par:pas; +désinformation désinformation nom f s 0.21 0.41 0.20 0.41 +désinformations désinformation nom f p 0.21 0.41 0.01 0.00 +désinformer désinformer ver 0.01 0.07 0.01 0.00 inf; +désinformée désinformer ver f s 0.01 0.07 0.00 0.07 par:pas; +désinhibe désinhiber ver 0.01 0.00 0.01 0.00 ind:pre:3s; +désinsectisation désinsectisation nom f s 0.19 0.00 0.19 0.00 +désinsectiser désinsectiser ver 0.01 0.00 0.01 0.00 inf; +désinstaller désinstaller ver 0.03 0.00 0.02 0.00 inf; +désinstallé désinstaller ver m s 0.03 0.00 0.01 0.00 par:pas; +désintellectualiser désintellectualiser ver 0.01 0.00 0.01 0.00 inf; +désintoxication désintoxication nom f s 1.46 0.74 1.46 0.74 +désintoxique désintoxiquer ver 0.91 1.15 0.03 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désintoxiquer désintoxiquer ver 0.91 1.15 0.47 0.68 inf; +désintoxiquera désintoxiquer ver 0.91 1.15 0.00 0.07 ind:fut:3s; +désintoxiquez désintoxiquer ver 0.91 1.15 0.04 0.00 imp:pre:2p;ind:pre:2p; +désintoxiqué désintoxiquer ver m s 0.91 1.15 0.16 0.14 par:pas; +désintoxiquée désintoxiquer ver f s 0.91 1.15 0.20 0.07 par:pas; +désintoxiqués désintoxiquer ver m p 0.91 1.15 0.01 0.00 par:pas; +désintègre désintégrer ver 2.08 1.49 0.33 0.07 imp:pre:2s;ind:pre:3s; +désintègrent désintégrer ver 2.08 1.49 0.10 0.00 ind:pre:3p; +désintégra désintégrer ver 2.08 1.49 0.03 0.00 ind:pas:3s; +désintégraient désintégrer ver 2.08 1.49 0.01 0.07 ind:imp:3p; +désintégrait désintégrer ver 2.08 1.49 0.01 0.20 ind:imp:3s; +désintégrant désintégrer ver 2.08 1.49 0.11 0.14 par:pre; +désintégrateur désintégrateur nom m s 0.03 0.00 0.03 0.00 +désintégration désintégration nom f s 0.88 0.54 0.86 0.47 +désintégrations désintégration nom f p 0.88 0.54 0.02 0.07 +désintégrer désintégrer ver 2.08 1.49 0.50 0.41 inf; +désintégrera désintégrer ver 2.08 1.49 0.09 0.00 ind:fut:3s; +désintégreront désintégrer ver 2.08 1.49 0.03 0.00 ind:fut:3p; +désintégré désintégrer ver m s 2.08 1.49 0.65 0.14 par:pas; +désintégrée désintégrer ver f s 2.08 1.49 0.13 0.27 par:pas; +désintégrés désintégrer ver m p 2.08 1.49 0.09 0.20 par:pas; +désintéressa désintéresser ver 0.95 5.54 0.00 0.34 ind:pas:3s; +désintéressaient désintéresser ver 0.95 5.54 0.01 0.20 ind:imp:3p; +désintéressait désintéresser ver 0.95 5.54 0.00 1.01 ind:imp:3s; +désintéressant désintéresser ver 0.95 5.54 0.00 0.14 par:pre; +désintéresse désintéresser ver 0.95 5.54 0.11 0.47 ind:pre:1s;ind:pre:3s; +désintéressement désintéressement nom m s 0.33 2.09 0.33 2.09 +désintéressent désintéresser ver 0.95 5.54 0.00 0.07 ind:pre:3p; +désintéresser désintéresser ver 0.95 5.54 0.07 1.62 inf; +désintéresserait désintéresser ver 0.95 5.54 0.00 0.07 cnd:pre:3s; +désintéresseront désintéresser ver 0.95 5.54 0.00 0.07 ind:fut:3p; +désintéressiez désintéresser ver 0.95 5.54 0.02 0.00 ind:imp:2p; +désintéressé désintéressé adj m s 1.05 2.64 0.63 1.01 +désintéressée désintéressé adj f s 1.05 2.64 0.39 0.95 +désintéressées désintéresser ver f p 0.95 5.54 0.01 0.07 par:pas; +désintéressés désintéresser ver m p 0.95 5.54 0.23 0.00 par:pas; +désintérêt désintérêt nom m s 0.07 0.68 0.07 0.68 +désinvite désinviter ver 0.07 0.00 0.02 0.00 ind:pre:1s; +désinviter désinviter ver 0.07 0.00 0.05 0.00 inf; +désinvolte désinvolte adj s 1.09 7.50 0.81 6.76 +désinvoltes désinvolte adj p 1.09 7.50 0.28 0.74 +désinvolture désinvolture nom f s 0.32 9.86 0.32 9.80 +désinvoltures désinvolture nom f p 0.32 9.86 0.00 0.07 +désir désir nom m s 45.35 117.09 31.59 96.69 +désira désirer ver 65.63 61.89 0.04 0.81 ind:pas:3s; +désirabilité désirabilité nom f s 0.00 0.07 0.00 0.07 +désirable désirable adj s 1.39 5.20 1.18 4.19 +désirables désirable adj p 1.39 5.20 0.21 1.01 +désiraient désirer ver 65.63 61.89 0.26 2.03 ind:imp:3p; +désirais désirer ver 65.63 61.89 1.88 4.66 ind:imp:1s;ind:imp:2s; +désirait désirer ver 65.63 61.89 1.04 14.05 ind:imp:3s; +désirant désirer ver 65.63 61.89 0.29 0.61 par:pre; +désirante désirant adj f s 0.05 0.47 0.00 0.14 +désire désirer ver 65.63 61.89 21.01 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désirent désirer ver 65.63 61.89 2.06 2.16 ind:pre:3p; +désirer désirer ver 65.63 61.89 4.28 9.12 inf; +désirera désirer ver 65.63 61.89 0.17 0.00 ind:fut:3s; +désireraient désirer ver 65.63 61.89 0.01 0.14 cnd:pre:3p; +désirerais désirer ver 65.63 61.89 0.32 0.54 cnd:pre:1s;cnd:pre:2s; +désirerait désirer ver 65.63 61.89 0.11 0.47 cnd:pre:3s; +désireras désirer ver 65.63 61.89 0.13 0.07 ind:fut:2s; +désireriez désirer ver 65.63 61.89 0.03 0.00 cnd:pre:2p; +désirerions désirer ver 65.63 61.89 0.02 0.07 cnd:pre:1p; +désireront désirer ver 65.63 61.89 0.10 0.07 ind:fut:3p; +désires désirer ver 65.63 61.89 3.87 1.08 ind:pre:2s; +désireuse désireux adj f s 1.46 7.43 0.35 1.96 +désireuses désireux adj f p 1.46 7.43 0.06 0.27 +désireux désireux adj m 1.46 7.43 1.05 5.20 +désirez désirer ver 65.63 61.89 23.85 3.72 imp:pre:2p;ind:pre:2p; +désiriez désirer ver 65.63 61.89 0.83 0.47 ind:imp:2p; +désirions désirer ver 65.63 61.89 0.05 0.41 ind:imp:1p; +désirons désirer ver 65.63 61.89 0.68 0.68 ind:pre:1p; +désirât désirer ver 65.63 61.89 0.00 0.34 sub:imp:3s; +désirs désir nom m p 45.35 117.09 13.76 20.41 +désiré désirer ver m s 65.63 61.89 2.87 5.54 par:pas; +désirée désirer ver f s 65.63 61.89 1.67 1.42 par:pas; +désirées désiré adj f p 1.02 3.31 0.02 0.07 +désirés désiré adj m p 1.02 3.31 0.09 0.41 +désiste désister ver 0.64 0.20 0.05 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désistement désistement nom m s 0.12 0.07 0.12 0.07 +désister désister ver 0.64 0.20 0.18 0.07 inf; +désistez désister ver 0.64 0.20 0.04 0.00 imp:pre:2p;ind:pre:2p; +désistèrent désister ver 0.64 0.20 0.01 0.00 ind:pas:3p; +désisté désister ver m s 0.64 0.20 0.34 0.00 par:pas; +désistée désister ver f s 0.64 0.20 0.02 0.07 par:pas; +désistés désister ver m p 0.64 0.20 0.00 0.07 par:pas; +déslipe désliper ver 0.00 0.07 0.00 0.07 ind:pre:1s; +désoblige désobliger ver 0.04 0.81 0.00 0.07 ind:pre:3s; +désobligea désobliger ver 0.04 0.81 0.00 0.07 ind:pas:3s; +désobligeait désobliger ver 0.04 0.81 0.00 0.07 ind:imp:3s; +désobligeance désobligeance nom f s 0.00 0.14 0.00 0.14 +désobligeant désobligeant adj m s 0.76 3.04 0.54 0.74 +désobligeante désobligeant adj f s 0.76 3.04 0.09 1.01 +désobligeantes désobligeant adj f p 0.76 3.04 0.09 0.88 +désobligeants désobligeant adj m p 0.76 3.04 0.04 0.41 +désobligent désobliger ver 0.04 0.81 0.01 0.07 ind:pre:3p; +désobliger désobliger ver 0.04 0.81 0.01 0.34 inf; +désobligerait désobliger ver 0.04 0.81 0.00 0.07 cnd:pre:3s; +désobligés désobliger ver m p 0.04 0.81 0.00 0.07 par:pas; +désobéi désobéir ver m s 6.15 2.09 2.27 0.20 par:pas; +désobéir désobéir ver 6.15 2.09 1.75 1.01 inf; +désobéira désobéir ver 6.15 2.09 0.05 0.00 ind:fut:3s; +désobéirai désobéir ver 6.15 2.09 0.03 0.00 ind:fut:1s; +désobéirais désobéir ver 6.15 2.09 0.02 0.00 cnd:pre:2s; +désobéiront désobéir ver 6.15 2.09 0.01 0.00 ind:fut:3p; +désobéis désobéir ver 6.15 2.09 0.76 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +désobéissais désobéir ver 6.15 2.09 0.14 0.07 ind:imp:1s;ind:imp:2s; +désobéissait désobéir ver 6.15 2.09 0.02 0.14 ind:imp:3s; +désobéissance désobéissance nom f s 0.91 0.74 0.91 0.68 +désobéissances désobéissance nom f p 0.91 0.74 0.00 0.07 +désobéissant désobéissant adj m s 0.39 0.14 0.13 0.00 +désobéissante désobéissant adj f s 0.39 0.14 0.23 0.07 +désobéissants désobéissant adj m p 0.39 0.14 0.03 0.07 +désobéisse désobéir ver 6.15 2.09 0.06 0.07 sub:pre:1s;sub:pre:3s; +désobéissent désobéir ver 6.15 2.09 0.27 0.14 ind:pre:3p; +désobéissez désobéir ver 6.15 2.09 0.36 0.00 imp:pre:2p;ind:pre:2p; +désobéissions désobéir ver 6.15 2.09 0.00 0.07 ind:imp:1p; +désobéit désobéir ver 6.15 2.09 0.34 0.27 ind:pre:3s;ind:pas:3s; +désoccupés désoccupé adj m p 0.00 0.20 0.00 0.20 +désodorisant désodorisant nom m s 0.45 0.27 0.32 0.27 +désodorisante désodorisant adj f s 0.09 0.07 0.01 0.07 +désodorisants désodorisant nom m p 0.45 0.27 0.13 0.00 +désodoriser désodoriser ver 0.04 0.07 0.04 0.00 inf; +désodorisés désodoriser ver m p 0.04 0.07 0.01 0.07 par:pas; +désodé désodé adj m s 0.00 0.07 0.00 0.07 +désoeuvre désoeuvre nom f s 0.00 0.07 0.00 0.07 +désoeuvrement désoeuvrement nom m s 0.03 2.36 0.03 2.30 +désoeuvrements désoeuvrement nom m p 0.03 2.36 0.00 0.07 +désoeuvré désoeuvrer ver m s 0.28 0.95 0.02 0.47 par:pas; +désoeuvrée désoeuvrer ver f s 0.28 0.95 0.10 0.14 par:pas; +désoeuvrées désoeuvré adj f p 0.17 3.04 0.01 0.34 +désoeuvrés désoeuvrer ver m p 0.28 0.95 0.16 0.27 par:pas; +désola désoler ver 297.27 14.46 0.00 0.27 ind:pas:3s; +désolai désoler ver 297.27 14.46 0.00 0.14 ind:pas:1s; +désolaient désoler ver 297.27 14.46 0.00 0.07 ind:imp:3p; +désolais désoler ver 297.27 14.46 0.00 0.27 ind:imp:1s; +désolait désoler ver 297.27 14.46 0.10 1.15 ind:imp:3s; +désolant désolant adj m s 0.88 2.50 0.65 1.08 +désolante désolant adj f s 0.88 2.50 0.08 1.08 +désolantes désolant adj f p 0.88 2.50 0.14 0.14 +désolants désolant adj m p 0.88 2.50 0.01 0.20 +désolation désolation nom f s 1.04 6.82 1.04 6.76 +désolations désolation nom f p 1.04 6.82 0.00 0.07 +désole désoler ver 297.27 14.46 2.08 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désolent désoler ver 297.27 14.46 0.01 0.00 ind:pre:3p; +désoler désoler ver 297.27 14.46 0.35 0.61 inf; +désolera désoler ver 297.27 14.46 0.02 0.00 ind:fut:3s; +désolerait désoler ver 297.27 14.46 0.03 0.00 cnd:pre:3s; +désoleront désoler ver 297.27 14.46 0.00 0.07 ind:fut:3p; +désoles désoler ver 297.27 14.46 0.02 0.07 ind:pre:2s; +désolez désoler ver 297.27 14.46 0.03 0.07 imp:pre:2p; +désolidarisa désolidariser ver 0.04 1.08 0.00 0.07 ind:pas:3s; +désolidarisaient désolidariser ver 0.04 1.08 0.00 0.07 ind:imp:3p; +désolidarisait désolidariser ver 0.04 1.08 0.00 0.20 ind:imp:3s; +désolidariser désolidariser ver 0.04 1.08 0.04 0.47 inf; +désolidariserai désolidariser ver 0.04 1.08 0.00 0.14 ind:fut:1s; +désolidarisé désolidariser ver m s 0.04 1.08 0.00 0.07 par:pas; +désolidarisés désolidariser ver m p 0.04 1.08 0.00 0.07 par:pas; +désolât désoler ver 297.27 14.46 0.00 0.07 sub:imp:3s; +désolé désolé adj m s 276.66 12.43 193.51 6.49 +désolée désoler ver f s 297.27 14.46 98.22 3.38 ind:imp:3s;par:pas; +désolées désolé adj f p 276.66 12.43 0.37 0.61 +désolés désoler ver m p 297.27 14.46 2.71 0.34 par:pas; +désopilant désopilant adj m s 0.42 1.08 0.41 0.61 +désopilante désopilant adj f s 0.42 1.08 0.01 0.14 +désopilantes désopilant adj f p 0.42 1.08 0.00 0.14 +désopilants désopilant adj m p 0.42 1.08 0.01 0.20 +désorbitation désorbitation nom f s 0.01 0.00 0.01 0.00 +désorbitent désorbiter ver 0.03 0.07 0.01 0.07 ind:pre:3p; +désorbiter désorbiter ver 0.03 0.07 0.02 0.00 inf; +désordonne désordonner ver 0.61 0.74 0.00 0.07 ind:pre:3s; +désordonné désordonner ver m s 0.61 0.74 0.27 0.20 par:pas; +désordonnée désordonné adj f s 0.40 5.41 0.22 1.62 +désordonnées désordonné adj f p 0.40 5.41 0.02 0.81 +désordonnément désordonnément adv 0.00 0.07 0.00 0.07 +désordonnés désordonner ver m p 0.61 0.74 0.21 0.14 par:pas; +désordre désordre nom m s 13.64 42.23 12.34 39.12 +désordres désordre nom m p 13.64 42.23 1.30 3.11 +désorganisait désorganiser ver 0.93 0.95 0.00 0.14 ind:imp:3s; +désorganisateur désorganisateur nom m s 0.00 0.07 0.00 0.07 +désorganisation désorganisation nom f s 0.01 0.47 0.01 0.47 +désorganise désorganiser ver 0.93 0.95 0.28 0.07 ind:pre:1s;ind:pre:3s; +désorganiser désorganiser ver 0.93 0.95 0.05 0.14 inf; +désorganisé désorganiser ver m s 0.93 0.95 0.43 0.20 par:pas; +désorganisée désorganiser ver f s 0.93 0.95 0.08 0.00 par:pas; +désorganisées désorganiser ver f p 0.93 0.95 0.01 0.20 par:pas; +désorganisés désorganiser ver m p 0.93 0.95 0.09 0.20 par:pas; +désorienta désorienter ver 1.32 2.77 0.00 0.14 ind:pas:3s; +désorientaient désorienter ver 1.32 2.77 0.00 0.07 ind:imp:3p; +désorientait désorienter ver 1.32 2.77 0.00 0.34 ind:imp:3s; +désorientant désorienter ver 1.32 2.77 0.01 0.20 par:pre; +désorientation désorientation nom f s 0.43 0.14 0.43 0.14 +désoriente désorienter ver 1.32 2.77 0.14 0.34 ind:pre:3s; +désorientent désorienter ver 1.32 2.77 0.00 0.07 ind:pre:3p; +désorienter désorienter ver 1.32 2.77 0.19 0.07 inf; +désorienterait désorienter ver 1.32 2.77 0.00 0.07 cnd:pre:3s; +désorienté désorienté adj m s 1.31 2.50 0.70 1.35 +désorientée désorienté adj f s 1.31 2.50 0.53 0.74 +désorientées désorienté adj f p 1.31 2.50 0.00 0.14 +désorientés désorienté adj m p 1.31 2.50 0.08 0.27 +désormais désormais adv 39.13 88.45 39.13 88.45 +désossage désossage nom m s 0.01 0.00 0.01 0.00 +désossait désosser ver 0.59 1.55 0.00 0.07 ind:imp:3s; +désosse désosser ver 0.59 1.55 0.05 0.20 imp:pre:2s;ind:pre:3s; +désossement désossement nom m s 0.01 0.00 0.01 0.00 +désosser désosser ver 0.59 1.55 0.13 0.34 inf; +désosseur désosseur nom m s 0.01 0.00 0.01 0.00 +désossé désosser ver m s 0.59 1.55 0.11 0.27 par:pas; +désossée désosser ver f s 0.59 1.55 0.31 0.34 par:pas; +désossées désosser ver f p 0.59 1.55 0.00 0.20 par:pas; +désossés désosser ver m p 0.59 1.55 0.00 0.14 par:pas; +désoxygénation désoxygénation nom f s 0.01 0.00 0.01 0.00 +désoxyribonucléique désoxyribonucléique adj m s 0.01 0.07 0.01 0.07 +déspiritualisation déspiritualisation nom f s 0.00 0.07 0.00 0.07 +déspiritualiser déspiritualiser ver 0.00 0.07 0.00 0.07 inf; +dusse devoir ver_sup 3232.80 1318.24 0.28 0.20 sub:imp:1s; +dussent devoir ver_sup 3232.80 1318.24 0.05 0.41 sub:imp:3p; +dusses devoir ver_sup 3232.80 1318.24 0.00 0.07 sub:imp:2s; +dussiez devoir ver_sup 3232.80 1318.24 0.03 0.20 sub:imp:2p; +dussions devoir ver_sup 3232.80 1318.24 0.03 0.20 sub:imp:1p; +déstabilisaient déstabiliser ver 1.80 0.61 0.02 0.00 ind:imp:3p; +déstabilisant déstabilisant adj m s 0.37 0.00 0.32 0.00 +déstabilisante déstabilisant adj f s 0.37 0.00 0.04 0.00 +déstabilisantes déstabilisant adj f p 0.37 0.00 0.01 0.00 +déstabilisation déstabilisation nom f s 0.18 0.07 0.18 0.07 +déstabilisatrice déstabilisateur adj f s 0.14 0.00 0.14 0.00 +déstabilise déstabiliser ver 1.80 0.61 0.29 0.00 ind:pre:3s; +déstabilisent déstabiliser ver 1.80 0.61 0.05 0.00 ind:pre:3p; +déstabiliser déstabiliser ver 1.80 0.61 0.80 0.47 inf; +déstabilisera déstabiliser ver 1.80 0.61 0.06 0.00 ind:fut:3s; +déstabiliserait déstabiliser ver 1.80 0.61 0.10 0.00 cnd:pre:3s; +déstabilisez déstabiliser ver 1.80 0.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +déstabilisé déstabiliser ver m s 1.80 0.61 0.35 0.07 par:pas; +déstabilisée déstabiliser ver f s 1.80 0.61 0.08 0.00 par:pas; +déstabilisés déstabiliser ver m p 1.80 0.61 0.01 0.07 par:pas; +déstalinisation déstalinisation nom f s 0.00 0.07 0.00 0.07 +déstockage déstockage nom m s 0.03 0.00 0.03 0.00 +déstocké déstocker ver m s 0.01 0.07 0.01 0.07 par:pas; +déstructuration déstructuration nom f s 0.03 0.00 0.03 0.00 +déstructurer déstructurer ver 0.03 0.07 0.01 0.07 inf; +déstructuré déstructurer ver m s 0.03 0.07 0.02 0.00 par:pas; +désubjectiviser désubjectiviser ver 0.00 0.07 0.00 0.07 inf; +déséchouée déséchouer ver f s 0.00 0.07 0.00 0.07 par:pas; +désuet désuet adj m s 0.36 3.38 0.16 1.62 +désuets désuet adj m p 0.36 3.38 0.03 0.47 +déségrégation déségrégation nom f s 0.03 0.00 0.03 0.00 +désuni désuni adj m s 0.07 0.54 0.02 0.07 +désunie désuni adj f s 0.07 0.54 0.01 0.07 +désunies désuni adj f p 0.07 0.54 0.01 0.14 +désunion désunion nom f s 0.20 0.20 0.20 0.20 +désunir désunir ver 0.27 1.15 0.13 0.54 inf; +désunirait désunir ver 0.27 1.15 0.00 0.07 cnd:pre:3s; +désunirent désunir ver 0.27 1.15 0.00 0.07 ind:pas:3p; +désunis désuni adj m p 0.07 0.54 0.03 0.27 +désunissaient désunir ver 0.27 1.15 0.00 0.14 ind:imp:3p; +désunissait désunir ver 0.27 1.15 0.00 0.07 ind:imp:3s; +désunissant désunir ver 0.27 1.15 0.00 0.07 par:pre; +désunisse désunir ver 0.27 1.15 0.01 0.00 sub:pre:3s; +désunissent désunir ver 0.27 1.15 0.00 0.07 ind:pre:3p; +désunit désunir ver 0.27 1.15 0.12 0.07 ind:pre:3s;ind:pas:3s; +désépaissir désépaissir ver 0.01 0.07 0.00 0.07 inf; +désépaissis désépaissir ver 0.01 0.07 0.01 0.00 ind:pre:1s; +déséquilibra déséquilibrer ver 0.74 1.89 0.00 0.14 ind:pas:3s; +déséquilibraient déséquilibrer ver 0.74 1.89 0.00 0.07 ind:imp:3p; +déséquilibrais déséquilibrer ver 0.74 1.89 0.00 0.07 ind:imp:1s; +déséquilibrait déséquilibrer ver 0.74 1.89 0.00 0.27 ind:imp:3s; +déséquilibrant déséquilibrer ver 0.74 1.89 0.00 0.07 par:pre; +déséquilibre déséquilibre nom m s 0.83 2.64 0.82 2.36 +déséquilibrer déséquilibrer ver 0.74 1.89 0.07 0.27 inf; +déséquilibres déséquilibre nom m p 0.83 2.64 0.01 0.27 +déséquilibrez déséquilibrer ver 0.74 1.89 0.01 0.00 ind:pre:2p; +déséquilibrât déséquilibrer ver 0.74 1.89 0.00 0.07 sub:imp:3s; +déséquilibré déséquilibrer ver m s 0.74 1.89 0.41 0.47 par:pas; +déséquilibrée déséquilibrer ver f s 0.74 1.89 0.16 0.34 par:pas; +déséquilibrées déséquilibré nom f p 0.20 1.42 0.01 0.07 +déséquilibrés déséquilibré adj m p 0.41 1.08 0.04 0.14 +déséquipent déséquiper ver 0.00 0.47 0.00 0.07 ind:pre:3p; +déséquiper déséquiper ver 0.00 0.47 0.00 0.20 inf; +déséquipé déséquiper ver m s 0.00 0.47 0.00 0.14 par:pas; +déséquipés déséquiper ver m p 0.00 0.47 0.00 0.07 par:pas; +désuète désuet adj f s 0.36 3.38 0.04 0.74 +désuètes désuet adj f p 0.36 3.38 0.14 0.54 +désuétude désuétude nom f s 0.06 0.27 0.06 0.27 +désynchronisation désynchronisation nom f s 0.01 0.00 0.01 0.00 +désynchronisé désynchroniser ver m s 0.01 0.07 0.01 0.07 par:pas; +dut devoir ver_sup 3232.80 1318.24 1.91 44.19 ind:pas:3s; +détînt détenir ver 12.53 10.61 0.00 0.07 sub:imp:3s; +détacha détacher ver 19.69 65.47 0.13 6.22 ind:pas:3s; +détachable détachable adj s 0.14 0.00 0.14 0.00 +détachai détacher ver 19.69 65.47 0.00 0.14 ind:pas:1s; +détachaient détacher ver 19.69 65.47 0.01 3.99 ind:imp:3p; +détachais détacher ver 19.69 65.47 0.02 0.14 ind:imp:1s;ind:imp:2s; +détachait détacher ver 19.69 65.47 0.17 8.51 ind:imp:3s; +détachant détachant nom m s 0.16 0.54 0.16 0.41 +détachants détachant nom m p 0.16 0.54 0.00 0.14 +détache détacher ver 19.69 65.47 7.44 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +détachement détachement nom m s 2.50 17.84 2.25 15.14 +détachements détachement nom m p 2.50 17.84 0.25 2.70 +détachent détacher ver 19.69 65.47 0.45 3.31 ind:pre:3p; +détacher détacher ver 19.69 65.47 4.44 15.14 inf; +détacherai détacher ver 19.69 65.47 0.04 0.00 ind:fut:1s; +détacheraient détacher ver 19.69 65.47 0.00 0.07 cnd:pre:3p; +détacherais détacher ver 19.69 65.47 0.01 0.07 cnd:pre:1s; +détacherait détacher ver 19.69 65.47 0.02 0.41 cnd:pre:3s; +détacherons détacher ver 19.69 65.47 0.00 0.07 ind:fut:1p; +détacheront détacher ver 19.69 65.47 0.01 0.00 ind:fut:3p; +détaches détacher ver 19.69 65.47 0.23 0.34 ind:pre:2s; +détacheur détacheur nom m s 0.10 0.00 0.10 0.00 +détachez détacher ver 19.69 65.47 3.83 0.41 imp:pre:2p;ind:pre:2p; +détachions détacher ver 19.69 65.47 0.00 0.07 ind:imp:1p; +détachons détacher ver 19.69 65.47 0.18 0.14 imp:pre:1p;ind:pre:1p; +détachât détacher ver 19.69 65.47 0.00 0.14 sub:imp:3s; +détachèrent détacher ver 19.69 65.47 0.01 0.81 ind:pas:3p; +détaché détacher ver m s 19.69 65.47 1.45 7.03 par:pas; +détachée détacher ver f s 19.69 65.47 0.57 2.64 par:pas; +détachées détaché adj f p 2.88 12.50 1.32 1.42 +détachés détacher ver m p 19.69 65.47 0.37 1.15 par:pas; +détail détail nom m s 55.78 91.15 19.82 37.97 +détailla détailler ver 2.28 14.59 0.00 0.95 ind:pas:3s; +détaillai détailler ver 2.28 14.59 0.00 0.20 ind:pas:1s; +détaillaient détailler ver 2.28 14.59 0.00 0.20 ind:imp:3p; +détaillais détailler ver 2.28 14.59 0.00 0.34 ind:imp:1s; +détaillait détailler ver 2.28 14.59 0.02 1.89 ind:imp:3s; +détaillant détailler ver 2.28 14.59 0.21 1.28 par:pre; +détaillante détaillant adj f s 0.00 0.20 0.00 0.07 +détaillants détaillant nom m p 0.14 0.14 0.06 0.07 +détaille détailler ver 2.28 14.59 0.20 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détailler détailler ver 2.28 14.59 0.14 4.26 inf; +détaillera détailler ver 2.28 14.59 0.01 0.00 ind:fut:3s; +détaillerai détailler ver 2.28 14.59 0.01 0.07 ind:fut:1s; +détaillez détailler ver 2.28 14.59 0.07 0.07 imp:pre:2p;ind:pre:2p; +détaillions détailler ver 2.28 14.59 0.00 0.07 ind:imp:1p; +détaillons détailler ver 2.28 14.59 0.00 0.07 ind:pre:1p; +détaillât détailler ver 2.28 14.59 0.00 0.07 sub:imp:3s; +détaillèrent détailler ver 2.28 14.59 0.00 0.14 ind:pas:3p; +détaillé détaillé adj m s 1.94 2.57 1.12 1.22 +détaillée détailler ver f s 2.28 14.59 0.68 0.74 par:pas; +détaillées détaillé adj f p 1.94 2.57 0.16 0.47 +détaillés détaillé adj m p 1.94 2.57 0.23 0.27 +détails détail nom m p 55.78 91.15 35.96 53.18 +détala détaler ver 1.13 5.00 0.00 0.88 ind:pas:3s; +détalai détaler ver 1.13 5.00 0.00 0.34 ind:pas:1s; +détalaient détaler ver 1.13 5.00 0.01 0.34 ind:imp:3p; +détalait détaler ver 1.13 5.00 0.02 0.27 ind:imp:3s; +détalant détaler ver 1.13 5.00 0.01 0.54 par:pre; +détale détaler ver 1.13 5.00 0.28 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détalent détaler ver 1.13 5.00 0.06 0.20 ind:pre:3p; +détaler détaler ver 1.13 5.00 0.14 1.28 inf; +détaleraient détaler ver 1.13 5.00 0.01 0.00 cnd:pre:3p; +détaleront détaler ver 1.13 5.00 0.03 0.00 ind:fut:3p; +détales détaler ver 1.13 5.00 0.05 0.00 ind:pre:2s; +détalions détaler ver 1.13 5.00 0.00 0.07 ind:imp:1p; +détalonner détalonner ver 0.01 0.00 0.01 0.00 inf; +détalât détaler ver 1.13 5.00 0.00 0.07 sub:imp:3s; +détalèrent détaler ver 1.13 5.00 0.00 0.20 ind:pas:3p; +détalé détaler ver m s 1.13 5.00 0.52 0.27 par:pas; +détartrage détartrage nom m s 0.12 0.00 0.12 0.00 +détartrant détartrant nom m s 0.02 0.00 0.02 0.00 +détartrants détartrant adj m p 0.00 0.14 0.00 0.14 +détaxe détaxe nom f s 0.02 0.00 0.01 0.00 +détaxes détaxe nom f p 0.02 0.00 0.01 0.00 +détaxée détaxer ver f s 0.11 0.07 0.10 0.00 par:pas; +détaxées détaxer ver f p 0.11 0.07 0.01 0.07 par:pas; +détecta détecter ver 9.86 3.04 0.00 0.07 ind:pas:3s; +détectable détectable adj s 0.22 0.00 0.17 0.00 +détectables détectable adj p 0.22 0.00 0.05 0.00 +détectai détecter ver 9.86 3.04 0.00 0.07 ind:pas:1s; +détectaient détecter ver 9.86 3.04 0.01 0.00 ind:imp:3p; +détectait détecter ver 9.86 3.04 0.00 0.20 ind:imp:3s; +détecte détecter ver 9.86 3.04 2.23 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détectent détecter ver 9.86 3.04 0.50 0.27 ind:pre:3p; +détecter détecter ver 9.86 3.04 2.49 1.49 inf; +détectera détecter ver 9.86 3.04 0.09 0.00 ind:fut:3s; +détecteront détecter ver 9.86 3.04 0.07 0.00 ind:fut:3p; +détecteur détecteur nom m s 8.05 0.27 5.19 0.20 +détecteurs détecteur nom m p 8.05 0.27 2.86 0.07 +détectez détecter ver 9.86 3.04 0.07 0.00 imp:pre:2p;ind:pre:2p; +détection détection nom f s 1.89 0.27 1.84 0.27 +détections détection nom f p 1.89 0.27 0.05 0.00 +détective_conseil détective_conseil nom s 0.01 0.00 0.01 0.00 +détective détective nom s 24.61 3.92 20.77 2.36 +détectives_conseil détectives_conseil nom p 0.01 0.00 0.01 0.00 +détectives détective nom p 24.61 3.92 3.84 1.55 +détectons détecter ver 9.86 3.04 0.10 0.07 ind:pre:1p; +détecté détecter ver m s 9.86 3.04 2.94 0.27 par:pas; +détectée détecter ver f s 9.86 3.04 0.64 0.00 par:pas; +détectées détecter ver f p 9.86 3.04 0.15 0.07 par:pas; +détectés détecter ver m p 9.86 3.04 0.56 0.07 par:pas; +déteignaient déteindre ver 1.47 3.38 0.00 0.07 ind:imp:3p; +déteignait déteindre ver 1.47 3.38 0.01 0.14 ind:imp:3s; +déteignant déteindre ver 1.47 3.38 0.00 0.07 par:pre; +déteigne déteindre ver 1.47 3.38 0.13 0.07 sub:pre:3s; +déteignent déteindre ver 1.47 3.38 0.03 0.20 ind:pre:3p; +déteignes déteindre ver 1.47 3.38 0.01 0.00 sub:pre:2s; +déteindra déteindre ver 1.47 3.38 0.05 0.00 ind:fut:3s; +déteindre déteindre ver 1.47 3.38 0.51 0.61 inf; +déteint déteindre ver m s 1.47 3.38 0.73 1.42 ind:pre:3s;par:pas; +déteinte déteindre ver f s 1.47 3.38 0.00 0.27 par:pas; +déteintes déteindre ver f p 1.47 3.38 0.00 0.34 par:pas; +déteints déteindre ver m p 1.47 3.38 0.00 0.20 par:pas; +détela dételer ver 0.45 1.82 0.00 0.14 ind:pas:3s; +dételage dételage nom m s 0.01 0.00 0.01 0.00 +dételaient dételer ver 0.45 1.82 0.01 0.07 ind:imp:3p; +dételait dételer ver 0.45 1.82 0.00 0.07 ind:imp:3s; +dételer dételer ver 0.45 1.82 0.04 0.61 inf; +dételez dételer ver 0.45 1.82 0.23 0.00 imp:pre:2p; +dételle dételer ver 0.45 1.82 0.16 0.07 imp:pre:2s;ind:pre:3s; +dételé dételer ver m s 0.45 1.82 0.02 0.47 par:pas; +dételée dételer ver f s 0.45 1.82 0.00 0.14 par:pas; +dételées dételer ver f p 0.45 1.82 0.00 0.14 par:pas; +dételés dételer ver m p 0.45 1.82 0.00 0.14 par:pas; +détenaient détenir ver 12.53 10.61 0.13 1.01 ind:imp:3p; +détenais détenir ver 12.53 10.61 0.06 0.27 ind:imp:1s;ind:imp:2s; +détenait détenir ver 12.53 10.61 0.60 2.91 ind:imp:3s; +détenant détenir ver 12.53 10.61 0.09 0.00 par:pre; +détend détendre ver 44.39 23.58 3.21 2.70 ind:pre:3s; +détendît détendre ver 44.39 23.58 0.00 0.07 sub:imp:3s; +détendaient détendre ver 44.39 23.58 0.10 0.74 ind:imp:3p; +détendais détendre ver 44.39 23.58 0.03 0.00 ind:imp:1s;ind:imp:2s; +détendait détendre ver 44.39 23.58 0.08 1.69 ind:imp:3s; +détendant détendre ver 44.39 23.58 0.01 0.47 par:pre; +détende détendre ver 44.39 23.58 0.33 0.14 sub:pre:1s;sub:pre:3s; +détendent détendre ver 44.39 23.58 0.15 0.74 ind:pre:3p; +détendes détendre ver 44.39 23.58 0.36 0.00 sub:pre:2s; +détendeur détendeur nom m s 0.48 0.00 0.48 0.00 +détendez détendre ver 44.39 23.58 9.71 0.41 imp:pre:2p;ind:pre:2p; +détendiez détendre ver 44.39 23.58 0.09 0.07 ind:imp:2p; +détendions détendre ver 44.39 23.58 0.00 0.14 ind:imp:1p; +détendirent détendre ver 44.39 23.58 0.01 0.61 ind:pas:3p; +détendis détendre ver 44.39 23.58 0.00 0.20 ind:pas:1s; +détendit détendre ver 44.39 23.58 0.11 3.85 ind:pas:3s; +détendons détendre ver 44.39 23.58 0.07 0.00 imp:pre:1p;ind:pre:1p; +détendra détendre ver 44.39 23.58 0.55 0.07 ind:fut:3s; +détendrai détendre ver 44.39 23.58 0.05 0.00 ind:fut:1s; +détendraient détendre ver 44.39 23.58 0.01 0.07 cnd:pre:3p; +détendrait détendre ver 44.39 23.58 0.35 0.20 cnd:pre:3s; +détendre détendre ver 44.39 23.58 11.77 5.41 inf;; +détendrez détendre ver 44.39 23.58 0.02 0.00 ind:fut:2p; +détendrons détendre ver 44.39 23.58 0.01 0.00 ind:fut:1p; +détends détendre ver 44.39 23.58 15.11 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détendu détendu adj m s 2.90 7.43 1.77 3.99 +détendue détendu adj f s 2.90 7.43 0.89 1.76 +détendues détendu adj f p 2.90 7.43 0.02 0.27 +détendus détendu adj m p 2.90 7.43 0.22 1.42 +détenez détenir ver 12.53 10.61 0.47 0.00 imp:pre:2p;ind:pre:2p; +déteniez détenir ver 12.53 10.61 0.04 0.14 ind:imp:2p; +détenions détenir ver 12.53 10.61 0.01 0.07 ind:imp:1p; +détenir détenir ver 12.53 10.61 1.11 1.89 inf; +détenons détenir ver 12.53 10.61 0.64 0.14 imp:pre:1p;ind:pre:1p; +détente détente nom f s 5.47 10.68 5.42 10.47 +détentes détente nom f p 5.47 10.68 0.06 0.20 +détenteur détenteur nom m s 0.67 1.55 0.33 0.81 +détenteurs détenteur nom m p 0.67 1.55 0.23 0.68 +détention détention nom f s 6.98 2.84 6.85 2.84 +détentions détention nom f p 6.98 2.84 0.13 0.00 +détentrice détenteur nom f s 0.67 1.55 0.11 0.07 +détentrices détentrice adj f p 0.00 0.07 0.00 0.07 +détenu détenu nom m s 12.67 6.08 3.64 2.09 +détenue détenir ver f s 12.53 10.61 0.45 0.07 par:pas; +détenues détenu nom f p 12.67 6.08 0.16 0.00 +détenus détenu nom m p 12.67 6.08 8.57 3.72 +détergeant déterger ver 0.08 0.00 0.08 0.00 par:pre; +détergent détergent nom m s 1.25 0.20 0.99 0.07 +détergents détergent nom m p 1.25 0.20 0.26 0.14 +détermina déterminer ver 14.51 11.96 0.02 0.41 ind:pas:3s; +déterminai déterminer ver 14.51 11.96 0.00 0.07 ind:pas:1s; +déterminaient déterminer ver 14.51 11.96 0.01 0.41 ind:imp:3p; +déterminais déterminer ver 14.51 11.96 0.03 0.07 ind:imp:1s;ind:imp:2s; +déterminait déterminer ver 14.51 11.96 0.04 0.47 ind:imp:3s; +déterminant déterminant adj m s 0.41 1.69 0.33 0.74 +déterminante déterminant adj f s 0.41 1.69 0.04 0.68 +déterminantes déterminant adj f p 0.41 1.69 0.02 0.07 +déterminants déterminant adj m p 0.41 1.69 0.01 0.20 +détermination détermination nom f s 2.75 4.86 2.75 4.59 +déterminations détermination nom f p 2.75 4.86 0.00 0.27 +détermine déterminer ver 14.51 11.96 1.56 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déterminent déterminer ver 14.51 11.96 0.26 0.47 ind:pre:3p; +déterminer déterminer ver 14.51 11.96 6.10 4.32 inf; +déterminera déterminer ver 14.51 11.96 0.36 0.07 ind:fut:3s; +détermineraient déterminer ver 14.51 11.96 0.00 0.07 cnd:pre:3p; +déterminerait déterminer ver 14.51 11.96 0.03 0.14 cnd:pre:3s; +déterminerons déterminer ver 14.51 11.96 0.08 0.00 ind:fut:1p; +détermineront déterminer ver 14.51 11.96 0.19 0.00 ind:fut:3p; +déterminez déterminer ver 14.51 11.96 0.13 0.00 imp:pre:2p;ind:pre:2p; +déterminiez déterminer ver 14.51 11.96 0.04 0.00 ind:imp:2p; +déterminions déterminer ver 14.51 11.96 0.01 0.00 ind:imp:1p; +déterminisme déterminisme nom m s 0.22 0.47 0.22 0.47 +déterministe déterministe adj s 0.10 0.14 0.10 0.07 +déterministes déterministe adj m p 0.10 0.14 0.00 0.07 +déterminons déterminer ver 14.51 11.96 0.21 0.00 imp:pre:1p;ind:pre:1p; +déterminèrent déterminer ver 14.51 11.96 0.00 0.27 ind:pas:3p; +déterminé déterminer ver m s 14.51 11.96 3.05 2.16 par:pas; +déterminée déterminer ver f s 14.51 11.96 1.46 1.28 par:pas; +déterminées déterminé adj f p 2.39 4.32 0.24 0.41 +déterminément déterminément adv 0.00 0.34 0.00 0.34 +déterminés déterminer ver m p 14.51 11.96 0.67 0.54 par:pas; +déterra déterrer ver 5.44 3.51 0.04 0.14 ind:pas:3s; +déterrage déterrage nom m s 0.01 0.00 0.01 0.00 +déterraient déterrer ver 5.44 3.51 0.01 0.20 ind:imp:3p; +déterrais déterrer ver 5.44 3.51 0.00 0.07 ind:imp:1s; +déterrait déterrer ver 5.44 3.51 0.02 0.27 ind:imp:3s; +déterrant déterrer ver 5.44 3.51 0.05 0.14 par:pre; +déterre déterrer ver 5.44 3.51 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déterrent déterrer ver 5.44 3.51 0.18 0.14 ind:pre:3p; +déterrer déterrer ver 5.44 3.51 2.05 0.68 inf; +déterrera déterrer ver 5.44 3.51 0.04 0.07 ind:fut:3s; +déterrerai déterrer ver 5.44 3.51 0.32 0.00 ind:fut:1s; +déterrerait déterrer ver 5.44 3.51 0.00 0.07 cnd:pre:3s; +déterrerez déterrer ver 5.44 3.51 0.01 0.00 ind:fut:2p; +déterreront déterrer ver 5.44 3.51 0.03 0.00 ind:fut:3p; +déterreur déterreur nom m s 0.07 0.00 0.02 0.00 +déterreurs déterreur nom m p 0.07 0.00 0.04 0.00 +déterreuse déterreur nom f s 0.07 0.00 0.01 0.00 +déterrez déterrer ver 5.44 3.51 0.21 0.00 imp:pre:2p;ind:pre:2p; +déterrions déterrer ver 5.44 3.51 0.02 0.07 ind:imp:1p; +déterrons déterrer ver 5.44 3.51 0.02 0.00 imp:pre:1p;ind:pre:1p; +déterré déterrer ver m s 5.44 3.51 1.86 1.08 par:pas; +déterrée déterré nom f s 0.40 0.07 0.08 0.00 +déterrées déterrer ver f p 5.44 3.51 0.03 0.07 par:pas; +déterrés déterrer ver m p 5.44 3.51 0.10 0.07 par:pas; +détersifs détersif adj m p 0.00 0.14 0.00 0.07 +détersive détersif adj f s 0.00 0.14 0.00 0.07 +détesta détester ver 122.87 62.64 0.11 0.61 ind:pas:3s; +détestable détestable adj s 1.93 5.34 1.68 4.12 +détestablement détestablement adv 0.00 0.07 0.00 0.07 +détestables détestable adj p 1.93 5.34 0.25 1.22 +détestai détester ver 122.87 62.64 0.01 0.54 ind:pas:1s; +détestaient détester ver 122.87 62.64 0.73 2.16 ind:imp:3p; +détestais détester ver 122.87 62.64 5.48 3.65 ind:imp:1s;ind:imp:2s; +détestait détester ver 122.87 62.64 4.25 15.47 ind:imp:3s; +détestant détester ver 122.87 62.64 0.11 0.68 par:pre; +détestation détestation nom f s 0.00 0.61 0.00 0.47 +détestations détestation nom f p 0.00 0.61 0.00 0.14 +déteste détester ver 122.87 62.64 79.45 20.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +détestent détester ver 122.87 62.64 6.63 2.64 ind:pre:3p; +détester détester ver 122.87 62.64 6.35 5.47 inf;; +détestera détester ver 122.87 62.64 0.24 0.20 ind:fut:3s; +détesterai détester ver 122.87 62.64 0.26 0.00 ind:fut:1s; +détesteraient détester ver 122.87 62.64 0.38 0.07 cnd:pre:3p; +détesterais détester ver 122.87 62.64 1.32 0.88 cnd:pre:1s;cnd:pre:2s; +détesterait détester ver 122.87 62.64 0.30 0.14 cnd:pre:3s; +détesteras détester ver 122.87 62.64 0.23 0.00 ind:fut:2s; +détesteriez détester ver 122.87 62.64 0.01 0.00 cnd:pre:2p; +détesteront détester ver 122.87 62.64 0.07 0.00 ind:fut:3p; +détestes détester ver 122.87 62.64 8.13 1.82 ind:pre:2s;sub:pre:2s; +détestez détester ver 122.87 62.64 2.78 0.61 imp:pre:2p;ind:pre:2p; +détestiez détester ver 122.87 62.64 0.42 0.20 ind:imp:2p; +détestions détester ver 122.87 62.64 0.05 1.01 ind:imp:1p;sub:pre:1p; +détestons détester ver 122.87 62.64 0.64 0.61 imp:pre:1p;ind:pre:1p; +détestât détester ver 122.87 62.64 0.00 0.07 sub:imp:3s; +détesté détester ver m s 122.87 62.64 4.13 4.53 par:pas; +détestée détester ver f s 122.87 62.64 0.52 0.14 par:pas; +détestés détester ver m p 122.87 62.64 0.26 0.34 par:pas; +déçûmes décevoir ver 32.30 21.69 0.00 0.07 ind:pas:1p; +duègne duègne nom f s 0.03 0.81 0.03 0.81 +déçois décevoir ver 32.30 21.69 3.45 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +déçoit décevoir ver 32.30 21.69 1.18 0.34 ind:pre:3s; +déçoive décevoir ver 32.30 21.69 0.03 0.14 sub:pre:1s;sub:pre:3s; +déçoivent décevoir ver 32.30 21.69 0.34 0.20 ind:pre:3p; +déçoives décevoir ver 32.30 21.69 0.02 0.00 sub:pre:2s; +déçu décevoir ver m s 32.30 21.69 10.09 9.12 par:pas; +déçue décevoir ver f s 32.30 21.69 4.37 3.38 par:pas; +déçues décevoir ver f p 32.30 21.69 0.18 0.20 par:pas; +déçurent décevoir ver 32.30 21.69 0.00 0.14 ind:pas:3p; +déçus décevoir ver m p 32.30 21.69 1.18 1.15 ind:pas:1s;par:pas; +déçut décevoir ver 32.30 21.69 0.01 0.81 ind:pas:3s; +détiendra détenir ver 12.53 10.61 0.02 0.07 ind:fut:3s; +détiendrai détenir ver 12.53 10.61 0.02 0.00 ind:fut:1s; +détiendraient détenir ver 12.53 10.61 0.00 0.07 cnd:pre:3p; +détiendrait détenir ver 12.53 10.61 0.01 0.00 cnd:pre:3s; +détiendras détenir ver 12.53 10.61 0.03 0.00 ind:fut:2s; +détiendrez détenir ver 12.53 10.61 0.01 0.00 ind:fut:2p; +détiendront détenir ver 12.53 10.61 0.02 0.00 ind:fut:3p; +détienne détenir ver 12.53 10.61 0.02 0.07 sub:pre:1s;sub:pre:3s; +détiennent détenir ver 12.53 10.61 1.21 0.61 ind:pre:3p; +détiens détenir ver 12.53 10.61 1.76 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détient détenir ver 12.53 10.61 3.48 1.28 ind:pre:3s; +détimbrée détimbré adj f s 0.00 0.27 0.00 0.27 +détint détenir ver 12.53 10.61 0.00 0.07 ind:pas:3s; +détisse détisser ver 0.00 0.07 0.00 0.07 ind:pre:1s; +détonait détoner ver 0.37 0.20 0.01 0.20 ind:imp:3s; +détonant détonant adj m s 0.09 0.34 0.03 0.27 +détonante détonant adj f s 0.09 0.34 0.01 0.00 +détonants détonant adj m p 0.09 0.34 0.05 0.07 +détonateur détonateur nom m s 4.84 0.68 3.23 0.34 +détonateurs détonateur nom m p 4.84 0.68 1.60 0.34 +détonation détonation nom f s 1.44 9.26 1.17 4.66 +détonations détonation nom f p 1.44 9.26 0.27 4.59 +détoner détoner ver 0.37 0.20 0.30 0.00 inf; +détonera détoner ver 0.37 0.20 0.04 0.00 ind:fut:3s; +détonna détonner ver 0.32 1.55 0.00 0.07 ind:pas:3s; +détonnaient détonner ver 0.32 1.55 0.00 0.27 ind:imp:3p; +détonnait détonner ver 0.32 1.55 0.12 0.61 ind:imp:3s; +détonnant détonner ver 0.32 1.55 0.03 0.00 par:pre; +détonne détonner ver 0.32 1.55 0.05 0.34 ind:pre:1s;ind:pre:3s; +détonnent détonner ver 0.32 1.55 0.01 0.07 ind:pre:3p; +détonner détonner ver 0.32 1.55 0.10 0.20 inf; +détonée détoner ver f s 0.37 0.20 0.01 0.00 par:pas; +détord détordre ver 0.01 0.07 0.01 0.00 ind:pre:3s; +détordit détordre ver 0.01 0.07 0.00 0.07 ind:pas:3s; +détortillai détortiller ver 0.00 0.14 0.00 0.07 ind:pas:1s; +détortille détortiller ver 0.00 0.14 0.00 0.07 ind:pre:3s; +détour détour nom m s 6.82 24.86 5.43 16.76 +détourage détourage nom m s 0.14 0.00 0.14 0.00 +détourna détourner ver 14.34 54.86 0.12 11.22 ind:pas:3s; +détournai détourner ver 14.34 54.86 0.00 1.96 ind:pas:1s; +détournaient détourner ver 14.34 54.86 0.00 1.76 ind:imp:3p; +détournais détourner ver 14.34 54.86 0.51 0.54 ind:imp:1s;ind:imp:2s; +détournait détourner ver 14.34 54.86 0.09 4.05 ind:imp:3s; +détournant détourner ver 14.34 54.86 0.32 5.07 par:pre; +détourne détourner ver 14.34 54.86 1.71 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détournement détournement nom m s 2.60 2.09 2.35 1.89 +détournements détournement nom m p 2.60 2.09 0.26 0.20 +détournent détourner ver 14.34 54.86 0.58 0.88 ind:pre:3p; +détourner détourner ver 14.34 54.86 5.27 12.77 inf;; +détournera détourner ver 14.34 54.86 0.23 0.07 ind:fut:3s; +détournerai détourner ver 14.34 54.86 0.05 0.07 ind:fut:1s; +détourneraient détourner ver 14.34 54.86 0.00 0.07 cnd:pre:3p; +détournerais détourner ver 14.34 54.86 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +détournerait détourner ver 14.34 54.86 0.20 0.27 cnd:pre:3s; +détourneront détourner ver 14.34 54.86 0.01 0.14 ind:fut:3p; +détournes détourner ver 14.34 54.86 0.16 0.14 ind:pre:2s; +détourneur détourneur nom m s 0.00 0.07 0.00 0.07 +détournez détourner ver 14.34 54.86 0.90 0.20 imp:pre:2p;ind:pre:2p; +détourniez détourner ver 14.34 54.86 0.02 0.00 ind:imp:2p; +détournions détourner ver 14.34 54.86 0.01 0.07 ind:imp:1p; +détournons détourner ver 14.34 54.86 0.29 0.14 imp:pre:1p;ind:pre:1p; +détournât détourner ver 14.34 54.86 0.00 0.14 sub:imp:3s; +détournèrent détourner ver 14.34 54.86 0.12 0.61 ind:pas:3p; +détourné détourner ver m s 14.34 54.86 2.73 5.00 imp:pre:2s;par:pas; +détournée détourner ver f s 14.34 54.86 0.48 1.69 par:pas; +détournées détourné adj f p 0.65 2.77 0.06 0.47 +détournés détourner ver m p 14.34 54.86 0.46 1.42 par:pas; +détours détour nom m p 6.82 24.86 1.39 8.11 +détrônaient détrôner ver 0.46 1.28 0.00 0.07 ind:imp:3p; +détrône détrôner ver 0.46 1.28 0.03 0.07 ind:pre:3s; +détrônement détrônement nom m s 0.01 0.00 0.01 0.00 +détrôner détrôner ver 0.46 1.28 0.19 0.54 inf; +détrônât détrôner ver 0.46 1.28 0.00 0.07 sub:imp:3s; +détrôné détrôné adj m s 0.26 0.14 0.25 0.07 +détrônée détrôner ver f s 0.46 1.28 0.04 0.07 par:pas; +détracteur détracteur nom m s 0.29 1.15 0.03 0.20 +détracteurs détracteur nom m p 0.29 1.15 0.26 0.95 +détraquaient détraquer ver 2.24 2.30 0.02 0.07 ind:imp:3p; +détraquais détraquer ver 2.24 2.30 0.00 0.07 ind:imp:1s; +détraquant détraquer ver 2.24 2.30 0.00 0.14 par:pre; +détraque détraquer ver 2.24 2.30 0.47 0.61 imp:pre:2s;ind:pre:3s; +détraquement détraquement nom m s 0.01 0.14 0.01 0.14 +détraquent détraquer ver 2.24 2.30 0.12 0.00 ind:pre:3p; +détraquer détraquer ver 2.24 2.30 0.41 0.34 inf; +détraquera détraquer ver 2.24 2.30 0.01 0.00 ind:fut:3s; +détraquerais détraquer ver 2.24 2.30 0.01 0.00 cnd:pre:1s; +détraqué détraqué nom m s 1.57 0.88 1.06 0.41 +détraquée détraqué adj f s 0.84 1.62 0.29 0.81 +détraquées détraquer ver f p 2.24 2.30 0.01 0.07 par:pas; +détraqués détraqué nom m p 1.57 0.88 0.39 0.41 +détrempaient détremper ver 0.40 5.34 0.00 0.07 ind:imp:3p; +détrempait détremper ver 0.40 5.34 0.00 0.20 ind:imp:3s; +détrempant détremper ver 0.40 5.34 0.00 0.07 par:pre; +détrempe détrempe nom f s 0.10 0.14 0.10 0.14 +détremper détremper ver 0.40 5.34 0.00 0.07 inf; +détrempé détremper ver m s 0.40 5.34 0.02 1.82 par:pas; +détrempée détremper ver f s 0.40 5.34 0.21 1.42 par:pas; +détrempées détremper ver f p 0.40 5.34 0.01 0.81 par:pas; +détrempés détremper ver m p 0.40 5.34 0.16 0.68 par:pas; +détresse détresse nom f s 8.70 19.05 8.48 18.38 +détresses détresse nom f p 8.70 19.05 0.22 0.68 +détribalisée détribaliser ver f s 0.00 0.07 0.00 0.07 par:pas; +détricote détricoter ver 0.00 0.14 0.00 0.07 ind:pre:1s; +détricoter détricoter ver 0.00 0.14 0.00 0.07 inf; +détriment détriment nom m s 0.57 3.04 0.57 2.97 +détriments détriment nom m p 0.57 3.04 0.00 0.07 +détritiques détritique adj p 0.00 0.07 0.00 0.07 +détritus détritus nom m 1.16 4.80 1.16 4.80 +détroit détroit nom m s 3.04 1.55 3.02 1.35 +détroits détroit nom m p 3.04 1.55 0.02 0.20 +détrompa détromper ver 2.61 3.04 0.00 0.14 ind:pas:3s; +détrompai détromper ver 2.61 3.04 0.00 0.14 ind:pas:1s; +détrompais détromper ver 2.61 3.04 0.00 0.14 ind:imp:1s; +détrompait détromper ver 2.61 3.04 0.00 0.07 ind:imp:3s; +détrompe détromper ver 2.61 3.04 0.97 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détromper détromper ver 2.61 3.04 0.08 1.15 inf; +détromperai détromper ver 2.61 3.04 0.00 0.07 ind:fut:1s; +détrompez détromper ver 2.61 3.04 1.53 0.47 imp:pre:2p;ind:pre:2p; +détrompé détromper ver m s 2.61 3.04 0.01 0.20 par:pas; +détrompée détromper ver f s 2.61 3.04 0.01 0.14 par:pas; +détrompés détromper ver m p 2.61 3.04 0.01 0.07 par:pas; +détroncha détroncher ver 0.00 0.81 0.00 0.07 ind:pas:3s; +détronchant détroncher ver 0.00 0.81 0.00 0.14 par:pre; +détronche détroncher ver 0.00 0.81 0.00 0.20 ind:pre:3s; +détronchent détroncher ver 0.00 0.81 0.00 0.07 ind:pre:3p; +détroncher détroncher ver 0.00 0.81 0.00 0.07 inf; +détroncherais détroncher ver 0.00 0.81 0.00 0.07 cnd:pre:1s; +détronchèrent détroncher ver 0.00 0.81 0.00 0.07 ind:pas:3p; +détronché détroncher ver m s 0.00 0.81 0.00 0.14 par:pas; +détroussaient détrousser ver 0.29 0.47 0.01 0.00 ind:imp:3p; +détroussais détrousser ver 0.29 0.47 0.00 0.07 ind:imp:1s; +détroussant détrousser ver 0.29 0.47 0.00 0.07 par:pre; +détroussent détrousser ver 0.29 0.47 0.00 0.14 ind:pre:3p; +détrousser détrousser ver 0.29 0.47 0.11 0.00 inf; +détrousses détrousser ver 0.29 0.47 0.01 0.00 ind:pre:2s; +détrousseur détrousseur nom m s 0.17 0.14 0.17 0.07 +détrousseurs détrousseur nom m p 0.17 0.14 0.00 0.07 +détroussez détrousser ver 0.29 0.47 0.02 0.00 ind:pre:2p; +détroussé détrousser ver m s 0.29 0.47 0.12 0.07 par:pas; +détroussés détrousser ver m p 0.29 0.47 0.02 0.14 par:pas; +détruira détruire ver 126.08 52.36 2.67 0.27 ind:fut:3s; +détruirai détruire ver 126.08 52.36 1.84 0.14 ind:fut:1s; +détruiraient détruire ver 126.08 52.36 0.38 0.07 cnd:pre:3p; +détruirais détruire ver 126.08 52.36 0.30 0.14 cnd:pre:1s;cnd:pre:2s; +détruirait détruire ver 126.08 52.36 1.13 0.20 cnd:pre:3s; +détruiras détruire ver 126.08 52.36 0.58 0.00 ind:fut:2s; +détruire détruire ver 126.08 52.36 50.12 20.34 inf;; +détruirez détruire ver 126.08 52.36 0.28 0.07 ind:fut:2p; +détruiriez détruire ver 126.08 52.36 0.13 0.00 cnd:pre:2p; +détruirions détruire ver 126.08 52.36 0.04 0.07 cnd:pre:1p; +détruirons détruire ver 126.08 52.36 0.64 0.00 ind:fut:1p; +détruiront détruire ver 126.08 52.36 0.82 0.14 ind:fut:3p; +détruis détruire ver 126.08 52.36 4.62 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détruisaient détruire ver 126.08 52.36 0.29 0.74 ind:imp:3p; +détruisais détruire ver 126.08 52.36 0.16 0.14 ind:imp:1s;ind:imp:2s; +détruisait détruire ver 126.08 52.36 0.41 1.89 ind:imp:3s; +détruisant détruire ver 126.08 52.36 1.54 1.22 par:pre; +détruise détruire ver 126.08 52.36 1.05 0.54 sub:pre:1s;sub:pre:3s; +détruisent détruire ver 126.08 52.36 3.52 1.28 ind:pre:3p; +détruises détruire ver 126.08 52.36 0.26 0.00 sub:pre:2s; +détruisez détruire ver 126.08 52.36 4.46 0.00 imp:pre:2p;ind:pre:2p; +détruisiez détruire ver 126.08 52.36 0.12 0.00 ind:imp:2p; +détruisions détruire ver 126.08 52.36 0.14 0.00 ind:imp:1p; +détruisirent détruire ver 126.08 52.36 0.06 0.14 ind:pas:3p; +détruisis détruire ver 126.08 52.36 0.00 0.07 ind:pas:1s; +détruisit détruire ver 126.08 52.36 0.27 0.95 ind:pas:3s; +détruisons détruire ver 126.08 52.36 1.26 0.00 imp:pre:1p;ind:pre:1p; +détruit détruire ver m s 126.08 52.36 35.42 14.26 ind:pre:3s;par:pas; +détruite détruire ver f s 126.08 52.36 7.49 4.32 par:pas; +détruites détruire ver f p 126.08 52.36 1.92 1.96 par:pas; +détruits détruire ver m p 126.08 52.36 4.16 2.91 par:pas; +détérioraient détériorer ver 1.68 3.18 0.01 0.07 ind:imp:3p; +détériorait détériorer ver 1.68 3.18 0.16 0.34 ind:imp:3s; +détériorant détériorer ver 1.68 3.18 0.01 0.14 par:pre; +détérioration détérioration nom f s 0.68 0.54 0.64 0.54 +détériorations détérioration nom f p 0.68 0.54 0.04 0.00 +détériore détériorer ver 1.68 3.18 0.48 0.61 ind:pre:3s; +détériorent détériorer ver 1.68 3.18 0.05 0.00 ind:pre:3p; +détériorer détériorer ver 1.68 3.18 0.36 0.68 inf; +détériorât détériorer ver 1.68 3.18 0.00 0.07 sub:imp:3s; +détérioré détériorer ver m s 1.68 3.18 0.19 0.34 par:pas; +détériorée détériorer ver f s 1.68 3.18 0.22 0.47 par:pas; +détériorées détériorer ver f p 1.68 3.18 0.15 0.20 par:pas; +détériorés détériorer ver m p 1.68 3.18 0.05 0.27 par:pas; +dévala dévaler ver 1.51 16.76 0.00 1.76 ind:pas:3s; +dévalai dévaler ver 1.51 16.76 0.00 0.34 ind:pas:1s; +dévalaient dévaler ver 1.51 16.76 0.00 0.88 ind:imp:3p; +dévalais dévaler ver 1.51 16.76 0.12 0.34 ind:imp:1s;ind:imp:2s; +dévalait dévaler ver 1.51 16.76 0.12 3.04 ind:imp:3s; +dévalant dévaler ver 1.51 16.76 0.22 1.96 par:pre; +dévale dévaler ver 1.51 16.76 0.52 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévalement dévalement nom m s 0.00 0.34 0.00 0.34 +dévalent dévaler ver 1.51 16.76 0.08 1.28 ind:pre:3p; +dévaler dévaler ver 1.51 16.76 0.29 1.69 inf; +dévales dévaler ver 1.51 16.76 0.00 0.07 ind:pre:2s; +dévalions dévaler ver 1.51 16.76 0.01 0.20 ind:imp:1p; +dévalisai dévaliser ver 6.22 2.03 0.01 0.07 ind:pas:1s; +dévalisaient dévaliser ver 6.22 2.03 0.01 0.00 ind:imp:3p; +dévalisait dévaliser ver 6.22 2.03 0.16 0.00 ind:imp:3s; +dévalisant dévaliser ver 6.22 2.03 0.05 0.00 par:pre; +dévalise dévaliser ver 6.22 2.03 0.50 0.07 ind:pre:1s;ind:pre:3s; +dévalisent dévaliser ver 6.22 2.03 0.04 0.07 ind:pre:3p; +dévaliser dévaliser ver 6.22 2.03 1.93 0.68 inf; +dévalisera dévaliser ver 6.22 2.03 0.11 0.00 ind:fut:3s; +dévaliserait dévaliser ver 6.22 2.03 0.02 0.07 cnd:pre:3s; +dévalises dévaliser ver 6.22 2.03 0.06 0.00 ind:pre:2s; +dévalisez dévaliser ver 6.22 2.03 0.15 0.07 imp:pre:2p;ind:pre:2p; +dévalisé dévaliser ver m s 6.22 2.03 2.64 0.68 par:pas; +dévalisée dévaliser ver f s 6.22 2.03 0.39 0.14 par:pas; +dévalisés dévaliser ver m p 6.22 2.03 0.14 0.20 par:pas; +dévalons dévaler ver 1.51 16.76 0.01 0.14 imp:pre:1p;ind:pre:1p; +dévalorisaient dévaloriser ver 0.27 0.54 0.00 0.07 ind:imp:3p; +dévalorisait dévaloriser ver 0.27 0.54 0.00 0.07 ind:imp:3s; +dévalorisant dévalorisant adj m s 0.10 0.00 0.10 0.00 +dévalorisation dévalorisation nom f s 0.01 0.27 0.01 0.27 +dévalorise dévaloriser ver 0.27 0.54 0.10 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévalorisent dévaloriser ver 0.27 0.54 0.02 0.07 ind:pre:3p; +dévaloriser dévaloriser ver 0.27 0.54 0.09 0.07 inf; +dévalorisez dévaloriser ver 0.27 0.54 0.01 0.00 imp:pre:2p; +dévalorisé dévaloriser ver m s 0.27 0.54 0.03 0.07 par:pas; +dévalorisée dévaloriser ver f s 0.27 0.54 0.02 0.14 par:pas; +dévalèrent dévaler ver 1.51 16.76 0.00 0.34 ind:pas:3p; +dévalé dévaler ver m s 1.51 16.76 0.14 1.22 par:pas; +dévaluait dévaluer ver 0.37 0.54 0.00 0.07 ind:imp:3s; +dévaluation dévaluation nom f s 0.14 0.54 0.14 0.47 +dévaluations dévaluation nom f p 0.14 0.54 0.00 0.07 +dévalée dévaler ver f s 1.51 16.76 0.00 0.07 par:pas; +dévalue dévaluer ver 0.37 0.54 0.15 0.07 ind:pre:1s;ind:pre:3s; +dévaluer dévaluer ver 0.37 0.54 0.00 0.20 inf; +dévaluera dévaluer ver 0.37 0.54 0.01 0.00 ind:fut:3s; +dévalué dévaluer ver m s 0.37 0.54 0.07 0.00 par:pas; +dévaluée dévaluer ver f s 0.37 0.54 0.14 0.14 par:pas; +dévalués dévaluer ver m p 0.37 0.54 0.00 0.07 par:pas; +dévasta dévaster ver 2.50 4.12 0.05 0.07 ind:pas:3s; +dévastaient dévaster ver 2.50 4.12 0.00 0.47 ind:imp:3p; +dévastait dévaster ver 2.50 4.12 0.01 0.14 ind:imp:3s; +dévastant dévaster ver 2.50 4.12 0.04 0.00 par:pre; +dévastateur dévastateur adj m s 1.43 1.89 0.38 0.61 +dévastateurs dévastateur adj m p 1.43 1.89 0.27 0.27 +dévastation dévastation nom f s 0.44 1.28 0.41 0.81 +dévastations dévastation nom f p 0.44 1.28 0.02 0.47 +dévastatrice dévastateur adj f s 1.43 1.89 0.70 0.74 +dévastatrices dévastateur adj f p 1.43 1.89 0.08 0.27 +dévaste dévaster ver 2.50 4.12 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévastent dévaster ver 2.50 4.12 0.16 0.20 ind:pre:3p; +dévaster dévaster ver 2.50 4.12 0.21 0.54 inf; +dévastera dévaster ver 2.50 4.12 0.01 0.00 ind:fut:3s; +dévasterait dévaster ver 2.50 4.12 0.05 0.00 cnd:pre:3s; +dévasteront dévaster ver 2.50 4.12 0.01 0.07 ind:fut:3p; +dévastèrent dévaster ver 2.50 4.12 0.00 0.14 ind:pas:3p; +dévasté dévaster ver m s 2.50 4.12 1.07 1.42 par:pas; +dévastée dévaster ver f s 2.50 4.12 0.42 0.61 par:pas; +dévastées dévasté adj f p 0.82 2.84 0.01 0.61 +dévastés dévasté adj m p 0.82 2.84 0.16 0.41 +déveinards déveinard nom m p 0.00 0.07 0.00 0.07 +déveine déveine nom f s 0.33 1.08 0.33 1.01 +déveines déveine nom f p 0.33 1.08 0.00 0.07 +développa développer ver 20.14 21.42 0.29 0.81 ind:pas:3s; +développai développer ver 20.14 21.42 0.00 0.14 ind:pas:1s; +développaient développer ver 20.14 21.42 0.07 0.54 ind:imp:3p; +développais développer ver 20.14 21.42 0.06 0.27 ind:imp:1s;ind:imp:2s; +développait développer ver 20.14 21.42 0.25 2.23 ind:imp:3s; +développant développer ver 20.14 21.42 0.20 0.88 par:pre; +développe développer ver 20.14 21.42 4.09 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +développement développement nom m s 7.09 11.15 6.63 10.20 +développements développement nom m p 7.09 11.15 0.47 0.95 +développent développer ver 20.14 21.42 0.59 0.88 ind:pre:3p; +développer développer ver 20.14 21.42 7.84 6.96 inf; +développera développer ver 20.14 21.42 0.18 0.14 ind:fut:3s; +développerai développer ver 20.14 21.42 0.02 0.00 ind:fut:1s; +développeraient développer ver 20.14 21.42 0.14 0.00 cnd:pre:3p; +développerais développer ver 20.14 21.42 0.02 0.00 cnd:pre:1s; +développerait développer ver 20.14 21.42 0.03 0.07 cnd:pre:3s; +développerez développer ver 20.14 21.42 0.01 0.14 ind:fut:2p; +développeront développer ver 20.14 21.42 0.01 0.00 ind:fut:3p; +développeur développeur nom m s 0.17 0.07 0.17 0.07 +développez développer ver 20.14 21.42 0.58 0.14 imp:pre:2p;ind:pre:2p; +développons développer ver 20.14 21.42 0.33 0.00 imp:pre:1p;ind:pre:1p; +développât développer ver 20.14 21.42 0.00 0.07 sub:imp:3s; +développèrent développer ver 20.14 21.42 0.03 0.07 ind:pas:3p; +développé développer ver m s 20.14 21.42 3.88 2.30 par:pas; +développée développer ver f s 20.14 21.42 0.83 1.08 par:pas; +développées développer ver f p 20.14 21.42 0.27 0.41 par:pas; +développés développé adj m p 3.61 1.55 0.64 0.14 +déventer déventer ver 0.01 0.00 0.01 0.00 inf; +dévergondage dévergondage nom m s 0.03 0.27 0.03 0.20 +dévergondages dévergondage nom m p 0.03 0.27 0.00 0.07 +dévergonde dévergonder ver 0.56 0.27 0.26 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévergondent dévergonder ver 0.56 0.27 0.01 0.07 ind:pre:3p; +dévergonder dévergonder ver 0.56 0.27 0.02 0.14 inf; +dévergondé dévergondé nom m s 1.39 0.41 0.23 0.14 +dévergondée dévergondé nom f s 1.39 0.41 1.06 0.27 +dévergondées dévergondé nom f p 1.39 0.41 0.10 0.00 +dévergondés dévergondé adj m p 0.56 0.54 0.14 0.07 +dévernie dévernir ver f s 0.00 0.27 0.00 0.07 par:pas; +dévernies dévernir ver f p 0.00 0.27 0.00 0.07 par:pas; +dévernir dévernir ver 0.00 0.27 0.00 0.14 inf; +déverrouilla déverrouiller ver 0.91 1.01 0.00 0.14 ind:pas:3s; +déverrouillage déverrouillage nom m s 0.28 0.00 0.28 0.00 +déverrouillait déverrouiller ver 0.91 1.01 0.00 0.20 ind:imp:3s; +déverrouille déverrouiller ver 0.91 1.01 0.18 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déverrouillent déverrouiller ver 0.91 1.01 0.01 0.07 ind:pre:3p; +déverrouiller déverrouiller ver 0.91 1.01 0.33 0.20 inf; +déverrouillez déverrouiller ver 0.91 1.01 0.23 0.00 imp:pre:2p; +déverrouillé déverrouiller ver m s 0.91 1.01 0.08 0.14 par:pas; +déverrouillée déverrouiller ver f s 0.91 1.01 0.07 0.14 par:pas; +déverrouillées déverrouiller ver f p 0.91 1.01 0.00 0.07 par:pas; +déversa déverser ver 1.97 12.09 0.01 0.61 ind:pas:3s; +déversaient déverser ver 1.97 12.09 0.04 1.15 ind:imp:3p; +déversais déverser ver 1.97 12.09 0.00 0.07 ind:imp:1s; +déversait déverser ver 1.97 12.09 0.06 2.84 ind:imp:3s; +déversant déverser ver 1.97 12.09 0.03 1.08 par:pre; +déverse déverser ver 1.97 12.09 0.58 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déversement déversement nom m s 0.17 0.14 0.14 0.07 +déversements déversement nom m p 0.17 0.14 0.03 0.07 +déversent déverser ver 1.97 12.09 0.13 0.95 ind:pre:3p; +déverser déverser ver 1.97 12.09 0.61 2.23 inf; +déversera déverser ver 1.97 12.09 0.11 0.00 ind:fut:3s; +déverserai déverser ver 1.97 12.09 0.00 0.07 ind:fut:1s; +déverseraient déverser ver 1.97 12.09 0.00 0.14 cnd:pre:3p; +déverserait déverser ver 1.97 12.09 0.00 0.07 cnd:pre:3s; +déversez déverser ver 1.97 12.09 0.06 0.07 imp:pre:2p;ind:pre:2p; +déversoir déversoir nom m s 0.18 0.95 0.18 0.95 +déversèrent déverser ver 1.97 12.09 0.00 0.20 ind:pas:3p; +déversé déverser ver m s 1.97 12.09 0.19 0.47 par:pas; +déversée déverser ver f s 1.97 12.09 0.09 0.34 par:pas; +déversées déverser ver f p 1.97 12.09 0.01 0.07 par:pas; +déversés déverser ver m p 1.97 12.09 0.06 0.41 par:pas; +duvet duvet nom m s 1.70 8.85 1.58 7.57 +duveteuse duveteux adj f s 0.12 1.76 0.05 0.61 +duveteuses duveteux adj f p 0.12 1.76 0.02 0.41 +duveteux duveteux adj m s 0.12 1.76 0.05 0.74 +duvets duvet nom m p 1.70 8.85 0.12 1.28 +duveté duveté adj m s 0.00 0.47 0.00 0.14 +duvetée duveté adj f s 0.00 0.47 0.00 0.20 +duvetées duveter ver f p 0.00 0.34 0.00 0.14 par:pas; +duvetés duveté adj m p 0.00 0.47 0.00 0.07 +dévia dévier ver 3.04 5.14 0.00 0.41 ind:pas:3s; +déviai dévier ver 3.04 5.14 0.00 0.07 ind:pas:1s; +déviaient dévier ver 3.04 5.14 0.00 0.07 ind:imp:3p; +déviait dévier ver 3.04 5.14 0.03 0.54 ind:imp:3s; +déviance déviance nom f s 0.18 0.00 0.01 0.00 +déviances déviance nom f p 0.18 0.00 0.17 0.00 +déviant déviant adj m s 0.45 0.00 0.33 0.00 +déviante déviant adj f s 0.45 0.00 0.02 0.00 +déviants déviant nom m p 0.21 0.07 0.10 0.07 +déviateur déviateur adj m s 0.02 0.00 0.02 0.00 +déviation déviation nom f s 1.29 1.15 1.00 0.95 +déviationnisme déviationnisme nom m s 0.00 0.14 0.00 0.14 +déviationniste déviationniste adj s 0.00 0.07 0.00 0.07 +déviations déviation nom f p 1.29 1.15 0.29 0.20 +dévida dévider ver 0.02 3.58 0.00 0.20 ind:pas:3s; +dévidais dévider ver 0.02 3.58 0.00 0.07 ind:imp:1s; +dévidait dévider ver 0.02 3.58 0.01 0.88 ind:imp:3s; +dévidant dévider ver 0.02 3.58 0.00 0.14 par:pre; +dévide dévider ver 0.02 3.58 0.01 0.54 ind:pre:1s;ind:pre:3s; +dévident dévider ver 0.02 3.58 0.00 0.07 ind:pre:3p; +dévider dévider ver 0.02 3.58 0.00 1.15 inf; +déviderait dévider ver 0.02 3.58 0.00 0.14 cnd:pre:3s; +dévideur dévideur nom m s 0.00 0.07 0.00 0.07 +dévidions dévider ver 0.02 3.58 0.00 0.07 ind:imp:1p; +dévidoir dévidoir nom m s 0.03 0.27 0.03 0.20 +dévidoirs dévidoir nom m p 0.03 0.27 0.00 0.07 +dévidé dévider ver m s 0.02 3.58 0.00 0.27 par:pas; +dévidée dévider ver f s 0.02 3.58 0.00 0.07 par:pas; +dévie dévier ver 3.04 5.14 0.52 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévient dévier ver 3.04 5.14 0.04 0.14 ind:pre:3p; +dévier dévier ver 3.04 5.14 0.90 1.96 inf; +déviera dévier ver 3.04 5.14 0.02 0.00 ind:fut:3s; +dévierait dévier ver 3.04 5.14 0.01 0.14 cnd:pre:3s; +déviez dévier ver 3.04 5.14 0.13 0.00 imp:pre:2p;ind:pre:2p; +dévions dévier ver 3.04 5.14 0.01 0.07 ind:pre:1p; +dévirginiser dévirginiser ver 0.01 0.07 0.00 0.07 inf; +dévirginisée dévirginiser ver f s 0.01 0.07 0.01 0.00 par:pas; +dévirilisant déviriliser ver 0.00 0.14 0.00 0.07 par:pre; +dévirilisation dévirilisation nom f s 0.00 0.20 0.00 0.20 +dévirilisé déviriliser ver m s 0.00 0.14 0.00 0.07 par:pas; +dévisage dévisager ver 2.13 24.66 0.54 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévisagea dévisager ver 2.13 24.66 0.00 6.01 ind:pas:3s; +dévisageai dévisager ver 2.13 24.66 0.01 1.01 ind:pas:1s; +dévisageaient dévisager ver 2.13 24.66 0.03 1.01 ind:imp:3p; +dévisageais dévisager ver 2.13 24.66 0.01 0.14 ind:imp:1s; +dévisageait dévisager ver 2.13 24.66 0.07 3.72 ind:imp:3s; +dévisageant dévisager ver 2.13 24.66 0.00 2.70 par:pre; +dévisagent dévisager ver 2.13 24.66 0.25 1.22 ind:pre:3p; +dévisageâmes dévisager ver 2.13 24.66 0.00 0.07 ind:pas:1p; +dévisageons dévisager ver 2.13 24.66 0.00 0.14 ind:pre:1p; +dévisager dévisager ver 2.13 24.66 0.67 2.91 inf; +dévisageraient dévisager ver 2.13 24.66 0.02 0.00 cnd:pre:3p; +dévisagez dévisager ver 2.13 24.66 0.04 0.07 imp:pre:2p;ind:pre:2p; +dévisagions dévisager ver 2.13 24.66 0.00 0.07 ind:imp:1p; +dévisagèrent dévisager ver 2.13 24.66 0.00 0.74 ind:pas:3p; +dévisagé dévisager ver m s 2.13 24.66 0.18 1.01 par:pas; +dévisagée dévisager ver f s 2.13 24.66 0.28 0.20 par:pas; +dévisagés dévisager ver m p 2.13 24.66 0.02 0.20 par:pas; +dévissa dévisser ver 1.34 4.59 0.00 0.74 ind:pas:3s; +dévissable dévissable adj m s 0.01 0.00 0.01 0.00 +dévissage dévissage nom m s 0.00 0.07 0.00 0.07 +dévissaient dévisser ver 1.34 4.59 0.00 0.20 ind:imp:3p; +dévissait dévisser ver 1.34 4.59 0.00 0.47 ind:imp:3s; +dévissant dévisser ver 1.34 4.59 0.00 0.07 par:pre; +dévisse dévisser ver 1.34 4.59 0.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévisser dévisser ver 1.34 4.59 0.48 1.08 inf; +dévissera dévisser ver 1.34 4.59 0.01 0.07 ind:fut:3s; +dévissez dévisser ver 1.34 4.59 0.04 0.07 imp:pre:2p;ind:pre:2p; +dévissé dévisser ver m s 1.34 4.59 0.22 0.34 par:pas; +dévissée dévisser ver f s 1.34 4.59 0.18 0.14 par:pas; +dévissées dévisser ver f p 1.34 4.59 0.00 0.14 par:pas; +dévissés dévisser ver m p 1.34 4.59 0.00 0.20 par:pas; +dévitalisation dévitalisation nom f s 0.01 0.07 0.01 0.07 +dévitaliser dévitaliser ver 0.11 0.00 0.05 0.00 inf; +dévitalisé dévitaliser ver m s 0.11 0.00 0.05 0.00 par:pas; +dévié dévier ver m s 3.04 5.14 0.96 0.88 par:pas; +déviée dévier ver f s 3.04 5.14 0.20 0.27 par:pas; +déviés dévier ver m p 3.04 5.14 0.17 0.14 par:pas; +dévoie dévoyer ver 0.38 0.88 0.10 0.07 ind:pre:3s; +dévoiement dévoiement nom m s 0.00 0.14 0.00 0.14 +dévoila dévoiler ver 8.78 12.97 0.04 0.61 ind:pas:3s; +dévoilai dévoiler ver 8.78 12.97 0.00 0.07 ind:pas:1s; +dévoilaient dévoiler ver 8.78 12.97 0.00 0.41 ind:imp:3p; +dévoilais dévoiler ver 8.78 12.97 0.12 0.07 ind:imp:1s;ind:imp:2s; +dévoilait dévoiler ver 8.78 12.97 0.06 1.22 ind:imp:3s; +dévoilant dévoiler ver 8.78 12.97 0.25 1.42 par:pre; +dévoile dévoiler ver 8.78 12.97 0.99 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévoilement dévoilement nom m s 0.06 0.47 0.06 0.41 +dévoilements dévoilement nom m p 0.06 0.47 0.00 0.07 +dévoilent dévoiler ver 8.78 12.97 0.14 0.41 ind:pre:3p; +dévoiler dévoiler ver 8.78 12.97 3.80 3.78 inf; +dévoilera dévoiler ver 8.78 12.97 0.18 0.07 ind:fut:3s; +dévoilerai dévoiler ver 8.78 12.97 0.30 0.07 ind:fut:1s; +dévoilerais dévoiler ver 8.78 12.97 0.01 0.00 cnd:pre:1s; +dévoilerait dévoiler ver 8.78 12.97 0.11 0.07 cnd:pre:3s; +dévoilerez dévoiler ver 8.78 12.97 0.02 0.00 ind:fut:2p; +dévoileront dévoiler ver 8.78 12.97 0.04 0.00 ind:fut:3p; +dévoiles dévoiler ver 8.78 12.97 0.07 0.00 ind:pre:2s; +dévoilez dévoiler ver 8.78 12.97 0.29 0.00 imp:pre:2p; +dévoilons dévoiler ver 8.78 12.97 0.30 0.00 imp:pre:1p;ind:pre:1p; +dévoilé dévoiler ver m s 8.78 12.97 1.55 1.82 par:pas; +dévoilée dévoiler ver f s 8.78 12.97 0.16 0.74 par:pas; +dévoilées dévoiler ver f p 8.78 12.97 0.18 0.20 par:pas; +dévoilés dévoiler ver m p 8.78 12.97 0.16 0.20 par:pas; +dévolu dévolu nom m s 0.17 0.74 0.16 0.74 +dévolue dévolu adj f s 0.07 1.89 0.03 0.54 +dévolues dévolu adj f p 0.07 1.89 0.00 0.20 +dévolus dévolu adj m p 0.07 1.89 0.01 0.61 +dévolution dévolution nom f s 0.00 0.07 0.00 0.07 +dévonien dévonien nom m s 0.01 0.00 0.01 0.00 +dévonienne dévonien adj f s 0.04 0.00 0.04 0.00 +dévora dévorer ver 19.70 37.64 0.19 0.88 ind:pas:3s; +dévorai dévorer ver 19.70 37.64 0.14 0.41 ind:pas:1s; +dévoraient dévorer ver 19.70 37.64 0.29 1.96 ind:imp:3p; +dévorais dévorer ver 19.70 37.64 0.13 1.01 ind:imp:1s;ind:imp:2s; +dévorait dévorer ver 19.70 37.64 0.38 4.32 ind:imp:3s; +dévorant dévorer ver 19.70 37.64 0.67 2.70 par:pre; +dévorante dévorant adj f s 0.94 3.24 0.45 1.89 +dévorantes dévorant adj f p 0.94 3.24 0.01 0.20 +dévorants dévorant adj m p 0.94 3.24 0.10 0.34 +dévorateur dévorateur adj m s 0.00 0.34 0.00 0.14 +dévorateurs dévorateur adj m p 0.00 0.34 0.00 0.14 +dévoration dévoration nom f s 0.00 0.07 0.00 0.07 +dévoratrice dévorateur adj f s 0.00 0.34 0.00 0.07 +dévore dévorer ver 19.70 37.64 4.48 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévorent dévorer ver 19.70 37.64 1.81 1.62 ind:pre:3p; +dévorer dévorer ver 19.70 37.64 4.08 7.70 ind:imp:3s;inf; +dévorera dévorer ver 19.70 37.64 0.71 0.14 ind:fut:3s; +dévorerai dévorer ver 19.70 37.64 0.16 0.14 ind:fut:1s; +dévoreraient dévorer ver 19.70 37.64 0.02 0.07 cnd:pre:3p; +dévorerais dévorer ver 19.70 37.64 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +dévorerait dévorer ver 19.70 37.64 0.19 0.34 cnd:pre:3s; +dévorerez dévorer ver 19.70 37.64 0.02 0.00 ind:fut:2p; +dévoreront dévorer ver 19.70 37.64 0.12 0.14 ind:fut:3p; +dévores dévorer ver 19.70 37.64 0.14 0.07 ind:pre:2s;sub:pre:2s; +dévoreur dévoreur nom m s 0.48 1.08 0.16 0.41 +dévoreurs dévoreur nom m p 0.48 1.08 0.01 0.27 +dévoreuse dévoreur nom f s 0.48 1.08 0.31 0.34 +dévoreuses dévoreuse nom f p 0.01 0.00 0.01 0.00 +dévorez dévorer ver 19.70 37.64 0.17 0.00 imp:pre:2p;ind:pre:2p; +dévorions dévorer ver 19.70 37.64 0.00 0.20 ind:imp:1p; +dévorons dévorer ver 19.70 37.64 0.02 0.14 imp:pre:1p;ind:pre:1p; +dévorèrent dévorer ver 19.70 37.64 0.00 0.47 ind:pas:3p; +dévoré dévorer ver m s 19.70 37.64 4.25 5.20 par:pas; +dévorée dévorer ver f s 19.70 37.64 0.76 2.43 par:pas; +dévorées dévorer ver f p 19.70 37.64 0.05 0.61 par:pas; +dévorés dévorer ver m p 19.70 37.64 0.92 2.16 par:pas; +dévot dévot nom m s 0.89 2.03 0.48 0.41 +dévote dévot adj f s 0.56 1.96 0.06 0.88 +dévotement dévotement adv 0.00 0.47 0.00 0.47 +dévotes dévot adj f p 0.56 1.96 0.10 0.27 +dévotieusement dévotieusement adv 0.00 0.14 0.00 0.14 +dévotion dévotion nom f s 2.34 8.11 2.26 7.03 +dévotionnelle dévotionnel adj f s 0.01 0.00 0.01 0.00 +dévotions dévotion nom f p 2.34 8.11 0.08 1.08 +dévots dévot nom m p 0.89 2.03 0.36 1.08 +dévoua dévouer ver 4.71 5.81 0.00 0.47 ind:pas:3s; +dévouaient dévouer ver 4.71 5.81 0.00 0.07 ind:imp:3p; +dévouait dévouer ver 4.71 5.81 0.00 0.27 ind:imp:3s; +dévouant dévouer ver 4.71 5.81 0.01 0.00 par:pre; +dévoue dévouer ver 4.71 5.81 0.52 0.47 ind:pre:1s;ind:pre:3s; +dévouement dévouement nom m s 4.03 9.32 4.03 8.51 +dévouements dévouement nom m p 4.03 9.32 0.00 0.81 +dévouent dévouer ver 4.71 5.81 0.05 0.27 ind:pre:3p; +dévouer dévouer ver 4.71 5.81 0.38 1.55 inf; +dévouera dévouer ver 4.71 5.81 0.02 0.07 ind:fut:3s; +dévouerais dévouer ver 4.71 5.81 0.01 0.00 cnd:pre:2s; +dévoues dévouer ver 4.71 5.81 0.04 0.07 ind:pre:2s; +dévouez dévouer ver 4.71 5.81 0.14 0.00 imp:pre:2p; +dévouât dévouer ver 4.71 5.81 0.00 0.07 sub:imp:3s; +dévoué dévoué adj m s 4.79 6.08 2.60 1.69 +dévouée dévoué adj f s 4.79 6.08 1.28 1.08 +dévouées dévoué adj f p 4.79 6.08 0.06 0.61 +dévoués dévoué adj m p 4.79 6.08 0.85 2.70 +dévoyait dévoyer ver 0.38 0.88 0.00 0.14 ind:imp:3s; +dévoyer dévoyer ver 0.38 0.88 0.12 0.41 inf; +dévoyez dévoyer ver 0.38 0.88 0.01 0.00 ind:pre:2p; +dévoyé dévoyé adj m s 0.22 0.68 0.18 0.54 +dévoyée dévoyer ver f s 0.38 0.88 0.10 0.00 par:pas; +dévoyées dévoyé adj f p 0.22 0.68 0.00 0.07 +dévoyés dévoyé adj m p 0.22 0.68 0.03 0.00 +dévêt dévêtir ver 1.28 5.95 0.00 0.20 ind:pre:3s; +dévêtaient dévêtir ver 1.28 5.95 0.00 0.14 ind:imp:3p; +dévêtait dévêtir ver 1.28 5.95 0.01 0.34 ind:imp:3s; +dévêtant dévêtir ver 1.28 5.95 0.02 0.27 par:pre; +dévêtez dévêtir ver 1.28 5.95 0.00 0.14 imp:pre:2p; +dévêtir dévêtir ver 1.28 5.95 0.47 1.89 inf; +dévêtit dévêtir ver 1.28 5.95 0.01 0.68 ind:pas:3s; +dévêtu dévêtir ver m s 1.28 5.95 0.32 0.74 par:pas; +dévêtue dévêtir ver f s 1.28 5.95 0.34 0.74 par:pas; +dévêtues dévêtir ver f p 1.28 5.95 0.07 0.34 par:pas; +dévêtus dévêtir ver m p 1.28 5.95 0.04 0.47 par:pas; +dézingue dézinguer ver 0.35 0.00 0.17 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dézinguer dézinguer ver 0.35 0.00 0.16 0.00 inf; +dézingués dézinguer ver m p 0.35 0.00 0.02 0.00 par:pas; +dyke dyke nom m s 0.16 0.07 0.16 0.00 +dykes dyke nom m p 0.16 0.07 0.00 0.07 +dynamique dynamique adj s 2.68 2.09 1.97 1.69 +dynamiques dynamique adj p 2.68 2.09 0.71 0.41 +dynamiser dynamiser ver 0.07 0.20 0.02 0.00 inf; +dynamisera dynamiser ver 0.07 0.20 0.01 0.00 ind:fut:3s; +dynamiserait dynamiser ver 0.07 0.20 0.01 0.00 cnd:pre:3s; +dynamisez dynamiser ver 0.07 0.20 0.01 0.00 imp:pre:2p; +dynamisme dynamisme nom m s 0.54 1.82 0.54 1.82 +dynamisé dynamiser ver m s 0.07 0.20 0.01 0.00 par:pas; +dynamisée dynamiser ver f s 0.07 0.20 0.00 0.07 par:pas; +dynamisées dynamiser ver f p 0.07 0.20 0.00 0.14 par:pas; +dynamitage dynamitage nom m s 0.07 0.00 0.07 0.00 +dynamitait dynamiter ver 0.90 0.47 0.00 0.07 ind:imp:3s; +dynamitant dynamiter ver 0.90 0.47 0.01 0.07 par:pre; +dynamite dynamite nom f s 8.12 2.50 8.12 2.50 +dynamiter dynamiter ver 0.90 0.47 0.43 0.07 inf; +dynamiteur dynamiteur nom m s 0.05 0.34 0.04 0.14 +dynamiteurs dynamiteur nom m p 0.05 0.34 0.01 0.20 +dynamitez dynamiter ver 0.90 0.47 0.03 0.00 imp:pre:2p; +dynamitons dynamiter ver 0.90 0.47 0.02 0.00 imp:pre:1p; +dynamité dynamiter ver m s 0.90 0.47 0.09 0.20 par:pas; +dynamitée dynamiter ver f s 0.90 0.47 0.12 0.00 par:pas; +dynamo dynamo nom f s 0.20 0.95 0.19 0.54 +dynamomètre dynamomètre nom m s 0.03 0.07 0.03 0.07 +dynamométrique dynamométrique adj f s 0.01 0.00 0.01 0.00 +dynamos dynamo nom f p 0.20 0.95 0.01 0.41 +dynastie dynastie nom f s 2.31 3.65 2.29 3.04 +dynasties dynastie nom f p 2.31 3.65 0.02 0.61 +dynastique dynastique adj f s 0.01 0.07 0.01 0.07 +dynes dyne nom f p 0.01 0.07 0.01 0.07 +dyscinésie dyscinésie nom f s 0.01 0.00 0.01 0.00 +dyscrasie dyscrasie nom f s 0.01 0.00 0.01 0.00 +dysenterie dysenterie nom f s 0.80 1.49 0.80 1.42 +dysenteries dysenterie nom f p 0.80 1.49 0.00 0.07 +dysentérique dysentérique adj s 0.00 0.27 0.00 0.07 +dysentériques dysentérique adj p 0.00 0.27 0.00 0.20 +dysfonction dysfonction nom f s 0.09 0.00 0.09 0.00 +dysfonctionnement dysfonctionnement nom m s 0.77 0.00 0.57 0.00 +dysfonctionnements dysfonctionnement nom m p 0.77 0.00 0.20 0.00 +dyslexie dyslexie nom f s 0.12 0.07 0.12 0.07 +dyslexique dyslexique adj m s 0.46 0.07 0.46 0.07 +dysménorrhée dysménorrhée nom f s 0.01 0.00 0.01 0.00 +dyspepsie dyspepsie nom f s 0.05 0.14 0.05 0.14 +dyspepsique dyspepsique adj s 0.01 0.07 0.01 0.07 +dyspeptique dyspeptique adj s 0.02 0.07 0.02 0.07 +dysphonie dysphonie nom f s 0.01 0.00 0.01 0.00 +dysphorie dysphorie nom f s 0.02 0.00 0.02 0.00 +dysplasie dysplasie nom f s 0.06 0.07 0.06 0.07 +dyspnée dyspnée nom f s 0.05 0.00 0.05 0.00 +dyspnéique dyspnéique adj f s 0.00 0.14 0.00 0.07 +dyspnéiques dyspnéique adj f p 0.00 0.14 0.00 0.07 +dysthymie dysthymie nom f s 0.10 0.07 0.10 0.07 +dystocie dystocie nom f s 0.03 0.00 0.03 0.00 +dystrophie dystrophie nom f s 0.05 0.00 0.05 0.00 +dysurie dysurie nom f s 0.01 0.00 0.01 0.00 +dytique dytique nom m s 0.00 0.07 0.00 0.07 +e_commerce e_commerce nom m s 0.03 0.00 0.03 0.00 +e_mail e_mail nom m s 6.47 0.00 4.16 0.00 +e_mail e_mail nom m p 6.47 0.00 2.32 0.00 +e e nom m 60.91 28.99 60.91 28.99 +eûmes avoir aux 18559.23 12800.81 0.14 1.08 ind:pas:1p; +eût avoir aux 18559.23 12800.81 6.38 203.51 sub:imp:3s; +eûtes avoir ver_sup 13573.20 6426.49 0.01 0.00 ind:pas:2p; +east_river east_river nom f s 0.00 0.07 0.00 0.07 +eau_de_vie eau_de_vie nom f s 3.17 4.73 3.05 4.73 +eau_forte eau_forte nom f s 0.30 0.27 0.30 0.27 +eau_minute eau_minute nom f s 0.01 0.00 0.01 0.00 +eau eau nom f s 305.74 459.86 290.61 417.84 +eau_de_vie eau_de_vie nom f p 3.17 4.73 0.12 0.00 +eaux_fortes eaux_fortes nom f p 0.00 0.14 0.00 0.14 +eaux eau nom f p 305.74 459.86 15.14 42.03 +ecce_homo ecce_homo adv 0.20 0.20 0.20 0.20 +ecchymose ecchymose nom f s 0.91 1.22 0.23 0.34 +ecchymoses ecchymose nom f p 0.91 1.22 0.67 0.88 +ecchymosé ecchymosé adj m s 0.01 0.07 0.01 0.00 +ecchymosée ecchymosé adj f s 0.01 0.07 0.00 0.07 +ecclésiale ecclésial adj f s 0.00 0.20 0.00 0.20 +ecclésiastique ecclésiastique adj s 0.48 2.91 0.35 1.89 +ecclésiastiques ecclésiastique adj p 0.48 2.91 0.12 1.01 +ecsta ecsta adv 0.01 0.00 0.01 0.00 +ecstasy ecstasy nom m s 3.85 0.00 3.85 0.00 +ectasie ectasie nom f s 0.01 0.00 0.01 0.00 +ecthyma ecthyma nom m s 0.00 0.07 0.00 0.07 +ectodermique ectodermique adj f s 0.01 0.00 0.01 0.00 +ectopie ectopie nom f s 0.04 0.00 0.04 0.00 +ectopique ectopique adj f s 0.04 0.00 0.04 0.00 +ectoplasme ectoplasme nom m s 0.71 0.95 0.60 0.47 +ectoplasmes ectoplasme nom m p 0.71 0.95 0.11 0.47 +ectoplasmique ectoplasmique adj s 0.05 0.34 0.03 0.20 +ectoplasmiques ectoplasmique adj f p 0.05 0.34 0.02 0.14 +eczéma eczéma nom m s 0.64 1.55 0.64 1.42 +eczémas eczéma nom m p 0.64 1.55 0.00 0.14 +eczémateuses eczémateux adj f p 0.01 0.14 0.01 0.07 +eczémateux eczémateux nom m 0.01 0.07 0.01 0.07 +edelweiss edelweiss nom m 0.00 0.54 0.00 0.54 +edwardienne edwardien adj f s 0.00 0.07 0.00 0.07 +efface effacer ver 29.02 70.34 6.19 11.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effacement effacement nom m s 0.36 2.77 0.36 2.70 +effacements effacement nom m p 0.36 2.77 0.00 0.07 +effacent effacer ver 29.02 70.34 1.00 3.58 ind:pre:3p; +effacer effacer ver 29.02 70.34 10.05 18.31 inf; +effacera effacer ver 29.02 70.34 0.73 0.88 ind:fut:3s; +effacerai effacer ver 29.02 70.34 0.23 0.14 ind:fut:1s; +effaceraient effacer ver 29.02 70.34 0.02 0.00 cnd:pre:3p; +effacerais effacer ver 29.02 70.34 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +effacerait effacer ver 29.02 70.34 0.21 0.74 cnd:pre:3s; +effaceras effacer ver 29.02 70.34 0.03 0.20 ind:fut:2s; +effacerez effacer ver 29.02 70.34 0.03 0.00 ind:fut:2p; +effacerions effacer ver 29.02 70.34 0.01 0.00 cnd:pre:1p; +effacerons effacer ver 29.02 70.34 0.13 0.00 ind:fut:1p; +effaceront effacer ver 29.02 70.34 0.15 0.27 ind:fut:3p; +effaces effacer ver 29.02 70.34 0.47 0.07 ind:pre:2s; +effaceur effaceur nom m s 0.10 0.00 0.10 0.00 +effacez effacer ver 29.02 70.34 0.89 0.20 imp:pre:2p;ind:pre:2p; +effaciez effacer ver 29.02 70.34 0.05 0.00 ind:imp:2p; +effacions effacer ver 29.02 70.34 0.01 0.07 ind:imp:1p; +effacèrent effacer ver 29.02 70.34 0.00 1.01 ind:pas:3p; +effacé effacer ver m s 29.02 70.34 5.24 6.96 par:pas; +effacée effacer ver f s 29.02 70.34 1.51 3.31 par:pas; +effacées effacer ver f p 29.02 70.34 0.50 1.96 par:pas; +effacés effacer ver m p 29.02 70.34 0.68 1.69 par:pas; +effara effarer ver 0.11 1.96 0.00 0.07 ind:pas:3s; +effaraient effarer ver 0.11 1.96 0.00 0.07 ind:imp:3p; +effarait effarer ver 0.11 1.96 0.00 0.14 ind:imp:3s; +effarant effarant adj m s 1.08 2.57 0.81 0.81 +effarante effarant adj f s 1.08 2.57 0.22 1.28 +effarantes effarant adj f p 1.08 2.57 0.00 0.34 +effarants effarant adj m p 1.08 2.57 0.05 0.14 +effare effarer ver 0.11 1.96 0.01 0.20 ind:pre:1s;ind:pre:3s; +effarement effarement nom m s 0.00 1.82 0.00 1.82 +effarer effarer ver 0.11 1.96 0.02 0.00 inf; +effaroucha effaroucher ver 0.63 5.20 0.00 0.07 ind:pas:3s; +effarouchaient effaroucher ver 0.63 5.20 0.00 0.20 ind:imp:3p; +effarouchait effaroucher ver 0.63 5.20 0.00 0.68 ind:imp:3s; +effarouchant effaroucher ver 0.63 5.20 0.00 0.20 par:pre; +effarouche effaroucher ver 0.63 5.20 0.29 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effarouchement effarouchement nom m s 0.00 0.20 0.00 0.07 +effarouchements effarouchement nom m p 0.00 0.20 0.00 0.14 +effarouchent effaroucher ver 0.63 5.20 0.30 0.20 ind:pre:3p; +effaroucher effaroucher ver 0.63 5.20 0.02 1.96 inf; +effarouches effaroucher ver 0.63 5.20 0.00 0.07 ind:pre:2s; +effarouchâmes effaroucher ver 0.63 5.20 0.00 0.14 ind:pas:1p; +effarouchât effaroucher ver 0.63 5.20 0.00 0.20 sub:imp:3s; +effarouché effarouché adj m s 0.81 2.50 0.06 0.74 +effarouchée effarouché adj f s 0.81 2.50 0.72 0.34 +effarouchées effarouché adj f p 0.81 2.50 0.01 0.68 +effarouchés effarouché adj m p 0.81 2.50 0.03 0.74 +effarèrent effarer ver 0.11 1.96 0.00 0.07 ind:pas:3p; +effaré effarer ver m s 0.11 1.96 0.05 0.54 par:pas; +effarée effaré adj f s 0.13 3.45 0.10 0.88 +effarées effaré adj f p 0.13 3.45 0.00 0.14 +effarés effarer ver m p 0.11 1.96 0.02 0.27 par:pas; +effarvatte effarvatte nom f s 0.00 0.14 0.00 0.07 +effarvattes effarvatte nom f p 0.00 0.14 0.00 0.07 +effaça effacer ver 29.02 70.34 0.02 5.27 ind:pas:3s; +effaçable effaçable adj s 0.01 0.07 0.01 0.00 +effaçables effaçable adj p 0.01 0.07 0.00 0.07 +effaçage effaçage nom m s 0.01 0.00 0.01 0.00 +effaçai effacer ver 29.02 70.34 0.00 0.14 ind:pas:1s; +effaçaient effacer ver 29.02 70.34 0.06 2.50 ind:imp:3p; +effaçais effacer ver 29.02 70.34 0.02 0.34 ind:imp:1s;ind:imp:2s; +effaçait effacer ver 29.02 70.34 0.20 7.43 ind:imp:3s; +effaçant effacer ver 29.02 70.34 0.27 2.97 par:pre; +effaçassent effacer ver 29.02 70.34 0.00 0.07 sub:imp:3p; +effaçons effacer ver 29.02 70.34 0.25 0.07 imp:pre:1p;ind:pre:1p; +effaçât effacer ver 29.02 70.34 0.00 0.41 sub:imp:3s; +effectif effectif nom m s 2.63 7.64 0.62 2.23 +effectifs effectif nom m p 2.63 7.64 2.02 5.41 +effective effectif adj f s 0.57 2.77 0.20 1.22 +effectivement effectivement adv 13.57 16.28 13.57 16.28 +effectives effectif adj f p 0.57 2.77 0.01 0.14 +effectivité effectivité nom f s 0.00 0.07 0.00 0.07 +effectua effectuer ver 10.53 15.20 0.02 1.01 ind:pas:3s; +effectuai effectuer ver 10.53 15.20 0.00 0.27 ind:pas:1s; +effectuaient effectuer ver 10.53 15.20 0.02 0.95 ind:imp:3p; +effectuais effectuer ver 10.53 15.20 0.08 0.00 ind:imp:1s; +effectuait effectuer ver 10.53 15.20 0.11 1.35 ind:imp:3s; +effectuant effectuer ver 10.53 15.20 0.13 0.81 par:pre; +effectue effectuer ver 10.53 15.20 0.90 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effectuent effectuer ver 10.53 15.20 0.04 0.07 ind:pre:3p; +effectuer effectuer ver 10.53 15.20 2.84 4.59 inf; +effectuera effectuer ver 10.53 15.20 0.23 0.07 ind:fut:3s; +effectuerai effectuer ver 10.53 15.20 0.05 0.00 ind:fut:1s; +effectuerait effectuer ver 10.53 15.20 0.00 0.20 cnd:pre:3s; +effectuerons effectuer ver 10.53 15.20 0.15 0.00 ind:fut:1p; +effectues effectuer ver 10.53 15.20 0.02 0.07 ind:pre:2s; +effectuez effectuer ver 10.53 15.20 0.23 0.00 imp:pre:2p;ind:pre:2p; +effectuions effectuer ver 10.53 15.20 0.01 0.07 ind:imp:1p; +effectuons effectuer ver 10.53 15.20 0.52 0.00 imp:pre:1p;ind:pre:1p; +effectué effectuer ver m s 10.53 15.20 3.43 2.30 par:pas; +effectuée effectuer ver f s 10.53 15.20 0.95 1.08 par:pas; +effectuées effectuer ver f p 10.53 15.20 0.32 0.81 par:pas; +effectués effectuer ver m p 10.53 15.20 0.46 0.61 par:pas; +effendi effendi nom m s 0.19 1.62 0.19 1.62 +effervescence effervescence nom f s 0.40 3.85 0.40 3.78 +effervescences effervescence nom f p 0.40 3.85 0.00 0.07 +effervescent effervescent adj m s 0.09 0.88 0.04 0.34 +effervescente effervescent adj f s 0.09 0.88 0.04 0.20 +effervescentes effervescent adj f p 0.09 0.88 0.00 0.14 +effervescents effervescent adj m p 0.09 0.88 0.01 0.20 +effet effet nom m s 116.75 192.36 99.17 173.18 +effets effet nom m p 116.75 192.36 17.58 19.19 +effeuilla effeuiller ver 0.17 1.89 0.00 0.07 ind:pas:3s; +effeuillage effeuillage nom m s 0.08 0.07 0.08 0.07 +effeuillaient effeuiller ver 0.17 1.89 0.00 0.14 ind:imp:3p; +effeuillait effeuiller ver 0.17 1.89 0.00 0.27 ind:imp:3s; +effeuillant effeuiller ver 0.17 1.89 0.01 0.00 par:pre; +effeuille effeuiller ver 0.17 1.89 0.00 0.47 ind:pre:1s;ind:pre:3s; +effeuillent effeuiller ver 0.17 1.89 0.00 0.07 ind:pre:3p; +effeuiller effeuiller ver 0.17 1.89 0.12 0.41 inf; +effeuilleras effeuiller ver 0.17 1.89 0.00 0.07 ind:fut:2s; +effeuilleuse effeuilleur nom f s 0.11 0.20 0.11 0.14 +effeuilleuses effeuilleuse nom f p 0.06 0.00 0.06 0.00 +effeuillez effeuiller ver 0.17 1.89 0.01 0.00 imp:pre:2p; +effeuillèrent effeuiller ver 0.17 1.89 0.00 0.07 ind:pas:3p; +effeuillé effeuiller ver m s 0.17 1.89 0.01 0.07 par:pas; +effeuillée effeuiller ver f s 0.17 1.89 0.01 0.20 par:pas; +effeuillés effeuiller ver m p 0.17 1.89 0.01 0.07 par:pas; +efficace efficace adj s 14.54 15.27 12.19 12.23 +efficacement efficacement adv 0.67 2.23 0.67 2.23 +efficaces efficace adj p 14.54 15.27 2.35 3.04 +efficacité efficacité nom f s 3.36 8.51 3.36 8.51 +efficience efficience nom f s 0.01 0.34 0.01 0.34 +efficient efficient adj m s 0.14 0.41 0.00 0.20 +efficiente efficient adj f s 0.14 0.41 0.14 0.07 +efficientes efficient adj f p 0.14 0.41 0.00 0.07 +efficients efficient adj m p 0.14 0.41 0.00 0.07 +effigie effigie nom f s 1.60 4.19 1.52 3.38 +effigies effigie nom f p 1.60 4.19 0.07 0.81 +effila effiler ver 0.07 2.43 0.00 0.07 ind:pas:3s; +effilaient effiler ver 0.07 2.43 0.00 0.07 ind:imp:3p; +effilait effiler ver 0.07 2.43 0.00 0.14 ind:imp:3s; +effilant effiler ver 0.07 2.43 0.00 0.20 par:pre; +effile effiler ver 0.07 2.43 0.00 0.20 ind:pre:3s; +effilement effilement nom m s 0.00 0.07 0.00 0.07 +effilent effiler ver 0.07 2.43 0.01 0.07 ind:pre:3p; +effiler effiler ver 0.07 2.43 0.03 0.27 inf; +effilochage effilochage nom m s 0.00 0.07 0.00 0.07 +effilochaient effilocher ver 0.20 6.35 0.00 0.47 ind:imp:3p; +effilochait effilocher ver 0.20 6.35 0.01 0.88 ind:imp:3s; +effilochant effilocher ver 0.20 6.35 0.00 0.27 par:pre; +effiloche effilocher ver 0.20 6.35 0.05 0.95 ind:pre:3s; +effilochent effilocher ver 0.20 6.35 0.00 0.34 ind:pre:3p; +effilocher effilocher ver 0.20 6.35 0.00 0.47 inf; +effilochera effilocher ver 0.20 6.35 0.01 0.07 ind:fut:3s; +effilochèrent effilocher ver 0.20 6.35 0.00 0.07 ind:pas:3p; +effiloché effilocher ver m s 0.20 6.35 0.11 0.81 par:pas; +effilochée effilocher ver f s 0.20 6.35 0.02 0.88 par:pas; +effilochées effilocher ver f p 0.20 6.35 0.00 0.47 par:pas; +effilochure effilochure nom f s 0.00 0.47 0.00 0.20 +effilochures effilochure nom f p 0.00 0.47 0.00 0.27 +effilochés effilocher ver m p 0.20 6.35 0.00 0.68 par:pas; +effilé effilé adj m s 0.08 4.46 0.06 1.08 +effilée effiler ver f s 0.07 2.43 0.01 0.68 par:pas; +effilées effiler ver f p 0.07 2.43 0.02 0.41 par:pas; +effilure effilure nom f s 0.00 0.14 0.00 0.07 +effilures effilure nom f p 0.00 0.14 0.00 0.07 +effilés effilé adj m p 0.08 4.46 0.01 1.35 +efflanqué efflanqué adj m s 0.14 3.92 0.14 2.30 +efflanquée efflanqué adj f s 0.14 3.92 0.00 0.61 +efflanquées efflanqué adj f p 0.14 3.92 0.00 0.47 +efflanqués efflanquer ver m p 0.01 1.28 0.01 0.27 par:pas; +effleura effleurer ver 3.23 25.68 0.01 4.93 ind:pas:3s; +effleurage effleurage nom m s 0.00 0.07 0.00 0.07 +effleurai effleurer ver 3.23 25.68 0.00 0.14 ind:pas:1s; +effleuraient effleurer ver 3.23 25.68 0.00 0.88 ind:imp:3p; +effleurais effleurer ver 3.23 25.68 0.00 0.20 ind:imp:1s; +effleurait effleurer ver 3.23 25.68 0.10 2.77 ind:imp:3s; +effleurant effleurer ver 3.23 25.68 0.12 1.49 par:pre; +effleure effleurer ver 3.23 25.68 0.54 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effleurement effleurement nom m s 0.07 1.22 0.03 0.81 +effleurements effleurement nom m p 0.07 1.22 0.04 0.41 +effleurent effleurer ver 3.23 25.68 0.05 0.74 ind:pre:3p; +effleurer effleurer ver 3.23 25.68 0.62 4.59 inf; +effleurera effleurer ver 3.23 25.68 0.00 0.14 ind:fut:3s; +effleurerait effleurer ver 3.23 25.68 0.01 0.20 cnd:pre:3s; +effleureront effleurer ver 3.23 25.68 0.00 0.07 ind:fut:3p; +effleures effleurer ver 3.23 25.68 0.03 0.07 ind:pre:2s; +effleurez effleurer ver 3.23 25.68 0.04 0.07 imp:pre:2p;ind:pre:2p; +effleurâmes effleurer ver 3.23 25.68 0.00 0.14 ind:pas:1p; +effleurât effleurer ver 3.23 25.68 0.00 0.07 sub:imp:3s; +effleurèrent effleurer ver 3.23 25.68 0.00 0.34 ind:pas:3p; +effleuré effleurer ver m s 3.23 25.68 1.27 3.18 par:pas; +effleurée effleurer ver f s 3.23 25.68 0.41 1.49 par:pas; +effleurées effleurer ver f p 3.23 25.68 0.00 0.20 par:pas; +effleurés effleurer ver m p 3.23 25.68 0.04 0.20 par:pas; +efflorescence efflorescence nom f s 0.01 0.27 0.01 0.27 +effluent effluent nom m s 0.01 0.00 0.01 0.00 +effluve effluve nom m s 0.09 6.49 0.02 0.61 +effluves effluve nom m p 0.09 6.49 0.06 5.88 +effondra effondrer ver 13.24 25.74 0.24 3.72 ind:pas:3s; +effondrai effondrer ver 13.24 25.74 0.02 0.34 ind:pas:1s; +effondraient effondrer ver 13.24 25.74 0.01 0.81 ind:imp:3p; +effondrais effondrer ver 13.24 25.74 0.00 0.14 ind:imp:1s; +effondrait effondrer ver 13.24 25.74 0.15 2.50 ind:imp:3s; +effondrant effondrer ver 13.24 25.74 0.04 0.34 par:pre; +effondre effondrer ver 13.24 25.74 3.19 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effondrement effondrement nom m s 1.83 6.82 1.82 6.28 +effondrements effondrement nom m p 1.83 6.82 0.01 0.54 +effondrent effondrer ver 13.24 25.74 0.41 1.15 ind:pre:3p; +effondrer effondrer ver 13.24 25.74 3.22 5.34 inf; +effondrera effondrer ver 13.24 25.74 0.51 0.34 ind:fut:3s; +effondreraient effondrer ver 13.24 25.74 0.04 0.00 cnd:pre:3p; +effondrerais effondrer ver 13.24 25.74 0.05 0.07 cnd:pre:1s; +effondrerait effondrer ver 13.24 25.74 0.36 0.27 cnd:pre:3s; +effondreront effondrer ver 13.24 25.74 0.11 0.00 ind:fut:3p; +effondrez effondrer ver 13.24 25.74 0.03 0.00 ind:pre:2p; +effondrât effondrer ver 13.24 25.74 0.00 0.14 sub:imp:3s; +effondrèrent effondrer ver 13.24 25.74 0.00 0.54 ind:pas:3p; +effondré effondrer ver m s 13.24 25.74 2.75 3.24 par:pas; +effondrée effondrer ver f s 13.24 25.74 1.87 2.16 par:pas; +effondrées effondrer ver f p 13.24 25.74 0.05 0.20 par:pas; +effondrés effondrer ver m p 13.24 25.74 0.17 0.61 par:pas; +efforce efforcer ver 6.14 54.19 2.09 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +efforcent efforcer ver 6.14 54.19 0.38 2.16 ind:pre:3p; +efforcer efforcer ver 6.14 54.19 0.86 2.57 inf; +efforcera efforcer ver 6.14 54.19 0.04 0.20 ind:fut:3s; +efforcerai efforcer ver 6.14 54.19 0.40 0.27 ind:fut:1s; +efforceraient efforcer ver 6.14 54.19 0.00 0.14 cnd:pre:3p; +efforcerais efforcer ver 6.14 54.19 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +efforcerait efforcer ver 6.14 54.19 0.01 0.14 cnd:pre:3s; +efforcerons efforcer ver 6.14 54.19 0.12 0.07 ind:fut:1p; +efforces efforcer ver 6.14 54.19 0.11 0.27 ind:pre:2s; +efforcez efforcer ver 6.14 54.19 0.31 0.00 imp:pre:2p;ind:pre:2p; +efforcions efforcer ver 6.14 54.19 0.00 0.81 ind:imp:1p; +efforcèrent efforcer ver 6.14 54.19 0.00 0.20 ind:pas:3p; +efforcé efforcer ver m s 6.14 54.19 0.46 2.03 par:pas; +efforcée efforcer ver f s 6.14 54.19 0.14 0.81 par:pas; +efforcés efforcer ver m p 6.14 54.19 0.12 0.41 par:pas; +effort effort nom m s 42.70 136.62 23.26 98.18 +efforça efforcer ver 6.14 54.19 0.02 5.61 ind:pas:3s; +efforçai efforcer ver 6.14 54.19 0.01 0.95 ind:pas:1s; +efforçaient efforcer ver 6.14 54.19 0.04 4.05 ind:imp:3p; +efforçais efforcer ver 6.14 54.19 0.08 2.50 ind:imp:1s; +efforçait efforcer ver 6.14 54.19 0.32 14.19 ind:imp:3s; +efforçant efforcer ver 6.14 54.19 0.24 7.64 par:pre; +efforçâmes efforcer ver 6.14 54.19 0.00 0.14 ind:pas:1p; +efforçons efforcer ver 6.14 54.19 0.38 0.41 imp:pre:1p;ind:pre:1p; +efforçât efforcer ver 6.14 54.19 0.00 0.47 sub:imp:3s; +efforts effort nom m p 42.70 136.62 19.44 38.45 +effraction effraction nom f s 7.76 2.03 7.49 2.03 +effractions effraction nom f p 7.76 2.03 0.27 0.00 +effraie effrayer ver 37.04 29.86 7.65 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effraient effrayer ver 37.04 29.86 1.07 0.47 ind:pre:3p; +effraiera effrayer ver 37.04 29.86 0.07 0.07 ind:fut:3s; +effraieraient effrayer ver 37.04 29.86 0.01 0.00 cnd:pre:3p; +effraierait effrayer ver 37.04 29.86 0.36 0.20 cnd:pre:3s; +effraieras effrayer ver 37.04 29.86 0.04 0.00 ind:fut:2s; +effraierez effrayer ver 37.04 29.86 0.03 0.00 ind:fut:2p; +effraies effrayer ver 37.04 29.86 0.53 0.20 ind:pre:2s; +effrange effranger ver 0.01 1.96 0.00 0.07 ind:pre:3s; +effrangeait effranger ver 0.01 1.96 0.00 0.07 ind:imp:3s; +effrangent effranger ver 0.01 1.96 0.00 0.07 ind:pre:3p; +effrangé effranger ver m s 0.01 1.96 0.01 0.61 par:pas; +effrangée effranger ver f s 0.01 1.96 0.00 0.34 par:pas; +effrangées effranger ver f p 0.01 1.96 0.00 0.41 par:pas; +effrangés effranger ver m p 0.01 1.96 0.00 0.41 par:pas; +effraya effrayer ver 37.04 29.86 0.00 2.09 ind:pas:3s; +effrayaient effrayer ver 37.04 29.86 0.23 1.35 ind:imp:3p; +effrayais effrayer ver 37.04 29.86 0.04 0.20 ind:imp:1s; +effrayait effrayer ver 37.04 29.86 0.91 7.16 ind:imp:3s; +effrayamment effrayamment adv 0.00 0.20 0.00 0.20 +effrayant effrayant adj m s 14.69 19.19 10.07 8.99 +effrayante effrayant adj f s 14.69 19.19 2.86 7.16 +effrayantes effrayant adj f p 14.69 19.19 0.69 1.42 +effrayants effrayant adj m p 14.69 19.19 1.07 1.62 +effraye effrayer ver 37.04 29.86 1.10 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effrayent effrayer ver 37.04 29.86 0.25 0.20 ind:pre:3p; +effrayer effrayer ver 37.04 29.86 9.43 4.73 ind:pre:2p;inf; +effrayerais effrayer ver 37.04 29.86 0.03 0.00 cnd:pre:1s; +effrayerait effrayer ver 37.04 29.86 0.08 0.00 cnd:pre:3s; +effrayeras effrayer ver 37.04 29.86 0.01 0.00 ind:fut:2s; +effrayez effrayer ver 37.04 29.86 1.01 0.34 imp:pre:2p;ind:pre:2p; +effrayons effrayer ver 37.04 29.86 0.20 0.07 imp:pre:1p;ind:pre:1p; +effrayèrent effrayer ver 37.04 29.86 0.14 0.00 ind:pas:3p; +effrayé effrayer ver m s 37.04 29.86 6.36 3.99 par:pas; +effrayée effrayer ver f s 37.04 29.86 5.00 2.64 par:pas; +effrayées effrayé adj f p 6.78 9.46 0.27 0.20 +effrayés effrayer ver m p 37.04 29.86 1.57 1.42 par:pas; +effrita effriter ver 0.45 5.68 0.01 0.20 ind:pas:3s; +effritaient effriter ver 0.45 5.68 0.01 0.27 ind:imp:3p; +effritait effriter ver 0.45 5.68 0.10 0.54 ind:imp:3s; +effritant effriter ver 0.45 5.68 0.00 0.54 par:pre; +effrite effriter ver 0.45 5.68 0.23 1.55 ind:pre:1s;ind:pre:3s; +effritement effritement nom m s 0.01 0.47 0.01 0.41 +effritements effritement nom m p 0.01 0.47 0.00 0.07 +effritent effriter ver 0.45 5.68 0.04 0.68 ind:pre:3p; +effriter effriter ver 0.45 5.68 0.04 0.54 inf; +effriterait effriter ver 0.45 5.68 0.00 0.14 cnd:pre:3s; +effrité effriter ver m s 0.45 5.68 0.02 0.41 par:pas; +effritée effriter ver f s 0.45 5.68 0.00 0.27 par:pas; +effritées effriter ver f p 0.45 5.68 0.00 0.20 par:pas; +effrités effriter ver m p 0.45 5.68 0.00 0.34 par:pas; +effroi effroi nom m s 2.83 12.91 2.83 12.91 +effronterie effronterie nom f s 0.46 1.22 0.46 1.15 +effronteries effronterie nom f p 0.46 1.22 0.00 0.07 +effronté effronté nom m s 1.65 0.81 0.73 0.20 +effrontée effronté nom f s 1.65 0.81 0.79 0.47 +effrontées effronté adj f p 1.51 1.55 0.14 0.14 +effrontément effrontément adv 0.22 0.74 0.22 0.74 +effrontés effronté adj m p 1.51 1.55 0.04 0.47 +effroyable effroyable adj s 4.41 8.99 3.84 6.69 +effroyablement effroyablement adv 0.11 1.35 0.11 1.35 +effroyables effroyable adj p 4.41 8.99 0.57 2.30 +effréné effréné adj m s 0.50 3.11 0.36 1.28 +effrénée effréné adj f s 0.50 3.11 0.13 1.42 +effrénées effréné adj f p 0.50 3.11 0.01 0.34 +effrénés effréné adj m p 0.50 3.11 0.00 0.07 +effulgente effulgent adj f s 0.01 0.07 0.01 0.07 +efféminait efféminer ver 0.25 0.07 0.00 0.07 ind:imp:3s; +efféminé efféminé adj m s 0.81 0.68 0.49 0.20 +efféminée efféminé adj f s 0.81 0.68 0.04 0.14 +efféminés efféminé adj m p 0.81 0.68 0.28 0.34 +effusion effusion nom f s 1.73 6.42 1.39 3.24 +effusionniste effusionniste adj s 0.00 0.14 0.00 0.07 +effusionnistes effusionniste adj m p 0.00 0.14 0.00 0.07 +effusions effusion nom f p 1.73 6.42 0.34 3.18 +efrit efrit nom m s 0.00 0.07 0.00 0.07 +ego ego nom m 4.16 1.22 4.16 1.22 +eh eh ono 386.00 176.62 386.00 176.62 +eider eider nom m s 0.00 0.34 0.00 0.07 +eiders eider nom m p 0.00 0.34 0.00 0.27 +eidétique eidétique adj f s 0.02 0.00 0.02 0.00 +einsteinienne einsteinien adj f s 0.01 0.07 0.01 0.07 +ektachromes ektachrome nom m p 0.00 0.14 0.00 0.14 +eldorado eldorado nom m s 0.04 0.00 0.04 0.00 +elfe elfe nom m s 3.26 1.42 1.39 0.54 +elfes elfe nom m p 3.26 1.42 1.87 0.88 +elle_même elle_même pro_per f s 17.88 113.51 17.88 113.51 +elle elle pro_per f s 4520.53 6991.49 4520.53 6991.49 +elles_mêmes elles_mêmes pro_per f p 2.21 14.86 2.21 14.86 +elles elles pro_per f p 420.51 605.14 420.51 605.14 +ellipse ellipse nom f s 0.44 1.42 0.42 0.95 +ellipses ellipse nom f p 0.44 1.42 0.02 0.47 +ellipsoïde ellipsoïde adj s 0.00 0.07 0.00 0.07 +elliptique elliptique adj s 0.09 0.61 0.06 0.47 +elliptiques elliptique adj p 0.09 0.61 0.02 0.14 +ellébore ellébore nom m s 0.03 0.07 0.03 0.07 +elzévir elzévir nom m s 0.00 0.07 0.00 0.07 +emails email nom m p 0.65 0.00 0.65 0.00 +embûche embûche nom f s 0.24 3.18 0.04 0.41 +embûches embûche nom f p 0.24 3.18 0.20 2.77 +embabouiner embabouiner ver 0.00 0.07 0.00 0.07 inf; +emballa emballer ver 18.86 15.27 0.00 0.74 ind:pas:3s; +emballage emballage nom m s 4.60 6.08 3.23 4.39 +emballages emballage nom m p 4.60 6.08 1.37 1.69 +emballai emballer ver 18.86 15.27 0.00 0.14 ind:pas:1s; +emballaient emballer ver 18.86 15.27 0.00 0.20 ind:imp:3p; +emballais emballer ver 18.86 15.27 0.27 0.14 ind:imp:1s;ind:imp:2s; +emballait emballer ver 18.86 15.27 0.31 1.62 ind:imp:3s; +emballant emballer ver 18.86 15.27 0.10 0.34 par:pre; +emballe emballer ver 18.86 15.27 5.34 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emballement emballement nom m s 0.02 0.61 0.01 0.54 +emballements emballement nom m p 0.02 0.61 0.01 0.07 +emballent emballer ver 18.86 15.27 0.32 0.20 ind:pre:3p; +emballer emballer ver 18.86 15.27 3.74 4.66 inf; +emballera emballer ver 18.86 15.27 0.18 0.07 ind:fut:3s; +emballeraient emballer ver 18.86 15.27 0.00 0.07 cnd:pre:3p; +emballerait emballer ver 18.86 15.27 0.01 0.00 cnd:pre:3s; +emballeras emballer ver 18.86 15.27 0.00 0.07 ind:fut:2s; +emballerons emballer ver 18.86 15.27 0.01 0.00 ind:fut:1p; +emballes emballer ver 18.86 15.27 1.04 0.20 ind:pre:2s; +emballeur emballeur nom m s 0.15 0.81 0.11 0.61 +emballeurs emballeur nom m p 0.15 0.81 0.03 0.14 +emballeuse emballeur nom f s 0.15 0.81 0.01 0.00 +emballeuses emballeur nom f p 0.15 0.81 0.00 0.07 +emballez emballer ver 18.86 15.27 1.73 0.61 imp:pre:2p;ind:pre:2p; +emballons emballer ver 18.86 15.27 0.78 0.14 imp:pre:1p;ind:pre:1p; +emballât emballer ver 18.86 15.27 0.00 0.07 sub:imp:3s; +emballèrent emballer ver 18.86 15.27 0.00 0.14 ind:pas:3p; +emballé emballer ver m s 18.86 15.27 3.21 2.16 par:pas; +emballée emballer ver f s 18.86 15.27 1.20 1.01 par:pas; +emballées emballer ver f p 18.86 15.27 0.14 0.27 par:pas; +emballés emballer ver m p 18.86 15.27 0.48 0.20 par:pas; +embaluchonnés embaluchonner ver m p 0.00 0.07 0.00 0.07 par:pas; +embarbouilla embarbouiller ver 0.00 0.14 0.00 0.07 ind:pas:3s; +embarbouillé embarbouiller ver m s 0.00 0.14 0.00 0.07 par:pas; +embarcadère embarcadère nom m s 1.13 2.16 1.10 1.89 +embarcadères embarcadère nom m p 1.13 2.16 0.03 0.27 +embarcation embarcation nom f s 0.80 4.80 0.62 3.24 +embarcations embarcation nom f p 0.80 4.80 0.19 1.55 +embardée embardée nom f s 0.23 1.96 0.16 1.35 +embardées embardée nom f p 0.23 1.96 0.07 0.61 +embargo embargo nom m s 0.75 0.07 0.72 0.07 +embargos embargo nom m p 0.75 0.07 0.03 0.00 +embarqua embarquer ver 26.49 32.77 0.17 1.55 ind:pas:3s; +embarquai embarquer ver 26.49 32.77 0.01 0.68 ind:pas:1s; +embarquaient embarquer ver 26.49 32.77 0.09 0.74 ind:imp:3p; +embarquais embarquer ver 26.49 32.77 0.05 0.47 ind:imp:1s; +embarquait embarquer ver 26.49 32.77 0.06 2.09 ind:imp:3s; +embarquant embarquer ver 26.49 32.77 0.37 0.27 par:pre; +embarque embarquer ver 26.49 32.77 6.88 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embarquement embarquement nom m s 4.03 4.19 4.02 3.99 +embarquements embarquement nom m p 4.03 4.19 0.01 0.20 +embarquent embarquer ver 26.49 32.77 0.95 0.41 ind:pre:3p; +embarquer embarquer ver 26.49 32.77 7.16 10.74 inf; +embarquera embarquer ver 26.49 32.77 0.27 0.00 ind:fut:3s; +embarquerai embarquer ver 26.49 32.77 0.03 0.00 ind:fut:1s; +embarqueraient embarquer ver 26.49 32.77 0.01 0.07 cnd:pre:3p; +embarquerais embarquer ver 26.49 32.77 0.04 0.14 cnd:pre:1s; +embarquerait embarquer ver 26.49 32.77 0.05 0.34 cnd:pre:3s; +embarqueras embarquer ver 26.49 32.77 0.02 0.14 ind:fut:2s; +embarquerez embarquer ver 26.49 32.77 0.12 0.00 ind:fut:2p; +embarquerions embarquer ver 26.49 32.77 0.00 0.07 cnd:pre:1p; +embarqueront embarquer ver 26.49 32.77 0.04 0.07 ind:fut:3p; +embarquez embarquer ver 26.49 32.77 2.89 0.20 imp:pre:2p;ind:pre:2p; +embarquiez embarquer ver 26.49 32.77 0.02 0.07 ind:imp:2p; +embarquions embarquer ver 26.49 32.77 0.01 0.14 ind:imp:1p; +embarquâmes embarquer ver 26.49 32.77 0.11 0.14 ind:pas:1p; +embarquons embarquer ver 26.49 32.77 0.44 0.20 imp:pre:1p;ind:pre:1p; +embarquèrent embarquer ver 26.49 32.77 0.05 0.47 ind:pas:3p; +embarqué embarquer ver m s 26.49 32.77 4.89 5.68 par:pas; +embarquée embarquer ver f s 26.49 32.77 1.12 1.15 par:pas; +embarquées embarquer ver f p 26.49 32.77 0.08 0.68 par:pas; +embarqués embarquer ver m p 26.49 32.77 0.56 2.97 par:pas; +embarras embarras nom m 5.32 12.09 5.32 12.09 +embarrassa embarrasser ver 6.70 13.85 0.02 0.27 ind:pas:3s; +embarrassai embarrasser ver 6.70 13.85 0.00 0.07 ind:pas:1s; +embarrassaient embarrasser ver 6.70 13.85 0.01 0.74 ind:imp:3p; +embarrassais embarrasser ver 6.70 13.85 0.01 0.14 ind:imp:1s; +embarrassait embarrasser ver 6.70 13.85 0.03 1.01 ind:imp:3s; +embarrassant embarrassant adj m s 7.44 2.23 5.28 0.74 +embarrassante embarrassant adj f s 7.44 2.23 1.20 1.01 +embarrassantes embarrassant adj f p 7.44 2.23 0.38 0.47 +embarrassants embarrassant adj m p 7.44 2.23 0.58 0.00 +embarrasse embarrasser ver 6.70 13.85 1.14 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embarrassent embarrasser ver 6.70 13.85 0.34 0.20 ind:pre:3p; +embarrasser embarrasser ver 6.70 13.85 1.52 1.69 ind:pre:2p;inf; +embarrasserai embarrasser ver 6.70 13.85 0.04 0.00 ind:fut:1s; +embarrasseraient embarrasser ver 6.70 13.85 0.00 0.07 cnd:pre:3p; +embarrasses embarrasser ver 6.70 13.85 0.26 0.07 ind:pre:2s; +embarrassez embarrasser ver 6.70 13.85 0.24 0.00 imp:pre:2p;ind:pre:2p; +embarrassions embarrasser ver 6.70 13.85 0.00 0.07 ind:imp:1p; +embarrassons embarrasser ver 6.70 13.85 0.14 0.07 imp:pre:1p;ind:pre:1p; +embarrassèrent embarrasser ver 6.70 13.85 0.00 0.07 ind:pas:3p; +embarrassé embarrassé adj m s 2.38 7.36 1.46 5.00 +embarrassée embarrasser ver f s 6.70 13.85 1.05 1.28 par:pas; +embarrassées embarrassé adj f p 2.38 7.36 0.14 0.27 +embarrassés embarrasser ver m p 6.70 13.85 0.23 0.61 par:pas; +embarrure embarrure nom f s 0.01 0.00 0.01 0.00 +embase embase nom f s 0.00 0.14 0.00 0.07 +embases embase nom f p 0.00 0.14 0.00 0.07 +embastiller embastiller ver 0.05 0.27 0.02 0.14 inf; +embastillé embastiller ver m s 0.05 0.27 0.02 0.07 par:pas; +embastillée embastiller ver f s 0.05 0.27 0.01 0.00 par:pas; +embastillés embastiller ver m p 0.05 0.27 0.00 0.07 par:pas; +embats embattre ver 0.00 0.07 0.00 0.07 ind:pre:2s; +embaucha embaucher ver 13.11 5.95 0.13 0.14 ind:pas:3s; +embauchage embauchage nom m s 0.00 0.07 0.00 0.07 +embauchaient embaucher ver 13.11 5.95 0.01 0.07 ind:imp:3p; +embauchais embaucher ver 13.11 5.95 0.16 0.00 ind:imp:1s;ind:imp:2s; +embauchait embaucher ver 13.11 5.95 0.18 0.34 ind:imp:3s; +embauchant embaucher ver 13.11 5.95 0.04 0.07 par:pre; +embauche embauche nom f s 2.86 2.97 2.84 2.97 +embauchent embaucher ver 13.11 5.95 0.29 0.27 ind:pre:3p; +embaucher embaucher ver 13.11 5.95 3.56 1.69 inf; +embauchera embaucher ver 13.11 5.95 0.10 0.14 ind:fut:3s; +embaucherai embaucher ver 13.11 5.95 0.03 0.00 ind:fut:1s; +embaucherais embaucher ver 13.11 5.95 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +embaucherait embaucher ver 13.11 5.95 0.07 0.00 cnd:pre:3s; +embaucheront embaucher ver 13.11 5.95 0.01 0.00 ind:fut:3p; +embauches embaucher ver 13.11 5.95 0.27 0.07 ind:pre:2s; +embauchez embaucher ver 13.11 5.95 0.38 0.00 imp:pre:2p;ind:pre:2p; +embauchoir embauchoir nom m s 0.05 0.07 0.03 0.00 +embauchoirs embauchoir nom m p 0.05 0.07 0.02 0.07 +embauchons embaucher ver 13.11 5.95 0.14 0.07 imp:pre:1p;ind:pre:1p; +embauchât embaucher ver 13.11 5.95 0.00 0.07 sub:imp:3s; +embauché embaucher ver m s 13.11 5.95 4.56 1.42 par:pas; +embauchée embaucher ver f s 13.11 5.95 0.75 0.20 par:pas; +embauchées embaucher ver f p 13.11 5.95 0.05 0.14 par:pas; +embauchés embaucher ver m p 13.11 5.95 0.28 0.27 par:pas; +embauma embaumer ver 2.83 7.09 0.01 0.34 ind:pas:3s; +embaumaient embaumer ver 2.83 7.09 0.04 0.34 ind:imp:3p; +embaumait embaumer ver 2.83 7.09 0.04 1.69 ind:imp:3s; +embaumant embaumant adj m s 0.00 0.54 0.00 0.47 +embaumants embaumant adj m p 0.00 0.54 0.00 0.07 +embaume embaumer ver 2.83 7.09 0.60 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embaumement embaumement nom m s 0.68 0.27 0.65 0.20 +embaumements embaumement nom m p 0.68 0.27 0.02 0.07 +embaument embaumer ver 2.83 7.09 0.26 0.61 ind:pre:3p; +embaumer embaumer ver 2.83 7.09 0.81 0.81 inf; +embaumerait embaumer ver 2.83 7.09 0.00 0.07 cnd:pre:3s; +embaumeur embaumeur nom m s 0.51 0.88 0.34 0.14 +embaumeurs embaumeur nom m p 0.51 0.88 0.04 0.74 +embaumeuse embaumeur nom f s 0.51 0.88 0.13 0.00 +embaumez embaumer ver 2.83 7.09 0.02 0.00 imp:pre:2p;ind:pre:2p; +embaumions embaumer ver 2.83 7.09 0.01 0.00 ind:imp:1p; +embaumé embaumer ver m s 2.83 7.09 0.47 0.95 par:pas; +embaumée embaumer ver f s 2.83 7.09 0.28 0.68 par:pas; +embaumées embaumer ver f p 2.83 7.09 0.00 0.27 par:pas; +embaumés embaumer ver m p 2.83 7.09 0.28 0.20 par:pas; +embelli embellir ver m s 3.40 5.14 0.34 0.74 par:pas; +embellie embellie nom f s 0.02 2.70 0.02 2.43 +embellies embellir ver f p 3.40 5.14 0.10 0.14 par:pas; +embellir embellir ver 3.40 5.14 1.06 1.55 inf; +embellira embellir ver 3.40 5.14 0.14 0.00 ind:fut:3s; +embellirai embellir ver 3.40 5.14 0.01 0.00 ind:fut:1s; +embellirait embellir ver 3.40 5.14 0.02 0.14 cnd:pre:3s; +embellis embellir ver m p 3.40 5.14 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +embellissaient embellir ver 3.40 5.14 0.10 0.20 ind:imp:3p; +embellissais embellir ver 3.40 5.14 0.00 0.07 ind:imp:1s; +embellissait embellir ver 3.40 5.14 0.01 0.68 ind:imp:3s; +embellissant embellir ver 3.40 5.14 0.00 0.20 par:pre; +embellissement embellissement nom m s 0.07 0.41 0.06 0.34 +embellissements embellissement nom m p 0.07 0.41 0.01 0.07 +embellissent embellir ver 3.40 5.14 0.06 0.14 ind:pre:3p; +embellissez embellir ver 3.40 5.14 0.14 0.00 imp:pre:2p;ind:pre:2p; +embellissons embellir ver 3.40 5.14 0.02 0.00 imp:pre:1p;ind:pre:1p; +embellit embellir ver 3.40 5.14 1.28 0.81 ind:pre:3s;ind:pas:3s; +emberlificotaient emberlificoter ver 0.01 0.47 0.00 0.07 ind:imp:3p; +emberlificotais emberlificoter ver 0.01 0.47 0.00 0.07 ind:imp:1s; +emberlificote emberlificoter ver 0.01 0.47 0.00 0.07 ind:pre:3s; +emberlificoter emberlificoter ver 0.01 0.47 0.00 0.14 inf; +emberlificoté emberlificoté adj m s 0.11 0.07 0.10 0.00 +emberlificotée emberlificoter ver f s 0.01 0.47 0.00 0.07 par:pas; +emberlificotées emberlificoter ver f p 0.01 0.47 0.00 0.07 par:pas; +emberlificotés emberlificoté adj m p 0.11 0.07 0.01 0.07 +emberlucoquer emberlucoquer ver 0.00 0.07 0.00 0.07 inf; +embijoutée embijouté adj f s 0.00 0.07 0.00 0.07 +emblavages emblavage nom m p 0.00 0.07 0.00 0.07 +emblaver emblaver ver 0.00 0.20 0.00 0.07 inf; +emblavé emblaver ver m s 0.00 0.20 0.00 0.07 par:pas; +emblavée emblaver ver f s 0.00 0.20 0.00 0.07 par:pas; +emblavure emblavure nom f s 0.00 0.27 0.00 0.14 +emblavures emblavure nom f p 0.00 0.27 0.00 0.14 +emblème emblème nom m s 1.14 4.32 0.81 2.97 +emblèmes emblème nom m p 1.14 4.32 0.33 1.35 +emblématique emblématique adj s 0.38 0.68 0.36 0.41 +emblématiques emblématique adj m p 0.38 0.68 0.01 0.27 +emboîta emboîter ver 0.98 6.08 0.00 0.41 ind:pas:3s; +emboîtables emboîtable adj m p 0.00 0.07 0.00 0.07 +emboîtage emboîtage nom m s 0.00 0.20 0.00 0.07 +emboîtages emboîtage nom m p 0.00 0.20 0.00 0.14 +emboîtai emboîter ver 0.98 6.08 0.00 0.14 ind:pas:1s; +emboîtaient emboîter ver 0.98 6.08 0.01 0.54 ind:imp:3p; +emboîtais emboîter ver 0.98 6.08 0.00 0.20 ind:imp:1s; +emboîtait emboîter ver 0.98 6.08 0.10 0.47 ind:imp:3s; +emboîtant emboîter ver 0.98 6.08 0.10 0.61 par:pre; +emboîtas emboîter ver 0.98 6.08 0.00 0.07 ind:pas:2s; +emboîte emboîter ver 0.98 6.08 0.08 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emboîtement emboîtement nom m s 0.00 0.07 0.00 0.07 +emboîtent emboîter ver 0.98 6.08 0.24 0.61 ind:pre:3p; +emboîter emboîter ver 0.98 6.08 0.29 0.61 inf; +emboîterai emboîter ver 0.98 6.08 0.01 0.00 ind:fut:1s; +emboîtions emboîter ver 0.98 6.08 0.00 0.07 ind:imp:1p; +emboîtâmes emboîter ver 0.98 6.08 0.00 0.07 ind:pas:1p; +emboîtons emboîter ver 0.98 6.08 0.01 0.07 ind:pre:1p; +emboîtèrent emboîter ver 0.98 6.08 0.00 0.14 ind:pas:3p; +emboîté emboîter ver m s 0.98 6.08 0.13 0.74 par:pas; +emboîtée emboîter ver f s 0.98 6.08 0.00 0.07 par:pas; +emboîtées emboîter ver f p 0.98 6.08 0.01 0.47 par:pas; +emboîtures emboîture nom f p 0.00 0.07 0.00 0.07 +emboîtés emboîter ver m p 0.98 6.08 0.00 0.34 par:pas; +embobeliner embobeliner ver 0.00 0.14 0.00 0.14 inf; +embobinant embobiner ver 2.37 1.35 0.01 0.00 par:pre; +embobine embobiner ver 2.37 1.35 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embobiner embobiner ver 2.37 1.35 1.29 0.95 inf; +embobinez embobiner ver 2.37 1.35 0.03 0.00 imp:pre:2p;ind:pre:2p; +embobiné embobiner ver m s 2.37 1.35 0.67 0.14 par:pas; +embobinée embobiner ver f s 2.37 1.35 0.10 0.14 par:pas; +embobinées embobiner ver f p 2.37 1.35 0.00 0.07 par:pas; +embobinés embobiner ver m p 2.37 1.35 0.03 0.00 par:pas; +embâcle embâcle nom m s 0.01 0.14 0.01 0.14 +embole embole nom m s 0.04 0.00 0.04 0.00 +embolie embolie nom f s 1.05 0.68 1.03 0.61 +embolies embolie nom f p 1.05 0.68 0.02 0.07 +embolique embolique adj s 0.01 0.00 0.01 0.00 +embonpoint embonpoint nom m s 0.18 1.96 0.18 1.96 +embosser embosser ver 0.00 0.34 0.00 0.07 inf; +embossé embosser ver m s 0.00 0.34 0.00 0.07 par:pas; +embossée embosser ver f s 0.00 0.34 0.00 0.14 par:pas; +embossés embosser ver m p 0.00 0.34 0.00 0.07 par:pas; +emboucanent emboucaner ver 0.00 0.07 0.00 0.07 ind:pre:3p; +emboucha emboucher ver 0.01 1.08 0.00 0.07 ind:pas:3s; +embouchant emboucher ver 0.01 1.08 0.00 0.20 par:pre; +embouche emboucher ver 0.01 1.08 0.00 0.27 ind:pre:3s; +emboucher emboucher ver 0.01 1.08 0.00 0.20 inf; +emboucherait emboucher ver 0.01 1.08 0.00 0.07 cnd:pre:3s; +embouchoir embouchoir nom m s 0.01 0.14 0.01 0.00 +embouchoirs embouchoir nom m p 0.01 0.14 0.00 0.14 +embouché embouché adj m s 0.45 0.74 0.09 0.41 +embouchée embouché adj f s 0.45 0.74 0.25 0.07 +embouchées embouché adj f p 0.45 0.74 0.00 0.07 +embouchure embouchure nom f s 0.69 3.99 0.68 3.78 +embouchures embouchure nom f p 0.69 3.99 0.01 0.20 +embouchés embouché adj m p 0.45 0.74 0.11 0.20 +embouquer embouquer ver 0.00 0.20 0.00 0.14 inf; +embouqué embouquer ver m s 0.00 0.20 0.00 0.07 par:pas; +embourbaient embourber ver 1.02 1.89 0.00 0.07 ind:imp:3p; +embourbait embourber ver 1.02 1.89 0.00 0.14 ind:imp:3s; +embourbe embourber ver 1.02 1.89 0.03 0.34 ind:pre:1s;ind:pre:3s; +embourbent embourber ver 1.02 1.89 0.00 0.07 ind:pre:3p; +embourber embourber ver 1.02 1.89 0.15 0.47 inf; +embourbé embourber ver m s 1.02 1.89 0.42 0.41 par:pas; +embourbée embourber ver f s 1.02 1.89 0.15 0.14 par:pas; +embourbées embourbé adj f p 0.06 0.34 0.01 0.00 +embourbés embourber ver m p 1.02 1.89 0.26 0.07 par:pas; +embourgeoise embourgeoiser ver 0.03 0.41 0.00 0.07 ind:pre:3s; +embourgeoisement embourgeoisement nom m s 0.01 0.34 0.01 0.34 +embourgeoiser embourgeoiser ver 0.03 0.41 0.02 0.14 inf; +embourgeoises embourgeoiser ver 0.03 0.41 0.00 0.20 ind:pre:2s; +embourgeoisé embourgeoisé adj m s 0.01 0.00 0.01 0.00 +embourgeoisés embourgeoisé nom m p 0.10 0.07 0.10 0.00 +embout embout nom m s 0.20 0.81 0.18 0.41 +embouteillage embouteillage nom m s 3.93 3.38 2.08 1.35 +embouteillages embouteillage nom m p 3.93 3.38 1.85 2.03 +embouteillait embouteiller ver 0.04 0.34 0.00 0.07 ind:imp:3s; +embouteille embouteiller ver 0.04 0.34 0.01 0.07 ind:pre:3s; +embouteiller embouteiller ver 0.04 0.34 0.00 0.20 inf; +embouteillé embouteiller ver m s 0.04 0.34 0.01 0.00 par:pas; +embouteillée embouteillé adj f s 0.01 0.20 0.01 0.07 +embouteillées embouteiller ver f p 0.04 0.34 0.01 0.00 par:pas; +embouti emboutir ver m s 1.55 0.95 1.01 0.20 par:pas; +emboutie emboutir ver f s 1.55 0.95 0.07 0.07 par:pas; +embouties emboutir ver f p 1.55 0.95 0.00 0.07 par:pas; +emboutir emboutir ver 1.55 0.95 0.28 0.41 inf; +emboutis emboutir ver m p 1.55 0.95 0.06 0.07 ind:pre:1s;par:pas; +emboutissant emboutir ver 1.55 0.95 0.00 0.07 par:pre; +emboutisseur emboutisseur nom m s 0.00 0.14 0.00 0.07 +emboutisseuse emboutisseur nom f s 0.00 0.14 0.00 0.07 +emboutit emboutir ver 1.55 0.95 0.12 0.07 ind:pre:3s; +embouts embout nom m p 0.20 0.81 0.03 0.41 +embranchant embrancher ver 0.00 0.07 0.00 0.07 par:pre; +embranchement embranchement nom m s 0.45 3.11 0.42 2.84 +embranchements embranchement nom m p 0.45 3.11 0.03 0.27 +embraquer embraquer ver 0.01 0.00 0.01 0.00 inf; +embrasa embraser ver 2.67 6.82 0.04 0.68 ind:pas:3s; +embrasaient embraser ver 2.67 6.82 0.01 0.34 ind:imp:3p; +embrasait embraser ver 2.67 6.82 0.02 1.22 ind:imp:3s; +embrasant embraser ver 2.67 6.82 0.03 0.14 par:pre; +embrase embraser ver 2.67 6.82 1.06 1.01 ind:pre:1s;ind:pre:3s; +embrasement embrasement nom m s 0.28 1.62 0.28 1.15 +embrasements embrasement nom m p 0.28 1.62 0.00 0.47 +embrasent embraser ver 2.67 6.82 0.04 0.47 ind:pre:3p; +embraser embraser ver 2.67 6.82 0.25 1.08 inf; +embrasera embraser ver 2.67 6.82 0.14 0.07 ind:fut:3s; +embraserait embraser ver 2.67 6.82 0.00 0.07 cnd:pre:3s; +embrasez embraser ver 2.67 6.82 0.03 0.00 imp:pre:2p; +embrassa embrasser ver 138.97 137.50 0.81 21.08 ind:pas:3s; +embrassade embrassade nom f s 0.61 1.89 0.16 0.61 +embrassades embrassade nom f p 0.61 1.89 0.45 1.28 +embrassai embrasser ver 138.97 137.50 0.14 3.04 ind:pas:1s; +embrassaient embrasser ver 138.97 137.50 0.57 2.36 ind:imp:3p; +embrassais embrasser ver 138.97 137.50 1.46 1.35 ind:imp:1s;ind:imp:2s; +embrassait embrasser ver 138.97 137.50 1.94 10.68 ind:imp:3s; +embrassant embrasser ver 138.97 137.50 1.41 5.07 par:pre; +embrasse embrasser ver 138.97 137.50 49.81 26.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +embrassement embrassement nom m s 0.02 0.95 0.01 0.41 +embrassements embrassement nom m p 0.02 0.95 0.01 0.54 +embrassent embrasser ver 138.97 137.50 2.88 2.64 ind:pre:3p; +embrasser embrasser ver 138.97 137.50 43.91 37.70 inf;;inf;;inf;; +embrassera embrasser ver 138.97 137.50 0.60 0.34 ind:fut:3s; +embrasserai embrasser ver 138.97 137.50 1.23 0.41 ind:fut:1s; +embrasseraient embrasser ver 138.97 137.50 0.00 0.14 cnd:pre:3p; +embrasserais embrasser ver 138.97 137.50 0.67 0.27 cnd:pre:1s;cnd:pre:2s; +embrasserait embrasser ver 138.97 137.50 0.17 0.81 cnd:pre:3s; +embrasseras embrasser ver 138.97 137.50 0.51 0.20 ind:fut:2s; +embrasserez embrasser ver 138.97 137.50 0.11 0.14 ind:fut:2p; +embrasseriez embrasser ver 138.97 137.50 0.04 0.00 cnd:pre:2p; +embrasseront embrasser ver 138.97 137.50 0.12 0.07 ind:fut:3p; +embrasses embrasser ver 138.97 137.50 5.21 0.61 ind:pre:2s;sub:pre:2s; +embrasseur embrasseur adj m s 0.05 0.00 0.05 0.00 +embrasseurs embrasseur nom m p 0.11 0.14 0.01 0.00 +embrasseuse embrasseur nom f s 0.11 0.14 0.06 0.00 +embrasseuses embrasseuse nom f p 0.01 0.00 0.01 0.00 +embrassez embrasser ver 138.97 137.50 6.08 1.15 imp:pre:2p;ind:pre:2p; +embrassiez embrasser ver 138.97 137.50 0.44 0.07 ind:imp:2p; +embrassions embrasser ver 138.97 137.50 0.05 0.68 ind:imp:1p; +embrassâmes embrasser ver 138.97 137.50 0.00 0.34 ind:pas:1p; +embrassons embrasser ver 138.97 137.50 1.82 0.61 imp:pre:1p;ind:pre:1p; +embrassât embrasser ver 138.97 137.50 0.00 0.41 sub:imp:3s; +embrassâtes embrasser ver 138.97 137.50 0.10 0.00 ind:pas:2p; +embrassèrent embrasser ver 138.97 137.50 0.01 2.50 ind:pas:3p; +embrassé embrasser ver m s 138.97 137.50 10.17 8.65 par:pas; +embrassée embrasser ver f s 138.97 137.50 6.01 6.76 par:pas; +embrassées embrasser ver f p 138.97 137.50 0.42 0.41 par:pas; +embrassés embrasser ver m p 138.97 137.50 2.28 2.36 par:pas; +embrasèrent embraser ver 2.67 6.82 0.00 0.34 ind:pas:3p; +embrasé embraser ver m s 2.67 6.82 0.35 1.01 par:pas; +embrasée embraser ver f s 2.67 6.82 0.36 0.34 par:pas; +embrasées embraser ver f p 2.67 6.82 0.01 0.00 par:pas; +embrasure embrasure nom f s 0.10 7.16 0.07 6.01 +embrasures embrasure nom f p 0.10 7.16 0.02 1.15 +embrasés embraser ver m p 2.67 6.82 0.34 0.07 par:pas; +embraya embrayer ver 0.72 2.64 0.00 0.68 ind:pas:3s; +embrayage embrayage nom m s 0.98 1.01 0.98 0.95 +embrayages embrayage nom m p 0.98 1.01 0.00 0.07 +embrayais embrayer ver 0.72 2.64 0.00 0.07 ind:imp:1s; +embrayait embrayer ver 0.72 2.64 0.01 0.34 ind:imp:3s; +embrayant embrayer ver 0.72 2.64 0.00 0.14 par:pre; +embraye embrayer ver 0.72 2.64 0.26 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embrayer embrayer ver 0.72 2.64 0.37 0.41 inf; +embrayes embrayer ver 0.72 2.64 0.02 0.07 ind:pre:2s; +embrayé embrayer ver m s 0.72 2.64 0.05 0.34 par:pas; +embrayée embrayer ver f s 0.72 2.64 0.01 0.00 par:pas; +embrigadé embrigader ver m s 0.02 0.20 0.01 0.14 par:pas; +embrigadée embrigader ver f s 0.02 0.20 0.01 0.07 par:pas; +embringua embringuer ver 0.72 1.15 0.00 0.07 ind:pas:3s; +embringuaient embringuer ver 0.72 1.15 0.00 0.07 ind:imp:3p; +embringuait embringuer ver 0.72 1.15 0.00 0.07 ind:imp:3s; +embringuer embringuer ver 0.72 1.15 0.15 0.34 inf; +embringues embringuer ver 0.72 1.15 0.03 0.00 ind:pre:2s; +embringué embringuer ver m s 0.72 1.15 0.40 0.54 par:pas; +embringuée embringuer ver f s 0.72 1.15 0.14 0.07 par:pas; +embrocation embrocation nom f s 0.01 0.41 0.01 0.34 +embrocations embrocation nom f p 0.01 0.41 0.00 0.07 +embrocha embrocher ver 0.71 2.30 0.00 0.14 ind:pas:3s; +embrochais embrocher ver 0.71 2.30 0.00 0.07 ind:imp:1s; +embrochant embrocher ver 0.71 2.30 0.01 0.07 par:pre; +embroche embrocher ver 0.71 2.30 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embrochent embrocher ver 0.71 2.30 0.01 0.07 ind:pre:3p; +embrocher embrocher ver 0.71 2.30 0.13 0.81 inf; +embrochera embrocher ver 0.71 2.30 0.00 0.07 ind:fut:3s; +embrochez embrocher ver 0.71 2.30 0.16 0.00 imp:pre:2p; +embrochèrent embrocher ver 0.71 2.30 0.00 0.14 ind:pas:3p; +embroché embrocher ver m s 0.71 2.30 0.08 0.27 par:pas; +embrochée embrocher ver f s 0.71 2.30 0.02 0.20 par:pas; +embrochées embrocher ver f p 0.71 2.30 0.00 0.07 par:pas; +embrochés embrocher ver m p 0.71 2.30 0.02 0.27 par:pas; +embrouilla embrouiller ver 8.15 9.46 0.00 0.47 ind:pas:3s; +embrouillage embrouillage nom m s 0.02 0.00 0.02 0.00 +embrouillai embrouiller ver 8.15 9.46 0.00 0.14 ind:pas:1s; +embrouillaient embrouiller ver 8.15 9.46 0.01 0.61 ind:imp:3p; +embrouillais embrouiller ver 8.15 9.46 0.03 0.34 ind:imp:1s;ind:imp:2s; +embrouillait embrouiller ver 8.15 9.46 0.03 1.55 ind:imp:3s; +embrouillamini embrouillamini nom m s 0.01 0.34 0.01 0.27 +embrouillaminis embrouillamini nom m p 0.01 0.34 0.00 0.07 +embrouillant embrouiller ver 8.15 9.46 0.15 0.61 par:pre; +embrouillasse embrouiller ver 8.15 9.46 0.00 0.07 sub:imp:1s; +embrouille embrouille nom f s 7.99 4.39 4.35 3.18 +embrouillement embrouillement nom m s 0.01 0.27 0.01 0.20 +embrouillements embrouillement nom m p 0.01 0.27 0.00 0.07 +embrouillent embrouiller ver 8.15 9.46 0.36 0.41 ind:pre:3p; +embrouiller embrouiller ver 8.15 9.46 1.92 1.22 inf; +embrouillerai embrouiller ver 8.15 9.46 0.01 0.00 ind:fut:1s; +embrouillerais embrouiller ver 8.15 9.46 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +embrouillerait embrouiller ver 8.15 9.46 0.02 0.07 cnd:pre:3s; +embrouilles embrouille nom f p 7.99 4.39 3.64 1.22 +embrouilleur embrouilleur nom m s 0.17 0.14 0.16 0.00 +embrouilleurs embrouilleur nom m p 0.17 0.14 0.02 0.07 +embrouilleuses embrouilleur nom f p 0.17 0.14 0.00 0.07 +embrouillez embrouiller ver 8.15 9.46 0.38 0.00 imp:pre:2p;ind:pre:2p; +embrouillât embrouiller ver 8.15 9.46 0.00 0.14 sub:imp:3s; +embrouillèrent embrouiller ver 8.15 9.46 0.00 0.14 ind:pas:3p; +embrouillé embrouiller ver m s 8.15 9.46 1.78 0.81 par:pas; +embrouillée embrouillé adj f s 0.71 1.76 0.23 0.47 +embrouillées embrouillé adj f p 0.71 1.76 0.04 0.54 +embrouillés embrouiller ver m p 8.15 9.46 0.04 0.14 par:pas; +embroussaille embroussailler ver 0.00 0.34 0.00 0.07 ind:pre:3s; +embroussailler embroussailler ver 0.00 0.34 0.00 0.07 inf; +embroussaillé embroussaillé adj m s 0.00 0.61 0.00 0.07 +embroussaillée embroussailler ver f s 0.00 0.34 0.00 0.07 par:pas; +embroussaillées embroussailler ver f p 0.00 0.34 0.00 0.07 par:pas; +embroussaillés embroussaillé adj m p 0.00 0.61 0.00 0.54 +embruiné embruiné adj m s 0.00 0.07 0.00 0.07 +embrumait embrumer ver 0.72 1.96 0.00 0.41 ind:imp:3s; +embrume embrumer ver 0.72 1.96 0.21 0.41 ind:pre:1s;ind:pre:3s; +embrument embrumer ver 0.72 1.96 0.11 0.14 ind:pre:3p; +embrumer embrumer ver 0.72 1.96 0.19 0.20 inf; +embrumé embrumer ver m s 0.72 1.96 0.20 0.34 par:pas; +embrumée embrumé adj f s 0.15 1.08 0.04 0.34 +embrumées embrumé adj f p 0.15 1.08 0.03 0.27 +embrumés embrumé adj m p 0.15 1.08 0.04 0.14 +embrun embrun nom m s 0.68 2.97 0.52 0.81 +embruns embrun nom m p 0.68 2.97 0.16 2.16 +embryologie embryologie nom f s 0.01 0.00 0.01 0.00 +embryologiste embryologiste nom s 0.01 0.00 0.01 0.00 +embryon embryon nom m s 0.96 3.72 0.60 2.64 +embryonnaire embryonnaire adj s 0.16 0.47 0.11 0.41 +embryonnaires embryonnaire adj p 0.16 0.47 0.05 0.07 +embryons embryon nom m p 0.96 3.72 0.36 1.08 +embu embu nom m s 0.00 0.14 0.00 0.07 +embua embuer ver 0.38 5.41 0.00 0.07 ind:pas:3s; +embuaient embuer ver 0.38 5.41 0.14 0.68 ind:imp:3p; +embuait embuer ver 0.38 5.41 0.00 0.68 ind:imp:3s; +embuant embuer ver 0.38 5.41 0.01 0.07 par:pre; +embue embuer ver 0.38 5.41 0.02 0.20 ind:pre:3s; +embuent embuer ver 0.38 5.41 0.04 0.47 ind:pre:3p; +embuer embuer ver 0.38 5.41 0.12 0.34 inf; +embéguinées embéguiner ver f p 0.00 0.07 0.00 0.07 par:pas; +embus embu nom m p 0.00 0.14 0.00 0.07 +embuscade embuscade nom f s 5.04 4.12 4.59 2.97 +embuscades embuscade nom f p 5.04 4.12 0.44 1.15 +embusqua embusquer ver 0.58 3.58 0.00 0.14 ind:pas:3s; +embusquaient embusquer ver 0.58 3.58 0.10 0.07 ind:imp:3p; +embusquait embusquer ver 0.58 3.58 0.00 0.14 ind:imp:3s; +embusque embusquer ver 0.58 3.58 0.10 0.20 ind:pre:3s; +embusquent embusquer ver 0.58 3.58 0.00 0.07 ind:pre:3p; +embusquer embusquer ver 0.58 3.58 0.03 0.41 inf; +embusqué embusqué adj m s 0.46 1.08 0.36 0.54 +embusquée embusquer ver f s 0.58 3.58 0.01 0.34 par:pas; +embusquées embusquer ver f p 0.58 3.58 0.00 0.27 par:pas; +embusqués embusqué nom m p 0.58 0.54 0.28 0.27 +embêtaient embêter ver 34.02 15.61 0.30 0.27 ind:imp:3p; +embêtais embêter ver 34.02 15.61 0.42 0.27 ind:imp:1s;ind:imp:2s; +embêtait embêter ver 34.02 15.61 0.82 0.95 ind:imp:3s; +embêtant embêtant adj m s 2.92 3.51 2.41 2.97 +embêtante embêtant adj f s 2.92 3.51 0.16 0.27 +embêtantes embêtant adj f p 2.92 3.51 0.01 0.07 +embêtants embêtant adj m p 2.92 3.51 0.34 0.20 +embête embêter ver 34.02 15.61 13.21 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embêtement embêtement nom m s 0.69 1.08 0.16 0.07 +embêtements embêtement nom m p 0.69 1.08 0.53 1.01 +embêtent embêter ver 34.02 15.61 1.10 0.81 ind:pre:3p; +embêter embêter ver 34.02 15.61 7.66 3.58 inf; +embêtera embêter ver 34.02 15.61 1.01 0.34 ind:fut:3s; +embêterai embêter ver 34.02 15.61 1.08 0.14 ind:fut:1s; +embêteraient embêter ver 34.02 15.61 0.08 0.07 cnd:pre:3p; +embêterais embêter ver 34.02 15.61 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +embêterait embêter ver 34.02 15.61 1.92 0.27 cnd:pre:3s; +embêtes embêter ver 34.02 15.61 1.71 0.74 ind:pre:2s; +embêtez embêter ver 34.02 15.61 1.39 0.20 imp:pre:2p;ind:pre:2p; +embuèrent embuer ver 0.38 5.41 0.00 0.27 ind:pas:3p; +embêté embêter ver m s 34.02 15.61 2.29 1.69 par:pas; +embêtée embêter ver f s 34.02 15.61 0.65 0.54 par:pas; +embêtées embêter ver f p 34.02 15.61 0.04 0.07 par:pas; +embêtés embêté adj m p 1.39 2.16 0.15 0.14 +embué embué adj m s 0.27 1.76 0.17 0.27 +embuée embué adj f s 0.27 1.76 0.03 0.54 +embuées embué adj f p 0.27 1.76 0.04 0.41 +embués embuer ver m p 0.38 5.41 0.02 1.01 par:pas; +emergency emergency nom f s 0.25 0.00 0.25 0.00 +emmagasinaient emmagasiner ver 0.58 1.82 0.00 0.07 ind:imp:3p; +emmagasinais emmagasiner ver 0.58 1.82 0.00 0.07 ind:imp:1s; +emmagasinait emmagasiner ver 0.58 1.82 0.00 0.07 ind:imp:3s; +emmagasine emmagasiner ver 0.58 1.82 0.11 0.27 ind:pre:1s;ind:pre:3s; +emmagasinent emmagasiner ver 0.58 1.82 0.15 0.20 ind:pre:3p; +emmagasiner emmagasiner ver 0.58 1.82 0.26 0.47 inf; +emmagasiné emmagasiner ver m s 0.58 1.82 0.04 0.27 par:pas; +emmagasinée emmagasiner ver f s 0.58 1.82 0.02 0.14 par:pas; +emmagasinées emmagasiner ver f p 0.58 1.82 0.00 0.14 par:pas; +emmagasinés emmagasiné adj m p 0.10 0.20 0.10 0.00 +emmaillota emmailloter ver 0.17 1.82 0.14 0.07 ind:pas:3s; +emmaillotaient emmailloter ver 0.17 1.82 0.00 0.07 ind:imp:3p; +emmaillotement emmaillotement nom m s 0.00 0.07 0.00 0.07 +emmailloter emmailloter ver 0.17 1.82 0.00 0.27 inf; +emmailloté emmailloter ver m s 0.17 1.82 0.02 0.61 par:pas; +emmaillotée emmailloter ver f s 0.17 1.82 0.01 0.47 par:pas; +emmaillotées emmailloter ver f p 0.17 1.82 0.00 0.20 par:pas; +emmaillotés emmailloter ver m p 0.17 1.82 0.00 0.14 par:pas; +emmanchage emmanchage nom m s 0.00 0.07 0.00 0.07 +emmanchant emmancher ver 0.19 1.76 0.00 0.07 par:pre; +emmanche emmancher ver 0.19 1.76 0.00 0.20 ind:pre:3s; +emmanchent emmancher ver 0.19 1.76 0.00 0.14 ind:pre:3p; +emmancher emmancher ver 0.19 1.76 0.01 0.20 inf; +emmanché emmancher ver m s 0.19 1.76 0.18 0.41 par:pas; +emmanchée emmancher ver f s 0.19 1.76 0.00 0.20 par:pas; +emmanchées emmancher ver f p 0.19 1.76 0.00 0.07 par:pas; +emmanchure emmanchure nom f s 0.00 0.74 0.00 0.34 +emmanchures emmanchure nom f p 0.00 0.74 0.00 0.41 +emmanchés emmancher ver m p 0.19 1.76 0.00 0.47 par:pas; +emmena emmener ver 272.70 105.47 0.89 9.73 ind:pas:3s; +emmenai emmener ver 272.70 105.47 0.10 1.42 ind:pas:1s; +emmenaient emmener ver 272.70 105.47 0.58 1.28 ind:imp:3p; +emmenais emmener ver 272.70 105.47 1.42 1.55 ind:imp:1s;ind:imp:2s; +emmenait emmener ver 272.70 105.47 3.38 10.07 ind:imp:3s; +emmenant emmener ver 272.70 105.47 0.85 1.69 par:pre; +emmener emmener ver 272.70 105.47 70.33 26.96 inf;; +emmenez emmener ver 272.70 105.47 42.79 2.77 imp:pre:2p;ind:pre:2p; +emmeniez emmener ver 272.70 105.47 0.44 0.14 ind:imp:2p;sub:pre:2p; +emmenions emmener ver 272.70 105.47 0.14 0.20 ind:imp:1p; +emmenons emmener ver 272.70 105.47 4.00 0.47 imp:pre:1p;ind:pre:1p; +emmenât emmener ver 272.70 105.47 0.00 0.34 sub:imp:3s; +emmenotté emmenotter ver m s 0.00 0.14 0.00 0.14 par:pas; +emmental emmental nom m s 0.01 0.00 0.01 0.00 +emmenthal emmenthal nom m s 0.15 0.14 0.15 0.14 +emmenèrent emmener ver 272.70 105.47 0.79 1.62 ind:pas:3p; +emmené emmener ver m s 272.70 105.47 22.85 10.95 par:pas; +emmenée emmener ver f s 272.70 105.47 11.83 6.15 par:pas; +emmenées emmener ver f p 272.70 105.47 0.90 0.20 par:pas; +emmenés emmener ver m p 272.70 105.47 3.77 2.43 par:pas; +emmerda emmerder ver 52.18 27.09 0.00 0.07 ind:pas:3s; +emmerdaient emmerder ver 52.18 27.09 0.05 0.47 ind:imp:3p; +emmerdais emmerder ver 52.18 27.09 0.20 0.27 ind:imp:1s;ind:imp:2s; +emmerdait emmerder ver 52.18 27.09 0.51 1.62 ind:imp:3s; +emmerdant emmerdant adj m s 1.92 1.76 1.04 1.22 +emmerdante emmerdant adj f s 1.92 1.76 0.35 0.20 +emmerdantes emmerdant adj f p 1.92 1.76 0.16 0.07 +emmerdants emmerdant adj m p 1.92 1.76 0.36 0.27 +emmerdatoires emmerdatoire adj p 0.00 0.07 0.00 0.07 +emmerde emmerder ver 52.18 27.09 33.90 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +emmerdement emmerdement nom m s 0.84 4.66 0.08 0.88 +emmerdements emmerdement nom m p 0.84 4.66 0.77 3.78 +emmerdent emmerder ver 52.18 27.09 1.50 1.15 ind:pre:3p; +emmerder emmerder ver 52.18 27.09 8.34 6.76 inf; +emmerdera emmerder ver 52.18 27.09 0.06 0.14 ind:fut:3s; +emmerderai emmerder ver 52.18 27.09 0.14 0.07 ind:fut:1s; +emmerderaient emmerder ver 52.18 27.09 0.00 0.07 cnd:pre:3p; +emmerderais emmerder ver 52.18 27.09 0.03 0.07 cnd:pre:1s; +emmerderait emmerder ver 52.18 27.09 0.20 0.20 cnd:pre:3s; +emmerderez emmerder ver 52.18 27.09 0.11 0.07 ind:fut:2p; +emmerderont emmerder ver 52.18 27.09 0.02 0.07 ind:fut:3p; +emmerdes emmerde nom f p 6.15 3.51 4.90 2.91 +emmerdeur emmerdeur nom m s 4.89 3.04 2.69 1.15 +emmerdeurs emmerdeur nom m p 4.89 3.04 0.73 0.88 +emmerdeuse emmerdeur nom f s 4.89 3.04 1.47 0.81 +emmerdeuses emmerdeuse nom f p 0.07 0.00 0.07 0.00 +emmerdez emmerder ver 52.18 27.09 0.81 0.68 imp:pre:2p;ind:pre:2p; +emmerdons emmerder ver 52.18 27.09 0.00 0.07 ind:pre:1p; +emmerdé emmerder ver m s 52.18 27.09 1.47 2.43 par:pas; +emmerdée emmerder ver f s 52.18 27.09 0.22 0.34 par:pas; +emmerdés emmerder ver m p 52.18 27.09 0.32 0.68 par:pas; +emmi emmi adv 0.03 0.00 0.03 0.00 +emmitoufla emmitoufler ver 0.13 4.12 0.00 0.14 ind:pas:3s; +emmitouflai emmitoufler ver 0.13 4.12 0.00 0.07 ind:pas:1s; +emmitouflait emmitoufler ver 0.13 4.12 0.00 0.41 ind:imp:3s; +emmitouflant emmitoufler ver 0.13 4.12 0.00 0.07 par:pre; +emmitoufle emmitoufler ver 0.13 4.12 0.03 0.27 ind:pre:3s; +emmitoufler emmitoufler ver 0.13 4.12 0.03 0.07 inf; +emmitouflez emmitoufler ver 0.13 4.12 0.01 0.00 imp:pre:2p; +emmitouflé emmitoufler ver m s 0.13 4.12 0.02 0.88 par:pas; +emmitouflée emmitoufler ver f s 0.13 4.12 0.04 1.08 par:pas; +emmitouflées emmitoufler ver f p 0.13 4.12 0.00 0.47 par:pas; +emmitouflés emmitouflé adj m p 0.15 1.15 0.11 0.47 +emmouflé emmoufler ver m s 0.00 0.07 0.00 0.07 par:pas; +emmouscaillements emmouscaillement nom m p 0.00 0.07 0.00 0.07 +emmène emmener ver 272.70 105.47 77.85 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emmènent emmener ver 272.70 105.47 3.78 1.42 ind:pre:3p;sub:pre:3p; +emmènera emmener ver 272.70 105.47 4.44 0.95 ind:fut:3s; +emmènerai emmener ver 272.70 105.47 4.85 2.64 ind:fut:1s; +emmèneraient emmener ver 272.70 105.47 0.19 0.27 cnd:pre:3p; +emmènerais emmener ver 272.70 105.47 1.47 0.34 cnd:pre:1s;cnd:pre:2s; +emmènerait emmener ver 272.70 105.47 0.90 1.55 cnd:pre:3s; +emmèneras emmener ver 272.70 105.47 1.22 0.61 ind:fut:2s; +emmènerez emmener ver 272.70 105.47 0.76 0.41 ind:fut:2p; +emmèneriez emmener ver 272.70 105.47 0.15 0.14 cnd:pre:2p; +emmènerions emmener ver 272.70 105.47 0.11 0.00 cnd:pre:1p; +emmènerons emmener ver 272.70 105.47 0.58 0.07 ind:fut:1p; +emmèneront emmener ver 272.70 105.47 1.26 0.34 ind:fut:3p; +emmènes emmener ver 272.70 105.47 10.10 1.55 ind:pre:1p;ind:pre:2s;sub:pre:2s; +emmêla emmêler ver 1.31 5.20 0.00 0.14 ind:pas:3s; +emmêlai emmêler ver 1.31 5.20 0.00 0.07 ind:pas:1s; +emmêlaient emmêler ver 1.31 5.20 0.03 0.41 ind:imp:3p; +emmêlait emmêler ver 1.31 5.20 0.04 0.34 ind:imp:3s; +emmêlant emmêler ver 1.31 5.20 0.00 0.54 par:pre; +emmêle emmêler ver 1.31 5.20 0.09 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emmêlement emmêlement nom m s 0.00 0.47 0.00 0.34 +emmêlements emmêlement nom m p 0.00 0.47 0.00 0.14 +emmêlent emmêler ver 1.31 5.20 0.43 0.27 ind:pre:3p; +emmêler emmêler ver 1.31 5.20 0.20 0.41 inf; +emmêlera emmêler ver 1.31 5.20 0.00 0.07 ind:fut:3s; +emmêleront emmêler ver 1.31 5.20 0.00 0.07 ind:fut:3p; +emmêles emmêler ver 1.31 5.20 0.12 0.07 ind:pre:2s; +emmêlèrent emmêler ver 1.31 5.20 0.00 0.14 ind:pas:3p; +emmêlé emmêler ver m s 1.31 5.20 0.28 0.27 par:pas; +emmêlée emmêler ver f s 1.31 5.20 0.03 0.41 par:pas; +emmêlées emmêler ver f p 1.31 5.20 0.02 0.41 par:pas; +emmêlés emmêlé adj m p 0.27 2.84 0.07 1.96 +emménage emménager ver 13.70 2.36 2.10 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emménagea emménager ver 13.70 2.36 0.04 0.20 ind:pas:3s; +emménageaient emménager ver 13.70 2.36 0.02 0.00 ind:imp:3p; +emménageais emménager ver 13.70 2.36 0.04 0.00 ind:imp:1s;ind:imp:2s; +emménageait emménager ver 13.70 2.36 0.07 0.07 ind:imp:3s; +emménageant emménager ver 13.70 2.36 0.06 0.00 par:pre; +emménagement emménagement nom m s 0.25 0.81 0.25 0.81 +emménagent emménager ver 13.70 2.36 0.20 0.07 ind:pre:3p; +emménageons emménager ver 13.70 2.36 0.17 0.14 imp:pre:1p;ind:pre:1p; +emménager emménager ver 13.70 2.36 5.46 1.15 inf; +emménagera emménager ver 13.70 2.36 0.13 0.00 ind:fut:3s; +emménagerai emménager ver 13.70 2.36 0.04 0.00 ind:fut:1s; +emménagerais emménager ver 13.70 2.36 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +emménagerait emménager ver 13.70 2.36 0.15 0.07 cnd:pre:3s; +emménagerez emménager ver 13.70 2.36 0.02 0.00 ind:fut:2p; +emménagerons emménager ver 13.70 2.36 0.03 0.00 ind:fut:1p; +emménages emménager ver 13.70 2.36 0.77 0.00 ind:pre:2s; +emménagez emménager ver 13.70 2.36 0.45 0.00 imp:pre:2p;ind:pre:2p; +emménagiez emménager ver 13.70 2.36 0.02 0.00 ind:imp:2p; +emménagions emménager ver 13.70 2.36 0.01 0.14 ind:imp:1p; +emménagèrent emménager ver 13.70 2.36 0.04 0.07 ind:pas:3p; +emménagé emménager ver m s 13.70 2.36 3.85 0.27 par:pas; +emmura emmurer ver 0.61 1.42 0.00 0.07 ind:pas:3s; +emmurait emmurer ver 0.61 1.42 0.01 0.07 ind:imp:3s; +emmure emmurer ver 0.61 1.42 0.03 0.14 ind:pre:3s; +emmurement emmurement nom m s 0.01 0.00 0.01 0.00 +emmurer emmurer ver 0.61 1.42 0.27 0.34 inf; +emmuré emmurer ver m s 0.61 1.42 0.13 0.34 par:pas; +emmurée emmuré adj f s 0.04 0.81 0.04 0.41 +emmurées emmurer ver f p 0.61 1.42 0.10 0.00 par:pas; +emmurés emmurer ver m p 0.61 1.42 0.04 0.20 par:pas; +empaffe empaffer ver 0.06 0.07 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empaffer empaffer ver 0.06 0.07 0.02 0.07 inf; +empaffé empaffé nom m s 0.50 0.20 0.38 0.14 +empaffés empaffé nom m p 0.50 0.20 0.12 0.07 +empaillant empailler ver 1.03 0.27 0.00 0.07 par:pre; +empailler empailler ver 1.03 0.27 0.45 0.07 inf; +empailleur empailleur nom m s 0.04 0.20 0.03 0.20 +empailleurs empailleur nom m p 0.04 0.20 0.01 0.00 +empaillez empailler ver 1.03 0.27 0.01 0.00 imp:pre:2p; +empaillé empaillé adj m s 0.67 2.09 0.46 0.74 +empaillée empaillé adj f s 0.67 2.09 0.07 0.27 +empaillées empaillé adj f p 0.67 2.09 0.04 0.07 +empaillés empailler ver m p 1.03 0.27 0.34 0.00 par:pas; +empalait empaler ver 1.34 1.76 0.13 0.00 ind:imp:3s; +empalant empaler ver 1.34 1.76 0.04 0.00 par:pre; +empale empaler ver 1.34 1.76 0.10 0.41 ind:pre:1s;ind:pre:3s; +empalement empalement nom m s 0.02 0.00 0.02 0.00 +empaler empaler ver 1.34 1.76 0.39 0.41 inf; +empalerais empaler ver 1.34 1.76 0.10 0.00 cnd:pre:1s; +empaleront empaler ver 1.34 1.76 0.00 0.07 ind:fut:3p; +empalmait empalmer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +empalme empalmer ver 0.00 0.20 0.00 0.07 ind:pre:3s; +empalmé empalmer ver m s 0.00 0.20 0.00 0.07 par:pas; +empalé empalé adj m s 0.41 0.20 0.30 0.07 +empalée empaler ver f s 1.34 1.76 0.25 0.14 par:pas; +empalées empaler ver f p 1.34 1.76 0.00 0.14 par:pas; +empalés empaler ver m p 1.34 1.76 0.10 0.14 par:pas; +empan empan nom m s 0.01 0.07 0.01 0.07 +empanaché empanaché adj m s 0.02 0.74 0.01 0.20 +empanachée empanaché adj f s 0.02 0.74 0.00 0.14 +empanachées empanaché adj f p 0.02 0.74 0.01 0.07 +empanachés empanaché adj m p 0.02 0.74 0.00 0.34 +empanner empanner ver 0.00 0.07 0.00 0.07 inf; +empapaoutent empapaouter ver 0.23 0.27 0.00 0.07 ind:pre:3p; +empapaouter empapaouter ver 0.23 0.27 0.12 0.00 inf; +empapaouté empapaouter ver m s 0.23 0.27 0.10 0.07 par:pas; +empapaoutés empapaouter ver m p 0.23 0.27 0.01 0.14 par:pas; +empaqueta empaqueter ver 0.35 2.36 0.00 0.20 ind:pas:3s; +empaquetage empaquetage nom m s 0.14 0.20 0.14 0.20 +empaqueter empaqueter ver 0.35 2.36 0.14 0.54 inf; +empaqueteur empaqueteur nom m s 0.01 0.00 0.01 0.00 +empaquette empaqueter ver 0.35 2.36 0.03 0.20 imp:pre:2s;ind:pre:3s; +empaquettent empaqueter ver 0.35 2.36 0.00 0.07 ind:pre:3p; +empaquettes empaqueter ver 0.35 2.36 0.00 0.07 ind:pre:2s; +empaquetèrent empaqueter ver 0.35 2.36 0.00 0.07 ind:pas:3p; +empaqueté empaqueter ver m s 0.35 2.36 0.13 0.27 par:pas; +empaquetée empaqueter ver f s 0.35 2.36 0.03 0.41 par:pas; +empaquetées empaqueté adj f p 0.13 0.68 0.11 0.14 +empaquetés empaqueter ver m p 0.35 2.36 0.01 0.07 par:pas; +empara emparer ver 12.80 39.26 0.60 6.89 ind:pas:3s; +emparadisé emparadiser ver m s 0.00 0.07 0.00 0.07 par:pas; +emparai emparer ver 12.80 39.26 0.00 0.47 ind:pas:1s; +emparaient emparer ver 12.80 39.26 0.04 0.95 ind:imp:3p; +emparais emparer ver 12.80 39.26 0.01 0.14 ind:imp:1s; +emparait emparer ver 12.80 39.26 0.20 5.41 ind:imp:3s; +emparant emparer ver 12.80 39.26 0.22 1.62 par:pre; +emparassent emparer ver 12.80 39.26 0.00 0.07 sub:imp:3p; +empare emparer ver 12.80 39.26 2.85 6.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +emparent emparer ver 12.80 39.26 0.80 1.08 ind:pre:3p; +emparer emparer ver 12.80 39.26 3.92 7.16 inf; +emparera emparer ver 12.80 39.26 0.14 0.20 ind:fut:3s; +emparerai emparer ver 12.80 39.26 0.03 0.00 ind:fut:1s; +empareraient emparer ver 12.80 39.26 0.01 0.34 cnd:pre:3p; +emparerais emparer ver 12.80 39.26 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +emparerait emparer ver 12.80 39.26 0.01 0.07 cnd:pre:3s; +empareront emparer ver 12.80 39.26 0.07 0.00 ind:fut:3p; +emparez emparer ver 12.80 39.26 0.91 0.00 imp:pre:2p;ind:pre:2p; +emparons emparer ver 12.80 39.26 0.16 0.00 imp:pre:1p;ind:pre:1p; +emparât emparer ver 12.80 39.26 0.00 0.27 sub:imp:3s; +emparèrent emparer ver 12.80 39.26 0.16 0.54 ind:pas:3p; +emparé emparer ver m s 12.80 39.26 1.53 3.72 par:pas; +emparée emparer ver f s 12.80 39.26 0.40 2.91 par:pas; +emparées emparer ver f p 12.80 39.26 0.11 0.20 par:pas; +emparés emparer ver m p 12.80 39.26 0.56 1.01 par:pas; +empathie empathie nom f s 0.63 0.00 0.63 0.00 +empathique empathique adj s 0.26 0.07 0.23 0.07 +empathiques empathique adj f p 0.26 0.07 0.03 0.00 +empattement empattement nom m s 0.09 0.20 0.09 0.14 +empattements empattement nom m p 0.09 0.20 0.00 0.07 +empaume empaumer ver 0.00 0.20 0.00 0.07 ind:pre:3s; +empaumer empaumer ver 0.00 0.20 0.00 0.14 inf; +empaumure empaumure nom f s 0.10 0.20 0.10 0.14 +empaumures empaumure nom f p 0.10 0.20 0.00 0.07 +empeigne empeigne nom f s 0.01 0.54 0.01 0.54 +empeignés empeigner ver m p 0.00 0.07 0.00 0.07 par:pas; +empennage empennage nom m s 0.04 0.20 0.04 0.20 +empennait empenner ver 0.00 0.34 0.00 0.07 ind:imp:3s; +empenne empenne nom f s 0.01 0.00 0.01 0.00 +empennée empenner ver f s 0.00 0.34 0.00 0.07 par:pas; +empennées empenner ver f p 0.00 0.34 0.00 0.14 par:pas; +empennés empenner ver m p 0.00 0.34 0.00 0.07 par:pas; +empereur empereur nom m s 25.55 38.45 24.45 35.88 +empereurs empereur nom m p 25.55 38.45 1.10 2.57 +emperlait emperler ver 0.00 0.41 0.00 0.07 ind:imp:3s; +emperlant emperler ver 0.00 0.41 0.00 0.07 par:pre; +emperler emperler ver 0.00 0.41 0.00 0.07 inf; +emperlousées emperlousé adj f p 0.00 0.14 0.00 0.14 +emperlé emperler ver m s 0.00 0.41 0.00 0.07 par:pas; +emperlées emperlé adj f p 0.00 0.27 0.00 0.14 +emperlés emperler ver m p 0.00 0.41 0.00 0.14 par:pas; +emperruqués emperruqué adj m p 0.00 0.07 0.00 0.07 +empesage empesage nom m s 0.01 0.07 0.01 0.07 +empesant empeser ver 0.02 1.15 0.00 0.07 par:pre; +empesta empester ver 3.28 3.31 0.00 0.14 ind:pas:3s; +empestaient empester ver 3.28 3.31 0.02 0.27 ind:imp:3p; +empestais empester ver 3.28 3.31 0.01 0.07 ind:imp:1s; +empestait empester ver 3.28 3.31 0.27 0.81 ind:imp:3s; +empestant empester ver 3.28 3.31 0.13 0.20 par:pre; +empeste empester ver 3.28 3.31 1.87 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empestent empester ver 3.28 3.31 0.13 0.14 ind:pre:3p; +empester empester ver 3.28 3.31 0.39 0.27 inf; +empestes empester ver 3.28 3.31 0.35 0.00 ind:pre:2s; +empestez empester ver 3.28 3.31 0.11 0.07 ind:pre:2p; +empesté empester ver m s 3.28 3.31 0.01 0.27 par:pas; +empestée empester ver f s 3.28 3.31 0.00 0.61 par:pas; +empestées empester ver f p 3.28 3.31 0.00 0.07 par:pas; +empesé empeser ver m s 0.02 1.15 0.01 0.34 par:pas; +empesée empeser ver f s 0.02 1.15 0.01 0.34 par:pas; +empesées empesé adj f p 0.00 1.96 0.00 0.41 +empesés empesé adj m p 0.00 1.96 0.00 0.20 +emphase emphase nom f s 0.22 5.27 0.22 5.20 +emphases emphase nom f p 0.22 5.27 0.00 0.07 +emphatique emphatique adj s 0.22 1.96 0.18 1.62 +emphatiquement emphatiquement adv 0.01 0.14 0.01 0.14 +emphatiques emphatique adj m p 0.22 1.96 0.04 0.34 +emphatise emphatiser ver 0.00 0.07 0.00 0.07 ind:pre:1s; +emphysème emphysème nom m s 0.31 0.41 0.30 0.34 +emphysèmes emphysème nom m p 0.31 0.41 0.01 0.07 +emphysémateuse emphysémateux adj f s 0.00 0.07 0.00 0.07 +empierrage empierrage nom m s 0.00 0.07 0.00 0.07 +empierrait empierrer ver 0.00 0.41 0.00 0.07 ind:imp:3s; +empierrement empierrement nom m s 0.00 0.34 0.00 0.34 +empierrer empierrer ver 0.00 0.41 0.00 0.07 inf; +empierré empierré adj m s 0.00 0.74 0.00 0.20 +empierrée empierré adj f s 0.00 0.74 0.00 0.20 +empierrées empierré adj f p 0.00 0.74 0.00 0.20 +empierrés empierré adj m p 0.00 0.74 0.00 0.14 +empiffra empiffrer ver 1.25 2.91 0.00 0.20 ind:pas:3s; +empiffraient empiffrer ver 1.25 2.91 0.01 0.07 ind:imp:3p; +empiffrais empiffrer ver 1.25 2.91 0.01 0.14 ind:imp:1s; +empiffrait empiffrer ver 1.25 2.91 0.04 0.41 ind:imp:3s; +empiffrant empiffrer ver 1.25 2.91 0.01 0.07 par:pre; +empiffre empiffrer ver 1.25 2.91 0.10 0.61 imp:pre:2s;ind:pre:3s; +empiffrent empiffrer ver 1.25 2.91 0.14 0.20 ind:pre:3p; +empiffrer empiffrer ver 1.25 2.91 0.47 1.22 inf; +empiffres empiffrer ver 1.25 2.91 0.03 0.00 ind:pre:2s; +empiffrez empiffrer ver 1.25 2.91 0.14 0.00 imp:pre:2p;ind:pre:2p; +empiffrée empiffrer ver f s 1.25 2.91 0.16 0.00 par:pas; +empiffrées empiffrer ver f p 1.25 2.91 0.14 0.00 par:pas; +empila empiler ver 1.78 15.81 0.00 0.74 ind:pas:3s; +empilage empilage nom m s 0.04 0.27 0.04 0.20 +empilages empilage nom m p 0.04 0.27 0.00 0.07 +empilaient empiler ver 1.78 15.81 0.03 2.77 ind:imp:3p; +empilais empiler ver 1.78 15.81 0.01 0.27 ind:imp:1s; +empilait empiler ver 1.78 15.81 0.03 1.35 ind:imp:3s; +empilant empiler ver 1.78 15.81 0.16 0.34 par:pre; +empile empiler ver 1.78 15.81 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empilement empilement nom m s 0.00 0.54 0.00 0.27 +empilements empilement nom m p 0.00 0.54 0.00 0.27 +empilent empiler ver 1.78 15.81 0.07 0.54 ind:pre:3p; +empiler empiler ver 1.78 15.81 0.25 1.35 ind:pre:2p;inf; +empilerai empiler ver 1.78 15.81 0.00 0.07 ind:fut:1s; +empilerions empiler ver 1.78 15.81 0.10 0.00 cnd:pre:1p; +empilez empiler ver 1.78 15.81 0.20 0.00 imp:pre:2p; +empilons empiler ver 1.78 15.81 0.00 0.07 ind:pre:1p; +empilèrent empiler ver 1.78 15.81 0.00 0.07 ind:pas:3p; +empilé empiler ver m s 1.78 15.81 0.13 0.68 par:pas; +empilée empiler ver f s 1.78 15.81 0.03 0.54 par:pas; +empilées empiler ver f p 1.78 15.81 0.09 2.57 par:pas; +empilés empiler ver m p 1.78 15.81 0.40 3.65 par:pas; +empira empirer ver 12.93 2.91 0.03 0.34 ind:pas:3s; +empirait empirer ver 12.93 2.91 0.19 0.47 ind:imp:3s; +empirant empirer ver 12.93 2.91 0.06 0.27 par:pre; +empire empire nom m s 19.47 63.51 19.02 60.74 +empirent empirer ver 12.93 2.91 0.39 0.00 ind:pre:3p; +empirer empirer ver 12.93 2.91 5.28 0.54 inf; +empirera empirer ver 12.93 2.91 0.26 0.00 ind:fut:3s; +empirerait empirer ver 12.93 2.91 0.03 0.07 cnd:pre:3s; +empireront empirer ver 12.93 2.91 0.04 0.00 ind:fut:3p; +empires empire nom m p 19.47 63.51 0.44 2.77 +empirez empirer ver 12.93 2.91 0.03 0.00 imp:pre:2p;ind:pre:2p; +empirique empirique adj s 0.30 1.01 0.22 0.54 +empiriquement empiriquement adv 0.00 0.07 0.00 0.07 +empiriques empirique adj p 0.30 1.01 0.09 0.47 +empirisme empirisme nom m s 0.02 0.27 0.02 0.20 +empirismes empirisme nom m p 0.02 0.27 0.00 0.07 +empirèrent empirer ver 12.93 2.91 0.01 0.07 ind:pas:3p; +empiré empirer ver m s 12.93 2.91 2.12 0.34 par:pas; +empirée empirer ver f s 12.93 2.91 0.03 0.07 par:pas; +empiècement empiècement nom m s 0.00 0.41 0.00 0.20 +empiècements empiècement nom m p 0.00 0.41 0.00 0.20 +empiète empiéter ver 1.17 1.89 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empiètements empiètement nom m p 0.00 0.34 0.00 0.34 +empiètent empiéter ver 1.17 1.89 0.26 0.14 ind:pre:3p;sub:pre:3p; +empiètes empiéter ver 1.17 1.89 0.06 0.00 ind:pre:2s; +empiétaient empiéter ver 1.17 1.89 0.02 0.27 ind:imp:3p; +empiétais empiéter ver 1.17 1.89 0.00 0.07 ind:imp:1s; +empiétait empiéter ver 1.17 1.89 0.01 0.20 ind:imp:3s; +empiétant empiéter ver 1.17 1.89 0.01 0.47 par:pre; +empiétement empiétement nom m s 0.00 1.96 0.00 0.61 +empiétements empiétement nom m p 0.00 1.96 0.00 1.35 +empiéter empiéter ver 1.17 1.89 0.20 0.47 inf; +empiétez empiéter ver 1.17 1.89 0.11 0.00 imp:pre:2p;ind:pre:2p; +empiété empiéter ver m s 1.17 1.89 0.22 0.07 par:pas; +emplît emplir ver 6.40 49.73 0.00 0.07 sub:imp:3s; +emplacement emplacement nom m s 6.90 12.70 6.00 10.95 +emplacements emplacement nom m p 6.90 12.70 0.90 1.76 +emplafonne emplafonner ver 0.01 0.61 0.01 0.07 ind:pre:1s;ind:pre:3s; +emplafonnent emplafonner ver 0.01 0.61 0.00 0.07 ind:pre:3p; +emplafonner emplafonner ver 0.01 0.61 0.00 0.27 inf; +emplafonné emplafonner ver m s 0.01 0.61 0.00 0.14 par:pas; +emplafonnée emplafonner ver f s 0.01 0.61 0.00 0.07 par:pas; +emplanture emplanture nom f s 0.00 0.14 0.00 0.14 +emplette emplette nom f s 0.57 2.57 0.03 0.88 +emplettes emplette nom f p 0.57 2.57 0.55 1.69 +empli emplir ver m s 6.40 49.73 1.28 5.47 par:pas; +emplie emplir ver f s 6.40 49.73 0.31 2.77 par:pas; +emplies emplir ver f p 6.40 49.73 0.04 1.42 par:pas; +emplir emplir ver 6.40 49.73 0.30 6.01 inf; +emplira emplir ver 6.40 49.73 0.16 0.14 ind:fut:3s; +empliraient emplir ver 6.40 49.73 0.01 0.00 cnd:pre:3p; +emplirait emplir ver 6.40 49.73 0.01 0.07 cnd:pre:3s; +emplirent emplir ver 6.40 49.73 0.01 0.61 ind:pas:3p; +emplis emplir ver m p 6.40 49.73 0.40 1.76 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +emplissaient emplir ver 6.40 49.73 0.14 3.51 ind:imp:3p; +emplissais emplir ver 6.40 49.73 0.00 0.27 ind:imp:1s; +emplissait emplir ver 6.40 49.73 0.53 10.95 ind:imp:3s; +emplissant emplir ver 6.40 49.73 0.03 2.09 par:pre; +emplissent emplir ver 6.40 49.73 0.59 1.42 ind:pre:3p; +emplissez emplir ver 6.40 49.73 0.19 0.00 imp:pre:2p;ind:pre:2p; +emplissons emplir ver 6.40 49.73 0.14 0.00 imp:pre:1p; +emplit emplir ver 6.40 49.73 2.25 13.18 ind:pre:3s;ind:pas:3s; +emploi emploi nom m s 30.94 29.19 25.96 26.42 +emploie employer ver 19.46 46.22 3.74 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emploient employer ver 19.46 46.22 0.64 2.09 ind:pre:3p; +emploiera employer ver 19.46 46.22 0.36 0.41 ind:fut:3s; +emploierai employer ver 19.46 46.22 0.27 0.34 ind:fut:1s; +emploieraient employer ver 19.46 46.22 0.02 0.20 cnd:pre:3p; +emploierais employer ver 19.46 46.22 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +emploierait employer ver 19.46 46.22 0.28 0.34 cnd:pre:3s; +emploierez employer ver 19.46 46.22 0.01 0.07 ind:fut:2p; +emploieriez employer ver 19.46 46.22 0.03 0.00 cnd:pre:2p; +emploierons employer ver 19.46 46.22 0.14 0.00 ind:fut:1p; +emploieront employer ver 19.46 46.22 0.11 0.07 ind:fut:3p; +emploies employer ver 19.46 46.22 0.44 0.54 ind:pre:2s; +emplois emploi nom m p 30.94 29.19 4.98 2.77 +emplâtrage emplâtrage nom m s 0.00 0.14 0.00 0.14 +emplâtrais emplâtrer ver 0.06 0.54 0.00 0.07 ind:imp:1s; +emplâtre emplâtre nom m s 0.15 1.35 0.12 0.95 +emplâtrer emplâtrer ver 0.06 0.54 0.04 0.34 inf; +emplâtres emplâtre nom m p 0.15 1.35 0.03 0.41 +emplâtré emplâtrer ver m s 0.06 0.54 0.02 0.14 par:pas; +employa employer ver 19.46 46.22 0.03 1.22 ind:pas:3s; +employai employer ver 19.46 46.22 0.01 0.27 ind:pas:1s; +employaient employer ver 19.46 46.22 0.11 2.09 ind:imp:3p; +employais employer ver 19.46 46.22 0.07 0.81 ind:imp:1s;ind:imp:2s; +employait employer ver 19.46 46.22 1.00 7.09 ind:imp:3s; +employant employer ver 19.46 46.22 0.41 2.16 par:pre; +employer employer ver 19.46 46.22 4.15 10.95 inf; +employeur employeur nom m s 4.01 2.70 2.70 1.69 +employeurs employeur nom m p 4.01 2.70 1.31 1.01 +employez employer ver 19.46 46.22 0.69 0.27 imp:pre:2p;ind:pre:2p; +employiez employer ver 19.46 46.22 0.04 0.00 ind:imp:2p; +employions employer ver 19.46 46.22 0.01 0.14 ind:imp:1p; +employâmes employer ver 19.46 46.22 0.00 0.07 ind:pas:1p; +employons employer ver 19.46 46.22 0.42 0.27 imp:pre:1p;ind:pre:1p; +employât employer ver 19.46 46.22 0.00 0.14 sub:imp:3s; +employèrent employer ver 19.46 46.22 0.14 0.20 ind:pas:3p; +employé employé nom m s 30.80 26.08 10.61 9.86 +employée employé nom f s 30.80 26.08 3.24 2.43 +employées employé nom f p 30.80 26.08 1.05 1.01 +employés employé nom m p 30.80 26.08 15.90 12.77 +empluma emplumer ver 0.02 0.34 0.00 0.07 ind:pas:3s; +emplume emplumer ver 0.02 0.34 0.00 0.07 ind:pre:3s; +emplumé emplumé adj m s 0.28 0.88 0.05 0.34 +emplumée emplumé adj f s 0.28 0.88 0.14 0.20 +emplumées emplumer ver f p 0.02 0.34 0.00 0.07 par:pas; +emplumés emplumé adj m p 0.28 0.88 0.10 0.34 +empocha empocher ver 2.92 4.46 0.14 1.08 ind:pas:3s; +empochai empocher ver 2.92 4.46 0.00 0.14 ind:pas:1s; +empochaient empocher ver 2.92 4.46 0.04 0.07 ind:imp:3p; +empochais empocher ver 2.92 4.46 0.01 0.14 ind:imp:1s; +empochait empocher ver 2.92 4.46 0.02 0.61 ind:imp:3s; +empochant empocher ver 2.92 4.46 0.01 0.34 par:pre; +empoche empocher ver 2.92 4.46 0.41 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empochent empocher ver 2.92 4.46 0.09 0.07 ind:pre:3p; +empocher empocher ver 2.92 4.46 1.28 0.88 inf; +empochera empocher ver 2.92 4.46 0.08 0.00 ind:fut:3s; +empocherais empocher ver 2.92 4.46 0.03 0.00 cnd:pre:1s; +empocheras empocher ver 2.92 4.46 0.02 0.00 ind:fut:2s; +empoches empocher ver 2.92 4.46 0.04 0.00 ind:pre:2s; +empochez empocher ver 2.92 4.46 0.03 0.00 imp:pre:2p;ind:pre:2p; +empochiez empocher ver 2.92 4.46 0.01 0.00 ind:imp:2p; +empoché empocher ver m s 2.92 4.46 0.49 0.68 par:pas; +empochée empocher ver f s 2.92 4.46 0.17 0.00 par:pas; +empochées empocher ver f p 2.92 4.46 0.03 0.07 par:pas; +empochés empocher ver m p 2.92 4.46 0.02 0.00 par:pas; +empoigna empoigner ver 1.84 26.01 0.04 8.11 ind:pas:3s; +empoignade empoignade nom f s 0.16 1.01 0.16 0.54 +empoignades empoignade nom f p 0.16 1.01 0.00 0.47 +empoignai empoigner ver 1.84 26.01 0.00 0.20 ind:pas:1s; +empoignaient empoigner ver 1.84 26.01 0.00 0.54 ind:imp:3p; +empoignais empoigner ver 1.84 26.01 0.00 0.14 ind:imp:1s; +empoignait empoigner ver 1.84 26.01 0.00 2.30 ind:imp:3s; +empoignant empoigner ver 1.84 26.01 0.23 1.62 par:pre; +empoigne empoigner ver 1.84 26.01 0.72 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empoignent empoigner ver 1.84 26.01 0.02 0.61 ind:pre:3p; +empoigner empoigner ver 1.84 26.01 0.28 2.70 inf; +empoignera empoigner ver 1.84 26.01 0.01 0.00 ind:fut:3s; +empoigneront empoigner ver 1.84 26.01 0.00 0.07 ind:fut:3p; +empoignes empoigner ver 1.84 26.01 0.04 0.00 ind:pre:2s; +empoignez empoigner ver 1.84 26.01 0.17 0.07 imp:pre:2p; +empoignons empoigner ver 1.84 26.01 0.01 0.07 imp:pre:1p;ind:pre:1p; +empoignèrent empoigner ver 1.84 26.01 0.00 0.95 ind:pas:3p; +empoigné empoigner ver m s 1.84 26.01 0.29 3.65 par:pas; +empoignée empoigner ver f s 1.84 26.01 0.02 0.47 par:pas; +empoignées empoigner ver f p 1.84 26.01 0.00 0.14 par:pas; +empoiler empoiler ver 0.00 0.14 0.00 0.07 inf; +empoilés empoiler ver m p 0.00 0.14 0.00 0.07 par:pas; +empois empois nom m 0.01 0.14 0.01 0.14 +empoisonna empoisonner ver 19.62 15.00 0.01 0.14 ind:pas:3s; +empoisonnaient empoisonner ver 19.62 15.00 0.12 0.27 ind:imp:3p; +empoisonnais empoisonner ver 19.62 15.00 0.12 0.00 ind:imp:1s;ind:imp:2s; +empoisonnait empoisonner ver 19.62 15.00 0.10 0.61 ind:imp:3s; +empoisonnant empoisonner ver 19.62 15.00 0.10 0.00 par:pre; +empoisonnante empoisonnant adj f s 0.15 0.20 0.06 0.00 +empoisonnantes empoisonnant adj f p 0.15 0.20 0.01 0.07 +empoisonne empoisonner ver 19.62 15.00 1.76 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empoisonnement empoisonnement nom m s 1.85 0.61 1.80 0.61 +empoisonnements empoisonnement nom m p 1.85 0.61 0.05 0.00 +empoisonnent empoisonner ver 19.62 15.00 0.41 0.54 ind:pre:3p; +empoisonner empoisonner ver 19.62 15.00 3.57 2.57 inf; +empoisonnera empoisonner ver 19.62 15.00 0.31 0.14 ind:fut:3s; +empoisonnerai empoisonner ver 19.62 15.00 0.11 0.00 ind:fut:1s; +empoisonneraient empoisonner ver 19.62 15.00 0.00 0.07 cnd:pre:3p; +empoisonnerais empoisonner ver 19.62 15.00 0.02 0.00 cnd:pre:1s; +empoisonnerez empoisonner ver 19.62 15.00 0.01 0.00 ind:fut:2p; +empoisonneront empoisonner ver 19.62 15.00 0.02 0.00 ind:fut:3p; +empoisonnes empoisonner ver 19.62 15.00 0.31 0.07 ind:pre:2s; +empoisonneur empoisonneur nom m s 0.98 0.88 0.65 0.47 +empoisonneurs empoisonneur nom m p 0.98 0.88 0.18 0.07 +empoisonneuse empoisonneur nom f s 0.98 0.88 0.16 0.27 +empoisonneuses empoisonneuse nom f p 0.01 0.00 0.01 0.00 +empoisonnez empoisonner ver 19.62 15.00 0.20 0.20 imp:pre:2p;ind:pre:2p; +empoisonné empoisonner ver m s 19.62 15.00 8.22 3.58 par:pas; +empoisonnée empoisonner ver f s 19.62 15.00 2.83 2.16 par:pas; +empoisonnées empoisonner ver f p 19.62 15.00 0.57 1.89 par:pas; +empoisonnés empoisonner ver m p 19.62 15.00 0.82 1.28 par:pas; +empoissait empoisser ver 0.00 0.34 0.00 0.07 ind:imp:3s; +empoisse empoisser ver 0.00 0.34 0.00 0.07 ind:pre:3s; +empoisser empoisser ver 0.00 0.34 0.00 0.07 inf; +empoissonner empoissonner ver 0.02 0.14 0.01 0.00 inf; +empoissonné empoissonner ver m s 0.02 0.14 0.01 0.07 par:pas; +empoissonnées empoissonner ver f p 0.02 0.14 0.00 0.07 par:pas; +empoissé empoisser ver m s 0.00 0.34 0.00 0.07 par:pas; +empoissés empoisser ver m p 0.00 0.34 0.00 0.07 par:pas; +emporium emporium nom m s 0.04 0.14 0.04 0.14 +emport emport nom m s 0.00 0.07 0.00 0.07 +emporta emporter ver 69.02 121.28 0.42 7.43 ind:pas:3s; +emportai emporter ver 69.02 121.28 0.01 0.74 ind:pas:1s; +emportaient emporter ver 69.02 121.28 0.23 2.84 ind:imp:3p; +emportais emporter ver 69.02 121.28 0.04 2.43 ind:imp:1s;ind:imp:2s; +emportait emporter ver 69.02 121.28 1.44 16.82 ind:imp:3s; +emportant emporter ver 69.02 121.28 0.90 8.92 par:pre; +emporte_pièce emporte_pièce nom m 0.00 0.95 0.00 0.95 +emporte emporter ver 69.02 121.28 19.89 16.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emportement emportement nom m s 0.97 3.51 0.55 3.24 +emportements emportement nom m p 0.97 3.51 0.42 0.27 +emportent emporter ver 69.02 121.28 1.30 2.03 ind:pre:3p; +emporter emporter ver 69.02 121.28 16.69 24.19 inf; +emportera emporter ver 69.02 121.28 2.45 1.49 ind:fut:3s; +emporterai emporter ver 69.02 121.28 0.40 0.27 ind:fut:1s; +emporteraient emporter ver 69.02 121.28 0.02 0.41 cnd:pre:3p; +emporterais emporter ver 69.02 121.28 0.14 0.20 cnd:pre:1s; +emporterait emporter ver 69.02 121.28 0.13 1.76 cnd:pre:3s; +emporteras emporter ver 69.02 121.28 0.53 0.41 ind:fut:2s; +emporterez emporter ver 69.02 121.28 0.36 0.14 ind:fut:2p; +emporteriez emporter ver 69.02 121.28 0.00 0.07 cnd:pre:2p; +emporterions emporter ver 69.02 121.28 0.00 0.07 cnd:pre:1p; +emporterons emporter ver 69.02 121.28 0.22 0.14 ind:fut:1p; +emporteront emporter ver 69.02 121.28 0.21 0.41 ind:fut:3p; +emportes emporter ver 69.02 121.28 2.01 0.68 ind:pre:2s; +emportez emporter ver 69.02 121.28 3.54 1.22 imp:pre:2p;ind:pre:2p; +emportiez emporter ver 69.02 121.28 0.41 0.14 ind:imp:2p; +emportions emporter ver 69.02 121.28 0.01 0.34 ind:imp:1p; +emportons emporter ver 69.02 121.28 0.80 0.14 imp:pre:1p;ind:pre:1p; +emportât emporter ver 69.02 121.28 0.01 0.61 sub:imp:3s; +emportèrent emporter ver 69.02 121.28 0.04 1.01 ind:pas:3p; +emporté emporter ver m s 69.02 121.28 12.46 18.58 par:pas; +emportée emporter ver f s 69.02 121.28 2.31 5.14 par:pas; +emportées emporter ver f p 69.02 121.28 0.35 1.69 par:pas; +emportés emporter ver m p 69.02 121.28 1.73 4.53 par:pas; +empâta empâter ver 0.11 1.76 0.00 0.07 ind:pas:3s; +empâtait empâter ver 0.11 1.76 0.01 0.54 ind:imp:3s; +empâte empâter ver 0.11 1.76 0.06 0.27 ind:pre:1s;ind:pre:3s; +empâtement empâtement nom m s 0.03 0.54 0.01 0.41 +empâtements empâtement nom m p 0.03 0.54 0.01 0.14 +empâtent empâter ver 0.11 1.76 0.00 0.14 ind:pre:3p; +empâter empâter ver 0.11 1.76 0.03 0.27 inf; +empâté empâté adj m s 0.04 1.35 0.01 0.54 +empoté empoté nom m s 0.67 0.61 0.55 0.61 +empâtée empâté adj f s 0.04 1.35 0.01 0.41 +empotée empoté adj f s 0.80 0.61 0.24 0.14 +empâtées empâté adj f p 0.04 1.35 0.02 0.14 +empâtés empâté adj m p 0.04 1.35 0.00 0.27 +empotés empoté nom m p 0.67 0.61 0.12 0.00 +empourpra empourprer ver 0.03 2.97 0.00 0.81 ind:pas:3s; +empourprait empourprer ver 0.03 2.97 0.00 0.61 ind:imp:3s; +empourprant empourprer ver 0.03 2.97 0.00 0.27 par:pre; +empourpre empourprer ver 0.03 2.97 0.01 0.47 ind:pre:3s; +empourprent empourprer ver 0.03 2.97 0.00 0.07 ind:pre:3p; +empourprer empourprer ver 0.03 2.97 0.01 0.14 inf; +empourpré empourprer ver m s 0.03 2.97 0.00 0.27 par:pas; +empourprée empourprer ver f s 0.03 2.97 0.01 0.14 par:pas; +empourprées empourprer ver f p 0.03 2.97 0.00 0.14 par:pas; +empourprés empourprer ver m p 0.03 2.97 0.00 0.07 par:pas; +empoussière empoussiérer ver 0.02 0.54 0.01 0.07 ind:pre:3s; +empoussièrent empoussiérer ver 0.02 0.54 0.00 0.07 ind:pre:3p; +empoussiérait empoussiérer ver 0.02 0.54 0.00 0.14 ind:imp:3s; +empoussiéré empoussiérer ver m s 0.02 0.54 0.01 0.14 par:pas; +empoussiérée empoussiéré adj f s 0.00 0.81 0.00 0.27 +empoussiérées empoussiéré adj f p 0.00 0.81 0.00 0.14 +empoussiérés empoussiéré adj m p 0.00 0.81 0.00 0.20 +empreignit empreindre ver 0.23 2.23 0.00 0.07 ind:pas:3s; +empreint empreindre ver m s 0.23 2.23 0.08 1.15 ind:pre:3s;par:pas; +empreinte empreinte nom f s 42.06 15.61 11.41 8.72 +empreintes empreinte nom f p 42.06 15.61 30.65 6.89 +empreints empreindre ver m p 0.23 2.23 0.15 1.01 par:pas; +empressa empresser ver 1.65 12.91 0.13 2.50 ind:pas:3s; +empressai empresser ver 1.65 12.91 0.01 0.41 ind:pas:1s; +empressaient empresser ver 1.65 12.91 0.00 1.01 ind:imp:3p; +empressais empresser ver 1.65 12.91 0.00 0.14 ind:imp:1s; +empressait empresser ver 1.65 12.91 0.00 1.35 ind:imp:3s; +empressant empresser ver 1.65 12.91 0.01 0.27 par:pre; +empresse empresser ver 1.65 12.91 0.70 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empressement empressement nom m s 0.46 6.15 0.46 6.01 +empressements empressement nom m p 0.46 6.15 0.00 0.14 +empressent empresser ver 1.65 12.91 0.01 0.54 ind:pre:3p; +empresser empresser ver 1.65 12.91 0.17 0.41 inf; +empressera empresser ver 1.65 12.91 0.02 0.14 ind:fut:3s; +empresserait empresser ver 1.65 12.91 0.04 0.20 cnd:pre:3s; +empresseras empresser ver 1.65 12.91 0.01 0.00 ind:fut:2s; +empresserez empresser ver 1.65 12.91 0.01 0.00 ind:fut:2p; +empresses empresser ver 1.65 12.91 0.02 0.07 ind:pre:2s; +empressâmes empresser ver 1.65 12.91 0.00 0.14 ind:pas:1p; +empressèrent empresser ver 1.65 12.91 0.00 0.88 ind:pas:3p; +empressé empresser ver m s 1.65 12.91 0.27 1.35 par:pas; +empressée empresser ver f s 1.65 12.91 0.08 0.47 par:pas; +empressées empresser ver f p 1.65 12.91 0.14 0.27 par:pas; +empressés empressé nom m p 0.16 0.47 0.14 0.14 +emprise emprise nom f s 3.08 3.65 3.08 3.58 +emprises emprise nom f p 3.08 3.65 0.00 0.07 +emprisonna emprisonner ver 6.46 10.27 0.16 0.54 ind:pas:3s; +emprisonnaient emprisonner ver 6.46 10.27 0.00 0.41 ind:imp:3p; +emprisonnait emprisonner ver 6.46 10.27 0.01 0.74 ind:imp:3s; +emprisonnant emprisonner ver 6.46 10.27 0.14 0.95 par:pre; +emprisonne emprisonner ver 6.46 10.27 0.65 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emprisonnement emprisonnement nom m s 1.80 0.81 1.74 0.61 +emprisonnements emprisonnement nom m p 1.80 0.81 0.06 0.20 +emprisonnent emprisonner ver 6.46 10.27 0.26 0.54 ind:pre:3p; +emprisonner emprisonner ver 6.46 10.27 1.48 1.35 inf; +emprisonnera emprisonner ver 6.46 10.27 0.02 0.07 ind:fut:3s; +emprisonnez emprisonner ver 6.46 10.27 0.10 0.00 imp:pre:2p;ind:pre:2p; +emprisonnèrent emprisonner ver 6.46 10.27 0.01 0.07 ind:pas:3p; +emprisonné emprisonner ver m s 6.46 10.27 2.60 1.69 par:pas; +emprisonnée emprisonner ver f s 6.46 10.27 0.54 1.49 ind:imp:3p;par:pas; +emprisonnées emprisonner ver f p 6.46 10.27 0.15 0.20 par:pas; +emprisonnés emprisonner ver m p 6.46 10.27 0.35 1.08 par:pas; +emprunt emprunt nom m s 3.66 4.73 3.18 3.78 +emprunta emprunter ver 31.31 31.28 0.01 1.55 ind:pas:3s; +empruntai emprunter ver 31.31 31.28 0.01 0.95 ind:pas:1s; +empruntaient emprunter ver 31.31 31.28 0.01 1.01 ind:imp:3p; +empruntais emprunter ver 31.31 31.28 0.08 0.88 ind:imp:1s;ind:imp:2s; +empruntait emprunter ver 31.31 31.28 0.47 2.64 ind:imp:3s; +empruntant emprunter ver 31.31 31.28 0.20 2.36 par:pre; +emprunte emprunter ver 31.31 31.28 4.30 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empruntent emprunter ver 31.31 31.28 0.44 0.61 ind:pre:3p; +emprunter emprunter ver 31.31 31.28 15.87 7.09 inf; +empruntera emprunter ver 31.31 31.28 0.10 0.07 ind:fut:3s; +emprunterai emprunter ver 31.31 31.28 0.20 0.07 ind:fut:1s; +emprunteraient emprunter ver 31.31 31.28 0.00 0.14 cnd:pre:3p; +emprunterais emprunter ver 31.31 31.28 0.13 0.07 cnd:pre:1s; +emprunterait emprunter ver 31.31 31.28 0.03 0.54 cnd:pre:3s; +emprunteras emprunter ver 31.31 31.28 0.07 0.07 ind:fut:2s; +emprunterons emprunter ver 31.31 31.28 0.03 0.00 ind:fut:1p; +emprunteront emprunter ver 31.31 31.28 0.13 0.14 ind:fut:3p; +empruntes emprunter ver 31.31 31.28 0.52 0.20 ind:pre:2s; +emprunteur emprunteur nom m s 0.04 0.00 0.04 0.00 +empruntez emprunter ver 31.31 31.28 0.40 0.00 imp:pre:2p;ind:pre:2p; +empruntions emprunter ver 31.31 31.28 0.04 0.47 ind:imp:1p; +empruntâmes emprunter ver 31.31 31.28 0.01 0.07 ind:pas:1p; +empruntons emprunter ver 31.31 31.28 0.10 0.41 imp:pre:1p;ind:pre:1p; +empruntât emprunter ver 31.31 31.28 0.00 0.07 sub:imp:3s; +emprunts emprunt nom m p 3.66 4.73 0.47 0.95 +empruntèrent emprunter ver 31.31 31.28 0.01 0.74 ind:pas:3p; +emprunté emprunter ver m s 31.31 31.28 6.63 5.68 par:pas; +empruntée emprunter ver f s 31.31 31.28 1.05 1.15 par:pas; +empruntées emprunter ver f p 31.31 31.28 0.25 0.47 par:pas; +empruntés emprunter ver m p 31.31 31.28 0.21 1.55 par:pas; +empuanti empuantir ver m s 0.03 1.22 0.02 0.47 par:pas; +empuantie empuanti adj f s 0.00 0.34 0.00 0.14 +empuanties empuantir ver f p 0.03 1.22 0.00 0.07 par:pas; +empuantir empuantir ver 0.03 1.22 0.01 0.20 inf; +empuantis empuantir ver m p 0.03 1.22 0.00 0.07 par:pas; +empuantissaient empuantir ver 0.03 1.22 0.00 0.07 ind:imp:3p; +empuantissait empuantir ver 0.03 1.22 0.00 0.14 ind:imp:3s; +empuantisse empuantir ver 0.03 1.22 0.00 0.07 sub:pre:3s; +empuantissent empuantir ver 0.03 1.22 0.00 0.07 ind:pre:3p; +empêcha empêcher ver 121.85 171.28 0.35 5.00 ind:pas:3s; +empêchai empêcher ver 121.85 171.28 0.00 0.61 ind:pas:1s; +empêchaient empêcher ver 121.85 171.28 0.10 4.59 ind:imp:3p; +empêchais empêcher ver 121.85 171.28 0.23 0.27 ind:imp:1s;ind:imp:2s; +empêchait empêcher ver 121.85 171.28 2.52 18.58 ind:imp:3s; +empêchant empêcher ver 121.85 171.28 1.06 3.11 par:pre; +empêche empêcher ver 121.85 171.28 31.46 41.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empêchement empêchement nom m s 1.25 1.42 1.23 1.01 +empêchements empêchement nom m p 1.25 1.42 0.02 0.41 +empêchent empêcher ver 121.85 171.28 2.74 4.59 ind:pre:3p; +empêcher empêcher ver 121.85 171.28 55.99 70.20 inf; +empêchera empêcher ver 121.85 171.28 4.89 2.43 ind:fut:3s; +empêcherai empêcher ver 121.85 171.28 1.57 0.34 ind:fut:1s; +empêcheraient empêcher ver 121.85 171.28 0.22 0.47 cnd:pre:3p; +empêcherais empêcher ver 121.85 171.28 0.57 0.27 cnd:pre:1s;cnd:pre:2s; +empêcherait empêcher ver 121.85 171.28 1.35 2.64 cnd:pre:3s; +empêcheras empêcher ver 121.85 171.28 0.88 0.47 ind:fut:2s; +empêcherez empêcher ver 121.85 171.28 0.37 0.34 ind:fut:2p; +empêcherons empêcher ver 121.85 171.28 0.28 0.07 ind:fut:1p; +empêcheront empêcher ver 121.85 171.28 0.54 0.54 ind:fut:3p; +empêches empêcher ver 121.85 171.28 1.36 0.34 ind:pre:2s; +empêcheur empêcheur nom m s 0.08 0.68 0.04 0.41 +empêcheurs empêcheur nom m p 0.08 0.68 0.04 0.20 +empêcheuse empêcheur nom f s 0.08 0.68 0.01 0.07 +empêchez empêcher ver 121.85 171.28 4.53 0.34 imp:pre:2p;ind:pre:2p; +empêchions empêcher ver 121.85 171.28 0.08 0.07 ind:imp:1p; +empêchons empêcher ver 121.85 171.28 0.39 0.20 imp:pre:1p;ind:pre:1p; +empêchât empêcher ver 121.85 171.28 0.00 0.27 sub:imp:3s; +empêchèrent empêcher ver 121.85 171.28 0.16 1.28 ind:pas:3p; +empêché empêcher ver m s 121.85 171.28 7.81 9.26 par:pas; +empêchée empêcher ver f s 121.85 171.28 1.58 2.30 par:pas; +empêchées empêcher ver f p 121.85 171.28 0.02 0.14 par:pas; +empêchés empêcher ver m p 121.85 171.28 0.80 1.42 par:pas; +empêtra empêtrer ver 0.76 5.20 0.00 0.34 ind:pas:3s; +empêtraient empêtrer ver 0.76 5.20 0.02 0.20 ind:imp:3p; +empêtrais empêtrer ver 0.76 5.20 0.00 0.20 ind:imp:1s; +empêtrait empêtrer ver 0.76 5.20 0.00 1.01 ind:imp:3s; +empêtrant empêtrer ver 0.76 5.20 0.00 0.27 par:pre; +empêtre empêtrer ver 0.76 5.20 0.02 0.54 ind:pre:1s;ind:pre:3s; +empêtrent empêtrer ver 0.76 5.20 0.00 0.07 ind:pre:3p; +empêtrer empêtrer ver 0.76 5.20 0.20 0.14 inf; +empêtrons empêtrer ver 0.76 5.20 0.00 0.07 ind:pre:1p; +empêtré empêtrer ver m s 0.76 5.20 0.19 1.35 par:pas; +empêtrée empêtrer ver f s 0.76 5.20 0.17 0.41 par:pas; +empêtrées empêtrer ver f p 0.76 5.20 0.14 0.27 par:pas; +empêtrés empêtrer ver m p 0.76 5.20 0.01 0.34 par:pas; +empyrée empyrée nom m s 0.00 0.81 0.00 0.74 +empyrées empyrée nom m p 0.00 0.81 0.00 0.07 +en_avant en_avant nom m 0.01 0.07 0.01 0.07 +en_but en_but nom m 0.32 0.00 0.32 0.00 +en_cas en_cas nom m 1.44 1.08 1.44 1.08 +en_cours en_cours nom m 0.01 0.00 0.01 0.00 +en_dehors en_dehors nom m 0.36 0.07 0.36 0.07 +en_tête en_tête nom m s 0.44 2.77 0.39 2.64 +en_tête en_tête nom m p 0.44 2.77 0.05 0.14 +en_catimini en_catimini adv 0.12 1.42 0.12 1.42 +en_loucedé en_loucedé adv 0.16 0.47 0.16 0.47 +en_tapinois en_tapinois adv 0.25 0.68 0.25 0.68 +en en pre 5689.68 8732.57 5689.68 8732.57 +enamouré enamourer ver m s 0.02 0.07 0.01 0.00 par:pas; +enamourée enamouré adj f s 0.10 0.20 0.10 0.14 +enamourées enamouré adj f p 0.10 0.20 0.00 0.07 +enamourés enamourer ver m p 0.02 0.07 0.00 0.07 par:pas; +encabanée encabaner ver f s 0.00 0.07 0.00 0.07 par:pas; +encablure encablure nom f s 0.07 0.88 0.04 0.20 +encablures encablure nom f p 0.07 0.88 0.02 0.68 +encadra encadrer ver 2.51 24.26 0.00 0.61 ind:pas:3s; +encadraient encadrer ver 2.51 24.26 0.02 2.84 ind:imp:3p; +encadrait encadrer ver 2.51 24.26 0.01 2.30 ind:imp:3s; +encadrant encadrant adj m s 0.00 2.16 0.00 2.16 +encadre encadrer ver 2.51 24.26 0.24 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encadrement encadrement nom m s 0.64 6.49 0.41 6.08 +encadrements encadrement nom m p 0.64 6.49 0.23 0.41 +encadrent encadrer ver 2.51 24.26 0.04 1.42 ind:pre:3p; +encadrer encadrer ver 2.51 24.26 1.45 2.43 inf; +encadrera encadrer ver 2.51 24.26 0.00 0.07 ind:fut:3s; +encadrerai encadrer ver 2.51 24.26 0.02 0.00 ind:fut:1s; +encadreraient encadrer ver 2.51 24.26 0.01 0.07 cnd:pre:3p; +encadrerait encadrer ver 2.51 24.26 0.00 0.20 cnd:pre:3s; +encadreront encadrer ver 2.51 24.26 0.01 0.07 ind:fut:3p; +encadreur encadreur nom m s 0.16 0.34 0.16 0.34 +encadrez encadrer ver 2.51 24.26 0.03 0.00 imp:pre:2p; +encadrions encadrer ver 2.51 24.26 0.00 0.07 ind:imp:1p; +encadrèrent encadrer ver 2.51 24.26 0.00 0.47 ind:pas:3p; +encadré encadrer ver m s 2.51 24.26 0.24 5.27 par:pas; +encadrée encadrer ver f s 2.51 24.26 0.23 3.51 par:pas; +encadrées encadrer ver f p 2.51 24.26 0.04 1.55 par:pas; +encadrés encadrer ver m p 2.51 24.26 0.16 1.76 par:pas; +encagent encager ver 0.13 0.54 0.00 0.07 ind:pre:3p; +encager encager ver 0.13 0.54 0.00 0.14 inf; +encagez encager ver 0.13 0.54 0.02 0.00 imp:pre:2p; +encagoulées encagoulé adj f p 0.01 0.07 0.00 0.07 +encagoulés encagoulé nom m p 0.14 0.00 0.14 0.00 +encagé encager ver m s 0.13 0.54 0.11 0.07 par:pas; +encagée encager ver f s 0.13 0.54 0.00 0.20 par:pas; +encagés encagé adj m p 0.02 0.47 0.00 0.27 +encaissa encaisser ver 10.35 10.27 0.00 0.41 ind:pas:3s; +encaissable encaissable adj s 0.01 0.00 0.01 0.00 +encaissai encaisser ver 10.35 10.27 0.00 0.20 ind:pas:1s; +encaissaient encaisser ver 10.35 10.27 0.00 0.20 ind:imp:3p; +encaissais encaisser ver 10.35 10.27 0.14 0.41 ind:imp:1s; +encaissait encaisser ver 10.35 10.27 0.05 0.88 ind:imp:3s; +encaissant encaisser ver 10.35 10.27 0.03 0.20 par:pre; +encaisse encaisser ver 10.35 10.27 2.37 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encaissement encaissement nom m s 0.51 0.20 0.35 0.14 +encaissements encaissement nom m p 0.51 0.20 0.16 0.07 +encaissent encaisser ver 10.35 10.27 0.24 0.07 ind:pre:3p; +encaisser encaisser ver 10.35 10.27 4.84 3.78 inf; +encaissera encaisser ver 10.35 10.27 0.17 0.00 ind:fut:3s; +encaisserai encaisser ver 10.35 10.27 0.08 0.07 ind:fut:1s; +encaisserais encaisser ver 10.35 10.27 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +encaisserait encaisser ver 10.35 10.27 0.01 0.07 cnd:pre:3s; +encaisserez encaisser ver 10.35 10.27 0.12 0.00 ind:fut:2p; +encaisseront encaisser ver 10.35 10.27 0.02 0.00 ind:fut:3p; +encaisses encaisser ver 10.35 10.27 0.14 0.14 ind:pre:2s; +encaisseur encaisseur nom m s 0.69 0.61 0.67 0.47 +encaisseurs encaisseur nom m p 0.69 0.61 0.03 0.14 +encaissez encaisser ver 10.35 10.27 0.37 0.00 imp:pre:2p;ind:pre:2p; +encaissons encaisser ver 10.35 10.27 0.01 0.00 ind:pre:1p; +encaissât encaisser ver 10.35 10.27 0.00 0.07 sub:imp:3s; +encaissé encaisser ver m s 10.35 10.27 1.47 0.74 par:pas; +encaissée encaisser ver f s 10.35 10.27 0.03 0.34 par:pas; +encaissées encaisser ver f p 10.35 10.27 0.01 0.34 par:pas; +encaissés encaisser ver m p 10.35 10.27 0.23 0.07 par:pas; +encalminé encalminé adj m s 0.00 0.20 0.00 0.07 +encalminés encalminé adj m p 0.00 0.20 0.00 0.14 +encanaillais encanailler ver 0.35 1.28 0.01 0.00 ind:imp:2s; +encanaillait encanailler ver 0.35 1.28 0.01 0.20 ind:imp:3s; +encanaille encanailler ver 0.35 1.28 0.18 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encanaillement encanaillement nom m s 0.00 0.07 0.00 0.07 +encanaillent encanailler ver 0.35 1.28 0.03 0.00 ind:pre:3p; +encanailler encanailler ver 0.35 1.28 0.13 0.61 inf; +encanaillé encanailler ver m s 0.35 1.28 0.00 0.20 par:pas; +encapsuler encapsuler ver 0.04 0.00 0.01 0.00 inf; +encapsulé encapsuler ver m s 0.04 0.00 0.03 0.00 par:pas; +encapuchonna encapuchonner ver 0.00 1.08 0.00 0.14 ind:pas:3s; +encapuchonnait encapuchonner ver 0.00 1.08 0.00 0.14 ind:imp:3s; +encapuchonnant encapuchonner ver 0.00 1.08 0.00 0.07 par:pre; +encapuchonne encapuchonner ver 0.00 1.08 0.00 0.20 ind:pre:3s; +encapuchonné encapuchonner ver m s 0.00 1.08 0.00 0.14 par:pas; +encapuchonnée encapuchonné adj f s 0.13 0.68 0.03 0.14 +encapuchonnées encapuchonner ver f p 0.00 1.08 0.00 0.07 par:pas; +encapuchonnés encapuchonné adj m p 0.13 0.68 0.10 0.41 +encaqués encaquer ver m p 0.00 0.14 0.00 0.14 par:pas; +encart encart nom m s 0.09 0.34 0.05 0.27 +encartage encartage nom m s 0.00 0.07 0.00 0.07 +encartait encarter ver 0.14 0.68 0.00 0.07 ind:imp:3s; +encarter encarter ver 0.14 0.68 0.14 0.07 inf; +encarts encart nom m p 0.09 0.34 0.04 0.07 +encarté encarter ver m s 0.14 0.68 0.00 0.27 par:pas; +encartées encarter ver f p 0.14 0.68 0.00 0.14 par:pas; +encartés encarter ver m p 0.14 0.68 0.00 0.14 par:pas; +encas encas nom m 0.40 0.14 0.40 0.14 +encaserner encaserner ver 0.00 0.07 0.00 0.07 inf; +encastelé encasteler ver m s 0.00 0.07 0.00 0.07 par:pas; +encastra encastrer ver 0.35 5.07 0.00 0.27 ind:pas:3s; +encastraient encastrer ver 0.35 5.07 0.00 0.14 ind:imp:3p; +encastrait encastrer ver 0.35 5.07 0.00 0.20 ind:imp:3s; +encastrant encastrer ver 0.35 5.07 0.01 0.07 par:pre; +encastre encastrer ver 0.35 5.07 0.06 0.27 ind:pre:1s;ind:pre:3s; +encastrement encastrement nom m s 0.01 0.00 0.01 0.00 +encastrent encastrer ver 0.35 5.07 0.01 0.00 ind:pre:3p; +encastrer encastrer ver 0.35 5.07 0.03 0.47 inf; +encastré encastrer ver m s 0.35 5.07 0.13 1.28 par:pas; +encastrée encastrer ver f s 0.35 5.07 0.04 1.22 par:pas; +encastrées encastrer ver f p 0.35 5.07 0.02 0.34 par:pas; +encastrés encastrer ver m p 0.35 5.07 0.04 0.81 par:pas; +encaustiquait encaustiquer ver 0.03 0.20 0.00 0.07 ind:imp:3s; +encaustique encaustique nom f s 0.04 2.64 0.04 2.64 +encaustiquer encaustiquer ver 0.03 0.20 0.02 0.14 inf; +encaustiqué encaustiqué adj m s 0.00 0.27 0.00 0.14 +encaustiquée encaustiqué adj f s 0.00 0.27 0.00 0.14 +encaver encaver ver 0.00 0.14 0.00 0.07 inf; +encavée encaver ver f s 0.00 0.14 0.00 0.07 par:pas; +enceint enceindre ver m s 0.32 0.41 0.32 0.34 ind:pre:3s;par:pas; +enceinte enceinte adj f s 48.60 12.43 46.41 11.08 +enceinter enceinter ver 0.01 0.00 0.01 0.00 inf; +enceintes enceinte adj f p 48.60 12.43 2.19 1.35 +enceints enceindre ver m p 0.32 0.41 0.00 0.07 par:pas; +encellulement encellulement nom m s 0.00 0.07 0.00 0.07 +encellulée encelluler ver f s 0.00 0.20 0.00 0.14 par:pas; +encellulées encelluler ver f p 0.00 0.20 0.00 0.07 par:pas; +encens encens nom m 2.44 7.91 2.44 7.91 +encensaient encenser ver 0.33 1.22 0.00 0.20 ind:imp:3p; +encensait encenser ver 0.33 1.22 0.01 0.14 ind:imp:3s; +encensant encenser ver 0.33 1.22 0.00 0.07 par:pre; +encense encenser ver 0.33 1.22 0.20 0.27 ind:pre:1s;ind:pre:3s; +encensement encensement nom m s 0.01 0.00 0.01 0.00 +encenser encenser ver 0.33 1.22 0.04 0.34 inf; +encensoir encensoir nom m s 0.14 1.01 0.04 0.68 +encensoirs encensoir nom m p 0.14 1.01 0.10 0.34 +encensé encenser ver m s 0.33 1.22 0.08 0.14 par:pas; +encensés encenser ver m p 0.33 1.22 0.00 0.07 par:pas; +encercla encercler ver 8.62 7.50 0.01 0.14 ind:pas:3s; +encerclaient encercler ver 8.62 7.50 0.04 1.08 ind:imp:3p; +encerclais encercler ver 8.62 7.50 0.01 0.00 ind:imp:2s; +encerclait encercler ver 8.62 7.50 0.02 0.61 ind:imp:3s; +encerclant encercler ver 8.62 7.50 0.13 0.41 par:pre; +encercle encercler ver 8.62 7.50 0.73 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encerclement encerclement nom m s 0.03 0.88 0.03 0.88 +encerclent encercler ver 8.62 7.50 0.80 0.61 ind:pre:3p; +encercler encercler ver 8.62 7.50 0.85 0.54 inf; +encerclera encercler ver 8.62 7.50 0.16 0.00 ind:fut:3s; +encercleraient encercler ver 8.62 7.50 0.00 0.07 cnd:pre:3p; +encerclez encercler ver 8.62 7.50 1.00 0.00 imp:pre:2p;ind:pre:2p; +encerclons encercler ver 8.62 7.50 0.04 0.00 imp:pre:1p;ind:pre:1p; +encerclèrent encercler ver 8.62 7.50 0.01 0.07 ind:pas:3p; +encerclé encercler ver m s 8.62 7.50 2.06 2.03 par:pas; +encerclée encercler ver f s 8.62 7.50 0.62 0.41 par:pas; +encerclées encercler ver f p 8.62 7.50 0.06 0.20 par:pas; +encerclés encercler ver m p 8.62 7.50 2.06 0.68 par:pas; +enchaîna enchaîner ver 7.58 21.76 0.05 3.99 ind:pas:3s; +enchaînai enchaîner ver 7.58 21.76 0.00 0.14 ind:pas:1s; +enchaînaient enchaîner ver 7.58 21.76 0.03 0.68 ind:imp:3p; +enchaînais enchaîner ver 7.58 21.76 0.14 0.07 ind:imp:1s; +enchaînait enchaîner ver 7.58 21.76 0.04 2.23 ind:imp:3s; +enchaînant enchaîner ver 7.58 21.76 0.01 0.68 par:pre; +enchaîne enchaîner ver 7.58 21.76 0.93 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enchaînement enchaînement nom m s 1.22 4.59 0.89 3.72 +enchaînements enchaînement nom m p 1.22 4.59 0.33 0.88 +enchaînent enchaîner ver 7.58 21.76 0.41 1.01 ind:pre:3p; +enchaîner enchaîner ver 7.58 21.76 1.46 2.43 inf; +enchaînera enchaîner ver 7.58 21.76 0.01 0.07 ind:fut:3s; +enchaîneraient enchaîner ver 7.58 21.76 0.01 0.00 cnd:pre:3p; +enchaînerait enchaîner ver 7.58 21.76 0.02 0.07 cnd:pre:3s; +enchaîneras enchaîner ver 7.58 21.76 0.01 0.00 ind:fut:2s; +enchaînerez enchaîner ver 7.58 21.76 0.01 0.00 ind:fut:2p; +enchaînerons enchaîner ver 7.58 21.76 0.00 0.07 ind:fut:1p; +enchaînez enchaîner ver 7.58 21.76 0.40 0.00 imp:pre:2p;ind:pre:2p; +enchaînons enchaîner ver 7.58 21.76 0.16 0.27 imp:pre:1p;ind:pre:1p; +enchaînèrent enchaîner ver 7.58 21.76 0.01 0.20 ind:pas:3p; +enchaîné enchaîner ver m s 7.58 21.76 2.39 4.32 par:pas; +enchaînée enchaîner ver f s 7.58 21.76 0.47 0.41 par:pas; +enchaînées enchaîner ver f p 7.58 21.76 0.50 0.47 par:pas; +enchaînés enchaîner ver m p 7.58 21.76 0.53 1.15 par:pas; +enchanta enchanter ver 15.57 22.43 0.10 1.55 ind:pas:3s; +enchantaient enchanter ver 15.57 22.43 0.12 1.22 ind:imp:3p; +enchantais enchanter ver 15.57 22.43 0.00 0.27 ind:imp:1s; +enchantait enchanter ver 15.57 22.43 0.61 3.65 ind:imp:3s; +enchantant enchanter ver 15.57 22.43 0.03 0.20 par:pre; +enchante enchanter ver 15.57 22.43 4.25 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enchantement enchantement nom m s 1.53 7.70 1.46 6.82 +enchantements enchantement nom m p 1.53 7.70 0.07 0.88 +enchantent enchanter ver 15.57 22.43 0.21 0.68 ind:pre:3p; +enchanter enchanter ver 15.57 22.43 0.56 1.62 inf; +enchantera enchanter ver 15.57 22.43 0.04 0.07 ind:fut:3s; +enchanteraient enchanter ver 15.57 22.43 0.00 0.07 cnd:pre:3p; +enchanterait enchanter ver 15.57 22.43 0.09 0.07 cnd:pre:3s; +enchanteresse enchanteur adj f s 1.88 2.64 0.55 0.47 +enchanteresses enchanteur adj f p 1.88 2.64 0.03 0.14 +enchanteront enchanter ver 15.57 22.43 0.00 0.07 ind:fut:3p; +enchantes enchanter ver 15.57 22.43 0.00 0.14 ind:pre:2s; +enchanteur enchanteur adj m s 1.88 2.64 1.25 1.22 +enchanteurs enchanteur nom m p 1.22 1.49 0.10 0.14 +enchantez enchanter ver 15.57 22.43 0.02 0.00 ind:pre:2p; +enchantions enchanter ver 15.57 22.43 0.00 0.07 ind:imp:1p; +enchantèrent enchanter ver 15.57 22.43 0.00 0.27 ind:pas:3p; +enchanté enchanté adj m s 55.00 7.97 35.28 4.26 +enchantée enchanté adj f s 55.00 7.97 18.96 2.43 +enchantées enchanté adj f p 55.00 7.97 0.20 0.27 +enchantés enchanter ver m p 15.57 22.43 0.68 1.69 par:pas; +enchemisé enchemiser ver m s 0.00 0.07 0.00 0.07 par:pas; +enchevêtraient enchevêtrer ver 0.21 2.30 0.00 0.41 ind:imp:3p; +enchevêtrais enchevêtrer ver 0.21 2.30 0.00 0.07 ind:imp:1s; +enchevêtrant enchevêtrer ver 0.21 2.30 0.00 0.07 par:pre; +enchevêtre enchevêtrer ver 0.21 2.30 0.00 0.27 ind:pre:3s; +enchevêtrement enchevêtrement nom m s 0.11 3.78 0.09 3.38 +enchevêtrements enchevêtrement nom m p 0.11 3.78 0.01 0.41 +enchevêtrent enchevêtrer ver 0.21 2.30 0.02 0.34 ind:pre:3p; +enchevêtré enchevêtrer ver m s 0.21 2.30 0.02 0.00 par:pas; +enchevêtrée enchevêtrer ver f s 0.21 2.30 0.14 0.00 par:pas; +enchevêtrées enchevêtré adj f p 0.04 2.50 0.02 0.95 +enchevêtrés enchevêtrer ver m p 0.21 2.30 0.02 0.68 par:pas; +enchifrené enchifrener ver m s 0.00 0.07 0.00 0.07 par:pas; +enchâssaient enchâsser ver 0.07 1.89 0.00 0.07 ind:imp:3p; +enchâssait enchâsser ver 0.07 1.89 0.00 0.07 ind:imp:3s; +enchâssant enchâsser ver 0.07 1.89 0.01 0.14 par:pre; +enchâsse enchâsser ver 0.07 1.89 0.00 0.07 ind:pre:3s; +enchâsser enchâsser ver 0.07 1.89 0.00 0.14 inf; +enchâssé enchâsser ver m s 0.07 1.89 0.03 0.54 par:pas; +enchâssée enchâsser ver f s 0.07 1.89 0.02 0.47 par:pas; +enchâssés enchâsser ver m p 0.07 1.89 0.01 0.41 par:pas; +enchriste enchrister ver 0.14 0.47 0.00 0.07 ind:pre:3s; +enchrister enchrister ver 0.14 0.47 0.14 0.07 inf; +enchristé enchrister ver m s 0.14 0.47 0.00 0.27 par:pas; +enchristée enchrister ver f s 0.14 0.47 0.00 0.07 par:pas; +enchère enchère nom f s 6.67 1.89 0.88 0.07 +enchères enchère nom f p 6.67 1.89 5.79 1.82 +enchtiber enchtiber ver 0.00 0.47 0.00 0.14 inf; +enchtibé enchtiber ver m s 0.00 0.47 0.00 0.27 par:pas; +enchtibés enchtiber ver m p 0.00 0.47 0.00 0.07 par:pas; +enchéri enchérir ver m s 0.55 0.41 0.05 0.07 par:pas; +enchérir enchérir ver 0.55 0.41 0.37 0.14 inf; +enchérissant enchérir ver 0.55 0.41 0.00 0.07 par:pre; +enchérisse enchérir ver 0.55 0.41 0.09 0.00 sub:pre:1s;sub:pre:3s; +enchérisseur enchérisseur nom m s 0.29 0.00 0.14 0.00 +enchérisseurs enchérisseur nom m p 0.29 0.00 0.14 0.00 +enchérisseuse enchérisseur nom f s 0.29 0.00 0.01 0.00 +enchérit enchérir ver 0.55 0.41 0.04 0.14 ind:pre:3s; +enclave enclave nom f s 0.21 1.49 0.13 0.95 +enclaves enclave nom f p 0.21 1.49 0.09 0.54 +enclavé enclavé adj m s 0.02 0.07 0.01 0.00 +enclavée enclavé adj f s 0.02 0.07 0.01 0.00 +enclavées enclavé adj f p 0.02 0.07 0.00 0.07 +enclencha enclencher ver 2.74 2.43 0.00 0.14 ind:pas:3s; +enclenchai enclencher ver 2.74 2.43 0.00 0.07 ind:pas:1s; +enclenchait enclencher ver 2.74 2.43 0.00 0.14 ind:imp:3s; +enclenchant enclencher ver 2.74 2.43 0.04 0.14 par:pre; +enclenche enclencher ver 2.74 2.43 0.93 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enclenchement enclenchement nom m s 0.06 0.07 0.06 0.07 +enclenchent enclencher ver 2.74 2.43 0.06 0.14 ind:pre:3p; +enclencher enclencher ver 2.74 2.43 0.46 0.47 inf; +enclenchera enclencher ver 2.74 2.43 0.04 0.00 ind:fut:3s; +enclenches enclencher ver 2.74 2.43 0.01 0.07 ind:pre:2s; +enclenchez enclencher ver 2.74 2.43 0.55 0.00 imp:pre:2p; +enclenché enclenché adj m s 1.06 0.27 0.80 0.07 +enclenchée enclenché adj f s 1.06 0.27 0.21 0.14 +enclenchées enclencher ver f p 2.74 2.43 0.03 0.00 par:pas; +enclenchés enclenché adj m p 1.06 0.27 0.04 0.07 +enclin enclin adj m s 2.33 5.07 1.61 2.77 +encline enclin adj f s 2.33 5.07 0.32 0.54 +enclines enclin adj f p 2.33 5.07 0.00 0.14 +enclins enclin adj m p 2.33 5.07 0.41 1.62 +encliqueter encliqueter ver 0.01 0.00 0.01 0.00 inf; +encloîtrer encloîtrer ver 0.00 0.07 0.00 0.07 inf; +encloqué encloquer ver m s 0.03 0.00 0.03 0.00 par:pas; +enclore enclore ver 0.00 1.28 0.00 0.14 inf; +enclos enclos nom m 2.95 6.01 2.95 6.01 +enclose enclore ver f s 0.00 1.28 0.00 0.20 par:pas; +encloses enclore ver f p 0.00 1.28 0.00 0.41 par:pas; +enclosure enclosure nom f s 0.01 0.07 0.01 0.07 +enclouer enclouer ver 0.00 0.07 0.00 0.07 inf; +enclume enclume nom f s 0.82 5.20 0.49 5.14 +enclumes enclume nom f p 0.82 5.20 0.33 0.07 +encoche encoche nom f s 0.26 2.23 0.13 1.49 +encoches encoche nom f p 0.26 2.23 0.13 0.74 +encoché encocher ver m s 0.00 0.07 0.00 0.07 par:pas; +encoconner encoconner ver 0.00 0.20 0.00 0.07 inf; +encoconnée encoconner ver f s 0.00 0.20 0.00 0.14 par:pas; +encodage encodage nom m s 0.06 0.00 0.06 0.00 +encode encoder ver 1.08 0.00 0.03 0.00 ind:pre:1s;ind:pre:3s; +encoder encoder ver 1.08 0.00 0.06 0.00 inf; +encodeur encodeur nom m s 0.06 0.00 0.06 0.00 +encodé encoder ver m s 1.08 0.00 0.89 0.00 par:pas; +encodée encoder ver f s 1.08 0.00 0.05 0.00 par:pas; +encodés encoder ver m p 1.08 0.00 0.05 0.00 par:pas; +encoignure encoignure nom f s 0.00 4.19 0.00 3.04 +encoignures encoignure nom f p 0.00 4.19 0.00 1.15 +encollage encollage nom m s 0.00 0.07 0.00 0.07 +encollait encoller ver 0.00 0.34 0.00 0.07 ind:imp:3s; +encoller encoller ver 0.00 0.34 0.00 0.07 inf; +encolleuses encolleur nom f p 0.00 0.07 0.00 0.07 +encollé encoller ver m s 0.00 0.34 0.00 0.07 par:pas; +encollée encoller ver f s 0.00 0.34 0.00 0.07 par:pas; +encollées encoller ver f p 0.00 0.34 0.00 0.07 par:pas; +encolure encolure nom f s 0.17 6.69 0.17 6.01 +encolures encolure nom f p 0.17 6.69 0.00 0.68 +encolérée encoléré adj f s 0.00 0.14 0.00 0.07 +encolérés encoléré adj m p 0.00 0.14 0.00 0.07 +encombra encombrer ver 2.22 30.41 0.00 0.14 ind:pas:3s; +encombraient encombrer ver 2.22 30.41 0.02 3.24 ind:imp:3p; +encombrais encombrer ver 2.22 30.41 0.00 0.07 ind:imp:1s; +encombrait encombrer ver 2.22 30.41 0.14 2.30 ind:imp:3s; +encombrant encombrant adj m s 1.42 6.08 0.47 2.70 +encombrante encombrant adj f s 1.42 6.08 0.50 1.55 +encombrantes encombrant adj f p 1.42 6.08 0.01 0.47 +encombrants encombrant adj m p 1.42 6.08 0.45 1.35 +encombre encombre nom m s 0.71 1.69 0.47 1.55 +encombrement encombrement nom m s 0.23 3.72 0.05 2.23 +encombrements encombrement nom m p 0.23 3.72 0.18 1.49 +encombrent encombrer ver 2.22 30.41 0.10 1.82 ind:pre:3p; +encombrer encombrer ver 2.22 30.41 0.47 3.65 inf; +encombrera encombrer ver 2.22 30.41 0.01 0.20 ind:fut:3s; +encombrerai encombrer ver 2.22 30.41 0.11 0.00 ind:fut:1s; +encombrerait encombrer ver 2.22 30.41 0.00 0.07 cnd:pre:3s; +encombres encombre nom m p 0.71 1.69 0.25 0.14 +encombrez encombrer ver 2.22 30.41 0.08 0.07 imp:pre:2p;ind:pre:2p; +encombrèrent encombrer ver 2.22 30.41 0.00 0.07 ind:pas:3p; +encombré encombrer ver m s 2.22 30.41 0.35 5.34 par:pas; +encombrée encombrer ver f s 2.22 30.41 0.17 6.49 par:pas; +encombrées encombrer ver f p 2.22 30.41 0.09 2.50 par:pas; +encombrés encombrer ver m p 2.22 30.41 0.17 2.09 par:pas; +encor encor adv 0.42 0.27 0.42 0.27 +encorbellement encorbellement nom m s 0.02 1.01 0.01 0.68 +encorbellements encorbellement nom m p 0.02 1.01 0.01 0.34 +encorder encorder ver 0.11 0.47 0.10 0.20 inf; +encordé encorder ver m s 0.11 0.47 0.01 0.07 par:pas; +encordée encorder ver f s 0.11 0.47 0.00 0.07 par:pas; +encordés encorder ver m p 0.11 0.47 0.00 0.14 par:pas; +encore encore adv_sup 1176.94 1579.05 1176.94 1579.05 +encornaient encorner ver 0.20 0.07 0.00 0.07 ind:imp:3p; +encorner encorner ver 0.20 0.07 0.20 0.00 inf; +encornet encornet nom m s 0.15 0.07 0.14 0.00 +encornets encornet nom m p 0.15 0.07 0.01 0.07 +encorné encorné adj m s 0.00 0.27 0.00 0.07 +encornée encorné adj f s 0.00 0.27 0.00 0.07 +encornés encorné adj m p 0.00 0.27 0.00 0.14 +encotonne encotonner ver 0.00 0.14 0.00 0.07 sub:pre:3s; +encotonner encotonner ver 0.00 0.14 0.00 0.07 inf; +encourage encourager ver 15.24 27.57 3.99 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +encouragea encourager ver 15.24 27.57 0.02 1.08 ind:pas:3s; +encourageai encourager ver 15.24 27.57 0.00 0.47 ind:pas:1s; +encourageaient encourager ver 15.24 27.57 0.25 1.08 ind:imp:3p; +encourageais encourager ver 15.24 27.57 0.14 0.68 ind:imp:1s;ind:imp:2s; +encourageait encourager ver 15.24 27.57 0.44 3.58 ind:imp:3s; +encourageant encourageant adj m s 1.49 3.31 1.05 1.89 +encourageante encourageant adj f s 1.49 3.31 0.14 0.61 +encourageantes encourageant adj f p 1.49 3.31 0.07 0.54 +encourageants encourageant adj m p 1.49 3.31 0.24 0.27 +encourageas encourager ver 15.24 27.57 0.00 0.07 ind:pas:2s; +encouragement encouragement nom m s 2.18 6.42 1.00 3.65 +encouragements encouragement nom m p 2.18 6.42 1.18 2.77 +encouragent encourager ver 15.24 27.57 0.82 0.34 ind:pre:3p; +encourageons encourager ver 15.24 27.57 0.42 0.07 imp:pre:1p;ind:pre:1p; +encourageât encourager ver 15.24 27.57 0.00 0.14 sub:imp:3s; +encourager encourager ver 15.24 27.57 4.42 7.03 inf; +encouragera encourager ver 15.24 27.57 0.11 0.07 ind:fut:3s; +encouragerai encourager ver 15.24 27.57 0.09 0.14 ind:fut:1s; +encouragerais encourager ver 15.24 27.57 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +encouragerait encourager ver 15.24 27.57 0.08 0.07 cnd:pre:3s; +encourageras encourager ver 15.24 27.57 0.03 0.00 ind:fut:2s; +encourages encourager ver 15.24 27.57 0.52 0.20 ind:pre:2s; +encouragez encourager ver 15.24 27.57 0.57 0.14 imp:pre:2p;ind:pre:2p; +encouragiez encourager ver 15.24 27.57 0.05 0.07 ind:imp:2p; +encouragèrent encourager ver 15.24 27.57 0.01 0.20 ind:pas:3p; +encouragé encourager ver m s 15.24 27.57 1.79 4.32 par:pas; +encouragée encourager ver f s 15.24 27.57 0.73 1.35 par:pas; +encouragées encourager ver f p 15.24 27.57 0.04 0.20 par:pas; +encouragés encourager ver m p 15.24 27.57 0.23 1.22 par:pas; +encouraient encourir ver 1.10 2.30 0.03 0.14 ind:imp:3p; +encourais encourir ver 1.10 2.30 0.03 0.00 ind:imp:1s;ind:imp:2s; +encourait encourir ver 1.10 2.30 0.01 0.34 ind:imp:3s; +encourant encourir ver 1.10 2.30 0.01 0.07 par:pre; +encourent encourir ver 1.10 2.30 0.05 0.07 ind:pre:3p; +encourir encourir ver 1.10 2.30 0.10 0.81 inf; +encourrait encourir ver 1.10 2.30 0.02 0.07 cnd:pre:3s; +encours encourir ver 1.10 2.30 0.04 0.00 ind:pre:1s; +encourt encourir ver 1.10 2.30 0.23 0.14 ind:pre:3s; +encouru encourir ver m s 1.10 2.30 0.24 0.20 par:pas; +encourue encourir ver f s 1.10 2.30 0.13 0.07 par:pas; +encourues encourir ver f p 1.10 2.30 0.04 0.20 par:pas; +encourus encourir ver m p 1.10 2.30 0.16 0.20 par:pas; +encrage encrage nom m s 0.02 0.07 0.02 0.07 +encrait encrer ver 0.10 0.61 0.00 0.07 ind:imp:3s; +encrassait encrasser ver 0.34 0.68 0.00 0.07 ind:imp:3s; +encrasse encrasser ver 0.34 0.68 0.14 0.07 ind:pre:3s; +encrassent encrasser ver 0.34 0.68 0.00 0.07 ind:pre:3p; +encrasser encrasser ver 0.34 0.68 0.01 0.14 inf; +encrassé encrasser ver m s 0.34 0.68 0.05 0.14 par:pas; +encrassée encrasser ver f s 0.34 0.68 0.11 0.14 par:pas; +encrassées encrassé adj f p 0.02 0.27 0.01 0.07 +encrassés encrasser ver m p 0.34 0.68 0.02 0.07 par:pas; +encre encre nom f s 6.81 29.53 6.49 28.65 +encrer encrer ver 0.10 0.61 0.02 0.00 inf; +encres encre nom f p 6.81 29.53 0.32 0.88 +encreur encreur adj m s 0.07 0.07 0.07 0.00 +encreurs encreur adj m p 0.07 0.07 0.00 0.07 +encrier encrier nom m s 0.45 4.26 0.43 3.51 +encriers encrier nom m p 0.45 4.26 0.02 0.74 +encroûtaient encroûter ver 0.18 0.95 0.00 0.07 ind:imp:3p; +encroûte encroûter ver 0.18 0.95 0.02 0.00 ind:pre:1s; +encroûtement encroûtement nom m s 0.01 0.00 0.01 0.00 +encroûter encroûter ver 0.18 0.95 0.15 0.07 inf; +encroûtèrent encroûter ver 0.18 0.95 0.00 0.07 ind:pas:3p; +encroûté encroûter ver m s 0.18 0.95 0.01 0.07 par:pas; +encroûtée encroûter ver f s 0.18 0.95 0.00 0.14 par:pas; +encroûtées encroûter ver f p 0.18 0.95 0.00 0.27 par:pas; +encroûtés encroûté nom m p 0.01 0.14 0.01 0.07 +encrotté encrotter ver m s 0.00 0.07 0.00 0.07 par:pas; +encré encrer ver m s 0.10 0.61 0.01 0.07 par:pas; +encrée encrer ver f s 0.10 0.61 0.00 0.07 par:pas; +encrés encrer ver m p 0.10 0.61 0.05 0.20 par:pas; +encryptage encryptage nom m s 0.03 0.00 0.03 0.00 +encrypté encrypter ver m s 0.02 0.00 0.02 0.00 par:pas; +enculade enculade nom f s 0.33 0.14 0.20 0.07 +enculades enculade nom f p 0.33 0.14 0.14 0.07 +enculage enculage nom m s 0.06 0.07 0.06 0.07 +enculant enculer ver 15.43 5.27 0.13 0.00 par:pre; +encule enculer ver 15.43 5.27 2.36 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enculent enculer ver 15.43 5.27 0.09 0.34 ind:pre:3p; +enculer enculer ver 15.43 5.27 5.88 1.89 inf; +enculera enculer ver 15.43 5.27 0.01 0.00 ind:fut:3s; +enculerais enculer ver 15.43 5.27 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +enculerait enculer ver 15.43 5.27 0.00 0.07 cnd:pre:3s; +enculerie enculerie nom f s 0.01 0.47 0.00 0.27 +enculeries enculerie nom f p 0.01 0.47 0.01 0.20 +encules enculer ver 15.43 5.27 0.29 0.14 ind:pre:2s; +enculeur enculeur nom m s 0.54 0.68 0.35 0.54 +enculeurs enculeur nom m p 0.54 0.68 0.18 0.14 +enculé enculé adj m s 31.77 4.73 22.73 3.45 +enculée enculer ver f s 15.43 5.27 0.20 0.20 par:pas; +enculées enculé adj f p 31.77 4.73 0.23 0.00 +enculés enculé adj m p 31.77 4.73 8.78 1.22 +encéphale encéphale nom m s 0.01 0.07 0.01 0.07 +encéphalique encéphalique adj s 0.04 0.14 0.04 0.00 +encéphaliques encéphalique adj p 0.04 0.14 0.00 0.14 +encéphalite encéphalite nom f s 0.48 0.07 0.48 0.07 +encéphalogramme encéphalogramme nom m s 0.58 0.20 0.58 0.20 +encéphalographie encéphalographie nom f s 0.02 0.07 0.02 0.07 +encéphalopathie encéphalopathie nom f s 0.05 0.00 0.05 0.00 +encyclique encyclique nom f s 0.04 0.27 0.04 0.20 +encycliques encyclique nom f p 0.04 0.27 0.00 0.07 +encyclopédie encyclopédie nom f s 1.99 2.64 1.14 1.28 +encyclopédies encyclopédie nom f p 1.99 2.64 0.85 1.35 +encyclopédique encyclopédique adj s 0.12 0.74 0.12 0.61 +encyclopédiques encyclopédique adj f p 0.12 0.74 0.00 0.14 +encyclopédistes encyclopédiste nom p 0.00 0.14 0.00 0.14 +endettait endetter ver 1.41 1.01 0.01 0.07 ind:imp:3s; +endettant endetter ver 1.41 1.01 0.00 0.07 par:pre; +endette endetter ver 1.41 1.01 0.02 0.14 ind:pre:3s; +endettement endettement nom m s 0.09 0.07 0.09 0.07 +endetter endetter ver 1.41 1.01 0.18 0.27 inf; +endettez endetter ver 1.41 1.01 0.14 0.00 imp:pre:2p;ind:pre:2p; +endetté endetter ver m s 1.41 1.01 0.79 0.34 par:pas; +endettée endetté adj f s 0.45 0.20 0.23 0.07 +endettées endetter ver f p 1.41 1.01 0.01 0.00 par:pas; +endettés endetter ver m p 1.41 1.01 0.14 0.00 par:pas; +endeuille endeuiller ver 0.19 0.81 0.00 0.14 ind:pre:3s; +endeuillent endeuiller ver 0.19 0.81 0.01 0.00 ind:pre:3p; +endeuiller endeuiller ver 0.19 0.81 0.01 0.14 inf; +endeuillerai endeuiller ver 0.19 0.81 0.14 0.00 ind:fut:1s; +endeuillé endeuillé adj m s 0.20 1.35 0.11 0.20 +endeuillée endeuillé adj f s 0.20 1.35 0.06 0.61 +endeuillées endeuillé adj f p 0.20 1.35 0.01 0.20 +endeuillés endeuillé adj m p 0.20 1.35 0.02 0.34 +endiable endiabler ver 0.03 0.47 0.00 0.14 ind:pre:3s; +endiablent endiabler ver 0.03 0.47 0.00 0.07 ind:pre:3p; +endiablerez endiabler ver 0.03 0.47 0.00 0.07 ind:fut:2p; +endiablé endiablé adj m s 0.43 1.22 0.17 0.34 +endiablée endiablé adj f s 0.43 1.22 0.19 0.61 +endiablées endiablé adj f p 0.43 1.22 0.06 0.20 +endiablés endiablé adj m p 0.43 1.22 0.01 0.07 +endiamanté endiamanté adj m s 0.01 0.61 0.00 0.14 +endiamantée endiamanté adj f s 0.01 0.61 0.01 0.20 +endiamantées endiamanté adj f p 0.01 0.61 0.00 0.20 +endiamantés endiamanté adj m p 0.01 0.61 0.00 0.07 +endigua endiguer ver 0.56 1.82 0.00 0.14 ind:pas:3s; +endiguait endiguer ver 0.56 1.82 0.00 0.07 ind:imp:3s; +endigue endiguer ver 0.56 1.82 0.03 0.00 ind:pre:3s; +endiguement endiguement nom m s 0.11 0.00 0.11 0.00 +endiguer endiguer ver 0.56 1.82 0.40 1.35 inf; +endiguera endiguer ver 0.56 1.82 0.01 0.00 ind:fut:3s; +endigué endiguer ver m s 0.56 1.82 0.10 0.07 par:pas; +endiguée endiguer ver f s 0.56 1.82 0.01 0.20 par:pas; +endigués endiguer ver m p 0.56 1.82 0.01 0.00 par:pas; +endimanchait endimancher ver 0.04 1.08 0.00 0.07 ind:imp:3s; +endimanchement endimanchement nom m s 0.00 0.07 0.00 0.07 +endimancher endimancher ver 0.04 1.08 0.00 0.14 inf; +endimanché endimanché adj m s 0.21 3.18 0.06 0.61 +endimanchée endimanché adj f s 0.21 3.18 0.04 0.54 +endimanchées endimanché adj f p 0.21 3.18 0.00 0.74 +endimanchés endimanché adj m p 0.21 3.18 0.11 1.28 +endive endive nom f s 0.87 0.95 0.03 0.14 +endives endive nom f p 0.87 0.95 0.84 0.81 +endivisionnés endivisionner ver m p 0.00 0.07 0.00 0.07 par:pas; +endocarde endocarde nom m s 0.01 0.00 0.01 0.00 +endocardite endocardite nom f s 0.14 0.00 0.14 0.00 +endocrine endocrine adj f s 0.02 0.20 0.01 0.07 +endocrines endocrine adj f p 0.02 0.20 0.01 0.14 +endocrinien endocrinien adj m s 0.04 0.07 0.01 0.00 +endocrinienne endocrinien adj f s 0.04 0.07 0.02 0.00 +endocriniens endocrinien adj m p 0.04 0.07 0.01 0.07 +endocrinologie endocrinologie nom f s 0.07 0.27 0.07 0.27 +endocrinologiste endocrinologiste nom s 0.01 0.00 0.01 0.00 +endocrinologue endocrinologue nom s 0.04 0.07 0.04 0.07 +endoctrina endoctriner ver 0.20 0.34 0.00 0.07 ind:pas:3s; +endoctrinement endoctrinement nom m s 0.13 0.27 0.13 0.27 +endoctriner endoctriner ver 0.20 0.34 0.04 0.14 inf; +endoctriné endoctriner ver m s 0.20 0.34 0.01 0.07 par:pas; +endoctrinée endoctriner ver f s 0.20 0.34 0.11 0.07 par:pas; +endoctrinés endoctriner ver m p 0.20 0.34 0.05 0.00 par:pas; +endogamie endogamie nom f s 0.02 0.34 0.02 0.34 +endogène endogène adj f s 0.03 0.14 0.03 0.14 +endolori endolori adj m s 0.50 1.28 0.29 0.27 +endolorie endolorir ver f s 0.16 0.74 0.10 0.20 par:pas; +endolories endolori adj f p 0.50 1.28 0.01 0.20 +endolorir endolorir ver 0.16 0.74 0.00 0.07 inf; +endoloris endolori adj m p 0.50 1.28 0.16 0.20 +endolorissement endolorissement nom m s 0.03 0.20 0.03 0.20 +endommagea endommager ver 5.28 1.82 0.00 0.07 ind:pas:3s; +endommageant endommager ver 5.28 1.82 0.06 0.07 par:pre; +endommagement endommagement nom m s 0.02 0.00 0.01 0.00 +endommagements endommagement nom m p 0.02 0.00 0.01 0.00 +endommager endommager ver 5.28 1.82 1.23 0.47 inf; +endommagera endommager ver 5.28 1.82 0.07 0.00 ind:fut:3s; +endommagerait endommager ver 5.28 1.82 0.03 0.00 cnd:pre:3s; +endommagerez endommager ver 5.28 1.82 0.03 0.00 ind:fut:2p; +endommagez endommager ver 5.28 1.82 0.15 0.00 imp:pre:2p;ind:pre:2p; +endommagé endommager ver m s 5.28 1.82 2.40 0.88 par:pas; +endommagée endommager ver f s 5.28 1.82 0.69 0.14 par:pas; +endommagées endommager ver f p 5.28 1.82 0.14 0.07 par:pas; +endommagés endommager ver m p 5.28 1.82 0.49 0.14 par:pas; +endomorphe endomorphe adj s 0.01 0.00 0.01 0.00 +endomorphine endomorphine nom f s 0.01 0.00 0.01 0.00 +endométriose endométriose nom f s 0.04 0.00 0.04 0.00 +endométrite endométrite nom f s 0.01 0.00 0.01 0.00 +endoplasmique endoplasmique adj m s 0.03 0.00 0.03 0.00 +endormîmes endormir ver 48.19 73.18 0.00 0.20 ind:pas:1p; +endormît endormir ver 48.19 73.18 0.00 0.07 sub:imp:3s; +endormaient endormir ver 48.19 73.18 0.14 1.55 ind:imp:3p; +endormais endormir ver 48.19 73.18 0.42 1.96 ind:imp:1s;ind:imp:2s; +endormait endormir ver 48.19 73.18 0.50 5.81 ind:imp:3s; +endormant endormir ver 48.19 73.18 0.35 1.35 par:pre; +endormante endormant adj f s 0.04 0.14 0.01 0.07 +endorme endormir ver 48.19 73.18 1.30 0.95 sub:pre:1s;sub:pre:3s; +endorment endormir ver 48.19 73.18 0.98 1.28 ind:pre:3p; +endormes endormir ver 48.19 73.18 0.22 0.07 sub:pre:2s; +endormeur endormeur nom m s 0.02 0.20 0.02 0.14 +endormeurs endormeur nom m p 0.02 0.20 0.00 0.07 +endormez endormir ver 48.19 73.18 0.73 0.20 imp:pre:2p;ind:pre:2p; +endormi endormir ver m s 48.19 73.18 12.83 11.22 par:pas; +endormie endormi adj f s 13.43 32.30 8.84 16.96 +endormies endormi adj f p 13.43 32.30 0.37 2.70 +endormions endormir ver 48.19 73.18 0.16 0.20 ind:imp:1p; +endormir endormir ver 48.19 73.18 15.36 24.39 inf; +endormira endormir ver 48.19 73.18 0.94 0.27 ind:fut:3s; +endormirai endormir ver 48.19 73.18 0.47 0.20 ind:fut:1s; +endormiraient endormir ver 48.19 73.18 0.00 0.14 cnd:pre:3p; +endormirais endormir ver 48.19 73.18 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +endormirait endormir ver 48.19 73.18 0.02 0.47 cnd:pre:3s; +endormirent endormir ver 48.19 73.18 0.02 0.27 ind:pas:3p; +endormirez endormir ver 48.19 73.18 0.04 0.07 ind:fut:2p; +endormirions endormir ver 48.19 73.18 0.01 0.00 cnd:pre:1p; +endormiront endormir ver 48.19 73.18 0.06 0.14 ind:fut:3p; +endormis endormi adj m p 13.43 32.30 1.27 4.05 +endormisse endormir ver 48.19 73.18 0.00 0.07 sub:imp:1s; +endormissement endormissement nom m s 0.04 0.07 0.04 0.00 +endormissements endormissement nom m p 0.04 0.07 0.00 0.07 +endormit endormir ver 48.19 73.18 0.20 7.77 ind:pas:3s; +endormons endormir ver 48.19 73.18 0.29 0.27 imp:pre:1p;ind:pre:1p; +endorphine endorphine nom f s 1.33 0.07 0.29 0.00 +endorphines endorphine nom f p 1.33 0.07 1.04 0.07 +endors endormir ver 48.19 73.18 6.08 3.85 imp:pre:2s;ind:pre:1s;ind:pre:2s; +endort endormir ver 48.19 73.18 5.67 5.34 ind:pre:3s; +endoscope endoscope nom m s 0.15 0.00 0.15 0.00 +endoscopie endoscopie nom f s 0.25 0.07 0.25 0.07 +endoscopique endoscopique adj s 0.01 0.00 0.01 0.00 +endosquelette endosquelette nom m s 0.01 0.00 0.01 0.00 +endossa endosser ver 2.29 5.68 0.00 0.34 ind:pas:3s; +endossables endossable adj m p 0.01 0.00 0.01 0.00 +endossai endosser ver 2.29 5.68 0.01 0.07 ind:pas:1s; +endossaient endosser ver 2.29 5.68 0.00 0.07 ind:imp:3p; +endossais endosser ver 2.29 5.68 0.01 0.07 ind:imp:1s; +endossait endosser ver 2.29 5.68 0.01 0.34 ind:imp:3s; +endossant endosser ver 2.29 5.68 0.12 0.27 par:pre; +endosse endosser ver 2.29 5.68 0.28 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +endossement endossement nom m s 0.26 0.00 0.26 0.00 +endossent endosser ver 2.29 5.68 0.02 0.07 ind:pre:3p; +endosser endosser ver 2.29 5.68 1.13 2.36 inf; +endosserai endosser ver 2.29 5.68 0.04 0.00 ind:fut:1s; +endosserais endosser ver 2.29 5.68 0.00 0.07 cnd:pre:1s; +endosserait endosser ver 2.29 5.68 0.00 0.14 cnd:pre:3s; +endosseras endosser ver 2.29 5.68 0.01 0.00 ind:fut:2s; +endosses endosser ver 2.29 5.68 0.03 0.00 ind:pre:2s; +endosseur endosseur nom m s 0.00 0.07 0.00 0.07 +endossez endosser ver 2.29 5.68 0.23 0.07 imp:pre:2p;ind:pre:2p; +endossiez endosser ver 2.29 5.68 0.01 0.07 ind:imp:2p; +endossât endosser ver 2.29 5.68 0.00 0.14 sub:imp:3s; +endossèrent endosser ver 2.29 5.68 0.00 0.14 ind:pas:3p; +endossé endosser ver m s 2.29 5.68 0.24 0.68 par:pas; +endossée endosser ver f s 2.29 5.68 0.10 0.14 par:pas; +endossées endosser ver f p 2.29 5.68 0.00 0.07 par:pas; +endossés endosser ver m p 2.29 5.68 0.05 0.00 par:pas; +endothermique endothermique adj f s 0.01 0.00 0.01 0.00 +endroit endroit nom m s 218.24 137.57 196.75 108.65 +endroits endroit nom m p 218.24 137.57 21.48 28.92 +enduira enduire ver 1.25 7.50 0.01 0.00 ind:fut:3s; +enduirais enduire ver 1.25 7.50 0.00 0.07 cnd:pre:1s; +enduirait enduire ver 1.25 7.50 0.00 0.07 cnd:pre:3s; +enduire enduire ver 1.25 7.50 0.18 1.35 inf; +enduis enduire ver 1.25 7.50 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +enduisaient enduire ver 1.25 7.50 0.00 0.27 ind:imp:3p; +enduisait enduire ver 1.25 7.50 0.00 0.61 ind:imp:3s; +enduisant enduire ver 1.25 7.50 0.00 0.27 par:pre; +enduisent enduire ver 1.25 7.50 0.12 0.20 ind:pre:3p; +enduisit enduire ver 1.25 7.50 0.00 0.34 ind:pas:3s; +enduisons enduire ver 1.25 7.50 0.11 0.00 imp:pre:1p;ind:pre:1p; +enduit enduire ver m s 1.25 7.50 0.49 1.42 ind:pre:3s;par:pas; +enduite enduire ver f s 1.25 7.50 0.07 1.15 par:pas; +enduites enduire ver f p 1.25 7.50 0.03 0.81 par:pas; +enduits enduire ver m p 1.25 7.50 0.04 0.88 par:pas; +endémique endémique adj s 0.11 1.01 0.11 0.88 +endémiques endémique adj f p 0.11 1.01 0.00 0.14 +endura endurer ver 9.67 7.57 0.00 0.14 ind:pas:3s; +endurable endurable adj s 0.00 0.07 0.00 0.07 +enduraient endurer ver 9.67 7.57 0.02 0.07 ind:imp:3p; +endurais endurer ver 9.67 7.57 0.02 0.07 ind:imp:1s; +endurait endurer ver 9.67 7.57 0.04 0.20 ind:imp:3s; +endurance endurance nom f s 1.72 2.43 1.72 2.43 +endurant endurant adj m s 0.14 0.34 0.10 0.14 +endurante endurant adj f s 0.14 0.34 0.03 0.07 +endurants endurant adj m p 0.14 0.34 0.01 0.14 +endurci endurcir ver m s 2.11 2.09 0.51 0.61 par:pas; +endurcie endurcir ver f s 2.11 2.09 0.28 0.20 par:pas; +endurcies endurci adj f p 1.19 1.28 0.01 0.00 +endurcir endurcir ver 2.11 2.09 0.91 0.68 inf; +endurcirait endurcir ver 2.11 2.09 0.01 0.00 cnd:pre:3s; +endurcis endurci adj m p 1.19 1.28 0.43 0.61 +endurcissait endurcir ver 2.11 2.09 0.01 0.00 ind:imp:3s; +endurcissement endurcissement nom m s 0.40 0.61 0.40 0.61 +endurcit endurcir ver 2.11 2.09 0.24 0.34 ind:pre:3s;ind:pas:3s; +endure endurer ver 9.67 7.57 1.58 0.47 ind:pre:1s;ind:pre:3s; +endurent endurer ver 9.67 7.57 0.17 0.07 ind:pre:3p; +endurer endurer ver 9.67 7.57 3.70 3.58 inf; +endurera endurer ver 9.67 7.57 0.00 0.07 ind:fut:3s; +endurerai endurer ver 9.67 7.57 0.14 0.00 ind:fut:1s; +endureras endurer ver 9.67 7.57 0.01 0.00 ind:fut:2s; +endurez endurer ver 9.67 7.57 0.40 0.00 imp:pre:2p;ind:pre:2p; +enduriez endurer ver 9.67 7.57 0.01 0.00 ind:imp:2p; +endurons endurer ver 9.67 7.57 0.02 0.00 ind:pre:1p; +enduré endurer ver m s 9.67 7.57 3.08 1.82 par:pas; +endurée endurer ver f s 9.67 7.57 0.05 0.14 par:pas; +endurées endurer ver f p 9.67 7.57 0.19 0.54 par:pas; +endurés endurer ver m p 9.67 7.57 0.16 0.27 par:pas; +endêver endêver ver 0.00 0.07 0.00 0.07 inf; +enfance enfance nom f s 33.01 103.99 32.70 103.11 +enfances enfance nom f p 33.01 103.99 0.31 0.88 +enfant_robot enfant_robot nom s 0.16 0.00 0.16 0.00 +enfant_roi enfant_roi nom s 0.02 0.14 0.02 0.14 +enfant enfant nom s 735.59 725.68 287.26 381.96 +enfanta enfanter ver 1.96 3.99 0.00 0.14 ind:pas:3s; +enfantaient enfanter ver 1.96 3.99 0.00 0.07 ind:imp:3p; +enfantait enfanter ver 1.96 3.99 0.00 0.34 ind:imp:3s; +enfante enfanter ver 1.96 3.99 0.20 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfantelets enfantelet nom m p 0.00 0.07 0.00 0.07 +enfantement enfantement nom m s 0.25 0.81 0.25 0.74 +enfantements enfantement nom m p 0.25 0.81 0.00 0.07 +enfantent enfanter ver 1.96 3.99 0.16 0.20 ind:pre:3p; +enfanter enfanter ver 1.96 3.99 0.80 1.08 inf; +enfantera enfanter ver 1.96 3.99 0.27 0.00 ind:fut:3s; +enfanterai enfanter ver 1.96 3.99 0.02 0.07 ind:fut:1s; +enfançon enfançon nom m s 0.10 0.34 0.00 0.27 +enfançons enfançon nom m p 0.10 0.34 0.10 0.07 +enfantillage enfantillage nom m s 1.47 3.58 0.15 1.96 +enfantillages enfantillage nom m p 1.47 3.58 1.32 1.62 +enfantin enfantin adj m s 3.39 31.15 0.89 11.01 +enfantine enfantin adj f s 3.39 31.15 2.07 13.99 +enfantinement enfantinement adv 0.10 0.41 0.10 0.41 +enfantines enfantin adj f p 3.39 31.15 0.24 3.51 +enfantins enfantin adj m p 3.39 31.15 0.19 2.64 +enfantons enfanter ver 1.96 3.99 0.00 0.07 ind:pre:1p; +enfants_robot enfants_robot nom m p 0.01 0.00 0.01 0.00 +enfants_roi enfants_roi nom m p 0.00 0.07 0.00 0.07 +enfants enfant nom m p 735.59 725.68 448.33 343.72 +enfanté enfanter ver m s 1.96 3.99 0.40 1.01 par:pas; +enfantée enfanter ver f s 1.96 3.99 0.11 0.20 par:pas; +enfantées enfanter ver f p 1.96 3.99 0.00 0.07 par:pas; +enfantés enfanter ver m p 1.96 3.99 0.00 0.20 par:pas; +enfarinait enfariner ver 0.12 0.41 0.00 0.07 ind:imp:3s; +enfarine enfariner ver 0.12 0.41 0.10 0.07 imp:pre:2s;ind:pre:3s; +enfariner enfariner ver 0.12 0.41 0.01 0.07 inf; +enfariné enfariner ver m s 0.12 0.41 0.01 0.07 par:pas; +enfarinée enfariné adj f s 0.36 0.88 0.35 0.41 +enfarinés enfariné adj m p 0.36 0.88 0.01 0.20 +enfer enfer nom m s 88.86 41.35 86.02 38.78 +enferma enfermer ver 58.81 69.86 0.29 4.12 ind:pas:3s; +enfermai enfermer ver 58.81 69.86 0.02 0.47 ind:pas:1s; +enfermaient enfermer ver 58.81 69.86 0.05 1.69 ind:imp:3p; +enfermais enfermer ver 58.81 69.86 0.20 0.47 ind:imp:1s;ind:imp:2s; +enfermait enfermer ver 58.81 69.86 0.64 5.41 ind:imp:3s; +enfermant enfermer ver 58.81 69.86 0.12 2.23 par:pre; +enferme enfermer ver 58.81 69.86 6.32 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enfermement enfermement nom m s 0.20 0.61 0.20 0.61 +enferment enfermer ver 58.81 69.86 0.76 1.28 ind:pre:3p; +enfermer enfermer ver 58.81 69.86 12.70 13.92 ind:pre:2p;inf; +enfermera enfermer ver 58.81 69.86 0.34 0.07 ind:fut:3s; +enfermerai enfermer ver 58.81 69.86 0.33 0.14 ind:fut:1s; +enfermeraient enfermer ver 58.81 69.86 0.05 0.00 cnd:pre:3p; +enfermerais enfermer ver 58.81 69.86 0.08 0.20 cnd:pre:1s; +enfermerait enfermer ver 58.81 69.86 0.35 0.20 cnd:pre:3s; +enfermerez enfermer ver 58.81 69.86 0.01 0.07 ind:fut:2p; +enfermerons enfermer ver 58.81 69.86 0.03 0.14 ind:fut:1p; +enfermeront enfermer ver 58.81 69.86 0.65 0.00 ind:fut:3p; +enfermes enfermer ver 58.81 69.86 1.27 0.34 ind:pre:2s; +enfermez enfermer ver 58.81 69.86 4.78 0.41 imp:pre:2p;ind:pre:2p; +enfermiez enfermer ver 58.81 69.86 0.03 0.07 ind:imp:2p; +enfermons enfermer ver 58.81 69.86 0.45 0.00 imp:pre:1p;ind:pre:1p; +enfermèrent enfermer ver 58.81 69.86 0.23 0.34 ind:pas:3p; +enfermé enfermer ver m s 58.81 69.86 15.25 17.03 par:pas; +enfermée enfermer ver f s 58.81 69.86 8.38 7.57 par:pas; +enfermées enfermer ver f p 58.81 69.86 1.31 1.55 par:pas; +enfermés enfermer ver m p 58.81 69.86 4.17 6.42 par:pas; +enferra enferrer ver 0.23 0.95 0.00 0.07 ind:pas:3s; +enferrait enferrer ver 0.23 0.95 0.00 0.07 ind:imp:3s; +enferrant enferrer ver 0.23 0.95 0.00 0.07 par:pre; +enferre enferrer ver 0.23 0.95 0.01 0.14 ind:pre:1s;ind:pre:3s; +enferrent enferrer ver 0.23 0.95 0.00 0.07 ind:pre:3p; +enferrer enferrer ver 0.23 0.95 0.16 0.27 inf; +enferres enferrer ver 0.23 0.95 0.01 0.07 ind:pre:2s; +enferrez enferrer ver 0.23 0.95 0.01 0.00 ind:pre:2p; +enferrons enferrer ver 0.23 0.95 0.01 0.00 ind:pre:1p; +enferré enferrer ver m s 0.23 0.95 0.02 0.14 par:pas; +enferrée enferrer ver f s 0.23 0.95 0.00 0.07 par:pas; +enfers enfer nom m p 88.86 41.35 2.85 2.57 +enfiche enficher ver 0.00 0.07 0.00 0.07 ind:pre:1s; +enfila enfiler ver 11.42 44.86 0.11 8.99 ind:pas:3s; +enfilade enfilade nom f s 0.16 6.28 0.16 5.00 +enfilades enfilade nom f p 0.16 6.28 0.00 1.28 +enfilage enfilage nom m s 0.00 0.20 0.00 0.20 +enfilai enfiler ver 11.42 44.86 0.01 1.76 ind:pas:1s; +enfilaient enfiler ver 11.42 44.86 0.02 0.54 ind:imp:3p; +enfilais enfiler ver 11.42 44.86 0.12 0.61 ind:imp:1s; +enfilait enfiler ver 11.42 44.86 0.05 3.65 ind:imp:3s; +enfilant enfiler ver 11.42 44.86 0.14 2.16 par:pre; +enfile enfiler ver 11.42 44.86 4.46 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfilent enfiler ver 11.42 44.86 0.06 0.54 ind:pre:3p; +enfiler enfiler ver 11.42 44.86 2.74 10.95 inf; +enfilera enfiler ver 11.42 44.86 0.10 0.00 ind:fut:3s; +enfilerai enfiler ver 11.42 44.86 0.02 0.27 ind:fut:1s; +enfileraient enfiler ver 11.42 44.86 0.00 0.07 cnd:pre:3p; +enfilerais enfiler ver 11.42 44.86 0.06 0.14 cnd:pre:1s; +enfilerait enfiler ver 11.42 44.86 0.00 0.34 cnd:pre:3s; +enfilerez enfiler ver 11.42 44.86 0.01 0.00 ind:fut:2p; +enfileront enfiler ver 11.42 44.86 0.01 0.00 ind:fut:3p; +enfiles enfiler ver 11.42 44.86 0.42 0.34 ind:pre:2s; +enfileur enfileur nom m s 0.00 0.14 0.00 0.14 +enfilez enfiler ver 11.42 44.86 1.20 0.20 imp:pre:2p;ind:pre:2p; +enfilions enfiler ver 11.42 44.86 0.00 0.20 ind:imp:1p; +enfilons enfiler ver 11.42 44.86 0.09 0.07 imp:pre:1p;ind:pre:1p; +enfilèrent enfiler ver 11.42 44.86 0.11 0.54 ind:pas:3p; +enfilé enfiler ver m s 11.42 44.86 1.35 6.28 par:pas; +enfilée enfiler ver f s 11.42 44.86 0.28 0.68 par:pas; +enfilées enfiler ver f p 11.42 44.86 0.01 0.41 par:pas; +enfilés enfiler ver m p 11.42 44.86 0.04 0.34 par:pas; +enfin enfin adv_sup 265.83 440.27 265.83 440.27 +enfièvre enfiévrer ver 0.03 1.42 0.00 0.20 ind:pre:3s; +enfièvrent enfiévrer ver 0.03 1.42 0.00 0.07 ind:pre:3p; +enfiévra enfiévrer ver 0.03 1.42 0.00 0.07 ind:pas:3s; +enfiévraient enfiévrer ver 0.03 1.42 0.00 0.14 ind:imp:3p; +enfiévrait enfiévrer ver 0.03 1.42 0.00 0.27 ind:imp:3s; +enfiévré enfiévré adj m s 0.12 0.74 0.09 0.20 +enfiévrée enfiévrer ver f s 0.03 1.42 0.01 0.27 par:pas; +enfiévrées enfiévré adj f p 0.12 0.74 0.01 0.07 +enfiévrés enfiévré adj m p 0.12 0.74 0.01 0.20 +enfla enfler ver 2.27 10.95 0.02 1.08 ind:pas:3s; +enflaient enfler ver 2.27 10.95 0.00 0.68 ind:imp:3p; +enflait enfler ver 2.27 10.95 0.01 1.89 ind:imp:3s; +enflamma enflammer ver 7.25 10.68 0.14 1.55 ind:pas:3s; +enflammai enflammer ver 7.25 10.68 0.00 0.07 ind:pas:1s; +enflammaient enflammer ver 7.25 10.68 0.00 0.54 ind:imp:3p; +enflammait enflammer ver 7.25 10.68 0.07 1.82 ind:imp:3s; +enflammant enflammer ver 7.25 10.68 0.11 0.47 par:pre; +enflamme enflammer ver 7.25 10.68 2.68 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enflamment enflammer ver 7.25 10.68 0.44 0.47 ind:pre:3p; +enflammer enflammer ver 7.25 10.68 1.59 0.81 inf; +enflammera enflammer ver 7.25 10.68 0.18 0.00 ind:fut:3s; +enflammerait enflammer ver 7.25 10.68 0.01 0.07 cnd:pre:3s; +enflammez enflammer ver 7.25 10.68 0.05 0.00 imp:pre:2p; +enflammât enflammer ver 7.25 10.68 0.00 0.07 sub:imp:3s; +enflammèrent enflammer ver 7.25 10.68 0.01 0.34 ind:pas:3p; +enflammé enflammé adj m s 2.20 4.59 1.00 1.28 +enflammée enflammer ver f s 7.25 10.68 0.65 0.61 par:pas; +enflammées enflammer ver f p 7.25 10.68 0.19 0.47 par:pas; +enflammés enflammé adj m p 2.20 4.59 0.56 0.95 +enflant enfler ver 2.27 10.95 0.00 0.88 par:pre; +enfle enfler ver 2.27 10.95 0.56 1.69 imp:pre:2s;ind:pre:3s; +enflent enfler ver 2.27 10.95 0.26 0.81 ind:pre:3p; +enfler enfler ver 2.27 10.95 0.65 1.49 inf; +enflerait enfler ver 2.27 10.95 0.01 0.00 cnd:pre:3s; +enfles enfler ver 2.27 10.95 0.02 0.07 ind:pre:2s; +enflèrent enfler ver 2.27 10.95 0.00 0.07 ind:pas:3p; +enflé enflé adj m s 1.93 3.58 0.87 1.35 +enflée enflé adj f s 1.93 3.58 0.49 1.01 +enflées enflé adj f p 1.93 3.58 0.25 0.61 +enflure enflure nom f s 2.19 2.36 1.93 2.16 +enflures enflure nom f p 2.19 2.36 0.26 0.20 +enflés enflé adj m p 1.93 3.58 0.32 0.61 +enfoiré enfoiré nom m s 39.56 4.53 30.94 3.24 +enfoirée enfoiré adj f s 14.84 0.81 0.16 0.14 +enfoirés enfoiré nom m p 39.56 4.53 8.50 1.22 +enfonce enfoncer ver 23.30 104.80 6.51 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfoncement enfoncement nom m s 0.08 0.61 0.07 0.47 +enfoncements enfoncement nom m p 0.08 0.61 0.01 0.14 +enfoncent enfoncer ver 23.30 104.80 0.68 3.31 ind:pre:3p; +enfoncer enfoncer ver 23.30 104.80 6.88 20.14 inf;; +enfoncera enfoncer ver 23.30 104.80 0.14 0.14 ind:fut:3s; +enfoncerai enfoncer ver 23.30 104.80 0.28 0.07 ind:fut:1s; +enfonceraient enfoncer ver 23.30 104.80 0.02 0.00 cnd:pre:3p; +enfoncerais enfoncer ver 23.30 104.80 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +enfoncerait enfoncer ver 23.30 104.80 0.03 0.47 cnd:pre:3s; +enfonceras enfoncer ver 23.30 104.80 0.04 0.07 ind:fut:2s; +enfoncerez enfoncer ver 23.30 104.80 0.00 0.07 ind:fut:2p; +enfoncerions enfoncer ver 23.30 104.80 0.00 0.07 cnd:pre:1p; +enfoncerons enfoncer ver 23.30 104.80 0.01 0.07 ind:fut:1p; +enfonceront enfoncer ver 23.30 104.80 0.05 0.07 ind:fut:3p; +enfonces enfoncer ver 23.30 104.80 0.92 0.27 ind:pre:2s;sub:pre:2s; +enfonceur enfonceur nom m s 0.00 0.07 0.00 0.07 +enfoncez enfoncer ver 23.30 104.80 1.52 0.41 imp:pre:2p;ind:pre:2p; +enfonciez enfoncer ver 23.30 104.80 0.14 0.00 ind:imp:2p; +enfoncions enfoncer ver 23.30 104.80 0.01 0.34 ind:imp:1p; +enfoncèrent enfoncer ver 23.30 104.80 0.01 1.22 ind:pas:3p; +enfoncé enfoncer ver m s 23.30 104.80 2.60 13.58 par:pas; +enfoncée enfoncer ver f s 23.30 104.80 0.84 5.14 par:pas; +enfoncées enfoncer ver f p 23.30 104.80 0.19 2.70 par:pas; +enfoncés enfoncer ver m p 23.30 104.80 0.40 4.53 par:pas; +enfonça enfoncer ver 23.30 104.80 0.15 9.19 ind:pas:3s; +enfonçage enfonçage nom m s 0.00 0.07 0.00 0.07 +enfonçai enfoncer ver 23.30 104.80 0.01 1.49 ind:pas:1s; +enfonçaient enfoncer ver 23.30 104.80 0.04 4.39 ind:imp:3p; +enfonçais enfoncer ver 23.30 104.80 0.34 1.89 ind:imp:1s; +enfonçait enfoncer ver 23.30 104.80 0.40 11.76 ind:imp:3s; +enfonçant enfoncer ver 23.30 104.80 0.47 5.61 par:pre; +enfonçâmes enfoncer ver 23.30 104.80 0.00 0.14 ind:pas:1p; +enfonçons enfoncer ver 23.30 104.80 0.53 0.34 imp:pre:1p;ind:pre:1p; +enfoui enfouir ver m s 4.26 26.76 1.04 7.57 par:pas; +enfouie enfouir ver f s 4.26 26.76 0.74 4.80 par:pas; +enfouies enfouir ver f p 4.26 26.76 0.62 2.09 par:pas; +enfouillais enfouiller ver 0.00 0.88 0.00 0.14 ind:imp:1s; +enfouillant enfouiller ver 0.00 0.88 0.00 0.07 par:pre; +enfouille enfouiller ver 0.00 0.88 0.00 0.07 ind:pre:3s; +enfouiller enfouiller ver 0.00 0.88 0.00 0.20 inf; +enfouillé enfouiller ver m s 0.00 0.88 0.00 0.34 par:pas; +enfouillée enfouiller ver f s 0.00 0.88 0.00 0.07 par:pas; +enfouir enfouir ver 4.26 26.76 0.71 3.24 inf; +enfouiraient enfouir ver 4.26 26.76 0.00 0.07 cnd:pre:3p; +enfouis enfouir ver m p 4.26 26.76 0.29 2.36 ind:pre:1s;par:pas; +enfouissais enfouir ver 4.26 26.76 0.00 0.27 ind:imp:1s; +enfouissait enfouir ver 4.26 26.76 0.00 1.01 ind:imp:3s; +enfouissant enfouir ver 4.26 26.76 0.01 0.88 par:pre; +enfouissement enfouissement nom m s 0.09 0.34 0.09 0.20 +enfouissements enfouissement nom m p 0.09 0.34 0.00 0.14 +enfouissent enfouir ver 4.26 26.76 0.00 0.07 ind:pre:3p; +enfouissez enfouir ver 4.26 26.76 0.11 0.00 imp:pre:2p;ind:pre:2p; +enfouissons enfouir ver 4.26 26.76 0.01 0.07 imp:pre:1p;ind:pre:1p; +enfouit enfouir ver 4.26 26.76 0.73 4.32 ind:pre:3s;ind:pas:3s; +enfouraille enfourailler ver 0.00 0.14 0.00 0.14 ind:pre:1s;ind:pre:3s; +enfouraillé enfouraillé adj m s 0.02 0.47 0.02 0.34 +enfouraillée enfouraillé adj f s 0.02 0.47 0.00 0.07 +enfouraillés enfouraillé adj m p 0.02 0.47 0.00 0.07 +enfourcha enfourcher ver 0.60 6.49 0.01 1.89 ind:pas:3s; +enfourchai enfourcher ver 0.60 6.49 0.00 0.27 ind:pas:1s; +enfourchaient enfourcher ver 0.60 6.49 0.00 0.07 ind:imp:3p; +enfourchais enfourcher ver 0.60 6.49 0.01 0.20 ind:imp:1s;ind:imp:2s; +enfourchait enfourcher ver 0.60 6.49 0.00 0.54 ind:imp:3s; +enfourchant enfourcher ver 0.60 6.49 0.01 0.27 par:pre; +enfourche enfourcher ver 0.60 6.49 0.23 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfourchement enfourchement nom m s 0.00 0.07 0.00 0.07 +enfourcher enfourcher ver 0.60 6.49 0.21 1.01 inf; +enfourcherait enfourcher ver 0.60 6.49 0.00 0.07 cnd:pre:3s; +enfourchez enfourcher ver 0.60 6.49 0.07 0.00 imp:pre:2p;ind:pre:2p; +enfourchiez enfourcher ver 0.60 6.49 0.00 0.07 ind:imp:2p; +enfourchèrent enfourcher ver 0.60 6.49 0.00 0.34 ind:pas:3p; +enfourché enfourcher ver m s 0.60 6.49 0.06 1.01 par:pas; +enfourchure enfourchure nom f s 0.10 0.07 0.10 0.07 +enfourna enfourner ver 0.47 4.93 0.01 0.47 ind:pas:3s; +enfournage enfournage nom m s 0.00 0.07 0.00 0.07 +enfournaient enfourner ver 0.47 4.93 0.00 0.07 ind:imp:3p; +enfournait enfourner ver 0.47 4.93 0.00 0.20 ind:imp:3s; +enfournant enfourner ver 0.47 4.93 0.00 0.27 par:pre; +enfourne enfourner ver 0.47 4.93 0.19 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enfournent enfourner ver 0.47 4.93 0.01 0.14 ind:pre:3p; +enfourner enfourner ver 0.47 4.93 0.24 1.08 inf; +enfourniez enfourner ver 0.47 4.93 0.00 0.07 ind:imp:2p; +enfournèrent enfourner ver 0.47 4.93 0.00 0.07 ind:pas:3p; +enfourné enfourner ver m s 0.47 4.93 0.02 0.74 par:pas; +enfournée enfourner ver f s 0.47 4.93 0.00 0.20 par:pas; +enfournées enfourner ver f p 0.47 4.93 0.00 0.07 par:pas; +enfournés enfourner ver m p 0.47 4.93 0.00 0.41 par:pas; +enfreignaient enfreindre ver 6.67 1.96 0.10 0.07 ind:imp:3p; +enfreignais enfreindre ver 6.67 1.96 0.05 0.00 ind:imp:1s;ind:imp:2s; +enfreignait enfreindre ver 6.67 1.96 0.09 0.20 ind:imp:3s; +enfreignant enfreindre ver 6.67 1.96 0.02 0.00 par:pre; +enfreignent enfreindre ver 6.67 1.96 0.16 0.00 ind:pre:3p; +enfreignez enfreindre ver 6.67 1.96 0.19 0.00 ind:pre:2p; +enfreindra enfreindre ver 6.67 1.96 0.07 0.00 ind:fut:3s; +enfreindrai enfreindre ver 6.67 1.96 0.03 0.00 ind:fut:1s; +enfreindrais enfreindre ver 6.67 1.96 0.02 0.00 cnd:pre:1s; +enfreindre enfreindre ver 6.67 1.96 1.86 1.15 inf; +enfreins enfreindre ver 6.67 1.96 0.47 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +enfreint enfreindre ver m s 6.67 1.96 3.33 0.54 ind:pre:3s;par:pas; +enfreinte enfreindre ver f s 6.67 1.96 0.19 0.00 par:pas; +enfreintes enfreindre ver f p 6.67 1.96 0.10 0.00 par:pas; +enfui enfuir ver m s 65.13 37.57 14.79 3.78 par:pas; +enfuie enfuir ver f s 65.13 37.57 8.71 3.38 par:pas;sub:pre:3s; +enfuient enfuir ver 65.13 37.57 2.74 1.01 ind:pre:3p; +enfuies enfuir ver f p 65.13 37.57 0.65 0.68 par:pas;sub:pre:2s; +enfuir enfuir ver 65.13 37.57 20.81 11.69 inf; +enfuira enfuir ver 65.13 37.57 0.56 0.14 ind:fut:3s; +enfuirai enfuir ver 65.13 37.57 0.54 0.20 ind:fut:1s; +enfuiraient enfuir ver 65.13 37.57 0.10 0.14 cnd:pre:3p; +enfuirais enfuir ver 65.13 37.57 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +enfuirait enfuir ver 65.13 37.57 0.30 0.20 cnd:pre:3s; +enfuiras enfuir ver 65.13 37.57 0.07 0.00 ind:fut:2s; +enfuirent enfuir ver 65.13 37.57 0.41 0.81 ind:pas:3p; +enfuiront enfuir ver 65.13 37.57 0.07 0.00 ind:fut:3p; +enfuis enfuir ver m p 65.13 37.57 6.83 3.04 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +enfuit enfuir ver 65.13 37.57 6.31 7.97 ind:pre:3s;ind:pas:3s; +enfuma enfumer ver 0.39 1.76 0.00 0.07 ind:pas:3s; +enfumaient enfumer ver 0.39 1.76 0.00 0.07 ind:imp:3p; +enfumait enfumer ver 0.39 1.76 0.01 0.20 ind:imp:3s; +enfumer enfumer ver 0.39 1.76 0.20 0.20 inf; +enfumez enfumer ver 0.39 1.76 0.03 0.00 imp:pre:2p; +enfumé enfumé adj m s 0.35 2.97 0.13 0.54 +enfumée enfumé adj f s 0.35 2.97 0.07 1.22 +enfumées enfumé adj f p 0.35 2.97 0.14 0.54 +enfumés enfumé adj m p 0.35 2.97 0.01 0.68 +enfuyaient enfuir ver 65.13 37.57 0.09 1.22 ind:imp:3p; +enfuyais enfuir ver 65.13 37.57 0.43 0.47 ind:imp:1s;ind:imp:2s; +enfuyait enfuir ver 65.13 37.57 0.67 2.03 ind:imp:3s; +enfuyant enfuir ver 65.13 37.57 0.30 0.68 par:pre; +enfuyez enfuir ver 65.13 37.57 0.41 0.00 imp:pre:2p;ind:pre:2p; +enfuyiez enfuir ver 65.13 37.57 0.06 0.00 ind:imp:2p; +enfuyons enfuir ver 65.13 37.57 0.19 0.00 imp:pre:1p;ind:pre:1p; +engage engager ver 68.19 94.59 10.49 10.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engagea engager ver 68.19 94.59 0.50 11.08 ind:pas:3s; +engageable engageable nom s 0.01 0.00 0.01 0.00 +engageai engager ver 68.19 94.59 0.01 1.01 ind:pas:1s; +engageaient engager ver 68.19 94.59 0.40 1.76 ind:imp:3p; +engageais engager ver 68.19 94.59 0.12 0.74 ind:imp:1s;ind:imp:2s; +engageait engager ver 68.19 94.59 0.47 6.89 ind:imp:3s; +engageant engager ver 68.19 94.59 0.52 2.30 par:pre; +engageante engageant adj f s 0.26 3.72 0.05 1.08 +engageantes engageant adj f p 0.26 3.72 0.00 0.20 +engageants engageant adj m p 0.26 3.72 0.00 0.20 +engagement engagement nom m s 12.12 18.45 9.46 11.69 +engagements engagement nom m p 12.12 18.45 2.66 6.76 +engagent engager ver 68.19 94.59 0.77 3.31 ind:pre:3p;sub:pre:3p; +engageâmes engager ver 68.19 94.59 0.00 0.34 ind:pas:1p; +engageons engager ver 68.19 94.59 2.55 0.41 imp:pre:1p;ind:pre:1p; +engageât engager ver 68.19 94.59 0.00 0.54 sub:imp:3s; +engager engager ver 68.19 94.59 18.97 21.35 ind:pre:2p;inf; +engagera engager ver 68.19 94.59 0.54 0.34 ind:fut:3s; +engagerai engager ver 68.19 94.59 0.55 0.07 ind:fut:1s; +engageraient engager ver 68.19 94.59 0.17 0.61 cnd:pre:3p; +engagerais engager ver 68.19 94.59 0.22 0.20 cnd:pre:1s;cnd:pre:2s; +engagerait engager ver 68.19 94.59 0.23 0.54 cnd:pre:3s; +engageriez engager ver 68.19 94.59 0.04 0.07 cnd:pre:2p; +engagerions engager ver 68.19 94.59 0.00 0.07 cnd:pre:1p; +engagerons engager ver 68.19 94.59 0.08 0.14 ind:fut:1p; +engageront engager ver 68.19 94.59 0.11 0.07 ind:fut:3p; +engages engager ver 68.19 94.59 1.22 0.14 ind:pre:2s;sub:pre:2s; +engagez engager ver 68.19 94.59 2.04 0.54 imp:pre:2p;ind:pre:2p; +engagiez engager ver 68.19 94.59 0.07 0.07 ind:imp:2p; +engagions engager ver 68.19 94.59 0.14 0.41 ind:imp:1p; +engagèrent engager ver 68.19 94.59 0.06 2.30 ind:pas:3p; +engagé engager ver m s 68.19 94.59 21.09 14.53 par:pas; +engagée engager ver f s 68.19 94.59 4.44 7.03 par:pas; +engagées engager ver f p 68.19 94.59 0.22 3.38 par:pas; +engagés engager ver m p 68.19 94.59 2.17 4.39 par:pas; +engazonnée engazonner ver f s 0.00 0.14 0.00 0.14 par:pas; +engeance engeance nom f s 0.72 3.11 0.63 3.04 +engeances engeance nom f p 0.72 3.11 0.10 0.07 +engelure engelure nom f s 0.46 0.88 0.02 0.00 +engelures engelure nom f p 0.46 0.88 0.44 0.88 +engendra engendrer ver 7.53 10.47 0.26 0.27 ind:pas:3s; +engendraient engendrer ver 7.53 10.47 0.01 0.47 ind:imp:3p; +engendrait engendrer ver 7.53 10.47 0.34 0.74 ind:imp:3s; +engendrant engendrer ver 7.53 10.47 0.05 0.41 par:pre; +engendrassent engendrer ver 7.53 10.47 0.00 0.07 sub:imp:3p; +engendre engendrer ver 7.53 10.47 1.55 2.09 imp:pre:2s;ind:pre:3s; +engendrement engendrement nom m s 0.01 0.20 0.01 0.20 +engendrent engendrer ver 7.53 10.47 0.33 0.74 ind:pre:3p; +engendrer engendrer ver 7.53 10.47 1.75 1.62 inf; +engendrera engendrer ver 7.53 10.47 0.25 0.07 ind:fut:3s; +engendreraient engendrer ver 7.53 10.47 0.01 0.00 cnd:pre:3p; +engendrerait engendrer ver 7.53 10.47 0.14 0.14 cnd:pre:3s; +engendreuse engendreur adj f s 0.00 0.07 0.00 0.07 +engendrez engendrer ver 7.53 10.47 0.06 0.07 imp:pre:2p;ind:pre:2p; +engendrons engendrer ver 7.53 10.47 0.00 0.07 imp:pre:1p; +engendrèrent engendrer ver 7.53 10.47 0.00 0.07 ind:pas:3p; +engendré engendrer ver m s 7.53 10.47 1.60 2.43 par:pas; +engendrée engendrer ver f s 7.53 10.47 0.87 0.34 par:pas; +engendrées engendrer ver f p 7.53 10.47 0.06 0.34 par:pas; +engendrés engendrer ver m p 7.53 10.47 0.25 0.54 par:pas; +engin engin nom m s 11.25 16.01 9.41 9.80 +engineering engineering nom m s 0.03 0.07 0.03 0.07 +engins engin nom m p 11.25 16.01 1.84 6.22 +englacé englacer ver m s 0.01 0.00 0.01 0.00 par:pas; +englande englander ver 0.01 0.27 0.00 0.07 ind:pre:1s; +englander englander ver 0.01 0.27 0.01 0.14 inf; +englandés englander ver m p 0.01 0.27 0.00 0.07 par:pas; +engliche engliche nom s 0.01 0.07 0.01 0.07 +engloba englober ver 0.78 4.53 0.01 0.07 ind:pas:3s; +englobaient englober ver 0.78 4.53 0.00 0.27 ind:imp:3p; +englobais englober ver 0.78 4.53 0.00 0.07 ind:imp:1s; +englobait englober ver 0.78 4.53 0.02 1.01 ind:imp:3s; +englobant englober ver 0.78 4.53 0.01 0.74 par:pre; +englobe englober ver 0.78 4.53 0.46 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +englobent englober ver 0.78 4.53 0.02 0.14 ind:pre:3p; +englober englober ver 0.78 4.53 0.06 0.68 inf; +englobera englober ver 0.78 4.53 0.01 0.07 ind:fut:3s; +engloberaient englober ver 0.78 4.53 0.00 0.07 cnd:pre:3p; +engloberait englober ver 0.78 4.53 0.01 0.00 cnd:pre:3s; +englobé englober ver m s 0.78 4.53 0.03 0.14 par:pas; +englobée englober ver f s 0.78 4.53 0.02 0.07 par:pas; +englobées englober ver f p 0.78 4.53 0.14 0.14 par:pas; +englobés englober ver m p 0.78 4.53 0.00 0.07 par:pas; +englouti engloutir ver m s 4.57 22.30 0.98 4.66 par:pas; +engloutie engloutir ver f s 4.57 22.30 0.60 2.30 par:pas; +englouties engloutir ver f p 4.57 22.30 0.02 1.08 par:pas; +engloutir engloutir ver 4.57 22.30 1.28 4.73 inf; +engloutira engloutir ver 4.57 22.30 0.07 0.14 ind:fut:3s; +engloutiraient engloutir ver 4.57 22.30 0.00 0.07 cnd:pre:3p; +engloutirait engloutir ver 4.57 22.30 0.02 0.14 cnd:pre:3s; +engloutirent engloutir ver 4.57 22.30 0.14 0.07 ind:pas:3p; +engloutirons engloutir ver 4.57 22.30 0.00 0.07 ind:fut:1p; +engloutis engloutir ver m p 4.57 22.30 0.34 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +engloutissaient engloutir ver 4.57 22.30 0.02 0.81 ind:imp:3p; +engloutissais engloutir ver 4.57 22.30 0.01 0.14 ind:imp:1s; +engloutissait engloutir ver 4.57 22.30 0.12 1.35 ind:imp:3s; +engloutissant engloutir ver 4.57 22.30 0.01 0.61 par:pre; +engloutisse engloutir ver 4.57 22.30 0.06 0.20 sub:pre:1s;sub:pre:3s; +engloutissement engloutissement nom m s 0.01 0.54 0.01 0.54 +engloutissent engloutir ver 4.57 22.30 0.06 0.74 ind:pre:3p; +engloutissions engloutir ver 4.57 22.30 0.00 0.07 ind:imp:1p; +engloutit engloutir ver 4.57 22.30 0.83 2.77 ind:pre:3s;ind:pas:3s; +engluaient engluer ver 0.40 5.20 0.00 0.20 ind:imp:3p; +engluait engluer ver 0.40 5.20 0.00 0.54 ind:imp:3s; +engluant engluer ver 0.40 5.20 0.01 0.00 par:pre; +englue engluer ver 0.40 5.20 0.01 0.61 ind:pre:3s; +engluent engluer ver 0.40 5.20 0.00 0.34 ind:pre:3p; +engluer engluer ver 0.40 5.20 0.02 0.74 inf; +englué engluer ver m s 0.40 5.20 0.20 1.01 par:pas; +engluée engluer ver f s 0.40 5.20 0.14 0.61 par:pas; +engluées engluer ver f p 0.40 5.20 0.00 0.61 par:pas; +englués engluer ver m p 0.40 5.20 0.03 0.54 par:pas; +engonce engoncer ver 0.05 4.19 0.02 0.14 ind:pre:3s; +engoncement engoncement nom m s 0.00 0.07 0.00 0.07 +engoncé engoncer ver m s 0.05 4.19 0.03 1.69 par:pas; +engoncée engoncer ver f s 0.05 4.19 0.00 0.74 par:pas; +engoncées engoncer ver f p 0.05 4.19 0.00 0.41 par:pas; +engoncés engoncer ver m p 0.05 4.19 0.00 0.88 par:pas; +engonçaient engoncer ver 0.05 4.19 0.00 0.14 ind:imp:3p; +engonçait engoncer ver 0.05 4.19 0.00 0.14 ind:imp:3s; +engonçant engoncer ver 0.05 4.19 0.00 0.07 par:pre; +engorge engorger ver 0.07 1.15 0.00 0.14 ind:pre:3s; +engorgeaient engorger ver 0.07 1.15 0.00 0.07 ind:imp:3p; +engorgeait engorger ver 0.07 1.15 0.00 0.20 ind:imp:3s; +engorgement engorgement nom m s 0.04 0.27 0.04 0.07 +engorgements engorgement nom m p 0.04 0.27 0.00 0.20 +engorgent engorger ver 0.07 1.15 0.01 0.14 ind:pre:3p; +engorger engorger ver 0.07 1.15 0.01 0.07 inf; +engorgeraient engorger ver 0.07 1.15 0.00 0.07 cnd:pre:3p; +engorgèrent engorger ver 0.07 1.15 0.00 0.07 ind:pas:3p; +engorgé engorgé adj m s 0.07 0.47 0.02 0.14 +engorgée engorgé adj f s 0.07 0.47 0.02 0.00 +engorgées engorgé adj f p 0.07 0.47 0.02 0.20 +engorgés engorgé adj m p 0.07 0.47 0.01 0.14 +engouai engouer ver 0.00 0.47 0.00 0.07 ind:pas:1s; +engouait engouer ver 0.00 0.47 0.00 0.14 ind:imp:3s; +engouement engouement nom m s 0.55 1.55 0.42 1.28 +engouements engouement nom m p 0.55 1.55 0.13 0.27 +engouffra engouffrer ver 0.61 18.58 0.01 2.36 ind:pas:3s; +engouffrai engouffrer ver 0.61 18.58 0.01 0.20 ind:pas:1s; +engouffraient engouffrer ver 0.61 18.58 0.00 1.49 ind:imp:3p; +engouffrait engouffrer ver 0.61 18.58 0.16 3.11 ind:imp:3s; +engouffrant engouffrer ver 0.61 18.58 0.00 1.76 par:pre; +engouffre engouffrer ver 0.61 18.58 0.10 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engouffrement engouffrement nom m s 0.00 0.14 0.00 0.14 +engouffrent engouffrer ver 0.61 18.58 0.03 0.61 ind:pre:3p;sub:pre:3p; +engouffrer engouffrer ver 0.61 18.58 0.09 3.24 inf; +engouffrera engouffrer ver 0.61 18.58 0.14 0.00 ind:fut:3s; +engouffreraient engouffrer ver 0.61 18.58 0.00 0.07 cnd:pre:3p; +engouffrerait engouffrer ver 0.61 18.58 0.00 0.14 cnd:pre:3s; +engouffrons engouffrer ver 0.61 18.58 0.00 0.20 ind:pre:1p; +engouffrât engouffrer ver 0.61 18.58 0.00 0.07 sub:imp:3s; +engouffrèrent engouffrer ver 0.61 18.58 0.00 0.54 ind:pas:3p; +engouffré engouffrer ver m s 0.61 18.58 0.08 0.68 par:pas; +engouffrée engouffrer ver f s 0.61 18.58 0.00 0.61 par:pas; +engouffrées engouffrer ver f p 0.61 18.58 0.00 0.14 par:pas; +engouffrés engouffrer ver m p 0.61 18.58 0.00 0.27 par:pas; +engoulevent engoulevent nom m s 0.10 0.14 0.10 0.14 +engourdi engourdi adj m s 1.34 5.61 0.49 1.89 +engourdie engourdi adj f s 1.34 5.61 0.35 1.55 +engourdies engourdi adj f p 1.34 5.61 0.34 1.01 +engourdir engourdir ver 1.72 10.34 0.33 1.15 inf; +engourdira engourdir ver 1.72 10.34 0.02 0.07 ind:fut:3s; +engourdirai engourdir ver 1.72 10.34 0.00 0.07 ind:fut:1s; +engourdirais engourdir ver 1.72 10.34 0.00 0.07 cnd:pre:1s; +engourdis engourdir ver m p 1.72 10.34 0.17 1.22 ind:pre:1s;ind:pre:2s;par:pas; +engourdissaient engourdir ver 1.72 10.34 0.00 0.27 ind:imp:3p; +engourdissait engourdir ver 1.72 10.34 0.01 2.36 ind:imp:3s; +engourdissant engourdir ver 1.72 10.34 0.00 0.14 par:pre; +engourdissante engourdissant adj f s 0.00 0.34 0.00 0.14 +engourdissantes engourdissant adj f p 0.00 0.34 0.00 0.07 +engourdissement engourdissement nom m s 0.53 5.54 0.44 5.41 +engourdissements engourdissement nom m p 0.53 5.54 0.09 0.14 +engourdissent engourdir ver 1.72 10.34 0.20 0.14 ind:pre:3p; +engourdit engourdir ver 1.72 10.34 0.48 0.81 ind:pre:3s;ind:pas:3s; +engoué engouer ver m s 0.00 0.47 0.00 0.14 par:pas; +engouée engouer ver f s 0.00 0.47 0.00 0.07 par:pas; +engoués engouer ver m p 0.00 0.47 0.00 0.07 par:pas; +engrainait engrainer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +engrais engrais nom m 3.35 3.31 3.35 3.31 +engraissaient engraisser ver 2.65 4.59 0.01 0.14 ind:imp:3p; +engraissait engraisser ver 2.65 4.59 0.00 0.27 ind:imp:3s; +engraissant engraisser ver 2.65 4.59 0.14 0.14 par:pre; +engraisse engraisser ver 2.65 4.59 0.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engraissement engraissement nom m s 0.00 0.07 0.00 0.07 +engraissent engraisser ver 2.65 4.59 0.44 0.27 ind:pre:3p; +engraisser engraisser ver 2.65 4.59 1.12 0.88 inf; +engraisseraient engraisser ver 2.65 4.59 0.01 0.00 cnd:pre:3p; +engraisserait engraisser ver 2.65 4.59 0.01 0.07 cnd:pre:3s; +engraisserons engraisser ver 2.65 4.59 0.00 0.07 ind:fut:1p; +engraisses engraisser ver 2.65 4.59 0.14 0.07 ind:pre:2s; +engraissez engraisser ver 2.65 4.59 0.00 0.07 imp:pre:2p; +engraissèrent engraisser ver 2.65 4.59 0.00 0.14 ind:pas:3p; +engraissé engraisser ver m s 2.65 4.59 0.33 0.88 par:pas; +engraissée engraisser ver f s 2.65 4.59 0.01 0.27 par:pas; +engraissées engraisser ver f p 2.65 4.59 0.00 0.20 par:pas; +engraissés engraisser ver m p 2.65 4.59 0.03 0.07 par:pas; +engrange engranger ver 0.34 1.89 0.06 0.34 ind:pre:1s;ind:pre:3s; +engrangea engranger ver 0.34 1.89 0.00 0.07 ind:pas:3s; +engrangeais engranger ver 0.34 1.89 0.00 0.14 ind:imp:1s; +engrangeait engranger ver 0.34 1.89 0.01 0.20 ind:imp:3s; +engrangeant engranger ver 0.34 1.89 0.00 0.07 par:pre; +engrangement engrangement nom m s 0.00 0.07 0.00 0.07 +engrangent engranger ver 0.34 1.89 0.03 0.14 ind:pre:3p; +engrangeons engranger ver 0.34 1.89 0.00 0.07 imp:pre:1p; +engranger engranger ver 0.34 1.89 0.05 0.20 inf; +engrangé engranger ver m s 0.34 1.89 0.20 0.34 par:pas; +engrangée engranger ver f s 0.34 1.89 0.00 0.07 par:pas; +engrangées engranger ver f p 0.34 1.89 0.00 0.20 par:pas; +engrangés engranger ver m p 0.34 1.89 0.00 0.07 par:pas; +engravement engravement nom m s 0.00 0.07 0.00 0.07 +engraver engraver ver 0.00 0.07 0.00 0.07 inf; +engrenage engrenage nom m s 0.83 4.53 0.68 3.24 +engrenages engrenage nom m p 0.83 4.53 0.16 1.28 +engrenait engrener ver 0.20 0.41 0.10 0.07 ind:imp:3s; +engrenant engrener ver 0.20 0.41 0.00 0.07 par:pre; +engrener engrener ver 0.20 0.41 0.00 0.27 inf; +engrenez engrener ver 0.20 0.41 0.10 0.00 ind:pre:2p; +engrossait engrosser ver 1.74 1.82 0.00 0.14 ind:imp:3s; +engrossant engrosser ver 1.74 1.82 0.01 0.07 par:pre; +engrosse engrosser ver 1.74 1.82 0.04 0.14 ind:pre:1s;ind:pre:3s; +engrossent engrosser ver 1.74 1.82 0.02 0.00 ind:pre:3p; +engrosser engrosser ver 1.74 1.82 0.55 0.68 inf; +engrossera engrosser ver 1.74 1.82 0.00 0.07 ind:fut:3s; +engrosses engrosser ver 1.74 1.82 0.14 0.00 ind:pre:2s; +engrossé engrosser ver m s 1.74 1.82 0.45 0.27 par:pas; +engrossée engrosser ver f s 1.74 1.82 0.33 0.41 par:pas; +engrossées engrosser ver f p 1.74 1.82 0.20 0.07 par:pas; +engueula engueuler ver 13.94 12.97 0.00 0.20 ind:pas:3s; +engueulade engueulade nom f s 0.97 3.51 0.46 2.09 +engueulades engueulade nom f p 0.97 3.51 0.52 1.42 +engueulaient engueuler ver 13.94 12.97 0.17 0.41 ind:imp:3p; +engueulais engueuler ver 13.94 12.97 0.04 0.20 ind:imp:1s;ind:imp:2s; +engueulait engueuler ver 13.94 12.97 0.56 1.08 ind:imp:3s; +engueulant engueuler ver 13.94 12.97 0.03 0.20 par:pre; +engueule engueuler ver 13.94 12.97 2.96 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engueulent engueuler ver 13.94 12.97 0.62 0.47 ind:pre:3p; +engueuler engueuler ver 13.94 12.97 4.23 5.20 inf; +engueulera engueuler ver 13.94 12.97 0.18 0.14 ind:fut:3s; +engueuleraient engueuler ver 13.94 12.97 0.01 0.00 cnd:pre:3p; +engueulerait engueuler ver 13.94 12.97 0.02 0.14 cnd:pre:3s; +engueuleras engueuler ver 13.94 12.97 0.02 0.00 ind:fut:2s; +engueulerez engueuler ver 13.94 12.97 0.02 0.00 ind:fut:2p; +engueuleront engueuler ver 13.94 12.97 0.23 0.07 ind:fut:3p; +engueules engueuler ver 13.94 12.97 0.45 0.14 ind:pre:2s; +engueulez engueuler ver 13.94 12.97 0.44 0.07 imp:pre:2p;ind:pre:2p; +engueuliez engueuler ver 13.94 12.97 0.02 0.00 ind:imp:2p; +engueulions engueuler ver 13.94 12.97 0.00 0.14 ind:imp:1p; +engueulons engueuler ver 13.94 12.97 0.01 0.14 ind:pre:1p; +engueulèrent engueuler ver 13.94 12.97 0.00 0.07 ind:pas:3p; +engueulé engueuler ver m s 13.94 12.97 1.92 1.22 par:pas; +engueulée engueuler ver f s 13.94 12.97 0.77 0.14 par:pas; +engueulés engueuler ver m p 13.94 12.97 1.23 0.81 par:pas; +enguirlandaient enguirlander ver 0.16 1.28 0.00 0.14 ind:imp:3p; +enguirlandait enguirlander ver 0.16 1.28 0.00 0.14 ind:imp:3s; +enguirlande enguirlander ver 0.16 1.28 0.02 0.14 ind:pre:1s;ind:pre:3s; +enguirlandent enguirlander ver 0.16 1.28 0.00 0.07 ind:pre:3p; +enguirlander enguirlander ver 0.16 1.28 0.11 0.27 inf; +enguirlandé enguirlander ver m s 0.16 1.28 0.02 0.20 par:pas; +enguirlandée enguirlander ver f s 0.16 1.28 0.01 0.20 par:pas; +enguirlandées enguirlander ver f p 0.16 1.28 0.00 0.07 par:pas; +enguirlandés enguirlandé adj m p 0.01 0.34 0.00 0.14 +enhardi enhardir ver m s 0.19 4.32 0.01 0.54 par:pas; +enhardie enhardir ver f s 0.19 4.32 0.03 0.34 par:pas; +enhardies enhardir ver f p 0.19 4.32 0.01 0.07 par:pas; +enhardir enhardir ver 0.19 4.32 0.00 0.20 inf; +enhardirent enhardir ver 0.19 4.32 0.00 0.07 ind:pas:3p; +enhardis enhardir ver m p 0.19 4.32 0.01 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +enhardissaient enhardir ver 0.19 4.32 0.00 0.27 ind:imp:3p; +enhardissait enhardir ver 0.19 4.32 0.00 0.68 ind:imp:3s; +enhardissant enhardir ver 0.19 4.32 0.00 0.20 par:pre; +enhardissement enhardissement nom m s 0.00 0.07 0.00 0.07 +enhardissent enhardir ver 0.19 4.32 0.11 0.27 ind:pre:3p; +enhardit enhardir ver 0.19 4.32 0.02 0.95 ind:pre:3s;ind:pas:3s; +enivra enivrer ver 3.06 8.58 0.02 0.27 ind:pas:3s; +enivrai enivrer ver 3.06 8.58 0.00 0.07 ind:pas:1s; +enivraient enivrer ver 3.06 8.58 0.00 0.34 ind:imp:3p; +enivrais enivrer ver 3.06 8.58 0.14 0.14 ind:imp:1s; +enivrait enivrer ver 3.06 8.58 0.01 1.35 ind:imp:3s; +enivrant enivrant adj m s 1.20 3.38 0.80 1.08 +enivrante enivrant adj f s 1.20 3.38 0.35 1.08 +enivrantes enivrant adj f p 1.20 3.38 0.02 0.81 +enivrants enivrant adj m p 1.20 3.38 0.02 0.41 +enivre enivrer ver 3.06 8.58 0.90 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enivrement enivrement nom m s 0.02 0.68 0.02 0.68 +enivrent enivrer ver 3.06 8.58 0.04 0.41 ind:pre:3p; +enivrer enivrer ver 3.06 8.58 0.91 0.88 inf; +enivreras enivrer ver 3.06 8.58 0.00 0.07 ind:fut:2s; +enivrerez enivrer ver 3.06 8.58 0.00 0.07 ind:fut:2p; +enivres enivrer ver 3.06 8.58 0.14 0.07 ind:pre:2s; +enivrez enivrer ver 3.06 8.58 0.14 0.00 imp:pre:2p;ind:pre:2p; +enivrons enivrer ver 3.06 8.58 0.01 0.00 imp:pre:1p; +enivrèrent enivrer ver 3.06 8.58 0.00 0.07 ind:pas:3p; +enivré enivrer ver m s 3.06 8.58 0.47 1.35 par:pas; +enivrée enivrer ver f s 3.06 8.58 0.21 0.68 par:pas; +enivrées enivrer ver f p 3.06 8.58 0.00 0.07 par:pas; +enivrés enivrer ver m p 3.06 8.58 0.02 0.54 par:pas; +enjôlait enjôler ver 1.07 0.20 0.00 0.07 ind:imp:3s; +enjôlant enjôler ver 1.07 0.20 0.00 0.07 par:pre; +enjôle enjôler ver 1.07 0.20 0.10 0.00 imp:pre:2s; +enjôlement enjôlement nom m s 0.00 0.07 0.00 0.07 +enjôler enjôler ver 1.07 0.20 0.78 0.07 inf; +enjôleur enjôleur adj m s 0.19 1.76 0.17 0.95 +enjôleurs enjôleur nom m p 0.19 0.20 0.01 0.00 +enjôleuse enjôleur nom f s 0.19 0.20 0.02 0.07 +enjôleuses enjôleur adj f p 0.19 1.76 0.00 0.07 +enjôlé enjôler ver m s 1.07 0.20 0.04 0.00 par:pas; +enjôlée enjôler ver f s 1.07 0.20 0.14 0.00 par:pas; +enjamba enjamber ver 0.86 14.80 0.00 2.16 ind:pas:3s; +enjambai enjamber ver 0.86 14.80 0.00 0.27 ind:pas:1s; +enjambaient enjamber ver 0.86 14.80 0.00 0.47 ind:imp:3p; +enjambais enjamber ver 0.86 14.80 0.00 0.07 ind:imp:1s; +enjambait enjamber ver 0.86 14.80 0.02 1.55 ind:imp:3s; +enjambant enjamber ver 0.86 14.80 0.02 1.42 par:pre; +enjambe enjamber ver 0.86 14.80 0.09 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enjambements enjambement nom m p 0.00 0.07 0.00 0.07 +enjambent enjamber ver 0.86 14.80 0.01 0.61 ind:pre:3p; +enjamber enjamber ver 0.86 14.80 0.42 2.84 inf; +enjamberais enjamber ver 0.86 14.80 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +enjamberait enjamber ver 0.86 14.80 0.00 0.07 cnd:pre:3s; +enjambes enjamber ver 0.86 14.80 0.01 0.07 ind:pre:2s; +enjambeur enjambeur nom m s 0.00 0.34 0.00 0.20 +enjambeurs enjambeur nom m p 0.00 0.34 0.00 0.14 +enjambez enjamber ver 0.86 14.80 0.05 0.00 imp:pre:2p; +enjambions enjamber ver 0.86 14.80 0.00 0.07 ind:imp:1p; +enjambons enjamber ver 0.86 14.80 0.01 0.47 imp:pre:1p;ind:pre:1p; +enjambèrent enjamber ver 0.86 14.80 0.00 0.34 ind:pas:3p; +enjambé enjamber ver m s 0.86 14.80 0.07 1.08 par:pas; +enjambée enjambée nom f s 0.15 6.76 0.06 0.81 +enjambées enjambée nom f p 0.15 6.76 0.09 5.95 +enjambés enjamber ver m p 0.86 14.80 0.00 0.07 par:pas; +enjeu enjeu nom m s 4.67 4.59 3.52 3.99 +enjeux enjeu nom m p 4.67 4.59 1.16 0.61 +enjoignaient enjoindre ver 0.36 3.38 0.00 0.07 ind:imp:3p; +enjoignait enjoindre ver 0.36 3.38 0.00 0.34 ind:imp:3s; +enjoignant enjoindre ver 0.36 3.38 0.01 0.41 par:pre; +enjoignis enjoindre ver 0.36 3.38 0.00 0.20 ind:pas:1s; +enjoignit enjoindre ver 0.36 3.38 0.10 0.95 ind:pas:3s; +enjoignons enjoindre ver 0.36 3.38 0.00 0.07 ind:pre:1p; +enjoindre enjoindre ver 0.36 3.38 0.07 0.34 inf; +enjoint enjoindre ver m s 0.36 3.38 0.18 1.01 ind:pre:3s;par:pas; +enjolivaient enjoliver ver 0.34 1.82 0.00 0.07 ind:imp:3p; +enjolivait enjoliver ver 0.34 1.82 0.03 0.20 ind:imp:3s; +enjolivant enjoliver ver 0.34 1.82 0.00 0.47 par:pre; +enjolive enjoliver ver 0.34 1.82 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enjolivements enjolivement nom m p 0.00 0.07 0.00 0.07 +enjoliver enjoliver ver 0.34 1.82 0.08 0.47 inf; +enjoliveur enjoliveur nom m s 0.59 0.20 0.33 0.14 +enjoliveurs enjoliveur nom m p 0.59 0.20 0.26 0.07 +enjolivé enjoliver ver m s 0.34 1.82 0.07 0.07 par:pas; +enjolivée enjoliver ver f s 0.34 1.82 0.00 0.14 par:pas; +enjolivés enjoliver ver m p 0.34 1.82 0.00 0.14 par:pas; +enjouement enjouement nom m s 0.14 1.35 0.14 1.35 +enjoué enjoué adj m s 1.33 4.39 0.25 1.55 +enjouée enjoué adj f s 1.33 4.39 1.03 2.43 +enjouées enjoué adj f p 1.33 4.39 0.01 0.27 +enjoués enjouer ver m p 0.32 0.81 0.14 0.00 par:pas; +enjuiver enjuiver ver 0.01 0.00 0.01 0.00 inf; +enjuivés enjuivé adj m p 0.00 0.07 0.00 0.07 +enjuponne enjuponner ver 0.00 0.14 0.00 0.07 ind:pre:3s; +enjuponnée enjuponner ver f s 0.00 0.14 0.00 0.07 par:pas; +enkyster enkyster ver 0.01 0.00 0.01 0.00 inf; +enkystées enkysté adj f p 0.00 0.07 0.00 0.07 +enlace enlacer ver 4.42 15.88 0.89 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enlacement enlacement nom m s 0.03 0.81 0.03 0.41 +enlacements enlacement nom m p 0.03 0.81 0.00 0.41 +enlacent enlacer ver 4.42 15.88 0.17 0.61 ind:pre:3p; +enlacer enlacer ver 4.42 15.88 0.97 0.81 inf; +enlacerai enlacer ver 4.42 15.88 0.05 0.00 ind:fut:1s; +enlacerons enlacer ver 4.42 15.88 0.00 0.07 ind:fut:1p; +enlacez enlacer ver 4.42 15.88 0.13 0.00 imp:pre:2p;ind:pre:2p; +enlacions enlacer ver 4.42 15.88 0.00 0.07 ind:imp:1p; +enlacèrent enlacer ver 4.42 15.88 0.10 0.14 ind:pas:3p; +enlacé enlacer ver m s 4.42 15.88 0.31 1.42 par:pas; +enlacée enlacer ver f s 4.42 15.88 0.25 0.74 par:pas; +enlacées enlacer ver f p 4.42 15.88 0.07 1.28 par:pas; +enlacés enlacer ver m p 4.42 15.88 0.89 4.39 par:pas; +enlaidi enlaidir ver m s 0.76 2.30 0.29 0.34 par:pas; +enlaidie enlaidir ver f s 0.76 2.30 0.02 0.27 par:pas; +enlaidir enlaidir ver 0.76 2.30 0.11 0.47 inf; +enlaidis enlaidir ver 0.76 2.30 0.14 0.14 imp:pre:2s;ind:pre:1s; +enlaidissait enlaidir ver 0.76 2.30 0.02 0.47 ind:imp:3s; +enlaidissant enlaidir ver 0.76 2.30 0.00 0.07 par:pre; +enlaidisse enlaidir ver 0.76 2.30 0.01 0.07 sub:pre:3s; +enlaidissement enlaidissement nom m s 0.01 0.27 0.01 0.27 +enlaidissent enlaidir ver 0.76 2.30 0.02 0.20 ind:pre:3p; +enlaidisses enlaidir ver 0.76 2.30 0.14 0.00 sub:pre:2s; +enlaidit enlaidir ver 0.76 2.30 0.02 0.27 ind:pre:3s;ind:pas:3s; +enlaça enlacer ver 4.42 15.88 0.13 1.28 ind:pas:3s; +enlaçaient enlacer ver 4.42 15.88 0.10 0.61 ind:imp:3p; +enlaçais enlacer ver 4.42 15.88 0.05 0.07 ind:imp:1s;ind:imp:2s; +enlaçait enlacer ver 4.42 15.88 0.16 1.28 ind:imp:3s; +enlaçant enlacer ver 4.42 15.88 0.14 0.88 par:pre; +enlaçons enlacer ver 4.42 15.88 0.03 0.07 ind:pre:1p; +enleva enlever ver 172.45 78.78 0.22 7.03 ind:pas:3s; +enlevai enlever ver 172.45 78.78 0.03 0.47 ind:pas:1s; +enlevaient enlever ver 172.45 78.78 0.19 1.15 ind:imp:3p; +enlevais enlever ver 172.45 78.78 0.55 0.88 ind:imp:1s;ind:imp:2s; +enlevait enlever ver 172.45 78.78 1.33 5.74 ind:imp:3s; +enlevant enlever ver 172.45 78.78 1.13 3.04 par:pre; +enlever enlever ver 172.45 78.78 46.73 22.36 inf; +enlevez enlever ver 172.45 78.78 20.44 2.23 imp:pre:2p;ind:pre:2p; +enleviez enlever ver 172.45 78.78 0.41 0.14 ind:imp:2p; +enlevions enlever ver 172.45 78.78 0.17 0.07 ind:imp:1p; +enlevons enlever ver 172.45 78.78 1.24 0.00 imp:pre:1p;ind:pre:1p; +enlevât enlever ver 172.45 78.78 0.00 0.41 sub:imp:3s; +enlevèrent enlever ver 172.45 78.78 0.04 0.14 ind:pas:3p; +enlevé enlever ver m s 172.45 78.78 20.88 10.95 par:pas; +enlevée enlever ver f s 172.45 78.78 9.68 4.12 par:pas; +enlevées enlever ver f p 172.45 78.78 1.27 0.68 par:pas; +enlevés enlever ver m p 172.45 78.78 2.35 1.35 par:pas; +enliasser enliasser ver 0.00 0.07 0.00 0.07 inf; +enlisa enliser ver 0.93 5.88 0.00 0.14 ind:pas:3s; +enlisaient enliser ver 0.93 5.88 0.00 0.34 ind:imp:3p; +enlisais enliser ver 0.93 5.88 0.00 0.20 ind:imp:1s; +enlisait enliser ver 0.93 5.88 0.01 1.35 ind:imp:3s; +enlisant enliser ver 0.93 5.88 0.00 0.20 par:pre; +enlise enliser ver 0.93 5.88 0.28 0.68 ind:pre:1s;ind:pre:3s; +enlisement enlisement nom m s 0.00 0.74 0.00 0.74 +enlisent enliser ver 0.93 5.88 0.03 0.20 ind:pre:3p; +enliser enliser ver 0.93 5.88 0.21 0.74 inf; +enlisera enliser ver 0.93 5.88 0.00 0.07 ind:fut:3s; +enliserais enliser ver 0.93 5.88 0.01 0.00 cnd:pre:2s; +enlisé enliser ver m s 0.93 5.88 0.23 0.81 par:pas; +enlisée enliser ver f s 0.93 5.88 0.01 0.54 par:pas; +enlisées enliser ver f p 0.93 5.88 0.01 0.14 par:pas; +enlisés enliser ver m p 0.93 5.88 0.14 0.47 par:pas; +enlève enlever ver 172.45 78.78 55.59 13.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enlèvement enlèvement nom m s 9.51 3.85 7.80 3.58 +enlèvements enlèvement nom m p 9.51 3.85 1.71 0.27 +enlèvent enlever ver 172.45 78.78 1.96 1.55 ind:pre:3p; +enlèvera enlever ver 172.45 78.78 1.62 1.01 ind:fut:3s; +enlèverai enlever ver 172.45 78.78 1.19 0.27 ind:fut:1s; +enlèveraient enlever ver 172.45 78.78 0.04 0.14 cnd:pre:3p; +enlèverais enlever ver 172.45 78.78 0.36 0.14 cnd:pre:1s;cnd:pre:2s; +enlèverait enlever ver 172.45 78.78 0.40 0.47 cnd:pre:3s; +enlèveras enlever ver 172.45 78.78 0.28 0.00 ind:fut:2s; +enlèverez enlever ver 172.45 78.78 0.46 0.07 ind:fut:2p; +enlèveriez enlever ver 172.45 78.78 0.04 0.00 cnd:pre:2p; +enlèverons enlever ver 172.45 78.78 0.05 0.07 ind:fut:1p; +enlèveront enlever ver 172.45 78.78 0.15 0.07 ind:fut:3p; +enlèves enlever ver 172.45 78.78 3.66 0.61 ind:pre:2s;sub:pre:2s; +enlumine enluminer ver 0.03 1.15 0.00 0.07 ind:pre:3s; +enluminent enluminer ver 0.03 1.15 0.00 0.07 ind:pre:3p; +enluminer enluminer ver 0.03 1.15 0.00 0.07 inf; +enlumineur enlumineur nom m s 0.40 0.20 0.27 0.20 +enlumineurs enlumineur nom m p 0.40 0.20 0.14 0.00 +enluminé enluminer ver m s 0.03 1.15 0.02 0.34 par:pas; +enluminée enluminé adj f s 0.03 0.47 0.01 0.07 +enluminées enluminer ver f p 0.03 1.15 0.01 0.20 par:pas; +enluminure enluminure nom f s 0.11 1.08 0.00 0.27 +enluminures enluminure nom f p 0.11 1.08 0.11 0.81 +enluminés enluminé adj m p 0.03 0.47 0.00 0.14 +enneige enneiger ver 0.51 1.28 0.00 0.07 ind:pre:3s; +enneigeait enneiger ver 0.51 1.28 0.01 0.07 ind:imp:3s; +enneigement enneigement nom m s 0.10 0.00 0.10 0.00 +enneiger enneiger ver 0.51 1.28 0.01 0.00 inf; +enneigé enneigé adj m s 0.58 2.50 0.20 0.54 +enneigée enneigé adj f s 0.58 2.50 0.10 0.88 +enneigées enneigé adj f p 0.58 2.50 0.05 0.68 +enneigés enneigé adj m p 0.58 2.50 0.24 0.41 +ennemi ennemi nom m s 92.37 111.96 59.98 79.19 +ennemie ennemi nom f s 92.37 111.96 2.56 3.04 +ennemies ennemi adj f p 14.56 19.05 2.19 4.53 +ennemis ennemi nom m p 92.37 111.96 29.22 29.19 +ennobli ennoblir ver m s 0.15 1.22 0.01 0.20 par:pas; +ennoblie ennoblir ver f s 0.15 1.22 0.00 0.07 par:pas; +ennoblir ennoblir ver 0.15 1.22 0.01 0.34 inf; +ennoblis ennoblir ver m p 0.15 1.22 0.10 0.27 ind:pre:2s;par:pas; +ennoblissement ennoblissement nom m s 0.00 0.07 0.00 0.07 +ennoblit ennoblir ver 0.15 1.22 0.03 0.34 ind:pre:3s;ind:pas:3s; +ennuagent ennuager ver 0.03 0.20 0.01 0.00 ind:pre:3p; +ennuager ennuager ver 0.03 0.20 0.00 0.14 inf; +ennuagé ennuager ver m s 0.03 0.20 0.02 0.07 par:pas; +ennui ennui nom m s 76.64 56.62 14.76 38.24 +ennuie ennuyer ver 62.48 59.12 34.04 20.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +ennuient ennuyer ver 62.48 59.12 2.97 2.97 ind:pre:3p; +ennuiera ennuyer ver 62.48 59.12 0.66 0.07 ind:fut:3s; +ennuierai ennuyer ver 62.48 59.12 0.65 0.34 ind:fut:1s; +ennuieraient ennuyer ver 62.48 59.12 0.03 0.00 cnd:pre:3p; +ennuierais ennuyer ver 62.48 59.12 0.47 0.34 cnd:pre:1s;cnd:pre:2s; +ennuierait ennuyer ver 62.48 59.12 2.86 1.76 cnd:pre:3s; +ennuieras ennuyer ver 62.48 59.12 0.52 0.07 ind:fut:2s; +ennuierez ennuyer ver 62.48 59.12 0.06 0.00 ind:fut:2p; +ennuieriez ennuyer ver 62.48 59.12 0.04 0.00 cnd:pre:2p; +ennuierions ennuyer ver 62.48 59.12 0.00 0.07 cnd:pre:1p; +ennuierons ennuyer ver 62.48 59.12 0.14 0.00 ind:fut:1p; +ennuieront ennuyer ver 62.48 59.12 0.11 0.00 ind:fut:3p; +ennuies ennuyer ver 62.48 59.12 3.94 1.35 ind:pre:2s;sub:pre:2s; +ennuis ennui nom m p 76.64 56.62 61.89 18.38 +ennuya ennuyer ver 62.48 59.12 0.00 0.68 ind:pas:3s; +ennuyai ennuyer ver 62.48 59.12 0.00 0.14 ind:pas:1s; +ennuyaient ennuyer ver 62.48 59.12 0.38 2.43 ind:imp:3p; +ennuyais ennuyer ver 62.48 59.12 2.07 3.04 ind:imp:1s;ind:imp:2s; +ennuyait ennuyer ver 62.48 59.12 1.42 9.46 ind:imp:3s; +ennuyant ennuyant adj m s 0.94 0.07 0.79 0.07 +ennuyante ennuyant adj f s 0.94 0.07 0.15 0.00 +ennuyer ennuyer ver 62.48 59.12 7.00 9.12 inf; +ennuyeuse ennuyeux adj f s 19.47 13.31 3.02 2.77 +ennuyeuses ennuyeux adj f p 19.47 13.31 0.83 1.08 +ennuyeux ennuyeux adj m 19.47 13.31 15.62 9.46 +ennuyez ennuyer ver 62.48 59.12 1.55 1.22 imp:pre:2p;ind:pre:2p; +ennuyiez ennuyer ver 62.48 59.12 0.20 0.20 ind:imp:2p; +ennuyions ennuyer ver 62.48 59.12 0.01 0.20 ind:imp:1p; +ennuyons ennuyer ver 62.48 59.12 0.24 0.20 imp:pre:1p;ind:pre:1p; +ennuyât ennuyer ver 62.48 59.12 0.00 0.34 sub:imp:3s; +ennuyèrent ennuyer ver 62.48 59.12 0.00 0.41 ind:pas:3p; +ennuyé ennuyer ver m s 62.48 59.12 1.26 2.23 par:pas; +ennuyée ennuyer ver f s 62.48 59.12 1.54 1.35 par:pas; +ennuyées ennuyer ver f p 62.48 59.12 0.01 0.00 par:pas; +ennuyés ennuyer ver m p 62.48 59.12 0.14 0.14 par:pas; +enorgueillît enorgueillir ver 0.32 2.09 0.00 0.07 sub:imp:3s; +enorgueilli enorgueillir ver m s 0.32 2.09 0.01 0.00 par:pas; +enorgueillir enorgueillir ver 0.32 2.09 0.12 0.61 inf; +enorgueillirent enorgueillir ver 0.32 2.09 0.00 0.07 ind:pas:3p; +enorgueillis enorgueillir ver 0.32 2.09 0.01 0.00 ind:pre:1s; +enorgueillissais enorgueillir ver 0.32 2.09 0.00 0.27 ind:imp:1s; +enorgueillissait enorgueillir ver 0.32 2.09 0.01 0.20 ind:imp:3s; +enorgueillissant enorgueillir ver 0.32 2.09 0.00 0.07 par:pre; +enorgueillisse enorgueillir ver 0.32 2.09 0.00 0.07 sub:pre:1s; +enorgueillissent enorgueillir ver 0.32 2.09 0.14 0.20 ind:pre:3p; +enorgueillit enorgueillir ver 0.32 2.09 0.03 0.54 ind:pre:3s;ind:pas:3s; +enquerraient enquérir ver 1.01 8.85 0.00 0.07 cnd:pre:3p; +enquiers enquérir ver 1.01 8.85 0.02 0.14 imp:pre:2s;ind:pre:1s; +enquiert enquérir ver 1.01 8.85 0.05 1.35 ind:pre:3s; +enquillais enquiller ver 0.00 2.84 0.00 0.07 ind:imp:1s; +enquillait enquiller ver 0.00 2.84 0.00 0.07 ind:imp:3s; +enquillant enquiller ver 0.00 2.84 0.00 0.20 par:pre; +enquille enquiller ver 0.00 2.84 0.00 1.01 ind:pre:1s;ind:pre:3s; +enquillent enquiller ver 0.00 2.84 0.00 0.14 ind:pre:3p; +enquiller enquiller ver 0.00 2.84 0.00 0.74 inf; +enquillons enquiller ver 0.00 2.84 0.00 0.07 ind:pre:1p; +enquillé enquiller ver m s 0.00 2.84 0.00 0.47 par:pas; +enquillés enquiller ver m p 0.00 2.84 0.00 0.07 par:pas; +enquiquinaient enquiquiner ver 0.64 1.15 0.00 0.07 ind:imp:3p; +enquiquinait enquiquiner ver 0.64 1.15 0.02 0.07 ind:imp:3s; +enquiquinant enquiquinant adj m s 0.38 0.07 0.01 0.07 +enquiquinante enquiquinant adj f s 0.38 0.07 0.21 0.00 +enquiquinants enquiquinant adj m p 0.38 0.07 0.16 0.00 +enquiquine enquiquiner ver 0.64 1.15 0.20 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enquiquinement enquiquinement nom m s 0.01 0.00 0.01 0.00 +enquiquinent enquiquiner ver 0.64 1.15 0.02 0.14 ind:pre:3p; +enquiquiner enquiquiner ver 0.64 1.15 0.12 0.41 inf; +enquiquineraient enquiquiner ver 0.64 1.15 0.01 0.00 cnd:pre:3p; +enquiquines enquiquiner ver 0.64 1.15 0.23 0.00 ind:pre:2s; +enquiquineur enquiquineur nom m s 0.33 0.20 0.17 0.14 +enquiquineurs enquiquineur nom m p 0.33 0.20 0.07 0.00 +enquiquineuse enquiquineur nom f s 0.33 0.20 0.08 0.07 +enquiquiné enquiquiner ver m s 0.64 1.15 0.03 0.14 par:pas; +enquis enquérir ver m 1.01 8.85 0.06 0.88 ind:pas:1s;par:pas;par:pas; +enquise enquérir ver f s 1.01 8.85 0.01 0.20 par:pas; +enquit enquérir ver 1.01 8.85 0.10 3.45 ind:pas:3s; +enquière enquérir ver 1.01 8.85 0.01 0.07 sub:pre:1s;sub:pre:3s; +enquièrent enquérir ver 1.01 8.85 0.00 0.07 ind:pre:3p; +enquéraient enquérir ver 1.01 8.85 0.00 0.41 ind:imp:3p; +enquérais enquérir ver 1.01 8.85 0.02 0.14 ind:imp:1s; +enquérait enquérir ver 1.01 8.85 0.00 0.34 ind:imp:3s; +enquérant enquérir ver 1.01 8.85 0.00 0.41 par:pre; +enquérez enquérir ver 1.01 8.85 0.01 0.00 ind:pre:2p; +enquérir enquérir ver 1.01 8.85 0.73 1.35 inf; +enquêta enquêter ver 19.65 2.91 0.01 0.07 ind:pas:3s; +enquêtais enquêter ver 19.65 2.91 0.45 0.07 ind:imp:1s;ind:imp:2s; +enquêtait enquêter ver 19.65 2.91 0.85 0.61 ind:imp:3s; +enquêtant enquêter ver 19.65 2.91 0.28 0.07 par:pre; +enquête enquête nom f s 57.98 21.28 53.89 18.45 +enquêtent enquêter ver 19.65 2.91 0.50 0.27 ind:pre:3p; +enquêter enquêter ver 19.65 2.91 7.29 1.35 inf; +enquêtes_minut enquêtes_minut nom f p 0.00 0.07 0.00 0.07 +enquêtes enquête nom f p 57.98 21.28 4.08 2.84 +enquêteur enquêteur nom m s 4.06 3.18 1.83 1.28 +enquêteurs enquêteur nom m p 4.06 3.18 2.15 1.82 +enquêteuse enquêteur nom f s 4.06 3.18 0.07 0.00 +enquêtez enquêter ver 19.65 2.91 0.99 0.07 imp:pre:2p;ind:pre:2p; +enquêtrices enquêteur nom f p 4.06 3.18 0.00 0.07 +enquêté enquêter ver m s 19.65 2.91 2.13 0.14 par:pas; +enrôla enrôler ver 3.03 2.77 0.00 0.07 ind:pas:3s; +enrôlaient enrôler ver 3.03 2.77 0.04 0.07 ind:imp:3p; +enrôlais enrôler ver 3.03 2.77 0.01 0.07 ind:imp:1s; +enrôlait enrôler ver 3.03 2.77 0.01 0.14 ind:imp:3s; +enrôlant enrôler ver 3.03 2.77 0.05 0.00 par:pre; +enrôle enrôler ver 3.03 2.77 0.17 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enrôlement enrôlement nom m s 0.25 0.34 0.25 0.14 +enrôlements enrôlement nom m p 0.25 0.34 0.00 0.20 +enrôler enrôler ver 3.03 2.77 0.82 0.95 inf; +enrôlerait enrôler ver 3.03 2.77 0.01 0.14 cnd:pre:3s; +enrôleriez enrôler ver 3.03 2.77 0.01 0.00 cnd:pre:2p; +enrôlez enrôler ver 3.03 2.77 0.74 0.00 imp:pre:2p;ind:pre:2p; +enrôlons enrôler ver 3.03 2.77 0.03 0.00 imp:pre:1p;ind:pre:1p; +enrôlé enrôler ver m s 3.03 2.77 0.94 0.74 par:pas; +enrôlée enrôler ver f s 3.03 2.77 0.02 0.20 par:pas; +enrôlées enrôler ver f p 3.03 2.77 0.00 0.07 par:pas; +enrôlés enrôler ver m p 3.03 2.77 0.17 0.20 par:pas; +enracinais enraciner ver 0.65 3.65 0.00 0.07 ind:imp:1s; +enracinait enraciner ver 0.65 3.65 0.00 0.54 ind:imp:3s; +enracinant enraciner ver 0.65 3.65 0.00 0.07 par:pre; +enracine enraciner ver 0.65 3.65 0.03 0.14 ind:pre:3s; +enracinement enracinement nom m s 0.01 0.47 0.01 0.41 +enracinements enracinement nom m p 0.01 0.47 0.00 0.07 +enracinent enraciner ver 0.65 3.65 0.14 0.27 ind:pre:3p; +enraciner enraciner ver 0.65 3.65 0.25 0.34 inf; +enracinerait enraciner ver 0.65 3.65 0.10 0.07 cnd:pre:3s; +enracineras enraciner ver 0.65 3.65 0.00 0.07 ind:fut:2s; +enracinerez enraciner ver 0.65 3.65 0.01 0.00 ind:fut:2p; +enraciné enraciner ver m s 0.65 3.65 0.05 1.15 par:pas; +enracinée enraciné adj f s 0.12 0.88 0.04 0.27 +enracinées enraciné adj f p 0.12 0.88 0.01 0.14 +enracinés enraciné adj m p 0.12 0.88 0.04 0.34 +enrage enrager ver 6.13 7.57 1.46 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enragea enrager ver 6.13 7.57 0.00 0.20 ind:pas:3s; +enrageai enrager ver 6.13 7.57 0.00 0.07 ind:pas:1s; +enrageais enrager ver 6.13 7.57 0.27 0.47 ind:imp:1s; +enrageait enrager ver 6.13 7.57 0.15 1.35 ind:imp:3s; +enrageant enrager ver 6.13 7.57 0.00 0.07 par:pre; +enrageante enrageant adj f s 0.01 0.00 0.01 0.00 +enragement enragement nom m s 0.00 0.14 0.00 0.14 +enragent enrager ver 6.13 7.57 0.01 0.20 ind:pre:3p; +enrager enrager ver 6.13 7.57 2.20 1.49 inf; +enragerais enrager ver 6.13 7.57 0.00 0.14 cnd:pre:1s; +enragé enragé adj m s 3.36 4.26 2.18 1.69 +enragée enragé adj f s 3.36 4.26 0.75 1.28 +enragées enrager ver f p 6.13 7.57 0.12 0.00 par:pas; +enragés enragé nom m p 0.79 1.69 0.39 0.74 +enraie enrayer ver 1.73 1.96 0.01 0.00 ind:pre:3s; +enraillée enrailler ver f s 0.02 0.00 0.02 0.00 par:pas; +enraya enrayer ver 1.73 1.96 0.00 0.20 ind:pas:3s; +enrayage enrayage nom m s 0.02 0.00 0.02 0.00 +enrayait enrayer ver 1.73 1.96 0.00 0.14 ind:imp:3s; +enrayant enrayer ver 1.73 1.96 0.00 0.14 par:pre; +enraye enrayer ver 1.73 1.96 0.27 0.20 ind:pre:3s; +enrayement enrayement nom m s 0.02 0.00 0.02 0.00 +enrayent enrayer ver 1.73 1.96 0.03 0.07 ind:pre:3p; +enrayer enrayer ver 1.73 1.96 0.92 0.74 inf; +enrayera enrayer ver 1.73 1.96 0.04 0.00 ind:fut:3s; +enrayé enrayer ver m s 1.73 1.96 0.32 0.20 par:pas; +enrayée enrayer ver f s 1.73 1.96 0.14 0.27 par:pas; +enregistra enregistrer ver 33.07 14.73 0.09 0.54 ind:pas:3s; +enregistrable enregistrable adj f s 0.01 0.07 0.01 0.07 +enregistrai enregistrer ver 33.07 14.73 0.00 0.27 ind:pas:1s; +enregistraient enregistrer ver 33.07 14.73 0.11 0.34 ind:imp:3p; +enregistrais enregistrer ver 33.07 14.73 0.49 0.20 ind:imp:1s;ind:imp:2s; +enregistrait enregistrer ver 33.07 14.73 0.63 1.35 ind:imp:3s; +enregistrant enregistrer ver 33.07 14.73 0.20 0.41 par:pre; +enregistre enregistrer ver 33.07 14.73 5.96 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enregistrement enregistrement nom m s 14.79 3.11 11.21 2.36 +enregistrements enregistrement nom m p 14.79 3.11 3.58 0.74 +enregistrent enregistrer ver 33.07 14.73 0.47 0.14 ind:pre:3p; +enregistrer enregistrer ver 33.07 14.73 7.58 3.65 inf; +enregistrera enregistrer ver 33.07 14.73 0.28 0.00 ind:fut:3s; +enregistrerai enregistrer ver 33.07 14.73 0.32 0.00 ind:fut:1s; +enregistrerait enregistrer ver 33.07 14.73 0.01 0.00 cnd:pre:3s; +enregistreras enregistrer ver 33.07 14.73 0.01 0.00 ind:fut:2s; +enregistrerez enregistrer ver 33.07 14.73 0.02 0.00 ind:fut:2p; +enregistrerons enregistrer ver 33.07 14.73 0.01 0.00 ind:fut:1p; +enregistreront enregistrer ver 33.07 14.73 0.01 0.07 ind:fut:3p; +enregistres enregistrer ver 33.07 14.73 0.83 0.07 ind:pre:2s; +enregistreur enregistreur nom m s 1.00 0.20 0.88 0.14 +enregistreurs enregistreur nom m p 1.00 0.20 0.11 0.00 +enregistreuse enregistreur adj f s 0.66 1.01 0.24 0.74 +enregistreuses enregistreur adj f p 0.66 1.01 0.20 0.07 +enregistrez enregistrer ver 33.07 14.73 1.12 0.00 imp:pre:2p;ind:pre:2p; +enregistriez enregistrer ver 33.07 14.73 0.00 0.07 ind:imp:2p; +enregistrions enregistrer ver 33.07 14.73 0.02 0.07 ind:imp:1p; +enregistrons enregistrer ver 33.07 14.73 0.25 0.14 imp:pre:1p;ind:pre:1p; +enregistré enregistrer ver m s 33.07 14.73 9.58 3.18 par:pas; +enregistrée enregistrer ver f s 33.07 14.73 2.73 0.88 par:pas; +enregistrées enregistrer ver f p 33.07 14.73 0.81 0.41 par:pas; +enregistrés enregistrer ver m p 33.07 14.73 1.54 0.95 par:pas; +enrhumait enrhumer ver 2.60 1.96 0.00 0.14 ind:imp:3s; +enrhume enrhumer ver 2.60 1.96 0.39 0.47 ind:pre:1s;ind:pre:3s; +enrhument enrhumer ver 2.60 1.96 0.11 0.07 ind:pre:3p; +enrhumer enrhumer ver 2.60 1.96 0.89 0.41 inf; +enrhumes enrhumer ver 2.60 1.96 0.00 0.07 ind:pre:2s; +enrhumez enrhumer ver 2.60 1.96 0.01 0.00 imp:pre:2p; +enrhumé enrhumer ver m s 2.60 1.96 0.97 0.41 par:pas; +enrhumée enrhumer ver f s 2.60 1.96 0.22 0.34 par:pas; +enrhumées enrhumé adj f p 0.49 1.22 0.00 0.07 +enrhumés enrhumé adj m p 0.49 1.22 0.11 0.27 +enrichi enrichir ver m s 7.73 11.76 1.44 2.03 par:pas; +enrichie enrichir ver f s 7.73 11.76 0.13 0.81 par:pas; +enrichies enrichir ver f p 7.73 11.76 0.17 0.14 par:pas; +enrichir enrichir ver 7.73 11.76 3.00 4.19 inf; +enrichira enrichir ver 7.73 11.76 0.10 0.00 ind:fut:3s; +enrichirais enrichir ver 7.73 11.76 0.01 0.07 cnd:pre:1s; +enrichirait enrichir ver 7.73 11.76 0.34 0.00 cnd:pre:3s; +enrichiront enrichir ver 7.73 11.76 0.04 0.14 ind:fut:3p; +enrichis enrichir ver m p 7.73 11.76 0.48 0.54 ind:pre:1s;ind:pre:2s;par:pas; +enrichissaient enrichir ver 7.73 11.76 0.01 0.34 ind:imp:3p; +enrichissais enrichir ver 7.73 11.76 0.00 0.07 ind:imp:1s; +enrichissait enrichir ver 7.73 11.76 0.05 1.15 ind:imp:3s; +enrichissant enrichissant adj m s 0.69 0.95 0.20 0.14 +enrichissante enrichissant adj f s 0.69 0.95 0.23 0.34 +enrichissantes enrichissant adj f p 0.69 0.95 0.25 0.27 +enrichissants enrichissant adj m p 0.69 0.95 0.01 0.20 +enrichisse enrichir ver 7.73 11.76 0.28 0.14 sub:pre:1s;sub:pre:3s; +enrichissement enrichissement nom m s 0.20 1.28 0.20 0.74 +enrichissements enrichissement nom m p 0.20 1.28 0.00 0.54 +enrichissent enrichir ver 7.73 11.76 0.49 0.54 ind:pre:3p; +enrichissez enrichir ver 7.73 11.76 0.03 0.07 imp:pre:2p;ind:pre:2p; +enrichit enrichir ver 7.73 11.76 1.08 1.35 ind:pre:3s;ind:pas:3s; +enrobage enrobage nom m s 0.05 0.07 0.05 0.07 +enrobaient enrober ver 0.68 2.36 0.00 0.07 ind:imp:3p; +enrobait enrober ver 0.68 2.36 0.00 0.61 ind:imp:3s; +enrobant enrober ver 0.68 2.36 0.00 0.07 par:pre; +enrobe enrober ver 0.68 2.36 0.03 0.54 ind:pre:1s;ind:pre:3s; +enrober enrober ver 0.68 2.36 0.15 0.07 inf; +enrobèrent enrober ver 0.68 2.36 0.00 0.07 ind:pas:3p; +enrobé enrobé adj m s 1.02 1.01 0.88 0.47 +enrobée enrober ver f s 0.68 2.36 0.09 0.27 par:pas; +enrobées enrobé adj f p 1.02 1.01 0.11 0.00 +enrobés enrober ver m p 0.68 2.36 0.17 0.34 par:pas; +enrochements enrochement nom m p 0.00 0.27 0.00 0.27 +enroua enrouer ver 0.12 2.16 0.00 0.14 ind:pas:3s; +enrouaient enrouer ver 0.12 2.16 0.00 0.14 ind:imp:3p; +enrouait enrouer ver 0.12 2.16 0.00 0.20 ind:imp:3s; +enroue enrouer ver 0.12 2.16 0.00 0.34 ind:pre:3s; +enrouement enrouement nom m s 0.00 0.41 0.00 0.34 +enrouements enrouement nom m p 0.00 0.41 0.00 0.07 +enrouer enrouer ver 0.12 2.16 0.00 0.07 inf; +enroula enrouler ver 3.75 16.89 0.00 1.01 ind:pas:3s; +enroulage enroulage nom m s 0.00 0.07 0.00 0.07 +enroulai enrouler ver 3.75 16.89 0.01 0.14 ind:pas:1s; +enroulaient enrouler ver 3.75 16.89 0.11 0.81 ind:imp:3p; +enroulais enrouler ver 3.75 16.89 0.02 0.14 ind:imp:1s; +enroulait enrouler ver 3.75 16.89 0.01 3.31 ind:imp:3s; +enroulant enrouler ver 3.75 16.89 0.03 1.42 par:pre; +enroule enrouler ver 3.75 16.89 1.11 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +enroulement enroulement nom m s 0.01 0.61 0.01 0.27 +enroulements enroulement nom m p 0.01 0.61 0.00 0.34 +enroulent enrouler ver 3.75 16.89 0.19 0.41 ind:pre:3p; +enrouler enrouler ver 3.75 16.89 0.36 1.35 inf; +enroulera enrouler ver 3.75 16.89 0.00 0.07 ind:fut:3s; +enroulerais enrouler ver 3.75 16.89 0.10 0.07 cnd:pre:1s; +enroulez enrouler ver 3.75 16.89 0.24 0.00 imp:pre:2p;ind:pre:2p; +enroulèrent enrouler ver 3.75 16.89 0.01 0.41 ind:pas:3p; +enroulé enrouler ver m s 3.75 16.89 0.52 2.50 par:pas; +enroulée enrouler ver f s 3.75 16.89 0.80 1.69 par:pas; +enroulées enrouler ver f p 3.75 16.89 0.05 0.54 par:pas; +enroulés enrouler ver m p 3.75 16.89 0.19 1.08 par:pas; +enroué enroué adj m s 0.18 3.31 0.05 0.61 +enrouée enroué adj f s 0.18 3.31 0.13 2.50 +enrouées enroué adj f p 0.18 3.31 0.00 0.14 +enroués enrouer ver m p 0.12 2.16 0.10 0.14 par:pas; +enrubannaient enrubanner ver 0.13 1.15 0.00 0.14 ind:imp:3p; +enrubannait enrubanner ver 0.13 1.15 0.00 0.14 ind:imp:3s; +enrubanner enrubanner ver 0.13 1.15 0.11 0.00 inf; +enrubanné enrubanner ver m s 0.13 1.15 0.01 0.27 par:pas; +enrubannée enrubanné adj f s 0.03 0.88 0.03 0.14 +enrubannées enrubanner ver f p 0.13 1.15 0.00 0.14 par:pas; +enrubannés enrubanné adj m p 0.03 0.88 0.00 0.34 +enrégimentait enrégimenter ver 0.00 0.27 0.00 0.07 ind:imp:3s; +enrégimenter enrégimenter ver 0.00 0.27 0.00 0.14 inf; +enrégimenterait enrégimenter ver 0.00 0.27 0.00 0.07 cnd:pre:3s; +ensablait ensabler ver 0.28 1.15 0.10 0.14 ind:imp:3s; +ensable ensabler ver 0.28 1.15 0.00 0.27 ind:pre:3s; +ensablement ensablement nom m s 0.00 0.20 0.00 0.20 +ensablent ensabler ver 0.28 1.15 0.00 0.07 ind:pre:3p; +ensabler ensabler ver 0.28 1.15 0.01 0.14 inf; +ensablèrent ensabler ver 0.28 1.15 0.00 0.07 ind:pas:3p; +ensablé ensablé adj m s 0.03 0.88 0.01 0.27 +ensablée ensabler ver f s 0.28 1.15 0.14 0.20 par:pas; +ensablées ensablé adj f p 0.03 0.88 0.00 0.14 +ensablés ensablé adj m p 0.03 0.88 0.01 0.27 +ensacher ensacher ver 0.04 0.07 0.02 0.00 inf; +ensaché ensacher ver m s 0.04 0.07 0.01 0.07 par:pas; +ensanglanta ensanglanter ver 1.07 2.30 0.00 0.14 ind:pas:3s; +ensanglantaient ensanglanter ver 1.07 2.30 0.00 0.07 ind:imp:3p; +ensanglantant ensanglanter ver 1.07 2.30 0.00 0.14 par:pre; +ensanglante ensanglanter ver 1.07 2.30 0.28 0.00 ind:pre:3s; +ensanglantement ensanglantement nom m s 0.00 0.07 0.00 0.07 +ensanglanter ensanglanter ver 1.07 2.30 0.00 0.07 inf; +ensanglantèrent ensanglanter ver 1.07 2.30 0.00 0.07 ind:pas:3p; +ensanglanté ensanglanté adj m s 1.55 4.26 0.71 1.55 +ensanglantée ensanglanté adj f s 1.55 4.26 0.52 1.28 +ensanglantées ensanglanté adj f p 1.55 4.26 0.10 0.61 +ensanglantés ensanglanté adj m p 1.55 4.26 0.21 0.81 +ensauvageait ensauvager ver 0.11 0.68 0.00 0.07 ind:imp:3s; +ensauvagement ensauvagement nom m s 0.00 0.07 0.00 0.07 +ensauvagé ensauvager ver m s 0.11 0.68 0.01 0.14 par:pas; +ensauvagée ensauvager ver f s 0.11 0.68 0.10 0.20 par:pas; +ensauvagées ensauvager ver f p 0.11 0.68 0.00 0.14 par:pas; +ensauvagés ensauvager ver m p 0.11 0.68 0.00 0.14 par:pas; +ensauve ensauver ver 0.00 0.14 0.00 0.07 ind:pre:1s; +ensauvés ensauver ver m p 0.00 0.14 0.00 0.07 par:pas; +enseigna enseigner ver 31.98 23.04 0.59 1.15 ind:pas:3s; +enseignaient enseigner ver 31.98 23.04 0.07 0.47 ind:imp:3p; +enseignais enseigner ver 31.98 23.04 0.80 0.34 ind:imp:1s;ind:imp:2s; +enseignait enseigner ver 31.98 23.04 1.29 3.85 ind:imp:3s; +enseignant_robot enseignant_robot nom m s 0.00 0.07 0.00 0.07 +enseignant enseignant nom m s 3.94 1.69 1.63 0.34 +enseignante enseignant nom f s 3.94 1.69 0.45 0.47 +enseignantes enseignant nom f p 3.94 1.69 0.03 0.07 +enseignants enseignant nom m p 3.94 1.69 1.84 0.81 +enseigne enseigner ver 31.98 23.04 8.85 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enseignement enseignement nom m s 4.27 12.50 3.61 10.95 +enseignements enseignement nom m p 4.27 12.50 0.66 1.55 +enseignent enseigner ver 31.98 23.04 0.59 0.95 ind:pre:3p; +enseigner enseigner ver 31.98 23.04 10.06 5.00 inf;; +enseignera enseigner ver 31.98 23.04 0.53 0.41 ind:fut:3s; +enseignerai enseigner ver 31.98 23.04 0.78 0.14 ind:fut:1s; +enseigneraient enseigner ver 31.98 23.04 0.01 0.07 cnd:pre:3p; +enseignerais enseigner ver 31.98 23.04 0.30 0.07 cnd:pre:1s; +enseignerait enseigner ver 31.98 23.04 0.05 0.14 cnd:pre:3s; +enseigneras enseigner ver 31.98 23.04 0.05 0.00 ind:fut:2s; +enseignerez enseigner ver 31.98 23.04 0.06 0.00 ind:fut:2p; +enseignerons enseigner ver 31.98 23.04 0.28 0.00 ind:fut:1p; +enseigneront enseigner ver 31.98 23.04 0.04 0.07 ind:fut:3p; +enseignes enseigner ver 31.98 23.04 0.89 0.07 ind:pre:2s; +enseigneur enseigneur nom m s 0.01 0.00 0.01 0.00 +enseignez enseigner ver 31.98 23.04 1.61 0.54 imp:pre:2p;ind:pre:2p; +enseigniez enseigner ver 31.98 23.04 0.17 0.07 ind:imp:2p; +enseignons enseigner ver 31.98 23.04 0.09 0.00 imp:pre:1p;ind:pre:1p; +enseignât enseigner ver 31.98 23.04 0.00 0.07 sub:imp:3s; +enseignèrent enseigner ver 31.98 23.04 0.00 0.20 ind:pas:3p; +enseigné enseigner ver m s 31.98 23.04 3.79 3.85 par:pas; +enseignée enseigner ver f s 31.98 23.04 0.43 0.88 par:pas; +enseignées enseigner ver f p 31.98 23.04 0.22 0.27 par:pas; +enseignés enseigner ver m p 31.98 23.04 0.06 0.34 par:pas; +ensellement ensellement nom m s 0.00 0.20 0.00 0.20 +ensellé ensellé adj m s 0.01 0.07 0.01 0.00 +ensellure ensellure nom f s 0.14 0.07 0.14 0.07 +ensellés ensellé adj m p 0.01 0.07 0.00 0.07 +ensemble ensemble adv 253.47 145.07 253.47 145.07 +ensembles ensemble nom m p 31.87 63.45 2.13 2.03 +ensemencement ensemencement nom m s 0.01 0.20 0.01 0.14 +ensemencements ensemencement nom m p 0.01 0.20 0.00 0.07 +ensemencer ensemencer ver 0.23 1.42 0.08 0.41 inf; +ensemencé ensemencer ver m s 0.23 1.42 0.14 0.34 par:pas; +ensemencée ensemencer ver f s 0.23 1.42 0.01 0.20 par:pas; +ensemencés ensemencer ver m p 0.23 1.42 0.00 0.14 par:pas; +ensemença ensemencer ver 0.23 1.42 0.00 0.07 ind:pas:3s; +ensemençaient ensemencer ver 0.23 1.42 0.00 0.07 ind:imp:3p; +ensemençait ensemencer ver 0.23 1.42 0.00 0.14 ind:imp:3s; +ensemençant ensemencer ver 0.23 1.42 0.00 0.07 par:pre; +enserra enserrer ver 0.23 7.70 0.00 0.07 ind:pas:3s; +enserrai enserrer ver 0.23 7.70 0.00 0.07 ind:pas:1s; +enserraient enserrer ver 0.23 7.70 0.01 1.01 ind:imp:3p; +enserrait enserrer ver 0.23 7.70 0.00 1.28 ind:imp:3s; +enserrant enserrer ver 0.23 7.70 0.00 1.49 par:pre; +enserre enserrer ver 0.23 7.70 0.05 1.08 ind:pre:1s;ind:pre:3s; +enserrent enserrer ver 0.23 7.70 0.02 0.74 ind:pre:3p; +enserrer enserrer ver 0.23 7.70 0.01 0.54 inf; +enserrera enserrer ver 0.23 7.70 0.01 0.00 ind:fut:3s; +enserrerait enserrer ver 0.23 7.70 0.00 0.07 cnd:pre:3s; +enserres enserrer ver 0.23 7.70 0.00 0.07 ind:pre:2s; +enserrèrent enserrer ver 0.23 7.70 0.00 0.07 ind:pas:3p; +enserré enserrer ver m s 0.23 7.70 0.13 0.54 par:pas; +enserrée enserrer ver f s 0.23 7.70 0.00 0.27 par:pas; +enserrées enserrer ver f p 0.23 7.70 0.00 0.14 par:pas; +enserrés enserrer ver m p 0.23 7.70 0.00 0.27 par:pas; +enseveli ensevelir ver m s 3.10 8.58 0.75 2.70 par:pas; +ensevelie ensevelir ver f s 3.10 8.58 0.52 0.88 par:pas; +ensevelies ensevelir ver f p 3.10 8.58 0.06 0.68 par:pas; +ensevelir ensevelir ver 3.10 8.58 1.20 1.08 inf; +ensevelira ensevelir ver 3.10 8.58 0.04 0.00 ind:fut:3s; +ensevelirait ensevelir ver 3.10 8.58 0.00 0.07 cnd:pre:3s; +ensevelis ensevelir ver m p 3.10 8.58 0.33 1.76 ind:pre:1s;par:pas; +ensevelissaient ensevelir ver 3.10 8.58 0.00 0.14 ind:imp:3p; +ensevelissais ensevelir ver 3.10 8.58 0.00 0.07 ind:imp:1s; +ensevelissait ensevelir ver 3.10 8.58 0.00 0.34 ind:imp:3s; +ensevelissant ensevelir ver 3.10 8.58 0.00 0.20 par:pre; +ensevelisse ensevelir ver 3.10 8.58 0.14 0.27 sub:pre:3s; +ensevelissement ensevelissement nom m s 0.03 0.74 0.03 0.74 +ensevelissent ensevelir ver 3.10 8.58 0.00 0.14 ind:pre:3p; +ensevelisseuse ensevelisseur nom f s 0.00 0.14 0.00 0.14 +ensevelissez ensevelir ver 3.10 8.58 0.03 0.00 imp:pre:2p;ind:pre:2p; +ensevelissons ensevelir ver 3.10 8.58 0.00 0.07 imp:pre:1p; +ensevelit ensevelir ver 3.10 8.58 0.02 0.20 ind:pre:3s;ind:pas:3s; +ensoleilla ensoleiller ver 0.99 3.31 0.00 0.14 ind:pas:3s; +ensoleillement ensoleillement nom m s 0.04 0.27 0.04 0.27 +ensoleiller ensoleiller ver 0.99 3.31 0.02 0.07 inf; +ensoleillèrent ensoleiller ver 0.99 3.31 0.00 0.07 ind:pas:3p; +ensoleillé ensoleillé adj m s 2.12 8.31 1.05 3.04 +ensoleillée ensoleillé adj f s 2.12 8.31 0.75 4.12 +ensoleillées ensoleillé adj f p 2.12 8.31 0.06 0.61 +ensoleillés ensoleillé adj m p 2.12 8.31 0.26 0.54 +ensommeilla ensommeiller ver 0.14 1.15 0.00 0.07 ind:pas:3s; +ensommeillaient ensommeiller ver 0.14 1.15 0.00 0.07 ind:imp:3p; +ensommeillait ensommeiller ver 0.14 1.15 0.00 0.14 ind:imp:3s; +ensommeiller ensommeiller ver 0.14 1.15 0.00 0.07 inf; +ensommeillé ensommeiller ver m s 0.14 1.15 0.14 0.34 par:pas; +ensommeillée ensommeillé adj f s 0.21 3.38 0.01 1.55 +ensommeillées ensommeillé adj f p 0.21 3.38 0.00 0.34 +ensommeillés ensommeillé adj m p 0.21 3.38 0.10 0.54 +ensorcelaient ensorceler ver 3.92 1.49 0.00 0.07 ind:imp:3p; +ensorcelant ensorcelant adj m s 0.21 0.47 0.03 0.20 +ensorcelante ensorcelant adj f s 0.21 0.47 0.19 0.20 +ensorcelantes ensorcelant adj f p 0.21 0.47 0.00 0.07 +ensorceler ensorceler ver 3.92 1.49 0.67 0.34 inf; +ensorceleur ensorceleur adj m s 0.03 0.07 0.01 0.07 +ensorceleuse ensorceleur nom f s 0.04 0.07 0.03 0.07 +ensorceleuses ensorceleuse nom f p 0.02 0.00 0.02 0.00 +ensorcelez ensorceler ver 3.92 1.49 0.02 0.07 ind:pre:2p; +ensorcelle ensorceler ver 3.92 1.49 0.34 0.34 ind:pre:3s; +ensorcellement ensorcellement nom m s 0.05 0.14 0.05 0.14 +ensorcellent ensorceler ver 3.92 1.49 0.26 0.07 ind:pre:3p; +ensorcelles ensorceler ver 3.92 1.49 0.00 0.07 ind:pre:2s; +ensorcelé ensorceler ver m s 3.92 1.49 1.72 0.34 par:pas; +ensorcelée ensorceler ver f s 3.92 1.49 0.73 0.14 par:pas; +ensorcelées ensorcelé adj f p 0.35 0.88 0.10 0.14 +ensorcelés ensorceler ver m p 3.92 1.49 0.18 0.00 par:pas; +ensouple ensouple nom f s 0.00 0.07 0.00 0.07 +ensoutanée ensoutané adj f s 0.00 0.07 0.00 0.07 +ensoutanées ensoutaner ver f p 0.00 0.07 0.00 0.07 par:pas; +ensuit ensuivre ver 1.20 5.34 0.52 1.89 ind:pre:3s; +ensuite ensuite adv_sup 127.92 169.19 127.92 169.19 +ensuivaient ensuivre ver 1.20 5.34 0.00 0.14 ind:imp:3p; +ensuivait ensuivre ver 1.20 5.34 0.00 0.34 ind:imp:3s; +ensuive ensuivre ver 1.20 5.34 0.33 0.54 sub:pre:3s; +ensuivent ensuivre ver 1.20 5.34 0.04 0.07 ind:pre:3p; +ensuivi ensuivre ver m s 1.20 5.34 0.00 0.07 par:pas; +ensuivie ensuivre ver f s 1.20 5.34 0.01 0.07 par:pas; +ensuivies ensuivre ver f p 1.20 5.34 0.00 0.07 par:pas; +ensuivirent ensuivre ver 1.20 5.34 0.03 0.27 ind:pas:3p; +ensuivit ensuivre ver 1.20 5.34 0.15 1.22 ind:pas:3s; +ensuivra ensuivre ver 1.20 5.34 0.06 0.07 ind:fut:3s; +ensuivraient ensuivre ver 1.20 5.34 0.01 0.07 cnd:pre:3p; +ensuivrait ensuivre ver 1.20 5.34 0.01 0.20 cnd:pre:3s; +ensuivre ensuivre ver 1.20 5.34 0.02 0.34 inf; +ensuivront ensuivre ver 1.20 5.34 0.03 0.00 ind:fut:3p; +ensuquent ensuquer ver 0.00 0.47 0.00 0.07 ind:pre:3p; +ensuqué ensuquer ver m s 0.00 0.47 0.00 0.14 par:pas; +ensuquée ensuquer ver f s 0.00 0.47 0.00 0.27 par:pas; +entôlage entôlage nom m s 0.01 0.14 0.01 0.14 +entôler entôler ver 0.02 0.20 0.01 0.00 inf; +entôleur entôleur nom m s 0.00 0.07 0.00 0.07 +entôlé entôler ver m s 0.02 0.20 0.01 0.14 par:pas; +entôlée entôler ver f s 0.02 0.20 0.00 0.07 par:pas; +entablement entablement nom m s 0.00 0.07 0.00 0.07 +entachait entacher ver 0.78 1.76 0.00 0.27 ind:imp:3s; +entache entacher ver 0.78 1.76 0.31 0.07 imp:pre:2s;ind:pre:3s; +entachent entacher ver 0.78 1.76 0.01 0.00 ind:pre:3p; +entacher entacher ver 0.78 1.76 0.10 0.14 inf; +entacherait entacher ver 0.78 1.76 0.04 0.00 cnd:pre:3s; +entaché entacher ver m s 0.78 1.76 0.12 0.81 par:pas; +entachée entacher ver f s 0.78 1.76 0.19 0.34 par:pas; +entachées entacher ver f p 0.78 1.76 0.00 0.07 par:pas; +entachés entacher ver m p 0.78 1.76 0.00 0.07 par:pas; +entailla entailler ver 0.52 2.09 0.00 0.07 ind:pas:3s; +entaillait entailler ver 0.52 2.09 0.01 0.27 ind:imp:3s; +entaille entaille nom f s 1.93 3.92 1.49 2.64 +entaillent entailler ver 0.52 2.09 0.00 0.27 ind:pre:3p; +entailler entailler ver 0.52 2.09 0.10 0.47 inf; +entaillerai entailler ver 0.52 2.09 0.00 0.07 ind:fut:1s; +entailles entaille nom f p 1.93 3.92 0.44 1.28 +entaillé entailler ver m s 0.52 2.09 0.18 0.34 par:pas; +entaillée entailler ver f s 0.52 2.09 0.04 0.14 par:pas; +entaillées entaillé adj f p 0.11 0.61 0.01 0.00 +entaillés entaillé adj m p 0.11 0.61 0.01 0.20 +entama entamer ver 7.44 27.77 0.08 2.03 ind:pas:3s; +entamai entamer ver 7.44 27.77 0.01 0.47 ind:pas:1s; +entamaient entamer ver 7.44 27.77 0.14 1.28 ind:imp:3p; +entamais entamer ver 7.44 27.77 0.07 0.07 ind:imp:1s; +entamait entamer ver 7.44 27.77 0.04 1.62 ind:imp:3s; +entamant entamer ver 7.44 27.77 0.02 0.41 par:pre; +entame entamer ver 7.44 27.77 1.09 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entament entamer ver 7.44 27.77 0.32 0.61 ind:pre:3p; +entamer entamer ver 7.44 27.77 2.42 7.03 inf; +entamera entamer ver 7.44 27.77 0.28 0.07 ind:fut:3s; +entamerai entamer ver 7.44 27.77 0.03 0.07 ind:fut:1s; +entameraient entamer ver 7.44 27.77 0.01 0.07 cnd:pre:3p; +entamerais entamer ver 7.44 27.77 0.14 0.14 cnd:pre:1s; +entamerait entamer ver 7.44 27.77 0.02 0.27 cnd:pre:3s; +entamerez entamer ver 7.44 27.77 0.01 0.07 ind:fut:2p; +entamerons entamer ver 7.44 27.77 0.12 0.07 ind:fut:1p; +entames entamer ver 7.44 27.77 0.02 0.00 ind:pre:2s; +entamez entamer ver 7.44 27.77 0.26 0.07 imp:pre:2p;ind:pre:2p; +entamons entamer ver 7.44 27.77 0.13 0.14 imp:pre:1p;ind:pre:1p; +entamât entamer ver 7.44 27.77 0.00 0.27 sub:imp:3s; +entamèrent entamer ver 7.44 27.77 0.11 0.54 ind:pas:3p; +entamé entamer ver m s 7.44 27.77 1.52 5.68 par:pas; +entamée entamer ver f s 7.44 27.77 0.47 3.51 par:pas; +entamées entamer ver f p 7.44 27.77 0.12 0.27 par:pas; +entamés entamer ver m p 7.44 27.77 0.02 0.68 par:pas; +entant enter ver 0.49 0.14 0.12 0.00 par:pre; +entassa entasser ver 3.90 29.05 0.00 0.68 ind:pas:3s; +entassaient entasser ver 3.90 29.05 0.14 5.81 ind:imp:3p; +entassait entasser ver 3.90 29.05 0.06 2.43 ind:imp:3s; +entassant entasser ver 3.90 29.05 0.00 0.61 par:pre; +entasse entasser ver 3.90 29.05 1.07 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entassement entassement nom m s 0.00 4.53 0.00 3.31 +entassements entassement nom m p 0.00 4.53 0.00 1.22 +entassent entasser ver 3.90 29.05 0.58 2.09 ind:pre:3p; +entasser entasser ver 3.90 29.05 0.65 2.03 inf; +entassera entasser ver 3.90 29.05 0.00 0.07 ind:fut:3s; +entasseraient entasser ver 3.90 29.05 0.00 0.14 cnd:pre:3p; +entasserait entasser ver 3.90 29.05 0.00 0.07 cnd:pre:3s; +entasseront entasser ver 3.90 29.05 0.00 0.07 ind:fut:3p; +entassez entasser ver 3.90 29.05 0.07 0.07 imp:pre:2p; +entassions entasser ver 3.90 29.05 0.00 0.34 ind:imp:1p; +entassâmes entasser ver 3.90 29.05 0.00 0.07 ind:pas:1p; +entassons entasser ver 3.90 29.05 0.10 0.07 ind:pre:1p; +entassèrent entasser ver 3.90 29.05 0.00 0.34 ind:pas:3p; +entassé entasser ver m s 3.90 29.05 0.07 1.62 par:pas; +entassée entasser ver f s 3.90 29.05 0.03 0.95 par:pas; +entassées entasser ver f p 3.90 29.05 0.02 3.18 par:pas; +entassés entasser ver m p 3.90 29.05 1.10 6.89 par:pas; +ente enter ver 0.49 0.14 0.01 0.00 ind:pre:3s; +entement entement nom m s 0.00 0.07 0.00 0.07 +entend entendre ver 728.67 719.12 41.77 63.11 ind:pre:3s; +entendîmes entendre ver 728.67 719.12 0.14 1.69 ind:pas:1p; +entendît entendre ver 728.67 719.12 0.00 2.30 sub:imp:3s; +entendaient entendre ver 728.67 719.12 1.52 7.09 ind:imp:3p; +entendais entendre ver 728.67 719.12 7.49 29.93 ind:imp:1s;ind:imp:2s; +entendait entendre ver 728.67 719.12 7.11 80.27 ind:imp:3s; +entendant entendre ver 728.67 719.12 1.95 15.00 par:pre; +entende entendre ver 728.67 719.12 9.72 5.47 sub:pre:1s;sub:pre:3s; +entendement entendement nom m s 1.13 2.70 1.13 2.70 +entendent entendre ver 728.67 719.12 6.75 7.64 ind:pre:3p;sub:pre:3p; +entendes entendre ver 728.67 719.12 1.01 0.41 sub:pre:2s; +entendeur entendeur nom m s 0.28 0.34 0.28 0.27 +entendeurs entendeur nom m p 0.28 0.34 0.00 0.07 +entendez entendre ver 728.67 719.12 45.11 13.99 imp:pre:2p;ind:pre:2p; +entendiez entendre ver 728.67 719.12 2.24 0.81 ind:imp:2p;sub:pre:2p; +entendions entendre ver 728.67 719.12 0.76 5.68 ind:imp:1p; +entendirent entendre ver 728.67 719.12 0.14 5.14 ind:pas:3p; +entendis entendre ver 728.67 719.12 1.11 16.76 ind:pas:1s; +entendisse entendre ver 728.67 719.12 0.00 0.14 sub:imp:1s; +entendissent entendre ver 728.67 719.12 0.01 0.20 sub:imp:3p; +entendit entendre ver 728.67 719.12 1.50 63.31 ind:pas:3s; +entendons entendre ver 728.67 719.12 2.05 5.14 imp:pre:1p;ind:pre:1p; +entendra entendre ver 728.67 719.12 6.61 2.57 ind:fut:3s; +entendrai entendre ver 728.67 719.12 1.36 1.08 ind:fut:1s; +entendraient entendre ver 728.67 719.12 0.23 0.88 cnd:pre:3p; +entendrais entendre ver 728.67 719.12 0.85 1.22 cnd:pre:1s;cnd:pre:2s; +entendrait entendre ver 728.67 719.12 1.71 3.18 cnd:pre:3s; +entendras entendre ver 728.67 719.12 2.26 0.61 ind:fut:2s; +entendre entendre ver 728.67 719.12 137.90 162.50 inf;;inf;;inf;; +entendrez entendre ver 728.67 719.12 3.45 0.47 ind:fut:2p; +entendriez entendre ver 728.67 719.12 0.28 0.14 cnd:pre:2p; +entendrions entendre ver 728.67 719.12 0.03 0.14 cnd:pre:1p; +entendrons entendre ver 728.67 719.12 0.63 0.81 ind:fut:1p; +entendront entendre ver 728.67 719.12 1.54 0.47 ind:fut:3p; +entends entendre ver 728.67 719.12 163.49 78.45 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entendu entendre ver m s 728.67 719.12 256.43 122.91 par:pas; +entendue entendre ver f s 728.67 719.12 14.31 11.01 par:pas; +entendues entendre ver f p 728.67 719.12 1.53 2.43 par:pas; +entendus entendre ver m p 728.67 719.12 5.68 6.22 par:pas; +entente entente nom f s 2.82 10.81 2.72 10.68 +ententes entente nom f p 2.82 10.81 0.10 0.14 +enter enter ver 0.49 0.14 0.35 0.14 inf; +enterra enterrer ver 63.68 28.58 0.26 0.47 ind:pas:3s; +enterrai enterrer ver 63.68 28.58 0.01 0.07 ind:pas:1s; +enterraient enterrer ver 63.68 28.58 0.13 0.14 ind:imp:3p; +enterrais enterrer ver 63.68 28.58 0.04 0.14 ind:imp:1s;ind:imp:2s; +enterrait enterrer ver 63.68 28.58 0.43 0.88 ind:imp:3s; +enterrant enterrer ver 63.68 28.58 0.11 0.07 par:pre; +enterre enterrer ver 63.68 28.58 8.38 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enterrement enterrement nom m s 27.33 21.22 24.71 18.99 +enterrements enterrement nom m p 27.33 21.22 2.62 2.23 +enterrent enterrer ver 63.68 28.58 0.90 0.61 ind:pre:3p; +enterrer enterrer ver 63.68 28.58 17.27 9.12 inf; +enterrera enterrer ver 63.68 28.58 1.02 0.81 ind:fut:3s; +enterrerai enterrer ver 63.68 28.58 0.47 0.14 ind:fut:1s; +enterrerais enterrer ver 63.68 28.58 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +enterrerait enterrer ver 63.68 28.58 0.10 0.14 cnd:pre:3s; +enterreras enterrer ver 63.68 28.58 0.32 0.07 ind:fut:2s; +enterrerez enterrer ver 63.68 28.58 0.09 0.07 ind:fut:2p; +enterrerons enterrer ver 63.68 28.58 0.23 0.14 ind:fut:1p; +enterreront enterrer ver 63.68 28.58 0.11 0.14 ind:fut:3p; +enterres enterrer ver 63.68 28.58 0.40 0.20 ind:pre:2s; +enterreur enterreur nom m s 0.00 0.07 0.00 0.07 +enterrez enterrer ver 63.68 28.58 2.94 0.27 imp:pre:2p;ind:pre:2p; +enterriez enterrer ver 63.68 28.58 0.03 0.00 ind:imp:2p; +enterrions enterrer ver 63.68 28.58 0.04 0.14 ind:imp:1p; +enterrâmes enterrer ver 63.68 28.58 0.00 0.07 ind:pas:1p; +enterrons enterrer ver 63.68 28.58 0.93 0.34 imp:pre:1p;ind:pre:1p; +enterrèrent enterrer ver 63.68 28.58 0.01 0.14 ind:pas:3p; +enterré enterrer ver m s 63.68 28.58 19.90 6.15 par:pas; +enterrée enterrer ver f s 63.68 28.58 5.92 3.58 par:pas; +enterrées enterrer ver f p 63.68 28.58 0.95 0.47 par:pas; +enterrés enterrer ver m p 63.68 28.58 2.63 1.82 par:pas; +enthalpie enthalpie nom f s 0.01 0.00 0.01 0.00 +enthousiasma enthousiasmer ver 1.67 4.66 0.00 0.61 ind:pas:3s; +enthousiasmai enthousiasmer ver 1.67 4.66 0.00 0.07 ind:pas:1s; +enthousiasmaient enthousiasmer ver 1.67 4.66 0.00 0.27 ind:imp:3p; +enthousiasmais enthousiasmer ver 1.67 4.66 0.01 0.07 ind:imp:1s; +enthousiasmait enthousiasmer ver 1.67 4.66 0.02 0.88 ind:imp:3s; +enthousiasmant enthousiasmant adj m s 0.07 0.27 0.04 0.20 +enthousiasmante enthousiasmant adj f s 0.07 0.27 0.03 0.07 +enthousiasme enthousiasme nom m s 7.09 35.61 7.05 33.72 +enthousiasmer enthousiasmer ver 1.67 4.66 0.19 0.68 inf; +enthousiasmes enthousiasme nom m p 7.09 35.61 0.04 1.89 +enthousiasmez enthousiasmer ver 1.67 4.66 0.01 0.00 ind:pre:2p; +enthousiasmèrent enthousiasmer ver 1.67 4.66 0.00 0.07 ind:pas:3p; +enthousiasmé enthousiasmer ver m s 1.67 4.66 0.69 0.88 par:pas; +enthousiasmée enthousiasmer ver f s 1.67 4.66 0.17 0.34 par:pas; +enthousiasmés enthousiasmer ver m p 1.67 4.66 0.06 0.34 par:pas; +enthousiaste enthousiaste adj s 4.41 7.70 3.34 5.88 +enthousiastes enthousiaste adj p 4.41 7.70 1.06 1.82 +enticha enticher ver 1.36 1.69 0.00 0.20 ind:pas:3s; +entichait enticher ver 1.36 1.69 0.00 0.14 ind:imp:3s; +entiche enticher ver 1.36 1.69 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entichement entichement nom m s 0.01 0.00 0.01 0.00 +entichent enticher ver 1.36 1.69 0.01 0.07 ind:pre:3p; +enticher enticher ver 1.36 1.69 0.33 0.07 inf; +entichera enticher ver 1.36 1.69 0.01 0.00 ind:fut:3s; +entichèrent enticher ver 1.36 1.69 0.00 0.20 ind:pas:3p; +entiché enticher ver m s 1.36 1.69 0.33 0.47 par:pas; +entichée enticher ver f s 1.36 1.69 0.44 0.47 par:pas; +entichés enticher ver m p 1.36 1.69 0.01 0.00 par:pas; +entier entier adj m s 76.01 147.91 42.15 56.69 +entiers entier adj m p 76.01 147.91 3.68 12.64 +entifler entifler ver 0.00 0.14 0.00 0.07 inf; +entiflé entifler ver m s 0.00 0.14 0.00 0.07 par:pas; +entière entier adj f s 76.01 147.91 26.45 62.97 +entièrement entièrement adv 17.17 39.93 17.17 39.93 +entières entier adj f p 76.01 147.91 3.73 15.61 +entièreté entièreté nom f s 0.02 0.00 0.02 0.00 +entité entité nom f s 3.08 2.09 2.12 1.62 +entités entité nom f p 3.08 2.09 0.95 0.47 +entoilage entoilage nom m s 0.01 0.07 0.01 0.07 +entoiler entoiler ver 0.02 0.20 0.01 0.00 inf; +entoilées entoiler ver f p 0.02 0.20 0.01 0.07 par:pas; +entoilés entoiler ver m p 0.02 0.20 0.00 0.14 par:pas; +entolome entolome nom m s 0.00 0.14 0.00 0.07 +entolomes entolome nom m p 0.00 0.14 0.00 0.07 +entomologie entomologie nom f s 0.19 0.27 0.19 0.27 +entomologique entomologique adj s 0.01 0.07 0.01 0.07 +entomologiste entomologiste nom s 0.80 1.28 0.79 1.15 +entomologistes entomologiste nom p 0.80 1.28 0.01 0.14 +entonna entonner ver 1.61 8.24 0.00 1.42 ind:pas:3s; +entonnaient entonner ver 1.61 8.24 0.23 0.20 ind:imp:3p; +entonnais entonner ver 1.61 8.24 0.10 0.07 ind:imp:1s;ind:imp:2s; +entonnait entonner ver 1.61 8.24 0.13 1.22 ind:imp:3s; +entonnant entonner ver 1.61 8.24 0.02 0.20 par:pre; +entonne entonner ver 1.61 8.24 0.46 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entonnent entonner ver 1.61 8.24 0.12 0.27 ind:pre:3p; +entonner entonner ver 1.61 8.24 0.42 2.43 inf; +entonnera entonner ver 1.61 8.24 0.00 0.07 ind:fut:3s; +entonneraient entonner ver 1.61 8.24 0.00 0.07 cnd:pre:3p; +entonnions entonner ver 1.61 8.24 0.00 0.14 ind:imp:1p; +entonnoir entonnoir nom m s 0.83 9.46 0.81 7.97 +entonnoirs entonnoir nom m p 0.83 9.46 0.01 1.49 +entonnâmes entonner ver 1.61 8.24 0.00 0.07 ind:pas:1p; +entonnons entonner ver 1.61 8.24 0.01 0.07 imp:pre:1p; +entonnèrent entonner ver 1.61 8.24 0.00 0.27 ind:pas:3p; +entonné entonner ver m s 1.61 8.24 0.11 0.74 par:pas; +entorse entorse nom f s 1.63 2.84 1.40 2.36 +entorses entorse nom f p 1.63 2.84 0.23 0.47 +entortilla entortiller ver 0.25 3.78 0.00 0.34 ind:pas:3s; +entortillage entortillage nom m s 0.00 0.14 0.00 0.07 +entortillages entortillage nom m p 0.00 0.14 0.00 0.07 +entortillai entortiller ver 0.25 3.78 0.00 0.14 ind:pas:1s; +entortillaient entortiller ver 0.25 3.78 0.00 0.27 ind:imp:3p; +entortillait entortiller ver 0.25 3.78 0.03 0.27 ind:imp:3s; +entortillant entortiller ver 0.25 3.78 0.00 0.14 par:pre; +entortille entortiller ver 0.25 3.78 0.05 0.20 imp:pre:2s;ind:pre:3s; +entortillement entortillement nom m s 0.00 0.14 0.00 0.14 +entortillent entortiller ver 0.25 3.78 0.00 0.20 ind:pre:3p; +entortiller entortiller ver 0.25 3.78 0.14 0.47 inf; +entortilleraient entortiller ver 0.25 3.78 0.00 0.07 cnd:pre:3p; +entortillé entortiller ver m s 0.25 3.78 0.03 0.68 par:pas; +entortillée entortillé adj f s 0.06 0.34 0.01 0.07 +entortillées entortiller ver f p 0.25 3.78 0.00 0.27 par:pas; +entortillés entortillé adj m p 0.06 0.34 0.01 0.07 +entour entour nom m s 0.01 1.42 0.01 1.15 +entoura entourer ver 23.99 112.09 0.16 4.26 ind:pas:3s; +entourage entourage nom m s 3.00 10.74 3.00 10.68 +entourages entourage nom m p 3.00 10.74 0.00 0.07 +entourai entourer ver 23.99 112.09 0.00 0.20 ind:pas:1s; +entouraient entourer ver 23.99 112.09 0.48 12.97 ind:imp:3p; +entourais entourer ver 23.99 112.09 0.20 0.34 ind:imp:1s; +entourait entourer ver 23.99 112.09 0.95 14.05 ind:imp:3s; +entourant entourer ver 23.99 112.09 0.90 6.28 par:pre; +entoure entourer ver 23.99 112.09 3.19 9.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +entourent entourer ver 23.99 112.09 3.12 7.91 ind:pre:3p; +entourer entourer ver 23.99 112.09 1.21 4.93 inf; +entourera entourer ver 23.99 112.09 0.14 0.20 ind:fut:3s; +entoureraient entourer ver 23.99 112.09 0.01 0.07 cnd:pre:3p; +entourerait entourer ver 23.99 112.09 0.00 0.07 cnd:pre:3s; +entoureront entourer ver 23.99 112.09 0.11 0.07 ind:fut:3p; +entoures entourer ver 23.99 112.09 0.05 0.07 ind:pre:2s; +entourez entourer ver 23.99 112.09 0.37 0.14 imp:pre:2p;ind:pre:2p; +entourions entourer ver 23.99 112.09 0.00 0.47 ind:imp:1p; +entourloupe entourloupe nom f s 0.94 1.01 0.78 0.68 +entourloupent entourlouper ver 0.12 0.00 0.10 0.00 ind:pre:3p; +entourlouper entourlouper ver 0.12 0.00 0.02 0.00 inf; +entourloupes entourloupe nom f p 0.94 1.01 0.17 0.34 +entourloupette entourloupette nom f s 0.17 0.47 0.04 0.20 +entourloupettes entourloupette nom f p 0.17 0.47 0.12 0.27 +entournures entournure nom f p 0.03 1.28 0.03 1.28 +entourons entourer ver 23.99 112.09 0.01 0.07 imp:pre:1p;ind:pre:1p; +entourât entourer ver 23.99 112.09 0.00 0.14 sub:imp:3s; +entours entour nom m p 0.01 1.42 0.00 0.27 +entourèrent entourer ver 23.99 112.09 0.03 1.42 ind:pas:3p; +entouré entourer ver m s 23.99 112.09 7.57 26.08 par:pas; +entourée entourer ver f s 23.99 112.09 3.99 13.11 par:pas; +entourées entourer ver f p 23.99 112.09 0.17 2.91 par:pas; +entourés entourer ver m p 23.99 112.09 1.32 7.09 par:pas; +entr_acte entr_acte nom m s 0.27 0.00 0.14 0.00 +entr_acte entr_acte nom m p 0.27 0.00 0.14 0.00 +entr_aimer entr_aimer ver 0.00 0.07 0.00 0.07 inf; +entr_apercevoir entr_apercevoir ver 0.03 1.08 0.01 0.27 inf; +entr_apercevoir entr_apercevoir ver m s 0.03 1.08 0.00 0.14 par:pas; +entr_apercevoir entr_apercevoir ver f s 0.03 1.08 0.02 0.34 par:pas; +entr_apercevoir entr_apercevoir ver f p 0.03 1.08 0.00 0.07 par:pas; +entr_apercevoir entr_apercevoir ver m p 0.03 1.08 0.00 0.27 ind:pas:1s;par:pas; +entr_appeler entr_appeler ver 0.00 0.07 0.00 0.07 ind:pre:3p; +entr_ouvert entr_ouvert adj m s 0.01 1.49 0.00 0.41 +entr_ouvert entr_ouvert adj f s 0.01 1.49 0.01 0.74 +entr_ouvert entr_ouvert adj f p 0.01 1.49 0.00 0.27 +entr_ouvert entr_ouvert adj m p 0.01 1.49 0.00 0.07 +entr_égorger entr_égorger ver 0.00 0.20 0.00 0.07 ind:pre:3p; +entr_égorger entr_égorger ver 0.00 0.20 0.00 0.07 inf; +entr_égorger entr_égorger ver 0.00 0.20 0.00 0.07 ind:pas:3p; +entra entrer ver 450.11 398.38 2.72 51.96 ind:pas:3s; +entraîna entraîner ver 50.68 101.08 0.49 13.31 ind:pas:3s; +entraînai entraîner ver 50.68 101.08 0.00 1.01 ind:pas:1s; +entraînaient entraîner ver 50.68 101.08 0.05 3.11 ind:imp:3p; +entraînais entraîner ver 50.68 101.08 0.61 1.01 ind:imp:1s;ind:imp:2s; +entraînait entraîner ver 50.68 101.08 1.06 12.16 ind:imp:3s; +entraînant entraîner ver 50.68 101.08 1.13 7.64 par:pre; +entraînante entraînant adj f s 0.63 2.16 0.10 0.34 +entraînants entraînant adj m p 0.63 2.16 0.02 0.27 +entraîne entraîner ver 50.68 101.08 11.28 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +entraînement entraînement nom m s 20.31 8.18 19.63 7.91 +entraînements entraînement nom m p 20.31 8.18 0.67 0.27 +entraînent entraîner ver 50.68 101.08 1.50 3.24 ind:pre:3p;sub:pre:3p; +entraîner entraîner ver 50.68 101.08 15.39 20.81 inf;;inf;;inf;; +entraînera entraîner ver 50.68 101.08 0.94 0.74 ind:fut:3s; +entraînerai entraîner ver 50.68 101.08 0.40 0.07 ind:fut:1s; +entraîneraient entraîner ver 50.68 101.08 0.02 0.41 cnd:pre:3p; +entraînerais entraîner ver 50.68 101.08 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +entraînerait entraîner ver 50.68 101.08 0.54 1.89 cnd:pre:3s; +entraîneras entraîner ver 50.68 101.08 0.11 0.14 ind:fut:2s; +entraînerez entraîner ver 50.68 101.08 0.09 0.00 ind:fut:2p; +entraîneriez entraîner ver 50.68 101.08 0.00 0.07 cnd:pre:2p; +entraîneront entraîner ver 50.68 101.08 0.08 0.27 ind:fut:3p; +entraînes entraîner ver 50.68 101.08 2.05 0.07 ind:pre:2s;sub:pre:2s; +entraîneur entraîneur nom m s 8.69 4.46 7.87 2.77 +entraîneurs entraîneur nom m p 8.69 4.46 0.45 0.41 +entraîneuse entraîneur nom f s 8.69 4.46 0.33 0.47 +entraîneuses entraîneur nom f p 8.69 4.46 0.04 0.81 +entraînez entraîner ver 50.68 101.08 0.84 0.07 imp:pre:2p;ind:pre:2p; +entraîniez entraîner ver 50.68 101.08 0.11 0.00 ind:imp:2p;sub:pre:2p; +entraînons entraîner ver 50.68 101.08 0.15 0.07 imp:pre:1p;ind:pre:1p; +entraînât entraîner ver 50.68 101.08 0.00 0.27 sub:imp:3s; +entraînèrent entraîner ver 50.68 101.08 0.14 1.15 ind:pas:3p; +entraîné entraîner ver m s 50.68 101.08 8.33 10.41 par:pas; +entraînée entraîner ver f s 50.68 101.08 2.47 5.00 ind:imp:3p;par:pas; +entraînées entraîner ver f p 50.68 101.08 0.09 1.01 par:pas; +entraînés entraîner ver m p 50.68 101.08 2.73 4.12 par:pas; +entracte entracte nom m s 1.61 5.74 1.59 4.86 +entractes entracte nom m p 1.61 5.74 0.02 0.88 +entrai entrer ver 450.11 398.38 0.20 7.03 ind:pas:1s; +entraidait entraider ver 3.86 0.68 0.06 0.00 ind:imp:3s; +entraidant entraider ver 3.86 0.68 0.00 0.07 par:pre; +entraide entraider ver 3.86 0.68 0.88 0.00 ind:pre:3s; +entraident entraider ver 3.86 0.68 0.12 0.07 ind:pre:3p; +entraider entraider ver 3.86 0.68 2.48 0.54 inf; +entraidez entraider ver 3.86 0.68 0.23 0.00 imp:pre:2p; +entraidiez entraider ver 3.86 0.68 0.01 0.00 ind:imp:2p; +entraidons entraider ver 3.86 0.68 0.05 0.00 ind:pre:1p; +entraidés entraider ver m p 3.86 0.68 0.02 0.00 par:pas; +entraient entrer ver 450.11 398.38 0.71 10.41 ind:imp:3p; +entrailles entrailles nom f p 4.96 13.45 4.96 13.45 +entrain entrain nom m s 3.82 7.97 3.82 7.97 +entrais entrer ver 450.11 398.38 1.01 4.46 ind:imp:1s;ind:imp:2s; +entrait entrer ver 450.11 398.38 3.30 33.45 ind:imp:3s; +entrant entrer ver 450.11 398.38 2.97 13.85 par:pre; +entrante entrant adj f s 0.92 0.61 0.07 0.00 +entrantes entrant adj f p 0.92 0.61 0.04 0.00 +entrants entrant adj m p 0.92 0.61 0.33 0.00 +entrapercevoir entrapercevoir ver 0.06 0.20 0.01 0.00 inf; +entraperçu entrapercevoir ver m s 0.06 0.20 0.05 0.07 par:pas; +entraperçues entrapercevoir ver f p 0.06 0.20 0.00 0.07 par:pas; +entraperçus entrapercevoir ver m p 0.06 0.20 0.00 0.07 par:pas; +entrassent entrer ver 450.11 398.38 0.00 0.07 sub:imp:3p; +entrava entraver ver 2.28 11.62 0.00 0.07 ind:pas:3s; +entravai entraver ver 2.28 11.62 0.00 0.07 ind:pas:1s; +entravaient entraver ver 2.28 11.62 0.01 0.14 ind:imp:3p; +entravais entraver ver 2.28 11.62 0.00 0.34 ind:imp:1s; +entravait entraver ver 2.28 11.62 0.01 1.55 ind:imp:3s; +entravant entraver ver 2.28 11.62 0.01 0.41 par:pre; +entrave entrave nom f s 1.17 2.50 0.85 1.01 +entravent entraver ver 2.28 11.62 0.19 0.68 ind:pre:3p; +entraver entraver ver 2.28 11.62 0.75 2.23 inf; +entravera entraver ver 2.28 11.62 0.06 0.14 ind:fut:3s; +entraverais entraver ver 2.28 11.62 0.00 0.07 cnd:pre:1s; +entraverait entraver ver 2.28 11.62 0.01 0.34 cnd:pre:3s; +entraveront entraver ver 2.28 11.62 0.01 0.07 ind:fut:3p; +entraves entrave nom f p 1.17 2.50 0.32 1.49 +entravez entraver ver 2.28 11.62 0.14 0.00 imp:pre:2p;ind:pre:2p; +entravèrent entraver ver 2.28 11.62 0.00 0.14 ind:pas:3p; +entravé entraver ver m s 2.28 11.62 0.46 1.35 par:pas; +entravée entraver ver f s 2.28 11.62 0.04 0.27 par:pas; +entravées entravé adj f p 0.41 1.76 0.00 0.47 +entravés entraver ver m p 2.28 11.62 0.14 0.27 par:pas; +entre_deux_guerres entre_deux_guerres nom m 0.10 0.74 0.10 0.74 +entre_deux entre_deux nom m 0.34 0.81 0.34 0.81 +entre_déchirer entre_déchirer ver 0.04 0.61 0.02 0.14 ind:imp:3p; +entre_déchirer entre_déchirer ver 0.04 0.61 0.00 0.07 ind:imp:3s; +entre_déchirer entre_déchirer ver 0.04 0.61 0.01 0.00 ind:pre:3s; +entre_déchirer entre_déchirer ver 0.04 0.61 0.00 0.14 ind:pre:3p; +entre_déchirer entre_déchirer ver 0.04 0.61 0.01 0.20 inf; +entre_déchirer entre_déchirer ver 0.04 0.61 0.00 0.07 ind:pas:3p; +entre_dévorer entre_dévorer ver 0.30 0.34 0.01 0.07 par:pre; +entre_dévorer entre_dévorer ver 0.30 0.34 0.25 0.07 ind:pre:3p; +entre_dévorer entre_dévorer ver 0.30 0.34 0.05 0.14 inf; +entre_dévorer entre_dévorer ver 0.30 0.34 0.00 0.07 ind:pas:3p; +entre_jambe entre_jambe nom m s 0.03 0.07 0.03 0.07 +entre_jambes entre_jambes nom m 0.07 0.07 0.07 0.07 +entre_rail entre_rail nom m s 0.01 0.00 0.01 0.00 +entre_regarder entre_regarder ver 0.00 0.34 0.00 0.07 ind:imp:3s; +entre_regarder entre_regarder ver 0.00 0.34 0.00 0.07 ind:pre:3p; +entre_regarder entre_regarder ver 0.00 0.34 0.00 0.14 ind:pas:3p; +entre_regarder entre_regarder ver m p 0.00 0.34 0.00 0.07 par:pas; +entre_temps entre_temps adv 4.04 7.97 4.04 7.97 +entre_tuer entre_tuer ver 2.63 1.01 0.01 0.00 ind:imp:3p; +entre_tuer entre_tuer ver 2.63 1.01 0.00 0.14 ind:imp:3s; +entre_tuer entre_tuer ver 2.63 1.01 0.23 0.07 ind:pre:3s; +entre_tuer entre_tuer ver 2.63 1.01 0.55 0.07 ind:pre:3p; +entre_tuer entre_tuer ver 2.63 1.01 1.33 0.68 inf; +entre_tuer entre_tuer ver 2.63 1.01 0.14 0.00 ind:fut:3p; +entre_tuer entre_tuer ver 2.63 1.01 0.03 0.00 imp:pre:2p;ind:pre:2p; +entre_tuer entre_tuer ver 2.63 1.01 0.01 0.00 ind:imp:1p; +entre_tuer entre_tuer ver m p 2.63 1.01 0.34 0.07 par:pas; +entre entre pre 372.72 833.99 372.72 833.99 +entrebattre entrebattre ver 0.00 0.07 0.00 0.07 inf; +entrebâilla entrebâiller ver 0.12 5.88 0.00 0.88 ind:pas:3s; +entrebâillaient entrebâiller ver 0.12 5.88 0.00 0.27 ind:imp:3p; +entrebâillais entrebâiller ver 0.12 5.88 0.00 0.07 ind:imp:1s; +entrebâillait entrebâiller ver 0.12 5.88 0.00 0.41 ind:imp:3s; +entrebâillant entrebâiller ver 0.12 5.88 0.10 0.20 par:pre; +entrebâille entrebâiller ver 0.12 5.88 0.00 1.01 ind:pre:1s;ind:pre:3s; +entrebâillement entrebâillement nom m s 0.02 3.51 0.02 3.51 +entrebâillent entrebâiller ver 0.12 5.88 0.00 0.07 ind:pre:3p; +entrebâiller entrebâiller ver 0.12 5.88 0.00 0.47 inf; +entrebâillerait entrebâiller ver 0.12 5.88 0.00 0.07 cnd:pre:3s; +entrebâilleur entrebâilleur nom m s 0.14 0.00 0.14 0.00 +entrebâillèrent entrebâiller ver 0.12 5.88 0.00 0.07 ind:pas:3p; +entrebâillé entrebâiller ver m s 0.12 5.88 0.01 0.47 par:pas; +entrebâillée entrebâillé adj f s 0.38 3.11 0.38 2.03 +entrebâillées entrebâiller ver f p 0.12 5.88 0.00 0.07 par:pas; +entrebâillés entrebâillé adj m p 0.38 3.11 0.00 0.34 +entrecôte entrecôte nom f s 0.41 1.01 0.25 0.81 +entrecôtes entrecôte nom f p 0.41 1.01 0.16 0.20 +entrechat entrechat nom m s 0.21 0.95 0.20 0.14 +entrechats entrechat nom m p 0.21 0.95 0.01 0.81 +entrechoc entrechoc nom m s 0.00 0.14 0.00 0.07 +entrechocs entrechoc nom m p 0.00 0.14 0.00 0.07 +entrechoquaient entrechoquer ver 0.19 5.81 0.03 1.01 ind:imp:3p; +entrechoquait entrechoquer ver 0.19 5.81 0.00 0.07 ind:imp:3s; +entrechoquant entrechoquer ver 0.19 5.81 0.01 0.68 par:pre; +entrechoque entrechoquer ver 0.19 5.81 0.00 0.07 ind:pre:1s; +entrechoquement entrechoquement nom m s 0.00 0.07 0.00 0.07 +entrechoquent entrechoquer ver 0.19 5.81 0.10 1.08 ind:pre:3p; +entrechoquer entrechoquer ver 0.19 5.81 0.02 0.54 inf; +entrechoqueront entrechoquer ver 0.19 5.81 0.01 0.00 ind:fut:3p; +entrechoquions entrechoquer ver 0.19 5.81 0.00 0.07 ind:imp:1p; +entrechoquèrent entrechoquer ver 0.19 5.81 0.00 0.27 ind:pas:3p; +entrechoqué entrechoquer ver m s 0.19 5.81 0.00 0.41 par:pas; +entrechoquées entrechoquer ver f p 0.19 5.81 0.00 0.54 par:pas; +entrechoqués entrechoquer ver m p 0.19 5.81 0.02 1.08 par:pas; +entreclos entreclore ver m s 0.00 0.07 0.00 0.07 par:pas; +entrecloses entreclos adj f p 0.00 0.07 0.00 0.07 +entrecoupaient entrecouper ver 0.06 3.85 0.00 0.07 ind:imp:3p; +entrecoupais entrecouper ver 0.06 3.85 0.00 0.07 ind:imp:1s; +entrecoupait entrecouper ver 0.06 3.85 0.00 0.20 ind:imp:3s; +entrecoupant entrecouper ver 0.06 3.85 0.00 0.07 par:pre; +entrecoupe entrecouper ver 0.06 3.85 0.00 0.07 ind:pre:3s; +entrecoupent entrecouper ver 0.06 3.85 0.01 0.00 ind:pre:3p; +entrecouper entrecouper ver 0.06 3.85 0.00 0.07 inf; +entrecoupé entrecouper ver m s 0.06 3.85 0.03 1.01 par:pas; +entrecoupée entrecoupé adj f s 0.01 0.95 0.01 0.34 +entrecoupées entrecouper ver f p 0.06 3.85 0.01 0.61 par:pas; +entrecoupés entrecouper ver m p 0.06 3.85 0.01 0.74 par:pas; +entrecroisaient entrecroiser ver 0.28 5.54 0.00 1.49 ind:imp:3p; +entrecroisait entrecroiser ver 0.28 5.54 0.00 0.14 ind:imp:3s; +entrecroisant entrecroiser ver 0.28 5.54 0.00 0.95 par:pre; +entrecroise entrecroiser ver 0.28 5.54 0.00 0.07 ind:pre:3s; +entrecroisement entrecroisement nom m s 0.00 0.68 0.00 0.61 +entrecroisements entrecroisement nom m p 0.00 0.68 0.00 0.07 +entrecroisent entrecroiser ver 0.28 5.54 0.16 0.68 ind:pre:3p; +entrecroiser entrecroiser ver 0.28 5.54 0.02 0.00 inf; +entrecroisèrent entrecroiser ver 0.28 5.54 0.00 0.20 ind:pas:3p; +entrecroisé entrecroiser ver m s 0.28 5.54 0.02 0.00 par:pas; +entrecroisées entrecroiser ver f p 0.28 5.54 0.03 1.08 par:pas; +entrecroisés entrecroiser ver m p 0.28 5.54 0.04 0.95 par:pas; +entrecuisse entrecuisse nom m s 0.22 0.68 0.22 0.68 +entredéchire entredéchirer ver 0.01 0.07 0.01 0.07 ind:pre:3s;sub:pre:3s; +entredévorait entredévorer ver 0.01 0.07 0.01 0.00 ind:imp:3s; +entredévorer entredévorer ver 0.01 0.07 0.00 0.07 inf; +entrefaites entrefaite nom f p 0.00 2.03 0.00 2.03 +entreferma entrefermer ver 0.00 0.20 0.00 0.07 ind:pas:3s; +entrefermée entrefermer ver f s 0.00 0.20 0.00 0.07 par:pas; +entrefermées entrefermer ver f p 0.00 0.20 0.00 0.07 par:pas; +entrefilet entrefilet nom m s 0.08 1.55 0.07 1.28 +entrefilets entrefilet nom m p 0.08 1.55 0.01 0.27 +entregent entregent nom m s 0.14 0.41 0.14 0.41 +entrejambe entrejambe nom m s 0.80 1.49 0.76 1.35 +entrejambes entrejambe nom m p 0.80 1.49 0.04 0.14 +entrelace entrelacer ver 0.71 2.03 0.02 0.14 imp:pre:2s;ind:pre:3s; +entrelacement entrelacement nom m s 0.01 0.34 0.01 0.34 +entrelacent entrelacer ver 0.71 2.03 0.13 0.27 ind:pre:3p; +entrelacer entrelacer ver 0.71 2.03 0.03 0.14 inf; +entrelacs entrelacs nom m 0.31 2.84 0.31 2.84 +entrelacèrent entrelacer ver 0.71 2.03 0.00 0.07 ind:pas:3p; +entrelacé entrelacer ver m s 0.71 2.03 0.04 0.20 par:pas; +entrelacée entrelacer ver f s 0.71 2.03 0.01 0.07 par:pas; +entrelacées entrelacer ver f p 0.71 2.03 0.05 0.34 par:pas; +entrelacés entrelacer ver m p 0.71 2.03 0.43 0.34 par:pas; +entrelarde entrelarder ver 0.00 0.34 0.00 0.07 ind:pre:3s; +entrelarder entrelarder ver 0.00 0.34 0.00 0.07 inf; +entrelardé entrelardé adj m s 0.00 0.07 0.00 0.07 +entrelardée entrelarder ver f s 0.00 0.34 0.00 0.07 par:pas; +entrelardées entrelarder ver f p 0.00 0.34 0.00 0.07 par:pas; +entrelardés entrelarder ver m p 0.00 0.34 0.00 0.07 par:pas; +entrelaçaient entrelacer ver 0.71 2.03 0.00 0.41 ind:imp:3p; +entrelaçait entrelacer ver 0.71 2.03 0.00 0.07 ind:imp:3s; +entremet entremettre ver 0.01 0.81 0.00 0.14 ind:pre:3s; +entremets entremets nom m 0.03 1.42 0.03 1.42 +entremettait entremettre ver 0.01 0.81 0.00 0.07 ind:imp:3s; +entremetteur entremetteur nom m s 0.92 1.01 0.68 0.61 +entremetteurs entremetteur nom m p 0.92 1.01 0.09 0.14 +entremetteuse entremetteur nom f s 0.92 1.01 0.16 0.27 +entremettre entremettre ver 0.01 0.81 0.00 0.27 inf; +entremis entremettre ver m s 0.01 0.81 0.00 0.14 par:pas; +entremise entremise nom f s 0.16 1.49 0.16 1.49 +entremit entremettre ver 0.01 0.81 0.00 0.20 ind:pas:3s; +entremêlaient entremêler ver 0.37 2.91 0.00 0.88 ind:imp:3p; +entremêlait entremêler ver 0.37 2.91 0.00 0.14 ind:imp:3s; +entremêlant entremêler ver 0.37 2.91 0.01 0.34 par:pre; +entremêle entremêler ver 0.37 2.91 0.00 0.14 ind:pre:3s; +entremêlement entremêlement nom m s 0.00 0.47 0.00 0.47 +entremêlent entremêler ver 0.37 2.91 0.16 0.20 ind:pre:3p; +entremêlé entremêler ver m s 0.37 2.91 0.01 0.07 par:pas; +entremêlées entremêler ver f p 0.37 2.91 0.04 0.34 par:pas; +entremêlés entremêler ver m p 0.37 2.91 0.15 0.81 par:pas; +entrent entrer ver 450.11 398.38 6.82 7.30 ind:pre:3p; +entrepôt entrepôt nom m s 9.75 8.58 7.47 2.36 +entrepôts entrepôt nom m p 9.75 8.58 2.28 6.22 +entrepont entrepont nom m s 0.13 0.74 0.13 0.68 +entreponts entrepont nom m p 0.13 0.74 0.00 0.07 +entreposage entreposage nom m s 0.11 0.00 0.11 0.00 +entreposais entreposer ver 0.94 3.31 0.00 0.07 ind:imp:1s; +entreposait entreposer ver 0.94 3.31 0.01 0.41 ind:imp:3s; +entrepose entreposer ver 0.94 3.31 0.10 0.20 ind:pre:3s; +entreposent entreposer ver 0.94 3.31 0.01 0.07 ind:pre:3p; +entreposer entreposer ver 0.94 3.31 0.36 0.68 inf; +entreposerait entreposer ver 0.94 3.31 0.00 0.07 cnd:pre:3s; +entreposez entreposer ver 0.94 3.31 0.03 0.00 imp:pre:2p;ind:pre:2p; +entreposions entreposer ver 0.94 3.31 0.01 0.07 ind:imp:1p; +entreposé entreposer ver m s 0.94 3.31 0.14 0.68 par:pas; +entreposée entreposer ver f s 0.94 3.31 0.04 0.07 par:pas; +entreposées entreposer ver f p 0.94 3.31 0.09 0.14 par:pas; +entreposés entreposer ver m p 0.94 3.31 0.15 0.88 par:pas; +entreprîmes entreprendre ver 6.78 47.84 0.12 0.14 ind:pas:1p; +entreprît entreprendre ver 6.78 47.84 0.01 0.14 sub:imp:3s; +entreprenaient entreprendre ver 6.78 47.84 0.01 0.47 ind:imp:3p; +entreprenais entreprendre ver 6.78 47.84 0.03 0.47 ind:imp:1s;ind:imp:2s; +entreprenait entreprendre ver 6.78 47.84 0.12 2.64 ind:imp:3s; +entreprenant entreprendre ver 6.78 47.84 0.46 0.88 par:pre; +entreprenante entreprenant adj f s 0.48 2.09 0.16 0.27 +entreprenantes entreprenant adj f p 0.48 2.09 0.02 0.07 +entreprenants entreprenant adj m p 0.48 2.09 0.05 0.27 +entreprend entreprendre ver 6.78 47.84 0.40 2.84 ind:pre:3s; +entreprendrai entreprendre ver 6.78 47.84 0.01 0.14 ind:fut:1s; +entreprendraient entreprendre ver 6.78 47.84 0.01 0.20 cnd:pre:3p; +entreprendrais entreprendre ver 6.78 47.84 0.02 0.14 cnd:pre:1s; +entreprendrait entreprendre ver 6.78 47.84 0.02 0.74 cnd:pre:3s; +entreprendras entreprendre ver 6.78 47.84 0.11 0.00 ind:fut:2s; +entreprendre entreprendre ver 6.78 47.84 2.38 11.42 inf; +entreprendrez entreprendre ver 6.78 47.84 0.01 0.07 ind:fut:2p; +entreprendrons entreprendre ver 6.78 47.84 0.02 0.07 ind:fut:1p; +entreprends entreprendre ver 6.78 47.84 0.64 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entrepreneur entrepreneur nom m s 4.88 2.16 3.24 1.35 +entrepreneurs entrepreneur nom m p 4.88 2.16 1.62 0.74 +entrepreneuse entrepreneur nom f s 4.88 2.16 0.03 0.00 +entrepreneuses entrepreneur nom f p 4.88 2.16 0.00 0.07 +entreprenez entreprendre ver 6.78 47.84 0.13 0.14 imp:pre:2p;ind:pre:2p; +entrepreniez entreprendre ver 6.78 47.84 0.02 0.07 ind:imp:2p; +entreprenions entreprendre ver 6.78 47.84 0.00 0.20 ind:imp:1p; +entreprenne entreprendre ver 6.78 47.84 0.01 0.41 sub:pre:1s;sub:pre:3s; +entreprennent entreprendre ver 6.78 47.84 0.07 0.74 ind:pre:3p; +entreprenons entreprendre ver 6.78 47.84 0.27 0.07 ind:pre:1p; +entreprirent entreprendre ver 6.78 47.84 0.00 1.28 ind:pas:3p; +entrepris entreprendre ver m 6.78 47.84 0.99 10.74 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +entreprise entreprise nom f s 28.36 38.31 22.79 29.05 +entreprises entreprise nom f p 28.36 38.31 5.57 9.26 +entreprit entreprendre ver 6.78 47.84 0.34 10.34 ind:pas:3s; +entrer entrer ver 450.11 398.38 160.13 109.26 inf;; +entrera entrer ver 450.11 398.38 3.06 1.76 ind:fut:3s; +entrerai entrer ver 450.11 398.38 1.84 1.28 ind:fut:1s; +entreraient entrer ver 450.11 398.38 0.05 0.61 cnd:pre:3p; +entrerais entrer ver 450.11 398.38 0.54 0.41 cnd:pre:1s;cnd:pre:2s; +entrerait entrer ver 450.11 398.38 0.58 2.23 cnd:pre:3s; +entreras entrer ver 450.11 398.38 0.68 0.81 ind:fut:2s; +entreregardèrent entreregarder ver 0.00 0.07 0.00 0.07 ind:pas:3p; +entrerez entrer ver 450.11 398.38 1.24 0.27 ind:fut:2p; +entrerions entrer ver 450.11 398.38 0.17 0.07 cnd:pre:1p; +entrerons entrer ver 450.11 398.38 0.57 0.27 ind:fut:1p; +entreront entrer ver 450.11 398.38 0.96 0.88 ind:fut:3p; +entres entrer ver 450.11 398.38 7.18 0.81 ind:pre:1p;ind:pre:2s;sub:pre:2s; +entresol entresol nom m s 0.05 1.35 0.05 1.28 +entresols entresol nom m p 0.05 1.35 0.00 0.07 +entretînmes entretenir ver 13.27 46.42 0.00 0.07 ind:pas:1p; +entretînt entretenir ver 13.27 46.42 0.00 0.14 sub:imp:3s; +entretenaient entretenir ver 13.27 46.42 0.05 2.70 ind:imp:3p; +entretenais entretenir ver 13.27 46.42 0.10 0.88 ind:imp:1s;ind:imp:2s; +entretenait entretenir ver 13.27 46.42 0.39 8.85 ind:imp:3s; +entretenant entretenir ver 13.27 46.42 0.04 1.08 par:pre; +entreteneur entreteneur nom m s 0.01 0.07 0.00 0.07 +entreteneuse entreteneur nom f s 0.01 0.07 0.01 0.00 +entretenez entretenir ver 13.27 46.42 0.27 0.14 imp:pre:2p;ind:pre:2p; +entreteniez entretenir ver 13.27 46.42 0.07 0.00 ind:imp:2p; +entretenions entretenir ver 13.27 46.42 0.10 0.61 ind:imp:1p; +entretenir entretenir ver 13.27 46.42 8.07 17.43 inf; +entretenons entretenir ver 13.27 46.42 0.09 0.14 imp:pre:1p;ind:pre:1p; +entretenu entretenir ver m s 13.27 46.42 0.42 3.24 par:pas; +entretenue entretenir ver f s 13.27 46.42 0.52 1.22 par:pas; +entretenues entretenu adj f p 0.93 4.05 0.04 0.68 +entretenus entretenir ver m p 13.27 46.42 0.08 0.95 par:pas; +entretien entretien nom m s 18.92 27.77 16.72 20.54 +entretiendra entretenir ver 13.27 46.42 0.14 0.00 ind:fut:3s; +entretiendrai entretenir ver 13.27 46.42 0.02 0.07 ind:fut:1s; +entretiendraient entretenir ver 13.27 46.42 0.00 0.14 cnd:pre:3p; +entretiendrait entretenir ver 13.27 46.42 0.02 0.20 cnd:pre:3s; +entretiendras entretenir ver 13.27 46.42 0.14 0.00 ind:fut:2s; +entretiendrez entretenir ver 13.27 46.42 0.02 0.07 ind:fut:2p; +entretiendrons entretenir ver 13.27 46.42 0.01 0.00 ind:fut:1p; +entretienne entretenir ver 13.27 46.42 0.28 0.34 sub:pre:1s;sub:pre:3s; +entretiennent entretenir ver 13.27 46.42 0.20 1.55 ind:pre:3p; +entretiennes entretenir ver 13.27 46.42 0.02 0.07 sub:pre:2s; +entretiens entretien nom m p 18.92 27.77 2.20 7.23 +entretient entretenir ver 13.27 46.42 1.27 3.38 ind:pre:3s; +entretinrent entretenir ver 13.27 46.42 0.00 0.34 ind:pas:3p; +entretins entretenir ver 13.27 46.42 0.01 0.14 ind:pas:1s; +entretint entretenir ver 13.27 46.42 0.00 1.01 ind:pas:3s; +entretissait entretisser ver 0.00 0.27 0.00 0.07 ind:imp:3s; +entretissé entretisser ver m s 0.00 0.27 0.00 0.14 par:pas; +entretissées entretisser ver f p 0.00 0.27 0.00 0.07 par:pas; +entretoisaient entretoiser ver 0.00 0.07 0.00 0.07 ind:imp:3p; +entretoise entretoise nom f s 0.01 0.00 0.01 0.00 +entretoisement entretoisement nom m s 0.00 0.07 0.00 0.07 +entretuaient entretuer ver 4.54 0.34 0.09 0.00 ind:imp:3p; +entretuant entretuer ver 4.54 0.34 0.13 0.00 par:pre; +entretue entretuer ver 4.54 0.34 0.28 0.00 ind:pre:3s; +entretuent entretuer ver 4.54 0.34 0.89 0.07 ind:pre:3p; +entretuer entretuer ver 4.54 0.34 2.79 0.20 ind:pre:2p;inf; +entretueraient entretuer ver 4.54 0.34 0.01 0.00 cnd:pre:3p; +entretuerait entretuer ver 4.54 0.34 0.01 0.07 cnd:pre:3s; +entretueront entretuer ver 4.54 0.34 0.04 0.00 ind:fut:3p; +entretuez entretuer ver 4.54 0.34 0.07 0.00 imp:pre:2p;ind:pre:2p; +entretuées entretuer ver f p 4.54 0.34 0.10 0.00 par:pas; +entretués entretuer ver m p 4.54 0.34 0.14 0.00 par:pas; +entrevît entrevoir ver 2.44 29.53 0.03 0.07 sub:imp:3s; +entreverrai entrevoir ver 2.44 29.53 0.00 0.07 ind:fut:1s; +entrevirent entrevoir ver 2.44 29.53 0.00 0.07 ind:pas:3p; +entrevis entrevoir ver 2.44 29.53 0.03 1.08 ind:pas:1s; +entrevit entrevoir ver 2.44 29.53 0.04 2.23 ind:pas:3s; +entrevoie entrevoir ver 2.44 29.53 0.00 0.07 sub:pre:3s; +entrevoient entrevoir ver 2.44 29.53 0.02 0.41 ind:pre:3p; +entrevoir entrevoir ver 2.44 29.53 1.00 8.65 inf; +entrevois entrevoir ver 2.44 29.53 0.81 1.96 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entrevoit entrevoir ver 2.44 29.53 0.15 1.55 ind:pre:3s; +entrevous entrevous nom m 0.01 0.00 0.01 0.00 +entrevoyaient entrevoir ver 2.44 29.53 0.00 0.27 ind:imp:3p; +entrevoyais entrevoir ver 2.44 29.53 0.14 1.62 ind:imp:1s; +entrevoyait entrevoir ver 2.44 29.53 0.02 1.69 ind:imp:3s; +entrevoyant entrevoir ver 2.44 29.53 0.00 0.34 par:pre; +entrevoyons entrevoir ver 2.44 29.53 0.00 0.20 ind:pre:1p; +entrevu entrevoir ver m s 2.44 29.53 0.17 4.86 par:pas; +entrevue entrevue nom f s 3.28 9.59 2.97 8.85 +entrevues entrevue nom f p 3.28 9.59 0.31 0.74 +entrevus entrevoir ver m p 2.44 29.53 0.00 1.15 par:pas; +entrez entrer ver 450.11 398.38 104.85 12.70 imp:pre:2p;ind:pre:2p; +entriez entrer ver 450.11 398.38 0.29 0.20 ind:imp:2p; +entrions entrer ver 450.11 398.38 0.12 2.09 ind:imp:1p; +entrisme entrisme nom m s 0.00 0.07 0.00 0.07 +entrâmes entrer ver 450.11 398.38 0.00 1.15 ind:pas:1p; +entrons entrer ver 450.11 398.38 6.05 4.39 imp:pre:1p;ind:pre:1p; +entropie entropie nom f s 0.19 0.27 0.19 0.27 +entropique entropique adj s 0.07 0.00 0.05 0.00 +entropiques entropique adj f p 0.07 0.00 0.01 0.00 +entrât entrer ver 450.11 398.38 0.14 0.95 sub:imp:3s; +entrouvert entrouvrir ver m s 0.95 19.59 0.10 1.62 par:pas; +entrouverte entrouvert adj f s 0.70 10.07 0.47 6.55 +entrouvertes entrouvert adj f p 0.70 10.07 0.11 2.09 +entrouverts entrouvert adj m p 0.70 10.07 0.10 0.54 +entrouverture entrouverture nom f s 0.00 0.07 0.00 0.07 +entrouvrît entrouvrir ver 0.95 19.59 0.00 0.07 sub:imp:3s; +entrouvraient entrouvrir ver 0.95 19.59 0.00 0.47 ind:imp:3p; +entrouvrait entrouvrir ver 0.95 19.59 0.14 1.76 ind:imp:3s; +entrouvrant entrouvrir ver 0.95 19.59 0.00 0.68 par:pre; +entrouvre entrouvrir ver 0.95 19.59 0.20 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entrouvrent entrouvrir ver 0.95 19.59 0.02 0.81 ind:pre:3p; +entrouvrir entrouvrir ver 0.95 19.59 0.21 2.30 inf; +entrouvrirait entrouvrir ver 0.95 19.59 0.00 0.07 cnd:pre:3s; +entrouvrirent entrouvrir ver 0.95 19.59 0.00 0.14 ind:pas:3p; +entrouvris entrouvrir ver 0.95 19.59 0.00 0.14 ind:pas:1s; +entrouvrit entrouvrir ver 0.95 19.59 0.00 3.72 ind:pas:3s; +entrèrent entrer ver 450.11 398.38 0.20 10.61 ind:pas:3p; +entré entrer ver m s 450.11 398.38 36.90 32.43 par:pas; +entrée_sortie entrée_sortie nom f s 0.01 0.00 0.01 0.00 +entrée entrée nom f s 48.08 118.78 43.75 113.72 +entrées entrée nom f p 48.08 118.78 4.33 5.07 +entrés entrer ver m p 450.11 398.38 8.81 11.22 par:pas; +entubait entuber ver 3.11 1.35 0.02 0.07 ind:imp:3s; +entube entuber ver 3.11 1.35 0.52 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entubent entuber ver 3.11 1.35 0.12 0.00 ind:pre:3p; +entuber entuber ver 3.11 1.35 1.77 0.68 inf; +entuberais entuber ver 3.11 1.35 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +entubes entuber ver 3.11 1.35 0.18 0.00 ind:pre:2s; +entubez entuber ver 3.11 1.35 0.04 0.00 imp:pre:2p;ind:pre:2p; +entubé entuber ver m s 3.11 1.35 0.32 0.20 par:pas; +entubée entuber ver f s 3.11 1.35 0.03 0.07 par:pas; +entubés entuber ver m p 3.11 1.35 0.08 0.00 par:pas; +entéléchies entéléchie nom f p 0.00 0.07 0.00 0.07 +enténèbre enténébrer ver 0.14 2.36 0.14 0.14 ind:pre:3s; +enténèbrent enténébrer ver 0.14 2.36 0.00 0.07 ind:pre:3p; +enténébra enténébrer ver 0.14 2.36 0.00 0.07 ind:pas:3s; +enténébrait enténébrer ver 0.14 2.36 0.00 0.20 ind:imp:3s; +enténébrant enténébrer ver 0.14 2.36 0.00 0.34 par:pre; +enténébrer enténébrer ver 0.14 2.36 0.00 0.14 inf; +enténébré enténébrer ver m s 0.14 2.36 0.01 0.54 par:pas; +enténébrée enténébrer ver f s 0.14 2.36 0.00 0.54 par:pas; +enténébrées enténébrer ver f p 0.14 2.36 0.00 0.14 par:pas; +enténébrés enténébrer ver m p 0.14 2.36 0.00 0.20 par:pas; +enturbanner enturbanner ver 0.01 0.54 0.00 0.07 inf; +enturbanné enturbanné adj m s 0.06 1.22 0.05 0.47 +enturbannée enturbanner ver f s 0.01 0.54 0.01 0.07 par:pas; +enturbannées enturbanné adj f p 0.06 1.22 0.00 0.07 +enturbannés enturbanné adj m p 0.06 1.22 0.01 0.41 +enture enture nom f s 0.14 0.00 0.14 0.00 +entérinais entériner ver 0.52 1.35 0.00 0.14 ind:imp:1s; +entérinait entériner ver 0.52 1.35 0.00 0.20 ind:imp:3s; +entérinant entériner ver 0.52 1.35 0.00 0.07 par:pre; +entérine entériner ver 0.52 1.35 0.03 0.00 ind:pre:3s; +entérinement entérinement nom m s 0.00 0.07 0.00 0.07 +entériner entériner ver 0.52 1.35 0.42 0.41 inf; +entériné entériner ver m s 0.52 1.35 0.04 0.27 par:pas; +entérinée entériner ver f s 0.52 1.35 0.03 0.14 par:pas; +entérinées entériner ver f p 0.52 1.35 0.00 0.14 par:pas; +entérique entérique adj s 0.01 0.00 0.01 0.00 +entérite entérite nom f s 0.01 0.14 0.01 0.14 +entérocolite entérocolite nom f s 0.01 0.00 0.01 0.00 +entérovirus entérovirus nom m 0.03 0.00 0.03 0.00 +entêta entêter ver 1.65 6.89 0.00 0.27 ind:pas:3s; +entêtai entêter ver 1.65 6.89 0.00 0.41 ind:pas:1s; +entêtaient entêter ver 1.65 6.89 0.00 0.34 ind:imp:3p; +entêtais entêter ver 1.65 6.89 0.00 0.07 ind:imp:1s; +entêtait entêter ver 1.65 6.89 0.00 1.62 ind:imp:3s; +entêtant entêtant adj m s 0.05 2.09 0.04 0.47 +entêtante entêtant adj f s 0.05 2.09 0.01 1.08 +entêtantes entêtant adj f p 0.05 2.09 0.00 0.20 +entêtants entêtant adj m p 0.05 2.09 0.00 0.34 +entête entêter ver 1.65 6.89 0.38 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entêtement entêtement nom m s 1.27 5.74 1.27 5.61 +entêtements entêtement nom m p 1.27 5.74 0.00 0.14 +entêtent entêter ver 1.65 6.89 0.14 0.07 ind:pre:3p; +entêter entêter ver 1.65 6.89 0.18 0.95 inf; +entêteraient entêter ver 1.65 6.89 0.00 0.07 cnd:pre:3p; +entêterais entêter ver 1.65 6.89 0.00 0.07 cnd:pre:1s; +entêtes entêter ver 1.65 6.89 0.42 0.14 ind:pre:2s; +entêtez entêter ver 1.65 6.89 0.16 0.14 ind:pre:2p; +entêtiez entêter ver 1.65 6.89 0.00 0.07 ind:imp:2p; +entêtons entêter ver 1.65 6.89 0.00 0.20 ind:pre:1p; +entêtât entêter ver 1.65 6.89 0.00 0.07 sub:imp:3s; +entêté entêté nom m s 0.73 0.81 0.58 0.68 +entêtée entêté adj f s 0.38 1.35 0.08 0.74 +entêtées entêté adj f p 0.38 1.35 0.01 0.14 +entêtés entêté nom m p 0.73 0.81 0.15 0.07 +envahît envahir ver 17.37 57.70 0.00 0.14 sub:imp:3s; +envahi envahir ver m s 17.37 57.70 4.98 11.76 par:pas; +envahie envahir ver f s 17.37 57.70 1.11 5.88 par:pas; +envahies envahir ver f p 17.37 57.70 0.26 1.69 par:pas; +envahir envahir ver 17.37 57.70 3.83 8.31 inf; +envahira envahir ver 17.37 57.70 0.26 0.20 ind:fut:3s; +envahirai envahir ver 17.37 57.70 0.03 0.00 ind:fut:1s; +envahiraient envahir ver 17.37 57.70 0.00 0.20 cnd:pre:3p; +envahirait envahir ver 17.37 57.70 0.03 0.34 cnd:pre:3s; +envahirent envahir ver 17.37 57.70 0.25 1.28 ind:pas:3p; +envahirez envahir ver 17.37 57.70 0.01 0.00 ind:fut:2p; +envahirons envahir ver 17.37 57.70 0.02 0.07 ind:fut:1p; +envahiront envahir ver 17.37 57.70 0.24 0.00 ind:fut:3p; +envahis envahir ver m p 17.37 57.70 0.91 1.89 ind:pre:1s;ind:pre:2s;par:pas;par:pas; +envahissaient envahir ver 17.37 57.70 0.24 1.96 ind:imp:3p; +envahissait envahir ver 17.37 57.70 0.62 8.72 ind:imp:3s; +envahissant envahissant adj m s 1.08 3.18 0.33 0.88 +envahissante envahissant adj f s 1.08 3.18 0.70 1.42 +envahissantes envahissant adj f p 1.08 3.18 0.04 0.27 +envahissants envahissant adj m p 1.08 3.18 0.01 0.61 +envahisse envahir ver 17.37 57.70 0.11 0.34 sub:pre:1s;sub:pre:3s; +envahissement envahissement nom m s 0.02 1.49 0.02 1.42 +envahissements envahissement nom m p 0.02 1.49 0.00 0.07 +envahissent envahir ver 17.37 57.70 1.05 1.96 ind:pre:3p; +envahisseur envahisseur nom m s 3.64 8.31 1.88 6.42 +envahisseurs envahisseur nom m p 3.64 8.31 1.77 1.89 +envahissez envahir ver 17.37 57.70 0.24 0.00 imp:pre:2p;ind:pre:2p; +envahissiez envahir ver 17.37 57.70 0.02 0.00 ind:imp:2p; +envahit envahir ver 17.37 57.70 2.97 12.36 ind:pre:3s;ind:pas:3s; +envasait envaser ver 0.01 0.41 0.00 0.07 ind:imp:3s; +envasement envasement nom m s 0.00 0.07 0.00 0.07 +envaser envaser ver 0.01 0.41 0.01 0.00 inf; +envasé envaser ver m s 0.01 0.41 0.00 0.20 par:pas; +envasée envaser ver f s 0.01 0.41 0.00 0.07 par:pas; +envasées envaser ver f p 0.01 0.41 0.00 0.07 par:pas; +enveloppa envelopper ver 5.21 46.49 0.17 4.39 ind:pas:3s; +enveloppai envelopper ver 5.21 46.49 0.14 0.34 ind:pas:1s; +enveloppaient envelopper ver 5.21 46.49 0.04 2.03 ind:imp:3p; +enveloppais envelopper ver 5.21 46.49 0.06 0.20 ind:imp:1s;ind:imp:2s; +enveloppait envelopper ver 5.21 46.49 0.20 9.12 ind:imp:3s; +enveloppant envelopper ver 5.21 46.49 0.04 1.69 par:pre; +enveloppante enveloppant adj f s 0.27 1.62 0.23 0.68 +enveloppantes enveloppant adj f p 0.27 1.62 0.00 0.07 +enveloppants enveloppant adj m p 0.27 1.62 0.00 0.27 +enveloppe enveloppe nom f s 13.23 32.84 11.40 26.22 +enveloppement enveloppement nom m s 0.16 0.95 0.16 0.61 +enveloppements enveloppement nom m p 0.16 0.95 0.00 0.34 +enveloppent envelopper ver 5.21 46.49 0.34 1.35 ind:pre:3p; +envelopper envelopper ver 5.21 46.49 0.65 4.39 inf; +enveloppera envelopper ver 5.21 46.49 0.01 0.14 ind:fut:3s; +envelopperaient envelopper ver 5.21 46.49 0.14 0.07 cnd:pre:3p; +envelopperait envelopper ver 5.21 46.49 0.02 0.54 cnd:pre:3s; +envelopperez envelopper ver 5.21 46.49 0.00 0.07 ind:fut:2p; +enveloppes enveloppe nom f p 13.23 32.84 1.84 6.62 +enveloppeur enveloppeur nom m s 0.00 0.07 0.00 0.07 +enveloppez envelopper ver 5.21 46.49 0.41 0.14 imp:pre:2p;ind:pre:2p; +enveloppons envelopper ver 5.21 46.49 0.00 0.07 ind:pre:1p; +enveloppât envelopper ver 5.21 46.49 0.00 0.14 sub:imp:3s; +enveloppèrent envelopper ver 5.21 46.49 0.11 0.20 ind:pas:3p; +enveloppé enveloppé adj m s 1.60 10.34 0.86 4.59 +enveloppée envelopper ver f s 5.21 46.49 0.58 4.32 par:pas; +enveloppées enveloppé adj f p 1.60 10.34 0.20 0.74 +enveloppés envelopper ver m p 5.21 46.49 0.26 2.23 par:pas; +envenima envenimer ver 0.59 1.96 0.00 0.07 ind:pas:3s; +envenimait envenimer ver 0.59 1.96 0.00 0.20 ind:imp:3s; +envenimant envenimer ver 0.59 1.96 0.00 0.07 par:pre; +envenime envenimer ver 0.59 1.96 0.09 0.14 imp:pre:2s;ind:pre:3s; +enveniment envenimer ver 0.59 1.96 0.04 0.20 ind:pre:3p; +envenimer envenimer ver 0.59 1.96 0.28 0.95 inf; +envenimons envenimer ver 0.59 1.96 0.01 0.00 imp:pre:1p; +envenimèrent envenimer ver 0.59 1.96 0.00 0.07 ind:pas:3p; +envenimé envenimé ver m s 0.27 0.00 0.27 0.00 par:pas; +envenimée envenimé adj f s 0.04 0.00 0.03 0.00 +envenimées envenimer ver f p 0.59 1.96 0.10 0.00 par:pas; +envenimés envenimer ver m p 0.59 1.96 0.01 0.07 par:pas; +envergure envergure nom f s 1.66 5.34 1.66 5.34 +enverguée enverguer ver f s 0.00 0.07 0.00 0.07 par:pas; +enverra envoyer ver 360.16 177.64 5.89 2.03 ind:fut:3s; +enverrai envoyer ver 360.16 177.64 10.43 2.70 ind:fut:1s; +enverraient envoyer ver 360.16 177.64 0.20 0.34 cnd:pre:3p; +enverrais envoyer ver 360.16 177.64 1.68 0.41 cnd:pre:1s;cnd:pre:2s; +enverrait envoyer ver 360.16 177.64 1.77 2.77 cnd:pre:3s; +enverras envoyer ver 360.16 177.64 1.30 0.47 ind:fut:2s; +enverrez envoyer ver 360.16 177.64 1.04 0.34 ind:fut:2p; +enverriez envoyer ver 360.16 177.64 0.12 0.00 cnd:pre:2p; +enverrions envoyer ver 360.16 177.64 0.00 0.20 cnd:pre:1p; +enverrons envoyer ver 360.16 177.64 1.30 0.20 ind:fut:1p; +enverront envoyer ver 360.16 177.64 1.93 0.81 ind:fut:3p; +envers envers pre 35.46 27.91 35.46 27.91 +envia envier ver 17.79 26.89 0.00 0.47 ind:pas:3s; +enviable enviable adj s 0.75 2.84 0.73 2.43 +enviables enviable adj p 0.75 2.84 0.02 0.41 +enviai envier ver 17.79 26.89 0.00 0.47 ind:pas:1s; +enviaient envier ver 17.79 26.89 0.01 0.88 ind:imp:3p; +enviais envier ver 17.79 26.89 0.56 2.84 ind:imp:1s;ind:imp:2s; +enviait envier ver 17.79 26.89 0.34 2.84 ind:imp:3s; +enviandait enviander ver 0.00 0.07 0.00 0.07 ind:imp:3s; +enviandé enviandé nom m s 0.02 0.34 0.02 0.20 +enviandés enviandé nom m p 0.02 0.34 0.00 0.14 +enviant envier ver 17.79 26.89 0.01 0.47 par:pre; +envie envie nom f s 213.96 258.11 210.62 252.09 +envient envier ver 17.79 26.89 0.42 0.20 ind:pre:3p; +envier envier ver 17.79 26.89 1.50 3.51 inf; +enviera envier ver 17.79 26.89 0.23 0.07 ind:fut:3s; +envieraient envier ver 17.79 26.89 0.04 0.34 cnd:pre:3p; +envierais envier ver 17.79 26.89 0.11 0.07 cnd:pre:1s; +envierait envier ver 17.79 26.89 0.02 0.27 cnd:pre:3s; +envieront envier ver 17.79 26.89 0.32 0.07 ind:fut:3p; +envies envie nom f p 213.96 258.11 3.34 6.01 +envieuse envieux adj f s 1.04 1.76 0.20 0.54 +envieuses envieux adj f p 1.04 1.76 0.20 0.00 +envieux envieux adj m 1.04 1.76 0.64 1.22 +enviez envier ver 17.79 26.89 0.42 0.14 imp:pre:2p;ind:pre:2p; +enviions envier ver 17.79 26.89 0.00 0.07 ind:imp:1p; +envions envier ver 17.79 26.89 0.05 0.00 imp:pre:1p;ind:pre:1p; +enviât envier ver 17.79 26.89 0.00 0.07 sub:imp:3s; +environ environ adv_sup 55.55 27.43 55.55 27.43 +environnaient environner ver 0.28 5.47 0.00 0.47 ind:imp:3p; +environnait environner ver 0.28 5.47 0.00 0.88 ind:imp:3s; +environnant environnant adj m s 0.66 2.23 0.17 0.47 +environnante environnant adj f s 0.66 2.23 0.29 0.54 +environnantes environnant adj f p 0.66 2.23 0.07 0.61 +environnants environnant adj m p 0.66 2.23 0.12 0.61 +environne environner ver 0.28 5.47 0.28 0.88 ind:pre:1s;ind:pre:3s; +environnement environnement nom m s 10.19 2.77 10.07 2.64 +environnemental environnemental adj m s 0.46 0.00 0.16 0.00 +environnementale environnemental adj f s 0.46 0.00 0.12 0.00 +environnementaux environnemental adj m p 0.46 0.00 0.18 0.00 +environnements environnement nom m p 10.19 2.77 0.12 0.14 +environnent environner ver 0.28 5.47 0.00 0.47 ind:pre:3p; +environner environner ver 0.28 5.47 0.00 0.07 inf; +environné environner ver m s 0.28 5.47 0.00 1.49 par:pas; +environnée environner ver f s 0.28 5.47 0.00 0.41 par:pas; +environnées environner ver f p 0.28 5.47 0.00 0.07 par:pas; +environnés environner ver m p 0.28 5.47 0.00 0.54 par:pas; +environs environ nom_sup m p 6.25 16.69 6.25 16.69 +envisage envisager ver 16.42 32.64 3.40 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +envisagea envisager ver 16.42 32.64 0.02 1.22 ind:pas:3s; +envisageable envisageable adj s 0.85 0.74 0.80 0.74 +envisageables envisageable adj f p 0.85 0.74 0.04 0.00 +envisageai envisager ver 16.42 32.64 0.02 0.81 ind:pas:1s; +envisageaient envisager ver 16.42 32.64 0.07 0.68 ind:imp:3p; +envisageais envisager ver 16.42 32.64 0.61 1.55 ind:imp:1s;ind:imp:2s; +envisageait envisager ver 16.42 32.64 0.47 5.47 ind:imp:3s; +envisageant envisager ver 16.42 32.64 0.01 0.81 par:pre; +envisagent envisager ver 16.42 32.64 0.44 0.41 ind:pre:3p; +envisageons envisager ver 16.42 32.64 0.30 0.34 imp:pre:1p;ind:pre:1p; +envisageât envisager ver 16.42 32.64 0.00 0.20 sub:imp:3s; +envisager envisager ver 16.42 32.64 4.83 9.39 inf; +envisagera envisager ver 16.42 32.64 0.14 0.07 ind:fut:3s; +envisagerai envisager ver 16.42 32.64 0.05 0.00 ind:fut:1s; +envisagerais envisager ver 16.42 32.64 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +envisagerait envisager ver 16.42 32.64 0.05 0.27 cnd:pre:3s; +envisageras envisager ver 16.42 32.64 0.01 0.00 ind:fut:2s; +envisagerez envisager ver 16.42 32.64 0.04 0.00 ind:fut:2p; +envisageriez envisager ver 16.42 32.64 0.17 0.00 cnd:pre:2p; +envisagerions envisager ver 16.42 32.64 0.00 0.14 cnd:pre:1p; +envisages envisager ver 16.42 32.64 1.35 0.27 ind:pre:2s; +envisagez envisager ver 16.42 32.64 1.11 0.68 imp:pre:2p;ind:pre:2p; +envisagiez envisager ver 16.42 32.64 0.20 0.00 ind:imp:2p; +envisagions envisager ver 16.42 32.64 0.04 0.54 ind:imp:1p; +envisagèrent envisager ver 16.42 32.64 0.01 0.27 ind:pas:3p; +envisagé envisager ver m s 16.42 32.64 2.61 3.58 par:pas; +envisagée envisager ver f s 16.42 32.64 0.19 1.22 par:pas; +envisagées envisager ver f p 16.42 32.64 0.04 0.41 par:pas; +envisagés envisager ver m p 16.42 32.64 0.01 0.20 par:pas; +envié envier ver m s 17.79 26.89 0.71 1.15 par:pas; +enviée envier ver f s 17.79 26.89 0.30 0.81 par:pas; +enviées envier ver f p 17.79 26.89 0.01 0.14 par:pas; +enviés envier ver m p 17.79 26.89 0.04 0.54 par:pas; +envoûtaient envoûter ver 1.81 2.16 0.00 0.07 ind:imp:3p; +envoûtait envoûter ver 1.81 2.16 0.01 0.14 ind:imp:3s; +envoûtant envoûtant adj m s 0.79 1.49 0.56 0.34 +envoûtante envoûtant adj f s 0.79 1.49 0.21 0.95 +envoûtantes envoûtant adj f p 0.79 1.49 0.00 0.07 +envoûtants envoûtant adj m p 0.79 1.49 0.02 0.14 +envoûte envoûter ver 1.81 2.16 0.32 0.34 ind:pre:1s;ind:pre:3s; +envoûtement envoûtement nom m s 0.71 1.82 0.56 1.76 +envoûtements envoûtement nom m p 0.71 1.82 0.14 0.07 +envoûter envoûter ver 1.81 2.16 0.12 0.34 inf; +envoûteras envoûter ver 1.81 2.16 0.01 0.00 ind:fut:2s; +envoûteur envoûteur nom m s 0.00 0.27 0.00 0.14 +envoûteurs envoûteur nom m p 0.00 0.27 0.00 0.14 +envoûté envoûter ver m s 1.81 2.16 0.88 0.61 par:pas; +envoûtée envoûter ver f s 1.81 2.16 0.44 0.14 par:pas; +envoûtées envoûter ver f p 1.81 2.16 0.00 0.14 par:pas; +envoûtés envoûter ver m p 1.81 2.16 0.03 0.27 par:pas; +envoi envoi nom m s 4.46 6.96 3.47 6.28 +envoie envoyer ver 360.16 177.64 98.92 30.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +envoient envoyer ver 360.16 177.64 9.16 4.32 ind:pre:3p; +envoies envoyer ver 360.16 177.64 6.24 0.61 ind:pre:1p;ind:pre:2s;sub:pre:2s; +envois envoi nom m p 4.46 6.96 1.00 0.68 +envol envol nom m s 2.50 5.20 2.48 4.66 +envola envoler ver 28.82 29.86 0.43 2.43 ind:pas:3s; +envolai envoler ver 28.82 29.86 0.00 0.34 ind:pas:1s; +envolaient envoler ver 28.82 29.86 0.35 2.50 ind:imp:3p; +envolais envoler ver 28.82 29.86 0.03 0.20 ind:imp:1s;ind:imp:2s; +envolait envoler ver 28.82 29.86 0.29 2.16 ind:imp:3s; +envolant envoler ver 28.82 29.86 0.38 0.47 par:pre; +envole envoler ver 28.82 29.86 5.39 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +envolent envoler ver 28.82 29.86 4.47 2.30 ind:pre:3p; +envoler envoler ver 28.82 29.86 5.85 6.35 ind:pre:2p;inf; +envolera envoler ver 28.82 29.86 0.55 0.34 ind:fut:3s; +envolerai envoler ver 28.82 29.86 0.21 0.07 ind:fut:1s; +envoleraient envoler ver 28.82 29.86 0.00 0.41 cnd:pre:3p; +envolerais envoler ver 28.82 29.86 0.06 0.07 cnd:pre:1s; +envolerait envoler ver 28.82 29.86 0.08 0.14 cnd:pre:3s; +envolerez envoler ver 28.82 29.86 0.01 0.07 ind:fut:2p; +envolerions envoler ver 28.82 29.86 0.02 0.14 cnd:pre:1p; +envolerons envoler ver 28.82 29.86 0.05 0.00 ind:fut:1p; +envoleront envoler ver 28.82 29.86 0.04 0.07 ind:fut:3p; +envoles envoler ver 28.82 29.86 0.45 0.00 ind:pre:2s; +envolez envoler ver 28.82 29.86 0.58 0.00 imp:pre:2p;ind:pre:2p; +envolâmes envoler ver 28.82 29.86 0.00 0.07 ind:pas:1p; +envolons envoler ver 28.82 29.86 0.04 0.00 imp:pre:1p;ind:pre:1p; +envolât envoler ver 28.82 29.86 0.00 0.07 sub:imp:3s; +envols envol nom m p 2.50 5.20 0.03 0.54 +envolèrent envoler ver 28.82 29.86 0.01 1.62 ind:pas:3p; +envolé envoler ver m s 28.82 29.86 5.05 2.84 par:pas; +envolée envoler ver f s 28.82 29.86 1.62 1.62 par:pas; +envolées envolée nom f p 0.88 3.18 0.33 1.01 +envolés envoler ver m p 28.82 29.86 2.63 1.28 par:pas; +envoya envoyer ver 360.16 177.64 1.96 11.69 ind:pas:3s; +envoyai envoyer ver 360.16 177.64 0.26 2.30 ind:pas:1s; +envoyaient envoyer ver 360.16 177.64 0.62 2.91 ind:imp:3p; +envoyais envoyer ver 360.16 177.64 1.58 1.82 ind:imp:1s;ind:imp:2s; +envoyait envoyer ver 360.16 177.64 3.84 14.66 ind:imp:3s; +envoyant envoyer ver 360.16 177.64 1.91 4.26 par:pre; +envoyer envoyer ver 360.16 177.64 69.77 41.15 inf;;inf;;inf;;inf;;inf;;inf;;inf;; +envoyeur envoyeur nom m s 0.21 0.41 0.21 0.34 +envoyeurs envoyeur nom m p 0.21 0.41 0.00 0.07 +envoyez envoyer ver 360.16 177.64 31.66 2.23 imp:pre:2p;ind:pre:2p; +envoyiez envoyer ver 360.16 177.64 0.55 0.00 ind:imp:2p; +envoyions envoyer ver 360.16 177.64 0.16 0.07 ind:imp:1p; +envoyâmes envoyer ver 360.16 177.64 0.01 0.20 ind:pas:1p; +envoyons envoyer ver 360.16 177.64 2.31 0.20 imp:pre:1p;ind:pre:1p; +envoyât envoyer ver 360.16 177.64 0.00 0.68 sub:imp:3s; +envoyèrent envoyer ver 360.16 177.64 0.26 0.95 ind:pas:3p; +envoyé envoyer ver m s 360.16 177.64 82.52 35.20 par:pas; +envoyée envoyer ver f s 360.16 177.64 12.19 5.27 par:pas; +envoyées envoyer ver f p 360.16 177.64 1.97 2.57 par:pas; +envoyés envoyer ver m p 360.16 177.64 8.63 5.41 par:pas; +enzymatique enzymatique adj s 0.06 0.00 0.06 0.00 +enzyme enzyme nom f s 2.00 0.34 1.26 0.00 +enzymes enzyme nom f p 2.00 0.34 0.75 0.34 +epsilon epsilon nom m 0.47 0.20 0.47 0.20 +erg erg nom m s 0.02 0.07 0.01 0.00 +ergastule ergastule nom m s 0.00 0.20 0.00 0.07 +ergastules ergastule nom m p 0.00 0.20 0.00 0.14 +ergo ergo adv 0.22 0.34 0.22 0.34 +ergol ergol nom m s 0.01 0.00 0.01 0.00 +ergonomie ergonomie nom f s 0.06 0.07 0.06 0.07 +ergonomique ergonomique adj s 0.08 0.00 0.08 0.00 +ergot ergot nom m s 0.08 1.08 0.04 0.07 +ergotage ergotage nom m s 0.01 0.00 0.01 0.00 +ergotait ergoter ver 0.43 0.68 0.00 0.07 ind:imp:3s; +ergotamine ergotamine nom f s 0.02 0.00 0.02 0.00 +ergote ergoter ver 0.43 0.68 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ergotent ergoter ver 0.43 0.68 0.00 0.07 ind:pre:3p; +ergoter ergoter ver 0.43 0.68 0.16 0.27 inf; +ergoteur ergoteur adj m s 0.02 0.27 0.02 0.07 +ergoteurs ergoteur adj m p 0.02 0.27 0.00 0.07 +ergoteuse ergoteur adj f s 0.02 0.27 0.00 0.14 +ergothérapeute ergothérapeute nom s 0.06 0.00 0.06 0.00 +ergothérapie ergothérapie nom f s 0.07 0.00 0.07 0.00 +ergotons ergoter ver 0.43 0.68 0.10 0.07 imp:pre:1p; +ergots ergot nom m p 0.08 1.08 0.04 1.01 +ergoté ergoté adj m s 0.14 0.00 0.14 0.00 +ergs erg nom m p 0.02 0.07 0.01 0.07 +ermitage ermitage nom m s 0.04 1.69 0.04 1.35 +ermitages ermitage nom m p 0.04 1.69 0.00 0.34 +ermite ermite nom m s 2.28 2.50 2.23 2.03 +ermites ermite nom m p 2.28 2.50 0.05 0.47 +erpétologiste erpétologiste nom s 0.02 0.00 0.02 0.00 +erra errer ver 10.44 27.36 0.41 2.16 ind:pas:3s; +errai errer ver 10.44 27.36 0.04 0.54 ind:pas:1s; +erraient errer ver 10.44 27.36 0.15 2.23 ind:imp:3p; +errais errer ver 10.44 27.36 0.12 1.28 ind:imp:1s;ind:imp:2s; +errait errer ver 10.44 27.36 0.36 3.18 ind:imp:3s; +errance errance nom f s 0.54 4.46 0.51 2.91 +errances errance nom f p 0.54 4.46 0.03 1.55 +errant errant adj m s 2.62 11.96 1.45 3.18 +errante errant adj f s 2.62 11.96 0.47 4.59 +errantes errant adj f p 2.62 11.96 0.04 1.28 +errants errant adj m p 2.62 11.96 0.66 2.91 +errata erratum nom m p 0.02 0.27 0.00 0.27 +erratique erratique adj s 0.22 0.54 0.17 0.20 +erratiques erratique adj p 0.22 0.54 0.04 0.34 +erratum erratum nom m s 0.02 0.27 0.02 0.00 +erre errer ver 10.44 27.36 3.17 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +errements errements nom m p 0.08 1.22 0.08 1.22 +errent errer ver 10.44 27.36 0.99 1.62 ind:pre:3p; +errer errer ver 10.44 27.36 2.44 6.62 inf; +errera errer ver 10.44 27.36 0.14 0.00 ind:fut:3s; +errerai errer ver 10.44 27.36 0.03 0.07 ind:fut:1s; +erreraient errer ver 10.44 27.36 0.00 0.07 cnd:pre:3p; +errerait errer ver 10.44 27.36 0.00 0.07 cnd:pre:3s; +erreras errer ver 10.44 27.36 0.01 0.07 ind:fut:2s; +errerons errer ver 10.44 27.36 0.01 0.00 ind:fut:1p; +erreront errer ver 10.44 27.36 0.01 0.07 ind:fut:3p; +erres errer ver 10.44 27.36 0.23 0.07 ind:pre:2s; +erreur erreur nom f s 124.15 52.09 101.33 37.84 +erreurs erreur nom f p 124.15 52.09 22.82 14.26 +errez errer ver 10.44 27.36 0.10 0.14 imp:pre:2p;ind:pre:2p; +erriez errer ver 10.44 27.36 0.04 0.00 ind:imp:2p; +errions errer ver 10.44 27.36 0.14 0.14 ind:imp:1p; +errâmes errer ver 10.44 27.36 0.00 0.20 ind:pas:1p; +errons errer ver 10.44 27.36 0.05 0.27 imp:pre:1p;ind:pre:1p; +erroné erroné adj m s 2.05 0.74 0.54 0.27 +erronée erroné adj f s 2.05 0.74 0.44 0.07 +erronées erroné adj f p 2.05 0.74 0.68 0.27 +erronés erroné adj m p 2.05 0.74 0.40 0.14 +errèrent errer ver 10.44 27.36 0.01 0.41 ind:pas:3p; +erré errer ver m s 10.44 27.36 0.90 2.57 par:pas; +errés errer ver m p 10.44 27.36 0.01 0.00 par:pas; +ers ers nom m 0.45 0.00 0.45 0.00 +ersatz ersatz nom m 0.21 1.62 0.21 1.62 +es être aux 8074.24 6501.82 539.36 77.70 ind:pre:2s; +esbaudir esbaudir ver 0.00 0.07 0.00 0.07 inf; +esbignais esbigner ver 0.00 0.95 0.00 0.14 ind:imp:1s; +esbignait esbigner ver 0.00 0.95 0.00 0.07 ind:imp:3s; +esbigne esbigner ver 0.00 0.95 0.00 0.20 ind:pre:3s; +esbignent esbigner ver 0.00 0.95 0.00 0.07 ind:pre:3p; +esbigner esbigner ver 0.00 0.95 0.00 0.20 inf; +esbigné esbigner ver m s 0.00 0.95 0.00 0.27 par:pas; +esbroufe esbroufe nom f s 0.20 0.20 0.20 0.20 +esbroufer esbroufer ver 0.10 0.14 0.00 0.07 inf; +esbroufeur esbroufeur nom m s 0.03 0.00 0.02 0.00 +esbroufeurs esbroufeur nom m p 0.03 0.00 0.01 0.00 +esbroufée esbroufer ver f s 0.10 0.14 0.00 0.07 par:pas; +escabeau escabeau nom m s 0.69 5.88 0.67 5.20 +escabeaux escabeau nom m p 0.69 5.88 0.02 0.68 +escabèches escabèche nom f p 0.00 0.07 0.00 0.07 +escadre escadre nom f s 1.54 6.08 1.44 5.00 +escadres escadre nom f p 1.54 6.08 0.10 1.08 +escadrille escadrille nom f s 2.10 5.14 1.67 2.09 +escadrilles escadrille nom f p 2.10 5.14 0.43 3.04 +escadrin escadrin nom m s 0.00 0.07 0.00 0.07 +escadron escadron nom m s 4.68 8.78 3.34 6.55 +escadrons escadron nom m p 4.68 8.78 1.34 2.23 +escagasse escagasser ver 0.27 0.14 0.14 0.07 ind:pre:3s; +escagasser escagasser ver 0.27 0.14 0.14 0.07 inf; +escalada escalader ver 4.87 15.34 0.12 1.55 ind:pas:3s; +escaladaient escalader ver 4.87 15.34 0.02 0.68 ind:imp:3p; +escaladais escalader ver 4.87 15.34 0.03 0.47 ind:imp:1s;ind:imp:2s; +escaladait escalader ver 4.87 15.34 0.18 1.42 ind:imp:3s; +escaladant escalader ver 4.87 15.34 0.30 1.42 par:pre; +escalade escalade nom f s 3.37 4.12 3.26 3.58 +escaladent escalader ver 4.87 15.34 0.36 0.41 ind:pre:3p; +escalader escalader ver 4.87 15.34 2.19 3.85 inf; +escaladera escalader ver 4.87 15.34 0.04 0.20 ind:fut:3s; +escaladerais escalader ver 4.87 15.34 0.00 0.07 cnd:pre:1s; +escaladerait escalader ver 4.87 15.34 0.01 0.07 cnd:pre:3s; +escalades escalade nom f p 3.37 4.12 0.11 0.54 +escaladeur escaladeur nom m s 0.03 0.20 0.03 0.07 +escaladeuse escaladeur nom f s 0.03 0.20 0.00 0.07 +escaladeuses escaladeur nom f p 0.03 0.20 0.00 0.07 +escaladez escalader ver 4.87 15.34 0.29 0.00 imp:pre:2p;ind:pre:2p; +escaladions escalader ver 4.87 15.34 0.00 0.27 ind:imp:1p; +escaladâmes escalader ver 4.87 15.34 0.00 0.14 ind:pas:1p; +escaladons escalader ver 4.87 15.34 0.02 0.07 imp:pre:1p; +escaladèrent escalader ver 4.87 15.34 0.16 0.27 ind:pas:3p; +escaladé escalader ver m s 4.87 15.34 0.48 1.62 par:pas; +escaladée escalader ver f s 4.87 15.34 0.00 0.14 par:pas; +escaladées escalader ver f p 4.87 15.34 0.11 0.20 par:pas; +escaladés escalader ver m p 4.87 15.34 0.00 0.07 par:pas; +escalais escaler ver 0.00 0.14 0.00 0.07 ind:imp:1s; +escalator escalator nom m s 0.50 0.27 0.36 0.20 +escalators escalator nom m p 0.50 0.27 0.13 0.07 +escale escale nom f s 2.32 8.92 2.25 7.16 +escalera escaler ver 0.00 0.14 0.00 0.07 ind:fut:3s; +escales escale nom f p 2.32 8.92 0.07 1.76 +escalier escalier nom m s 32.29 148.85 20.91 125.95 +escaliers escalier nom m p 32.29 148.85 11.38 22.91 +escalope escalope nom f s 1.13 1.42 0.94 0.74 +escalopes escalope nom f p 1.13 1.42 0.18 0.68 +escamota escamoter ver 0.28 4.73 0.00 0.20 ind:pas:3s; +escamotable escamotable adj m s 0.01 0.47 0.00 0.27 +escamotables escamotable adj f p 0.01 0.47 0.01 0.20 +escamotage escamotage nom m s 0.04 0.34 0.03 0.27 +escamotages escamotage nom m p 0.04 0.34 0.01 0.07 +escamotaient escamoter ver 0.28 4.73 0.00 0.07 ind:imp:3p; +escamotait escamoter ver 0.28 4.73 0.02 0.47 ind:imp:3s; +escamotant escamoter ver 0.28 4.73 0.01 0.07 par:pre; +escamote escamoter ver 0.28 4.73 0.02 0.47 imp:pre:2s;ind:pre:3s; +escamoter escamoter ver 0.28 4.73 0.03 0.88 inf; +escamoterai escamoter ver 0.28 4.73 0.00 0.07 ind:fut:1s; +escamoteur escamoteur nom m s 0.01 0.07 0.01 0.07 +escamoté escamoter ver m s 0.28 4.73 0.20 1.42 par:pas; +escamotée escamoter ver f s 0.28 4.73 0.01 0.95 par:pas; +escamotées escamoter ver f p 0.28 4.73 0.00 0.07 par:pas; +escamotés escamoter ver m p 0.28 4.73 0.00 0.07 par:pas; +escampette escampette nom f s 0.26 0.27 0.26 0.27 +escapade escapade nom f s 1.83 3.51 0.89 2.16 +escapades escapade nom f p 1.83 3.51 0.94 1.35 +escape escape nom f s 0.19 0.00 0.19 0.00 +escarbille escarbille nom f s 0.07 1.42 0.05 0.20 +escarbilles escarbille nom f p 0.07 1.42 0.02 1.22 +escarboucle escarboucle nom f s 0.03 0.27 0.03 0.07 +escarboucles escarboucle nom f p 0.03 0.27 0.00 0.20 +escarcelle escarcelle nom f s 0.17 0.41 0.17 0.41 +escargot escargot nom m s 8.07 7.23 2.73 2.84 +escargots escargot nom m p 8.07 7.23 5.34 4.39 +escarmouchaient escarmoucher ver 0.00 0.20 0.00 0.07 ind:imp:3p; +escarmouche escarmouche nom f s 0.41 1.96 0.32 0.47 +escarmouchent escarmoucher ver 0.00 0.20 0.00 0.14 ind:pre:3p; +escarmouches escarmouche nom f p 0.41 1.96 0.09 1.49 +escarpement escarpement nom m s 0.05 1.28 0.03 0.41 +escarpements escarpement nom m p 0.05 1.28 0.02 0.88 +escarpes escarpe nom m p 0.00 0.20 0.00 0.20 +escarpin escarpin nom m s 0.77 5.14 0.07 0.54 +escarpins escarpin nom m p 0.77 5.14 0.69 4.59 +escarpolette escarpolette nom f s 0.01 0.41 0.01 0.27 +escarpolettes escarpolette nom f p 0.01 0.41 0.00 0.14 +escarpé escarper ver m s 0.21 0.54 0.19 0.20 par:pas; +escarpée escarpé adj f s 0.14 2.64 0.03 0.74 +escarpées escarpé adj f p 0.14 2.64 0.03 0.54 +escarpés escarpé adj m p 0.14 2.64 0.04 0.34 +escarre escarre nom f s 0.23 0.27 0.03 0.07 +escarres escarre nom f p 0.23 0.27 0.20 0.20 +eschatologie eschatologie nom f s 0.00 0.14 0.00 0.14 +esche esche nom f s 0.00 0.14 0.00 0.14 +escher escher ver 0.01 0.00 0.01 0.00 inf; +escient escient nom m s 0.62 1.08 0.62 1.08 +esclaffa esclaffer ver 0.43 8.24 0.00 1.69 ind:pas:3s; +esclaffai esclaffer ver 0.43 8.24 0.00 0.07 ind:pas:1s; +esclaffaient esclaffer ver 0.43 8.24 0.02 0.74 ind:imp:3p; +esclaffait esclaffer ver 0.43 8.24 0.00 0.68 ind:imp:3s; +esclaffant esclaffer ver 0.43 8.24 0.01 0.88 par:pre; +esclaffe esclaffer ver 0.43 8.24 0.33 1.15 ind:pre:1s;ind:pre:3s; +esclaffement esclaffement nom m s 0.00 0.14 0.00 0.07 +esclaffements esclaffement nom m p 0.00 0.14 0.00 0.07 +esclaffent esclaffer ver 0.43 8.24 0.00 0.61 ind:pre:3p; +esclaffer esclaffer ver 0.43 8.24 0.04 1.35 inf; +esclafferaient esclaffer ver 0.43 8.24 0.00 0.07 cnd:pre:3p; +esclaffèrent esclaffer ver 0.43 8.24 0.00 0.41 ind:pas:3p; +esclaffé esclaffer ver m s 0.43 8.24 0.00 0.34 par:pas; +esclaffée esclaffer ver f s 0.43 8.24 0.00 0.20 par:pas; +esclaffés esclaffer ver m p 0.43 8.24 0.02 0.07 par:pas; +esclandre esclandre nom m s 0.37 2.36 0.36 2.09 +esclandres esclandre nom m p 0.37 2.36 0.01 0.27 +esclavage esclavage nom m s 7.14 6.96 7.14 6.96 +esclavagea esclavager ver 0.00 0.41 0.00 0.14 ind:pas:3s; +esclavager esclavager ver 0.00 0.41 0.00 0.20 inf; +esclavagisme esclavagisme nom m s 0.07 0.00 0.07 0.00 +esclavagiste esclavagiste nom s 0.73 0.00 0.39 0.00 +esclavagistes esclavagiste nom p 0.73 0.00 0.34 0.00 +esclavagé esclavager ver m s 0.00 0.41 0.00 0.07 par:pas; +esclave esclave nom s 37.52 22.23 15.51 9.86 +esclaves esclave nom m p 37.52 22.23 22.01 12.36 +esclavons esclavon nom m p 0.00 0.20 0.00 0.20 +escogriffe escogriffe nom m s 0.16 1.28 0.16 1.15 +escogriffes escogriffe nom m p 0.16 1.28 0.00 0.14 +escomptai escompter ver 0.67 4.93 0.00 0.07 ind:pas:1s; +escomptaient escompter ver 0.67 4.93 0.01 0.14 ind:imp:3p; +escomptais escompter ver 0.67 4.93 0.04 0.47 ind:imp:1s; +escomptait escompter ver 0.67 4.93 0.02 1.42 ind:imp:3s; +escomptant escompter ver 0.67 4.93 0.01 0.95 par:pre; +escompte escompte nom m s 0.17 0.61 0.17 0.61 +escomptent escompter ver 0.67 4.93 0.01 0.07 ind:pre:3p; +escompter escompter ver 0.67 4.93 0.01 0.34 inf; +escomptes escompter ver 0.67 4.93 0.00 0.07 ind:pre:2s; +escomptez escompter ver 0.67 4.93 0.03 0.00 imp:pre:2p;ind:pre:2p; +escomptions escompter ver 0.67 4.93 0.02 0.00 ind:imp:1p; +escompté escompter ver m s 0.67 4.93 0.09 0.81 par:pas; +escomptée escompter ver f s 0.67 4.93 0.12 0.14 par:pas; +escomptées escompter ver f p 0.67 4.93 0.10 0.07 par:pas; +escomptés escompter ver m p 0.67 4.93 0.07 0.20 par:pas; +escopette escopette nom f s 0.00 0.20 0.00 0.20 +escorta escorter ver 8.21 7.57 0.00 0.34 ind:pas:3s; +escortaient escorter ver 8.21 7.57 0.28 0.54 ind:imp:3p; +escortais escorter ver 8.21 7.57 0.05 0.00 ind:imp:1s; +escortait escorter ver 8.21 7.57 0.16 0.74 ind:imp:3s; +escortant escorter ver 8.21 7.57 0.05 0.27 par:pre; +escorte escorte nom f s 7.28 7.03 6.69 6.76 +escortent escorter ver 8.21 7.57 0.48 0.54 ind:pre:3p; +escorter escorter ver 8.21 7.57 3.02 1.01 inf; +escortera escorter ver 8.21 7.57 0.23 0.07 ind:fut:3s; +escorterai escorter ver 8.21 7.57 0.07 0.00 ind:fut:1s; +escorteraient escorter ver 8.21 7.57 0.01 0.07 cnd:pre:3p; +escorterez escorter ver 8.21 7.57 0.06 0.00 ind:fut:2p; +escorteriez escorter ver 8.21 7.57 0.01 0.00 cnd:pre:2p; +escorterons escorter ver 8.21 7.57 0.15 0.00 ind:fut:1p; +escorteront escorter ver 8.21 7.57 0.32 0.00 ind:fut:3p; +escortes escorte nom f p 7.28 7.03 0.58 0.27 +escorteur escorteur nom m s 0.32 0.81 0.04 0.14 +escorteurs escorteur nom m p 0.32 0.81 0.28 0.68 +escortez escorter ver 8.21 7.57 0.82 0.00 imp:pre:2p;ind:pre:2p; +escortiez escorter ver 8.21 7.57 0.02 0.00 ind:imp:2p; +escortons escorter ver 8.21 7.57 0.16 0.00 ind:pre:1p; +escortèrent escorter ver 8.21 7.57 0.01 0.27 ind:pas:3p; +escorté escorter ver m s 8.21 7.57 1.08 1.42 par:pas; +escortée escorter ver f s 8.21 7.57 0.12 0.88 par:pas; +escortées escorter ver f p 8.21 7.57 0.02 0.07 par:pas; +escortés escorter ver m p 8.21 7.57 0.16 1.35 par:pas; +escot escot nom m s 0.14 0.00 0.14 0.00 +escouade escouade nom f s 1.46 5.41 1.34 3.92 +escouades escouade nom f p 1.46 5.41 0.12 1.49 +escrimai escrimer ver 0.11 2.30 0.00 0.07 ind:pas:1s; +escrimaient escrimer ver 0.11 2.30 0.00 0.20 ind:imp:3p; +escrimais escrimer ver 0.11 2.30 0.01 0.07 ind:imp:1s; +escrimait escrimer ver 0.11 2.30 0.02 0.74 ind:imp:3s; +escrimant escrimer ver 0.11 2.30 0.03 0.27 par:pre; +escrime escrime nom f s 1.50 2.03 1.50 2.03 +escriment escrimer ver 0.11 2.30 0.01 0.20 ind:pre:3p; +escrimer escrimer ver 0.11 2.30 0.03 0.27 inf; +escrimera escrimer ver 0.11 2.30 0.00 0.07 ind:fut:3s; +escrimeraient escrimer ver 0.11 2.30 0.00 0.07 cnd:pre:3p; +escrimes escrimer ver 0.11 2.30 0.00 0.07 ind:pre:2s; +escrimeur escrimeur nom m s 0.38 0.41 0.37 0.27 +escrimeurs escrimeur nom m p 0.38 0.41 0.01 0.07 +escrimeuses escrimeur nom f p 0.38 0.41 0.00 0.07 +escroc escroc nom m s 9.27 4.46 6.77 2.91 +escrocs escroc nom m p 9.27 4.46 2.50 1.55 +escroquant escroquer ver 2.83 1.42 0.13 0.07 par:pre; +escroque escroquer ver 2.83 1.42 0.19 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +escroquent escroquer ver 2.83 1.42 0.03 0.00 ind:pre:3p; +escroquer escroquer ver 2.83 1.42 1.00 0.81 inf; +escroquera escroquer ver 2.83 1.42 0.02 0.00 ind:fut:3s; +escroquerie escroquerie nom f s 3.20 3.11 2.84 2.16 +escroqueries escroquerie nom f p 3.20 3.11 0.36 0.95 +escroques escroquer ver 2.83 1.42 0.00 0.07 ind:pre:2s; +escroqueuse escroqueur nom f s 0.01 0.00 0.01 0.00 +escroquez escroquer ver 2.83 1.42 0.05 0.00 ind:pre:2p; +escroqué escroquer ver m s 2.83 1.42 1.32 0.20 par:pas; +escroquées escroquer ver f p 2.83 1.42 0.01 0.07 par:pas; +escroqués escroquer ver m p 2.83 1.42 0.07 0.07 par:pas; +escudo escudo nom m s 3.03 0.00 0.01 0.00 +escudos escudo nom m p 3.03 0.00 3.02 0.00 +esgourdai esgourder ver 0.00 0.95 0.00 0.07 ind:pas:1s; +esgourdant esgourder ver 0.00 0.95 0.00 0.07 par:pre; +esgourde esgourde nom f s 0.09 2.70 0.01 1.22 +esgourder esgourder ver 0.00 0.95 0.00 0.68 inf; +esgourdes esgourde nom f p 0.09 2.70 0.08 1.49 +esgourdé esgourder ver m s 0.00 0.95 0.00 0.07 par:pas; +esgourdée esgourder ver f s 0.00 0.95 0.00 0.07 par:pas; +eskimo eskimo adj m s 0.02 0.14 0.02 0.07 +eskimos eskimo nom m p 0.04 0.00 0.02 0.00 +espace_temps espace_temps nom m 1.63 0.07 1.63 0.07 +espace espace nom s 43.87 88.51 41.34 78.58 +espacement espacement nom m s 0.10 0.34 0.09 0.34 +espacements espacement nom m p 0.10 0.34 0.01 0.00 +espacent espacer ver 0.52 5.95 0.00 0.47 ind:pre:3p; +espacer espacer ver 0.52 5.95 0.06 0.68 inf; +espacerait espacer ver 0.52 5.95 0.00 0.07 cnd:pre:3s; +espaceront espacer ver 0.52 5.95 0.00 0.07 ind:fut:3p; +espaces espace nom p 43.87 88.51 2.52 9.93 +espacez espacer ver 0.52 5.95 0.02 0.00 imp:pre:2p; +espacions espacer ver 0.52 5.95 0.00 0.14 ind:imp:1p; +espacèrent espacer ver 0.52 5.95 0.01 0.74 ind:pas:3p; +espacé espacé adj m s 0.41 2.50 0.02 0.20 +espacée espacer ver f s 0.52 5.95 0.00 0.07 par:pas; +espacées espacé adj f p 0.41 2.50 0.21 1.15 +espacés espacé adj m p 0.41 2.50 0.19 1.08 +espada espada nom f s 0.00 0.81 0.00 0.74 +espadas espada nom f p 0.00 0.81 0.00 0.07 +espadon espadon nom m s 0.80 0.54 0.71 0.47 +espadons espadon nom m p 0.80 0.54 0.09 0.07 +espadrille espadrille nom f s 0.26 8.58 0.02 0.95 +espadrilles espadrille nom f p 0.26 8.58 0.24 7.64 +espagnol espagnol nom m s 18.43 21.62 11.54 11.01 +espagnole espagnol adj f s 20.94 25.00 6.16 8.78 +espagnoles espagnol adj f p 20.94 25.00 1.48 2.50 +espagnolette espagnolette nom f s 0.00 1.42 0.00 1.42 +espagnols espagnol nom m p 18.43 21.62 5.27 7.64 +espalier espalier nom m s 0.00 1.49 0.00 0.61 +espaliers espalier nom m p 0.00 1.49 0.00 0.88 +espar espar nom m s 0.00 0.07 0.00 0.07 +espars espars nom m 0.00 0.07 0.00 0.07 +espaça espacer ver 0.52 5.95 0.00 0.41 ind:pas:3s; +espaçaient espacer ver 0.52 5.95 0.00 1.01 ind:imp:3p; +espaçait espacer ver 0.52 5.95 0.00 0.27 ind:imp:3s; +espaçant espacer ver 0.52 5.95 0.01 0.41 par:pre; +esperanto esperanto nom m s 0.22 0.07 0.22 0.07 +espingo espingo nom s 0.00 1.55 0.00 0.61 +espingole espingole nom f s 0.00 0.14 0.00 0.07 +espingoles espingole nom f p 0.00 0.14 0.00 0.07 +espingos espingo nom p 0.00 1.55 0.00 0.95 +espingouin espingouin nom s 0.35 0.54 0.32 0.47 +espingouins espingouin nom p 0.35 0.54 0.03 0.07 +espion espion nom m s 22.05 10.20 13.31 4.59 +espionite espionite nom f s 0.01 0.00 0.01 0.00 +espionnage espionnage nom m s 3.32 2.57 3.32 2.57 +espionnaient espionner ver 15.99 4.53 0.03 0.27 ind:imp:3p; +espionnais espionner ver 15.99 4.53 1.36 0.34 ind:imp:1s;ind:imp:2s; +espionnait espionner ver 15.99 4.53 1.52 0.54 ind:imp:3s; +espionnant espionner ver 15.99 4.53 0.21 0.00 par:pre; +espionne espionner ver 15.99 4.53 3.06 0.81 ind:pre:1s;ind:pre:3s; +espionnent espionner ver 15.99 4.53 0.27 0.00 ind:pre:3p; +espionner espionner ver 15.99 4.53 4.71 2.03 inf;; +espionnera espionner ver 15.99 4.53 0.14 0.00 ind:fut:3s; +espionnerai espionner ver 15.99 4.53 0.04 0.00 ind:fut:1s; +espionnerions espionner ver 15.99 4.53 0.01 0.00 cnd:pre:1p; +espionnes espionner ver 15.99 4.53 2.00 0.20 ind:pre:2s;sub:pre:2s; +espionnez espionner ver 15.99 4.53 0.90 0.00 imp:pre:2p;ind:pre:2p; +espionniez espionner ver 15.99 4.53 0.17 0.00 ind:imp:2p; +espionnite espionnite nom f s 0.14 0.27 0.14 0.27 +espionnons espionner ver 15.99 4.53 0.04 0.00 ind:pre:1p; +espionnât espionner ver 15.99 4.53 0.00 0.07 sub:imp:3s; +espionné espionner ver m s 15.99 4.53 0.94 0.20 par:pas; +espionnée espionner ver f s 15.99 4.53 0.13 0.00 par:pas; +espionnés espionner ver m p 15.99 4.53 0.47 0.07 par:pas; +espions espion nom m p 22.05 10.20 6.52 3.72 +espiègle espiègle adj s 0.89 1.42 0.81 1.01 +espièglement espièglement adv 0.00 0.07 0.00 0.07 +espièglerie espièglerie nom f s 0.08 1.01 0.03 0.88 +espiègleries espièglerie nom f p 0.08 1.01 0.04 0.14 +espiègles espiègle adj p 0.89 1.42 0.09 0.41 +esplanade esplanade nom f s 0.64 6.35 0.64 6.01 +esplanades esplanade nom f p 0.64 6.35 0.00 0.34 +espoir espoir nom m s 64.22 101.89 57.62 90.74 +espoirs espoir nom m p 64.22 101.89 6.61 11.15 +esprit_de_sel esprit_de_sel nom m s 0.00 0.07 0.00 0.07 +esprit_de_vin esprit_de_vin nom m s 0.01 0.20 0.01 0.20 +esprit esprit nom m s 155.82 216.28 131.70 182.84 +esprits esprit nom m p 155.82 216.28 24.12 33.45 +espèce espèce nom f s 116.51 141.69 105.04 127.23 +espèces espèce nom f p 116.51 141.69 11.47 14.46 +espère espérer ver 301.08 134.93 209.19 43.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +espèrent espérer ver 301.08 134.93 2.15 2.03 ind:pre:3p; +espères espérer ver 301.08 134.93 4.19 1.08 ind:pre:2s; +espéra espérer ver 301.08 134.93 0.02 1.49 ind:pas:3s; +espérai espérer ver 301.08 134.93 0.16 0.20 ind:pas:1s; +espéraient espérer ver 301.08 134.93 0.85 2.97 ind:imp:3p; +espérais espérer ver 301.08 134.93 25.40 12.64 ind:imp:1s;ind:imp:2s; +espérait espérer ver 301.08 134.93 3.66 18.58 ind:imp:3s; +espérance espérance nom f s 6.42 27.36 4.10 18.31 +espérances espérance nom f p 6.42 27.36 2.32 9.05 +espérant espérer ver 301.08 134.93 6.82 11.76 par:pre; +espérantiste espérantiste nom s 0.00 0.07 0.00 0.07 +espéranto espéranto nom m s 0.02 0.14 0.02 0.14 +espérer espérer ver 301.08 134.93 15.65 23.51 inf; +espérerai espérer ver 301.08 134.93 0.02 0.00 ind:fut:1s; +espérerais espérer ver 301.08 134.93 0.20 0.00 cnd:pre:1s; +espérerait espérer ver 301.08 134.93 0.01 0.00 cnd:pre:3s; +espérez espérer ver 301.08 134.93 3.46 1.69 imp:pre:2p;ind:pre:2p; +espériez espérer ver 301.08 134.93 1.57 0.27 ind:imp:2p;sub:pre:2p; +espérions espérer ver 301.08 134.93 1.24 0.88 ind:imp:1p; +espérâmes espérer ver 301.08 134.93 0.00 0.07 ind:pas:1p; +espérons espérer ver 301.08 134.93 21.77 2.91 imp:pre:1p;ind:pre:1p; +espérât espérer ver 301.08 134.93 0.00 0.14 sub:imp:3s; +espérèrent espérer ver 301.08 134.93 0.00 0.07 ind:pas:3p; +espéré espérer ver m s 301.08 134.93 4.46 8.99 par:pas; +espérée espérer ver f s 301.08 134.93 0.14 1.01 par:pas; +espérées espérer ver f p 301.08 134.93 0.00 0.41 par:pas; +espérés espérer ver m p 301.08 134.93 0.13 0.41 par:pas; +esquif esquif nom m s 0.29 1.76 0.29 1.42 +esquifs esquif nom m p 0.29 1.76 0.00 0.34 +esquille esquille nom f s 0.01 0.81 0.01 0.14 +esquilles esquille nom f p 0.01 0.81 0.00 0.68 +esquimau esquimau nom m s 1.89 1.22 0.91 0.88 +esquimaude esquimaude adj f s 0.10 0.07 0.00 0.07 +esquimaudes esquimaude adj f p 0.10 0.07 0.10 0.00 +esquimaux esquimau nom m p 1.89 1.22 0.97 0.34 +esquintait esquinter ver 2.29 2.70 0.00 0.14 ind:imp:3s; +esquinte esquinter ver 2.29 2.70 0.50 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +esquintement esquintement nom m s 0.00 0.07 0.00 0.07 +esquintent esquinter ver 2.29 2.70 0.12 0.07 ind:pre:3p; +esquinter esquinter ver 2.29 2.70 0.47 1.08 inf; +esquinterais esquinter ver 2.29 2.70 0.01 0.00 cnd:pre:1s; +esquintes esquinter ver 2.29 2.70 0.34 0.07 ind:pre:2s; +esquintez esquinter ver 2.29 2.70 0.13 0.00 imp:pre:2p; +esquinté esquinter ver m s 2.29 2.70 0.57 0.41 par:pas; +esquintée esquinté adj f s 0.51 0.34 0.33 0.27 +esquintées esquinter ver f p 2.29 2.70 0.01 0.07 par:pas; +esquintés esquinté adj m p 0.51 0.34 0.02 0.07 +esquire esquire nom m s 0.31 0.00 0.31 0.00 +esquissa esquisser ver 0.74 16.82 0.02 4.53 ind:pas:3s; +esquissai esquisser ver 0.74 16.82 0.00 0.20 ind:pas:1s; +esquissaient esquisser ver 0.74 16.82 0.00 0.27 ind:imp:3p; +esquissais esquisser ver 0.74 16.82 0.02 0.47 ind:imp:1s; +esquissait esquisser ver 0.74 16.82 0.00 1.62 ind:imp:3s; +esquissant esquisser ver 0.74 16.82 0.12 1.08 par:pre; +esquisse esquisse nom f s 1.06 4.39 0.54 2.43 +esquissent esquisser ver 0.74 16.82 0.01 0.34 ind:pre:3p; +esquisser esquisser ver 0.74 16.82 0.06 2.03 inf; +esquisses esquisse nom f p 1.06 4.39 0.52 1.96 +esquissèrent esquisser ver 0.74 16.82 0.00 0.14 ind:pas:3p; +esquissé esquisser ver m s 0.74 16.82 0.15 2.43 par:pas; +esquissée esquisser ver f s 0.74 16.82 0.10 0.41 par:pas; +esquissées esquisser ver f p 0.74 16.82 0.00 0.20 par:pas; +esquissés esquisser ver m p 0.74 16.82 0.00 0.41 par:pas; +esquiva esquiver ver 4.39 8.38 0.01 1.28 ind:pas:3s; +esquivai esquiver ver 4.39 8.38 0.00 0.14 ind:pas:1s; +esquivaient esquiver ver 4.39 8.38 0.00 0.07 ind:imp:3p; +esquivait esquiver ver 4.39 8.38 0.01 0.88 ind:imp:3s; +esquivant esquiver ver 4.39 8.38 0.04 0.47 par:pre; +esquive esquive nom f s 1.11 0.95 1.06 0.74 +esquivent esquiver ver 4.39 8.38 0.02 0.14 ind:pre:3p; +esquiver esquiver ver 4.39 8.38 1.59 3.04 inf; +esquivera esquiver ver 4.39 8.38 0.19 0.07 ind:fut:3s; +esquiveront esquiver ver 4.39 8.38 0.14 0.00 ind:fut:3p; +esquives esquiver ver 4.39 8.38 0.28 0.00 ind:pre:2s; +esquivèrent esquiver ver 4.39 8.38 0.00 0.14 ind:pas:3p; +esquivé esquiver ver m s 4.39 8.38 1.08 0.95 par:pas; +esquivée esquiver ver f s 4.39 8.38 0.04 0.20 par:pas; +essai essai nom m s 28.78 14.86 20.31 9.93 +essaie essayer ver 670.38 296.69 168.04 39.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +essaient essayer ver 670.38 296.69 10.09 3.65 ind:pre:3p; +essaiera essayer ver 670.38 296.69 3.50 0.95 ind:fut:3s; +essaierai essayer ver 670.38 296.69 11.20 3.31 ind:fut:1s; +essaieraient essayer ver 670.38 296.69 0.38 0.20 cnd:pre:3p; +essaierais essayer ver 670.38 296.69 1.99 0.95 cnd:pre:1s;cnd:pre:2s; +essaierait essayer ver 670.38 296.69 0.94 1.62 cnd:pre:3s; +essaieras essayer ver 670.38 296.69 0.48 0.34 ind:fut:2s; +essaierez essayer ver 670.38 296.69 0.40 0.07 ind:fut:2p; +essaieriez essayer ver 670.38 296.69 0.10 0.00 cnd:pre:2p; +essaierions essayer ver 670.38 296.69 0.16 0.00 cnd:pre:1p; +essaierons essayer ver 670.38 296.69 0.39 0.20 ind:fut:1p; +essaieront essayer ver 670.38 296.69 1.10 0.47 ind:fut:3p; +essaies essayer ver 670.38 296.69 16.09 1.49 ind:pre:2s;sub:pre:2s; +essaim essaim nom m s 0.97 4.53 0.69 3.18 +essaimaient essaimer ver 0.03 0.95 0.01 0.07 ind:imp:3p; +essaimait essaimer ver 0.03 0.95 0.00 0.14 ind:imp:3s; +essaiment essaimer ver 0.03 0.95 0.01 0.14 ind:pre:3p; +essaims essaim nom m p 0.97 4.53 0.28 1.35 +essaimé essaimer ver m s 0.03 0.95 0.01 0.47 par:pas; +essaimées essaimer ver f p 0.03 0.95 0.00 0.07 par:pas; +essaimés essaimer ver m p 0.03 0.95 0.00 0.07 par:pas; +essais essai nom m p 28.78 14.86 8.47 4.93 +essangent essanger ver 0.00 0.07 0.00 0.07 ind:pre:3p; +essartage essartage nom m s 0.00 0.07 0.00 0.07 +essarte essarter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +essarts essart nom m p 0.00 0.07 0.00 0.07 +essartée essarter ver f s 0.00 0.14 0.00 0.07 par:pas; +essaya essayer ver 670.38 296.69 0.65 24.66 ind:pas:3s; +essayage essayage nom m s 1.84 2.84 1.26 1.82 +essayages essayage nom m p 1.84 2.84 0.58 1.01 +essayai essayer ver 670.38 296.69 0.32 9.73 ind:pas:1s; +essayaient essayer ver 670.38 296.69 2.73 6.08 ind:imp:3p; +essayais essayer ver 670.38 296.69 18.67 15.27 ind:imp:1s;ind:imp:2s; +essayait essayer ver 670.38 296.69 14.40 35.81 ind:imp:3s; +essayant essayer ver 670.38 296.69 8.96 22.57 par:pre; +essaye essayer ver 670.38 296.69 56.84 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essayent essayer ver 670.38 296.69 4.07 1.69 ind:pre:3p; +essayer essayer ver 670.38 296.69 134.66 56.42 inf; +essayera essayer ver 670.38 296.69 1.03 0.20 ind:fut:3s; +essayerai essayer ver 670.38 296.69 1.80 0.54 ind:fut:1s; +essayeraient essayer ver 670.38 296.69 0.08 0.07 cnd:pre:3p; +essayerais essayer ver 670.38 296.69 0.66 0.27 cnd:pre:1s;cnd:pre:2s; +essayerait essayer ver 670.38 296.69 0.13 0.27 cnd:pre:3s; +essayeras essayer ver 670.38 296.69 0.10 0.00 ind:fut:2s; +essayerez essayer ver 670.38 296.69 0.16 0.14 ind:fut:2p; +essayeriez essayer ver 670.38 296.69 0.12 0.00 cnd:pre:2p; +essayerons essayer ver 670.38 296.69 0.58 0.00 ind:fut:1p; +essayeront essayer ver 670.38 296.69 0.15 0.00 ind:fut:3p; +essayes essayer ver 670.38 296.69 5.96 0.34 ind:pre:2s;sub:pre:2s; +essayeur essayeur nom m s 0.01 0.20 0.01 0.14 +essayeuses essayeur nom f p 0.01 0.20 0.00 0.07 +essayez essayer ver 670.38 296.69 54.14 6.96 imp:pre:2p;ind:pre:2p; +essayiez essayer ver 670.38 296.69 1.24 0.20 ind:imp:2p; +essayions essayer ver 670.38 296.69 0.75 0.81 ind:imp:1p; +essayiste essayiste nom s 0.01 0.14 0.01 0.07 +essayistes essayiste nom p 0.01 0.14 0.00 0.07 +essayâmes essayer ver 670.38 296.69 0.00 0.20 ind:pas:1p; +essayons essayer ver 670.38 296.69 21.75 3.31 imp:pre:1p;ind:pre:1p; +essayât essayer ver 670.38 296.69 0.00 0.41 sub:imp:3s; +essayèrent essayer ver 670.38 296.69 0.27 0.81 ind:pas:3p; +essayé essayer ver m s 670.38 296.69 124.02 45.68 par:pas;par:pas;par:pas;par:pas; +essayée essayer ver f s 670.38 296.69 0.51 0.34 par:pas; +essayées essayer ver f p 670.38 296.69 0.35 0.14 par:pas; +essayés essayer ver m p 670.38 296.69 0.45 0.47 par:pas; +esse esse nom f s 0.02 0.68 0.02 0.68 +essence essence nom f s 33.24 29.46 32.91 27.77 +essences essence nom f p 33.24 29.46 0.34 1.69 +essential essential adj m s 0.14 0.00 0.14 0.00 +essentialisme essentialisme nom m s 0.00 0.07 0.00 0.07 +essentiel essentiel nom m s 11.64 29.05 11.64 28.78 +essentielle essentiel adj f s 9.85 23.04 2.66 6.89 +essentiellement essentiellement adv 1.65 6.55 1.65 6.55 +essentielles essentiel adj f p 9.85 23.04 1.25 3.11 +essentiels essentiel adj m p 9.85 23.04 0.89 3.38 +esseulement esseulement nom m s 0.00 0.34 0.00 0.34 +esseulé esseulé adj m s 0.88 1.22 0.43 0.14 +esseulée esseulé adj f s 0.88 1.22 0.19 0.54 +esseulées esseulé adj f p 0.88 1.22 0.12 0.20 +esseulés esseulé adj m p 0.88 1.22 0.14 0.34 +essieu essieu nom m s 0.28 0.41 0.28 0.41 +essieux essieux nom m p 0.10 0.95 0.10 0.95 +essor essor nom m s 0.70 3.78 0.70 3.78 +essora essorer ver 0.18 2.50 0.00 0.20 ind:pas:3s; +essorage essorage nom m s 0.11 0.20 0.11 0.20 +essoraient essorer ver 0.18 2.50 0.00 0.14 ind:imp:3p; +essorait essorer ver 0.18 2.50 0.01 0.27 ind:imp:3s; +essorant essorer ver 0.18 2.50 0.00 0.14 par:pre; +essore essorer ver 0.18 2.50 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essorent essorer ver 0.18 2.50 0.00 0.14 ind:pre:3p; +essorer essorer ver 0.18 2.50 0.08 1.08 inf; +essorerait essorer ver 0.18 2.50 0.00 0.07 cnd:pre:3s; +essoreuse essoreuse nom f s 0.36 0.07 0.36 0.07 +essorillé essoriller ver m s 0.00 0.07 0.00 0.07 par:pas; +essoré essorer ver m s 0.18 2.50 0.02 0.07 par:pas; +essorée essorer ver f s 0.18 2.50 0.00 0.20 par:pas; +essorés essoré adj m p 0.02 0.20 0.01 0.00 +essouffla essouffler ver 1.03 7.91 0.00 0.20 ind:pas:3s; +essoufflaient essouffler ver 1.03 7.91 0.00 0.34 ind:imp:3p; +essoufflais essouffler ver 1.03 7.91 0.01 0.07 ind:imp:1s; +essoufflait essouffler ver 1.03 7.91 0.01 0.88 ind:imp:3s; +essoufflant essouffler ver 1.03 7.91 0.00 0.20 par:pre; +essouffle essouffler ver 1.03 7.91 0.26 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essoufflement essoufflement nom m s 0.19 1.62 0.16 1.55 +essoufflements essoufflement nom m p 0.19 1.62 0.03 0.07 +essoufflent essouffler ver 1.03 7.91 0.01 0.07 ind:pre:3p; +essouffler essouffler ver 1.03 7.91 0.08 0.34 inf; +essouffleront essouffler ver 1.03 7.91 0.00 0.07 ind:fut:3p; +essouffles essouffler ver 1.03 7.91 0.01 0.07 ind:pre:2s; +essoufflez essouffler ver 1.03 7.91 0.00 0.14 ind:pre:2p; +essoufflèrent essouffler ver 1.03 7.91 0.00 0.07 ind:pas:3p; +essoufflé essouffler ver m s 1.03 7.91 0.38 1.76 par:pas; +essoufflée essouffler ver f s 1.03 7.91 0.25 1.28 par:pas; +essoufflées essoufflé adj f p 0.55 9.39 0.00 0.14 +essoufflés essoufflé adj m p 0.55 9.39 0.12 1.28 +essuie_glace essuie_glace nom m s 1.00 2.91 0.38 1.01 +essuie_glace essuie_glace nom m p 1.00 2.91 0.62 1.89 +essuie_mains essuie_mains nom m 0.23 0.27 0.23 0.27 +essuie_tout essuie_tout nom m 0.11 0.14 0.11 0.14 +essuie essuyer ver 11.82 55.00 3.98 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essuient essuyer ver 11.82 55.00 0.05 0.68 ind:pre:3p; +essuiera essuyer ver 11.82 55.00 0.04 0.00 ind:fut:3s; +essuierais essuyer ver 11.82 55.00 0.02 0.00 cnd:pre:1s; +essuieras essuyer ver 11.82 55.00 0.01 0.07 ind:fut:2s; +essuierez essuyer ver 11.82 55.00 0.04 0.00 ind:fut:2p; +essuierions essuyer ver 11.82 55.00 0.00 0.07 cnd:pre:1p; +essuies essuyer ver 11.82 55.00 0.23 0.07 ind:pre:2s; +essuya essuyer ver 11.82 55.00 0.14 12.84 ind:pas:3s; +essuyage essuyage nom m s 0.01 0.20 0.01 0.14 +essuyages essuyage nom m p 0.01 0.20 0.00 0.07 +essuyai essuyer ver 11.82 55.00 0.00 0.61 ind:pas:1s; +essuyaient essuyer ver 11.82 55.00 0.03 0.61 ind:imp:3p; +essuyais essuyer ver 11.82 55.00 0.07 0.68 ind:imp:1s;ind:imp:2s; +essuyait essuyer ver 11.82 55.00 0.41 6.42 ind:imp:3s; +essuyant essuyer ver 11.82 55.00 0.15 7.09 par:pre; +essuyer essuyer ver 11.82 55.00 3.39 11.35 inf;; +essuyeur essuyeur nom m s 0.02 0.00 0.02 0.00 +essuyez essuyer ver 11.82 55.00 1.41 0.27 imp:pre:2p;ind:pre:2p; +essuyions essuyer ver 11.82 55.00 0.00 0.07 ind:imp:1p; +essuyons essuyer ver 11.82 55.00 0.07 0.00 imp:pre:1p;ind:pre:1p; +essuyèrent essuyer ver 11.82 55.00 0.01 0.20 ind:pas:3p; +essuyé essuyer ver m s 11.82 55.00 1.68 5.00 par:pas; +essuyée essuyer ver f s 11.82 55.00 0.04 0.61 par:pas; +essuyées essuyer ver f p 11.82 55.00 0.02 0.34 par:pas; +essuyés essuyer ver m p 11.82 55.00 0.03 0.07 par:pas; +est_africain est_africain adj m s 0.01 0.00 0.01 0.00 +est_allemand est_allemand adj m s 0.67 0.00 0.31 0.00 +est_allemand est_allemand adj f s 0.67 0.00 0.23 0.00 +est_allemand est_allemand adj m p 0.67 0.00 0.13 0.00 +est_ce_que est_ce_que adv 1.34 0.20 1.34 0.20 +est_ce_qu est_ce_qu adv 3.41 0.07 3.41 0.07 +est_ce_que est_ce_que adv 1159.41 322.23 1159.41 322.23 +est_ce est_ce adv 0.05 0.20 0.05 0.20 +est_ouest est_ouest adj 0.38 0.41 0.38 0.41 +est être aux 8074.24 6501.82 3318.95 1600.27 ind:pre:3s; +establishment establishment nom m s 0.26 0.20 0.26 0.20 +estacade estacade nom f s 0.14 0.61 0.14 0.47 +estacades estacade nom f p 0.14 0.61 0.00 0.14 +estafette estafette nom f s 0.33 3.78 0.33 2.43 +estafettes estafette nom f p 0.33 3.78 0.00 1.35 +estafier estafier nom m s 0.00 0.14 0.00 0.07 +estafiers estafier nom m p 0.00 0.14 0.00 0.07 +estafilade estafilade nom f s 0.05 0.88 0.05 0.74 +estafilades estafilade nom f p 0.05 0.88 0.00 0.14 +estagnon estagnon nom m s 0.00 0.07 0.00 0.07 +estaminet estaminet nom m s 0.01 1.35 0.01 1.08 +estaminets estaminet nom m p 0.01 1.35 0.00 0.27 +estampage estampage nom m s 0.02 0.00 0.02 0.00 +estampe estampe nom f s 0.42 2.23 0.12 0.68 +estamper estamper ver 0.03 0.27 0.02 0.20 inf; +estampes estampe nom f p 0.42 2.23 0.30 1.55 +estampilla estampiller ver 0.07 0.47 0.00 0.14 ind:pas:3s; +estampillaient estampiller ver 0.07 0.47 0.00 0.07 ind:imp:3p; +estampille estampille nom f s 0.01 0.47 0.01 0.47 +estampiller estampiller ver 0.07 0.47 0.00 0.07 inf; +estampillé estampiller ver m s 0.07 0.47 0.04 0.07 par:pas; +estampillées estampillé adj f p 0.00 0.47 0.00 0.07 +estampillés estampiller ver m p 0.07 0.47 0.03 0.14 par:pas; +estampé estamper ver m s 0.03 0.27 0.01 0.00 par:pas; +estampée estamper ver f s 0.03 0.27 0.00 0.07 par:pas; +estancia estancia nom f s 0.06 0.41 0.06 0.20 +estancias estancia nom f p 0.06 0.41 0.00 0.20 +este este nom m s 0.50 0.41 0.50 0.14 +ester ester nom m s 0.25 0.00 0.25 0.00 +estes este nom m p 0.50 0.41 0.00 0.27 +esthète esthète nom s 0.29 2.57 0.27 1.49 +esthètes esthète nom p 0.29 2.57 0.02 1.08 +esthésiomètre esthésiomètre nom m s 0.00 0.07 0.00 0.07 +esthéticien esthéticien nom m s 1.14 0.54 0.11 0.14 +esthéticienne esthéticien nom f s 1.14 0.54 1.02 0.41 +esthéticiennes esthéticienne nom f p 0.03 0.00 0.03 0.00 +esthétique esthétique adj s 3.09 4.66 2.64 3.45 +esthétiquement esthétiquement adv 0.11 0.07 0.11 0.07 +esthétiques esthétique adj p 3.09 4.66 0.46 1.22 +esthétisait esthétiser ver 0.00 0.07 0.00 0.07 ind:imp:3s; +esthétisme esthétisme nom m s 0.04 1.08 0.04 1.08 +estima estimer ver 21.41 37.64 0.14 1.89 ind:pas:3s; +estimable estimable adj s 0.54 1.69 0.40 1.42 +estimables estimable adj p 0.54 1.69 0.14 0.27 +estimai estimer ver 21.41 37.64 0.00 0.14 ind:pas:1s; +estimaient estimer ver 21.41 37.64 0.04 1.49 ind:imp:3p; +estimais estimer ver 21.41 37.64 0.25 2.16 ind:imp:1s;ind:imp:2s; +estimait estimer ver 21.41 37.64 0.73 7.77 ind:imp:3s; +estimant estimer ver 21.41 37.64 0.17 2.97 par:pre; +estimation estimation nom f s 3.55 1.22 2.40 1.01 +estimations estimation nom f p 3.55 1.22 1.15 0.20 +estime estimer ver 21.41 37.64 8.02 8.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +estiment estimer ver 21.41 37.64 1.28 1.49 ind:pre:3p; +estimer estimer ver 21.41 37.64 2.37 3.18 inf; +estimera estimer ver 21.41 37.64 0.08 0.14 ind:fut:3s; +estimerai estimer ver 21.41 37.64 0.03 0.20 ind:fut:1s; +estimerais estimer ver 21.41 37.64 0.04 0.07 cnd:pre:1s; +estimerait estimer ver 21.41 37.64 0.00 0.20 cnd:pre:3s; +estimeras estimer ver 21.41 37.64 0.04 0.00 ind:fut:2s; +estimerez estimer ver 21.41 37.64 0.14 0.14 ind:fut:2p; +estimes estimer ver 21.41 37.64 0.90 0.34 ind:pre:2s; +estimez estimer ver 21.41 37.64 1.41 1.28 imp:pre:2p;ind:pre:2p; +estimiez estimer ver 21.41 37.64 0.27 0.07 ind:imp:2p; +estimions estimer ver 21.41 37.64 0.01 0.68 ind:imp:1p; +estimons estimer ver 21.41 37.64 0.95 0.54 imp:pre:1p;ind:pre:1p; +estimât estimer ver 21.41 37.64 0.00 0.34 sub:imp:3s; +estimèrent estimer ver 21.41 37.64 0.01 0.14 ind:pas:3p; +estimé estimer ver m s 21.41 37.64 2.71 2.64 par:pas; +estimée estimer ver f s 21.41 37.64 0.77 0.41 par:pas; +estimées estimer ver f p 21.41 37.64 0.10 0.07 par:pas; +estimés estimer ver m p 21.41 37.64 0.97 0.41 par:pas; +estival estival adj m s 0.53 1.76 0.35 0.47 +estivale estival adj f s 0.53 1.76 0.11 0.74 +estivales estival adj f p 0.53 1.76 0.04 0.27 +estivant estivant nom m s 0.29 2.23 0.00 0.27 +estivante estivant nom f s 0.29 2.23 0.00 0.07 +estivantes estivant nom f p 0.29 2.23 0.00 0.07 +estivants estivant nom m p 0.29 2.23 0.29 1.82 +estivaux estival adj m p 0.53 1.76 0.04 0.27 +estoc estoc nom m s 0.16 0.34 0.16 0.20 +estocade estocade nom f s 0.03 0.47 0.03 0.41 +estocades estocade nom f p 0.03 0.47 0.00 0.07 +estocs estoc nom m p 0.16 0.34 0.00 0.14 +estom estom nom m s 0.00 0.20 0.00 0.20 +estomac estomac nom m s 23.56 30.95 23.06 30.14 +estomacs estomac nom m p 23.56 30.95 0.50 0.81 +estomaquait estomaquer ver 0.26 2.16 0.00 0.07 ind:imp:3s; +estomaquant estomaquer ver 0.26 2.16 0.00 0.07 par:pre; +estomaque estomaquer ver 0.26 2.16 0.16 0.14 ind:pre:1s;ind:pre:3s; +estomaquer estomaquer ver 0.26 2.16 0.00 0.14 inf; +estomaqué estomaquer ver m s 0.26 2.16 0.06 1.42 par:pas; +estomaquée estomaquer ver f s 0.26 2.16 0.03 0.20 par:pas; +estomaqués estomaquer ver m p 0.26 2.16 0.01 0.14 par:pas; +estompa estomper ver 1.54 8.85 0.00 0.81 ind:pas:3s; +estompaient estomper ver 1.54 8.85 0.01 1.08 ind:imp:3p; +estompait estomper ver 1.54 8.85 0.11 1.76 ind:imp:3s; +estompant estomper ver 1.54 8.85 0.00 0.47 par:pre; +estompe estomper ver 1.54 8.85 0.40 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +estompent estomper ver 1.54 8.85 0.42 1.22 ind:pre:3p; +estomper estomper ver 1.54 8.85 0.25 0.68 inf; +estompera estomper ver 1.54 8.85 0.21 0.00 ind:fut:3s; +estomperont estomper ver 1.54 8.85 0.07 0.00 ind:fut:3p; +estompes estomper ver 1.54 8.85 0.00 0.14 ind:pre:2s; +estompât estomper ver 1.54 8.85 0.00 0.14 sub:imp:3s; +estompèrent estomper ver 1.54 8.85 0.00 0.20 ind:pas:3p; +estompé estomper ver m s 1.54 8.85 0.02 0.14 par:pas; +estompée estomper ver f s 1.54 8.85 0.04 0.34 par:pas; +estompées estomper ver f p 1.54 8.85 0.00 0.47 par:pas; +estompés estomper ver m p 1.54 8.85 0.02 0.27 par:pas; +estonien estonien adj m s 0.01 0.07 0.01 0.07 +estonienne estonienne nom f s 0.10 0.00 0.10 0.00 +estoniens estonien nom m p 0.00 0.20 0.00 0.14 +estoqua estoquer ver 0.00 0.34 0.00 0.07 ind:pas:3s; +estoque estoquer ver 0.00 0.34 0.00 0.14 ind:pre:3s; +estoquer estoquer ver 0.00 0.34 0.00 0.07 inf; +estoqué estoquer ver m s 0.00 0.34 0.00 0.07 par:pas; +estouffade estouffade nom f s 0.00 0.07 0.00 0.07 +estourbi estourbir ver m s 0.14 2.36 0.03 0.41 par:pas; +estourbie estourbir ver f s 0.14 2.36 0.01 0.41 par:pas; +estourbies estourbir ver f p 0.14 2.36 0.01 0.00 par:pas; +estourbir estourbir ver 0.14 2.36 0.07 0.88 inf; +estourbirait estourbir ver 0.14 2.36 0.00 0.07 cnd:pre:3s; +estourbis estourbir ver m p 0.14 2.36 0.01 0.14 ind:pre:1s;par:pas; +estourbissais estourbir ver 0.14 2.36 0.00 0.07 ind:imp:1s; +estourbissant estourbir ver 0.14 2.36 0.00 0.07 par:pre; +estourbisse estourbir ver 0.14 2.36 0.00 0.07 sub:pre:1s; +estourbit estourbir ver 0.14 2.36 0.00 0.27 ind:pre:3s;ind:pas:3s; +estrade estrade nom f s 1.64 11.28 1.63 10.68 +estrades estrade nom f p 1.64 11.28 0.01 0.61 +estragon estragon nom m s 0.70 0.81 0.70 0.81 +estrangers estranger nom m p 0.00 0.20 0.00 0.20 +estrapade estrapade nom f s 0.14 0.47 0.14 0.41 +estrapades estrapade nom f p 0.14 0.47 0.00 0.07 +estrapassée estrapasser ver f s 0.01 0.00 0.01 0.00 par:pas; +estrogène estrogène nom s 0.03 0.00 0.03 0.00 +estropiait estropier ver 1.39 1.15 0.00 0.07 ind:imp:3s; +estropie estropier ver 1.39 1.15 0.02 0.14 ind:pre:1s;ind:pre:3s; +estropier estropier ver 1.39 1.15 0.39 0.14 inf; +estropierai estropier ver 1.39 1.15 0.01 0.00 ind:fut:1s; +estropierait estropier ver 1.39 1.15 0.01 0.00 cnd:pre:3s; +estropiez estropier ver 1.39 1.15 0.04 0.00 imp:pre:2p;ind:pre:2p; +estropié estropié adj m s 1.42 1.15 0.89 0.47 +estropiée estropié adj f s 1.42 1.15 0.25 0.14 +estropiés estropié adj m p 1.42 1.15 0.28 0.54 +estuaire estuaire nom m s 0.49 2.64 0.48 2.43 +estuaires estuaire nom m p 0.49 2.64 0.01 0.20 +estudiantin estudiantin adj m s 0.17 0.68 0.05 0.20 +estudiantine estudiantin adj f s 0.17 0.68 0.12 0.34 +estudiantines estudiantin adj f p 0.17 0.68 0.00 0.07 +estudiantins estudiantin adj m p 0.17 0.68 0.00 0.07 +esturgeon esturgeon nom m s 0.47 0.07 0.39 0.07 +esturgeons esturgeon nom m p 0.47 0.07 0.07 0.00 +et_caetera et_caetera adv 0.72 0.88 0.72 0.88 +et_cetera et_cetera adv 1.14 0.74 1.14 0.74 +et_seq et_seq adv 0.00 0.07 0.00 0.07 +et et con 12909.08 20879.73 12909.08 20879.73 +etc etc adv 13.90 55.00 13.90 55.00 +etc. etc. adv 0.03 0.74 0.03 0.74 +etcetera etcetera adv 0.00 0.07 0.00 0.07 +ethmoïdal ethmoïdal adj m s 0.03 0.00 0.01 0.00 +ethmoïdaux ethmoïdal adj m p 0.03 0.00 0.01 0.00 +ethnicité ethnicité nom f s 0.02 0.00 0.02 0.00 +ethnie ethnie nom f s 0.28 0.20 0.08 0.07 +ethnies ethnie nom f p 0.28 0.20 0.20 0.14 +ethnique ethnique adj s 1.37 1.01 0.85 0.68 +ethniquement ethniquement adv 0.01 0.00 0.01 0.00 +ethniques ethnique adj p 1.37 1.01 0.52 0.34 +ethnobotaniste ethnobotaniste nom s 0.01 0.00 0.01 0.00 +ethnographe ethnographe nom s 0.10 0.07 0.10 0.07 +ethnographie ethnographie nom f s 0.00 0.20 0.00 0.20 +ethnographique ethnographique adj m s 0.10 0.07 0.10 0.07 +ethnologie ethnologie nom f s 0.01 0.41 0.01 0.41 +ethnologique ethnologique adj s 0.00 0.27 0.00 0.20 +ethnologiques ethnologique adj m p 0.00 0.27 0.00 0.07 +ethnologue ethnologue nom s 0.14 0.47 0.14 0.34 +ethnologues ethnologue nom p 0.14 0.47 0.00 0.14 +ets pas adv_sup 18189.04 8795.20 0.19 0.00 +eu avoir aux m s 18559.23 12800.81 18.39 22.36 par:pas; +eubage eubage nom m s 0.00 0.41 0.00 0.41 +eubine eubine nom f s 0.00 0.27 0.00 0.27 +eucalyptus eucalyptus nom m 0.83 3.11 0.83 3.11 +eucharistie eucharistie nom f s 0.34 0.61 0.34 0.61 +eucharistique eucharistique adj s 0.00 0.41 0.00 0.34 +eucharistiques eucharistique adj m p 0.00 0.41 0.00 0.07 +euclidien euclidien adj m s 0.04 0.14 0.01 0.00 +euclidienne euclidien adj f s 0.04 0.14 0.01 0.00 +euclidiens euclidien adj m p 0.04 0.14 0.01 0.14 +eudistes eudiste nom m p 0.00 0.07 0.00 0.07 +eue avoir aux f s 18559.23 12800.81 0.27 0.54 par:pas; +eues avoir aux f p 18559.23 12800.81 0.01 0.07 par:pas; +eugénique eugénique adj f s 0.01 0.07 0.01 0.07 +eugénisme eugénisme nom m s 0.45 0.00 0.45 0.00 +euh euh ono 108.86 15.47 108.86 15.47 +eulogie eulogie nom f s 0.00 0.07 0.00 0.07 +eunuque eunuque nom m s 1.79 8.45 1.27 2.43 +eunuques_espion eunuques_espion nom m p 0.00 0.14 0.00 0.14 +eunuques eunuque nom m p 1.79 8.45 0.53 6.01 +euphonie euphonie nom f s 0.00 0.07 0.00 0.07 +euphonique euphonique adj m s 0.00 0.34 0.00 0.27 +euphoniquement euphoniquement adv 0.00 0.07 0.00 0.07 +euphoniques euphonique adj p 0.00 0.34 0.00 0.07 +euphorbe euphorbe nom f s 0.00 0.41 0.00 0.07 +euphorbes euphorbe nom f p 0.00 0.41 0.00 0.34 +euphorie euphorie nom f s 0.98 8.11 0.98 8.11 +euphorique euphorique adj s 0.56 1.22 0.56 1.22 +euphorisant euphorisant adj m s 0.06 0.20 0.04 0.07 +euphorisante euphorisant adj f s 0.06 0.20 0.02 0.07 +euphorisants euphorisant nom m p 0.02 0.47 0.02 0.41 +euphorisent euphoriser ver 0.00 0.20 0.00 0.07 ind:pre:3p; +euphorisé euphoriser ver m s 0.00 0.20 0.00 0.07 par:pas; +euphorisée euphoriser ver f s 0.00 0.20 0.00 0.07 par:pas; +euphémisme euphémisme nom m s 1.52 1.55 1.11 1.01 +euphémismes euphémisme nom m p 1.52 1.55 0.41 0.54 +eurafricaine eurafricain adj f s 0.10 0.07 0.00 0.07 +eurafricains eurafricain adj m p 0.10 0.07 0.10 0.00 +eurasien eurasien nom m s 0.03 0.00 0.02 0.00 +eurasienne eurasienne adj f s 0.01 0.07 0.01 0.07 +eurent avoir aux 18559.23 12800.81 0.44 9.32 ind:pas:3p; +euro_africain euro_africain adj f p 0.00 0.07 0.00 0.07 +euro euro nom m s 9.84 0.00 0.84 0.00 +eurodollar eurodollar nom m s 0.01 0.00 0.01 0.00 +euromarché euromarché nom m s 0.00 0.07 0.00 0.07 +européen européen adj m s 9.45 15.88 2.78 3.78 +européenne européen adj f s 9.45 15.88 3.92 6.76 +européennes européen adj f p 9.45 15.88 0.96 1.42 +européens européen nom m p 3.32 7.30 2.44 4.05 +euros euro nom m p 9.84 0.00 8.99 0.00 +eurêka eurêka ono 0.00 0.20 0.00 0.20 +eurythmiques eurythmique adj m p 0.00 0.07 0.00 0.07 +eus avoir aux m p 18559.23 12800.81 0.67 13.04 par:pas; +euskera euskera nom m s 1.30 0.00 1.30 0.00 +eusse avoir aux 18559.23 12800.81 0.52 7.30 sub:imp:1s; +eussent avoir aux 18559.23 12800.81 0.13 20.20 sub:imp:3p; +eusses avoir aux 18559.23 12800.81 0.00 0.07 sub:imp:2s; +eussiez avoir aux 18559.23 12800.81 0.52 0.47 sub:imp:2p; +eussions avoir aux 18559.23 12800.81 0.00 1.35 sub:imp:1p; +eussé avoir aux 18559.23 12800.81 0.00 0.95 sub:imp:1s; +eustache eustache nom m s 0.00 0.20 0.00 0.07 +eustaches eustache nom m p 0.00 0.20 0.00 0.14 +eut avoir aux 18559.23 12800.81 2.15 54.26 ind:pas:3s; +euthanasie euthanasie nom f s 1.48 0.61 1.44 0.54 +euthanasies euthanasie nom f p 1.48 0.61 0.04 0.07 +eux_mêmes eux_mêmes pro_per m p 9.96 48.04 9.96 48.04 +eux eux pro_per m p 295.35 504.26 295.35 504.26 +event event nom m s 0.14 0.00 0.14 0.00 +evzones evzone nom m p 0.00 0.07 0.00 0.07 +ex_abbé ex_abbé nom m s 0.00 0.07 0.00 0.07 +ex_acteur ex_acteur nom m s 0.00 0.07 0.00 0.07 +ex_adjudant ex_adjudant nom m s 0.00 0.14 0.00 0.14 +ex_agent ex_agent nom m s 0.09 0.00 0.09 0.00 +ex_alcoolo ex_alcoolo nom s 0.01 0.00 0.01 0.00 +ex_allée ex_allée nom f s 0.00 0.07 0.00 0.07 +ex_amant ex_amant nom m s 0.19 0.34 0.17 0.07 +ex_amant ex_amant nom f s 0.19 0.34 0.01 0.27 +ex_amant ex_amant nom m p 0.19 0.34 0.01 0.00 +ex_ambassadeur ex_ambassadeur nom m s 0.01 0.00 0.01 0.00 +ex_amour ex_amour nom m s 0.01 0.00 0.01 0.00 +ex_appartement ex_appartement nom m s 0.00 0.07 0.00 0.07 +ex_apprenti ex_apprenti nom m s 0.00 0.07 0.00 0.07 +ex_arriviste ex_arriviste nom s 0.00 0.07 0.00 0.07 +ex_artiste ex_artiste nom s 0.00 0.07 0.00 0.07 +ex_assistant ex_assistant nom m s 0.07 0.00 0.02 0.00 +ex_assistant ex_assistant nom f s 0.07 0.00 0.04 0.00 +ex_associé ex_associé nom m s 0.13 0.07 0.08 0.07 +ex_associé ex_associé nom m p 0.13 0.07 0.05 0.00 +ex_ballerine ex_ballerine nom f s 0.01 0.00 0.01 0.00 +ex_banquier ex_banquier nom m s 0.01 0.00 0.01 0.00 +ex_barman ex_barman nom m s 0.01 0.07 0.01 0.07 +ex_basketteur ex_basketteur nom m s 0.00 0.07 0.00 0.07 +ex_batteur ex_batteur nom m s 0.00 0.07 0.00 0.07 +ex_beatnik ex_beatnik nom s 0.00 0.07 0.00 0.07 +ex_belle_mère ex_belle_mère nom f s 0.05 0.00 0.05 0.00 +ex_bibliothécaire ex_bibliothécaire nom s 0.00 0.07 0.00 0.07 +ex_boss ex_boss nom m 0.01 0.00 0.01 0.00 +ex_boxeur ex_boxeur nom m s 0.16 0.00 0.16 0.00 +ex_branleur ex_branleur nom m p 0.00 0.07 0.00 0.07 +ex_buteur ex_buteur nom m s 0.01 0.00 0.01 0.00 +ex_caïd ex_caïd nom m s 0.01 0.00 0.01 0.00 +ex_camarade ex_camarade nom p 0.01 0.00 0.01 0.00 +ex_capitaine ex_capitaine nom m s 0.04 0.00 0.04 0.00 +ex_champion ex_champion nom m s 0.75 0.14 0.71 0.14 +ex_champion ex_champion nom f s 0.75 0.14 0.01 0.00 +ex_champion ex_champion nom m p 0.75 0.14 0.03 0.00 +ex_chanteur ex_chanteur nom m s 0.02 0.07 0.00 0.07 +ex_chanteur ex_chanteur nom f s 0.02 0.07 0.02 0.00 +ex_chauffeur ex_chauffeur nom m s 0.14 0.07 0.14 0.07 +ex_chef ex_chef nom s 0.20 0.14 0.20 0.14 +ex_chiropracteur ex_chiropracteur nom m s 0.01 0.00 0.01 0.00 +ex_citation ex_citation nom f s 0.01 0.00 0.01 0.00 +ex_citoyen ex_citoyen nom m s 0.01 0.00 0.01 0.00 +ex_civil ex_civil nom m p 0.01 0.00 0.01 0.00 +ex_collabo ex_collabo nom s 0.00 0.07 0.00 0.07 +ex_collègue ex_collègue nom s 0.30 0.14 0.03 0.14 +ex_collègue ex_collègue nom p 0.30 0.14 0.27 0.00 +ex_colonel ex_colonel nom m s 0.01 0.14 0.01 0.14 +ex_commando ex_commando nom m s 0.05 0.00 0.05 0.00 +ex_concierge ex_concierge nom s 0.00 0.07 0.00 0.07 +ex_contrebandier ex_contrebandier nom m s 0.02 0.00 0.02 0.00 +ex_copain ex_copain nom m s 0.28 0.00 0.26 0.00 +ex_copain ex_copain nom m p 0.28 0.00 0.02 0.00 +ex_copine ex_copine nom f s 0.71 0.00 0.54 0.00 +ex_copine ex_copine nom f p 0.71 0.00 0.18 0.00 +ex_corps ex_corps nom m 0.01 0.00 0.01 0.00 +ex_couple ex_couple nom m s 0.01 0.00 0.01 0.00 +ex_danseur ex_danseur nom f s 0.01 0.14 0.01 0.14 +ex_dealer ex_dealer nom m s 0.02 0.00 0.02 0.00 +ex_dieu ex_dieu nom m s 0.01 0.00 0.01 0.00 +ex_diva ex_diva nom f s 0.00 0.07 0.00 0.07 +ex_drôlesse ex_drôlesse nom f s 0.00 0.07 0.00 0.07 +ex_drifter ex_drifter nom m s 0.00 0.07 0.00 0.07 +ex_dulcinée ex_dulcinée nom f s 0.00 0.07 0.00 0.07 +ex_démon ex_démon nom m s 0.10 0.00 0.09 0.00 +ex_démon ex_démon nom m p 0.10 0.00 0.01 0.00 +ex_enseigne ex_enseigne nom m s 0.00 0.07 0.00 0.07 +ex_enzyme ex_enzyme nom f p 0.00 0.07 0.00 0.07 +ex_esclavagiste ex_esclavagiste nom p 0.01 0.00 0.01 0.00 +ex_femme ex_femme nom f s 6.75 1.62 6.32 1.62 +ex_femme ex_femme nom f p 6.75 1.62 0.43 0.00 +ex_fiancé ex_fiancé nom m s 0.18 0.07 0.10 0.00 +ex_fiancé ex_fiancé nom f s 0.18 0.07 0.08 0.07 +ex_fils ex_fils nom m 0.00 0.07 0.00 0.07 +ex_flic ex_flic nom m s 0.27 0.07 0.24 0.07 +ex_flic ex_flic nom m p 0.27 0.07 0.03 0.00 +ex_forçat ex_forçat nom m p 0.01 0.00 0.01 0.00 +ex_fusilleur ex_fusilleur nom m p 0.00 0.07 0.00 0.07 +ex_gang ex_gang nom m s 0.00 0.07 0.00 0.07 +ex_garde ex_garde nom f s 0.14 0.20 0.00 0.14 +ex_garde ex_garde nom f p 0.14 0.20 0.14 0.07 +ex_gauchiste ex_gauchiste adj m s 0.00 0.07 0.00 0.07 +ex_gauchiste ex_gauchiste nom s 0.00 0.07 0.00 0.07 +ex_gendre ex_gendre nom m s 0.01 0.00 0.01 0.00 +ex_gonzesse ex_gonzesse nom f s 0.00 0.14 0.00 0.14 +ex_gouverneur ex_gouverneur nom m s 0.06 0.14 0.06 0.14 +ex_gravosse ex_gravosse nom f s 0.00 0.07 0.00 0.07 +ex_griot ex_griot nom m s 0.00 0.07 0.00 0.07 +ex_griveton ex_griveton nom m s 0.00 0.07 0.00 0.07 +ex_grognasse ex_grognasse nom f s 0.00 0.07 0.00 0.07 +ex_groupe ex_groupe nom m s 0.00 0.07 0.00 0.07 +ex_guenille ex_guenille nom f p 0.00 0.07 0.00 0.07 +ex_guitariste ex_guitariste nom s 0.00 0.07 0.00 0.07 +ex_génie ex_génie nom m s 0.00 0.07 0.00 0.07 +ex_hôpital ex_hôpital nom m s 0.00 0.07 0.00 0.07 +ex_hippie ex_hippie nom p 0.02 0.00 0.02 0.00 +ex_homme_grenouille ex_homme_grenouille nom m s 0.01 0.00 0.01 0.00 +ex_homme ex_homme nom m s 0.06 0.00 0.06 0.00 +ex_immeuble ex_immeuble nom m s 0.00 0.07 0.00 0.07 +ex_inspecteur ex_inspecteur nom m s 0.03 0.00 0.02 0.00 +ex_inspecteur ex_inspecteur nom m p 0.03 0.00 0.01 0.00 +ex_journaliste ex_journaliste nom s 0.02 0.07 0.02 0.07 +ex_junkie ex_junkie nom m s 0.03 0.00 0.03 0.00 +ex_kid ex_kid nom m s 0.00 0.27 0.00 0.27 +ex_leader ex_leader nom m s 0.02 0.00 0.02 0.00 +ex_libris ex_libris nom m 0.00 0.14 0.00 0.14 +ex_lieutenant ex_lieutenant nom m s 0.01 0.00 0.01 0.00 +ex_lit ex_lit nom m s 0.00 0.07 0.00 0.07 +ex_légionnaire ex_légionnaire nom m s 0.00 0.07 0.00 0.07 +ex_lycée ex_lycée nom m s 0.00 0.07 0.00 0.07 +ex_maître ex_maître nom m s 0.00 0.07 0.00 0.07 +ex_madame ex_madame nom f 0.03 0.07 0.03 0.07 +ex_maire ex_maire nom m s 0.01 0.00 0.01 0.00 +ex_mari ex_mari nom m s 5.05 1.08 4.87 1.08 +ex_marine ex_marine nom f s 0.07 0.00 0.07 0.00 +ex_mari ex_mari nom m p 5.05 1.08 0.19 0.00 +ex_mec ex_mec nom m p 0.10 0.00 0.10 0.00 +ex_membre ex_membre nom m s 0.03 0.00 0.03 0.00 +ex_mercenaire ex_mercenaire nom p 0.01 0.00 0.01 0.00 +ex_militaire ex_militaire nom s 0.08 0.00 0.05 0.00 +ex_militaire ex_militaire nom p 0.08 0.00 0.03 0.00 +ex_ministre ex_ministre nom m s 0.06 0.41 0.04 0.41 +ex_ministre ex_ministre nom m p 0.06 0.41 0.01 0.00 +ex_miss ex_miss nom f 0.05 0.00 0.05 0.00 +ex_monteur ex_monteur nom m s 0.02 0.00 0.02 0.00 +ex_motard ex_motard nom m s 0.01 0.00 0.01 0.00 +ex_nana ex_nana nom f s 0.12 0.00 0.12 0.00 +ex_officier ex_officier nom m s 0.05 0.14 0.05 0.14 +ex_opérateur ex_opérateur nom m s 0.00 0.07 0.00 0.07 +ex_palme ex_palme nom f p 0.14 0.00 0.14 0.00 +ex_para ex_para nom m s 0.02 0.14 0.02 0.14 +ex_partenaire ex_partenaire nom s 0.18 0.00 0.18 0.00 +ex_patron ex_patron nom m s 0.20 0.00 0.20 0.00 +ex_pensionnaire ex_pensionnaire nom p 0.00 0.07 0.00 0.07 +ex_perroquet ex_perroquet nom m s 0.01 0.00 0.01 0.00 +ex_petit ex_petit nom m s 0.68 0.00 0.38 0.00 +ex_petit ex_petit nom f s 0.68 0.00 0.28 0.00 +ex_petit ex_petit nom m p 0.68 0.00 0.03 0.00 +ex_pharmacien ex_pharmacien nom f p 0.00 0.07 0.00 0.07 +ex_pilote ex_pilote adj m s 0.00 0.14 0.00 0.14 +ex_planète ex_planète nom f s 0.01 0.00 0.01 0.00 +ex_planton ex_planton nom m s 0.00 0.07 0.00 0.07 +ex_plaqué ex_plaqué adj f s 0.00 0.07 0.00 0.07 +ex_plâtrier ex_plâtrier nom m s 0.00 0.07 0.00 0.07 +ex_poivrot ex_poivrot nom m p 0.01 0.00 0.01 0.00 +ex_premier ex_premier adj m s 0.01 0.00 0.01 0.00 +ex_premier ex_premier nom m s 0.01 0.00 0.01 0.00 +ex_primaire ex_primaire nom s 0.00 0.07 0.00 0.07 +ex_prison ex_prison nom f s 0.01 0.00 0.01 0.00 +ex_procureur ex_procureur nom m s 0.03 0.00 0.03 0.00 +ex_profession ex_profession nom f s 0.00 0.07 0.00 0.07 +ex_profileur ex_profileur nom m s 0.01 0.00 0.01 0.00 +ex_promoteur ex_promoteur nom m s 0.01 0.00 0.01 0.00 +ex_propriétaire ex_propriétaire nom s 0.04 0.07 0.04 0.07 +ex_présentateur ex_présentateur nom m s 0.00 0.07 0.00 0.07 +ex_président ex_président nom m s 0.71 0.00 0.60 0.00 +ex_président ex_président nom m p 0.71 0.00 0.11 0.00 +ex_prêtre ex_prêtre nom m s 0.01 0.00 0.01 0.00 +ex_putain ex_putain nom f s 0.00 0.07 0.00 0.07 +ex_pute ex_pute nom f p 0.01 0.00 0.01 0.00 +ex_quincaillerie ex_quincaillerie nom f s 0.00 0.14 0.00 0.14 +ex_quincaillier ex_quincaillier nom m s 0.00 0.27 0.00 0.27 +ex_rebelle ex_rebelle adj s 0.00 0.07 0.00 0.07 +ex_reine ex_reine nom f s 0.02 0.00 0.02 0.00 +ex_roi ex_roi nom m s 0.01 0.20 0.01 0.20 +ex_république ex_république nom f p 0.01 0.00 0.01 0.00 +ex_résidence ex_résidence nom f s 0.01 0.00 0.01 0.00 +ex_révolutionnaire ex_révolutionnaire nom s 0.00 0.07 0.00 0.07 +ex_sac ex_sac nom m p 0.00 0.07 0.00 0.07 +ex_secrétaire ex_secrétaire nom s 0.07 0.00 0.07 0.00 +ex_sergent ex_sergent nom m s 0.02 0.14 0.02 0.07 +ex_sergent ex_sergent nom m p 0.02 0.14 0.00 0.07 +ex_soldat ex_soldat nom m p 0.00 0.07 0.00 0.07 +ex_soliste ex_soliste nom p 0.00 0.07 0.00 0.07 +ex_standardiste ex_standardiste nom s 0.00 0.07 0.00 0.07 +ex_star ex_star nom f s 0.14 0.00 0.14 0.00 +ex_strip_teaseur ex_strip_teaseur nom f s 0.00 0.07 0.00 0.07 +ex_séminariste ex_séminariste nom s 0.00 0.07 0.00 0.07 +ex_sénateur ex_sénateur nom m s 0.00 0.14 0.00 0.14 +ex_super ex_super adj m s 0.14 0.00 0.14 0.00 +ex_sévère ex_sévère adj f s 0.00 0.07 0.00 0.07 +ex_taulard ex_taulard nom m s 0.38 0.14 0.28 0.07 +ex_taulard ex_taulard nom m p 0.38 0.14 0.10 0.07 +ex_teinturier ex_teinturier nom m s 0.01 0.00 0.01 0.00 +ex_tirailleur ex_tirailleur nom m s 0.00 0.07 0.00 0.07 +ex_tueur ex_tueur nom m s 0.01 0.00 0.01 0.00 +ex_tuteur ex_tuteur nom m s 0.01 0.00 0.01 0.00 +ex_élève ex_élève nom s 0.02 0.07 0.02 0.07 +ex_union ex_union nom f s 0.00 0.07 0.00 0.07 +ex_épouse ex_épouse nom f s 0.30 0.27 0.28 0.27 +ex_épouse ex_épouse nom f p 0.30 0.27 0.02 0.00 +ex_équipier ex_équipier nom m s 0.07 0.00 0.07 0.00 +ex_usine ex_usine nom f s 0.01 0.00 0.01 0.00 +ex_vedette ex_vedette nom f s 0.11 0.07 0.11 0.07 +ex_violeur ex_violeur nom m p 0.01 0.00 0.01 0.00 +ex_voto ex_voto nom m 0.48 1.69 0.48 1.69 +ex_abrupto ex_abrupto adv 0.00 0.07 0.00 0.07 +ex_nihilo ex_nihilo adv 0.00 0.14 0.00 0.14 +exacerba exacerber ver 0.33 1.42 0.00 0.07 ind:pas:3s; +exacerbant exacerber ver 0.33 1.42 0.00 0.07 par:pre; +exacerbation exacerbation nom f s 0.00 0.07 0.00 0.07 +exacerbe exacerber ver 0.33 1.42 0.03 0.20 imp:pre:2s;ind:pre:3s; +exacerbent exacerber ver 0.33 1.42 0.01 0.20 ind:pre:3p; +exacerber exacerber ver 0.33 1.42 0.08 0.34 inf; +exacerbé exacerbé adj m s 0.19 1.15 0.04 0.47 +exacerbée exacerber ver f s 0.33 1.42 0.14 0.14 par:pas; +exacerbées exacerbé adj f p 0.19 1.15 0.02 0.20 +exacerbés exacerbé adj m p 0.19 1.15 0.12 0.00 +exact exact adj m s 86.80 38.58 76.66 19.86 +exacte exact adj f s 86.80 38.58 7.55 13.92 +exactement exactement adv 144.62 92.36 144.62 92.36 +exactes exact adj f p 86.80 38.58 1.08 2.97 +exaction exaction nom f s 0.32 1.69 0.01 0.00 +exactions exaction nom f p 0.32 1.69 0.31 1.69 +exactitude exactitude nom f s 1.26 5.00 1.26 4.93 +exactitudes exactitude nom f p 1.26 5.00 0.00 0.07 +exacts exact adj m p 86.80 38.58 1.51 1.82 +exagère exagérer ver 26.93 22.57 7.30 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exagèrent exagérer ver 26.93 22.57 0.60 0.47 ind:pre:3p; +exagères exagérer ver 26.93 22.57 7.75 1.89 ind:pre:2s; +exagéra exagérer ver 26.93 22.57 0.00 0.27 ind:pas:3s; +exagérai exagérer ver 26.93 22.57 0.00 0.07 ind:pas:1s; +exagéraient exagérer ver 26.93 22.57 0.02 0.07 ind:imp:3p; +exagérais exagérer ver 26.93 22.57 0.07 0.54 ind:imp:1s;ind:imp:2s; +exagérait exagérer ver 26.93 22.57 0.14 3.11 ind:imp:3s; +exagérant exagérer ver 26.93 22.57 0.15 0.68 par:pre; +exagération exagération nom f s 0.67 2.36 0.61 1.69 +exagérations exagération nom f p 0.67 2.36 0.06 0.68 +exagérer exagérer ver 26.93 22.57 2.86 3.85 inf; +exagérerais exagérer ver 26.93 22.57 0.00 0.07 cnd:pre:1s; +exagérerait exagérer ver 26.93 22.57 0.00 0.07 cnd:pre:3s; +exagérerons exagérer ver 26.93 22.57 0.01 0.00 ind:fut:1p; +exagérez exagérer ver 26.93 22.57 3.31 1.22 imp:pre:2p;ind:pre:2p; +exagérions exagérer ver 26.93 22.57 0.00 0.07 ind:imp:1p; +exagérons exagérer ver 26.93 22.57 1.53 1.76 imp:pre:1p;ind:pre:1p; +exagérèrent exagérer ver 26.93 22.57 0.00 0.07 ind:pas:3p; +exagéré exagérer ver m s 26.93 22.57 2.80 2.30 par:pas; +exagérée exagéré adj f s 2.56 4.53 0.65 1.49 +exagérées exagéré adj f p 2.56 4.53 0.17 0.34 +exagérément exagérément adv 0.26 3.38 0.26 3.38 +exagérés exagérer ver m p 26.93 22.57 0.08 0.14 par:pas; +exalta exalter ver 1.86 13.78 0.00 0.41 ind:pas:3s; +exaltai exalter ver 1.86 13.78 0.00 0.07 ind:pas:1s; +exaltaient exalter ver 1.86 13.78 0.00 1.01 ind:imp:3p; +exaltais exalter ver 1.86 13.78 0.00 0.34 ind:imp:1s; +exaltait exalter ver 1.86 13.78 0.00 3.51 ind:imp:3s; +exaltant exaltant adj m s 1.17 6.76 0.81 2.36 +exaltante exaltant adj f s 1.17 6.76 0.27 3.11 +exaltantes exaltant adj f p 1.17 6.76 0.04 0.68 +exaltants exaltant adj m p 1.17 6.76 0.05 0.61 +exaltation exaltation nom f s 0.98 16.22 0.98 15.00 +exaltations exaltation nom f p 0.98 16.22 0.00 1.22 +exalte exalter ver 1.86 13.78 0.49 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaltent exalter ver 1.86 13.78 0.12 0.47 ind:pre:3p; +exalter exalter ver 1.86 13.78 0.42 1.96 inf; +exalterait exalter ver 1.86 13.78 0.00 0.07 cnd:pre:3s; +exaltes exalter ver 1.86 13.78 0.00 0.14 ind:pre:2s; +exaltons exalter ver 1.86 13.78 0.00 0.07 ind:pre:1p; +exaltèrent exalter ver 1.86 13.78 0.00 0.07 ind:pas:3p; +exalté exalté adj m s 1.36 4.26 0.55 1.49 +exaltée exalté adj f s 1.36 4.26 0.55 2.03 +exaltées exalté adj f p 1.36 4.26 0.10 0.27 +exaltés exalté nom m p 0.56 2.23 0.27 0.34 +exam exam nom m s 3.08 0.00 2.06 0.00 +examen examen nom m s 47.77 27.16 30.37 18.31 +examens examen nom m p 47.77 27.16 17.40 8.85 +examina examiner ver 36.36 50.68 0.17 9.19 ind:pas:3s; +examinai examiner ver 36.36 50.68 0.03 0.68 ind:pas:1s; +examinaient examiner ver 36.36 50.68 0.14 1.69 ind:imp:3p; +examinais examiner ver 36.36 50.68 0.33 0.88 ind:imp:1s;ind:imp:2s; +examinait examiner ver 36.36 50.68 0.30 5.61 ind:imp:3s; +examinant examiner ver 36.36 50.68 0.64 5.00 par:pre; +examinateur examinateur nom m s 1.11 1.49 0.95 0.95 +examinateurs examinateur nom m p 1.11 1.49 0.16 0.47 +examinatrice examinateur nom f s 1.11 1.49 0.00 0.07 +examine examiner ver 36.36 50.68 3.94 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +examinent examiner ver 36.36 50.68 0.66 0.54 ind:pre:3p; +examiner examiner ver 36.36 50.68 16.47 14.19 inf; +examinera examiner ver 36.36 50.68 0.91 0.20 ind:fut:3s; +examinerai examiner ver 36.36 50.68 0.52 0.00 ind:fut:1s; +examineraient examiner ver 36.36 50.68 0.01 0.20 cnd:pre:3p; +examinerais examiner ver 36.36 50.68 0.03 0.00 cnd:pre:1s; +examinerait examiner ver 36.36 50.68 0.03 0.14 cnd:pre:3s; +examinerez examiner ver 36.36 50.68 0.04 0.00 ind:fut:2p; +examineriez examiner ver 36.36 50.68 0.01 0.00 cnd:pre:2p; +examinerons examiner ver 36.36 50.68 0.32 0.07 ind:fut:1p; +examineront examiner ver 36.36 50.68 0.06 0.07 ind:fut:3p; +examines examiner ver 36.36 50.68 0.12 0.07 ind:pre:2s; +examinez examiner ver 36.36 50.68 2.22 0.07 imp:pre:2p;ind:pre:2p; +examiniez examiner ver 36.36 50.68 0.29 0.00 ind:imp:2p; +examinions examiner ver 36.36 50.68 0.05 0.14 ind:imp:1p; +examinons examiner ver 36.36 50.68 1.57 0.47 imp:pre:1p;ind:pre:1p; +examinèrent examiner ver 36.36 50.68 0.00 0.47 ind:pas:3p; +examiné examiner ver m s 36.36 50.68 5.51 3.11 par:pas; +examinée examiner ver f s 36.36 50.68 1.30 0.88 par:pas; +examinées examiner ver f p 36.36 50.68 0.32 0.34 par:pas; +examinés examiner ver m p 36.36 50.68 0.39 0.41 par:pas; +exams exam nom m p 3.08 0.00 1.01 0.00 +exarque exarque nom m s 0.00 0.07 0.00 0.07 +exaspère exaspérer ver 2.31 19.66 0.93 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaspèrent exaspérer ver 2.31 19.66 0.07 0.54 ind:pre:3p; +exaspéra exaspérer ver 2.31 19.66 0.00 0.74 ind:pas:3s; +exaspéraient exaspérer ver 2.31 19.66 0.00 1.15 ind:imp:3p; +exaspérais exaspérer ver 2.31 19.66 0.00 0.20 ind:imp:1s; +exaspérait exaspérer ver 2.31 19.66 0.11 3.58 ind:imp:3s; +exaspérant exaspérant adj m s 0.64 2.43 0.32 1.15 +exaspérante exaspérant adj f s 0.64 2.43 0.19 1.01 +exaspérantes exaspérant adj f p 0.64 2.43 0.01 0.07 +exaspérants exaspérant adj m p 0.64 2.43 0.12 0.20 +exaspération exaspération nom f s 0.55 4.46 0.55 4.39 +exaspérations exaspération nom f p 0.55 4.46 0.00 0.07 +exaspérer exaspérer ver 2.31 19.66 0.52 1.96 inf; +exaspérera exaspérer ver 2.31 19.66 0.00 0.07 ind:fut:3s; +exaspéreraient exaspérer ver 2.31 19.66 0.00 0.07 cnd:pre:3p; +exaspérerait exaspérer ver 2.31 19.66 0.01 0.00 cnd:pre:3s; +exaspérez exaspérer ver 2.31 19.66 0.11 0.00 ind:pre:2p; +exaspérât exaspérer ver 2.31 19.66 0.00 0.07 sub:imp:3s; +exaspérèrent exaspérer ver 2.31 19.66 0.00 0.14 ind:pas:3p; +exaspéré exaspérer ver m s 2.31 19.66 0.52 5.34 par:pas; +exaspérée exaspérer ver f s 2.31 19.66 0.02 1.89 par:pas; +exaspérées exaspérer ver f p 2.31 19.66 0.00 0.47 par:pas; +exaspérés exaspérer ver m p 2.31 19.66 0.01 0.61 par:pas; +exauce exaucer ver 6.80 4.26 1.21 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaucement exaucement nom m s 0.00 0.07 0.00 0.07 +exaucent exaucer ver 6.80 4.26 0.03 0.00 ind:pre:3p; +exaucer exaucer ver 6.80 4.26 1.14 0.81 inf; +exaucera exaucer ver 6.80 4.26 0.16 0.00 ind:fut:3s; +exaucerai exaucer ver 6.80 4.26 0.17 0.00 ind:fut:1s; +exaucez exaucer ver 6.80 4.26 0.04 0.14 imp:pre:2p;ind:pre:2p; +exaucé exaucer ver m s 6.80 4.26 2.88 1.15 par:pas; +exaucée exaucer ver f s 6.80 4.26 0.27 0.68 par:pas; +exaucées exaucer ver f p 6.80 4.26 0.30 0.14 par:pas; +exaucés exaucer ver m p 6.80 4.26 0.51 0.41 par:pas; +exauça exaucer ver 6.80 4.26 0.00 0.07 ind:pas:3s; +exauçai exaucer ver 6.80 4.26 0.00 0.07 ind:pas:1s; +exauçaient exaucer ver 6.80 4.26 0.00 0.07 ind:imp:3p; +exauçant exaucer ver 6.80 4.26 0.06 0.07 par:pre; +exauçons exaucer ver 6.80 4.26 0.03 0.00 imp:pre:1p;ind:pre:1p; +exauçât exaucer ver 6.80 4.26 0.00 0.07 sub:imp:3s; +excavateur excavateur nom m s 0.04 0.14 0.02 0.07 +excavateurs excavateur nom m p 0.04 0.14 0.02 0.00 +excavation excavation nom f s 0.17 1.28 0.12 0.95 +excavations excavation nom f p 0.17 1.28 0.04 0.34 +excavatrice excavateur nom f s 0.04 0.14 0.00 0.07 +excaver excaver ver 0.04 0.07 0.03 0.00 inf; +excavée excaver ver f s 0.04 0.07 0.01 0.00 par:pas; +excavées excaver ver f p 0.04 0.07 0.00 0.07 par:pas; +excella exceller ver 2.38 3.78 0.00 0.07 ind:pas:3s; +excellaient exceller ver 2.38 3.78 0.00 0.41 ind:imp:3p; +excellais exceller ver 2.38 3.78 0.00 0.07 ind:imp:1s; +excellait exceller ver 2.38 3.78 0.08 1.28 ind:imp:3s; +excellant exceller ver 2.38 3.78 0.00 0.20 par:pre; +excelle exceller ver 2.38 3.78 0.85 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excellemment excellemment adv 0.16 0.07 0.16 0.07 +excellence excellence nom f s 23.29 17.43 22.73 17.09 +excellences excellence nom f p 23.29 17.43 0.56 0.34 +excellent excellent adj m s 76.43 33.92 46.87 16.01 +excellente excellent adj f s 76.43 33.92 21.04 11.76 +excellentes excellent adj f p 76.43 33.92 4.28 2.91 +excellentissime excellentissime adj s 0.01 0.07 0.01 0.07 +excellents excellent adj m p 76.43 33.92 4.25 3.24 +exceller exceller ver 2.38 3.78 0.16 0.41 inf; +excelleraient exceller ver 2.38 3.78 0.00 0.07 cnd:pre:3p; +excelles exceller ver 2.38 3.78 0.07 0.00 ind:pre:2s; +excellez exceller ver 2.38 3.78 0.09 0.00 ind:pre:2p; +excellé exceller ver m s 2.38 3.78 0.31 0.00 par:pas; +excentrer excentrer ver 0.02 0.00 0.01 0.00 inf; +excentricité excentricité nom f s 0.39 1.55 0.29 0.95 +excentricités excentricité nom f p 0.39 1.55 0.10 0.61 +excentrique excentrique adj s 2.34 2.09 1.97 1.35 +excentriques excentrique adj p 2.34 2.09 0.37 0.74 +excentré excentré adj m s 0.05 0.00 0.04 0.00 +excentrée excentré adj f s 0.05 0.00 0.01 0.00 +exceptais excepter ver 0.72 2.64 0.00 0.07 ind:imp:1s; +exceptait excepter ver 0.72 2.64 0.00 0.14 ind:imp:3s; +exceptant excepter ver 0.72 2.64 0.00 0.14 par:pre; +excepte excepter ver 0.72 2.64 0.23 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excepter excepter ver 0.72 2.64 0.00 0.41 inf; +exceptes excepter ver 0.72 2.64 0.00 0.07 ind:pre:2s; +exception exception nom f s 15.97 24.80 14.32 20.41 +exceptionnel exceptionnel adj m s 16.68 20.07 9.72 6.89 +exceptionnelle exceptionnel adj f s 16.68 20.07 3.47 8.24 +exceptionnellement exceptionnellement adv 1.03 4.19 1.03 4.19 +exceptionnelles exceptionnel adj f p 16.68 20.07 1.78 3.04 +exceptionnels exceptionnel adj m p 16.68 20.07 1.71 1.89 +exceptions exception nom f p 15.97 24.80 1.65 4.39 +excepté excepté pre 5.59 4.05 5.59 4.05 +exceptée excepté adj f s 0.34 0.68 0.24 0.27 +exceptées excepté adj f p 0.34 0.68 0.01 0.00 +exceptés excepté adj m p 0.34 0.68 0.04 0.20 +excessif excessif adj m s 4.79 15.54 2.05 5.68 +excessifs excessif adj m p 4.79 15.54 0.35 1.28 +excessive excessif adj f s 4.79 15.54 2.29 7.09 +excessivement excessivement adv 1.14 3.11 1.14 3.11 +excessives excessif adj f p 4.79 15.54 0.09 1.49 +excipent exciper ver 0.00 0.27 0.00 0.07 ind:pre:3p; +exciper exciper ver 0.00 0.27 0.00 0.20 inf; +excisant exciser ver 0.16 0.41 0.02 0.00 par:pre; +excise exciser ver 0.16 0.41 0.05 0.00 ind:pre:1s;ind:pre:3s; +exciser exciser ver 0.16 0.41 0.05 0.27 inf; +exciseuse exciseur nom f s 0.00 0.20 0.00 0.14 +exciseuses exciseur nom f p 0.00 0.20 0.00 0.07 +excision excision nom f s 0.08 0.81 0.08 0.81 +excisé exciser ver m s 0.16 0.41 0.01 0.00 par:pas; +excisée exciser ver f s 0.16 0.41 0.01 0.00 par:pas; +excisées exciser ver f p 0.16 0.41 0.01 0.14 par:pas; +excita exciter ver 28.01 26.55 0.00 0.61 ind:pas:3s; +excitable excitable adj m s 0.03 0.00 0.03 0.00 +excitaient exciter ver 28.01 26.55 0.17 1.55 ind:imp:3p; +excitais exciter ver 28.01 26.55 0.03 0.07 ind:imp:1s;ind:imp:2s; +excitait exciter ver 28.01 26.55 0.79 4.80 ind:imp:3s; +excitant excitant adj m s 16.14 7.36 12.44 3.92 +excitante excitant adj f s 16.14 7.36 2.83 2.30 +excitantes excitant adj f p 16.14 7.36 0.60 0.47 +excitants excitant adj m p 16.14 7.36 0.27 0.68 +excitation excitation nom f s 3.81 16.69 3.81 16.55 +excitations excitation nom f p 3.81 16.69 0.00 0.14 +excite exciter ver 28.01 26.55 10.38 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excitent exciter ver 28.01 26.55 1.28 1.15 ind:pre:3p; +exciter exciter ver 28.01 26.55 2.60 5.81 inf; +excitera exciter ver 28.01 26.55 0.15 0.20 ind:fut:3s; +exciterait exciter ver 28.01 26.55 0.81 0.34 cnd:pre:3s; +exciterez exciter ver 28.01 26.55 0.00 0.07 ind:fut:2p; +exciteriez exciter ver 28.01 26.55 0.00 0.07 cnd:pre:2p; +exciteront exciter ver 28.01 26.55 0.02 0.07 ind:fut:3p; +excites exciter ver 28.01 26.55 1.59 0.47 ind:pre:2s; +exciteur exciteur nom m s 0.00 0.07 0.00 0.07 +excitez exciter ver 28.01 26.55 0.64 0.20 imp:pre:2p;ind:pre:2p; +excitions exciter ver 28.01 26.55 0.00 0.07 ind:imp:1p; +excitons exciter ver 28.01 26.55 0.01 0.07 imp:pre:1p;ind:pre:1p;; +excitèrent exciter ver 28.01 26.55 0.00 0.14 ind:pas:3p; +excité exciter ver m s 28.01 26.55 5.17 2.36 par:pas; +excitée exciter ver f s 28.01 26.55 3.17 1.15 par:pas; +excitées excité adj f p 6.88 6.96 0.10 0.47 +excités exciter ver m p 28.01 26.55 0.86 0.74 par:pas; +exclût exclure ver 11.32 16.22 0.00 0.07 sub:imp:3s; +exclama exclamer ver 0.26 18.99 0.01 8.04 ind:pas:3s; +exclamai exclamer ver 0.26 18.99 0.00 0.20 ind:pas:1s; +exclamaient exclamer ver 0.26 18.99 0.01 0.54 ind:imp:3p; +exclamais exclamer ver 0.26 18.99 0.00 0.07 ind:imp:1s; +exclamait exclamer ver 0.26 18.99 0.00 1.62 ind:imp:3s; +exclamant exclamer ver 0.26 18.99 0.01 0.47 par:pre; +exclamatif exclamatif adj m s 0.01 0.14 0.00 0.07 +exclamation exclamation nom f s 1.27 11.76 1.11 5.27 +exclamations exclamation nom f p 1.27 11.76 0.16 6.49 +exclamative exclamatif adj f s 0.01 0.14 0.01 0.07 +exclame exclamer ver 0.26 18.99 0.03 3.72 ind:pre:3s; +exclament exclamer ver 0.26 18.99 0.14 0.34 ind:pre:3p; +exclamer exclamer ver 0.26 18.99 0.03 1.49 inf; +exclameraient exclamer ver 0.26 18.99 0.00 0.07 cnd:pre:3p; +exclamerait exclamer ver 0.26 18.99 0.00 0.14 cnd:pre:3s; +exclamâmes exclamer ver 0.26 18.99 0.00 0.14 ind:pas:1p; +exclamèrent exclamer ver 0.26 18.99 0.00 0.27 ind:pas:3p; +exclamé exclamer ver m s 0.26 18.99 0.02 1.08 par:pas; +exclamée exclamer ver f s 0.26 18.99 0.01 0.81 par:pas; +exclu exclure ver m s 11.32 16.22 3.21 3.31 par:pas; +excluaient exclure ver 11.32 16.22 0.00 0.81 ind:imp:3p; +excluais exclure ver 11.32 16.22 0.02 0.20 ind:imp:1s; +excluait exclure ver 11.32 16.22 0.02 2.77 ind:imp:3s; +excluant exclure ver 11.32 16.22 0.12 1.15 par:pre; +exclue exclure ver f s 11.32 16.22 1.10 1.62 par:pas;sub:pre:1s;sub:pre:3s; +excluent exclure ver 11.32 16.22 0.54 0.20 ind:pre:3p; +exclues exclure ver f p 11.32 16.22 0.41 0.14 par:pas;sub:pre:2s; +excluez exclure ver 11.32 16.22 0.16 0.00 imp:pre:2p;ind:pre:2p; +excluions exclure ver 11.32 16.22 0.00 0.07 ind:imp:1p; +excluons exclure ver 11.32 16.22 0.19 0.00 imp:pre:1p;ind:pre:1p; +exclura exclure ver 11.32 16.22 0.01 0.14 ind:fut:3s; +exclurais exclure ver 11.32 16.22 0.23 0.00 cnd:pre:1s; +exclure exclure ver 11.32 16.22 2.17 2.50 inf; +exclus exclure ver m p 11.32 16.22 1.14 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:2s;par:pas; +exclusif exclusif adj m s 3.35 7.43 1.47 3.38 +exclusifs exclusif adj m p 3.35 7.43 0.46 0.20 +exclusion exclusion nom f s 1.02 3.92 1.02 3.72 +exclusions exclusion nom f p 1.02 3.92 0.00 0.20 +exclusive exclusif adj f s 3.35 7.43 1.32 2.97 +exclusivement exclusivement adv 2.05 10.34 2.05 10.34 +exclusives exclusif adj f p 3.35 7.43 0.10 0.88 +exclusivité exclusivité nom f s 3.21 2.16 3.06 2.03 +exclusivités exclusivité nom f p 3.21 2.16 0.15 0.14 +exclut exclure ver 11.32 16.22 2.02 1.62 ind:pre:3s;ind:pas:3s; +excommuniaient excommunier ver 0.80 1.82 0.00 0.07 ind:imp:3p; +excommuniait excommunier ver 0.80 1.82 0.00 0.07 ind:imp:3s; +excommuniant excommunier ver 0.80 1.82 0.00 0.07 par:pre; +excommunication excommunication nom f s 0.82 1.28 0.72 1.15 +excommunications excommunication nom f p 0.82 1.28 0.10 0.14 +excommunie excommunier ver 0.80 1.82 0.11 0.14 ind:pre:1s;ind:pre:3s; +excommunient excommunier ver 0.80 1.82 0.00 0.07 ind:pre:3p; +excommunier excommunier ver 0.80 1.82 0.19 0.34 inf; +excommuniez excommunier ver 0.80 1.82 0.00 0.07 imp:pre:2p; +excommunié excommunier ver m s 0.80 1.82 0.33 0.68 par:pas; +excommuniée excommunier ver f s 0.80 1.82 0.05 0.00 par:pas; +excommuniés excommunier ver m p 0.80 1.82 0.12 0.34 par:pas; +excoriée excorier ver f s 0.00 0.14 0.00 0.07 par:pas; +excoriées excorier ver f p 0.00 0.14 0.00 0.07 par:pas; +excroissance excroissance nom f s 0.38 1.55 0.24 0.81 +excroissances excroissance nom f p 0.38 1.55 0.14 0.74 +excrément excrément nom m s 1.83 3.99 0.36 0.61 +excrémentiel excrémentiel adj m s 0.00 0.14 0.00 0.07 +excrémentielle excrémentiel adj f s 0.00 0.14 0.00 0.07 +excréments excrément nom m p 1.83 3.99 1.48 3.38 +excréter excréter ver 0.04 0.07 0.02 0.00 inf; +excrétera excréter ver 0.04 0.07 0.01 0.00 ind:fut:3s; +excrétion excrétion nom f s 0.06 0.14 0.01 0.00 +excrétions excrétion nom f p 0.06 0.14 0.04 0.14 +excrété excréter ver m s 0.04 0.07 0.01 0.07 par:pas; +excède excéder ver 0.65 9.80 0.10 0.34 ind:pre:3s; +excèdent excéder ver 0.65 9.80 0.05 0.20 ind:pre:3p; +excès excès nom m 7.67 22.23 7.67 22.23 +excédaient excéder ver 0.65 9.80 0.00 0.54 ind:imp:3p; +excédais excéder ver 0.65 9.80 0.00 0.07 ind:imp:1s; +excédait excéder ver 0.65 9.80 0.02 0.41 ind:imp:3s; +excédant excédant adj m s 0.13 0.14 0.13 0.14 +excédent excédent nom m s 0.87 0.74 0.76 0.54 +excédentaire excédentaire adj m s 0.06 0.20 0.04 0.14 +excédentaires excédentaire adj m p 0.06 0.20 0.01 0.07 +excédents excédent nom m p 0.87 0.74 0.11 0.20 +excéder excéder ver 0.65 9.80 0.16 0.27 inf; +excédera excéder ver 0.65 9.80 0.01 0.00 ind:fut:3s; +excédât excéder ver 0.65 9.80 0.00 0.07 sub:imp:3s; +excédé excéder ver m s 0.65 9.80 0.21 5.20 par:pas; +excédée excéder ver f s 0.65 9.80 0.03 1.89 par:pas; +excédées excéder ver f p 0.65 9.80 0.00 0.07 par:pas; +excédés excéder ver m p 0.65 9.80 0.02 0.20 par:pas; +excursion excursion nom f s 3.67 4.59 3.09 3.04 +excursionnaient excursionner ver 0.00 0.20 0.00 0.07 ind:imp:3p; +excursionnant excursionner ver 0.00 0.20 0.00 0.07 par:pre; +excursionner excursionner ver 0.00 0.20 0.00 0.07 inf; +excursionniste excursionniste nom s 0.04 0.14 0.04 0.00 +excursionnistes excursionniste nom p 0.04 0.14 0.00 0.14 +excursions excursion nom f p 3.67 4.59 0.58 1.55 +excusa excuser ver 399.18 61.82 0.02 3.45 ind:pas:3s; +excusable excusable adj s 0.40 1.62 0.39 1.55 +excusables excusable adj m p 0.40 1.62 0.01 0.07 +excusai excuser ver 399.18 61.82 0.00 0.34 ind:pas:1s; +excusaient excuser ver 399.18 61.82 0.00 0.47 ind:imp:3p; +excusais excuser ver 399.18 61.82 0.11 0.14 ind:imp:1s;ind:imp:2s; +excusait excuser ver 399.18 61.82 0.16 3.45 ind:imp:3s; +excusant excuser ver 399.18 61.82 0.21 3.18 par:pre; +excuse excuser ver 399.18 61.82 111.82 14.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +excusent excuser ver 399.18 61.82 0.30 0.34 ind:pre:1p;ind:pre:3p; +excuser excuser ver 399.18 61.82 43.00 12.03 inf; +excusera excuser ver 399.18 61.82 0.41 0.41 ind:fut:3s; +excuserai excuser ver 399.18 61.82 0.49 0.14 ind:fut:1s; +excuserais excuser ver 399.18 61.82 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +excuserait excuser ver 399.18 61.82 0.06 0.27 cnd:pre:3s; +excuseras excuser ver 399.18 61.82 0.80 1.15 ind:fut:2s; +excuserez excuser ver 399.18 61.82 2.34 1.28 ind:fut:2p; +excuseriez excuser ver 399.18 61.82 0.02 0.00 cnd:pre:2p; +excuserons excuser ver 399.18 61.82 0.01 0.14 ind:fut:1p; +excuseront excuser ver 399.18 61.82 0.18 0.00 ind:fut:3p; +excuses excuse nom f p 61.58 23.51 32.15 12.23 +excusez excuser ver 399.18 61.82 230.25 16.08 imp:pre:2p;ind:pre:2p; +excusiez excuser ver 399.18 61.82 0.09 0.07 ind:imp:2p; +excusions excuser ver 399.18 61.82 0.00 0.07 ind:imp:1p; +excusâmes excuser ver 399.18 61.82 0.00 0.07 ind:pas:1p; +excusons excuser ver 399.18 61.82 0.48 0.14 imp:pre:1p;ind:pre:1p; +excusât excuser ver 399.18 61.82 0.00 0.41 sub:imp:3s; +excusèrent excuser ver 399.18 61.82 0.00 0.20 ind:pas:3p; +excusé excuser ver m s 399.18 61.82 4.25 1.89 par:pas; +excusée excuser ver f s 399.18 61.82 0.72 0.47 par:pas; +excusées excuser ver f p 399.18 61.82 0.04 0.07 par:pas; +excusés excuser ver m p 399.18 61.82 0.22 0.20 par:pas; +exeat exeat nom m 0.01 0.27 0.01 0.27 +exemplaire exemplaire adj s 4.42 9.12 4.06 7.57 +exemplairement exemplairement adv 0.10 0.07 0.10 0.07 +exemplaires exemplaire nom m p 6.32 14.26 2.52 7.57 +exemplarité exemplarité nom f s 0.01 0.00 0.01 0.00 +exemple exemple nom m s 93.20 126.62 91.83 119.19 +exemples exemple nom m p 93.20 126.62 1.38 7.43 +exemplifier exemplifier ver 0.10 0.00 0.10 0.00 inf; +exempt exempt adj m s 0.28 1.96 0.12 1.15 +exempte exempt adj f s 0.28 1.96 0.09 0.27 +exempter exempter ver 1.16 0.54 0.22 0.07 inf; +exemptes exempt adj f p 0.28 1.96 0.02 0.27 +exemptiez exempter ver 1.16 0.54 0.01 0.00 ind:imp:2p; +exemption exemption nom f s 0.60 0.68 0.54 0.20 +exemptions exemption nom f p 0.60 0.68 0.06 0.47 +exempts exempt adj m p 0.28 1.96 0.05 0.27 +exempté exempter ver m s 1.16 0.54 0.52 0.14 par:pas; +exemptée exempter ver f s 1.16 0.54 0.05 0.14 par:pas; +exemptés exempter ver m p 1.16 0.54 0.28 0.00 par:pas; +exequatur exequatur nom m 0.00 0.07 0.00 0.07 +exerce exercer ver 14.53 44.26 3.82 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exercent exercer ver 14.53 44.26 0.60 1.55 ind:pre:3p; +exercer exercer ver 14.53 44.26 5.67 14.39 inf; +exercera exercer ver 14.53 44.26 0.07 0.20 ind:fut:3s; +exercerai exercer ver 14.53 44.26 0.10 0.14 ind:fut:1s; +exerceraient exercer ver 14.53 44.26 0.00 0.14 cnd:pre:3p; +exercerais exercer ver 14.53 44.26 0.01 0.07 cnd:pre:1s; +exercerait exercer ver 14.53 44.26 0.05 0.41 cnd:pre:3s; +exercerez exercer ver 14.53 44.26 0.14 0.14 ind:fut:2p; +exercerons exercer ver 14.53 44.26 0.01 0.07 ind:fut:1p; +exerceront exercer ver 14.53 44.26 0.02 0.14 ind:fut:3p; +exerces exercer ver 14.53 44.26 0.20 0.14 ind:pre:2s; +exercez exercer ver 14.53 44.26 0.86 0.27 imp:pre:2p;ind:pre:2p; +exercice exercice nom m s 22.66 27.36 17.54 17.50 +exercices exercice nom m p 22.66 27.36 5.12 9.86 +exerciez exercer ver 14.53 44.26 0.24 0.07 ind:imp:2p; +exercèrent exercer ver 14.53 44.26 0.00 0.07 ind:pas:3p; +exercé exercer ver m s 14.53 44.26 0.96 2.97 par:pas; +exercée exercer ver f s 14.53 44.26 0.56 2.03 par:pas; +exercées exercer ver f p 14.53 44.26 0.05 0.47 par:pas; +exercés exercer ver m p 14.53 44.26 0.20 0.68 par:pas; +exergue exergue nom m s 0.22 0.68 0.22 0.68 +exerça exercer ver 14.53 44.26 0.02 0.81 ind:pas:3s; +exerçai exercer ver 14.53 44.26 0.01 0.34 ind:pas:1s; +exerçaient exercer ver 14.53 44.26 0.04 1.89 ind:imp:3p; +exerçais exercer ver 14.53 44.26 0.12 0.74 ind:imp:1s;ind:imp:2s; +exerçait exercer ver 14.53 44.26 0.31 7.03 ind:imp:3s; +exerçant exercer ver 14.53 44.26 0.44 1.89 par:pre; +exerçassent exercer ver 14.53 44.26 0.00 0.07 sub:imp:3p; +exerçons exercer ver 14.53 44.26 0.04 0.20 imp:pre:1p;ind:pre:1p; +exerçât exercer ver 14.53 44.26 0.00 0.68 sub:imp:3s; +exfiltration exfiltration nom f s 0.04 0.07 0.04 0.07 +exfiltrer exfiltrer ver 0.05 0.00 0.03 0.00 inf; +exfiltré exfiltrer ver m s 0.05 0.00 0.02 0.00 par:pas; +exfoliant exfoliant adj m s 0.08 0.00 0.08 0.00 +exfolier exfolier ver 0.01 0.14 0.01 0.00 inf; +exfolions exfolier ver 0.01 0.14 0.00 0.07 ind:pre:1p; +exfoliée exfolier ver f s 0.01 0.14 0.00 0.07 par:pas; +exhala exhaler ver 0.80 10.81 0.03 0.81 ind:pas:3s; +exhalaient exhaler ver 0.80 10.81 0.00 0.47 ind:imp:3p; +exhalaison exhalaison nom f s 0.02 1.69 0.00 0.88 +exhalaisons exhalaison nom f p 0.02 1.69 0.02 0.81 +exhalait exhaler ver 0.80 10.81 0.16 2.50 ind:imp:3s; +exhalant exhaler ver 0.80 10.81 0.00 2.64 par:pre; +exhalation exhalation nom f s 0.01 0.00 0.01 0.00 +exhale exhaler ver 0.80 10.81 0.32 1.76 imp:pre:2s;ind:pre:3s; +exhalent exhaler ver 0.80 10.81 0.01 0.47 ind:pre:3p; +exhaler exhaler ver 0.80 10.81 0.27 1.08 inf; +exhaleraient exhaler ver 0.80 10.81 0.00 0.07 cnd:pre:3p; +exhalâmes exhaler ver 0.80 10.81 0.00 0.07 ind:pas:1p; +exhalât exhaler ver 0.80 10.81 0.00 0.14 sub:imp:3s; +exhalé exhaler ver m s 0.80 10.81 0.00 0.47 par:pas; +exhalée exhaler ver f s 0.80 10.81 0.00 0.34 par:pas; +exhaussait exhausser ver 0.03 0.47 0.00 0.07 ind:imp:3s; +exhausse exhausser ver 0.03 0.47 0.00 0.20 ind:pre:3s; +exhaussement exhaussement nom m s 0.00 0.07 0.00 0.07 +exhausser exhausser ver 0.03 0.47 0.00 0.07 inf; +exhaussé exhausser ver m s 0.03 0.47 0.01 0.07 par:pas; +exhaussée exhausser ver f s 0.03 0.47 0.01 0.07 par:pas; +exhaustif exhaustif adj m s 0.61 0.54 0.30 0.41 +exhaustifs exhaustif adj m p 0.61 0.54 0.02 0.00 +exhaustion exhaustion nom f s 0.00 0.34 0.00 0.34 +exhaustive exhaustif adj f s 0.61 0.54 0.29 0.14 +exhaustivement exhaustivement adv 0.00 0.14 0.00 0.14 +exhaustivité exhaustivité nom f s 0.00 0.07 0.00 0.07 +exhiba exhiber ver 2.87 13.31 0.00 0.61 ind:pas:3s; +exhibai exhiber ver 2.87 13.31 0.00 0.14 ind:pas:1s; +exhibaient exhiber ver 2.87 13.31 0.01 0.61 ind:imp:3p; +exhibais exhiber ver 2.87 13.31 0.03 0.00 ind:imp:2s; +exhibait exhiber ver 2.87 13.31 0.16 2.03 ind:imp:3s; +exhibant exhiber ver 2.87 13.31 0.16 1.69 par:pre; +exhibe exhiber ver 2.87 13.31 0.58 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exhibent exhiber ver 2.87 13.31 0.05 0.74 ind:pre:3p; +exhiber exhiber ver 2.87 13.31 0.98 3.78 inf; +exhibera exhiber ver 2.87 13.31 0.20 0.07 ind:fut:3s; +exhiberait exhiber ver 2.87 13.31 0.01 0.14 cnd:pre:3s; +exhiberas exhiber ver 2.87 13.31 0.00 0.07 ind:fut:2s; +exhibez exhiber ver 2.87 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +exhibions exhiber ver 2.87 13.31 0.01 0.07 ind:imp:1p; +exhibition exhibition nom f s 0.44 2.77 0.36 2.09 +exhibitionnisme exhibitionnisme nom m s 0.20 0.81 0.20 0.81 +exhibitionniste exhibitionniste nom s 1.08 1.55 0.85 1.01 +exhibitionnistes exhibitionniste nom p 1.08 1.55 0.23 0.54 +exhibitions exhibition nom f p 0.44 2.77 0.08 0.68 +exhibé exhiber ver m s 2.87 13.31 0.30 1.15 par:pas; +exhibée exhiber ver f s 2.87 13.31 0.32 0.20 par:pas; +exhibées exhiber ver f p 2.87 13.31 0.00 0.20 par:pas; +exhibés exhiber ver m p 2.87 13.31 0.02 0.34 par:pas; +exhorta exhorter ver 0.66 3.51 0.00 0.68 ind:pas:3s; +exhortai exhorter ver 0.66 3.51 0.00 0.07 ind:pas:1s; +exhortaient exhorter ver 0.66 3.51 0.02 0.07 ind:imp:3p; +exhortais exhorter ver 0.66 3.51 0.00 0.34 ind:imp:1s; +exhortait exhorter ver 0.66 3.51 0.01 0.54 ind:imp:3s; +exhortant exhorter ver 0.66 3.51 0.01 0.27 par:pre; +exhortation exhortation nom f s 0.13 1.69 0.02 0.47 +exhortations exhortation nom f p 0.13 1.69 0.11 1.22 +exhorte exhorter ver 0.66 3.51 0.34 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exhortent exhorter ver 0.66 3.51 0.01 0.14 ind:pre:3p; +exhorter exhorter ver 0.66 3.51 0.06 0.54 inf; +exhortions exhorter ver 0.66 3.51 0.00 0.07 ind:imp:1p; +exhortâmes exhorter ver 0.66 3.51 0.00 0.07 ind:pas:1p; +exhortons exhorter ver 0.66 3.51 0.04 0.00 ind:pre:1p; +exhorté exhorter ver m s 0.66 3.51 0.17 0.07 par:pas; +exhuma exhumer ver 1.62 3.85 0.00 0.14 ind:pas:3s; +exhumaient exhumer ver 1.62 3.85 0.00 0.20 ind:imp:3p; +exhumais exhumer ver 1.62 3.85 0.00 0.07 ind:imp:1s; +exhumait exhumer ver 1.62 3.85 0.02 0.07 ind:imp:3s; +exhumant exhumer ver 1.62 3.85 0.01 0.14 par:pre; +exhumation exhumation nom f s 0.30 0.27 0.30 0.27 +exhume exhumer ver 1.62 3.85 0.07 0.34 imp:pre:2s;ind:pre:3s; +exhumer exhumer ver 1.62 3.85 0.81 0.88 inf; +exhumera exhumer ver 1.62 3.85 0.02 0.07 ind:fut:3s; +exhumeront exhumer ver 1.62 3.85 0.00 0.07 ind:fut:3p; +exhumé exhumer ver m s 1.62 3.85 0.41 0.95 par:pas; +exhumée exhumer ver f s 1.62 3.85 0.04 0.27 par:pas; +exhumées exhumer ver f p 1.62 3.85 0.01 0.20 par:pas; +exhumés exhumer ver m p 1.62 3.85 0.22 0.47 par:pas; +exige exiger ver 34.96 60.07 18.93 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exigea exiger ver 34.96 60.07 0.05 1.96 ind:pas:3s; +exigeai exiger ver 34.96 60.07 0.00 0.34 ind:pas:1s; +exigeaient exiger ver 34.96 60.07 0.05 3.04 ind:imp:3p; +exigeais exiger ver 34.96 60.07 0.04 0.41 ind:imp:1s; +exigeait exiger ver 34.96 60.07 1.21 13.11 ind:imp:3s; +exigeant exigeant adj m s 3.79 7.84 1.77 2.97 +exigeante exigeant adj f s 3.79 7.84 1.59 3.18 +exigeantes exigeant adj f p 3.79 7.84 0.14 0.41 +exigeants exigeant adj m p 3.79 7.84 0.28 1.28 +exigeassent exiger ver 34.96 60.07 0.00 0.14 sub:imp:3p; +exigence exigence nom f s 5.17 17.36 1.22 5.14 +exigences exigence nom f p 5.17 17.36 3.96 12.23 +exigent exiger ver 34.96 60.07 2.80 2.97 ind:pre:3p; +exigeons exiger ver 34.96 60.07 1.21 0.14 imp:pre:1p;ind:pre:1p; +exiger exiger ver 34.96 60.07 3.13 8.11 inf; +exigera exiger ver 34.96 60.07 0.26 0.88 ind:fut:3s; +exigerai exiger ver 34.96 60.07 0.25 0.20 ind:fut:1s; +exigeraient exiger ver 34.96 60.07 0.00 0.27 cnd:pre:3p; +exigerais exiger ver 34.96 60.07 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +exigerait exiger ver 34.96 60.07 0.14 1.01 cnd:pre:3s; +exigerez exiger ver 34.96 60.07 0.03 0.14 ind:fut:2p; +exigeriez exiger ver 34.96 60.07 0.02 0.00 cnd:pre:2p; +exigerions exiger ver 34.96 60.07 0.01 0.00 cnd:pre:1p; +exigerons exiger ver 34.96 60.07 0.13 0.00 ind:fut:1p; +exigeront exiger ver 34.96 60.07 0.21 0.14 ind:fut:3p; +exiges exiger ver 34.96 60.07 0.61 0.20 ind:pre:2s; +exigez exiger ver 34.96 60.07 0.61 0.41 imp:pre:2p;ind:pre:2p; +exigible exigible adj m s 0.01 0.07 0.01 0.07 +exigiez exiger ver 34.96 60.07 0.16 0.00 ind:imp:2p; +exigèrent exiger ver 34.96 60.07 0.00 0.14 ind:pas:3p; +exigu exigu adj m s 0.53 4.66 0.38 1.89 +exigé exiger ver m s 34.96 60.07 3.58 6.49 par:pas; +exiguïté exiguïté nom f s 0.00 1.76 0.00 1.76 +exigée exiger ver f s 34.96 60.07 0.56 1.01 par:pas; +exigées exiger ver f p 34.96 60.07 0.17 0.07 par:pas; +exigus exigu adj m p 0.53 4.66 0.00 0.41 +exigés exiger ver m p 34.96 60.07 0.01 0.47 par:pas; +exiguë exigu adj f s 0.53 4.66 0.12 1.69 +exiguës exigu adj f p 0.53 4.66 0.02 0.68 +exil exil nom m s 6.04 13.99 5.91 13.58 +exila exiler ver 2.41 4.32 0.04 0.20 ind:pas:3s; +exilaient exiler ver 2.41 4.32 0.00 0.07 ind:imp:3p; +exilait exiler ver 2.41 4.32 0.00 0.14 ind:imp:3s; +exilant exiler ver 2.41 4.32 0.00 0.07 par:pre; +exile exiler ver 2.41 4.32 0.43 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exilent exiler ver 2.41 4.32 0.00 0.07 ind:pre:3p; +exiler exiler ver 2.41 4.32 0.73 0.61 inf; +exiles exiler ver 2.41 4.32 0.14 0.00 ind:pre:2s; +exilez exiler ver 2.41 4.32 0.01 0.00 imp:pre:2p; +exilât exiler ver 2.41 4.32 0.00 0.07 sub:imp:3s; +exils exil nom m p 6.04 13.99 0.14 0.41 +exilé exilé nom m s 2.23 4.05 0.88 1.62 +exilée exilé nom f s 2.23 4.05 0.25 0.34 +exilées exilé adj f p 0.50 1.89 0.00 0.14 +exilés exilé nom m p 2.23 4.05 1.12 2.03 +exista exister ver 136.24 148.18 0.00 0.41 ind:pas:3s; +existai exister ver 136.24 148.18 0.00 0.07 ind:pas:1s; +existaient exister ver 136.24 148.18 1.88 7.16 ind:imp:3p; +existais exister ver 136.24 148.18 2.05 2.36 ind:imp:1s;ind:imp:2s; +existait exister ver 136.24 148.18 9.58 32.57 ind:imp:3s; +existant existant adj m s 1.43 2.03 0.19 0.54 +existante existant adj f s 1.43 2.03 0.48 0.41 +existantes existant adj f p 1.43 2.03 0.23 0.54 +existants existant adj m p 1.43 2.03 0.52 0.54 +existe exister ver 136.24 148.18 85.86 57.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +existence existence nom f s 24.98 97.36 24.66 93.85 +existences existence nom f p 24.98 97.36 0.33 3.51 +existent exister ver 136.24 148.18 10.74 8.24 ind:pre:3p; +existentialisme existentialisme nom m s 0.07 0.61 0.07 0.61 +existentialiste existentialiste adj m s 0.06 0.20 0.05 0.07 +existentialistes existentialiste nom p 0.03 0.34 0.02 0.27 +existentiel existentiel adj m s 0.35 0.88 0.14 0.20 +existentielle existentiel adj f s 0.35 0.88 0.13 0.54 +existentielles existentiel adj f p 0.35 0.88 0.08 0.14 +exister exister ver 136.24 148.18 8.62 20.20 inf; +existera exister ver 136.24 148.18 1.52 0.41 ind:fut:3s; +existerai exister ver 136.24 148.18 0.05 0.20 ind:fut:1s; +existeraient exister ver 136.24 148.18 0.07 0.20 cnd:pre:3p; +existerais exister ver 136.24 148.18 0.47 0.14 cnd:pre:1s;cnd:pre:2s; +existerait exister ver 136.24 148.18 0.97 0.95 cnd:pre:3s; +existeras exister ver 136.24 148.18 0.20 0.00 ind:fut:2s; +existeriez exister ver 136.24 148.18 0.11 0.00 cnd:pre:2p; +existerions exister ver 136.24 148.18 0.15 0.00 cnd:pre:1p; +existerons exister ver 136.24 148.18 0.03 0.00 ind:fut:1p; +existeront exister ver 136.24 148.18 0.15 0.20 ind:fut:3p; +existes exister ver 136.24 148.18 3.56 1.08 ind:pre:2s;sub:pre:2s; +existez exister ver 136.24 148.18 1.46 0.41 imp:pre:2p;ind:pre:2p; +existiez exister ver 136.24 148.18 0.41 0.14 ind:imp:2p; +existions exister ver 136.24 148.18 0.12 0.27 ind:imp:1p; +existons exister ver 136.24 148.18 0.60 0.41 imp:pre:1p;ind:pre:1p; +existât exister ver 136.24 148.18 0.00 1.55 sub:imp:3s; +existèrent exister ver 136.24 148.18 0.00 0.27 ind:pas:3p; +existé exister ver m s 136.24 148.18 7.42 11.42 par:pas; +existée exister ver f s 136.24 148.18 0.03 0.00 par:pas; +existés exister ver m p 136.24 148.18 0.04 0.00 par:pas; +exit exit ver 0.20 0.27 0.20 0.27 inf; +exo exo nom m s 0.11 0.27 0.04 0.20 +exobiologie exobiologie nom f s 0.02 0.00 0.02 0.00 +exocet exocet nom m s 0.01 0.00 0.01 0.00 +exode exode nom m s 0.43 4.53 0.42 4.32 +exodes exode nom m p 0.43 4.53 0.01 0.20 +exogamie exogamie nom f s 0.00 0.41 0.00 0.41 +exogamique exogamique adj m s 0.00 0.27 0.00 0.27 +exogène exogène adj f s 0.01 0.00 0.01 0.00 +exonérait exonérer ver 0.08 0.20 0.00 0.07 ind:imp:3s; +exonération exonération nom f s 0.25 0.00 0.25 0.00 +exonérer exonérer ver 0.08 0.20 0.06 0.07 inf; +exonérera exonérer ver 0.08 0.20 0.01 0.00 ind:fut:3s; +exonérées exonérer ver f p 0.08 0.20 0.01 0.07 par:pas; +exophtalmique exophtalmique adj m s 0.00 0.07 0.00 0.07 +exorable exorable adj s 0.00 0.14 0.00 0.14 +exorbitaient exorbiter ver 0.00 0.81 0.00 0.20 ind:imp:3p; +exorbitait exorbiter ver 0.00 0.81 0.00 0.07 ind:imp:3s; +exorbitant exorbitant adj m s 0.83 2.30 0.53 0.54 +exorbitante exorbitant adj f s 0.83 2.30 0.05 1.08 +exorbitantes exorbitant adj f p 0.83 2.30 0.05 0.47 +exorbitants exorbitant adj m p 0.83 2.30 0.21 0.20 +exorbiter exorbiter ver 0.00 0.81 0.00 0.07 inf; +exorbité exorbité adj m s 0.36 2.84 0.00 0.27 +exorbitées exorbité adj f p 0.36 2.84 0.00 0.14 +exorbités exorbité adj m p 0.36 2.84 0.36 2.43 +exorcisa exorciser ver 2.00 2.70 0.00 0.14 ind:pas:3s; +exorcisait exorciser ver 2.00 2.70 0.01 0.14 ind:imp:3s; +exorcisant exorciser ver 2.00 2.70 0.02 0.00 par:pre; +exorcise exorciser ver 2.00 2.70 0.85 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exorcisent exorciser ver 2.00 2.70 0.02 0.00 ind:pre:3p; +exorciser exorciser ver 2.00 2.70 0.48 1.35 inf; +exorciserait exorciser ver 2.00 2.70 0.00 0.07 cnd:pre:3s; +exorcisez exorciser ver 2.00 2.70 0.01 0.07 imp:pre:2p;ind:pre:2p; +exorcisions exorciser ver 2.00 2.70 0.01 0.07 ind:imp:1p; +exorcisme exorcisme nom m s 2.09 1.82 1.86 1.49 +exorcismes exorcisme nom m p 2.09 1.82 0.23 0.34 +exorciste exorciste nom s 0.60 0.14 0.57 0.07 +exorcistes exorciste nom p 0.60 0.14 0.03 0.07 +exorcisé exorciser ver m s 2.00 2.70 0.43 0.54 par:pas; +exorcisée exorciser ver f s 2.00 2.70 0.16 0.07 par:pas; +exorcisées exorciser ver f p 2.00 2.70 0.00 0.07 par:pas; +exorcisés exorciser ver m p 2.00 2.70 0.00 0.07 par:pas; +exorde exorde nom m s 0.01 0.54 0.01 0.47 +exordes exorde nom m p 0.01 0.54 0.00 0.07 +exos exo nom m p 0.11 0.27 0.07 0.07 +exosphère exosphère nom f s 0.01 0.00 0.01 0.00 +exosquelette exosquelette nom m s 0.36 0.00 0.36 0.00 +exostose exostose nom f s 0.03 0.00 0.02 0.00 +exostoses exostose nom f p 0.03 0.00 0.01 0.00 +exothermique exothermique adj f s 0.03 0.00 0.03 0.00 +exotique exotique adj s 4.19 8.99 2.86 5.00 +exotiquement exotiquement adv 0.00 0.07 0.00 0.07 +exotiques exotique adj p 4.19 8.99 1.33 3.99 +exotisme exotisme nom m s 0.23 2.77 0.23 2.77 +expansible expansible adj s 0.02 0.00 0.02 0.00 +expansif expansif adj m s 0.33 1.35 0.15 0.81 +expansifs expansif adj m p 0.33 1.35 0.01 0.07 +expansion expansion nom f s 1.89 2.50 1.89 2.50 +expansionnisme expansionnisme nom m s 0.01 0.07 0.01 0.07 +expansionniste expansionniste adj f s 0.02 0.00 0.02 0.00 +expansionnistes expansionniste nom p 0.10 0.07 0.10 0.00 +expansive expansif adj f s 0.33 1.35 0.15 0.41 +expansives expansif adj f p 0.33 1.35 0.02 0.07 +expansé expansé adj m s 0.00 0.07 0.00 0.07 +expatriait expatrier ver 0.39 0.81 0.00 0.07 ind:imp:3s; +expatriation expatriation nom f s 0.00 0.07 0.00 0.07 +expatrier expatrier ver 0.39 0.81 0.25 0.41 inf; +expatrièrent expatrier ver 0.39 0.81 0.00 0.07 ind:pas:3p; +expatrié expatrié nom m s 0.35 0.14 0.21 0.00 +expatriée expatrier ver f s 0.39 0.81 0.00 0.07 par:pas; +expatriés expatrié nom m p 0.35 0.14 0.14 0.14 +expectatif expectatif adj m s 0.00 0.07 0.00 0.07 +expectation expectation nom f s 0.02 0.00 0.02 0.00 +expectative expectative nom f s 0.09 1.01 0.06 1.01 +expectatives expectative nom f p 0.09 1.01 0.02 0.00 +expectora expectorer ver 0.02 0.41 0.00 0.07 ind:pas:3s; +expectorant expectorant nom m s 0.01 0.00 0.01 0.00 +expectoration expectoration nom f s 0.02 0.27 0.02 0.27 +expectorer expectorer ver 0.02 0.41 0.00 0.14 inf; +expectoré expectorer ver m s 0.02 0.41 0.01 0.14 par:pas; +expectorées expectorer ver f p 0.02 0.41 0.01 0.00 par:pas; +expert_comptable expert_comptable nom m s 0.23 0.20 0.23 0.20 +expert expert nom m s 20.14 5.00 12.70 1.96 +experte expert adj f s 7.66 6.15 3.45 2.16 +expertement expertement adv 0.00 0.07 0.00 0.07 +expertes expert adj f p 7.66 6.15 0.34 1.15 +expertisaient expertiser ver 0.26 0.47 0.00 0.07 ind:imp:3p; +expertisait expertiser ver 0.26 0.47 0.00 0.07 ind:imp:3s; +expertisant expertiser ver 0.26 0.47 0.00 0.07 par:pre; +expertise expertise nom f s 2.88 0.68 2.69 0.61 +expertiser expertiser ver 0.26 0.47 0.24 0.27 inf; +expertises expertise nom f p 2.88 0.68 0.20 0.07 +experts expert nom m p 20.14 5.00 7.44 3.04 +expiaient expier ver 2.42 2.30 0.00 0.07 ind:imp:3p; +expiait expier ver 2.42 2.30 0.00 0.27 ind:imp:3s; +expiant expier ver 2.42 2.30 0.04 0.00 par:pre; +expiation expiation nom f s 0.44 0.88 0.44 0.88 +expiatoire expiatoire adj s 0.17 0.95 0.16 0.74 +expiatoires expiatoire adj p 0.17 0.95 0.01 0.20 +expiatrice expiateur adj f s 0.00 0.07 0.00 0.07 +expie expier ver 2.42 2.30 0.29 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expier expier ver 2.42 2.30 1.73 1.35 inf; +expieras expier ver 2.42 2.30 0.02 0.00 ind:fut:2s; +expira expirer ver 6.06 4.59 0.00 0.61 ind:pas:3s; +expirais expirer ver 6.06 4.59 0.00 0.07 ind:imp:1s; +expirait expirer ver 6.06 4.59 0.04 0.88 ind:imp:3s; +expirant expirer ver 6.06 4.59 0.01 0.14 par:pre; +expirante expirant adj f s 0.00 0.41 0.00 0.07 +expirantes expirant adj f p 0.00 0.41 0.00 0.07 +expiration expiration nom f s 1.29 1.28 1.29 1.08 +expirations expiration nom f p 1.29 1.28 0.00 0.20 +expire expirer ver 6.06 4.59 2.63 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expirent expirer ver 6.06 4.59 0.20 0.20 ind:pre:3p; +expirer expirer ver 6.06 4.59 0.72 0.95 inf; +expirera expirer ver 6.06 4.59 0.07 0.00 ind:fut:3s; +expirerait expirer ver 6.06 4.59 0.00 0.14 cnd:pre:3s; +expirez expirer ver 6.06 4.59 0.54 0.14 imp:pre:2p;ind:pre:2p; +expirons expirer ver 6.06 4.59 0.00 0.07 ind:pre:1p; +expiré expirer ver m s 6.06 4.59 1.73 0.34 par:pas; +expirée expirer ver f s 6.06 4.59 0.09 0.14 par:pas; +expirés expirer ver m p 6.06 4.59 0.01 0.07 par:pas; +expié expier ver m s 2.42 2.30 0.33 0.20 par:pas; +expiée expier ver f s 2.42 2.30 0.00 0.07 par:pas; +expiés expier ver m p 2.42 2.30 0.00 0.07 par:pas; +explicable explicable adj s 0.19 1.42 0.19 1.22 +explicables explicable adj m p 0.19 1.42 0.00 0.20 +explicatif explicatif adj m s 0.03 1.15 0.01 0.20 +explicatifs explicatif adj m p 0.03 1.15 0.00 0.20 +explication explication nom f s 31.74 46.28 24.60 28.85 +explications explication nom f p 31.74 46.28 7.14 17.43 +explicative explicatif adj f s 0.03 1.15 0.02 0.54 +explicatives explicatif adj f p 0.03 1.15 0.00 0.20 +explicitant expliciter ver 0.06 0.68 0.00 0.07 par:pre; +explicite explicite adj s 1.78 2.16 1.34 1.82 +explicitement explicitement adv 0.48 1.55 0.48 1.55 +expliciter expliciter ver 0.06 0.68 0.06 0.54 inf; +explicites explicite adj p 1.78 2.16 0.45 0.34 +expliqua expliquer ver 200.93 233.92 0.77 36.42 ind:pas:3s; +expliquai expliquer ver 200.93 233.92 0.26 2.70 ind:pas:1s; +expliquaient expliquer ver 200.93 233.92 0.12 1.08 ind:imp:3p; +expliquais expliquer ver 200.93 233.92 1.25 1.82 ind:imp:1s;ind:imp:2s; +expliquait expliquer ver 200.93 233.92 1.40 21.62 ind:imp:3s; +expliquant expliquer ver 200.93 233.92 0.50 6.28 par:pre; +explique expliquer ver 200.93 233.92 48.02 38.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +expliquent expliquer ver 200.93 233.92 0.78 2.09 ind:pre:3p; +expliquer expliquer ver 200.93 233.92 89.21 76.55 inf;;inf;;inf;; +expliquera expliquer ver 200.93 233.92 3.69 1.89 ind:fut:3s; +expliquerai expliquer ver 200.93 233.92 13.85 5.81 ind:fut:1s; +expliqueraient expliquer ver 200.93 233.92 0.06 0.27 cnd:pre:3p; +expliquerais expliquer ver 200.93 233.92 0.55 0.20 cnd:pre:1s;cnd:pre:2s; +expliquerait expliquer ver 200.93 233.92 3.30 2.03 cnd:pre:3s; +expliqueras expliquer ver 200.93 233.92 1.19 0.74 ind:fut:2s; +expliquerez expliquer ver 200.93 233.92 1.29 0.54 ind:fut:2p; +expliqueriez expliquer ver 200.93 233.92 0.05 0.07 cnd:pre:2p; +expliquerons expliquer ver 200.93 233.92 0.11 0.20 ind:fut:1p; +expliqueront expliquer ver 200.93 233.92 0.25 0.14 ind:fut:3p; +expliques expliquer ver 200.93 233.92 3.97 1.62 ind:pre:2s;sub:pre:2s; +expliquez expliquer ver 200.93 233.92 14.34 3.11 imp:pre:2p;ind:pre:2p; +expliquiez expliquer ver 200.93 233.92 0.61 0.27 ind:imp:2p;sub:pre:2p; +expliquions expliquer ver 200.93 233.92 0.03 0.20 ind:imp:1p; +expliquâmes expliquer ver 200.93 233.92 0.00 0.07 ind:pas:1p; +expliquons expliquer ver 200.93 233.92 0.23 0.20 imp:pre:1p;ind:pre:1p; +expliquât expliquer ver 200.93 233.92 0.00 0.34 sub:imp:3s; +expliquèrent expliquer ver 200.93 233.92 0.00 0.41 ind:pas:3p; +expliqué expliquer ver m s 200.93 233.92 14.18 27.57 par:pas; +expliquée expliquer ver f s 200.93 233.92 0.36 0.34 par:pas; +expliquées expliquer ver f p 200.93 233.92 0.14 0.47 par:pas; +expliqués expliquer ver m p 200.93 233.92 0.35 0.61 par:pas; +exploit exploit nom m s 8.00 15.61 3.97 5.20 +exploita exploiter ver 9.47 11.15 0.00 0.14 ind:pas:3s; +exploitable exploitable adj s 0.19 0.41 0.14 0.34 +exploitables exploitable adj p 0.19 0.41 0.05 0.07 +exploitai exploiter ver 9.47 11.15 0.00 0.07 ind:pas:1s; +exploitaient exploiter ver 9.47 11.15 0.05 0.34 ind:imp:3p; +exploitais exploiter ver 9.47 11.15 0.00 0.07 ind:imp:1s; +exploitait exploiter ver 9.47 11.15 0.10 0.54 ind:imp:3s; +exploitant exploiter ver 9.47 11.15 0.27 0.41 par:pre; +exploitante exploitant nom f s 0.46 0.41 0.14 0.00 +exploitants exploitant nom m p 0.46 0.41 0.06 0.34 +exploitation exploitation nom f s 4.25 6.82 3.86 6.62 +exploitations exploitation nom f p 4.25 6.82 0.40 0.20 +exploite exploiter ver 9.47 11.15 1.23 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exploitent exploiter ver 9.47 11.15 0.58 0.54 ind:pre:3p; +exploiter exploiter ver 9.47 11.15 4.18 5.07 inf; +exploitera exploiter ver 9.47 11.15 0.05 0.00 ind:fut:3s; +exploiterais exploiter ver 9.47 11.15 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +exploiterait exploiter ver 9.47 11.15 0.04 0.07 cnd:pre:3s; +exploiteront exploiter ver 9.47 11.15 0.03 0.00 ind:fut:3p; +exploites exploiter ver 9.47 11.15 0.19 0.14 ind:pre:2s; +exploiteur exploiteur nom m s 0.57 1.22 0.29 0.27 +exploiteurs exploiteur nom m p 0.57 1.22 0.28 0.88 +exploiteuses exploiteur nom f p 0.57 1.22 0.00 0.07 +exploitez exploiter ver 9.47 11.15 0.27 0.20 imp:pre:2p;ind:pre:2p; +exploitions exploiter ver 9.47 11.15 0.00 0.07 ind:imp:1p; +exploitons exploiter ver 9.47 11.15 0.02 0.00 imp:pre:1p;ind:pre:1p; +exploitât exploiter ver 9.47 11.15 0.00 0.14 sub:imp:3s; +exploits exploit nom m p 8.00 15.61 4.03 10.41 +exploitèrent exploiter ver 9.47 11.15 0.00 0.07 ind:pas:3p; +exploité exploiter ver m s 9.47 11.15 1.64 0.88 par:pas; +exploitée exploiter ver f s 9.47 11.15 0.35 0.68 par:pas; +exploitées exploité adj f p 0.27 0.88 0.15 0.20 +exploités exploiter ver m p 9.47 11.15 0.33 0.27 par:pas; +explora explorer ver 10.00 12.03 0.02 0.54 ind:pas:3s; +explorai explorer ver 10.00 12.03 0.00 0.07 ind:pas:1s; +exploraient explorer ver 10.00 12.03 0.03 0.27 ind:imp:3p; +explorais explorer ver 10.00 12.03 0.17 0.27 ind:imp:1s;ind:imp:2s; +explorait explorer ver 10.00 12.03 0.23 0.74 ind:imp:3s; +explorant explorer ver 10.00 12.03 0.42 0.81 par:pre; +explorateur explorateur nom m s 1.47 2.64 0.69 1.62 +explorateurs explorateur nom m p 1.47 2.64 0.72 0.95 +exploration exploration nom f s 2.06 4.53 1.81 3.31 +explorations exploration nom f p 2.06 4.53 0.25 1.22 +exploratoire exploratoire adj f s 0.10 0.07 0.10 0.00 +exploratoires exploratoire adj f p 0.10 0.07 0.00 0.07 +exploratrice explorateur adj f s 0.70 0.95 0.25 0.00 +exploratrices explorateur adj f p 0.70 0.95 0.00 0.07 +explore explorer ver 10.00 12.03 0.98 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +explorent explorer ver 10.00 12.03 0.12 0.07 ind:pre:3p; +explorer explorer ver 10.00 12.03 5.50 6.76 ind:pre:2p;inf; +explorera explorer ver 10.00 12.03 0.05 0.00 ind:fut:3s; +explorerai explorer ver 10.00 12.03 0.08 0.00 ind:fut:1s; +explorerez explorer ver 10.00 12.03 0.01 0.00 ind:fut:2p; +explorerons explorer ver 10.00 12.03 0.17 0.00 ind:fut:1p; +exploreur exploreur nom m s 0.01 0.00 0.01 0.00 +explorez explorer ver 10.00 12.03 0.33 0.00 imp:pre:2p;ind:pre:2p; +explorions explorer ver 10.00 12.03 0.06 0.20 ind:imp:1p; +explorons explorer ver 10.00 12.03 0.46 0.00 imp:pre:1p;ind:pre:1p; +explorèrent explorer ver 10.00 12.03 0.02 0.27 ind:pas:3p; +exploré explorer ver m s 10.00 12.03 1.00 0.68 par:pas; +explorée explorer ver f s 10.00 12.03 0.26 0.34 par:pas; +explorées explorer ver f p 10.00 12.03 0.04 0.14 par:pas; +explorés explorer ver m p 10.00 12.03 0.04 0.20 par:pas; +explosa exploser ver 53.79 24.05 0.36 2.97 ind:pas:3s; +explosai exploser ver 53.79 24.05 0.00 0.07 ind:pas:1s; +explosaient exploser ver 53.79 24.05 0.18 1.15 ind:imp:3p; +explosais exploser ver 53.79 24.05 0.04 0.00 ind:imp:1s; +explosait exploser ver 53.79 24.05 0.23 1.69 ind:imp:3s; +explosant exploser ver 53.79 24.05 0.35 0.81 par:pre; +explose exploser ver 53.79 24.05 10.22 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +explosent exploser ver 53.79 24.05 1.54 1.62 ind:pre:3p; +exploser exploser ver 53.79 24.05 25.11 7.36 imp:pre:2p;inf; +explosera exploser ver 53.79 24.05 1.87 0.14 ind:fut:3s; +exploserai exploser ver 53.79 24.05 0.13 0.00 ind:fut:1s; +exploseraient exploser ver 53.79 24.05 0.12 0.00 cnd:pre:3p; +exploserais exploser ver 53.79 24.05 0.07 0.00 cnd:pre:1s; +exploserait exploser ver 53.79 24.05 0.68 0.20 cnd:pre:3s; +exploseras exploser ver 53.79 24.05 0.05 0.07 ind:fut:2s; +exploserez exploser ver 53.79 24.05 0.23 0.00 ind:fut:2p; +exploseront exploser ver 53.79 24.05 0.18 0.00 ind:fut:3p; +exploses exploser ver 53.79 24.05 0.13 0.00 ind:pre:2s;sub:pre:2s; +exploseur exploseur nom m s 0.01 0.07 0.01 0.07 +explosez exploser ver 53.79 24.05 0.27 0.00 imp:pre:2p;ind:pre:2p; +explosif explosif nom m s 10.04 2.70 2.05 0.61 +explosifs explosif nom m p 10.04 2.70 7.97 1.96 +explosion explosion nom f s 26.14 25.68 23.11 17.64 +explosions explosion nom f p 26.14 25.68 3.02 8.04 +explosive explosif adj f s 4.07 2.77 1.18 0.95 +explosives explosif adj f p 4.07 2.77 0.52 0.14 +explosons exploser ver 53.79 24.05 0.15 0.00 imp:pre:1p;ind:pre:1p; +explosât exploser ver 53.79 24.05 0.00 0.14 sub:imp:3s; +explosèrent exploser ver 53.79 24.05 0.01 0.41 ind:pas:3p; +explosé exploser ver m s 53.79 24.05 11.10 3.31 par:pas; +explosée exploser ver f s 53.79 24.05 0.59 0.20 par:pas; +explosées exploser ver f p 53.79 24.05 0.04 0.14 par:pas; +explosés exploser ver m p 53.79 24.05 0.13 0.00 par:pas; +explétif explétif nom m s 0.00 0.07 0.00 0.07 +explétive explétif adj f s 0.01 0.07 0.01 0.07 +expo expo nom f s 3.77 0.54 3.26 0.47 +exponentiel exponentiel adj m s 0.39 0.20 0.14 0.07 +exponentielle exponentiel adj f s 0.39 0.20 0.20 0.07 +exponentiellement exponentiellement adv 0.17 0.00 0.17 0.00 +exponentielles exponentiel adj f p 0.39 0.20 0.04 0.07 +export export nom m s 0.58 0.20 0.53 0.20 +exporta exporter ver 0.83 0.88 0.00 0.07 ind:pas:3s; +exportaient exporter ver 0.83 0.88 0.14 0.07 ind:imp:3p; +exportant exporter ver 0.83 0.88 0.02 0.00 par:pre; +exportateur exportateur adj m s 0.07 0.14 0.05 0.07 +exportateurs exportateur adj m p 0.07 0.14 0.01 0.07 +exportation exportation nom f s 0.88 1.96 0.76 1.49 +exportations exportation nom f p 0.88 1.96 0.11 0.47 +exporte exporter ver 0.83 0.88 0.15 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exporter exporter ver 0.83 0.88 0.17 0.34 inf; +exportera exporter ver 0.83 0.88 0.01 0.00 ind:fut:3s; +exporterons exporter ver 0.83 0.88 0.01 0.00 ind:fut:1p; +exportez exporter ver 0.83 0.88 0.01 0.00 ind:pre:2p; +exports export nom m p 0.58 0.20 0.06 0.00 +exporté exporter ver m s 0.83 0.88 0.02 0.00 par:pas; +exportée exporter ver f s 0.83 0.88 0.01 0.00 par:pas; +exportées exporter ver f p 0.83 0.88 0.02 0.00 par:pas; +exportés exporter ver m p 0.83 0.88 0.27 0.20 par:pas; +expos expo nom f p 3.77 0.54 0.51 0.07 +exposa exposer ver 22.40 38.18 0.05 2.50 ind:pas:3s; +exposai exposer ver 22.40 38.18 0.00 0.81 ind:pas:1s; +exposaient exposer ver 22.40 38.18 0.01 0.41 ind:imp:3p; +exposais exposer ver 22.40 38.18 0.05 0.61 ind:imp:1s; +exposait exposer ver 22.40 38.18 0.44 3.38 ind:imp:3s; +exposant exposant nom m s 0.25 0.14 0.25 0.14 +expose exposer ver 22.40 38.18 3.38 3.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exposent exposer ver 22.40 38.18 0.31 0.74 ind:pre:3p; +exposer exposer ver 22.40 38.18 6.56 10.41 inf; +exposera exposer ver 22.40 38.18 0.11 0.14 ind:fut:3s; +exposerai exposer ver 22.40 38.18 0.16 0.07 ind:fut:1s; +exposerais exposer ver 22.40 38.18 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +exposerait exposer ver 22.40 38.18 0.04 0.41 cnd:pre:3s; +exposerez exposer ver 22.40 38.18 0.04 0.07 ind:fut:2p; +exposerions exposer ver 22.40 38.18 0.01 0.07 cnd:pre:1p; +exposeront exposer ver 22.40 38.18 0.02 0.00 ind:fut:3p; +exposes exposer ver 22.40 38.18 1.06 0.14 ind:pre:2s; +exposez exposer ver 22.40 38.18 1.17 0.41 imp:pre:2p;ind:pre:2p; +exposiez exposer ver 22.40 38.18 0.17 0.07 ind:imp:2p; +exposition exposition nom f s 12.36 13.99 11.25 11.42 +expositions exposition nom f p 12.36 13.99 1.11 2.57 +exposâmes exposer ver 22.40 38.18 0.00 0.14 ind:pas:1p; +exposons exposer ver 22.40 38.18 0.03 0.07 imp:pre:1p;ind:pre:1p; +exposèrent exposer ver 22.40 38.18 0.00 0.07 ind:pas:3p; +exposé exposer ver m s 22.40 38.18 5.00 5.54 par:pas; +exposée exposer ver f s 22.40 38.18 1.42 3.24 par:pas; +exposées exposer ver f p 22.40 38.18 0.42 1.49 par:pas; +exposés exposer ver m p 22.40 38.18 1.71 1.55 par:pas; +express express adj 2.77 1.28 2.77 1.28 +expresse exprès adj f s 24.06 26.22 0.38 0.95 +expresses exprès adj f p 24.06 26.22 0.00 0.47 +expressif expressif adj m s 1.12 2.09 0.53 0.88 +expressifs expressif adj m p 1.12 2.09 0.26 0.34 +expression expression nom f s 19.22 76.89 17.70 69.26 +expressionnisme expressionnisme nom m s 0.07 0.14 0.07 0.14 +expressionniste expressionniste adj s 0.71 0.20 0.57 0.14 +expressionnistes expressionniste nom p 0.19 0.00 0.16 0.00 +expressions expression nom f p 19.22 76.89 1.51 7.64 +expressive expressif adj f s 1.12 2.09 0.33 0.47 +expressivement expressivement adv 0.00 0.07 0.00 0.07 +expressives expressif adj f p 1.12 2.09 0.01 0.41 +expressément expressément adv 0.34 1.55 0.34 1.55 +exprima exprimer ver 30.02 72.64 0.10 2.57 ind:pas:3s; +exprimable exprimable adj s 0.01 0.00 0.01 0.00 +exprimai exprimer ver 30.02 72.64 0.00 0.61 ind:pas:1s; +exprimaient exprimer ver 30.02 72.64 0.08 4.66 ind:imp:3p; +exprimais exprimer ver 30.02 72.64 0.14 0.61 ind:imp:1s;ind:imp:2s; +exprimait exprimer ver 30.02 72.64 0.56 11.76 ind:imp:3s; +exprimant exprimer ver 30.02 72.64 0.23 2.84 par:pre; +exprime exprimer ver 30.02 72.64 4.67 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expriment exprimer ver 30.02 72.64 0.79 3.38 ind:pre:3p; +exprimer exprimer ver 30.02 72.64 18.13 25.95 inf;; +exprimera exprimer ver 30.02 72.64 0.16 0.07 ind:fut:3s; +exprimerai exprimer ver 30.02 72.64 0.02 0.07 ind:fut:1s; +exprimerais exprimer ver 30.02 72.64 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +exprimerait exprimer ver 30.02 72.64 0.05 0.81 cnd:pre:3s; +exprimeras exprimer ver 30.02 72.64 0.03 0.00 ind:fut:2s; +exprimerez exprimer ver 30.02 72.64 0.03 0.14 ind:fut:2p; +exprimeront exprimer ver 30.02 72.64 0.01 0.07 ind:fut:3p; +exprimes exprimer ver 30.02 72.64 0.39 0.14 ind:pre:2s; +exprimez exprimer ver 30.02 72.64 0.82 0.27 imp:pre:2p;ind:pre:2p; +exprimiez exprimer ver 30.02 72.64 0.03 0.00 ind:imp:2p; +exprimions exprimer ver 30.02 72.64 0.00 0.20 ind:imp:1p; +exprimons exprimer ver 30.02 72.64 0.30 0.00 imp:pre:1p;ind:pre:1p; +exprimât exprimer ver 30.02 72.64 0.00 0.47 sub:imp:3s; +exprimèrent exprimer ver 30.02 72.64 0.00 0.54 ind:pas:3p; +exprimé exprimer ver m s 30.02 72.64 2.41 3.58 par:pas; +exprimée exprimer ver f s 30.02 72.64 0.75 1.96 par:pas; +exprimées exprimer ver f p 30.02 72.64 0.05 0.95 par:pas; +exprimés exprimer ver m p 30.02 72.64 0.22 0.61 par:pas; +expropria exproprier ver 0.21 0.34 0.01 0.00 ind:pas:3s; +expropriation expropriation nom f s 0.32 0.41 0.28 0.27 +expropriations expropriation nom f p 0.32 0.41 0.03 0.14 +exproprie exproprier ver 0.21 0.34 0.01 0.07 ind:pre:3s; +exproprier exproprier ver 0.21 0.34 0.04 0.00 inf; +exproprierait exproprier ver 0.21 0.34 0.00 0.07 cnd:pre:3s; +exproprié exproprier ver m s 0.21 0.34 0.11 0.07 par:pas; +expropriée exproprié nom f s 0.10 0.00 0.10 0.00 +expropriées exproprier ver f p 0.21 0.34 0.00 0.07 par:pas; +expropriés exproprier ver m p 0.21 0.34 0.01 0.00 par:pas; +exprès exprès adj m 24.06 26.22 23.68 24.80 +expédia expédier ver 8.69 23.78 0.00 1.49 ind:pas:3s; +expédiai expédier ver 8.69 23.78 0.00 0.47 ind:pas:1s; +expédiaient expédier ver 8.69 23.78 0.00 0.34 ind:imp:3p; +expédiais expédier ver 8.69 23.78 0.05 0.20 ind:imp:1s;ind:imp:2s; +expédiait expédier ver 8.69 23.78 0.06 2.36 ind:imp:3s; +expédiant expédier ver 8.69 23.78 0.05 1.01 par:pre; +expédie expédier ver 8.69 23.78 1.73 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expédient expédier ver 8.69 23.78 0.26 0.47 ind:pre:3p; +expédientes expédient adj f p 0.03 0.34 0.01 0.00 +expédients expédient nom m p 0.36 2.64 0.20 1.82 +expédier expédier ver 8.69 23.78 2.09 5.41 inf; +expédiera expédier ver 8.69 23.78 0.13 0.27 ind:fut:3s; +expédierai expédier ver 8.69 23.78 0.02 0.14 ind:fut:1s; +expédierait expédier ver 8.69 23.78 0.00 0.20 cnd:pre:3s; +expédieras expédier ver 8.69 23.78 0.00 0.07 ind:fut:2s; +expédieriez expédier ver 8.69 23.78 0.02 0.00 cnd:pre:2p; +expédierons expédier ver 8.69 23.78 0.01 0.07 ind:fut:1p; +expédieront expédier ver 8.69 23.78 0.01 0.14 ind:fut:3p; +expédies expédier ver 8.69 23.78 0.04 0.07 ind:pre:2s;sub:pre:2s; +expédiez expédier ver 8.69 23.78 0.72 0.00 imp:pre:2p;ind:pre:2p; +expédions expédier ver 8.69 23.78 0.28 0.07 imp:pre:1p;ind:pre:1p; +expéditeur expéditeur nom m s 1.40 1.01 1.35 0.81 +expéditeurs expéditeur nom m p 1.40 1.01 0.03 0.20 +expéditif expéditif adj m s 0.47 2.03 0.05 1.08 +expéditifs expéditif adj m p 0.47 2.03 0.03 0.34 +expédition expédition nom f s 10.74 15.14 9.05 11.76 +expéditionnaire expéditionnaire adj s 0.18 2.77 0.16 2.43 +expéditionnaires expéditionnaire adj f p 0.18 2.77 0.02 0.34 +expéditions expédition nom f p 10.74 15.14 1.69 3.38 +expéditive expéditif adj f s 0.47 2.03 0.36 0.34 +expéditives expéditif adj f p 0.47 2.03 0.02 0.27 +expéditrice expéditeur nom f s 1.40 1.01 0.02 0.00 +expédié expédier ver m s 8.69 23.78 1.92 4.39 par:pas; +expédiée expédier ver f s 8.69 23.78 0.52 1.49 par:pas; +expédiées expédier ver f p 8.69 23.78 0.34 0.68 par:pas; +expédiés expédier ver m p 8.69 23.78 0.42 1.28 par:pas; +expulsa expulser ver 9.28 8.24 0.00 0.41 ind:pas:3s; +expulsai expulser ver 9.28 8.24 0.00 0.07 ind:pas:1s; +expulsaient expulser ver 9.28 8.24 0.01 0.27 ind:imp:3p; +expulsais expulser ver 9.28 8.24 0.00 0.14 ind:imp:1s; +expulsait expulser ver 9.28 8.24 0.02 0.27 ind:imp:3s; +expulsant expulser ver 9.28 8.24 0.03 0.20 par:pre; +expulse expulser ver 9.28 8.24 0.67 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expulsent expulser ver 9.28 8.24 0.24 0.07 ind:pre:3p; +expulser expulser ver 9.28 8.24 4.03 2.30 inf;; +expulsera expulser ver 9.28 8.24 0.10 0.07 ind:fut:3s; +expulserai expulser ver 9.28 8.24 0.03 0.00 ind:fut:1s; +expulserait expulser ver 9.28 8.24 0.12 0.07 cnd:pre:3s; +expulseront expulser ver 9.28 8.24 0.01 0.00 ind:fut:3p; +expulsez expulser ver 9.28 8.24 0.15 0.14 imp:pre:2p;ind:pre:2p; +expulsion expulsion nom f s 2.97 1.76 2.51 1.55 +expulsions expulsion nom f p 2.97 1.76 0.46 0.20 +expulsive expulsif adj f s 0.01 0.00 0.01 0.00 +expulsons expulser ver 9.28 8.24 0.02 0.00 imp:pre:1p;ind:pre:1p; +expulsât expulser ver 9.28 8.24 0.00 0.07 sub:imp:3s; +expulsé expulser ver m s 9.28 8.24 2.37 1.76 par:pas; +expulsée expulser ver f s 9.28 8.24 0.42 0.41 par:pas; +expulsées expulser ver f p 9.28 8.24 0.19 0.14 par:pas; +expulsés expulser ver m p 9.28 8.24 0.88 0.81 par:pas; +expurgeait expurger ver 0.13 0.81 0.00 0.14 ind:imp:3s; +expurger expurger ver 0.13 0.81 0.00 0.14 inf; +expurgera expurger ver 0.13 0.81 0.00 0.07 ind:fut:3s; +expurgé expurger ver m s 0.13 0.81 0.03 0.07 par:pas; +expurgée expurger ver f s 0.13 0.81 0.10 0.27 par:pas; +expurgés expurger ver m p 0.13 0.81 0.00 0.14 par:pas; +expérience expérience nom f s 72.04 58.72 55.52 48.11 +expériences expérience nom f p 72.04 58.72 16.52 10.61 +expérimenta expérimenter ver 3.92 2.97 0.03 0.07 ind:pas:3s; +expérimentai expérimenter ver 3.92 2.97 0.01 0.07 ind:pas:1s; +expérimentaient expérimenter ver 3.92 2.97 0.13 0.20 ind:imp:3p; +expérimentais expérimenter ver 3.92 2.97 0.07 0.20 ind:imp:1s; +expérimentait expérimenter ver 3.92 2.97 0.08 0.14 ind:imp:3s; +expérimental expérimental adj m s 2.74 1.01 1.90 0.07 +expérimentale expérimental adj f s 2.74 1.01 0.48 0.61 +expérimentalement expérimentalement adv 0.01 0.07 0.01 0.07 +expérimentales expérimental adj f p 2.74 1.01 0.10 0.14 +expérimentant expérimenter ver 3.92 2.97 0.03 0.14 par:pre; +expérimentateur expérimentateur nom m s 0.14 0.07 0.14 0.07 +expérimentation expérimentation nom f s 1.30 2.91 0.87 2.16 +expérimentations expérimentation nom f p 1.30 2.91 0.43 0.74 +expérimentaux expérimental adj m p 2.74 1.01 0.26 0.20 +expérimente expérimenter ver 3.92 2.97 0.33 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expérimentent expérimenter ver 3.92 2.97 0.18 0.00 ind:pre:3p; +expérimenter expérimenter ver 3.92 2.97 1.23 0.47 inf; +expérimenteras expérimenter ver 3.92 2.97 0.02 0.00 ind:fut:2s; +expérimentez expérimenter ver 3.92 2.97 0.18 0.00 imp:pre:2p;ind:pre:2p; +expérimentiez expérimenter ver 3.92 2.97 0.04 0.00 ind:imp:2p; +expérimentons expérimenter ver 3.92 2.97 0.02 0.07 imp:pre:1p;ind:pre:1p; +expérimenté expérimenté adj m s 2.42 1.62 1.33 0.68 +expérimentée expérimenté adj f s 2.42 1.62 0.52 0.34 +expérimentées expérimenté adj f p 2.42 1.62 0.14 0.14 +expérimentés expérimenté adj m p 2.42 1.62 0.42 0.47 +exquis exquis adj m 6.38 17.36 3.20 7.23 +exquise exquis adj f s 6.38 17.36 2.51 7.97 +exquises exquis adj f p 6.38 17.36 0.66 2.16 +exsangue exsangue adj s 0.45 4.19 0.44 2.84 +exsangues exsangue adj p 0.45 4.19 0.01 1.35 +exsudaient exsuder ver 0.05 0.41 0.00 0.07 ind:imp:3p; +exsudait exsuder ver 0.05 0.41 0.00 0.07 ind:imp:3s; +exsudant exsuder ver 0.05 0.41 0.00 0.14 par:pre; +exsudat exsudat nom m s 0.00 0.07 0.00 0.07 +exsudation exsudation nom f s 0.01 0.00 0.01 0.00 +exsude exsuder ver 0.05 0.41 0.01 0.07 ind:pre:3s; +exsuder exsuder ver 0.05 0.41 0.04 0.00 inf; +exsudé exsuder ver m s 0.05 0.41 0.00 0.07 par:pas; +extase extase nom f s 3.67 11.55 3.43 10.54 +extases extase nom f p 3.67 11.55 0.24 1.01 +extasia extasier ver 0.68 7.30 0.00 1.22 ind:pas:3s; +extasiaient extasier ver 0.68 7.30 0.14 0.41 ind:imp:3p; +extasiais extasier ver 0.68 7.30 0.00 0.34 ind:imp:1s;ind:imp:2s; +extasiait extasier ver 0.68 7.30 0.02 1.35 ind:imp:3s; +extasiant extasier ver 0.68 7.30 0.01 0.27 par:pre; +extasiantes extasiant adj f p 0.00 0.14 0.00 0.07 +extasie extasier ver 0.68 7.30 0.16 0.68 ind:pre:1s;ind:pre:3s; +extasient extasier ver 0.68 7.30 0.02 0.07 ind:pre:3p; +extasier extasier ver 0.68 7.30 0.26 0.88 inf; +extasieront extasier ver 0.68 7.30 0.00 0.14 ind:fut:3p; +extasiez extasier ver 0.68 7.30 0.02 0.00 ind:pre:2p; +extasions extasier ver 0.68 7.30 0.01 0.20 ind:pre:1p; +extasiât extasier ver 0.68 7.30 0.00 0.07 sub:imp:3s; +extasièrent extasier ver 0.68 7.30 0.00 0.07 ind:pas:3p; +extasié extasier ver m s 0.68 7.30 0.04 0.61 par:pas; +extasiée extasié adj f s 0.11 1.89 0.10 0.47 +extasiées extasier ver f p 0.68 7.30 0.00 0.20 par:pas; +extasiés extasié adj m p 0.11 1.89 0.00 0.47 +extatique extatique adj s 0.22 1.22 0.22 1.01 +extatiquement extatiquement adv 0.00 0.14 0.00 0.14 +extatiques extatique adj p 0.22 1.22 0.00 0.20 +extenseur extenseur nom m s 0.07 0.14 0.06 0.14 +extenseurs extenseur nom m p 0.07 0.14 0.01 0.00 +extensible extensible adj s 0.10 0.61 0.09 0.47 +extensibles extensible adj m p 0.10 0.61 0.01 0.14 +extension extension nom f s 2.60 2.77 2.43 2.57 +extensions extension nom f p 2.60 2.77 0.17 0.20 +extensive extensif adj f s 0.04 0.00 0.04 0.00 +extermina exterminer ver 6.85 4.05 0.13 0.07 ind:pas:3s; +exterminaient exterminer ver 6.85 4.05 0.03 0.14 ind:imp:3p; +exterminais exterminer ver 6.85 4.05 0.02 0.07 ind:imp:1s; +exterminait exterminer ver 6.85 4.05 0.00 0.14 ind:imp:3s; +exterminant exterminer ver 6.85 4.05 0.12 0.00 par:pre; +exterminateur exterminateur nom m s 0.72 0.07 0.56 0.07 +exterminateurs exterminateur nom m p 0.72 0.07 0.17 0.00 +extermination extermination nom f s 2.09 1.08 2.08 1.01 +exterminations extermination nom f p 2.09 1.08 0.01 0.07 +exterminatrice exterminateur adj f s 0.39 0.88 0.10 0.00 +exterminatrices exterminateur adj f p 0.39 0.88 0.00 0.14 +extermine exterminer ver 6.85 4.05 0.53 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exterminent exterminer ver 6.85 4.05 0.18 0.00 ind:pre:3p; +exterminer exterminer ver 6.85 4.05 3.07 1.89 inf; +exterminera exterminer ver 6.85 4.05 0.23 0.00 ind:fut:3s; +exterminerait exterminer ver 6.85 4.05 0.00 0.07 cnd:pre:3s; +exterminerons exterminer ver 6.85 4.05 0.01 0.00 ind:fut:1p; +extermineront exterminer ver 6.85 4.05 0.04 0.00 ind:fut:3p; +exterminez exterminer ver 6.85 4.05 0.13 0.00 imp:pre:2p;ind:pre:2p; +exterminions exterminer ver 6.85 4.05 0.01 0.00 ind:imp:1p; +exterminons exterminer ver 6.85 4.05 0.04 0.00 imp:pre:1p;ind:pre:1p; +exterminé exterminer ver m s 6.85 4.05 0.85 0.41 par:pas; +exterminée exterminer ver f s 6.85 4.05 0.26 0.20 par:pas; +exterminées exterminer ver f p 6.85 4.05 0.15 0.07 par:pas; +exterminés exterminer ver m p 6.85 4.05 1.05 0.88 par:pas; +externalité externalité nom f s 0.01 0.00 0.01 0.00 +externat externat nom m s 0.01 0.07 0.01 0.07 +externe externe adj s 3.53 0.88 2.48 0.54 +externes externe adj p 3.53 0.88 1.05 0.34 +exterritorialité exterritorialité nom f s 0.00 0.07 0.00 0.07 +exècre exécrer ver 0.48 3.18 0.41 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exècrent exécrer ver 0.48 3.18 0.00 0.07 ind:pre:3p; +extincteur extincteur nom m s 1.93 0.95 1.49 0.88 +extincteurs extincteur nom m p 1.93 0.95 0.44 0.07 +extinction extinction nom f s 3.42 3.65 3.42 3.65 +extinctrice extinctrice adj f s 0.01 0.00 0.01 0.00 +extirpa extirper ver 1.35 10.07 0.00 1.42 ind:pas:3s; +extirpaient extirper ver 1.35 10.07 0.00 0.20 ind:imp:3p; +extirpais extirper ver 1.35 10.07 0.01 0.07 ind:imp:1s; +extirpait extirper ver 1.35 10.07 0.02 0.47 ind:imp:3s; +extirpant extirper ver 1.35 10.07 0.02 0.34 par:pre; +extirpation extirpation nom f s 0.01 0.00 0.01 0.00 +extirpe extirper ver 1.35 10.07 0.05 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extirpent extirper ver 1.35 10.07 0.02 0.34 ind:pre:3p; +extirper extirper ver 1.35 10.07 0.88 3.51 inf; +extirpera extirper ver 1.35 10.07 0.02 0.07 ind:fut:3s; +extirperai extirper ver 1.35 10.07 0.20 0.00 ind:fut:1s; +extirperais extirper ver 1.35 10.07 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +extirperait extirper ver 1.35 10.07 0.00 0.07 cnd:pre:3s; +extirpé extirper ver m s 1.35 10.07 0.09 1.08 par:pas; +extirpée extirper ver f s 1.35 10.07 0.00 0.27 par:pas; +extirpées extirper ver f p 1.35 10.07 0.01 0.07 par:pas; +extirpés extirper ver m p 1.35 10.07 0.01 0.34 par:pas; +extorquai extorquer ver 1.35 2.03 0.00 0.07 ind:pas:1s; +extorquais extorquer ver 1.35 2.03 0.00 0.07 ind:imp:1s; +extorquait extorquer ver 1.35 2.03 0.01 0.20 ind:imp:3s; +extorque extorquer ver 1.35 2.03 0.05 0.00 ind:pre:3s; +extorquent extorquer ver 1.35 2.03 0.02 0.00 ind:pre:3p; +extorquer extorquer ver 1.35 2.03 0.90 0.68 inf; +extorqueur extorqueur nom m s 0.02 0.00 0.02 0.00 +extorquez extorquer ver 1.35 2.03 0.01 0.00 ind:pre:2p; +extorquèrent extorquer ver 1.35 2.03 0.00 0.07 ind:pas:3p; +extorqué extorquer ver m s 1.35 2.03 0.28 0.61 par:pas; +extorquée extorquer ver f s 1.35 2.03 0.03 0.07 par:pas; +extorquées extorquer ver f p 1.35 2.03 0.03 0.07 par:pas; +extorqués extorquer ver m p 1.35 2.03 0.03 0.20 par:pas; +extorsion extorsion nom f s 1.79 0.14 1.57 0.14 +extorsions extorsion nom f p 1.79 0.14 0.23 0.00 +extra_dry extra_dry nom m 0.00 0.07 0.00 0.07 +extra_fin extra_fin adj m s 0.00 0.34 0.00 0.27 +extra_fin extra_fin adj m p 0.00 0.34 0.00 0.07 +extra_fort extra_fort adj m s 0.11 0.20 0.04 0.07 +extra_fort extra_fort adj f s 0.11 0.20 0.08 0.14 +extra_lucide extra_lucide adj f s 0.05 0.20 0.04 0.14 +extra_lucide extra_lucide adj p 0.05 0.20 0.01 0.07 +extra_muros extra_muros adj f p 0.00 0.07 0.00 0.07 +extra_muros extra_muros adv 0.00 0.07 0.00 0.07 +extra_sensoriel extra_sensoriel adj m s 0.06 0.00 0.02 0.00 +extra_sensoriel extra_sensoriel adj f s 0.06 0.00 0.04 0.00 +extra_souple extra_souple adj f p 0.00 0.07 0.00 0.07 +extra_terrestre extra_terrestre nom s 3.71 0.34 1.35 0.27 +extra_terrestre extra_terrestre nom p 3.71 0.34 2.36 0.07 +extra_utérin extra_utérin adj m s 0.10 0.00 0.03 0.00 +extra_utérin extra_utérin adj f s 0.10 0.00 0.07 0.00 +extra extra adj_sup 6.78 1.42 6.78 1.42 +extraconjugal extraconjugal adj m s 0.10 0.07 0.03 0.00 +extraconjugale extraconjugal adj f s 0.10 0.07 0.02 0.00 +extraconjugales extraconjugal adj f p 0.10 0.07 0.04 0.07 +extraconjugaux extraconjugal adj m p 0.10 0.07 0.01 0.00 +extracorporelle extracorporel adj f s 0.01 0.00 0.01 0.00 +extracteur extracteur nom m s 0.04 0.00 0.04 0.00 +extracteurs extracteur nom m p 0.04 0.00 0.01 0.00 +extraction extraction nom f s 1.82 1.42 1.79 1.35 +extractions extraction nom f p 1.82 1.42 0.03 0.07 +extractive extractif adj f s 0.01 0.00 0.01 0.00 +extradaient extrader ver 0.66 0.20 0.00 0.07 ind:imp:3p; +extrade extrader ver 0.66 0.20 0.04 0.07 imp:pre:2s;ind:pre:3s; +extrader extrader ver 0.66 0.20 0.36 0.07 inf; +extradition extradition nom f s 0.78 0.14 0.78 0.14 +extradé extrader ver m s 0.66 0.20 0.26 0.00 par:pas; +extradée extradé adj f s 0.02 0.07 0.01 0.00 +extraforte extrafort adj f s 0.01 0.00 0.01 0.00 +extragalactique extragalactique adj f s 0.02 0.00 0.02 0.00 +extraient extraire ver 8.55 13.24 0.19 0.27 ind:pre:3p; +extraira extraire ver 8.55 13.24 0.04 0.00 ind:fut:3s; +extrairai extraire ver 8.55 13.24 0.04 0.00 ind:fut:1s; +extraire extraire ver 8.55 13.24 4.71 5.68 inf; +extrairons extraire ver 8.55 13.24 0.03 0.00 ind:fut:1p; +extrairont extraire ver 8.55 13.24 0.03 0.00 ind:fut:3p; +extrais extraire ver 8.55 13.24 0.17 0.41 imp:pre:2s;ind:pre:1s; +extrait extraire ver m s 8.55 13.24 1.90 3.51 ind:pre:3s;par:pas;par:pas; +extraite extraire ver f s 8.55 13.24 0.80 0.61 par:pas; +extraites extraire ver f p 8.55 13.24 0.11 0.54 par:pas; +extraits extrait nom m p 3.06 4.19 1.17 2.09 +extralucide extralucide adj m s 0.20 0.07 0.19 0.00 +extralucides extralucide adj p 0.20 0.07 0.01 0.07 +extraordinaire extraordinaire adj s 27.36 42.84 23.71 36.01 +extraordinairement extraordinairement adv 0.46 8.51 0.46 8.51 +extraordinaires extraordinaire adj p 27.36 42.84 3.65 6.82 +extrapolant extrapoler ver 0.37 0.34 0.04 0.00 par:pre; +extrapolation extrapolation nom f s 0.14 0.27 0.12 0.14 +extrapolations extrapolation nom f p 0.14 0.27 0.02 0.14 +extrapole extrapoler ver 0.37 0.34 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extrapolent extrapoler ver 0.37 0.34 0.00 0.07 ind:pre:3p; +extrapoler extrapoler ver 0.37 0.34 0.14 0.07 inf; +extrapolez extrapoler ver 0.37 0.34 0.05 0.00 imp:pre:2p;ind:pre:2p; +extrapolons extrapoler ver 0.37 0.34 0.00 0.07 imp:pre:1p; +extrapolé extrapoler ver m s 0.37 0.34 0.06 0.00 par:pas; +extrapolée extrapoler ver f s 0.37 0.34 0.01 0.00 par:pas; +extrapolées extrapoler ver f p 0.37 0.34 0.00 0.07 par:pas; +extras extra nom_sup m p 4.93 1.55 1.04 0.68 +extrascolaire extrascolaire adj s 0.23 0.00 0.11 0.00 +extrascolaires extrascolaire adj p 0.23 0.00 0.13 0.00 +extrasensoriel extrasensoriel adj m s 0.51 0.00 0.02 0.00 +extrasensorielle extrasensoriel adj f s 0.51 0.00 0.25 0.00 +extrasensoriels extrasensoriel adj m p 0.51 0.00 0.25 0.00 +extrasystole extrasystole nom f s 0.03 0.00 0.03 0.00 +extraterrestre extraterrestre adj s 6.66 0.41 4.46 0.14 +extraterrestres extraterrestre nom p 9.81 1.01 6.37 0.68 +extraterritoriale extraterritorial adj f s 0.02 0.00 0.02 0.00 +extravagance extravagance nom f s 0.94 3.78 0.31 2.43 +extravagances extravagance nom f p 0.94 3.78 0.63 1.35 +extravagant extravagant adj m s 2.26 6.55 0.91 2.16 +extravagante extravagant adj f s 2.26 6.55 0.56 1.62 +extravagantes extravagant adj f p 2.26 6.55 0.36 1.15 +extravagants extravagant adj m p 2.26 6.55 0.43 1.62 +extravaguait extravaguer ver 0.00 0.27 0.00 0.07 ind:imp:3s; +extravague extravaguer ver 0.00 0.27 0.00 0.07 ind:pre:3s; +extravaguer extravaguer ver 0.00 0.27 0.00 0.07 inf; +extravagué extravaguer ver m s 0.00 0.27 0.00 0.07 par:pas; +extravasation extravasation nom f s 0.01 0.00 0.01 0.00 +extraverti extraverti adj m s 0.11 0.00 0.06 0.00 +extravertie extraverti adj f s 0.11 0.00 0.05 0.00 +extravéhiculaire extravéhiculaire adj s 0.07 0.00 0.07 0.00 +extrayaient extraire ver 8.55 13.24 0.00 0.34 ind:imp:3p; +extrayait extraire ver 8.55 13.24 0.04 0.95 ind:imp:3s; +extrayant extraire ver 8.55 13.24 0.04 0.41 par:pre; +extrayez extraire ver 8.55 13.24 0.18 0.00 imp:pre:2p;ind:pre:2p; +extrayions extraire ver 8.55 13.24 0.01 0.00 ind:imp:1p; +extroverti extroverti adj m s 0.03 0.00 0.01 0.00 +extrovertie extroverti adj f s 0.03 0.00 0.01 0.00 +extrême_onction extrême_onction nom f s 0.42 1.62 0.42 1.55 +extrême_orient extrême_orient nom m s 0.00 0.07 0.00 0.07 +extrême_oriental extrême_oriental adj f s 0.00 0.07 0.00 0.07 +extrême extrême adj s 12.08 45.54 9.07 41.62 +extrêmement extrêmement adv 14.69 16.96 14.69 16.96 +extrême_onction extrême_onction nom f p 0.42 1.62 0.00 0.07 +extrêmes extrême adj p 12.08 45.54 3.01 3.92 +extrémisme extrémisme nom m s 0.13 0.20 0.13 0.20 +extrémiste extrémiste nom s 1.03 0.61 0.42 0.27 +extrémistes extrémiste nom p 1.03 0.61 0.61 0.34 +extrémité extrémité nom f s 2.95 27.09 2.12 20.27 +extrémités extrémité nom f p 2.95 27.09 0.83 6.82 +extrusion extrusion nom f s 0.03 0.00 0.03 0.00 +exténua exténuer ver 0.81 3.18 0.00 0.14 ind:pas:3s; +exténuait exténuer ver 0.81 3.18 0.00 0.20 ind:imp:3s; +exténuant exténuant adj m s 0.16 1.49 0.07 0.68 +exténuante exténuant adj f s 0.16 1.49 0.04 0.68 +exténuantes exténuant adj f p 0.16 1.49 0.03 0.07 +exténuants exténuant adj m p 0.16 1.49 0.02 0.07 +exténuation exténuation nom f s 0.10 0.00 0.10 0.00 +exténue exténuer ver 0.81 3.18 0.00 0.27 ind:pre:3s; +exténuement exténuement nom m s 0.00 0.27 0.00 0.27 +exténuent exténuer ver 0.81 3.18 0.00 0.07 ind:pre:3p; +exténuer exténuer ver 0.81 3.18 0.01 0.14 inf; +exténuerait exténuer ver 0.81 3.18 0.00 0.07 cnd:pre:3s; +exténué exténuer ver m s 0.81 3.18 0.35 0.74 par:pas; +exténuée exténuer ver f s 0.81 3.18 0.27 0.74 par:pas; +exténuées exténué adj f p 0.26 5.07 0.00 0.47 +exténués exténuer ver m p 0.81 3.18 0.19 0.54 par:pas; +extérieur extérieur nom m s 25.53 24.39 24.97 23.72 +extérieure extérieur adj f s 11.01 29.86 3.36 7.84 +extérieurement extérieurement adv 0.23 0.81 0.23 0.81 +extérieures extérieur adj f p 11.01 29.86 1.24 5.34 +extérieurs extérieur adj m p 11.01 29.86 1.52 4.46 +extériorisa extérioriser ver 0.61 1.15 0.00 0.14 ind:pas:3s; +extériorisaient extérioriser ver 0.61 1.15 0.00 0.07 ind:imp:3p; +extériorisait extérioriser ver 0.61 1.15 0.00 0.20 ind:imp:3s; +extériorisation extériorisation nom f s 0.05 0.00 0.05 0.00 +extériorise extérioriser ver 0.61 1.15 0.22 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extérioriser extérioriser ver 0.61 1.15 0.34 0.41 inf; +extériorisez extérioriser ver 0.61 1.15 0.01 0.00 ind:pre:2p; +extériorisé extérioriser ver m s 0.61 1.15 0.03 0.14 par:pas; +extériorisés extérioriser ver m p 0.61 1.15 0.01 0.00 par:pas; +extériorité extériorité nom f s 0.00 0.14 0.00 0.14 +exubérance exubérance nom f s 0.47 3.99 0.47 3.92 +exubérances exubérance nom f p 0.47 3.99 0.00 0.07 +exubérant exubérant adj m s 0.85 2.77 0.32 0.88 +exubérante exubérant adj f s 0.85 2.77 0.32 1.22 +exubérantes exubérant adj f p 0.85 2.77 0.00 0.54 +exubérants exubérant adj m p 0.85 2.77 0.21 0.14 +exécra exécrer ver 0.48 3.18 0.00 0.07 ind:pas:3s; +exécrable exécrable adj s 1.13 2.16 1.08 1.89 +exécrables exécrable adj p 1.13 2.16 0.06 0.27 +exécrais exécrer ver 0.48 3.18 0.01 0.14 ind:imp:1s; +exécrait exécrer ver 0.48 3.18 0.01 0.68 ind:imp:3s; +exécration exécration nom f s 0.00 1.28 0.00 1.22 +exécrations exécration nom f p 0.00 1.28 0.00 0.07 +exécrer exécrer ver 0.48 3.18 0.02 0.27 inf; +exécré exécrer ver m s 0.48 3.18 0.02 0.54 par:pas; +exécrée exécrer ver f s 0.48 3.18 0.02 0.34 par:pas; +exécrées exécrer ver f p 0.48 3.18 0.00 0.07 par:pas; +exécrés exécrer ver m p 0.48 3.18 0.00 0.14 par:pas; +exécuta exécuter ver 25.02 37.77 0.29 2.64 ind:pas:3s; +exécutai exécuter ver 25.02 37.77 0.01 0.54 ind:pas:1s; +exécutaient exécuter ver 25.02 37.77 0.04 1.28 ind:imp:3p; +exécutais exécuter ver 25.02 37.77 0.07 0.41 ind:imp:1s; +exécutait exécuter ver 25.02 37.77 0.14 2.57 ind:imp:3s; +exécutant exécutant nom m s 0.31 1.15 0.15 0.54 +exécutants exécutant nom m p 0.31 1.15 0.16 0.61 +exécute exécuter ver 25.02 37.77 3.07 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +exécutent exécuter ver 25.02 37.77 0.22 1.01 ind:pre:3p; +exécuter exécuter ver 25.02 37.77 7.53 11.22 ind:pre:2p;inf; +exécutera exécuter ver 25.02 37.77 0.31 0.00 ind:fut:3s; +exécuterai exécuter ver 25.02 37.77 0.20 0.07 ind:fut:1s; +exécuteraient exécuter ver 25.02 37.77 0.02 0.00 cnd:pre:3p; +exécuterais exécuter ver 25.02 37.77 0.05 0.07 cnd:pre:1s; +exécuterait exécuter ver 25.02 37.77 0.02 0.27 cnd:pre:3s; +exécuteras exécuter ver 25.02 37.77 0.03 0.00 ind:fut:2s; +exécuterez exécuter ver 25.02 37.77 0.05 0.14 ind:fut:2p; +exécuteriez exécuter ver 25.02 37.77 0.10 0.00 cnd:pre:2p; +exécuterons exécuter ver 25.02 37.77 0.03 0.07 ind:fut:1p; +exécuteront exécuter ver 25.02 37.77 0.07 0.14 ind:fut:3p; +exécutes exécuter ver 25.02 37.77 0.46 0.07 ind:pre:2s; +exécuteur exécuteur nom m s 1.07 0.88 0.97 0.47 +exécuteurs exécuteur nom m p 1.07 0.88 0.08 0.41 +exécutez exécuter ver 25.02 37.77 1.53 0.14 imp:pre:2p;ind:pre:2p; +exécutiez exécuter ver 25.02 37.77 0.03 0.00 ind:imp:2p; +exécutif exécutif adj m s 2.13 1.62 1.26 1.42 +exécutifs exécutif adj m p 2.13 1.62 0.70 0.00 +exécution exécution nom f s 17.49 23.51 15.60 20.68 +exécutions exécution nom f p 17.49 23.51 1.89 2.84 +exécutive exécutif adj f s 2.13 1.62 0.17 0.20 +exécutoire exécutoire adj f s 0.42 0.14 0.42 0.07 +exécutoires exécutoire adj p 0.42 0.14 0.00 0.07 +exécutons exécuter ver 25.02 37.77 0.27 0.00 imp:pre:1p;ind:pre:1p; +exécutrice exécuteur nom f s 1.07 0.88 0.02 0.00 +exécutèrent exécuter ver 25.02 37.77 0.11 0.27 ind:pas:3p; +exécuté exécuter ver m s 25.02 37.77 6.92 6.89 par:pas; +exécutée exécuter ver f s 25.02 37.77 0.96 2.30 par:pas; +exécutées exécuter ver f p 25.02 37.77 0.66 1.01 par:pas; +exécutés exécuter ver m p 25.02 37.77 1.69 2.30 par:pas; +exégèse exégèse nom f s 0.14 0.61 0.14 0.41 +exégèses exégèse nom f p 0.14 0.61 0.00 0.20 +exégète exégète nom s 0.00 0.54 0.00 0.20 +exégètes exégète nom p 0.00 0.54 0.00 0.34 +exulta exulter ver 0.61 4.26 0.00 0.54 ind:pas:3s; +exultai exulter ver 0.61 4.26 0.00 0.20 ind:pas:1s; +exultaient exulter ver 0.61 4.26 0.00 0.14 ind:imp:3p; +exultais exulter ver 0.61 4.26 0.01 0.27 ind:imp:1s; +exultait exulter ver 0.61 4.26 0.01 1.15 ind:imp:3s; +exultant exulter ver 0.61 4.26 0.01 0.27 par:pre; +exultante exultant adj f s 0.01 0.61 0.01 0.20 +exultantes exultant adj f p 0.01 0.61 0.00 0.07 +exultants exultant adj m p 0.01 0.61 0.00 0.07 +exultation exultation nom f s 0.05 0.68 0.05 0.68 +exulte exulter ver 0.61 4.26 0.50 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exultent exulter ver 0.61 4.26 0.01 0.07 ind:pre:3p; +exulter exulter ver 0.61 4.26 0.07 0.14 inf; +exultons exulter ver 0.61 4.26 0.00 0.07 ind:pre:1p; +exultèrent exulter ver 0.61 4.26 0.00 0.14 ind:pas:3p; +exutoire exutoire nom m s 0.67 0.54 0.67 0.47 +exutoires exutoire nom m p 0.67 0.54 0.00 0.07 +eye_liner eye_liner nom m s 0.22 0.27 0.22 0.27 +eyeliner eyeliner nom m s 0.12 0.00 0.12 0.00 +f f nom m s 26.65 7.09 26.65 7.09 +fîmes faire ver 8813.53 5328.99 0.29 5.47 ind:pas:1p; +fît faire ver 8813.53 5328.99 0.46 14.19 sub:imp:3s; +fîtes faire ver 8813.53 5328.99 0.38 0.07 ind:pas:2p; +fûmes être aux 8074.24 6501.82 0.72 4.05 ind:pas:1p; +fût être aux 8074.24 6501.82 2.16 54.66 sub:imp:3s; +fûtes être aux 8074.24 6501.82 0.14 0.27 ind:pas:2p; +fûts fût nom m p 2.58 17.30 1.01 3.24 +führer führer nom m s 23.86 4.59 23.84 4.59 +führers führer nom m p 23.86 4.59 0.02 0.00 +fa fa nom m 5.23 1.08 5.23 1.08 +faînes faîne nom m p 0.00 0.07 0.00 0.07 +faîtage faîtage nom m s 0.00 0.47 0.00 0.27 +faîtages faîtage nom m p 0.00 0.47 0.00 0.20 +faîte faîte nom m s 56.42 7.03 56.42 7.03 +faîtes_la_moi faîtes_la_moi nom m p 0.01 0.00 0.01 0.00 +faîtière faîtier adj f s 0.02 0.07 0.02 0.00 +faîtières faîtier adj f p 0.02 0.07 0.00 0.07 +faïence faïence nom f s 0.28 9.86 0.28 8.85 +faïencerie faïencerie nom f s 0.00 0.14 0.00 0.14 +faïences faïence nom f p 0.28 9.86 0.00 1.01 +faïencier faïencier nom m s 0.00 0.14 0.00 0.07 +faïenciers faïencier nom m p 0.00 0.14 0.00 0.07 +fabiens fabien nom m p 0.00 0.07 0.00 0.07 +fable fable nom f s 2.59 9.80 1.79 5.81 +fables fable nom f p 2.59 9.80 0.80 3.99 +fabliau fabliau nom m s 0.00 0.41 0.00 0.27 +fabliaux fabliau nom m p 0.00 0.41 0.00 0.14 +fabricant fabricant nom m s 3.67 3.45 2.55 2.23 +fabricante fabricant nom f s 3.67 3.45 0.00 0.07 +fabricantes fabricant nom f p 3.67 3.45 0.00 0.07 +fabricants fabricant nom m p 3.67 3.45 1.12 1.08 +fabrication fabrication nom f s 4.07 7.97 4.06 6.55 +fabrications fabrication nom f p 4.07 7.97 0.01 1.42 +fabriqua fabriquer ver 40.37 47.57 0.05 0.47 ind:pas:3s; +fabriquai fabriquer ver 40.37 47.57 0.00 0.20 ind:pas:1s; +fabriquaient fabriquer ver 40.37 47.57 0.40 1.15 ind:imp:3p; +fabriquais fabriquer ver 40.37 47.57 0.46 0.95 ind:imp:1s;ind:imp:2s; +fabriquait fabriquer ver 40.37 47.57 0.93 4.53 ind:imp:3s; +fabriquant fabriquer ver 40.37 47.57 0.67 0.95 par:pre; +fabrique fabriquer ver 40.37 47.57 7.50 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fabriquent fabriquer ver 40.37 47.57 3.06 1.35 ind:pre:3p; +fabriquer fabriquer ver 40.37 47.57 6.97 13.51 inf; +fabriquera fabriquer ver 40.37 47.57 0.19 0.07 ind:fut:3s; +fabriquerai fabriquer ver 40.37 47.57 0.06 0.14 ind:fut:1s; +fabriquerais fabriquer ver 40.37 47.57 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +fabriquerait fabriquer ver 40.37 47.57 0.00 0.47 cnd:pre:3s; +fabriquerez fabriquer ver 40.37 47.57 0.04 0.00 ind:fut:2p; +fabriquerons fabriquer ver 40.37 47.57 0.01 0.00 ind:fut:1p; +fabriqueront fabriquer ver 40.37 47.57 0.01 0.00 ind:fut:3p; +fabriques fabriquer ver 40.37 47.57 6.32 0.88 ind:pre:2s; +fabriquez fabriquer ver 40.37 47.57 1.72 0.54 imp:pre:2p;ind:pre:2p; +fabriquiez fabriquer ver 40.37 47.57 0.22 0.07 ind:imp:2p; +fabriquions fabriquer ver 40.37 47.57 0.02 0.34 ind:imp:1p; +fabriquons fabriquer ver 40.37 47.57 0.35 0.20 imp:pre:1p;ind:pre:1p; +fabriquèrent fabriquer ver 40.37 47.57 0.02 0.20 ind:pas:3p; +fabriqué fabriquer ver m s 40.37 47.57 7.51 8.18 par:pas; +fabriquée fabriquer ver f s 40.37 47.57 1.93 2.97 par:pas; +fabriquées fabriquer ver f p 40.37 47.57 0.84 1.49 par:pas; +fabriqués fabriquer ver m p 40.37 47.57 0.93 2.43 par:pas; +fabulateur fabulateur adj m s 0.00 0.07 0.00 0.07 +fabulation fabulation nom f s 0.14 0.41 0.03 0.20 +fabulations fabulation nom f p 0.14 0.41 0.11 0.20 +fabulatrice fabulateur nom f s 0.00 0.07 0.00 0.07 +fabule fabuler ver 0.42 0.34 0.31 0.07 ind:pre:1s;ind:pre:3s; +fabuler fabuler ver 0.42 0.34 0.02 0.20 inf; +fabuleuse fabuleux adj f s 15.34 17.50 3.48 4.73 +fabuleusement fabuleusement adv 0.29 0.74 0.29 0.74 +fabuleuses fabuleux adj f p 15.34 17.50 0.76 2.91 +fabuleux fabuleux adj m 15.34 17.50 11.10 9.86 +fabulez fabuler ver 0.42 0.34 0.06 0.00 ind:pre:2p; +fabuliste fabuliste nom s 0.00 0.07 0.00 0.07 +fabulé fabuler ver m s 0.42 0.34 0.02 0.07 par:pas; +fac_similé fac_similé nom m s 0.03 0.34 0.02 0.27 +fac_similé fac_similé nom m p 0.03 0.34 0.01 0.07 +fac fac nom f s 29.65 2.36 28.94 2.09 +face_à_face face_à_face nom m 0.00 0.47 0.00 0.47 +face_à_main face_à_main nom m s 0.00 0.54 0.00 0.54 +face face nom f s 125.32 270.88 124.33 262.16 +faces_à_main faces_à_main nom m p 0.00 0.07 0.00 0.07 +faces face nom f p 125.32 270.88 0.98 8.72 +facette facette nom f s 1.21 3.18 0.67 0.07 +facettes facette nom f p 1.21 3.18 0.55 3.11 +facettés facetter ver m p 0.00 0.07 0.00 0.07 par:pas; +facho facho nom m s 1.17 0.54 0.48 0.00 +fachos facho nom m p 1.17 0.54 0.69 0.54 +facial facial adj m s 2.29 0.54 0.69 0.20 +faciale facial adj f s 2.29 0.54 1.04 0.20 +faciales facial adj f p 2.29 0.54 0.21 0.07 +faciaux facial adj m p 2.29 0.54 0.34 0.07 +facile facile adj s 159.35 98.65 153.57 88.65 +facilement facilement adv 26.85 37.03 26.85 37.03 +faciles facile adj p 159.35 98.65 5.78 10.00 +facilita faciliter ver 8.75 12.57 0.01 0.07 ind:pas:3s; +facilitaient faciliter ver 8.75 12.57 0.01 0.47 ind:imp:3p; +facilitait faciliter ver 8.75 12.57 0.16 1.42 ind:imp:3s; +facilitant faciliter ver 8.75 12.57 0.09 0.14 par:pre; +facilitateur facilitateur nom m s 0.03 0.00 0.03 0.00 +facilitation facilitation nom f s 0.03 0.00 0.03 0.00 +facilite faciliter ver 8.75 12.57 1.39 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +facilitent faciliter ver 8.75 12.57 0.08 0.54 ind:pre:3p; +faciliter faciliter ver 8.75 12.57 4.07 5.14 inf; +facilitera faciliter ver 8.75 12.57 0.73 0.07 ind:fut:3s; +faciliterai faciliter ver 8.75 12.57 0.06 0.00 ind:fut:1s; +faciliteraient faciliter ver 8.75 12.57 0.00 0.07 cnd:pre:3p; +faciliterais faciliter ver 8.75 12.57 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +faciliterait faciliter ver 8.75 12.57 0.69 0.74 cnd:pre:3s; +faciliteront faciliter ver 8.75 12.57 0.04 0.14 ind:fut:3p; +facilitez faciliter ver 8.75 12.57 0.33 0.00 imp:pre:2p;ind:pre:2p; +facilitons faciliter ver 8.75 12.57 0.01 0.00 ind:pre:1p; +facilité facilité nom f s 2.09 15.07 1.47 11.55 +facilitée faciliter ver f s 8.75 12.57 0.06 0.47 par:pas; +facilitées faciliter ver f p 8.75 12.57 0.02 0.20 par:pas; +facilités facilité nom f p 2.09 15.07 0.62 3.51 +faciès faciès nom m 0.21 2.09 0.21 2.09 +faconde faconde nom f s 0.00 1.62 0.00 1.62 +facs fac nom f p 29.65 2.36 0.71 0.27 +facteur facteur nom m s 12.26 14.32 9.67 12.36 +facteurs facteur nom m p 12.26 14.32 2.54 1.96 +factice factice adj s 0.79 3.65 0.43 2.77 +factices factice adj p 0.79 3.65 0.36 0.88 +factieux factieux nom m 0.24 0.14 0.24 0.14 +faction faction nom f s 1.52 4.73 0.69 3.72 +factionnaire factionnaire nom s 0.04 1.69 0.00 0.95 +factionnaires factionnaire nom p 0.04 1.69 0.04 0.74 +factions faction nom f p 1.52 4.73 0.83 1.01 +factor factor nom m s 0.03 0.00 0.03 0.00 +factorielle factoriel nom f s 0.01 0.14 0.01 0.07 +factorielles factoriel nom f p 0.01 0.14 0.00 0.07 +factorisation factorisation nom f s 0.01 0.00 0.01 0.00 +factoriser factoriser ver 0.04 0.00 0.04 0.00 inf; +factotum factotum nom m s 0.66 1.15 0.66 0.95 +factotums factotum nom m p 0.66 1.15 0.00 0.20 +factrice facteur nom f s 12.26 14.32 0.06 0.00 +factuel factuel adj m s 0.15 0.00 0.11 0.00 +factuelles factuel adj f p 0.15 0.00 0.03 0.00 +factuels factuel adj m p 0.15 0.00 0.01 0.00 +factum factum nom m s 0.00 0.34 0.00 0.27 +factums factum nom m p 0.00 0.34 0.00 0.07 +facturation facturation nom f s 0.26 0.07 0.26 0.07 +facture facture nom f s 22.61 8.72 12.24 4.66 +facturent facturer ver 1.90 0.14 0.09 0.00 ind:pre:3p; +facturer facturer ver 1.90 0.14 0.56 0.00 inf; +facturera facturer ver 1.90 0.14 0.05 0.00 ind:fut:3s; +facturerait facturer ver 1.90 0.14 0.00 0.07 cnd:pre:3s; +factures facture nom f p 22.61 8.72 10.37 4.05 +facturette facturette nom f s 0.01 0.00 0.01 0.00 +facturez facturer ver 1.90 0.14 0.20 0.00 imp:pre:2p;ind:pre:2p; +facturier facturier nom m s 0.14 0.14 0.14 0.00 +facturière facturier nom f s 0.14 0.14 0.00 0.14 +facturons facturer ver 1.90 0.14 0.05 0.07 imp:pre:1p;ind:pre:1p; +facturé facturer ver m s 1.90 0.14 0.30 0.00 par:pas; +facturée facturer ver f s 1.90 0.14 0.05 0.00 par:pas; +facturées facturer ver f p 1.90 0.14 0.02 0.00 par:pas; +facturés facturer ver m p 1.90 0.14 0.04 0.00 par:pas; +facultatif facultatif adj m s 0.44 0.47 0.14 0.14 +facultatifs facultatif adj m p 0.44 0.47 0.09 0.14 +facultative facultatif adj f s 0.44 0.47 0.21 0.20 +faculté faculté nom f s 8.73 17.30 5.93 13.85 +facultés faculté nom f p 8.73 17.30 2.80 3.45 +facétie facétie nom f s 0.17 1.96 0.14 0.54 +facéties facétie nom f p 0.17 1.96 0.02 1.42 +facétieuse facétieux adj f s 0.08 1.49 0.01 0.47 +facétieusement facétieusement adv 0.00 0.34 0.00 0.34 +facétieuses facétieux adj f p 0.08 1.49 0.00 0.14 +facétieux facétieux adj m s 0.08 1.49 0.07 0.88 +fada fada adj m s 1.81 0.47 1.81 0.47 +fadaise fadaise nom f s 0.62 1.49 0.00 0.07 +fadaises fadaise nom f p 0.62 1.49 0.62 1.42 +fadas fada nom p 0.70 0.68 0.28 0.34 +fadasse fadasse adj s 0.04 1.08 0.04 0.88 +fadasses fadasse adj f p 0.04 1.08 0.00 0.20 +fade fade adj s 2.06 14.93 1.51 10.34 +fadement fadement adv 0.00 0.07 0.00 0.07 +fadent fader ver 0.01 1.76 0.00 0.07 ind:pre:3p; +fader fader ver 0.01 1.76 0.01 0.61 inf; +faderas fader ver 0.01 1.76 0.00 0.07 ind:fut:2s; +fades fade adj p 2.06 14.93 0.55 4.59 +fadette fadette nom f s 0.00 0.47 0.00 0.47 +fadeur fadeur nom f s 0.32 1.82 0.32 1.49 +fadeurs fadeur nom f p 0.32 1.82 0.00 0.34 +fading fading nom m s 0.01 0.07 0.01 0.07 +fado fado nom m s 3.33 0.00 3.33 0.00 +fadé fader ver m s 0.01 1.76 0.00 0.27 par:pas; +fadée fadé adj f s 0.00 0.34 0.00 0.14 +fadés fader ver m p 0.01 1.76 0.00 0.07 par:pas; +faena faena nom f s 0.00 0.07 0.00 0.07 +faf faf nom m s 0.07 0.88 0.04 0.00 +fafiot fafiot nom m s 0.28 0.74 0.00 0.07 +fafiots fafiot nom m p 0.28 0.74 0.28 0.68 +fafs faf nom m p 0.07 0.88 0.03 0.88 +fagne fagne nom f s 0.00 0.34 0.00 0.20 +fagnes fagne nom f p 0.00 0.34 0.00 0.14 +fagot fagot nom m s 0.19 10.68 0.03 2.64 +fagotage fagotage nom m s 0.00 0.07 0.00 0.07 +fagotait fagoter ver 0.05 1.15 0.00 0.07 ind:imp:3s; +fagotant fagoter ver 0.05 1.15 0.00 0.07 par:pre; +fagote fagoter ver 0.05 1.15 0.00 0.07 ind:pre:1s; +fagoter fagoter ver 0.05 1.15 0.00 0.27 inf; +fagotiers fagotier nom m p 0.00 0.07 0.00 0.07 +fagotin fagotin nom m s 0.00 0.27 0.00 0.14 +fagotins fagotin nom m p 0.00 0.27 0.00 0.14 +fagots fagot nom m p 0.19 10.68 0.16 8.04 +fagoté fagoté adj m s 0.30 0.74 0.13 0.34 +fagotée fagoté adj f s 0.30 0.74 0.09 0.27 +fagotées fagoté adj f p 0.30 0.74 0.02 0.14 +fagotés fagoté adj m p 0.30 0.74 0.06 0.00 +fahrenheit fahrenheit adj m p 0.15 0.07 0.15 0.07 +faiblît faiblir ver 2.62 7.03 0.00 0.14 sub:imp:3s; +faiblard faiblard adj m s 0.23 1.76 0.19 1.15 +faiblarde faiblard adj f s 0.23 1.76 0.03 0.27 +faiblards faiblard adj m p 0.23 1.76 0.01 0.34 +faible faible adj s 38.78 53.65 31.03 40.95 +faiblement faiblement adv 0.65 16.89 0.65 16.89 +faibles faible adj p 38.78 53.65 7.75 12.70 +faiblesse faiblesse nom f s 14.71 31.62 11.32 25.34 +faiblesses faiblesse nom f p 14.71 31.62 3.38 6.28 +faibli faiblir ver m s 2.62 7.03 0.15 0.74 par:pas; +faiblir faiblir ver 2.62 7.03 0.73 2.77 inf; +faiblira faiblir ver 2.62 7.03 0.08 0.07 ind:fut:3s; +faiblirent faiblir ver 2.62 7.03 0.00 0.14 ind:pas:3p; +faiblis faiblir ver 2.62 7.03 0.16 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +faiblissaient faiblir ver 2.62 7.03 0.00 0.27 ind:imp:3p; +faiblissais faiblir ver 2.62 7.03 0.00 0.14 ind:imp:1s; +faiblissait faiblir ver 2.62 7.03 0.04 1.15 ind:imp:3s; +faiblissant faiblir ver 2.62 7.03 0.00 0.20 par:pre; +faiblissante faiblissant adj f s 0.16 0.07 0.02 0.00 +faiblissantes faiblissant adj f p 0.16 0.07 0.14 0.07 +faiblisse faiblir ver 2.62 7.03 0.11 0.14 sub:pre:3s; +faiblissent faiblir ver 2.62 7.03 0.11 0.27 ind:pre:3p; +faiblissez faiblir ver 2.62 7.03 0.01 0.00 ind:pre:2p; +faiblissions faiblir ver 2.62 7.03 0.14 0.07 ind:imp:1p; +faiblit faiblir ver 2.62 7.03 1.10 0.88 ind:pre:3s;ind:pas:3s; +faignant faignant nom m s 0.16 0.20 0.01 0.07 +faignante faignanter ver 0.10 0.00 0.10 0.00 sub:pre:3s; +faignants faignant nom m p 0.16 0.20 0.14 0.14 +faillîmes faillir ver 44.19 43.65 0.01 0.07 ind:pas:1p; +faillait failler ver 1.84 1.96 0.01 0.00 ind:imp:3s; +faille faille nom f s 4.71 9.59 3.85 7.43 +failles faille nom f p 4.71 9.59 0.86 2.16 +failli faillir ver m s 44.19 43.65 42.70 22.43 par:pas; +faillibilité faillibilité nom f s 0.01 0.07 0.01 0.00 +faillibilités faillibilité nom f p 0.01 0.07 0.00 0.07 +faillible faillible adj s 0.09 0.34 0.06 0.27 +faillibles faillible adj m p 0.09 0.34 0.04 0.07 +faillie faillie adj m p 0.10 0.07 0.10 0.00 +faillies faillie adj m p 0.10 0.07 0.00 0.07 +faillir faillir ver 44.19 43.65 0.39 0.95 inf; +faillirai faillir ver 44.19 43.65 0.03 0.07 ind:fut:1s; +faillirent faillir ver 44.19 43.65 0.14 0.81 ind:pas:3p; +faillis faillir ver 44.19 43.65 0.27 3.11 ind:pas:1s;ind:pas:2s; +faillit faillir ver 44.19 43.65 0.66 16.22 ind:pas:3s; +faillite faillite nom f s 6.94 7.77 6.74 7.16 +faillites faillite nom f p 6.94 7.77 0.20 0.61 +faim faim nom f s 128.04 75.95 127.49 74.93 +faims faim nom f p 128.04 75.95 0.55 1.01 +faine faine nom f s 1.77 0.07 1.77 0.07 +fainéant fainéant nom m s 3.87 1.69 1.59 0.81 +fainéantais fainéanter ver 0.07 0.34 0.00 0.07 ind:imp:1s; +fainéantant fainéanter ver 0.07 0.34 0.00 0.07 par:pre; +fainéante fainéant nom f s 3.87 1.69 0.37 0.14 +fainéanter fainéanter ver 0.07 0.34 0.04 0.14 inf; +fainéantes fainéant adj f p 1.66 1.89 0.12 0.00 +fainéantise fainéantise nom f s 0.04 0.34 0.04 0.34 +fainéants fainéant nom m p 3.87 1.69 1.81 0.74 +fair_play fair_play nom m 0.60 0.14 0.60 0.14 +faire_part faire_part nom m 0.65 3.04 0.65 3.04 +faire_valoir faire_valoir nom m 0.20 0.68 0.20 0.68 +faire faire ver 8813.53 5328.99 2735.96 1555.14 inf;;inf;;inf;;inf;; +fais faire ver 8813.53 5328.99 1390.92 224.26 imp:pre:2s;ind:pre:1s;ind:pre:2s; +faisabilité faisabilité nom f s 0.19 0.00 0.19 0.00 +faisable faisable adj s 3.63 0.95 3.63 0.95 +faisaient faire ver 8813.53 5328.99 20.25 123.38 ind:imp:3p; +faisais faire ver 8813.53 5328.99 75.81 60.54 ind:imp:1s;ind:imp:2s; +faisait faire ver 8813.53 5328.99 134.90 524.73 ind:imp:3s; +faisan faisan nom m s 1.13 4.12 0.98 1.69 +faisander faisander ver 0.06 0.41 0.04 0.07 inf; +faisanderie faisanderie nom f s 0.00 0.27 0.00 0.27 +faisandé faisandé adj m s 0.12 1.15 0.02 0.47 +faisandée faisandé adj f s 0.12 1.15 0.10 0.41 +faisandées faisandé adj f p 0.12 1.15 0.00 0.07 +faisandés faisandé adj m p 0.12 1.15 0.00 0.20 +faisane faisan nom f s 1.13 4.12 0.00 0.34 +faisans faisan nom m p 1.13 4.12 0.14 2.09 +faisant faire ver 8813.53 5328.99 30.88 118.11 par:pre; +faisceau faisceau nom m s 1.71 10.00 1.27 6.82 +faisceaux faisceau nom m p 1.71 10.00 0.44 3.18 +faiseur faiseur nom m s 1.86 3.24 0.88 1.42 +faiseurs faiseur nom m p 1.86 3.24 0.60 0.74 +faiseuse faiseur nom f s 1.86 3.24 0.38 0.54 +faiseuses faiseuse nom f p 0.04 0.00 0.04 0.00 +faisiez faire ver 8813.53 5328.99 15.98 3.31 ind:imp:2p; +faisions faire ver 8813.53 5328.99 5.01 12.16 ind:imp:1p; +faisons faire ver 8813.53 5328.99 64.49 15.88 imp:pre:1p;ind:pre:1p; +fait_divers fait_divers nom m 0.00 0.20 0.00 0.20 +fait_tout fait_tout nom m 0.01 0.74 0.01 0.74 +fait faire ver m s 8813.53 5328.99 2751.99 1459.26 ind:pre:3s;par:pas;par:pas; +faite faire ver f s 8813.53 5328.99 0.14 59.39 par:pas; +faites faire ver f p 8813.53 5328.99 541.80 93.31 imp:pre:2p;ind:pre:2p;par:pas;;imp:pre:2p;ind:pre:2p;par:pas; +faitout faitout nom m s 0.20 0.14 0.20 0.07 +faitouts faitout nom m p 0.20 0.14 0.00 0.07 +faits_divers faits_divers nom m p 0.00 0.07 0.00 0.07 +faits fait nom m p 412.07 355.54 27.36 30.27 +faix faix nom m 0.10 0.68 0.10 0.68 +fakir fakir nom m s 0.72 1.22 0.45 0.88 +fakirs fakir nom m p 0.72 1.22 0.28 0.34 +falaise falaise nom f s 5.85 20.68 4.45 15.47 +falaises falaise nom f p 5.85 20.68 1.41 5.20 +falbala falbala nom m s 0.16 1.55 0.14 0.41 +falbalas falbala nom m p 0.16 1.55 0.02 1.15 +falciforme falciforme adj s 0.01 0.07 0.01 0.07 +falerne falerne nom m s 0.00 0.07 0.00 0.07 +fallût falloir ver_sup 1653.77 1250.41 0.01 0.27 sub:imp:3s; +fallacieuse fallacieux adj f s 0.23 2.30 0.13 0.54 +fallacieusement fallacieusement adv 0.01 0.20 0.01 0.20 +fallacieuses fallacieux adj f p 0.23 2.30 0.00 0.41 +fallacieux fallacieux adj m 0.23 2.30 0.10 1.35 +fallait falloir ver_sup 1653.77 1250.41 110.88 310.61 ind:imp:3s; +falloir falloir ver_sup 1653.77 1250.41 39.78 17.77 inf; +fallu falloir ver_sup m s 1653.77 1250.41 23.82 68.04 par:pas; +fallut falloir ver_sup 1653.77 1250.41 1.35 26.89 ind:pas:3s; +falot falot nom m s 0.11 0.88 0.11 0.68 +falote falot adj f s 0.04 1.76 0.01 0.54 +falotes falot adj f p 0.04 1.76 0.00 0.14 +falots falot adj m p 0.04 1.76 0.01 0.20 +falsifiaient falsifier ver 2.50 1.35 0.01 0.00 ind:imp:3p; +falsifiais falsifier ver 2.50 1.35 0.00 0.07 ind:imp:1s; +falsifiait falsifier ver 2.50 1.35 0.15 0.07 ind:imp:3s; +falsifiant falsifier ver 2.50 1.35 0.01 0.07 par:pre; +falsification falsification nom f s 0.37 0.27 0.37 0.27 +falsifient falsifier ver 2.50 1.35 0.02 0.00 ind:pre:3p; +falsifier falsifier ver 2.50 1.35 0.68 0.20 inf; +falsifiez falsifier ver 2.50 1.35 0.02 0.00 imp:pre:2p;ind:pre:2p; +falsifié falsifier ver m s 2.50 1.35 0.86 0.27 par:pas; +falsifiée falsifier ver f s 2.50 1.35 0.41 0.27 par:pas; +falsifiées falsifier ver f p 2.50 1.35 0.10 0.20 par:pas; +falsifiés falsifier ver m p 2.50 1.35 0.25 0.20 par:pas; +faluche faluche nom f s 0.00 0.14 0.00 0.14 +falzar falzar nom m s 0.36 1.01 0.29 0.88 +falzars falzar nom m p 0.36 1.01 0.07 0.14 +fameuse fameux adj f s 18.67 53.11 4.74 16.28 +fameusement fameusement adv 0.02 0.07 0.02 0.07 +fameuses fameux adj f p 18.67 53.11 1.17 3.51 +fameux fameux adj m 18.67 53.11 12.77 33.31 +familial familial adj m s 15.66 32.84 5.00 12.36 +familiale familial adj f s 15.66 32.84 7.22 12.97 +familiales familial adj f p 15.66 32.84 1.97 4.80 +familialiste familialiste nom s 0.00 0.07 0.00 0.07 +familiarisa familiariser ver 0.89 2.36 0.00 0.20 ind:pas:3s; +familiarisaient familiariser ver 0.89 2.36 0.00 0.07 ind:imp:3p; +familiarisais familiariser ver 0.89 2.36 0.00 0.07 ind:imp:1s; +familiarisait familiariser ver 0.89 2.36 0.03 0.14 ind:imp:3s; +familiarisant familiariser ver 0.89 2.36 0.00 0.14 par:pre; +familiarise familiariser ver 0.89 2.36 0.10 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +familiarisent familiariser ver 0.89 2.36 0.00 0.07 ind:pre:3p; +familiariser familiariser ver 0.89 2.36 0.51 0.68 inf; +familiariserez familiariser ver 0.89 2.36 0.02 0.00 ind:fut:2p; +familiarisez familiariser ver 0.89 2.36 0.03 0.00 imp:pre:2p;ind:pre:2p; +familiarisé familiariser ver m s 0.89 2.36 0.17 0.61 par:pas; +familiarisée familiariser ver f s 0.89 2.36 0.02 0.27 par:pas; +familiarisés familiariser ver m p 0.89 2.36 0.01 0.07 par:pas; +familiarité familiarité nom f s 1.43 7.30 0.97 7.09 +familiarités familiarité nom f p 1.43 7.30 0.46 0.20 +familiaux familial adj m p 15.66 32.84 1.47 2.70 +familier familier adj m s 11.30 47.91 7.77 18.31 +familiers familier adj m p 11.30 47.91 1.54 11.55 +familistère familistère nom m s 0.00 0.07 0.00 0.07 +familière familier adj f s 11.30 47.91 1.63 13.11 +familièrement familièrement adv 0.15 2.09 0.15 2.09 +familières familier adj f p 11.30 47.91 0.37 4.93 +famille famille nom f s 384.92 274.39 357.75 241.69 +familles famille nom f p 384.92 274.39 27.16 32.70 +famine famine nom f s 4.88 6.76 4.40 5.61 +famines famine nom f p 4.88 6.76 0.48 1.15 +famé famé adj m s 0.52 1.49 0.38 0.68 +famée famé adj f s 0.52 1.49 0.04 0.14 +famées famé adj f p 0.52 1.49 0.02 0.34 +famélique famélique adj s 0.32 2.57 0.17 1.15 +faméliques famélique adj p 0.32 2.57 0.15 1.42 +famulus famulus nom m 0.00 0.14 0.00 0.14 +famés famé adj m p 0.52 1.49 0.08 0.34 +fan_club fan_club nom m s 0.28 0.14 0.28 0.14 +fan fan nom s 21.43 2.91 13.27 1.49 +fana fana nom s 0.61 0.27 0.43 0.07 +fanaient faner ver 3.73 5.54 0.02 0.47 ind:imp:3p; +fanait faner ver 3.73 5.54 0.00 0.27 ind:imp:3s; +fanal fanal nom m s 0.34 3.24 0.34 2.36 +fanant faner ver 3.73 5.54 0.01 0.00 par:pre; +fanas fana nom p 0.61 0.27 0.18 0.20 +fanatique fanatique nom s 3.56 3.92 1.22 1.69 +fanatiquement fanatiquement adv 0.02 0.34 0.02 0.34 +fanatiques fanatique nom p 3.56 3.92 2.34 2.23 +fanatisait fanatiser ver 0.02 0.81 0.00 0.07 ind:imp:3s; +fanatise fanatiser ver 0.02 0.81 0.00 0.07 ind:pre:3s; +fanatiser fanatiser ver 0.02 0.81 0.00 0.07 inf; +fanatisme fanatisme nom m s 0.54 2.84 0.54 2.70 +fanatismes fanatisme nom m p 0.54 2.84 0.00 0.14 +fanatisé fanatiser ver m s 0.02 0.81 0.00 0.20 par:pas; +fanatisés fanatiser ver m p 0.02 0.81 0.02 0.41 par:pas; +fanaux fanal nom m p 0.34 3.24 0.00 0.88 +fanchon fanchon nom f s 0.00 0.07 0.00 0.07 +fandango fandango nom m s 0.38 0.00 0.38 0.00 +fane faner ver 3.73 5.54 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fanent faner ver 3.73 5.54 0.95 0.47 ind:pre:3p; +faner faner ver 3.73 5.54 0.89 1.01 inf; +fanera faner ver 3.73 5.54 0.28 0.07 ind:fut:3s; +faneraient faner ver 3.73 5.54 0.01 0.07 cnd:pre:3p; +fanerait faner ver 3.73 5.54 0.00 0.07 cnd:pre:3s; +faneras faner ver 3.73 5.54 0.10 0.07 ind:fut:2s; +fanerions faner ver 3.73 5.54 0.10 0.00 cnd:pre:1p; +faneront faner ver 3.73 5.54 0.05 0.00 ind:fut:3p; +fanes faner ver 3.73 5.54 0.01 0.00 ind:pre:2s; +faneuse faneur nom f s 0.00 0.27 0.00 0.20 +faneuses faneur nom f p 0.00 0.27 0.00 0.07 +fanez faner ver 3.73 5.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +fanfan fanfan nom m s 1.22 0.00 1.22 0.00 +fanfare fanfare nom f s 4.07 5.27 3.80 3.72 +fanfares fanfare nom f p 4.07 5.27 0.27 1.55 +fanfaron fanfaron nom m s 0.90 0.47 0.68 0.20 +fanfaronna fanfaronner ver 0.42 0.74 0.00 0.14 ind:pas:3s; +fanfaronnade fanfaronnade nom f s 0.40 0.74 0.18 0.54 +fanfaronnades fanfaronnade nom f p 0.40 0.74 0.22 0.20 +fanfaronnaient fanfaronner ver 0.42 0.74 0.00 0.14 ind:imp:3p; +fanfaronnait fanfaronner ver 0.42 0.74 0.00 0.14 ind:imp:3s; +fanfaronnant fanfaronner ver 0.42 0.74 0.02 0.07 par:pre; +fanfaronne fanfaronner ver 0.42 0.74 0.34 0.14 imp:pre:2s;ind:pre:3s; +fanfaronner fanfaronner ver 0.42 0.74 0.05 0.07 inf; +fanfaronnes fanfaronner ver 0.42 0.74 0.01 0.00 ind:pre:2s; +fanfaronné fanfaronner ver m s 0.42 0.74 0.00 0.07 par:pas; +fanfarons fanfaron nom m p 0.90 0.47 0.22 0.20 +fanfreluche fanfreluche nom f s 0.16 1.42 0.02 0.00 +fanfreluches fanfreluche nom f p 0.16 1.42 0.14 1.42 +fang fang adj f s 0.03 0.07 0.03 0.07 +fange fange nom f s 0.74 1.96 0.74 1.89 +fanges fange nom f p 0.74 1.96 0.00 0.07 +fangeuse fangeux adj f s 0.18 2.09 0.14 0.54 +fangeuses fangeux adj f p 0.18 2.09 0.01 0.14 +fangeux fangeux adj m 0.18 2.09 0.02 1.42 +fanion fanion nom m s 0.25 3.51 0.16 2.64 +fanions fanion nom m p 0.25 3.51 0.09 0.88 +fanny fanny adj f s 1.06 0.14 1.06 0.14 +fanon fanon nom m s 0.04 0.61 0.03 0.07 +fanons fanon nom m p 0.04 0.61 0.01 0.54 +fans fan nom p 21.43 2.91 8.17 1.42 +fantôme fantôme nom m s 48.23 35.88 29.71 20.74 +fantômes fantôme nom m p 48.23 35.88 18.52 15.14 +fantaisie fantaisie nom f s 6.98 16.89 5.57 14.26 +fantaisies fantaisie nom f p 6.98 16.89 1.41 2.64 +fantaisiste fantaisiste adj s 0.80 1.76 0.59 0.68 +fantaisistes fantaisiste adj p 0.80 1.76 0.20 1.08 +fantasia fantasia nom f s 0.33 0.54 0.33 0.54 +fantasmagorie fantasmagorie nom f s 0.17 0.88 0.17 0.81 +fantasmagories fantasmagorie nom f p 0.17 0.88 0.00 0.07 +fantasmagorique fantasmagorique adj m s 0.00 0.14 0.00 0.14 +fantasmaient fantasmer ver 2.04 1.08 0.01 0.07 ind:imp:3p; +fantasmais fantasmer ver 2.04 1.08 0.04 0.07 ind:imp:1s;ind:imp:2s; +fantasmait fantasmer ver 2.04 1.08 0.03 0.20 ind:imp:3s; +fantasmatique fantasmatique adj f s 0.03 0.14 0.03 0.14 +fantasmatiquement fantasmatiquement adv 0.00 0.14 0.00 0.14 +fantasme fantasme nom m s 9.18 6.35 4.64 1.49 +fantasment fantasmer ver 2.04 1.08 0.04 0.00 ind:pre:3p; +fantasmer fantasmer ver 2.04 1.08 0.86 0.34 inf; +fantasmes fantasme nom m p 9.18 6.35 4.54 4.86 +fantasmez fantasmer ver 2.04 1.08 0.21 0.00 imp:pre:2p;ind:pre:2p; +fantasmé fantasmer ver m s 2.04 1.08 0.33 0.07 par:pas; +fantasmés fantasmer ver m p 2.04 1.08 0.01 0.00 par:pas; +fantasque fantasque adj s 0.88 3.72 0.52 3.04 +fantasquement fantasquement adv 0.00 0.07 0.00 0.07 +fantasques fantasque adj p 0.88 3.72 0.36 0.68 +fantassin fantassin nom m s 0.78 6.62 0.29 1.96 +fantassins fantassin nom m p 0.78 6.62 0.48 4.66 +fantastique fantastique adj s 26.90 10.34 24.20 7.09 +fantastiquement fantastiquement adv 0.07 0.34 0.07 0.34 +fantastiques fantastique adj p 26.90 10.34 2.69 3.24 +fanti fanti nom m s 0.00 0.07 0.00 0.07 +fantoche fantoche nom m s 0.48 1.28 0.21 0.47 +fantoches fantoche nom m p 0.48 1.28 0.27 0.81 +fantomale fantomal adj f s 0.00 0.14 0.00 0.07 +fantomales fantomal adj f p 0.00 0.14 0.00 0.07 +fantomatique fantomatique adj s 0.20 3.65 0.19 2.77 +fantomatiquement fantomatiquement adv 0.00 0.07 0.00 0.07 +fantomatiques fantomatique adj p 0.20 3.65 0.01 0.88 +fané fané adj m s 0.79 7.57 0.04 2.30 +fanée fané adj f s 0.79 7.57 0.40 1.69 +fanées faner ver f p 3.73 5.54 0.53 0.88 par:pas; +fanés fané adj m p 0.79 7.57 0.14 0.88 +fanzine fanzine nom m s 0.49 0.07 0.17 0.00 +fanzines fanzine nom m p 0.49 0.07 0.32 0.07 +faon faon nom m s 0.53 1.08 0.25 0.54 +faons faon nom m p 0.53 1.08 0.29 0.54 +faquin faquin nom m s 0.45 0.34 0.45 0.20 +faquins faquin nom m p 0.45 0.34 0.00 0.14 +far_west far_west nom m s 0.01 0.07 0.01 0.07 +far far nom m s 0.65 0.07 0.65 0.07 +farad farad nom m s 0.75 0.07 0.75 0.00 +farads farad nom m p 0.75 0.07 0.00 0.07 +faramineuse faramineux adj f s 0.23 0.68 0.01 0.14 +faramineuses faramineux adj f p 0.23 0.68 0.01 0.14 +faramineux faramineux adj m 0.23 0.68 0.20 0.41 +farandolaient farandoler ver 0.00 0.07 0.00 0.07 ind:imp:3p; +farandole farandole nom f s 0.32 1.42 0.32 0.95 +farandoles farandole nom f p 0.32 1.42 0.00 0.47 +faraud faraud adj m s 0.03 1.69 0.02 1.08 +faraude faraud nom f s 0.01 0.61 0.01 0.00 +farauder farauder ver 0.00 0.07 0.00 0.07 inf; +faraudes faraud nom f p 0.01 0.61 0.00 0.07 +farauds faraud adj m p 0.03 1.69 0.01 0.41 +farce farce nom f s 9.35 12.50 7.45 8.99 +farces farce nom f p 9.35 12.50 1.90 3.51 +farceur farceur nom m s 2.05 1.69 1.64 1.15 +farceurs farceur nom m p 2.05 1.69 0.21 0.47 +farceuse farceur nom f s 2.05 1.69 0.20 0.00 +farceuses farceuse nom f p 0.01 0.00 0.01 0.00 +farci farcir ver m s 3.39 12.57 0.89 2.50 par:pas; +farcie farcir ver f s 3.39 12.57 0.47 1.35 par:pas; +farcies farci adj f p 2.41 2.23 0.56 0.74 +farcir farcir ver 3.39 12.57 1.23 4.73 inf; +farcirai farcir ver 3.39 12.57 0.02 0.00 ind:fut:1s; +farcirait farcir ver 3.39 12.57 0.01 0.07 cnd:pre:3s; +farcis farcir ver m p 3.39 12.57 0.64 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +farcissaient farcir ver 3.39 12.57 0.00 0.07 ind:imp:3p; +farcissais farcir ver 3.39 12.57 0.02 0.07 ind:imp:1s;ind:imp:2s; +farcissait farcir ver 3.39 12.57 0.00 0.54 ind:imp:3s; +farcissant farcir ver 3.39 12.57 0.00 0.07 par:pre; +farcisse farcir ver 3.39 12.57 0.01 0.54 sub:pre:1s;sub:pre:3s; +farcissez farcir ver 3.39 12.57 0.01 0.14 imp:pre:2p;ind:pre:2p; +farcit farcir ver 3.39 12.57 0.09 0.88 ind:pre:3s;ind:pas:3s; +fard fard nom m s 1.69 7.57 1.44 4.73 +fardaient farder ver 0.20 8.99 0.00 0.20 ind:imp:3p; +fardait farder ver 0.20 8.99 0.00 0.68 ind:imp:3s; +fardant farder ver 0.20 8.99 0.01 0.00 par:pre; +farde farder ver 0.20 8.99 0.00 0.54 ind:pre:3s; +fardeau fardeau nom m s 7.56 7.70 7.00 6.89 +fardeaux fardeau nom m p 7.56 7.70 0.56 0.81 +fardent farder ver 0.20 8.99 0.00 0.14 ind:pre:3p; +farder farder ver 0.20 8.99 0.03 0.61 inf; +fardier fardier nom m s 0.00 0.34 0.00 0.14 +fardiers fardier nom m p 0.00 0.34 0.00 0.20 +fards fard nom m p 1.69 7.57 0.25 2.84 +fardé farder ver m s 0.20 8.99 0.00 1.55 par:pas; +fardée farder ver f s 0.20 8.99 0.14 2.23 par:pas; +fardées farder ver f p 0.20 8.99 0.03 1.96 par:pas; +fardés farder ver m p 0.20 8.99 0.00 1.08 par:pas; +fare fare nom m s 0.00 0.07 0.00 0.07 +farfadet farfadet nom m s 0.45 0.41 0.31 0.14 +farfadets farfadet nom m p 0.45 0.41 0.14 0.27 +farfelu farfelu adj m s 1.77 1.28 0.93 0.61 +farfelue farfelu adj f s 1.77 1.28 0.35 0.20 +farfelues farfelu adj f p 1.77 1.28 0.18 0.14 +farfelus farfelu adj m p 1.77 1.28 0.32 0.34 +farfouilla farfouiller ver 1.17 4.12 0.00 0.54 ind:pas:3s; +farfouillais farfouiller ver 1.17 4.12 0.05 0.07 ind:imp:1s;ind:imp:2s; +farfouillait farfouiller ver 1.17 4.12 0.00 0.47 ind:imp:3s; +farfouillant farfouiller ver 1.17 4.12 0.02 0.14 par:pre; +farfouille farfouiller ver 1.17 4.12 0.34 0.68 ind:pre:1s;ind:pre:3s; +farfouillent farfouiller ver 1.17 4.12 0.00 0.07 ind:pre:3p; +farfouiller farfouiller ver 1.17 4.12 0.42 1.28 inf; +farfouillerait farfouiller ver 1.17 4.12 0.00 0.07 cnd:pre:3s; +farfouilles farfouiller ver 1.17 4.12 0.04 0.20 ind:pre:2s; +farfouilleurs farfouilleur adj m p 0.00 0.07 0.00 0.07 +farfouillez farfouiller ver 1.17 4.12 0.14 0.14 ind:pre:2p; +farfouillé farfouiller ver m s 1.17 4.12 0.15 0.47 par:pas; +faribole faribole nom f s 0.23 1.49 0.00 0.27 +fariboler fariboler ver 0.00 0.07 0.00 0.07 inf; +fariboles faribole nom f p 0.23 1.49 0.23 1.22 +farigoule farigoule nom f s 0.00 0.07 0.00 0.07 +farine farine nom f s 7.95 13.72 7.93 13.51 +farines farine nom f p 7.95 13.72 0.02 0.20 +farineuse farineux adj f s 0.03 1.08 0.00 0.41 +farineuses farineux adj f p 0.03 1.08 0.03 0.14 +farineux farineux adj m s 0.03 1.08 0.00 0.54 +farinée fariner ver f s 0.00 0.14 0.00 0.07 par:pas; +farinés fariner ver m p 0.00 0.14 0.00 0.07 par:pas; +farniente farniente nom m s 0.36 0.47 0.36 0.47 +faro faro nom m s 0.16 0.07 0.16 0.07 +farouche farouche adj s 2.39 15.20 1.90 11.62 +farouchement farouchement adv 0.26 4.05 0.26 4.05 +farouches farouche adj p 2.39 15.20 0.49 3.58 +farsi farsi nom m s 0.39 0.00 0.39 0.00 +fart fart nom m s 0.42 0.00 0.42 0.00 +farter farter ver 0.02 0.00 0.02 0.00 inf; +fascia fascia nom m s 0.07 0.00 0.07 0.00 +fascicule fascicule nom m s 0.02 0.95 0.01 0.34 +fascicules fascicule nom m p 0.02 0.95 0.01 0.61 +fascina fasciner ver 9.34 28.78 0.10 0.68 ind:pas:3s; +fascinaient fasciner ver 9.34 28.78 0.30 1.42 ind:imp:3p; +fascinais fasciner ver 9.34 28.78 0.00 0.07 ind:imp:1s; +fascinait fasciner ver 9.34 28.78 0.62 4.93 ind:imp:3s; +fascinant fascinant adj m s 11.64 5.54 7.78 2.91 +fascinante fascinant adj f s 11.64 5.54 2.47 1.42 +fascinantes fascinant adj f p 11.64 5.54 0.66 0.54 +fascinants fascinant adj m p 11.64 5.54 0.74 0.68 +fascination fascination nom f s 2.67 7.50 2.66 7.30 +fascinations fascination nom f p 2.67 7.50 0.01 0.20 +fascine fasciner ver 9.34 28.78 2.24 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fascinent fasciner ver 9.34 28.78 0.44 0.95 ind:pre:3p; +fasciner fasciner ver 9.34 28.78 0.35 0.88 inf; +fascinerait fasciner ver 9.34 28.78 0.01 0.07 cnd:pre:3s; +fascines fasciner ver 9.34 28.78 0.04 0.00 ind:pre:2s; +fascinez fasciner ver 9.34 28.78 0.04 0.00 ind:pre:2p; +fascinèrent fasciner ver 9.34 28.78 0.00 0.20 ind:pas:3p; +fasciné fasciner ver m s 9.34 28.78 2.67 9.46 par:pas; +fascinée fasciner ver f s 9.34 28.78 0.60 3.72 par:pas; +fascinées fasciner ver f p 9.34 28.78 0.05 0.14 par:pas; +fascinés fasciner ver m p 9.34 28.78 0.58 2.77 par:pas; +fascisme fascisme nom m s 1.94 6.76 1.94 6.76 +fasciste fasciste adj s 6.93 4.93 3.89 3.58 +fascistes fasciste adj p 6.93 4.93 3.04 1.35 +fascisée fasciser ver f s 0.00 0.07 0.00 0.07 par:pas; +faseyaient faseyer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +faseyait faseyer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +fashion fashion nom f s 0.28 0.00 0.28 0.00 +fashionable fashionable adj m s 0.00 0.20 0.00 0.20 +fasse faire ver 8813.53 5328.99 93.83 60.88 sub:pre:1s;sub:pre:3s; +fassent faire ver 8813.53 5328.99 9.05 7.30 sub:pre:3p; +fasses faire ver 8813.53 5328.99 20.20 2.84 sub:pre:2s; +fassiez faire ver 8813.53 5328.99 8.46 2.64 sub:pre:2p; +fassions faire ver 8813.53 5328.99 1.63 2.09 sub:pre:1p; +fast_food fast_food nom m s 2.34 0.47 1.56 0.34 +fast_food fast_food nom m p 2.34 0.47 0.34 0.07 +fast_food fast_food nom m s 2.34 0.47 0.43 0.07 +faste faste adj s 0.57 1.28 0.53 0.61 +fastes faste adj p 0.57 1.28 0.04 0.68 +fastidieuse fastidieux adj f s 1.39 4.12 0.03 1.01 +fastidieusement fastidieusement adv 0.00 0.07 0.00 0.07 +fastidieuses fastidieux adj f p 1.39 4.12 0.26 0.74 +fastidieux fastidieux adj m 1.39 4.12 1.10 2.36 +fastoche fastoche adj m s 1.31 0.41 1.31 0.41 +fastueuse fastueux adj f s 0.38 3.38 0.22 1.08 +fastueusement fastueusement adv 0.00 0.34 0.00 0.34 +fastueuses fastueux adj f p 0.38 3.38 0.02 0.41 +fastueux fastueux adj m 0.38 3.38 0.14 1.89 +fat fat nom m s 2.29 0.34 2.21 0.20 +fatal fatal adj m s 11.69 23.38 5.37 12.30 +fatale fatal adj f s 11.69 23.38 5.37 8.92 +fatalement fatalement adv 0.44 5.07 0.44 5.07 +fatales fatal adj f p 11.69 23.38 0.82 1.49 +fatalise fataliser ver 0.06 0.00 0.04 0.00 imp:pre:2s; +fataliser fataliser ver 0.06 0.00 0.01 0.00 inf; +fatalisme fatalisme nom m s 0.19 1.76 0.19 1.76 +fataliste fataliste adj s 0.06 1.76 0.06 1.69 +fatalistes fataliste adj m p 0.06 1.76 0.00 0.07 +fatalisé fataliser ver m s 0.06 0.00 0.01 0.00 par:pas; +fatalité fatalité nom f s 2.77 8.85 2.66 8.51 +fatalités fatalité nom f p 2.77 8.85 0.11 0.34 +fatals fatal adj m p 11.69 23.38 0.13 0.68 +fate fat adj f s 1.81 1.08 0.13 0.07 +façade façade nom f s 4.60 46.76 4.19 29.66 +façades façade nom f p 4.60 46.76 0.41 17.09 +fathma fathma nom f s 0.10 0.07 0.10 0.07 +fathom fathom nom m s 0.00 0.07 0.00 0.07 +façon façon nom f s 230.48 277.30 212.60 259.26 +façonna façonner ver 1.95 7.16 0.14 0.20 ind:pas:3s; +façonnable façonnable adj m s 0.02 0.00 0.02 0.00 +façonnaient façonner ver 1.95 7.16 0.00 0.20 ind:imp:3p; +façonnait façonner ver 1.95 7.16 0.00 0.47 ind:imp:3s; +façonnant façonner ver 1.95 7.16 0.02 0.27 par:pre; +façonne façonner ver 1.95 7.16 0.17 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +façonnent façonner ver 1.95 7.16 0.03 0.00 ind:pre:3p; +façonner façonner ver 1.95 7.16 0.46 1.22 inf; +façonnera façonner ver 1.95 7.16 0.02 0.00 ind:fut:3s; +façonnerai façonner ver 1.95 7.16 0.12 0.00 ind:fut:1s; +façonnerais façonner ver 1.95 7.16 0.00 0.07 cnd:pre:1s; +façonnerez façonner ver 1.95 7.16 0.03 0.00 ind:fut:2p; +façonneront façonner ver 1.95 7.16 0.00 0.07 ind:fut:3p; +façonnière façonnier nom f s 0.00 0.07 0.00 0.07 +façonné façonner ver m s 1.95 7.16 0.61 1.76 par:pas; +façonnée façonner ver f s 1.95 7.16 0.23 1.08 par:pas; +façonnées façonner ver f p 1.95 7.16 0.04 0.34 par:pas; +façonnés façonner ver m p 1.95 7.16 0.07 0.88 par:pas; +façons façon nom f p 230.48 277.30 17.89 18.04 +fatidique fatidique adj s 0.42 4.05 0.41 3.51 +fatidiques fatidique adj p 0.42 4.05 0.01 0.54 +fatigant fatigant adj m s 4.84 7.84 3.81 5.20 +fatigante fatigant adj f s 4.84 7.84 0.67 1.62 +fatigantes fatigant adj f p 4.84 7.84 0.31 0.27 +fatigants fatigant adj m p 4.84 7.84 0.04 0.74 +fatigua fatiguer ver 78.25 49.05 0.02 0.41 ind:pas:3s; +fatiguai fatiguer ver 78.25 49.05 0.01 0.14 ind:pas:1s; +fatiguaient fatiguer ver 78.25 49.05 0.12 0.54 ind:imp:3p; +fatiguais fatiguer ver 78.25 49.05 0.16 0.41 ind:imp:1s;ind:imp:2s; +fatiguait fatiguer ver 78.25 49.05 0.30 2.36 ind:imp:3s; +fatiguant fatiguer ver 78.25 49.05 1.43 0.14 par:pre; +fatigue fatigue nom f s 9.25 69.46 8.70 65.81 +fatiguent fatiguer ver 78.25 49.05 1.11 1.55 ind:pre:3p; +fatiguer fatiguer ver 78.25 49.05 2.89 3.31 inf; +fatiguera fatiguer ver 78.25 49.05 0.25 0.14 ind:fut:3s; +fatiguerai fatiguer ver 78.25 49.05 0.02 0.07 ind:fut:1s; +fatigueraient fatiguer ver 78.25 49.05 0.00 0.14 cnd:pre:3p; +fatiguerais fatiguer ver 78.25 49.05 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +fatiguerait fatiguer ver 78.25 49.05 0.06 0.61 cnd:pre:3s; +fatigueras fatiguer ver 78.25 49.05 0.10 0.00 ind:fut:2s; +fatigues fatiguer ver 78.25 49.05 3.44 0.54 ind:pre:2s; +fatiguez fatiguer ver 78.25 49.05 2.49 1.08 imp:pre:2p;ind:pre:2p; +fatiguons fatiguer ver 78.25 49.05 0.01 0.00 ind:pre:1p; +fatiguât fatiguer ver 78.25 49.05 0.00 0.14 sub:imp:3s; +fatiguèrent fatiguer ver 78.25 49.05 0.00 0.14 ind:pas:3p; +fatigué fatiguer ver m s 78.25 49.05 31.43 16.01 par:pas;par:pas;par:pas; +fatiguée fatiguer ver f s 78.25 49.05 20.46 9.73 par:pas; +fatiguées fatiguer ver f p 78.25 49.05 1.27 0.95 par:pas; +fatigués fatiguer ver m p 78.25 49.05 4.26 2.97 par:pas; +fatma fatma nom f s 0.16 0.95 0.14 0.54 +fatmas fatma nom f p 0.16 0.95 0.03 0.41 +fatras fatras nom m 0.34 2.91 0.34 2.91 +fats fat adj m p 1.81 1.08 0.33 0.07 +fatuité fatuité nom f s 0.23 0.95 0.23 0.95 +fatum fatum nom m s 0.00 0.47 0.00 0.47 +fau fau nom m s 0.14 0.00 0.14 0.00 +faubert faubert nom m s 0.02 0.07 0.02 0.07 +faubourg faubourg nom m s 1.69 22.09 0.58 14.73 +faubourgs faubourg nom m p 1.69 22.09 1.11 7.36 +faubourien faubourien adj m s 0.00 1.15 0.00 0.54 +faubourienne faubourien adj f s 0.00 1.15 0.00 0.27 +faubouriennes faubourien adj f p 0.00 1.15 0.00 0.14 +faubouriens faubourien adj m p 0.00 1.15 0.00 0.20 +faucardé faucarder ver m s 0.00 0.27 0.00 0.07 par:pas; +faucardée faucarder ver f s 0.00 0.27 0.00 0.07 par:pas; +faucardées faucarder ver f p 0.00 0.27 0.00 0.07 par:pas; +faucardés faucarder ver m p 0.00 0.27 0.00 0.07 par:pas; +faucha faucher ver 14.76 13.51 0.00 0.34 ind:pas:3s; +fauchage fauchage nom m s 0.04 0.34 0.04 0.34 +fauchaient faucher ver 14.76 13.51 0.01 0.34 ind:imp:3p; +fauchais faucher ver 14.76 13.51 0.02 0.14 ind:imp:1s; +fauchaison fauchaison nom f s 0.10 0.20 0.10 0.20 +fauchait faucher ver 14.76 13.51 0.01 0.61 ind:imp:3s; +fauchant faucher ver 14.76 13.51 0.14 0.74 par:pre; +fauchard fauchard nom m s 0.00 0.14 0.00 0.14 +fauche faucher ver 14.76 13.51 0.51 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fauchent faucher ver 14.76 13.51 0.16 0.34 ind:pre:3p; +faucher faucher ver 14.76 13.51 2.54 2.77 inf; +fauchera faucher ver 14.76 13.51 0.03 0.00 ind:fut:3s; +faucherait faucher ver 14.76 13.51 0.02 0.07 cnd:pre:3s; +faucheras faucher ver 14.76 13.51 0.04 0.00 ind:fut:2s; +faucheront faucher ver 14.76 13.51 0.01 0.00 ind:fut:3p; +fauches faucher ver 14.76 13.51 0.41 0.14 ind:pre:2s; +faucheur faucheur nom m s 2.06 0.81 0.42 0.14 +faucheurs faucheur nom m p 2.06 0.81 0.52 0.07 +faucheuse faucheur nom f s 2.06 0.81 1.12 0.54 +faucheuses faucheuse nom f p 0.01 0.00 0.01 0.00 +faucheux faucheux nom m 0.00 0.68 0.00 0.68 +fauchez faucher ver 14.76 13.51 0.27 0.07 imp:pre:2p;ind:pre:2p; +fauchon fauchon nom m s 0.18 0.20 0.18 0.20 +fauché faucher ver m s 14.76 13.51 6.42 4.05 par:pas; +fauchée faucher ver f s 14.76 13.51 2.18 0.95 par:pas; +fauchées faucher ver f p 14.76 13.51 0.30 0.14 par:pas; +fauchés faucher ver m p 14.76 13.51 1.69 1.08 par:pas; +faucille faucille nom f s 0.53 2.57 0.51 2.23 +faucilles faucille nom f p 0.53 2.57 0.03 0.34 +faucillon faucillon nom m s 0.00 0.20 0.00 0.20 +faucon faucon nom m s 5.93 3.51 4.07 2.36 +fauconneau fauconneau nom m s 0.22 0.00 0.22 0.00 +fauconnerie fauconnerie nom f s 0.01 0.07 0.01 0.07 +fauconnier fauconnier nom m s 0.25 0.41 0.15 0.34 +fauconniers fauconnier nom m p 0.25 0.41 0.10 0.07 +faucons faucon nom m p 5.93 3.51 1.86 1.15 +faudra falloir ver_sup 1653.77 1250.41 85.73 61.22 ind:fut:3s; +faudrait falloir ver_sup 1653.77 1250.41 74.08 111.69 cnd:pre:3s; +faufil faufil nom m s 0.01 0.07 0.01 0.07 +faufila faufiler ver 4.41 17.30 0.03 1.35 ind:pas:3s; +faufilai faufiler ver 4.41 17.30 0.01 0.20 ind:pas:1s; +faufilaient faufiler ver 4.41 17.30 0.02 0.54 ind:imp:3p; +faufilais faufiler ver 4.41 17.30 0.08 0.00 ind:imp:1s;ind:imp:2s; +faufilait faufiler ver 4.41 17.30 0.04 2.43 ind:imp:3s; +faufilant faufiler ver 4.41 17.30 0.02 2.09 par:pre; +faufile faufiler ver 4.41 17.30 1.24 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +faufilent faufiler ver 4.41 17.30 0.16 0.88 ind:pre:3p; +faufiler faufiler ver 4.41 17.30 1.86 3.65 inf; +faufilera faufiler ver 4.41 17.30 0.14 0.00 ind:fut:3s; +faufilerai faufiler ver 4.41 17.30 0.02 0.00 ind:fut:1s; +faufilerait faufiler ver 4.41 17.30 0.00 0.07 cnd:pre:3s; +faufileras faufiler ver 4.41 17.30 0.04 0.00 ind:fut:2s; +faufileront faufiler ver 4.41 17.30 0.01 0.00 ind:fut:3p; +faufilez faufiler ver 4.41 17.30 0.05 0.00 imp:pre:2p;ind:pre:2p; +faufilâmes faufiler ver 4.41 17.30 0.00 0.07 ind:pas:1p; +faufilons faufiler ver 4.41 17.30 0.05 0.07 imp:pre:1p;ind:pre:1p; +faufilât faufiler ver 4.41 17.30 0.00 0.07 sub:imp:3s; +faufilèrent faufiler ver 4.41 17.30 0.00 0.20 ind:pas:3p; +faufilé faufiler ver m s 4.41 17.30 0.44 1.08 par:pas; +faufilée faufiler ver f s 4.41 17.30 0.12 0.68 par:pas; +faufilées faufiler ver f p 4.41 17.30 0.00 0.07 par:pas; +faufilés faufiler ver m p 4.41 17.30 0.07 0.27 par:pas; +faune faune nom s 1.48 6.49 1.47 5.95 +faunes faune nom p 1.48 6.49 0.01 0.54 +faunesque faunesque adj f s 0.00 0.14 0.00 0.07 +faunesques faunesque adj p 0.00 0.14 0.00 0.07 +faunesse faunesse nom f s 0.00 0.07 0.00 0.07 +faussa fausser ver 3.51 8.45 0.00 0.27 ind:pas:3s; +faussaient fausser ver 3.51 8.45 0.01 0.00 ind:imp:3p; +faussaire faussaire nom m s 1.22 1.35 0.89 0.95 +faussaires faussaire nom m p 1.22 1.35 0.33 0.41 +faussait fausser ver 3.51 8.45 0.02 0.34 ind:imp:3s; +faussant fausser ver 3.51 8.45 0.00 0.14 par:pre; +fausse_couche fausse_couche nom f s 0.07 0.20 0.07 0.20 +fausse faux adj f s 122.23 109.59 21.98 27.09 +faussement faussement adv 0.66 7.91 0.66 7.91 +faussent fausser ver 3.51 8.45 0.02 0.07 ind:pre:3p; +fausser fausser ver 3.51 8.45 0.34 1.89 inf; +fausseront fausser ver 3.51 8.45 0.00 0.14 ind:fut:3p; +fausses faux adj f p 122.23 109.59 9.26 15.95 +fausset fausset nom m s 0.05 1.55 0.04 1.55 +faussets fausset nom m p 0.05 1.55 0.01 0.00 +fausseté fausseté nom f s 0.75 1.08 0.75 1.08 +faussez fausser ver 3.51 8.45 0.03 0.07 ind:pre:2p; +faussions fausser ver 3.51 8.45 0.01 0.00 ind:imp:1p; +faussât fausser ver 3.51 8.45 0.00 0.07 sub:imp:3s; +faussé fausser ver m s 3.51 8.45 1.19 1.76 par:pas; +faussée fausser ver f s 3.51 8.45 0.23 0.68 par:pas; +faussées fausser ver f p 3.51 8.45 0.06 0.41 par:pas; +faussés fausser ver m p 3.51 8.45 0.04 0.07 par:pas; +faustien faustien adj m s 0.15 0.07 0.14 0.07 +faustienne faustien adj f s 0.15 0.07 0.01 0.00 +faut falloir ver_sup 1653.77 1250.41 1318.11 653.92 ind:pre:3s; +faute faute nom f s 169.26 95.20 163.19 81.08 +fauter fauter ver 1.42 1.76 0.00 0.27 inf; +fautes faute nom f p 169.26 95.20 6.07 14.12 +fauteuil_club fauteuil_club nom m s 0.00 0.27 0.00 0.27 +fauteuil fauteuil nom m s 19.27 102.03 17.16 76.69 +fauteuils_club fauteuils_club nom m p 0.00 0.07 0.00 0.07 +fauteuils fauteuil nom m p 19.27 102.03 2.10 25.34 +fauteur fauteur nom m s 0.88 1.82 0.31 0.88 +fauteurs fauteur nom m p 0.88 1.82 0.52 0.95 +fauteuse fauteur nom f s 0.88 1.82 0.03 0.00 +fautif fautif adj m s 2.96 2.09 1.50 1.08 +fautifs fautif adj m p 2.96 2.09 0.19 0.20 +fautive fautif adj f s 2.96 2.09 1.12 0.74 +fautives fautif adj f p 2.96 2.09 0.15 0.07 +fautrice fauteur nom f s 0.88 1.82 0.02 0.00 +fauté fauter ver m s 1.42 1.76 1.02 0.68 par:pas; +fauve fauve nom m s 3.61 13.38 1.26 7.77 +fauverie fauverie nom f s 0.00 0.14 0.00 0.14 +fauves fauve nom m p 3.61 13.38 2.35 5.61 +fauvette fauvette nom f s 0.60 2.23 0.60 1.62 +fauvettes fauvette nom f p 0.60 2.23 0.00 0.61 +fauvisme fauvisme nom m s 0.01 0.00 0.01 0.00 +faux_bond faux_bond nom m 0.01 0.07 0.01 0.07 +faux_bourdon faux_bourdon nom m s 0.02 0.07 0.02 0.07 +faux_col faux_col nom m s 0.02 0.34 0.02 0.34 +faux_cul faux_cul nom m s 0.41 0.07 0.41 0.07 +faux_filet faux_filet nom m s 0.04 0.34 0.04 0.34 +faux_frère faux_frère adj m s 0.01 0.00 0.01 0.00 +faux_fuyant faux_fuyant nom m s 0.22 1.22 0.02 0.47 +faux_fuyant faux_fuyant nom m p 0.22 1.22 0.20 0.74 +faux_monnayeur faux_monnayeur nom m s 0.26 0.61 0.01 0.14 +faux_monnayeur faux_monnayeur nom m p 0.26 0.61 0.25 0.47 +faux_pas faux_pas nom m 0.38 0.14 0.38 0.14 +faux_pont faux_pont nom m s 0.01 0.00 0.01 0.00 +faux_saunier faux_saunier nom m p 0.00 0.07 0.00 0.07 +faux_semblant faux_semblant nom m s 0.46 1.49 0.37 0.74 +faux_semblant faux_semblant nom m p 0.46 1.49 0.09 0.74 +faux faux adj m 122.23 109.59 90.99 66.55 +favela favela nom f s 1.62 0.07 1.25 0.00 +favelas favela nom f p 1.62 0.07 0.36 0.07 +faveur faveur nom f s 36.65 31.62 31.09 27.64 +faveurs faveur nom f p 36.65 31.62 5.56 3.99 +favorable favorable adj s 5.38 16.62 4.53 11.28 +favorablement favorablement adv 0.47 1.55 0.47 1.55 +favorables favorable adj p 5.38 16.62 0.85 5.34 +favori favori adj m s 8.79 13.99 5.19 5.81 +favoris favori nom m p 3.22 4.19 1.28 2.77 +favorisa favoriser ver 3.26 10.54 0.01 0.14 ind:pas:3s; +favorisaient favoriser ver 3.26 10.54 0.01 0.34 ind:imp:3p; +favorisait favoriser ver 3.26 10.54 0.05 2.03 ind:imp:3s; +favorisant favoriser ver 3.26 10.54 0.06 0.27 par:pre; +favorise favoriser ver 3.26 10.54 1.40 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +favorisent favoriser ver 3.26 10.54 0.51 0.61 ind:pre:3p; +favoriser favoriser ver 3.26 10.54 0.63 2.23 inf; +favorisera favoriser ver 3.26 10.54 0.03 0.07 ind:fut:3s; +favoriserai favoriser ver 3.26 10.54 0.01 0.00 ind:fut:1s; +favoriseraient favoriser ver 3.26 10.54 0.00 0.07 cnd:pre:3p; +favoriserait favoriser ver 3.26 10.54 0.07 0.07 cnd:pre:3s; +favorisez favoriser ver 3.26 10.54 0.03 0.00 ind:pre:2p; +favorisât favoriser ver 3.26 10.54 0.00 0.20 sub:imp:3s; +favorisèrent favoriser ver 3.26 10.54 0.00 0.07 ind:pas:3p; +favorisé favoriser ver m s 3.26 10.54 0.25 1.69 par:pas; +favorisée favoriser ver f s 3.26 10.54 0.05 0.54 par:pas; +favorisées favoriser ver f p 3.26 10.54 0.00 0.34 par:pas; +favorisés favoriser ver m p 3.26 10.54 0.14 0.68 par:pas; +favorite favori adj f s 8.79 13.99 1.92 3.45 +favorites favori adj f p 8.79 13.99 0.51 1.55 +favoritisme favoritisme nom m s 0.47 0.34 0.47 0.34 +fax fax nom m 5.59 0.14 5.59 0.14 +faxe faxer ver 2.58 0.07 0.45 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +faxer faxer ver 2.58 0.07 0.65 0.07 inf; +faxera faxer ver 2.58 0.07 0.04 0.00 ind:fut:3s; +faxerai faxer ver 2.58 0.07 0.09 0.00 ind:fut:1s; +faxes faxer ver 2.58 0.07 0.27 0.00 ind:pre:2s; +faxez faxer ver 2.58 0.07 0.27 0.00 imp:pre:2p;ind:pre:2p; +faxons faxer ver 2.58 0.07 0.01 0.00 imp:pre:1p; +faxé faxer ver m s 2.58 0.07 0.75 0.00 par:pas; +faxés faxer ver m p 2.58 0.07 0.05 0.00 par:pas; +fayard fayard nom m s 0.00 0.27 0.00 0.20 +fayards fayard nom m p 0.00 0.27 0.00 0.07 +fayot fayot adj m s 0.25 0.27 0.25 0.14 +fayotage fayotage nom m s 0.03 0.07 0.03 0.07 +fayotaient fayoter ver 0.09 0.61 0.00 0.07 ind:imp:3p; +fayotais fayoter ver 0.09 0.61 0.00 0.14 ind:imp:1s; +fayotait fayoter ver 0.09 0.61 0.00 0.07 ind:imp:3s; +fayote fayoter ver 0.09 0.61 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fayoter fayoter ver 0.09 0.61 0.01 0.20 inf; +fayots fayot nom m p 0.42 1.28 0.32 1.08 +fayotte fayotter ver 0.25 0.00 0.25 0.00 ind:pre:3s; +fayotée fayoter ver f s 0.09 0.61 0.00 0.07 par:pas; +fazenda fazenda nom f s 0.35 0.00 0.35 0.00 +fedayin fedayin nom m s 0.01 0.00 0.01 0.00 +feed_back feed_back nom m 0.04 0.00 0.04 0.00 +feedback feedback nom m s 0.10 0.07 0.10 0.07 +feeder feeder nom m s 0.01 0.00 0.01 0.00 +feeling feeling nom m s 1.53 0.54 1.30 0.54 +feelings feeling nom m p 1.53 0.54 0.23 0.00 +feignîmes feindre ver 5.92 21.22 0.00 0.14 ind:pas:1p; +feignaient feindre ver 5.92 21.22 0.11 0.61 ind:imp:3p; +feignais feindre ver 5.92 21.22 0.18 0.74 ind:imp:1s;ind:imp:2s; +feignait feindre ver 5.92 21.22 0.13 2.77 ind:imp:3s; +feignant feignant adj m s 0.98 1.35 0.71 1.01 +feignante feignant nom f s 1.51 3.11 0.28 0.00 +feignantes feignant nom f p 1.51 3.11 0.00 0.07 +feignants feignant nom m p 1.51 3.11 0.57 1.35 +feignasse feignasse nom f s 0.72 0.20 0.52 0.14 +feignasses feignasse nom f p 0.72 0.20 0.21 0.07 +feigne feindre ver 5.92 21.22 0.00 0.07 sub:pre:1s; +feignent feindre ver 5.92 21.22 0.13 0.61 ind:pre:3p; +feignez feindre ver 5.92 21.22 0.52 0.00 imp:pre:2p;ind:pre:2p; +feigniez feindre ver 5.92 21.22 0.10 0.00 ind:imp:2p; +feignirent feindre ver 5.92 21.22 0.00 0.20 ind:pas:3p; +feignis feindre ver 5.92 21.22 0.00 0.47 ind:pas:1s; +feignit feindre ver 5.92 21.22 0.10 1.62 ind:pas:3s; +feignons feindre ver 5.92 21.22 0.07 0.34 imp:pre:1p;ind:pre:1p; +feindra feindre ver 5.92 21.22 0.21 0.07 ind:fut:3s; +feindrai feindre ver 5.92 21.22 0.30 0.00 ind:fut:1s; +feindrait feindre ver 5.92 21.22 0.01 0.14 cnd:pre:3s; +feindre feindre ver 5.92 21.22 1.23 4.39 inf; +feins feindre ver 5.92 21.22 0.81 1.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +feint feindre ver m s 5.92 21.22 1.67 4.12 ind:pre:3s;par:pas; +feintait feinter ver 1.47 1.89 0.00 0.07 ind:imp:3s; +feintant feinter ver 1.47 1.89 0.00 0.14 par:pre; +feinte feinte nom f s 1.04 2.36 0.86 1.15 +feinter feinter ver 1.47 1.89 0.27 0.68 inf; +feinterez feinter ver 1.47 1.89 0.01 0.00 ind:fut:2p; +feintes feinte nom f p 1.04 2.36 0.18 1.22 +feinteur feinteur nom m s 0.02 0.00 0.02 0.00 +feintise feintise nom f s 0.00 0.07 0.00 0.07 +feints feint adj m p 1.00 5.61 0.02 0.00 +feinté feinter ver m s 1.47 1.89 0.79 0.07 par:pas; +feintés feinter ver m p 1.47 1.89 0.03 0.20 par:pas; +feld_maréchal feld_maréchal nom m s 0.32 0.27 0.32 0.27 +feldgrau feldgrau nom m 0.00 0.47 0.00 0.47 +feldspath feldspath nom m s 0.03 0.14 0.03 0.14 +feldwebel feldwebel nom m s 0.00 1.42 0.00 1.28 +feldwebels feldwebel nom m p 0.00 1.42 0.00 0.14 +fellaga fellaga nom m s 0.00 0.81 0.00 0.74 +fellagas fellaga nom m p 0.00 0.81 0.00 0.07 +fellagha fellagha nom m s 0.00 0.34 0.00 0.20 +fellaghas fellagha nom m p 0.00 0.34 0.00 0.14 +fellah fellah nom m s 0.14 0.27 0.14 0.20 +fellahs fellah nom m p 0.14 0.27 0.00 0.07 +fellation fellation nom f s 0.98 0.81 0.88 0.74 +fellationne fellationner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +fellations fellation nom f p 0.98 0.81 0.10 0.07 +fellinien fellinien nom m s 0.00 0.07 0.00 0.07 +fellinienne fellinien adj f s 0.10 0.00 0.10 0.00 +felouque felouque nom f s 0.01 1.49 0.01 1.01 +felouques felouque nom f p 0.01 1.49 0.00 0.47 +femelle femelle nom f s 9.38 12.64 6.84 7.84 +femelles femelle nom f p 9.38 12.64 2.53 4.80 +femme_enfant femme_enfant nom f s 0.35 0.27 0.35 0.27 +femme_fleur femme_fleur nom f s 0.00 0.07 0.00 0.07 +femme_objet femme_objet nom f s 0.03 0.07 0.03 0.07 +femme_refuge femme_refuge nom f s 0.00 0.07 0.00 0.07 +femme_robot femme_robot nom f s 0.07 0.00 0.07 0.00 +femme femme nom f s 1049.32 995.74 806.57 680.20 +femmelette femmelette nom f s 1.34 0.47 1.10 0.47 +femmelettes femmelette nom f p 1.34 0.47 0.24 0.00 +femmes femme nom f p 1049.32 995.74 242.75 315.54 +fenaison fenaison nom f s 0.00 0.34 0.00 0.27 +fenaisons fenaison nom f p 0.00 0.34 0.00 0.07 +fend fendre ver 7.76 28.58 1.20 3.58 ind:pre:3s; +fendaient fendre ver 7.76 28.58 0.01 0.88 ind:imp:3p; +fendais fendre ver 7.76 28.58 0.01 0.27 ind:imp:1s; +fendait fendre ver 7.76 28.58 0.26 3.24 ind:imp:3s; +fendant fendre ver 7.76 28.58 0.03 1.96 par:pre; +fendants fendant adj m p 0.01 0.34 0.01 0.00 +fendard fendard adj m s 0.06 0.07 0.06 0.07 +fende fendre ver 7.76 28.58 0.04 0.14 sub:pre:1s;sub:pre:3s; +fendent fendre ver 7.76 28.58 0.15 0.68 ind:pre:3p; +fendeur fendeur nom m s 0.00 0.34 0.00 0.14 +fendeurs fendeur nom m p 0.00 0.34 0.00 0.20 +fendez fendre ver 7.76 28.58 0.49 0.00 imp:pre:2p;ind:pre:2p; +fendillaient fendiller ver 0.01 1.76 0.00 0.07 ind:imp:3p; +fendillait fendiller ver 0.01 1.76 0.00 0.41 ind:imp:3s; +fendille fendiller ver 0.01 1.76 0.00 0.41 ind:pre:1s;ind:pre:3s; +fendillement fendillement nom m s 0.00 0.14 0.00 0.07 +fendillements fendillement nom m p 0.00 0.14 0.00 0.07 +fendiller fendiller ver 0.01 1.76 0.00 0.07 inf; +fendillèrent fendiller ver 0.01 1.76 0.00 0.07 ind:pas:3p; +fendillé fendillé adj m s 0.00 0.74 0.00 0.34 +fendillée fendiller ver f s 0.01 1.76 0.01 0.34 par:pas; +fendillées fendillé adj f p 0.00 0.74 0.00 0.20 +fendillés fendiller ver m p 0.01 1.76 0.00 0.14 par:pas; +fendis fendre ver 7.76 28.58 0.00 0.07 ind:pas:1s; +fendissent fendre ver 7.76 28.58 0.00 0.07 sub:imp:3p; +fendit fendre ver 7.76 28.58 0.03 1.89 ind:pas:3s; +fendoir fendoir nom m s 0.11 0.00 0.11 0.00 +fendons fendre ver 7.76 28.58 0.01 0.07 ind:pre:1p; +fendra fendre ver 7.76 28.58 0.07 0.07 ind:fut:3s; +fendrai fendre ver 7.76 28.58 0.16 0.14 ind:fut:1s; +fendraient fendre ver 7.76 28.58 0.00 0.07 cnd:pre:3p; +fendrait fendre ver 7.76 28.58 0.16 0.07 cnd:pre:3s; +fendre fendre ver 7.76 28.58 2.49 6.89 inf; +fends fendre ver 7.76 28.58 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s; +fendu fendre ver m s 7.76 28.58 1.77 4.12 par:pas; +fendue fendu adj f s 0.69 4.46 0.38 1.62 +fendues fendu adj f p 0.69 4.46 0.04 0.68 +fendus fendre ver m p 7.76 28.58 0.14 0.74 par:pas; +fenestrages fenestrage nom m p 0.00 0.07 0.00 0.07 +fenestrelle fenestrelle nom f s 0.14 0.00 0.14 0.00 +fenians fenian nom m p 0.00 0.07 0.00 0.07 +fenil fenil nom m s 0.02 0.41 0.02 0.27 +fenils fenil nom m p 0.02 0.41 0.00 0.14 +fennec fennec nom m s 0.01 0.20 0.01 0.00 +fennecs fennec nom m p 0.01 0.20 0.00 0.20 +fenouil fenouil nom m s 1.14 0.74 1.14 0.74 +fente fente nom f s 3.93 15.61 3.61 10.54 +fentes fente nom f p 3.93 15.61 0.32 5.07 +fenton fenton nom m s 0.43 0.00 0.43 0.00 +fenugrec fenugrec nom m s 0.03 0.00 0.03 0.00 +fenêtre fenêtre nom f s 90.55 280.20 70.20 199.39 +fenêtres fenêtre nom f p 90.55 280.20 20.35 80.81 +fer_blanc fer_blanc nom m s 0.08 2.84 0.08 2.84 +fer fer nom m s 37.08 114.19 33.65 106.28 +fera faire ver 8813.53 5328.99 170.70 59.66 ind:fut:3s; +ferai faire ver 8813.53 5328.99 146.11 31.69 ind:fut:1s; +feraient faire ver 8813.53 5328.99 10.80 13.11 cnd:pre:3p; +ferais faire ver 8813.53 5328.99 110.19 26.96 cnd:pre:1s;cnd:pre:2s; +ferait faire ver 8813.53 5328.99 86.88 77.23 cnd:pre:3s; +feras faire ver 8813.53 5328.99 42.91 13.18 ind:fut:2s; +ferblanterie ferblanterie nom f s 0.00 0.27 0.00 0.27 +ferblantier ferblantier nom m s 0.10 0.34 0.10 0.07 +ferblantiers ferblantier nom m p 0.10 0.34 0.00 0.27 +ferez faire ver 8813.53 5328.99 27.63 10.54 ind:fut:2p; +feria feria nom f s 0.17 0.20 0.02 0.14 +ferias feria nom f p 0.17 0.20 0.15 0.07 +feriez faire ver 8813.53 5328.99 23.97 5.54 cnd:pre:2p; +ferions faire ver 8813.53 5328.99 3.59 2.70 cnd:pre:1p; +ferlage ferlage nom f s 0.10 0.00 0.10 0.00 +ferlez ferler ver 0.03 0.14 0.03 0.00 imp:pre:2p; +ferlée ferler ver f s 0.03 0.14 0.00 0.14 par:pas; +ferma fermer ver 238.65 197.16 0.59 23.99 ind:pas:3s; +fermage fermage nom m s 0.03 0.74 0.02 0.54 +fermages fermage nom m p 0.03 0.74 0.01 0.20 +fermai fermer ver 238.65 197.16 0.06 3.24 ind:pas:1s; +fermaient fermer ver 238.65 197.16 0.29 5.27 ind:imp:3p; +fermais fermer ver 238.65 197.16 0.92 3.18 ind:imp:1s;ind:imp:2s; +fermait fermer ver 238.65 197.16 1.36 16.42 ind:imp:3s; +fermant fermer ver 238.65 197.16 0.88 9.05 par:pre; +ferme fermer ver 238.65 197.16 79.68 28.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fermement fermement adv 2.60 10.07 2.60 10.07 +ferment fermer ver 238.65 197.16 3.65 3.65 ind:pre:3p;sub:pre:3p; +fermentaient fermenter ver 0.14 2.16 0.00 0.14 ind:imp:3p; +fermentais fermenter ver 0.14 2.16 0.00 0.07 ind:imp:1s; +fermentait fermenter ver 0.14 2.16 0.01 0.20 ind:imp:3s; +fermentation fermentation nom f s 0.29 1.28 0.29 0.95 +fermentations fermentation nom f p 0.29 1.28 0.00 0.34 +fermente fermenter ver 0.14 2.16 0.04 0.74 ind:pre:3s; +fermenter fermenter ver 0.14 2.16 0.05 0.54 inf; +ferments ferment nom m p 0.20 1.76 0.14 0.61 +fermentèrent fermenter ver 0.14 2.16 0.00 0.07 ind:pas:3p; +fermenté fermenté adj m s 0.57 1.28 0.44 0.81 +fermentée fermenté adj f s 0.57 1.28 0.11 0.20 +fermentées fermenté adj f p 0.57 1.28 0.00 0.14 +fermentés fermenté adj m p 0.57 1.28 0.02 0.14 +fermer fermer ver 238.65 197.16 48.85 32.97 inf;; +fermera fermer ver 238.65 197.16 1.11 0.34 ind:fut:3s; +fermerai fermer ver 238.65 197.16 2.11 0.61 ind:fut:1s; +fermeraient fermer ver 238.65 197.16 0.05 0.14 cnd:pre:3p; +fermerais fermer ver 238.65 197.16 0.58 0.14 cnd:pre:1s;cnd:pre:2s; +fermerait fermer ver 238.65 197.16 0.18 0.95 cnd:pre:3s; +fermeras fermer ver 238.65 197.16 0.35 0.00 ind:fut:2s; +fermerez fermer ver 238.65 197.16 0.54 0.00 ind:fut:2p; +fermeriez fermer ver 238.65 197.16 0.11 0.00 cnd:pre:2p; +fermerons fermer ver 238.65 197.16 0.10 0.00 ind:fut:1p; +fermeront fermer ver 238.65 197.16 0.55 0.14 ind:fut:3p; +fermes_hôtel fermes_hôtel nom f p 0.00 0.07 0.00 0.07 +fermes fermer ver 238.65 197.16 7.41 1.01 ind:pre:2s;sub:pre:2s; +fermette fermette nom f s 0.11 0.34 0.11 0.34 +fermeté fermeté nom f s 2.12 10.47 2.12 10.47 +fermeture fermeture nom f s 11.54 15.74 11.06 14.86 +fermetures fermeture nom f p 11.54 15.74 0.48 0.88 +fermez fermer ver 238.65 197.16 30.74 1.69 imp:pre:2p;ind:pre:2p; +fermi fermi nom m s 0.01 0.00 0.01 0.00 +fermier fermier nom m s 8.82 12.36 4.54 5.61 +fermiers fermier nom m p 8.82 12.36 3.22 4.05 +fermiez fermer ver 238.65 197.16 0.57 0.20 ind:imp:2p; +fermions fermer ver 238.65 197.16 0.03 0.54 ind:imp:1p; +fermière fermier nom f s 8.82 12.36 1.05 2.23 +fermières fermière nom f p 0.03 0.00 0.03 0.00 +fermium fermium nom m s 0.01 0.00 0.01 0.00 +fermoir fermoir nom m s 0.38 2.09 0.38 1.76 +fermoirs fermoir nom m p 0.38 2.09 0.00 0.34 +fermons fermer ver 238.65 197.16 1.69 0.68 imp:pre:1p;ind:pre:1p; +fermât fermer ver 238.65 197.16 0.00 0.14 sub:imp:3s; +fermèrent fermer ver 238.65 197.16 0.29 1.62 ind:pas:3p; +fermé fermer ver m s 238.65 197.16 34.73 30.54 par:pas; +fermée fermer ver f s 238.65 197.16 13.72 16.15 par:pas; +fermées fermer ver f p 238.65 197.16 3.31 6.42 par:pas; +fermés fermé adj m p 21.46 56.35 7.20 21.08 +ferons faire ver 8813.53 5328.99 21.07 6.96 ind:fut:1p; +feront faire ver 8813.53 5328.99 23.12 11.01 ind:fut:3p; +ferra ferrer ver 1.96 6.96 0.03 0.14 ind:pas:3s; +ferrage ferrage nom m s 0.00 0.47 0.00 0.27 +ferrages ferrage nom m p 0.00 0.47 0.00 0.20 +ferrai ferrer ver 1.96 6.96 0.01 0.00 ind:pas:1s; +ferrailla ferrailler ver 0.17 0.95 0.00 0.07 ind:pas:3s; +ferraillaient ferrailler ver 0.17 0.95 0.00 0.14 ind:imp:3p; +ferraillait ferrailler ver 0.17 0.95 0.00 0.14 ind:imp:3s; +ferraillant ferrailler ver 0.17 0.95 0.14 0.14 par:pre; +ferraillante ferraillant adj f s 0.00 0.47 0.00 0.14 +ferraille ferraille nom f s 4.36 13.72 4.22 10.88 +ferraillement ferraillement nom m s 0.00 0.68 0.00 0.68 +ferrailler ferrailler ver 0.17 0.95 0.01 0.20 inf; +ferrailles ferraille nom f p 4.36 13.72 0.14 2.84 +ferrailleur ferrailleur nom m s 0.53 1.62 0.51 0.68 +ferrailleurs ferrailleur nom m p 0.53 1.62 0.02 0.95 +ferraillé ferrailler ver m s 0.17 0.95 0.00 0.07 par:pas; +ferrais ferrer ver 1.96 6.96 0.17 0.00 ind:imp:1s;ind:imp:2s; +ferrait ferrer ver 1.96 6.96 0.03 0.74 ind:imp:3s; +ferrant ferrer ver 1.96 6.96 0.01 0.20 par:pre; +ferrasse ferrer ver 1.96 6.96 0.14 0.00 sub:imp:1s; +ferre ferrer ver 1.96 6.96 0.03 0.54 ind:pre:1s;ind:pre:3s; +ferrer ferrer ver 1.96 6.96 0.25 2.03 inf; +ferrera ferrer ver 1.96 6.96 0.00 0.07 ind:fut:3s; +ferrerait ferrer ver 1.96 6.96 0.00 0.07 cnd:pre:3s; +ferrets ferret nom m p 0.14 0.20 0.14 0.20 +ferreuse ferreux adj f s 0.16 0.54 0.01 0.00 +ferreux ferreux adj m 0.16 0.54 0.14 0.54 +ferrez ferrer ver 1.96 6.96 0.08 0.00 imp:pre:2p;ind:pre:2p; +ferries ferry nom m p 2.12 0.61 0.14 0.00 +ferriques ferrique adj m p 0.00 0.07 0.00 0.07 +ferrite ferrite nom s 0.03 0.00 0.03 0.00 +ferro ferro nom m s 0.00 0.07 0.00 0.07 +ferrocérium ferrocérium nom m s 0.00 0.07 0.00 0.07 +ferrocyanure ferrocyanure nom m s 0.00 0.07 0.00 0.07 +ferronnerie ferronnerie nom f s 0.13 0.68 0.13 0.34 +ferronneries ferronnerie nom f p 0.13 0.68 0.00 0.34 +ferronnier ferronnier nom m s 0.02 0.68 0.01 0.34 +ferronniers ferronnier nom m p 0.02 0.68 0.00 0.34 +ferronnière ferronnier nom f s 0.02 0.68 0.01 0.00 +ferrons ferrer ver 1.96 6.96 0.02 0.00 ind:pre:1p; +ferroviaire ferroviaire adj s 1.29 1.49 1.22 0.88 +ferroviaires ferroviaire adj p 1.29 1.49 0.07 0.61 +ferré ferrer ver m s 1.96 6.96 0.31 1.08 par:pas; +ferrée ferré adj f s 2.91 6.76 2.27 3.04 +ferrées ferré adj f p 2.91 6.76 0.52 1.82 +ferrugineuse ferrugineux adj f s 0.00 1.15 0.00 0.27 +ferrugineuses ferrugineux adj f p 0.00 1.15 0.00 0.20 +ferrugineux ferrugineux adj m 0.00 1.15 0.00 0.68 +ferrure ferrure nom f s 0.01 1.42 0.01 0.14 +ferrures ferrure nom f p 0.01 1.42 0.00 1.28 +ferrés ferré adj m p 2.91 6.76 0.08 1.35 +ferry_boat ferry_boat nom m s 0.14 0.20 0.14 0.20 +ferry ferry nom m s 2.12 0.61 1.98 0.61 +fers fer nom m p 37.08 114.19 3.42 7.70 +fertile fertile adj s 3.17 3.18 2.72 2.57 +fertiles fertile adj p 3.17 3.18 0.45 0.61 +fertilisable fertilisable adj m s 0.00 0.07 0.00 0.07 +fertilisait fertiliser ver 0.97 0.95 0.01 0.20 ind:imp:3s; +fertilisant fertilisant nom m s 0.07 0.07 0.07 0.07 +fertilisateur fertilisateur adj m s 0.00 0.07 0.00 0.07 +fertilisation fertilisation nom f s 0.07 0.14 0.07 0.14 +fertilise fertiliser ver 0.97 0.95 0.27 0.14 ind:pre:3s; +fertilisent fertiliser ver 0.97 0.95 0.03 0.00 ind:pre:3p; +fertiliser fertiliser ver 0.97 0.95 0.18 0.34 inf; +fertilisera fertiliser ver 0.97 0.95 0.02 0.00 ind:fut:3s; +fertiliserons fertiliser ver 0.97 0.95 0.00 0.07 ind:fut:1p; +fertilisez fertiliser ver 0.97 0.95 0.02 0.00 imp:pre:2p; +fertilisèrent fertiliser ver 0.97 0.95 0.00 0.07 ind:pas:3p; +fertilisé fertiliser ver m s 0.97 0.95 0.19 0.07 par:pas; +fertilisée fertiliser ver f s 0.97 0.95 0.00 0.07 par:pas; +fertilisés fertiliser ver m p 0.97 0.95 0.23 0.00 par:pas; +fertilité fertilité nom f s 1.13 1.01 1.13 1.01 +ferté ferté nom f s 0.00 0.27 0.00 0.27 +fervent fervent adj m s 2.13 4.53 1.22 2.03 +fervente fervent adj f s 2.13 4.53 0.42 1.22 +ferventes fervent adj f p 2.13 4.53 0.12 0.14 +fervents fervent adj m p 2.13 4.53 0.37 1.15 +ferveur ferveur nom f s 1.69 10.88 1.69 10.61 +ferveurs ferveur nom f p 1.69 10.88 0.00 0.27 +fessait fesser ver 1.10 0.74 0.00 0.14 ind:imp:3s; +fesse_mathieu fesse_mathieu nom m s 0.00 0.07 0.00 0.07 +fesse fesse nom f s 36.32 45.14 1.81 6.42 +fesser fesser ver 1.10 0.74 0.26 0.27 inf; +fesserai fesser ver 1.10 0.74 0.02 0.07 ind:fut:1s; +fesserais fesser ver 1.10 0.74 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +fesses fesse nom f p 36.32 45.14 34.52 38.72 +fesseur fesseur nom m s 0.01 0.14 0.01 0.07 +fesseuse fesseur nom f s 0.01 0.14 0.00 0.07 +fessier fessier nom m s 0.33 0.68 0.23 0.54 +fessiers fessier adj m p 0.34 0.27 0.21 0.07 +fessiez fesser ver 1.10 0.74 0.01 0.00 ind:imp:2p; +fessière fessier adj f s 0.34 0.27 0.03 0.07 +fessières fessier adj f p 0.34 0.27 0.00 0.14 +fessé fesser ver m s 1.10 0.74 0.25 0.07 par:pas; +fessu fessu adj m s 0.01 0.81 0.00 0.27 +fessée fessée nom f s 4.44 1.76 4.02 1.15 +fessue fessu adj f s 0.01 0.81 0.01 0.34 +fessées fessée nom f p 4.44 1.76 0.41 0.61 +fessues fessu adj f p 0.01 0.81 0.00 0.20 +fessés fesser ver m p 1.10 0.74 0.01 0.07 par:pas; +festif festif adj m s 0.88 0.34 0.70 0.07 +festin festin nom m s 4.50 5.68 4.05 4.46 +festins festin nom m p 4.50 5.68 0.45 1.22 +festival festival nom m s 7.65 5.27 7.51 4.93 +festivalier festivalier nom m s 0.01 0.07 0.01 0.07 +festivals festival nom m p 7.65 5.27 0.14 0.34 +festive festif adj f s 0.88 0.34 0.17 0.07 +festives festif adj f p 0.88 0.34 0.01 0.20 +festivité festivité nom f s 1.21 1.01 0.02 0.00 +festivités festivité nom f p 1.21 1.01 1.19 1.01 +festoie festoyer ver 1.26 1.01 0.55 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +festoient festoyer ver 1.26 1.01 0.13 0.07 ind:pre:3p; +festoiera festoyer ver 1.26 1.01 0.02 0.00 ind:fut:3s; +festoierons festoyer ver 1.26 1.01 0.02 0.00 ind:fut:1p; +feston feston nom m s 0.17 1.49 0.02 0.14 +festonnaient festonner ver 0.03 1.01 0.00 0.07 ind:imp:3p; +festonnait festonner ver 0.03 1.01 0.00 0.14 ind:imp:3s; +festonne festonner ver 0.03 1.01 0.00 0.07 ind:pre:1s; +festonnements festonnement nom m p 0.00 0.07 0.00 0.07 +festonner festonner ver 0.03 1.01 0.02 0.00 inf; +festonné festonner ver m s 0.03 1.01 0.01 0.07 par:pas; +festonnée festonner ver f s 0.03 1.01 0.00 0.27 par:pas; +festonnées festonner ver f p 0.03 1.01 0.00 0.20 par:pas; +festonnés festonner ver m p 0.03 1.01 0.00 0.20 par:pas; +festons feston nom m p 0.17 1.49 0.14 1.35 +festoya festoyer ver 1.26 1.01 0.00 0.20 ind:pas:3s; +festoyaient festoyer ver 1.26 1.01 0.03 0.14 ind:imp:3p; +festoyant festoyer ver 1.26 1.01 0.03 0.00 par:pre; +festoyer festoyer ver 1.26 1.01 0.34 0.47 inf; +festoyez festoyer ver 1.26 1.01 0.03 0.00 imp:pre:2p; +festoyé festoyer ver m s 1.26 1.01 0.11 0.07 par:pas; +feta feta nom f s 0.09 0.00 0.09 0.00 +fettucine fettucine nom f 0.05 0.00 0.05 0.00 +feu feu nom m s 233.96 236.15 215.87 199.39 +feudataire feudataire nom m s 0.00 0.07 0.00 0.07 +feue feu adj f s 22.07 16.42 0.14 0.34 +feuillage feuillage nom m s 1.68 23.72 1.30 10.47 +feuillages feuillage nom m p 1.68 23.72 0.38 13.24 +feuillaison feuillaison nom f s 0.00 0.14 0.00 0.14 +feuillantines feuillantine nom f p 0.00 0.20 0.00 0.20 +feuille_morte feuille_morte adj f s 0.00 0.07 0.00 0.07 +feuille feuille nom f s 30.10 138.04 13.24 46.35 +feuilles feuille nom f p 30.10 138.04 16.86 91.69 +feuillet feuillet nom m s 0.26 10.00 0.06 2.16 +feuilleta feuilleter ver 2.21 21.49 0.00 2.70 ind:pas:3s; +feuilletage feuilletage nom m s 0.00 0.20 0.00 0.20 +feuilletai feuilleter ver 2.21 21.49 0.02 0.34 ind:pas:1s; +feuilletaient feuilleter ver 2.21 21.49 0.00 0.47 ind:imp:3p; +feuilletais feuilleter ver 2.21 21.49 0.23 0.81 ind:imp:1s;ind:imp:2s; +feuilletait feuilleter ver 2.21 21.49 0.00 2.91 ind:imp:3s; +feuilletant feuilleter ver 2.21 21.49 0.04 3.11 par:pre; +feuilleter feuilleter ver 2.21 21.49 0.65 4.05 inf; +feuilletez feuilleter ver 2.21 21.49 0.00 0.07 ind:pre:2p; +feuilletiez feuilleter ver 2.21 21.49 0.01 0.07 ind:imp:2p; +feuilletions feuilleter ver 2.21 21.49 0.00 0.07 ind:imp:1p; +feuilleton feuilleton nom m s 2.81 6.28 2.06 4.66 +feuilletoniste feuilletoniste nom s 0.00 0.34 0.00 0.34 +feuilletons feuilleton nom m p 2.81 6.28 0.75 1.62 +feuillets feuillet nom m p 0.26 10.00 0.20 7.84 +feuillette feuilleter ver 2.21 21.49 0.41 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +feuillettement feuillettement nom m s 0.00 0.14 0.00 0.14 +feuillettent feuilleter ver 2.21 21.49 0.00 0.14 ind:pre:3p; +feuillettes feuilleter ver 2.21 21.49 0.16 0.00 ind:pre:2s; +feuilletèrent feuilleter ver 2.21 21.49 0.00 0.07 ind:pas:3p; +feuilleté feuilleter ver m s 2.21 21.49 0.65 2.36 par:pas; +feuilletée feuilleté adj f s 0.19 0.61 0.12 0.27 +feuilletées feuilleté adj f p 0.19 0.61 0.01 0.07 +feuilletés feuilleté nom m p 0.79 0.34 0.30 0.14 +feuillu feuillu adj m s 0.18 2.43 0.12 0.47 +feuillée feuillée nom f s 0.14 1.42 0.00 0.41 +feuillue feuillu adj f s 0.18 2.43 0.05 1.08 +feuillées feuillée nom f p 0.14 1.42 0.14 1.01 +feuillues feuillu adj f p 0.18 2.43 0.01 0.47 +feuillure feuillure nom f s 0.03 0.14 0.00 0.07 +feuillures feuillure nom f p 0.03 0.14 0.03 0.07 +feuillus feuillu nom m p 0.10 0.14 0.10 0.00 +feuj feuj nom s 0.04 0.00 0.04 0.00 +feula feuler ver 0.10 0.54 0.00 0.07 ind:pas:3s; +feulait feuler ver 0.10 0.54 0.00 0.07 ind:imp:3s; +feulant feuler ver 0.10 0.54 0.00 0.14 par:pre; +feule feuler ver 0.10 0.54 0.00 0.07 ind:pre:3s; +feulement feulement nom m s 0.00 1.08 0.00 0.81 +feulements feulement nom m p 0.00 1.08 0.00 0.27 +feulent feuler ver 0.10 0.54 0.00 0.07 ind:pre:3p; +feuler feuler ver 0.10 0.54 0.10 0.07 inf; +feulée feuler ver f s 0.10 0.54 0.00 0.07 par:pas; +feurre feurre nom m s 0.00 0.07 0.00 0.07 +feutra feutrer ver 0.19 5.34 0.00 0.07 ind:pas:3s; +feutrage feutrage nom m s 0.00 0.41 0.00 0.34 +feutrages feutrage nom m p 0.00 0.41 0.00 0.07 +feutrait feutrer ver 0.19 5.34 0.00 0.14 ind:imp:3s; +feutrant feutrer ver 0.19 5.34 0.00 0.07 par:pre; +feutre feutre nom m s 1.45 13.99 1.33 13.18 +feutrent feutrer ver 0.19 5.34 0.00 0.14 ind:pre:3p; +feutrer feutrer ver 0.19 5.34 0.00 0.14 inf; +feutres feutrer ver 0.19 5.34 0.14 0.27 sub:pre:2s; +feutrine feutrine nom f s 0.00 0.74 0.00 0.74 +feutré feutré adj m s 0.29 5.74 0.03 1.96 +feutrée feutré adj f s 0.29 5.74 0.21 2.03 +feutrées feutré adj f p 0.29 5.74 0.01 0.54 +feutrés feutré adj m p 0.29 5.74 0.04 1.22 +feux feu nom m p 233.96 236.15 18.10 36.76 +fez fez nom m s 0.42 1.15 0.42 1.15 +fi fi ono 4.92 4.66 4.92 4.66 +fia fier ver 14.26 8.99 0.00 0.14 ind:pas:3s; +fiabilité fiabilité nom f s 0.37 0.34 0.37 0.34 +fiable fiable adj s 6.85 1.28 5.36 1.08 +fiables fiable adj p 6.85 1.28 1.50 0.20 +fiacre fiacre nom m s 1.39 5.20 1.39 4.05 +fiacres fiacre nom m p 1.39 5.20 0.00 1.15 +fiaient fier ver 14.26 8.99 0.03 0.07 ind:imp:3p; +fiais fier ver 14.26 8.99 0.23 0.14 ind:imp:1s;ind:imp:2s; +fiait fier ver 14.26 8.99 0.21 0.34 ind:imp:3s; +fiance fiancer ver 13.30 4.80 0.46 0.20 imp:pre:2s;ind:pre:3s;sub:pre:3s; +fiancent fiancer ver 13.30 4.80 0.03 0.00 ind:pre:3p; +fiancer fiancer ver 13.30 4.80 1.22 0.47 inf; +fiancerais fiancer ver 13.30 4.80 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +fiancerons fiancer ver 13.30 4.80 0.00 0.07 ind:fut:1p; +fiancez fiancer ver 13.30 4.80 0.00 0.07 ind:pre:2p; +fiancèrent fiancer ver 13.30 4.80 0.01 0.07 ind:pas:3p; +fiancé fiancé nom m s 51.51 23.11 21.89 9.73 +fiancée fiancé nom f s 51.51 23.11 27.84 9.93 +fiancées fiancé nom f p 51.51 23.11 0.68 0.88 +fiancés fiancer ver m p 13.30 4.80 4.10 0.74 par:pas; +fiant fier ver 14.26 8.99 0.28 0.81 par:pre; +fiança fiancer ver 13.30 4.80 0.01 0.14 ind:pas:3s; +fiançailles fiançailles nom f p 5.63 6.96 5.63 6.96 +fiançais fiancer ver 13.30 4.80 0.01 0.00 ind:imp:1s; +fiançons fiancer ver 13.30 4.80 0.12 0.00 imp:pre:1p;ind:pre:1p; +fias fier ver 14.26 8.99 0.00 0.81 ind:pas:2s; +fiasco fiasco nom m s 1.96 2.16 1.95 1.89 +fiascos fiasco nom m p 1.96 2.16 0.01 0.27 +fiasque fiasque nom f s 0.04 0.41 0.02 0.27 +fiasques fiasque nom f p 0.04 0.41 0.01 0.14 +fiassent fier ver 14.26 8.99 0.00 0.07 sub:imp:3p; +fiat fiat nom m s 0.02 0.07 0.02 0.07 +fibre fibre nom f s 6.65 7.43 2.67 2.50 +fibres fibre nom f p 6.65 7.43 3.97 4.93 +fibreuse fibreux adj f s 0.17 0.54 0.01 0.27 +fibreuses fibreux adj f p 0.17 0.54 0.00 0.07 +fibreux fibreux adj m 0.17 0.54 0.16 0.20 +fibrillation fibrillation nom f s 0.69 0.00 0.69 0.00 +fibrille fibrille nom f s 0.37 0.61 0.37 0.07 +fibrilles fibrille nom f p 0.37 0.61 0.00 0.54 +fibrilleux fibrilleux adj m s 0.00 0.07 0.00 0.07 +fibrillé fibrillé nom m s 0.01 0.00 0.01 0.00 +fibrine fibrine nom f s 0.01 0.14 0.01 0.14 +fibrinogène fibrinogène nom m s 0.03 0.00 0.03 0.00 +fibrociment fibrociment nom m s 0.00 0.27 0.00 0.27 +fibromateuse fibromateux adj f s 0.00 0.14 0.00 0.14 +fibrome fibrome nom m s 0.06 1.01 0.01 0.95 +fibromes fibrome nom m p 0.06 1.01 0.05 0.07 +fibroscope fibroscope nom m s 0.08 0.00 0.08 0.00 +fibroscopie fibroscopie nom f s 0.05 0.00 0.05 0.00 +fibrose fibrose nom f s 0.28 0.00 0.28 0.00 +fibrotoxine fibrotoxine nom f s 0.00 0.14 0.00 0.14 +fibré fibré adj m s 0.00 0.20 0.00 0.20 +fibule fibule nom f s 0.00 0.07 0.00 0.07 +fic fic nom m s 0.01 0.00 0.01 0.00 +ficaires ficaire nom f p 0.00 0.07 0.00 0.07 +ficela ficeler ver 0.86 6.76 0.00 0.41 ind:pas:3s; +ficelai ficeler ver 0.86 6.76 0.00 0.07 ind:pas:1s; +ficelaient ficeler ver 0.86 6.76 0.01 0.14 ind:imp:3p; +ficelait ficeler ver 0.86 6.76 0.00 0.47 ind:imp:3s; +ficelant ficeler ver 0.86 6.76 0.00 0.07 par:pre; +ficeler ficeler ver 0.86 6.76 0.17 0.68 inf; +ficelez ficeler ver 0.86 6.76 0.01 0.00 imp:pre:2p; +ficelle ficelle nom f s 6.31 21.22 3.13 13.38 +ficellerait ficeler ver 0.86 6.76 0.00 0.07 cnd:pre:3s; +ficelles ficelle nom f p 6.31 21.22 3.19 7.84 +ficelèrent ficeler ver 0.86 6.76 0.00 0.07 ind:pas:3p; +ficelé ficeler ver m s 0.86 6.76 0.36 2.03 par:pas; +ficelée ficeler ver f s 0.86 6.76 0.17 1.15 par:pas; +ficelées ficelé adj f p 0.61 3.18 0.04 0.47 +ficelés ficelé adj m p 0.61 3.18 0.11 1.15 +ficha ficher ver 97.84 29.32 0.01 0.54 ind:pas:3s; +fichage fichage nom m s 0.01 0.00 0.01 0.00 +fichaient ficher ver 97.84 29.32 0.27 0.61 ind:imp:3p; +fichais ficher ver 97.84 29.32 1.67 0.81 ind:imp:1s;ind:imp:2s; +fichaise fichaise nom f s 0.03 0.20 0.01 0.07 +fichaises fichaise nom f p 0.03 0.20 0.02 0.14 +fichait ficher ver 97.84 29.32 2.31 3.38 ind:imp:3s; +fichant ficher ver 97.84 29.32 0.20 0.81 par:pre; +fiche ficher ver 97.84 29.32 60.95 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +fichent ficher ver 97.84 29.32 2.87 1.49 ind:pre:3p; +ficher ficher ver 97.84 29.32 1.90 1.42 inf; +fichera ficher ver 97.84 29.32 0.50 0.14 ind:fut:3s; +ficherai ficher ver 97.84 29.32 0.34 0.20 ind:fut:1s; +ficheraient ficher ver 97.84 29.32 0.21 0.00 cnd:pre:3p; +ficherais ficher ver 97.84 29.32 0.75 0.00 cnd:pre:1s;cnd:pre:2s; +ficherait ficher ver 97.84 29.32 0.21 0.20 cnd:pre:3s; +ficheras ficher ver 97.84 29.32 0.07 0.00 ind:fut:2s; +ficherons ficher ver 97.84 29.32 0.00 0.07 ind:fut:1p; +ficheront ficher ver 97.84 29.32 0.17 0.14 ind:fut:3p; +fiches ficher ver 97.84 29.32 6.86 1.22 ind:pre:2s; +fichez ficher ver 97.84 29.32 12.73 1.35 imp:pre:2p;ind:pre:2p; +fichier fichier nom m s 11.10 2.91 5.42 1.89 +fichiers fichier nom m p 11.10 2.91 5.69 1.01 +fichiez ficher ver 97.84 29.32 0.48 0.00 ind:imp:2p; +fichions ficher ver 97.84 29.32 0.00 0.07 ind:imp:1p; +fichons ficher ver 97.84 29.32 2.67 0.07 imp:pre:1p;ind:pre:1p; +fichât ficher ver 97.84 29.32 0.00 0.14 sub:imp:3s; +fichtre fichtre ono 1.23 1.01 1.23 1.01 +fichtrement fichtrement adv 0.27 0.47 0.27 0.47 +fiché ficher ver m s 97.84 29.32 1.99 2.16 par:pas; +fichu fichu adj m s 27.51 12.03 17.34 7.70 +fichée ficher ver f s 97.84 29.32 0.35 1.82 par:pas; +fichue fichu adj f s 27.51 12.03 6.34 3.04 +fichées ficher ver f p 97.84 29.32 0.14 1.22 par:pas; +fichues fichu adj f p 27.51 12.03 1.04 0.20 +fichés ficher ver m p 97.84 29.32 0.20 1.08 par:pas; +fichus fichu adj m p 27.51 12.03 2.79 1.08 +fictif fictif adj m s 1.99 2.84 0.94 1.22 +fictifs fictif adj m p 1.99 2.84 0.57 0.34 +fiction fiction nom f s 6.46 5.14 6.25 4.32 +fictionnel fictionnel adj m s 0.02 0.00 0.02 0.00 +fictions fiction nom f p 6.46 5.14 0.21 0.81 +fictive fictif adj f s 1.99 2.84 0.41 0.88 +fictivement fictivement adv 0.00 0.20 0.00 0.20 +fictives fictif adj f p 1.99 2.84 0.06 0.41 +ficus ficus nom m 0.17 0.20 0.17 0.20 +fidèle fidèle adj s 24.61 35.61 20.04 27.43 +fidèlement fidèlement adv 1.12 4.53 1.12 4.53 +fidèles fidèle adj p 24.61 35.61 4.57 8.18 +fiduciaire fiduciaire adj s 0.17 0.68 0.13 0.68 +fiduciaires fiduciaire adj f p 0.17 0.68 0.04 0.00 +fiducie fiducie nom f s 0.06 0.00 0.06 0.00 +fidéicommis fidéicommis nom m 0.42 0.07 0.42 0.07 +fidéliser fidéliser ver 0.04 0.00 0.03 0.00 inf; +fidéliseras fidéliser ver 0.04 0.00 0.01 0.00 ind:fut:2s; +fidélité fidélité nom f s 10.26 18.31 10.26 17.43 +fidélités fidélité nom f p 10.26 18.31 0.00 0.88 +fie fier ver 14.26 8.99 4.10 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fief fief nom m s 3.38 3.45 3.22 2.70 +fieffé fieffé adj m s 0.95 0.61 0.77 0.20 +fieffée fieffé adj f s 0.95 0.61 0.00 0.27 +fieffés fieffé adj m p 0.95 0.61 0.19 0.14 +fiefs fief nom m p 3.38 3.45 0.16 0.74 +fiel fiel nom m s 1.36 2.50 1.36 2.50 +field field nom m s 0.47 0.00 0.47 0.00 +fielleuse fielleux adj f s 0.42 0.95 0.11 0.20 +fielleusement fielleusement adv 0.00 0.07 0.00 0.07 +fielleuses fielleux adj f p 0.42 0.95 0.00 0.27 +fielleux fielleux adj m 0.42 0.95 0.31 0.47 +fient fier ver 14.26 8.99 0.18 0.00 ind:pre:3p; +fiente fiente nom f s 0.79 2.70 0.72 1.96 +fientes fiente nom f p 0.79 2.70 0.07 0.74 +fienteuse fienteux adj f s 0.00 0.14 0.00 0.07 +fienteux fienteux adj m p 0.00 0.14 0.00 0.07 +fienté fienter ver m s 0.20 0.20 0.00 0.14 par:pas; +fier_à_bras fier_à_bras nom m 0.00 0.14 0.00 0.14 +fier fier adj m s 79.13 58.18 46.07 31.42 +fiera fier ver 14.26 8.99 0.11 0.00 ind:fut:3s; +fierai fier ver 14.26 8.99 0.02 0.00 ind:fut:1s; +fierais fier ver 14.26 8.99 0.29 0.07 cnd:pre:1s;cnd:pre:2s; +fieras fier ver 14.26 8.99 0.01 0.00 ind:fut:2s; +fiers_à_bras fiers_à_bras nom m p 0.00 0.27 0.00 0.27 +fiers fier adj m p 79.13 58.18 12.36 8.38 +fierté fierté nom f s 13.58 29.93 13.56 29.66 +fiertés fierté nom f p 13.58 29.93 0.02 0.27 +fiesta fiesta nom f s 2.14 2.43 2.07 1.96 +fiestas fiesta nom f p 2.14 2.43 0.07 0.47 +fieu fieu nom m s 0.00 0.07 0.00 0.07 +fieux fieux nom m p 0.02 0.00 0.02 0.00 +fiez fier ver 14.26 8.99 1.58 0.41 imp:pre:2p;ind:pre:2p; +fifi fifi nom m s 0.98 7.77 0.96 7.36 +fifille fifille nom f s 0.65 1.35 0.65 1.35 +fifis fifi nom m p 0.98 7.77 0.02 0.41 +fifre fifre nom m s 0.10 2.09 0.07 1.22 +fifrelin fifrelin nom m s 0.13 0.54 0.03 0.41 +fifrelins fifrelin nom m p 0.13 0.54 0.10 0.14 +fifres fifre nom m p 0.10 2.09 0.03 0.88 +fifties fifties nom p 0.03 0.07 0.03 0.07 +fifty_fifty fifty_fifty adv 0.66 0.14 0.66 0.14 +fifty fifty nom m s 0.05 0.47 0.05 0.47 +figaro figaro nom m s 0.00 1.42 0.00 1.35 +figaros figaro nom m p 0.00 1.42 0.00 0.07 +fige figer ver 4.49 33.18 1.04 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +figea figer ver 4.49 33.18 0.00 2.97 ind:pas:3s; +figeaient figer ver 4.49 33.18 0.00 0.95 ind:imp:3p; +figeais figer ver 4.49 33.18 0.03 0.14 ind:imp:1s; +figeait figer ver 4.49 33.18 0.04 1.89 ind:imp:3s; +figeant figer ver 4.49 33.18 0.01 0.68 par:pre; +figent figer ver 4.49 33.18 0.17 0.34 ind:pre:3p; +figer figer ver 4.49 33.18 1.16 2.50 inf; +figera figer ver 4.49 33.18 0.04 0.14 ind:fut:3s; +figerai figer ver 4.49 33.18 0.07 0.07 ind:fut:1s; +figeraient figer ver 4.49 33.18 0.00 0.14 cnd:pre:3p; +figerait figer ver 4.49 33.18 0.00 0.27 cnd:pre:3s; +figez figer ver 4.49 33.18 0.05 0.00 imp:pre:2p;ind:pre:2p; +fignard fignard nom m s 0.00 0.07 0.00 0.07 +fignola fignoler ver 0.48 3.85 0.00 0.27 ind:pas:3s; +fignolage fignolage nom m s 0.11 0.41 0.11 0.20 +fignolages fignolage nom m p 0.11 0.41 0.00 0.20 +fignolaient fignoler ver 0.48 3.85 0.00 0.07 ind:imp:3p; +fignolait fignoler ver 0.48 3.85 0.00 0.41 ind:imp:3s; +fignolant fignoler ver 0.48 3.85 0.00 0.61 par:pre; +fignole fignoler ver 0.48 3.85 0.20 0.27 ind:pre:1s;ind:pre:3s; +fignolent fignoler ver 0.48 3.85 0.00 0.14 ind:pre:3p; +fignoler fignoler ver 0.48 3.85 0.16 0.95 inf; +fignolerai fignoler ver 0.48 3.85 0.00 0.07 ind:fut:1s; +fignolerais fignoler ver 0.48 3.85 0.01 0.00 cnd:pre:1s; +fignolerait fignoler ver 0.48 3.85 0.00 0.07 cnd:pre:3s; +fignoleur fignoleur nom m s 0.01 0.00 0.01 0.00 +fignolons fignoler ver 0.48 3.85 0.00 0.07 ind:pre:1p; +fignolé fignoler ver m s 0.48 3.85 0.09 0.61 par:pas; +fignolée fignoler ver f s 0.48 3.85 0.01 0.27 par:pas; +fignolés fignoler ver m p 0.48 3.85 0.01 0.07 par:pas; +figèrent figer ver 4.49 33.18 0.00 0.27 ind:pas:3p; +figé figer ver m s 4.49 33.18 1.02 9.32 par:pas; +figue figue nom f s 7.38 3.58 3.44 1.28 +figée figer ver f s 4.49 33.18 0.49 5.00 par:pas; +figues figue nom f p 7.38 3.58 3.94 2.30 +figées figé adj f p 0.94 11.82 0.05 0.88 +figuier figuier nom m s 1.79 3.58 1.36 1.82 +figuiers figuier nom m p 1.79 3.58 0.43 1.76 +figura figurer ver 14.41 57.23 0.07 0.41 ind:pas:3s; +figurai figurer ver 14.41 57.23 0.14 0.34 ind:pas:1s; +figuraient figurer ver 14.41 57.23 0.21 3.99 ind:imp:3p; +figurais figurer ver 14.41 57.23 0.03 1.96 ind:imp:1s;ind:imp:2s; +figurait figurer ver 14.41 57.23 0.81 7.97 ind:imp:3s; +figurant figurant nom m s 2.99 5.07 0.68 1.62 +figurante figurant nom f s 2.99 5.07 0.37 0.54 +figurantes figurant nom f p 2.99 5.07 0.02 0.14 +figurants figurant nom m p 2.99 5.07 1.93 2.77 +figuratif figuratif adj m s 0.20 0.68 0.20 0.27 +figuratifs figuratif adj m p 0.20 0.68 0.00 0.14 +figuration figuration nom f s 0.41 2.57 0.40 1.96 +figurations figuration nom f p 0.41 2.57 0.01 0.61 +figurative figuratif adj f s 0.20 0.68 0.01 0.14 +figurativement figurativement adv 0.01 0.07 0.01 0.07 +figuratives figuratif adj f p 0.20 0.68 0.00 0.14 +figure figure nom f s 25.18 95.34 22.49 77.70 +figurent figurer ver 14.41 57.23 0.56 4.46 ind:pre:3p; +figurer figurer ver 14.41 57.23 1.43 7.30 inf; +figurera figurer ver 14.41 57.23 0.42 0.34 ind:fut:3s; +figureraient figurer ver 14.41 57.23 0.01 0.27 cnd:pre:3p; +figurerait figurer ver 14.41 57.23 0.03 0.27 cnd:pre:3s; +figures figure nom f p 25.18 95.34 2.69 17.64 +figurez figurer ver 14.41 57.23 3.06 6.15 imp:pre:2p;ind:pre:2p; +figuriez figurer ver 14.41 57.23 0.03 0.07 ind:imp:2p; +figurine figurine nom f s 2.18 2.43 1.19 0.88 +figurines figurine nom f p 2.18 2.43 0.99 1.55 +figurions figurer ver 14.41 57.23 0.00 0.14 ind:imp:1p; +figurât figurer ver 14.41 57.23 0.00 0.34 sub:imp:3s; +figurèrent figurer ver 14.41 57.23 0.00 0.07 ind:pas:3p; +figuré figuré adj m s 0.57 1.08 0.56 0.95 +figurée figuré adj f s 0.57 1.08 0.02 0.00 +figurées figurer ver f p 14.41 57.23 0.00 0.47 par:pas; +figurés figurer ver m p 14.41 57.23 0.00 0.74 par:pas; +figés figer ver m p 4.49 33.18 0.36 3.92 par:pas; +fil_à_fil fil_à_fil nom m 0.00 0.34 0.00 0.34 +fil fil nom m s 64.92 99.73 51.83 75.95 +fila filer ver 100.96 88.51 0.41 4.93 ind:pas:3s; +filage filage nom m s 0.06 0.14 0.06 0.14 +filai filer ver 100.96 88.51 0.00 0.61 ind:pas:1s; +filaient filer ver 100.96 88.51 0.34 3.38 ind:imp:3p; +filaire filaire adj f s 0.01 0.00 0.01 0.00 +filais filer ver 100.96 88.51 0.54 1.15 ind:imp:1s;ind:imp:2s; +filait filer ver 100.96 88.51 1.39 10.27 ind:imp:3s; +filament filament nom m s 0.40 2.16 0.29 0.27 +filamenteux filamenteux adj m 0.01 0.07 0.01 0.07 +filaments filament nom m p 0.40 2.16 0.11 1.89 +filandres filandre nom f p 0.00 0.07 0.00 0.07 +filandreuse filandreux adj f s 0.07 1.62 0.00 0.54 +filandreuses filandreux adj f p 0.07 1.62 0.03 0.61 +filandreux filandreux adj m 0.07 1.62 0.05 0.47 +filant filer ver 100.96 88.51 0.26 3.38 par:pre; +filante filant adj f s 1.64 3.38 0.60 1.28 +filantes filant adj f p 1.64 3.38 0.82 1.22 +filaos filao nom m p 0.00 0.07 0.00 0.07 +filariose filariose nom f s 0.05 0.00 0.05 0.00 +filasse filasse nom f s 0.06 0.47 0.02 0.34 +filasses filasse nom f p 0.06 0.47 0.04 0.14 +filateur filateur nom m s 0.00 0.27 0.00 0.07 +filateurs filateur nom m p 0.00 0.27 0.00 0.20 +filature filature nom f s 2.10 1.42 1.85 0.88 +filatures filature nom f p 2.10 1.42 0.24 0.54 +file_la_moi file_la_moi nom f s 0.01 0.00 0.01 0.00 +file filer ver 100.96 88.51 36.47 17.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +filent filer ver 100.96 88.51 2.21 3.18 ind:pre:3p; +filer filer ver 100.96 88.51 25.85 21.76 inf; +filera filer ver 100.96 88.51 1.03 0.61 ind:fut:3s; +filerai filer ver 100.96 88.51 0.71 0.68 ind:fut:1s; +fileraient filer ver 100.96 88.51 0.03 0.07 cnd:pre:3p; +filerais filer ver 100.96 88.51 0.35 0.20 cnd:pre:1s;cnd:pre:2s; +filerait filer ver 100.96 88.51 0.27 0.34 cnd:pre:3s; +fileras filer ver 100.96 88.51 0.22 0.14 ind:fut:2s; +filerez filer ver 100.96 88.51 0.16 0.14 ind:fut:2p; +fileriez filer ver 100.96 88.51 0.03 0.00 cnd:pre:2p; +filerons filer ver 100.96 88.51 0.21 0.07 ind:fut:1p; +fileront filer ver 100.96 88.51 0.11 0.20 ind:fut:3p; +files filer ver 100.96 88.51 4.95 1.89 ind:pre:1p;ind:pre:2s;sub:pre:2s; +filet filet nom m s 15.44 41.49 10.99 26.35 +filetage filetage nom m s 0.09 0.07 0.09 0.07 +filets filet nom m p 15.44 41.49 4.45 15.14 +fileté fileté adj m s 0.03 0.34 0.03 0.07 +filetée fileter ver f s 0.01 0.14 0.01 0.07 par:pas; +fileur fileur nom m s 0.06 0.14 0.04 0.07 +fileuse fileur nom f s 0.06 0.14 0.01 0.07 +filez filer ver 100.96 88.51 7.90 1.49 imp:pre:2p;ind:pre:2p; +filial filial adj m s 0.63 3.85 0.14 1.76 +filiale filiale nom f s 1.33 0.81 0.84 0.54 +filialement filialement adv 0.00 0.20 0.00 0.20 +filiales filiale nom f p 1.33 0.81 0.48 0.27 +filiation filiation nom f s 0.23 2.36 0.23 1.89 +filiations filiation nom f p 0.23 2.36 0.00 0.47 +filiaux filial adj m p 0.63 3.85 0.00 0.34 +filiez filer ver 100.96 88.51 0.17 0.14 ind:imp:2p; +filiforme filiforme adj s 0.03 1.55 0.03 1.01 +filiformes filiforme adj p 0.03 1.55 0.00 0.54 +filigrane filigrane nom m s 0.45 2.97 0.43 2.30 +filigranes filigrane nom m p 0.45 2.97 0.02 0.68 +filigranés filigraner ver m p 0.00 0.07 0.00 0.07 par:pas; +filin filin nom m s 0.44 2.64 0.25 1.42 +filins filin nom m p 0.44 2.64 0.19 1.22 +filions filer ver 100.96 88.51 0.01 0.07 ind:imp:1p; +filioque filioque adj m s 0.00 0.54 0.00 0.54 +filière filière nom f s 0.78 3.18 0.73 2.70 +filières filière nom f p 0.78 3.18 0.05 0.47 +fillasses fillasse nom f p 0.00 0.07 0.00 0.07 +fille_mère fille_mère nom f s 0.39 0.41 0.39 0.41 +fille fille nom f s 841.56 592.23 627.59 417.03 +filles fille nom f p 841.56 592.23 213.97 175.20 +fillette fillette nom f s 13.26 22.97 11.59 16.69 +fillettes fillette nom f p 13.26 22.97 1.67 6.28 +filleul filleul nom m s 2.72 1.82 2.42 1.22 +filleule filleul nom f s 2.72 1.82 0.29 0.47 +filleuls filleul nom m p 2.72 1.82 0.01 0.14 +fillér fillér nom m s 0.01 0.00 0.01 0.00 +film_livre film_livre nom m s 0.00 0.07 0.00 0.07 +film film nom m s 252.66 74.12 195.10 49.53 +filma filmer ver 40.08 3.45 0.27 0.00 ind:pas:3s; +filmage filmage nom m s 0.02 0.00 0.02 0.00 +filmaient filmer ver 40.08 3.45 0.44 0.07 ind:imp:3p; +filmais filmer ver 40.08 3.45 0.51 0.00 ind:imp:1s;ind:imp:2s; +filmait filmer ver 40.08 3.45 0.80 0.14 ind:imp:3s; +filmant filmer ver 40.08 3.45 0.42 0.14 par:pre; +filme filmer ver 40.08 3.45 7.17 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +filment filmer ver 40.08 3.45 0.56 0.14 ind:pre:3p; +filmer filmer ver 40.08 3.45 12.89 1.28 inf; +filmera filmer ver 40.08 3.45 0.26 0.00 ind:fut:3s; +filmerai filmer ver 40.08 3.45 0.20 0.00 ind:fut:1s; +filmerais filmer ver 40.08 3.45 0.20 0.00 cnd:pre:2s; +filmerait filmer ver 40.08 3.45 0.01 0.00 cnd:pre:3s; +filmerez filmer ver 40.08 3.45 0.11 0.00 ind:fut:2p; +filmeront filmer ver 40.08 3.45 0.16 0.00 ind:fut:3p; +filmes filmer ver 40.08 3.45 1.93 0.07 ind:pre:2s; +filmez filmer ver 40.08 3.45 1.64 0.07 imp:pre:2p;ind:pre:2p; +filmiez filmer ver 40.08 3.45 0.03 0.00 ind:imp:2p;sub:pre:2p; +filmions filmer ver 40.08 3.45 0.16 0.00 ind:imp:1p; +filmique filmique adj s 0.15 0.00 0.15 0.00 +filmographie filmographie nom f s 0.03 0.00 0.03 0.00 +filmons filmer ver 40.08 3.45 0.53 0.00 imp:pre:1p;ind:pre:1p; +filmothèque filmothèque nom f s 0.01 0.00 0.01 0.00 +films_annonce films_annonce nom m p 0.00 0.07 0.00 0.07 +films film nom m p 252.66 74.12 57.56 24.59 +filmé filmer ver m s 40.08 3.45 7.96 0.61 par:pas; +filmée filmer ver f s 40.08 3.45 1.45 0.34 par:pas; +filmées filmer ver f p 40.08 3.45 0.51 0.20 par:pas; +filmés filmer ver m p 40.08 3.45 1.88 0.07 par:pas; +filochard filochard nom m s 0.05 0.20 0.05 0.20 +filoche filoche nom f s 0.14 0.47 0.14 0.47 +filocher filocher ver 0.02 0.34 0.01 0.20 inf; +filochez filocher ver 0.02 0.34 0.01 0.00 imp:pre:2p; +filoché filocher ver m s 0.02 0.34 0.00 0.14 par:pas; +filoguidé filoguidé adj m s 0.01 0.00 0.01 0.00 +filâmes filer ver 100.96 88.51 0.01 0.07 ind:pas:1p; +filon filon nom m s 5.61 2.64 1.77 1.82 +filons filon nom m p 5.61 2.64 3.83 0.81 +filoselle filoselle nom f s 0.00 0.34 0.00 0.34 +filât filer ver 100.96 88.51 0.00 0.20 sub:imp:3s; +filou filou nom m s 2.48 1.28 1.79 1.08 +filous filou nom m p 2.48 1.28 0.68 0.20 +filouter filouter ver 0.53 0.20 0.19 0.07 inf; +filouterie filouterie nom f s 0.17 0.34 0.14 0.20 +filouteries filouterie nom f p 0.17 0.34 0.02 0.14 +filoutes filouter ver 0.53 0.20 0.00 0.07 ind:pre:2s; +filouté filouter ver m s 0.53 0.20 0.03 0.00 par:pas; +filoutés filouter ver m p 0.53 0.20 0.31 0.07 par:pas; +fils fils nom m 480.15 247.64 480.15 247.64 +filèrent filer ver 100.96 88.51 0.03 0.74 ind:pas:3p; +filtra filtrer ver 2.58 13.58 0.00 0.27 ind:pas:3s; +filtrage filtrage nom m s 0.26 0.07 0.26 0.07 +filtraient filtrer ver 2.58 13.58 0.00 1.15 ind:imp:3p; +filtrais filtrer ver 2.58 13.58 0.01 0.00 ind:imp:1s; +filtrait filtrer ver 2.58 13.58 0.04 2.64 ind:imp:3s; +filtrant filtrant adj m s 0.20 0.41 0.19 0.27 +filtrantes filtrant adj f p 0.20 0.41 0.00 0.07 +filtrants filtrant adj m p 0.20 0.41 0.01 0.07 +filtration filtration nom f s 0.20 0.14 0.20 0.07 +filtrations filtration nom f p 0.20 0.14 0.00 0.07 +filtre filtre nom m s 4.54 2.64 3.52 2.16 +filtrent filtrer ver 2.58 13.58 0.08 0.20 ind:pre:3p; +filtrer filtrer ver 2.58 13.58 1.01 3.72 inf; +filtrerait filtrer ver 2.58 13.58 0.01 0.14 cnd:pre:3s; +filtres filtre nom m p 4.54 2.64 1.02 0.47 +filtrez filtrer ver 2.58 13.58 0.23 0.00 imp:pre:2p;ind:pre:2p; +filtrèrent filtrer ver 2.58 13.58 0.00 0.14 ind:pas:3p; +filtré filtrer ver m s 2.58 13.58 0.27 0.95 par:pas; +filtrée filtrer ver f s 2.58 13.58 0.05 0.47 par:pas; +filtrées filtrer ver f p 2.58 13.58 0.00 0.34 par:pas; +filtrés filtrer ver m p 2.58 13.58 0.01 0.07 par:pas; +filé filer ver m s 100.96 88.51 15.18 13.51 par:pas; +filée filer ver f s 100.96 88.51 0.36 0.41 par:pas; +filées filer ver f p 100.96 88.51 0.07 0.14 par:pas; +filés filer ver m p 100.96 88.51 0.34 0.54 par:pas; +fin fin nom s 213.37 314.53 207.34 303.31 +finîmes finir ver 557.61 417.97 0.14 0.41 ind:pas:1p; +finît finir ver 557.61 417.97 0.00 0.68 sub:imp:3s; +finage finage nom m s 0.00 0.07 0.00 0.07 +final final adj m s 18.20 19.39 9.73 11.55 +finale final adj f s 18.20 19.39 7.67 7.50 +finalement finalement adv 45.89 58.92 45.89 58.92 +finales finale nom p 5.45 2.84 0.58 0.34 +finalisation finalisation nom f s 0.07 0.00 0.07 0.00 +finaliser finaliser ver 0.64 0.00 0.25 0.00 inf; +finaliste finaliste nom s 0.78 0.07 0.19 0.07 +finalistes finaliste nom p 0.78 0.07 0.59 0.00 +finalisé finaliser ver m s 0.64 0.00 0.39 0.00 par:pas; +finalisées finaliser ver f p 0.64 0.00 0.01 0.00 par:pas; +finalité finalité nom f s 0.46 0.41 0.46 0.34 +finalités finalité nom f p 0.46 0.41 0.00 0.07 +finals final nom m p 3.76 1.69 0.02 0.07 +finance finance nom f s 8.03 8.78 2.13 1.76 +financement financement nom m s 2.90 0.47 2.55 0.47 +financements financement nom m p 2.90 0.47 0.34 0.00 +financent financer ver 9.92 2.70 0.46 0.07 ind:pre:3p; +financer financer ver 9.92 2.70 3.96 1.08 inf; +financera financer ver 9.92 2.70 0.11 0.00 ind:fut:3s; +financerai financer ver 9.92 2.70 0.32 0.00 ind:fut:1s; +financeraient financer ver 9.92 2.70 0.01 0.00 cnd:pre:3p; +financerait financer ver 9.92 2.70 0.12 0.07 cnd:pre:3s; +financeras financer ver 9.92 2.70 0.11 0.00 ind:fut:2s; +financerons financer ver 9.92 2.70 0.02 0.00 ind:fut:1p; +financeront financer ver 9.92 2.70 0.16 0.07 ind:fut:3p; +finances finance nom f p 8.03 8.78 5.89 7.03 +financez financer ver 9.92 2.70 0.14 0.20 imp:pre:2p;ind:pre:2p; +financier financier adj m s 11.02 9.32 4.00 2.30 +financiers financier adj m p 11.02 9.32 2.17 2.36 +financiez financer ver 9.92 2.70 0.01 0.00 ind:imp:2p; +financière financier adj f s 11.02 9.32 3.49 2.43 +financièrement financièrement adv 2.21 0.47 2.21 0.47 +financières financier adj f p 11.02 9.32 1.36 2.23 +financé financer ver m s 9.92 2.70 1.70 0.34 par:pas; +financée financer ver f s 9.92 2.70 0.64 0.14 par:pas; +financés financer ver m p 9.92 2.70 0.29 0.00 par:pas; +finançai financer ver 9.92 2.70 0.00 0.07 ind:pas:1s; +finançaient financer ver 9.92 2.70 0.03 0.00 ind:imp:3p; +finançait financer ver 9.92 2.70 0.19 0.27 ind:imp:3s; +finançant financer ver 9.92 2.70 0.03 0.14 par:pre; +finançons financer ver 9.92 2.70 0.03 0.00 imp:pre:1p;ind:pre:1p; +finassait finasser ver 0.15 0.41 0.00 0.07 ind:imp:3s; +finasse finasser ver 0.15 0.41 0.00 0.20 ind:pre:3s; +finasser finasser ver 0.15 0.41 0.06 0.14 inf; +finasserie finasserie nom f s 0.01 0.20 0.00 0.07 +finasseries finasserie nom f p 0.01 0.20 0.01 0.14 +finasses finasser ver 0.15 0.41 0.01 0.00 ind:pre:2s; +finassons finasser ver 0.15 0.41 0.01 0.00 imp:pre:1p; +finassé finasser ver m s 0.15 0.41 0.07 0.00 par:pas; +finaud finaud adj m s 0.34 1.28 0.18 1.01 +finaude finaud adj f s 0.34 1.28 0.16 0.20 +finauds finaud nom m p 0.22 0.34 0.03 0.07 +finaux final adj m p 18.20 19.39 0.29 0.00 +fine fin adj f s 26.95 97.97 10.16 33.99 +finement finement adv 1.03 5.88 1.03 5.88 +fines fin adj f p 26.95 97.97 2.35 19.05 +finesse finesse nom f s 2.38 9.32 2.21 7.84 +finesses finesse nom f p 2.38 9.32 0.17 1.49 +finet finet adj m s 0.00 0.27 0.00 0.27 +finette finette nom f s 0.00 0.68 0.00 0.68 +fini finir ver m s 557.61 417.97 292.55 149.26 par:pas; +finie finir ver f s 557.61 417.97 26.99 12.23 par:pas; +finies finir ver f p 557.61 417.97 3.04 2.57 par:pas; +finir finir ver 557.61 417.97 96.48 68.92 inf; +finira finir ver 557.61 417.97 20.35 8.99 ind:fut:3s; +finirai finir ver 557.61 417.97 5.65 1.89 ind:fut:1s; +finiraient finir ver 557.61 417.97 0.34 1.76 cnd:pre:3p; +finirais finir ver 557.61 417.97 2.05 2.30 cnd:pre:1s;cnd:pre:2s; +finirait finir ver 557.61 417.97 4.51 11.28 cnd:pre:3s; +finiras finir ver 557.61 417.97 7.36 1.96 ind:fut:2s; +finirent finir ver 557.61 417.97 0.27 2.30 ind:pas:3p; +finirez finir ver 557.61 417.97 3.10 0.95 ind:fut:2p; +finiriez finir ver 557.61 417.97 0.36 0.14 cnd:pre:2p; +finirions finir ver 557.61 417.97 0.34 0.54 cnd:pre:1p; +finirons finir ver 557.61 417.97 1.63 1.08 ind:fut:1p; +finiront finir ver 557.61 417.97 3.31 2.09 ind:fut:3p; +finis finir ver m p 557.61 417.97 21.82 11.28 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +finish finish nom m s 0.32 0.61 0.32 0.61 +finissaient finir ver 557.61 417.97 0.44 8.38 ind:imp:3p; +finissais finir ver 557.61 417.97 1.06 3.38 ind:imp:1s;ind:imp:2s; +finissait finir ver 557.61 417.97 2.68 30.00 ind:imp:3s; +finissant finir ver 557.61 417.97 0.48 3.85 par:pre; +finissante finissant adj f s 0.22 2.57 0.12 0.54 +finissantes finissant adj f p 0.22 2.57 0.00 0.14 +finissants finissant adj m p 0.22 2.57 0.07 0.07 +finisse finir ver 557.61 417.97 9.34 6.49 sub:pre:1s;sub:pre:3s; +finissent finir ver 557.61 417.97 8.49 10.41 ind:pre:3p; +finisses finir ver 557.61 417.97 0.63 0.14 sub:pre:2s; +finisseur finisseur nom m s 0.03 0.00 0.02 0.00 +finisseuse finisseur nom f s 0.03 0.00 0.01 0.00 +finissez finir ver 557.61 417.97 5.80 1.15 imp:pre:2p;ind:pre:2p; +finissiez finir ver 557.61 417.97 0.41 0.20 ind:imp:2p; +finissions finir ver 557.61 417.97 0.20 1.08 ind:imp:1p; +finissons finir ver 557.61 417.97 7.82 1.82 imp:pre:1p;ind:pre:1p; +finit finir ver 557.61 417.97 29.97 70.47 ind:pre:3s;ind:pas:3s; +finition finition nom f s 1.12 1.28 0.61 1.01 +finitions finition nom f p 1.12 1.28 0.50 0.27 +finitude finitude nom f s 0.00 0.20 0.00 0.20 +finlandais finlandais adj m 1.35 0.61 0.76 0.27 +finlandaise finlandais adj f s 1.35 0.61 0.56 0.27 +finlandaises finlandais adj f p 1.35 0.61 0.04 0.07 +finlandisation finlandisation nom f s 0.00 0.07 0.00 0.07 +finnois finnois nom m 0.54 0.07 0.54 0.07 +fins fin nom p 213.37 314.53 6.03 11.22 +fiole fiole nom f s 1.93 5.14 1.50 3.11 +fioles fiole nom f p 1.93 5.14 0.42 2.03 +fion fion nom m s 1.77 2.64 1.75 2.57 +fions fier ver 14.26 8.99 0.25 0.00 imp:pre:1p;ind:pre:1p; +fiord fiord nom m s 0.00 0.07 0.00 0.07 +fioriture fioriture nom f s 0.25 2.09 0.01 0.74 +fioritures fioriture nom f p 0.25 2.09 0.24 1.35 +fioul fioul nom m s 0.06 0.00 0.06 0.00 +firent faire ver 8813.53 5328.99 3.00 37.16 ind:pas:3p; +firmament firmament nom m s 1.57 2.09 1.57 2.03 +firmaments firmament nom m p 1.57 2.09 0.00 0.07 +firman firman nom m s 0.04 0.20 0.04 0.14 +firmans firman nom m p 0.04 0.20 0.00 0.07 +firme firme nom f s 4.32 2.70 4.07 1.96 +firmes firme nom f p 4.32 2.70 0.25 0.74 +fis faire ver 8813.53 5328.99 4.35 40.74 ind:pas:1s;ind:pas:2s; +fisc fisc nom m s 2.53 1.28 2.53 1.28 +fiscal fiscal adj m s 4.54 1.22 1.41 0.14 +fiscale fiscal adj f s 4.54 1.22 1.97 0.47 +fiscalement fiscalement adv 0.01 0.07 0.01 0.07 +fiscales fiscal adj f p 4.54 1.22 0.41 0.27 +fiscaliste fiscaliste nom s 0.08 0.00 0.08 0.00 +fiscalité fiscalité nom f s 0.09 0.07 0.09 0.07 +fiscaux fiscal adj m p 4.54 1.22 0.76 0.34 +fissa fissa adv 1.84 3.24 1.84 3.24 +fisse faire ver 8813.53 5328.99 0.54 0.74 sub:imp:1s; +fissent faire ver 8813.53 5328.99 0.00 2.16 sub:imp:3p; +fissible fissible adj s 0.07 0.00 0.04 0.00 +fissibles fissible adj p 0.07 0.00 0.04 0.00 +fissiez faire ver 8813.53 5328.99 0.01 0.20 sub:imp:2p; +fission fission nom f s 0.52 0.20 0.52 0.20 +fissionner fissionner ver 0.02 0.00 0.01 0.00 inf; +fissionné fissionner ver m s 0.02 0.00 0.01 0.00 par:pas; +fissions faire ver 8813.53 5328.99 0.00 0.14 sub:imp:1p; +fissurait fissurer ver 0.69 1.76 0.01 0.07 ind:imp:3s; +fissurant fissurer ver 0.69 1.76 0.01 0.07 par:pre; +fissure fissure nom f s 2.74 8.11 1.25 4.66 +fissurent fissurer ver 0.69 1.76 0.00 0.07 ind:pre:3p; +fissurer fissurer ver 0.69 1.76 0.06 0.14 inf; +fissures fissure nom f p 2.74 8.11 1.49 3.45 +fissuré fissurer ver m s 0.69 1.76 0.24 0.68 par:pas; +fissurée fissurer ver f s 0.69 1.76 0.05 0.27 par:pas; +fissurées fissurer ver f p 0.69 1.76 0.05 0.07 par:pas; +fissurés fissurer ver m p 0.69 1.76 0.14 0.07 par:pas; +fiston fiston nom m s 30.43 2.97 30.38 2.84 +fistons fiston nom m p 30.43 2.97 0.05 0.14 +fistule fistule nom f s 0.06 0.00 0.04 0.00 +fistules fistule nom f p 0.06 0.00 0.02 0.00 +fit faire ver 8813.53 5328.99 20.63 469.66 ind:pas:3s; +fière fier adj f s 79.13 58.18 19.68 16.69 +fièrement fièrement adv 1.45 7.64 1.45 7.64 +fières fier adj f p 79.13 58.18 1.02 1.69 +fièvre fièvre nom f s 25.00 42.64 24.23 38.58 +fièvres fièvre nom f p 25.00 42.64 0.77 4.05 +fitness fitness nom m 0.39 0.00 0.39 0.00 +fitzgéraldiennes fitzgéraldien adj f p 0.00 0.07 0.00 0.07 +fié fier ver m s 14.26 8.99 0.04 0.34 par:pas; +fiée fier ver f s 14.26 8.99 0.41 0.00 par:pas; +fiérot fiérot nom m s 0.01 0.07 0.01 0.07 +fiérote fiérot adj f s 0.00 0.41 0.00 0.14 +fiérots fiérot adj m p 0.00 0.41 0.00 0.07 +fiés fier ver m p 14.26 8.99 0.03 0.00 par:pas; +fiévreuse fiévreux adj f s 1.18 11.01 0.10 2.64 +fiévreusement fiévreusement adv 0.03 2.70 0.03 2.70 +fiévreuses fiévreux adj f p 1.18 11.01 0.12 1.28 +fiévreux fiévreux adj m 1.18 11.01 0.95 7.09 +five_o_clock five_o_clock nom m 0.01 0.14 0.01 0.14 +fivete fivete nom f s 0.00 0.20 0.00 0.20 +fixa fixer ver 32.73 140.95 0.27 10.47 ind:pas:3s; +fixage fixage nom m s 0.00 0.14 0.00 0.14 +fixai fixer ver 32.73 140.95 0.10 1.62 ind:pas:1s; +fixaient fixer ver 32.73 140.95 0.40 3.72 ind:imp:3p; +fixais fixer ver 32.73 140.95 0.28 1.62 ind:imp:1s;ind:imp:2s; +fixait fixer ver 32.73 140.95 0.95 17.50 ind:imp:3s; +fixant fixer ver 32.73 140.95 0.54 12.84 par:pre; +fixateur fixateur nom m s 0.05 0.00 0.05 0.00 +fixatif fixatif nom m s 0.00 0.07 0.00 0.07 +fixation fixation nom f s 1.94 1.96 1.47 1.89 +fixations fixation nom f p 1.94 1.96 0.47 0.07 +fixe_chaussette fixe_chaussette nom f p 0.13 0.20 0.13 0.20 +fixe fixe adj s 11.12 39.53 9.83 27.97 +fixement fixement adv 1.89 8.92 1.89 8.92 +fixent fixer ver 32.73 140.95 0.76 2.09 ind:pre:3p; +fixer fixer ver 32.73 140.95 7.04 24.80 inf; +fixera fixer ver 32.73 140.95 0.33 0.41 ind:fut:3s; +fixerai fixer ver 32.73 140.95 0.05 0.14 ind:fut:1s; +fixeraient fixer ver 32.73 140.95 0.01 0.14 cnd:pre:3p; +fixerais fixer ver 32.73 140.95 0.12 0.00 cnd:pre:1s; +fixerait fixer ver 32.73 140.95 0.00 0.54 cnd:pre:3s; +fixeras fixer ver 32.73 140.95 0.11 0.00 ind:fut:2s; +fixerez fixer ver 32.73 140.95 0.04 0.07 ind:fut:2p; +fixeriez fixer ver 32.73 140.95 0.00 0.14 cnd:pre:2p; +fixerons fixer ver 32.73 140.95 0.22 0.07 ind:fut:1p; +fixeront fixer ver 32.73 140.95 0.03 0.00 ind:fut:3p; +fixes fixer ver 32.73 140.95 1.77 0.07 ind:pre:2s; +fixette fixette nom f s 0.24 0.07 0.24 0.07 +fixez fixer ver 32.73 140.95 1.98 0.27 imp:pre:2p;ind:pre:2p; +fixiez fixer ver 32.73 140.95 0.03 0.00 ind:imp:2p; +fixing fixing nom m s 0.08 0.00 0.08 0.00 +fixions fixer ver 32.73 140.95 0.00 0.14 ind:imp:1p; +fixité fixité nom f s 0.14 4.86 0.14 4.86 +fixâmes fixer ver 32.73 140.95 0.00 0.07 ind:pas:1p; +fixons fixer ver 32.73 140.95 0.47 0.20 imp:pre:1p;ind:pre:1p; +fixât fixer ver 32.73 140.95 0.00 0.14 sub:imp:3s; +fixèrent fixer ver 32.73 140.95 0.10 1.28 ind:pas:3p; +fixé fixer ver m s 32.73 140.95 6.34 25.14 par:pas; +fixée fixer ver f s 32.73 140.95 2.47 7.70 par:pas; +fixées fixer ver f p 32.73 140.95 0.34 2.97 par:pas; +fixés fixer ver m p 32.73 140.95 1.84 14.19 par:pas; +fjord fjord nom m s 1.07 0.68 0.96 0.27 +fjords fjord nom m p 1.07 0.68 0.11 0.41 +flûta flûter ver 0.14 0.20 0.00 0.07 ind:pas:3s; +flûte flûte nom f s 10.13 10.61 9.11 8.92 +flûter flûter ver 0.14 0.20 0.14 0.07 inf; +flûtes flûte nom f p 10.13 10.61 1.02 1.69 +flûtiau flûtiau nom m s 0.10 0.07 0.10 0.07 +flûtiste flûtiste nom s 0.19 0.34 0.16 0.34 +flûtistes flûtiste nom p 0.19 0.34 0.03 0.00 +flûté flûté adj m s 0.01 0.81 0.00 0.34 +flûtée flûté adj f s 0.01 0.81 0.01 0.41 +flûtés flûté adj m p 0.01 0.81 0.00 0.07 +fla fla nom m 0.03 0.00 0.03 0.00 +flac flac ono 0.01 1.08 0.01 1.08 +flaccide flaccide adj s 0.01 0.07 0.01 0.07 +flaccidité flaccidité nom f s 0.01 0.07 0.01 0.07 +flache flache nom f s 0.00 0.27 0.00 0.07 +flaches flache nom f p 0.00 0.27 0.00 0.20 +flacon flacon nom m s 4.93 19.46 4.12 11.82 +flacons flacon nom m p 4.93 19.46 0.81 7.64 +flafla flafla nom m s 0.00 0.20 0.00 0.20 +flag flag nom m 0.57 0.41 0.57 0.41 +flagada flagada adj 0.06 0.14 0.06 0.14 +flagella flageller ver 0.82 1.89 0.00 0.14 ind:pas:3s; +flagellaient flageller ver 0.82 1.89 0.10 0.07 ind:imp:3p; +flagellait flageller ver 0.82 1.89 0.01 0.14 ind:imp:3s; +flagellant flageller ver 0.82 1.89 0.10 0.00 par:pre; +flagellants flagellant nom m p 0.11 0.07 0.10 0.07 +flagellateur flagellateur nom m s 0.01 0.00 0.01 0.00 +flagellation flagellation nom f s 0.47 0.81 0.44 0.61 +flagellations flagellation nom f p 0.47 0.81 0.02 0.20 +flagelle flageller ver 0.82 1.89 0.03 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flagellent flageller ver 0.82 1.89 0.11 0.20 ind:pre:3p; +flageller flageller ver 0.82 1.89 0.17 0.41 inf; +flagellerez flageller ver 0.82 1.89 0.14 0.00 ind:fut:2p; +flagelleront flageller ver 0.82 1.89 0.14 0.00 ind:fut:3p; +flagellé flagellé adj m s 0.28 0.27 0.27 0.14 +flagellée flageller ver f s 0.82 1.89 0.01 0.27 par:pas; +flagellées flageller ver f p 0.82 1.89 0.01 0.07 par:pas; +flagellés flageller ver m p 0.82 1.89 0.01 0.14 par:pas; +flageola flageoler ver 0.13 2.16 0.00 0.07 ind:pas:3s; +flageolai flageoler ver 0.13 2.16 0.00 0.07 ind:pas:1s; +flageolaient flageoler ver 0.13 2.16 0.00 0.20 ind:imp:3p; +flageolait flageoler ver 0.13 2.16 0.00 0.20 ind:imp:3s; +flageolant flageoler ver 0.13 2.16 0.01 0.54 par:pre; +flageolante flageolant adj f s 0.04 1.35 0.00 0.20 +flageolantes flageolant adj f p 0.04 1.35 0.03 0.81 +flageolants flageolant adj m p 0.04 1.35 0.00 0.07 +flageole flageoler ver 0.13 2.16 0.00 0.27 ind:pre:1s;ind:pre:3s; +flageolent flageoler ver 0.13 2.16 0.12 0.34 ind:pre:3p; +flageoler flageoler ver 0.13 2.16 0.00 0.34 inf; +flageoleront flageoler ver 0.13 2.16 0.00 0.07 ind:fut:3p; +flageolet flageolet nom m s 0.51 1.49 0.27 0.34 +flageolets flageolet nom m p 0.51 1.49 0.24 1.15 +flageolèrent flageoler ver 0.13 2.16 0.00 0.07 ind:pas:3p; +flagornait flagorner ver 0.01 0.20 0.00 0.07 ind:imp:3s; +flagornent flagorner ver 0.01 0.20 0.01 0.07 ind:pre:3p; +flagorner flagorner ver 0.01 0.20 0.00 0.07 inf; +flagornerie flagornerie nom f s 0.07 0.68 0.04 0.54 +flagorneries flagornerie nom f p 0.07 0.68 0.04 0.14 +flagorneur flagorneur nom m s 0.33 0.07 0.14 0.00 +flagorneurs flagorneur nom m p 0.33 0.07 0.19 0.07 +flagorneuse flagorneur adj f s 0.02 0.07 0.02 0.07 +flagrance flagrance nom f s 0.01 0.00 0.01 0.00 +flagrant flagrant adj m s 3.89 7.36 3.01 5.20 +flagrante flagrant adj f s 3.89 7.36 0.70 1.76 +flagrantes flagrant adj f p 3.89 7.36 0.14 0.14 +flagrants flagrant adj m p 3.89 7.36 0.04 0.27 +flahutes flahute nom p 0.00 0.07 0.00 0.07 +flair flair nom m s 2.32 4.80 2.32 4.80 +flaira flairer ver 4.47 14.73 0.00 1.69 ind:pas:3s; +flairaient flairer ver 4.47 14.73 0.02 0.34 ind:imp:3p; +flairais flairer ver 4.47 14.73 0.37 0.14 ind:imp:1s; +flairait flairer ver 4.47 14.73 0.05 2.16 ind:imp:3s; +flairant flairer ver 4.47 14.73 0.02 1.42 par:pre; +flaire flairer ver 4.47 14.73 1.67 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flairent flairer ver 4.47 14.73 0.23 0.61 ind:pre:3p; +flairer flairer ver 4.47 14.73 0.93 2.70 inf; +flairera flairer ver 4.47 14.73 0.02 0.00 ind:fut:3s; +flairerait flairer ver 4.47 14.73 0.00 0.14 cnd:pre:3s; +flaires flairer ver 4.47 14.73 0.04 0.27 ind:pre:2s; +flaireur flaireur nom m s 0.00 0.27 0.00 0.14 +flaireurs flaireur nom m p 0.00 0.27 0.00 0.07 +flaireuse flaireur nom f s 0.00 0.27 0.00 0.07 +flairez flairer ver 4.47 14.73 0.02 0.00 ind:pre:2p; +flairé flairer ver m s 4.47 14.73 1.00 2.50 par:pas; +flairée flairer ver f s 4.47 14.73 0.00 0.14 par:pas; +flairés flairer ver m p 4.47 14.73 0.11 0.07 par:pas; +flamand flamand nom m s 1.37 2.30 0.85 1.35 +flamande flamand adj f s 0.79 2.43 0.28 0.54 +flamandes flamand adj f p 0.79 2.43 0.02 0.41 +flamands flamand nom m p 1.37 2.30 0.53 0.47 +flamant flamant nom m s 1.29 1.15 0.39 0.07 +flamants flamant nom m p 1.29 1.15 0.90 1.08 +flamba flamber ver 4.80 13.99 0.10 0.41 ind:pas:3s; +flambaient flamber ver 4.80 13.99 0.00 1.28 ind:imp:3p; +flambait flamber ver 4.80 13.99 0.13 3.11 ind:imp:3s; +flambant flambant adj m s 0.88 2.30 0.83 1.49 +flambante flambant adj f s 0.88 2.30 0.03 0.27 +flambantes flambant adj f p 0.88 2.30 0.00 0.20 +flambants flambant adj m p 0.88 2.30 0.02 0.34 +flambard flambard nom m s 0.00 0.34 0.00 0.34 +flambe flamber ver 4.80 13.99 2.05 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flambeau flambeau nom m s 3.04 7.09 2.66 3.58 +flambeaux flambeau nom m p 3.04 7.09 0.38 3.51 +flambent flamber ver 4.80 13.99 0.26 0.74 ind:pre:3p; +flamber flamber ver 4.80 13.99 0.84 3.45 inf; +flambera flamber ver 4.80 13.99 0.12 0.00 ind:fut:3s; +flamberaient flamber ver 4.80 13.99 0.00 0.07 cnd:pre:3p; +flamberait flamber ver 4.80 13.99 0.03 0.07 cnd:pre:3s; +flamberge flamberge nom f s 0.00 0.07 0.00 0.07 +flamberont flamber ver 4.80 13.99 0.00 0.07 ind:fut:3p; +flambes flamber ver 4.80 13.99 0.05 0.00 ind:pre:2s; +flambeur flambeur nom m s 1.18 1.89 0.82 0.88 +flambeurs flambeur nom m p 1.18 1.89 0.34 0.88 +flambeuse flambeur nom f s 1.18 1.89 0.01 0.14 +flambez flamber ver 4.80 13.99 0.02 0.07 imp:pre:2p;ind:pre:2p; +flamboie flamboyer ver 0.54 3.11 0.22 0.68 imp:pre:2s;ind:pre:3s; +flamboiement flamboiement nom m s 0.04 1.49 0.04 1.22 +flamboiements flamboiement nom m p 0.04 1.49 0.00 0.27 +flamboient flamboyer ver 0.54 3.11 0.01 0.47 ind:pre:3p;sub:pre:3p; +flamboierait flamboyer ver 0.54 3.11 0.00 0.07 cnd:pre:3s; +flambons flamber ver 4.80 13.99 0.01 0.00 imp:pre:1p; +flamboya flamboyer ver 0.54 3.11 0.00 0.07 ind:pas:3s; +flamboyaient flamboyer ver 0.54 3.11 0.14 0.14 ind:imp:3p; +flamboyait flamboyer ver 0.54 3.11 0.00 0.81 ind:imp:3s; +flamboyance flamboyance nom f s 0.01 0.00 0.01 0.00 +flamboyant flamboyant adj m s 1.07 5.41 0.80 2.57 +flamboyante flamboyant adj f s 1.07 5.41 0.07 1.55 +flamboyantes flamboyant adj f p 1.07 5.41 0.03 0.54 +flamboyants flamboyant adj m p 1.07 5.41 0.17 0.74 +flamboyer flamboyer ver 0.54 3.11 0.00 0.07 inf; +flamboyèrent flamboyer ver 0.54 3.11 0.00 0.07 ind:pas:3p; +flambèrent flamber ver 4.80 13.99 0.00 0.27 ind:pas:3p; +flambé flamber ver m s 4.80 13.99 0.63 1.28 par:pas; +flambée flambée nom f s 0.59 3.31 0.59 2.70 +flambées flamber ver f p 4.80 13.99 0.06 0.20 par:pas; +flambés flambé adj m p 0.21 0.14 0.04 0.07 +flamenco flamenco nom m s 1.04 0.88 1.04 0.88 +flamencos flamenco adj m p 0.14 0.74 0.00 0.07 +flamine flamine nom m s 0.01 0.00 0.01 0.00 +flamme flamme nom f s 26.93 71.82 12.61 38.38 +flammes flamme nom f p 26.93 71.82 14.32 33.45 +flammèche flammèche nom f s 0.17 2.57 0.14 0.47 +flammèches flammèche nom f p 0.17 2.57 0.02 2.09 +flammé flammé adj m s 0.00 0.27 0.00 0.14 +flammée flammé adj f s 0.00 0.27 0.00 0.07 +flammés flammé adj m p 0.00 0.27 0.00 0.07 +flan flan nom m s 2.36 2.77 2.30 2.64 +flanc_garde flanc_garde nom f s 0.04 0.27 0.00 0.14 +flanc flanc nom m s 5.57 46.89 4.01 29.53 +flancha flancher ver 3.04 2.70 0.00 0.20 ind:pas:3s; +flanchais flancher ver 3.04 2.70 0.02 0.00 ind:imp:1s; +flanchait flancher ver 3.04 2.70 0.03 0.27 ind:imp:3s; +flanche flancher ver 3.04 2.70 1.27 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flanchent flancher ver 3.04 2.70 0.08 0.14 ind:pre:3p; +flancher flancher ver 3.04 2.70 0.67 0.54 inf; +flanchera flancher ver 3.04 2.70 0.04 0.07 ind:fut:3s; +flancherai flancher ver 3.04 2.70 0.01 0.00 ind:fut:1s; +flancheraient flancher ver 3.04 2.70 0.01 0.00 cnd:pre:3p; +flancherait flancher ver 3.04 2.70 0.11 0.07 cnd:pre:3s; +flanchet flanchet nom m s 0.00 0.07 0.00 0.07 +flanché flancher ver m s 3.04 2.70 0.80 0.41 par:pas; +flanc_garde flanc_garde nom f p 0.04 0.27 0.04 0.14 +flancs flanc nom m p 5.57 46.89 1.56 17.36 +flandrin flandrin nom m s 0.00 0.41 0.00 0.41 +flanelle flanelle nom f s 0.83 8.99 0.68 8.78 +flanelles flanelle nom f p 0.83 8.99 0.16 0.20 +flanqua flanquer ver 5.82 21.22 0.00 0.54 ind:pas:3s; +flanquaient flanquer ver 5.82 21.22 0.00 0.68 ind:imp:3p; +flanquait flanquer ver 5.82 21.22 0.01 1.22 ind:imp:3s; +flanquant flanquer ver 5.82 21.22 0.00 0.68 par:pre; +flanque flanquer ver 5.82 21.22 1.66 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flanquement flanquement nom m s 0.00 0.07 0.00 0.07 +flanquent flanquer ver 5.82 21.22 0.19 0.54 ind:pre:3p; +flanquer flanquer ver 5.82 21.22 1.34 2.16 inf; +flanquera flanquer ver 5.82 21.22 0.07 0.14 ind:fut:3s; +flanquerai flanquer ver 5.82 21.22 0.22 0.07 ind:fut:1s; +flanqueraient flanquer ver 5.82 21.22 0.00 0.07 cnd:pre:3p; +flanquerais flanquer ver 5.82 21.22 0.16 0.14 cnd:pre:1s; +flanquerait flanquer ver 5.82 21.22 0.01 0.20 cnd:pre:3s; +flanquerez flanquer ver 5.82 21.22 0.01 0.00 ind:fut:2p; +flanques flanquer ver 5.82 21.22 0.17 0.14 ind:pre:2s; +flanquez flanquer ver 5.82 21.22 0.28 0.34 imp:pre:2p;ind:pre:2p; +flanquons flanquer ver 5.82 21.22 0.20 0.00 imp:pre:1p; +flanqué flanquer ver m s 5.82 21.22 1.09 6.42 par:pas; +flanquée flanquer ver f s 5.82 21.22 0.31 3.51 par:pas; +flanquées flanquer ver f p 5.82 21.22 0.00 0.74 par:pas; +flanqués flanquer ver m p 5.82 21.22 0.10 1.42 par:pas; +flans flan nom m p 2.36 2.77 0.05 0.14 +flapi flapi adj m s 0.07 0.54 0.05 0.20 +flapie flapi adj f s 0.07 0.54 0.02 0.14 +flapies flapi adj f p 0.07 0.54 0.00 0.07 +flapis flapi adj m p 0.07 0.54 0.00 0.14 +flaque flaque nom f s 3.53 23.99 2.31 10.07 +flaques flaque nom f p 3.53 23.99 1.21 13.92 +flash_back flash_back nom m 0.33 0.74 0.33 0.74 +flash flash nom m s 8.52 4.59 7.78 4.59 +flashage flashage nom m s 0.14 0.00 0.14 0.00 +flashaient flasher ver 1.10 0.61 0.00 0.07 ind:imp:3p; +flashant flasher ver 1.10 0.61 0.01 0.00 par:pre; +flashe flasher ver 1.10 0.61 0.16 0.34 ind:pre:1s;ind:pre:3s; +flashent flasher ver 1.10 0.61 0.08 0.07 ind:pre:3p; +flasher flasher ver 1.10 0.61 0.17 0.00 inf; +flashes flashe nom m p 0.46 2.16 0.46 2.16 +flasheur flasheur nom m s 0.03 0.00 0.03 0.00 +flashs flash nom m p 8.52 4.59 0.74 0.00 +flashé flasher ver m s 1.10 0.61 0.68 0.14 par:pas; +flask flask nom m s 0.01 0.07 0.01 0.07 +flasque flasque adj s 1.07 6.89 0.58 4.26 +flasques flasque adj p 1.07 6.89 0.50 2.64 +flat flat adj m s 1.61 0.00 1.02 0.00 +flats flat adj m p 1.61 0.00 0.58 0.00 +flatta flatter ver 12.36 24.05 0.00 1.22 ind:pas:3s; +flattai flatter ver 12.36 24.05 0.00 0.14 ind:pas:1s; +flattaient flatter ver 12.36 24.05 0.00 0.88 ind:imp:3p; +flattais flatter ver 12.36 24.05 0.04 0.74 ind:imp:1s;ind:imp:2s; +flattait flatter ver 12.36 24.05 0.03 3.45 ind:imp:3s; +flattant flatter ver 12.36 24.05 0.03 0.95 par:pre; +flattasse flatter ver 12.36 24.05 0.00 0.07 sub:imp:1s; +flattassent flatter ver 12.36 24.05 0.00 0.07 sub:imp:3p; +flatte flatter ver 12.36 24.05 2.60 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +flattent flatter ver 12.36 24.05 0.19 0.14 ind:pre:3p; +flatter flatter ver 12.36 24.05 1.53 3.78 inf; +flatteras flatter ver 12.36 24.05 0.00 0.07 ind:fut:2s; +flatterie flatterie nom f s 1.40 2.64 0.78 1.69 +flatteries flatterie nom f p 1.40 2.64 0.62 0.95 +flatteront flatter ver 12.36 24.05 0.00 0.07 ind:fut:3p; +flattes flatter ver 12.36 24.05 0.63 0.07 ind:pre:2s; +flatteur flatteur adj m s 3.51 6.49 2.65 2.16 +flatteurs flatteur adj m p 3.51 6.49 0.20 0.88 +flatteuse flatteur adj f s 3.51 6.49 0.59 2.30 +flatteuses flatteur adj f p 3.51 6.49 0.08 1.15 +flattez flatter ver 12.36 24.05 1.54 0.14 imp:pre:2p;ind:pre:2p; +flattions flatter ver 12.36 24.05 0.00 0.14 ind:imp:1p; +flattons flatter ver 12.36 24.05 0.04 0.00 imp:pre:1p;ind:pre:1p; +flattèrent flatter ver 12.36 24.05 0.00 0.20 ind:pas:3p; +flatté flatter ver m s 12.36 24.05 3.56 4.86 par:pas; +flattée flatter ver f s 12.36 24.05 1.78 2.70 par:pas; +flattées flatter ver f p 12.36 24.05 0.12 0.27 par:pas; +flattés flatter ver m p 12.36 24.05 0.26 0.61 par:pas; +flatulence flatulence nom f s 0.25 0.47 0.07 0.20 +flatulences flatulence nom f p 0.25 0.47 0.18 0.27 +flatulent flatulent adj m s 0.04 0.07 0.03 0.00 +flatulents flatulent adj m p 0.04 0.07 0.01 0.07 +flatuosité flatuosité nom f s 0.00 0.07 0.00 0.07 +flatus_vocis flatus_vocis nom m 0.00 0.07 0.00 0.07 +flave flave adj s 0.00 0.07 0.00 0.07 +flaveur flaveur nom f s 0.01 0.00 0.01 0.00 +flegmatique flegmatique adj m s 0.03 0.95 0.02 0.74 +flegmatiquement flegmatiquement adv 0.00 0.07 0.00 0.07 +flegmatiques flegmatique adj m p 0.03 0.95 0.01 0.20 +flegmatisme flegmatisme nom m s 0.00 0.07 0.00 0.07 +flegme flegme nom m s 0.22 2.43 0.22 2.43 +flemmard flemmard nom m s 0.80 0.41 0.63 0.20 +flemmardais flemmarder ver 0.25 0.20 0.10 0.07 ind:imp:1s; +flemmardant flemmarder ver 0.25 0.20 0.01 0.00 par:pre; +flemmarde flemmard nom f s 0.80 0.41 0.04 0.07 +flemmarder flemmarder ver 0.25 0.20 0.10 0.14 inf; +flemmardes flemmard adj f p 0.48 0.41 0.01 0.00 +flemmardise flemmardise nom f s 0.01 0.07 0.01 0.07 +flemmards flemmard nom m p 0.80 0.41 0.13 0.14 +flemme flemme nom f s 0.49 1.62 0.49 1.62 +flemmer flemmer ver 0.02 0.00 0.02 0.00 inf; +fleur fleur nom f s 99.75 164.39 25.20 42.97 +fleurage fleurage nom m s 0.00 0.27 0.00 0.27 +fleuraient fleurer ver 0.18 3.31 0.00 0.47 ind:imp:3p; +fleurais fleurer ver 0.18 3.31 0.00 0.07 ind:imp:1s; +fleurait fleurer ver 0.18 3.31 0.10 1.08 ind:imp:3s; +fleurant fleurer ver 0.18 3.31 0.01 1.42 par:pre; +fleurdelisé fleurdelisé adj m s 0.14 0.34 0.14 0.20 +fleurdelisée fleurdelisé adj f s 0.14 0.34 0.00 0.07 +fleurdelisés fleurdelisé adj m p 0.14 0.34 0.00 0.07 +fleure fleurer ver 0.18 3.31 0.02 0.20 ind:pre:3s; +fleurent fleurer ver 0.18 3.31 0.02 0.07 ind:pre:3p; +fleurer fleurer ver 0.18 3.31 0.03 0.00 inf; +fleuret fleuret nom m s 0.97 2.43 0.29 1.28 +fleuretais fleureter ver 0.01 0.07 0.01 0.00 ind:imp:2s; +fleuretait fleureter ver 0.01 0.07 0.00 0.07 ind:imp:3s; +fleurets fleuret nom m p 0.97 2.43 0.68 1.15 +fleurette fleurette nom f s 0.29 2.97 0.29 0.74 +fleurettes fleurette nom f p 0.29 2.97 0.00 2.23 +fleuri fleurir ver m s 3.95 16.49 0.69 2.30 par:pas; +fleurie fleuri adj f s 1.48 10.14 0.42 2.70 +fleuries fleuri adj f p 1.48 10.14 0.14 1.82 +fleurir fleurir ver 3.95 16.49 1.00 2.91 inf; +fleurira fleurir ver 3.95 16.49 0.04 0.07 ind:fut:3s; +fleuriraient fleurir ver 3.95 16.49 0.00 0.07 cnd:pre:3p; +fleurirent fleurir ver 3.95 16.49 0.01 0.07 ind:pas:3p; +fleuriront fleurir ver 3.95 16.49 0.23 0.27 ind:fut:3p; +fleuris fleuri adj m p 1.48 10.14 0.31 2.84 +fleurissaient fleurir ver 3.95 16.49 0.05 1.76 ind:imp:3p; +fleurissait fleurir ver 3.95 16.49 0.10 1.15 ind:imp:3s; +fleurissant fleurir ver 3.95 16.49 0.14 0.20 par:pre; +fleurisse fleurir ver 3.95 16.49 0.25 0.00 sub:pre:3s; +fleurissement fleurissement nom m s 0.00 0.14 0.00 0.14 +fleurissent fleurir ver 3.95 16.49 0.78 2.16 ind:pre:3p; +fleurissiez fleurir ver 3.95 16.49 0.01 0.00 ind:imp:2p; +fleurissons fleurir ver 3.95 16.49 0.01 0.00 ind:pre:1p; +fleuriste fleuriste nom s 4.08 8.51 3.73 7.23 +fleuristes fleuriste nom p 4.08 8.51 0.35 1.28 +fleurit fleurir ver 3.95 16.49 0.53 2.23 ind:pre:3s;ind:pas:3s; +fleuron fleuron nom m s 0.46 1.15 0.31 0.54 +fleuronner fleuronner ver 0.00 0.07 0.00 0.07 inf; +fleuronnée fleuronné adj f s 0.01 0.00 0.01 0.00 +fleurons fleuron nom m p 0.46 1.15 0.16 0.61 +fleurs fleur nom f p 99.75 164.39 74.56 121.42 +fleuve fleuve nom m s 21.58 46.89 19.81 39.32 +fleuves fleuve nom m p 21.58 46.89 1.77 7.57 +flexibilité flexibilité nom f s 0.44 0.34 0.44 0.34 +flexible flexible adj s 1.43 3.18 0.77 2.09 +flexibles flexible adj p 1.43 3.18 0.66 1.08 +flexion flexion nom f s 0.97 0.74 0.71 0.14 +flexions flexion nom f p 0.97 0.74 0.26 0.61 +flexuosité flexuosité nom f s 0.00 0.07 0.00 0.07 +flibuste flibuste nom f s 0.14 0.14 0.14 0.14 +flibustier flibustier nom m s 0.21 0.74 0.04 0.68 +flibustiers flibustier nom m p 0.21 0.74 0.17 0.07 +flic flic nom m s 153.50 72.43 67.53 30.95 +flicage flicage nom m s 0.01 0.14 0.01 0.14 +flicaille flicaille nom f s 0.20 1.28 0.20 1.22 +flicailles flicaille nom f p 0.20 1.28 0.00 0.07 +flicard flicard nom m s 0.31 2.03 0.29 1.28 +flicarde flicard adj f s 0.35 0.54 0.00 0.14 +flicardes flicard adj f p 0.35 0.54 0.00 0.07 +flicards flicard adj m p 0.35 0.54 0.13 0.00 +flics flic nom m p 153.50 72.43 85.97 41.49 +flingage flingage nom m s 0.01 0.27 0.01 0.27 +flingot flingot nom m s 0.02 0.41 0.02 0.20 +flingots flingot nom m p 0.02 0.41 0.00 0.20 +flingoté flingoter ver m s 0.00 0.07 0.00 0.07 par:pas; +flinguait flinguer ver 11.35 4.12 0.01 0.14 ind:imp:3s; +flinguant flinguer ver 11.35 4.12 0.03 0.00 par:pre; +flingue flingue nom m s 44.48 12.57 38.34 10.88 +flinguent flinguer ver 11.35 4.12 0.40 0.00 ind:pre:3p; +flinguer flinguer ver 11.35 4.12 4.05 2.36 inf; +flinguera flinguer ver 11.35 4.12 0.18 0.00 ind:fut:3s; +flinguerai flinguer ver 11.35 4.12 0.11 0.00 ind:fut:1s; +flingueraient flinguer ver 11.35 4.12 0.01 0.00 cnd:pre:3p; +flinguerais flinguer ver 11.35 4.12 0.24 0.00 cnd:pre:1s;cnd:pre:2s; +flingueront flinguer ver 11.35 4.12 0.02 0.00 ind:fut:3p; +flingues flingue nom m p 44.48 12.57 6.13 1.69 +flingueur flingueur nom m s 0.60 0.14 0.50 0.07 +flingueurs flingueur nom m p 0.60 0.14 0.10 0.07 +flingueuse flingueur nom f s 0.60 0.14 0.01 0.00 +flingueuses flingueuse nom f p 0.01 0.00 0.01 0.00 +flinguez flinguer ver 11.35 4.12 0.47 0.14 imp:pre:2p;ind:pre:2p; +flinguons flinguer ver 11.35 4.12 0.02 0.00 imp:pre:1p; +flinguât flinguer ver 11.35 4.12 0.00 0.07 sub:imp:3s; +flingué flinguer ver m s 11.35 4.12 2.30 0.81 par:pas; +flinguée flinguer ver f s 11.35 4.12 0.24 0.20 par:pas; +flingués flinguer ver m p 11.35 4.12 0.22 0.07 par:pas; +flint flint nom m s 0.00 0.07 0.00 0.07 +flip_flap flip_flap nom m 0.00 0.14 0.00 0.14 +flip_flop flip_flop nom m 0.07 0.00 0.07 0.00 +flip flip nom m s 1.63 1.42 1.58 1.28 +flippais flipper ver 14.29 3.65 0.08 0.07 ind:imp:1s;ind:imp:2s; +flippait flipper ver 14.29 3.65 0.26 0.47 ind:imp:3s; +flippant flipper ver 14.29 3.65 2.60 0.27 par:pre; +flippe flipper ver 14.29 3.65 1.98 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flippent flipper ver 14.29 3.65 0.21 0.07 ind:pre:3p; +flipper flipper ver 14.29 3.65 6.58 1.69 inf; +flipperais flipper ver 14.29 3.65 0.04 0.00 cnd:pre:1s; +flipperait flipper ver 14.29 3.65 0.09 0.00 cnd:pre:3s; +flipperont flipper ver 14.29 3.65 0.11 0.00 ind:fut:3p; +flippers flipper nom m p 1.93 2.43 0.32 0.95 +flippes flipper ver 14.29 3.65 0.69 0.00 ind:pre:2s; +flippé flipper ver m s 14.29 3.65 1.57 0.27 par:pas; +flippée flippé adj f s 0.32 0.20 0.13 0.14 +flippés flippé nom m p 0.11 0.95 0.04 0.07 +flips flip nom m p 1.63 1.42 0.05 0.14 +fliquer fliquer ver 0.00 0.07 0.00 0.07 inf; +fliquesse fliquesse nom f s 0.02 0.00 0.02 0.00 +fliqué fliqué adj m s 0.14 0.07 0.00 0.07 +fliqués fliqué adj m p 0.14 0.07 0.14 0.00 +flirt flirt nom m s 2.29 3.65 1.98 2.64 +flirta flirter ver 7.06 3.04 0.02 0.14 ind:pas:3s; +flirtaient flirter ver 7.06 3.04 0.01 0.07 ind:imp:3p; +flirtais flirter ver 7.06 3.04 0.51 0.07 ind:imp:1s;ind:imp:2s; +flirtait flirter ver 7.06 3.04 0.55 0.81 ind:imp:3s; +flirtant flirter ver 7.06 3.04 0.29 0.14 par:pre; +flirtation flirtation nom f s 0.01 0.00 0.01 0.00 +flirte flirter ver 7.06 3.04 1.42 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flirtent flirter ver 7.06 3.04 0.07 0.07 ind:pre:3p; +flirter flirter ver 7.06 3.04 2.91 0.54 inf; +flirteront flirter ver 7.06 3.04 0.00 0.07 ind:fut:3p; +flirtes flirter ver 7.06 3.04 0.38 0.00 ind:pre:2s; +flirteur flirteur adj m s 0.11 0.14 0.10 0.07 +flirteuse flirteur nom f s 0.11 0.07 0.01 0.07 +flirteuses flirteur adj f p 0.11 0.14 0.00 0.07 +flirtez flirter ver 7.06 3.04 0.14 0.00 imp:pre:2p;ind:pre:2p; +flirtiez flirter ver 7.06 3.04 0.04 0.00 ind:imp:2p; +flirtons flirter ver 7.06 3.04 0.02 0.00 imp:pre:1p;ind:pre:1p; +flirts flirt nom m p 2.29 3.65 0.31 1.01 +flirtèrent flirter ver 7.06 3.04 0.00 0.14 ind:pas:3p; +flirté flirter ver m s 7.06 3.04 0.71 0.41 par:pas; +floc floc ono 0.33 2.57 0.33 2.57 +floche floche adj f s 0.03 0.20 0.03 0.00 +floches floche nom f p 0.00 0.27 0.00 0.20 +flocon flocon nom m s 2.61 8.92 0.19 1.35 +floconne floconner ver 0.00 0.34 0.00 0.27 ind:pre:3s; +floconnent floconner ver 0.00 0.34 0.00 0.07 ind:pre:3p; +floconneuse floconneux adj f s 0.08 0.54 0.04 0.20 +floconneuses floconneux adj f p 0.08 0.54 0.00 0.14 +floconneux floconneux adj m 0.08 0.54 0.05 0.20 +flocons flocon nom m p 2.61 8.92 2.42 7.57 +floculation floculation nom f s 0.01 0.00 0.01 0.00 +floculent floculer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +flâna flâner ver 1.15 9.05 0.00 0.20 ind:pas:3s; +flânai flâner ver 1.15 9.05 0.00 0.07 ind:pas:1s; +flânaient flâner ver 1.15 9.05 0.00 0.47 ind:imp:3p; +flânais flâner ver 1.15 9.05 0.03 0.07 ind:imp:1s; +flânait flâner ver 1.15 9.05 0.12 0.68 ind:imp:3s; +flânant flâner ver 1.15 9.05 0.02 1.55 par:pre; +flâne flâner ver 1.15 9.05 0.19 0.68 ind:pre:1s;ind:pre:3s; +flânent flâner ver 1.15 9.05 0.01 0.41 ind:pre:3p; +flâner flâner ver 1.15 9.05 0.70 3.65 inf; +flânera flâner ver 1.15 9.05 0.00 0.07 ind:fut:3s; +flânerais flâner ver 1.15 9.05 0.01 0.00 cnd:pre:1s; +flânerait flâner ver 1.15 9.05 0.01 0.00 cnd:pre:3s; +flânerie flânerie nom f s 0.11 2.43 0.01 1.76 +flâneries flânerie nom f p 0.11 2.43 0.10 0.68 +flâneront flâner ver 1.15 9.05 0.00 0.07 ind:fut:3p; +flâneur flâneur nom m s 0.03 1.69 0.01 0.88 +flâneurs flâneur nom m p 0.03 1.69 0.01 0.68 +flâneuse flâneuse nom f s 0.01 0.00 0.01 0.00 +flâneuses flâneur nom f p 0.03 1.69 0.00 0.14 +flonflon flonflon nom m s 0.22 1.35 0.00 0.07 +flonflons flonflon nom m p 0.22 1.35 0.22 1.28 +flânions flâner ver 1.15 9.05 0.02 0.14 ind:imp:1p; +flânochent flânocher ver 0.00 0.14 0.00 0.07 ind:pre:3p; +flânocher flânocher ver 0.00 0.14 0.00 0.07 inf; +flânons flâner ver 1.15 9.05 0.00 0.07 ind:pre:1p; +flâné flâner ver m s 1.15 9.05 0.03 0.95 par:pas; +flood flood adj s 0.33 0.00 0.33 0.00 +flop flop ono 0.14 0.20 0.14 0.20 +flops flop nom m p 0.76 0.27 0.08 0.00 +flopée flopée nom f s 0.27 0.74 0.26 0.61 +flopées flopée nom f p 0.27 0.74 0.01 0.14 +floraison floraison nom f s 0.53 4.12 0.29 3.18 +floraisons floraison nom f p 0.53 4.12 0.24 0.95 +floral floral adj m s 0.69 1.49 0.28 0.34 +florale floral adj f s 0.69 1.49 0.32 0.27 +florales floral adj f p 0.69 1.49 0.05 0.41 +floralies floralies nom f p 0.02 0.07 0.02 0.07 +floraux floral adj m p 0.69 1.49 0.04 0.47 +flore flore nom f s 0.59 1.55 0.56 1.35 +florence florence nom f s 0.00 0.07 0.00 0.07 +florentin florentin adj m s 0.58 1.49 0.21 0.47 +florentine florentin adj f s 0.58 1.49 0.20 0.41 +florentines florentin adj f p 0.58 1.49 0.14 0.14 +florentins florentin adj m p 0.58 1.49 0.04 0.47 +flores flore nom f p 0.59 1.55 0.02 0.20 +florilège florilège nom m s 0.00 0.14 0.00 0.14 +florin florin nom m s 3.55 1.76 1.08 0.27 +florins florin nom m p 3.55 1.76 2.48 1.49 +florissaient florissaient ver 0.00 0.07 0.00 0.07 inf; +florissait florissait ver 0.00 0.14 0.00 0.14 inf; +florissant florissant adj m s 0.97 2.30 0.28 0.74 +florissante florissant adj f s 0.97 2.30 0.32 0.81 +florissantes florissant adj f p 0.97 2.30 0.33 0.47 +florissants florissant adj m p 0.97 2.30 0.04 0.27 +florès florès adv 0.00 0.54 0.00 0.54 +floréal floréal nom m s 0.00 0.20 0.00 0.20 +flot flot nom m s 10.28 45.95 4.66 29.59 +flots flot nom m p 10.28 45.95 5.62 16.35 +flotta flotter ver 12.79 63.85 0.01 0.81 ind:pas:3s; +flottabilité flottabilité nom f s 0.02 0.00 0.02 0.00 +flottage flottage nom m s 0.00 0.07 0.00 0.07 +flottaient flotter ver 12.79 63.85 0.47 6.62 ind:imp:3p; +flottais flotter ver 12.79 63.85 0.54 0.81 ind:imp:1s;ind:imp:2s; +flottaison flottaison nom f s 0.12 1.28 0.12 1.22 +flottaisons flottaison nom f p 0.12 1.28 0.00 0.07 +flottait flotter ver 12.79 63.85 0.96 19.80 ind:imp:3s; +flottant flottant adj m s 2.21 13.31 1.01 4.12 +flottante flottant adj f s 2.21 13.31 0.93 4.59 +flottantes flottant adj f p 2.21 13.31 0.12 2.43 +flottants flottant adj m p 2.21 13.31 0.15 2.16 +flottation flottation nom f s 0.01 0.00 0.01 0.00 +flotte flotte nom f s 16.36 27.64 16.22 26.22 +flottement flottement nom m s 0.30 2.43 0.30 2.30 +flottements flottement nom m p 0.30 2.43 0.00 0.14 +flottent flotter ver 12.79 63.85 1.07 5.34 ind:pre:3p; +flotter flotter ver 12.79 63.85 3.16 10.68 inf; +flottera flotter ver 12.79 63.85 0.58 0.00 ind:fut:3s; +flotteraient flotter ver 12.79 63.85 0.00 0.14 cnd:pre:3p; +flotterait flotter ver 12.79 63.85 0.04 0.20 cnd:pre:3s; +flotteras flotter ver 12.79 63.85 0.05 0.00 ind:fut:2s; +flotterez flotter ver 12.79 63.85 0.04 0.00 ind:fut:2p; +flotteront flotter ver 12.79 63.85 0.01 0.07 ind:fut:3p; +flottes flotter ver 12.79 63.85 0.30 0.07 ind:pre:2s; +flotteur flotteur nom m s 0.70 1.62 0.39 0.68 +flotteurs flotteur nom m p 0.70 1.62 0.31 0.95 +flottez flotter ver 12.79 63.85 0.30 0.20 imp:pre:2p;ind:pre:2p; +flottiez flotter ver 12.79 63.85 0.14 0.07 ind:imp:2p; +flottille flottille nom f s 0.28 1.76 0.28 1.42 +flottilles flottille nom f p 0.28 1.76 0.00 0.34 +flottions flotter ver 12.79 63.85 0.00 0.14 ind:imp:1p; +flottât flotter ver 12.79 63.85 0.00 0.07 sub:imp:3s; +flottèrent flotter ver 12.79 63.85 0.01 0.54 ind:pas:3p; +flotté flotter ver m s 12.79 63.85 0.37 1.15 par:pas; +flottée flotter ver f s 12.79 63.85 0.00 0.20 par:pas; +flottées flotter ver f p 12.79 63.85 0.00 0.20 par:pas; +flottés flotter ver m p 12.79 63.85 0.00 0.27 par:pas; +flou flou adj m s 8.18 16.15 4.91 6.08 +flouant flouer ver 0.84 0.95 0.00 0.07 par:pre; +floue flou adj f s 8.18 16.15 2.25 4.39 +flouer flouer ver 0.84 0.95 0.07 0.00 inf; +flouerie flouerie nom f s 0.00 0.07 0.00 0.07 +floues flou adj f p 8.18 16.15 0.76 2.57 +flous flou adj m p 8.18 16.15 0.27 3.11 +flouse flouse nom m s 0.01 0.14 0.01 0.14 +floué flouer ver m s 0.84 0.95 0.39 0.54 par:pas; +flouée flouer ver f s 0.84 0.95 0.06 0.07 par:pas; +floués flouer ver m p 0.84 0.95 0.30 0.07 par:pas; +flouve flouve nom f s 0.00 0.07 0.00 0.07 +flouzaille flouzaille nom f s 0.00 0.07 0.00 0.07 +flouze flouze nom m s 0.23 0.34 0.23 0.34 +flèche flèche nom f s 12.76 25.00 8.21 15.54 +flèches flèche nom f p 12.76 25.00 4.55 9.46 +fluaient fluer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +fluait fluer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +fléau fléau nom m s 5.10 4.39 4.47 3.04 +fléaux fléau nom m p 5.10 4.39 0.63 1.35 +flubes fluber ver 0.00 0.88 0.00 0.88 ind:pre:2s; +flécher flécher ver 0.02 0.54 0.01 0.07 inf; +fléchette fléchette nom f s 1.60 1.28 0.33 0.34 +fléchettes fléchette nom f p 1.60 1.28 1.27 0.95 +fléchi fléchir ver m s 1.54 9.32 0.21 1.08 par:pas; +fléchie fléchir ver f s 1.54 9.32 0.14 0.34 par:pas; +fléchies fléchir ver f p 1.54 9.32 0.00 0.34 par:pas; +fléchir fléchir ver 1.54 9.32 0.58 2.64 inf; +fléchiraient fléchir ver 1.54 9.32 0.01 0.00 cnd:pre:3p; +fléchirait fléchir ver 1.54 9.32 0.00 0.07 cnd:pre:3s; +fléchirent fléchir ver 1.54 9.32 0.00 0.07 ind:pas:3p; +fléchis fléchir ver m p 1.54 9.32 0.17 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fléchissaient fléchir ver 1.54 9.32 0.00 0.41 ind:imp:3p; +fléchissais fléchir ver 1.54 9.32 0.00 0.07 ind:imp:1s; +fléchissait fléchir ver 1.54 9.32 0.01 0.61 ind:imp:3s; +fléchissant fléchir ver 1.54 9.32 0.00 0.61 par:pre; +fléchisse fléchir ver 1.54 9.32 0.00 0.20 sub:pre:3s; +fléchissement fléchissement nom m s 0.01 1.15 0.01 1.01 +fléchissements fléchissement nom m p 0.01 1.15 0.00 0.14 +fléchissent fléchir ver 1.54 9.32 0.02 0.47 ind:pre:3p; +fléchisseur fléchisseur adj m s 0.01 0.00 0.01 0.00 +fléchissez fléchir ver 1.54 9.32 0.02 0.00 imp:pre:2p;ind:pre:2p; +fléchissions fléchir ver 1.54 9.32 0.00 0.07 ind:imp:1p; +fléchissons fléchir ver 1.54 9.32 0.01 0.00 ind:pre:1p; +fléchit fléchir ver 1.54 9.32 0.37 1.76 ind:pre:3s;ind:pas:3s; +fléché flécher ver m s 0.02 0.54 0.01 0.14 par:pas; +fléchée fléché adj f s 0.09 0.54 0.08 0.14 +fléchées flécher ver f p 0.02 0.54 0.00 0.07 par:pas; +fléchées fléché adj f p 0.09 0.54 0.00 0.07 +fléchés fléché adj m p 0.09 0.54 0.01 0.07 +fluctuait fluctuer ver 0.17 0.68 0.01 0.07 ind:imp:3s; +fluctuant fluctuant adj m s 0.11 0.41 0.07 0.20 +fluctuante fluctuant adj f s 0.11 0.41 0.04 0.20 +fluctuation fluctuation nom f s 0.85 0.95 0.29 0.07 +fluctuations fluctuation nom f p 0.85 0.95 0.56 0.88 +fluctue fluctuer ver 0.17 0.68 0.11 0.27 ind:pre:3s; +fluctuent fluctuer ver 0.17 0.68 0.03 0.07 ind:pre:3p; +fluctuer fluctuer ver 0.17 0.68 0.02 0.07 inf; +fluctuerait fluctuer ver 0.17 0.68 0.00 0.07 cnd:pre:3s; +fluctué fluctuer ver m s 0.17 0.68 0.00 0.14 par:pas; +fluence fluence nom f s 0.01 0.00 0.01 0.00 +fluet fluet adj m s 0.32 4.32 0.23 1.69 +fluets fluet adj m p 0.32 4.32 0.00 0.34 +fluette fluet adj f s 0.32 4.32 0.08 2.03 +fluettes fluet adj f p 0.32 4.32 0.00 0.27 +fluide fluide adj s 1.73 4.80 1.58 3.78 +fluidement fluidement adv 0.00 0.14 0.00 0.14 +fluides fluide nom m p 3.27 2.43 1.78 0.68 +fluidifiant fluidifiant nom m s 0.03 0.00 0.03 0.00 +fluidifier fluidifier ver 0.03 0.07 0.01 0.07 inf; +fluidifié fluidifier ver m s 0.03 0.07 0.01 0.00 par:pas; +fluidiques fluidique adj p 0.00 0.07 0.00 0.07 +fluidité fluidité nom f s 0.39 1.35 0.39 1.35 +fluo fluo adj 0.56 0.20 0.56 0.20 +fléole fléole nom f s 0.00 0.07 0.00 0.07 +fluor fluor nom m s 0.12 0.00 0.12 0.00 +fluorescence fluorescence nom f s 0.05 0.14 0.05 0.14 +fluorescent fluorescent adj m s 0.60 0.95 0.14 0.47 +fluorescente fluorescent adj f s 0.60 0.95 0.12 0.07 +fluorescentes fluorescent adj f p 0.60 0.95 0.26 0.20 +fluorescents fluorescent adj m p 0.60 0.95 0.08 0.20 +fluorescéine fluorescéine nom f s 0.01 0.00 0.01 0.00 +fluorhydrique fluorhydrique adj m s 0.01 0.00 0.01 0.00 +fluorite fluorite nom f s 0.04 0.00 0.04 0.00 +fluorée fluoré adj f s 0.04 0.00 0.04 0.00 +fluorure fluorure nom m s 0.17 0.07 0.17 0.07 +flush flush nom m s 1.17 0.07 1.17 0.07 +flétan flétan nom m s 0.26 0.07 0.23 0.07 +flétans flétan nom m p 0.26 0.07 0.02 0.00 +flétrît flétrir ver 1.78 6.08 0.00 0.07 sub:imp:3s; +flétri flétrir ver m s 1.78 6.08 0.32 1.69 par:pas; +flétrie flétrir ver f s 1.78 6.08 0.23 1.01 par:pas; +flétries flétrir ver f p 1.78 6.08 0.03 1.08 par:pas; +flétrir flétrir ver 1.78 6.08 0.23 0.27 inf; +flétrira flétrir ver 1.78 6.08 0.01 0.07 ind:fut:3s; +flétrirai flétrir ver 1.78 6.08 0.01 0.00 ind:fut:1s; +flétrirent flétrir ver 1.78 6.08 0.00 0.07 ind:pas:3p; +flétriront flétrir ver 1.78 6.08 0.01 0.00 ind:fut:3p; +flétris flétrir ver m p 1.78 6.08 0.33 0.95 par:pas; +flétrissaient flétrir ver 1.78 6.08 0.00 0.14 ind:imp:3p; +flétrissait flétrir ver 1.78 6.08 0.01 0.41 ind:imp:3s; +flétrissant flétrissant adj m s 0.00 0.07 0.00 0.07 +flétrissement flétrissement nom m s 0.10 0.00 0.10 0.00 +flétrissent flétrir ver 1.78 6.08 0.06 0.14 ind:pre:3p; +flétrissure flétrissure nom f s 0.00 0.88 0.00 0.61 +flétrissures flétrissure nom f p 0.00 0.88 0.00 0.27 +flétrit flétrir ver 1.78 6.08 0.54 0.20 ind:pre:3s;ind:pas:3s; +fluvial fluvial adj m s 0.60 1.35 0.16 0.74 +fluviale fluvial adj f s 0.60 1.35 0.33 0.27 +fluviales fluvial adj f p 0.60 1.35 0.11 0.07 +fluviatile fluviatile adj m s 0.00 0.07 0.00 0.07 +fluviaux fluvial adj m p 0.60 1.35 0.01 0.27 +flux flux nom m 4.07 6.42 4.07 6.42 +fluxe fluxer ver 0.01 0.00 0.01 0.00 ind:pre:3s; +fluxion fluxion nom f s 0.29 0.47 0.29 0.47 +foc foc nom m s 0.31 1.28 0.29 1.22 +focal focal adj m s 0.68 0.07 0.25 0.07 +focale focal adj f s 0.68 0.07 0.36 0.00 +focales focal adj f p 0.68 0.07 0.05 0.00 +focalisation focalisation nom f s 0.01 0.00 0.01 0.00 +focalise focaliser ver 1.81 0.34 0.52 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +focaliser focaliser ver 1.81 0.34 0.59 0.07 inf; +focalisez focaliser ver 1.81 0.34 0.22 0.00 imp:pre:2p;ind:pre:2p; +focalisons focaliser ver 1.81 0.34 0.05 0.00 imp:pre:1p;ind:pre:1p; +focalisé focaliser ver m s 1.81 0.34 0.35 0.00 par:pas; +focalisés focaliser ver m p 1.81 0.34 0.08 0.07 par:pas; +focaux focal adj m p 0.68 0.07 0.01 0.00 +fâcha fâcher ver 46.63 21.96 0.04 1.42 ind:pas:3s; +fâchai fâcher ver 46.63 21.96 0.00 0.07 ind:pas:1s; +fâchaient fâcher ver 46.63 21.96 0.01 0.27 ind:imp:3p; +fâchais fâcher ver 46.63 21.96 0.01 0.07 ind:imp:1s; +fâchait fâcher ver 46.63 21.96 0.04 1.01 ind:imp:3s; +fâche fâcher ver 46.63 21.96 11.69 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fâchent fâcher ver 46.63 21.96 0.10 0.20 ind:pre:3p; +fâcher fâcher ver 46.63 21.96 5.08 4.05 inf; +fâchera fâcher ver 46.63 21.96 0.49 0.07 ind:fut:3s; +fâcherai fâcher ver 46.63 21.96 0.43 0.07 ind:fut:1s; +fâcherais fâcher ver 46.63 21.96 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +fâcherait fâcher ver 46.63 21.96 0.28 0.20 cnd:pre:3s; +fâcheras fâcher ver 46.63 21.96 0.16 0.07 ind:fut:2s; +fâcherie fâcherie nom f s 0.14 0.47 0.14 0.20 +fâcheries fâcherie nom f p 0.14 0.47 0.00 0.27 +fâcheront fâcher ver 46.63 21.96 0.01 0.00 ind:fut:3p; +fâches fâcher ver 46.63 21.96 1.60 0.34 ind:pre:2s; +fâcheuse fâcheux adj f s 3.79 8.85 0.80 2.70 +fâcheusement fâcheusement adv 0.03 0.88 0.03 0.88 +fâcheuses fâcheux adj f p 3.79 8.85 0.85 1.76 +fâcheux fâcheux adj m 3.79 8.85 2.13 4.39 +fâchez fâcher ver 46.63 21.96 2.25 0.74 imp:pre:2p;ind:pre:2p; +fâchiez fâcher ver 46.63 21.96 0.01 0.00 ind:imp:2p; +fâchions fâcher ver 46.63 21.96 0.10 0.00 ind:imp:1p; +fâchons fâcher ver 46.63 21.96 0.05 0.00 imp:pre:1p; +fâchèrent fâcher ver 46.63 21.96 0.00 0.14 ind:pas:3p; +fâché fâcher ver m s 46.63 21.96 12.81 4.73 par:pas; +fâchée fâcher ver f s 46.63 21.96 8.90 2.16 par:pas; +fâchées fâcher ver f p 46.63 21.96 0.43 0.20 par:pas; +fâchés fâcher ver m p 46.63 21.96 2.13 1.08 par:pas; +focs foc nom m p 0.31 1.28 0.02 0.07 +foehn foehn nom m s 0.04 0.00 0.04 0.00 +foetal foetal adj m s 1.05 1.35 0.27 0.34 +foetale foetal adj f s 1.05 1.35 0.69 1.01 +foetales foetal adj f p 1.05 1.35 0.01 0.00 +foetaux foetal adj m p 1.05 1.35 0.08 0.00 +foetus foetus nom m 3.06 2.57 3.06 2.57 +fofolle fofolle adj f s 0.27 0.00 0.25 0.00 +fofolles fofolle adj f p 0.27 0.00 0.02 0.00 +foi foi nom f s 54.06 76.49 54.06 76.49 +foie foie nom m s 23.48 17.97 22.27 15.47 +foies foie nom m p 23.48 17.97 1.21 2.50 +foil foil nom m s 0.01 0.00 0.01 0.00 +foin foin nom m s 6.73 17.91 6.06 16.01 +foins foin nom m p 6.73 17.91 0.67 1.89 +foira foirer ver 14.76 2.09 0.00 0.07 ind:pas:3s; +foirade foirade nom f s 0.00 0.34 0.00 0.20 +foirades foirade nom f p 0.00 0.34 0.00 0.14 +foiraient foirer ver 14.76 2.09 0.01 0.14 ind:imp:3p; +foirail foirail nom m s 0.00 0.47 0.00 0.41 +foirails foirail nom m p 0.00 0.47 0.00 0.07 +foirais foirer ver 14.76 2.09 0.01 0.00 ind:imp:1s; +foirait foirer ver 14.76 2.09 0.07 0.20 ind:imp:3s; +foire foire nom f s 11.83 15.95 11.11 13.78 +foirent foirer ver 14.76 2.09 0.16 0.07 ind:pre:3p; +foirer foirer ver 14.76 2.09 4.60 0.34 inf; +foirera foirer ver 14.76 2.09 0.05 0.00 ind:fut:3s; +foires foire nom f p 11.83 15.95 0.72 2.16 +foireuse foireux adj f s 3.20 4.05 0.37 0.41 +foireuses foireux adj f p 3.20 4.05 0.26 0.61 +foireux foireux adj m 3.20 4.05 2.57 3.04 +foirez foirer ver 14.76 2.09 0.15 0.00 imp:pre:2p;ind:pre:2p; +foiridon foiridon nom m s 0.00 0.20 0.00 0.20 +foiré foirer ver m s 14.76 2.09 6.96 0.74 par:pas; +foirée foirer ver f s 14.76 2.09 0.11 0.00 par:pas; +foirées foirer ver f p 14.76 2.09 0.02 0.07 par:pas; +foirés foirer ver m p 14.76 2.09 0.03 0.07 par:pas; +fois fois nom f p 899.25 1140.00 899.25 1140.00 +foison foison nom f s 0.31 1.15 0.31 1.15 +foisonnaient foisonner ver 0.09 1.42 0.00 0.41 ind:imp:3p; +foisonnait foisonner ver 0.09 1.42 0.00 0.07 ind:imp:3s; +foisonnant foisonner ver 0.09 1.42 0.01 0.14 par:pre; +foisonnante foisonnant adj f s 0.10 0.88 0.10 0.34 +foisonnantes foisonnant adj f p 0.10 0.88 0.00 0.20 +foisonne foisonner ver 0.09 1.42 0.02 0.14 ind:pre:3s; +foisonnement foisonnement nom m s 0.00 1.55 0.00 1.55 +foisonnent foisonner ver 0.09 1.42 0.04 0.47 ind:pre:3p; +foisonner foisonner ver 0.09 1.42 0.01 0.14 inf; +foisonneraient foisonner ver 0.09 1.42 0.00 0.07 cnd:pre:3p; +foisonneront foisonner ver 0.09 1.42 0.01 0.00 ind:fut:3p; +fol fol adj m s 0.66 1.62 0.41 1.28 +folasse folasse nom f s 0.01 0.00 0.01 0.00 +foldingue foldingue adj s 0.24 0.20 0.24 0.07 +foldingues foldingue nom p 0.07 0.07 0.03 0.00 +foliacée foliacé adj f s 0.01 0.00 0.01 0.00 +folichon folichon adj m s 0.72 0.27 0.69 0.20 +folichonnait folichonner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +folichonne folichon adj f s 0.72 0.27 0.02 0.00 +folichonneries folichonnerie nom f p 0.00 0.07 0.00 0.07 +folichonnes folichon adj f p 0.72 0.27 0.01 0.07 +folie folie nom f s 52.39 60.74 49.01 52.43 +folies folie nom f p 52.39 60.74 3.38 8.31 +folingue folingue adj m s 0.02 0.68 0.02 0.61 +folingues folingue adj p 0.02 0.68 0.00 0.07 +folio folio nom m s 0.02 0.54 0.02 0.41 +folioles foliole nom f p 0.00 0.14 0.00 0.14 +folios folio nom m p 0.02 0.54 0.00 0.14 +folique folique adj m s 0.13 0.00 0.13 0.00 +folk folk nom m s 1.73 2.64 1.30 2.64 +folklo folklo adj s 0.04 0.47 0.04 0.47 +folklore folklore nom m s 0.86 3.78 0.85 3.72 +folklores folklore nom m p 0.86 3.78 0.01 0.07 +folklorique folklorique adj s 1.73 1.96 0.79 0.95 +folkloriques folklorique adj p 1.73 1.96 0.94 1.01 +folkloriste folkloriste nom s 0.00 0.20 0.00 0.14 +folkloristes folkloriste nom p 0.00 0.20 0.00 0.07 +folks folk nom m p 1.73 2.64 0.42 0.00 +folle fou adj f s 321.31 164.32 84.38 46.01 +folledingue folledingue nom s 0.02 0.00 0.02 0.00 +follement follement adv 4.15 6.42 4.15 6.42 +folles fou adj f p 321.31 164.32 6.47 11.62 +follet follet adj m s 0.30 3.11 0.08 1.15 +follets follet adj m p 0.30 3.11 0.23 1.55 +follette follet adj f s 0.30 3.11 0.00 0.20 +follettes follet adj f p 0.30 3.11 0.00 0.20 +folliculaire folliculaire adj f s 0.05 0.00 0.05 0.00 +folliculaires folliculaire nom m p 0.00 0.07 0.00 0.07 +follicule follicule nom m s 0.36 0.00 0.15 0.00 +follicules follicule nom m p 0.36 0.00 0.21 0.00 +folliculite folliculite nom f s 0.02 0.00 0.02 0.00 +follingue follingue adj s 0.00 0.07 0.00 0.07 +folâtraient folâtrer ver 0.36 0.95 0.00 0.34 ind:imp:3p; +folâtrait folâtrer ver 0.36 0.95 0.02 0.14 ind:imp:3s; +folâtre folâtrer ver 0.36 0.95 0.30 0.20 imp:pre:2s;ind:pre:3s; +folâtrent folâtrer ver 0.36 0.95 0.00 0.07 ind:pre:3p; +folâtrer folâtrer ver 0.36 0.95 0.04 0.20 inf; +folâtreries folâtrerie nom f p 0.01 0.07 0.01 0.07 +folâtres folâtre adj p 0.28 0.74 0.01 0.34 +fols fol adj m p 0.66 1.62 0.25 0.34 +fomentaient fomenter ver 0.44 1.35 0.00 0.07 ind:imp:3p; +fomentait fomenter ver 0.44 1.35 0.00 0.20 ind:imp:3s; +fomentateurs fomentateur nom m p 0.01 0.00 0.01 0.00 +fomente fomenter ver 0.44 1.35 0.24 0.07 ind:pre:1s;ind:pre:3s; +fomentent fomenter ver 0.44 1.35 0.04 0.14 ind:pre:3p; +fomenter fomenter ver 0.44 1.35 0.06 0.61 inf; +fomenté fomenter ver m s 0.44 1.35 0.11 0.20 par:pas; +fomentée fomenter ver f s 0.44 1.35 0.00 0.07 par:pas; +fonce foncer ver 30.27 41.82 16.31 12.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +foncent foncer ver 30.27 41.82 1.44 2.09 ind:pre:3p; +foncer foncer ver 30.27 41.82 3.34 6.01 inf; +foncera foncer ver 30.27 41.82 0.05 0.00 ind:fut:3s; +foncerai foncer ver 30.27 41.82 0.03 0.00 ind:fut:1s; +fonceraient foncer ver 30.27 41.82 0.03 0.14 cnd:pre:3p; +foncerais foncer ver 30.27 41.82 0.04 0.00 cnd:pre:1s; +foncerait foncer ver 30.27 41.82 0.03 0.07 cnd:pre:3s; +foncerons foncer ver 30.27 41.82 0.02 0.00 ind:fut:1p; +fonceront foncer ver 30.27 41.82 0.04 0.07 ind:fut:3p; +fonces foncer ver 30.27 41.82 1.16 0.20 ind:pre:2s;sub:pre:2s; +fonceur fonceur nom m s 0.72 0.14 0.42 0.14 +fonceurs fonceur nom m p 0.72 0.14 0.15 0.00 +fonceuse fonceur nom f s 0.72 0.14 0.16 0.00 +foncez foncer ver 30.27 41.82 2.69 0.27 imp:pre:2p;ind:pre:2p; +foncier foncier adj m s 1.20 2.64 0.33 1.28 +fonciers foncier adj m p 1.20 2.64 0.62 0.41 +fonciez foncer ver 30.27 41.82 0.02 0.00 ind:imp:2p; +foncions foncer ver 30.27 41.82 0.00 0.14 ind:imp:1p; +foncière foncier adj f s 1.20 2.64 0.20 0.81 +foncièrement foncièrement adv 0.18 2.09 0.18 2.09 +foncières foncier adj f p 1.20 2.64 0.05 0.14 +foncteur foncteur nom m s 0.01 0.00 0.01 0.00 +foncèrent foncer ver 30.27 41.82 0.05 0.47 ind:pas:3p; +fonction fonction nom f s 21.95 37.91 13.12 21.76 +fonctionna fonctionner ver 42.51 24.39 0.04 0.34 ind:pas:3s; +fonctionnaient fonctionner ver 42.51 24.39 0.48 1.42 ind:imp:3p; +fonctionnaire fonctionnaire nom s 8.13 26.89 5.03 11.28 +fonctionnaires fonctionnaire nom p 8.13 26.89 3.10 15.61 +fonctionnais fonctionner ver 42.51 24.39 0.03 0.00 ind:imp:1s; +fonctionnait fonctionner ver 42.51 24.39 1.24 5.47 ind:imp:3s; +fonctionnaliste fonctionnaliste adj f s 0.00 0.07 0.00 0.07 +fonctionnalité fonctionnalité nom f s 0.07 0.00 0.07 0.00 +fonctionnant fonctionner ver 42.51 24.39 0.17 1.22 par:pre; +fonctionnarisé fonctionnariser ver m s 0.00 0.14 0.00 0.07 par:pas; +fonctionnarisée fonctionnariser ver f s 0.00 0.14 0.00 0.07 par:pas; +fonctionnassent fonctionner ver 42.51 24.39 0.00 0.07 sub:imp:3p; +fonctionne fonctionner ver 42.51 24.39 23.76 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fonctionnel fonctionnel adj m s 2.05 1.55 1.28 0.47 +fonctionnelle fonctionnel adj f s 2.05 1.55 0.60 0.54 +fonctionnellement fonctionnellement adv 0.00 0.07 0.00 0.07 +fonctionnelles fonctionnel adj f p 2.05 1.55 0.04 0.20 +fonctionnels fonctionnel adj m p 2.05 1.55 0.13 0.34 +fonctionnement fonctionnement nom m s 2.69 6.01 2.69 6.01 +fonctionnent fonctionner ver 42.51 24.39 5.29 1.42 ind:pre:3p; +fonctionner fonctionner ver 42.51 24.39 6.59 7.03 inf; +fonctionnera fonctionner ver 42.51 24.39 0.91 0.07 ind:fut:3s; +fonctionneraient fonctionner ver 42.51 24.39 0.02 0.00 cnd:pre:3p; +fonctionnerait fonctionner ver 42.51 24.39 0.52 0.07 cnd:pre:3s; +fonctionneront fonctionner ver 42.51 24.39 0.13 0.07 ind:fut:3p; +fonctionnes fonctionner ver 42.51 24.39 0.20 0.00 ind:pre:2s; +fonctionnez fonctionner ver 42.51 24.39 0.07 0.00 ind:pre:2p; +fonctionnons fonctionner ver 42.51 24.39 0.07 0.00 ind:pre:1p; +fonctionnât fonctionner ver 42.51 24.39 0.00 0.34 sub:imp:3s; +fonctionné fonctionner ver m s 42.51 24.39 2.98 0.81 par:pas; +fonctions fonction nom f p 21.95 37.91 8.83 16.15 +foncé foncer ver m s 30.27 41.82 3.40 6.55 par:pas; +foncée foncé adj f s 4.06 11.08 0.75 1.62 +foncées foncé adj f p 4.06 11.08 0.14 0.47 +foncés foncé adj m p 4.06 11.08 0.69 1.08 +fond fond nom m s 110.07 376.15 110.07 376.15 +fondît fondre ver 17.29 38.18 0.00 0.07 sub:imp:3s; +fonda fonder ver 15.97 34.66 0.22 1.15 ind:pas:3s; +fondaient fonder ver 15.97 34.66 0.08 3.24 ind:imp:3p; +fondais fonder ver 15.97 34.66 0.11 0.81 ind:imp:1s;ind:imp:2s; +fondait fonder ver 15.97 34.66 0.25 7.97 ind:imp:3s; +fondamental fondamental adj m s 4.69 9.19 1.45 2.64 +fondamentale fondamental adj f s 4.69 9.19 1.55 4.39 +fondamentalement fondamentalement adv 2.03 1.15 2.03 1.15 +fondamentales fondamental adj f p 4.69 9.19 0.89 1.28 +fondamentalisme fondamentalisme nom m s 0.02 0.00 0.02 0.00 +fondamentaliste fondamentaliste adj s 0.19 0.00 0.11 0.00 +fondamentalistes fondamentaliste nom p 0.48 0.00 0.46 0.00 +fondamentaux fondamental adj m p 4.69 9.19 0.80 0.88 +fondant fondant nom m s 0.23 0.68 0.21 0.61 +fondante fondant adj f s 0.18 2.70 0.05 1.08 +fondantes fondant adj f p 0.18 2.70 0.00 0.20 +fondants fondant adj m p 0.18 2.70 0.03 0.20 +fondateur fondateur nom m s 5.10 2.16 2.40 1.69 +fondateurs fondateur nom m p 5.10 2.16 2.64 0.20 +fondation fondation nom f s 9.74 7.64 6.39 3.99 +fondations fondation nom f p 9.74 7.64 3.35 3.65 +fondatrice fondateur adj f s 1.91 1.55 0.09 0.07 +fondatrices fondatrice nom f p 0.01 0.00 0.01 0.00 +fonde fonder ver 15.97 34.66 2.23 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fondement fondement nom m s 2.47 3.78 1.76 2.43 +fondements fondement nom m p 2.47 3.78 0.71 1.35 +fondent fonder ver 15.97 34.66 1.21 3.85 ind:pre:3p;sub:pre:3p; +fonder fonder ver 15.97 34.66 4.21 4.26 inf; +fondera fonder ver 15.97 34.66 0.15 0.00 ind:fut:3s; +fonderais fonder ver 15.97 34.66 0.04 0.00 cnd:pre:1s; +fonderait fonder ver 15.97 34.66 0.02 0.00 cnd:pre:3s; +fonderez fonder ver 15.97 34.66 0.02 0.00 ind:fut:2p; +fonderie fonderie nom f s 0.53 1.42 0.51 0.41 +fonderies fonderie nom f p 0.53 1.42 0.03 1.01 +fonderons fonder ver 15.97 34.66 0.02 0.00 ind:fut:1p; +fonderont fonder ver 15.97 34.66 0.14 0.07 ind:fut:3p; +fondeur fondeur nom m s 0.34 0.41 0.34 0.41 +fondez fonder ver 15.97 34.66 0.33 0.00 imp:pre:2p;ind:pre:2p; +fondions fonder ver 15.97 34.66 0.02 0.07 ind:imp:1p; +fondirent fondre ver 17.29 38.18 0.02 0.68 ind:pas:3p; +fondis fondre ver 17.29 38.18 0.00 0.07 ind:pas:1s; +fondit fondre ver 17.29 38.18 0.04 2.97 ind:pas:3s; +fondons fonder ver 15.97 34.66 0.20 0.00 imp:pre:1p;ind:pre:1p; +fondât fonder ver 15.97 34.66 0.00 0.14 sub:imp:3s; +fondouk fondouk nom m s 0.00 0.07 0.00 0.07 +fondra fondre ver 17.29 38.18 0.28 0.27 ind:fut:3s; +fondrai fondre ver 17.29 38.18 0.16 0.00 ind:fut:1s; +fondraient fondre ver 17.29 38.18 0.01 0.20 cnd:pre:3p; +fondrait fondre ver 17.29 38.18 0.11 0.27 cnd:pre:3s; +fondras fondre ver 17.29 38.18 0.03 0.00 ind:fut:2s; +fondre fondre ver 17.29 38.18 8.03 17.70 inf; +fondriez fondre ver 17.29 38.18 0.01 0.00 cnd:pre:2p; +fondrière fondrière nom f s 0.01 1.96 0.00 0.61 +fondrières fondrière nom f p 0.01 1.96 0.01 1.35 +fonds fonds nom m 15.10 16.62 15.10 16.62 +fondèrent fonder ver 15.97 34.66 0.17 0.07 ind:pas:3p; +fondé fonder ver m s 15.97 34.66 4.09 4.73 par:pas; +fondu fondre ver m s 17.29 38.18 3.42 5.95 par:pas; +fondée fonder ver f s 15.97 34.66 1.28 3.31 par:pas; +fondue fondue nom f s 1.08 0.81 1.04 0.74 +fondées fonder ver f p 15.97 34.66 0.52 0.54 par:pas; +fondues fondre ver f p 17.29 38.18 0.11 0.81 par:pas; +fondés fonder ver m p 15.97 34.66 0.46 0.88 par:pas; +fondus fondu adj m p 1.82 2.84 0.22 0.47 +fongible fongible adj s 0.04 0.00 0.04 0.00 +fongicide fongicide nom m s 0.04 0.00 0.04 0.00 +fongique fongique adj s 0.05 0.00 0.05 0.00 +fongueuse fongueux adj f s 0.00 0.14 0.00 0.07 +fongueuses fongueux adj f p 0.00 0.14 0.00 0.07 +fongus fongus nom m 0.04 0.00 0.04 0.00 +font faire ver 8813.53 5328.99 193.61 153.92 ind:pre:3p; +fontaine fontaine nom f s 7.72 24.46 6.62 17.36 +fontaines fontaine nom f p 7.72 24.46 1.11 7.09 +fontainette fontainette nom f s 0.00 0.27 0.00 0.27 +fontainier fontainier nom m s 0.27 0.00 0.27 0.00 +fontanelle fontanelle nom f s 0.19 0.20 0.19 0.20 +fonte fonte nom f s 0.74 8.78 0.74 8.31 +fontes fonte nom f p 0.74 8.78 0.00 0.47 +fonça foncer ver 30.27 41.82 0.17 3.18 ind:pas:3s; +fonçai foncer ver 30.27 41.82 0.01 0.81 ind:pas:1s; +fonçaient foncer ver 30.27 41.82 0.21 1.76 ind:imp:3p; +fonçais foncer ver 30.27 41.82 0.14 0.81 ind:imp:1s;ind:imp:2s; +fonçait foncer ver 30.27 41.82 0.23 3.85 ind:imp:3s; +fonçant foncer ver 30.27 41.82 0.26 2.30 par:pre; +fonçons foncer ver 30.27 41.82 0.23 0.34 imp:pre:1p;ind:pre:1p; +fonts fonts nom m p 0.10 1.08 0.10 1.08 +foot foot nom m s 24.18 5.54 24.18 5.54 +football football nom m s 13.93 6.28 13.93 6.28 +footballeur_vedette footballeur_vedette nom m s 0.01 0.00 0.01 0.00 +footballeur footballeur nom m s 2.76 1.01 2.01 0.54 +footballeurs footballeur nom m p 2.76 1.01 0.71 0.47 +footballeuse footballeur nom f s 2.76 1.01 0.04 0.00 +footballistique footballistique adj f s 0.03 0.07 0.02 0.00 +footballistiques footballistique adj f p 0.03 0.07 0.01 0.07 +footeuse footeux adj f s 0.01 0.00 0.01 0.00 +footeux footeux nom m 0.04 0.00 0.04 0.00 +footing footing nom m s 0.45 0.34 0.45 0.34 +for for nom m s 21.32 8.51 21.32 8.51 +forage forage nom m s 0.91 0.27 0.82 0.20 +forages forage nom m p 0.91 0.27 0.09 0.07 +foraient forer ver 1.66 1.69 0.02 0.14 ind:imp:3p; +forain forain adj m s 2.14 6.22 0.39 1.42 +foraine forain adj f s 2.14 6.22 1.52 3.24 +foraines forain adj f p 2.14 6.22 0.23 1.08 +forains forain nom m p 0.44 2.50 0.34 1.01 +forait forer ver 1.66 1.69 0.14 0.27 ind:imp:3s; +foramen foramen nom m s 0.03 0.00 0.03 0.00 +foraminifères foraminifère nom m p 0.01 0.00 0.01 0.00 +forant forer ver 1.66 1.69 0.02 0.20 par:pre; +forban forban nom m s 0.19 1.01 0.03 0.74 +forbans forban nom m p 0.19 1.01 0.16 0.27 +force force adj_ind 1.41 4.86 1.41 4.86 +forcement forcement nom m s 0.81 0.07 0.81 0.07 +forcent forcer ver 64.64 75.41 1.14 1.08 ind:pre:3p; +forcené forcené nom m s 0.94 2.23 0.75 1.35 +forcenée forcené nom f s 0.94 2.23 0.02 0.20 +forcenées forcené nom f p 0.94 2.23 0.01 0.00 +forcenés forcené nom m p 0.94 2.23 0.16 0.68 +forceps forceps nom m 0.72 0.95 0.72 0.95 +forcer forcer ver 64.64 75.41 16.33 18.04 inf; +forcera forcer ver 64.64 75.41 0.76 0.34 ind:fut:3s; +forcerai forcer ver 64.64 75.41 0.47 0.20 ind:fut:1s; +forcerais forcer ver 64.64 75.41 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +forcerait forcer ver 64.64 75.41 0.14 0.20 cnd:pre:3s; +forceras forcer ver 64.64 75.41 0.05 0.00 ind:fut:2s; +forcerez forcer ver 64.64 75.41 0.11 0.00 ind:fut:2p; +forceront forcer ver 64.64 75.41 0.12 0.00 ind:fut:3p; +forces force nom f p 151.96 344.73 43.67 126.35 +forceur forceur nom m s 0.02 0.20 0.02 0.07 +forceurs forceur nom m p 0.02 0.20 0.00 0.14 +forcez forcer ver 64.64 75.41 2.81 0.74 imp:pre:2p;ind:pre:2p; +forci forcir ver m s 0.14 1.08 0.02 0.74 par:pas; +forciez forcer ver 64.64 75.41 0.06 0.00 ind:imp:2p; +forcing forcing nom m s 0.13 0.88 0.13 0.88 +forcions forcer ver 64.64 75.41 0.03 0.20 ind:imp:1p; +forcir forcir ver 0.14 1.08 0.01 0.20 inf; +forcis forcir ver m p 0.14 1.08 0.00 0.07 par:pas; +forcissait forcir ver 0.14 1.08 0.00 0.07 ind:imp:3s; +forcit forcir ver 0.14 1.08 0.11 0.00 ind:pre:3s; +forcèrent forcer ver 64.64 75.41 0.04 0.68 ind:pas:3p; +forcé forcer ver m s 64.64 75.41 16.33 16.55 par:pas; +forcée forcer ver f s 64.64 75.41 6.41 4.46 par:pas; +forcées forcer ver f p 64.64 75.41 0.94 0.61 par:pas; +forcément forcément adv 24.23 29.12 24.23 29.12 +forcés forcer ver m p 64.64 75.41 2.67 2.64 par:pas; +fore forer ver 1.66 1.69 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +foreign_office foreign_office nom m s 0.00 2.50 0.00 2.50 +forent forer ver 1.66 1.69 0.01 0.07 ind:pre:3p; +forer forer ver 1.66 1.69 0.80 0.47 inf; +forestier forestier adj m s 3.19 6.42 2.13 2.09 +forestiers forestier adj m p 3.19 6.42 0.42 0.61 +forestière forestier adj f s 3.19 6.42 0.49 2.91 +forestières forestier adj f p 3.19 6.42 0.14 0.81 +foret foret nom m s 1.56 0.54 1.16 0.14 +forets foret nom m p 1.56 0.54 0.40 0.41 +foreur foreur adj m s 0.43 0.00 0.42 0.00 +foreurs foreur nom m p 1.04 0.20 0.13 0.07 +foreuse foreur nom f s 1.04 0.20 0.68 0.14 +foreuses foreuse nom f p 0.17 0.00 0.17 0.00 +forez forer ver 1.66 1.69 0.03 0.00 ind:pre:2p; +forfait forfait nom m s 2.03 4.59 1.50 3.38 +forfaitaire forfaitaire adj s 0.05 0.20 0.05 0.14 +forfaitaires forfaitaire adj f p 0.05 0.20 0.00 0.07 +forfaits forfait nom m p 2.03 4.59 0.53 1.22 +forfaiture forfaiture nom f s 0.02 0.61 0.02 0.61 +forfanterie forfanterie nom f s 0.17 0.74 0.17 0.68 +forfanteries forfanterie nom f p 0.17 0.74 0.00 0.07 +forficules forficule nom f p 0.00 0.07 0.00 0.07 +forge forger ver 9.02 11.82 1.78 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +forgea forger ver 9.02 11.82 0.00 0.07 ind:pas:3s; +forgeage forgeage nom m s 0.14 0.00 0.14 0.00 +forgeaient forger ver 9.02 11.82 0.00 0.07 ind:imp:3p; +forgeais forger ver 9.02 11.82 0.00 0.07 ind:imp:1s; +forgeait forger ver 9.02 11.82 0.12 0.61 ind:imp:3s; +forgeant forger ver 9.02 11.82 0.10 0.27 par:pre; +forgent forger ver 9.02 11.82 0.31 0.20 ind:pre:3p; +forgeons forger ver 9.02 11.82 0.02 0.14 imp:pre:1p;ind:pre:1p; +forger forger ver 9.02 11.82 3.16 1.62 inf; +forgera forger ver 9.02 11.82 0.21 0.07 ind:fut:3s; +forgerai forger ver 9.02 11.82 0.20 0.00 ind:fut:1s; +forgeries forgerie nom f p 0.00 0.07 0.00 0.07 +forgeron forgeron nom m s 3.76 4.39 3.49 3.38 +forgeronne forgeron nom f s 3.76 4.39 0.02 0.00 +forgerons forgeron nom m p 3.76 4.39 0.25 1.01 +forges forge nom f p 1.64 8.58 0.13 0.95 +forgeur forgeur nom m s 0.15 0.00 0.15 0.00 +forgions forger ver 9.02 11.82 0.10 0.07 ind:imp:1p; +forgèrent forger ver 9.02 11.82 0.03 0.00 ind:pas:3p; +forgé forger ver m s 9.02 11.82 1.55 5.81 par:pas; +forgée forger ver f s 9.02 11.82 0.92 0.41 par:pas; +forgées forger ver f p 9.02 11.82 0.05 0.88 par:pas; +forgés forger ver m p 9.02 11.82 0.45 0.74 par:pas; +forints forint nom m p 0.14 0.00 0.14 0.00 +forlane forlane nom f s 0.10 0.00 0.10 0.00 +forlonger forlonger ver 0.00 0.14 0.00 0.07 inf; +forlongés forlonger ver m p 0.00 0.14 0.00 0.07 par:pas; +forma former ver 39.69 110.27 0.16 2.16 ind:pas:3s; +formage formage nom m s 0.00 0.07 0.00 0.07 +formai former ver 39.69 110.27 0.00 0.07 ind:pas:1s; +formaient former ver 39.69 110.27 0.73 16.96 ind:imp:3p; +formais former ver 39.69 110.27 0.01 0.47 ind:imp:1s; +formait former ver 39.69 110.27 1.42 11.69 ind:imp:3s; +formaldéhyde formaldéhyde nom m s 0.34 0.00 0.34 0.00 +formalisa formaliser ver 0.43 2.23 0.00 0.34 ind:pas:3s; +formalisaient formaliser ver 0.43 2.23 0.00 0.07 ind:imp:3p; +formalisais formaliser ver 0.43 2.23 0.00 0.14 ind:imp:1s; +formalisait formaliser ver 0.43 2.23 0.00 0.41 ind:imp:3s; +formalise formaliser ver 0.43 2.23 0.13 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +formaliser formaliser ver 0.43 2.23 0.04 0.68 inf; +formalisera formaliser ver 0.43 2.23 0.01 0.00 ind:fut:3s; +formaliserait formaliser ver 0.43 2.23 0.00 0.14 cnd:pre:3s; +formalisez formaliser ver 0.43 2.23 0.25 0.07 imp:pre:2p;ind:pre:2p; +formalisme formalisme nom m s 0.12 0.34 0.12 0.34 +formalisât formaliser ver 0.43 2.23 0.00 0.07 sub:imp:3s; +formaliste formaliste adj m s 0.02 0.27 0.02 0.07 +formalistes formaliste adj f p 0.02 0.27 0.00 0.20 +formalisé formalisé adj m s 0.01 0.00 0.01 0.00 +formalisée formaliser ver f s 0.43 2.23 0.00 0.07 par:pas; +formalisés formaliser ver m p 0.43 2.23 0.00 0.07 par:pas; +formalité formalité nom f s 7.08 7.03 3.77 2.97 +formalités formalité nom f p 7.08 7.03 3.30 4.05 +formant former ver 39.69 110.27 0.56 7.91 par:pre; +format format nom m s 1.90 8.11 1.80 6.96 +formatage formatage nom m s 0.07 0.00 0.07 0.00 +formater formater ver 0.13 0.00 0.04 0.00 inf; +formateur formateur adj m s 0.42 0.20 0.19 0.07 +formation formation nom f s 14.40 12.16 13.68 9.32 +formations formation nom f p 14.40 12.16 0.72 2.84 +formatrice formateur adj f s 0.42 0.20 0.12 0.14 +formatrices formateur adj f p 0.42 0.20 0.11 0.00 +formats format nom m p 1.90 8.11 0.10 1.15 +formaté formater ver m s 0.13 0.00 0.09 0.00 par:pas; +forme forme nom f s 94.19 176.69 82.61 137.91 +formel formel adj m s 4.55 9.05 2.40 3.31 +formelle formel adj f s 4.55 9.05 1.13 3.99 +formellement formellement adv 1.48 4.53 1.48 4.53 +formelles formel adj f p 4.55 9.05 0.40 0.81 +formels formel adj m p 4.55 9.05 0.62 0.95 +forment former ver 39.69 110.27 4.51 11.01 ind:pre:3p;sub:pre:3p; +former former ver 39.69 110.27 8.18 15.95 inf; +formera former ver 39.69 110.27 0.59 0.07 ind:fut:3s; +formerai former ver 39.69 110.27 0.10 0.07 ind:fut:1s; +formeraient former ver 39.69 110.27 0.28 0.54 cnd:pre:3p; +formerais former ver 39.69 110.27 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +formerait former ver 39.69 110.27 0.09 0.34 cnd:pre:3s; +formerez former ver 39.69 110.27 0.22 0.07 ind:fut:2p; +formeriez former ver 39.69 110.27 0.13 0.00 cnd:pre:2p; +formerons former ver 39.69 110.27 0.52 0.14 ind:fut:1p; +formeront former ver 39.69 110.27 0.42 0.41 ind:fut:3p; +formes forme nom f p 94.19 176.69 11.58 38.78 +formez former ver 39.69 110.27 2.70 0.27 imp:pre:2p;ind:pre:2p; +formica formica nom m s 0.28 2.03 0.28 1.96 +formicas formica nom m p 0.28 2.03 0.00 0.07 +formid formid adj f s 0.02 0.20 0.02 0.14 +formidable formidable adj s 54.23 34.32 51.79 30.07 +formidablement formidablement adv 0.24 1.42 0.24 1.42 +formidables formidable adj p 54.23 34.32 2.44 4.26 +formide formide adj s 0.01 0.27 0.01 0.20 +formides formide adj f p 0.01 0.27 0.00 0.07 +formids formid adj p 0.02 0.20 0.00 0.07 +formiez former ver 39.69 110.27 0.30 0.07 ind:imp:2p; +formions former ver 39.69 110.27 0.24 1.62 ind:imp:1p; +formique formique adj m s 0.04 0.07 0.04 0.07 +formol formol nom m s 0.88 0.74 0.88 0.74 +formons former ver 39.69 110.27 1.94 0.88 imp:pre:1p;ind:pre:1p; +formèrent former ver 39.69 110.27 0.28 1.42 ind:pas:3p; +formé former ver m s 39.69 110.27 5.50 14.32 par:pas; +formée former ver f s 39.69 110.27 2.00 5.47 ind:imp:3p;par:pas; +formées former ver f p 39.69 110.27 0.25 2.23 par:pas; +formula formuler ver 3.52 15.54 0.01 0.54 ind:pas:3s; +formulai formuler ver 3.52 15.54 0.00 0.14 ind:pas:1s; +formulaient formuler ver 3.52 15.54 0.00 0.14 ind:imp:3p; +formulaire formulaire nom m s 9.73 1.55 6.93 0.81 +formulaires formulaire nom m p 9.73 1.55 2.80 0.74 +formulais formuler ver 3.52 15.54 0.11 0.34 ind:imp:1s; +formulait formuler ver 3.52 15.54 0.01 1.08 ind:imp:3s; +formulant formuler ver 3.52 15.54 0.00 0.54 par:pre; +formulation formulation nom f s 0.41 1.15 0.28 1.01 +formulations formulation nom f p 0.41 1.15 0.14 0.14 +formule formule nom f s 12.53 34.39 10.97 22.84 +formulent formuler ver 3.52 15.54 0.01 0.20 ind:pre:3p; +formuler formuler ver 3.52 15.54 1.88 7.50 inf; +formulera formuler ver 3.52 15.54 0.00 0.20 ind:fut:3s; +formules formule nom f p 12.53 34.39 1.56 11.55 +formulettes formulette nom f p 0.00 0.07 0.00 0.07 +formulez formuler ver 3.52 15.54 0.07 0.14 imp:pre:2p;ind:pre:2p; +formulons formuler ver 3.52 15.54 0.04 0.07 imp:pre:1p;ind:pre:1p; +formulât formuler ver 3.52 15.54 0.00 0.07 sub:imp:3s; +formulé formuler ver m s 3.52 15.54 0.44 1.22 par:pas; +formulée formulé adj f s 0.26 1.69 0.13 0.54 +formulées formuler ver f p 3.52 15.54 0.08 1.15 par:pas; +formulés formulé adj m p 0.26 1.69 0.01 0.27 +formés former ver m p 39.69 110.27 1.49 3.92 par:pas; +fornicateur fornicateur nom m s 0.51 0.34 0.21 0.14 +fornicateurs fornicateur nom m p 0.51 0.34 0.11 0.20 +fornication fornication nom f s 1.06 1.22 1.05 0.95 +fornications fornication nom f p 1.06 1.22 0.01 0.27 +fornicatrice fornicateur nom f s 0.51 0.34 0.19 0.00 +forniquaient forniquer ver 0.89 1.22 0.01 0.14 ind:imp:3p; +forniquait forniquer ver 0.89 1.22 0.01 0.27 ind:imp:3s; +forniquant forniquer ver 0.89 1.22 0.05 0.07 par:pre; +fornique forniquer ver 0.89 1.22 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +forniquent forniquer ver 0.89 1.22 0.07 0.07 ind:pre:3p; +forniquer forniquer ver 0.89 1.22 0.51 0.47 inf; +forniqué forniquer ver m s 0.89 1.22 0.19 0.14 par:pas; +fors fors pre 0.01 0.27 0.01 0.27 +forsythias forsythia nom m p 0.00 0.07 0.00 0.07 +fort fort adv_sup 171.91 212.77 171.91 212.77 +forte fort adj_sup f s 95.28 140.27 42.42 62.64 +fortement fortement adv 4.25 15.68 4.25 15.68 +forteresse forteresse nom f s 7.53 16.96 7.38 14.05 +forteresses forteresse nom f p 7.53 16.96 0.14 2.91 +fortes fort adj_sup f p 95.28 140.27 7.92 16.35 +força forcer ver 64.64 75.41 0.34 3.38 ind:pas:3s; +forçage forçage nom m s 0.04 0.14 0.04 0.14 +forçai forcer ver 64.64 75.41 0.11 0.34 ind:pas:1s; +forçaient forcer ver 64.64 75.41 0.05 0.61 ind:imp:3p; +forçais forcer ver 64.64 75.41 0.22 1.35 ind:imp:1s;ind:imp:2s; +forçait forcer ver 64.64 75.41 0.70 6.76 ind:imp:3s; +forçant forcer ver 64.64 75.41 0.91 4.86 par:pre; +forçat forçat nom m s 1.26 3.11 0.30 1.35 +forçats forçat nom m p 1.26 3.11 0.96 1.76 +forçons forcer ver 64.64 75.41 0.27 0.14 imp:pre:1p;ind:pre:1p; +forçât forcer ver 64.64 75.41 0.00 0.20 sub:imp:3s; +fortiche fortiche adj s 1.14 2.03 0.84 1.49 +fortiches fortiche adj p 1.14 2.03 0.30 0.54 +fortifia fortifier ver 2.19 6.55 0.11 0.27 ind:pas:3s; +fortifiaient fortifier ver 2.19 6.55 0.01 0.14 ind:imp:3p; +fortifiais fortifier ver 2.19 6.55 0.00 0.07 ind:imp:1s; +fortifiait fortifier ver 2.19 6.55 0.00 0.81 ind:imp:3s; +fortifiant fortifiant nom m s 0.26 0.54 0.23 0.34 +fortifiants fortifiant nom m p 0.26 0.54 0.04 0.20 +fortification fortification nom f s 0.68 2.36 0.22 0.34 +fortifications fortification nom f p 0.68 2.36 0.46 2.03 +fortifie fortifier ver 2.19 6.55 0.74 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fortifient fortifier ver 2.19 6.55 0.04 0.34 ind:pre:3p; +fortifier fortifier ver 2.19 6.55 0.47 1.22 inf; +fortifiera fortifier ver 2.19 6.55 0.13 0.00 ind:fut:3s; +fortifierait fortifier ver 2.19 6.55 0.00 0.07 cnd:pre:3s; +fortifiez fortifier ver 2.19 6.55 0.01 0.07 imp:pre:2p; +fortifions fortifier ver 2.19 6.55 0.10 0.07 imp:pre:1p; +fortifiât fortifier ver 2.19 6.55 0.00 0.07 sub:imp:3s; +fortifièrent fortifier ver 2.19 6.55 0.01 0.00 ind:pas:3p; +fortifié fortifier ver m s 2.19 6.55 0.22 1.01 par:pas; +fortifiée fortifié adj f s 0.43 1.82 0.29 0.68 +fortifiées fortifier ver f p 2.19 6.55 0.02 0.27 par:pas; +fortifiés fortifier ver m p 2.19 6.55 0.14 0.14 par:pas; +fortifs fortif nom f p 0.00 1.01 0.00 1.01 +fortin fortin nom m s 0.33 3.31 0.32 2.70 +fortins fortin nom m p 0.33 3.31 0.01 0.61 +fortissimo fortissimo nom_sup m s 0.11 0.20 0.11 0.20 +fortitude fortitude nom f s 0.05 0.07 0.05 0.07 +fortraiture fortraiture nom f s 0.00 0.07 0.00 0.07 +forts fort adj_sup m p 95.28 140.27 17.00 17.43 +fortuit fortuit adj m s 1.96 3.38 0.55 1.22 +fortuite fortuit adj f s 1.96 3.38 1.29 1.28 +fortuitement fortuitement adv 0.17 0.34 0.17 0.34 +fortuites fortuit adj f p 1.96 3.38 0.07 0.68 +fortuits fortuit adj m p 1.96 3.38 0.05 0.20 +fortune fortune nom f s 33.62 51.49 32.35 46.49 +fortunes fortune nom f p 33.62 51.49 1.27 5.00 +fortuné fortuné adj m s 2.84 3.45 1.24 1.35 +fortunée fortuné adj f s 2.84 3.45 0.48 0.41 +fortunées fortuné adj f p 2.84 3.45 0.17 0.47 +fortunés fortuné adj m p 2.84 3.45 0.95 1.22 +foré forer ver m s 1.66 1.69 0.23 0.14 par:pas; +forée forer ver f s 1.66 1.69 0.01 0.14 par:pas; +forum forum nom m s 1.40 1.08 1.14 0.95 +forums forum nom m p 1.40 1.08 0.26 0.14 +forés forer ver m p 1.66 1.69 0.14 0.14 par:pas; +forêt forêt nom f s 34.94 113.31 29.57 91.89 +forêts forêt nom f p 34.94 113.31 5.37 21.42 +fosse fosse nom f s 7.92 14.05 6.64 10.74 +fosses fosse nom f p 7.92 14.05 1.27 3.31 +fossette fossette nom f s 0.86 4.32 0.44 2.09 +fossettes fossette nom f p 0.86 4.32 0.42 2.23 +fossile fossile nom m s 2.02 0.74 1.40 0.20 +fossiles fossile nom m p 2.02 0.74 0.62 0.54 +fossilisation fossilisation nom f s 0.13 0.07 0.13 0.07 +fossilisé fossiliser ver m s 0.17 0.68 0.08 0.41 par:pas; +fossilisés fossiliser ver m p 0.17 0.68 0.09 0.27 par:pas; +fossoyeur fossoyeur nom m s 2.77 2.70 2.00 1.42 +fossoyeurs fossoyeur nom m p 2.77 2.70 0.77 1.28 +fossoyeuse fossoyeuse nom f s 0.01 0.00 0.01 0.00 +fossé fossé nom m s 4.71 26.42 4.10 20.07 +fossés fossé nom m p 4.71 26.42 0.61 6.35 +fou_fou fou_fou adj m s 0.08 0.00 0.08 0.00 +fou_rire fou_rire nom m s 0.02 0.14 0.02 0.14 +fou fou adj m s 321.31 164.32 181.51 82.03 +fouaces fouace nom f p 0.00 0.07 0.00 0.07 +fouailla fouailler ver 0.00 1.55 0.00 0.20 ind:pas:3s; +fouaillai fouailler ver 0.00 1.55 0.00 0.07 ind:pas:1s; +fouaillaient fouailler ver 0.00 1.55 0.00 0.14 ind:imp:3p; +fouaillait fouailler ver 0.00 1.55 0.00 0.07 ind:imp:3s; +fouaillant fouailler ver 0.00 1.55 0.00 0.14 par:pre; +fouaille fouaille nom f s 0.00 1.22 0.00 1.22 +fouailler fouailler ver 0.00 1.55 0.00 0.34 inf; +fouaillé fouailler ver m s 0.00 1.55 0.00 0.20 par:pas; +fouaillée fouailler ver f s 0.00 1.55 0.00 0.14 par:pas; +fouaillées fouailler ver f p 0.00 1.55 0.00 0.07 par:pas; +foucade foucade nom f s 0.01 0.47 0.01 0.14 +foucades foucade nom f p 0.01 0.47 0.00 0.34 +fouchtra fouchtra ono 0.00 0.27 0.00 0.27 +foudre foudre nom s 12.94 14.46 12.50 12.64 +foudres foudre nom p 12.94 14.46 0.44 1.82 +foudroie foudroyer ver 2.36 8.99 0.34 0.41 ind:pre:1s;ind:pre:3s; +foudroiement foudroiement nom m s 0.01 0.00 0.01 0.00 +foudroient foudroyer ver 2.36 8.99 0.00 0.14 ind:pre:3p; +foudroiera foudroyer ver 2.36 8.99 0.01 0.07 ind:fut:3s; +foudroieraient foudroyer ver 2.36 8.99 0.00 0.07 cnd:pre:3p; +foudroierait foudroyer ver 2.36 8.99 0.00 0.07 cnd:pre:3s; +foudroya foudroyer ver 2.36 8.99 0.01 0.41 ind:pas:3s; +foudroyaient foudroyer ver 2.36 8.99 0.00 0.14 ind:imp:3p; +foudroyait foudroyer ver 2.36 8.99 0.00 0.47 ind:imp:3s; +foudroyant foudroyant adj m s 0.52 6.62 0.41 2.23 +foudroyante foudroyant adj f s 0.52 6.62 0.10 3.24 +foudroyantes foudroyant adj f p 0.52 6.62 0.00 0.54 +foudroyants foudroyant adj m p 0.52 6.62 0.01 0.61 +foudroyer foudroyer ver 2.36 8.99 0.39 1.35 inf; +foudroyions foudroyer ver 2.36 8.99 0.01 0.00 ind:imp:1p; +foudroyèrent foudroyer ver 2.36 8.99 0.00 0.07 ind:pas:3p; +foudroyé foudroyer ver m s 2.36 8.99 0.91 2.84 par:pas; +foudroyée foudroyer ver f s 2.36 8.99 0.36 0.95 par:pas; +foudroyées foudroyer ver f p 2.36 8.99 0.04 0.27 par:pas; +foudroyés foudroyer ver m p 2.36 8.99 0.28 1.42 par:pas; +fouet fouet nom m s 8.56 18.31 7.92 16.69 +fouets fouet nom m p 8.56 18.31 0.63 1.62 +fouetta fouetter ver 7.61 17.36 0.14 0.68 ind:pas:3s; +fouettaient fouetter ver 7.61 17.36 0.02 0.41 ind:imp:3p; +fouettais fouetter ver 7.61 17.36 0.04 0.27 ind:imp:1s; +fouettait fouetter ver 7.61 17.36 0.09 2.36 ind:imp:3s; +fouettant fouetter ver 7.61 17.36 0.03 1.42 par:pre; +fouettard fouettard adj m s 0.34 0.68 0.34 0.47 +fouettards fouettard adj m p 0.34 0.68 0.00 0.20 +fouette fouetter ver 7.61 17.36 1.65 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fouettement fouettement nom m s 0.01 0.27 0.01 0.20 +fouettements fouettement nom m p 0.01 0.27 0.00 0.07 +fouettent fouetter ver 7.61 17.36 0.07 0.68 ind:pre:3p; +fouetter fouetter ver 7.61 17.36 2.27 4.26 inf; +fouettera fouetter ver 7.61 17.36 0.06 0.00 ind:fut:3s; +fouetterai fouetter ver 7.61 17.36 0.12 0.00 ind:fut:1s; +fouetterait fouetter ver 7.61 17.36 0.03 0.07 cnd:pre:3s; +fouetteront fouetter ver 7.61 17.36 0.02 0.07 ind:fut:3p; +fouettes fouetter ver 7.61 17.36 0.12 0.07 ind:pre:2s; +fouetteur fouetteur nom m s 0.16 0.41 0.02 0.00 +fouetteurs fouetteur nom m p 0.16 0.41 0.14 0.07 +fouetteuse fouetteur nom f s 0.16 0.41 0.00 0.34 +fouettez fouetter ver 7.61 17.36 0.36 0.14 imp:pre:2p;ind:pre:2p; +fouettons fouetter ver 7.61 17.36 0.02 0.14 imp:pre:1p;ind:pre:1p; +fouettèrent fouetter ver 7.61 17.36 0.00 0.14 ind:pas:3p; +fouetté fouetter ver m s 7.61 17.36 0.81 1.69 par:pas; +fouettée fouetter ver f s 7.61 17.36 1.50 1.69 par:pas; +fouettées fouetter ver f p 7.61 17.36 0.04 0.54 par:pas; +fouettés fouetter ver m p 7.61 17.36 0.22 0.47 par:pas; +foufou foufou adj m s 0.44 0.00 0.42 0.00 +foufoune foufoune nom f s 0.69 0.00 0.57 0.00 +foufounes foufoune nom f p 0.69 0.00 0.12 0.00 +foufounette foufounette nom f s 0.01 0.20 0.01 0.20 +foufous foufou adj m p 0.44 0.00 0.01 0.00 +fougasse fougasse nom f s 2.54 0.14 2.54 0.14 +fouge fouger ver 0.10 0.00 0.10 0.00 imp:pre:2s; +fougeraie fougeraie nom f s 0.00 0.61 0.00 0.54 +fougeraies fougeraie nom f p 0.00 0.61 0.00 0.07 +fougère fougère nom f s 0.76 8.11 0.48 0.74 +fougères fougère nom f p 0.76 8.11 0.27 7.36 +fougue fougue nom f s 1.17 5.14 1.17 5.07 +fougues fougue nom f p 1.17 5.14 0.00 0.07 +fougueuse fougueux adj f s 1.72 3.45 0.26 0.74 +fougueusement fougueusement adv 0.05 0.47 0.05 0.47 +fougueuses fougueux adj f p 1.72 3.45 0.05 0.27 +fougueux fougueux adj m 1.72 3.45 1.41 2.43 +foui fouir ver m s 0.04 0.95 0.02 0.34 par:pas; +fouie fouir ver f s 0.04 0.95 0.01 0.07 par:pas; +fouies fouir ver f p 0.04 0.95 0.00 0.07 par:pas; +fouilla fouiller ver 42.37 47.16 0.01 5.27 ind:pas:3s; +fouillai fouiller ver 42.37 47.16 0.01 0.47 ind:pas:1s; +fouillaient fouiller ver 42.37 47.16 0.08 1.76 ind:imp:3p; +fouillais fouiller ver 42.37 47.16 0.37 0.95 ind:imp:1s;ind:imp:2s; +fouillait fouiller ver 42.37 47.16 0.37 5.81 ind:imp:3s; +fouillant fouiller ver 42.37 47.16 1.43 5.14 par:pre; +fouillasse fouiller ver 42.37 47.16 0.00 0.07 sub:imp:1s; +fouille fouiller ver 42.37 47.16 6.09 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fouillent fouiller ver 42.37 47.16 1.46 1.82 ind:pre:3p; +fouiller fouiller ver 42.37 47.16 12.87 11.76 inf; +fouillera fouiller ver 42.37 47.16 0.30 0.07 ind:fut:3s; +fouillerai fouiller ver 42.37 47.16 0.10 0.07 ind:fut:1s; +fouillerais fouiller ver 42.37 47.16 0.03 0.00 cnd:pre:1s; +fouillerait fouiller ver 42.37 47.16 0.17 0.07 cnd:pre:3s; +fouilleras fouiller ver 42.37 47.16 0.03 0.00 ind:fut:2s; +fouillerons fouiller ver 42.37 47.16 0.07 0.00 ind:fut:1p; +fouilleront fouiller ver 42.37 47.16 0.10 0.00 ind:fut:3p; +fouilles fouille nom f p 5.00 11.28 1.81 4.53 +fouillette fouillette nom f s 0.00 0.20 0.00 0.20 +fouilleur fouilleur nom m s 0.05 0.41 0.03 0.27 +fouilleurs fouilleur adj m p 0.03 0.07 0.01 0.07 +fouilleuse fouilleur nom f s 0.05 0.41 0.03 0.07 +fouillez fouiller ver 42.37 47.16 6.79 0.41 imp:pre:2p;ind:pre:2p; +fouilliez fouiller ver 42.37 47.16 0.21 0.00 ind:imp:2p; +fouillis fouillis nom m 0.81 7.16 0.81 7.16 +fouillons fouiller ver 42.37 47.16 0.61 0.07 imp:pre:1p;ind:pre:1p; +fouillèrent fouiller ver 42.37 47.16 0.01 0.81 ind:pas:3p; +fouillé fouiller ver m s 42.37 47.16 8.89 4.05 par:pas; +fouillée fouiller ver f s 42.37 47.16 0.85 0.74 par:pas; +fouillées fouiller ver f p 42.37 47.16 0.07 0.27 par:pas; +fouillés fouiller ver m p 42.37 47.16 0.51 0.27 par:pas; +fouinaient fouiner ver 5.54 2.43 0.02 0.20 ind:imp:3p; +fouinais fouiner ver 5.54 2.43 0.17 0.07 ind:imp:1s;ind:imp:2s; +fouinait fouiner ver 5.54 2.43 0.19 0.47 ind:imp:3s; +fouinant fouiner ver 5.54 2.43 0.05 0.20 par:pre; +fouinard fouinard nom m s 0.13 0.00 0.11 0.00 +fouinards fouinard nom m p 0.13 0.00 0.02 0.00 +fouine fouine nom f s 2.87 2.43 2.45 1.89 +fouinent fouiner ver 5.54 2.43 0.36 0.07 ind:pre:3p; +fouiner fouiner ver 5.54 2.43 3.31 1.08 inf; +fouinera fouiner ver 5.54 2.43 0.01 0.00 ind:fut:3s; +fouineriez fouiner ver 5.54 2.43 0.01 0.00 cnd:pre:2p; +fouines fouine nom f p 2.87 2.43 0.42 0.54 +fouineur fouineur nom m s 0.80 0.07 0.23 0.07 +fouineurs fouineur nom m p 0.80 0.07 0.27 0.00 +fouineuse fouineur nom f s 0.80 0.07 0.29 0.00 +fouinez fouiner ver 5.54 2.43 0.14 0.07 imp:pre:2p;ind:pre:2p; +fouiniez fouiner ver 5.54 2.43 0.03 0.00 ind:imp:2p; +fouiné fouiner ver m s 5.54 2.43 0.39 0.00 par:pas; +fouir fouir ver 0.04 0.95 0.00 0.20 inf; +fouissait fouir ver 0.04 0.95 0.00 0.07 ind:imp:3s; +fouissant fouir ver 0.04 0.95 0.00 0.07 par:pre; +fouissent fouir ver 0.04 0.95 0.00 0.07 ind:pre:3p; +fouisseur fouisseur adj m s 0.01 0.34 0.01 0.07 +fouisseurs fouisseur adj m p 0.01 0.34 0.00 0.07 +fouisseuse fouisseur adj f s 0.01 0.34 0.00 0.14 +fouisseuses fouisseur adj f p 0.01 0.34 0.00 0.07 +fouit fouir ver 0.04 0.95 0.01 0.07 ind:pre:3s; +foula fouler ver 3.06 9.59 0.04 0.14 ind:pas:3s; +foulage foulage nom m s 0.00 0.07 0.00 0.07 +foulaient fouler ver 3.06 9.59 0.00 0.61 ind:imp:3p; +foulais fouler ver 3.06 9.59 0.05 0.27 ind:imp:1s; +foulait fouler ver 3.06 9.59 0.14 0.41 ind:imp:3s; +foulant fouler ver 3.06 9.59 0.13 1.01 par:pre; +foulard foulard nom m s 4.44 19.19 3.94 15.95 +foulards foulard nom m p 4.44 19.19 0.50 3.24 +foulbé foulbé adj s 0.00 0.07 0.00 0.07 +foule foule nom f s 27.81 112.30 25.95 101.62 +foulent fouler ver 3.06 9.59 0.16 0.27 ind:pre:3p; +fouler fouler ver 3.06 9.59 0.65 2.57 inf; +foulera fouler ver 3.06 9.59 0.04 0.00 ind:fut:3s; +fouleraient fouler ver 3.06 9.59 0.00 0.07 cnd:pre:3p; +foulerait fouler ver 3.06 9.59 0.00 0.07 cnd:pre:3s; +foulerez fouler ver 3.06 9.59 0.03 0.00 ind:fut:2p; +foules foule nom f p 27.81 112.30 1.86 10.68 +fouleur fouleur nom m s 0.01 0.00 0.01 0.00 +foulions fouler ver 3.06 9.59 0.01 0.14 ind:imp:1p; +fouloir fouloir nom m s 0.00 0.14 0.00 0.14 +foulon foulon nom m s 0.14 0.00 0.14 0.00 +foulons fouler ver 3.06 9.59 0.11 0.14 ind:pre:1p; +foulque foulque nom f s 0.03 0.07 0.01 0.00 +foulques foulque nom f p 0.03 0.07 0.01 0.07 +foulèrent fouler ver 3.06 9.59 0.04 0.20 ind:pas:3p; +foulé fouler ver m s 3.06 9.59 1.11 1.49 par:pas; +foulée foulée nom f s 0.56 7.30 0.50 5.34 +foulées foulée nom f p 0.56 7.30 0.06 1.96 +foulure foulure nom f s 0.21 0.20 0.17 0.20 +foulures foulure nom f p 0.21 0.20 0.03 0.00 +foulés fouler ver m p 3.06 9.59 0.03 0.41 par:pas; +foëne foëne nom f s 0.00 0.07 0.00 0.07 +four four nom m s 15.44 28.99 13.95 25.07 +fourbais fourber ver 0.00 0.14 0.00 0.07 ind:imp:1s; +fourbe fourbe adj s 1.70 1.08 1.32 0.68 +fourber fourber ver 0.00 0.14 0.00 0.07 inf; +fourberie fourberie nom f s 0.65 1.28 0.52 0.88 +fourberies fourberie nom f p 0.65 1.28 0.14 0.41 +fourbes fourbe nom p 1.52 0.81 0.41 0.20 +fourbi fourbi nom m s 0.78 3.18 0.77 2.91 +fourbie fourbir ver f s 0.03 1.55 0.00 0.07 par:pas; +fourbir fourbir ver 0.03 1.55 0.01 0.34 inf; +fourbis fourbi nom m p 0.78 3.18 0.01 0.27 +fourbissaient fourbir ver 0.03 1.55 0.00 0.14 ind:imp:3p; +fourbissais fourbir ver 0.03 1.55 0.00 0.07 ind:imp:1s; +fourbissait fourbir ver 0.03 1.55 0.00 0.27 ind:imp:3s; +fourbissant fourbir ver 0.03 1.55 0.00 0.20 par:pre; +fourbit fourbir ver 0.03 1.55 0.01 0.14 ind:pre:3s; +fourbu fourbu adj m s 0.42 6.01 0.12 2.84 +fourbue fourbu adj f s 0.42 6.01 0.14 0.81 +fourbues fourbu adj f p 0.42 6.01 0.01 0.74 +fourbus fourbu adj m p 0.42 6.01 0.16 1.62 +fourcha fourcher ver 0.33 0.27 0.00 0.14 ind:pas:3s; +fourche fourche nom f s 1.57 8.18 1.21 5.61 +fourchent fourcher ver 0.33 0.27 0.01 0.00 ind:pre:3p; +fourcher fourcher ver 0.33 0.27 0.03 0.00 inf; +fourches fourche nom f p 1.57 8.18 0.36 2.57 +fourchet fourchet nom m s 0.00 0.14 0.00 0.07 +fourchets fourchet nom m p 0.00 0.14 0.00 0.07 +fourchette fourchette nom f s 5.85 14.19 4.98 10.95 +fourchettes fourchette nom f p 5.85 14.19 0.87 3.24 +fourchez fourcher ver 0.33 0.27 0.03 0.00 imp:pre:2p; +fourché fourcher ver m s 0.33 0.27 0.15 0.14 par:pas; +fourchu fourchu adj m s 0.75 1.42 0.17 0.27 +fourchée fourcher ver f s 0.33 0.27 0.01 0.00 par:pas; +fourchue fourchu adj f s 0.75 1.42 0.20 0.54 +fourchues fourchu adj f p 0.75 1.42 0.01 0.07 +fourchures fourchure nom f p 0.00 0.14 0.00 0.14 +fourchus fourchu adj m p 0.75 1.42 0.37 0.54 +fourgon fourgon nom m s 8.69 7.70 7.87 5.14 +fourgonnait fourgonner ver 0.00 0.61 0.00 0.14 ind:imp:3s; +fourgonnas fourgonner ver 0.00 0.61 0.00 0.07 ind:pas:2s; +fourgonne fourgonner ver 0.00 0.61 0.00 0.07 ind:pre:3s; +fourgonner fourgonner ver 0.00 0.61 0.00 0.34 inf; +fourgonnette fourgonnette nom f s 1.31 1.76 1.26 1.62 +fourgonnettes fourgonnette nom f p 1.31 1.76 0.05 0.14 +fourgons fourgon nom m p 8.69 7.70 0.82 2.57 +fourguais fourguer ver 2.47 5.07 0.03 0.07 ind:imp:1s; +fourguait fourguer ver 2.47 5.07 0.02 0.61 ind:imp:3s; +fourguant fourguer ver 2.47 5.07 0.03 0.20 par:pre; +fourgue fourguer ver 2.47 5.07 0.28 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fourguent fourguer ver 2.47 5.07 0.16 0.14 ind:pre:3p; +fourguer fourguer ver 2.47 5.07 1.10 1.82 inf; +fourgueraient fourguer ver 2.47 5.07 0.00 0.07 cnd:pre:3p; +fourguerais fourguer ver 2.47 5.07 0.00 0.07 cnd:pre:1s; +fourguerait fourguer ver 2.47 5.07 0.00 0.07 cnd:pre:3s; +fourgues fourguer ver 2.47 5.07 0.06 0.00 ind:pre:2s; +fourguez fourguer ver 2.47 5.07 0.02 0.00 ind:pre:2p; +fourgué fourguer ver m s 2.47 5.07 0.59 0.88 par:pas; +fourguée fourguer ver f s 2.47 5.07 0.15 0.20 par:pas; +fourguées fourguer ver f p 2.47 5.07 0.01 0.07 par:pas; +fourgués fourguer ver m p 2.47 5.07 0.02 0.14 par:pas; +fourme fourme nom f s 0.00 0.41 0.00 0.34 +fourmes fourme nom f p 0.00 0.41 0.00 0.07 +fourmi_lion fourmi_lion nom m s 0.00 0.14 0.00 0.07 +fourmi fourmi nom f s 9.61 12.77 2.78 5.14 +fourmilier fourmilier nom m s 1.10 3.11 0.12 0.07 +fourmilion fourmilion nom m s 0.00 0.14 0.00 0.14 +fourmilière fourmilier nom f s 1.10 3.11 0.98 2.84 +fourmilières fourmilière nom f p 0.01 0.00 0.01 0.00 +fourmillaient fourmiller ver 0.53 3.18 0.00 0.20 ind:imp:3p; +fourmillait fourmiller ver 0.53 3.18 0.00 0.74 ind:imp:3s; +fourmillant fourmiller ver 0.53 3.18 0.00 0.47 par:pre; +fourmillante fourmillant adj f s 0.00 1.15 0.00 0.81 +fourmillants fourmillant adj m p 0.00 1.15 0.00 0.20 +fourmille fourmiller ver 0.53 3.18 0.42 0.68 ind:pre:1s;ind:pre:3s; +fourmillement fourmillement nom m s 0.16 2.36 0.07 1.82 +fourmillements fourmillement nom m p 0.16 2.36 0.08 0.54 +fourmillent fourmiller ver 0.53 3.18 0.09 0.47 ind:pre:3p; +fourmiller fourmiller ver 0.53 3.18 0.01 0.54 inf; +fourmillé fourmiller ver m s 0.53 3.18 0.00 0.07 par:pas; +fourmi_lion fourmi_lion nom m p 0.00 0.14 0.00 0.07 +fourmis fourmi nom f p 9.61 12.77 6.83 7.64 +fournîmes fournir ver 25.67 56.28 0.00 0.07 ind:pas:1p; +fournît fournir ver 25.67 56.28 0.00 0.14 sub:imp:3s; +fournaise fournaise nom f s 0.62 3.18 0.59 3.04 +fournaises fournaise nom f p 0.62 3.18 0.03 0.14 +fourneau fourneau nom m s 1.96 15.34 1.13 12.30 +fourneaux fourneau nom m p 1.96 15.34 0.83 3.04 +fourni fournir ver m s 25.67 56.28 4.21 8.11 par:pas; +fournie fournir ver f s 25.67 56.28 0.59 1.69 par:pas; +fournier fournier nom m s 0.00 0.07 0.00 0.07 +fournies fournir ver f p 25.67 56.28 0.42 1.42 par:pas; +fournil fournil nom m s 0.26 3.92 0.26 3.92 +fourniment fourniment nom m s 0.13 1.01 0.13 0.88 +fourniments fourniment nom m p 0.13 1.01 0.00 0.14 +fournir fournir ver 25.67 56.28 8.43 19.46 inf; +fournira fournir ver 25.67 56.28 1.18 0.81 ind:fut:3s; +fournirai fournir ver 25.67 56.28 0.43 0.07 ind:fut:1s; +fourniraient fournir ver 25.67 56.28 0.00 0.47 cnd:pre:3p; +fournirait fournir ver 25.67 56.28 0.29 1.08 cnd:pre:3s; +fournirent fournir ver 25.67 56.28 0.00 0.47 ind:pas:3p; +fournirez fournir ver 25.67 56.28 0.24 0.14 ind:fut:2p; +fournirons fournir ver 25.67 56.28 0.22 0.00 ind:fut:1p; +fourniront fournir ver 25.67 56.28 0.06 0.27 ind:fut:3p; +fournis fournir ver m p 25.67 56.28 2.11 3.72 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fournissaient fournir ver 25.67 56.28 0.28 2.16 ind:imp:3p; +fournissais fournir ver 25.67 56.28 0.08 0.34 ind:imp:1s;ind:imp:2s; +fournissait fournir ver 25.67 56.28 0.87 5.47 ind:imp:3s; +fournissant fournir ver 25.67 56.28 0.18 1.22 par:pre; +fournisse fournir ver 25.67 56.28 0.13 0.07 sub:pre:1s;sub:pre:3s; +fournissent fournir ver 25.67 56.28 0.77 1.89 ind:pre:3p; +fournisseur fournisseur nom m s 4.75 4.39 2.62 1.76 +fournisseurs fournisseur nom m p 4.75 4.39 2.13 2.57 +fournisseuses fournisseur nom f p 4.75 4.39 0.00 0.07 +fournissez fournir ver 25.67 56.28 1.31 0.20 imp:pre:2p;ind:pre:2p; +fournissiez fournir ver 25.67 56.28 0.14 0.07 ind:imp:2p; +fournissions fournir ver 25.67 56.28 0.02 0.20 ind:imp:1p; +fournissons fournir ver 25.67 56.28 0.65 0.20 imp:pre:1p;ind:pre:1p; +fournit fournir ver 25.67 56.28 3.04 6.55 ind:pre:3s;ind:pas:3s; +fourniture fourniture nom f s 2.04 2.77 0.16 0.61 +fournitures fourniture nom f p 2.04 2.77 1.88 2.16 +fournée fournée nom f s 0.47 2.36 0.46 1.82 +fournées fournée nom f p 0.47 2.36 0.01 0.54 +fourra fourrer ver 14.05 23.58 0.12 2.77 ind:pas:3s; +fourrage fourrage nom m s 0.63 2.30 0.58 1.89 +fourragea fourrager ver 0.03 3.99 0.00 0.74 ind:pas:3s; +fourrageaient fourrager ver 0.03 3.99 0.00 0.07 ind:imp:3p; +fourrageais fourrager ver 0.03 3.99 0.00 0.07 ind:imp:2s; +fourrageait fourrager ver 0.03 3.99 0.00 0.88 ind:imp:3s; +fourrageant fourrager ver 0.03 3.99 0.00 0.61 par:pre; +fourragement fourragement nom m s 0.00 0.07 0.00 0.07 +fourrager fourrager ver 0.03 3.99 0.02 0.61 inf; +fourragerait fourrager ver 0.03 3.99 0.00 0.07 cnd:pre:3s; +fourrages fourrage nom m p 0.63 2.30 0.05 0.41 +fourrageurs fourrageur nom m p 0.00 0.27 0.00 0.27 +fourragère fourrager adj f s 0.14 0.41 0.14 0.14 +fourragères fourrager adj f p 0.14 0.41 0.00 0.20 +fourragé fourrager ver m s 0.03 3.99 0.00 0.20 par:pas; +fourrai fourrer ver 14.05 23.58 0.00 0.74 ind:pas:1s; +fourraient fourrer ver 14.05 23.58 0.12 0.34 ind:imp:3p; +fourrais fourrer ver 14.05 23.58 0.06 0.14 ind:imp:1s;ind:imp:2s; +fourrait fourrer ver 14.05 23.58 0.25 1.55 ind:imp:3s; +fourrant fourrer ver 14.05 23.58 0.07 1.15 par:pre; +fourre_tout fourre_tout nom m 0.28 0.54 0.28 0.54 +fourre fourrer ver 14.05 23.58 2.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fourreau fourreau nom m s 0.79 4.32 0.78 3.85 +fourreaux fourreau nom m p 0.79 4.32 0.01 0.47 +fourrent fourrer ver 14.05 23.58 0.17 0.54 ind:pre:3p; +fourrer fourrer ver 14.05 23.58 4.36 6.82 inf;; +fourrerai fourrer ver 14.05 23.58 0.19 0.07 ind:fut:1s; +fourreur fourreur nom m s 0.08 0.68 0.07 0.61 +fourreurs fourreur nom m p 0.08 0.68 0.01 0.07 +fourrez fourrer ver 14.05 23.58 0.35 0.14 imp:pre:2p;ind:pre:2p; +fourrier fourrier nom m s 0.01 1.82 0.01 1.69 +fourriers fourrier nom m p 0.01 1.82 0.00 0.14 +fourriez fourrer ver 14.05 23.58 0.03 0.00 ind:imp:2p; +fourrions fourrer ver 14.05 23.58 0.00 0.14 ind:imp:1p; +fourrière fourrière nom f s 2.83 0.81 2.83 0.81 +fourrons fourrer ver 14.05 23.58 0.04 0.07 imp:pre:1p;ind:pre:1p; +fourrât fourrer ver 14.05 23.58 0.00 0.07 sub:imp:3s; +fourrèrent fourrer ver 14.05 23.58 0.00 0.07 ind:pas:3p; +fourré fourrer ver m s 14.05 23.58 3.42 3.51 par:pas; +fourrée fourrer ver f s 14.05 23.58 1.24 1.28 par:pas; +fourrées fourré adj f p 2.60 5.47 0.17 0.54 +fourrure fourrure nom f s 7.53 21.42 5.56 16.89 +fourrures fourrure nom f p 7.53 21.42 1.97 4.53 +fourrés fourré nom m p 1.18 15.00 0.72 6.15 +fours four nom m p 15.44 28.99 1.48 3.92 +fourvoie fourvoyer ver 0.52 2.57 0.04 0.27 imp:pre:2s;ind:pre:3s; +fourvoiement fourvoiement nom m s 0.00 0.14 0.00 0.07 +fourvoiements fourvoiement nom m p 0.00 0.14 0.00 0.07 +fourvoient fourvoyer ver 0.52 2.57 0.01 0.00 ind:pre:3p; +fourvoierais fourvoyer ver 0.52 2.57 0.00 0.07 cnd:pre:1s; +fourvoierait fourvoyer ver 0.52 2.57 0.00 0.07 cnd:pre:3s; +fourvoyaient fourvoyer ver 0.52 2.57 0.00 0.14 ind:imp:3p; +fourvoyait fourvoyer ver 0.52 2.57 0.00 0.07 ind:imp:3s; +fourvoyant fourvoyer ver 0.52 2.57 0.01 0.14 par:pre; +fourvoyer fourvoyer ver 0.52 2.57 0.14 0.20 inf; +fourvoyâmes fourvoyer ver 0.52 2.57 0.00 0.07 ind:pas:1p; +fourvoyé fourvoyer ver m s 0.52 2.57 0.11 0.88 par:pas; +fourvoyée fourvoyer ver f s 0.52 2.57 0.04 0.20 par:pas; +fourvoyées fourvoyé adj f p 0.04 0.41 0.01 0.00 +fourvoyés fourvoyer ver m p 0.52 2.57 0.17 0.27 par:pas; +fous foutre ver 400.67 172.30 133.75 34.46 ind:pre:1p;ind:pre:1s;ind:pre:2s; +fout foutre ver 400.67 172.30 51.51 25.20 ind:pre:3s; +foutît foutre ver 400.67 172.30 0.00 0.07 sub:imp:3s; +fouta fouta nom s 0.01 0.07 0.01 0.07 +foutaient foutre ver 400.67 172.30 0.61 1.96 ind:imp:3p; +foutais foutre ver 400.67 172.30 4.42 3.72 ind:imp:1s;ind:imp:2s; +foutaise foutaise nom f s 8.66 2.70 1.80 0.74 +foutaises foutaise nom f p 8.66 2.70 6.86 1.96 +foutait foutre ver 400.67 172.30 2.80 11.69 ind:imp:3s; +foutant foutre ver 400.67 172.30 0.18 0.81 par:pre; +foute foutre ver 400.67 172.30 3.35 3.99 sub:pre:1s;sub:pre:3s; +foutent foutre ver 400.67 172.30 8.34 7.36 ind:pre:3p; +fouterie fouterie nom f s 0.00 0.34 0.00 0.20 +fouteries fouterie nom f p 0.00 0.34 0.00 0.14 +foutes foutre ver 400.67 172.30 0.27 0.00 sub:pre:2s; +fouteur fouteur nom m s 0.54 0.07 0.46 0.07 +fouteurs fouteur nom m p 0.54 0.07 0.07 0.00 +foutez foutre ver 400.67 172.30 32.65 7.57 imp:pre:2p;ind:pre:2p; +foutiez foutre ver 400.67 172.30 0.56 0.14 ind:imp:2p; +foutions foutre ver 400.67 172.30 0.00 0.07 ind:imp:1p; +foutit foutre ver 400.67 172.30 0.00 0.14 ind:pas:3s; +foutoir foutoir nom m s 2.15 1.62 2.15 1.49 +foutoirs foutoir nom m p 2.15 1.62 0.00 0.14 +foutons foutre ver 400.67 172.30 1.68 0.34 imp:pre:1p;ind:pre:1p; +foutra foutre ver 400.67 172.30 1.58 1.42 ind:fut:3s; +foutrai foutre ver 400.67 172.30 0.85 1.15 ind:fut:1s; +foutraient foutre ver 400.67 172.30 0.08 0.20 cnd:pre:3p; +foutrais foutre ver 400.67 172.30 1.48 1.35 cnd:pre:1s;cnd:pre:2s; +foutrait foutre ver 400.67 172.30 0.60 1.01 cnd:pre:3s; +foutral foutral adj m s 0.05 0.20 0.05 0.14 +foutrale foutral adj f s 0.05 0.20 0.00 0.07 +foutraque foutraque adj m s 0.01 0.07 0.01 0.07 +foutras foutre ver 400.67 172.30 0.24 0.20 ind:fut:2s; +foutre foutre ver 400.67 172.30 97.99 42.70 inf;; +foutrement foutrement adv 1.24 0.61 1.24 0.61 +foutrerie foutrerie nom f s 0.01 0.00 0.01 0.00 +foutrez foutre ver 400.67 172.30 0.20 0.14 ind:fut:2p; +foutriquet foutriquet nom m s 0.04 0.20 0.04 0.14 +foutriquets foutriquet nom m p 0.04 0.20 0.00 0.07 +foutrons foutre ver 400.67 172.30 0.02 0.07 ind:fut:1p; +foutront foutre ver 400.67 172.30 0.16 0.27 ind:fut:3p; +foutu foutre ver m s 400.67 172.30 41.96 19.05 par:pas; +foutue foutu adj f s 33.23 16.76 10.35 6.22 +foutues foutu adj f p 33.23 16.76 2.50 0.74 +foutument foutument adv 0.03 0.20 0.03 0.20 +foutus foutre ver m p 400.67 172.30 6.54 2.91 par:pas; +fox_terrier fox_terrier nom m s 0.04 0.47 0.04 0.41 +fox_terrier fox_terrier nom m p 0.04 0.47 0.00 0.07 +fox_trot fox_trot nom m 0.50 1.62 0.50 1.62 +fox fox nom m 0.48 0.41 0.48 0.41 +foyard foyard nom m s 0.00 0.27 0.00 0.20 +foyards foyard nom m p 0.00 0.27 0.00 0.07 +foyer foyer nom m s 28.95 30.88 25.57 25.81 +foyers foyer nom m p 28.95 30.88 3.38 5.07 +frôla frôler ver 4.45 25.41 0.03 2.30 ind:pas:3s; +frôlai frôler ver 4.45 25.41 0.00 0.34 ind:pas:1s; +frôlaient frôler ver 4.45 25.41 0.01 1.49 ind:imp:3p; +frôlais frôler ver 4.45 25.41 0.00 0.27 ind:imp:1s; +frôlait frôler ver 4.45 25.41 0.14 3.18 ind:imp:3s; +frôlant frôler ver 4.45 25.41 0.14 3.72 par:pre; +frôle frôler ver 4.45 25.41 0.88 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frôlement frôlement nom m s 0.11 6.01 0.11 3.85 +frôlements frôlement nom m p 0.11 6.01 0.00 2.16 +frôlent frôler ver 4.45 25.41 0.14 1.62 ind:pre:3p; +frôler frôler ver 4.45 25.41 0.68 4.19 inf; +frôlerais frôler ver 4.45 25.41 0.00 0.07 cnd:pre:1s; +frôlerait frôler ver 4.45 25.41 0.00 0.14 cnd:pre:3s; +frôles frôler ver 4.45 25.41 0.04 0.07 ind:pre:2s; +frôleur frôleur adj m s 0.00 0.74 0.00 0.34 +frôleurs frôleur nom m p 0.01 0.07 0.01 0.07 +frôleuse frôleur adj f s 0.00 0.74 0.00 0.20 +frôleuses frôleur adj f p 0.00 0.74 0.00 0.14 +frôlez frôler ver 4.45 25.41 0.20 0.00 imp:pre:2p;ind:pre:2p; +frôlions frôler ver 4.45 25.41 0.00 0.14 ind:imp:1p; +frôlons frôler ver 4.45 25.41 0.02 0.27 ind:pre:1p; +frôlât frôler ver 4.45 25.41 0.01 0.00 sub:imp:3s; +frôlèrent frôler ver 4.45 25.41 0.00 0.34 ind:pas:3p; +frôlé frôler ver m s 4.45 25.41 1.80 2.09 par:pas; +frôlée frôler ver f s 4.45 25.41 0.16 0.54 par:pas; +frôlées frôler ver f p 4.45 25.41 0.00 0.14 par:pas; +frôlés frôler ver m p 4.45 25.41 0.21 0.47 par:pas; +fra fra nom m s 0.93 0.34 0.93 0.34 +fraîche frais adj f s 46.43 111.69 13.59 42.91 +fraîchement fraîchement adv 1.17 8.31 1.17 8.31 +fraîches frais adj f p 46.43 111.69 5.44 12.57 +fraîcheur fraîcheur nom f s 3.24 35.47 3.24 35.00 +fraîcheurs fraîcheur nom f p 3.24 35.47 0.00 0.47 +fraîchi fraîchir ver m s 0.29 2.43 0.02 0.61 par:pas; +fraîchir fraîchir ver 0.29 2.43 0.01 0.34 inf; +fraîchira fraîchir ver 0.29 2.43 0.00 0.14 ind:fut:3s; +fraîchissait fraîchir ver 0.29 2.43 0.00 0.61 ind:imp:3s; +fraîchissant fraîchir ver 0.29 2.43 0.00 0.27 par:pre; +fraîchissent fraîchir ver 0.29 2.43 0.01 0.07 ind:pre:3p; +fraîchit fraîchir ver 0.29 2.43 0.25 0.41 ind:pre:3s;ind:pas:3s; +frac frac nom m s 0.89 2.23 0.77 1.96 +fracas fracas nom m 4.17 18.18 4.17 18.18 +fracassa fracasser ver 3.85 7.84 0.00 0.74 ind:pas:3s; +fracassaient fracasser ver 3.85 7.84 0.02 0.68 ind:imp:3p; +fracassait fracasser ver 3.85 7.84 0.01 0.27 ind:imp:3s; +fracassant fracassant adj m s 0.58 2.16 0.24 0.88 +fracassante fracassant adj f s 0.58 2.16 0.23 0.95 +fracassantes fracassant adj f p 0.58 2.16 0.05 0.14 +fracassants fracassant adj m p 0.58 2.16 0.06 0.20 +fracasse fracasser ver 3.85 7.84 0.60 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fracassent fracasser ver 3.85 7.84 0.05 0.14 ind:pre:3p; +fracasser fracasser ver 3.85 7.84 0.91 2.23 inf; +fracassera fracasser ver 3.85 7.84 0.16 0.00 ind:fut:3s; +fracasserait fracasser ver 3.85 7.84 0.00 0.14 cnd:pre:3s; +fracassez fracasser ver 3.85 7.84 0.04 0.00 imp:pre:2p; +fracassât fracasser ver 3.85 7.84 0.00 0.07 sub:imp:3s; +fracassé fracasser ver m s 3.85 7.84 1.43 0.81 par:pas; +fracassée fracasser ver f s 3.85 7.84 0.56 0.41 par:pas; +fracassées fracasser ver f p 3.85 7.84 0.03 0.27 par:pas; +fracassés fracasser ver m p 3.85 7.84 0.02 0.34 par:pas; +fracs frac nom m p 0.89 2.23 0.12 0.27 +fractal fractal adj m s 0.34 0.00 0.05 0.00 +fractale fractal adj f s 0.34 0.00 0.12 0.00 +fractales fractal adj f p 0.34 0.00 0.17 0.00 +fraction fraction nom f s 2.03 10.88 1.34 6.76 +fractionnait fractionner ver 0.07 0.54 0.00 0.07 ind:imp:3s; +fractionnant fractionner ver 0.07 0.54 0.00 0.14 par:pre; +fractionne fractionner ver 0.07 0.54 0.02 0.07 ind:pre:3s; +fractionnel fractionnel adj m s 0.00 0.14 0.00 0.07 +fractionnelles fractionnel adj f p 0.00 0.14 0.00 0.07 +fractionnement fractionnement nom m s 0.00 0.20 0.00 0.20 +fractionner fractionner ver 0.07 0.54 0.02 0.14 inf; +fractionné fractionner ver m s 0.07 0.54 0.00 0.07 par:pas; +fractionnée fractionner ver f s 0.07 0.54 0.01 0.00 par:pas; +fractionnées fractionner ver f p 0.07 0.54 0.01 0.07 par:pas; +fractions fraction nom f p 2.03 10.88 0.69 4.12 +fractura fracturer ver 1.75 1.22 0.00 0.27 ind:pas:3s; +fracturant fracturer ver 1.75 1.22 0.00 0.20 par:pre; +fracture fracture nom f s 7.88 2.57 5.62 1.82 +fracturent fracturer ver 1.75 1.22 0.10 0.00 ind:pre:3p; +fracturer fracturer ver 1.75 1.22 0.27 0.47 inf; +fractures fracture nom f p 7.88 2.57 2.26 0.74 +fracturé fracturer ver m s 1.75 1.22 0.80 0.14 par:pas; +fracturée fracturer ver f s 1.75 1.22 0.29 0.07 par:pas; +fracturées fracturé adj f p 0.79 0.34 0.04 0.00 +fracturés fracturé adj m p 0.79 0.34 0.09 0.07 +fractus fractus nom m 0.00 0.07 0.00 0.07 +fragile fragile adj s 15.89 45.34 12.94 35.68 +fragilement fragilement adv 0.00 0.07 0.00 0.07 +fragiles fragile adj p 15.89 45.34 2.95 9.66 +fragilise fragiliser ver 0.14 0.07 0.04 0.07 ind:pre:3s; +fragiliser fragiliser ver 0.14 0.07 0.02 0.00 inf; +fragilisé fragiliser ver m s 0.14 0.07 0.04 0.00 par:pas; +fragilisée fragiliser ver f s 0.14 0.07 0.03 0.00 par:pas; +fragilisés fragiliser ver m p 0.14 0.07 0.01 0.00 par:pas; +fragilité fragilité nom f s 1.19 8.65 1.18 8.31 +fragilités fragilité nom f p 1.19 8.65 0.01 0.34 +fragment fragment nom m s 4.57 15.88 1.58 6.01 +fragmentaient fragmenter ver 0.31 0.74 0.00 0.14 ind:imp:3p; +fragmentaire fragmentaire adj s 0.02 1.69 0.01 0.61 +fragmentaires fragmentaire adj p 0.02 1.69 0.01 1.08 +fragmentait fragmenter ver 0.31 0.74 0.00 0.07 ind:imp:3s; +fragmentant fragmenter ver 0.31 0.74 0.01 0.00 par:pre; +fragmentation fragmentation nom f s 0.77 0.14 0.77 0.14 +fragmente fragmenter ver 0.31 0.74 0.07 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fragmentent fragmenter ver 0.31 0.74 0.02 0.07 ind:pre:3p; +fragmenter fragmenter ver 0.31 0.74 0.03 0.00 inf; +fragments fragment nom m p 4.57 15.88 2.99 9.86 +fragmentèrent fragmenter ver 0.31 0.74 0.00 0.07 ind:pas:3p; +fragmenté fragmenter ver m s 0.31 0.74 0.07 0.07 par:pas; +fragmentée fragmenter ver f s 0.31 0.74 0.07 0.14 par:pas; +fragmentées fragmenter ver f p 0.31 0.74 0.03 0.00 par:pas; +fragmentés fragmenté adj m p 0.05 0.27 0.01 0.14 +fragrance fragrance nom f s 0.30 1.08 0.29 0.68 +fragrances fragrance nom f p 0.30 1.08 0.01 0.41 +fragrant fragrant adj m s 0.00 0.07 0.00 0.07 +frai frai nom m s 0.03 0.07 0.03 0.07 +fraie frayer ver 2.54 11.55 0.08 0.61 ind:pre:1s;ind:pre:3s; +fraient frayer ver 2.54 11.55 0.01 0.14 ind:pre:3p; +fraies frayer ver 2.54 11.55 0.01 0.00 ind:pre:2s; +frairie frairie nom f s 0.00 0.41 0.00 0.41 +frais frais adj m 46.43 111.69 27.41 56.22 +fraise fraise nom f s 12.00 10.07 5.28 3.92 +fraiser fraiser ver 1.52 0.14 1.39 0.00 inf; +fraises fraise nom f p 12.00 10.07 6.72 6.15 +fraiseur_outilleur fraiseur_outilleur nom m s 0.00 0.07 0.00 0.07 +fraiseur fraiseur nom m s 0.07 0.27 0.00 0.07 +fraiseurs fraiseur nom m p 0.07 0.27 0.00 0.20 +fraiseuse fraiseur nom f s 0.07 0.27 0.07 0.00 +fraisier fraisier nom m s 0.28 0.68 0.14 0.20 +fraisiers fraisier nom m p 0.28 0.68 0.14 0.47 +fraisil fraisil nom m s 0.00 0.07 0.00 0.07 +fraisées fraiser ver f p 1.52 0.14 0.00 0.07 par:pas; +framboise framboise nom f s 2.50 4.86 1.95 3.92 +framboises framboise nom f p 2.50 4.86 0.55 0.95 +framboisier framboisier nom m s 0.27 0.47 0.27 0.00 +framboisiers framboisier nom m p 0.27 0.47 0.00 0.47 +franc_comtois franc_comtois nom m 0.00 0.07 0.00 0.07 +franc_comtois franc_comtois adj f s 0.00 0.07 0.00 0.07 +franc_jeu franc_jeu nom m s 0.56 0.00 0.56 0.00 +franc_maçon franc_maçon nom m s 0.94 2.09 0.38 0.54 +franc_maçon franc_maçon nom f s 0.94 2.09 0.00 0.27 +franc_maçonnerie franc_maçonnerie nom f s 0.17 0.81 0.17 0.81 +franc_parler franc_parler nom m s 0.53 0.27 0.53 0.27 +franc_tireur franc_tireur nom m s 0.64 2.30 0.10 0.81 +franc franc adj m s 21.67 23.45 12.84 10.95 +francatu francatu nom m s 0.00 0.07 0.00 0.07 +francfort francfort nom f s 0.10 0.14 0.07 0.07 +francforts francfort nom f p 0.10 0.14 0.03 0.07 +franchîmes franchir ver 18.93 64.80 0.14 0.14 ind:pas:1p; +franchît franchir ver 18.93 64.80 0.00 0.07 sub:imp:3s; +franche franc adj f s 21.67 23.45 5.93 7.03 +franchement franchement adv 35.09 28.24 35.09 28.24 +franches franc adj f p 21.67 23.45 0.53 1.96 +franchi franchir ver m s 18.93 64.80 4.49 12.09 par:pas; +franchie franchir ver f s 18.93 64.80 0.60 2.50 par:pas; +franchies franchir ver f p 18.93 64.80 0.17 0.54 par:pas; +franchir franchir ver 18.93 64.80 7.88 22.36 inf; +franchira franchir ver 18.93 64.80 0.46 0.47 ind:fut:3s; +franchirai franchir ver 18.93 64.80 0.25 0.14 ind:fut:1s; +franchiraient franchir ver 18.93 64.80 0.01 0.07 cnd:pre:3p; +franchirais franchir ver 18.93 64.80 0.01 0.07 cnd:pre:1s; +franchirait franchir ver 18.93 64.80 0.05 0.54 cnd:pre:3s; +franchiras franchir ver 18.93 64.80 0.09 0.00 ind:fut:2s; +franchirent franchir ver 18.93 64.80 0.01 1.55 ind:pas:3p; +franchirez franchir ver 18.93 64.80 0.12 0.00 ind:fut:2p; +franchirions franchir ver 18.93 64.80 0.03 0.07 cnd:pre:1p; +franchirons franchir ver 18.93 64.80 0.05 0.14 ind:fut:1p; +franchiront franchir ver 18.93 64.80 0.09 0.00 ind:fut:3p; +franchis franchir ver m p 18.93 64.80 0.99 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +franchisage franchisage nom m s 0.03 0.00 0.03 0.00 +franchisant franchiser ver 0.17 0.00 0.01 0.00 par:pre; +franchise franchise nom f s 5.75 7.97 5.62 7.70 +franchiser franchiser ver 0.17 0.00 0.09 0.00 inf; +franchises franchise nom f p 5.75 7.97 0.14 0.27 +franchissables franchissable adj p 0.00 0.07 0.00 0.07 +franchissaient franchir ver 18.93 64.80 0.03 1.82 ind:imp:3p; +franchissais franchir ver 18.93 64.80 0.04 0.47 ind:imp:1s; +franchissait franchir ver 18.93 64.80 0.32 3.04 ind:imp:3s; +franchissant franchir ver 18.93 64.80 0.48 4.53 par:pre; +franchisse franchir ver 18.93 64.80 0.17 0.14 sub:pre:1s;sub:pre:3s; +franchissement franchissement nom m s 0.11 1.08 0.11 0.88 +franchissements franchissement nom m p 0.11 1.08 0.00 0.20 +franchissent franchir ver 18.93 64.80 0.27 0.81 ind:pre:3p; +franchissez franchir ver 18.93 64.80 0.29 0.00 imp:pre:2p;ind:pre:2p; +franchissions franchir ver 18.93 64.80 0.00 0.14 ind:imp:1p; +franchissons franchir ver 18.93 64.80 0.07 0.74 imp:pre:1p;ind:pre:1p; +franchisé franchiser ver m s 0.17 0.00 0.04 0.00 par:pas; +franchisée franchiser ver f s 0.17 0.00 0.03 0.00 par:pas; +franchit franchir ver 18.93 64.80 1.83 9.66 ind:pre:3s;ind:pas:3s; +franchouillard franchouillard adj m s 0.01 0.34 0.01 0.27 +franchouillarde franchouillard adj f s 0.01 0.34 0.00 0.07 +franchouillards franchouillard nom m p 0.00 0.41 0.00 0.34 +francisant franciser ver 0.00 0.68 0.00 0.07 par:pre; +francisation francisation nom f s 0.00 0.14 0.00 0.14 +franciscain franciscain adj m s 1.49 0.61 0.29 0.41 +franciscaine franciscain adj f s 1.49 0.61 0.14 0.07 +franciscains franciscain adj m p 1.49 0.61 1.07 0.14 +franciser franciser ver 0.00 0.68 0.00 0.20 inf; +francisque francisque nom f s 0.00 0.47 0.00 0.41 +francisques francisque nom f p 0.00 0.47 0.00 0.07 +francisé franciser ver m s 0.00 0.68 0.00 0.27 par:pas; +francisés franciser ver m p 0.00 0.68 0.00 0.14 par:pas; +francité francité nom f s 0.00 0.68 0.00 0.68 +franco_africain franco_africain adj m s 0.14 0.07 0.14 0.07 +franco_algérien franco_algérien adj f s 0.00 0.07 0.00 0.07 +franco_allemand franco_allemand adj m s 0.11 0.61 0.00 0.14 +franco_allemand franco_allemand adj f s 0.11 0.61 0.11 0.34 +franco_allemand franco_allemand adj f p 0.11 0.61 0.00 0.14 +franco_américain franco_américain adj m s 0.04 0.68 0.01 0.07 +franco_américain franco_américain adj f s 0.04 0.68 0.03 0.27 +franco_américain franco_américain adj f p 0.04 0.68 0.00 0.20 +franco_américain franco_américain adj m p 0.04 0.68 0.00 0.14 +franco_anglais franco_anglais adj m s 0.01 0.74 0.01 0.27 +franco_anglais franco_anglais adj f s 0.01 0.74 0.00 0.41 +franco_anglais franco_anglais nom f p 0.01 0.00 0.01 0.00 +franco_belge franco_belge adj f s 0.00 0.14 0.00 0.14 +franco_britannique franco_britannique adj f s 0.14 2.43 0.00 1.35 +franco_britannique franco_britannique adj p 0.14 2.43 0.14 1.08 +franco_canadien franco_canadien nom m s 0.01 0.00 0.01 0.00 +franco_chinois franco_chinois adj f p 0.00 0.07 0.00 0.07 +franco_italienne franco_italienne adj f s 0.01 0.00 0.01 0.00 +franco_japonais franco_japonais adj f s 0.01 0.00 0.01 0.00 +franco_libanais franco_libanais adj m p 0.00 0.14 0.00 0.14 +franco_mongol franco_mongol adj f s 0.00 0.14 0.00 0.14 +franco_polonais franco_polonais adj f s 0.00 0.07 0.00 0.07 +franco_russe franco_russe adj s 0.00 1.42 0.00 1.42 +franco_russe franco_russe nom p 0.00 0.20 0.00 0.07 +franco_soviétique franco_soviétique adj s 0.00 0.14 0.00 0.14 +franco_syrien franco_syrien adj m s 0.00 0.14 0.00 0.14 +franco_turque franco_turque adj f s 0.00 0.14 0.00 0.14 +franco_vietnamien franco_vietnamien adj m s 0.00 0.07 0.00 0.07 +franco franco adv_sup 3.87 2.70 3.87 2.70 +francomanie francomanie nom f s 0.00 0.07 0.00 0.07 +francophile francophile adj s 0.00 0.20 0.00 0.14 +francophiles francophile adj p 0.00 0.20 0.00 0.07 +francophilie francophilie nom f s 0.00 0.27 0.00 0.27 +francophobie francophobie nom f s 0.00 0.07 0.00 0.07 +francophone francophone adj s 0.12 0.74 0.10 0.61 +francophones francophone adj m p 0.12 0.74 0.02 0.14 +francophonie francophonie nom f s 0.00 0.20 0.00 0.20 +francs_bourgeois francs_bourgeois nom m p 0.00 0.20 0.00 0.20 +franc_maçon franc_maçon nom m p 0.94 2.09 0.57 1.28 +franc_tireur franc_tireur nom m p 0.64 2.30 0.54 1.49 +francs franc nom m p 17.64 82.84 16.43 78.11 +frange frange nom f s 0.97 13.45 0.69 8.04 +frangeaient franger ver 0.00 3.65 0.00 0.14 ind:imp:3p; +frangeait franger ver 0.00 3.65 0.00 0.20 ind:imp:3s; +frangeant franger ver 0.00 3.65 0.00 0.07 par:pre; +frangent franger ver 0.00 3.65 0.00 0.07 ind:pre:3p; +franges frange nom f p 0.97 13.45 0.28 5.41 +frangin frangin nom m s 9.03 18.78 7.29 7.43 +frangine frangin nom f s 9.03 18.78 1.30 6.28 +frangines frangin nom f p 9.03 18.78 0.11 2.91 +frangins frangin nom m p 9.03 18.78 0.34 2.16 +frangipane frangipane nom f s 0.00 0.34 0.00 0.14 +frangipanes frangipane nom f p 0.00 0.34 0.00 0.20 +frangipaniers frangipanier nom m p 0.00 0.07 0.00 0.07 +franglais franglais nom m 0.00 0.20 0.00 0.20 +frangé franger ver m s 0.00 3.65 0.00 0.81 par:pas; +frangée franger ver f s 0.00 3.65 0.00 0.68 par:pas; +frangées franger ver f p 0.00 3.65 0.00 0.74 par:pas; +frangés franger ver m p 0.00 3.65 0.00 0.81 par:pas; +frankaoui frankaoui nom s 0.00 0.07 0.00 0.07 +franklin franklin nom m s 0.04 0.07 0.04 0.07 +franque franque adj f s 0.00 4.53 0.00 3.58 +franques franque adj f p 0.00 4.53 0.00 0.95 +franquette franquette nom f s 0.32 0.88 0.32 0.88 +franquisme franquisme nom m s 0.50 0.07 0.50 0.07 +franquiste franquiste adj s 0.77 0.68 0.14 0.34 +franquistes franquiste nom p 0.90 0.54 0.80 0.47 +français français nom m s 39.49 164.59 34.94 148.72 +française français adj f s 43.06 298.85 11.03 105.07 +françaises français adj f p 43.06 298.85 2.25 45.07 +frapadingue frapadingue adj m s 0.06 0.27 0.05 0.20 +frapadingues frapadingue adj m p 0.06 0.27 0.01 0.07 +frappa frapper ver 160.04 168.31 1.64 21.49 ind:pas:3s; +frappadingue frappadingue adj m s 0.09 0.27 0.07 0.14 +frappadingues frappadingue adj m p 0.09 0.27 0.01 0.14 +frappai frapper ver 160.04 168.31 0.12 1.55 ind:pas:1s; +frappaient frapper ver 160.04 168.31 0.22 3.92 ind:imp:3p; +frappais frapper ver 160.04 168.31 1.05 0.61 ind:imp:1s;ind:imp:2s; +frappait frapper ver 160.04 168.31 2.86 17.97 ind:imp:3s; +frappant frapper ver 160.04 168.31 1.00 8.45 par:pre; +frappante frappant adj f s 1.69 3.65 0.78 1.28 +frappantes frappant adj f p 1.69 3.65 0.11 0.14 +frappants frappant adj m p 1.69 3.65 0.01 0.27 +frappe frapper ver 160.04 168.31 41.37 20.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +frappement frappement nom m s 0.01 0.20 0.00 0.20 +frappements frappement nom m p 0.01 0.20 0.01 0.00 +frappent frapper ver 160.04 168.31 3.24 5.34 ind:pre:3p; +frapper frapper ver 160.04 168.31 37.08 32.09 ind:pre:2p;inf; +frappera frapper ver 160.04 168.31 1.71 0.34 ind:fut:3s; +frapperai frapper ver 160.04 168.31 1.68 0.07 ind:fut:1s; +frapperaient frapper ver 160.04 168.31 0.05 0.41 cnd:pre:3p; +frapperais frapper ver 160.04 168.31 0.37 0.20 cnd:pre:1s;cnd:pre:2s; +frapperait frapper ver 160.04 168.31 0.32 1.15 cnd:pre:3s; +frapperas frapper ver 160.04 168.31 0.29 0.14 ind:fut:2s; +frapperez frapper ver 160.04 168.31 0.33 0.00 ind:fut:2p; +frapperiez frapper ver 160.04 168.31 0.03 0.00 cnd:pre:2p; +frapperons frapper ver 160.04 168.31 0.23 0.14 ind:fut:1p; +frapperont frapper ver 160.04 168.31 0.27 0.14 ind:fut:3p; +frappes frapper ver 160.04 168.31 3.92 0.14 ind:pre:2s;sub:pre:2s; +frappeur frappeur nom m s 0.55 0.34 0.40 0.20 +frappeurs frappeur nom m p 0.55 0.34 0.15 0.14 +frappez frapper ver 160.04 168.31 7.81 1.08 imp:pre:2p;ind:pre:2p; +frappiez frapper ver 160.04 168.31 0.16 0.07 ind:imp:2p; +frappions frapper ver 160.04 168.31 0.01 0.14 ind:imp:1p; +frappons frapper ver 160.04 168.31 0.40 0.00 imp:pre:1p;ind:pre:1p; +frappât frapper ver 160.04 168.31 0.00 0.14 sub:imp:3s; +frappèrent frapper ver 160.04 168.31 0.04 1.28 ind:pas:3p; +frappé frapper ver m s 160.04 168.31 43.83 35.68 par:pas; +frappée frapper ver f s 160.04 168.31 8.21 8.45 par:pas; +frappées frappé adj f p 1.19 3.99 0.15 0.47 +frappés frapper ver m p 160.04 168.31 1.72 5.81 par:pas; +fraser fraser ver 0.01 0.00 0.01 0.00 inf; +frasque frasque nom f s 0.51 1.76 0.14 0.07 +frasques frasque nom f p 0.51 1.76 0.37 1.69 +frater frater nom m s 0.01 0.07 0.01 0.07 +fraternel fraternel adj m s 2.06 10.27 1.13 4.32 +fraternelle fraternel adj f s 2.06 10.27 0.39 3.11 +fraternellement fraternellement adv 0.11 1.62 0.11 1.62 +fraternelles fraternel adj f p 2.06 10.27 0.20 0.81 +fraternels fraternel adj m p 2.06 10.27 0.34 2.03 +fraternisa fraterniser ver 0.61 0.95 0.00 0.07 ind:pas:3s; +fraternisaient fraterniser ver 0.61 0.95 0.00 0.20 ind:imp:3p; +fraternisant fraterniser ver 0.61 0.95 0.00 0.07 par:pre; +fraternisation fraternisation nom f s 0.06 0.34 0.06 0.34 +fraternise fraterniser ver 0.61 0.95 0.30 0.00 imp:pre:2s;ind:pre:3s; +fraternisent fraterniser ver 0.61 0.95 0.03 0.07 ind:pre:3p; +fraterniser fraterniser ver 0.61 0.95 0.23 0.20 inf; +fraterniserait fraterniser ver 0.61 0.95 0.00 0.14 cnd:pre:3s; +fraternisiez fraterniser ver 0.61 0.95 0.01 0.00 ind:imp:2p; +fraternisons fraterniser ver 0.61 0.95 0.01 0.00 ind:pre:1p; +fraternisèrent fraterniser ver 0.61 0.95 0.00 0.07 ind:pas:3p; +fraternisé fraterniser ver m s 0.61 0.95 0.04 0.14 par:pas; +fraternité fraternité nom f s 3.63 7.43 3.49 7.30 +fraternités fraternité nom f p 3.63 7.43 0.14 0.14 +fratricide fratricide adj s 0.41 0.54 0.28 0.34 +fratricides fratricide adj p 0.41 0.54 0.14 0.20 +fratrie fratrie nom f s 0.08 0.14 0.07 0.14 +fratries fratrie nom f p 0.08 0.14 0.01 0.00 +frauda frauder ver 0.49 0.41 0.00 0.07 ind:pas:3s; +fraudais frauder ver 0.49 0.41 0.01 0.07 ind:imp:1s;ind:imp:2s; +fraude fraude nom f s 5.54 3.24 4.82 2.84 +frauder frauder ver 0.49 0.41 0.16 0.14 inf; +fraudes fraude nom f p 5.54 3.24 0.72 0.41 +fraudeur fraudeur nom m s 0.78 0.14 0.06 0.07 +fraudeurs fraudeur nom m p 0.78 0.14 0.37 0.07 +fraudeuse fraudeur nom f s 0.78 0.14 0.35 0.00 +fraudé frauder ver m s 0.49 0.41 0.27 0.07 par:pas; +frauduleuse frauduleux adj f s 0.58 0.68 0.14 0.41 +frauduleusement frauduleusement adv 0.03 0.14 0.03 0.14 +frauduleuses frauduleux adj f p 0.58 0.68 0.19 0.14 +frauduleux frauduleux adj m 0.58 0.68 0.25 0.14 +fraya frayer ver 2.54 11.55 0.01 0.81 ind:pas:3s; +frayai frayer ver 2.54 11.55 0.00 0.14 ind:pas:1s; +frayaient frayer ver 2.54 11.55 0.01 0.47 ind:imp:3p; +frayais frayer ver 2.54 11.55 0.02 0.20 ind:imp:1s; +frayait frayer ver 2.54 11.55 0.15 1.35 ind:imp:3s; +frayant frayer ver 2.54 11.55 0.25 0.81 par:pre; +fraye frayer ver 2.54 11.55 0.29 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frayent frayer ver 2.54 11.55 0.02 0.34 ind:pre:3p; +frayer frayer ver 2.54 11.55 1.03 4.86 inf; +frayes frayer ver 2.54 11.55 0.03 0.07 ind:pre:2s; +frayeur frayeur nom f s 3.86 6.89 3.43 5.88 +frayeurs frayeur nom f p 3.86 6.89 0.43 1.01 +frayez frayer ver 2.54 11.55 0.26 0.00 imp:pre:2p;ind:pre:2p; +frayons frayer ver 2.54 11.55 0.01 0.07 imp:pre:1p;ind:pre:1p; +frayèrent frayer ver 2.54 11.55 0.00 0.07 ind:pas:3p; +frayé frayer ver m s 2.54 11.55 0.27 0.74 par:pas; +frayée frayer ver f s 2.54 11.55 0.10 0.27 par:pas; +freak freak nom m s 0.24 0.14 0.16 0.14 +freaks freak nom m p 0.24 0.14 0.08 0.00 +fredaines fredaine nom f p 0.06 0.20 0.06 0.20 +fredonna fredonner ver 1.69 9.66 0.00 1.28 ind:pas:3s; +fredonnaient fredonner ver 1.69 9.66 0.00 0.47 ind:imp:3p; +fredonnais fredonner ver 1.69 9.66 0.04 0.27 ind:imp:1s;ind:imp:2s; +fredonnait fredonner ver 1.69 9.66 0.08 2.23 ind:imp:3s; +fredonnant fredonner ver 1.69 9.66 0.26 1.15 par:pre; +fredonne fredonner ver 1.69 9.66 0.81 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fredonnement fredonnement nom m s 0.04 0.14 0.04 0.14 +fredonnent fredonner ver 1.69 9.66 0.04 0.00 ind:pre:3p; +fredonner fredonner ver 1.69 9.66 0.23 2.03 inf; +fredonnera fredonner ver 1.69 9.66 0.02 0.00 ind:fut:3s; +fredonnerai fredonner ver 1.69 9.66 0.01 0.00 ind:fut:1s; +fredonnerait fredonner ver 1.69 9.66 0.00 0.07 cnd:pre:3s; +fredonneras fredonner ver 1.69 9.66 0.01 0.00 ind:fut:2s; +fredonnez fredonner ver 1.69 9.66 0.16 0.00 imp:pre:2p;ind:pre:2p; +fredonnâmes fredonner ver 1.69 9.66 0.00 0.07 ind:pas:1p; +fredonnons fredonner ver 1.69 9.66 0.00 0.07 ind:pre:1p; +fredonnèrent fredonner ver 1.69 9.66 0.00 0.14 ind:pas:3p; +fredonné fredonner ver m s 1.69 9.66 0.04 0.41 par:pas; +fredonnée fredonner ver f s 1.69 9.66 0.00 0.07 par:pas; +fredonnées fredonner ver f p 1.69 9.66 0.00 0.07 par:pas; +fredonnés fredonner ver m p 1.69 9.66 0.00 0.07 par:pas; +free_jazz free_jazz nom m 0.00 0.07 0.00 0.07 +free_lance free_lance nom s 0.20 0.07 0.20 0.07 +free_jazz free_jazz nom m 0.00 0.07 0.00 0.07 +freelance freelance nom f s 0.40 0.07 0.40 0.07 +freesia freesia nom m s 0.05 0.07 0.01 0.00 +freesias freesia nom m p 0.05 0.07 0.04 0.07 +freezer freezer nom m s 1.08 0.00 1.08 0.00 +frein frein nom m s 10.25 13.18 4.87 7.91 +freina freiner ver 7.43 13.04 0.00 2.09 ind:pas:3s; +freinage freinage nom m s 0.97 0.74 0.84 0.68 +freinages freinage nom m p 0.97 0.74 0.14 0.07 +freinai freiner ver 7.43 13.04 0.00 0.14 ind:pas:1s; +freinaient freiner ver 7.43 13.04 0.00 0.34 ind:imp:3p; +freinais freiner ver 7.43 13.04 0.00 0.07 ind:imp:1s; +freinait freiner ver 7.43 13.04 0.00 0.68 ind:imp:3s; +freinant freiner ver 7.43 13.04 0.00 0.41 par:pre; +freine freiner ver 7.43 13.04 3.52 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +freinent freiner ver 7.43 13.04 0.15 0.41 ind:pre:3p; +freiner freiner ver 7.43 13.04 1.63 3.11 inf; +freinera freiner ver 7.43 13.04 0.07 0.00 ind:fut:3s; +freinerais freiner ver 7.43 13.04 0.01 0.00 cnd:pre:1s; +freinerez freiner ver 7.43 13.04 0.02 0.00 ind:fut:2p; +freines freiner ver 7.43 13.04 0.34 0.14 ind:pre:2s; +freineurs freineur nom m p 0.01 0.00 0.01 0.00 +freinez freiner ver 7.43 13.04 0.50 0.00 imp:pre:2p;ind:pre:2p; +freinons freiner ver 7.43 13.04 0.10 0.07 imp:pre:1p;ind:pre:1p; +freins frein nom m p 10.25 13.18 5.38 5.27 +freinèrent freiner ver 7.43 13.04 0.00 0.07 ind:pas:3p; +freiné freiner ver m s 7.43 13.04 1.04 1.08 par:pas; +freinée freiner ver f s 7.43 13.04 0.01 0.47 par:pas; +freinées freiner ver f p 7.43 13.04 0.01 0.07 par:pas; +freinés freiner ver m p 7.43 13.04 0.02 0.07 par:pas; +frelater frelater ver 0.06 0.07 0.01 0.00 inf; +frelaté frelaté adj m s 0.18 0.81 0.02 0.34 +frelatée frelaté adj f s 0.18 0.81 0.06 0.27 +frelatées frelaté adj f p 0.18 0.81 0.00 0.20 +frelatés frelaté adj m p 0.18 0.81 0.10 0.00 +frelon frelon nom m s 0.78 1.82 0.59 0.81 +frelons frelon nom m p 0.78 1.82 0.18 1.01 +freluquet freluquet nom m s 0.51 0.68 0.46 0.34 +freluquets freluquet nom m p 0.51 0.68 0.05 0.34 +french french nom m s 0.20 0.41 0.20 0.41 +fresque fresque nom f s 3.18 6.76 1.37 3.24 +fresques fresque nom f p 3.18 6.76 1.81 3.51 +fresquiste fresquiste nom s 0.01 0.00 0.01 0.00 +fret fret nom m s 1.19 0.74 1.18 0.68 +fretin fretin nom m s 0.64 0.61 0.63 0.61 +fretins fretin nom m p 0.64 0.61 0.01 0.00 +frets fret nom m p 1.19 0.74 0.01 0.07 +fretta fretter ver 0.00 0.07 0.00 0.07 ind:pas:3s; +frette frette nom f s 0.16 0.27 0.16 0.27 +freudien freudien adj m s 0.49 0.61 0.23 0.34 +freudienne freudien adj f s 0.49 0.61 0.13 0.20 +freudiennes freudien adj f p 0.49 0.61 0.04 0.07 +freudiens freudien adj m p 0.49 0.61 0.10 0.00 +freudisme freudisme nom m s 0.02 0.14 0.02 0.14 +freux freux nom m 0.02 0.20 0.02 0.20 +friabilité friabilité nom f s 0.00 0.14 0.00 0.14 +friable friable adj s 0.12 2.91 0.10 1.82 +friables friable adj p 0.12 2.91 0.03 1.08 +friand friand adj m s 0.47 3.31 0.29 1.49 +friande friand adj f s 0.47 3.31 0.02 0.74 +friandes friand adj f p 0.47 3.31 0.01 0.27 +friandise friandise nom f s 2.28 4.05 0.46 1.49 +friandises friandise nom f p 2.28 4.05 1.82 2.57 +friands friand adj m p 0.47 3.31 0.15 0.81 +fribourgeoise fribourgeois nom f s 0.00 0.14 0.00 0.14 +fric_frac fric_frac nom m 0.25 0.41 0.25 0.41 +fric fric nom m s 109.01 26.42 108.99 26.35 +fricadelle fricadelle nom f s 1.21 0.00 0.67 0.00 +fricadelles fricadelle nom f p 1.21 0.00 0.54 0.00 +fricandeau fricandeau nom m s 0.00 0.27 0.00 0.14 +fricandeaux fricandeau nom m p 0.00 0.27 0.00 0.14 +fricasse fricasser ver 0.01 0.34 0.01 0.14 ind:pre:1s;ind:pre:3s; +fricasserai fricasser ver 0.01 0.34 0.00 0.07 ind:fut:1s; +fricassé fricasser ver m s 0.01 0.34 0.00 0.14 par:pas; +fricassée fricassée nom f s 0.46 0.68 0.46 0.47 +fricassées fricassée nom f p 0.46 0.68 0.00 0.20 +fricatif fricatif adj m s 0.00 0.20 0.00 0.20 +fricatives fricative nom f p 0.01 0.00 0.01 0.00 +friche friche nom f s 0.32 7.91 0.28 4.59 +friches friche nom f p 0.32 7.91 0.04 3.31 +frichti frichti nom m s 0.03 4.39 0.03 4.12 +frichtis frichti nom m p 0.03 4.39 0.00 0.27 +fricot fricot nom m s 0.01 0.81 0.01 0.54 +fricotage fricotage nom m s 0.03 0.20 0.03 0.00 +fricotages fricotage nom m p 0.03 0.20 0.00 0.20 +fricotaient fricoter ver 1.86 1.55 0.01 0.07 ind:imp:3p; +fricotais fricoter ver 1.86 1.55 0.06 0.07 ind:imp:1s;ind:imp:2s; +fricotait fricoter ver 1.86 1.55 0.08 0.27 ind:imp:3s; +fricotant fricoter ver 1.86 1.55 0.01 0.00 par:pre; +fricote fricoter ver 1.86 1.55 0.41 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fricotent fricoter ver 1.86 1.55 0.21 0.00 ind:pre:3p; +fricoter fricoter ver 1.86 1.55 0.47 0.41 inf; +fricotes fricoter ver 1.86 1.55 0.28 0.14 ind:pre:2s; +fricoteur fricoteur nom m s 0.11 0.07 0.10 0.00 +fricoteurs fricoteur nom m p 0.11 0.07 0.01 0.07 +fricotez fricoter ver 1.86 1.55 0.09 0.00 ind:pre:2p; +fricotiez fricoter ver 1.86 1.55 0.04 0.07 ind:imp:2p; +fricots fricot nom m p 0.01 0.81 0.00 0.27 +fricoté fricoter ver m s 1.86 1.55 0.20 0.14 par:pas; +frics fric nom m p 109.01 26.42 0.02 0.07 +friction friction nom f s 1.14 2.36 0.87 0.54 +frictionna frictionner ver 0.59 2.64 0.00 0.54 ind:pas:3s; +frictionnais frictionner ver 0.59 2.64 0.10 0.00 ind:imp:1s; +frictionnait frictionner ver 0.59 2.64 0.11 0.41 ind:imp:3s; +frictionnant frictionner ver 0.59 2.64 0.00 0.27 par:pre; +frictionne frictionner ver 0.59 2.64 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frictionnent frictionner ver 0.59 2.64 0.01 0.14 ind:pre:3p; +frictionner frictionner ver 0.59 2.64 0.06 0.47 inf; +frictionnerai frictionner ver 0.59 2.64 0.00 0.07 ind:fut:1s; +frictionnerait frictionner ver 0.59 2.64 0.00 0.07 cnd:pre:3s; +frictionnez frictionner ver 0.59 2.64 0.14 0.07 imp:pre:2p;ind:pre:2p; +frictionnèrent frictionner ver 0.59 2.64 0.00 0.07 ind:pas:3p; +frictionné frictionner ver m s 0.59 2.64 0.01 0.27 par:pas; +frictions friction nom f p 1.14 2.36 0.27 1.82 +fridolin fridolin nom m s 0.16 0.34 0.01 0.00 +fridolins fridolin nom m p 0.16 0.34 0.14 0.34 +frigidaire frigidaire nom m s 1.20 3.45 1.16 3.18 +frigidaires frigidaire nom m p 1.20 3.45 0.05 0.27 +frigide frigide adj s 0.69 0.81 0.65 0.68 +frigides frigide adj f p 0.69 0.81 0.04 0.14 +frigidité frigidité nom f s 0.06 0.34 0.06 0.34 +frigo frigo nom m s 19.29 7.97 19.07 7.50 +frigorifiant frigorifier ver 0.34 0.47 0.01 0.07 par:pre; +frigorifier frigorifier ver 0.34 0.47 0.01 0.00 inf; +frigorifique frigorifique adj m s 0.26 0.14 0.10 0.00 +frigorifiques frigorifique adj f p 0.26 0.14 0.16 0.14 +frigorifié frigorifier ver m s 0.34 0.47 0.23 0.07 par:pas; +frigorifiée frigorifier ver f s 0.34 0.47 0.08 0.07 par:pas; +frigorifiées frigorifié adj f p 0.13 0.61 0.01 0.07 +frigorifiés frigorifié adj m p 0.13 0.61 0.02 0.00 +frigorigène frigorigène adj m s 0.01 0.00 0.01 0.00 +frigorigène frigorigène nom m s 0.01 0.00 0.01 0.00 +frigos frigo nom m p 19.29 7.97 0.22 0.47 +frileuse frileux adj f s 1.08 5.88 0.31 1.55 +frileusement frileusement adv 0.00 1.96 0.00 1.96 +frileuses frileux adj f p 1.08 5.88 0.03 0.68 +frileux frileux adj m 1.08 5.88 0.74 3.65 +frilosité frilosité nom f s 0.01 0.07 0.01 0.07 +frima frimer ver 3.67 4.32 0.00 0.07 ind:pas:3s; +frimaient frimer ver 3.67 4.32 0.00 0.07 ind:imp:3p; +frimaire frimaire nom m s 0.00 0.07 0.00 0.07 +frimais frimer ver 3.67 4.32 0.30 0.41 ind:imp:1s;ind:imp:2s; +frimait frimer ver 3.67 4.32 0.04 0.20 ind:imp:3s; +frimant frimer ver 3.67 4.32 0.01 0.20 par:pre; +frimas frimas nom m 0.11 1.15 0.11 1.15 +frime frimer ver 3.67 4.32 1.37 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +friment frimer ver 3.67 4.32 0.02 0.07 ind:pre:3p; +frimer frimer ver 3.67 4.32 1.73 1.62 inf; +frimerais frimer ver 3.67 4.32 0.00 0.07 cnd:pre:2s; +frimes frimer ver 3.67 4.32 0.08 0.00 ind:pre:2s; +frimeur frimeur nom m s 1.43 0.47 0.86 0.27 +frimeurs frimeur nom m p 1.43 0.47 0.51 0.20 +frimeuse frimeur nom f s 1.43 0.47 0.05 0.00 +frimez frimer ver 3.67 4.32 0.01 0.00 ind:pre:2p; +frimiez frimer ver 3.67 4.32 0.02 0.00 ind:imp:2p; +frimousse frimousse nom f s 0.81 1.82 0.81 1.49 +frimousses frimousse nom f p 0.81 1.82 0.00 0.34 +frimé frimer ver m s 3.67 4.32 0.08 0.20 par:pas; +frimée frimer ver f s 3.67 4.32 0.00 0.07 par:pas; +frimées frimer ver f p 3.67 4.32 0.00 0.07 par:pas; +frimés frimer ver m p 3.67 4.32 0.01 0.14 par:pas; +fringale fringale nom f s 0.46 2.70 0.40 2.23 +fringales fringale nom f p 0.46 2.70 0.05 0.47 +fringant fringant adj m s 0.86 2.77 0.63 1.96 +fringante fringant adj f s 0.86 2.77 0.19 0.41 +fringantes fringant adj f p 0.86 2.77 0.02 0.00 +fringants fringant adj m p 0.86 2.77 0.03 0.41 +fringillidé fringillidé nom m s 0.01 0.07 0.01 0.07 +fringuait fringuer ver 1.28 3.31 0.02 0.27 ind:imp:3s; +fringue fringue nom f s 13.12 11.82 0.23 0.20 +fringuent fringuer ver 1.28 3.31 0.14 0.14 ind:pre:3p; +fringuer fringuer ver 1.28 3.31 0.29 0.47 inf; +fringues fringue nom f p 13.12 11.82 12.88 11.62 +fringuez fringuer ver 1.28 3.31 0.01 0.00 imp:pre:2p; +fringué fringuer ver m s 1.28 3.31 0.47 0.81 par:pas; +fringuée fringuer ver f s 1.28 3.31 0.10 0.88 par:pas; +fringuées fringuer ver f p 1.28 3.31 0.03 0.14 par:pas; +fringués fringuer ver m p 1.28 3.31 0.04 0.41 par:pas; +frio frio adj s 0.01 0.07 0.01 0.07 +fripa friper ver 0.11 1.89 0.00 0.07 ind:pas:3s; +fripaient friper ver 0.11 1.89 0.00 0.14 ind:imp:3p; +fripant friper ver 0.11 1.89 0.00 0.07 par:pre; +fripe fripe nom f s 0.58 0.95 0.22 0.61 +fripent friper ver 0.11 1.89 0.01 0.07 ind:pre:3p; +friper friper ver 0.11 1.89 0.01 0.20 inf; +friperie friperie nom f s 0.37 0.20 0.37 0.20 +fripes fripe nom f p 0.58 0.95 0.36 0.34 +fripier fripier nom m s 0.04 1.01 0.02 0.61 +fripiers fripier nom m p 0.04 1.01 0.02 0.41 +fripon fripon nom m s 0.86 0.68 0.44 0.34 +friponne fripon nom f s 0.86 0.68 0.33 0.07 +friponnerie friponnerie nom f s 0.13 0.14 0.13 0.14 +friponnes friponne nom f p 0.02 0.00 0.02 0.00 +fripons fripon nom m p 0.86 0.68 0.09 0.20 +fripouille fripouille nom f s 2.08 2.23 1.99 1.15 +fripouillerie fripouillerie nom f s 0.00 0.20 0.00 0.14 +fripouilleries fripouillerie nom f p 0.00 0.20 0.00 0.07 +fripouilles fripouille nom f p 2.08 2.23 0.10 1.08 +frippe frippe nom f s 0.00 0.07 0.00 0.07 +fripé fripé adj m s 0.57 5.88 0.33 1.49 +fripée fripé adj f s 0.57 5.88 0.17 1.82 +fripées fripé adj f p 0.57 5.88 0.04 1.01 +fripés fripé adj m p 0.57 5.88 0.03 1.55 +friqué friqué adj m s 1.05 0.74 0.32 0.20 +friquée friqué adj f s 1.05 0.74 0.16 0.14 +friquées friqué adj f p 1.05 0.74 0.11 0.07 +friqués friqué adj m p 1.05 0.74 0.46 0.34 +frire frire ver 6.63 4.73 2.26 1.82 inf; +fris frire ver 6.63 4.73 0.32 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +frisa friser ver 2.54 7.70 0.00 0.14 ind:pas:3s; +frisaient friser ver 2.54 7.70 0.14 0.27 ind:imp:3p; +frisais friser ver 2.54 7.70 0.10 0.07 ind:imp:1s;ind:imp:2s; +frisait friser ver 2.54 7.70 0.16 0.95 ind:imp:3s; +frisant frisant adj m s 0.02 0.95 0.02 0.20 +frisante frisant adj f s 0.02 0.95 0.00 0.68 +frisants frisant adj m p 0.02 0.95 0.00 0.07 +frisbee frisbee nom m s 1.35 0.00 1.35 0.00 +frise_poulet frise_poulet nom m s 0.01 0.00 0.01 0.00 +frise friser ver 2.54 7.70 0.80 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +friseler friseler ver 0.00 0.07 0.00 0.07 inf; +friselis friselis nom m 0.00 1.35 0.00 1.35 +friselée friselée nom f s 0.00 0.07 0.00 0.07 +frisent friser ver 2.54 7.70 0.04 0.27 ind:pre:3p; +friser friser ver 2.54 7.70 0.42 1.42 inf; +friserai friser ver 2.54 7.70 0.00 0.07 ind:fut:1s; +frises frise nom f p 0.37 3.45 0.14 0.41 +frisette frisette nom f s 0.06 1.42 0.03 0.88 +frisettes frisette nom f p 0.06 1.42 0.03 0.54 +friseur friseur nom m s 0.00 0.20 0.00 0.20 +frisez friser ver 2.54 7.70 0.02 0.00 ind:pre:2p; +frisâmes friser ver 2.54 7.70 0.00 0.07 ind:pas:1p; +frison frison nom m s 0.10 0.54 0.10 0.00 +frisonne frison adj f s 0.00 0.27 0.00 0.14 +frisonnes frison adj f p 0.00 0.27 0.00 0.07 +frisons friser ver 2.54 7.70 0.14 0.00 ind:pre:1p; +frisottaient frisotter ver 0.01 0.61 0.00 0.14 ind:imp:3p; +frisottant frisottant adj m s 0.00 0.27 0.00 0.07 +frisottants frisottant adj m p 0.00 0.27 0.00 0.20 +frisottement frisottement nom m s 0.00 0.07 0.00 0.07 +frisottent frisotter ver 0.01 0.61 0.00 0.14 ind:pre:3p; +frisotter frisotter ver 0.01 0.61 0.00 0.07 inf; +frisottis frisottis nom m 0.01 0.14 0.01 0.14 +frisotté frisotter ver m s 0.01 0.61 0.01 0.00 par:pas; +frisottée frisotté adj f s 0.00 0.68 0.00 0.41 +frisottées frisotter ver f p 0.01 0.61 0.00 0.07 par:pas; +frisottés frisotter ver m p 0.01 0.61 0.00 0.14 par:pas; +frisous frisou nom m p 0.14 0.07 0.14 0.07 +frisquet frisquet adj m s 1.25 1.01 1.16 0.68 +frisquette frisquet adj f s 1.25 1.01 0.10 0.34 +frisselis frisselis nom m 0.00 0.14 0.00 0.14 +frisson frisson nom m s 8.62 21.69 4.23 14.26 +frissonna frissonner ver 2.21 20.34 0.01 4.39 ind:pas:3s; +frissonnai frissonner ver 2.21 20.34 0.01 0.34 ind:pas:1s; +frissonnaient frissonner ver 2.21 20.34 0.00 1.01 ind:imp:3p; +frissonnais frissonner ver 2.21 20.34 0.03 0.68 ind:imp:1s; +frissonnait frissonner ver 2.21 20.34 0.21 3.38 ind:imp:3s; +frissonnant frissonner ver 2.21 20.34 0.14 2.09 par:pre; +frissonnante frissonnant adj f s 0.20 3.92 0.07 1.82 +frissonnantes frissonnant adj f p 0.20 3.92 0.00 0.61 +frissonnants frissonnant adj m p 0.20 3.92 0.02 0.54 +frissonne frissonner ver 2.21 20.34 0.75 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frissonnement frissonnement nom m s 0.01 0.61 0.01 0.41 +frissonnements frissonnement nom m p 0.01 0.61 0.00 0.20 +frissonnent frissonner ver 2.21 20.34 0.03 0.47 ind:pre:3p; +frissonner frissonner ver 2.21 20.34 0.73 4.12 inf; +frissonnes frissonner ver 2.21 20.34 0.11 0.00 ind:pre:2s; +frissonnez frissonner ver 2.21 20.34 0.04 0.00 ind:pre:2p; +frissonnèrent frissonner ver 2.21 20.34 0.00 0.07 ind:pas:3p; +frissonné frissonner ver m s 2.21 20.34 0.14 0.61 par:pas; +frissons frisson nom m p 8.62 21.69 4.39 7.43 +frisé frisé adj m s 2.72 10.20 1.56 3.24 +frisée frisé adj f s 2.72 10.20 0.40 1.28 +frisées frisé adj f p 2.72 10.20 0.04 0.68 +frisure frisure nom f s 0.00 0.34 0.00 0.14 +frisures frisure nom f p 0.00 0.34 0.00 0.20 +frisés frisé adj m p 2.72 10.20 0.73 5.00 +frit frire ver m s 6.63 4.73 2.74 1.82 ind:pre:3s;par:pas; +frite frite nom f s 9.33 5.47 0.66 0.54 +friterie friterie nom f s 0.18 0.47 0.18 0.14 +friteries friterie nom f p 0.18 0.47 0.00 0.34 +frites frite nom f p 9.33 5.47 8.68 4.93 +friteuse friteur nom f s 0.34 0.41 0.34 0.20 +friteuses friteuse nom f p 0.02 0.00 0.02 0.00 +fritillaires fritillaire nom f p 0.01 0.07 0.01 0.07 +fritons friton nom m p 0.00 0.07 0.00 0.07 +frits frire ver m p 6.63 4.73 1.32 1.08 par:pas; +fritte fritte nom f s 0.01 0.00 0.01 0.00 +fritter fritter ver 0.04 0.00 0.04 0.00 inf; +frittés fritter ver m p 0.04 0.00 0.01 0.00 par:pas; +friture friture nom f s 1.88 3.78 1.81 3.24 +fritures friture nom f p 1.88 3.78 0.06 0.54 +friturier friturier nom m s 0.00 0.07 0.00 0.07 +fritz fritz nom m 1.72 1.82 1.72 1.82 +frivole frivole adj s 2.22 5.81 1.75 4.26 +frivoles frivole adj p 2.22 5.81 0.47 1.55 +frivolité frivolité nom f s 0.48 2.84 0.40 2.30 +frivolités frivolité nom f p 0.48 2.84 0.08 0.54 +froc froc nom m s 6.92 7.64 6.61 6.89 +frocard frocard nom m s 0.00 0.20 0.00 0.14 +frocards frocard nom m p 0.00 0.20 0.00 0.07 +frocs froc nom m p 6.92 7.64 0.31 0.74 +froid froid adj m s 127.22 161.69 98.43 94.86 +froidasse froidasse adj f s 0.00 0.07 0.00 0.07 +froide froid adj f s 127.22 161.69 21.48 49.59 +froidement froidement adv 0.94 9.05 0.94 9.05 +froides froid adj f p 127.22 161.69 4.07 10.00 +froideur froideur nom f s 1.94 7.84 1.94 7.57 +froideurs froideur nom f p 1.94 7.84 0.00 0.27 +froidi froidir ver m s 0.00 0.20 0.00 0.07 par:pas; +froidir froidir ver 0.00 0.20 0.00 0.07 inf; +froidissait froidir ver 0.00 0.20 0.00 0.07 ind:imp:3s; +froids froid adj m p 127.22 161.69 3.24 7.23 +froidure froidure nom f s 0.12 1.69 0.11 1.55 +froidures froidure nom f p 0.12 1.69 0.01 0.14 +froissa froisser ver 3.74 12.50 0.00 0.88 ind:pas:3s; +froissaient froisser ver 3.74 12.50 0.00 0.54 ind:imp:3p; +froissais froisser ver 3.74 12.50 0.01 0.14 ind:imp:1s; +froissait froisser ver 3.74 12.50 0.01 1.55 ind:imp:3s; +froissant froisser ver 3.74 12.50 0.00 1.08 par:pre; +froisse froisser ver 3.74 12.50 0.64 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +froissement froissement nom m s 0.23 10.54 0.23 8.38 +froissements froissement nom m p 0.23 10.54 0.01 2.16 +froissent froisser ver 3.74 12.50 0.04 0.47 ind:pre:3p; +froisser froisser ver 3.74 12.50 1.60 1.96 inf; +froissera froisser ver 3.74 12.50 0.01 0.00 ind:fut:3s; +froisserais froisser ver 3.74 12.50 0.00 0.07 cnd:pre:1s; +froisserait froisser ver 3.74 12.50 0.02 0.00 cnd:pre:3s; +froisses froisser ver 3.74 12.50 0.05 0.14 ind:pre:2s; +froissez froisser ver 3.74 12.50 0.04 0.00 imp:pre:2p;ind:pre:2p; +froissions froisser ver 3.74 12.50 0.00 0.07 ind:imp:1p; +froissèrent froisser ver 3.74 12.50 0.00 0.07 ind:pas:3p; +froissé froisser ver m s 3.74 12.50 0.66 2.30 par:pas; +froissée froisser ver f s 3.74 12.50 0.59 0.81 par:pas; +froissées froissé adj f p 0.96 9.46 0.01 1.22 +froissés froissé adj m p 0.96 9.46 0.21 2.03 +fromage fromage nom m s 27.22 26.96 25.68 20.81 +fromager fromager nom m s 0.32 0.47 0.30 0.34 +fromagerie fromagerie nom f s 0.01 0.41 0.01 0.41 +fromagers fromager nom m p 0.32 0.47 0.02 0.14 +fromages fromage nom m p 27.22 26.96 1.54 6.15 +fromagère fromager adj f s 0.04 0.27 0.00 0.14 +fromegi fromegi nom m s 0.00 0.07 0.00 0.07 +froment froment nom m s 0.21 1.35 0.21 1.35 +fromental fromental nom m s 0.00 0.07 0.00 0.07 +frometon frometon nom m s 0.04 0.47 0.04 0.27 +frometons frometon nom m p 0.04 0.47 0.00 0.20 +fronce fronce nom f s 0.36 0.54 0.34 0.07 +froncement froncement nom m s 0.27 1.69 0.16 1.08 +froncements froncement nom m p 0.27 1.69 0.11 0.61 +froncer froncer ver 0.52 15.88 0.08 0.88 inf; +froncerait froncer ver 0.52 15.88 0.01 0.20 cnd:pre:3s; +fronces froncer ver 0.52 15.88 0.04 0.07 ind:pre:2s; +froncez froncer ver 0.52 15.88 0.06 0.00 imp:pre:2p;ind:pre:2p; +froncèrent froncer ver 0.52 15.88 0.00 0.07 ind:pas:3p; +froncé froncer ver m s 0.52 15.88 0.04 1.08 par:pas; +froncée froncé adj f s 0.14 5.61 0.10 0.20 +froncées froncé adj f p 0.14 5.61 0.00 0.14 +froncés froncé adj m p 0.14 5.61 0.01 4.19 +frondaient fronder ver 0.00 0.27 0.00 0.07 ind:imp:3p; +frondaison frondaison nom f s 0.01 3.92 0.00 0.61 +frondaisons frondaison nom f p 0.01 3.92 0.01 3.31 +fronde fronde nom f s 1.02 1.82 0.86 1.69 +frondent fronder ver 0.00 0.27 0.00 0.07 ind:pre:3p; +frondes fronde nom f p 1.02 1.82 0.16 0.14 +frondeur frondeur adj m s 0.01 0.61 0.01 0.34 +frondeurs frondeur nom m p 0.02 0.00 0.02 0.00 +frondeuse frondeur adj f s 0.01 0.61 0.00 0.14 +frondé fronder ver m s 0.00 0.27 0.00 0.07 par:pas; +front front nom m s 41.03 159.12 38.81 152.57 +frontal frontal adj m s 1.62 1.55 1.15 0.74 +frontale frontal adj f s 1.62 1.55 0.35 0.81 +frontalier frontalier adj m s 0.60 1.22 0.04 0.07 +frontaliers frontalier adj m p 0.60 1.22 0.04 0.34 +frontalière frontalier adj f s 0.60 1.22 0.32 0.68 +frontalières frontalier adj f p 0.60 1.22 0.20 0.14 +frontaux frontal adj m p 1.62 1.55 0.12 0.00 +fronteau fronteau nom m s 0.00 0.07 0.00 0.07 +fronça froncer ver 0.52 15.88 0.00 5.61 ind:pas:3s; +fronçai froncer ver 0.52 15.88 0.00 0.14 ind:pas:1s; +fronçaient froncer ver 0.52 15.88 0.00 0.14 ind:imp:3p; +fronçais froncer ver 0.52 15.88 0.01 0.07 ind:imp:1s; +fronçait froncer ver 0.52 15.88 0.01 1.01 ind:imp:3s; +fronçant froncer ver 0.52 15.88 0.01 3.58 par:pre; +frontispice frontispice nom m s 0.01 0.34 0.01 0.27 +frontispices frontispice nom m p 0.01 0.34 0.00 0.07 +frontière frontière nom f s 34.54 40.47 28.54 26.42 +frontières frontière nom f p 34.54 40.47 6.00 14.05 +fronton fronton nom m s 0.10 5.47 0.10 4.39 +frontons fronton nom m p 0.10 5.47 0.00 1.08 +fronts front nom m p 41.03 159.12 2.23 6.55 +frotta frotter ver 12.52 50.14 0.01 7.70 ind:pas:3s; +frottage frottage nom m s 0.05 0.27 0.05 0.20 +frottages frottage nom m p 0.05 0.27 0.00 0.07 +frottai frotter ver 12.52 50.14 0.01 0.14 ind:pas:1s; +frottaient frotter ver 12.52 50.14 0.16 1.42 ind:imp:3p; +frottais frotter ver 12.52 50.14 0.33 1.01 ind:imp:1s;ind:imp:2s; +frottait frotter ver 12.52 50.14 0.29 8.38 ind:imp:3s; +frottant frotter ver 12.52 50.14 0.27 7.03 par:pre; +frotte frotter ver 12.52 50.14 3.90 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +frottement frottement nom m s 0.68 5.07 0.31 3.72 +frottements frottement nom m p 0.68 5.07 0.37 1.35 +frottent frotter ver 12.52 50.14 0.16 1.01 ind:pre:3p; +frotter frotter ver 12.52 50.14 4.01 8.99 inf; +frottera frotter ver 12.52 50.14 0.25 0.00 ind:fut:3s; +frotterai frotter ver 12.52 50.14 0.05 0.14 ind:fut:1s; +frotterais frotter ver 12.52 50.14 0.06 0.00 cnd:pre:1s; +frotterait frotter ver 12.52 50.14 0.01 0.20 cnd:pre:3s; +frotteras frotter ver 12.52 50.14 0.02 0.07 ind:fut:2s; +frotterons frotter ver 12.52 50.14 0.00 0.07 ind:fut:1p; +frottes frotter ver 12.52 50.14 0.58 0.07 ind:pre:2s; +frotteur frotteur adj m s 0.01 0.14 0.01 0.07 +frotteurs frotteur nom m p 0.00 0.68 0.00 0.14 +frotteuse frotteur nom f s 0.00 0.68 0.00 0.14 +frotteuses frotteur nom f p 0.00 0.68 0.00 0.07 +frottez frotter ver 12.52 50.14 0.74 0.14 imp:pre:2p;ind:pre:2p; +frotti_frotta frotti_frotta nom m 0.04 0.20 0.04 0.20 +frottiez frotter ver 12.52 50.14 0.05 0.00 ind:imp:2p; +frottin frottin nom m s 0.01 0.20 0.01 0.20 +frottions frotter ver 12.52 50.14 0.00 0.07 ind:imp:1p; +frottis frottis nom m 0.39 0.34 0.39 0.34 +frottoir frottoir nom m s 0.00 0.41 0.00 0.34 +frottoirs frottoir nom m p 0.00 0.41 0.00 0.07 +frottons frotton nom m p 0.06 0.14 0.06 0.14 +frottèrent frotter ver 12.52 50.14 0.00 0.27 ind:pas:3p; +frotté frotter ver m s 12.52 50.14 1.25 2.64 par:pas; +frottée frotter ver f s 12.52 50.14 0.30 0.61 par:pas; +frottées frotter ver f p 12.52 50.14 0.01 0.81 par:pas; +frottés frotter ver m p 12.52 50.14 0.03 0.81 par:pas; +frou_frou frou_frou nom m s 0.23 0.47 0.09 0.41 +frouement frouement nom m s 0.00 0.27 0.00 0.20 +frouements frouement nom m p 0.00 0.27 0.00 0.07 +froufrou froufrou nom m s 0.32 0.41 0.23 0.14 +froufrous froufrou nom m p 0.32 0.41 0.08 0.27 +froufroutait froufrouter ver 0.02 0.07 0.00 0.07 ind:imp:3s; +froufroutant froufrouter ver 0.02 0.07 0.01 0.00 par:pre; +froufroutante froufroutant adj f s 0.01 0.41 0.00 0.07 +froufroutantes froufroutant adj f p 0.01 0.41 0.00 0.20 +froufroutants froufroutant adj m p 0.01 0.41 0.01 0.07 +froufroutement froufroutement nom m s 0.00 0.07 0.00 0.07 +froufrouter froufrouter ver 0.02 0.07 0.01 0.00 inf; +frou_frou frou_frou nom m p 0.23 0.47 0.14 0.07 +froussard froussard nom m s 1.99 0.61 1.33 0.41 +froussarde froussard nom f s 1.99 0.61 0.26 0.00 +froussards froussard nom m p 1.99 0.61 0.40 0.20 +frousse frousse nom f s 3.13 2.36 2.90 2.16 +frousses frousse nom f p 3.13 2.36 0.23 0.20 +frère frère nom m s 390.39 216.35 311.45 142.36 +frères frère nom m p 390.39 216.35 78.94 73.99 +frète fréter ver 0.01 0.74 0.00 0.07 ind:pre:1s; +fructidor fructidor nom m s 0.01 0.07 0.01 0.07 +fructifiaient fructifier ver 0.55 1.28 0.00 0.07 ind:imp:3p; +fructifiant fructifier ver 0.55 1.28 0.01 0.07 par:pre; +fructification fructification nom f s 0.00 0.14 0.00 0.14 +fructifier fructifier ver 0.55 1.28 0.53 1.08 inf; +fructifié fructifier ver m s 0.55 1.28 0.01 0.07 par:pas; +fructose fructose nom m s 0.07 0.00 0.07 0.00 +fructueuse fructueux adj f s 1.05 3.24 0.54 1.28 +fructueuses fructueux adj f p 1.05 3.24 0.19 0.61 +fructueux fructueux adj m 1.05 3.24 0.32 1.35 +frugal frugal adj m s 0.19 1.28 0.18 0.61 +frugale frugal adj f s 0.19 1.28 0.01 0.41 +frugalement frugalement adv 0.01 0.07 0.01 0.07 +frugales frugal adj f p 0.19 1.28 0.00 0.07 +frugalité frugalité nom f s 0.01 0.47 0.01 0.47 +frégate frégate nom f s 0.63 3.11 0.46 1.82 +frégates frégate nom f p 0.63 3.11 0.17 1.28 +frugaux frugal adj m p 0.19 1.28 0.00 0.20 +frugivore frugivore adj s 0.02 0.00 0.02 0.00 +fruit fruit nom m s 39.45 64.05 15.99 21.96 +fruiter fruiter ver 0.04 0.41 0.00 0.07 inf; +fruiteries fruiterie nom f p 0.00 0.14 0.00 0.14 +fruiteux fruiteux adj m s 0.00 0.07 0.00 0.07 +fruitier fruitier adj m s 0.39 2.43 0.15 0.47 +fruitiers fruitier adj m p 0.39 2.43 0.22 1.82 +fruitière fruitier adj f s 0.39 2.43 0.01 0.07 +fruitières fruitier adj f p 0.39 2.43 0.01 0.07 +fruits fruit nom m p 39.45 64.05 23.45 42.09 +fruité fruité adj m s 0.38 1.01 0.31 0.34 +fruitée fruité adj f s 0.38 1.01 0.01 0.54 +fruitées fruité adj f p 0.38 1.01 0.00 0.07 +fruités fruité adj m p 0.38 1.01 0.06 0.07 +frêle frêle adj s 1.19 12.03 1.00 9.80 +frêles frêle adj p 1.19 12.03 0.19 2.23 +frémi frémir ver m s 3.86 24.26 0.43 1.49 par:pas; +frémir frémir ver 3.86 24.26 1.38 6.22 inf; +frémirait frémir ver 3.86 24.26 0.14 0.07 cnd:pre:3s; +frémirent frémir ver 3.86 24.26 0.00 1.08 ind:pas:3p; +frémiront frémir ver 3.86 24.26 0.00 0.07 ind:fut:3p; +frémis frémir ver m p 3.86 24.26 1.06 1.08 ind:pre:1s;ind:pre:2s;par:pas; +frémissaient frémir ver 3.86 24.26 0.00 2.23 ind:imp:3p; +frémissais frémir ver 3.86 24.26 0.00 0.41 ind:imp:1s; +frémissait frémir ver 3.86 24.26 0.02 2.16 ind:imp:3s; +frémissant frémissant adj m s 0.77 8.45 0.39 2.03 +frémissante frémissant adj f s 0.77 8.45 0.14 3.24 +frémissantes frémissant adj f p 0.77 8.45 0.10 1.69 +frémissants frémissant adj m p 0.77 8.45 0.14 1.49 +frémisse frémir ver 3.86 24.26 0.00 0.07 sub:pre:3s; +frémissement frémissement nom m s 0.66 10.34 0.55 8.58 +frémissements frémissement nom m p 0.66 10.34 0.11 1.76 +frémissent frémir ver 3.86 24.26 0.34 1.82 ind:pre:3p; +frémissez frémir ver 3.86 24.26 0.00 0.07 ind:pre:2p; +frémit frémir ver 3.86 24.26 0.46 5.68 ind:pre:3s;ind:pas:3s; +frêne frêne nom m s 1.81 2.50 1.71 1.62 +frênes frêne nom m p 1.81 2.50 0.10 0.88 +frénésie frénésie nom f s 1.25 8.51 1.23 7.77 +frénésies frénésie nom f p 1.25 8.51 0.02 0.74 +frénétique frénétique adj s 0.61 6.28 0.52 4.12 +frénétiquement frénétiquement adv 0.26 2.97 0.26 2.97 +frénétiques frénétique adj p 0.61 6.28 0.09 2.16 +fréon fréon nom m s 0.21 0.00 0.21 0.00 +fréquemment fréquemment adv 1.16 8.24 1.16 8.24 +fréquence fréquence nom f s 10.12 2.43 7.61 2.23 +fréquences fréquence nom f p 10.12 2.43 2.51 0.20 +fréquent fréquent adj m s 4.14 12.09 2.39 3.78 +fréquenta fréquenter ver 18.97 30.81 0.01 0.68 ind:pas:3s; +fréquentable fréquentable adj m s 0.37 1.01 0.22 0.34 +fréquentables fréquentable adj m p 0.37 1.01 0.15 0.68 +fréquentai fréquenter ver 18.97 30.81 0.00 0.34 ind:pas:1s; +fréquentaient fréquenter ver 18.97 30.81 0.24 2.30 ind:imp:3p; +fréquentais fréquenter ver 18.97 30.81 0.96 1.22 ind:imp:1s;ind:imp:2s; +fréquentait fréquenter ver 18.97 30.81 1.55 5.54 ind:imp:3s; +fréquentant fréquenter ver 18.97 30.81 0.04 0.81 par:pre; +fréquentation fréquentation nom f s 2.81 5.74 0.46 2.97 +fréquentations fréquentation nom f p 2.81 5.74 2.35 2.77 +fréquente fréquenter ver 18.97 30.81 4.76 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fréquentent fréquenter ver 18.97 30.81 0.64 0.74 ind:pre:3p; +fréquenter fréquenter ver 18.97 30.81 4.57 6.76 ind:pre:2p;inf; +fréquenterais fréquenter ver 18.97 30.81 0.39 0.14 cnd:pre:1s;cnd:pre:2s; +fréquenterait fréquenter ver 18.97 30.81 0.11 0.00 cnd:pre:3s; +fréquenteras fréquenter ver 18.97 30.81 0.03 0.00 ind:fut:2s; +fréquenterez fréquenter ver 18.97 30.81 0.01 0.07 ind:fut:2p; +fréquentes fréquenter ver 18.97 30.81 2.01 0.61 ind:pre:2s; +fréquentez fréquenter ver 18.97 30.81 0.65 0.47 imp:pre:2p;ind:pre:2p; +fréquentiez fréquenter ver 18.97 30.81 0.17 0.14 ind:imp:2p; +fréquentions fréquenter ver 18.97 30.81 0.14 0.47 ind:imp:1p; +fréquentons fréquenter ver 18.97 30.81 0.09 0.14 ind:pre:1p; +fréquentât fréquenter ver 18.97 30.81 0.00 0.20 sub:imp:3s; +fréquents fréquent adj m p 4.14 12.09 0.27 3.11 +fréquentèrent fréquenter ver 18.97 30.81 0.00 0.07 ind:pas:3p; +fréquenté fréquenter ver m s 18.97 30.81 2.31 3.65 par:pas; +fréquentée fréquenté adj f s 0.86 3.51 0.38 0.74 +fréquentées fréquenter ver f p 18.97 30.81 0.02 0.68 par:pas; +fréquentés fréquenter ver m p 18.97 30.81 0.12 1.42 par:pas; +frérot frérot nom m s 2.50 0.81 2.46 0.68 +frérots frérot nom m p 2.50 0.81 0.04 0.14 +frusquer frusquer ver 0.00 0.14 0.00 0.07 inf; +frusques frusque nom f p 0.64 3.24 0.64 3.24 +frusquée frusquer ver f s 0.00 0.14 0.00 0.07 par:pas; +fruste fruste adj s 0.51 4.86 0.37 3.11 +frustes fruste adj p 0.51 4.86 0.14 1.76 +frustra frustrer ver 2.68 3.38 0.00 0.07 ind:pas:3s; +frustrait frustrer ver 2.68 3.38 0.14 0.27 ind:imp:3s; +frustrant frustrant adj m s 1.39 0.14 1.23 0.00 +frustrante frustrant adj f s 1.39 0.14 0.14 0.14 +frustrantes frustrant adj f p 1.39 0.14 0.02 0.00 +frustration frustration nom f s 3.06 3.85 2.73 3.24 +frustrations frustration nom f p 3.06 3.85 0.33 0.61 +frustre frustrer ver 2.68 3.38 0.37 0.00 ind:pre:3s; +frustrer frustrer ver 2.68 3.38 0.08 0.34 inf; +frustrât frustrer ver 2.68 3.38 0.00 0.14 sub:imp:3s; +frustré frustré adj m s 1.98 2.43 1.14 1.15 +frustrée frustré adj f s 1.98 2.43 0.62 0.68 +frustrées frustré nom f p 0.78 0.81 0.04 0.07 +frustrés frustrer ver m p 2.68 3.38 0.49 0.74 par:pas; +fréta fréter ver 0.01 0.74 0.00 0.14 ind:pas:3s; +frétait fréter ver 0.01 0.74 0.00 0.07 ind:imp:3s; +frétant fréter ver 0.01 0.74 0.00 0.07 par:pre; +fréter fréter ver 0.01 0.74 0.01 0.14 inf; +frétilla frétiller ver 0.60 3.58 0.00 0.14 ind:pas:3s; +frétillaient frétiller ver 0.60 3.58 0.01 0.27 ind:imp:3p; +frétillait frétiller ver 0.60 3.58 0.10 0.61 ind:imp:3s; +frétillant frétillant adj m s 0.22 1.89 0.07 0.61 +frétillante frétillant adj f s 0.22 1.89 0.13 0.47 +frétillantes frétillant adj f p 0.22 1.89 0.00 0.27 +frétillants frétillant adj m p 0.22 1.89 0.02 0.54 +frétillard frétillard adj m s 0.00 0.14 0.00 0.07 +frétillarde frétillard adj f s 0.00 0.14 0.00 0.07 +frétille frétiller ver 0.60 3.58 0.30 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frétillement frétillement nom m s 0.00 0.34 0.00 0.27 +frétillements frétillement nom m p 0.00 0.34 0.00 0.07 +frétillent frétiller ver 0.60 3.58 0.06 0.27 ind:pre:3p; +frétiller frétiller ver 0.60 3.58 0.08 0.54 inf; +frétillon frétillon adj m s 0.00 0.20 0.00 0.20 +frétillé frétiller ver m s 0.60 3.58 0.00 0.07 par:pas; +frétèrent fréter ver 0.01 0.74 0.00 0.07 ind:pas:3p; +frété fréter ver m s 0.01 0.74 0.00 0.14 par:pas; +frétée fréter ver f s 0.01 0.74 0.00 0.07 par:pas; +fèces fèces nom f p 0.32 0.20 0.32 0.20 +fère fer nom f s 37.08 114.19 0.02 0.20 +fève fève nom f s 1.12 1.89 0.44 0.61 +fèves fève nom f p 1.12 1.89 0.68 1.28 +féal féal adj m s 0.01 0.20 0.01 0.14 +féaux féal adj m p 0.01 0.20 0.00 0.07 +fébrile fébrile adj s 0.98 7.16 0.94 5.27 +fébrilement fébrilement adv 0.24 4.53 0.24 4.53 +fébriles fébrile adj p 0.98 7.16 0.05 1.89 +fébrilité fébrilité nom f s 0.01 2.36 0.01 2.36 +fécal fécal adj m s 0.27 0.88 0.05 0.27 +fécale fécal adj f s 0.27 0.88 0.06 0.47 +fécales fécal adj f p 0.27 0.88 0.13 0.07 +fécalome fécalome nom m s 0.01 0.00 0.01 0.00 +fécaux fécal adj m p 0.27 0.88 0.03 0.07 +fuchsia fuchsia adj 0.06 0.34 0.06 0.34 +fuchsias fuchsia nom m p 0.04 0.34 0.00 0.20 +fécond fécond adj m s 0.94 3.92 0.04 0.68 +fécondais féconder ver 1.46 3.04 0.00 0.07 ind:imp:1s; +fécondait féconder ver 1.46 3.04 0.00 0.20 ind:imp:3s; +fécondant féconder ver 1.46 3.04 0.10 0.00 par:pre; +fécondante fécondant adj f s 0.00 0.20 0.00 0.07 +fécondateur fécondateur nom m s 0.10 0.00 0.10 0.00 +fécondation fécondation nom f s 0.42 0.74 0.41 0.47 +fécondations fécondation nom f p 0.42 0.74 0.01 0.27 +féconde fécond adj f s 0.94 3.92 0.73 2.09 +fécondent féconder ver 1.46 3.04 0.01 0.14 ind:pre:3p; +féconder féconder ver 1.46 3.04 0.49 0.88 inf; +féconderai féconder ver 1.46 3.04 0.01 0.00 ind:fut:1s; +féconderait féconder ver 1.46 3.04 0.01 0.07 cnd:pre:3s; +fécondes féconder ver 1.46 3.04 0.10 0.00 ind:pre:2s; +fécondez féconder ver 1.46 3.04 0.02 0.00 imp:pre:2p; +fécondité fécondité nom f s 0.44 2.03 0.44 2.03 +féconds fécond adj m p 0.94 3.92 0.10 0.34 +fécondé féconder ver m s 1.46 3.04 0.28 0.68 par:pas; +fécondée féconder ver f s 1.46 3.04 0.28 0.47 par:pas; +fécondées féconder ver f p 1.46 3.04 0.02 0.14 par:pas; +fécondés féconder ver m p 1.46 3.04 0.03 0.07 par:pas; +fécule fécule nom f s 0.17 0.07 0.17 0.07 +féculent féculent nom m s 0.20 0.34 0.02 0.00 +féculents féculent nom m p 0.20 0.34 0.18 0.34 +fédéral fédéral adj m s 13.92 1.76 6.94 0.68 +fédérale fédéral adj f s 13.92 1.76 4.56 0.81 +fédérales fédéral adj f p 13.92 1.76 0.88 0.07 +fédéralisme fédéralisme nom m s 0.14 0.07 0.14 0.07 +fédéraliste fédéraliste adj s 0.03 0.00 0.03 0.00 +fédérateur fédérateur adj m s 0.03 0.00 0.03 0.00 +fédération fédération nom f s 2.56 2.36 2.56 2.23 +fédérations fédération nom f p 2.56 2.36 0.00 0.14 +fédérative fédératif adj f s 0.00 0.07 0.00 0.07 +fédératrice fédérateur nom f s 0.01 0.07 0.01 0.00 +fédéraux fédéral nom m p 4.25 0.14 3.91 0.07 +fédérer fédérer ver 0.09 0.20 0.00 0.07 inf; +fédéré fédéré nom m s 0.15 0.34 0.01 0.07 +fédérée fédéré adj f s 0.03 0.34 0.01 0.07 +fédérées fédéré adj f p 0.03 0.34 0.00 0.07 +fédérés fédéré nom m p 0.15 0.34 0.14 0.27 +fée fée nom f s 15.32 11.35 8.30 6.62 +fuel_oil fuel_oil nom m s 0.00 0.07 0.00 0.07 +fuel fuel nom m s 1.03 0.27 1.03 0.27 +féerie féerie nom f s 0.46 3.72 0.46 3.18 +féeries féerie nom f p 0.46 3.72 0.00 0.54 +féerique féerique adj s 0.46 3.18 0.42 2.36 +féeriquement féeriquement adv 0.00 0.27 0.00 0.27 +féeriques féerique adj p 0.46 3.18 0.04 0.81 +fées fée nom f p 15.32 11.35 7.01 4.73 +fugace fugace adj s 0.85 4.39 0.68 3.18 +fugacement fugacement adv 0.00 0.54 0.00 0.54 +fugaces fugace adj p 0.85 4.39 0.17 1.22 +fugacité fugacité nom f s 0.11 0.07 0.11 0.07 +fugitif fugitif nom m s 4.84 3.78 2.41 1.28 +fugitifs fugitif nom m p 4.84 3.78 1.96 1.69 +fugitive fugitif nom f s 4.84 3.78 0.47 0.74 +fugitivement fugitivement adv 0.00 2.57 0.00 2.57 +fugitives fugitive nom f p 0.12 0.00 0.12 0.00 +fugu fugu nom m s 0.27 0.00 0.27 0.00 +fuguaient fuguer ver 2.81 0.41 0.01 0.00 ind:imp:3p; +fuguait fuguer ver 2.81 0.41 0.00 0.14 ind:imp:3s; +fugue fugue nom f s 4.16 7.16 3.61 5.68 +fuguent fuguer ver 2.81 0.41 0.23 0.00 ind:pre:3p; +fuguer fuguer ver 2.81 0.41 0.42 0.14 inf; +fuguerais fuguer ver 2.81 0.41 0.01 0.00 cnd:pre:1s; +fugues fugue nom f p 4.16 7.16 0.55 1.49 +fugueur fugueur nom m s 0.81 0.81 0.16 0.27 +fugueurs fugueur nom m p 0.81 0.81 0.14 0.07 +fugueuse fugueur nom f s 0.81 0.81 0.51 0.27 +fugueuses fugueuse nom f p 0.02 0.00 0.02 0.00 +fuguèrent fuguer ver 2.81 0.41 0.01 0.00 ind:pas:3p; +fugué fuguer ver m s 2.81 0.41 1.72 0.07 par:pas; +fuguées fugué adj f p 0.00 0.07 0.00 0.07 +fui fuir ver m s 76.82 76.42 10.68 8.24 par:pas; +fuie fuir ver f s 76.82 76.42 0.58 0.47 par:pas;sub:pre:1s;sub:pre:3s; +fuient fuir ver 76.82 76.42 2.81 2.43 ind:pre:3p; +fuies fuir ver 76.82 76.42 0.21 0.00 sub:pre:2s; +fuir fuir ver 76.82 76.42 30.95 35.88 inf; +fuira fuir ver 76.82 76.42 0.20 0.00 ind:fut:3s; +fuirai fuir ver 76.82 76.42 0.31 0.07 ind:fut:1s; +fuiraient fuir ver 76.82 76.42 0.02 0.07 cnd:pre:3p; +fuirais fuir ver 76.82 76.42 0.25 0.14 cnd:pre:1s;cnd:pre:2s; +fuirait fuir ver 76.82 76.42 0.17 0.14 cnd:pre:3s; +fuiras fuir ver 76.82 76.42 0.27 0.07 ind:fut:2s; +fuirent fuir ver 76.82 76.42 0.20 0.20 ind:pas:3p; +fuirez fuir ver 76.82 76.42 0.03 0.00 ind:fut:2p; +fuiriez fuir ver 76.82 76.42 0.02 0.00 cnd:pre:2p; +fuirions fuir ver 76.82 76.42 0.00 0.07 cnd:pre:1p; +fuirons fuir ver 76.82 76.42 0.16 0.00 ind:fut:1p; +fuiront fuir ver 76.82 76.42 0.31 0.14 ind:fut:3p; +fuis fuir ver m p 76.82 76.42 9.63 2.09 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fuisse fuir ver 76.82 76.42 0.01 0.07 sub:imp:1s; +fuit fuir ver 76.82 76.42 6.78 4.86 ind:pre:3s;ind:pas:3s; +fuite fuite nom f s 29.09 34.26 26.02 31.82 +fuiter fuiter ver 0.01 0.07 0.01 0.07 inf; +fuites fuite nom f p 29.09 34.26 3.07 2.43 +fêla fêler ver 1.74 1.89 0.00 0.14 ind:pas:3s; +fêlant fêler ver 1.74 1.89 0.00 0.07 par:pre; +fêle fêle nom f s 0.10 0.00 0.10 0.00 +fêler fêler ver 1.74 1.89 0.14 0.27 inf; +fêles fêler ver 1.74 1.89 0.00 0.07 ind:pre:2s; +fulgores fulgore nom m p 0.00 0.07 0.00 0.07 +fulgura fulgurer ver 0.05 1.15 0.00 0.07 ind:pas:3s; +fulguraient fulgurer ver 0.05 1.15 0.00 0.07 ind:imp:3p; +fulgurait fulgurer ver 0.05 1.15 0.00 0.07 ind:imp:3s; +fulgurance fulgurance nom f s 0.04 0.68 0.03 0.47 +fulgurances fulgurance nom f p 0.04 0.68 0.01 0.20 +fulgurant fulgurant adj m s 0.57 7.84 0.12 2.57 +fulgurante fulgurant adj f s 0.57 7.84 0.40 3.31 +fulgurantes fulgurant adj f p 0.57 7.84 0.01 1.15 +fulgurants fulgurant adj m p 0.57 7.84 0.04 0.81 +fulguration fulguration nom f s 0.01 0.41 0.00 0.20 +fulgurations fulguration nom f p 0.01 0.41 0.01 0.20 +fulgure fulgurer ver 0.05 1.15 0.00 0.07 ind:pre:3s; +fulgurent fulgurer ver 0.05 1.15 0.00 0.14 ind:pre:3p; +fulgurer fulgurer ver 0.05 1.15 0.00 0.07 inf; +fulgurèrent fulgurer ver 0.05 1.15 0.00 0.14 ind:pas:3p; +fulguré fulgurer ver m s 0.05 1.15 0.01 0.20 par:pas; +félibre félibre nom m s 0.00 0.27 0.00 0.07 +félibres félibre nom m p 0.00 0.27 0.00 0.20 +félibrige félibrige nom m s 0.14 0.14 0.14 0.14 +félicita féliciter ver 15.72 24.66 0.01 3.24 ind:pas:3s; +félicitai féliciter ver 15.72 24.66 0.01 0.81 ind:pas:1s; +félicitaient féliciter ver 15.72 24.66 0.02 0.88 ind:imp:3p; +félicitais féliciter ver 15.72 24.66 0.05 1.01 ind:imp:1s; +félicitait féliciter ver 15.72 24.66 0.11 2.77 ind:imp:3s; +félicitant féliciter ver 15.72 24.66 0.06 0.47 par:pre; +félicitation félicitation nom f s 60.08 5.07 0.84 0.00 +félicitations félicitation nom f p 60.08 5.07 59.23 5.07 +félicite féliciter ver 15.72 24.66 5.46 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +félicitent féliciter ver 15.72 24.66 0.17 0.34 ind:pre:3p; +féliciter féliciter ver 15.72 24.66 7.10 6.15 inf;;inf;;inf;; +félicitera féliciter ver 15.72 24.66 0.06 0.07 ind:fut:3s; +féliciterai féliciter ver 15.72 24.66 0.21 0.07 ind:fut:1s; +féliciteraient féliciter ver 15.72 24.66 0.01 0.07 cnd:pre:3p; +féliciterais féliciter ver 15.72 24.66 0.01 0.00 cnd:pre:1s; +féliciterait féliciter ver 15.72 24.66 0.00 0.20 cnd:pre:3s; +féliciteras féliciter ver 15.72 24.66 0.01 0.00 ind:fut:2s; +féliciteriez féliciter ver 15.72 24.66 0.00 0.07 cnd:pre:2p; +félicitez féliciter ver 15.72 24.66 0.38 0.20 imp:pre:2p;ind:pre:2p; +félicitiez féliciter ver 15.72 24.66 0.00 0.07 ind:imp:2p; +félicitions féliciter ver 15.72 24.66 0.00 0.27 ind:imp:1p; +félicitâmes féliciter ver 15.72 24.66 0.00 0.07 ind:pas:1p; +félicitons féliciter ver 15.72 24.66 0.37 0.34 imp:pre:1p;ind:pre:1p; +félicitèrent féliciter ver 15.72 24.66 0.00 0.54 ind:pas:3p; +félicité félicité nom f s 2.12 3.38 2.10 2.97 +félicitée féliciter ver f s 15.72 24.66 0.07 0.41 par:pas; +félicités féliciter ver m p 15.72 24.66 0.25 0.14 par:pas; +félidé félidé nom m s 0.00 0.07 0.00 0.07 +fuligineuse fuligineux adj f s 0.01 1.69 0.00 0.47 +fuligineuses fuligineux adj f p 0.01 1.69 0.00 0.14 +fuligineux fuligineux adj m 0.01 1.69 0.01 1.08 +fuligule fuligule nom m s 0.02 0.00 0.02 0.00 +félin félin nom m s 0.35 1.08 0.26 0.88 +féline félin adj f s 0.34 2.09 0.20 1.22 +félinement félinement adv 0.00 0.07 0.00 0.07 +félines félin adj f p 0.34 2.09 0.03 0.27 +félinité félinité nom f s 0.01 0.00 0.01 0.00 +félins félin nom m p 0.35 1.08 0.09 0.20 +full_contact full_contact nom m s 0.04 0.00 0.04 0.00 +full full nom m s 2.28 0.41 2.27 0.27 +fullerène fullerène nom m s 0.04 0.00 0.04 0.00 +fulls full nom m p 2.28 0.41 0.01 0.14 +fulmicoton fulmicoton nom m s 0.00 0.14 0.00 0.14 +fulmina fulminer ver 0.30 2.77 0.00 0.74 ind:pas:3s; +fulminaient fulminer ver 0.30 2.77 0.00 0.07 ind:imp:3p; +fulminais fulminer ver 0.30 2.77 0.00 0.14 ind:imp:1s; +fulminait fulminer ver 0.30 2.77 0.01 0.74 ind:imp:3s; +fulminant fulminant adj m s 0.43 1.01 0.21 0.34 +fulminante fulminant adj f s 0.43 1.01 0.22 0.34 +fulminantes fulminant adj f p 0.43 1.01 0.00 0.14 +fulminants fulminant adj m p 0.43 1.01 0.00 0.20 +fulminate fulminate nom m s 0.05 0.07 0.05 0.07 +fulmination fulmination nom f s 0.02 0.41 0.02 0.27 +fulminations fulmination nom f p 0.02 0.41 0.00 0.14 +fulmine fulminer ver 0.30 2.77 0.07 0.61 ind:pre:1s;ind:pre:3s; +fulminement fulminement nom m s 0.00 0.07 0.00 0.07 +fulminent fulminer ver 0.30 2.77 0.00 0.14 ind:pre:3p; +fulminer fulminer ver 0.30 2.77 0.10 0.27 inf; +fulminera fulminer ver 0.30 2.77 0.01 0.00 ind:fut:3s; +félon félon nom m s 0.50 0.27 0.33 0.27 +félonie félonie nom f s 0.17 0.34 0.17 0.34 +félonne félon adj f s 0.09 0.20 0.01 0.00 +félons félon nom m p 0.50 0.27 0.17 0.00 +fêlé fêler ver m s 1.74 1.89 0.84 0.68 par:pas; +fêlée fêler ver f s 1.74 1.89 0.50 0.47 par:pas; +fêlées fêler ver f p 1.74 1.89 0.16 0.00 par:pas; +fêlure fêlure nom f s 0.26 1.76 0.23 1.55 +fêlures fêlure nom f p 0.26 1.76 0.03 0.20 +fêlés fêlé nom m p 1.00 0.41 0.36 0.14 +fuma fumer ver 98.49 84.39 0.24 1.55 ind:pas:3s; +fumaga fumaga nom f s 0.00 0.07 0.00 0.07 +fumage fumage nom m s 0.07 0.07 0.07 0.07 +fumai fumer ver 98.49 84.39 0.00 0.20 ind:pas:1s; +fumaient fumer ver 98.49 84.39 0.52 5.20 ind:imp:3p; +fumailler fumailler ver 0.00 0.14 0.00 0.07 inf; +fumaillé fumailler ver m s 0.00 0.14 0.00 0.07 par:pas; +fumais fumer ver 98.49 84.39 1.65 1.28 ind:imp:1s;ind:imp:2s; +fumaison fumaison nom f s 0.00 0.07 0.00 0.07 +fumait fumer ver 98.49 84.39 2.70 15.07 ind:imp:3s; +fumant fumant adj m s 1.78 11.35 1.04 4.12 +fumante fumant adj f s 1.78 11.35 0.37 2.91 +fumantes fumant adj f p 1.78 11.35 0.06 2.36 +fumants fumant adj m p 1.78 11.35 0.31 1.96 +fumasse fumasse adj s 0.12 0.20 0.12 0.20 +fume_cigarette fume_cigarette nom m s 0.27 2.09 0.17 1.82 +fume_cigarette fume_cigarette nom m p 0.27 2.09 0.10 0.27 +fume fumer ver 98.49 84.39 29.46 15.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fument fumer ver 98.49 84.39 2.66 3.72 ind:pre:3p; +fumer fumer ver 98.49 84.39 35.91 20.88 inf; +fumera fumer ver 98.49 84.39 0.08 0.07 ind:fut:3s; +fumerai fumer ver 98.49 84.39 0.34 0.27 ind:fut:1s; +fumeraient fumer ver 98.49 84.39 0.00 0.14 cnd:pre:3p; +fumerais fumer ver 98.49 84.39 0.15 0.20 cnd:pre:1s;cnd:pre:2s; +fumerait fumer ver 98.49 84.39 0.03 0.20 cnd:pre:3s; +fumeras fumer ver 98.49 84.39 0.22 0.00 ind:fut:2s; +fumerez fumer ver 98.49 84.39 0.17 0.00 ind:fut:2p; +fumerie fumerie nom f s 0.48 0.68 0.46 0.27 +fumeries fumerie nom f p 0.48 0.68 0.03 0.41 +fumerolles fumerolle nom f p 0.01 0.81 0.01 0.81 +fumeron fumeron nom m s 0.00 0.14 0.00 0.07 +fumeronne fumeronner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +fumerons fumer ver 98.49 84.39 0.00 0.14 ind:fut:1p; +fumes fumer ver 98.49 84.39 9.68 1.49 ind:pre:2s; +fumet fumet nom m s 0.25 4.26 0.24 3.51 +fumets fumet nom m p 0.25 4.26 0.01 0.74 +fumette fumette nom f s 0.28 0.07 0.28 0.07 +fumeur fumeur nom m s 3.82 3.04 2.09 1.96 +fumeurs fumeur nom m p 3.82 3.04 1.56 0.88 +fumeuse fumeux adj f s 0.36 3.38 0.23 0.95 +fumeuses fumeux adj f p 0.36 3.38 0.08 0.95 +fumeux fumeux adj m 0.36 3.38 0.05 1.49 +fumez fumer ver 98.49 84.39 5.75 1.28 imp:pre:2p;ind:pre:2p; +fumier fumier nom m s 18.74 16.69 15.66 13.11 +fumiers fumier nom m p 18.74 16.69 3.08 3.45 +fumiez fumer ver 98.49 84.39 0.34 0.14 ind:imp:2p; +fumigateur fumigateur nom m s 0.01 0.00 0.01 0.00 +fumigation fumigation nom f s 0.34 0.54 0.25 0.14 +fumigations fumigation nom f p 0.34 0.54 0.10 0.41 +fumiger fumiger ver 0.13 0.00 0.09 0.00 inf; +fumigène fumigène adj s 0.96 0.47 0.33 0.27 +fumigènes fumigène adj p 0.96 0.47 0.63 0.20 +fumigé fumiger ver m s 0.13 0.00 0.04 0.00 par:pas; +féminin féminin adj m s 16.88 32.91 7.51 11.28 +féminine féminin adj f s 16.88 32.91 6.50 13.38 +féminines féminin adj f p 16.88 32.91 0.98 3.92 +féminins féminin adj m p 16.88 32.91 1.89 4.32 +féminisaient féminiser ver 0.00 0.20 0.00 0.07 ind:imp:3p; +féminisation féminisation nom f s 0.01 0.00 0.01 0.00 +féminiser féminiser ver 0.00 0.20 0.00 0.07 inf; +féminisme féminisme nom m s 0.46 0.41 0.46 0.41 +féministe féministe adj s 1.12 2.03 0.79 1.62 +féministes féministe nom p 1.42 1.15 0.70 0.81 +féminisé féminiser ver m s 0.00 0.20 0.00 0.07 par:pas; +féminité féminité nom f s 1.87 4.80 1.87 4.73 +féminitude féminitude nom f s 0.00 0.07 0.00 0.07 +féminités féminité nom f p 1.87 4.80 0.00 0.07 +fumions fumer ver 98.49 84.39 0.10 0.27 ind:imp:1p; +fumiste fumiste nom s 0.63 0.20 0.59 0.07 +fumisterie fumisterie nom f s 0.30 0.34 0.29 0.27 +fumisteries fumisterie nom f p 0.30 0.34 0.01 0.07 +fumistes fumiste nom p 0.63 0.20 0.03 0.14 +fumière fumier nom f s 18.74 16.69 0.00 0.14 +fumoir fumoir nom m s 0.31 1.49 0.31 1.49 +fumâmes fumer ver 98.49 84.39 0.00 0.14 ind:pas:1p; +fumons fumer ver 98.49 84.39 0.68 0.81 imp:pre:1p;ind:pre:1p; +fémoral fémoral adj m s 0.94 0.34 0.11 0.00 +fémorale fémoral adj f s 0.94 0.34 0.59 0.20 +fémorales fémoral adj f p 0.94 0.34 0.01 0.14 +fémoraux fémoral adj m p 0.94 0.34 0.23 0.00 +fumât fumer ver 98.49 84.39 0.00 0.07 sub:imp:3s; +fumèrent fumer ver 98.49 84.39 0.01 1.01 ind:pas:3p; +fumé fumer ver m s 98.49 84.39 6.75 4.19 par:pas; +fumée fumée nom f s 20.25 67.36 19.91 55.88 +fumées fumée nom f p 20.25 67.36 0.34 11.49 +fémur fémur nom m s 1.48 0.81 1.42 0.61 +fumure fumure nom f s 0.00 0.07 0.00 0.07 +fémurs fémur nom m p 1.48 0.81 0.06 0.20 +fumés fumer ver m p 98.49 84.39 0.23 0.27 par:pas; +fun fun nom m s 2.85 0.07 2.85 0.07 +funambule funambule nom s 0.80 1.62 0.52 1.35 +funambules funambule nom p 0.80 1.62 0.28 0.27 +funambulesque funambulesque adj s 0.00 0.07 0.00 0.07 +fénelonienne fénelonien adj f s 0.00 0.07 0.00 0.07 +funeste funeste adj s 4.97 4.86 4.22 3.11 +funestement funestement adv 0.00 0.07 0.00 0.07 +funestes funeste adj p 4.97 4.86 0.75 1.76 +fung fung adj m s 0.13 0.00 0.13 0.00 +funiculaire funiculaire nom m s 0.20 1.01 0.20 0.88 +funiculaires funiculaire nom m p 0.20 1.01 0.00 0.14 +funk funk adj 1.06 0.14 1.06 0.14 +funky funky adj 1.51 0.07 1.51 0.07 +funèbre funèbre adj s 8.07 16.35 4.21 11.69 +funèbres funèbre adj p 8.07 16.35 3.86 4.66 +funérailles funérailles nom f p 9.75 4.53 9.75 4.53 +funéraire funéraire adj s 1.68 4.59 1.39 2.84 +funéraires funéraire adj p 1.68 4.59 0.29 1.76 +funérarium funérarium nom m s 0.55 0.07 0.54 0.07 +funérariums funérarium nom m p 0.55 0.07 0.01 0.00 +féodal féodal adj m s 0.38 2.70 0.13 1.22 +féodale féodal adj f s 0.38 2.70 0.10 0.61 +féodales féodal adj f p 0.38 2.70 0.11 0.20 +féodalisme féodalisme nom m s 0.02 0.14 0.02 0.14 +féodalité féodalité nom f s 0.02 0.27 0.02 0.27 +féodaux féodal adj m p 0.38 2.70 0.04 0.68 +fur_et_à_mesure fur_et_à_mesure nom m s 1.62 17.84 1.62 17.84 +féra féra nom f s 0.00 0.14 0.00 0.07 +féras féra nom f p 0.00 0.14 0.00 0.07 +furax furax adj m 4.51 0.81 4.51 0.81 +furent être aux 8074.24 6501.82 8.96 40.74 ind:pas:3p; +furet furet nom m s 0.87 0.20 0.69 0.14 +fureta fureter ver 0.55 2.64 0.00 0.07 ind:pas:3s; +furetage furetage nom m s 0.02 0.07 0.02 0.07 +furetai fureter ver 0.55 2.64 0.00 0.07 ind:pas:1s; +furetaient fureter ver 0.55 2.64 0.00 0.07 ind:imp:3p; +furetait fureter ver 0.55 2.64 0.00 0.20 ind:imp:3s; +furetant fureter ver 0.55 2.64 0.06 0.54 par:pre; +fureter fureter ver 0.55 2.64 0.40 1.08 inf; +fureteur fureteur adj m s 0.01 1.62 0.01 0.54 +fureteurs fureteur adj m p 0.01 1.62 0.00 0.81 +fureteuse fureteur adj f s 0.01 1.62 0.00 0.07 +fureteuses fureteur adj f p 0.01 1.62 0.00 0.20 +furetez fureter ver 0.55 2.64 0.00 0.07 ind:pre:2p; +furets furet nom m p 0.87 0.20 0.19 0.07 +furette furette nom f s 0.00 0.14 0.00 0.14 +fureté fureter ver m s 0.55 2.64 0.05 0.20 par:pas; +fureur fureur nom f s 7.87 33.92 7.03 30.61 +fureurs fureur nom f p 7.87 33.92 0.84 3.31 +féria féria nom f s 0.80 0.34 0.80 0.20 +furia furia nom f s 0.02 0.27 0.02 0.27 +férias féria nom f p 0.80 0.34 0.00 0.14 +furibard furibard adj m s 0.19 1.42 0.17 1.01 +furibarde furibard adj f s 0.19 1.42 0.02 0.34 +furibardes furibard adj f p 0.19 1.42 0.00 0.07 +furibond furibond adj m s 0.37 2.64 0.25 1.35 +furibonde furibond adj f s 0.37 2.64 0.10 0.74 +furibondes furibond adj f p 0.37 2.64 0.00 0.20 +furibonds furibond adj m p 0.37 2.64 0.02 0.34 +furie furie nom f s 2.58 5.74 2.05 5.54 +furies furie nom f p 2.58 5.74 0.53 0.20 +furieuse furieux adj f s 25.31 44.59 6.95 12.30 +furieusement furieusement adv 0.87 7.30 0.87 7.30 +furieuses furieux adj f p 25.31 44.59 0.30 2.77 +furieux furieux adj m 25.31 44.59 18.06 29.53 +furioso furioso adj m s 0.46 0.14 0.46 0.14 +férir férir ver 0.04 0.88 0.04 0.88 inf; +férié férié adj m s 0.97 1.82 0.52 0.81 +fériés férié adj m p 0.97 1.82 0.46 1.01 +féroce féroce adj s 6.33 16.22 4.39 12.30 +férocement férocement adv 0.62 2.97 0.62 2.97 +féroces féroce adj p 6.33 16.22 1.94 3.92 +férocité férocité nom f s 1.20 3.85 1.20 3.72 +férocités férocité nom f p 1.20 3.85 0.00 0.14 +furoncle furoncle nom m s 1.27 0.88 0.61 0.34 +furoncles furoncle nom m p 1.27 0.88 0.66 0.54 +furonculeux furonculeux adj m 0.00 0.07 0.00 0.07 +furonculose furonculose nom f s 0.00 0.14 0.00 0.07 +furonculoses furonculose nom f p 0.00 0.14 0.00 0.07 +furète fureter ver 0.55 2.64 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +furètent fureter ver 0.55 2.64 0.01 0.07 ind:pre:3p; +furèterais fureter ver 0.55 2.64 0.01 0.00 cnd:pre:1s; +furtif furtif adj m s 2.12 14.59 1.41 5.54 +furtifs furtif adj m p 2.12 14.59 0.26 4.46 +furtive furtif adj f s 2.12 14.59 0.42 3.04 +furtivement furtivement adv 1.13 5.07 1.13 5.07 +furtives furtif adj f p 2.12 14.59 0.04 1.55 +furtivité furtivité nom f s 0.07 0.00 0.07 0.00 +féru féru adj m s 0.30 1.96 0.23 0.81 +férue féru adj f s 0.30 1.96 0.03 0.27 +férues féru adj f p 0.30 1.96 0.00 0.07 +férule férule nom f s 0.07 1.01 0.07 1.01 +férus féru adj m p 0.30 1.96 0.05 0.81 +fus être aux 8074.24 6501.82 3.58 29.53 ind:pas:2s; +fusa fuser ver 1.24 10.14 0.00 0.41 ind:pas:3s; +fusaient fuser ver 1.24 10.14 0.14 2.03 ind:imp:3p; +fusain fusain nom m s 0.33 3.72 0.30 1.76 +fusains fusain nom m p 0.33 3.72 0.02 1.96 +fusait fuser ver 1.24 10.14 0.03 1.28 ind:imp:3s; +fusant fuser ver 1.24 10.14 0.00 0.95 par:pre; +fusante fusant adj f s 0.00 0.74 0.00 0.20 +fusants fusant nom m p 0.00 1.55 0.00 1.28 +fuse fuser ver 1.24 10.14 0.33 1.35 ind:pre:1s;ind:pre:3s; +fuseau fuseau nom m s 0.61 2.43 0.39 0.88 +fuseaux fuseau nom m p 0.61 2.43 0.22 1.55 +fuselage fuselage nom m s 0.44 0.54 0.44 0.47 +fuselages fuselage nom m p 0.44 0.54 0.00 0.07 +fuselé fuseler ver m s 0.01 0.20 0.01 0.00 par:pas; +fuselée fuselé adj f s 0.14 0.81 0.00 0.07 +fuselées fuselé adj f p 0.14 0.81 0.14 0.14 +fuselés fuselé adj m p 0.14 0.81 0.00 0.41 +fusent fuser ver 1.24 10.14 0.21 0.88 ind:pre:3p; +fuser fuser ver 1.24 10.14 0.34 1.22 inf; +fusible fusible nom m s 3.23 0.54 1.59 0.14 +fusibles fusible nom m p 3.23 0.54 1.64 0.41 +fusiforme fusiforme adj m s 0.00 0.20 0.00 0.20 +fusil_mitrailleur fusil_mitrailleur nom m s 0.37 0.41 0.37 0.34 +fusil fusil nom m s 48.61 55.68 36.52 39.32 +fusilier fusilier nom m s 0.63 0.95 0.23 0.00 +fusilier_marin fusilier_marin nom m p 0.04 1.08 0.04 1.08 +fusiliers fusilier nom m p 0.63 0.95 0.40 0.95 +fusilla fusiller ver 6.63 18.24 0.00 0.20 ind:pas:3s; +fusillade fusillade nom f s 9.63 9.39 8.35 8.18 +fusillades fusillade nom f p 9.63 9.39 1.27 1.22 +fusillaient fusiller ver 6.63 18.24 0.00 0.88 ind:imp:3p; +fusillait fusiller ver 6.63 18.24 0.01 0.88 ind:imp:3s; +fusillant fusiller ver 6.63 18.24 0.01 0.20 par:pre; +fusille fusiller ver 6.63 18.24 0.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fusillent fusiller ver 6.63 18.24 0.26 0.54 ind:pre:3p; +fusiller fusiller ver 6.63 18.24 2.19 6.49 inf; +fusillera fusiller ver 6.63 18.24 0.29 0.14 ind:fut:3s; +fusilleraient fusiller ver 6.63 18.24 0.01 0.00 cnd:pre:3p; +fusillerait fusiller ver 6.63 18.24 0.02 0.20 cnd:pre:3s; +fusillerons fusiller ver 6.63 18.24 0.01 0.00 ind:fut:1p; +fusilleront fusiller ver 6.63 18.24 0.04 0.07 ind:fut:3p; +fusilleurs fusilleur nom m p 0.00 0.14 0.00 0.14 +fusillez fusiller ver 6.63 18.24 0.19 0.07 imp:pre:2p;ind:pre:2p; +fusillions fusiller ver 6.63 18.24 0.01 0.07 ind:imp:1p; +fusillons fusiller ver 6.63 18.24 0.14 0.00 ind:pre:1p; +fusillé fusiller ver m s 6.63 18.24 1.96 5.07 par:pas; +fusillée fusillé adj f s 1.29 2.50 0.30 0.07 +fusillées fusiller ver f p 6.63 18.24 0.20 0.07 par:pas; +fusillés fusiller ver m p 6.63 18.24 0.66 2.36 par:pas; +fusil_mitrailleur fusil_mitrailleur nom m p 0.37 0.41 0.00 0.07 +fusils fusil nom m p 48.61 55.68 12.10 16.35 +fusion fusion nom f s 6.64 5.95 6.29 5.74 +fusionnaient fusionner ver 2.36 0.34 0.01 0.07 ind:imp:3p; +fusionnant fusionner ver 2.36 0.34 0.15 0.00 par:pre; +fusionne fusionner ver 2.36 0.34 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fusionnel fusionnel adj m s 0.01 0.20 0.00 0.14 +fusionnelle fusionnel adj f s 0.01 0.20 0.01 0.07 +fusionnement fusionnement nom m s 0.01 0.00 0.01 0.00 +fusionnent fusionner ver 2.36 0.34 0.40 0.14 ind:pre:3p; +fusionner fusionner ver 2.36 0.34 1.01 0.00 inf; +fusionneraient fusionner ver 2.36 0.34 0.01 0.00 cnd:pre:3p; +fusionnerait fusionner ver 2.36 0.34 0.01 0.00 cnd:pre:3s; +fusionneront fusionner ver 2.36 0.34 0.04 0.00 ind:fut:3p; +fusionnons fusionner ver 2.36 0.34 0.29 0.00 imp:pre:1p; +fusionné fusionner ver m s 2.36 0.34 0.28 0.07 par:pas; +fusionnés fusionner ver m p 2.36 0.34 0.03 0.00 par:pas; +fusions fusion nom f p 6.64 5.95 0.36 0.20 +fusse être aux 8074.24 6501.82 0.02 1.69 sub:imp:1s; +fussent être aux 8074.24 6501.82 0.30 15.88 sub:imp:3p; +fusses être aux 8074.24 6501.82 0.01 0.07 sub:imp:2s; +fussiez être aux 8074.24 6501.82 0.00 0.07 sub:imp:2p; +fussions être aux 8074.24 6501.82 0.00 0.95 sub:imp:1p; +fustanelle fustanelle nom f s 0.00 0.07 0.00 0.07 +fusèrent fuser ver 1.24 10.14 0.00 1.35 ind:pas:3p; +fustigation fustigation nom f s 0.01 0.14 0.01 0.00 +fustigations fustigation nom f p 0.01 0.14 0.00 0.14 +fustige fustiger ver 0.51 1.22 0.03 0.14 imp:pre:2s;ind:pre:3s; +fustigea fustiger ver 0.51 1.22 0.00 0.14 ind:pas:3s; +fustigeaient fustiger ver 0.51 1.22 0.00 0.07 ind:imp:3p; +fustigeais fustiger ver 0.51 1.22 0.01 0.07 ind:imp:1s; +fustigeait fustiger ver 0.51 1.22 0.00 0.07 ind:imp:3s; +fustigeant fustiger ver 0.51 1.22 0.01 0.07 par:pre; +fustiger fustiger ver 0.51 1.22 0.05 0.41 inf; +fustigez fustiger ver 0.51 1.22 0.10 0.00 imp:pre:2p; +fustigé fustiger ver m s 0.51 1.22 0.14 0.07 par:pas; +fustigée fustiger ver f s 0.51 1.22 0.14 0.14 par:pas; +fustigés fustiger ver m p 0.51 1.22 0.03 0.07 par:pas; +fusé fuser ver m s 1.24 10.14 0.03 0.61 par:pas; +fusée fusée nom f s 10.09 9.26 6.00 4.59 +fusées fusée nom f p 10.09 9.26 4.08 4.66 +fut être aux 8074.24 6501.82 32.92 180.41 ind:pas:3s; +fêta fêter ver 37.10 16.01 0.34 0.34 ind:pas:3s; +futaie futaie nom f s 0.02 5.27 0.00 2.50 +fêtaient fêter ver 37.10 16.01 0.12 0.47 ind:imp:3p; +futaies futaie nom f p 0.02 5.27 0.02 2.77 +futaille futaille nom f s 0.00 1.69 0.00 0.88 +futailles futaille nom f p 0.00 1.69 0.00 0.81 +futaine futaine nom f s 0.10 0.00 0.10 0.00 +fêtait fêter ver 37.10 16.01 0.93 1.08 ind:imp:3s; +futal futal nom m s 0.72 0.54 0.68 0.47 +futals futal nom m p 0.72 0.54 0.04 0.07 +fêtant fêter ver 37.10 16.01 0.05 0.20 par:pre; +fêtard fêtard nom m s 0.77 1.22 0.34 0.20 +fêtards fêtard nom m p 0.77 1.22 0.42 1.01 +fête_dieu fête_dieu nom f s 0.14 0.54 0.14 0.54 +fête fête nom f s 155.97 94.05 138.03 70.41 +fêtent fêter ver 37.10 16.01 0.95 0.41 ind:pre:3p; +fêter fêter ver 37.10 16.01 20.03 7.70 inf; +fêtera fêter ver 37.10 16.01 1.06 0.20 ind:fut:3s; +fêterait fêter ver 37.10 16.01 0.05 0.20 cnd:pre:3s; +fêterons fêter ver 37.10 16.01 0.60 0.41 ind:fut:1p; +fêtes fête nom f p 155.97 94.05 17.94 23.65 +fêtez fêter ver 37.10 16.01 1.02 0.14 imp:pre:2p;ind:pre:2p; +fétiche fétiche nom m s 1.48 5.27 1.03 4.39 +fétiches fétiche nom m p 1.48 5.27 0.45 0.88 +féticheur féticheur nom m s 0.01 0.47 0.00 0.20 +féticheurs féticheur nom m p 0.01 0.47 0.01 0.27 +fétichisations fétichisation nom f p 0.00 0.07 0.00 0.07 +fétichisme fétichisme nom m s 0.64 0.54 0.63 0.54 +fétichismes fétichisme nom m p 0.64 0.54 0.01 0.00 +fétichiste fétichiste nom s 0.43 0.27 0.40 0.14 +fétichistes fétichiste nom p 0.43 0.27 0.04 0.14 +fétide fétide adj s 1.18 2.70 1.10 2.23 +fétides fétide adj p 1.18 2.70 0.08 0.47 +fétidité fétidité nom f s 0.00 0.34 0.00 0.34 +futile futile adj s 2.94 8.31 2.23 4.86 +futilement futilement adv 0.00 0.14 0.00 0.14 +futiles futile adj p 2.94 8.31 0.71 3.45 +futilité futilité nom f s 0.65 3.51 0.22 2.23 +futilités futilité nom f p 0.65 3.51 0.43 1.28 +fêtions fêter ver 37.10 16.01 0.22 0.14 ind:imp:1p; +fêtâmes fêter ver 37.10 16.01 0.00 0.07 ind:pas:1p; +futon futon nom m s 0.32 0.00 0.28 0.00 +fêtons fêter ver 37.10 16.01 2.34 0.34 imp:pre:1p;ind:pre:1p; +futons futon nom m p 0.32 0.00 0.03 0.00 +fêtèrent fêter ver 37.10 16.01 0.00 0.20 ind:pas:3p; +fêté fêter ver m s 37.10 16.01 1.67 1.82 par:pas; +fétu fétu nom m s 0.20 1.69 0.17 0.81 +futé futé adj m s 9.23 1.89 5.96 1.28 +fêtée fêter ver f s 37.10 16.01 0.22 0.27 par:pas; +futée futé adj f s 9.23 1.89 1.74 0.27 +futées futé adj f p 9.23 1.89 0.55 0.14 +fétuque fétuque nom f s 0.01 0.07 0.01 0.07 +futur futur nom m s 26.33 11.89 25.73 10.61 +future futur adj f s 23.20 36.35 7.50 9.86 +futures futur adj f p 23.20 36.35 2.51 5.81 +futurisme futurisme nom m s 0.00 0.07 0.00 0.07 +futuriste futuriste adj s 0.59 0.47 0.36 0.41 +futuristes futuriste adj p 0.59 0.47 0.23 0.07 +futurologue futurologue nom s 0.10 0.00 0.10 0.00 +futurs futur adj m p 23.20 36.35 3.79 6.76 +fêtés fêter ver m p 37.10 16.01 0.13 0.14 par:pas; +fétus fétu nom m p 0.20 1.69 0.03 0.88 +futés futé adj m p 9.23 1.89 0.97 0.20 +fuégien fuégien nom m s 0.00 0.07 0.00 0.07 +féveroles féverole nom f p 0.00 0.14 0.00 0.14 +février février nom m 8.03 22.50 8.03 22.50 +fuyaient fuir ver 76.82 76.42 0.44 4.73 ind:imp:3p; +fuyais fuir ver 76.82 76.42 1.52 1.22 ind:imp:1s;ind:imp:2s; +fuyait fuir ver 76.82 76.42 1.27 8.65 ind:imp:3s; +fuyant fuir ver 76.82 76.42 1.54 5.20 par:pre; +fuyante fuyant adj f s 1.09 8.31 0.19 2.91 +fuyantes fuyant adj f p 1.09 8.31 0.11 0.47 +fuyants fuyant adj m p 1.09 8.31 0.11 1.01 +fuyard fuyard nom m s 1.15 4.73 0.40 1.15 +fuyarde fuyard adj f s 0.04 0.47 0.01 0.14 +fuyards fuyard nom m p 1.15 4.73 0.75 3.45 +fuyez fuir ver 76.82 76.42 4.78 0.47 imp:pre:2p;ind:pre:2p; +fuyiez fuir ver 76.82 76.42 0.26 0.00 ind:imp:2p;sub:pre:2p; +fuyions fuir ver 76.82 76.42 0.18 0.47 ind:imp:1p; +fuyons fuir ver 76.82 76.42 3.23 0.74 imp:pre:1p;ind:pre:1p; +fy fy nom m s 0.01 0.00 0.01 0.00 +g g nom m 10.92 4.66 10.92 4.66 +gît gésir ver 4.77 15.68 2.15 2.64 ind:pre:3s; +gîta gîter ver 0.03 1.28 0.01 0.07 ind:pas:3s; +gîtait gîter ver 0.03 1.28 0.00 0.61 ind:imp:3s; +gîte gîte nom s 1.20 6.49 1.05 5.81 +gîtent gîter ver 0.03 1.28 0.00 0.14 ind:pre:3p; +gîter gîter ver 0.03 1.28 0.00 0.34 inf; +gîtera gîter ver 0.03 1.28 0.02 0.00 ind:fut:3s; +gîtes gîte nom m p 1.20 6.49 0.14 0.68 +gîté gîter ver m s 0.03 1.28 0.00 0.14 par:pas; +gaîment gaîment adv 0.03 0.47 0.03 0.47 +gaîté gaîté nom f s 0.55 6.35 0.55 6.28 +gaîtés gaîté nom f p 0.55 6.35 0.00 0.07 +gaba gaba nom m s 0.01 0.00 0.01 0.00 +gabardine gabardine nom f s 0.25 3.45 0.23 3.11 +gabardines gabardine nom f p 0.25 3.45 0.03 0.34 +gabare gabare nom f s 0.10 0.20 0.10 0.20 +gabariers gabarier nom m p 0.00 0.07 0.00 0.07 +gabarit gabarit nom m s 0.33 1.82 0.30 1.62 +gabarits gabarit nom m p 0.33 1.82 0.03 0.20 +gabarres gabarre nom f p 0.00 0.07 0.00 0.07 +gabbro gabbro nom m s 0.01 0.00 0.01 0.00 +gabe gaber ver 1.01 0.00 1.01 0.00 imp:pre:2s;ind:pre:1s; +gabegie gabegie nom f s 0.04 0.34 0.04 0.34 +gabelle gabelle nom f s 0.02 0.07 0.02 0.07 +gabelou gabelou nom m s 0.00 0.07 0.00 0.07 +gabier gabier nom m s 0.13 0.34 0.09 0.20 +gabiers gabier nom m p 0.13 0.34 0.04 0.14 +gabion gabion nom m s 0.00 0.20 0.00 0.07 +gabions gabion nom m p 0.00 0.20 0.00 0.14 +gable gable nom m s 0.14 0.27 0.01 0.14 +gables gable nom m p 0.14 0.27 0.14 0.14 +gabonais gabonais nom m 0.00 0.34 0.00 0.34 +gabonaise gabonais adj f s 0.00 0.27 0.00 0.07 +gade gade nom m s 0.00 0.07 0.00 0.07 +gadget gadget nom m s 2.80 1.62 1.31 0.41 +gadgets gadget nom m p 2.80 1.62 1.50 1.22 +gadin gadin nom m s 0.12 0.68 0.12 0.54 +gadins gadin nom m p 0.12 0.68 0.00 0.14 +gadjo gadjo nom m s 0.54 0.00 0.54 0.00 +gadolinium gadolinium nom m s 0.01 0.00 0.01 0.00 +gadoue gadoue nom f s 0.37 4.93 0.37 2.36 +gadoues gadoue nom f p 0.37 4.93 0.00 2.57 +gadouille gadouille nom f s 0.00 0.47 0.00 0.47 +gaffa gaffer ver 5.20 5.88 0.00 0.07 ind:pas:3s; +gaffaient gaffer ver 5.20 5.88 0.00 0.07 ind:imp:3p; +gaffais gaffer ver 5.20 5.88 0.00 0.07 ind:imp:1s; +gaffait gaffer ver 5.20 5.88 0.00 0.27 ind:imp:3s; +gaffant gaffer ver 5.20 5.88 0.00 0.20 par:pre; +gaffe gaffe nom f s 34.68 20.47 33.92 17.57 +gaffent gaffer ver 5.20 5.88 0.01 0.27 ind:pre:3p; +gaffer gaffer ver 5.20 5.88 0.07 1.55 inf; +gafferai gaffer ver 5.20 5.88 0.00 0.07 ind:fut:1s; +gaffes gaffe nom f p 34.68 20.47 0.76 2.91 +gaffeur gaffeur nom m s 0.10 0.14 0.08 0.07 +gaffeurs gaffeur nom m p 0.10 0.14 0.01 0.07 +gaffeuse gaffeur nom f s 0.10 0.14 0.01 0.00 +gaffeuses gaffeur adj f p 0.04 0.27 0.00 0.07 +gaffez gaffer ver 5.20 5.88 0.11 0.00 imp:pre:2p; +gaffé gaffer ver m s 5.20 5.88 0.35 0.61 par:pas; +gaffée gaffer ver f s 5.20 5.88 0.00 0.14 par:pas; +gaffés gaffer ver m p 5.20 5.88 0.00 0.07 par:pas; +gag gag nom m s 3.03 1.28 2.41 1.08 +gaga gaga adj 0.61 1.01 0.58 0.88 +gagas gaga adj p 0.61 1.01 0.02 0.14 +gage gage nom m s 15.31 6.76 9.24 4.05 +gageaient gager ver 1.87 1.42 0.00 0.14 ind:imp:3p; +gageons gager ver 1.87 1.42 0.17 0.41 imp:pre:1p; +gager gager ver 1.87 1.42 0.34 0.07 inf; +gagerai gager ver 1.87 1.42 0.01 0.00 ind:fut:1s; +gagerais gager ver 1.87 1.42 0.15 0.20 cnd:pre:1s; +gages gage nom m p 15.31 6.76 6.06 2.70 +gageure gageure nom f s 0.49 1.28 0.35 1.28 +gageures gageure nom f p 0.49 1.28 0.14 0.00 +gagez gager ver 1.87 1.42 0.02 0.00 imp:pre:2p; +gagna gagner ver 294.44 180.88 0.78 12.77 ind:pas:3s; +gagnage gagnage nom m s 0.00 0.20 0.00 0.14 +gagnages gagnage nom m p 0.00 0.20 0.00 0.07 +gagnai gagner ver 294.44 180.88 0.00 2.23 ind:pas:1s; +gagnaient gagner ver 294.44 180.88 0.74 3.99 ind:imp:3p; +gagnais gagner ver 294.44 180.88 2.11 1.76 ind:imp:1s;ind:imp:2s; +gagnait gagner ver 294.44 180.88 2.96 14.12 ind:imp:3s; +gagnant gagnant nom m s 12.56 1.76 8.45 1.35 +gagnante gagnant nom f s 12.56 1.76 1.34 0.14 +gagnantes gagnant nom f p 12.56 1.76 0.10 0.00 +gagnants gagnant nom m p 12.56 1.76 2.68 0.27 +gagne_pain gagne_pain nom m 2.01 1.82 2.01 1.82 +gagne_petit gagne_petit nom m 0.16 0.68 0.16 0.68 +gagne gagner ver 294.44 180.88 53.39 19.66 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +gagnent gagner ver 294.44 180.88 7.02 4.05 ind:pre:3p; +gagner gagner ver 294.44 180.88 92.72 64.59 ind:pre:2p;inf; +gagnera gagner ver 294.44 180.88 5.08 1.49 ind:fut:3s; +gagnerai gagner ver 294.44 180.88 2.14 0.41 ind:fut:1s; +gagneraient gagner ver 294.44 180.88 0.34 0.34 cnd:pre:3p; +gagnerais gagner ver 294.44 180.88 1.52 0.61 cnd:pre:1s;cnd:pre:2s; +gagnerait gagner ver 294.44 180.88 1.95 1.69 cnd:pre:3s; +gagneras gagner ver 294.44 180.88 2.56 0.74 ind:fut:2s; +gagnerez gagner ver 294.44 180.88 2.09 0.68 ind:fut:2p; +gagneriez gagner ver 294.44 180.88 0.38 0.00 cnd:pre:2p; +gagnerions gagner ver 294.44 180.88 0.28 0.00 cnd:pre:1p; +gagnerons gagner ver 294.44 180.88 1.37 0.27 ind:fut:1p; +gagneront gagner ver 294.44 180.88 0.82 0.61 ind:fut:3p; +gagnes gagner ver 294.44 180.88 11.04 1.76 ind:pre:2s;sub:pre:2s; +gagneur gagneur nom m s 0.76 0.74 0.04 0.00 +gagneurs gagneur nom m p 0.76 0.74 0.05 0.07 +gagneuse gagneur nom f s 0.76 0.74 0.67 0.54 +gagneuses gagneuse nom f p 0.02 0.00 0.02 0.00 +gagnez gagner ver 294.44 180.88 7.04 0.41 imp:pre:2p;ind:pre:2p; +gagniez gagner ver 294.44 180.88 0.38 0.07 ind:imp:2p; +gagnions gagner ver 294.44 180.88 0.12 0.41 ind:imp:1p; +gagnâmes gagner ver 294.44 180.88 0.00 0.41 ind:pas:1p; +gagnons gagner ver 294.44 180.88 1.74 0.88 imp:pre:1p;ind:pre:1p; +gagnât gagner ver 294.44 180.88 0.00 0.34 sub:imp:3s; +gagnèrent gagner ver 294.44 180.88 0.09 3.11 ind:pas:3p; +gagné gagner ver m s 294.44 180.88 89.92 33.51 par:pas; +gagnée gagner ver f s 294.44 180.88 2.85 4.46 par:pas; +gagnées gagner ver f p 294.44 180.88 0.29 0.88 par:pas; +gagnés gagner ver m p 294.44 180.88 1.02 1.76 par:pas; +gags gag nom m p 3.03 1.28 0.61 0.20 +gagé gager ver m s 1.87 1.42 0.16 0.00 par:pas; +gagée gager ver f s 1.87 1.42 0.02 0.00 par:pas; +gai gai adj m s 20.00 41.76 10.74 22.64 +gaie gai adj f s 20.00 41.76 6.58 12.70 +gaiement gaiement adv 2.58 16.22 2.58 16.22 +gaies gai adj f p 20.00 41.76 0.88 2.30 +gaieté gaieté nom f s 2.81 27.36 2.81 27.09 +gaietés gaieté nom f p 2.81 27.36 0.00 0.27 +gail gail nom f s 0.00 0.61 0.00 0.61 +gaillard gaillard nom m s 3.40 10.34 2.47 7.30 +gaillarde gaillard adj f s 0.95 3.18 0.25 0.68 +gaillardement gaillardement adv 0.10 0.95 0.10 0.95 +gaillardes gaillard adj f p 0.95 3.18 0.14 0.47 +gaillardise gaillardise nom f s 0.00 0.14 0.00 0.14 +gaillards gaillard nom m p 3.40 10.34 0.90 2.64 +gaillet gaillet nom m s 0.01 0.07 0.01 0.07 +gaillette gaillette nom f s 0.00 0.20 0.00 0.14 +gaillettes gaillette nom f p 0.00 0.20 0.00 0.07 +gain gain nom m s 5.60 5.88 2.58 4.32 +gainaient gainer ver 0.08 3.11 0.00 0.07 ind:imp:3p; +gainait gainer ver 0.08 3.11 0.00 0.14 ind:imp:3s; +gaine_culotte gaine_culotte nom f s 0.01 0.07 0.01 0.07 +gaine gaine nom f s 2.15 3.85 1.16 3.11 +gainent gainer ver 0.08 3.11 0.00 0.07 ind:pre:3p; +gainer gainer ver 0.08 3.11 0.05 0.00 inf; +gaines gaine nom f p 2.15 3.85 0.99 0.74 +gainiers gainier nom m p 0.00 0.07 0.00 0.07 +gains gain nom m p 5.60 5.88 3.02 1.55 +gainé gainer ver m s 0.08 3.11 0.00 0.74 par:pas; +gainée gainer ver f s 0.08 3.11 0.01 0.68 par:pas; +gainées gainer ver f p 0.08 3.11 0.01 0.95 par:pas; +gainés gainer ver m p 0.08 3.11 0.01 0.47 par:pas; +gais gai adj m p 20.00 41.76 1.81 4.12 +gal gal adv 1.18 0.00 1.18 0.00 +gala gala nom m s 3.90 3.65 3.31 2.97 +galactique galactique adj s 1.13 0.14 0.94 0.07 +galactiques galactique adj p 1.13 0.14 0.19 0.07 +galactophore galactophore adj s 0.01 0.00 0.01 0.00 +galago galago nom m s 0.02 0.00 0.02 0.00 +galalithe galalithe nom f s 0.00 0.20 0.00 0.20 +galamment galamment adv 0.07 1.22 0.07 1.22 +galant galant adj m s 5.39 5.81 4.66 2.77 +galante galant adj f s 5.39 5.81 0.11 1.28 +galanterie galanterie nom f s 1.14 2.50 1.00 1.82 +galanteries galanterie nom f p 1.14 2.50 0.13 0.68 +galantes galant adj f p 5.39 5.81 0.16 1.08 +galantine galantine nom f s 0.01 0.88 0.01 0.74 +galantines galantine nom f p 0.01 0.88 0.00 0.14 +galantins galantin nom m p 0.01 0.14 0.01 0.14 +galantisait galantiser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +galantisé galantiser ver m s 0.00 0.14 0.00 0.07 par:pas; +galants galant adj m p 5.39 5.81 0.48 0.68 +galapiat galapiat nom m s 0.01 0.27 0.01 0.14 +galapiats galapiat nom m p 0.01 0.27 0.00 0.14 +galas gala nom m p 3.90 3.65 0.59 0.68 +galate galate nom s 0.05 0.00 0.01 0.00 +galates galate nom p 0.05 0.00 0.04 0.00 +galathée galathée nom f s 0.00 0.07 0.00 0.07 +galaxie galaxie nom f s 9.53 4.12 8.29 2.16 +galaxies galaxie nom f p 9.53 4.12 1.23 1.96 +galbait galber ver 0.10 0.47 0.00 0.07 ind:imp:3s; +galbe galbe nom m s 0.06 1.28 0.05 1.08 +galber galber ver 0.10 0.47 0.00 0.07 inf; +galbes galbe nom m p 0.06 1.28 0.01 0.20 +galbé galbé adj m s 0.04 0.74 0.00 0.20 +galbée galbé adj f s 0.04 0.74 0.02 0.14 +galbées galbé adj f p 0.04 0.74 0.01 0.27 +galbés galber ver m p 0.10 0.47 0.10 0.00 par:pas; +gale gale nom f s 3.52 0.47 3.50 0.47 +galerie_refuge galerie_refuge nom f s 0.00 0.07 0.00 0.07 +galerie galerie nom f s 15.69 32.16 13.64 21.22 +galeries_refuge galeries_refuge nom f p 0.00 0.07 0.00 0.07 +galeries galerie nom f p 15.69 32.16 2.05 10.95 +galeriste galeriste nom s 0.10 0.00 0.10 0.00 +galernes galerne nom f p 0.00 0.07 0.00 0.07 +gales gale nom f p 3.52 0.47 0.03 0.00 +galet galet nom m s 1.18 15.74 0.54 2.70 +galetas galetas nom m 0.14 1.28 0.14 1.28 +galetouse galetouse nom f s 0.00 0.20 0.00 0.20 +galets galet nom m p 1.18 15.74 0.65 13.04 +galette galette nom f s 1.86 6.42 0.67 4.26 +galettes galette nom f p 1.86 6.42 1.19 2.16 +galetteux galetteux adj m 0.00 0.14 0.00 0.14 +galeuse galeux adj f s 2.09 3.18 0.88 1.22 +galeuses galeux adj f p 2.09 3.18 0.24 0.41 +galeux galeux adj m 2.09 3.18 0.97 1.55 +galibot galibot nom m s 0.00 0.14 0.00 0.07 +galibots galibot nom m p 0.00 0.14 0.00 0.07 +galicien galicien nom m s 0.34 0.07 0.34 0.00 +galiciennes galicien adj f p 0.00 0.07 0.00 0.07 +galiciens galicien nom m p 0.34 0.07 0.00 0.07 +galiléen galiléen nom m s 0.06 0.00 0.06 0.00 +galimatias galimatias nom m 0.11 0.47 0.11 0.47 +galion galion nom m s 0.23 1.15 0.21 0.81 +galions galion nom m p 0.23 1.15 0.03 0.34 +galiote galiote nom f s 0.00 0.54 0.00 0.34 +galiotes galiote nom f p 0.00 0.54 0.00 0.20 +galipette galipette nom f s 0.86 1.55 0.21 0.34 +galipettes galipette nom f p 0.86 1.55 0.65 1.22 +gallant galler ver 0.47 0.20 0.47 0.20 par:pre; +galle galle nom f s 0.02 0.20 0.00 0.07 +galles galle nom f p 0.02 0.20 0.02 0.14 +gallicanes gallican adj f p 0.00 0.07 0.00 0.07 +gallicanisme gallicanisme nom m s 0.00 0.14 0.00 0.14 +gallinacé gallinacé nom m s 0.00 0.14 0.00 0.14 +galline galline adj f s 0.27 0.00 0.27 0.00 +gallique gallique adj f s 0.00 0.07 0.00 0.07 +gallium gallium nom m s 0.06 0.07 0.06 0.07 +gallo_romain gallo_romain adj m s 0.00 0.14 0.00 0.07 +gallo_romain gallo_romain adj m p 0.00 0.14 0.00 0.07 +gallo gallo adj s 1.54 0.14 1.54 0.07 +gallois gallois adj m 0.65 0.14 0.49 0.07 +galloise gallois adj f s 0.65 0.14 0.12 0.07 +galloises gallois adj f p 0.65 0.14 0.04 0.00 +gallon gallon nom m s 0.63 0.68 0.18 0.07 +gallons gallon nom m p 0.63 0.68 0.45 0.61 +gallos gallo adj p 1.54 0.14 0.00 0.07 +galoche galoche nom f s 0.09 6.62 0.00 1.69 +galoches galoche nom f p 0.09 6.62 0.09 4.93 +galoché galocher ver m s 0.00 0.14 0.00 0.07 par:pas; +galochés galocher ver m p 0.00 0.14 0.00 0.07 par:pas; +galon galon nom m s 3.16 14.73 0.89 4.12 +galonnage galonnage nom m s 0.00 0.07 0.00 0.07 +galonnait galonner ver 0.01 1.22 0.00 0.07 ind:imp:3s; +galonne galonner ver 0.01 1.22 0.00 0.07 ind:pre:3s; +galonné galonné adj m s 0.09 2.09 0.03 0.74 +galonnée galonné adj f s 0.09 2.09 0.01 0.54 +galonnées galonné adj f p 0.09 2.09 0.01 0.27 +galonnés galonné adj m p 0.09 2.09 0.03 0.54 +galons galon nom m p 3.16 14.73 2.28 10.61 +galop galop nom m s 2.83 13.72 2.83 12.77 +galopa galoper ver 3.14 13.31 0.14 0.61 ind:pas:3s; +galopade galopade nom f s 0.00 3.65 0.00 2.03 +galopades galopade nom f p 0.00 3.65 0.00 1.62 +galopaient galoper ver 3.14 13.31 0.03 1.49 ind:imp:3p; +galopais galoper ver 3.14 13.31 0.01 0.27 ind:imp:1s;ind:imp:2s; +galopait galoper ver 3.14 13.31 0.05 1.55 ind:imp:3s; +galopant galoper ver 3.14 13.31 0.09 1.62 par:pre; +galopante galopant adj f s 0.31 1.89 0.22 1.15 +galopantes galopant adj f p 0.31 1.89 0.01 0.07 +galopants galopant adj m p 0.31 1.89 0.00 0.14 +galope galoper ver 3.14 13.31 0.63 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +galopent galoper ver 3.14 13.31 0.18 1.42 ind:pre:3p; +galoper galoper ver 3.14 13.31 0.95 3.78 inf; +galopera galoper ver 3.14 13.31 0.02 0.00 ind:fut:3s; +galoperaient galoper ver 3.14 13.31 0.00 0.07 cnd:pre:3p; +galoperez galoper ver 3.14 13.31 0.01 0.00 ind:fut:2p; +galopes galoper ver 3.14 13.31 0.13 0.00 ind:pre:2s; +galopez galoper ver 3.14 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +galopin galopin nom m s 0.88 4.05 0.32 1.69 +galopine galopin nom f s 0.88 4.05 0.00 0.41 +galopiner galopiner ver 0.00 0.07 0.00 0.07 inf; +galopines galopin nom f p 0.88 4.05 0.00 0.07 +galopins galopin nom m p 0.88 4.05 0.56 1.89 +galopons galoper ver 3.14 13.31 0.27 0.07 imp:pre:1p;ind:pre:1p; +galops galop nom m p 2.83 13.72 0.00 0.95 +galopèrent galoper ver 3.14 13.31 0.00 0.07 ind:pas:3p; +galopé galoper ver m s 3.14 13.31 0.60 0.41 par:pas; +galoubet galoubet nom m s 0.01 0.00 0.01 0.00 +galoup galoup nom m s 0.00 0.20 0.00 0.20 +galène galène nom f s 0.23 0.41 0.23 0.41 +galère galère nom f s 10.26 10.47 8.12 6.08 +galèrent galérer ver 0.91 0.74 0.06 0.00 ind:pre:3p; +galères galère nom f p 10.26 10.47 2.14 4.39 +galtouse galtouse nom f s 0.00 1.28 0.00 1.01 +galtouses galtouse nom f p 0.00 1.28 0.00 0.27 +galéasses galéasse nom f p 0.00 0.14 0.00 0.14 +galuchat galuchat nom m s 0.00 0.34 0.00 0.34 +galée galée nom f s 0.04 0.34 0.00 0.20 +galées galée nom f p 0.04 0.34 0.04 0.14 +galéjade galéjade nom f s 0.29 0.41 0.28 0.34 +galéjades galéjade nom f p 0.29 0.41 0.01 0.07 +galéjeur galéjeur adj m s 0.00 0.07 0.00 0.07 +galéniste galéniste nom m s 0.00 0.07 0.00 0.07 +galérais galérer ver 0.91 0.74 0.01 0.00 ind:imp:1s; +galérait galérer ver 0.91 0.74 0.00 0.07 ind:imp:3s; +galure galure nom m s 0.09 1.08 0.08 0.88 +galérer galérer ver 0.91 0.74 0.36 0.20 inf; +galures galure nom m p 0.09 1.08 0.01 0.20 +galérien galérien nom m s 0.09 1.01 0.07 0.41 +galériens galérien nom m p 0.09 1.01 0.02 0.61 +galurin galurin nom m s 0.04 0.41 0.04 0.41 +galéré galérer ver m s 0.91 0.74 0.23 0.20 par:pas; +galvanique galvanique adj f s 0.00 0.07 0.00 0.07 +galvanisa galvaniser ver 0.51 1.96 0.00 0.07 ind:pas:3s; +galvanisait galvaniser ver 0.51 1.96 0.00 0.20 ind:imp:3s; +galvanisant galvaniser ver 0.51 1.96 0.03 0.14 par:pre; +galvanise galvaniser ver 0.51 1.96 0.02 0.20 ind:pre:3s; +galvaniser galvaniser ver 0.51 1.96 0.20 0.34 inf; +galvanisme galvanisme nom m s 0.02 0.00 0.02 0.00 +galvanisé galvaniser ver m s 0.51 1.96 0.26 0.54 par:pas; +galvanisée galvaniser ver f s 0.51 1.96 0.01 0.34 par:pas; +galvanisées galvaniser ver f p 0.51 1.96 0.00 0.07 par:pas; +galvanisés galvaniser ver m p 0.51 1.96 0.00 0.07 par:pas; +galvaudait galvauder ver 0.16 0.88 0.00 0.07 ind:imp:3s; +galvaudant galvauder ver 0.16 0.88 0.00 0.07 par:pre; +galvaude galvauder ver 0.16 0.88 0.00 0.14 ind:pre:3s; +galvaudent galvauder ver 0.16 0.88 0.00 0.07 ind:pre:3p; +galvauder galvauder ver 0.16 0.88 0.10 0.14 inf; +galvaudeux galvaudeux nom m 0.00 0.14 0.00 0.14 +galvaudez galvauder ver 0.16 0.88 0.00 0.07 imp:pre:2p; +galvaudiez galvauder ver 0.16 0.88 0.00 0.07 ind:imp:2p; +galvaudé galvauder ver m s 0.16 0.88 0.04 0.20 par:pas; +galvaudée galvauder ver f s 0.16 0.88 0.02 0.07 par:pas; +gamahuche gamahucher ver 0.00 0.07 0.00 0.07 ind:pre:3s; +gamay gamay nom m s 0.00 0.07 0.00 0.07 +gambada gambader ver 0.80 2.64 0.00 0.07 ind:pas:3s; +gambadaient gambader ver 0.80 2.64 0.00 0.14 ind:imp:3p; +gambadais gambader ver 0.80 2.64 0.01 0.00 ind:imp:1s; +gambadait gambader ver 0.80 2.64 0.05 0.61 ind:imp:3s; +gambadant gambader ver 0.80 2.64 0.05 0.20 par:pre; +gambadante gambadant adj f s 0.02 0.14 0.00 0.07 +gambade gambader ver 0.80 2.64 0.16 0.54 ind:pre:1s;ind:pre:3s; +gambadent gambader ver 0.80 2.64 0.12 0.27 ind:pre:3p; +gambader gambader ver 0.80 2.64 0.38 0.74 inf; +gambades gambade nom f p 0.01 0.61 0.01 0.47 +gambadeurs gambadeur nom m p 0.00 0.07 0.00 0.07 +gambadez gambader ver 0.80 2.64 0.02 0.00 imp:pre:2p; +gambadèrent gambader ver 0.80 2.64 0.00 0.07 ind:pas:3p; +gambas gamba nom f p 0.45 0.14 0.45 0.14 +gambe gambe nom f s 0.34 0.07 0.34 0.07 +gamberge gamberger ver 0.69 7.70 0.11 1.89 ind:pre:1s;ind:pre:3s; +gambergea gamberger ver 0.69 7.70 0.00 0.07 ind:pas:3s; +gambergeaient gamberger ver 0.69 7.70 0.00 0.07 ind:imp:3p; +gambergeailler gambergeailler ver 0.00 0.07 0.00 0.07 inf; +gambergeais gamberger ver 0.69 7.70 0.01 0.61 ind:imp:1s; +gambergeait gamberger ver 0.69 7.70 0.04 0.74 ind:imp:3s; +gambergeant gamberger ver 0.69 7.70 0.00 0.54 par:pre; +gambergent gamberger ver 0.69 7.70 0.01 0.07 ind:pre:3p; +gambergeons gamberger ver 0.69 7.70 0.00 0.07 imp:pre:1p; +gamberger gamberger ver 0.69 7.70 0.23 2.50 inf; +gamberges gamberger ver 0.69 7.70 0.19 0.20 ind:pre:2s; +gambergez gamberger ver 0.69 7.70 0.02 0.00 imp:pre:2p;ind:pre:2p; +gambergé gamberger ver m s 0.69 7.70 0.09 0.95 par:pas; +gambette gambette nom s 0.33 0.74 0.02 0.20 +gambettes gambette nom p 0.33 0.74 0.31 0.54 +gambillait gambiller ver 0.08 1.35 0.00 0.07 ind:imp:3s; +gambillant gambiller ver 0.08 1.35 0.00 0.20 par:pre; +gambille gambiller ver 0.08 1.35 0.03 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gambiller gambiller ver 0.08 1.35 0.03 0.14 inf; +gambilles gambiller ver 0.08 1.35 0.02 0.27 ind:pre:2s; +gambilleurs gambilleur nom m p 0.00 0.20 0.00 0.14 +gambilleuses gambilleur nom f p 0.00 0.20 0.00 0.07 +gambillé gambiller ver m s 0.08 1.35 0.00 0.07 par:pas; +gambit gambit nom m s 0.04 0.00 0.04 0.00 +game game nom m s 0.64 0.14 0.64 0.14 +gamelan gamelan nom m s 0.25 0.07 0.25 0.07 +gamelle gamelle nom f s 1.64 13.72 1.29 8.45 +gamelles gamelle nom f p 1.64 13.72 0.34 5.27 +gamin gamin nom m s 92.22 38.78 55.94 19.53 +gaminas gaminer ver 0.00 0.07 0.00 0.07 ind:pas:2s; +gamine gamin nom f s 92.22 38.78 12.00 7.16 +gaminement gaminement nom m s 0.00 0.07 0.00 0.07 +gaminerie gaminerie nom f s 0.40 0.61 0.08 0.20 +gamineries gaminerie nom f p 0.40 0.61 0.32 0.41 +gamines gamin nom f p 92.22 38.78 2.13 2.77 +gamins gamin nom m p 92.22 38.78 22.15 9.32 +gamma gamma nom m 1.94 1.01 1.94 1.01 +gammaglobuline gammaglobuline nom f s 0.03 0.34 0.00 0.20 +gammaglobulines gammaglobuline nom f p 0.03 0.34 0.03 0.14 +gammas gammas nom m 0.04 0.00 0.04 0.00 +gamme gamme nom f s 3.22 7.91 2.67 5.74 +gammes gamme nom f p 3.22 7.91 0.55 2.16 +gammée gammée adj f s 1.27 3.45 0.20 2.43 +gammées gammée adj f p 1.27 3.45 1.07 1.01 +gamète gamète nom m s 0.03 0.20 0.01 0.14 +gamètes gamète nom m p 0.03 0.20 0.02 0.07 +gan gan nom m s 0.27 0.00 0.27 0.00 +ganache ganache nom f s 0.04 0.61 0.04 0.61 +ganaderia ganaderia nom f s 0.00 0.20 0.00 0.14 +ganaderias ganaderia nom f p 0.00 0.20 0.00 0.07 +gandin gandin nom m s 0.56 1.28 0.56 0.95 +gandins gandin nom m p 0.56 1.28 0.00 0.34 +gandoura gandoura nom f s 0.01 0.68 0.01 0.54 +gandourah gandourah nom f s 0.00 0.20 0.00 0.20 +gandouras gandoura nom f p 0.01 0.68 0.00 0.14 +gang gang nom m s 17.48 3.85 12.44 3.04 +ganglion ganglion nom m s 0.61 1.01 0.18 0.41 +ganglionnaires ganglionnaire adj f p 0.00 0.07 0.00 0.07 +ganglions ganglion nom m p 0.61 1.01 0.44 0.61 +gangrena gangrener ver 0.50 0.61 0.00 0.07 ind:pas:3s; +gangrener gangrener ver 0.50 0.61 0.21 0.07 inf; +gangreneux gangreneux adj m s 0.01 0.00 0.01 0.00 +gangrené gangrené adj m s 0.19 0.41 0.17 0.27 +gangrenée gangrener ver f s 0.50 0.61 0.10 0.14 par:pas; +gangrenées gangrené adj f p 0.19 0.41 0.01 0.00 +gangrenés gangrener ver m p 0.50 0.61 0.01 0.07 par:pas; +gangrène gangrène nom f s 1.74 2.23 1.74 2.16 +gangrènes gangrène nom f p 1.74 2.23 0.00 0.07 +gangs gang nom m p 17.48 3.85 5.05 0.81 +gangster gangster nom m s 10.43 6.35 6.75 3.11 +gangsters gangster nom m p 10.43 6.35 3.68 3.24 +gangstérisme gangstérisme nom m s 0.00 0.07 0.00 0.07 +gangue gangue nom f s 0.01 2.03 0.01 1.89 +gangues gangue nom f p 0.01 2.03 0.00 0.14 +ganja ganja nom f s 0.18 0.00 0.18 0.00 +ganse ganse nom f s 0.04 0.68 0.02 0.34 +ganses ganse nom f p 0.04 0.68 0.02 0.34 +gansé ganser ver m s 0.00 0.41 0.00 0.07 par:pas; +gansée ganser ver f s 0.00 0.41 0.00 0.34 par:pas; +gant gant nom m s 25.02 36.01 9.86 7.97 +gantait ganter ver 0.14 3.72 0.00 0.07 ind:imp:3s; +gantant ganter ver 0.14 3.72 0.00 0.07 par:pre; +gante ganter ver 0.14 3.72 0.00 0.07 ind:pre:3s; +gantelet gantelet nom m s 0.37 0.14 0.36 0.07 +gantelets gantelet nom m p 0.37 0.14 0.01 0.07 +ganterie ganterie nom f s 0.00 0.07 0.00 0.07 +gantier gantier nom m s 0.24 0.07 0.24 0.00 +gantières gantier nom f p 0.24 0.07 0.00 0.07 +gants gant nom m p 25.02 36.01 15.16 28.04 +ganté ganté adj m s 0.06 2.50 0.04 0.20 +gantée ganter ver f s 0.14 3.72 0.01 1.82 par:pas; +gantées ganter ver f p 0.14 3.72 0.01 0.74 par:pas; +gantés ganter ver m p 0.14 3.72 0.10 0.20 par:pas; +ganymèdes ganymède nom m p 0.00 0.07 0.00 0.07 +gap gap nom m s 0.01 0.00 0.01 0.00 +gaperon gaperon nom m s 0.00 0.07 0.00 0.07 +gapette gapette nom f s 0.01 0.68 0.01 0.54 +gapettes gapette nom f p 0.01 0.68 0.00 0.14 +gara garer ver 27.18 18.04 0.04 1.15 ind:pas:3s; +garage garage nom m s 25.25 24.12 24.41 22.23 +garages garage nom m p 25.25 24.12 0.83 1.89 +garagiste garagiste nom s 1.25 5.27 1.25 5.00 +garagistes garagiste nom p 1.25 5.27 0.00 0.27 +garaient garer ver 27.18 18.04 0.02 0.20 ind:imp:3p; +garais garer ver 27.18 18.04 0.07 0.07 ind:imp:1s;ind:imp:2s; +garait garer ver 27.18 18.04 0.05 0.34 ind:imp:3s; +garance garance adj 0.01 0.27 0.01 0.27 +garancière garancière nom f s 0.00 0.27 0.00 0.27 +garant garant adj m s 2.39 2.09 2.19 0.81 +garantît garantir ver 19.74 16.82 0.00 0.07 sub:imp:3s; +garante garant adj f s 2.39 2.09 0.16 0.68 +garantes garant adj f p 2.39 2.09 0.00 0.07 +garanti garantir ver m s 19.74 16.82 2.32 2.70 par:pas; +garantie garantie nom f s 9.16 8.24 6.84 5.14 +garanties garantie nom f p 9.16 8.24 2.32 3.11 +garantir garantir ver 19.74 16.82 4.86 4.59 inf; +garantira garantir ver 19.74 16.82 0.20 0.54 ind:fut:3s; +garantirais garantir ver 19.74 16.82 0.01 0.00 cnd:pre:1s; +garantirait garantir ver 19.74 16.82 0.04 0.27 cnd:pre:3s; +garantiriez garantir ver 19.74 16.82 0.01 0.00 cnd:pre:2p; +garantirons garantir ver 19.74 16.82 0.00 0.07 ind:fut:1p; +garantiront garantir ver 19.74 16.82 0.04 0.00 ind:fut:3p; +garantis garantir ver m p 19.74 16.82 7.15 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +garantissaient garantir ver 19.74 16.82 0.01 0.34 ind:imp:3p; +garantissais garantir ver 19.74 16.82 0.01 0.07 ind:imp:1s; +garantissait garantir ver 19.74 16.82 0.11 0.95 ind:imp:3s; +garantissant garantir ver 19.74 16.82 0.13 0.68 par:pre; +garantisse garantir ver 19.74 16.82 0.18 0.14 sub:pre:1s;sub:pre:3s; +garantissent garantir ver 19.74 16.82 0.07 0.14 ind:pre:3p; +garantissez garantir ver 19.74 16.82 0.26 0.00 imp:pre:2p;ind:pre:2p; +garantissons garantir ver 19.74 16.82 0.25 0.00 imp:pre:1p;ind:pre:1p; +garantit garantir ver 19.74 16.82 2.30 1.22 ind:pre:3s;ind:pas:3s; +garants garant nom m p 0.97 1.62 0.24 0.34 +garbure garbure nom f s 0.14 0.14 0.14 0.14 +garce garce nom f s 21.71 8.78 20.25 7.36 +garces garce nom f p 21.71 8.78 1.46 1.42 +garcette garcette nom f s 0.00 0.20 0.00 0.07 +garcettes garcette nom f p 0.00 0.20 0.00 0.14 +garda garder ver 338.40 257.50 0.40 11.89 ind:pas:3s; +gardai garder ver 338.40 257.50 0.12 3.65 ind:pas:1s; +gardaient garder ver 338.40 257.50 0.89 8.45 ind:imp:3p; +gardais garder ver 338.40 257.50 3.00 5.74 ind:imp:1s;ind:imp:2s; +gardait garder ver 338.40 257.50 4.52 37.30 ind:imp:3s; +gardant garder ver 338.40 257.50 2.06 9.46 par:pre; +garde_barrière garde_barrière nom m s 0.00 0.95 0.00 0.95 +garde_boue garde_boue nom m 0.05 1.08 0.05 1.08 +garde_côte garde_côte nom m s 1.90 0.14 0.54 0.07 +garde_côte garde_côte nom m p 1.90 0.14 1.36 0.07 +garde_champêtre garde_champêtre nom m s 0.00 0.54 0.00 0.47 +garde_chasse garde_chasse nom m s 0.22 1.42 0.22 1.42 +garde_chiourme garde_chiourme nom m s 0.11 0.74 0.06 0.54 +garde_corps garde_corps nom m 0.01 0.34 0.01 0.34 +garde_feu garde_feu nom m 0.05 0.00 0.05 0.00 +garde_forestier garde_forestier nom s 0.16 0.14 0.16 0.14 +garde_fou garde_fou nom m s 0.30 1.89 0.25 1.49 +garde_fou garde_fou nom m p 0.30 1.89 0.05 0.41 +garde_frontière garde_frontière nom m s 0.16 0.00 0.16 0.00 +garde_malade garde_malade nom s 0.44 1.15 0.44 1.15 +garde_manger garde_manger nom m 0.68 2.77 0.68 2.77 +garde_meuble garde_meuble nom m 0.34 0.20 0.34 0.20 +garde_meubles garde_meubles nom m 0.16 0.34 0.16 0.34 +garde_à_vous garde_à_vous nom m 0.00 5.88 0.00 5.88 +garde_pêche garde_pêche nom m s 0.01 0.07 0.01 0.07 +garde_robe garde_robe nom f s 2.19 2.77 2.17 2.70 +garde_robe garde_robe nom f p 2.19 2.77 0.03 0.07 +garde_voie garde_voie nom m s 0.00 0.07 0.00 0.07 +garde_vue garde_vue nom m 0.25 0.00 0.25 0.00 +garde garder ver 338.40 257.50 93.72 37.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +garden_party garden_party nom f s 0.22 0.34 0.22 0.34 +gardent garder ver 338.40 257.50 6.04 6.35 ind:pre:3p;sub:pre:3p; +garder garder ver 338.40 257.50 123.07 68.31 inf;;inf;;inf;;inf;; +gardera garder ver 338.40 257.50 3.31 2.30 ind:fut:3s; +garderai garder ver 338.40 257.50 5.83 1.89 ind:fut:1s; +garderaient garder ver 338.40 257.50 0.15 0.61 cnd:pre:3p; +garderais garder ver 338.40 257.50 1.19 0.95 cnd:pre:1s;cnd:pre:2s; +garderait garder ver 338.40 257.50 0.74 2.97 cnd:pre:3s; +garderas garder ver 338.40 257.50 1.42 0.61 ind:fut:2s; +garderez garder ver 338.40 257.50 0.72 0.74 ind:fut:2p; +garderie garderie nom f s 1.96 0.61 1.67 0.47 +garderies garderie nom f p 1.96 0.61 0.29 0.14 +garderiez garder ver 338.40 257.50 0.45 0.07 cnd:pre:2p; +garderions garder ver 338.40 257.50 0.03 0.14 cnd:pre:1p; +garderons garder ver 338.40 257.50 1.30 0.41 ind:fut:1p; +garderont garder ver 338.40 257.50 1.05 0.47 ind:fut:3p; +gardes_barrière gardes_barrière nom p 0.00 0.14 0.00 0.14 +gardes_côte gardes_côte nom m p 0.31 0.00 0.31 0.00 +garde_champêtre garde_champêtre nom m p 0.00 0.54 0.00 0.07 +gardes_chasse gardes_chasse nom m s 0.03 0.41 0.03 0.41 +garde_chiourme garde_chiourme nom m p 0.11 0.74 0.04 0.20 +gardes_chiourme gardes_chiourme nom p 0.03 0.14 0.03 0.14 +garde_française garde_française nom m p 0.00 0.07 0.00 0.07 +gardes_frontière gardes_frontière nom m p 0.03 0.41 0.03 0.41 +gardes_voie gardes_voie nom m p 0.00 0.07 0.00 0.07 +gardes garde nom p 104.47 112.09 27.70 22.23 +gardeur gardeur nom m s 0.00 0.34 0.00 0.07 +gardeurs gardeur nom m p 0.00 0.34 0.00 0.07 +gardeuse gardeur nom f s 0.00 0.34 0.00 0.14 +gardeuses gardeur nom f p 0.00 0.34 0.00 0.07 +gardez garder ver 338.40 257.50 39.17 5.20 imp:pre:2p;ind:pre:2p; +gardian gardian nom m s 0.00 0.20 0.00 0.14 +gardians gardian nom m p 0.00 0.20 0.00 0.07 +gardien_chef gardien_chef nom m s 0.22 0.27 0.22 0.27 +gardien gardien nom m s 31.56 31.96 18.55 18.45 +gardiennage gardiennage nom m s 0.05 0.27 0.05 0.27 +gardiennait gardienner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +gardienne gardien nom f s 31.56 31.96 2.81 3.31 +gardiennes gardienne nom f p 0.36 0.00 0.36 0.00 +gardiens gardien nom m p 31.56 31.96 10.20 9.59 +gardiez garder ver 338.40 257.50 1.23 0.61 ind:imp:2p; +gardions garder ver 338.40 257.50 0.56 0.88 ind:imp:1p; +gardois gardois adj m s 0.00 0.07 0.00 0.07 +gardâmes garder ver 338.40 257.50 0.00 0.20 ind:pas:1p; +gardon gardon nom m s 1.06 1.08 0.44 0.41 +gardons garder ver 338.40 257.50 4.58 2.03 imp:pre:1p;ind:pre:1p; +gardât garder ver 338.40 257.50 0.00 0.68 sub:imp:3s; +gardèrent garder ver 338.40 257.50 0.12 0.61 ind:pas:3p; +gardé garder ver m s 338.40 257.50 24.98 36.89 imp:pre:2s;par:pas;par:pas; +gardée garder ver f s 338.40 257.50 3.87 4.93 par:pas; +gardées garder ver f p 338.40 257.50 1.30 0.88 par:pas; +gardénal gardénal nom m s 0.00 1.08 0.00 1.08 +gardénia gardénia nom m s 0.27 0.54 0.11 0.14 +gardénias gardénia nom m p 0.27 0.54 0.16 0.41 +gardés garder ver m p 338.40 257.50 1.50 2.77 par:pas; +gare gare ono 10.79 2.84 10.79 2.84 +garenne garenne nom s 0.66 1.01 0.64 0.68 +garennes garenne nom f p 0.66 1.01 0.02 0.34 +garent garer ver 27.18 18.04 0.14 0.14 ind:pre:3p; +garer garer ver 27.18 18.04 6.70 3.24 inf; +garerai garer ver 27.18 18.04 0.17 0.00 ind:fut:1s; +garerais garer ver 27.18 18.04 0.01 0.00 cnd:pre:1s; +garerait garer ver 27.18 18.04 0.01 0.07 cnd:pre:3s; +gareront garer ver 27.18 18.04 0.01 0.00 ind:fut:3p; +gares gare nom_sup f p 42.15 84.53 1.87 5.95 +garez garer ver 27.18 18.04 2.48 0.27 imp:pre:2p;ind:pre:2p; +gargamelle gargamelle nom f s 0.00 0.07 0.00 0.07 +gargantua gargantua nom m s 0.01 0.00 0.01 0.00 +gargantuesque gargantuesque adj s 0.38 0.41 0.33 0.34 +gargantuesques gargantuesque adj m p 0.38 0.41 0.05 0.07 +gargarisa gargariser ver 0.41 0.74 0.00 0.07 ind:pas:3s; +gargarisaient gargariser ver 0.41 0.74 0.00 0.07 ind:imp:3p; +gargarisait gargariser ver 0.41 0.74 0.01 0.14 ind:imp:3s; +gargarisant gargariser ver 0.41 0.74 0.00 0.14 par:pre; +gargarise gargariser ver 0.41 0.74 0.20 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gargarisent gargariser ver 0.41 0.74 0.03 0.14 ind:pre:3p; +gargariser gargariser ver 0.41 0.74 0.15 0.07 inf; +gargarisme gargarisme nom m s 0.06 0.34 0.02 0.20 +gargarismes gargarisme nom m p 0.06 0.34 0.04 0.14 +gargarisé gargariser ver m s 0.41 0.74 0.01 0.00 par:pas; +gargote gargote nom f s 0.47 1.55 0.26 0.95 +gargotes gargote nom f p 0.47 1.55 0.21 0.61 +gargotier gargotier nom m s 0.14 0.20 0.14 0.07 +gargotiers gargotier nom m p 0.14 0.20 0.00 0.14 +gargouilla gargouiller ver 0.55 2.36 0.00 0.14 ind:pas:3s; +gargouillaient gargouiller ver 0.55 2.36 0.00 0.07 ind:imp:3p; +gargouillait gargouiller ver 0.55 2.36 0.03 0.54 ind:imp:3s; +gargouillant gargouiller ver 0.55 2.36 0.01 0.14 par:pre; +gargouillante gargouillant adj f s 0.01 0.14 0.00 0.07 +gargouille gargouiller ver 0.55 2.36 0.42 0.81 ind:pre:1s;ind:pre:3s; +gargouillement gargouillement nom m s 0.04 1.15 0.02 0.61 +gargouillements gargouillement nom m p 0.04 1.15 0.02 0.54 +gargouillent gargouiller ver 0.55 2.36 0.03 0.14 ind:pre:3p; +gargouiller gargouiller ver 0.55 2.36 0.05 0.47 inf; +gargouilles gargouille nom f p 0.73 1.82 0.41 0.74 +gargouillette gargouillette nom f s 0.00 0.07 0.00 0.07 +gargouillis gargouillis nom m 0.23 2.50 0.23 2.50 +gargouillé gargouiller ver m s 0.55 2.36 0.01 0.07 par:pas; +gargoulette gargoulette nom f s 0.00 0.47 0.00 0.41 +gargoulettes gargoulette nom f p 0.00 0.47 0.00 0.07 +gargousses gargousse nom f p 0.00 0.07 0.00 0.07 +gari gari nom m s 0.00 0.14 0.00 0.14 +garibaldien garibaldien adj m s 0.14 0.07 0.14 0.00 +garibaldiens garibaldien nom m p 0.40 0.00 0.40 0.00 +garions garer ver 27.18 18.04 0.01 0.07 ind:imp:1p; +garnement garnement nom m s 1.94 2.64 1.42 1.22 +garnements garnement nom m p 1.94 2.64 0.52 1.42 +garni garnir ver m s 1.04 16.42 0.26 3.99 par:pas; +garnie garnir ver f s 1.04 16.42 0.34 4.19 par:pas; +garnies garnir ver f p 1.04 16.42 0.07 2.30 par:pas; +garnir garnir ver 1.04 16.42 0.16 1.89 inf; +garnirent garnir ver 1.04 16.42 0.00 0.07 ind:pas:3p; +garniront garnir ver 1.04 16.42 0.00 0.07 ind:fut:3p; +garnis garni adj m p 0.66 6.01 0.21 1.96 +garnison garnison nom f s 3.23 11.35 3.13 8.38 +garnisons garnison nom f p 3.23 11.35 0.10 2.97 +garnissage garnissage nom m s 0.01 0.00 0.01 0.00 +garnissaient garnir ver 1.04 16.42 0.00 0.68 ind:imp:3p; +garnissais garnir ver 1.04 16.42 0.01 0.07 ind:imp:1s; +garnissait garnir ver 1.04 16.42 0.00 0.95 ind:imp:3s; +garnissant garnir ver 1.04 16.42 0.00 0.34 par:pre; +garnissent garnir ver 1.04 16.42 0.01 0.34 ind:pre:3p; +garnissez garnir ver 1.04 16.42 0.00 0.07 imp:pre:2p; +garnit garnir ver 1.04 16.42 0.02 0.54 ind:pre:3s;ind:pas:3s; +garniture garniture nom f s 1.03 2.30 0.80 1.28 +garnitures garniture nom f p 1.03 2.30 0.23 1.01 +garno garno nom m s 0.00 0.07 0.00 0.07 +garons garer ver 27.18 18.04 0.04 0.07 imp:pre:1p;ind:pre:1p; +garou garou nom m s 0.03 0.14 0.03 0.14 +garrick garrick nom m s 0.00 0.07 0.00 0.07 +garrigue garrigue nom f s 0.54 1.96 0.54 1.49 +garrigues garrigue nom f p 0.54 1.96 0.00 0.47 +garrot garrot nom m s 1.58 2.43 1.55 2.30 +garrots garrot nom m p 1.58 2.43 0.03 0.14 +garrottaient garrotter ver 0.35 0.68 0.00 0.07 ind:imp:3p; +garrotte garrotter ver 0.35 0.68 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +garrottent garrotter ver 0.35 0.68 0.01 0.00 ind:pre:3p; +garrotter garrotter ver 0.35 0.68 0.01 0.07 inf; +garrotté garrotter ver m s 0.35 0.68 0.03 0.07 par:pas; +garrottée garrotter ver f s 0.35 0.68 0.01 0.14 par:pas; +garrottés garrotter ver m p 0.35 0.68 0.01 0.14 par:pas; +gars gars nom m 289.63 59.26 289.63 59.26 +garçon garçon nom m s 251.51 262.50 188.41 186.96 +garçonne garçonne nom f s 0.00 0.88 0.00 0.88 +garçonnet garçonnet nom m s 0.27 3.65 0.21 2.50 +garçonnets garçonnet nom m p 0.27 3.65 0.06 1.15 +garçonnier garçonnier adj m s 0.02 1.15 0.00 0.20 +garçonniers garçonnier adj m p 0.02 1.15 0.00 0.14 +garçonnière garçonnière nom f s 1.51 1.22 1.51 1.08 +garçonnières garçonnière nom f p 1.51 1.22 0.00 0.14 +garçons garçon nom m p 251.51 262.50 63.09 75.54 +garèrent garer ver 27.18 18.04 0.00 0.14 ind:pas:3p; +garé garer ver m s 27.18 18.04 4.28 3.45 par:pas; +garée garer ver f s 27.18 18.04 4.08 3.72 par:pas; +garées garer ver f p 27.18 18.04 0.30 0.88 par:pas; +garés garer ver m p 27.18 18.04 0.78 0.81 par:pas; +gas_oil gas_oil nom m s 0.02 0.27 0.02 0.27 +gascon gascon adj m s 0.58 0.20 0.47 0.07 +gasconne gascon adj f s 0.58 0.20 0.10 0.07 +gascons gascon nom m p 0.44 0.27 0.06 0.20 +gasoil gasoil nom m s 0.49 0.34 0.49 0.34 +gaspacho gaspacho nom m s 1.38 0.00 1.38 0.00 +gaspard gaspard nom m s 0.54 1.01 0.54 0.20 +gaspards gaspard nom m p 0.54 1.01 0.00 0.81 +gaspilla gaspiller ver 11.50 6.08 0.01 0.00 ind:pas:3s; +gaspillage gaspillage nom m s 1.92 2.30 1.81 2.16 +gaspillages gaspillage nom m p 1.92 2.30 0.10 0.14 +gaspillaient gaspiller ver 11.50 6.08 0.00 0.14 ind:imp:3p; +gaspillait gaspiller ver 11.50 6.08 0.10 0.27 ind:imp:3s; +gaspillant gaspiller ver 11.50 6.08 0.04 0.20 par:pre; +gaspillasse gaspiller ver 11.50 6.08 0.00 0.07 sub:imp:1s; +gaspille gaspiller ver 11.50 6.08 2.57 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gaspillent gaspiller ver 11.50 6.08 0.41 0.00 ind:pre:3p; +gaspiller gaspiller ver 11.50 6.08 3.06 2.43 inf; +gaspillerai gaspiller ver 11.50 6.08 0.05 0.00 ind:fut:1s; +gaspilleraient gaspiller ver 11.50 6.08 0.00 0.07 cnd:pre:3p; +gaspillerais gaspiller ver 11.50 6.08 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +gaspillerez gaspiller ver 11.50 6.08 0.00 0.07 ind:fut:2p; +gaspilles gaspiller ver 11.50 6.08 0.82 0.14 ind:pre:2s; +gaspilleur gaspilleur adj m s 0.02 0.00 0.01 0.00 +gaspilleurs gaspilleur nom m p 0.02 0.20 0.02 0.14 +gaspilleuse gaspilleur adj f s 0.02 0.00 0.01 0.00 +gaspilleuses gaspilleur nom f p 0.02 0.20 0.00 0.07 +gaspillez gaspiller ver 11.50 6.08 1.32 0.20 imp:pre:2p;ind:pre:2p; +gaspillons gaspiller ver 11.50 6.08 0.26 0.14 imp:pre:1p;ind:pre:1p; +gaspillât gaspiller ver 11.50 6.08 0.00 0.07 sub:imp:3s; +gaspillé gaspiller ver m s 11.50 6.08 1.79 0.81 par:pas; +gaspillée gaspiller ver f s 11.50 6.08 0.48 0.34 par:pas; +gaspillées gaspiller ver f p 11.50 6.08 0.12 0.20 par:pas; +gaspillés gaspiller ver m p 11.50 6.08 0.28 0.41 par:pas; +gaster gaster nom m s 0.01 0.14 0.01 0.14 +gastralgie gastralgie nom f s 0.01 0.07 0.01 0.00 +gastralgies gastralgie nom f p 0.01 0.07 0.00 0.07 +gastrectomie gastrectomie nom f s 0.01 0.00 0.01 0.00 +gastrique gastrique adj s 1.35 0.61 1.13 0.34 +gastriques gastrique adj p 1.35 0.61 0.22 0.27 +gastrite gastrite nom f s 0.21 0.07 0.20 0.00 +gastrites gastrite nom f p 0.21 0.07 0.01 0.07 +gastro_entérite gastro_entérite nom f s 0.04 0.07 0.04 0.07 +gastro_entérologue gastro_entérologue nom s 0.04 0.14 0.04 0.07 +gastro_entérologue gastro_entérologue nom p 0.04 0.14 0.00 0.07 +gastro_intestinal gastro_intestinal adj m s 0.12 0.00 0.04 0.00 +gastro_intestinal gastro_intestinal adj f s 0.12 0.00 0.02 0.00 +gastro_intestinal gastro_intestinal adj m p 0.12 0.00 0.05 0.00 +gastro gastro nom s 0.66 0.07 0.66 0.07 +gastroentérologue gastroentérologue nom s 0.02 0.00 0.02 0.00 +gastrolâtre gastrolâtre adj m s 0.00 0.07 0.00 0.07 +gastrolâtre gastrolâtre nom s 0.00 0.07 0.00 0.07 +gastronome gastronome nom s 0.07 0.81 0.04 0.68 +gastronomes gastronome nom p 0.07 0.81 0.04 0.14 +gastronomie gastronomie nom f s 0.58 0.61 0.58 0.61 +gastronomique gastronomique adj s 0.48 1.96 0.40 0.88 +gastronomiques gastronomique adj p 0.48 1.96 0.08 1.08 +gastrula gastrula nom f s 0.01 0.00 0.01 0.00 +gastéropode gastéropode nom m s 0.02 0.14 0.00 0.07 +gastéropodes gastéropode nom m p 0.02 0.14 0.02 0.07 +gatte gatte nom f s 0.02 0.00 0.02 0.00 +gauche gauche nom s 71.78 134.59 71.66 133.78 +gauchement gauchement adv 0.10 3.45 0.10 3.45 +gaucher gaucher adj m s 2.29 0.81 1.93 0.20 +gaucherie gaucherie nom f s 0.12 2.50 0.12 2.43 +gaucheries gaucherie nom f p 0.12 2.50 0.00 0.07 +gauchers gaucher nom m p 1.10 0.27 0.28 0.14 +gauches gauche adj p 45.88 89.59 0.36 1.55 +gauchi gauchir ver m s 0.02 0.88 0.01 0.00 par:pas; +gauchie gauchir ver f s 0.02 0.88 0.01 0.34 par:pas; +gauchir gauchir ver 0.02 0.88 0.00 0.34 inf; +gauchis gauchir ver m p 0.02 0.88 0.00 0.07 par:pas; +gauchisante gauchisant adj f s 0.00 0.14 0.00 0.07 +gauchisantes gauchisant adj f p 0.00 0.14 0.00 0.07 +gauchisme gauchisme nom m s 0.00 0.20 0.00 0.14 +gauchismes gauchisme nom m p 0.00 0.20 0.00 0.07 +gauchissaient gauchir ver 0.02 0.88 0.00 0.07 ind:imp:3p; +gauchissait gauchir ver 0.02 0.88 0.00 0.07 ind:imp:3s; +gauchissement gauchissement nom m s 0.00 0.07 0.00 0.07 +gauchiste gauchiste adj s 1.02 1.08 0.79 0.74 +gauchistes gauchiste adj p 1.02 1.08 0.23 0.34 +gaucho gaucho nom m s 0.35 1.28 0.28 0.27 +gauchos gaucho nom m p 0.35 1.28 0.07 1.01 +gauchère gaucher adj f s 2.29 0.81 0.18 0.61 +gaudriole gaudriole nom f s 0.04 1.01 0.02 0.68 +gaudrioles gaudriole nom f p 0.04 1.01 0.02 0.34 +gaufre gaufre nom f s 3.03 1.96 0.58 0.68 +gaufres gaufre nom f p 3.03 1.96 2.44 1.28 +gaufrette gaufrette nom f s 0.08 0.88 0.01 0.27 +gaufrettes gaufrette nom f p 0.08 0.88 0.07 0.61 +gaufrier gaufrier nom m s 0.17 0.27 0.17 0.27 +gaufré gaufré adj m s 0.04 0.95 0.04 0.47 +gaufrée gaufrer ver f s 0.04 0.81 0.01 0.07 par:pas; +gaufrées gaufré adj f p 0.04 0.95 0.00 0.14 +gaufrés gaufrer ver m p 0.04 0.81 0.00 0.20 par:pas; +gaulant gauler ver 0.75 1.28 0.00 0.07 par:pre; +gauldo gauldo nom f s 0.00 0.14 0.00 0.07 +gauldos gauldo nom f p 0.00 0.14 0.00 0.07 +gaule gaule nom f s 0.85 2.91 0.75 1.89 +gauleiter gauleiter nom m s 0.12 0.68 0.12 0.68 +gauler gauler ver 0.75 1.28 0.35 0.95 inf; +gaulerais gauler ver 0.75 1.28 0.01 0.00 cnd:pre:1s; +gaulerait gauler ver 0.75 1.28 0.00 0.07 cnd:pre:3s; +gaules gaule nom f p 0.85 2.91 0.10 1.01 +gaélique gaélique nom s 0.17 0.14 0.17 0.14 +gaulis gaulis nom m 0.00 0.34 0.00 0.34 +gaulle gaulle nom f s 0.00 0.07 0.00 0.07 +gaullisme gaullisme nom m s 0.00 1.49 0.00 1.49 +gaulliste gaulliste adj s 0.01 2.43 0.01 1.62 +gaullistes gaulliste nom p 0.00 4.05 0.00 3.58 +gaulois gaulois nom m 2.48 8.85 2.47 2.64 +gauloise gaulois adj f s 1.36 3.04 0.17 1.28 +gauloisement gauloisement adv 0.00 0.07 0.00 0.07 +gauloiseries gauloiserie nom f p 0.00 0.07 0.00 0.07 +gauloises gaulois adj f p 1.36 3.04 0.19 0.47 +gaulèrent gauler ver 0.75 1.28 0.00 0.07 ind:pas:3p; +gaulthérie gaulthérie nom f s 0.01 0.00 0.01 0.00 +gaulé gauler ver m s 0.75 1.28 0.20 0.14 par:pas; +gaulée gauler ver f s 0.75 1.28 0.19 0.00 par:pas; +gaupe gaupe nom f s 0.00 0.07 0.00 0.07 +gauss gauss nom m 0.01 0.00 0.01 0.00 +gaussaient gausser ver 0.15 2.64 0.00 0.68 ind:imp:3p; +gaussait gausser ver 0.15 2.64 0.01 0.61 ind:imp:3s; +gaussant gausser ver 0.15 2.64 0.01 0.14 par:pre; +gausse gausser ver 0.15 2.64 0.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gaussent gausser ver 0.15 2.64 0.03 0.07 ind:pre:3p; +gausser gausser ver 0.15 2.64 0.02 0.41 inf; +gausserai gausser ver 0.15 2.64 0.00 0.07 ind:fut:1s; +gausserait gausser ver 0.15 2.64 0.00 0.07 cnd:pre:3s; +gaussez gausser ver 0.15 2.64 0.01 0.00 imp:pre:2p; +gaussèrent gausser ver 0.15 2.64 0.00 0.14 ind:pas:3p; +gaussé gausser ver m s 0.15 2.64 0.00 0.14 par:pas; +gaussée gausser ver f s 0.15 2.64 0.00 0.07 par:pas; +gava gaver ver 4.19 9.39 0.00 0.07 ind:pas:3s; +gavage gavage nom m s 0.06 0.54 0.06 0.54 +gavai gaver ver 4.19 9.39 0.00 0.07 ind:pas:1s; +gavaient gaver ver 4.19 9.39 0.03 0.34 ind:imp:3p; +gavais gaver ver 4.19 9.39 0.02 0.07 ind:imp:1s; +gavait gaver ver 4.19 9.39 0.23 0.88 ind:imp:3s; +gavant gaver ver 4.19 9.39 0.05 0.54 par:pre; +gave gaver ver 4.19 9.39 1.22 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gavent gaver ver 4.19 9.39 0.19 0.34 ind:pre:3p; +gaver gaver ver 4.19 9.39 0.50 1.55 inf; +gavera gaver ver 4.19 9.39 0.01 0.07 ind:fut:3s; +gaveraient gaver ver 4.19 9.39 0.01 0.07 cnd:pre:3p; +gaves gaver ver 4.19 9.39 0.11 0.00 ind:pre:2s; +gavez gaver ver 4.19 9.39 0.30 0.07 imp:pre:2p;ind:pre:2p; +gavial gavial nom m s 0.00 0.07 0.00 0.07 +gaviot gaviot nom m s 0.00 0.20 0.00 0.20 +gavons gaver ver 4.19 9.39 0.03 0.07 imp:pre:1p;ind:pre:1p;;imp:pre:1p; +gavroche gavroche nom m s 0.01 0.34 0.01 0.27 +gavroches gavroche nom m p 0.01 0.34 0.00 0.07 +gavé gaver ver m s 4.19 9.39 0.61 1.76 par:pas; +gavée gaver ver f s 4.19 9.39 0.43 1.08 par:pas; +gavées gaver ver f p 4.19 9.39 0.01 0.34 par:pas; +gavés gaver ver m p 4.19 9.39 0.43 1.08 par:pas; +gay gay adj m s 20.33 0.34 18.27 0.34 +gayac gayac nom m s 0.00 0.07 0.00 0.07 +gays gay nom m p 7.60 0.14 3.94 0.07 +gaz gaz nom m 36.33 28.65 36.33 28.65 +gazage gazage nom m s 0.02 0.07 0.02 0.07 +gazait gazer ver 5.39 1.82 0.02 0.41 ind:imp:3s; +gaze gazer ver 5.39 1.82 3.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gazelle gazelle nom f s 2.39 3.92 1.98 2.77 +gazelles gazelle nom f p 2.39 3.92 0.40 1.15 +gazer gazer ver 5.39 1.82 0.68 0.20 inf; +gazera gazer ver 5.39 1.82 0.11 0.00 ind:fut:3s; +gazerait gazer ver 5.39 1.82 0.00 0.07 cnd:pre:3s; +gazes gaze nom f p 0.93 3.85 0.11 0.34 +gazette gazette nom f s 0.42 2.43 0.26 1.01 +gazettes gazette nom f p 0.42 2.43 0.16 1.42 +gazeuse gazeux adj f s 2.26 1.89 1.42 1.35 +gazeuses gazeux adj f p 2.26 1.89 0.48 0.27 +gazeux gazeux adj m 2.26 1.89 0.37 0.27 +gazez gazer ver 5.39 1.82 0.01 0.00 ind:pre:2p; +gazier gazier nom m s 0.03 1.08 0.02 0.68 +gaziers gazier nom m p 0.03 1.08 0.01 0.41 +gazinière gazinière nom f s 0.14 0.14 0.01 0.14 +gazinières gazinière nom f p 0.14 0.14 0.12 0.00 +gazoduc gazoduc nom m s 0.22 0.00 0.22 0.00 +gazogène gazogène nom m s 0.00 1.62 0.00 1.49 +gazogènes gazogène nom m p 0.00 1.62 0.00 0.14 +gazole gazole nom m s 0.22 0.00 0.22 0.00 +gazoline gazoline nom f s 0.01 0.14 0.01 0.14 +gazomètre gazomètre nom m s 0.02 0.07 0.02 0.07 +gazométrie gazométrie nom f s 0.02 0.00 0.02 0.00 +gazon gazon nom m s 3.81 7.77 3.58 6.96 +gazonné gazonné adj m s 0.05 0.27 0.00 0.14 +gazonnée gazonné adj f s 0.05 0.27 0.05 0.14 +gazons gazon nom m p 3.81 7.77 0.22 0.81 +gazouilla gazouiller ver 0.79 0.95 0.00 0.07 ind:pas:3s; +gazouillaient gazouiller ver 0.79 0.95 0.12 0.07 ind:imp:3p; +gazouillait gazouiller ver 0.79 0.95 0.03 0.20 ind:imp:3s; +gazouillant gazouiller ver 0.79 0.95 0.20 0.20 par:pre; +gazouillante gazouillant adj f s 0.14 0.27 0.00 0.14 +gazouillants gazouillant adj m p 0.14 0.27 0.00 0.07 +gazouille gazouiller ver 0.79 0.95 0.13 0.14 imp:pre:2s;ind:pre:3s; +gazouillement gazouillement nom m s 0.13 0.20 0.12 0.14 +gazouillements gazouillement nom m p 0.13 0.20 0.01 0.07 +gazouillent gazouiller ver 0.79 0.95 0.17 0.14 ind:pre:3p; +gazouiller gazouiller ver 0.79 0.95 0.11 0.14 inf; +gazouilles gazouiller ver 0.79 0.95 0.03 0.00 ind:pre:2s; +gazouilleurs gazouilleur adj m p 0.00 0.07 0.00 0.07 +gazouillis gazouillis nom m 0.30 1.62 0.30 1.62 +gazpacho gazpacho nom m s 0.22 0.00 0.22 0.00 +gazé gazé adj m s 0.32 0.20 0.17 0.07 +gazée gazer ver f s 5.39 1.82 0.01 0.07 par:pas; +gazées gazer ver f p 5.39 1.82 0.02 0.00 par:pas; +gazéifier gazéifier ver 0.02 0.00 0.01 0.00 inf; +gazéifiée gazéifier ver f s 0.02 0.00 0.01 0.00 par:pas; +gazés gazer ver m p 5.39 1.82 0.75 0.07 par:pas; +geôle geôle nom f s 0.27 2.36 0.09 1.89 +geôles geôle nom f p 0.27 2.36 0.18 0.47 +geôlier geôlier nom m s 1.60 5.00 1.05 2.97 +geôliers geôlier nom m p 1.60 5.00 0.54 1.55 +geôlière geôlier nom f s 1.60 5.00 0.01 0.27 +geôlières geôlier nom f p 1.60 5.00 0.00 0.20 +geai geai nom m s 0.27 1.62 0.24 0.81 +geais geai nom m p 0.27 1.62 0.03 0.81 +gecko gecko nom m s 0.32 0.00 0.26 0.00 +geckos gecko nom m p 0.32 0.00 0.07 0.00 +geez geez nom m s 0.13 0.00 0.13 0.00 +geignaient geindre ver 0.59 5.68 0.00 0.07 ind:imp:3p; +geignais geindre ver 0.59 5.68 0.02 0.00 ind:imp:2s; +geignait geindre ver 0.59 5.68 0.02 1.35 ind:imp:3s; +geignant geignant adj m s 0.10 0.74 0.10 0.27 +geignante geignant adj f s 0.10 0.74 0.00 0.34 +geignantes geignant adj f p 0.10 0.74 0.00 0.14 +geignard geignard nom m s 0.22 0.34 0.16 0.20 +geignarde geignard adj f s 0.22 2.43 0.10 1.01 +geignardes geignard adj f p 0.22 2.43 0.00 0.47 +geignardises geignardise nom f p 0.00 0.07 0.00 0.07 +geignards geignard adj m p 0.22 2.43 0.04 0.14 +geignement geignement nom m s 0.11 0.61 0.01 0.27 +geignements geignement nom m p 0.11 0.61 0.10 0.34 +geignent geindre ver 0.59 5.68 0.04 0.14 ind:pre:3p; +geignez geindre ver 0.59 5.68 0.00 0.14 imp:pre:2p;ind:pre:2p; +geignit geindre ver 0.59 5.68 0.00 0.27 ind:pas:3s; +geindre geindre nom m s 1.41 1.96 1.41 1.96 +geins geindre ver 0.59 5.68 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +geint geindre ver m s 0.59 5.68 0.14 1.35 ind:pre:3s;par:pas; +geisha geisha nom f s 2.60 0.47 2.23 0.34 +geishas geisha nom f p 2.60 0.47 0.37 0.14 +gel gel nom m s 4.75 6.69 4.61 6.22 +gela geler ver 23.41 17.03 0.00 0.20 ind:pas:3s; +gelaient geler ver 23.41 17.03 0.02 0.47 ind:imp:3p; +gelais geler ver 23.41 17.03 0.07 0.07 ind:imp:1s;ind:imp:2s; +gelait geler ver 23.41 17.03 0.91 1.69 ind:imp:3s; +gelant geler ver 23.41 17.03 0.17 0.27 par:pre; +geler geler ver 23.41 17.03 3.18 2.09 inf; +gelez geler ver 23.41 17.03 0.19 0.14 imp:pre:2p;ind:pre:2p; +geline geline nom f s 0.01 0.00 0.01 0.00 +gelinotte gelinotte nom f s 0.00 0.07 0.00 0.07 +gelons geler ver 23.41 17.03 0.03 0.00 imp:pre:1p;ind:pre:1p; +gelât geler ver 23.41 17.03 0.00 0.07 sub:imp:3s; +gels gel nom m p 4.75 6.69 0.15 0.47 +gelé geler ver m s 23.41 17.03 5.20 2.43 par:pas; +gelée gelée nom f s 4.31 7.57 3.92 6.42 +gelées geler ver f p 23.41 17.03 0.71 2.09 par:pas; +gelure gelure nom f s 0.15 0.34 0.02 0.27 +gelures gelure nom f p 0.15 0.34 0.13 0.07 +gelés geler ver m p 23.41 17.03 0.96 0.68 par:pas; +gemme gemme nom f s 0.30 0.88 0.12 0.41 +gemmes gemme nom f p 0.30 0.88 0.19 0.47 +gemmologie gemmologie nom f s 0.01 0.00 0.01 0.00 +gencive gencive nom f s 1.35 4.26 0.18 0.81 +gencives gencive nom f p 1.35 4.26 1.17 3.45 +gendarme gendarme nom m s 13.67 43.72 5.53 16.15 +gendarmer gendarmer ver 0.01 0.00 0.01 0.00 inf; +gendarmerie gendarmerie nom f s 4.46 9.32 4.44 8.78 +gendarmeries gendarmerie nom f p 4.46 9.32 0.01 0.54 +gendarmes gendarme nom m p 13.67 43.72 8.14 27.57 +gendelettres gendelettre nom m p 0.00 0.07 0.00 0.07 +gendre gendre nom m s 5.71 8.11 5.71 7.50 +gendres gendre nom m p 5.71 8.11 0.00 0.61 +genet genet nom m s 0.01 0.00 0.01 0.00 +genevois genevois adj m 0.00 0.54 0.00 0.27 +genevoises genevois adj f p 0.00 0.54 0.00 0.27 +gengis_khan gengis_khan nom m s 0.00 0.14 0.00 0.14 +gengiskhanide gengiskhanide adj s 0.00 0.07 0.00 0.07 +genièvre genièvre nom m s 0.63 2.16 0.63 2.16 +genou genou nom m s 54.24 127.91 11.43 23.92 +genouillère genouillère nom f s 0.19 0.20 0.01 0.00 +genouillères genouillère nom f p 0.19 0.20 0.17 0.20 +genoux genou nom m p 54.24 127.91 42.82 103.99 +genre genre nom m s 221.51 157.91 219.66 155.20 +genres genre nom m p 221.51 157.91 1.85 2.70 +genreux genreux adj m 0.00 0.07 0.00 0.07 +gens gens nom p 594.29 409.39 594.29 409.39 +gent gent nom f s 0.49 1.15 0.40 1.15 +gentamicine gentamicine nom f s 0.04 0.00 0.04 0.00 +gente gent adj f s 1.56 1.08 1.39 0.41 +gentes gent adj f p 1.56 1.08 0.18 0.68 +genèse genèse nom f s 0.15 1.01 0.15 1.01 +gentiane gentiane nom f s 0.15 0.95 0.14 0.61 +gentianes gentiane nom f p 0.15 0.95 0.01 0.34 +gentil gentil adj m s 192.64 64.86 134.11 37.36 +gentilhomme gentilhomme nom m s 6.89 3.51 5.43 2.43 +gentilhommière gentilhommier nom f s 0.01 0.68 0.00 0.41 +gentilhommières gentilhommier nom f p 0.01 0.68 0.01 0.27 +gentilice gentilice adj m s 0.00 0.07 0.00 0.07 +gentille gentil adj f s 192.64 64.86 41.44 18.31 +gentilles gentil adj f p 192.64 64.86 3.12 2.77 +gentillesse gentillesse nom f s 7.56 17.50 6.96 15.27 +gentillesses gentillesse nom f p 7.56 17.50 0.60 2.23 +gentillet gentillet adj m s 0.17 0.47 0.04 0.34 +gentillets gentillet adj m p 0.17 0.47 0.11 0.07 +gentillette gentillet adj f s 0.17 0.47 0.02 0.07 +gentils gentil adj m p 192.64 64.86 13.98 6.42 +gentilshommes gentilhomme nom m p 6.89 3.51 1.47 1.08 +gentiment gentiment adv 11.32 21.76 11.32 21.76 +gentleman_farmer gentleman_farmer nom m s 0.14 0.27 0.14 0.20 +gentleman gentleman nom m s 13.08 4.19 10.31 2.97 +gentleman_farmer gentleman_farmer nom m p 0.14 0.27 0.00 0.07 +gentlemen gentleman nom m p 13.08 4.19 2.77 1.22 +gentry gentry nom f s 0.28 0.00 0.28 0.00 +gents gent nom f p 0.49 1.15 0.09 0.00 +genêt genêt nom m s 0.25 5.34 0.23 1.49 +genêtière genêtière nom f s 0.00 0.07 0.00 0.07 +genêts genêt nom m p 0.25 5.34 0.01 3.85 +genévrier genévrier nom m s 0.29 0.88 0.27 0.27 +genévriers genévrier nom m p 0.29 0.88 0.02 0.61 +gerba gerber ver 8.28 4.66 0.13 0.07 ind:pas:3s; +gerbaient gerber ver 8.28 4.66 0.02 0.00 ind:imp:3p; +gerbais gerber ver 8.28 4.66 0.10 0.14 ind:imp:1s;ind:imp:2s; +gerbait gerber ver 8.28 4.66 0.06 0.20 ind:imp:3s; +gerbant gerber ver 8.28 4.66 0.17 0.14 par:pre; +gerbe gerbe nom f s 2.06 14.19 1.69 6.49 +gerbent gerber ver 8.28 4.66 0.05 0.07 ind:pre:3p; +gerber gerber ver 8.28 4.66 6.49 2.64 inf; +gerberais gerber ver 8.28 4.66 0.01 0.00 cnd:pre:1s; +gerberas gerbera nom m p 0.01 0.20 0.01 0.20 +gerbes gerbe nom f p 2.06 14.19 0.38 7.70 +gerbeuse gerbeur nom f s 0.04 0.14 0.04 0.07 +gerbeuses gerbeur nom f p 0.04 0.14 0.00 0.07 +gerbier gerbier nom m s 0.45 0.14 0.45 0.07 +gerbille gerbille nom f s 0.29 0.00 0.29 0.00 +gerbière gerbier nom f s 0.45 0.14 0.00 0.07 +gerboise gerboise nom f s 0.06 0.14 0.04 0.14 +gerboises gerboise nom f p 0.06 0.14 0.02 0.00 +gerbèrent gerber ver 8.28 4.66 0.01 0.00 ind:pas:3p; +gerbé gerber ver m s 8.28 4.66 0.82 0.68 par:pas; +gerbée gerber ver f s 8.28 4.66 0.00 0.07 par:pas; +gerbées gerber ver f p 8.28 4.66 0.00 0.07 par:pas; +gerbés gerber ver m p 8.28 4.66 0.00 0.07 par:pas; +gerce gercer ver 0.26 1.76 0.01 0.00 ind:pre:3s; +gercent gercer ver 0.26 1.76 0.00 0.14 ind:pre:3p; +gercer gercer ver 0.26 1.76 0.01 0.07 inf; +gerces gerce nom f p 0.00 0.07 0.00 0.07 +gercèrent gercer ver 0.26 1.76 0.00 0.07 ind:pas:3p; +gercé gercer ver m s 0.26 1.76 0.01 0.20 par:pas; +gercée gercer ver f s 0.26 1.76 0.00 0.27 par:pas; +gercées gercer ver f p 0.26 1.76 0.23 0.68 par:pas; +gercés gercer ver m p 0.26 1.76 0.00 0.27 par:pas; +gerfaut gerfaut nom m s 0.03 0.07 0.03 0.00 +gerfauts gerfaut nom m p 0.03 0.07 0.00 0.07 +germa germer ver 1.02 3.04 0.02 0.14 ind:pas:3s; +germaient germer ver 1.02 3.04 0.00 0.14 ind:imp:3p; +germain germain adj m s 1.38 2.23 0.91 0.88 +germaine germain adj f s 1.38 2.23 0.25 0.47 +germaines germain adj f p 1.38 2.23 0.01 0.27 +germains germain nom m p 0.45 1.15 0.45 1.15 +germait germer ver 1.02 3.04 0.10 0.27 ind:imp:3s; +germanique germanique adj s 1.18 4.73 0.69 3.45 +germaniques germanique adj p 1.18 4.73 0.49 1.28 +germanisation germanisation nom f s 0.01 0.00 0.01 0.00 +germanisme germanisme nom m s 0.00 0.20 0.00 0.20 +germaniste germaniste nom s 0.00 0.07 0.00 0.07 +germanité germanité nom f s 0.02 0.00 0.02 0.00 +germanium germanium nom m s 0.00 0.07 0.00 0.07 +germano_anglais germano_anglais adj f p 0.00 0.07 0.00 0.07 +germano_belge germano_belge adj f s 0.01 0.00 0.01 0.00 +germano_irlandais germano_irlandais adj m 0.03 0.00 0.03 0.00 +germano_russe germano_russe adj m s 0.00 0.27 0.00 0.27 +germano_soviétique germano_soviétique adj s 0.00 1.82 0.00 1.82 +germano germano adv 0.20 0.00 0.20 0.00 +germanophile germanophile nom s 0.00 0.07 0.00 0.07 +germanophilie germanophilie nom f s 0.00 0.07 0.00 0.07 +germanophone germanophone adj s 0.01 0.00 0.01 0.00 +germant germant adj m s 0.00 0.07 0.00 0.07 +germe germe nom m s 1.98 3.78 0.55 2.03 +germen germen nom m s 0.00 0.07 0.00 0.07 +germent germer ver 1.02 3.04 0.05 0.20 ind:pre:3p; +germer germer ver 1.02 3.04 0.23 1.01 inf; +germera germer ver 1.02 3.04 0.01 0.00 ind:fut:3s; +germerait germer ver 1.02 3.04 0.10 0.07 cnd:pre:3s; +germes germe nom m p 1.98 3.78 1.42 1.76 +germinal germinal nom m s 0.00 0.14 0.00 0.14 +germinale germinal adj f s 0.01 0.14 0.01 0.07 +germination germination nom f s 0.01 0.54 0.00 0.34 +germinations germination nom f p 0.01 0.54 0.01 0.20 +germé germer ver m s 1.02 3.04 0.39 0.47 par:pas; +germée germer ver f s 1.02 3.04 0.00 0.07 par:pas; +germées germé adj f p 0.02 0.27 0.00 0.20 +gerris gerris nom m 0.03 0.00 0.03 0.00 +gerçait gercer ver 0.26 1.76 0.00 0.07 ind:imp:3s; +gerçures gerçure nom f p 0.01 0.61 0.01 0.61 +gestapiste gestapiste nom m s 0.00 0.14 0.00 0.14 +gestapo gestapo nom f s 0.69 1.69 0.69 1.69 +gestation gestation nom f s 0.53 1.82 0.53 1.76 +gestations gestation nom f p 0.53 1.82 0.00 0.07 +geste geste nom s 40.78 271.08 31.41 172.03 +gestes geste nom p 40.78 271.08 9.36 99.05 +gesticula gesticuler ver 0.99 6.96 0.00 0.14 ind:pas:3s; +gesticulai gesticuler ver 0.99 6.96 0.00 0.07 ind:pas:1s; +gesticulaient gesticuler ver 0.99 6.96 0.00 0.54 ind:imp:3p; +gesticulais gesticuler ver 0.99 6.96 0.00 0.07 ind:imp:1s; +gesticulait gesticuler ver 0.99 6.96 0.02 1.62 ind:imp:3s; +gesticulant gesticuler ver 0.99 6.96 0.01 1.49 par:pre; +gesticulante gesticulant adj f s 0.01 1.42 0.00 0.47 +gesticulantes gesticulant adj f p 0.01 1.42 0.00 0.07 +gesticulants gesticulant adj m p 0.01 1.42 0.00 0.41 +gesticulateurs gesticulateur nom m p 0.01 0.07 0.01 0.07 +gesticulation gesticulation nom f s 0.21 1.69 0.15 0.88 +gesticulations gesticulation nom f p 0.21 1.69 0.06 0.81 +gesticulatoire gesticulatoire adj s 0.00 0.07 0.00 0.07 +gesticule gesticuler ver 0.99 6.96 0.35 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gesticulent gesticuler ver 0.99 6.96 0.00 0.68 ind:pre:3p; +gesticuler gesticuler ver 0.99 6.96 0.58 1.35 inf; +gesticules gesticuler ver 0.99 6.96 0.01 0.00 ind:pre:2s; +gesticulé gesticuler ver m s 0.99 6.96 0.01 0.07 par:pas; +gestion gestion nom f s 4.23 2.30 4.23 2.30 +gestionnaire gestionnaire nom s 0.15 0.14 0.08 0.07 +gestionnaires gestionnaire nom p 0.15 0.14 0.07 0.07 +gestuel gestuel adj m s 0.04 0.07 0.02 0.00 +gestuelle gestuel nom f s 0.07 0.14 0.07 0.14 +geyser geyser nom m s 0.22 1.01 0.17 0.61 +geysers geyser nom m p 0.22 1.01 0.05 0.41 +ghanéens ghanéen adj m p 0.00 0.07 0.00 0.07 +ghetto ghetto nom m s 5.42 3.24 5.00 2.77 +ghettos ghetto nom m p 5.42 3.24 0.41 0.47 +ghât ghât nom m s 0.00 0.27 0.00 0.27 +gi gi adv 1.18 0.14 1.18 0.14 +giaour giaour nom m s 0.10 0.54 0.10 0.34 +giaours giaour nom m p 0.10 0.54 0.00 0.20 +gibbeuse gibbeux adj f s 0.00 0.20 0.00 0.07 +gibbeux gibbeux adj m s 0.00 0.20 0.00 0.14 +gibbon gibbon nom m s 0.19 0.14 0.02 0.07 +gibbons gibbon nom m p 0.19 0.14 0.16 0.07 +gibbosité gibbosité nom f s 0.00 0.14 0.00 0.14 +gibecière gibecière nom f s 0.00 1.55 0.00 1.28 +gibecières gibecière nom f p 0.00 1.55 0.00 0.27 +gibelet gibelet nom m s 0.00 0.20 0.00 0.20 +gibelin gibelin nom m s 0.01 0.14 0.01 0.00 +gibeline gibelin adj f s 0.00 0.07 0.00 0.07 +gibelins gibelin nom m p 0.01 0.14 0.00 0.14 +gibelotte gibelotte nom f s 0.00 0.47 0.00 0.41 +gibelottes gibelotte nom f p 0.00 0.47 0.00 0.07 +giberne giberne nom f s 0.00 0.68 0.00 0.34 +gibernes giberne nom f p 0.00 0.68 0.00 0.34 +gibet gibet nom m s 1.43 1.89 1.09 1.35 +gibets gibet nom m p 1.43 1.89 0.34 0.54 +gibier gibier nom m s 6.50 11.69 5.79 10.88 +gibiers gibier nom m p 6.50 11.69 0.70 0.81 +giboulée giboulée nom f s 0.03 1.28 0.03 0.34 +giboulées giboulée nom f p 0.03 1.28 0.00 0.95 +giboyeuse giboyeux adj f s 0.01 0.68 0.00 0.41 +giboyeuses giboyeux adj f p 0.01 0.68 0.00 0.07 +giboyeux giboyeux adj m 0.01 0.68 0.01 0.20 +gibus gibus nom m 0.01 1.01 0.01 1.01 +gicla gicler ver 3.68 7.97 0.00 0.74 ind:pas:3s; +giclaient gicler ver 3.68 7.97 0.00 0.41 ind:imp:3p; +giclais gicler ver 3.68 7.97 0.00 0.14 ind:imp:1s; +giclait gicler ver 3.68 7.97 0.07 1.76 ind:imp:3s; +giclant gicler ver 3.68 7.97 0.00 0.20 par:pre; +gicle gicler ver 3.68 7.97 1.69 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +giclement giclement nom m s 0.00 0.14 0.00 0.07 +giclements giclement nom m p 0.00 0.14 0.00 0.07 +giclent gicler ver 3.68 7.97 0.04 0.20 ind:pre:3p; +gicler gicler ver 3.68 7.97 0.76 2.16 inf; +giclera gicler ver 3.68 7.97 0.02 0.00 ind:fut:3s; +gicleront gicler ver 3.68 7.97 0.01 0.00 ind:fut:3p; +gicles gicler ver 3.68 7.97 0.45 0.00 ind:pre:2s; +gicleur gicleur nom m s 0.45 0.07 0.45 0.07 +giclez gicler ver 3.68 7.97 0.01 0.00 imp:pre:2p; +giclèrent gicler ver 3.68 7.97 0.00 0.07 ind:pas:3p; +giclé gicler ver m s 3.68 7.97 0.62 0.47 par:pas; +giclée giclée nom f s 0.38 3.65 0.35 2.77 +giclées giclée nom f p 0.38 3.65 0.02 0.88 +gidien gidien adj m s 0.00 0.20 0.00 0.07 +gidienne gidien adj f s 0.00 0.20 0.00 0.07 +gidiennes gidien adj f p 0.00 0.20 0.00 0.07 +gidouille gidouille nom f s 0.00 0.20 0.00 0.20 +gifla gifler ver 6.77 15.88 0.11 2.70 ind:pas:3s; +giflai gifler ver 6.77 15.88 0.00 0.07 ind:pas:1s; +giflaient gifler ver 6.77 15.88 0.01 0.41 ind:imp:3p; +giflais gifler ver 6.77 15.88 0.16 0.07 ind:imp:1s; +giflait gifler ver 6.77 15.88 0.07 1.35 ind:imp:3s; +giflant gifler ver 6.77 15.88 0.01 0.68 par:pre; +gifle gifle nom f s 4.47 16.01 3.60 9.86 +giflent gifler ver 6.77 15.88 0.00 0.41 ind:pre:3p; +gifler gifler ver 6.77 15.88 1.96 4.05 inf; +giflera gifler ver 6.77 15.88 0.03 0.00 ind:fut:3s; +giflerai gifler ver 6.77 15.88 0.01 0.00 ind:fut:1s; +giflerais gifler ver 6.77 15.88 0.10 0.14 cnd:pre:1s;cnd:pre:2s; +giflerait gifler ver 6.77 15.88 0.07 0.00 cnd:pre:3s; +gifles gifle nom f p 4.47 16.01 0.88 6.15 +gifleuse gifleur nom f s 0.01 0.07 0.01 0.07 +giflez gifler ver 6.77 15.88 0.14 0.00 imp:pre:2p;ind:pre:2p; +giflât gifler ver 6.77 15.88 0.00 0.20 sub:imp:3s; +giflé gifler ver m s 6.77 15.88 1.63 2.36 par:pas; +giflée gifler ver f s 6.77 15.88 0.84 1.08 par:pas; +giflées gifler ver f p 6.77 15.88 0.01 0.14 par:pas; +giflés gifler ver m p 6.77 15.88 0.00 0.41 par:pas; +gifts gift nom m p 0.02 0.00 0.02 0.00 +gig gig nom m s 0.15 0.14 0.15 0.14 +giga giga adj s 0.23 0.14 0.19 0.14 +gigabits gigabit nom m p 0.05 0.00 0.05 0.00 +gigahertz gigahertz nom m 0.07 0.00 0.07 0.00 +gigantesque gigantesque adj s 4.59 21.69 3.87 15.81 +gigantesques gigantesque adj p 4.59 21.69 0.72 5.88 +gigantisme gigantisme nom m s 0.20 0.34 0.20 0.27 +gigantismes gigantisme nom m p 0.20 0.34 0.00 0.07 +gigantomachie gigantomachie nom f s 0.00 0.14 0.00 0.14 +gigaoctets gigaoctet nom m p 0.01 0.00 0.01 0.00 +gigas giga adj p 0.23 0.14 0.04 0.00 +gigogne gigogne adj f s 0.03 0.81 0.01 0.54 +gigognes gigogne adj p 0.03 0.81 0.02 0.27 +gigolette gigolette nom f s 0.14 0.14 0.14 0.14 +gigolo gigolo nom m s 1.23 2.30 1.01 1.69 +gigolos gigolo nom m p 1.23 2.30 0.22 0.61 +gigolpince gigolpince nom m s 0.01 1.01 0.01 0.81 +gigolpinces gigolpince nom m p 0.01 1.01 0.00 0.20 +gigot gigot nom m s 1.46 3.92 1.41 3.18 +gigota gigoter ver 1.85 3.31 0.00 0.07 ind:pas:3s; +gigotaient gigoter ver 1.85 3.31 0.01 0.47 ind:imp:3p; +gigotait gigoter ver 1.85 3.31 0.05 0.68 ind:imp:3s; +gigotant gigoter ver 1.85 3.31 0.03 0.34 par:pre; +gigote gigoter ver 1.85 3.31 0.43 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gigotements gigotement nom m p 0.00 0.34 0.00 0.34 +gigotent gigoter ver 1.85 3.31 0.04 0.47 ind:pre:3p; +gigoter gigoter ver 1.85 3.31 1.07 0.88 inf; +gigotes gigoter ver 1.85 3.31 0.04 0.00 ind:pre:2s; +gigotez gigoter ver 1.85 3.31 0.17 0.00 imp:pre:2p;ind:pre:2p; +gigots gigot nom m p 1.46 3.92 0.05 0.74 +gigoté gigoter ver m s 1.85 3.31 0.01 0.00 par:pas; +gigue gigue nom f s 0.32 1.22 0.32 1.22 +gilbert gilbert nom m s 0.00 0.20 0.00 0.20 +gilet gilet nom m s 6.06 15.14 5.13 13.72 +giletières giletier nom f p 0.00 0.07 0.00 0.07 +gilets gilet nom m p 6.06 15.14 0.93 1.42 +gilles gille nom m p 2.43 0.41 2.43 0.41 +gimmick gimmick nom m s 0.01 0.14 0.01 0.07 +gimmicks gimmick nom m p 0.01 0.14 0.00 0.07 +gin_fizz gin_fizz nom m 0.04 1.01 0.04 1.01 +gin_rami gin_rami nom m s 0.04 0.07 0.04 0.07 +gin_rummy gin_rummy nom m s 0.05 0.14 0.05 0.14 +gin gin nom m s 6.24 4.39 6.15 4.32 +gineste gineste nom m s 0.01 0.41 0.01 0.41 +gingembre gingembre nom m s 1.50 0.88 1.50 0.88 +gingin gingin nom m s 0.00 0.14 0.00 0.14 +gingivite gingivite nom f s 0.18 0.00 0.18 0.00 +ginkgo ginkgo nom m s 0.06 0.00 0.06 0.00 +gins gin nom m p 6.24 4.39 0.09 0.07 +ginseng ginseng nom m s 0.49 0.20 0.49 0.20 +giocoso giocoso adj m s 0.00 0.07 0.00 0.07 +gipsy gipsy nom s 0.03 0.00 0.03 0.00 +girafe girafe nom f s 3.50 3.18 2.71 1.89 +girafeau girafeau nom m s 0.01 0.00 0.01 0.00 +girafes girafe nom f p 3.50 3.18 0.79 1.28 +girafon girafon nom m s 0.01 0.00 0.01 0.00 +girandes girande nom f p 0.00 0.07 0.00 0.07 +girandole girandole nom f s 0.00 0.74 0.00 0.07 +girandoles girandole nom f p 0.00 0.74 0.00 0.68 +giration giration nom f s 0.01 0.68 0.00 0.61 +girations giration nom f p 0.01 0.68 0.01 0.07 +giratoire giratoire adj f s 0.02 0.07 0.02 0.07 +giraudistes giraudiste nom p 0.00 0.07 0.00 0.07 +gire gire nom m s 0.00 0.14 0.00 0.07 +girelles girel nom f p 0.00 0.07 0.00 0.07 +girer girer ver 0.00 0.07 0.00 0.07 inf; +gires gire nom m p 0.00 0.14 0.00 0.07 +girie girie nom f s 0.00 0.27 0.00 0.07 +giries girie nom f p 0.00 0.27 0.00 0.20 +girl_scout girl_scout nom f s 0.06 0.14 0.06 0.14 +girl_friend girl_friend nom f s 0.14 0.00 0.14 0.00 +girl girl nom f s 7.47 9.59 4.41 1.89 +girls girl nom f p 7.47 9.59 3.06 7.70 +girofle girofle nom m s 0.83 0.81 0.81 0.74 +girofles girofle nom m p 0.83 0.81 0.01 0.07 +giroflier giroflier nom m s 0.00 0.07 0.00 0.07 +giroflée giroflée nom f s 0.24 0.88 0.22 0.07 +giroflées giroflée nom f p 0.24 0.88 0.02 0.81 +girolle girolle nom f s 0.29 0.88 0.01 0.07 +girolles girolle nom f p 0.29 0.88 0.28 0.81 +giron giron nom m s 0.39 2.03 0.39 2.03 +girond girond adj m s 0.17 1.96 0.01 0.07 +gironde girond adj f s 0.17 1.96 0.15 1.35 +girondes girond adj f p 0.17 1.96 0.00 0.47 +girondin girondin adj m s 0.00 0.54 0.00 0.14 +girondine girondin adj f s 0.00 0.54 0.00 0.07 +girondines girondin adj f p 0.00 0.54 0.00 0.07 +girondins girondin adj m p 0.00 0.54 0.00 0.27 +gironds girond adj m p 0.17 1.96 0.01 0.07 +girouettait girouetter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +girouettant girouetter ver 0.00 0.14 0.00 0.07 par:pre; +girouette girouette nom f s 0.66 2.36 0.47 1.76 +girouettes girouette nom f p 0.66 2.36 0.19 0.61 +gis gésir ver 4.77 15.68 0.26 0.00 ind:pre:1s;ind:pre:2s; +gisaient gésir ver 4.77 15.68 0.11 2.50 ind:imp:3p; +gisais gésir ver 4.77 15.68 0.49 0.27 ind:imp:1s;ind:imp:2s; +gisait gésir ver 4.77 15.68 1.20 7.30 ind:imp:3s; +gisant gésir ver 4.77 15.68 0.33 1.35 par:pre; +gisante gisant adj f s 0.33 1.89 0.14 0.41 +gisantes gisant adj f p 0.33 1.89 0.00 0.14 +gisants gisant nom m p 0.02 2.57 0.00 1.22 +gisement gisement nom m s 1.25 0.95 0.73 0.61 +gisements gisement nom m p 1.25 0.95 0.53 0.34 +gisent gésir ver 4.77 15.68 0.22 1.42 ind:pre:3p; +gisions gésir ver 4.77 15.68 0.00 0.14 ind:imp:1p; +gisquette gisquette nom f s 0.00 1.42 0.00 0.68 +gisquettes gisquette nom f p 0.00 1.42 0.00 0.74 +gitan gitan nom m s 7.50 8.72 1.60 1.89 +gitane gitan nom f s 7.50 8.72 2.32 3.11 +gitanes gitan nom f p 7.50 8.72 0.18 1.76 +gitans gitan nom m p 7.50 8.72 3.39 1.96 +giton giton nom m s 1.25 0.68 1.23 0.47 +gitons giton nom m p 1.25 0.68 0.02 0.20 +givrage givrage nom m s 0.01 0.00 0.01 0.00 +givrait givrer ver 1.59 1.35 0.01 0.20 ind:imp:3s; +givrante givrant adj f s 0.01 0.07 0.01 0.07 +givre givre nom m s 0.33 5.14 0.32 5.07 +givrer givrer ver 1.59 1.35 0.01 0.14 inf; +givres givre nom m p 0.33 5.14 0.01 0.07 +givré givré adj m s 1.52 2.23 1.00 0.61 +givrée givrer ver f s 1.59 1.35 0.67 0.34 par:pas; +givrées givré adj f p 1.52 2.23 0.04 0.14 +givrés givré adj m p 1.52 2.23 0.22 0.47 +gla_gla gla_gla adj m s 0.00 0.14 0.00 0.14 +glaïeul glaïeul nom m s 0.38 1.89 0.01 0.00 +glaïeuls glaïeul nom m p 0.38 1.89 0.36 1.89 +glabelle glabelle nom f s 0.01 0.00 0.01 0.00 +glabre glabre adj s 0.06 2.64 0.05 1.69 +glabres glabre adj p 0.06 2.64 0.01 0.95 +glace glace nom f s 66.82 91.01 58.09 76.01 +glacent glacer ver 7.21 25.74 0.03 0.81 ind:pre:3p; +glacer glacer ver 7.21 25.74 0.30 0.95 inf; +glacera glacer ver 7.21 25.74 0.04 0.00 ind:fut:3s; +glaceront glacer ver 7.21 25.74 0.00 0.07 ind:fut:3p; +glaces glace nom f p 66.82 91.01 8.73 15.00 +glacez glacer ver 7.21 25.74 0.01 0.00 ind:pre:2p; +glaciaire glaciaire adj s 0.58 0.34 0.50 0.14 +glaciaires glaciaire adj p 0.58 0.34 0.09 0.20 +glacial glacial adj m s 3.81 13.92 2.44 8.18 +glaciale glacial adj f s 3.81 13.92 1.30 4.46 +glacialement glacialement adv 0.10 0.07 0.10 0.07 +glaciales glacial adj f p 3.81 13.92 0.07 1.01 +glacials glacial adj m p 3.81 13.92 0.00 0.14 +glaciation glaciation nom f s 0.03 0.34 0.03 0.27 +glaciations glaciation nom f p 0.03 0.34 0.00 0.07 +glaciaux glacial adj m p 3.81 13.92 0.00 0.14 +glacier glacier nom m s 5.00 3.72 4.34 2.16 +glaciers glacier nom m p 5.00 3.72 0.67 1.55 +glaciologue glaciologue nom s 0.14 0.00 0.14 0.00 +glacis glacis nom m 0.02 3.58 0.02 3.58 +glacière glacière nom f s 1.60 2.91 1.44 2.64 +glacières glacière nom f p 1.60 2.91 0.17 0.27 +glacèrent glacer ver 7.21 25.74 0.14 0.20 ind:pas:3p; +glacé glacé adj m s 11.42 40.27 5.28 17.50 +glacée glacé adj f s 11.42 40.27 4.67 13.85 +glacées glacé adj f p 11.42 40.27 0.64 4.59 +glacés glacé adj m p 11.42 40.27 0.84 4.32 +gladiateur gladiateur nom m s 2.84 1.62 1.38 0.74 +gladiateurs gladiateur nom m p 2.84 1.62 1.46 0.88 +gladiatrices gladiatrice nom f p 0.04 0.00 0.04 0.00 +glaglate glaglater ver 0.00 0.54 0.00 0.47 ind:pre:1s;ind:pre:3s; +glaglater glaglater ver 0.00 0.54 0.00 0.07 inf; +glaire glaire nom f s 0.48 1.35 0.22 0.34 +glaires glaire nom f p 0.48 1.35 0.26 1.01 +glaireuse glaireux adj f s 0.02 1.42 0.00 0.41 +glaireuses glaireux adj f p 0.02 1.42 0.00 0.20 +glaireux glaireux adj m 0.02 1.42 0.02 0.81 +glaise glaise nom f s 1.71 8.85 1.71 8.72 +glaises glaise nom f p 1.71 8.85 0.00 0.14 +glaiseuse glaiseux adj f s 0.00 1.15 0.00 0.14 +glaiseuses glaiseux adj f p 0.00 1.15 0.00 0.07 +glaiseux glaiseux adj m 0.00 1.15 0.00 0.95 +glaive glaive nom m s 1.95 4.39 1.71 3.85 +glaives glaive nom m p 1.95 4.39 0.24 0.54 +glamour glamour nom m s 1.49 0.07 1.49 0.07 +glana glaner ver 1.20 4.93 0.00 0.14 ind:pas:3s; +glanage glanage nom m s 0.18 0.00 0.18 0.00 +glanaient glaner ver 1.20 4.93 0.00 0.14 ind:imp:3p; +glanais glaner ver 1.20 4.93 0.00 0.07 ind:imp:1s; +glanait glaner ver 1.20 4.93 0.02 0.68 ind:imp:3s; +glanant glaner ver 1.20 4.93 0.14 0.41 par:pre; +gland gland nom m s 2.95 5.27 2.14 3.04 +glandage glandage nom m s 0.03 0.00 0.03 0.00 +glandais glander ver 2.88 2.57 0.05 0.07 ind:imp:1s; +glandait glander ver 2.88 2.57 0.03 0.14 ind:imp:3s; +glande glander ver 2.88 2.57 0.86 0.88 ind:pre:1s;ind:pre:3s; +glandent glander ver 2.88 2.57 0.04 0.20 ind:pre:3p; +glander glander ver 2.88 2.57 1.37 1.15 inf; +glandes glande nom f p 2.20 4.66 1.46 4.32 +glandeur glandeur nom m s 0.48 0.41 0.33 0.14 +glandeurs glandeur nom m p 0.48 0.41 0.15 0.27 +glandez glander ver 2.88 2.57 0.08 0.07 ind:pre:2p; +glandiez glander ver 2.88 2.57 0.02 0.00 ind:imp:2p; +glandilleuse glandilleuse adj m s 0.00 0.68 0.00 0.34 +glandilleuses glandilleuse adj m p 0.00 0.68 0.00 0.34 +glandilleux glandilleux adj m 0.00 1.22 0.00 1.22 +glandons glander ver 2.88 2.57 0.01 0.00 ind:pre:1p; +glandouillant glandouiller ver 0.13 0.74 0.01 0.00 par:pre; +glandouille glandouiller ver 0.13 0.74 0.01 0.27 ind:pre:1s;ind:pre:3s; +glandouiller glandouiller ver 0.13 0.74 0.10 0.41 inf; +glandouilleur glandouilleur nom m s 0.00 0.07 0.00 0.07 +glandouillez glandouiller ver 0.13 0.74 0.01 0.00 ind:pre:2p; +glandouillé glandouiller ver m s 0.13 0.74 0.00 0.07 par:pas; +glands gland nom m p 2.95 5.27 0.81 2.23 +glandé glander ver m s 2.88 2.57 0.21 0.07 par:pas; +glandu glandu nom s 0.57 0.00 0.31 0.00 +glandulaire glandulaire adj s 0.19 0.74 0.06 0.41 +glandulaires glandulaire adj p 0.19 0.74 0.12 0.34 +glanduleuse glanduleux adj f s 0.00 0.07 0.00 0.07 +glandus glandu nom p 0.57 0.00 0.26 0.00 +glane glaner ver 1.20 4.93 0.25 0.20 ind:pre:1s;ind:pre:3s; +glanent glaner ver 1.20 4.93 0.02 0.14 ind:pre:3p; +glaner glaner ver 1.20 4.93 0.62 1.69 inf; +glanes glane nom f p 0.00 0.14 0.00 0.07 +glaneur glaneur nom m s 0.18 0.00 0.06 0.00 +glaneuse glaneur nom f s 0.18 0.00 0.13 0.00 +glanez glaner ver 1.20 4.93 0.01 0.00 ind:pre:2p; +glané glaner ver m s 1.20 4.93 0.09 0.27 par:pas; +glanée glaner ver f s 1.20 4.93 0.00 0.27 par:pas; +glanées glaner ver f p 1.20 4.93 0.01 0.47 par:pas; +glanure glanure nom f s 0.00 0.07 0.00 0.07 +glanés glaner ver m p 1.20 4.93 0.05 0.47 par:pas; +glapi glapir ver m s 0.23 6.76 0.00 0.41 par:pas; +glapie glapir ver f s 0.23 6.76 0.00 0.07 par:pas; +glapir glapir ver 0.23 6.76 0.04 1.22 inf; +glapirent glapir ver 0.23 6.76 0.00 0.14 ind:pas:3p; +glapissaient glapir ver 0.23 6.76 0.14 0.20 ind:imp:3p; +glapissait glapir ver 0.23 6.76 0.00 0.81 ind:imp:3s; +glapissant glapir ver 0.23 6.76 0.01 0.61 par:pre; +glapissante glapissant adj f s 0.01 0.61 0.00 0.34 +glapissantes glapissant adj f p 0.01 0.61 0.00 0.07 +glapissants glapissant adj m p 0.01 0.61 0.01 0.07 +glapissement glapissement nom m s 0.02 1.76 0.02 0.81 +glapissements glapissement nom m p 0.02 1.76 0.00 0.95 +glapissent glapir ver 0.23 6.76 0.00 0.14 ind:pre:3p; +glapisseurs glapisseur adj m p 0.01 0.00 0.01 0.00 +glapissions glapir ver 0.23 6.76 0.00 0.07 ind:imp:1p; +glapit glapir ver 0.23 6.76 0.04 3.11 ind:pre:3s;ind:pas:3s; +glaréole glaréole nom f s 0.04 0.00 0.04 0.00 +glas glas nom m 1.28 4.05 1.28 4.05 +glasnost glasnost nom f s 0.03 0.00 0.03 0.00 +glass glass nom m 1.23 1.28 1.05 1.28 +glasses glass nom m p 1.23 1.28 0.17 0.00 +glaça glacer ver 7.21 25.74 0.01 1.49 ind:pas:3s; +glaçage glaçage nom m s 0.77 0.07 0.75 0.07 +glaçages glaçage nom m p 0.77 0.07 0.01 0.00 +glaçaient glacer ver 7.21 25.74 0.01 0.47 ind:imp:3p; +glaçais glacer ver 7.21 25.74 0.00 0.07 ind:imp:1s; +glaçait glacer ver 7.21 25.74 0.06 2.97 ind:imp:3s; +glaçant glacer ver 7.21 25.74 0.04 0.07 par:pre; +glaçante glaçant adj f s 0.04 0.27 0.01 0.27 +glaçon glaçon nom m s 7.40 5.47 1.55 0.95 +glaçons glaçon nom m p 7.40 5.47 5.85 4.53 +glaçure glaçure nom f s 0.00 0.14 0.00 0.07 +glaçures glaçure nom f p 0.00 0.14 0.00 0.07 +glaucome glaucome nom m s 0.27 0.20 0.27 0.20 +glauque glauque adj s 1.40 9.32 1.12 6.82 +glauquement glauquement adv 0.00 0.07 0.00 0.07 +glauques glauque adj p 1.40 9.32 0.28 2.50 +glaviot glaviot nom m s 0.13 1.35 0.11 0.74 +glaviotaient glavioter ver 0.02 1.22 0.00 0.07 ind:imp:3p; +glaviotait glavioter ver 0.02 1.22 0.00 0.14 ind:imp:3s; +glaviotant glavioter ver 0.02 1.22 0.00 0.14 par:pre; +glaviote glavioter ver 0.02 1.22 0.01 0.34 ind:pre:1s;ind:pre:3s; +glavioter glavioter ver 0.02 1.22 0.01 0.54 inf; +glavioteurs glavioteur nom m p 0.00 0.07 0.00 0.07 +glaviots glaviot nom m p 0.13 1.35 0.02 0.61 +glaviotte glaviotter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +glide glide nom m s 0.07 0.00 0.07 0.00 +glioblastome glioblastome nom m s 0.04 0.00 0.04 0.00 +gliome gliome nom m s 0.05 0.00 0.05 0.00 +glissa glisser ver 34.74 229.32 0.78 30.61 ind:pas:3s; +glissade glissade nom f s 0.64 4.26 0.57 2.50 +glissades glissade nom f p 0.64 4.26 0.07 1.76 +glissai glisser ver 34.74 229.32 0.05 2.43 ind:pas:1s; +glissaient glisser ver 34.74 229.32 0.35 10.14 ind:imp:3p; +glissais glisser ver 34.74 229.32 0.09 2.30 ind:imp:1s;ind:imp:2s; +glissait glisser ver 34.74 229.32 1.00 27.97 ind:imp:3s; +glissandi glissando nom m p 0.01 0.27 0.00 0.07 +glissando glissando nom m s 0.01 0.27 0.01 0.14 +glissandos glissando nom m p 0.01 0.27 0.00 0.07 +glissant glissant adj m s 3.54 8.24 1.76 3.18 +glissante glissant adj f s 3.54 8.24 1.34 2.64 +glissantes glissant adj f p 3.54 8.24 0.35 1.49 +glissants glissant adj m p 3.54 8.24 0.09 0.95 +glisse_la_moi glisse_la_moi nom f s 0.10 0.00 0.10 0.00 +glisse glisser ver 34.74 229.32 8.99 31.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +glissement glissement nom m s 0.48 7.50 0.35 6.62 +glissements glissement nom m p 0.48 7.50 0.13 0.88 +glissent glisser ver 34.74 229.32 1.22 8.65 ind:pre:3p; +glisser glisser ver 34.74 229.32 9.01 61.62 ind:pre:2p;inf; +glissera glisser ver 34.74 229.32 0.17 0.68 ind:fut:3s; +glisserai glisser ver 34.74 229.32 0.41 0.27 ind:fut:1s; +glisseraient glisser ver 34.74 229.32 0.01 0.41 cnd:pre:3p; +glisserais glisser ver 34.74 229.32 0.04 0.54 cnd:pre:1s;cnd:pre:2s; +glisserait glisser ver 34.74 229.32 0.15 0.95 cnd:pre:3s; +glisserez glisser ver 34.74 229.32 0.12 0.00 ind:fut:2p; +glisseriez glisser ver 34.74 229.32 0.02 0.07 cnd:pre:2p; +glisserons glisser ver 34.74 229.32 0.01 0.07 ind:fut:1p; +glisseront glisser ver 34.74 229.32 0.05 0.27 ind:fut:3p; +glisses glisser ver 34.74 229.32 0.72 0.41 ind:pre:2s; +glissez glisser ver 34.74 229.32 1.08 0.27 imp:pre:2p;ind:pre:2p; +glissions glisser ver 34.74 229.32 0.03 1.01 ind:imp:1p; +glissière glissière nom f s 0.24 1.96 0.22 1.69 +glissières glissière nom f p 0.24 1.96 0.03 0.27 +glissoire glissoire nom f s 0.04 0.00 0.04 0.00 +glissâmes glisser ver 34.74 229.32 0.00 0.20 ind:pas:1p; +glissons glisser ver 34.74 229.32 0.47 0.54 imp:pre:1p;ind:pre:1p; +glissât glisser ver 34.74 229.32 0.00 0.34 sub:imp:3s; +glissèrent glisser ver 34.74 229.32 0.01 2.50 ind:pas:3p; +glissé glisser ver m s 34.74 229.32 8.77 22.97 par:pas; +glissée glisser ver f s 34.74 229.32 0.39 5.20 par:pas; +glissées glisser ver f p 34.74 229.32 0.04 1.01 par:pas; +glissés glisser ver m p 34.74 229.32 0.07 2.43 par:pas; +global global adj m s 3.59 2.57 2.38 1.15 +globale global adj f s 3.59 2.57 1.19 1.42 +globalement globalement adv 0.68 0.61 0.68 0.61 +globalisation globalisation nom f s 0.19 0.00 0.19 0.00 +globalisé globaliser ver m s 0.01 0.00 0.01 0.00 par:pas; +globalité globalité nom f s 0.04 0.07 0.04 0.07 +globaux global adj m p 3.59 2.57 0.02 0.00 +globe_trotter globe_trotter nom m s 0.22 0.41 0.20 0.27 +globe_trotter globe_trotter nom m p 0.22 0.41 0.02 0.14 +globe globe nom m s 4.21 11.89 3.17 8.58 +globes globe nom m p 4.21 11.89 1.04 3.31 +globulaire globulaire adj s 0.09 0.34 0.04 0.14 +globulaires globulaire adj p 0.09 0.34 0.04 0.20 +globule globule nom m s 3.25 1.28 0.38 0.27 +globules globule nom m p 3.25 1.28 2.88 1.01 +globuleuse globuleux adj f s 0.27 4.80 0.00 0.14 +globuleux globuleux adj m 0.27 4.80 0.27 4.66 +globuline globuline nom f s 0.01 0.00 0.01 0.00 +glockenspiel glockenspiel nom m s 0.03 0.07 0.03 0.07 +gloire gloire nom s 35.27 50.88 34.78 48.51 +gloires gloire nom f p 35.27 50.88 0.48 2.36 +glomérule glomérule nom m s 0.00 0.07 0.00 0.07 +glop glop nom f s 0.01 0.27 0.01 0.27 +gloria gloria nom m s 2.66 0.81 2.66 0.81 +gloriette gloriette nom f s 0.10 0.34 0.10 0.27 +gloriettes gloriette nom f p 0.10 0.34 0.00 0.07 +glorieuse glorieux adj f s 7.41 18.31 2.44 5.54 +glorieusement glorieusement adv 0.34 1.82 0.34 1.82 +glorieuses glorieux adj f p 7.41 18.31 0.28 1.96 +glorieux glorieux adj m 7.41 18.31 4.68 10.81 +glorifia glorifier ver 1.82 3.65 0.01 0.14 ind:pas:3s; +glorifiaient glorifier ver 1.82 3.65 0.01 0.27 ind:imp:3p; +glorifiait glorifier ver 1.82 3.65 0.12 0.27 ind:imp:3s; +glorifiant glorifier ver 1.82 3.65 0.02 0.20 par:pre; +glorification glorification nom f s 0.22 0.20 0.22 0.20 +glorifie glorifier ver 1.82 3.65 0.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +glorifient glorifier ver 1.82 3.65 0.22 0.20 ind:pre:3p; +glorifier glorifier ver 1.82 3.65 0.56 1.22 inf; +glorifiez glorifier ver 1.82 3.65 0.08 0.07 imp:pre:2p;ind:pre:2p; +glorifions glorifier ver 1.82 3.65 0.05 0.07 imp:pre:1p;ind:pre:1p; +glorifié glorifier ver m s 1.82 3.65 0.21 0.54 par:pas; +glorifiées glorifier ver f p 1.82 3.65 0.00 0.07 par:pas; +glorifiés glorifier ver m p 1.82 3.65 0.00 0.14 par:pas; +gloriole gloriole nom f s 0.03 1.69 0.03 1.69 +glosaient gloser ver 0.00 0.61 0.00 0.07 ind:imp:3p; +glose glose nom f s 0.01 0.61 0.01 0.20 +gloser gloser ver 0.00 0.61 0.00 0.27 inf; +gloses glose nom f p 0.01 0.61 0.00 0.41 +glossaire glossaire nom m s 0.04 0.07 0.04 0.07 +glossateurs glossateur nom m p 0.00 0.07 0.00 0.07 +glossématique glossématique nom f s 0.00 0.07 0.00 0.07 +glosé gloser ver m s 0.00 0.61 0.00 0.07 par:pas; +glosées gloser ver f p 0.00 0.61 0.00 0.07 par:pas; +glotte glotte nom f s 0.12 2.03 0.12 2.03 +glottique glottique adj m s 0.00 0.07 0.00 0.07 +glouglou glouglou nom m s 0.24 1.22 0.23 0.61 +glouglous glouglou nom m p 0.24 1.22 0.01 0.61 +glougloutait glouglouter ver 0.00 0.61 0.00 0.14 ind:imp:3s; +glougloutant glouglouter ver 0.00 0.61 0.00 0.14 par:pre; +glougloute glouglouter ver 0.00 0.61 0.00 0.27 ind:pre:3s; +glougloutement glougloutement nom m s 0.01 0.14 0.01 0.14 +glouglouter glouglouter ver 0.00 0.61 0.00 0.07 inf; +gloussa glousser ver 0.98 5.61 0.00 1.08 ind:pas:3s; +gloussaient glousser ver 0.98 5.61 0.00 0.41 ind:imp:3p; +gloussait glousser ver 0.98 5.61 0.03 0.88 ind:imp:3s; +gloussant glousser ver 0.98 5.61 0.04 0.61 par:pre; +gloussante gloussant adj f s 0.01 0.54 0.01 0.14 +gloussantes gloussant adj f p 0.01 0.54 0.00 0.14 +gloussants gloussant adj m p 0.01 0.54 0.00 0.07 +glousse glousser ver 0.98 5.61 0.38 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gloussement gloussement nom m s 0.26 3.72 0.21 1.22 +gloussements gloussement nom m p 0.26 3.72 0.05 2.50 +gloussent glousser ver 0.98 5.61 0.03 0.07 ind:pre:3p; +glousser glousser ver 0.98 5.61 0.43 1.42 inf; +glousserait glousser ver 0.98 5.61 0.00 0.07 cnd:pre:3s; +gloussez glousser ver 0.98 5.61 0.02 0.00 ind:pre:2p; +gloussèrent glousser ver 0.98 5.61 0.00 0.07 ind:pas:3p; +gloussé glousser ver m s 0.98 5.61 0.05 0.34 par:pas; +glouton glouton nom m s 1.10 0.54 0.78 0.34 +gloutonnant gloutonner ver 0.00 0.14 0.00 0.14 par:pre; +gloutonne glouton adj f s 0.69 1.69 0.22 0.74 +gloutonnement gloutonnement adv 0.00 0.54 0.00 0.54 +gloutonnerie gloutonnerie nom f s 0.27 0.74 0.27 0.74 +gloutons glouton nom m p 1.10 0.54 0.32 0.07 +gloxinias gloxinia nom m p 0.00 0.07 0.00 0.07 +glèbe glèbe nom f s 0.51 0.95 0.51 0.88 +glèbes glèbe nom f p 0.51 0.95 0.00 0.07 +glène glène nom f s 0.00 0.07 0.00 0.07 +glu glu nom f s 0.56 2.57 0.56 2.43 +gluant gluant adj m s 1.96 15.20 1.23 4.73 +gluante gluant adj f s 1.96 15.20 0.40 5.81 +gluantes gluant adj f p 1.96 15.20 0.07 2.09 +gluants gluant adj m p 1.96 15.20 0.26 2.57 +glucagon glucagon nom m s 0.04 0.00 0.04 0.00 +glucide glucide nom m s 0.51 0.20 0.00 0.07 +glucides glucide nom m p 0.51 0.20 0.51 0.14 +gluconique gluconique adj s 0.01 0.00 0.01 0.00 +glucose glucose nom m s 2.08 0.20 2.08 0.20 +glue gluer ver 0.42 1.22 0.35 0.14 ind:pre:3s; +gluent gluer ver 0.42 1.22 0.00 0.07 ind:pre:3p; +glénoïde glénoïde adj f s 0.03 0.00 0.03 0.00 +gluon gluon nom m s 0.04 0.00 0.04 0.00 +glus glu nom f p 0.56 2.57 0.00 0.14 +glutamate glutamate nom m s 0.16 0.00 0.16 0.00 +gluten gluten nom m s 0.06 0.07 0.06 0.07 +glycine glycine nom f s 0.26 4.26 0.21 1.96 +glycines glycine nom f p 0.26 4.26 0.05 2.30 +glycol glycol nom m s 0.12 0.00 0.12 0.00 +glycoprotéine glycoprotéine nom f s 0.03 0.00 0.03 0.00 +glycémie glycémie nom f s 0.44 0.00 0.44 0.00 +glycérine glycérine nom f s 1.04 0.14 1.04 0.14 +glycérol glycérol nom m s 0.01 0.00 0.01 0.00 +glyphe glyphe nom m s 0.24 0.00 0.06 0.00 +glyphes glyphe nom m p 0.24 0.00 0.18 0.00 +gnôle gnôle nom f s 3.24 1.55 3.24 1.55 +gna_gna gna_gna ono 0.14 0.14 0.14 0.14 +gnafron gnafron nom m s 0.01 0.34 0.01 0.20 +gnafrons gnafron nom m p 0.01 0.34 0.00 0.14 +gnagnagna gnagnagna ono 0.01 1.35 0.01 1.35 +gnangnan gnangnan adj 0.23 0.47 0.23 0.47 +gnard gnard nom m s 0.00 0.34 0.00 0.20 +gnards gnard nom m p 0.00 0.34 0.00 0.14 +gnaule gnaule nom f s 0.01 0.00 0.01 0.00 +gnian_gnian gnian_gnian nom m s 0.01 0.00 0.01 0.00 +gniard gniard nom m s 0.00 1.15 0.00 0.27 +gniards gniard nom m p 0.00 1.15 0.00 0.88 +gniouf gniouf nom f s 0.00 0.27 0.00 0.27 +gnocchi gnocchi nom m s 2.02 0.07 1.06 0.00 +gnocchis gnocchi nom m p 2.02 0.07 0.96 0.07 +gnognote gnognote nom f s 0.04 0.41 0.04 0.41 +gnognotte gnognotte nom f s 0.23 0.20 0.23 0.20 +gnole gnole nom f s 0.55 1.01 0.55 1.01 +gnome gnome nom m s 2.95 2.03 2.36 1.01 +gnomes gnome nom m p 2.95 2.03 0.59 1.01 +gnon gnon nom m s 1.02 1.82 0.42 0.54 +gnons gnon nom m p 1.02 1.82 0.59 1.28 +gnose gnose nom f s 0.00 0.07 0.00 0.07 +gnosticisme gnosticisme nom m s 0.01 0.07 0.01 0.07 +gnostique gnostique adj m s 0.04 0.00 0.01 0.00 +gnostiques gnostique adj m p 0.04 0.00 0.03 0.00 +gnou gnou nom m s 0.20 0.27 0.17 0.00 +gnouf gnouf nom m s 0.41 1.01 0.41 1.01 +gnous gnou nom m p 0.20 0.27 0.03 0.27 +go go nom m s 15.32 2.70 15.32 2.70 +goût goût nom m s 57.94 141.82 50.51 124.80 +goûta goûter ver 42.27 39.86 0.00 1.89 ind:pas:3s; +goûtables goûtable adj m p 0.00 0.07 0.00 0.07 +goûtai goûter ver 42.27 39.86 0.02 0.34 ind:pas:1s; +goûtaient goûter ver 42.27 39.86 0.02 0.68 ind:imp:3p; +goûtais goûter ver 42.27 39.86 0.21 1.49 ind:imp:1s;ind:imp:2s; +goûtait goûter ver 42.27 39.86 0.09 3.85 ind:imp:3s; +goûtant goûter ver 42.27 39.86 0.05 0.74 par:pre; +goûte goûter ver 42.27 39.86 9.85 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +goûtent goûter ver 42.27 39.86 0.14 0.61 ind:pre:3p; +goûter goûter ver 42.27 39.86 15.91 15.20 inf; +goûtera goûter ver 42.27 39.86 0.24 0.07 ind:fut:3s; +goûterai goûter ver 42.27 39.86 0.50 0.07 ind:fut:1s; +goûterais goûter ver 42.27 39.86 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +goûterait goûter ver 42.27 39.86 0.02 0.07 cnd:pre:3s; +goûteras goûter ver 42.27 39.86 0.08 0.00 ind:fut:2s; +goûterez goûter ver 42.27 39.86 0.33 0.27 ind:fut:2p; +goûterons goûter ver 42.27 39.86 0.02 0.00 ind:fut:1p;; +goûteront goûter ver 42.27 39.86 0.06 0.00 ind:fut:3p; +goûters goûter nom m p 2.26 7.84 0.42 2.09 +goûtes goûter ver 42.27 39.86 1.15 0.00 ind:pre:2s; +goûteur goûteur nom m s 0.14 0.00 0.12 0.00 +goûteuse goûteur nom f s 0.14 0.00 0.03 0.00 +goûteuses goûteux adj f p 0.13 0.27 0.02 0.07 +goûteux goûteux adj m s 0.13 0.27 0.09 0.14 +goûtez goûter ver 42.27 39.86 4.28 0.88 imp:pre:2p;ind:pre:2p; +goûtiez goûter ver 42.27 39.86 0.43 0.00 ind:imp:2p; +goûtions goûter ver 42.27 39.86 0.03 0.61 ind:imp:1p; +goûtâmes goûter ver 42.27 39.86 0.14 0.00 ind:pas:1p; +goûtons goûter ver 42.27 39.86 0.72 0.54 imp:pre:1p;ind:pre:1p; +goûts goût nom m p 57.94 141.82 7.43 17.03 +goûtèrent goûter ver 42.27 39.86 0.00 0.54 ind:pas:3p; +goûté goûter ver m s 42.27 39.86 7.01 6.42 par:pas; +goûtée goûter ver f s 42.27 39.86 0.57 0.47 par:pas; +goûtées goûter ver f p 42.27 39.86 0.23 0.34 par:pas; +goûtés goûter ver m p 42.27 39.86 0.06 0.27 par:pas; +goal goal nom m s 1.32 1.55 1.32 1.49 +goals goal nom m p 1.32 1.55 0.00 0.07 +goba gober ver 5.90 5.68 0.01 0.34 ind:pas:3s; +gobage gobage nom m s 0.04 0.27 0.04 0.07 +gobages gobage nom m p 0.04 0.27 0.00 0.20 +gobaient gober ver 5.90 5.68 0.01 0.14 ind:imp:3p; +gobais gober ver 5.90 5.68 0.04 0.07 ind:imp:1s; +gobait gober ver 5.90 5.68 0.06 0.27 ind:imp:3s; +gobant gober ver 5.90 5.68 0.03 0.41 par:pre; +gobe_mouches gobe_mouches nom m 0.02 0.14 0.02 0.14 +gobe gober ver 5.90 5.68 0.86 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gobelet gobelet nom m s 3.25 4.46 2.21 2.16 +gobelets gobelet nom m p 3.25 4.46 1.04 2.30 +gobelin gobelin nom m s 0.19 0.41 0.04 0.00 +gobelins gobelin nom m p 0.19 0.41 0.14 0.41 +gobelottes gobelotter ver 0.00 0.07 0.00 0.07 ind:pre:2s; +gobent gober ver 5.90 5.68 0.19 0.34 ind:pre:3p; +gober gober ver 5.90 5.68 2.50 2.09 inf; +gobera gober ver 5.90 5.68 0.06 0.00 ind:fut:3s; +goberaient gober ver 5.90 5.68 0.04 0.00 cnd:pre:3p; +goberait gober ver 5.90 5.68 0.02 0.07 cnd:pre:3s; +goberge goberger ver 0.03 0.74 0.01 0.27 ind:pre:1s;ind:pre:3s; +gobergeait goberger ver 0.03 0.74 0.00 0.07 ind:imp:3s; +gobergent goberger ver 0.03 0.74 0.01 0.14 ind:pre:3p; +goberger goberger ver 0.03 0.74 0.00 0.14 inf; +gobergez goberger ver 0.03 0.74 0.01 0.07 imp:pre:2p; +gobergé goberger ver m s 0.03 0.74 0.00 0.07 par:pas; +goberont gober ver 5.90 5.68 0.04 0.00 ind:fut:3p; +gobes gober ver 5.90 5.68 0.28 0.14 ind:pre:2s; +gobet gobet nom m s 0.00 0.14 0.00 0.07 +gobets gobet nom m p 0.00 0.14 0.00 0.07 +gobette gobeter ver 0.00 0.41 0.00 0.41 ind:pre:3s; +gobeur gobeur nom m s 0.04 0.07 0.03 0.00 +gobeurs gobeur nom m p 0.04 0.07 0.00 0.07 +gobeuse gobeuse nom f s 0.08 0.00 0.08 0.00 +gobez gober ver 5.90 5.68 0.31 0.00 imp:pre:2p;ind:pre:2p; +gobions gober ver 5.90 5.68 0.00 0.07 ind:imp:1p; +gobèrent gober ver 5.90 5.68 0.00 0.07 ind:pas:3p; +gobé gober ver m s 5.90 5.68 1.44 0.74 par:pas; +gobée gober ver f s 5.90 5.68 0.00 0.14 par:pas; +gobées gober ver f p 5.90 5.68 0.02 0.00 par:pas; +gobés gober ver m p 5.90 5.68 0.00 0.14 par:pas; +gâcha gâcher ver 49.57 18.51 0.00 0.27 ind:pas:3s; +gâchage gâchage nom m s 0.00 0.07 0.00 0.07 +gâchaient gâcher ver 49.57 18.51 0.02 0.47 ind:imp:3p; +gâchais gâcher ver 49.57 18.51 0.10 0.14 ind:imp:1s;ind:imp:2s; +gâchait gâcher ver 49.57 18.51 0.19 1.49 ind:imp:3s; +gâchant gâcher ver 49.57 18.51 0.03 0.14 par:pre; +gâche gâcher ver 49.57 18.51 7.08 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +gâchent gâcher ver 49.57 18.51 0.66 0.34 ind:pre:3p; +gâcher gâcher ver 49.57 18.51 18.26 6.49 inf; +gâchera gâcher ver 49.57 18.51 0.31 0.00 ind:fut:3s; +gâcherai gâcher ver 49.57 18.51 0.70 0.00 ind:fut:1s; +gâcheraient gâcher ver 49.57 18.51 0.03 0.00 cnd:pre:3p; +gâcherais gâcher ver 49.57 18.51 0.26 0.00 cnd:pre:1s;cnd:pre:2s; +gâcherait gâcher ver 49.57 18.51 0.56 0.20 cnd:pre:3s; +gâcheras gâcher ver 49.57 18.51 0.08 0.00 ind:fut:2s; +gâcherez gâcher ver 49.57 18.51 0.05 0.00 ind:fut:2p; +gâcheriez gâcher ver 49.57 18.51 0.26 0.00 cnd:pre:2p; +gâches gâcher ver 49.57 18.51 2.24 0.41 ind:pre:2s; +gâchette gâchette nom f s 5.09 1.82 4.89 1.82 +gâchettes gâchette nom f p 5.09 1.82 0.19 0.00 +gâcheur gâcheur nom m s 0.01 0.07 0.01 0.00 +gâcheurs gâcheur nom m p 0.01 0.07 0.00 0.07 +gâcheuse gâcheur adj f s 0.00 0.14 0.00 0.14 +gâchez gâcher ver 49.57 18.51 1.53 0.41 imp:pre:2p;ind:pre:2p; +gâchiez gâcher ver 49.57 18.51 0.04 0.00 ind:imp:2p; +gâchis gâchis nom m 6.24 3.85 6.24 3.85 +gâchons gâcher ver 49.57 18.51 0.90 0.20 imp:pre:1p;ind:pre:1p; +gâchât gâcher ver 49.57 18.51 0.00 0.07 sub:imp:3s; +gâché gâcher ver m s 49.57 18.51 14.10 4.19 par:pas; +gâchée gâcher ver f s 49.57 18.51 1.77 1.28 par:pas; +gâchées gâcher ver f p 49.57 18.51 0.30 0.74 par:pas; +gâchés gâcher ver m p 49.57 18.51 0.10 0.27 par:pas; +goda goder ver 0.70 1.62 0.01 0.00 ind:pas:3s; +godaille godailler ver 0.01 0.27 0.01 0.14 ind:pre:3s; +godaillera godailler ver 0.01 0.27 0.00 0.07 ind:fut:3s; +godailles godailler ver 0.01 0.27 0.00 0.07 ind:pre:2s; +godait goder ver 0.70 1.62 0.00 0.07 ind:imp:3s; +godant goder ver 0.70 1.62 0.00 0.07 par:pre; +godasse godasse nom f s 2.99 8.92 0.46 1.55 +godasses godasse nom f p 2.99 8.92 2.53 7.36 +goddam goddam ono 0.01 0.00 0.01 0.00 +gode goder ver 0.70 1.62 0.32 0.68 imp:pre:2s;ind:pre:3s; +godelureau godelureau nom m s 0.01 0.34 0.01 0.20 +godelureaux godelureau nom m p 0.01 0.34 0.00 0.14 +godemiché godemiché nom m s 0.63 0.81 0.59 0.61 +godemichés godemiché nom m p 0.63 0.81 0.04 0.20 +godent goder ver 0.70 1.62 0.00 0.07 ind:pre:3p; +goder goder ver 0.70 1.62 0.00 0.61 inf; +goderas goder ver 0.70 1.62 0.00 0.07 ind:fut:2s; +godes goder ver 0.70 1.62 0.36 0.07 ind:pre:2s; +godet godet nom m s 0.33 7.50 0.29 4.32 +godets godet nom m p 0.33 7.50 0.04 3.18 +godiche godiche nom f s 0.09 0.00 0.07 0.00 +godiches godiche adj p 0.07 0.95 0.02 0.27 +godillais godiller ver 0.00 0.61 0.00 0.07 ind:imp:1s; +godillait godiller ver 0.00 0.61 0.00 0.07 ind:imp:3s; +godillant godiller ver 0.00 0.61 0.00 0.20 par:pre; +godille godille nom f s 0.20 0.88 0.00 0.88 +godiller godiller ver 0.00 0.61 0.00 0.14 inf; +godilles godille nom f p 0.20 0.88 0.20 0.00 +godilleur godilleur nom m s 0.00 0.14 0.00 0.14 +godillot godillot nom m s 0.35 3.24 0.04 0.47 +godillots godillot nom m p 0.35 3.24 0.32 2.77 +godillé godiller ver m s 0.00 0.61 0.00 0.07 par:pas; +godronnés godronner ver m p 0.00 0.07 0.00 0.07 par:pas; +godrons godron nom m p 0.00 0.07 0.00 0.07 +goglu goglu nom m s 0.02 0.00 0.02 0.00 +gogo gogo nom m s 2.19 1.96 1.85 1.42 +gogol gogol adj s 0.30 0.14 0.29 0.07 +gogols gogol adj p 0.30 0.14 0.01 0.07 +gogos gogo nom m p 2.19 1.96 0.35 0.54 +gogs gog nom m p 0.03 0.88 0.03 0.88 +goguenard goguenard adj m s 0.01 6.15 0.01 3.85 +goguenarda goguenarder ver 0.00 0.20 0.00 0.07 ind:pas:3s; +goguenarde goguenard adj f s 0.01 6.15 0.00 1.01 +goguenardes goguenard adj f p 0.01 6.15 0.00 0.14 +goguenards goguenard adj m p 0.01 6.15 0.00 1.15 +goguenots goguenot nom m p 0.00 0.20 0.00 0.20 +gogues gogues nom m p 0.23 2.57 0.23 2.57 +goguette goguette nom f s 0.47 1.35 0.47 1.15 +goguettes goguette nom f p 0.47 1.35 0.00 0.20 +goinfraient goinfrer ver 0.98 1.62 0.00 0.07 ind:imp:3p; +goinfrait goinfrer ver 0.98 1.62 0.00 0.14 ind:imp:3s; +goinfre goinfre nom s 0.52 0.61 0.34 0.34 +goinfrent goinfrer ver 0.98 1.62 0.03 0.07 ind:pre:3p; +goinfrer goinfrer ver 0.98 1.62 0.67 0.95 inf; +goinfreras goinfrer ver 0.98 1.62 0.00 0.07 ind:fut:2s; +goinfrerie goinfrerie nom f s 0.12 0.41 0.12 0.41 +goinfres goinfre nom p 0.52 0.61 0.17 0.27 +goinfrez goinfrer ver 0.98 1.62 0.03 0.07 imp:pre:2p;ind:pre:2p; +goinfré goinfrer ver m s 0.98 1.62 0.06 0.00 par:pas; +goinfrée goinfrer ver f s 0.98 1.62 0.01 0.07 par:pas; +goinfrés goinfrer ver m p 0.98 1.62 0.01 0.07 par:pas; +goitre goitre nom m s 0.11 0.68 0.10 0.54 +goitres goitre nom m p 0.11 0.68 0.01 0.14 +goitreux goitreux nom m 0.00 0.34 0.00 0.34 +gold gold adj 3.11 0.41 3.11 0.41 +golden golden nom s 2.37 0.68 2.37 0.61 +goldens golden nom p 2.37 0.68 0.00 0.07 +goldo goldo nom f s 0.00 0.61 0.00 0.54 +goldos goldo nom f p 0.00 0.61 0.00 0.07 +golem golem nom m s 0.10 0.07 0.10 0.07 +golf_club golf_club nom m s 0.01 0.07 0.01 0.07 +golf golf nom m s 14.14 7.30 14.05 7.16 +golfe golfe nom m s 1.69 6.49 1.55 5.95 +golfes golfe nom m p 1.69 6.49 0.14 0.54 +golfeur golfeur nom m s 0.85 0.34 0.58 0.07 +golfeurs golfeur nom m p 0.85 0.34 0.22 0.07 +golfeuse golfeur nom f s 0.85 0.34 0.05 0.07 +golfeuses golfeuse nom f p 0.01 0.00 0.01 0.00 +golfs golf nom m p 14.14 7.30 0.09 0.14 +golgotha golgotha nom m s 0.00 0.07 0.00 0.07 +goliath goliath nom m s 0.00 0.07 0.00 0.07 +gombo gombo nom m s 2.44 0.14 2.00 0.14 +gombos gombo nom m p 2.44 0.14 0.43 0.00 +gomina gomina nom f s 0.14 1.01 0.14 1.01 +gominer gominer ver 0.29 1.82 0.00 0.07 inf; +gominé gominer ver m s 0.29 1.82 0.04 0.61 par:pas; +gominée gominer ver f s 0.29 1.82 0.00 0.34 par:pas; +gominées gominer ver f p 0.29 1.82 0.00 0.07 par:pas; +gominés gominer ver m p 0.29 1.82 0.25 0.74 par:pas; +gomma gommer ver 0.57 4.73 0.00 0.20 ind:pas:3s; +gommage gommage nom m s 0.25 0.07 0.25 0.07 +gommait gommer ver 0.57 4.73 0.00 0.47 ind:imp:3s; +gommant gommer ver 0.57 4.73 0.02 0.20 par:pre; +gomme gomme nom f s 3.81 9.93 3.21 9.26 +gomment gommer ver 0.57 4.73 0.00 0.07 ind:pre:3p; +gommer gommer ver 0.57 4.73 0.26 1.69 inf; +gommerait gommer ver 0.57 4.73 0.00 0.20 cnd:pre:3s; +gommes gomme nom f p 3.81 9.93 0.60 0.68 +gommette gommette nom f s 0.03 0.00 0.03 0.00 +gommeuse gommeux adj f s 0.00 0.34 0.00 0.14 +gommeux gommeux nom m 0.05 0.68 0.05 0.68 +gommier gommier nom m s 0.06 0.27 0.05 0.00 +gommiers gommier nom m p 0.06 0.27 0.01 0.27 +gommé gommer ver m s 0.57 4.73 0.19 0.68 par:pas; +gommée gommer ver f s 0.57 4.73 0.01 0.41 par:pas; +gommées gommer ver f p 0.57 4.73 0.01 0.14 par:pas; +gommés gommer ver m p 0.57 4.73 0.01 0.14 par:pas; +goménol goménol nom m s 0.00 0.07 0.00 0.07 +goménolée goménolé adj f s 0.00 0.14 0.00 0.14 +gon gon nom m s 0.86 0.00 0.86 0.00 +gonade gonade nom f s 0.16 0.07 0.04 0.00 +gonades gonade nom f p 0.16 0.07 0.12 0.07 +gonadotropes gonadotrope adj f p 0.01 0.00 0.01 0.00 +gonadotrophine gonadotrophine nom f s 0.01 0.00 0.01 0.00 +goncier goncier nom m s 0.00 0.14 0.00 0.14 +gond gond nom m s 0.91 2.97 0.04 0.14 +gonde gonder ver 0.01 0.07 0.00 0.07 ind:pre:3s; +gonder gonder ver 0.01 0.07 0.01 0.00 inf; +gondolaient gondoler ver 0.11 2.70 0.00 0.47 ind:imp:3p; +gondolais gondoler ver 0.11 2.70 0.00 0.14 ind:imp:1s;ind:imp:2s; +gondolait gondoler ver 0.11 2.70 0.00 0.27 ind:imp:3s; +gondolant gondoler ver 0.11 2.70 0.00 0.20 par:pre; +gondole gondole nom f s 1.26 4.93 1.01 3.31 +gondolement gondolement nom m s 0.00 0.07 0.00 0.07 +gondolent gondoler ver 0.11 2.70 0.01 0.20 ind:pre:3p; +gondoler gondoler ver 0.11 2.70 0.02 0.41 inf; +gondolera gondoler ver 0.11 2.70 0.00 0.07 ind:fut:3s; +gondoles gondole nom f p 1.26 4.93 0.25 1.62 +gondolier gondolier nom m s 0.72 1.15 0.59 0.74 +gondoliers gondolier nom m p 0.72 1.15 0.11 0.41 +gondolière gondolier nom f s 0.72 1.15 0.03 0.00 +gondolèrent gondoler ver 0.11 2.70 0.00 0.07 ind:pas:3p; +gondolé gondoler ver m s 0.11 2.70 0.01 0.14 par:pas; +gondolée gondolé adj f s 0.01 0.68 0.00 0.27 +gondolées gondolé adj f p 0.01 0.68 0.00 0.20 +gondolés gondolé adj m p 0.01 0.68 0.00 0.14 +gonds gond nom m p 0.91 2.97 0.87 2.84 +gone gone nom m s 1.00 0.14 1.00 0.14 +gonelle gonelle nom f s 0.00 0.14 0.00 0.14 +gonfalon gonfalon nom m s 0.00 0.20 0.00 0.14 +gonfaloniers gonfalonier nom m p 0.00 0.07 0.00 0.07 +gonfalons gonfalon nom m p 0.00 0.20 0.00 0.07 +gonfanon gonfanon nom m s 0.00 0.20 0.00 0.14 +gonfanons gonfanon nom m p 0.00 0.20 0.00 0.07 +gonfla gonfler ver 16.52 47.57 0.02 2.36 ind:pas:3s; +gonflable gonflable adj s 1.35 0.95 0.92 0.54 +gonflables gonflable adj p 1.35 0.95 0.44 0.41 +gonflage gonflage nom m s 0.00 0.20 0.00 0.20 +gonflaient gonfler ver 16.52 47.57 0.00 1.96 ind:imp:3p; +gonflais gonfler ver 16.52 47.57 0.02 0.07 ind:imp:1s; +gonflait gonfler ver 16.52 47.57 0.60 7.91 ind:imp:3s; +gonflant gonflant adj m s 0.21 0.54 0.19 0.34 +gonflante gonflant adj f s 0.21 0.54 0.01 0.14 +gonflantes gonflant adj f p 0.21 0.54 0.00 0.07 +gonflants gonflant adj m p 0.21 0.54 0.01 0.00 +gonfle gonfler ver 16.52 47.57 4.14 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gonflement gonflement nom m s 0.24 1.15 0.20 0.88 +gonflements gonflement nom m p 0.24 1.15 0.04 0.27 +gonflent gonfler ver 16.52 47.57 0.50 2.09 ind:pre:3p; +gonfler gonfler ver 16.52 47.57 3.17 5.68 inf; +gonflera gonfler ver 16.52 47.57 0.07 0.07 ind:fut:3s; +gonflerait gonfler ver 16.52 47.57 0.02 0.14 cnd:pre:3s; +gonfles gonfler ver 16.52 47.57 1.16 0.14 ind:pre:2s; +gonflette gonflette nom f s 0.46 0.00 0.46 0.00 +gonfleur gonfleur nom m s 0.00 0.20 0.00 0.20 +gonflez gonfler ver 16.52 47.57 1.20 0.07 imp:pre:2p;ind:pre:2p; +gonflèrent gonfler ver 16.52 47.57 0.01 0.61 ind:pas:3p; +gonflé gonfler ver m s 16.52 47.57 3.96 7.30 par:pas; +gonflée gonfler ver f s 16.52 47.57 0.80 3.92 par:pas; +gonflées gonflé adj f p 3.56 12.64 0.34 3.24 +gonflés gonflé adj m p 3.56 12.64 1.20 3.18 +gong gong nom m s 2.41 3.65 2.35 3.51 +gongoriste gongoriste adj m s 0.00 0.07 0.00 0.07 +gongs gong nom m p 2.41 3.65 0.06 0.14 +goniomètre goniomètre nom m s 0.00 0.07 0.00 0.07 +gonococcie gonococcie nom f s 0.03 0.00 0.03 0.00 +gonococcique gonococcique adj s 0.01 0.00 0.01 0.00 +gonocoque gonocoque nom m s 0.01 0.41 0.00 0.20 +gonocoques gonocoque nom m p 0.01 0.41 0.01 0.20 +gonorrhée gonorrhée nom f s 0.08 0.00 0.08 0.00 +gonze gonze nom m s 0.07 6.89 0.06 4.05 +gonzes gonze nom m p 0.07 6.89 0.01 2.84 +gonzesse gonzesse nom f s 11.29 15.61 7.74 7.57 +gonzesses gonzesse nom f p 11.29 15.61 3.56 8.04 +gopak gopak nom m s 0.00 0.07 0.00 0.07 +gâpette gâpette nom f s 0.00 0.07 0.00 0.07 +gopher gopher nom m s 0.02 0.07 0.02 0.07 +gord gord nom m s 0.25 0.00 0.25 0.00 +gordien gordien adj m s 0.00 0.20 0.00 0.14 +gordiens gordien adj m p 0.00 0.20 0.00 0.07 +gore gore adj s 0.57 0.14 0.57 0.14 +goret goret nom m s 0.85 1.28 0.81 0.95 +gorets goret nom m p 0.85 1.28 0.04 0.34 +gorge_de_pigeon gorge_de_pigeon adj m s 0.01 0.14 0.01 0.14 +gorge gorge nom s 30.87 86.82 29.57 82.64 +gorgea gorger ver 1.52 8.04 0.01 0.14 ind:pas:3s; +gorgeai gorger ver 1.52 8.04 0.00 0.14 ind:pas:1s; +gorgeaient gorger ver 1.52 8.04 0.00 0.14 ind:imp:3p; +gorgeais gorger ver 1.52 8.04 0.00 0.07 ind:imp:1s; +gorgeait gorger ver 1.52 8.04 0.01 0.47 ind:imp:3s; +gorgeant gorger ver 1.52 8.04 0.01 0.20 par:pre; +gorgent gorger ver 1.52 8.04 0.02 0.07 ind:pre:3p; +gorgeon gorgeon nom m s 0.01 1.01 0.01 0.95 +gorgeons gorger ver 1.52 8.04 0.00 0.07 ind:pre:1p; +gorger gorger ver 1.52 8.04 0.03 0.47 inf; +gorgerette gorgerette nom f s 0.00 0.07 0.00 0.07 +gorgerin gorgerin nom m s 0.01 0.07 0.01 0.07 +gorges gorge nom f p 30.87 86.82 1.30 4.19 +gorget gorget nom m s 0.00 0.07 0.00 0.07 +gorgez gorger ver 1.52 8.04 0.00 0.07 imp:pre:2p; +gorgone gorgone nom f s 0.02 0.41 0.02 0.41 +gorgonzola gorgonzola nom m s 0.22 0.34 0.22 0.34 +gorgèrent gorger ver 1.52 8.04 0.00 0.07 ind:pas:3p; +gorgé gorger ver m s 1.52 8.04 0.19 1.76 par:pas; +gorgée gorgée nom f s 5.70 20.27 4.97 13.31 +gorgées gorgée nom f p 5.70 20.27 0.72 6.96 +gorgés gorger ver m p 1.52 8.04 0.40 1.35 par:pas; +gorille gorille nom m s 6.06 2.77 3.55 2.03 +gorilles gorille nom m p 6.06 2.77 2.51 0.74 +gosier gosier nom m s 1.20 4.93 1.20 4.26 +gosiers gosier nom m p 1.20 4.93 0.00 0.68 +gospel gospel nom m s 0.61 0.00 0.61 0.00 +gosplan gosplan nom m s 0.10 0.07 0.10 0.07 +gosse gosse nom s 109.96 61.76 62.92 34.12 +gosseline gosseline nom f s 0.00 0.14 0.00 0.07 +gosselines gosseline nom f p 0.00 0.14 0.00 0.07 +gosses gosse nom p 109.96 61.76 47.03 27.64 +gâta gâter ver 10.97 14.26 0.00 0.14 ind:pas:3s; +gâtaient gâter ver 10.97 14.26 0.04 0.34 ind:imp:3p; +gâtais gâter ver 10.97 14.26 0.03 0.07 ind:imp:1s; +gâtait gâter ver 10.97 14.26 0.03 0.95 ind:imp:3s; +gâtant gâter ver 10.97 14.26 0.23 0.14 par:pre; +gâte_bois gâte_bois nom m 0.00 0.07 0.00 0.07 +gâte_sauce gâte_sauce nom m s 0.00 0.14 0.00 0.14 +gâte gâter ver 10.97 14.26 2.96 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gâteau gâteau nom m s 55.19 32.16 42.33 13.92 +gâteaux gâteau nom m p 55.19 32.16 12.85 18.24 +gâtent gâter ver 10.97 14.26 0.54 0.14 ind:pre:3p; +gâter gâter ver 10.97 14.26 1.80 3.45 inf; +gâtera gâter ver 10.97 14.26 0.35 0.14 ind:fut:3s; +gâterais gâter ver 10.97 14.26 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +gâterait gâter ver 10.97 14.26 0.02 0.07 cnd:pre:3s; +gâterie gâterie nom f s 1.35 2.91 0.98 0.81 +gâteries gâterie nom f p 1.35 2.91 0.36 2.09 +gâteront gâter ver 10.97 14.26 0.00 0.14 ind:fut:3p; +gâtes gâter ver 10.97 14.26 1.22 0.20 ind:pre:2s; +gâteuse gâteux adj f s 1.71 3.92 0.25 0.88 +gâteuses gâteux adj f p 1.71 3.92 0.00 0.07 +gâteux gâteux adj m 1.71 3.92 1.47 2.97 +gâtez gâter ver 10.97 14.26 0.46 0.20 imp:pre:2p;ind:pre:2p; +goth goth nom s 0.04 0.14 0.02 0.00 +gotha gotha nom m s 0.04 0.14 0.04 0.07 +gothas gotha nom m p 0.04 0.14 0.00 0.07 +gothique gothique adj s 0.99 6.55 0.89 3.85 +gothiques gothique adj p 0.99 6.55 0.10 2.70 +goths goth nom p 0.04 0.14 0.01 0.14 +gâtifie gâtifier ver 0.00 0.07 0.00 0.07 ind:pre:3s; +gâtine gâtine nom f s 0.00 0.07 0.00 0.07 +gâtisme gâtisme nom m s 0.02 0.95 0.02 0.95 +goton goton nom f s 0.00 0.07 0.00 0.07 +gâtât gâter ver 10.97 14.26 0.00 0.07 sub:imp:3s; +gâtèrent gâter ver 10.97 14.26 0.00 0.27 ind:pas:3p; +gâté gâter ver m s 10.97 14.26 1.54 3.58 par:pas; +gâtée gâté adj f s 3.66 4.73 1.68 1.28 +gâtées gâté adj f p 3.66 4.73 0.15 0.61 +gâtés gâté adj m p 3.66 4.73 0.54 0.68 +gouache gouache nom f s 0.04 1.55 0.04 1.22 +gouaches gouache nom f p 0.04 1.55 0.00 0.34 +gouachez gouacher ver 0.01 0.00 0.01 0.00 ind:pre:2p; +gouailla gouailler ver 0.00 0.41 0.00 0.27 ind:pas:3s; +gouaille gouaille nom f s 0.01 1.49 0.01 1.49 +gouailleur gouailleur adj m s 0.00 1.28 0.00 0.61 +gouailleurs gouailleur adj m p 0.00 1.28 0.00 0.07 +gouailleuse gouailleur adj f s 0.00 1.28 0.00 0.54 +gouailleuses gouailleur adj f p 0.00 1.28 0.00 0.07 +gouaillé gouailler ver m s 0.00 0.41 0.00 0.07 par:pas; +goualante goualante nom f s 0.01 1.08 0.01 0.81 +goualantes goualante nom f p 0.01 1.08 0.00 0.27 +goualer goualer ver 0.00 0.14 0.00 0.14 inf; +gouape gouape nom f s 0.39 1.08 0.38 0.74 +gouapes gouape nom f p 0.39 1.08 0.01 0.34 +gouda gouda nom m s 0.03 0.07 0.03 0.07 +goudou goudou nom f s 0.09 0.14 0.06 0.07 +goudous goudou nom f p 0.09 0.14 0.03 0.07 +goudron goudron nom m s 3.40 7.64 3.40 7.50 +goudronnage goudronnage nom m s 0.00 0.14 0.00 0.14 +goudronne goudronner ver 0.38 1.01 0.00 0.07 ind:pre:3s; +goudronner goudronner ver 0.38 1.01 0.05 0.20 inf; +goudronneux goudronneux adj m 0.00 0.20 0.00 0.20 +goudronnez goudronner ver 0.38 1.01 0.14 0.00 imp:pre:2p; +goudronné goudronner ver m s 0.38 1.01 0.06 0.41 par:pas; +goudronnée goudronné adj f s 0.39 3.04 0.23 1.01 +goudronnées goudronné adj f p 0.39 3.04 0.14 0.54 +goudronnés goudronné adj m p 0.39 3.04 0.00 0.27 +goudrons goudron nom m p 3.40 7.64 0.00 0.14 +gouet gouet nom m s 0.00 0.07 0.00 0.07 +gouffre gouffre nom m s 3.84 13.38 3.43 11.35 +gouffres gouffre nom m p 3.84 13.38 0.40 2.03 +gouge gouge nom f s 0.02 1.01 0.01 0.74 +gouges gouge nom f p 0.02 1.01 0.01 0.27 +gougnafier gougnafier nom m s 0.00 1.96 0.00 0.61 +gougnafiers gougnafier nom m p 0.00 1.96 0.00 1.35 +gougnottes gougnotter ver 0.01 0.07 0.01 0.07 ind:pre:2s; +gougoutte gougoutte nom f s 0.01 0.07 0.01 0.00 +gougouttes gougoutte nom f p 0.01 0.07 0.00 0.07 +gougère gougère nom f s 0.00 0.20 0.00 0.07 +gougères gougère nom f p 0.00 0.20 0.00 0.14 +gouine gouine nom f s 4.00 0.88 3.29 0.47 +gouines gouine nom f p 4.00 0.88 0.71 0.41 +goujat goujat nom m s 1.68 2.09 1.23 1.69 +goujaterie goujaterie nom f s 0.16 0.47 0.16 0.47 +goujats goujat nom m p 1.68 2.09 0.45 0.41 +goujon goujon nom m s 0.50 1.35 0.50 0.81 +goujons goujon nom m p 0.50 1.35 0.00 0.54 +goulûment goulûment adv 0.14 2.70 0.14 2.70 +goulache goulache nom m s 0.46 0.00 0.46 0.00 +goulafre goulafre nom s 0.00 0.14 0.00 0.07 +goulafres goulafre nom p 0.00 0.14 0.00 0.07 +goulag goulag nom m s 0.31 1.01 0.31 0.74 +goulags goulag nom m p 0.31 1.01 0.00 0.27 +goéland goéland nom m s 0.53 2.91 0.31 0.81 +goélands goéland nom m p 0.53 2.91 0.23 2.09 +goulasch goulasch nom m s 0.27 0.14 0.27 0.14 +goule goule nom f s 0.61 0.07 0.26 0.07 +goules goule nom f p 0.61 0.07 0.36 0.00 +goulet goulet nom m s 0.09 0.74 0.09 0.74 +goélette goélette nom f s 0.60 0.68 0.60 0.61 +goulette goulette nom f s 0.94 0.14 0.94 0.14 +goélettes goélette nom f p 0.60 0.68 0.00 0.07 +gouleyant gouleyant adj m s 0.00 0.14 0.00 0.14 +goulot goulot nom m s 0.50 10.81 0.49 10.14 +goulots goulot nom m p 0.50 10.81 0.01 0.68 +goulotte goulotte nom f s 0.00 0.07 0.00 0.07 +goulu goulu adj m s 0.14 1.55 0.02 0.34 +goulée goulée nom f s 0.01 2.64 0.00 1.55 +goulue goulu adj f s 0.14 1.55 0.02 0.68 +goulées goulée nom f p 0.01 2.64 0.01 1.08 +goulues goulu nom f p 0.02 0.41 0.01 0.07 +goulus goulu adj m p 0.14 1.55 0.10 0.34 +goum goum nom m s 0.04 0.41 0.00 0.34 +goumi goumi nom m s 0.00 0.34 0.00 0.34 +goumier goumier nom m s 0.00 0.54 0.00 0.07 +goumiers goumier nom m p 0.00 0.54 0.00 0.47 +goémon goémon nom m s 0.14 0.88 0.00 0.41 +goémons goémon nom m p 0.14 0.88 0.14 0.47 +goums goum nom m p 0.04 0.41 0.04 0.07 +goupil goupil nom m s 0.03 0.27 0.03 0.27 +goupillait goupiller ver 0.27 1.69 0.01 0.20 ind:imp:3s; +goupille goupille nom f s 0.74 0.47 0.72 0.34 +goupiller goupiller ver 0.27 1.69 0.04 0.34 inf; +goupilles goupille nom f p 0.74 0.47 0.02 0.14 +goupillon goupillon nom m s 0.16 1.62 0.16 1.55 +goupillons goupillon nom m p 0.16 1.62 0.00 0.07 +goupillé goupiller ver m s 0.27 1.69 0.04 0.47 par:pas; +goupillée goupiller ver f s 0.27 1.69 0.02 0.07 par:pas; +gour gour nom m 0.02 0.61 0.01 0.54 +goura goura nom m s 0.00 0.07 0.00 0.07 +gouraient gourer ver 2.33 6.28 0.00 0.07 ind:imp:3p; +gourais gourer ver 2.33 6.28 0.01 0.68 ind:imp:1s;ind:imp:2s; +gourait gourer ver 2.33 6.28 0.01 0.47 ind:imp:3s; +gourance gourance nom f s 0.00 1.28 0.00 1.15 +gourances gourance nom f p 0.00 1.28 0.00 0.14 +gourbi gourbi nom m s 0.17 2.91 0.12 1.69 +gourbis gourbi nom m p 0.17 2.91 0.06 1.22 +gourd gourd adj m s 0.00 2.70 0.00 0.68 +gourde gourde nom f s 2.85 4.59 2.56 4.59 +gourdes gourde nom f p 2.85 4.59 0.29 0.00 +gourdin gourdin nom m s 1.59 2.84 1.51 1.82 +gourdins gourdin nom m p 1.59 2.84 0.08 1.01 +gourds gourd adj m p 0.00 2.70 0.00 2.03 +goure gourer ver 2.33 6.28 0.30 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gourent gourer ver 2.33 6.28 0.03 0.27 ind:pre:3p; +gourer gourer ver 2.33 6.28 0.22 1.35 inf; +gourerait gourer ver 2.33 6.28 0.00 0.07 cnd:pre:3s; +goures gourer ver 2.33 6.28 0.77 0.34 ind:pre:2s; +gourez gourer ver 2.33 6.28 0.19 0.07 ind:pre:2p; +gourgandine gourgandine nom f s 0.06 0.34 0.06 0.20 +gourgandines gourgandine nom f p 0.06 0.34 0.00 0.14 +gourmand gourmand adj m s 2.79 9.86 1.81 4.53 +gourmandai gourmander ver 0.11 0.81 0.00 0.07 ind:pas:1s; +gourmandais gourmander ver 0.11 0.81 0.00 0.07 ind:imp:1s; +gourmandait gourmander ver 0.11 0.81 0.00 0.07 ind:imp:3s; +gourmandant gourmander ver 0.11 0.81 0.00 0.07 par:pre; +gourmande gourmand adj f s 2.79 9.86 0.54 3.45 +gourmandement gourmandement adv 0.00 0.07 0.00 0.07 +gourmandent gourmander ver 0.11 0.81 0.00 0.07 ind:pre:3p; +gourmander gourmander ver 0.11 0.81 0.00 0.14 inf; +gourmandes gourmand adj f p 2.79 9.86 0.14 1.08 +gourmandise gourmandise nom f s 0.51 6.49 0.47 5.54 +gourmandises gourmandise nom f p 0.51 6.49 0.04 0.95 +gourmands gourmand adj m p 2.79 9.86 0.32 0.81 +gourmandé gourmander ver m s 0.11 0.81 0.01 0.00 par:pas; +gourme gourme nom f s 0.06 0.41 0.06 0.41 +gourmet gourmet nom m s 0.97 1.55 0.89 0.81 +gourmets gourmet nom m p 0.97 1.55 0.08 0.74 +gourmette gourmette nom f s 1.25 2.43 1.25 2.09 +gourmettes gourmette nom f p 1.25 2.43 0.01 0.34 +gourmé gourmé adj m s 0.01 0.81 0.01 0.34 +gourmée gourmé adj f s 0.01 0.81 0.00 0.20 +gourmés gourmé adj m p 0.01 0.81 0.00 0.27 +gourou gourou nom m s 1.84 1.42 1.63 1.28 +gourous gourou nom m p 1.84 1.42 0.22 0.14 +gours gour nom m p 0.02 0.61 0.01 0.07 +gouré gourer ver m s 2.33 6.28 0.64 1.22 par:pas; +gourée gourer ver f s 2.33 6.28 0.07 0.54 par:pas; +gourées gourer ver f p 2.33 6.28 0.00 0.07 par:pas; +gourés gourer ver m p 2.33 6.28 0.10 0.27 par:pas; +gousse gousse nom f s 0.58 1.28 0.51 0.81 +gousses gousse nom f p 0.58 1.28 0.07 0.47 +gousset gousset nom m s 0.27 2.23 0.27 1.69 +goussets gousset nom m p 0.27 2.23 0.00 0.54 +goétie goétie nom f s 0.02 0.00 0.02 0.00 +gouttait goutter ver 0.73 2.36 0.01 0.34 ind:imp:3s; +gouttant goutter ver 0.73 2.36 0.01 0.20 par:pre; +goutte goutte nom f s 28.03 64.32 19.09 30.34 +gouttelaient goutteler ver 0.00 0.14 0.00 0.07 ind:imp:3p; +gouttelait goutteler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +gouttelette gouttelette nom f s 0.25 5.88 0.04 0.41 +gouttelettes gouttelette nom f p 0.25 5.88 0.21 5.47 +goutter goutter ver 0.73 2.36 0.01 0.41 inf; +gouttera goutter ver 0.73 2.36 0.01 0.00 ind:fut:3s; +goutterais goutter ver 0.73 2.36 0.01 0.00 cnd:pre:1s; +gouttereau gouttereau adj m s 0.00 0.20 0.00 0.14 +gouttereaux gouttereau adj m p 0.00 0.20 0.00 0.07 +gouttes goutte nom f p 28.03 64.32 8.94 33.99 +goutteuse goutteur nom f s 0.01 0.00 0.01 0.00 +goutteuses goutteux adj f p 0.01 0.41 0.00 0.14 +goutteux goutteux adj m 0.01 0.41 0.01 0.20 +gouttière gouttière nom f s 2.99 10.95 2.47 6.82 +gouttières gouttière nom f p 2.99 10.95 0.52 4.12 +gouvernable gouvernable adj s 0.01 0.00 0.01 0.00 +gouvernaient gouverner ver 7.60 8.78 0.17 0.14 ind:imp:3p; +gouvernail gouvernail nom m s 2.87 1.69 2.81 1.62 +gouvernails gouvernail nom m p 2.87 1.69 0.06 0.07 +gouvernait gouverner ver 7.60 8.78 0.21 1.69 ind:imp:3s; +gouvernance gouvernance nom f s 0.01 0.00 0.01 0.00 +gouvernant gouvernant nom m s 0.45 2.09 0.14 0.07 +gouvernante gouvernante nom f s 4.60 4.73 4.52 3.85 +gouvernantes gouvernante nom f p 4.60 4.73 0.08 0.88 +gouvernants gouvernant nom m p 0.45 2.09 0.30 2.03 +gouverne gouverner ver 7.60 8.78 1.58 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gouvernement gouvernement nom m s 62.66 132.03 59.82 119.73 +gouvernemental gouvernemental adj m s 2.93 1.69 0.98 0.61 +gouvernementale gouvernemental adj f s 2.93 1.69 0.82 0.74 +gouvernementales gouvernemental adj f p 2.93 1.69 0.72 0.34 +gouvernementaux gouvernemental adj m p 2.93 1.69 0.40 0.00 +gouvernements gouvernement nom m p 62.66 132.03 2.83 12.30 +gouvernent gouverner ver 7.60 8.78 0.72 0.41 ind:pre:3p; +gouverner gouverner ver 7.60 8.78 3.18 3.24 inf; +gouvernera gouverner ver 7.60 8.78 0.56 0.07 ind:fut:3s; +gouvernerai gouverner ver 7.60 8.78 0.03 0.14 ind:fut:1s; +gouvernerait gouverner ver 7.60 8.78 0.01 0.14 cnd:pre:3s; +gouverneras gouverner ver 7.60 8.78 0.02 0.00 ind:fut:2s; +gouvernerez gouverner ver 7.60 8.78 0.04 0.07 ind:fut:2p; +gouvernerons gouverner ver 7.60 8.78 0.03 0.00 ind:fut:1p; +gouverneront gouverner ver 7.60 8.78 0.06 0.07 ind:fut:3p; +gouvernes gouverner ver 7.60 8.78 0.17 0.00 ind:pre:2s; +gouverneur gouverneur nom m s 21.73 18.38 20.96 16.35 +gouverneurs gouverneur nom m p 21.73 18.38 0.77 2.03 +gouvernez gouverner ver 7.60 8.78 0.14 0.00 imp:pre:2p;ind:pre:2p; +gouverniez gouverner ver 7.60 8.78 0.01 0.00 ind:imp:2p; +gouvernorat gouvernorat nom m s 0.01 0.14 0.01 0.00 +gouvernorats gouvernorat nom m p 0.01 0.14 0.00 0.14 +gouvernât gouverner ver 7.60 8.78 0.00 0.14 sub:imp:3s; +gouverné gouverner ver m s 7.60 8.78 0.38 0.81 par:pas; +gouvernée gouverner ver f s 7.60 8.78 0.17 0.47 par:pas; +gouvernés gouverner ver m p 7.60 8.78 0.07 0.07 par:pas; +gouzi_gouzi gouzi_gouzi nom m 0.06 0.07 0.06 0.07 +goy goy nom m s 0.13 0.47 0.13 0.47 +goyave goyave nom f s 0.06 0.20 0.06 0.20 +goyesque goyesque nom s 0.00 0.20 0.00 0.14 +goyesques goyesque nom p 0.00 0.20 0.00 0.07 +graal graal nom m s 0.04 0.34 0.04 0.34 +grabat grabat nom m s 0.36 2.09 0.23 1.96 +grabataire grabataire adj s 0.13 0.27 0.11 0.27 +grabataires grabataire adj m p 0.13 0.27 0.02 0.00 +grabats grabat nom m p 0.36 2.09 0.14 0.14 +graben graben nom m s 0.14 0.00 0.14 0.00 +grabuge grabuge nom m s 2.55 0.54 2.55 0.54 +gracia gracier ver 3.62 1.22 0.00 0.07 ind:pas:3s; +graciai gracier ver 3.62 1.22 0.00 0.07 ind:pas:1s; +gracias gracier ver 3.62 1.22 1.58 0.20 ind:pas:2s; +gracie gracier ver 3.62 1.22 0.81 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gracier gracier ver 3.62 1.22 0.39 0.41 inf; +graciera gracier ver 3.62 1.22 0.01 0.00 ind:fut:3s; +gracierai gracier ver 3.62 1.22 0.04 0.00 ind:fut:1s; +gracieras gracier ver 3.62 1.22 0.02 0.00 ind:fut:2s; +gracieuse gracieux adj f s 4.54 15.81 1.84 6.08 +gracieusement gracieusement adv 0.54 2.70 0.54 2.70 +gracieuses gracieux adj f p 4.54 15.81 0.29 2.09 +gracieuseté gracieuseté nom f s 0.20 0.41 0.06 0.14 +gracieusetés gracieuseté nom f p 0.20 0.41 0.14 0.27 +gracieusé gracieusé adj m s 0.00 0.07 0.00 0.07 +gracieux gracieux adj m 4.54 15.81 2.42 7.64 +graciez gracier ver 3.62 1.22 0.04 0.00 imp:pre:2p;ind:pre:2p; +gracile gracile adj s 0.16 2.50 0.16 1.69 +graciles gracile adj f p 0.16 2.50 0.00 0.81 +gracilité gracilité nom f s 0.00 0.07 0.00 0.07 +graciât gracier ver 3.62 1.22 0.00 0.07 sub:imp:3s; +gracié gracier ver m s 3.62 1.22 0.51 0.00 par:pas; +graciée gracier ver f s 3.62 1.22 0.06 0.07 par:pas; +graciés gracier ver m p 3.62 1.22 0.16 0.07 par:pas; +gradaille gradaille nom f s 0.00 0.07 0.00 0.07 +gradation gradation nom f s 0.01 0.54 0.00 0.34 +gradations gradation nom f p 0.01 0.54 0.01 0.20 +grade grade nom m s 6.44 8.18 5.78 7.03 +grader grader nom m s 0.00 0.07 0.00 0.07 +grades grade nom m p 6.44 8.18 0.66 1.15 +gradient gradient nom m s 0.04 0.00 0.03 0.00 +gradients gradient nom m p 0.04 0.00 0.01 0.00 +gradin gradin nom m s 1.06 5.07 0.01 0.41 +gradins gradin nom m p 1.06 5.07 1.05 4.66 +gradé gradé adj m s 1.61 1.22 1.36 0.68 +graduation graduation nom f s 0.12 0.41 0.11 0.27 +graduations graduation nom f p 0.12 0.41 0.01 0.14 +gradée gradé adj f s 1.61 1.22 0.09 0.07 +graduel graduel adj m s 0.09 0.14 0.01 0.00 +graduelle graduel adj f s 0.09 0.14 0.07 0.14 +graduellement graduellement adv 0.24 0.81 0.24 0.81 +graduer graduer ver 0.18 0.41 0.01 0.14 inf; +gradés gradé nom m p 1.94 8.45 0.82 6.49 +gradus gradus nom m 0.00 0.07 0.00 0.07 +gradué graduer ver m s 0.18 0.41 0.03 0.20 par:pas; +graduée graduer ver f s 0.18 0.41 0.14 0.00 par:pas; +graduées graduer ver f p 0.18 0.41 0.01 0.00 par:pas; +gradués gradué nom m p 0.02 0.00 0.02 0.00 +graff graff nom m s 0.05 0.00 0.05 0.00 +graffeur graffeur nom m s 0.06 0.00 0.06 0.00 +graffita graffiter ver 0.01 0.27 0.00 0.07 ind:pas:3s; +graffiter graffiter ver 0.01 0.27 0.01 0.07 inf; +graffiteur graffiteur nom m s 0.09 0.07 0.02 0.00 +graffiteurs graffiteur nom m p 0.09 0.07 0.07 0.07 +graffiti graffiti nom m 2.73 4.19 1.93 3.45 +graffitis graffiti nom m p 2.73 4.19 0.80 0.74 +graffito graffito nom m s 0.00 0.20 0.00 0.20 +graffité graffiter ver m s 0.01 0.27 0.00 0.14 par:pas; +grafigner grafigner ver 0.14 0.07 0.14 0.07 inf; +graillant grailler ver 0.21 2.64 0.00 0.07 par:pre; +graille grailler ver 0.21 2.64 0.05 0.95 imp:pre:2s;ind:pre:3s; +grailler grailler ver 0.21 2.64 0.15 0.00 inf; +graillon graillon nom m s 0.08 1.22 0.08 1.01 +graillonna graillonner ver 0.14 0.20 0.00 0.07 ind:pas:3s; +graillonnait graillonner ver 0.14 0.20 0.00 0.07 ind:imp:3s; +graillonnant graillonnant adj m s 0.00 0.07 0.00 0.07 +graillonne graillonner ver 0.14 0.20 0.14 0.07 ind:pre:3s; +graillonnements graillonnement nom m p 0.00 0.07 0.00 0.07 +graillonneuse graillonneur nom f s 0.00 0.27 0.00 0.20 +graillonneuses graillonneur nom f p 0.00 0.27 0.00 0.07 +graillonneux graillonneux adj m 0.00 0.14 0.00 0.14 +graillons graillon nom m p 0.08 1.22 0.00 0.20 +graillé grailler ver m s 0.21 2.64 0.01 0.14 par:pas; +graillée grailler ver f s 0.21 2.64 0.00 1.49 par:pas; +grain grain nom m s 14.32 35.95 10.74 24.26 +graine graine nom f s 11.41 13.51 5.51 8.04 +grainer grainer ver 0.00 0.20 0.00 0.07 inf; +graines graine nom f p 11.41 13.51 5.90 5.47 +graineterie graineterie nom f s 0.00 0.20 0.00 0.20 +grainetier grainetier nom m s 0.00 0.34 0.00 0.20 +grainetiers grainetier nom m p 0.00 0.34 0.00 0.14 +grains grain nom m p 14.32 35.95 3.57 11.69 +grainé grainer ver m s 0.00 0.20 0.00 0.14 par:pas; +graissa graisser ver 2.48 4.53 0.00 0.34 ind:pas:3s; +graissage graissage nom m s 0.24 0.27 0.23 0.20 +graissages graissage nom m p 0.24 0.27 0.01 0.07 +graissait graisser ver 2.48 4.53 0.01 0.61 ind:imp:3s; +graissant graisser ver 2.48 4.53 0.00 0.20 par:pre; +graisse graisse nom f s 9.09 18.31 8.38 17.64 +graissent graisser ver 2.48 4.53 0.03 0.54 ind:pre:3p; +graisser graisser ver 2.48 4.53 1.10 1.49 inf; +graissera graisser ver 2.48 4.53 0.02 0.00 ind:fut:3s; +graisserai graisser ver 2.48 4.53 0.01 0.07 ind:fut:1s; +graisses graisse nom f p 9.09 18.31 0.70 0.68 +graisseur graisseur adj m s 0.02 0.00 0.02 0.00 +graisseuse graisseux adj f s 0.82 5.07 0.10 1.42 +graisseuses graisseux adj f p 0.82 5.07 0.07 0.88 +graisseux graisseux adj m 0.82 5.07 0.65 2.77 +graissez graisser ver 2.48 4.53 0.09 0.07 imp:pre:2p;ind:pre:2p; +graissât graisser ver 2.48 4.53 0.00 0.07 sub:imp:3s; +graissé graisser ver m s 2.48 4.53 0.42 0.47 par:pas; +graissée graissé adj f s 0.30 1.08 0.01 0.47 +graissées graisser ver f p 2.48 4.53 0.01 0.07 par:pas; +graissés graisser ver m p 2.48 4.53 0.26 0.00 par:pas; +gram gram nom m s 0.28 0.00 0.28 0.00 +gramen gramen nom m s 0.01 0.20 0.01 0.00 +gramens gramen nom m p 0.01 0.20 0.00 0.20 +graminée graminée nom f s 0.01 1.89 0.01 0.54 +graminées graminée nom f p 0.01 1.89 0.00 1.35 +grammage grammage nom m s 0.03 0.07 0.03 0.00 +grammages grammage nom m p 0.03 0.07 0.00 0.07 +grammaire grammaire nom f s 1.73 6.01 1.73 5.47 +grammaires grammaire nom f p 1.73 6.01 0.00 0.54 +grammairien grammairien nom m s 0.01 1.08 0.01 0.41 +grammairienne grammairien nom f s 0.01 1.08 0.00 0.14 +grammairiennes grammairien nom f p 0.01 1.08 0.00 0.07 +grammairiens grammairien nom m p 0.01 1.08 0.00 0.47 +grammatical grammatical adj m s 0.17 0.68 0.14 0.07 +grammaticale grammatical adj f s 0.17 0.68 0.02 0.41 +grammaticalement grammaticalement adv 0.14 0.14 0.14 0.14 +grammaticales grammatical adj f p 0.17 0.68 0.01 0.07 +grammaticaux grammatical adj m p 0.17 0.68 0.00 0.14 +gramme gramme nom m s 5.81 4.93 1.76 1.22 +grammer grammer ver 0.03 0.00 0.03 0.00 inf; +grammes gramme nom m p 5.81 4.93 4.05 3.72 +gramophone gramophone nom m s 1.14 1.08 1.13 1.01 +gramophones gramophone nom m p 1.14 1.08 0.01 0.07 +grana grana nom m s 0.00 0.14 0.00 0.07 +granas grana nom m p 0.00 0.14 0.00 0.07 +grand_angle grand_angle nom m s 0.06 0.00 0.06 0.00 +grand_chose grand_chose pro_ind m s 28.01 36.08 28.01 36.08 +grand_duc grand_duc nom m s 2.03 1.76 1.90 0.88 +grand_ducal grand_ducal adj f s 0.00 0.07 0.00 0.07 +grand_duché grand_duché nom m s 0.01 0.07 0.01 0.07 +grand_faim grand_faim adv 0.00 0.20 0.00 0.20 +grand_guignol grand_guignol nom m s 0.01 0.00 0.01 0.00 +grand_guignolesque grand_guignolesque adj s 0.01 0.00 0.01 0.00 +grand_hôtel grand_hôtel nom m s 0.00 0.07 0.00 0.07 +grand_hâte grand_hâte adv 0.00 0.07 0.00 0.07 +grand_maître grand_maître nom m s 0.10 0.07 0.10 0.07 +grand_papa grand_papa nom f s 2.35 0.95 0.84 0.27 +grand_messe grand_messe nom f s 0.29 1.28 0.29 1.28 +grand_mère grand_mère nom f s 73.22 94.59 72.39 91.76 +grand_mère grand_mère nom f p 73.22 94.59 0.53 2.16 +grand_neige grand_neige nom m s 0.00 0.07 0.00 0.07 +grand_officier grand_officier nom m s 0.00 0.07 0.00 0.07 +grand_oncle grand_oncle nom m s 0.45 4.26 0.45 3.65 +grand_papa grand_papa nom m s 2.35 0.95 1.50 0.68 +grand_peine grand_peine adv 0.25 4.86 0.25 4.86 +grand_peur grand_peur adv 0.00 0.20 0.00 0.20 +grand_place grand_place nom f s 0.12 1.35 0.12 1.35 +grand_prêtre grand_prêtre nom m s 0.11 0.20 0.11 0.20 +grand_père grand_père nom m s 75.64 96.49 75.19 95.20 +grand_quartier grand_quartier nom m s 0.00 0.34 0.00 0.34 +grand_route grand_route nom f s 0.27 3.65 0.27 3.58 +grand_route grand_route nom f p 0.27 3.65 0.00 0.07 +grand_rue grand_rue nom f s 0.64 2.36 0.64 2.36 +grand_salle grand_salle nom f s 0.00 0.20 0.00 0.20 +grand_tante grand_tante nom f s 1.17 1.76 1.17 1.22 +grand_tante grand_tante nom f p 1.17 1.76 0.00 0.47 +grand_vergue grand_vergue nom f s 0.05 0.00 0.05 0.00 +grand_voile grand_voile nom f s 0.23 0.27 0.23 0.27 +grand grand adj m s 638.72 1244.66 338.27 537.97 +grandît grandir ver 63.99 46.69 0.01 0.07 sub:imp:3s; +grand_duc grand_duc nom f s 2.03 1.76 0.09 0.34 +grande grand adj f s 638.72 1244.66 198.25 378.65 +grandement grandement adv 1.59 2.84 1.59 2.84 +grande_duchesse grande_duchesse nom f p 0.01 0.14 0.01 0.14 +grandes grand adj f p 638.72 1244.66 42.68 126.49 +grandesse grandesse nom f s 0.00 0.14 0.00 0.14 +grandet grandet adj m s 0.00 0.14 0.00 0.14 +grandeur grandeur nom f s 8.75 28.38 7.71 26.49 +grandeurs grandeur nom f p 8.75 28.38 1.04 1.89 +grandi grandir ver m s 63.99 46.69 30.06 13.45 par:pas; +grandie grandir ver f s 63.99 46.69 0.17 0.74 par:pas; +grandiloque grandiloque adj m s 0.00 0.07 0.00 0.07 +grandiloquence grandiloquence nom f s 0.06 0.81 0.06 0.81 +grandiloquent grandiloquent adj m s 0.15 1.69 0.15 0.54 +grandiloquente grandiloquent adj f s 0.15 1.69 0.00 0.74 +grandiloquentes grandiloquent adj f p 0.15 1.69 0.00 0.14 +grandiloquents grandiloquent adj m p 0.15 1.69 0.00 0.27 +grandiose grandiose adj s 4.70 10.00 4.16 8.24 +grandiosement grandiosement adv 0.00 0.14 0.00 0.14 +grandioses grandiose adj p 4.70 10.00 0.53 1.76 +grandir grandir ver 63.99 46.69 13.31 11.22 inf; +grandira grandir ver 63.99 46.69 1.07 0.27 ind:fut:3s; +grandirai grandir ver 63.99 46.69 0.07 0.00 ind:fut:1s; +grandiraient grandir ver 63.99 46.69 0.03 0.07 cnd:pre:3p; +grandirais grandir ver 63.99 46.69 0.01 0.00 cnd:pre:2s; +grandirait grandir ver 63.99 46.69 0.14 0.27 cnd:pre:3s; +grandiras grandir ver 63.99 46.69 0.70 0.20 ind:fut:2s; +grandirent grandir ver 63.99 46.69 0.08 0.41 ind:pas:3p; +grandirez grandir ver 63.99 46.69 0.05 0.07 ind:fut:2p; +grandiriez grandir ver 63.99 46.69 0.01 0.00 cnd:pre:2p; +grandirons grandir ver 63.99 46.69 0.01 0.07 ind:fut:1p; +grandiront grandir ver 63.99 46.69 0.24 0.20 ind:fut:3p; +grandis grandir ver m p 63.99 46.69 2.44 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +grandissaient grandir ver 63.99 46.69 0.44 1.22 ind:imp:3p; +grandissais grandir ver 63.99 46.69 0.17 0.47 ind:imp:1s;ind:imp:2s; +grandissait grandir ver 63.99 46.69 1.28 5.61 ind:imp:3s; +grandissant grandir ver 63.99 46.69 1.52 2.09 par:pre; +grandissante grandissant adj f s 0.87 5.47 0.38 3.11 +grandissantes grandissant adj f p 0.87 5.47 0.03 0.07 +grandissants grandissant adj m p 0.87 5.47 0.01 0.07 +grandisse grandir ver 63.99 46.69 1.36 0.27 sub:pre:1s;sub:pre:3s; +grandissement grandissement nom m s 0.00 0.07 0.00 0.07 +grandissent grandir ver 63.99 46.69 2.55 1.76 ind:pre:3p; +grandisses grandir ver 63.99 46.69 0.31 0.07 sub:pre:2s; +grandissez grandir ver 63.99 46.69 0.28 0.00 imp:pre:2p;ind:pre:2p; +grandissime grandissime adj s 0.03 0.07 0.03 0.07 +grandissions grandir ver 63.99 46.69 0.01 0.07 ind:imp:1p; +grandissons grandir ver 63.99 46.69 0.04 0.07 imp:pre:1p;ind:pre:1p; +grandit grandir ver 63.99 46.69 7.64 6.89 ind:pre:3s;ind:pas:3s; +grand_croix grand_croix nom m p 0.00 0.07 0.00 0.07 +grand_duc grand_duc nom m p 2.03 1.76 0.05 0.54 +grand_mère grand_mère nom f p 73.22 94.59 0.30 0.68 +grand_oncle grand_oncle nom m p 0.45 4.26 0.00 0.61 +grands_parents grands_parents nom m p 4.59 9.19 4.59 9.19 +grand_père grand_père nom m p 75.64 96.49 0.45 1.28 +grand_tante grand_tante nom f p 1.17 1.76 0.00 0.07 +grands grand adj m p 638.72 1244.66 59.52 201.55 +grange grange nom f s 7.33 46.01 6.95 40.74 +granges grange nom f p 7.33 46.01 0.38 5.27 +grangette grangette nom f s 0.00 0.14 0.00 0.14 +granit granit nom m s 1.74 10.07 1.74 9.80 +granita graniter ver 0.00 0.20 0.00 0.14 ind:pas:3s; +granite granite nom m s 0.34 0.47 0.34 0.47 +granitique granitique adj s 0.14 0.61 0.14 0.20 +granitiques granitique adj p 0.14 0.61 0.00 0.41 +granito granito nom m s 0.00 0.07 0.00 0.07 +granits granit nom m p 1.74 10.07 0.00 0.27 +granité granité nom m s 0.17 0.07 0.12 0.07 +granitée graniter ver f s 0.00 0.20 0.00 0.07 par:pas; +granités granité nom m p 0.17 0.07 0.05 0.00 +granulaire granulaire adj m s 0.01 0.00 0.01 0.00 +granulait granuler ver 0.00 0.27 0.00 0.14 ind:imp:3s; +granulation granulation nom f s 0.01 0.34 0.01 0.07 +granulations granulation nom f p 0.01 0.34 0.00 0.27 +granule granuler ver 0.00 0.27 0.00 0.07 ind:pre:3s; +granules granule nom m p 0.11 0.14 0.11 0.14 +granuleuse granuleux adj f s 0.22 1.55 0.17 0.95 +granuleuses granuleux adj f p 0.22 1.55 0.01 0.07 +granuleux granuleux adj m s 0.22 1.55 0.04 0.54 +granulie granulie nom f s 0.01 0.00 0.01 0.00 +granulome granulome nom m s 0.03 0.00 0.03 0.00 +granulé granulé nom m s 0.32 0.47 0.00 0.14 +granulée granuler ver f s 0.00 0.27 0.00 0.07 par:pas; +granulés granulé nom m p 0.32 0.47 0.32 0.34 +grape_fruit grape_fruit nom m s 0.00 0.27 0.00 0.27 +graph graph nom s 0.01 0.00 0.01 0.00 +graphe graphe nom m s 0.14 0.00 0.12 0.00 +graphes graphe nom m p 0.14 0.00 0.03 0.00 +graphie graphie nom f s 0.02 0.61 0.02 0.41 +graphies graphie nom f p 0.02 0.61 0.00 0.20 +graphique graphique nom s 1.31 0.61 0.72 0.20 +graphiques graphique nom p 1.31 0.61 0.59 0.41 +graphisme graphisme nom m s 0.28 0.41 0.23 0.41 +graphismes graphisme nom m p 0.28 0.41 0.04 0.00 +graphiste graphiste nom s 0.18 0.00 0.18 0.00 +graphite graphite nom m s 0.29 0.07 0.29 0.00 +graphites graphite nom m p 0.29 0.07 0.00 0.07 +graphologie graphologie nom f s 0.15 0.00 0.15 0.00 +graphologique graphologique adj m s 0.01 0.07 0.01 0.07 +graphologue graphologue nom s 0.18 0.20 0.17 0.14 +graphologues graphologue nom p 0.18 0.20 0.01 0.07 +graphomane graphomane nom s 0.01 0.14 0.01 0.00 +graphomanes graphomane nom p 0.01 0.14 0.00 0.14 +graphomanie graphomanie nom f s 0.00 0.07 0.00 0.07 +graphomètre graphomètre nom m s 0.00 0.07 0.00 0.07 +graphophone graphophone nom m s 0.01 0.00 0.01 0.00 +grappa grappa nom f s 0.72 0.34 0.72 0.34 +grappe grappe nom f s 2.51 12.30 1.93 4.39 +grappes grappe nom f p 2.51 12.30 0.59 7.91 +grappillage grappillage nom m s 0.07 0.00 0.07 0.00 +grappillais grappiller ver 0.13 0.95 0.00 0.14 ind:imp:1s; +grappillait grappiller ver 0.13 0.95 0.01 0.20 ind:imp:3s; +grappillent grappiller ver 0.13 0.95 0.00 0.07 ind:pre:3p; +grappiller grappiller ver 0.13 0.95 0.08 0.41 inf; +grappilleur grappilleur nom m s 0.01 0.00 0.01 0.00 +grappillon grappillon nom m s 0.00 0.14 0.00 0.07 +grappillons grappillon nom m p 0.00 0.14 0.00 0.07 +grappillé grappiller ver m s 0.13 0.95 0.01 0.07 par:pas; +grappillées grappiller ver f p 0.13 0.95 0.03 0.07 par:pas; +grappin grappin nom m s 1.54 0.81 1.36 0.68 +grappins grappin nom m p 1.54 0.81 0.18 0.14 +gras_double gras_double nom m s 0.22 1.08 0.22 1.01 +gras_double gras_double nom m p 0.22 1.08 0.00 0.07 +gras gras adj m 14.31 48.92 10.55 25.61 +grasse gras adj f s 14.31 48.92 2.19 14.12 +grassement grassement adv 0.24 0.81 0.24 0.81 +grasses gras adj f p 14.31 48.92 1.57 9.19 +grasseya grasseyer ver 0.00 0.61 0.00 0.20 ind:pas:3s; +grasseyait grasseyer ver 0.00 0.61 0.00 0.14 ind:imp:3s; +grasseyant grasseyant adj m s 0.00 0.61 0.00 0.20 +grasseyante grasseyant adj f s 0.00 0.61 0.00 0.41 +grasseyement grasseyement nom m s 0.00 0.41 0.00 0.27 +grasseyements grasseyement nom m p 0.00 0.41 0.00 0.14 +grasseyer grasseyer ver 0.00 0.61 0.00 0.07 inf; +grasseyé grasseyer ver m s 0.00 0.61 0.00 0.07 par:pas; +grassouillet grassouillet adj m s 1.08 1.96 0.66 0.88 +grassouillets grassouillet adj m p 1.08 1.96 0.06 0.14 +grassouillette grassouillet adj f s 1.08 1.96 0.28 0.74 +grassouillettes grassouillet adj f p 1.08 1.96 0.08 0.20 +gratifia gratifier ver 0.76 4.26 0.00 0.74 ind:pas:3s; +gratifiaient gratifier ver 0.76 4.26 0.00 0.14 ind:imp:3p; +gratifiait gratifier ver 0.76 4.26 0.01 0.20 ind:imp:3s; +gratifiant gratifiant adj m s 0.99 0.27 0.78 0.14 +gratifiante gratifiant adj f s 0.99 0.27 0.21 0.14 +gratification gratification nom f s 0.34 0.68 0.29 0.34 +gratifications gratification nom f p 0.34 0.68 0.04 0.34 +gratifie gratifier ver 0.76 4.26 0.17 0.68 ind:pre:1s;ind:pre:3s; +gratifier gratifier ver 0.76 4.26 0.19 0.54 inf; +gratifierait gratifier ver 0.76 4.26 0.00 0.07 cnd:pre:3s; +gratifies gratifier ver 0.76 4.26 0.00 0.07 ind:pre:2s; +gratifiez gratifier ver 0.76 4.26 0.01 0.00 ind:pre:2p; +gratifièrent gratifier ver 0.76 4.26 0.01 0.07 ind:pas:3p; +gratifié gratifier ver m s 0.76 4.26 0.14 1.15 par:pas; +gratifiée gratifier ver f s 0.76 4.26 0.03 0.20 par:pas; +gratifiés gratifier ver m p 0.76 4.26 0.10 0.27 par:pas; +gratin gratin nom m s 1.63 2.16 1.63 2.09 +gratiner gratiner ver 0.29 0.81 0.01 0.07 inf; +gratins gratin nom m p 1.63 2.16 0.00 0.07 +gratiné gratiner ver m s 0.29 0.81 0.04 0.20 par:pas; +gratinée gratiner ver f s 0.29 0.81 0.05 0.34 par:pas; +gratinées gratiner ver f p 0.29 0.81 0.17 0.20 par:pas; +gratinés gratiner ver m p 0.29 0.81 0.03 0.00 par:pas; +gratis_pro_deo gratis_pro_deo adv 0.00 0.14 0.00 0.14 +gratis gratis adv 4.39 3.11 4.39 3.11 +gratitude gratitude nom f s 7.61 8.38 7.61 8.24 +gratitudes gratitude nom f p 7.61 8.38 0.00 0.14 +gratos gratos adv 3.94 0.68 3.94 0.68 +gratouillait gratouiller ver 0.17 0.41 0.00 0.07 ind:imp:3s; +gratouillant gratouiller ver 0.17 0.41 0.00 0.07 par:pre; +gratouille gratouiller ver 0.17 0.41 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gratouillerait gratouiller ver 0.17 0.41 0.00 0.07 cnd:pre:3s; +gratouillis gratouillis nom m 0.00 0.07 0.00 0.07 +gratta gratter ver 12.11 38.51 0.00 5.81 ind:pas:3s; +grattage grattage nom m s 0.10 0.41 0.10 0.34 +grattages grattage nom m p 0.10 0.41 0.00 0.07 +grattai gratter ver 12.11 38.51 0.00 0.20 ind:pas:1s; +grattaient gratter ver 12.11 38.51 0.14 0.88 ind:imp:3p; +grattais gratter ver 12.11 38.51 0.13 0.88 ind:imp:1s;ind:imp:2s; +grattait gratter ver 12.11 38.51 0.25 5.14 ind:imp:3s; +grattant gratter ver 12.11 38.51 0.12 3.85 par:pre; +gratte_ciel gratte_ciel nom m 1.40 3.04 1.14 3.04 +gratte_ciel gratte_ciel nom m p 1.40 3.04 0.26 0.00 +gratte_cul gratte_cul nom m 0.00 0.14 0.00 0.14 +gratte_dos gratte_dos nom m 0.11 0.00 0.11 0.00 +gratte_papier gratte_papier nom m 0.67 0.54 0.45 0.54 +gratte_papier gratte_papier nom m p 0.67 0.54 0.22 0.00 +gratte_pieds gratte_pieds nom m 0.00 0.20 0.00 0.20 +gratte gratter ver 12.11 38.51 3.75 7.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grattement grattement nom m s 0.15 1.49 0.05 1.22 +grattements grattement nom m p 0.15 1.49 0.10 0.27 +grattent gratter ver 12.11 38.51 0.51 1.15 ind:pre:3p; +gratter gratter ver 12.11 38.51 5.03 8.85 inf; +grattera gratter ver 12.11 38.51 0.03 0.14 ind:fut:3s; +gratterai gratter ver 12.11 38.51 0.10 0.07 ind:fut:1s; +gratteraient gratter ver 12.11 38.51 0.00 0.07 cnd:pre:3p; +gratterait gratter ver 12.11 38.51 0.01 0.20 cnd:pre:3s; +gratterez gratter ver 12.11 38.51 0.00 0.07 ind:fut:2p; +gratterons gratteron nom m p 0.00 0.20 0.00 0.20 +grattes gratter ver 12.11 38.51 0.49 0.27 ind:pre:2s; +gratteur gratteur nom m s 0.05 0.34 0.04 0.07 +gratteurs gratteur nom m p 0.05 0.34 0.01 0.27 +grattez gratter ver 12.11 38.51 0.80 0.07 imp:pre:2p;ind:pre:2p; +grattoir grattoir nom m s 0.09 1.49 0.08 1.15 +grattoirs grattoir nom m p 0.09 1.49 0.01 0.34 +grattons gratter ver 12.11 38.51 0.02 0.00 ind:pre:1p; +grattât gratter ver 12.11 38.51 0.10 0.07 sub:imp:3s; +grattouillant grattouiller ver 0.01 0.27 0.00 0.07 par:pre; +grattouillent grattouiller ver 0.01 0.27 0.00 0.07 ind:pre:3p; +grattouiller grattouiller ver 0.01 0.27 0.01 0.00 inf; +grattouilles grattouiller ver 0.01 0.27 0.00 0.07 ind:pre:2s; +grattouillis grattouillis nom m 0.05 0.07 0.05 0.07 +grattouillé grattouiller ver m s 0.01 0.27 0.00 0.07 par:pas; +gratté gratter ver m s 12.11 38.51 0.56 2.43 par:pas; +grattée gratter ver f s 12.11 38.51 0.03 0.47 par:pas; +grattées gratter ver f p 12.11 38.51 0.01 0.41 par:pas; +gratture gratture nom f s 0.00 0.07 0.00 0.07 +grattés gratter ver m p 12.11 38.51 0.04 0.41 par:pas; +gratuit gratuit adj m s 24.28 13.11 12.15 5.81 +gratuite gratuit adj f s 24.28 13.11 6.43 4.73 +gratuitement gratuitement adv 6.37 2.91 6.37 2.91 +gratuites gratuit adj f p 24.28 13.11 1.81 1.15 +gratuits gratuit adj m p 24.28 13.11 3.89 1.42 +gratuité gratuité nom f s 0.05 1.69 0.05 1.69 +grau grau nom m s 0.01 0.00 0.01 0.00 +grava graver ver 10.34 18.38 0.04 0.47 ind:pas:3s; +gravai graver ver 10.34 18.38 0.00 0.07 ind:pas:1s; +gravaient graver ver 10.34 18.38 0.02 0.27 ind:imp:3p; +gravais graver ver 10.34 18.38 0.02 0.20 ind:imp:1s; +gravait graver ver 10.34 18.38 0.16 0.68 ind:imp:3s; +gravant graver ver 10.34 18.38 0.02 0.34 par:pre; +gravats gravats nom m p 0.34 4.12 0.34 4.12 +grave grave adj s 142.48 93.78 134.19 74.86 +graveleuse graveleux adj f s 0.06 1.35 0.01 0.20 +graveleuses graveleux adj f p 0.06 1.35 0.00 0.47 +graveleux graveleux adj m s 0.06 1.35 0.04 0.68 +gravelle gravelle nom f s 0.00 0.34 0.00 0.27 +gravelles gravelle nom f p 0.00 0.34 0.00 0.07 +gravelé graveler ver m s 0.00 0.14 0.00 0.07 par:pas; +gravelés graveler ver m p 0.00 0.14 0.00 0.07 par:pas; +gravement gravement adv 6.43 19.73 6.43 19.73 +gravent graver ver 10.34 18.38 0.04 0.20 ind:pre:3p; +graver graver ver 10.34 18.38 1.94 1.76 inf; +graveraient graver ver 10.34 18.38 0.00 0.14 cnd:pre:3p; +graverais graver ver 10.34 18.38 0.01 0.00 cnd:pre:1s; +graverait graver ver 10.34 18.38 0.01 0.00 cnd:pre:3s; +graves grave adj p 142.48 93.78 8.29 18.92 +graveur graveur nom m s 0.40 1.08 0.38 0.81 +graveurs graveur nom m p 0.40 1.08 0.02 0.27 +gravez graver ver 10.34 18.38 0.47 0.00 imp:pre:2p;ind:pre:2p; +gravi gravir ver m s 2.60 17.16 0.44 2.16 par:pas; +gravide gravide adj s 0.04 0.00 0.04 0.00 +gravidité gravidité nom f s 0.01 0.00 0.01 0.00 +gravie gravir ver f s 2.60 17.16 0.00 0.20 par:pas; +gravier gravier nom m s 2.32 15.41 1.40 11.35 +graviers gravier nom m p 2.32 15.41 0.92 4.05 +gravies gravir ver f p 2.60 17.16 0.10 0.07 par:pas; +gravillon gravillon nom m s 0.10 1.22 0.00 0.20 +gravillonnée gravillonner ver f s 0.00 0.20 0.00 0.14 par:pas; +gravillonnées gravillonner ver f p 0.00 0.20 0.00 0.07 par:pas; +gravillons gravillon nom m p 0.10 1.22 0.10 1.01 +gravir gravir ver 2.60 17.16 1.30 5.41 inf; +gravirai gravir ver 2.60 17.16 0.05 0.00 ind:fut:1s; +gravirait gravir ver 2.60 17.16 0.00 0.07 cnd:pre:3s; +gravirent gravir ver 2.60 17.16 0.01 0.68 ind:pas:3p; +gravirons gravir ver 2.60 17.16 0.01 0.07 ind:fut:1p; +gravis gravir ver m p 2.60 17.16 0.40 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +gravissaient gravir ver 2.60 17.16 0.00 0.41 ind:imp:3p; +gravissais gravir ver 2.60 17.16 0.01 0.20 ind:imp:1s;ind:imp:2s; +gravissait gravir ver 2.60 17.16 0.01 0.95 ind:imp:3s; +gravissant gravir ver 2.60 17.16 0.05 0.81 par:pre; +gravisse gravir ver 2.60 17.16 0.00 0.07 sub:pre:1s; +gravissent gravir ver 2.60 17.16 0.00 0.41 ind:pre:3p; +gravissime gravissime adj f s 0.41 0.14 0.17 0.07 +gravissimes gravissime adj p 0.41 0.14 0.25 0.07 +gravissions gravir ver 2.60 17.16 0.00 0.14 ind:imp:1p; +gravissons gravir ver 2.60 17.16 0.01 0.47 imp:pre:1p;ind:pre:1p; +gravit gravir ver 2.60 17.16 0.22 3.92 ind:pre:3s;ind:pas:3s; +gravitaient graviter ver 0.39 1.08 0.00 0.34 ind:imp:3p; +gravitait graviter ver 0.39 1.08 0.03 0.20 ind:imp:3s; +gravitant graviter ver 0.39 1.08 0.00 0.07 par:pre; +gravitation gravitation nom f s 0.98 1.22 0.98 1.22 +gravitationnel gravitationnel adj m s 1.66 0.00 0.61 0.00 +gravitationnelle gravitationnel adj f s 1.66 0.00 0.59 0.00 +gravitationnelles gravitationnel adj f p 1.66 0.00 0.44 0.00 +gravitationnels gravitationnel adj m p 1.66 0.00 0.01 0.00 +gravite graviter ver 0.39 1.08 0.21 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +graviter graviter ver 0.39 1.08 0.04 0.27 inf; +gravières gravière nom f p 0.00 0.07 0.00 0.07 +gravitons graviton nom m p 0.02 0.00 0.02 0.00 +gravité gravité nom f s 7.58 17.16 7.58 17.16 +gravons graver ver 10.34 18.38 0.05 0.00 imp:pre:1p; +gravos gravos adj m 0.01 0.20 0.01 0.20 +gravosse gravosse nom f s 0.00 1.42 0.00 1.35 +gravosses gravosse nom f p 0.00 1.42 0.00 0.07 +gravât graver ver 10.34 18.38 0.00 0.07 sub:imp:3s; +gravèrent graver ver 10.34 18.38 0.14 0.07 ind:pas:3p; +gravé graver ver m s 10.34 18.38 3.58 6.08 par:pas; +gravée graver ver f s 10.34 18.38 1.05 2.57 par:pas; +gravées graver ver f p 10.34 18.38 0.82 1.69 par:pas; +gravure gravure nom f s 1.45 10.00 0.88 3.85 +gravures gravure nom f p 1.45 10.00 0.57 6.15 +gravés graver ver m p 10.34 18.38 1.13 3.11 par:pas; +gray gray nom m s 0.10 0.07 0.03 0.00 +grays gray nom m p 0.10 0.07 0.08 0.07 +grec grec nom m s 11.36 26.22 6.31 14.86 +grecque grec adj f s 12.14 29.46 3.69 9.26 +grecques grec adj f p 12.14 29.46 0.96 3.18 +grecs grec nom m p 11.36 26.22 4.58 8.51 +gredin gredin nom m s 1.82 0.61 1.25 0.34 +gredine gredin nom f s 1.82 0.61 0.02 0.07 +gredins gredin nom m p 1.82 0.61 0.55 0.20 +green green nom m s 1.13 0.27 1.04 0.07 +greens green nom m p 1.13 0.27 0.09 0.20 +greffage greffage nom m s 0.01 0.00 0.01 0.00 +greffaient greffer ver 2.33 2.30 0.00 0.07 ind:imp:3p; +greffais greffer ver 2.33 2.30 0.01 0.00 ind:imp:1s; +greffait greffer ver 2.33 2.30 0.00 0.14 ind:imp:3s; +greffant greffer ver 2.33 2.30 0.01 0.27 par:pre; +greffe greffe nom s 4.25 5.41 3.31 4.86 +greffent greffer ver 2.33 2.30 0.14 0.14 ind:pre:3p; +greffer greffer ver 2.33 2.30 0.84 0.61 inf; +greffera greffer ver 2.33 2.30 0.01 0.07 ind:fut:3s; +grefferais greffer ver 2.33 2.30 0.00 0.07 cnd:pre:1s; +grefferons greffer ver 2.33 2.30 0.00 0.07 ind:fut:1p; +grefferont greffer ver 2.33 2.30 0.00 0.07 ind:fut:3p; +greffes greffe nom p 4.25 5.41 0.94 0.54 +greffier greffier nom m s 1.54 3.65 1.42 3.18 +greffiers greffier nom m p 1.54 3.65 0.04 0.47 +greffière greffier nom f s 1.54 3.65 0.08 0.00 +greffon greffon nom m s 0.33 0.20 0.18 0.00 +greffons greffon nom m p 0.33 0.20 0.16 0.20 +greffé greffer ver m s 2.33 2.30 0.44 0.47 par:pas; +greffée greffé adj f s 0.34 0.41 0.26 0.34 +greffées greffer ver f p 2.33 2.30 0.01 0.00 par:pas; +greffés greffer ver m p 2.33 2.30 0.20 0.07 par:pas; +grelot grelot nom m s 0.43 4.66 0.11 1.82 +grelots grelot nom m p 0.43 4.66 0.32 2.84 +grelotta grelotter ver 1.25 10.27 0.00 0.20 ind:pas:3s; +grelottaient grelotter ver 1.25 10.27 0.00 0.41 ind:imp:3p; +grelottais grelotter ver 1.25 10.27 0.01 0.47 ind:imp:1s; +grelottait grelotter ver 1.25 10.27 0.27 1.76 ind:imp:3s; +grelottant grelottant adj m s 0.11 2.16 0.10 0.74 +grelottante grelottant adj f s 0.11 2.16 0.00 0.68 +grelottantes grelottant adj f p 0.11 2.16 0.00 0.34 +grelottants grelottant adj m p 0.11 2.16 0.01 0.41 +grelotte grelotter ver 1.25 10.27 0.65 1.49 ind:pre:1s;ind:pre:3s; +grelottement grelottement nom m s 0.00 0.95 0.00 0.88 +grelottements grelottement nom m p 0.00 0.95 0.00 0.07 +grelottent grelotter ver 1.25 10.27 0.00 0.47 ind:pre:3p; +grelotter grelotter ver 1.25 10.27 0.14 2.03 inf; +grelottes grelotter ver 1.25 10.27 0.01 0.20 ind:pre:2s; +grelotteux grelotteux nom m 0.00 0.07 0.00 0.07 +grelottions grelotter ver 1.25 10.27 0.14 0.07 ind:imp:1p; +grelottons grelotter ver 1.25 10.27 0.00 0.20 ind:pre:1p; +grelottèrent grelotter ver 1.25 10.27 0.00 0.07 ind:pas:3p; +grelotté grelotter ver m s 1.25 10.27 0.01 0.27 par:pas; +grelottée grelotter ver f s 1.25 10.27 0.00 0.07 par:pas; +greluche greluche nom f s 0.57 1.01 0.29 0.47 +greluches greluche nom f p 0.57 1.01 0.28 0.54 +greluchon greluchon nom m s 0.00 0.20 0.00 0.20 +grenache grenache nom m s 0.00 0.27 0.00 0.27 +grenadage grenadage nom m s 0.03 0.00 0.03 0.00 +grenade grenade nom f s 11.67 12.97 6.32 6.49 +grenader grenader ver 0.05 0.20 0.05 0.07 inf; +grenades grenade nom f p 11.67 12.97 5.35 6.49 +grenadeur grenadeur nom m s 0.01 0.00 0.01 0.00 +grenadier grenadier nom m s 0.14 4.05 0.04 1.42 +grenadiers grenadier nom m p 0.14 4.05 0.10 2.64 +grenadine grenadine nom f s 0.41 3.99 0.14 3.72 +grenadines grenadine nom f p 0.41 3.99 0.27 0.27 +grenadé grenader ver m s 0.05 0.20 0.00 0.14 par:pas; +grenaille grenaille nom f s 0.00 0.14 0.00 0.07 +grenailles grenaille nom f p 0.00 0.14 0.00 0.07 +grenat grenat adj 0.16 3.85 0.16 3.85 +grenats grenat nom m p 0.06 0.61 0.04 0.27 +grenelle greneler ver 0.00 0.07 0.00 0.07 imp:pre:2s; +greneta greneter ver 0.00 0.07 0.00 0.07 ind:pas:3s; +greneuse greneur nom f s 0.00 0.07 0.00 0.07 +grenier grenier nom m s 9.39 24.39 9.05 19.53 +greniers grenier nom m p 9.39 24.39 0.34 4.86 +grenoblois grenoblois nom m s 0.00 0.14 0.00 0.14 +grenouillage grenouillage nom m s 0.14 0.00 0.14 0.00 +grenouillait grenouiller ver 0.00 0.07 0.00 0.07 ind:imp:3s; +grenouillard grenouillard adj m s 0.01 0.00 0.01 0.00 +grenouille_taureau grenouille_taureau nom f s 0.01 0.00 0.01 0.00 +grenouille grenouille nom f s 9.09 10.47 5.74 4.59 +grenouilles grenouille nom f p 9.09 10.47 3.35 5.88 +grenouillettes grenouillette nom f p 0.00 0.07 0.00 0.07 +grenouillère grenouiller nom f s 0.06 0.00 0.06 0.00 +grenouillères grenouillère nom f p 0.05 0.00 0.05 0.00 +grené grener ver m s 0.00 0.34 0.00 0.07 par:pas; +grenu grenu adj m s 0.01 1.89 0.01 0.74 +grenée grener ver f s 0.00 0.34 0.00 0.07 par:pas; +grenue grenu adj f s 0.01 1.89 0.00 0.68 +grenées grener ver f p 0.00 0.34 0.00 0.07 par:pas; +grenues grenu adj f p 0.01 1.89 0.00 0.34 +grenures grenure nom f p 0.00 0.14 0.00 0.14 +grenus grenu adj m p 0.01 1.89 0.00 0.14 +gressin gressin nom m s 0.04 0.27 0.03 0.20 +gressins gressin nom m p 0.04 0.27 0.01 0.07 +gretchen gretchen nom f s 1.89 0.41 1.89 0.34 +gretchens gretchen nom f p 1.89 0.41 0.00 0.07 +grevaient grever ver 0.18 0.81 0.00 0.07 ind:imp:3p; +grever grever ver 0.18 0.81 0.02 0.07 inf; +grevé grever ver m s 0.18 0.81 0.01 0.14 par:pas; +grevée grever ver f s 0.18 0.81 0.00 0.20 par:pas; +grevés grever ver m p 0.18 0.81 0.00 0.07 par:pas; +gri_gri gri_gri nom m s 0.21 0.14 0.21 0.14 +gribiche gribiche adj f s 0.00 0.14 0.00 0.14 +gribouilla gribouiller ver 0.60 1.69 0.00 0.07 ind:pas:3s; +gribouillage gribouillage nom m s 0.66 0.54 0.51 0.20 +gribouillages gribouillage nom m p 0.66 0.54 0.16 0.34 +gribouillais gribouiller ver 0.60 1.69 0.02 0.00 ind:imp:1s; +gribouillait gribouiller ver 0.60 1.69 0.01 0.14 ind:imp:3s; +gribouillant gribouiller ver 0.60 1.69 0.01 0.07 par:pre; +gribouille gribouiller ver 0.60 1.69 0.19 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gribouillent gribouiller ver 0.60 1.69 0.00 0.07 ind:pre:3p; +gribouiller gribouiller ver 0.60 1.69 0.13 0.41 inf; +gribouilles gribouiller ver 0.60 1.69 0.01 0.07 ind:pre:2s; +gribouilleur gribouilleur nom m s 0.06 0.07 0.06 0.07 +gribouillez gribouiller ver 0.60 1.69 0.03 0.00 imp:pre:2p;ind:pre:2p; +gribouillis gribouillis nom m 0.85 1.01 0.85 1.01 +gribouillé gribouiller ver m s 0.60 1.69 0.18 0.14 par:pas; +gribouillée gribouiller ver f s 0.60 1.69 0.01 0.07 par:pas; +gribouillées gribouiller ver f p 0.60 1.69 0.00 0.14 par:pas; +gribouillés gribouiller ver m p 0.60 1.69 0.00 0.20 par:pas; +grief grief nom m s 0.77 7.43 0.23 2.91 +griefs grief nom m p 0.77 7.43 0.54 4.53 +griffa griffer ver 3.28 9.53 0.00 0.68 ind:pas:3s; +griffage griffage nom m s 0.00 0.07 0.00 0.07 +griffai griffer ver 3.28 9.53 0.00 0.07 ind:pas:1s; +griffaient griffer ver 3.28 9.53 0.02 0.95 ind:imp:3p; +griffais griffer ver 3.28 9.53 0.01 0.07 ind:imp:1s; +griffait griffer ver 3.28 9.53 0.10 0.88 ind:imp:3s; +griffant griffer ver 3.28 9.53 0.05 0.68 par:pre; +griffe griffe nom f s 8.11 13.92 1.06 2.70 +griffent griffer ver 3.28 9.53 0.20 0.20 ind:pre:3p; +griffer griffer ver 3.28 9.53 0.64 2.57 inf; +griffera griffer ver 3.28 9.53 0.02 0.14 ind:fut:3s; +grifferait griffer ver 3.28 9.53 0.00 0.07 cnd:pre:3s; +griffes griffe nom f p 8.11 13.92 7.04 11.22 +griffeur griffeur nom m s 0.01 0.00 0.01 0.00 +griffon griffon nom m s 0.59 1.42 0.57 1.01 +griffonna griffonner ver 0.65 7.97 0.00 0.68 ind:pas:3s; +griffonnage griffonnage nom m s 0.07 0.61 0.04 0.20 +griffonnages griffonnage nom m p 0.07 0.61 0.04 0.41 +griffonnai griffonner ver 0.65 7.97 0.00 0.14 ind:pas:1s; +griffonnaient griffonner ver 0.65 7.97 0.00 0.07 ind:imp:3p; +griffonnais griffonner ver 0.65 7.97 0.01 0.20 ind:imp:1s;ind:imp:2s; +griffonnait griffonner ver 0.65 7.97 0.16 0.61 ind:imp:3s; +griffonnant griffonner ver 0.65 7.97 0.03 0.47 par:pre; +griffonne griffonner ver 0.65 7.97 0.18 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +griffonnent griffonner ver 0.65 7.97 0.00 0.14 ind:pre:3p; +griffonner griffonner ver 0.65 7.97 0.10 1.55 inf; +griffonnes griffonner ver 0.65 7.97 0.03 0.07 ind:pre:2s; +griffonneur griffonneur nom m s 0.14 0.00 0.14 0.00 +griffonnez griffonner ver 0.65 7.97 0.02 0.00 imp:pre:2p;ind:pre:2p; +griffonné griffonner ver m s 0.65 7.97 0.04 1.15 par:pas; +griffonnée griffonner ver f s 0.65 7.97 0.03 0.34 par:pas; +griffonnées griffonner ver f p 0.65 7.97 0.01 0.74 par:pas; +griffonnés griffonner ver m p 0.65 7.97 0.04 0.74 par:pas; +griffons griffon nom m p 0.59 1.42 0.03 0.41 +grifftons griffton nom m p 0.00 0.07 0.00 0.07 +griffé griffer ver m s 3.28 9.53 1.40 0.74 par:pas; +griffu griffu adj m s 0.21 1.89 0.16 0.27 +griffée griffer ver f s 3.28 9.53 0.21 0.34 par:pas; +griffue griffu adj f s 0.21 1.89 0.00 0.34 +griffées griffé adj f p 0.14 0.81 0.01 0.14 +griffues griffu adj f p 0.21 1.89 0.01 0.95 +griffure griffure nom f s 0.82 0.81 0.19 0.20 +griffures griffure nom f p 0.82 0.81 0.63 0.61 +griffés griffer ver m p 3.28 9.53 0.05 0.20 par:pas; +griffus griffu adj m p 0.21 1.89 0.04 0.34 +grifton grifton nom m s 0.00 0.14 0.00 0.14 +grignota grignoter ver 3.52 10.27 0.00 0.68 ind:pas:3s; +grignotage grignotage nom m s 0.10 0.34 0.10 0.20 +grignotages grignotage nom m p 0.10 0.34 0.00 0.14 +grignotaient grignoter ver 3.52 10.27 0.02 0.61 ind:imp:3p; +grignotais grignoter ver 3.52 10.27 0.03 0.27 ind:imp:1s; +grignotait grignoter ver 3.52 10.27 0.03 1.69 ind:imp:3s; +grignotant grignoter ver 3.52 10.27 0.16 1.22 par:pre; +grignote grignoter ver 3.52 10.27 0.60 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +grignotement grignotement nom m s 0.04 0.88 0.04 0.88 +grignotent grignoter ver 3.52 10.27 0.14 0.47 ind:pre:3p; +grignoter grignoter ver 3.52 10.27 1.69 2.57 inf; +grignotera grignoter ver 3.52 10.27 0.01 0.07 ind:fut:3s; +grignoterai grignoter ver 3.52 10.27 0.16 0.00 ind:fut:1s; +grignoteraient grignoter ver 3.52 10.27 0.00 0.07 cnd:pre:3p; +grignoterons grignoter ver 3.52 10.27 0.10 0.00 ind:fut:1p; +grignoteront grignoter ver 3.52 10.27 0.01 0.00 ind:fut:3p; +grignoteurs grignoteur nom m p 0.00 0.07 0.00 0.07 +grignoteuses grignoteur adj f p 0.00 0.14 0.00 0.14 +grignotions grignoter ver 3.52 10.27 0.00 0.14 ind:imp:1p; +grignotis grignotis nom m 0.00 0.14 0.00 0.14 +grignotons grignoter ver 3.52 10.27 0.02 0.07 imp:pre:1p;ind:pre:1p; +grignotèrent grignoter ver 3.52 10.27 0.00 0.14 ind:pas:3p; +grignoté grignoter ver m s 3.52 10.27 0.51 0.74 par:pas; +grignotée grignoter ver f s 3.52 10.27 0.01 0.14 par:pas; +grignotées grignoter ver f p 3.52 10.27 0.02 0.07 par:pas; +grignotés grignoter ver m p 3.52 10.27 0.00 0.07 par:pas; +grigou grigou nom m s 0.02 0.41 0.02 0.41 +grigri grigri nom m s 0.48 0.61 0.46 0.07 +grigris grigri nom m p 0.48 0.61 0.02 0.54 +gril gril nom m s 0.68 1.76 0.64 1.49 +grill_room grill_room nom m s 0.00 0.27 0.00 0.27 +grill grill nom m s 1.66 0.14 1.66 0.14 +grilla griller ver 14.20 12.70 0.00 0.27 ind:pas:3s; +grillade grillade nom f s 0.69 1.08 0.41 0.54 +grilladerie grilladerie nom f s 0.02 0.00 0.02 0.00 +grillades grillade nom f p 0.69 1.08 0.28 0.54 +grillage grillage nom m s 1.48 12.03 1.47 9.59 +grillageront grillager ver 0.18 0.88 0.00 0.07 ind:fut:3p; +grillages grillage nom m p 1.48 12.03 0.01 2.43 +grillagez grillager ver 0.18 0.88 0.01 0.00 imp:pre:2p; +grillagé grillager ver m s 0.18 0.88 0.01 0.20 par:pas; +grillagée grillager ver f s 0.18 0.88 0.12 0.34 par:pas; +grillagées grillager ver f p 0.18 0.88 0.04 0.20 par:pas; +grillagés grillagé adj m p 0.14 2.64 0.14 0.20 +grillaient griller ver 14.20 12.70 0.00 0.14 ind:imp:3p; +grillais griller ver 14.20 12.70 0.01 0.14 ind:imp:1s; +grillait griller ver 14.20 12.70 0.06 1.35 ind:imp:3s; +grillant griller ver 14.20 12.70 0.16 0.88 par:pre; +grille_pain grille_pain nom m 2.90 0.27 2.90 0.27 +grille grille nom f s 11.01 58.24 9.09 43.85 +grillent griller ver 14.20 12.70 0.24 0.27 ind:pre:3p; +griller griller ver 14.20 12.70 4.97 4.05 inf; +grillera griller ver 14.20 12.70 0.16 0.00 ind:fut:3s; +grillerai griller ver 14.20 12.70 0.02 0.00 ind:fut:1s; +grilleraient griller ver 14.20 12.70 0.02 0.07 cnd:pre:3p; +grillerais griller ver 14.20 12.70 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +grillerait griller ver 14.20 12.70 0.01 0.00 cnd:pre:3s; +grilleras griller ver 14.20 12.70 0.28 0.00 ind:fut:2s; +grillerez griller ver 14.20 12.70 0.12 0.07 ind:fut:2p; +grillerions griller ver 14.20 12.70 0.14 0.00 cnd:pre:1p; +grilleront griller ver 14.20 12.70 0.01 0.07 ind:fut:3p; +grilles grille nom f p 11.01 58.24 1.92 14.39 +grillez griller ver 14.20 12.70 0.16 0.00 imp:pre:2p;ind:pre:2p; +grilliez griller ver 14.20 12.70 0.01 0.00 ind:imp:2p; +grilloirs grilloir nom m p 0.00 0.07 0.00 0.07 +grillon grillon nom m s 1.45 4.59 0.98 2.09 +grillons grillon nom m p 1.45 4.59 0.46 2.50 +grillots grillot nom m p 0.00 0.07 0.00 0.07 +grillé griller ver m s 14.20 12.70 4.10 2.70 par:pas; +grillée grillé adj f s 4.30 7.57 0.76 1.15 +grillées grillé adj f p 4.30 7.57 0.50 1.62 +grillés grillé adj m p 4.30 7.57 0.91 1.49 +grils gril nom m p 0.68 1.76 0.04 0.27 +grima grimer ver 0.20 0.81 0.04 0.00 ind:pas:3s; +grimace_éclair grimace_éclair nom f s 0.01 0.00 0.01 0.00 +grimace grimace nom f s 4.50 31.49 2.28 22.57 +grimacement grimacement nom m s 0.00 0.07 0.00 0.07 +grimacent grimacer ver 0.49 12.36 0.04 0.14 ind:pre:3p; +grimacer grimacer ver 0.49 12.36 0.16 1.96 inf; +grimaceries grimacerie nom f p 0.00 0.07 0.00 0.07 +grimaces grimace nom f p 4.50 31.49 2.23 8.92 +grimacez grimacer ver 0.49 12.36 0.03 0.07 imp:pre:2p;ind:pre:2p; +grimacier grimacier nom m s 0.27 0.34 0.00 0.34 +grimaciers grimacier nom m p 0.27 0.34 0.27 0.00 +grimaciez grimacer ver 0.49 12.36 0.00 0.07 ind:imp:2p; +grimacions grimacer ver 0.49 12.36 0.00 0.07 ind:imp:1p; +grimacèrent grimacer ver 0.49 12.36 0.00 0.07 ind:pas:3p; +grimacé grimacer ver m s 0.49 12.36 0.05 0.88 par:pas; +grimage grimage nom m s 0.02 0.20 0.02 0.20 +grimait grimer ver 0.20 0.81 0.00 0.14 ind:imp:3s; +grimant grimer ver 0.20 0.81 0.00 0.07 par:pre; +grimasse grimer ver 0.20 0.81 0.01 0.00 sub:imp:1s; +grimaça grimacer ver 0.49 12.36 0.01 1.62 ind:pas:3s; +grimaçai grimacer ver 0.49 12.36 0.00 0.07 ind:pas:1s; +grimaçaient grimacer ver 0.49 12.36 0.00 0.54 ind:imp:3p; +grimaçais grimacer ver 0.49 12.36 0.00 0.14 ind:imp:1s; +grimaçait grimacer ver 0.49 12.36 0.02 2.09 ind:imp:3s; +grimaçant grimaçant adj m s 0.16 3.04 0.14 1.62 +grimaçante grimaçant adj f s 0.16 3.04 0.00 0.68 +grimaçantes grimaçant adj f p 0.16 3.04 0.00 0.34 +grimaçants grimaçant adj m p 0.16 3.04 0.02 0.41 +grimaçons grimacer ver 0.49 12.36 0.00 0.07 imp:pre:1p; +grimauds grimaud nom m p 0.00 0.07 0.00 0.07 +griment grimer ver 0.20 0.81 0.00 0.07 ind:pre:3p; +grimer grimer ver 0.20 0.81 0.01 0.07 inf; +grimes grime nom m p 0.48 0.00 0.48 0.00 +grimoire grimoire nom m s 0.49 1.22 0.47 0.47 +grimoires grimoire nom m p 0.49 1.22 0.02 0.74 +grimpa grimper ver 21.05 51.15 0.19 5.81 ind:pas:3s; +grimpai grimper ver 21.05 51.15 0.00 0.95 ind:pas:1s; +grimpaient grimper ver 21.05 51.15 0.04 2.03 ind:imp:3p; +grimpais grimper ver 21.05 51.15 0.51 1.01 ind:imp:1s;ind:imp:2s; +grimpait grimper ver 21.05 51.15 0.39 5.47 ind:imp:3s; +grimpant grimper ver 21.05 51.15 0.13 2.36 par:pre; +grimpante grimpant adj f s 0.18 1.55 0.11 0.14 +grimpantes grimpant adj f p 0.18 1.55 0.04 0.61 +grimpants grimpant adj m p 0.18 1.55 0.01 0.27 +grimpe grimper ver 21.05 51.15 6.12 8.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grimpent grimper ver 21.05 51.15 0.82 2.03 ind:pre:3p; +grimper grimper ver 21.05 51.15 7.48 14.05 inf; +grimpera grimper ver 21.05 51.15 0.20 0.14 ind:fut:3s; +grimperai grimper ver 21.05 51.15 0.03 0.07 ind:fut:1s; +grimperaient grimper ver 21.05 51.15 0.14 0.14 cnd:pre:3p; +grimperais grimper ver 21.05 51.15 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +grimperait grimper ver 21.05 51.15 0.06 0.14 cnd:pre:3s; +grimperez grimper ver 21.05 51.15 0.02 0.00 ind:fut:2p; +grimperons grimper ver 21.05 51.15 0.01 0.00 ind:fut:1p; +grimperont grimper ver 21.05 51.15 0.20 0.00 ind:fut:3p; +grimpette grimpette nom f s 0.29 1.01 0.29 0.81 +grimpettes grimpette nom f p 0.29 1.01 0.00 0.20 +grimpeur grimpeur nom m s 0.91 0.41 0.61 0.34 +grimpeurs grimpeur nom m p 0.91 0.41 0.25 0.07 +grimpeuse grimpeur nom f s 0.91 0.41 0.06 0.00 +grimpez grimper ver 21.05 51.15 1.59 0.14 imp:pre:2p;ind:pre:2p; +grimpiez grimper ver 21.05 51.15 0.19 0.00 ind:imp:2p; +grimpions grimper ver 21.05 51.15 0.01 0.61 ind:imp:1p; +grimpâmes grimper ver 21.05 51.15 0.01 0.07 ind:pas:1p; +grimpons grimper ver 21.05 51.15 0.29 0.54 imp:pre:1p;ind:pre:1p; +grimpât grimper ver 21.05 51.15 0.00 0.07 sub:imp:3s; +grimpèrent grimper ver 21.05 51.15 0.12 1.49 ind:pas:3p; +grimpé grimper ver m s 21.05 51.15 2.01 4.93 par:pas; +grimpée grimper ver f s 21.05 51.15 0.14 0.14 par:pas; +grimpées grimper ver f p 21.05 51.15 0.14 0.00 par:pas; +grimpés grimper ver m p 21.05 51.15 0.04 0.68 par:pas; +grimé grimer ver m s 0.20 0.81 0.13 0.14 par:pas; +grimée grimer ver f s 0.20 0.81 0.00 0.07 par:pas; +grimées grimer ver f p 0.20 0.81 0.00 0.07 par:pas; +grimés grimer ver m p 0.20 0.81 0.00 0.20 par:pas; +grince grincer ver 2.84 19.53 1.37 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grincement grincement nom m s 1.57 9.59 0.71 6.49 +grincements grincement nom m p 1.57 9.59 0.86 3.11 +grincent grincer ver 2.84 19.53 0.26 0.95 ind:pre:3p; +grincer grincer ver 2.84 19.53 0.59 4.46 inf; +grincerait grincer ver 2.84 19.53 0.01 0.07 cnd:pre:3s; +grinces grincer ver 2.84 19.53 0.04 0.00 ind:pre:2s; +grincez grincer ver 2.84 19.53 0.00 0.07 imp:pre:2p; +grinche grinche adj s 0.02 0.00 0.02 0.00 +grincheuse grincheux adj f s 1.52 1.22 0.34 0.14 +grincheuses grincheux adj f p 1.52 1.22 0.02 0.07 +grincheux grincheux adj m 1.52 1.22 1.16 1.01 +grinchir grinchir ver 0.00 0.14 0.00 0.14 inf; +grincèrent grincer ver 2.84 19.53 0.00 0.47 ind:pas:3p; +grincé grincer ver m s 2.84 19.53 0.35 0.95 par:pas; +gringalet gringalet nom m s 0.44 0.61 0.40 0.41 +gringalets gringalet nom m p 0.44 0.61 0.04 0.20 +gringo gringo nom m s 4.64 0.00 3.66 0.00 +gringos gringo nom m p 4.64 0.00 0.98 0.00 +gringue gringue nom m s 0.35 1.15 0.35 1.15 +gringuer gringuer ver 0.00 0.14 0.00 0.14 inf; +grinça grincer ver 2.84 19.53 0.00 2.64 ind:pas:3s; +grinçaient grincer ver 2.84 19.53 0.00 1.35 ind:imp:3p; +grinçais grincer ver 2.84 19.53 0.00 0.07 ind:imp:1s; +grinçait grincer ver 2.84 19.53 0.19 2.97 ind:imp:3s; +grinçant grinçant adj m s 0.47 3.78 0.32 1.35 +grinçante grinçant adj f s 0.47 3.78 0.02 1.49 +grinçantes grinçant adj f p 0.47 3.78 0.10 0.34 +grinçants grinçant adj m p 0.47 3.78 0.03 0.61 +grinçât grincer ver 2.84 19.53 0.00 0.07 sub:imp:3s; +griot griot nom m s 0.58 1.55 0.16 1.08 +griots griot nom m p 0.58 1.55 0.43 0.47 +griotte griotte nom f s 0.13 3.18 0.00 0.07 +griottes griotte nom f p 0.13 3.18 0.13 3.11 +grip grip nom m s 0.20 0.00 0.20 0.00 +grippa gripper ver 0.71 1.22 0.00 0.14 ind:pas:3s; +grippaient gripper ver 0.71 1.22 0.00 0.07 ind:imp:3p; +grippal grippal adj m s 0.03 0.00 0.01 0.00 +grippant gripper ver 0.71 1.22 0.00 0.07 par:pre; +grippaux grippal adj m p 0.03 0.00 0.02 0.00 +grippe_sou grippe_sou nom m s 0.25 0.14 0.13 0.07 +grippe_sou grippe_sou nom m p 0.25 0.14 0.12 0.07 +grippe grippe nom f s 8.22 5.54 8.02 4.86 +grippements grippement nom m p 0.00 0.07 0.00 0.07 +gripper gripper ver 0.71 1.22 0.04 0.00 inf; +gripperait gripper ver 0.71 1.22 0.00 0.07 cnd:pre:3s; +grippes grippe nom f p 8.22 5.54 0.21 0.68 +grippé gripper ver m s 0.71 1.22 0.15 0.20 par:pas; +grippée gripper ver f s 0.71 1.22 0.25 0.27 par:pas; +grippés gripper ver m p 0.71 1.22 0.14 0.07 par:pas; +gris_blanc gris_blanc adj m s 0.00 0.20 0.00 0.20 +gris_bleu gris_bleu adj m s 0.30 1.69 0.30 1.69 +gris_gris gris_gris nom m 0.22 0.74 0.22 0.74 +gris_jaune gris_jaune adj m s 0.00 0.20 0.00 0.20 +gris_perle gris_perle adj m s 0.01 0.14 0.01 0.14 +gris_rose gris_rose adj 0.00 0.41 0.00 0.41 +gris_vert gris_vert adj m s 0.01 1.55 0.01 1.55 +gris gris adj m 19.64 154.86 11.05 88.31 +grisa griser ver 1.03 10.27 0.00 0.47 ind:pas:3s; +grisai griser ver 1.03 10.27 0.00 0.14 ind:pas:1s; +grisaient griser ver 1.03 10.27 0.00 0.20 ind:imp:3p; +grisaille grisaille nom f s 0.25 7.77 0.25 7.36 +grisailles grisaille nom f p 0.25 7.77 0.00 0.41 +grisaillèrent grisailler ver 0.00 0.07 0.00 0.07 ind:pas:3p; +grisais griser ver 1.03 10.27 0.00 0.14 ind:imp:1s; +grisait griser ver 1.03 10.27 0.00 1.35 ind:imp:3s; +grisant grisant adj m s 0.54 3.24 0.29 1.28 +grisante grisant adj f s 0.54 3.24 0.21 1.28 +grisantes grisant adj f p 0.54 3.24 0.01 0.34 +grisants grisant adj m p 0.54 3.24 0.03 0.34 +grisassent griser ver 1.03 10.27 0.00 0.07 sub:imp:3p; +grisbi grisbi nom m s 0.15 1.22 0.15 1.22 +grise gris adj f s 19.64 154.86 7.25 49.39 +grisent griser ver 1.03 10.27 0.02 0.20 ind:pre:3p; +griser griser ver 1.03 10.27 0.09 1.55 inf; +grisera griser ver 1.03 10.27 0.00 0.07 ind:fut:3s; +griserie griserie nom f s 0.02 2.23 0.02 2.16 +griseries griserie nom f p 0.02 2.23 0.00 0.07 +grises gris adj f p 19.64 154.86 1.34 17.16 +grisette grisette nom f s 0.00 0.41 0.00 0.14 +grisettes grisette nom f p 0.00 0.41 0.00 0.27 +grison grison nom m s 0.01 0.00 0.01 0.00 +grisonnaient grisonner ver 0.32 0.88 0.00 0.27 ind:imp:3p; +grisonnait grisonner ver 0.32 0.88 0.01 0.14 ind:imp:3s; +grisonnant grisonnant adj m s 0.48 3.04 0.18 0.81 +grisonnante grisonnant adj f s 0.48 3.04 0.03 0.74 +grisonnantes grisonnant adj f p 0.48 3.04 0.12 0.20 +grisonnants grisonnant adj m p 0.48 3.04 0.15 1.28 +grisonne grisonner ver 0.32 0.88 0.14 0.00 ind:pre:1s; +grisonnent grisonner ver 0.32 0.88 0.01 0.14 ind:pre:3p; +grisonner grisonner ver 0.32 0.88 0.01 0.14 inf; +grisonné grisonner ver m s 0.32 0.88 0.01 0.07 par:pas; +grisons grison adj m p 0.01 0.14 0.00 0.14 +grisâtre grisâtre adj s 0.12 13.04 0.10 9.53 +grisâtres grisâtre adj p 0.12 13.04 0.02 3.51 +grisotte grisotte nom f s 0.00 0.07 0.00 0.07 +grisou grisou nom m s 0.01 1.22 0.01 1.22 +grisé grisé adj m s 0.16 0.61 0.14 0.41 +grisée griser ver f s 1.03 10.27 0.00 0.61 par:pas; +grisées griser ver f p 1.03 10.27 0.00 0.07 par:pas; +grisés griser ver m p 1.03 10.27 0.14 0.61 par:pas; +grièvement grièvement adv 1.68 1.55 1.68 1.55 +grive grive nom f s 1.73 1.82 0.52 0.74 +grivelle griveler ver 0.00 0.20 0.00 0.20 ind:pre:3s; +grivelée grivelé adj f s 0.00 0.07 0.00 0.07 +grivelures grivelure nom f p 0.00 0.07 0.00 0.07 +grives grive nom f p 1.73 1.82 1.21 1.08 +grivet grivet nom m s 0.01 0.00 0.01 0.00 +griveton griveton nom m s 0.00 1.08 0.00 0.47 +grivetons griveton nom m p 0.00 1.08 0.00 0.61 +grivois grivois adj m 0.38 0.95 0.25 0.27 +grivoise grivois adj f s 0.38 0.95 0.12 0.14 +grivoiserie grivoiserie nom f s 0.03 0.20 0.00 0.14 +grivoiseries grivoiserie nom f p 0.03 0.20 0.03 0.07 +grivoises grivois adj f p 0.38 0.95 0.01 0.54 +grivèlerie grivèlerie nom f s 0.00 0.20 0.00 0.20 +grizzli grizzli nom m s 0.57 0.00 0.19 0.00 +grizzlis grizzli nom m p 0.57 0.00 0.38 0.00 +grizzly grizzly nom m s 0.74 0.20 0.72 0.14 +grizzlys grizzly nom m p 0.74 0.20 0.02 0.07 +grâce grâce pre 85.61 78.85 85.61 78.85 +grâces grâce nom f p 34.59 57.70 2.50 8.04 +groenlandais groenlandais adj m p 0.10 0.07 0.10 0.07 +grog grog nom m s 0.63 1.42 0.52 1.15 +groggy groggy adj s 0.71 0.54 0.71 0.54 +grogna grogner ver 3.01 31.42 0.02 11.96 ind:pas:3s; +grognai grogner ver 3.01 31.42 0.00 0.07 ind:pas:1s; +grognaient grogner ver 3.01 31.42 0.23 0.41 ind:imp:3p; +grognais grogner ver 3.01 31.42 0.00 0.07 ind:imp:1s; +grognait grogner ver 3.01 31.42 0.07 4.19 ind:imp:3s; +grognant grognant adj m s 0.10 0.27 0.10 0.27 +grognard grognard nom m s 0.03 0.74 0.03 0.27 +grognards grognard nom m p 0.03 0.74 0.00 0.47 +grognassaient grognasser ver 0.00 0.20 0.00 0.07 ind:imp:3p; +grognasse grognasse nom f s 0.17 0.95 0.14 0.61 +grognasser grognasser ver 0.00 0.20 0.00 0.14 inf; +grognasses grognasse nom f p 0.17 0.95 0.03 0.34 +grogne grogner ver 3.01 31.42 1.55 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grognement grognement nom m s 1.33 9.53 0.65 4.46 +grognements grognement nom m p 1.33 9.53 0.68 5.07 +grognent grogner ver 3.01 31.42 0.08 0.54 ind:pre:3p; +grogner grogner ver 3.01 31.42 0.69 2.30 inf; +grognera grogner ver 3.01 31.42 0.00 0.14 ind:fut:3s; +grognes grogner ver 3.01 31.42 0.25 0.41 ind:pre:2s; +grogneurs grogneur adj m p 0.00 0.20 0.00 0.07 +grogneuse grogneur adj f s 0.00 0.20 0.00 0.14 +grognions grogner ver 3.01 31.42 0.00 0.14 ind:imp:1p; +grognon grognon adj m s 0.79 1.22 0.71 0.88 +grognonna grognonner ver 0.01 0.20 0.00 0.07 ind:pas:3s; +grognonne grognon adj f s 0.79 1.22 0.01 0.20 +grognonner grognonner ver 0.01 0.20 0.01 0.07 inf; +grognons grognon adj m p 0.79 1.22 0.06 0.14 +grognèrent grogner ver 3.01 31.42 0.00 0.20 ind:pas:3p; +grogné grogner ver m s 3.01 31.42 0.11 2.30 par:pas; +grognées grogner ver f p 3.01 31.42 0.00 0.07 par:pas; +grogs grog nom m p 0.63 1.42 0.12 0.27 +groin groin nom m s 0.43 1.89 0.32 1.76 +groins groin nom m p 0.43 1.89 0.11 0.14 +grole grole nom f s 0.07 0.34 0.04 0.14 +groles grole nom f p 0.07 0.34 0.03 0.20 +grolle grolle nom f s 0.13 1.49 0.04 0.41 +grolles grolle nom f p 0.13 1.49 0.10 1.08 +grommela grommeler ver 0.14 13.92 0.01 5.61 ind:pas:3s; +grommelai grommeler ver 0.14 13.92 0.00 0.14 ind:pas:1s; +grommelaient grommeler ver 0.14 13.92 0.01 0.14 ind:imp:3p; +grommelait grommeler ver 0.14 13.92 0.01 1.96 ind:imp:3s; +grommelant grommeler ver 0.14 13.92 0.02 2.36 par:pre; +grommeler grommeler ver 0.14 13.92 0.03 0.81 inf; +grommelez grommeler ver 0.14 13.92 0.02 0.00 ind:pre:2p; +grommelle grommeler ver 0.14 13.92 0.01 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grommellement grommellement nom m s 0.01 0.74 0.01 0.47 +grommellements grommellement nom m p 0.01 0.74 0.00 0.27 +grommellent grommeler ver 0.14 13.92 0.02 0.07 ind:pre:3p; +grommellerait grommeler ver 0.14 13.92 0.00 0.07 cnd:pre:3s; +grommelèrent grommeler ver 0.14 13.92 0.00 0.07 ind:pas:3p; +grommelé grommeler ver m s 0.14 13.92 0.01 0.88 par:pas; +grommelée grommeler ver f s 0.14 13.92 0.00 0.07 par:pas; +gronda gronder ver 8.74 22.70 0.04 4.66 ind:pas:3s; +grondai gronder ver 8.74 22.70 0.00 0.34 ind:pas:1s; +grondaient gronder ver 8.74 22.70 0.02 0.81 ind:imp:3p; +grondais gronder ver 8.74 22.70 0.10 0.20 ind:imp:1s;ind:imp:2s; +grondait gronder ver 8.74 22.70 0.15 4.66 ind:imp:3s; +grondant gronder ver 8.74 22.70 0.30 2.36 par:pre; +grondante grondant adj f s 0.23 1.42 0.01 0.81 +grondants grondant adj m p 0.23 1.42 0.00 0.14 +gronde gronder ver 8.74 22.70 4.75 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grondement grondement nom m s 1.30 14.80 1.18 12.36 +grondements grondement nom m p 1.30 14.80 0.13 2.43 +grondent gronder ver 8.74 22.70 0.15 0.27 ind:pre:3p; +gronder gronder ver 8.74 22.70 2.14 3.58 inf; +grondera gronder ver 8.74 22.70 0.28 0.07 ind:fut:3s; +gronderai gronder ver 8.74 22.70 0.01 0.07 ind:fut:1s; +gronderait gronder ver 8.74 22.70 0.04 0.34 cnd:pre:3s; +gronderies gronderie nom f p 0.00 0.14 0.00 0.14 +grondes gronder ver 8.74 22.70 0.15 0.07 ind:pre:2s; +grondeur grondeur adj m s 0.00 1.35 0.00 0.47 +grondeurs grondeur adj m p 0.00 1.35 0.00 0.07 +grondeuse grondeur adj f s 0.00 1.35 0.00 0.68 +grondeuses grondeur adj f p 0.00 1.35 0.00 0.14 +grondez gronder ver 8.74 22.70 0.15 0.20 imp:pre:2p;ind:pre:2p; +grondin grondin nom m s 0.00 1.69 0.00 1.55 +grondins grondin nom m p 0.00 1.69 0.00 0.14 +grondèrent gronder ver 8.74 22.70 0.01 0.14 ind:pas:3p; +grondé gronder ver m s 8.74 22.70 0.33 0.95 par:pas; +grondée gronder ver f s 8.74 22.70 0.12 0.34 par:pas; +grondés gronder ver m p 8.74 22.70 0.01 0.14 par:pas; +groom groom nom m s 1.17 2.57 1.02 1.89 +grooms groom nom m p 1.17 2.57 0.14 0.68 +gros_bec gros_bec nom m s 0.06 0.07 0.06 0.00 +gros_bec gros_bec nom m p 0.06 0.07 0.00 0.07 +gros_cul gros_cul nom m s 0.04 0.14 0.04 0.14 +gros_grain gros_grain nom m s 0.00 0.41 0.00 0.41 +gros_porteur gros_porteur nom m s 0.02 0.00 0.02 0.00 +gros gros adj m 266.95 353.45 180.91 216.01 +groschen groschen nom m s 0.00 0.07 0.00 0.07 +groseille groseille adj f s 0.30 0.20 0.30 0.20 +groseilles groseille nom f p 1.23 1.89 0.94 1.35 +groseillier groseillier nom m s 0.17 0.61 0.01 0.14 +groseilliers groseillier nom m p 0.17 0.61 0.16 0.47 +grosse gros adj f s 266.95 353.45 70.63 85.81 +grosses gros adj f p 266.95 353.45 15.41 51.62 +grossesse grossesse nom f s 7.09 4.93 6.63 3.92 +grossesses grossesse nom f p 7.09 4.93 0.46 1.01 +grosseur grosseur nom f s 1.12 2.97 1.08 2.57 +grosseurs grosseur nom f p 1.12 2.97 0.04 0.41 +grossi grossir ver m s 10.57 14.80 3.85 2.57 par:pas; +grossie grossir ver f s 10.57 14.80 0.00 0.54 par:pas; +grossier grossier adj m s 11.64 22.57 6.77 8.99 +grossiers grossier adj m p 11.64 22.57 0.90 4.05 +grossies grossir ver f p 10.57 14.80 0.00 0.34 par:pas; +grossir grossir ver 10.57 14.80 3.30 4.93 inf; +grossira grossir ver 10.57 14.80 0.05 0.14 ind:fut:3s; +grossirent grossir ver 10.57 14.80 0.00 0.07 ind:pas:3p; +grossirez grossir ver 10.57 14.80 0.00 0.07 ind:fut:2p; +grossiront grossir ver 10.57 14.80 0.04 0.07 ind:fut:3p; +grossis grossir ver m p 10.57 14.80 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +grossissaient grossir ver 10.57 14.80 0.02 0.74 ind:imp:3p; +grossissais grossir ver 10.57 14.80 0.02 0.07 ind:imp:1s; +grossissait grossir ver 10.57 14.80 0.32 1.62 ind:imp:3s; +grossissant grossissant adj m s 0.34 1.28 0.04 1.01 +grossissante grossissant adj f s 0.34 1.28 0.03 0.00 +grossissantes grossissant adj f p 0.34 1.28 0.00 0.14 +grossissants grossissant adj m p 0.34 1.28 0.28 0.14 +grossisse grossir ver 10.57 14.80 0.09 0.14 sub:pre:1s;sub:pre:3s; +grossissement grossissement nom m s 0.06 0.81 0.06 0.81 +grossissent grossir ver 10.57 14.80 0.43 0.68 ind:pre:3p; +grossisses grossir ver 10.57 14.80 0.02 0.00 sub:pre:2s; +grossissez grossir ver 10.57 14.80 0.07 0.07 imp:pre:2p;ind:pre:2p; +grossiste grossiste nom s 0.70 0.81 0.50 0.54 +grossistes grossiste nom p 0.70 0.81 0.20 0.27 +grossit grossir ver 10.57 14.80 1.96 1.82 ind:pre:3s;ind:pas:3s; +grossière grossier adj f s 11.64 22.57 3.30 6.28 +grossièrement grossièrement adv 0.61 5.41 0.61 5.41 +grossières grossier adj f p 11.64 22.57 0.67 3.24 +grossièreté grossièreté nom f s 2.71 6.15 1.96 4.80 +grossièretés grossièreté nom f p 2.71 6.15 0.74 1.35 +grossium grossium nom m s 0.01 0.88 0.00 0.54 +grossiums grossium nom m p 0.01 0.88 0.01 0.34 +grosso_modo grosso_modo adv 0.44 1.89 0.44 1.89 +grotesque grotesque adj s 5.58 12.97 5.01 9.12 +grotesquement grotesquement adv 0.04 0.95 0.04 0.95 +grotesques grotesque adj p 5.58 12.97 0.57 3.85 +grotte grotte nom f s 12.23 21.96 8.96 17.84 +grottes grotte nom f p 12.23 21.96 3.28 4.12 +grouillaient grouiller ver 22.39 15.54 0.06 2.23 ind:imp:3p; +grouillais grouiller ver 22.39 15.54 0.00 0.07 ind:imp:1s; +grouillait grouiller ver 22.39 15.54 0.27 2.64 ind:imp:3s; +grouillant grouiller ver 22.39 15.54 0.11 1.28 par:pre; +grouillante grouillant adj f s 0.14 4.73 0.04 2.09 +grouillantes grouillant adj f p 0.14 4.73 0.03 0.88 +grouillants grouillant adj m p 0.14 4.73 0.03 1.01 +grouille grouiller ver 22.39 15.54 15.56 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grouillement grouillement nom m s 0.16 4.73 0.02 4.53 +grouillements grouillement nom m p 0.16 4.73 0.14 0.20 +grouillent grouiller ver 22.39 15.54 0.65 1.35 ind:pre:3p; +grouiller grouiller ver 22.39 15.54 0.89 1.62 inf; +grouillera grouiller ver 22.39 15.54 0.05 0.00 ind:fut:3s; +grouillerait grouiller ver 22.39 15.54 0.04 0.00 cnd:pre:3s; +grouilleront grouiller ver 22.39 15.54 0.01 0.00 ind:fut:3p; +grouilles grouiller ver 22.39 15.54 0.48 0.07 ind:pre:2s; +grouillez grouiller ver 22.39 15.54 4.08 0.95 imp:pre:2p;ind:pre:2p; +grouillis grouillis nom m 0.00 0.47 0.00 0.47 +grouillons grouiller ver 22.39 15.54 0.19 0.41 imp:pre:1p;ind:pre:1p; +grouillot grouillot nom m s 0.12 0.74 0.10 0.61 +grouillots grouillot nom m p 0.12 0.74 0.03 0.14 +grouillèrent grouiller ver 22.39 15.54 0.00 0.07 ind:pas:3p; +grouillé grouiller ver m s 22.39 15.54 0.02 0.07 par:pas; +grouillées grouiller ver f p 22.39 15.54 0.00 0.07 par:pas; +grouiner grouiner ver 0.01 0.00 0.01 0.00 inf; +groumais groumer ver 0.00 1.22 0.00 0.07 ind:imp:1s; +groumait groumer ver 0.00 1.22 0.00 0.27 ind:imp:3s; +groumant groumer ver 0.00 1.22 0.00 0.07 par:pre; +groume groumer ver 0.00 1.22 0.00 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +groumer groumer ver 0.00 1.22 0.00 0.14 inf; +ground ground nom m s 0.27 0.00 0.27 0.00 +group group nom m s 7.65 0.34 7.41 0.34 +groupa grouper ver 3.10 13.31 0.00 0.20 ind:pas:3s; +groupage groupage nom m s 0.01 0.00 0.01 0.00 +groupaient grouper ver 3.10 13.31 0.00 1.08 ind:imp:3p; +groupais grouper ver 3.10 13.31 0.00 0.07 ind:imp:1s; +groupait grouper ver 3.10 13.31 0.01 0.68 ind:imp:3s; +groupant grouper ver 3.10 13.31 0.00 0.54 par:pre; +groupe groupe nom m s 104.38 122.50 90.16 85.88 +groupement groupement nom m s 0.98 6.22 0.96 4.19 +groupements groupement nom m p 0.98 6.22 0.02 2.03 +groupent grouper ver 3.10 13.31 0.00 0.95 ind:pre:3p; +grouper grouper ver 3.10 13.31 0.44 2.03 inf; +grouperaient grouper ver 3.10 13.31 0.00 0.07 cnd:pre:3p; +grouperont grouper ver 3.10 13.31 0.10 0.07 ind:fut:3p; +groupes groupe nom m p 104.38 122.50 14.21 36.62 +groupez grouper ver 3.10 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +groupie groupie nom f s 1.34 0.74 0.86 0.34 +groupies groupie nom f p 1.34 0.74 0.48 0.41 +groupons grouper ver 3.10 13.31 0.20 0.07 imp:pre:1p;ind:pre:1p; +groupât grouper ver 3.10 13.31 0.00 0.07 sub:imp:3s; +groups group nom m p 7.65 0.34 0.25 0.00 +groupèrent grouper ver 3.10 13.31 0.00 0.41 ind:pas:3p; +groupé grouper ver m s 3.10 13.31 0.25 0.34 par:pas; +groupée grouper ver f s 3.10 13.31 0.11 0.61 par:pas; +groupées grouper ver f p 3.10 13.31 0.10 0.88 par:pas; +groupés grouper ver m p 3.10 13.31 1.25 4.19 par:pas; +groupuscule groupuscule nom m s 0.36 0.54 0.20 0.20 +groupuscules groupuscule nom m p 0.36 0.54 0.16 0.34 +grouse grouse nom f s 0.28 0.68 0.28 0.14 +grouses grouse nom f p 0.28 0.68 0.00 0.54 +grèbe grèbe nom m s 0.02 0.07 0.02 0.00 +grèbes grèbe nom m p 0.02 0.07 0.00 0.07 +grège grège adj s 0.00 1.28 0.00 1.22 +grèges grège adj p 0.00 1.28 0.00 0.07 +grègues grègues nom f p 0.00 0.07 0.00 0.07 +grène grener ver 0.00 0.34 0.00 0.07 ind:pre:3s; +grènera grener ver 0.00 0.34 0.00 0.07 ind:fut:3s; +grès grès nom m 0.31 4.05 0.31 4.05 +grève grève nom f s 15.87 26.55 14.54 22.36 +grèvent grever ver 0.18 0.81 0.00 0.14 ind:pre:3p; +grèverait grever ver 0.18 0.81 0.00 0.07 cnd:pre:3s; +grèves grève nom f p 15.87 26.55 1.33 4.19 +gré gré nom m s 11.36 28.04 11.36 28.04 +gréage gréage nom m s 0.01 0.00 0.01 0.00 +gruau gruau nom m s 0.73 0.54 0.69 0.54 +gruaux gruau nom m p 0.73 0.54 0.04 0.00 +grébiche grébiche nom f s 0.01 0.00 0.01 0.00 +gréco_latin gréco_latin adj f s 0.00 0.34 0.00 0.27 +gréco_latin gréco_latin adj f p 0.00 0.34 0.00 0.07 +gréco_romain gréco_romain adj m s 0.46 0.68 0.03 0.14 +gréco_romain gréco_romain adj f s 0.46 0.68 0.42 0.34 +gréco_romain gréco_romain adj f p 0.46 0.68 0.01 0.14 +gréco_romain gréco_romain adj m p 0.46 0.68 0.00 0.07 +gréco gréco adv 0.15 0.14 0.15 0.14 +grue grue nom f s 4.76 6.22 3.54 2.84 +gréement gréement nom m s 0.26 0.34 0.26 0.20 +gréements gréement nom m p 0.26 0.34 0.00 0.14 +gréer gréer ver 0.07 0.61 0.03 0.07 inf; +grues grue nom f p 4.76 6.22 1.22 3.38 +gréez gréer ver 0.07 0.61 0.01 0.00 imp:pre:2p; +grégaire grégaire adj s 0.11 0.47 0.11 0.47 +gruge gruger ver 0.48 0.47 0.04 0.07 ind:pre:3s; +grugeaient gruger ver 0.48 0.47 0.00 0.07 ind:imp:3p; +grugeait gruger ver 0.48 0.47 0.01 0.07 ind:imp:3s; +grugeant gruger ver 0.48 0.47 0.00 0.07 par:pre; +grégeois grégeois adj m 0.05 0.34 0.05 0.34 +gruger gruger ver 0.48 0.47 0.21 0.14 inf; +grégorien grégorien adj m s 0.06 1.35 0.03 1.01 +grégorienne grégorien adj f s 0.06 1.35 0.00 0.14 +grégoriens grégorien adj m p 0.06 1.35 0.02 0.20 +grugé gruger ver m s 0.48 0.47 0.21 0.07 par:pas; +grugée gruger ver f s 0.48 0.47 0.01 0.00 par:pas; +grêlaient grêler ver 0.24 1.49 0.00 0.07 ind:imp:3p; +grêlait grêler ver 0.24 1.49 0.00 0.07 ind:imp:3s; +grêle grêle nom f s 1.05 6.15 1.05 5.81 +grêlent grêler ver 0.24 1.49 0.00 0.20 ind:pre:3p; +grêler grêler ver 0.24 1.49 0.03 0.14 inf; +grêleraient grêler ver 0.24 1.49 0.00 0.07 cnd:pre:3p; +grêles grêle adj p 0.54 8.24 0.01 3.38 +grêlon grêlon nom m s 0.33 1.01 0.00 0.14 +grêlons grêlon nom m p 0.33 1.01 0.33 0.88 +grêlé grêlé adj m s 0.31 0.47 0.30 0.34 +grêlée grêlé adj f s 0.31 0.47 0.01 0.07 +grêlées grêler ver f p 0.24 1.49 0.00 0.14 par:pas; +grêlés grêler ver m p 0.24 1.49 0.00 0.14 par:pas; +grume grume nom f s 0.12 0.47 0.01 0.20 +grumeau grumeau nom m s 0.28 1.01 0.02 0.14 +grumeaux grumeau nom m p 0.28 1.01 0.26 0.88 +grumeleuse grumeleux adj f s 0.33 1.89 0.01 1.15 +grumeleuses grumeleux adj f p 0.33 1.89 0.02 0.14 +grumeleux grumeleux adj m 0.33 1.89 0.29 0.61 +grumes grume nom f p 0.12 0.47 0.11 0.27 +grumier grumier nom m s 0.01 0.00 0.01 0.00 +grunge grunge nom m s 0.27 0.00 0.27 0.00 +gruppetto gruppetto nom m s 0.00 0.14 0.00 0.14 +grésil grésil nom m s 0.00 0.41 0.00 0.41 +grésilla grésiller ver 0.35 5.61 0.00 0.41 ind:pas:3s; +grésillaient grésiller ver 0.35 5.61 0.00 0.68 ind:imp:3p; +grésillait grésiller ver 0.35 5.61 0.00 1.28 ind:imp:3s; +grésillant grésillant adj m s 0.15 0.68 0.01 0.41 +grésillante grésillant adj f s 0.15 0.68 0.14 0.14 +grésillantes grésillant adj f p 0.15 0.68 0.00 0.14 +grésille grésiller ver 0.35 5.61 0.16 0.88 ind:pre:1s;ind:pre:3s; +grésillement grésillement nom m s 0.46 3.85 0.17 3.38 +grésillements grésillement nom m p 0.46 3.85 0.29 0.47 +grésillent grésiller ver 0.35 5.61 0.03 0.07 ind:pre:3p; +grésiller grésiller ver 0.35 5.61 0.16 1.01 inf; +grésillerait grésiller ver 0.35 5.61 0.00 0.07 cnd:pre:3s; +grésillé grésiller ver m s 0.35 5.61 0.00 0.20 par:pas; +gruta gruter ver 0.00 0.14 0.00 0.07 ind:pas:3s; +grute gruter ver 0.00 0.14 0.00 0.07 ind:pre:1s; +grutier grutier nom m s 0.14 2.30 0.14 0.34 +grutiers grutier nom m p 0.14 2.30 0.00 1.89 +grutière grutier nom f s 0.14 2.30 0.00 0.07 +gréé gréer ver m s 0.07 0.61 0.01 0.34 par:pas; +gréée gréer ver f s 0.07 0.61 0.02 0.14 par:pas; +gréées gréer ver f p 0.07 0.61 0.00 0.07 par:pas; +gréviste gréviste nom s 1.50 2.36 0.28 0.41 +grévistes gréviste nom p 1.50 2.36 1.22 1.96 +gruyère gruyère nom m s 1.02 4.80 1.02 4.80 +gèle geler ver 23.41 17.03 6.57 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gèlent geler ver 23.41 17.03 0.58 0.27 ind:pre:3p; +gèlera geler ver 23.41 17.03 0.48 0.14 ind:fut:3s; +gèlerai geler ver 23.41 17.03 0.30 0.00 ind:fut:1s; +gèlerait geler ver 23.41 17.03 0.18 0.14 cnd:pre:3s; +gèles geler ver 23.41 17.03 0.26 0.07 ind:pre:2s; +gène gène nom m s 8.07 0.74 4.18 0.20 +gènes gène nom m p 8.07 0.74 3.90 0.54 +gère gérer ver 27.51 3.31 6.08 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gèrent gérer ver 27.51 3.31 0.37 0.07 ind:pre:3p; +guacamole guacamole nom m s 0.43 0.00 0.43 0.00 +guadeloupéenne guadeloupéenne nom f s 0.00 0.14 0.00 0.14 +guanaco guanaco nom m s 0.01 0.00 0.01 0.00 +guanine guanine nom f s 0.04 0.00 0.04 0.00 +guano guano nom m s 0.23 0.14 0.23 0.14 +géant géant adj m s 13.91 21.42 8.60 8.99 +géante géant adj f s 13.91 21.42 2.81 6.08 +géantes géant adj f p 13.91 21.42 0.94 2.97 +géants géant nom m p 11.67 22.91 4.19 3.78 +guaracha guaracha nom f s 0.02 0.00 0.02 0.00 +guarani guarani adj m s 0.00 0.07 0.00 0.07 +guatémaltèque guatémaltèque adj m s 0.07 0.00 0.07 0.00 +guelfe guelfe nom m s 0.10 0.20 0.10 0.07 +guelfes guelfe nom m p 0.10 0.20 0.00 0.14 +guenille guenille nom f s 0.41 4.46 0.04 1.08 +guenilles guenille nom f p 0.41 4.46 0.37 3.38 +guenilleux guenilleux adj m p 0.00 0.54 0.00 0.54 +guenillons guenillon nom m p 0.00 0.07 0.00 0.07 +guenipe guenipe nom f s 0.00 0.07 0.00 0.07 +guenon guenon nom f s 0.58 1.89 0.37 1.55 +guenons guenon nom f p 0.58 1.89 0.20 0.34 +guerre_éclair guerre_éclair nom f s 0.01 0.14 0.01 0.14 +guerre guerre nom f s 221.65 354.59 212.82 338.65 +guerres guerre nom f p 221.65 354.59 8.83 15.95 +guerrier guerrier nom m s 16.75 10.00 9.07 3.85 +guerriers guerrier nom m p 16.75 10.00 7.68 6.15 +guerrière guerrier adj f s 6.70 8.85 0.88 2.30 +guerrières guerrier adj f p 6.70 8.85 1.41 1.62 +guerroient guerroyer ver 0.30 1.08 0.00 0.07 ind:pre:3p; +guerroyai guerroyer ver 0.30 1.08 0.00 0.07 ind:pas:1s; +guerroyaient guerroyer ver 0.30 1.08 0.00 0.07 ind:imp:3p; +guerroyait guerroyer ver 0.30 1.08 0.00 0.27 ind:imp:3s; +guerroyant guerroyer ver 0.30 1.08 0.14 0.07 par:pre; +guerroyer guerroyer ver 0.30 1.08 0.14 0.41 inf; +guerroyeur guerroyeur nom m s 0.00 0.07 0.00 0.07 +guerroyé guerroyer ver m s 0.30 1.08 0.03 0.14 par:pas; +guet_apens guet_apens nom m 0.68 0.74 0.68 0.74 +guet guet nom m s 3.29 7.70 3.29 7.43 +guets_apens guets_apens nom m p 0.00 0.07 0.00 0.07 +guets guet nom m p 3.29 7.70 0.00 0.27 +guetta guetter ver 8.52 51.01 0.00 0.74 ind:pas:3s; +guettai guetter ver 8.52 51.01 0.00 0.81 ind:pas:1s; +guettaient guetter ver 8.52 51.01 0.16 2.50 ind:imp:3p; +guettais guetter ver 8.52 51.01 0.24 2.50 ind:imp:1s;ind:imp:2s; +guettait guetter ver 8.52 51.01 0.52 9.53 ind:imp:3s; +guettant guetter ver 8.52 51.01 0.30 6.82 par:pre; +guette guetter ver 8.52 51.01 3.79 9.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +guettent guetter ver 8.52 51.01 1.13 3.04 ind:pre:3p; +guetter guetter ver 8.52 51.01 1.01 10.00 inf;; +guettera guetter ver 8.52 51.01 0.00 0.20 ind:fut:3s; +guetterai guetter ver 8.52 51.01 0.05 0.20 ind:fut:1s; +guetterais guetter ver 8.52 51.01 0.00 0.07 cnd:pre:1s; +guetterait guetter ver 8.52 51.01 0.11 0.27 cnd:pre:3s; +guetterez guetter ver 8.52 51.01 0.01 0.00 ind:fut:2p; +guetterons guetter ver 8.52 51.01 0.02 0.14 ind:fut:1p; +guetteront guetter ver 8.52 51.01 0.02 0.00 ind:fut:3p; +guettes guetter ver 8.52 51.01 0.23 0.47 ind:pre:2s; +guetteur guetteur nom m s 1.09 4.46 0.60 2.50 +guetteurs guetteur nom m p 1.09 4.46 0.49 1.55 +guetteuse guetteur nom f s 1.09 4.46 0.00 0.27 +guetteuses guetteur nom f p 1.09 4.46 0.00 0.14 +guettez guetter ver 8.52 51.01 0.23 0.00 imp:pre:2p;ind:pre:2p; +guettiez guetter ver 8.52 51.01 0.01 0.07 ind:imp:2p; +guettions guetter ver 8.52 51.01 0.14 1.01 ind:imp:1p; +guettons guetter ver 8.52 51.01 0.12 0.00 ind:pre:1p; +guettât guetter ver 8.52 51.01 0.00 0.07 sub:imp:3s; +guettèrent guetter ver 8.52 51.01 0.00 0.14 ind:pas:3p; +guetté guetter ver m s 8.52 51.01 0.41 2.50 par:pas; +guettée guetter ver f s 8.52 51.01 0.02 0.20 par:pas; +guettées guetter ver f p 8.52 51.01 0.00 0.07 par:pas; +guettés guetter ver m p 8.52 51.01 0.00 0.61 par:pas; +gueugueule gueugueule nom f s 0.00 0.07 0.00 0.07 +gueula gueuler ver 9.81 27.30 0.00 1.28 ind:pas:3s; +gueulai gueuler ver 9.81 27.30 0.00 0.20 ind:pas:1s; +gueulaient gueuler ver 9.81 27.30 0.13 0.41 ind:imp:3p; +gueulais gueuler ver 9.81 27.30 0.17 0.47 ind:imp:1s;ind:imp:2s; +gueulait gueuler ver 9.81 27.30 0.23 4.26 ind:imp:3s; +gueulant gueuler ver 9.81 27.30 0.31 1.69 par:pre; +gueulante gueulante nom f s 0.14 1.49 0.13 1.01 +gueulantes gueulante nom f p 0.14 1.49 0.01 0.47 +gueulard gueulard nom m s 0.23 0.88 0.20 0.68 +gueularde gueulard nom f s 0.23 0.88 0.02 0.00 +gueulards gueulard nom m p 0.23 0.88 0.01 0.20 +gueule_de_loup gueule_de_loup nom f s 0.03 0.07 0.03 0.07 +gueule gueule nom f s 125.22 109.93 118.45 100.14 +gueulement gueulement nom m s 0.00 0.81 0.00 0.14 +gueulements gueulement nom m p 0.00 0.81 0.00 0.68 +gueulent gueuler ver 9.81 27.30 0.18 1.42 ind:pre:3p; +gueuler gueuler ver 9.81 27.30 3.97 6.62 inf; +gueulera gueuler ver 9.81 27.30 0.03 0.07 ind:fut:3s; +gueulerai gueuler ver 9.81 27.30 0.02 0.07 ind:fut:1s; +gueulerais gueuler ver 9.81 27.30 0.00 0.14 cnd:pre:1s;cnd:pre:2s; +gueulerait gueuler ver 9.81 27.30 0.01 0.14 cnd:pre:3s; +gueules_de_loup gueules_de_loup nom f p 0.00 0.14 0.00 0.14 +gueules gueule nom p 125.22 109.93 6.77 9.80 +gueuleton gueuleton nom m s 0.65 1.08 0.52 0.74 +gueuletonnait gueuletonner ver 0.00 0.20 0.00 0.07 ind:imp:3s; +gueuletonner gueuletonner ver 0.00 0.20 0.00 0.14 inf; +gueuletons gueuleton nom m p 0.65 1.08 0.12 0.34 +gueulette gueulette nom f s 0.01 0.14 0.01 0.07 +gueulettes gueulette nom f p 0.01 0.14 0.00 0.07 +gueulez gueuler ver 9.81 27.30 0.07 0.07 imp:pre:2p;ind:pre:2p; +gueuloir gueuloir nom m s 0.00 0.07 0.00 0.07 +gueulé gueuler ver m s 9.81 27.30 0.79 3.38 par:pas; +gueulée gueuler ver f s 9.81 27.30 0.00 0.07 par:pas; +gueulés gueuler ver m p 9.81 27.30 0.00 0.07 par:pas; +gueusant gueuser ver 0.00 0.07 0.00 0.07 par:pre; +gueusards gueusard nom m p 0.00 0.14 0.00 0.14 +gueuse gueux nom f s 2.87 4.66 0.73 0.88 +gueuserie gueuserie nom f s 0.00 0.47 0.00 0.47 +gueuses gueuse nom f p 0.01 0.00 0.01 0.00 +gueux gueux nom m 2.87 4.66 2.14 3.65 +gueuze gueuze nom f s 0.00 0.07 0.00 0.07 +gégène gégène nom f s 0.12 0.41 0.12 0.41 +gugusse gugusse nom m s 1.12 0.27 1.06 0.27 +gugusses gugusse nom m p 1.12 0.27 0.06 0.00 +géhenne géhenne nom f s 0.58 0.34 0.57 0.34 +géhennes géhenne nom f p 0.58 0.34 0.01 0.00 +gui gui nom m s 2.90 2.50 2.90 2.50 +guibole guibole nom f s 0.14 0.34 0.05 0.00 +guiboles guibole nom f p 0.14 0.34 0.08 0.34 +guibolle guibolle nom f s 0.11 4.93 0.00 0.74 +guibolles guibolle nom f p 0.11 4.93 0.11 4.19 +guiche guiche nom f s 0.06 0.27 0.06 0.14 +guiches guiche nom f p 0.06 0.27 0.00 0.14 +guichet guichet nom m s 3.81 8.45 2.92 6.42 +guichetier guichetier nom m s 0.31 0.47 0.16 0.07 +guichetiers guichetier nom m p 0.31 0.47 0.01 0.07 +guichetière guichetier nom f s 0.31 0.47 0.14 0.34 +guichets guichet nom m p 3.81 8.45 0.89 2.03 +guida guider ver 24.79 26.22 0.31 2.03 ind:pas:3s; +guidage guidage nom m s 1.19 0.00 1.19 0.00 +guidai guider ver 24.79 26.22 0.00 0.14 ind:pas:1s; +guidaient guider ver 24.79 26.22 0.17 1.08 ind:imp:3p; +guidais guider ver 24.79 26.22 0.00 0.27 ind:imp:1s; +guidait guider ver 24.79 26.22 0.13 2.30 ind:imp:3s; +guidance guidance nom f s 0.01 0.00 0.01 0.00 +guidant guider ver 24.79 26.22 0.20 1.96 par:pre; +guide_interprète guide_interprète nom s 0.00 0.07 0.00 0.07 +guide guide nom s 17.52 22.84 14.69 16.69 +guident guider ver 24.79 26.22 0.39 0.74 ind:pre:3p; +guider guider ver 24.79 26.22 7.29 6.76 inf; +guidera guider ver 24.79 26.22 1.57 0.14 ind:fut:3s; +guiderai guider ver 24.79 26.22 0.80 0.00 ind:fut:1s; +guiderait guider ver 24.79 26.22 0.20 0.14 cnd:pre:3s; +guideras guider ver 24.79 26.22 0.06 0.00 ind:fut:2s; +guiderez guider ver 24.79 26.22 0.09 0.00 ind:fut:2p; +guideront guider ver 24.79 26.22 0.27 0.20 ind:fut:3p; +guides guide nom p 17.52 22.84 2.84 6.15 +guidez guider ver 24.79 26.22 0.85 0.14 imp:pre:2p;ind:pre:2p; +guidiez guider ver 24.79 26.22 0.09 0.00 ind:imp:2p; +guidon guidon nom m s 1.27 7.03 1.26 6.15 +guidons guider ver 24.79 26.22 0.16 0.14 imp:pre:1p;ind:pre:1p; +guidèrent guider ver 24.79 26.22 0.00 0.20 ind:pas:3p; +guidé guider ver m s 24.79 26.22 2.81 3.38 par:pas; +guidée guider ver f s 24.79 26.22 1.55 1.82 par:pas; +guidées guider ver f p 24.79 26.22 0.40 0.27 par:pas; +guidés guider ver m p 24.79 26.22 1.25 1.22 par:pas; +guigna guigner ver 0.04 1.69 0.00 0.14 ind:pas:3s; +guignaient guigner ver 0.04 1.69 0.01 0.00 ind:imp:3p; +guignais guigner ver 0.04 1.69 0.01 0.14 ind:imp:1s; +guignait guigner ver 0.04 1.69 0.01 0.47 ind:imp:3s; +guignant guigner ver 0.04 1.69 0.00 0.20 par:pre; +guigne guigne nom f s 0.93 1.35 0.93 1.28 +guigner guigner ver 0.04 1.69 0.00 0.34 inf; +guignes guigne nom f p 0.93 1.35 0.00 0.07 +guignol guignol nom m s 3.29 6.15 2.14 3.58 +guignolades guignolade nom f p 0.00 0.14 0.00 0.14 +guignolesque guignolesque adj m s 0.00 0.07 0.00 0.07 +guignolet guignolet nom m s 0.00 0.20 0.00 0.20 +guignols guignol nom m p 3.29 6.15 1.16 2.57 +guignon guignon nom m s 0.00 0.20 0.00 0.20 +guilde guilde nom f s 0.57 0.00 0.56 0.00 +guildes guilde nom f p 0.57 0.00 0.01 0.00 +guili_guili guili_guili nom m 0.16 0.14 0.16 0.14 +guillaume guillaume nom m s 0.00 0.20 0.00 0.14 +guillaumes guillaume nom m p 0.00 0.20 0.00 0.07 +guilledou guilledou nom m s 0.02 0.20 0.02 0.20 +guillemet guillemet nom m s 0.52 1.55 0.01 0.00 +guillemets guillemet nom m p 0.52 1.55 0.50 1.55 +guillemot guillemot nom m s 0.11 0.00 0.11 0.00 +guilleret guilleret adj m s 0.22 3.24 0.14 2.09 +guillerets guilleret adj m p 0.22 3.24 0.01 0.34 +guillerette guilleret adj f s 0.22 3.24 0.07 0.74 +guillerettes guilleret adj f p 0.22 3.24 0.00 0.07 +guilloche guillocher ver 0.02 0.47 0.01 0.00 ind:pre:3s; +guilloché guillocher ver m s 0.02 0.47 0.00 0.27 par:pas; +guillochée guillocher ver f s 0.02 0.47 0.01 0.07 par:pas; +guillochées guillocher ver f p 0.02 0.47 0.00 0.07 par:pas; +guillochures guillochure nom f p 0.00 0.07 0.00 0.07 +guillochés guillocher ver m p 0.02 0.47 0.00 0.07 par:pas; +guillotina guillotiner ver 0.80 1.89 0.00 0.07 ind:pas:3s; +guillotinaient guillotiner ver 0.80 1.89 0.00 0.07 ind:imp:3p; +guillotinait guillotiner ver 0.80 1.89 0.00 0.14 ind:imp:3s; +guillotine guillotine nom f s 1.07 5.61 1.07 5.54 +guillotinent guillotiner ver 0.80 1.89 0.01 0.07 ind:pre:3p; +guillotiner guillotiner ver 0.80 1.89 0.45 0.47 inf; +guillotines guillotin nom f p 0.01 0.00 0.01 0.00 +guillotineur guillotineur nom m s 0.00 0.14 0.00 0.07 +guillotineurs guillotineur nom m p 0.00 0.14 0.00 0.07 +guillotiné guillotiner ver m s 0.80 1.89 0.20 0.68 par:pas; +guillotinée guillotiner ver f s 0.80 1.89 0.00 0.20 par:pas; +guillotinées guillotiné adj f p 0.01 0.47 0.00 0.07 +guillotinés guillotiner ver m p 0.80 1.89 0.01 0.14 par:pas; +guimauve guimauve nom f s 1.49 2.43 1.25 2.23 +guimauves guimauve nom f p 1.49 2.43 0.24 0.20 +guimbarde guimbarde nom f s 0.61 1.69 0.57 1.01 +guimbardes guimbarde nom f p 0.61 1.69 0.03 0.68 +guimpe guimpe nom f s 0.19 1.15 0.19 0.54 +guimpes guimpe nom f p 0.19 1.15 0.00 0.61 +guinchait guincher ver 0.11 0.20 0.00 0.07 ind:imp:3s; +guinche guinche nom m s 0.00 0.47 0.00 0.27 +guincher guincher ver 0.11 0.20 0.10 0.14 inf; +guinches guincher ver 0.11 0.20 0.01 0.00 ind:pre:2s; +guindaient guinder ver 0.16 1.55 0.00 0.14 ind:imp:3p; +guindait guinder ver 0.16 1.55 0.00 0.07 ind:imp:3s; +guindal guindal nom m s 0.00 0.61 0.00 0.41 +guindals guindal nom m p 0.00 0.61 0.00 0.20 +guindant guindant nom m s 0.10 0.00 0.10 0.00 +guinde guinder ver 0.16 1.55 0.01 0.54 imp:pre:2s;ind:pre:3s; +guindeau guindeau nom m s 0.02 0.07 0.02 0.07 +guinder guinder ver 0.16 1.55 0.00 0.20 inf; +guindé guindé adj m s 0.67 2.43 0.55 0.88 +guindée guindé adj f s 0.67 2.43 0.06 0.81 +guindées guindé adj f p 0.67 2.43 0.03 0.34 +guindés guindé adj m p 0.67 2.43 0.04 0.41 +guinguette guinguette nom f s 0.14 3.04 0.14 2.36 +guinguettes guinguette nom f p 0.14 3.04 0.00 0.68 +guinée guinée nom f s 1.40 0.07 0.10 0.07 +guinéen guinéen adj m s 0.00 0.41 0.00 0.14 +guinéenne guinéen adj f s 0.00 0.41 0.00 0.14 +guinéennes guinéen adj f p 0.00 0.41 0.00 0.07 +guinéens guinéen adj m p 0.00 0.41 0.00 0.07 +guinées guinée nom f p 1.40 0.07 1.30 0.00 +guipure guipure nom f s 0.27 1.15 0.14 0.61 +guipures guipure nom f p 0.27 1.15 0.14 0.54 +guirlande guirlande nom f s 1.65 9.05 0.62 2.30 +guirlandes guirlande nom f p 1.65 9.05 1.03 6.76 +guise guise nom f s 6.26 20.61 6.26 20.61 +guises guis nom f p 0.00 0.07 0.00 0.07 +guitare guitare nom f s 13.86 14.80 12.78 11.55 +guitares guitare nom f p 13.86 14.80 1.08 3.24 +guitariste guitariste nom s 2.29 4.39 1.76 3.38 +guitaristes guitariste nom p 2.29 4.39 0.53 1.01 +guitoune guitoune nom f s 0.00 5.68 0.00 3.51 +guitounes guitoune nom f p 0.00 5.68 0.00 2.16 +gélatine gélatine nom f s 0.87 1.35 0.87 1.22 +gélatines gélatine nom f p 0.87 1.35 0.00 0.14 +gélatineuse gélatineux adj f s 0.16 1.62 0.01 0.54 +gélatineuses gélatineux adj f p 0.16 1.62 0.01 0.20 +gélatineux gélatineux adj m 0.16 1.62 0.13 0.88 +gélatino_bromure gélatino_bromure nom m s 0.00 0.07 0.00 0.07 +gulden gulden nom m s 0.10 0.00 0.10 0.00 +gélifiant gélifiant nom m s 0.01 0.00 0.01 0.00 +gélification gélification nom f s 0.00 0.07 0.00 0.07 +gélifié gélifier ver m s 0.00 0.07 0.00 0.07 par:pas; +géline géline nom f s 0.01 0.20 0.01 0.00 +gélines géline nom f p 0.01 0.20 0.00 0.20 +gélinotte gélinotte nom f s 0.00 0.07 0.00 0.07 +gélolevure gélolevure nom f s 0.00 0.07 0.00 0.07 +gélose gélose nom f s 0.01 0.07 0.01 0.07 +gélule gélule nom f s 0.38 0.88 0.04 0.14 +gélules gélule nom f p 0.38 0.88 0.33 0.74 +gémeau gémeau nom m s 0.40 0.07 0.12 0.00 +gémeaux gémeau nom m p 0.40 0.07 0.29 0.07 +gémellaire gémellaire adj s 0.01 7.43 0.01 7.09 +gémellaires gémellaire adj p 0.01 7.43 0.00 0.34 +gémellité gémellité nom f s 0.17 3.38 0.17 3.38 +gémi gémir ver m s 9.19 36.89 0.28 1.96 par:pas; +gémie gémir ver f s 9.19 36.89 0.01 0.07 par:pas; +gémir gémir ver 9.19 36.89 2.38 8.18 inf; +gémira gémir ver 9.19 36.89 0.04 0.07 ind:fut:3s; +gémirai gémir ver 9.19 36.89 0.01 0.00 ind:fut:1s; +gémiraient gémir ver 9.19 36.89 0.00 0.07 cnd:pre:3p; +gémirais gémir ver 9.19 36.89 0.10 0.00 cnd:pre:1s; +gémirait gémir ver 9.19 36.89 0.00 0.20 cnd:pre:3s; +gémirent gémir ver 9.19 36.89 0.00 0.20 ind:pas:3p; +gémis gémir ver m p 9.19 36.89 0.93 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +gémissaient gémir ver 9.19 36.89 0.12 1.28 ind:imp:3p; +gémissais gémir ver 9.19 36.89 0.07 0.27 ind:imp:1s;ind:imp:2s; +gémissait gémir ver 9.19 36.89 0.52 6.01 ind:imp:3s; +gémissant gémir ver 9.19 36.89 0.19 4.80 par:pre; +gémissante gémissant adj f s 0.08 2.64 0.00 1.15 +gémissantes gémissant adj f p 0.08 2.64 0.02 0.54 +gémissants gémissant adj m p 0.08 2.64 0.02 0.14 +gémisse gémir ver 9.19 36.89 0.03 0.07 sub:pre:3s; +gémissement gémissement nom m s 5.16 16.76 0.97 9.32 +gémissements gémissement nom m p 5.16 16.76 4.18 7.43 +gémissent gémir ver 9.19 36.89 0.45 0.81 ind:pre:3p; +gémisseur gémisseur adj m s 0.00 0.20 0.00 0.07 +gémisseurs gémisseur adj m p 0.00 0.20 0.00 0.14 +gémissez gémir ver 9.19 36.89 0.17 0.07 imp:pre:2p;ind:pre:2p; +gémissiez gémir ver 9.19 36.89 0.01 0.00 ind:imp:2p; +gémit gémir ver 9.19 36.89 3.88 12.30 ind:pre:3s;ind:pas:3s; +gémonies gémonies nom f p 0.01 0.07 0.01 0.07 +gun gun nom m s 1.51 0.14 1.15 0.07 +guna guna nom m 0.04 0.00 0.04 0.00 +gêna gêner ver 57.76 71.01 0.01 1.22 ind:pas:3s; +gênaient gêner ver 57.76 71.01 0.16 2.84 ind:imp:3p; +gênais gêner ver 57.76 71.01 0.34 0.61 ind:imp:1s;ind:imp:2s; +gênait gêner ver 57.76 71.01 1.64 11.96 ind:imp:3s; +gênant gênant adj m s 10.33 10.27 8.89 6.08 +gênante gênant adj f s 10.33 10.27 0.65 2.43 +gênantes gênant adj f p 10.33 10.27 0.27 0.95 +gênants gênant adj m p 10.33 10.27 0.52 0.81 +gêne gêner ver 57.76 71.01 29.21 13.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gênent gêner ver 57.76 71.01 1.81 2.16 ind:pre:3p; +gêner gêner ver 57.76 71.01 5.48 9.80 inf;; +gênera gêner ver 57.76 71.01 1.36 0.68 ind:fut:3s; +gênerai gêner ver 57.76 71.01 0.47 0.14 ind:fut:1s; +gêneraient gêner ver 57.76 71.01 0.02 0.14 cnd:pre:3p; +gênerais gêner ver 57.76 71.01 0.34 0.68 cnd:pre:1s;cnd:pre:2s; +gênerait gêner ver 57.76 71.01 1.77 1.15 cnd:pre:3s; +gênerons gêner ver 57.76 71.01 0.01 0.07 ind:fut:1p; +gêneront gêner ver 57.76 71.01 0.19 0.07 ind:fut:3p; +gênes gêner ver 57.76 71.01 1.19 0.68 ind:pre:2s;sub:pre:2s; +gêneur gêneur nom m s 0.95 1.01 0.85 0.54 +gêneurs gêneur nom m p 0.95 1.01 0.09 0.34 +gêneuse gêneur nom f s 0.95 1.01 0.01 0.07 +gêneuses gêneur nom f p 0.95 1.01 0.00 0.07 +gênez gêner ver 57.76 71.01 3.52 1.28 imp:pre:2p;ind:pre:2p; +génial génial adj m s 134.47 10.20 115.27 5.95 +géniale génial adj f s 134.47 10.20 15.86 3.31 +génialement génialement adv 0.04 0.20 0.04 0.20 +géniales génial adj f p 134.47 10.20 1.62 0.27 +génialité génialité nom f s 0.00 0.07 0.00 0.07 +géniaux génial adj m p 134.47 10.20 1.72 0.68 +génie génie nom m s 38.01 51.62 34.65 47.43 +génies génie nom m p 38.01 51.62 3.36 4.19 +gêniez gêner ver 57.76 71.01 0.00 0.07 ind:imp:2p; +génique génique adj s 0.40 0.00 0.40 0.00 +génisse génisse nom f s 0.83 1.76 0.69 1.42 +génisses génisse nom f p 0.83 1.76 0.15 0.34 +génital génital adj m s 2.43 1.55 0.16 0.34 +génitale génital adj f s 2.43 1.55 0.08 0.27 +génitales génital adj f p 2.43 1.55 0.81 0.34 +génitalité génitalité nom f s 0.00 0.07 0.00 0.07 +génitaux génital adj m p 2.43 1.55 1.38 0.61 +géniteur géniteur nom m s 0.49 2.50 0.33 1.01 +géniteurs géniteur nom m p 0.49 2.50 0.03 1.08 +génitoires génitoire nom f p 0.00 0.41 0.00 0.41 +génitrice géniteur nom f s 0.49 2.50 0.14 0.27 +génitrices génitrice nom f p 0.02 0.00 0.02 0.00 +génocidaire génocidaire adj s 0.04 0.00 0.04 0.00 +génocide génocide nom m s 1.25 1.15 1.18 0.81 +génocides génocide nom m p 1.25 1.15 0.08 0.34 +génois génois adj m 0.17 0.34 0.17 0.34 +génoise génois nom f s 0.16 1.42 0.12 0.54 +génoises génoise nom f p 0.21 0.00 0.21 0.00 +génome génome nom m s 0.63 0.00 0.63 0.00 +génomique génomique adj s 0.11 0.00 0.09 0.00 +génomiques génomique adj p 0.11 0.00 0.02 0.00 +gênons gêner ver 57.76 71.01 0.17 0.00 imp:pre:1p;ind:pre:1p; +gênât gêner ver 57.76 71.01 0.00 0.20 sub:imp:3s; +génotype génotype nom m s 0.11 0.00 0.08 0.00 +génotypes génotype nom m p 0.11 0.00 0.04 0.00 +génovéfains génovéfain nom m p 0.00 0.07 0.00 0.07 +guns gun nom m p 1.51 0.14 0.36 0.07 +génère générer ver 2.83 0.00 0.93 0.00 imp:pre:2s;ind:pre:3s; +génères générer ver 2.83 0.00 0.03 0.00 ind:pre:2s; +gêné gêner ver m s 57.76 71.01 5.44 14.53 par:pas; +généalogie généalogie nom f s 0.28 1.96 0.28 1.62 +généalogies généalogie nom f p 0.28 1.96 0.00 0.34 +généalogique généalogique adj s 0.76 2.50 0.69 1.89 +généalogiques généalogique adj p 0.76 2.50 0.07 0.61 +généalogiste généalogiste nom s 0.17 0.14 0.04 0.14 +généalogistes généalogiste nom p 0.17 0.14 0.14 0.00 +gênée gêner ver f s 57.76 71.01 3.26 4.12 par:pas; +gênées gêner ver f p 57.76 71.01 0.18 0.34 par:pas; +génuflexion génuflexion nom f s 0.03 1.01 0.03 0.68 +génuflexions génuflexion nom f p 0.03 1.01 0.00 0.34 +génuine génuine adj f s 0.00 0.07 0.00 0.07 +général général nom m s 124.83 236.89 119.61 223.99 +générale général adj f s 41.31 95.41 10.27 34.73 +généralement généralement adv 7.79 16.89 7.79 16.89 +générales général adj f p 41.31 95.41 0.95 3.65 +généralife généralife nom m s 0.00 0.20 0.00 0.20 +généralisable généralisable adj s 0.00 0.07 0.00 0.07 +généralisait généraliser ver 0.66 1.22 0.00 0.14 ind:imp:3s; +généralisant généraliser ver 0.66 1.22 0.00 0.07 par:pre; +généralisation généralisation nom f s 0.07 0.61 0.05 0.20 +généralisations généralisation nom f p 0.07 0.61 0.02 0.41 +généralise généraliser ver 0.66 1.22 0.14 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +généraliser généraliser ver 0.66 1.22 0.44 0.34 inf; +généralisez généraliser ver 0.66 1.22 0.01 0.20 imp:pre:2p;ind:pre:2p; +généralisions généraliser ver 0.66 1.22 0.00 0.07 ind:imp:1p; +généralissime généralissime nom m s 0.12 1.82 0.12 1.82 +généraliste généraliste nom s 0.72 0.54 0.45 0.41 +généralistes généraliste nom p 0.72 0.54 0.27 0.14 +généralisé généralisé adj m s 0.33 2.30 0.25 0.68 +généralisée généralisé adj f s 0.33 2.30 0.08 1.49 +généralisées généralisé adj f p 0.33 2.30 0.00 0.14 +généralité généralité nom f s 0.41 1.96 0.11 0.47 +généralités généralité nom f p 0.41 1.96 0.30 1.49 +générant générer ver 2.83 0.00 0.07 0.00 par:pre; +générateur générateur nom m s 8.93 0.34 6.44 0.14 +générateurs générateur nom m p 8.93 0.34 2.20 0.07 +génératif génératif adj m s 0.02 0.00 0.01 0.00 +génération génération nom f s 20.51 37.77 13.38 21.01 +générationnel générationnel adj m s 0.27 0.00 0.27 0.00 +générations génération nom f p 20.51 37.77 7.13 16.76 +générative génératif adj f s 0.02 0.00 0.01 0.00 +génératrice générateur nom f s 8.93 0.34 0.29 0.14 +génératrices génératrice nom f p 0.02 0.00 0.02 0.00 +généraux général nom m p 124.83 236.89 3.83 11.08 +générer générer ver 2.83 0.00 1.05 0.00 inf; +généreuse généreux adj f s 23.32 23.72 6.00 8.04 +généreusement généreusement adv 1.81 4.53 1.81 4.53 +généreuses généreux adj f p 23.32 23.72 0.74 1.69 +généreux généreux adj m 23.32 23.72 16.57 13.99 +générez générer ver 2.83 0.00 0.05 0.00 ind:pre:2p; +générique générique nom m s 1.71 0.88 1.64 0.54 +génériques générique adj p 0.56 0.41 0.19 0.07 +générosité générosité nom f s 6.15 11.55 6.15 10.95 +générosités générosité nom f p 6.15 11.55 0.00 0.61 +généré générer ver m s 2.83 0.00 0.34 0.00 par:pas; +générée générer ver f s 2.83 0.00 0.14 0.00 par:pas; +générés générer ver m p 2.83 0.00 0.20 0.00 par:pas; +gênés gêner ver m p 57.76 71.01 0.92 2.91 par:pas; +génésique génésique adj s 0.00 0.07 0.00 0.07 +généticien généticien nom m s 0.60 0.07 0.26 0.07 +généticienne généticien nom f s 0.60 0.07 0.01 0.00 +généticiens généticien nom m p 0.60 0.07 0.33 0.00 +génétique génétique adj s 8.06 1.35 6.33 1.01 +génétiquement génétiquement adv 1.90 0.20 1.90 0.20 +génétiques génétique adj p 8.06 1.35 1.73 0.34 +géo géo nom f s 0.30 1.22 0.30 1.22 +géocorises géocorise nom f p 0.00 0.07 0.00 0.07 +géode géode nom f s 0.04 0.00 0.04 0.00 +géodésiens géodésien adj m p 0.00 0.14 0.00 0.14 +géodésigraphe géodésigraphe nom m s 0.00 0.07 0.00 0.07 +géodésique géodésique adj s 0.18 0.27 0.17 0.20 +géodésiques géodésique adj m p 0.18 0.27 0.01 0.07 +géographe géographe nom s 0.10 0.95 0.04 0.54 +géographes géographe nom f p 0.10 0.95 0.06 0.41 +géographie géographie nom f s 2.26 8.51 2.26 8.11 +géographies géographie nom f p 2.26 8.51 0.00 0.41 +géographique géographique adj s 0.97 3.51 0.83 2.36 +géographiquement géographiquement adv 0.10 0.47 0.10 0.47 +géographiques géographique adj p 0.97 3.51 0.14 1.15 +géologie géologie nom f s 0.40 0.61 0.40 0.61 +géologique géologique adj s 0.59 0.81 0.39 0.34 +géologiquement géologiquement adv 0.03 0.00 0.03 0.00 +géologiques géologique adj p 0.59 0.81 0.20 0.47 +géologue géologue nom s 1.11 0.61 0.73 0.27 +géologues géologue nom p 1.11 0.61 0.38 0.34 +géomagnétique géomagnétique adj f s 0.03 0.00 0.02 0.00 +géomagnétiques géomagnétique adj p 0.03 0.00 0.01 0.00 +géomancie géomancie nom f s 0.01 0.07 0.01 0.07 +géomètre géomètre nom s 6.20 0.54 6.02 0.27 +géomètres géomètre nom p 6.20 0.54 0.19 0.27 +géométrie géométrie nom f s 1.06 5.20 1.06 4.80 +géométries géométrie nom f p 1.06 5.20 0.00 0.41 +géométrique géométrique adj s 0.77 4.80 0.58 2.57 +géométriquement géométriquement adv 0.08 0.41 0.08 0.41 +géométriques géométrique adj p 0.77 4.80 0.19 2.23 +géophysiciens géophysicien nom m p 0.01 0.00 0.01 0.00 +géophysique géophysique nom f s 0.17 0.00 0.17 0.00 +géopolitique géopolitique adj s 0.07 0.14 0.07 0.14 +géorgien géorgien adj m s 0.45 0.68 0.44 0.27 +géorgienne géorgien adj f s 0.45 0.68 0.01 0.27 +géorgiennes géorgien adj f p 0.45 0.68 0.00 0.07 +géorgiens géorgien adj m p 0.45 0.68 0.00 0.07 +géosciences géoscience nom f p 0.01 0.00 0.01 0.00 +géostationnaire géostationnaire adj s 0.04 0.00 0.04 0.00 +géostratégie géostratégie nom f s 0.00 0.07 0.00 0.07 +géosynchrone géosynchrone adj f s 0.02 0.00 0.02 0.00 +géothermale géothermal adj f s 0.01 0.00 0.01 0.00 +géothermie géothermie nom f s 0.01 0.00 0.01 0.00 +géothermique géothermique adj s 0.13 0.00 0.13 0.00 +géotropique géotropique adj m s 0.00 0.20 0.00 0.14 +géotropiques géotropique adj m p 0.00 0.20 0.00 0.07 +guppy guppy nom m s 0.55 0.00 0.55 0.00 +géra gérer ver 27.51 3.31 0.00 0.14 ind:pas:3s; +gérable gérable adj s 0.29 0.00 0.25 0.00 +gérables gérable adj p 0.29 0.00 0.04 0.00 +gérais gérer ver 27.51 3.31 0.27 0.07 ind:imp:1s;ind:imp:2s; +gérait gérer ver 27.51 3.31 0.40 0.41 ind:imp:3s; +gérance gérance nom f s 0.29 1.15 0.29 1.15 +géranium géranium nom m s 1.09 4.12 0.77 0.95 +géraniums géranium nom m p 1.09 4.12 0.32 3.18 +gérant gérant nom m s 6.45 8.72 5.54 8.04 +gérante gérant nom f s 6.45 8.72 0.69 0.68 +gérants gérant nom m p 6.45 8.72 0.21 0.00 +gérer gérer ver 27.51 3.31 16.57 1.22 inf; +gérera gérer ver 27.51 3.31 0.21 0.00 ind:fut:3s; +gérerai gérer ver 27.51 3.31 0.15 0.00 ind:fut:1s; +gérerais gérer ver 27.51 3.31 0.02 0.00 cnd:pre:1s; +gérerez gérer ver 27.51 3.31 0.01 0.07 ind:fut:2p; +géreriez gérer ver 27.51 3.31 0.01 0.00 cnd:pre:2p; +gérez gérer ver 27.51 3.31 0.69 0.07 imp:pre:2p;ind:pre:2p; +gériatrie gériatrie nom f s 0.07 0.07 0.07 0.07 +gériatrique gériatrique adj s 0.09 0.00 0.07 0.00 +gériatriques gériatrique adj f p 0.09 0.00 0.01 0.00 +gérons gérer ver 27.51 3.31 0.12 0.00 imp:pre:1p;ind:pre:1p; +géronte géronte nom m s 0.00 0.14 0.00 0.07 +gérontes géronte nom m p 0.00 0.14 0.00 0.07 +gérontisme gérontisme nom m s 0.01 0.00 0.01 0.00 +gérontologie gérontologie nom f s 0.05 0.27 0.05 0.27 +gérontologue gérontologue nom s 0.01 0.07 0.01 0.07 +gérontophiles gérontophile nom p 0.00 0.07 0.00 0.07 +guru guru nom m s 0.08 0.07 0.08 0.07 +géré gérer ver m s 27.51 3.31 1.83 0.41 par:pas; +gérée gérer ver f s 27.51 3.31 0.28 0.34 par:pas; +gérées gérer ver f p 27.51 3.31 0.06 0.00 par:pas; +gérés gérer ver m p 27.51 3.31 0.07 0.00 par:pas; +gus gus nom m 8.50 1.96 8.50 1.96 +gésier gésier nom m s 0.07 0.88 0.05 0.74 +gésiers gésier nom m p 0.07 0.88 0.02 0.14 +gésine gésine nom f s 0.10 0.34 0.10 0.34 +gésir gésir ver 4.77 15.68 0.02 0.07 inf; +gusse gusse nom m s 0.14 0.00 0.14 0.00 +gustatif gustatif adj m s 0.21 0.14 0.05 0.14 +gustation gustation nom f s 0.00 0.14 0.00 0.14 +gustative gustatif adj f s 0.21 0.14 0.02 0.00 +gustatives gustatif adj f p 0.21 0.14 0.14 0.00 +gusto gusto adv 0.88 0.14 0.88 0.14 +gut gut nom m s 0.64 0.20 0.64 0.20 +guède guède nom f s 0.02 0.00 0.02 0.00 +guère guère adv 17.02 110.68 17.02 110.68 +gutta_percha gutta_percha nom f s 0.03 0.00 0.03 0.00 +guttural guttural adj m s 0.07 2.97 0.04 1.08 +gutturale guttural adj f s 0.07 2.97 0.01 0.95 +gutturales guttural adj f p 0.07 2.97 0.00 0.34 +gutturaux guttural adj m p 0.07 2.97 0.01 0.61 +gué gué ono 0.02 0.00 0.02 0.00 +guéable guéable adj f s 0.00 0.07 0.00 0.07 +guéguerre guéguerre nom f s 0.07 0.41 0.04 0.20 +guéguerres guéguerre nom f p 0.07 0.41 0.02 0.20 +guépard guépard nom m s 0.44 0.74 0.27 0.34 +guépards guépard nom m p 0.44 0.74 0.17 0.41 +guêpe guêpe nom f s 3.37 6.42 2.73 2.84 +guêpes guêpe nom f p 3.37 6.42 0.64 3.58 +guêpier guêpier nom m s 0.27 0.68 0.27 0.68 +guêpière guêpière nom f s 0.06 1.22 0.05 0.95 +guêpières guêpière nom f p 0.06 1.22 0.01 0.27 +guérît guérir ver 44.74 30.27 0.00 0.07 sub:imp:3s; +guéret guéret nom m s 0.01 0.27 0.00 0.07 +guérets guéret nom m p 0.01 0.27 0.01 0.20 +guéri guérir ver m s 44.74 30.27 9.04 5.95 par:pas; +guéridon guéridon nom m s 0.70 11.42 0.69 8.31 +guéridons guéridon nom m p 0.70 11.42 0.01 3.11 +guérie guérir ver f s 44.74 30.27 3.84 3.65 par:pas; +guéries guéri adj f p 3.46 4.05 0.16 0.27 +guérilla guérilla nom f s 2.17 1.55 1.89 1.35 +guérillas guérilla nom f p 2.17 1.55 0.28 0.20 +guérillero guérillero nom m s 2.81 0.27 0.67 0.14 +guérilleros guérillero nom m p 2.81 0.27 2.14 0.14 +guérir guérir ver 44.74 30.27 17.70 11.49 inf; +guérira guérir ver 44.74 30.27 2.28 0.81 ind:fut:3s; +guérirai guérir ver 44.74 30.27 0.69 0.34 ind:fut:1s; +guérirais guérir ver 44.74 30.27 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +guérirait guérir ver 44.74 30.27 0.29 0.47 cnd:pre:3s; +guériras guérir ver 44.74 30.27 0.66 0.54 ind:fut:2s; +guérirez guérir ver 44.74 30.27 0.33 0.14 ind:fut:2p; +guérirons guérir ver 44.74 30.27 0.02 0.07 ind:fut:1p; +guériront guérir ver 44.74 30.27 0.28 0.07 ind:fut:3p; +guéris guérir ver m p 44.74 30.27 2.03 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +guérison guérison nom f s 5.84 5.20 5.43 4.93 +guérisons guérison nom f p 5.84 5.20 0.41 0.27 +guérissable guérissable adj m s 0.01 0.20 0.01 0.07 +guérissables guérissable adj f p 0.01 0.20 0.00 0.14 +guérissaient guérir ver 44.74 30.27 0.16 0.34 ind:imp:3p; +guérissais guérir ver 44.74 30.27 0.02 0.07 ind:imp:1s; +guérissait guérir ver 44.74 30.27 0.14 0.74 ind:imp:3s; +guérissant guérir ver 44.74 30.27 0.10 0.07 par:pre; +guérisse guérir ver 44.74 30.27 1.95 0.27 sub:pre:1s;sub:pre:3s; +guérissent guérir ver 44.74 30.27 0.86 0.41 ind:pre:3p; +guérisses guérir ver 44.74 30.27 0.05 0.07 sub:pre:2s; +guérisseur guérisseur nom m s 3.10 2.23 1.95 1.42 +guérisseurs guérisseur nom m p 3.10 2.23 0.24 0.27 +guérisseuse guérisseur nom f s 3.10 2.23 0.92 0.47 +guérisseuses guérisseuse nom f p 0.10 0.00 0.10 0.00 +guérissez guérir ver 44.74 30.27 0.35 0.27 imp:pre:2p;ind:pre:2p; +guérissiez guérir ver 44.74 30.27 0.04 0.07 ind:imp:2p; +guérissons guérir ver 44.74 30.27 0.11 0.00 ind:pre:1p; +guérit guérir ver 44.74 30.27 3.62 3.24 ind:pre:3s;ind:pas:3s; +guérite guérite nom f s 0.06 5.07 0.05 4.12 +guérites guérite nom f p 0.06 5.07 0.01 0.95 +guêtre guêtre nom f s 0.39 4.80 0.03 0.41 +guêtres guêtre nom f p 0.39 4.80 0.36 4.39 +guêtré guêtrer ver m s 0.00 0.14 0.00 0.07 par:pas; +guêtrés guêtrer ver m p 0.00 0.14 0.00 0.07 par:pas; +guévariste guévariste nom s 0.00 0.14 0.00 0.14 +guyanais guyanais adj m p 0.00 0.07 0.00 0.07 +guzla guzla nom f s 0.00 0.07 0.00 0.07 +gy gy ono 0.00 1.15 0.00 1.15 +gym gym nom f s 9.18 2.23 9.18 2.23 +gymkhana gymkhana nom m s 0.05 0.27 0.05 0.27 +gymnase gymnase nom m s 4.28 2.43 4.11 2.09 +gymnases gymnase nom m p 4.28 2.43 0.17 0.34 +gymnasium gymnasium nom m s 0.00 0.14 0.00 0.14 +gymnaste gymnaste nom s 0.35 1.35 0.26 0.61 +gymnastes gymnaste nom p 0.35 1.35 0.10 0.74 +gymnastique gymnastique nom f s 2.85 10.00 2.74 9.39 +gymnastiques gymnastique nom f p 2.85 10.00 0.11 0.61 +gymnique gymnique adj f s 0.00 0.14 0.00 0.07 +gymniques gymnique adj f p 0.00 0.14 0.00 0.07 +gymnopédie gymnopédie nom f s 0.00 0.07 0.00 0.07 +gymnosophiste gymnosophiste nom s 0.00 0.14 0.00 0.07 +gymnosophistes gymnosophiste nom p 0.00 0.14 0.00 0.07 +gynéco gynéco nom s 0.96 0.54 0.96 0.54 +gynécologie gynécologie nom f s 0.28 0.07 0.28 0.07 +gynécologique gynécologique adj s 0.17 0.27 0.15 0.27 +gynécologiques gynécologique adj m p 0.17 0.27 0.02 0.00 +gynécologue gynécologue nom s 1.56 3.85 1.38 3.65 +gynécologues gynécologue nom p 1.56 3.85 0.17 0.20 +gynécomastie gynécomastie nom f s 0.03 0.00 0.03 0.00 +gynécée gynécée nom m s 0.01 0.20 0.01 0.14 +gynécées gynécée nom m p 0.01 0.20 0.00 0.07 +gypaète gypaète nom m s 0.08 0.00 0.08 0.00 +gypse gypse nom m s 0.09 0.34 0.09 0.27 +gypses gypse nom m p 0.09 0.34 0.00 0.07 +gypseuse gypseux adj f s 0.00 0.14 0.00 0.07 +gypseux gypseux adj m s 0.00 0.14 0.00 0.07 +gypsophile gypsophile nom f s 0.08 0.00 0.06 0.00 +gypsophiles gypsophile nom f p 0.08 0.00 0.02 0.00 +gyrins gyrin nom m p 0.00 0.07 0.00 0.07 +gyrocompas gyrocompas nom m 0.14 0.00 0.14 0.00 +gyrophare gyrophare nom m s 0.56 1.42 0.30 0.81 +gyrophares gyrophare nom m p 0.56 1.42 0.26 0.61 +gyroscope gyroscope nom m s 0.50 0.61 0.46 0.47 +gyroscopes gyroscope nom m p 0.50 0.61 0.04 0.14 +gyroscopique gyroscopique adj s 0.02 0.07 0.02 0.07 +gyrus gyrus nom m 0.01 0.07 0.01 0.07 +hôpital hôpital nom m s 133.15 54.93 126.08 50.41 +hôpitaux hôpital nom m p 133.15 54.93 7.07 4.53 +hôte hôte nom m s 19.43 20.20 13.43 10.81 +hôtel_dieu hôtel_dieu nom m s 0.01 0.81 0.01 0.81 +hôtel_restaurant hôtel_restaurant nom m s 0.00 0.14 0.00 0.14 +hôtel hôtel nom m s 114.67 158.92 107.73 143.78 +hôtelier hôtelier nom m s 0.44 1.35 0.43 1.08 +hôteliers hôtelier nom m p 0.44 1.35 0.01 0.20 +hôtelière hôtelière adj f s 0.63 0.34 0.61 0.27 +hôtelières hôtelière adj f p 0.63 0.34 0.01 0.07 +hôtellerie hôtellerie nom f s 0.57 1.82 0.57 1.76 +hôtelleries hôtellerie nom f p 0.57 1.82 0.00 0.07 +hôtels hôtel nom m p 114.67 158.92 6.94 15.14 +hôtes hôte nom m p 19.43 20.20 6.00 9.39 +hôtesse hôtesse nom f s 8.34 8.31 6.79 7.43 +hôtesses hôtesse nom f p 8.34 8.31 1.55 0.88 +ha ha ono 21.54 7.70 21.54 7.70 +haï haïr ver m s 55.42 35.68 0.86 2.03 par:pas; +haïe haïr ver f s 55.42 35.68 0.40 0.54 par:pas; +haïes haïr ver f p 55.42 35.68 0.00 0.20 par:pas; +haïk haïk nom m s 0.00 0.61 0.00 0.41 +haïkaï haïkaï nom m s 0.00 0.07 0.00 0.07 +haïks haïk nom m p 0.00 0.61 0.00 0.20 +haïku haïku nom m s 0.30 0.07 0.29 0.07 +haïkus haïku nom m p 0.30 0.07 0.01 0.00 +haïr haïr ver 55.42 35.68 5.91 7.09 inf; +haïra haïr ver 55.42 35.68 0.52 0.00 ind:fut:3s; +haïrai haïr ver 55.42 35.68 0.39 0.07 ind:fut:1s; +haïraient haïr ver 55.42 35.68 0.04 0.07 cnd:pre:3p; +haïrais haïr ver 55.42 35.68 0.05 0.74 cnd:pre:1s;cnd:pre:2s; +haïrait haïr ver 55.42 35.68 0.10 0.14 cnd:pre:3s; +haïras haïr ver 55.42 35.68 0.32 0.00 ind:fut:2s; +haïrez haïr ver 55.42 35.68 0.03 0.00 ind:fut:2p; +haïriez haïr ver 55.42 35.68 0.01 0.00 cnd:pre:2p; +haïrons haïr ver 55.42 35.68 0.00 0.07 ind:fut:1p; +haïront haïr ver 55.42 35.68 0.39 0.00 ind:fut:3p; +haïs haïr ver m p 55.42 35.68 0.34 1.01 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +haïssable haïssable adj s 0.07 1.62 0.07 1.15 +haïssables haïssable adj p 0.07 1.62 0.01 0.47 +haïssaient haïr ver 55.42 35.68 0.17 0.74 ind:imp:3p; +haïssais haïr ver 55.42 35.68 1.20 2.09 ind:imp:1s;ind:imp:2s; +haïssait haïr ver 55.42 35.68 1.10 6.08 ind:imp:3s; +haïssant haïr ver 55.42 35.68 0.05 0.27 par:pre; +haïsse haïr ver 55.42 35.68 0.25 0.14 sub:pre:1s;sub:pre:3s; +haïssent haïr ver 55.42 35.68 2.44 1.08 ind:pre:3p; +haïsses haïr ver 55.42 35.68 0.21 0.00 sub:pre:2s; +haïssez haïr ver 55.42 35.68 1.19 0.27 imp:pre:2p;ind:pre:2p; +haïssiez haïr ver 55.42 35.68 0.40 0.27 ind:imp:2p; +haïssions haïr ver 55.42 35.68 0.00 0.14 ind:imp:1p; +haïssons haïr ver 55.42 35.68 0.29 0.20 imp:pre:1p;ind:pre:1p; +haït haïr ver 55.42 35.68 0.03 0.00 ind:pas:3s; +haïtien haïtien adj m s 0.70 0.34 0.35 0.07 +haïtienne haïtien adj f s 0.70 0.34 0.32 0.00 +haïtiens haïtien nom m p 0.58 1.01 0.53 0.14 +habanera habanera nom f s 0.01 0.00 0.01 0.00 +habile habile adj s 6.44 17.16 5.60 13.11 +habilement habilement adv 0.58 5.20 0.58 5.20 +habiles habile adj p 6.44 17.16 0.84 4.05 +habileté habileté nom f s 2.05 10.88 2.03 10.54 +habiletés habileté nom f p 2.05 10.88 0.02 0.34 +habilitation habilitation nom f s 0.22 0.07 0.19 0.07 +habilitations habilitation nom f p 0.22 0.07 0.03 0.00 +habilite habiliter ver 0.77 1.01 0.04 0.00 imp:pre:2s;ind:pre:3s; +habilité habilité nom f s 0.58 0.14 0.51 0.14 +habilitée habiliter ver f s 0.77 1.01 0.17 0.14 par:pas; +habilitées habilité adj f p 0.43 0.20 0.15 0.00 +habilités habiliter ver m p 0.77 1.01 0.11 0.20 par:pas; +habilla habiller ver 58.22 67.36 0.13 3.78 ind:pas:3s; +habillage habillage nom m s 0.14 0.14 0.14 0.14 +habillai habiller ver 58.22 67.36 0.00 0.95 ind:pas:1s; +habillaient habiller ver 58.22 67.36 0.14 0.88 ind:imp:3p; +habillais habiller ver 58.22 67.36 0.56 0.68 ind:imp:1s;ind:imp:2s; +habillait habiller ver 58.22 67.36 0.86 6.08 ind:imp:3s; +habillant habiller ver 58.22 67.36 0.10 0.95 par:pre; +habillas habiller ver 58.22 67.36 0.00 0.07 ind:pas:2s; +habille habiller ver 58.22 67.36 16.95 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +habillement habillement nom m s 0.55 2.50 0.55 2.50 +habillent habiller ver 58.22 67.36 0.77 1.35 ind:pre:3p; +habiller habiller ver 58.22 67.36 17.05 15.27 inf;; +habillera habiller ver 58.22 67.36 0.39 0.14 ind:fut:3s; +habillerai habiller ver 58.22 67.36 0.29 0.14 ind:fut:1s; +habilleraient habiller ver 58.22 67.36 0.01 0.07 cnd:pre:3p; +habillerais habiller ver 58.22 67.36 0.06 0.14 cnd:pre:1s; +habillerait habiller ver 58.22 67.36 0.14 0.34 cnd:pre:3s; +habilleras habiller ver 58.22 67.36 0.03 0.20 ind:fut:2s; +habillerez habiller ver 58.22 67.36 0.23 0.00 ind:fut:2p; +habillerons habiller ver 58.22 67.36 0.12 0.07 ind:fut:1p; +habilles habiller ver 58.22 67.36 2.26 0.27 ind:pre:2s; +habilleur habilleur nom m s 0.70 0.34 0.06 0.07 +habilleurs habilleur nom m p 0.70 0.34 0.02 0.00 +habilleuse habilleur nom f s 0.70 0.34 0.62 0.20 +habilleuses habilleuse nom f p 0.02 0.00 0.02 0.00 +habillez habiller ver 58.22 67.36 3.65 0.20 imp:pre:2p;ind:pre:2p; +habilliez habiller ver 58.22 67.36 0.04 0.00 ind:imp:2p; +habillions habiller ver 58.22 67.36 0.01 0.07 ind:imp:1p; +habillâmes habiller ver 58.22 67.36 0.00 0.07 ind:pas:1p; +habillons habiller ver 58.22 67.36 0.34 0.20 imp:pre:1p;ind:pre:1p; +habillât habiller ver 58.22 67.36 0.00 0.14 sub:imp:3s; +habillèrent habiller ver 58.22 67.36 0.00 0.27 ind:pas:3p; +habillé habiller ver m s 58.22 67.36 7.24 12.03 par:pas; +habillée habiller ver f s 58.22 67.36 4.51 8.04 par:pas; +habillées habillé adj f p 10.45 17.23 0.59 1.62 +habillés habiller ver m p 58.22 67.36 2.07 5.20 par:pas; +habit habit nom m s 27.64 27.50 8.34 11.08 +habita habiter ver 128.30 112.50 0.02 1.08 ind:pas:3s; +habitabilité habitabilité nom f s 0.00 0.07 0.00 0.07 +habitable habitable adj s 0.57 2.09 0.34 1.69 +habitables habitable adj p 0.57 2.09 0.23 0.41 +habitacle habitacle nom m s 0.27 1.69 0.26 1.62 +habitacles habitacle nom m p 0.27 1.69 0.01 0.07 +habitai habiter ver 128.30 112.50 0.00 0.07 ind:pas:1s; +habitaient habiter ver 128.30 112.50 2.04 8.24 ind:imp:3p; +habitais habiter ver 128.30 112.50 3.27 4.39 ind:imp:1s;ind:imp:2s; +habitait habiter ver 128.30 112.50 8.94 31.01 ind:imp:3s; +habitant habitant nom m s 16.68 29.46 1.38 4.32 +habitante habitant nom f s 16.68 29.46 0.09 0.14 +habitants habitant nom m p 16.68 29.46 15.21 25.00 +habitassent habiter ver 128.30 112.50 0.00 0.07 sub:imp:3p; +habitat habitat nom m s 1.38 0.95 1.31 0.88 +habitation habitation nom f s 1.77 5.61 0.82 3.58 +habitations habitation nom f p 1.77 5.61 0.95 2.03 +habitats habitat nom m p 1.38 0.95 0.06 0.07 +habite habiter ver 128.30 112.50 59.55 22.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +habitent habiter ver 128.30 112.50 6.92 4.80 ind:pre:3p; +habiter habiter ver 128.30 112.50 12.73 13.51 inf; +habitera habiter ver 128.30 112.50 0.98 0.34 ind:fut:3s; +habiterai habiter ver 128.30 112.50 0.80 0.14 ind:fut:1s; +habiteraient habiter ver 128.30 112.50 0.01 0.14 cnd:pre:3p; +habiterais habiter ver 128.30 112.50 0.42 0.14 cnd:pre:1s;cnd:pre:2s; +habiterait habiter ver 128.30 112.50 0.64 0.34 cnd:pre:3s; +habiteras habiter ver 128.30 112.50 0.43 0.41 ind:fut:2s; +habiterez habiter ver 128.30 112.50 0.41 0.07 ind:fut:2p; +habiterions habiter ver 128.30 112.50 0.01 0.27 cnd:pre:1p; +habiterons habiter ver 128.30 112.50 0.24 0.14 ind:fut:1p; +habiteront habiter ver 128.30 112.50 0.01 0.14 ind:fut:3p; +habites habiter ver 128.30 112.50 11.71 1.96 ind:pre:2s; +habitez habiter ver 128.30 112.50 8.83 1.82 imp:pre:2p;ind:pre:2p; +habitiez habiter ver 128.30 112.50 1.50 0.14 ind:imp:2p; +habitions habiter ver 128.30 112.50 0.39 2.16 ind:imp:1p; +habitons habiter ver 128.30 112.50 1.72 1.55 imp:pre:1p;ind:pre:1p; +habitât habiter ver 128.30 112.50 0.00 0.34 sub:imp:3s; +habits habit nom m p 27.64 27.50 19.29 16.42 +habitèrent habiter ver 128.30 112.50 0.00 0.47 ind:pas:3p; +habité habiter ver m s 128.30 112.50 4.83 8.51 par:pas; +habitua habituer ver 31.89 46.42 0.02 0.74 ind:pas:3s; +habituai habituer ver 31.89 46.42 0.10 0.07 ind:pas:1s; +habituaient habituer ver 31.89 46.42 0.00 0.88 ind:imp:3p; +habituais habituer ver 31.89 46.42 0.03 0.74 ind:imp:1s; +habituait habituer ver 31.89 46.42 0.17 1.76 ind:imp:3s; +habituant habituer ver 31.89 46.42 0.01 0.74 par:pre; +habitude habitude nom f s 98.22 154.46 89.71 128.51 +habitudes habitude nom f p 98.22 154.46 8.52 25.95 +habitée habiter ver f s 128.30 112.50 1.19 3.58 par:pas; +habitue habituer ver 31.89 46.42 5.36 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +habituel habituel adj m s 15.66 39.93 5.35 14.86 +habituelle habituel adj f s 15.66 39.93 4.95 13.65 +habituellement habituellement adv 4.02 7.70 4.02 7.70 +habituelles habituel adj f p 15.66 39.93 2.00 5.41 +habituels habituel adj m p 15.66 39.93 3.36 6.01 +habituent habituer ver 31.89 46.42 0.47 0.61 ind:pre:3p; +habituer habituer ver 31.89 46.42 8.95 9.26 inf;;inf;;inf;; +habituera habituer ver 31.89 46.42 0.21 0.20 ind:fut:3s; +habituerai habituer ver 31.89 46.42 0.46 0.27 ind:fut:1s; +habitueraient habituer ver 31.89 46.42 0.00 0.14 cnd:pre:3p; +habituerais habituer ver 31.89 46.42 0.08 0.14 cnd:pre:1s; +habituerait habituer ver 31.89 46.42 0.04 0.47 cnd:pre:3s; +habitueras habituer ver 31.89 46.42 1.45 0.14 ind:fut:2s; +habituerez habituer ver 31.89 46.42 0.33 0.14 ind:fut:2p; +habituerons habituer ver 31.89 46.42 0.00 0.07 ind:fut:1p; +habitueront habituer ver 31.89 46.42 0.07 0.07 ind:fut:3p; +habitées habité adj f p 1.40 3.85 0.08 0.27 +habitues habituer ver 31.89 46.42 0.71 0.34 ind:pre:2s;sub:pre:2s; +habituez habituer ver 31.89 46.42 0.37 0.27 imp:pre:2p;ind:pre:2p; +habituons habituer ver 31.89 46.42 0.02 0.00 imp:pre:1p; +habituât habituer ver 31.89 46.42 0.00 0.14 sub:imp:3s; +habités habité adj m p 1.40 3.85 0.38 0.61 +habitus habitus nom m 0.00 0.14 0.00 0.14 +habituèrent habituer ver 31.89 46.42 0.11 0.34 ind:pas:3p; +habitué habituer ver m s 31.89 46.42 6.32 10.47 par:pas; +habituée habituer ver f s 31.89 46.42 3.75 7.70 par:pas; +habituées habituer ver f p 31.89 46.42 0.63 0.47 par:pas; +habitués habituer ver m p 31.89 46.42 2.24 5.74 par:pas; +hacha hacher ver 2.18 6.01 0.10 0.07 ind:pas:3s; +hachage hachage nom m s 0.01 0.00 0.01 0.00 +hachaient hacher ver 2.18 6.01 0.00 0.14 ind:imp:3p; +hachait hacher ver 2.18 6.01 0.02 0.74 ind:imp:3s; +hachant hacher ver 2.18 6.01 0.02 0.47 par:pre; +hachard hachard nom m s 0.00 0.07 0.00 0.07 +hache_paille hache_paille nom m p 0.00 0.14 0.00 0.14 +hache hache nom f s 10.23 13.65 8.73 11.76 +hachent hacher ver 2.18 6.01 0.03 0.34 ind:pre:3p; +hacher hacher ver 2.18 6.01 0.35 0.74 inf; +hacherai hacher ver 2.18 6.01 0.03 0.00 ind:fut:1s; +hacherait hacher ver 2.18 6.01 0.02 0.00 cnd:pre:3s; +haches hache nom f p 10.23 13.65 1.50 1.89 +hachette hachette nom f s 0.22 0.74 0.20 0.74 +hachettes hachette nom f p 0.22 0.74 0.02 0.00 +hacheur hacheur nom m s 0.11 0.27 0.01 0.14 +hacheurs hacheur nom m p 0.11 0.27 0.10 0.14 +hachez hacher ver 2.18 6.01 0.67 0.14 imp:pre:2p;ind:pre:2p; +hachis hachis nom m p 1.07 1.22 1.07 1.22 +hachisch hachisch nom m s 0.01 0.07 0.01 0.07 +hachoir hachoir nom m s 0.70 0.81 0.68 0.61 +hachoirs hachoir nom m p 0.70 0.81 0.02 0.20 +hachèrent hacher ver 2.18 6.01 0.00 0.07 ind:pas:3p; +haché haché adj m s 1.50 5.07 0.73 1.01 +hachée haché adj f s 1.50 5.07 0.66 2.70 +hachées hacher ver f p 2.18 6.01 0.01 0.41 par:pas; +hachuraient hachurer ver 0.03 1.08 0.00 0.14 ind:imp:3p; +hachurait hachurer ver 0.03 1.08 0.00 0.07 ind:imp:3s; +hachurant hachurer ver 0.03 1.08 0.00 0.07 par:pre; +hachure hachure nom f s 0.00 1.55 0.00 0.20 +hachures hachure nom f p 0.00 1.55 0.00 1.35 +hachuré hachurer ver m s 0.03 1.08 0.03 0.34 par:pas; +hachurée hachurer ver f s 0.03 1.08 0.00 0.14 par:pas; +hachurées hachurer ver f p 0.03 1.08 0.00 0.14 par:pas; +hachurés hachurer ver m p 0.03 1.08 0.00 0.14 par:pas; +hachés haché adj m p 1.50 5.07 0.11 0.81 +hacienda hacienda nom f s 0.93 0.20 0.90 0.20 +haciendas hacienda nom f p 0.93 0.20 0.03 0.00 +hack hack nom m s 0.23 0.00 0.23 0.00 +hacker hacker nom m s 0.99 0.00 0.66 0.00 +hackers hacker nom m p 0.99 0.00 0.33 0.00 +haddock haddock nom m s 0.23 0.54 0.23 0.54 +hadith hadith nom m s 0.01 0.00 0.01 0.00 +hadj hadj nom m s 1.88 0.00 1.88 0.00 +hadji hadji nom m p 0.47 0.27 0.47 0.27 +hagard hagard adj m s 0.46 13.18 0.24 6.96 +hagarde hagard adj f s 0.46 13.18 0.03 3.51 +hagardes hagard adj f p 0.46 13.18 0.00 0.41 +hagards hagard adj m p 0.46 13.18 0.19 2.30 +haggadah haggadah nom f s 0.02 0.00 0.02 0.00 +haggis haggis nom m p 0.27 0.00 0.27 0.00 +hagiographe hagiographe nom m s 0.00 0.47 0.00 0.47 +hagiographie hagiographie nom f s 0.01 0.20 0.01 0.20 +haha haha ono 0.59 1.22 0.59 1.22 +hai hai ono 1.28 0.07 1.28 0.07 +haie haie nom f s 3.36 26.08 2.60 14.80 +haies haie nom f p 3.36 26.08 0.76 11.28 +haillon haillon nom m s 1.78 3.78 0.01 0.47 +haillonneuse haillonneux adj f s 0.00 0.20 0.00 0.14 +haillonneux haillonneux adj m p 0.00 0.20 0.00 0.07 +haillons haillon nom m p 1.78 3.78 1.77 3.31 +haine haine nom f s 33.10 52.50 31.49 49.39 +haines haine nom f p 33.10 52.50 1.62 3.11 +haineuse haineux adj f s 0.96 6.42 0.07 1.76 +haineusement haineusement adv 0.01 0.68 0.01 0.68 +haineuses haineux adj f p 0.96 6.42 0.07 0.34 +haineux haineux adj m 0.96 6.42 0.82 4.32 +haire haire nom f s 0.00 0.20 0.00 0.14 +haires haire nom f p 0.00 0.20 0.00 0.07 +hais haïr ver 55.42 35.68 31.21 8.85 imp:pre:2s;ind:pre:1s;ind:pre:2s; +hait haïr ver 55.42 35.68 7.53 3.58 ind:pre:3s; +haka haka nom m s 0.01 0.00 0.01 0.00 +hakka hakka nom m s 0.01 0.00 0.01 0.00 +hala haler ver 0.16 2.30 0.00 0.07 ind:pas:3s; +halage halage nom m s 0.16 1.55 0.16 1.49 +halages halage nom m p 0.16 1.55 0.00 0.07 +halaient haler ver 0.16 2.30 0.00 0.34 ind:imp:3p; +halait haler ver 0.16 2.30 0.00 0.20 ind:imp:3s; +halal halal adj f s 0.24 0.00 0.24 0.00 +halant haler ver 0.16 2.30 0.00 0.34 par:pre; +halcyon halcyon nom m s 0.02 0.00 0.02 0.00 +hale hale nom m s 0.00 0.07 0.00 0.07 +haleine haleine nom f s 8.00 23.04 7.55 21.82 +haleines haleine nom f p 8.00 23.04 0.45 1.22 +halent haler ver 0.16 2.30 0.10 0.20 ind:pre:3p; +haler haler ver 0.16 2.30 0.02 0.54 inf; +haleta haleter ver 0.79 11.76 0.02 0.95 ind:pas:3s; +haletaient haleter ver 0.79 11.76 0.00 0.27 ind:imp:3p; +haletais haleter ver 0.79 11.76 0.03 0.14 ind:imp:1s;ind:imp:2s; +haletait haleter ver 0.79 11.76 0.00 3.58 ind:imp:3s; +haletant haleter ver 0.79 11.76 0.06 4.26 par:pre; +haletante haletant adj f s 0.47 9.80 0.40 4.66 +haletantes haletant adj f p 0.47 9.80 0.00 0.41 +haletants haletant adj m p 0.47 9.80 0.01 1.76 +haleter haleter ver 0.79 11.76 0.20 1.28 inf; +haleté haleter ver m s 0.79 11.76 0.02 0.20 par:pas; +haleur haleur nom m s 0.11 0.34 0.01 0.07 +haleurs haleur nom m p 0.11 0.34 0.10 0.27 +halez haler ver 0.16 2.30 0.02 0.07 imp:pre:2p; +half_track half_track nom m s 0.05 0.14 0.04 0.14 +half_track half_track nom m p 0.05 0.14 0.01 0.00 +halieutiques halieutique adj f p 0.00 0.07 0.00 0.07 +hall hall nom m s 9.90 26.76 9.73 25.81 +hallali hallali nom m s 0.14 1.35 0.14 1.35 +halle halle nom f s 0.83 9.32 0.26 1.01 +hallebarde hallebarde nom f s 0.06 1.28 0.05 0.27 +hallebardes hallebarde nom f p 0.06 1.28 0.01 1.01 +hallebardier hallebardier nom m s 0.03 0.68 0.02 0.20 +hallebardiers hallebardier nom m p 0.03 0.68 0.01 0.47 +halles halle nom f p 0.83 9.32 0.57 8.31 +hallier hallier nom m s 0.02 1.76 0.01 0.81 +halliers hallier nom m p 0.02 1.76 0.01 0.95 +halloween halloween nom f s 0.04 0.00 0.04 0.00 +halls hall nom m p 9.90 26.76 0.17 0.95 +hallucinais halluciner ver 3.44 0.95 0.08 0.07 ind:imp:1s;ind:imp:2s; +hallucinant hallucinant adj m s 1.56 2.91 1.40 0.81 +hallucinante hallucinant adj f s 1.56 2.91 0.10 1.62 +hallucinantes hallucinant adj f p 1.56 2.91 0.02 0.14 +hallucinants hallucinant adj m p 1.56 2.91 0.04 0.34 +hallucination hallucination nom f s 7.88 5.61 3.46 3.51 +hallucinations hallucination nom f p 7.88 5.61 4.43 2.09 +hallucinatoire hallucinatoire adj s 0.39 0.20 0.23 0.14 +hallucinatoires hallucinatoire adj p 0.39 0.20 0.16 0.07 +hallucine halluciner ver 3.44 0.95 1.87 0.20 ind:pre:1s;ind:pre:3s; +halluciner halluciner ver 3.44 0.95 0.95 0.14 inf; +hallucinez halluciner ver 3.44 0.95 0.05 0.00 imp:pre:2p;ind:pre:2p; +hallucinogène hallucinogène adj s 0.61 0.14 0.18 0.00 +hallucinogènes hallucinogène adj p 0.61 0.14 0.44 0.14 +hallucinons halluciner ver 3.44 0.95 0.01 0.00 ind:pre:1p; +halluciné halluciner ver m s 3.44 0.95 0.41 0.34 par:pas; +hallucinée halluciné adj f s 0.25 1.35 0.11 0.47 +hallucinées halluciné adj f p 0.25 1.35 0.01 0.07 +hallucinés halluciné nom m p 0.03 0.95 0.01 0.27 +halo halo nom m s 1.36 8.38 1.30 7.50 +halogène halogène nom m s 0.12 0.00 0.04 0.00 +halogènes halogène nom m p 0.12 0.00 0.08 0.00 +halogénure halogénure nom m s 0.01 0.00 0.01 0.00 +halon halon nom m s 0.08 0.07 0.08 0.00 +halons halon nom m p 0.08 0.07 0.00 0.07 +halopéridol halopéridol nom m s 0.12 0.00 0.12 0.00 +halos halo nom m p 1.36 8.38 0.05 0.88 +halothane halothane nom m s 0.50 0.00 0.50 0.00 +halte_garderie halte_garderie nom f s 0.02 0.00 0.02 0.00 +halte halte ono 14.27 3.85 14.27 3.85 +halter halter ver 0.07 0.20 0.03 0.00 inf; +haltes halte nom f p 3.77 12.77 0.03 1.89 +halèrent haler ver 0.16 2.30 0.02 0.07 ind:pas:3p; +halète haleter ver 0.79 11.76 0.34 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +halètement halètement nom m s 0.45 3.72 0.00 2.57 +halètements halètement nom m p 0.45 3.72 0.45 1.15 +halètent haleter ver 0.79 11.76 0.10 0.20 ind:pre:3p; +halètes haleter ver 0.79 11.76 0.01 0.00 ind:pre:2s; +haltère haltère nom m s 0.95 1.35 0.06 0.07 +haltères haltère nom m p 0.95 1.35 0.89 1.28 +haltérophile haltérophile nom s 0.11 0.27 0.06 0.20 +haltérophiles haltérophile nom p 0.11 0.27 0.04 0.07 +haltérophilie haltérophilie nom f s 0.18 0.14 0.18 0.14 +halé haler ver m s 0.16 2.30 0.00 0.20 par:pas; +halée haler ver f s 0.16 2.30 0.00 0.14 par:pas; +halés haler ver m p 0.16 2.30 0.00 0.14 par:pas; +halva halva nom m s 0.01 0.07 0.01 0.07 +hamac hamac nom m s 1.84 3.78 1.63 3.11 +hamacs hamac nom m p 1.84 3.78 0.22 0.68 +hamada hamada nom f s 0.17 0.07 0.17 0.07 +hamadryade hamadryade nom f s 0.01 0.00 0.01 0.00 +hamadryas hamadryas nom m 0.01 0.00 0.01 0.00 +hamamélis hamamélis nom m 0.01 0.00 0.01 0.00 +hambourgeois hambourgeois adj m s 0.02 0.20 0.02 0.20 +hambourgeoises hambourgeois nom f p 0.00 0.20 0.00 0.07 +hamburger hamburger nom m s 7.47 0.68 4.10 0.41 +hamburgers hamburger nom m p 7.47 0.68 3.38 0.27 +hameau hameau nom m s 0.81 10.61 0.79 7.91 +hameaux hameau nom m p 0.81 10.61 0.03 2.70 +hameçon hameçon nom m s 3.08 3.24 2.61 2.50 +hameçonne hameçonner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +hameçons hameçon nom m p 3.08 3.24 0.47 0.74 +hammam hammam nom m s 0.73 1.55 0.58 1.49 +hammams hammam nom m p 0.73 1.55 0.14 0.07 +hammerless hammerless nom m p 0.27 0.07 0.27 0.07 +hampe hampe nom f s 0.52 3.11 0.52 1.82 +hampes hampe nom f p 0.52 3.11 0.00 1.28 +hamster hamster nom m s 2.51 1.22 2.18 0.68 +hamsters hamster nom m p 2.51 1.22 0.33 0.54 +han han adj m s 1.96 1.49 1.96 1.49 +hanap hanap nom m s 0.01 0.34 0.01 0.20 +hanaps hanap nom m p 0.01 0.34 0.00 0.14 +hanche hanche nom f s 8.90 32.36 3.42 9.59 +hanches hanche nom f p 8.90 32.36 5.48 22.77 +hanchée hancher ver f s 0.00 0.07 0.00 0.07 par:pas; +hand_ball hand_ball nom m s 0.08 0.00 0.08 0.00 +handball handball nom m s 0.52 0.00 0.52 0.00 +handicap handicap nom m s 3.70 2.70 3.40 2.30 +handicapait handicaper ver 2.32 0.74 0.02 0.00 ind:imp:3s; +handicapant handicapant adj m s 0.15 0.00 0.15 0.00 +handicape handicaper ver 2.32 0.74 0.20 0.07 imp:pre:2s;ind:pre:3s; +handicaper handicaper ver 2.32 0.74 0.05 0.07 inf;; +handicapera handicaper ver 2.32 0.74 0.02 0.00 ind:fut:3s; +handicapeur handicapeur nom m s 0.06 0.00 0.06 0.00 +handicaps handicap nom m p 3.70 2.70 0.30 0.41 +handicapé handicaper ver m s 2.32 0.74 1.12 0.41 par:pas; +handicapée handicaper ver f s 2.32 0.74 0.66 0.14 par:pas; +handicapées handicaper ver f p 2.32 0.74 0.03 0.00 par:pas; +handicapés handicapé nom m p 4.83 1.15 3.46 0.41 +hangar hangar nom m s 5.65 18.85 5.44 12.97 +hangars hangar nom m p 5.65 18.85 0.20 5.88 +hanneton hanneton nom m s 0.50 5.34 0.05 2.70 +hannetons hanneton nom m p 0.50 5.34 0.45 2.64 +hanoukka hanoukka nom f s 0.31 0.00 0.31 0.00 +hanovrien hanovrien adj m s 0.00 0.07 0.00 0.07 +hanovriens hanovrien nom m p 0.14 0.00 0.14 0.00 +hanséatique hanséatique adj f s 0.10 0.00 0.10 0.00 +hanta hanter ver 11.37 15.20 0.06 0.27 ind:pas:3s; +hantaient hanter ver 11.37 15.20 0.02 0.74 ind:imp:3p; +hantais hanter ver 11.37 15.20 0.18 0.00 ind:imp:1s;ind:imp:2s; +hantait hanter ver 11.37 15.20 0.42 2.36 ind:imp:3s; +hantant hanter ver 11.37 15.20 0.01 0.14 par:pre; +hantavirus hantavirus nom m 0.03 0.00 0.03 0.00 +hante hanter ver 11.37 15.20 2.70 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hantent hanter ver 11.37 15.20 1.28 0.95 ind:pre:3p; +hanter hanter ver 11.37 15.20 1.92 2.23 inf; +hantera hanter ver 11.37 15.20 0.19 0.07 ind:fut:3s; +hanterai hanter ver 11.37 15.20 0.04 0.00 ind:fut:1s; +hanterait hanter ver 11.37 15.20 0.08 0.07 cnd:pre:3s; +hanteront hanter ver 11.37 15.20 0.15 0.00 ind:fut:3p; +hantes hanter ver 11.37 15.20 0.39 0.00 ind:pre:2s; +hanteur hanteur adj m s 0.00 0.07 0.00 0.07 +hantez hanter ver 11.37 15.20 0.33 0.07 imp:pre:2p;ind:pre:2p; +hantise hantise nom f s 0.19 5.07 0.07 4.46 +hantises hantise nom f p 0.19 5.07 0.12 0.61 +hanté hanter ver m s 11.37 15.20 1.91 3.04 par:pas; +hantée hanter ver f s 11.37 15.20 1.15 0.81 par:pas; +hantées hanté adj f p 1.99 1.55 0.17 0.27 +hantés hanter ver m p 11.37 15.20 0.47 1.08 par:pas; +happa happer ver 0.99 8.24 0.00 0.34 ind:pas:3s; +happai happer ver 0.99 8.24 0.00 0.07 ind:pas:1s; +happaient happer ver 0.99 8.24 0.00 0.27 ind:imp:3p; +happait happer ver 0.99 8.24 0.00 0.54 ind:imp:3s; +happant happer ver 0.99 8.24 0.00 0.34 par:pre; +happe happer ver 0.99 8.24 0.16 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +happement happement nom m s 0.00 0.20 0.00 0.20 +happening happening nom m s 0.41 0.54 0.39 0.41 +happenings happening nom m p 0.41 0.54 0.02 0.14 +happent happer ver 0.99 8.24 0.11 0.34 ind:pre:3p; +happer happer ver 0.99 8.24 0.24 0.88 inf; +happerait happer ver 0.99 8.24 0.00 0.07 cnd:pre:3s; +happeurs happeur nom m p 0.00 0.07 0.00 0.07 +happé happer ver m s 0.99 8.24 0.11 2.23 par:pas; +happée happer ver f s 0.99 8.24 0.32 1.15 par:pas; +happées happer ver f p 0.99 8.24 0.01 0.41 par:pas; +happés happer ver m p 0.99 8.24 0.04 0.61 par:pas; +happy_end happy_end nom m s 0.51 0.27 0.45 0.27 +happy_end happy_end nom m p 0.51 0.27 0.05 0.00 +happy_few happy_few nom m p 0.00 0.14 0.00 0.14 +haptoglobine haptoglobine nom f s 0.01 0.00 0.01 0.00 +haque haque nom f s 0.41 1.62 0.41 1.62 +haquenée haquenée nom f s 0.00 0.07 0.00 0.07 +haquet haquet nom m s 0.00 0.20 0.00 0.14 +haquets haquet nom m p 0.00 0.20 0.00 0.07 +hara_kiri hara_kiri nom m s 0.29 0.41 0.29 0.41 +harangua haranguer ver 0.09 1.89 0.00 0.27 ind:pas:3s; +haranguaient haranguer ver 0.09 1.89 0.00 0.14 ind:imp:3p; +haranguait haranguer ver 0.09 1.89 0.00 0.34 ind:imp:3s; +haranguant haranguer ver 0.09 1.89 0.00 0.41 par:pre; +harangue harangue nom f s 0.01 1.22 0.01 0.81 +haranguer haranguer ver 0.09 1.89 0.06 0.20 inf; +haranguerais haranguer ver 0.09 1.89 0.00 0.07 cnd:pre:1s; +harangues harangue nom f p 0.01 1.22 0.00 0.41 +haranguez haranguer ver 0.09 1.89 0.01 0.00 ind:pre:2p; +harangué haranguer ver m s 0.09 1.89 0.00 0.20 par:pas; +haranguée haranguer ver f s 0.09 1.89 0.01 0.07 par:pas; +harangués haranguer ver m p 0.09 1.89 0.00 0.14 par:pas; +harari harari nom m p 0.02 0.00 0.02 0.00 +haras haras nom m p 0.19 1.01 0.19 1.01 +harassaient harasser ver 0.17 1.28 0.01 0.14 ind:imp:3p; +harassant harassant adj m s 0.19 1.42 0.03 0.20 +harassante harassant adj f s 0.19 1.42 0.15 0.47 +harassantes harassant adj f p 0.19 1.42 0.00 0.47 +harassants harassant adj m p 0.19 1.42 0.00 0.27 +harasse harasser ver 0.17 1.28 0.00 0.07 ind:pre:3s; +harassement harassement nom m s 0.27 0.20 0.27 0.20 +harassent harasser ver 0.17 1.28 0.11 0.07 ind:pre:3p; +harasser harasser ver 0.17 1.28 0.00 0.07 inf; +harassé harassé adj m s 0.12 2.50 0.01 1.15 +harassée harassé adj f s 0.12 2.50 0.01 0.41 +harassées harassé adj f p 0.12 2.50 0.00 0.14 +harassés harassé adj m p 0.12 2.50 0.10 0.81 +harcela harceler ver 11.12 8.24 0.00 0.14 ind:pas:3s; +harcelai harceler ver 11.12 8.24 0.00 0.07 ind:pas:1s; +harcelaient harceler ver 11.12 8.24 0.30 0.74 ind:imp:3p; +harcelais harceler ver 11.12 8.24 0.11 0.20 ind:imp:1s;ind:imp:2s; +harcelait harceler ver 11.12 8.24 0.62 0.88 ind:imp:3s; +harcelant harceler ver 11.12 8.24 0.13 0.61 par:pre; +harcelante harcelant adj f s 0.04 0.61 0.00 0.27 +harcelantes harcelant adj f p 0.04 0.61 0.01 0.14 +harcelants harcelant adj m p 0.04 0.61 0.00 0.07 +harceler harceler ver 11.12 8.24 3.00 1.82 inf; +harceleur harceleur nom m s 0.17 0.07 0.16 0.00 +harceleuse harceleur nom f s 0.17 0.07 0.01 0.07 +harcelez harceler ver 11.12 8.24 0.92 0.00 imp:pre:2p;ind:pre:2p; +harceliez harceler ver 11.12 8.24 0.06 0.00 ind:imp:2p; +harcelèrent harceler ver 11.12 8.24 0.00 0.07 ind:pas:3p; +harcelé harceler ver m s 11.12 8.24 1.16 1.62 par:pas; +harcelée harceler ver f s 11.12 8.24 0.67 0.34 par:pas; +harcelées harceler ver f p 11.12 8.24 0.04 0.07 par:pas; +harcelés harceler ver m p 11.12 8.24 0.37 0.61 par:pas; +harcèle harceler ver 11.12 8.24 2.88 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +harcèlement harcèlement nom m s 3.69 1.49 3.65 1.35 +harcèlements harcèlement nom m p 3.69 1.49 0.05 0.14 +harcèlent harceler ver 11.12 8.24 0.41 0.27 ind:pre:3p; +harcèlera harceler ver 11.12 8.24 0.17 0.00 ind:fut:3s; +harcèlerai harceler ver 11.12 8.24 0.11 0.00 ind:fut:1s; +harcèleraient harceler ver 11.12 8.24 0.00 0.14 cnd:pre:3p; +harcèlerez harceler ver 11.12 8.24 0.01 0.00 ind:fut:2p; +harcèlerons harceler ver 11.12 8.24 0.14 0.00 ind:fut:1p; +harcèleront harceler ver 11.12 8.24 0.02 0.00 ind:fut:3p; +hard_top hard_top nom m s 0.01 0.00 0.01 0.00 +hard_edge hard_edge nom m s 0.01 0.00 0.01 0.00 +hard hard adj 2.72 1.08 2.72 1.08 +harde harde nom f s 0.15 8.99 0.00 3.85 +hardent harder ver 0.18 0.07 0.01 0.00 ind:pre:3p; +harder harder ver 0.18 0.07 0.17 0.07 inf; +hardes harde nom f p 0.15 8.99 0.15 5.14 +hardi hardi ono 0.01 0.61 0.01 0.61 +hardie hardi adj f s 2.22 10.68 0.63 1.35 +hardies hardi adj f p 2.22 10.68 0.11 0.88 +hardiesse hardiesse nom f s 0.46 2.64 0.46 2.03 +hardiesses hardiesse nom f p 0.46 2.64 0.00 0.61 +hardiment hardiment adv 1.20 1.62 1.20 1.62 +hardis hardi adj m p 2.22 10.68 0.19 1.96 +hare hare ono 0.49 0.07 0.49 0.07 +harem harem nom m s 1.78 15.95 1.60 15.74 +harems harem nom m p 1.78 15.95 0.17 0.20 +hareng hareng nom m s 2.78 6.08 1.90 2.91 +harengs hareng nom m p 2.78 6.08 0.89 3.18 +harengère harengère nom f s 0.10 0.14 0.10 0.14 +harenguet harenguet nom m s 0.01 0.00 0.01 0.00 +harenguier harenguier nom m s 0.10 0.00 0.10 0.00 +haret haret adj m s 0.00 0.07 0.00 0.07 +harfang harfang nom m s 0.00 0.07 0.00 0.07 +hargne hargne nom f s 0.42 4.53 0.42 4.26 +hargnes hargne nom f p 0.42 4.53 0.00 0.27 +hargneuse hargneux adj f s 1.13 9.46 0.14 3.11 +hargneusement hargneusement adv 0.00 1.42 0.00 1.42 +hargneuses hargneux adj f p 1.13 9.46 0.01 0.81 +hargneux hargneux adj m 1.13 9.46 0.98 5.54 +haricot haricot nom m s 8.85 13.45 1.40 1.22 +haricots haricot nom m p 8.85 13.45 7.45 12.23 +haridelle haridelle nom f s 0.01 0.61 0.01 0.41 +haridelles haridelle nom f p 0.01 0.61 0.00 0.20 +harissa harissa nom f s 0.00 0.20 0.00 0.20 +harki harki nom m s 0.00 0.41 0.00 0.14 +harkis harki nom m p 0.00 0.41 0.00 0.27 +harmattan harmattan nom m s 0.02 0.07 0.02 0.07 +harmonica harmonica nom m s 1.41 1.76 1.38 1.69 +harmonicas harmonica nom m p 1.41 1.76 0.03 0.07 +harmoniciste harmoniciste nom s 0.02 0.00 0.02 0.00 +harmonie harmonie nom f s 6.80 16.22 6.36 15.61 +harmonies harmonie nom f p 6.80 16.22 0.44 0.61 +harmonieuse harmonieux adj f s 1.16 7.09 0.27 2.43 +harmonieusement harmonieusement adv 0.06 1.28 0.06 1.28 +harmonieuses harmonieux adj f p 1.16 7.09 0.05 0.61 +harmonieux harmonieux adj m 1.16 7.09 0.84 4.05 +harmonique harmonique adj s 0.43 0.61 0.36 0.47 +harmoniquement harmoniquement adv 0.01 0.00 0.01 0.00 +harmoniques harmonique nom m p 0.22 0.41 0.18 0.41 +harmonisaient harmoniser ver 0.35 1.42 0.00 0.07 ind:imp:3p; +harmonisait harmoniser ver 0.35 1.42 0.05 0.54 ind:imp:3s; +harmonisant harmoniser ver 0.35 1.42 0.01 0.14 par:pre; +harmonisateurs harmonisateur adj m p 0.00 0.20 0.00 0.07 +harmonisation harmonisation nom f s 0.05 0.07 0.05 0.07 +harmonisatrices harmonisateur adj f p 0.00 0.20 0.00 0.14 +harmonise harmoniser ver 0.35 1.42 0.04 0.20 ind:pre:3s; +harmonisent harmoniser ver 0.35 1.42 0.01 0.07 ind:pre:3p; +harmoniser harmoniser ver 0.35 1.42 0.22 0.27 inf; +harmonisera harmoniser ver 0.35 1.42 0.01 0.00 ind:fut:3s; +harmonisez harmoniser ver 0.35 1.42 0.01 0.00 ind:pre:2p; +harmonisèrent harmoniser ver 0.35 1.42 0.00 0.07 ind:pas:3p; +harmonisé harmoniser ver m s 0.35 1.42 0.01 0.00 par:pas; +harmonisés harmoniser ver m p 0.35 1.42 0.00 0.07 par:pas; +harmonium harmonium nom m s 0.05 3.51 0.05 3.45 +harmoniums harmonium nom m p 0.05 3.51 0.00 0.07 +harnacha harnacher ver 0.19 1.62 0.00 0.07 ind:pas:3s; +harnachaient harnacher ver 0.19 1.62 0.00 0.07 ind:imp:3p; +harnachais harnacher ver 0.19 1.62 0.00 0.07 ind:imp:1s; +harnachait harnacher ver 0.19 1.62 0.00 0.27 ind:imp:3s; +harnachement harnachement nom m s 0.06 1.55 0.06 1.28 +harnachements harnachement nom m p 0.06 1.55 0.00 0.27 +harnacher harnacher ver 0.19 1.62 0.04 0.07 inf; +harnachiez harnacher ver 0.19 1.62 0.00 0.07 ind:imp:2p; +harnachèrent harnacher ver 0.19 1.62 0.00 0.07 ind:pas:3p; +harnaché harnacher ver m s 0.19 1.62 0.14 0.47 par:pas; +harnachée harnacher ver f s 0.19 1.62 0.00 0.07 par:pas; +harnachées harnacher ver f p 0.19 1.62 0.00 0.14 par:pas; +harnachés harnaché adj m p 0.02 0.88 0.02 0.41 +harnais harnais nom m 1.29 3.92 1.29 3.92 +harnois harnois nom m p 0.01 0.20 0.01 0.20 +haro haro nom m s 0.03 1.35 0.03 1.35 +harpagon harpagon nom m s 0.01 0.00 0.01 0.00 +harpe harpe nom f s 1.14 5.34 0.94 4.86 +harper harper ver 7.25 0.14 7.25 0.00 inf; +harpes harpe nom f p 1.14 5.34 0.20 0.47 +harpie harpie nom f s 0.73 1.42 0.64 1.22 +harpies harpie nom f p 0.73 1.42 0.09 0.20 +harpin harpin nom m s 0.00 0.07 0.00 0.07 +harpions harper ver 7.25 0.14 0.00 0.14 ind:imp:1p; +harpiste harpiste nom s 0.08 0.27 0.08 0.27 +harpon harpon nom m s 1.18 2.03 0.75 1.76 +harponna harponner ver 0.34 1.22 0.00 0.07 ind:pas:3s; +harponnage harponnage nom m s 0.17 0.07 0.17 0.07 +harponne harponner ver 0.34 1.22 0.02 0.20 ind:pre:1s;ind:pre:3s; +harponnent harponner ver 0.34 1.22 0.00 0.07 ind:pre:3p; +harponner harponner ver 0.34 1.22 0.23 0.47 inf; +harponnera harponner ver 0.34 1.22 0.01 0.00 ind:fut:3s; +harponneur harponneur nom m s 0.04 0.20 0.03 0.14 +harponneurs harponneur nom m p 0.04 0.20 0.01 0.07 +harponné harponner ver m s 0.34 1.22 0.04 0.20 par:pas; +harponnée harponner ver f s 0.34 1.22 0.02 0.20 par:pas; +harponnés harponner ver m p 0.34 1.22 0.01 0.00 par:pas; +harpons harpon nom m p 1.18 2.03 0.43 0.27 +harpyes harpye nom f p 0.00 0.07 0.00 0.07 +hart hart nom f s 0.07 0.41 0.07 0.27 +harts hart nom f p 0.07 0.41 0.00 0.14 +haruspices haruspice nom m p 0.01 0.14 0.01 0.14 +has_been has_been nom m 0.18 0.20 0.18 0.20 +hasard hasard nom m s 48.07 124.19 46.98 118.99 +hasarda hasarder ver 1.10 6.35 0.01 1.35 ind:pas:3s; +hasardai hasarder ver 1.10 6.35 0.00 0.54 ind:pas:1s; +hasardaient hasarder ver 1.10 6.35 0.00 0.20 ind:imp:3p; +hasardais hasarder ver 1.10 6.35 0.00 0.14 ind:imp:1s; +hasardait hasarder ver 1.10 6.35 0.00 0.68 ind:imp:3s; +hasardant hasarder ver 1.10 6.35 0.00 0.41 par:pre; +hasarde hasarder ver 1.10 6.35 0.29 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hasardent hasarder ver 1.10 6.35 0.01 0.20 ind:pre:3p; +hasarder hasarder ver 1.10 6.35 0.74 0.68 inf; +hasardera hasarder ver 1.10 6.35 0.00 0.07 ind:fut:3s; +hasarderais hasarder ver 1.10 6.35 0.03 0.00 cnd:pre:1s; +hasardeuse hasardeux adj f s 0.66 2.77 0.35 1.08 +hasardeusement hasardeusement adv 0.00 0.07 0.00 0.07 +hasardeuses hasardeux adj f p 0.66 2.77 0.03 0.47 +hasardeux hasardeux adj m 0.66 2.77 0.28 1.22 +hasards hasard nom m p 48.07 124.19 1.09 5.20 +hasardé hasarder ver m s 1.10 6.35 0.00 0.27 par:pas; +hasardée hasardé adj f s 0.10 0.07 0.10 0.07 +hasch hasch nom m s 2.16 0.47 2.16 0.47 +haschich haschich nom m s 0.39 0.47 0.39 0.47 +haschisch haschisch nom m s 0.11 0.41 0.11 0.41 +hase hase nom f s 0.02 0.27 0.02 0.14 +haseki haseki nom f s 0.00 0.20 0.00 0.07 +hasekis haseki nom f p 0.00 0.20 0.00 0.14 +hases hase nom f p 0.02 0.27 0.00 0.14 +hassidim hassidim nom m p 0.22 0.00 0.22 0.00 +hassidique hassidique adj s 0.09 0.00 0.09 0.00 +hassidisme hassidisme nom m s 0.00 0.07 0.00 0.07 +hauban hauban nom m s 0.37 1.01 0.02 0.20 +haubans hauban nom m p 0.37 1.01 0.35 0.81 +haubanée haubaner ver f s 0.00 0.27 0.00 0.07 par:pas; +haubanés haubaner ver m p 0.00 0.27 0.00 0.20 par:pas; +haubert haubert nom m s 0.01 0.54 0.01 0.54 +haussa hausser ver 1.76 71.96 0.00 34.46 ind:pas:3s; +haussai hausser ver 1.76 71.96 0.27 2.09 ind:pas:1s; +haussaient hausser ver 1.76 71.96 0.10 1.01 ind:imp:3p; +haussais hausser ver 1.76 71.96 0.00 0.41 ind:imp:1s; +haussait hausser ver 1.76 71.96 0.01 4.86 ind:imp:3s; +haussant hausser ver 1.76 71.96 0.03 8.38 par:pre; +hausse hausse nom f s 3.38 2.36 3.31 2.09 +haussement haussement nom m s 0.06 5.68 0.06 5.07 +haussements haussement nom m p 0.06 5.68 0.00 0.61 +haussent hausser ver 1.76 71.96 0.10 0.61 ind:pre:3p; +hausser hausser ver 1.76 71.96 0.43 4.86 inf; +hausserait hausser ver 1.76 71.96 0.01 0.14 cnd:pre:3s; +hausses hausser ver 1.76 71.96 0.23 0.20 ind:pre:2s; +haussez hausser ver 1.76 71.96 0.20 0.07 imp:pre:2p;ind:pre:2p; +haussier haussier adj m s 0.02 0.00 0.01 0.00 +haussière haussière nom f s 0.03 0.14 0.03 0.07 +haussières haussière nom f p 0.03 0.14 0.00 0.07 +haussons hausser ver 1.76 71.96 0.00 0.14 imp:pre:1p;ind:pre:1p; +haussât hausser ver 1.76 71.96 0.00 0.14 sub:imp:3s; +haussèrent hausser ver 1.76 71.96 0.00 0.27 ind:pas:3p; +haussé hausser ver m s 1.76 71.96 0.10 5.00 par:pas; +haussée hausser ver f s 1.76 71.96 0.01 0.27 par:pas; +haussées hausser ver f p 1.76 71.96 0.00 0.07 par:pas; +haussés hausser ver m p 1.76 71.96 0.00 0.27 par:pas; +haut_commandement haut_commandement nom m s 0.00 1.22 0.00 1.22 +haut_commissaire haut_commissaire nom m s 0.03 7.97 0.03 7.57 +haut_commissariat haut_commissariat nom m s 0.02 0.81 0.02 0.81 +haut_de_chausse haut_de_chausse nom f s 0.15 0.07 0.14 0.07 +haut_de_chausses haut_de_chausses nom m 0.00 0.20 0.00 0.20 +haut_de_forme haut_de_forme nom m s 0.45 1.62 0.30 1.42 +haut_fond haut_fond nom m s 0.08 1.08 0.02 0.61 +haut_le_coeur haut_le_coeur nom m 0.04 1.01 0.04 1.01 +haut_le_corps haut_le_corps nom m 0.00 1.76 0.00 1.76 +haut_parleur haut_parleur nom m s 3.65 7.36 2.61 3.99 +haut_parleur haut_parleur nom m p 3.65 7.36 1.04 3.38 +haut_relief haut_relief nom m s 0.00 0.20 0.00 0.20 +haut haut nom m s 77.86 125.07 75.22 121.01 +hautain hautain adj m s 0.84 10.88 0.51 4.12 +hautaine hautain adj f s 0.84 10.88 0.27 5.07 +hautainement hautainement adv 0.00 0.07 0.00 0.07 +hautaines hautain adj f p 0.84 10.88 0.03 0.81 +hautains hautain adj m p 0.84 10.88 0.03 0.88 +hautbois hautbois nom m 0.38 1.62 0.38 1.62 +haute_fidélité haute_fidélité nom f s 0.03 0.07 0.03 0.07 +haute haut adj f s 68.05 196.76 32.44 88.11 +hautement hautement adv 4.83 4.73 4.83 4.73 +hautes haut adj f p 68.05 196.76 6.72 37.43 +hautesse hautesse nom f s 0.00 1.42 0.00 1.42 +hauteur hauteur nom f s 19.99 77.70 18.19 66.15 +hauteurs hauteur nom f p 19.99 77.70 1.80 11.55 +hautin hautin nom m s 0.11 0.00 0.10 0.00 +hautins hautin nom m p 0.11 0.00 0.01 0.00 +haut_commissaire haut_commissaire nom m p 0.03 7.97 0.00 0.41 +haut_de_chausse haut_de_chausse nom m p 0.15 0.07 0.01 0.00 +haut_de_forme haut_de_forme nom m p 0.45 1.62 0.14 0.20 +haut_fond haut_fond nom m p 0.08 1.08 0.06 0.47 +haut_fourneau haut_fourneau nom m p 0.01 0.27 0.01 0.27 +hauts haut adj m p 68.05 196.76 5.48 29.26 +hauturière hauturier adj f s 0.00 0.14 0.00 0.14 +havanais havanais nom m 0.00 0.07 0.00 0.07 +havanaise havanaise nom f s 0.01 0.00 0.01 0.00 +havane havane nom m s 0.50 0.95 0.17 0.47 +havanes havane nom m p 0.50 0.95 0.33 0.47 +have haver ver 10.73 0.74 10.67 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +haveneau haveneau nom m s 0.00 0.14 0.00 0.07 +haveneaux haveneau nom m p 0.00 0.14 0.00 0.07 +haver haver ver 10.73 0.74 0.07 0.00 inf; +haves haver ver 10.73 0.74 0.00 0.07 ind:pre:2s; +havrais havrais adj m s 0.00 0.07 0.00 0.07 +havre havre nom m s 0.89 3.11 0.85 3.04 +havres havre nom m p 0.89 3.11 0.04 0.07 +havresac havresac nom m s 0.12 2.16 0.12 1.49 +havresacs havresac nom m p 0.12 2.16 0.00 0.68 +hawaïen hawaïen adj m s 0.00 0.20 0.00 0.07 +hawaïenne hawaïen adj f s 0.00 0.20 0.00 0.14 +hawaiienne hawaiien adj f s 0.00 0.14 0.00 0.07 +hawaiiennes hawaiien adj f p 0.00 0.14 0.00 0.07 +hayon hayon nom m s 0.06 0.14 0.06 0.07 +hayons hayon nom m p 0.06 0.14 0.00 0.07 +heaume heaume nom m s 0.55 1.01 0.51 0.88 +heaumes heaume nom m p 0.55 1.01 0.04 0.14 +hebdo hebdo nom m s 0.20 1.49 0.18 1.08 +hebdomadaire hebdomadaire adj s 1.64 4.19 1.30 3.51 +hebdomadairement hebdomadairement adv 0.00 0.20 0.00 0.20 +hebdomadaires hebdomadaire adj p 1.64 4.19 0.34 0.68 +hebdos hebdo nom m p 0.20 1.49 0.03 0.41 +hectare hectare nom m s 2.95 6.35 0.27 0.14 +hectares hectare nom m p 2.95 6.35 2.68 6.22 +hecto hecto nom m s 0.00 0.07 0.00 0.07 +hectolitres hectolitre nom m p 0.01 0.20 0.01 0.20 +hectomètres hectomètre nom m p 0.00 0.07 0.00 0.07 +hein hein ono 437.20 88.45 437.20 88.45 +hello hello ono 10.82 1.49 10.82 1.49 +hellène hellène adj s 0.02 0.34 0.02 0.20 +hellènes hellène nom p 0.01 0.68 0.01 0.47 +hellénique hellénique adj s 0.03 0.81 0.03 0.54 +helléniques hellénique adj f p 0.03 0.81 0.00 0.27 +helléniser helléniser ver 0.00 0.27 0.00 0.20 inf; +hellénisme hellénisme nom m s 0.00 0.34 0.00 0.34 +helléniste helléniste nom s 0.01 0.27 0.01 0.14 +hellénistes helléniste nom p 0.01 0.27 0.00 0.14 +hellénistique hellénistique adj s 0.02 0.14 0.02 0.07 +hellénistiques hellénistique adj m p 0.02 0.14 0.00 0.07 +hellénisé helléniser ver m s 0.00 0.27 0.00 0.07 par:pas; +helminthe helminthe nom m s 0.00 0.07 0.00 0.07 +helvelles helvelle nom f p 0.00 0.07 0.00 0.07 +helvète helvète adj m s 0.00 0.20 0.00 0.14 +helvètes helvète nom p 0.00 0.20 0.00 0.20 +helvétien helvétien adj m s 0.00 0.07 0.00 0.07 +helvétique helvétique adj f s 0.00 0.81 0.00 0.68 +helvétiques helvétique adj m p 0.00 0.81 0.00 0.14 +hem hem ono 0.10 0.20 0.10 0.20 +hemlock hemlock nom m s 0.23 0.00 0.23 0.00 +hennin hennin nom m s 0.00 0.34 0.00 0.34 +hennir hennir ver 0.07 1.55 0.03 0.00 inf; +hennirent hennir ver 0.07 1.55 0.00 0.14 ind:pas:3p; +hennissaient hennir ver 0.07 1.55 0.00 0.27 ind:imp:3p; +hennissait hennir ver 0.07 1.55 0.00 0.07 ind:imp:3s; +hennissant hennissant adj m s 0.01 0.34 0.01 0.27 +hennissantes hennissant adj f p 0.01 0.34 0.00 0.07 +hennissement hennissement nom m s 0.45 2.91 0.14 1.76 +hennissements hennissement nom m p 0.45 2.91 0.30 1.15 +hennissent hennir ver 0.07 1.55 0.02 0.07 ind:pre:3p; +hennit hennir ver 0.07 1.55 0.02 0.74 ind:pre:3s;ind:pas:3s; +henné henné nom m s 1.15 0.95 1.15 0.95 +henry henry nom m s 0.15 0.00 0.15 0.00 +hep hep ono 1.94 1.96 1.94 1.96 +heptagone heptagone nom m s 0.00 0.14 0.00 0.14 +heptaméron heptaméron nom m s 0.00 0.07 0.00 0.07 +heptane heptane nom m s 0.04 0.00 0.04 0.00 +herba herber ver 0.23 0.07 0.02 0.07 ind:pas:3s; +herbage herbage nom m s 0.10 1.35 0.04 0.74 +herbagers herbager nom m p 0.00 0.07 0.00 0.07 +herbages herbage nom m p 0.10 1.35 0.06 0.61 +herbe herbe nom f s 34.81 118.51 27.64 86.08 +herber herber ver 0.23 0.07 0.20 0.00 inf; +herbes herbe nom f p 34.81 118.51 7.17 32.43 +herbette herbette nom f s 0.00 0.14 0.00 0.07 +herbettes herbette nom f p 0.00 0.14 0.00 0.07 +herbeuse herbeux adj f s 0.02 1.01 0.00 0.20 +herbeuses herbeux adj f p 0.02 1.01 0.01 0.07 +herbeux herbeux adj m 0.02 1.01 0.01 0.74 +herbicide herbicide nom m s 0.32 0.00 0.32 0.00 +herbier herbier nom m s 0.16 1.28 0.16 0.81 +herbiers herbier nom m p 0.16 1.28 0.00 0.47 +herbivore herbivore nom m s 0.20 0.27 0.14 0.14 +herbivores herbivore nom m p 0.20 0.27 0.06 0.14 +herborisais herboriser ver 0.00 0.54 0.00 0.07 ind:imp:1s; +herborisait herboriser ver 0.00 0.54 0.00 0.14 ind:imp:3s; +herboriser herboriser ver 0.00 0.54 0.00 0.34 inf; +herboriste herboriste nom s 0.74 0.88 0.64 0.68 +herboristerie herboristerie nom f s 0.08 0.14 0.04 0.07 +herboristeries herboristerie nom f p 0.08 0.14 0.04 0.07 +herboristes herboriste nom p 0.74 0.88 0.10 0.20 +herbu herbu adj m s 0.01 1.82 0.00 0.81 +herbue herbu adj f s 0.01 1.82 0.01 0.54 +herbues herbu adj f p 0.01 1.82 0.00 0.41 +herbus herbu adj m p 0.01 1.82 0.00 0.07 +hercher hercher ver 0.03 0.00 0.03 0.00 inf; +hercule hercule nom m s 0.77 0.68 0.19 0.41 +hercules hercule nom m p 0.77 0.68 0.58 0.27 +herculéen herculéen adj m s 0.03 0.74 0.02 0.34 +herculéenne herculéen adj f s 0.03 0.74 0.01 0.07 +herculéennes herculéen adj f p 0.03 0.74 0.00 0.07 +herculéens herculéen adj m p 0.03 0.74 0.00 0.27 +hercynien hercynien adj m s 0.00 0.14 0.00 0.07 +hercyniennes hercynien adj f p 0.00 0.14 0.00 0.07 +hermaphrodisme hermaphrodisme nom m s 0.00 0.07 0.00 0.07 +hermaphrodite hermaphrodite adj s 0.37 0.20 0.11 0.14 +hermaphrodites hermaphrodite adj p 0.37 0.20 0.26 0.07 +hermaphroditisme hermaphroditisme nom m s 0.00 0.07 0.00 0.07 +hermine hermine nom f s 0.28 1.69 0.28 1.62 +hermines hermine nom f p 0.28 1.69 0.00 0.07 +herminette herminette nom f s 0.01 0.14 0.01 0.07 +herminettes herminette nom f p 0.01 0.14 0.00 0.07 +herminé herminé adj m s 0.00 0.07 0.00 0.07 +hermès hermès nom m 0.73 0.00 0.73 0.00 +herméneutique herméneutique adj f s 0.01 0.00 0.01 0.00 +hermétique hermétique adj s 0.98 3.11 0.82 1.96 +hermétiquement hermétiquement adv 0.61 1.55 0.61 1.55 +hermétiques hermétique adj p 0.98 3.11 0.16 1.15 +hermétisme hermétisme nom m s 0.14 0.20 0.14 0.20 +hermétistes hermétiste nom p 0.00 0.14 0.00 0.14 +herniaire herniaire adj s 0.06 0.41 0.06 0.27 +herniaires herniaire adj m p 0.06 0.41 0.00 0.14 +hernie hernie nom f s 2.91 1.01 2.85 0.61 +hernies hernie nom f p 2.91 1.01 0.06 0.41 +hernieux hernieux adj m p 0.00 0.07 0.00 0.07 +herpès herpès nom m 0.86 0.20 0.86 0.20 +herpétique herpétique adj f s 0.03 0.00 0.03 0.00 +herpétologie herpétologie nom f s 0.04 0.00 0.04 0.00 +herpétologiste herpétologiste nom s 0.01 0.00 0.01 0.00 +hersait herser ver 0.00 0.34 0.00 0.07 ind:imp:3s; +herse herse nom f s 0.27 2.57 0.26 1.69 +herser herser ver 0.00 0.34 0.00 0.14 inf; +herses herse nom f p 0.27 2.57 0.01 0.88 +hersé herser ver m s 0.00 0.34 0.00 0.07 par:pas; +hersés herser ver m p 0.00 0.34 0.00 0.07 par:pas; +hertz hertz nom m 0.09 0.00 0.09 0.00 +hertzienne hertzien adj f s 0.10 0.07 0.03 0.00 +hertziennes hertzien adj f p 0.10 0.07 0.06 0.07 +hertziens hertzien adj m p 0.10 0.07 0.01 0.00 +hessois hessois adj m 0.00 0.14 0.00 0.07 +hessoise hessois adj f s 0.00 0.14 0.00 0.07 +hetman hetman nom m s 0.34 0.07 0.34 0.07 +heu heu ono 35.17 6.69 35.17 6.69 +heur heur nom m s 0.28 1.15 0.05 0.41 +heure heure nom f s 709.79 924.05 415.40 439.86 +heures heure nom f p 709.79 924.05 294.39 484.19 +heureuse heureux adj f s 248.45 190.00 88.71 58.11 +heureusement heureusement adv 39.78 51.35 39.78 51.35 +heureuses heureux adj f p 248.45 190.00 3.94 6.49 +heureux heureux adj m 248.45 190.00 155.80 125.41 +heuristique heuristique adj f s 0.03 0.00 0.03 0.00 +heurs heur nom m p 0.28 1.15 0.01 0.20 +heurt heurt nom m s 0.49 6.15 0.29 2.84 +heurta heurter ver 9.79 39.05 0.17 5.14 ind:pas:3s; +heurtai heurter ver 9.79 39.05 0.01 0.68 ind:pas:1s; +heurtaient heurter ver 9.79 39.05 0.06 2.36 ind:imp:3p; +heurtais heurter ver 9.79 39.05 0.05 0.41 ind:imp:1s; +heurtait heurter ver 9.79 39.05 0.04 4.32 ind:imp:3s; +heurtant heurter ver 9.79 39.05 0.22 4.19 par:pre; +heurte heurter ver 9.79 39.05 1.15 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +heurtent heurter ver 9.79 39.05 0.29 1.96 ind:pre:3p; +heurter heurter ver 9.79 39.05 1.81 7.50 inf; +heurtera heurter ver 9.79 39.05 0.04 0.20 ind:fut:3s; +heurterai heurter ver 9.79 39.05 0.00 0.07 ind:fut:1s; +heurteraient heurter ver 9.79 39.05 0.00 0.07 cnd:pre:3p; +heurterait heurter ver 9.79 39.05 0.04 0.20 cnd:pre:3s; +heurterions heurter ver 9.79 39.05 0.00 0.07 cnd:pre:1p; +heurtez heurter ver 9.79 39.05 0.07 0.14 imp:pre:2p;ind:pre:2p; +heurtions heurter ver 9.79 39.05 0.00 0.41 ind:imp:1p; +heurtoir heurtoir nom m s 0.03 0.61 0.03 0.47 +heurtoirs heurtoir nom m p 0.03 0.61 0.00 0.14 +heurtons heurter ver 9.79 39.05 0.00 0.14 ind:pre:1p; +heurtât heurter ver 9.79 39.05 0.00 0.14 sub:imp:3s; +heurts heurt nom m p 0.49 6.15 0.20 3.31 +heurtèrent heurter ver 9.79 39.05 0.01 0.95 ind:pas:3p; +heurté heurter ver m s 9.79 39.05 4.92 3.85 par:pas; +heurtée heurter ver f s 9.79 39.05 0.61 0.68 par:pas; +heurtées heurter ver f p 9.79 39.05 0.05 0.07 par:pas; +heurtés heurter ver m p 9.79 39.05 0.22 0.88 par:pas; +hexagonal hexagonal adj m s 0.03 1.96 0.01 0.61 +hexagonale hexagonal adj f s 0.03 1.96 0.01 0.68 +hexagonales hexagonal adj f p 0.03 1.96 0.01 0.47 +hexagonaux hexagonal adj m p 0.03 1.96 0.00 0.20 +hexagone hexagone nom m s 0.23 0.61 0.23 0.47 +hexagones hexagone nom m p 0.23 0.61 0.00 0.14 +hexamètres hexamètre nom m p 0.02 0.14 0.02 0.14 +hi_fi hi_fi nom f s 0.87 0.81 0.87 0.81 +hi_han hi_han ono 0.20 0.14 0.20 0.14 +hi hi ono 3.81 5.41 3.81 5.41 +hiatale hiatal adj f s 0.29 0.00 0.29 0.00 +hiatus hiatus nom m 0.04 1.01 0.04 1.01 +hibernaient hiberner ver 0.65 0.34 0.02 0.00 ind:imp:3p; +hibernait hiberner ver 0.65 0.34 0.03 0.07 ind:imp:3s; +hibernation hibernation nom f s 0.82 0.27 0.82 0.27 +hiberne hiberner ver 0.65 0.34 0.16 0.07 ind:pre:1s;ind:pre:3s; +hibernent hiberner ver 0.65 0.34 0.05 0.00 ind:pre:3p; +hiberner hiberner ver 0.65 0.34 0.21 0.07 inf; +hiberné hiberner ver m s 0.65 0.34 0.17 0.14 par:pas; +hibiscus hibiscus nom m 0.13 1.08 0.13 1.08 +hibou hibou nom m s 5.01 2.97 4.08 2.36 +hiboux hibou nom m p 5.01 2.97 0.94 0.61 +hic_et_nunc hic_et_nunc adv 0.00 0.41 0.00 0.41 +hic hic nom_sup m 2.21 2.91 2.21 2.91 +hickory hickory nom m s 0.14 0.07 0.14 0.07 +hidalgo hidalgo nom m s 0.08 0.61 0.06 0.27 +hidalgos hidalgo nom m p 0.08 0.61 0.02 0.34 +hideur hideur nom f s 0.00 0.81 0.00 0.61 +hideurs hideur nom f p 0.00 0.81 0.00 0.20 +hideuse hideux adj f s 3.31 9.26 0.99 2.70 +hideusement hideusement adv 0.03 0.34 0.03 0.34 +hideuses hideux adj f p 3.31 9.26 0.39 1.28 +hideux hideux adj m 3.31 9.26 1.93 5.27 +hier hier adv_sup 223.77 92.64 223.77 92.64 +high_life high_life nom m s 0.27 0.14 0.27 0.14 +high_tech high_tech adj 0.32 0.14 0.29 0.07 +high_life high_life nom m s 0.04 0.41 0.04 0.41 +high_tech high_tech adj s 0.32 0.14 0.04 0.07 +highlander highlander nom m s 0.30 0.14 0.14 0.00 +highlanders highlander nom m p 0.30 0.14 0.16 0.14 +higoumène higoumène nom m s 0.00 0.07 0.00 0.07 +hilaire hilaire adj f s 0.02 0.00 0.02 0.00 +hilarant hilarant adj m s 2.37 0.47 1.94 0.20 +hilarante hilarant adj f s 2.37 0.47 0.25 0.00 +hilarantes hilarant adj f p 2.37 0.47 0.09 0.14 +hilarants hilarant adj m p 2.37 0.47 0.10 0.14 +hilare hilare adj s 0.14 8.72 0.14 6.15 +hilares hilare adj p 0.14 8.72 0.00 2.57 +hilarité hilarité nom f s 0.32 4.12 0.32 4.05 +hilarités hilarité nom f p 0.32 4.12 0.00 0.07 +hile hile nom m s 0.24 0.00 0.24 0.00 +hiloire hiloire nom f s 0.00 0.07 0.00 0.07 +hilotes hilote nom m p 0.00 0.07 0.00 0.07 +himalaya himalaya nom m s 0.01 0.14 0.01 0.14 +himalayenne himalayen adj f s 0.20 0.07 0.20 0.00 +himalayens himalayen adj m p 0.20 0.07 0.00 0.07 +hindi hindi nom m s 0.14 0.07 0.14 0.07 +hindou hindou nom m s 1.79 1.22 0.93 0.47 +hindoue hindou adj f s 1.27 2.03 0.47 0.68 +hindoues hindou adj f p 1.27 2.03 0.17 0.27 +hindouisme hindouisme nom m s 0.28 0.00 0.28 0.00 +hindous hindou nom m p 1.79 1.22 0.73 0.74 +hindoustani hindoustani nom m s 0.03 0.00 0.03 0.00 +hip_hop hip_hop nom m s 1.74 0.00 1.74 0.00 +hip hip ono 4.43 1.22 4.43 1.22 +hippie hippie nom s 3.68 0.27 1.33 0.14 +hippies hippie nom p 3.68 0.27 2.36 0.14 +hippique hippique adj s 0.59 2.91 0.49 1.42 +hippiques hippique adj p 0.59 2.91 0.11 1.49 +hippisme hippisme nom m s 0.02 0.00 0.02 0.00 +hippo hippo nom m s 0.41 45.61 0.41 45.61 +hippocampe hippocampe nom m s 0.63 0.41 0.58 0.27 +hippocampes hippocampe nom m p 0.63 0.41 0.05 0.14 +hippocratique hippocratique adj m s 0.00 0.14 0.00 0.14 +hippodrome hippodrome nom m s 0.53 1.35 0.52 0.81 +hippodromes hippodrome nom m p 0.53 1.35 0.01 0.54 +hippogriffe hippogriffe nom m s 0.19 0.14 0.19 0.14 +hippomobile hippomobile adj m s 0.10 0.00 0.10 0.00 +hippophagique hippophagique adj s 0.00 0.14 0.00 0.07 +hippophagiques hippophagique adj f p 0.00 0.14 0.00 0.07 +hippopotame hippopotame nom m s 2.52 1.01 1.45 0.54 +hippopotames hippopotame nom m p 2.52 1.01 1.07 0.47 +hippopotamesque hippopotamesque adj f s 0.00 0.07 0.00 0.07 +hippy hippy nom m s 0.25 0.14 0.25 0.14 +hirondelle hirondeau nom f s 1.87 9.66 1.87 3.24 +hirondelles hirondelle nom f p 0.69 0.00 0.69 0.00 +hirsute hirsute adj s 1.53 5.61 1.44 3.78 +hirsutes hirsute adj p 1.53 5.61 0.09 1.82 +hirsutisme hirsutisme nom m s 0.02 0.00 0.02 0.00 +hirudine hirudine nom f s 0.01 0.00 0.01 0.00 +hispanique hispanique adj s 0.50 0.27 0.47 0.14 +hispaniques hispanique nom p 0.27 0.00 0.10 0.00 +hispanisante hispanisant adj f s 0.00 0.14 0.00 0.07 +hispanisants hispanisant adj m p 0.00 0.14 0.00 0.07 +hispano_américain hispano_américain nom m s 0.01 0.00 0.01 0.00 +hispano_américain hispano_américain adj f s 0.03 0.27 0.03 0.20 +hispano_cubain hispano_cubain adj m s 0.00 0.07 0.00 0.07 +hispano_mauresque hispano_mauresque adj m s 0.00 0.07 0.00 0.07 +hispano hispano adv 0.06 0.54 0.06 0.54 +hispanophone hispanophone nom s 0.02 0.00 0.02 0.00 +hissa hisser ver 8.09 22.36 0.13 2.30 ind:pas:3s; +hissai hisser ver 8.09 22.36 0.14 0.27 ind:pas:1s; +hissaient hisser ver 8.09 22.36 0.02 0.47 ind:imp:3p; +hissais hisser ver 8.09 22.36 0.02 0.14 ind:imp:1s; +hissait hisser ver 8.09 22.36 0.16 2.09 ind:imp:3s; +hissant hisser ver 8.09 22.36 0.01 1.62 par:pre; +hisse hisse ono 0.88 0.07 0.88 0.07 +hissent hisser ver 8.09 22.36 0.12 0.34 ind:pre:3p; +hisser hisser ver 8.09 22.36 1.37 6.22 inf; +hissera hisser ver 8.09 22.36 0.13 0.14 ind:fut:3s; +hisserai hisser ver 8.09 22.36 0.00 0.14 ind:fut:1s; +hissez hisser ver 8.09 22.36 1.76 0.00 imp:pre:2p;ind:pre:2p; +hissâmes hisser ver 8.09 22.36 0.01 0.14 ind:pas:1p; +hissons hisser ver 8.09 22.36 0.04 0.20 imp:pre:1p;ind:pre:1p; +hissèrent hisser ver 8.09 22.36 0.00 0.81 ind:pas:3p; +hissé hisser ver m s 8.09 22.36 1.21 2.64 par:pas; +hissée hisser ver f s 8.09 22.36 0.05 1.28 par:pas; +hissées hisser ver f p 8.09 22.36 0.10 0.14 par:pas; +hissés hisser ver m p 8.09 22.36 0.07 0.81 par:pas; +histamine histamine nom f s 0.15 0.00 0.15 0.00 +histaminique histaminique adj s 0.03 0.00 0.03 0.00 +hister hister nom m s 0.02 0.00 0.02 0.00 +histocompatibilité histocompatibilité nom f s 0.14 0.00 0.14 0.00 +histocompatibles histocompatible adj p 0.00 0.07 0.00 0.07 +histoire histoire nom f s 359.92 359.53 295.32 292.23 +histoires histoire nom f p 359.92 359.53 64.60 67.30 +histologie histologie nom f s 0.11 0.00 0.11 0.00 +histologique histologique adj s 0.06 0.07 0.06 0.07 +histopathologie histopathologie nom f s 0.03 0.00 0.03 0.00 +histoplasmose histoplasmose nom f s 0.01 0.00 0.01 0.00 +historia historier ver 0.00 0.34 0.00 0.20 ind:pas:3s; +historicité historicité nom f s 0.00 0.14 0.00 0.14 +historico_culturel historico_culturel adj f s 0.00 0.07 0.00 0.07 +historien historien nom m s 2.32 6.28 1.49 3.11 +historienne historien nom f s 2.32 6.28 0.21 0.34 +historiens historien nom m p 2.32 6.28 0.63 2.84 +historiette historiette nom f s 0.00 0.34 0.00 0.14 +historiettes historiette nom f p 0.00 0.34 0.00 0.20 +historiographe historiographe nom s 0.01 0.00 0.01 0.00 +historiographie historiographie nom f s 0.11 0.00 0.11 0.00 +historique historique adj s 11.31 18.24 8.83 11.69 +historiquement historiquement adv 0.99 0.47 0.99 0.47 +historiques historique adj p 11.31 18.24 2.48 6.55 +historiée historier ver f s 0.00 0.34 0.00 0.07 par:pas; +historiés historié adj m p 0.00 0.20 0.00 0.14 +histrion histrion nom m s 0.34 0.41 0.23 0.27 +histrions histrion nom m p 0.34 0.41 0.10 0.14 +hit_parade hit_parade nom m s 0.73 0.68 0.69 0.68 +hit_parade hit_parade nom m p 0.73 0.68 0.04 0.00 +hit hit nom m s 1.59 0.47 1.37 0.41 +hitchcockien hitchcockien adj m s 0.03 0.14 0.03 0.14 +hitlérien hitlérien adj m s 0.48 4.59 0.26 1.08 +hitlérienne hitlérien adj f s 0.48 4.59 0.14 2.16 +hitlériennes hitlérienne adj f p 0.20 0.00 0.20 0.00 +hitlériens hitlérien nom m p 0.00 1.15 0.00 0.88 +hitlérisme hitlérisme nom m s 0.01 0.68 0.01 0.68 +hits hit nom m p 1.59 0.47 0.22 0.07 +hittite hittite adj m s 0.04 0.41 0.04 0.20 +hittites hittite adj p 0.04 0.41 0.00 0.20 +hiérarchie hiérarchie nom f s 2.59 9.86 2.56 8.65 +hiérarchies hiérarchie nom f p 2.59 9.86 0.03 1.22 +hiérarchique hiérarchique adj s 0.59 1.49 0.57 1.28 +hiérarchiquement hiérarchiquement adv 0.01 0.20 0.01 0.20 +hiérarchiques hiérarchique adj p 0.59 1.49 0.02 0.20 +hiérarchisait hiérarchiser ver 0.01 0.14 0.00 0.07 ind:imp:3s; +hiérarchisation hiérarchisation nom f s 0.00 0.07 0.00 0.07 +hiérarchise hiérarchiser ver 0.01 0.14 0.01 0.00 ind:pre:3s; +hiérarchisé hiérarchisé adj m s 0.00 0.34 0.00 0.07 +hiérarchisée hiérarchisé adj f s 0.00 0.34 0.00 0.20 +hiérarchisés hiérarchisé adj m p 0.00 0.34 0.00 0.07 +hiératique hiératique adj s 0.02 1.69 0.01 1.22 +hiératiquement hiératiquement adv 0.00 0.07 0.00 0.07 +hiératiques hiératique adj p 0.02 1.69 0.01 0.47 +hiératisme hiératisme nom m s 0.00 0.54 0.00 0.54 +hiéroglyphe hiéroglyphe nom m s 1.25 1.49 0.20 0.20 +hiéroglyphes hiéroglyphe nom m p 1.25 1.49 1.05 1.28 +hiéroglyphique hiéroglyphique adj s 0.03 0.00 0.01 0.00 +hiéroglyphiques hiéroglyphique adj m p 0.03 0.00 0.02 0.00 +hiéronymites hiéronymite nom m p 0.00 0.07 0.00 0.07 +hiérophante hiérophante nom m s 0.00 0.20 0.00 0.20 +hiv hiv adj s 0.00 1.62 0.00 1.62 +hiver hiver nom m s 38.96 99.53 37.44 96.28 +hivernage hivernage nom m s 0.00 0.95 0.00 0.95 +hivernaient hiverner ver 0.02 0.81 0.00 0.07 ind:imp:3p; +hivernait hiverner ver 0.02 0.81 0.00 0.14 ind:imp:3s; +hivernal hivernal adj m s 0.17 1.82 0.08 0.74 +hivernale hivernal adj f s 0.17 1.82 0.04 0.88 +hivernales hivernal adj f p 0.17 1.82 0.05 0.14 +hivernant hivernant adj m s 0.00 0.20 0.00 0.07 +hivernante hivernant adj f s 0.00 0.20 0.00 0.07 +hivernantes hivernant adj f p 0.00 0.20 0.00 0.07 +hivernants hivernant nom m p 0.00 0.07 0.00 0.07 +hivernaux hivernal adj m p 0.17 1.82 0.00 0.07 +hiverne hiverner ver 0.02 0.81 0.00 0.14 ind:pre:1s;ind:pre:3s; +hiverner hiverner ver 0.02 0.81 0.02 0.34 inf; +hivernons hiverner ver 0.02 0.81 0.00 0.07 ind:pre:1p; +hiverné hiverner ver m s 0.02 0.81 0.00 0.07 par:pas; +hivers hiver nom m p 38.96 99.53 1.52 3.24 +ho ho ono 20.06 4.73 20.06 4.73 +hobbies hobby nom m p 3.11 0.20 0.61 0.20 +hobby hobby nom m s 3.11 0.20 2.50 0.00 +hobereau hobereau nom m s 0.03 1.82 0.02 1.01 +hobereaux hobereau nom m p 0.03 1.82 0.01 0.81 +hâblerie hâblerie nom f s 0.00 0.34 0.00 0.07 +hâbleries hâblerie nom f p 0.00 0.34 0.00 0.27 +hâbleur hâbleur nom m s 0.19 0.54 0.06 0.34 +hâbleurs hâbleur nom m p 0.19 0.54 0.14 0.20 +hocha hocher ver 1.80 41.15 0.16 14.12 ind:pas:3s; +hochai hocher ver 1.80 41.15 0.00 0.41 ind:pas:1s; +hochaient hocher ver 1.80 41.15 0.00 1.15 ind:imp:3p; +hochais hocher ver 1.80 41.15 0.00 0.27 ind:imp:1s; +hochait hocher ver 1.80 41.15 0.02 5.27 ind:imp:3s; +hochant hocher ver 1.80 41.15 0.27 8.38 par:pre; +hoche hocher ver 1.80 41.15 0.41 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hochement hochement nom m s 0.10 5.68 0.08 3.78 +hochements hochement nom m p 0.10 5.68 0.02 1.89 +hochent hocher ver 1.80 41.15 0.01 0.47 ind:pre:3p; +hochepot hochepot nom m s 0.00 0.14 0.00 0.14 +hocher hocher ver 1.80 41.15 0.18 1.42 inf; +hocheraient hocher ver 1.80 41.15 0.00 0.07 cnd:pre:3p; +hocheront hocher ver 1.80 41.15 0.00 0.07 ind:fut:3p; +hoches hocher ver 1.80 41.15 0.34 0.00 ind:pre:2s; +hochet hochet nom m s 0.88 2.23 0.43 1.01 +hochets hochet nom m p 0.88 2.23 0.45 1.22 +hocheurs hocheur nom m p 0.00 0.07 0.00 0.07 +hochez hocher ver 1.80 41.15 0.14 0.14 imp:pre:2p;ind:pre:2p; +hochions hocher ver 1.80 41.15 0.00 0.14 ind:imp:1p; +hochèrent hocher ver 1.80 41.15 0.00 0.68 ind:pas:3p; +hoché hocher ver m s 1.80 41.15 0.27 2.23 par:pas; +hockey hockey nom m s 6.38 0.14 6.38 0.14 +hockeyeur hockeyeur nom m s 0.50 0.14 0.43 0.07 +hockeyeurs hockeyeur nom m p 0.50 0.14 0.07 0.07 +hodgkinien hodgkinien adj m s 0.01 0.00 0.01 0.00 +hodja hodja nom m s 0.19 0.00 0.19 0.00 +hoirie hoirie nom f s 0.00 0.34 0.00 0.27 +hoiries hoirie nom f p 0.00 0.34 0.00 0.07 +hâlait hâler ver 0.01 1.08 0.00 0.07 ind:imp:3s; +hâlant hâler ver 0.01 1.08 0.00 0.07 par:pre; +hold_up hold_up nom m 7.78 3.38 7.59 3.38 +hold_up hold_up nom m 7.78 3.38 0.20 0.00 +holding holding nom s 0.73 0.27 0.67 0.14 +holdings holding nom p 0.73 0.27 0.06 0.14 +hâle hâle nom m s 0.15 3.04 0.15 2.84 +hâles hâle nom m p 0.15 3.04 0.00 0.20 +holistique holistique adj s 0.15 0.00 0.14 0.00 +holistiques holistique adj m p 0.15 0.00 0.01 0.00 +hollandais hollandais nom m p 2.90 3.11 2.90 2.97 +hollandaise hollandais adj f s 3.87 5.47 1.01 2.09 +hollandaises hollandais adj f p 3.87 5.47 0.28 0.34 +hollande hollande nom f s 0.02 0.07 0.02 0.07 +hollywoodien hollywoodien adj m s 0.00 1.28 0.00 0.34 +hollywoodienne hollywoodien adj f s 0.00 1.28 0.00 0.34 +hollywoodiennes hollywoodien adj f p 0.00 1.28 0.00 0.07 +hollywoodiens hollywoodien adj m p 0.00 1.28 0.00 0.54 +holà holà ono 4.87 1.62 4.87 1.62 +holocauste holocauste nom m s 1.61 1.15 1.61 0.95 +holocaustes holocauste nom m p 1.61 1.15 0.00 0.20 +hologramme hologramme nom m s 1.93 0.00 1.45 0.00 +hologrammes hologramme nom m p 1.93 0.00 0.48 0.00 +holographe holographe adj s 0.04 0.00 0.02 0.00 +holographes holographe adj p 0.04 0.00 0.02 0.00 +holographie holographie nom f s 0.06 0.07 0.06 0.07 +holographique holographique adj s 0.56 0.00 0.47 0.00 +holographiques holographique adj p 0.56 0.00 0.09 0.00 +holoèdres holoèdre adj f p 0.00 0.07 0.00 0.07 +holothuries holothurie nom f p 0.00 0.07 0.00 0.07 +holster holster nom m s 0.07 0.27 0.07 0.27 +hâlé hâlé adj m s 0.05 2.57 0.03 1.15 +hâlée hâlé adj f s 0.05 2.57 0.02 0.68 +hâlées hâlé adj f p 0.05 2.57 0.00 0.20 +hâlés hâlé adj m p 0.05 2.57 0.00 0.54 +hom hom ono 0.54 0.00 0.54 0.00 +homard homard nom m s 4.96 5.34 3.79 3.51 +homardiers homardier nom m p 0.01 0.00 0.01 0.00 +homards homard nom m p 4.96 5.34 1.18 1.82 +hombre hombre nom m s 1.60 0.61 1.60 0.61 +home_trainer home_trainer nom m s 0.01 0.00 0.01 0.00 +home home nom m s 4.00 2.16 3.75 1.96 +homeland homeland nom m s 0.14 0.00 0.14 0.00 +homes home nom m p 4.00 2.16 0.24 0.20 +homicide homicide nom m s 12.07 0.47 10.30 0.47 +homicides homicide nom m p 12.07 0.47 1.77 0.00 +hominien hominien nom m s 0.00 0.14 0.00 0.07 +hominiens hominien nom m p 0.00 0.14 0.00 0.07 +hominisation hominisation nom f s 0.00 0.07 0.00 0.07 +hommage hommage nom m s 16.45 16.69 11.11 13.31 +hommages hommage nom m p 16.45 16.69 5.34 3.38 +hommasse hommasse adj s 0.05 0.61 0.05 0.47 +hommasses hommasse adj f p 0.05 0.61 0.00 0.14 +homme_chien homme_chien nom m s 0.09 0.14 0.09 0.14 +homme_clé homme_clé nom m s 0.04 0.00 0.04 0.00 +homme_femme homme_femme nom m s 0.36 0.07 0.36 0.07 +homme_grenouille homme_grenouille nom m s 0.35 0.20 0.20 0.07 +homme_loup homme_loup nom m s 0.05 0.00 0.05 0.00 +homme_machine homme_machine nom m s 0.04 0.00 0.04 0.00 +homme_oiseau homme_oiseau nom m s 0.05 0.00 0.05 0.00 +homme_orchestre homme_orchestre nom m s 0.03 0.07 0.03 0.07 +homme_poisson homme_poisson nom m s 0.06 0.00 0.06 0.00 +homme_robot homme_robot nom m s 0.07 0.00 0.07 0.00 +homme_sandwich homme_sandwich nom m s 0.00 0.41 0.00 0.41 +homme_serpent homme_serpent nom m s 0.02 0.27 0.02 0.27 +homme homme nom m s 1123.55 1398.85 781.11 852.23 +homme_grenouille homme_grenouille nom m p 0.35 0.20 0.16 0.14 +hommes homme nom m p 1123.55 1398.85 342.44 546.62 +homo_erectus homo_erectus nom m 0.04 0.00 0.04 0.00 +homo_habilis homo_habilis nom m 0.00 0.07 0.00 0.07 +homo homo adj s 8.15 0.41 7.18 0.41 +homogène homogène adj s 0.44 2.77 0.40 2.43 +homogènes homogène adj p 0.44 2.77 0.04 0.34 +homogénéisateur homogénéisateur nom m s 0.14 0.00 0.14 0.00 +homogénéisation homogénéisation nom f s 0.03 0.07 0.03 0.07 +homogénéisé homogénéisé adj m s 0.05 0.07 0.02 0.00 +homogénéisée homogénéisé adj f s 0.05 0.07 0.03 0.07 +homogénéité homogénéité nom f s 0.04 0.34 0.04 0.34 +homologable homologable adj s 0.00 0.07 0.00 0.07 +homologation homologation nom f s 0.10 0.20 0.10 0.20 +homologue homologue nom s 0.30 0.27 0.20 0.07 +homologuer homologuer ver 0.14 0.41 0.12 0.20 inf; +homologues homologue nom p 0.30 0.27 0.11 0.20 +homologué homologué adj m s 0.01 0.27 0.01 0.14 +homologuée homologuer ver f s 0.14 0.41 0.01 0.00 par:pas; +homologués homologuer ver m p 0.14 0.41 0.01 0.07 par:pas; +homoncule homoncule nom m s 0.02 0.07 0.02 0.07 +homonyme homonyme nom s 0.25 0.47 0.21 0.47 +homonymes homonyme nom p 0.25 0.47 0.04 0.00 +homonymie homonymie nom f s 0.00 0.27 0.00 0.27 +homonymique homonymique adj s 0.00 0.07 0.00 0.07 +homophile homophile nom m s 0.01 0.14 0.01 0.14 +homophilie homophilie nom f s 0.00 0.07 0.00 0.07 +homophobe homophobe adj s 0.73 0.07 0.57 0.07 +homophobes homophobe adj f p 0.73 0.07 0.16 0.00 +homophone homophone nom m s 0.01 0.00 0.01 0.00 +homophonie homophonie nom f s 0.00 0.07 0.00 0.07 +homos homo nom p 4.51 0.95 2.31 0.20 +homosexualité homosexualité nom f s 4.81 2.57 4.81 2.57 +homosexuel homosexuel adj m s 5.81 3.11 3.77 1.76 +homosexuelle homosexuel adj f s 5.81 3.11 0.63 0.34 +homosexuelles homosexuel adj f p 5.81 3.11 0.66 0.34 +homosexuels homosexuel nom m p 3.62 4.32 2.51 2.43 +homozygote homozygote adj s 0.01 0.00 0.01 0.00 +homélie homélie nom f s 0.33 0.81 0.31 0.47 +homélies homélie nom f p 0.33 0.81 0.02 0.34 +homuncule homuncule nom m s 0.14 0.00 0.14 0.00 +homéopathe homéopathe adj m s 0.15 0.00 0.15 0.00 +homéopathie homéopathie nom f s 0.58 0.14 0.58 0.14 +homéopathique homéopathique adj s 0.17 0.14 0.17 0.07 +homéopathiques homéopathique adj f p 0.17 0.14 0.00 0.07 +homéostatique homéostatique adj s 0.01 0.00 0.01 0.00 +homéothermie homéothermie nom f s 0.01 0.00 0.01 0.00 +homérique homérique adj s 0.05 0.95 0.04 0.54 +homériques homérique adj f p 0.05 0.95 0.01 0.41 +hon hon ono 0.57 1.01 0.57 1.01 +hondurien hondurien adj m s 0.01 0.00 0.01 0.00 +hondurien hondurien nom m s 0.01 0.00 0.01 0.00 +hong_kong hong_kong nom s 0.03 0.00 0.03 0.00 +hongkongais hongkongais nom m 0.14 0.00 0.14 0.00 +hongre hongre adj m s 0.18 0.20 0.17 0.14 +hongres hongre adj m p 0.18 0.20 0.01 0.07 +hongrois hongrois nom m 1.73 2.36 1.73 2.36 +hongroise hongroise nom f s 1.08 0.47 0.97 0.47 +hongroises hongroise nom f p 1.08 0.47 0.10 0.00 +honneur honneur nom m s 130.69 97.36 126.78 87.64 +honneurs honneur nom m p 130.69 97.36 3.92 9.73 +honni honni adj m s 0.56 0.61 0.55 0.41 +honnie honnir ver f s 0.19 1.01 0.03 0.20 par:pas; +honnir honnir ver 0.19 1.01 0.00 0.07 inf; +honnis honnir ver m p 0.19 1.01 0.01 0.14 ind:pre:2s;par:pas; +honnissait honnir ver 0.19 1.01 0.00 0.20 ind:imp:3s; +honnissant honnir ver 0.19 1.01 0.00 0.07 par:pre; +honnissent honnir ver 0.19 1.01 0.00 0.07 ind:pre:3p; +honnit honnir ver 0.19 1.01 0.01 0.07 ind:pre:3s; +honnête honnête adj s 53.89 28.24 43.60 20.20 +honnêtement honnêtement adv 12.06 4.73 12.06 4.73 +honnêtes honnête adj p 53.89 28.24 10.29 8.04 +honnêteté honnêteté nom f s 7.20 6.42 7.20 6.42 +honora honorer ver 22.65 13.24 0.03 0.27 ind:pas:3s; +honorabilité honorabilité nom f s 0.20 1.15 0.20 1.15 +honorable honorable adj s 11.44 10.81 9.31 8.24 +honorablement honorablement adv 0.41 1.55 0.41 1.55 +honorables honorable adj p 11.44 10.81 2.13 2.57 +honorai honorer ver 22.65 13.24 0.00 0.07 ind:pas:1s; +honoraient honorer ver 22.65 13.24 0.01 0.47 ind:imp:3p; +honoraire honoraire adj s 0.90 0.81 0.77 0.68 +honoraires honoraire nom m p 3.06 1.49 3.06 1.49 +honorais honorer ver 22.65 13.24 0.01 0.07 ind:imp:1s; +honorait honorer ver 22.65 13.24 0.08 1.49 ind:imp:3s; +honorant honorer ver 22.65 13.24 0.03 0.20 par:pre; +honore honorer ver 22.65 13.24 4.41 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +honorent honorer ver 22.65 13.24 0.80 0.54 ind:pre:3p; +honorer honorer ver 22.65 13.24 6.13 5.07 inf; +honorera honorer ver 22.65 13.24 0.14 0.00 ind:fut:3s; +honorerai honorer ver 22.65 13.24 0.34 0.00 ind:fut:1s; +honorerait honorer ver 22.65 13.24 0.05 0.14 cnd:pre:3s; +honoreras honorer ver 22.65 13.24 0.23 0.00 ind:fut:2s; +honorerez honorer ver 22.65 13.24 0.23 0.00 ind:fut:2p; +honorerons honorer ver 22.65 13.24 0.15 0.00 ind:fut:1p; +honoreront honorer ver 22.65 13.24 0.03 0.00 ind:fut:3p; +honores honorer ver 22.65 13.24 0.65 0.00 ind:pre:2s; +honorez honorer ver 22.65 13.24 1.54 0.07 imp:pre:2p;ind:pre:2p; +honoriez honorer ver 22.65 13.24 0.02 0.07 ind:imp:2p; +honorifique honorifique adj s 0.65 0.68 0.61 0.54 +honorifiques honorifique adj p 0.65 0.68 0.03 0.14 +honoris_causa honoris_causa adv 0.16 0.27 0.16 0.27 +honorons honorer ver 22.65 13.24 0.52 0.00 imp:pre:1p;ind:pre:1p; +honorât honorer ver 22.65 13.24 0.00 0.07 sub:imp:3s; +honorèrent honorer ver 22.65 13.24 0.00 0.07 ind:pas:3p; +honoré honorer ver m s 22.65 13.24 5.09 1.89 par:pas; +honorée honorer ver f s 22.65 13.24 0.92 0.54 par:pas; +honorées honorer ver f p 22.65 13.24 0.13 0.27 par:pas; +honorés honorer ver m p 22.65 13.24 1.10 0.34 par:pas; +honte honte nom f s 103.40 83.45 103.26 82.64 +hontes honte nom f p 103.40 83.45 0.14 0.81 +honteuse honteux adj f s 9.52 22.30 1.91 6.89 +honteusement honteusement adv 0.58 2.43 0.58 2.43 +honteuses honteux adj f p 9.52 22.30 0.45 2.36 +honteux honteux adj m 9.52 22.30 7.17 13.04 +hooligan hooligan nom m s 0.72 0.14 0.10 0.07 +hooligans hooligan nom m p 0.72 0.14 0.62 0.07 +hop hop ono 26.52 14.19 26.52 14.19 +hopak hopak nom m s 0.01 0.00 0.01 0.00 +hopi hopi adj f s 0.01 0.14 0.01 0.07 +hopis hopi adj m p 0.01 0.14 0.00 0.07 +hoplite hoplite nom m s 0.00 0.07 0.00 0.07 +hoquet hoquet nom m s 1.73 7.91 1.57 4.32 +hoqueta hoqueter ver 0.03 5.54 0.00 1.55 ind:pas:3s; +hoquetai hoqueter ver 0.03 5.54 0.00 0.14 ind:pas:1s; +hoquetais hoqueter ver 0.03 5.54 0.00 0.14 ind:imp:1s; +hoquetait hoqueter ver 0.03 5.54 0.00 1.15 ind:imp:3s; +hoquetant hoqueter ver 0.03 5.54 0.01 1.35 par:pre; +hoqueter hoqueter ver 0.03 5.54 0.01 0.41 inf; +hoquetons hoqueter ver 0.03 5.54 0.00 0.07 ind:pre:1p; +hoquets hoquet nom m p 1.73 7.91 0.16 3.58 +hoquette hoqueter ver 0.03 5.54 0.01 0.47 ind:pre:3s;sub:pre:3s; +hoqueté hoqueter ver m s 0.03 5.54 0.00 0.27 par:pas; +horaire horaire nom m s 8.94 7.91 2.64 3.58 +horaires horaire nom m p 8.94 7.91 6.30 4.32 +horde horde nom f s 2.95 7.03 2.33 3.78 +hordes horde nom f p 2.95 7.03 0.62 3.24 +horion horion nom m s 0.00 0.88 0.00 0.14 +horions horion nom m p 0.00 0.88 0.00 0.74 +horizon horizon nom m s 9.04 66.15 7.80 61.08 +horizons horizon nom m p 9.04 66.15 1.24 5.07 +horizontal horizontal adj m s 1.47 10.47 0.88 2.84 +horizontale horizontale nom f s 1.37 3.04 0.87 2.77 +horizontalement horizontalement adv 0.15 1.96 0.15 1.96 +horizontales horizontale nom f p 1.37 3.04 0.50 0.27 +horizontalité horizontalité nom f s 0.00 0.20 0.00 0.20 +horizontaux horizontal adj m p 1.47 10.47 0.03 1.69 +horloge horloge nom f s 10.48 16.49 9.37 13.99 +horloger horloger nom m s 0.39 5.41 0.34 2.23 +horlogerie horlogerie nom f s 0.29 1.08 0.29 1.08 +horlogers horloger nom m p 0.39 5.41 0.05 0.54 +horloges horloge nom f p 10.48 16.49 1.11 2.50 +horlogère horloger nom f s 0.39 5.41 0.00 2.64 +hormis hormis pre 3.23 5.74 3.23 5.74 +hormonal hormonal adj m s 0.77 0.34 0.51 0.14 +hormonale hormonal adj f s 0.77 0.34 0.19 0.20 +hormonales hormonal adj f p 0.77 0.34 0.04 0.00 +hormonaux hormonal adj m p 0.77 0.34 0.03 0.00 +hormone hormone nom f s 4.69 0.68 0.57 0.20 +hormones hormone nom f p 4.69 0.68 4.12 0.47 +hormonés hormoner ver m p 0.00 0.07 0.00 0.07 par:pas; +hornblende hornblende nom f s 0.01 0.00 0.01 0.00 +horoscope horoscope nom m s 2.90 1.96 2.47 1.28 +horoscopes horoscope nom m p 2.90 1.96 0.43 0.68 +horreur horreur nom f s 46.19 69.46 39.79 61.35 +horreurs horreur nom f p 46.19 69.46 6.40 8.11 +horrible horrible adj s 67.22 25.47 57.16 20.74 +horriblement horriblement adv 3.23 4.53 3.23 4.53 +horribles horrible adj p 67.22 25.47 10.07 4.73 +horrifia horrifier ver 1.37 3.04 0.00 0.14 ind:pas:3s; +horrifiaient horrifier ver 1.37 3.04 0.00 0.07 ind:imp:3p; +horrifiait horrifier ver 1.37 3.04 0.02 0.20 ind:imp:3s; +horrifiant horrifiant adj m s 0.24 1.49 0.19 1.08 +horrifiante horrifiant adj f s 0.24 1.49 0.04 0.07 +horrifiants horrifiant adj m p 0.24 1.49 0.01 0.34 +horrifie horrifier ver 1.37 3.04 0.14 0.14 ind:pre:1s;ind:pre:3s; +horrifier horrifier ver 1.37 3.04 0.01 0.27 inf; +horrifique horrifique adj f s 0.04 0.14 0.04 0.14 +horrifièrent horrifier ver 1.37 3.04 0.00 0.07 ind:pas:3p; +horrifié horrifier ver m s 1.37 3.04 0.61 1.35 par:pas; +horrifiée horrifier ver f s 1.37 3.04 0.42 0.54 par:pas; +horrifiées horrifier ver f p 1.37 3.04 0.02 0.07 par:pas; +horrifiés horrifié adj m p 0.28 2.16 0.21 0.34 +horripilaient horripiler ver 0.24 1.49 0.00 0.07 ind:imp:3p; +horripilais horripiler ver 0.24 1.49 0.00 0.07 ind:imp:1s; +horripilait horripiler ver 0.24 1.49 0.00 0.34 ind:imp:3s; +horripilant horripilant adj m s 0.28 0.68 0.19 0.20 +horripilante horripilant adj f s 0.28 0.68 0.07 0.20 +horripilantes horripilant adj f p 0.28 0.68 0.03 0.07 +horripilants horripilant adj m p 0.28 0.68 0.00 0.20 +horripilation horripilation nom f s 0.01 0.20 0.01 0.14 +horripilations horripilation nom f p 0.01 0.20 0.00 0.07 +horripile horripiler ver 0.24 1.49 0.21 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +horripilent horripiler ver 0.24 1.49 0.01 0.07 ind:pre:3p; +horripiler horripiler ver 0.24 1.49 0.01 0.07 inf; +horripilé horripiler ver m s 0.24 1.49 0.00 0.14 par:pas; +horripilée horripiler ver f s 0.24 1.49 0.01 0.20 par:pas; +horripilés horripiler ver m p 0.24 1.49 0.00 0.07 par:pas; +hors_bord hors_bord nom m p 0.45 0.61 0.45 0.61 +hors_cote hors_cote adj 0.01 0.00 0.01 0.00 +hors_d_oeuvre hors_d_oeuvre nom m 0.56 1.96 0.56 1.96 +hors_jeu hors_jeu adj 1.13 0.20 1.13 0.20 +hors_la_loi hors_la_loi nom m p 3.21 1.49 3.21 1.49 +hors_piste hors_piste nom m p 0.45 0.00 0.45 0.00 +hors_série hors_série adj f s 0.01 0.20 0.01 0.20 +hors hors pre 71.94 92.43 71.94 92.43 +horse_guard horse_guard nom m s 0.02 0.14 0.00 0.07 +horse_guard horse_guard nom m p 0.02 0.14 0.02 0.07 +hortensia hortensia nom m s 0.66 2.03 0.30 0.34 +hortensias hortensia nom m p 0.66 2.03 0.36 1.69 +horticoles horticole adj m p 0.00 0.07 0.00 0.07 +horticulteur horticulteur nom m s 0.07 0.54 0.06 0.34 +horticulteurs horticulteur nom m p 0.07 0.54 0.01 0.20 +horticultrice horticultrice nom f s 0.01 0.00 0.01 0.00 +horticulture horticulture nom f s 0.23 0.27 0.23 0.27 +hortillonnage hortillonnage nom m s 0.00 0.07 0.00 0.07 +hosanna hosanna nom m s 0.54 0.54 0.23 0.41 +hosannah hosannah nom m s 0.00 0.27 0.00 0.27 +hosannas hosanna nom m p 0.54 0.54 0.30 0.14 +hospice hospice nom m s 3.12 6.96 3.06 6.28 +hospices hospice nom m p 3.12 6.96 0.05 0.68 +hospitalier hospitalier adj m s 1.87 2.91 1.38 1.22 +hospitaliers hospitalier adj m p 1.87 2.91 0.26 0.74 +hospitalisation hospitalisation nom f s 0.85 0.27 0.71 0.27 +hospitalisations hospitalisation nom f p 0.85 0.27 0.14 0.00 +hospitaliser hospitaliser ver 5.19 2.36 1.46 0.54 inf; +hospitaliserons hospitaliser ver 5.19 2.36 0.01 0.00 ind:fut:1p; +hospitalisé hospitaliser ver m s 5.19 2.36 1.95 1.01 par:pas; +hospitalisée hospitaliser ver f s 5.19 2.36 1.42 0.61 par:pas; +hospitalisées hospitaliser ver f p 5.19 2.36 0.03 0.00 par:pas; +hospitalisés hospitaliser ver m p 5.19 2.36 0.32 0.20 par:pas; +hospitalière hospitalier adj f s 1.87 2.91 0.21 0.61 +hospitalières hospitalier adj f p 1.87 2.91 0.02 0.34 +hospitalité hospitalité nom f s 6.72 3.85 6.72 3.85 +hospodar hospodar nom m s 0.00 0.54 0.00 0.27 +hospodars hospodar nom m p 0.00 0.54 0.00 0.27 +hostau hostau nom m s 0.00 0.20 0.00 0.20 +hostellerie hostellerie nom f s 0.10 1.22 0.10 1.08 +hostelleries hostellerie nom f p 0.10 1.22 0.00 0.14 +hostie hostie nom f s 2.31 3.85 1.74 3.45 +hosties hostie nom f p 2.31 3.85 0.57 0.41 +hostile hostile adj s 8.56 21.15 6.32 15.47 +hostilement hostilement adv 0.00 0.20 0.00 0.20 +hostiles hostile adj p 8.56 21.15 2.24 5.68 +hostilité hostilité nom f s 3.52 15.81 2.70 11.89 +hostilités hostilité nom f p 3.52 15.81 0.82 3.92 +hosto hosto nom m s 5.74 5.81 5.69 5.41 +hostos hosto nom m p 5.74 5.81 0.05 0.41 +hot_dog hot_dog nom m s 6.09 0.27 3.12 0.07 +hot_dog hot_dog nom m p 6.09 0.27 2.98 0.20 +hot_dog hot_dog nom m s 2.69 0.14 1.31 0.14 +hot_dog hot_dog nom m p 2.69 0.14 1.38 0.00 +hot hot adj 1.67 0.20 1.67 0.20 +hâta hâter ver 5.63 24.05 0.10 4.05 ind:pas:3s; +hâtai hâter ver 5.63 24.05 0.01 1.28 ind:pas:1s; +hâtaient hâter ver 5.63 24.05 0.02 1.69 ind:imp:3p; +hâtais hâter ver 5.63 24.05 0.01 0.47 ind:imp:1s; +hâtait hâter ver 5.63 24.05 0.14 2.09 ind:imp:3s; +hâtant hâter ver 5.63 24.05 0.01 2.64 par:pre; +hâte hâte nom f s 18.83 45.20 18.83 44.80 +hâtent hâter ver 5.63 24.05 0.32 0.34 ind:pre:3p; +hâter hâter ver 5.63 24.05 1.32 5.54 inf; +hâtera hâter ver 5.63 24.05 0.01 0.20 ind:fut:3s; +hâteraient hâter ver 5.63 24.05 0.00 0.07 cnd:pre:3p; +hâterait hâter ver 5.63 24.05 0.00 0.27 cnd:pre:3s; +hâtes hâter ver 5.63 24.05 0.01 0.00 ind:pre:2s; +hâtez hâter ver 5.63 24.05 0.93 0.14 imp:pre:2p;ind:pre:2p; +hâtif hâtif adj m s 2.43 5.61 0.65 1.76 +hâtifs hâtif adj m p 2.43 5.61 0.02 1.15 +hâtions hâter ver 5.63 24.05 0.00 0.14 ind:imp:1p; +hâtive hâtif adj f s 2.43 5.61 0.61 1.76 +hâtivement hâtivement adv 0.12 5.54 0.12 5.54 +hâtives hâtif adj f p 2.43 5.61 1.15 0.95 +hotline hotline nom f s 0.52 0.00 0.52 0.00 +hâtâmes hâter ver 5.63 24.05 0.00 0.14 ind:pas:1p; +hâtons hâter ver 5.63 24.05 0.37 0.14 imp:pre:1p;ind:pre:1p; +hâtât hâter ver 5.63 24.05 0.00 0.07 sub:imp:3s; +hotte hotte nom f s 1.23 2.57 1.00 2.43 +hotter hotter ver 0.01 0.00 0.01 0.00 inf; +hottes hotte nom f p 1.23 2.57 0.24 0.14 +hâtèrent hâter ver 5.63 24.05 0.00 0.61 ind:pas:3p; +hottée hottée nom f s 0.00 0.07 0.00 0.07 +hâté hâter ver m s 5.63 24.05 0.26 1.01 par:pas; +hotu hotu nom m s 0.00 0.81 0.00 0.41 +hâtée hâter ver f s 5.63 24.05 0.01 0.20 par:pas; +hâtés hâter ver m p 5.63 24.05 0.00 0.14 par:pas; +hotus hotu nom m p 0.00 0.81 0.00 0.41 +hou hou ono 8.65 5.27 8.65 5.27 +houa houer ver 0.07 0.00 0.07 0.00 ind:pas:3s; +houari houari nom m s 0.00 0.07 0.00 0.07 +houblon houblon nom m s 0.31 0.61 0.31 0.54 +houblonnés houblonner ver m p 0.00 0.07 0.00 0.07 par:pas; +houblons houblon nom m p 0.31 0.61 0.00 0.07 +houe houe nom f s 0.37 0.34 0.37 0.34 +houhou houhou ono 0.46 0.27 0.46 0.27 +houille houille nom f s 0.00 0.88 0.00 0.81 +houiller houiller adj m s 0.01 0.20 0.00 0.14 +houilles houille nom f p 0.00 0.88 0.00 0.07 +houillère houiller nom f s 0.05 0.00 0.05 0.00 +houillères houillère nom f p 0.00 0.41 0.00 0.41 +houle houle nom f s 0.46 10.07 0.44 8.85 +houler houler ver 0.00 0.07 0.00 0.07 inf; +houles houle nom f p 0.46 10.07 0.02 1.22 +houlette houlette nom f s 0.82 0.81 0.82 0.81 +houleuse houleux adj f s 0.79 2.16 0.66 1.35 +houleuses houleux adj f p 0.79 2.16 0.01 0.27 +houleux houleux adj m 0.79 2.16 0.11 0.54 +houligan houligan nom m s 0.00 0.07 0.00 0.07 +houliganisme houliganisme nom m s 0.00 0.20 0.00 0.20 +houlà houlà ono 0.13 0.61 0.13 0.61 +houlque houlque nom f s 0.00 0.07 0.00 0.07 +houp houp ono 0.07 0.14 0.07 0.14 +houppe houppe nom f s 0.02 0.68 0.01 0.54 +houppelande houppelande nom f s 0.03 2.09 0.03 1.96 +houppelandes houppelande nom f p 0.03 2.09 0.00 0.14 +houppes houppe nom f p 0.02 0.68 0.01 0.14 +houppette houppette nom f s 0.02 2.43 0.02 2.09 +houppettes houppette nom f p 0.02 2.43 0.00 0.34 +hourdis hourdis nom m 0.00 0.07 0.00 0.07 +hourds hourd nom m p 0.00 0.20 0.00 0.20 +houri houri nom f s 0.10 0.61 0.10 0.41 +houris houri nom f p 0.10 0.61 0.00 0.20 +hourra hourra ono 5.18 0.81 5.18 0.81 +hourrah hourrah nom m s 0.77 0.41 0.77 0.34 +hourrahs hourrah nom m p 0.77 0.41 0.00 0.07 +hourras hourra nom_sup m p 2.38 1.42 0.27 0.68 +hourvari hourvari nom m s 0.27 0.54 0.27 0.41 +hourvaris hourvari nom m p 0.27 0.54 0.00 0.14 +housards housard nom m p 0.00 0.14 0.00 0.14 +house_boat house_boat nom m s 0.04 0.07 0.02 0.00 +house_boat house_boat nom m p 0.04 0.07 0.01 0.07 +house_music house_music nom f s 0.01 0.00 0.01 0.00 +house house nom f s 4.74 0.27 4.74 0.27 +houseau houseau nom m s 0.10 1.08 0.00 0.20 +houseaux houseau nom m p 0.10 1.08 0.10 0.88 +houspilla houspiller ver 0.41 2.77 0.00 0.07 ind:pas:3s; +houspillaient houspiller ver 0.41 2.77 0.00 0.14 ind:imp:3p; +houspillait houspiller ver 0.41 2.77 0.01 0.47 ind:imp:3s; +houspillant houspiller ver 0.41 2.77 0.00 0.34 par:pre; +houspille houspiller ver 0.41 2.77 0.16 0.27 ind:pre:1s;ind:pre:3s; +houspillent houspiller ver 0.41 2.77 0.00 0.07 ind:pre:3p; +houspiller houspiller ver 0.41 2.77 0.22 0.81 inf; +houspillâmes houspiller ver 0.41 2.77 0.00 0.07 ind:pas:1p; +houspillèrent houspiller ver 0.41 2.77 0.00 0.07 ind:pas:3p; +houspillé houspiller ver m s 0.41 2.77 0.02 0.14 par:pas; +houspillée houspiller ver f s 0.41 2.77 0.00 0.20 par:pas; +houspillées houspiller ver f p 0.41 2.77 0.00 0.07 par:pas; +houspillés houspiller ver m p 0.41 2.77 0.00 0.07 par:pas; +housse housse nom f s 0.83 5.68 0.35 3.11 +housses housse nom f p 0.83 5.68 0.49 2.57 +houssés housser ver m p 0.00 0.07 0.00 0.07 par:pas; +houx houx nom m 0.07 1.28 0.07 1.28 +hâve hâve adj s 0.01 1.28 0.01 0.61 +hovercraft hovercraft nom m s 0.01 0.00 0.01 0.00 +hâves hâve adj p 0.01 1.28 0.00 0.68 +hoyau hoyau nom m s 0.00 0.14 0.00 0.14 +hèle héler ver 0.35 6.49 0.05 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hère hère nom m s 0.17 0.74 0.04 0.41 +hères hère nom m p 0.17 0.74 0.13 0.34 +hé hé ono 288.29 30.00 288.29 30.00 +huître huître nom f s 4.00 7.64 1.41 2.70 +huîtres huître nom f p 4.00 7.64 2.59 4.93 +huîtrier huîtrier nom m s 0.01 0.07 0.01 0.00 +huîtriers huîtrier nom m p 0.01 0.07 0.00 0.07 +huîtrière huîtrière nom f s 0.00 0.07 0.00 0.07 +hua huer ver 1.24 2.30 0.09 0.00 ind:pas:3s; +huaient huer ver 1.24 2.30 0.01 0.00 ind:imp:3p; +huait huer ver 1.24 2.30 0.02 0.07 ind:imp:3s; +huant huer ver 1.24 2.30 0.03 0.07 par:pre; +huard huard nom m s 0.59 0.27 0.52 0.07 +huards huard nom m p 0.59 0.27 0.08 0.20 +huart huart nom m s 0.00 0.27 0.00 0.27 +héberge héberger ver 5.77 6.49 0.87 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hébergea héberger ver 5.77 6.49 0.00 0.20 ind:pas:3s; +hébergeai héberger ver 5.77 6.49 0.00 0.07 ind:pas:1s; +hébergeaient héberger ver 5.77 6.49 0.11 0.27 ind:imp:3p; +hébergeais héberger ver 5.77 6.49 0.01 0.14 ind:imp:1s;ind:imp:2s; +hébergeait héberger ver 5.77 6.49 0.02 0.41 ind:imp:3s; +hébergeant héberger ver 5.77 6.49 0.12 0.20 par:pre; +hébergement hébergement nom m s 0.68 0.68 0.68 0.68 +hébergent héberger ver 5.77 6.49 0.04 0.07 ind:pre:3p; +hébergeons héberger ver 5.77 6.49 0.12 0.00 imp:pre:1p;ind:pre:1p; +héberger héberger ver 5.77 6.49 2.80 2.70 inf; +hébergera héberger ver 5.77 6.49 0.19 0.07 ind:fut:3s; +hébergerait héberger ver 5.77 6.49 0.00 0.14 cnd:pre:3s; +hébergeras héberger ver 5.77 6.49 0.00 0.07 ind:fut:2s; +hébergez héberger ver 5.77 6.49 0.19 0.00 imp:pre:2p;ind:pre:2p; +hébergiez héberger ver 5.77 6.49 0.02 0.00 ind:imp:2p; +hébergions héberger ver 5.77 6.49 0.00 0.07 ind:imp:1p; +hébergé héberger ver m s 5.77 6.49 0.78 1.15 par:pas; +hébergée héberger ver f s 5.77 6.49 0.24 0.27 par:pas; +hébergées héberger ver f p 5.77 6.49 0.01 0.07 par:pas; +hébergés héberger ver m p 5.77 6.49 0.24 0.34 par:pas; +hébertisme hébertisme nom m s 0.00 0.27 0.00 0.27 +hublot hublot nom m s 2.61 7.77 1.77 4.66 +hublots hublot nom m p 2.61 7.77 0.84 3.11 +hébraïque hébraïque adj s 0.11 1.08 0.09 0.88 +hébraïquement hébraïquement adv 0.00 0.07 0.00 0.07 +hébraïques hébraïque adj p 0.11 1.08 0.02 0.20 +hébraïsant hébraïsant adj m s 0.00 0.07 0.00 0.07 +hébreu hébreu nom m s 1.67 2.97 1.67 2.97 +hébreux hébreux nom m p 0.40 0.07 0.40 0.07 +hébètent hébéter ver 0.35 2.03 0.00 0.07 ind:pre:3p; +hébéphrénique hébéphrénique adj f s 0.02 0.00 0.02 0.00 +hébéta hébéter ver 0.35 2.03 0.00 0.07 ind:pas:3s; +hébétait hébéter ver 0.35 2.03 0.00 0.07 ind:imp:3s; +hébétement hébétement nom m s 0.00 0.07 0.00 0.07 +hébété hébété adj m s 0.54 4.73 0.29 2.84 +hébétude hébétude nom f s 0.14 4.05 0.14 4.05 +hébétée hébété adj f s 0.54 4.73 0.23 0.95 +hébétées hébété adj f p 0.54 4.73 0.00 0.20 +hébétés hébéter ver m p 0.35 2.03 0.03 0.34 par:pas; +hécatombe hécatombe nom f s 0.20 1.69 0.20 1.28 +hécatombes hécatombe nom f p 0.20 1.69 0.00 0.41 +huche huche nom f s 0.19 0.47 0.19 0.34 +huches huche nom f p 0.19 0.47 0.00 0.14 +huchet huchet nom m s 0.00 0.27 0.00 0.27 +hédonisme hédonisme nom m s 0.05 0.20 0.05 0.20 +hédoniste hédoniste adj s 0.21 0.14 0.21 0.07 +hédonistes hédoniste adj m p 0.21 0.14 0.00 0.07 +hue hue ono 2.63 1.08 2.63 1.08 +huer huer ver 1.24 2.30 0.25 0.27 inf; +huerta huerta nom f s 0.53 0.95 0.53 0.95 +huez huer ver 1.24 2.30 0.02 0.14 imp:pre:2p;ind:pre:2p; +hugh hugh ono 1.38 0.27 1.38 0.27 +hégire hégire nom f s 0.38 0.27 0.38 0.27 +hugolien hugolien adj m s 0.00 0.14 0.00 0.07 +hugoliens hugolien adj m p 0.00 0.14 0.00 0.07 +huguenot huguenot nom m s 0.23 0.47 0.11 0.20 +huguenote huguenote nom f s 0.10 0.00 0.10 0.00 +huguenots huguenot nom m p 0.23 0.47 0.12 0.20 +hégélianisme hégélianisme nom m s 0.00 0.07 0.00 0.07 +hégélien hégélien adj m s 0.16 0.14 0.00 0.07 +hégélienne hégélien adj f s 0.16 0.14 0.16 0.00 +hégéliens hégélien adj m p 0.16 0.14 0.00 0.07 +hégémonie hégémonie nom f s 0.04 1.42 0.04 1.42 +hui hui nom s 2.36 0.47 2.36 0.47 +huilai huiler ver 0.59 1.76 0.00 0.07 ind:pas:1s; +huilait huiler ver 0.59 1.76 0.10 0.07 ind:imp:3s; +huile huile nom f s 22.68 38.18 20.23 36.22 +huilent huiler ver 0.59 1.76 0.00 0.07 ind:pre:3p; +huiler huiler ver 0.59 1.76 0.12 0.41 inf; +huilerai huiler ver 0.59 1.76 0.02 0.00 ind:fut:1s; +huiles huile nom f p 22.68 38.18 2.46 1.96 +huileuse huileux adj f s 0.37 4.26 0.09 1.89 +huileuses huileux adj f p 0.37 4.26 0.01 0.54 +huileux huileux adj m 0.37 4.26 0.27 1.82 +huilez huiler ver 0.59 1.76 0.05 0.00 imp:pre:2p; +huilier huilier nom m s 0.10 0.07 0.10 0.07 +huiliers huilier adj m p 0.01 0.07 0.00 0.07 +huilé huilé adj m s 0.57 3.24 0.21 1.15 +huilée huilé adj f s 0.57 3.24 0.21 1.08 +huilées huiler ver f p 0.59 1.76 0.05 0.07 par:pas; +huilés huilé adj m p 0.57 3.24 0.15 0.81 +huipil huipil nom m s 0.00 0.54 0.00 0.47 +huipils huipil nom m p 0.00 0.54 0.00 0.07 +huis huis nom m 0.48 1.82 0.48 1.82 +huisserie huisserie nom f s 0.04 0.34 0.04 0.14 +huisseries huisserie nom f p 0.04 0.34 0.00 0.20 +huissier huissier nom m s 2.84 5.95 2.06 3.72 +huissiers huissier nom m p 2.84 5.95 0.78 2.23 +huit_reflets huit_reflets nom m 0.00 0.27 0.00 0.27 +huit huit adj_num 58.47 102.50 58.47 102.50 +huitaine huitaine nom f s 0.20 1.01 0.20 1.01 +huitième huitième nom s 1.29 2.09 0.88 1.96 +huitièmes huitième nom p 1.29 2.09 0.41 0.14 +héla héler ver 0.35 6.49 0.01 1.69 ind:pas:3s; +hélai héler ver 0.35 6.49 0.00 0.14 ind:pas:1s; +hélaient héler ver 0.35 6.49 0.00 0.47 ind:imp:3p; +hélait héler ver 0.35 6.49 0.01 0.14 ind:imp:3s; +hélant héler ver 0.35 6.49 0.00 0.47 par:pre; +hélas hélas ono 24.21 34.73 24.21 34.73 +héler héler ver 0.35 6.49 0.11 1.08 inf; +hélez héler ver 0.35 6.49 0.01 0.00 imp:pre:2p; +hélianthes hélianthe nom m p 0.00 0.34 0.00 0.34 +hélice hélice nom f s 2.83 3.85 1.90 2.36 +hélices hélice nom f p 2.83 3.85 0.93 1.49 +hélico hélico adv 0.01 0.00 0.01 0.00 +hélicoïdal hélicoïdal adj m s 0.01 0.07 0.00 0.07 +hélicoïdale hélicoïdal adj f s 0.01 0.07 0.01 0.00 +hélicoptère hélicoptère nom m s 13.96 3.72 10.98 2.43 +hélicoptères hélicoptère nom m p 13.96 3.72 2.98 1.28 +hélio hélio nom f s 0.00 0.07 0.00 0.07 +héliographe héliographe nom m s 0.01 0.00 0.01 0.00 +héliogravure héliogravure nom f s 0.00 0.07 0.00 0.07 +héliophanie héliophanie nom f s 0.00 0.07 0.00 0.07 +héliotrope héliotrope nom m s 0.07 0.41 0.04 0.27 +héliotropes héliotrope nom m p 0.07 0.41 0.03 0.14 +héliport héliport nom m s 0.12 0.14 0.12 0.14 +héliporter héliporter ver 0.08 0.07 0.01 0.07 inf; +héliporté héliporter ver m s 0.08 0.07 0.05 0.00 par:pas; +héliportée héliporté adj f s 0.06 0.14 0.05 0.00 +héliportés héliporter ver m p 0.08 0.07 0.01 0.00 par:pas; +hélitreuiller hélitreuiller ver 0.01 0.00 0.01 0.00 inf; +hélium hélium nom m s 0.99 0.47 0.99 0.47 +hélix hélix nom m 0.07 0.07 0.07 0.07 +hulotte hulotte nom f s 0.10 0.61 0.10 0.34 +hulottes hulotte nom f p 0.10 0.61 0.00 0.27 +hélèrent héler ver 0.35 6.49 0.00 0.20 ind:pas:3p; +hélé héler ver m s 0.35 6.49 0.11 0.68 par:pas; +hulula hululer ver 0.18 1.35 0.00 0.20 ind:pas:3s; +hululaient hululer ver 0.18 1.35 0.00 0.14 ind:imp:3p; +hululait hululer ver 0.18 1.35 0.00 0.34 ind:imp:3s; +hululant hululer ver 0.18 1.35 0.00 0.27 par:pre; +hulule hululer ver 0.18 1.35 0.14 0.14 ind:pre:1s;ind:pre:3s; +hululement hululement nom m s 0.27 1.82 0.00 1.22 +hululements hululement nom m p 0.27 1.82 0.27 0.61 +hululent hululer ver 0.18 1.35 0.02 0.07 ind:pre:3p; +hululer hululer ver 0.18 1.35 0.01 0.14 inf; +hululée hululer ver f s 0.18 1.35 0.00 0.07 par:pas; +hélés héler ver m p 0.35 6.49 0.00 0.07 par:pas; +hum hum ono 33.59 5.68 33.59 5.68 +huma humer ver 0.73 9.53 0.03 1.49 ind:pas:3s; +humai humer ver 0.73 9.53 0.00 0.07 ind:pas:1s; +humaient humer ver 0.73 9.53 0.00 0.34 ind:imp:3p; +humain_robot humain_robot adj m s 0.03 0.00 0.03 0.00 +humain humain adj m s 107.10 111.55 50.53 35.81 +humaine humain adj f s 107.10 111.55 32.37 47.43 +humainement humainement adv 0.86 0.95 0.86 0.95 +humaines humain adj f p 107.10 111.55 6.36 14.93 +humains humain nom m p 30.00 18.31 18.15 10.00 +humais humer ver 0.73 9.53 0.01 0.07 ind:imp:1s; +humait humer ver 0.73 9.53 0.00 1.28 ind:imp:3s; +humanisait humaniser ver 0.27 1.35 0.00 0.27 ind:imp:3s; +humanisant humaniser ver 0.27 1.35 0.01 0.07 par:pre; +humanisation humanisation nom f s 0.00 0.14 0.00 0.14 +humanise humaniser ver 0.27 1.35 0.03 0.07 imp:pre:2s;ind:pre:3s; +humanisent humaniser ver 0.27 1.35 0.00 0.07 ind:pre:3p; +humaniser humaniser ver 0.27 1.35 0.09 0.41 inf; +humanisme humanisme nom m s 0.41 2.30 0.41 2.30 +humaniste humaniste adj s 0.72 0.68 0.72 0.54 +humanistes humaniste nom p 0.45 1.08 0.01 0.47 +humanisé humaniser ver m s 0.27 1.35 0.00 0.20 par:pas; +humanisée humaniser ver f s 0.27 1.35 0.14 0.07 par:pas; +humanisées humaniser ver f p 0.27 1.35 0.00 0.14 par:pas; +humanisés humaniser ver m p 0.27 1.35 0.01 0.07 par:pas; +humanitaire humanitaire adj s 2.02 1.55 1.52 1.22 +humanitaires humanitaire adj p 2.02 1.55 0.50 0.34 +humanitarisme humanitarisme nom m s 0.11 0.07 0.11 0.07 +humanité humanité nom f s 23.31 24.32 23.15 23.85 +humanités humanité nom f p 23.31 24.32 0.16 0.47 +humano humano adv 0.16 0.00 0.16 0.00 +humanoïde humanoïde adj s 0.46 0.00 0.42 0.00 +humanoïdes humanoïde nom p 0.21 0.41 0.11 0.27 +humant humer ver 0.73 9.53 0.11 1.69 par:pre; +hématie hématie nom f s 0.12 0.07 0.00 0.07 +hématies hématie nom f p 0.12 0.07 0.12 0.00 +hématine hématine nom f s 0.05 0.00 0.05 0.00 +hématite hématite nom f s 0.00 0.07 0.00 0.07 +hématocrite hématocrite nom m s 0.60 0.00 0.60 0.00 +hématocèle hématocèle nom f s 0.00 0.07 0.00 0.07 +hématologie hématologie nom f s 0.10 0.07 0.10 0.07 +hématologique hématologique adj f s 0.01 0.00 0.01 0.00 +hématologue hématologue nom s 0.14 0.07 0.14 0.07 +hématome hématome nom m s 1.53 0.61 1.08 0.41 +hématomes hématome nom m p 1.53 0.61 0.45 0.20 +hématopoïèse hématopoïèse nom f s 0.00 0.07 0.00 0.07 +hématose hématose nom f s 0.00 0.07 0.00 0.07 +hématurie hématurie nom f s 0.02 0.00 0.02 0.00 +humble humble adj s 12.43 18.45 9.66 12.84 +humblement humblement adv 2.26 3.65 2.26 3.65 +humbles humble adj p 12.43 18.45 2.77 5.61 +humbug humbug adj s 0.01 0.00 0.01 0.00 +hume humer ver 0.73 9.53 0.13 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humecta humecter ver 0.35 4.53 0.14 0.27 ind:pas:3s; +humectage humectage nom m s 0.01 0.00 0.01 0.00 +humectai humecter ver 0.35 4.53 0.00 0.14 ind:pas:1s; +humectaient humecter ver 0.35 4.53 0.00 0.07 ind:imp:3p; +humectais humecter ver 0.35 4.53 0.00 0.07 ind:imp:1s; +humectait humecter ver 0.35 4.53 0.00 0.41 ind:imp:3s; +humectant humectant adj m s 0.05 0.00 0.05 0.00 +humecte humecter ver 0.35 4.53 0.00 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humectent humecter ver 0.35 4.53 0.00 0.07 ind:pre:3p; +humecter humecter ver 0.35 4.53 0.16 1.01 inf; +humecté humecter ver m s 0.35 4.53 0.00 0.54 par:pas; +humectée humecter ver f s 0.35 4.53 0.03 0.41 par:pas; +humectées humecter ver f p 0.35 4.53 0.01 0.20 par:pas; +humectés humecter ver m p 0.35 4.53 0.01 0.34 par:pas; +hument humer ver 0.73 9.53 0.11 0.14 ind:pre:3p; +humer humer ver 0.73 9.53 0.28 1.76 inf; +humeras humer ver 0.73 9.53 0.00 0.07 ind:fut:2s; +humeur humeur nom f s 31.26 58.04 29.80 52.57 +humeurs humeur nom f p 31.26 58.04 1.46 5.47 +humez humer ver 0.73 9.53 0.04 0.07 imp:pre:2p; +hémi hémi adv 0.00 0.07 0.00 0.07 +hémicycle hémicycle nom m s 0.03 0.34 0.03 0.34 +humide humide adj s 11.23 53.31 8.24 38.24 +humidement humidement adv 0.00 0.07 0.00 0.07 +humides humide adj p 11.23 53.31 2.98 15.07 +humidifia humidifier ver 0.31 0.47 0.00 0.07 ind:pas:3s; +humidifiant humidifier ver 0.31 0.47 0.15 0.07 par:pre; +humidificateur humidificateur nom m s 0.20 0.07 0.20 0.07 +humidification humidification nom f s 0.03 0.00 0.03 0.00 +humidifient humidifier ver 0.31 0.47 0.04 0.07 ind:pre:3p; +humidifier humidifier ver 0.31 0.47 0.06 0.14 inf; +humidifié humidifier ver m s 0.31 0.47 0.06 0.07 par:pas; +humidifiés humidifier ver m p 0.31 0.47 0.00 0.07 par:pas; +humidité humidité nom f s 4.09 14.86 4.09 14.86 +humilia humilier ver 16.01 14.26 0.00 0.07 ind:pas:3s; +humiliaient humilier ver 16.01 14.26 0.00 0.20 ind:imp:3p; +humiliais humilier ver 16.01 14.26 0.02 0.00 ind:imp:2s; +humiliait humilier ver 16.01 14.26 0.05 0.95 ind:imp:3s; +humiliant humiliant adj m s 5.08 3.78 3.35 1.89 +humiliante humiliant adj f s 5.08 3.78 0.73 0.88 +humiliantes humiliant adj f p 5.08 3.78 0.56 0.34 +humiliants humiliant adj m p 5.08 3.78 0.45 0.68 +humiliassent humilier ver 16.01 14.26 0.00 0.07 sub:imp:3p; +humiliation humiliation nom f s 7.60 13.65 6.72 10.68 +humiliations humiliation nom f p 7.60 13.65 0.89 2.97 +humilie humilier ver 16.01 14.26 2.15 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humilient humilier ver 16.01 14.26 0.15 0.14 ind:pre:3p; +humilier humilier ver 16.01 14.26 5.68 4.32 inf;; +humiliera humilier ver 16.01 14.26 0.05 0.00 ind:fut:3s; +humilierai humilier ver 16.01 14.26 0.04 0.00 ind:fut:1s; +humilieraient humilier ver 16.01 14.26 0.00 0.14 cnd:pre:3p; +humilierais humilier ver 16.01 14.26 0.01 0.00 cnd:pre:1s; +humilierait humilier ver 16.01 14.26 0.01 0.14 cnd:pre:3s; +humilies humilier ver 16.01 14.26 0.62 0.27 ind:pre:2s; +humiliez humilier ver 16.01 14.26 0.14 0.27 imp:pre:2p;ind:pre:2p; +humilité humilité nom f s 4.24 12.09 4.24 11.96 +humilités humilité nom f p 4.24 12.09 0.00 0.14 +humilié humilier ver m s 16.01 14.26 3.65 3.18 par:pas; +humiliée humilier ver f s 16.01 14.26 1.93 1.62 par:pas; +humiliées humilié adj f p 2.45 4.32 0.40 0.07 +humiliés humilier ver m p 16.01 14.26 1.12 0.88 par:pas; +humions humer ver 0.73 9.53 0.00 0.07 ind:imp:1p; +hémiplégie hémiplégie nom f s 0.20 0.41 0.20 0.41 +hémiplégique hémiplégique adj s 0.01 0.07 0.01 0.07 +hémiptère hémiptère nom m s 0.00 0.07 0.00 0.07 +hémisphère hémisphère nom m s 1.38 1.76 0.96 0.88 +hémisphères hémisphère nom m p 1.38 1.76 0.41 0.88 +hémisphérique hémisphérique adj s 0.01 0.41 0.01 0.34 +hémisphériques hémisphérique adj m p 0.01 0.41 0.00 0.07 +hémistiche hémistiche nom m s 0.01 0.20 0.00 0.07 +hémistiches hémistiche nom m p 0.01 0.20 0.01 0.14 +hémièdres hémièdre adj f p 0.00 0.07 0.00 0.07 +hémoculture hémoculture nom f s 0.17 0.00 0.09 0.00 +hémocultures hémoculture nom f p 0.17 0.00 0.09 0.00 +hémodialyse hémodialyse nom f s 0.04 0.00 0.04 0.00 +hémodynamique hémodynamique nom f s 0.05 0.00 0.05 0.00 +hémoglobine hémoglobine nom f s 1.15 0.34 1.14 0.27 +hémoglobines hémoglobine nom f p 1.15 0.34 0.01 0.07 +hémogramme hémogramme nom m s 0.12 0.00 0.12 0.00 +hémolyse hémolyse nom f s 0.07 0.00 0.07 0.00 +hémolytique hémolytique adj f s 0.12 0.00 0.12 0.00 +humons humer ver 0.73 9.53 0.00 0.07 ind:pre:1p; +hémophile hémophile adj m s 0.10 0.07 0.07 0.07 +hémophiles hémophile adj m p 0.10 0.07 0.03 0.00 +hémophilie hémophilie nom f s 0.14 0.07 0.14 0.07 +hémoptysie hémoptysie nom f s 0.01 0.68 0.00 0.34 +hémoptysies hémoptysie nom f p 0.01 0.68 0.01 0.34 +humoral humoral adj m s 0.00 0.07 0.00 0.07 +humoriste humoriste adj s 0.33 0.20 0.33 0.14 +humoristes humoriste nom p 0.11 0.74 0.02 0.41 +humoristique humoristique adj s 0.30 1.22 0.20 0.61 +humoristiques humoristique adj p 0.30 1.22 0.10 0.61 +hémorragie hémorragie nom f s 9.35 3.11 8.39 2.43 +hémorragies hémorragie nom f p 9.35 3.11 0.96 0.68 +hémorragique hémorragique adj s 0.25 0.00 0.25 0.00 +hémorroïdaire hémorroïdaire adj s 0.01 0.00 0.01 0.00 +hémorroïdale hémorroïdal adj f s 0.01 0.00 0.01 0.00 +hémorroïde hémorroïde nom f s 1.69 0.41 0.23 0.00 +hémorroïdes hémorroïde nom f p 1.69 0.41 1.46 0.41 +hémostase hémostase nom f s 0.13 0.00 0.13 0.00 +hémostatique hémostatique adj s 0.14 0.07 0.14 0.07 +humour humour nom m s 17.22 16.76 17.22 16.76 +humèrent humer ver 0.73 9.53 0.00 0.07 ind:pas:3p; +humé humer ver m s 0.73 9.53 0.02 0.47 par:pas; +humée humer ver f s 0.73 9.53 0.00 0.07 par:pas; +humérale huméral adj f s 0.04 0.00 0.04 0.00 +humérus humérus nom m 0.22 0.34 0.22 0.34 +humés humer ver m p 0.73 9.53 0.00 0.07 par:pas; +humus humus nom m 0.32 5.74 0.32 5.74 +hun hun nom m s 0.16 0.68 0.11 0.47 +hune hune nom f s 0.06 0.41 0.06 0.34 +hunes hune nom f p 0.06 0.41 0.00 0.07 +hunier hunier nom m s 0.17 0.14 0.12 0.07 +huniers hunier nom m p 0.17 0.14 0.05 0.07 +huns hun nom m p 0.16 0.68 0.05 0.20 +hunter hunter nom m s 0.02 0.00 0.02 0.00 +héparine héparine nom f s 0.28 0.00 0.28 0.00 +hépatique hépatique adj s 0.50 0.41 0.32 0.27 +hépatiques hépatique adj p 0.50 0.41 0.18 0.14 +hépatite hépatite nom f s 2.12 0.74 2.04 0.74 +hépatites hépatite nom f p 2.12 0.74 0.08 0.00 +hépatomégalie hépatomégalie nom f s 0.01 0.00 0.01 0.00 +huppe huppe nom f s 0.06 0.34 0.06 0.34 +huppé huppé adj m s 0.45 2.09 0.17 0.68 +huppée huppé adj f s 0.45 2.09 0.10 0.61 +huppées huppé adj f p 0.45 2.09 0.05 0.27 +huppés huppé adj m p 0.45 2.09 0.13 0.54 +héraclitienne héraclitien adj f s 0.00 0.07 0.00 0.07 +héraclitéen héraclitéen adj m s 0.00 0.20 0.00 0.14 +héraclitéenne héraclitéen adj f s 0.00 0.20 0.00 0.07 +héraldique héraldique adj s 0.00 1.22 0.00 0.81 +héraldiques héraldique adj p 0.00 1.22 0.00 0.41 +héraut héraut nom m s 0.36 0.81 0.35 0.20 +hérauts héraut nom m p 0.36 0.81 0.01 0.61 +hure hure nom f s 0.11 2.36 0.11 0.34 +hures hure nom f p 0.11 2.36 0.00 2.03 +hérissa hérisser ver 0.64 13.99 0.10 0.14 ind:pas:3s; +hérissaient hérisser ver 0.64 13.99 0.00 0.74 ind:imp:3p; +hérissait hérisser ver 0.64 13.99 0.01 1.08 ind:imp:3s; +hérissant hérisser ver 0.64 13.99 0.00 0.27 par:pre; +hérisse hérisser ver 0.64 13.99 0.11 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hérissement hérissement nom m s 0.00 0.34 0.00 0.14 +hérissements hérissement nom m p 0.00 0.34 0.00 0.20 +hérissent hérisser ver 0.64 13.99 0.03 0.41 ind:pre:3p; +hérisser hérisser ver 0.64 13.99 0.03 0.41 inf; +hérisseraient hérisser ver 0.64 13.99 0.00 0.14 cnd:pre:3p; +hérisses hérisser ver 0.64 13.99 0.01 0.07 ind:pre:2s; +hérisson hérisson nom m s 0.75 2.57 0.69 1.76 +hérissons hérisson nom m p 0.75 2.57 0.06 0.81 +hérissât hérisser ver 0.64 13.99 0.00 0.07 sub:imp:3s; +hérissèrent hérisser ver 0.64 13.99 0.00 0.14 ind:pas:3p; +hérissé hérisser ver m s 0.64 13.99 0.14 3.38 par:pas; +hérissée hérissé adj f s 0.41 4.86 0.21 1.28 +hérissées hérissé adj f p 0.41 4.86 0.14 1.22 +hérissés hérisser ver m p 0.64 13.99 0.05 2.50 par:pas; +hérita hériter ver 11.93 12.84 0.18 0.34 ind:pas:3s; +héritage héritage nom m s 12.37 12.03 12.18 11.15 +héritages héritage nom m p 12.37 12.03 0.19 0.88 +héritai hériter ver 11.93 12.84 0.00 0.20 ind:pas:1s; +héritaient hériter ver 11.93 12.84 0.00 0.14 ind:imp:3p; +héritais hériter ver 11.93 12.84 0.11 0.14 ind:imp:1s;ind:imp:2s; +héritait hériter ver 11.93 12.84 0.03 0.20 ind:imp:3s; +hérite hériter ver 11.93 12.84 1.52 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +héritent hériter ver 11.93 12.84 0.21 0.00 ind:pre:3p; +hériter hériter ver 11.93 12.84 1.86 1.35 inf; +héritera hériter ver 11.93 12.84 0.38 0.14 ind:fut:3s; +hériterai hériter ver 11.93 12.84 0.05 0.07 ind:fut:1s; +hériteraient hériter ver 11.93 12.84 0.02 0.00 cnd:pre:3p; +hériterait hériter ver 11.93 12.84 0.07 0.14 cnd:pre:3s; +hériteras hériter ver 11.93 12.84 0.22 0.00 ind:fut:2s; +hériterez hériter ver 11.93 12.84 0.20 0.07 ind:fut:2p; +hériteront hériter ver 11.93 12.84 0.11 0.00 ind:fut:3p; +hérites hériter ver 11.93 12.84 0.34 0.14 ind:pre:2s; +héritez hériter ver 11.93 12.84 0.25 0.14 imp:pre:2p;ind:pre:2p; +héritier héritier nom m s 10.77 13.45 7.76 7.16 +héritiers héritier nom m p 10.77 13.45 1.39 3.18 +héritière héritier nom f s 10.77 13.45 1.62 2.70 +héritières héritière nom f p 0.05 0.00 0.05 0.00 +héritons hériter ver 11.93 12.84 0.11 0.00 ind:pre:1p; +hérité hériter ver m s 11.93 12.84 6.00 6.89 par:pas; +héritée hériter ver f s 11.93 12.84 0.10 1.42 par:pas; +héritées hériter ver f p 11.93 12.84 0.01 0.27 par:pas; +hérités hériter ver m p 11.93 12.84 0.15 0.61 par:pas; +hurla hurler ver 33.17 88.65 0.46 13.78 ind:pas:3s; +hurlai hurler ver 33.17 88.65 0.00 1.08 ind:pas:1s; +hurlaient hurler ver 33.17 88.65 0.64 3.38 ind:imp:3p; +hurlais hurler ver 33.17 88.65 0.69 0.88 ind:imp:1s;ind:imp:2s; +hurlait hurler ver 33.17 88.65 2.19 10.54 ind:imp:3s; +hurlant hurler ver 33.17 88.65 2.08 12.36 par:pre; +hurlante hurlant adj f s 0.69 7.50 0.14 2.03 +hurlantes hurlant adj f p 0.69 7.50 0.09 1.01 +hurlants hurlant adj m p 0.69 7.50 0.06 0.95 +hurle hurler ver 33.17 88.65 8.34 18.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hurlement hurlement nom m s 4.59 20.95 2.16 9.86 +hurlements hurlement nom m p 4.59 20.95 2.43 11.08 +hurlent hurler ver 33.17 88.65 2.52 2.36 ind:pre:3p; +hurler hurler ver 33.17 88.65 10.38 17.23 inf; +hurlera hurler ver 33.17 88.65 0.09 0.00 ind:fut:3s; +hurlerai hurler ver 33.17 88.65 0.08 0.20 ind:fut:1s; +hurleraient hurler ver 33.17 88.65 0.01 0.14 cnd:pre:3p; +hurlerais hurler ver 33.17 88.65 0.06 0.20 cnd:pre:1s; +hurlerait hurler ver 33.17 88.65 0.04 0.20 cnd:pre:3s; +hurlerez hurler ver 33.17 88.65 0.08 0.00 ind:fut:2p; +hurleront hurler ver 33.17 88.65 0.18 0.07 ind:fut:3p; +hurles hurler ver 33.17 88.65 0.69 0.07 ind:pre:2s; +hurleur hurleur nom m s 0.22 0.47 0.11 0.07 +hurleurs hurleur nom m p 0.22 0.47 0.12 0.41 +hurlez hurler ver 33.17 88.65 1.47 0.00 imp:pre:2p;ind:pre:2p; +hurlions hurler ver 33.17 88.65 0.14 0.14 ind:imp:1p; +hurlât hurler ver 33.17 88.65 0.00 0.07 sub:imp:3s; +hurlèrent hurler ver 33.17 88.65 0.00 1.01 ind:pas:3p; +hurlé hurler ver m s 33.17 88.65 3.06 6.15 par:pas; +hurluberlu hurluberlu nom m s 0.23 0.61 0.20 0.14 +hurluberlus hurluberlu nom m p 0.23 0.61 0.04 0.47 +hurlée hurler ver f s 33.17 88.65 0.00 0.14 par:pas; +hurlées hurler ver f p 33.17 88.65 0.00 0.34 par:pas; +hurlés hurler ver m p 33.17 88.65 0.00 0.07 par:pas; +héro héro nom f s 4.38 1.35 4.38 1.35 +héroïde héroïde nom f s 0.00 0.07 0.00 0.07 +héroïne héros nom f s 76.58 52.77 10.32 7.23 +héroïnes héros nom f p 76.58 52.77 0.10 1.89 +héroïnomane héroïnomane nom s 0.02 0.00 0.02 0.00 +héroïque héroïque adj s 4.73 11.28 3.31 7.57 +héroïquement héroïquement adv 0.14 0.74 0.14 0.74 +héroïques héroïque adj p 4.73 11.28 1.42 3.72 +héroïsme héroïsme nom m s 1.06 5.95 1.06 5.95 +héron héron nom m s 0.64 2.36 0.27 1.08 +huron huron adj m s 0.04 0.07 0.01 0.00 +huronne huron adj f s 0.04 0.07 0.03 0.07 +hérons héron nom m p 0.64 2.36 0.37 1.28 +héros héros nom m 76.58 52.77 66.17 43.65 +hurrah hurrah ono 0.17 0.61 0.17 0.61 +hurrahs hurrah nom m p 0.01 0.07 0.00 0.07 +hurricane hurricane nom m s 0.56 0.34 0.52 0.27 +hurricanes hurricane nom m p 0.56 0.34 0.05 0.07 +héréditaire héréditaire adj s 2.59 4.59 2.21 3.85 +héréditairement héréditairement adv 0.00 0.20 0.00 0.20 +héréditaires héréditaire adj p 2.59 4.59 0.38 0.74 +hérédité hérédité nom f s 0.71 3.99 0.71 3.99 +hérédo hérédo adv 0.00 0.07 0.00 0.07 +hérésiarque hérésiarque nom s 0.00 0.20 0.00 0.07 +hérésiarques hérésiarque nom p 0.00 0.20 0.00 0.14 +hérésie hérésie nom f s 1.72 7.91 1.52 7.16 +hérésies hérésie nom f p 1.72 7.91 0.20 0.74 +hérétique hérétique nom s 3.15 18.65 2.08 2.77 +hérétiques hérétique nom p 3.15 18.65 1.08 15.88 +hésita hésiter ver 30.06 122.43 0.30 36.15 ind:pas:3s; +hésitai hésiter ver 30.06 122.43 0.01 4.26 ind:pas:1s; +hésitaient hésiter ver 30.06 122.43 0.01 3.11 ind:imp:3p; +hésitais hésiter ver 30.06 122.43 0.33 3.38 ind:imp:1s;ind:imp:2s; +hésitait hésiter ver 30.06 122.43 1.01 15.07 ind:imp:3s; +hésitant hésiter ver 30.06 122.43 0.23 6.22 par:pre; +hésitante hésitant adj f s 0.56 12.09 0.32 5.88 +hésitantes hésitant adj f p 0.56 12.09 0.04 0.61 +hésitants hésitant adj m p 0.56 12.09 0.09 1.69 +hésitation hésitation nom f s 2.90 25.14 2.27 19.80 +hésitations hésitation nom f p 2.90 25.14 0.63 5.34 +hésite hésiter ver 30.06 122.43 8.21 18.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hésitent hésiter ver 30.06 122.43 0.47 2.30 ind:pre:3p; +hésiter hésiter ver 30.06 122.43 4.57 16.28 inf; +hésitera hésiter ver 30.06 122.43 0.20 0.34 ind:fut:3s; +hésiterai hésiter ver 30.06 122.43 0.92 0.20 ind:fut:1s; +hésiteraient hésiter ver 30.06 122.43 0.22 0.41 cnd:pre:3p; +hésiterais hésiter ver 30.06 122.43 0.72 0.61 cnd:pre:1s;cnd:pre:2s; +hésiterait hésiter ver 30.06 122.43 0.51 0.47 cnd:pre:3s; +hésiteras hésiter ver 30.06 122.43 0.16 0.00 ind:fut:2s; +hésiterez hésiter ver 30.06 122.43 0.04 0.07 ind:fut:2p; +hésiteriez hésiter ver 30.06 122.43 0.10 0.00 cnd:pre:2p; +hésiterions hésiter ver 30.06 122.43 0.00 0.07 cnd:pre:1p; +hésiterons hésiter ver 30.06 122.43 0.05 0.07 ind:fut:1p; +hésiteront hésiter ver 30.06 122.43 0.34 0.00 ind:fut:3p; +hésites hésiter ver 30.06 122.43 1.09 0.47 ind:pre:2s; +hésitez hésiter ver 30.06 122.43 6.28 1.89 imp:pre:2p;ind:pre:2p; +hésitiez hésiter ver 30.06 122.43 0.05 0.00 ind:imp:2p; +hésitions hésiter ver 30.06 122.43 0.00 0.20 ind:imp:1p; +hésitons hésiter ver 30.06 122.43 0.42 0.14 imp:pre:1p;ind:pre:1p; +hésitât hésiter ver 30.06 122.43 0.00 0.20 sub:imp:3s; +hésitèrent hésiter ver 30.06 122.43 0.00 0.95 ind:pas:3p; +hésité hésiter ver m s 30.06 122.43 3.83 11.01 par:pas; +huskies huskies nom m p 0.20 0.00 0.20 0.00 +husky husky nom m s 0.28 0.00 0.28 0.00 +hussard hussard nom m s 0.71 3.45 0.17 1.42 +hussarde hussard nom f s 0.71 3.45 0.01 0.27 +hussards hussard nom m p 0.71 3.45 0.53 1.76 +husseinites husseinite nom p 0.00 0.14 0.00 0.14 +hussite hussite nom m s 0.00 0.20 0.00 0.14 +hussites hussite nom m p 0.00 0.20 0.00 0.07 +hétaïre hétaïre nom f s 0.00 0.27 0.00 0.14 +hétaïres hétaïre nom f p 0.00 0.27 0.00 0.14 +huèrent huer ver 1.24 2.30 0.00 0.07 ind:pas:3p; +hêtraie hêtraie nom f s 0.00 0.68 0.00 0.54 +hêtraies hêtraie nom f p 0.00 0.68 0.00 0.14 +hêtre hêtre nom m s 0.65 10.20 0.18 3.38 +hêtres hêtre nom m p 0.65 10.20 0.47 6.82 +hutte hutte nom f s 3.90 7.84 3.25 4.93 +hutter hutter ver 0.77 0.00 0.77 0.00 inf; +huttes hutte nom f p 3.90 7.84 0.65 2.91 +hétéro hétéro adj s 3.91 0.74 3.16 0.61 +hétérochromie hétérochromie nom f s 0.03 0.00 0.03 0.00 +hétéroclite hétéroclite adj s 0.17 4.73 0.02 2.57 +hétéroclites hétéroclite adj p 0.17 4.73 0.16 2.16 +hétérodoxes hétérodoxe nom p 0.01 0.14 0.01 0.14 +hétérodoxie hétérodoxie nom f s 0.00 0.07 0.00 0.07 +hétérogène hétérogène adj m s 0.14 0.34 0.14 0.07 +hétérogènes hétérogène adj p 0.14 0.34 0.00 0.27 +hétérogénéité hétérogénéité nom f s 0.00 0.14 0.00 0.14 +hétéroptère hétéroptère nom m s 0.00 0.07 0.00 0.07 +hétéros hétéro nom p 3.50 0.34 1.87 0.00 +hétérosexualité hétérosexualité nom f s 0.08 0.81 0.08 0.81 +hétérosexuel hétérosexuel adj m s 0.97 3.58 0.60 1.49 +hétérosexuelle hétérosexuel adj f s 0.97 3.58 0.13 0.88 +hétérosexuelles hétérosexuel adj f p 0.97 3.58 0.07 0.07 +hétérosexuels hétérosexuel adj m p 0.97 3.58 0.17 1.15 +hétérozygote hétérozygote adj s 0.01 0.07 0.01 0.00 +hétérozygotes hétérozygote adj p 0.01 0.07 0.00 0.07 +hué huer ver m s 1.24 2.30 0.05 0.34 par:pas; +huée huer ver f s 1.24 2.30 0.02 0.00 par:pas; +huées huée nom f p 0.64 1.49 0.64 1.42 +hués huer ver m p 1.24 2.30 0.02 0.14 par:pas; +hévéa hévéa nom m s 0.23 0.20 0.01 0.14 +hévéas hévéa nom m p 0.23 0.20 0.22 0.07 +hyacinthe hyacinthe nom f s 0.04 0.07 0.04 0.07 +hyades hyade nom f p 0.10 0.07 0.10 0.07 +hybridation hybridation nom f s 0.05 0.00 0.05 0.00 +hybride hybride nom m s 1.97 0.41 1.20 0.27 +hybrides hybride nom m p 1.97 0.41 0.77 0.14 +hybridé hybrider ver m s 0.01 0.00 0.01 0.00 par:pas; +hydatique hydatique adj s 0.01 0.00 0.01 0.00 +hydne hydne nom m s 0.00 0.07 0.00 0.07 +hydratant hydratant adj m s 0.38 0.27 0.04 0.07 +hydratante hydratant adj f s 0.38 0.27 0.26 0.20 +hydratantes hydratant adj f p 0.38 0.27 0.07 0.00 +hydratants hydratant adj m p 0.38 0.27 0.01 0.00 +hydratation hydratation nom f s 0.13 0.00 0.13 0.00 +hydrate hydrate nom m s 0.42 0.00 0.18 0.00 +hydrater hydrater ver 0.58 0.00 0.12 0.00 inf; +hydrates hydrate nom m p 0.42 0.00 0.25 0.00 +hydratez hydrater ver 0.58 0.00 0.15 0.00 imp:pre:2p; +hydraté hydrater ver m s 0.58 0.00 0.17 0.00 par:pas; +hydratée hydrater ver f s 0.58 0.00 0.07 0.00 par:pas; +hydraulicien hydraulicien nom m s 0.01 0.00 0.01 0.00 +hydraulique hydraulique adj s 1.41 1.15 1.15 1.01 +hydrauliques hydraulique adj p 1.41 1.15 0.26 0.14 +hydravion hydravion nom m s 0.47 0.61 0.43 0.27 +hydravions hydravion nom m p 0.47 0.61 0.04 0.34 +hydre hydre nom f s 0.17 0.34 0.17 0.34 +hydrique hydrique adj s 0.07 0.00 0.07 0.00 +hydro_électrique hydro_électrique adj s 0.00 0.07 0.00 0.07 +hydro hydro adv 0.17 0.07 0.17 0.07 +hydrocarbure hydrocarbure nom m s 0.50 0.34 0.11 0.07 +hydrocarbures hydrocarbure nom m p 0.50 0.34 0.39 0.27 +hydrochlorique hydrochlorique adj m s 0.09 0.00 0.09 0.00 +hydrocortisone hydrocortisone nom f s 0.03 0.00 0.03 0.00 +hydrocèle hydrocèle nom f s 0.00 0.07 0.00 0.07 +hydrocéphale hydrocéphale adj s 0.22 0.14 0.12 0.07 +hydrocéphales hydrocéphale adj m p 0.22 0.14 0.10 0.07 +hydrocéphalie hydrocéphalie nom f s 0.01 0.00 0.01 0.00 +hydrocution hydrocution nom f s 0.00 0.07 0.00 0.07 +hydrodynamique hydrodynamique adj f s 0.01 0.00 0.01 0.00 +hydrofoil hydrofoil nom m s 0.01 0.00 0.01 0.00 +hydroglisseur hydroglisseur nom m s 0.06 0.00 0.06 0.00 +hydrographe hydrographe adj m s 0.14 0.00 0.14 0.00 +hydrographie hydrographie nom f s 0.01 0.07 0.01 0.07 +hydrographique hydrographique adj m s 0.27 0.14 0.27 0.07 +hydrographiques hydrographique adj p 0.27 0.14 0.00 0.07 +hydrogène hydrogène nom m s 1.76 0.88 1.75 0.88 +hydrogènes hydrogène nom m p 1.76 0.88 0.01 0.00 +hydrogénisation hydrogénisation nom f s 0.00 0.14 0.00 0.14 +hydrogéné hydrogéné adj m s 0.04 0.00 0.02 0.00 +hydrogénée hydrogéné adj f s 0.04 0.00 0.02 0.00 +hydrolase hydrolase nom f s 0.10 0.00 0.10 0.00 +hydrologie hydrologie nom f s 0.02 0.00 0.02 0.00 +hydrolyse hydrolyse nom f s 0.03 0.00 0.03 0.00 +hydromel hydromel nom m s 0.52 0.20 0.52 0.20 +hydromètres hydromètre nom f p 0.00 0.07 0.00 0.07 +hydrophile hydrophile adj m s 0.10 1.01 0.10 0.88 +hydrophiles hydrophile adj f p 0.10 1.01 0.00 0.14 +hydrophobe hydrophobe adj f s 0.01 0.00 0.01 0.00 +hydrophobie hydrophobie nom f s 0.04 0.07 0.04 0.07 +hydrophone hydrophone nom m s 0.25 0.00 0.25 0.00 +hydrophyte hydrophyte nom f s 0.01 0.00 0.01 0.00 +hydropique hydropique adj f s 0.14 0.14 0.14 0.14 +hydropisie hydropisie nom f s 0.01 0.27 0.01 0.27 +hydropneumatique hydropneumatique adj m s 0.01 0.14 0.01 0.14 +hydroponique hydroponique adj s 0.28 0.00 0.20 0.00 +hydroponiques hydroponique adj p 0.28 0.00 0.09 0.00 +hydroptère hydroptère nom m s 0.02 0.00 0.02 0.00 +hydroquinone hydroquinone nom f s 0.00 0.14 0.00 0.14 +hydrostatique hydrostatique adj s 0.04 0.00 0.04 0.00 +hydrothérapie hydrothérapie nom f s 0.08 0.14 0.08 0.14 +hydroélectrique hydroélectrique adj f s 0.36 0.14 0.36 0.14 +hydrox hydrox nom m 0.01 0.00 0.01 0.00 +hydroxyde hydroxyde nom m s 0.13 0.00 0.13 0.00 +hygiaphone hygiaphone nom m s 0.00 0.20 0.00 0.20 +hygiène hygiène nom f s 4.42 6.35 4.40 6.28 +hygiènes hygiène nom f p 4.42 6.35 0.01 0.07 +hygiénique hygiénique adj s 1.74 4.12 1.48 2.84 +hygiéniquement hygiéniquement adv 0.01 0.07 0.01 0.07 +hygiéniques hygiénique adj p 1.74 4.12 0.26 1.28 +hygiéniste hygiéniste nom s 0.20 0.14 0.19 0.00 +hygiénistes hygiéniste nom p 0.20 0.14 0.01 0.14 +hygroma hygroma nom m s 0.03 0.00 0.03 0.00 +hygromètre hygromètre nom m s 0.01 0.14 0.00 0.07 +hygromètres hygromètre nom m p 0.01 0.14 0.01 0.07 +hygrométrie hygrométrie nom f s 0.14 0.07 0.14 0.07 +hygrométrique hygrométrique adj s 0.00 0.14 0.00 0.07 +hygrométriques hygrométrique adj f p 0.00 0.14 0.00 0.07 +hylémorphique hylémorphique adj f s 0.00 0.07 0.00 0.07 +hymen hymen nom m s 2.05 0.34 2.05 0.34 +hymne hymne nom s 6.25 8.72 5.37 6.69 +hymnes hymne nom p 6.25 8.72 0.88 2.03 +hyménoptère hyménoptère nom m s 0.02 0.27 0.00 0.07 +hyménoptères hyménoptère nom m p 0.02 0.27 0.02 0.20 +hyménée hyménée nom m s 0.34 0.07 0.34 0.00 +hyménées hyménée nom m p 0.34 0.07 0.00 0.07 +hyoïde hyoïde adj f s 0.16 0.00 0.16 0.00 +hypallage hypallage nom f s 0.00 0.07 0.00 0.07 +hyper hyper adv 6.66 0.95 6.66 0.95 +hyperacidité hyperacidité nom f s 0.01 0.00 0.01 0.00 +hyperactif hyperactif adj m s 0.20 0.00 0.13 0.00 +hyperactive hyperactif adj f s 0.20 0.00 0.08 0.00 +hyperactivité hyperactivité nom f s 0.17 0.00 0.17 0.00 +hyperbare hyperbare adj m s 0.07 0.00 0.07 0.00 +hyperbole hyperbole nom f s 0.12 0.34 0.09 0.20 +hyperboles hyperbole nom f p 0.12 0.34 0.04 0.14 +hyperbolique hyperbolique adj s 0.01 0.20 0.01 0.20 +hyperboliquement hyperboliquement adv 0.00 0.07 0.00 0.07 +hyperborée hyperborée nom f s 0.00 0.07 0.00 0.07 +hyperboréen hyperboréen adj m s 0.00 0.54 0.00 0.14 +hyperboréenne hyperboréen adj f s 0.00 0.54 0.00 0.27 +hyperboréens hyperboréen adj m p 0.00 0.54 0.00 0.14 +hypercalcémie hypercalcémie nom f s 0.07 0.00 0.07 0.00 +hypercholestérolémie hypercholestérolémie nom f s 0.03 0.00 0.03 0.00 +hypercoagulabilité hypercoagulabilité nom f s 0.03 0.00 0.03 0.00 +hyperespace hyperespace nom m s 1.89 0.00 1.89 0.00 +hyperesthésie hyperesthésie nom f s 0.00 0.07 0.00 0.07 +hyperglycémies hyperglycémie nom f p 0.00 0.07 0.00 0.07 +hyperkaliémie hyperkaliémie nom f s 0.03 0.00 0.03 0.00 +hyperlipidémie hyperlipidémie nom f s 0.00 0.07 0.00 0.07 +hyperlipémie hyperlipémie nom f s 0.01 0.00 0.01 0.00 +hypermarché hypermarché nom m s 0.15 0.27 0.12 0.14 +hypermarchés hypermarché nom m p 0.15 0.27 0.03 0.14 +hypermnésie hypermnésie nom f s 0.00 0.07 0.00 0.07 +hypernerveuse hypernerveux adj f s 0.00 0.27 0.00 0.07 +hypernerveux hypernerveux adj m 0.00 0.27 0.00 0.20 +hyperplan hyperplan nom m s 0.01 0.00 0.01 0.00 +hyperplasie hyperplasie nom f s 0.04 0.00 0.04 0.00 +hyperréactivité hyperréactivité nom f s 0.01 0.00 0.01 0.00 +hyperréalisme hyperréalisme nom m s 0.00 0.07 0.00 0.07 +hyperréaliste hyperréaliste adj s 0.00 0.14 0.00 0.07 +hyperréaliste hyperréaliste nom s 0.00 0.14 0.00 0.07 +hyperréalistes hyperréaliste adj p 0.00 0.14 0.00 0.07 +hyperréalistes hyperréaliste nom p 0.00 0.14 0.00 0.07 +hypersensibilité hypersensibilité nom f s 0.22 0.14 0.22 0.14 +hypersensible hypersensible adj s 0.31 0.34 0.27 0.07 +hypersensibles hypersensible adj m p 0.31 0.34 0.04 0.27 +hypersomnie hypersomnie nom f s 0.03 0.00 0.03 0.00 +hypersonique hypersonique adj m s 0.01 0.00 0.01 0.00 +hypersustentateur hypersustentateur nom m s 0.06 0.00 0.06 0.00 +hypertendu hypertendu adj m s 0.20 0.07 0.04 0.07 +hypertendue hypertendu adj f s 0.20 0.07 0.16 0.00 +hypertendus hypertendu nom m p 0.01 0.00 0.01 0.00 +hypertension hypertension nom f s 0.71 0.20 0.70 0.07 +hypertensions hypertension nom f p 0.71 0.20 0.01 0.14 +hyperthermie hyperthermie nom f s 0.15 0.00 0.15 0.00 +hyperthyroïdien hyperthyroïdien adj m s 0.00 0.07 0.00 0.07 +hypertonique hypertonique adj s 0.06 0.00 0.06 0.00 +hypertrichose hypertrichose nom f s 0.03 0.00 0.03 0.00 +hypertrophie hypertrophie nom f s 0.56 0.27 0.56 0.27 +hypertrophique hypertrophique adj f s 0.07 0.00 0.07 0.00 +hypertrophié hypertrophié adj m s 0.20 0.27 0.17 0.07 +hypertrophiée hypertrophier ver f s 0.16 0.20 0.01 0.07 par:pas; +hypertrophiés hypertrophié adj m p 0.20 0.27 0.03 0.14 +hyperémotive hyperémotif adj f s 0.01 0.00 0.01 0.00 +hyperémotivité hyperémotivité nom f s 0.00 0.07 0.00 0.07 +hyperventilation hyperventilation nom f s 0.23 0.00 0.23 0.00 +hypholomes hypholome nom m p 0.00 0.07 0.00 0.07 +hypnagogique hypnagogique adj s 0.04 0.07 0.04 0.00 +hypnagogiques hypnagogique adj f p 0.04 0.07 0.00 0.07 +hypnogène hypnogène adj s 0.00 0.54 0.00 0.54 +hypnogènes hypnogène nom m p 0.00 0.20 0.00 0.07 +hypnose hypnose nom f s 3.29 1.28 3.29 1.22 +hypnoses hypnose nom f p 3.29 1.28 0.00 0.07 +hypnotique hypnotique adj s 1.16 0.74 0.99 0.68 +hypnotiquement hypnotiquement adv 0.00 0.14 0.00 0.14 +hypnotiques hypnotique adj p 1.16 0.74 0.17 0.07 +hypnotisa hypnotiser ver 3.73 4.19 0.00 0.07 ind:pas:3s; +hypnotisaient hypnotiser ver 3.73 4.19 0.14 0.07 ind:imp:3p; +hypnotisais hypnotiser ver 3.73 4.19 0.00 0.07 ind:imp:1s; +hypnotisait hypnotiser ver 3.73 4.19 0.03 0.14 ind:imp:3s; +hypnotisant hypnotiser ver 3.73 4.19 0.09 0.41 par:pre; +hypnotise hypnotiser ver 3.73 4.19 0.47 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hypnotisent hypnotiser ver 3.73 4.19 0.04 0.14 ind:pre:3p; +hypnotiser hypnotiser ver 3.73 4.19 1.05 0.27 inf;; +hypnotiseur hypnotiseur nom m s 0.63 0.27 0.60 0.07 +hypnotiseurs hypnotiseur nom m p 0.63 0.27 0.02 0.20 +hypnotiseuse hypnotiseur nom f s 0.63 0.27 0.01 0.00 +hypnotisme hypnotisme nom m s 0.30 0.27 0.30 0.27 +hypnotisé hypnotiser ver m s 3.73 4.19 0.90 1.22 par:pas; +hypnotisée hypnotiser ver f s 3.73 4.19 0.71 0.47 par:pas; +hypnotisées hypnotiser ver f p 3.73 4.19 0.01 0.27 par:pas; +hypnotisés hypnotiser ver m p 3.73 4.19 0.31 0.54 par:pas; +hypo hypo adv 0.19 0.07 0.19 0.07 +hypoallergénique hypoallergénique adj f s 0.09 0.07 0.06 0.07 +hypoallergéniques hypoallergénique adj m p 0.09 0.07 0.02 0.00 +hypocalcémie hypocalcémie nom f s 0.03 0.00 0.03 0.00 +hypocapnie hypocapnie nom f s 0.01 0.00 0.01 0.00 +hypocauste hypocauste nom m s 0.01 0.07 0.01 0.00 +hypocaustes hypocauste nom m p 0.01 0.07 0.00 0.07 +hypocentre hypocentre nom m s 0.01 0.00 0.01 0.00 +hypochlorite hypochlorite nom m s 0.01 0.00 0.01 0.00 +hypochondriaque hypochondriaque adj s 0.12 0.00 0.12 0.00 +hypochondriaques hypochondriaque nom p 0.05 0.00 0.03 0.00 +hypocondre hypocondre nom m s 0.00 0.14 0.00 0.14 +hypocondriaque hypocondriaque adj m s 0.17 0.34 0.17 0.20 +hypocondriaques hypocondriaque nom p 0.17 0.14 0.07 0.07 +hypocondrie hypocondrie nom f s 0.04 0.27 0.04 0.27 +hypocras hypocras nom m 0.00 0.20 0.00 0.20 +hypocrisie hypocrisie nom f s 4.41 5.61 4.06 5.47 +hypocrisies hypocrisie nom f p 4.41 5.61 0.35 0.14 +hypocrite hypocrite nom s 5.41 2.91 3.66 1.96 +hypocritement hypocritement adv 0.14 1.69 0.14 1.69 +hypocrites hypocrite nom p 5.41 2.91 1.75 0.95 +hypoderme hypoderme nom m s 0.00 0.07 0.00 0.07 +hypodermique hypodermique adj s 0.40 0.14 0.36 0.14 +hypodermiques hypodermique adj f p 0.40 0.14 0.04 0.00 +hypoglycémie hypoglycémie nom f s 0.40 0.20 0.40 0.20 +hypoglycémique hypoglycémique adj m s 0.14 0.20 0.13 0.14 +hypoglycémiques hypoglycémique adj f p 0.14 0.20 0.01 0.07 +hypogonadisme hypogonadisme nom m s 0.03 0.00 0.03 0.00 +hypogée hypogée nom m s 0.00 0.81 0.00 0.47 +hypogées hypogée nom m p 0.00 0.81 0.00 0.34 +hypokhâgne hypokhâgne nom f s 0.00 1.28 0.00 1.22 +hypokhâgnes hypokhâgne nom f p 0.00 1.28 0.00 0.07 +hypomaniaques hypomaniaque nom p 0.01 0.00 0.01 0.00 +hyponatrémie hyponatrémie nom f s 0.05 0.00 0.05 0.00 +hyponomeutes hyponomeute nom m p 0.00 0.07 0.00 0.07 +hypophysaire hypophysaire adj s 0.01 0.07 0.01 0.07 +hypophyse hypophyse nom f s 0.07 0.14 0.07 0.07 +hypophyses hypophyse nom f p 0.07 0.14 0.00 0.07 +hypoplasie hypoplasie nom f s 0.01 0.00 0.01 0.00 +hypospadias hypospadias nom m 0.01 0.00 0.01 0.00 +hypostase hypostase nom f s 0.01 0.07 0.01 0.00 +hypostases hypostase nom f p 0.01 0.07 0.00 0.07 +hyposulfite hyposulfite nom m s 0.00 0.20 0.00 0.20 +hypotaupe hypotaupe nom f s 0.00 0.07 0.00 0.07 +hypotendu hypotendu nom m s 0.03 0.00 0.03 0.00 +hypotendue hypotendu adj f s 0.03 0.00 0.01 0.00 +hypotensif hypotensif adj m s 0.03 0.00 0.01 0.00 +hypotension hypotension nom f s 0.28 0.00 0.28 0.00 +hypotensive hypotensif adj f s 0.03 0.00 0.01 0.00 +hypothalamus hypothalamus nom m 0.29 0.20 0.29 0.20 +hypothermie hypothermie nom f s 0.80 0.00 0.80 0.00 +hypothermique hypothermique adj m s 0.04 0.00 0.04 0.00 +hypothèque hypothèque nom f s 2.78 1.96 2.48 0.88 +hypothèquent hypothéquer ver 1.43 1.42 0.00 0.07 ind:pre:3p; +hypothèques hypothèque nom f p 2.78 1.96 0.29 1.08 +hypothèse hypothèse nom f s 8.97 16.82 7.47 12.91 +hypothèses hypothèse nom f p 8.97 16.82 1.50 3.92 +hypothécaire hypothécaire adj s 0.09 0.07 0.05 0.00 +hypothécaires hypothécaire adj m p 0.09 0.07 0.04 0.07 +hypothéquait hypothéquer ver 1.43 1.42 0.01 0.14 ind:imp:3s; +hypothéquant hypothéquer ver 1.43 1.42 0.01 0.07 par:pre; +hypothéquer hypothéquer ver 1.43 1.42 0.57 0.34 inf; +hypothéqueraient hypothéquer ver 1.43 1.42 0.00 0.07 cnd:pre:3p; +hypothéquez hypothéquer ver 1.43 1.42 0.10 0.07 imp:pre:2p;ind:pre:2p; +hypothéquions hypothéquer ver 1.43 1.42 0.00 0.07 ind:imp:1p; +hypothéqué hypothéquer ver m s 1.43 1.42 0.23 0.14 par:pas; +hypothéquée hypothéquer ver f s 1.43 1.42 0.04 0.41 par:pas; +hypothétique hypothétique adj s 0.71 2.23 0.65 1.62 +hypothétiquement hypothétiquement adv 0.23 0.07 0.23 0.07 +hypothétiques hypothétique adj p 0.71 2.23 0.07 0.61 +hypothyroïdie hypothyroïdie nom f s 0.04 0.00 0.04 0.00 +hypotonie hypotonie nom f s 0.01 0.00 0.01 0.00 +hypoténuse hypoténuse nom f s 0.09 0.07 0.09 0.07 +hypoxie hypoxie nom f s 0.13 0.00 0.13 0.00 +hypoxique hypoxique adj s 0.16 0.00 0.16 0.00 +hysope hysope nom f s 0.01 0.14 0.01 0.07 +hysopes hysope nom f p 0.01 0.14 0.00 0.07 +hystérectomie hystérectomie nom f s 0.26 0.07 0.26 0.07 +hystérie hystérie nom f s 3.48 3.38 3.48 3.31 +hystéries hystérie nom f p 3.48 3.38 0.00 0.07 +hystérique hystérique adj s 6.61 5.20 5.60 3.45 +hystériquement hystériquement adv 0.03 0.27 0.03 0.27 +hystériques hystérique adj p 6.61 5.20 1.01 1.76 +hystéro hystéro adj f s 0.02 0.34 0.02 0.34 +hyène hyène nom f s 2.37 2.43 1.64 1.76 +hyènes hyène nom f p 2.37 2.43 0.73 0.68 +i i nom s 71.21 31.15 71.21 31.15 +i.e. i.e. nom m s 0.02 0.00 0.02 0.00 +iambe iambe nom m s 0.02 0.00 0.02 0.00 +iambique iambique adj m s 0.15 0.00 0.08 0.00 +iambiques iambique adj m p 0.15 0.00 0.07 0.00 +ibex ibex nom m 0.11 0.00 0.11 0.00 +ibis ibis nom m 0.00 0.81 0.00 0.81 +ibm ibm nom m s 0.00 0.07 0.00 0.07 +ibo ibo adj f s 0.02 0.07 0.02 0.07 +iboga iboga nom m s 0.04 0.00 0.04 0.00 +ibère ibère nom s 0.01 0.00 0.01 0.00 +ibères ibère adj m p 0.00 0.14 0.00 0.07 +ibérique ibérique adj s 0.11 0.61 0.11 0.47 +ibériques ibérique adj p 0.11 0.61 0.00 0.14 +icône icône nom f s 1.81 4.73 1.25 2.16 +icônes icône nom f p 1.81 4.73 0.55 2.57 +icarienne icarienne adj f s 0.04 0.00 0.04 0.00 +ice_cream ice_cream nom m s 0.02 0.34 0.00 0.27 +ice_cream ice_cream nom m p 0.02 0.34 0.00 0.07 +ice_cream ice_cream nom m s 0.02 0.34 0.02 0.00 +iceberg iceberg nom m s 1.88 1.42 1.50 1.08 +icebergs iceberg nom m p 1.88 1.42 0.39 0.34 +icelle icelle pro_ind f s 0.00 0.34 0.00 0.34 +icelles icelles pro_ind f p 0.00 0.20 0.00 0.20 +icelui icelui pro_ind m s 0.00 0.07 0.00 0.07 +ichtyologie ichtyologie nom f s 0.15 0.00 0.15 0.00 +ichtyologiste ichtyologiste nom s 0.02 0.00 0.02 0.00 +ici_bas ici_bas adv 3.58 2.97 3.58 2.97 +ici ici adv_sup 2411.21 483.58 2411.21 483.58 +icoglan icoglan nom m s 0.00 0.14 0.00 0.07 +icoglans icoglan nom m p 0.00 0.14 0.00 0.07 +iconoclaste iconoclaste nom s 0.11 0.47 0.10 0.27 +iconoclastes iconoclaste adj f p 0.02 0.41 0.02 0.07 +iconographe iconographe nom s 0.00 0.07 0.00 0.07 +iconographie iconographie nom f s 0.04 0.61 0.03 0.54 +iconographies iconographie nom f p 0.04 0.61 0.01 0.07 +iconographique iconographique adj f s 0.00 0.07 0.00 0.07 +iconostase iconostase nom f s 0.00 0.20 0.00 0.20 +icosaèdre icosaèdre nom m s 0.03 0.00 0.03 0.00 +ictère ictère nom m s 0.16 0.07 0.16 0.07 +ictérique ictérique adj s 0.01 0.00 0.01 0.00 +ictus ictus nom m 0.00 0.07 0.00 0.07 +ide ide nom m s 0.47 0.07 0.47 0.07 +idem idem adv 1.86 2.64 1.86 2.64 +identifia identifier ver 38.52 18.92 0.26 0.68 ind:pas:3s; +identifiable identifiable adj s 0.67 1.49 0.55 0.47 +identifiables identifiable adj p 0.67 1.49 0.12 1.01 +identifiai identifier ver 38.52 18.92 0.00 0.41 ind:pas:1s; +identifiaient identifier ver 38.52 18.92 0.03 0.14 ind:imp:3p; +identifiais identifier ver 38.52 18.92 0.05 0.95 ind:imp:1s;ind:imp:2s; +identifiait identifier ver 38.52 18.92 0.31 1.55 ind:imp:3s; +identifiant identifier ver 38.52 18.92 0.22 0.34 par:pre; +identifiassent identifier ver 38.52 18.92 0.00 0.07 sub:imp:3p; +identificateur identificateur nom m s 0.07 0.00 0.07 0.00 +identification identification nom f s 7.14 1.82 6.88 1.76 +identifications identification nom f p 7.14 1.82 0.26 0.07 +identifie identifier ver 38.52 18.92 2.39 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +identifient identifier ver 38.52 18.92 0.29 0.27 ind:pre:3p; +identifier identifier ver 38.52 18.92 16.52 8.45 inf; +identifiera identifier ver 38.52 18.92 0.66 0.07 ind:fut:3s; +identifierai identifier ver 38.52 18.92 0.02 0.00 ind:fut:1s; +identifierais identifier ver 38.52 18.92 0.01 0.20 cnd:pre:1s; +identifierait identifier ver 38.52 18.92 0.06 0.14 cnd:pre:3s; +identifierez identifier ver 38.52 18.92 0.19 0.00 ind:fut:2p; +identifieront identifier ver 38.52 18.92 0.03 0.00 ind:fut:3p; +identifiez identifier ver 38.52 18.92 2.04 0.00 imp:pre:2p;ind:pre:2p; +identifions identifier ver 38.52 18.92 0.24 0.00 imp:pre:1p;ind:pre:1p; +identifiât identifier ver 38.52 18.92 0.00 0.07 sub:imp:3s; +identifièrent identifier ver 38.52 18.92 0.00 0.07 ind:pas:3p; +identifié identifier ver m s 38.52 18.92 10.78 2.50 par:pas; +identifiée identifier ver f s 38.52 18.92 2.02 0.68 par:pas; +identifiées identifier ver f p 38.52 18.92 0.40 0.14 par:pas; +identifiés identifier ver m p 38.52 18.92 2.00 0.47 par:pas; +identique identique adj s 7.90 15.41 4.02 8.04 +identiquement identiquement adv 0.00 0.54 0.00 0.54 +identiques identique adj p 7.90 15.41 3.88 7.36 +identitaire identitaire adj s 0.05 0.41 0.05 0.34 +identitaires identitaire adj f p 0.05 0.41 0.00 0.07 +identitarisme identitarisme nom m s 0.00 0.20 0.00 0.20 +identité identité nom f s 34.78 24.19 32.83 22.64 +identités identité nom f p 34.78 24.19 1.96 1.55 +ides ides nom f p 0.29 0.54 0.29 0.54 +idiolectes idiolecte nom m p 0.00 0.07 0.00 0.07 +idiomatique idiomatique adj s 0.02 0.07 0.01 0.00 +idiomatiques idiomatique adj f p 0.02 0.07 0.01 0.07 +idiome idiome nom m s 0.06 1.35 0.06 0.88 +idiomes idiome nom m p 0.06 1.35 0.00 0.47 +idiopathique idiopathique adj s 0.06 0.00 0.06 0.00 +idiosyncrasie idiosyncrasie nom f s 0.06 0.20 0.04 0.07 +idiosyncrasies idiosyncrasie nom f p 0.06 0.20 0.02 0.14 +idiosyncrasique idiosyncrasique adj m s 0.01 0.00 0.01 0.00 +idiot idiot nom m s 90.57 22.03 55.73 12.64 +idiote idiot nom f s 90.57 22.03 18.40 5.07 +idiotement idiotement adv 0.00 0.61 0.00 0.61 +idiotes idiot adj f p 74.06 33.24 3.62 2.16 +idiotie idiotie nom f s 5.27 2.97 1.81 1.96 +idioties idiotie nom f p 5.27 2.97 3.46 1.01 +idiotisme idiotisme nom m s 0.14 0.14 0.14 0.07 +idiotismes idiotisme nom m p 0.14 0.14 0.00 0.07 +idiots idiot nom m p 90.57 22.03 15.08 3.92 +idoine idoine adj s 0.02 0.95 0.01 0.74 +idoines idoine adj p 0.02 0.95 0.01 0.20 +idole idole nom f s 5.43 10.07 4.77 6.35 +idoles idole nom f p 5.43 10.07 0.66 3.72 +idolâtraient idolâtrer ver 1.03 1.15 0.00 0.07 ind:imp:3p; +idolâtrait idolâtrer ver 1.03 1.15 0.11 0.61 ind:imp:3s; +idolâtrant idolâtrer ver 1.03 1.15 0.14 0.07 par:pre; +idolâtre idolâtrer ver 1.03 1.15 0.17 0.07 ind:pre:1s;ind:pre:3s; +idolâtrent idolâtrer ver 1.03 1.15 0.17 0.00 ind:pre:3p; +idolâtrer idolâtrer ver 1.03 1.15 0.12 0.27 inf; +idolâtres idolâtre nom p 0.16 0.61 0.14 0.34 +idolâtrie idolâtrie nom f s 0.38 1.08 0.38 0.95 +idolâtries idolâtrie nom f p 0.38 1.08 0.00 0.14 +idolâtré idolâtrer ver m s 1.03 1.15 0.05 0.00 par:pas; +idolâtrée idolâtrer ver f s 1.03 1.15 0.23 0.07 par:pas; +idéal idéal adj m s 21.85 16.35 15.80 7.97 +idéale idéal adj f s 21.85 16.35 5.32 7.03 +idéalement idéalement adv 0.28 1.22 0.28 1.22 +idéales idéal adj f p 21.85 16.35 0.40 1.15 +idéalisait idéaliser ver 0.68 0.81 0.02 0.07 ind:imp:3s; +idéalisant idéaliser ver 0.68 0.81 0.02 0.07 par:pre; +idéalisation idéalisation nom f s 0.16 0.14 0.16 0.14 +idéalise idéaliser ver 0.68 0.81 0.34 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +idéalisent idéaliser ver 0.68 0.81 0.01 0.07 ind:pre:3p; +idéaliser idéaliser ver 0.68 0.81 0.13 0.20 inf; +idéalisme idéalisme nom m s 0.98 1.96 0.98 1.82 +idéalismes idéalisme nom m p 0.98 1.96 0.00 0.14 +idéaliste idéaliste nom s 1.61 1.69 1.33 1.08 +idéalistes idéaliste adj p 1.20 1.15 0.44 0.20 +idéalisé idéaliser ver m s 0.68 0.81 0.08 0.14 par:pas; +idéalisée idéaliser ver f s 0.68 0.81 0.07 0.20 par:pas; +idéalisées idéaliser ver f p 0.68 0.81 0.01 0.00 par:pas; +idéalisés idéaliser ver m p 0.68 0.81 0.01 0.07 par:pas; +idéals idéal adj m p 21.85 16.35 0.01 0.00 +idéation idéation nom f s 0.03 0.00 0.03 0.00 +idéaux idéal nom m p 11.22 12.23 3.22 0.74 +idée_clé idée_clé nom f s 0.01 0.00 0.01 0.00 +idée_force idée_force nom f s 0.01 0.20 0.01 0.07 +idée idée nom f s 389.77 328.45 330.39 241.08 +idéel idéel adj m s 0.01 0.00 0.01 0.00 +idée_force idée_force nom f p 0.01 0.20 0.00 0.14 +idées idée nom f p 389.77 328.45 59.38 87.36 +idéogramme idéogramme nom m s 0.39 0.74 0.17 0.00 +idéogrammes idéogramme nom m p 0.39 0.74 0.22 0.74 +idéographie idéographie nom f s 0.01 0.00 0.01 0.00 +idéographique idéographique adj m s 0.00 0.07 0.00 0.07 +idéologie idéologie nom f s 2.59 4.05 2.07 2.97 +idéologies idéologie nom f p 2.59 4.05 0.52 1.08 +idéologique idéologique adj s 1.80 2.70 1.41 1.89 +idéologiquement idéologiquement adv 0.10 0.27 0.10 0.27 +idéologiques idéologique adj p 1.80 2.70 0.39 0.81 +idéologue idéologue nom s 0.38 0.54 0.28 0.34 +idéologues idéologue nom p 0.38 0.54 0.10 0.20 +idylle idylle nom f s 1.13 3.31 1.07 2.70 +idylles idylle nom f p 1.13 3.31 0.06 0.61 +idyllique idyllique adj s 0.82 1.76 0.79 1.35 +idylliques idyllique adj p 0.82 1.76 0.03 0.41 +if if nom m s 7.19 1.55 7.17 0.81 +ifs if nom m p 7.19 1.55 0.02 0.74 +iftar iftar nom m s 0.00 0.07 0.00 0.07 +igloo igloo nom m s 1.08 0.27 0.54 0.07 +igloos igloo nom m p 1.08 0.27 0.55 0.20 +igname igname nom f s 0.18 0.34 0.05 0.07 +ignames igname nom f p 0.18 0.34 0.13 0.27 +ignare ignare adj s 0.75 1.42 0.55 0.88 +ignares ignare nom p 0.78 0.61 0.30 0.34 +ignifuge ignifuge adj f s 0.00 0.07 0.00 0.07 +ignifugeant ignifuger ver 0.17 0.07 0.01 0.00 par:pre; +ignifuger ignifuger ver 0.17 0.07 0.00 0.07 inf; +ignifugé ignifugé adj m s 0.07 0.20 0.04 0.07 +ignifugée ignifugé adj f s 0.07 0.20 0.02 0.07 +ignifugées ignifuger ver f p 0.17 0.07 0.14 0.00 par:pas; +ignifugés ignifugé adj m p 0.07 0.20 0.01 0.07 +ignition ignition nom f s 0.05 0.34 0.05 0.34 +ignoble ignoble adj s 8.11 12.30 6.95 9.19 +ignoblement ignoblement adv 0.16 0.88 0.16 0.88 +ignobles ignoble adj p 8.11 12.30 1.16 3.11 +ignominie ignominie nom f s 0.88 3.72 0.76 3.18 +ignominies ignominie nom f p 0.88 3.72 0.13 0.54 +ignominieuse ignominieux adj f s 0.39 0.88 0.12 0.54 +ignominieusement ignominieusement adv 0.00 0.47 0.00 0.47 +ignominieuses ignominieux adj f p 0.39 0.88 0.01 0.07 +ignominieux ignominieux adj m s 0.39 0.88 0.26 0.27 +ignora ignorer ver 156.55 108.45 0.26 1.49 ind:pas:3s; +ignorai ignorer ver 156.55 108.45 0.02 0.14 ind:pas:1s; +ignoraient ignorer ver 156.55 108.45 1.20 4.46 ind:imp:3p; +ignorais ignorer ver 156.55 108.45 24.82 10.61 ind:imp:1s;ind:imp:2s; +ignorait ignorer ver 156.55 108.45 5.32 26.01 ind:imp:3s; +ignorance ignorance nom f s 6.54 16.82 6.54 16.35 +ignorances ignorance nom f p 6.54 16.82 0.00 0.47 +ignorant ignorant adj m s 3.90 6.22 1.79 2.50 +ignorante ignorant adj f s 3.90 6.22 0.61 1.55 +ignorantes ignorant adj f p 3.90 6.22 0.15 0.41 +ignorantins ignorantin adj m p 0.00 0.14 0.00 0.14 +ignorants ignorant nom m p 3.41 3.45 1.36 1.08 +ignorassent ignorer ver 156.55 108.45 0.00 0.07 sub:imp:3p; +ignore ignorer ver 156.55 108.45 76.78 22.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ignorent ignorer ver 156.55 108.45 5.09 5.07 ind:pre:3p; +ignorer ignorer ver 156.55 108.45 13.04 16.89 inf; +ignorera ignorer ver 156.55 108.45 0.31 0.27 ind:fut:3s; +ignorerai ignorer ver 156.55 108.45 0.13 0.41 ind:fut:1s; +ignoreraient ignorer ver 156.55 108.45 0.01 0.00 cnd:pre:3p; +ignorerais ignorer ver 156.55 108.45 0.15 0.00 cnd:pre:1s;cnd:pre:2s; +ignorerait ignorer ver 156.55 108.45 0.04 0.27 cnd:pre:3s; +ignoreras ignorer ver 156.55 108.45 0.04 0.00 ind:fut:2s; +ignoreriez ignorer ver 156.55 108.45 0.09 0.00 cnd:pre:2p; +ignorerons ignorer ver 156.55 108.45 0.02 0.00 ind:fut:1p; +ignoreront ignorer ver 156.55 108.45 0.10 0.00 ind:fut:3p; +ignores ignorer ver 156.55 108.45 5.89 1.42 ind:pre:2s;sub:pre:2s; +ignorez ignorer ver 156.55 108.45 9.84 2.50 imp:pre:2p;ind:pre:2p; +ignoriez ignorer ver 156.55 108.45 1.84 0.61 ind:imp:2p;sub:pre:2p; +ignorions ignorer ver 156.55 108.45 0.73 1.49 ind:imp:1p; +ignorons ignorer ver 156.55 108.45 4.50 1.28 imp:pre:1p;ind:pre:1p; +ignorât ignorer ver 156.55 108.45 0.00 0.54 sub:imp:3s; +ignorèrent ignorer ver 156.55 108.45 0.00 0.20 ind:pas:3p; +ignoré ignorer ver m s 156.55 108.45 3.36 3.58 par:pas; +ignorée ignorer ver f s 156.55 108.45 0.70 1.28 par:pas; +ignorées ignorer ver f p 156.55 108.45 0.14 0.34 par:pas; +ignorés ignorer ver m p 156.55 108.45 0.41 0.74 par:pas; +igné igné adj m s 0.02 0.20 0.00 0.20 +ignée igné adj f s 0.02 0.20 0.02 0.00 +iguane iguane nom m s 0.69 0.74 0.63 0.20 +iguanes iguane nom m p 0.69 0.74 0.06 0.54 +iguanodon iguanodon nom m s 0.00 0.14 0.00 0.07 +iguanodons iguanodon nom m p 0.00 0.14 0.00 0.07 +igue igue nom f s 0.01 0.07 0.01 0.00 +igues igue nom f p 0.01 0.07 0.00 0.07 +ikebana ikebana nom m s 0.02 0.07 0.02 0.07 +il il pro_per m s 13222.93 15832.09 13222.93 15832.09 +iles ile nom m p 1.25 0.20 1.25 0.20 +iliaque iliaque adj f s 0.14 0.20 0.14 0.07 +iliaques iliaque adj f p 0.14 0.20 0.01 0.14 +ilium ilium nom m s 0.01 0.00 0.01 0.00 +illettrisme illettrisme nom m s 0.05 0.07 0.05 0.07 +illettré illettré adj m s 1.54 1.01 1.04 0.41 +illettrée illettré adj f s 1.54 1.01 0.33 0.47 +illettrés illettré nom m p 0.62 0.68 0.20 0.27 +illicite illicite adj s 1.07 1.42 0.44 0.74 +illicitement illicitement adv 0.01 0.00 0.01 0.00 +illicites illicite adj p 1.07 1.42 0.63 0.68 +illico illico adv_sup 2.19 7.16 2.19 7.16 +illimité illimité adj m s 2.56 3.92 1.52 1.49 +illimitée illimité adj f s 2.56 3.92 0.60 1.69 +illimitées illimité adj f p 2.56 3.92 0.26 0.54 +illimités illimité adj m p 2.56 3.92 0.18 0.20 +illisible illisible adj s 0.83 6.76 0.68 5.68 +illisibles illisible adj p 0.83 6.76 0.14 1.08 +illogique illogique adj s 0.46 0.88 0.39 0.81 +illogiquement illogiquement adv 0.00 0.07 0.00 0.07 +illogiques illogique adj p 0.46 0.88 0.07 0.07 +illogisme illogisme nom m s 0.01 0.47 0.01 0.34 +illogismes illogisme nom m p 0.01 0.47 0.00 0.14 +illégal illégal adj m s 19.88 1.76 11.93 0.88 +illégale illégal adj f s 19.88 1.76 4.03 0.47 +illégalement illégalement adv 1.87 0.20 1.87 0.20 +illégales illégal adj f p 19.88 1.76 2.28 0.41 +illégalistes illégaliste nom p 0.00 0.07 0.00 0.07 +illégalité illégalité nom f s 0.55 0.81 0.55 0.81 +illégaux illégal adj m p 19.88 1.76 1.65 0.00 +illégitime illégitime adj s 1.52 0.95 1.18 0.61 +illégitimement illégitimement adv 0.02 0.00 0.02 0.00 +illégitimes illégitime adj p 1.52 0.95 0.34 0.34 +illégitimité illégitimité nom f s 0.04 0.20 0.04 0.20 +illumina illuminer ver 6.43 20.00 0.14 2.57 ind:pas:3s; +illuminaient illuminer ver 6.43 20.00 0.21 1.35 ind:imp:3p; +illuminait illuminer ver 6.43 20.00 0.27 3.11 ind:imp:3s; +illuminant illuminer ver 6.43 20.00 0.20 1.01 par:pre; +illuminateurs illuminateur nom m p 0.00 0.07 0.00 0.07 +illumination illumination nom f s 1.89 4.19 1.63 3.11 +illuminations illumination nom f p 1.89 4.19 0.26 1.08 +illumine illuminer ver 6.43 20.00 2.10 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +illuminent illuminer ver 6.43 20.00 0.36 0.54 ind:pre:3p; +illuminer illuminer ver 6.43 20.00 1.12 1.08 inf; +illuminera illuminer ver 6.43 20.00 0.17 0.07 ind:fut:3s; +illuminerai illuminer ver 6.43 20.00 0.02 0.00 ind:fut:1s; +illuminerait illuminer ver 6.43 20.00 0.00 0.20 cnd:pre:3s; +illumineront illuminer ver 6.43 20.00 0.01 0.07 ind:fut:3p; +illuminez illuminer ver 6.43 20.00 0.17 0.00 imp:pre:2p; +illuministes illuministe adj f p 0.00 0.07 0.00 0.07 +illuminèrent illuminer ver 6.43 20.00 0.00 0.47 ind:pas:3p; +illuminé illuminer ver m s 6.43 20.00 1.05 2.91 par:pas; +illuminée illuminer ver f s 6.43 20.00 0.56 2.03 par:pas; +illuminées illuminé adj f p 0.60 7.57 0.01 1.08 +illuminés illuminé nom m p 0.80 2.50 0.16 0.81 +illusion illusion nom f s 19.14 47.36 11.19 30.27 +illusionnait illusionner ver 0.25 1.01 0.00 0.20 ind:imp:3s; +illusionne illusionner ver 0.25 1.01 0.05 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +illusionnent illusionner ver 0.25 1.01 0.00 0.07 ind:pre:3p; +illusionner illusionner ver 0.25 1.01 0.10 0.41 inf; +illusionnez illusionner ver 0.25 1.01 0.10 0.07 imp:pre:2p;ind:pre:2p; +illusionnisme illusionnisme nom m s 0.01 0.34 0.01 0.34 +illusionniste illusionniste nom s 0.17 0.61 0.14 0.54 +illusionnistes illusionniste nom p 0.17 0.61 0.04 0.07 +illusions illusion nom f p 19.14 47.36 7.95 17.09 +illusoire illusoire adj s 0.95 5.81 0.81 4.59 +illusoirement illusoirement adv 0.00 0.14 0.00 0.14 +illusoires illusoire adj p 0.95 5.81 0.15 1.22 +illustra illustrer ver 2.59 11.55 0.04 0.27 ind:pas:3s; +illustraient illustrer ver 2.59 11.55 0.01 0.61 ind:imp:3p; +illustrait illustrer ver 2.59 11.55 0.04 0.68 ind:imp:3s; +illustrant illustrer ver 2.59 11.55 0.08 1.15 par:pre; +illustrateur illustrateur nom m s 0.15 0.20 0.10 0.20 +illustration illustration nom f s 1.37 7.91 0.67 4.86 +illustrations illustration nom f p 1.37 7.91 0.70 3.04 +illustratrice illustrateur nom f s 0.15 0.20 0.05 0.00 +illustre illustre adj s 4.38 9.66 2.60 6.22 +illustrement illustrement adv 0.00 0.20 0.00 0.20 +illustrent illustrer ver 2.59 11.55 0.08 0.54 ind:pre:3p; +illustrer illustrer ver 2.59 11.55 1.08 3.18 inf; +illustrera illustrer ver 2.59 11.55 0.01 0.07 ind:fut:3s; +illustrerai illustrer ver 2.59 11.55 0.01 0.00 ind:fut:1s; +illustrerait illustrer ver 2.59 11.55 0.01 0.07 cnd:pre:3s; +illustres illustre adj p 4.38 9.66 1.78 3.45 +illustrions illustrer ver 2.59 11.55 0.00 0.07 ind:imp:1p; +illustrissime illustrissime adj f s 0.00 0.54 0.00 0.27 +illustrissimes illustrissime adj f p 0.00 0.54 0.00 0.27 +illustré illustré adj m s 0.74 2.77 0.10 1.55 +illustrée illustrer ver f s 2.59 11.55 0.34 0.61 par:pas; +illustrées illustré adj f p 0.74 2.77 0.15 0.07 +illustrés illustré adj m p 0.74 2.77 0.39 0.74 +ilote ilote nom m s 0.00 0.61 0.00 0.27 +ilotes ilote nom m p 0.00 0.61 0.00 0.34 +ilotisme ilotisme nom m s 0.14 0.00 0.14 0.00 +ils ils pro_per m p 3075.07 2809.53 3075.07 2809.53 +iléaux iléal adj m p 0.01 0.00 0.01 0.00 +iléus iléus nom m 0.03 0.00 0.03 0.00 +image image nom f s 82.13 188.92 51.34 119.39 +imageant imager ver 0.73 1.76 0.01 0.00 par:pre; +imager imager ver 0.73 1.76 0.02 0.07 inf; +imagerie imagerie nom f s 0.54 2.09 0.54 1.89 +imageries imagerie nom f p 0.54 2.09 0.00 0.20 +images image nom f p 82.13 188.92 30.79 69.53 +imageur imageur nom m s 0.03 0.00 0.02 0.00 +imageurs imageur nom m p 0.03 0.00 0.01 0.00 +imagier imagier nom m s 0.00 1.01 0.00 0.27 +imagiers imagier nom m p 0.00 1.01 0.00 0.74 +imagina imaginer ver 194.28 241.15 0.29 8.78 ind:pas:3s; +imaginable imaginable adj s 0.79 2.36 0.20 1.08 +imaginables imaginable adj p 0.79 2.36 0.58 1.28 +imaginai imaginer ver 194.28 241.15 0.05 3.72 ind:pas:1s; +imaginaient imaginer ver 194.28 241.15 0.27 2.91 ind:imp:3p; +imaginaire imaginaire adj s 5.34 19.32 3.80 12.36 +imaginairement imaginairement adv 0.00 0.14 0.00 0.14 +imaginaires imaginaire adj p 5.34 19.32 1.54 6.96 +imaginais imaginer ver 194.28 241.15 11.64 19.66 ind:imp:1s;ind:imp:2s; +imaginait imaginer ver 194.28 241.15 1.63 27.84 ind:imp:3s; +imaginant imaginer ver 194.28 241.15 0.78 7.57 par:pre; +imaginatif imaginatif adj m s 0.75 2.09 0.44 1.08 +imaginatifs imaginatif adj m p 0.75 2.09 0.02 0.34 +imagination imagination nom f s 27.64 48.58 27.14 45.81 +imaginations imagination nom f p 27.64 48.58 0.50 2.77 +imaginative imaginatif adj f s 0.75 2.09 0.15 0.54 +imaginatives imaginatif adj f p 0.75 2.09 0.14 0.14 +imagine imaginer ver 194.28 241.15 77.33 53.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +imaginent imaginer ver 194.28 241.15 2.05 4.46 ind:pre:3p; +imaginer imaginer ver 194.28 241.15 37.09 64.26 inf; +imaginerai imaginer ver 194.28 241.15 0.08 0.14 ind:fut:1s; +imagineraient imaginer ver 194.28 241.15 0.23 0.41 cnd:pre:3p; +imaginerais imaginer ver 194.28 241.15 0.03 0.27 cnd:pre:1s; +imaginerait imaginer ver 194.28 241.15 0.13 0.81 cnd:pre:3s; +imagineras imaginer ver 194.28 241.15 0.05 0.00 ind:fut:2s; +imaginerez imaginer ver 194.28 241.15 0.20 0.00 ind:fut:2p; +imagineriez imaginer ver 194.28 241.15 0.00 0.07 cnd:pre:2p; +imaginerons imaginer ver 194.28 241.15 0.00 0.07 ind:fut:1p; +imagineront imaginer ver 194.28 241.15 0.04 0.14 ind:fut:3p; +imagines imaginer ver 194.28 241.15 19.91 9.46 ind:pre:2s;sub:pre:2s; +imaginez imaginer ver 194.28 241.15 23.35 10.54 imp:pre:2p;ind:pre:2p; +imaginiez imaginer ver 194.28 241.15 0.86 0.41 ind:imp:2p;sub:pre:2p; +imaginions imaginer ver 194.28 241.15 0.48 1.55 ind:imp:1p; +imaginâmes imaginer ver 194.28 241.15 0.00 0.14 ind:pas:1p; +imaginons imaginer ver 194.28 241.15 2.80 0.74 imp:pre:1p;ind:pre:1p; +imaginât imaginer ver 194.28 241.15 0.00 0.20 sub:imp:3s; +imaginèrent imaginer ver 194.28 241.15 0.02 0.41 ind:pas:3p; +imaginé imaginer ver m s 194.28 241.15 13.33 18.38 par:pas; +imaginée imaginer ver f s 194.28 241.15 1.34 2.77 par:pas; +imaginées imaginer ver f p 194.28 241.15 0.09 1.01 par:pas; +imaginés imaginer ver m p 194.28 241.15 0.21 0.88 par:pas; +imago imago nom m s 0.00 0.07 0.00 0.07 +imagé imagé adj m s 0.10 1.01 0.08 0.34 +imagée imagé adj f s 0.10 1.01 0.02 0.34 +imagées imager ver f p 0.73 1.76 0.01 0.07 par:pas; +imagés imagé adj m p 0.10 1.01 0.00 0.20 +imam imam nom m s 1.27 0.34 1.11 0.14 +imams imam nom m p 1.27 0.34 0.16 0.20 +iman iman nom m s 0.02 0.07 0.02 0.07 +imbaisable imbaisable adj s 0.14 0.07 0.14 0.07 +imbattable imbattable adj s 2.12 2.43 1.86 2.03 +imbattables imbattable adj m p 2.12 2.43 0.27 0.41 +imberbe imberbe adj s 0.27 1.35 0.21 0.95 +imberbes imberbe adj p 0.27 1.35 0.06 0.41 +imbiba imbiber ver 1.28 7.36 0.00 0.14 ind:pas:3s; +imbibaient imbiber ver 1.28 7.36 0.00 0.20 ind:imp:3p; +imbibais imbiber ver 1.28 7.36 0.01 0.00 ind:imp:1s; +imbibait imbiber ver 1.28 7.36 0.00 0.61 ind:imp:3s; +imbibant imbiber ver 1.28 7.36 0.01 0.41 par:pre; +imbibe imbiber ver 1.28 7.36 0.03 0.54 ind:pre:3s; +imbiber imbiber ver 1.28 7.36 0.30 0.34 inf; +imbiberai imbiber ver 1.28 7.36 0.02 0.00 ind:fut:1s; +imbiberais imbiber ver 1.28 7.36 0.00 0.07 cnd:pre:1s; +imbiberait imbiber ver 1.28 7.36 0.01 0.07 cnd:pre:3s; +imbibition imbibition nom f s 0.00 0.07 0.00 0.07 +imbibé imbiber ver m s 1.28 7.36 0.39 2.77 par:pas; +imbibée imbiber ver f s 1.28 7.36 0.27 1.15 par:pas; +imbibées imbibé adj f p 0.36 0.81 0.14 0.00 +imbibés imbiber ver m p 1.28 7.36 0.21 0.88 par:pas; +imbitable imbitable adj m s 0.03 0.07 0.01 0.07 +imbitables imbitable adj m p 0.03 0.07 0.02 0.00 +imbittable imbittable adj s 0.00 0.07 0.00 0.07 +imbrication imbrication nom f s 0.00 0.61 0.00 0.47 +imbrications imbrication nom f p 0.00 0.61 0.00 0.14 +imbriquaient imbriquer ver 0.23 1.35 0.00 0.07 ind:imp:3p; +imbriquait imbriquer ver 0.23 1.35 0.00 0.14 ind:imp:3s; +imbriquant imbriquer ver 0.23 1.35 0.00 0.14 par:pre; +imbrique imbriquer ver 0.23 1.35 0.04 0.20 ind:pre:3s; +imbriquent imbriquer ver 0.23 1.35 0.03 0.27 ind:pre:3p; +imbriquer imbriquer ver 0.23 1.35 0.10 0.07 inf; +imbriqué imbriqué adj m s 0.05 0.74 0.00 0.14 +imbriquée imbriquer ver f s 0.23 1.35 0.01 0.07 par:pas; +imbriquées imbriqué adj f p 0.05 0.74 0.03 0.47 +imbriqués imbriquer ver m p 0.23 1.35 0.04 0.20 par:pas; +imbrisable imbrisable adj s 0.01 0.00 0.01 0.00 +imbroglio imbroglio nom m s 0.46 1.69 0.33 1.55 +imbroglios imbroglio nom m p 0.46 1.69 0.13 0.14 +imbu imbu adj m s 0.56 1.42 0.41 0.88 +imbécile imbécile nom s 43.42 30.68 35.01 20.47 +imbécilement imbécilement adv 0.00 0.27 0.00 0.27 +imbéciles imbécile nom p 43.42 30.68 8.42 10.20 +imbécillité imbécillité nom f s 0.25 2.70 0.20 2.23 +imbécillités imbécillité nom f p 0.25 2.70 0.05 0.47 +imbue imbu adj f s 0.56 1.42 0.09 0.27 +imbues imbu adj f p 0.56 1.42 0.01 0.07 +imbus imbu adj m p 0.56 1.42 0.05 0.20 +imbuvable imbuvable adj f s 0.60 0.47 0.60 0.47 +imidazole imidazole nom m s 0.03 0.00 0.03 0.00 +imita imiter ver 14.69 41.35 0.01 3.51 ind:pas:3s; +imitable imitable adj m s 0.00 0.14 0.00 0.07 +imitables imitable adj m p 0.00 0.14 0.00 0.07 +imitai imiter ver 14.69 41.35 0.01 0.07 ind:pas:1s; +imitaient imiter ver 14.69 41.35 0.14 0.95 ind:imp:3p; +imitais imiter ver 14.69 41.35 0.45 0.81 ind:imp:1s;ind:imp:2s; +imitait imiter ver 14.69 41.35 0.45 4.12 ind:imp:3s; +imitant imiter ver 14.69 41.35 0.46 7.64 par:pre; +imitateur imitateur nom m s 1.00 0.47 0.48 0.34 +imitateurs imitateur nom m p 1.00 0.47 0.39 0.14 +imitation imitation nom f s 4.25 7.30 3.33 5.68 +imitations imitation nom f p 4.25 7.30 0.92 1.62 +imitative imitatif adj f s 0.00 0.20 0.00 0.14 +imitatives imitatif adj f p 0.00 0.20 0.00 0.07 +imitatrice imitateur nom f s 1.00 0.47 0.13 0.00 +imite imiter ver 14.69 41.35 3.85 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imitent imiter ver 14.69 41.35 0.78 0.95 ind:pre:3p; +imiter imiter ver 14.69 41.35 6.00 12.97 inf; +imitera imiter ver 14.69 41.35 0.11 0.07 ind:fut:3s; +imiterai imiter ver 14.69 41.35 0.05 0.07 ind:fut:1s; +imiteraient imiter ver 14.69 41.35 0.01 0.07 cnd:pre:3p; +imiterais imiter ver 14.69 41.35 0.01 0.07 cnd:pre:1s; +imiterait imiter ver 14.69 41.35 0.04 0.14 cnd:pre:3s; +imiteront imiter ver 14.69 41.35 0.08 0.07 ind:fut:3p; +imites imiter ver 14.69 41.35 0.70 0.07 ind:pre:2s; +imitez imiter ver 14.69 41.35 0.50 0.07 imp:pre:2p;ind:pre:2p; +imitiez imiter ver 14.69 41.35 0.04 0.07 ind:imp:2p; +imitions imiter ver 14.69 41.35 0.01 0.07 ind:imp:1p; +imitâmes imiter ver 14.69 41.35 0.00 0.07 ind:pas:1p; +imitons imiter ver 14.69 41.35 0.26 0.14 imp:pre:1p;ind:pre:1p; +imitât imiter ver 14.69 41.35 0.00 0.07 sub:imp:3s; +imitèrent imiter ver 14.69 41.35 0.00 1.08 ind:pas:3p; +imité imiter ver m s 14.69 41.35 0.40 2.57 par:pas; +imitée imiter ver f s 14.69 41.35 0.28 0.68 par:pas; +imitées imiter ver f p 14.69 41.35 0.02 0.41 par:pas; +imités imiter ver m p 14.69 41.35 0.03 0.68 par:pas; +immaculation immaculation nom f s 0.00 0.54 0.00 0.54 +immaculé immaculé adj m s 2.29 9.39 1.05 2.84 +immaculée immaculé adj f s 2.29 9.39 0.66 3.85 +immaculées immaculé adj f p 2.29 9.39 0.27 1.08 +immaculés immaculé adj m p 2.29 9.39 0.32 1.62 +immanence immanence nom f s 0.00 0.07 0.00 0.07 +immanent immanent adj m s 0.07 1.01 0.00 0.14 +immanente immanent adj f s 0.07 1.01 0.07 0.88 +immanentisme immanentisme nom m s 0.00 0.07 0.00 0.07 +immangeable immangeable adj m s 0.74 0.68 0.69 0.54 +immangeables immangeable adj p 0.74 0.68 0.05 0.14 +immanquable immanquable adj s 0.04 0.14 0.04 0.07 +immanquablement immanquablement adv 0.10 3.24 0.10 3.24 +immanquables immanquable adj p 0.04 0.14 0.00 0.07 +immarcescible immarcescible adj s 0.00 0.07 0.00 0.07 +immatriculation immatriculation nom f s 4.64 0.95 4.13 0.88 +immatriculations immatriculation nom f p 4.64 0.95 0.51 0.07 +immatriculer immatriculer ver 0.95 1.15 0.04 0.00 inf; +immatriculé immatriculé adj m s 1.68 0.07 0.28 0.00 +immatriculée immatriculé adj f s 1.68 0.07 1.40 0.07 +immatriculées immatriculer ver f p 0.95 1.15 0.03 0.27 par:pas; +immature immature adj s 2.98 0.27 2.42 0.20 +immatures immature adj p 2.98 0.27 0.56 0.07 +immatérialité immatérialité nom f s 0.00 0.07 0.00 0.07 +immatériel immatériel adj m s 0.42 3.72 0.23 1.76 +immatérielle immatériel adj f s 0.42 3.72 0.17 1.49 +immatérielles immatériel adj f p 0.42 3.72 0.00 0.20 +immatériels immatériel adj m p 0.42 3.72 0.03 0.27 +immaturité immaturité nom f s 0.48 0.34 0.48 0.34 +immense immense adj s 21.56 106.89 19.01 83.99 +immenses immense adj p 21.56 106.89 2.55 22.91 +immensité immensité nom f s 1.53 8.45 1.52 7.97 +immensités immensité nom f p 1.53 8.45 0.01 0.47 +immensément immensément adv 0.39 2.30 0.39 2.30 +immensurable immensurable adj s 0.00 0.14 0.00 0.14 +immerge immerger ver 1.95 2.84 0.17 0.14 ind:pre:1s;ind:pre:3s; +immergea immerger ver 1.95 2.84 0.00 0.14 ind:pas:3s; +immergeait immerger ver 1.95 2.84 0.00 0.27 ind:imp:3s; +immergeant immerger ver 1.95 2.84 0.01 0.00 par:pre; +immergent immerger ver 1.95 2.84 0.00 0.07 ind:pre:3p; +immergeons immerger ver 1.95 2.84 0.10 0.00 imp:pre:1p; +immerger immerger ver 1.95 2.84 0.39 0.41 inf; +immergerons immerger ver 1.95 2.84 0.01 0.00 ind:fut:1p; +immergez immerger ver 1.95 2.84 0.03 0.00 imp:pre:2p; +immergiez immerger ver 1.95 2.84 0.00 0.07 ind:imp:2p; +immergèrent immerger ver 1.95 2.84 0.10 0.07 ind:pas:3p; +immergé immerger ver m s 1.95 2.84 0.67 0.81 par:pas; +immergée immerger ver f s 1.95 2.84 0.22 0.41 par:pas; +immergées immergé adj f p 0.29 1.42 0.11 0.34 +immergés immerger ver m p 1.95 2.84 0.25 0.27 par:pas; +immersion immersion nom f s 1.29 1.15 1.29 1.15 +immettable immettable adj s 0.16 0.14 0.16 0.14 +immeuble immeuble nom m s 30.03 68.78 24.54 50.88 +immeubles immeuble nom m p 30.03 68.78 5.49 17.91 +immigrai immigrer ver 0.68 0.34 0.00 0.07 ind:pas:1s; +immigrant immigrant nom m s 1.46 0.88 0.43 0.20 +immigrante immigrant nom f s 1.46 0.88 0.06 0.00 +immigrants immigrant nom m p 1.46 0.88 0.96 0.68 +immigration immigration nom f s 4.91 0.81 4.91 0.81 +immigrer immigrer ver 0.68 0.34 0.29 0.07 inf; +immigré immigré nom m s 1.54 2.84 0.42 0.20 +immigrée immigré adj f s 0.83 1.28 0.28 0.07 +immigrées immigré adj f p 0.83 1.28 0.01 0.20 +immigrés immigré nom m p 1.54 2.84 1.02 2.50 +imminence imminence nom f s 0.12 3.38 0.12 3.38 +imminent imminent adj m s 4.63 7.64 1.79 2.03 +imminente imminent adj f s 4.63 7.64 2.58 4.73 +imminentes imminent adj f p 4.63 7.64 0.17 0.41 +imminents imminent adj m p 4.63 7.64 0.08 0.47 +immisce immiscer ver 1.56 1.62 0.15 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immiscent immiscer ver 1.56 1.62 0.07 0.07 ind:pre:3p; +immiscer immiscer ver 1.56 1.62 1.17 1.08 inf; +immiscerait immiscer ver 1.56 1.62 0.02 0.00 cnd:pre:3s; +immisces immiscer ver 1.56 1.62 0.01 0.00 ind:pre:2s; +immiscibles immiscible adj m p 0.00 0.07 0.00 0.07 +immiscé immiscer ver m s 1.56 1.62 0.06 0.07 par:pas; +immiscée immiscer ver f s 1.56 1.62 0.04 0.00 par:pas; +immisçaient immiscer ver 1.56 1.62 0.00 0.14 ind:imp:3p; +immisçait immiscer ver 1.56 1.62 0.01 0.14 ind:imp:3s; +immisçant immiscer ver 1.56 1.62 0.02 0.14 par:pre; +immixtion immixtion nom f s 0.10 0.54 0.10 0.47 +immixtions immixtion nom f p 0.10 0.54 0.00 0.07 +immobile immobile adj s 8.03 116.42 6.67 87.50 +immobiles immobile adj p 8.03 116.42 1.35 28.92 +immobilier immobilier adj m s 6.43 3.45 3.27 1.76 +immobiliers immobilier adj m p 6.43 3.45 1.13 0.47 +immobilisa immobiliser ver 3.23 30.27 0.00 8.24 ind:pas:3s; +immobilisai immobiliser ver 3.23 30.27 0.00 0.27 ind:pas:1s; +immobilisaient immobiliser ver 3.23 30.27 0.00 0.54 ind:imp:3p; +immobilisais immobiliser ver 3.23 30.27 0.00 0.14 ind:imp:1s; +immobilisait immobiliser ver 3.23 30.27 0.14 2.23 ind:imp:3s; +immobilisant immobiliser ver 3.23 30.27 0.01 1.76 par:pre; +immobilisation immobilisation nom f s 0.08 0.34 0.08 0.27 +immobilisations immobilisation nom f p 0.08 0.34 0.00 0.07 +immobilise immobiliser ver 3.23 30.27 0.53 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +immobilisent immobiliser ver 3.23 30.27 0.01 0.81 ind:pre:3p; +immobiliser immobiliser ver 3.23 30.27 0.75 2.91 imp:pre:2p;inf; +immobilisera immobiliser ver 3.23 30.27 0.07 0.07 ind:fut:3s; +immobiliserait immobiliser ver 3.23 30.27 0.01 0.07 cnd:pre:3s; +immobiliseront immobiliser ver 3.23 30.27 0.02 0.07 ind:fut:3p; +immobilises immobiliser ver 3.23 30.27 0.01 0.07 ind:pre:2s; +immobilisez immobiliser ver 3.23 30.27 0.24 0.00 imp:pre:2p; +immobilisme immobilisme nom m s 0.04 0.27 0.04 0.27 +immobilisons immobiliser ver 3.23 30.27 0.00 0.07 ind:pre:1p; +immobilisèrent immobiliser ver 3.23 30.27 0.00 1.15 ind:pas:3p; +immobilisé immobiliser ver m s 3.23 30.27 0.61 3.58 par:pas; +immobilisée immobiliser ver f s 3.23 30.27 0.33 2.84 par:pas; +immobilisées immobiliser ver f p 3.23 30.27 0.02 0.41 par:pas; +immobilisés immobiliser ver m p 3.23 30.27 0.48 2.16 par:pas; +immobilière immobilier adj f s 6.43 3.45 1.75 0.81 +immobilières immobilier adj f p 6.43 3.45 0.28 0.41 +immobilité immobilité nom f s 0.66 21.96 0.66 21.62 +immobilités immobilité nom f p 0.66 21.96 0.00 0.34 +immodeste immodeste adj f s 0.13 0.20 0.13 0.07 +immodestes immodeste adj f p 0.13 0.20 0.00 0.14 +immodestie immodestie nom f s 0.01 0.07 0.01 0.07 +immodéré immodéré adj m s 0.13 1.22 0.13 0.81 +immodérée immodéré adj f s 0.13 1.22 0.00 0.14 +immodérées immodéré adj f p 0.13 1.22 0.00 0.07 +immodérément immodérément adv 0.00 0.20 0.00 0.20 +immodérés immodéré adj m p 0.13 1.22 0.00 0.20 +immola immoler ver 2.54 1.01 0.01 0.07 ind:pas:3s; +immolation immolation nom f s 0.05 0.20 0.05 0.14 +immolations immolation nom f p 0.05 0.20 0.00 0.07 +immole immoler ver 2.54 1.01 0.82 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immolent immoler ver 2.54 1.01 0.03 0.00 ind:pre:3p; +immoler immoler ver 2.54 1.01 0.73 0.20 inf; +immolé immoler ver m s 2.54 1.01 0.77 0.41 par:pas; +immolée immoler ver f s 2.54 1.01 0.01 0.07 par:pas; +immolés immoler ver m p 2.54 1.01 0.17 0.20 par:pas; +immonde immonde adj s 5.12 6.28 4.48 4.12 +immondes immonde adj p 5.12 6.28 0.64 2.16 +immondice immondice nom f s 0.46 2.36 0.02 0.14 +immondices immondice nom f p 0.46 2.36 0.44 2.23 +immoral immoral adj m s 3.88 1.76 2.96 0.81 +immorale immoral adj f s 3.88 1.76 0.59 0.27 +immoralement immoralement adv 0.27 0.00 0.27 0.00 +immorales immoral adj f p 3.88 1.76 0.07 0.14 +immoralisme immoralisme nom m s 0.00 0.20 0.00 0.20 +immoraliste immoraliste nom s 0.00 0.07 0.00 0.07 +immoralité immoralité nom f s 0.67 0.61 0.67 0.61 +immoraux immoral adj m p 3.88 1.76 0.26 0.54 +immortalisa immortaliser ver 1.17 1.62 0.01 0.14 ind:pas:3s; +immortalisait immortaliser ver 1.17 1.62 0.00 0.20 ind:imp:3s; +immortalisant immortaliser ver 1.17 1.62 0.00 0.14 par:pre; +immortalisation immortalisation nom f s 0.00 0.07 0.00 0.07 +immortalise immortaliser ver 1.17 1.62 0.09 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immortaliser immortaliser ver 1.17 1.62 0.55 0.74 inf; +immortaliseraient immortaliser ver 1.17 1.62 0.01 0.00 cnd:pre:3p; +immortaliseront immortaliser ver 1.17 1.62 0.02 0.00 ind:fut:3p; +immortalisez immortaliser ver 1.17 1.62 0.01 0.00 imp:pre:2p; +immortalisé immortaliser ver m s 1.17 1.62 0.28 0.07 par:pas; +immortalisée immortaliser ver f s 1.17 1.62 0.03 0.14 par:pas; +immortalisées immortaliser ver f p 1.17 1.62 0.11 0.07 par:pas; +immortalisés immortaliser ver m p 1.17 1.62 0.06 0.14 par:pas; +immortalité immortalité nom f s 3.67 4.53 3.67 4.46 +immortalités immortalité nom f p 3.67 4.53 0.00 0.07 +immortel immortel adj m s 6.66 5.74 2.88 2.30 +immortelle immortel adj f s 6.66 5.74 2.12 1.89 +immortelles immortel adj f p 6.66 5.74 0.36 0.54 +immortels immortel adj m p 6.66 5.74 1.29 1.01 +immortifiées immortifié adj f p 0.00 0.07 0.00 0.07 +immotivée immotivé adj f s 0.01 0.14 0.00 0.07 +immotivés immotivé adj m p 0.01 0.14 0.01 0.07 +immuabilité immuabilité nom f s 0.01 0.20 0.01 0.20 +immuable immuable adj s 1.64 9.80 1.24 7.84 +immuablement immuablement adv 0.01 0.74 0.01 0.74 +immuables immuable adj p 1.64 9.80 0.40 1.96 +immédiat immédiat adj m s 9.77 24.59 4.59 9.59 +immédiate immédiat adj f s 9.77 24.59 4.19 10.61 +immédiatement immédiatement adv 56.35 42.64 56.35 42.64 +immédiates immédiat adj f p 9.77 24.59 0.44 1.96 +immédiateté immédiateté nom f s 0.02 0.07 0.02 0.07 +immédiats immédiat adj m p 9.77 24.59 0.54 2.43 +immémorial immémorial adj m s 0.04 4.93 0.00 1.89 +immémoriale immémorial adj f s 0.04 4.93 0.01 1.15 +immémoriales immémorial adj f p 0.04 4.93 0.01 1.01 +immémoriaux immémorial adj m p 0.04 4.93 0.02 0.88 +immune immun adj f s 0.01 0.07 0.01 0.07 +immunisait immuniser ver 1.96 0.68 0.00 0.14 ind:imp:3s; +immunisation immunisation nom f s 0.08 0.07 0.08 0.07 +immunise immuniser ver 1.96 0.68 0.04 0.07 ind:pre:3s; +immunisent immuniser ver 1.96 0.68 0.03 0.00 ind:pre:3p; +immuniser immuniser ver 1.96 0.68 0.09 0.20 inf; +immunisé immuniser ver m s 1.96 0.68 0.97 0.20 par:pas; +immunisée immuniser ver f s 1.96 0.68 0.36 0.07 par:pas; +immunisés immuniser ver m p 1.96 0.68 0.48 0.00 par:pas; +immunitaire immunitaire adj s 1.73 0.54 1.64 0.20 +immunitaires immunitaire adj p 1.73 0.54 0.09 0.34 +immunité immunité nom f s 2.99 1.42 2.92 1.42 +immunités immunité nom f p 2.99 1.42 0.06 0.00 +immunodéficience immunodéficience nom f s 0.04 0.00 0.04 0.00 +immunodéficitaire immunodéficitaire adj f s 0.03 0.00 0.03 0.00 +immunodéprimé immunodéprimé adj m s 0.02 0.00 0.02 0.00 +immunogène immunogène adj f s 0.00 0.14 0.00 0.14 +immunologie immunologie nom f s 0.02 0.00 0.02 0.00 +immunologique immunologique adj s 0.05 0.07 0.05 0.07 +immunologiste immunologiste nom s 0.09 0.00 0.09 0.00 +immunostimulant immunostimulant nom m s 0.01 0.00 0.01 0.00 +immunothérapie immunothérapie nom f s 0.01 0.00 0.01 0.00 +immérité immérité adj m s 0.24 0.88 0.20 0.27 +imméritée immérité adj f s 0.24 0.88 0.02 0.27 +imméritées immérité adj f p 0.24 0.88 0.00 0.20 +immérités immérité adj m p 0.24 0.88 0.03 0.14 +immutabilité immutabilité nom f s 0.14 0.00 0.14 0.00 +impôt impôt nom m s 15.14 6.55 2.67 1.76 +impôts impôt nom m p 15.14 6.55 12.47 4.80 +impact impact nom m s 9.54 2.50 8.36 2.30 +impacts impact nom m p 9.54 2.50 1.19 0.20 +impair impair adj m s 0.58 1.08 0.20 0.68 +impaire impair adj f s 0.58 1.08 0.03 0.00 +impaires impair adj f p 0.58 1.08 0.00 0.14 +impairs impair adj m p 0.58 1.08 0.36 0.27 +impala impala nom m s 0.19 1.22 0.17 1.01 +impalas impala nom m p 0.19 1.22 0.02 0.20 +impalpabilité impalpabilité nom f s 0.00 0.07 0.00 0.07 +impalpable impalpable adj s 0.60 5.27 0.60 3.72 +impalpablement impalpablement adv 0.00 0.07 0.00 0.07 +impalpables impalpable adj p 0.60 5.27 0.00 1.55 +imparable imparable adj s 0.43 0.81 0.41 0.68 +imparablement imparablement adv 0.00 0.07 0.00 0.07 +imparables imparable adj f p 0.43 0.81 0.02 0.14 +impardonnable impardonnable adj s 2.84 3.11 2.46 2.70 +impardonnablement impardonnablement adv 0.00 0.07 0.00 0.07 +impardonnables impardonnable adj p 2.84 3.11 0.39 0.41 +imparfait imparfait adj m s 1.51 3.11 0.74 1.01 +imparfaite imparfait adj f s 1.51 3.11 0.23 1.22 +imparfaitement imparfaitement adv 0.02 0.81 0.02 0.81 +imparfaites imparfait adj f p 1.51 3.11 0.13 0.20 +imparfaits imparfait adj m p 1.51 3.11 0.41 0.68 +impartageable impartageable adj s 0.00 0.07 0.00 0.07 +imparti imparti adj m s 0.27 0.07 0.27 0.07 +impartial impartial adj m s 1.72 1.28 0.81 0.74 +impartiale impartial adj f s 1.72 1.28 0.69 0.27 +impartialement impartialement adv 0.04 0.34 0.04 0.34 +impartiales impartial adj f p 1.72 1.28 0.01 0.07 +impartialité impartialité nom f s 0.32 0.95 0.32 0.95 +impartiaux impartial adj m p 1.72 1.28 0.22 0.20 +impartie impartir ver f s 0.19 0.95 0.00 0.14 par:pas; +impartir impartir ver 0.19 0.95 0.00 0.14 inf; +impartis impartir ver m p 0.19 0.95 0.00 0.27 par:pas; +impassable impassable adj s 0.02 0.00 0.02 0.00 +impasse impasse nom f s 6.95 10.47 6.30 9.19 +impasses impasse nom f p 6.95 10.47 0.65 1.28 +impassibilité impassibilité nom f s 0.00 2.43 0.00 2.43 +impassible impassible adj s 1.48 11.49 1.29 9.66 +impassiblement impassiblement adv 0.00 0.14 0.00 0.14 +impassibles impassible adj p 1.48 11.49 0.18 1.82 +impatiemment impatiemment adv 0.79 2.50 0.79 2.50 +impatience impatience nom f s 7.59 33.78 7.59 33.11 +impatiences impatience nom f p 7.59 33.78 0.00 0.68 +impatiens impatiens nom f 0.01 0.00 0.01 0.00 +impatient impatient adj m s 12.64 16.76 7.40 9.19 +impatienta impatienter ver 2.74 10.54 0.00 1.28 ind:pas:3s; +impatientai impatienter ver 2.74 10.54 0.01 0.14 ind:pas:1s; +impatientaient impatienter ver 2.74 10.54 0.01 0.47 ind:imp:3p; +impatientais impatienter ver 2.74 10.54 0.00 0.27 ind:imp:1s; +impatientait impatienter ver 2.74 10.54 0.18 2.43 ind:imp:3s; +impatientant impatienter ver 2.74 10.54 0.00 0.14 par:pre; +impatiente impatient adj f s 12.64 16.76 3.34 3.99 +impatientent impatienter ver 2.74 10.54 0.63 0.34 ind:pre:3p; +impatienter impatienter ver 2.74 10.54 0.72 0.95 inf; +impatienterait impatienter ver 2.74 10.54 0.00 0.07 cnd:pre:3s; +impatientes impatient adj f p 12.64 16.76 0.26 0.68 +impatientez impatienter ver 2.74 10.54 0.01 0.27 imp:pre:2p;ind:pre:2p; +impatients impatient adj m p 12.64 16.76 1.63 2.91 +impatientèrent impatienter ver 2.74 10.54 0.00 0.14 ind:pas:3p; +impatienté impatienter ver m s 2.74 10.54 0.01 0.81 par:pas; +impatientée impatienter ver f s 2.74 10.54 0.01 0.34 par:pas; +impatientés impatienter ver m p 2.74 10.54 0.01 0.00 par:pas; +impatronisait impatroniser ver 0.00 0.20 0.00 0.07 ind:imp:3s; +impatroniser impatroniser ver 0.00 0.20 0.00 0.07 inf; +impatronisé impatroniser ver m s 0.00 0.20 0.00 0.07 par:pas; +impavide impavide adj s 0.29 1.89 0.29 1.28 +impavides impavide adj f p 0.29 1.89 0.00 0.61 +impayable impayable adj m s 0.36 0.81 0.30 0.74 +impayables impayable adj p 0.36 0.81 0.06 0.07 +impayé impayé adj m s 0.96 0.47 0.11 0.00 +impayée impayé adj f s 0.96 0.47 0.23 0.20 +impayées impayé adj f p 0.96 0.47 0.35 0.14 +impayés impayé adj m p 0.96 0.47 0.27 0.14 +impeachment impeachment nom m s 0.07 0.00 0.07 0.00 +impec impec adj 1.06 1.96 1.06 1.96 +impeccabilité impeccabilité nom f s 0.00 0.07 0.00 0.07 +impeccable impeccable adj s 6.96 10.07 5.67 8.24 +impeccablement impeccablement adv 0.09 2.64 0.09 2.64 +impeccables impeccable adj p 6.96 10.07 1.29 1.82 +impedimenta impedimenta nom m p 0.00 0.07 0.00 0.07 +impensable impensable adj s 2.94 2.57 2.91 2.23 +impensables impensable adj f p 2.94 2.57 0.03 0.34 +impensé impensé adj m s 0.00 0.14 0.00 0.14 +imper imper nom m s 2.08 2.91 1.95 2.50 +imperator imperator nom m s 0.09 0.20 0.09 0.20 +imperceptible imperceptible adj s 0.61 15.27 0.45 12.16 +imperceptiblement imperceptiblement adv 0.14 9.73 0.14 9.73 +imperceptibles imperceptible adj p 0.61 15.27 0.16 3.11 +imperfectible imperfectible adj s 0.01 0.00 0.01 0.00 +imperfection imperfection nom f s 1.00 1.69 0.34 0.61 +imperfections imperfection nom f p 1.00 1.69 0.66 1.08 +imperium imperium nom m s 0.08 0.07 0.08 0.07 +imperméabilisant imperméabilisant nom m s 0.01 0.00 0.01 0.00 +imperméabiliser imperméabiliser ver 0.23 0.00 0.01 0.00 inf; +imperméabilisé imperméabiliser ver m s 0.23 0.00 0.23 0.00 par:pas; +imperméabilité imperméabilité nom f s 0.00 0.14 0.00 0.14 +imperméable imperméable nom m s 2.14 11.62 1.95 10.14 +imperméables imperméable nom m p 2.14 11.62 0.19 1.49 +impers imper nom m p 2.08 2.91 0.13 0.41 +impersonnaliser impersonnaliser ver 0.01 0.00 0.01 0.00 inf; +impersonnalité impersonnalité nom f s 0.00 0.34 0.00 0.34 +impersonnel impersonnel adj m s 0.86 5.00 0.68 1.82 +impersonnelle impersonnel adj f s 0.86 5.00 0.15 2.43 +impersonnelles impersonnel adj f p 0.86 5.00 0.01 0.27 +impersonnels impersonnel adj m p 0.86 5.00 0.03 0.47 +impertinemment impertinemment adv 0.00 0.07 0.00 0.07 +impertinence impertinence nom f s 0.47 1.69 0.34 1.35 +impertinences impertinence nom f p 0.47 1.69 0.14 0.34 +impertinent impertinent adj m s 1.14 1.01 0.92 0.41 +impertinente impertinent adj f s 1.14 1.01 0.17 0.41 +impertinentes impertinent adj f p 1.14 1.01 0.04 0.20 +impertinents impertinent nom m p 0.97 0.20 0.27 0.07 +imperturbable imperturbable adj s 0.18 6.42 0.15 5.54 +imperturbablement imperturbablement adv 0.00 1.01 0.00 1.01 +imperturbables imperturbable adj p 0.18 6.42 0.04 0.88 +impie impie adj s 1.66 1.96 1.19 0.95 +impies impie nom p 1.09 1.28 0.94 0.54 +impitoyable impitoyable adj s 5.34 10.68 4.40 8.18 +impitoyablement impitoyablement adv 0.40 1.82 0.40 1.82 +impitoyables impitoyable adj p 5.34 10.68 0.94 2.50 +impiété impiété nom f s 0.74 1.08 0.74 0.95 +impiétés impiété nom f p 0.74 1.08 0.00 0.14 +implacabilité implacabilité nom f s 0.02 0.07 0.02 0.07 +implacable implacable adj s 2.02 10.54 1.77 9.46 +implacablement implacablement adv 0.11 0.20 0.11 0.20 +implacables implacable adj p 2.02 10.54 0.24 1.08 +implant implant nom m s 5.11 0.14 2.00 0.00 +implanta implanter ver 3.39 2.64 0.14 0.07 ind:pas:3s; +implantable implantable adj m s 0.01 0.00 0.01 0.00 +implantaient implanter ver 3.39 2.64 0.00 0.14 ind:imp:3p; +implantais implanter ver 3.39 2.64 0.01 0.07 ind:imp:1s; +implantait implanter ver 3.39 2.64 0.00 0.14 ind:imp:3s; +implantant implanter ver 3.39 2.64 0.05 0.07 par:pre; +implantation implantation nom f s 0.66 0.81 0.53 0.81 +implantations implantation nom f p 0.66 0.81 0.12 0.00 +implante implanter ver 3.39 2.64 0.39 0.07 ind:pre:3s; +implantent implanter ver 3.39 2.64 0.05 0.14 ind:pre:3p; +implanter implanter ver 3.39 2.64 1.10 0.95 inf; +implantez implanter ver 3.39 2.64 0.04 0.00 imp:pre:2p;ind:pre:2p; +implantiez implanter ver 3.39 2.64 0.02 0.00 ind:imp:2p; +implantons implanter ver 3.39 2.64 0.05 0.00 imp:pre:1p;ind:pre:1p; +implants implant nom m p 5.11 0.14 3.11 0.14 +implanté implanter ver m s 3.39 2.64 1.20 0.47 par:pas; +implantée implanter ver f s 3.39 2.64 0.17 0.20 par:pas; +implantées implanter ver f p 3.39 2.64 0.03 0.07 par:pas; +implantés implanter ver m p 3.39 2.64 0.14 0.27 par:pas; +implication implication nom f s 2.96 1.01 2.01 0.27 +implications implication nom f p 2.96 1.01 0.95 0.74 +implicite implicite adj s 0.26 1.28 0.23 1.08 +implicitement implicitement adv 0.19 1.15 0.19 1.15 +implicites implicite adj p 0.26 1.28 0.03 0.20 +impliqua impliquer ver 36.80 12.09 0.11 0.07 ind:pas:3s; +impliquaient impliquer ver 36.80 12.09 0.05 0.27 ind:imp:3p; +impliquait impliquer ver 36.80 12.09 0.66 2.91 ind:imp:3s; +impliquant impliquer ver 36.80 12.09 1.37 1.08 par:pre; +implique impliquer ver 36.80 12.09 6.73 3.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impliquent impliquer ver 36.80 12.09 0.60 0.61 ind:pre:3p; +impliquer impliquer ver 36.80 12.09 4.07 0.47 inf; +impliquera impliquer ver 36.80 12.09 0.07 0.07 ind:fut:3s; +impliquerai impliquer ver 36.80 12.09 0.04 0.00 ind:fut:1s; +impliquerais impliquer ver 36.80 12.09 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +impliquerait impliquer ver 36.80 12.09 0.52 0.41 cnd:pre:3s; +impliquerons impliquer ver 36.80 12.09 0.01 0.00 ind:fut:1p; +impliqueront impliquer ver 36.80 12.09 0.01 0.00 ind:fut:3p; +impliquez impliquer ver 36.80 12.09 0.34 0.00 imp:pre:2p;ind:pre:2p; +impliquions impliquer ver 36.80 12.09 0.01 0.00 ind:imp:1p; +impliquons impliquer ver 36.80 12.09 0.04 0.00 imp:pre:1p;ind:pre:1p; +impliquât impliquer ver 36.80 12.09 0.00 0.14 sub:imp:3s; +impliqué impliquer ver m s 36.80 12.09 13.38 1.28 par:pas; +impliquée impliquer ver f s 36.80 12.09 4.05 0.34 par:pas; +impliquées impliquer ver f p 36.80 12.09 1.21 0.07 par:pas; +impliqués impliquer ver m p 36.80 12.09 3.46 0.41 par:pas; +implora implorer ver 11.88 8.11 0.13 1.08 ind:pas:3s; +implorai implorer ver 11.88 8.11 0.00 0.14 ind:pas:1s; +imploraient implorer ver 11.88 8.11 0.05 0.20 ind:imp:3p; +implorais implorer ver 11.88 8.11 0.06 0.14 ind:imp:1s;ind:imp:2s; +implorait implorer ver 11.88 8.11 0.30 1.15 ind:imp:3s; +implorant implorer ver 11.88 8.11 0.49 1.22 par:pre; +implorante implorant adj f s 0.50 3.31 0.04 1.15 +implorantes implorant adj f p 0.50 3.31 0.11 0.20 +implorants implorant adj m p 0.50 3.31 0.12 0.81 +imploration imploration nom f s 0.01 1.01 0.01 0.88 +implorations imploration nom f p 0.01 1.01 0.00 0.14 +implore implorer ver 11.88 8.11 5.87 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +implorent implorer ver 11.88 8.11 0.90 0.41 ind:pre:3p; +implorer implorer ver 11.88 8.11 1.75 1.76 inf; +implorera implorer ver 11.88 8.11 0.02 0.07 ind:fut:3s; +implorerai implorer ver 11.88 8.11 0.03 0.07 ind:fut:1s; +implorerais implorer ver 11.88 8.11 0.01 0.00 cnd:pre:2s; +implorerez implorer ver 11.88 8.11 0.04 0.00 ind:fut:2p; +imploreront implorer ver 11.88 8.11 0.01 0.00 ind:fut:3p; +implorez implorer ver 11.88 8.11 0.24 0.07 imp:pre:2p;ind:pre:2p; +imploriez implorer ver 11.88 8.11 0.14 0.07 ind:imp:2p; +implorons implorer ver 11.88 8.11 1.13 0.07 imp:pre:1p;ind:pre:1p; +implorèrent implorer ver 11.88 8.11 0.01 0.07 ind:pas:3p; +imploré implorer ver m s 11.88 8.11 0.52 0.34 par:pas; +implorée implorer ver f s 11.88 8.11 0.19 0.00 par:pas; +implose imploser ver 0.47 0.34 0.07 0.27 ind:pre:1s;ind:pre:3s; +implosent imploser ver 0.47 0.34 0.02 0.07 ind:pre:3p; +imploser imploser ver 0.47 0.34 0.32 0.00 inf; +implosera imploser ver 0.47 0.34 0.04 0.00 ind:fut:3s; +implosez imploser ver 0.47 0.34 0.01 0.00 ind:pre:2p; +implosif implosif adj m s 0.06 0.07 0.04 0.00 +implosifs implosif adj m p 0.06 0.07 0.01 0.07 +implosion implosion nom f s 0.23 0.14 0.23 0.14 +implosive implosive nom f s 0.00 0.07 0.00 0.07 +implosives implosif adj f p 0.06 0.07 0.01 0.00 +implémentation implémentation nom f s 0.04 0.00 0.04 0.00 +implémenter implémenter ver 0.05 0.00 0.05 0.00 inf; +impoli impoli adj m s 4.76 0.68 3.32 0.47 +impolie impoli adj f s 4.76 0.68 0.95 0.20 +impoliment impoliment adv 0.03 0.00 0.03 0.00 +impolis impoli adj m p 4.76 0.68 0.48 0.00 +impolitesse impolitesse nom f s 1.01 0.88 1.00 0.81 +impolitesses impolitesse nom f p 1.01 0.88 0.01 0.07 +impollu impollu adj m s 0.00 0.07 0.00 0.07 +impolluable impolluable adj f s 0.00 0.07 0.00 0.07 +impollué impollué adj m s 0.00 0.47 0.00 0.14 +impolluée impollué adj f s 0.00 0.47 0.00 0.14 +impolluées impollué adj f p 0.00 0.47 0.00 0.07 +impollués impollué adj m p 0.00 0.47 0.00 0.14 +impondérable impondérable nom m s 0.10 0.61 0.03 0.20 +impondérables impondérable nom m p 0.10 0.61 0.07 0.41 +impopulaire impopulaire adj s 1.14 0.14 0.95 0.07 +impopulaires impopulaire adj m p 1.14 0.14 0.19 0.07 +impopularité impopularité nom f s 0.01 0.27 0.01 0.27 +import_export import_export nom m s 0.47 0.41 0.47 0.41 +import import nom m s 0.43 0.27 0.32 0.14 +importa importer ver 259.50 173.11 0.11 0.20 ind:pas:3s; +importable importable adj s 0.16 0.00 0.01 0.00 +importables importable adj p 0.16 0.00 0.15 0.00 +importaient importer ver 259.50 173.11 0.09 1.35 ind:imp:3p; +importait importer ver 259.50 173.11 2.25 15.68 ind:imp:3s; +importance importance nom f s 57.32 75.81 57.32 75.54 +importances importance nom f p 57.32 75.81 0.00 0.27 +important important adj m s 229.36 86.76 168.62 49.66 +importante important adj f s 229.36 86.76 35.29 18.31 +importantes important adj f p 229.36 86.76 13.80 8.99 +importants important adj m p 229.36 86.76 11.65 9.80 +importateur importateur nom m s 0.24 0.34 0.19 0.27 +importateurs importateur nom m p 0.24 0.34 0.05 0.07 +importation importation nom f s 1.23 2.23 0.73 1.01 +importations importation nom f p 1.23 2.23 0.50 1.22 +importe importer ver 259.50 173.11 251.39 151.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +importent importer ver 259.50 173.11 2.16 1.76 ind:pre:3p; +importer importer ver 259.50 173.11 1.01 0.68 inf; +importera importer ver 259.50 173.11 0.25 0.34 ind:fut:3s; +importeraient importer ver 259.50 173.11 0.01 0.00 cnd:pre:3p; +importerait importer ver 259.50 173.11 0.10 0.41 cnd:pre:3s; +importes importer ver 259.50 173.11 0.20 0.07 ind:pre:2s; +importât importer ver 259.50 173.11 0.00 0.07 sub:imp:3s; +imports import nom m p 0.43 0.27 0.11 0.14 +importé importer ver m s 259.50 173.11 1.05 0.61 par:pas; +importée importé adj f s 1.45 0.54 0.26 0.20 +importées importer ver f p 259.50 173.11 0.28 0.27 par:pas; +importun importun nom m s 0.36 1.82 0.32 1.01 +importuna importuner ver 4.66 3.38 0.00 0.07 ind:pas:3s; +importunaient importuner ver 4.66 3.38 0.00 0.20 ind:imp:3p; +importunais importuner ver 4.66 3.38 0.03 0.07 ind:imp:1s; +importunait importuner ver 4.66 3.38 0.14 0.68 ind:imp:3s; +importune importuner ver 4.66 3.38 0.51 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +importunent importuner ver 4.66 3.38 0.04 0.14 ind:pre:3p; +importuner importuner ver 4.66 3.38 2.79 0.95 inf; +importunerai importuner ver 4.66 3.38 0.07 0.00 ind:fut:1s; +importunerait importuner ver 4.66 3.38 0.01 0.00 cnd:pre:3s; +importunerez importuner ver 4.66 3.38 0.02 0.07 ind:fut:2p; +importunerons importuner ver 4.66 3.38 0.11 0.00 ind:fut:1p; +importunes importuner ver 4.66 3.38 0.27 0.00 ind:pre:2s; +importunez importuner ver 4.66 3.38 0.28 0.20 imp:pre:2p;ind:pre:2p; +importunités importunité nom f p 0.00 0.20 0.00 0.20 +importunât importuner ver 4.66 3.38 0.00 0.07 sub:imp:3s; +importuns importun adj m p 0.70 2.23 0.16 0.20 +importuné importuner ver m s 4.66 3.38 0.14 0.47 par:pas; +importunée importuner ver f s 4.66 3.38 0.20 0.20 par:pas; +importunés importuner ver m p 4.66 3.38 0.06 0.07 par:pas; +importés importé adj m p 1.45 0.54 0.39 0.20 +imposa imposer ver 23.62 78.38 0.79 3.72 ind:pas:3s; +imposable imposable adj s 0.29 0.14 0.20 0.07 +imposables imposable adj m p 0.29 0.14 0.09 0.07 +imposai imposer ver 23.62 78.38 0.00 0.20 ind:pas:1s; +imposaient imposer ver 23.62 78.38 0.08 2.50 ind:imp:3p; +imposais imposer ver 23.62 78.38 0.04 0.68 ind:imp:1s;ind:imp:2s; +imposait imposer ver 23.62 78.38 1.07 14.66 ind:imp:3s; +imposant imposant adj m s 1.47 9.39 0.97 3.72 +imposante imposant adj f s 1.47 9.39 0.42 4.39 +imposantes imposant adj f p 1.47 9.39 0.05 0.95 +imposants imposant adj m p 1.47 9.39 0.03 0.34 +imposassent imposer ver 23.62 78.38 0.00 0.07 sub:imp:3p; +impose imposer ver 23.62 78.38 6.92 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +imposent imposer ver 23.62 78.38 1.62 4.12 ind:pre:3p; +imposer imposer ver 23.62 78.38 7.19 19.53 inf; +imposera imposer ver 23.62 78.38 0.27 0.47 ind:fut:3s; +imposerai imposer ver 23.62 78.38 0.23 0.14 ind:fut:1s; +imposeraient imposer ver 23.62 78.38 0.01 0.20 cnd:pre:3p; +imposerais imposer ver 23.62 78.38 0.03 0.07 cnd:pre:1s; +imposerait imposer ver 23.62 78.38 0.07 1.08 cnd:pre:3s; +imposerez imposer ver 23.62 78.38 0.03 0.00 ind:fut:2p; +imposerions imposer ver 23.62 78.38 0.00 0.14 cnd:pre:1p; +imposerons imposer ver 23.62 78.38 0.05 0.14 ind:fut:1p; +imposeront imposer ver 23.62 78.38 0.03 0.14 ind:fut:3p; +imposes imposer ver 23.62 78.38 0.35 0.34 ind:pre:2s; +imposez imposer ver 23.62 78.38 0.41 0.20 imp:pre:2p;ind:pre:2p; +imposiez imposer ver 23.62 78.38 0.00 0.14 ind:imp:2p; +imposition imposition nom f s 0.69 0.41 0.69 0.34 +impositions imposition nom f p 0.69 0.41 0.00 0.07 +imposons imposer ver 23.62 78.38 0.30 0.14 imp:pre:1p;ind:pre:1p; +imposât imposer ver 23.62 78.38 0.01 0.54 sub:imp:3s; +impossibilité impossibilité nom f s 0.96 7.50 0.94 7.16 +impossibilités impossibilité nom f p 0.96 7.50 0.02 0.34 +impossible impossible adj s 124.54 96.01 122.32 90.07 +impossibles impossible adj p 124.54 96.01 2.22 5.95 +imposte imposte nom f s 0.01 0.68 0.01 0.68 +imposteur imposteur nom m s 6.04 1.96 5.43 1.42 +imposteurs imposteur nom m p 6.04 1.96 0.61 0.54 +imposèrent imposer ver 23.62 78.38 0.00 0.61 ind:pas:3p; +imposture imposture nom f s 1.82 3.38 1.78 3.18 +impostures imposture nom f p 1.82 3.38 0.04 0.20 +imposé imposer ver m s 23.62 78.38 2.46 6.42 par:pas; +imposée imposer ver f s 23.62 78.38 0.53 4.19 par:pas; +imposées imposer ver f p 23.62 78.38 0.52 1.62 par:pas; +imposés imposer ver m p 23.62 78.38 0.21 0.68 par:pas; +impotence impotence nom f s 0.01 0.07 0.01 0.07 +impotent impotent adj m s 0.90 1.22 0.64 0.47 +impotente impotent adj f s 0.90 1.22 0.21 0.61 +impotentes impotent adj f p 0.90 1.22 0.00 0.07 +impotents impotent adj m p 0.90 1.22 0.05 0.07 +impraticabilité impraticabilité nom f s 0.01 0.00 0.01 0.00 +impraticable impraticable adj s 0.33 1.35 0.15 0.95 +impraticables impraticable adj p 0.33 1.35 0.18 0.41 +impratique impratique adj s 0.00 0.07 0.00 0.07 +imprenable imprenable adj s 0.76 2.30 0.74 1.82 +imprenables imprenable adj p 0.76 2.30 0.02 0.47 +impresarii impresario nom m p 0.39 2.36 0.00 0.14 +impresario impresario nom m s 0.39 2.36 0.38 2.03 +impresarios impresario nom m p 0.39 2.36 0.01 0.20 +imprescriptible imprescriptible adj s 0.02 0.41 0.01 0.27 +imprescriptibles imprescriptible adj m p 0.02 0.41 0.01 0.14 +impression impression nom f s 90.19 155.27 88.30 146.28 +impressionna impressionner ver 24.98 24.26 0.01 1.49 ind:pas:3s; +impressionnable impressionnable adj s 1.02 0.68 0.78 0.68 +impressionnables impressionnable adj m p 1.02 0.68 0.24 0.00 +impressionnaient impressionner ver 24.98 24.26 0.00 0.61 ind:imp:3p; +impressionnais impressionner ver 24.98 24.26 0.14 0.00 ind:imp:1s;ind:imp:2s; +impressionnait impressionner ver 24.98 24.26 0.13 2.84 ind:imp:3s; +impressionnant impressionnant adj m s 15.91 9.86 12.98 4.59 +impressionnante impressionnant adj f s 15.91 9.86 2.09 3.78 +impressionnantes impressionnant adj f p 15.91 9.86 0.40 0.95 +impressionnants impressionnant adj m p 15.91 9.86 0.45 0.54 +impressionne impressionner ver 24.98 24.26 3.54 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impressionnent impressionner ver 24.98 24.26 0.42 0.47 ind:pre:3p; +impressionner impressionner ver 24.98 24.26 5.97 4.66 inf; +impressionnera impressionner ver 24.98 24.26 0.26 0.00 ind:fut:3s; +impressionnerait impressionner ver 24.98 24.26 0.06 0.27 cnd:pre:3s; +impressionneras impressionner ver 24.98 24.26 0.02 0.00 ind:fut:2s; +impressionneront impressionner ver 24.98 24.26 0.00 0.07 ind:fut:3p; +impressionnes impressionner ver 24.98 24.26 0.82 0.07 ind:pre:1p;ind:pre:2s; +impressionnez impressionner ver 24.98 24.26 0.94 0.07 imp:pre:2p;ind:pre:2p; +impressionnisme impressionnisme nom m s 0.16 0.20 0.16 0.20 +impressionniste impressionniste adj s 0.28 1.15 0.11 0.54 +impressionnistes impressionniste adj p 0.28 1.15 0.17 0.61 +impressionnât impressionner ver 24.98 24.26 0.00 0.07 sub:imp:3s; +impressionnèrent impressionner ver 24.98 24.26 0.00 0.07 ind:pas:3p; +impressionné impressionner ver m s 24.98 24.26 6.91 7.16 par:pas; +impressionnée impressionner ver f s 24.98 24.26 3.34 1.89 par:pas; +impressionnées impressionner ver f p 24.98 24.26 0.07 0.20 par:pas; +impressionnés impressionner ver m p 24.98 24.26 1.50 1.55 par:pas; +impressions impression nom f p 90.19 155.27 1.89 8.99 +impressive impressif adj f s 0.03 0.00 0.03 0.00 +imprima imprimer ver 8.67 28.24 0.02 0.54 ind:pas:3s; +imprimable imprimable adj s 0.01 0.00 0.01 0.00 +imprimaient imprimer ver 8.67 28.24 0.03 0.68 ind:imp:3p; +imprimais imprimer ver 8.67 28.24 0.06 0.07 ind:imp:1s; +imprimait imprimer ver 8.67 28.24 0.03 2.23 ind:imp:3s; +imprimant imprimer ver 8.67 28.24 0.11 0.74 par:pre; +imprimante imprimante nom f s 0.95 0.07 0.95 0.07 +imprimatur imprimatur nom m 0.00 0.07 0.00 0.07 +imprime imprimer ver 8.67 28.24 1.82 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impriment imprimer ver 8.67 28.24 0.31 0.47 ind:pre:3p; +imprimer imprimer ver 8.67 28.24 2.82 3.58 inf; +imprimera imprimer ver 8.67 28.24 0.03 0.14 ind:fut:3s; +imprimerai imprimer ver 8.67 28.24 0.04 0.00 ind:fut:1s; +imprimerait imprimer ver 8.67 28.24 0.01 0.07 cnd:pre:3s; +imprimeras imprimer ver 8.67 28.24 0.01 0.00 ind:fut:2s; +imprimerie imprimerie nom f s 1.63 9.53 1.60 9.12 +imprimeries imprimerie nom f p 1.63 9.53 0.03 0.41 +imprimerons imprimer ver 8.67 28.24 0.00 0.07 ind:fut:1p; +imprimeur imprimeur nom m s 1.12 2.97 1.01 2.09 +imprimeurs imprimeur nom m p 1.12 2.97 0.10 0.88 +imprimez imprimer ver 8.67 28.24 0.47 0.14 imp:pre:2p;ind:pre:2p; +imprimèrent imprimer ver 8.67 28.24 0.01 0.20 ind:pas:3p; +imprimé imprimer ver m s 8.67 28.24 1.79 7.91 par:pas; +imprimée imprimer ver f s 8.67 28.24 0.36 4.05 par:pas; +imprimées imprimer ver f p 8.67 28.24 0.22 2.84 par:pas; +imprimés imprimer ver m p 8.67 28.24 0.53 2.97 par:pas; +impro impro nom f s 0.82 0.14 0.82 0.14 +improbabilité improbabilité nom f s 0.11 0.20 0.11 0.20 +improbable improbable adj s 2.87 7.70 2.77 5.68 +improbables improbable adj p 2.87 7.70 0.09 2.03 +improductif improductif adj m s 0.85 0.54 0.20 0.20 +improductifs improductif adj m p 0.85 0.54 0.40 0.07 +improductive improductif adj f s 0.85 0.54 0.25 0.14 +improductives improductif adj f p 0.85 0.54 0.00 0.14 +impromptu impromptu adj m s 0.40 2.43 0.25 1.42 +impromptue impromptu adj f s 0.40 2.43 0.11 0.68 +impromptues impromptu adj f p 0.40 2.43 0.02 0.27 +impromptus impromptu nom m p 0.14 0.61 0.14 0.07 +imprononcé imprononcé adj m s 0.00 0.07 0.00 0.07 +imprononçable imprononçable adj m s 0.19 0.47 0.16 0.41 +imprononçables imprononçable adj m p 0.19 0.47 0.02 0.07 +impropre impropre adj s 0.50 1.62 0.48 1.22 +improprement improprement adv 0.11 0.07 0.11 0.07 +impropres impropre adj f p 0.50 1.62 0.02 0.41 +impropriétés impropriété nom f p 0.00 0.14 0.00 0.14 +improuva improuver ver 0.00 0.07 0.00 0.07 ind:pas:3s; +improuvable improuvable adj s 0.03 0.00 0.03 0.00 +improvisa improviser ver 7.09 8.92 0.03 0.68 ind:pas:3s; +improvisade improvisade nom f s 0.01 0.00 0.01 0.00 +improvisai improviser ver 7.09 8.92 0.00 0.07 ind:pas:1s; +improvisaient improviser ver 7.09 8.92 0.00 0.34 ind:imp:3p; +improvisais improviser ver 7.09 8.92 0.03 0.14 ind:imp:1s; +improvisait improviser ver 7.09 8.92 0.20 0.95 ind:imp:3s; +improvisant improviser ver 7.09 8.92 0.02 0.88 par:pre; +improvisateur improvisateur nom m s 0.01 0.27 0.01 0.20 +improvisateurs improvisateur nom m p 0.01 0.27 0.00 0.07 +improvisation improvisation nom f s 0.91 3.78 0.72 2.70 +improvisations improvisation nom f p 0.91 3.78 0.19 1.08 +improvise improviser ver 7.09 8.92 1.92 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +improvisent improviser ver 7.09 8.92 0.22 0.41 ind:pre:3p; +improviser improviser ver 7.09 8.92 2.79 1.42 inf; +improvisera improviser ver 7.09 8.92 0.21 0.14 ind:fut:3s; +improviserai improviser ver 7.09 8.92 0.19 0.00 ind:fut:1s; +improviserons improviser ver 7.09 8.92 0.01 0.00 ind:fut:1p; +improvisez improviser ver 7.09 8.92 0.14 0.00 imp:pre:2p;ind:pre:2p; +improvisions improviser ver 7.09 8.92 0.00 0.07 ind:imp:1p; +improvisons improviser ver 7.09 8.92 0.20 0.00 imp:pre:1p;ind:pre:1p; +improvisèrent improviser ver 7.09 8.92 0.00 0.14 ind:pas:3p; +improvisé improviser ver m s 7.09 8.92 0.82 1.28 par:pas; +improvisée improviser ver f s 7.09 8.92 0.26 0.34 par:pas; +improvisées improvisé adj f p 0.60 4.19 0.04 0.20 +improvisés improviser ver m p 7.09 8.92 0.04 0.54 par:pas; +imprègne imprégner ver 1.76 17.70 0.25 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imprègnent imprégner ver 1.76 17.70 0.03 0.34 ind:pre:3p; +imprécateur imprécateur nom m s 0.00 0.07 0.00 0.07 +imprécation imprécation nom f s 0.12 3.38 0.11 0.34 +imprécations imprécation nom f p 0.12 3.38 0.01 3.04 +imprécis imprécis adj m 0.36 7.36 0.28 2.77 +imprécisable imprécisable nom s 0.00 0.20 0.00 0.20 +imprécise imprécis adj f s 0.36 7.36 0.07 2.97 +imprécises imprécis adj f p 0.36 7.36 0.01 1.62 +imprécision imprécision nom f s 0.06 1.01 0.04 0.95 +imprécisions imprécision nom f p 0.06 1.01 0.02 0.07 +imprudemment imprudemment adv 0.34 1.28 0.34 1.28 +imprudence imprudence nom f s 2.04 6.15 1.56 4.73 +imprudences imprudence nom f p 2.04 6.15 0.48 1.42 +imprudent imprudent adj m s 4.34 4.80 3.10 2.50 +imprudente imprudent adj f s 4.34 4.80 0.87 1.22 +imprudentes imprudent adj f p 4.34 4.80 0.08 0.61 +imprudents imprudent adj m p 4.34 4.80 0.30 0.47 +imprégna imprégner ver 1.76 17.70 0.00 0.34 ind:pas:3s; +imprégnaient imprégner ver 1.76 17.70 0.02 0.61 ind:imp:3p; +imprégnais imprégner ver 1.76 17.70 0.00 0.07 ind:imp:1s; +imprégnait imprégner ver 1.76 17.70 0.12 1.96 ind:imp:3s; +imprégnant imprégner ver 1.76 17.70 0.00 0.41 par:pre; +imprégnation imprégnation nom f s 0.01 0.68 0.01 0.54 +imprégnations imprégnation nom f p 0.01 0.68 0.00 0.14 +imprégner imprégner ver 1.76 17.70 0.27 2.36 inf; +imprégnez imprégner ver 1.76 17.70 0.04 0.00 imp:pre:2p; +imprégnèrent imprégner ver 1.76 17.70 0.01 0.07 ind:pas:3p; +imprégné imprégner ver m s 1.76 17.70 0.63 4.19 par:pas; +imprégnée imprégner ver f s 1.76 17.70 0.10 2.09 par:pas; +imprégnées imprégner ver f p 1.76 17.70 0.10 1.28 par:pas; +imprégnés imprégner ver m p 1.76 17.70 0.18 1.55 par:pas; +impréparation impréparation nom f s 0.00 0.14 0.00 0.14 +imprésario imprésario nom m s 1.21 1.49 1.05 1.22 +imprésarios imprésario nom m p 1.21 1.49 0.16 0.27 +imprésentable imprésentable adj s 0.00 0.20 0.00 0.14 +imprésentables imprésentable adj f p 0.00 0.20 0.00 0.07 +imprévisibilité imprévisibilité nom f s 0.17 0.20 0.17 0.20 +imprévisible imprévisible adj s 4.92 12.43 4.01 7.30 +imprévisiblement imprévisiblement adv 0.11 0.00 0.11 0.00 +imprévisibles imprévisible adj p 4.92 12.43 0.91 5.14 +imprévision imprévision nom f s 0.00 0.07 0.00 0.07 +imprévoyance imprévoyance nom f s 0.10 0.47 0.10 0.47 +imprévoyant imprévoyant adj m s 0.00 0.27 0.00 0.07 +imprévoyante imprévoyant adj f s 0.00 0.27 0.00 0.07 +imprévoyants imprévoyant adj m p 0.00 0.27 0.00 0.14 +imprévu imprévu nom m s 3.22 5.47 2.67 4.86 +imprévue imprévu adj f s 2.72 8.99 1.56 3.18 +imprévues imprévu adj f p 2.72 8.99 0.28 0.95 +imprévus imprévu nom m p 3.22 5.47 0.55 0.61 +impubliable impubliable adj s 0.01 0.34 0.01 0.27 +impubliables impubliable adj p 0.01 0.34 0.00 0.07 +impubère impubère adj f s 0.00 0.61 0.00 0.41 +impubères impubère adj p 0.00 0.61 0.00 0.20 +impécunieuse impécunieux adj f s 0.00 0.27 0.00 0.14 +impécunieux impécunieux adj m p 0.00 0.27 0.00 0.14 +impécuniosité impécuniosité nom f s 0.00 0.07 0.00 0.07 +impédance impédance nom f s 0.04 0.00 0.04 0.00 +impudemment impudemment adv 0.13 0.27 0.13 0.27 +impudence impudence nom f s 1.27 1.35 1.27 1.28 +impudences impudence nom f p 1.27 1.35 0.00 0.07 +impudent impudent adj m s 1.13 1.35 0.47 0.61 +impudente impudent adj f s 1.13 1.35 0.30 0.47 +impudentes impudent adj f p 1.13 1.35 0.02 0.00 +impudents impudent adj m p 1.13 1.35 0.34 0.27 +impudeur impudeur nom f s 0.25 4.19 0.25 4.05 +impudeurs impudeur nom f p 0.25 4.19 0.00 0.14 +impudicité impudicité nom f s 0.03 0.20 0.03 0.20 +impudique impudique adj s 0.65 3.04 0.63 2.23 +impudiquement impudiquement adv 0.01 0.20 0.01 0.20 +impudiques impudique adj p 0.65 3.04 0.03 0.81 +impuissance impuissance nom f s 2.50 16.62 2.50 16.28 +impuissances impuissance nom f p 2.50 16.62 0.00 0.34 +impuissant impuissant adj m s 7.58 11.55 4.49 4.93 +impuissante impuissant adj f s 7.58 11.55 1.14 4.46 +impuissantes impuissant adj f p 7.58 11.55 0.23 0.34 +impuissants impuissant adj m p 7.58 11.55 1.72 1.82 +impulsif impulsif adj m s 2.24 1.96 1.40 1.28 +impulsifs impulsif adj m p 2.24 1.96 0.26 0.14 +impulsion impulsion nom f s 4.58 8.38 3.00 6.01 +impulsions impulsion nom f p 4.58 8.38 1.58 2.36 +impulsive impulsif adj f s 2.24 1.96 0.54 0.47 +impulsivement impulsivement adv 0.07 0.34 0.07 0.34 +impulsives impulsif adj f p 2.24 1.96 0.04 0.07 +impulsivité impulsivité nom f s 0.13 0.07 0.13 0.07 +impuni impuni adj m s 1.48 0.74 0.89 0.34 +impunie impuni adj f s 1.48 0.74 0.46 0.07 +impunis impuni adj m p 1.48 0.74 0.13 0.34 +impénitent impénitent adj m s 0.07 1.35 0.03 0.68 +impénitente impénitent adj f s 0.07 1.35 0.01 0.00 +impénitents impénitent adj m p 0.07 1.35 0.03 0.68 +impunité impunité nom f s 0.93 1.42 0.93 1.42 +impunément impunément adv 1.90 3.24 1.90 3.24 +impénétrabilité impénétrabilité nom f s 0.00 0.20 0.00 0.20 +impénétrable impénétrable adj s 3.08 6.89 1.29 4.66 +impénétrables impénétrable adj p 3.08 6.89 1.79 2.23 +impur impur adj m s 3.91 4.53 1.44 2.23 +impératif impératif adj m s 1.38 3.78 1.21 1.55 +impératifs impératif nom m p 0.69 3.04 0.32 1.22 +impérative impératif adj f s 1.38 3.78 0.16 1.35 +impérativement impérativement adv 0.55 0.68 0.55 0.68 +impératives impératif adj f p 1.38 3.78 0.00 0.47 +impératrice impératrice nom f s 3.03 6.35 2.96 6.08 +impératrices impératrice nom f p 3.03 6.35 0.07 0.27 +impure impur adj f s 3.91 4.53 0.89 0.95 +impures impur adj f p 3.91 4.53 0.95 0.88 +impureté impureté nom f s 0.71 1.42 0.41 1.01 +impuretés impureté nom f p 0.71 1.42 0.31 0.41 +impérial impérial adj m s 6.77 19.12 2.10 7.64 +impériale impérial adj f s 6.77 19.12 4.21 7.77 +impériales impérial adj f p 6.77 19.12 0.13 2.09 +impérialisation impérialisation nom f s 0.01 0.00 0.01 0.00 +impérialisme impérialisme nom m s 0.64 1.35 0.64 1.35 +impérialiste impérialiste adj s 0.84 1.01 0.48 0.34 +impérialistes impérialiste adj p 0.84 1.01 0.35 0.68 +impériaux impérial adj m p 6.77 19.12 0.33 1.62 +impérieuse impérieux adj f s 0.54 12.09 0.03 4.66 +impérieusement impérieusement adv 0.00 1.69 0.00 1.69 +impérieuses impérieux adj f p 0.54 12.09 0.13 0.88 +impérieux impérieux adj m 0.54 12.09 0.38 6.55 +impérissable impérissable adj s 0.11 2.03 0.09 1.55 +impérissables impérissable adj p 0.11 2.03 0.02 0.47 +impéritie impéritie nom f s 0.00 0.20 0.00 0.20 +impurs impur adj m p 3.91 4.53 0.63 0.47 +imputable imputable adj s 0.03 0.74 0.02 0.54 +imputables imputable adj m p 0.03 0.74 0.01 0.20 +imputai imputer ver 0.90 2.77 0.00 0.07 ind:pas:1s; +imputaient imputer ver 0.90 2.77 0.02 0.20 ind:imp:3p; +imputais imputer ver 0.90 2.77 0.00 0.14 ind:imp:1s; +imputait imputer ver 0.90 2.77 0.00 0.41 ind:imp:3s; +imputant imputer ver 0.90 2.77 0.00 0.07 par:pre; +imputasse imputer ver 0.90 2.77 0.01 0.00 sub:imp:1s; +imputation imputation nom f s 0.04 0.54 0.03 0.20 +imputations imputation nom f p 0.04 0.54 0.01 0.34 +impute imputer ver 0.90 2.77 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imputer imputer ver 0.90 2.77 0.26 0.81 inf; +imputera imputer ver 0.90 2.77 0.00 0.07 ind:fut:3s; +imputerai imputer ver 0.90 2.77 0.01 0.07 ind:fut:1s; +imputeront imputer ver 0.90 2.77 0.01 0.00 ind:fut:3p; +impétigo impétigo nom m s 0.08 0.41 0.08 0.41 +imputât imputer ver 0.90 2.77 0.00 0.07 sub:imp:3s; +impétrant impétrant nom m s 0.02 0.27 0.01 0.20 +impétrante impétrant nom f s 0.02 0.27 0.00 0.07 +impétrants impétrant nom m p 0.02 0.27 0.01 0.00 +imputrescible imputrescible adj s 0.00 0.47 0.00 0.41 +imputrescibles imputrescible adj m p 0.00 0.47 0.00 0.07 +imputèrent imputer ver 0.90 2.77 0.00 0.14 ind:pas:3p; +imputé imputer ver m s 0.90 2.77 0.03 0.14 par:pas; +imputée imputer ver f s 0.90 2.77 0.30 0.27 par:pas; +imputées imputer ver f p 0.90 2.77 0.01 0.07 par:pas; +impétueuse impétueux adj f s 1.44 2.97 0.55 0.81 +impétueusement impétueusement adv 0.01 0.41 0.01 0.41 +impétueuses impétueux adj f p 1.44 2.97 0.00 0.14 +impétueux impétueux adj m 1.44 2.97 0.89 2.03 +impétuosité impétuosité nom f s 0.18 0.95 0.18 0.95 +imputés imputer ver m p 0.90 2.77 0.03 0.20 par:pas; +in_bord in_bord adj m s 0.01 0.00 0.01 0.00 +in_bord in_bord nom m s 0.01 0.00 0.01 0.00 +in_folio in_folio nom m 0.00 0.61 0.00 0.61 +in_folios in_folios nom m 0.00 0.20 0.00 0.20 +in_octavo in_octavo nom m 0.01 0.34 0.01 0.34 +in_octavos in_octavos nom m 0.00 0.07 0.00 0.07 +in_quarto in_quarto adj 0.00 0.07 0.00 0.07 +in_quarto in_quarto nom m 0.00 0.07 0.00 0.07 +in_seize in_seize nom m 0.00 0.07 0.00 0.07 +in_absentia in_absentia adv 0.02 0.00 0.02 0.00 +in_abstracto in_abstracto adv 0.00 0.20 0.00 0.20 +in_anima_vili in_anima_vili adv 0.00 0.07 0.00 0.07 +in_cauda_venenum in_cauda_venenum adv 0.00 0.14 0.00 0.14 +in_extenso in_extenso adv 0.00 0.54 0.00 0.54 +in_extremis in_extremis adv 0.07 2.64 0.07 2.64 +in_memoriam in_memoriam adv 0.15 0.00 0.15 0.00 +in_pace in_pace nom m 0.16 0.07 0.16 0.07 +in_petto in_petto adv 0.00 1.22 0.00 1.22 +in_utero in_utero adj f p 0.05 0.00 0.05 0.00 +in_utero in_utero adv 0.05 0.00 0.05 0.00 +in_vino_veritas in_vino_veritas adv 0.05 0.00 0.05 0.00 +in_vitro in_vitro adj 0.22 0.34 0.22 0.34 +in_vivo in_vivo adv 0.00 0.07 0.00 0.07 +in in adj_sup 47.17 11.62 47.17 11.62 +inabordable inabordable adj s 0.22 0.34 0.22 0.34 +inabouti inabouti adj m s 0.00 0.14 0.00 0.07 +inaboutie inabouti adj f s 0.00 0.14 0.00 0.07 +inacceptable inacceptable adj s 4.09 2.70 3.75 2.36 +inacceptables inacceptable adj p 4.09 2.70 0.33 0.34 +inaccessibilité inaccessibilité nom f s 0.01 0.27 0.01 0.27 +inaccessible inaccessible adj s 2.74 10.88 2.32 8.04 +inaccessibles inaccessible adj p 2.74 10.88 0.42 2.84 +inaccompli inaccompli adj m s 0.04 0.47 0.03 0.34 +inaccomplis inaccompli adj m p 0.04 0.47 0.01 0.14 +inaccomplissement inaccomplissement nom m s 0.00 0.07 0.00 0.07 +inaccoutumé inaccoutumé adj m s 0.02 0.61 0.02 0.20 +inaccoutumée inaccoutumé adj f s 0.02 0.61 0.00 0.34 +inaccoutumées inaccoutumé adj f p 0.02 0.61 0.00 0.07 +inachevé inachevé adj m s 3.44 7.09 1.24 3.04 +inachevée inachevé adj f s 3.44 7.09 1.73 2.57 +inachevées inachevé adj f p 3.44 7.09 0.18 0.95 +inachevés inachevé adj m p 3.44 7.09 0.29 0.54 +inachèvement inachèvement nom m s 0.01 0.54 0.01 0.54 +inactif inactif adj m s 1.29 1.22 0.74 0.34 +inactifs inactif adj m p 1.29 1.22 0.39 0.14 +inaction inaction nom f s 0.12 2.36 0.12 2.36 +inactivation inactivation nom f s 0.01 0.00 0.01 0.00 +inactive inactif adj f s 1.29 1.22 0.12 0.61 +inactives inactif adj f p 1.29 1.22 0.04 0.14 +inactivité inactivité nom f s 0.17 0.74 0.17 0.74 +inactivé inactivé adj m s 0.01 0.00 0.01 0.00 +inactuel inactuel adj m s 0.00 0.07 0.00 0.07 +inadaptable inadaptable adj s 0.00 0.07 0.00 0.07 +inadaptation inadaptation nom f s 0.05 0.54 0.05 0.54 +inadapté inadapté adj m s 0.39 0.54 0.16 0.34 +inadaptée inadapté adj f s 0.39 0.54 0.05 0.07 +inadaptées inadapté adj f p 0.39 0.54 0.01 0.00 +inadaptés inadapté adj m p 0.39 0.54 0.17 0.14 +inadmissible inadmissible adj s 2.29 3.04 2.24 2.64 +inadmissibles inadmissible adj p 2.29 3.04 0.05 0.41 +inadéquat inadéquat adj m s 0.61 0.81 0.14 0.27 +inadéquate inadéquat adj f s 0.61 0.81 0.29 0.07 +inadéquatement inadéquatement adv 0.01 0.00 0.01 0.00 +inadéquates inadéquat adj f p 0.61 0.81 0.04 0.07 +inadéquation inadéquation nom f s 0.01 0.07 0.01 0.07 +inadéquats inadéquat adj m p 0.61 0.81 0.15 0.41 +inadvertance inadvertance nom f s 0.58 1.55 0.58 1.49 +inadvertances inadvertance nom f p 0.58 1.55 0.00 0.07 +inaliénable inaliénable adj s 0.16 0.14 0.11 0.07 +inaliénables inaliénable adj m p 0.16 0.14 0.05 0.07 +inaltérable inaltérable adj s 0.58 5.14 0.47 4.66 +inaltérables inaltérable adj p 0.58 5.14 0.11 0.47 +inaltéré inaltéré adj m s 0.03 0.34 0.01 0.14 +inaltérée inaltéré adj f s 0.03 0.34 0.02 0.07 +inaltérées inaltéré adj f p 0.03 0.34 0.00 0.07 +inaltérés inaltéré adj m p 0.03 0.34 0.00 0.07 +inamical inamical adj m s 0.23 0.41 0.04 0.34 +inamicale inamical adj f s 0.23 0.41 0.17 0.07 +inamicaux inamical adj m p 0.23 0.41 0.02 0.00 +inamovible inamovible adj s 0.17 0.95 0.16 0.41 +inamovibles inamovible adj p 0.17 0.95 0.01 0.54 +inanalysable inanalysable adj f s 0.00 0.34 0.00 0.07 +inanalysables inanalysable adj p 0.00 0.34 0.00 0.27 +inane inane adj s 0.00 0.07 0.00 0.07 +inanimation inanimation nom f s 0.00 0.07 0.00 0.07 +inanimé inanimé adj m s 0.94 3.11 0.48 1.62 +inanimée inanimé adj f s 0.94 3.11 0.12 0.74 +inanimées inanimé adj f p 0.94 3.11 0.03 0.20 +inanimés inanimé adj m p 0.94 3.11 0.32 0.54 +inanition inanition nom f s 0.02 1.62 0.02 1.62 +inanité inanité nom f s 0.14 1.28 0.14 1.28 +inapaisable inapaisable adj s 0.00 0.47 0.00 0.47 +inapaisée inapaisé adj f s 0.01 0.14 0.00 0.07 +inapaisées inapaisé adj f p 0.01 0.14 0.00 0.07 +inapaisés inapaisé adj m p 0.01 0.14 0.01 0.00 +inaperçu inaperçu adj m s 3.37 7.57 1.66 2.91 +inaperçue inaperçu adj f s 3.37 7.57 0.81 2.97 +inaperçues inaperçu adj f p 3.37 7.57 0.23 0.68 +inaperçus inaperçu adj m p 3.37 7.57 0.68 1.01 +inapplicable inapplicable adj s 0.03 0.07 0.02 0.00 +inapplicables inapplicable adj m p 0.03 0.07 0.01 0.07 +inapplication inapplication nom f s 0.00 0.07 0.00 0.07 +inapprivoisables inapprivoisable adj p 0.00 0.07 0.00 0.07 +inapprochable inapprochable adj s 0.04 0.00 0.04 0.00 +inapproprié inapproprié adj m s 1.59 0.07 0.86 0.00 +inappropriée inapproprié adj f s 1.59 0.07 0.52 0.07 +inappropriées inapproprié adj f p 1.59 0.07 0.13 0.00 +inappropriés inapproprié adj m p 1.59 0.07 0.08 0.00 +inappréciable inappréciable adj s 0.00 0.68 0.00 0.61 +inappréciables inappréciable adj m p 0.00 0.68 0.00 0.07 +inappréciée inapprécié adj f s 0.01 0.00 0.01 0.00 +inappétence inappétence nom f s 0.00 0.27 0.00 0.27 +inapte inapte adj s 2.00 2.03 1.30 1.55 +inaptes inapte adj m p 2.00 2.03 0.70 0.47 +inaptitude inaptitude nom f s 0.30 1.01 0.29 1.01 +inaptitudes inaptitude nom f p 0.30 1.01 0.01 0.00 +inarrangeable inarrangeable adj s 0.00 0.07 0.00 0.07 +inarticulé inarticulé adj m s 0.15 1.55 0.03 0.20 +inarticulée inarticulé adj f s 0.15 1.55 0.02 0.14 +inarticulées inarticulé adj f p 0.15 1.55 0.00 0.20 +inarticulés inarticulé adj m p 0.15 1.55 0.10 1.01 +inassimilable inassimilable adj s 0.00 0.14 0.00 0.07 +inassimilables inassimilable adj p 0.00 0.14 0.00 0.07 +inassouvi inassouvi adj m s 0.09 1.96 0.04 0.41 +inassouvie inassouvi adj f s 0.09 1.96 0.02 0.47 +inassouvies inassouvi adj f p 0.09 1.96 0.00 0.20 +inassouvis inassouvi adj m p 0.09 1.96 0.02 0.88 +inassouvissable inassouvissable adj m s 0.00 0.27 0.00 0.14 +inassouvissables inassouvissable adj p 0.00 0.27 0.00 0.14 +inassouvissement inassouvissement nom m s 0.00 0.07 0.00 0.07 +inassurable inassurable adj s 0.02 0.00 0.02 0.00 +inattaquable inattaquable adj s 0.52 1.15 0.48 1.08 +inattaquables inattaquable adj m p 0.52 1.15 0.03 0.07 +inatteignable inatteignable adj m s 0.19 0.34 0.16 0.34 +inatteignables inatteignable adj p 0.19 0.34 0.04 0.00 +inattendu inattendu adj m s 6.10 25.14 3.58 10.41 +inattendue inattendu adj f s 6.10 25.14 1.90 10.41 +inattendues inattendu adj f p 6.10 25.14 0.43 2.16 +inattendus inattendu adj m p 6.10 25.14 0.20 2.16 +inattentif inattentif adj m s 0.17 1.62 0.16 0.88 +inattentifs inattentif adj m p 0.17 1.62 0.00 0.34 +inattention inattention nom f s 0.52 2.30 0.52 2.30 +inattentive inattentif adj f s 0.17 1.62 0.01 0.27 +inattentives inattentif adj f p 0.17 1.62 0.00 0.14 +inattrapable inattrapable adj s 0.00 0.07 0.00 0.07 +inaudible inaudible adj s 5.34 3.65 4.68 2.23 +inaudibles inaudible adj p 5.34 3.65 0.66 1.42 +inaugura inaugurer ver 2.41 5.54 0.00 0.20 ind:pas:3s; +inaugurai inaugurer ver 2.41 5.54 0.00 0.20 ind:pas:1s; +inaugurais inaugurer ver 2.41 5.54 0.00 0.07 ind:imp:1s; +inaugurait inaugurer ver 2.41 5.54 0.04 0.81 ind:imp:3s; +inaugural inaugural adj m s 0.26 1.01 0.22 0.41 +inaugurale inaugural adj f s 0.26 1.01 0.04 0.54 +inaugurales inaugural adj f p 0.26 1.01 0.00 0.07 +inaugurant inaugurer ver 2.41 5.54 0.01 0.41 par:pre; +inauguration inauguration nom f s 3.12 2.77 2.99 2.57 +inaugurations inauguration nom f p 3.12 2.77 0.12 0.20 +inaugure inaugurer ver 2.41 5.54 0.86 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inaugurer inaugurer ver 2.41 5.54 0.62 1.28 inf; +inaugurera inaugurer ver 2.41 5.54 0.23 0.00 ind:fut:3s; +inaugurions inaugurer ver 2.41 5.54 0.00 0.07 ind:imp:1p; +inaugurons inaugurer ver 2.41 5.54 0.01 0.14 imp:pre:1p;ind:pre:1p; +inaugurèrent inaugurer ver 2.41 5.54 0.00 0.14 ind:pas:3p; +inauguré inaugurer ver m s 2.41 5.54 0.55 1.15 par:pas; +inaugurée inaugurer ver f s 2.41 5.54 0.07 0.41 par:pas; +inaugurés inaugurer ver m p 2.41 5.54 0.01 0.14 par:pas; +inauthenticité inauthenticité nom f s 0.00 0.07 0.00 0.07 +inaverti inaverti adj m s 0.00 0.07 0.00 0.07 +inavouable inavouable adj s 1.27 2.84 0.96 1.76 +inavouablement inavouablement adv 0.00 0.07 0.00 0.07 +inavouables inavouable adj p 1.27 2.84 0.32 1.08 +inavoué inavoué adj m s 0.28 2.09 0.13 0.81 +inavouée inavoué adj f s 0.28 2.09 0.01 0.81 +inavouées inavoué adj f p 0.28 2.09 0.00 0.34 +inavoués inavoué adj m p 0.28 2.09 0.14 0.14 +inca inca adj 0.45 0.61 0.37 0.34 +incalculable incalculable adj s 0.94 2.09 0.77 1.55 +incalculables incalculable adj p 0.94 2.09 0.17 0.54 +incandescence incandescence nom f s 0.06 1.15 0.06 1.01 +incandescences incandescence nom f p 0.06 1.15 0.00 0.14 +incandescent incandescent adj m s 0.60 4.73 0.15 1.96 +incandescente incandescent adj f s 0.60 4.73 0.42 1.15 +incandescentes incandescent adj f p 0.60 4.73 0.01 1.15 +incandescents incandescent adj m p 0.60 4.73 0.02 0.47 +incantation incantation nom f s 1.92 2.50 1.33 1.08 +incantations incantation nom f p 1.92 2.50 0.59 1.42 +incantatoire incantatoire adj s 0.01 1.01 0.01 0.74 +incantatoires incantatoire adj p 0.01 1.01 0.00 0.27 +incantatrice incantateur nom f s 0.00 0.07 0.00 0.07 +incapable incapable adj s 20.93 46.22 17.38 38.72 +incapables incapable adj p 20.93 46.22 3.55 7.50 +incapacitant incapacitant adj m s 0.07 0.07 0.05 0.07 +incapacitante incapacitant adj f s 0.07 0.07 0.01 0.00 +incapacitants incapacitant adj m p 0.07 0.07 0.01 0.00 +incapacité incapacité nom f s 2.75 3.99 2.71 3.85 +incapacités incapacité nom f p 2.75 3.99 0.04 0.14 +incarcère incarcérer ver 1.70 1.35 0.06 0.07 imp:pre:2s;ind:pre:3s; +incarcération incarcération nom f s 0.84 0.81 0.84 0.81 +incarcérer incarcérer ver 1.70 1.35 0.24 0.07 inf; +incarcérez incarcérer ver 1.70 1.35 0.01 0.00 imp:pre:2p; +incarcéré incarcérer ver m s 1.70 1.35 1.19 0.74 par:pas; +incarcérée incarcérer ver f s 1.70 1.35 0.10 0.07 par:pas; +incarcérées incarcérer ver f p 1.70 1.35 0.01 0.07 par:pas; +incarcérés incarcérer ver m p 1.70 1.35 0.09 0.34 par:pas; +incarna incarner ver 3.31 16.28 0.00 0.20 ind:pas:3s; +incarnadines incarnadin adj f p 0.00 0.14 0.00 0.14 +incarnai incarner ver 3.31 16.28 0.00 0.07 ind:pas:1s; +incarnaient incarner ver 3.31 16.28 0.00 1.22 ind:imp:3p; +incarnais incarner ver 3.31 16.28 0.04 0.47 ind:imp:1s;ind:imp:2s; +incarnait incarner ver 3.31 16.28 0.15 4.32 ind:imp:3s; +incarnant incarner ver 3.31 16.28 0.20 0.88 par:pre; +incarnat incarnat nom m s 0.02 0.41 0.02 0.41 +incarnation incarnation nom f s 1.03 5.20 0.96 4.26 +incarnations incarnation nom f p 1.03 5.20 0.07 0.95 +incarne incarner ver 3.31 16.28 1.28 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incarnent incarner ver 3.31 16.28 0.12 0.54 ind:pre:3p; +incarner incarner ver 3.31 16.28 0.36 2.70 inf; +incarnera incarner ver 3.31 16.28 0.04 0.07 ind:fut:3s; +incarneraient incarner ver 3.31 16.28 0.00 0.07 cnd:pre:3p; +incarnerais incarner ver 3.31 16.28 0.01 0.00 cnd:pre:1s; +incarnerait incarner ver 3.31 16.28 0.01 0.07 cnd:pre:3s; +incarnerez incarner ver 3.31 16.28 0.01 0.00 ind:fut:2p; +incarnes incarner ver 3.31 16.28 0.17 0.07 ind:pre:2s; +incarnez incarner ver 3.31 16.28 0.08 0.00 ind:pre:2p; +incarniez incarner ver 3.31 16.28 0.01 0.00 ind:imp:2p; +incarnions incarner ver 3.31 16.28 0.00 0.20 ind:imp:1p; +incarnât incarner ver 3.31 16.28 0.01 0.07 sub:imp:3s; +incarné incarné adj m s 1.69 1.22 0.98 0.47 +incarnée incarné adj f s 1.69 1.22 0.63 0.61 +incarnées incarné adj f p 1.69 1.22 0.01 0.14 +incarnés incarné adj m p 1.69 1.22 0.06 0.00 +incartade incartade nom f s 0.11 2.03 0.11 0.81 +incartades incartade nom f p 0.11 2.03 0.00 1.22 +incas inca adj p 0.45 0.61 0.09 0.27 +incassable incassable adj s 0.88 0.88 0.80 0.54 +incassables incassable adj p 0.88 0.88 0.08 0.34 +incendia incendier ver 4.37 5.81 0.01 0.34 ind:pas:3s; +incendiaient incendier ver 4.37 5.81 0.00 0.14 ind:imp:3p; +incendiaire incendiaire nom s 1.35 0.81 0.83 0.41 +incendiaires incendiaire nom p 1.35 0.81 0.51 0.41 +incendiait incendier ver 4.37 5.81 0.04 1.01 ind:imp:3s; +incendiant incendier ver 4.37 5.81 0.01 0.41 par:pre; +incendie incendie nom m s 19.84 22.43 17.75 18.04 +incendient incendier ver 4.37 5.81 0.02 0.20 ind:pre:3p; +incendier incendier ver 4.37 5.81 0.93 1.89 inf; +incendieras incendier ver 4.37 5.81 0.01 0.00 ind:fut:2s; +incendies incendie nom m p 19.84 22.43 2.09 4.39 +incendiez incendier ver 4.37 5.81 0.13 0.00 imp:pre:2p;ind:pre:2p; +incendièrent incendier ver 4.37 5.81 0.00 0.07 ind:pas:3p; +incendié incendier ver m s 4.37 5.81 1.42 0.81 par:pas; +incendiée incendier ver f s 4.37 5.81 0.20 0.27 par:pas; +incendiées incendié adj f p 0.89 2.43 0.28 0.54 +incendiés incendier ver m p 4.37 5.81 0.04 0.07 par:pas; +incernable incernable adj m s 0.00 0.14 0.00 0.14 +incertain incertain adj m s 4.23 20.95 1.49 8.78 +incertaine incertain adj f s 4.23 20.95 1.27 6.76 +incertaines incertain adj f p 4.23 20.95 0.40 2.64 +incertains incertain adj m p 4.23 20.95 1.08 2.77 +incertitude incertitude nom f s 2.52 11.89 2.31 10.00 +incertitudes incertitude nom f p 2.52 11.89 0.21 1.89 +incessamment incessamment adv 0.48 3.58 0.48 3.58 +incessant incessant adj m s 1.79 12.23 0.65 4.12 +incessante incessant adj f s 1.79 12.23 0.33 3.31 +incessantes incessant adj f p 1.79 12.23 0.44 2.97 +incessants incessant adj m p 1.79 12.23 0.37 1.82 +inceste inceste nom m s 2.11 3.04 2.08 2.97 +incestes inceste nom m p 2.11 3.04 0.03 0.07 +incestueuse incestueux adj f s 0.69 1.76 0.17 0.41 +incestueuses incestueux adj f p 0.69 1.76 0.02 0.34 +incestueux incestueux adj m 0.69 1.76 0.50 1.01 +inch_allah inch_allah ono 0.27 0.47 0.27 0.47 +inchangeable inchangeable adj f s 0.02 0.07 0.02 0.07 +inchangé inchangé adj m s 1.22 1.69 0.37 0.68 +inchangée inchangé adj f s 1.22 1.69 0.54 0.61 +inchangées inchangé adj f p 1.22 1.69 0.16 0.14 +inchangés inchangé adj m p 1.22 1.69 0.15 0.27 +inchavirable inchavirable adj s 0.01 0.00 0.01 0.00 +inchiffrable inchiffrable adj s 0.00 0.14 0.00 0.14 +incidemment incidemment adv 0.27 1.28 0.27 1.28 +incidence incidence nom f s 0.82 1.35 0.68 0.81 +incidences incidence nom f p 0.82 1.35 0.14 0.54 +incident incident nom m s 20.35 29.93 17.73 21.08 +incidente incident adj f s 1.20 1.69 0.00 0.14 +incidentes incident adj f p 1.20 1.69 0.00 0.14 +incidents incident nom m p 20.35 29.93 2.62 8.85 +incinère incinérer ver 3.79 1.76 0.13 0.07 ind:pre:1s;ind:pre:3s; +incinérait incinérer ver 3.79 1.76 0.00 0.07 ind:imp:3s; +incinérant incinérer ver 3.79 1.76 0.01 0.00 par:pre; +incinérateur incinérateur nom m s 0.67 0.27 0.63 0.20 +incinérateurs incinérateur nom m p 0.67 0.27 0.04 0.07 +incinération incinération nom f s 0.48 1.62 0.48 1.62 +incinérer incinérer ver 3.79 1.76 1.50 0.54 inf; +incinérez incinérer ver 3.79 1.76 0.06 0.00 imp:pre:2p;ind:pre:2p; +incinéré incinérer ver m s 3.79 1.76 1.02 0.54 par:pas; +incinérée incinérer ver f s 3.79 1.76 0.66 0.47 par:pas; +incinérés incinérer ver m p 3.79 1.76 0.41 0.07 par:pas; +incirconcis incirconcis adj m 0.01 0.27 0.01 0.27 +incisa inciser ver 1.05 1.82 0.00 0.07 ind:pas:3s; +incisaient inciser ver 1.05 1.82 0.00 0.20 ind:imp:3p; +incisait inciser ver 1.05 1.82 0.00 0.27 ind:imp:3s; +incisant inciser ver 1.05 1.82 0.11 0.41 par:pre; +incise inciser ver 1.05 1.82 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inciser inciser ver 1.05 1.82 0.36 0.27 inf; +incisera inciser ver 1.05 1.82 0.00 0.07 ind:fut:3s; +incises inciser ver 1.05 1.82 0.02 0.00 ind:pre:2s; +incisez inciser ver 1.05 1.82 0.04 0.07 imp:pre:2p;ind:pre:2p; +incisif incisif adj m s 0.18 1.89 0.07 0.88 +incisifs incisif adj m p 0.18 1.89 0.03 0.41 +incision incision nom f s 2.62 0.68 2.27 0.47 +incisions incision nom f p 2.62 0.68 0.35 0.20 +incisive incisive nom f s 0.67 1.42 0.28 0.20 +incisives incisive nom f p 0.67 1.42 0.39 1.22 +incisé inciser ver m s 1.05 1.82 0.19 0.07 par:pas; +incisée inciser ver f s 1.05 1.82 0.12 0.07 par:pas; +incisées inciser ver f p 1.05 1.82 0.03 0.07 par:pas; +incisés inciser ver m p 1.05 1.82 0.01 0.07 par:pas; +incita inciter ver 6.32 10.47 0.14 0.47 ind:pas:3s; +incitaient inciter ver 6.32 10.47 0.01 0.88 ind:imp:3p; +incitait inciter ver 6.32 10.47 0.38 2.16 ind:imp:3s; +incitant inciter ver 6.32 10.47 0.08 0.47 par:pre; +incitateur incitateur nom m s 0.04 0.07 0.04 0.00 +incitatif incitatif adj m s 0.01 0.07 0.01 0.07 +incitation incitation nom f s 1.24 0.54 1.24 0.54 +incitatrice incitateur nom f s 0.04 0.07 0.00 0.07 +incite inciter ver 6.32 10.47 1.61 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incitent inciter ver 6.32 10.47 0.37 0.68 ind:pre:3p; +inciter inciter ver 6.32 10.47 2.01 2.43 inf; +incitera inciter ver 6.32 10.47 0.10 0.14 ind:fut:3s; +inciterai inciter ver 6.32 10.47 0.14 0.00 ind:fut:1s; +inciteraient inciter ver 6.32 10.47 0.01 0.07 cnd:pre:3p; +inciterais inciter ver 6.32 10.47 0.02 0.00 cnd:pre:1s; +inciterait inciter ver 6.32 10.47 0.14 0.20 cnd:pre:3s; +inciteront inciter ver 6.32 10.47 0.01 0.00 ind:fut:3p; +incitez inciter ver 6.32 10.47 0.23 0.07 imp:pre:2p;ind:pre:2p; +incitiez inciter ver 6.32 10.47 0.03 0.00 sub:pre:2p; +incitèrent inciter ver 6.32 10.47 0.01 0.14 ind:pas:3p; +incité inciter ver m s 6.32 10.47 0.77 0.61 par:pas; +incitée inciter ver f s 6.32 10.47 0.06 0.47 par:pas; +incités inciter ver m p 6.32 10.47 0.20 0.07 par:pas; +incivil incivil adj m s 0.00 0.20 0.00 0.07 +incivils incivil adj m p 0.00 0.20 0.00 0.14 +inclassable inclassable adj m s 0.30 0.20 0.02 0.14 +inclassables inclassable adj p 0.30 0.20 0.28 0.07 +inclina incliner ver 7.25 50.00 0.23 8.85 ind:pas:3s; +inclinable inclinable adj m s 0.07 0.07 0.04 0.07 +inclinables inclinable adj m p 0.07 0.07 0.03 0.00 +inclinai incliner ver 7.25 50.00 0.00 0.68 ind:pas:1s; +inclinaient incliner ver 7.25 50.00 0.10 2.30 ind:imp:3p; +inclinais incliner ver 7.25 50.00 0.00 1.08 ind:imp:1s; +inclinaison inclinaison nom f s 0.78 3.04 0.73 2.77 +inclinaisons inclinaison nom f p 0.78 3.04 0.05 0.27 +inclinait incliner ver 7.25 50.00 0.13 4.12 ind:imp:3s; +inclinant incliner ver 7.25 50.00 0.21 4.19 par:pre; +inclinante inclinant adj f s 0.00 0.07 0.00 0.07 +inclination inclination nom f s 0.52 2.57 0.38 2.03 +inclinations inclination nom f p 0.52 2.57 0.14 0.54 +incline incliner ver 7.25 50.00 3.79 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +inclinent incliner ver 7.25 50.00 0.41 1.96 ind:pre:3p; +incliner incliner ver 7.25 50.00 0.78 5.81 inf; +inclinerai incliner ver 7.25 50.00 0.04 0.00 ind:fut:1s; +inclineraient incliner ver 7.25 50.00 0.00 0.20 cnd:pre:3p; +inclinerais incliner ver 7.25 50.00 0.16 0.14 cnd:pre:1s; +inclinerait incliner ver 7.25 50.00 0.00 0.34 cnd:pre:3s; +inclineras incliner ver 7.25 50.00 0.03 0.00 ind:fut:2s; +inclinerez incliner ver 7.25 50.00 0.01 0.00 ind:fut:2p; +inclineront incliner ver 7.25 50.00 0.12 0.07 ind:fut:3p; +inclinez incliner ver 7.25 50.00 0.46 0.00 imp:pre:2p;ind:pre:2p; +inclinions incliner ver 7.25 50.00 0.00 0.14 ind:imp:1p; +inclinomètre inclinomètre nom m s 0.01 0.00 0.01 0.00 +inclinons incliner ver 7.25 50.00 0.23 0.00 imp:pre:1p;ind:pre:1p; +inclinât incliner ver 7.25 50.00 0.00 0.20 sub:imp:3s; +inclinèrent incliner ver 7.25 50.00 0.01 0.61 ind:pas:3p; +incliné incliner ver m s 7.25 50.00 0.33 5.74 par:pas; +inclinée incliné adj f s 0.19 5.54 0.12 1.35 +inclinées incliner ver f p 7.25 50.00 0.10 0.34 par:pas; +inclinés incliner ver m p 7.25 50.00 0.08 0.81 par:pas; +incluais inclure ver 8.12 3.51 0.00 0.07 ind:imp:1s; +incluait inclure ver 8.12 3.51 0.20 0.41 ind:imp:3s; +incluant inclure ver 8.12 3.51 0.91 0.27 par:pre; +inclue inclure ver 8.12 3.51 0.40 0.07 sub:pre:1s;sub:pre:3s; +incluent inclure ver 8.12 3.51 0.25 0.00 ind:pre:3p; +incluez inclure ver 8.12 3.51 0.10 0.00 imp:pre:2p;ind:pre:2p; +inclémence inclémence nom f s 0.00 0.27 0.00 0.20 +inclémences inclémence nom f p 0.00 0.27 0.00 0.07 +inclément inclément adj m s 0.02 0.07 0.02 0.00 +inclémente inclément adj f s 0.02 0.07 0.00 0.07 +incluons inclure ver 8.12 3.51 0.00 0.07 ind:pre:1p; +inclura inclure ver 8.12 3.51 0.02 0.00 ind:fut:3s; +inclurai inclure ver 8.12 3.51 0.03 0.00 ind:fut:1s; +inclurait inclure ver 8.12 3.51 0.06 0.00 cnd:pre:3s; +inclure inclure ver 8.12 3.51 1.85 0.95 ind:pre:2p;inf; +inclus inclure ver m 8.12 3.51 2.53 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +incluse inclus adj f s 0.70 0.81 0.45 0.41 +incluses inclus adj f p 0.70 0.81 0.04 0.20 +inclusion inclusion nom f s 0.11 0.14 0.11 0.14 +inclusive inclusif adj f s 0.01 0.07 0.01 0.07 +inclusivement inclusivement adv 0.01 0.27 0.01 0.27 +inclut inclure ver 8.12 3.51 1.78 0.54 ind:pre:3s;ind:pas:3s; +incoercible incoercible adj s 0.12 0.61 0.11 0.34 +incoerciblement incoerciblement adv 0.00 0.20 0.00 0.20 +incoercibles incoercible adj p 0.12 0.61 0.01 0.27 +incognito incognito adv 1.87 2.36 1.87 2.36 +incognitos incognito nom m p 0.30 1.55 0.00 0.07 +incohérence incohérence nom f s 1.11 2.70 0.77 2.09 +incohérences incohérence nom f p 1.11 2.70 0.34 0.61 +incohérent incohérent adj m s 0.86 5.27 0.27 1.76 +incohérente incohérent adj f s 0.86 5.27 0.29 1.28 +incohérentes incohérent adj f p 0.86 5.27 0.06 1.15 +incohérents incohérent adj m p 0.86 5.27 0.25 1.08 +incoiffables incoiffable adj m p 0.01 0.14 0.01 0.14 +incollable incollable adj m s 0.10 0.14 0.10 0.14 +incolore incolore adj s 0.14 5.00 0.14 3.92 +incolores incolore adj p 0.14 5.00 0.00 1.08 +incombaient incomber ver 1.43 5.95 0.01 0.61 ind:imp:3p; +incombait incomber ver 1.43 5.95 0.04 2.70 ind:imp:3s; +incombant incomber ver 1.43 5.95 0.02 0.07 par:pre; +incombe incomber ver 1.43 5.95 1.28 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incombent incomber ver 1.43 5.95 0.03 0.34 ind:pre:3p; +incomber incomber ver 1.43 5.95 0.02 0.14 inf; +incombera incomber ver 1.43 5.95 0.02 0.07 ind:fut:3s; +incomberait incomber ver 1.43 5.95 0.01 0.20 cnd:pre:3s; +incombèrent incomber ver 1.43 5.95 0.00 0.07 ind:pas:3p; +incombustible incombustible adj f s 0.02 0.00 0.01 0.00 +incombustibles incombustible adj p 0.02 0.00 0.01 0.00 +incomestible incomestible adj f s 0.00 0.14 0.00 0.14 +incommensurable incommensurable adj s 0.28 1.89 0.16 1.82 +incommensurablement incommensurablement adv 0.00 0.14 0.00 0.14 +incommensurables incommensurable adj p 0.28 1.89 0.12 0.07 +incommodait incommoder ver 0.85 1.96 0.01 0.61 ind:imp:3s; +incommodant incommodant adj m s 0.05 0.07 0.04 0.00 +incommodante incommodant adj f s 0.05 0.07 0.00 0.07 +incommodantes incommodant adj f p 0.05 0.07 0.01 0.00 +incommode incommoder ver 0.85 1.96 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incommoder incommoder ver 0.85 1.96 0.05 0.34 inf; +incommodera incommoder ver 0.85 1.96 0.14 0.00 ind:fut:3s; +incommoderai incommoder ver 0.85 1.96 0.11 0.00 ind:fut:1s; +incommodes incommode adj p 0.23 1.55 0.00 0.47 +incommodez incommoder ver 0.85 1.96 0.17 0.00 imp:pre:2p;ind:pre:2p; +incommodité incommodité nom f s 0.00 0.68 0.00 0.41 +incommodités incommodité nom f p 0.00 0.68 0.00 0.27 +incommodé incommoder ver m s 0.85 1.96 0.07 0.47 par:pas; +incommodée incommoder ver f s 0.85 1.96 0.03 0.14 par:pas; +incommodées incommoder ver f p 0.85 1.96 0.00 0.07 par:pas; +incommodés incommoder ver m p 0.85 1.96 0.00 0.14 par:pas; +incommunicabilité incommunicabilité nom f s 0.12 0.07 0.12 0.07 +incommunicable incommunicable adj s 0.00 1.42 0.00 1.35 +incommunicables incommunicable adj p 0.00 1.42 0.00 0.07 +incomparable incomparable adj s 1.95 9.32 1.64 7.43 +incomparablement incomparablement adv 0.01 1.08 0.01 1.08 +incomparables incomparable adj p 1.95 9.32 0.31 1.89 +incompatibilité incompatibilité nom f s 0.71 0.61 0.59 0.47 +incompatibilités incompatibilité nom f p 0.71 0.61 0.11 0.14 +incompatible incompatible adj s 1.23 3.11 0.66 1.89 +incompatibles incompatible adj p 1.23 3.11 0.56 1.22 +incomplet incomplet adj m s 2.27 2.43 1.14 1.15 +incomplets incomplet adj m p 2.27 2.43 0.17 0.27 +incomplète incomplet adj f s 2.27 2.43 0.57 0.54 +incomplètement incomplètement adv 0.00 0.20 0.00 0.20 +incomplètes incomplet adj f p 2.27 2.43 0.40 0.47 +incomplétude incomplétude nom f s 0.01 0.00 0.01 0.00 +incompressible incompressible adj s 0.03 0.00 0.03 0.00 +incompris incompris adj m 0.93 1.35 0.73 0.74 +incomprise incompris adj f s 0.93 1.35 0.18 0.54 +incomprises incompris nom f p 0.29 0.34 0.10 0.07 +incompréhensible incompréhensible adj s 5.16 17.97 4.54 11.89 +incompréhensiblement incompréhensiblement adv 0.00 0.47 0.00 0.47 +incompréhensibles incompréhensible adj p 5.16 17.97 0.63 6.08 +incompréhensif incompréhensif adj m s 0.01 0.47 0.01 0.27 +incompréhensifs incompréhensif adj m p 0.01 0.47 0.00 0.20 +incompréhension incompréhension nom f s 0.65 4.59 0.65 4.53 +incompréhensions incompréhension nom f p 0.65 4.59 0.00 0.07 +incompétence incompétence nom f s 1.64 1.35 1.62 1.28 +incompétences incompétence nom f p 1.64 1.35 0.02 0.07 +incompétent incompétent adj m s 2.30 0.81 1.25 0.41 +incompétente incompétent adj f s 2.30 0.81 0.35 0.14 +incompétents incompétent adj m p 2.30 0.81 0.69 0.27 +inconcevable inconcevable adj s 1.91 5.68 1.75 5.27 +inconcevablement inconcevablement adv 0.00 0.07 0.00 0.07 +inconcevables inconcevable adj p 1.91 5.68 0.16 0.41 +inconciliable inconciliable adj m s 0.35 1.22 0.01 0.61 +inconciliables inconciliable adj p 0.35 1.22 0.34 0.61 +inconditionnel inconditionnel adj m s 1.20 0.54 0.45 0.27 +inconditionnelle inconditionnel adj f s 1.20 0.54 0.71 0.27 +inconditionnellement inconditionnellement adv 0.05 0.00 0.05 0.00 +inconditionnelles inconditionnel adj f p 1.20 0.54 0.02 0.00 +inconditionnels inconditionnel adj m p 1.20 0.54 0.01 0.00 +inconditionné inconditionné adj m s 0.00 0.20 0.00 0.07 +inconditionnée inconditionné adj f s 0.00 0.20 0.00 0.14 +inconduite inconduite nom f s 0.06 0.68 0.06 0.68 +inconfiance inconfiance nom f s 0.00 0.14 0.00 0.14 +inconfort inconfort nom m s 0.37 2.16 0.37 2.16 +inconfortable inconfortable adj s 1.90 2.09 1.77 1.89 +inconfortablement inconfortablement adv 0.01 0.34 0.01 0.34 +inconfortables inconfortable adj p 1.90 2.09 0.13 0.20 +incongelables incongelable adj f p 0.00 0.07 0.00 0.07 +incongru incongru adj m s 0.32 7.50 0.25 3.72 +incongrue incongru adj f s 0.32 7.50 0.05 2.03 +incongrues incongru adj f p 0.32 7.50 0.00 0.68 +incongruité incongruité nom f s 0.11 1.49 0.01 1.22 +incongruités incongruité nom f p 0.11 1.49 0.10 0.27 +incongrus incongru adj m p 0.32 7.50 0.02 1.08 +inconnaissable inconnaissable adj f s 0.01 0.41 0.01 0.41 +inconnaissance inconnaissance nom f s 0.00 0.07 0.00 0.07 +inconnu inconnu nom m s 24.25 40.41 13.29 22.97 +inconnue inconnu adj f s 23.13 61.82 7.24 17.16 +inconnues inconnu adj f p 23.13 61.82 2.23 9.05 +inconnus inconnu nom m p 24.25 40.41 5.50 9.19 +inconsciemment inconsciemment adv 2.00 6.28 2.00 6.28 +inconscience inconscience nom f s 1.23 6.69 1.23 6.55 +inconsciences inconscience nom f p 1.23 6.69 0.00 0.14 +inconscient inconscient adj m s 10.45 10.74 6.06 4.93 +inconsciente inconscient adj f s 10.45 10.74 3.35 3.85 +inconscientes inconscient adj f p 10.45 10.74 0.21 0.41 +inconscients inconscient adj m p 10.45 10.74 0.83 1.55 +inconsidéré inconsidéré adj m s 0.86 1.22 0.42 0.41 +inconsidérée inconsidéré adj f s 0.86 1.22 0.05 0.20 +inconsidérées inconsidéré adj f p 0.86 1.22 0.39 0.34 +inconsidérément inconsidérément adv 0.07 0.41 0.07 0.41 +inconsidérés inconsidéré adj m p 0.86 1.22 0.00 0.27 +inconsistance inconsistance nom f s 0.00 0.88 0.00 0.88 +inconsistant inconsistant adj m s 0.21 2.50 0.01 1.42 +inconsistante inconsistant adj f s 0.21 2.50 0.03 0.34 +inconsistantes inconsistant adj f p 0.21 2.50 0.03 0.20 +inconsistants inconsistant adj m p 0.21 2.50 0.14 0.54 +inconsolable inconsolable adj s 1.41 1.69 1.37 1.42 +inconsolables inconsolable adj m p 1.41 1.69 0.05 0.27 +inconsolé inconsolé adj m s 0.00 0.47 0.00 0.07 +inconsolée inconsolé adj f s 0.00 0.47 0.00 0.14 +inconsolées inconsolé adj f p 0.00 0.47 0.00 0.07 +inconsolés inconsolé adj m p 0.00 0.47 0.00 0.20 +inconsommable inconsommable adj s 0.00 0.14 0.00 0.14 +inconstance inconstance nom f s 0.26 0.95 0.26 0.95 +inconstant inconstant adj m s 0.85 0.54 0.32 0.34 +inconstante inconstant adj f s 0.85 0.54 0.26 0.20 +inconstants inconstant adj m p 0.85 0.54 0.28 0.00 +inconstitutionnel inconstitutionnel adj m s 0.24 0.14 0.08 0.07 +inconstitutionnelle inconstitutionnel adj f s 0.24 0.14 0.16 0.07 +inconstructibles inconstructible adj m p 0.01 0.00 0.01 0.00 +inconséquence inconséquence nom f s 0.04 1.42 0.04 1.08 +inconséquences inconséquence nom f p 0.04 1.42 0.00 0.34 +inconséquent inconséquent adj m s 0.27 0.88 0.13 0.27 +inconséquente inconséquent adj f s 0.27 0.88 0.11 0.34 +inconséquents inconséquent adj m p 0.27 0.88 0.04 0.27 +incontestable incontestable adj s 1.29 1.89 0.87 1.42 +incontestablement incontestablement adv 0.61 2.09 0.61 2.09 +incontestables incontestable adj p 1.29 1.89 0.43 0.47 +incontesté incontesté adj m s 0.64 1.69 0.40 1.15 +incontestée incontesté adj f s 0.64 1.69 0.23 0.34 +incontestés incontesté adj m p 0.64 1.69 0.01 0.20 +incontinence incontinence nom f s 0.28 0.68 0.28 0.34 +incontinences incontinence nom f p 0.28 0.68 0.00 0.34 +incontinent incontinent adj m s 0.29 1.49 0.20 1.08 +incontinente incontinent adj f s 0.29 1.49 0.06 0.07 +incontinentes incontinent adj f p 0.29 1.49 0.01 0.07 +incontinents incontinent adj m p 0.29 1.49 0.02 0.27 +incontournable incontournable adj s 0.58 0.54 0.50 0.41 +incontournables incontournable adj p 0.58 0.54 0.08 0.14 +incontrôlable incontrôlable adj s 2.65 1.82 2.08 1.01 +incontrôlables incontrôlable adj p 2.65 1.82 0.57 0.81 +incontrôlé incontrôlé adj m s 0.73 1.01 0.13 0.14 +incontrôlée incontrôlé adj f s 0.73 1.01 0.40 0.34 +incontrôlées incontrôlé adj f p 0.73 1.01 0.17 0.27 +incontrôlés incontrôlé adj m p 0.73 1.01 0.03 0.27 +inconvenance inconvenance nom f s 0.32 1.28 0.29 0.95 +inconvenances inconvenance nom f p 0.32 1.28 0.02 0.34 +inconvenant inconvenant adj m s 1.67 2.97 1.14 1.28 +inconvenante inconvenant adj f s 1.67 2.97 0.36 0.68 +inconvenantes inconvenant adj f p 1.67 2.97 0.05 0.74 +inconvenants inconvenant adj m p 1.67 2.97 0.12 0.27 +inconvertible inconvertible adj s 0.00 0.07 0.00 0.07 +inconvertissable inconvertissable adj m s 0.00 0.07 0.00 0.07 +inconvénient inconvénient nom m s 5.23 9.05 3.58 5.54 +inconvénients inconvénient nom m p 5.23 9.05 1.65 3.51 +incoordination incoordination nom f s 0.01 0.00 0.01 0.00 +incorpora incorporer ver 1.54 7.23 0.01 0.07 ind:pas:3s; +incorporable incorporable adj m s 0.01 0.00 0.01 0.00 +incorporaient incorporer ver 1.54 7.23 0.00 0.34 ind:imp:3p; +incorporait incorporer ver 1.54 7.23 0.02 0.41 ind:imp:3s; +incorporant incorporer ver 1.54 7.23 0.03 0.47 par:pre; +incorporation incorporation nom f s 0.46 1.35 0.46 1.28 +incorporations incorporation nom f p 0.46 1.35 0.00 0.07 +incorpore incorporer ver 1.54 7.23 0.24 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incorporel incorporel adj m s 0.28 0.27 0.28 0.07 +incorporelle incorporel adj f s 0.28 0.27 0.00 0.14 +incorporelles incorporel adj f p 0.28 0.27 0.00 0.07 +incorporent incorporer ver 1.54 7.23 0.00 0.34 ind:pre:3p; +incorporer incorporer ver 1.54 7.23 0.32 1.42 inf; +incorporez incorporer ver 1.54 7.23 0.01 0.07 imp:pre:2p; +incorporé incorporer ver m s 1.54 7.23 0.56 1.22 par:pas; +incorporée incorporer ver f s 1.54 7.23 0.19 0.81 par:pas; +incorporées incorporer ver f p 1.54 7.23 0.01 0.34 par:pas; +incorporés incorporer ver m p 1.54 7.23 0.15 1.42 par:pas; +incorrect incorrect adj m s 2.34 0.68 1.67 0.27 +incorrecte incorrect adj f s 2.34 0.68 0.61 0.34 +incorrectement incorrectement adv 0.06 0.07 0.06 0.07 +incorrection incorrection nom f s 0.02 0.34 0.02 0.34 +incorrects incorrect adj m p 2.34 0.68 0.06 0.07 +incorrigible incorrigible adj s 1.89 2.23 1.72 1.89 +incorrigiblement incorrigiblement adv 0.00 0.07 0.00 0.07 +incorrigibles incorrigible adj p 1.89 2.23 0.16 0.34 +incorruptibilité incorruptibilité nom f s 0.03 0.14 0.03 0.14 +incorruptible incorruptible adj s 0.53 1.01 0.47 0.68 +incorruptibles incorruptible adj p 0.53 1.01 0.06 0.34 +increvable increvable adj s 0.52 0.95 0.35 0.61 +increvables increvable adj m p 0.52 0.95 0.17 0.34 +incrimina incriminer ver 1.25 0.54 0.00 0.07 ind:pas:3s; +incriminant incriminer ver 1.25 0.54 0.19 0.00 par:pre; +incrimination incrimination nom f s 0.01 0.00 0.01 0.00 +incrimine incriminer ver 1.25 0.54 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incriminent incriminer ver 1.25 0.54 0.06 0.00 ind:pre:3p; +incriminer incriminer ver 1.25 0.54 0.57 0.20 inf; +incriminé incriminer ver m s 1.25 0.54 0.30 0.07 par:pas; +incriminée incriminer ver f s 1.25 0.54 0.03 0.07 par:pas; +incriminées incriminer ver f p 1.25 0.54 0.01 0.07 par:pas; +incrochetable incrochetable adj s 0.01 0.00 0.01 0.00 +incroyable incroyable adj s 74.67 22.64 69.22 19.32 +incroyablement incroyablement adv 5.55 4.53 5.55 4.53 +incroyables incroyable adj p 74.67 22.64 5.46 3.31 +incroyance incroyance nom f s 0.20 0.34 0.20 0.34 +incroyant incroyant nom m s 0.16 1.08 0.06 0.34 +incroyante incroyant nom f s 0.16 1.08 0.00 0.14 +incroyants incroyant nom m p 0.16 1.08 0.10 0.61 +incrédibilité incrédibilité nom f s 0.00 0.20 0.00 0.20 +incrédule incrédule adj s 0.46 9.86 0.14 8.45 +incrédules incrédule adj p 0.46 9.86 0.32 1.42 +incrédulité incrédulité nom f s 0.58 5.00 0.58 5.00 +incrusta incruster ver 2.77 14.46 0.00 0.47 ind:pas:3s; +incrustaient incruster ver 2.77 14.46 0.12 0.27 ind:imp:3p; +incrustais incruster ver 2.77 14.46 0.00 0.34 ind:imp:1s;ind:imp:2s; +incrustait incruster ver 2.77 14.46 0.01 1.01 ind:imp:3s; +incrustant incruster ver 2.77 14.46 0.00 0.68 par:pre; +incrustation incrustation nom f s 0.12 1.62 0.06 0.20 +incrustations incrustation nom f p 0.12 1.62 0.06 1.42 +incruste incruster ver 2.77 14.46 0.59 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incrustent incruster ver 2.77 14.46 0.00 0.61 ind:pre:3p; +incruster incruster ver 2.77 14.46 0.84 0.68 inf; +incrusterait incruster ver 2.77 14.46 0.00 0.14 cnd:pre:3s; +incrustez incruster ver 2.77 14.46 0.02 0.00 imp:pre:2p;ind:pre:2p; +incrustèrent incruster ver 2.77 14.46 0.00 0.07 ind:pas:3p; +incrusté incruster ver m s 2.77 14.46 0.43 2.70 par:pas; +incrustée incruster ver f s 2.77 14.46 0.44 2.77 par:pas; +incrustées incruster ver f p 2.77 14.46 0.17 1.55 par:pas; +incrustés incruster ver m p 2.77 14.46 0.14 2.23 par:pas; +incréé incréé adj m s 0.14 0.14 0.14 0.00 +incréée incréé adj f s 0.14 0.14 0.00 0.14 +incubateur incubateur nom m s 0.41 0.07 0.34 0.00 +incubateurs incubateur nom m p 0.41 0.07 0.07 0.07 +incubation incubation nom f s 0.53 0.54 0.53 0.54 +incube incube nom m s 0.10 0.14 0.07 0.07 +incuber incuber ver 0.17 0.00 0.05 0.00 inf; +incubes incube nom m p 0.10 0.14 0.03 0.07 +incubé incuber ver m s 0.17 0.00 0.12 0.00 par:pas; +inculcation inculcation nom f s 0.00 0.07 0.00 0.07 +inculpa inculper ver 7.40 1.22 0.01 0.07 ind:pas:3s; +inculpant inculper ver 7.40 1.22 0.03 0.00 par:pre; +inculpation inculpation nom f s 2.55 1.55 2.05 1.42 +inculpations inculpation nom f p 2.55 1.55 0.51 0.14 +inculpe inculper ver 7.40 1.22 0.64 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inculpent inculper ver 7.40 1.22 0.03 0.00 ind:pre:3p; +inculper inculper ver 7.40 1.22 2.95 0.54 ind:pre:2p;inf; +inculpera inculper ver 7.40 1.22 0.15 0.00 ind:fut:3s; +inculperai inculper ver 7.40 1.22 0.04 0.00 ind:fut:1s; +inculperais inculper ver 7.40 1.22 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +inculperont inculper ver 7.40 1.22 0.01 0.00 ind:fut:3p; +inculpez inculper ver 7.40 1.22 0.33 0.00 imp:pre:2p;ind:pre:2p; +inculpons inculper ver 7.40 1.22 0.04 0.00 imp:pre:1p;ind:pre:1p; +inculpé inculper ver m s 7.40 1.22 2.33 0.41 par:pas; +inculpée inculper ver f s 7.40 1.22 0.49 0.00 par:pas; +inculpés inculper ver m p 7.40 1.22 0.33 0.20 par:pas; +inculqua inculquer ver 1.19 4.05 0.01 0.20 ind:pas:3s; +inculquait inculquer ver 1.19 4.05 0.10 0.27 ind:imp:3s; +inculquant inculquer ver 1.19 4.05 0.01 0.00 par:pre; +inculque inculquer ver 1.19 4.05 0.10 0.20 ind:pre:1s;ind:pre:3s; +inculquent inculquer ver 1.19 4.05 0.00 0.07 ind:pre:3p; +inculquer inculquer ver 1.19 4.05 0.62 1.42 inf; +inculquons inculquer ver 1.19 4.05 0.01 0.00 ind:pre:1p; +inculquât inculquer ver 1.19 4.05 0.00 0.07 sub:imp:3s; +inculqué inculquer ver m s 1.19 4.05 0.29 0.74 par:pas; +inculquée inculquer ver f s 1.19 4.05 0.04 0.54 par:pas; +inculquées inculquer ver f p 1.19 4.05 0.01 0.14 par:pas; +inculqués inculquer ver m p 1.19 4.05 0.00 0.41 par:pas; +inculte inculte adj s 2.20 2.23 1.53 1.49 +incultes inculte adj p 2.20 2.23 0.67 0.74 +incultivable incultivable adj f s 0.00 0.27 0.00 0.20 +incultivables incultivable adj m p 0.00 0.27 0.00 0.07 +inculture inculture nom f s 0.00 0.41 0.00 0.41 +incunables incunable nom m p 0.00 0.47 0.00 0.47 +incurable incurable adj s 2.44 2.84 2.26 2.36 +incurablement incurablement adv 0.12 0.41 0.12 0.41 +incurables incurable nom p 0.80 0.20 0.36 0.07 +incurie incurie nom f s 0.11 0.68 0.11 0.68 +incurieux incurieux adj m s 0.00 0.07 0.00 0.07 +incuriosité incuriosité nom f s 0.00 0.34 0.00 0.34 +incursion incursion nom f s 0.48 4.26 0.41 2.64 +incursions incursion nom f p 0.48 4.26 0.08 1.62 +incurvaient incurver ver 0.06 3.11 0.01 0.07 ind:imp:3p; +incurvait incurver ver 0.06 3.11 0.00 0.81 ind:imp:3s; +incurvant incurver ver 0.06 3.11 0.00 0.27 par:pre; +incurvation incurvation nom f s 0.14 0.07 0.14 0.07 +incurve incurver ver 0.06 3.11 0.01 0.95 imp:pre:2s;ind:pre:3s; +incurvent incurver ver 0.06 3.11 0.00 0.20 ind:pre:3p; +incurver incurver ver 0.06 3.11 0.01 0.27 inf; +incurvèrent incurver ver 0.06 3.11 0.00 0.07 ind:pas:3p; +incurvé incurvé adj m s 0.09 1.42 0.07 0.74 +incurvée incurvé adj f s 0.09 1.42 0.02 0.41 +incurvées incurver ver f p 0.06 3.11 0.00 0.07 par:pas; +incurvés incurvé adj m p 0.09 1.42 0.00 0.20 +incus incus adj 0.01 0.00 0.01 0.00 +indûment indûment adv 0.22 0.81 0.22 0.81 +indansable indansable adj s 0.01 0.00 0.01 0.00 +inde inde nom m s 0.24 0.54 0.24 0.14 +indemne indemne adj s 2.66 3.11 2.13 2.30 +indemnes indemne adj p 2.66 3.11 0.53 0.81 +indemnisable indemnisable adj s 0.01 0.00 0.01 0.00 +indemnisation indemnisation nom f s 0.36 0.14 0.32 0.07 +indemnisations indemnisation nom f p 0.36 0.14 0.04 0.07 +indemnise indemniser ver 0.78 0.20 0.14 0.00 ind:pre:3s; +indemniser indemniser ver 0.78 0.20 0.32 0.07 inf; +indemniserai indemniser ver 0.78 0.20 0.11 0.00 ind:fut:1s; +indemniseraient indemniser ver 0.78 0.20 0.00 0.07 cnd:pre:3p; +indemnisez indemniser ver 0.78 0.20 0.11 0.00 imp:pre:2p; +indemnisé indemniser ver m s 0.78 0.20 0.06 0.00 par:pas; +indemnisés indemniser ver m p 0.78 0.20 0.03 0.07 par:pas; +indemnité indemnité nom f s 3.17 2.36 1.84 1.69 +indemnités_repas indemnités_repas nom f p 0.01 0.00 0.01 0.00 +indemnités indemnité nom f p 3.17 2.36 1.33 0.68 +indentation indentation nom f s 0.03 0.14 0.03 0.14 +indenter indenter ver 0.04 0.00 0.01 0.00 inf; +indentification indentification nom f s 0.01 0.00 0.01 0.00 +indenté indenter ver m s 0.04 0.00 0.03 0.00 par:pas; +indes inde nom m p 0.24 0.54 0.00 0.41 +indescriptible indescriptible adj s 1.88 2.70 1.71 2.50 +indescriptiblement indescriptiblement adv 0.00 0.07 0.00 0.07 +indescriptibles indescriptible adj p 1.88 2.70 0.17 0.20 +indestructibilité indestructibilité nom f s 0.00 0.14 0.00 0.14 +indestructible indestructible adj s 1.92 4.46 1.49 3.38 +indestructibles indestructible adj p 1.92 4.46 0.43 1.08 +index index nom m 2.18 32.43 2.18 32.43 +indexation indexation nom f s 0.12 0.00 0.12 0.00 +indexer indexer ver 0.09 0.27 0.04 0.00 inf; +indexeur indexeur nom m s 0.02 0.00 0.02 0.00 +indexé indexer ver m s 0.09 0.27 0.04 0.20 par:pas; +indexée indexer ver f s 0.09 0.27 0.01 0.07 par:pas; +indianisés indianiser ver m p 0.00 0.07 0.00 0.07 par:pas; +indic indic nom m s 5.36 1.35 4.33 0.54 +indicateur indicateur nom m s 1.77 2.50 0.98 1.89 +indicateurs indicateur nom m p 1.77 2.50 0.79 0.61 +indicatif indicatif nom m s 0.81 1.55 0.79 1.49 +indicatifs indicatif nom m p 0.81 1.55 0.02 0.07 +indication indication nom f s 3.59 12.43 1.42 5.74 +indications indication nom f p 3.59 12.43 2.18 6.69 +indicatrice indicateur adj f s 0.39 1.49 0.00 0.14 +indicatrices indicateur adj f p 0.39 1.49 0.01 0.20 +indice indice nom m s 22.13 9.39 13.29 4.66 +indices indice nom m p 22.13 9.39 8.85 4.73 +indiciaire indiciaire adj f s 0.01 0.07 0.01 0.00 +indiciaires indiciaire adj f p 0.01 0.07 0.00 0.07 +indicible indicible adj s 0.82 6.35 0.76 5.41 +indiciblement indiciblement adv 0.01 0.47 0.01 0.47 +indicibles indicible adj p 0.82 6.35 0.07 0.95 +indics indic nom m p 5.36 1.35 1.03 0.81 +indien indien adj m s 11.62 11.22 5.75 3.18 +indienne indien adj f s 11.62 11.22 3.33 4.53 +indienneries indiennerie nom f p 0.00 0.34 0.00 0.34 +indiennes indien adj f p 11.62 11.22 0.65 1.42 +indiens indien nom m p 12.79 7.16 5.92 3.65 +indiffère indifférer ver 0.60 1.22 0.47 0.74 ind:pre:1s;ind:pre:3s; +indiffèrent indifférer ver 0.60 1.22 0.09 0.07 ind:pre:3p; +indiffères indifférer ver 0.60 1.22 0.01 0.00 ind:pre:2s; +indifféraient indifférer ver 0.60 1.22 0.00 0.20 ind:imp:3p; +indifférait indifférer ver 0.60 1.22 0.02 0.14 ind:imp:3s; +indifféremment indifféremment adv 0.06 3.45 0.06 3.45 +indifférence indifférence nom f s 3.62 38.31 3.62 38.04 +indifférences indifférence nom f p 3.62 38.31 0.00 0.27 +indifférenciation indifférenciation nom f s 0.01 0.14 0.01 0.14 +indifférencié indifférencié adj m s 0.02 0.74 0.00 0.20 +indifférenciée indifférencié adj f s 0.02 0.74 0.02 0.34 +indifférenciés indifférencié adj m p 0.02 0.74 0.00 0.20 +indifférent indifférent adj m s 4.48 30.14 2.42 16.22 +indifférente indifférent adj f s 4.48 30.14 1.21 8.24 +indifférentes indifférent adj f p 4.48 30.14 0.11 1.42 +indifférentisme indifférentisme nom m s 0.00 0.07 0.00 0.07 +indifférents indifférent adj m p 4.48 30.14 0.74 4.26 +indifféré indifférer ver m s 0.60 1.22 0.01 0.07 par:pas; +indigence indigence nom f s 0.44 1.96 0.44 1.96 +indigent indigent nom m s 0.57 0.95 0.07 0.20 +indigente indigent nom f s 0.57 0.95 0.02 0.00 +indigentes indigent adj f p 0.12 0.68 0.04 0.00 +indigents indigent nom m p 0.57 0.95 0.48 0.61 +indigeste indigeste adj s 0.53 1.15 0.24 0.81 +indigestes indigeste adj p 0.53 1.15 0.29 0.34 +indigestion indigestion nom f s 1.59 2.03 1.56 1.82 +indigestionner indigestionner ver 0.00 0.07 0.00 0.07 inf; +indigestions indigestion nom f p 1.59 2.03 0.04 0.20 +indigna indigner ver 4.23 17.23 0.01 2.43 ind:pas:3s; +indignai indigner ver 4.23 17.23 0.00 0.20 ind:pas:1s; +indignaient indigner ver 4.23 17.23 0.00 0.41 ind:imp:3p; +indignais indigner ver 4.23 17.23 0.00 0.07 ind:imp:1s; +indignait indigner ver 4.23 17.23 0.01 3.04 ind:imp:3s; +indignant indigner ver 4.23 17.23 0.00 0.14 par:pre; +indignassent indigner ver 4.23 17.23 0.00 0.07 sub:imp:3p; +indignation indignation nom f s 1.56 16.28 1.45 15.68 +indignations indignation nom f p 1.56 16.28 0.11 0.61 +indigne indigne adj s 8.75 10.61 6.99 7.91 +indignement indignement adv 0.28 0.54 0.28 0.54 +indignent indigner ver 4.23 17.23 0.72 0.61 ind:pre:3p; +indigner indigner ver 4.23 17.23 0.37 2.84 inf; +indignera indigner ver 4.23 17.23 0.10 0.14 ind:fut:3s; +indignes indigne adj p 8.75 10.61 1.75 2.70 +indignité indignité nom f s 0.50 2.36 0.47 2.30 +indignités indignité nom f p 0.50 2.36 0.03 0.07 +indignèrent indigner ver 4.23 17.23 0.00 0.14 ind:pas:3p; +indigné indigner ver m s 4.23 17.23 0.43 2.64 par:pas; +indignée indigner ver f s 4.23 17.23 0.45 1.08 par:pas; +indignées indigner ver f p 4.23 17.23 0.03 0.14 par:pas; +indignés indigné adj m p 0.34 6.35 0.16 1.15 +indigo indigo nom m s 0.45 0.81 0.45 0.81 +indigène indigène adj s 1.04 4.19 0.68 2.57 +indigènes indigène nom p 3.24 5.27 2.85 4.19 +indiqua indiquer ver 36.48 54.12 0.02 4.86 ind:pas:3s; +indiquai indiquer ver 36.48 54.12 0.00 0.88 ind:pas:1s; +indiquaient indiquer ver 36.48 54.12 0.25 1.96 ind:imp:3p; +indiquais indiquer ver 36.48 54.12 0.05 0.47 ind:imp:1s;ind:imp:2s; +indiquait indiquer ver 36.48 54.12 0.84 9.73 ind:imp:3s; +indiquant indiquer ver 36.48 54.12 1.81 5.54 par:pre; +indique indiquer ver 36.48 54.12 14.13 10.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +indiquent indiquer ver 36.48 54.12 5.18 1.22 ind:pre:3p; +indiquer indiquer ver 36.48 54.12 5.74 7.91 inf; +indiquera indiquer ver 36.48 54.12 0.67 0.27 ind:fut:3s; +indiquerai indiquer ver 36.48 54.12 0.14 0.20 ind:fut:1s; +indiqueraient indiquer ver 36.48 54.12 0.09 0.07 cnd:pre:3p; +indiquerais indiquer ver 36.48 54.12 0.04 0.00 cnd:pre:1s; +indiquerait indiquer ver 36.48 54.12 0.53 0.41 cnd:pre:3s; +indiqueras indiquer ver 36.48 54.12 0.03 0.00 ind:fut:2s; +indiquerez indiquer ver 36.48 54.12 0.03 0.07 ind:fut:2p; +indiqueriez indiquer ver 36.48 54.12 0.00 0.14 cnd:pre:2p; +indiquerons indiquer ver 36.48 54.12 0.03 0.07 ind:fut:1p; +indiquez indiquer ver 36.48 54.12 0.82 0.27 imp:pre:2p;ind:pre:2p; +indiquiez indiquer ver 36.48 54.12 0.01 0.14 ind:imp:2p; +indiquions indiquer ver 36.48 54.12 0.00 0.07 ind:imp:1p; +indiquons indiquer ver 36.48 54.12 0.01 0.00 imp:pre:1p; +indiquât indiquer ver 36.48 54.12 0.00 0.47 sub:imp:3s; +indiquèrent indiquer ver 36.48 54.12 0.02 0.47 ind:pas:3p; +indiqué indiquer ver m s 36.48 54.12 4.81 5.61 par:pas; +indiquée indiquer ver f s 36.48 54.12 0.60 1.69 par:pas; +indiquées indiquer ver f p 36.48 54.12 0.27 0.41 par:pas; +indiqués indiquer ver m p 36.48 54.12 0.36 1.01 par:pas; +indirect indirect adj m s 1.25 3.78 0.23 1.42 +indirecte indirect adj f s 1.25 3.78 0.55 1.42 +indirectement indirectement adv 1.05 2.57 1.05 2.57 +indirectes indirect adj f p 1.25 3.78 0.36 0.20 +indirects indirect adj m p 1.25 3.78 0.11 0.74 +indiscernable indiscernable adj s 0.02 1.69 0.02 0.88 +indiscernables indiscernable adj p 0.02 1.69 0.00 0.81 +indiscipline indiscipline nom f s 0.21 1.01 0.21 1.01 +indiscipliné indiscipliné adj m s 1.49 0.68 0.23 0.20 +indisciplinée indiscipliné adj f s 1.49 0.68 0.36 0.07 +indisciplinées indiscipliné adj f p 1.49 0.68 0.27 0.07 +indisciplinés indiscipliné adj m p 1.49 0.68 0.63 0.34 +indiscret indiscret adj m s 4.56 8.45 2.25 3.38 +indiscrets indiscret adj m p 4.56 8.45 0.38 1.76 +indiscrète indiscret adj f s 4.56 8.45 1.68 2.03 +indiscrètement indiscrètement adv 0.00 0.47 0.00 0.47 +indiscrètes indiscret adj f p 4.56 8.45 0.25 1.28 +indiscrétion indiscrétion nom f s 2.24 5.74 1.90 4.53 +indiscrétions indiscrétion nom f p 2.24 5.74 0.34 1.22 +indiscutable indiscutable adj s 1.13 5.27 0.95 4.19 +indiscutablement indiscutablement adv 0.25 1.96 0.25 1.96 +indiscutables indiscutable adj p 1.13 5.27 0.18 1.08 +indiscuté indiscuté adj m s 0.01 0.41 0.01 0.20 +indiscutée indiscuté adj f s 0.01 0.41 0.00 0.14 +indiscutés indiscuté adj m p 0.01 0.41 0.00 0.07 +indispensable indispensable adj s 9.21 21.76 8.52 15.68 +indispensables indispensable adj p 9.21 21.76 0.69 6.08 +indisponibilité indisponibilité nom f s 0.03 0.00 0.03 0.00 +indisponible indisponible adj s 0.52 0.20 0.43 0.07 +indisponibles indisponible adj p 0.52 0.20 0.09 0.14 +indisposa indisposer ver 0.96 2.64 0.00 0.14 ind:pas:3s; +indisposaient indisposer ver 0.96 2.64 0.00 0.14 ind:imp:3p; +indisposait indisposer ver 0.96 2.64 0.01 0.41 ind:imp:3s; +indispose indispos adj f s 0.12 0.54 0.12 0.54 +indisposent indisposer ver 0.96 2.64 0.10 0.27 ind:pre:3p; +indisposer indisposer ver 0.96 2.64 0.16 0.74 inf; +indisposerait indisposer ver 0.96 2.64 0.02 0.07 cnd:pre:3s; +indisposition indisposition nom f s 0.02 0.61 0.02 0.61 +indisposons indisposer ver 0.96 2.64 0.00 0.07 ind:pre:1p; +indisposèrent indisposer ver 0.96 2.64 0.00 0.07 ind:pas:3p; +indisposé indisposer ver m s 0.96 2.64 0.53 0.41 par:pas; +indisposée indisposé adj f s 0.42 0.14 0.17 0.07 +indisposés indisposer ver m p 0.96 2.64 0.01 0.14 par:pas; +indissociable indissociable adj s 0.25 0.14 0.02 0.07 +indissociables indissociable adj m p 0.25 0.14 0.23 0.07 +indissociés indissocié adj m p 0.00 0.07 0.00 0.07 +indissoluble indissoluble adj s 0.14 0.95 0.12 0.74 +indissolublement indissolublement adv 0.01 0.54 0.01 0.54 +indissolubles indissoluble adj m p 0.14 0.95 0.02 0.20 +indistinct indistinct adj m s 0.54 8.24 0.30 2.64 +indistincte indistinct adj f s 0.54 8.24 0.23 2.23 +indistinctement indistinctement adv 0.01 1.55 0.01 1.55 +indistinctes indistinct adj f p 0.54 8.24 0.00 2.09 +indistinction indistinction nom f s 0.00 0.34 0.00 0.34 +indistincts indistinct adj m p 0.54 8.24 0.00 1.28 +individu individu nom m s 15.38 31.42 9.04 19.53 +individualiser individualiser ver 0.01 0.20 0.01 0.00 inf; +individualisme individualisme nom m s 0.50 1.35 0.50 1.35 +individualiste individualiste nom s 0.30 0.20 0.17 0.14 +individualistes individualiste nom p 0.30 0.20 0.13 0.07 +individualisé individualiser ver m s 0.01 0.20 0.00 0.07 par:pas; +individualisés individualiser ver m p 0.01 0.20 0.00 0.14 par:pas; +individualité individualité nom f s 0.58 0.88 0.57 0.74 +individualités individualité nom f p 0.58 0.88 0.01 0.14 +individuel individuel adj m s 3.99 8.11 0.97 2.23 +individuelle individuel adj f s 3.99 8.11 1.36 2.23 +individuellement individuellement adv 1.22 0.95 1.22 0.95 +individuelles individuel adj f p 3.99 8.11 0.99 2.36 +individuels individuel adj m p 3.99 8.11 0.67 1.28 +individus individu nom m p 15.38 31.42 6.34 11.89 +individuée individué adj f s 0.00 0.07 0.00 0.07 +indivis indivis adj m 0.10 0.34 0.10 0.27 +indivises indivis adj f p 0.10 0.34 0.00 0.07 +indivisibilité indivisibilité nom f s 0.00 0.07 0.00 0.07 +indivisible indivisible adj s 0.44 1.15 0.40 1.15 +indivisibles indivisible adj p 0.44 1.15 0.03 0.00 +indivision indivision nom f s 0.00 0.07 0.00 0.07 +indivisé indivisé adj m s 0.00 0.07 0.00 0.07 +indo_européen indo_européen adj m s 0.11 0.27 0.10 0.00 +indo_européen indo_européen adj f s 0.11 0.27 0.01 0.07 +indo_européen indo_européen adj f p 0.11 0.27 0.00 0.14 +indo_européen indo_européen adj m p 0.11 0.27 0.00 0.07 +indo indo adv 0.03 0.54 0.03 0.54 +indochinois indochinois nom m 0.10 0.34 0.10 0.34 +indochinoise indochinois adj f s 0.01 1.28 0.00 0.68 +indochinoises indochinois adj f p 0.01 1.28 0.00 0.20 +indocile indocile adj s 0.23 0.74 0.23 0.74 +indocilité indocilité nom f s 0.00 0.07 0.00 0.07 +indole indole nom m s 0.01 0.00 0.01 0.00 +indolemment indolemment adv 0.00 0.54 0.00 0.54 +indolence indolence nom f s 0.27 2.57 0.27 2.50 +indolences indolence nom f p 0.27 2.57 0.00 0.07 +indolent indolent adj m s 1.29 2.91 0.38 0.95 +indolente indolent adj f s 1.29 2.91 0.13 1.22 +indolentes indolent adj f p 1.29 2.91 0.10 0.34 +indolents indolent adj m p 1.29 2.91 0.68 0.41 +indolore indolore adj s 0.77 0.68 0.69 0.47 +indolores indolore adj p 0.77 0.68 0.08 0.20 +indomptable indomptable adj s 1.07 1.28 0.91 1.01 +indomptables indomptable adj m p 1.07 1.28 0.16 0.27 +indompté indompté adj m s 0.24 0.27 0.07 0.00 +indomptée indompté adj f s 0.24 0.27 0.07 0.20 +indomptés indompté adj m p 0.24 0.27 0.10 0.07 +indonésien indonésien adj m s 0.20 0.20 0.18 0.00 +indonésienne indonésien nom f s 0.26 0.00 0.10 0.00 +indonésiens indonésien nom m p 0.26 0.00 0.14 0.00 +indoor indoor adj m s 0.05 0.00 0.05 0.00 +indosable indosable adj f s 0.00 0.07 0.00 0.07 +indou indou adj m s 0.03 0.27 0.03 0.07 +indous indou adj m p 0.03 0.27 0.00 0.20 +indu indu adj m s 0.29 0.81 0.02 0.07 +indubitable indubitable adj s 0.31 0.88 0.29 0.81 +indubitablement indubitablement adv 0.70 0.61 0.70 0.61 +indubitables indubitable adj f p 0.31 0.88 0.03 0.07 +indécelable indécelable adj s 0.22 0.20 0.20 0.14 +indécelables indécelable adj p 0.22 0.20 0.02 0.07 +indécemment indécemment adv 0.01 0.27 0.01 0.27 +indécence indécence nom f s 0.28 2.16 0.28 1.96 +indécences indécence nom f p 0.28 2.16 0.00 0.20 +indécent indécent adj m s 2.09 5.27 1.36 2.43 +indécente indécent adj f s 2.09 5.27 0.60 1.96 +indécentes indécent adj f p 2.09 5.27 0.07 0.47 +indécents indécent adj m p 2.09 5.27 0.05 0.41 +indéchiffrable indéchiffrable adj s 0.14 2.97 0.08 1.69 +indéchiffrables indéchiffrable adj p 0.14 2.97 0.06 1.28 +indéchirable indéchirable adj s 0.02 0.14 0.01 0.14 +indéchirables indéchirable adj f p 0.02 0.14 0.01 0.00 +indécidable indécidable adj s 0.00 0.27 0.00 0.20 +indécidables indécidable adj m p 0.00 0.27 0.00 0.07 +indécis indécis adj m 1.15 11.42 0.66 6.49 +indécise indécis adj f s 1.15 11.42 0.35 3.58 +indécises indécis adj f p 1.15 11.42 0.14 1.35 +indécision indécision nom f s 0.27 2.16 0.17 1.89 +indécisions indécision nom f p 0.27 2.16 0.10 0.27 +indécodable indécodable adj s 0.03 0.00 0.03 0.00 +indécollable indécollable adj s 0.01 0.07 0.01 0.00 +indécollables indécollable adj m p 0.01 0.07 0.00 0.07 +indécrassables indécrassable adj m p 0.00 0.14 0.00 0.14 +indécrottable indécrottable adj s 0.17 1.22 0.16 1.01 +indécrottablement indécrottablement adv 0.00 0.07 0.00 0.07 +indécrottables indécrottable adj m p 0.17 1.22 0.01 0.20 +inducteur inducteur nom m s 0.02 0.00 0.02 0.00 +inductif inductif adj m s 0.01 0.07 0.01 0.00 +induction induction nom f s 0.43 0.54 0.42 0.47 +inductions induction nom f p 0.43 0.54 0.01 0.07 +inductive inductif adj f s 0.01 0.07 0.00 0.07 +inductrice inducteur adj f s 0.00 0.07 0.00 0.07 +indue indu adj f s 0.29 0.81 0.27 0.27 +indues indu adj f p 0.29 0.81 0.00 0.41 +indéfectible indéfectible adj s 0.25 1.01 0.24 0.88 +indéfectiblement indéfectiblement adv 0.00 0.41 0.00 0.41 +indéfectibles indéfectible adj m p 0.25 1.01 0.01 0.14 +indéfendable indéfendable adj f s 0.19 0.34 0.19 0.34 +indéfini indéfini adj m s 0.43 2.16 0.21 0.95 +indéfinie indéfini adj f s 0.43 2.16 0.23 0.81 +indéfinies indéfini adj f p 0.43 2.16 0.00 0.20 +indéfiniment indéfiniment adv 2.08 11.22 2.08 11.22 +indéfinis indéfini adj m p 0.43 2.16 0.00 0.20 +indéfinissable indéfinissable adj s 0.29 6.01 0.16 5.54 +indéfinissablement indéfinissablement adv 0.00 0.14 0.00 0.14 +indéfinissables indéfinissable adj p 0.29 6.01 0.14 0.47 +indéfinition indéfinition nom f s 0.00 0.07 0.00 0.07 +indéformables indéformable adj p 0.00 0.07 0.00 0.07 +indéfriché indéfriché adj m s 0.00 0.14 0.00 0.14 +indéfrisable indéfrisable nom f s 0.01 1.49 0.00 1.01 +indéfrisables indéfrisable nom f p 0.01 1.49 0.01 0.47 +induiraient induire ver 1.68 1.69 0.00 0.07 cnd:pre:3p; +induirait induire ver 1.68 1.69 0.01 0.07 cnd:pre:3s; +induire induire ver 1.68 1.69 0.54 0.54 inf; +induis induire ver 1.68 1.69 0.17 0.07 imp:pre:2s;ind:pre:1s; +induisaient induire ver 1.68 1.69 0.00 0.14 ind:imp:3p; +induisait induire ver 1.68 1.69 0.02 0.07 ind:imp:3s; +induisant induire ver 1.68 1.69 0.06 0.00 par:pre; +induisez induire ver 1.68 1.69 0.03 0.00 ind:pre:2p; +induisit induire ver 1.68 1.69 0.00 0.14 ind:pas:3s; +induit induire ver m s 1.68 1.69 0.60 0.34 ind:pre:3s;par:pas; +induite induire ver f s 1.68 1.69 0.05 0.07 par:pas; +induits induire ver m p 1.68 1.69 0.19 0.20 par:pas; +indulgence indulgence nom f s 2.46 16.35 2.46 15.41 +indulgences indulgence nom f p 2.46 16.35 0.01 0.95 +indulgent indulgent adj m s 3.31 7.09 1.89 4.19 +indulgente indulgent adj f s 3.31 7.09 0.66 2.30 +indulgentes indulgent adj f p 3.31 7.09 0.01 0.34 +indulgents indulgent adj m p 3.31 7.09 0.75 0.27 +indélicat indélicat adj m s 0.44 0.74 0.32 0.41 +indélicate indélicat adj f s 0.44 0.74 0.11 0.07 +indélicatesse indélicatesse nom f s 0.02 0.74 0.02 0.54 +indélicatesses indélicatesse nom f p 0.02 0.74 0.00 0.20 +indélicats indélicat adj m p 0.44 0.74 0.01 0.27 +indélivrable indélivrable adj m s 0.00 0.07 0.00 0.07 +indélogeable indélogeable adj f s 0.01 0.14 0.01 0.07 +indélogeables indélogeable adj p 0.01 0.14 0.00 0.07 +indélébile indélébile adj s 0.75 3.78 0.71 2.97 +indélébiles indélébile adj p 0.75 3.78 0.04 0.81 +indémaillable indémaillable adj s 0.00 0.41 0.00 0.27 +indémaillables indémaillable adj p 0.00 0.41 0.00 0.14 +indémodable indémodable adj s 0.14 0.07 0.14 0.00 +indémodables indémodable adj m p 0.14 0.07 0.00 0.07 +indémontrable indémontrable adj m s 0.00 0.14 0.00 0.07 +indémontrables indémontrable adj m p 0.00 0.14 0.00 0.07 +indémêlables indémêlable adj m p 0.00 0.07 0.00 0.07 +indéniable indéniable adj s 0.97 1.82 0.89 1.22 +indéniablement indéniablement adv 0.33 0.74 0.33 0.74 +indéniables indéniable adj p 0.97 1.82 0.08 0.61 +indénombrables indénombrable adj m p 0.02 0.07 0.02 0.07 +indénouable indénouable adj s 0.20 0.14 0.20 0.14 +indépassable indépassable adj m s 0.00 0.20 0.00 0.20 +indépendamment indépendamment adv 0.55 3.45 0.55 3.45 +indépendance indépendance nom f s 6.59 27.16 6.59 27.16 +indépendant indépendant adj m s 11.11 9.46 5.03 3.04 +indépendante indépendant adj s 11.11 9.46 4.08 3.78 +indépendantes indépendant adj f p 11.11 9.46 0.54 0.88 +indépendantisme indépendantisme nom m s 0.10 0.00 0.10 0.00 +indépendantiste indépendantiste adj m s 0.23 0.07 0.11 0.00 +indépendantistes indépendantiste nom p 0.27 0.00 0.27 0.00 +indépendants indépendant adj m p 11.11 9.46 1.46 1.76 +indéracinable indéracinable adj s 0.00 0.54 0.00 0.47 +indéracinables indéracinable adj p 0.00 0.54 0.00 0.07 +induré indurer ver m s 0.00 0.14 0.00 0.07 par:pas; +indurée induré adj f s 0.00 0.07 0.00 0.07 +indurées indurer ver f p 0.00 0.14 0.00 0.07 par:pas; +indéréglables indéréglable adj f p 0.00 0.20 0.00 0.20 +indus indu adj m p 0.29 0.81 0.00 0.07 +indésirable indésirable adj s 1.08 1.08 0.56 0.74 +indésirables indésirable nom p 0.69 0.74 0.53 0.47 +industrialisation industrialisation nom f s 0.01 0.20 0.01 0.20 +industrialiser industrialiser ver 0.04 0.14 0.00 0.14 inf; +industrialisé industrialiser ver m s 0.04 0.14 0.04 0.00 par:pas; +industrialisée industrialisé adj f s 0.16 0.14 0.01 0.07 +industrialisés industrialisé adj m p 0.16 0.14 0.14 0.07 +industrie_clé industrie_clé nom f s 0.01 0.00 0.01 0.00 +industrie industrie nom f s 12.51 11.82 9.66 10.34 +industriel industriel adj m s 6.66 7.70 2.68 3.04 +industrielle industriel adj f s 6.66 7.70 1.78 3.04 +industriellement industriellement adv 0.00 0.20 0.00 0.20 +industrielles industriel adj f p 6.66 7.70 0.55 0.61 +industriels industriel adj m p 6.66 7.70 1.66 1.01 +industries industrie nom f p 12.51 11.82 2.85 1.49 +industrieuse industrieux adj f s 0.02 1.08 0.01 0.34 +industrieusement industrieusement adv 0.00 0.07 0.00 0.07 +industrieuses industrieux adj f p 0.02 1.08 0.00 0.07 +industrieux industrieux adj m 0.02 1.08 0.01 0.68 +indétectable indétectable adj s 0.77 0.14 0.65 0.07 +indétectables indétectable adj f p 0.77 0.14 0.12 0.07 +indéterminable indéterminable adj s 0.01 0.07 0.01 0.07 +indétermination indétermination nom f s 0.01 0.34 0.01 0.34 +indéterminé indéterminé adj m s 1.49 2.36 0.21 1.08 +indéterminée indéterminé adj f s 1.49 2.36 1.23 0.95 +indéterminées indéterminé adj f p 1.49 2.36 0.03 0.20 +indéterminés indéterminé adj m p 1.49 2.36 0.03 0.14 +ineffable ineffable adj s 0.06 4.46 0.04 3.92 +ineffablement ineffablement adv 0.02 0.07 0.02 0.07 +ineffables ineffable adj p 0.06 4.46 0.02 0.54 +ineffaçable ineffaçable adj s 0.13 1.22 0.13 1.08 +ineffaçablement ineffaçablement adv 0.00 0.07 0.00 0.07 +ineffaçables ineffaçable adj f p 0.13 1.22 0.00 0.14 +inefficace inefficace adj s 1.25 1.28 0.98 0.61 +inefficaces inefficace adj p 1.25 1.28 0.27 0.68 +inefficacité inefficacité nom f s 0.27 0.61 0.27 0.61 +inemploi inemploi nom m s 0.10 0.00 0.10 0.00 +inemployable inemployable adj s 0.03 0.07 0.03 0.00 +inemployables inemployable adj p 0.03 0.07 0.00 0.07 +inemployé inemployé adj m s 0.02 0.88 0.00 0.27 +inemployée inemployé adj f s 0.02 0.88 0.00 0.27 +inemployées inemployé adj f p 0.02 0.88 0.00 0.27 +inemployés inemployé adj m p 0.02 0.88 0.02 0.07 +inentamable inentamable adj f s 0.01 0.14 0.01 0.14 +inentamé inentamé adj m s 0.01 0.81 0.00 0.54 +inentamée inentamé adj f s 0.01 0.81 0.01 0.20 +inentamées inentamé adj f p 0.01 0.81 0.00 0.07 +inenvisageable inenvisageable adj s 0.05 0.00 0.05 0.00 +inepte inepte adj s 0.69 3.24 0.52 1.69 +ineptement ineptement adv 0.00 0.07 0.00 0.07 +ineptes inepte adj p 0.69 3.24 0.17 1.55 +ineptie ineptie nom f s 1.48 1.89 0.77 1.01 +inepties ineptie nom f p 1.48 1.89 0.71 0.88 +inerte inerte adj s 0.96 14.53 0.67 10.61 +inertes inerte adj p 0.96 14.53 0.29 3.92 +inertie inertie nom f s 0.95 6.62 0.95 6.49 +inertiel inertiel adj m s 0.11 0.00 0.06 0.00 +inertielle inertiel adj f s 0.11 0.00 0.05 0.00 +inerties inertie nom f p 0.95 6.62 0.00 0.14 +inespoir inespoir nom m s 0.00 0.07 0.00 0.07 +inespérable inespérable adj s 0.00 0.07 0.00 0.07 +inespéré inespéré adj m s 0.35 4.32 0.17 1.62 +inespérée inespéré adj f s 0.35 4.32 0.18 2.43 +inespérées inespéré adj f p 0.35 4.32 0.00 0.27 +inespérément inespérément adv 0.00 0.07 0.00 0.07 +inessentiel inessentiel adj m s 0.00 0.07 0.00 0.07 +inesthétique inesthétique adj m s 0.02 0.27 0.02 0.07 +inesthétiques inesthétique adj m p 0.02 0.27 0.00 0.20 +inestimable inestimable adj s 2.19 2.91 1.79 1.89 +inestimables inestimable adj p 2.19 2.91 0.40 1.01 +inexact inexact adj m s 1.01 1.28 0.65 0.47 +inexacte inexact adj f s 1.01 1.28 0.19 0.47 +inexactement inexactement adv 0.01 0.14 0.01 0.14 +inexactes inexact adj f p 1.01 1.28 0.16 0.27 +inexactitude inexactitude nom f s 0.08 0.54 0.03 0.20 +inexactitudes inexactitude nom f p 0.08 0.54 0.05 0.34 +inexacts inexact adj m p 1.01 1.28 0.01 0.07 +inexcusable inexcusable adj s 0.77 0.54 0.64 0.47 +inexcusables inexcusable adj p 0.77 0.54 0.13 0.07 +inexistant inexistant adj m s 1.29 3.65 0.39 1.28 +inexistante inexistant adj f s 1.29 3.65 0.46 0.88 +inexistantes inexistant adj f p 1.29 3.65 0.10 0.54 +inexistants inexistant adj m p 1.29 3.65 0.35 0.95 +inexistence inexistence nom f s 0.02 1.62 0.02 1.62 +inexorabilité inexorabilité nom f s 0.00 0.14 0.00 0.14 +inexorable inexorable adj s 0.33 4.19 0.33 3.78 +inexorablement inexorablement adv 0.33 3.92 0.33 3.92 +inexorables inexorable adj m p 0.33 4.19 0.00 0.41 +inexperte inexpert adj f s 0.00 0.14 0.00 0.14 +inexpiable inexpiable adj s 0.10 0.54 0.10 0.54 +inexplicable inexplicable adj s 3.25 7.16 1.96 5.61 +inexplicablement inexplicablement adv 0.23 3.18 0.23 3.18 +inexplicables inexplicable adj p 3.25 7.16 1.29 1.55 +inexpliqué inexpliqué adj m s 1.23 1.55 0.28 0.61 +inexpliquée inexpliqué adj f s 1.23 1.55 0.41 0.54 +inexpliquées inexpliqué adj f p 1.23 1.55 0.34 0.07 +inexpliqués inexpliqué adj m p 1.23 1.55 0.21 0.34 +inexploitable inexploitable adj s 0.02 0.00 0.02 0.00 +inexploité inexploité adj m s 0.22 0.14 0.06 0.00 +inexploitée inexploité adj f s 0.22 0.14 0.11 0.00 +inexploitées inexploité adj f p 0.22 0.14 0.04 0.14 +inexploités inexploité adj m p 0.22 0.14 0.01 0.00 +inexploré inexploré adj m s 1.11 0.61 0.32 0.27 +inexplorée inexploré adj f s 1.11 0.61 0.32 0.07 +inexplorées inexploré adj f p 1.11 0.61 0.26 0.14 +inexplorés inexploré adj m p 1.11 0.61 0.22 0.14 +inexplosible inexplosible adj s 0.00 0.27 0.00 0.07 +inexplosibles inexplosible adj m p 0.00 0.27 0.00 0.20 +inexpressif inexpressif adj m s 0.17 2.64 0.04 1.49 +inexpressifs inexpressif adj m p 0.17 2.64 0.12 0.74 +inexpression inexpression nom f s 0.00 0.07 0.00 0.07 +inexpressive inexpressif adj f s 0.17 2.64 0.00 0.41 +inexpressives inexpressif adj f p 0.17 2.64 0.01 0.00 +inexprimable inexprimable adj s 0.40 3.18 0.40 3.04 +inexprimablement inexprimablement adv 0.00 0.20 0.00 0.20 +inexprimables inexprimable adj m p 0.40 3.18 0.00 0.14 +inexprimé inexprimé adj m s 0.10 0.47 0.05 0.27 +inexprimée inexprimé adj f s 0.10 0.47 0.05 0.20 +inexpugnable inexpugnable adj f s 0.13 0.41 0.13 0.34 +inexpugnablement inexpugnablement adv 0.00 0.07 0.00 0.07 +inexpugnables inexpugnable adj f p 0.13 0.41 0.00 0.07 +inexpérience inexpérience nom f s 0.28 2.03 0.28 1.96 +inexpériences inexpérience nom f p 0.28 2.03 0.00 0.07 +inexpérimenté inexpérimenté adj m s 1.28 1.01 0.54 0.34 +inexpérimentée inexpérimenté adj f s 1.28 1.01 0.55 0.47 +inexpérimentées inexpérimenté adj f p 1.28 1.01 0.01 0.07 +inexpérimentés inexpérimenté adj m p 1.28 1.01 0.18 0.14 +inextinguible inextinguible adj s 0.18 0.81 0.18 0.74 +inextinguibles inextinguible adj m p 0.18 0.81 0.00 0.07 +inextirpable inextirpable adj f s 0.00 0.07 0.00 0.07 +inextricable inextricable adj s 0.58 3.31 0.44 2.70 +inextricablement inextricablement adv 0.15 0.81 0.15 0.81 +inextricables inextricable adj p 0.58 3.31 0.14 0.61 +infaillibilité infaillibilité nom f s 0.28 0.95 0.28 0.95 +infaillible infaillible adj s 2.37 6.28 2.10 6.01 +infailliblement infailliblement adv 0.27 1.82 0.27 1.82 +infaillibles infaillible adj m p 2.37 6.28 0.27 0.27 +infaisable infaisable adj s 0.39 0.14 0.39 0.14 +infalsifiable infalsifiable adj s 0.01 0.00 0.01 0.00 +infamant infamant adj m s 0.18 2.43 0.02 1.08 +infamante infamant adj f s 0.18 2.43 0.15 0.74 +infamantes infamant adj f p 0.18 2.43 0.01 0.27 +infamants infamant adj m p 0.18 2.43 0.00 0.34 +infamie infamie nom f s 2.22 3.72 2.01 3.11 +infamies infamie nom f p 2.22 3.72 0.21 0.61 +infant infant nom m s 5.52 1.76 4.98 0.54 +infante infant nom f s 5.52 1.76 0.54 0.88 +infanterie infanterie nom f s 3.79 10.07 3.79 10.00 +infanteries infanterie nom f p 3.79 10.07 0.00 0.07 +infantes infant nom f p 5.52 1.76 0.00 0.07 +infanticide infanticide nom s 0.34 0.41 0.34 0.27 +infanticides infanticide nom p 0.34 0.41 0.00 0.14 +infantile infantile adj s 3.30 3.24 2.57 2.30 +infantilement infantilement adv 0.00 0.07 0.00 0.07 +infantiles infantile adj p 3.30 3.24 0.73 0.95 +infantiliser infantiliser ver 0.04 0.00 0.02 0.00 inf; +infantilisme infantilisme nom m s 0.06 0.74 0.05 0.74 +infantilismes infantilisme nom m p 0.06 0.74 0.01 0.00 +infantilisé infantiliser ver m s 0.04 0.00 0.02 0.00 par:pas; +infants infant nom m p 5.52 1.76 0.00 0.27 +infarctus infarctus nom m 4.87 1.62 4.87 1.62 +infatigable infatigable adj s 0.46 4.80 0.29 3.31 +infatigablement infatigablement adv 0.00 0.61 0.00 0.61 +infatigables infatigable adj p 0.46 4.80 0.17 1.49 +infatuation infatuation nom f s 0.01 0.41 0.01 0.41 +infatuer infatuer ver 0.02 0.34 0.01 0.00 inf; +infatué infatué adj m s 0.02 0.14 0.02 0.07 +infatués infatuer ver m p 0.02 0.34 0.00 0.07 par:pas; +infect infect adj m s 3.61 6.28 2.03 2.91 +infectaient infecter ver 9.96 2.64 0.01 0.14 ind:imp:3p; +infectait infecter ver 9.96 2.64 0.02 0.14 ind:imp:3s; +infectant infecter ver 9.96 2.64 0.06 0.00 par:pre; +infectassent infecter ver 9.96 2.64 0.00 0.07 sub:imp:3p; +infecte infect adj f s 3.61 6.28 1.31 1.62 +infectement infectement adv 0.00 0.07 0.00 0.07 +infectent infecter ver 9.96 2.64 0.21 0.14 ind:pre:3p; +infecter infecter ver 9.96 2.64 1.84 0.68 inf; +infectera infecter ver 9.96 2.64 0.05 0.00 ind:fut:3s; +infectes infect adj f p 3.61 6.28 0.05 1.08 +infectez infecter ver 9.96 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +infectieuse infectieux adj f s 0.66 0.47 0.14 0.14 +infectieuses infectieux adj f p 0.66 0.47 0.26 0.27 +infectieux infectieux adj m 0.66 0.47 0.26 0.07 +infectiologie infectiologie nom f s 0.01 0.00 0.01 0.00 +infection infection nom f s 10.62 1.89 9.55 1.69 +infections infection nom f p 10.62 1.89 1.07 0.20 +infects infect adj m p 3.61 6.28 0.22 0.68 +infecté infecter ver m s 9.96 2.64 3.23 0.54 par:pas; +infectée infecter ver f s 9.96 2.64 1.92 0.54 par:pas; +infectées infecté adj f p 3.40 0.61 0.66 0.27 +infectés infecter ver m p 9.96 2.64 0.99 0.07 par:pas; +infernal infernal adj m s 6.66 13.38 3.36 5.41 +infernale infernal adj f s 6.66 13.38 2.61 5.95 +infernalement infernalement adv 0.00 0.20 0.00 0.20 +infernales infernal adj f p 6.66 13.38 0.46 1.55 +infernaux infernal adj m p 6.66 13.38 0.24 0.47 +infertile infertile adj s 0.08 0.41 0.08 0.34 +infertiles infertile adj p 0.08 0.41 0.00 0.07 +infertilité infertilité nom f s 0.03 0.07 0.03 0.07 +infestaient infester ver 2.05 2.84 0.01 0.68 ind:imp:3p; +infestait infester ver 2.05 2.84 0.00 0.14 ind:imp:3s; +infestant infester ver 2.05 2.84 0.01 0.07 par:pre; +infestation infestation nom f s 0.12 0.00 0.12 0.00 +infeste infester ver 2.05 2.84 0.02 0.07 ind:pre:3s; +infestent infester ver 2.05 2.84 0.12 0.20 ind:pre:3p; +infester infester ver 2.05 2.84 0.09 0.00 inf; +infesteront infester ver 2.05 2.84 0.10 0.07 ind:fut:3p; +infestât infester ver 2.05 2.84 0.00 0.07 sub:imp:3s; +infestèrent infester ver 2.05 2.84 0.00 0.07 ind:pas:3p; +infesté infester ver m s 2.05 2.84 0.57 0.34 par:pas; +infestée infester ver f s 2.05 2.84 0.56 0.61 par:pas; +infestées infester ver f p 2.05 2.84 0.38 0.20 par:pas; +infestés infester ver m p 2.05 2.84 0.19 0.34 par:pas; +infibulation infibulation nom f s 0.03 0.00 0.03 0.00 +infidèle infidèle adj s 3.83 2.97 2.84 2.50 +infidèles infidèle nom p 2.33 2.57 1.25 1.49 +infidélité infidélité nom f s 1.40 2.57 1.11 1.62 +infidélités infidélité nom f p 1.40 2.57 0.28 0.95 +infigurable infigurable adj s 0.00 0.07 0.00 0.07 +infiltra infiltrer ver 6.88 6.35 0.11 0.07 ind:pas:3s; +infiltraient infiltrer ver 6.88 6.35 0.01 0.27 ind:imp:3p; +infiltrait infiltrer ver 6.88 6.35 0.05 1.42 ind:imp:3s; +infiltrant infiltrer ver 6.88 6.35 0.08 0.07 par:pre; +infiltrat infiltrat nom m s 0.01 0.00 0.01 0.00 +infiltration infiltration nom f s 1.71 1.55 1.38 0.95 +infiltrations infiltration nom f p 1.71 1.55 0.34 0.61 +infiltre infiltrer ver 6.88 6.35 0.73 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +infiltrent infiltrer ver 6.88 6.35 0.20 0.20 ind:pre:3p; +infiltrer infiltrer ver 6.88 6.35 2.38 1.82 inf; +infiltrera infiltrer ver 6.88 6.35 0.05 0.00 ind:fut:3s; +infiltreront infiltrer ver 6.88 6.35 0.10 0.00 ind:fut:3p; +infiltrez infiltrer ver 6.88 6.35 0.05 0.00 imp:pre:2p;ind:pre:2p; +infiltriez infiltrer ver 6.88 6.35 0.01 0.00 ind:imp:2p; +infiltrions infiltrer ver 6.88 6.35 0.00 0.07 ind:imp:1p; +infiltrons infiltrer ver 6.88 6.35 0.01 0.07 imp:pre:1p;ind:pre:1p; +infiltrèrent infiltrer ver 6.88 6.35 0.00 0.07 ind:pas:3p; +infiltré infiltrer ver m s 6.88 6.35 2.22 0.61 par:pas; +infiltrée infiltrer ver f s 6.88 6.35 0.25 0.34 par:pas; +infiltrées infiltrer ver f p 6.88 6.35 0.04 0.07 par:pas; +infiltrés infiltrer ver m p 6.88 6.35 0.58 0.27 par:pas; +infime infime adj s 2.09 11.89 1.53 6.55 +infimes infime adj p 2.09 11.89 0.56 5.34 +infini infini adj m s 9.21 27.03 3.86 6.69 +infinie infini adj f s 9.21 27.03 4.11 12.16 +infinies infini adj f p 9.21 27.03 0.76 4.86 +infiniment infiniment adv 10.29 17.43 10.29 17.43 +infinis infini adj m p 9.21 27.03 0.47 3.31 +infinitif infinitif nom m s 0.03 0.14 0.01 0.07 +infinitifs infinitif nom m p 0.03 0.14 0.01 0.07 +infinitive infinitif adj f s 0.01 0.00 0.01 0.00 +infinité infinité nom f s 0.62 2.57 0.60 2.50 +infinitude infinitude nom f s 0.00 0.14 0.00 0.14 +infinités infinité nom f p 0.62 2.57 0.01 0.07 +infinitésimal infinitésimal adj m s 0.07 1.22 0.03 0.27 +infinitésimale infinitésimal adj f s 0.07 1.22 0.03 0.34 +infinitésimalement infinitésimalement adv 0.00 0.07 0.00 0.07 +infinitésimales infinitésimal adj f p 0.07 1.22 0.00 0.61 +infinitésimaux infinitésimal adj m p 0.07 1.22 0.01 0.00 +infirma infirmer ver 0.14 1.15 0.00 0.20 ind:pas:3s; +infirmait infirmer ver 0.14 1.15 0.00 0.14 ind:imp:3s; +infirmant infirmer ver 0.14 1.15 0.00 0.07 par:pre; +infirme infirme adj s 2.27 3.65 2.00 3.04 +infirment infirmer ver 0.14 1.15 0.01 0.07 ind:pre:3p; +infirmer infirmer ver 0.14 1.15 0.07 0.07 inf; +infirmerie infirmerie nom f s 7.14 7.43 7.13 7.30 +infirmeries infirmerie nom f p 7.14 7.43 0.01 0.14 +infirmeront infirmer ver 0.14 1.15 0.00 0.07 ind:fut:3p; +infirmes infirme nom p 2.32 6.15 0.64 2.64 +infirmier infirmier nom m s 32.31 36.28 3.17 3.58 +infirmiers infirmier nom m p 32.31 36.28 2.00 4.80 +infirmière_major infirmière_major nom f s 0.14 0.14 0.14 0.14 +infirmière infirmier nom f s 32.31 36.28 27.14 22.97 +infirmières infirmière nom f p 7.25 0.00 7.25 0.00 +infirmité infirmité nom f s 0.93 5.88 0.83 4.53 +infirmités infirmité nom f p 0.93 5.88 0.10 1.35 +infirmé infirmer ver m s 0.14 1.15 0.00 0.07 par:pas; +inflammabilité inflammabilité nom f s 0.02 0.00 0.02 0.00 +inflammable inflammable adj s 0.92 0.14 0.66 0.14 +inflammables inflammable adj p 0.92 0.14 0.26 0.00 +inflammation inflammation nom f s 0.88 0.54 0.88 0.54 +inflammatoire inflammatoire adj s 0.04 0.00 0.01 0.00 +inflammatoires inflammatoire adj p 0.04 0.00 0.02 0.00 +inflation inflation nom f s 1.72 2.30 1.72 2.30 +inflationniste inflationniste adj s 0.14 0.07 0.14 0.07 +inflexibilité inflexibilité nom f s 0.01 0.20 0.01 0.20 +inflexible inflexible adj s 0.61 4.59 0.56 3.85 +inflexiblement inflexiblement adv 0.00 0.14 0.00 0.14 +inflexibles inflexible adj p 0.61 4.59 0.05 0.74 +inflexion inflexion nom f s 0.23 4.86 0.08 1.82 +inflexions inflexion nom f p 0.23 4.86 0.16 3.04 +infliction infliction nom f s 0.03 0.00 0.03 0.00 +inflige infliger ver 6.54 14.05 0.75 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +infligea infliger ver 6.54 14.05 0.01 0.14 ind:pas:3s; +infligeaient infliger ver 6.54 14.05 0.02 0.54 ind:imp:3p; +infligeais infliger ver 6.54 14.05 0.00 0.07 ind:imp:1s; +infligeait infliger ver 6.54 14.05 0.06 1.69 ind:imp:3s; +infligeant infliger ver 6.54 14.05 0.08 0.47 par:pre; +infligent infliger ver 6.54 14.05 0.36 0.20 ind:pre:3p; +infligeâmes infliger ver 6.54 14.05 0.00 0.07 ind:pas:1p; +infligeons infliger ver 6.54 14.05 0.00 0.07 ind:pre:1p; +infliger infliger ver 6.54 14.05 2.46 3.65 inf; +infligera infliger ver 6.54 14.05 0.02 0.00 ind:fut:3s; +infligerai infliger ver 6.54 14.05 0.07 0.00 ind:fut:1s; +infligeraient infliger ver 6.54 14.05 0.03 0.07 cnd:pre:3p; +infligerais infliger ver 6.54 14.05 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +infligerait infliger ver 6.54 14.05 0.02 0.07 cnd:pre:3s; +infligerez infliger ver 6.54 14.05 0.01 0.00 ind:fut:2p; +infligerions infliger ver 6.54 14.05 0.00 0.07 cnd:pre:1p; +infliges infliger ver 6.54 14.05 0.20 0.00 ind:pre:2s;sub:pre:2s; +infligez infliger ver 6.54 14.05 0.32 0.14 imp:pre:2p;ind:pre:2p; +infligèrent infliger ver 6.54 14.05 0.00 0.14 ind:pas:3p; +infligé infliger ver m s 6.54 14.05 0.97 2.30 par:pas; +infligée infliger ver f s 6.54 14.05 0.63 1.69 par:pas; +infligées infliger ver f p 6.54 14.05 0.36 0.88 par:pas; +infligés infliger ver m p 6.54 14.05 0.15 0.47 par:pas; +inflorescence inflorescence nom f s 0.01 0.07 0.01 0.00 +inflorescences inflorescence nom f p 0.01 0.07 0.00 0.07 +influaient influer ver 1.31 1.82 0.10 0.07 ind:imp:3p; +influait influer ver 1.31 1.82 0.01 0.00 ind:imp:3s; +influant influer ver 1.31 1.82 0.15 0.00 par:pre; +infléchi infléchir ver m s 0.10 2.77 0.00 0.14 par:pas; +infléchie infléchir ver f s 0.10 2.77 0.01 0.07 par:pas; +infléchies infléchi adj f p 0.00 0.27 0.00 0.07 +infléchir infléchir ver 0.10 2.77 0.05 1.28 inf; +infléchirai infléchir ver 0.10 2.77 0.01 0.00 ind:fut:1s; +infléchissaient infléchir ver 0.10 2.77 0.00 0.14 ind:imp:3p; +infléchissant infléchir ver 0.10 2.77 0.00 0.27 par:pre; +infléchissement infléchissement nom m s 0.00 0.07 0.00 0.07 +infléchissent infléchir ver 0.10 2.77 0.00 0.20 ind:pre:3p; +infléchissez infléchir ver 0.10 2.77 0.01 0.00 imp:pre:2p; +infléchit infléchir ver 0.10 2.77 0.01 0.68 ind:pre:3s;ind:pas:3s; +influe influer ver 1.31 1.82 0.24 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +influence influence nom f s 13.96 23.51 13.32 19.73 +influencent influencer ver 8.30 4.53 0.25 0.07 ind:pre:3p; +influencer influencer ver 8.30 4.53 3.19 1.82 ind:pre:2p;inf; +influencera influencer ver 8.30 4.53 0.25 0.00 ind:fut:3s; +influencerait influencer ver 8.30 4.53 0.02 0.00 cnd:pre:3s; +influencerez influencer ver 8.30 4.53 0.04 0.07 ind:fut:2p; +influenceriez influencer ver 8.30 4.53 0.00 0.07 cnd:pre:2p; +influenceront influencer ver 8.30 4.53 0.17 0.00 ind:fut:3p; +influences influence nom f p 13.96 23.51 0.63 3.78 +influencé influencer ver m s 8.30 4.53 1.98 1.15 par:pas; +influencée influencer ver f s 8.30 4.53 0.70 0.47 par:pas; +influencés influencer ver m p 8.30 4.53 0.58 0.07 par:pas; +influent influent adj m s 2.75 1.62 1.38 0.54 +influente influent adj f s 2.75 1.62 0.33 0.27 +influentes influent adj f p 2.75 1.62 0.11 0.14 +influença influencer ver 8.30 4.53 0.04 0.00 ind:pas:3s; +influençable influençable adj s 0.73 0.27 0.56 0.27 +influençables influençable adj p 0.73 0.27 0.17 0.00 +influençaient influencer ver 8.30 4.53 0.02 0.07 ind:imp:3p; +influençait influencer ver 8.30 4.53 0.15 0.20 ind:imp:3s; +influençant influencer ver 8.30 4.53 0.04 0.00 par:pre; +influents influent adj m p 2.75 1.62 0.93 0.68 +influenza influenza nom f s 0.01 0.07 0.01 0.07 +influer influer ver 1.31 1.82 0.60 0.68 inf; +influera influer ver 1.31 1.82 0.03 0.14 ind:fut:3s; +influeraient influer ver 1.31 1.82 0.01 0.07 cnd:pre:3p; +influeront influer ver 1.31 1.82 0.02 0.07 ind:fut:3p; +influé influer ver m s 1.31 1.82 0.01 0.27 par:pas; +influx influx nom m 0.25 0.61 0.25 0.61 +info info nom f s 25.50 0.47 6.71 0.00 +infographie infographie nom f s 0.04 0.00 0.04 0.00 +infâme infâme adj s 7.71 7.91 6.00 5.27 +infâmes infâme adj p 7.71 7.91 1.71 2.64 +infondé infondé adj m s 0.81 0.00 0.05 0.00 +infondée infondé adj f s 0.81 0.00 0.08 0.00 +infondées infondé adj f p 0.81 0.00 0.31 0.00 +infondés infondé adj m p 0.81 0.00 0.36 0.00 +informa informer ver 37.41 21.69 0.17 3.18 ind:pas:3s; +informai informer ver 37.41 21.69 0.00 0.14 ind:pas:1s; +informaient informer ver 37.41 21.69 0.11 0.34 ind:imp:3p; +informais informer ver 37.41 21.69 0.10 0.00 ind:imp:1s; +informait informer ver 37.41 21.69 0.23 1.82 ind:imp:3s; +informant informer ver 37.41 21.69 0.29 0.54 par:pre; +informateur informateur nom m s 4.15 2.30 3.01 0.74 +informateurs informateur nom m p 4.15 2.30 1.05 1.55 +informaticien informaticien nom m s 1.03 0.47 0.72 0.14 +informaticienne informaticien nom f s 1.03 0.47 0.02 0.14 +informaticiens informaticien nom m p 1.03 0.47 0.29 0.20 +informatif informatif adj m s 0.10 0.00 0.06 0.00 +information information nom f s 63.20 36.55 23.90 16.22 +informations information nom f p 63.20 36.55 39.30 20.34 +informatique informatique nom f s 4.60 0.81 4.60 0.81 +informatiquement informatiquement adv 0.15 0.00 0.15 0.00 +informatiques informatique adj p 5.24 0.20 0.91 0.00 +informatiser informatiser ver 0.31 0.00 0.01 0.00 inf; +informatisé informatisé adj m s 0.39 0.00 0.25 0.00 +informatisée informatiser ver f s 0.31 0.00 0.16 0.00 par:pas; +informatisées informatisé adj f p 0.39 0.00 0.03 0.00 +informatisés informatiser ver m p 0.31 0.00 0.03 0.00 par:pas; +informative informatif adj f s 0.10 0.00 0.03 0.00 +informatives informatif adj f p 0.10 0.00 0.01 0.00 +informatrice informateur nom f s 4.15 2.30 0.09 0.00 +informe informer ver 37.41 21.69 5.76 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +informel informel adj m s 0.78 0.74 0.34 0.41 +informelle informel adj f s 0.78 0.74 0.39 0.20 +informelles informel adj f p 0.78 0.74 0.01 0.14 +informels informel adj m p 0.78 0.74 0.03 0.00 +informent informer ver 37.41 21.69 1.15 0.07 ind:pre:3p; +informer informer ver 37.41 21.69 12.56 6.42 inf; +informera informer ver 37.41 21.69 0.35 0.07 ind:fut:3s; +informerai informer ver 37.41 21.69 1.21 0.07 ind:fut:1s; +informerais informer ver 37.41 21.69 0.03 0.00 cnd:pre:1s; +informeras informer ver 37.41 21.69 0.03 0.00 ind:fut:2s; +informerez informer ver 37.41 21.69 0.15 0.00 ind:fut:2p; +informerons informer ver 37.41 21.69 0.16 0.00 ind:fut:1p; +informeront informer ver 37.41 21.69 0.11 0.00 ind:fut:3p; +informes informe adj p 0.79 9.53 0.12 3.11 +informez informer ver 37.41 21.69 2.06 0.14 imp:pre:2p;ind:pre:2p; +informiez informer ver 37.41 21.69 0.07 0.00 ind:imp:2p; +informions informer ver 37.41 21.69 0.00 0.07 ind:imp:1p; +informons informer ver 37.41 21.69 0.86 0.07 imp:pre:1p;ind:pre:1p; +informèrent informer ver 37.41 21.69 0.00 0.20 ind:pas:3p; +informé informer ver m s 37.41 21.69 8.00 3.65 par:pas; +informée informer ver f s 37.41 21.69 1.45 1.01 par:pas; +informées informer ver f p 37.41 21.69 0.19 0.14 par:pas; +informulable informulable adj f s 0.00 0.27 0.00 0.20 +informulables informulable adj m p 0.00 0.27 0.00 0.07 +informulé informulé adj m s 0.00 1.01 0.00 0.47 +informulée informulé adj f s 0.00 1.01 0.00 0.41 +informulées informulé adj f p 0.00 1.01 0.00 0.14 +informés informer ver m p 37.41 21.69 2.27 0.95 par:pas; +infortune infortune nom f s 1.30 4.19 1.21 3.72 +infortunes infortune nom f p 1.30 4.19 0.09 0.47 +infortuné infortuné adj m s 1.65 2.57 0.73 1.76 +infortunée infortuné adj f s 1.65 2.57 0.58 0.34 +infortunées infortuné adj f p 1.65 2.57 0.01 0.00 +infortunés infortuné adj m p 1.65 2.57 0.33 0.47 +infos info nom f p 25.50 0.47 18.78 0.47 +infoutu infoutu adj m s 0.06 0.14 0.04 0.00 +infoutue infoutu adj f s 0.06 0.14 0.00 0.07 +infoutus infoutu adj m p 0.06 0.14 0.02 0.07 +infra infra adv 0.59 0.27 0.59 0.27 +infraction infraction nom f s 3.95 1.22 2.91 0.95 +infractions infraction nom f p 3.95 1.22 1.04 0.27 +infranchi infranchi adj m s 0.00 0.07 0.00 0.07 +infranchissable infranchissable adj s 0.93 3.18 0.77 2.64 +infranchissables infranchissable adj p 0.93 3.18 0.17 0.54 +infrangible infrangible adj f s 0.01 0.27 0.01 0.27 +infrarouge infrarouge nom m s 1.31 0.07 0.85 0.00 +infrarouges infrarouge adj p 1.09 0.00 0.48 0.00 +infrason infrason nom m s 0.01 0.00 0.01 0.00 +infrastructure infrastructure nom f s 0.93 0.27 0.60 0.20 +infrastructures infrastructure nom f p 0.93 0.27 0.32 0.07 +infroissable infroissable adj m s 0.18 0.14 0.18 0.14 +infructueuse infructueux adj f s 0.34 1.22 0.07 0.00 +infructueuses infructueux adj f p 0.34 1.22 0.08 0.34 +infructueux infructueux adj m 0.34 1.22 0.19 0.88 +infréquentable infréquentable adj m s 0.03 0.20 0.01 0.07 +infréquentables infréquentable adj m p 0.03 0.20 0.02 0.14 +infréquentée infréquenté adj f s 0.00 0.14 0.00 0.07 +infréquentés infréquenté adj m p 0.00 0.14 0.00 0.07 +inféconde infécond adj f s 0.16 0.20 0.14 0.20 +infécondes infécond adj f p 0.16 0.20 0.01 0.00 +infécondité infécondité nom f s 0.00 0.07 0.00 0.07 +inféode inféoder ver 0.00 0.34 0.00 0.07 ind:pre:3s; +inféoder inféoder ver 0.00 0.34 0.00 0.20 inf; +inféodée inféoder ver f s 0.00 0.34 0.00 0.07 par:pas; +inférai inférer ver 0.00 0.20 0.00 0.07 ind:pas:1s; +inférer inférer ver 0.00 0.20 0.00 0.07 inf; +inférieur inférieur adj m s 8.15 16.89 2.63 3.45 +inférieure inférieur adj f s 8.15 16.89 3.27 11.22 +inférieures inférieur adj f p 8.15 16.89 0.70 0.88 +inférieurs inférieur adj m p 8.15 16.89 1.54 1.35 +inférioriser inférioriser ver 0.01 0.00 0.01 0.00 inf; +infériorité infériorité nom f s 1.06 3.45 1.06 3.38 +infériorités infériorité nom f p 1.06 3.45 0.00 0.07 +inféré inférer ver m s 0.00 0.20 0.00 0.07 par:pas; +infus infus adj m s 0.27 0.34 0.00 0.14 +infusaient infuser ver 0.20 1.82 0.00 0.14 ind:imp:3p; +infusait infuser ver 0.20 1.82 0.00 0.34 ind:imp:3s; +infusant infuser ver 0.20 1.82 0.00 0.14 par:pre; +infuse infus adj f s 0.27 0.34 0.27 0.14 +infusent infuser ver 0.20 1.82 0.00 0.14 ind:pre:3p; +infuser infuser ver 0.20 1.82 0.10 0.20 inf; +infuses infus adj f p 0.27 0.34 0.00 0.07 +infusion infusion nom f s 0.57 2.77 0.54 2.43 +infusions infusion nom f p 0.57 2.77 0.03 0.34 +infusoires infusoire nom m p 0.00 0.07 0.00 0.07 +infusé infuser ver m s 0.20 1.82 0.04 0.41 par:pas; +infusée infuser ver f s 0.20 1.82 0.01 0.07 par:pas; +infusées infuser ver f p 0.20 1.82 0.01 0.07 par:pas; +ingagnable ingagnable adj f s 0.06 0.00 0.06 0.00 +ingambe ingambe adj s 0.00 0.41 0.00 0.20 +ingambes ingambe adj m p 0.00 0.41 0.00 0.20 +ingestion ingestion nom f s 0.17 0.20 0.17 0.20 +inglorieusement inglorieusement adv 0.00 0.07 0.00 0.07 +inglorieux inglorieux adj m 0.00 0.14 0.00 0.14 +ingouvernable ingouvernable adj f s 0.11 0.27 0.11 0.27 +ingrat ingrat adj m s 5.61 8.31 3.46 4.86 +ingrate ingrat adj f s 5.61 8.31 1.42 2.09 +ingratement ingratement adv 0.00 0.07 0.00 0.07 +ingrates ingrat nom f p 3.11 2.50 0.29 0.00 +ingratitude ingratitude nom f s 1.32 3.11 1.32 3.11 +ingrats ingrat nom m p 3.11 2.50 0.55 0.34 +ingrédient ingrédient nom m s 4.22 1.82 1.48 0.27 +ingrédients ingrédient nom m p 4.22 1.82 2.75 1.55 +ingère ingérer ver 1.29 0.61 0.23 0.00 ind:pre:1s;ind:pre:3s; +ingèrent ingérer ver 1.29 0.61 0.05 0.07 ind:pre:3p; +inguinal inguinal adj m s 0.00 0.14 0.00 0.07 +inguinales inguinal adj f p 0.00 0.14 0.00 0.07 +ingénia ingénier ver 0.03 3.11 0.00 0.27 ind:pas:3s; +ingéniai ingénier ver 0.03 3.11 0.00 0.14 ind:pas:1s; +ingéniaient ingénier ver 0.03 3.11 0.00 0.14 ind:imp:3p; +ingéniais ingénier ver 0.03 3.11 0.00 0.14 ind:imp:1s; +ingéniait ingénier ver 0.03 3.11 0.00 1.35 ind:imp:3s; +ingéniant ingénier ver 0.03 3.11 0.00 0.27 par:pre; +ingénie ingénier ver 0.03 3.11 0.01 0.34 ind:pre:1s;ind:pre:3s; +ingénient ingénier ver 0.03 3.11 0.00 0.07 ind:pre:3p; +ingénier ingénier ver 0.03 3.11 0.00 0.14 inf; +ingénierie ingénierie nom f s 0.94 0.00 0.94 0.00 +ingénieur_chimiste ingénieur_chimiste nom m s 0.00 0.07 0.00 0.07 +ingénieur_conseil ingénieur_conseil nom m s 0.00 0.14 0.00 0.14 +ingénieur ingénieur nom m s 21.12 12.36 18.92 9.12 +ingénieurs ingénieur nom m p 21.12 12.36 2.20 3.24 +ingénieuse ingénieux adj f s 3.55 4.32 0.62 0.95 +ingénieusement ingénieusement adv 0.06 0.41 0.06 0.41 +ingénieuses ingénieux adj f p 3.55 4.32 0.02 0.61 +ingénieux ingénieux adj m 3.55 4.32 2.90 2.77 +ingéniosité ingéniosité nom f s 0.70 3.45 0.70 3.31 +ingéniosités ingéniosité nom f p 0.70 3.45 0.00 0.14 +ingénié ingénier ver m s 0.03 3.11 0.02 0.20 par:pas; +ingéniés ingénier ver m p 0.03 3.11 0.00 0.07 par:pas; +ingénu ingénu nom m s 0.99 0.81 0.37 0.14 +ingénue ingénu adj f s 1.03 1.96 0.36 0.54 +ingénues ingénu nom f p 0.99 0.81 0.28 0.27 +ingénuité ingénuité nom f s 0.52 1.15 0.52 1.08 +ingénuités ingénuité nom f p 0.52 1.15 0.00 0.07 +ingénument ingénument adv 0.00 0.95 0.00 0.95 +ingénus ingénu adj m p 1.03 1.96 0.23 0.47 +ingérable ingérable adj m s 0.16 0.00 0.16 0.00 +ingérant ingérer ver 1.29 0.61 0.03 0.07 par:pre; +ingérence ingérence nom f s 0.23 1.76 0.21 1.01 +ingérences ingérence nom f p 0.23 1.76 0.02 0.74 +ingérer ingérer ver 1.29 0.61 0.38 0.34 inf; +ingurgita ingurgiter ver 0.99 4.66 0.00 0.20 ind:pas:3s; +ingurgitaient ingurgiter ver 0.99 4.66 0.00 0.20 ind:imp:3p; +ingurgitais ingurgiter ver 0.99 4.66 0.00 0.07 ind:imp:1s; +ingurgitait ingurgiter ver 0.99 4.66 0.01 0.47 ind:imp:3s; +ingurgitant ingurgiter ver 0.99 4.66 0.00 0.41 par:pre; +ingurgitation ingurgitation nom f s 0.00 0.14 0.00 0.14 +ingurgite ingurgiter ver 0.99 4.66 0.15 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ingurgitent ingurgiter ver 0.99 4.66 0.02 0.07 ind:pre:3p; +ingurgiter ingurgiter ver 0.99 4.66 0.40 1.96 inf; +ingurgiterait ingurgiter ver 0.99 4.66 0.00 0.07 cnd:pre:3s; +ingurgité ingurgiter ver m s 0.99 4.66 0.40 0.54 par:pas; +ingurgitée ingurgiter ver f s 0.99 4.66 0.00 0.27 par:pas; +ingurgitées ingurgiter ver f p 0.99 4.66 0.00 0.07 par:pas; +ingurgités ingurgiter ver m p 0.99 4.66 0.00 0.14 par:pas; +ingérons ingérer ver 1.29 0.61 0.01 0.00 ind:pre:1p; +ingéré ingérer ver m s 1.29 0.61 0.41 0.00 par:pas; +ingérée ingérer ver f s 1.29 0.61 0.14 0.00 par:pas; +ingérées ingérer ver f p 1.29 0.61 0.02 0.07 par:pas; +ingérés ingérer ver m p 1.29 0.61 0.02 0.07 par:pas; +inguérissable inguérissable adj f s 0.03 1.62 0.03 1.15 +inguérissables inguérissable adj f p 0.03 1.62 0.00 0.47 +inhabile inhabile adj s 0.01 0.14 0.01 0.14 +inhabitable inhabitable adj s 0.54 1.08 0.51 0.81 +inhabitables inhabitable adj m p 0.54 1.08 0.04 0.27 +inhabité inhabité adj m s 1.71 2.57 0.60 1.08 +inhabitée inhabité adj f s 1.71 2.57 1.00 1.22 +inhabituel inhabituel adj m s 10.23 7.16 7.04 2.70 +inhabituelle inhabituel adj f s 10.23 7.16 1.83 3.58 +inhabituellement inhabituellement adv 0.11 0.20 0.11 0.20 +inhabituelles inhabituel adj f p 10.23 7.16 0.75 0.41 +inhabituels inhabituel adj m p 10.23 7.16 0.61 0.47 +inhabitées inhabité adj f p 1.71 2.57 0.07 0.27 +inhabités inhabité adj m p 1.71 2.57 0.04 0.00 +inhala inhaler ver 0.77 0.47 0.00 0.14 ind:pas:3s; +inhalais inhaler ver 0.77 0.47 0.00 0.07 ind:imp:1s; +inhalait inhaler ver 0.77 0.47 0.05 0.07 ind:imp:3s; +inhalant inhaler ver 0.77 0.47 0.03 0.07 par:pre; +inhalateur inhalateur nom m s 0.93 0.27 0.86 0.20 +inhalateurs inhalateur nom m p 0.93 0.27 0.06 0.07 +inhalation inhalation nom f s 0.67 0.41 0.60 0.20 +inhalations inhalation nom f p 0.67 0.41 0.07 0.20 +inhaler inhaler ver 0.77 0.47 0.17 0.14 inf; +inhalera inhaler ver 0.77 0.47 0.02 0.00 ind:fut:3s; +inhalez inhaler ver 0.77 0.47 0.06 0.00 imp:pre:2p;ind:pre:2p; +inhalé inhaler ver m s 0.77 0.47 0.44 0.00 par:pas; +inharmonieux inharmonieux adj m s 0.01 0.00 0.01 0.00 +inhibait inhiber ver 0.47 0.61 0.00 0.07 ind:imp:3s; +inhibant inhiber ver 0.47 0.61 0.04 0.20 par:pre; +inhibe inhiber ver 0.47 0.61 0.19 0.00 ind:pre:3s; +inhibent inhiber ver 0.47 0.61 0.02 0.00 ind:pre:3p; +inhiber inhiber ver 0.47 0.61 0.12 0.07 inf; +inhibiteur inhibiteur nom m s 0.84 0.00 0.69 0.00 +inhibiteurs inhibiteur nom m p 0.84 0.00 0.15 0.00 +inhibition inhibition nom f s 1.51 1.22 0.66 0.74 +inhibitions inhibition nom f p 1.51 1.22 0.85 0.47 +inhibitrice inhibiteur adj f s 0.22 0.00 0.03 0.00 +inhibât inhiber ver 0.47 0.61 0.00 0.07 sub:imp:3s; +inhibé inhibé adj m s 0.34 0.27 0.18 0.07 +inhibée inhibé adj f s 0.34 0.27 0.03 0.14 +inhibés inhibé adj m p 0.34 0.27 0.14 0.07 +inhospitalier inhospitalier adj m s 0.19 1.08 0.11 0.47 +inhospitaliers inhospitalier adj m p 0.19 1.08 0.02 0.07 +inhospitalière inhospitalier adj f s 0.19 1.08 0.05 0.27 +inhospitalières inhospitalier adj f p 0.19 1.08 0.01 0.27 +inhospitalité inhospitalité nom f s 0.01 0.07 0.01 0.07 +inhuma inhumer ver 1.11 1.89 0.00 0.27 ind:pas:3s; +inhumaient inhumer ver 1.11 1.89 0.00 0.07 ind:imp:3p; +inhumain inhumain adj m s 4.46 8.85 3.21 4.12 +inhumaine inhumain adj f s 4.46 8.85 0.32 3.24 +inhumainement inhumainement adv 0.01 0.34 0.01 0.34 +inhumaines inhumain adj f p 4.46 8.85 0.45 0.74 +inhumains inhumain adj m p 4.46 8.85 0.48 0.74 +inhumait inhumer ver 1.11 1.89 0.00 0.07 ind:imp:3s; +inhumanité inhumanité nom f s 0.28 0.68 0.28 0.68 +inhumation inhumation nom f s 0.31 1.28 0.31 1.22 +inhumations inhumation nom f p 0.31 1.28 0.00 0.07 +inhume inhumer ver 1.11 1.89 0.01 0.00 ind:pre:3s; +inhumer inhumer ver 1.11 1.89 0.42 0.54 inf; +inhumons inhumer ver 1.11 1.89 0.00 0.07 imp:pre:1p; +inhumé inhumer ver m s 1.11 1.89 0.36 0.61 par:pas; +inhumée inhumer ver f s 1.11 1.89 0.12 0.07 par:pas; +inhumés inhumer ver m p 1.11 1.89 0.19 0.20 par:pas; +inhérent inhérent adj m s 0.75 1.82 0.38 0.61 +inhérente inhérent adj f s 0.75 1.82 0.14 0.41 +inhérentes inhérent adj f p 0.75 1.82 0.13 0.47 +inhérents inhérent adj m p 0.75 1.82 0.09 0.34 +inidentifiable inidentifiable adj m s 0.00 0.34 0.00 0.14 +inidentifiables inidentifiable adj p 0.00 0.34 0.00 0.20 +inimaginable inimaginable adj s 3.17 4.80 2.48 3.58 +inimaginablement inimaginablement adv 0.01 0.07 0.01 0.07 +inimaginables inimaginable adj p 3.17 4.80 0.69 1.22 +inimitable inimitable adj s 0.64 3.51 0.64 3.51 +inimitablement inimitablement adv 0.00 0.07 0.00 0.07 +inimitié inimitié nom f s 0.33 1.08 0.31 0.74 +inimitiés inimitié nom f p 0.33 1.08 0.01 0.34 +inimité inimité adj m s 0.11 0.00 0.11 0.00 +ininflammable ininflammable adj m s 0.19 0.00 0.19 0.00 +inintelligence inintelligence nom f s 0.00 0.14 0.00 0.14 +inintelligent inintelligent adj m s 0.11 0.34 0.01 0.14 +inintelligents inintelligent adj m p 0.11 0.34 0.10 0.20 +inintelligible inintelligible adj m s 0.18 2.16 0.08 1.28 +inintelligibles inintelligible adj p 0.18 2.16 0.10 0.88 +ininterprétables ininterprétable adj f p 0.00 0.07 0.00 0.07 +ininterrompu ininterrompu adj m s 0.61 4.05 0.08 2.23 +ininterrompue ininterrompu adj f s 0.61 4.05 0.29 1.49 +ininterrompues ininterrompu adj f p 0.61 4.05 0.22 0.20 +ininterrompus ininterrompu adj m p 0.61 4.05 0.02 0.14 +inintéressant inintéressant adj m s 0.41 0.54 0.06 0.20 +inintéressante inintéressant adj f s 0.41 0.54 0.17 0.14 +inintéressantes inintéressant adj f p 0.41 0.54 0.02 0.14 +inintéressants inintéressant adj m p 0.41 0.54 0.15 0.07 +inintérêt inintérêt nom m s 0.00 0.14 0.00 0.14 +inique inique adj s 0.28 0.34 0.27 0.20 +iniques inique adj p 0.28 0.34 0.01 0.14 +iniquité iniquité nom f s 1.06 1.35 0.98 1.08 +iniquités iniquité nom f p 1.06 1.35 0.09 0.27 +initia initier ver 3.59 8.78 0.06 0.54 ind:pas:3s; +initiai initier ver 3.59 8.78 0.01 0.14 ind:pas:1s; +initiaient initier ver 3.59 8.78 0.00 0.27 ind:imp:3p; +initiais initier ver 3.59 8.78 0.00 0.20 ind:imp:1s; +initiait initier ver 3.59 8.78 0.15 0.47 ind:imp:3s; +initial initial adj m s 2.86 7.23 1.30 4.19 +initiale initial adj f s 2.86 7.23 1.09 1.96 +initialement initialement adv 0.27 1.49 0.27 1.49 +initiales initiale nom f p 4.02 7.36 3.61 6.89 +initialisation initialisation nom f s 0.55 0.00 0.55 0.00 +initialise initialiser ver 0.14 0.00 0.04 0.00 imp:pre:2s;ind:pre:1s; +initialiser initialiser ver 0.14 0.00 0.06 0.00 inf; +initialisez initialiser ver 0.14 0.00 0.03 0.00 imp:pre:2p; +initialisé initialisé adj m s 0.15 0.00 0.07 0.00 +initialisée initialisé adj f s 0.15 0.00 0.04 0.00 +initialisés initialisé adj m p 0.15 0.00 0.03 0.00 +initiant initier ver 3.59 8.78 0.01 0.20 par:pre; +initiateur initiateur adj m s 0.16 0.20 0.14 0.14 +initiateurs initiateur nom m p 0.11 1.01 0.11 0.14 +initiation initiation nom f s 1.63 4.39 1.58 4.05 +initiations initiation nom f p 1.63 4.39 0.05 0.34 +initiatique initiatique adj s 0.22 1.82 0.21 1.42 +initiatiques initiatique adj p 0.22 1.82 0.01 0.41 +initiative initiative nom f s 8.76 16.82 7.08 14.46 +initiatives initiative nom f p 8.76 16.82 1.67 2.36 +initiatrice initiateur nom f s 0.11 1.01 0.00 0.27 +initiatrices initiateur nom f p 0.11 1.01 0.00 0.07 +initiaux initial adj m p 2.86 7.23 0.14 0.27 +initie initier ver 3.59 8.78 0.37 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +initier initier ver 3.59 8.78 1.27 3.45 inf; +initiera initier ver 3.59 8.78 0.00 0.07 ind:fut:3s; +initierai initier ver 3.59 8.78 0.04 0.14 ind:fut:1s; +initierait initier ver 3.59 8.78 0.00 0.07 cnd:pre:3s; +initierons initier ver 3.59 8.78 0.00 0.07 ind:fut:1p; +initiez initier ver 3.59 8.78 0.10 0.00 imp:pre:2p;ind:pre:2p; +initiâmes initier ver 3.59 8.78 0.00 0.07 ind:pas:1p; +initiât initier ver 3.59 8.78 0.00 0.07 sub:imp:3s; +initièrent initier ver 3.59 8.78 0.00 0.20 ind:pas:3p; +initié initier ver m s 3.59 8.78 1.00 1.89 par:pas; +initiée initier ver f s 3.59 8.78 0.40 0.34 par:pas; +initiées initier ver f p 3.59 8.78 0.03 0.00 par:pas; +initiés initié nom m p 0.97 3.04 0.56 2.30 +injecta injecter ver 6.81 3.11 0.00 0.07 ind:pas:3s; +injectable injectable adj s 0.05 0.00 0.05 0.00 +injectaient injecter ver 6.81 3.11 0.02 0.14 ind:imp:3p; +injectait injecter ver 6.81 3.11 0.14 0.07 ind:imp:3s; +injectant injecter ver 6.81 3.11 0.28 0.14 par:pre; +injecte injecter ver 6.81 3.11 1.32 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +injectent injecter ver 6.81 3.11 0.25 0.07 ind:pre:3p; +injecter injecter ver 6.81 3.11 1.41 0.61 inf; +injectera injecter ver 6.81 3.11 0.03 0.00 ind:fut:3s; +injecteras injecter ver 6.81 3.11 0.04 0.00 ind:fut:2s; +injectes injecter ver 6.81 3.11 0.06 0.07 ind:pre:2s; +injecteur injecteur nom m s 0.60 0.07 0.08 0.07 +injecteurs injecteur nom m p 0.60 0.07 0.52 0.00 +injectez injecter ver 6.81 3.11 0.29 0.00 imp:pre:2p;ind:pre:2p; +injection injection nom f s 8.98 1.42 7.83 0.95 +injections injection nom f p 8.98 1.42 1.16 0.47 +injecté injecter ver m s 6.81 3.11 1.97 0.88 par:pas; +injectée injecter ver f s 6.81 3.11 0.40 0.00 par:pas; +injectés injecter ver m p 6.81 3.11 0.61 0.81 par:pas; +injoignable injoignable adj s 1.21 0.07 1.10 0.07 +injoignables injoignable adj p 1.21 0.07 0.12 0.00 +injonction injonction nom f s 1.58 4.26 1.30 2.36 +injonctions injonction nom f p 1.58 4.26 0.28 1.89 +injouable injouable adj s 0.02 0.00 0.02 0.00 +injure injure nom f s 4.58 16.69 2.22 4.93 +injures injure nom f p 4.58 16.69 2.35 11.76 +injuria injurier ver 1.81 6.55 0.00 0.61 ind:pas:3s; +injuriai injurier ver 1.81 6.55 0.10 0.07 ind:pas:1s; +injuriaient injurier ver 1.81 6.55 0.00 0.27 ind:imp:3p; +injuriais injurier ver 1.81 6.55 0.00 0.14 ind:imp:1s; +injuriait injurier ver 1.81 6.55 0.17 1.15 ind:imp:3s; +injuriant injurier ver 1.81 6.55 0.02 0.54 par:pre; +injurie injurier ver 1.81 6.55 0.05 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +injurient injurier ver 1.81 6.55 0.01 0.07 ind:pre:3p; +injurier injurier ver 1.81 6.55 0.49 1.89 inf; +injuries injurier ver 1.81 6.55 0.05 0.00 ind:pre:2s; +injurieuse injurieux adj f s 0.13 1.15 0.04 0.27 +injurieusement injurieusement adv 0.00 0.07 0.00 0.07 +injurieux injurieux adj m 0.13 1.15 0.09 0.88 +injurié injurier ver m s 1.81 6.55 0.78 0.47 par:pas; +injuriée injurier ver f s 1.81 6.55 0.14 0.27 par:pas; +injuriés injurier ver m p 1.81 6.55 0.01 0.20 par:pas; +injuste injuste adj s 17.46 15.47 15.94 13.38 +injustement injustement adv 1.58 2.23 1.58 2.23 +injustes injuste adj p 17.46 15.47 1.52 2.09 +injustice injustice nom f s 6.59 13.51 4.61 11.49 +injustices injustice nom f p 6.59 13.51 1.98 2.03 +injustifiable injustifiable adj f s 0.06 0.95 0.06 0.88 +injustifiables injustifiable adj m p 0.06 0.95 0.00 0.07 +injustifié injustifié adj m s 1.33 1.42 0.41 0.27 +injustifiée injustifié adj f s 1.33 1.42 0.70 0.61 +injustifiées injustifié adj f p 1.33 1.42 0.05 0.41 +injustifiés injustifié adj m p 1.33 1.42 0.17 0.14 +inlassable inlassable adj s 0.38 4.19 0.24 3.31 +inlassablement inlassablement adv 0.38 9.59 0.38 9.59 +inlassables inlassable adj p 0.38 4.19 0.14 0.88 +innervant innerver ver 0.02 0.20 0.02 0.00 par:pre; +innervation innervation nom f s 0.00 0.27 0.00 0.27 +innerver innerver ver 0.02 0.20 0.00 0.07 inf; +innervé innerver ver m s 0.02 0.20 0.00 0.14 par:pas; +innocemment innocemment adv 0.64 3.18 0.64 3.18 +innocence innocence nom f s 10.63 20.00 10.63 19.59 +innocences innocence nom f p 10.63 20.00 0.00 0.41 +innocent innocent adj m s 39.31 23.11 23.49 11.22 +innocentait innocenter ver 2.56 1.42 0.01 0.14 ind:imp:3s; +innocentant innocenter ver 2.56 1.42 0.03 0.00 par:pre; +innocente innocent adj f s 39.31 23.11 8.15 5.14 +innocenter innocenter ver 2.56 1.42 0.76 0.61 inf; +innocentera innocenter ver 2.56 1.42 0.27 0.00 ind:fut:3s; +innocenterai innocenter ver 2.56 1.42 0.01 0.00 ind:fut:1s; +innocenterait innocenter ver 2.56 1.42 0.02 0.14 cnd:pre:3s; +innocentes innocent adj f p 39.31 23.11 2.73 2.43 +innocents innocent nom m p 24.68 13.18 11.03 5.95 +innocenté innocenter ver m s 2.56 1.42 0.94 0.14 par:pas; +innocentée innocenter ver f s 2.56 1.42 0.15 0.00 par:pas; +innocuité innocuité nom f s 0.00 0.20 0.00 0.20 +innombrable innombrable adj s 3.15 29.53 0.02 4.12 +innombrablement innombrablement adv 0.00 0.07 0.00 0.07 +innombrables innombrable adj p 3.15 29.53 3.13 25.41 +innominés innominé adj m p 0.00 0.14 0.00 0.14 +innommable innommable adj s 0.49 3.85 0.33 2.50 +innommables innommable adj p 0.49 3.85 0.17 1.35 +innommé innommé adj m s 0.05 0.27 0.00 0.14 +innommée innommé adj f s 0.05 0.27 0.05 0.00 +innommés innommé adj m p 0.05 0.27 0.00 0.14 +innova innover ver 0.93 0.88 0.00 0.07 ind:pas:3s; +innovais innover ver 0.93 0.88 0.00 0.07 ind:imp:1s; +innovait innover ver 0.93 0.88 0.02 0.07 ind:imp:3s; +innovant innovant adj m s 0.07 0.07 0.04 0.07 +innovante innovant adj f s 0.07 0.07 0.03 0.00 +innovateur innovateur adj m s 0.07 0.00 0.06 0.00 +innovation innovation nom f s 1.06 2.03 0.55 1.49 +innovations innovation nom f p 1.06 2.03 0.51 0.54 +innovatrice innovateur adj f s 0.07 0.00 0.01 0.00 +innove innover ver 0.93 0.88 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +innover innover ver 0.93 0.88 0.55 0.34 inf; +innovez innover ver 0.93 0.88 0.00 0.07 ind:pre:2p; +innové innover ver m s 0.93 0.88 0.09 0.14 par:pas; +inné inné adj m s 1.26 2.97 0.95 1.35 +innée inné adj f s 1.26 2.97 0.26 1.28 +innées inné adj f p 1.26 2.97 0.03 0.07 +innés inné adj m p 1.26 2.97 0.01 0.27 +inoccupations inoccupation nom f p 0.00 0.07 0.00 0.07 +inoccupé inoccupé adj m s 0.67 3.24 0.11 0.88 +inoccupée inoccupé adj f s 0.67 3.24 0.48 1.49 +inoccupées inoccupé adj f p 0.67 3.24 0.04 0.34 +inoccupés inoccupé adj m p 0.67 3.24 0.02 0.54 +inoculant inoculer ver 0.93 0.95 0.01 0.00 par:pre; +inoculation inoculation nom f s 0.24 0.07 0.24 0.07 +inocule inoculer ver 0.93 0.95 0.05 0.14 ind:pre:1s;ind:pre:3s; +inoculent inoculer ver 0.93 0.95 0.00 0.07 ind:pre:3p; +inoculer inoculer ver 0.93 0.95 0.09 0.20 inf; +inoculerait inoculer ver 0.93 0.95 0.00 0.07 cnd:pre:3s; +inoculé inoculer ver m s 0.93 0.95 0.55 0.34 par:pas; +inoculée inoculer ver f s 0.93 0.95 0.07 0.14 par:pas; +inoculées inoculer ver f p 0.93 0.95 0.16 0.00 par:pas; +inodore inodore adj s 0.15 0.54 0.14 0.47 +inodores inodore adj p 0.15 0.54 0.01 0.07 +inoffensif inoffensif adj m s 7.78 8.04 4.62 3.45 +inoffensifs inoffensif adj m p 7.78 8.04 1.35 2.03 +inoffensive inoffensif adj f s 7.78 8.04 1.38 1.49 +inoffensives inoffensif adj f p 7.78 8.04 0.43 1.08 +inonda inonder ver 6.69 15.14 0.13 1.42 ind:pas:3s; +inondable inondable adj f s 0.01 0.20 0.00 0.07 +inondables inondable adj f p 0.01 0.20 0.01 0.14 +inondaient inonder ver 6.69 15.14 0.01 0.74 ind:imp:3p; +inondait inonder ver 6.69 15.14 0.18 3.04 ind:imp:3s; +inondant inonder ver 6.69 15.14 0.21 1.35 par:pre; +inondation inondation nom f s 3.21 3.78 2.15 2.43 +inondations inondation nom f p 3.21 3.78 1.06 1.35 +inonde inonder ver 6.69 15.14 0.73 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inondent inonder ver 6.69 15.14 0.26 0.14 ind:pre:3p; +inonder inonder ver 6.69 15.14 1.37 1.35 inf; +inondera inonder ver 6.69 15.14 0.03 0.00 ind:fut:3s; +inonderai inonder ver 6.69 15.14 0.02 0.07 ind:fut:1s; +inonderait inonder ver 6.69 15.14 0.05 0.00 cnd:pre:3s; +inonderons inonder ver 6.69 15.14 0.02 0.00 ind:fut:1p; +inondez inonder ver 6.69 15.14 0.09 0.00 imp:pre:2p;ind:pre:2p; +inondiez inonder ver 6.69 15.14 0.02 0.00 ind:imp:2p; +inondât inonder ver 6.69 15.14 0.00 0.07 sub:imp:3s; +inondèrent inonder ver 6.69 15.14 0.00 0.07 ind:pas:3p; +inondé inonder ver m s 6.69 15.14 2.13 2.70 par:pas; +inondée inonder ver f s 6.69 15.14 0.74 1.35 par:pas; +inondées inonder ver f p 6.69 15.14 0.22 0.14 par:pas; +inondés inonder ver m p 6.69 15.14 0.48 0.61 par:pas; +inopiné inopiné adj m s 0.26 1.15 0.04 0.20 +inopinée inopiné adj f s 0.26 1.15 0.09 0.68 +inopinées inopiné adj f p 0.26 1.15 0.14 0.27 +inopinément inopinément adv 0.41 1.42 0.41 1.42 +inopportun inopportun adj m s 0.86 1.82 0.71 0.68 +inopportune inopportun adj f s 0.86 1.82 0.13 0.61 +inopportunes inopportun adj f p 0.86 1.82 0.01 0.34 +inopportunité inopportunité nom f s 0.00 0.07 0.00 0.07 +inopportuns inopportun adj m p 0.86 1.82 0.01 0.20 +inopportunément inopportunément adv 0.02 0.07 0.02 0.07 +inopérable inopérable adj s 0.26 0.00 0.24 0.00 +inopérables inopérable adj m p 0.26 0.00 0.02 0.00 +inopérant inopérant adj m s 0.35 0.88 0.07 0.34 +inopérante inopérant adj f s 0.35 0.88 0.07 0.07 +inopérantes inopérant adj f p 0.35 0.88 0.01 0.20 +inopérants inopérant adj m p 0.35 0.88 0.19 0.27 +inorganique inorganique adj f s 0.01 0.14 0.01 0.14 +inorganisé inorganisé adj m s 0.04 0.20 0.02 0.00 +inorganisée inorganisé adj f s 0.04 0.20 0.02 0.07 +inorganisées inorganisé adj f p 0.04 0.20 0.00 0.14 +inouï inouï adj m s 3.23 15.20 1.79 6.28 +inouïe inouï adj f s 3.23 15.20 0.97 5.27 +inouïes inouï adj f p 3.23 15.20 0.09 2.09 +inouïs inouï adj m p 3.23 15.20 0.38 1.55 +inoubliable inoubliable adj s 5.07 7.50 4.21 4.80 +inoubliablement inoubliablement adv 0.00 0.07 0.00 0.07 +inoubliables inoubliable adj p 5.07 7.50 0.86 2.70 +inoublié inoublié adj m s 0.00 0.14 0.00 0.07 +inoubliées inoublié adj f p 0.00 0.14 0.00 0.07 +inox inox nom m 0.13 0.27 0.13 0.27 +inoxydable inoxydable nom m s 0.23 0.14 0.23 0.14 +inoxydables inoxydable adj m p 0.16 0.61 0.01 0.14 +input input nom m s 0.00 0.07 0.00 0.07 +inqualifiable inqualifiable adj s 0.30 1.08 0.29 0.95 +inqualifiables inqualifiable adj m p 0.30 1.08 0.01 0.14 +inquiet inquiet adj m s 34.96 46.55 17.90 23.38 +inquiets inquiet adj m p 34.96 46.55 4.28 6.28 +inquilisme inquilisme nom m s 0.00 0.07 0.00 0.07 +inquisiteur inquisiteur adj m s 0.83 2.70 0.80 1.69 +inquisiteurs inquisiteur nom m p 1.45 2.43 0.67 1.35 +inquisition inquisition nom f s 3.15 4.66 3.13 4.26 +inquisitionner inquisitionner ver 0.00 0.07 0.00 0.07 inf; +inquisitions inquisition nom f p 3.15 4.66 0.01 0.41 +inquisitive inquisitif adj f s 0.00 0.07 0.00 0.07 +inquisitorial inquisitorial adj m s 0.10 0.54 0.10 0.07 +inquisitoriale inquisitorial adj f s 0.10 0.54 0.00 0.27 +inquisitoriales inquisitorial adj f p 0.10 0.54 0.00 0.14 +inquisitoriaux inquisitorial adj m p 0.10 0.54 0.00 0.07 +inquisitrice inquisiteur adj f s 0.83 2.70 0.02 0.14 +inquiète inquiéter ver 212.16 71.01 114.06 22.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +inquiètent inquiéter ver 212.16 71.01 3.02 1.01 ind:pre:3p; +inquiètes inquiéter ver 212.16 71.01 13.85 0.68 ind:pre:2s;sub:pre:2s; +inquiéta inquiéter ver 212.16 71.01 0.03 4.39 ind:pas:3s; +inquiétai inquiéter ver 212.16 71.01 0.00 0.34 ind:pas:1s; +inquiétaient inquiéter ver 212.16 71.01 0.12 2.16 ind:imp:3p; +inquiétais inquiéter ver 212.16 71.01 4.12 1.08 ind:imp:1s;ind:imp:2s; +inquiétait inquiéter ver 212.16 71.01 3.56 11.08 ind:imp:3s; +inquiétant inquiétant adj m s 5.72 20.88 3.88 8.72 +inquiétante inquiétant adj f s 5.72 20.88 1.18 7.03 +inquiétantes inquiétant adj f p 5.72 20.88 0.32 2.36 +inquiétants inquiétant adj m p 5.72 20.88 0.35 2.77 +inquiétassent inquiéter ver 212.16 71.01 0.00 0.07 sub:imp:3p; +inquiéter inquiéter ver 212.16 71.01 27.98 12.36 inf;; +inquiétera inquiéter ver 212.16 71.01 0.32 0.27 ind:fut:3s; +inquiéterai inquiéter ver 212.16 71.01 0.12 0.07 ind:fut:1s; +inquiéteraient inquiéter ver 212.16 71.01 0.06 0.07 cnd:pre:3p; +inquiéterais inquiéter ver 212.16 71.01 0.51 0.07 cnd:pre:1s;cnd:pre:2s; +inquiéterait inquiéter ver 212.16 71.01 0.23 0.61 cnd:pre:3s; +inquiéteras inquiéter ver 212.16 71.01 0.04 0.07 ind:fut:2s; +inquiéteriez inquiéter ver 212.16 71.01 0.01 0.00 cnd:pre:2p; +inquiéteront inquiéter ver 212.16 71.01 0.05 0.00 ind:fut:3p; +inquiéteur inquiéteur nom m s 0.00 0.07 0.00 0.07 +inquiétez inquiéter ver 212.16 71.01 38.80 3.85 imp:pre:2p;ind:pre:2p; +inquiétiez inquiéter ver 212.16 71.01 0.23 0.07 ind:imp:2p; +inquiétions inquiéter ver 212.16 71.01 0.15 0.07 ind:imp:1p; +inquiétons inquiéter ver 212.16 71.01 0.45 0.07 imp:pre:1p;ind:pre:1p; +inquiétât inquiéter ver 212.16 71.01 0.00 0.27 sub:imp:3s; +inquiétèrent inquiéter ver 212.16 71.01 0.00 0.54 ind:pas:3p; +inquiété inquiéter ver m s 212.16 71.01 2.21 4.26 par:pas; +inquiétude inquiétude nom f s 10.04 46.76 8.20 41.35 +inquiétudes inquiétude nom f p 10.04 46.76 1.84 5.41 +inquiétée inquiéter ver f s 212.16 71.01 1.41 1.62 par:pas; +inquiétées inquiéter ver f p 212.16 71.01 0.04 0.00 par:pas; +inquiétés inquiéter ver m p 212.16 71.01 0.50 0.95 par:pas; +inracontables inracontable adj f p 0.14 0.00 0.14 0.00 +insaisissable insaisissable adj s 1.16 6.15 1.08 5.47 +insaisissables insaisissable adj p 1.16 6.15 0.08 0.68 +insalissable insalissable adj s 0.00 0.07 0.00 0.07 +insalubre insalubre adj s 0.36 0.95 0.35 0.68 +insalubres insalubre adj p 0.36 0.95 0.01 0.27 +insalubrité insalubrité nom f s 0.00 0.27 0.00 0.27 +insane insane adj m s 0.05 0.41 0.05 0.07 +insanes insane adj p 0.05 0.41 0.00 0.34 +insanité insanité nom f s 0.44 1.49 0.22 0.27 +insanités insanité nom f p 0.44 1.49 0.22 1.22 +insatiable insatiable adj s 2.50 3.45 1.73 2.84 +insatiablement insatiablement adv 0.00 0.34 0.00 0.34 +insatiables insatiable adj p 2.50 3.45 0.77 0.61 +insatisfaction insatisfaction nom f s 0.22 1.15 0.21 1.08 +insatisfactions insatisfaction nom f p 0.22 1.15 0.01 0.07 +insatisfaisant insatisfaisant adj m s 0.24 0.14 0.18 0.14 +insatisfaisante insatisfaisant adj f s 0.24 0.14 0.05 0.00 +insatisfaisantes insatisfaisant adj f p 0.24 0.14 0.01 0.00 +insatisfait insatisfait adj m s 1.71 1.89 0.64 1.01 +insatisfaite insatisfait adj f s 1.71 1.89 0.53 0.34 +insatisfaites insatisfait adj f p 1.71 1.89 0.20 0.27 +insatisfaits insatisfait adj m p 1.71 1.89 0.34 0.27 +inscription inscription nom f s 7.17 19.32 5.04 12.97 +inscriptions inscription nom f p 7.17 19.32 2.13 6.35 +inscrira inscrire ver 25.41 42.70 0.25 0.27 ind:fut:3s; +inscrirai inscrire ver 25.41 42.70 0.55 0.00 ind:fut:1s; +inscriraient inscrire ver 25.41 42.70 0.01 0.07 cnd:pre:3p; +inscrirais inscrire ver 25.41 42.70 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +inscrirait inscrire ver 25.41 42.70 0.02 0.41 cnd:pre:3s; +inscriras inscrire ver 25.41 42.70 0.00 0.07 ind:fut:2s; +inscrire inscrire ver 25.41 42.70 7.84 9.86 inf; +inscris inscrire ver 25.41 42.70 2.63 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s; +inscrit inscrire ver m s 25.41 42.70 7.01 13.04 ind:pre:3s;par:pas; +inscrite inscrire ver f s 25.41 42.70 2.32 3.92 par:pas; +inscrites inscrire ver f p 25.41 42.70 0.29 0.81 par:pas; +inscrits inscrire ver m p 25.41 42.70 1.69 2.70 par:pas; +inscrivaient inscrire ver 25.41 42.70 0.02 1.55 ind:imp:3p; +inscrivais inscrire ver 25.41 42.70 0.02 0.20 ind:imp:1s;ind:imp:2s; +inscrivait inscrire ver 25.41 42.70 0.18 2.97 ind:imp:3s; +inscrivant inscrire ver 25.41 42.70 0.07 1.28 par:pre; +inscrive inscrire ver 25.41 42.70 0.33 0.34 sub:pre:1s;sub:pre:3s; +inscrivent inscrire ver 25.41 42.70 0.34 1.28 ind:pre:3p; +inscrivez inscrire ver 25.41 42.70 1.58 0.27 imp:pre:2p;ind:pre:2p; +inscrivirent inscrire ver 25.41 42.70 0.01 0.14 ind:pas:3p; +inscrivis inscrire ver 25.41 42.70 0.00 0.61 ind:pas:1s; +inscrivit inscrire ver 25.41 42.70 0.01 2.03 ind:pas:3s; +inscrivons inscrire ver 25.41 42.70 0.20 0.00 imp:pre:1p; +inscrutable inscrutable adj f s 0.00 0.14 0.00 0.14 +insecte insecte nom m s 13.79 22.70 5.46 8.04 +insectes insecte nom m p 13.79 22.70 8.32 14.66 +insecticide insecticide nom m s 1.05 0.61 0.92 0.47 +insecticides insecticide nom m p 1.05 0.61 0.14 0.14 +insectivore insectivore adj f s 0.02 0.00 0.02 0.00 +insensibilisait insensibiliser ver 0.18 0.27 0.00 0.07 ind:imp:3s; +insensibiliser insensibiliser ver 0.18 0.27 0.04 0.00 inf; +insensibilisé insensibiliser ver m s 0.18 0.27 0.13 0.14 par:pas; +insensibilisée insensibiliser ver f s 0.18 0.27 0.01 0.07 par:pas; +insensibilité insensibilité nom f s 0.28 1.55 0.28 1.55 +insensible insensible adj s 5.13 12.16 4.04 9.39 +insensiblement insensiblement adv 0.10 10.41 0.10 10.41 +insensibles insensible adj p 5.13 12.16 1.09 2.77 +insensé insensé adj m s 11.32 11.82 7.51 6.28 +insensée insensé adj f s 11.32 11.82 1.92 2.97 +insensées insensé adj f p 11.32 11.82 0.79 1.35 +insensément insensément adv 0.00 0.07 0.00 0.07 +insensés insensé adj m p 11.32 11.82 1.09 1.22 +insert insert nom m s 0.30 0.00 0.12 0.00 +insertion insertion nom f s 0.64 0.54 0.64 0.54 +inserts insert nom m p 0.30 0.00 0.19 0.00 +insidieuse insidieux adj f s 0.62 4.12 0.15 2.43 +insidieusement insidieusement adv 0.04 2.16 0.04 2.16 +insidieuses insidieux adj f p 0.62 4.12 0.16 0.34 +insidieux insidieux adj m 0.62 4.12 0.31 1.35 +insight insight nom m s 0.03 0.07 0.02 0.00 +insights insight nom m p 0.03 0.07 0.01 0.07 +insigne insigne nom m s 5.56 3.18 4.42 1.69 +insignes insigne nom m p 5.56 3.18 1.14 1.49 +insignifiance insignifiance nom f s 0.18 3.99 0.18 3.65 +insignifiances insignifiance nom f p 0.18 3.99 0.00 0.34 +insignifiant insignifiant adj m s 5.27 13.92 2.26 5.20 +insignifiante insignifiant adj f s 5.27 13.92 1.50 3.18 +insignifiantes insignifiant adj f p 5.27 13.92 0.66 2.50 +insignifiants insignifiant adj m p 5.27 13.92 0.85 3.04 +insincère insincère adj s 0.00 0.14 0.00 0.14 +insincérité insincérité nom f s 0.03 0.41 0.03 0.41 +insinua insinuer ver 9.90 9.73 0.01 1.22 ind:pas:3s; +insinuai insinuer ver 9.90 9.73 0.00 0.07 ind:pas:1s; +insinuaient insinuer ver 9.90 9.73 0.14 0.41 ind:imp:3p; +insinuais insinuer ver 9.90 9.73 0.11 0.07 ind:imp:1s;ind:imp:2s; +insinuait insinuer ver 9.90 9.73 0.10 1.22 ind:imp:3s; +insinuant insinuer ver 9.90 9.73 0.15 0.54 par:pre; +insinuante insinuant adj f s 0.10 2.09 0.00 0.74 +insinuantes insinuant adj f p 0.10 2.09 0.00 0.14 +insinuants insinuant adj m p 0.10 2.09 0.00 0.14 +insinuation insinuation nom f s 1.62 1.55 0.49 0.47 +insinuations insinuation nom f p 1.62 1.55 1.12 1.08 +insinue insinuer ver 9.90 9.73 1.19 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insinuent insinuer ver 9.90 9.73 0.09 0.61 ind:pre:3p; +insinuer insinuer ver 9.90 9.73 1.63 2.03 inf; +insinuerai insinuer ver 9.90 9.73 0.01 0.00 ind:fut:1s; +insinuerait insinuer ver 9.90 9.73 0.01 0.00 cnd:pre:3s; +insinues insinuer ver 9.90 9.73 2.36 0.41 ind:pre:2s; +insinuez insinuer ver 9.90 9.73 3.56 0.14 imp:pre:2p;ind:pre:2p; +insinuiez insinuer ver 9.90 9.73 0.03 0.00 ind:imp:2p; +insinué insinuer ver m s 9.90 9.73 0.38 0.34 par:pas; +insinuée insinuer ver f s 9.90 9.73 0.14 0.34 par:pas; +insipide insipide adj s 0.88 4.05 0.54 2.84 +insipides insipide adj p 0.88 4.05 0.34 1.22 +insipidité insipidité nom f s 0.00 0.14 0.00 0.14 +insista insister ver 42.16 67.03 0.18 13.04 ind:pas:3s; +insistai insister ver 42.16 67.03 0.00 3.31 ind:pas:1s; +insistaient insister ver 42.16 67.03 0.02 1.08 ind:imp:3p; +insistais insister ver 42.16 67.03 0.23 1.28 ind:imp:1s;ind:imp:2s; +insistait insister ver 42.16 67.03 1.11 7.97 ind:imp:3s; +insistance insistance nom f s 1.53 14.59 1.52 14.53 +insistances insistance nom f p 1.53 14.59 0.01 0.07 +insistant insister ver 42.16 67.03 0.64 3.45 par:pre; +insistante insistant adj f s 0.68 5.20 0.13 2.57 +insistantes insistant adj f p 0.68 5.20 0.01 0.54 +insistants insistant adj m p 0.68 5.20 0.19 0.68 +insiste insister ver 42.16 67.03 17.50 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insistent insister ver 42.16 67.03 0.52 0.68 ind:pre:3p; +insister insister ver 42.16 67.03 6.09 9.19 inf; +insistera insister ver 42.16 67.03 0.03 0.07 ind:fut:3s; +insisterai insister ver 42.16 67.03 0.28 0.07 ind:fut:1s; +insisteraient insister ver 42.16 67.03 0.14 0.00 cnd:pre:3p; +insisterais insister ver 42.16 67.03 0.17 0.00 cnd:pre:1s; +insisterait insister ver 42.16 67.03 0.08 0.07 cnd:pre:3s; +insisteras insister ver 42.16 67.03 0.01 0.00 ind:fut:2s; +insisterons insister ver 42.16 67.03 0.02 0.07 ind:fut:1p; +insistes insister ver 42.16 67.03 2.00 0.47 ind:pre:2s; +insistez insister ver 42.16 67.03 5.11 1.22 imp:pre:2p;ind:pre:2p; +insistiez insister ver 42.16 67.03 0.02 0.07 ind:imp:2p; +insistions insister ver 42.16 67.03 0.00 0.07 ind:imp:1p; +insistons insister ver 42.16 67.03 0.27 0.20 imp:pre:1p;ind:pre:1p; +insistât insister ver 42.16 67.03 0.00 0.07 sub:imp:3s; +insistèrent insister ver 42.16 67.03 0.00 0.27 ind:pas:3p; +insisté insister ver m s 42.16 67.03 7.75 9.86 par:pas; +insociable insociable adj s 0.02 0.20 0.02 0.20 +insolant insoler ver 0.00 0.20 0.00 0.07 par:pre; +insolation insolation nom f s 0.56 1.62 0.55 1.35 +insolations insolation nom f p 0.56 1.62 0.01 0.27 +insolemment insolemment adv 0.14 2.03 0.14 2.03 +insolence insolence nom f s 2.75 9.80 2.69 8.78 +insolences insolence nom f p 2.75 9.80 0.06 1.01 +insolent insolent adj m s 5.88 9.12 3.48 3.92 +insolente insolent adj f s 5.88 9.12 2.23 3.24 +insolentes insolent adj f p 5.88 9.12 0.03 0.47 +insolents insolent nom m p 1.31 0.88 0.16 0.20 +insolite insolite adj s 2.90 18.99 2.24 15.81 +insolitement insolitement adv 0.00 0.07 0.00 0.07 +insolites insolite adj p 2.90 18.99 0.66 3.18 +insolé insoler ver m s 0.00 0.20 0.00 0.07 par:pas; +insoluble insoluble adj s 0.69 2.16 0.50 1.28 +insolubles insoluble adj p 0.69 2.16 0.19 0.88 +insolvable insolvable adj m s 0.14 0.07 0.12 0.00 +insolvables insolvable adj m p 0.14 0.07 0.02 0.07 +insomniaque insomniaque adj s 0.77 0.95 0.62 0.68 +insomniaques insomniaque nom p 0.28 0.54 0.23 0.14 +insomnie insomnie nom f s 3.69 8.24 2.55 6.08 +insomnies insomnie nom f p 3.69 8.24 1.14 2.16 +insomnieuse insomnieux nom f s 0.00 0.27 0.00 0.07 +insomnieux insomnieux nom m 0.00 0.27 0.00 0.20 +insondable insondable adj s 0.95 4.32 0.38 3.58 +insondablement insondablement adv 0.00 0.14 0.00 0.14 +insondables insondable adj p 0.95 4.32 0.58 0.74 +insonore insonore adj m s 0.27 0.34 0.27 0.34 +insonorisation insonorisation nom f s 0.02 0.07 0.02 0.07 +insonoriser insonoriser ver 0.58 0.47 0.05 0.14 inf; +insonorisé insonoriser ver m s 0.58 0.47 0.32 0.00 par:pas; +insonorisée insonoriser ver f s 0.58 0.47 0.12 0.34 par:pas; +insonorisées insonoriser ver f p 0.58 0.47 0.03 0.00 par:pas; +insonorisés insonoriser ver m p 0.58 0.47 0.07 0.00 par:pas; +insonorité insonorité nom f s 0.00 0.07 0.00 0.07 +insortable insortable adj s 0.01 0.07 0.01 0.00 +insortables insortable adj p 0.01 0.07 0.00 0.07 +insouciance insouciance nom f s 1.15 7.91 1.15 7.91 +insouciant insouciant adj m s 3.27 6.55 1.75 2.16 +insouciante insouciant adj f s 3.27 6.55 0.58 2.70 +insouciantes insouciant adj f p 3.27 6.55 0.33 0.34 +insouciants insouciant adj m p 3.27 6.55 0.61 1.35 +insoucieuse insoucieux adj f s 0.04 1.28 0.00 0.27 +insoucieusement insoucieusement adv 0.00 0.07 0.00 0.07 +insoucieux insoucieux adj m 0.04 1.28 0.04 1.01 +insoulevables insoulevable adj p 0.00 0.07 0.00 0.07 +insoumis insoumis nom m 0.36 0.88 0.20 0.81 +insoumise insoumis adj f s 0.37 1.08 0.20 0.14 +insoumission insoumission nom f s 0.03 0.81 0.03 0.81 +insoupçonnable insoupçonnable adj s 0.24 1.62 0.23 0.88 +insoupçonnables insoupçonnable adj p 0.24 1.62 0.01 0.74 +insoupçonné insoupçonné adj m s 0.16 2.57 0.04 0.47 +insoupçonnée insoupçonné adj f s 0.16 2.57 0.03 0.88 +insoupçonnées insoupçonné adj f p 0.16 2.57 0.06 0.68 +insoupçonnés insoupçonné adj m p 0.16 2.57 0.04 0.54 +insoutenable insoutenable adj s 1.04 4.86 0.88 4.39 +insoutenables insoutenable adj p 1.04 4.86 0.16 0.47 +inspecta inspecter ver 7.54 13.99 0.02 1.28 ind:pas:3s; +inspectai inspecter ver 7.54 13.99 0.01 0.54 ind:pas:1s; +inspectaient inspecter ver 7.54 13.99 0.01 0.41 ind:imp:3p; +inspectais inspecter ver 7.54 13.99 0.04 0.20 ind:imp:1s; +inspectait inspecter ver 7.54 13.99 0.04 1.55 ind:imp:3s; +inspectant inspecter ver 7.54 13.99 0.09 0.95 par:pre; +inspecte inspecter ver 7.54 13.99 1.17 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inspectent inspecter ver 7.54 13.99 0.06 0.27 ind:pre:3p; +inspecter inspecter ver 7.54 13.99 3.61 5.14 inf; +inspectera inspecter ver 7.54 13.99 0.07 0.00 ind:fut:3s; +inspecterais inspecter ver 7.54 13.99 0.01 0.07 cnd:pre:1s; +inspecterez inspecter ver 7.54 13.99 0.01 0.00 ind:fut:2p; +inspecteront inspecter ver 7.54 13.99 0.03 0.00 ind:fut:3p; +inspectes inspecter ver 7.54 13.99 0.04 0.07 ind:pre:2s; +inspecteur inspecteur nom m s 69.77 19.66 64.12 15.74 +inspecteurs inspecteur nom m p 69.77 19.66 4.99 3.92 +inspectez inspecter ver 7.54 13.99 0.41 0.00 imp:pre:2p;ind:pre:2p; +inspectiez inspecter ver 7.54 13.99 0.02 0.00 ind:imp:2p; +inspection inspection nom f s 7.80 9.39 6.97 8.18 +inspections inspection nom f p 7.80 9.39 0.83 1.22 +inspectons inspecter ver 7.54 13.99 0.08 0.07 imp:pre:1p;ind:pre:1p; +inspectrice inspecteur nom f s 69.77 19.66 0.67 0.00 +inspectèrent inspecter ver 7.54 13.99 0.00 0.07 ind:pas:3p; +inspecté inspecter ver m s 7.54 13.99 1.29 1.55 par:pas; +inspectée inspecter ver f s 7.54 13.99 0.18 0.20 par:pas; +inspectées inspecter ver f p 7.54 13.99 0.15 0.00 par:pas; +inspectés inspecter ver m p 7.54 13.99 0.06 0.14 par:pas; +inspira inspirer ver 26.56 45.00 0.11 2.23 ind:pas:3s; +inspirai inspirer ver 26.56 45.00 0.00 0.07 ind:pas:1s; +inspiraient inspirer ver 26.56 45.00 0.08 3.04 ind:imp:3p; +inspirais inspirer ver 26.56 45.00 0.11 0.34 ind:imp:1s;ind:imp:2s; +inspirait inspirer ver 26.56 45.00 0.86 10.81 ind:imp:3s; +inspirant inspirer ver 26.56 45.00 0.60 2.43 par:pre; +inspirante inspirant adj f s 0.28 0.47 0.11 0.00 +inspirantes inspirant adj f p 0.28 0.47 0.01 0.27 +inspirants inspirant adj m p 0.28 0.47 0.00 0.07 +inspirateur inspirateur nom m s 0.11 1.08 0.03 0.61 +inspirateurs inspirateur nom m p 0.11 1.08 0.00 0.14 +inspiration inspiration nom f s 7.38 18.04 7.04 17.16 +inspirations inspiration nom f p 7.38 18.04 0.34 0.88 +inspiratoire inspiratoire adj m s 0.00 0.07 0.00 0.07 +inspiratrice inspirateur nom f s 0.11 1.08 0.08 0.27 +inspiratrices inspiratrice nom f p 0.02 0.00 0.02 0.00 +inspire inspirer ver 26.56 45.00 9.34 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +inspirent inspirer ver 26.56 45.00 0.94 1.49 ind:pre:3p; +inspirer inspirer ver 26.56 45.00 3.21 5.95 inf; +inspirera inspirer ver 26.56 45.00 0.20 0.34 ind:fut:3s; +inspireraient inspirer ver 26.56 45.00 0.00 0.07 cnd:pre:3p; +inspirerait inspirer ver 26.56 45.00 0.10 0.47 cnd:pre:3s; +inspireras inspirer ver 26.56 45.00 0.00 0.14 ind:fut:2s; +inspireront inspirer ver 26.56 45.00 0.01 0.07 ind:fut:3p; +inspires inspirer ver 26.56 45.00 0.47 0.07 ind:pre:2s; +inspirez inspirer ver 26.56 45.00 1.79 0.27 imp:pre:2p;ind:pre:2p; +inspiriez inspirer ver 26.56 45.00 0.01 0.00 ind:imp:2p; +inspirions inspirer ver 26.56 45.00 0.00 0.07 ind:imp:1p; +inspirât inspirer ver 26.56 45.00 0.00 0.20 sub:imp:3s; +inspirèrent inspirer ver 26.56 45.00 0.02 0.34 ind:pas:3p; +inspiré inspirer ver m s 26.56 45.00 5.89 5.47 par:pas; +inspirée inspirer ver f s 26.56 45.00 1.55 1.76 par:pas; +inspirées inspirer ver f p 26.56 45.00 0.56 0.81 par:pas; +inspirés inspirer ver m p 26.56 45.00 0.71 1.76 par:pas; +instabilité instabilité nom f s 0.93 0.81 0.93 0.81 +instable instable adj s 5.00 4.93 4.20 3.92 +instables instable adj p 5.00 4.93 0.80 1.01 +installa installer ver 70.76 162.23 0.27 16.35 ind:pas:3s; +installai installer ver 70.76 162.23 0.02 2.09 ind:pas:1s; +installaient installer ver 70.76 162.23 0.12 3.38 ind:imp:3p; +installais installer ver 70.76 162.23 0.44 1.22 ind:imp:1s;ind:imp:2s; +installait installer ver 70.76 162.23 0.69 11.49 ind:imp:3s; +installant installer ver 70.76 162.23 0.22 2.16 par:pre; +installasse installer ver 70.76 162.23 0.00 0.07 sub:imp:1s; +installateur installateur nom m s 0.07 0.00 0.07 0.00 +installation installation nom f s 6.75 12.57 4.16 9.80 +installations installation nom f p 6.75 12.57 2.59 2.77 +installe installer ver 70.76 162.23 12.89 15.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +installent installer ver 70.76 162.23 1.38 2.97 ind:pre:3p; +installer installer ver 70.76 162.23 22.76 29.73 ind:pre:2p;inf; +installera installer ver 70.76 162.23 1.01 0.88 ind:fut:3s; +installerai installer ver 70.76 162.23 0.63 0.54 ind:fut:1s; +installeraient installer ver 70.76 162.23 0.10 0.14 cnd:pre:3p; +installerais installer ver 70.76 162.23 0.23 0.54 cnd:pre:1s;cnd:pre:2s; +installerait installer ver 70.76 162.23 0.29 0.68 cnd:pre:3s; +installeras installer ver 70.76 162.23 0.29 0.07 ind:fut:2s; +installerez installer ver 70.76 162.23 0.14 0.00 ind:fut:2p; +installerions installer ver 70.76 162.23 0.10 0.07 cnd:pre:1p; +installerons installer ver 70.76 162.23 0.19 0.14 ind:fut:1p; +installeront installer ver 70.76 162.23 0.23 0.27 ind:fut:3p; +installes installer ver 70.76 162.23 1.39 0.34 ind:pre:2s; +installeur installeur nom m s 0.00 0.07 0.00 0.07 +installez installer ver 70.76 162.23 6.66 0.61 imp:pre:2p;ind:pre:2p; +installiez installer ver 70.76 162.23 0.10 0.00 ind:imp:2p; +installions installer ver 70.76 162.23 0.03 1.22 ind:imp:1p; +installâmes installer ver 70.76 162.23 0.00 1.62 ind:pas:1p; +installons installer ver 70.76 162.23 0.60 0.61 imp:pre:1p;ind:pre:1p; +installât installer ver 70.76 162.23 0.00 0.20 sub:imp:3s; +installèrent installer ver 70.76 162.23 0.09 3.99 ind:pas:3p; +installé installer ver m s 70.76 162.23 11.02 33.51 par:pas; +installée installer ver f s 70.76 162.23 4.78 14.26 par:pas; +installées installer ver f p 70.76 162.23 0.74 3.18 par:pas; +installés installer ver m p 70.76 162.23 3.34 14.05 par:pas; +instamment instamment adv 0.12 1.35 0.12 1.35 +instance instance nom f s 2.12 4.59 1.62 1.76 +instances instance nom f p 2.12 4.59 0.50 2.84 +instant instant nom m s 189.41 340.20 182.14 285.88 +instantané instantané adj m s 2.31 2.97 1.22 1.22 +instantanée instantané adj f s 2.31 2.97 0.98 1.35 +instantanées instantané adj f p 2.31 2.97 0.03 0.20 +instantanéité instantanéité nom f s 0.00 0.07 0.00 0.07 +instantanément instantanément adv 2.15 7.57 2.15 7.57 +instantanés instantané nom m p 0.33 1.01 0.12 0.41 +instante instant adj f s 3.55 18.78 0.00 0.20 +instantes instant adj f p 3.55 18.78 0.01 0.47 +instants instant nom m p 189.41 340.20 7.27 54.32 +instaura instaurer ver 2.63 4.66 0.26 0.34 ind:pas:3s; +instaurai instaurer ver 2.63 4.66 0.00 0.07 ind:pas:1s; +instaurait instaurer ver 2.63 4.66 0.00 0.47 ind:imp:3s; +instaurant instaurer ver 2.63 4.66 0.00 0.14 par:pre; +instauration instauration nom f s 0.02 0.27 0.02 0.27 +instauratrice instaurateur nom f s 0.00 0.07 0.00 0.07 +instaure instaurer ver 2.63 4.66 0.16 0.41 ind:pre:1s;ind:pre:3s; +instaurer instaurer ver 2.63 4.66 1.31 1.35 inf; +instaurera instaurer ver 2.63 4.66 0.02 0.00 ind:fut:3s; +instaurerions instaurer ver 2.63 4.66 0.00 0.07 cnd:pre:1p; +instaurions instaurer ver 2.63 4.66 0.00 0.07 ind:imp:1p; +instaurèrent instaurer ver 2.63 4.66 0.00 0.07 ind:pas:3p; +instauré instaurer ver m s 2.63 4.66 0.63 1.22 par:pas; +instaurée instaurer ver f s 2.63 4.66 0.21 0.14 par:pas; +instaurées instaurer ver f p 2.63 4.66 0.02 0.14 par:pas; +instaurés instaurer ver m p 2.63 4.66 0.02 0.20 par:pas; +insère insérer ver 2.92 4.26 0.57 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insèrent insérer ver 2.92 4.26 0.05 0.14 ind:pre:3p; +instigateur instigateur nom m s 1.04 1.01 0.88 0.47 +instigateurs instigateur nom m p 1.04 1.01 0.07 0.34 +instigation instigation nom f s 0.14 0.88 0.14 0.88 +instigatrice instigateur nom f s 1.04 1.01 0.09 0.20 +instilla instiller ver 0.24 0.74 0.00 0.14 ind:pas:3s; +instille instiller ver 0.24 0.74 0.00 0.07 ind:pre:3s; +instiller instiller ver 0.24 0.74 0.20 0.20 inf; +instillera instiller ver 0.24 0.74 0.00 0.07 ind:fut:3s; +instillé instiller ver m s 0.24 0.74 0.04 0.20 par:pas; +instillées instiller ver f p 0.24 0.74 0.00 0.07 par:pas; +instinct instinct nom m s 16.95 35.27 14.27 31.01 +instinctif instinctif adj m s 1.26 9.59 0.72 4.59 +instinctifs instinctif adj m p 1.26 9.59 0.01 0.34 +instinctive instinctif adj f s 1.26 9.59 0.51 4.39 +instinctivement instinctivement adv 1.50 9.46 1.50 9.46 +instinctives instinctif adj f p 1.26 9.59 0.01 0.27 +instinctivo instinctivo adv 0.00 0.07 0.00 0.07 +instincts instinct nom m p 16.95 35.27 2.69 4.26 +instinctuel instinctuel adj m s 0.01 0.00 0.01 0.00 +instit instit nom s 1.09 1.49 0.98 1.15 +instits instit nom p 1.09 1.49 0.11 0.34 +institua instituer ver 0.41 6.42 0.00 0.20 ind:pas:3s; +instituai instituer ver 0.41 6.42 0.00 0.14 ind:pas:1s; +instituaient instituer ver 0.41 6.42 0.00 0.07 ind:imp:3p; +instituait instituer ver 0.41 6.42 0.00 0.54 ind:imp:3s; +instituant instituer ver 0.41 6.42 0.00 0.68 par:pre; +institue instituer ver 0.41 6.42 0.11 0.14 ind:pre:3s; +instituent instituer ver 0.41 6.42 0.00 0.07 ind:pre:3p; +instituer instituer ver 0.41 6.42 0.05 1.69 inf; +instituons instituer ver 0.41 6.42 0.01 0.00 imp:pre:1p; +institut institut nom m s 5.49 4.53 5.37 3.85 +instituteur instituteur nom m s 11.49 23.31 7.29 13.18 +instituteurs instituteur nom m p 11.49 23.31 0.79 2.91 +instituèrent instituer ver 0.41 6.42 0.00 0.07 ind:pas:3p; +institution institution nom f s 9.41 17.23 6.23 7.57 +institutionnalisé institutionnaliser ver m s 0.03 0.00 0.03 0.00 par:pas; +institutionnel institutionnel adj m s 0.50 0.27 0.17 0.14 +institutionnelle institutionnel adj f s 0.50 0.27 0.30 0.14 +institutionnels institutionnel adj m p 0.50 0.27 0.03 0.00 +institutions institution nom f p 9.41 17.23 3.19 9.66 +institutrice instituteur nom f s 11.49 23.31 3.42 6.08 +institutrices institutrice nom f p 0.30 0.00 0.30 0.00 +instituts institut nom m p 5.49 4.53 0.12 0.68 +institué instituer ver m s 0.41 6.42 0.19 2.30 par:pas; +instituée instituer ver f s 0.41 6.42 0.01 0.41 par:pas; +instituées instituer ver f p 0.41 6.42 0.02 0.14 par:pas; +institués instituer ver m p 0.41 6.42 0.01 0.00 par:pas; +instructeur instructeur nom m s 1.60 2.09 1.12 1.22 +instructeurs instructeur nom m p 1.60 2.09 0.48 0.88 +instructif instructif adj m s 2.08 2.91 1.54 1.55 +instructifs instructif adj m p 2.08 2.91 0.19 0.14 +instruction instruction nom f s 22.37 30.27 6.91 16.08 +instructions instruction nom f p 22.37 30.27 15.46 14.19 +instructive instructif adj f s 2.08 2.91 0.14 0.88 +instructives instructif adj f p 2.08 2.91 0.22 0.34 +instruira instruire ver 5.85 11.96 0.16 0.07 ind:fut:3s; +instruirai instruire ver 5.85 11.96 0.02 0.00 ind:fut:1s; +instruiraient instruire ver 5.85 11.96 0.00 0.07 cnd:pre:3p; +instruirait instruire ver 5.85 11.96 0.02 0.41 cnd:pre:3s; +instruire instruire ver 5.85 11.96 2.49 5.81 inf; +instruis instruire ver 5.85 11.96 0.39 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +instruisîmes instruire ver 5.85 11.96 0.00 0.07 ind:pas:1p; +instruisaient instruire ver 5.85 11.96 0.00 0.14 ind:imp:3p; +instruisais instruire ver 5.85 11.96 0.01 0.20 ind:imp:1s; +instruisait instruire ver 5.85 11.96 0.00 0.41 ind:imp:3s; +instruisant instruire ver 5.85 11.96 0.04 0.07 par:pre; +instruise instruire ver 5.85 11.96 0.04 0.27 sub:pre:1s;sub:pre:3s; +instruisent instruire ver 5.85 11.96 0.12 0.47 ind:pre:3p; +instruisez instruire ver 5.85 11.96 0.08 0.00 imp:pre:2p;ind:pre:2p; +instruisirent instruire ver 5.85 11.96 0.00 0.07 ind:pas:3p; +instruisis instruire ver 5.85 11.96 0.01 0.00 ind:pas:1s; +instruisit instruire ver 5.85 11.96 0.10 0.41 ind:pas:3s; +instruit instruit adj m s 3.58 3.31 2.37 1.69 +instruite instruire ver f s 5.85 11.96 0.28 0.61 par:pas; +instruites instruit adj f p 3.58 3.31 0.11 0.20 +instruits instruit adj m p 3.58 3.31 1.02 1.01 +instrument instrument nom m s 22.67 36.08 14.59 21.62 +instrumentais instrumenter ver 0.01 0.20 0.00 0.07 ind:imp:1s; +instrumental instrumental adj m s 0.20 0.41 0.16 0.07 +instrumentale instrumental adj f s 0.20 0.41 0.04 0.34 +instrumentation instrumentation nom f s 0.23 0.07 0.23 0.07 +instrumentaux instrumental adj m p 0.20 0.41 0.01 0.00 +instrumenter instrumenter ver 0.01 0.20 0.01 0.14 inf; +instrumentiste instrumentiste nom s 0.03 0.27 0.01 0.14 +instrumentistes instrumentiste nom p 0.03 0.27 0.02 0.14 +instruments instrument nom m p 22.67 36.08 8.08 14.46 +insu insu nom m s 3.74 10.20 3.74 10.20 +insubmersible insubmersible adj m s 0.11 0.20 0.09 0.14 +insubmersibles insubmersible adj f p 0.11 0.20 0.02 0.07 +insubordination insubordination nom f s 1.17 0.74 1.16 0.74 +insubordinations insubordination nom f p 1.17 0.74 0.01 0.00 +insubordonné insubordonné adj m s 0.14 0.00 0.13 0.00 +insubordonnée insubordonné adj f s 0.14 0.00 0.01 0.00 +insécable insécable adj s 0.00 0.07 0.00 0.07 +insuccès insuccès nom m 0.02 0.20 0.02 0.20 +insécurité insécurité nom f s 0.92 1.49 0.86 1.42 +insécurités insécurité nom f p 0.92 1.49 0.05 0.07 +insuffisamment insuffisamment adv 0.03 0.68 0.03 0.68 +insuffisance insuffisance nom f s 1.40 3.85 1.20 2.50 +insuffisances insuffisance nom f p 1.40 3.85 0.20 1.35 +insuffisant insuffisant adj m s 3.45 5.54 1.74 2.57 +insuffisante insuffisant adj f s 3.45 5.54 0.79 1.08 +insuffisantes insuffisant adj f p 3.45 5.54 0.42 0.74 +insuffisants insuffisant adj m p 3.45 5.54 0.51 1.15 +insufflaient insuffler ver 0.89 1.62 0.00 0.07 ind:imp:3p; +insufflait insuffler ver 0.89 1.62 0.03 0.20 ind:imp:3s; +insufflant insuffler ver 0.89 1.62 0.03 0.00 par:pre; +insufflateur insufflateur nom m s 0.00 0.07 0.00 0.07 +insuffle insuffler ver 0.89 1.62 0.10 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insufflent insuffler ver 0.89 1.62 0.00 0.07 ind:pre:3p; +insuffler insuffler ver 0.89 1.62 0.53 0.74 inf; +insufflera insuffler ver 0.89 1.62 0.00 0.07 ind:fut:3s; +insufflé insuffler ver m s 0.89 1.62 0.18 0.27 par:pas; +insufflée insuffler ver f s 0.89 1.62 0.01 0.07 par:pas; +insufflées insuffler ver f p 0.89 1.62 0.01 0.00 par:pas; +insula insula nom f s 0.01 0.00 0.01 0.00 +insulaire insulaire adj s 0.09 1.01 0.03 0.81 +insulaires insulaire adj p 0.09 1.01 0.06 0.20 +insularité insularité nom f s 0.00 0.07 0.00 0.07 +insulation insulation nom f s 0.01 0.00 0.01 0.00 +insuline insuline nom f s 1.45 1.15 1.45 1.15 +insulinique insulinique adj m s 0.01 0.41 0.01 0.41 +insulta insulter ver 26.93 18.24 0.01 0.61 ind:pas:3s; +insultaient insulter ver 26.93 18.24 0.28 0.74 ind:imp:3p; +insultais insulter ver 26.93 18.24 0.09 0.34 ind:imp:1s;ind:imp:2s; +insultait insulter ver 26.93 18.24 0.20 1.35 ind:imp:3s; +insultant insultant adj m s 1.90 3.24 1.38 1.62 +insultante insultant adj f s 1.90 3.24 0.41 0.68 +insultantes insultant adj f p 1.90 3.24 0.06 0.20 +insultants insultant adj m p 1.90 3.24 0.05 0.74 +insulte insulter ver 26.93 18.24 6.13 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insultent insulter ver 26.93 18.24 0.88 0.81 ind:pre:3p;sub:pre:3p; +insulter insulter ver 26.93 18.24 6.76 6.42 inf;; +insulterai insulter ver 26.93 18.24 0.04 0.00 ind:fut:1s; +insulterais insulter ver 26.93 18.24 0.06 0.20 cnd:pre:1s;cnd:pre:2s; +insulteras insulter ver 26.93 18.24 0.01 0.00 ind:fut:2s; +insultes insulte nom f p 10.49 15.88 5.25 8.92 +insulteur insulteur nom m s 0.00 0.27 0.00 0.20 +insulteurs insulteur nom m p 0.00 0.27 0.00 0.07 +insultez insulter ver 26.93 18.24 2.52 0.27 imp:pre:2p;ind:pre:2p; +insultions insulter ver 26.93 18.24 0.00 0.07 ind:imp:1p; +insultons insulter ver 26.93 18.24 0.03 0.00 imp:pre:1p;ind:pre:1p; +insulté insulter ver m s 26.93 18.24 5.95 1.62 par:pas; +insultée insulter ver f s 26.93 18.24 1.28 0.54 par:pas; +insultées insulté ver f p 0.00 0.07 0.00 0.07 par:pas; +insultés insulter ver m p 26.93 18.24 0.37 0.34 par:pas; +inséminateur inséminateur nom m s 0.27 0.00 0.27 0.00 +insémination insémination nom f s 0.67 0.81 0.67 0.41 +inséminations insémination nom f p 0.67 0.81 0.00 0.41 +inséminer inséminer ver 0.50 0.34 0.17 0.07 inf; +inséminé inséminer ver m s 0.50 0.34 0.02 0.00 par:pas; +inséminée inséminer ver f s 0.50 0.34 0.31 0.14 par:pas; +inséminés inséminer ver m p 0.50 0.34 0.00 0.14 par:pas; +inséparabilité inséparabilité nom f s 0.00 0.07 0.00 0.07 +inséparable inséparable adj s 3.08 6.28 0.34 3.18 +inséparablement inséparablement adv 0.00 0.14 0.00 0.14 +inséparables inséparable adj p 3.08 6.28 2.73 3.11 +insupportable insupportable adj s 11.42 25.74 11.01 22.23 +insupportablement insupportablement adv 0.25 0.41 0.25 0.41 +insupportables insupportable adj p 11.42 25.74 0.41 3.51 +insupportaient insupporter ver 0.43 0.27 0.00 0.14 ind:imp:3p; +insupporte insupporter ver 0.43 0.27 0.29 0.07 ind:pre:3s; +insupportent insupporter ver 0.43 0.27 0.14 0.07 ind:pre:3p; +inséra insérer ver 2.92 4.26 0.00 0.07 ind:pas:3s; +inséraient insérer ver 2.92 4.26 0.00 0.07 ind:imp:3p; +insérait insérer ver 2.92 4.26 0.03 0.47 ind:imp:3s; +insérant insérer ver 2.92 4.26 0.06 0.34 par:pre; +insérer insérer ver 2.92 4.26 1.01 1.69 inf; +insérera insérer ver 2.92 4.26 0.01 0.00 ind:fut:3s; +insérerait insérer ver 2.92 4.26 0.00 0.07 cnd:pre:3s; +insérerons insérer ver 2.92 4.26 0.01 0.00 ind:fut:1p; +insérez insérer ver 2.92 4.26 0.39 0.00 imp:pre:2p;ind:pre:2p; +insurge insurger ver 0.57 3.58 0.10 0.88 ind:pre:1s;ind:pre:3s; +insurgea insurger ver 0.57 3.58 0.00 0.41 ind:pas:3s; +insurgeai insurger ver 0.57 3.58 0.00 0.07 ind:pas:1s; +insurgeaient insurger ver 0.57 3.58 0.00 0.14 ind:imp:3p; +insurgeais insurger ver 0.57 3.58 0.00 0.20 ind:imp:1s; +insurgeait insurger ver 0.57 3.58 0.01 0.20 ind:imp:3s; +insurgeant insurger ver 0.57 3.58 0.00 0.07 par:pre; +insurgent insurger ver 0.57 3.58 0.01 0.14 ind:pre:3p; +insurgeons insurger ver 0.57 3.58 0.00 0.07 ind:pre:1p; +insurgeât insurger ver 0.57 3.58 0.00 0.07 sub:imp:3s; +insurger insurger ver 0.57 3.58 0.42 0.54 inf; +insurgera insurger ver 0.57 3.58 0.00 0.07 ind:fut:3s; +insurgerai insurger ver 0.57 3.58 0.00 0.07 ind:fut:1s; +insurgerait insurger ver 0.57 3.58 0.02 0.14 cnd:pre:3s; +insurgèrent insurger ver 0.57 3.58 0.00 0.07 ind:pas:3p; +insurgé insurger ver m s 0.57 3.58 0.01 0.20 par:pas; +insurgée insurgé nom f s 0.33 2.91 0.01 0.00 +insurgés insurgé nom m p 0.33 2.91 0.31 2.70 +insurmontable insurmontable adj s 0.77 2.77 0.64 2.36 +insurmontables insurmontable adj p 0.77 2.77 0.14 0.41 +insérons insérer ver 2.92 4.26 0.01 0.00 imp:pre:1p; +insurpassable insurpassable adj s 0.16 0.54 0.16 0.54 +insurpassé insurpassé adj m s 0.00 0.07 0.00 0.07 +insurrection insurrection nom f s 1.40 3.72 1.39 3.51 +insurrectionnel insurrectionnel adj m s 0.01 0.34 0.00 0.14 +insurrectionnelle insurrectionnel adj f s 0.01 0.34 0.01 0.20 +insurrections insurrection nom f p 1.40 3.72 0.01 0.20 +insérèrent insérer ver 2.92 4.26 0.00 0.07 ind:pas:3p; +inséré insérer ver m s 2.92 4.26 0.63 0.34 par:pas; +insérée insérer ver f s 2.92 4.26 0.09 0.27 par:pas; +insérées insérer ver f p 2.92 4.26 0.02 0.14 par:pas; +insérés insérer ver m p 2.92 4.26 0.02 0.27 par:pas; +intact intact adj m s 11.89 31.89 6.21 11.69 +intacte intact adj f s 11.89 31.89 3.51 11.35 +intactes intact adj f p 11.89 31.89 0.88 4.19 +intacts intact adj m p 11.89 31.89 1.29 4.66 +intaille intaille nom f s 0.00 0.20 0.00 0.14 +intailles intaille nom f p 0.00 0.20 0.00 0.07 +intangibilité intangibilité nom f s 0.01 0.07 0.01 0.07 +intangible intangible adj s 0.09 0.68 0.05 0.47 +intangibles intangible adj p 0.09 0.68 0.04 0.20 +intarissable intarissable adj s 0.45 3.85 0.44 2.97 +intarissablement intarissablement adv 0.00 0.27 0.00 0.27 +intarissables intarissable adj p 0.45 3.85 0.01 0.88 +intellect intellect nom m s 1.14 0.95 1.14 0.95 +intellectualisation intellectualisation nom f s 0.01 0.00 0.01 0.00 +intellectualise intellectualiser ver 0.00 0.20 0.00 0.07 ind:pre:3s; +intellectualiser intellectualiser ver 0.00 0.20 0.00 0.07 inf; +intellectualisme intellectualisme nom m s 0.01 0.20 0.01 0.20 +intellectualiste intellectualiste nom s 0.00 0.07 0.00 0.07 +intellectualisées intellectualiser ver f p 0.00 0.20 0.00 0.07 par:pas; +intellectuel_phare intellectuel_phare nom m s 0.00 0.07 0.00 0.07 +intellectuel intellectuel adj m s 6.52 15.20 2.47 4.59 +intellectuelle intellectuel adj f s 6.52 15.20 2.04 6.08 +intellectuellement intellectuellement adv 0.97 0.81 0.97 0.81 +intellectuelles intellectuel adj f p 6.52 15.20 0.66 2.77 +intellectuels intellectuel nom m p 5.06 15.27 2.42 8.58 +intellige intelliger ver 0.00 0.07 0.00 0.07 ind:pre:1s; +intelligemment intelligemment adv 1.28 1.49 1.28 1.49 +intelligence intelligence nom f s 18.41 37.16 18.27 36.22 +intelligences intelligence nom f p 18.41 37.16 0.14 0.95 +intelligent intelligent adj m s 57.51 35.68 31.92 19.32 +intelligente intelligent adj f s 57.51 35.68 17.42 8.45 +intelligentes intelligent adj f p 57.51 35.68 2.53 1.82 +intelligents intelligent adj m p 57.51 35.68 5.65 6.08 +intelligentsia intelligentsia nom f s 0.44 0.95 0.44 0.95 +intelligibilité intelligibilité nom f s 0.01 0.27 0.01 0.27 +intelligible intelligible adj s 0.06 1.96 0.05 1.69 +intelligiblement intelligiblement adv 0.01 0.20 0.01 0.20 +intelligibles intelligible adj p 0.06 1.96 0.01 0.27 +intello intello nom s 3.11 1.08 1.96 0.34 +intellos intello nom p 3.11 1.08 1.16 0.74 +intempestif intempestif adj m s 0.38 2.84 0.15 0.74 +intempestifs intempestif adj m p 0.38 2.84 0.04 0.34 +intempestive intempestif adj f s 0.38 2.84 0.14 1.22 +intempestivement intempestivement adv 0.00 0.07 0.00 0.07 +intempestives intempestif adj f p 0.38 2.84 0.04 0.54 +intemporalité intemporalité nom f s 0.00 0.14 0.00 0.14 +intemporel intemporel adj m s 0.31 1.49 0.21 0.68 +intemporelle intemporel adj f s 0.31 1.49 0.07 0.74 +intemporelles intemporel adj f p 0.31 1.49 0.03 0.07 +intempérance intempérance nom f s 0.17 0.41 0.16 0.41 +intempérances intempérance nom f p 0.17 0.41 0.01 0.00 +intempérante intempérant adj f s 0.02 0.00 0.02 0.00 +intempéries intempérie nom f p 0.42 3.51 0.42 3.51 +intenable intenable adj s 0.91 3.31 0.83 2.97 +intenables intenable adj p 0.91 3.31 0.08 0.34 +intendance intendance nom f s 1.37 4.05 1.37 3.99 +intendances intendance nom f p 1.37 4.05 0.00 0.07 +intendant intendant nom m s 4.55 4.73 4.02 3.24 +intendante intendant nom f s 4.55 4.73 0.46 1.35 +intendants intendant nom m p 4.55 4.73 0.08 0.14 +intense intense adj s 8.45 22.57 7.20 20.27 +intenses intense adj p 8.45 22.57 1.25 2.30 +intensif intensif adj m s 3.50 1.55 1.02 0.47 +intensifia intensifier ver 1.22 1.28 0.00 0.07 ind:pas:3s; +intensifiaient intensifier ver 1.22 1.28 0.01 0.14 ind:imp:3p; +intensifiait intensifier ver 1.22 1.28 0.03 0.34 ind:imp:3s; +intensifiant intensifier ver 1.22 1.28 0.03 0.14 par:pre; +intensification intensification nom f s 0.02 0.14 0.02 0.14 +intensifie intensifier ver 1.22 1.28 0.18 0.20 imp:pre:2s;ind:pre:3s; +intensifient intensifier ver 1.22 1.28 0.27 0.00 ind:pre:3p; +intensifier intensifier ver 1.22 1.28 0.31 0.41 inf; +intensifiez intensifier ver 1.22 1.28 0.04 0.00 imp:pre:2p; +intensifié intensifier ver m s 1.22 1.28 0.20 0.00 par:pas; +intensifiée intensifier ver f s 1.22 1.28 0.04 0.00 par:pas; +intensifiées intensifier ver f p 1.22 1.28 0.11 0.00 par:pas; +intensifs intensif adj m p 3.50 1.55 1.75 0.14 +intension intension nom f s 0.04 0.00 0.04 0.00 +intensité intensité nom f s 3.11 13.24 3.11 13.18 +intensités intensité nom f p 3.11 13.24 0.00 0.07 +intensive intensif adj f s 3.50 1.55 0.66 0.95 +intensivement intensivement adv 0.14 0.14 0.14 0.14 +intensives intensif adj f p 3.50 1.55 0.07 0.00 +intensément intensément adv 0.87 8.58 0.87 8.58 +intenta intenter ver 1.34 0.68 0.01 0.07 ind:pas:3s; +intentait intenter ver 1.34 0.68 0.00 0.14 ind:imp:3s; +intente intenter ver 1.34 0.68 0.54 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intenter intenter ver 1.34 0.68 0.42 0.27 inf; +intentera intenter ver 1.34 0.68 0.03 0.00 ind:fut:3s; +intenterai intenter ver 1.34 0.68 0.04 0.00 ind:fut:1s; +intention intention nom f s 51.11 68.65 40.00 53.99 +intentionnalité intentionnalité nom f s 0.01 0.00 0.01 0.00 +intentionnel intentionnel adj m s 0.85 0.47 0.69 0.27 +intentionnelle intentionnel adj f s 0.85 0.47 0.15 0.14 +intentionnellement intentionnellement adv 1.04 0.81 1.04 0.81 +intentionnels intentionnel adj m p 0.85 0.47 0.01 0.07 +intentionné intentionné adj m s 0.43 1.22 0.27 0.20 +intentionnée intentionné adj f s 0.43 1.22 0.05 0.14 +intentionnées intentionné adj f p 0.43 1.22 0.02 0.20 +intentionnés intentionné adj m p 0.43 1.22 0.09 0.68 +intentions intention nom f p 51.11 68.65 11.12 14.66 +intenté intenter ver m s 1.34 0.68 0.12 0.07 par:pas; +intentée intenter ver f s 1.34 0.68 0.01 0.00 par:pas; +intentées intenter ver f p 1.34 0.68 0.01 0.07 par:pas; +intentés intenter ver m p 1.34 0.68 0.02 0.07 par:pas; +inter_école inter_école nom f p 0.03 0.00 0.03 0.00 +inter inter nom_sup m s 0.84 0.95 0.84 0.88 +interactif interactif adj m s 0.44 0.00 0.30 0.00 +interactifs interactif adj m p 0.44 0.00 0.07 0.00 +interaction interaction nom f s 0.92 0.20 0.76 0.14 +interactions interaction nom f p 0.92 0.20 0.16 0.07 +interactive interactif adj f s 0.44 0.00 0.06 0.00 +interactivité interactivité nom f s 0.05 0.00 0.05 0.00 +interagir interagir ver 0.30 0.00 0.17 0.00 inf; +interagis interagir ver 0.30 0.00 0.04 0.00 imp:pre:2s;ind:pre:2s; +interagissais interagir ver 0.30 0.00 0.01 0.00 ind:imp:1s; +interagissant interagir ver 0.30 0.00 0.03 0.00 par:pre; +interagit interagir ver 0.30 0.00 0.05 0.00 ind:pre:3s; +interallié interallié adj m s 0.02 2.97 0.00 2.43 +interalliée interallié adj f s 0.02 2.97 0.01 0.27 +interalliées interallié adj f p 0.02 2.97 0.00 0.14 +interalliés interallié adj m p 0.02 2.97 0.01 0.14 +interarmes interarmes adj f p 0.12 0.07 0.12 0.07 +interarmées interarmées adj m s 0.05 0.07 0.05 0.07 +intercalaient intercaler ver 0.20 1.82 0.00 0.14 ind:imp:3p; +intercalaire intercalaire adj m s 0.00 0.20 0.00 0.14 +intercalaires intercalaire adj m p 0.00 0.20 0.00 0.07 +intercalait intercaler ver 0.20 1.82 0.01 0.27 ind:imp:3s; +intercalant intercaler ver 0.20 1.82 0.00 0.27 par:pre; +intercale intercaler ver 0.20 1.82 0.00 0.41 ind:pre:1s;ind:pre:3s; +intercalent intercaler ver 0.20 1.82 0.00 0.07 ind:pre:3p; +intercaler intercaler ver 0.20 1.82 0.05 0.41 inf; +intercalera intercaler ver 0.20 1.82 0.00 0.07 ind:fut:3s; +intercalerai intercaler ver 0.20 1.82 0.01 0.00 ind:fut:1s; +intercalerez intercaler ver 0.20 1.82 0.10 0.00 ind:fut:2p; +intercalé intercaler ver m s 0.20 1.82 0.03 0.00 par:pas; +intercalée intercalé adj f s 0.00 0.20 0.00 0.07 +intercalées intercaler ver f p 0.20 1.82 0.00 0.14 par:pas; +intercalés intercaler ver m p 0.20 1.82 0.00 0.07 par:pas; +intercellulaire intercellulaire adj m s 0.01 0.00 0.01 0.00 +intercepta intercepter ver 6.64 3.65 0.01 0.47 ind:pas:3s; +interceptai intercepter ver 6.64 3.65 0.00 0.14 ind:pas:1s; +interceptais intercepter ver 6.64 3.65 0.01 0.00 ind:imp:1s; +interceptait intercepter ver 6.64 3.65 0.15 0.07 ind:imp:3s; +interceptant intercepter ver 6.64 3.65 0.03 0.07 par:pre; +intercepte intercepter ver 6.64 3.65 0.56 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interceptent intercepter ver 6.64 3.65 0.13 0.07 ind:pre:3p; +intercepter intercepter ver 6.64 3.65 1.81 1.28 inf; +interceptera intercepter ver 6.64 3.65 0.04 0.00 ind:fut:3s; +intercepterait intercepter ver 6.64 3.65 0.01 0.00 cnd:pre:3s; +intercepterez intercepter ver 6.64 3.65 0.01 0.00 ind:fut:2p; +intercepterons intercepter ver 6.64 3.65 0.04 0.00 ind:fut:1p; +intercepteur intercepteur nom m s 0.45 0.00 0.19 0.00 +intercepteurs intercepteur nom m p 0.45 0.00 0.26 0.00 +interceptez intercepter ver 6.64 3.65 0.69 0.00 imp:pre:2p;ind:pre:2p; +interception interception nom f s 1.20 0.27 1.10 0.20 +interceptions interception nom f p 1.20 0.27 0.09 0.07 +interceptèrent intercepter ver 6.64 3.65 0.00 0.07 ind:pas:3p; +intercepté intercepter ver m s 6.64 3.65 2.50 0.95 par:pas; +interceptée intercepter ver f s 6.64 3.65 0.15 0.07 par:pas; +interceptées intercepter ver f p 6.64 3.65 0.08 0.00 par:pas; +interceptés intercepter ver m p 6.64 3.65 0.41 0.20 par:pas; +intercesseur intercesseur nom m s 0.00 1.22 0.00 0.54 +intercesseurs intercesseur nom m p 0.00 1.22 0.00 0.68 +intercession intercession nom f s 0.20 1.01 0.20 1.01 +interchangeable interchangeable adj s 0.32 2.50 0.07 0.74 +interchangeables interchangeable adj p 0.32 2.50 0.24 1.76 +interchanger interchanger ver 0.13 0.14 0.00 0.14 inf; +interchangé interchanger ver m s 0.13 0.14 0.13 0.00 par:pas; +interclasse interclasse nom m s 0.03 0.07 0.01 0.00 +interclasses interclasse nom m p 0.03 0.07 0.01 0.07 +interclubs interclubs adj 0.01 0.00 0.01 0.00 +intercommunal intercommunal adj m s 0.01 0.00 0.01 0.00 +intercommunautaire intercommunautaire adj s 0.01 0.00 0.01 0.00 +intercommunication intercommunication nom f s 0.03 0.00 0.03 0.00 +interconnecté interconnecter ver m s 0.06 0.00 0.05 0.00 par:pas; +interconnectée interconnecter ver f s 0.06 0.00 0.01 0.00 par:pas; +interconnexion interconnexion nom f s 0.01 0.00 0.01 0.00 +intercontinental intercontinental adj m s 0.63 0.41 0.58 0.20 +intercontinentale intercontinental adj f s 0.63 0.41 0.00 0.07 +intercontinentales intercontinental adj f p 0.63 0.41 0.00 0.07 +intercontinentaux intercontinental adj m p 0.63 0.41 0.04 0.07 +intercostal intercostal adj m s 0.30 0.14 0.17 0.00 +intercostale intercostal adj f s 0.30 0.14 0.10 0.07 +intercostaux intercostal adj m p 0.30 0.14 0.03 0.07 +intercours intercours nom m 0.00 0.07 0.00 0.07 +intercourse intercourse nom f s 0.05 0.07 0.05 0.07 +intercède intercéder ver 0.63 0.68 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intercéda intercéder ver 0.63 0.68 0.00 0.14 ind:pas:3s; +intercédait intercéder ver 0.63 0.68 0.14 0.07 ind:imp:3s; +intercédant intercéder ver 0.63 0.68 0.00 0.07 par:pre; +intercéder intercéder ver 0.63 0.68 0.37 0.41 inf; +intercédera intercéder ver 0.63 0.68 0.02 0.00 ind:fut:3s; +intercéderai intercéder ver 0.63 0.68 0.03 0.00 ind:fut:1s; +intercédé intercéder ver m s 0.63 0.68 0.03 0.00 par:pas; +interculturel interculturel adj m s 0.01 0.07 0.00 0.07 +interculturels interculturel adj m p 0.01 0.07 0.01 0.00 +interdît interdire ver 63.72 54.39 0.00 0.07 sub:imp:3s; +interdiction interdiction nom f s 3.11 6.76 3.02 5.95 +interdictions interdiction nom f p 3.11 6.76 0.09 0.81 +interdira interdire ver 63.72 54.39 0.41 0.07 ind:fut:3s; +interdirai interdire ver 63.72 54.39 0.15 0.07 ind:fut:1s; +interdiraient interdire ver 63.72 54.39 0.02 0.14 cnd:pre:3p; +interdirais interdire ver 63.72 54.39 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +interdirait interdire ver 63.72 54.39 0.21 0.47 cnd:pre:3s; +interdire interdire ver 63.72 54.39 4.38 5.95 inf; +interdirent interdire ver 63.72 54.39 0.00 0.20 ind:pas:3p; +interdis interdire ver 63.72 54.39 7.55 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s; +interdisaient interdire ver 63.72 54.39 0.18 1.69 ind:imp:3p; +interdisais interdire ver 63.72 54.39 0.10 0.14 ind:imp:1s;ind:imp:2s; +interdisait interdire ver 63.72 54.39 0.51 9.46 ind:imp:3s; +interdisant interdire ver 63.72 54.39 0.64 1.35 par:pre; +interdisciplinaires interdisciplinaire adj f p 0.01 0.07 0.01 0.07 +interdise interdire ver 63.72 54.39 0.34 0.34 sub:pre:1s;sub:pre:3s; +interdisent interdire ver 63.72 54.39 0.77 1.15 ind:pre:3p; +interdisez interdire ver 63.72 54.39 0.18 0.07 imp:pre:2p;ind:pre:2p; +interdisiez interdire ver 63.72 54.39 0.13 0.00 ind:imp:2p; +interdisons interdire ver 63.72 54.39 0.02 0.00 ind:pre:1p; +interdissent interdire ver 63.72 54.39 0.01 0.07 sub:imp:3p; +interdit interdire ver m s 63.72 54.39 42.13 24.12 ind:pre:3s;par:pas; +interdite interdit adj f s 10.31 15.34 3.63 3.72 +interdites interdire ver f p 63.72 54.39 0.67 1.08 par:pas; +interdits interdire ver m p 63.72 54.39 2.27 1.69 par:pas; +interdépartementaux interdépartemental adj m p 0.01 0.00 0.01 0.00 +interdépendance interdépendance nom f s 0.11 0.74 0.11 0.74 +interdépendant interdépendant adj m s 0.02 0.00 0.02 0.00 +interethnique interethnique adj s 0.00 0.14 0.00 0.14 +interface interface nom f s 1.35 0.00 1.30 0.00 +interfacer interfacer ver 0.07 0.00 0.07 0.00 inf; +interfaces interface nom f p 1.35 0.00 0.04 0.00 +interfère interférer ver 2.75 0.68 0.80 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interfèrent interférer ver 2.75 0.68 0.14 0.14 ind:pre:3p; +interféraient interférer ver 2.75 0.68 0.03 0.00 ind:imp:3p; +interférait interférer ver 2.75 0.68 0.02 0.00 ind:imp:3s; +interférant interférer ver 2.75 0.68 0.07 0.07 par:pre; +interférence interférence nom f s 3.00 1.62 1.33 0.68 +interférences interférence nom f p 3.00 1.62 1.68 0.95 +interférent interférent adj m s 0.01 0.00 0.01 0.00 +interférer interférer ver 2.75 0.68 1.39 0.41 ind:pre:2p;inf; +interférez interférer ver 2.75 0.68 0.14 0.00 imp:pre:2p;ind:pre:2p; +interférométrie interférométrie nom f s 0.01 0.00 0.01 0.00 +interféron interféron nom m s 0.12 0.00 0.12 0.00 +interférons interférer ver 2.75 0.68 0.01 0.00 ind:pre:1p; +interféré interférer ver m s 2.75 0.68 0.16 0.00 par:pas; +intergalactique intergalactique adj s 1.07 0.14 0.85 0.14 +intergalactiques intergalactique adj p 1.07 0.14 0.22 0.00 +interglaciaire interglaciaire adj m s 0.14 0.00 0.14 0.00 +intergouvernemental intergouvernemental adj m s 0.03 0.00 0.01 0.00 +intergouvernementale intergouvernemental adj f s 0.03 0.00 0.01 0.00 +interjecter interjecter ver 0.00 0.07 0.00 0.07 inf; +interjection interjection nom f s 0.01 1.28 0.01 0.27 +interjections interjection nom f p 0.01 1.28 0.00 1.01 +interjeta interjeter ver 0.01 0.07 0.00 0.07 ind:pas:3s; +interjeter interjeter ver 0.01 0.07 0.01 0.00 inf; +interligne interligne nom m s 0.04 0.14 0.04 0.00 +interlignes interligne nom m p 0.04 0.14 0.00 0.14 +interlignés interligner ver m p 0.00 0.07 0.00 0.07 par:pas; +interlocuteur interlocuteur nom m s 1.28 14.73 0.98 10.27 +interlocuteurs interlocuteur nom m p 1.28 14.73 0.28 3.85 +interlocutoire interlocutoire adj f s 0.01 0.07 0.01 0.00 +interlocutoires interlocutoire adj p 0.01 0.07 0.00 0.07 +interlocutrice interlocuteur nom f s 1.28 14.73 0.01 0.41 +interlocutrices interlocuteur nom f p 1.28 14.73 0.00 0.20 +interlope interlope nom m s 0.03 0.00 0.03 0.00 +interlopes interlope adj m p 0.00 0.54 0.00 0.20 +interloque interloquer ver 0.04 1.62 0.00 0.27 ind:pre:1s;ind:pre:3s; +interloqué interloqué adj m s 0.02 3.11 0.02 1.62 +interloquée interloquer ver f s 0.04 1.62 0.01 0.47 par:pas; +interloquées interloqué adj f p 0.02 3.11 0.00 0.07 +interloqués interloquer ver m p 0.04 1.62 0.01 0.20 par:pas; +interlude interlude nom m s 0.30 0.34 0.29 0.27 +interludes interlude nom m p 0.30 0.34 0.01 0.07 +intermezzo intermezzo nom m s 0.10 0.07 0.10 0.07 +interminable interminable adj s 4.11 38.65 2.56 22.16 +interminablement interminablement adv 0.05 5.34 0.05 5.34 +interminables interminable adj p 4.11 38.65 1.54 16.49 +interministérielles interministériel adj f p 0.00 0.14 0.00 0.07 +interministériels interministériel adj m p 0.00 0.14 0.00 0.07 +intermission intermission nom f s 0.00 0.07 0.00 0.07 +intermittence intermittence nom f s 0.57 3.78 0.57 2.77 +intermittences intermittence nom f p 0.57 3.78 0.00 1.01 +intermittent intermittent adj m s 0.67 3.38 0.30 0.74 +intermittente intermittent adj f s 0.67 3.38 0.19 1.35 +intermittentes intermittent adj f p 0.67 3.38 0.14 0.95 +intermittents intermittent adj m p 0.67 3.38 0.05 0.34 +intermède intermède nom m s 0.89 2.84 0.77 2.30 +intermèdes intermède nom m p 0.89 2.84 0.11 0.54 +intermédiaire intermédiaire nom s 4.43 7.30 3.44 6.01 +intermédiaires intermédiaire nom p 4.43 7.30 1.00 1.28 +internat internat nom m s 2.37 3.04 2.25 2.64 +international international adj m s 16.65 24.86 8.04 9.12 +internationale international adj f s 16.65 24.86 5.29 10.00 +internationalement internationalement adv 0.07 0.14 0.07 0.14 +internationales international adj f p 16.65 24.86 1.63 3.99 +internationalisation internationalisation nom f s 0.01 0.07 0.01 0.07 +internationalisme internationalisme nom m s 0.00 0.61 0.00 0.61 +internationaliste internationaliste adj s 0.11 0.14 0.01 0.00 +internationalistes internationaliste adj p 0.11 0.14 0.10 0.14 +internationalisée internationaliser ver f s 0.00 0.14 0.00 0.07 par:pas; +internationalisés internationaliser ver m p 0.00 0.14 0.00 0.07 par:pas; +internationaux international adj m p 16.65 24.86 1.69 1.76 +internats internat nom m p 2.37 3.04 0.12 0.41 +internaute internaute nom s 0.11 0.00 0.01 0.00 +internautes internaute nom p 0.11 0.00 0.10 0.00 +interne interne adj s 13.15 7.30 8.86 5.47 +internement internement nom m s 0.51 1.22 0.51 1.22 +interner interner ver 4.21 1.15 1.71 0.27 inf; +internes interne adj p 13.15 7.30 4.29 1.82 +internet internet nom s 5.61 0.00 5.61 0.00 +internez interner ver 4.21 1.15 0.01 0.00 imp:pre:2p; +interniste interniste nom s 0.02 0.00 0.02 0.00 +interné interner ver m s 4.21 1.15 1.25 0.54 par:pas; +internée interner ver f s 4.21 1.15 0.76 0.07 par:pas; +internées interner ver f p 4.21 1.15 0.03 0.00 par:pas; +internés interner ver m p 4.21 1.15 0.07 0.27 par:pas; +interpella interpeller ver 1.52 15.54 0.00 3.04 ind:pas:3s; +interpellai interpeller ver 1.52 15.54 0.00 0.07 ind:pas:1s; +interpellaient interpeller ver 1.52 15.54 0.00 1.42 ind:imp:3p; +interpellais interpeller ver 1.52 15.54 0.00 0.14 ind:imp:1s; +interpellait interpeller ver 1.52 15.54 0.01 1.15 ind:imp:3s; +interpellant interpeller ver 1.52 15.54 0.00 1.08 par:pre; +interpellateur interpellateur nom m s 0.00 0.27 0.00 0.20 +interpellateurs interpellateur nom m p 0.00 0.27 0.00 0.07 +interpellation interpellation nom f s 0.23 1.15 0.07 0.47 +interpellations interpellation nom f p 0.23 1.15 0.17 0.68 +interpelle interpeller ver 1.52 15.54 0.36 2.43 ind:pre:1s;ind:pre:3s; +interpellent interpeller ver 1.52 15.54 0.46 1.15 ind:pre:3p; +interpeller interpeller ver 1.52 15.54 0.16 1.69 inf; +interpellerait interpeller ver 1.52 15.54 0.04 0.07 cnd:pre:3s; +interpellez interpeller ver 1.52 15.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +interpellèrent interpeller ver 1.52 15.54 0.00 0.27 ind:pas:3p; +interpellé interpeller ver m s 1.52 15.54 0.34 1.96 par:pas; +interpellée interpeller ver f s 1.52 15.54 0.06 0.74 par:pas; +interpellées interpeller ver f p 1.52 15.54 0.01 0.07 par:pas; +interpellés interpeller ver m p 1.52 15.54 0.05 0.27 par:pas; +interphase interphase nom f s 0.01 0.00 0.01 0.00 +interphone interphone nom m s 1.87 1.22 1.58 1.15 +interphones interphone nom m p 1.87 1.22 0.28 0.07 +interplanétaire interplanétaire adj s 0.80 0.20 0.53 0.07 +interplanétaires interplanétaire adj p 0.80 0.20 0.26 0.14 +interpolateur interpolateur nom m s 0.01 0.00 0.01 0.00 +interpolation interpolation nom f s 0.01 0.14 0.01 0.00 +interpolations interpolation nom f p 0.01 0.14 0.00 0.14 +interpole interpoler ver 0.01 0.07 0.01 0.00 ind:pre:3s; +interpolez interpoler ver 0.01 0.07 0.00 0.07 imp:pre:2p; +interposa interposer ver 1.69 6.76 0.10 0.68 ind:pas:3s; +interposai interposer ver 1.69 6.76 0.00 0.20 ind:pas:1s; +interposaient interposer ver 1.69 6.76 0.01 0.20 ind:imp:3p; +interposais interposer ver 1.69 6.76 0.00 0.07 ind:imp:1s; +interposait interposer ver 1.69 6.76 0.04 1.08 ind:imp:3s; +interposant interposer ver 1.69 6.76 0.00 0.68 par:pre; +interpose interposer ver 1.69 6.76 0.26 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interposent interposer ver 1.69 6.76 0.02 0.27 ind:pre:3p; +interposer interposer ver 1.69 6.76 0.80 1.49 inf; +interposera interposer ver 1.69 6.76 0.04 0.07 ind:fut:3s; +interposeront interposer ver 1.69 6.76 0.03 0.00 ind:fut:3p; +interposez interposer ver 1.69 6.76 0.04 0.00 imp:pre:2p;ind:pre:2p; +interposition interposition nom f s 0.01 0.07 0.01 0.07 +interposèrent interposer ver 1.69 6.76 0.00 0.14 ind:pas:3p; +interposé interposer ver m s 1.69 6.76 0.29 0.41 par:pas; +interposée interposer ver f s 1.69 6.76 0.07 0.20 par:pas; +interposées interposé adj f p 0.13 2.30 0.02 0.74 +interposés interposé adj m p 0.13 2.30 0.04 0.20 +interprofessionnelle interprofessionnel adj f s 0.00 0.07 0.00 0.07 +interprète interprète nom s 4.81 8.58 4.01 7.16 +interprètent interpréter ver 9.50 12.64 0.17 0.47 ind:pre:3p; +interprètes interprète nom p 4.81 8.58 0.80 1.42 +interpréta interpréter ver 9.50 12.64 0.01 0.61 ind:pas:3s; +interprétable interprétable adj m s 0.01 0.00 0.01 0.00 +interprétai interpréter ver 9.50 12.64 0.00 0.07 ind:pas:1s; +interprétaient interpréter ver 9.50 12.64 0.03 0.34 ind:imp:3p; +interprétais interpréter ver 9.50 12.64 0.17 0.27 ind:imp:1s;ind:imp:2s; +interprétait interpréter ver 9.50 12.64 0.04 0.95 ind:imp:3s; +interprétant interpréter ver 9.50 12.64 0.21 0.20 par:pre; +interprétante interprétant adj f s 0.00 0.07 0.00 0.07 +interprétatif interprétatif adj m s 0.04 0.20 0.02 0.14 +interprétation interprétation nom f s 5.49 7.77 4.90 5.68 +interprétations interprétation nom f p 5.49 7.77 0.59 2.09 +interprétative interprétatif adj f s 0.04 0.20 0.02 0.00 +interprétatives interprétatif adj f p 0.04 0.20 0.00 0.07 +interpréter interpréter ver 9.50 12.64 3.38 4.80 inf; +interprétera interpréter ver 9.50 12.64 0.17 0.00 ind:fut:3s; +interpréteraient interpréter ver 9.50 12.64 0.00 0.07 cnd:pre:3p; +interpréterait interpréter ver 9.50 12.64 0.01 0.14 cnd:pre:3s; +interpréteriez interpréter ver 9.50 12.64 0.00 0.07 cnd:pre:2p; +interpréteur interpréteur nom m s 0.01 0.00 0.01 0.00 +interprétez interpréter ver 9.50 12.64 0.20 0.20 imp:pre:2p;ind:pre:2p; +interprétât interpréter ver 9.50 12.64 0.00 0.07 sub:imp:3s; +interprétèrent interpréter ver 9.50 12.64 0.10 0.14 ind:pas:3p; +interprété interpréter ver m s 9.50 12.64 2.59 1.69 par:pas; +interprétée interpréter ver f s 9.50 12.64 0.32 0.95 par:pas; +interprétées interpréter ver f p 9.50 12.64 0.15 0.14 par:pas; +interprétés interpréter ver m p 9.50 12.64 0.10 0.07 par:pas; +interpénètre interpénétrer ver 0.02 0.14 0.00 0.07 ind:pre:3s; +interpénètrent interpénétrer ver 0.02 0.14 0.01 0.07 ind:pre:3p; +interpénétration interpénétration nom f s 0.01 0.14 0.01 0.07 +interpénétrations interpénétration nom f p 0.01 0.14 0.00 0.07 +interpénétrer interpénétrer ver 0.02 0.14 0.01 0.00 inf; +interracial interracial adj m s 0.08 0.00 0.01 0.00 +interraciale interracial adj f s 0.08 0.00 0.03 0.00 +interraciaux interracial adj m p 0.08 0.00 0.04 0.00 +interrelations interrelation nom f p 0.02 0.00 0.02 0.00 +interrogateur interrogateur nom m s 0.21 0.20 0.18 0.20 +interrogateurs interrogateur nom m p 0.21 0.20 0.03 0.00 +interrogatif interrogatif adj m s 0.03 1.89 0.01 0.74 +interrogatifs interrogatif adj m p 0.03 1.89 0.00 0.34 +interrogation interrogation nom f s 2.26 8.92 1.85 7.09 +interrogations interrogation nom f p 2.26 8.92 0.41 1.82 +interrogative interrogatif adj f s 0.03 1.89 0.02 0.68 +interrogativement interrogativement adv 0.00 0.07 0.00 0.07 +interrogatives interrogatif adj f p 0.03 1.89 0.00 0.14 +interrogatoire interrogatoire nom m s 11.66 10.14 9.56 6.96 +interrogatoires interrogatoire nom m p 11.66 10.14 2.10 3.18 +interrogatrice interrogateur nom f s 0.21 0.20 0.01 0.00 +interroge interroger ver 44.31 73.04 8.37 12.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +interrogea interroger ver 44.31 73.04 0.04 9.59 ind:pas:3s; +interrogeai interroger ver 44.31 73.04 0.13 2.23 ind:pas:1s; +interrogeaient interroger ver 44.31 73.04 0.10 2.09 ind:imp:3p; +interrogeais interroger ver 44.31 73.04 0.60 2.57 ind:imp:1s;ind:imp:2s; +interrogeait interroger ver 44.31 73.04 0.79 8.24 ind:imp:3s; +interrogeant interroger ver 44.31 73.04 0.39 2.36 par:pre; +interrogent interroger ver 44.31 73.04 1.04 1.42 ind:pre:3p; +interrogeâmes interroger ver 44.31 73.04 0.00 0.14 ind:pas:1p; +interrogeons interroger ver 44.31 73.04 0.65 0.27 imp:pre:1p;ind:pre:1p; +interrogeât interroger ver 44.31 73.04 0.00 0.34 sub:imp:3s; +interroger interroger ver 44.31 73.04 16.22 18.58 inf;;inf;;inf;; +interrogera interroger ver 44.31 73.04 0.62 0.27 ind:fut:3s; +interrogerai interroger ver 44.31 73.04 0.65 0.07 ind:fut:1s; +interrogeraient interroger ver 44.31 73.04 0.02 0.07 cnd:pre:3p; +interrogerais interroger ver 44.31 73.04 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +interrogerait interroger ver 44.31 73.04 0.03 0.20 cnd:pre:3s; +interrogeras interroger ver 44.31 73.04 0.00 0.07 ind:fut:2s; +interrogerez interroger ver 44.31 73.04 0.02 0.00 ind:fut:2p; +interrogerons interroger ver 44.31 73.04 0.12 0.00 ind:fut:1p; +interrogeront interroger ver 44.31 73.04 0.28 0.20 ind:fut:3p; +interroges interroger ver 44.31 73.04 0.94 0.20 ind:pre:2s; +interrogez interroger ver 44.31 73.04 2.46 0.41 imp:pre:2p;ind:pre:2p; +interrogiez interroger ver 44.31 73.04 0.11 0.20 ind:imp:2p;sub:pre:2p; +interrogions interroger ver 44.31 73.04 0.05 0.20 ind:imp:1p;sub:pre:1p; +interrogèrent interroger ver 44.31 73.04 0.01 0.61 ind:pas:3p; +interrogé interroger ver m s 44.31 73.04 7.52 7.16 par:pas; +interrogée interroger ver f s 44.31 73.04 1.93 2.03 par:pas; +interrogées interroger ver f p 44.31 73.04 0.12 0.27 par:pas; +interrogés interroger ver m p 44.31 73.04 1.09 0.74 par:pas; +interrompît interrompre ver 27.47 64.32 0.00 0.27 sub:imp:3s; +interrompaient interrompre ver 27.47 64.32 0.00 1.01 ind:imp:3p; +interrompais interrompre ver 27.47 64.32 0.03 0.27 ind:imp:1s;ind:imp:2s; +interrompait interrompre ver 27.47 64.32 0.05 3.65 ind:imp:3s; +interrompant interrompre ver 27.47 64.32 0.19 4.39 par:pre; +interrompe interrompre ver 27.47 64.32 0.32 0.14 sub:pre:1s;sub:pre:3s; +interrompent interrompre ver 27.47 64.32 0.04 0.95 ind:pre:3p; +interrompes interrompre ver 27.47 64.32 0.03 0.00 sub:pre:2s; +interrompez interrompre ver 27.47 64.32 2.61 0.14 imp:pre:2p;ind:pre:2p; +interrompiez interrompre ver 27.47 64.32 0.01 0.07 ind:imp:2p; +interrompirent interrompre ver 27.47 64.32 0.01 0.54 ind:pas:3p; +interrompis interrompre ver 27.47 64.32 0.01 0.88 ind:pas:1s; +interrompisse interrompre ver 27.47 64.32 0.00 0.07 sub:imp:1s; +interrompit interrompre ver 27.47 64.32 0.06 20.07 ind:pas:3s; +interrompons interrompre ver 27.47 64.32 1.22 0.00 imp:pre:1p;ind:pre:1p; +interrompra interrompre ver 27.47 64.32 0.09 0.00 ind:fut:3s; +interromprai interrompre ver 27.47 64.32 0.03 0.00 ind:fut:1s; +interromprais interrompre ver 27.47 64.32 0.03 0.07 cnd:pre:1s; +interromprait interrompre ver 27.47 64.32 0.27 0.14 cnd:pre:3s; +interrompras interrompre ver 27.47 64.32 0.00 0.07 ind:fut:2s; +interrompre interrompre ver 27.47 64.32 12.47 11.96 inf; +interromps interrompre ver 27.47 64.32 3.13 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +interrompt interrompre ver 27.47 64.32 1.07 5.81 ind:pre:3s; +interrompu interrompre ver m s 27.47 64.32 3.62 7.70 par:pas; +interrompue interrompre ver f s 27.47 64.32 0.76 3.11 par:pas; +interrompues interrompre ver f p 27.47 64.32 0.49 0.81 par:pas; +interrompus interrompre ver m p 27.47 64.32 0.93 1.08 par:pas; +interrègne interrègne nom m s 0.04 0.14 0.04 0.14 +interrupteur interrupteur nom m s 2.94 2.30 2.58 2.09 +interrupteurs interrupteur nom m p 2.94 2.30 0.36 0.20 +interruption interruption nom f s 2.88 5.61 2.15 4.86 +interruptions interruption nom f p 2.88 5.61 0.73 0.74 +inters inter nom_sup m p 0.84 0.95 0.00 0.07 +intersaison intersaison nom f s 0.03 0.00 0.03 0.00 +interscolaire interscolaire adj s 0.01 0.00 0.01 0.00 +intersectant intersecter ver 0.00 0.07 0.00 0.07 par:pre; +intersection intersection nom f s 1.16 1.42 1.10 1.35 +intersections intersection nom f p 1.16 1.42 0.06 0.07 +interservices interservices adj 0.04 0.00 0.04 0.00 +intersidéral intersidéral adj m s 0.34 0.20 0.32 0.14 +intersidérale intersidéral adj f s 0.34 0.20 0.01 0.07 +intersidéraux intersidéral adj m p 0.34 0.20 0.01 0.00 +interstellaire interstellaire adj s 0.65 0.07 0.47 0.00 +interstellaires interstellaire adj p 0.65 0.07 0.18 0.07 +interstice interstice nom m s 0.33 3.99 0.20 1.42 +interstices interstice nom m p 0.33 3.99 0.14 2.57 +intersubjectif intersubjectif adj m s 0.01 0.00 0.01 0.00 +intertitre intertitre nom m s 0.00 0.07 0.00 0.07 +intertribal intertribal adj m s 0.01 0.00 0.01 0.00 +interurbain interurbain adj m s 0.39 0.07 0.38 0.00 +interurbaine interurbain adj f s 0.39 0.07 0.01 0.07 +interétatique interétatique adj f s 0.01 0.00 0.01 0.00 +intervînt intervenir ver 22.39 35.34 0.00 0.14 sub:imp:3s; +intervalle intervalle nom m s 2.82 19.12 1.98 6.69 +intervalles intervalle nom m p 2.82 19.12 0.83 12.43 +intervenaient intervenir ver 22.39 35.34 0.14 0.54 ind:imp:3p; +intervenais intervenir ver 22.39 35.34 0.02 0.20 ind:imp:1s;ind:imp:2s; +intervenait intervenir ver 22.39 35.34 0.07 2.70 ind:imp:3s; +intervenant intervenir ver 22.39 35.34 0.24 0.54 par:pre; +intervenante intervenant nom f s 0.35 0.14 0.01 0.00 +intervenants intervenant nom m p 0.35 0.14 0.19 0.00 +intervenez intervenir ver 22.39 35.34 1.25 0.07 imp:pre:2p;ind:pre:2p; +interveniez intervenir ver 22.39 35.34 0.12 0.00 ind:imp:2p; +intervenir intervenir ver 22.39 35.34 9.82 13.58 inf; +intervenons intervenir ver 22.39 35.34 0.20 0.34 imp:pre:1p;ind:pre:1p; +intervention intervention nom f s 13.33 16.01 12.37 13.24 +interventionnisme interventionnisme nom m s 0.01 0.00 0.01 0.00 +interventionniste interventionniste adj s 0.04 0.14 0.04 0.00 +interventionnistes interventionniste nom p 0.11 0.00 0.10 0.00 +interventions intervention nom f p 13.33 16.01 0.96 2.77 +interventriculaire interventriculaire adj s 0.01 0.00 0.01 0.00 +intervenu intervenir ver m s 22.39 35.34 1.66 1.62 par:pas; +intervenue intervenir ver f s 22.39 35.34 0.93 0.61 par:pas; +intervenues intervenir ver f p 22.39 35.34 0.04 0.14 par:pas; +intervenus intervenir ver m p 22.39 35.34 0.67 0.54 par:pas; +interversion interversion nom f s 0.04 0.20 0.04 0.07 +interversions interversion nom f p 0.04 0.20 0.00 0.14 +interverti intervertir ver m s 0.56 0.95 0.17 0.00 par:pas; +intervertir intervertir ver 0.56 0.95 0.26 0.34 inf; +intervertirai intervertir ver 0.56 0.95 0.01 0.00 ind:fut:1s; +intervertis intervertir ver m p 0.56 0.95 0.08 0.14 ind:pre:1s;ind:pre:2s;par:pas; +intervertissait intervertir ver 0.56 0.95 0.01 0.07 ind:imp:3s; +intervertissent intervertir ver 0.56 0.95 0.01 0.07 ind:pre:3p; +intervertissiez intervertir ver 0.56 0.95 0.01 0.00 ind:imp:2p; +intervertissons intervertir ver 0.56 0.95 0.00 0.07 imp:pre:1p; +intervertit intervertir ver 0.56 0.95 0.01 0.27 ind:pre:3s;ind:pas:3s; +intervertébral intervertébral adj m s 0.04 0.07 0.04 0.00 +intervertébraux intervertébral adj m p 0.04 0.07 0.00 0.07 +interviendra intervenir ver 22.39 35.34 0.57 0.20 ind:fut:3s; +interviendrai intervenir ver 22.39 35.34 0.20 0.07 ind:fut:1s; +interviendraient intervenir ver 22.39 35.34 0.02 0.00 cnd:pre:3p; +interviendrais intervenir ver 22.39 35.34 0.17 0.00 cnd:pre:1s; +interviendrait intervenir ver 22.39 35.34 0.04 0.47 cnd:pre:3s; +interviendrez intervenir ver 22.39 35.34 0.20 0.00 ind:fut:2p; +interviendrons intervenir ver 22.39 35.34 0.09 0.07 ind:fut:1p; +interviendront intervenir ver 22.39 35.34 0.09 0.00 ind:fut:3p; +intervienne intervenir ver 22.39 35.34 0.78 0.81 sub:pre:1s;sub:pre:3s; +interviennent intervenir ver 22.39 35.34 0.47 0.47 ind:pre:3p; +interviens intervenir ver 22.39 35.34 1.40 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +intervient intervenir ver 22.39 35.34 3.16 4.32 ind:pre:3s; +interview interview nom f s 0.00 7.30 0.00 5.07 +interviewaient interviewer ver 0.00 1.69 0.00 0.14 ind:imp:3p; +interviewais interviewer ver 0.00 1.69 0.00 0.14 ind:imp:1s; +interviewait interviewer ver 0.00 1.69 0.00 0.41 ind:imp:3s; +interviewe interviewer ver 0.00 1.69 0.00 0.07 ind:pre:1s; +interviewer interviewer nom m s 0.00 1.22 0.00 1.15 +interviewers interviewer nom m p 0.00 1.22 0.00 0.07 +intervieweur intervieweur nom m s 0.00 0.07 0.00 0.07 +interviews interview nom f p 0.00 7.30 0.00 2.23 +interviewèrent interviewer ver 0.00 1.69 0.00 0.07 ind:pas:3p; +interviewé interviewer ver m s 0.00 1.69 0.00 0.41 par:pas; +interviewée interviewer ver f s 0.00 1.69 0.00 0.14 par:pas; +interviewés interviewer ver m p 0.00 1.69 0.00 0.07 par:pas; +intervinrent intervenir ver 22.39 35.34 0.01 0.07 ind:pas:3p; +intervins intervenir ver 22.39 35.34 0.00 0.41 ind:pas:1s; +intervinsse intervenir ver 22.39 35.34 0.00 0.07 sub:imp:1s; +intervint intervenir ver 22.39 35.34 0.03 6.55 ind:pas:3s; +interzones interzone adj f p 0.00 0.14 0.00 0.14 +intestat intestat adj m s 0.01 0.20 0.01 0.20 +intestats intestat nom m p 0.00 0.07 0.00 0.07 +intestin intestin nom m s 4.29 3.92 1.71 1.82 +intestinal intestinal adj m s 2.13 2.03 0.66 0.27 +intestinale intestinal adj f s 2.13 2.03 0.67 0.95 +intestinales intestinal adj f p 2.13 2.03 0.18 0.34 +intestinaux intestinal adj m p 2.13 2.03 0.63 0.47 +intestine intestin adj f s 0.68 1.28 0.04 0.20 +intestines intestin adj f p 0.68 1.28 0.45 0.74 +intestins intestin nom m p 4.29 3.92 2.58 2.09 +inti inti nom m s 0.02 0.00 0.02 0.00 +intifada intifada nom m s 0.42 0.00 0.42 0.00 +intima intimer ver 0.50 3.92 0.00 1.08 ind:pas:3s;;ind:pas:3s; +intimait intimer ver 0.50 3.92 0.00 0.54 ind:imp:3s; +intimant intimer ver 0.50 3.92 0.00 0.20 par:pre; +intimation intimation nom f s 0.00 0.14 0.00 0.14 +intime intime adj s 15.78 34.66 9.09 23.85 +intimement intimement adv 0.84 4.26 0.84 4.26 +intimer intimer ver 0.50 3.92 0.28 0.54 inf; +intimerait intimer ver 0.50 3.92 0.00 0.07 cnd:pre:3s; +intimes intime adj p 15.78 34.66 6.69 10.81 +intimida intimider ver 6.97 17.16 0.14 0.27 ind:pas:3s; +intimidable intimidable adj s 0.01 0.00 0.01 0.00 +intimidaient intimider ver 6.97 17.16 0.02 0.88 ind:imp:3p; +intimidais intimider ver 6.97 17.16 0.12 0.07 ind:imp:1s;ind:imp:2s; +intimidait intimider ver 6.97 17.16 0.09 2.43 ind:imp:3s; +intimidant intimidant adj m s 0.78 1.89 0.61 1.08 +intimidante intimidant adj f s 0.78 1.89 0.13 0.74 +intimidants intimidant adj m p 0.78 1.89 0.04 0.07 +intimidateur intimidateur nom m s 0.01 0.00 0.01 0.00 +intimidation intimidation nom f s 0.77 1.76 0.71 1.76 +intimidations intimidation nom f p 0.77 1.76 0.05 0.00 +intimide intimider ver 6.97 17.16 1.13 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intimident intimider ver 6.97 17.16 0.13 0.34 ind:pre:3p; +intimider intimider ver 6.97 17.16 2.40 2.77 inf; +intimiderait intimider ver 6.97 17.16 0.00 0.07 cnd:pre:3s; +intimides intimider ver 6.97 17.16 0.22 0.14 ind:pre:2s; +intimidez intimider ver 6.97 17.16 0.49 0.20 imp:pre:2p;ind:pre:2p; +intimidiez intimider ver 6.97 17.16 0.00 0.07 ind:imp:2p; +intimidât intimider ver 6.97 17.16 0.00 0.07 sub:imp:3s; +intimidé intimider ver m s 6.97 17.16 1.22 5.34 par:pas; +intimidée intimider ver f s 6.97 17.16 0.71 2.03 par:pas; +intimidées intimider ver f p 6.97 17.16 0.01 0.27 par:pas; +intimidés intimider ver m p 6.97 17.16 0.22 1.28 par:pas; +intimiste intimiste adj m s 0.04 0.20 0.01 0.00 +intimistes intimiste adj p 0.04 0.20 0.03 0.20 +intimité intimité nom f s 10.80 24.12 10.79 23.65 +intimités intimité nom f p 10.80 24.12 0.01 0.47 +intimât intimer ver 0.50 3.92 0.00 0.07 sub:imp:3s; +intimèrent intimer ver 0.50 3.92 0.00 0.07 ind:pas:3p; +intimé intimer ver m s 0.50 3.92 0.20 0.41 par:pas; +intimés intimer ver m p 0.50 3.92 0.00 0.07 par:pas; +intirable intirable adj s 0.00 0.07 0.00 0.07 +intitula intituler ver 4.72 9.53 0.00 0.27 ind:pas:3s; +intitulai intituler ver 4.72 9.53 0.00 0.07 ind:pas:1s; +intitulaient intituler ver 4.72 9.53 0.00 0.14 ind:imp:3p; +intitulais intituler ver 4.72 9.53 0.00 0.07 ind:imp:1s; +intitulait intituler ver 4.72 9.53 0.17 1.28 ind:imp:3s; +intitulant intituler ver 4.72 9.53 0.01 0.07 par:pre; +intitule intituler ver 4.72 9.53 1.60 0.81 ind:pre:1s;ind:pre:3s; +intituler intituler ver 4.72 9.53 0.11 0.34 inf; +intitulerait intituler ver 4.72 9.53 0.00 0.07 cnd:pre:3s; +intitulé intituler ver m s 4.72 9.53 1.43 3.65 par:pas; +intitulée intituler ver f s 4.72 9.53 1.29 2.30 par:pas; +intitulées intituler ver f p 4.72 9.53 0.10 0.14 par:pas; +intitulés intitulé nom m p 0.38 1.69 0.02 0.14 +intolérable intolérable adj s 4.23 11.28 3.74 10.47 +intolérablement intolérablement adv 0.02 0.20 0.02 0.20 +intolérables intolérable adj p 4.23 11.28 0.49 0.81 +intolérance intolérance nom f s 0.93 1.35 0.93 1.35 +intolérant intolérant adj m s 0.63 0.34 0.15 0.20 +intolérante intolérant adj f s 0.63 0.34 0.33 0.00 +intolérants intolérant adj m p 0.63 0.34 0.15 0.14 +intonation intonation nom f s 0.55 10.07 0.42 5.95 +intonations intonation nom f p 0.55 10.07 0.12 4.12 +intouchable intouchable adj s 1.52 2.84 1.23 1.96 +intouchables intouchable adj p 1.52 2.84 0.28 0.88 +intouché intouché adj m s 0.12 0.47 0.10 0.07 +intouchée intouché adj f s 0.12 0.47 0.00 0.20 +intouchées intouché adj f p 0.12 0.47 0.02 0.14 +intouchés intouché adj m p 0.12 0.47 0.00 0.07 +intox intox nom f 0.34 0.14 0.21 0.14 +intoxe intox nom f s 0.34 0.14 0.14 0.00 +intoxicant intoxicant adj m s 0.02 0.00 0.02 0.00 +intoxication intoxication nom f s 1.51 0.74 1.38 0.74 +intoxications intoxication nom f p 1.51 0.74 0.13 0.00 +intoxiquant intoxiquer ver 0.53 0.74 0.01 0.07 par:pre; +intoxique intoxiquer ver 0.53 0.74 0.01 0.14 ind:pre:3s; +intoxiquer intoxiquer ver 0.53 0.74 0.01 0.27 inf; +intoxiqué intoxiquer ver m s 0.53 0.74 0.38 0.20 par:pas; +intoxiquée intoxiquer ver f s 0.53 0.74 0.09 0.07 par:pas; +intoxiquées intoxiqué nom f p 0.04 0.20 0.00 0.07 +intoxiqués intoxiquer ver m p 0.53 0.74 0.03 0.00 par:pas; +intra_atomique intra_atomique adj s 0.00 0.07 0.00 0.07 +intra_muros intra_muros adv 0.01 0.07 0.01 0.07 +rachidien rachidien adj f s 0.23 0.14 0.01 0.00 +intra_utérin intra_utérin adj f s 0.14 0.07 0.04 0.00 +intra_utérin intra_utérin adj f p 0.14 0.07 0.10 0.07 +intra_muros intra_muros adv 0.01 0.07 0.01 0.07 +intra intra adv 0.02 0.00 0.02 0.00 +intracardiaque intracardiaque adj f s 0.08 0.00 0.08 0.00 +intracrânien intracrânien adj m s 0.14 0.00 0.01 0.00 +intracrânienne intracrânien adj f s 0.14 0.00 0.13 0.00 +intracérébrale intracérébral adj f s 0.03 0.00 0.03 0.00 +intradermique intradermique adj m s 0.03 0.00 0.03 0.00 +intrados intrados nom f s 0.00 0.07 0.00 0.07 +intraduisible intraduisible adj s 0.13 0.61 0.12 0.27 +intraduisibles intraduisible adj p 0.13 0.61 0.01 0.34 +intrait intrait nom m s 0.00 0.14 0.00 0.14 +intraitable intraitable adj s 0.51 2.91 0.45 2.64 +intraitables intraitable adj f p 0.51 2.91 0.06 0.27 +intramusculaire intramusculaire adj s 0.19 0.07 0.16 0.00 +intramusculaires intramusculaire adj f p 0.19 0.07 0.03 0.07 +intranet intranet nom m s 0.08 0.00 0.08 0.00 +intransgressible intransgressible adj s 0.00 0.07 0.00 0.07 +intransigeance intransigeance nom f s 0.04 3.04 0.04 2.91 +intransigeances intransigeance nom f p 0.04 3.04 0.00 0.14 +intransigeant intransigeant adj m s 0.86 2.30 0.64 1.15 +intransigeante intransigeant adj f s 0.86 2.30 0.09 0.81 +intransigeantes intransigeant adj f p 0.86 2.30 0.00 0.27 +intransigeants intransigeant adj m p 0.86 2.30 0.14 0.07 +intransitif intransitif nom m s 0.00 0.07 0.00 0.07 +intransmissible intransmissible adj m s 0.01 0.14 0.01 0.14 +intransportable intransportable adj f s 0.02 0.20 0.02 0.14 +intransportables intransportable adj m p 0.02 0.20 0.00 0.07 +intraoculaire intraoculaire adj f s 0.01 0.00 0.01 0.00 +intravasculaire intravasculaire adj s 0.04 0.00 0.04 0.00 +intraveineuse intraveineux adj f s 1.13 0.34 1.02 0.07 +intraveineuses intraveineux adj f p 1.13 0.34 0.09 0.20 +intraveineux intraveineux adj m 1.13 0.34 0.01 0.07 +intrigant intrigant adj m s 1.77 1.42 0.44 0.81 +intrigante intrigant adj f s 1.77 1.42 1.23 0.14 +intrigantes intrigant adj f p 1.77 1.42 0.04 0.00 +intrigants intrigant adj m p 1.77 1.42 0.06 0.47 +intrigua intriguer ver 5.58 19.73 0.02 1.01 ind:pas:3s; +intriguaient intriguer ver 5.58 19.73 0.04 0.88 ind:imp:3p; +intriguait intriguer ver 5.58 19.73 0.46 3.58 ind:imp:3s; +intriguant intriguer ver 5.58 19.73 0.38 0.27 par:pre; +intriguassent intriguer ver 5.58 19.73 0.00 0.07 sub:imp:3p; +intrigue intrigue nom f s 4.80 13.18 2.56 5.07 +intriguent intriguer ver 5.58 19.73 0.25 0.27 ind:pre:3p; +intriguer intriguer ver 5.58 19.73 0.12 1.82 inf; +intriguera intriguer ver 5.58 19.73 0.03 0.07 ind:fut:3s; +intriguerait intriguer ver 5.58 19.73 0.02 0.14 cnd:pre:3s; +intrigues intrigue nom f p 4.80 13.18 2.24 8.11 +intriguez intriguer ver 5.58 19.73 0.14 0.20 imp:pre:2p;ind:pre:2p; +intriguât intriguer ver 5.58 19.73 0.00 0.07 sub:imp:3s; +intriguèrent intriguer ver 5.58 19.73 0.00 0.14 ind:pas:3p; +intrigué intriguer ver m s 5.58 19.73 1.19 6.42 par:pas; +intriguée intriguer ver f s 5.58 19.73 0.40 1.76 par:pas; +intrigués intriguer ver m p 5.58 19.73 0.13 1.22 par:pas; +intrinsèque intrinsèque adj s 0.13 0.41 0.13 0.41 +intrinsèquement intrinsèquement adv 0.35 0.07 0.35 0.07 +introït introït nom m s 0.00 0.20 0.00 0.20 +introducteur introducteur nom m s 0.05 0.34 0.05 0.27 +introductif introductif adj m s 0.03 0.14 0.03 0.14 +introduction introduction nom f s 2.45 3.04 2.27 2.97 +introductions introduction nom f p 2.45 3.04 0.18 0.07 +introductrice introducteur nom f s 0.05 0.34 0.00 0.07 +introduira introduire ver 12.55 30.54 0.17 0.20 ind:fut:3s; +introduirai introduire ver 12.55 30.54 0.11 0.07 ind:fut:1s; +introduiraient introduire ver 12.55 30.54 0.00 0.07 cnd:pre:3p; +introduirais introduire ver 12.55 30.54 0.01 0.07 cnd:pre:1s; +introduirait introduire ver 12.55 30.54 0.03 0.20 cnd:pre:3s; +introduire introduire ver 12.55 30.54 3.95 8.04 ind:pre:2p;inf; +introduirez introduire ver 12.55 30.54 0.01 0.00 ind:fut:2p; +introduirions introduire ver 12.55 30.54 0.00 0.07 cnd:pre:1p; +introduis introduire ver 12.55 30.54 0.78 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +introduisît introduire ver 12.55 30.54 0.00 0.14 sub:imp:3s; +introduisaient introduire ver 12.55 30.54 0.00 0.54 ind:imp:3p; +introduisais introduire ver 12.55 30.54 0.02 0.07 ind:imp:1s;ind:imp:2s; +introduisait introduire ver 12.55 30.54 0.05 2.09 ind:imp:3s; +introduisant introduire ver 12.55 30.54 0.17 1.55 par:pre; +introduise introduire ver 12.55 30.54 0.19 0.34 sub:pre:1s;sub:pre:3s; +introduisent introduire ver 12.55 30.54 0.38 0.34 ind:pre:3p; +introduisez introduire ver 12.55 30.54 0.89 0.00 imp:pre:2p;ind:pre:2p; +introduisirent introduire ver 12.55 30.54 0.01 0.20 ind:pas:3p; +introduisis introduire ver 12.55 30.54 0.00 0.34 ind:pas:1s;ind:pas:2s; +introduisit introduire ver 12.55 30.54 0.16 3.45 ind:pas:3s; +introduisons introduire ver 12.55 30.54 0.07 0.20 imp:pre:1p;ind:pre:1p; +introduit introduire ver m s 12.55 30.54 4.18 8.99 ind:pre:3s;par:pas; +introduite introduire ver f s 12.55 30.54 0.86 1.08 par:pas; +introduites introduire ver f p 12.55 30.54 0.23 0.47 par:pas; +introduits introduire ver m p 12.55 30.54 0.28 1.89 par:pas; +intromission intromission nom f s 0.00 0.14 0.00 0.14 +intronisa introniser ver 0.12 0.34 0.00 0.07 ind:pas:3s; +intronisait introniser ver 0.12 0.34 0.01 0.07 ind:imp:3s; +intronisation intronisation nom f s 0.02 0.41 0.02 0.41 +intronise introniser ver 0.12 0.34 0.00 0.07 ind:pre:3s; +introniser introniser ver 0.12 0.34 0.05 0.00 inf; +intronisé introniser ver m s 0.12 0.34 0.06 0.14 par:pas; +introspecter introspecter ver 0.01 0.00 0.01 0.00 inf; +introspectif introspectif adj m s 0.08 0.07 0.06 0.00 +introspection introspection nom f s 0.33 0.20 0.33 0.14 +introspections introspection nom f p 0.33 0.20 0.00 0.07 +introspective introspectif adj f s 0.08 0.07 0.01 0.00 +introspectives introspectif adj f p 0.08 0.07 0.01 0.07 +introuvable introuvable adj s 3.66 3.92 3.27 2.77 +introuvables introuvable adj p 3.66 3.92 0.39 1.15 +introversions introversion nom f p 0.00 0.07 0.00 0.07 +introverti introverti adj m s 0.33 0.00 0.22 0.00 +introvertie introverti adj f s 0.33 0.00 0.09 0.00 +introvertis introverti nom m p 0.27 0.00 0.14 0.00 +intrépide intrépide adj s 1.63 3.78 1.37 2.77 +intrépidement intrépidement adv 0.00 0.14 0.00 0.14 +intrépides intrépide adj p 1.63 3.78 0.26 1.01 +intrépidité intrépidité nom f s 0.04 0.74 0.04 0.74 +intrus intrus nom m s 4.35 5.47 4.29 4.46 +intruse intrus nom f s 4.35 5.47 0.06 0.81 +intruses intrus nom f p 4.35 5.47 0.00 0.20 +intrusif intrusif adj m s 0.04 0.00 0.04 0.00 +intrusion intrusion nom f s 4.61 3.78 4.48 3.24 +intrusions intrusion nom f p 4.61 3.78 0.13 0.54 +intègre intègre adj s 1.70 1.35 1.50 0.81 +intègrent intégrer ver 7.98 6.89 0.06 0.14 ind:pre:3p; +intègres intègre adj p 1.70 1.35 0.19 0.54 +intubation intubation nom f s 0.86 0.00 0.86 0.00 +intube intuber ver 2.33 0.00 0.42 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intuber intuber ver 2.33 0.00 1.25 0.00 inf; +intubez intuber ver 2.33 0.00 0.15 0.00 imp:pre:2p;ind:pre:2p; +intubé intuber ver m s 2.33 0.00 0.42 0.00 par:pas; +intubée intuber ver f s 2.33 0.00 0.09 0.00 par:pas; +intégra intégrer ver 7.98 6.89 0.01 0.07 ind:pas:3s; +intégraient intégrer ver 7.98 6.89 0.01 0.20 ind:imp:3p; +intégrait intégrer ver 7.98 6.89 0.08 0.47 ind:imp:3s; +intégral intégral adj m s 1.35 5.27 0.56 3.18 +intégrale intégral adj f s 1.35 5.27 0.80 1.76 +intégralement intégralement adv 0.57 3.24 0.57 3.24 +intégrales intégrale nom f p 0.45 0.27 0.02 0.00 +intégralisme intégralisme nom m s 0.00 0.07 0.00 0.07 +intégralité intégralité nom f s 0.43 0.74 0.43 0.74 +intégrant intégrer ver 7.98 6.89 0.19 0.14 par:pre; +intégrante intégrant adj f s 0.34 1.01 0.34 1.01 +intégrateur intégrateur nom m s 0.02 0.00 0.02 0.00 +intégration intégration nom f s 1.28 1.08 1.28 1.08 +intégraux intégral adj m p 1.35 5.27 0.00 0.07 +intégrer intégrer ver 7.98 6.89 3.71 2.57 inf; +intégrera intégrer ver 7.98 6.89 0.16 0.14 ind:fut:3s; +intégrerais intégrer ver 7.98 6.89 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +intégreras intégrer ver 7.98 6.89 0.02 0.07 ind:fut:2s; +intégrerez intégrer ver 7.98 6.89 0.16 0.00 ind:fut:2p; +intégreront intégrer ver 7.98 6.89 0.03 0.00 ind:fut:3p; +intégrez intégrer ver 7.98 6.89 0.08 0.00 imp:pre:2p;ind:pre:2p; +intégriez intégrer ver 7.98 6.89 0.01 0.00 ind:imp:2p; +intégrisme intégrisme nom m s 0.04 0.14 0.03 0.00 +intégrismes intégrisme nom m p 0.04 0.14 0.01 0.14 +intégriste intégriste adj m s 0.22 0.00 0.15 0.00 +intégristes intégriste adj p 0.22 0.00 0.07 0.00 +intégrité intégrité nom f s 4.10 4.32 4.10 4.26 +intégrités intégrité nom f p 4.10 4.32 0.00 0.07 +intégrèrent intégrer ver 7.98 6.89 0.01 0.00 ind:pas:3p; +intégré intégrer ver m s 7.98 6.89 1.25 1.22 par:pas; +intégrée intégrer ver f s 7.98 6.89 0.39 0.68 par:pas; +intégrées intégrer ver f p 7.98 6.89 0.28 0.14 par:pas; +intégrés intégrer ver m p 7.98 6.89 0.43 0.47 par:pas; +intuitif intuitif adj m s 0.81 0.61 0.24 0.27 +intuitifs intuitif adj m p 0.81 0.61 0.02 0.00 +intuition intuition nom f s 9.37 11.08 8.64 9.80 +intuitions intuition nom f p 9.37 11.08 0.73 1.28 +intuitive intuitif adj f s 0.81 0.61 0.50 0.27 +intuitivement intuitivement adv 0.17 0.74 0.17 0.74 +intuitives intuitif adj f p 0.81 0.61 0.05 0.07 +intumescence intumescence nom f s 0.01 0.00 0.01 0.00 +intéressa intéresser ver 140.80 117.36 0.02 1.69 ind:pas:3s; +intéressai intéresser ver 140.80 117.36 0.00 0.34 ind:pas:1s; +intéressaient intéresser ver 140.80 117.36 0.73 4.93 ind:imp:3p; +intéressais intéresser ver 140.80 117.36 1.20 2.70 ind:imp:1s;ind:imp:2s; +intéressait intéresser ver 140.80 117.36 7.29 22.57 ind:imp:3s; +intéressant intéressant adj m s 69.17 28.65 47.07 15.47 +intéressante intéressant adj f s 69.17 28.65 13.05 5.95 +intéressantes intéressant adj f p 69.17 28.65 4.82 3.58 +intéressants intéressant adj m p 69.17 28.65 4.24 3.65 +intéresse intéresser ver 140.80 117.36 75.20 34.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +intéressement intéressement nom m s 0.05 0.07 0.05 0.07 +intéressent intéresser ver 140.80 117.36 9.68 7.23 ind:pre:3p; +intéresser intéresser ver 140.80 117.36 12.94 22.70 ind:pre:2p;inf; +intéressera intéresser ver 140.80 117.36 1.65 0.88 ind:fut:3s; +intéresserai intéresser ver 140.80 117.36 0.24 0.00 ind:fut:1s; +intéresseraient intéresser ver 140.80 117.36 0.29 0.41 cnd:pre:3p; +intéresserais intéresser ver 140.80 117.36 0.14 0.20 cnd:pre:1s;cnd:pre:2s; +intéresserait intéresser ver 140.80 117.36 3.42 2.57 cnd:pre:3s; +intéresseras intéresser ver 140.80 117.36 0.01 0.07 ind:fut:2s; +intéresseriez intéresser ver 140.80 117.36 0.01 0.00 cnd:pre:2p; +intéresserons intéresser ver 140.80 117.36 0.00 0.07 ind:fut:1p; +intéresseront intéresser ver 140.80 117.36 0.25 0.34 ind:fut:3p; +intéresses intéresser ver 140.80 117.36 6.81 1.01 ind:pre:2s; +intéressez intéresser ver 140.80 117.36 2.03 0.81 imp:pre:2p;ind:pre:2p; +intéressiez intéresser ver 140.80 117.36 0.46 0.34 ind:imp:2p; +intéressions intéresser ver 140.80 117.36 0.01 0.07 ind:imp:1p; +intéressons intéresser ver 140.80 117.36 0.31 0.07 imp:pre:1p;ind:pre:1p; +intéressât intéresser ver 140.80 117.36 0.01 0.74 sub:imp:3s; +intéressèrent intéresser ver 140.80 117.36 0.00 0.27 ind:pas:3p; +intéressé intéresser ver m s 140.80 117.36 9.31 6.22 par:pas; +intéressée intéresser ver f s 140.80 117.36 3.02 2.36 par:pas; +intéressées intéressé adj f p 7.20 7.77 0.46 0.68 +intéressés intéresser ver m p 140.80 117.36 2.82 1.76 par:pas; +intérieur intérieur nom m s 90.11 135.88 89.75 133.51 +intérieure intérieur adj f s 13.17 50.61 6.75 23.38 +intérieurement intérieurement adv 1.29 6.01 1.29 6.01 +intérieures intérieur adj f p 13.17 50.61 0.84 4.86 +intérieurs intérieur adj m p 13.17 50.61 0.84 3.38 +intérim intérim nom m s 1.10 2.03 1.10 1.89 +intérimaire intérimaire nom s 0.77 0.47 0.49 0.20 +intérimaires intérimaire nom p 0.77 0.47 0.28 0.27 +intérims intérim nom m p 1.10 2.03 0.00 0.14 +intériorisa intérioriser ver 0.35 0.34 0.00 0.07 ind:pas:3s; +intériorisait intérioriser ver 0.35 0.34 0.01 0.00 ind:imp:3s; +intériorisation intériorisation nom f s 0.14 0.07 0.14 0.07 +intériorise intérioriser ver 0.35 0.34 0.09 0.07 ind:pre:1s;ind:pre:3s; +intériorisent intérioriser ver 0.35 0.34 0.14 0.00 ind:pre:3p; +intérioriser intérioriser ver 0.35 0.34 0.09 0.00 inf; +intériorisée intérioriser ver f s 0.35 0.34 0.03 0.07 par:pas; +intériorisées intérioriser ver f p 0.35 0.34 0.00 0.07 par:pas; +intériorisés intérioriser ver m p 0.35 0.34 0.00 0.07 par:pas; +intériorité intériorité nom f s 0.10 0.41 0.10 0.41 +intérêt intérêt nom m s 81.09 97.36 63.63 75.00 +intérêts intérêt nom m p 81.09 97.36 17.46 22.36 +intussusception intussusception nom f s 0.03 0.00 0.03 0.00 +inébranlable inébranlable adj s 1.20 3.72 1.05 3.04 +inébranlablement inébranlablement adv 0.14 0.20 0.14 0.20 +inébranlables inébranlable adj p 1.20 3.72 0.15 0.68 +inébranlé inébranlé adj m s 0.00 0.07 0.00 0.07 +inéchangeable inéchangeable adj f s 0.00 0.07 0.00 0.07 +inécoutée inécouté adj f s 0.00 0.07 0.00 0.07 +inédit inédit adj m s 1.10 5.34 0.65 0.95 +inédite inédit adj f s 1.10 5.34 0.28 2.50 +inédites inédit adj f p 1.10 5.34 0.12 0.95 +inédits inédit adj m p 1.10 5.34 0.06 0.95 +inéducable inéducable adj s 0.01 0.00 0.01 0.00 +inégal inégal adj m s 0.68 8.11 0.23 2.84 +inégalable inégalable adj s 0.38 1.22 0.36 0.95 +inégalables inégalable adj f p 0.38 1.22 0.01 0.27 +inégale inégal adj f s 0.68 8.11 0.29 1.69 +inégalement inégalement adv 0.03 1.01 0.03 1.01 +inégales inégal adj f p 0.68 8.11 0.08 1.76 +inégalité inégalité nom f s 0.67 1.62 0.33 1.35 +inégalités inégalité nom f p 0.67 1.62 0.34 0.27 +inégalé inégalé adj m s 0.17 0.54 0.06 0.20 +inégalée inégaler ver f s 0.22 0.41 0.18 0.27 par:pas; +inégalées inégalé adj f p 0.17 0.54 0.00 0.07 +inégaux inégal adj m p 0.68 8.11 0.07 1.82 +inuit inuit nom f s 0.04 0.00 0.04 0.00 +inéligibilité inéligibilité nom f s 0.14 0.00 0.14 0.00 +inéligible inéligible adj s 0.03 0.07 0.03 0.07 +inéluctabilité inéluctabilité nom f s 0.00 0.14 0.00 0.14 +inéluctable inéluctable adj s 1.01 5.74 0.97 5.34 +inéluctablement inéluctablement adv 0.27 1.01 0.27 1.01 +inéluctables inéluctable adj p 1.01 5.74 0.04 0.41 +inélégamment inélégamment adv 0.00 0.07 0.00 0.07 +inélégance inélégance nom f s 0.14 0.00 0.14 0.00 +inélégant inélégant adj m s 0.39 0.14 0.39 0.07 +inélégantes inélégant adj f p 0.39 0.14 0.00 0.07 +inénarrable inénarrable adj s 0.12 0.95 0.11 0.47 +inénarrables inénarrable adj p 0.12 0.95 0.01 0.47 +inupik inupik nom m s 0.00 0.07 0.00 0.07 +inépuisable inépuisable adj s 0.97 9.53 0.68 7.57 +inépuisablement inépuisablement adv 0.00 0.74 0.00 0.74 +inépuisables inépuisable adj p 0.97 9.53 0.28 1.96 +inépuisées inépuisé adj f p 0.00 0.14 0.00 0.14 +inéquitable inéquitable adj m s 0.04 0.00 0.04 0.00 +inusabilité inusabilité nom f s 0.00 0.07 0.00 0.07 +inusable inusable adj s 0.17 1.96 0.16 1.55 +inusables inusable adj p 0.17 1.96 0.01 0.41 +inusité inusité adj m s 0.30 1.42 0.22 0.47 +inusitée inusité adj f s 0.30 1.42 0.07 0.68 +inusitées inusité adj f p 0.30 1.42 0.01 0.20 +inusités inusité adj m p 0.30 1.42 0.00 0.07 +inusuelle inusuel adj f s 0.00 0.07 0.00 0.07 +inutile inutile adj s 72.71 70.34 64.05 53.04 +inutilement inutilement adv 1.83 4.66 1.83 4.66 +inutiles inutile adj p 72.71 70.34 8.66 17.30 +inutilisable inutilisable adj s 1.72 2.03 1.14 0.95 +inutilisables inutilisable adj p 1.72 2.03 0.58 1.08 +inutilisation inutilisation nom f s 0.00 0.14 0.00 0.14 +inutilisé inutilisé adj m s 0.37 0.81 0.08 0.14 +inutilisée inutilisé adj f s 0.37 0.81 0.13 0.27 +inutilisées inutilisé adj f p 0.37 0.81 0.09 0.20 +inutilisés inutilisé adj m p 0.37 0.81 0.07 0.20 +inutilité inutilité nom f s 0.56 3.58 0.56 3.51 +inutilités inutilité nom f p 0.56 3.58 0.00 0.07 +inévaluable inévaluable adj s 0.00 0.07 0.00 0.07 +inévitabilité inévitabilité nom f s 0.04 0.00 0.04 0.00 +inévitable inévitable adj s 7.44 16.49 6.96 13.38 +inévitablement inévitablement adv 1.02 3.51 1.02 3.51 +inévitables inévitable adj p 7.44 16.49 0.48 3.11 +invagination invagination nom f s 0.03 0.00 0.03 0.00 +invaincu invaincu adj m s 0.84 0.61 0.50 0.34 +invaincue invaincu adj f s 0.84 0.61 0.08 0.14 +invaincues invaincu adj f p 0.84 0.61 0.00 0.07 +invaincus invaincu adj m p 0.84 0.61 0.26 0.07 +invalidant invalidant adj m s 0.04 0.00 0.02 0.00 +invalidante invalidant adj f s 0.04 0.00 0.02 0.00 +invalidation invalidation nom f s 0.02 0.00 0.02 0.00 +invalide invalide adj s 1.77 0.81 1.48 0.27 +invalider invalider ver 0.59 0.27 0.10 0.00 inf; +invalides invalide nom p 2.03 4.39 1.41 3.85 +invalidité invalidité nom f s 0.99 0.27 0.99 0.20 +invalidités invalidité nom f p 0.99 0.27 0.00 0.07 +invalidé invalider ver m s 0.59 0.27 0.14 0.14 par:pas; +invalidés invalider ver m p 0.59 0.27 0.00 0.07 par:pas; +invariable invariable adj s 0.08 1.89 0.07 1.55 +invariablement invariablement adv 0.64 4.86 0.64 4.86 +invariables invariable adj p 0.08 1.89 0.01 0.34 +invariance invariance nom f s 0.01 0.00 0.01 0.00 +invasif invasif adj m s 0.28 0.00 0.11 0.00 +invasion invasion nom f s 7.15 11.22 6.96 9.32 +invasions invasion nom f p 7.15 11.22 0.19 1.89 +invasive invasif adj f s 0.28 0.00 0.14 0.00 +invasives invasif adj f p 0.28 0.00 0.03 0.00 +invectiva invectiver ver 0.14 1.82 0.00 0.20 ind:pas:3s; +invectivai invectiver ver 0.14 1.82 0.00 0.07 ind:pas:1s; +invectivaient invectiver ver 0.14 1.82 0.00 0.07 ind:imp:3p; +invectivait invectiver ver 0.14 1.82 0.00 0.41 ind:imp:3s; +invectivant invectiver ver 0.14 1.82 0.00 0.34 par:pre; +invective invectiver ver 0.14 1.82 0.12 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +invectivent invectiver ver 0.14 1.82 0.00 0.07 ind:pre:3p; +invectiver invectiver ver 0.14 1.82 0.02 0.47 inf; +invectives invective nom f p 0.25 2.84 0.24 2.03 +invendable invendable adj m s 0.20 0.27 0.19 0.14 +invendables invendable adj m p 0.20 0.27 0.01 0.14 +invendu invendu nom m s 0.47 0.41 0.01 0.00 +invendues invendu adj f p 0.17 0.68 0.12 0.20 +invendus invendu nom m p 0.47 0.41 0.46 0.41 +inventa inventer ver 53.96 69.73 0.65 1.69 ind:pas:3s; +inventai inventer ver 53.96 69.73 0.02 1.22 ind:pas:1s; +inventaient inventer ver 53.96 69.73 0.02 0.81 ind:imp:3p; +inventaire inventaire nom m s 4.02 7.50 3.86 6.62 +inventaires inventaire nom m p 4.02 7.50 0.16 0.88 +inventais inventer ver 53.96 69.73 0.43 1.69 ind:imp:1s;ind:imp:2s; +inventait inventer ver 53.96 69.73 0.55 3.85 ind:imp:3s; +inventant inventer ver 53.96 69.73 0.21 1.42 par:pre; +invente inventer ver 53.96 69.73 7.53 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inventent inventer ver 53.96 69.73 1.68 1.62 ind:pre:3p; +inventer inventer ver 53.96 69.73 11.35 17.43 ind:pre:2p;inf; +inventera inventer ver 53.96 69.73 0.33 0.54 ind:fut:3s; +inventerai inventer ver 53.96 69.73 0.69 0.34 ind:fut:1s; +inventeraient inventer ver 53.96 69.73 0.01 0.07 cnd:pre:3p; +inventerais inventer ver 53.96 69.73 0.35 0.41 cnd:pre:1s;cnd:pre:2s; +inventerait inventer ver 53.96 69.73 0.14 0.68 cnd:pre:3s; +inventeras inventer ver 53.96 69.73 0.14 0.07 ind:fut:2s; +inventerez inventer ver 53.96 69.73 0.04 0.00 ind:fut:2p; +inventeriez inventer ver 53.96 69.73 0.11 0.00 cnd:pre:2p; +inventerions inventer ver 53.96 69.73 0.01 0.00 cnd:pre:1p; +inventerons inventer ver 53.96 69.73 0.04 0.00 ind:fut:1p; +inventeront inventer ver 53.96 69.73 0.07 0.20 ind:fut:3p; +inventes inventer ver 53.96 69.73 2.11 1.08 ind:pre:2s;sub:pre:2s; +inventeur inventeur nom m s 3.34 2.03 2.91 1.76 +inventeurs inventeur nom m p 3.34 2.03 0.42 0.27 +inventez inventer ver 53.96 69.73 1.17 0.07 imp:pre:2p;ind:pre:2p; +inventiez inventer ver 53.96 69.73 0.04 0.00 ind:imp:2p; +inventif inventif adj m s 0.36 1.28 0.22 0.74 +inventifs inventif adj m p 0.36 1.28 0.04 0.14 +invention invention nom f s 10.37 15.68 7.88 10.81 +inventions invention nom f p 10.37 15.68 2.49 4.86 +inventive inventif adj f s 0.36 1.28 0.10 0.41 +inventivité inventivité nom f s 0.02 0.07 0.02 0.00 +inventivités inventivité nom f p 0.02 0.07 0.00 0.07 +inventons inventer ver 53.96 69.73 0.14 0.07 imp:pre:1p;ind:pre:1p; +inventoria inventorier ver 0.23 1.55 0.00 0.07 ind:pas:3s; +inventoriai inventorier ver 0.23 1.55 0.00 0.07 ind:pas:1s; +inventoriaient inventorier ver 0.23 1.55 0.00 0.07 ind:imp:3p; +inventoriait inventorier ver 0.23 1.55 0.00 0.14 ind:imp:3s; +inventorient inventorier ver 0.23 1.55 0.00 0.07 ind:pre:3p; +inventorier inventorier ver 0.23 1.55 0.19 0.74 inf; +inventorié inventorier ver m s 0.23 1.55 0.03 0.20 par:pas; +inventoriée inventorier ver f s 0.23 1.55 0.00 0.07 par:pas; +inventoriées inventorier ver f p 0.23 1.55 0.02 0.14 par:pas; +inventât inventer ver 53.96 69.73 0.00 0.07 sub:imp:3s; +inventèrent inventer ver 53.96 69.73 0.11 0.34 ind:pas:3p; +inventé inventer ver m s 53.96 69.73 23.20 17.97 par:pas; +inventée inventer ver f s 53.96 69.73 1.53 3.58 par:pas; +inventées inventer ver f p 53.96 69.73 0.56 1.62 par:pas; +inventés inventer ver m p 53.96 69.73 0.72 2.23 par:pas; +inversa inverser ver 6.29 7.57 0.00 0.14 ind:pas:3s; +inversaient inverser ver 6.29 7.57 0.00 0.14 ind:imp:3p; +inversait inverser ver 6.29 7.57 0.13 0.20 ind:imp:3s; +inversant inverser ver 6.29 7.57 0.07 0.41 par:pre; +inverse inverse nom s 6.40 6.22 6.40 6.22 +inversement inversement adv 0.47 2.64 0.47 2.64 +inversent inverser ver 6.29 7.57 0.13 0.20 ind:pre:3p; +inverser inverser ver 6.29 7.57 1.36 1.01 inf; +inversera inverser ver 6.29 7.57 0.06 0.00 ind:fut:3s; +inverserais inverser ver 6.29 7.57 0.01 0.00 cnd:pre:1s; +inverserait inverser ver 6.29 7.57 0.02 0.00 cnd:pre:3s; +inverses inverser ver 6.29 7.57 0.04 0.00 ind:pre:2s; +inverseur inverseur nom m s 0.02 0.00 0.02 0.00 +inversez inverser ver 6.29 7.57 0.21 0.07 imp:pre:2p;ind:pre:2p; +inversible inversible adj f s 0.00 0.07 0.00 0.07 +inversion inversion nom f s 0.76 3.65 0.75 3.38 +inversions inversion nom f p 0.76 3.65 0.01 0.27 +inversons inverser ver 6.29 7.57 0.04 0.00 imp:pre:1p; +inversèrent inverser ver 6.29 7.57 0.00 0.07 ind:pas:3p; +inversé inverser ver m s 6.29 7.57 2.00 1.96 par:pas; +inversée inverser ver f s 6.29 7.57 0.85 1.49 par:pas; +inversées inverser ver f p 6.29 7.57 0.20 0.54 par:pas; +inversés inverser ver m p 6.29 7.57 0.71 0.95 par:pas; +inverti invertir ver m s 0.16 0.00 0.16 0.00 par:pas; +invertis inverti nom m p 0.56 0.41 0.44 0.34 +invertébré invertébré adj m s 0.19 0.27 0.07 0.07 +invertébrée invertébré adj f s 0.19 0.27 0.01 0.07 +invertébrés invertébré nom m p 0.20 0.14 0.19 0.07 +investît investir ver 16.50 9.46 0.01 0.00 sub:imp:3s; +investi investir ver m s 16.50 9.46 5.49 2.91 par:pas; +investie investir ver f s 16.50 9.46 0.15 0.81 par:pas; +investies investir ver f p 16.50 9.46 0.02 0.07 par:pas; +investigateur investigateur nom m s 0.13 0.00 0.03 0.00 +investigateurs investigateur nom m p 0.13 0.00 0.07 0.00 +investigation investigation nom f s 3.26 2.57 1.95 1.08 +investigations investigation nom f p 3.26 2.57 1.31 1.49 +investigatrice investigateur adj f s 0.14 0.27 0.11 0.00 +investigatrices investigateur adj f p 0.14 0.27 0.01 0.07 +investiguant investiguer ver 0.03 0.00 0.01 0.00 par:pre; +investiguer investiguer ver 0.03 0.00 0.01 0.00 inf; +investir investir ver 16.50 9.46 5.85 2.36 inf; +investira investir ver 16.50 9.46 0.14 0.00 ind:fut:3s; +investirais investir ver 16.50 9.46 0.07 0.00 cnd:pre:1s; +investirait investir ver 16.50 9.46 0.16 0.00 cnd:pre:3s; +investirent investir ver 16.50 9.46 0.02 0.07 ind:pas:3p; +investirons investir ver 16.50 9.46 0.02 0.00 ind:fut:1p; +investiront investir ver 16.50 9.46 0.17 0.00 ind:fut:3p; +investis investir ver m p 16.50 9.46 1.53 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +investissaient investir ver 16.50 9.46 0.14 0.14 ind:imp:3p; +investissais investir ver 16.50 9.46 0.02 0.14 ind:imp:1s;ind:imp:2s; +investissait investir ver 16.50 9.46 0.05 0.20 ind:imp:3s; +investissant investir ver 16.50 9.46 0.04 0.41 par:pre; +investisse investir ver 16.50 9.46 0.06 0.14 sub:pre:1s;sub:pre:3s; +investissement investissement nom m s 7.38 2.77 5.05 1.35 +investissements investissement nom m p 7.38 2.77 2.33 1.42 +investissent investir ver 16.50 9.46 0.29 0.20 ind:pre:3p; +investisseur investisseur nom m s 2.64 0.07 0.66 0.00 +investisseurs investisseur nom m p 2.64 0.07 1.98 0.07 +investissez investir ver 16.50 9.46 0.67 0.00 imp:pre:2p;ind:pre:2p; +investissons investir ver 16.50 9.46 0.06 0.00 imp:pre:1p;ind:pre:1p; +investit investir ver 16.50 9.46 1.56 1.22 ind:pre:3s;ind:pas:3s; +investiture investiture nom f s 0.38 0.47 0.38 0.34 +investitures investiture nom f p 0.38 0.47 0.00 0.14 +invincibilité invincibilité nom f s 0.11 0.27 0.11 0.27 +invincible invincible adj s 3.60 5.07 2.92 4.59 +invinciblement invinciblement adv 0.01 1.22 0.01 1.22 +invincibles invincible adj p 3.60 5.07 0.68 0.47 +inviolabilité inviolabilité nom f s 0.13 0.14 0.13 0.14 +inviolable inviolable adj s 0.39 1.35 0.26 0.95 +inviolables inviolable adj p 0.39 1.35 0.13 0.41 +inviolé inviolé adj m s 0.10 0.34 0.04 0.20 +inviolée inviolé adj f s 0.10 0.34 0.03 0.00 +inviolées inviolé adj f p 0.10 0.34 0.02 0.00 +inviolés inviolé adj m p 0.10 0.34 0.01 0.14 +invisibilité invisibilité nom f s 0.45 0.27 0.45 0.27 +invisible_piston invisible_piston nom m s 0.00 0.07 0.00 0.07 +invisible invisible adj s 16.21 52.36 12.85 36.35 +invisiblement invisiblement adv 0.01 0.41 0.01 0.41 +invisibles invisible adj p 16.21 52.36 3.36 16.01 +invita inviter ver 116.83 82.30 0.45 9.93 ind:pas:3s; +invitai inviter ver 116.83 82.30 0.11 1.49 ind:pas:1s; +invitaient inviter ver 116.83 82.30 0.06 2.36 ind:imp:3p; +invitais inviter ver 116.83 82.30 0.50 1.01 ind:imp:1s;ind:imp:2s; +invitait inviter ver 116.83 82.30 0.90 8.92 ind:imp:3s; +invitant inviter ver 116.83 82.30 0.63 3.72 par:pre; +invitante invitant adj f s 0.01 0.68 0.01 0.34 +invitantes invitant adj f p 0.01 0.68 0.00 0.14 +invitants invitant adj m p 0.01 0.68 0.00 0.07 +invitation invitation nom f s 18.27 18.24 15.08 14.53 +invitations invitation nom f p 18.27 18.24 3.18 3.72 +invite inviter ver 116.83 82.30 29.01 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +invitent inviter ver 116.83 82.30 3.12 1.42 ind:pre:3p; +inviter inviter ver 116.83 82.30 22.63 14.05 inf;;inf;;inf;; +invitera inviter ver 116.83 82.30 0.65 0.47 ind:fut:3s; +inviterai inviter ver 116.83 82.30 1.36 0.34 ind:fut:1s; +inviteraient inviter ver 116.83 82.30 0.03 0.14 cnd:pre:3p; +inviterais inviter ver 116.83 82.30 0.80 0.20 cnd:pre:1s;cnd:pre:2s; +inviterait inviter ver 116.83 82.30 0.20 0.54 cnd:pre:3s; +inviteras inviter ver 116.83 82.30 0.19 0.14 ind:fut:2s; +inviterez inviter ver 116.83 82.30 0.17 0.07 ind:fut:2p; +inviteriez inviter ver 116.83 82.30 0.05 0.14 cnd:pre:2p; +inviterions inviter ver 116.83 82.30 0.00 0.07 cnd:pre:1p; +inviterons inviter ver 116.83 82.30 0.07 0.14 ind:fut:1p; +inviteront inviter ver 116.83 82.30 0.02 0.00 ind:fut:3p; +invites inviter ver 116.83 82.30 3.64 0.14 ind:pre:2s;sub:pre:2s; +inviteur inviteur nom m s 0.00 0.14 0.00 0.07 +inviteurs inviteur nom m p 0.00 0.14 0.00 0.07 +invitez inviter ver 116.83 82.30 3.09 0.47 imp:pre:2p;ind:pre:2p; +invitiez inviter ver 116.83 82.30 0.24 0.14 ind:imp:2p; +invitions inviter ver 116.83 82.30 0.03 0.20 ind:imp:1p; +invitâmes inviter ver 116.83 82.30 0.00 0.14 ind:pas:1p; +invitons inviter ver 116.83 82.30 0.93 0.20 imp:pre:1p;ind:pre:1p; +invitât inviter ver 116.83 82.30 0.00 0.20 sub:imp:3s; +invitèrent inviter ver 116.83 82.30 0.11 0.74 ind:pas:3p; +invité inviter ver m s 116.83 82.30 28.27 14.05 par:pas; +invitée inviter ver f s 116.83 82.30 12.14 5.20 par:pas; +invitées inviter ver f p 116.83 82.30 0.66 0.74 par:pas; +invités invité nom m p 41.19 27.16 24.84 18.51 +invivable invivable adj s 0.43 1.22 0.43 1.22 +invocation invocation nom f s 0.69 1.96 0.55 1.28 +invocations invocation nom f p 0.69 1.96 0.14 0.68 +invocatoire invocatoire adj m s 0.00 0.07 0.00 0.07 +involontaire involontaire adj s 3.40 6.62 3.10 5.61 +involontairement involontairement adv 0.57 3.18 0.57 3.18 +involontaires involontaire adj p 3.40 6.62 0.30 1.01 +involutif involutif adj m s 0.00 0.14 0.00 0.07 +involutifs involutif adj m p 0.00 0.14 0.00 0.07 +involution involution nom f s 0.00 0.07 0.00 0.07 +invoqua invoquer ver 8.13 10.95 0.26 0.61 ind:pas:3s; +invoquai invoquer ver 8.13 10.95 0.00 0.20 ind:pas:1s; +invoquaient invoquer ver 8.13 10.95 0.01 0.34 ind:imp:3p; +invoquais invoquer ver 8.13 10.95 0.00 0.34 ind:imp:1s; +invoquait invoquer ver 8.13 10.95 0.01 1.28 ind:imp:3s; +invoquant invoquer ver 8.13 10.95 0.67 2.09 par:pre; +invoque invoquer ver 8.13 10.95 1.55 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +invoquent invoquer ver 8.13 10.95 0.31 0.27 ind:pre:3p; +invoquer invoquer ver 8.13 10.95 2.23 2.57 inf; +invoquera invoquer ver 8.13 10.95 0.06 0.07 ind:fut:3s; +invoquerai invoquer ver 8.13 10.95 0.04 0.14 ind:fut:1s; +invoquerais invoquer ver 8.13 10.95 0.11 0.07 cnd:pre:1s;cnd:pre:2s; +invoquerait invoquer ver 8.13 10.95 0.02 0.00 cnd:pre:3s; +invoquerez invoquer ver 8.13 10.95 0.00 0.07 ind:fut:2p; +invoquerons invoquer ver 8.13 10.95 0.02 0.00 ind:fut:1p; +invoques invoquer ver 8.13 10.95 0.15 0.14 ind:pre:2s; +invoquez invoquer ver 8.13 10.95 0.35 0.34 imp:pre:2p;ind:pre:2p; +invoquons invoquer ver 8.13 10.95 0.33 0.00 imp:pre:1p;ind:pre:1p; +invoquât invoquer ver 8.13 10.95 0.00 0.07 sub:imp:3s; +invoqué invoquer ver m s 8.13 10.95 1.52 1.22 par:pas; +invoquée invoquer ver f s 8.13 10.95 0.20 0.27 par:pas; +invoquées invoquer ver f p 8.13 10.95 0.12 0.07 par:pas; +invoqués invoquer ver m p 8.13 10.95 0.17 0.14 par:pas; +invraisemblable invraisemblable adj s 2.11 9.53 1.62 7.30 +invraisemblablement invraisemblablement adv 0.00 0.14 0.00 0.14 +invraisemblables invraisemblable adj p 2.11 9.53 0.48 2.23 +invraisemblance invraisemblance nom f s 0.17 1.76 0.14 1.35 +invraisemblances invraisemblance nom f p 0.17 1.76 0.04 0.41 +invulnérabilité invulnérabilité nom f s 0.28 0.54 0.28 0.54 +invulnérable invulnérable adj s 1.12 3.18 0.90 2.57 +invulnérables invulnérable adj p 1.12 3.18 0.22 0.61 +invérifiable invérifiable adj s 0.02 0.34 0.01 0.14 +invérifiables invérifiable adj f p 0.02 0.34 0.01 0.20 +invétéré invétéré adj m s 0.79 1.69 0.65 1.01 +invétérée invétéré adj f s 0.79 1.69 0.08 0.34 +invétérées invétéré adj f p 0.79 1.69 0.00 0.14 +invétérés invétéré adj m p 0.79 1.69 0.06 0.20 +iode iode nom m s 1.15 3.58 1.15 3.58 +iodle iodler ver 0.07 0.00 0.03 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +iodler iodler ver 0.07 0.00 0.03 0.00 inf; +iodoforme iodoforme nom m s 0.01 0.07 0.01 0.07 +iodé iodé adj m s 0.14 0.20 0.00 0.07 +iodée iodé adj f s 0.14 0.20 0.14 0.14 +iodure iodure nom m s 0.05 0.00 0.05 0.00 +ion ion nom m s 0.85 0.14 0.37 0.07 +ionien ionien adj m s 0.00 0.20 0.00 0.07 +ionienne ionienne adj f s 0.01 0.07 0.01 0.07 +ioniennes ioniennes adj f s 0.00 0.20 0.00 0.20 +ioniens ionien adj m p 0.00 0.20 0.00 0.07 +ionique ionique adj s 0.45 0.07 0.35 0.07 +ioniques ionique adj p 0.45 0.07 0.10 0.00 +ionisant ionisant adj m s 0.05 0.00 0.04 0.00 +ionisante ionisant adj f s 0.05 0.00 0.01 0.00 +ionisation ionisation nom f s 0.23 0.14 0.23 0.14 +ioniser ioniser ver 0.04 0.00 0.02 0.00 inf; +ionisez ioniser ver 0.04 0.00 0.01 0.00 imp:pre:2p; +ionisé ionisé adj m s 0.15 0.07 0.05 0.07 +ionisée ionisé adj f s 0.15 0.07 0.10 0.00 +ionosphère ionosphère nom f s 0.20 0.07 0.20 0.07 +ions ion nom m p 0.85 0.14 0.48 0.07 +iota iota nom m 0.22 0.34 0.22 0.34 +ipomée ipomée nom f s 0.00 0.07 0.00 0.07 +ippon ippon nom m s 0.03 0.00 0.03 0.00 +ipse ipse nom m s 0.01 0.14 0.01 0.14 +ipso_facto ipso_facto adv 0.21 0.61 0.21 0.61 +ipéca ipéca nom m s 0.32 0.20 0.32 0.14 +ipécas ipéca nom m p 0.32 0.20 0.00 0.07 +ira aller ver 9992.78 2854.93 148.34 28.31 ind:fut:3s; +irai aller ver 9992.78 2854.93 71.96 27.70 ind:fut:1s; +iraient aller ver 9992.78 2854.93 1.65 5.47 cnd:pre:3p; +irais aller ver 9992.78 2854.93 20.14 11.96 cnd:pre:1s;cnd:pre:2s; +irait aller ver 9992.78 2854.93 22.44 26.01 cnd:pre:3s; +irakien irakien adj m s 1.12 0.34 0.86 0.07 +irakienne irakienne adj f s 0.08 0.00 0.08 0.00 +irakiens irakien nom m p 0.64 0.07 0.56 0.07 +iranien iranien adj m s 0.41 0.41 0.20 0.07 +iranienne iranien adj f s 0.41 0.41 0.12 0.07 +iraniennes iranien adj f p 0.41 0.41 0.01 0.14 +iraniens iranien nom m p 0.34 0.47 0.28 0.14 +iraquien iraquien adj m s 0.16 0.00 0.09 0.00 +iraquienne iraquien adj f s 0.16 0.00 0.07 0.00 +iraquiens iraquien nom m p 0.11 0.00 0.08 0.00 +iras aller ver 9992.78 2854.93 24.90 6.76 ind:fut:2s; +irascible irascible adj s 0.65 1.55 0.52 1.28 +irascibles irascible adj m p 0.65 1.55 0.14 0.27 +ire ire nom f s 0.58 0.81 0.55 0.74 +ires ire nom f p 0.58 0.81 0.03 0.07 +irez aller ver 9992.78 2854.93 14.29 5.41 ind:fut:2p; +iridescence iridescence nom f s 0.01 0.00 0.01 0.00 +iridescent iridescent adj m s 0.01 0.07 0.01 0.00 +iridescentes iridescent adj f p 0.01 0.07 0.00 0.07 +iridium iridium nom m s 0.18 0.34 0.18 0.34 +iridologie iridologie nom f s 0.01 0.00 0.01 0.00 +iriez aller ver 9992.78 2854.93 2.02 1.08 cnd:pre:2p; +irions aller ver 9992.78 2854.93 1.10 2.91 cnd:pre:1p; +iris iris nom m 3.93 6.42 3.93 6.42 +irisaient iriser ver 0.01 2.03 0.00 0.14 ind:imp:3p; +irisait iriser ver 0.01 2.03 0.00 0.20 ind:imp:3s; +irisant iriser ver 0.01 2.03 0.00 0.07 par:pre; +irisation irisation nom f s 0.00 0.81 0.00 0.47 +irisations irisation nom f p 0.00 0.81 0.00 0.34 +irise iriser ver 0.01 2.03 0.01 0.14 ind:pre:3s; +irisent iriser ver 0.01 2.03 0.00 0.14 ind:pre:3p; +iriser iriser ver 0.01 2.03 0.00 0.07 inf; +iriserait iriser ver 0.01 2.03 0.00 0.07 cnd:pre:3s; +irish_coffee irish_coffee nom m s 0.16 0.14 0.16 0.14 +irisé irisé adj m s 0.05 1.96 0.00 0.41 +irisée irisé adj f s 0.05 1.96 0.00 0.61 +irisées irisé adj f p 0.05 1.96 0.03 0.54 +irisés irisé adj m p 0.05 1.96 0.02 0.41 +irlandais irlandais adj m 4.75 3.78 3.71 2.43 +irlandaise irlandais adj f s 4.75 3.78 0.89 1.08 +irlandaises irlandais adj f p 4.75 3.78 0.15 0.27 +ironie ironie nom f s 6.05 24.19 6.00 23.78 +ironies ironie nom f p 6.05 24.19 0.05 0.41 +ironique ironique adj s 3.73 16.28 3.67 13.72 +ironiquement ironiquement adv 0.95 2.77 0.95 2.77 +ironiques ironique adj p 3.73 16.28 0.06 2.57 +ironisa ironiser ver 0.44 2.50 0.00 1.01 ind:pas:3s; +ironisai ironiser ver 0.44 2.50 0.00 0.07 ind:pas:1s; +ironisais ironiser ver 0.44 2.50 0.00 0.14 ind:imp:1s;ind:imp:2s; +ironisait ironiser ver 0.44 2.50 0.00 0.14 ind:imp:3s; +ironise ironiser ver 0.44 2.50 0.01 0.34 imp:pre:2s;ind:pre:3s; +ironisent ironiser ver 0.44 2.50 0.01 0.07 ind:pre:3p; +ironiser ironiser ver 0.44 2.50 0.42 0.47 inf; +ironisme ironisme nom m s 0.00 0.07 0.00 0.07 +ironiste ironiste nom s 0.00 0.14 0.00 0.14 +ironisé ironiser ver m s 0.44 2.50 0.00 0.27 par:pas; +irons aller ver 9992.78 2854.93 15.36 9.32 ind:fut:1p; +iront aller ver 9992.78 2854.93 7.43 4.73 ind:fut:3p; +iroquois iroquois nom m 0.05 0.00 0.05 0.00 +iroquoise iroquois adj f s 0.22 0.27 0.17 0.00 +irradia irradier ver 0.65 4.32 0.00 0.14 ind:pas:3s; +irradiaient irradier ver 0.65 4.32 0.00 0.20 ind:imp:3p; +irradiait irradier ver 0.65 4.32 0.03 1.28 ind:imp:3s; +irradiant irradiant adj m s 0.11 0.54 0.03 0.20 +irradiante irradiant adj f s 0.11 0.54 0.05 0.34 +irradiantes irradiant adj f p 0.11 0.54 0.04 0.00 +irradiation irradiation nom f s 0.27 0.34 0.26 0.20 +irradiations irradiation nom f p 0.27 0.34 0.01 0.14 +irradie irradier ver 0.65 4.32 0.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +irradier irradier ver 0.65 4.32 0.01 0.68 inf; +irradiera irradier ver 0.65 4.32 0.01 0.00 ind:fut:3s; +irradiez irradier ver 0.65 4.32 0.00 0.07 ind:pre:2p; +irradié irradier ver m s 0.65 4.32 0.27 0.27 par:pas; +irradiée irradier ver f s 0.65 4.32 0.06 0.07 par:pas; +irradiées irradier ver f p 0.65 4.32 0.03 0.00 par:pas; +irradiés irradier ver m p 0.65 4.32 0.10 0.00 par:pas; +irraisonnable irraisonnable adj s 0.01 0.07 0.01 0.07 +irraisonné irraisonné adj m s 0.07 1.49 0.03 0.27 +irraisonnée irraisonné adj f s 0.07 1.49 0.02 1.15 +irraisonnés irraisonné adj m p 0.07 1.49 0.01 0.07 +irrationalité irrationalité nom f s 0.04 0.07 0.04 0.07 +irrationnel irrationnel adj m s 1.63 1.15 0.61 0.81 +irrationnelle irrationnel adj f s 1.63 1.15 0.77 0.14 +irrationnellement irrationnellement adv 0.01 0.07 0.01 0.07 +irrationnelles irrationnel adj f p 1.63 1.15 0.16 0.14 +irrationnels irrationnel adj m p 1.63 1.15 0.10 0.07 +irrattrapable irrattrapable adj m s 0.12 0.27 0.12 0.14 +irrattrapables irrattrapable adj p 0.12 0.27 0.00 0.14 +irrecevabilité irrecevabilité nom f s 0.02 0.14 0.02 0.14 +irrecevable irrecevable adj s 0.72 0.14 0.61 0.14 +irrecevables irrecevable adj p 0.72 0.14 0.12 0.00 +irremplaçable irremplaçable adj s 1.23 5.14 1.11 4.26 +irremplaçables irremplaçable adj p 1.23 5.14 0.13 0.88 +irreprésentable irreprésentable adj s 0.00 0.07 0.00 0.07 +irrespect irrespect nom m s 0.13 0.68 0.13 0.68 +irrespectueuse irrespectueux adj f s 0.71 1.01 0.04 0.27 +irrespectueusement irrespectueusement adv 0.02 0.07 0.02 0.07 +irrespectueuses irrespectueux adj f p 0.71 1.01 0.00 0.07 +irrespectueux irrespectueux adj m 0.71 1.01 0.68 0.68 +irrespirable irrespirable adj s 0.61 2.57 0.61 2.43 +irrespirables irrespirable adj f p 0.61 2.57 0.00 0.14 +irresponsabilité irresponsabilité nom f s 1.45 1.49 1.45 1.49 +irresponsable irresponsable adj s 6.29 2.70 4.99 2.09 +irresponsables irresponsable adj p 6.29 2.70 1.30 0.61 +irrigateur irrigateur adj m s 0.01 0.00 0.01 0.00 +irrigateurs irrigateur nom m p 0.00 0.07 0.00 0.07 +irrigation irrigation nom f s 0.86 1.55 0.86 1.55 +irriguaient irriguer ver 0.50 2.84 0.00 0.14 ind:imp:3p; +irriguait irriguer ver 0.50 2.84 0.00 0.34 ind:imp:3s; +irriguant irriguer ver 0.50 2.84 0.01 0.14 par:pre; +irrigue irriguer ver 0.50 2.84 0.14 0.20 imp:pre:2s;ind:pre:3s; +irriguent irriguer ver 0.50 2.84 0.01 0.07 ind:pre:3p; +irriguer irriguer ver 0.50 2.84 0.17 0.47 inf; +irriguera irriguer ver 0.50 2.84 0.02 0.00 ind:fut:3s; +irrigueraient irriguer ver 0.50 2.84 0.00 0.07 cnd:pre:3p; +irriguerait irriguer ver 0.50 2.84 0.00 0.20 cnd:pre:3s; +irriguons irriguer ver 0.50 2.84 0.00 0.07 imp:pre:1p; +irrigué irriguer ver m s 0.50 2.84 0.08 0.41 par:pas; +irriguée irriguer ver f s 0.50 2.84 0.03 0.47 par:pas; +irriguées irriguer ver f p 0.50 2.84 0.03 0.07 par:pas; +irrigués irriguer ver m p 0.50 2.84 0.01 0.20 par:pas; +irrita irriter ver 6.70 24.93 0.11 1.35 ind:pas:3s; +irritabilité irritabilité nom f s 0.20 0.07 0.20 0.07 +irritable irritable adj s 1.71 1.55 1.56 1.22 +irritables irritable adj f p 1.71 1.55 0.15 0.34 +irritai irriter ver 6.70 24.93 0.00 0.20 ind:pas:1s; +irritaient irriter ver 6.70 24.93 0.01 0.68 ind:imp:3p; +irritais irriter ver 6.70 24.93 0.01 0.81 ind:imp:1s; +irritait irriter ver 6.70 24.93 0.44 5.68 ind:imp:3s; +irritant irritant adj m s 1.18 4.26 0.80 1.89 +irritante irritant adj f s 1.18 4.26 0.17 1.42 +irritantes irritant adj f p 1.18 4.26 0.01 0.47 +irritants irritant adj m p 1.18 4.26 0.20 0.47 +irritation irritation nom f s 1.00 9.39 0.80 9.19 +irritations irritation nom f p 1.00 9.39 0.20 0.20 +irrite irriter ver 6.70 24.93 2.62 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +irritent irriter ver 6.70 24.93 0.20 0.68 ind:pre:3p; +irriter irriter ver 6.70 24.93 0.79 2.36 inf; +irritera irriter ver 6.70 24.93 0.01 0.00 ind:fut:3s; +irriterait irriter ver 6.70 24.93 0.02 0.20 cnd:pre:3s; +irriterons irriter ver 6.70 24.93 0.01 0.00 ind:fut:1p; +irritez irriter ver 6.70 24.93 0.08 0.07 imp:pre:2p;ind:pre:2p; +irritons irriter ver 6.70 24.93 0.00 0.07 ind:pre:1p; +irritât irriter ver 6.70 24.93 0.00 0.14 sub:imp:3s; +irritèrent irriter ver 6.70 24.93 0.00 0.14 ind:pas:3p; +irrité irriter ver m s 6.70 24.93 1.29 5.00 par:pas; +irritée irriter ver f s 6.70 24.93 0.82 3.24 par:pas; +irritées irriter ver f p 6.70 24.93 0.22 0.41 par:pas; +irrités irriter ver m p 6.70 24.93 0.07 0.47 par:pas; +irroration irroration nom f s 0.00 0.07 0.00 0.07 +irréalisable irréalisable adj s 0.51 1.08 0.47 0.88 +irréalisables irréalisable adj m p 0.51 1.08 0.03 0.20 +irréalisait irréaliser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +irréalise irréaliser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +irréalisme irréalisme nom m s 0.00 0.07 0.00 0.07 +irréaliste irréaliste adj s 0.46 0.14 0.35 0.14 +irréalistes irréaliste adj p 0.46 0.14 0.10 0.00 +irréalisé irréalisé adj m s 0.00 0.14 0.00 0.07 +irréalisés irréalisé adj m p 0.00 0.14 0.00 0.07 +irréalité irréalité nom f s 0.14 3.51 0.14 3.51 +irréconciliable irréconciliable adj s 0.32 0.20 0.28 0.14 +irréconciliables irréconciliable adj f p 0.32 0.20 0.04 0.07 +irrécupérable irrécupérable adj s 0.98 2.03 0.81 1.42 +irrécupérables irrécupérable adj p 0.98 2.03 0.18 0.61 +irrécusable irrécusable adj s 0.02 1.01 0.02 0.81 +irrécusables irrécusable adj m p 0.02 1.01 0.00 0.20 +irréductible irréductible adj s 0.29 2.64 0.00 1.49 +irréductiblement irréductiblement adv 0.01 0.14 0.01 0.14 +irréductibles irréductible adj p 0.29 2.64 0.29 1.15 +irréel irréel adj m s 2.84 12.43 1.87 5.27 +irréelle irréel adj f s 2.84 12.43 0.86 4.53 +irréellement irréellement adv 0.00 0.20 0.00 0.20 +irréelles irréel adj f p 2.84 12.43 0.07 1.15 +irréels irréel adj m p 2.84 12.43 0.04 1.49 +irréfléchi irréfléchi adj m s 0.92 0.54 0.40 0.14 +irréfléchie irréfléchi adj f s 0.92 0.54 0.34 0.41 +irréfléchis irréfléchi adj m p 0.92 0.54 0.18 0.00 +irréfragable irréfragable adj s 0.07 0.20 0.07 0.20 +irréfutable irréfutable adj s 1.58 2.77 0.97 2.09 +irréfutablement irréfutablement adv 0.03 0.20 0.03 0.20 +irréfutables irréfutable adj p 1.58 2.77 0.60 0.68 +irrégularité irrégularité nom f s 0.96 1.55 0.54 0.74 +irrégularités irrégularité nom f p 0.96 1.55 0.42 0.81 +irrégulier irrégulier adj m s 2.70 7.64 1.44 1.82 +irréguliers irrégulier adj m p 2.70 7.64 0.38 2.09 +irrégulière irrégulier adj f s 2.70 7.64 0.59 2.16 +irrégulièrement irrégulièrement adv 0.03 1.76 0.03 1.76 +irrégulières irrégulier adj f p 2.70 7.64 0.29 1.55 +irréligieuse irréligieux adj f s 0.04 0.07 0.01 0.00 +irréligieux irréligieux adj m s 0.04 0.07 0.03 0.07 +irréligiosité irréligiosité nom f s 0.00 0.07 0.00 0.07 +irrémissible irrémissible adj s 0.16 0.27 0.16 0.27 +irrémédiable irrémédiable adj s 0.57 5.34 0.52 5.07 +irrémédiablement irrémédiablement adv 1.12 4.19 1.12 4.19 +irrémédiables irrémédiable adj p 0.57 5.34 0.06 0.27 +irréparable irréparable adj s 1.73 4.39 1.33 3.58 +irréparablement irréparablement adv 0.00 0.14 0.00 0.14 +irréparables irréparable adj p 1.73 4.39 0.40 0.81 +irrépressible irrépressible adj s 0.95 3.99 0.79 3.24 +irrépressibles irrépressible adj p 0.95 3.99 0.16 0.74 +irréprochable irréprochable adj s 2.38 4.46 1.82 3.38 +irréprochablement irréprochablement adv 0.00 0.20 0.00 0.20 +irréprochables irréprochable adj p 2.38 4.46 0.56 1.08 +irruption irruption nom f s 2.82 11.69 2.79 11.35 +irruptions irruption nom f p 2.82 11.69 0.03 0.34 +irrésistible irrésistible adj s 4.67 15.34 4.33 13.78 +irrésistiblement irrésistiblement adv 0.14 4.66 0.14 4.66 +irrésistibles irrésistible adj p 4.67 15.34 0.33 1.55 +irrésolu irrésolu adj m s 0.33 0.68 0.04 0.47 +irrésolue irrésolu adj f s 0.33 0.68 0.17 0.00 +irrésolues irrésolu adj f p 0.33 0.68 0.07 0.07 +irrésolus irrésolu adj m p 0.33 0.68 0.05 0.14 +irrésolution irrésolution nom f s 0.01 0.20 0.01 0.20 +irrétrécissable irrétrécissable adj s 0.01 0.00 0.01 0.00 +irréversibilité irréversibilité nom f s 0.00 0.27 0.00 0.27 +irréversible irréversible adj s 1.92 2.43 1.33 1.96 +irréversiblement irréversiblement adv 0.15 0.34 0.15 0.34 +irréversibles irréversible adj p 1.92 2.43 0.59 0.47 +irrévocabilité irrévocabilité nom f s 0.01 0.00 0.01 0.00 +irrévocable irrévocable adj s 0.82 0.81 0.68 0.68 +irrévocablement irrévocablement adv 0.21 0.47 0.21 0.47 +irrévocables irrévocable adj p 0.82 0.81 0.14 0.14 +irrévérence irrévérence nom f s 0.30 0.20 0.30 0.20 +irrévérencieuse irrévérencieux adj f s 0.16 0.27 0.10 0.07 +irrévérencieusement irrévérencieusement adv 0.00 0.14 0.00 0.14 +irrévérencieuses irrévérencieux adj f p 0.16 0.27 0.00 0.14 +irrévérencieux irrévérencieux adj m s 0.16 0.27 0.06 0.07 +isabelle isabelle adj 1.85 0.47 1.85 0.47 +isard isard nom m s 0.00 0.54 0.00 0.34 +isards isard nom m p 0.00 0.54 0.00 0.20 +isatis isatis nom m 0.00 0.07 0.00 0.07 +isba isba nom f s 0.40 5.34 0.40 4.05 +isbas isba nom f p 0.40 5.34 0.00 1.28 +ischion ischion nom m s 0.01 0.14 0.01 0.14 +ischémie ischémie nom f s 0.23 0.00 0.23 0.00 +ischémique ischémique adj s 0.13 0.00 0.13 0.00 +islam islam nom m s 2.84 2.30 2.84 2.30 +islamique islamique adj s 1.49 0.54 1.30 0.47 +islamiques islamique adj p 1.49 0.54 0.20 0.07 +islamisants islamisant adj m p 0.00 0.07 0.00 0.07 +islamiser islamiser ver 0.01 0.07 0.01 0.00 inf; +islamisme islamisme nom m s 0.01 0.07 0.01 0.07 +islamiste islamiste adj s 0.19 0.00 0.15 0.00 +islamistes islamiste nom p 0.09 0.14 0.09 0.14 +islamisée islamisé adj f s 0.00 0.07 0.00 0.07 +islamisées islamiser ver f p 0.01 0.07 0.00 0.07 par:pas; +islandais islandais adj m s 0.44 0.81 0.29 0.34 +islandaise islandais adj f s 0.44 0.81 0.15 0.47 +ismaïliens ismaïlien nom m p 0.00 0.07 0.00 0.07 +ismaélien ismaélien nom m s 0.01 0.07 0.01 0.00 +ismaéliens ismaélien nom m p 0.01 0.07 0.00 0.07 +ismaélite ismaélite adj m s 0.01 0.00 0.01 0.00 +isme isme nom m s 0.34 0.00 0.34 0.00 +isochronisme isochronisme nom m s 0.01 0.00 0.01 0.00 +isocèle isocèle adj s 0.05 0.14 0.05 0.14 +isola isoler ver 14.10 23.45 0.04 1.28 ind:pas:3s; +isolables isolable adj m p 0.00 0.07 0.00 0.07 +isolai isoler ver 14.10 23.45 0.00 0.14 ind:pas:1s; +isolaient isoler ver 14.10 23.45 0.02 0.47 ind:imp:3p; +isolais isoler ver 14.10 23.45 0.01 0.14 ind:imp:1s;ind:imp:2s; +isolait isoler ver 14.10 23.45 0.05 2.57 ind:imp:3s; +isolant isolant nom m s 0.45 0.14 0.45 0.14 +isolante isolant adj f s 0.27 0.14 0.13 0.07 +isolateur isolateur nom m s 0.00 0.14 0.00 0.07 +isolateurs isolateur adj m p 0.01 0.07 0.01 0.00 +isolation isolation nom f s 1.02 0.34 1.02 0.20 +isolationnisme isolationnisme nom m s 0.05 0.20 0.05 0.20 +isolationniste isolationniste adj f s 0.02 0.07 0.02 0.07 +isolations isolation nom f p 1.02 0.34 0.00 0.14 +isole isoler ver 14.10 23.45 1.36 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +isolement isolement nom m s 5.63 7.97 5.63 7.91 +isolements isolement nom m p 5.63 7.97 0.00 0.07 +isolent isoler ver 14.10 23.45 0.46 0.47 ind:pre:3p; +isoler isoler ver 14.10 23.45 4.62 5.74 inf; +isolera isoler ver 14.10 23.45 0.03 0.00 ind:fut:3s; +isoleraient isoler ver 14.10 23.45 0.00 0.14 cnd:pre:3p; +isolerait isoler ver 14.10 23.45 0.01 0.27 cnd:pre:3s; +isoleront isoler ver 14.10 23.45 0.02 0.00 ind:fut:3p; +isolez isoler ver 14.10 23.45 0.65 0.00 imp:pre:2p;ind:pre:2p; +isoliez isoler ver 14.10 23.45 0.00 0.07 ind:imp:2p; +isolions isoler ver 14.10 23.45 0.03 0.00 ind:imp:1p; +isoloir isoloir nom m s 0.75 0.14 0.58 0.14 +isoloirs isoloir nom m p 0.75 0.14 0.16 0.00 +isolèrent isoler ver 14.10 23.45 0.00 0.20 ind:pas:3p; +isolé isolé adj m s 8.17 14.80 4.08 4.46 +isolée isolé adj f s 8.17 14.80 1.98 4.12 +isolées isoler ver f p 14.10 23.45 0.35 1.01 par:pas; +isolément isolément adv 0.14 1.28 0.14 1.28 +isolés isolé adj m p 8.17 14.80 1.79 4.66 +isomère isomère adj f s 0.25 0.00 0.25 0.00 +isométrique isométrique adj f s 0.02 0.00 0.02 0.00 +isoniazide isoniazide nom m s 0.01 0.00 0.01 0.00 +isorel isorel nom m s 0.00 0.14 0.00 0.14 +isotherme isotherme adj m s 0.11 0.00 0.11 0.00 +isothermique isothermique adj f s 0.01 0.00 0.01 0.00 +isotonique isotonique adj f s 0.10 0.00 0.10 0.00 +isotope isotope nom m s 0.64 0.00 0.37 0.00 +isotopes isotope nom m p 0.64 0.00 0.26 0.00 +isotopique isotopique adj f s 0.04 0.00 0.04 0.00 +israélien israélien adj m s 5.63 0.54 2.22 0.47 +israélienne israélien adj f s 5.63 0.54 1.54 0.07 +israéliennes israélien adj f p 5.63 0.54 0.15 0.00 +israéliens israélien nom m p 4.49 1.08 4.00 0.74 +israélite israélite adj s 0.70 0.81 0.57 0.41 +israélites israélite nom p 0.41 0.68 0.39 0.54 +israélo_arabe israélo_arabe adj f s 0.01 0.00 0.01 0.00 +israélo_syrien israélo_syrien adj f s 0.14 0.00 0.14 0.00 +issu issu adj m s 5.24 8.51 2.10 3.58 +issue issue nom f s 16.52 22.70 13.70 19.26 +issues issue nom f p 16.52 22.70 2.82 3.45 +issus issu adj m p 5.24 8.51 1.29 2.16 +isthme isthme nom m s 0.19 0.61 0.19 0.54 +isthmes isthme nom m p 0.19 0.61 0.00 0.07 +isthmique isthmique adj f s 0.01 0.00 0.01 0.00 +italianisme italianisme nom m s 0.00 0.14 0.00 0.14 +italiano italiano nom m s 0.24 0.07 0.24 0.07 +italien italien adj m s 26.66 35.74 13.01 13.51 +italienne italien adj f s 26.66 35.74 7.56 11.62 +italiennes italien adj f p 26.66 35.74 1.54 4.05 +italiens italien nom m p 23.24 27.57 9.07 9.73 +italique italique adj m s 0.14 0.68 0.12 0.07 +italiques italique adj f p 0.14 0.68 0.02 0.61 +italo_allemand italo_allemand adj f s 0.00 0.20 0.00 0.07 +italo_allemand italo_allemand adj f p 0.00 0.20 0.00 0.14 +italo_américain italo_américain adj m s 0.20 0.00 0.15 0.00 +italo_américain italo_américain adj f s 0.20 0.00 0.04 0.00 +italo_brésilien italo_brésilien adj m s 0.00 0.07 0.00 0.07 +italo_français italo_français adj m 0.00 0.14 0.00 0.07 +italo_français italo_français adj f p 0.00 0.14 0.00 0.07 +italo_irlandais italo_irlandais adj m 0.01 0.00 0.01 0.00 +italo_polonais italo_polonais adj m 0.00 0.07 0.00 0.07 +italo_égyptien italo_égyptien adj m s 0.00 0.07 0.00 0.07 +ite_missa_est ite_missa_est nom m 0.00 0.14 0.00 0.14 +item item nom m s 0.09 1.49 0.09 1.49 +ithos ithos nom m 0.00 0.07 0.00 0.07 +ithyphallique ithyphallique adj m s 0.00 0.14 0.00 0.14 +itinéraire itinéraire nom m s 4.18 10.47 3.25 8.45 +itinéraires itinéraire nom m p 4.18 10.47 0.93 2.03 +itinérant itinérant adj m s 0.51 0.74 0.39 0.20 +itinérante itinérant adj f s 0.51 0.74 0.06 0.27 +itinérantes itinérant adj f p 0.51 0.74 0.01 0.07 +itinérants itinérant nom m p 0.20 0.00 0.20 0.00 +itou itou adv_sup 0.30 1.82 0.30 1.82 +iules iule nom m p 0.00 0.07 0.00 0.07 +ive ive nom f s 0.81 0.68 0.01 0.68 +ives ive nom f p 0.81 0.68 0.81 0.00 +ivoire ivoire nom m s 1.98 8.38 1.96 7.84 +ivoires ivoire nom m p 1.98 8.38 0.02 0.54 +ivoirien ivoirien adj m s 0.00 0.14 0.00 0.14 +ivoirienne ivoirienne nom f s 0.00 0.07 0.00 0.07 +ivoirin ivoirin adj m s 0.00 0.74 0.00 0.68 +ivoirine ivoirin nom f s 0.00 0.41 0.00 0.27 +ivoirines ivoirin nom f p 0.00 0.41 0.00 0.14 +ivoirins ivoirin adj m p 0.00 0.74 0.00 0.07 +ivraie ivraie nom f s 0.21 0.68 0.21 0.68 +ivre ivre adj s 18.32 27.70 16.59 21.76 +ivres ivre adj p 18.32 27.70 1.72 5.95 +ivresse ivresse nom f s 3.56 18.11 3.29 17.50 +ivresses ivresse nom f p 3.56 18.11 0.27 0.61 +ivrognait ivrogner ver 0.00 0.20 0.00 0.07 ind:imp:3s; +ivrognasse ivrogner ver 0.00 0.20 0.00 0.07 sub:imp:1s; +ivrogne ivrogne nom s 10.60 13.92 7.81 8.72 +ivrogner ivrogner ver 0.00 0.20 0.00 0.07 inf; +ivrognerie ivrognerie nom f s 0.21 0.88 0.21 0.88 +ivrognes ivrogne nom p 10.60 13.92 2.79 5.20 +ivrognesse ivrognesse nom f s 0.01 0.07 0.01 0.07 +ixe ixer ver 0.00 0.34 0.00 0.34 ind:pre:3s; +ixième ixième adj f s 0.00 0.07 0.00 0.07 +j j pro_per s 3.16 0.88 3.16 0.88 +jaïnistes jaïniste nom p 0.00 0.07 0.00 0.07 +jabadao jabadao nom m s 0.00 0.20 0.00 0.20 +jabot jabot nom m s 0.16 2.16 0.15 1.89 +jaboter jaboter ver 0.00 0.07 0.00 0.07 inf; +jabots jabot nom m p 0.16 2.16 0.01 0.27 +jacarandas jacaranda nom m p 0.00 0.20 0.00 0.20 +jacassaient jacasser ver 1.58 2.09 0.01 0.47 ind:imp:3p; +jacassais jacasser ver 1.58 2.09 0.01 0.00 ind:imp:1s; +jacassait jacasser ver 1.58 2.09 0.04 0.20 ind:imp:3s; +jacassant jacasser ver 1.58 2.09 0.03 0.41 par:pre; +jacassante jacassant adj f s 0.00 0.61 0.00 0.14 +jacassantes jacassant adj f p 0.00 0.61 0.00 0.27 +jacassants jacassant adj m p 0.00 0.61 0.00 0.07 +jacasse jacasser ver 1.58 2.09 0.33 0.20 ind:pre:1s;ind:pre:3s; +jacassement jacassement nom m s 0.06 0.81 0.03 0.47 +jacassements jacassement nom m p 0.06 0.81 0.04 0.34 +jacassent jacasser ver 1.58 2.09 0.13 0.07 ind:pre:3p; +jacasser jacasser ver 1.58 2.09 0.91 0.61 inf; +jacasseraient jacasser ver 1.58 2.09 0.00 0.07 cnd:pre:3p; +jacasserie jacasserie nom f s 0.04 0.34 0.00 0.07 +jacasseries jacasserie nom f p 0.04 0.34 0.04 0.27 +jacasses jacasser ver 1.58 2.09 0.05 0.00 ind:pre:2s; +jacasseur jacasseur nom m s 0.04 0.07 0.03 0.00 +jacasseurs jacasseur nom m p 0.04 0.07 0.00 0.07 +jacasseuse jacasseur nom f s 0.04 0.07 0.01 0.00 +jacassez jacasser ver 1.58 2.09 0.04 0.00 imp:pre:2p;ind:pre:2p; +jacassiers jacassier nom m p 0.00 0.20 0.00 0.07 +jacassiez jacasser ver 1.58 2.09 0.00 0.07 ind:imp:2p; +jacassière jacassier nom f s 0.00 0.20 0.00 0.14 +jacassé jacasser ver m s 1.58 2.09 0.03 0.00 par:pas; +jachère jachère nom f s 0.12 0.88 0.12 0.74 +jachères jachère nom f p 0.12 0.88 0.00 0.14 +jacinthe jacinthe nom f s 0.15 1.28 0.01 0.54 +jacinthes jacinthe nom f p 0.15 1.28 0.14 0.74 +jack jack nom m s 2.26 0.07 1.86 0.07 +jacket jacket nom f s 0.23 0.14 0.04 0.07 +jackets jacket nom f p 0.23 0.14 0.19 0.07 +jackpot jackpot nom m s 1.96 0.27 1.96 0.27 +jacks jack nom m p 2.26 0.07 0.40 0.00 +jacob jacob nom m s 0.09 0.20 0.09 0.20 +jacobin jacobin adj m s 0.11 0.14 0.10 0.00 +jacobine jacobin adj f s 0.11 0.14 0.00 0.14 +jacobins jacobin adj m p 0.11 0.14 0.01 0.00 +jacobite jacobite adj m s 0.07 0.20 0.05 0.20 +jacobites jacobite nom p 0.18 0.14 0.14 0.14 +jacobées jacobée nom f p 0.00 0.07 0.00 0.07 +jacot jacot nom m s 0.00 0.41 0.00 0.41 +jacquard jacquard nom m s 0.11 1.28 0.11 1.28 +jacqueline jacqueline nom f s 0.01 0.00 0.01 0.00 +jacquemart jacquemart nom m s 0.00 0.20 0.00 0.07 +jacquemarts jacquemart nom m p 0.00 0.20 0.00 0.14 +jacqueries jacquerie nom f p 0.00 0.14 0.00 0.14 +jacques jacques nom m 3.12 4.73 3.12 4.73 +jacquet jacquet nom m s 0.25 2.57 0.25 2.57 +jacquier jacquier nom m s 0.00 0.68 0.00 0.68 +jacquot jacquot nom m s 0.01 0.00 0.01 0.00 +jactais jacter ver 0.36 9.53 0.00 0.07 ind:imp:1s; +jactait jacter ver 0.36 9.53 0.00 1.01 ind:imp:3s; +jactance jactance nom f s 0.40 3.85 0.40 3.85 +jactancier jactancier adj m s 0.00 0.07 0.00 0.07 +jactant jacter ver 0.36 9.53 0.00 0.14 par:pre; +jacte jacter ver 0.36 9.53 0.17 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jactent jacter ver 0.36 9.53 0.00 0.34 ind:pre:3p; +jacter jacter ver 0.36 9.53 0.14 3.92 inf; +jacteraient jacter ver 0.36 9.53 0.00 0.07 cnd:pre:3p; +jacterais jacter ver 0.36 9.53 0.01 0.00 cnd:pre:2s; +jactes jacter ver 0.36 9.53 0.01 0.20 ind:pre:2s; +jacteur jacteur nom m s 0.00 0.14 0.00 0.14 +jactez jacter ver 0.36 9.53 0.01 0.14 imp:pre:2p;ind:pre:2p; +jactions jacter ver 0.36 9.53 0.00 0.07 ind:imp:1p; +jacté jacter ver m s 0.36 9.53 0.02 1.01 par:pas; +jaculatoire jaculatoire adj f s 0.00 0.07 0.00 0.07 +jacuzzi jacuzzi nom m s 3.46 0.14 3.32 0.07 +jacuzzis jacuzzi nom m p 3.46 0.14 0.14 0.07 +jade jade nom m s 0.66 3.51 0.63 3.38 +jades jade nom m p 0.66 3.51 0.03 0.14 +jadis jadis adv_sup 11.55 52.30 11.55 52.30 +jaffa jaffer ver 5.41 0.20 0.79 0.00 ind:pas:3s; +jaffas jaffer ver 5.41 0.20 4.57 0.00 ind:pas:2s; +jaffe jaffe nom f s 0.17 0.74 0.17 0.74 +jaffer jaffer ver 5.41 0.20 0.05 0.20 inf; +jaguar jaguar nom m s 0.91 0.61 0.65 0.41 +jaguarondi jaguarondi nom m s 0.01 0.00 0.01 0.00 +jaguars jaguar nom m p 0.91 0.61 0.27 0.20 +jaillît jaillir ver 5.79 43.24 0.00 0.07 sub:imp:3s; +jailli jaillir ver m s 5.79 43.24 0.69 5.47 par:pas; +jaillie jaillir ver f s 5.79 43.24 0.05 1.01 par:pas; +jaillies jaillir ver f p 5.79 43.24 0.00 0.68 par:pas; +jaillir jaillir ver 5.79 43.24 2.03 9.73 inf; +jaillira jaillir ver 5.79 43.24 0.34 0.27 ind:fut:3s; +jailliraient jaillir ver 5.79 43.24 0.00 0.07 cnd:pre:3p; +jaillirait jaillir ver 5.79 43.24 0.01 0.27 cnd:pre:3s; +jaillirent jaillir ver 5.79 43.24 0.06 1.42 ind:pas:3p; +jailliront jaillir ver 5.79 43.24 0.03 0.07 ind:fut:3p; +jaillis jaillir ver m p 5.79 43.24 0.15 1.28 ind:pre:1s;ind:pre:2s;par:pas; +jaillissaient jaillir ver 5.79 43.24 0.07 2.57 ind:imp:3p; +jaillissait jaillir ver 5.79 43.24 0.17 3.85 ind:imp:3s; +jaillissant jaillir ver 5.79 43.24 0.17 2.03 par:pre; +jaillissante jaillissant adj f s 0.02 1.69 0.01 0.74 +jaillissantes jaillissant adj f p 0.02 1.69 0.01 0.14 +jaillissants jaillissant adj m p 0.02 1.69 0.00 0.07 +jaillisse jaillir ver 5.79 43.24 0.08 0.41 sub:pre:3s; +jaillissement jaillissement nom m s 0.25 1.82 0.25 1.49 +jaillissements jaillissement nom m p 0.25 1.82 0.00 0.34 +jaillissent jaillir ver 5.79 43.24 0.53 3.99 ind:pre:3p; +jaillit jaillir ver 5.79 43.24 1.43 10.07 ind:pre:3s;ind:pas:3s; +jais jais nom m 0.43 6.82 0.43 6.82 +jaja jaja nom m s 0.20 0.61 0.20 0.61 +jalmince jalmince adj s 0.00 1.22 0.00 0.95 +jalminces jalmince adj p 0.00 1.22 0.00 0.27 +jalon jalon nom m s 0.17 2.70 0.03 1.08 +jalonnaient jalonner ver 0.12 5.00 0.01 1.08 ind:imp:3p; +jalonnais jalonner ver 0.12 5.00 0.00 0.07 ind:imp:1s; +jalonnait jalonner ver 0.12 5.00 0.00 0.20 ind:imp:3s; +jalonnant jalonner ver 0.12 5.00 0.02 0.27 par:pre; +jalonne jalonner ver 0.12 5.00 0.01 0.07 ind:pre:1s;ind:pre:3s; +jalonnent jalonner ver 0.12 5.00 0.04 1.28 ind:pre:3p; +jalonner jalonner ver 0.12 5.00 0.00 0.20 inf; +jalonné jalonner ver m s 0.12 5.00 0.02 0.61 par:pas; +jalonnée jalonner ver f s 0.12 5.00 0.02 0.95 par:pas; +jalonnés jalonner ver m p 0.12 5.00 0.00 0.27 par:pas; +jalons jalon nom m p 0.17 2.70 0.14 1.62 +jalousaient jalouser ver 0.93 2.09 0.02 0.20 ind:imp:3p; +jalousais jalouser ver 0.93 2.09 0.00 0.27 ind:imp:1s; +jalousait jalouser ver 0.93 2.09 0.01 0.54 ind:imp:3s; +jalousant jalouser ver 0.93 2.09 0.03 0.07 par:pre; +jalouse jalouse adj f s 14.80 9.05 14.20 7.84 +jalousement jalousement adv 0.95 2.50 0.95 2.50 +jalousent jalouser ver 0.93 2.09 0.14 0.20 ind:pre:3p; +jalouser jalouser ver 0.93 2.09 0.01 0.20 inf; +jalouserais jalouser ver 0.93 2.09 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +jalouses jalouse adj f p 14.80 9.05 0.60 1.22 +jalousie jalousie nom f s 13.67 25.20 13.20 22.09 +jalousies jalousie nom f p 13.67 25.20 0.47 3.11 +jalousé jalouser ver m s 0.93 2.09 0.04 0.14 par:pas; +jalousée jalouser ver f s 0.93 2.09 0.00 0.07 par:pas; +jaloux jaloux adj m 29.87 15.14 29.87 15.14 +jam_session jam_session nom f s 0.16 0.00 0.14 0.00 +jam_session jam_session nom f p 0.16 0.00 0.01 0.00 +jam jam nom f s 0.05 0.07 0.05 0.07 +jamaïcain jamaïcain adj m s 0.27 0.20 0.14 0.20 +jamaïcaine jamaïcain adj f s 0.27 0.20 0.10 0.00 +jamaïcains jamaïcain nom m p 0.19 0.00 0.09 0.00 +jamaïquain jamaïquain adj m s 0.05 0.07 0.05 0.00 +jamaïquains jamaïquain nom m p 0.04 0.00 0.02 0.00 +jamais_vu jamais_vu nom m 0.00 0.07 0.00 0.07 +jamais jamais adv_sup 1360.22 1122.97 1360.22 1122.97 +jambage jambage nom m s 0.02 1.08 0.01 0.20 +jambages jambage nom m p 0.02 1.08 0.01 0.88 +jambart jambart nom m s 0.00 0.07 0.00 0.07 +jambe jambe nom f s 113.80 220.95 46.31 49.93 +jambes jambe nom f p 113.80 220.95 67.49 171.01 +jambier jambier nom m s 0.01 0.00 0.01 0.00 +jambière jambière nom f s 0.26 0.61 0.02 0.00 +jambières jambière nom f p 0.26 0.61 0.23 0.61 +jambon jambon nom m s 9.43 13.24 8.94 11.01 +jambonneau jambonneau nom m s 0.04 1.01 0.00 0.68 +jambonneaux jambonneau nom m p 0.04 1.01 0.04 0.34 +jambons jambon nom m p 9.43 13.24 0.48 2.23 +jamboree jamboree nom m s 0.09 0.07 0.09 0.07 +janissaire janissaire nom m s 0.00 6.42 0.00 0.68 +janissaires janissaire nom m p 0.00 6.42 0.00 5.74 +jans jan nom m p 0.11 0.61 0.10 0.61 +jansénisme jansénisme nom m s 0.00 0.54 0.00 0.54 +janséniste janséniste adj s 0.00 0.95 0.00 0.88 +jansénistes janséniste nom p 0.00 0.74 0.00 0.27 +jante jante nom f s 1.22 0.68 0.22 0.47 +jantes jante nom f p 1.22 0.68 0.99 0.20 +janvier janvier nom m 8.34 30.61 8.34 30.61 +jap jap nom s 2.26 0.20 0.23 0.14 +japon japon nom m s 0.20 0.27 0.20 0.20 +japonais japonais nom m 13.23 12.64 10.99 11.49 +japonaise japonais adj f s 11.90 14.66 3.20 3.99 +japonaiserie japonaiserie nom f s 0.00 0.07 0.00 0.07 +japonaises japonais adj f p 11.90 14.66 1.00 1.49 +japonerie japonerie nom f s 0.00 0.14 0.00 0.07 +japoneries japonerie nom f p 0.00 0.14 0.00 0.07 +japonisants japonisant nom m p 0.00 0.07 0.00 0.07 +japoniser japoniser ver 0.01 0.00 0.01 0.00 inf; +japons japon nom m p 0.20 0.27 0.00 0.07 +jappa japper ver 0.48 2.64 0.00 0.20 ind:pas:3s; +jappaient japper ver 0.48 2.64 0.00 0.07 ind:imp:3p; +jappait japper ver 0.48 2.64 0.02 0.34 ind:imp:3s; +jappant japper ver 0.48 2.64 0.01 0.34 par:pre; +jappe japper ver 0.48 2.64 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jappement jappement nom m s 0.07 2.03 0.04 0.88 +jappements jappement nom m p 0.07 2.03 0.03 1.15 +jappent japper ver 0.48 2.64 0.00 0.14 ind:pre:3p; +japper japper ver 0.48 2.64 0.11 0.61 inf; +jappeur jappeur nom m s 0.01 0.07 0.01 0.07 +jappèrent japper ver 0.48 2.64 0.00 0.07 ind:pas:3p; +jappé japper ver m s 0.48 2.64 0.00 0.27 par:pas; +japs jap nom p 2.26 0.20 2.04 0.07 +jaquelin jaquelin nom m s 0.00 0.20 0.00 0.20 +jaquemart jaquemart nom m s 0.01 0.07 0.01 0.00 +jaquemarts jaquemart nom m p 0.01 0.07 0.00 0.07 +jaquet jaquet nom m s 0.00 0.14 0.00 0.14 +jaquette jaquette nom f s 1.34 2.91 1.30 2.57 +jaquettes jaquette nom f p 1.34 2.91 0.04 0.34 +jar jar nom m s 0.12 0.07 0.12 0.07 +jardin jardin nom m s 60.21 185.81 54.01 148.72 +jardinage jardinage nom m s 1.65 2.03 1.65 2.03 +jardinait jardiner ver 1.01 0.68 0.01 0.14 ind:imp:3s; +jardinant jardiner ver 1.01 0.68 0.02 0.07 par:pre; +jardine jardiner ver 1.01 0.68 0.62 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jardinent jardiner ver 1.01 0.68 0.01 0.07 ind:pre:3p; +jardiner jardiner ver 1.01 0.68 0.31 0.27 inf; +jardinerai jardiner ver 1.01 0.68 0.01 0.00 ind:fut:1s; +jardineras jardiner ver 1.01 0.68 0.00 0.07 ind:fut:2s; +jardinerie jardinerie nom f s 0.04 0.07 0.04 0.07 +jardinet jardinet nom m s 0.18 6.62 0.18 3.65 +jardinets jardinet nom m p 0.18 6.62 0.00 2.97 +jardinier jardinier nom m s 7.67 11.89 6.90 6.22 +jardiniers jardinier nom m p 7.67 11.89 0.39 4.05 +jardinière jardinier nom f s 7.67 11.89 0.38 1.35 +jardinières jardinière nom f p 0.01 0.20 0.01 0.00 +jardins jardin nom m p 60.21 185.81 6.20 37.09 +jardiné jardiner ver m s 1.01 0.68 0.03 0.00 par:pas; +jargon jargon nom m s 1.91 4.32 1.90 4.26 +jargonnant jargonner ver 0.00 0.47 0.00 0.14 par:pre; +jargonne jargonner ver 0.00 0.47 0.00 0.14 ind:pre:3s; +jargonnent jargonner ver 0.00 0.47 0.00 0.07 ind:pre:3p; +jargonner jargonner ver 0.00 0.47 0.00 0.07 inf; +jargonné jargonner ver m s 0.00 0.47 0.00 0.07 par:pas; +jargons jargon nom m p 1.91 4.32 0.01 0.07 +jarnicoton jarnicoton ono 0.00 0.07 0.00 0.07 +jarre jarre nom f s 1.25 3.92 1.17 1.49 +jarres jarre nom f p 1.25 3.92 0.08 2.43 +jarret jarret nom m s 1.31 3.92 1.16 1.28 +jarretelle jarretelle nom f s 0.14 1.82 0.02 0.47 +jarretelles jarretelle nom f p 0.14 1.82 0.12 1.35 +jarretière jarretière nom f s 1.65 0.47 1.28 0.27 +jarretières jarretière nom f p 1.65 0.47 0.38 0.20 +jarrets jarret nom m p 1.31 3.92 0.15 2.64 +jars jars nom m 0.09 0.74 0.09 0.74 +jas jas nom m 0.03 0.07 0.03 0.07 +jasaient jaser ver 2.72 1.62 0.01 0.07 ind:imp:3p; +jasait jaser ver 2.72 1.62 0.00 0.20 ind:imp:3s; +jase jaser ver 2.72 1.62 0.51 0.41 imp:pre:2s;ind:pre:3s; +jasent jaser ver 2.72 1.62 0.47 0.00 ind:pre:3p; +jaser jaser ver 2.72 1.62 1.56 0.81 inf; +jaserait jaser ver 2.72 1.62 0.16 0.00 cnd:pre:3s; +jases jaser ver 2.72 1.62 0.00 0.07 ind:pre:2s; +jaseur jaseur nom m s 0.00 0.20 0.00 0.20 +jasmin jasmin nom m s 1.57 5.14 1.57 4.19 +jasmins jasmin nom m p 1.57 5.14 0.00 0.95 +jaspaient jasper ver 0.11 0.27 0.00 0.07 ind:imp:3p; +jaspe jaspe nom m s 0.00 0.27 0.00 0.27 +jasper jasper ver 0.11 0.27 0.11 0.00 inf; +jaspin jaspin nom m s 0.00 0.07 0.00 0.07 +jaspinaient jaspiner ver 0.00 1.08 0.00 0.07 ind:imp:3p; +jaspinais jaspiner ver 0.00 1.08 0.00 0.07 ind:imp:1s; +jaspinait jaspiner ver 0.00 1.08 0.00 0.14 ind:imp:3s; +jaspine jaspiner ver 0.00 1.08 0.00 0.61 ind:pre:1s;ind:pre:3s; +jaspinent jaspiner ver 0.00 1.08 0.00 0.07 ind:pre:3p; +jaspiner jaspiner ver 0.00 1.08 0.00 0.07 inf; +jaspiné jaspiner ver m s 0.00 1.08 0.00 0.07 par:pas; +jaspé jasper ver m s 0.11 0.27 0.00 0.07 par:pas; +jaspées jasper ver f p 0.11 0.27 0.00 0.07 par:pas; +jaspés jasper ver m p 0.11 0.27 0.00 0.07 par:pas; +jasé jaser ver m s 2.72 1.62 0.01 0.07 par:pas; +jatte jatte nom f s 0.18 0.81 0.18 0.41 +jattes jatte nom f p 0.18 0.81 0.00 0.41 +jauge jauge nom f s 1.44 0.54 1.25 0.47 +jaugea jauger ver 1.17 4.66 0.00 0.68 ind:pas:3s; +jaugeait jauger ver 1.17 4.66 0.01 1.01 ind:imp:3s; +jaugeant jauger ver 1.17 4.66 0.00 0.34 par:pre; +jaugent jauger ver 1.17 4.66 0.06 0.14 ind:pre:3p; +jauger jauger ver 1.17 4.66 0.64 0.88 inf; +jauges jauge nom f p 1.44 0.54 0.18 0.07 +jaugez jauger ver 1.17 4.66 0.28 0.00 imp:pre:2p;ind:pre:2p; +jaugé jauger ver m s 1.17 4.66 0.00 0.41 par:pas; +jaugée jauger ver f s 1.17 4.66 0.01 0.27 par:pas; +jaugés jauger ver m p 1.17 4.66 0.01 0.07 par:pas; +jaunasse jaunasse adj s 0.00 0.34 0.00 0.14 +jaunasses jaunasse adj f p 0.00 0.34 0.00 0.20 +jaune_vert jaune_vert adj s 0.01 0.20 0.01 0.20 +jaune jaune adj s 21.09 109.86 15.48 75.81 +jaunes jaune adj p 21.09 109.86 5.62 34.05 +jaunets jaunet nom m p 0.00 0.20 0.00 0.20 +jauni jaunir ver m s 0.92 8.31 0.50 1.55 par:pas; +jaunie jaunir ver f s 0.92 8.31 0.02 1.62 par:pas; +jaunies jauni adj f p 0.28 8.38 0.26 1.96 +jaunir jaunir ver 0.92 8.31 0.21 0.68 inf; +jaunira jaunir ver 0.92 8.31 0.00 0.07 ind:fut:3s; +jauniront jaunir ver 0.92 8.31 0.00 0.07 ind:fut:3p; +jaunis jauni adj m p 0.28 8.38 0.02 2.43 +jaunissaient jaunir ver 0.92 8.31 0.00 0.47 ind:imp:3p; +jaunissait jaunir ver 0.92 8.31 0.00 1.08 ind:imp:3s; +jaunissant jaunissant adj m s 0.16 0.68 0.16 0.00 +jaunissante jaunissant adj f s 0.16 0.68 0.00 0.14 +jaunissantes jaunissant adj f p 0.16 0.68 0.00 0.41 +jaunissants jaunissant adj m p 0.16 0.68 0.00 0.14 +jaunisse jaunisse nom f s 0.51 0.41 0.51 0.34 +jaunissement jaunissement nom m s 0.01 0.07 0.01 0.07 +jaunissent jaunir ver 0.92 8.31 0.02 0.27 ind:pre:3p; +jaunisses jaunisse nom f p 0.51 0.41 0.00 0.07 +jaunit jaunir ver 0.92 8.31 0.14 0.54 ind:pre:3s;ind:pas:3s; +jaunâtre jaunâtre adj s 0.10 9.93 0.08 7.50 +jaunâtres jaunâtre adj p 0.10 9.93 0.02 2.43 +java java nom f s 0.46 2.30 0.44 1.89 +javanais javanais adj m s 0.07 0.27 0.06 0.20 +javanaise javanais adj f s 0.07 0.27 0.01 0.00 +javanaises javanais adj f p 0.07 0.27 0.00 0.07 +javas java nom f p 0.46 2.30 0.02 0.41 +javel javel nom f s 1.33 3.45 1.33 3.45 +javeline javeline nom f s 0.00 0.07 0.00 0.07 +javelle javelle nom f s 0.01 0.34 0.01 0.00 +javelles javelle nom f p 0.01 0.34 0.00 0.34 +javellise javelliser ver 0.02 0.34 0.00 0.07 ind:pre:3s; +javelliser javelliser ver 0.02 0.34 0.01 0.00 inf; +javellisé javelliser ver m s 0.02 0.34 0.00 0.07 par:pas; +javellisée javelliser ver f s 0.02 0.34 0.01 0.14 par:pas; +javellisées javelliser ver f p 0.02 0.34 0.00 0.07 par:pas; +javelot javelot nom m s 0.71 1.35 0.44 0.95 +javelots javelot nom m p 0.71 1.35 0.27 0.41 +javotte javotte nom f s 0.00 0.07 0.00 0.07 +jazz_band jazz_band nom m s 0.02 0.20 0.02 0.20 +jazz_rock jazz_rock nom m 0.14 0.07 0.14 0.07 +jazz jazz nom m 7.38 8.11 7.38 8.11 +jazzman jazzman nom m s 0.34 0.20 0.27 0.14 +jazzmen jazzman nom m p 0.34 0.20 0.07 0.07 +jazzy jazzy adj f 0.14 0.00 0.14 0.00 +je_m_en_fichiste je_m_en_fichiste adj f s 0.01 0.00 0.01 0.00 +je_m_en_foutisme je_m_en_foutisme nom m s 0.01 0.14 0.01 0.14 +je_m_en_foutiste je_m_en_foutiste adj s 0.01 0.00 0.01 0.00 +je_m_en_foutiste je_m_en_foutiste nom p 0.03 0.07 0.03 0.07 +je_ne_sais_quoi je_ne_sais_quoi nom m 0.34 0.47 0.34 0.47 +je je pro_per s 25983.20 10862.77 25983.20 10862.77 +jeûna jeûner ver 2.59 1.35 0.01 0.07 ind:pas:3s; +jeûnaient jeûner ver 2.59 1.35 0.00 0.14 ind:imp:3p; +jeûnait jeûner ver 2.59 1.35 0.00 0.07 ind:imp:3s; +jeûnant jeûner ver 2.59 1.35 0.03 0.07 par:pre; +jeûne jeûne nom m s 1.84 4.46 1.62 3.72 +jeûnent jeûner ver 2.59 1.35 0.17 0.07 ind:pre:3p; +jeûner jeûner ver 2.59 1.35 1.10 0.61 inf; +jeûnerai jeûner ver 2.59 1.35 0.02 0.07 ind:fut:1s; +jeûnerait jeûner ver 2.59 1.35 0.00 0.07 cnd:pre:3s; +jeûneras jeûner ver 2.59 1.35 0.01 0.07 ind:fut:2s; +jeûnerons jeûner ver 2.59 1.35 0.01 0.00 ind:fut:1p; +jeûnes jeûner ver 2.59 1.35 0.32 0.00 ind:pre:2s; +jeûneurs jeûneur nom m p 0.00 0.07 0.00 0.07 +jeûnez jeûner ver 2.59 1.35 0.16 0.00 imp:pre:2p;ind:pre:2p; +jeûné jeûner ver m s 2.59 1.35 0.33 0.07 par:pas; +jean_foutre jean_foutre nom m 0.41 1.28 0.41 1.28 +jean_le_blanc jean_le_blanc nom m 0.00 0.07 0.00 0.07 +jean jean nom m s 6.55 10.20 3.62 6.96 +jeanneton jeanneton nom f s 0.02 0.68 0.02 0.68 +jeannette jeannette nom f s 0.27 0.20 0.02 0.20 +jeannettes jeannette nom f p 0.27 0.20 0.25 0.00 +jeannot jeannot nom m s 0.00 0.07 0.00 0.07 +jeans jean nom m p 6.55 10.20 2.93 3.24 +jeep jeep nom f s 4.65 2.97 4.18 2.16 +jeeps jeep nom f p 4.65 2.97 0.47 0.81 +jellaba jellaba nom f s 0.00 0.14 0.00 0.14 +jenny jenny nom f s 0.12 9.32 0.12 9.32 +jerez jerez nom m 0.67 0.68 0.67 0.68 +jerk jerk nom m s 0.11 0.54 0.11 0.54 +jerrican jerrican nom m s 0.37 0.20 0.34 0.07 +jerricane jerricane nom m s 0.19 0.07 0.19 0.00 +jerricanes jerricane nom m p 0.19 0.07 0.00 0.07 +jerricans jerrican nom m p 0.37 0.20 0.04 0.14 +jerrycan jerrycan nom m s 0.42 0.68 0.25 0.27 +jerrycans jerrycan nom m p 0.42 0.68 0.18 0.41 +jersey jersey nom m s 0.51 1.69 0.51 1.62 +jerseys jersey nom m p 0.51 1.69 0.00 0.07 +jet_set jet_set nom m s 0.42 0.07 0.42 0.07 +jet_stream jet_stream nom m s 0.01 0.00 0.01 0.00 +jet_society jet_society nom f s 0.00 0.07 0.00 0.07 +jet jet nom m s 10.49 20.95 7.96 14.53 +jeta jeter ver 192.17 336.82 1.63 60.95 ind:pas:3s; +jetable jetable adj s 1.16 0.54 0.54 0.34 +jetables jetable adj p 1.16 0.54 0.62 0.20 +jetai jeter ver 192.17 336.82 0.26 6.89 ind:pas:1s; +jetaient jeter ver 192.17 336.82 0.96 9.26 ind:imp:3p; +jetais jeter ver 192.17 336.82 1.24 3.04 ind:imp:1s;ind:imp:2s; +jetait jeter ver 192.17 336.82 0.00 33.85 ind:imp:3s; +jetant jeter ver 192.17 336.82 1.53 22.30 par:pre; +jetas jeter ver 192.17 336.82 0.02 0.00 ind:pas:2s; +jeter jeter ver 192.17 336.82 59.27 61.89 inf;; +jeteur jeteur nom m s 0.23 0.47 0.04 0.14 +jeteurs jeteur nom m p 0.23 0.47 0.17 0.14 +jeteuse jeteur nom f s 0.23 0.47 0.00 0.14 +jeteuses jeteur nom f p 0.23 0.47 0.00 0.07 +jetez jeter ver 192.17 336.82 17.07 1.69 imp:pre:2p;ind:pre:2p; +jetiez jeter ver 192.17 336.82 0.29 0.27 ind:imp:2p; +jetions jeter ver 192.17 336.82 0.34 1.89 ind:imp:1p; +jetâmes jeter ver 192.17 336.82 0.01 0.20 ind:pas:1p; +jeton jeton nom m s 10.27 10.27 2.88 4.32 +jetons jeton nom m p 10.27 10.27 7.39 5.95 +jetât jeter ver 192.17 336.82 0.00 0.27 sub:imp:3s; +jets jet nom m p 10.49 20.95 2.53 6.42 +jette jeter ver 192.17 336.82 43.48 45.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +jettent jeter ver 192.17 336.82 3.44 6.89 ind:pre:3p;sub:pre:3p; +jettera jeter ver 192.17 336.82 2.10 1.01 ind:fut:3s; +jetterai jeter ver 192.17 336.82 2.38 0.61 ind:fut:1s; +jetteraient jeter ver 192.17 336.82 0.16 0.95 cnd:pre:3p; +jetterais jeter ver 192.17 336.82 1.02 0.34 cnd:pre:1s;cnd:pre:2s; +jetterait jeter ver 192.17 336.82 0.39 2.50 cnd:pre:3s; +jetteras jeter ver 192.17 336.82 0.31 0.14 ind:fut:2s; +jetterez jeter ver 192.17 336.82 0.09 0.20 ind:fut:2p; +jetteriez jeter ver 192.17 336.82 0.19 0.07 cnd:pre:2p; +jetterions jeter ver 192.17 336.82 0.00 0.14 cnd:pre:1p; +jetterons jeter ver 192.17 336.82 0.41 0.07 ind:fut:1p; +jetteront jeter ver 192.17 336.82 0.59 0.68 ind:fut:3p; +jettes jeter ver 192.17 336.82 4.77 0.47 ind:pre:2s;sub:pre:2s; +jetèrent jeter ver 192.17 336.82 0.29 3.72 ind:pas:3p; +jeté jeter ver m s 192.17 336.82 33.21 45.07 par:pas; +jetée jeter ver f s 192.17 336.82 9.01 13.38 par:pas; +jetées jeter ver f p 192.17 336.82 1.11 3.38 par:pas; +jetés jeter ver m p 192.17 336.82 3.73 8.72 par:pas; +jeu_concours jeu_concours nom m 0.10 0.14 0.10 0.14 +jeu jeu nom m s 190.44 173.31 156.79 130.68 +jeudi jeudi nom m s 26.09 23.51 24.58 21.01 +jeudis jeudi nom m p 26.09 23.51 1.51 2.50 +jeune_homme jeune_homme adj s 0.10 0.00 0.10 0.00 +jeune jeune adj s 297.01 569.19 234.90 432.64 +jeunement jeunement adv 0.00 0.27 0.00 0.27 +jeunes jeune adj p 297.01 569.19 62.12 136.55 +jeunesse jeunesse nom f s 28.71 85.14 27.21 83.24 +jeunesses jeunesse nom f p 28.71 85.14 1.50 1.89 +jeunet jeunet nom m s 0.11 0.00 0.11 0.00 +jeunets jeunet adj m p 0.13 0.68 0.00 0.07 +jeunette jeunette nom f s 0.17 0.95 0.12 0.61 +jeunettes jeunette nom f p 0.17 0.95 0.04 0.34 +jeunot jeunot nom m s 1.56 3.11 0.94 1.22 +jeunots jeunot nom m p 1.56 3.11 0.62 1.89 +jeux jeu nom m p 190.44 173.31 33.65 42.64 +jigger jigger nom m s 0.04 0.00 0.04 0.00 +jihad jihad nom s 0.28 0.00 0.28 0.00 +jingle jingle nom m s 1.14 0.07 0.88 0.07 +jingles jingle nom m p 1.14 0.07 0.26 0.00 +jinjin jinjin nom m s 0.00 0.27 0.00 0.27 +jiu_jitsu jiu_jitsu nom m 0.35 0.14 0.35 0.14 +jivaro jivaro adj m s 0.00 0.14 0.00 0.14 +jà jà adv 1.02 0.41 1.02 0.41 +joaillerie joaillerie nom f s 0.07 0.47 0.07 0.47 +joaillier joaillier nom m s 0.39 0.68 0.33 0.47 +joailliers joaillier nom m p 0.39 0.68 0.06 0.20 +job job nom m s 28.62 2.77 27.24 2.43 +jobard jobard nom m s 0.46 0.47 0.41 0.14 +jobardes jobard adj f p 0.05 0.47 0.00 0.07 +jobardise jobardise nom f s 0.00 0.20 0.00 0.20 +jobards jobard nom m p 0.46 0.47 0.06 0.34 +jobs job nom m p 28.62 2.77 1.38 0.34 +jociste jociste nom s 0.00 0.41 0.00 0.34 +jocistes jociste nom p 0.00 0.41 0.00 0.07 +jockey jockey nom s 1.69 8.24 1.37 6.82 +jockeys jockey nom p 1.69 8.24 0.33 1.42 +jocko jocko adj m s 0.17 0.00 0.17 0.00 +jocrisse jocrisse nom m s 0.02 0.27 0.00 0.20 +jocrisses jocrisse nom m p 0.02 0.27 0.02 0.07 +jodhpurs jodhpur nom m p 0.04 0.07 0.04 0.07 +jodler jodler ver 0.23 0.00 0.23 0.00 inf; +jogger jogger nom m s 0.34 0.07 0.25 0.07 +joggers jogger nom m p 0.34 0.07 0.09 0.00 +joggeur joggeur nom m s 0.26 0.00 0.07 0.00 +joggeurs joggeur nom m p 0.26 0.00 0.16 0.00 +joggeuse joggeur nom f s 0.26 0.00 0.03 0.00 +jogging jogging nom m s 2.21 1.28 2.20 1.22 +joggings jogging nom m p 2.21 1.28 0.01 0.07 +johannisberg johannisberg nom m s 0.00 0.07 0.00 0.07 +joice joice adj s 0.01 0.95 0.01 0.81 +joices joice adj p 0.01 0.95 0.00 0.14 +joie joie nom f s 75.09 150.20 71.07 134.12 +joies joie nom f p 75.09 150.20 4.03 16.08 +joignîmes joindre ver 46.37 32.70 0.00 0.07 ind:pas:1p; +joignable joignable adj m s 0.60 0.07 0.60 0.07 +joignaient joindre ver 46.37 32.70 0.10 1.28 ind:imp:3p; +joignais joindre ver 46.37 32.70 0.07 0.20 ind:imp:1s;ind:imp:2s; +joignait joindre ver 46.37 32.70 0.22 1.89 ind:imp:3s; +joignant joindre ver 46.37 32.70 0.45 2.03 par:pre; +joigne joindre ver 46.37 32.70 0.72 0.20 sub:pre:1s;sub:pre:3s; +joignent joindre ver 46.37 32.70 0.69 0.61 ind:pre:3p; +joignes joindre ver 46.37 32.70 0.19 0.00 sub:pre:2s; +joignez joindre ver 46.37 32.70 2.71 0.20 imp:pre:2p;ind:pre:2p; +joigniez joindre ver 46.37 32.70 0.28 0.00 ind:imp:2p; +joignions joindre ver 46.37 32.70 0.15 0.07 ind:imp:1p; +joignirent joindre ver 46.37 32.70 0.01 0.68 ind:pas:3p; +joignis joindre ver 46.37 32.70 0.00 0.27 ind:pas:1s; +joignissent joindre ver 46.37 32.70 0.00 0.07 sub:imp:3p; +joignit joindre ver 46.37 32.70 0.07 2.77 ind:pas:3s; +joignons joindre ver 46.37 32.70 0.46 0.14 imp:pre:1p;ind:pre:1p; +joindra joindre ver 46.37 32.70 0.38 0.14 ind:fut:3s; +joindrai joindre ver 46.37 32.70 0.11 0.00 ind:fut:1s; +joindraient joindre ver 46.37 32.70 0.01 0.14 cnd:pre:3p; +joindrais joindre ver 46.37 32.70 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +joindrait joindre ver 46.37 32.70 0.02 0.07 cnd:pre:3s; +joindras joindre ver 46.37 32.70 0.07 0.00 ind:fut:2s; +joindre joindre ver 46.37 32.70 32.91 14.19 inf;; +joindrez joindre ver 46.37 32.70 0.26 0.00 ind:fut:2p; +joindriez joindre ver 46.37 32.70 0.12 0.00 cnd:pre:2p; +joindrons joindre ver 46.37 32.70 0.01 0.00 ind:fut:1p; +joindront joindre ver 46.37 32.70 0.37 0.07 ind:fut:3p; +joins joindre ver 46.37 32.70 3.00 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +joint_venture joint_venture nom f s 0.16 0.00 0.16 0.00 +joint joint nom m s 8.38 6.62 5.78 4.53 +jointe joint adj f s 2.80 15.00 0.43 2.09 +jointes joint adj f p 2.80 15.00 0.60 7.64 +jointif jointif adj m s 0.02 0.27 0.00 0.14 +jointifs jointif adj m p 0.02 0.27 0.01 0.07 +jointives jointif adj f p 0.02 0.27 0.01 0.07 +jointoyaient jointoyer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +joints joint nom m p 8.38 6.62 2.61 2.09 +jointée jointé adj f s 0.00 0.07 0.00 0.07 +jointure jointure nom f s 0.52 4.05 0.22 1.28 +jointures jointure nom f p 0.52 4.05 0.29 2.77 +jointés jointer ver m p 0.01 0.07 0.00 0.07 par:pas; +jojo jojo adj s 1.40 1.15 1.37 1.08 +jojoba jojoba nom m s 0.03 0.00 0.03 0.00 +jojos jojo adj m p 1.40 1.15 0.03 0.07 +jokari jokari nom m s 0.00 0.07 0.00 0.07 +joker joker nom m s 3.54 0.14 3.44 0.14 +jokers joker nom m p 3.54 0.14 0.10 0.00 +joli_coeur joli_coeur adj m s 0.01 0.00 0.01 0.00 +joli_joli joli_joli adj m s 0.26 0.41 0.26 0.41 +joli joli adj m s 226.45 120.00 94.55 44.53 +jolibois jolibois nom m 0.00 0.14 0.00 0.14 +jolie joli adj f s 226.45 120.00 101.54 51.76 +jolies joli adj f p 226.45 120.00 20.99 15.68 +joliesse joliesse nom f s 0.03 0.54 0.02 0.41 +joliesses joliesse nom f p 0.03 0.54 0.01 0.14 +joliet joliet adj m s 0.01 0.14 0.01 0.00 +joliette joliet adj f s 0.01 0.14 0.00 0.14 +joliment joliment adv 2.19 5.41 2.19 5.41 +jolis joli adj m p 226.45 120.00 9.37 8.04 +jonc jonc nom m s 0.24 7.09 0.19 1.89 +joncaille joncaille nom f s 0.00 0.41 0.00 0.41 +jonchaie jonchaie nom f s 0.00 0.20 0.00 0.14 +jonchaient joncher ver 0.67 9.39 0.01 2.30 ind:imp:3p; +jonchaies jonchaie nom f p 0.00 0.20 0.00 0.07 +jonchait joncher ver 0.67 9.39 0.01 0.07 ind:imp:3s; +jonchant joncher ver 0.67 9.39 0.01 0.95 par:pre; +jonchent joncher ver 0.67 9.39 0.20 1.01 ind:pre:3p; +joncher joncher ver 0.67 9.39 0.11 0.07 inf; +joncheraies joncheraie nom f p 0.00 0.07 0.00 0.07 +jonchet jonchet nom m s 0.00 0.95 0.00 0.27 +jonchets jonchet nom m p 0.00 0.95 0.00 0.68 +jonchère jonchère nom f s 0.00 0.14 0.00 0.14 +jonché joncher ver m s 0.67 9.39 0.09 2.77 par:pas; +jonchée joncher ver f s 0.67 9.39 0.22 1.28 par:pas; +jonchées joncher ver f p 0.67 9.39 0.02 0.41 par:pas; +jonchés joncher ver m p 0.67 9.39 0.01 0.54 par:pas; +joncs jonc nom m p 0.24 7.09 0.05 5.20 +jonction jonction nom f s 0.60 1.96 0.50 1.89 +jonctions jonction nom f p 0.60 1.96 0.10 0.07 +jonglage jonglage nom m s 0.03 0.00 0.03 0.00 +jonglaient jongler ver 2.13 3.85 0.00 0.14 ind:imp:3p; +jonglais jongler ver 2.13 3.85 0.04 0.20 ind:imp:1s;ind:imp:2s; +jonglait jongler ver 2.13 3.85 0.04 0.47 ind:imp:3s; +jonglant jongler ver 2.13 3.85 0.05 0.61 par:pre; +jongle jongler ver 2.13 3.85 0.54 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jonglent jongler ver 2.13 3.85 0.03 0.07 ind:pre:3p; +jongler jongler ver 2.13 3.85 0.83 1.82 inf; +jonglera jongler ver 2.13 3.85 0.03 0.00 ind:fut:3s; +jonglerie jonglerie nom f s 0.02 0.20 0.02 0.14 +jongleries jonglerie nom f p 0.02 0.20 0.00 0.07 +jongles jongler ver 2.13 3.85 0.20 0.00 ind:pre:2s; +jongleur jongleur nom m s 0.58 2.23 0.46 0.74 +jongleurs jongleur nom m p 0.58 2.23 0.12 1.22 +jongleuse jongleur nom f s 0.58 2.23 0.00 0.14 +jongleuses jongleur nom f p 0.58 2.23 0.00 0.14 +jonglez jongler ver 2.13 3.85 0.20 0.00 imp:pre:2p;ind:pre:2p; +jonglé jongler ver m s 2.13 3.85 0.16 0.14 par:pas; +jonkheer jonkheer nom m s 0.34 0.00 0.34 0.00 +jonque jonque nom f s 0.34 1.42 0.33 0.74 +jonques jonque nom f p 0.34 1.42 0.02 0.68 +jonquille jonquille nom f s 0.39 0.81 0.04 0.07 +jonquilles jonquille nom f p 0.39 0.81 0.35 0.74 +jordanienne jordanien adj f s 0.01 0.07 0.01 0.00 +jordaniens jordanien nom m p 0.03 0.00 0.03 0.00 +jordonner jordonner ver 0.00 0.07 0.00 0.07 inf; +joseph joseph nom m s 0.17 1.08 0.17 1.08 +joua jouer ver 570.12 337.23 0.80 5.61 ind:pas:3s; +jouable jouable adj m s 0.46 0.07 0.46 0.07 +jouai jouer ver 570.12 337.23 0.13 1.01 ind:pas:1s; +jouaient jouer ver 570.12 337.23 3.86 20.00 ind:imp:3p; +jouais jouer ver 570.12 337.23 12.89 5.95 ind:imp:1s;ind:imp:2s; +jouait jouer ver 570.12 337.23 21.59 49.93 ind:imp:3s; +jouant jouer ver 570.12 337.23 5.66 19.19 par:pre; +jouasse jouasse adj m s 0.02 1.22 0.02 1.01 +jouasses jouasse adj p 0.02 1.22 0.00 0.20 +joubarbe joubarbe nom f s 0.00 0.07 0.00 0.07 +joue jouer ver 570.12 337.23 122.88 40.47 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +jouent jouer ver 570.12 337.23 16.41 14.59 ind:pre:3p; +jouer jouer ver 570.12 337.23 225.84 121.82 inf;; +jouera jouer ver 570.12 337.23 5.56 1.89 ind:fut:3s; +jouerai jouer ver 570.12 337.23 4.22 0.41 ind:fut:1s; +joueraient jouer ver 570.12 337.23 0.24 0.41 cnd:pre:3p; +jouerais jouer ver 570.12 337.23 1.54 0.47 cnd:pre:1s;cnd:pre:2s; +jouerait jouer ver 570.12 337.23 1.24 3.04 cnd:pre:3s; +joueras jouer ver 570.12 337.23 2.30 0.47 ind:fut:2s; +jouerez jouer ver 570.12 337.23 0.98 0.34 ind:fut:2p; +joueriez jouer ver 570.12 337.23 0.22 0.07 cnd:pre:2p; +jouerions jouer ver 570.12 337.23 0.01 0.07 cnd:pre:1p; +jouerons jouer ver 570.12 337.23 0.54 0.41 ind:fut:1p; +joueront jouer ver 570.12 337.23 0.74 0.47 ind:fut:3p; +joues jouer ver 570.12 337.23 33.70 2.50 ind:pre:2s;sub:pre:2s; +jouet jouet nom m s 25.50 21.01 11.82 7.03 +jouets jouet nom m p 25.50 21.01 13.68 13.99 +joueur joueur nom m s 28.32 19.86 17.22 9.05 +joueurs joueur nom m p 28.32 19.86 9.95 9.53 +joueuse joueur nom f s 28.32 19.86 1.15 0.74 +joueuses joueuse nom f p 0.14 0.00 0.14 0.00 +jouez jouer ver 570.12 337.23 24.66 3.18 imp:pre:2p;ind:pre:2p; +joufflu joufflu nom m s 0.47 0.20 0.46 0.20 +joufflue joufflu adj f s 0.31 2.36 0.16 0.34 +joufflues joufflu adj f p 0.31 2.36 0.01 0.20 +joufflus joufflu adj m p 0.31 2.36 0.02 0.41 +joug joug nom m s 2.48 2.50 2.47 2.36 +jougs joug nom m p 2.48 2.50 0.01 0.14 +joui jouir ver m s 22.06 39.19 3.33 3.65 par:pas; +jouiez jouer ver 570.12 337.23 2.11 0.41 ind:imp:2p; +jouions jouer ver 570.12 337.23 1.44 1.42 ind:imp:1p; +jouir jouir ver 22.06 39.19 10.42 15.68 inf; +jouira jouir ver 22.06 39.19 0.32 0.34 ind:fut:3s; +jouirai jouir ver 22.06 39.19 0.02 0.07 ind:fut:1s; +jouiraient jouir ver 22.06 39.19 0.01 0.07 cnd:pre:3p; +jouirait jouir ver 22.06 39.19 0.00 0.14 cnd:pre:3s; +jouiras jouir ver 22.06 39.19 0.07 0.07 ind:fut:2s; +jouirent jouir ver 22.06 39.19 0.00 0.14 ind:pas:3p; +jouirions jouir ver 22.06 39.19 0.00 0.07 cnd:pre:1p; +jouirons jouir ver 22.06 39.19 0.02 0.07 ind:fut:1p; +jouis jouir ver m p 22.06 39.19 2.65 1.76 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +jouissaient jouir ver 22.06 39.19 0.14 1.28 ind:imp:3p; +jouissais jouir ver 22.06 39.19 0.21 1.49 ind:imp:1s;ind:imp:2s; +jouissait jouir ver 22.06 39.19 0.33 5.61 ind:imp:3s; +jouissance jouissance nom f s 1.96 14.19 1.82 12.36 +jouissances jouissance nom f p 1.96 14.19 0.14 1.82 +jouissant jouir ver 22.06 39.19 0.05 1.42 par:pre; +jouissants jouissant adj m p 0.00 0.07 0.00 0.07 +jouisse jouir ver 22.06 39.19 0.33 0.54 sub:pre:1s;sub:pre:3s; +jouissent jouir ver 22.06 39.19 0.69 1.22 ind:pre:3p; +jouisses jouir ver 22.06 39.19 0.34 0.07 sub:pre:2s; +jouisseur jouisseur adj m s 0.01 0.68 0.01 0.41 +jouisseurs jouisseur nom m p 0.01 0.81 0.00 0.34 +jouisseuse jouisseur nom f s 0.01 0.81 0.01 0.07 +jouissez jouir ver 22.06 39.19 0.28 0.41 imp:pre:2p;ind:pre:2p; +jouissif jouissif adj m s 0.16 1.15 0.14 0.74 +jouissifs jouissif adj m p 0.16 1.15 0.00 0.14 +jouissions jouir ver 22.06 39.19 0.04 0.41 ind:imp:1p; +jouissive jouissif adj f s 0.16 1.15 0.01 0.14 +jouissives jouissif adj f p 0.16 1.15 0.00 0.14 +jouissons jouir ver 22.06 39.19 0.82 0.41 imp:pre:1p;ind:pre:1p; +jouit jouir ver 22.06 39.19 1.99 4.32 ind:pre:3s;ind:pas:3s; +joujou joujou nom m s 1.63 1.49 1.63 1.49 +joujoux joujoux nom m p 0.82 0.88 0.82 0.88 +joules joule nom m p 0.22 0.07 0.22 0.07 +jouâmes jouer ver 570.12 337.23 0.01 0.34 ind:pas:1p; +jouons jouer ver 570.12 337.23 7.81 2.57 imp:pre:1p;ind:pre:1p; +jouât jouer ver 570.12 337.23 0.00 0.81 sub:imp:3s; +jour jour nom m s 1061.92 1341.76 635.22 826.35 +journal journal nom m s 110.80 197.70 72.50 124.32 +journaleuse journaleux nom f s 0.12 0.74 0.00 0.14 +journaleux journaleux nom m 0.12 0.74 0.12 0.61 +journalier journalier adj m s 1.02 2.16 0.52 0.88 +journaliers journalier adj m p 1.02 2.16 0.18 0.20 +journalisme journalisme nom m s 3.25 3.51 3.25 3.51 +journaliste journaliste nom s 35.29 30.34 24.26 15.95 +journalistes journaliste nom p 35.29 30.34 11.03 14.39 +journalistique journalistique adj s 0.63 0.68 0.57 0.34 +journalistiques journalistique adj p 0.63 0.68 0.07 0.34 +journalière journalier adj f s 1.02 2.16 0.30 0.68 +journalières journalière nom f p 0.10 0.00 0.10 0.00 +journaux journal nom m p 110.80 197.70 38.30 73.38 +journellement journellement adv 0.15 0.88 0.15 0.88 +journée journée nom f s 174.89 179.39 165.35 140.74 +journées journée nom f p 174.89 179.39 9.54 38.65 +jours jour nom m p 1061.92 1341.76 426.70 515.41 +joute joute nom f s 1.25 2.03 0.97 1.08 +jouter jouter ver 0.10 0.00 0.06 0.00 inf; +joutes joute nom f p 1.25 2.03 0.28 0.95 +jouteur jouteur nom m s 0.00 0.20 0.00 0.07 +jouteurs jouteur nom m p 0.00 0.20 0.00 0.07 +jouteuse jouteur nom f s 0.00 0.20 0.00 0.07 +joutez jouter ver 0.10 0.00 0.03 0.00 imp:pre:2p;ind:pre:2p; +jouèrent jouer ver 570.12 337.23 0.18 1.89 ind:pas:3p; +jouté jouter ver m s 0.10 0.00 0.01 0.00 par:pas; +joué jouer ver m s 570.12 337.23 69.83 33.58 par:pas;par:pas;par:pas; +jouée jouer ver f s 570.12 337.23 2.01 2.91 par:pas; +jouées jouer ver f p 570.12 337.23 0.27 0.47 par:pas; +joués jouer ver m p 570.12 337.23 0.45 0.54 par:pas; +jouvence jouvence nom f s 0.81 1.35 0.81 1.35 +jouvenceau jouvenceau nom m s 0.28 0.74 0.08 0.27 +jouvenceaux jouvenceau nom m p 0.28 0.74 0.02 0.14 +jouvencelle jouvenceau nom f s 0.28 0.74 0.18 0.14 +jouvencelles jouvenceau nom f p 0.28 0.74 0.00 0.20 +jouxtaient jouxter ver 0.07 2.23 0.00 0.20 ind:imp:3p; +jouxtait jouxter ver 0.07 2.23 0.02 1.28 ind:imp:3s; +jouxtant jouxter ver 0.07 2.23 0.00 0.68 par:pre; +jouxte jouxte pre 0.05 0.07 0.05 0.07 +jovial jovial adj m s 0.61 6.22 0.48 4.46 +joviale jovial adj f s 0.61 6.22 0.12 1.49 +jovialement jovialement adv 0.00 0.54 0.00 0.54 +joviales jovial adj f p 0.61 6.22 0.00 0.14 +jovialité jovialité nom f s 0.04 1.28 0.04 1.28 +joviaux jovial adj m p 0.61 6.22 0.01 0.14 +joyau joyau nom m s 3.60 3.24 2.67 1.96 +joyaux joyau nom m p 3.60 3.24 0.93 1.28 +joyciennes joycien adj f p 0.00 0.07 0.00 0.07 +joyeuse joyeux adj f s 39.89 45.61 6.07 14.86 +joyeusement joyeusement adv 1.14 9.39 1.14 9.39 +joyeuses joyeux adj f p 39.89 45.61 2.01 4.05 +joyeuseté joyeuseté nom f s 0.01 0.34 0.00 0.20 +joyeusetés joyeuseté nom f p 0.01 0.34 0.01 0.14 +joyeux joyeux adj m 39.89 45.61 31.81 26.69 +joystick joystick nom m s 0.11 0.00 0.11 0.00 +jèze jèze adj m s 0.00 0.07 0.00 0.07 +jèzes jèze nom p 0.00 0.07 0.00 0.07 +juan juan nom m s 0.01 0.20 0.01 0.20 +jubila jubiler ver 1.20 5.07 0.01 0.34 ind:pas:3s; +jubilai jubiler ver 1.20 5.07 0.00 0.14 ind:pas:1s; +jubilaient jubiler ver 1.20 5.07 0.00 0.07 ind:imp:3p; +jubilaire jubilaire adj s 0.40 0.07 0.40 0.07 +jubilais jubiler ver 1.20 5.07 0.04 0.41 ind:imp:1s;ind:imp:2s; +jubilait jubiler ver 1.20 5.07 0.05 1.76 ind:imp:3s; +jubilant jubilant adj m s 0.02 0.88 0.02 0.14 +jubilante jubilant adj f s 0.02 0.88 0.00 0.41 +jubilantes jubilant adj f p 0.02 0.88 0.00 0.07 +jubilants jubilant adj m p 0.02 0.88 0.00 0.27 +jubilation jubilation nom f s 0.32 6.55 0.32 6.42 +jubilations jubilation nom f p 0.32 6.55 0.00 0.14 +jubilatoire jubilatoire adj s 0.02 0.20 0.02 0.14 +jubilatoires jubilatoire adj m p 0.02 0.20 0.00 0.07 +jubile jubiler ver 1.20 5.07 0.38 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jubilent jubiler ver 1.20 5.07 0.03 0.07 ind:pre:3p; +jubiler jubiler ver 1.20 5.07 0.40 0.61 inf; +jubilera jubiler ver 1.20 5.07 0.00 0.07 ind:fut:3s; +jubileraient jubiler ver 1.20 5.07 0.00 0.07 cnd:pre:3p; +jubiles jubiler ver 1.20 5.07 0.10 0.07 ind:pre:2s; +jubilèrent jubiler ver 1.20 5.07 0.00 0.07 ind:pas:3p; +jubilé jubilé nom m s 0.33 0.41 0.33 0.41 +jubilée jubiler ver f s 1.20 5.07 0.08 0.00 par:pas; +jubé jubé nom m s 0.00 0.20 0.00 0.20 +jucha jucher ver 0.24 10.61 0.00 0.47 ind:pas:3s; +juchai jucher ver 0.24 10.61 0.00 0.07 ind:pas:1s; +juchaient jucher ver 0.24 10.61 0.00 0.14 ind:imp:3p; +juchais jucher ver 0.24 10.61 0.00 0.14 ind:imp:1s; +juchait jucher ver 0.24 10.61 0.00 0.41 ind:imp:3s; +juchant jucher ver 0.24 10.61 0.00 0.14 par:pre; +juche jucher ver 0.24 10.61 0.00 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +juchent jucher ver 0.24 10.61 0.00 0.20 ind:pre:3p; +jucher jucher ver 0.24 10.61 0.00 0.54 inf; +jucheront jucher ver 0.24 10.61 0.00 0.07 ind:fut:3p; +juchions jucher ver 0.24 10.61 0.00 0.07 ind:imp:1p; +juché jucher ver m s 0.24 10.61 0.17 5.00 par:pas; +juchée jucher ver f s 0.24 10.61 0.04 0.74 par:pas; +juchées jucher ver f p 0.24 10.61 0.00 0.74 par:pas; +juchés jucher ver m p 0.24 10.61 0.03 1.55 par:pas; +judaïcité judaïcité nom f s 0.01 0.00 0.01 0.00 +judaïque judaïque adj f s 0.06 0.14 0.06 0.07 +judaïques judaïque adj m p 0.06 0.14 0.00 0.07 +judaïsant judaïsant nom m s 0.00 0.07 0.00 0.07 +judaïser judaïser ver 0.00 0.14 0.00 0.07 inf; +judaïsme judaïsme nom m s 0.51 1.15 0.51 1.15 +judaïsées judaïser ver f p 0.00 0.14 0.00 0.07 par:pas; +judaïté judaïté nom f s 0.00 0.07 0.00 0.07 +judas judas nom m 1.28 1.76 1.28 1.76 +judiciaire judiciaire adj s 10.80 5.61 9.29 4.26 +judiciaires judiciaire adj p 10.80 5.61 1.51 1.35 +judicieuse judicieux adj f s 2.36 2.16 0.51 0.74 +judicieusement judicieusement adv 0.17 0.61 0.17 0.61 +judicieuses judicieux adj f p 2.36 2.16 0.13 0.07 +judicieux judicieux adj m 2.36 2.16 1.72 1.35 +judo judo nom m s 0.90 1.22 0.90 1.22 +judoka judoka nom s 0.21 0.20 0.21 0.20 +judéen judéen adj m s 0.07 0.00 0.07 0.00 +judéenne judéenne nom f s 0.01 0.14 0.01 0.14 +judéité judéité nom f s 0.02 0.00 0.02 0.00 +judéo_christianisme judéo_christianisme nom m s 0.01 0.00 0.01 0.00 +judéo_chrétien judéo_chrétien adj f s 0.06 0.20 0.04 0.07 +judéo_chrétien judéo_chrétien adj f p 0.06 0.20 0.01 0.07 +judéo_chrétien judéo_chrétien adj m p 0.06 0.20 0.00 0.07 +judéo judéo adv 0.01 0.20 0.01 0.20 +juge juge nom m s 66.45 44.46 56.40 29.80 +jugea juger ver 56.12 96.96 0.42 5.34 ind:pas:3s; +jugeai juger ver 56.12 96.96 0.01 1.49 ind:pas:1s; +jugeaient juger ver 56.12 96.96 0.05 2.70 ind:imp:3p; +jugeais juger ver 56.12 96.96 0.34 2.91 ind:imp:1s;ind:imp:2s; +jugeait juger ver 56.12 96.96 0.40 12.64 ind:imp:3s; +jugeant juger ver 56.12 96.96 0.24 3.72 par:pre; +jugement jugement nom m s 21.43 29.26 19.92 24.12 +jugements jugement nom m p 21.43 29.26 1.51 5.14 +jugent juger ver 56.12 96.96 1.06 1.55 ind:pre:3p; +jugeâmes juger ver 56.12 96.96 0.00 0.14 ind:pas:1p; +jugeons juger ver 56.12 96.96 0.98 0.41 imp:pre:1p;ind:pre:1p; +jugeât juger ver 56.12 96.96 0.00 0.54 sub:imp:3s; +jugeote jugeote nom f s 1.07 1.01 1.07 1.01 +juger juger ver 56.12 96.96 18.06 28.65 ind:pre:2p;inf; +jugera juger ver 56.12 96.96 1.42 1.49 ind:fut:3s; +jugerai juger ver 56.12 96.96 0.72 0.00 ind:fut:1s; +jugeraient juger ver 56.12 96.96 0.05 0.07 cnd:pre:3p; +jugerais juger ver 56.12 96.96 0.09 0.07 cnd:pre:1s; +jugerait juger ver 56.12 96.96 0.08 0.81 cnd:pre:3s; +jugeras juger ver 56.12 96.96 0.39 0.27 ind:fut:2s; +jugerez juger ver 56.12 96.96 0.81 0.88 ind:fut:2p; +jugeriez juger ver 56.12 96.96 0.05 0.41 cnd:pre:2p; +jugerons juger ver 56.12 96.96 0.22 0.07 ind:fut:1p; +jugeront juger ver 56.12 96.96 0.23 0.54 ind:fut:3p; +juges juge nom m p 66.45 44.46 10.06 14.66 +jugeur jugeur nom m s 0.01 0.00 0.01 0.00 +jugez juger ver 56.12 96.96 4.25 1.62 imp:pre:2p;ind:pre:2p; +jugiez juger ver 56.12 96.96 0.13 0.34 ind:imp:2p; +jugions juger ver 56.12 96.96 0.02 0.54 ind:imp:1p; +jugèrent juger ver 56.12 96.96 0.03 0.68 ind:pas:3p; +jugé juger ver m s 56.12 96.96 9.18 11.62 par:pas; +jugée juger ver f s 56.12 96.96 2.01 2.70 par:pas; +jugées juger ver f p 56.12 96.96 0.11 0.95 par:pas; +jugula juguler ver 0.39 0.61 0.00 0.14 ind:pas:3s; +jugulaire jugulaire nom f s 0.60 1.96 0.53 1.89 +jugulaires jugulaire nom f p 0.60 1.96 0.07 0.07 +jugulant juguler ver 0.39 0.61 0.00 0.07 par:pre; +jugule juguler ver 0.39 0.61 0.13 0.00 ind:pre:3s; +juguler juguler ver 0.39 0.61 0.21 0.27 inf; +jugulé juguler ver m s 0.39 0.61 0.05 0.00 par:pas; +jugulée juguler ver f s 0.39 0.61 0.00 0.14 par:pas; +jugés juger ver m p 56.12 96.96 1.88 1.89 par:pas; +juif juif adj m s 30.62 36.76 17.23 19.86 +juifs juif nom m p 45.08 55.74 29.03 30.88 +juillet juillet nom m 11.97 47.57 11.96 47.57 +juillets juillet nom m p 11.97 47.57 0.01 0.00 +juin juin nom m 13.40 51.28 13.40 51.28 +juive juif adj f s 30.62 36.76 8.43 8.99 +juiverie juiverie nom f s 0.10 0.61 0.10 0.47 +juiveries juiverie nom f p 0.10 0.61 0.00 0.14 +juives juif adj f p 30.62 36.76 0.54 1.35 +jujube jujube nom m s 0.06 0.54 0.02 0.54 +jujubes jujube nom m p 0.06 0.54 0.04 0.00 +jujubiers jujubier nom m p 0.00 0.27 0.00 0.27 +jéjunale jéjunal adj f s 0.01 0.00 0.01 0.00 +jéjunum jéjunum nom m s 0.04 0.00 0.04 0.00 +juke_box juke_box nom m 1.61 1.89 1.58 1.69 +juke_box juke_box nom m p 1.61 1.89 0.03 0.20 +julep julep nom m s 0.02 0.41 0.02 0.27 +juleps julep nom m p 0.02 0.41 0.00 0.14 +jules jules nom m 4.13 3.51 4.13 3.51 +julien julien adj m s 0.47 2.84 0.47 1.76 +julienne julien nom f s 0.04 0.68 0.04 0.68 +juliennes julien adj f p 0.47 2.84 0.00 0.07 +julot julot nom m s 0.12 2.36 0.12 1.76 +julots julot nom m p 0.12 2.36 0.00 0.61 +jumbo jumbo nom m s 0.52 0.20 0.52 0.20 +jumeau jumeau adj m s 5.68 8.99 1.34 2.09 +jumeaux jumeau nom m p 13.74 17.77 12.47 16.01 +jumelage jumelage nom m s 0.01 0.07 0.01 0.07 +jumeler jumeler ver 0.17 0.54 0.00 0.07 inf; +jumelle jumeau adj f s 5.68 8.99 1.17 2.36 +jumellera jumeler ver 0.17 0.54 0.00 0.07 ind:fut:3s; +jumelles jumelle nom f p 5.61 14.66 4.89 12.70 +jumelé jumeler ver m s 0.17 0.54 0.00 0.14 par:pas; +jumelée jumeler ver f s 0.17 0.54 0.00 0.07 par:pas; +jumelée jumelé adj f s 0.03 0.54 0.00 0.07 +jumelées jumeler ver f p 0.17 0.54 0.02 0.07 par:pas; +jumelés jumelé adj m p 0.03 0.54 0.02 0.20 +jument jument nom f s 6.67 10.34 5.71 8.51 +jumenterie jumenterie nom f s 0.00 0.07 0.00 0.07 +juments jument nom f p 6.67 10.34 0.96 1.82 +jumper jumper nom m s 2.26 0.00 2.26 0.00 +jumping jumping nom m s 0.21 0.00 0.21 0.00 +jungien jungien adj m s 0.04 0.14 0.03 0.07 +jungiens jungien adj m p 0.04 0.14 0.01 0.07 +jungle jungle nom f s 16.47 8.38 16.25 7.43 +jungles jungle nom f p 16.47 8.38 0.22 0.95 +junior junior adj s 2.35 1.22 2.27 0.95 +juniors junior nom p 2.05 0.54 0.35 0.41 +junker junker nom m s 0.02 0.54 0.02 0.41 +junkers junker nom m p 0.02 0.54 0.00 0.14 +junkie junkie nom m s 5.15 1.42 3.22 0.81 +junkies junkie nom m p 5.15 1.42 1.93 0.61 +junky junky nom m s 0.15 0.07 0.15 0.07 +junte junte nom f s 0.17 0.14 0.17 0.14 +jupe_culotte jupe_culotte nom f s 0.02 0.34 0.02 0.27 +jupe jupe nom f s 12.76 49.59 10.12 34.05 +jupe_culotte jupe_culotte nom m p 0.02 0.34 0.00 0.07 +jupes jupe nom f p 12.76 49.59 2.64 15.54 +jupette jupette nom f s 0.66 1.55 0.63 1.42 +jupettes jupette nom f p 0.66 1.55 0.04 0.14 +jupiers jupier nom m p 0.00 0.07 0.00 0.07 +jupitérien jupitérien adj m s 0.02 0.34 0.02 0.14 +jupitérienne jupitérien adj f s 0.02 0.34 0.00 0.14 +jupitériens jupitérien adj m p 0.02 0.34 0.00 0.07 +jupon jupon nom m s 3.00 6.89 1.35 2.77 +juponnée juponner ver f s 0.00 0.27 0.00 0.14 par:pas; +juponnés juponner ver m p 0.00 0.27 0.00 0.14 par:pas; +jupons jupon nom m p 3.00 6.89 1.65 4.12 +jupée jupé adj f s 0.00 0.14 0.00 0.07 +jupées jupé adj f p 0.00 0.14 0.00 0.07 +jura jurer ver 148.40 81.76 0.20 5.54 ind:pas:3s; +jurai jurer ver 148.40 81.76 0.16 0.41 ind:pas:1s; +juraient jurer ver 148.40 81.76 0.17 1.62 ind:imp:3p; +jurais jurer ver 148.40 81.76 0.34 1.22 ind:imp:1s;ind:imp:2s; +jurait jurer ver 148.40 81.76 1.06 4.46 ind:imp:3s; +jurant jurer ver 148.40 81.76 0.58 4.93 par:pre; +jurançon jurançon nom m s 0.00 0.07 0.00 0.07 +jurassien jurassien adj m s 0.00 0.14 0.00 0.07 +jurassien jurassien nom m s 0.00 0.14 0.00 0.07 +jurassiens jurassien adj m p 0.00 0.14 0.00 0.07 +jurassiens jurassien nom m p 0.00 0.14 0.00 0.07 +jurassique jurassique adj m s 0.29 0.00 0.28 0.00 +jurassiques jurassique adj f p 0.29 0.00 0.01 0.00 +jure jurer ver 148.40 81.76 104.04 31.62 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +jurent jurer ver 148.40 81.76 1.01 1.01 ind:pre:3p; +jurer jurer ver 148.40 81.76 7.57 7.57 inf; +jurera jurer ver 148.40 81.76 0.08 0.00 ind:fut:3s; +jurerai jurer ver 148.40 81.76 0.72 0.07 ind:fut:1s; +jurerais jurer ver 148.40 81.76 1.62 1.69 cnd:pre:1s;cnd:pre:2s; +jurerait jurer ver 148.40 81.76 0.38 2.16 cnd:pre:3s; +jureras jurer ver 148.40 81.76 0.16 0.07 ind:fut:2s; +jurerez jurer ver 148.40 81.76 0.05 0.00 ind:fut:2p; +jureriez jurer ver 148.40 81.76 0.05 0.14 cnd:pre:2p; +jureront jurer ver 148.40 81.76 0.04 0.07 ind:fut:3p; +jures jurer ver 148.40 81.76 4.75 1.01 ind:pre:2s; +jurez jurer ver 148.40 81.76 6.55 0.47 imp:pre:2p;ind:pre:2p; +juridiction juridiction nom f s 2.63 1.49 2.53 1.15 +juridictionnel juridictionnel adj m s 0.04 0.00 0.01 0.00 +juridictionnelle juridictionnel adj f s 0.04 0.00 0.04 0.00 +juridictions juridiction nom f p 2.63 1.49 0.09 0.34 +juridique juridique adj s 5.20 2.50 4.24 1.62 +juridiquement juridiquement adv 0.14 0.27 0.14 0.27 +juridiques juridique adj p 5.20 2.50 0.95 0.88 +juriez jurer ver 148.40 81.76 0.13 0.00 ind:imp:2p; +jurisprudence jurisprudence nom f s 0.82 0.34 0.82 0.34 +juriste juriste nom s 2.57 0.88 1.95 0.34 +juristes juriste nom p 2.57 0.88 0.62 0.54 +jéroboam jéroboam nom m s 0.01 0.07 0.01 0.00 +jéroboams jéroboam nom m p 0.01 0.07 0.00 0.07 +jurâmes jurer ver 148.40 81.76 0.00 0.07 ind:pas:1p; +juron juron nom m s 2.10 9.93 0.42 3.31 +jurons juron nom m p 2.10 9.93 1.68 6.62 +jurèrent jurer ver 148.40 81.76 0.02 0.54 ind:pas:3p; +juré jurer ver m s 148.40 81.76 17.59 16.69 par:pas; +jurée jurer ver f s 148.40 81.76 0.45 0.14 par:pas; +jurées jurer ver f p 148.40 81.76 0.01 0.00 par:pas; +jérémiade jérémiade nom f s 0.93 1.89 0.14 0.14 +jérémiades jérémiade nom f p 0.93 1.89 0.79 1.76 +jurés juré nom m p 8.82 4.73 5.59 3.92 +jury jury nom m s 18.80 5.27 18.65 5.14 +jurys jury nom m p 18.80 5.27 0.15 0.14 +jus jus nom m 22.36 23.04 22.36 23.04 +jusant jusant nom m s 0.01 1.76 0.01 1.76 +jusqu_au jusqu_au pre 0.34 0.07 0.34 0.07 +jusqu_à jusqu_à pre 0.81 0.27 0.81 0.27 +jusqu jusqu pre 2.26 0.07 2.26 0.07 +jusque_là jusque_là adv 7.81 29.53 7.81 29.53 +jusque jusque pre 15.05 37.50 15.05 37.50 +jusques jusques adv 0.00 1.15 0.00 1.15 +jusquiame jusquiame nom f s 0.11 0.07 0.11 0.07 +justaucorps justaucorps nom m 0.22 0.61 0.22 0.61 +juste_milieu juste_milieu nom m 0.00 0.07 0.00 0.07 +juste juste adj_sup s 656.86 153.45 653.49 147.77 +justement justement adv 62.08 78.18 62.08 78.18 +justes juste adj_sup p 656.86 153.45 3.36 5.68 +justesse justesse nom f s 1.91 8.58 1.91 8.58 +justice justice nom s 50.96 46.28 50.96 46.22 +justices justice nom f p 50.96 46.28 0.00 0.07 +justiciable justiciable adj m s 0.10 0.47 0.10 0.27 +justiciables justiciable adj p 0.10 0.47 0.00 0.20 +justicier justicier nom m s 1.97 3.78 1.45 1.96 +justiciers justicier nom m p 1.97 3.78 0.48 1.35 +justicière justicier nom f s 1.97 3.78 0.03 0.47 +justifia justifier ver 15.55 36.01 0.00 0.27 ind:pas:3s; +justifiable justifiable adj m s 0.08 0.34 0.06 0.14 +justifiables justifiable adj f p 0.08 0.34 0.02 0.20 +justifiaient justifier ver 15.55 36.01 0.00 1.28 ind:imp:3p; +justifiais justifier ver 15.55 36.01 0.01 0.20 ind:imp:1s;ind:imp:2s; +justifiait justifier ver 15.55 36.01 0.17 4.53 ind:imp:3s; +justifiant justifier ver 15.55 36.01 0.07 0.68 par:pre; +justificatif justificatif nom m s 0.49 0.20 0.26 0.20 +justificatifs justificatif nom m p 0.49 0.20 0.23 0.00 +justification justification nom f s 0.96 6.76 0.84 5.00 +justifications justification nom f p 0.96 6.76 0.13 1.76 +justificative justificatif adj f s 0.02 0.34 0.01 0.20 +justificatives justificatif adj f p 0.02 0.34 0.00 0.14 +justifie justifier ver 15.55 36.01 3.94 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +justifient justifier ver 15.55 36.01 0.42 0.68 ind:pre:3p; +justifier justifier ver 15.55 36.01 7.37 14.93 inf; +justifiera justifier ver 15.55 36.01 0.08 0.27 ind:fut:3s; +justifierai justifier ver 15.55 36.01 0.04 0.07 ind:fut:1s; +justifieraient justifier ver 15.55 36.01 0.01 0.14 cnd:pre:3p; +justifierais justifier ver 15.55 36.01 0.01 0.07 cnd:pre:1s; +justifierait justifier ver 15.55 36.01 0.20 0.61 cnd:pre:3s; +justifiez justifier ver 15.55 36.01 0.52 0.14 imp:pre:2p;ind:pre:2p; +justifiât justifier ver 15.55 36.01 0.00 0.47 sub:imp:3s; +justifié justifier ver m s 15.55 36.01 1.38 2.91 par:pas; +justifiée justifier ver f s 15.55 36.01 0.84 2.36 par:pas; +justifiées justifier ver f p 15.55 36.01 0.27 0.68 par:pas; +justifiés justifier ver m p 15.55 36.01 0.23 1.01 par:pas; +justinien justinien adj m s 0.00 0.07 0.00 0.07 +jésuite jésuite nom m s 1.54 5.07 0.61 2.09 +jésuites jésuite nom m p 1.54 5.07 0.92 2.97 +jésuitique jésuitique adj s 0.02 0.41 0.02 0.34 +jésuitiques jésuitique adj m p 0.02 0.41 0.00 0.07 +jésuitière jésuitière nom f s 0.00 0.07 0.00 0.07 +jésus jésus nom m s 8.19 0.88 8.19 0.88 +juta juter ver 0.03 0.95 0.00 0.07 ind:pas:3s; +jutait juter ver 0.03 0.95 0.00 0.14 ind:imp:3s; +jute jute nom m s 0.64 2.77 0.64 2.77 +juter juter ver 0.03 0.95 0.03 0.61 inf; +juteuse juteux adj f s 2.86 2.64 0.75 1.01 +juteuses juteux adj f p 2.86 2.64 0.53 0.47 +juteux juteux adj m 2.86 2.64 1.58 1.15 +juté juter ver m s 0.03 0.95 0.00 0.14 par:pas; +juvénile juvénile adj s 1.48 6.89 1.24 5.27 +juvéniles juvénile adj p 1.48 6.89 0.23 1.62 +juvénilité juvénilité nom f s 0.00 0.20 0.00 0.20 +juxtaposaient juxtaposer ver 0.07 0.95 0.00 0.07 ind:imp:3p; +juxtaposais juxtaposer ver 0.07 0.95 0.00 0.07 ind:imp:1s; +juxtaposait juxtaposer ver 0.07 0.95 0.01 0.07 ind:imp:3s; +juxtaposant juxtaposer ver 0.07 0.95 0.02 0.00 par:pre; +juxtapose juxtaposer ver 0.07 0.95 0.03 0.07 ind:pre:1s;ind:pre:3s; +juxtaposent juxtaposer ver 0.07 0.95 0.00 0.14 ind:pre:3p; +juxtaposer juxtaposer ver 0.07 0.95 0.00 0.20 inf; +juxtaposition juxtaposition nom f s 0.17 0.68 0.17 0.54 +juxtapositions juxtaposition nom f p 0.17 0.68 0.00 0.14 +juxtaposèrent juxtaposer ver 0.07 0.95 0.00 0.07 ind:pas:3p; +juxtaposées juxtaposé adj f p 0.00 0.68 0.00 0.47 +juxtaposés juxtaposer ver m p 0.07 0.95 0.00 0.20 par:pas; +k_o k_o adj 0.02 0.07 0.02 0.07 +k_way k_way nom m s 0.06 0.20 0.06 0.20 +k k nom m 9.93 3.78 9.93 3.78 +ka ka nom m s 0.29 0.07 0.29 0.07 +kabarde kabarde adj f s 0.00 0.07 0.00 0.07 +kabbale kabbale nom f s 0.20 0.47 0.20 0.47 +kabbalistique kabbalistique adj s 0.00 0.07 0.00 0.07 +kabuki kabuki nom m s 0.42 0.14 0.42 0.14 +kabyle kabyle adj s 0.01 1.01 0.01 0.61 +kabyles kabyle adj p 0.01 1.01 0.00 0.41 +kacha kacha nom f s 0.00 0.34 0.00 0.34 +kacher kacher adj m s 0.02 0.14 0.02 0.14 +kachoube kachoube adj 0.10 0.00 0.10 0.00 +kaddisch kaddisch nom m s 0.00 0.07 0.00 0.07 +kaddish kaddish nom m s 0.20 0.00 0.20 0.00 +kadi kadi nom m s 0.11 0.00 0.11 0.00 +kafir kafir nom m s 0.05 0.00 0.05 0.00 +kafkaïen kafkaïen adj m s 0.02 0.07 0.02 0.07 +kaftan kaftan adj m s 0.04 0.00 0.02 0.00 +kaftans kaftan adj m p 0.04 0.00 0.01 0.00 +kaiser kaiser nom m s 0.02 0.14 0.02 0.14 +kaki kaki adj 0.46 5.34 0.46 5.34 +kakis kaki nom m p 0.68 1.15 0.29 0.27 +kala_azar kala_azar nom m s 0.00 0.07 0.00 0.07 +kalachnikovs kalachnikov nom f p 0.17 0.00 0.17 0.00 +kali kali nom m s 0.19 0.00 0.19 0.00 +kaliémie kaliémie nom f s 0.01 0.00 0.01 0.00 +kalmouk kalmouk adj m s 0.00 0.14 0.00 0.07 +kalmouks kalmouk adj m p 0.00 0.14 0.00 0.07 +kalpa kalpa nom m s 0.01 0.07 0.01 0.07 +kaléidoscope kaléidoscope nom m s 0.21 1.42 0.18 1.22 +kaléidoscopes kaléidoscope nom m p 0.21 1.42 0.04 0.20 +kama kama nom s 0.14 0.00 0.14 0.00 +kamala kamala nom m s 0.07 0.00 0.07 0.00 +kami kami nom m s 0.20 0.07 0.20 0.07 +kamikaze kamikaze nom m s 1.26 2.09 0.73 1.01 +kamikazes kamikaze nom m p 1.26 2.09 0.53 1.08 +kan kan nom m s 0.12 0.27 0.12 0.27 +kana kana nom m s 0.12 0.07 0.12 0.07 +kandjar kandjar nom m s 0.00 0.07 0.00 0.07 +kangourou kangourou nom m s 1.85 1.42 1.42 1.15 +kangourous kangourou nom m p 1.85 1.42 0.42 0.27 +kanji kanji nom m s 0.04 0.00 0.04 0.00 +kantien kantien adj m s 0.01 0.07 0.01 0.07 +kantisme kantisme nom m s 0.00 0.20 0.00 0.20 +kaolin kaolin nom m s 0.01 0.34 0.01 0.34 +kaori kaori nom m s 0.01 0.00 0.01 0.00 +kapo kapo nom m s 0.29 0.34 0.29 0.14 +kapok kapok nom m s 0.04 0.34 0.04 0.34 +kapokier kapokier nom m s 0.01 0.00 0.01 0.00 +kapos kapo nom m p 0.29 0.34 0.00 0.20 +kaposi kaposi nom m s 0.09 0.20 0.09 0.20 +kapout kapout nom m s 0.01 0.20 0.01 0.20 +kappa kappa nom m s 0.17 0.00 0.17 0.00 +karaoké karaoké nom m s 0.99 0.00 0.97 0.00 +karaokés karaoké nom m p 0.99 0.00 0.02 0.00 +karaté karaté nom m s 2.64 0.95 2.64 0.95 +karatéka karatéka nom s 0.20 0.14 0.20 0.07 +karatékas karatéka nom p 0.20 0.14 0.00 0.07 +karen karen adj s 0.43 0.00 0.43 0.00 +kari kari nom m s 0.19 0.07 0.19 0.07 +karité karité nom m s 0.01 0.14 0.01 0.14 +karma karma nom m s 10.73 0.14 10.73 0.14 +karmique karmique adj s 0.16 0.00 0.16 0.00 +kart kart nom m s 0.30 0.00 0.30 0.00 +karting karting nom m s 0.34 0.00 0.34 0.00 +kasbah kasbah nom f 0.00 0.27 0.00 0.27 +kascher kascher adj s 0.13 0.27 0.13 0.27 +kasher kasher adj 0.63 0.41 0.63 0.41 +kastro kastro nom m s 0.00 0.54 0.00 0.47 +kastros kastro nom m p 0.00 0.54 0.00 0.07 +kata kata nom m s 0.02 0.00 0.01 0.00 +katal katal nom m s 0.01 0.00 0.01 0.00 +katangais katangais nom m 0.10 0.14 0.10 0.14 +katas kata nom m p 0.02 0.00 0.01 0.00 +katchinas katchina nom m p 0.00 0.07 0.00 0.07 +katiba katiba nom f s 0.00 0.07 0.00 0.07 +kava kava nom m s 0.01 0.00 0.01 0.00 +kawa kawa nom m s 0.00 3.11 0.00 3.11 +kayac kayac nom m s 0.01 0.00 0.01 0.00 +kayak kayak nom m s 0.34 0.14 0.34 0.14 +kayakiste kayakiste nom s 0.01 0.00 0.01 0.00 +kazakh kazakh adj m s 0.33 0.07 0.13 0.00 +kazakhs kazakh adj m p 0.33 0.07 0.20 0.07 +kebab kebab nom m s 0.78 0.07 0.55 0.07 +kebabs kebab nom m p 0.78 0.07 0.23 0.00 +kebla kebla adj s 0.00 0.14 0.00 0.07 +keblas kebla adj f p 0.00 0.14 0.00 0.07 +keepsake keepsake nom m s 0.05 0.00 0.05 0.00 +keffieh keffieh nom m s 0.01 0.00 0.01 0.00 +keiretsu keiretsu nom m s 0.07 0.00 0.07 0.00 +kekchose kekchose nom f s 0.01 0.07 0.01 0.07 +kelvins kelvin nom m p 0.03 0.00 0.03 0.00 +kendo kendo nom m s 0.24 0.00 0.24 0.00 +kermesse kermesse nom f s 0.96 2.77 0.93 2.30 +kermesses kermesse nom f p 0.96 2.77 0.04 0.47 +kerrie kerrie nom f s 0.04 0.00 0.04 0.00 +ket ket nom m s 0.07 0.07 0.07 0.07 +ketch ketch nom m s 0.11 0.07 0.11 0.07 +ketchup ketchup nom m s 4.45 0.54 4.45 0.54 +keuf keuf nom f s 2.83 0.88 1.00 0.00 +keufs keuf nom f p 2.83 0.88 1.83 0.88 +keum keum nom m s 0.35 0.20 0.27 0.20 +keums keum nom m p 0.35 0.20 0.08 0.00 +kevlar kevlar nom m s 0.26 0.00 0.26 0.00 +khôl khôl nom m s 0.00 0.81 0.00 0.81 +khalife khalife nom m s 0.02 0.27 0.02 0.27 +khamsin khamsin nom m s 0.00 0.20 0.00 0.20 +khan khan nom m s 0.30 6.55 0.21 1.49 +khanat khanat nom m s 0.00 0.07 0.00 0.07 +khans khan nom m p 0.30 6.55 0.10 5.07 +khat khat nom m s 0.01 0.00 0.01 0.00 +khazar khazar adj s 0.00 0.14 0.00 0.14 +khmer khmer adj m s 0.28 0.00 0.27 0.00 +khmère khmer adj f s 0.28 0.00 0.01 0.00 +khâgne khâgne nom f s 0.00 1.55 0.00 1.42 +khâgnes khâgne nom f p 0.00 1.55 0.00 0.14 +khâgneux khâgneux nom m 0.00 0.34 0.00 0.34 +khédival khédival adj m s 0.00 0.07 0.00 0.07 +khédive khédive nom m s 0.03 0.88 0.03 0.88 +kibboutz kibboutz nom m 1.85 0.27 1.85 0.27 +kibboutzim kibboutzim nom m p 0.00 0.07 0.00 0.07 +kick kick nom m s 0.47 0.34 0.42 0.34 +kicker kicker nom m s 0.14 0.00 0.14 0.00 +kicks kick nom m p 0.47 0.34 0.05 0.00 +kid kid nom m s 6.62 7.36 5.71 6.82 +kidnappa kidnapper ver 15.21 1.08 0.00 0.07 ind:pas:3s; +kidnappait kidnapper ver 15.21 1.08 0.04 0.07 ind:imp:3s; +kidnappant kidnapper ver 15.21 1.08 0.04 0.00 par:pre; +kidnappe kidnapper ver 15.21 1.08 0.69 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +kidnappent kidnapper ver 15.21 1.08 0.15 0.00 ind:pre:3p; +kidnapper kidnapper ver 15.21 1.08 2.54 0.20 inf; +kidnapperai kidnapper ver 15.21 1.08 0.14 0.00 ind:fut:1s; +kidnapperaient kidnapper ver 15.21 1.08 0.11 0.00 cnd:pre:3p; +kidnapperas kidnapper ver 15.21 1.08 0.01 0.00 ind:fut:2s; +kidnapperez kidnapper ver 15.21 1.08 0.02 0.00 ind:fut:2p; +kidnappeur kidnappeur nom m s 3.55 0.27 2.20 0.07 +kidnappeurs kidnappeur nom m p 3.55 0.27 1.35 0.20 +kidnappez kidnapper ver 15.21 1.08 0.10 0.00 imp:pre:2p;ind:pre:2p; +kidnappiez kidnapper ver 15.21 1.08 0.03 0.00 ind:imp:2p; +kidnapping kidnapping nom m s 5.58 0.54 5.33 0.54 +kidnappings kidnapping nom m p 5.58 0.54 0.25 0.00 +kidnappons kidnapper ver 15.21 1.08 0.01 0.00 imp:pre:1p; +kidnappé kidnapper ver m s 15.21 1.08 6.66 0.20 par:pas; +kidnappée kidnapper ver f s 15.21 1.08 3.65 0.20 par:pas; +kidnappées kidnapper ver f p 15.21 1.08 0.28 0.14 par:pas; +kidnappés kidnapper ver m p 15.21 1.08 0.75 0.07 par:pas; +kids kid nom m p 6.62 7.36 0.91 0.54 +kief kief nom m s 0.02 0.00 0.02 0.00 +kierkegaardienne kierkegaardien nom f s 0.00 0.07 0.00 0.07 +kif_kif kif_kif adj s 0.20 0.81 0.20 0.81 +kif kif nom m s 1.25 2.77 1.25 2.77 +kiki kiki nom m s 0.53 0.74 0.53 0.74 +kil kil nom m s 0.17 0.54 0.16 0.34 +kilbus kilbus nom m 0.00 0.27 0.00 0.27 +kilim kilim nom m s 0.28 0.00 0.28 0.00 +killer killer nom s 1.19 0.07 1.19 0.07 +kilo kilo nom m s 22.54 24.19 5.19 5.27 +kilogramme kilogramme nom m s 0.17 0.14 0.14 0.07 +kilogrammes kilogramme nom m p 0.17 0.14 0.03 0.07 +kilohertz kilohertz nom m 0.14 0.00 0.14 0.00 +kilomètre kilomètre nom m s 24.80 62.23 3.73 6.28 +kilomètre_heure kilomètre_heure nom m p 0.14 0.41 0.14 0.41 +kilomètres kilomètre nom m p 24.80 62.23 21.07 55.95 +kilométrage kilométrage nom m s 0.50 0.27 0.49 0.14 +kilométrages kilométrage nom m p 0.50 0.27 0.01 0.14 +kilométrique kilométrique adj s 0.04 0.68 0.04 0.34 +kilométriques kilométrique adj f p 0.04 0.68 0.00 0.34 +kilos kilo nom m p 22.54 24.19 17.35 18.92 +kilotonnes kilotonne nom m p 0.10 0.14 0.10 0.14 +kilowattheure kilowattheure nom m s 0.00 0.07 0.00 0.07 +kilowatts kilowatt nom m p 0.00 0.34 0.00 0.34 +kils kil nom m p 0.17 0.54 0.01 0.20 +kilt kilt nom m s 0.55 0.68 0.50 0.68 +kilts kilt nom m p 0.55 0.68 0.05 0.00 +kimono kimono nom m s 2.11 2.43 1.84 1.89 +kimonos kimono nom m p 2.11 2.43 0.27 0.54 +kinase kinase nom f s 0.03 0.00 0.03 0.00 +kinescope kinescope nom m s 0.01 0.00 0.01 0.00 +kinesthésie kinesthésie nom f s 0.01 0.00 0.01 0.00 +king_charles king_charles nom m 0.00 0.07 0.00 0.07 +kinnor kinnor nom m s 0.00 0.07 0.00 0.07 +kino kino nom m s 0.00 0.07 0.00 0.07 +kiné kiné nom s 1.28 0.00 1.28 0.00 +kinésiques kinésique nom f p 0.01 0.00 0.01 0.00 +kinésithérapeute kinésithérapeute nom s 0.05 0.20 0.05 0.20 +kinésithérapie kinésithérapie nom f s 0.07 0.00 0.07 0.00 +kiosk kiosk nom m s 0.00 1.82 0.00 1.55 +kiosks kiosk nom m p 0.00 1.82 0.00 0.27 +kiosque kiosque nom m s 4.05 8.18 3.95 5.88 +kiosques kiosque nom m p 4.05 8.18 0.10 2.30 +kip kip nom m s 0.63 0.00 0.62 0.00 +kipa kipa nom f s 0.01 1.89 0.01 1.89 +kippa kippa nom f s 0.52 0.07 0.52 0.07 +kipper kipper nom m s 0.04 0.07 0.04 0.00 +kippers kipper nom m p 0.04 0.07 0.00 0.07 +kips kip nom m p 0.63 0.00 0.01 0.00 +kir kir nom m s 0.63 1.28 0.62 0.95 +kirghiz kirghiz nom m 0.00 0.20 0.00 0.20 +kirghize kirghize nom s 0.14 0.00 0.14 0.00 +kirghizes kirghize adj f p 0.00 0.14 0.00 0.07 +kirs kir nom m p 0.63 1.28 0.01 0.34 +kirsch kirsch nom m s 0.56 1.22 0.56 1.22 +kit kit nom m s 7.33 0.34 6.99 0.34 +kitch kitch adj f s 0.17 0.00 0.17 0.00 +kitchenette kitchenette nom f s 0.19 0.27 0.19 0.27 +kits kit nom m p 7.33 0.34 0.34 0.00 +kitsch kitsch adj 0.23 0.68 0.23 0.68 +kiva kiva nom f s 0.03 0.00 0.03 0.00 +kiwi kiwi nom m s 0.00 0.14 0.00 0.07 +kiwis kiwi nom m p 0.00 0.14 0.00 0.07 +klaxon klaxon nom m s 5.55 5.74 4.89 3.24 +klaxonna klaxonner ver 4.29 3.24 0.03 0.27 ind:pas:3s; +klaxonnai klaxonner ver 4.29 3.24 0.00 0.14 ind:pas:1s; +klaxonnaient klaxonner ver 4.29 3.24 0.02 0.14 ind:imp:3p; +klaxonnais klaxonner ver 4.29 3.24 0.04 0.00 ind:imp:1s; +klaxonnait klaxonner ver 4.29 3.24 0.05 0.27 ind:imp:3s; +klaxonnant klaxonner ver 4.29 3.24 0.00 0.68 par:pre; +klaxonne klaxonner ver 4.29 3.24 2.26 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +klaxonnent klaxonner ver 4.29 3.24 0.07 0.14 ind:pre:3p; +klaxonner klaxonner ver 4.29 3.24 0.75 0.61 inf; +klaxonnera klaxonner ver 4.29 3.24 0.01 0.07 ind:fut:3s; +klaxonnerai klaxonner ver 4.29 3.24 0.26 0.00 ind:fut:1s; +klaxonnes klaxonner ver 4.29 3.24 0.23 0.00 ind:pre:2s; +klaxonnez klaxonner ver 4.29 3.24 0.39 0.07 imp:pre:2p;ind:pre:2p; +klaxonné klaxonner ver m s 4.29 3.24 0.19 0.41 par:pas; +klaxons klaxon nom m p 5.55 5.74 0.66 2.50 +klebs klebs nom m 0.01 0.00 0.01 0.00 +kleenex kleenex nom m 1.35 2.91 1.35 2.91 +kleptomane kleptomane nom s 0.16 0.00 0.14 0.00 +kleptomanes kleptomane nom p 0.16 0.00 0.02 0.00 +kleptomanie kleptomanie nom f s 0.02 0.00 0.02 0.00 +klystron klystron nom m s 0.12 0.00 0.12 0.00 +km km adv 0.01 0.00 0.01 0.00 +knickerbockers knickerbocker nom m p 0.01 0.07 0.01 0.07 +knickers knicker nom m p 0.03 0.07 0.03 0.07 +knock_out knock_out adj m s 0.19 0.20 0.19 0.20 +knout knout nom m s 0.00 0.20 0.00 0.20 +koala koala nom m s 0.19 0.14 0.15 0.14 +koalas koala nom m p 0.19 0.14 0.04 0.00 +kobold kobold nom m s 0.37 0.07 0.22 0.07 +kobolds kobold nom m p 0.37 0.07 0.15 0.00 +kodak kodak nom m s 0.01 0.47 0.01 0.47 +kodiak kodiak nom m s 0.31 0.00 0.31 0.00 +kohl kohl nom m s 0.00 0.14 0.00 0.14 +kola kola nom m s 0.02 0.20 0.02 0.20 +kolatiers kolatier nom m p 0.00 0.20 0.00 0.20 +kolkhoze kolkhoze nom m s 1.11 0.41 1.11 0.41 +kolkhozien kolkhozien nom m s 0.20 0.68 0.00 0.07 +kolkhozienne kolkhozien nom f s 0.20 0.68 0.10 0.20 +kolkhoziennes kolkhozien nom f p 0.20 0.68 0.00 0.14 +kolkhoziens kolkhozien nom m p 0.20 0.68 0.10 0.27 +komi komi adj s 0.03 0.00 0.03 0.00 +komintern komintern nom m s 0.01 0.54 0.01 0.54 +kommandantur kommandantur nom f s 0.27 0.68 0.27 0.68 +kommando kommando nom m s 0.28 0.14 0.28 0.14 +komsomol komsomol nom m s 0.25 0.81 0.25 0.54 +komsomols komsomol nom m p 0.25 0.81 0.00 0.27 +kondo kondo nom m s 0.12 0.00 0.12 0.00 +kopeck kopeck nom m s 1.52 0.61 1.30 0.47 +kopecks kopeck nom m p 1.52 0.61 0.22 0.14 +kopeks kopek nom m p 0.14 0.00 0.14 0.00 +kora kora nom f s 0.01 0.00 0.01 0.00 +koran koran nom m s 0.00 0.14 0.00 0.14 +korrigan korrigan nom m s 0.03 0.20 0.01 0.07 +korrigans korrigan nom m p 0.03 0.20 0.02 0.14 +korè korè nom f s 0.00 0.07 0.00 0.07 +koré koré nom f s 0.00 0.34 0.00 0.34 +kosovar kosovar nom m s 0.01 0.00 0.01 0.00 +kot kot nom m s 0.33 0.00 0.33 0.00 +koto koto nom m s 0.02 0.07 0.02 0.07 +kouglof kouglof nom m s 0.02 0.14 0.02 0.14 +koulak koulak nom m s 0.11 0.47 0.00 0.27 +koulaks koulak nom m p 0.11 0.47 0.11 0.20 +kouros kouros nom m 0.00 0.27 0.00 0.27 +kraal kraal nom m s 0.03 0.00 0.03 0.00 +krach krach nom m s 0.15 0.41 0.15 0.34 +krachs krach nom m p 0.15 0.41 0.00 0.07 +kraft kraft nom m s 0.80 0.95 0.80 0.95 +krak krak nom m s 0.01 0.00 0.01 0.00 +kraken kraken nom m s 0.14 0.00 0.14 0.00 +kremlin kremlin nom m s 0.00 0.07 0.00 0.07 +kreutzer kreutzer nom m s 0.00 0.07 0.00 0.07 +kriegspiel kriegspiel nom m s 0.00 0.14 0.00 0.14 +krill krill nom m s 0.17 0.00 0.17 0.00 +kriss kriss nom m 0.09 0.00 0.09 0.00 +kroumir kroumir nom m s 0.01 0.27 0.01 0.20 +kroumirs kroumir nom m p 0.01 0.27 0.00 0.07 +krypton krypton nom m s 1.04 0.00 1.04 0.00 +ksar ksar nom m s 0.00 0.07 0.00 0.07 +kébour kébour nom m s 0.00 0.41 0.00 0.34 +kébours kébour nom m p 0.00 0.41 0.00 0.07 +kéfir kéfir nom m s 0.00 0.27 0.00 0.20 +kéfirs kéfir nom m p 0.00 0.27 0.00 0.07 +kugelhof kugelhof nom m s 0.04 0.07 0.04 0.07 +kula kula nom f s 0.01 0.07 0.01 0.07 +kummel kummel nom m s 0.01 0.34 0.01 0.34 +kumquat kumquat nom m s 0.16 0.07 0.13 0.00 +kumquats kumquat nom m p 0.16 0.07 0.03 0.07 +kung_fu kung_fu nom m s 1.12 0.00 1.01 0.00 +kung_fu kung_fu nom m s 1.12 0.00 0.10 0.00 +kényan kényan adj m s 0.02 0.00 0.02 0.00 +képi képi nom m s 2.39 15.81 1.85 12.91 +képis képi nom m p 2.39 15.81 0.55 2.91 +kérabau kérabau nom m s 0.10 0.00 0.10 0.00 +kératinisée kératinisé adj f s 0.01 0.00 0.01 0.00 +kératoplastie kératoplastie nom f s 0.01 0.00 0.01 0.00 +kératose kératose nom f s 0.01 0.00 0.01 0.00 +kurde kurde adj s 0.17 0.20 0.16 0.07 +kurdes kurde adj p 0.17 0.20 0.01 0.14 +kérosène kérosène nom m s 0.91 0.20 0.91 0.14 +kérosènes kérosène nom m p 0.91 0.20 0.00 0.07 +kursaal kursaal nom m s 0.20 0.07 0.20 0.07 +kurus kuru nom m p 0.00 0.07 0.00 0.07 +kvas kvas nom m 0.20 0.00 0.20 0.00 +kyrie_eleison kyrie_eleison nom m 0.41 0.07 0.41 0.07 +kyrie kyrie nom m 0.00 0.54 0.00 0.54 +kyrielle kyrielle nom f s 0.03 1.42 0.03 1.22 +kyrielles kyrielle nom f p 0.03 1.42 0.00 0.20 +kyste kyste nom m s 0.57 0.20 0.51 0.07 +kystes kyste nom m p 0.57 0.20 0.06 0.14 +kystique kystique adj f s 0.03 0.00 0.03 0.00 +l_ l_ art_def m s 8129.41 12746.76 8129.41 12746.76 +l_un l_un pro_ind 127.72 208.92 127.72 208.92 +l_une l_une pro_ind f 36.12 93.58 36.12 93.58 +l_dopa l_dopa nom f s 0.05 0.00 0.05 0.00 +l l art_def --s 78.26 3.92 78.26 3.92 +lûmes lire ver 281.09 324.80 0.01 0.20 ind:pas:1p; +lût lire ver 281.09 324.80 0.00 0.47 sub:imp:3s; +la_la_la la_la_la art_def f s 0.14 0.07 0.14 0.07 +la_plata la_plata nom s 0.01 0.14 0.01 0.14 +la_plupart_de la_plupart_de adj_ind 3.94 7.30 3.94 7.30 +la_plupart_des la_plupart_des adj_ind 23.41 29.26 23.41 29.26 +la_plupart_du la_plupart_du adj_ind 5.07 7.91 5.07 7.91 +la_plupart la_plupart pro_ind p 14.72 23.24 14.72 23.24 +la la art_def f s 14946.48 23633.92 14946.48 23633.92 +laîche laîche nom f s 0.06 0.07 0.06 0.00 +laîches laîche nom f p 0.06 0.07 0.00 0.07 +laïc laïc adj m s 0.33 0.88 0.33 0.74 +laïciser laïciser ver 0.14 0.00 0.14 0.00 inf; +laïcité laïcité nom f s 0.29 0.47 0.29 0.47 +laïcs laïc nom p 0.32 0.95 0.16 0.68 +laïque laïque adj s 0.58 3.45 0.43 2.43 +laïques laïque adj p 0.58 3.45 0.15 1.01 +laïus laïus nom m 1.78 1.08 1.78 1.08 +laïusse laïusser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +labbe labbe nom m s 0.00 0.14 0.00 0.07 +labbes labbe nom m p 0.00 0.14 0.00 0.07 +label label nom m s 1.59 0.54 1.30 0.47 +labelle labelle nom m s 0.09 0.00 0.09 0.00 +labels label nom m p 1.59 0.54 0.29 0.07 +labeur labeur nom m s 3.73 9.80 3.71 8.85 +labeurs labeur nom m p 3.73 9.80 0.03 0.95 +labial labial adj m s 0.02 0.41 0.00 0.27 +labiale labial adj f s 0.02 0.41 0.02 0.00 +labiales labial adj f p 0.02 0.41 0.00 0.07 +labialisant labialiser ver 0.00 0.07 0.00 0.07 par:pre; +labiaux labial adj m p 0.02 0.41 0.00 0.07 +labile labile adj s 0.01 0.27 0.01 0.27 +labo labo nom m s 29.95 1.42 28.36 1.22 +laborantin laborantin nom m s 0.12 0.27 0.09 0.07 +laborantine laborantin nom f s 0.12 0.27 0.02 0.07 +laborantins laborantin nom m p 0.12 0.27 0.01 0.14 +laboratoire laboratoire nom m s 14.74 13.99 13.24 12.91 +laboratoires laboratoire nom m p 14.74 13.99 1.51 1.08 +laborieuse laborieux adj f s 1.21 7.16 0.34 1.96 +laborieusement laborieusement adv 0.02 1.62 0.02 1.62 +laborieuses laborieux adj f p 1.21 7.16 0.28 1.89 +laborieux laborieux adj m 1.21 7.16 0.60 3.31 +labos labo nom m p 29.95 1.42 1.60 0.20 +labour labour nom m s 0.67 6.62 0.39 2.64 +laboura labourer ver 2.56 7.03 0.00 0.07 ind:pas:3s; +labourable labourable adj s 0.01 0.00 0.01 0.00 +labourage labourage nom m s 0.14 0.41 0.14 0.41 +labouraient labourer ver 2.56 7.03 0.01 0.41 ind:imp:3p; +labourais labourer ver 2.56 7.03 0.03 0.00 ind:imp:1s;ind:imp:2s; +labourait labourer ver 2.56 7.03 0.14 0.61 ind:imp:3s; +labourant labourer ver 2.56 7.03 0.03 0.54 par:pre; +laboure labourer ver 2.56 7.03 0.27 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +labourent labourer ver 2.56 7.03 0.13 0.20 ind:pre:3p; +labourer labourer ver 2.56 7.03 1.41 1.22 inf; +labourerait labourer ver 2.56 7.03 0.01 0.07 cnd:pre:3s; +laboureur laboureur nom m s 0.20 2.43 0.17 1.42 +laboureurs laboureur nom m p 0.20 2.43 0.02 1.01 +labours labour nom m p 0.67 6.62 0.28 3.99 +labouré labourer ver m s 2.56 7.03 0.47 1.15 par:pas; +labourée labourer ver f s 2.56 7.03 0.02 1.08 par:pas; +labourées labourer ver f p 2.56 7.03 0.02 0.47 par:pas; +labourés labourer ver m p 2.56 7.03 0.01 0.54 par:pas; +labrador labrador nom m s 0.36 0.34 0.30 0.27 +labradors labrador nom m p 0.36 0.34 0.06 0.07 +labre labre nom m s 0.00 0.20 0.00 0.07 +labres labre nom m p 0.00 0.20 0.00 0.14 +labri labri nom m s 0.02 0.00 0.01 0.00 +labris labri nom m p 0.02 0.00 0.01 0.00 +labyrinthe labyrinthe nom m s 5.05 8.31 4.90 7.03 +labyrinthes labyrinthe nom m p 5.05 8.31 0.15 1.28 +labyrinthique labyrinthique adj s 0.05 0.27 0.02 0.20 +labyrinthiques labyrinthique adj p 0.05 0.27 0.03 0.07 +lac lac nom m s 31.16 32.84 31.16 32.84 +lacandon lacandon adj s 0.00 0.07 0.00 0.07 +lacanien lacanien adj m s 0.01 0.07 0.01 0.07 +lacaniens lacanien nom m p 0.00 0.14 0.00 0.07 +lace lacer ver 0.81 2.23 0.15 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lacent lacer ver 0.81 2.23 0.00 0.07 ind:pre:3p; +lacer lacer ver 0.81 2.23 0.56 0.68 inf; +lacet lacet nom m s 4.40 13.78 0.83 5.27 +lacets lacet nom m p 4.40 13.78 3.57 8.51 +lacis lacis nom m 0.00 1.89 0.00 1.89 +lack lack nom m s 0.16 0.00 0.16 0.00 +laconique laconique adj s 0.08 2.43 0.06 1.55 +laconiquement laconiquement adv 0.01 0.61 0.01 0.61 +laconiques laconique adj p 0.08 2.43 0.02 0.88 +laconisme laconisme nom m s 0.01 0.47 0.01 0.47 +lacrima_christi lacrima_christi nom m 0.00 0.07 0.00 0.07 +lacryma_christi lacryma_christi nom m s 0.00 0.34 0.00 0.20 +lacryma_christi lacryma_christi nom m s 0.00 0.34 0.00 0.14 +lacrymal lacrymal adj m s 0.42 0.68 0.03 0.14 +lacrymale lacrymal adj f s 0.42 0.68 0.00 0.07 +lacrymales lacrymal adj f p 0.42 0.68 0.25 0.47 +lacrymaux lacrymal adj m p 0.42 0.68 0.14 0.00 +lacrymogène lacrymogène adj s 1.22 0.81 0.54 0.41 +lacrymogènes lacrymogène adj p 1.22 0.81 0.69 0.41 +lacs lacs nom m 3.60 8.58 3.60 8.58 +lactaires lactaire nom m p 0.00 0.20 0.00 0.20 +lactate lactate nom m s 0.06 0.00 0.06 0.00 +lactation lactation nom f s 0.05 0.00 0.05 0.00 +lactescent lactescent adj m s 0.00 0.14 0.00 0.07 +lactescente lactescent adj f s 0.00 0.14 0.00 0.07 +lacère lacérer ver 1.38 4.05 0.18 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lacèrent lacérer ver 1.38 4.05 0.14 0.20 ind:pre:3p; +lactifère lactifère adj f s 0.01 0.00 0.01 0.00 +lactique lactique adj s 0.12 0.00 0.12 0.00 +lactose lactose nom m s 0.69 0.00 0.69 0.00 +lacté lacté adj m s 0.85 1.69 0.10 0.20 +lactée lacté adj f s 0.85 1.69 0.75 1.42 +lactés lacté adj m p 0.85 1.69 0.00 0.07 +lacé lacer ver m s 0.81 2.23 0.04 0.07 par:pas; +lacédémoniens lacédémonien nom m p 0.00 0.07 0.00 0.07 +lacée lacer ver f s 0.81 2.23 0.00 0.07 par:pas; +lacées lacer ver f p 0.81 2.23 0.02 0.54 par:pas; +lacunaire lacunaire adj s 0.08 0.34 0.08 0.34 +lacune lacune nom f s 0.44 2.23 0.09 0.68 +lacunes lacune nom f p 0.44 2.23 0.35 1.55 +lacéra lacérer ver 1.38 4.05 0.00 0.20 ind:pas:3s; +lacéraient lacérer ver 1.38 4.05 0.00 0.14 ind:imp:3p; +lacérait lacérer ver 1.38 4.05 0.00 0.14 ind:imp:3s; +lacérant lacérer ver 1.38 4.05 0.15 0.41 par:pre; +lacération lacération nom f s 1.64 0.00 1.00 0.00 +lacérations lacération nom f p 1.64 0.00 0.64 0.00 +lacérer lacérer ver 1.38 4.05 0.34 1.01 inf; +lacérions lacérer ver 1.38 4.05 0.00 0.07 ind:imp:1p; +lacéré lacérer ver m s 1.38 4.05 0.26 0.68 par:pas; +lacérée lacérer ver f s 1.38 4.05 0.04 0.34 par:pas; +lacérées lacéré adj f p 0.10 1.22 0.02 0.34 +lacérés lacérer ver m p 1.38 4.05 0.26 0.27 par:pas; +lacés lacer ver m p 0.81 2.23 0.00 0.20 par:pas; +lacustre lacustre adj s 0.02 0.61 0.02 0.47 +lacustres lacustre adj m p 0.02 0.61 0.00 0.14 +lad lad nom m s 0.20 0.74 0.17 0.54 +ladies ladies nom f p 0.91 0.14 0.91 0.14 +ladino ladino nom m s 0.00 0.07 0.00 0.07 +ladite ladite adj f s 0.33 1.82 0.33 1.82 +ladre ladre nom s 0.01 0.27 0.01 0.20 +ladrerie ladrerie nom f s 0.00 0.20 0.00 0.14 +ladreries ladrerie nom f p 0.00 0.20 0.00 0.07 +ladres ladre nom p 0.01 0.27 0.00 0.07 +lads lad nom m p 0.20 0.74 0.03 0.20 +lady lady nom f s 13.48 3.24 13.47 3.24 +ladys lady nom f p 13.48 3.24 0.01 0.00 +lagan lagan nom m s 0.05 0.00 0.05 0.00 +lagon lagon nom m s 0.84 0.88 0.71 0.74 +lagons lagon nom m p 0.84 0.88 0.13 0.14 +laguiole laguiole nom m s 0.00 0.07 0.00 0.07 +lagunaire lagunaire adj m s 0.00 0.20 0.00 0.20 +lagune lagune nom f s 2.84 8.92 2.40 6.69 +lagunes lagune nom f p 2.84 8.92 0.44 2.23 +lai lai adj m s 1.05 0.14 1.04 0.14 +laid laid adj m s 18.54 26.82 9.52 10.41 +laide laid adj f s 18.54 26.82 6.23 9.73 +laidement laidement adv 0.00 0.47 0.00 0.47 +laideron laideron nom m s 0.47 0.68 0.26 0.20 +laiderons laideron nom m p 0.47 0.68 0.21 0.47 +laides laid adj f p 18.54 26.82 1.51 3.11 +laideur laideur nom f s 1.44 8.99 1.44 8.78 +laideurs laideur nom f p 1.44 8.99 0.00 0.20 +laids laid adj m p 18.54 26.82 1.28 3.58 +laie laie nom f s 0.01 1.76 0.01 1.62 +laies laie nom f p 0.01 1.76 0.00 0.14 +lainage lainage nom m s 0.17 4.59 0.01 2.50 +lainages lainage nom m p 0.17 4.59 0.16 2.09 +laine laine nom f s 6.41 37.03 6.27 34.86 +laines laine nom f p 6.41 37.03 0.14 2.16 +laineurs laineur nom m p 0.00 0.14 0.00 0.07 +laineuse laineux adj f s 0.06 1.89 0.00 0.47 +laineuses laineux adj f p 0.06 1.89 0.00 0.34 +laineux laineux adj m s 0.06 1.89 0.06 1.08 +lainier lainier adj m s 0.00 0.20 0.00 0.14 +lainière lainier adj f s 0.00 0.20 0.00 0.07 +laird laird nom m s 0.36 0.07 0.36 0.07 +lais lai adj m p 1.05 0.14 0.01 0.00 +laissa laisser ver 1334.05 851.55 2.52 67.97 ind:pas:3s; +laissai laisser ver 1334.05 851.55 0.41 8.11 ind:pas:1s; +laissaient laisser ver 1334.05 851.55 1.69 23.92 ind:imp:3p; +laissais laisser ver 1334.05 851.55 4.54 12.36 ind:imp:1s;ind:imp:2s; +laissait laisser ver 1334.05 851.55 7.78 82.77 ind:imp:3s; +laissant laisser ver 1334.05 851.55 10.80 58.51 par:pre; +laissassent laisser ver 1334.05 851.55 0.00 0.07 sub:imp:3p; +laisse_la_moi laisse_la_moi nom f s 0.14 0.00 0.14 0.00 +laisse laisser ver 1334.05 851.55 479.63 143.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +laissent laisser ver 1334.05 851.55 15.24 22.30 ind:pre:3p;sub:pre:3p; +laisser_aller laisser_aller nom m 0.75 3.38 0.75 3.38 +laisser_faire laisser_faire nom m 0.01 0.07 0.01 0.07 +laisser laisser ver 1334.05 851.55 243.08 192.03 inf;;inf;;inf;;inf;;inf;; +laissera laisser ver 1334.05 851.55 13.78 6.62 ind:fut:3s; +laisserai laisser ver 1334.05 851.55 28.33 5.81 ind:fut:1s; +laisseraient laisser ver 1334.05 851.55 1.23 2.09 cnd:pre:3p; +laisserais laisser ver 1334.05 851.55 7.47 2.64 cnd:pre:1s;cnd:pre:2s; +laisserait laisser ver 1334.05 851.55 5.18 8.72 cnd:pre:3s; +laisseras laisser ver 1334.05 851.55 3.19 0.74 ind:fut:2s; +laisserez laisser ver 1334.05 851.55 1.93 1.22 ind:fut:2p; +laisseriez laisser ver 1334.05 851.55 0.93 0.54 cnd:pre:2p; +laisserions laisser ver 1334.05 851.55 0.10 0.34 cnd:pre:1p; +laisserons laisser ver 1334.05 851.55 2.93 0.81 ind:fut:1p; +laisseront laisser ver 1334.05 851.55 5.74 2.50 ind:fut:3p; +laisses laisser ver 1334.05 851.55 36.40 5.00 ind:pre:2s;sub:pre:1p;sub:pre:2s; +laissez_faire laissez_faire nom m 0.01 0.00 0.01 0.00 +laissez_passer laissez_passer nom m 4.00 1.96 4.00 1.96 +laissez laisser ver 1334.05 851.55 265.61 31.42 imp:pre:2p;ind:pre:2p; +laissiez laisser ver 1334.05 851.55 2.39 0.95 ind:imp:2p;sub:pre:2p; +laissions laisser ver 1334.05 851.55 0.54 2.50 ind:imp:1p; +laissâmes laisser ver 1334.05 851.55 0.00 0.54 ind:pas:1p; +laissons laisser ver 1334.05 851.55 20.73 6.76 imp:pre:1p;ind:pre:1p; +laissât laisser ver 1334.05 851.55 0.01 2.97 sub:imp:3s; +laissèrent laisser ver 1334.05 851.55 0.42 4.73 ind:pas:3p; +laissé_pour_compte laissé_pour_compte nom m s 0.00 0.07 0.00 0.07 +laissé laisser ver m s 1334.05 851.55 139.96 117.57 par:pas;par:pas;par:pas;par:pas; +laissée laisser ver f s 1334.05 851.55 20.90 20.47 ind:imp:3p;par:pas; +laissées laisser ver f p 1334.05 851.55 3.47 6.01 par:pas; +laissés_pour_compte laissés_pour_compte nom m p 0.23 0.07 0.23 0.07 +laissés laisser ver m p 1334.05 851.55 7.12 9.26 par:pas; +lait lait nom m s 59.62 62.91 59.41 62.23 +laitage laitage nom m s 0.41 0.88 0.22 0.54 +laitages laitage nom m p 0.41 0.88 0.20 0.34 +laitance laitance nom f s 0.27 0.47 0.27 0.34 +laitances laitance nom f p 0.27 0.47 0.00 0.14 +laiterie laiterie nom f s 0.32 0.61 0.29 0.47 +laiteries laiterie nom f p 0.32 0.61 0.03 0.14 +laites laite nom f p 0.00 0.07 0.00 0.07 +laiteuse laiteux adj f s 0.32 10.41 0.10 4.86 +laiteuses laiteux adj f p 0.32 10.41 0.00 1.42 +laiteux laiteux adj m 0.32 10.41 0.22 4.12 +laitier laitier nom m s 1.29 2.43 1.18 1.49 +laitiers laitier adj m p 1.26 0.74 0.66 0.07 +laitière laitier adj f s 1.26 0.74 0.38 0.47 +laitières laitier adj f p 1.26 0.74 0.05 0.14 +laiton laiton nom m s 0.21 1.55 0.21 1.55 +laits lait nom m p 59.62 62.91 0.21 0.68 +laitue laitue nom f s 2.52 2.43 1.97 1.62 +laitues laitue nom f p 2.52 2.43 0.56 0.81 +laizes laize nom f p 0.00 0.14 0.00 0.14 +lala lala ono 0.66 0.07 0.66 0.07 +lama lama nom m s 2.13 0.74 1.23 0.47 +lamaïsme lamaïsme nom m s 0.00 0.07 0.00 0.07 +lamais lamer ver 0.01 0.20 0.00 0.07 ind:imp:1s; +lamantin lamantin nom m s 0.84 0.20 0.54 0.14 +lamantins lamantin nom m p 0.84 0.20 0.29 0.07 +lamartiniennes lamartinien nom f p 0.00 0.07 0.00 0.07 +lamas lama nom m p 2.13 0.74 0.90 0.27 +lambada lambada nom f s 0.13 0.00 0.13 0.00 +lambda lambda nom m s 0.74 0.07 0.72 0.00 +lambdas lambda nom m p 0.74 0.07 0.02 0.07 +lambeau lambeau nom m s 2.41 14.26 0.61 3.51 +lambeaux lambeau nom m p 2.41 14.26 1.80 10.74 +lambel lambel nom m s 0.01 0.00 0.01 0.00 +lambi lambi nom m s 0.00 0.07 0.00 0.07 +lambic lambic nom m s 0.00 0.07 0.00 0.07 +lambin lambin adj m s 0.04 0.14 0.02 0.14 +lambinaient lambiner ver 0.62 1.15 0.00 0.14 ind:imp:3p; +lambinais lambiner ver 0.62 1.15 0.00 0.07 ind:imp:1s; +lambinait lambiner ver 0.62 1.15 0.00 0.07 ind:imp:3s; +lambinant lambiner ver 0.62 1.15 0.00 0.07 par:pre; +lambine lambiner ver 0.62 1.15 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lambiner lambiner ver 0.62 1.15 0.22 0.54 inf; +lambines lambiner ver 0.62 1.15 0.02 0.00 ind:pre:2s; +lambinez lambiner ver 0.62 1.15 0.05 0.00 imp:pre:2p;ind:pre:2p; +lambiniez lambiner ver 0.62 1.15 0.01 0.00 ind:imp:2p; +lambinions lambiner ver 0.62 1.15 0.00 0.07 ind:imp:1p; +lambinons lambiner ver 0.62 1.15 0.01 0.07 imp:pre:1p; +lambins lambin nom m p 0.16 0.20 0.15 0.00 +lambiné lambiner ver m s 0.62 1.15 0.05 0.00 par:pas; +lambrequins lambrequin nom m p 0.00 0.20 0.00 0.20 +lambris lambris nom m 0.04 1.55 0.04 1.55 +lambrissage lambrissage nom m s 0.01 0.07 0.01 0.07 +lambrissé lambrisser ver m s 0.02 0.27 0.01 0.07 par:pas; +lambrissée lambrissé adj f s 0.00 0.41 0.00 0.20 +lambrissées lambrisser ver f p 0.02 0.27 0.01 0.00 par:pas; +lambrusques lambrusque nom f p 0.00 0.07 0.00 0.07 +lambswool lambswool nom m s 0.00 0.14 0.00 0.14 +lame lame nom f s 14.22 37.09 11.05 25.81 +lamedé lamedé nom f s 0.00 0.81 0.00 0.68 +lamedu lamedu nom m s 0.00 0.14 0.00 0.14 +lamedés lamedé nom f p 0.00 0.81 0.00 0.14 +lamelle lamelle nom f s 0.72 2.64 0.14 0.54 +lamelles lamelle nom f p 0.72 2.64 0.59 2.09 +lamellibranches lamellibranche nom m p 0.00 0.07 0.00 0.07 +lamelliforme lamelliforme adj m s 0.00 0.07 0.00 0.07 +lamenta lamenter ver 3.37 7.43 0.00 0.61 ind:pas:3s; +lamentable lamentable adj s 5.70 9.26 5.33 7.36 +lamentablement lamentablement adv 0.44 1.82 0.44 1.82 +lamentables lamentable adj p 5.70 9.26 0.37 1.89 +lamentaient lamenter ver 3.37 7.43 0.00 0.47 ind:imp:3p; +lamentais lamenter ver 3.37 7.43 0.02 0.00 ind:imp:1s;ind:imp:2s; +lamentait lamenter ver 3.37 7.43 0.20 2.09 ind:imp:3s; +lamentant lamenter ver 3.37 7.43 0.06 0.41 par:pre; +lamentation lamentation nom f s 1.35 4.80 0.47 0.95 +lamentations lamentation nom f p 1.35 4.80 0.89 3.85 +lamente lamenter ver 3.37 7.43 1.31 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lamentent lamenter ver 3.37 7.43 0.15 0.54 ind:pre:3p; +lamenter lamenter ver 3.37 7.43 1.20 1.55 ind:pre:2p;inf; +lamentera lamenter ver 3.37 7.43 0.14 0.07 ind:fut:3s; +lamenterait lamenter ver 3.37 7.43 0.01 0.07 cnd:pre:3s; +lamenteront lamenter ver 3.37 7.43 0.02 0.07 ind:fut:3p; +lamentez lamenter ver 3.37 7.43 0.03 0.07 imp:pre:2p;ind:pre:2p; +lamentions lamenter ver 3.37 7.43 0.00 0.07 ind:imp:1p; +lamento lamento nom m s 0.01 1.22 0.01 1.22 +lamentons lamenter ver 3.37 7.43 0.10 0.00 ind:pre:1p; +lamentèrent lamenter ver 3.37 7.43 0.00 0.07 ind:pas:3p; +lamenté lamenter ver m s 3.37 7.43 0.14 0.27 par:pas; +lamentés lamenter ver m p 3.37 7.43 0.00 0.07 par:pas; +lamer mettre ver 1004.84 1083.65 0.01 0.00 imp:pre:2p; +lames lame nom f p 14.22 37.09 3.17 11.28 +lamie lamie nom f s 0.00 0.07 0.00 0.07 +lamifié lamifié adj m s 0.00 0.14 0.00 0.07 +lamifiés lamifié adj m p 0.00 0.14 0.00 0.07 +laminage laminage nom m s 0.01 0.07 0.01 0.00 +laminages laminage nom m p 0.01 0.07 0.00 0.07 +laminaire laminaire nom f s 0.00 0.14 0.00 0.07 +laminaires laminaire nom f p 0.00 0.14 0.00 0.07 +laminait laminer ver 0.70 1.55 0.00 0.14 ind:imp:3s; +laminant laminer ver 0.70 1.55 0.01 0.00 par:pre; +lamine laminer ver 0.70 1.55 0.05 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +laminectomie laminectomie nom f s 0.01 0.00 0.01 0.00 +laminer laminer ver 0.70 1.55 0.44 0.34 inf; +lamineront laminer ver 0.70 1.55 0.01 0.00 ind:fut:3p; +lamines laminer ver 0.70 1.55 0.00 0.07 ind:pre:2s; +laminoir laminoir nom m s 0.01 0.47 0.00 0.34 +laminoirs laminoir nom m p 0.01 0.47 0.01 0.14 +laminé laminer ver m s 0.70 1.55 0.11 0.47 par:pas; +laminée laminer ver f s 0.70 1.55 0.02 0.07 par:pas; +laminées laminer ver f p 0.70 1.55 0.01 0.14 par:pas; +laminés laminer ver m p 0.70 1.55 0.05 0.14 par:pas; +lampa lamper ver 0.41 1.69 0.14 0.20 ind:pas:3s; +lampadaire lampadaire nom m s 1.89 6.76 1.61 2.84 +lampadaires lampadaire nom m p 1.89 6.76 0.28 3.92 +lampadophore lampadophore adj s 0.00 0.14 0.00 0.14 +lampais lamper ver 0.41 1.69 0.00 0.07 ind:imp:1s; +lampait lamper ver 0.41 1.69 0.00 0.41 ind:imp:3s; +lampant lamper ver 0.41 1.69 0.00 0.20 par:pre; +lamparos lamparo nom m p 0.00 0.14 0.00 0.14 +lampas lampas nom m 0.00 0.07 0.00 0.07 +lampe_phare lampe_phare nom f s 0.00 0.07 0.00 0.07 +lampe_tempête lampe_tempête nom f s 0.00 0.95 0.00 0.68 +lampe lampe nom f s 25.86 93.11 22.22 70.88 +lampent lamper ver 0.41 1.69 0.01 0.00 ind:pre:3p; +lamper lamper ver 0.41 1.69 0.00 0.20 inf; +lampe_tempête lampe_tempête nom f p 0.00 0.95 0.00 0.27 +lampes lampe nom f p 25.86 93.11 3.63 22.23 +lampez lamper ver 0.41 1.69 0.00 0.07 ind:pre:2p; +lampion lampion nom m s 0.28 3.99 0.01 0.81 +lampions lampion nom m p 0.28 3.99 0.27 3.18 +lampiste lampiste nom m s 0.03 0.20 0.01 0.00 +lampisterie lampisterie nom f s 0.00 0.27 0.00 0.20 +lampisteries lampisterie nom f p 0.00 0.27 0.00 0.07 +lampistes lampiste nom m p 0.03 0.20 0.02 0.20 +lampons lampon nom m p 0.00 0.07 0.00 0.07 +lamproie lamproie nom f s 0.04 0.41 0.03 0.07 +lamproies lamproie nom f p 0.04 0.41 0.01 0.34 +lampé lamper ver m s 0.41 1.69 0.00 0.20 par:pas; +lampée lampée nom f s 0.26 3.31 0.25 2.50 +lampées lampée nom f p 0.26 3.31 0.01 0.81 +lampyres lampyre nom m p 0.01 0.07 0.01 0.07 +lamé lamé adj m s 0.56 1.22 0.56 0.81 +lamée lamé adj f s 0.56 1.22 0.00 0.07 +lamées lamer ver f p 0.01 0.20 0.00 0.07 par:pas; +lamés lamé adj m p 0.56 1.22 0.00 0.34 +lance_engins lance_engins nom m 0.02 0.00 0.02 0.00 +lance_flamme lance_flamme nom m s 0.06 0.00 0.06 0.00 +lance_flammes lance_flammes nom m 1.06 0.61 1.06 0.61 +lance_fusée lance_fusée nom m s 0.01 0.00 0.01 0.00 +lance_fusées lance_fusées nom m 0.12 0.61 0.12 0.61 +lance_grenade lance_grenade nom m s 0.02 0.00 0.02 0.00 +lance_grenades lance_grenades nom m 0.34 0.00 0.34 0.00 +lance_missiles lance_missiles nom m 0.26 0.07 0.26 0.07 +lance_pierre lance_pierre nom m s 0.25 0.07 0.25 0.07 +lance_pierres lance_pierres nom m 0.39 1.42 0.39 1.42 +lance_roquette lance_roquette nom m s 0.06 0.00 0.06 0.00 +lance_roquettes lance_roquettes nom m 0.72 0.14 0.72 0.14 +lance_torpille lance_torpille nom m s 0.00 0.07 0.00 0.07 +lance_torpilles lance_torpilles nom m 0.03 0.41 0.03 0.41 +lance lancer ver 75.08 165.07 18.30 19.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +lancelot lancelot nom m s 0.00 0.14 0.00 0.14 +lancement lancement nom m s 8.88 2.03 8.63 1.96 +lancements lancement nom m p 8.88 2.03 0.25 0.07 +lancent lancer ver 75.08 165.07 1.31 4.05 ind:pre:3p; +lancequine lancequiner ver 0.00 0.34 0.00 0.27 ind:pre:1s;ind:pre:3s; +lancequiner lancequiner ver 0.00 0.34 0.00 0.07 inf; +lancer lancer ver 75.08 165.07 18.42 26.08 inf; +lancera lancer ver 75.08 165.07 0.90 0.41 ind:fut:3s; +lancerai lancer ver 75.08 165.07 0.65 0.20 ind:fut:1s; +lanceraient lancer ver 75.08 165.07 0.01 0.07 cnd:pre:3p; +lancerais lancer ver 75.08 165.07 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +lancerait lancer ver 75.08 165.07 0.15 0.68 cnd:pre:3s; +lanceras lancer ver 75.08 165.07 0.18 0.07 ind:fut:2s; +lancerez lancer ver 75.08 165.07 0.26 0.00 ind:fut:2p; +lancerons lanceron nom m p 0.18 0.00 0.18 0.00 +lanceront lancer ver 75.08 165.07 0.16 0.14 ind:fut:3p; +lancers lancer nom m p 4.04 2.03 0.68 0.34 +lances lancer ver 75.08 165.07 1.91 0.47 ind:pre:2s;sub:pre:2s; +lancette lancette nom f s 0.29 0.27 0.29 0.27 +lanceur lanceur nom m s 2.25 0.54 1.84 0.34 +lanceurs lanceur nom m p 2.25 0.54 0.39 0.20 +lanceuse lanceur nom f s 2.25 0.54 0.02 0.00 +lancez lancer ver 75.08 165.07 5.83 0.47 imp:pre:2p;ind:pre:2p; +lancier lancier nom m s 0.55 0.88 0.23 0.14 +lanciers lancier nom m p 0.55 0.88 0.31 0.74 +lanciez lancer ver 75.08 165.07 0.10 0.00 ind:imp:2p; +lancinait lanciner ver 0.14 0.74 0.00 0.14 ind:imp:3s; +lancinance lancinance nom f s 0.00 0.07 0.00 0.07 +lancinant lancinant adj m s 0.48 5.34 0.19 1.89 +lancinante lancinant adj f s 0.48 5.34 0.29 2.16 +lancinantes lancinant adj f p 0.48 5.34 0.01 0.95 +lancinants lancinant adj m p 0.48 5.34 0.00 0.34 +lancine lanciner ver 0.14 0.74 0.04 0.07 ind:pre:1s;ind:pre:3s; +lanciné lanciner ver m s 0.14 0.74 0.00 0.14 par:pas; +lancions lancer ver 75.08 165.07 0.05 0.20 ind:imp:1p; +lancèrent lancer ver 75.08 165.07 0.21 1.42 ind:pas:3p; +lancé lancer ver m s 75.08 165.07 17.31 24.66 par:pas; +lancée lancer ver f s 75.08 165.07 3.02 6.76 par:pas; +lancées lancer ver f p 75.08 165.07 0.68 2.84 par:pas; +lancéolés lancéolé adj m p 0.00 0.07 0.00 0.07 +lancés lancer ver m p 75.08 165.07 1.20 5.27 par:pas; +land land nom m s 2.77 1.96 2.56 1.96 +landais landais adj m 0.01 0.74 0.01 0.20 +landaise landais nom f s 0.01 0.07 0.01 0.00 +landaises landais adj f p 0.01 0.74 0.00 0.14 +landau landau nom m s 1.01 4.59 0.98 3.65 +landaulet landaulet nom m s 0.00 0.07 0.00 0.07 +landaus landau nom m p 1.01 4.59 0.04 0.95 +lande lande nom f s 1.69 10.47 1.57 8.04 +landerneau landerneau nom m s 0.00 0.07 0.00 0.07 +landes lande nom f p 1.69 10.47 0.12 2.43 +landiers landier nom m p 0.00 0.20 0.00 0.20 +landing landing nom m s 0.10 0.00 0.10 0.00 +landlord landlord nom m s 0.01 0.00 0.01 0.00 +lands land nom m p 2.77 1.96 0.21 0.00 +landsturm landsturm nom m s 0.00 0.14 0.00 0.14 +landwehr landwehr nom f s 0.00 0.27 0.00 0.27 +langage langage nom m s 16.68 37.36 16.56 36.01 +langages langage nom m p 16.68 37.36 0.11 1.35 +langagiers langagier adj m p 0.00 0.20 0.00 0.20 +lange langer ver 1.06 1.15 0.55 0.00 ind:pre:3s; +langeait langer ver 1.06 1.15 0.00 0.14 ind:imp:3s; +langeant langer ver 1.06 1.15 0.00 0.07 par:pre; +langer langer ver 1.06 1.15 0.23 0.68 inf; +langes lange nom m p 0.85 1.62 0.75 1.55 +langoureuse langoureux adj f s 0.77 3.04 0.09 1.08 +langoureusement langoureusement adv 0.02 0.47 0.02 0.47 +langoureuses langoureux adj f p 0.77 3.04 0.01 0.27 +langoureux langoureux adj m 0.77 3.04 0.67 1.69 +langouste langouste nom f s 2.98 4.19 1.99 2.09 +langoustes langouste nom f p 2.98 4.19 0.99 2.09 +langoustine langoustine nom f s 0.48 0.47 0.22 0.00 +langoustines langoustine nom f p 0.48 0.47 0.26 0.47 +langé langer ver m s 1.06 1.15 0.28 0.20 par:pas; +langue langue nom f s 69.11 126.28 58.95 103.78 +langée langer ver f s 1.06 1.15 0.00 0.07 par:pas; +languedociens languedocien nom m p 0.00 0.07 0.00 0.07 +langues langue nom f p 69.11 126.28 10.17 22.50 +languette languette nom f s 0.10 0.81 0.09 0.54 +languettes languette nom f p 0.10 0.81 0.01 0.27 +langueur langueur nom f s 0.36 4.66 0.36 3.78 +langueurs langueur nom f p 0.36 4.66 0.00 0.88 +langui languir ver m s 5.99 3.72 0.34 0.20 par:pas; +languide languide adj s 0.20 1.55 0.10 1.28 +languides languide adj m p 0.20 1.55 0.10 0.27 +languir languir ver 5.99 3.72 1.45 1.08 inf; +languirait languir ver 5.99 3.72 0.01 0.07 cnd:pre:3s; +languirent languir ver 5.99 3.72 0.01 0.07 ind:pas:3p; +languiront languir ver 5.99 3.72 0.00 0.07 ind:fut:3p; +languis languir ver m p 5.99 3.72 1.80 0.27 ind:pre:1s;ind:pre:2s;par:pas; +languissaient languir ver 5.99 3.72 0.12 0.14 ind:imp:3p; +languissais languir ver 5.99 3.72 0.46 0.41 ind:imp:1s;ind:imp:2s; +languissait languir ver 5.99 3.72 0.49 0.68 ind:imp:3s; +languissamment languissamment adv 0.01 0.34 0.01 0.34 +languissant languissant adj m s 0.91 2.16 0.49 0.81 +languissante languissant adj f s 0.91 2.16 0.28 0.74 +languissantes languissant adj f p 0.91 2.16 0.15 0.20 +languissants languissant adj m p 0.91 2.16 0.00 0.41 +languisse languir ver 5.99 3.72 0.02 0.00 sub:pre:1s;sub:pre:3s; +languissent languir ver 5.99 3.72 0.03 0.07 ind:pre:3p; +languisses languir ver 5.99 3.72 0.01 0.00 sub:pre:2s; +languissons languir ver 5.99 3.72 0.14 0.00 ind:pre:1p; +languit languir ver 5.99 3.72 1.10 0.47 ind:pre:3s;ind:pas:3s; +lanière lanière nom f s 0.85 6.69 0.42 2.64 +lanières lanière nom f p 0.85 6.69 0.43 4.05 +lanlaire lanlaire adv 0.00 0.14 0.00 0.14 +lanoline lanoline nom f s 0.09 0.14 0.09 0.14 +lansquenet lansquenet nom m s 1.36 1.76 1.36 0.41 +lansquenets lansquenet nom m p 1.36 1.76 0.00 1.35 +lansquine lansquine nom f s 0.00 0.07 0.00 0.07 +lansquiner lansquiner ver 0.00 0.07 0.00 0.07 inf; +lanternant lanterner ver 0.10 0.20 0.00 0.07 par:pre; +lanterne_tempête lanterne_tempête nom f s 0.00 0.07 0.00 0.07 +lanterne lanterne nom f s 3.09 16.82 2.35 11.55 +lanterner lanterner ver 0.10 0.20 0.06 0.14 inf; +lanternes lanterne nom f p 3.09 16.82 0.73 5.27 +lanternez lanterner ver 0.10 0.20 0.02 0.00 imp:pre:2p;ind:pre:2p; +lanternier lanternier nom m s 0.00 0.14 0.00 0.14 +lanterné lanterner ver m s 0.10 0.20 0.01 0.00 par:pas; +lança lancer ver 75.08 165.07 0.79 38.72 ind:pas:3s; +lançai lancer ver 75.08 165.07 0.04 1.49 ind:pas:1s; +lançaient lancer ver 75.08 165.07 0.63 5.81 ind:imp:3p; +lançais lancer ver 75.08 165.07 0.41 1.49 ind:imp:1s;ind:imp:2s; +lançait lancer ver 75.08 165.07 0.89 15.41 ind:imp:3s; +lanthane lanthane nom m s 0.01 0.00 0.01 0.00 +lançant lancer ver 75.08 165.07 0.60 8.11 par:pre; +lanças lancer ver 75.08 165.07 0.00 0.14 ind:pas:2s; +lançâmes lancer ver 75.08 165.07 0.00 0.14 ind:pas:1p; +lançons lancer ver 75.08 165.07 0.81 0.34 imp:pre:1p;ind:pre:1p; +lançât lancer ver 75.08 165.07 0.00 0.41 sub:imp:3s; +lao lao nom m s 0.02 0.14 0.01 0.07 +laos lao nom m p 0.02 0.14 0.01 0.07 +laotien laotien adj m s 0.02 0.20 0.02 0.00 +laotienne laotien adj f s 0.02 0.20 0.00 0.14 +laotiens laotien nom m p 0.05 0.00 0.05 0.00 +lap lap nom m s 0.08 0.27 0.08 0.27 +lapais laper ver 1.41 2.36 0.00 0.07 ind:imp:1s; +lapait laper ver 1.41 2.36 0.00 0.41 ind:imp:3s; +lapalissade lapalissade nom f s 0.01 0.00 0.01 0.00 +lapant laper ver 1.41 2.36 0.00 0.47 par:pre; +laparoscopie laparoscopie nom f s 0.09 0.00 0.09 0.00 +laparotomie laparotomie nom f s 0.22 0.07 0.22 0.07 +lape laper ver 1.41 2.36 1.33 0.41 imp:pre:2s;ind:pre:3s; +lapement lapement nom m s 0.00 0.27 0.00 0.07 +lapements lapement nom m p 0.00 0.27 0.00 0.20 +lapent laper ver 1.41 2.36 0.00 0.07 ind:pre:3p; +laper laper ver 1.41 2.36 0.07 0.68 inf; +lapereau lapereau nom m s 0.31 0.27 0.29 0.00 +lapereaux lapereau nom m p 0.31 0.27 0.02 0.27 +lapida lapider ver 0.93 1.35 0.00 0.07 ind:pas:3s; +lapidaire lapidaire adj s 0.03 0.88 0.01 0.34 +lapidaires lapidaire adj p 0.03 0.88 0.02 0.54 +lapidait lapider ver 0.93 1.35 0.02 0.14 ind:imp:3s; +lapidant lapider ver 0.93 1.35 0.00 0.07 par:pre; +lapidation lapidation nom f s 0.27 0.14 0.25 0.07 +lapidations lapidation nom f p 0.27 0.14 0.02 0.07 +lapide lapider ver 0.93 1.35 0.13 0.07 ind:pre:3s; +lapident lapider ver 0.93 1.35 0.01 0.00 ind:pre:3p; +lapider lapider ver 0.93 1.35 0.27 0.34 inf; +lapiderait lapider ver 0.93 1.35 0.01 0.07 cnd:pre:3s; +lapideras lapider ver 0.93 1.35 0.01 0.00 ind:fut:2s; +lapidez lapider ver 0.93 1.35 0.07 0.00 imp:pre:2p; +lapidification lapidification nom f s 0.00 0.07 0.00 0.07 +lapidifiés lapidifier ver m p 0.00 0.07 0.00 0.07 par:pas; +lapidèrent lapider ver 0.93 1.35 0.14 0.00 ind:pas:3p; +lapidé lapider ver m s 0.93 1.35 0.19 0.41 par:pas; +lapidée lapider ver f s 0.93 1.35 0.07 0.07 par:pas; +lapidés lapider ver m p 0.93 1.35 0.01 0.14 par:pas; +lapin lapin nom m s 39.16 32.43 26.59 16.76 +lapine lapin nom f s 39.16 32.43 0.25 0.41 +lapiner lapiner ver 0.00 0.07 0.00 0.07 inf; +lapines lapine nom f p 0.13 0.00 0.13 0.00 +lapinière lapinière nom f s 0.01 0.00 0.01 0.00 +lapins lapin nom m p 39.16 32.43 12.32 15.14 +lapis_lazuli lapis_lazuli nom m 0.01 0.41 0.01 0.41 +lapis lapis nom m 0.03 0.14 0.03 0.14 +lapon lapon nom m s 2.21 0.14 2.21 0.07 +lapone lapon adj f s 1.44 0.14 0.01 0.07 +lapones lapon adj f p 1.44 0.14 0.00 0.07 +laponne lapon adj f s 1.44 0.14 0.10 0.00 +lapons lapon nom m p 2.21 0.14 0.01 0.00 +lappant lapper ver 0.00 0.47 0.00 0.14 par:pre; +lapper lapper ver 0.00 0.47 0.00 0.27 inf; +lappé lapper ver m s 0.00 0.47 0.00 0.07 par:pas; +laps laps nom m 0.57 2.23 0.57 2.23 +lapsus lapsus nom m 0.93 1.62 0.93 1.62 +lapé laper ver m s 1.41 2.36 0.00 0.27 par:pas; +lapées laper ver f p 1.41 2.36 0.01 0.00 par:pas; +laquaient laquer ver 0.12 3.72 0.00 0.07 ind:imp:3p; +laquais laquais nom m 1.15 2.36 1.15 2.36 +laquait laquer ver 0.12 3.72 0.00 0.07 ind:imp:3s; +laque laque nom f s 0.79 2.70 0.79 2.09 +laquelle laquelle pro_rel f s 68.94 185.27 66.95 182.36 +laquer laquer ver 0.12 3.72 0.01 0.07 inf; +laquerai laquer ver 0.12 3.72 0.00 0.07 ind:fut:1s; +laques laque nom f p 0.79 2.70 0.00 0.61 +laqué laqué adj m s 0.66 3.38 0.47 1.49 +laquée laqué adj f s 0.66 3.38 0.14 0.81 +laquées laqué adj f p 0.66 3.38 0.01 0.14 +laqués laqué adj m p 0.66 3.38 0.04 0.95 +larbin larbin nom m s 3.17 3.72 2.24 1.96 +larbineries larbinerie nom f p 0.00 0.07 0.00 0.07 +larbins larbin nom m p 3.17 3.72 0.93 1.76 +larcin larcin nom m s 0.60 2.30 0.43 1.22 +larcins larcin nom m p 0.60 2.30 0.17 1.08 +lard lard nom m s 8.62 11.28 8.49 11.01 +larda larder ver 0.07 1.35 0.00 0.07 ind:pas:3s; +lardage lardage nom m s 0.00 0.07 0.00 0.07 +lardais larder ver 0.07 1.35 0.00 0.07 ind:imp:1s; +lardait larder ver 0.07 1.35 0.00 0.14 ind:imp:3s; +lardant larder ver 0.07 1.35 0.00 0.07 par:pre; +larde larder ver 0.07 1.35 0.01 0.14 ind:pre:1s;ind:pre:3s; +larder larder ver 0.07 1.35 0.04 0.41 inf; +lardeuss lardeuss nom m 0.00 0.68 0.00 0.68 +lardeux lardeux adj m 0.00 0.07 0.00 0.07 +lardon lardon nom m s 0.83 1.76 0.57 0.61 +lardons lardon nom m p 0.83 1.76 0.26 1.15 +lards lard nom m p 8.62 11.28 0.13 0.27 +lardé larder ver m s 0.07 1.35 0.02 0.27 par:pas; +lardu lardu nom m s 0.03 3.85 0.01 1.49 +lardée larder ver f s 0.07 1.35 0.00 0.07 par:pas; +lardées larder ver f p 0.07 1.35 0.00 0.07 par:pas; +lardus lardu nom m p 0.03 3.85 0.02 2.36 +lare lare adj m s 0.27 0.14 0.00 0.07 +lares lare adj m p 0.27 0.14 0.27 0.07 +larfeuil larfeuil nom m s 0.13 0.27 0.13 0.20 +larfeuille larfeuille nom m s 0.16 0.41 0.16 0.34 +larfeuilles larfeuille nom m p 0.16 0.41 0.00 0.07 +larfeuils larfeuil nom m p 0.13 0.27 0.00 0.07 +largable largable adj f s 0.02 0.00 0.02 0.00 +largage largage nom m s 1.36 0.07 1.34 0.07 +largages largage nom m p 1.36 0.07 0.02 0.00 +large large adj s 18.66 107.50 14.25 70.54 +largement largement adv 5.98 26.76 5.98 26.76 +larges large adj p 18.66 107.50 4.41 36.96 +largesse largesse nom f s 0.42 2.23 0.08 0.88 +largesses largesse nom f p 0.42 2.23 0.34 1.35 +largeur largeur nom f s 1.58 11.89 1.55 11.42 +largeurs largeur nom f p 1.58 11.89 0.02 0.47 +larghetto larghetto nom m s 0.00 0.07 0.00 0.07 +largo largo adv 0.94 0.00 0.94 0.00 +largua larguer ver 14.61 6.89 0.03 0.20 ind:pas:3s; +larguaient larguer ver 14.61 6.89 0.01 0.07 ind:imp:3p; +larguais larguer ver 14.61 6.89 0.05 0.14 ind:imp:1s; +larguait larguer ver 14.61 6.89 0.08 0.41 ind:imp:3s; +larguant larguer ver 14.61 6.89 0.08 0.20 par:pre; +largue larguer ver 14.61 6.89 2.13 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +larguent larguer ver 14.61 6.89 0.27 0.20 ind:pre:3p; +larguer larguer ver 14.61 6.89 4.16 2.30 inf; +larguera larguer ver 14.61 6.89 0.16 0.00 ind:fut:3s; +larguerai larguer ver 14.61 6.89 0.04 0.07 ind:fut:1s; +larguerait larguer ver 14.61 6.89 0.03 0.07 cnd:pre:3s; +larguerez larguer ver 14.61 6.89 0.02 0.00 ind:fut:2p; +largueront larguer ver 14.61 6.89 0.02 0.00 ind:fut:3p; +largues larguer ver 14.61 6.89 0.30 0.07 ind:pre:2s; +largueur largueur nom m s 0.02 0.00 0.02 0.00 +larguez larguer ver 14.61 6.89 1.01 0.20 imp:pre:2p;ind:pre:2p; +larguiez larguer ver 14.61 6.89 0.00 0.07 ind:imp:2p; +larguons larguer ver 14.61 6.89 0.00 0.07 imp:pre:1p; +largué larguer ver m s 14.61 6.89 4.20 1.28 par:pas; +larguée larguer ver f s 14.61 6.89 1.49 0.61 par:pas; +larguées largué adj f p 0.87 0.95 0.21 0.14 +largués larguer ver m p 14.61 6.89 0.45 0.27 par:pas; +larigot larigot nom m s 0.00 0.41 0.00 0.41 +larme larme nom f s 45.71 133.51 5.15 10.81 +larmes larme nom f p 45.71 133.51 40.56 122.70 +larmichette larmichette nom f s 0.01 0.27 0.01 0.20 +larmichettes larmichette nom f p 0.01 0.27 0.00 0.07 +larmiers larmier nom m p 0.00 0.07 0.00 0.07 +larmoie larmoyer ver 0.28 1.28 0.10 0.27 ind:pre:3s; +larmoiement larmoiement nom m s 0.00 0.20 0.00 0.14 +larmoiements larmoiement nom m p 0.00 0.20 0.00 0.07 +larmoient larmoyer ver 0.28 1.28 0.00 0.07 ind:pre:3p; +larmoyait larmoyer ver 0.28 1.28 0.01 0.20 ind:imp:3s; +larmoyant larmoyant adj m s 0.84 2.91 0.32 0.54 +larmoyante larmoyant adj f s 0.84 2.91 0.27 1.35 +larmoyantes larmoyant adj f p 0.84 2.91 0.09 0.20 +larmoyants larmoyant adj m p 0.84 2.91 0.16 0.81 +larmoyer larmoyer ver 0.28 1.28 0.15 0.41 inf; +larmoyeur larmoyeur adj m s 0.00 0.07 0.00 0.07 +larmoyons larmoyer ver 0.28 1.28 0.00 0.07 imp:pre:1p; +larmoyé larmoyer ver m s 0.28 1.28 0.00 0.07 par:pas; +larron larron nom m s 0.51 1.82 0.34 0.95 +larronne larronner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +larrons larron nom m p 0.51 1.82 0.17 0.88 +larsen larsen nom m s 0.89 0.34 0.89 0.34 +larvaire larvaire adj s 0.09 1.08 0.07 0.68 +larvaires larvaire adj p 0.09 1.08 0.03 0.41 +larve larve nom f s 3.52 3.92 1.92 1.69 +larves larve nom f p 3.52 3.92 1.61 2.23 +larvicide larvicide nom m s 0.01 0.00 0.01 0.00 +larvé larvé adj m s 0.03 0.88 0.00 0.14 +larvée larvé adj f s 0.03 0.88 0.03 0.61 +larvées larvé adj f p 0.03 0.88 0.00 0.14 +laryngite laryngite nom f s 0.27 0.14 0.27 0.14 +laryngologique laryngologique adj f s 0.00 0.07 0.00 0.07 +laryngologiste laryngologiste nom s 0.00 0.14 0.00 0.14 +laryngoscope laryngoscope nom m s 0.19 0.07 0.18 0.00 +laryngoscopes laryngoscope nom m p 0.19 0.07 0.01 0.07 +laryngoscopie laryngoscopie nom f s 0.10 0.00 0.10 0.00 +laryngé laryngé adj m s 0.09 0.07 0.09 0.00 +laryngée laryngé adj f s 0.09 0.07 0.00 0.07 +larynx larynx nom m 0.94 1.55 0.94 1.55 +las las ono 0.12 0.74 0.12 0.74 +lasagne lasagne nom f s 1.94 0.41 0.15 0.00 +lasagnes lasagne nom f p 1.94 0.41 1.79 0.41 +lascar lascar nom m s 1.34 3.92 0.79 1.89 +lascars lascar nom m p 1.34 3.92 0.55 2.03 +lascif lascif adj m s 1.52 2.50 0.46 0.74 +lascifs lascif adj m p 1.52 2.50 0.05 0.27 +lascive lascif adj f s 1.52 2.50 0.21 0.54 +lascivement lascivement adv 0.02 0.27 0.02 0.27 +lascives lascif adj f p 1.52 2.50 0.80 0.95 +lascivité lascivité nom f s 0.16 0.34 0.16 0.27 +lascivités lascivité nom f p 0.16 0.34 0.00 0.07 +laser laser nom m s 7.87 0.95 5.87 0.81 +lasers laser nom m p 7.87 0.95 2.00 0.14 +lassa lasser ver 7.43 24.32 0.05 0.74 ind:pas:3s; +lassai lasser ver 7.43 24.32 0.00 0.20 ind:pas:1s; +lassaient lasser ver 7.43 24.32 0.01 0.95 ind:imp:3p; +lassais lasser ver 7.43 24.32 0.08 0.68 ind:imp:1s;ind:imp:2s; +lassait lasser ver 7.43 24.32 0.06 2.91 ind:imp:3s; +lassant lassant adj m s 0.67 1.28 0.58 0.61 +lassante lassant adj f s 0.67 1.28 0.05 0.41 +lassantes lassant adj f p 0.67 1.28 0.02 0.20 +lassants lassant adj m p 0.67 1.28 0.02 0.07 +lasse las adj f s 16.46 35.00 8.33 10.07 +lassent lasser ver 7.43 24.32 0.50 0.74 ind:pre:3p; +lasser lasser ver 7.43 24.32 1.22 5.88 inf; +lassera lasser ver 7.43 24.32 0.39 0.00 ind:fut:3s; +lasserai lasser ver 7.43 24.32 0.22 0.47 ind:fut:1s; +lasseraient lasser ver 7.43 24.32 0.00 0.14 cnd:pre:3p; +lasserais lasser ver 7.43 24.32 0.04 0.27 cnd:pre:1s;cnd:pre:2s; +lasserait lasser ver 7.43 24.32 0.01 0.20 cnd:pre:3s; +lasserez lasser ver 7.43 24.32 0.02 0.00 ind:fut:2p; +lasseront lasser ver 7.43 24.32 0.04 0.07 ind:fut:3p; +lasses lasser ver 7.43 24.32 0.18 0.00 ind:pre:2s; +lassez lasser ver 7.43 24.32 0.10 0.14 imp:pre:2p;ind:pre:2p; +lassitude lassitude nom f s 1.57 17.09 1.57 16.82 +lassitudes lassitude nom f p 1.57 17.09 0.00 0.27 +lasso lasso nom m s 1.02 1.28 0.94 1.08 +lassons lasser ver 7.43 24.32 0.00 0.07 ind:pre:1p; +lassos lasso nom m p 1.02 1.28 0.09 0.20 +lassèrent lasser ver 7.43 24.32 0.00 0.27 ind:pas:3p; +lassé lasser ver m s 7.43 24.32 1.78 3.31 par:pas; +lassée lasser ver f s 7.43 24.32 0.42 1.42 par:pas; +lassées lasser ver f p 7.43 24.32 0.02 0.34 par:pas; +lassés lasser ver m p 7.43 24.32 0.23 0.68 par:pas; +lasure lasure nom f s 0.01 0.00 0.01 0.00 +latence latence nom f s 0.08 0.14 0.08 0.07 +latences latence nom f p 0.08 0.14 0.00 0.07 +latent latent adj m s 1.25 2.84 0.21 0.88 +latente latent adj f s 1.25 2.84 0.76 1.22 +latentes latent adj f p 1.25 2.84 0.14 0.47 +latents latent adj m p 1.25 2.84 0.14 0.27 +latex latex nom m 1.65 0.47 1.65 0.47 +laça lacer ver 0.81 2.23 0.00 0.20 ind:pas:3s; +laçage laçage nom m s 0.03 0.41 0.03 0.41 +laçais lacer ver 0.81 2.23 0.01 0.00 ind:imp:2s; +laçait lacer ver 0.81 2.23 0.01 0.14 ind:imp:3s; +laçant lacer ver 0.81 2.23 0.01 0.14 par:pre; +laticlave laticlave nom m s 0.00 0.07 0.00 0.07 +latifundistes latifundiste nom p 0.00 0.07 0.00 0.07 +latin latin nom m s 6.62 15.07 6.53 14.93 +latine latin adj f s 4.52 12.64 2.37 4.05 +latines latin adj f p 4.52 12.64 0.27 1.82 +latinisaient latiniser ver 0.00 0.20 0.00 0.07 ind:imp:3p; +latinismes latinisme nom m p 0.00 0.07 0.00 0.07 +latiniste latiniste nom s 0.03 0.27 0.02 0.20 +latinistes latiniste nom p 0.03 0.27 0.01 0.07 +latinisé latiniser ver m s 0.00 0.20 0.00 0.07 par:pas; +latinisée latiniser ver f s 0.00 0.20 0.00 0.07 par:pas; +latinité latinité nom f s 0.00 0.20 0.00 0.14 +latinités latinité nom f p 0.00 0.20 0.00 0.07 +latino_américain latino_américain nom m s 0.10 0.07 0.03 0.07 +latino_américain latino_américain nom f s 0.10 0.07 0.03 0.00 +latino_américain latino_américain nom m p 0.10 0.07 0.04 0.00 +latino latino nom m s 2.89 0.00 1.61 0.00 +latinos latino nom m p 2.89 0.00 1.27 0.00 +latins latin adj m p 4.52 12.64 0.10 2.30 +latitude latitude nom f s 1.45 2.91 1.09 1.76 +latitudes latitude nom f p 1.45 2.91 0.36 1.15 +latrine latrine nom f s 0.82 2.50 0.14 0.14 +latrines latrine nom f p 0.82 2.50 0.67 2.36 +lats lats nom m 0.09 0.00 0.09 0.00 +latte latte nom f s 1.15 9.46 0.76 2.03 +latter latter ver 0.29 0.07 0.11 0.07 inf; +lattes latte nom f p 1.15 9.46 0.39 7.43 +lattis lattis nom m 0.15 0.00 0.15 0.00 +latté latter ver m s 0.29 0.07 0.08 0.00 par:pas; +lattés latter ver m p 0.29 0.07 0.01 0.00 par:pas; +latéral latéral adj m s 2.10 5.68 0.77 0.81 +latérale latéral adj f s 2.10 5.68 1.00 2.77 +latéralement latéralement adv 0.25 1.08 0.25 1.08 +latérales latéral adj f p 2.10 5.68 0.15 1.35 +latéralisée latéralisé adj f s 0.02 0.00 0.02 0.00 +latéralité latéralité nom f s 0.00 0.07 0.00 0.07 +latéraux latéral adj m p 2.10 5.68 0.17 0.74 +latérite latérite nom f s 0.00 0.61 0.00 0.61 +latviens latvien nom m p 0.01 0.00 0.01 0.00 +laubé laubé nom s 0.00 0.07 0.00 0.07 +laudanum laudanum nom m s 0.45 0.20 0.45 0.20 +laudateur laudateur adj m s 0.00 0.07 0.00 0.07 +laudative laudatif adj f s 0.00 0.07 0.00 0.07 +laudes laude nom f p 0.00 0.47 0.00 0.47 +laurier_cerise laurier_cerise nom m s 0.00 0.20 0.00 0.07 +laurier_rose laurier_rose nom m s 0.14 1.69 0.04 0.20 +laurier laurier nom m s 2.27 9.32 0.90 3.58 +laurier_cerise laurier_cerise nom m p 0.00 0.20 0.00 0.14 +laurier_rose laurier_rose nom m p 0.14 1.69 0.10 1.49 +lauriers laurier nom m p 2.27 9.32 1.37 5.74 +lauréat lauréat nom m s 0.46 0.68 0.41 0.41 +lauréate lauréat adj f s 0.19 0.20 0.06 0.00 +lauréats lauréat nom m p 0.46 0.68 0.05 0.27 +lausannoises lausannois adj f p 0.00 0.07 0.00 0.07 +lauzes lauze nom f p 0.00 0.07 0.00 0.07 +lav lav nom m 0.01 0.14 0.01 0.14 +lava laver ver 74.35 69.53 0.07 3.38 ind:pas:3s; +lavable lavable adj s 0.06 0.47 0.05 0.27 +lavables lavable adj m p 0.06 0.47 0.01 0.20 +lavabo lavabo nom m s 3.38 16.89 2.56 13.85 +lavabos lavabo nom m p 3.38 16.89 0.82 3.04 +lavage lavage nom m s 5.09 3.24 5.01 2.64 +lavages lavage nom m p 5.09 3.24 0.09 0.61 +lavai laver ver 74.35 69.53 0.00 0.41 ind:pas:1s; +lavaient laver ver 74.35 69.53 0.05 1.69 ind:imp:3p; +lavais laver ver 74.35 69.53 1.36 0.95 ind:imp:1s;ind:imp:2s; +lavait laver ver 74.35 69.53 1.23 5.88 ind:imp:3s; +lavallière lavallière nom f s 0.03 0.95 0.02 0.88 +lavallières lavallière nom f p 0.03 0.95 0.01 0.07 +lavande lavande nom f s 1.53 7.23 1.53 6.82 +lavandes lavande nom f p 1.53 7.23 0.00 0.41 +lavandin lavandin nom m s 0.00 0.07 0.00 0.07 +lavandière lavandière nom f s 0.31 1.49 0.30 0.47 +lavandières lavandière nom f p 0.31 1.49 0.01 1.01 +lavant laver ver 74.35 69.53 0.56 2.03 par:pre; +lavasse lavasse nom f s 0.23 0.47 0.23 0.47 +lave_auto lave_auto nom m s 0.06 0.00 0.06 0.00 +lave_glace lave_glace nom m s 0.03 0.20 0.03 0.20 +lave_linge lave_linge nom m 0.83 0.00 0.83 0.00 +lave_mains lave_mains nom m 0.00 0.07 0.00 0.07 +lave_pont lave_pont nom m s 0.00 0.14 0.00 0.07 +lave_pont lave_pont nom m p 0.00 0.14 0.00 0.07 +lave_vaisselle lave_vaisselle nom m 0.88 0.20 0.88 0.20 +lave laver ver 74.35 69.53 16.98 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +lavedu lavedu nom s 0.00 0.07 0.00 0.07 +lavement lavement nom m s 1.38 0.68 1.21 0.68 +lavements lavement nom m p 1.38 0.68 0.17 0.00 +lavent laver ver 74.35 69.53 0.94 0.88 ind:pre:3p; +laver laver ver 74.35 69.53 34.01 30.68 ind:pre:2p;inf; +lavera laver ver 74.35 69.53 0.87 0.27 ind:fut:3s; +laverai laver ver 74.35 69.53 1.25 0.61 ind:fut:1s; +laverais laver ver 74.35 69.53 0.05 0.14 cnd:pre:1s;cnd:pre:2s; +laverait laver ver 74.35 69.53 0.04 0.54 cnd:pre:3s; +laveras laver ver 74.35 69.53 0.26 0.20 ind:fut:2s; +laverez laver ver 74.35 69.53 0.27 0.00 ind:fut:2p; +laverie laverie nom f s 2.42 1.01 2.27 0.88 +laveries laverie nom f p 2.42 1.01 0.14 0.14 +laverions laver ver 74.35 69.53 0.00 0.07 cnd:pre:1p; +laverons laver ver 74.35 69.53 0.04 0.07 ind:fut:1p; +laveront laver ver 74.35 69.53 0.01 0.14 ind:fut:3p; +laves laver ver 74.35 69.53 3.24 0.41 ind:pre:2s; +lavette lavette nom f s 1.57 1.28 1.20 1.22 +lavettes lavette nom f p 1.57 1.28 0.38 0.07 +laveur laveur nom m s 2.47 1.89 1.51 0.88 +laveurs laveur nom m p 2.47 1.89 0.95 0.14 +laveuse laveur nom f s 2.47 1.89 0.01 0.74 +laveuses laveuse nom f p 0.03 0.00 0.03 0.00 +lavez laver ver 74.35 69.53 2.68 0.34 imp:pre:2p;ind:pre:2p; +lavions laver ver 74.35 69.53 0.01 0.20 ind:imp:1p; +lavis lavis nom m 0.00 0.41 0.00 0.41 +lavoir lavoir nom m s 0.15 5.34 0.15 5.14 +lavoirs lavoir nom m p 0.15 5.34 0.00 0.20 +lavons laver ver 74.35 69.53 0.45 0.00 imp:pre:1p;ind:pre:1p; +lavèrent laver ver 74.35 69.53 0.01 0.34 ind:pas:3p; +lavé laver ver m s 74.35 69.53 6.95 8.38 par:pas; +lavée laver ver f s 74.35 69.53 1.91 2.64 par:pas; +lavées lavé adj f p 1.18 7.16 0.27 1.15 +lavure lavure nom f s 0.00 0.14 0.00 0.07 +lavures lavure nom f p 0.00 0.14 0.00 0.07 +lavés laver ver m p 74.35 69.53 0.86 1.01 par:pas; +laxatif laxatif nom m s 0.98 0.41 0.73 0.34 +laxatifs laxatif nom m p 0.98 0.41 0.24 0.07 +laxative laxatif adj f s 0.10 0.14 0.05 0.07 +laxatives laxatif adj f p 0.10 0.14 0.00 0.07 +laxisme laxisme nom m s 0.28 0.20 0.28 0.20 +laxiste laxiste adj s 0.45 0.20 0.25 0.20 +laxistes laxiste adj p 0.45 0.20 0.20 0.00 +laxité laxité nom f s 0.02 0.00 0.02 0.00 +laya layer ver 0.03 0.47 0.00 0.34 ind:pas:3s; +layer layer ver 0.03 0.47 0.03 0.14 inf; +layette layette nom f s 0.18 2.09 0.18 1.35 +layettes layette nom f p 0.18 2.09 0.00 0.74 +layon layon nom m s 0.00 6.89 0.00 5.95 +layons layon nom m p 0.00 6.89 0.00 0.95 +lazaret lazaret nom m s 0.07 0.20 0.06 0.07 +lazarets lazaret nom m p 0.07 0.20 0.01 0.14 +lazaro lazaro nom m s 0.27 0.14 0.27 0.14 +lazingue lazingue nom m s 0.00 0.27 0.00 0.27 +lazzi lazzi nom m s 0.00 1.35 0.00 0.68 +lazzis lazzi nom m p 0.00 1.35 0.00 0.68 +le le art_def m s 13652.76 18310.95 13652.76 18310.95 +leader leader nom m s 12.72 1.69 10.28 0.95 +leaders leader nom m p 12.72 1.69 2.44 0.74 +leadership leadership nom m s 0.38 0.14 0.38 0.14 +leasing leasing nom m s 0.24 0.00 0.24 0.00 +lebel lebel nom m s 0.00 1.35 0.00 0.81 +lebels lebel nom m p 0.00 1.35 0.00 0.54 +leben leben nom m s 0.02 0.27 0.02 0.27 +lecteur lecteur nom m s 6.09 25.81 2.86 12.03 +lecteurs lecteur nom m p 6.09 25.81 2.92 11.28 +lectorat lectorat nom m s 0.15 0.00 0.15 0.00 +lectrice lecteur nom f s 6.09 25.81 0.32 1.49 +lectrices lectrice nom f p 0.22 0.00 0.22 0.00 +lecture lecture nom f s 15.80 54.53 13.97 42.16 +lectures lecture nom f p 15.80 54.53 1.83 12.36 +ledit ledit adj m s 0.32 4.46 0.32 4.46 +legato legato adv 0.01 0.00 0.01 0.00 +leggins leggins nom f p 0.00 0.61 0.00 0.61 +leghorns leghorn nom f p 0.00 0.07 0.00 0.07 +lego lego nom m s 0.44 0.07 0.35 0.07 +legos lego nom m p 0.44 0.07 0.09 0.00 +legs legs nom m 1.34 1.49 1.34 1.49 +lei lei nom m p 0.80 0.34 0.80 0.34 +leishmaniose leishmaniose nom f s 0.06 0.00 0.06 0.00 +leitmotiv leitmotiv nom m s 0.06 1.22 0.06 1.22 +leitmotive leitmotive nom m p 0.00 0.07 0.00 0.07 +lek lek nom m s 0.01 0.00 0.01 0.00 +lem lem nom m s 0.16 0.00 0.16 0.00 +lemmes lemme nom m p 0.00 0.07 0.00 0.07 +lemming lemming nom m s 0.16 0.07 0.07 0.00 +lemmings lemming nom m p 0.16 0.07 0.09 0.07 +lendemain lendemain nom_sup m s 29.29 149.26 28.58 145.54 +lendemains lendemain nom_sup m p 29.29 149.26 0.71 3.72 +lent lent adj m s 16.41 64.12 9.15 23.31 +lente lent adj f s 16.41 64.12 4.67 21.55 +lentement lentement adv 26.48 156.55 26.48 156.55 +lentes lent adj f p 16.41 64.12 0.94 7.23 +lenteur lenteur nom f s 1.16 22.50 1.15 21.96 +lenteurs lenteur nom f p 1.16 22.50 0.01 0.54 +lenticulaires lenticulaire adj m p 0.01 0.00 0.01 0.00 +lenticules lenticule nom f p 0.00 0.07 0.00 0.07 +lentille lentille nom f s 4.66 8.24 1.22 0.74 +lentilles lentille nom f p 4.66 8.24 3.44 7.50 +lentisque lentisque nom m s 0.00 0.88 0.00 0.07 +lentisques lentisque nom m p 0.00 0.88 0.00 0.81 +lento lento adv 0.05 0.14 0.05 0.14 +lents lent adj m p 16.41 64.12 1.65 12.03 +lepton lepton nom m s 0.08 0.00 0.06 0.00 +leptonique leptonique adj m s 0.07 0.00 0.07 0.00 +leptons lepton nom m p 0.08 0.00 0.02 0.00 +lequel lequel pro_rel m s 64.31 137.09 59.66 133.99 +lerch lerch adv 0.00 0.07 0.00 0.07 +lerche lerche adv 0.00 4.12 0.00 4.12 +les les art_def p 8720.38 14662.30 8720.38 14662.30 +lesbianisme lesbianisme nom m s 0.12 0.07 0.12 0.07 +lesbien lesbien adj m s 8.24 1.15 0.49 0.00 +lesbienne lesbien adj f s 8.24 1.15 6.80 0.81 +lesbiennes lesbien nom f p 5.38 0.41 2.56 0.34 +lesdites lesdites adj f p 0.00 0.20 0.00 0.20 +lesdits lesdits adj m p 0.13 0.54 0.13 0.54 +lesquelles lesquelles pro_rel f p 11.75 43.11 11.60 41.55 +lesquels lesquels pro_rel m p 10.42 47.91 10.00 45.14 +lessiva lessiver ver 0.91 3.31 0.00 0.07 ind:pas:3s; +lessivage lessivage nom m s 0.02 0.20 0.02 0.20 +lessivaient lessiver ver 0.91 3.31 0.00 0.07 ind:imp:3p; +lessivait lessiver ver 0.91 3.31 0.00 0.14 ind:imp:3s; +lessivant lessiver ver 0.91 3.31 0.00 0.14 par:pre; +lessive lessive nom f s 8.51 8.78 8.09 7.70 +lessiver lessiver ver 0.91 3.31 0.12 0.88 inf; +lessiverait lessiver ver 0.91 3.31 0.00 0.07 cnd:pre:3s; +lessives lessive nom f p 8.51 8.78 0.42 1.08 +lessiveuse lessiveur nom f s 0.04 2.70 0.04 2.30 +lessiveuses lessiveuse nom f p 0.02 0.00 0.02 0.00 +lessivons lessiver ver 0.91 3.31 0.05 0.00 imp:pre:1p; +lessivé lessiver ver m s 0.91 3.31 0.50 1.08 par:pas; +lessivée lessiver ver f s 0.91 3.31 0.06 0.27 par:pas; +lessivés lessiver ver m p 0.91 3.31 0.05 0.54 par:pas; +lest lest nom m s 0.97 0.68 0.97 0.68 +leste leste adj s 0.61 1.42 0.50 0.95 +lestement lestement adv 0.02 0.68 0.02 0.68 +lester lester ver 2.27 2.70 1.97 0.41 inf; +lestera lester ver 2.27 2.70 0.01 0.00 ind:fut:3s; +lesterait lester ver 2.27 2.70 0.00 0.07 cnd:pre:3s; +lestes lester ver 2.27 2.70 0.14 0.00 ind:pre:2s; +lestez lester ver 2.27 2.70 0.01 0.00 ind:pre:2p; +lesté lester ver m s 2.27 2.70 0.07 1.08 par:pas; +lestée lester ver f s 2.27 2.70 0.03 0.41 par:pas; +lestées lester ver f p 2.27 2.70 0.01 0.07 par:pas; +lestés lester ver m p 2.27 2.70 0.01 0.54 par:pas; +let let adj 3.56 0.47 3.56 0.47 +letchis letchi nom m p 0.00 0.07 0.00 0.07 +leçon leçon nom f s 41.48 48.72 29.24 22.64 +leçons leçon nom f p 41.48 48.72 12.23 26.08 +lette lette nom s 0.03 0.00 0.01 0.00 +lettes lette nom p 0.03 0.00 0.01 0.00 +letton letton nom m s 0.14 0.34 0.10 0.07 +lettone letton adj f s 0.10 0.34 0.03 0.07 +lettonne letton adj f s 0.10 0.34 0.00 0.07 +lettonnes letton adj f p 0.10 0.34 0.00 0.07 +lettons letton nom m p 0.14 0.34 0.04 0.27 +lettrage lettrage nom m s 0.03 0.00 0.03 0.00 +lettre_clé lettre_clé nom f s 0.14 0.00 0.14 0.00 +lettre lettre nom f s 156.77 256.01 108.79 140.88 +lettres lettre nom f p 156.77 256.01 47.98 115.14 +lettreur lettreur nom m s 0.00 0.07 0.00 0.07 +lettrine lettrine nom f s 0.00 0.20 0.00 0.14 +lettrines lettrine nom f p 0.00 0.20 0.00 0.07 +lettriques lettrique adj m p 0.00 0.07 0.00 0.07 +lettristes lettriste adj p 0.00 0.07 0.00 0.07 +lettré lettré nom m s 0.31 2.30 0.19 1.35 +lettrée lettré adj f s 0.23 0.95 0.01 0.07 +lettrés lettré adj m p 0.23 0.95 0.16 0.41 +leu leu nom m s 0.92 4.73 0.92 4.73 +leucocytaire leucocytaire adj f s 0.01 0.00 0.01 0.00 +leucocyte leucocyte nom m s 0.10 0.20 0.01 0.00 +leucocytes leucocyte nom m p 0.10 0.20 0.09 0.20 +leucocytose leucocytose nom f s 0.03 0.00 0.03 0.00 +leucoplasie leucoplasie nom f s 0.01 0.07 0.01 0.07 +leucopénie leucopénie nom f s 0.01 0.07 0.01 0.07 +leucose leucose nom f s 0.00 0.41 0.00 0.41 +leucotomie leucotomie nom f s 0.00 0.07 0.00 0.07 +leucémie leucémie nom f s 1.90 0.61 1.72 0.54 +leucémies leucémie nom f p 1.90 0.61 0.17 0.07 +leucémique leucémique nom s 0.05 0.00 0.05 0.00 +leur leur pro_per p 283.82 427.50 277.53 415.00 +leurrais leurrer ver 1.36 1.96 0.01 0.07 ind:imp:1s; +leurrait leurrer ver 1.36 1.96 0.00 0.27 ind:imp:3s; +leurre leurre nom m s 2.67 2.91 2.12 2.16 +leurrent leurrer ver 1.36 1.96 0.01 0.07 ind:pre:3p; +leurrer leurrer ver 1.36 1.96 0.55 0.68 inf; +leurres leurre nom m p 2.67 2.91 0.55 0.74 +leurrez leurrer ver 1.36 1.96 0.09 0.07 imp:pre:2p;ind:pre:2p; +leurrons leurrer ver 1.36 1.96 0.14 0.27 imp:pre:1p; +leurré leurrer ver m s 1.36 1.96 0.09 0.27 par:pas; +leurrés leurrer ver m p 1.36 1.96 0.03 0.07 par:pas; +leurs leurs adj_pos 243.56 886.55 243.56 886.55 +lev lev nom m s 0.68 0.00 0.68 0.00 +leva lever ver 165.98 440.74 1.28 123.58 ind:pas:3s; +levage levage nom m s 0.02 0.34 0.02 0.34 +levai lever ver 165.98 440.74 0.07 10.27 ind:pas:1s; +levaient lever ver 165.98 440.74 0.20 5.88 ind:imp:3p; +levain levain nom m s 0.18 0.88 0.18 0.88 +levais lever ver 165.98 440.74 0.69 4.39 ind:imp:1s;ind:imp:2s; +levait lever ver 165.98 440.74 1.17 32.84 ind:imp:3s; +levant lever ver 165.98 440.74 1.36 28.78 par:pre; +levante levant adj f s 0.93 2.43 0.02 0.14 +levantin levantin adj m s 0.02 0.20 0.02 0.14 +levantines levantin nom f p 0.01 0.47 0.00 0.07 +levantins levantin nom m p 0.01 0.47 0.00 0.20 +lever lever ver 165.98 440.74 35.90 66.89 inf; +levers lever nom m p 4.92 9.12 0.16 0.34 +leveur leveur nom m s 0.03 0.34 0.02 0.07 +leveurs leveur nom m p 0.03 0.34 0.01 0.07 +leveuse leveur nom f s 0.03 0.34 0.00 0.20 +levez lever ver 165.98 440.74 22.23 2.23 imp:pre:2p;ind:pre:2p; +levier levier nom m s 3.46 5.27 3.24 3.45 +leviers levier nom m p 3.46 5.27 0.23 1.82 +leviez lever ver 165.98 440.74 0.35 0.07 ind:imp:2p; +levions lever ver 165.98 440.74 0.03 1.08 ind:imp:1p; +levâmes lever ver 165.98 440.74 0.00 0.34 ind:pas:1p; +levons lever ver 165.98 440.74 2.52 1.49 imp:pre:1p;ind:pre:1p; +levât lever ver 165.98 440.74 0.00 0.68 sub:imp:3s; +levreau levreau nom m s 0.00 0.14 0.00 0.07 +levreaux levreau nom m p 0.00 0.14 0.00 0.07 +levrette levrette nom f s 0.65 1.01 0.65 0.95 +levrettes levrette nom f p 0.65 1.01 0.00 0.07 +levèrent lever ver 165.98 440.74 0.12 7.50 ind:pas:3p; +levé lever ver m s 165.98 440.74 13.40 40.41 par:pas; +levée lever ver f s 165.98 440.74 6.41 13.78 par:pas; +levées lever ver f p 165.98 440.74 0.41 1.55 par:pas; +levure levure nom f s 1.05 0.81 1.00 0.81 +levures levure nom f p 1.05 0.81 0.05 0.00 +levés lever ver m p 165.98 440.74 0.58 6.08 par:pas; +lexical lexical adj m s 0.00 0.07 0.00 0.07 +lexicographes lexicographe nom p 0.00 0.07 0.00 0.07 +lexie lexie nom f s 0.05 0.07 0.05 0.07 +lexique lexique nom m s 0.11 0.95 0.11 0.68 +lexiques lexique nom m p 0.11 0.95 0.00 0.27 +lez lez pre 0.36 0.14 0.36 0.14 +li li nom m s 2.56 1.76 2.56 1.76 +lia lier ver 37.17 46.08 0.49 0.95 ind:pas:3s; +liage liage nom m s 0.01 0.00 0.01 0.00 +liai lier ver 37.17 46.08 0.00 0.41 ind:pas:1s; +liaient lier ver 37.17 46.08 0.14 0.95 ind:imp:3p; +liais lier ver 37.17 46.08 0.02 0.20 ind:imp:1s; +liaison liaison nom f s 20.34 31.96 18.41 26.69 +liaisons liaison nom f p 20.34 31.96 1.94 5.27 +liait lier ver 37.17 46.08 0.71 3.72 ind:imp:3s; +liane liane nom f s 0.77 4.59 0.34 1.08 +lianes liane nom f p 0.77 4.59 0.43 3.51 +liant lier ver 37.17 46.08 0.12 0.81 par:pre; +liante liant adj f s 0.20 0.54 0.14 0.14 +liants liant adj m p 0.20 0.54 0.02 0.14 +liard liard nom m s 0.23 0.54 0.19 0.27 +liardais liarder ver 0.00 0.07 0.00 0.07 ind:imp:1s; +liards liard nom m p 0.23 0.54 0.03 0.27 +liasse liasse nom f s 1.24 11.69 0.64 7.36 +liasses liasse nom f p 1.24 11.69 0.60 4.32 +libanais libanais nom m 0.87 1.69 0.85 1.42 +libanaise libanais adj f s 0.41 4.19 0.03 0.88 +libanaises libanaise nom f p 0.05 0.00 0.03 0.00 +libation libation nom f s 0.07 1.49 0.05 0.20 +libations libation nom f p 0.07 1.49 0.02 1.28 +libeccio libeccio nom m s 0.00 0.20 0.00 0.20 +libelle libelle nom m s 0.14 0.54 0.13 0.27 +libeller libeller ver 0.04 0.47 0.00 0.07 inf; +libelles libelle nom m p 0.14 0.54 0.01 0.27 +libellé libeller ver m s 0.04 0.47 0.04 0.07 par:pas; +libellée libeller ver f s 0.04 0.47 0.01 0.20 par:pas; +libellées libeller ver f p 0.04 0.47 0.00 0.14 par:pas; +libellule libellule nom f s 1.17 3.38 1.07 2.16 +libellules libellule nom f p 1.17 3.38 0.10 1.22 +liber liber nom m s 0.03 0.14 0.03 0.14 +libera libera nom m 0.16 0.07 0.16 0.07 +libero libero nom m s 0.00 0.07 0.00 0.07 +libertaire libertaire adj s 0.56 0.47 0.56 0.34 +libertaires libertaire nom p 0.02 0.14 0.01 0.07 +liberticide liberticide adj s 0.03 0.00 0.03 0.00 +libertin libertin nom m s 1.25 3.24 1.05 1.69 +libertinage libertinage nom m s 0.39 1.35 0.39 1.35 +libertine libertin adj f s 1.29 1.76 0.35 0.47 +libertines libertin adj f p 1.29 1.76 0.38 0.20 +libertins libertin nom m p 1.25 3.24 0.16 0.95 +liberté liberté nom f s 79.53 97.97 76.28 93.31 +libertés liberté nom f p 79.53 97.97 3.26 4.66 +libidinal libidinal adj m s 0.00 0.47 0.00 0.20 +libidinale libidinal adj f s 0.00 0.47 0.00 0.07 +libidinales libidinal adj f p 0.00 0.47 0.00 0.07 +libidinaux libidinal adj m p 0.00 0.47 0.00 0.14 +libidineuse libidineux adj f s 0.36 0.81 0.04 0.14 +libidineuses libidineux adj f p 0.36 0.81 0.00 0.07 +libidineux libidineux adj m 0.36 0.81 0.32 0.61 +libido libido nom f s 1.79 1.22 1.79 1.22 +libraire libraire nom s 2.10 5.34 1.67 4.26 +libraires libraire nom p 2.10 5.34 0.43 1.08 +librairie_papeterie librairie_papeterie nom f s 0.00 0.20 0.00 0.20 +librairie librairie nom f s 5.97 9.59 5.02 8.24 +librairies librairie nom f p 5.97 9.59 0.95 1.35 +libre_arbitre libre_arbitre nom m s 0.12 0.14 0.12 0.14 +libre_penseur libre_penseur nom m s 0.04 0.14 0.04 0.14 +libre_penseur libre_penseur nom f s 0.04 0.14 0.01 0.00 +libre_service libre_service nom m s 0.04 0.34 0.04 0.34 +libre_échange libre_échange nom m 0.32 0.14 0.32 0.14 +libre_échangiste libre_échangiste nom s 0.03 0.00 0.03 0.00 +libre libre adj s 134.42 167.91 110.36 130.14 +librement librement adv 6.80 12.84 6.80 12.84 +libres libre adj p 134.42 167.91 24.06 37.77 +librettiste librettiste nom s 0.01 0.14 0.01 0.07 +librettistes librettiste nom p 0.01 0.14 0.00 0.07 +libretto libretto nom m s 0.04 0.00 0.04 0.00 +libère libérer ver 75.77 48.51 11.66 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +libèrent libérer ver 75.77 48.51 0.91 0.68 ind:pre:3p; +libères libérer ver 75.77 48.51 1.74 0.00 ind:pre:1p;ind:pre:2s; +libéra libérer ver 75.77 48.51 0.14 2.09 ind:pas:3s; +libérable libérable nom s 0.09 0.00 0.07 0.00 +libérables libérable adj m p 0.07 0.27 0.01 0.00 +libérai libérer ver 75.77 48.51 0.02 0.07 ind:pas:1s; +libéraient libérer ver 75.77 48.51 0.16 0.81 ind:imp:3p; +libérais libérer ver 75.77 48.51 0.18 0.14 ind:imp:1s;ind:imp:2s; +libérait libérer ver 75.77 48.51 0.23 2.23 ind:imp:3s; +libéral libéral adj m s 3.07 7.23 1.12 3.04 +libérale libéral adj f s 3.07 7.23 1.11 2.03 +libéralement libéralement adv 0.00 0.47 0.00 0.47 +libérales libéral adj f p 3.07 7.23 0.14 1.49 +libéralisation libéralisation nom f s 0.04 0.27 0.04 0.27 +libéralisme libéralisme nom m s 0.22 1.49 0.22 1.49 +libéralité libéralité nom f s 0.11 0.54 0.11 0.14 +libéralités libéralité nom f p 0.11 0.54 0.00 0.41 +libérant libérer ver 75.77 48.51 0.23 2.16 par:pre; +libérateur libérateur nom m s 1.70 1.01 0.61 0.47 +libérateurs libérateur nom m p 1.70 1.01 1.07 0.47 +libération libération nom f s 8.43 45.00 8.31 44.86 +libérations libération nom f p 8.43 45.00 0.12 0.14 +libératoire libératoire adj f s 0.10 0.07 0.10 0.07 +libératrice libérateur adj f s 0.99 2.43 0.34 0.74 +libératrices libérateur adj f p 0.99 2.43 0.02 0.34 +libéraux libéral nom m p 1.47 1.62 0.97 0.61 +libérer libérer ver 75.77 48.51 26.16 14.53 inf;;inf;;inf;; +libérera libérer ver 75.77 48.51 1.48 0.27 ind:fut:3s; +libérerai libérer ver 75.77 48.51 0.62 0.00 ind:fut:1s; +libéreraient libérer ver 75.77 48.51 0.01 0.20 cnd:pre:3p; +libérerais libérer ver 75.77 48.51 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +libérerait libérer ver 75.77 48.51 0.63 0.41 cnd:pre:3s; +libéreras libérer ver 75.77 48.51 0.14 0.00 ind:fut:2s; +libérerez libérer ver 75.77 48.51 0.10 0.07 ind:fut:2p; +libérerons libérer ver 75.77 48.51 0.22 0.07 ind:fut:1p; +libéreront libérer ver 75.77 48.51 0.41 0.07 ind:fut:3p; +libérez libérer ver 75.77 48.51 6.65 0.34 imp:pre:2p;ind:pre:2p; +libérien libérien adj m s 0.01 0.00 0.01 0.00 +libériez libérer ver 75.77 48.51 0.12 0.00 ind:imp:2p; +libérions libérer ver 75.77 48.51 0.04 0.00 ind:imp:1p;sub:pre:1p; +libéro libéro nom m s 0.01 0.00 0.01 0.00 +libérons libérer ver 75.77 48.51 0.34 0.14 imp:pre:1p;ind:pre:1p; +libérât libérer ver 75.77 48.51 0.00 0.14 sub:imp:3s; +libérèrent libérer ver 75.77 48.51 0.04 0.34 ind:pas:3p; +libéré libérer ver m s 75.77 48.51 15.75 10.20 par:pas; +libérée libérer ver f s 75.77 48.51 3.60 4.46 par:pas; +libérées libérer ver f p 75.77 48.51 0.41 0.81 par:pas; +libérés libérer ver m p 75.77 48.51 3.59 3.65 par:pas; +libyen libyen adj m s 0.18 0.20 0.02 0.14 +libyenne libyen adj f s 0.18 0.20 0.14 0.07 +libyens libyen nom m p 0.11 0.07 0.10 0.00 +lice lice nom f s 0.63 1.42 0.63 1.22 +licence licence nom f s 8.27 7.84 7.37 7.03 +licences licence nom f p 8.27 7.84 0.90 0.81 +licencia licencier ver 5.93 1.49 0.01 0.00 ind:pas:3s; +licenciables licenciable adj p 0.00 0.07 0.00 0.07 +licenciai licencier ver 5.93 1.49 0.00 0.07 ind:pas:1s; +licenciaient licencier ver 5.93 1.49 0.01 0.07 ind:imp:3p; +licenciait licencier ver 5.93 1.49 0.16 0.07 ind:imp:3s; +licenciant licencier ver 5.93 1.49 0.02 0.00 par:pre; +licencie licencier ver 5.93 1.49 0.16 0.00 ind:pre:1s;ind:pre:3s; +licenciement licenciement nom m s 3.93 0.41 2.62 0.20 +licenciements licenciement nom m p 3.93 0.41 1.31 0.20 +licencient licencier ver 5.93 1.49 0.26 0.07 ind:pre:3p; +licencier licencier ver 5.93 1.49 1.61 0.27 inf; +licenciera licencier ver 5.93 1.49 0.02 0.00 ind:fut:3s; +licencieuse licencieux adj f s 0.68 0.68 0.12 0.14 +licencieuses licencieux adj f p 0.68 0.68 0.15 0.20 +licencieux licencieux adj m 0.68 0.68 0.41 0.34 +licenciez licencier ver 5.93 1.49 0.20 0.07 imp:pre:2p;ind:pre:2p; +licencié licencier ver m s 5.93 1.49 2.57 0.47 par:pas; +licenciée licencier ver f s 5.93 1.49 0.60 0.34 par:pas; +licenciées licencié nom f p 0.68 0.54 0.00 0.07 +licenciés licencier ver m p 5.93 1.49 0.31 0.07 par:pas; +lices lice nom f p 0.63 1.42 0.00 0.20 +lichant licher ver 0.27 0.61 0.00 0.20 par:pre; +lichas licher ver 0.27 0.61 0.27 0.00 ind:pas:2s; +liche liche nom m s 0.00 0.20 0.00 0.20 +lichen lichen nom m s 0.11 2.70 0.10 1.28 +lichens lichen nom m p 0.11 2.70 0.01 1.42 +licher licher ver 0.27 0.61 0.00 0.14 inf; +lichette lichette nom f s 0.15 0.74 0.15 0.61 +lichettes lichette nom f p 0.15 0.74 0.00 0.14 +lichotter lichotter ver 0.00 0.07 0.00 0.07 inf; +liché licher ver m s 0.27 0.61 0.00 0.07 par:pas; +lichée licher ver f s 0.27 0.61 0.00 0.14 par:pas; +lichées licher ver f p 0.27 0.61 0.00 0.07 par:pas; +liciers licier nom m p 0.00 0.07 0.00 0.07 +licite licite adj s 0.32 0.74 0.29 0.61 +licites licite adj f p 0.32 0.74 0.03 0.14 +licol licol nom m s 0.00 0.61 0.00 0.47 +licols licol nom m p 0.00 0.61 0.00 0.14 +licorne licorne nom f s 1.98 1.82 1.41 1.28 +licornes licorne nom f p 1.98 1.82 0.57 0.54 +licou licou nom m s 0.03 0.61 0.03 0.54 +licous licou nom m p 0.03 0.61 0.00 0.07 +licteur licteur nom m s 0.00 0.34 0.00 0.07 +licteurs licteur nom m p 0.00 0.34 0.00 0.27 +licéité licéité nom f s 0.00 0.07 0.00 0.07 +lido lido nom m s 0.07 0.00 0.07 0.00 +lidocaïne lidocaïne nom f s 0.36 0.00 0.36 0.00 +lie_de_vin lie_de_vin adj 0.00 1.08 0.00 1.08 +lie lier ver 37.17 46.08 4.02 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lied lied nom m s 0.06 0.54 0.01 0.07 +lieder lied nom m p 0.06 0.54 0.04 0.47 +lien lien nom m s 35.89 38.38 23.47 18.18 +liens lien nom m p 35.89 38.38 12.42 20.20 +lient lier ver 37.17 46.08 0.61 0.27 ind:pre:3p; +lier lier ver 37.17 46.08 5.07 6.62 inf; +liera lier ver 37.17 46.08 0.05 0.07 ind:fut:3s; +lierais lier ver 37.17 46.08 0.02 0.00 cnd:pre:1s; +lierait lier ver 37.17 46.08 0.02 0.27 cnd:pre:3s; +lieras lier ver 37.17 46.08 0.14 0.07 ind:fut:2s; +lieront lier ver 37.17 46.08 0.03 0.14 ind:fut:3p; +lierre lierre nom m s 0.43 6.35 0.42 6.08 +lierres lierre nom m p 0.43 6.35 0.01 0.27 +lies lier ver 37.17 46.08 0.29 0.00 ind:pre:2s;sub:pre:2s; +liesse liesse nom f s 1.39 2.23 1.39 2.16 +liesses liesse nom f p 1.39 2.23 0.00 0.07 +lieu_dit lieu_dit nom m s 0.00 0.88 0.00 0.88 +lieu lieu nom m s 182.00 267.57 153.12 213.38 +lieudit lieudit nom m s 0.00 0.14 0.00 0.07 +lieudits lieudit nom m p 0.00 0.14 0.00 0.07 +lieue lieue nom f s 1.93 10.47 0.19 1.08 +lieues lieue nom f p 1.93 10.47 1.74 9.39 +lieur lieur nom m s 0.01 0.14 0.01 0.00 +lieus lieu nom m p 182.00 267.57 0.15 0.07 +lieuse lieur nom f s 0.01 0.14 0.00 0.14 +lieutenant_colonel lieutenant_colonel nom m s 1.74 1.42 1.73 1.42 +lieutenant_pilote lieutenant_pilote nom m s 0.00 0.07 0.00 0.07 +lieutenant lieutenant nom m s 80.99 54.93 80.05 52.36 +lieutenant_colonel lieutenant_colonel nom m p 1.74 1.42 0.01 0.00 +lieutenants lieutenant nom m p 80.99 54.93 0.94 2.57 +lieux_dits lieux_dits nom m p 0.00 0.41 0.00 0.41 +lieux lieu nom m p 182.00 267.57 28.73 54.12 +liez lier ver 37.17 46.08 0.15 0.07 imp:pre:2p;ind:pre:2p; +lift lift nom m s 0.61 0.07 0.52 0.07 +lifter lifter ver 0.27 0.07 0.22 0.00 inf; +liftier liftier nom m s 0.39 0.54 0.36 0.41 +liftiers liftier nom m p 0.39 0.54 0.00 0.14 +lifting lifting nom m s 1.40 0.07 1.19 0.07 +liftings lifting nom m p 1.40 0.07 0.22 0.00 +liftière liftier nom f s 0.39 0.54 0.02 0.00 +lifts lift nom m p 0.61 0.07 0.10 0.00 +lifté lifté adj m s 0.05 0.14 0.00 0.07 +liftée lifté adj f s 0.05 0.14 0.04 0.07 +liftées lifter ver f p 0.27 0.07 0.01 0.07 par:pas; +ligament ligament nom m s 1.12 0.47 0.29 0.00 +ligamentaire ligamentaire adj f s 0.02 0.00 0.02 0.00 +ligaments ligament nom m p 1.12 0.47 0.83 0.47 +ligature ligature nom f s 0.46 0.20 0.30 0.07 +ligaturer ligaturer ver 0.13 0.47 0.05 0.14 inf; +ligatures ligature nom f p 0.46 0.20 0.16 0.14 +ligaturez ligaturer ver 0.13 0.47 0.01 0.07 imp:pre:2p;ind:pre:2p; +ligaturé ligaturer ver m s 0.13 0.47 0.04 0.14 par:pas; +ligaturée ligaturer ver f s 0.13 0.47 0.02 0.14 par:pas; +lige lige adj s 0.14 0.20 0.14 0.14 +liges lige adj m p 0.14 0.20 0.00 0.07 +light light adj 3.76 0.27 3.76 0.27 +ligna ligner ver 0.06 0.20 0.00 0.07 ind:pas:3s; +lignage lignage nom m s 0.13 0.41 0.13 0.34 +lignages lignage nom m p 0.13 0.41 0.00 0.07 +lignards lignard nom m p 0.00 0.07 0.00 0.07 +ligne ligne nom f s 89.83 162.30 69.42 101.01 +ligner ligner ver 0.06 0.20 0.00 0.07 inf; +lignes ligne nom f p 89.83 162.30 20.41 61.28 +ligneuses ligneux adj f p 0.00 0.41 0.00 0.20 +ligneux ligneux adj m p 0.00 0.41 0.00 0.20 +lignite lignite nom m s 0.14 0.61 0.00 0.54 +lignites lignite nom m p 0.14 0.61 0.14 0.07 +ligné ligner ver m s 0.06 0.20 0.01 0.07 par:pas; +lignée lignée nom f s 4.83 5.07 4.67 4.80 +lignées lignée nom f p 4.83 5.07 0.16 0.27 +ligot ligot nom m s 0.01 0.27 0.01 0.00 +ligota ligoter ver 4.49 5.07 0.10 0.20 ind:pas:3s; +ligotage ligotage nom m s 0.01 0.20 0.01 0.20 +ligotaient ligoter ver 4.49 5.07 0.00 0.20 ind:imp:3p; +ligotait ligoter ver 4.49 5.07 0.01 0.27 ind:imp:3s; +ligotant ligoter ver 4.49 5.07 0.01 0.07 par:pre; +ligote ligoter ver 4.49 5.07 0.91 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ligotent ligoter ver 4.49 5.07 0.16 0.61 ind:pre:3p; +ligoter ligoter ver 4.49 5.07 0.48 0.61 inf; +ligoterai ligoter ver 4.49 5.07 0.14 0.00 ind:fut:1s; +ligoterait ligoter ver 4.49 5.07 0.01 0.00 cnd:pre:3s; +ligoterons ligoter ver 4.49 5.07 0.10 0.00 ind:fut:1p; +ligotez ligoter ver 4.49 5.07 0.80 0.00 imp:pre:2p;ind:pre:2p; +ligotons ligoter ver 4.49 5.07 0.01 0.00 imp:pre:1p; +ligots ligot nom m p 0.01 0.27 0.00 0.27 +ligotèrent ligoter ver 4.49 5.07 0.00 0.07 ind:pas:3p; +ligoté ligoter ver m s 4.49 5.07 0.91 1.69 par:pas; +ligotée ligoter ver f s 4.49 5.07 0.29 0.54 par:pas; +ligotées ligoter ver f p 4.49 5.07 0.01 0.14 par:pas; +ligotés ligoter ver m p 4.49 5.07 0.53 0.34 par:pas; +liguaient liguer ver 1.07 1.76 0.01 0.14 ind:imp:3p; +liguait liguer ver 1.07 1.76 0.01 0.27 ind:imp:3s; +liguant liguer ver 1.07 1.76 0.01 0.07 par:pre; +ligue ligue nom f s 2.97 2.09 2.74 1.42 +liguent liguer ver 1.07 1.76 0.17 0.00 ind:pre:3p; +liguer liguer ver 1.07 1.76 0.22 0.27 inf; +ligues ligue nom f p 2.97 2.09 0.23 0.68 +ligueur ligueur nom m s 0.00 0.27 0.00 0.14 +ligueurs ligueur nom m p 0.00 0.27 0.00 0.14 +liguez liguer ver 1.07 1.76 0.16 0.00 ind:pre:2p; +ligure ligure adj f s 0.00 0.20 0.00 0.14 +ligures ligure adj p 0.00 0.20 0.00 0.07 +liguèrent liguer ver 1.07 1.76 0.00 0.07 ind:pas:3p; +ligué liguer ver m s 1.07 1.76 0.15 0.00 par:pas; +liguées liguer ver f p 1.07 1.76 0.03 0.34 par:pas; +ligués liguer ver m p 1.07 1.76 0.13 0.41 par:pas; +lilas lilas nom m 2.28 5.47 2.28 5.47 +liliacées liliacée nom f p 0.14 0.00 0.14 0.00 +lilial lilial adj m s 0.00 0.68 0.00 0.41 +liliale lilial adj f s 0.00 0.68 0.00 0.27 +lilium lilium nom m s 0.01 0.07 0.01 0.07 +lilliputien lilliputien adj m s 0.36 0.68 0.12 0.41 +lilliputienne lilliputien adj f s 0.36 0.68 0.02 0.20 +lilliputiens lilliputien adj m p 0.36 0.68 0.22 0.07 +lillois lillois nom m 0.00 0.27 0.00 0.20 +lilloise lillois nom f s 0.00 0.27 0.00 0.07 +lima limer ver 1.07 3.11 0.00 0.07 ind:pas:3s; +limace limace nom f s 4.01 6.35 2.89 4.05 +limaces limace nom f p 4.01 6.35 1.12 2.30 +limage limage nom m s 0.26 0.14 0.26 0.14 +limaient limer ver 1.07 3.11 0.00 0.07 ind:imp:3p; +limaille limaille nom f s 0.02 1.55 0.02 1.55 +limait limer ver 1.07 3.11 0.00 0.54 ind:imp:3s; +liman liman nom m s 0.01 0.00 0.01 0.00 +limande limande nom f s 0.09 0.68 0.08 0.61 +limandes limande nom f p 0.09 0.68 0.01 0.07 +limant limer ver 1.07 3.11 0.00 0.14 par:pre; +limaçon limaçon nom m s 0.02 0.54 0.01 0.27 +limaçons limaçon nom m p 0.02 0.54 0.01 0.27 +limbe limbe nom m s 0.81 3.18 0.00 0.07 +limbes limbe nom m p 0.81 3.18 0.81 3.11 +limbique limbique adj s 0.31 0.00 0.31 0.00 +limbo limbo nom m s 0.36 0.00 0.36 0.00 +lime lime nom f s 1.56 3.65 1.48 2.91 +liment limer ver 1.07 3.11 0.01 0.07 ind:pre:3p; +limer limer ver 1.07 3.11 0.50 0.74 inf; +limerick limerick nom m s 0.04 0.07 0.03 0.00 +limericks limerick nom m p 0.04 0.07 0.01 0.07 +limes lime nom f p 1.56 3.65 0.08 0.74 +limette limette nom f s 0.07 0.00 0.07 0.00 +limez limer ver 1.07 3.11 0.00 0.07 ind:pre:2p; +limier limier nom m s 1.12 0.88 0.77 0.54 +limiers limier nom m p 1.12 0.88 0.35 0.34 +liminaire liminaire adj s 0.07 0.00 0.07 0.00 +limions limer ver 1.07 3.11 0.00 0.07 ind:imp:1p; +limita limiter ver 11.19 19.26 0.01 0.00 ind:pas:3s; +limitai limiter ver 11.19 19.26 0.00 0.20 ind:pas:1s; +limitaient limiter ver 11.19 19.26 0.12 0.41 ind:imp:3p; +limitais limiter ver 11.19 19.26 0.02 0.07 ind:imp:1s;ind:imp:2s; +limitait limiter ver 11.19 19.26 0.13 2.36 ind:imp:3s; +limitant limiter ver 11.19 19.26 0.09 1.28 par:pre; +limitatif limitatif adj m s 0.00 0.27 0.00 0.14 +limitation limitation nom f s 0.74 0.95 0.27 0.61 +limitations limitation nom f p 0.74 0.95 0.47 0.34 +limitative limitatif adj f s 0.00 0.27 0.00 0.14 +limite limite nom f s 32.77 47.23 13.69 21.76 +limitent limiter ver 11.19 19.26 0.23 0.74 ind:pre:3p; +limiter limiter ver 11.19 19.26 2.62 4.46 inf; +limitera limiter ver 11.19 19.26 0.13 0.14 ind:fut:3s; +limiterai limiter ver 11.19 19.26 0.14 0.07 ind:fut:1s; +limiteraient limiter ver 11.19 19.26 0.01 0.20 cnd:pre:3p; +limiterait limiter ver 11.19 19.26 0.05 0.07 cnd:pre:3s; +limiteront limiter ver 11.19 19.26 0.05 0.00 ind:fut:3p; +limites limite nom f p 32.77 47.23 19.09 25.47 +limiteur limiteur nom m s 0.02 0.00 0.02 0.00 +limitez limiter ver 11.19 19.26 0.36 0.00 imp:pre:2p;ind:pre:2p; +limitions limiter ver 11.19 19.26 0.01 0.07 ind:imp:1p; +limitons limiter ver 11.19 19.26 0.14 0.07 imp:pre:1p;ind:pre:1p; +limitrophe limitrophe adj s 0.00 0.54 0.00 0.07 +limitrophes limitrophe adj p 0.00 0.54 0.00 0.47 +limité limiter ver m s 11.19 19.26 2.10 2.30 par:pas; +limitée limité adj f s 3.66 6.35 1.30 1.28 +limitées limité adj f p 3.66 6.35 0.68 1.35 +limités limiter ver m p 11.19 19.26 0.36 0.68 par:pas; +limoge limoger ver 0.51 0.34 0.00 0.07 ind:pre:3s; +limogeage limogeage nom m s 0.11 0.07 0.11 0.07 +limoger limoger ver 0.51 0.34 0.18 0.00 inf; +limoges limoger ver 0.51 0.34 0.01 0.20 ind:pre:2s; +limogé limoger ver m s 0.51 0.34 0.32 0.07 par:pas; +limon limon nom m s 0.53 3.45 0.53 2.97 +limonade limonade nom f s 6.17 6.15 6.06 5.68 +limonades limonade nom f p 6.17 6.15 0.11 0.47 +limonadier limonadier nom m s 0.03 0.54 0.03 0.14 +limonadiers limonadier nom m p 0.03 0.54 0.00 0.27 +limonadière limonadier nom f s 0.03 0.54 0.00 0.14 +limonaire limonaire nom m s 0.00 0.54 0.00 0.54 +limoneuse limoneux adj f s 0.01 0.61 0.01 0.27 +limoneuses limoneux adj f p 0.01 0.61 0.00 0.14 +limoneux limoneux adj m s 0.01 0.61 0.00 0.20 +limonier limonier nom m s 0.00 0.14 0.00 0.07 +limonière limonier nom f s 0.00 0.14 0.00 0.07 +limons limon nom m p 0.53 3.45 0.00 0.47 +limoselle limoselle nom f s 0.01 0.00 0.01 0.00 +limousin limousin adj m s 2.04 1.15 0.00 0.14 +limousine limousine nom f s 3.93 3.65 3.34 2.97 +limousines limousine nom f p 3.93 3.65 0.58 0.68 +limousins limousin adj m p 2.04 1.15 0.00 0.07 +limpide limpide adj s 2.66 12.16 2.32 9.86 +limpides limpide adj p 2.66 12.16 0.34 2.30 +limpidité limpidité nom f s 0.01 1.62 0.01 1.62 +limé limer ver m s 1.07 3.11 0.16 0.54 par:pas; +limée limer ver f s 1.07 3.11 0.01 0.14 par:pas; +lin lin nom m s 2.35 6.08 1.76 6.01 +linaire linaire nom f s 0.00 0.07 0.00 0.07 +linceul linceul nom m s 1.98 2.70 1.94 2.30 +linceuls linceul nom m p 1.98 2.70 0.04 0.41 +lindor lindor nom m s 0.27 0.00 0.27 0.00 +line line nom f s 1.08 0.07 1.08 0.07 +linga linga nom m s 0.01 0.00 0.01 0.00 +lingala lingala nom m s 0.02 0.00 0.02 0.00 +lingam lingam nom m s 0.54 0.07 0.54 0.07 +linge linge nom m s 17.04 47.30 16.75 44.53 +linger linger adj m s 0.02 0.41 0.01 0.14 +lingerie lingerie nom f s 4.13 5.34 4.11 4.73 +lingeries lingerie nom f p 4.13 5.34 0.02 0.61 +linges linge nom m p 17.04 47.30 0.30 2.77 +lingette lingette nom f s 0.66 0.00 0.48 0.00 +lingettes lingette nom f p 0.66 0.00 0.18 0.00 +lingot lingot nom m s 1.58 2.36 0.47 1.15 +lingotière lingotier nom f s 0.00 0.07 0.00 0.07 +lingots lingot nom m p 1.58 2.36 1.11 1.22 +lingère lingère nom f s 0.04 0.68 0.04 0.47 +lingères lingère nom f p 0.04 0.68 0.00 0.20 +lingual lingual adj m s 0.04 0.00 0.01 0.00 +linguale lingual adj f s 0.04 0.00 0.02 0.00 +linguaux lingual adj m p 0.04 0.00 0.01 0.00 +linguiste linguiste nom s 0.50 0.68 0.46 0.41 +linguistes linguiste nom p 0.50 0.68 0.04 0.27 +linguistique linguistique nom f s 0.54 0.61 0.54 0.61 +linguistiquement linguistiquement adv 0.01 0.07 0.01 0.07 +linguistiques linguistique adj p 0.38 1.55 0.14 0.74 +liniment liniment nom m s 0.03 0.07 0.03 0.07 +lino lino nom m s 0.38 1.69 0.38 1.55 +linoléum linoléum nom m s 0.18 2.64 0.18 2.36 +linoléums linoléum nom m p 0.18 2.64 0.00 0.27 +linon linon nom m s 0.05 0.74 0.05 0.68 +linons linon nom m p 0.05 0.74 0.00 0.07 +linos lino nom m p 0.38 1.69 0.00 0.14 +linotte linotte nom f s 0.81 0.54 0.69 0.27 +linottes linotte nom f p 0.81 0.54 0.12 0.27 +linotype linotype nom f s 0.01 0.41 0.01 0.14 +linotypes linotype nom f p 0.01 0.41 0.00 0.27 +linotypistes linotypiste nom p 0.00 0.20 0.00 0.20 +lins lin nom m p 2.35 6.08 0.59 0.07 +linteau linteau nom m s 0.24 1.08 0.17 0.95 +linteaux linteau nom m p 0.24 1.08 0.07 0.14 +linter linter nom m s 0.01 0.00 0.01 0.00 +linéaire linéaire adj s 0.39 1.08 0.30 0.88 +linéairement linéairement adv 0.01 0.00 0.01 0.00 +linéaires linéaire adj p 0.39 1.08 0.09 0.20 +linéaments linéament nom m p 0.00 0.54 0.00 0.54 +liâmes lier ver 37.17 46.08 0.00 0.14 ind:pas:1p; +lion lion nom m s 20.70 33.04 14.58 20.14 +lionceau lionceau nom m s 0.21 1.01 0.21 0.61 +lionceaux lionceau nom m p 0.21 1.01 0.00 0.41 +lionne lion nom f s 20.70 33.04 0.79 2.43 +lionnes lionne nom f p 0.16 0.00 0.16 0.00 +lions lion nom m p 20.70 33.04 5.33 8.24 +liât lier ver 37.17 46.08 0.00 0.34 sub:imp:3s; +lipase lipase nom f s 0.01 0.00 0.01 0.00 +lipide lipide nom m s 0.06 0.20 0.01 0.07 +lipides lipide nom m p 0.06 0.20 0.04 0.14 +lipiodol lipiodol nom m s 0.01 0.00 0.01 0.00 +lipome lipome nom m s 0.03 0.00 0.03 0.00 +liposome liposome nom m s 0.01 0.00 0.01 0.00 +liposuccion liposuccion nom f s 1.04 0.00 0.75 0.00 +liposuccions liposuccion nom f p 1.04 0.00 0.29 0.00 +liposucer liposucer ver 0.20 0.00 0.20 0.00 inf; +lipothymie lipothymie nom f s 0.10 0.00 0.10 0.00 +lippe lippe nom f s 0.14 1.89 0.14 1.69 +lippes lippe nom f p 0.14 1.89 0.00 0.20 +lippu lippu adj m s 0.17 1.01 0.17 0.41 +lippue lippu adj f s 0.17 1.01 0.00 0.47 +lippées lippée nom f p 0.00 0.07 0.00 0.07 +lippues lippu adj f p 0.17 1.01 0.00 0.07 +lippus lippu adj m p 0.17 1.01 0.00 0.07 +liquette liquette nom f s 0.19 1.49 0.19 1.22 +liquettes liquette nom f p 0.19 1.49 0.00 0.27 +liqueur liqueur nom f s 5.00 4.26 3.46 2.36 +liqueurs liqueur nom f p 5.00 4.26 1.55 1.89 +liquida liquider ver 9.76 10.74 0.10 0.27 ind:pas:3s; +liquidai liquider ver 9.76 10.74 0.00 0.07 ind:pas:1s; +liquidaient liquider ver 9.76 10.74 0.00 0.20 ind:imp:3p; +liquidait liquider ver 9.76 10.74 0.02 0.20 ind:imp:3s; +liquidambars liquidambar nom m p 0.00 0.07 0.00 0.07 +liquidant liquider ver 9.76 10.74 0.02 0.20 par:pre; +liquidateur liquidateur nom m s 0.07 0.20 0.05 0.14 +liquidateurs liquidateur nom m p 0.07 0.20 0.01 0.07 +liquidation liquidation nom f s 0.81 3.11 0.70 3.04 +liquidations liquidation nom f p 0.81 3.11 0.11 0.07 +liquidative liquidatif adj f s 0.02 0.00 0.02 0.00 +liquide liquide nom m s 18.41 19.19 17.74 17.91 +liquident liquider ver 9.76 10.74 0.04 0.07 ind:pre:3p; +liquider liquider ver 9.76 10.74 3.78 4.93 inf; +liquidera liquider ver 9.76 10.74 0.06 0.14 ind:fut:3s; +liquiderai liquider ver 9.76 10.74 0.04 0.00 ind:fut:1s; +liquiderais liquider ver 9.76 10.74 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +liquiderait liquider ver 9.76 10.74 0.14 0.07 cnd:pre:3s; +liquiderons liquider ver 9.76 10.74 0.04 0.00 ind:fut:1p; +liquideront liquider ver 9.76 10.74 0.00 0.14 ind:fut:3p; +liquides liquide nom m p 18.41 19.19 0.68 1.28 +liquidez liquider ver 9.76 10.74 0.37 0.00 imp:pre:2p;ind:pre:2p; +liquidions liquider ver 9.76 10.74 0.00 0.07 ind:imp:1p; +liquidité liquidité nom f s 0.70 0.54 0.03 0.07 +liquidités liquidité nom f p 0.70 0.54 0.67 0.47 +liquidons liquider ver 9.76 10.74 0.26 0.07 imp:pre:1p;ind:pre:1p; +liquidé liquider ver m s 9.76 10.74 2.45 1.62 par:pas; +liquidée liquider ver f s 9.76 10.74 0.31 0.95 par:pas; +liquidées liquider ver f p 9.76 10.74 0.02 0.20 par:pas; +liquidés liquider ver m p 9.76 10.74 0.54 0.61 par:pas; +liquor liquor nom m s 0.04 0.00 0.04 0.00 +liquoreux liquoreux adj m s 0.00 0.27 0.00 0.27 +liquoriste liquoriste nom s 0.01 0.07 0.01 0.07 +liquéfaction liquéfaction nom f s 0.04 0.27 0.04 0.27 +liquéfiaient liquéfier ver 1.09 2.43 0.00 0.27 ind:imp:3p; +liquéfiait liquéfier ver 1.09 2.43 0.00 0.47 ind:imp:3s; +liquéfiante liquéfiant adj f s 0.00 0.07 0.00 0.07 +liquéfie liquéfier ver 1.09 2.43 0.78 0.20 ind:pre:1s;ind:pre:3s; +liquéfient liquéfier ver 1.09 2.43 0.04 0.14 ind:pre:3p; +liquéfier liquéfier ver 1.09 2.43 0.14 0.47 inf; +liquéfièrent liquéfier ver 1.09 2.43 0.00 0.07 ind:pas:3p; +liquéfié liquéfier ver m s 1.09 2.43 0.04 0.27 par:pas; +liquéfiée liquéfier ver f s 1.09 2.43 0.03 0.34 par:pas; +liquéfiées liquéfier ver f p 1.09 2.43 0.01 0.14 par:pas; +liquéfiés liquéfier ver m p 1.09 2.43 0.05 0.07 par:pas; +lira lire ver 281.09 324.80 1.88 1.82 ind:fut:3s; +lirai lire ver 281.09 324.80 3.36 1.28 ind:fut:1s; +liraient lire ver 281.09 324.80 0.03 0.34 cnd:pre:3p; +lirais lire ver 281.09 324.80 0.74 0.81 cnd:pre:1s;cnd:pre:2s; +lirait lire ver 281.09 324.80 0.30 3.31 cnd:pre:3s; +liras lire ver 281.09 324.80 1.97 0.81 ind:fut:2s; +lire lire ver 281.09 324.80 89.58 103.58 inf; +lires lire nom f p 28.88 10.27 18.98 1.42 +lirette lirette nom f s 0.02 0.00 0.02 0.00 +lirez lire ver 281.09 324.80 0.68 0.81 ind:fut:2p; +liriez lire ver 281.09 324.80 0.09 0.00 cnd:pre:2p; +liron liron nom m s 0.14 0.54 0.14 0.54 +lirons lire ver 281.09 324.80 0.08 0.07 ind:fut:1p; +liront lire ver 281.09 324.80 0.17 0.27 ind:fut:3p; +lis lire ver 281.09 324.80 39.81 16.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +lisaient lire ver 281.09 324.80 0.22 4.73 ind:imp:3p; +lisais lire ver 281.09 324.80 5.08 10.54 ind:imp:1s;ind:imp:2s; +lisait lire ver 281.09 324.80 3.88 39.12 ind:imp:3s; +lisant lire ver 281.09 324.80 2.95 13.31 par:pre; +lise lire ver 281.09 324.80 3.20 2.09 sub:pre:1s;sub:pre:3s; +lisent lire ver 281.09 324.80 2.67 3.72 ind:pre:3p; +liseron liseron nom m s 0.02 1.08 0.01 0.61 +liserons liseron nom m p 0.02 1.08 0.01 0.47 +liseré liseré nom m s 0.02 0.81 0.02 0.74 +liserée liserer ver f s 0.00 0.14 0.00 0.07 par:pas; +liserés liseré nom m p 0.02 0.81 0.00 0.07 +lises lire ver 281.09 324.80 1.12 0.41 sub:pre:2s; +liseur liseur nom m s 0.06 1.49 0.00 0.68 +liseuse liseur nom f s 0.06 1.49 0.06 0.68 +liseuses liseur nom f p 0.06 1.49 0.00 0.14 +lisez lire ver 281.09 324.80 16.78 5.00 imp:pre:2p;ind:pre:2p; +lisibilité lisibilité nom f s 0.01 0.00 0.01 0.00 +lisible lisible adj s 0.84 3.58 0.40 2.50 +lisiblement lisiblement adv 0.11 0.20 0.11 0.20 +lisibles lisible adj p 0.84 3.58 0.44 1.08 +lisier lisier nom m s 0.01 0.00 0.01 0.00 +lisiez lire ver 281.09 324.80 0.96 0.95 ind:imp:2p; +lisions lire ver 281.09 324.80 0.27 1.55 ind:imp:1p; +lisière lisière nom f s 0.67 18.24 0.67 16.49 +lisières lisière nom f p 0.67 18.24 0.00 1.76 +lisons lire ver 281.09 324.80 1.56 0.81 imp:pre:1p;ind:pre:1p; +lissa lisser ver 2.04 11.35 0.02 1.15 ind:pas:3s; +lissage lissage nom m s 0.01 0.14 0.01 0.14 +lissai lisser ver 2.04 11.35 0.00 0.14 ind:pas:1s; +lissaient lisser ver 2.04 11.35 0.00 0.34 ind:imp:3p; +lissais lisser ver 2.04 11.35 0.00 0.07 ind:imp:1s; +lissait lisser ver 2.04 11.35 0.00 1.42 ind:imp:3s; +lissant lisser ver 2.04 11.35 0.00 1.96 par:pre; +lisse lisse adj s 3.48 33.58 2.71 24.26 +lissent lisser ver 2.04 11.35 0.00 0.34 ind:pre:3p; +lisser lisser ver 2.04 11.35 0.34 1.49 inf; +lissera lisser ver 2.04 11.35 0.00 0.07 ind:fut:3s; +lisserait lisser ver 2.04 11.35 0.00 0.14 cnd:pre:3s; +lisses lisse adj p 3.48 33.58 0.77 9.32 +lisseur lisseur nom m s 0.00 0.14 0.00 0.07 +lisseurs lisseur nom m p 0.00 0.14 0.00 0.07 +lissez lisser ver 2.04 11.35 0.70 0.00 imp:pre:2p; +lissons lisser ver 2.04 11.35 0.14 0.14 imp:pre:1p;ind:pre:1p; +lissotriche lissotriche adj s 0.00 0.07 0.00 0.07 +lissèrent lisser ver 2.04 11.35 0.00 0.07 ind:pas:3p; +lissé lisser ver m s 2.04 11.35 0.22 0.88 par:pas; +lissée lisser ver f s 2.04 11.35 0.15 0.34 par:pas; +lissées lisser ver f p 2.04 11.35 0.10 0.20 par:pas; +lissés lisser ver m p 2.04 11.35 0.01 0.68 par:pas; +liste liste nom f s 71.56 24.32 69.07 18.92 +listel listel nom m s 0.00 0.07 0.00 0.07 +lister lister ver 1.60 0.00 1.07 0.00 inf; +listeria listeria nom f 0.01 0.00 0.01 0.00 +listes liste nom f p 71.56 24.32 2.49 5.41 +listez lister ver 1.60 0.00 0.07 0.00 imp:pre:2p; +listing listing nom m s 0.26 0.00 0.23 0.00 +listings listing nom m p 0.26 0.00 0.02 0.00 +liston liston nom m s 4.14 0.00 4.14 0.00 +listé lister ver m s 1.60 0.00 0.23 0.00 par:pas; +listée lister ver f s 1.60 0.00 0.10 0.00 par:pas; +listées lister ver f p 1.60 0.00 0.04 0.00 par:pas; +listés lister ver m p 1.60 0.00 0.09 0.00 par:pas; +lisérait lisérer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +liséré liséré nom m s 0.00 2.50 0.00 2.16 +lisérés liséré nom m p 0.00 2.50 0.00 0.34 +lit_bateau lit_bateau nom m s 0.00 0.81 0.00 0.81 +lit_cage lit_cage nom m s 0.01 1.62 0.01 1.15 +lit_divan lit_divan nom m s 0.00 0.20 0.00 0.20 +lit lit nom m s 184.27 338.18 176.10 315.74 +lita liter ver 0.82 0.00 0.34 0.00 ind:pas:3s; +litanie litanie nom f s 0.59 7.09 0.56 4.53 +litanies litanie nom f p 0.59 7.09 0.03 2.57 +lite liter ver 0.82 0.00 0.08 0.00 imp:pre:2s;ind:pre:3s; +liteaux liteau nom m p 0.00 0.07 0.00 0.07 +liter liter ver 0.82 0.00 0.27 0.00 inf; +literie literie nom f s 0.29 2.03 0.28 1.96 +literies literie nom f p 0.29 2.03 0.01 0.07 +liège liège nom m s 0.46 3.78 0.46 3.58 +lièges liège nom m p 0.46 3.78 0.00 0.20 +lithiase lithiase nom f s 0.04 0.00 0.04 0.00 +lithinés lithiné adj m p 0.00 0.27 0.00 0.27 +lithique lithique adj s 0.01 0.00 0.01 0.00 +lithium lithium nom m s 0.94 0.14 0.94 0.14 +litho litho nom f s 0.02 0.20 0.01 0.14 +lithographe lithographe nom s 0.00 0.14 0.00 0.14 +lithographie lithographie nom f s 0.26 0.54 0.25 0.41 +lithographies lithographie nom f p 0.26 0.54 0.01 0.14 +lithographié lithographier ver m s 0.00 0.07 0.00 0.07 par:pas; +lithophages lithophage adj m p 0.00 0.07 0.00 0.07 +lithos litho nom f p 0.02 0.20 0.01 0.07 +lithosphère lithosphère nom f s 0.03 0.00 0.03 0.00 +lithotripsie lithotripsie nom f s 0.03 0.00 0.03 0.00 +lithotriteur lithotriteur nom m s 0.01 0.00 0.01 0.00 +lièrent lier ver 37.17 46.08 0.03 0.34 ind:pas:3p; +lithuanien lithuanien adj m s 0.08 0.27 0.07 0.20 +lithuanienne lithuanien adj f s 0.08 0.27 0.01 0.00 +lithuaniennes lithuanien adj f p 0.08 0.27 0.00 0.07 +lièvre lièvre nom m s 4.30 7.03 3.36 4.73 +lièvres lièvre nom m p 4.30 7.03 0.94 2.30 +litige litige nom m s 0.78 1.42 0.57 0.74 +litiges litige nom m p 0.78 1.42 0.20 0.68 +litigieuse litigieux adj f s 0.07 0.34 0.02 0.20 +litigieux litigieux adj m s 0.07 0.34 0.04 0.14 +litière litière nom f s 0.82 6.15 0.81 5.68 +litières litière nom f p 0.82 6.15 0.01 0.47 +litorne litorne nom f s 0.00 0.07 0.00 0.07 +litote litote nom f s 0.03 0.41 0.03 0.20 +litotes litote nom f p 0.03 0.41 0.00 0.20 +litre litre nom s 10.19 18.51 2.75 10.20 +litrer litrer ver 0.00 0.07 0.00 0.07 inf; +litres litre nom p 10.19 18.51 7.44 8.31 +litron litron nom m s 0.20 3.18 0.20 1.82 +litronaient litroner ver 0.00 0.14 0.00 0.07 ind:imp:3p; +litrons litron nom m p 0.20 3.18 0.00 1.35 +litroné litroner ver m s 0.00 0.14 0.00 0.07 par:pas; +lit_cage lit_cage nom m p 0.01 1.62 0.00 0.47 +lits lit nom m p 184.27 338.18 8.17 22.43 +littoral littoral nom m s 0.21 3.11 0.20 3.11 +littorale littoral adj f s 0.23 0.34 0.07 0.14 +littoraux littoral nom m p 0.21 3.11 0.01 0.00 +littéraire littéraire adj s 3.09 17.16 2.64 11.82 +littérairement littérairement adv 0.01 0.14 0.01 0.14 +littéraires littéraire adj p 3.09 17.16 0.45 5.34 +littéral littéral adj m s 1.08 1.49 0.72 0.61 +littérale littéral adj f s 1.08 1.49 0.34 0.74 +littéralement littéralement adv 5.27 10.95 5.27 10.95 +littérales littéral adj f p 1.08 1.49 0.00 0.14 +littéralité littéralité nom f s 0.00 0.07 0.00 0.07 +littérateur littérateur nom m s 0.23 1.01 0.23 0.47 +littérateurs littérateur nom m p 0.23 1.01 0.00 0.54 +littérature littérature nom f s 8.48 36.89 8.48 36.82 +littératures littérature nom f p 8.48 36.89 0.00 0.07 +littéraux littéral adj m p 1.08 1.49 0.01 0.00 +lité liter ver m s 0.82 0.00 0.14 0.00 par:pas; +lituanien lituanien adj m s 0.69 0.88 0.44 0.07 +lituanienne lituanien adj f s 0.69 0.88 0.25 0.27 +lituaniennes lituanien adj f p 0.69 0.88 0.00 0.34 +lituaniens lituanien nom m p 0.21 0.47 0.21 0.27 +litée litée nom f s 0.00 0.07 0.00 0.07 +liturgie liturgie nom f s 0.03 2.16 0.03 2.09 +liturgies liturgie nom f p 0.03 2.16 0.00 0.07 +liturgique liturgique adj s 0.16 1.08 0.16 0.54 +liturgiques liturgique adj p 0.16 1.08 0.00 0.54 +lié lier ver m s 37.17 46.08 12.54 10.68 par:pas; +liée lier ver f s 37.17 46.08 3.96 7.50 par:pas; +liées lier ver f p 37.17 46.08 2.58 2.84 par:pas; +liégeois liégeois adj m 0.00 0.14 0.00 0.14 +liés lier ver m p 37.17 46.08 6.12 6.55 par:pas; +livarot livarot nom m s 0.00 0.27 0.00 0.27 +live live adj 3.90 0.27 3.90 0.27 +livide livide adj s 0.74 10.54 0.62 8.78 +livides livide adj p 0.74 10.54 0.12 1.76 +lividité lividité nom f s 0.40 0.00 0.40 0.00 +living_room living_room nom m s 0.23 2.23 0.23 2.23 +living living nom m s 0.87 2.84 0.87 2.77 +livings living nom m p 0.87 2.84 0.00 0.07 +livoniennes livonienne nom f p 0.00 0.07 0.00 0.07 +livra livrer ver 56.53 84.93 0.14 2.50 ind:pas:3s; +livrable livrable adj s 0.02 0.07 0.00 0.07 +livrables livrable adj f p 0.02 0.07 0.02 0.00 +livrai livrer ver 56.53 84.93 0.01 0.34 ind:pas:1s; +livraient livrer ver 56.53 84.93 0.44 4.19 ind:imp:3p; +livrais livrer ver 56.53 84.93 0.38 1.22 ind:imp:1s;ind:imp:2s; +livraison livraison nom f s 13.68 8.58 10.69 5.47 +livraisons livraison nom f p 13.68 8.58 2.98 3.11 +livrait livrer ver 56.53 84.93 0.74 7.91 ind:imp:3s; +livrant livrer ver 56.53 84.93 0.98 3.65 par:pre; +livre_cassette livre_cassette nom m s 0.03 0.00 0.03 0.00 +livre livre nom 198.11 286.49 112.43 151.76 +livrent livrer ver 56.53 84.93 1.44 2.84 ind:pre:3p; +livrer livrer ver 56.53 84.93 21.42 25.20 inf;;inf;;inf;; +livrera livrer ver 56.53 84.93 0.97 0.34 ind:fut:3s; +livrerai livrer ver 56.53 84.93 0.62 0.41 ind:fut:1s; +livreraient livrer ver 56.53 84.93 0.04 0.54 cnd:pre:3p; +livrerais livrer ver 56.53 84.93 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +livrerait livrer ver 56.53 84.93 0.18 0.95 cnd:pre:3s; +livreras livrer ver 56.53 84.93 0.24 0.14 ind:fut:2s; +livrerez livrer ver 56.53 84.93 0.14 0.00 ind:fut:2p; +livrerons livrer ver 56.53 84.93 0.10 0.07 ind:fut:1p; +livreront livrer ver 56.53 84.93 0.47 0.20 ind:fut:3p; +livres_club livres_club nom m p 0.00 0.07 0.00 0.07 +livres livre nom p 198.11 286.49 85.69 134.73 +livresque livresque adj s 0.02 0.74 0.02 0.68 +livresques livresque adj f p 0.02 0.74 0.00 0.07 +livret livret nom m s 3.26 5.41 3.10 4.73 +livrets livret nom m p 3.26 5.41 0.16 0.68 +livreur livreur nom m s 4.46 3.99 3.81 2.91 +livreurs livreur nom m p 4.46 3.99 0.57 1.08 +livreuse livreur nom f s 4.46 3.99 0.08 0.00 +livrez livrer ver 56.53 84.93 3.28 0.20 imp:pre:2p;ind:pre:2p; +livrions livrer ver 56.53 84.93 0.02 0.20 ind:imp:1p; +livrâmes livrer ver 56.53 84.93 0.01 0.14 ind:pas:1p; +livrons livrer ver 56.53 84.93 0.70 0.27 imp:pre:1p;ind:pre:1p; +livrât livrer ver 56.53 84.93 0.00 0.54 sub:imp:3s; +livrèrent livrer ver 56.53 84.93 0.06 0.61 ind:pas:3p; +livré livrer ver m s 56.53 84.93 8.03 11.08 par:pas; +livrée livrer ver f s 56.53 84.93 1.91 4.73 par:pas; +livrées livrer ver f p 56.53 84.93 0.57 1.96 par:pas; +livrés livrer ver m p 56.53 84.93 2.64 4.59 par:pas; +livèche livèche nom f s 0.14 0.00 0.14 0.00 +llanos llano nom m p 0.00 0.07 0.00 0.07 +lloyd lloyd nom m s 0.01 0.00 0.01 0.00 +là_bas là_bas adv 263.15 117.70 263.15 117.70 +là_dedans là_dedans adv 74.00 23.58 74.00 23.58 +là_dehors là_dehors adv 1.30 0.00 1.30 0.00 +là_derrière là_derrière adv 1.14 0.14 1.14 0.14 +là_dessous là_dessous adv 7.12 4.32 7.12 4.32 +là_dessus là_dessus adv 30.89 32.50 30.89 32.50 +là_devant là_devant adv 0.00 0.14 0.00 0.14 +là_haut là_haut adv 67.78 42.70 67.78 42.70 +là là ono 38.53 4.26 38.53 4.26 +loader loader nom m s 0.14 0.00 0.14 0.00 +lob lob nom m s 0.04 0.27 0.04 0.20 +lobaire lobaire adj f s 0.01 0.00 0.01 0.00 +lobbies lobbies nom m p 0.29 0.00 0.29 0.00 +lobby lobby nom m s 0.83 0.27 0.83 0.27 +lobbying lobbying nom m s 0.07 0.00 0.07 0.00 +lobe lobe nom m s 3.58 2.09 2.84 1.35 +lobectomie lobectomie nom f s 0.03 0.07 0.03 0.07 +lober lober ver 0.05 0.00 0.03 0.00 inf; +lobes lobe nom m p 3.58 2.09 0.74 0.74 +lobotomie lobotomie nom f s 0.83 0.14 0.83 0.14 +lobotomiser lobotomiser ver 0.31 0.07 0.04 0.00 inf; +lobotomisé lobotomiser ver m s 0.31 0.07 0.25 0.07 par:pas; +lobotomisée lobotomiser ver f s 0.31 0.07 0.03 0.00 par:pas; +lobs lob nom m p 0.04 0.27 0.00 0.07 +lobé lober ver m s 0.05 0.00 0.02 0.00 par:pas; +lobée lobé adj f s 0.01 0.00 0.01 0.00 +lobulaire lobulaire adj m s 0.00 0.07 0.00 0.07 +local local adj m s 18.11 22.84 6.05 6.76 +locale local adj f s 18.11 22.84 7.31 6.69 +localement localement adv 0.22 0.88 0.22 0.88 +locales local adj f p 18.11 22.84 2.93 4.80 +localisa localiser ver 12.87 2.84 0.00 0.34 ind:pas:3s; +localisable localisable adj m s 0.04 0.07 0.04 0.07 +localisaient localiser ver 12.87 2.84 0.00 0.07 ind:imp:3p; +localisais localiser ver 12.87 2.84 0.01 0.07 ind:imp:1s;ind:imp:2s; +localisait localiser ver 12.87 2.84 0.02 0.00 ind:imp:3s; +localisant localiser ver 12.87 2.84 0.02 0.07 par:pre; +localisateur localisateur adj m s 0.30 0.00 0.30 0.00 +localisation localisation nom f s 2.06 0.20 1.99 0.20 +localisations localisation nom f p 2.06 0.20 0.08 0.00 +localise localiser ver 12.87 2.84 0.76 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +localisent localiser ver 12.87 2.84 0.08 0.07 ind:pre:3p; +localiser localiser ver 12.87 2.84 7.41 1.76 inf; +localisera localiser ver 12.87 2.84 0.14 0.00 ind:fut:3s; +localiseront localiser ver 12.87 2.84 0.02 0.00 ind:fut:3p; +localisez localiser ver 12.87 2.84 0.48 0.00 imp:pre:2p;ind:pre:2p; +localisions localiser ver 12.87 2.84 0.01 0.00 ind:imp:1p; +localisons localiser ver 12.87 2.84 0.06 0.00 imp:pre:1p;ind:pre:1p; +localisé localiser ver m s 12.87 2.84 3.31 0.34 par:pas; +localisée localiser ver f s 12.87 2.84 0.25 0.00 par:pas; +localisées localiser ver f p 12.87 2.84 0.02 0.00 par:pas; +localisés localiser ver m p 12.87 2.84 0.26 0.00 par:pas; +localité localité nom f s 0.36 1.55 0.23 0.81 +localités localité nom f p 0.36 1.55 0.13 0.74 +locataire locataire nom s 7.22 14.46 3.29 6.22 +locataires locataire nom p 7.22 14.46 3.94 8.24 +locateurs locateur nom m p 0.01 0.00 0.01 0.00 +locatif locatif adj m s 0.04 0.07 0.01 0.00 +location location nom f s 5.51 5.34 5.29 5.00 +locations location nom f p 5.51 5.34 0.22 0.34 +locative locatif adj f s 0.04 0.07 0.01 0.00 +locatives locatif adj f p 0.04 0.07 0.02 0.07 +locature locature nom f s 0.00 0.07 0.00 0.07 +locaux local nom m p 5.78 11.89 2.23 4.26 +locdu locdu adj m s 0.00 0.27 0.00 0.27 +loch loch nom m s 0.65 0.41 0.65 0.41 +lâcha lâcher ver 171.08 89.19 0.03 12.70 ind:pas:3s; +lâchage lâchage nom m s 0.02 0.20 0.02 0.20 +lâchai lâcher ver 171.08 89.19 0.03 0.95 ind:pas:1s; +lâchaient lâcher ver 171.08 89.19 0.09 1.49 ind:imp:3p; +lâchais lâcher ver 171.08 89.19 0.20 0.81 ind:imp:1s;ind:imp:2s; +lâchait lâcher ver 171.08 89.19 1.08 5.68 ind:imp:3s; +lâchant lâcher ver 171.08 89.19 0.25 4.59 par:pre; +lâche lâcher ver 171.08 89.19 75.31 14.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +loche loche nom f s 0.56 1.08 0.12 1.01 +lâchement lâchement adv 1.07 2.97 1.07 2.97 +lâchent lâcher ver 171.08 89.19 2.52 2.50 ind:pre:3p; +lâcher lâcher ver 171.08 89.19 19.41 20.41 inf;; +lâchera lâcher ver 171.08 89.19 1.24 1.35 ind:fut:3s; +lâcherai lâcher ver 171.08 89.19 2.86 0.47 ind:fut:1s; +lâcheraient lâcher ver 171.08 89.19 0.05 0.07 cnd:pre:3p; +lâcherais lâcher ver 171.08 89.19 0.32 0.07 cnd:pre:1s;cnd:pre:2s; +lâcherait lâcher ver 171.08 89.19 0.35 0.81 cnd:pre:3s; +lâcheras lâcher ver 171.08 89.19 0.35 0.07 ind:fut:2s; +lâcherez lâcher ver 171.08 89.19 0.11 0.14 ind:fut:2p; +lâcheriez lâcher ver 171.08 89.19 0.02 0.07 cnd:pre:2p; +lâcherons lâcher ver 171.08 89.19 0.08 0.07 ind:fut:1p; +lâcheront lâcher ver 171.08 89.19 0.69 0.34 ind:fut:3p; +lâchers lâcher nom m p 0.95 0.88 0.01 0.07 +lâches lâche nom p 27.16 5.81 7.65 2.57 +loches loche nom f p 0.56 1.08 0.44 0.07 +lâcheté lâcheté nom f s 4.17 10.00 3.91 9.12 +lâchetés lâcheté nom f p 4.17 10.00 0.26 0.88 +lâcheur lâcheur nom m s 0.67 0.81 0.30 0.47 +lâcheurs lâcheur nom m p 0.67 0.81 0.25 0.14 +lâcheuse lâcheur nom f s 0.67 0.81 0.13 0.20 +lâchez lâcher ver 171.08 89.19 48.02 2.09 imp:pre:2p;ind:pre:2p; +lâchiez lâcher ver 171.08 89.19 0.13 0.00 ind:imp:2p; +lâchions lâcher ver 171.08 89.19 0.03 0.07 ind:imp:1p; +lâchons lâcher ver 171.08 89.19 0.17 0.27 imp:pre:1p;ind:pre:1p; +lâchât lâcher ver 171.08 89.19 0.00 0.27 sub:imp:3s; +lâchèrent lâcher ver 171.08 89.19 0.01 0.88 ind:pas:3p; +lâché lâcher ver m s 171.08 89.19 11.35 14.80 par:pas; +lâchée lâcher ver f s 171.08 89.19 1.07 1.69 par:pas; +lâchées lâcher ver f p 171.08 89.19 0.21 0.81 par:pas; +lâchés lâcher ver m p 171.08 89.19 1.05 1.42 par:pas; +lock_out lock_out nom m 0.11 0.00 0.11 0.00 +lock_outer lock_outer ver m p 0.00 0.07 0.00 0.07 par:pas; +loco loco adv 1.48 1.08 1.48 1.08 +locomobile locomobile nom f s 0.00 0.07 0.00 0.07 +locomoteur locomoteur adj m s 0.01 0.07 0.01 0.00 +locomoteurs locomoteur adj m p 0.01 0.07 0.00 0.07 +locomotion locomotion nom f s 0.26 0.88 0.26 0.88 +locomotive locomotive nom f s 3.95 13.11 3.69 10.61 +locomotives locomotive nom f p 3.95 13.11 0.25 2.50 +locomotrice locomoteur nom f s 0.00 0.07 0.00 0.07 +locos loco nom m p 0.73 1.35 0.16 0.47 +locus locus nom m 0.15 0.20 0.15 0.20 +locuste locuste nom f s 0.06 0.00 0.01 0.00 +locustes locuste nom f p 0.06 0.00 0.05 0.00 +locuteur locuteur nom m s 0.02 0.00 0.01 0.00 +locution locution nom f s 0.04 1.01 0.04 0.41 +locutions locution nom f p 0.04 1.01 0.01 0.61 +locutrice locuteur nom f s 0.02 0.00 0.01 0.00 +loden loden nom m s 0.27 0.81 0.27 0.74 +lodens loden nom m p 0.27 0.81 0.00 0.07 +lof lof nom m s 0.02 0.00 0.02 0.00 +lofe lofer ver 0.02 0.00 0.01 0.00 ind:pre:3s; +lofez lofer ver 0.02 0.00 0.01 0.00 imp:pre:2p; +loft loft nom m s 1.36 0.47 1.11 0.47 +lofts loft nom m p 1.36 0.47 0.26 0.00 +logarithme logarithme nom m s 0.09 0.34 0.05 0.00 +logarithmes logarithme nom m p 0.09 0.34 0.04 0.34 +logarithmique logarithmique adj s 0.02 0.00 0.02 0.00 +loge loge nom f s 13.69 22.36 12.15 18.11 +logea loger ver 18.36 26.42 0.03 0.41 ind:pas:3s; +logeable logeable adj m s 0.00 0.14 0.00 0.07 +logeables logeable adj m p 0.00 0.14 0.00 0.07 +logeai loger ver 18.36 26.42 0.00 0.14 ind:pas:1s; +logeaient loger ver 18.36 26.42 0.06 1.69 ind:imp:3p; +logeais loger ver 18.36 26.42 0.16 0.47 ind:imp:1s;ind:imp:2s; +logeait loger ver 18.36 26.42 0.55 3.72 ind:imp:3s; +logeant loger ver 18.36 26.42 0.01 0.47 par:pre; +logeassent loger ver 18.36 26.42 0.00 0.07 sub:imp:3p; +logement logement nom m s 11.13 13.65 8.37 11.08 +logements logement nom m p 11.13 13.65 2.76 2.57 +logent loger ver 18.36 26.42 0.38 1.08 ind:pre:3p; +loger loger ver 18.36 26.42 5.84 7.23 inf; +logera loger ver 18.36 26.42 0.39 0.00 ind:fut:3s; +logerai loger ver 18.36 26.42 0.30 0.20 ind:fut:1s; +logeraient loger ver 18.36 26.42 0.00 0.14 cnd:pre:3p; +logerait loger ver 18.36 26.42 0.17 0.27 cnd:pre:3s; +logeras loger ver 18.36 26.42 0.24 0.07 ind:fut:2s; +logerez loger ver 18.36 26.42 0.38 0.07 ind:fut:2p; +logerions loger ver 18.36 26.42 0.00 0.07 cnd:pre:1p; +logerons loger ver 18.36 26.42 0.03 0.00 ind:fut:1p; +logeront loger ver 18.36 26.42 0.29 0.14 ind:fut:3p; +loges loge nom f p 13.69 22.36 1.54 4.26 +logettes logette nom f p 0.00 0.14 0.00 0.14 +logeur logeur nom m s 1.16 3.72 0.25 0.07 +logeurs logeur nom m p 1.16 3.72 0.00 0.27 +logeuse logeur nom f s 1.16 3.72 0.91 3.31 +logeuses logeuse nom f p 0.36 0.00 0.01 0.00 +logez loger ver 18.36 26.42 1.29 0.41 imp:pre:2p;ind:pre:2p; +loggia loggia nom f s 0.10 3.85 0.10 3.11 +loggias loggia nom f p 0.10 3.85 0.00 0.74 +logiciel logiciel nom m s 3.61 0.14 2.31 0.14 +logiciels logiciel nom m p 3.61 0.14 1.30 0.00 +logicien logicien nom m s 0.03 0.41 0.03 0.20 +logicienne logicien nom f s 0.03 0.41 0.00 0.07 +logiciens logicien nom m p 0.03 0.41 0.00 0.14 +logiez loger ver 18.36 26.42 0.45 0.07 ind:imp:2p; +login login adj m s 0.04 0.00 0.04 0.00 +logions loger ver 18.36 26.42 0.11 0.20 ind:imp:1p; +logique logique adj s 14.40 12.03 13.79 11.22 +logiquement logiquement adv 1.33 3.24 1.33 3.24 +logiques logique adj p 14.40 12.03 0.61 0.81 +logis logis nom m 2.70 12.84 2.70 12.84 +logisticien logisticien nom m s 0.01 0.00 0.01 0.00 +logistique logistique nom f s 0.80 0.27 0.80 0.27 +logistiques logistique adj p 0.41 0.20 0.20 0.07 +logo logo nom m s 1.65 0.00 1.65 0.00 +logogriphe logogriphe nom m s 0.01 0.14 0.01 0.07 +logogriphes logogriphe nom m p 0.01 0.14 0.00 0.07 +logomachie logomachie nom f s 0.00 0.14 0.00 0.14 +logorrhée logorrhée nom f s 0.06 0.27 0.06 0.27 +logos logos nom m 0.16 0.81 0.16 0.81 +logosphère logosphère nom f s 0.00 0.14 0.00 0.14 +logothètes logothète nom m p 0.00 0.07 0.00 0.07 +logèrent loger ver 18.36 26.42 0.00 0.14 ind:pas:3p; +logé loger ver m s 18.36 26.42 1.77 3.45 par:pas; +logue loguer ver 0.02 0.00 0.02 0.00 imp:pre:2s;ind:pre:3s; +logée loger ver f s 18.36 26.42 1.23 1.08 par:pas; +logées loger ver f p 18.36 26.42 0.16 0.20 par:pas; +logés logé adj m p 0.89 1.76 0.36 0.81 +loi loi nom f s 110.12 72.30 87.37 44.46 +loin loin adv_sup 248.34 452.36 248.34 452.36 +lointain lointain adj m s 10.12 91.96 5.05 33.18 +lointaine lointain adj f s 10.12 91.96 2.89 32.50 +lointainement lointainement adv 0.00 0.47 0.00 0.47 +lointaines lointain adj f p 10.12 91.96 1.15 12.64 +lointains lointain adj m p 10.12 91.96 1.02 13.65 +loir loir nom m s 0.69 1.62 0.51 0.74 +loirs loir nom m p 0.69 1.62 0.18 0.88 +lois loi nom f p 110.12 72.30 22.75 27.84 +loisible loisible adj s 0.00 0.74 0.00 0.74 +loisir loisir nom m s 5.09 20.81 2.41 13.24 +loisirs loisir nom m p 5.09 20.81 2.68 7.57 +lokoum lokoum nom m s 0.00 0.14 0.00 0.14 +lolita lolita nom f s 0.10 0.07 0.04 0.00 +lolitas lolita nom f p 0.10 0.07 0.06 0.07 +lolo lolo nom m s 1.81 0.41 0.70 0.34 +lolos lolo nom m p 1.81 0.41 1.12 0.07 +lombaire lombaire adj s 1.37 0.34 1.06 0.20 +lombaires lombaire adj f p 1.37 0.34 0.30 0.14 +lombalgie lombalgie nom f s 0.01 0.00 0.01 0.00 +lombard lombard adj m s 0.14 0.74 0.00 0.20 +lombarde lombard adj f s 0.14 0.74 0.14 0.14 +lombardes lombard adj f p 0.14 0.74 0.00 0.14 +lombardo lombardo nom m 0.01 0.00 0.01 0.00 +lombards lombard adj m p 0.14 0.74 0.00 0.27 +lombes lombes nom f p 0.00 0.41 0.00 0.41 +lombostats lombostat nom m p 0.00 0.07 0.00 0.07 +lombric lombric nom m s 0.28 0.74 0.08 0.41 +lombrics lombric nom m p 0.28 0.74 0.20 0.34 +lompe lompe nom m s 0.01 0.00 0.01 0.00 +londonien londonien adj m s 1.09 0.95 0.44 0.47 +londonienne londonien adj f s 1.09 0.95 0.20 0.20 +londoniennes londonien adj f p 1.09 0.95 0.04 0.07 +londoniens londonien adj m p 1.09 0.95 0.41 0.20 +londrès londrès nom m 0.00 0.07 0.00 0.07 +long_courrier long_courrier nom m s 0.26 0.61 0.25 0.47 +long_courrier long_courrier nom m p 0.26 0.61 0.01 0.14 +long_métrage long_métrage nom m s 0.06 0.00 0.06 0.00 +long long adj m s 164.02 444.86 79.18 153.51 +longane longane nom m s 0.14 0.00 0.14 0.00 +longanimité longanimité nom f s 0.00 0.14 0.00 0.14 +longe longer ver 2.98 34.32 0.55 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +longea longer ver 2.98 34.32 0.01 3.65 ind:pas:3s; +longeai longer ver 2.98 34.32 0.00 0.27 ind:pas:1s; +longeaient longer ver 2.98 34.32 0.00 1.82 ind:imp:3p; +longeais longer ver 2.98 34.32 0.12 0.81 ind:imp:1s; +longeait longer ver 2.98 34.32 0.03 6.76 ind:imp:3s; +longeant longer ver 2.98 34.32 0.40 5.68 par:pre; +longent longer ver 2.98 34.32 0.14 0.74 ind:pre:3p; +longeâmes longer ver 2.98 34.32 0.00 0.41 ind:pas:1p; +longeons longer ver 2.98 34.32 0.02 0.81 imp:pre:1p;ind:pre:1p; +longer longer ver 2.98 34.32 0.61 2.57 inf; +longera longer ver 2.98 34.32 0.16 0.00 ind:fut:3s; +longeraient longer ver 2.98 34.32 0.00 0.07 cnd:pre:3p; +longerait longer ver 2.98 34.32 0.00 0.14 cnd:pre:3s; +longerions longer ver 2.98 34.32 0.00 0.07 cnd:pre:1p; +longeron longeron nom m s 0.00 0.20 0.00 0.07 +longerons longer ver 2.98 34.32 0.01 0.00 ind:fut:1p; +longeront longer ver 2.98 34.32 0.01 0.20 ind:fut:3p; +longes longe nom f p 0.11 1.35 0.03 0.07 +longez longer ver 2.98 34.32 0.43 0.14 imp:pre:2p;ind:pre:2p; +longicornes longicorne nom m p 0.00 0.07 0.00 0.07 +longiez longer ver 2.98 34.32 0.01 0.00 ind:imp:2p; +longiforme longiforme adj s 0.00 0.07 0.00 0.07 +longiligne longiligne adj m s 0.02 0.88 0.00 0.81 +longilignes longiligne adj m p 0.02 0.88 0.02 0.07 +longions longer ver 2.98 34.32 0.10 0.74 ind:imp:1p; +longitude longitude nom f s 0.46 0.41 0.46 0.41 +longitudinal longitudinal adj m s 0.19 0.54 0.03 0.00 +longitudinale longitudinal adj f s 0.19 0.54 0.01 0.07 +longitudinalement longitudinalement adv 0.00 0.07 0.00 0.07 +longitudinales longitudinal adj f p 0.19 0.54 0.15 0.41 +longitudinaux longitudinal adj m p 0.19 0.54 0.00 0.07 +longrines longrine nom f p 0.00 0.07 0.00 0.07 +longs long adj m p 164.02 444.86 17.65 65.47 +longtemps longtemps adv_sup 290.36 335.54 290.36 335.54 +longèrent longer ver 2.98 34.32 0.00 1.55 ind:pas:3p; +longé longer ver m s 2.98 34.32 0.38 1.76 par:pas; +longue_vue longue_vue nom f s 0.30 2.64 0.29 2.50 +longue long adj f s 164.02 444.86 54.12 138.31 +longée longer ver f s 2.98 34.32 0.01 0.14 par:pas; +longuement longuement adv 3.71 58.45 3.71 58.45 +longue_vue longue_vue nom f p 0.30 2.64 0.01 0.14 +longues long adj f p 164.02 444.86 13.07 87.57 +longuet longuet adj m s 0.02 0.41 0.01 0.20 +longuette longuet adj f s 0.02 0.41 0.01 0.14 +longuettes longuet adj f p 0.02 0.41 0.00 0.07 +longueur longueur nom f s 9.42 28.45 8.36 26.82 +longueurs longueur nom f p 9.42 28.45 1.06 1.62 +longés longer ver m p 2.98 34.32 0.00 0.07 par:pas; +longévité longévité nom f s 0.71 0.88 0.71 0.88 +look look nom m s 10.93 1.96 10.47 1.82 +looks look nom m p 10.93 1.96 0.46 0.14 +looping looping nom m s 0.33 0.68 0.27 0.54 +loopings looping nom m p 0.33 0.68 0.06 0.14 +looser looser nom m s 1.09 0.00 0.82 0.00 +loosers looser nom m p 1.09 0.00 0.27 0.00 +lopaille lopaille nom f s 0.00 0.07 0.00 0.07 +lope lope nom f s 1.01 1.69 0.53 1.08 +lopes lope nom f p 1.01 1.69 0.48 0.61 +lopette lopette nom f s 1.25 0.47 1.11 0.41 +lopettes lopette nom f p 1.25 0.47 0.15 0.07 +lopin lopin nom m s 0.62 0.41 0.52 0.34 +lopins lopin nom m p 0.62 0.41 0.10 0.07 +loquace loquace adj s 0.61 2.43 0.58 2.03 +loquaces loquace adj f p 0.61 2.43 0.03 0.41 +loquacité loquacité nom f s 0.01 0.00 0.01 0.00 +loquait loquer ver 0.41 0.27 0.00 0.07 ind:imp:3s; +loque loque nom f s 2.20 9.66 1.72 3.24 +loquedu loquedu nom s 0.07 2.50 0.01 1.08 +loquedus loquedu nom p 0.07 2.50 0.06 1.42 +loquer loquer ver 0.41 0.27 0.00 0.14 inf; +loques loque nom f p 2.20 9.66 0.48 6.42 +loquet loquet nom m s 0.60 4.39 0.60 4.05 +loqueteau loqueteau nom m s 0.00 0.07 0.00 0.07 +loqueteuse loqueteux adj f s 0.06 1.89 0.00 0.07 +loqueteuses loqueteux adj f p 0.06 1.89 0.00 0.07 +loqueteux loqueteux adj m 0.06 1.89 0.06 1.76 +loquets loquet nom m p 0.60 4.39 0.00 0.34 +loquette loqueter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +loqué loquer ver m s 0.41 0.27 0.41 0.00 par:pas; +loqués loquer ver m p 0.41 0.27 0.00 0.07 par:pas; +loran loran nom m s 0.14 0.00 0.14 0.00 +lord_maire lord_maire nom m s 0.02 0.07 0.02 0.07 +lord lord nom m s 1.41 7.57 1.26 6.69 +lordose lordose nom f s 0.00 0.07 0.00 0.07 +lords lord nom m p 1.41 7.57 0.15 0.88 +lorette lorette nom f s 0.01 0.07 0.01 0.00 +lorettes lorette nom f p 0.01 0.07 0.00 0.07 +lorgna lorgner ver 1.07 7.09 0.00 0.88 ind:pas:3s; +lorgnaient lorgner ver 1.07 7.09 0.02 0.54 ind:imp:3p; +lorgnais lorgner ver 1.07 7.09 0.04 0.20 ind:imp:1s;ind:imp:2s; +lorgnait lorgner ver 1.07 7.09 0.13 1.69 ind:imp:3s; +lorgnant lorgner ver 1.07 7.09 0.01 1.15 par:pre; +lorgne lorgner ver 1.07 7.09 0.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lorgnent lorgner ver 1.07 7.09 0.07 0.47 ind:pre:3p; +lorgner lorgner ver 1.07 7.09 0.14 0.88 inf; +lorgnerai lorgner ver 1.07 7.09 0.00 0.07 ind:fut:1s; +lorgnerez lorgner ver 1.07 7.09 0.00 0.07 ind:fut:2p; +lorgnette lorgnette nom f s 0.13 2.09 0.13 1.08 +lorgnettes lorgnette nom f p 0.13 2.09 0.00 1.01 +lorgnez lorgner ver 1.07 7.09 0.13 0.00 ind:pre:2p; +lorgnon lorgnon nom m s 0.02 5.41 0.02 2.84 +lorgnons lorgnon nom m p 0.02 5.41 0.00 2.57 +lorgnèrent lorgner ver 1.07 7.09 0.00 0.07 ind:pas:3p; +lorgné lorgner ver m s 1.07 7.09 0.00 0.47 par:pas; +lorgnées lorgner ver f p 1.07 7.09 0.00 0.07 par:pas; +lorgnés lorgner ver m p 1.07 7.09 0.00 0.07 par:pas; +lori lori nom m s 0.01 0.00 0.01 0.00 +loriot loriot nom m s 0.05 2.36 0.02 2.16 +loriots loriot nom m p 0.05 2.36 0.03 0.20 +loris loris nom m 0.04 0.00 0.04 0.00 +lorrain lorrain adj m s 0.06 1.49 0.00 0.47 +lorraine lorrain adj f s 0.06 1.49 0.06 0.74 +lorraines lorrain adj f p 0.06 1.49 0.00 0.20 +lorrains lorrain nom m p 0.00 0.81 0.00 0.54 +lors lors adv_sup 35.79 70.27 35.79 70.27 +lorsqu lorsqu con 0.04 0.00 0.04 0.00 +lorsque lorsque con 49.36 207.09 49.36 207.09 +los los nom m 5.08 2.77 5.08 2.77 +losange losange nom m s 0.11 3.92 0.08 1.49 +losanges losange nom m p 0.11 3.92 0.03 2.43 +losangé losangé adj m s 0.00 0.34 0.00 0.07 +losangée losangé adj f s 0.00 0.34 0.00 0.07 +losangés losangé adj m p 0.00 0.34 0.00 0.20 +loser loser nom m s 4.77 0.07 3.27 0.07 +losers loser nom m p 4.77 0.07 1.51 0.00 +lot lot nom m s 13.28 17.16 11.87 15.68 +loterie loterie nom f s 7.25 4.86 7.16 4.32 +loteries loterie nom f p 7.25 4.86 0.09 0.54 +loti loti adj m s 0.69 1.22 0.09 0.34 +lotie lotir ver f s 0.26 0.54 0.23 0.14 par:pas; +lotier lotier nom m s 0.00 0.07 0.00 0.07 +loties loti adj f p 0.69 1.22 0.00 0.07 +lotion lotion nom f s 1.68 0.74 1.53 0.54 +lotionnés lotionner ver m p 0.00 0.07 0.00 0.07 par:pas; +lotions lotion nom f p 1.68 0.74 0.15 0.20 +lotir lotir ver 0.26 0.54 0.01 0.34 inf; +lotis loti adj m p 0.69 1.22 0.47 0.47 +lotissement lotissement nom m s 0.77 1.01 0.59 0.47 +lotissements lotissement nom m p 0.77 1.01 0.19 0.54 +loto loto nom m s 6.75 1.35 6.75 1.15 +lotos loto nom m p 6.75 1.35 0.00 0.20 +lots lot nom m p 13.28 17.16 1.42 1.49 +lotta lotta nom f s 0.16 0.41 0.16 0.41 +lotte lotte nom f s 0.18 0.14 0.18 0.07 +lottes lotte nom f p 0.18 0.14 0.00 0.07 +lotus lotus nom m 0.58 1.08 0.58 1.08 +loua louer ver 48.08 29.46 0.17 1.08 ind:pas:3s; +louable louable adj s 1.37 1.89 1.04 1.42 +louablement louablement adv 0.14 0.00 0.14 0.00 +louables louable adj p 1.37 1.89 0.33 0.47 +louage louage nom m s 0.07 0.88 0.07 0.88 +louai louer ver 48.08 29.46 0.00 0.41 ind:pas:1s; +louaient louer ver 48.08 29.46 0.33 1.15 ind:imp:3p; +louais louer ver 48.08 29.46 0.42 0.34 ind:imp:1s;ind:imp:2s; +louait louer ver 48.08 29.46 1.46 3.24 ind:imp:3s; +louange louange nom f s 3.06 6.35 0.97 1.82 +louangea louanger ver 0.13 0.74 0.00 0.14 ind:pas:3s; +louangeaient louanger ver 0.13 0.74 0.00 0.07 ind:imp:3p; +louangeant louanger ver 0.13 0.74 0.00 0.07 par:pre; +louanger louanger ver 0.13 0.74 0.12 0.20 inf; +louanges louange nom f p 3.06 6.35 2.09 4.53 +louangeur louangeur adj m s 0.00 0.20 0.00 0.14 +louangeuses louangeur adj f p 0.00 0.20 0.00 0.07 +louangé louanger ver m s 0.13 0.74 0.00 0.07 par:pas; +louangée louanger ver f s 0.13 0.74 0.00 0.07 par:pas; +louangés louanger ver m p 0.13 0.74 0.01 0.07 par:pas; +louant louer ver 48.08 29.46 0.23 0.54 par:pre; +loubard loubard nom m s 1.73 3.04 1.04 1.01 +loubarde loubard nom f s 1.73 3.04 0.00 0.34 +loubards loubard nom m p 1.73 3.04 0.69 1.69 +loucha loucher ver 2.54 6.35 0.00 0.27 ind:pas:3s; +louchai loucher ver 2.54 6.35 0.00 0.07 ind:pas:1s; +louchaient loucher ver 2.54 6.35 0.00 0.41 ind:imp:3p; +louchais loucher ver 2.54 6.35 0.01 0.20 ind:imp:1s;ind:imp:2s; +louchait loucher ver 2.54 6.35 0.20 1.08 ind:imp:3s; +louchant loucher ver 2.54 6.35 0.04 1.42 par:pre; +louche louche adj s 7.63 9.05 5.71 5.88 +louchebem louchebem nom m s 0.00 0.27 0.00 0.27 +louchement louchement nom m s 0.00 0.07 0.00 0.07 +louchent loucher ver 2.54 6.35 0.15 0.14 ind:pre:3p; +loucher loucher ver 2.54 6.35 0.40 0.61 inf; +louches louche adj p 7.63 9.05 1.92 3.18 +louchet louchet nom m s 0.00 0.07 0.00 0.07 +loucheur loucheur nom m s 0.05 0.27 0.05 0.14 +loucheuse loucheur nom f s 0.05 0.27 0.00 0.14 +louchez loucher ver 2.54 6.35 0.09 0.07 ind:pre:2p; +louchon louchon nom m s 0.00 0.14 0.00 0.07 +louchons loucher ver 2.54 6.35 0.01 0.14 ind:pre:1p; +louchât loucher ver 2.54 6.35 0.00 0.07 sub:imp:3s; +louché loucher ver m s 2.54 6.35 0.01 0.41 par:pas; +louchébème louchébème nom m s 0.00 0.07 0.00 0.07 +louchée loucher ver f s 2.54 6.35 0.01 0.14 par:pas; +loue louer ver 48.08 29.46 6.01 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +louent louer ver 48.08 29.46 0.76 0.41 ind:pre:3p; +louer louer ver 48.08 29.46 15.03 7.57 ind:pre:2p;inf; +louera louer ver 48.08 29.46 0.33 0.14 ind:fut:3s; +louerai louer ver 48.08 29.46 0.29 0.14 ind:fut:1s; +loueraient louer ver 48.08 29.46 0.01 0.07 cnd:pre:3p; +louerais louer ver 48.08 29.46 0.31 0.14 cnd:pre:1s;cnd:pre:2s; +louerait louer ver 48.08 29.46 0.05 0.41 cnd:pre:3s; +loueras louer ver 48.08 29.46 0.18 0.00 ind:fut:2s; +loueriez louer ver 48.08 29.46 0.01 0.07 cnd:pre:2p; +louerons louer ver 48.08 29.46 0.17 0.07 ind:fut:1p; +loues louer ver 48.08 29.46 0.58 0.07 ind:pre:2s; +loueur loueur nom m s 0.65 1.62 0.41 1.49 +loueurs loueur nom m p 0.65 1.62 0.23 0.07 +loueuse loueur nom f s 0.65 1.62 0.01 0.07 +louez louer ver 48.08 29.46 1.96 0.20 imp:pre:2p;ind:pre:2p; +louf louf adj m s 0.47 1.55 0.47 1.55 +loufer loufer ver 0.00 0.20 0.00 0.07 inf; +loufes loufer ver 0.00 0.20 0.00 0.14 ind:pre:2s; +loufiat loufiat nom m s 0.20 6.76 0.14 5.27 +loufiats loufiat nom m p 0.20 6.76 0.05 1.49 +loufoque loufoque adj s 0.87 0.41 0.68 0.34 +loufoquerie loufoquerie nom f s 0.04 0.27 0.04 0.20 +loufoqueries loufoquerie nom f p 0.04 0.27 0.00 0.07 +loufoques loufoque adj f p 0.87 0.41 0.19 0.07 +louftingue louftingue adj s 0.00 0.07 0.00 0.07 +louions louer ver 48.08 29.46 0.12 0.07 ind:imp:1p; +louis_philippard louis_philippard adj m s 0.00 0.34 0.00 0.07 +louis_philippard louis_philippard adj f s 0.00 0.34 0.00 0.14 +louis_philippard louis_philippard adj m p 0.00 0.34 0.00 0.14 +louis louis nom m s 5.01 5.07 5.01 5.07 +louise_bonne louise_bonne nom f s 0.00 0.07 0.00 0.07 +louisianais louisianais adj m s 0.02 0.00 0.02 0.00 +loukoum loukoum nom m s 0.07 2.57 0.02 0.95 +loukoums loukoum nom m p 0.07 2.57 0.05 1.62 +loulou loulou nom m s 1.48 19.32 1.45 18.72 +loulous loulou nom m p 1.48 19.32 0.03 0.61 +louloute louloute nom f s 0.45 0.20 0.35 0.07 +louloutes louloute nom f p 0.45 0.20 0.10 0.14 +louloutte louloutte nom f s 0.00 0.07 0.00 0.07 +louâmes louer ver 48.08 29.46 0.00 0.07 ind:pas:1p; +louons louer ver 48.08 29.46 1.35 0.27 imp:pre:1p;ind:pre:1p; +loup_cervier loup_cervier nom m s 0.00 0.14 0.00 0.07 +loup_garou loup_garou nom m s 3.98 1.22 3.35 0.88 +loup loup nom m s 30.40 44.39 20.97 22.30 +loupa louper ver 12.06 9.46 0.03 0.14 ind:pas:3s; +loupai louper ver 12.06 9.46 0.00 0.07 ind:pas:1s; +loupaient louper ver 12.06 9.46 0.00 0.07 ind:imp:3p; +loupais louper ver 12.06 9.46 0.00 0.07 ind:imp:1s; +loupait louper ver 12.06 9.46 0.02 0.27 ind:imp:3s; +loupe loupe nom f s 1.71 5.47 1.66 4.86 +loupent louper ver 12.06 9.46 0.06 0.07 ind:pre:3p; +louper louper ver 12.06 9.46 3.81 3.04 inf; +loupera louper ver 12.06 9.46 0.26 0.20 ind:fut:3s; +louperai louper ver 12.06 9.46 0.15 0.07 ind:fut:1s; +louperais louper ver 12.06 9.46 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +louperait louper ver 12.06 9.46 0.00 0.07 cnd:pre:3s; +louperas louper ver 12.06 9.46 0.02 0.00 ind:fut:2s; +louperez louper ver 12.06 9.46 0.03 0.00 ind:fut:2p; +loupes louper ver 12.06 9.46 0.69 0.14 ind:pre:2s; +loupez louper ver 12.06 9.46 0.17 0.07 imp:pre:2p;ind:pre:2p; +loupiat loupiat nom m s 0.00 0.14 0.00 0.14 +loupiez louper ver 12.06 9.46 0.04 0.07 ind:imp:2p; +loupiot loupiot nom m s 0.13 0.41 0.12 0.20 +loupiote loupiote nom f s 0.06 1.01 0.02 0.68 +loupiotes loupiote nom f p 0.06 1.01 0.03 0.34 +loupiots loupiot nom m p 0.13 0.41 0.01 0.20 +loupiotte loupiotte nom f s 0.00 0.14 0.00 0.07 +loupiottes loupiotte nom f p 0.00 0.14 0.00 0.07 +loup_cervier loup_cervier nom m p 0.00 0.14 0.00 0.07 +loup_garou loup_garou nom m p 3.98 1.22 0.63 0.34 +loups loup nom m p 30.40 44.39 8.41 18.24 +loupé louper ver m s 12.06 9.46 5.37 2.64 par:pas; +loupée louper ver f s 12.06 9.46 0.40 0.20 par:pas; +loupées louper ver f p 12.06 9.46 0.04 0.14 par:pas; +loupés louper ver m p 12.06 9.46 0.18 0.27 par:pas; +lourant lourer ver 0.00 0.07 0.00 0.07 par:pre; +lourd lourd adv 16.09 21.35 16.09 21.35 +lourdait lourder ver 0.38 1.69 0.00 0.07 ind:imp:3s; +lourdant lourder ver 0.38 1.69 0.00 0.07 par:pre; +lourdaud lourdaud nom m s 0.64 0.95 0.48 0.74 +lourdaude lourdaud adj f s 0.35 0.68 0.00 0.14 +lourdaudes lourdaud adj f p 0.35 0.68 0.00 0.07 +lourdauds lourdaud nom m p 0.64 0.95 0.16 0.20 +lourde lourd adj f s 29.45 145.88 8.46 56.62 +lourdement lourdement adv 1.87 14.66 1.87 14.66 +lourder lourder ver 0.38 1.69 0.22 0.61 inf; +lourderie lourderie nom f s 0.00 0.07 0.00 0.07 +lourdes lourd adj f p 29.45 145.88 4.26 23.18 +lourdeur lourdeur nom f s 0.20 5.47 0.19 4.86 +lourdeurs lourdeur nom f p 0.20 5.47 0.01 0.61 +lourdingue lourdingue adj f s 0.14 0.88 0.07 0.34 +lourdingues lourdingue adj m p 0.14 0.88 0.07 0.54 +lourds lourd adj m p 29.45 145.88 6.58 23.58 +lourdé lourder ver m s 0.38 1.69 0.10 0.34 par:pas; +lourdée lourder ver f s 0.38 1.69 0.05 0.27 par:pas; +lourdées lourder ver f p 0.38 1.69 0.00 0.14 par:pas; +lourdés lourder ver m p 0.38 1.69 0.01 0.20 par:pas; +loustic loustic nom m s 0.08 1.49 0.06 0.95 +loustics loustic nom m p 0.08 1.49 0.02 0.54 +loute loute nom f s 0.07 0.14 0.07 0.14 +louèrent louer ver 48.08 29.46 0.02 0.47 ind:pas:3p; +loutre loutre nom f s 2.52 1.62 1.30 1.35 +loutres loutre nom f p 2.52 1.62 1.22 0.27 +loué louer ver m s 48.08 29.46 16.22 7.91 par:pas; +louée louer ver f s 48.08 29.46 1.64 2.09 par:pas; +louées loué adj f p 1.67 1.82 0.12 0.14 +loués louer ver m p 48.08 29.46 0.37 0.34 par:pas; +louve loup nom f s 30.40 44.39 1.02 3.51 +louves louve nom f p 0.02 0.00 0.02 0.00 +louvet louvet adj m s 0.01 2.91 0.01 2.91 +louveteau louveteau nom m s 0.23 2.36 0.13 0.54 +louveteaux louveteau nom m p 0.23 2.36 0.11 1.82 +louvetiers louvetier nom m p 0.00 0.07 0.00 0.07 +louvoie louvoyer ver 0.31 2.97 0.07 0.81 ind:pre:1s;ind:pre:3s; +louvoiements louvoiement nom m p 0.00 0.14 0.00 0.14 +louvoient louvoyer ver 0.31 2.97 0.01 0.07 ind:pre:3p; +louvoyaient louvoyer ver 0.31 2.97 0.00 0.07 ind:imp:3p; +louvoyait louvoyer ver 0.31 2.97 0.01 0.20 ind:imp:3s; +louvoyant louvoyer ver 0.31 2.97 0.00 0.61 par:pre; +louvoyants louvoyant adj m p 0.00 0.20 0.00 0.07 +louvoyer louvoyer ver 0.31 2.97 0.18 0.88 inf; +louvoyons louvoyer ver 0.31 2.97 0.00 0.07 ind:pre:1p; +louvoyât louvoyer ver 0.31 2.97 0.00 0.07 sub:imp:3s; +louvoyé louvoyer ver m s 0.31 2.97 0.04 0.20 par:pas; +lova lover ver 8.85 7.03 0.00 0.20 ind:pas:3s; +lovaient lover ver 8.85 7.03 0.00 0.07 ind:imp:3p; +lovais lover ver 8.85 7.03 0.01 0.00 ind:imp:1s; +lovait lover ver 8.85 7.03 0.00 0.34 ind:imp:3s; +lovant lover ver 8.85 7.03 0.00 0.14 par:pre; +love lover ver 8.85 7.03 8.64 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lovent lover ver 8.85 7.03 0.00 0.07 ind:pre:3p; +lover lover ver 8.85 7.03 0.14 1.01 inf; +lové lover ver m s 8.85 7.03 0.04 1.15 par:pas; +lovée lover ver f s 8.85 7.03 0.02 0.95 par:pas; +lovées lover ver f p 8.85 7.03 0.00 0.14 par:pas; +lovés lover ver m p 8.85 7.03 0.00 0.47 par:pas; +loyal loyal adj m s 10.96 7.36 5.87 3.72 +loyale loyal adj f s 10.96 7.36 2.13 1.82 +loyalement loyalement adv 0.81 1.42 0.81 1.42 +loyales loyal adj f p 10.96 7.36 0.19 0.00 +loyalisme loyalisme nom m s 0.08 1.15 0.08 1.15 +loyaliste loyaliste adj f s 0.07 0.07 0.03 0.00 +loyalistes loyaliste nom p 0.07 0.07 0.06 0.00 +loyauté loyauté nom f s 9.38 3.11 9.36 2.97 +loyautés loyauté nom f p 9.38 3.11 0.02 0.14 +loyaux loyal adj m p 10.96 7.36 2.76 1.82 +loyer loyer nom m s 17.18 6.49 16.20 5.07 +loyers loyer nom m p 17.18 6.49 0.98 1.42 +lsd lsd nom m 0.08 0.00 0.08 0.00 +lèche_botte lèche_botte nom m s 0.11 0.00 0.11 0.00 +lèche_bottes lèche_bottes nom m 0.68 0.34 0.68 0.34 +lèche_cul lèche_cul nom m s 1.29 0.61 1.29 0.61 +lèche_vitrine lèche_vitrine nom m s 0.26 0.07 0.26 0.07 +lèche_vitrines lèche_vitrines nom m 0.07 0.20 0.07 0.20 +lèche lécher ver 14.09 23.11 4.03 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lèchefrite lèchefrite nom f s 0.00 0.07 0.00 0.07 +lèchent lécher ver 14.09 23.11 0.50 0.34 ind:pre:3p; +lècheries lècherie nom f p 0.00 0.07 0.00 0.07 +lèches lécher ver 14.09 23.11 0.50 0.07 ind:pre:2s; +lègue léguer ver 4.98 5.61 1.47 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lèpre lèpre nom f s 1.40 3.65 1.40 3.51 +lèpres lèpre nom f p 1.40 3.65 0.00 0.14 +lès lès pre 0.00 0.07 0.00 0.07 +lèse_majesté lèse_majesté nom f 0.03 0.27 0.03 0.27 +lèse léser ver 1.36 1.08 0.06 0.07 ind:pre:3s; +lève lever ver 165.98 440.74 67.72 77.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +lèvent lever ver 165.98 440.74 1.67 8.45 ind:pre:3p;sub:pre:3p; +lèvera lever ver 165.98 440.74 1.91 1.89 ind:fut:3s; +lèverai lever ver 165.98 440.74 0.70 0.95 ind:fut:1s; +lèveraient lever ver 165.98 440.74 0.05 0.34 cnd:pre:3p; +lèverais lever ver 165.98 440.74 0.26 0.41 cnd:pre:1s;cnd:pre:2s; +lèverait lever ver 165.98 440.74 0.48 1.35 cnd:pre:3s; +lèveras lever ver 165.98 440.74 0.32 0.07 ind:fut:2s; +lèverez lever ver 165.98 440.74 0.17 0.07 ind:fut:2p; +lèverons lever ver 165.98 440.74 0.31 0.14 ind:fut:1p; +lèveront lever ver 165.98 440.74 0.26 0.20 ind:fut:3p; +lèves lever ver 165.98 440.74 5.42 1.35 ind:pre:2s;sub:pre:2s; +lèvre lèvre nom f s 37.91 222.03 4.00 20.74 +lèvres lèvre nom f p 37.91 222.03 33.91 201.28 +lé lé nom m s 2.30 2.03 2.28 1.35 +lu lire ver m s 281.09 324.80 82.12 57.97 par:pas; +lubie lubie nom f s 2.41 2.77 1.37 1.35 +lubies lubie nom f p 2.41 2.77 1.04 1.42 +lubricité lubricité nom f s 0.57 0.74 0.57 0.74 +lubrifiant lubrifiant nom m s 0.63 0.68 0.58 0.54 +lubrifiante lubrifiant adj f s 0.10 0.07 0.00 0.07 +lubrifiants lubrifiant nom m p 0.63 0.68 0.05 0.14 +lubrification lubrification nom f s 0.14 0.00 0.14 0.00 +lubrifie lubrifier ver 0.53 0.41 0.19 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lubrifient lubrifier ver 0.53 0.41 0.01 0.00 ind:pre:3p; +lubrifier lubrifier ver 0.53 0.41 0.24 0.20 inf; +lubrifié lubrifié adj m s 0.17 0.20 0.11 0.07 +lubrifiée lubrifier ver f s 0.53 0.41 0.03 0.00 par:pas; +lubrifiées lubrifié adj f p 0.17 0.20 0.02 0.14 +lubrifiés lubrifié adj m p 0.17 0.20 0.01 0.00 +lubrique lubrique adj s 1.60 3.31 1.04 2.03 +lubriques lubrique adj p 1.60 3.31 0.56 1.28 +lucarne lucarne nom f s 0.95 10.00 0.78 8.24 +lucarnes lucarne nom f p 0.95 10.00 0.17 1.76 +luce luce nom f s 0.01 0.00 0.01 0.00 +lucet lucet nom m s 0.00 0.07 0.00 0.07 +lécha lécher ver 14.09 23.11 0.01 1.96 ind:pas:3s; +léchage léchage nom m s 0.19 0.27 0.17 0.14 +léchages léchage nom m p 0.19 0.27 0.01 0.14 +léchaient lécher ver 14.09 23.11 0.08 0.74 ind:imp:3p; +léchais lécher ver 14.09 23.11 0.11 0.27 ind:imp:1s;ind:imp:2s; +léchait lécher ver 14.09 23.11 0.37 3.45 ind:imp:3s; +léchant lécher ver 14.09 23.11 0.57 2.09 par:pre; +léchassions lécher ver 14.09 23.11 0.00 0.07 sub:imp:1p; +lécher lécher ver 14.09 23.11 5.73 6.89 inf; +léchera lécher ver 14.09 23.11 0.05 0.07 ind:fut:3s; +lécherai lécher ver 14.09 23.11 0.08 0.00 ind:fut:1s; +lécherais lécher ver 14.09 23.11 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +lécherait lécher ver 14.09 23.11 0.01 0.14 cnd:pre:3s; +lécheras lécher ver 14.09 23.11 0.04 0.07 ind:fut:2s; +lécheront lécher ver 14.09 23.11 0.05 0.00 ind:fut:3p; +lécheur lécheur nom m s 0.47 0.34 0.30 0.14 +lécheurs lécheur nom m p 0.47 0.34 0.17 0.07 +lécheuse lécheur nom f s 0.47 0.34 0.01 0.07 +lécheuses lécheur nom f p 0.47 0.34 0.00 0.07 +léchez lécher ver 14.09 23.11 0.35 0.20 imp:pre:2p;ind:pre:2p; +léchouillait léchouiller ver 0.04 0.20 0.00 0.07 ind:imp:3s; +léchouillent léchouiller ver 0.04 0.20 0.00 0.07 ind:pre:3p; +léchouiller léchouiller ver 0.04 0.20 0.02 0.07 inf; +léchouilles léchouiller ver 0.04 0.20 0.02 0.00 ind:pre:2s; +léchèrent lécher ver 14.09 23.11 0.00 0.14 ind:pas:3p; +léché lécher ver m s 14.09 23.11 0.93 1.42 par:pas; +léchée lécher ver f s 14.09 23.11 0.45 1.01 par:pas; +léchées lécher ver f p 14.09 23.11 0.14 0.41 par:pas; +léchés lécher ver m p 14.09 23.11 0.03 0.20 par:pas; +lucide lucide adj s 3.20 12.43 2.76 10.54 +lucidement lucidement adv 0.02 0.68 0.02 0.68 +lucides lucide adj m p 3.20 12.43 0.44 1.89 +lucidité lucidité nom f s 1.92 10.95 1.92 10.74 +lucidités lucidité nom f p 1.92 10.95 0.00 0.20 +luciférien luciférien adj m s 0.01 0.34 0.00 0.20 +luciférienne luciférien adj f s 0.01 0.34 0.01 0.07 +lucifériens luciférien adj m p 0.01 0.34 0.00 0.07 +lucilie lucilie nom f s 0.02 0.00 0.02 0.00 +luciole luciole nom f s 1.50 2.30 1.01 0.54 +lucioles luciole nom f p 1.50 2.30 0.48 1.76 +lucite lucite nom f s 0.01 0.00 0.01 0.00 +lécithine lécithine nom f s 0.15 0.00 0.15 0.00 +lucratif lucratif adj m s 1.54 0.95 0.88 0.27 +lucratifs lucratif adj m p 1.54 0.95 0.02 0.14 +lucrative lucratif adj f s 1.54 0.95 0.57 0.41 +lucratives lucratif adj f p 1.54 0.95 0.08 0.14 +lucre lucre nom m s 0.14 0.54 0.14 0.54 +luddite luddite nom m s 0.01 0.00 0.01 0.00 +ludion ludion nom m s 0.00 0.61 0.00 0.54 +ludions ludion nom m p 0.00 0.61 0.00 0.07 +ludique ludique adj s 0.42 0.61 0.41 0.54 +ludiques ludique adj p 0.42 0.61 0.01 0.07 +lue lire ver f s 281.09 324.80 2.82 3.18 par:pas; +lues lire ver f p 281.09 324.80 1.12 1.69 par:pas; +luette luette nom f s 0.03 1.28 0.03 1.22 +luettes luette nom f p 0.03 1.28 0.00 0.07 +lueur lueur nom f s 6.65 64.19 5.37 49.12 +lueurs lueur nom f p 6.65 64.19 1.28 15.07 +luffa luffa nom m s 0.04 0.00 0.04 0.00 +légal légal adj m s 16.79 6.49 9.80 2.43 +légale légal adj f s 16.79 6.49 4.51 2.03 +légalement légalement adv 5.09 2.03 5.09 2.03 +légales légal adj f p 16.79 6.49 1.48 1.42 +légalisant légaliser ver 0.76 0.14 0.03 0.07 par:pre; +légalisation légalisation nom f s 0.09 0.00 0.09 0.00 +légalise légaliser ver 0.76 0.14 0.04 0.00 ind:pre:1s;ind:pre:3s; +légaliser légaliser ver 0.76 0.14 0.30 0.00 inf; +légalisez légaliser ver 0.76 0.14 0.14 0.07 imp:pre:2p; +légaliste légaliste adj s 0.00 0.14 0.00 0.07 +légalistes légaliste adj m p 0.00 0.14 0.00 0.07 +légalisé légaliser ver m s 0.76 0.14 0.12 0.00 par:pas; +légalisée légaliser ver f s 0.76 0.14 0.14 0.00 par:pas; +légalité légalité nom f s 2.39 2.50 2.39 2.50 +légat légat nom m s 0.15 2.23 0.00 1.96 +légataire légataire nom s 0.15 0.34 0.14 0.34 +légataires légataire nom p 0.15 0.34 0.01 0.00 +légation légation nom f s 0.06 2.91 0.06 1.89 +légations légation nom f p 0.06 2.91 0.00 1.01 +légats légat nom m p 0.15 2.23 0.15 0.27 +légaux légal adj m p 16.79 6.49 1.00 0.61 +luge luge nom f s 1.22 1.55 1.19 1.42 +légendaire légendaire adj s 4.10 7.50 3.57 5.74 +légendaires légendaire adj p 4.10 7.50 0.53 1.76 +légende légende nom f s 20.41 27.43 16.07 21.49 +légender légender ver 0.00 0.14 0.00 0.07 inf; +légendes légende nom f p 20.41 27.43 4.33 5.95 +légendée légender ver f s 0.00 0.14 0.00 0.07 par:pas; +léger léger adj m s 37.77 151.01 17.03 74.93 +luger luger nom m s 0.38 0.47 0.36 0.47 +légers léger adj m p 37.77 151.01 2.57 17.16 +lugers luger nom m p 0.38 0.47 0.01 0.00 +luges luge nom f p 1.22 1.55 0.03 0.14 +légifère légiférer ver 0.22 0.27 0.01 0.07 ind:pre:3s; +légiférait légiférer ver 0.22 0.27 0.00 0.07 ind:imp:3s; +légiférer légiférer ver 0.22 0.27 0.19 0.14 inf; +légiféré légiférer ver m s 0.22 0.27 0.01 0.00 par:pas; +légion légion nom f s 6.66 16.35 4.17 13.65 +légionellose légionellose nom f s 0.03 0.00 0.03 0.00 +légionnaire légionnaire nom m s 1.23 4.26 0.71 2.57 +légionnaires légionnaire nom m p 1.23 4.26 0.52 1.69 +légions légion nom f p 6.66 16.35 2.50 2.70 +législateur législateur nom m s 0.47 1.08 0.30 0.68 +législateurs législateur nom m p 0.47 1.08 0.17 0.41 +législatif législatif adj m s 0.73 2.03 0.41 0.74 +législatifs législatif adj m p 0.73 2.03 0.03 0.14 +législation législation nom f s 1.16 1.42 1.16 1.42 +législative législatif adj f s 0.73 2.03 0.11 0.54 +législatives législatif adj f p 0.73 2.03 0.18 0.61 +législature législature nom f s 0.20 0.14 0.20 0.14 +légiste légiste nom s 7.97 1.42 7.28 1.35 +légistes légiste nom p 7.97 1.42 0.69 0.07 +légitimaient légitimer ver 0.30 1.62 0.00 0.14 ind:imp:3p; +légitimait légitimer ver 0.30 1.62 0.00 0.14 ind:imp:3s; +légitimant légitimer ver 0.30 1.62 0.02 0.07 par:pre; +légitimation légitimation nom f s 0.03 0.07 0.03 0.00 +légitimations légitimation nom f p 0.03 0.07 0.00 0.07 +légitime légitime adj s 14.08 16.22 12.82 13.24 +légitimement légitimement adv 0.27 1.22 0.27 1.22 +légitiment légitimer ver 0.30 1.62 0.00 0.07 ind:pre:3p; +légitimer légitimer ver 0.30 1.62 0.19 0.47 inf; +légitimera légitimer ver 0.30 1.62 0.01 0.07 ind:fut:3s; +légitimes légitime adj p 14.08 16.22 1.26 2.97 +légitimiste légitimiste adj m s 0.00 0.34 0.00 0.34 +légitimistes légitimiste nom p 0.00 0.07 0.00 0.07 +légitimité légitimité nom f s 0.76 1.76 0.76 1.76 +légitimé légitimer ver m s 0.30 1.62 0.05 0.27 par:pas; +légitimée légitimer ver f s 0.30 1.62 0.00 0.07 par:pas; +légère léger adj f s 37.77 151.01 15.71 47.84 +légèrement légèrement adv 6.35 65.20 6.35 65.20 +légères léger adj f p 37.77 151.01 2.45 11.08 +légèreté légèreté nom f s 1.35 12.70 1.35 12.50 +légèretés légèreté nom f p 1.35 12.70 0.00 0.20 +légua léguer ver 4.98 5.61 0.02 0.27 ind:pas:3s; +léguaient léguer ver 4.98 5.61 0.00 0.07 ind:imp:3p; +léguais léguer ver 4.98 5.61 0.00 0.07 ind:imp:1s; +léguait léguer ver 4.98 5.61 0.04 0.20 ind:imp:3s; +léguant léguer ver 4.98 5.61 0.31 0.27 par:pre; +lugubre lugubre adj s 3.25 10.41 3.00 7.97 +lugubrement lugubrement adv 0.00 0.81 0.00 0.81 +lugubres lugubre adj p 3.25 10.41 0.25 2.43 +léguer léguer ver 4.98 5.61 0.67 1.22 inf; +léguera léguer ver 4.98 5.61 0.00 0.07 ind:fut:3s; +léguerai léguer ver 4.98 5.61 0.01 0.20 ind:fut:1s; +léguerais léguer ver 4.98 5.61 0.01 0.07 cnd:pre:2s; +léguerez léguer ver 4.98 5.61 0.01 0.00 ind:fut:2p; +léguerons léguer ver 4.98 5.61 0.01 0.00 ind:fut:1p; +légueront léguer ver 4.98 5.61 0.01 0.00 ind:fut:3p; +léguez léguer ver 4.98 5.61 0.16 0.00 imp:pre:2p;ind:pre:2p; +légume légume nom m s 15.16 23.45 3.20 2.09 +légumes légume nom m p 15.16 23.45 11.96 21.35 +légumier légumier nom m s 0.00 0.07 0.00 0.07 +légumineuse légumineux nom f s 0.00 0.07 0.00 0.07 +légumineux légumineux adj m 0.00 0.07 0.00 0.07 +légué léguer ver m s 4.98 5.61 1.99 1.96 par:pas; +léguée léguer ver f s 4.98 5.61 0.09 0.47 par:pas; +léguées léguer ver f p 4.98 5.61 0.02 0.14 par:pas; +légués léguer ver m p 4.98 5.61 0.17 0.07 par:pas; +lui_même lui_même pro_per m s 46.58 202.30 46.58 202.30 +lui lui pro_per s 2308.74 4225.14 2308.74 4225.14 +luira luire ver 15.67 37.57 0.03 0.00 ind:fut:3s; +luiraient luire ver 15.67 37.57 0.00 0.07 cnd:pre:3p; +luirait luire ver 15.67 37.57 0.00 0.07 cnd:pre:3s; +luire luire ver 15.67 37.57 0.95 4.19 inf; +luirent luire ver 15.67 37.57 0.00 0.07 ind:pas:3p; +luis luire ver 15.67 37.57 6.61 1.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +luisaient luire ver 15.67 37.57 0.03 5.00 ind:imp:3p; +luisait luire ver 15.67 37.57 0.31 5.95 ind:imp:3s; +luisance luisance nom f s 0.00 1.08 0.00 0.88 +luisances luisance nom f p 0.00 1.08 0.00 0.20 +luisant luisant adj m s 0.81 28.51 0.52 8.45 +luisante luisant adj f s 0.81 28.51 0.09 7.43 +luisantes luisant adj f p 0.81 28.51 0.03 5.95 +luisants luisant adj m p 0.81 28.51 0.17 6.69 +luise luire ver 15.67 37.57 0.00 0.14 sub:pre:3s; +luisent luire ver 15.67 37.57 0.06 2.50 ind:pre:3p; +luit luire ver 15.67 37.57 2.02 3.31 ind:pre:3s;ind:pas:3s; +lulu lulu nom m s 0.03 0.74 0.03 0.61 +lulus lulu nom m p 0.03 0.74 0.00 0.14 +lumbago lumbago nom m s 0.16 0.68 0.14 0.47 +lumbagos lumbago nom m p 0.16 0.68 0.01 0.20 +lumen lumen nom m s 0.05 0.34 0.05 0.34 +lumignon lumignon nom m s 0.00 2.09 0.00 1.42 +lumignons lumignon nom m p 0.00 2.09 0.00 0.68 +luminaire luminaire nom m s 0.05 0.68 0.00 0.27 +luminaires luminaire nom m p 0.05 0.68 0.05 0.41 +luminescence luminescence nom f s 0.05 0.14 0.05 0.14 +luminescent luminescent adj m s 0.04 0.95 0.00 0.34 +luminescente luminescent adj f s 0.04 0.95 0.01 0.14 +luminescentes luminescent adj f p 0.04 0.95 0.03 0.34 +luminescents luminescent adj m p 0.04 0.95 0.00 0.14 +lumineuse lumineux adj f s 7.36 39.46 2.21 11.42 +lumineusement lumineusement adv 0.10 0.27 0.10 0.27 +lumineuses lumineux adj f p 7.36 39.46 0.35 4.80 +lumineux lumineux adj m 7.36 39.46 4.79 23.24 +luminosité luminosité nom f s 0.66 2.03 0.66 1.82 +luminosités luminosité nom f p 0.66 2.03 0.00 0.20 +lumière lumière nom f s 134.83 274.26 116.02 238.65 +lumières lumière nom f p 134.83 274.26 18.81 35.61 +lump lump nom m s 0.14 0.07 0.14 0.07 +lémur lémur nom m s 0.01 0.00 0.01 0.00 +lémure lémure nom m s 0.00 0.27 0.00 0.14 +lémures lémure nom m p 0.00 0.27 0.00 0.14 +lémurien lémurien nom m s 0.34 0.41 0.30 0.00 +lémuriens lémurien nom m p 0.34 0.41 0.04 0.41 +lunaire lunaire adj s 3.82 4.66 3.58 3.78 +lunaires lunaire adj p 3.82 4.66 0.24 0.88 +lunaison lunaison nom f s 0.01 0.14 0.01 0.07 +lunaisons lunaison nom f p 0.01 0.14 0.00 0.07 +lunatique lunatique adj s 1.79 1.15 1.58 0.88 +lunatiques lunatique adj m p 1.79 1.15 0.21 0.27 +lunch lunch nom m s 0.54 1.22 0.54 1.22 +luncher luncher ver 0.14 0.00 0.14 0.00 inf; +lunches lunche nom m p 0.00 0.14 0.00 0.14 +lundi lundi nom m s 36.94 24.46 36.01 23.51 +lundis lundi nom m p 36.94 24.46 0.93 0.95 +lune lune nom f s 61.02 66.69 58.29 63.24 +lunes lune nom f p 61.02 66.69 2.74 3.45 +lunetier lunetier nom m s 0.00 0.07 0.00 0.07 +lunette lunette nom f s 33.33 75.27 1.71 7.43 +lunetteries lunetterie nom f p 0.00 0.07 0.00 0.07 +lunettes lunette nom f p 33.33 75.27 31.61 67.84 +lunetteux lunetteux adj m s 0.00 0.20 0.00 0.20 +lunetté lunetté adj m s 0.00 0.20 0.00 0.20 +lénifiait lénifier ver 0.00 0.07 0.00 0.07 ind:imp:3s; +lénifiant lénifiant adj m s 0.04 1.01 0.01 0.07 +lénifiante lénifiant adj f s 0.04 1.01 0.01 0.68 +lénifiantes lénifiant adj f p 0.04 1.01 0.00 0.20 +lénifiants lénifiant adj m p 0.04 1.01 0.01 0.07 +lénification lénification nom f s 0.00 0.07 0.00 0.07 +léninisme léninisme nom m s 0.27 0.20 0.27 0.20 +léniniste léniniste adj f s 0.14 0.27 0.14 0.20 +léninistes léniniste nom p 0.00 0.34 0.00 0.34 +lénitive lénitif adj f s 0.00 0.27 0.00 0.20 +lénitives lénitif adj f p 0.00 0.27 0.00 0.07 +luné luné adj m s 0.84 0.68 0.66 0.47 +lunée luné adj f s 0.84 0.68 0.18 0.07 +lunule lunule nom f s 0.00 1.01 0.00 0.34 +lunules lunule nom f p 0.00 1.01 0.00 0.68 +lunés luné adj m p 0.84 0.68 0.00 0.14 +léonard léonard adj m s 0.05 0.14 0.05 0.14 +léonin léonin adj m s 0.00 0.68 0.00 0.27 +léonine léonin adj f s 0.00 0.68 0.00 0.34 +léonins léonin adj m p 0.00 0.68 0.00 0.07 +léopard léopard nom m s 3.64 2.70 3.18 2.57 +léopards léopard nom m p 3.64 2.70 0.46 0.14 +léopardé léopardé adj m s 0.00 0.07 0.00 0.07 +lupanar lupanar nom m s 0.21 0.95 0.07 0.74 +lupanars lupanar nom m p 0.21 0.95 0.14 0.20 +lépidoptère lépidoptère nom m s 0.00 0.20 0.00 0.14 +lépidoptères lépidoptère nom m p 0.00 0.20 0.00 0.07 +lupin lupin nom m s 0.25 0.47 0.15 0.20 +lupins lupin nom m p 0.25 0.47 0.10 0.27 +lépiotes lépiote nom f p 0.00 0.07 0.00 0.07 +lépontique lépontique nom m s 0.00 0.14 0.00 0.14 +lépreuse lépreux adj f s 0.41 2.57 0.15 0.41 +lépreuses lépreuse nom f p 0.04 0.00 0.04 0.00 +lépreux lépreux nom m 2.61 2.64 2.54 2.57 +léprologie léprologie nom f s 0.01 0.00 0.01 0.00 +léproserie léproserie nom f s 0.32 0.81 0.32 0.74 +léproseries léproserie nom f p 0.32 0.81 0.00 0.07 +lupus lupus nom m 1.28 0.27 1.28 0.27 +lur lur nom m s 0.00 0.07 0.00 0.07 +lurent lire ver 281.09 324.80 0.01 0.54 ind:pas:3p; +lurex lurex nom m 0.20 0.14 0.20 0.14 +luron luron nom m s 0.69 0.88 0.27 0.61 +luronne luron nom f s 0.69 0.88 0.29 0.00 +luronnes luron nom f p 0.69 0.88 0.00 0.14 +lurons luron nom m p 0.69 0.88 0.13 0.14 +lérot lérot nom m s 0.01 0.14 0.01 0.00 +lérots lérot nom m p 0.01 0.14 0.00 0.14 +lés lé nom m p 2.30 2.03 0.02 0.68 +lus lire ver m p 281.09 324.80 3.06 7.97 ind:pas:1s;ind:pas:2s;par:pas; +lésaient léser ver 1.36 1.08 0.00 0.07 ind:imp:3p; +lésais léser ver 1.36 1.08 0.00 0.07 ind:imp:1s; +léser léser ver 1.36 1.08 0.33 0.07 inf; +lésina lésiner ver 1.01 2.30 0.00 0.07 ind:pas:3s; +lésinaient lésiner ver 1.01 2.30 0.00 0.14 ind:imp:3p; +lésinait lésiner ver 1.01 2.30 0.00 0.20 ind:imp:3s; +lésine lésiner ver 1.01 2.30 0.47 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lésinent lésiner ver 1.01 2.30 0.00 0.20 ind:pre:3p; +lésiner lésiner ver 1.01 2.30 0.36 0.88 inf; +lésinerie lésinerie nom f s 0.00 0.07 0.00 0.07 +lésines lésine nom f p 0.00 0.20 0.00 0.07 +lésinez lésiner ver 1.01 2.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +lésiné lésiner ver m s 1.01 2.30 0.09 0.47 par:pas; +lésion lésion nom f s 4.37 1.28 1.84 0.47 +lésionnaire lésionnaire adj s 0.01 0.00 0.01 0.00 +lésions lésion nom f p 4.37 1.28 2.53 0.81 +lusitanienne lusitanien adj f s 0.00 0.07 0.00 0.07 +lésons léser ver 1.36 1.08 0.01 0.00 ind:pre:1p; +lustra lustrer ver 0.80 2.43 0.00 0.07 ind:pas:3s; +lustrage lustrage nom m s 0.05 0.00 0.05 0.00 +lustraient lustrer ver 0.80 2.43 0.00 0.07 ind:imp:3p; +lustrait lustrer ver 0.80 2.43 0.00 0.20 ind:imp:3s; +lustral lustral adj m s 0.00 1.35 0.00 0.74 +lustrale lustral adj f s 0.00 1.35 0.00 0.41 +lustrales lustral adj f p 0.00 1.35 0.00 0.20 +lustrant lustrer ver 0.80 2.43 0.01 0.07 par:pre; +lustre lustre nom m s 3.92 15.14 0.93 7.30 +lustrer lustrer ver 0.80 2.43 0.51 0.68 inf; +lustres lustre nom m p 3.92 15.14 2.99 7.84 +lustreur lustreur nom m s 0.01 0.07 0.01 0.00 +lustreuse lustreur nom f s 0.01 0.07 0.00 0.07 +lustrine lustrine nom f s 0.00 0.74 0.00 0.74 +lustré lustrer ver m s 0.80 2.43 0.04 0.41 par:pas; +lustrée lustrer ver f s 0.80 2.43 0.06 0.41 par:pas; +lustrées lustré adj f p 0.09 2.23 0.02 0.27 +lustrés lustré adj m p 0.09 2.23 0.02 0.47 +lustucru lustucru nom m s 0.01 0.07 0.01 0.07 +lésé léser ver m s 1.36 1.08 0.43 0.41 par:pas; +lésée léser ver f s 1.36 1.08 0.35 0.14 par:pas; +lésées léser ver f p 1.36 1.08 0.02 0.00 par:pas; +lésés léser ver m p 1.36 1.08 0.15 0.27 par:pas; +lut lire ver 281.09 324.80 0.36 15.88 ind:pas:3s; +létal létal adj m s 0.29 0.07 0.03 0.00 +létale létal adj f s 0.29 0.07 0.23 0.07 +létales létal adj f p 0.29 0.07 0.03 0.00 +létalité létalité nom f s 0.02 0.00 0.02 0.00 +luth luth nom m s 0.17 1.62 0.17 1.28 +léthargie léthargie nom f s 0.76 2.16 0.75 2.09 +léthargies léthargie nom f p 0.76 2.16 0.01 0.07 +léthargique léthargique adj s 0.22 0.81 0.18 0.54 +léthargiques léthargique adj m p 0.22 0.81 0.04 0.27 +lutherie lutherie nom f s 0.00 0.07 0.00 0.07 +luthier luthier nom m s 0.11 0.20 0.11 0.20 +luths luth nom m p 0.17 1.62 0.00 0.34 +luthéranisme luthéranisme nom m s 0.01 0.14 0.01 0.14 +luthérianisme luthérianisme nom m s 0.00 0.07 0.00 0.07 +luthérien luthérien adj m s 0.36 0.81 0.10 0.47 +luthérienne luthérien adj f s 0.36 0.81 0.20 0.27 +luthériennes luthérienne adj f p 0.01 0.00 0.01 0.00 +luthériens luthérien adj m p 0.36 0.81 0.06 0.00 +lutin lutin nom m s 2.14 1.01 1.45 0.61 +lutinaient lutiner ver 0.26 1.15 0.00 0.07 ind:imp:3p; +lutinait lutiner ver 0.26 1.15 0.01 0.20 ind:imp:3s; +lutinant lutiner ver 0.26 1.15 0.00 0.07 par:pre; +lutine lutin adj f s 0.63 0.61 0.01 0.07 +lutinent lutiner ver 0.26 1.15 0.00 0.14 ind:pre:3p; +lutiner lutiner ver 0.26 1.15 0.21 0.27 inf; +lutinerais lutiner ver 0.26 1.15 0.01 0.07 cnd:pre:1s; +lutins lutin nom m p 2.14 1.01 0.69 0.41 +lutinèrent lutiner ver 0.26 1.15 0.00 0.07 ind:pas:3p; +lutiné lutiner ver m s 0.26 1.15 0.02 0.14 par:pas; +lutinée lutiner ver f s 0.26 1.15 0.00 0.07 par:pas; +lutrin lutrin nom m s 0.00 1.35 0.00 1.15 +lutrins lutrin nom m p 0.00 1.35 0.00 0.20 +lutta lutter ver 25.41 48.78 0.05 1.42 ind:pas:3s; +luttai lutter ver 25.41 48.78 0.14 0.27 ind:pas:1s; +luttaient lutter ver 25.41 48.78 0.32 2.03 ind:imp:3p; +luttais lutter ver 25.41 48.78 0.29 0.88 ind:imp:1s;ind:imp:2s; +luttait lutter ver 25.41 48.78 0.76 5.54 ind:imp:3s; +luttant lutter ver 25.41 48.78 1.56 5.20 par:pre; +lutte lutte nom f s 23.18 41.82 22.00 37.36 +luttent lutter ver 25.41 48.78 1.56 1.76 ind:pre:3p; +lutter lutter ver 25.41 48.78 10.24 20.81 inf;; +luttera lutter ver 25.41 48.78 0.06 0.00 ind:fut:3s; +lutterai lutter ver 25.41 48.78 0.11 0.20 ind:fut:1s; +lutterais lutter ver 25.41 48.78 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +lutterait lutter ver 25.41 48.78 0.13 0.20 cnd:pre:3s; +lutterions lutter ver 25.41 48.78 0.00 0.07 cnd:pre:1p; +lutterons lutter ver 25.41 48.78 0.19 0.00 ind:fut:1p; +lutteront lutter ver 25.41 48.78 0.10 0.00 ind:fut:3p; +luttes lutte nom f p 23.18 41.82 1.19 4.46 +lutteur lutteur nom m s 1.27 3.78 0.88 1.62 +lutteurs lutteur nom m p 1.27 3.78 0.24 1.08 +lutteuse lutteur nom f s 1.27 3.78 0.14 0.27 +lutteuses lutteur nom f p 1.27 3.78 0.01 0.81 +luttez lutter ver 25.41 48.78 0.92 0.14 imp:pre:2p;ind:pre:2p; +luttiez lutter ver 25.41 48.78 0.07 0.00 ind:imp:2p; +luttions lutter ver 25.41 48.78 0.02 0.27 ind:imp:1p; +luttons lutter ver 25.41 48.78 0.80 0.41 imp:pre:1p;ind:pre:1p; +luttât lutter ver 25.41 48.78 0.00 0.14 sub:imp:3s; +luttèrent lutter ver 25.41 48.78 0.14 0.41 ind:pas:3p; +lutté lutter ver m s 25.41 48.78 3.27 4.26 par:pas; +luté luter ver m s 0.00 0.14 0.00 0.14 par:pas; +lutécien lutécien adj m s 0.00 0.07 0.00 0.07 +lutz lutz nom m 4.52 0.14 4.52 0.14 +léviathan léviathan nom m s 0.27 0.27 0.27 0.27 +lévitation lévitation nom f s 0.46 0.61 0.46 0.61 +lévite lévite nom s 0.10 0.54 0.09 0.41 +lévitent léviter ver 0.47 0.07 0.01 0.07 ind:pre:3p; +léviter léviter ver 0.47 0.07 0.46 0.00 inf; +lévites lévite nom p 0.10 0.54 0.01 0.14 +lévitique lévitique adj s 0.02 0.00 0.02 0.00 +lévitique lévitique nom s 0.02 0.00 0.02 0.00 +lévrier lévrier nom m s 0.94 2.30 0.31 1.55 +lévriers lévrier nom m p 0.94 2.30 0.63 0.74 +lux lux nom m 0.34 0.34 0.34 0.34 +luxa luxer ver 0.16 0.34 0.01 0.00 ind:pas:3s; +luxation luxation nom f s 0.38 0.14 0.37 0.07 +luxations luxation nom f p 0.38 0.14 0.01 0.07 +luxe luxe nom m s 15.62 38.85 15.42 38.65 +luxembourgeois luxembourgeois adj m 0.00 0.74 0.00 0.47 +luxembourgeoise luxembourgeois adj f s 0.00 0.74 0.00 0.27 +luxer luxer ver 0.16 0.34 0.01 0.00 inf; +luxes luxe nom m p 15.62 38.85 0.20 0.20 +luxé luxer ver m s 0.16 0.34 0.03 0.07 par:pas; +luxueuse luxueux adj f s 2.59 7.43 0.50 1.82 +luxueusement luxueusement adv 0.39 0.81 0.39 0.81 +luxueuses luxueux adj f p 2.59 7.43 0.12 0.95 +luxueux luxueux adj m 2.59 7.43 1.98 4.66 +luxure luxure nom f s 2.92 2.30 2.92 2.30 +luxuriance luxuriance nom f s 0.10 0.47 0.10 0.47 +luxuriant luxuriant adj m s 0.41 1.62 0.18 0.34 +luxuriante luxuriant adj f s 0.41 1.62 0.17 0.81 +luxuriantes luxuriant adj f p 0.41 1.62 0.04 0.14 +luxuriants luxuriant adj m p 0.41 1.62 0.02 0.34 +luxurieuse luxurieux adj f s 0.03 0.54 0.01 0.20 +luxurieux luxurieux adj m 0.03 0.54 0.02 0.34 +lézard lézard nom m s 6.16 11.42 4.90 7.50 +lézardaient lézarder ver 0.27 1.89 0.00 0.20 ind:imp:3p; +lézardait lézarder ver 0.27 1.89 0.00 0.41 ind:imp:3s; +lézarde lézard nom f s 6.16 11.42 0.03 0.88 +lézardent lézarder ver 0.27 1.89 0.23 0.00 ind:pre:3p; +lézarder lézarder ver 0.27 1.89 0.01 0.34 inf; +lézardes lézard nom f p 6.16 11.42 0.01 1.22 +lézards lézard nom m p 6.16 11.42 1.22 1.82 +lézardé lézarder ver m s 0.27 1.89 0.01 0.07 par:pas; +lézardée lézardé adj f s 0.02 0.88 0.01 0.27 +lézardées lézardé adj f p 0.02 0.88 0.00 0.27 +lézardés lézarder ver m p 0.27 1.89 0.00 0.27 par:pas; +luzerne luzerne nom f s 0.44 3.04 0.44 2.84 +luzernes luzerne nom f p 0.44 3.04 0.00 0.20 +luzernières luzernière nom f p 0.00 0.07 0.00 0.07 +lycanthrope lycanthrope nom m s 0.10 0.00 0.09 0.00 +lycanthropes lycanthrope nom m p 0.10 0.00 0.01 0.00 +lycanthropie lycanthropie nom f s 0.18 0.00 0.18 0.00 +lycaons lycaon nom m p 0.00 0.07 0.00 0.07 +lychee lychee nom m s 0.16 0.14 0.14 0.00 +lychees lychee nom m p 0.16 0.14 0.01 0.14 +lychnis lychnis nom m 0.00 0.07 0.00 0.07 +lycien lycien nom m s 0.00 0.20 0.00 0.07 +lyciennes lycien nom f p 0.00 0.20 0.00 0.14 +lycoperdon lycoperdon nom m s 0.00 0.14 0.00 0.07 +lycoperdons lycoperdon nom m p 0.00 0.14 0.00 0.07 +lycra lycra nom m s 0.28 0.14 0.28 0.14 +lycée lycée nom m s 42.56 38.78 41.96 36.42 +lycéen lycéen nom m s 3.13 10.61 0.64 1.42 +lycéenne lycéen nom f s 3.13 10.61 0.68 5.95 +lycéennes lycéenne nom f p 0.41 0.00 0.41 0.00 +lycéens lycéen nom m p 3.13 10.61 1.81 1.69 +lycées lycée nom m p 42.56 38.78 0.59 2.36 +lymphangite lymphangite nom f s 0.00 0.07 0.00 0.07 +lymphatique lymphatique adj s 0.67 0.47 0.44 0.27 +lymphatiques lymphatique adj p 0.67 0.47 0.24 0.20 +lymphatisme lymphatisme nom m s 0.00 0.07 0.00 0.07 +lymphe lymphe nom f s 0.20 0.47 0.20 0.41 +lymphes lymphe nom f p 0.20 0.47 0.00 0.07 +lymphoïde lymphoïde adj s 0.01 0.00 0.01 0.00 +lymphocytaire lymphocytaire adj s 0.02 0.14 0.02 0.07 +lymphocytaires lymphocytaire adj p 0.02 0.14 0.00 0.07 +lymphocyte lymphocyte nom m s 0.18 0.20 0.03 0.00 +lymphocytes lymphocyte nom m p 0.18 0.20 0.14 0.20 +lymphocytose lymphocytose nom f s 0.01 0.00 0.01 0.00 +lymphome lymphome nom m s 0.30 0.07 0.29 0.07 +lymphomes lymphome nom m p 0.30 0.07 0.01 0.00 +lymphopénie lymphopénie nom f s 0.00 0.07 0.00 0.07 +lymphosarcome lymphosarcome nom m s 0.01 0.00 0.01 0.00 +lynch lynch nom m s 0.29 0.27 0.29 0.27 +lynchage lynchage nom m s 0.99 0.81 0.81 0.68 +lynchages lynchage nom m p 0.99 0.81 0.18 0.14 +lynchait lyncher ver 1.04 0.81 0.01 0.07 ind:imp:3s; +lynchent lyncher ver 1.04 0.81 0.01 0.00 ind:pre:3p; +lyncher lyncher ver 1.04 0.81 0.58 0.47 inf; +lyncheurs lyncheur nom m p 0.06 0.00 0.06 0.00 +lynchez lyncher ver 1.04 0.81 0.02 0.00 imp:pre:2p;ind:pre:2p; +lynchiez lyncher ver 1.04 0.81 0.01 0.00 ind:imp:2p; +lynchons lyncher ver 1.04 0.81 0.02 0.00 imp:pre:1p; +lynché lyncher ver m s 1.04 0.81 0.33 0.14 par:pas; +lynchée lyncher ver f s 1.04 0.81 0.01 0.07 par:pas; +lynchés lyncher ver m p 1.04 0.81 0.05 0.07 par:pas; +lynx lynx nom m 1.73 1.22 1.73 1.22 +lyonnais lyonnais adj m 0.28 1.01 0.27 0.81 +lyonnaise lyonnais adj f s 0.28 1.01 0.01 0.20 +lyophilisant lyophiliser ver 0.07 0.00 0.01 0.00 par:pre; +lyophiliser lyophiliser ver 0.07 0.00 0.05 0.00 inf; +lyophilisé lyophilisé adj m s 0.15 0.07 0.06 0.00 +lyophilisée lyophilisé adj f s 0.15 0.07 0.04 0.00 +lyophilisés lyophilisé adj m p 0.15 0.07 0.04 0.07 +lyre lyre nom f s 0.71 1.42 0.55 1.15 +lyres lyre nom f p 0.71 1.42 0.16 0.27 +lyrique lyrique adj s 0.95 5.20 0.92 4.26 +lyriques lyrique adj p 0.95 5.20 0.03 0.95 +lyriser lyriser ver 0.00 0.07 0.00 0.07 inf; +lyrisme lyrisme nom m s 0.26 3.11 0.26 3.11 +lys lys nom m 2.41 3.38 2.41 3.38 +lyse lyse nom f s 0.04 0.00 0.04 0.00 +lysergique lysergique adj m s 0.07 0.14 0.07 0.14 +lysimaque lysimaque nom f s 0.01 0.00 0.01 0.00 +lysine lysine nom f s 0.04 0.07 0.04 0.07 +lysosomes lysosome nom m p 0.14 0.00 0.14 0.00 +m_as_tu_vu m_as_tu_vu adj s 0.03 0.00 0.03 0.00 +m m pro_per s 13.94 0.27 13.94 0.27 +mîmes mettre ver 1004.84 1083.65 0.00 1.42 ind:pas:1p; +mît mettre ver 1004.84 1083.65 0.00 3.51 sub:imp:3s; +môle môle nom s 1.60 3.92 1.60 3.45 +môles môle nom p 1.60 3.92 0.00 0.47 +môme môme nom s 28.15 61.08 18.88 37.03 +mômeries mômerie nom f p 0.00 0.14 0.00 0.14 +mômes môme nom p 28.15 61.08 9.28 24.05 +mû mouvoir ver m s 1.75 13.18 0.19 1.96 par:pas; +mûr mûr adj m s 9.89 19.73 3.60 8.31 +mûre mûr adj f s 9.89 19.73 2.98 4.80 +mûrement mûrement adv 0.40 0.34 0.40 0.34 +mûres mûr adj f p 9.89 19.73 2.04 2.70 +mûri mûrir ver m s 3.77 8.24 1.32 1.42 par:pas; +mûrie mûrir ver f s 3.77 8.24 0.21 0.54 par:pas; +mûrier mûrier nom m s 0.48 0.74 0.20 0.27 +mûriers mûrier nom m p 0.48 0.74 0.28 0.47 +mûries mûrir ver f p 3.77 8.24 0.00 0.20 par:pas; +mûrir mûrir ver 3.77 8.24 1.11 2.70 inf; +mûrira mûrir ver 3.77 8.24 0.16 0.07 ind:fut:3s; +mûriraient mûrir ver 3.77 8.24 0.01 0.07 cnd:pre:3p; +mûrirez mûrir ver 3.77 8.24 0.00 0.07 ind:fut:2p; +mûris mûrir ver m p 3.77 8.24 0.23 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +mûrissaient mûrir ver 3.77 8.24 0.14 0.27 ind:imp:3p; +mûrissait mûrir ver 3.77 8.24 0.00 0.74 ind:imp:3s; +mûrissant mûrir ver 3.77 8.24 0.02 0.00 par:pre; +mûrissante mûrissant adj f s 0.02 0.61 0.00 0.20 +mûrissantes mûrissant adj f p 0.02 0.61 0.01 0.14 +mûrissants mûrissant adj m p 0.02 0.61 0.00 0.14 +mûrisse mûrir ver 3.77 8.24 0.11 0.14 sub:pre:1s;sub:pre:3s; +mûrissement mûrissement nom m s 0.10 0.54 0.10 0.41 +mûrissements mûrissement nom m p 0.10 0.54 0.00 0.14 +mûrissent mûrir ver 3.77 8.24 0.15 0.61 ind:pre:3p; +mûrisseries mûrisserie nom f p 0.00 0.07 0.00 0.07 +mûrit mûrir ver 3.77 8.24 0.30 1.15 ind:pre:3s;ind:pas:3s; +mûron mûron nom m s 0.00 0.07 0.00 0.07 +mûrs mûr adj m p 9.89 19.73 1.27 3.92 +ma_jong ma_jong nom m s 0.02 0.07 0.02 0.07 +ma ma adj_pos 2346.90 1667.16 2346.90 1667.16 +maître_assistant maître_assistant nom m s 0.00 0.07 0.00 0.07 +maître_autel maître_autel nom m s 0.00 0.61 0.00 0.61 +maître_chanteur maître_chanteur nom m s 0.21 0.20 0.21 0.20 +maître_chien maître_chien nom m s 0.11 0.00 0.11 0.00 +maître_coq maître_coq nom m s 0.01 0.00 0.01 0.00 +maître_nageur maître_nageur nom m s 0.45 0.27 0.45 0.27 +maître_à_danser maître_à_danser nom m s 0.00 0.07 0.00 0.07 +maître_queux maître_queux nom m s 0.00 0.14 0.00 0.14 +maître maître nom m s 128.55 151.49 118.88 125.74 +maîtres maître nom m p 128.55 151.49 9.67 25.74 +maîtresse maîtresse nom f s 26.59 53.92 25.22 47.43 +maîtresses maîtresse nom f p 26.59 53.92 1.38 6.49 +maîtrisa maîtriser ver 15.57 14.93 0.01 0.81 ind:pas:3s; +maîtrisable maîtrisable adj f s 0.06 0.14 0.06 0.07 +maîtrisables maîtrisable adj p 0.06 0.14 0.00 0.07 +maîtrisaient maîtriser ver 15.57 14.93 0.05 0.34 ind:imp:3p; +maîtrisais maîtriser ver 15.57 14.93 0.16 0.07 ind:imp:1s;ind:imp:2s; +maîtrisait maîtriser ver 15.57 14.93 0.37 0.54 ind:imp:3s; +maîtrisant maîtriser ver 15.57 14.93 0.19 1.22 par:pre; +maîtrise maîtrise nom f s 4.22 7.70 4.16 7.70 +maîtrisent maîtriser ver 15.57 14.93 0.39 0.27 ind:pre:3p; +maîtriser maîtriser ver 15.57 14.93 5.85 8.24 inf; +maîtrisera maîtriser ver 15.57 14.93 0.08 0.00 ind:fut:3s; +maîtriserai maîtriser ver 15.57 14.93 0.16 0.00 ind:fut:1s; +maîtriseraient maîtriser ver 15.57 14.93 0.00 0.07 cnd:pre:3p; +maîtriserait maîtriser ver 15.57 14.93 0.01 0.07 cnd:pre:3s; +maîtriseras maîtriser ver 15.57 14.93 0.01 0.00 ind:fut:2s; +maîtriserez maîtriser ver 15.57 14.93 0.03 0.00 ind:fut:2p; +maîtriseriez maîtriser ver 15.57 14.93 0.02 0.00 cnd:pre:2p; +maîtriserons maîtriser ver 15.57 14.93 0.20 0.07 ind:fut:1p; +maîtriseront maîtriser ver 15.57 14.93 0.02 0.00 ind:fut:3p; +maîtrises maîtriser ver 15.57 14.93 0.81 0.00 ind:pre:2s; +maîtrisez maîtriser ver 15.57 14.93 1.05 0.20 imp:pre:2p;ind:pre:2p; +maîtrisiez maîtriser ver 15.57 14.93 0.05 0.00 ind:imp:2p; +maîtrisions maîtriser ver 15.57 14.93 0.03 0.07 ind:imp:1p;sub:pre:1p; +maîtrisons maîtriser ver 15.57 14.93 0.43 0.00 imp:pre:1p;ind:pre:1p; +maîtrisèrent maîtriser ver 15.57 14.93 0.02 0.07 ind:pas:3p; +maîtrisé maîtriser ver m s 15.57 14.93 1.23 1.01 par:pas; +maîtrisée maîtriser ver f s 15.57 14.93 0.29 0.41 par:pas; +maîtrisées maîtriser ver f p 15.57 14.93 0.01 0.14 par:pas; +maîtrisés maîtrisé adj m p 0.60 1.35 0.20 0.14 +maïa maïa nom m s 0.00 3.51 0.00 3.51 +maïs maïs nom m 6.33 6.42 6.33 6.42 +maïzena maïzena nom f s 0.03 0.20 0.03 0.20 +maboul maboul adj m s 0.97 1.35 0.61 0.68 +maboule maboul adj f s 0.97 1.35 0.30 0.47 +maboules maboul adj f p 0.97 1.35 0.03 0.14 +mabouls maboul nom m p 0.34 0.95 0.09 0.00 +mac mac nom m s 7.74 1.82 6.81 1.49 +macabre macabre adj s 2.63 3.51 2.26 2.70 +macabres macabre adj p 2.63 3.51 0.37 0.81 +macache macache adv 0.06 0.74 0.06 0.74 +macadam macadam nom m s 0.23 4.53 0.23 4.53 +macadamia macadamia nom m s 0.11 0.00 0.11 0.00 +macaque macaque nom s 1.72 0.41 1.44 0.14 +macaques macaque nom p 1.72 0.41 0.28 0.27 +macarel macarel ono 0.00 0.07 0.00 0.07 +macarelle macarelle ono 0.00 0.14 0.00 0.14 +macareux macareux nom m 0.01 0.27 0.01 0.27 +macaron macaron nom m s 0.34 1.35 0.12 0.61 +macaroni macaroni nom m s 3.11 2.43 1.37 1.01 +macaronique macaronique adj m s 0.00 0.14 0.00 0.14 +macaronis macaroni nom m p 3.11 2.43 1.74 1.42 +macarons macaron nom m p 0.34 1.35 0.22 0.74 +macassar macassar nom m s 0.00 0.14 0.00 0.14 +maccarthysme maccarthysme nom m s 0.05 0.00 0.05 0.00 +macchab macchab nom m s 0.09 0.74 0.07 0.47 +macchabs macchab nom m p 0.09 0.74 0.02 0.27 +macchabée macchabée nom m s 2.63 1.96 1.86 0.95 +macchabées macchabée nom m p 2.63 1.96 0.77 1.01 +macfarlane macfarlane nom m s 0.34 0.07 0.34 0.07 +mach mach nom m 0.07 0.07 0.07 0.07 +machaon machaon nom m s 0.01 0.00 0.01 0.00 +machette machette nom f s 2.64 1.35 1.88 1.22 +machettes machette nom f p 2.64 1.35 0.77 0.14 +machiavélique machiavélique adj s 0.57 0.54 0.50 0.54 +machiavéliques machiavélique adj p 0.57 0.54 0.07 0.00 +machiavélisme machiavélisme nom m s 0.01 0.47 0.01 0.41 +machiavélismes machiavélisme nom m p 0.01 0.47 0.00 0.07 +machin machin nom m s 14.60 14.32 12.34 10.07 +machina machiner ver 0.07 0.88 0.03 0.07 ind:pas:3s; +machinaient machiner ver 0.07 0.88 0.00 0.07 ind:imp:3p; +machinal machinal adj m s 0.20 6.01 0.16 4.26 +machinale machinal adj f s 0.20 6.01 0.02 0.74 +machinalement machinalement adv 0.39 22.77 0.39 22.77 +machinales machinal adj f p 0.20 6.01 0.01 0.41 +machination machination nom f s 1.51 2.16 1.14 1.55 +machinations machination nom f p 1.51 2.16 0.37 0.61 +machinaux machinal adj m p 0.20 6.01 0.01 0.61 +machinchouette machinchouette nom s 0.00 0.14 0.00 0.14 +machine_outil machine_outil nom f s 0.11 0.47 0.00 0.07 +machine machine nom f s 67.72 85.00 44.94 58.99 +machiner machiner ver 0.07 0.88 0.02 0.14 inf; +machinerie machinerie nom f s 0.23 2.97 0.18 2.77 +machineries machinerie nom f p 0.23 2.97 0.05 0.20 +machine_outil machine_outil nom f p 0.11 0.47 0.11 0.41 +machines machine nom f p 67.72 85.00 22.79 26.01 +machinette machinette nom f s 0.01 0.07 0.01 0.07 +machinique machinique adj f s 0.00 0.07 0.00 0.07 +machinisme machinisme nom m s 0.00 0.74 0.00 0.74 +machiniste machiniste nom s 1.51 1.15 1.30 0.61 +machinistes machiniste nom p 1.51 1.15 0.20 0.54 +machino machino nom m s 0.02 0.07 0.01 0.00 +machinos machino nom m p 0.02 0.07 0.01 0.07 +machins machin nom m p 14.60 14.32 2.26 4.26 +machiné machiner ver m s 0.07 0.88 0.02 0.27 par:pas; +machinée machiner ver f s 0.07 0.88 0.00 0.14 par:pas; +machinées machiner ver f p 0.07 0.88 0.00 0.14 par:pas; +machinés machiner ver m p 0.07 0.88 0.00 0.07 par:pas; +machisme machisme nom m s 0.36 0.20 0.36 0.20 +machiste machiste adj s 0.41 0.41 0.38 0.34 +machistes machiste adj p 0.41 0.41 0.02 0.07 +machmètre machmètre nom m s 0.02 0.00 0.02 0.00 +macho macho nom m s 3.19 0.74 2.34 0.54 +machos macho nom m p 3.19 0.74 0.84 0.20 +macintosh macintosh nom m s 0.26 0.07 0.26 0.07 +macis macis nom m 0.01 0.00 0.01 0.00 +mackintosh mackintosh nom m s 0.00 0.27 0.00 0.27 +macoute macoute adj m s 0.14 0.07 0.03 0.00 +macoutes macoute adj m p 0.14 0.07 0.11 0.07 +macramé macramé nom m s 0.14 0.68 0.14 0.68 +macres macre nom f p 0.00 0.27 0.00 0.27 +macreuse macreuse nom f s 0.02 0.07 0.02 0.00 +macreuses macreuse nom f p 0.02 0.07 0.00 0.07 +macro macro nom s 0.20 0.00 0.20 0.00 +macrobiotique macrobiotique adj s 0.16 0.20 0.16 0.20 +macroclimat macroclimat nom m s 0.00 0.07 0.00 0.07 +macrocosme macrocosme nom m s 0.00 0.14 0.00 0.14 +macrolide macrolide nom m s 0.01 0.00 0.01 0.00 +macrophage macrophage nom m s 0.01 0.00 0.01 0.00 +macroscopique macroscopique adj m s 0.00 0.07 0.00 0.07 +macroéconomie macroéconomie nom f s 0.02 0.00 0.02 0.00 +macs mac nom m p 7.74 1.82 0.93 0.34 +macère macérer ver 0.32 1.82 0.03 0.07 imp:pre:2s;ind:pre:3s; +macèrent macérer ver 0.32 1.82 0.00 0.14 ind:pre:3p; +macédoine macédoine nom f s 0.14 0.54 0.14 0.41 +macédoines macédoine nom f p 0.14 0.54 0.00 0.14 +macédonien macédonien nom m s 0.23 0.20 0.23 0.20 +macédonienne macédonien adj f s 0.19 0.14 0.15 0.00 +macédoniennes macédonien adj f p 0.19 0.14 0.01 0.00 +macula macula nom f s 0.01 0.00 0.01 0.00 +maculage maculage nom m s 0.00 0.07 0.00 0.07 +maculaient maculer ver 0.59 7.70 0.00 0.20 ind:imp:3p; +maculait maculer ver 0.59 7.70 0.00 0.20 ind:imp:3s; +maculant maculer ver 0.59 7.70 0.01 0.27 par:pre; +maculation maculation nom f s 0.00 0.07 0.00 0.07 +maculature maculature nom f s 0.00 0.07 0.00 0.07 +macule maculer ver 0.59 7.70 0.10 0.14 ind:pre:3s; +maculent maculer ver 0.59 7.70 0.01 0.14 ind:pre:3p; +maculer maculer ver 0.59 7.70 0.02 0.27 inf; +macules macule nom f p 0.00 0.20 0.00 0.14 +maculèrent maculer ver 0.59 7.70 0.00 0.07 ind:pas:3p; +maculé maculer ver m s 0.59 7.70 0.28 1.96 par:pas; +maculée maculer ver f s 0.59 7.70 0.06 1.08 par:pas; +maculées maculer ver f p 0.59 7.70 0.04 1.49 par:pas; +maculés maculer ver m p 0.59 7.70 0.08 1.82 par:pas; +macumba macumba nom f s 1.20 0.00 1.20 0.00 +macérai macérer ver 0.32 1.82 0.00 0.07 ind:pas:1s; +macéraient macérer ver 0.32 1.82 0.00 0.07 ind:imp:3p; +macérait macérer ver 0.32 1.82 0.00 0.07 ind:imp:3s; +macération macération nom f s 0.04 0.74 0.04 0.47 +macérations macération nom f p 0.04 0.74 0.00 0.27 +macérer macérer ver 0.32 1.82 0.23 0.54 inf; +macéré macérer ver m s 0.32 1.82 0.04 0.41 par:pas; +macérée macérer ver f s 0.32 1.82 0.00 0.41 par:pas; +macérés macérer ver m p 0.32 1.82 0.02 0.07 par:pas; +madame madame nom_sup f 307.36 203.45 249.32 198.72 +madapolam madapolam nom m s 0.00 0.20 0.00 0.20 +made_in made_in adv 1.06 0.88 1.06 0.88 +madeleine madeleine nom f s 0.98 1.89 0.37 0.95 +madeleines madeleine nom f p 0.98 1.89 0.61 0.95 +mademoiselle mademoiselle nom f s 73.98 62.36 73.98 62.30 +mademoiselles mademoiselle nom f p 73.98 62.36 0.00 0.07 +madone madone nom f s 5.25 5.14 4.90 4.39 +madones madone nom f p 5.25 5.14 0.35 0.74 +madrague madrague nom f s 0.02 0.00 0.02 0.00 +madras madras nom m 0.03 1.49 0.03 1.49 +madre_de_dios madre_de_dios nom s 0.00 0.07 0.00 0.07 +madre madre nom m s 0.62 0.00 0.62 0.00 +madrier madrier nom m s 0.14 3.24 0.00 0.61 +madriers madrier nom m p 0.14 3.24 0.14 2.64 +madrigal madrigal nom m s 0.14 1.28 0.12 0.68 +madrigaux madrigal nom m p 0.14 1.28 0.03 0.61 +madrilène madrilène adj s 0.30 0.61 0.30 0.47 +madrilènes madrilène nom p 0.37 0.27 0.10 0.20 +madré madré adj m s 0.00 0.27 0.00 0.20 +madrée madré adj f s 0.00 0.27 0.00 0.07 +madrépore madrépore nom m s 0.00 0.27 0.00 0.14 +madrépores madrépore nom m p 0.00 0.27 0.00 0.14 +madrés madré nom m p 0.00 0.07 0.00 0.07 +madère madère nom m s 0.11 0.68 0.11 0.68 +maelström maelström nom m s 0.00 0.41 0.00 0.41 +maelstrom maelstrom nom m s 0.14 0.07 0.14 0.07 +maestria maestria nom f s 0.02 0.41 0.02 0.41 +maestro maestro nom m s 5.96 0.47 5.96 0.47 +maffia maffia nom f s 0.00 0.54 0.00 0.54 +maffieux maffieux nom m 0.01 0.00 0.01 0.00 +maffiosi maffioso nom m p 0.01 0.00 0.01 0.00 +mafflu mafflu adj m s 0.00 0.41 0.00 0.27 +mafflue mafflu adj f s 0.00 0.41 0.00 0.07 +mafflus mafflu adj m p 0.00 0.41 0.00 0.07 +mafia mafia nom f s 11.56 2.97 11.34 2.91 +mafias mafia nom f p 11.56 2.97 0.23 0.07 +mafieuse mafieux adj f s 1.18 0.20 0.34 0.14 +mafieuses mafieux adj f p 1.18 0.20 0.25 0.00 +mafieux mafieux nom m 0.94 0.00 0.94 0.00 +mafiosi mafioso nom m p 0.73 0.14 0.20 0.00 +mafioso mafioso nom m s 0.73 0.14 0.54 0.14 +maganer maganer ver 0.03 0.00 0.03 0.00 inf; +magasin magasin nom m s 60.62 65.54 51.97 45.61 +magasinage magasinage nom m s 0.03 0.00 0.03 0.00 +magasine magasiner ver 0.83 0.00 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +magasiner magasiner ver 0.83 0.00 0.27 0.00 inf; +magasines magasiner ver 0.83 0.00 0.20 0.00 ind:pre:2s; +magasinier magasinier nom m s 0.55 1.15 0.53 0.68 +magasiniers magasinier nom m p 0.55 1.15 0.01 0.47 +magasinière magasinier nom f s 0.55 1.15 0.01 0.00 +magasins magasin nom m p 60.62 65.54 8.65 19.93 +magazine magazine nom m s 21.42 16.15 14.03 7.03 +magazines magazine nom m p 21.42 16.15 7.39 9.12 +magdalénien magdalénien adj m s 0.14 0.20 0.00 0.07 +magdaléniennes magdalénien adj f p 0.14 0.20 0.14 0.14 +mage mage nom m s 1.57 2.57 0.53 0.95 +magenta magenta adj p 0.07 0.00 0.07 0.00 +mages mage nom m p 1.57 2.57 1.04 1.62 +maghrébin maghrébin adj m s 0.14 0.54 0.14 0.27 +maghrébine maghrébin nom f s 0.81 0.95 0.00 0.14 +maghrébines maghrébin nom f p 0.81 0.95 0.00 0.41 +maghrébins maghrébin nom m p 0.81 0.95 0.67 0.34 +maghzen maghzen nom m s 0.00 0.07 0.00 0.07 +magicien magicien nom m s 13.76 4.05 12.07 2.77 +magicienne magicien nom f s 13.76 4.05 0.53 0.61 +magiciens magicien nom m p 13.76 4.05 1.17 0.68 +magico magico adv 0.03 0.00 0.03 0.00 +magie magie nom f s 25.66 15.20 25.58 15.14 +magies magie nom f p 25.66 15.20 0.07 0.07 +magique magique adj s 26.93 25.88 21.84 19.80 +magiquement magiquement adv 0.14 1.35 0.14 1.35 +magiques magique adj p 26.93 25.88 5.09 6.08 +magister magister nom m s 0.10 1.08 0.10 0.95 +magisters magister nom m p 0.10 1.08 0.00 0.14 +magistral magistral adj m s 1.69 3.72 1.34 2.09 +magistrale magistral adj f s 1.69 3.72 0.33 1.22 +magistralement magistralement adv 0.07 0.54 0.07 0.54 +magistrales magistral adj f p 1.69 3.72 0.01 0.27 +magistrat magistrat nom m s 3.28 6.01 2.71 2.64 +magistrate magistrat nom f s 3.28 6.01 0.16 0.00 +magistrats magistrat nom m p 3.28 6.01 0.41 3.38 +magistrature magistrature nom f s 1.12 0.95 1.12 0.88 +magistratures magistrature nom f p 1.12 0.95 0.00 0.07 +magistraux magistral adj m p 1.69 3.72 0.01 0.14 +magistère magistère nom m s 0.00 0.07 0.00 0.07 +magma magma nom m s 0.33 3.45 0.33 3.38 +magmas magma nom m p 0.33 3.45 0.00 0.07 +magmatique magmatique adj f s 0.04 0.00 0.03 0.00 +magmatiques magmatique adj p 0.04 0.00 0.01 0.00 +magna magner ver 6.36 2.23 0.22 0.00 ind:pas:3s; +magnait magner ver 6.36 2.23 0.00 0.07 ind:imp:3s; +magnaneries magnanerie nom f p 0.00 0.14 0.00 0.14 +magnanime magnanime adj s 1.09 2.09 1.03 1.55 +magnanimes magnanime adj p 1.09 2.09 0.06 0.54 +magnanimité magnanimité nom f s 0.13 0.68 0.13 0.68 +magnans magnan nom m p 0.00 0.07 0.00 0.07 +magnat magnat nom m s 0.96 1.42 0.83 1.28 +magnats magnat nom m p 0.96 1.42 0.13 0.14 +magne magner ver 6.36 2.23 2.38 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +magnent magner ver 6.36 2.23 0.05 0.00 ind:pre:3p; +magner magner ver 6.36 2.23 0.20 0.41 inf; +magnes magner ver 6.36 2.23 0.11 0.47 ind:pre:2s;sub:pre:2s; +magnez magner ver 6.36 2.23 3.34 0.00 imp:pre:2p;ind:pre:2p; +magnifiaient magnifier ver 0.56 2.43 0.00 0.07 ind:imp:3p; +magnifiais magnifier ver 0.56 2.43 0.00 0.07 ind:imp:1s; +magnifiait magnifier ver 0.56 2.43 0.10 0.34 ind:imp:3s; +magnifiant magnifier ver 0.56 2.43 0.00 0.20 par:pre; +magnificat magnificat nom m 0.00 0.54 0.00 0.54 +magnificence magnificence nom f s 0.27 1.96 0.27 1.82 +magnificences magnificence nom f p 0.27 1.96 0.00 0.14 +magnifie magnifier ver 0.56 2.43 0.03 0.20 imp:pre:2s;ind:pre:3s; +magnifient magnifier ver 0.56 2.43 0.00 0.14 ind:pre:3p; +magnifier magnifier ver 0.56 2.43 0.15 0.54 inf; +magnifiez magnifier ver 0.56 2.43 0.00 0.14 ind:pre:2p; +magnifique magnifique adj s 88.22 27.70 78.72 22.91 +magnifiquement magnifiquement adv 1.43 2.77 1.43 2.77 +magnifiques magnifique adj p 88.22 27.70 9.51 4.80 +magnifié magnifier ver m s 0.56 2.43 0.00 0.20 par:pas; +magnifiée magnifier ver f s 0.56 2.43 0.29 0.34 par:pas; +magnifiées magnifier ver f p 0.56 2.43 0.00 0.07 par:pas; +magnifiés magnifier ver m p 0.56 2.43 0.00 0.14 par:pas; +magnitude magnitude nom f s 0.25 0.00 0.25 0.00 +magnolia magnolia nom m s 0.14 3.04 0.10 1.49 +magnolias magnolia nom m p 0.14 3.04 0.05 1.55 +magnons magner ver 6.36 2.23 0.04 0.07 imp:pre:1p; +magné magner ver m s 6.36 2.23 0.01 0.00 par:pas; +magnum magnum nom m s 3.69 1.76 3.62 1.55 +magnums magnum nom m p 3.69 1.76 0.07 0.20 +magnésie magnésie nom f s 0.07 0.14 0.07 0.14 +magnésium magnésium nom m s 0.75 1.08 0.75 1.08 +magnétique magnétique adj s 5.11 3.38 3.74 2.64 +magnétiquement magnétiquement adv 0.13 0.00 0.13 0.00 +magnétiques magnétique adj p 5.11 3.38 1.37 0.74 +magnétisait magnétiser ver 0.14 0.41 0.01 0.07 ind:imp:3s; +magnétise magnétiser ver 0.14 0.41 0.00 0.07 ind:pre:3s; +magnétiseur magnétiseur nom m s 0.01 0.07 0.01 0.00 +magnétiseuses magnétiseur nom f p 0.01 0.07 0.00 0.07 +magnétisme magnétisme nom m s 1.41 0.68 1.41 0.61 +magnétismes magnétisme nom m p 1.41 0.68 0.00 0.07 +magnétisé magnétiser ver m s 0.14 0.41 0.04 0.07 par:pas; +magnétisée magnétiser ver f s 0.14 0.41 0.03 0.07 par:pas; +magnétisées magnétiser ver f p 0.14 0.41 0.04 0.00 par:pas; +magnétisés magnétiser ver m p 0.14 0.41 0.03 0.14 par:pas; +magnétite magnétite nom f s 0.07 0.00 0.07 0.00 +magnéto magnéto nom s 2.89 1.62 2.78 1.35 +magnétomètre magnétomètre nom m s 0.04 0.00 0.04 0.00 +magnétophone magnétophone nom m s 2.70 3.51 2.27 3.24 +magnétophones magnétophone nom m p 2.70 3.51 0.43 0.27 +magnétos magnéto nom p 2.89 1.62 0.11 0.27 +magnétoscope magnétoscope nom m s 2.12 0.81 1.98 0.34 +magnétoscopes magnétoscope nom m p 2.12 0.81 0.14 0.47 +magnétron magnétron nom m s 0.01 0.00 0.01 0.00 +magot magot nom m s 2.24 4.39 2.24 3.51 +magots magot nom m p 2.24 4.39 0.00 0.88 +magouillais magouiller ver 0.69 0.41 0.01 0.14 ind:imp:1s;ind:imp:2s; +magouillait magouiller ver 0.69 0.41 0.03 0.00 ind:imp:3s; +magouillant magouiller ver 0.69 0.41 0.03 0.00 par:pre; +magouille magouille nom f s 2.73 1.35 1.03 0.68 +magouiller magouiller ver 0.69 0.41 0.14 0.14 inf; +magouilles magouille nom f p 2.73 1.35 1.69 0.68 +magouilleur magouilleur nom m s 0.43 0.20 0.29 0.00 +magouilleurs magouilleur nom m p 0.43 0.20 0.14 0.20 +magouillez magouiller ver 0.69 0.41 0.06 0.07 ind:pre:2p; +magouillé magouiller ver m s 0.69 0.41 0.42 0.07 par:pas; +magret magret nom m s 0.01 0.00 0.01 0.00 +magyar magyar adj m s 0.11 0.14 0.10 0.00 +magyare magyar adj f s 0.11 0.14 0.01 0.00 +magyares magyar adj f p 0.11 0.14 0.00 0.07 +magyars magyar nom m p 0.10 0.00 0.10 0.00 +mah_jong mah_jong nom m s 1.54 0.20 1.54 0.20 +maharadja maharadja nom m s 0.14 0.00 0.13 0.00 +maharadjah maharadjah nom m s 1.47 0.68 1.47 0.47 +maharadjahs maharadjah nom m p 1.47 0.68 0.00 0.20 +maharadjas maharadja nom m p 0.14 0.00 0.01 0.00 +maharaja maharaja nom m s 0.02 0.07 0.02 0.00 +maharajah maharajah nom m s 0.51 0.20 0.48 0.07 +maharajahs maharajah nom m p 0.51 0.20 0.02 0.14 +maharajas maharaja nom m p 0.02 0.07 0.00 0.07 +maharani maharani nom f s 1.12 0.14 1.12 0.14 +mahatma mahatma nom m s 0.04 0.07 0.04 0.00 +mahatmas mahatma nom m p 0.04 0.07 0.00 0.07 +mahométan mahométan nom m s 0.01 0.27 0.01 0.07 +mahométane mahométan adj f s 0.01 0.20 0.00 0.07 +mahométans mahométan adj m p 0.01 0.20 0.01 0.07 +mahonia mahonia nom m s 0.00 0.61 0.00 0.41 +mahonias mahonia nom m p 0.00 0.61 0.00 0.20 +mahousse mahousse adj f s 0.03 1.35 0.01 1.08 +mahousses mahousse adj f p 0.03 1.35 0.02 0.27 +mai mai nom s 24.34 45.88 24.34 45.88 +maid maid nom f s 0.13 0.07 0.13 0.07 +maie maie nom f s 0.01 1.22 0.00 1.08 +maies maie nom f p 0.01 1.22 0.01 0.14 +maigre maigre adj s 12.73 62.70 11.10 41.82 +maigrelet maigrelet nom m s 0.27 0.00 0.27 0.00 +maigrelets maigrelet adj m p 0.10 1.01 0.02 0.14 +maigrelette maigrelet adj f s 0.10 1.01 0.00 0.27 +maigrelettes maigrelet adj f p 0.10 1.01 0.01 0.07 +maigrement maigrement adv 0.00 0.27 0.00 0.27 +maigres maigre adj p 12.73 62.70 1.64 20.88 +maigreur maigreur nom f s 0.04 3.99 0.04 3.99 +maigri maigrir ver m s 5.70 8.99 2.81 4.19 par:pas; +maigrichon maigrichon adj m s 1.25 2.30 0.69 0.81 +maigrichonne maigrichon adj f s 1.25 2.30 0.43 0.81 +maigrichonnes maigrichon adj f p 1.25 2.30 0.10 0.41 +maigrichons maigrichon nom m p 0.93 0.61 0.08 0.00 +maigrie maigrir ver f s 5.70 8.99 0.00 0.20 par:pas; +maigriot maigriot nom m s 0.01 0.14 0.01 0.14 +maigrir maigrir ver 5.70 8.99 2.10 2.23 inf; +maigris maigrir ver m p 5.70 8.99 0.36 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +maigrissais maigrir ver 5.70 8.99 0.00 0.27 ind:imp:1s; +maigrissait maigrir ver 5.70 8.99 0.02 0.68 ind:imp:3s; +maigrissant maigrir ver 5.70 8.99 0.01 0.07 par:pre; +maigrisse maigrir ver 5.70 8.99 0.04 0.07 sub:pre:1s;sub:pre:3s; +maigrissent maigrir ver 5.70 8.99 0.03 0.14 ind:pre:3p; +maigrisses maigrir ver 5.70 8.99 0.14 0.14 sub:pre:2s; +maigrissez maigrir ver 5.70 8.99 0.05 0.07 imp:pre:2p;ind:pre:2p; +maigrit maigrir ver 5.70 8.99 0.14 0.61 ind:pre:3s;ind:pas:3s; +mail_coach mail_coach nom m s 0.00 0.14 0.00 0.14 +mail mail nom m s 3.29 1.62 2.23 1.62 +mailer mailer ver 0.18 0.00 0.08 0.00 inf; +mailing mailing nom m s 0.04 0.00 0.04 0.00 +maillait mailler ver 0.02 0.27 0.00 0.07 ind:imp:3s; +maille maille nom f s 1.09 9.66 0.71 2.70 +maillechort maillechort nom m s 0.00 0.14 0.00 0.14 +mailler mailler ver 0.02 0.27 0.02 0.00 inf; +mailles maille nom f p 1.09 9.66 0.39 6.96 +maillet maillet nom m s 0.46 2.16 0.41 1.69 +maillets maillet nom m p 0.46 2.16 0.05 0.47 +mailloche mailloche nom f s 0.00 0.47 0.00 0.47 +maillon maillon nom m s 1.12 3.18 0.94 1.89 +maillons maillon nom m p 1.12 3.18 0.19 1.28 +maillot maillot nom m s 9.88 18.99 8.44 15.27 +maillotin maillotin nom m s 0.00 0.14 0.00 0.07 +maillotins maillotin nom m p 0.00 0.14 0.00 0.07 +maillots maillot nom m p 9.88 18.99 1.44 3.72 +maillé maillé adj m s 0.01 0.14 0.00 0.14 +maillés maillé adj m p 0.01 0.14 0.01 0.00 +mails mail nom m p 3.29 1.62 1.05 0.00 +mailé mailer ver m s 0.18 0.00 0.10 0.00 par:pas; +main_courante main_courante nom f s 0.01 0.07 0.01 0.07 +main_d_oeuvre main_d_oeuvre nom f s 0.89 1.62 0.89 1.62 +main_forte main_forte nom f 0.36 0.41 0.36 0.41 +main main nom s 499.60 1229.39 286.62 788.72 +mainate mainate nom m s 0.03 0.74 0.03 0.74 +maincourantier maincourantier nom m s 0.00 0.07 0.00 0.07 +mainlevée mainlevée nom f s 0.01 0.00 0.01 0.00 +mainmise mainmise nom f s 0.14 1.42 0.14 1.42 +mains main nom f p 499.60 1229.39 212.97 440.68 +maint maint adj_ind m s 1.27 0.41 1.27 0.41 +maintînt maintenir ver 121.36 98.51 0.00 0.07 sub:imp:3s; +mainte mainte adj_ind f s 0.20 1.22 0.20 1.22 +maintenaient maintenir ver 121.36 98.51 0.23 2.09 ind:imp:3p; +maintenais maintenir ver 121.36 98.51 0.27 0.47 ind:imp:1s;ind:imp:2s; +maintenait maintenir ver 121.36 98.51 0.32 7.36 ind:imp:3s; +maintenance maintenance nom f s 3.89 0.14 3.89 0.14 +maintenant maintenant adv_sup 1028.86 496.76 1028.86 496.76 +mainteneur mainteneur nom m s 0.00 0.14 0.00 0.07 +mainteneurs mainteneur nom m p 0.00 0.14 0.00 0.07 +maintenez maintenir ver 121.36 98.51 4.28 0.34 imp:pre:2p;ind:pre:2p; +mainteniez maintenir ver 121.36 98.51 0.01 0.00 ind:imp:2p; +maintenions maintenir ver 121.36 98.51 0.04 0.20 ind:imp:1p; +maintenir maintenir ver 121.36 98.51 10.27 21.76 inf; +maintenons maintenir ver 121.36 98.51 0.58 0.34 imp:pre:1p;ind:pre:1p; +maintenu maintenir ver m s 121.36 98.51 1.73 3.78 par:pas; +maintenue maintenir ver f s 121.36 98.51 0.95 2.43 par:pas; +maintenues maintenir ver f p 121.36 98.51 0.14 1.35 par:pas; +maintenus maintenir ver m p 121.36 98.51 0.20 2.23 par:pas; +maintes maintes adj_ind f p 2.36 9.86 2.36 9.86 +maintien maintien nom m s 2.13 10.14 1.87 10.14 +maintiendra maintenir ver 121.36 98.51 0.25 0.34 ind:fut:3s; +maintiendrai maintenir ver 121.36 98.51 0.19 0.14 ind:fut:1s; +maintiendraient maintenir ver 121.36 98.51 0.01 0.14 cnd:pre:3p; +maintiendrait maintenir ver 121.36 98.51 0.02 0.20 cnd:pre:3s; +maintiendras maintenir ver 121.36 98.51 0.04 0.07 ind:fut:2s; +maintiendriez maintenir ver 121.36 98.51 0.00 0.07 cnd:pre:2p; +maintiendrons maintenir ver 121.36 98.51 0.25 0.07 ind:fut:1p; +maintiendront maintenir ver 121.36 98.51 0.08 0.14 ind:fut:3p; +maintienne maintenir ver 121.36 98.51 0.41 0.41 sub:pre:1s;sub:pre:3s; +maintiennent maintenir ver 121.36 98.51 0.44 1.28 ind:pre:3p; +maintiennes maintenir ver 121.36 98.51 0.05 0.00 sub:pre:2s; +maintiens maintenir ver 121.36 98.51 2.17 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s; +maintient maintenir ver 121.36 98.51 2.63 4.39 ind:pre:3s; +maintinrent maintenir ver 121.36 98.51 0.00 0.34 ind:pas:3p; +maintins maintenir ver 121.36 98.51 0.01 0.34 ind:pas:1s; +maintint maintenir ver 121.36 98.51 0.14 2.03 ind:pas:3s; +maints maints adj_ind m p 0.34 4.39 0.34 4.39 +maire maire nom m s 28.17 13.85 27.91 13.11 +maires maire nom m p 28.17 13.85 0.27 0.61 +mairesse maire nom f s 28.17 13.85 0.00 0.14 +mairie mairie nom f s 13.55 15.95 13.48 15.00 +mairies mairie nom f p 13.55 15.95 0.07 0.95 +mais mais con 5179.05 4463.72 5179.05 4463.72 +maison_mère maison_mère nom f s 0.12 0.14 0.12 0.14 +maison maison nom s 605.75 575.34 570.30 461.55 +maisonnette maisonnette nom f s 0.57 7.97 0.56 5.68 +maisonnettes maisonnette nom f p 0.57 7.97 0.02 2.30 +maisonnée maisonnée nom f s 0.33 1.82 0.33 1.76 +maisonnées maisonnée nom f p 0.33 1.82 0.00 0.07 +maisons maison nom f p 605.75 575.34 35.44 113.78 +maja maja nom f s 0.54 0.14 0.54 0.14 +majesté majesté nom f s 43.43 22.57 42.84 22.30 +majestueuse majestueux adj f s 1.79 11.08 0.53 4.80 +majestueusement majestueusement adv 0.06 1.22 0.06 1.22 +majestueuses majestueux adj f p 1.79 11.08 0.17 0.81 +majestueux majestueux adj m 1.79 11.08 1.09 5.47 +majestés majesté nom f p 43.43 22.57 0.58 0.27 +majeur majeur adj m s 10.45 11.55 4.29 3.85 +majeure majeur adj f s 10.45 11.55 4.81 5.20 +majeures majeur adj f p 10.45 11.55 0.55 1.15 +majeurs majeur adj m p 10.45 11.55 0.81 1.35 +majo majo adj m s 0.00 0.14 0.00 0.14 +majolique majolique nom f s 0.01 0.14 0.01 0.14 +major_général major_général nom s 0.02 0.34 0.02 0.34 +major major nom s 16.95 8.38 16.45 8.04 +majora majorer ver 0.05 0.34 0.00 0.07 ind:pas:3s; +majoral majoral nom m s 0.00 0.07 0.00 0.07 +majorat majorat nom m s 0.00 0.20 0.00 0.20 +majoration majoration nom f s 0.03 0.27 0.03 0.27 +majordome majordome nom m s 2.87 1.42 2.66 1.28 +majordomes majordome nom m p 2.87 1.42 0.20 0.14 +majore majorer ver 0.05 0.34 0.00 0.14 ind:pre:1s;ind:pre:3s; +majorer majorer ver 0.05 0.34 0.04 0.14 inf; +majorette majorette nom f s 1.11 0.61 0.57 0.27 +majorettes majorette nom f p 1.11 0.61 0.54 0.34 +majoritaire majoritaire adj s 1.04 0.61 0.52 0.54 +majoritairement majoritairement adv 0.12 0.00 0.12 0.00 +majoritaires majoritaire adj f p 1.04 0.61 0.52 0.07 +majorité majorité nom f s 11.43 12.57 11.41 12.36 +majorités majorité nom f p 11.43 12.57 0.01 0.20 +majors major nom p 16.95 8.38 0.49 0.34 +majorée majorer ver f s 0.05 0.34 0.01 0.00 par:pas; +majuscule majuscule adj s 0.80 1.69 0.76 0.88 +majuscules majuscule nom f p 0.85 2.84 0.76 2.03 +maki maki nom m s 0.12 0.00 0.12 0.00 +mal_aimé mal_aimé nom m s 0.21 0.07 0.03 0.00 +mal_aimé mal_aimé nom f s 0.21 0.07 0.01 0.07 +mal_aimé mal_aimé nom m p 0.21 0.07 0.17 0.00 +mal_baisé mal_baisé nom m s 0.00 0.20 0.00 0.07 +mal_baisé mal_baisé nom f s 0.00 0.20 0.00 0.14 +mal_pensant mal_pensant adj f s 0.00 0.07 0.00 0.07 +mal_pensant mal_pensant nom m p 0.14 0.07 0.14 0.07 +mal_être mal_être nom m s 0.34 0.20 0.34 0.20 +mal mal adv_sup 453.95 349.46 453.95 349.46 +malabar malabar adj m s 1.30 0.00 1.27 0.00 +malabars malabar nom m p 1.52 1.28 0.46 0.68 +malachite malachite nom f s 0.01 0.27 0.01 0.27 +malade malade adj s 158.27 73.92 147.50 66.22 +malades malade nom f p 41.24 43.18 15.57 17.03 +maladie maladie nom f s 66.04 60.68 52.18 49.59 +maladies maladie nom f p 66.04 60.68 13.86 11.08 +maladif maladif adj m s 1.44 5.14 0.86 2.03 +maladifs maladif adj m p 1.44 5.14 0.02 0.14 +maladive maladif adj f s 1.44 5.14 0.53 2.84 +maladivement maladivement adv 0.45 0.20 0.45 0.20 +maladives maladif adj f p 1.44 5.14 0.02 0.14 +maladrerie maladrerie nom f s 0.01 0.00 0.01 0.00 +maladresse maladresse nom f s 1.02 9.73 0.97 8.24 +maladresses maladresse nom f p 1.02 9.73 0.05 1.49 +maladroit maladroit adj m s 7.52 18.58 4.57 7.77 +maladroite maladroit adj f s 7.52 18.58 2.29 4.53 +maladroitement maladroitement adv 0.27 9.59 0.27 9.59 +maladroites maladroit adj f p 7.52 18.58 0.11 2.16 +maladroits maladroit adj m p 7.52 18.58 0.55 4.12 +malaga malaga nom m s 0.84 1.28 0.84 1.28 +malaire malaire adj s 0.10 0.00 0.10 0.00 +malais malais adj m 0.58 0.61 0.58 0.61 +malaise malaise nom s 6.55 25.14 6.34 23.38 +malaises malaise nom p 6.55 25.14 0.21 1.76 +malaisien malaisien adj m s 0.06 0.00 0.04 0.00 +malaisienne malaisien adj f s 0.06 0.00 0.02 0.00 +malaisiens malaisien nom m p 0.06 0.00 0.02 0.00 +malaisé malaisé adj m s 0.16 2.36 0.13 1.28 +malaisée malaisé adj f s 0.16 2.36 0.01 0.47 +malaisées malaisé adj f p 0.16 2.36 0.01 0.20 +malaisément malaisément adv 0.00 0.95 0.00 0.95 +malaisés malaisé adj m p 0.16 2.36 0.01 0.41 +malandrin malandrin nom m s 0.32 0.61 0.04 0.14 +malandrins malandrin nom m p 0.32 0.61 0.28 0.47 +malappris malappris nom m 0.17 0.20 0.16 0.20 +malapprise malappris nom f s 0.17 0.20 0.01 0.00 +malard malard nom m s 0.01 0.74 0.00 0.68 +malards malard nom m p 0.01 0.74 0.01 0.07 +malaria malaria nom f s 1.57 0.54 1.57 0.47 +malarias malaria nom f p 1.57 0.54 0.00 0.07 +malaventures malaventure nom f p 0.00 0.07 0.00 0.07 +malavisé malavisé adj m s 0.20 0.07 0.17 0.07 +malavisée malavisé adj f s 0.20 0.07 0.04 0.00 +malaxa malaxer ver 0.76 1.89 0.00 0.07 ind:pas:3s; +malaxaient malaxer ver 0.76 1.89 0.00 0.14 ind:imp:3p; +malaxait malaxer ver 0.76 1.89 0.00 0.20 ind:imp:3s; +malaxant malaxer ver 0.76 1.89 0.00 0.20 par:pre; +malaxe malaxer ver 0.76 1.89 0.28 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +malaxer malaxer ver 0.76 1.89 0.45 0.34 inf; +malaxera malaxer ver 0.76 1.89 0.00 0.07 ind:fut:3s; +malaxeur malaxeur nom m s 0.04 0.00 0.04 0.00 +malaxez malaxer ver 0.76 1.89 0.00 0.07 imp:pre:2p; +malaxé malaxer ver m s 0.76 1.89 0.02 0.20 par:pas; +malaxée malaxer ver f s 0.76 1.89 0.00 0.20 par:pas; +malaxées malaxer ver f p 0.76 1.89 0.00 0.07 par:pas; +malaxés malaxer ver m p 0.76 1.89 0.00 0.07 par:pas; +malchance malchance nom f s 5.68 4.80 5.68 4.53 +malchances malchance nom f p 5.68 4.80 0.00 0.27 +malchanceuse malchanceux adj f s 0.94 1.42 0.27 0.27 +malchanceuses malchanceux adj f p 0.94 1.42 0.04 0.07 +malchanceux malchanceux nom m 0.80 0.81 0.79 0.81 +malcommode malcommode adj m s 0.04 0.54 0.04 0.47 +malcommodes malcommode adj p 0.04 0.54 0.00 0.07 +malcontent malcontent adj m s 0.00 0.14 0.00 0.07 +malcontents malcontent adj m p 0.00 0.14 0.00 0.07 +maldonne maldonne nom f s 0.14 1.15 0.14 1.01 +maldonnes maldonne nom f p 0.14 1.15 0.00 0.14 +male mal adj_sup f s 14.55 11.42 0.44 0.14 +malencontre malencontre nom f s 0.00 0.68 0.00 0.41 +malencontres malencontre nom f p 0.00 0.68 0.00 0.27 +malencontreuse malencontreux adj f s 0.89 1.08 0.12 0.47 +malencontreusement malencontreusement adv 0.26 0.88 0.26 0.88 +malencontreuses malencontreux adj f p 0.89 1.08 0.14 0.07 +malencontreux malencontreux adj m 0.89 1.08 0.64 0.54 +malentendant malentendant adj m s 0.04 0.00 0.02 0.00 +malentendant malentendant nom m s 0.38 0.00 0.02 0.00 +malentendante malentendant adj f s 0.04 0.00 0.02 0.00 +malentendants malentendant nom m p 0.38 0.00 0.36 0.00 +malentendu malentendu nom m s 11.82 10.20 10.70 7.30 +malentendus malentendu nom m p 11.82 10.20 1.13 2.91 +males mal adj_sup f p 14.55 11.42 0.28 0.07 +malfaisance malfaisance nom f s 0.19 1.08 0.17 0.88 +malfaisances malfaisance nom f p 0.19 1.08 0.01 0.20 +malfaisant malfaisant adj m s 2.58 3.38 0.96 1.76 +malfaisante malfaisant adj f s 2.58 3.38 0.46 0.61 +malfaisantes malfaisant adj f p 2.58 3.38 0.19 0.34 +malfaisants malfaisant adj m p 2.58 3.38 0.97 0.68 +malfaiteur malfaiteur nom m s 2.93 3.24 1.18 1.82 +malfaiteurs malfaiteur nom m p 2.93 3.24 1.75 1.42 +malfamé malfamé adj m s 0.13 0.27 0.05 0.07 +malfamée malfamé adj f s 0.13 0.27 0.05 0.07 +malfamés malfamé adj m p 0.13 0.27 0.02 0.14 +malfaçon malfaçon nom f s 0.08 0.34 0.04 0.27 +malfaçons malfaçon nom f p 0.08 0.34 0.04 0.07 +malformation malformation nom f s 0.50 0.54 0.50 0.54 +malformé malformé adj m s 0.01 0.00 0.01 0.00 +malfrat malfrat nom m s 1.53 4.73 0.73 1.96 +malfrats malfrat nom m p 1.53 4.73 0.79 2.77 +malgache malgache adj s 0.00 0.61 0.00 0.34 +malgaches malgache nom p 0.02 0.27 0.02 0.27 +malgracieuse malgracieux adj f s 0.01 0.41 0.00 0.07 +malgracieux malgracieux adj m 0.01 0.41 0.01 0.34 +malgré malgré pre 46.50 191.55 46.50 191.55 +malhabile malhabile adj s 0.14 3.24 0.13 2.23 +malhabilement malhabilement adv 0.00 0.07 0.00 0.07 +malhabiles malhabile adj p 0.14 3.24 0.01 1.01 +malherbe malherbe nom f s 0.00 0.07 0.00 0.07 +malheur malheur nom m s 56.89 92.64 49.16 72.84 +malheureuse malheureux adj f s 37.96 58.85 12.48 16.08 +malheureusement malheureusement adv 35.35 21.08 35.35 21.08 +malheureuses malheureux adj f p 37.96 58.85 0.93 2.50 +malheureux malheureux adj m 37.96 58.85 24.55 40.27 +malheurs malheur nom m p 56.89 92.64 7.72 19.80 +malhonnête malhonnête adj s 4.29 1.82 3.34 0.95 +malhonnêtement malhonnêtement adv 0.22 0.27 0.22 0.27 +malhonnêtes malhonnête adj p 4.29 1.82 0.96 0.88 +malhonnêteté malhonnêteté nom f s 0.50 1.89 0.50 1.82 +malhonnêtetés malhonnêteté nom f p 0.50 1.89 0.00 0.07 +mali mali nom m s 0.00 0.07 0.00 0.07 +malice malice nom f s 1.29 10.95 1.22 10.47 +malices malice nom f p 1.29 10.95 0.07 0.47 +malicieuse malicieux adj f s 0.41 4.39 0.17 1.01 +malicieusement malicieusement adv 0.02 0.81 0.02 0.81 +malicieuses malicieux adj f p 0.41 4.39 0.02 0.07 +malicieux malicieux adj m 0.41 4.39 0.21 3.31 +malien malien nom m s 0.00 0.14 0.00 0.07 +malienne malien adj f s 0.02 0.14 0.02 0.00 +maliens malien adj m p 0.02 0.14 0.00 0.14 +maligne malin adj f s 41.49 20.20 3.91 3.45 +malignement malignement adv 0.01 0.68 0.01 0.68 +malignes malin adj f p 41.49 20.20 0.35 0.68 +malignité malignité nom f s 0.04 2.23 0.04 2.03 +malignités malignité nom f p 0.04 2.23 0.00 0.20 +malin malin adj m s 41.49 20.20 33.11 13.38 +maline malin nom f s 22.65 8.18 0.42 0.14 +malines malin nom f p 22.65 8.18 0.06 0.20 +malingre malingre adj s 0.04 3.78 0.03 2.97 +malingres malingre adj p 0.04 3.78 0.01 0.81 +malinké malinké nom m s 0.00 0.07 0.00 0.07 +malinois malinois nom m 0.01 0.20 0.01 0.20 +malins malin adj m p 41.49 20.20 4.13 2.70 +malintentionné malintentionné adj m s 0.17 0.41 0.02 0.20 +malintentionnée malintentionné adj f s 0.17 0.41 0.10 0.07 +malintentionnés malintentionné adj m p 0.17 0.41 0.04 0.14 +mallarméen mallarméen adj m s 0.00 0.07 0.00 0.07 +malle malle nom f s 7.96 15.14 6.53 10.27 +malles malle nom f p 7.96 15.14 1.43 4.86 +mallette mallette nom f s 9.30 6.62 8.97 5.88 +mallettes mallette nom f p 9.30 6.62 0.33 0.74 +mallophages mallophage nom m p 0.00 0.07 0.00 0.07 +malléabilité malléabilité nom f s 0.03 0.14 0.03 0.14 +malléable malléable adj s 0.31 1.42 0.25 1.08 +malléables malléable adj p 0.31 1.42 0.06 0.34 +malléolaire malléolaire adj s 0.03 0.00 0.03 0.00 +malléole malléole nom f s 0.05 0.00 0.05 0.00 +malm malm nom m s 0.01 0.00 0.01 0.00 +malmenage malmenage nom m s 0.01 0.00 0.01 0.00 +malmenaient malmener ver 2.08 3.72 0.00 0.20 ind:imp:3p; +malmenais malmener ver 2.08 3.72 0.01 0.00 ind:imp:1s; +malmenait malmener ver 2.08 3.72 0.06 0.47 ind:imp:3s; +malmenant malmener ver 2.08 3.72 0.04 0.34 par:pre; +malmener malmener ver 2.08 3.72 0.63 0.74 inf; +malmenez malmener ver 2.08 3.72 0.13 0.00 imp:pre:2p;ind:pre:2p; +malmené malmener ver m s 2.08 3.72 0.50 0.61 par:pas; +malmenée malmener ver f s 2.08 3.72 0.25 0.27 par:pas; +malmenées malmener ver f p 2.08 3.72 0.01 0.34 par:pas; +malmenés malmener ver m p 2.08 3.72 0.22 0.34 par:pas; +malmène malmener ver 2.08 3.72 0.18 0.34 imp:pre:2s;ind:pre:3s; +malmènent malmener ver 2.08 3.72 0.05 0.00 ind:pre:3p; +malmèneront malmener ver 2.08 3.72 0.01 0.07 ind:fut:3p; +malnutrition malnutrition nom f s 0.58 0.07 0.58 0.07 +malodorant malodorant adj m s 0.80 2.30 0.25 1.01 +malodorante malodorant adj f s 0.80 2.30 0.27 0.61 +malodorantes malodorant adj f p 0.80 2.30 0.14 0.47 +malodorants malodorant adj m p 0.80 2.30 0.13 0.20 +malotru malotru nom m s 0.46 1.01 0.43 0.81 +malotrus malotru nom m p 0.46 1.01 0.03 0.20 +malouin malouin adj m s 0.00 0.27 0.00 0.07 +malouine malouin adj f s 0.00 0.27 0.00 0.07 +malouines malouin adj f p 0.00 0.27 0.00 0.07 +malouins malouin adj m p 0.00 0.27 0.00 0.07 +malpoli malpoli adj m s 1.04 0.34 0.89 0.14 +malpolie malpoli adj f s 1.04 0.34 0.13 0.07 +malpolis malpoli adj m p 1.04 0.34 0.02 0.14 +malpropre malpropre nom s 0.69 0.74 0.65 0.54 +malproprement malproprement adv 0.00 0.07 0.00 0.07 +malpropres malpropre nom p 0.69 0.74 0.04 0.20 +malpropreté malpropreté nom f s 0.00 0.14 0.00 0.14 +malsain malsain adj m s 5.05 9.05 3.85 4.93 +malsaine malsain adj f s 5.05 9.05 0.95 2.36 +malsainement malsainement adv 0.00 0.07 0.00 0.07 +malsaines malsain adj f p 5.05 9.05 0.18 1.42 +malsains malsain adj m p 5.05 9.05 0.08 0.34 +malsonnants malsonnant adj m p 0.00 0.07 0.00 0.07 +malséance malséance nom f s 0.00 0.07 0.00 0.07 +malséant malséant adj m s 0.06 0.61 0.06 0.54 +malséante malséant adj f s 0.06 0.61 0.00 0.07 +malt malt nom m s 0.68 0.14 0.68 0.14 +malta malter ver 0.23 0.00 0.14 0.00 ind:pas:3s; +maltais maltais nom m 0.16 0.34 0.16 0.34 +maltaises maltais adj f p 0.03 0.27 0.00 0.07 +maltraitaient maltraiter ver 6.31 4.12 0.17 0.00 ind:imp:3p; +maltraitais maltraiter ver 6.31 4.12 0.04 0.07 ind:imp:1s; +maltraitait maltraiter ver 6.31 4.12 0.21 0.34 ind:imp:3s; +maltraitance maltraitance nom f s 0.66 0.00 0.61 0.00 +maltraitances maltraitance nom f p 0.66 0.00 0.05 0.00 +maltraitant maltraiter ver 6.31 4.12 0.01 0.07 par:pre; +maltraite maltraiter ver 6.31 4.12 0.65 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maltraitent maltraiter ver 6.31 4.12 0.47 0.07 ind:pre:3p; +maltraiter maltraiter ver 6.31 4.12 0.99 0.54 inf; +maltraitera maltraiter ver 6.31 4.12 0.03 0.00 ind:fut:3s; +maltraiterez maltraiter ver 6.31 4.12 0.02 0.00 ind:fut:2p; +maltraitez maltraiter ver 6.31 4.12 0.48 0.07 imp:pre:2p;ind:pre:2p; +maltraitât maltraiter ver 6.31 4.12 0.00 0.07 sub:imp:3s; +maltraitèrent maltraiter ver 6.31 4.12 0.00 0.07 ind:pas:3p; +maltraité maltraiter ver m s 6.31 4.12 1.77 0.88 par:pas; +maltraitée maltraiter ver f s 6.31 4.12 1.06 0.54 par:pas; +maltraitées maltraiter ver f p 6.31 4.12 0.02 0.14 par:pas; +maltraités maltraiter ver m p 6.31 4.12 0.40 0.81 par:pas; +malté malter ver m s 0.23 0.00 0.08 0.00 par:pas; +maltée malter ver f s 0.23 0.00 0.01 0.00 par:pas; +malédiction malédiction nom f s 14.17 9.46 13.27 7.57 +malédictions malédiction nom f p 14.17 9.46 0.90 1.89 +maléfice maléfice nom m s 0.89 1.69 0.56 0.74 +maléfices maléfice nom m p 0.89 1.69 0.33 0.95 +maléficier maléficier ver 0.00 0.07 0.00 0.07 inf; +maléficié maléficié adj m s 0.00 0.07 0.00 0.07 +maléfique maléfique adj s 6.16 4.86 4.71 3.51 +maléfiques maléfique adj p 6.16 4.86 1.44 1.35 +malus malus nom m 0.04 0.00 0.04 0.00 +malveillance malveillance nom f s 0.40 3.85 0.39 3.72 +malveillances malveillance nom f p 0.40 3.85 0.01 0.14 +malveillant malveillant adj m s 0.95 2.23 0.44 0.68 +malveillante malveillant adj f s 0.95 2.23 0.28 0.14 +malveillantes malveillant adj f p 0.95 2.23 0.09 0.81 +malveillants malveillant adj m p 0.95 2.23 0.15 0.61 +malvenu malvenu adj m s 0.37 0.34 0.14 0.34 +malvenue malvenu adj f s 0.37 0.34 0.07 0.00 +malvenus malvenu adj m p 0.37 0.34 0.16 0.00 +malversation malversation nom f s 0.55 0.54 0.07 0.14 +malversations malversation nom f p 0.55 0.54 0.48 0.41 +malvoisie malvoisie nom m s 0.01 0.07 0.01 0.00 +malvoisies malvoisie nom m p 0.01 0.07 0.00 0.07 +mam_selle mam_selle nom f s 0.11 0.07 0.11 0.07 +mam_zelle mam_zelle nom f s 0.03 0.00 0.03 0.00 +mam mam nom f s 0.63 1.62 0.63 0.95 +mamaliga mamaliga nom f s 0.00 0.07 0.00 0.07 +mamamouchi mamamouchi nom m s 0.00 0.14 0.00 0.14 +maman maman nom f s 540.21 144.39 537.44 140.20 +mamans maman nom f p 540.21 144.39 2.76 4.19 +mamba mamba nom m s 0.10 0.00 0.10 0.00 +mambo mambo nom m s 1.58 1.62 1.56 1.62 +mambos mambo nom m p 1.58 1.62 0.02 0.00 +mame mam nom f s 0.63 1.62 0.00 0.68 +mamelle mamelle nom f s 0.83 3.72 0.19 1.01 +mamelles mamelle nom f p 0.83 3.72 0.65 2.70 +mamelon mamelon nom m s 1.49 7.16 0.50 3.85 +mamelonnée mamelonné adj f s 0.00 0.14 0.00 0.14 +mamelons mamelon nom m p 1.49 7.16 0.99 3.31 +mamelouk mamelouk nom m s 0.01 0.34 0.01 0.14 +mamelouks mamelouk nom m p 0.01 0.34 0.00 0.20 +mamelu mamelu adj m s 0.01 0.41 0.00 0.14 +mamelue mamelu adj f s 0.01 0.41 0.01 0.14 +mamelues mamelu adj f p 0.01 0.41 0.00 0.07 +mameluk mameluk nom m s 0.00 2.03 0.00 0.81 +mameluks mameluk nom m p 0.00 2.03 0.00 1.22 +mamelus mamelu adj m p 0.01 0.41 0.00 0.07 +mamie mamie nom f s 18.66 2.30 18.56 2.23 +mamies mamie nom f p 18.66 2.30 0.10 0.07 +mamma mamma nom f s 2.27 0.27 2.27 0.27 +mammaire mammaire adj s 0.58 0.14 0.20 0.07 +mammaires mammaire adj p 0.58 0.14 0.38 0.07 +mammectomie mammectomie nom f s 0.02 0.00 0.02 0.00 +mammifère mammifère nom m s 1.27 1.28 0.40 0.47 +mammifères mammifère nom m p 1.27 1.28 0.87 0.81 +mammographie mammographie nom f s 0.15 0.00 0.15 0.00 +mammoplastie mammoplastie nom f s 0.01 0.00 0.01 0.00 +mammouth mammouth nom m s 1.38 8.18 1.16 7.84 +mammouths mammouth nom m p 1.38 8.18 0.21 0.34 +mammy mammy nom f s 0.41 0.07 0.41 0.07 +mamours mamours nom m p 0.46 0.47 0.46 0.47 +mamy mamy nom f s 0.69 0.00 0.66 0.00 +mamys mamy nom f p 0.69 0.00 0.04 0.00 +mamzelle mamzelle nom f s 0.10 0.07 0.10 0.07 +man man nom s 19.31 6.82 19.31 6.82 +manœuvre manœuvre nom s 2.04 0.00 2.04 0.00 +mana mana nom m s 0.03 0.88 0.03 0.88 +manade manade nom f s 0.00 0.27 0.00 0.07 +manades manade nom f p 0.00 0.27 0.00 0.20 +manage manager ver 1.54 0.47 0.30 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manageait manager ver 1.54 0.47 0.02 0.00 ind:imp:3s; +management management nom m s 0.57 0.07 0.57 0.07 +manager manager nom m s 8.08 2.57 7.54 1.89 +managerais manager ver 1.54 0.47 0.01 0.00 cnd:pre:2s; +managers manager nom m p 8.08 2.57 0.54 0.68 +manageur manageur nom m s 0.01 0.00 0.01 0.00 +manant manant nom m s 0.40 1.22 0.24 0.27 +manants manant nom m p 0.40 1.22 0.16 0.95 +manceau manceau adj m s 0.00 0.07 0.00 0.07 +mancenillier mancenillier nom m s 0.01 0.14 0.01 0.14 +manche manche nom s 14.25 59.39 10.12 35.41 +mancheron mancheron nom m s 0.00 0.27 0.00 0.07 +mancherons mancheron nom m p 0.00 0.27 0.00 0.20 +manches manche nom p 14.25 59.39 4.13 23.99 +manchette manchette nom f s 2.34 6.22 1.69 1.76 +manchettes manchette nom f p 2.34 6.22 0.65 4.46 +manchon manchon nom m s 0.09 1.76 0.08 1.35 +manchons manchon nom m p 0.09 1.76 0.01 0.41 +manchot manchot nom m s 1.56 1.89 1.47 1.49 +manchote manchot adj f s 1.00 1.55 0.07 0.14 +manchotes manchot nom f p 1.56 1.89 0.00 0.07 +manchots manchot nom m p 1.56 1.89 0.09 0.27 +mandai mander ver 1.26 3.31 0.00 0.14 ind:pas:1s; +mandaient mander ver 1.26 3.31 0.00 0.07 ind:imp:3p; +mandait mander ver 1.26 3.31 0.00 0.27 ind:imp:3s; +mandala mandala nom m s 1.76 0.07 1.76 0.00 +mandalas mandala nom m p 1.76 0.07 0.00 0.07 +mandale mandale nom f s 0.03 0.88 0.03 0.54 +mandales mandale nom f p 0.03 0.88 0.00 0.34 +mandant mandant nom m s 0.10 0.34 0.09 0.00 +mandants mandant nom m p 0.10 0.34 0.01 0.34 +mandarin mandarin nom m s 0.47 1.82 0.43 1.22 +mandarine mandarine nom f s 1.17 3.11 0.60 2.09 +mandarines mandarine nom f p 1.17 3.11 0.56 1.01 +mandarinier mandarinier nom m s 0.00 0.34 0.00 0.07 +mandariniers mandarinier nom m p 0.00 0.34 0.00 0.27 +mandarins mandarin nom m p 0.47 1.82 0.04 0.61 +mandas mander ver 1.26 3.31 0.01 0.00 ind:pas:2s; +mandat_carte mandat_carte nom m s 0.01 0.00 0.01 0.00 +mandat_lettre mandat_lettre nom m s 0.00 0.07 0.00 0.07 +mandat_poste mandat_poste nom m s 0.03 0.07 0.03 0.07 +mandat mandat nom m s 25.25 14.32 23.45 11.76 +mandataire mandataire nom s 0.37 1.82 0.32 0.74 +mandataires mandataire nom p 0.37 1.82 0.05 1.08 +mandatait mandater ver 1.14 0.95 0.00 0.14 ind:imp:3s; +mandatant mandater ver 1.14 0.95 0.00 0.07 par:pre; +mandatement mandatement nom m s 0.00 0.07 0.00 0.07 +mandater mandater ver 1.14 0.95 0.02 0.00 inf; +mandatez mandater ver 1.14 0.95 0.01 0.00 imp:pre:2p; +mandats mandat nom m p 25.25 14.32 1.80 2.57 +mandaté mandater ver m s 1.14 0.95 0.60 0.47 par:pas; +mandatée mandater ver f s 1.14 0.95 0.07 0.00 par:pas; +mandatés mandater ver m p 1.14 0.95 0.44 0.27 par:pas; +mandchoue mandchou adj f s 0.03 0.20 0.03 0.20 +mandchous mandchou nom m p 0.02 0.07 0.02 0.07 +mande mander ver 1.26 3.31 0.60 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mandement mandement nom m s 0.03 0.07 0.01 0.00 +mandements mandement nom m p 0.03 0.07 0.02 0.07 +mander mander ver 1.26 3.31 0.34 1.15 inf; +mandera mander ver 1.26 3.31 0.01 0.14 ind:fut:3s; +manderai mander ver 1.26 3.31 0.00 0.07 ind:fut:1s; +manderaient mander ver 1.26 3.31 0.01 0.00 cnd:pre:3p; +manderais mander ver 1.26 3.31 0.00 0.07 cnd:pre:1s; +mandes mander ver 1.26 3.31 0.00 0.07 ind:pre:2s; +mandez mander ver 1.26 3.31 0.01 0.20 imp:pre:2p; +mandibulaire mandibulaire adj f s 0.02 0.00 0.02 0.00 +mandibule mandibule nom f s 0.55 2.36 0.17 0.07 +mandibules mandibule nom f p 0.55 2.36 0.38 2.30 +mandingue mandingue adj s 0.01 0.00 0.01 0.00 +mandingues mandingue nom p 0.30 0.00 0.30 0.00 +mandoline mandoline nom f s 0.55 1.15 0.54 0.88 +mandolines mandoline nom f p 0.55 1.15 0.01 0.27 +mandore mandore nom f s 0.00 1.55 0.00 1.55 +mandorle mandorle nom f s 0.00 0.34 0.00 0.27 +mandorles mandorle nom f p 0.00 0.34 0.00 0.07 +mandragore mandragore nom f s 0.47 1.69 0.42 1.01 +mandragores mandragore nom f p 0.47 1.69 0.05 0.68 +mandrill mandrill nom m s 0.01 0.00 0.01 0.00 +mandrin mandrin nom m s 0.15 0.41 0.15 0.27 +mandrins mandrin nom m p 0.15 0.41 0.00 0.14 +mandèrent mander ver 1.26 3.31 0.00 0.07 ind:pas:3p; +mandé mander ver m s 1.26 3.31 0.28 0.27 par:pas; +manducation manducation nom f s 0.00 0.07 0.00 0.07 +mandée mander ver f s 1.26 3.31 0.00 0.14 par:pas; +manette manette nom f s 1.08 2.64 0.65 0.95 +manettes manette nom f p 1.08 2.64 0.43 1.69 +manga manga nom m s 0.37 0.47 0.04 0.47 +manganite manganite nom m s 0.14 0.00 0.14 0.00 +manganèse manganèse nom m s 0.23 0.07 0.23 0.07 +mangas manga nom m p 0.37 0.47 0.32 0.00 +mange_disque mange_disque nom m s 0.11 0.07 0.10 0.00 +mange_disque mange_disque nom m p 0.11 0.07 0.01 0.07 +mange_tout mange_tout nom m 0.01 0.07 0.01 0.07 +mange manger ver 467.86 280.61 103.81 31.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mangea manger ver 467.86 280.61 0.66 5.54 ind:pas:3s; +mangeable mangeable adj s 0.72 0.68 0.68 0.54 +mangeables mangeable adj m p 0.72 0.68 0.04 0.14 +mangeai manger ver 467.86 280.61 0.02 1.55 ind:pas:1s; +mangeaient manger ver 467.86 280.61 0.99 7.91 ind:imp:3p; +mangeaille mangeaille nom f s 0.14 1.28 0.14 1.08 +mangeailles mangeaille nom f p 0.14 1.28 0.00 0.20 +mangeais manger ver 467.86 280.61 2.31 2.91 ind:imp:1s;ind:imp:2s; +mangeait manger ver 467.86 280.61 4.93 20.14 ind:imp:3s; +mangeant manger ver 467.86 280.61 3.13 7.57 par:pre; +mangeas manger ver 467.86 280.61 0.10 0.07 ind:pas:2s; +mangeasse manger ver 467.86 280.61 0.00 0.07 sub:imp:1s; +mangent manger ver 467.86 280.61 13.77 8.18 ind:pre:3p;sub:pre:3p; +mangeoire mangeoire nom f s 0.46 1.08 0.23 0.95 +mangeoires mangeoire nom f p 0.46 1.08 0.22 0.14 +mangeâmes manger ver 467.86 280.61 0.01 0.47 ind:pas:1p; +mangeons manger ver 467.86 280.61 4.05 1.82 imp:pre:1p;ind:pre:1p; +mangeât manger ver 467.86 280.61 0.00 0.34 sub:imp:3s; +manger manger ver 467.86 280.61 207.63 134.26 inf;; +mangera manger ver 467.86 280.61 4.91 1.35 ind:fut:3s; +mangerai manger ver 467.86 280.61 5.01 1.42 ind:fut:1s; +mangeraient manger ver 467.86 280.61 0.13 0.54 cnd:pre:3p; +mangerais manger ver 467.86 280.61 2.84 1.08 cnd:pre:1s;cnd:pre:2s; +mangerait manger ver 467.86 280.61 1.88 1.96 cnd:pre:3s; +mangeras manger ver 467.86 280.61 2.54 1.49 ind:fut:2s; +mangerez manger ver 467.86 280.61 1.43 0.54 ind:fut:2p; +mangerie mangerie nom f s 0.00 0.07 0.00 0.07 +mangeriez manger ver 467.86 280.61 0.32 0.07 cnd:pre:2p; +mangerions manger ver 467.86 280.61 0.03 0.27 cnd:pre:1p; +mangerons manger ver 467.86 280.61 1.49 0.74 ind:fut:1p; +mangeront manger ver 467.86 280.61 1.43 0.81 ind:fut:3p; +manges manger ver 467.86 280.61 20.56 4.46 ind:pre:2s;sub:pre:2s; +mangetout mangetout nom m 0.00 0.07 0.00 0.07 +mangeur mangeur nom m s 3.37 3.04 1.49 1.01 +mangeurs mangeur nom m p 3.37 3.04 1.07 1.55 +mangeuse mangeur nom f s 3.37 3.04 0.81 0.27 +mangeuses mangeuse nom f p 0.08 0.00 0.08 0.00 +mangez manger ver 467.86 280.61 17.85 3.31 imp:pre:2p;ind:pre:2p; +mangiez manger ver 467.86 280.61 0.91 0.20 ind:imp:2p; +mangions manger ver 467.86 280.61 0.34 1.89 ind:imp:1p; +mango mango nom s 0.07 0.00 0.07 0.00 +mangonneaux mangonneau nom m p 0.00 0.54 0.00 0.54 +mangouste mangouste nom f s 0.33 0.00 0.33 0.00 +mangrove mangrove nom f s 0.02 0.07 0.01 0.07 +mangroves mangrove nom f p 0.02 0.07 0.01 0.00 +mangèrent manger ver 467.86 280.61 0.33 3.72 ind:pas:3p; +mangé manger ver m s 467.86 280.61 60.43 27.50 par:pas; +mangue mangue nom f s 1.44 2.09 0.73 0.74 +mangée manger ver f s 467.86 280.61 1.98 3.04 par:pas; +mangues mangue nom f p 1.44 2.09 0.71 1.35 +mangées manger ver f p 467.86 280.61 0.38 1.01 par:pas; +manguier manguier nom m s 0.05 1.42 0.03 0.20 +manguiers manguier nom m p 0.05 1.42 0.02 1.22 +mangés manger ver m p 467.86 280.61 1.66 2.43 par:pas; +manhattan manhattan nom s 0.07 0.14 0.07 0.14 +mania manier ver 5.70 16.22 0.61 0.14 ind:pas:3s; +maniabilité maniabilité nom f s 0.03 0.00 0.03 0.00 +maniable maniable adj s 0.51 0.95 0.27 0.88 +maniables maniable adj p 0.51 0.95 0.24 0.07 +maniaco_dépressif maniaco_dépressif adj m s 0.38 0.14 0.17 0.00 +maniaco_dépressif maniaco_dépressif adj m p 0.38 0.14 0.08 0.14 +maniaco_dépressif maniaco_dépressif adj f s 0.38 0.14 0.13 0.00 +maniacodépressif maniacodépressif adj m s 0.06 0.00 0.03 0.00 +maniacodépressive maniacodépressif adj f s 0.06 0.00 0.03 0.00 +maniaient manier ver 5.70 16.22 0.00 0.74 ind:imp:3p; +maniais manier ver 5.70 16.22 0.02 0.20 ind:imp:1s; +maniait manier ver 5.70 16.22 0.08 2.43 ind:imp:3s; +maniant manier ver 5.70 16.22 0.20 1.49 par:pre; +maniaque maniaque nom s 5.63 4.39 5.11 3.04 +maniaquement maniaquement adv 0.00 0.27 0.00 0.27 +maniaquerie maniaquerie nom f s 0.00 0.34 0.00 0.27 +maniaqueries maniaquerie nom f p 0.00 0.34 0.00 0.07 +maniaques maniaque nom p 5.63 4.39 0.52 1.35 +manichéen manichéen adj m s 0.04 0.27 0.04 0.27 +manichéisme manichéisme nom m s 0.00 0.61 0.00 0.61 +manichéiste manichéiste nom s 0.00 0.07 0.00 0.07 +manie manie nom f s 6.63 18.38 5.42 13.18 +maniement maniement nom m s 0.50 3.72 0.50 3.58 +maniements maniement nom m p 0.50 3.72 0.00 0.14 +manient manier ver 5.70 16.22 0.17 0.54 ind:pre:3p; +manier manier ver 5.70 16.22 2.96 7.23 inf; +manierais manier ver 5.70 16.22 0.01 0.00 cnd:pre:1s; +manieront manier ver 5.70 16.22 0.00 0.07 ind:fut:3p; +manies manie nom f p 6.63 18.38 1.21 5.20 +manieur manieur nom m s 0.03 0.47 0.03 0.27 +manieurs manieur nom m p 0.03 0.47 0.00 0.14 +manieuse manieur nom f s 0.03 0.47 0.00 0.07 +maniez manier ver 5.70 16.22 0.24 0.00 imp:pre:2p;ind:pre:2p; +manif manif nom f s 4.98 2.16 3.33 1.49 +manifesta manifester ver 10.28 38.04 0.02 3.31 ind:pas:3s; +manifestai manifester ver 10.28 38.04 0.00 0.14 ind:pas:1s; +manifestaient manifester ver 10.28 38.04 0.22 2.30 ind:imp:3p; +manifestais manifester ver 10.28 38.04 0.04 0.27 ind:imp:1s;ind:imp:2s; +manifestait manifester ver 10.28 38.04 0.52 6.82 ind:imp:3s; +manifestant manifester ver 10.28 38.04 0.21 1.42 par:pre; +manifestante manifestant nom f s 2.06 2.30 0.01 0.07 +manifestantes manifestant nom f p 2.06 2.30 0.01 0.14 +manifestants manifestant nom m p 2.06 2.30 1.96 2.03 +manifestation manifestation nom f s 8.90 17.16 5.96 9.80 +manifestations manifestation nom f p 8.90 17.16 2.94 7.36 +manifeste manifester ver 10.28 38.04 1.77 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manifestement manifestement adv 5.79 6.76 5.79 6.76 +manifestent manifester ver 10.28 38.04 0.92 1.28 ind:pre:3p; +manifester manifester ver 10.28 38.04 3.16 9.80 inf; +manifestera manifester ver 10.28 38.04 0.21 0.00 ind:fut:3s; +manifesterai manifester ver 10.28 38.04 0.01 0.07 ind:fut:1s; +manifesteraient manifester ver 10.28 38.04 0.14 0.00 cnd:pre:3p; +manifesterais manifester ver 10.28 38.04 0.02 0.00 cnd:pre:2s; +manifesterait manifester ver 10.28 38.04 0.02 0.14 cnd:pre:3s; +manifesteront manifester ver 10.28 38.04 0.19 0.07 ind:fut:3p; +manifestes manifeste adj p 1.10 3.45 0.23 0.41 +manifestez manifester ver 10.28 38.04 0.38 0.20 imp:pre:2p;ind:pre:2p; +manifestiez manifester ver 10.28 38.04 0.06 0.00 ind:imp:2p; +manifestions manifester ver 10.28 38.04 0.00 0.07 ind:imp:1p; +manifestons manifester ver 10.28 38.04 0.01 0.00 ind:pre:1p; +manifestât manifester ver 10.28 38.04 0.00 0.41 sub:imp:3s; +manifestèrent manifester ver 10.28 38.04 0.00 0.27 ind:pas:3p; +manifesté manifester ver m s 10.28 38.04 1.53 5.14 par:pas; +manifestée manifester ver f s 10.28 38.04 0.57 1.35 par:pas; +manifestées manifester ver f p 10.28 38.04 0.11 0.07 par:pas; +manifestés manifester ver m p 10.28 38.04 0.08 0.41 par:pas; +manifold manifold nom m s 0.00 0.20 0.00 0.14 +manifolds manifold nom m p 0.00 0.20 0.00 0.07 +manifs manif nom f p 4.98 2.16 1.66 0.68 +manigance manigancer ver 5.03 1.35 0.92 0.34 ind:pre:1s;ind:pre:3s; +manigancent manigancer ver 5.03 1.35 0.41 0.14 ind:pre:3p; +manigancer manigancer ver 5.03 1.35 0.45 0.14 inf; +manigancerait manigancer ver 5.03 1.35 0.00 0.07 cnd:pre:3s; +manigances manigancer ver 5.03 1.35 0.70 0.07 ind:pre:2s; +manigancez manigancer ver 5.03 1.35 0.56 0.07 ind:pre:2p; +maniganciez manigancer ver 5.03 1.35 0.05 0.00 ind:imp:2p; +manigancé manigancer ver m s 5.03 1.35 1.59 0.27 par:pas; +manigancée manigancer ver f s 5.03 1.35 0.01 0.14 par:pas; +manigançaient manigancer ver 5.03 1.35 0.04 0.00 ind:imp:3p; +manigançais manigancer ver 5.03 1.35 0.03 0.00 ind:imp:1s;ind:imp:2s; +manigançait manigancer ver 5.03 1.35 0.28 0.14 ind:imp:3s; +manilla maniller ver 0.02 0.00 0.02 0.00 ind:pas:3s; +manille manille nom f s 0.40 0.95 0.40 0.81 +manilles manille nom f p 0.40 0.95 0.00 0.14 +manilleurs manilleur nom m p 0.00 0.07 0.00 0.07 +manillon manillon nom m s 0.27 0.00 0.27 0.00 +manioc manioc nom m s 0.23 0.88 0.23 0.88 +manip manip nom f s 0.09 0.14 0.09 0.07 +manipe manip nom f s 0.09 0.14 0.00 0.07 +manipula manipuler ver 12.35 6.01 0.14 0.41 ind:pas:3s; +manipulable manipulable adj s 0.14 0.27 0.09 0.14 +manipulables manipulable adj m p 0.14 0.27 0.05 0.14 +manipulaient manipuler ver 12.35 6.01 0.03 0.14 ind:imp:3p; +manipulais manipuler ver 12.35 6.01 0.02 0.07 ind:imp:1s;ind:imp:2s; +manipulait manipuler ver 12.35 6.01 0.31 0.61 ind:imp:3s; +manipulant manipuler ver 12.35 6.01 0.13 0.61 par:pre; +manipulateur manipulateur nom m s 1.44 0.54 0.81 0.41 +manipulateurs manipulateur nom m p 1.44 0.54 0.23 0.14 +manipulation manipulation nom f s 2.63 2.16 2.00 1.01 +manipulations manipulation nom f p 2.63 2.16 0.63 1.15 +manipulatrice manipulateur nom f s 1.44 0.54 0.40 0.00 +manipulatrices manipulatrice nom f p 0.02 0.00 0.02 0.00 +manipule manipuler ver 12.35 6.01 2.02 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manipulent manipuler ver 12.35 6.01 0.27 0.20 ind:pre:3p; +manipuler manipuler ver 12.35 6.01 4.36 1.82 inf; +manipulera manipuler ver 12.35 6.01 0.02 0.00 ind:fut:3s; +manipulerai manipuler ver 12.35 6.01 0.03 0.00 ind:fut:1s; +manipulerait manipuler ver 12.35 6.01 0.01 0.00 cnd:pre:3s; +manipuleras manipuler ver 12.35 6.01 0.03 0.00 ind:fut:2s; +manipules manipuler ver 12.35 6.01 0.28 0.00 ind:pre:2s; +manipulez manipuler ver 12.35 6.01 0.40 0.07 imp:pre:2p;ind:pre:2p; +manipulons manipuler ver 12.35 6.01 0.03 0.07 ind:pre:1p; +manipulé manipuler ver m s 12.35 6.01 2.40 0.68 par:pas; +manipulée manipuler ver f s 12.35 6.01 1.01 0.14 par:pas; +manipulées manipuler ver f p 12.35 6.01 0.13 0.07 par:pas; +manipulés manipuler ver m p 12.35 6.01 0.74 0.61 par:pas; +manière manière nom f s 72.31 157.77 55.43 134.66 +manièrent manier ver 5.70 16.22 0.00 0.07 ind:pas:3p; +manières manière nom f p 72.31 157.77 16.89 23.11 +manitoba manitoba nom m s 0.00 0.07 0.00 0.07 +manitou manitou nom m s 0.51 0.88 0.47 0.74 +manitous manitou nom m p 0.51 0.88 0.04 0.14 +manié manier ver m s 5.70 16.22 0.33 1.01 par:pas; +maniée manier ver f s 5.70 16.22 0.01 0.27 par:pas; +maniées manier ver f p 5.70 16.22 0.00 0.14 par:pas; +maniérisme maniérisme nom m s 0.07 0.34 0.05 0.27 +maniérismes maniérisme nom m p 0.07 0.34 0.02 0.07 +maniériste maniériste adj s 0.01 0.00 0.01 0.00 +maniéristes maniériste nom p 0.00 0.07 0.00 0.07 +maniéré maniéré adj m s 0.16 0.74 0.04 0.20 +maniérée maniéré adj f s 0.16 0.74 0.11 0.07 +maniérées maniéré adj f p 0.16 0.74 0.01 0.20 +maniérés maniéré adj m p 0.16 0.74 0.00 0.27 +maniés manier ver m p 5.70 16.22 0.00 0.34 par:pas; +manivelle manivelle nom f s 1.55 31.96 1.54 31.22 +manivelles manivelle nom f p 1.55 31.96 0.01 0.74 +manne manne nom f s 0.65 1.35 0.52 1.22 +mannequin mannequin nom s 12.33 10.68 8.43 6.01 +mannequine mannequiner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +mannequins mannequin nom p 12.33 10.68 3.90 4.66 +mannes manne nom f p 0.65 1.35 0.14 0.14 +mannezingue mannezingue nom m s 0.00 0.20 0.00 0.20 +mannitol mannitol nom m s 0.19 0.00 0.19 0.00 +manoeuvra manoeuvrer ver 1.79 13.78 0.00 0.88 ind:pas:3s; +manoeuvrabilité manoeuvrabilité nom f s 0.04 0.00 0.04 0.00 +manoeuvrable manoeuvrable adj f s 0.04 0.07 0.04 0.07 +manoeuvraient manoeuvrer ver 1.79 13.78 0.14 0.61 ind:imp:3p; +manoeuvrais manoeuvrer ver 1.79 13.78 0.01 0.20 ind:imp:1s; +manoeuvrait manoeuvrer ver 1.79 13.78 0.04 1.89 ind:imp:3s; +manoeuvrant manoeuvrer ver 1.79 13.78 0.00 1.22 par:pre; +manoeuvre manoeuvre nom s 7.22 26.42 4.76 16.08 +manoeuvrent manoeuvrer ver 1.79 13.78 0.00 0.54 ind:pre:3p; +manoeuvrer manoeuvrer ver 1.79 13.78 0.85 5.20 inf; +manoeuvres manoeuvre nom p 7.22 26.42 2.46 10.34 +manoeuvrez manoeuvrer ver 1.79 13.78 0.02 0.00 imp:pre:2p;ind:pre:2p; +manoeuvrier manoeuvrier adj m s 0.00 0.41 0.00 0.14 +manoeuvriers manoeuvrier nom m p 0.00 0.14 0.00 0.07 +manoeuvrière manoeuvrier adj f s 0.00 0.41 0.00 0.14 +manoeuvrières manoeuvrier adj f p 0.00 0.41 0.00 0.14 +manoeuvrons manoeuvrer ver 1.79 13.78 0.01 0.07 imp:pre:1p;ind:pre:1p; +manoeuvrèrent manoeuvrer ver 1.79 13.78 0.00 0.07 ind:pas:3p; +manoeuvré manoeuvrer ver m s 1.79 13.78 0.12 1.15 par:pas; +manoeuvrée manoeuvrer ver f s 1.79 13.78 0.01 0.34 par:pas; +manoeuvrées manoeuvrer ver f p 1.79 13.78 0.00 0.14 par:pas; +manoeuvrés manoeuvrer ver m p 1.79 13.78 0.00 0.07 par:pas; +manoir manoir nom m s 6.08 9.59 5.87 9.05 +manoirs manoir nom m p 6.08 9.59 0.21 0.54 +manomètre manomètre nom m s 0.47 0.27 0.42 0.14 +manomètres manomètre nom m p 0.47 0.27 0.05 0.14 +manouche manouche nom s 0.13 0.88 0.09 0.68 +manouches manouche nom p 0.13 0.88 0.05 0.20 +manouvrier manouvrier nom m s 0.01 0.00 0.01 0.00 +manqua manquer ver 253.94 197.64 0.79 6.01 ind:pas:3s; +manquai manquer ver 253.94 197.64 0.01 0.68 ind:pas:1s; +manquaient manquer ver 253.94 197.64 1.38 12.09 ind:imp:3p; +manquais manquer ver 253.94 197.64 2.85 3.51 ind:imp:1s;ind:imp:2s; +manquait manquer ver 253.94 197.64 18.13 48.78 ind:imp:3s; +manquant manquant adj m s 4.74 2.23 1.75 0.95 +manquante manquant adj f s 4.74 2.23 0.85 0.27 +manquantes manquant adj f p 4.74 2.23 1.23 0.47 +manquants manquant adj m p 4.74 2.23 0.92 0.54 +manquassent manquer ver 253.94 197.64 0.14 0.07 sub:imp:3p; +manque manquer ver 253.94 197.64 98.77 41.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +manquement manquement nom m s 0.54 1.55 0.39 1.08 +manquements manquement nom m p 0.54 1.55 0.15 0.47 +manquent manquer ver 253.94 197.64 10.51 8.99 ind:pre:3p;sub:pre:3p; +manquer manquer ver 253.94 197.64 30.61 24.39 inf; +manquera manquer ver 253.94 197.64 5.21 2.36 ind:fut:3s; +manquerai manquer ver 253.94 197.64 3.86 0.54 ind:fut:1s; +manqueraient manquer ver 253.94 197.64 0.17 1.82 cnd:pre:3p; +manquerais manquer ver 253.94 197.64 0.90 1.01 cnd:pre:1s;cnd:pre:2s; +manquerait manquer ver 253.94 197.64 3.97 6.22 cnd:pre:3s; +manqueras manquer ver 253.94 197.64 2.88 0.54 ind:fut:2s; +manquerez manquer ver 253.94 197.64 1.54 0.61 ind:fut:2p; +manqueriez manquer ver 253.94 197.64 0.25 0.00 cnd:pre:2p; +manquerions manquer ver 253.94 197.64 0.02 0.20 cnd:pre:1p; +manquerons manquer ver 253.94 197.64 0.22 0.20 ind:fut:1p; +manqueront manquer ver 253.94 197.64 1.03 1.28 ind:fut:3p; +manques manquer ver 253.94 197.64 20.07 1.76 ind:pre:2s;sub:pre:2s; +manquez manquer ver 253.94 197.64 5.98 1.89 imp:pre:2p;ind:pre:2p; +manquiez manquer ver 253.94 197.64 0.92 0.14 ind:imp:2p; +manquions manquer ver 253.94 197.64 0.31 0.61 ind:imp:1p; +manquâmes manquer ver 253.94 197.64 0.01 0.34 ind:pas:1p; +manquons manquer ver 253.94 197.64 2.06 1.15 imp:pre:1p;ind:pre:1p; +manquât manquer ver 253.94 197.64 0.00 0.61 sub:imp:3s; +manquèrent manquer ver 253.94 197.64 0.16 0.88 ind:pas:3p; +manqué manquer ver m s 253.94 197.64 38.94 24.53 par:pas; +manquée manquer ver f s 253.94 197.64 1.48 1.42 par:pas; +manquées manqué adj f p 2.43 4.80 0.30 0.74 +manqués manquer ver m p 253.94 197.64 0.32 0.20 par:pas; +mansard mansarde nom m s 0.50 5.27 0.00 0.07 +mansarde mansarde nom f s 0.50 5.27 0.46 3.38 +mansardes mansarde nom f p 0.50 5.27 0.03 1.82 +mansardé mansarder ver m s 0.10 0.41 0.10 0.07 par:pas; +mansardée mansardé adj f s 0.00 1.22 0.00 0.61 +mansardées mansarder ver f p 0.10 0.41 0.00 0.27 par:pas; +mansion mansion nom f s 0.05 0.00 0.01 0.00 +mansions mansion nom f p 0.05 0.00 0.04 0.00 +mansuétude mansuétude nom f s 0.17 2.09 0.17 2.03 +mansuétudes mansuétude nom f p 0.17 2.09 0.00 0.07 +manta manta nom f s 0.72 0.00 0.72 0.00 +mante mante nom f s 0.72 1.69 0.57 0.47 +manteau manteau nom m s 39.97 68.11 36.16 58.99 +manteaux manteau nom m p 39.97 68.11 3.81 9.12 +mantelet mantelet nom m s 0.00 0.27 0.00 0.20 +mantelets mantelet nom m p 0.00 0.27 0.00 0.07 +mantelure mantelure nom f s 0.00 0.07 0.00 0.07 +mantes mante nom f p 0.72 1.69 0.15 1.22 +manège manège nom m s 5.92 15.27 5.22 13.51 +manèges manège nom m p 5.92 15.27 0.70 1.76 +mantille mantille nom f s 0.02 1.35 0.01 0.81 +mantilles mantille nom f p 0.02 1.35 0.01 0.54 +mantique mantique nom f s 0.00 0.07 0.00 0.07 +mantra mantra nom m s 0.34 0.07 0.34 0.07 +manu_militari manu_militari adv 0.16 0.20 0.16 0.20 +manubrium manubrium nom m s 0.03 0.00 0.03 0.00 +manécanterie manécanterie nom f s 0.00 0.27 0.00 0.27 +manucure manucure nom s 2.15 1.55 1.95 1.15 +manucurer manucurer ver 0.27 0.95 0.10 0.00 inf; +manucures manucure nom p 2.15 1.55 0.19 0.41 +manucuré manucurer ver m s 0.27 0.95 0.03 0.07 par:pas; +manucurée manucurer ver f s 0.27 0.95 0.01 0.14 par:pas; +manucurées manucurer ver f p 0.27 0.95 0.03 0.27 par:pas; +manucurés manucurer ver m p 0.27 0.95 0.09 0.27 par:pas; +manuel manuel nom m s 6.63 8.18 4.94 3.85 +manuelle manuel adj f s 5.70 3.85 1.16 0.61 +manuellement manuellement adv 1.40 0.14 1.40 0.14 +manuelles manuel adj f p 5.70 3.85 0.28 0.20 +manuels manuel nom m p 6.63 8.18 1.52 4.05 +manufacture manufacture nom f s 0.37 2.03 0.35 1.49 +manufacturer manufacturer ver 0.11 0.74 0.02 0.14 inf; +manufactures manufacture nom f p 0.37 2.03 0.02 0.54 +manufacturiers manufacturier nom m p 0.10 0.00 0.10 0.00 +manufacturons manufacturer ver 0.11 0.74 0.01 0.00 ind:pre:1p; +manufacturé manufacturer ver m s 0.11 0.74 0.04 0.07 par:pas; +manufacturée manufacturer ver f s 0.11 0.74 0.03 0.00 par:pas; +manufacturées manufacturer ver f p 0.11 0.74 0.00 0.07 par:pas; +manufacturés manufacturer ver m p 0.11 0.74 0.00 0.47 par:pas; +manégés manéger ver m p 0.00 0.07 0.00 0.07 par:pas; +manuscrit manuscrit nom m s 5.48 17.36 3.87 12.09 +manuscrite manuscrit adj f s 0.27 2.64 0.10 0.68 +manuscrites manuscrit adj f p 0.27 2.64 0.02 0.74 +manuscrits manuscrit nom m p 5.48 17.36 1.61 5.27 +manutention manutention nom f s 0.04 0.61 0.04 0.54 +manutentionnaire manutentionnaire nom s 0.14 0.41 0.12 0.27 +manutentionnaires manutentionnaire nom p 0.14 0.41 0.01 0.14 +manutentionner manutentionner ver 0.20 0.00 0.20 0.00 inf; +manutentions manutention nom f p 0.04 0.61 0.00 0.07 +manuélin manuélin adj m s 0.00 0.07 0.00 0.07 +manzanilla manzanilla nom m s 0.00 0.61 0.00 0.61 +mao mao nom s 0.21 0.68 0.21 0.41 +maoïsme maoïsme nom m s 0.01 0.07 0.01 0.07 +maoïste maoïste adj s 0.00 0.34 0.00 0.34 +maori maori adj m s 0.17 0.00 0.15 0.00 +maorie maori adj f s 0.17 0.00 0.02 0.00 +maos mao nom p 0.21 0.68 0.00 0.27 +maous maous adj m 0.09 0.74 0.09 0.74 +maousse maousse adj f s 0.14 0.54 0.14 0.54 +mappemonde mappemonde nom f s 0.07 1.76 0.06 1.42 +mappemondes mappemonde nom f p 0.07 1.76 0.01 0.34 +maquaient maquer ver 0.88 1.35 0.00 0.07 ind:imp:3p; +maque maquer ver 0.88 1.35 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maquent maquer ver 0.88 1.35 0.00 0.07 ind:pre:3p; +maquer maquer ver 0.88 1.35 0.15 0.68 inf; +maquereau maquereau nom m s 7.23 7.03 5.32 3.38 +maquereautage maquereautage nom m s 0.10 0.14 0.10 0.14 +maquereauter maquereauter ver 0.13 0.00 0.13 0.00 inf; +maquereautins maquereautin nom m p 0.00 0.07 0.00 0.07 +maquereaux maquereau nom m p 7.23 7.03 1.35 2.03 +maquerellage maquerellage nom m s 0.10 0.00 0.10 0.00 +maquerelle maquereau nom f s 7.23 7.03 0.56 1.35 +maquerelles maquerelle nom f p 0.27 0.14 0.27 0.14 +maques maquer ver 0.88 1.35 0.01 0.00 ind:pre:2s; +maquette maquette nom f s 4.58 3.92 2.57 2.43 +maquettes maquette nom f p 4.58 3.92 2.01 1.49 +maquettiste maquettiste nom s 0.02 0.54 0.01 0.41 +maquettistes maquettiste nom p 0.02 0.54 0.01 0.14 +maquignon maquignon nom m s 0.35 2.57 0.21 1.76 +maquignonnage maquignonnage nom m s 0.01 0.14 0.00 0.07 +maquignonnages maquignonnage nom m p 0.01 0.14 0.01 0.07 +maquignonne maquignonner ver 0.00 0.20 0.00 0.07 ind:pre:3s; +maquignonné maquignonner ver m s 0.00 0.20 0.00 0.07 par:pas; +maquignonnés maquignonner ver m p 0.00 0.20 0.00 0.07 par:pas; +maquignons maquignon nom m p 0.35 2.57 0.14 0.81 +maquilla maquiller ver 11.14 15.81 0.00 0.14 ind:pas:3s; +maquillage maquillage nom m s 11.39 11.62 11.36 11.08 +maquillages maquillage nom m p 11.39 11.62 0.03 0.54 +maquillai maquiller ver 11.14 15.81 0.00 0.07 ind:pas:1s; +maquillais maquiller ver 11.14 15.81 0.19 0.20 ind:imp:1s;ind:imp:2s; +maquillait maquiller ver 11.14 15.81 0.28 1.55 ind:imp:3s; +maquillant maquiller ver 11.14 15.81 0.22 0.07 par:pre; +maquille maquiller ver 11.14 15.81 2.39 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maquillent maquiller ver 11.14 15.81 0.22 0.34 ind:pre:3p; +maquiller maquiller ver 11.14 15.81 3.10 3.18 inf; +maquillerai maquiller ver 11.14 15.81 0.17 0.07 ind:fut:1s; +maquillerais maquiller ver 11.14 15.81 0.01 0.07 cnd:pre:1s; +maquilleras maquiller ver 11.14 15.81 0.01 0.00 ind:fut:2s; +maquilles maquiller ver 11.14 15.81 0.62 0.27 ind:pre:2s; +maquilleur maquilleur nom m s 0.79 0.47 0.28 0.14 +maquilleurs maquilleur nom m p 0.79 0.47 0.07 0.07 +maquilleuse maquilleur nom f s 0.79 0.47 0.44 0.20 +maquilleuses maquilleuse nom f p 0.03 0.00 0.03 0.00 +maquillez maquiller ver 11.14 15.81 0.08 0.07 imp:pre:2p;ind:pre:2p; +maquilliez maquiller ver 11.14 15.81 0.10 0.00 ind:imp:2p; +maquillons maquiller ver 11.14 15.81 0.01 0.00 imp:pre:1p; +maquillé maquiller ver m s 11.14 15.81 1.99 1.96 par:pas; +maquillée maquiller ver f s 11.14 15.81 1.37 4.39 par:pas; +maquillées maquiller ver f p 11.14 15.81 0.07 1.15 par:pas; +maquillés maquiller ver m p 11.14 15.81 0.32 0.88 par:pas; +maquis maquis nom m 0.91 16.01 0.91 16.01 +maquisard maquisard nom m s 0.16 5.81 0.14 0.68 +maquisarde maquisard nom f s 0.16 5.81 0.00 0.20 +maquisardes maquisard nom f p 0.16 5.81 0.00 0.14 +maquisards maquisard nom m p 0.16 5.81 0.02 4.80 +maqué maquer ver m s 0.88 1.35 0.07 0.07 par:pas; +maquée maquer ver f s 0.88 1.35 0.42 0.27 par:pas; +maqués maquer ver m p 0.88 1.35 0.03 0.14 par:pas; +mara mara nom m s 0.41 0.00 0.41 0.00 +maraîcher maraîcher nom m s 0.37 2.16 0.35 0.47 +maraîchers maraîcher nom m p 0.37 2.16 0.01 0.95 +maraîchère maraîcher nom f s 0.37 2.16 0.01 0.20 +maraîchères maraîchère nom f p 0.01 0.00 0.01 0.00 +marabout marabout nom m s 0.07 1.28 0.05 0.88 +marabouts marabout nom m p 0.07 1.28 0.02 0.41 +maracas maraca nom f p 0.12 0.41 0.12 0.41 +marae marae nom m s 0.02 0.00 0.02 0.00 +marais marais nom m 6.91 10.68 6.91 10.68 +maranta maranta nom m s 0.01 0.00 0.01 0.00 +marante marante nom f s 0.02 0.07 0.02 0.07 +marasme marasme nom m s 0.42 1.01 0.41 0.95 +marasmes marasme nom m p 0.42 1.01 0.01 0.07 +marasquin marasquin nom m s 0.06 0.74 0.06 0.74 +marathon marathon nom m s 2.12 1.28 1.98 1.28 +marathonien marathonien nom m s 0.17 0.14 0.17 0.07 +marathonienne marathonien nom f s 0.17 0.14 0.00 0.07 +marathons marathon nom m p 2.12 1.28 0.14 0.00 +maraud maraud nom m s 0.68 2.09 0.45 0.20 +maraudaient marauder ver 0.05 0.81 0.00 0.07 ind:imp:3p; +maraudait marauder ver 0.05 0.81 0.01 0.27 ind:imp:3s; +maraude maraud nom f s 0.68 2.09 0.22 1.28 +marauder marauder ver 0.05 0.81 0.03 0.34 inf; +maraudes maraud nom f p 0.68 2.09 0.01 0.27 +maraudeur maraudeur nom m s 1.99 1.49 1.50 0.61 +maraudeurs maraudeur nom m p 1.99 1.49 0.48 0.88 +maraudeuse maraudeur nom f s 1.99 1.49 0.01 0.00 +marauds maraud nom m p 0.68 2.09 0.00 0.34 +maraudé marauder ver m s 0.05 0.81 0.00 0.07 par:pas; +maraudés marauder ver m p 0.05 0.81 0.00 0.07 par:pas; +maravédis maravédis nom m 0.11 0.20 0.11 0.20 +marbra marbrer ver 0.28 1.82 0.00 0.07 ind:pas:3s; +marbraient marbrer ver 0.28 1.82 0.00 0.07 ind:imp:3p; +marbrait marbrer ver 0.28 1.82 0.00 0.20 ind:imp:3s; +marbre marbre nom m s 7.31 43.04 6.28 41.49 +marbrent marbrer ver 0.28 1.82 0.00 0.07 ind:pre:3p; +marbrerie marbrerie nom f s 0.00 0.14 0.00 0.07 +marbreries marbrerie nom f p 0.00 0.14 0.00 0.07 +marbres marbre nom m p 7.31 43.04 1.03 1.55 +marbrier marbrier adj m s 0.04 0.00 0.04 0.00 +marbré marbré adj m s 0.04 0.47 0.04 0.20 +marbrée marbrer ver f s 0.28 1.82 0.17 0.27 par:pas; +marbrées marbrer ver f p 0.28 1.82 0.00 0.34 par:pas; +marbrure marbrure nom f s 0.00 1.15 0.00 0.07 +marbrures marbrure nom f p 0.00 1.15 0.00 1.08 +marbrés marbrer ver m p 0.28 1.82 0.00 0.20 par:pas; +marc marc nom m s 1.28 3.38 1.18 2.91 +marcassin marcassin nom m s 0.02 0.88 0.02 0.74 +marcassins marcassin nom m p 0.02 0.88 0.00 0.14 +marcel marcel nom m s 0.06 0.20 0.06 0.20 +marceline marceline nom f s 0.00 0.07 0.00 0.07 +marcha marcher ver 364.36 325.61 0.28 21.96 ind:pas:3s; +marchai marcher ver 364.36 325.61 0.04 2.64 ind:pas:1s; +marchaient marcher ver 364.36 325.61 1.82 13.92 ind:imp:3p; +marchais marcher ver 364.36 325.61 3.51 7.91 ind:imp:1s;ind:imp:2s; +marchait marcher ver 364.36 325.61 12.13 48.65 ind:imp:3s; +marchand marchand nom m s 15.32 45.81 8.66 24.12 +marchandage marchandage nom m s 0.57 2.50 0.54 1.08 +marchandages marchandage nom m p 0.57 2.50 0.04 1.42 +marchandaient marchander ver 2.84 3.18 0.00 0.27 ind:imp:3p; +marchandais marchander ver 2.84 3.18 0.01 0.07 ind:imp:1s;ind:imp:2s; +marchandait marchander ver 2.84 3.18 0.15 0.34 ind:imp:3s; +marchandant marchander ver 2.84 3.18 0.01 0.41 par:pre; +marchande marchand nom f s 15.32 45.81 2.85 6.01 +marchandent marchander ver 2.84 3.18 0.14 0.00 ind:pre:3p; +marchander marchander ver 2.84 3.18 1.43 1.35 inf; +marchandera marchander ver 2.84 3.18 0.01 0.00 ind:fut:3s; +marchanderais marchander ver 2.84 3.18 0.00 0.07 cnd:pre:1s; +marchanderez marchander ver 2.84 3.18 0.01 0.00 ind:fut:2p; +marchandes marchander ver 2.84 3.18 0.11 0.00 ind:pre:2s; +marchandeuse marchandeur nom f s 0.00 0.07 0.00 0.07 +marchandez marchander ver 2.84 3.18 0.07 0.00 imp:pre:2p;ind:pre:2p; +marchandise marchandise nom f s 15.21 15.81 10.54 8.78 +marchandises marchandise nom f p 15.21 15.81 4.67 7.03 +marchandiseur marchandiseur nom m s 0.01 0.00 0.01 0.00 +marchandons marchander ver 2.84 3.18 0.05 0.00 imp:pre:1p;ind:pre:1p; +marchands marchand nom m p 15.32 45.81 3.71 14.46 +marchandé marchander ver m s 2.84 3.18 0.30 0.27 par:pas; +marchandée marchander ver f s 2.84 3.18 0.00 0.07 par:pas; +marchant marcher ver 364.36 325.61 4.32 24.86 par:pre; +marchante marchant adj f s 0.22 2.36 0.00 0.20 +marchantes marchant adj f p 0.22 2.36 0.00 0.07 +marche marcher ver 364.36 325.61 154.71 58.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +marchent marcher ver 364.36 325.61 11.64 10.61 ind:pre:3p; +marchepied marchepied nom m s 0.64 5.54 0.36 4.59 +marchepieds marchepied nom m p 0.64 5.54 0.28 0.95 +marcher marcher ver 364.36 325.61 85.33 80.88 inf; +marchera marcher ver 364.36 325.61 17.43 1.62 ind:fut:3s; +marcherai marcher ver 364.36 325.61 1.23 1.15 ind:fut:1s; +marcheraient marcher ver 364.36 325.61 0.06 0.74 cnd:pre:3p; +marcherais marcher ver 364.36 325.61 0.59 0.81 cnd:pre:1s;cnd:pre:2s; +marcherait marcher ver 364.36 325.61 4.10 2.30 cnd:pre:3s; +marcheras marcher ver 364.36 325.61 0.57 0.27 ind:fut:2s; +marcherez marcher ver 364.36 325.61 0.25 0.20 ind:fut:2p; +marcheriez marcher ver 364.36 325.61 0.06 0.07 cnd:pre:2p; +marcherions marcher ver 364.36 325.61 0.03 0.00 cnd:pre:1p; +marcherons marcher ver 364.36 325.61 0.55 0.41 ind:fut:1p; +marcheront marcher ver 364.36 325.61 1.03 0.34 ind:fut:3p; +marches marche nom f p 53.17 152.97 6.56 52.97 +marcheur marcheur nom m s 0.56 1.96 0.14 0.81 +marcheurs marcheur nom m p 0.56 1.96 0.38 0.81 +marcheuse marcheur nom f s 0.56 1.96 0.04 0.27 +marcheuses marcheuse nom f p 0.14 0.00 0.14 0.00 +marchez marcher ver 364.36 325.61 7.39 1.69 imp:pre:2p;ind:pre:2p; +marchiez marcher ver 364.36 325.61 0.48 0.20 ind:imp:2p;sub:pre:2p; +marchions marcher ver 364.36 325.61 0.74 5.27 ind:imp:1p; +marchâmes marcher ver 364.36 325.61 0.11 1.01 ind:pas:1p; +marchons marcher ver 364.36 325.61 4.30 6.82 imp:pre:1p;ind:pre:1p; +marchât marcher ver 364.36 325.61 0.00 0.47 sub:imp:3s; +marchèrent marcher ver 364.36 325.61 0.24 6.96 ind:pas:3p; +marché marché nom m s 74.36 62.43 72.73 57.36 +marchées marcher ver f p 364.36 325.61 0.01 0.00 par:pas; +marchés marché nom m p 74.36 62.43 1.64 5.07 +marconi marconi adj 0.01 0.07 0.01 0.07 +marcotin marcotin nom m s 0.00 0.07 0.00 0.07 +marcotte marcotte nom f s 0.01 0.00 0.01 0.00 +marcs marc nom m p 1.28 3.38 0.10 0.47 +mardi mardi nom m s 23.65 16.28 22.38 15.47 +mardis mardi nom m p 23.65 16.28 1.27 0.81 +mare mare nom f s 3.78 13.18 3.66 10.00 +marelle marelle nom f s 0.64 2.23 0.64 1.76 +marelles marelle nom f p 0.64 2.23 0.00 0.47 +marengo marengo adj m s 0.01 0.07 0.01 0.07 +marennes marennes nom f 0.00 0.41 0.00 0.41 +mares mare nom f p 3.78 13.18 0.12 3.18 +mareyeur mareyeur nom m s 0.00 0.41 0.00 0.20 +mareyeurs mareyeur nom m p 0.00 0.41 0.00 0.07 +mareyeuse mareyeur nom f s 0.00 0.41 0.00 0.07 +mareyeuses mareyeur nom f p 0.00 0.41 0.00 0.07 +margarine margarine nom f s 0.64 1.35 0.64 1.35 +margaux margaux nom m 0.04 0.14 0.04 0.14 +margay margay nom m s 0.00 1.49 0.00 1.49 +marge marge nom f s 14.40 14.86 14.21 12.64 +margeait marger ver 0.00 0.27 0.00 0.14 ind:imp:3s; +margelle margelle nom f s 0.04 2.09 0.04 2.03 +margelles margelle nom f p 0.04 2.09 0.00 0.07 +marger marger ver 0.00 0.27 0.00 0.14 inf; +marges marge nom f p 14.40 14.86 0.19 2.23 +margeuse margeur nom f s 0.00 0.07 0.00 0.07 +margina marginer ver 0.00 0.14 0.00 0.07 ind:pas:3s; +marginal marginal adj m s 0.59 1.82 0.35 0.47 +marginale marginal adj f s 0.59 1.82 0.15 0.54 +marginalement marginalement adv 0.01 0.00 0.01 0.00 +marginales marginal adj f p 0.59 1.82 0.01 0.54 +marginalisant marginaliser ver 0.36 0.41 0.00 0.07 par:pre; +marginaliser marginaliser ver 0.36 0.41 0.25 0.07 inf; +marginaliseraient marginaliser ver 0.36 0.41 0.01 0.00 cnd:pre:3p; +marginalisé marginaliser ver m s 0.36 0.41 0.03 0.00 par:pas; +marginalisée marginaliser ver f s 0.36 0.41 0.05 0.14 par:pas; +marginalisés marginaliser ver m p 0.36 0.41 0.03 0.14 par:pas; +marginalité marginalité nom f s 0.00 0.34 0.00 0.34 +marginaux marginal nom m p 0.58 1.49 0.39 0.81 +marginée marginer ver f s 0.00 0.14 0.00 0.07 par:pas; +margis margis nom m 0.00 0.27 0.00 0.27 +margot margot nom m s 1.17 0.00 1.17 0.00 +margotait margoter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +margotin margotin nom m s 0.00 0.14 0.00 0.07 +margotins margotin nom m p 0.00 0.14 0.00 0.07 +margoton margoton nom f s 0.00 0.07 0.00 0.07 +margotte margotter ver 0.00 0.27 0.00 0.20 ind:pre:3s; +margottons margotter ver 0.00 0.27 0.00 0.07 imp:pre:1p; +margouillat margouillat nom m s 0.00 0.74 0.00 0.41 +margouillats margouillat nom m p 0.00 0.74 0.00 0.34 +margouillis margouillis nom m 0.00 0.07 0.00 0.07 +margoulette margoulette nom f s 0.00 0.34 0.00 0.34 +margoulin margoulin nom m s 0.04 0.61 0.03 0.34 +margoulins margoulin nom m p 0.04 0.61 0.01 0.27 +margrave margrave nom m s 0.60 0.00 0.60 0.00 +margraviat margraviat nom m s 0.00 0.07 0.00 0.07 +marguerite marguerite nom f s 1.58 2.97 0.25 0.54 +marguerites marguerite nom f p 1.58 2.97 1.33 2.43 +marguillier marguillier nom m s 0.03 0.41 0.03 0.34 +marguilliers marguillier nom m p 0.03 0.41 0.00 0.07 +mari mari nom m s 264.15 124.26 254.92 118.38 +maria marier ver 220.51 65.07 19.11 3.24 ind:pas:3s; +mariable mariable adj m s 0.01 0.14 0.01 0.14 +mariachi mariachi nom m s 0.90 0.00 0.63 0.00 +mariachis mariachi nom m p 0.90 0.00 0.28 0.00 +mariage mariage nom m s 167.39 78.72 158.58 70.68 +mariages mariage nom m p 167.39 78.72 8.81 8.04 +mariai marier ver 220.51 65.07 0.00 0.07 ind:pas:1s; +mariaient marier ver 220.51 65.07 0.08 0.95 ind:imp:3p; +mariais marier ver 220.51 65.07 0.55 0.14 ind:imp:1s;ind:imp:2s; +mariait marier ver 220.51 65.07 1.08 2.03 ind:imp:3s; +mariales marial adj f p 0.00 0.20 0.00 0.20 +marianne marian nom f s 0.27 0.00 0.27 0.00 +mariant marier ver 220.51 65.07 0.64 0.88 par:pre; +marias marier ver 220.51 65.07 0.00 0.07 ind:pas:2s; +mariassent marier ver 220.51 65.07 0.00 0.07 sub:imp:3p; +marida marida nom s 0.00 0.81 0.00 0.74 +maridas marida nom p 0.00 0.81 0.00 0.07 +marie_couche_toi_là marie_couche_toi_là nom f 0.06 0.27 0.06 0.27 +marie_jeanne marie_jeanne nom f s 0.26 0.07 0.26 0.07 +marie_louise marie_louise nom f s 0.00 0.07 0.00 0.07 +marie_salope marie_salope nom f s 0.00 0.07 0.00 0.07 +marie marier ver 220.51 65.07 22.00 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +marient marier ver 220.51 65.07 4.04 1.42 ind:pre:3p; +marier marier ver 220.51 65.07 63.88 16.49 ind:pre:2p;inf; +mariera marier ver 220.51 65.07 2.80 0.81 ind:fut:3s; +marierai marier ver 220.51 65.07 2.58 0.61 ind:fut:1s; +marieraient marier ver 220.51 65.07 0.00 0.54 cnd:pre:3p; +marierais marier ver 220.51 65.07 0.80 0.20 cnd:pre:1s;cnd:pre:2s; +marierait marier ver 220.51 65.07 0.66 0.74 cnd:pre:3s; +marieras marier ver 220.51 65.07 1.11 0.41 ind:fut:2s; +marierez marier ver 220.51 65.07 0.49 0.47 ind:fut:2p; +marieriez marier ver 220.51 65.07 0.01 0.00 cnd:pre:2p; +marierions marier ver 220.51 65.07 0.02 0.14 cnd:pre:1p; +marierons marier ver 220.51 65.07 1.20 0.27 ind:fut:1p; +marieront marier ver 220.51 65.07 0.47 0.14 ind:fut:3p; +maries marier ver 220.51 65.07 4.27 0.54 ind:pre:2s;sub:pre:2s; +marieur marieur nom m s 0.69 0.27 0.43 0.00 +marieuse marieur nom f s 0.69 0.27 0.27 0.20 +marieuses marieuse nom f p 0.40 0.00 0.40 0.00 +mariez marier ver 220.51 65.07 2.44 0.41 imp:pre:2p;ind:pre:2p; +marigot marigot nom m s 0.16 1.69 0.16 1.15 +marigots marigot nom m p 0.16 1.69 0.00 0.54 +marihuana marihuana nom f s 0.07 0.14 0.07 0.14 +mariions marier ver 220.51 65.07 0.00 0.14 ind:imp:1p; +marijuana marijuana nom f s 3.77 0.41 3.77 0.41 +marimba marimba nom m s 0.02 0.00 0.02 0.00 +marin_pêcheur marin_pêcheur nom m s 0.01 0.14 0.01 0.14 +marin marin nom m s 13.96 33.38 8.48 15.34 +marina marina nom f s 1.16 0.14 1.14 0.07 +marinade marinade nom f s 1.46 0.27 1.44 0.20 +marinades marinade nom f p 1.46 0.27 0.03 0.07 +marinage marinage nom m s 0.00 0.07 0.00 0.07 +marinaient mariner ver 1.42 2.84 0.00 0.14 ind:imp:3p; +marinait mariner ver 1.42 2.84 0.00 0.14 ind:imp:3s; +marinant mariner ver 1.42 2.84 0.00 0.34 par:pre; +marinas marina nom f p 1.16 0.14 0.02 0.07 +marine marine adj s 7.26 20.34 5.90 17.97 +mariner mariner ver 1.42 2.84 0.84 1.15 inf; +marinera mariner ver 1.42 2.84 0.00 0.07 ind:fut:3s; +marines marine adj p 7.26 20.34 1.36 2.36 +maringoins maringoin nom m p 0.00 0.07 0.00 0.07 +marinier marinier nom m s 0.06 1.49 0.04 0.41 +mariniers marinier nom m p 0.06 1.49 0.02 1.08 +marinière marinière nom f s 0.26 0.54 0.23 0.41 +marinières marinière nom f p 0.26 0.54 0.02 0.14 +marins marin nom m p 13.96 33.38 5.48 18.04 +mariné mariné adj m s 0.34 0.47 0.18 0.20 +marinée mariner ver f s 1.42 2.84 0.13 0.00 par:pas; +marinées mariner ver f p 1.42 2.84 0.12 0.07 par:pas; +marinés mariné adj m p 0.34 0.47 0.16 0.27 +mariol mariol nom s 0.04 0.00 0.04 0.00 +mariole mariole nom s 0.68 0.81 0.58 0.54 +marioles mariole nom p 0.68 0.81 0.10 0.27 +mariolle mariolle nom s 0.99 0.61 0.59 0.41 +mariolles mariolle nom p 0.99 0.61 0.40 0.20 +marionnette marionnette nom f s 5.11 5.95 2.87 2.77 +marionnettes marionnette nom f p 5.11 5.95 2.24 3.18 +marionnettiste marionnettiste nom s 0.36 0.07 0.36 0.07 +marions marier ver 220.51 65.07 2.53 0.07 imp:pre:1p;ind:pre:1p; +mariât marier ver 220.51 65.07 0.00 0.07 sub:imp:3s; +maris mari nom m p 264.15 124.26 9.23 5.88 +maristes mariste nom p 0.00 0.14 0.00 0.14 +marital marital adj m s 0.59 0.14 0.14 0.00 +maritale marital adj f s 0.59 0.14 0.31 0.00 +maritalement maritalement adv 0.03 0.20 0.03 0.20 +maritales marital adj f p 0.59 0.14 0.01 0.07 +maritaux marital adj m p 0.59 0.14 0.13 0.07 +marièrent marier ver 220.51 65.07 0.42 0.88 ind:pas:3p; +maritime maritime adj s 2.37 6.22 1.74 3.58 +maritimes maritime adj p 2.37 6.22 0.63 2.64 +maritorne maritorne nom f s 0.00 0.27 0.00 0.27 +marié marier ver m s 220.51 65.07 35.76 10.47 par:pas; +mariée marier ver f s 220.51 65.07 30.55 10.74 ind:imp:3p;par:pas; +mariées marier ver f p 220.51 65.07 1.50 0.61 par:pas; +mariés marier ver m p 220.51 65.07 21.53 5.20 par:pas; +marivaudage marivaudage nom m s 0.03 0.41 0.03 0.20 +marivaudages marivaudage nom m p 0.03 0.41 0.00 0.20 +marivaudant marivauder ver 0.02 0.07 0.00 0.07 par:pre; +marivauder marivauder ver 0.02 0.07 0.02 0.00 inf; +marjolaine marjolaine nom f s 0.24 0.61 0.24 0.61 +mark mark nom m s 13.24 1.76 1.31 0.61 +marker marker nom m s 0.08 0.14 0.08 0.14 +marketing marketing nom m s 1.88 0.88 1.88 0.81 +marketings marketing nom m p 1.88 0.88 0.00 0.07 +marks mark nom m p 13.24 1.76 11.93 1.15 +marle marle adj m s 0.04 1.55 0.00 1.35 +marles marle adj p 0.04 1.55 0.04 0.20 +marlin marlin nom m s 0.50 0.00 0.50 0.00 +marlou marlou nom m s 0.24 0.88 0.14 0.54 +marloupin marloupin nom m s 0.00 0.34 0.00 0.14 +marloupinerie marloupinerie nom f s 0.00 0.27 0.00 0.20 +marloupineries marloupinerie nom f p 0.00 0.27 0.00 0.07 +marloupins marloupin nom m p 0.00 0.34 0.00 0.20 +marlous marlou nom m p 0.24 0.88 0.10 0.34 +marmaille marmaille nom f s 0.30 4.26 0.30 4.12 +marmailles marmaille nom f p 0.30 4.26 0.00 0.14 +marmelade marmelade nom f s 0.73 2.91 0.73 2.77 +marmelades marmelade nom f p 0.73 2.91 0.00 0.14 +marmitage marmitage nom m s 0.00 0.47 0.00 0.41 +marmitages marmitage nom m p 0.00 0.47 0.00 0.07 +marmite marmite nom f s 3.21 14.66 2.35 8.38 +marmiter marmiter ver 0.14 0.07 0.14 0.00 inf; +marmites marmite nom f p 3.21 14.66 0.86 6.28 +marmiteuse marmiteux adj f s 0.14 0.14 0.00 0.07 +marmiteux marmiteux adj m 0.14 0.14 0.14 0.07 +marmiton marmiton nom m s 0.13 1.15 0.12 0.41 +marmitons marmiton nom m p 0.13 1.15 0.01 0.74 +marmitées marmitée nom f p 0.00 0.14 0.00 0.14 +marmités marmiter ver m p 0.14 0.07 0.00 0.07 par:pas; +marmonna marmonner ver 1.74 13.51 0.14 3.04 ind:pas:3s; +marmonnaient marmonner ver 1.74 13.51 0.00 0.27 ind:imp:3p; +marmonnait marmonner ver 1.74 13.51 0.15 2.43 ind:imp:3s; +marmonnant marmonner ver 1.74 13.51 0.07 1.89 par:pre; +marmonne marmonner ver 1.74 13.51 0.56 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +marmonnement marmonnement nom m s 0.32 0.61 0.29 0.61 +marmonnements marmonnement nom m p 0.32 0.61 0.02 0.00 +marmonnent marmonner ver 1.74 13.51 0.03 0.20 ind:pre:3p; +marmonner marmonner ver 1.74 13.51 0.31 1.35 inf; +marmonnes marmonner ver 1.74 13.51 0.20 0.07 ind:pre:2s; +marmonnez marmonner ver 1.74 13.51 0.11 0.00 imp:pre:2p;ind:pre:2p; +marmonniez marmonner ver 1.74 13.51 0.01 0.00 ind:imp:2p; +marmonné marmonner ver m s 1.74 13.51 0.12 1.28 par:pas; +marmonnée marmonner ver f s 1.74 13.51 0.01 0.07 par:pas; +marmonnés marmonner ver m p 1.74 13.51 0.02 0.00 par:pas; +marmoréen marmoréen adj m s 0.01 0.61 0.00 0.27 +marmoréenne marmoréen adj f s 0.01 0.61 0.01 0.20 +marmoréens marmoréen adj m p 0.01 0.61 0.00 0.14 +marmot marmot nom m s 1.52 2.36 1.21 1.42 +marmots marmot nom m p 1.52 2.36 0.32 0.95 +marmotta marmotter ver 0.34 1.28 0.10 0.47 ind:pas:3s; +marmottages marmottage nom m p 0.00 0.07 0.00 0.07 +marmottait marmotter ver 0.34 1.28 0.00 0.20 ind:imp:3s; +marmottant marmotter ver 0.34 1.28 0.00 0.20 par:pre; +marmotte marmotte nom f s 3.15 1.22 2.84 0.74 +marmottement marmottement nom m s 0.00 0.07 0.00 0.07 +marmotter marmotter ver 0.34 1.28 0.00 0.27 inf; +marmottes marmotte nom f p 3.15 1.22 0.32 0.47 +marmotté marmotter ver m s 0.34 1.28 0.00 0.07 par:pas; +marmouset marmouset nom m s 0.10 0.07 0.10 0.00 +marmousets marmouset nom m p 0.10 0.07 0.00 0.07 +marna marner ver 0.10 1.15 0.05 0.00 ind:pas:3s; +marnaise marnais adj f s 0.00 0.07 0.00 0.07 +marnait marner ver 0.10 1.15 0.00 0.07 ind:imp:3s; +marne marne nom f s 0.03 2.84 0.03 0.34 +marnent marner ver 0.10 1.15 0.00 0.14 ind:pre:3p; +marner marner ver 0.10 1.15 0.05 0.61 inf; +marnes marne nom f p 0.03 2.84 0.00 2.50 +marneuse marneux adj f s 0.00 0.20 0.00 0.20 +marnières marnière nom f p 0.00 0.07 0.00 0.07 +marné marner ver m s 0.10 1.15 0.00 0.14 par:pas; +marocain marocain nom m s 2.28 2.09 1.06 1.49 +marocaine marocain adj f s 0.54 5.14 0.19 2.03 +marocaines marocain nom f p 2.28 2.09 0.14 0.07 +marocains marocain nom m p 2.28 2.09 1.07 0.47 +maronite maronite adj s 0.00 0.20 0.00 0.14 +maronites maronite nom p 0.00 0.14 0.00 0.14 +maronner maronner ver 0.01 0.07 0.01 0.00 inf; +maronné maronner ver m s 0.01 0.07 0.00 0.07 par:pas; +maroquin maroquin nom m s 0.11 1.76 0.11 1.69 +maroquinerie maroquinerie nom f s 0.05 1.15 0.05 1.01 +maroquineries maroquinerie nom f p 0.05 1.15 0.00 0.14 +maroquinier maroquinier nom m s 0.01 0.61 0.01 0.47 +maroquiniers maroquinier nom m p 0.01 0.61 0.00 0.14 +maroquins maroquin nom m p 0.11 1.76 0.00 0.07 +marâtre marâtre nom f s 0.38 1.22 0.37 1.08 +marâtres marâtre nom f p 0.38 1.22 0.01 0.14 +marotte marotte nom f s 0.26 2.09 0.20 1.55 +marottes marotte nom f p 0.26 2.09 0.05 0.54 +marouette marouette nom f s 0.01 0.00 0.01 0.00 +maroufle maroufle nom f s 0.14 0.41 0.14 0.27 +maroufler maroufler ver 0.00 0.07 0.00 0.07 inf; +maroufles maroufle nom f p 0.14 0.41 0.00 0.14 +marqua marquer ver 43.78 101.08 0.32 8.04 ind:pas:3s; +marquage marquage nom m s 0.65 0.14 0.65 0.14 +marquai marquer ver 43.78 101.08 0.00 0.74 ind:pas:1s; +marquaient marquer ver 43.78 101.08 0.12 4.39 ind:imp:3p; +marquais marquer ver 43.78 101.08 0.06 0.41 ind:imp:1s;ind:imp:2s; +marquait marquer ver 43.78 101.08 0.56 12.03 ind:imp:3s; +marquant marquer ver 43.78 101.08 0.30 5.20 par:pre; +marquante marquant adj f s 0.56 1.49 0.04 0.14 +marquantes marquant adj f p 0.56 1.49 0.01 0.07 +marquants marquant adj m p 0.56 1.49 0.29 0.61 +marque_page marque_page nom m s 0.25 0.14 0.24 0.07 +marque_page marque_page nom m p 0.25 0.14 0.01 0.07 +marque marque nom f s 40.29 37.70 23.91 26.89 +marquent marquer ver 43.78 101.08 0.86 2.77 ind:pre:3p; +marquer marquer ver 43.78 101.08 7.69 16.82 inf; +marquera marquer ver 43.78 101.08 0.85 0.74 ind:fut:3s; +marquerai marquer ver 43.78 101.08 0.42 0.07 ind:fut:1s; +marqueraient marquer ver 43.78 101.08 0.11 0.14 cnd:pre:3p; +marquerait marquer ver 43.78 101.08 0.07 0.47 cnd:pre:3s; +marqueras marquer ver 43.78 101.08 0.03 0.07 ind:fut:2s; +marquerez marquer ver 43.78 101.08 0.01 0.14 ind:fut:2p; +marquerons marquer ver 43.78 101.08 0.01 0.00 ind:fut:1p; +marqueront marquer ver 43.78 101.08 0.08 0.14 ind:fut:3p; +marques marque nom f p 40.29 37.70 16.39 10.81 +marqueterie marqueterie nom f s 0.11 2.09 0.11 1.62 +marqueteries marqueterie nom f p 0.11 2.09 0.00 0.47 +marquette marqueter ver 0.02 0.27 0.01 0.07 imp:pre:2s;ind:pre:3s; +marqueté marqueter ver m s 0.02 0.27 0.01 0.07 par:pas; +marquetées marqueter ver f p 0.02 0.27 0.00 0.07 par:pas; +marquetés marqueter ver m p 0.02 0.27 0.00 0.07 par:pas; +marqueur marqueur nom m s 2.02 0.47 1.25 0.47 +marqueurs marqueur nom m p 2.02 0.47 0.77 0.00 +marquez marquer ver 43.78 101.08 1.98 0.41 imp:pre:2p;ind:pre:2p; +marquiez marquer ver 43.78 101.08 0.28 0.07 ind:imp:2p; +marquions marquer ver 43.78 101.08 0.00 0.07 ind:imp:1p; +marquis marquis nom m 16.69 18.31 14.98 9.86 +marquisat marquisat nom m s 0.00 0.27 0.00 0.20 +marquisats marquisat nom m p 0.00 0.27 0.00 0.07 +marquise marquis nom f s 16.69 18.31 1.64 7.36 +marquises marquis nom f p 16.69 18.31 0.07 1.08 +marquisien marquisien adj m s 0.00 0.20 0.00 0.07 +marquisiens marquisien adj m p 0.00 0.20 0.00 0.14 +marquons marquer ver 43.78 101.08 0.04 0.14 imp:pre:1p;ind:pre:1p; +marquât marquer ver 43.78 101.08 0.00 0.41 sub:imp:3s; +marquèrent marquer ver 43.78 101.08 0.01 0.68 ind:pas:3p; +marqué marquer ver m s 43.78 101.08 15.81 20.07 par:pas; +marquée marquer ver f s 43.78 101.08 2.84 9.26 par:pas; +marquées marquer ver f p 43.78 101.08 0.51 2.50 par:pas; +marqués marquer ver m p 43.78 101.08 1.68 4.32 par:pas; +marra marrer ver 16.13 32.57 0.10 0.34 ind:pas:3s; +marrade marrade nom f s 0.01 0.68 0.01 0.68 +marraient marrer ver 16.13 32.57 0.14 0.54 ind:imp:3p; +marraine marraine nom f s 2.74 8.78 2.52 8.38 +marraines marraine nom f p 2.74 8.78 0.22 0.41 +marrais marrer ver 16.13 32.57 0.14 0.34 ind:imp:1s; +marrait marrer ver 16.13 32.57 0.27 2.30 ind:imp:3s; +marrane marrane nom m s 0.00 0.27 0.00 0.14 +marranes marrane nom m p 0.00 0.27 0.00 0.14 +marrant marrant adj m s 35.70 12.36 30.41 9.19 +marrante marrant adj f s 35.70 12.36 3.15 1.42 +marrantes marrant adj f p 35.70 12.36 0.81 0.54 +marrants marrant adj m p 35.70 12.36 1.33 1.22 +marre marre adv 57.48 20.68 57.48 20.68 +marrent marrer ver 16.13 32.57 0.54 1.76 ind:pre:3p; +marrer marrer ver 16.13 32.57 6.45 12.50 inf; +marrera marrer ver 16.13 32.57 0.22 0.07 ind:fut:3s; +marrerais marrer ver 16.13 32.57 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +marrerait marrer ver 16.13 32.57 0.00 0.14 cnd:pre:3s; +marres marrer ver 16.13 32.57 1.12 0.34 ind:pre:2s; +marrez marrer ver 16.13 32.57 0.47 0.41 imp:pre:2p;ind:pre:2p; +marri marri adj m s 0.52 0.41 0.03 0.41 +marrie marri adj f s 0.52 0.41 0.45 0.00 +marrions marrer ver 16.13 32.57 0.05 0.00 ind:imp:1p; +marris marri adj m p 0.52 0.41 0.04 0.00 +marron marron adj 5.33 13.72 5.33 13.72 +marronnais marronner ver 0.00 0.41 0.00 0.07 ind:imp:2s; +marronnasse marronnasse adj s 0.00 0.07 0.00 0.07 +marronner marronner ver 0.00 0.41 0.00 0.20 inf; +marronnera marronner ver 0.00 0.41 0.00 0.07 ind:fut:3s; +marronnier marronnier nom m s 0.61 9.39 0.46 2.57 +marronniers marronnier nom m p 0.61 9.39 0.15 6.82 +marronné marronner ver m s 0.00 0.41 0.00 0.07 par:pas; +marrons marron nom m p 4.89 7.36 2.80 3.92 +marré marrer ver m s 16.13 32.57 0.72 1.76 par:pas; +marrée marrer ver f s 16.13 32.57 0.15 0.07 par:pas; +marrés marrer ver m p 16.13 32.57 0.18 0.61 par:pas; +mars mars nom m 9.75 31.42 9.75 31.42 +marsala marsala nom m s 0.38 0.14 0.38 0.14 +marsaules marsaule nom m p 0.00 0.27 0.00 0.27 +marseillais marseillais nom m 1.27 1.82 1.27 0.81 +marseillaise marseillais nom f s 1.27 1.82 0.00 1.01 +marseillaises marseillais adj f p 1.22 1.35 0.00 0.34 +marshal marshal nom m s 3.11 0.00 2.74 0.00 +marshals marshal nom m p 3.11 0.00 0.37 0.00 +marsouin marsouin nom m s 0.11 0.68 0.08 0.47 +marsouins marsouin nom m p 0.11 0.68 0.03 0.20 +marsupial marsupial nom m s 0.10 0.00 0.04 0.00 +marsupiaux marsupial nom m p 0.10 0.00 0.06 0.00 +marsupilami marsupilami nom m s 0.00 0.20 0.00 0.14 +marsupilamis marsupilami nom m p 0.00 0.20 0.00 0.07 +martagon martagon nom m s 0.00 0.07 0.00 0.07 +marteau_pilon marteau_pilon nom m s 0.07 0.41 0.07 0.34 +marteau_piqueur marteau_piqueur nom m s 0.42 0.07 0.42 0.07 +marteau marteau nom m s 12.63 15.61 11.84 13.31 +marteau_pilon marteau_pilon nom m p 0.07 0.41 0.00 0.07 +marteaux marteau nom m p 12.63 15.61 0.79 2.30 +martel martel nom m s 0.05 0.47 0.05 0.34 +martela marteler ver 1.45 10.41 0.00 0.68 ind:pas:3s; +martelage martelage nom m s 0.00 0.14 0.00 0.14 +martelai marteler ver 1.45 10.41 0.00 0.07 ind:pas:1s; +martelaient marteler ver 1.45 10.41 0.02 0.74 ind:imp:3p; +martelait marteler ver 1.45 10.41 0.01 1.15 ind:imp:3s; +martelant marteler ver 1.45 10.41 0.29 2.30 par:pre; +marteler marteler ver 1.45 10.41 0.41 1.35 inf; +martelet martelet nom m s 0.00 0.07 0.00 0.07 +marteleur marteleur nom m s 0.04 0.00 0.04 0.00 +martelez marteler ver 1.45 10.41 0.01 0.00 ind:pre:2p; +martels martel nom m p 0.05 0.47 0.00 0.14 +martelèrent marteler ver 1.45 10.41 0.00 0.07 ind:pas:3p; +martelé marteler ver m s 1.45 10.41 0.16 1.42 par:pas; +martelée marteler ver f s 1.45 10.41 0.02 0.54 par:pas; +martelées marteler ver f p 1.45 10.41 0.00 0.27 par:pas; +martelés marteler ver m p 1.45 10.41 0.00 0.47 par:pas; +martial martial adj m s 8.02 4.26 0.85 1.76 +martiale martial adj f s 8.02 4.26 5.63 1.22 +martiales martial adj f p 8.02 4.26 0.01 0.34 +martialités martialité nom f p 0.00 0.07 0.00 0.07 +martiaux martial adj m p 8.02 4.26 1.53 0.95 +martien martien nom m s 1.96 1.49 0.59 0.61 +martienne martienne nom f s 0.51 0.34 0.35 0.27 +martiennes martienne nom f p 0.51 0.34 0.16 0.07 +martiens martien nom m p 1.96 1.49 1.37 0.88 +martin_pêcheur martin_pêcheur nom m s 0.02 0.41 0.01 0.27 +martin martin nom m s 1.69 0.07 0.08 0.00 +martine martiner ver 2.56 0.47 0.00 0.14 ind:pre:3s; +martinet martinet nom m s 0.26 2.64 0.24 1.15 +martinets martinet nom m p 0.26 2.64 0.02 1.49 +martinez martiner ver 2.56 0.47 2.56 0.34 imp:pre:2p;ind:pre:2p; +martingale martingale nom f s 0.12 1.28 0.12 1.08 +martingales martingale nom f p 0.12 1.28 0.00 0.20 +martini martini nom m s 3.85 2.23 2.76 1.89 +martiniquais martiniquais nom m 0.03 1.69 0.02 0.68 +martiniquaise martiniquais nom f s 0.03 1.69 0.01 0.95 +martiniquaises martiniquais nom f p 0.03 1.69 0.00 0.07 +martinis martini nom m p 3.85 2.23 1.09 0.34 +martin_pêcheur martin_pêcheur nom m p 0.02 0.41 0.01 0.14 +martins martin nom m p 1.69 0.07 1.62 0.07 +martre martre nom f s 0.53 1.22 0.16 1.01 +martres martre nom f p 0.53 1.22 0.37 0.20 +martèle marteler ver 1.45 10.41 0.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +martèlement martèlement nom m s 0.43 3.65 0.41 3.51 +martèlements martèlement nom m p 0.43 3.65 0.02 0.14 +martèlent marteler ver 1.45 10.41 0.32 0.27 ind:pre:3p; +martèlera marteler ver 1.45 10.41 0.00 0.14 ind:fut:3s; +martyr martyr nom m s 5.50 6.76 3.68 3.24 +martyre martyre nom s 3.75 6.35 3.32 6.08 +martyres martyre nom p 3.75 6.35 0.42 0.27 +martyrisaient martyriser ver 0.94 3.38 0.00 0.07 ind:imp:3p; +martyrisait martyriser ver 0.94 3.38 0.01 0.47 ind:imp:3s; +martyrisant martyriser ver 0.94 3.38 0.00 0.14 par:pre; +martyrise martyriser ver 0.94 3.38 0.24 0.07 ind:pre:3s; +martyrisent martyriser ver 0.94 3.38 0.02 0.07 ind:pre:3p; +martyriser martyriser ver 0.94 3.38 0.22 0.74 inf; +martyriserait martyriser ver 0.94 3.38 0.01 0.00 cnd:pre:3s; +martyrisé martyriser ver m s 0.94 3.38 0.24 0.68 par:pas; +martyrisée martyriser ver f s 0.94 3.38 0.04 0.74 par:pas; +martyrisées martyriser ver f p 0.94 3.38 0.01 0.07 par:pas; +martyrisés martyriser ver m p 0.94 3.38 0.15 0.34 par:pas; +martyrologe martyrologe nom m s 0.00 0.20 0.00 0.14 +martyrologes martyrologe nom m p 0.00 0.20 0.00 0.07 +martyrs martyr nom m p 5.50 6.76 1.82 3.51 +marécage marécage nom m s 3.18 6.15 2.31 2.77 +marécages marécage nom m p 3.18 6.15 0.87 3.38 +marécageuse marécageux adj f s 0.47 1.62 0.02 0.41 +marécageuses marécageux adj f p 0.47 1.62 0.01 0.34 +marécageux marécageux adj m 0.47 1.62 0.44 0.88 +maréchal_ferrant maréchal_ferrant nom m s 0.22 1.96 0.22 1.96 +maréchal maréchal nom m s 2.84 41.69 2.67 38.24 +maréchalat maréchalat nom m s 0.00 0.07 0.00 0.07 +maréchale maréchal nom f s 2.84 41.69 0.14 0.07 +maréchalerie maréchalerie nom f s 0.00 0.27 0.00 0.27 +maréchalistes maréchaliste nom p 0.00 0.07 0.00 0.07 +maréchaussée maréchaussée nom f s 0.00 0.88 0.00 0.88 +maréchaux_ferrants maréchaux_ferrants nom m p 0.00 0.41 0.00 0.41 +maréchaux maréchal nom m p 2.84 41.69 0.04 3.38 +marée marée nom f s 6.31 26.89 5.21 21.28 +marées marée nom f p 6.31 26.89 1.10 5.61 +marémotrice marémoteur adj f s 0.01 0.00 0.01 0.00 +marxisme_léninisme marxisme_léninisme nom m s 0.50 0.68 0.50 0.68 +marxisme marxisme nom m s 0.94 3.92 0.94 3.92 +marxiste_léniniste marxiste_léniniste adj s 0.41 0.41 0.27 0.41 +marxiste marxiste adj s 0.91 2.84 0.67 2.36 +marxiste_léniniste marxiste_léniniste adj p 0.41 0.41 0.14 0.00 +marxistes marxiste adj p 0.91 2.84 0.24 0.47 +mary mary nom m s 0.56 0.20 0.56 0.20 +maryland maryland nom m s 0.04 0.14 0.04 0.14 +mas mas nom m 2.21 5.07 2.21 5.07 +masaï masaï nom s 0.01 3.99 0.01 3.99 +mascara mascara nom m s 1.15 0.47 1.15 0.47 +mascarade mascarade nom f s 2.71 2.03 2.58 1.76 +mascarades mascarade nom f p 2.71 2.03 0.13 0.27 +mascaret mascaret nom m s 0.00 0.54 0.00 0.54 +mascaron mascaron nom m s 0.00 0.14 0.00 0.07 +mascarons mascaron nom m p 0.00 0.14 0.00 0.07 +mascarpone mascarpone nom m s 0.11 0.00 0.11 0.00 +mascotte mascotte nom f s 2.36 0.88 1.91 0.74 +mascottes mascotte nom f p 2.36 0.88 0.45 0.14 +masculin masculin adj m s 8.14 10.14 4.49 4.05 +masculine masculin adj f s 8.14 10.14 2.66 3.92 +masculines masculin adj f p 8.14 10.14 0.40 0.95 +masculiniser masculiniser ver 0.02 0.07 0.01 0.00 inf; +masculinisée masculiniser ver f s 0.02 0.07 0.01 0.07 par:pas; +masculinité masculinité nom f s 0.21 0.00 0.21 0.00 +masculins masculin adj m p 8.14 10.14 0.59 1.22 +maser maser nom m s 0.01 0.00 0.01 0.00 +maskinongé maskinongé nom m s 0.00 0.07 0.00 0.07 +maso maso nom s 0.38 0.34 0.24 0.34 +masochisme masochisme nom m s 0.42 1.01 0.42 1.01 +masochiste masochiste adj s 0.34 0.81 0.30 0.68 +masochistes masochiste nom p 0.29 0.47 0.04 0.07 +masos maso adj p 0.35 0.88 0.15 0.00 +masqua masquer ver 3.74 19.12 0.01 0.27 ind:pas:3s; +masquage masquage nom m s 0.02 0.00 0.01 0.00 +masquages masquage nom m p 0.02 0.00 0.01 0.00 +masquaient masquer ver 3.74 19.12 0.04 1.22 ind:imp:3p; +masquait masquer ver 3.74 19.12 0.08 3.11 ind:imp:3s; +masquant masquer ver 3.74 19.12 0.05 1.82 par:pre; +masque_espion masque_espion nom m s 0.01 0.00 0.01 0.00 +masque masque nom m s 29.18 38.65 23.16 28.45 +masquent masquer ver 3.74 19.12 0.09 0.68 ind:pre:3p; +masquer masquer ver 3.74 19.12 1.39 4.32 inf; +masqueraient masquer ver 3.74 19.12 0.00 0.07 cnd:pre:3p; +masques masque nom m p 29.18 38.65 6.02 10.20 +masquons masquer ver 3.74 19.12 0.03 0.00 ind:pre:1p; +masqué masqué adj m s 3.26 3.85 2.42 1.69 +masquée masquer ver f s 3.74 19.12 0.15 1.42 par:pas; +masquées masquer ver f p 3.74 19.12 0.02 0.47 par:pas; +masqués masqué adj m p 3.26 3.85 0.73 0.68 +mass_media mass_media nom m p 0.17 0.07 0.17 0.07 +massa masser ver 5.69 12.84 0.00 1.28 ind:pas:3s; +massacra massacrer ver 17.01 14.66 0.05 0.14 ind:pas:3s; +massacraient massacrer ver 17.01 14.66 0.01 0.47 ind:imp:3p; +massacrais massacrer ver 17.01 14.66 0.01 0.00 ind:imp:1s; +massacrait massacrer ver 17.01 14.66 0.05 0.74 ind:imp:3s; +massacrant massacrer ver 17.01 14.66 0.33 0.47 par:pre; +massacrante massacrant adj f s 0.45 0.34 0.40 0.34 +massacre massacre nom m s 13.71 16.49 11.71 10.27 +massacrent massacrer ver 17.01 14.66 0.36 0.20 ind:pre:3p;sub:pre:3p; +massacrer massacrer ver 17.01 14.66 5.73 4.12 inf; +massacrera massacrer ver 17.01 14.66 0.27 0.07 ind:fut:3s; +massacrerai massacrer ver 17.01 14.66 0.03 0.07 ind:fut:1s; +massacreraient massacrer ver 17.01 14.66 0.01 0.20 cnd:pre:3p; +massacrerait massacrer ver 17.01 14.66 0.00 0.14 cnd:pre:3s; +massacrerons massacrer ver 17.01 14.66 0.16 0.00 ind:fut:1p; +massacreront massacrer ver 17.01 14.66 0.08 0.07 ind:fut:3p; +massacres massacre nom m p 13.71 16.49 2.00 6.22 +massacreur massacreur nom m s 0.06 0.34 0.06 0.20 +massacreurs massacreur nom m p 0.06 0.34 0.00 0.14 +massacrez massacrer ver 17.01 14.66 0.57 0.07 imp:pre:2p;ind:pre:2p; +massacrons massacrer ver 17.01 14.66 0.20 0.00 imp:pre:1p;ind:pre:1p; +massacrât massacrer ver 17.01 14.66 0.00 0.07 sub:imp:3s; +massacrèrent massacrer ver 17.01 14.66 0.16 0.20 ind:pas:3p; +massacré massacrer ver m s 17.01 14.66 3.17 2.70 par:pas; +massacrée massacrer ver f s 17.01 14.66 0.81 0.81 par:pas; +massacrées massacrer ver f p 17.01 14.66 0.09 0.20 par:pas; +massacrés massacrer ver m p 17.01 14.66 1.92 3.04 par:pas; +massage massage nom m s 9.57 3.18 7.76 2.23 +massages massage nom m p 9.57 3.18 1.81 0.95 +massaient masser ver 5.69 12.84 0.00 0.27 ind:imp:3p; +massais masser ver 5.69 12.84 0.08 0.00 ind:imp:1s; +massait masser ver 5.69 12.84 0.02 1.01 ind:imp:3s; +massant masser ver 5.69 12.84 0.04 0.68 par:pre; +masse masse nom f s 16.73 79.80 11.64 60.54 +massent masser ver 5.69 12.84 0.01 0.41 ind:pre:3p; +massepain massepain nom m s 0.29 0.34 0.17 0.00 +massepains massepain nom m p 0.29 0.34 0.12 0.34 +masser masser ver 5.69 12.84 2.98 2.09 inf; +massera masser ver 5.69 12.84 0.21 0.00 ind:fut:3s; +masserai masser ver 5.69 12.84 0.05 0.00 ind:fut:1s; +masseraient masser ver 5.69 12.84 0.00 0.07 cnd:pre:3p; +masserais masser ver 5.69 12.84 0.01 0.00 cnd:pre:2s; +masseras masser ver 5.69 12.84 0.02 0.00 ind:fut:2s; +masserez masser ver 5.69 12.84 0.01 0.00 ind:fut:2p; +masses masse nom f p 16.73 79.80 5.09 19.26 +massettes massette nom f p 0.00 0.14 0.00 0.14 +masseur masseur nom m s 1.91 1.69 0.70 1.15 +masseurs masseur nom m p 1.91 1.69 0.06 0.14 +masseuse masseur nom f s 1.91 1.69 1.12 0.27 +masseuses masseur nom f p 1.91 1.69 0.03 0.14 +massez masser ver 5.69 12.84 0.21 0.00 imp:pre:2p; +massicot massicot nom m s 0.20 0.61 0.10 0.54 +massicoter massicoter ver 0.00 0.14 0.00 0.07 inf; +massicotier massicotier nom m s 0.00 0.41 0.00 0.41 +massicots massicot nom m p 0.20 0.61 0.10 0.07 +massicoté massicoter ver m s 0.00 0.14 0.00 0.07 par:pas; +massif massif adj m s 7.16 22.30 2.52 8.92 +massifs massif adj m p 7.16 22.30 0.40 2.03 +massive massif adj f s 7.16 22.30 3.68 8.38 +massivement massivement adv 0.21 1.01 0.21 1.01 +massives massif adj f p 7.16 22.30 0.55 2.97 +massivité massivité nom f s 0.00 0.20 0.00 0.20 +massèrent masser ver 5.69 12.84 0.00 0.14 ind:pas:3p; +massé masser ver m s 5.69 12.84 0.40 1.01 par:pas; +massée masser ver f s 5.69 12.84 0.11 1.62 par:pas; +massue massue nom f s 0.71 2.84 0.57 2.30 +massées masser ver f p 5.69 12.84 0.03 0.47 par:pas; +massues massue nom f p 0.71 2.84 0.14 0.54 +massés masser ver m p 5.69 12.84 0.05 1.69 par:pas; +mastaba mastaba nom m s 0.01 0.20 0.01 0.14 +mastabas mastaba nom m p 0.01 0.20 0.00 0.07 +mastar mastar nom m s 0.02 0.07 0.02 0.07 +mastard mastard adj m s 0.80 0.88 0.80 0.74 +mastards mastard adj m p 0.80 0.88 0.00 0.14 +mastectomie mastectomie nom f s 0.22 0.00 0.22 0.00 +master master nom m s 3.43 0.07 1.41 0.07 +masters master nom m p 3.43 0.07 2.02 0.00 +mastic mastic nom m s 0.26 1.62 0.26 1.62 +masticage masticage nom m s 0.00 0.07 0.00 0.07 +masticateurs masticateur adj m p 0.01 0.07 0.01 0.07 +mastication mastication nom f s 0.16 0.81 0.16 0.74 +mastications mastication nom f p 0.16 0.81 0.00 0.07 +mastiff mastiff nom m s 0.02 0.07 0.02 0.07 +mastiqua mastiquer ver 0.32 4.32 0.00 0.14 ind:pas:3s; +mastiquaient mastiquer ver 0.32 4.32 0.00 0.14 ind:imp:3p; +mastiquais mastiquer ver 0.32 4.32 0.00 0.07 ind:imp:1s; +mastiquait mastiquer ver 0.32 4.32 0.01 0.81 ind:imp:3s; +mastiquant mastiquer ver 0.32 4.32 0.00 0.81 par:pre; +mastique mastiquer ver 0.32 4.32 0.10 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mastiquent mastiquer ver 0.32 4.32 0.01 0.07 ind:pre:3p; +mastiquer mastiquer ver 0.32 4.32 0.14 1.35 inf; +mastiquez mastiquer ver 0.32 4.32 0.01 0.07 imp:pre:2p; +mastiquons mastiquer ver 0.32 4.32 0.00 0.07 ind:pre:1p; +mastiqué mastiquer ver m s 0.32 4.32 0.04 0.14 par:pas; +mastiqués mastiquer ver m p 0.32 4.32 0.01 0.07 par:pas; +mastite mastite nom f s 0.12 0.00 0.12 0.00 +mastoïde mastoïde adj s 0.93 0.07 0.93 0.07 +mastoc mastoc adj s 1.28 0.68 1.28 0.68 +mastodonte mastodonte nom m s 0.17 0.61 0.13 0.47 +mastodontes mastodonte nom m p 0.17 0.61 0.04 0.14 +mastroquet mastroquet nom m s 0.16 0.34 0.14 0.20 +mastroquets mastroquet nom m p 0.16 0.34 0.01 0.14 +mastère mastère nom m s 0.02 0.00 0.02 0.00 +masturbais masturber ver 3.89 1.69 0.08 0.00 ind:imp:1s;ind:imp:2s; +masturbait masturber ver 3.89 1.69 0.44 0.20 ind:imp:3s; +masturbant masturber ver 3.89 1.69 0.43 0.20 par:pre; +masturbateur masturbateur adj m s 0.06 0.00 0.06 0.00 +masturbation masturbation nom f s 1.57 2.03 1.57 1.89 +masturbations masturbation nom f p 1.57 2.03 0.00 0.14 +masturbatoire masturbatoire adj m s 0.05 0.14 0.02 0.14 +masturbatoires masturbatoire adj p 0.05 0.14 0.03 0.00 +masturbe masturber ver 3.89 1.69 1.02 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +masturbent masturber ver 3.89 1.69 0.19 0.14 ind:pre:3p; +masturber masturber ver 3.89 1.69 1.16 0.47 inf; +masturberas masturber ver 3.89 1.69 0.01 0.00 ind:fut:2s; +masturbez masturber ver 3.89 1.69 0.04 0.00 ind:pre:2p; +masturbé masturber ver m s 3.89 1.69 0.18 0.07 par:pas; +masturbée masturber ver f s 3.89 1.69 0.34 0.00 par:pas; +masturbés masturber ver m p 3.89 1.69 0.01 0.07 par:pas; +masure masure nom f s 0.47 4.32 0.19 2.30 +masures masure nom f p 0.47 4.32 0.28 2.03 +mat mat nom m s 6.84 4.32 1.95 0.88 +mat mat nom m s 6.84 4.32 4.54 3.31 +mata mater ver 17.27 14.93 0.41 0.20 ind:pas:3s; +matador matador nom m s 1.25 2.03 1.15 1.76 +matadors matador nom m p 1.25 2.03 0.10 0.27 +mataf mataf nom m s 0.13 0.61 0.02 0.54 +matafs mataf nom m p 0.13 0.61 0.11 0.07 +mataient mater ver 17.27 14.93 0.04 0.20 ind:imp:3p; +matais mater ver 17.27 14.93 0.52 0.54 ind:imp:1s;ind:imp:2s; +matait mater ver 17.27 14.93 0.64 0.61 ind:imp:3s; +matamore matamore nom m s 0.27 0.61 0.14 0.27 +matamores matamore nom m p 0.27 0.61 0.14 0.34 +matant mater ver 17.27 14.93 0.10 0.41 par:pre; +match match nom m s 63.48 10.00 58.26 9.39 +matcha matcher ver 0.01 0.07 0.00 0.07 ind:pas:3s; +matche matcher ver 0.01 0.07 0.01 0.00 ind:pre:3s; +matches matche nom m p 1.42 1.42 1.42 1.42 +matchiche matchiche nom f s 0.00 0.20 0.00 0.20 +matchs match nom m p 63.48 10.00 5.22 0.61 +mate mater ver 17.27 14.93 4.55 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +matelas matelas nom m 8.98 25.95 8.98 25.95 +matelassent matelasser ver 0.00 1.01 0.00 0.07 ind:pre:3p; +matelasser matelasser ver 0.00 1.01 0.00 0.07 inf; +matelassier matelassier nom m s 0.00 0.41 0.00 0.20 +matelassiers matelassier nom m p 0.00 0.41 0.00 0.07 +matelassière matelassier nom f s 0.00 0.41 0.00 0.07 +matelassières matelassier nom f p 0.00 0.41 0.00 0.07 +matelassé matelassé adj m s 0.15 0.47 0.14 0.14 +matelassée matelassé adj f s 0.15 0.47 0.01 0.34 +matelassées matelasser ver f p 0.00 1.01 0.00 0.20 par:pas; +matelassés matelasser ver m p 0.00 1.01 0.00 0.07 par:pas; +matelot matelot nom m s 7.04 6.96 4.78 4.26 +matelote matelote nom f s 0.04 0.20 0.04 0.20 +matelots matelot nom m p 7.04 6.96 2.27 2.70 +matent mater ver 17.27 14.93 0.51 0.41 ind:pre:3p; +mater_dolorosa mater_dolorosa nom f 0.00 0.47 0.00 0.47 +mater mater ver 17.27 14.93 5.91 6.22 inf; +matera mater ver 17.27 14.93 0.16 0.07 ind:fut:3s; +materai mater ver 17.27 14.93 0.17 0.07 ind:fut:1s; +materais mater ver 17.27 14.93 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +materait mater ver 17.27 14.93 0.01 0.14 cnd:pre:3s; +maternage maternage nom m s 0.04 0.00 0.04 0.00 +maternalisme maternalisme nom m s 0.00 0.20 0.00 0.20 +maternant materner ver 0.68 0.14 0.01 0.00 par:pre; +maternel maternel adj m s 5.21 23.72 2.71 8.99 +maternelle maternel nom f s 3.17 2.43 3.17 2.30 +maternellement maternellement adv 0.00 0.54 0.00 0.54 +maternelles maternel adj f p 5.21 23.72 0.35 1.76 +maternels maternel adj m p 5.21 23.72 0.24 1.82 +materner materner ver 0.68 0.14 0.52 0.14 inf; +maternera materner ver 0.68 0.14 0.11 0.00 ind:fut:3s; +materniser materniser ver 0.30 0.00 0.01 0.00 inf; +maternisé materniser ver m s 0.30 0.00 0.29 0.00 par:pas; +maternité maternité nom f s 3.49 4.73 3.47 4.05 +maternités maternité nom f p 3.49 4.73 0.03 0.68 +materné materner ver m s 0.68 0.14 0.04 0.00 par:pas; +materons mater ver 17.27 14.93 0.01 0.14 ind:fut:1p; +materont mater ver 17.27 14.93 0.00 0.07 ind:fut:3p; +mates mater ver 17.27 14.93 1.56 0.41 ind:pre:2s; +mateur mateur nom m s 0.37 0.27 0.11 0.07 +mateurs mateur nom m p 0.37 0.27 0.20 0.14 +mateuse mateur nom f s 0.37 0.27 0.06 0.07 +matez mater ver 17.27 14.93 1.40 0.34 imp:pre:2p;ind:pre:2p; +math math nom f p 1.55 0.74 1.55 0.74 +matheuse matheux nom f s 0.10 0.27 0.02 0.07 +matheux matheux nom m 0.10 0.27 0.08 0.20 +maçon maçon nom m s 3.79 6.76 3.48 3.31 +maçonnant maçonner ver 0.01 1.69 0.00 0.14 par:pre; +maçonne maçon nom f s 3.79 6.76 0.00 0.14 +maçonnent maçonner ver 0.01 1.69 0.00 0.07 ind:pre:3p; +maçonner maçonner ver 0.01 1.69 0.00 0.07 inf; +maçonnerie maçonnerie nom f s 0.69 3.04 0.69 2.97 +maçonneries maçonnerie nom f p 0.69 3.04 0.00 0.07 +maçonnique maçonnique adj s 0.35 0.74 0.32 0.34 +maçonniques maçonnique adj p 0.35 0.74 0.04 0.41 +maçonné maçonner ver m s 0.01 1.69 0.00 0.54 par:pas; +maçonnée maçonner ver f s 0.01 1.69 0.00 0.20 par:pas; +maçonnées maçonner ver f p 0.01 1.69 0.00 0.47 par:pas; +maçonnés maçonner ver m p 0.01 1.69 0.01 0.20 par:pas; +maçons maçon nom m p 3.79 6.76 0.32 3.31 +maths maths nom f p 10.66 3.38 10.66 3.38 +mathématicien mathématicien nom m s 0.96 0.68 0.65 0.54 +mathématicienne mathématicien nom f s 0.96 0.68 0.02 0.07 +mathématiciens mathématicien nom m p 0.96 0.68 0.28 0.07 +mathématique mathématique adj s 1.78 2.36 1.27 1.42 +mathématiquement mathématiquement adv 0.35 0.34 0.35 0.34 +mathématiques mathématique nom f p 1.80 7.03 1.64 5.68 +mathématiser mathématiser ver 0.00 0.07 0.00 0.07 inf; +mathurins mathurin nom m p 0.00 0.07 0.00 0.07 +mathusalems mathusalem nom m p 0.00 0.07 0.00 0.07 +mati mati adj m s 0.18 0.00 0.18 0.00 +matiez mater ver 17.27 14.93 0.03 0.00 ind:imp:2p; +matin matin nom m s 275.01 396.76 265.03 376.89 +matinal matinal adj m s 5.81 10.74 2.56 3.78 +matinale matinal adj f s 5.81 10.74 2.51 5.20 +matinalement matinalement adv 0.00 0.14 0.00 0.14 +matinales matinal adj f p 5.81 10.74 0.42 0.95 +matinaux matinal adj m p 5.81 10.74 0.32 0.81 +matines mâtine nom f p 0.57 1.22 0.56 1.01 +matineux matineux adj m p 0.00 0.14 0.00 0.14 +matins matin nom m p 275.01 396.76 9.98 19.86 +matinée matinée nom f s 12.51 34.05 12.10 32.23 +matinées matinée nom f p 12.51 34.05 0.41 1.82 +matis matir ver m p 0.20 0.14 0.00 0.07 par:pas; +matisse matir ver 0.20 0.14 0.19 0.07 sub:pre:1s;sub:pre:3s; +matière matière nom f s 16.99 58.45 14.20 49.80 +matières matière nom f p 16.99 58.45 2.79 8.65 +matité matité nom f s 0.00 0.54 0.00 0.54 +matois matois nom m 0.01 0.07 0.01 0.07 +matoise matois adj f s 0.00 0.41 0.00 0.07 +matoiserie matoiserie nom f s 0.00 0.14 0.00 0.14 +maton maton nom m s 1.41 6.08 0.50 3.11 +matonne maton nom f s 1.41 6.08 0.00 0.14 +matonnes maton nom f p 1.41 6.08 0.00 0.27 +matons maton nom m p 1.41 6.08 0.91 2.57 +matos matos nom m 5.72 1.55 5.72 1.55 +matou matou nom m s 1.21 4.12 1.04 3.18 +matous matou nom m p 1.21 4.12 0.17 0.95 +matouse matouser ver 0.00 0.20 0.00 0.07 ind:pre:3s; +matouser matouser ver 0.00 0.20 0.00 0.14 inf; +matraqua matraquer ver 0.59 1.49 0.00 0.14 ind:pas:3s; +matraquage matraquage nom m s 0.14 0.14 0.14 0.07 +matraquages matraquage nom m p 0.14 0.14 0.00 0.07 +matraquaient matraquer ver 0.59 1.49 0.00 0.07 ind:imp:3p; +matraquais matraquer ver 0.59 1.49 0.00 0.07 ind:imp:1s; +matraquait matraquer ver 0.59 1.49 0.01 0.07 ind:imp:3s; +matraquant matraquer ver 0.59 1.49 0.00 0.20 par:pre; +matraque matraque nom f s 1.80 5.41 1.41 4.46 +matraquer matraquer ver 0.59 1.49 0.11 0.14 inf; +matraques matraque nom f p 1.80 5.41 0.39 0.95 +matraqueur matraqueur nom m s 0.01 0.07 0.00 0.07 +matraqueurs matraqueur nom m p 0.01 0.07 0.01 0.00 +matraquez matraquer ver 0.59 1.49 0.15 0.07 imp:pre:2p;ind:pre:2p; +matraqué matraquer ver m s 0.59 1.49 0.23 0.34 par:pas; +matraquée matraquer ver f s 0.59 1.49 0.04 0.14 par:pas; +matraqués matraquer ver m p 0.59 1.49 0.00 0.07 par:pas; +matras matras nom m 0.00 0.47 0.00 0.47 +matriarcal matriarcal adj m s 0.01 0.41 0.01 0.14 +matriarcale matriarcal adj f s 0.01 0.41 0.00 0.20 +matriarcales matriarcal adj f p 0.01 0.41 0.00 0.07 +matriarcat matriarcat nom m s 0.14 0.74 0.14 0.74 +matriarche matriarche nom f s 0.09 0.00 0.09 0.00 +matrice matrice nom f s 2.16 2.03 2.00 1.96 +matrices matrice nom f p 2.16 2.03 0.16 0.07 +matricide matricide nom s 0.01 0.00 0.01 0.00 +matriciel matriciel adj m s 0.02 0.27 0.01 0.07 +matricielle matriciel adj f s 0.02 0.27 0.01 0.07 +matricielles matriciel adj f p 0.02 0.27 0.00 0.07 +matriciels matriciel adj m p 0.02 0.27 0.00 0.07 +matriculaire matriculaire nom s 0.00 0.07 0.00 0.07 +matricule matricule nom s 3.49 3.38 3.15 2.84 +matricules matricule nom p 3.49 3.38 0.34 0.54 +matrilinéaire matrilinéaire adj s 0.00 0.20 0.00 0.14 +matrilinéaires matrilinéaire adj f p 0.00 0.20 0.00 0.07 +matrilocales matrilocal adj f p 0.00 0.07 0.00 0.07 +matrimonial matrimonial adj m s 1.40 1.28 0.69 0.54 +matrimoniale matrimonial adj f s 1.40 1.28 0.17 0.47 +matrimoniales matrimonial adj f p 1.40 1.28 0.40 0.27 +matrimoniaux matrimonial adj m p 1.40 1.28 0.13 0.00 +matriochka matriochka nom f s 0.00 0.07 0.00 0.07 +matrone matrone nom f s 0.36 3.72 0.23 2.16 +matrones matrone nom f p 0.36 3.72 0.14 1.55 +mats mat nom m p 6.84 4.32 0.35 0.14 +matte matte nom f s 0.52 0.07 0.35 0.07 +matter matter ver 0.64 0.07 0.64 0.07 inf; +mattes matte nom f p 0.52 0.07 0.16 0.00 +matèrent mater ver 17.27 14.93 0.00 0.14 ind:pas:3p; +maté maté nom m s 1.62 0.20 1.62 0.14 +matuche matuche nom m s 0.00 0.41 0.00 0.41 +matée mater ver f s 17.27 14.93 0.20 0.07 par:pas; +matées mater ver f p 17.27 14.93 0.16 0.14 par:pas; +maturation maturation nom f s 0.07 0.68 0.07 0.54 +maturations maturation nom f p 0.07 0.68 0.00 0.14 +mature mature adj s 1.83 0.00 1.65 0.00 +maturer maturer ver 0.00 0.07 0.00 0.07 inf; +matures mature adj p 1.83 0.00 0.17 0.00 +matérialisa matérialiser ver 1.05 4.32 0.00 0.20 ind:pas:3s; +matérialisaient matérialiser ver 1.05 4.32 0.01 0.07 ind:imp:3p; +matérialisait matérialiser ver 1.05 4.32 0.01 0.47 ind:imp:3s; +matérialisant matérialiser ver 1.05 4.32 0.04 0.14 par:pre; +matérialisation matérialisation nom f s 0.17 0.54 0.15 0.54 +matérialisations matérialisation nom f p 0.17 0.54 0.02 0.00 +matérialise matérialiser ver 1.05 4.32 0.25 0.61 ind:pre:1s;ind:pre:3s; +matérialisent matérialiser ver 1.05 4.32 0.05 0.14 ind:pre:3p; +matérialiser matérialiser ver 1.05 4.32 0.34 0.74 inf; +matérialisera matérialiser ver 1.05 4.32 0.00 0.07 ind:fut:3s; +matérialiseront matérialiser ver 1.05 4.32 0.01 0.00 ind:fut:3p; +matérialisions matérialiser ver 1.05 4.32 0.00 0.07 ind:imp:1p; +matérialisme matérialisme nom m s 0.38 1.49 0.38 1.49 +matérialiste matérialiste adj s 0.82 0.88 0.65 0.61 +matérialistes matérialiste adj p 0.82 0.88 0.17 0.27 +matérialisèrent matérialiser ver 1.05 4.32 0.00 0.07 ind:pas:3p; +matérialisé matérialiser ver m s 1.05 4.32 0.17 0.34 par:pas; +matérialisée matérialiser ver f s 1.05 4.32 0.13 0.68 par:pas; +matérialisées matérialiser ver f p 1.05 4.32 0.01 0.27 par:pas; +matérialisés matérialiser ver m p 1.05 4.32 0.02 0.47 par:pas; +matérialité matérialité nom f s 0.01 0.47 0.01 0.47 +matériau matériau nom m s 3.78 5.14 0.95 1.62 +matériaux matériau nom m p 3.78 5.14 2.83 3.51 +matériel matériel nom m s 25.26 26.22 25.15 25.47 +matérielle matériel adj f s 5.54 16.89 1.17 5.14 +matériellement matériellement adv 0.31 3.04 0.31 3.04 +matérielles matériel adj f p 5.54 16.89 0.45 3.31 +matériels matériel adj m p 5.54 16.89 1.38 3.45 +maturité maturité nom f s 2.61 5.00 2.61 5.00 +matés mater ver m p 17.27 14.93 0.05 0.34 par:pas; +matutinal matutinal adj m s 0.00 0.34 0.00 0.07 +matutinale matutinal adj f s 0.00 0.34 0.00 0.14 +matutinales matutinal adj f p 0.00 0.34 0.00 0.07 +matutinaux matutinal adj m p 0.00 0.34 0.00 0.07 +maudira maudire ver 7.97 10.47 0.14 0.00 ind:fut:3s; +maudirai maudire ver 7.97 10.47 0.05 0.34 ind:fut:1s; +maudirais maudire ver 7.97 10.47 0.01 0.00 cnd:pre:2s; +maudirait maudire ver 7.97 10.47 0.21 0.07 cnd:pre:3s; +maudire maudire ver 7.97 10.47 1.65 2.64 inf; +maudirent maudire ver 7.97 10.47 0.00 0.07 ind:pas:3p; +maudirons maudire ver 7.97 10.47 0.01 0.00 ind:fut:1p; +maudiront maudire ver 7.97 10.47 0.02 0.00 ind:fut:3p; +maudis maudire ver m p 7.97 10.47 3.36 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +maudissaient maudire ver 7.97 10.47 0.01 0.20 ind:imp:3p; +maudissais maudire ver 7.97 10.47 0.04 0.47 ind:imp:1s;ind:imp:2s; +maudissait maudire ver 7.97 10.47 0.25 1.55 ind:imp:3s; +maudissant maudire ver 7.97 10.47 0.21 2.23 par:pre; +maudisse maudire ver 7.97 10.47 0.95 0.14 sub:pre:1s;sub:pre:3s; +maudissent maudire ver 7.97 10.47 0.26 0.20 ind:pre:3p; +maudissez maudire ver 7.97 10.47 0.20 0.14 imp:pre:2p;ind:pre:2p; +maudissions maudire ver 7.97 10.47 0.00 0.20 ind:imp:1p; +maudit maudit adj m s 37.18 17.50 17.59 7.43 +maudite maudit adj f s 37.18 17.50 12.65 5.47 +maudites maudit adj f p 37.18 17.50 1.71 1.42 +maudits maudit adj m p 37.18 17.50 5.23 3.18 +maugréa maugréer ver 0.29 5.41 0.00 1.15 ind:pas:3s; +maugréai maugréer ver 0.29 5.41 0.00 0.14 ind:pas:1s; +maugréaient maugréer ver 0.29 5.41 0.00 0.14 ind:imp:3p; +maugréait maugréer ver 0.29 5.41 0.00 0.61 ind:imp:3s; +maugréant maugréer ver 0.29 5.41 0.00 2.57 par:pre; +maugrée maugréer ver 0.29 5.41 0.27 0.27 imp:pre:2s;ind:pre:3s; +maugréer maugréer ver 0.29 5.41 0.03 0.54 inf; +maure maure adj s 1.11 0.81 0.90 0.41 +maures maure nom p 0.96 1.15 0.31 0.14 +mauresque mauresque adj s 0.12 2.91 0.12 2.09 +mauresques mauresque adj p 0.12 2.91 0.00 0.81 +mauricienne mauricien adj f s 0.00 0.07 0.00 0.07 +mauritanienne mauritanien adj f s 0.00 0.07 0.00 0.07 +maurrassien maurrassien nom m s 0.00 0.14 0.00 0.14 +maurrassisme maurrassisme nom m s 0.00 0.07 0.00 0.07 +mauser mauser nom m s 0.57 3.04 0.56 2.09 +mausers mauser nom m p 0.57 3.04 0.01 0.95 +mausolée mausolée nom m s 1.66 3.11 1.64 2.91 +mausolées mausolée nom m p 1.66 3.11 0.02 0.20 +maussade maussade adj s 1.09 7.97 1.04 6.82 +maussadement maussadement adv 0.00 0.27 0.00 0.27 +maussaderie maussaderie nom f s 0.00 0.34 0.00 0.27 +maussaderies maussaderie nom f p 0.00 0.34 0.00 0.07 +maussades maussade adj p 1.09 7.97 0.05 1.15 +mauvais mauvais adj m 252.69 200.61 138.04 108.65 +mauvaise mauvais adj f s 252.69 200.61 88.33 70.88 +mauvaisement mauvaisement adv 0.00 0.27 0.00 0.27 +mauvaises mauvais adj f p 252.69 200.61 26.32 21.08 +mauvaiseté mauvaiseté nom f s 0.00 0.20 0.00 0.20 +mauve mauve adj s 0.70 17.64 0.63 10.68 +mauves mauve adj p 0.70 17.64 0.07 6.96 +mauviette mauviette nom f s 4.86 0.88 3.49 0.61 +mauviettes mauviette nom f p 4.86 0.88 1.37 0.27 +maux mal nom_sup m p 326.58 193.92 8.31 8.78 +max max nom m s 5.94 2.30 5.94 2.30 +maxi maxi adj 1.71 0.27 1.71 0.27 +maxillaire maxillaire nom m s 0.27 1.76 0.25 0.54 +maxillaires maxillaire adj f p 0.08 0.14 0.05 0.07 +maxillo_facial maxillo_facial adj m s 0.01 0.00 0.01 0.00 +maxima maximum nom m p 14.79 15.81 0.22 0.41 +maximal maximal adj m s 3.04 0.61 0.34 0.20 +maximale maximal adj f s 3.04 0.61 2.53 0.41 +maximales maximal adj f p 3.04 0.61 0.16 0.00 +maximalise maximaliser ver 0.03 0.00 0.01 0.00 ind:pre:3s; +maximaliser maximaliser ver 0.03 0.00 0.02 0.00 inf; +maximalisme maximalisme nom m s 0.00 0.14 0.00 0.14 +maxime maxime nom f s 0.67 2.09 0.64 1.22 +maximes maxime nom f p 0.67 2.09 0.03 0.88 +maximisation maximisation nom f s 0.01 0.00 0.01 0.00 +maximiser maximiser ver 0.26 0.00 0.26 0.00 inf; +maximum maximum nom m s 14.79 15.81 14.55 15.34 +maximums maximum adj m p 5.80 1.96 0.04 0.00 +maxis maxi nom m p 0.58 0.95 0.04 0.00 +maxiton maxiton nom m s 0.00 0.14 0.00 0.14 +maya maya adj s 0.56 0.20 0.44 0.20 +mayas maya adj p 0.56 0.20 0.12 0.00 +mayo mayo nom f s 0.77 0.00 0.77 0.00 +mayonnaise mayonnaise nom f s 3.64 3.45 3.63 3.45 +mayonnaises mayonnaise nom f p 3.64 3.45 0.01 0.00 +mazagran mazagran nom m s 0.00 0.20 0.00 0.07 +mazagrans mazagran nom m p 0.00 0.20 0.00 0.14 +mazas mazer ver 0.01 0.27 0.00 0.07 ind:pas:2s; +mazdéens mazdéen adj m p 0.00 0.07 0.00 0.07 +maze mazer ver 0.01 0.27 0.01 0.14 imp:pre:2s;ind:pre:3s; +mazet mazet nom m s 0.00 0.41 0.00 0.41 +mazette mazette ono 0.32 0.81 0.32 0.81 +mazettes mazette nom_sup f p 0.02 0.07 0.01 0.00 +mazout mazout nom m s 1.42 2.64 1.42 2.64 +mazouté mazouter ver m s 0.00 0.07 0.00 0.07 par:pas; +mazoutés mazouté adj m p 0.00 0.14 0.00 0.14 +mazé mazer ver m s 0.01 0.27 0.00 0.07 par:pas; +mazurka mazurka nom f s 0.58 0.41 0.58 0.34 +mazurkas mazurka nom f p 0.58 0.41 0.00 0.07 +me me pro_per s 4929.44 4264.32 4929.44 4264.32 +mea_culpa mea_culpa nom m 0.07 0.14 0.07 0.14 +mea_culpa mea_culpa nom m 0.70 0.68 0.70 0.68 +mec mec nom m s 325.54 72.30 252.94 50.41 +meccano meccano nom m s 0.29 1.01 0.29 0.95 +meccanos meccano nom m p 0.29 1.01 0.00 0.07 +mechta mechta nom f s 0.00 0.34 0.00 0.14 +mechtas mechta nom f p 0.00 0.34 0.00 0.20 +mecklembourgeois mecklembourgeois nom m 0.00 0.07 0.00 0.07 +mecs mec nom m p 325.54 72.30 72.61 21.89 +mecton mecton nom m s 0.03 0.74 0.03 0.27 +mectons mecton nom m p 0.03 0.74 0.00 0.47 +media media nom f s 7.72 0.07 7.72 0.07 +medicine_ball medicine_ball nom m s 0.00 0.07 0.00 0.07 +medium medium nom m s 0.59 0.07 0.59 0.07 +meeting meeting nom m s 4.23 6.82 3.49 4.73 +meetings meeting nom m p 4.23 6.82 0.74 2.09 +meiji meiji adj m s 0.02 0.07 0.02 0.07 +meilleur meilleur adj m s 221.17 86.82 99.59 34.32 +meilleure meilleur adj f s 221.17 86.82 73.69 24.86 +meilleures meilleur adj f p 221.17 86.82 15.25 10.41 +meilleurs meilleur adj m p 221.17 86.82 32.64 17.23 +melba melba adj 0.03 0.20 0.03 0.20 +melkites melkite nom p 0.00 0.14 0.00 0.14 +melliflues melliflue adj f p 0.00 0.07 0.00 0.07 +mellifère mellifère adj s 0.00 0.07 0.00 0.07 +mellifères mellifère nom m p 0.00 0.07 0.00 0.07 +melon melon nom m s 7.11 6.96 4.92 5.20 +melons melon nom m p 7.11 6.96 2.19 1.76 +melting_pot melting_pot nom m s 0.14 0.07 0.13 0.00 +melting_pot melting_pot nom m s 0.14 0.07 0.01 0.07 +membranaire membranaire adj f s 0.01 0.00 0.01 0.00 +membrane membrane nom f s 1.23 2.97 0.89 1.69 +membranes membrane nom f p 1.23 2.97 0.34 1.28 +membraneuse membraneux adj f s 0.01 0.34 0.00 0.07 +membraneuses membraneux adj f p 0.01 0.34 0.01 0.14 +membraneux membraneux adj m 0.01 0.34 0.00 0.14 +membre membre nom m s 56.06 64.86 26.72 15.20 +membres membre nom m p 56.06 64.86 29.34 49.66 +membré membré adj m s 0.05 0.07 0.05 0.07 +membrues membru adj f p 0.00 0.07 0.00 0.07 +membrure membrure nom f s 0.03 0.61 0.02 0.34 +membrures membrure nom f p 0.03 0.61 0.01 0.27 +mena mener ver 99.86 137.70 0.40 3.85 ind:pas:3s; +menace menace nom f s 30.36 44.12 21.07 26.01 +menacent menacer ver 49.61 52.57 2.46 2.50 ind:pre:3p; +menacer menacer ver 49.61 52.57 5.33 5.34 inf; +menacera menacer ver 49.61 52.57 0.09 0.07 ind:fut:3s; +menaceraient menacer ver 49.61 52.57 0.04 0.00 cnd:pre:3p; +menacerait menacer ver 49.61 52.57 0.10 0.27 cnd:pre:3s; +menaceras menacer ver 49.61 52.57 0.01 0.00 ind:fut:2s; +menaceriez menacer ver 49.61 52.57 0.03 0.00 cnd:pre:2p; +menaceront menacer ver 49.61 52.57 0.15 0.14 ind:fut:3p; +menaces menace nom f p 30.36 44.12 9.28 18.11 +menacez menacer ver 49.61 52.57 1.41 0.20 imp:pre:2p;ind:pre:2p; +menaciez menacer ver 49.61 52.57 0.25 0.00 ind:imp:2p; +menacions menacer ver 49.61 52.57 0.01 0.07 ind:imp:1p; +menacèrent menacer ver 49.61 52.57 0.01 0.20 ind:pas:3p; +menacé menacer ver m s 49.61 52.57 14.44 7.84 par:pas; +menacée menacer ver f s 49.61 52.57 4.83 4.05 par:pas; +menacées menacer ver f p 49.61 52.57 0.50 0.95 par:pas; +menacés menacer ver m p 49.61 52.57 1.44 2.30 par:pas; +menai mener ver 99.86 137.70 0.02 0.20 ind:pas:1s; +menaient mener ver 99.86 137.70 0.49 6.96 ind:imp:3p; +menais mener ver 99.86 137.70 0.70 2.30 ind:imp:1s;ind:imp:2s; +menait mener ver 99.86 137.70 2.56 24.80 ind:imp:3s; +menant mener ver 99.86 137.70 1.68 7.03 par:pre; +menassent mener ver 99.86 137.70 0.00 0.07 sub:imp:3p; +menaça menacer ver 49.61 52.57 0.16 1.82 ind:pas:3s; +menaçaient menacer ver 49.61 52.57 1.07 3.04 ind:imp:3p; +menaçais menacer ver 49.61 52.57 0.34 0.34 ind:imp:1s;ind:imp:2s; +menaçait menacer ver 49.61 52.57 2.95 10.07 ind:imp:3s; +menaçant menaçant adj m s 3.56 16.69 1.76 7.09 +menaçante menaçant adj f s 3.56 16.69 1.33 5.61 +menaçantes menaçant adj f p 3.56 16.69 0.06 1.28 +menaçants menaçant adj m p 3.56 16.69 0.41 2.70 +menaçons menacer ver 49.61 52.57 0.19 0.00 ind:pre:1p; +menaçât menacer ver 49.61 52.57 0.01 0.07 sub:imp:3s; +mencheviks menchevik nom p 0.00 0.07 0.00 0.07 +mendia mendier ver 4.07 6.49 0.01 0.00 ind:pas:3s; +mendiaient mendier ver 4.07 6.49 0.01 0.34 ind:imp:3p; +mendiais mendier ver 4.07 6.49 0.27 0.07 ind:imp:1s;ind:imp:2s; +mendiait mendier ver 4.07 6.49 0.24 0.68 ind:imp:3s; +mendiant mendiant nom m s 6.86 11.76 3.44 5.20 +mendiante mendiant nom f s 6.86 11.76 0.34 0.95 +mendiantes mendiant nom f p 6.86 11.76 0.00 0.14 +mendiants mendiant nom m p 6.86 11.76 3.07 5.47 +mendicité mendicité nom f s 0.44 0.95 0.44 0.88 +mendicités mendicité nom f p 0.44 0.95 0.00 0.07 +mendie mendier ver 4.07 6.49 0.61 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mendient mendier ver 4.07 6.49 0.23 0.14 ind:pre:3p; +mendier mendier ver 4.07 6.49 2.07 3.11 inf; +mendierait mendier ver 4.07 6.49 0.00 0.07 cnd:pre:3s; +mendieras mendier ver 4.07 6.49 0.00 0.07 ind:fut:2s; +mendies mendier ver 4.07 6.49 0.01 0.00 ind:pre:2s; +mendiez mendier ver 4.07 6.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +mendigot mendigot nom m s 0.30 0.81 0.30 0.07 +mendigotant mendigoter ver 0.00 0.14 0.00 0.07 par:pre; +mendigote mendigot nom f s 0.30 0.81 0.00 0.07 +mendigoter mendigoter ver 0.00 0.14 0.00 0.07 inf; +mendigots mendigot nom m p 0.30 0.81 0.00 0.68 +mendions mendier ver 4.07 6.49 0.10 0.07 ind:pre:1p; +mendié mendier ver m s 4.07 6.49 0.10 0.34 par:pas; +mendiée mendier ver f s 4.07 6.49 0.00 0.07 par:pas; +mendiées mendier ver f p 4.07 6.49 0.00 0.07 par:pas; +mendé mendé adj s 0.01 0.00 0.01 0.00 +meneau meneau nom m s 2.18 0.54 0.00 0.07 +meneaux meneau nom m p 2.18 0.54 2.18 0.47 +mener mener ver 99.86 137.70 22.45 29.53 inf;; +meneur meneur nom m s 2.94 3.51 1.67 2.03 +meneurs meneur nom m p 2.94 3.51 0.69 1.35 +meneuse meneur nom f s 2.94 3.51 0.59 0.14 +menez mener ver 99.86 137.70 2.96 0.41 imp:pre:2p;ind:pre:2p; +menhaden menhaden nom m s 0.01 0.00 0.01 0.00 +menhir menhir nom m s 0.41 0.68 0.41 0.20 +menhirs menhir nom m p 0.41 0.68 0.00 0.47 +meniez mener ver 99.86 137.70 0.22 0.00 ind:imp:2p;sub:pre:2p; +menions mener ver 99.86 137.70 0.06 0.88 ind:imp:1p; +mennonite mennonite nom m s 0.09 0.14 0.04 0.07 +mennonites mennonite nom m p 0.09 0.14 0.05 0.07 +menon menon nom m s 0.03 0.07 0.02 0.00 +menons mener ver 99.86 137.70 1.20 0.81 imp:pre:1p;ind:pre:1p; +menora menora nom f s 0.03 0.00 0.03 0.00 +menât mener ver 99.86 137.70 0.00 0.20 sub:imp:3s; +menotte menotte nom f s 11.65 7.84 0.78 0.61 +menotter menotter ver 2.65 0.27 0.31 0.00 inf; +menottes menotte nom f p 11.65 7.84 10.88 7.23 +menottez menotter ver 2.65 0.27 0.83 0.00 imp:pre:2p;ind:pre:2p; +menotté menotter ver m s 2.65 0.27 1.06 0.27 par:pas; +menottée menotter ver f s 2.65 0.27 0.28 0.00 par:pas; +menottés menotter ver m p 2.65 0.27 0.17 0.00 par:pas; +mens mentir ver 185.16 52.03 42.12 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mensonge mensonge nom m s 61.05 35.41 33.64 21.89 +mensonger mensonger adj m s 1.29 1.96 0.29 0.47 +mensongers mensonger adj m p 1.29 1.96 0.14 0.14 +mensonges mensonge nom m p 61.05 35.41 27.41 13.51 +mensongère mensonger adj f s 1.29 1.96 0.48 0.81 +mensongèrement mensongèrement adv 0.00 0.20 0.00 0.20 +mensongères mensonger adj f p 1.29 1.96 0.38 0.54 +menstruation menstruation nom f s 0.40 0.00 0.28 0.00 +menstruations menstruation nom f p 0.40 0.00 0.13 0.00 +menstruel menstruel adj m s 0.29 0.54 0.22 0.27 +menstruelle menstruel adj f s 0.29 0.54 0.01 0.07 +menstruelles menstruel adj f p 0.29 0.54 0.02 0.14 +menstruels menstruel adj m p 0.29 0.54 0.04 0.07 +menstrues menstrue nom f p 0.00 0.14 0.00 0.14 +mensualité mensualité nom f s 0.72 1.01 0.15 0.81 +mensualités mensualité nom f p 0.72 1.01 0.56 0.20 +mensuel mensuel adj m s 2.13 2.50 0.73 0.81 +mensuelle mensuel adj f s 2.13 2.50 0.87 0.88 +mensuellement mensuellement adv 0.01 0.14 0.01 0.14 +mensuelles mensuel adj f p 2.13 2.50 0.23 0.34 +mensuels mensuel adj m p 2.13 2.50 0.30 0.47 +mensuration mensuration nom f s 0.58 1.42 0.00 0.20 +mensurations mensuration nom f p 0.58 1.42 0.58 1.22 +ment mentir ver 185.16 52.03 24.08 5.81 ind:pre:3s; +mentît mentir ver 185.16 52.03 0.00 0.14 sub:imp:3s; +mentaient mentir ver 185.16 52.03 0.44 0.88 ind:imp:3p; +mentais mentir ver 185.16 52.03 3.64 1.55 ind:imp:1s;ind:imp:2s; +mentait mentir ver 185.16 52.03 2.54 5.88 ind:imp:3s; +mental mental adj m s 18.15 11.35 5.84 4.05 +mentale mental adj f s 18.15 11.35 6.92 4.80 +mentalement mentalement adv 4.37 6.42 4.37 6.42 +mentales mental adj f p 18.15 11.35 1.68 1.01 +mentaliser mentaliser ver 0.00 0.07 0.00 0.07 inf; +mentalité mentalité nom f s 2.79 5.95 2.15 5.27 +mentalités mentalité nom f p 2.79 5.95 0.64 0.68 +mentant mentir ver 185.16 52.03 0.72 0.54 par:pre; +mentaux mental adj m p 18.15 11.35 3.71 1.49 +mente mentir ver 185.16 52.03 1.94 0.41 sub:pre:1s;sub:pre:3s; +mentent mentir ver 185.16 52.03 5.57 1.15 ind:pre:3p; +menterie menterie nom f s 0.12 0.74 0.10 0.14 +menteries menterie nom f p 0.12 0.74 0.02 0.61 +mentes mentir ver 185.16 52.03 0.32 0.00 sub:pre:2s; +menteur menteur nom m s 36.31 5.34 23.57 3.38 +menteurs menteur nom m p 36.31 5.34 4.46 1.01 +menteuse menteur nom f s 36.31 5.34 8.28 0.95 +menteuses menteur adj f p 8.49 4.80 0.36 0.27 +mentez mentir ver 185.16 52.03 10.29 1.22 imp:pre:2p;ind:pre:2p; +menthe menthe nom f s 5.51 9.53 5.21 9.39 +menthes menthe nom f p 5.51 9.53 0.30 0.14 +menthol menthol nom m s 0.44 0.41 0.36 0.34 +menthols menthol nom m p 0.44 0.41 0.08 0.07 +mentholé mentholé adj m s 0.19 0.34 0.04 0.00 +mentholée mentholé adj f s 0.19 0.34 0.10 0.20 +mentholées mentholé adj f p 0.19 0.34 0.04 0.14 +mentholés mentholé nom m p 0.03 0.00 0.01 0.00 +menèrent mener ver 99.86 137.70 0.09 0.88 ind:pas:3p; +menti mentir ver m s 185.16 52.03 47.32 9.59 par:pas; +mentiez mentir ver 185.16 52.03 0.61 0.20 ind:imp:2p; +mention mention nom f s 4.27 6.01 4.03 5.54 +mentionna mentionner ver 15.61 9.32 0.10 0.61 ind:pas:3s; +mentionnai mentionner ver 15.61 9.32 0.00 0.07 ind:pas:1s; +mentionnaient mentionner ver 15.61 9.32 0.03 0.47 ind:imp:3p; +mentionnais mentionner ver 15.61 9.32 0.10 0.07 ind:imp:1s;ind:imp:2s; +mentionnait mentionner ver 15.61 9.32 0.33 1.01 ind:imp:3s; +mentionnant mentionner ver 15.61 9.32 0.05 0.47 par:pre; +mentionne mentionner ver 15.61 9.32 2.33 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mentionnent mentionner ver 15.61 9.32 0.64 0.27 ind:pre:3p; +mentionner mentionner ver 15.61 9.32 2.86 2.03 inf; +mentionnerai mentionner ver 15.61 9.32 0.11 0.14 ind:fut:1s; +mentionnerais mentionner ver 15.61 9.32 0.01 0.07 cnd:pre:1s; +mentionnerait mentionner ver 15.61 9.32 0.14 0.00 cnd:pre:3s; +mentionneras mentionner ver 15.61 9.32 0.02 0.00 ind:fut:2s; +mentionnerez mentionner ver 15.61 9.32 0.04 0.00 ind:fut:2p; +mentionnes mentionner ver 15.61 9.32 0.14 0.00 ind:pre:2s; +mentionnez mentionner ver 15.61 9.32 0.70 0.00 imp:pre:2p;ind:pre:2p; +mentionniez mentionner ver 15.61 9.32 0.07 0.00 ind:imp:2p; +mentionnons mentionner ver 15.61 9.32 0.11 0.07 imp:pre:1p; +mentionnât mentionner ver 15.61 9.32 0.01 0.00 sub:imp:3s; +mentionné mentionner ver m s 15.61 9.32 6.56 2.36 par:pas; +mentionnée mentionner ver f s 15.61 9.32 0.42 0.61 par:pas; +mentionnées mentionner ver f p 15.61 9.32 0.39 0.34 par:pas; +mentionnés mentionner ver m p 15.61 9.32 0.45 0.20 par:pas; +mentions mention nom f p 4.27 6.01 0.24 0.47 +mentir mentir ver 185.16 52.03 37.01 15.20 inf; +mentira mentir ver 185.16 52.03 0.51 0.07 ind:fut:3s; +mentirai mentir ver 185.16 52.03 1.60 0.14 ind:fut:1s; +mentiraient mentir ver 185.16 52.03 0.30 0.14 cnd:pre:3p; +mentirais mentir ver 185.16 52.03 3.47 1.35 cnd:pre:1s;cnd:pre:2s; +mentirait mentir ver 185.16 52.03 1.55 0.07 cnd:pre:3s; +mentiras mentir ver 185.16 52.03 0.24 0.07 ind:fut:2s; +mentirez mentir ver 185.16 52.03 0.05 0.00 ind:fut:2p; +mentiriez mentir ver 185.16 52.03 0.19 0.00 cnd:pre:2p; +mentirons mentir ver 185.16 52.03 0.04 0.07 ind:fut:1p; +mentiront mentir ver 185.16 52.03 0.05 0.00 ind:fut:3p; +mentis mentir ver 185.16 52.03 0.25 0.47 ind:pas:1s; +mentissent mentir ver 185.16 52.03 0.00 0.07 sub:imp:3p; +mentit mentir ver 185.16 52.03 0.06 1.01 ind:pas:3s; +menton menton nom m s 6.58 60.00 6.45 58.65 +mentonnet mentonnet nom m s 0.00 0.07 0.00 0.07 +mentonnier mentonnier adj m s 0.00 0.14 0.00 0.07 +mentonnière mentonnier nom f s 0.00 0.34 0.00 0.34 +mentons mentir ver 185.16 52.03 0.24 0.14 imp:pre:1p;ind:pre:1p; +mentor mentor nom m s 1.72 0.74 1.62 0.61 +mentors mentor nom m p 1.72 0.74 0.10 0.14 +mentule mentule nom f s 0.00 0.07 0.00 0.07 +mené mener ver m s 99.86 137.70 10.41 10.07 par:pas; +menu menu nom m s 11.15 14.53 9.87 12.03 +menée mener ver f s 99.86 137.70 3.89 8.65 par:pas; +menue menu adj f s 2.29 27.77 0.69 5.68 +menées mener ver f p 99.86 137.70 0.82 2.57 par:pas; +menues menu adj f p 2.29 27.77 0.19 4.32 +menuet menuet nom m s 0.75 0.95 0.62 0.81 +menuets menuet nom m p 0.75 0.95 0.14 0.14 +menuise menuise nom f s 0.14 0.00 0.14 0.00 +menuiser menuiser ver 0.00 0.14 0.00 0.07 inf; +menuisera menuiser ver 0.00 0.14 0.00 0.07 ind:fut:3s; +menuiserie menuiserie nom f s 0.46 1.22 0.46 1.22 +menuisier menuisier nom m s 3.54 4.46 2.88 4.05 +menuisiers menuisier nom m p 3.54 4.46 0.65 0.41 +menés mener ver m p 99.86 137.70 2.51 2.97 par:pas; +menus menu nom m p 11.15 14.53 1.28 2.50 +mer_air mer_air adj f s 0.01 0.00 0.01 0.00 +mer mer nom f s 106.61 257.57 99.49 246.55 +mercanti mercanti nom m s 0.27 0.20 0.14 0.14 +mercantile mercantile adj s 0.10 0.95 0.10 0.54 +mercantiles mercantile adj p 0.10 0.95 0.00 0.41 +mercantilisme mercantilisme nom m s 0.04 0.14 0.04 0.14 +mercantis mercanti nom m p 0.27 0.20 0.14 0.07 +mercaptan mercaptan nom m s 0.01 0.00 0.01 0.00 +mercenaire mercenaire nom s 2.87 2.30 1.33 0.54 +mercenaires mercenaire nom p 2.87 2.30 1.54 1.76 +mercerie mercerie nom f s 0.94 9.32 0.94 8.99 +merceries mercerie nom f p 0.94 9.32 0.00 0.34 +mercerisé merceriser ver m s 0.02 0.27 0.02 0.27 par:pas; +merchandising merchandising nom m s 0.16 0.00 0.16 0.00 +merci merci ono 936.01 42.36 936.01 42.36 +mercier mercier nom m s 0.14 4.26 0.14 0.34 +merciers mercier nom m p 0.14 4.26 0.00 0.14 +mercis merci nom m p 379.38 53.51 0.94 0.27 +mercière mercière nom f s 0.01 0.00 0.01 0.00 +mercières mercier nom f p 0.14 4.26 0.00 0.07 +mercredi mercredi nom m s 21.48 12.64 20.38 11.82 +mercredis mercredi nom m p 21.48 12.64 1.11 0.81 +mercure mercure nom m s 1.13 1.76 1.13 1.76 +mercurey mercurey nom m s 0.00 0.27 0.00 0.27 +mercuriale mercuriale nom f s 0.00 0.14 0.00 0.07 +mercuriales mercuriale nom f p 0.00 0.14 0.00 0.07 +mercurochrome mercurochrome nom m s 0.07 1.22 0.07 1.22 +merda merder ver 16.50 3.58 0.42 0.00 ind:pas:3s; +merdait merder ver 16.50 3.58 0.19 0.00 ind:imp:3s; +merdasse merdasse ono 0.02 0.07 0.02 0.07 +merde merde ono 221.46 33.85 221.46 33.85 +merdent merder ver 16.50 3.58 0.08 0.00 ind:pre:3p; +merder merder ver 16.50 3.58 0.89 0.00 inf; +merderai merder ver 16.50 3.58 0.02 0.00 ind:fut:1s; +merdes merde nom f p 213.05 62.77 6.37 1.49 +merdeuse merdeux adj f s 3.56 2.57 0.82 0.54 +merdeuses merdeux adj f p 3.56 2.57 0.01 0.54 +merdeux merdeux nom m 5.22 1.82 5.22 1.82 +merdez merder ver 16.50 3.58 0.16 0.00 imp:pre:2p;ind:pre:2p; +merdier merdier nom m s 5.34 1.96 5.33 1.89 +merdiers merdier nom m p 5.34 1.96 0.01 0.07 +merdique merdique adj s 7.82 2.16 6.53 1.42 +merdiques merdique adj p 7.82 2.16 1.29 0.74 +merdoie merdoyer ver 0.00 0.20 0.00 0.14 imp:pre:2s; +merdouille merdouille nom f s 0.20 0.34 0.20 0.34 +merdouillé merdouiller ver m s 0.01 0.00 0.01 0.00 par:pas; +merdoyait merdoyer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +merdre merdre ono 0.04 0.07 0.04 0.07 +merdé merder ver m s 16.50 3.58 9.14 0.20 par:pas; +merdée merder ver f s 16.50 3.58 0.04 0.07 par:pas; +merguez merguez nom f 0.70 2.16 0.70 2.16 +meringue meringue nom f s 0.51 1.35 0.47 0.81 +meringues meringue nom f p 0.51 1.35 0.04 0.54 +meringué meringuer ver m s 0.20 0.27 0.01 0.07 par:pas; +meringuée meringuer ver f s 0.20 0.27 0.20 0.14 par:pas; +meringuées meringuer ver f p 0.20 0.27 0.00 0.07 par:pas; +merise merise nom f s 0.01 0.07 0.01 0.00 +merises merise nom f p 0.01 0.07 0.00 0.07 +merisier merisier nom m s 0.13 1.15 0.13 0.81 +merisiers merisier nom m p 0.13 1.15 0.00 0.34 +merl merl nom m s 0.26 0.00 0.26 0.00 +merlan merlan nom m s 1.81 3.78 1.76 3.45 +merlans merlan nom m p 1.81 3.78 0.05 0.34 +merle merle nom m s 2.24 4.19 1.80 2.64 +merleau merleau nom m s 0.00 0.07 0.00 0.07 +merles merle nom m p 2.24 4.19 0.45 1.55 +merlette merlette nom f s 0.00 0.20 0.00 0.20 +merlin merlin nom m s 0.02 0.20 0.02 0.20 +merlot merlot nom m s 1.90 0.00 1.90 0.00 +merlu merlu nom m s 0.01 0.14 0.01 0.14 +merluche merluche nom f s 0.01 0.27 0.01 0.20 +merluches merluche nom f p 0.01 0.27 0.00 0.07 +merrain merrain nom m s 0.00 0.61 0.00 0.41 +merrains merrain nom m p 0.00 0.61 0.00 0.20 +mers mer nom f p 106.61 257.57 7.12 11.01 +merveille merveille nom f s 21.16 33.31 15.64 22.50 +merveilles merveille nom f p 21.16 33.31 5.52 10.81 +merveilleuse merveilleux adj f s 79.25 40.34 20.93 14.80 +merveilleusement merveilleusement adv 3.63 7.03 3.63 7.03 +merveilleuses merveilleux adj f p 79.25 40.34 3.88 4.26 +merveilleux merveilleux adj m 79.25 40.34 54.44 21.28 +merveillosité merveillosité nom f s 0.01 0.00 0.01 0.00 +mes mes adj_pos 1102.23 1023.11 1102.23 1023.11 +mesa mesa nom f s 0.51 0.07 0.51 0.07 +mescal mescal nom m s 0.26 0.00 0.26 0.00 +mescaline mescaline nom f s 0.25 0.07 0.25 0.07 +mesclun mesclun nom m s 0.05 0.00 0.05 0.00 +mesdames madame nom_sup f p 307.36 203.45 58.03 4.73 +mesdemoiselles mesdemoiselles nom f p 7.36 0.74 7.36 0.74 +mesmérisme mesmérisme nom m s 0.04 0.00 0.04 0.00 +mesnils mesnil nom m p 0.00 0.07 0.00 0.07 +mesquin mesquin adj m s 2.93 6.96 1.64 2.91 +mesquine mesquin adj f s 2.93 6.96 0.74 1.62 +mesquinement mesquinement adv 0.00 0.14 0.00 0.14 +mesquinerie mesquinerie nom f s 0.51 1.96 0.20 1.42 +mesquineries mesquinerie nom f p 0.51 1.96 0.31 0.54 +mesquines mesquin adj f p 2.93 6.96 0.21 1.35 +mesquins mesquin adj m p 2.93 6.96 0.34 1.08 +mess mess nom m 1.74 2.57 1.74 2.57 +message message nom m s 117.11 42.57 99.70 31.15 +messager messager nom m s 10.87 6.28 9.60 3.38 +messagerie messagerie nom f s 1.05 0.68 1.02 0.14 +messageries messagerie nom f p 1.05 0.68 0.03 0.54 +messagers messager nom m p 10.87 6.28 1.06 2.09 +messages message nom m p 117.11 42.57 17.41 11.42 +messagère messager nom f s 10.87 6.28 0.21 0.61 +messagères messager nom f p 10.87 6.28 0.00 0.20 +messaliste messaliste adj s 0.00 0.20 0.00 0.20 +messalistes messaliste nom p 0.00 0.20 0.00 0.14 +messe messe nom f s 18.36 35.68 16.14 32.70 +messeigneurs messeigneurs nom m p 0.50 0.14 0.50 0.14 +messer messer nom m s 1.50 0.95 1.50 0.95 +messes messe nom f p 18.36 35.68 2.22 2.97 +messianique messianique adj s 0.05 0.27 0.03 0.20 +messianiques messianique adj f p 0.05 0.27 0.02 0.07 +messianisme messianisme nom m s 0.00 0.07 0.00 0.07 +messidor messidor nom m s 0.00 0.07 0.00 0.07 +messie messie nom m s 0.69 0.54 0.61 0.54 +messies messie nom m p 0.69 0.54 0.08 0.00 +messieurs_dames messieurs_dames nom m p 0.48 0.68 0.48 0.68 +messieurs monsieur nom_sup m p 739.12 324.86 155.66 38.11 +messine messin adj f s 0.02 0.07 0.02 0.07 +messire messire nom m s 5.69 0.47 5.21 0.41 +messires messire nom m p 5.69 0.47 0.48 0.07 +messéance messéance nom f s 0.00 0.07 0.00 0.07 +mestre mestre nom m s 0.01 0.00 0.01 0.00 +mesura mesurer ver 19.65 47.30 0.01 1.76 ind:pas:3s; +mesurable mesurable adj s 0.22 0.95 0.19 0.74 +mesurables mesurable adj f p 0.22 0.95 0.02 0.20 +mesurai mesurer ver 19.65 47.30 0.00 0.54 ind:pas:1s; +mesuraient mesurer ver 19.65 47.30 0.16 0.95 ind:imp:3p; +mesurais mesurer ver 19.65 47.30 0.35 1.82 ind:imp:1s;ind:imp:2s; +mesurait mesurer ver 19.65 47.30 0.79 4.53 ind:imp:3s; +mesurant mesurer ver 19.65 47.30 0.42 2.23 par:pre; +mesurassent mesurer ver 19.65 47.30 0.00 0.07 sub:imp:3p; +mesure mesure nom f s 32.15 132.84 21.02 112.16 +mesurent mesurer ver 19.65 47.30 1.01 1.08 ind:pre:3p; +mesurer mesurer ver 19.65 47.30 6.63 16.35 inf; +mesurera mesurer ver 19.65 47.30 0.37 0.20 ind:fut:3s; +mesurerait mesurer ver 19.65 47.30 0.06 0.00 cnd:pre:3s; +mesurerez mesurer ver 19.65 47.30 0.00 0.07 ind:fut:2p; +mesurerons mesurer ver 19.65 47.30 0.00 0.07 ind:fut:1p; +mesureront mesurer ver 19.65 47.30 0.07 0.00 ind:fut:3p; +mesures mesure nom f p 32.15 132.84 11.14 20.68 +mesurette mesurette nom f s 0.01 0.00 0.01 0.00 +mesureur mesureur nom m s 0.01 0.27 0.01 0.27 +mesurez mesurer ver 19.65 47.30 0.91 0.34 imp:pre:2p;ind:pre:2p; +mesuriez mesurer ver 19.65 47.30 0.03 0.07 ind:imp:2p; +mesurions mesurer ver 19.65 47.30 0.10 0.20 ind:imp:1p; +mesurons mesurer ver 19.65 47.30 0.11 0.00 imp:pre:1p; +mesurât mesurer ver 19.65 47.30 0.00 0.14 sub:imp:3s; +mesurèrent mesurer ver 19.65 47.30 0.00 0.20 ind:pas:3p; +mesuré mesurer ver m s 19.65 47.30 1.81 4.05 par:pas; +mesurée mesurer ver f s 19.65 47.30 0.19 1.35 par:pas; +mesurées mesurer ver f p 19.65 47.30 0.23 0.27 par:pas; +mesurés mesurer ver m p 19.65 47.30 0.03 0.54 par:pas; +met mettre ver 1004.84 1083.65 89.25 86.69 ind:pre:3s; +mets_la_toi mets_la_toi nom m 0.01 0.00 0.01 0.00 +mets mettre ver 1004.84 1083.65 151.83 33.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mettable mettable adj s 0.02 0.14 0.02 0.14 +mettaient mettre ver 1004.84 1083.65 1.81 19.39 ind:imp:3p; +mettais mettre ver 1004.84 1083.65 5.16 9.46 ind:imp:1s;ind:imp:2s; +mettait mettre ver 1004.84 1083.65 10.14 75.54 ind:imp:3s; +mettant mettre ver 1004.84 1083.65 5.61 20.41 par:pre; +mette mettre ver 1004.84 1083.65 16.36 12.97 sub:pre:1s;sub:pre:3s; +mettent mettre ver 1004.84 1083.65 17.98 23.24 ind:pre:3p;sub:pre:3p; +mettes mettre ver 1004.84 1083.65 3.34 1.08 sub:pre:2s; +metteur metteur nom m s 5.50 7.70 5.24 6.01 +metteurs metteur nom m p 5.50 7.70 0.25 1.69 +metteuse metteur nom f s 5.50 7.70 0.01 0.00 +mettez mettre ver 1004.84 1083.65 85.44 9.86 imp:pre:2p;ind:pre:2p; +mettiez mettre ver 1004.84 1083.65 2.17 0.74 ind:imp:2p; +mettions mettre ver 1004.84 1083.65 0.27 2.16 ind:imp:1p; +mettons mettre ver 1004.84 1083.65 15.80 9.32 imp:pre:1p;ind:pre:1p; +mettra mettre ver 1004.84 1083.65 15.12 7.50 ind:fut:3s; +mettrai mettre ver 1004.84 1083.65 12.42 4.59 ind:fut:1s; +mettraient mettre ver 1004.84 1083.65 1.01 2.23 cnd:pre:3p; +mettrais mettre ver 1004.84 1083.65 5.11 2.91 cnd:pre:1s;cnd:pre:2s; +mettrait mettre ver 1004.84 1083.65 4.91 7.64 cnd:pre:3s; +mettras mettre ver 1004.84 1083.65 4.67 1.35 ind:fut:2s; +mettre mettre ver 1004.84 1083.65 271.05 230.20 inf;;inf;;inf;;inf;; +mettrez mettre ver 1004.84 1083.65 2.03 1.22 ind:fut:2p; +mettriez mettre ver 1004.84 1083.65 0.87 0.14 cnd:pre:2p; +mettrions mettre ver 1004.84 1083.65 0.05 0.20 cnd:pre:1p; +mettrons mettre ver 1004.84 1083.65 2.00 0.81 ind:fut:1p; +mettront mettre ver 1004.84 1083.65 2.31 1.01 ind:fut:3p; +meubla meubler ver 0.54 10.61 0.00 0.07 ind:pas:3s; +meublaient meubler ver 0.54 10.61 0.00 0.20 ind:imp:3p; +meublais meubler ver 0.54 10.61 0.00 0.07 ind:imp:1s; +meublait meubler ver 0.54 10.61 0.01 0.47 ind:imp:3s; +meublant meubler ver 0.54 10.61 0.00 0.14 par:pre; +meuble meuble nom m s 19.48 53.99 2.46 11.76 +meublent meubler ver 0.54 10.61 0.00 0.27 ind:pre:3p; +meubler meubler ver 0.54 10.61 0.38 3.85 inf; +meubles meuble nom m p 19.48 53.99 17.01 42.23 +meublèrent meubler ver 0.54 10.61 0.00 0.07 ind:pas:3p; +meublé meublé adj m s 0.90 4.53 0.65 2.16 +meublée meublé adj f s 0.90 4.53 0.23 1.08 +meublées meublé adj f p 0.90 4.53 0.00 0.68 +meublés meublé adj m p 0.90 4.53 0.02 0.61 +meuf meuf nom f s 8.29 2.57 6.22 2.30 +meufs meuf nom f p 8.29 2.57 2.08 0.27 +meugla meugler ver 0.28 1.08 0.00 0.20 ind:pas:3s; +meuglaient meugler ver 0.28 1.08 0.00 0.34 ind:imp:3p; +meuglait meugler ver 0.28 1.08 0.02 0.07 ind:imp:3s; +meuglant meugler ver 0.28 1.08 0.00 0.14 par:pre; +meugle meugler ver 0.28 1.08 0.12 0.07 ind:pre:3s; +meuglement meuglement nom m s 0.56 1.35 0.03 0.61 +meuglements meuglement nom m p 0.56 1.35 0.54 0.74 +meugler meugler ver 0.28 1.08 0.13 0.27 inf; +meuglé meugler ver m s 0.28 1.08 0.01 0.00 par:pas; +meuh meuh ono 0.78 0.14 0.78 0.14 +meulage meulage nom m s 0.01 0.00 0.01 0.00 +meule meule nom f s 1.39 8.38 1.17 4.73 +meuler meuler ver 0.06 0.27 0.02 0.14 inf; +meules meule nom f p 1.39 8.38 0.22 3.65 +meuleuse meuleuse nom f s 0.01 0.07 0.01 0.07 +meulez meuler ver 0.06 0.27 0.01 0.00 ind:pre:2p; +meulière meulier nom f s 0.00 0.81 0.00 0.68 +meulières meulier nom f p 0.00 0.81 0.00 0.14 +meunier meunier nom m s 0.96 0.95 0.76 0.74 +meuniers meunier nom m p 0.96 0.95 0.17 0.14 +meunière meunier adj f s 0.44 0.41 0.23 0.14 +meure mourir ver 916.42 391.08 14.97 5.54 sub:pre:1s;sub:pre:3s; +meurent mourir ver 916.42 391.08 19.13 10.47 ind:pre:3p; +meures mourir ver 916.42 391.08 1.88 0.14 sub:pre:2s; +meurette meurette nom f s 0.00 0.34 0.00 0.34 +meurs mourir ver 916.42 391.08 43.90 5.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +meursault meursault nom m s 0.00 0.20 0.00 0.20 +meurt mourir ver 916.42 391.08 44.29 20.41 ind:pre:3s; +meurtre_suicide meurtre_suicide nom m s 0.04 0.00 0.04 0.00 +meurtre meurtre nom m s 104.45 15.47 81.94 12.30 +meurtres meurtre nom m p 104.45 15.47 22.51 3.18 +meurtri meurtrir ver m s 0.80 6.35 0.34 1.35 par:pas; +meurtrie meurtri adj f s 0.66 5.00 0.32 1.76 +meurtrier meurtrier nom m s 24.42 4.59 19.57 1.69 +meurtriers meurtrier nom m p 24.42 4.59 2.48 0.54 +meurtries meurtri adj f p 0.66 5.00 0.03 0.74 +meurtrir meurtrir ver 0.80 6.35 0.04 1.69 inf; +meurtrira meurtrir ver 0.80 6.35 0.00 0.07 ind:fut:3s; +meurtriront meurtrir ver 0.80 6.35 0.00 0.07 ind:fut:3p; +meurtris meurtrir ver m p 0.80 6.35 0.29 0.34 ind:pre:1s;ind:pre:2s;par:pas; +meurtrissaient meurtrir ver 0.80 6.35 0.00 0.34 ind:imp:3p; +meurtrissais meurtrir ver 0.80 6.35 0.00 0.07 ind:imp:1s; +meurtrissait meurtrir ver 0.80 6.35 0.00 0.27 ind:imp:3s; +meurtrissant meurtrir ver 0.80 6.35 0.00 0.27 par:pre; +meurtrissent meurtrir ver 0.80 6.35 0.00 0.14 ind:pre:3p; +meurtrissure meurtrissure nom f s 0.09 1.42 0.04 0.88 +meurtrissures meurtrissure nom f p 0.09 1.42 0.05 0.54 +meurtrit meurtrir ver 0.80 6.35 0.04 0.20 ind:pre:3s;ind:pas:3s; +meurtrière meurtrier nom f s 24.42 4.59 2.36 1.22 +meurtrières meurtrière nom f p 0.96 0.00 0.96 0.00 +meus mouvoir ver 1.75 13.18 0.02 0.14 imp:pre:2s;ind:pre:1s; +meusien meusien adj m s 0.00 0.54 0.00 0.20 +meusienne meusien adj f s 0.00 0.54 0.00 0.07 +meusiennes meusien adj f p 0.00 0.54 0.00 0.14 +meusiens meusien adj m p 0.00 0.54 0.00 0.14 +meut mouvoir ver 1.75 13.18 0.41 1.28 ind:pre:3s; +meute meute nom f s 2.45 7.36 2.25 6.55 +meutes meute nom f p 2.45 7.36 0.20 0.81 +meuvent mouvoir ver 1.75 13.18 0.17 0.68 ind:pre:3p; +mexicain mexicain nom m s 8.06 2.43 3.98 1.62 +mexicaine mexicain adj f s 7.74 4.05 2.42 1.49 +mexicaines mexicain adj f p 7.74 4.05 0.59 0.68 +mexicains mexicain nom m p 8.06 2.43 3.22 0.41 +mexico mexico adv 0.54 0.07 0.54 0.07 +mezcal mezcal nom m s 0.13 0.00 0.13 0.00 +mezza_voce mezza_voce adv 0.00 0.07 0.00 0.07 +mezza_voce mezza_voce adv 0.00 0.20 0.00 0.20 +mezzanine mezzanine nom f s 0.13 0.47 0.12 0.27 +mezzanines mezzanine nom f p 0.13 0.47 0.01 0.20 +mezzo_soprano mezzo_soprano nom s 0.20 0.00 0.20 0.00 +mezzo mezzo nom s 0.03 0.14 0.03 0.07 +mezzos mezzo nom p 0.03 0.14 0.00 0.07 +mi_accablé mi_accablé adj m s 0.00 0.07 0.00 0.07 +mi_africains mi_africains nom m 0.00 0.07 0.00 0.07 +mi_airain mi_airain nom m s 0.00 0.07 0.00 0.07 +mi_allemand mi_allemand nom m 0.00 0.07 0.00 0.07 +mi_allongé mi_allongé adj m s 0.00 0.07 0.00 0.07 +mi_américaine mi_américaine nom m 0.02 0.00 0.02 0.00 +mi_ange mi_ange nom m s 0.01 0.00 0.01 0.00 +mi_angevins mi_angevins nom m 0.00 0.07 0.00 0.07 +mi_animal mi_animal adj m s 0.05 0.00 0.05 0.00 +mi_animaux mi_animaux adj m 0.00 0.07 0.00 0.07 +mi_août mi_août nom f s 0.00 0.20 0.00 0.20 +mi_appointé mi_appointé adj f p 0.00 0.07 0.00 0.07 +mi_appréhension mi_appréhension nom f s 0.00 0.07 0.00 0.07 +mi_arabe mi_arabe adj s 0.00 0.07 0.00 0.07 +mi_artisan mi_artisan nom m s 0.00 0.07 0.00 0.07 +mi_automne mi_automne nom f s 0.00 0.14 0.00 0.14 +mi_bandit mi_bandit nom m s 0.00 0.07 0.00 0.07 +mi_bas mi_bas nom m 0.14 0.14 0.14 0.14 +mi_biblique mi_biblique adj f s 0.00 0.07 0.00 0.07 +mi_black mi_black adj m s 0.14 0.00 0.14 0.00 +mi_blanc mi_blanc nom m 0.00 0.14 0.00 0.14 +mi_blancs mi_blancs nom m 0.00 0.07 0.00 0.07 +mi_bleu mi_bleu adj 0.00 0.07 0.00 0.07 +mi_bois mi_bois nom m 0.00 0.07 0.00 0.07 +mi_bordel mi_bordel nom m s 0.00 0.07 0.00 0.07 +mi_bourgeois mi_bourgeois adj m s 0.00 0.07 0.00 0.07 +mi_bovins mi_bovins nom m 0.00 0.07 0.00 0.07 +mi_braconnier mi_braconnier nom m p 0.00 0.07 0.00 0.07 +mi_bras mi_bras nom m 0.00 0.14 0.00 0.14 +mi_britannique mi_britannique adj s 0.00 0.07 0.00 0.07 +mi_building mi_building nom m s 0.00 0.07 0.00 0.07 +mi_bureaucrate mi_bureaucrate adj m p 0.00 0.07 0.00 0.07 +mi_bête mi_bête adj m s 0.04 0.00 0.04 0.00 +mi_côte mi_côte nom f s 0.00 0.20 0.00 0.20 +mi_café mi_café adj 0.00 0.07 0.00 0.07 +mi_café mi_café nom m s 0.00 0.07 0.00 0.07 +mi_campagnarde mi_campagnarde nom m 0.00 0.07 0.00 0.07 +mi_canard mi_canard nom m s 0.00 0.07 0.00 0.07 +mi_capacité mi_capacité nom f s 0.02 0.00 0.02 0.00 +mi_carrier mi_carrier nom f s 0.01 0.00 0.01 0.00 +mi_carême mi_carême nom f s 0.01 0.61 0.01 0.61 +mi_chair mi_chair adj m s 0.00 0.20 0.00 0.20 +mi_chat mi_chat nom m s 0.00 0.07 0.00 0.07 +mi_chatte mi_chatte nom f s 0.01 0.00 0.01 0.00 +mi_chauve mi_chauve adj s 0.00 0.07 0.00 0.07 +mi_chemin mi_chemin nom m s 3.72 6.35 3.72 6.35 +mi_châtaignier mi_châtaignier nom m p 0.00 0.07 0.00 0.07 +mi_chou mi_chou nom m s 0.00 0.07 0.00 0.07 +mi_chourineur mi_chourineur nom m s 0.00 0.07 0.00 0.07 +mi_chèvre mi_chèvre nom f s 0.00 0.07 0.00 0.07 +mi_chêne mi_chêne nom m p 0.00 0.07 0.00 0.07 +mi_clair mi_clair adj m s 0.00 0.07 0.00 0.07 +mi_cloître mi_cloître nom m s 0.00 0.07 0.00 0.07 +mi_clos mi_clos adj m 0.21 7.16 0.11 6.08 +mi_clos mi_clos adj f s 0.21 7.16 0.00 0.20 +mi_clos mi_clos adj f p 0.21 7.16 0.10 0.88 +mi_comique mi_comique adj m s 0.00 0.14 0.00 0.14 +mi_complice mi_complice adj m p 0.00 0.07 0.00 0.07 +mi_compote mi_compote nom f s 0.00 0.07 0.00 0.07 +mi_confit mi_confit nom m 0.00 0.07 0.00 0.07 +mi_confondu mi_confondu adj m p 0.00 0.07 0.00 0.07 +mi_connu mi_connu adj f s 0.01 0.00 0.01 0.00 +mi_consterné mi_consterné adj m s 0.00 0.07 0.00 0.07 +mi_contrarié mi_contrarié adj m p 0.00 0.07 0.00 0.07 +mi_corbeaux mi_corbeaux nom m p 0.00 0.07 0.00 0.07 +mi_corps mi_corps nom m 0.01 1.55 0.01 1.55 +mi_course mi_course nom f s 0.08 0.27 0.08 0.27 +mi_courtois mi_courtois adj m 0.00 0.07 0.00 0.07 +mi_cousin mi_cousin nom f s 0.00 0.14 0.00 0.07 +mi_cousin mi_cousin nom m p 0.00 0.14 0.00 0.07 +mi_coutume mi_coutume nom f s 0.00 0.07 0.00 0.07 +mi_crabe mi_crabe nom m s 0.00 0.07 0.00 0.07 +mi_croyant mi_croyant nom m 0.00 0.07 0.00 0.07 +mi_créature mi_créature nom f s 0.00 0.07 0.00 0.07 +mi_cruel mi_cruel adj m s 0.00 0.07 0.00 0.07 +mi_cuisse mi_cuisse nom f s 0.06 1.35 0.04 0.81 +mi_cuisse mi_cuisse nom f p 0.06 1.35 0.01 0.54 +mi_céleste mi_céleste adj m s 0.00 0.07 0.00 0.07 +mi_curieux mi_curieux adj m p 0.00 0.14 0.00 0.14 +mi_cérémonieux mi_cérémonieux adj m 0.00 0.07 0.00 0.07 +mi_dentelle mi_dentelle nom f s 0.00 0.07 0.00 0.07 +mi_didactique mi_didactique adj s 0.00 0.07 0.00 0.07 +mi_distance mi_distance nom f s 0.04 0.34 0.04 0.34 +mi_douce mi_douce adj f s 0.00 0.07 0.00 0.07 +mi_décadents mi_décadents nom m 0.00 0.07 0.00 0.07 +mi_décembre mi_décembre nom m 0.01 0.27 0.01 0.27 +mi_démon mi_démon nom m s 0.02 0.00 0.02 0.00 +mi_désir mi_désir nom m s 0.00 0.07 0.00 0.07 +mi_effrayé mi_effrayé adj f s 0.00 0.20 0.00 0.07 +mi_effrayé mi_effrayé adj m p 0.00 0.20 0.00 0.14 +mi_effrontée mi_effrontée nom m 0.00 0.07 0.00 0.07 +mi_enfant mi_enfant nom s 0.01 0.07 0.01 0.07 +mi_enjoué mi_enjoué adj f s 0.00 0.07 0.00 0.07 +mi_enterré mi_enterré adj m s 0.00 0.07 0.00 0.07 +mi_envieux mi_envieux adj m p 0.00 0.07 0.00 0.07 +mi_espagnol mi_espagnol nom m 0.00 0.07 0.00 0.07 +mi_européen mi_européen nom m 0.00 0.14 0.00 0.14 +mi_excitation mi_excitation nom f s 0.00 0.07 0.00 0.07 +mi_farceur mi_farceur nom m 0.00 0.07 0.00 0.07 +mi_faux mi_faux adj m 0.00 0.07 0.00 0.07 +mi_femme mi_femme nom f s 0.12 0.07 0.12 0.07 +mi_fermiers mi_fermiers nom m 0.00 0.07 0.00 0.07 +mi_fiel mi_fiel nom m s 0.00 0.07 0.00 0.07 +mi_figue mi_figue nom f s 0.02 0.54 0.02 0.54 +mi_flanc mi_flanc nom m s 0.00 0.14 0.00 0.14 +mi_fleuve mi_fleuve nom m s 0.08 0.00 0.08 0.00 +mi_français mi_français nom m 0.00 0.14 0.00 0.14 +mi_furieux mi_furieux adj m s 0.00 0.07 0.00 0.07 +mi_février mi_février nom f s 0.01 0.07 0.01 0.07 +mi_garçon mi_garçon nom m s 0.00 0.07 0.00 0.07 +mi_geste mi_geste nom m s 0.00 0.07 0.00 0.07 +mi_gigolpince mi_gigolpince nom m s 0.00 0.07 0.00 0.07 +mi_gnon mi_gnon nom m s 0.00 0.07 0.00 0.07 +mi_goguenard mi_goguenard adj f s 0.00 0.07 0.00 0.07 +mi_gonzesse mi_gonzesse nom f s 0.00 0.07 0.00 0.07 +mi_goéland mi_goéland nom m p 0.00 0.07 0.00 0.07 +mi_grave mi_grave adj p 0.00 0.07 0.00 0.07 +mi_grenier mi_grenier nom m s 0.00 0.07 0.00 0.07 +mi_grognon mi_grognon nom m 0.00 0.07 0.00 0.07 +mi_grondeur mi_grondeur adj m s 0.00 0.07 0.00 0.07 +mi_grossier mi_grossier adj f p 0.00 0.07 0.00 0.07 +mi_haute mi_haute adj f s 0.00 0.07 0.00 0.07 +mi_hauteur mi_hauteur nom f s 0.17 2.91 0.17 2.91 +mi_historique mi_historique adj f p 0.00 0.07 0.00 0.07 +mi_homme mi_homme nom m s 0.44 0.14 0.44 0.14 +mi_humain mi_humain nom m 0.08 0.00 0.08 0.00 +mi_humaine mi_humaine nom m 0.01 0.07 0.01 0.07 +mi_humains mi_humains nom m 0.01 0.07 0.01 0.07 +mi_hésitant mi_hésitant adj m s 0.00 0.07 0.00 0.07 +mi_idiotes mi_idiotes nom m 0.00 0.07 0.00 0.07 +mi_image mi_image nom f p 0.00 0.14 0.00 0.14 +mi_indien mi_indien nom m 0.01 0.07 0.01 0.07 +mi_indifférente mi_indifférente nom m 0.00 0.07 0.00 0.07 +mi_indigné mi_indigné adj f s 0.00 0.07 0.00 0.07 +mi_indigène mi_indigène adj s 0.00 0.07 0.00 0.07 +mi_indulgent mi_indulgent adj m s 0.00 0.14 0.00 0.14 +mi_inquiet mi_inquiet adj f s 0.00 0.14 0.00 0.14 +mi_ironique mi_ironique adj m s 0.00 0.41 0.00 0.27 +mi_ironique mi_ironique adj p 0.00 0.41 0.00 0.14 +mi_jambe mi_jambe nom f s 0.00 0.74 0.00 0.47 +mi_jambe mi_jambe nom f p 0.00 0.74 0.00 0.27 +mi_janvier mi_janvier nom f s 0.12 0.20 0.12 0.20 +mi_jaune mi_jaune adj s 0.00 0.14 0.00 0.07 +mi_jaune mi_jaune adj p 0.00 0.14 0.00 0.07 +mi_jersey mi_jersey nom m s 0.00 0.14 0.00 0.14 +mi_joue mi_joue nom f s 0.00 0.07 0.00 0.07 +mi_jour mi_jour nom m s 0.00 0.07 0.00 0.07 +mi_journée mi_journée nom f s 0.20 0.27 0.20 0.27 +mi_juif mi_juif nom m 0.00 0.07 0.00 0.07 +mi_juillet mi_juillet nom f s 0.02 0.41 0.02 0.41 +mi_juin mi_juin nom f s 0.01 0.07 0.01 0.07 +mi_laiton mi_laiton nom m s 0.00 0.07 0.00 0.07 +mi_lent mi_lent adj m s 0.01 0.00 0.01 0.00 +mi_londrès mi_londrès nom m 0.00 0.07 0.00 0.07 +mi_longs mi_longs nom m 0.15 0.34 0.15 0.34 +mi_longueur mi_longueur nom f s 0.00 0.07 0.00 0.07 +mi_lourd mi_lourd adj m s 0.17 0.14 0.17 0.14 +mi_machine mi_machine nom f s 0.07 0.00 0.06 0.00 +mi_machine mi_machine nom f p 0.07 0.00 0.01 0.00 +mi_mai mi_mai nom f s 0.01 0.00 0.01 0.00 +mi_mao mi_mao nom s 0.00 0.07 0.00 0.07 +mi_marchande mi_marchande nom m 0.00 0.07 0.00 0.07 +mi_mars mi_mars nom f s 0.04 0.20 0.04 0.20 +mi_marécage mi_marécage nom m p 0.00 0.07 0.00 0.07 +mi_menaçant mi_menaçant adj f s 0.00 0.07 0.00 0.07 +mi_meublé mi_meublé nom m 0.00 0.07 0.00 0.07 +mi_mexicain mi_mexicain nom m 0.01 0.00 0.01 0.00 +mi_miel mi_miel adj m s 0.00 0.07 0.00 0.07 +mi_mollet mi_mollet nom m 0.01 0.20 0.01 0.20 +mi_mollets mi_mollets nom m 0.00 0.27 0.00 0.27 +mi_mondaine mi_mondaine nom m 0.00 0.07 0.00 0.07 +mi_moqueur mi_moqueur nom m 0.00 0.14 0.00 0.14 +mi_mot mi_mot nom m s 0.03 0.27 0.03 0.20 +mi_mot mi_mot nom m p 0.03 0.27 0.00 0.07 +mi_mouton mi_mouton nom m s 0.00 0.07 0.00 0.07 +mi_moyen mi_moyen adj m s 0.10 0.07 0.08 0.00 +mi_moyen mi_moyen adj m p 0.10 0.07 0.02 0.07 +mi_métal mi_métal nom m s 0.00 0.07 0.00 0.07 +mi_narquoise mi_narquoise adj f s 0.00 0.07 0.00 0.07 +mi_noir mi_noir nom m 0.00 0.07 0.00 0.07 +mi_novembre mi_novembre nom f s 0.13 0.27 0.13 0.27 +mi_nuit mi_nuit nom f s 0.00 0.07 0.00 0.07 +mi_obscur mi_obscur adj f s 0.00 0.07 0.00 0.07 +mi_octobre mi_octobre nom f s 0.02 0.14 0.02 0.14 +mi_officiel mi_officiel nom m 0.00 0.14 0.00 0.14 +mi_ogre mi_ogre nom m s 0.00 0.07 0.00 0.07 +mi_oiseau mi_oiseau nom m s 0.10 0.00 0.10 0.00 +mi_oriental mi_oriental nom m 0.00 0.07 0.00 0.07 +mi_parcours mi_parcours nom m 0.25 0.34 0.25 0.34 +mi_parti mi_parti adj f s 0.00 0.61 0.00 0.61 +mi_pathétique mi_pathétique adj s 0.00 0.07 0.00 0.07 +mi_patio mi_patio nom m s 0.00 0.07 0.00 0.07 +mi_patois mi_patois nom m 0.00 0.07 0.00 0.07 +mi_peau mi_peau nom f s 0.00 0.07 0.00 0.07 +mi_pelouse mi_pelouse nom f s 0.00 0.07 0.00 0.07 +mi_pensée mi_pensée nom f p 0.00 0.14 0.00 0.14 +mi_pente mi_pente nom f s 0.02 0.81 0.02 0.81 +mi_pierre mi_pierre nom f s 0.00 0.07 0.00 0.07 +mi_pincé mi_pincé adj m s 0.00 0.07 0.00 0.07 +mi_plaintif mi_plaintif adj m s 0.00 0.20 0.00 0.20 +mi_plaisant mi_plaisant nom m 0.00 0.07 0.00 0.07 +mi_pleurant mi_pleurant nom m 0.00 0.07 0.00 0.07 +mi_pleurnichard mi_pleurnichard nom m 0.00 0.07 0.00 0.07 +mi_plombier mi_plombier nom m p 0.00 0.07 0.00 0.07 +mi_poisson mi_poisson nom m s 0.00 0.14 0.00 0.14 +mi_poitrine mi_poitrine nom f s 0.00 0.07 0.00 0.07 +mi_porcine mi_porcine nom m 0.00 0.07 0.00 0.07 +mi_porté mi_porté nom m 0.00 0.07 0.00 0.07 +mi_portugaise mi_portugaise nom m 0.00 0.07 0.00 0.07 +mi_poucet mi_poucet nom m s 0.00 0.07 0.00 0.07 +mi_poulet mi_poulet nom m s 0.00 0.07 0.00 0.07 +mi_prestidigitateur mi_prestidigitateur nom m s 0.00 0.07 0.00 0.07 +mi_promenoir mi_promenoir nom m s 0.00 0.07 0.00 0.07 +mi_protecteur mi_protecteur nom m 0.00 0.14 0.00 0.14 +mi_pêcheur mi_pêcheur nom m p 0.00 0.07 0.00 0.07 +mi_putain mi_putain nom f s 0.00 0.07 0.00 0.07 +mi_rageur mi_rageur adj m s 0.00 0.07 0.00 0.07 +mi_raide mi_raide adj f s 0.00 0.07 0.00 0.07 +mi_railleur mi_railleur nom m 0.00 0.14 0.00 0.14 +mi_raisin mi_raisin nom m s 0.02 0.61 0.02 0.61 +mi_renaissance mi_renaissance nom f s 0.00 0.07 0.00 0.07 +mi_respectueux mi_respectueux adj f s 0.00 0.07 0.00 0.07 +mi_riant mi_riant adj m s 0.00 0.27 0.00 0.27 +mi_rose mi_rose nom s 0.00 0.07 0.00 0.07 +mi_roulotte mi_roulotte nom f s 0.00 0.07 0.00 0.07 +mi_route mi_route nom f s 0.00 0.07 0.00 0.07 +mi_réalité mi_réalité nom f s 0.00 0.07 0.00 0.07 +mi_régime mi_régime nom m s 0.00 0.07 0.00 0.07 +mi_réprobateur mi_réprobateur adj m s 0.00 0.07 0.00 0.07 +mi_résigné mi_résigné nom m 0.00 0.07 0.00 0.07 +mi_russe mi_russe adj m s 0.14 0.07 0.14 0.07 +mi_saison mi_saison nom f s 0.14 0.00 0.14 0.00 +mi_salade mi_salade nom f s 0.01 0.00 0.01 0.00 +mi_salaire mi_salaire nom m s 0.01 0.00 0.01 0.00 +mi_samoan mi_samoan adj m s 0.01 0.00 0.01 0.00 +mi_sanglotant mi_sanglotant adj m s 0.00 0.07 0.00 0.07 +mi_satin mi_satin nom m s 0.00 0.07 0.00 0.07 +mi_satisfait mi_satisfait adj m s 0.00 0.07 0.00 0.07 +mi_sceptique mi_sceptique adj m s 0.00 0.07 0.00 0.07 +mi_scientifique mi_scientifique adj f p 0.00 0.07 0.00 0.07 +mi_secours mi_secours nom m 0.00 0.07 0.00 0.07 +mi_seigneur mi_seigneur nom m s 0.00 0.07 0.00 0.07 +mi_sel mi_sel nom m s 0.00 0.07 0.00 0.07 +mi_septembre mi_septembre nom f s 0.03 0.27 0.03 0.27 +mi_sidéré mi_sidéré adj f s 0.00 0.07 0.00 0.07 +mi_singe mi_singe nom m s 0.01 0.00 0.01 0.00 +mi_sombre mi_sombre adj m s 0.00 0.07 0.00 0.07 +mi_sommet mi_sommet nom m s 0.00 0.07 0.00 0.07 +mi_songe mi_songe nom m s 0.00 0.07 0.00 0.07 +mi_souriant mi_souriant adj m s 0.00 0.14 0.00 0.07 +mi_souriant mi_souriant adj f s 0.00 0.14 0.00 0.07 +mi_suisse mi_suisse adj s 0.00 0.07 0.00 0.07 +mi_série mi_série nom f s 0.01 0.00 0.01 0.00 +mi_sérieux mi_sérieux adj m 0.00 0.20 0.00 0.20 +mi_tantouse mi_tantouse nom f s 0.00 0.07 0.00 0.07 +mi_tendre mi_tendre nom m 0.00 0.14 0.00 0.14 +mi_terrorisé mi_terrorisé adj m s 0.00 0.07 0.00 0.07 +mi_timide mi_timide adj s 0.00 0.07 0.00 0.07 +mi_tortue mi_tortue adj f s 0.00 0.07 0.00 0.07 +mi_tour mi_tour nom s 0.00 0.07 0.00 0.07 +mi_tout mi_tout nom m 0.00 0.07 0.00 0.07 +mi_tragique mi_tragique adj m s 0.00 0.07 0.00 0.07 +mi_trimestre mi_trimestre nom m s 0.01 0.00 0.01 0.00 +mi_épaule mi_épaule nom f s 0.00 0.07 0.00 0.07 +mi_étage mi_étage nom m s 0.00 0.47 0.00 0.47 +mi_étendue mi_étendue nom f s 0.00 0.07 0.00 0.07 +mi_étonné mi_étonné adj m s 0.00 0.14 0.00 0.14 +mi_été mi_été nom m 0.00 0.27 0.00 0.27 +mi_étudiant mi_étudiant nom m 0.00 0.07 0.00 0.07 +mi_éveillé mi_éveillé adj f s 0.00 0.14 0.00 0.14 +mi_velours mi_velours nom m 0.00 0.07 0.00 0.07 +mi_verre mi_verre nom m s 0.00 0.14 0.00 0.14 +mi_vie mi_vie nom f s 0.00 0.07 0.00 0.07 +mi_voix mi_voix nom f 0.31 14.39 0.31 14.39 +mi_voluptueux mi_voluptueux adj m 0.00 0.07 0.00 0.07 +mi_vrais mi_vrais nom m 0.00 0.07 0.00 0.07 +mi_végétal mi_végétal nom m 0.01 0.00 0.01 0.00 +mi_vénitien mi_vénitien nom m 0.00 0.07 0.00 0.07 +mi mi nom_sup m 8.97 5.61 8.97 5.61 +miam_miam miam_miam ono 0.56 0.68 0.56 0.68 +miam miam ono 2.19 1.69 2.19 1.69 +miao miao adj m s 0.06 0.00 0.06 0.00 +miaou miaou nom m s 0.46 1.55 0.45 1.35 +miaous miaou nom m p 0.46 1.55 0.01 0.20 +miasme miasme nom m s 0.06 1.28 0.01 0.14 +miasmes miasme nom m p 0.06 1.28 0.05 1.15 +miaula miauler ver 1.15 6.15 0.00 0.54 ind:pas:3s; +miaulaient miauler ver 1.15 6.15 0.00 0.34 ind:imp:3p; +miaulais miauler ver 1.15 6.15 0.00 0.07 ind:imp:1s; +miaulait miauler ver 1.15 6.15 0.01 0.81 ind:imp:3s; +miaulant miauler ver 1.15 6.15 0.02 0.74 par:pre; +miaule miauler ver 1.15 6.15 0.88 1.15 imp:pre:2s;ind:pre:3s; +miaulement miaulement nom m s 1.35 2.57 0.64 1.55 +miaulements miaulement nom m p 1.35 2.57 0.70 1.01 +miaulent miauler ver 1.15 6.15 0.03 0.34 ind:pre:3p; +miauler miauler ver 1.15 6.15 0.20 1.62 inf; +miauleur miauleur adj m s 0.01 0.00 0.01 0.00 +miaulez miauler ver 1.15 6.15 0.01 0.07 ind:pre:2p; +miaulé miauler ver m s 1.15 6.15 0.00 0.47 par:pas; +mica mica nom m s 0.34 2.77 0.34 2.50 +micacées micacé adj f p 0.00 0.14 0.00 0.14 +micas mica nom m p 0.34 2.77 0.00 0.27 +miche miche nom f s 2.20 9.80 0.70 4.59 +micheline micheline nom f s 0.00 0.20 0.00 0.20 +miches miche nom f p 2.20 9.80 1.50 5.20 +micheton micheton nom m s 0.59 5.41 0.46 3.51 +michetonnais michetonner ver 0.01 0.54 0.01 0.07 ind:imp:1s; +michetonne michetonner ver 0.01 0.54 0.00 0.20 ind:pre:1s;ind:pre:3s; +michetonner michetonner ver 0.01 0.54 0.00 0.14 inf; +michetonnes michetonner ver 0.01 0.54 0.00 0.14 ind:pre:2s; +michetonneuse michetonneuse nom f s 0.00 0.14 0.00 0.07 +michetonneuses michetonneuse nom f p 0.00 0.14 0.00 0.07 +michetons micheton nom m p 0.59 5.41 0.13 1.89 +miché miché nom m s 0.03 2.91 0.02 1.76 +michés miché nom m p 0.03 2.91 0.01 1.15 +mickeys mickey nom m p 0.19 0.20 0.19 0.20 +micmac micmac nom m s 0.14 0.61 0.12 0.34 +micmacs micmac nom m p 0.14 0.61 0.02 0.27 +micocoulier micocoulier nom m s 0.00 0.34 0.00 0.14 +micocouliers micocoulier nom m p 0.00 0.34 0.00 0.20 +micro_cravate micro_cravate nom m s 0.01 0.00 0.01 0.00 +micro_onde micro_onde nom f s 0.38 0.00 0.38 0.00 +micro_ondes micro_ondes nom m 2.45 0.14 2.45 0.14 +micro_ordinateur micro_ordinateur nom m s 0.01 0.14 0.01 0.07 +micro_ordinateur micro_ordinateur nom m p 0.01 0.14 0.00 0.07 +micro_organisme micro_organisme nom m s 0.08 0.00 0.08 0.00 +micro_trottoir micro_trottoir nom m s 0.01 0.00 0.01 0.00 +micro micro nom s 15.03 8.31 11.25 6.82 +microanalyse microanalyse nom f s 0.02 0.00 0.02 0.00 +microbe microbe nom m s 6.00 4.26 1.86 1.15 +microbes microbe nom m p 6.00 4.26 4.14 3.11 +microbienne microbien adj f s 0.04 0.07 0.01 0.07 +microbiens microbien adj m p 0.04 0.07 0.02 0.00 +microbiologie microbiologie nom f s 0.14 0.00 0.14 0.00 +microbiologiste microbiologiste nom s 0.06 0.00 0.06 0.00 +microbus microbus nom m 0.01 0.00 0.01 0.00 +microcassette microcassette nom f s 0.00 0.07 0.00 0.07 +microchimie microchimie nom f s 0.03 0.00 0.03 0.00 +microchirurgie microchirurgie nom f s 0.06 0.07 0.06 0.07 +microcircuit microcircuit nom m s 0.07 0.00 0.02 0.00 +microcircuits microcircuit nom m p 0.07 0.00 0.05 0.00 +microclimat microclimat nom m s 0.16 0.14 0.16 0.14 +microcomposants microcomposant nom m p 0.01 0.00 0.01 0.00 +microcopie microcopie nom f s 0.01 0.00 0.01 0.00 +microcosme microcosme nom m s 0.23 0.34 0.23 0.34 +microcéphale microcéphale nom m s 0.10 0.07 0.10 0.00 +microcéphales microcéphale adj p 0.00 0.27 0.00 0.07 +microcycles microcycle nom m p 0.01 0.00 0.01 0.00 +microfiches microfiche nom f p 0.04 0.00 0.04 0.00 +microfilm microfilm nom m s 0.58 0.20 0.51 0.00 +microfilms microfilm nom m p 0.58 0.20 0.07 0.20 +microgramme microgramme nom m s 0.02 0.00 0.02 0.00 +microgravité microgravité nom f s 0.01 0.00 0.01 0.00 +microlithes microlithe nom m p 0.00 0.07 0.00 0.07 +micromètre micromètre nom m s 0.04 0.00 0.02 0.00 +micromètres micromètre nom m p 0.04 0.00 0.01 0.00 +micron micron nom m s 0.74 0.27 0.24 0.20 +microns micron nom m p 0.74 0.27 0.50 0.07 +microphone microphone nom m s 0.73 0.68 0.48 0.34 +microphones microphone nom m p 0.73 0.68 0.25 0.34 +microprocesseur microprocesseur nom m s 0.36 0.20 0.17 0.07 +microprocesseurs microprocesseur nom m p 0.36 0.20 0.20 0.14 +micros micro nom p 15.03 8.31 3.78 1.49 +microscope microscope nom m s 3.94 1.62 3.71 1.35 +microscopes microscope nom m p 3.94 1.62 0.23 0.27 +microscopie microscopie nom f s 0.04 0.00 0.04 0.00 +microscopique microscopique adj s 1.04 2.23 0.62 0.88 +microscopiquement microscopiquement adv 0.01 0.07 0.01 0.07 +microscopiques microscopique adj p 1.04 2.23 0.42 1.35 +microseconde microseconde nom f s 0.10 0.00 0.06 0.00 +microsecondes microseconde nom f p 0.10 0.00 0.04 0.00 +microsillon microsillon nom m s 0.00 0.27 0.00 0.14 +microsillons microsillon nom m p 0.00 0.27 0.00 0.14 +microsociologie microsociologie nom f s 0.00 0.07 0.00 0.07 +microsonde microsonde nom f s 0.01 0.00 0.01 0.00 +microstructure microstructure nom f s 0.03 0.07 0.03 0.00 +microstructures microstructure nom f p 0.03 0.07 0.00 0.07 +microédition microédition nom f s 0.01 0.00 0.01 0.00 +miction miction nom f s 0.04 0.07 0.03 0.00 +mictions miction nom f p 0.04 0.07 0.01 0.07 +middle_west middle_west nom m s 0.05 0.14 0.05 0.14 +middle_class middle_class nom f s 0.00 0.07 0.00 0.07 +midi midi nom m 35.19 68.38 35.15 68.11 +midinette midinette nom f s 0.13 2.23 0.06 1.62 +midinettes midinette nom f p 0.13 2.23 0.07 0.61 +midis midi nom m p 35.19 68.38 0.04 0.27 +midrash midrash nom m s 0.02 0.00 0.02 0.00 +midship midship nom m s 0.00 0.20 0.00 0.20 +mie mie nom f s 1.41 5.74 1.39 5.68 +miel miel nom m s 17.36 15.54 17.34 15.41 +miellat miellat nom m s 0.01 0.00 0.01 0.00 +mielle mielle nom f s 0.00 0.07 0.00 0.07 +mielleuse mielleux adj f s 0.81 1.82 0.20 0.41 +mielleuses mielleux adj f p 0.81 1.82 0.17 0.20 +mielleux mielleux adj m 0.81 1.82 0.44 1.22 +miellé miellé adj m s 0.00 0.07 0.00 0.07 +miellée miellé nom f s 0.00 0.20 0.00 0.14 +miellées miellé nom f p 0.00 0.20 0.00 0.07 +miels miel nom m p 17.36 15.54 0.03 0.14 +mien mien pro_pos m s 54.06 36.08 54.06 36.08 +mienne mienne pro_pos f s 50.46 41.28 50.46 41.28 +miennes miennes pro_pos m p 9.31 9.59 9.31 9.59 +miens miens pro_pos m p 16.32 21.15 16.32 21.15 +mies mie nom f p 1.41 5.74 0.03 0.07 +miette miette nom f s 8.68 17.16 2.54 4.12 +miettes miette nom f p 8.68 17.16 6.13 13.04 +mieux_être mieux_être nom m 0.12 0.20 0.12 0.20 +mieux_vivre mieux_vivre nom m s 0.00 0.07 0.00 0.07 +mieux mieux adv_sup 651.73 398.38 651.73 398.38 +mignard mignard adj m s 0.00 1.35 0.00 0.34 +mignardant mignarder ver 0.00 0.20 0.00 0.07 par:pre; +mignarde mignard adj f s 0.00 1.35 0.00 0.81 +mignardement mignardement adv 0.00 0.07 0.00 0.07 +mignardes mignard adj f p 0.00 1.35 0.00 0.14 +mignardise mignardise nom f s 0.03 0.88 0.02 0.14 +mignardises mignardise nom f p 0.03 0.88 0.01 0.74 +mignards mignard adj m p 0.00 1.35 0.00 0.07 +mignardé mignarder ver m s 0.00 0.20 0.00 0.07 par:pas; +mignon mignon adj m s 69.71 13.58 46.14 6.49 +mignonne mignon adj f s 69.71 13.58 17.41 4.73 +mignonnement mignonnement adv 0.00 0.14 0.00 0.14 +mignonnes mignon adj f p 69.71 13.58 1.37 0.74 +mignonnet mignonnet adj m s 0.17 0.27 0.07 0.14 +mignonnets mignonnet adj m p 0.17 0.27 0.00 0.07 +mignonnette mignonnet adj f s 0.17 0.27 0.10 0.00 +mignonnettes mignonnette nom f p 0.06 0.14 0.01 0.07 +mignons mignon adj m p 69.71 13.58 4.78 1.62 +mignoter mignoter ver 0.01 0.41 0.01 0.27 inf; +mignoteront mignoter ver 0.01 0.41 0.00 0.07 ind:fut:3p; +mignoté mignoter ver m s 0.01 0.41 0.00 0.07 par:pas; +migraine migraine nom f s 10.32 6.01 7.51 4.05 +migraines migraine nom f p 10.32 6.01 2.80 1.96 +migraineuse migraineuse nom f s 0.01 0.07 0.01 0.07 +migraineux migraineux nom m 0.04 0.00 0.04 0.00 +migrait migrer ver 0.83 0.14 0.01 0.00 ind:imp:3s; +migrant migrer ver 0.83 0.14 0.01 0.00 par:pre; +migrante migrant adj f s 0.00 0.14 0.00 0.07 +migrants migrant nom m p 0.03 0.54 0.03 0.27 +migrateur migrateur adj m s 0.35 1.55 0.19 0.41 +migrateurs migrateur adj m p 0.35 1.55 0.16 1.08 +migration migration nom f s 0.74 2.64 0.71 1.76 +migrations migration nom f p 0.74 2.64 0.03 0.88 +migratoire migratoire adj s 0.06 0.14 0.02 0.00 +migratoires migratoire adj p 0.06 0.14 0.04 0.14 +migratrice migrateur adj f s 0.35 1.55 0.01 0.00 +migratrices migrateur adj f p 0.35 1.55 0.00 0.07 +migre migrer ver 0.83 0.14 0.03 0.07 ind:pre:3s; +migrent migrer ver 0.83 0.14 0.24 0.00 ind:pre:3p; +migrer migrer ver 0.83 0.14 0.44 0.00 inf; +migres migrer ver 0.83 0.14 0.01 0.00 ind:pre:2s; +migré migrer ver m s 0.83 0.14 0.08 0.07 par:pas; +mijaurée mijaurée nom f s 0.61 1.01 0.57 0.68 +mijaurées mijaurée nom f p 0.61 1.01 0.04 0.34 +mijota mijoter ver 6.98 7.57 0.00 0.07 ind:pas:3s; +mijotaient mijoter ver 6.98 7.57 0.00 0.34 ind:imp:3p; +mijotais mijoter ver 6.98 7.57 0.05 0.14 ind:imp:1s;ind:imp:2s; +mijotait mijoter ver 6.98 7.57 0.28 1.49 ind:imp:3s; +mijotant mijoter ver 6.98 7.57 0.00 0.27 par:pre; +mijote mijoter ver 6.98 7.57 1.85 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mijotent mijoter ver 6.98 7.57 0.51 0.34 ind:pre:3p; +mijoter mijoter ver 6.98 7.57 1.28 1.55 inf; +mijotera mijoter ver 6.98 7.57 0.00 0.07 ind:fut:3s; +mijotes mijoter ver 6.98 7.57 1.73 0.34 ind:pre:2s; +mijoteuse mijoteuse nom f s 0.01 0.07 0.01 0.07 +mijotez mijoter ver 6.98 7.57 0.75 0.07 imp:pre:2p;ind:pre:2p; +mijotions mijoter ver 6.98 7.57 0.00 0.07 ind:imp:1p; +mijotons mijoter ver 6.98 7.57 0.00 0.14 imp:pre:1p;ind:pre:1p; +mijoté mijoter ver m s 6.98 7.57 0.34 0.88 par:pas; +mijotées mijoter ver f p 6.98 7.57 0.01 0.07 par:pas; +mijotés mijoter ver m p 6.98 7.57 0.17 0.34 par:pas; +mikado mikado nom m s 0.28 0.88 0.28 0.88 +mil mil adj_num 0.46 0.61 0.46 0.61 +milady milady nom f s 3.18 0.34 3.18 0.34 +milan milan nom m s 0.14 0.34 0.14 0.14 +milanais milanais adj m 0.37 0.47 0.23 0.14 +milanaise milanais adj f s 0.37 0.47 0.14 0.27 +milanaises milanais nom f p 0.23 0.27 0.00 0.14 +milans milan nom m p 0.14 0.34 0.01 0.20 +mildiou mildiou nom m s 0.04 0.00 0.04 0.00 +mile mile nom m s 8.34 1.28 0.90 0.07 +miles mile nom m p 8.34 1.28 7.44 1.22 +milice milice nom f s 3.77 4.39 3.25 2.43 +milices milice nom f p 3.77 4.39 0.53 1.96 +milicien milicien nom m s 0.78 8.92 0.20 1.35 +miliciennes milicienne nom f p 0.01 0.00 0.01 0.00 +miliciens milicien nom m p 0.78 8.92 0.57 7.50 +milieu milieu nom m s 70.27 256.08 68.60 246.69 +milieux milieu nom m p 70.27 256.08 1.67 9.39 +milita militer ver 1.10 4.26 0.00 0.14 ind:pas:3s; +militaient militer ver 1.10 4.26 0.00 0.07 ind:imp:3p; +militaire militaire adj s 43.73 96.22 35.09 69.19 +militairement militairement adv 0.12 1.15 0.12 1.15 +militaires militaire nom p 13.24 18.99 9.74 11.96 +militait militer ver 1.10 4.26 0.16 0.95 ind:imp:3s; +militant militant nom m s 2.92 11.55 1.18 4.86 +militante militant adj f s 0.92 3.45 0.19 1.22 +militantes militant nom f p 2.92 11.55 0.06 0.14 +militantisme militantisme nom m s 0.06 0.74 0.06 0.74 +militants militant nom m p 2.92 11.55 1.54 5.61 +militarisation militarisation nom f s 0.04 0.00 0.04 0.00 +militariser militariser ver 0.05 0.07 0.03 0.00 inf; +militarisme militarisme nom m s 0.03 0.20 0.03 0.20 +militariste militariste adj s 0.03 0.47 0.02 0.34 +militaristes militariste adj p 0.03 0.47 0.01 0.14 +militarisé militariser ver m s 0.05 0.07 0.02 0.07 par:pas; +militaro_industriel militaro_industriel adj m s 0.06 0.00 0.05 0.00 +militaro_industriel militaro_industriel adj f s 0.06 0.00 0.01 0.00 +militaro militaro adv 0.01 0.00 0.01 0.00 +milite militer ver 1.10 4.26 0.58 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +militent militer ver 1.10 4.26 0.03 0.27 ind:pre:3p; +militer militer ver 1.10 4.26 0.09 0.95 inf; +militerai militer ver 1.10 4.26 0.00 0.07 ind:fut:1s; +milites militer ver 1.10 4.26 0.04 0.07 ind:pre:2s; +militons militer ver 1.10 4.26 0.02 0.00 ind:pre:1p; +militèrent militer ver 1.10 4.26 0.00 0.07 ind:pas:3p; +milité militer ver m s 1.10 4.26 0.15 0.95 par:pas; +milk_bar milk_bar nom m s 0.03 0.20 0.03 0.14 +milk_bar milk_bar nom m p 0.03 0.20 0.00 0.07 +milk_shake milk_shake nom m s 1.85 0.14 1.27 0.14 +milk_shake milk_shake nom m p 1.85 0.14 0.45 0.00 +milk_shake milk_shake nom m s 1.85 0.14 0.13 0.00 +mille_feuille mille_feuille nom m s 0.03 1.08 0.02 0.20 +mille_feuille mille_feuille nom m p 0.03 1.08 0.01 0.88 +mille_pattes mille_pattes nom m 0.39 2.09 0.39 2.09 +mille mille adj_num 55.43 142.09 55.43 142.09 +millefeuille millefeuille nom s 0.10 0.54 0.09 0.34 +millefeuilles millefeuille nom p 0.10 0.54 0.01 0.20 +millenium millenium nom m s 0.08 0.07 0.08 0.07 +milles mille nom_sup m p 29.63 30.68 3.46 3.04 +millet millet nom m s 0.17 0.61 0.17 0.61 +milli milli adv 0.16 0.14 0.16 0.14 +milliaire milliaire adj f s 0.00 0.14 0.00 0.14 +milliard milliard nom m s 17.52 14.39 4.02 2.43 +milliardaire milliardaire nom s 2.13 2.77 1.69 1.55 +milliardaires milliardaire nom p 2.13 2.77 0.44 1.22 +milliardième milliardième adj 0.02 0.00 0.02 0.00 +milliards milliard nom m p 17.52 14.39 13.49 11.96 +millier millier nom m s 37.94 42.43 3.15 2.36 +milliers millier nom m p 37.94 42.43 34.78 40.07 +milligramme milligramme nom m s 1.06 0.34 0.23 0.27 +milligrammes milligramme nom m p 1.06 0.34 0.83 0.07 +millilitre millilitre nom m s 0.04 0.00 0.04 0.00 +millimètre millimètre nom m s 2.77 6.76 1.58 4.46 +millimètres millimètre nom m p 2.77 6.76 1.20 2.30 +millimétrique millimétrique adj s 0.15 0.27 0.14 0.14 +millimétriques millimétrique adj p 0.15 0.27 0.01 0.14 +millimétré millimétré adj m s 0.02 0.47 0.02 0.34 +millimétrées millimétré adj f p 0.02 0.47 0.00 0.07 +millimétrés millimétré adj m p 0.02 0.47 0.00 0.07 +million million nom_sup m s 124.70 54.05 36.78 7.84 +millionième millionième adj 0.22 0.34 0.22 0.34 +millionnaire millionnaire adj s 3.59 0.88 2.82 0.61 +millionnaires millionnaire adj p 3.59 0.88 0.78 0.27 +millions million nom_sup m p 124.70 54.05 87.92 46.22 +milliseconde milliseconde nom f s 0.16 0.14 0.09 0.07 +millisecondes milliseconde nom f p 0.16 0.14 0.08 0.07 +millième millième nom m s 0.29 0.95 0.17 0.88 +millièmes millième nom m p 0.29 0.95 0.12 0.07 +millénaire millénaire nom m s 3.45 5.41 2.10 0.74 +millénaires millénaire nom m p 3.45 5.41 1.36 4.66 +millénarisme millénarisme nom m s 0.01 0.00 0.01 0.00 +millénariste millénariste adj f s 0.02 0.00 0.02 0.00 +millénium millénium nom m s 0.13 0.00 0.13 0.00 +millésime millésime nom m s 0.27 1.01 0.25 0.61 +millésimes millésime nom m p 0.27 1.01 0.02 0.41 +millésimé millésimer ver m s 0.22 0.54 0.17 0.20 par:pas; +millésimée millésimer ver f s 0.22 0.54 0.01 0.00 par:pas; +millésimées millésimer ver f p 0.22 0.54 0.00 0.14 par:pas; +millésimés millésimer ver m p 0.22 0.54 0.03 0.20 par:pas; +milonga milonga nom f s 0.03 0.00 0.03 0.00 +milord milord nom m s 2.72 0.88 2.66 0.81 +milords milord nom m p 2.72 0.88 0.07 0.07 +milouin milouin nom m s 0.01 0.00 0.01 0.00 +milésiennes milésien adj f p 0.00 0.07 0.00 0.07 +mima mimer ver 0.93 9.86 0.00 1.22 ind:pas:3s; +mimaient mimer ver 0.93 9.86 0.00 0.14 ind:imp:3p; +mimais mimer ver 0.93 9.86 0.12 0.27 ind:imp:1s;ind:imp:2s; +mimait mimer ver 0.93 9.86 0.13 1.96 ind:imp:3s; +mimant mimer ver 0.93 9.86 0.16 1.69 par:pre; +mimas mimer ver 0.93 9.86 0.01 0.00 ind:pas:2s; +mime mime nom m s 5.35 1.08 5.11 0.88 +miment mimer ver 0.93 9.86 0.02 0.47 ind:pre:3p; +mimer mimer ver 0.93 9.86 0.11 1.96 inf; +mimerai mimer ver 0.93 9.86 0.00 0.07 ind:fut:1s; +mimerait mimer ver 0.93 9.86 0.00 0.14 cnd:pre:3s; +mimes mime nom m p 5.35 1.08 0.25 0.20 +mimi mimi nom m s 0.44 0.14 0.41 0.14 +mimique mimique nom f s 0.19 6.22 0.01 3.58 +mimiques mimique nom f p 0.19 6.22 0.18 2.64 +mimis mimi nom m p 0.44 0.14 0.02 0.00 +mimodrames mimodrame nom m p 0.00 0.07 0.00 0.07 +mimolette mimolette nom f s 0.01 0.00 0.01 0.00 +mimâmes mimer ver 0.93 9.86 0.00 0.07 ind:pas:1p; +mimosa mimosa nom m s 1.75 2.91 0.97 1.35 +mimosas mimosa nom m p 1.75 2.91 0.77 1.55 +mimosées mimosée nom f p 0.00 0.07 0.00 0.07 +mimèrent mimer ver 0.93 9.86 0.00 0.27 ind:pas:3p; +mimé mimer ver m s 0.93 9.86 0.03 0.54 par:pas; +mimée mimer ver f s 0.93 9.86 0.01 0.20 par:pas; +mimétique mimétique adj s 0.04 0.07 0.04 0.07 +mimétisme mimétisme nom m s 0.17 1.55 0.17 1.55 +min min nom m 7.85 1.08 7.85 1.08 +mina miner ver 4.83 10.47 0.17 0.00 ind:pas:3s; +minable minable adj s 15.58 11.55 13.06 8.72 +minablement minablement adv 0.14 0.07 0.14 0.07 +minables minable adj p 15.58 11.55 2.52 2.84 +minage minage nom m s 0.01 0.07 0.01 0.07 +minait miner ver 4.83 10.47 0.18 0.54 ind:imp:3s; +minant miner ver 4.83 10.47 0.17 0.00 par:pre; +minaret minaret nom m s 0.34 1.96 0.21 0.88 +minarets minaret nom m p 0.34 1.96 0.13 1.08 +minas miner ver 4.83 10.47 0.04 0.00 ind:pas:2s; +minauda minauder ver 0.17 3.38 0.00 0.68 ind:pas:3s; +minaudaient minauder ver 0.17 3.38 0.00 0.07 ind:imp:3p; +minaudait minauder ver 0.17 3.38 0.02 0.54 ind:imp:3s; +minaudant minauder ver 0.17 3.38 0.01 0.81 par:pre; +minaudants minaudant adj m p 0.01 0.07 0.00 0.07 +minaude minauder ver 0.17 3.38 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +minaudent minauder ver 0.17 3.38 0.01 0.14 ind:pre:3p; +minauder minauder ver 0.17 3.38 0.07 0.47 inf; +minauderait minauder ver 0.17 3.38 0.00 0.07 cnd:pre:3s; +minauderie minauderie nom f s 0.12 0.88 0.00 0.27 +minauderies minauderie nom f p 0.12 0.88 0.12 0.61 +minaudeur minaudeur adj m s 0.00 0.07 0.00 0.07 +minaudez minauder ver 0.17 3.38 0.01 0.00 ind:pre:2p; +minaudière minaudier adj f s 0.00 0.27 0.00 0.27 +minaudé minauder ver m s 0.17 3.38 0.00 0.14 par:pas; +minbar minbar nom m s 0.12 0.00 0.12 0.00 +mince mince ono 14.62 2.84 14.62 2.84 +minces mince adj p 16.27 78.51 2.17 18.18 +minceur minceur nom f s 0.20 2.36 0.20 2.30 +minceurs minceur nom f p 0.20 2.36 0.00 0.07 +minci mincir ver m s 0.55 0.20 0.21 0.14 par:pas; +mincir mincir ver 0.55 0.20 0.32 0.00 inf; +mincirait mincir ver 0.55 0.20 0.01 0.00 cnd:pre:3s; +mincis mincir ver 0.55 0.20 0.01 0.00 ind:pre:2s; +mincissaient mincir ver 0.55 0.20 0.00 0.07 ind:imp:3p; +mine mine nom f s 48.08 65.88 36.84 48.18 +minent miner ver 4.83 10.47 0.02 0.20 ind:pre:3p; +miner miner ver 4.83 10.47 0.58 1.35 inf; +minera miner ver 4.83 10.47 0.02 0.00 ind:fut:3s; +minerai minerai nom m s 1.38 1.01 1.21 0.95 +minerais minerai nom m p 1.38 1.01 0.17 0.07 +minerval minerval nom m s 0.01 0.00 0.01 0.00 +minerve minerve nom f s 0.69 0.07 0.69 0.07 +mines mine nom f p 48.08 65.88 11.24 17.70 +minestrone minestrone nom m s 0.27 0.07 0.27 0.07 +minet minet nom m s 5.87 6.42 2.22 2.23 +minets minet nom m p 5.87 6.42 0.68 1.22 +minette minet nom f s 5.87 6.42 2.98 2.03 +minettes minette nom f p 1.21 0.00 1.21 0.00 +mineur mineur adj m s 8.01 6.62 3.79 2.70 +mineure mineur adj f s 8.01 6.62 1.96 1.62 +mineures mineur adj f p 8.01 6.62 0.53 0.74 +mineurs mineur nom m p 8.79 11.96 4.09 6.01 +ming ming adj s 0.04 0.00 0.04 0.00 +mini_chaîne mini_chaîne nom f s 0.14 0.07 0.14 0.07 +mini_jupe mini_jupe nom f s 0.62 0.54 0.56 0.34 +mini_jupe mini_jupe nom f p 0.62 0.54 0.06 0.20 +mini_ordinateur mini_ordinateur nom m s 0.02 0.00 0.02 0.00 +mini mini adj 1.69 0.14 1.69 0.14 +miniature miniature nom f s 2.18 10.07 1.62 7.09 +miniatures miniature nom f p 2.18 10.07 0.56 2.97 +miniaturisation miniaturisation nom f s 0.15 0.14 0.15 0.14 +miniaturise miniaturiser ver 0.22 0.34 0.03 0.00 ind:pre:3s; +miniaturiser miniaturiser ver 0.22 0.34 0.08 0.07 inf; +miniaturiste miniaturiste nom s 0.01 0.47 0.01 0.47 +miniaturisé miniaturiser ver m s 0.22 0.34 0.06 0.14 par:pas; +miniaturisée miniaturiser ver f s 0.22 0.34 0.02 0.07 par:pas; +miniaturisées miniaturiser ver f p 0.22 0.34 0.01 0.00 par:pas; +miniaturisés miniaturiser ver m p 0.22 0.34 0.01 0.07 par:pas; +minibar minibar nom m s 0.26 0.00 0.26 0.00 +minibus minibus nom m 1.99 0.54 1.99 0.54 +minicassette minicassette nom s 0.02 0.27 0.01 0.20 +minicassettes minicassette nom p 0.02 0.27 0.01 0.07 +minier minier adj m s 1.09 1.42 0.28 0.47 +miniers minier adj m p 1.09 1.42 0.20 0.20 +minigolf minigolf nom m s 0.23 0.00 0.23 0.00 +minijupe minijupe nom f s 1.20 0.54 0.82 0.41 +minijupes minijupe nom f p 1.20 0.54 0.38 0.14 +minima minimum nom m p 7.12 11.82 0.04 0.34 +minimal minimal adj m s 1.39 0.81 0.28 0.34 +minimale minimal adj f s 1.39 0.81 0.83 0.34 +minimales minimal adj f p 1.39 0.81 0.22 0.07 +minimaliser minimaliser ver 0.01 0.00 0.01 0.00 inf; +minimalisme minimalisme nom m s 0.06 0.00 0.06 0.00 +minimaliste minimaliste adj s 0.10 0.00 0.10 0.00 +minimaux minimal adj m p 1.39 0.81 0.04 0.07 +minimax minimax nom m 0.01 0.00 0.01 0.00 +minime minime adj s 1.87 2.84 1.04 2.16 +minimes minime adj p 1.87 2.84 0.82 0.68 +minimisa minimiser ver 2.10 2.57 0.01 0.00 ind:pas:3s; +minimisaient minimiser ver 2.10 2.57 0.00 0.07 ind:imp:3p; +minimisait minimiser ver 2.10 2.57 0.00 0.07 ind:imp:3s; +minimisant minimiser ver 2.10 2.57 0.05 0.20 par:pre; +minimisation minimisation nom f s 0.00 0.07 0.00 0.07 +minimise minimiser ver 2.10 2.57 0.39 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +minimisent minimiser ver 2.10 2.57 0.03 0.07 ind:pre:3p; +minimiser minimiser ver 2.10 2.57 1.42 1.42 inf; +minimiserons minimiser ver 2.10 2.57 0.01 0.00 ind:fut:1p; +minimises minimiser ver 2.10 2.57 0.02 0.07 ind:pre:2s; +minimisez minimiser ver 2.10 2.57 0.09 0.00 imp:pre:2p;ind:pre:2p; +minimisons minimiser ver 2.10 2.57 0.01 0.00 imp:pre:1p; +minimisé minimiser ver m s 2.10 2.57 0.04 0.14 par:pas; +minimisée minimiser ver f s 2.10 2.57 0.03 0.00 par:pas; +minimisées minimiser ver f p 2.10 2.57 0.01 0.07 par:pas; +minimum minimum nom m s 7.12 11.82 7.07 11.49 +minimums minimum adj p 3.77 1.76 0.05 0.00 +minis mini nom p 1.01 1.01 0.14 0.00 +ministrables ministrable adj p 0.00 0.07 0.00 0.07 +ministre ministre nom s 41.41 81.15 38.10 61.01 +ministres ministre nom m p 41.41 81.15 3.31 20.14 +ministère ministère nom m s 17.47 17.50 16.91 14.32 +ministères ministère nom m p 17.47 17.50 0.55 3.18 +ministériel ministériel adj m s 0.40 2.77 0.38 0.95 +ministérielle ministériel adj f s 0.40 2.77 0.01 0.74 +ministérielles ministériel adj f p 0.40 2.77 0.00 0.41 +ministériels ministériel adj m p 0.40 2.77 0.01 0.68 +minitel minitel nom m s 0.00 0.34 0.00 0.34 +minière minier adj f s 1.09 1.42 0.53 0.54 +minières minier adj f p 1.09 1.42 0.08 0.20 +minium minium nom m s 0.04 0.95 0.04 0.95 +mino mino adj m s 1.13 0.27 1.13 0.27 +minoen minoen nom m s 0.01 0.20 0.01 0.07 +minoenne minoen adj f s 0.07 0.34 0.06 0.14 +minoens minoen adj m p 0.07 0.34 0.01 0.00 +minois minois nom m 1.11 1.55 1.11 1.55 +minoritaire minoritaire adj s 0.60 0.61 0.17 0.34 +minoritaires minoritaire adj p 0.60 0.61 0.44 0.27 +minorité minorité nom f s 4.03 2.84 3.15 2.36 +minorités minorité nom f p 4.03 2.84 0.89 0.47 +minot minot nom m s 0.58 1.35 0.58 1.08 +minotaure minotaure nom m s 0.03 0.14 0.02 0.07 +minotaures minotaure nom m p 0.03 0.14 0.01 0.07 +minoteries minoterie nom f p 0.00 0.14 0.00 0.14 +minotier minotier nom m s 0.00 0.61 0.00 0.61 +minots minot nom m p 0.58 1.35 0.00 0.27 +minou minou nom m s 7.00 1.55 6.46 1.55 +minouche minouche adj s 0.17 0.81 0.17 0.81 +minous minou nom m p 7.00 1.55 0.55 0.00 +miné miner ver m s 4.83 10.47 1.04 2.50 par:pas; +minée miner ver f s 4.83 10.47 0.20 1.01 par:pas; +minées miner ver f p 4.83 10.47 0.02 0.27 par:pas; +minuit minuit nom m s 38.51 29.86 38.47 29.80 +minuits minuit nom m p 38.51 29.86 0.03 0.07 +minéral minéral nom m s 1.03 0.81 0.28 0.74 +minérale minéral adj f s 4.20 8.78 3.28 5.88 +minérales minéral adj f p 4.20 8.78 0.31 0.74 +minéraliers minéralier nom m p 0.00 0.07 0.00 0.07 +minéralisation minéralisation nom f s 0.01 0.00 0.01 0.00 +minéralisés minéraliser ver m p 0.00 0.07 0.00 0.07 par:pas; +minéralisés minéralisé adj m p 0.00 0.07 0.00 0.07 +minéralogique minéralogique adj s 0.38 0.74 0.31 0.34 +minéralogiques minéralogique adj p 0.38 0.74 0.07 0.41 +minéraux minéral nom m p 1.03 0.81 0.76 0.07 +minus_habens minus_habens nom m 0.00 0.14 0.00 0.14 +minés miner ver m p 4.83 10.47 0.10 0.34 par:pas; +minus minus nom m 8.35 2.50 8.35 2.50 +minuscule minuscule adj s 7.26 62.09 5.07 38.04 +minuscules minuscule adj p 7.26 62.09 2.19 24.05 +minutage minutage nom m s 0.08 0.34 0.08 0.34 +minute minute nom f s 342.28 201.42 144.83 60.74 +minuter minuter ver 2.04 1.69 0.17 0.00 inf; +minuterie minuterie nom f s 1.34 2.36 1.21 2.36 +minuteries minuterie nom f p 1.34 2.36 0.13 0.00 +minutes minute nom f p 342.28 201.42 197.45 140.68 +minuteur minuteur nom m s 1.21 0.00 0.98 0.00 +minuteurs minuteur nom m p 1.21 0.00 0.22 0.00 +minutie minutie nom f s 0.62 3.58 0.48 3.45 +minuties minutie nom f p 0.62 3.58 0.14 0.14 +minutieuse minutieux adj f s 1.81 7.03 0.57 2.84 +minutieusement minutieusement adv 0.74 4.73 0.74 4.73 +minutieuses minutieux adj f p 1.81 7.03 0.02 1.08 +minutieux minutieux adj m 1.81 7.03 1.21 3.11 +minutions minuter ver 2.04 1.69 0.02 0.00 ind:imp:1p; +minutât minuter ver 2.04 1.69 0.00 0.07 sub:imp:3s; +minuté minuter ver m s 2.04 1.69 0.27 0.81 par:pas; +minutée minuter ver f s 2.04 1.69 0.04 0.07 par:pas; +minutés minuter ver m p 2.04 1.69 0.00 0.07 par:pas; +mioche mioche nom s 1.07 2.30 0.54 1.08 +mioches mioche nom p 1.07 2.30 0.53 1.22 +miquette miquette nom f s 0.00 0.34 0.00 0.34 +mir mir nom m s 0.33 0.68 0.33 0.68 +mira mirer ver 0.48 2.57 0.14 0.20 ind:pas:3s; +mirabelle mirabelle nom f s 0.01 1.96 0.00 0.74 +mirabelles mirabelle nom f p 0.01 1.96 0.01 1.22 +mirabellier mirabellier nom m s 0.00 0.34 0.00 0.14 +mirabelliers mirabellier nom m p 0.00 0.34 0.00 0.20 +mirabilis mirabilis nom m 0.12 0.14 0.12 0.14 +miracle miracle nom m s 56.89 42.16 39.78 34.12 +miracles miracle nom m p 56.89 42.16 17.10 8.04 +miraculant miraculant adj m s 0.00 0.14 0.00 0.07 +miraculantes miraculant adj f p 0.00 0.14 0.00 0.07 +miraculeuse miraculeux adj f s 4.43 9.26 1.73 3.99 +miraculeusement miraculeusement adv 1.34 4.53 1.34 4.53 +miraculeuses miraculeux adj f p 4.43 9.26 0.45 1.08 +miraculeux miraculeux adj m 4.43 9.26 2.25 4.19 +miraculé miraculé nom m s 0.55 0.88 0.45 0.41 +miraculée miraculé nom f s 0.55 0.88 0.05 0.34 +miraculés miraculé nom m p 0.55 0.88 0.05 0.14 +mirador mirador nom m s 0.23 4.73 0.15 3.04 +miradors mirador nom m p 0.23 4.73 0.08 1.69 +mirage mirage nom m s 1.83 10.07 1.42 6.08 +mirages mirage nom m p 1.83 10.07 0.42 3.99 +miraient mirer ver 0.48 2.57 0.00 0.14 ind:imp:3p; +mirais mirer ver 0.48 2.57 0.00 0.07 ind:imp:1s; +mirait mirer ver 0.48 2.57 0.14 0.41 ind:imp:3s; +mirant mirer ver 0.48 2.57 0.00 0.20 par:pre; +miraud miraud adj m s 0.02 0.14 0.02 0.07 +mirauds miraud adj m p 0.02 0.14 0.00 0.07 +mire mire nom f s 1.81 2.16 1.81 2.03 +mirent mettre ver 1004.84 1083.65 1.38 27.36 ind:pas:3p; +mirepoix mirepoix nom f 0.01 0.00 0.01 0.00 +mirer mirer ver 0.48 2.57 0.05 0.61 inf; +mirerais mirer ver 0.48 2.57 0.00 0.07 cnd:pre:2s; +mires mire nom f p 1.81 2.16 0.00 0.14 +mirette mirette nom f s 0.16 6.01 0.00 4.32 +mirettes mirette nom f p 0.16 6.01 0.16 1.69 +mirez mirer ver 0.48 2.57 0.00 0.07 imp:pre:2p; +mirifique mirifique adj s 0.03 1.08 0.02 0.61 +mirifiques mirifique adj p 0.03 1.08 0.01 0.47 +mirliflore mirliflore nom m s 0.00 0.07 0.00 0.07 +mirliton mirliton nom m s 0.05 1.15 0.04 0.34 +mirlitons mirliton nom m p 0.05 1.15 0.01 0.81 +mirmidon mirmidon nom m s 0.14 0.00 0.14 0.00 +miro miro adj s 1.32 0.61 1.32 0.54 +mirobolant mirobolant adj m s 0.17 1.42 0.14 0.54 +mirobolante mirobolant adj f s 0.17 1.42 0.01 0.27 +mirobolantes mirobolant adj f p 0.17 1.42 0.02 0.34 +mirobolants mirobolant adj m p 0.17 1.42 0.00 0.27 +miroir miroir nom m s 28.35 63.99 24.89 48.58 +miroirs miroir nom m p 28.35 63.99 3.46 15.41 +miroita miroiter ver 0.39 5.74 0.00 0.20 ind:pas:3s; +miroitaient miroiter ver 0.39 5.74 0.01 0.47 ind:imp:3p; +miroitait miroiter ver 0.39 5.74 0.01 0.68 ind:imp:3s; +miroitant miroiter ver 0.39 5.74 0.03 0.34 par:pre; +miroitante miroitant adj f s 0.04 3.51 0.01 1.82 +miroitantes miroitant adj f p 0.04 3.51 0.00 0.61 +miroitants miroitant adj m p 0.04 3.51 0.02 0.34 +miroite miroiter ver 0.39 5.74 0.03 0.81 ind:pre:3s; +miroitement miroitement nom m s 0.04 2.43 0.04 1.89 +miroitements miroitement nom m p 0.04 2.43 0.00 0.54 +miroitent miroiter ver 0.39 5.74 0.03 0.54 ind:pre:3p; +miroiter miroiter ver 0.39 5.74 0.29 2.70 inf; +miroiterie miroiterie nom f s 0.02 0.07 0.02 0.07 +miroitier miroitier nom m s 0.02 0.20 0.02 0.14 +miroitiers miroitier nom m p 0.02 0.20 0.00 0.07 +miroités miroité adj m p 0.00 0.07 0.00 0.07 +mironton mironton nom m s 0.01 1.08 0.01 0.81 +mirontons mironton nom m p 0.01 1.08 0.00 0.27 +miros miro adj p 1.32 0.61 0.00 0.07 +miroton miroton nom m s 0.01 0.34 0.01 0.34 +mirée mirer ver f s 0.48 2.57 0.00 0.07 par:pas; +mirus mirus nom m 0.09 0.54 0.09 0.54 +mis mettre ver m 1004.84 1083.65 228.57 245.61 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +misa miser ver 11.80 3.78 0.34 0.14 ind:pas:3s; +misai miser ver 11.80 3.78 0.00 0.07 ind:pas:1s; +misaient miser ver 11.80 3.78 0.04 0.07 ind:imp:3p; +misaine misaine nom f s 0.23 0.27 0.23 0.20 +misaines misaine nom f p 0.23 0.27 0.00 0.07 +misais miser ver 11.80 3.78 0.03 0.20 ind:imp:1s; +misait miser ver 11.80 3.78 0.07 0.47 ind:imp:3s; +misant miser ver 11.80 3.78 0.20 0.27 par:pre; +misanthrope misanthrope nom s 0.27 0.47 0.27 0.47 +misanthropes misanthrope adj p 0.06 0.61 0.00 0.07 +misanthropie misanthropie nom f s 0.01 0.41 0.01 0.41 +misanthropiques misanthropique adj p 0.00 0.07 0.00 0.07 +miscible miscible adj m s 0.01 0.00 0.01 0.00 +mise mettre ver f s 1004.84 1083.65 35.33 46.69 par:pas; +misent miser ver 11.80 3.78 0.36 0.14 ind:pre:3p; +miser miser ver 11.80 3.78 2.79 0.74 inf; +misera miser ver 11.80 3.78 0.10 0.00 ind:fut:3s; +miserais miser ver 11.80 3.78 0.26 0.00 cnd:pre:1s;cnd:pre:2s; +miseras miser ver 11.80 3.78 0.02 0.00 ind:fut:2s; +miserere miserere nom m 0.80 0.34 0.80 0.34 +miseriez miser ver 11.80 3.78 0.14 0.00 cnd:pre:2p; +miseront miser ver 11.80 3.78 0.01 0.00 ind:fut:3p; +mises mettre ver f p 1004.84 1083.65 5.36 9.05 par:pas; +misez miser ver 11.80 3.78 1.42 0.00 imp:pre:2p;ind:pre:2p; +misiez miser ver 11.80 3.78 0.21 0.00 ind:imp:2p; +misogyne misogyne adj s 0.32 0.54 0.29 0.47 +misogynes misogyne adj p 0.32 0.54 0.02 0.07 +misogynie misogynie nom f s 0.23 1.01 0.23 1.01 +misons miser ver 11.80 3.78 0.20 0.00 imp:pre:1p;ind:pre:1p; +misât miser ver 11.80 3.78 0.00 0.07 sub:imp:3s; +miss miss nom f 39.08 9.86 39.08 9.86 +missel missel nom m s 0.59 3.38 0.53 3.04 +missels missel nom m p 0.59 3.38 0.06 0.34 +missent mettre ver 1004.84 1083.65 0.00 0.41 sub:imp:3p; +missile missile nom m s 16.70 0.74 7.47 0.41 +missiles missile nom m p 16.70 0.74 9.23 0.34 +missilier missilier nom m s 0.16 0.00 0.16 0.00 +mission_suicide mission_suicide nom f s 0.03 0.07 0.03 0.07 +mission mission nom f s 85.24 48.45 80.02 42.36 +missionna missionner ver 0.11 0.14 0.00 0.07 ind:pas:3s; +missionnaire missionnaire nom s 2.29 2.16 1.27 0.95 +missionnaires missionnaire nom p 2.29 2.16 1.02 1.22 +missionné missionner ver m s 0.11 0.14 0.11 0.00 par:pas; +missionnés missionner ver m p 0.11 0.14 0.00 0.07 par:pas; +missions mission nom f p 85.24 48.45 5.22 6.08 +missive missive nom f s 0.92 2.97 0.81 1.82 +missives missive nom f p 0.92 2.97 0.11 1.15 +mister mister nom m s 2.14 1.22 2.14 1.22 +misère misère nom f s 18.77 47.23 16.85 39.46 +misères misère nom f p 18.77 47.23 1.92 7.77 +mistigri mistigri nom m s 0.00 0.14 0.00 0.07 +mistigris mistigri nom m p 0.00 0.14 0.00 0.07 +mistonne miston nom f s 0.00 0.41 0.00 0.20 +mistonnes miston nom f p 0.00 0.41 0.00 0.20 +mistoufle mistoufle nom f s 0.00 0.81 0.00 0.68 +mistoufles mistoufle nom f p 0.00 0.81 0.00 0.14 +mistral mistral nom m s 0.02 2.03 0.02 1.96 +mistrals mistral nom m p 0.02 2.03 0.00 0.07 +misé miser ver m s 11.80 3.78 2.68 0.95 par:pas; +misérabilisme misérabilisme nom m s 0.01 0.14 0.01 0.14 +misérabiliste misérabiliste adj m s 0.01 0.14 0.01 0.14 +misérable misérable adj s 13.16 22.97 10.17 16.22 +misérablement misérablement adv 0.36 2.16 0.36 2.16 +misérables misérable adj p 13.16 22.97 2.98 6.76 +miséreuse miséreux adj f s 0.23 0.54 0.02 0.27 +miséreuses miséreuse nom f p 0.01 0.00 0.01 0.00 +miséreux miséreux nom m 0.89 1.35 0.88 1.35 +miséricorde miséricorde nom f s 8.79 5.20 8.77 5.07 +miséricordes miséricorde nom f p 8.79 5.20 0.02 0.14 +miséricordieuse miséricordieux adj f s 4.69 1.76 0.36 0.61 +miséricordieusement miséricordieusement adv 0.00 0.07 0.00 0.07 +miséricordieuses miséricordieux adj f p 4.69 1.76 0.10 0.14 +miséricordieux miséricordieux adj m s 4.69 1.76 4.23 1.01 +mit mettre ver 1004.84 1083.65 7.48 185.20 ind:pas:3s; +mita mita nom f s 0.06 0.07 0.06 0.07 +mitaine mitaine nom f s 0.32 0.95 0.06 0.07 +mitaines mitaine nom f p 0.32 0.95 0.26 0.88 +mitan mitan nom m s 0.40 3.58 0.40 3.58 +mitard mitard nom m s 1.91 4.32 1.91 4.26 +mitarder mitarder ver 0.00 0.20 0.00 0.07 inf; +mitards mitard nom m p 1.91 4.32 0.00 0.07 +mitardés mitarder ver m p 0.00 0.20 0.00 0.14 par:pas; +mitchouriniens mitchourinien adj m p 0.00 0.07 0.00 0.07 +mite mite nom f s 1.18 2.23 0.36 0.54 +mitent miter ver 0.23 0.34 0.00 0.07 ind:pre:3p; +miter miter ver 0.23 0.34 0.20 0.00 inf; +mites mite nom f p 1.18 2.23 0.81 1.69 +miteuse miteux adj f s 1.98 4.86 0.25 1.08 +miteusement miteusement adv 0.00 0.07 0.00 0.07 +miteuserie miteuserie nom f s 0.00 0.14 0.00 0.14 +miteuses miteux adj f p 1.98 4.86 0.02 0.41 +miteux miteux adj m 1.98 4.86 1.72 3.38 +mithriaque mithriaque adj m s 0.00 0.14 0.00 0.14 +mithridatisation mithridatisation nom f s 0.00 0.07 0.00 0.07 +mithridatisé mithridatiser ver m s 0.00 0.20 0.00 0.07 par:pas; +mithridatisés mithridatiser ver m p 0.00 0.20 0.00 0.14 par:pas; +mièvre mièvre adj s 0.20 1.35 0.20 0.95 +mièvrement mièvrement adv 0.01 0.00 0.01 0.00 +mièvrerie mièvrerie nom f s 0.14 1.01 0.01 0.81 +mièvreries mièvrerie nom f p 0.14 1.01 0.13 0.20 +mièvres mièvre adj p 0.20 1.35 0.01 0.41 +mitigea mitiger ver 0.22 0.34 0.00 0.07 ind:pas:3s; +mitiger mitiger ver 0.22 0.34 0.05 0.07 inf; +mitigeurs mitigeur nom m p 0.00 0.07 0.00 0.07 +mitigé mitiger ver m s 0.22 0.34 0.10 0.20 par:pas; +mitigée mitiger ver f s 0.22 0.34 0.03 0.00 par:pas; +mitigées mitigé adj f p 0.07 0.47 0.02 0.07 +mitigés mitiger ver m p 0.22 0.34 0.03 0.00 par:pas; +mitochondrial mitochondrial adj m s 0.03 0.00 0.03 0.00 +mitochondrie mitochondrie nom f s 0.33 0.00 0.04 0.00 +mitochondries mitochondrie nom f p 0.33 0.00 0.29 0.00 +miton miton nom m s 0.00 0.07 0.00 0.07 +mitonnaient mitonner ver 0.19 2.70 0.00 0.07 ind:imp:3p; +mitonnait mitonner ver 0.19 2.70 0.00 0.07 ind:imp:3s; +mitonnant mitonner ver 0.19 2.70 0.00 0.14 par:pre; +mitonne mitonner ver 0.19 2.70 0.03 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mitonnent mitonner ver 0.19 2.70 0.00 0.20 ind:pre:3p; +mitonner mitonner ver 0.19 2.70 0.14 0.74 inf; +mitonnerait mitonner ver 0.19 2.70 0.00 0.07 cnd:pre:3s; +mitonné mitonner ver m s 0.19 2.70 0.02 0.27 par:pas; +mitonnée mitonner ver f s 0.19 2.70 0.00 0.27 par:pas; +mitonnées mitonner ver f p 0.19 2.70 0.00 0.27 par:pas; +mitonnés mitonner ver m p 0.19 2.70 0.00 0.14 par:pas; +mitose mitose nom f s 0.14 0.00 0.14 0.00 +mitotique mitotique adj f s 0.03 0.00 0.03 0.00 +mitoufle mitoufle nom f s 0.00 0.07 0.00 0.07 +mitoyen mitoyen adj m s 0.43 1.55 0.26 1.01 +mitoyenne mitoyen adj f s 0.43 1.55 0.02 0.27 +mitoyennes mitoyen adj f p 0.43 1.55 0.02 0.07 +mitoyenneté mitoyenneté nom f s 0.00 0.20 0.00 0.20 +mitoyens mitoyen adj m p 0.43 1.55 0.14 0.20 +mitra mitrer ver 0.00 0.20 0.00 0.07 ind:pas:3s; +mitrailla mitrailler ver 1.55 3.85 0.00 0.20 ind:pas:3s; +mitraillade mitraillade nom f s 0.00 1.01 0.00 0.88 +mitraillades mitraillade nom f p 0.00 1.01 0.00 0.14 +mitraillage mitraillage nom m s 0.15 0.07 0.12 0.07 +mitraillages mitraillage nom m p 0.15 0.07 0.03 0.00 +mitraillaient mitrailler ver 1.55 3.85 0.01 0.14 ind:imp:3p; +mitraillait mitrailler ver 1.55 3.85 0.00 0.27 ind:imp:3s; +mitraillant mitrailler ver 1.55 3.85 0.04 0.61 par:pre; +mitraille mitraille nom f s 0.65 3.18 0.65 3.04 +mitraillent mitrailler ver 1.55 3.85 0.08 0.27 ind:pre:3p; +mitrailler mitrailler ver 1.55 3.85 0.59 0.61 inf; +mitrailleraient mitrailler ver 1.55 3.85 0.00 0.07 cnd:pre:3p; +mitrailles mitrailler ver 1.55 3.85 0.02 0.00 ind:pre:2s; +mitraillette mitraillette nom f s 3.88 11.35 2.62 7.09 +mitraillettes mitraillette nom f p 3.88 11.35 1.26 4.26 +mitrailleur mitrailleur nom m s 6.19 15.47 0.44 0.74 +mitrailleurs mitrailleur nom m p 6.19 15.47 0.43 1.15 +mitrailleuse mitrailleur nom f s 6.19 15.47 5.32 7.03 +mitrailleuses mitrailleuse nom f p 3.40 0.00 3.40 0.00 +mitrailliez mitrailler ver 1.55 3.85 0.01 0.00 ind:imp:2p; +mitraillèrent mitrailler ver 1.55 3.85 0.00 0.20 ind:pas:3p; +mitraillé mitrailler ver m s 1.55 3.85 0.09 0.61 par:pas; +mitraillée mitrailler ver f s 1.55 3.85 0.04 0.07 par:pas; +mitraillées mitrailler ver f p 1.55 3.85 0.10 0.07 par:pas; +mitraillés mitrailler ver m p 1.55 3.85 0.14 0.54 par:pas; +mitral mitral adj m s 0.30 0.00 0.04 0.00 +mitrale mitral adj f s 0.30 0.00 0.27 0.00 +mitre mitre nom f s 0.26 1.96 0.26 1.49 +mitres mitre nom f p 0.26 1.96 0.00 0.47 +mitron mitron nom m s 0.14 3.58 0.14 2.91 +mitrons mitron nom m p 0.14 3.58 0.00 0.68 +mitré mitré adj m s 0.00 0.61 0.00 0.47 +mitrés mitré adj m p 0.00 0.61 0.00 0.14 +mité mité adj m s 0.03 1.01 0.03 0.27 +mitée mité adj f s 0.03 1.01 0.00 0.20 +mitées mité adj f p 0.03 1.01 0.00 0.20 +mités mité adj m p 0.03 1.01 0.00 0.34 +mixage mixage nom m s 0.86 0.27 0.86 0.27 +mixait mixer ver 1.11 0.27 0.01 0.07 ind:imp:3s; +mixe mixer ver 1.11 0.27 0.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mixer mixer ver 1.11 0.27 0.78 0.00 inf; +mixers mixer nom m p 0.78 0.14 0.11 0.07 +mixeur mixeur nom m s 1.21 0.14 1.05 0.14 +mixeurs mixeur nom m p 1.21 0.14 0.15 0.00 +mixité mixité nom f s 0.07 0.14 0.07 0.14 +mixte mixte adj s 2.81 3.45 2.23 2.30 +mixtes mixte adj p 2.81 3.45 0.59 1.15 +mixture mixture nom f s 0.93 1.62 0.92 1.35 +mixtures mixture nom f p 0.93 1.62 0.01 0.27 +mixé mixer ver m s 1.11 0.27 0.13 0.14 par:pas; +mixée mixer ver f s 1.11 0.27 0.05 0.07 par:pas; +mixés mixer ver m p 1.11 0.27 0.03 0.00 par:pas; +ml ml adj_num 0.03 0.00 0.03 0.00 +mlle mlle nom_sup f s 45.69 6.55 45.69 6.55 +mm mm nom_sup m 3.79 1.35 3.79 1.35 +mme mme nom_sup f s 81.64 33.24 81.64 33.24 +mn mn nom m s 0.02 0.00 0.02 0.00 +mnémonique mnémonique adj m s 0.05 0.07 0.05 0.00 +mnémoniques mnémonique adj m p 0.05 0.07 0.00 0.07 +mnémotechnie mnémotechnie nom f s 0.00 0.07 0.00 0.07 +mnémotechnique mnémotechnique adj s 0.03 0.00 0.03 0.00 +mnésiques mnésique adj m p 0.00 0.07 0.00 0.07 +moï moï adj m s 0.00 0.27 0.00 0.27 +moïse moïse nom m s 0.05 0.47 0.05 0.47 +moût moût nom m s 0.00 0.68 0.00 0.54 +moûts moût nom m p 0.00 0.68 0.00 0.14 +mob mob nom f s 0.93 0.68 0.93 0.68 +mobil_home mobil_home nom m s 0.07 0.00 0.07 0.00 +mobile mobile nom m s 8.01 2.84 7.03 1.15 +mobiles mobile nom m p 8.01 2.84 0.98 1.69 +mobilier mobilier nom m s 1.70 5.74 1.66 5.27 +mobiliers mobilier nom m p 1.70 5.74 0.04 0.47 +mobilisa mobiliser ver 3.99 9.39 0.02 0.27 ind:pas:3s; +mobilisable mobilisable adj m s 0.00 0.74 0.00 0.47 +mobilisables mobilisable adj f p 0.00 0.74 0.00 0.27 +mobilisaient mobiliser ver 3.99 9.39 0.01 0.27 ind:imp:3p; +mobilisais mobiliser ver 3.99 9.39 0.00 0.14 ind:imp:1s; +mobilisait mobiliser ver 3.99 9.39 0.01 0.41 ind:imp:3s; +mobilisant mobiliser ver 3.99 9.39 0.06 0.34 par:pre; +mobilisateur mobilisateur adj m s 0.01 0.34 0.01 0.20 +mobilisateurs mobilisateur adj m p 0.01 0.34 0.00 0.14 +mobilisation mobilisation nom f s 0.86 4.39 0.86 4.39 +mobilise mobiliser ver 3.99 9.39 0.42 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mobilisent mobiliser ver 3.99 9.39 0.11 0.14 ind:pre:3p; +mobiliser mobiliser ver 3.99 9.39 1.13 1.35 inf; +mobilisera mobiliser ver 3.99 9.39 0.03 0.00 ind:fut:3s; +mobiliserait mobiliser ver 3.99 9.39 0.01 0.07 cnd:pre:3s; +mobiliserons mobiliser ver 3.99 9.39 0.01 0.07 ind:fut:1p; +mobilisez mobiliser ver 3.99 9.39 0.28 0.00 imp:pre:2p;ind:pre:2p; +mobilisions mobiliser ver 3.99 9.39 0.01 0.00 ind:imp:1p; +mobilisons mobiliser ver 3.99 9.39 0.01 0.00 ind:pre:1p; +mobilisé mobiliser ver m s 3.99 9.39 0.83 2.97 par:pas; +mobilisée mobiliser ver f s 3.99 9.39 0.53 0.27 par:pas; +mobilisées mobiliser ver f p 3.99 9.39 0.08 0.27 par:pas; +mobilisés mobiliser ver m p 3.99 9.39 0.43 2.23 par:pas; +mobilière mobilier adj f s 0.22 0.88 0.00 0.20 +mobilières mobilier adj f p 0.22 0.88 0.04 0.27 +mobilité mobilité nom f s 0.40 1.96 0.40 1.96 +mobylette mobylette nom f s 0.89 2.09 0.87 1.82 +mobylettes mobylette nom f p 0.89 2.09 0.02 0.27 +mocassin mocassin nom m s 0.63 2.50 0.06 0.07 +mocassins mocassin nom m p 0.63 2.50 0.57 2.43 +mâcha mâcher ver 5.00 12.30 0.00 0.47 ind:pas:3s; +mâchage mâchage nom m s 0.00 0.07 0.00 0.07 +mâchaient mâcher ver 5.00 12.30 0.01 0.47 ind:imp:3p; +mâchais mâcher ver 5.00 12.30 0.10 0.07 ind:imp:1s; +mâchait mâcher ver 5.00 12.30 0.14 2.09 ind:imp:3s; +mâchant mâcher ver 5.00 12.30 0.16 1.82 par:pre; +mochard mochard adj m s 0.00 0.41 0.00 0.20 +mocharde mochard adj f s 0.00 0.41 0.00 0.20 +mâche mâcher ver 5.00 12.30 1.37 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +moche moche adj s 28.73 17.77 25.64 14.32 +mâchefer mâchefer nom m s 0.01 2.57 0.01 2.57 +mâchent mâcher ver 5.00 12.30 0.16 0.20 ind:pre:3p; +mâcher mâcher ver 5.00 12.30 1.61 3.78 inf; +mâcherai mâcher ver 5.00 12.30 0.04 0.07 ind:fut:1s; +mâcherais mâcher ver 5.00 12.30 0.01 0.00 cnd:pre:1s; +mâcherait mâcher ver 5.00 12.30 0.01 0.07 cnd:pre:3s; +mâcherez mâcher ver 5.00 12.30 0.00 0.07 ind:fut:2p; +mâches mâcher ver 5.00 12.30 0.15 0.00 ind:pre:2s; +moches moche adj p 28.73 17.77 3.09 3.45 +mocheté mocheté nom f s 0.75 0.88 0.66 0.41 +mochetés mocheté nom f p 0.75 0.88 0.08 0.47 +mâcheur mâcheur nom m s 0.05 0.07 0.04 0.00 +mâcheurs mâcheur nom m p 0.05 0.07 0.00 0.07 +mâcheuse mâcheur nom f s 0.05 0.07 0.01 0.00 +mâchez mâcher ver 5.00 12.30 0.31 0.00 imp:pre:2p;ind:pre:2p; +mâchicoulis mâchicoulis nom m 0.00 0.34 0.00 0.34 +mâchoire mâchoire nom f s 7.90 23.58 6.80 11.28 +mâchoires mâchoire nom f p 7.90 23.58 1.09 12.30 +mâchonna mâchonner ver 0.22 4.59 0.00 0.41 ind:pas:3s; +mâchonnaient mâchonner ver 0.22 4.59 0.00 0.20 ind:imp:3p; +mâchonnais mâchonner ver 0.22 4.59 0.00 0.07 ind:imp:1s; +mâchonnait mâchonner ver 0.22 4.59 0.01 0.61 ind:imp:3s; +mâchonnant mâchonner ver 0.22 4.59 0.16 1.01 par:pre; +mâchonne mâchonner ver 0.22 4.59 0.01 0.68 ind:pre:3s; +mâchonnements mâchonnement nom m p 0.00 0.14 0.00 0.14 +mâchonnent mâchonner ver 0.22 4.59 0.00 0.14 ind:pre:3p; +mâchonner mâchonner ver 0.22 4.59 0.04 1.01 inf; +mâchonné mâchonner ver m s 0.22 4.59 0.00 0.34 par:pas; +mâchonnés mâchonner ver m p 0.22 4.59 0.00 0.14 par:pas; +mâchons mâcher ver 5.00 12.30 0.00 0.07 imp:pre:1p; +mâchouilla mâchouiller ver 0.31 1.62 0.00 0.27 ind:pas:3s; +mâchouillait mâchouiller ver 0.31 1.62 0.00 0.34 ind:imp:3s; +mâchouillant mâchouiller ver 0.31 1.62 0.02 0.61 par:pre; +mâchouille mâchouiller ver 0.31 1.62 0.10 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mâchouiller mâchouiller ver 0.31 1.62 0.04 0.20 inf; +mâchouilles mâchouiller ver 0.31 1.62 0.07 0.00 ind:pre:2s; +mâchouilleur mâchouilleur nom m s 0.02 0.07 0.02 0.07 +mâchouillé mâchouiller ver m s 0.31 1.62 0.07 0.07 par:pas; +mâchouillée mâchouiller ver f s 0.31 1.62 0.01 0.07 par:pas; +mâchèrent mâcher ver 5.00 12.30 0.00 0.07 ind:pas:3p; +mâché mâcher ver m s 5.00 12.30 0.91 1.42 par:pas; +mâchée mâcher ver f s 5.00 12.30 0.01 0.14 par:pas; +mâchuré mâchurer ver m s 0.00 0.14 0.00 0.07 par:pas; +mâchurée mâchurer ver f s 0.00 0.14 0.00 0.07 par:pas; +mâchés mâcher ver m p 5.00 12.30 0.01 0.20 par:pas; +moco moco nom m s 0.19 0.00 0.19 0.00 +mâconnaise mâconnais adj f s 0.00 0.14 0.00 0.07 +mâconnaises mâconnais adj f p 0.00 0.14 0.00 0.07 +mod mod nom m s 0.01 0.00 0.01 0.00 +modalité modalité nom f s 0.41 2.30 0.01 0.00 +modalités modalité nom f p 0.41 2.30 0.40 2.30 +mode mode nom s 31.67 51.69 30.79 46.96 +model model nom m s 0.99 0.00 0.99 0.00 +modela modeler ver 2.42 8.24 0.00 0.20 ind:pas:3s; +modelable modelable adj s 0.00 0.07 0.00 0.07 +modelage modelage nom m s 0.04 0.20 0.04 0.20 +modelaient modeler ver 2.42 8.24 0.00 0.20 ind:imp:3p; +modelais modeler ver 2.42 8.24 0.00 0.27 ind:imp:1s; +modelait modeler ver 2.42 8.24 0.01 0.47 ind:imp:3s; +modelant modeler ver 2.42 8.24 0.00 0.34 par:pre; +modeler modeler ver 2.42 8.24 1.16 2.03 inf; +modeleur modeleur nom m s 0.04 0.00 0.04 0.00 +modelez modeler ver 2.42 8.24 0.28 0.00 imp:pre:2p;ind:pre:2p; +modelé modeler ver m s 2.42 8.24 0.35 1.22 par:pas; +modelée modeler ver f s 2.42 8.24 0.18 1.01 par:pas; +modelées modeler ver f p 2.42 8.24 0.14 0.54 par:pas; +modelés modeler ver m p 2.42 8.24 0.01 0.54 par:pas; +modem modem nom m s 0.43 0.00 0.37 0.00 +modems modem nom m p 0.43 0.00 0.06 0.00 +moderato moderato adv 0.00 0.81 0.00 0.81 +modern_style modern_style nom m s 0.00 0.27 0.00 0.27 +modern_style modern_style nom m 0.01 0.00 0.01 0.00 +moderne moderne adj s 21.30 34.73 16.77 24.46 +modernes moderne adj p 21.30 34.73 4.53 10.27 +modernisaient moderniser ver 0.81 1.69 0.00 0.07 ind:imp:3p; +modernisait moderniser ver 0.81 1.69 0.00 0.07 ind:imp:3s; +modernisation modernisation nom f s 0.36 0.74 0.36 0.68 +modernisations modernisation nom f p 0.36 0.74 0.00 0.07 +modernise moderniser ver 0.81 1.69 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modernisent moderniser ver 0.81 1.69 0.03 0.14 ind:pre:3p; +moderniser moderniser ver 0.81 1.69 0.48 0.81 inf; +modernisme modernisme nom m s 0.08 1.15 0.08 1.15 +modernisons moderniser ver 0.81 1.69 0.01 0.07 imp:pre:1p;ind:pre:1p; +modernissime modernissime adj s 0.00 0.07 0.00 0.07 +moderniste moderniste adj f s 0.01 0.20 0.01 0.07 +modernistes moderniste nom p 0.04 0.00 0.03 0.00 +modernisé moderniser ver m s 0.81 1.69 0.14 0.27 par:pas; +modernisée moderniser ver f s 0.81 1.69 0.04 0.14 par:pas; +modernisés moderniser ver m p 0.81 1.69 0.05 0.07 par:pas; +modernité modernité nom f s 0.71 1.35 0.71 1.22 +modernités modernité nom f p 0.71 1.35 0.00 0.14 +modes mode nom p 31.67 51.69 0.89 4.73 +modeste modeste adj s 10.64 31.69 9.06 23.38 +modestement modestement adv 0.52 4.39 0.52 4.39 +modestes modeste adj p 10.64 31.69 1.58 8.31 +modestie modestie nom f s 3.96 10.34 3.96 10.27 +modesties modestie nom f p 3.96 10.34 0.00 0.07 +modicité modicité nom f s 0.00 0.20 0.00 0.20 +modifia modifier ver 10.90 18.85 0.00 0.61 ind:pas:3s; +modifiable modifiable adj f s 0.05 0.20 0.04 0.14 +modifiables modifiable adj p 0.05 0.20 0.01 0.07 +modifiaient modifier ver 10.90 18.85 0.00 0.95 ind:imp:3p; +modifiais modifier ver 10.90 18.85 0.01 0.00 ind:imp:1s; +modifiait modifier ver 10.90 18.85 0.04 1.76 ind:imp:3s; +modifiant modifier ver 10.90 18.85 0.20 0.81 par:pre; +modificateur modificateur adj m s 0.03 0.00 0.03 0.00 +modification modification nom f s 2.69 4.26 1.00 1.96 +modifications modification nom f p 2.69 4.26 1.69 2.30 +modifie modifier ver 10.90 18.85 1.04 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modifient modifier ver 10.90 18.85 0.17 0.34 ind:pre:3p; +modifier modifier ver 10.90 18.85 4.17 6.96 inf; +modifiera modifier ver 10.90 18.85 0.03 0.00 ind:fut:3s; +modifierai modifier ver 10.90 18.85 0.02 0.00 ind:fut:1s; +modifieraient modifier ver 10.90 18.85 0.00 0.20 cnd:pre:3p; +modifierais modifier ver 10.90 18.85 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +modifierait modifier ver 10.90 18.85 0.04 0.34 cnd:pre:3s; +modifiez modifier ver 10.90 18.85 0.22 0.00 imp:pre:2p;ind:pre:2p; +modifions modifier ver 10.90 18.85 0.17 0.00 imp:pre:1p;ind:pre:1p; +modifiât modifier ver 10.90 18.85 0.00 0.14 sub:imp:3s; +modifièrent modifier ver 10.90 18.85 0.02 0.14 ind:pas:3p; +modifié modifier ver m s 10.90 18.85 3.38 3.18 par:pas; +modifiée modifier ver f s 10.90 18.85 0.64 1.15 par:pas; +modifiées modifier ver f p 10.90 18.85 0.21 0.34 par:pas; +modifiés modifier ver m p 10.90 18.85 0.53 0.20 par:pas; +modillon modillon nom m s 0.00 0.47 0.00 0.07 +modillons modillon nom m p 0.00 0.47 0.00 0.41 +modique modique adj s 0.33 0.95 0.32 0.74 +modiques modique adj f p 0.33 0.95 0.01 0.20 +modiste modiste nom s 0.15 1.55 0.14 1.15 +modistes modiste nom p 0.15 1.55 0.01 0.41 +modèle modèle nom m s 25.06 35.95 19.56 27.50 +modèlent modeler ver 2.42 8.24 0.00 0.14 ind:pre:3p; +modèles modèle nom m p 25.06 35.95 5.50 8.45 +modère modérer ver 1.32 3.51 0.41 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modula moduler ver 0.20 4.19 0.00 0.41 ind:pas:3s; +modulable modulable adj m s 0.07 0.14 0.03 0.07 +modulables modulable adj m p 0.07 0.14 0.04 0.07 +modulai moduler ver 0.20 4.19 0.00 0.07 ind:pas:1s; +modulaire modulaire adj m s 0.11 0.00 0.06 0.00 +modulaires modulaire adj p 0.11 0.00 0.04 0.00 +modulais moduler ver 0.20 4.19 0.00 0.07 ind:imp:1s; +modulait moduler ver 0.20 4.19 0.00 0.14 ind:imp:3s; +modulant moduler ver 0.20 4.19 0.00 0.34 par:pre; +modulateur modulateur adj m s 0.47 0.00 0.47 0.00 +modulation modulation nom f s 0.19 2.36 0.16 1.01 +modulations modulation nom f p 0.19 2.36 0.04 1.35 +module module nom m s 7.03 0.61 6.49 0.54 +modulent moduler ver 0.20 4.19 0.00 0.07 ind:pre:3p; +moduler moduler ver 0.20 4.19 0.07 0.47 inf; +modules module nom m p 7.03 0.61 0.54 0.07 +modélisation modélisation nom f s 0.04 0.00 0.04 0.00 +modélisme modélisme nom m s 0.03 0.00 0.03 0.00 +modéliste modéliste nom s 0.04 0.27 0.04 0.27 +modélisé modéliser ver m s 0.02 0.00 0.01 0.00 par:pas; +modélisée modéliser ver f s 0.02 0.00 0.01 0.00 par:pas; +modulé moduler ver m s 0.20 4.19 0.01 0.95 par:pas; +modulée moduler ver f s 0.20 4.19 0.01 0.68 par:pas; +modulées moduler ver f p 0.20 4.19 0.00 0.14 par:pas; +modulés moduler ver m p 0.20 4.19 0.00 0.47 par:pas; +modéra modérer ver 1.32 3.51 0.00 0.07 ind:pas:3s; +modérai modérer ver 1.32 3.51 0.00 0.07 ind:pas:1s; +modérait modérer ver 1.32 3.51 0.00 0.07 ind:imp:3s; +modérant modérer ver 1.32 3.51 0.00 0.14 par:pre; +modérateur modérateur nom m s 0.01 0.14 0.01 0.07 +modérateurs modérateur nom m p 0.01 0.14 0.00 0.07 +modération modération nom f s 1.30 2.36 1.30 2.30 +modérations modération nom f p 1.30 2.36 0.00 0.07 +modérer modérer ver 1.32 3.51 0.34 1.62 inf; +modéreras modérer ver 1.32 3.51 0.01 0.00 ind:fut:2s; +modérez modérer ver 1.32 3.51 0.06 0.20 imp:pre:2p; +modéré modéré adj m s 0.52 3.18 0.25 1.22 +modérée modérer ver f s 1.32 3.51 0.20 0.00 par:pas; +modérées modérer ver f p 1.32 3.51 0.03 0.14 par:pas; +modérément modérément adv 0.21 2.36 0.21 2.36 +modérés modéré nom m p 0.45 1.42 0.14 0.95 +modus_operandi modus_operandi nom m s 0.32 0.00 0.32 0.00 +modus_vivendi modus_vivendi nom m 0.01 0.47 0.01 0.47 +moelle moelle nom f s 4.23 6.15 4.21 5.34 +moelles moelle nom f p 4.23 6.15 0.01 0.81 +moelleuse moelleux adj f s 1.22 6.22 0.14 1.49 +moelleusement moelleusement adv 0.00 0.27 0.00 0.27 +moelleuses moelleux adj f p 1.22 6.22 0.10 0.20 +moelleux moelleux adj m 1.22 6.22 0.98 4.53 +moellon moellon nom m s 0.01 2.50 0.00 0.41 +moellons moellon nom m p 0.01 2.50 0.01 2.09 +moeurs moeurs nom f p 3.08 21.08 3.08 21.08 +moghol moghol nom m s 0.01 0.00 0.01 0.00 +mogol mogol adj m s 0.00 0.14 0.00 0.14 +mohair mohair nom m s 0.29 0.54 0.29 0.47 +mohairs mohair nom m p 0.29 0.54 0.00 0.07 +mohican mohican nom m s 0.01 0.00 0.01 0.00 +moho moho nom m s 0.03 0.00 0.03 0.00 +moi_moi_moi moi_moi_moi nom m 0.00 0.07 0.00 0.07 +moi_même moi_même pro_per s 83.25 107.30 83.25 107.30 +moi moi pro_per s 3675.68 1877.57 3675.68 1877.57 +moignon moignon nom m s 0.57 4.05 0.36 1.82 +moignons moignon nom m p 0.57 4.05 0.20 2.23 +moindre moindre adj_sup s 50.12 130.27 46.74 116.96 +moindrement moindrement adv 0.02 0.07 0.02 0.07 +moindres moindre adj_sup p 50.12 130.27 3.38 13.31 +moine moine nom m s 11.82 34.73 8.21 18.04 +moineau moineau nom m s 5.65 8.38 2.92 4.32 +moineaux moineau nom m p 5.65 8.38 2.73 4.05 +moines moine nom m p 11.82 34.73 3.62 16.69 +moinillon moinillon nom m s 0.04 0.54 0.04 0.41 +moinillons moinillon nom m p 0.04 0.54 0.00 0.14 +moins moins adv_sup 478.75 718.18 478.75 718.18 +moiraient moirer ver 0.00 0.81 0.00 0.07 ind:imp:3p; +moire moire nom f s 0.04 1.76 0.02 1.28 +moires moire nom f p 0.04 1.76 0.02 0.47 +moiré moiré adj m s 0.04 1.96 0.02 0.61 +moirée moiré adj f s 0.04 1.96 0.01 0.74 +moirées moiré adj f p 0.04 1.96 0.00 0.27 +moirure moirure nom f s 0.00 0.34 0.00 0.07 +moirures moirure nom f p 0.00 0.34 0.00 0.27 +moirés moiré adj m p 0.04 1.96 0.01 0.34 +mois mois nom m 312.31 304.86 312.31 304.86 +moise moise nom f s 0.37 0.00 0.27 0.00 +moises moise nom f p 0.37 0.00 0.10 0.00 +moisi moisir ver m s 3.85 5.00 0.56 0.47 par:pas; +moisie moisi adj f s 0.61 4.46 0.19 0.74 +moisies moisi adj f p 0.61 4.46 0.02 1.01 +moisir moisir ver 3.85 5.00 2.46 2.09 inf; +moisira moisir ver 3.85 5.00 0.01 0.07 ind:fut:3s; +moisirai moisir ver 3.85 5.00 0.03 0.07 ind:fut:1s; +moisiraient moisir ver 3.85 5.00 0.00 0.07 cnd:pre:3p; +moisirais moisir ver 3.85 5.00 0.01 0.00 cnd:pre:1s; +moisirait moisir ver 3.85 5.00 0.00 0.07 cnd:pre:3s; +moisiras moisir ver 3.85 5.00 0.05 0.00 ind:fut:2s; +moisirez moisir ver 3.85 5.00 0.04 0.00 ind:fut:2p; +moisiront moisir ver 3.85 5.00 0.00 0.14 ind:fut:3p; +moisis moisir ver m p 3.85 5.00 0.25 0.14 ind:pre:1s;par:pas; +moisissaient moisir ver 3.85 5.00 0.00 0.14 ind:imp:3p; +moisissais moisir ver 3.85 5.00 0.00 0.14 ind:imp:1s; +moisissait moisir ver 3.85 5.00 0.00 0.47 ind:imp:3s; +moisissant moisir ver 3.85 5.00 0.13 0.07 par:pre; +moisisse moisir ver 3.85 5.00 0.04 0.07 sub:pre:1s;sub:pre:3s; +moisissent moisir ver 3.85 5.00 0.04 0.14 ind:pre:3p; +moisissez moisir ver 3.85 5.00 0.03 0.00 imp:pre:2p;ind:pre:2p; +moisissure moisissure nom f s 1.39 3.78 1.15 2.57 +moisissures moisissure nom f p 1.39 3.78 0.25 1.22 +moisit moisir ver 3.85 5.00 0.13 0.41 ind:pre:3s;ind:pas:3s; +moisson moisson nom f s 3.08 7.91 2.62 4.05 +moissonnait moissonner ver 1.01 1.01 0.00 0.07 ind:imp:3s; +moissonnant moissonner ver 1.01 1.01 0.00 0.07 par:pre; +moissonne moissonner ver 1.01 1.01 0.11 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +moissonnent moissonner ver 1.01 1.01 0.16 0.00 ind:pre:3p; +moissonner moissonner ver 1.01 1.01 0.18 0.41 inf; +moissonnera moissonner ver 1.01 1.01 0.02 0.00 ind:fut:3s; +moissonnerai moissonner ver 1.01 1.01 0.12 0.00 ind:fut:1s; +moissonneur moissonneur nom m s 0.73 1.22 0.09 0.07 +moissonneurs moissonneur nom m p 0.73 1.22 0.30 0.81 +moissonneuse_batteuse moissonneuse_batteuse nom f s 0.04 0.47 0.04 0.27 +moissonneuse_lieuse moissonneuse_lieuse nom f s 0.00 0.14 0.00 0.07 +moissonneuse moissonneur nom f s 0.73 1.22 0.34 0.14 +moissonneuse_batteuse moissonneuse_batteuse nom f p 0.04 0.47 0.00 0.20 +moissonneuse_lieuse moissonneuse_lieuse nom f p 0.00 0.14 0.00 0.07 +moissonneuses moissonneuse nom f p 0.01 0.00 0.01 0.00 +moissonnez moissonner ver 1.01 1.01 0.16 0.00 imp:pre:2p;ind:pre:2p; +moissonné moissonner ver m s 1.01 1.01 0.26 0.14 par:pas; +moissonnée moissonner ver f s 1.01 1.01 0.01 0.00 par:pas; +moissonnées moissonner ver f p 1.01 1.01 0.00 0.07 par:pas; +moissonnés moissonner ver m p 1.01 1.01 0.00 0.14 par:pas; +moissons moisson nom f p 3.08 7.91 0.45 3.85 +moite moite adj s 1.98 15.14 1.01 10.00 +moites moite adj p 1.98 15.14 0.97 5.14 +moiteur moiteur nom f s 0.77 4.93 0.77 4.66 +moiteurs moiteur nom f p 0.77 4.93 0.00 0.27 +moiti moitir ver m s 0.04 0.00 0.04 0.00 par:pas; +moitié_moitié moitié_moitié adv 0.00 0.14 0.00 0.14 +moitié moitié nom f s 74.77 79.05 74.25 76.96 +moitiés moitié nom f p 74.77 79.05 0.52 2.09 +moka moka nom m s 0.64 1.89 0.55 1.55 +mokas moka nom m p 0.64 1.89 0.09 0.34 +moko moko nom m s 0.14 0.14 0.14 0.14 +mol mol adj m s 1.10 1.28 1.07 1.15 +molaire molaire nom f s 0.96 1.76 0.40 0.74 +molaires molaire nom f p 0.96 1.76 0.56 1.01 +molard molard nom m s 0.01 0.00 0.01 0.00 +molasse molasse nom f s 0.02 0.20 0.02 0.20 +moldave moldave nom s 0.27 0.00 0.27 0.00 +moldaves moldave adj p 0.02 0.14 0.00 0.14 +mâle mâle nom m s 11.72 15.95 8.96 10.00 +mole mole nom f s 0.27 0.47 0.27 0.41 +mâles mâle nom m p 11.72 15.95 2.76 5.95 +moles mole nom f p 0.27 0.47 0.00 0.07 +moleskine moleskine nom f s 0.01 3.31 0.01 3.31 +molesquine molesquine nom f s 0.00 0.88 0.00 0.88 +molesta molester ver 0.74 0.88 0.01 0.07 ind:pas:3s; +molestaient molester ver 0.74 0.88 0.00 0.07 ind:imp:3p; +molestant molester ver 0.74 0.88 0.01 0.07 par:pre; +molestation molestation nom f s 0.00 0.07 0.00 0.07 +moleste molester ver 0.74 0.88 0.03 0.07 ind:pre:3s; +molester molester ver 0.74 0.88 0.21 0.20 inf; +molestez molester ver 0.74 0.88 0.02 0.00 imp:pre:2p;ind:pre:2p; +molesté molester ver m s 0.74 0.88 0.33 0.27 par:pas; +molestée molester ver f s 0.74 0.88 0.11 0.00 par:pas; +molestés molester ver m p 0.74 0.88 0.02 0.14 par:pas; +moleta moleter ver 0.20 0.00 0.20 0.00 ind:pas:3s; +molette molette nom f s 0.43 1.01 0.42 0.88 +molettes molette nom f p 0.43 1.01 0.01 0.14 +moliéresque moliéresque adj f s 0.00 0.07 0.00 0.07 +mollah mollah nom m s 0.89 0.14 0.36 0.00 +mollahs mollah nom m p 0.89 0.14 0.53 0.14 +mollard mollard nom m s 0.20 1.82 0.16 1.69 +mollarder mollarder ver 0.02 0.07 0.00 0.07 inf; +mollards mollard nom m p 0.20 1.82 0.03 0.14 +mollardé mollarder ver m s 0.02 0.07 0.02 0.00 par:pas; +mollasse mollasse adj s 0.25 0.95 0.25 0.81 +mollasses mollasse adj m p 0.25 0.95 0.00 0.14 +mollasson mollasson nom m s 0.40 0.20 0.38 0.20 +mollassonne mollasson adj f s 0.30 0.27 0.04 0.07 +mollassons mollasson adj m p 0.30 0.27 0.02 0.07 +molle mou,mol adj f s 5.37 34.53 3.92 22.70 +mollement mollement adv 0.33 11.55 0.33 11.55 +molles mou,mol adj f p 5.37 34.53 1.45 11.82 +mollesse mollesse nom f s 0.44 6.42 0.44 6.28 +mollesses mollesse nom f p 0.44 6.42 0.00 0.14 +mollet mollet nom m s 1.77 14.93 0.67 5.27 +molletière molletière nom f s 0.10 3.18 0.00 0.14 +molletières molletière nom f p 0.10 3.18 0.10 3.04 +molleton molleton nom m s 0.00 0.88 0.00 0.81 +molletonneux molletonneux adj m p 0.00 0.07 0.00 0.07 +molletonné molletonner ver m s 0.01 0.07 0.01 0.00 par:pas; +molletonnée molletonné adj f s 0.00 0.14 0.00 0.07 +molletons molleton nom m p 0.00 0.88 0.00 0.07 +mollets mollet nom m p 1.77 14.93 1.11 9.66 +mollette mollet adj f s 0.06 0.61 0.01 0.00 +mollettes mollet adj f p 0.06 0.61 0.00 0.07 +molli mollir ver m s 1.18 2.57 0.03 0.34 par:pas; +mollie mollir ver f s 1.18 2.57 0.59 0.00 par:pas; +mollir mollir ver 1.18 2.57 0.04 0.61 inf; +mollis mollir ver 1.18 2.57 0.07 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mollissaient mollir ver 1.18 2.57 0.00 0.20 ind:imp:3p; +mollissait mollir ver 1.18 2.57 0.01 0.74 ind:imp:3s; +mollissant mollir ver 1.18 2.57 0.00 0.07 par:pre; +mollisse mollir ver 1.18 2.57 0.00 0.07 sub:pre:3s; +mollissent mollir ver 1.18 2.57 0.04 0.14 ind:pre:3p; +mollissez mollir ver 1.18 2.57 0.14 0.00 imp:pre:2p; +mollit mollir ver 1.18 2.57 0.26 0.41 ind:pre:3s;ind:pas:3s; +mollo mollo adv 5.23 2.30 5.23 2.30 +mollusque mollusque nom m s 0.93 1.22 0.57 0.81 +mollusques mollusque nom m p 0.93 1.22 0.35 0.41 +moloch moloch nom m s 0.00 0.07 0.00 0.07 +molosse molosse nom m s 0.54 1.76 0.24 0.74 +molosses molosse nom m p 0.54 1.76 0.30 1.01 +mols mol adj m p 1.10 1.28 0.03 0.14 +molènes molène nom f p 0.00 0.07 0.00 0.07 +molto molto adv 0.28 0.27 0.28 0.27 +moléculaire moléculaire adj s 2.40 0.41 2.30 0.27 +moléculaires moléculaire adj p 2.40 0.41 0.10 0.14 +molécule molécule nom f s 2.15 1.62 0.76 0.88 +molécules molécule nom f p 2.15 1.62 1.39 0.74 +moly moly nom m s 0.04 0.00 0.04 0.00 +molybdène molybdène nom m s 0.01 0.00 0.01 0.00 +moman moman nom f s 0.04 0.27 0.04 0.27 +mombin mombin nom m s 0.00 0.07 0.00 0.07 +moment_clé moment_clé nom m s 0.04 0.00 0.04 0.00 +moment moment nom m s 433.59 688.24 403.25 611.62 +momentané momentané adj m s 0.96 2.57 0.47 1.08 +momentanée momentané adj f s 0.96 2.57 0.34 1.15 +momentanées momentané adj f p 0.96 2.57 0.00 0.07 +momentanément momentanément adv 1.29 5.20 1.29 5.20 +momentanés momentané adj m p 0.96 2.57 0.16 0.27 +moments_clé moments_clé nom m p 0.01 0.00 0.01 0.00 +moments moment nom m p 433.59 688.24 30.34 76.62 +momerie momerie nom f s 0.14 0.61 0.00 0.27 +momeries momerie nom f p 0.14 0.61 0.14 0.34 +momichons momichon nom m p 0.00 0.07 0.00 0.07 +momie momie nom f s 4.66 4.86 3.89 3.31 +momies momie nom f p 4.66 4.86 0.76 1.55 +momifiait momifier ver 0.25 1.55 0.00 0.27 ind:imp:3s; +momifiant momifier ver 0.25 1.55 0.00 0.07 par:pre; +momification momification nom f s 0.07 0.00 0.07 0.00 +momifie momifier ver 0.25 1.55 0.00 0.07 ind:pre:3s; +momifier momifier ver 0.25 1.55 0.07 0.27 inf; +momifié momifier ver m s 0.25 1.55 0.14 0.20 par:pas; +momifiée momifié adj f s 0.24 1.22 0.02 0.41 +momifiées momifier ver f p 0.25 1.55 0.00 0.07 par:pas; +momifiés momifié adj m p 0.24 1.22 0.18 0.14 +mominette mominette nom f s 0.00 0.41 0.00 0.41 +mon mon adj_pos 3848.99 2307.97 3848.99 2307.97 +monômes monôme nom m p 0.00 0.14 0.00 0.14 +monacal monacal adj m s 0.01 1.22 0.00 0.41 +monacale monacal adj f s 0.01 1.22 0.01 0.68 +monacales monacal adj f p 0.01 1.22 0.00 0.14 +monachisme monachisme nom m s 0.00 0.07 0.00 0.07 +monades monade nom f p 0.00 0.07 0.00 0.07 +monadologie monadologie nom f s 0.01 0.00 0.01 0.00 +monarchie monarchie nom f s 1.10 4.86 1.10 4.53 +monarchies monarchie nom f p 1.10 4.86 0.00 0.34 +monarchique monarchique adj s 0.00 0.34 0.00 0.34 +monarchiste monarchiste adj s 0.61 1.28 0.31 1.08 +monarchistes monarchiste adj m p 0.61 1.28 0.30 0.20 +monarque monarque nom m s 1.37 1.96 1.16 1.55 +monarques monarque nom m p 1.37 1.96 0.20 0.41 +monastique monastique adj s 0.02 1.08 0.02 0.95 +monastiques monastique adj p 0.02 1.08 0.00 0.14 +monastère monastère nom m s 4.86 7.97 4.51 6.28 +monastères monastère nom m p 4.86 7.97 0.35 1.69 +monbazillac monbazillac nom m s 0.00 0.54 0.00 0.54 +monceau monceau nom m s 0.97 7.84 0.95 4.59 +monceaux monceau nom m p 0.97 7.84 0.02 3.24 +monda monder ver 0.15 0.07 0.10 0.00 ind:pas:3s; +mondain mondain adj m s 2.73 13.24 1.17 4.26 +mondaine mondain adj f s 2.73 13.24 0.84 4.53 +mondainement mondainement adv 0.00 0.14 0.00 0.14 +mondaines mondain adj f p 2.73 13.24 0.43 2.64 +mondains mondain adj m p 2.73 13.24 0.28 1.82 +mondanisaient mondaniser ver 0.00 0.14 0.00 0.07 ind:imp:3p; +mondanisé mondaniser ver m s 0.00 0.14 0.00 0.07 par:pas; +mondanité mondanité nom f s 0.33 2.64 0.01 0.81 +mondanités mondanité nom f p 0.33 2.64 0.32 1.82 +monde monde nom m s 830.72 741.35 823.62 732.43 +monder monder ver 0.15 0.07 0.01 0.00 inf; +mondes monde nom m p 830.72 741.35 7.11 8.92 +mondial mondial adj m s 13.79 16.35 4.27 2.50 +mondiale mondial adj f s 13.79 16.35 8.17 12.03 +mondialement mondialement adv 0.53 0.14 0.53 0.14 +mondiales mondial adj f p 13.79 16.35 0.80 0.74 +mondialisation mondialisation nom f s 0.13 0.00 0.13 0.00 +mondialisent mondialiser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +mondialistes mondialiste adj m p 0.00 0.07 0.00 0.07 +mondiaux mondial adj m p 13.79 16.35 0.55 1.08 +mondovision mondovision nom f s 0.03 0.07 0.03 0.07 +mondée monder ver f s 0.15 0.07 0.00 0.07 par:pas; +mânes mânes nom m p 0.01 0.41 0.01 0.41 +mongo mongo nom s 0.19 0.00 0.19 0.00 +mongol mongol adj m s 0.81 3.92 0.49 2.03 +mongole mongol nom f s 0.69 1.69 0.22 0.41 +mongoles mongol nom f p 0.69 1.69 0.12 0.00 +mongolie mongolie nom f s 0.00 0.07 0.00 0.07 +mongolien mongolien adj m s 0.56 0.07 0.39 0.00 +mongolienne mongolien adj f s 0.56 0.07 0.15 0.07 +mongoliennes mongolien adj f p 0.56 0.07 0.01 0.00 +mongoliens mongolien nom m p 0.38 1.01 0.01 0.34 +mongolique mongolique adj f s 0.00 0.14 0.00 0.07 +mongoliques mongolique adj m p 0.00 0.14 0.00 0.07 +mongoloïde mongoloïde adj s 0.00 0.07 0.00 0.07 +mongols mongol adj m p 0.81 3.92 0.17 0.27 +moniale moniale nom f s 0.00 0.14 0.00 0.14 +moniales moniale adj f p 0.00 0.07 0.00 0.07 +moniteur moniteur nom m s 4.26 5.61 2.44 1.89 +moniteurs moniteur nom m p 4.26 5.61 1.61 2.03 +monition monition nom f s 0.14 0.00 0.14 0.00 +monitor monitor nom m s 0.11 0.00 0.11 0.00 +monitorage monitorage nom m s 0.04 0.00 0.04 0.00 +monitoring monitoring nom m s 0.13 0.00 0.13 0.00 +monitrice moniteur nom f s 4.26 5.61 0.22 0.68 +monitrices moniteur nom f p 4.26 5.61 0.00 1.01 +monnaie_du_pape monnaie_du_pape nom f s 0.00 0.07 0.00 0.07 +monnaie monnaie nom f s 27.31 28.99 26.82 25.34 +monnaiera monnayer ver 0.70 1.49 0.00 0.07 ind:fut:3s; +monnaierai monnayer ver 0.70 1.49 0.01 0.00 ind:fut:1s; +monnaies_du_pape monnaies_du_pape nom f p 0.00 0.07 0.00 0.07 +monnaies monnaie nom f p 27.31 28.99 0.48 3.65 +monnaya monnayer ver 0.70 1.49 0.00 0.07 ind:pas:3s; +monnayable monnayable adj s 0.02 0.27 0.02 0.20 +monnayables monnayable adj m p 0.02 0.27 0.00 0.07 +monnayait monnayer ver 0.70 1.49 0.01 0.20 ind:imp:3s; +monnayant monnayer ver 0.70 1.49 0.00 0.07 par:pre; +monnaye monnayer ver 0.70 1.49 0.02 0.07 ind:pre:3s; +monnayer monnayer ver 0.70 1.49 0.29 0.74 inf; +monnayeur monnayeur nom m s 0.03 0.14 0.01 0.00 +monnayeurs monnayeur nom m p 0.03 0.14 0.02 0.14 +monnayé monnayer ver m s 0.70 1.49 0.03 0.20 par:pas; +monnayée monnayer ver f s 0.70 1.49 0.00 0.07 par:pas; +mono mono nom s 3.02 0.20 3.02 0.20 +monoamine monoamine nom f s 0.03 0.00 0.03 0.00 +monobloc monobloc nom m s 0.00 0.07 0.00 0.07 +monocellulaire monocellulaire adj f s 0.01 0.00 0.01 0.00 +monochrome monochrome adj m s 0.07 0.41 0.04 0.20 +monochromes monochrome adj f p 0.07 0.41 0.02 0.20 +monochromie monochromie nom f s 0.00 0.07 0.00 0.07 +monocle monocle nom m s 0.56 4.05 0.53 3.92 +monocles monocle nom m p 0.56 4.05 0.02 0.14 +monoclonal monoclonal adj m s 0.02 0.00 0.01 0.00 +monoclonaux monoclonal adj m p 0.02 0.00 0.01 0.00 +monoclé monoclé adj m s 0.00 0.14 0.00 0.14 +monocoque monocoque adj s 0.10 0.00 0.10 0.00 +monocorde monocorde adj s 0.03 2.57 0.02 2.09 +monocordes monocorde adj f p 0.03 2.57 0.01 0.47 +monocratie monocratie nom f s 0.01 0.00 0.01 0.00 +monoculaire monoculaire adj m s 0.01 0.07 0.00 0.07 +monoculaires monoculaire adj p 0.01 0.07 0.01 0.00 +monoculture monoculture nom f s 0.00 0.07 0.00 0.07 +monocycle monocycle nom m s 0.07 0.00 0.07 0.00 +monocylindre monocylindre nom m s 0.01 0.00 0.01 0.00 +monodie monodie nom f s 0.10 0.07 0.10 0.07 +monofilament monofilament nom m s 0.02 0.00 0.02 0.00 +monogame monogame adj s 0.50 0.47 0.31 0.34 +monogames monogame adj p 0.50 0.47 0.18 0.14 +monogamie monogamie nom f s 0.59 0.07 0.59 0.07 +monogramme monogramme nom m s 0.21 0.95 0.21 0.81 +monogrammes monogramme nom m p 0.21 0.95 0.00 0.14 +monogrammées monogrammé adj f p 0.01 0.00 0.01 0.00 +monographie monographie nom f s 0.20 0.61 0.19 0.27 +monographies monographie nom f p 0.20 0.61 0.01 0.34 +monokini monokini nom m s 0.32 0.00 0.32 0.00 +monolinguisme monolinguisme nom m s 0.10 0.00 0.10 0.00 +monolithe monolithe nom m s 0.13 0.14 0.12 0.07 +monolithes monolithe nom m p 0.13 0.14 0.01 0.07 +monolithique monolithique adj s 0.03 0.68 0.02 0.61 +monolithiques monolithique adj f p 0.03 0.68 0.01 0.07 +monolithisme monolithisme nom m s 0.00 0.07 0.00 0.07 +monologua monologuer ver 0.16 1.01 0.01 0.00 ind:pas:3s; +monologuaient monologuer ver 0.16 1.01 0.00 0.07 ind:imp:3p; +monologuais monologuer ver 0.16 1.01 0.00 0.14 ind:imp:1s; +monologuait monologuer ver 0.16 1.01 0.00 0.20 ind:imp:3s; +monologuant monologuer ver 0.16 1.01 0.00 0.34 par:pre; +monologue monologue nom m s 1.86 6.28 1.44 5.68 +monologuer monologuer ver 0.16 1.01 0.01 0.14 inf; +monologues monologue nom m p 1.86 6.28 0.42 0.61 +monomane monomane nom s 0.01 0.00 0.01 0.00 +monomanes monomane adj p 0.00 0.07 0.00 0.07 +monomaniaque monomaniaque adj s 0.04 0.20 0.04 0.07 +monomaniaques monomaniaque adj p 0.04 0.20 0.00 0.14 +monomanie monomanie nom f s 0.01 0.14 0.01 0.14 +monomoteur monomoteur nom m s 0.01 0.07 0.01 0.07 +monomoteurs monomoteur adj m p 0.03 0.00 0.03 0.00 +mononucléaire mononucléaire adj f s 0.00 0.07 0.00 0.07 +mononucléose mononucléose nom f s 0.40 0.07 0.40 0.07 +monoparental monoparental adj m s 0.09 0.00 0.01 0.00 +monoparentale monoparental adj f s 0.09 0.00 0.04 0.00 +monoparentales monoparental adj f p 0.09 0.00 0.01 0.00 +monoparentaux monoparental adj m p 0.09 0.00 0.03 0.00 +monophasée monophasé adj f s 0.00 0.07 0.00 0.07 +monoplace monoplace adj m s 0.04 0.14 0.04 0.14 +monoplaces monoplace nom p 0.02 0.07 0.02 0.00 +monoplan monoplan nom m s 0.10 0.47 0.09 0.34 +monoplans monoplan nom m p 0.10 0.47 0.01 0.14 +monopode monopode adj m s 0.01 0.00 0.01 0.00 +monopole monopole nom m s 1.61 3.11 1.32 2.91 +monopoles monopole nom m p 1.61 3.11 0.29 0.20 +monopolisa monopoliser ver 0.61 0.88 0.02 0.00 ind:pas:3s; +monopolisaient monopoliser ver 0.61 0.88 0.00 0.07 ind:imp:3p; +monopolisais monopoliser ver 0.61 0.88 0.00 0.07 ind:imp:1s; +monopolisait monopoliser ver 0.61 0.88 0.04 0.14 ind:imp:3s; +monopolise monopoliser ver 0.61 0.88 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +monopolisent monopoliser ver 0.61 0.88 0.15 0.00 ind:pre:3p; +monopoliser monopoliser ver 0.61 0.88 0.07 0.41 inf; +monopolisera monopoliser ver 0.61 0.88 0.01 0.00 ind:fut:3s; +monopolisez monopoliser ver 0.61 0.88 0.03 0.00 imp:pre:2p;ind:pre:2p; +monopolisèrent monopoliser ver 0.61 0.88 0.00 0.07 ind:pas:3p; +monopolisé monopoliser ver m s 0.61 0.88 0.04 0.00 par:pas; +monopolisés monopoliser ver m p 0.61 0.88 0.01 0.07 par:pas; +monopoly monopoly nom m s 1.37 0.41 1.37 0.41 +monoprix monoprix nom m 0.21 0.27 0.21 0.27 +monorail monorail nom m s 0.55 0.00 0.48 0.00 +monorails monorail nom m p 0.55 0.00 0.07 0.00 +monospace monospace nom m s 0.18 0.00 0.18 0.00 +monosyllabe monosyllabe nom m s 0.06 1.35 0.00 0.27 +monosyllabes monosyllabe nom m p 0.06 1.35 0.06 1.08 +monosyllabique monosyllabique adj m s 0.04 0.14 0.02 0.07 +monosyllabiques monosyllabique adj m p 0.04 0.14 0.01 0.07 +monothéisme monothéisme nom m s 0.00 0.34 0.00 0.27 +monothéismes monothéisme nom m p 0.00 0.34 0.00 0.07 +monothéiste monothéiste adj f s 0.00 0.14 0.00 0.07 +monothéistes monothéiste adj p 0.00 0.14 0.00 0.07 +monotone monotone adj s 1.48 15.47 1.30 13.24 +monotonement monotonement adv 0.10 0.41 0.10 0.41 +monotones monotone adj p 1.48 15.47 0.18 2.23 +monotonie monotonie nom f s 0.87 4.93 0.87 4.93 +monotype monotype nom m s 0.00 0.07 0.00 0.07 +monoxyde monoxyde nom m s 0.40 0.07 0.40 0.07 +monoxyle monoxyle adj f s 0.00 0.07 0.00 0.07 +mons mons nom s 0.41 0.07 0.41 0.07 +monseigneur monseigneur nom_sup m s 26.26 5.34 26.26 5.34 +monsieur monsieur nom_sup m s 739.12 324.86 583.45 286.76 +monsignor monsignor nom m s 0.17 0.14 0.17 0.14 +monsignore monsignore nom m s 0.16 0.07 0.16 0.07 +monstrance monstrance nom f s 0.00 0.14 0.00 0.07 +monstrances monstrance nom f p 0.00 0.14 0.00 0.07 +monstre monstre nom m s 62.56 26.96 48.42 18.18 +monstres monstre nom m p 62.56 26.96 14.14 8.78 +monstrueuse monstrueux adj f s 8.93 20.88 1.89 7.97 +monstrueusement monstrueusement adv 0.30 1.69 0.30 1.69 +monstrueuses monstrueux adj f p 8.93 20.88 0.41 2.30 +monstrueux monstrueux adj m 8.93 20.88 6.63 10.61 +monstruosité monstruosité nom f s 0.93 2.77 0.40 2.16 +monstruosités monstruosité nom f p 0.93 2.77 0.53 0.61 +mont_blanc mont_blanc nom m s 1.84 0.47 1.64 0.41 +mont_de_piété mont_de_piété nom m s 0.98 0.81 0.98 0.81 +mont mont nom m s 12.63 18.92 9.04 12.36 +monta monter ver 277.19 404.59 1.07 34.05 ind:pas:3s; +montage montage nom m s 6.66 2.91 6.35 2.77 +montages montage nom m p 6.66 2.91 0.31 0.14 +montagnard montagnard nom m s 1.05 2.03 0.28 0.61 +montagnarde montagnard adj f s 0.42 1.22 0.16 0.27 +montagnardes montagnard adj f p 0.42 1.22 0.00 0.20 +montagnards montagnard nom m p 1.05 2.03 0.74 1.22 +montagne montagne nom f s 62.01 81.82 36.76 49.80 +montagnes montagne nom f p 62.01 81.82 25.25 32.03 +montagneuse montagneux adj f s 0.41 1.35 0.05 0.41 +montagneuses montagneux adj f p 0.41 1.35 0.02 0.27 +montagneux montagneux adj m 0.41 1.35 0.33 0.68 +montai monter ver 277.19 404.59 0.04 4.86 ind:pas:1s; +montaient monter ver 277.19 404.59 0.83 21.96 ind:imp:3p; +montais monter ver 277.19 404.59 1.52 3.58 ind:imp:1s;ind:imp:2s; +montaison montaison nom f s 0.00 0.07 0.00 0.07 +montait monter ver 277.19 404.59 3.95 62.57 ind:imp:3s; +montant montant nom m s 5.97 12.84 5.31 8.38 +montante montant adj f s 1.65 8.38 0.86 4.59 +montantes montant adj f p 1.65 8.38 0.30 1.15 +montants montant nom m p 5.97 12.84 0.66 4.46 +monte_charge monte_charge nom m 0.51 0.54 0.51 0.54 +monte_charges monte_charges nom m 0.01 0.07 0.01 0.07 +monte_en_l_air monte_en_l_air nom m 0.12 0.20 0.12 0.20 +monte_plat monte_plat nom m s 0.01 0.00 0.01 0.00 +monte_plats monte_plats nom m 0.04 0.07 0.04 0.07 +monte monter ver 277.19 404.59 109.76 70.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +montent monter ver 277.19 404.59 4.86 14.39 ind:pre:3p; +monter monter ver 277.19 404.59 85.57 96.89 inf; +montera monter ver 277.19 404.59 2.36 1.82 ind:fut:3s; +monterai monter ver 277.19 404.59 1.61 1.22 ind:fut:1s; +monteraient monter ver 277.19 404.59 0.10 0.41 cnd:pre:3p; +monterais monter ver 277.19 404.59 0.53 0.41 cnd:pre:1s;cnd:pre:2s; +monterait monter ver 277.19 404.59 0.55 2.84 cnd:pre:3s; +monteras monter ver 277.19 404.59 0.76 0.47 ind:fut:2s; +monterez monter ver 277.19 404.59 0.23 0.34 ind:fut:2p; +monteriez monter ver 277.19 404.59 0.03 0.00 cnd:pre:2p; +monterons monter ver 277.19 404.59 0.31 0.34 ind:fut:1p; +monteront monter ver 277.19 404.59 0.34 0.34 ind:fut:3p; +montes monter ver 277.19 404.59 6.27 2.30 ind:pre:2s;sub:pre:2s; +monteur monteur nom m s 1.46 0.68 1.07 0.27 +monteurs monteur nom m p 1.46 0.68 0.09 0.27 +monteuse monteur nom f s 1.46 0.68 0.30 0.14 +montez monter ver 277.19 404.59 15.38 1.89 imp:pre:2p;ind:pre:2p; +montgolfière montgolfière nom f s 0.81 0.95 0.78 0.81 +montgolfières montgolfière nom f p 0.81 0.95 0.04 0.14 +monticule monticule nom m s 0.60 3.78 0.58 1.96 +monticules monticule nom m p 0.60 3.78 0.02 1.82 +montiez monter ver 277.19 404.59 0.64 0.14 ind:imp:2p; +montions monter ver 277.19 404.59 0.19 1.69 ind:imp:1p; +montjoie montjoie nom f s 0.05 0.34 0.05 0.34 +montmartrois montmartrois adj m 0.00 0.74 0.00 0.41 +montmartroise montmartrois adj f s 0.00 0.74 0.00 0.20 +montmartroises montmartrois adj f p 0.00 0.74 0.00 0.14 +montâmes monter ver 277.19 404.59 0.00 1.55 ind:pas:1p; +montons monter ver 277.19 404.59 3.44 2.70 imp:pre:1p;ind:pre:1p; +montât monter ver 277.19 404.59 0.00 0.54 sub:imp:3s; +montparno montparno nom m s 0.00 0.20 0.00 0.20 +montpelliéraine montpelliérain nom f s 0.00 0.07 0.00 0.07 +montra montrer ver 327.33 276.55 0.77 29.46 ind:pas:3s; +montrable montrable adj s 0.02 0.41 0.02 0.34 +montrables montrable adj f p 0.02 0.41 0.00 0.07 +montrai montrer ver 327.33 276.55 0.42 1.76 ind:pas:1s; +montraient montrer ver 327.33 276.55 0.98 8.78 ind:imp:3p; +montrais montrer ver 327.33 276.55 1.72 2.43 ind:imp:1s;ind:imp:2s; +montrait montrer ver 327.33 276.55 3.27 33.65 ind:imp:3s; +montrant montrer ver 327.33 276.55 2.02 23.24 par:pre; +montrassent montrer ver 327.33 276.55 0.00 0.14 sub:imp:3p; +montre_bracelet montre_bracelet nom f s 0.08 2.09 0.07 1.82 +montre_gousset montre_gousset nom f s 0.01 0.07 0.01 0.07 +montre_la_moi montre_la_moi nom f s 0.14 0.00 0.14 0.00 +montre montrer ver 327.33 276.55 85.44 38.99 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +montrent montrer ver 327.33 276.55 8.82 4.93 ind:pre:3p; +montrer montrer ver 327.33 276.55 136.20 81.15 inf;; +montrera montrer ver 327.33 276.55 4.71 1.96 ind:fut:3s; +montrerai montrer ver 327.33 276.55 7.58 3.18 ind:fut:1s; +montreraient montrer ver 327.33 276.55 0.11 0.14 cnd:pre:3p; +montrerais montrer ver 327.33 276.55 1.05 0.34 cnd:pre:1s;cnd:pre:2s; +montrerait montrer ver 327.33 276.55 0.78 2.57 cnd:pre:3s; +montreras montrer ver 327.33 276.55 1.46 0.61 ind:fut:2s; +montrerez montrer ver 327.33 276.55 1.02 0.27 ind:fut:2p; +montreriez montrer ver 327.33 276.55 0.16 0.00 cnd:pre:2p; +montrerons montrer ver 327.33 276.55 0.83 0.14 ind:fut:1p; +montreront montrer ver 327.33 276.55 0.54 0.07 ind:fut:3p; +montre_bracelet montre_bracelet nom f p 0.08 2.09 0.01 0.27 +montres montrer ver 327.33 276.55 5.93 1.08 ind:pre:1p;ind:pre:2s;sub:pre:2s; +montreur montreur nom m s 0.48 1.35 0.45 0.81 +montreurs montreur nom m p 0.48 1.35 0.02 0.41 +montreuse montreur nom f s 0.48 1.35 0.01 0.07 +montreuses montreur nom f p 0.48 1.35 0.00 0.07 +montrez montrer ver 327.33 276.55 26.48 2.57 imp:pre:2p;ind:pre:2p; +montriez montrer ver 327.33 276.55 0.70 0.41 ind:imp:2p; +montrions montrer ver 327.33 276.55 0.05 0.27 ind:imp:1p; +montrâmes montrer ver 327.33 276.55 0.00 0.07 ind:pas:1p; +montrons montrer ver 327.33 276.55 2.77 0.27 imp:pre:1p;ind:pre:1p; +montrât montrer ver 327.33 276.55 0.00 1.01 sub:imp:3s; +montrèrent montrer ver 327.33 276.55 0.01 1.82 ind:pas:3p; +montré montrer ver m s 327.33 276.55 29.65 28.11 par:pas; +montrée montrer ver f s 327.33 276.55 2.61 4.39 ind:imp:3p;par:pas; +montrées montrer ver f p 327.33 276.55 0.42 0.88 par:pas; +montrés montrer ver m p 327.33 276.55 0.81 1.89 par:pas; +mont_blanc mont_blanc nom m p 1.84 0.47 0.20 0.07 +monts mont nom m p 12.63 18.92 3.59 6.55 +montèrent monter ver 277.19 404.59 0.07 7.97 ind:pas:3p; +monté monter ver m s 277.19 404.59 23.72 28.72 par:pas; +montée monter ver f s 277.19 404.59 6.11 13.18 par:pas; +montées monter ver f p 277.19 404.59 0.70 3.18 par:pas; +montueuse montueux adj f s 0.00 0.47 0.00 0.20 +montueuses montueux adj f p 0.00 0.47 0.00 0.14 +montueux montueux adj m 0.00 0.47 0.00 0.14 +monténégrin monténégrin adj m s 0.01 0.07 0.01 0.00 +monténégrines monténégrin adj f p 0.01 0.07 0.00 0.07 +monture monture nom f s 2.21 16.62 1.61 11.55 +montures monture nom f p 2.21 16.62 0.60 5.07 +montés monter ver m p 277.19 404.59 3.94 9.73 par:pas; +monument monument nom m s 6.68 19.32 5.07 10.54 +monumental monumental adj m s 1.67 12.03 0.62 4.32 +monumentale monumental adj f s 1.67 12.03 0.71 5.20 +monumentalement monumentalement adv 0.03 0.00 0.03 0.00 +monumentales monumental adj f p 1.67 12.03 0.29 1.96 +monumentalité monumentalité nom f s 0.01 0.00 0.01 0.00 +monumentaux monumental adj m p 1.67 12.03 0.04 0.54 +monuments monument nom m p 6.68 19.32 1.61 8.78 +monétaire monétaire adj s 0.90 2.16 0.81 1.49 +monétaires monétaire adj p 0.90 2.16 0.10 0.68 +monétariste monétariste adj s 0.01 0.00 0.01 0.00 +moonisme moonisme nom m s 0.00 0.07 0.00 0.07 +moonistes mooniste nom p 0.03 0.00 0.03 0.00 +mooré mooré nom m s 0.03 0.00 0.03 0.00 +moos moos nom m 0.03 0.00 0.03 0.00 +moose moose adj s 0.60 0.00 0.60 0.00 +moqua moquer ver 71.13 50.34 0.01 0.88 ind:pas:3s; +moquai moquer ver 71.13 50.34 0.01 0.20 ind:pas:1s; +moquaient moquer ver 71.13 50.34 0.96 2.70 ind:imp:3p; +moquais moquer ver 71.13 50.34 0.75 1.42 ind:imp:1s;ind:imp:2s; +moquait moquer ver 71.13 50.34 2.20 9.39 ind:imp:3s; +moquant moquer ver 71.13 50.34 0.78 1.89 par:pre; +moque moquer ver 71.13 50.34 25.79 11.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +moquent moquer ver 71.13 50.34 4.18 2.36 ind:pre:3p; +moquer moquer ver 71.13 50.34 11.47 9.46 ind:pre:2p;inf; +moquera moquer ver 71.13 50.34 0.72 0.27 ind:fut:3s; +moquerai moquer ver 71.13 50.34 0.09 0.00 ind:fut:1s; +moqueraient moquer ver 71.13 50.34 0.03 0.00 cnd:pre:3p; +moquerais moquer ver 71.13 50.34 0.29 0.14 cnd:pre:1s;cnd:pre:2s; +moquerait moquer ver 71.13 50.34 0.56 0.27 cnd:pre:3s; +moqueras moquer ver 71.13 50.34 0.06 0.07 ind:fut:2s; +moquerez moquer ver 71.13 50.34 0.28 0.07 ind:fut:2p; +moquerie moquerie nom f s 1.69 6.35 0.64 3.72 +moqueries moquerie nom f p 1.69 6.35 1.05 2.64 +moqueriez moquer ver 71.13 50.34 0.01 0.07 cnd:pre:2p; +moqueront moquer ver 71.13 50.34 0.10 0.07 ind:fut:3p; +moques moquer ver 71.13 50.34 9.60 0.95 ind:pre:2s;sub:pre:2s; +moquette moquette nom f s 3.63 15.95 3.37 14.73 +moquettes moquette nom f p 3.63 15.95 0.27 1.22 +moquetté moquetter ver m s 0.00 0.20 0.00 0.07 par:pas; +moquettées moquetter ver f p 0.00 0.20 0.00 0.07 par:pas; +moquettés moquetter ver m p 0.00 0.20 0.00 0.07 par:pas; +moqueur moqueur adj m s 0.82 9.12 0.41 4.73 +moqueurs moqueur adj m p 0.82 9.12 0.28 1.01 +moqueuse moqueur adj f s 0.82 9.12 0.11 2.97 +moqueusement moqueusement adv 0.00 0.27 0.00 0.27 +moqueuses moqueur adj f p 0.82 9.12 0.02 0.41 +moquez moquer ver 71.13 50.34 7.98 1.15 imp:pre:2p;ind:pre:2p; +moquiez moquer ver 71.13 50.34 0.23 0.20 ind:imp:2p; +moquions moquer ver 71.13 50.34 0.00 1.01 ind:imp:1p; +moquons moquer ver 71.13 50.34 0.34 0.07 imp:pre:1p;ind:pre:1p; +moquât moquer ver 71.13 50.34 0.00 0.68 sub:imp:3s; +moquèrent moquer ver 71.13 50.34 0.00 0.61 ind:pas:3p; +moqué moquer ver m s 71.13 50.34 2.64 2.84 par:pas; +moquée moquer ver f s 71.13 50.34 1.02 1.15 par:pas; +moquées moquer ver f p 71.13 50.34 0.17 0.14 par:pas; +moqués moquer ver m p 71.13 50.34 0.84 0.47 par:pas; +moraillon moraillon nom m s 0.00 0.07 0.00 0.07 +moraine moraine nom f s 0.08 0.47 0.07 0.07 +moraines moraine nom f p 0.08 0.47 0.01 0.41 +morainique morainique adj s 0.01 0.20 0.01 0.14 +morainiques morainique adj p 0.01 0.20 0.00 0.07 +moral moral nom m s 10.27 14.19 10.17 14.19 +morale morale nom f s 13.13 21.49 12.89 21.01 +moralement moralement adv 1.98 7.30 1.98 7.30 +morales moral adj f p 16.39 34.53 2.26 4.93 +moralisante moralisant adj f s 0.00 0.14 0.00 0.14 +moralisateur moralisateur nom m s 0.73 0.00 0.47 0.00 +moralisateurs moralisateur nom m p 0.73 0.00 0.26 0.00 +moralisation moralisation nom f s 0.01 0.07 0.01 0.07 +moralisatrice moralisateur adj f s 0.20 0.68 0.04 0.07 +moralise moraliser ver 0.03 0.41 0.00 0.14 ind:pre:3s; +moraliser moraliser ver 0.03 0.41 0.03 0.20 inf; +moralisme moralisme nom m s 0.15 0.27 0.15 0.27 +moraliste moraliste nom s 0.48 1.49 0.40 0.74 +moralistes moraliste adj p 0.55 0.41 0.16 0.20 +moralisée moraliser ver f s 0.03 0.41 0.00 0.07 par:pas; +moralité moralité nom f s 4.86 3.04 4.57 2.91 +moralités moralité nom f p 4.86 3.04 0.29 0.14 +morasse morasse nom f s 0.00 0.81 0.00 0.61 +morasses morasse nom f p 0.00 0.81 0.00 0.20 +moratoire moratoire nom m s 0.17 0.07 0.17 0.07 +moraux moral adj m p 16.39 34.53 1.59 1.76 +morave morave adj m s 0.02 0.00 0.01 0.00 +moraves morave adj m p 0.02 0.00 0.01 0.00 +morbac morbac nom m s 0.17 0.20 0.14 0.14 +morbacs morbac nom m p 0.17 0.20 0.02 0.07 +morbaque morbaque nom m s 0.02 0.54 0.01 0.14 +morbaques morbaque nom m p 0.02 0.54 0.01 0.41 +morbide morbide adj s 3.92 4.73 2.83 3.99 +morbidement morbidement adv 0.01 0.07 0.01 0.07 +morbides morbide adj p 3.92 4.73 1.09 0.74 +morbidesse morbidesse nom f s 0.00 0.14 0.00 0.14 +morbidité morbidité nom f s 0.07 0.14 0.07 0.14 +morbier morbier nom m s 0.00 0.07 0.00 0.07 +morbleu morbleu ono 0.54 0.14 0.54 0.14 +morceau morceau nom m s 64.78 99.32 40.65 57.84 +morceaux morceau nom m p 64.78 99.32 24.13 41.49 +morcela morceler ver 0.47 1.28 0.00 0.07 ind:pas:3s; +morcelait morceler ver 0.47 1.28 0.00 0.27 ind:imp:3s; +morcelant morceler ver 0.47 1.28 0.00 0.20 par:pre; +morceler morceler ver 0.47 1.28 0.03 0.14 inf; +morcellement morcellement nom m s 0.00 0.34 0.00 0.27 +morcellements morcellement nom m p 0.00 0.34 0.00 0.07 +morcellent morceler ver 0.47 1.28 0.00 0.27 ind:pre:3p; +morcellera morceler ver 0.47 1.28 0.01 0.00 ind:fut:3s; +morcelé morceler ver m s 0.47 1.28 0.29 0.20 par:pas; +morcelée morcelé adj f s 0.11 0.61 0.11 0.20 +morcelées morceler ver f p 0.47 1.28 0.01 0.07 par:pas; +morcelés morceler ver m p 0.47 1.28 0.01 0.00 par:pas; +morcif morcif nom m s 0.00 0.34 0.00 0.20 +morcifs morcif nom m p 0.00 0.34 0.00 0.14 +mord mordre ver 44.85 48.45 7.95 4.80 ind:pre:3s; +mordît mordre ver 44.85 48.45 0.00 0.07 sub:imp:3s; +mordaient mordre ver 44.85 48.45 0.22 1.49 ind:imp:3p; +mordais mordre ver 44.85 48.45 0.36 0.54 ind:imp:1s;ind:imp:2s; +mordait mordre ver 44.85 48.45 1.09 5.74 ind:imp:3s; +mordant mordant nom m s 0.60 1.49 0.60 1.49 +mordante mordant adj f s 0.35 2.70 0.10 0.81 +mordantes mordant adj f p 0.35 2.70 0.01 0.07 +mordançage mordançage nom m s 0.00 0.14 0.00 0.14 +mordants mordant adj m p 0.35 2.70 0.01 0.20 +morde mordre ver 44.85 48.45 0.47 0.20 sub:pre:1s;sub:pre:3s; +mordent mordre ver 44.85 48.45 1.74 1.35 ind:pre:3p; +mordes mordre ver 44.85 48.45 0.15 0.07 sub:pre:2s; +mordeur mordeur nom m s 0.04 0.00 0.03 0.00 +mordeurs mordeur adj m p 0.03 0.14 0.01 0.07 +mordeuse mordeuse nom f s 0.03 0.00 0.03 0.00 +mordez mordre ver 44.85 48.45 0.92 0.41 imp:pre:2p;ind:pre:2p; +mordicus mordicus adv_sup 0.19 0.54 0.19 0.54 +mordieu mordieu ono 0.20 0.00 0.20 0.00 +mordilla mordiller ver 0.76 5.61 0.00 0.61 ind:pas:3s; +mordillage mordillage nom m s 0.00 0.07 0.00 0.07 +mordillaient mordiller ver 0.76 5.61 0.01 0.14 ind:imp:3p; +mordillais mordiller ver 0.76 5.61 0.00 0.07 ind:imp:1s; +mordillait mordiller ver 0.76 5.61 0.00 1.96 ind:imp:3s; +mordillant mordiller ver 0.76 5.61 0.02 1.01 par:pre; +mordille mordiller ver 0.76 5.61 0.30 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mordillement mordillement nom m s 0.00 0.61 0.00 0.27 +mordillements mordillement nom m p 0.00 0.61 0.00 0.34 +mordillent mordiller ver 0.76 5.61 0.00 0.14 ind:pre:3p; +mordiller mordiller ver 0.76 5.61 0.25 0.68 inf; +mordillera mordiller ver 0.76 5.61 0.00 0.07 ind:fut:3s; +mordillez mordiller ver 0.76 5.61 0.01 0.00 imp:pre:2p; +mordillé mordiller ver m s 0.76 5.61 0.14 0.07 par:pas; +mordillée mordiller ver f s 0.76 5.61 0.02 0.20 par:pas; +mordillées mordiller ver f p 0.76 5.61 0.00 0.07 par:pas; +mordillés mordiller ver m p 0.76 5.61 0.00 0.14 par:pas; +mordions mordre ver 44.85 48.45 0.01 0.14 ind:imp:1p; +mordirent mordre ver 44.85 48.45 0.00 0.20 ind:pas:3p; +mordis mordre ver 44.85 48.45 0.00 0.41 ind:pas:1s;ind:pas:2s; +mordissent mordre ver 44.85 48.45 0.00 0.07 sub:imp:3p; +mordit mordre ver 44.85 48.45 0.09 6.01 ind:pas:3s; +mordorait mordorer ver 0.00 0.34 0.00 0.07 ind:imp:3s; +mordoré mordoré adj m s 0.04 2.16 0.01 0.41 +mordorée mordoré adj f s 0.04 2.16 0.00 0.61 +mordorées mordoré adj f p 0.04 2.16 0.02 0.34 +mordorés mordoré adj m p 0.04 2.16 0.01 0.81 +mordra mordre ver 44.85 48.45 0.80 0.20 ind:fut:3s; +mordrai mordre ver 44.85 48.45 0.40 0.00 ind:fut:1s; +mordraient mordre ver 44.85 48.45 0.01 0.14 cnd:pre:3p; +mordrais mordre ver 44.85 48.45 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +mordrait mordre ver 44.85 48.45 0.35 0.41 cnd:pre:3s; +mordras mordre ver 44.85 48.45 0.22 0.00 ind:fut:2s; +mordre mordre ver 44.85 48.45 8.83 12.36 inf;; +mordrez mordre ver 44.85 48.45 0.25 0.00 ind:fut:2p; +mordront mordre ver 44.85 48.45 0.58 0.07 ind:fut:3p; +mords mordre ver 44.85 48.45 6.30 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mordu mordre ver m s 44.85 48.45 10.22 6.28 par:pas; +mordue mordre ver f s 44.85 48.45 2.77 1.08 par:pas; +mordues mordre ver f p 44.85 48.45 0.32 0.34 par:pas; +mordus mordre ver m p 44.85 48.45 0.45 0.54 par:pas; +more more adj s 3.69 0.07 3.68 0.07 +moreau moreau adj m s 0.02 0.00 0.02 0.00 +morelle morelle nom f s 0.01 0.00 0.01 0.00 +mores more nom p 0.55 0.14 0.01 0.07 +moresque moresque nom f s 0.27 0.00 0.27 0.00 +morfal morfal adj m s 0.04 0.47 0.01 0.07 +morfale morfal adj f s 0.04 0.47 0.01 0.20 +morfaler morfaler ver 0.00 0.41 0.00 0.14 inf; +morfales morfal adj f p 0.04 0.47 0.01 0.07 +morfalou morfalou nom m s 0.00 0.07 0.00 0.07 +morfals morfal adj m p 0.04 0.47 0.00 0.14 +morfalé morfaler ver m s 0.00 0.41 0.00 0.07 par:pas; +morfalée morfaler ver f s 0.00 0.41 0.00 0.07 par:pas; +morfalés morfaler ver m p 0.00 0.41 0.00 0.07 par:pas; +morfil morfil nom m s 0.00 0.07 0.00 0.07 +morflais morfler ver 2.01 2.91 0.00 0.14 ind:imp:2s; +morflait morfler ver 2.01 2.91 0.01 0.14 ind:imp:3s; +morfle morfler ver 2.01 2.91 0.38 0.41 ind:pre:1s;ind:pre:3s; +morfler morfler ver 2.01 2.91 0.93 0.88 inf; +morflera morfler ver 2.01 2.91 0.01 0.14 ind:fut:3s; +morfleras morfler ver 2.01 2.91 0.01 0.00 ind:fut:2s; +morflerez morfler ver 2.01 2.91 0.01 0.00 ind:fut:2p; +morfles morfler ver 2.01 2.91 0.04 0.00 ind:pre:2s; +morflé morfler ver m s 2.01 2.91 0.62 1.08 par:pas; +morflée morfler ver f s 2.01 2.91 0.00 0.14 par:pas; +morfond morfondre ver 1.26 2.50 0.34 0.34 ind:pre:3s; +morfondaient morfondre ver 1.26 2.50 0.00 0.20 ind:imp:3p; +morfondais morfondre ver 1.26 2.50 0.00 0.07 ind:imp:1s; +morfondait morfondre ver 1.26 2.50 0.14 0.68 ind:imp:3s; +morfondant morfondre ver 1.26 2.50 0.00 0.14 par:pre; +morfonde morfondre ver 1.26 2.50 0.01 0.07 sub:pre:1s;sub:pre:3s; +morfondis morfondre ver 1.26 2.50 0.00 0.07 ind:pas:1s; +morfondra morfondre ver 1.26 2.50 0.01 0.00 ind:fut:3s; +morfondre morfondre ver 1.26 2.50 0.47 0.68 inf; +morfonds morfondre ver 1.26 2.50 0.28 0.07 imp:pre:2s;ind:pre:1s; +morfondu morfondre ver m s 1.26 2.50 0.02 0.20 par:pas; +morfondue morfondu adj f s 0.00 0.68 0.00 0.27 +morgana morganer ver 0.26 0.34 0.24 0.00 ind:pas:3s; +morganatique morganatique adj m s 0.00 0.14 0.00 0.07 +morganatiques morganatique adj f p 0.00 0.14 0.00 0.07 +morgane morganer ver 0.26 0.34 0.02 0.14 imp:pre:2s;ind:pre:3s; +morganer morganer ver 0.26 0.34 0.00 0.14 inf; +morganerai morganer ver 0.26 0.34 0.00 0.07 ind:fut:1s; +morgeline morgeline nom f s 0.01 0.00 0.01 0.00 +morgon morgon nom m s 0.01 0.00 0.01 0.00 +morgue morgue nom f s 10.12 7.03 9.95 6.76 +morgues morgue nom f p 10.12 7.03 0.17 0.27 +moria moria nom f s 0.08 0.00 0.08 0.00 +moribond moribond adj m s 0.65 2.50 0.52 1.35 +moribonde moribond adj f s 0.65 2.50 0.05 0.54 +moribondes moribond adj f p 0.65 2.50 0.03 0.20 +moribonds moribond nom m p 0.45 2.23 0.14 0.47 +moricaud moricaud nom m s 0.16 0.95 0.07 0.07 +moricaude moricaud nom f s 0.16 0.95 0.01 0.74 +moricaudes moricaud nom f p 0.16 0.95 0.00 0.07 +moricauds moricaud nom m p 0.16 0.95 0.08 0.07 +morigène morigéner ver 0.00 1.22 0.00 0.14 ind:pre:3s; +morigéna morigéner ver 0.00 1.22 0.00 0.07 ind:pas:3s; +morigénai morigéner ver 0.00 1.22 0.00 0.07 ind:pas:1s; +morigénais morigéner ver 0.00 1.22 0.00 0.07 ind:imp:1s; +morigénait morigéner ver 0.00 1.22 0.00 0.07 ind:imp:3s; +morigénant morigéner ver 0.00 1.22 0.00 0.27 par:pre; +morigéner morigéner ver 0.00 1.22 0.00 0.20 inf; +morigéné morigéner ver m s 0.00 1.22 0.00 0.20 par:pas; +morigénée morigéner ver f s 0.00 1.22 0.00 0.14 par:pas; +morille morille nom f s 0.17 0.61 0.00 0.14 +morilles morille nom f p 0.17 0.61 0.17 0.47 +morillon morillon nom m s 0.14 0.88 0.14 0.81 +morillons morillon nom m p 0.14 0.88 0.00 0.07 +morlingue morlingue nom m s 0.00 1.28 0.00 1.01 +morlingues morlingue nom m p 0.00 1.28 0.00 0.27 +mormon mormon adj m s 0.44 0.14 0.24 0.07 +mormone mormon adj f s 0.44 0.14 0.06 0.07 +mormones mormon adj f p 0.44 0.14 0.03 0.00 +mormons mormon nom m p 0.75 0.14 0.55 0.14 +morne morne adj s 1.06 19.66 0.81 14.46 +mornement mornement adv 0.01 0.07 0.01 0.07 +mornes morne adj p 1.06 19.66 0.25 5.20 +mornifle mornifle nom f s 0.00 0.81 0.00 0.81 +moro moro adj s 0.01 0.00 0.01 0.00 +morose morose adj s 1.23 8.78 1.00 7.23 +morosement morosement adv 0.00 0.07 0.00 0.07 +moroses morose adj p 1.23 8.78 0.24 1.55 +morosité morosité nom f s 0.07 1.08 0.07 1.01 +morosités morosité nom f p 0.07 1.08 0.00 0.07 +morphine morphine nom f s 7.37 1.62 7.37 1.62 +morphing morphing nom m s 0.01 0.00 0.01 0.00 +morphinomane morphinomane adj m s 0.14 0.14 0.14 0.14 +morphique morphique adj s 0.04 0.00 0.04 0.00 +morpho morpho adv 0.03 0.00 0.03 0.00 +morphogenèse morphogenèse nom f s 0.01 0.00 0.01 0.00 +morphogénétique morphogénétique adj m s 0.11 0.00 0.11 0.00 +morphologie morphologie nom f s 0.33 0.81 0.33 0.81 +morphologique morphologique adj s 0.01 0.14 0.00 0.07 +morphologiques morphologique adj f p 0.01 0.14 0.01 0.07 +morpion morpion nom m s 2.14 1.76 0.46 0.95 +morpions morpion nom m p 2.14 1.76 1.68 0.81 +mors mors nom m 0.64 1.89 0.64 1.89 +morse morse nom m s 3.50 0.88 3.50 0.88 +morsure morsure nom f s 6.31 5.95 3.90 4.26 +morsures morsure nom f p 6.31 5.95 2.41 1.69 +mort_aux_rats mort_aux_rats nom f 0.61 0.47 0.61 0.47 +mort_né mort_né adj m s 0.80 0.61 0.53 0.34 +mort_né mort_né adj f s 0.80 0.61 0.23 0.00 +mort_né mort_né adj f p 0.80 0.61 0.00 0.07 +mort_né mort_né adj m p 0.80 0.61 0.04 0.20 +mort_vivant mort_vivant nom m s 1.46 0.81 0.41 0.27 +mort mort nom 460.05 452.70 372.07 373.99 +mortadelle mortadelle nom f s 0.79 0.34 0.79 0.34 +mortaise mortaise nom f s 0.16 0.20 0.14 0.00 +mortaiser mortaiser ver 0.01 0.20 0.01 0.20 inf; +mortaises mortaise nom f p 0.16 0.20 0.01 0.20 +mortaiseuse mortaiseur nom f s 0.00 0.14 0.00 0.14 +mortalité mortalité nom f s 1.51 0.61 1.51 0.61 +morte_saison morte_saison nom f s 0.01 1.08 0.01 1.01 +morte mourir ver f s 916.42 391.08 112.36 44.93 par:pas; +mortel mortel adj m s 24.13 20.07 14.62 8.38 +mortelle mortel adj f s 24.13 20.07 5.69 6.69 +mortellement mortellement adv 2.03 3.18 2.03 3.18 +mortelles mortel adj f p 24.13 20.07 1.22 2.30 +mortels mortel nom m p 6.89 4.80 3.32 3.31 +mortes_eaux mortes_eaux nom f p 0.00 0.07 0.00 0.07 +morte_saison morte_saison nom f p 0.01 1.08 0.00 0.07 +mortes mourir ver f p 916.42 391.08 5.32 3.04 par:pas; +mortibus mortibus adj m s 0.02 0.34 0.02 0.34 +mortier mortier nom m s 2.06 5.61 1.30 3.51 +mortiers mortier nom m p 2.06 5.61 0.76 2.09 +mortifia mortifier ver 1.63 3.78 0.00 0.07 ind:pas:3s; +mortifiai mortifier ver 1.63 3.78 0.00 0.07 ind:pas:1s; +mortifiaient mortifier ver 1.63 3.78 0.00 0.07 ind:imp:3p; +mortifiait mortifier ver 1.63 3.78 0.00 0.54 ind:imp:3s; +mortifiant mortifiant adj m s 0.05 0.41 0.05 0.20 +mortifiante mortifiant adj f s 0.05 0.41 0.00 0.07 +mortifiantes mortifiant adj f p 0.05 0.41 0.00 0.07 +mortifiants mortifiant adj m p 0.05 0.41 0.00 0.07 +mortification mortification nom f s 0.56 1.22 0.54 0.68 +mortifications mortification nom f p 0.56 1.22 0.02 0.54 +mortifie mortifier ver 1.63 3.78 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mortifier mortifier ver 1.63 3.78 0.19 0.68 inf; +mortifié mortifier ver m s 1.63 3.78 0.91 1.28 par:pas; +mortifiée mortifier ver f s 1.63 3.78 0.49 0.74 par:pas; +mortifiés mortifier ver m p 1.63 3.78 0.00 0.27 par:pas; +mortifère mortifère adj s 0.02 0.34 0.01 0.20 +mortifères mortifère adj m p 0.02 0.34 0.01 0.14 +mort_vivant mort_vivant nom m p 1.46 0.81 1.05 0.54 +morts mort nom p 460.05 452.70 78.09 66.15 +mortuaire mortuaire adj s 1.86 5.47 1.61 4.59 +mortuaires mortuaire adj p 1.86 5.47 0.25 0.88 +morue morue nom f s 3.67 5.61 3.46 4.86 +morues morue nom f p 3.67 5.61 0.20 0.74 +morula morula nom f s 0.01 0.00 0.01 0.00 +morvandiau morvandiau adj m s 0.00 0.20 0.00 0.20 +morve morve nom f s 1.60 1.96 1.60 1.82 +morves morve nom f p 1.60 1.96 0.00 0.14 +morveuse morveux nom f s 4.97 2.43 0.46 0.14 +morveuses morveux adj f p 2.11 1.22 0.01 0.07 +morveux morveux nom m 4.97 2.43 4.51 2.30 +mos mos nom m 0.01 0.00 0.01 0.00 +mosaïque mosaïque nom f s 0.58 4.53 0.53 2.77 +mosaïques mosaïque nom f p 0.58 4.53 0.06 1.76 +mosaïquée mosaïqué adj f s 0.00 0.14 0.00 0.07 +mosaïqués mosaïqué adj m p 0.00 0.14 0.00 0.07 +mosaïste mosaïste nom m s 0.00 0.14 0.00 0.14 +moscoutaire moscoutaire nom s 0.00 0.07 0.00 0.07 +moscovite moscovite adj s 0.68 1.42 0.34 1.15 +moscovites moscovite adj p 0.68 1.42 0.34 0.27 +mosellane mosellan adj f s 0.00 0.20 0.00 0.14 +mosellanes mosellan adj f p 0.00 0.20 0.00 0.07 +mosquée mosquée nom f s 3.43 5.68 2.71 4.32 +mosquées mosquée nom f p 3.43 5.68 0.72 1.35 +mot_clé mot_clé nom m s 0.58 0.34 0.41 0.14 +mot_valise mot_valise nom m s 0.01 0.00 0.01 0.00 +mât mât nom m s 1.67 9.59 1.47 5.95 +mot mot nom m s 279.55 553.78 174.83 260.47 +motard motard nom m s 4.10 6.89 1.79 3.45 +motarde motard nom f s 4.10 6.89 0.07 0.14 +motardes motard nom f p 4.10 6.89 0.01 0.07 +motards motard nom m p 4.10 6.89 2.23 3.24 +mâte mâter ver 0.04 0.14 0.01 0.07 imp:pre:2s;ind:pre:3s; +motel motel nom m s 9.43 1.28 8.62 1.22 +motels motel nom m p 9.43 1.28 0.82 0.07 +mâter mâter ver 0.04 0.14 0.03 0.00 inf; +motesse motesse nom f s 0.00 0.07 0.00 0.07 +motet motet nom m s 0.03 0.27 0.03 0.20 +motets motet nom m p 0.03 0.27 0.00 0.07 +moteur_fusée moteur_fusée nom m s 0.04 0.00 0.01 0.00 +moteur moteur nom m s 33.63 51.08 26.31 41.28 +moteur_fusée moteur_fusée nom m p 0.04 0.00 0.04 0.00 +moteurs moteur nom m p 33.63 51.08 7.32 9.80 +motif motif nom m s 16.56 31.15 12.20 15.74 +motifs motif nom m p 16.56 31.15 4.36 15.41 +motilité motilité nom f s 0.02 0.00 0.02 0.00 +mâtin mâtin ono 0.00 0.07 0.00 0.07 +mâtinant mâtiner ver 0.03 0.81 0.00 0.07 par:pre; +mâtine mâtine nom f s 0.57 1.22 0.00 0.14 +mâtines mâtine nom f p 0.57 1.22 0.01 0.07 +mâtins mâtin nom m p 0.26 0.20 0.00 0.07 +mâtiné mâtiné adj m s 0.03 0.00 0.03 0.00 +mâtinée mâtiner ver f s 0.03 0.81 0.01 0.14 par:pas; +mâtinés mâtiner ver m p 0.03 0.81 0.00 0.14 par:pas; +motion motion nom f s 3.10 1.28 2.87 0.68 +motions motion nom f p 3.10 1.28 0.22 0.61 +motiva motiver ver 5.50 2.43 0.00 0.14 ind:pas:3s; +motivai motiver ver 5.50 2.43 0.00 0.07 ind:pas:1s; +motivaient motiver ver 5.50 2.43 0.00 0.14 ind:imp:3p; +motivais motiver ver 5.50 2.43 0.01 0.00 ind:imp:2s; +motivait motiver ver 5.50 2.43 0.08 0.27 ind:imp:3s; +motivant motivant adj m s 0.24 0.00 0.21 0.00 +motivante motivant adj f s 0.24 0.00 0.03 0.00 +motivateur motivateur nom m s 0.05 0.00 0.05 0.00 +motivation motivation nom f s 4.81 1.28 3.02 0.81 +motivations motivation nom f p 4.81 1.28 1.79 0.47 +motive motiver ver 5.50 2.43 1.33 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +motivent motiver ver 5.50 2.43 0.04 0.20 ind:pre:3p; +motiver motiver ver 5.50 2.43 1.30 0.34 inf; +motivera motiver ver 5.50 2.43 0.02 0.00 ind:fut:3s; +motivez motiver ver 5.50 2.43 0.01 0.00 imp:pre:2p; +motivé motiver ver m s 5.50 2.43 1.67 0.20 par:pas; +motivée motiver ver f s 5.50 2.43 0.42 0.47 par:pas; +motivées motiver ver f p 5.50 2.43 0.04 0.07 par:pas; +motivés motiver ver m p 5.50 2.43 0.53 0.14 par:pas; +moto_club moto_club nom f s 0.00 0.14 0.00 0.14 +moto_cross moto_cross nom m 0.04 0.07 0.04 0.07 +moto moto nom f s 25.23 19.26 22.61 15.27 +motocross motocross nom m 0.19 0.00 0.19 0.00 +motoculteur motoculteur nom m s 0.00 0.14 0.00 0.14 +motoculture motoculture nom f s 0.14 0.00 0.14 0.00 +motocycles motocycle nom m p 0.00 0.07 0.00 0.07 +motocyclette motocyclette nom f s 0.40 4.19 0.36 3.31 +motocyclettes motocyclette nom f p 0.40 4.19 0.04 0.88 +motocyclisme motocyclisme nom m s 0.02 0.00 0.02 0.00 +motocycliste motocycliste nom s 0.07 2.64 0.04 1.28 +motocyclistes motocycliste nom p 0.07 2.64 0.03 1.35 +motoneige motoneige nom f s 0.60 0.00 0.34 0.00 +motoneiges motoneige nom f p 0.60 0.00 0.26 0.00 +motoneurone motoneurone nom m s 0.01 0.00 0.01 0.00 +motorisation motorisation nom f s 0.01 0.27 0.01 0.27 +motoriser motoriser ver 0.09 1.42 0.00 0.07 inf; +motorisé motorisé adj m s 0.47 2.23 0.12 0.41 +motorisée motorisé adj f s 0.47 2.23 0.20 0.68 +motorisées motoriser ver f p 0.09 1.42 0.01 0.14 par:pas; +motorisés motorisé adj m p 0.47 2.23 0.16 0.68 +motos moto nom f p 25.23 19.26 2.62 3.99 +motrice moteur adj f s 4.17 2.43 0.26 0.34 +motrices moteur adj f p 4.17 2.43 0.20 0.14 +motricité motricité nom f s 0.42 0.00 0.42 0.00 +mot_clef mot_clef nom m p 0.00 0.07 0.00 0.07 +mot_clé mot_clé nom m p 0.58 0.34 0.17 0.20 +mots_croisés mots_croisés nom m p 0.07 0.00 0.07 0.00 +mâts mât nom m p 1.67 9.59 0.20 3.65 +mots mot nom m p 279.55 553.78 104.72 293.31 +motte motte nom f s 0.51 9.19 0.26 2.97 +mottereau mottereau nom m s 0.00 0.07 0.00 0.07 +mottes motte nom f p 0.51 9.19 0.24 6.22 +motteux motteux nom m 0.00 0.07 0.00 0.07 +motu_proprio motu_proprio adv 0.00 0.07 0.00 0.07 +mâtée mâter ver f s 0.04 0.14 0.00 0.07 par:pas; +mâture mâture nom f s 0.14 1.62 0.14 1.08 +mâtures mâture nom f p 0.14 1.62 0.00 0.54 +motus motus ono 0.88 1.01 0.88 1.01 +mou mou adj m s 6.99 22.50 5.53 17.09 +mouais mouais ono 1.15 0.20 1.15 0.20 +moucha moucher ver 2.55 6.55 0.00 1.82 ind:pas:3s; +mouchachou mouchachou nom m s 0.00 0.07 0.00 0.07 +mouchage mouchage nom m s 0.01 0.00 0.01 0.00 +mouchai moucher ver 2.55 6.55 0.00 0.14 ind:pas:1s; +mouchaient moucher ver 2.55 6.55 0.00 0.20 ind:imp:3p; +mouchait moucher ver 2.55 6.55 0.15 0.41 ind:imp:3s; +mouchant moucher ver 2.55 6.55 0.00 0.20 par:pre; +mouchard mouchard nom m s 6.00 2.77 4.16 1.62 +moucharda moucharder ver 1.54 0.88 0.00 0.07 ind:pas:3s; +mouchardage mouchardage nom m s 0.04 0.20 0.04 0.20 +mouchardait moucharder ver 1.54 0.88 0.01 0.07 ind:imp:3s; +moucharde mouchard nom f s 6.00 2.77 0.56 0.27 +mouchardent moucharder ver 1.54 0.88 0.04 0.00 ind:pre:3p; +moucharder moucharder ver 1.54 0.88 0.46 0.54 inf; +mouchardera moucharder ver 1.54 0.88 0.02 0.00 ind:fut:3s; +moucharderait moucharder ver 1.54 0.88 0.01 0.07 cnd:pre:3s; +mouchardes moucharder ver 1.54 0.88 0.14 0.07 ind:pre:2s; +mouchards mouchard nom m p 6.00 2.77 1.28 0.88 +mouchardé moucharder ver m s 1.54 0.88 0.61 0.07 par:pas; +mouche mouche nom f s 24.65 46.89 15.36 18.72 +mouchent moucher ver 2.55 6.55 0.00 0.20 ind:pre:3p; +moucher moucher ver 2.55 6.55 0.76 1.28 inf; +moucheron moucheron nom m s 2.19 2.43 1.93 0.74 +moucherons moucheron nom m p 2.19 2.43 0.26 1.69 +mouches mouche nom f p 24.65 46.89 9.29 28.18 +mouchetait moucheter ver 0.03 1.15 0.00 0.07 ind:imp:3s; +mouchetant moucheter ver 0.03 1.15 0.00 0.07 par:pre; +mouchette mouchette nom f s 0.00 0.14 0.00 0.14 +moucheté moucheté adj m s 0.30 1.15 0.10 0.41 +mouchetée moucheté adj f s 0.30 1.15 0.10 0.20 +mouchetées moucheté adj f p 0.30 1.15 0.10 0.20 +moucheture moucheture nom f s 0.02 0.41 0.01 0.00 +mouchetures moucheture nom f p 0.02 0.41 0.01 0.41 +mouchetés moucheter ver m p 0.03 1.15 0.01 0.20 par:pas; +moucheur moucheur nom m s 0.01 0.07 0.01 0.07 +mouchez moucher ver 2.55 6.55 0.22 0.07 imp:pre:2p;ind:pre:2p; +mouchoir mouchoir nom m s 11.53 34.59 9.84 28.85 +mouchoirs mouchoir nom m p 11.53 34.59 1.69 5.74 +mouchons moucher ver 2.55 6.55 0.00 0.07 ind:pre:1p; +mouché moucher ver m s 2.55 6.55 0.39 0.81 par:pas; +mouchée moucher ver f s 2.55 6.55 0.06 0.20 par:pas; +mouchés moucher ver m p 2.55 6.55 0.04 0.07 par:pas; +moud moudre ver 1.43 2.57 0.38 0.14 ind:pre:3s; +moudjahiddine moudjahiddine nom m s 0.03 0.07 0.03 0.07 +moudjahidin moudjahidin nom m p 0.16 0.00 0.16 0.00 +moudjahidine moudjahidine nom m p 0.01 0.00 0.01 0.00 +moudrai moudre ver 1.43 2.57 0.10 0.00 ind:fut:1s; +moudre moudre ver 1.43 2.57 0.72 1.22 inf; +mouds moudre ver 1.43 2.57 0.00 0.07 ind:pre:1s; +moue moue nom f s 0.78 18.58 0.76 17.43 +moues moue nom f p 0.78 18.58 0.02 1.15 +mouette mouette nom f s 3.24 15.81 1.43 5.47 +mouettes mouette nom f p 3.24 15.81 1.81 10.34 +moufetait moufeter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +moufette moufette nom f s 0.04 0.00 0.04 0.00 +moufeté moufeter ver m s 0.00 0.14 0.00 0.07 par:pas; +mouffette mouffette nom f s 0.08 0.54 0.08 0.54 +moufle moufle nom f s 0.73 1.76 0.28 0.34 +moufles moufle nom f p 0.73 1.76 0.45 1.42 +mouflet mouflet nom m s 0.41 5.68 0.17 3.18 +mouflets mouflet nom m p 0.41 5.68 0.24 2.50 +mouflette mouflette nom f s 0.19 2.43 0.19 2.09 +mouflettes mouflette nom f p 0.19 2.43 0.00 0.34 +mouflon mouflon nom m s 0.05 0.47 0.04 0.14 +mouflons mouflon nom m p 0.05 0.47 0.01 0.34 +mouftaient moufter ver 0.20 4.12 0.01 0.00 ind:imp:3p; +mouftais moufter ver 0.20 4.12 0.00 0.07 ind:imp:1s; +mouftait moufter ver 0.20 4.12 0.00 0.61 ind:imp:3s; +moufte moufter ver 0.20 4.12 0.02 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mouftent moufter ver 0.20 4.12 0.01 0.27 ind:pre:3p; +moufter moufter ver 0.20 4.12 0.06 1.22 inf; +mouftera moufter ver 0.20 4.12 0.01 0.07 ind:fut:3s; +mouftes moufter ver 0.20 4.12 0.01 0.07 ind:pre:2s; +mouftez moufter ver 0.20 4.12 0.01 0.07 ind:pre:2p; +moufté moufter ver m s 0.20 4.12 0.06 0.47 par:pas; +mouilla mouiller ver 19.36 38.92 0.01 2.03 ind:pas:3s; +mouillage mouillage nom m s 0.14 1.22 0.14 1.15 +mouillages mouillage nom m p 0.14 1.22 0.00 0.07 +mouillaient mouiller ver 19.36 38.92 0.14 0.88 ind:imp:3p; +mouillais mouiller ver 19.36 38.92 0.04 0.27 ind:imp:1s;ind:imp:2s; +mouillait mouiller ver 19.36 38.92 0.32 2.64 ind:imp:3s; +mouillant mouiller ver 19.36 38.92 0.11 1.15 par:pre; +mouillante mouillant adj f s 0.00 0.14 0.00 0.07 +mouillasse mouiller ver 19.36 38.92 0.00 0.07 sub:imp:1s; +mouille mouiller ver 19.36 38.92 3.26 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mouillent mouiller ver 19.36 38.92 0.24 0.88 ind:pre:3p; +mouiller mouiller ver 19.36 38.92 4.43 7.50 inf; +mouillera mouiller ver 19.36 38.92 0.44 0.00 ind:fut:3s; +mouillerai mouiller ver 19.36 38.92 0.02 0.07 ind:fut:1s; +mouillerais mouiller ver 19.36 38.92 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +mouillerait mouiller ver 19.36 38.92 0.01 0.20 cnd:pre:3s; +mouilleras mouiller ver 19.36 38.92 0.01 0.07 ind:fut:2s; +mouilleront mouiller ver 19.36 38.92 0.16 0.07 ind:fut:3p; +mouilles mouiller ver 19.36 38.92 0.64 0.41 ind:pre:2s;sub:pre:2s; +mouillette mouillette nom f s 0.25 0.68 0.04 0.41 +mouillettes mouillette nom f p 0.25 0.68 0.21 0.27 +mouilleur mouilleur nom m s 0.01 0.00 0.01 0.00 +mouilleuse mouilleur adj f s 0.00 0.07 0.00 0.07 +mouillez mouiller ver 19.36 38.92 0.32 0.14 imp:pre:2p;ind:pre:2p; +mouillon mouillon nom m s 0.04 0.07 0.00 0.07 +mouillons mouillon nom m p 0.04 0.07 0.04 0.00 +mouillèrent mouiller ver 19.36 38.92 0.00 0.27 ind:pas:3p; +mouillé mouiller ver m s 19.36 38.92 5.70 8.58 par:pas; +mouillée mouillé adj f s 12.92 33.51 5.26 10.54 +mouillées mouillé adj f p 12.92 33.51 1.60 3.92 +mouillure mouillure nom f s 0.00 0.34 0.00 0.27 +mouillures mouillure nom f p 0.00 0.34 0.00 0.07 +mouillés mouillé adj m p 12.92 33.51 1.96 5.74 +mouise mouise nom f s 0.81 1.01 0.81 1.01 +moujahid moujahid nom m s 0.00 0.47 0.00 0.47 +moujik moujik nom m s 0.80 1.15 0.30 0.54 +moujiks moujik nom m p 0.80 1.15 0.50 0.61 +moujingue moujingue nom s 0.00 1.28 0.00 0.47 +moujingues moujingue nom p 0.00 1.28 0.00 0.81 +moukère moukère nom f s 0.00 0.41 0.00 0.20 +moukères moukère nom f p 0.00 0.41 0.00 0.20 +moula mouler ver 1.56 8.78 0.00 0.07 ind:pas:3s; +moulage moulage nom m s 0.80 1.15 0.53 0.54 +moulages moulage nom m p 0.80 1.15 0.27 0.61 +moulaient mouler ver 1.56 8.78 0.01 0.41 ind:imp:3p; +moulait mouler ver 1.56 8.78 0.12 2.03 ind:imp:3s; +moulant moulant adj m s 1.75 1.76 0.71 1.15 +moulante moulant adj f s 1.75 1.76 0.31 0.27 +moulantes moulant adj f p 1.75 1.76 0.03 0.00 +moulants moulant adj m p 1.75 1.76 0.69 0.34 +moule moule nom s 6.12 9.26 3.56 3.99 +moulent mouler ver 1.56 8.78 0.04 0.14 ind:pre:3p; +mouler mouler ver 1.56 8.78 0.15 0.47 inf; +mouleraient mouler ver 1.56 8.78 0.00 0.07 cnd:pre:3p; +moulerait mouler ver 1.56 8.78 0.00 0.07 cnd:pre:3s; +moules moule nom p 6.12 9.26 2.56 5.27 +mouleur mouleur nom m s 0.00 0.07 0.00 0.07 +moulez mouler ver 1.56 8.78 0.21 0.00 imp:pre:2p;ind:pre:2p; +moulin_à_vent moulin_à_vent nom m 0.00 0.14 0.00 0.14 +moulin moulin nom m s 7.75 19.05 6.80 15.61 +moulinage moulinage nom m s 0.01 0.00 0.01 0.00 +moulinait mouliner ver 0.06 0.88 0.01 0.14 ind:imp:3s; +mouline mouliner ver 0.06 0.88 0.02 0.14 imp:pre:2s;ind:pre:3s; +moulinent mouliner ver 0.06 0.88 0.00 0.07 ind:pre:3p; +mouliner mouliner ver 0.06 0.88 0.00 0.47 inf; +moulines mouliner ver 0.06 0.88 0.00 0.07 ind:pre:2s; +moulinet moulinet nom m s 0.50 3.18 0.44 1.82 +moulinets moulinet nom m p 0.50 3.18 0.06 1.35 +moulinette moulinette nom f s 0.27 0.68 0.23 0.61 +moulinettes moulinette nom f p 0.27 0.68 0.05 0.07 +moulinez mouliner ver 0.06 0.88 0.02 0.00 imp:pre:2p; +moulins moulin nom m p 7.75 19.05 0.94 3.45 +moult moult adv 0.33 3.18 0.33 3.18 +moulé mouler ver m s 1.56 8.78 0.42 1.62 par:pas; +moulu moulu adj m s 0.48 0.88 0.26 0.47 +moulée mouler ver f s 1.56 8.78 0.14 1.69 par:pas; +moulue moudre ver f s 1.43 2.57 0.11 0.27 par:pas; +moulées mouler ver f p 1.56 8.78 0.01 0.74 par:pas; +moulues moulu adj f p 0.48 0.88 0.20 0.14 +moulurations mouluration nom f p 0.00 0.07 0.00 0.07 +moulure moulure nom f s 0.22 2.70 0.06 0.54 +moulures moulure nom f p 0.22 2.70 0.16 2.16 +mouluré moulurer ver m s 0.00 0.20 0.00 0.20 par:pas; +moulés moulé adj m p 0.24 1.49 0.02 0.07 +moulus moulu adj m p 0.48 0.88 0.02 0.20 +moulut moudre ver 1.43 2.57 0.00 0.07 ind:pas:3s; +moumounes moumoune nom f p 0.00 0.14 0.00 0.14 +moumoute moumoute nom f s 0.87 0.61 0.86 0.47 +moumoutes moumoute nom f p 0.87 0.61 0.01 0.14 +mound mound nom m s 0.02 0.00 0.02 0.00 +mouquère mouquère nom f s 0.00 0.27 0.00 0.27 +mourût mourir ver 916.42 391.08 0.02 0.61 sub:imp:3s; +mourûtes mourir ver 916.42 391.08 0.00 0.07 ind:pas:2p; +mouraient mourir ver 916.42 391.08 1.22 5.95 ind:imp:3p; +mourais mourir ver 916.42 391.08 2.23 1.89 ind:imp:1s;ind:imp:2s; +mourait mourir ver 916.42 391.08 2.92 11.35 ind:imp:3s; +mourant mourant adj m s 9.56 5.74 6.18 3.04 +mourante mourant adj f s 9.56 5.74 2.71 1.89 +mourantes mourant adj f p 9.56 5.74 0.27 0.54 +mourants mourant nom m p 2.87 5.14 1.11 1.35 +mourez mourir ver 916.42 391.08 2.77 1.08 imp:pre:2p;ind:pre:2p; +mourides mouride adj f p 0.00 0.07 0.00 0.07 +mouriez mourir ver 916.42 391.08 0.73 0.00 ind:imp:2p; +mourions mourir ver 916.42 391.08 0.41 0.27 ind:imp:1p; +mourir mourir ver 916.42 391.08 234.74 130.61 inf;; +mouroir mouroir nom m s 0.07 0.27 0.07 0.27 +mouron mouron nom m s 0.73 4.26 0.53 4.12 +mouronne mouronner ver 0.00 0.14 0.00 0.07 ind:pre:1s; +mouronner mouronner ver 0.00 0.14 0.00 0.07 inf; +mourons mourir ver 916.42 391.08 1.33 0.47 imp:pre:1p;ind:pre:1p; +mourra mourir ver 916.42 391.08 13.63 4.93 ind:fut:3s; +mourrai mourir ver 916.42 391.08 7.54 3.04 ind:fut:1s; +mourraient mourir ver 916.42 391.08 1.38 0.61 cnd:pre:3p; +mourrais mourir ver 916.42 391.08 4.22 1.28 cnd:pre:1s;cnd:pre:2s; +mourrait mourir ver 916.42 391.08 3.45 3.78 cnd:pre:3s; +mourras mourir ver 916.42 391.08 7.67 1.15 ind:fut:2s; +mourre mourre nom f s 0.03 0.07 0.03 0.07 +mourrez mourir ver 916.42 391.08 4.99 0.95 ind:fut:2p; +mourriez mourir ver 916.42 391.08 0.29 0.07 cnd:pre:2p; +mourrions mourir ver 916.42 391.08 0.16 0.07 cnd:pre:1p; +mourrons mourir ver 916.42 391.08 3.41 1.15 ind:fut:1p; +mourront mourir ver 916.42 391.08 3.86 1.08 ind:fut:3p; +moururent mourir ver 916.42 391.08 0.91 1.22 ind:pas:3p; +mourus mourir ver 916.42 391.08 0.11 0.34 ind:pas:1s;ind:pas:2s; +mourussent mourir ver 916.42 391.08 0.00 0.07 sub:imp:3p; +mourut mourir ver 916.42 391.08 5.62 11.35 ind:pas:3s; +mous mou adj m p 6.99 22.50 1.46 5.41 +mouscaille mouscaille nom f s 0.00 0.81 0.00 0.74 +mouscailles mouscaille nom f p 0.00 0.81 0.00 0.07 +mousmé mousmé nom f s 0.22 0.20 0.21 0.14 +mousmés mousmé nom f p 0.22 0.20 0.01 0.07 +mousquet mousquet nom m s 1.31 0.95 0.48 0.54 +mousquetades mousquetade nom f p 0.01 0.00 0.01 0.00 +mousquetaire mousquetaire nom m s 3.02 3.65 0.82 1.15 +mousquetaires mousquetaire nom m p 3.02 3.65 2.19 2.50 +mousqueterie mousqueterie nom f s 0.01 0.20 0.01 0.20 +mousqueton mousqueton nom m s 0.72 4.39 0.41 3.18 +mousquetons mousqueton nom m p 0.72 4.39 0.32 1.22 +mousquets mousquet nom m p 1.31 0.95 0.83 0.41 +moussage moussage nom m s 0.00 0.07 0.00 0.07 +moussaient mousser ver 0.89 3.51 0.00 0.20 ind:imp:3p; +moussaillon moussaillon nom m s 0.59 0.34 0.34 0.34 +moussaillons moussaillon nom m p 0.59 0.34 0.25 0.00 +moussait mousser ver 0.89 3.51 0.00 0.68 ind:imp:3s; +moussaka moussaka nom f s 0.07 0.27 0.07 0.14 +moussakas moussaka nom f p 0.07 0.27 0.00 0.14 +moussant moussant adj m s 0.75 0.61 0.63 0.27 +moussante moussant adj f s 0.75 0.61 0.01 0.14 +moussants moussant adj m p 0.75 0.61 0.11 0.20 +mousse mousse nom s 6.47 27.16 6.24 23.04 +mousseline mousseline nom f s 0.36 4.73 0.36 4.19 +mousselines mousseline nom f p 0.36 4.73 0.00 0.54 +moussent mousser ver 0.89 3.51 0.00 0.07 ind:pre:3p; +mousser mousser ver 0.89 3.51 0.66 1.82 inf;; +mousseron mousseron nom m s 0.00 1.62 0.00 0.20 +mousserons mousseron nom m p 0.00 1.62 0.00 1.42 +mousses mousse nom p 6.47 27.16 0.24 4.12 +mousseuse mousseux adj f s 0.23 3.72 0.02 1.28 +mousseuses mousseux adj f p 0.23 3.72 0.00 0.41 +mousseux mousseux nom m 1.45 1.82 1.45 1.82 +mousson mousson nom f s 0.84 17.36 0.73 17.23 +moussons mousson nom f p 0.84 17.36 0.11 0.14 +moussu moussu adj m s 0.04 2.23 0.00 0.68 +moussue moussu adj f s 0.04 2.23 0.03 0.41 +moussues moussu adj f p 0.04 2.23 0.01 0.47 +moussus moussu adj m p 0.04 2.23 0.00 0.68 +moustache moustache nom f s 12.79 45.07 10.65 28.92 +moustaches moustache nom f p 12.79 45.07 2.13 16.15 +moustachu moustachu adj m s 0.84 8.99 0.63 6.55 +moustachue moustachu adj f s 0.84 8.99 0.04 0.54 +moustachues moustachu adj f p 0.84 8.99 0.01 0.27 +moustachus moustachu adj m p 0.84 8.99 0.17 1.62 +moustagache moustagache nom f s 0.00 0.54 0.00 0.34 +moustagaches moustagache nom f p 0.00 0.54 0.00 0.20 +moustiquaire moustiquaire nom f s 0.45 2.09 0.38 1.22 +moustiquaires moustiquaire nom f p 0.45 2.09 0.07 0.88 +moustique moustique nom m s 5.97 7.57 2.53 1.49 +moustiques moustique nom m p 5.97 7.57 3.44 6.08 +moutard moutard nom m s 0.86 3.31 0.54 1.49 +moutarde moutarde nom f s 3.95 5.00 3.94 4.93 +moutardes moutarde nom f p 3.95 5.00 0.01 0.07 +moutardier moutardier nom m s 0.00 0.14 0.00 0.14 +moutards moutard nom m p 0.86 3.31 0.32 1.82 +moutardé moutarder ver m s 0.00 0.07 0.00 0.07 par:pas; +moutier moutier nom m s 0.14 0.00 0.14 0.00 +mouton mouton nom m s 15.20 30.47 6.08 14.12 +moutonnaient moutonner ver 0.01 1.01 0.00 0.07 ind:imp:3p; +moutonnait moutonner ver 0.01 1.01 0.00 0.27 ind:imp:3s; +moutonnant moutonner ver 0.01 1.01 0.00 0.20 par:pre; +moutonnante moutonnant adj f s 0.00 0.47 0.00 0.20 +moutonnantes moutonnant adj f p 0.00 0.47 0.00 0.14 +moutonnants moutonnant adj m p 0.00 0.47 0.00 0.07 +moutonne moutonner ver 0.01 1.01 0.01 0.14 ind:pre:3s; +moutonnement moutonnement nom m s 0.00 1.42 0.00 1.35 +moutonnements moutonnement nom m p 0.00 1.42 0.00 0.07 +moutonnent moutonner ver 0.01 1.01 0.00 0.20 ind:pre:3p; +moutonner moutonner ver 0.01 1.01 0.00 0.14 inf; +moutonnerie moutonnerie nom f s 0.00 0.07 0.00 0.07 +moutonneux moutonneux adj m s 0.00 0.20 0.00 0.20 +moutonnier moutonnier adj m s 0.00 0.27 0.00 0.07 +moutonniers moutonnier adj m p 0.00 0.27 0.00 0.07 +moutonnière moutonnier adj f s 0.00 0.27 0.00 0.14 +moutons mouton nom m p 15.20 30.47 9.13 16.35 +mouture mouture nom f s 0.06 0.20 0.06 0.14 +moutures mouture nom f p 0.06 0.20 0.00 0.07 +mouvaient mouvoir ver 1.75 13.18 0.10 1.01 ind:imp:3p; +mouvais mouvoir ver 1.75 13.18 0.11 0.14 ind:imp:1s; +mouvait mouvoir ver 1.75 13.18 0.10 1.22 ind:imp:3s; +mouvance mouvance nom f s 0.02 0.20 0.01 0.20 +mouvances mouvance nom f p 0.02 0.20 0.01 0.00 +mouvant mouvant adj m s 1.77 13.18 0.39 3.45 +mouvante mouvant adj f s 1.77 13.18 0.55 4.39 +mouvantes mouvant adj f p 1.77 13.18 0.04 2.84 +mouvants mouvant adj m p 1.77 13.18 0.81 2.50 +mouvement mouvement nom m s 40.33 182.97 29.26 134.80 +mouvementent mouvementer ver 0.51 0.41 0.00 0.07 ind:pre:3p; +mouvements mouvement nom m p 40.33 182.97 11.07 48.18 +mouvementé mouvementé adj m s 0.92 1.42 0.16 0.34 +mouvementée mouvementé adj f s 0.92 1.42 0.47 0.74 +mouvementées mouvementé adj f p 0.92 1.42 0.16 0.34 +mouvementés mouvementé adj m p 0.92 1.42 0.12 0.00 +mouvoir mouvoir ver 1.75 13.18 0.58 4.26 inf; +moyen_âge moyen_âge nom m s 1.15 0.20 1.15 0.20 +moyen_oriental moyen_oriental adj m s 0.03 0.00 0.03 0.00 +moyen_orientaux moyen_orientaux adj m p 0.01 0.00 0.01 0.00 +moyen moyen nom m s 83.47 107.03 53.27 48.72 +moyennant moyennant pre 0.49 4.53 0.49 4.53 +moyenne moyenne nom f s 7.22 7.77 6.81 7.50 +moyennement moyennement adv 0.42 0.54 0.42 0.54 +moyenner moyenner ver 0.06 0.20 0.00 0.07 inf; +moyennes moyen adj f p 50.69 41.69 0.63 0.81 +moyenâgeuse moyenâgeux adj f s 0.09 1.69 0.01 0.14 +moyenâgeuses moyenâgeux adj f p 0.09 1.69 0.01 0.47 +moyenâgeux moyenâgeux adj m 0.09 1.69 0.06 1.08 +moyens moyen nom m p 83.47 107.03 30.20 58.31 +moyer moyer ver 0.10 0.00 0.10 0.00 inf; +moyeu moyeu nom m s 0.01 0.68 0.01 0.68 +moyeux moyeux nom m p 0.11 0.41 0.11 0.41 +mozarabe mozarabe adj s 0.20 0.14 0.20 0.14 +mozartiennes mozartien adj f p 0.00 0.07 0.00 0.07 +mozzarella mozzarella nom f s 0.64 0.14 0.64 0.14 +mozzarelle mozzarelle nom f s 0.03 0.00 0.03 0.00 +mèche mèche nom f s 9.87 31.01 8.21 19.12 +mèches mèche nom f p 9.87 31.01 1.66 11.89 +mène mener ver 99.86 137.70 31.86 21.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mènent mener ver 99.86 137.70 6.42 7.57 ind:pre:3p; +mènera mener ver 99.86 137.70 4.70 1.28 ind:fut:3s; +mènerai mener ver 99.86 137.70 0.73 0.41 ind:fut:1s; +mèneraient mener ver 99.86 137.70 0.05 0.68 cnd:pre:3p; +mènerais mener ver 99.86 137.70 0.25 0.14 cnd:pre:1s;cnd:pre:2s; +mènerait mener ver 99.86 137.70 0.98 2.30 cnd:pre:3s; +mèneras mener ver 99.86 137.70 0.19 0.00 ind:fut:2s; +mènerez mener ver 99.86 137.70 0.08 0.14 ind:fut:2p; +mènerons mener ver 99.86 137.70 0.26 0.07 ind:fut:1p; +mèneront mener ver 99.86 137.70 1.04 0.47 ind:fut:3p; +mènes mener ver 99.86 137.70 2.84 1.01 ind:pre:2s; +mère_grand mère_grand nom f s 0.89 0.34 0.89 0.34 +mère_patrie mère_patrie nom f s 0.04 0.41 0.04 0.41 +mère mère nom f s 686.79 761.28 672.00 737.09 +mères mère nom f p 686.79 761.28 14.79 24.19 +mètre mètre nom m s 43.49 130.07 6.03 21.82 +mètres mètre nom m p 43.49 130.07 37.46 108.24 +mua muer ver 1.63 7.03 0.14 0.68 ind:pas:3s; +muai muer ver 1.63 7.03 0.00 0.07 ind:pas:1s; +muaient muer ver 1.63 7.03 0.00 0.14 ind:imp:3p; +muait muer ver 1.63 7.03 0.02 1.01 ind:imp:3s; +méandre méandre nom m s 0.72 3.72 0.14 0.54 +méandres méandre nom m p 0.72 3.72 0.58 3.18 +méandreux méandreux adj m s 0.00 0.07 0.00 0.07 +méandrine méandrine nom f s 0.00 0.07 0.00 0.07 +muant muer ver 1.63 7.03 0.00 0.20 par:pre; +méat méat nom m s 0.00 0.14 0.00 0.14 +mécanicien mécanicien nom m s 5.80 7.50 5.38 5.34 +mécanicienne mécanicien nom f s 5.80 7.50 0.05 0.00 +mécaniciennes mécanicienne nom f p 0.01 0.00 0.01 0.00 +mécaniciens mécanicien nom m p 5.80 7.50 0.38 2.16 +mécanique mécanique adj s 3.47 21.82 2.83 15.47 +mécaniquement mécaniquement adv 0.12 3.65 0.12 3.65 +mécaniques mécanique nom f p 3.75 15.14 0.93 2.70 +mécanisait mécaniser ver 0.29 0.88 0.00 0.14 ind:imp:3s; +mécanisation mécanisation nom f s 0.01 0.14 0.01 0.14 +mécanise mécaniser ver 0.29 0.88 0.00 0.07 ind:pre:3s; +mécaniser mécaniser ver 0.29 0.88 0.02 0.07 inf; +mécanisme mécanisme nom m s 4.59 10.34 3.79 6.62 +mécanismes mécanisme nom m p 4.59 10.34 0.80 3.72 +mécanistes mécaniste adj m p 0.00 0.07 0.00 0.07 +mécanisé mécaniser ver m s 0.29 0.88 0.04 0.47 par:pas; +mécanisée mécaniser ver f s 0.29 0.88 0.20 0.14 par:pas; +mécanisées mécaniser ver f p 0.29 0.88 0.01 0.00 par:pas; +mécanisés mécaniser ver m p 0.29 0.88 0.02 0.00 par:pas; +mécano mécano nom m s 2.50 4.05 1.68 3.45 +mécanographiques mécanographique adj p 0.00 0.07 0.00 0.07 +mécanos mécano nom m p 2.50 4.05 0.82 0.61 +muchacho muchacho nom m s 1.56 0.07 1.03 0.00 +muchachos muchacho nom m p 1.56 0.07 0.54 0.07 +méchait mécher ver 0.77 0.61 0.00 0.07 ind:imp:3s; +méchamment méchamment adv 2.04 6.42 2.04 6.42 +méchanceté méchanceté nom f s 4.13 12.97 3.38 11.22 +méchancetés méchanceté nom f p 4.13 12.97 0.75 1.76 +méchant méchant adj m s 53.37 34.05 30.23 16.01 +méchante méchant adj f s 53.37 34.05 14.73 9.12 +méchantes méchant adj f p 53.37 34.05 1.73 1.62 +méchants méchant nom m p 14.82 6.89 7.21 3.92 +muchas mucher ver 0.53 0.00 0.52 0.00 ind:pas:2s; +muche mucher ver 0.53 0.00 0.01 0.00 ind:pre:3s; +mécher mécher ver 0.77 0.61 0.01 0.00 inf; +méchoui méchoui nom m s 0.04 0.47 0.03 0.41 +méchouis méchoui nom m p 0.04 0.47 0.01 0.07 +mucilage mucilage nom m s 0.01 0.00 0.01 0.00 +mucilagineuse mucilagineux adj f s 0.00 0.07 0.00 0.07 +mécompte mécompte nom m s 0.00 0.81 0.00 0.27 +mécomptes mécompte nom m p 0.00 0.81 0.00 0.54 +méconduite méconduite nom f s 0.01 0.00 0.01 0.00 +méconium méconium nom m s 0.03 0.00 0.03 0.00 +méconnaîtra méconnaître ver 0.27 4.93 0.00 0.07 ind:fut:3s; +méconnaître méconnaître ver 0.27 4.93 0.10 2.23 inf; +méconnais méconnaître ver 0.27 4.93 0.10 0.27 ind:pre:1s;ind:pre:2s; +méconnaissable méconnaissable adj s 1.82 6.22 1.53 4.86 +méconnaissables méconnaissable adj p 1.82 6.22 0.29 1.35 +méconnaissais méconnaître ver 0.27 4.93 0.00 0.20 ind:imp:1s; +méconnaissance méconnaissance nom f s 0.03 0.81 0.03 0.81 +méconnaissant méconnaître ver 0.27 4.93 0.00 0.14 par:pre; +méconnaisse méconnaître ver 0.27 4.93 0.00 0.27 sub:pre:1s;sub:pre:3s; +méconnaissent méconnaître ver 0.27 4.93 0.01 0.14 ind:pre:3p; +méconnu méconnu adj m s 0.26 2.16 0.17 1.01 +méconnue méconnaître ver f s 0.27 4.93 0.05 0.41 par:pas; +méconnues méconnaître ver f p 0.27 4.93 0.00 0.20 par:pas; +méconnus méconnu adj m p 0.26 2.16 0.06 0.54 +mécontent mécontent adj m s 3.04 9.53 1.54 6.96 +mécontenta mécontenter ver 0.20 0.81 0.00 0.07 ind:pas:3s; +mécontentait mécontenter ver 0.20 0.81 0.00 0.07 ind:imp:3s; +mécontente mécontent adj f s 3.04 9.53 0.50 1.42 +mécontentement mécontentement nom m s 1.62 4.05 1.60 3.58 +mécontentements mécontentement nom m p 1.62 4.05 0.02 0.47 +mécontenter mécontenter ver 0.20 0.81 0.03 0.34 inf; +mécontentes mécontent adj f p 3.04 9.53 0.04 0.27 +mécontents mécontent adj m p 3.04 9.53 0.96 0.88 +mécontenté mécontenter ver m s 0.20 0.81 0.14 0.07 par:pas; +mécontentés mécontenter ver m p 0.20 0.81 0.00 0.07 par:pas; +mucor mucor nom m s 0.01 0.00 0.01 0.00 +mucosité mucosité nom f s 0.06 0.20 0.01 0.07 +mucosités mucosité nom f p 0.06 0.20 0.05 0.14 +mucoviscidose mucoviscidose nom f s 0.14 0.00 0.14 0.00 +mécru mécroire ver m s 0.00 0.07 0.00 0.07 par:pas; +mécréance mécréance nom f s 0.00 0.20 0.00 0.20 +mécréant mécréant nom m s 1.41 1.35 1.09 0.81 +mécréante mécréant adj f s 0.37 0.47 0.14 0.00 +mécréants mécréant nom m p 1.41 1.35 0.31 0.54 +mécène mécène nom m s 0.82 1.89 0.69 1.49 +mécènes mécène nom m p 0.82 1.89 0.14 0.41 +mécénat mécénat nom m s 0.04 0.00 0.04 0.00 +mucus mucus nom m 0.38 0.20 0.38 0.20 +médaille médaille nom f s 16.32 16.08 12.44 9.53 +médailles médaille nom f p 16.32 16.08 3.89 6.55 +médailleurs médailleur nom m p 0.00 0.07 0.00 0.07 +médaillon médaillon nom m s 1.77 3.65 1.44 2.16 +médaillons médaillon nom m p 1.77 3.65 0.33 1.49 +médaillé médaillé nom m s 0.24 0.20 0.24 0.14 +médaillée médailler ver f s 0.13 0.07 0.02 0.00 par:pas; +médecin_chef médecin_chef nom m s 0.56 2.09 0.56 2.09 +médecin_conseil médecin_conseil nom m s 0.01 0.00 0.01 0.00 +médecin_général médecin_général nom m s 0.01 0.20 0.01 0.20 +médecin_major médecin_major nom m s 0.70 0.14 0.70 0.14 +médecin médecin nom m s 140.19 75.61 112.35 60.68 +médecine_ball médecine_ball nom m s 0.01 0.00 0.01 0.00 +médecine médecine nom f s 23.51 12.43 23.29 12.36 +médecines médecine nom f p 23.51 12.43 0.22 0.07 +médecins médecin nom m p 140.19 75.61 27.84 14.93 +média média nom m s 10.23 1.22 0.77 0.07 +médian médian adj m s 0.29 2.50 0.04 0.41 +médiane médian adj f s 0.29 2.50 0.21 1.96 +médianes médian adj f p 0.29 2.50 0.02 0.14 +médianoche médianoche nom m s 0.00 0.47 0.00 0.47 +médians médian adj m p 0.29 2.50 0.01 0.00 +médias média nom m p 10.23 1.22 9.46 1.15 +médiascope médiascope nom m s 0.14 0.00 0.14 0.00 +médiastin médiastin nom m s 0.20 0.00 0.20 0.00 +médiateur médiateur nom m s 0.60 0.41 0.41 0.20 +médiateurs médiateur nom m p 0.60 0.41 0.08 0.07 +médiation médiation nom f s 0.46 0.74 0.46 0.74 +médiatique médiatique adj s 1.72 0.61 1.61 0.41 +médiatiques médiatique adj p 1.72 0.61 0.11 0.20 +médiatisant médiatiser ver 0.36 0.00 0.01 0.00 par:pre; +médiatisation médiatisation nom f s 0.23 0.00 0.23 0.00 +médiatisé médiatiser ver m s 0.36 0.00 0.12 0.00 par:pas; +médiatisée médiatiser ver f s 0.36 0.00 0.21 0.00 par:pas; +médiatisées médiatiser ver f p 0.36 0.00 0.01 0.00 par:pas; +médiatisés médiatiser ver m p 0.36 0.00 0.01 0.00 par:pas; +médiator médiator nom m s 0.09 0.00 0.09 0.00 +médiatrice médiateur nom f s 0.60 0.41 0.12 0.07 +médiatrices médiateur nom f p 0.60 0.41 0.00 0.07 +médical médical adj m s 31.48 11.89 13.65 4.80 +médicale médical adj f s 31.48 11.89 10.41 3.85 +médicalement médicalement adv 1.03 0.61 1.03 0.61 +médicales médical adj f p 31.48 11.89 2.81 1.76 +médicalisation médicalisation nom f s 0.01 0.00 0.01 0.00 +médicalisé médicaliser ver m s 0.04 0.07 0.04 0.00 par:pas; +médicalisée médicaliser ver f s 0.04 0.07 0.01 0.07 par:pas; +médicament médicament nom m s 41.82 12.57 12.03 4.12 +médicamentait médicamenter ver 0.03 0.14 0.00 0.07 ind:imp:3s; +médicamentation médicamentation nom f s 0.04 0.07 0.04 0.07 +médicamenter médicamenter ver 0.03 0.14 0.02 0.07 inf; +médicamenteuse médicamenteux adj f s 0.10 0.07 0.07 0.00 +médicamenteux médicamenteux adj m 0.10 0.07 0.02 0.07 +médicaments médicament nom m p 41.82 12.57 29.80 8.45 +médicamenté médicamenter ver m s 0.03 0.14 0.01 0.00 par:pas; +médicastre médicastre nom m s 0.00 0.41 0.00 0.14 +médicastres médicastre nom m p 0.00 0.41 0.00 0.27 +médication médication nom f s 0.23 0.27 0.22 0.07 +médications médication nom f p 0.23 0.27 0.01 0.20 +médicaux médical adj m p 31.48 11.89 4.62 1.49 +médicinal médicinal adj m s 0.85 0.54 0.23 0.00 +médicinale médicinal adj f s 0.85 0.54 0.10 0.07 +médicinales médicinal adj f p 0.85 0.54 0.52 0.41 +médicinaux médicinal adj m p 0.85 0.54 0.01 0.07 +médicine médiciner ver 0.07 0.00 0.07 0.00 ind:pre:1s;ind:pre:3s; +médico_légal médico_légal adj m s 1.06 0.54 0.63 0.41 +médico_légal médico_légal adj f s 1.06 0.54 0.25 0.14 +médico_légal médico_légal adj f p 1.06 0.54 0.13 0.00 +médico_légal médico_légal adj m p 1.06 0.54 0.05 0.00 +médico_psychologique médico_psychologique adj m s 0.01 0.00 0.01 0.00 +médico_social médico_social adj m s 0.01 0.07 0.01 0.07 +médina médina nom f s 0.37 1.28 0.37 1.08 +médinas médina nom f p 0.37 1.28 0.00 0.20 +médiocre médiocre adj s 3.36 15.88 2.59 11.89 +médiocrement médiocrement adv 0.28 2.43 0.28 2.43 +médiocres médiocre adj p 3.36 15.88 0.77 3.99 +médiocrité médiocrité nom f s 2.04 5.54 2.02 5.34 +médiocrités médiocrité nom f p 2.04 5.54 0.02 0.20 +médire médire ver 0.35 1.15 0.11 0.41 inf; +médis médire ver 0.35 1.15 0.02 0.07 imp:pre:2s;ind:pre:2s; +médisaient médire ver 0.35 1.15 0.00 0.07 ind:imp:3p; +médisait médire ver 0.35 1.15 0.01 0.07 ind:imp:3s; +médisance médisance nom f s 0.13 1.62 0.04 0.88 +médisances médisance nom f p 0.13 1.62 0.09 0.74 +médisant médisant adj m s 0.06 0.14 0.04 0.07 +médisante médisant adj f s 0.06 0.14 0.02 0.07 +médisants médisant nom m p 0.17 0.68 0.16 0.47 +médise médire ver 0.35 1.15 0.00 0.07 sub:pre:3s; +médisent médire ver 0.35 1.15 0.00 0.20 ind:pre:3p; +médisez médire ver 0.35 1.15 0.02 0.00 imp:pre:2p; +médisons médire ver 0.35 1.15 0.00 0.14 imp:pre:1p;ind:pre:1p; +médit médire ver m s 0.35 1.15 0.17 0.14 ind:pre:3s;par:pas; +médita méditer ver 5.49 14.86 0.01 0.81 ind:pas:3s; +méditai méditer ver 5.49 14.86 0.00 0.14 ind:pas:1s; +méditaient méditer ver 5.49 14.86 0.01 0.47 ind:imp:3p; +méditais méditer ver 5.49 14.86 0.19 0.54 ind:imp:1s;ind:imp:2s; +méditait méditer ver 5.49 14.86 0.12 2.50 ind:imp:3s; +méditant méditer ver 5.49 14.86 0.07 1.22 par:pre; +méditatif méditatif adj m s 0.20 4.59 0.08 2.36 +méditatifs méditatif adj m p 0.20 4.59 0.00 0.74 +méditation méditation nom f s 3.14 10.47 2.72 7.50 +méditations méditation nom f p 3.14 10.47 0.42 2.97 +méditative méditatif adj f s 0.20 4.59 0.12 1.28 +méditativement méditativement adv 0.00 0.34 0.00 0.34 +méditatives méditatif adj f p 0.20 4.59 0.00 0.20 +médite méditer ver 5.49 14.86 0.68 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +méditent méditer ver 5.49 14.86 0.28 0.41 ind:pre:3p; +méditer méditer ver 5.49 14.86 2.44 4.80 inf; +méditera méditer ver 5.49 14.86 0.03 0.07 ind:fut:3s; +méditerait méditer ver 5.49 14.86 0.00 0.07 cnd:pre:3s; +méditeras méditer ver 5.49 14.86 0.01 0.00 ind:fut:2s; +méditerranée méditerrané adj f s 0.04 0.95 0.04 0.95 +méditerranéen méditerranéen adj m s 0.74 5.34 0.08 2.64 +méditerranéenne méditerranéen adj f s 0.74 5.34 0.33 1.49 +méditerranéennes méditerranéenne nom f p 0.03 0.14 0.03 0.14 +méditerranéens méditerranéen nom m p 0.45 0.27 0.45 0.07 +médites méditer ver 5.49 14.86 0.31 0.07 ind:pre:2s; +méditez méditer ver 5.49 14.86 0.56 0.27 imp:pre:2p;ind:pre:2p; +méditiez méditer ver 5.49 14.86 0.02 0.00 ind:imp:2p; +méditons méditer ver 5.49 14.86 0.07 0.00 imp:pre:1p;ind:pre:1p; +méditèrent méditer ver 5.49 14.86 0.01 0.07 ind:pas:3p; +médité méditer ver m s 5.49 14.86 0.67 1.35 par:pas; +méditée méditer ver f s 5.49 14.86 0.01 0.27 par:pas; +méditées méditer ver f p 5.49 14.86 0.00 0.14 par:pas; +médités méditer ver m p 5.49 14.86 0.00 0.14 par:pas; +médium médium nom m s 6.07 1.82 4.97 1.08 +médiumnique médiumnique adj s 0.21 0.14 0.11 0.14 +médiumniques médiumnique adj p 0.21 0.14 0.10 0.00 +médiumnité médiumnité nom f s 0.03 0.00 0.03 0.00 +médiums médium nom m p 6.07 1.82 1.10 0.74 +médius médius nom m 0.16 1.69 0.16 1.69 +médiéval médiéval adj m s 1.66 4.26 0.70 1.15 +médiévale médiéval adj f s 1.66 4.26 0.50 1.62 +médiévales médiéval adj f p 1.66 4.26 0.42 0.88 +médiévaux médiéval adj m p 1.66 4.26 0.04 0.61 +médiéviste médiéviste nom s 0.00 0.20 0.00 0.07 +médiévistes médiéviste nom p 0.00 0.20 0.00 0.14 +médoc médoc nom m s 1.48 1.35 0.19 0.14 +médocs médoc nom m p 1.48 1.35 1.29 1.22 +mudéjar mudéjar adj m s 0.10 0.20 0.10 0.14 +mudéjare mudéjar adj f s 0.10 0.20 0.00 0.07 +médulla médulla nom f s 0.01 0.00 0.01 0.00 +médullaire médullaire adj s 0.07 0.00 0.07 0.00 +médusa méduser ver 0.48 1.96 0.10 0.14 ind:pas:3s; +médusait méduser ver 0.48 1.96 0.00 0.14 ind:imp:3s; +médusant méduser ver 0.48 1.96 0.00 0.07 par:pre; +méduse méduse nom f s 1.50 3.92 0.66 1.42 +médusent méduser ver 0.48 1.96 0.00 0.07 ind:pre:3p; +méduser méduser ver 0.48 1.96 0.01 0.00 inf; +méduses méduse nom f p 1.50 3.92 0.84 2.50 +médusé méduser ver m s 0.48 1.96 0.15 0.47 par:pas; +médusée méduser ver f s 0.48 1.96 0.00 0.41 par:pas; +médusées médusé adj f p 0.02 1.96 0.00 0.14 +médusés méduser ver m p 0.48 1.96 0.21 0.61 par:pas; +mue muer ver 1.63 7.03 0.26 0.88 ind:pre:1s;ind:pre:3s; +muent muer ver 1.63 7.03 0.16 0.20 ind:pre:3p; +muer muer ver 1.63 7.03 0.65 0.95 inf; +muera muer ver 1.63 7.03 0.02 0.00 ind:fut:3s; +mueront muer ver 1.63 7.03 0.00 0.07 ind:fut:3p; +mues muer ver 1.63 7.03 0.02 0.07 ind:pre:2s;sub:pre:2s; +muesli muesli nom m s 0.06 0.00 0.06 0.00 +muet muet adj m s 14.23 45.74 8.69 16.55 +muets muet adj m p 14.23 45.74 2.43 6.01 +muette muet adj f s 14.23 45.74 2.68 19.12 +muettement muettement adv 0.00 0.68 0.00 0.68 +muettes muet adj f p 14.23 45.74 0.43 4.05 +muezzin muezzin nom m s 0.14 0.61 0.14 0.41 +muezzins muezzin nom m p 0.14 0.61 0.00 0.20 +méfait méfait nom m s 1.85 2.64 0.46 0.74 +méfaits méfait nom m p 1.85 2.64 1.39 1.89 +muffin muffin nom m s 2.96 0.34 1.30 0.00 +muffins muffin nom m p 2.96 0.34 1.65 0.34 +méfiaient méfier ver 26.68 35.95 0.03 0.88 ind:imp:3p; +méfiais méfier ver 26.68 35.95 0.29 1.42 ind:imp:1s;ind:imp:2s; +méfiait méfier ver 26.68 35.95 0.16 4.05 ind:imp:3s; +méfiance méfiance nom f s 2.21 19.46 2.18 18.99 +méfiances méfiance nom f p 2.21 19.46 0.02 0.47 +méfiant méfiant adj m s 3.64 9.93 2.07 5.14 +méfiante méfiant adj f s 3.64 9.93 1.12 2.36 +méfiantes méfiant adj f p 3.64 9.93 0.01 0.47 +méfiants méfiant adj m p 3.64 9.93 0.44 1.96 +méfie méfier ver 26.68 35.95 10.95 8.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +méfient méfier ver 26.68 35.95 1.31 1.15 ind:pre:3p; +méfier méfier ver 26.68 35.95 7.18 13.11 inf; +méfiera méfier ver 26.68 35.95 0.15 0.07 ind:fut:3s; +méfierai méfier ver 26.68 35.95 0.26 0.14 ind:fut:1s; +méfierais méfier ver 26.68 35.95 0.36 0.41 cnd:pre:1s; +méfierait méfier ver 26.68 35.95 0.30 0.07 cnd:pre:3s; +méfieront méfier ver 26.68 35.95 0.19 0.00 ind:fut:3p; +méfies méfier ver 26.68 35.95 0.61 0.20 ind:pre:2s; +méfiez méfier ver 26.68 35.95 3.63 2.70 imp:pre:2p;ind:pre:2p; +méfiions méfier ver 26.68 35.95 0.00 0.14 ind:imp:1p; +méfions méfier ver 26.68 35.95 0.73 0.34 imp:pre:1p;ind:pre:1p; +méfièrent méfier ver 26.68 35.95 0.02 0.07 ind:pas:3p; +méfié méfier ver m s 26.68 35.95 0.22 1.22 par:pas; +méfiée méfier ver f s 26.68 35.95 0.19 0.41 par:pas; +méfiés méfier ver m p 26.68 35.95 0.01 0.68 par:pas; +mufle mufle nom m s 1.70 6.89 1.56 6.08 +muflerie muflerie nom f s 0.12 1.01 0.12 0.81 +mufleries muflerie nom f p 0.12 1.01 0.00 0.20 +mufles mufle nom m p 1.70 6.89 0.14 0.81 +muflier muflier nom m s 0.68 0.07 0.68 0.00 +mufliers muflier nom m p 0.68 0.07 0.00 0.07 +muflée muflée nom f s 0.01 0.20 0.01 0.20 +méforme méforme nom f s 0.02 0.00 0.02 0.00 +mufti mufti nom m s 0.26 0.41 0.25 0.14 +muftis mufti nom m p 0.26 0.41 0.01 0.27 +méga méga adj s 4.75 0.81 4.75 0.81 +mégacôlon mégacôlon nom m s 0.01 0.00 0.01 0.00 +mégahertz mégahertz nom m 0.05 0.00 0.05 0.00 +mégajoules mégajoule nom m p 0.02 0.00 0.02 0.00 +mégalithe mégalithe nom m s 0.01 0.14 0.01 0.14 +mégalithique mégalithique adj f s 0.00 0.14 0.00 0.14 +mégalo mégalo adj m s 0.34 0.00 0.32 0.00 +mégalomane mégalomane adj s 0.42 0.47 0.41 0.34 +mégalomanes mégalomane adj m p 0.42 0.47 0.01 0.14 +mégalomaniaque mégalomaniaque adj s 0.01 0.14 0.01 0.14 +mégalomanie mégalomanie nom f s 0.25 0.61 0.25 0.61 +mégalopole mégalopole nom f s 0.02 0.00 0.02 0.00 +mégalos mégalo nom p 0.03 0.20 0.03 0.00 +mégalosaure mégalosaure nom m s 0.01 0.00 0.01 0.00 +mégaphone mégaphone nom m s 0.89 0.61 0.58 0.54 +mégaphones mégaphone nom m p 0.89 0.61 0.30 0.07 +mégapole mégapole nom f s 0.01 0.27 0.01 0.27 +mégaron mégaron nom m s 0.00 0.14 0.00 0.14 +mégathériums mégathérium nom m p 0.00 0.07 0.00 0.07 +mégatonne mégatonne nom f s 0.39 0.14 0.04 0.00 +mégatonnes mégatonne nom f p 0.39 0.14 0.35 0.14 +mégawatts mégawatt nom m p 0.00 0.07 0.00 0.07 +muges muge nom m p 0.00 0.07 0.00 0.07 +mugi mugir ver m s 0.33 2.84 0.01 0.20 par:pas; +mugir mugir ver 0.33 2.84 0.04 0.95 inf; +mugis mugir ver 0.33 2.84 0.00 0.07 ind:pre:2s; +mugissaient mugir ver 0.33 2.84 0.00 0.07 ind:imp:3p; +mugissait mugir ver 0.33 2.84 0.00 0.34 ind:imp:3s; +mugissant mugissant adj m s 0.20 0.54 0.10 0.20 +mugissante mugissant adj f s 0.20 0.54 0.10 0.14 +mugissantes mugissant adj f p 0.20 0.54 0.00 0.14 +mugissants mugissant adj m p 0.20 0.54 0.00 0.07 +mugissement mugissement nom m s 0.09 2.97 0.04 1.76 +mugissements mugissement nom m p 0.09 2.97 0.04 1.22 +mugissent mugir ver 0.33 2.84 0.01 0.14 ind:pre:3p; +mégisserie mégisserie nom f s 0.00 0.47 0.00 0.47 +mégissiers mégissier nom m p 0.00 0.07 0.00 0.07 +mugit mugir ver 0.33 2.84 0.26 0.88 ind:pre:3s;ind:pas:3s; +mégot mégot nom m s 2.66 17.30 1.20 9.53 +mégotage mégotage nom m s 0.01 0.20 0.01 0.14 +mégotages mégotage nom m p 0.01 0.20 0.00 0.07 +mégotaient mégoter ver 0.43 0.47 0.00 0.07 ind:imp:3p; +mégotait mégoter ver 0.43 0.47 0.00 0.07 ind:imp:3s; +mégote mégoter ver 0.43 0.47 0.02 0.14 ind:pre:3s; +mégoter mégoter ver 0.43 0.47 0.41 0.14 inf; +mégots mégot nom m p 2.66 17.30 1.46 7.77 +mégoté mégoter ver m s 0.43 0.47 0.00 0.07 par:pas; +mégère mégère nom f s 1.01 0.81 0.83 0.54 +mégères mégère nom f p 1.01 0.81 0.18 0.27 +muguet muguet nom m s 0.40 3.92 0.38 3.85 +muguets muguet nom m p 0.40 3.92 0.02 0.07 +muguette mugueter ver 0.00 0.07 0.00 0.07 imp:pre:2s; +méhari méhari nom m s 0.14 0.41 0.14 0.41 +méhariste méhariste nom s 0.01 0.27 0.00 0.07 +méharistes méhariste nom p 0.01 0.27 0.01 0.20 +muids muid nom m p 0.00 0.14 0.00 0.14 +méiose méiose nom f s 0.04 0.00 0.04 0.00 +méjugement méjugement nom m s 0.00 0.07 0.00 0.07 +méjugez méjuger ver 0.05 0.07 0.03 0.00 imp:pre:2p;ind:pre:2p; +méjugé méjuger ver m s 0.05 0.07 0.01 0.00 par:pas; +méjugés méjuger ver m p 0.05 0.07 0.01 0.07 par:pas; +mêla mêler ver 53.84 112.64 0.04 2.50 ind:pas:3s; +mêlai mêler ver 53.84 112.64 0.00 0.54 ind:pas:1s; +mêlaient mêler ver 53.84 112.64 0.07 11.15 ind:imp:3p; +mêlais mêler ver 53.84 112.64 0.21 0.61 ind:imp:1s;ind:imp:2s; +mêlait mêler ver 53.84 112.64 0.14 13.31 ind:imp:3s; +mélancolie mélancolie nom f s 2.60 21.01 2.60 20.68 +mélancolies mélancolie nom f p 2.60 21.01 0.00 0.34 +mélancolieux mélancolieux adj m 0.00 0.07 0.00 0.07 +mélancolique mélancolique adj s 4.41 16.62 4.10 13.45 +mélancoliquement mélancoliquement adv 0.00 1.82 0.00 1.82 +mélancoliques mélancolique adj p 4.41 16.62 0.31 3.18 +mélancoliser mélancoliser ver 0.00 0.07 0.00 0.07 inf; +mélange mélange nom m s 9.90 31.01 9.56 28.58 +mélangea mélanger ver 14.36 22.84 0.01 0.61 ind:pas:3s; +mélangeaient mélanger ver 14.36 22.84 0.01 1.76 ind:imp:3p; +mélangeais mélanger ver 14.36 22.84 0.04 0.20 ind:imp:1s;ind:imp:2s; +mélangeait mélanger ver 14.36 22.84 0.10 2.50 ind:imp:3s; +mélangeant mélanger ver 14.36 22.84 0.27 1.96 par:pre; +mélangent mélanger ver 14.36 22.84 0.95 1.28 ind:pre:3p; +mélangeons mélanger ver 14.36 22.84 0.31 0.20 imp:pre:1p;ind:pre:1p; +mélanger mélanger ver 14.36 22.84 4.46 3.18 inf;; +mélangera mélanger ver 14.36 22.84 0.17 0.07 ind:fut:3s; +mélangerai mélanger ver 14.36 22.84 0.01 0.00 ind:fut:1s; +mélangeraient mélanger ver 14.36 22.84 0.00 0.07 cnd:pre:3p; +mélanges mélanger ver 14.36 22.84 0.88 0.47 ind:pre:2s;sub:pre:2s; +mélangeur mélangeur nom m s 0.05 0.20 0.05 0.14 +mélangeurs mélangeur nom m p 0.05 0.20 0.00 0.07 +mélangez mélanger ver 14.36 22.84 0.94 0.34 imp:pre:2p;ind:pre:2p; +mélangions mélanger ver 14.36 22.84 0.00 0.14 ind:imp:1p; +mélangèrent mélanger ver 14.36 22.84 0.00 0.20 ind:pas:3p; +mélangé mélanger ver m s 14.36 22.84 2.08 2.50 par:pas; +mélangée mélanger ver f s 14.36 22.84 0.24 1.42 par:pas; +mélangées mélangé adj f p 1.22 2.97 0.31 0.74 +mélangés mélanger ver m p 14.36 22.84 0.51 1.08 par:pas; +mélanine mélanine nom f s 0.04 0.00 0.04 0.00 +mélanome mélanome nom m s 0.52 0.00 0.42 0.00 +mélanomes mélanome nom m p 0.52 0.00 0.09 0.00 +mêlant mêler ver 53.84 112.64 0.70 4.86 par:pre; +mélanésiennes mélanésien adj f p 0.01 0.00 0.01 0.00 +mulard mulard adj m s 0.01 0.00 0.01 0.00 +mélasse mélasse nom f s 1.31 1.42 1.31 1.42 +mêlasse mêler ver 53.84 112.64 0.00 0.07 sub:imp:1s; +mélatonine mélatonine nom f s 0.11 0.00 0.11 0.00 +mêle_tout mêle_tout nom m 0.01 0.00 0.01 0.00 +mêle mêler ver 53.84 112.64 18.97 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +mule mule nom f s 9.62 8.99 7.29 4.26 +mêlent mêler ver 53.84 112.64 1.77 6.01 ind:pre:3p; +mêler mêler ver 53.84 112.64 11.24 17.23 inf;; +mêlera mêler ver 53.84 112.64 0.41 0.14 ind:fut:3s; +mêlerai mêler ver 53.84 112.64 0.30 0.20 ind:fut:1s; +mêleraient mêler ver 53.84 112.64 0.02 0.07 cnd:pre:3p; +mêlerais mêler ver 53.84 112.64 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +mêlerait mêler ver 53.84 112.64 0.16 0.07 cnd:pre:3s; +mêleront mêler ver 53.84 112.64 0.31 0.14 ind:fut:3p; +mêles mêler ver 53.84 112.64 3.03 0.68 ind:pre:2s; +mules mule nom f p 9.62 8.99 2.33 4.73 +mulet mulet nom m s 3.67 7.43 3.19 2.77 +muleta muleta nom f s 0.15 0.27 0.15 0.27 +muletier muletier adj m s 0.05 0.41 0.05 0.27 +muletiers muletier nom m p 0.37 0.27 0.32 0.27 +muletière muletier adj f s 0.05 0.41 0.00 0.14 +mulets mulet nom m p 3.67 7.43 0.49 4.66 +mulettes mulette nom f p 0.01 0.00 0.01 0.00 +mêlez mêler ver 53.84 112.64 4.26 0.88 imp:pre:2p;ind:pre:2p; +mulhousien mulhousien adj m s 0.00 0.07 0.00 0.07 +méli_mélo méli_mélo nom m s 0.39 0.81 0.39 0.68 +mêliez mêler ver 53.84 112.64 0.11 0.14 ind:imp:2p; +mélilot mélilot nom m s 0.00 0.07 0.00 0.07 +mélinite mélinite nom f s 0.00 0.14 0.00 0.14 +mêlions mêler ver 53.84 112.64 0.01 0.07 ind:imp:1p; +méli_mélo méli_mélo nom m p 0.39 0.81 0.00 0.14 +mélisse mélisse nom f s 0.00 0.34 0.00 0.34 +mullah mullah nom m s 0.05 0.00 0.05 0.00 +mélo mélo nom m s 0.89 1.08 0.84 0.95 +mélodie mélodie nom f s 4.08 7.77 3.61 5.95 +mélodies mélodie nom f p 4.08 7.77 0.47 1.82 +mélodieuse mélodieux adj f s 0.49 2.97 0.11 0.95 +mélodieusement mélodieusement adv 0.01 0.07 0.01 0.07 +mélodieuses mélodieux adj f p 0.49 2.97 0.01 0.14 +mélodieux mélodieux adj m 0.49 2.97 0.37 1.89 +mélodique mélodique adj s 0.06 0.47 0.03 0.34 +mélodiques mélodique adj p 0.06 0.47 0.03 0.14 +mélodramatique mélodramatique adj s 0.64 0.68 0.51 0.68 +mélodramatiques mélodramatique adj p 0.64 0.68 0.13 0.00 +mélodrame mélodrame nom m s 1.09 1.49 1.04 1.35 +mélodrames mélodrame nom m p 1.09 1.49 0.05 0.14 +mélomane mélomane adj m s 0.21 0.54 0.21 0.54 +mélomanes mélomane nom p 0.44 0.81 0.27 0.27 +mulon mulon nom m s 0.00 0.07 0.00 0.07 +mêlons mêler ver 53.84 112.64 0.19 0.20 imp:pre:1p;ind:pre:1p; +mélopée mélopée nom f s 0.02 3.51 0.01 2.84 +mélopées mélopée nom f p 0.02 3.51 0.01 0.68 +mélos mélo nom m p 0.89 1.08 0.05 0.14 +mêlât mêler ver 53.84 112.64 0.00 0.47 sub:imp:3s; +mulot mulot nom m s 0.06 1.55 0.04 0.88 +mulâtre mulâtre nom m s 0.77 1.08 0.50 0.74 +mulâtres mulâtre nom m p 0.77 1.08 0.27 0.34 +mulâtresse mulâtresse nom f s 0.14 0.34 0.01 0.20 +mulâtresses mulâtresse nom f p 0.14 0.34 0.14 0.14 +mulots mulot nom m p 0.06 1.55 0.01 0.68 +mêlèrent mêler ver 53.84 112.64 0.01 1.22 ind:pas:3p; +mélèze mélèze nom m s 0.04 1.08 0.03 0.41 +mélèzes mélèze nom m p 0.04 1.08 0.01 0.68 +multi_tâches multi_tâches adj f s 0.05 0.00 0.05 0.00 +multi multi adv 2.37 0.61 2.37 0.61 +multicellulaire multicellulaire adj s 0.02 0.00 0.02 0.00 +multicolore multicolore adj s 0.42 13.72 0.19 3.04 +multicolores multicolore adj p 0.42 13.72 0.23 10.68 +multiconfessionnel multiconfessionnel adj m s 0.01 0.00 0.01 0.00 +multicouche multicouche adj m s 0.01 0.00 0.01 0.00 +multiculturalisme multiculturalisme nom m s 0.01 0.00 0.01 0.00 +multiculturel multiculturel adj m s 0.10 0.00 0.03 0.00 +multiculturelle multiculturel adj f s 0.10 0.00 0.07 0.00 +multidimensionnel multidimensionnel adj m s 0.12 0.00 0.04 0.00 +multidimensionnelle multidimensionnel adj f s 0.12 0.00 0.06 0.00 +multidimensionnels multidimensionnel adj m p 0.12 0.00 0.01 0.00 +multidisciplinaire multidisciplinaire adj s 0.01 0.07 0.01 0.07 +multifamilial multifamilial adj m s 0.01 0.00 0.01 0.00 +multifonction multifonction adj m s 0.04 0.00 0.04 0.00 +multifonctionnel multifonctionnel adj m s 0.01 0.00 0.01 0.00 +multifonctions multifonctions adj m s 0.14 0.00 0.14 0.00 +multiforme multiforme adj s 0.04 0.74 0.02 0.47 +multiformes multiforme adj f p 0.04 0.74 0.01 0.27 +multifréquences multifréquence adj m p 0.01 0.00 0.01 0.00 +multigrade multigrade adj f s 0.00 0.34 0.00 0.34 +multimilliardaire multimilliardaire adj f s 0.04 0.00 0.04 0.00 +multimilliardaire multimilliardaire nom s 0.04 0.00 0.04 0.00 +multimillionnaire multimillionnaire nom s 0.13 0.00 0.09 0.00 +multimillionnaires multimillionnaire nom p 0.13 0.00 0.04 0.00 +multimédia multimédia adj s 0.08 0.00 0.08 0.00 +multinational multinational adj m s 0.53 0.27 0.07 0.07 +multinationale multinationale nom f s 1.71 0.41 0.48 0.27 +multinationales multinationale nom f p 1.71 0.41 1.22 0.14 +multinationaux multinational adj m p 0.53 0.27 0.00 0.07 +multipare multipare nom f s 0.00 0.07 0.00 0.07 +multipartite multipartite adj s 0.10 0.00 0.10 0.00 +multiple multiple adj s 6.60 18.18 0.84 3.92 +multiples multiple adj p 6.60 18.18 5.76 14.26 +multiplex multiplex nom m 0.09 0.00 0.09 0.00 +multiplexe multiplexe nom m s 0.04 0.00 0.01 0.00 +multiplexer multiplexer ver 0.02 0.00 0.01 0.00 inf; +multiplexes multiplexe nom m p 0.04 0.00 0.03 0.00 +multiplexé multiplexer ver m s 0.02 0.00 0.01 0.00 par:pas; +multiplia multiplier ver 6.07 22.91 0.00 0.81 ind:pas:3s; +multipliai multiplier ver 6.07 22.91 0.00 0.20 ind:pas:1s; +multipliaient multiplier ver 6.07 22.91 0.07 2.91 ind:imp:3p; +multipliais multiplier ver 6.07 22.91 0.00 0.20 ind:imp:1s; +multipliait multiplier ver 6.07 22.91 0.07 2.50 ind:imp:3s; +multipliant multiplier ver 6.07 22.91 0.10 2.23 par:pre; +multiplicateur multiplicateur adj m s 0.04 0.00 0.04 0.00 +multiplication multiplication nom f s 0.54 2.36 0.28 2.03 +multiplications multiplication nom f p 0.54 2.36 0.26 0.34 +multiplicité multiplicité nom f s 0.18 1.55 0.17 1.49 +multiplicités multiplicité nom f p 0.18 1.55 0.01 0.07 +multiplie multiplier ver 6.07 22.91 1.06 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +multiplient multiplier ver 6.07 22.91 1.29 2.16 ind:pre:3p; +multiplier multiplier ver 6.07 22.91 1.39 3.51 inf; +multiplierai multiplier ver 6.07 22.91 0.00 0.07 ind:fut:1s; +multiplieraient multiplier ver 6.07 22.91 0.00 0.14 cnd:pre:3p; +multiplierait multiplier ver 6.07 22.91 0.00 0.07 cnd:pre:3s; +multiplierons multiplier ver 6.07 22.91 0.02 0.00 ind:fut:1p; +multiplieront multiplier ver 6.07 22.91 0.04 0.14 ind:fut:3p; +multiplies multiplier ver 6.07 22.91 0.14 0.07 ind:pre:2s; +multipliez multiplier ver 6.07 22.91 0.50 0.27 imp:pre:2p;ind:pre:2p; +multipliions multiplier ver 6.07 22.91 0.00 0.07 ind:imp:1p; +multipliât multiplier ver 6.07 22.91 0.00 0.14 sub:imp:3s; +multiplièrent multiplier ver 6.07 22.91 0.01 0.81 ind:pas:3p; +multiplié multiplier ver m s 6.07 22.91 0.75 1.76 par:pas; +multipliée multiplier ver f s 6.07 22.91 0.27 0.81 par:pas; +multipliées multiplier ver f p 6.07 22.91 0.20 0.88 par:pas; +multipliés multiplier ver m p 6.07 22.91 0.16 0.74 par:pas; +multipoints multipoints adj f s 0.01 0.00 0.01 0.00 +multiprise multiprise nom f s 0.03 0.14 0.03 0.14 +multipropriété multipropriété nom f s 0.23 0.00 0.23 0.00 +multiracial multiracial adj m s 0.14 0.00 0.02 0.00 +multiraciale multiracial adj f s 0.14 0.00 0.10 0.00 +multiraciaux multiracial adj m p 0.14 0.00 0.02 0.00 +multirisque multirisque adj f s 0.14 0.07 0.14 0.07 +multirécidiviste multirécidiviste nom s 0.05 0.00 0.05 0.00 +multiséculaires multiséculaire adj p 0.00 0.07 0.00 0.07 +multitâche multitâche adj m s 0.04 0.00 0.03 0.00 +multitâches multitâche nom m p 0.06 0.00 0.04 0.00 +multitude multitude nom f s 1.38 10.27 1.31 9.66 +multitudes multitude nom f p 1.38 10.27 0.07 0.61 +mêlé_cass mêlé_cass nom m 0.00 0.20 0.00 0.20 +mêlé_casse mêlé_casse nom m 0.00 0.14 0.00 0.14 +mêlé mêler ver m s 53.84 112.64 7.40 13.65 par:pas; +mêlécasse mêlécasse nom m s 0.00 0.07 0.00 0.07 +mêlée mêler ver f s 53.84 112.64 2.98 11.89 par:pas; +mêlées mêler ver f p 53.84 112.64 0.23 6.76 par:pas; +mêlés mêler ver m p 53.84 112.64 1.12 8.72 par:pas; +même même pro_ind s 43.18 55.74 43.18 55.74 +mêmement mêmement adv 0.10 0.34 0.10 0.34 +mémentos mémento nom m p 0.00 0.07 0.00 0.07 +mêmes mêmes pro_ind p 14.48 18.38 14.48 18.38 +mémo mémo nom m s 3.21 0.07 2.72 0.00 +mémoire mémoire nom s 60.87 110.88 56.60 105.74 +mémoires mémoire nom p 60.87 110.88 4.27 5.14 +mémorabilité mémorabilité nom f s 0.00 0.07 0.00 0.07 +mémorable mémorable adj s 2.23 5.34 2.04 4.26 +mémorables mémorable adj p 2.23 5.34 0.19 1.08 +mémorandum mémorandum nom m s 0.10 2.91 0.09 2.91 +mémorandums mémorandum nom m p 0.10 2.91 0.01 0.00 +mémorial mémorial nom m s 0.81 0.41 0.80 0.34 +mémorialiste mémorialiste nom s 0.00 0.54 0.00 0.34 +mémorialistes mémorialiste nom p 0.00 0.54 0.00 0.20 +mémoriaux mémorial nom m p 0.81 0.41 0.01 0.07 +mémoriel mémoriel adj m s 0.18 0.07 0.07 0.00 +mémorielle mémoriel adj f s 0.18 0.07 0.06 0.00 +mémoriels mémoriel adj m p 0.18 0.07 0.04 0.07 +mémorisables mémorisable adj m p 0.00 0.07 0.00 0.07 +mémorisaient mémoriser ver 2.57 0.41 0.00 0.07 ind:imp:3p; +mémorisait mémoriser ver 2.57 0.41 0.02 0.00 ind:imp:3s; +mémorisation mémorisation nom f s 0.02 0.00 0.02 0.00 +mémorise mémoriser ver 2.57 0.41 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mémorisent mémoriser ver 2.57 0.41 0.03 0.00 ind:pre:3p; +mémoriser mémoriser ver 2.57 0.41 1.30 0.14 inf; +mémoriserai mémoriser ver 2.57 0.41 0.03 0.00 ind:fut:1s; +mémoriserais mémoriser ver 2.57 0.41 0.01 0.00 cnd:pre:1s; +mémorisez mémoriser ver 2.57 0.41 0.27 0.00 imp:pre:2p;ind:pre:2p; +mémorisiez mémoriser ver 2.57 0.41 0.02 0.00 ind:imp:2p; +mémorisé mémoriser ver m s 2.57 0.41 0.50 0.00 par:pas; +mémorisée mémoriser ver f s 2.57 0.41 0.08 0.00 par:pas; +mémorisées mémoriser ver f p 2.57 0.41 0.01 0.00 par:pas; +mémorisés mémoriser ver m p 2.57 0.41 0.07 0.14 par:pas; +mémos mémo nom m p 3.21 0.07 0.49 0.07 +mémère mémère nom f s 1.03 5.34 1.00 3.78 +mémères mémère nom f p 1.03 5.34 0.04 1.55 +mémé mémé nom f s 8.21 35.34 8.15 34.39 +mémés mémé nom f p 8.21 35.34 0.06 0.95 +ménade ménade nom f s 0.01 0.20 0.01 0.14 +ménades ménade nom f p 0.01 0.20 0.00 0.07 +ménage ménage nom m s 29.46 32.91 27.55 29.26 +ménagea ménager ver 5.12 23.65 0.01 0.41 ind:pas:3s; +ménageaient ménager ver 5.12 23.65 0.01 0.95 ind:imp:3p; +ménageais ménager ver 5.12 23.65 0.14 0.47 ind:imp:1s; +ménageait ménager ver 5.12 23.65 0.13 1.82 ind:imp:3s; +ménageant ménager ver 5.12 23.65 0.14 1.62 par:pre; +ménagement ménagement nom m s 0.45 5.20 0.42 3.11 +ménagements ménagement nom m p 0.45 5.20 0.03 2.09 +ménagent ménager ver 5.12 23.65 0.16 0.54 ind:pre:3p; +ménageât ménager ver 5.12 23.65 0.00 0.34 sub:imp:3s; +ménager ménager ver 5.12 23.65 1.73 8.45 inf;; +ménagera ménager ver 5.12 23.65 0.01 0.14 ind:fut:3s; +ménagerai ménager ver 5.12 23.65 0.01 0.07 ind:fut:1s; +ménagerait ménager ver 5.12 23.65 0.00 0.27 cnd:pre:3s; +ménageras ménager ver 5.12 23.65 0.01 0.00 ind:fut:2s; +ménagerie ménagerie nom f s 0.56 2.23 0.54 2.09 +ménageries ménagerie nom f p 0.56 2.23 0.02 0.14 +ménagers ménager adj m p 2.87 9.12 1.11 1.76 +ménages ménage nom m p 29.46 32.91 1.91 3.65 +ménagez ménager ver 5.12 23.65 0.83 0.41 imp:pre:2p;ind:pre:2p; +ménagiez ménager ver 5.12 23.65 0.01 0.07 ind:imp:2p; +ménagions ménager ver 5.12 23.65 0.00 0.07 ind:imp:1p; +ménagère ménager nom f s 2.57 8.72 1.57 4.05 +ménagèrent ménager ver 5.12 23.65 0.00 0.14 ind:pas:3p; +ménagères ménager nom f p 2.57 8.72 0.95 4.53 +ménagé ménager ver m s 5.12 23.65 0.43 2.91 par:pas; +ménagée ménager ver f s 5.12 23.65 0.02 1.49 par:pas; +ménagées ménager ver f p 5.12 23.65 0.00 0.47 par:pas; +ménagés ménager ver m p 5.12 23.65 0.01 0.41 par:pas; +ménesse ménesse nom f s 0.00 0.07 0.00 0.07 +ménestrel ménestrel nom m s 0.43 0.14 0.28 0.00 +ménestrels ménestrel nom m p 0.43 0.14 0.14 0.14 +mungo mungo nom m s 0.02 0.00 0.02 0.00 +muni munir ver m s 2.06 14.53 1.14 6.62 par:pas; +munich munich nom s 0.00 0.07 0.00 0.07 +munichois munichois adj m p 0.10 0.14 0.10 0.07 +munichoise munichois adj f s 0.10 0.14 0.00 0.07 +municipal municipal adj m s 9.92 14.53 6.25 7.03 +municipale municipal adj f s 9.92 14.53 1.66 3.18 +municipales municipal adj f p 9.92 14.53 0.54 1.22 +municipalité municipalité nom f s 1.79 3.58 1.77 2.57 +municipalités municipalité nom f p 1.79 3.58 0.03 1.01 +municipaux municipal adj m p 9.92 14.53 1.47 3.11 +municipe municipe nom m s 0.00 0.27 0.00 0.20 +municipes municipe nom m p 0.00 0.27 0.00 0.07 +munie munir ver f s 2.06 14.53 0.29 3.78 par:pas; +munies munir ver f p 2.06 14.53 0.14 1.01 par:pas; +munificence munificence nom f s 0.14 1.01 0.00 0.81 +munificences munificence nom f p 0.14 1.01 0.14 0.20 +munificente munificent adj f s 0.00 0.14 0.00 0.07 +munificents munificent adj m p 0.00 0.14 0.00 0.07 +méninges méninge nom f p 1.08 2.70 1.08 2.70 +méningiome méningiome nom m s 0.01 0.00 0.01 0.00 +méningite méningite nom f s 0.99 0.81 0.96 0.81 +méningites méningite nom f p 0.99 0.81 0.03 0.00 +méningocoque méningocoque nom m s 0.01 0.00 0.01 0.00 +méningée méningé adj f s 0.04 0.07 0.04 0.07 +munir munir ver 2.06 14.53 0.24 0.88 inf; +munis munir ver m p 2.06 14.53 0.25 1.69 imp:pre:2s;ind:pre:1s;par:pas; +ménisque ménisque nom m s 0.39 0.41 0.28 0.27 +ménisques ménisque nom m p 0.39 0.41 0.10 0.14 +munissaient munir ver 2.06 14.53 0.00 0.07 ind:imp:3p; +munissait munir ver 2.06 14.53 0.00 0.14 ind:imp:3s; +munissant munir ver 2.06 14.53 0.00 0.07 par:pre; +munissent munir ver 2.06 14.53 0.00 0.07 ind:pre:3p; +munit munir ver 2.06 14.53 0.01 0.20 ind:pre:3s;ind:pas:3s; +munition munition nom f s 14.68 8.45 0.28 0.07 +munitions munition nom f p 14.68 8.45 14.40 8.38 +ménopause ménopause nom f s 0.83 1.01 0.83 1.01 +ménopausé ménopausé adj m s 0.15 0.14 0.01 0.00 +ménopausée ménopausé adj f s 0.15 0.14 0.10 0.14 +ménopausées ménopausé adj f p 0.15 0.14 0.04 0.00 +munster munster nom m s 0.05 0.20 0.05 0.20 +muon muon nom m s 0.01 0.00 0.01 0.00 +méphistophélique méphistophélique adj s 0.01 0.41 0.01 0.27 +méphistophéliques méphistophélique adj p 0.01 0.41 0.00 0.14 +méphitique méphitique adj f s 0.06 0.68 0.04 0.27 +méphitiques méphitique adj p 0.06 0.68 0.01 0.41 +muphti muphti nom m s 0.00 0.07 0.00 0.07 +méplat méplat nom m s 0.00 0.88 0.00 0.27 +méplats méplat nom m p 0.00 0.88 0.00 0.61 +méprît méprendre ver 4.70 6.15 0.00 0.07 sub:imp:3s; +méprenais méprendre ver 4.70 6.15 0.00 0.07 ind:imp:1s; +méprenait méprendre ver 4.70 6.15 0.00 0.14 ind:imp:3s; +méprenant méprendre ver 4.70 6.15 0.00 0.41 par:pre; +méprend méprendre ver 4.70 6.15 0.08 0.34 ind:pre:3s; +méprendre méprendre ver 4.70 6.15 0.27 2.09 inf; +méprendriez méprendre ver 4.70 6.15 0.00 0.07 cnd:pre:2p; +méprends méprendre ver 4.70 6.15 1.15 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +méprenez méprendre ver 4.70 6.15 2.51 0.27 imp:pre:2p;ind:pre:2p; +mépreniez méprendre ver 4.70 6.15 0.04 0.00 ind:imp:2p; +méprenne méprendre ver 4.70 6.15 0.04 0.27 sub:pre:3s; +méprennent méprendre ver 4.70 6.15 0.09 0.00 ind:pre:3p; +mépris mépris nom m 7.39 36.55 7.39 36.55 +méprisa mépriser ver 15.05 27.57 0.20 0.27 ind:pas:3s; +méprisable méprisable adj s 1.91 2.84 1.41 2.09 +méprisables méprisable adj p 1.91 2.84 0.50 0.74 +méprisai mépriser ver 15.05 27.57 0.00 0.14 ind:pas:1s; +méprisaient mépriser ver 15.05 27.57 0.23 1.22 ind:imp:3p; +méprisais mépriser ver 15.05 27.57 0.13 1.28 ind:imp:1s;ind:imp:2s; +méprisait mépriser ver 15.05 27.57 0.39 5.27 ind:imp:3s; +méprisamment méprisamment adv 0.01 0.00 0.01 0.00 +méprisant méprisant adj m s 0.63 9.86 0.40 4.80 +méprisante méprisant adj f s 0.63 9.86 0.19 3.65 +méprisantes méprisant adj f p 0.63 9.86 0.02 0.20 +méprisants méprisant adj m p 0.63 9.86 0.02 1.22 +méprise mépriser ver 15.05 27.57 6.43 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +méprisent mépriser ver 15.05 27.57 0.73 1.15 ind:pre:3p; +mépriser mépriser ver 15.05 27.57 1.76 4.93 inf; +méprisera mépriser ver 15.05 27.57 0.42 0.07 ind:fut:3s; +mépriserai mépriser ver 15.05 27.57 0.04 0.00 ind:fut:1s; +mépriseraient mépriser ver 15.05 27.57 0.01 0.00 cnd:pre:3p; +mépriserais mépriser ver 15.05 27.57 0.05 0.14 cnd:pre:1s;cnd:pre:2s; +mépriserait mépriser ver 15.05 27.57 0.02 0.20 cnd:pre:3s; +mépriseras mépriser ver 15.05 27.57 0.01 0.07 ind:fut:2s; +mépriseriez mépriser ver 15.05 27.57 0.10 0.07 cnd:pre:2p; +méprises mépriser ver 15.05 27.57 1.50 0.61 ind:pre:2s; +méprisez mépriser ver 15.05 27.57 0.79 0.34 imp:pre:2p;ind:pre:2p; +méprisiez mépriser ver 15.05 27.57 0.04 0.00 ind:imp:2p; +méprisions mépriser ver 15.05 27.57 0.01 0.47 ind:imp:1p;sub:pre:1p; +méprisons mépriser ver 15.05 27.57 0.29 0.14 imp:pre:1p;ind:pre:1p; +méprisé mépriser ver m s 15.05 27.57 0.85 2.77 par:pas; +méprisée mépriser ver f s 15.05 27.57 0.19 0.81 par:pas; +méprisées mépriser ver f p 15.05 27.57 0.30 0.47 par:pas; +méprisés mépriser ver m p 15.05 27.57 0.21 0.68 par:pas; +méprit méprendre ver 4.70 6.15 0.00 0.68 ind:pas:3s; +muqueuse muqueux nom f s 0.11 1.82 0.11 0.61 +muqueuses muqueuse nom f p 0.19 0.00 0.19 0.00 +muqueux muqueux adj m s 0.19 0.47 0.15 0.07 +mur mur nom m s 88.93 317.77 58.90 172.57 +mura murer ver 1.39 6.96 0.11 0.20 ind:pas:3s; +murage murage nom m s 0.01 0.00 0.01 0.00 +muraient murer ver 1.39 6.96 0.00 0.07 ind:imp:3p; +muraille muraille nom f s 2.61 20.88 1.28 11.01 +murailles muraille nom f p 2.61 20.88 1.32 9.86 +murait murer ver 1.39 6.96 0.00 0.34 ind:imp:3s; +mural mural adj m s 0.35 3.24 0.08 1.76 +murale mural adj f s 0.35 3.24 0.20 1.01 +murales mural adj f p 0.35 3.24 0.05 0.47 +murant murer ver 1.39 6.96 0.00 0.14 par:pre; +muraux mural adj m p 0.35 3.24 0.02 0.00 +mure murer ver 1.39 6.96 0.26 0.07 imp:pre:2s;ind:pre:3s; +murent mouvoir ver 1.75 13.18 0.00 0.07 ind:pas:3p; +murer murer ver 1.39 6.96 0.05 1.28 inf; +murerait murer ver 1.39 6.96 0.00 0.07 cnd:pre:3s; +mures murer ver 1.39 6.96 0.01 0.00 ind:pre:2s; +muret muret nom m s 0.28 3.24 0.28 2.64 +muretin muretin nom m s 0.00 0.27 0.00 0.07 +muretins muretin nom m p 0.00 0.27 0.00 0.20 +murets muret nom m p 0.28 3.24 0.00 0.61 +murette murette nom f s 0.00 4.26 0.00 3.31 +murettes murette nom f p 0.00 4.26 0.00 0.95 +murex murex nom m 0.00 0.07 0.00 0.07 +murez murer ver 1.39 6.96 0.00 0.07 imp:pre:2p; +muriatique muriatique adj m s 0.01 0.07 0.01 0.07 +méridien méridien nom m s 0.25 0.95 0.22 0.47 +méridienne méridien adj f s 0.09 0.54 0.04 0.14 +méridiennes méridien adj f p 0.09 0.54 0.00 0.07 +méridiens méridien nom m p 0.25 0.95 0.01 0.14 +méridional méridional adj m s 1.00 2.43 0.32 1.15 +méridionale méridional adj f s 1.00 2.43 0.46 0.88 +méridionales méridional adj f p 1.00 2.43 0.11 0.34 +méridionaux méridional nom m p 0.78 0.47 0.55 0.07 +muridés muridé nom m p 0.02 0.00 0.02 0.00 +murin murin nom m s 0.01 0.00 0.01 0.00 +mérinos mérinos nom m 0.01 0.27 0.01 0.27 +mérita mériter ver 97.06 54.53 0.00 0.14 ind:pas:3s; +méritaient mériter ver 97.06 54.53 1.18 2.30 ind:imp:3p; +méritais mériter ver 97.06 54.53 2.12 1.76 ind:imp:1s;ind:imp:2s; +méritait mériter ver 97.06 54.53 6.08 9.93 ind:imp:3s; +méritant méritant adj m s 0.85 1.89 0.51 0.61 +méritante méritant adj f s 0.85 1.89 0.10 0.34 +méritantes méritant adj f p 0.85 1.89 0.04 0.41 +méritants méritant adj m p 0.85 1.89 0.21 0.54 +méritassent mériter ver 97.06 54.53 0.00 0.07 sub:imp:3p; +mérite mériter ver 97.06 54.53 39.92 13.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +méritent mériter ver 97.06 54.53 6.62 2.64 ind:pre:3p; +mériter mériter ver 97.06 54.53 6.73 6.42 inf; +méritera mériter ver 97.06 54.53 0.11 0.07 ind:fut:3s; +mériterai mériter ver 97.06 54.53 0.02 0.07 ind:fut:1s; +mériteraient mériter ver 97.06 54.53 0.31 0.47 cnd:pre:3p; +mériterais mériter ver 97.06 54.53 1.15 0.54 cnd:pre:1s;cnd:pre:2s; +mériterait mériter ver 97.06 54.53 1.29 1.82 cnd:pre:3s; +mériteras mériter ver 97.06 54.53 0.04 0.14 ind:fut:2s; +mériteriez mériter ver 97.06 54.53 0.31 0.20 cnd:pre:2p; +mériteront mériter ver 97.06 54.53 0.06 0.00 ind:fut:3p; +mérites mériter ver 97.06 54.53 11.08 1.15 ind:pre:2s;sub:pre:2s; +méritez mériter ver 97.06 54.53 5.25 1.01 imp:pre:2p;ind:pre:2p; +méritiez mériter ver 97.06 54.53 0.36 0.34 ind:imp:2p; +méritions mériter ver 97.06 54.53 0.04 0.20 ind:imp:1p; +méritocratie méritocratie nom f s 0.01 0.00 0.01 0.00 +méritoire méritoire adj s 0.47 2.09 0.36 1.62 +méritoires méritoire adj p 0.47 2.09 0.11 0.47 +méritons mériter ver 97.06 54.53 1.16 0.20 imp:pre:1p;ind:pre:1p; +méritât mériter ver 97.06 54.53 0.00 0.20 sub:imp:3s; +mérité mériter ver m s 97.06 54.53 11.34 8.31 par:pas; +méritée mériter ver f s 97.06 54.53 1.43 1.42 par:pas; +méritées mériter ver f p 97.06 54.53 0.28 0.47 par:pas; +mérités mériter ver m p 97.06 54.53 0.05 0.47 par:pas; +murmel murmel nom m s 0.00 0.07 0.00 0.07 +murmura murmurer ver 7.27 123.58 0.80 58.31 ind:pas:3s; +murmurai murmurer ver 7.27 123.58 0.12 3.31 ind:pas:1s; +murmuraient murmurer ver 7.27 123.58 0.35 1.55 ind:imp:3p; +murmurais murmurer ver 7.27 123.58 0.03 0.95 ind:imp:1s;ind:imp:2s; +murmurait murmurer ver 7.27 123.58 0.55 12.50 ind:imp:3s; +murmurant murmurer ver 7.27 123.58 0.38 7.64 par:pre; +murmurante murmurant adj f s 0.14 1.22 0.14 0.41 +murmurantes murmurant adj f p 0.14 1.22 0.00 0.14 +murmurants murmurant adj m p 0.14 1.22 0.00 0.14 +murmuras murmurer ver 7.27 123.58 0.00 0.07 ind:pas:2s; +murmure murmurer ver 7.27 123.58 2.29 14.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +murmurent murmurer ver 7.27 123.58 0.58 0.81 ind:pre:3p; +murmurer murmurer ver 7.27 123.58 1.17 10.14 inf; +murmurera murmurer ver 7.27 123.58 0.01 0.07 ind:fut:3s; +murmureraient murmurer ver 7.27 123.58 0.00 0.07 cnd:pre:3p; +murmurerait murmurer ver 7.27 123.58 0.01 0.27 cnd:pre:3s; +murmureront murmurer ver 7.27 123.58 0.01 0.00 ind:fut:3p; +murmures murmure nom m p 3.40 31.62 1.78 6.49 +murmurez murmurer ver 7.27 123.58 0.12 0.14 imp:pre:2p;ind:pre:2p; +murmurions murmurer ver 7.27 123.58 0.01 0.14 ind:imp:1p; +murmurèrent murmurer ver 7.27 123.58 0.10 0.34 ind:pas:3p; +murmuré murmurer ver m s 7.27 123.58 0.63 10.81 par:pas; +murmurée murmurer ver f s 7.27 123.58 0.00 0.27 par:pas; +murmurées murmurer ver f p 7.27 123.58 0.01 0.81 par:pas; +murmurés murmurer ver m p 7.27 123.58 0.00 0.47 par:pas; +mérou mérou nom m s 0.99 0.14 0.99 0.14 +mérovingien mérovingien adj m s 0.00 0.41 0.00 0.07 +mérovingienne mérovingien adj f s 0.00 0.41 0.00 0.14 +mérovingiennes mérovingien adj f p 0.00 0.41 0.00 0.20 +murs mur nom m p 88.93 317.77 30.04 145.20 +murène murène nom f s 0.56 0.47 0.41 0.20 +murènes murène nom f p 0.56 0.47 0.14 0.27 +murèrent murer ver 1.39 6.96 0.00 0.07 ind:pas:3p; +muré murer ver m s 1.39 6.96 0.38 1.96 par:pas; +murée murer ver f s 1.39 6.96 0.56 1.42 par:pas; +murées murer ver f p 1.39 6.96 0.00 0.61 par:pas; +murés murer ver m p 1.39 6.96 0.02 0.68 par:pas; +mus mu adj m p 0.18 0.00 0.18 0.00 +musa muser ver 0.44 0.74 0.00 0.07 ind:pas:3s; +musagètes musagète adj m p 0.00 0.07 0.00 0.07 +musait muser ver 0.44 0.74 0.00 0.14 ind:imp:3s; +mésalliance mésalliance nom f s 0.05 0.54 0.05 0.47 +mésalliances mésalliance nom f p 0.05 0.54 0.00 0.07 +mésallieras mésallier ver 0.00 0.27 0.00 0.14 ind:fut:2s; +mésallies mésallier ver 0.00 0.27 0.00 0.07 ind:pre:2s; +mésalliés mésallier ver m p 0.00 0.27 0.00 0.07 par:pas; +mésange mésange nom f s 0.42 7.64 0.19 6.89 +mésanges mésange nom f p 0.42 7.64 0.23 0.74 +musant muser ver 0.44 0.74 0.00 0.14 par:pre; +musaraigne musaraigne nom f s 0.07 0.61 0.05 0.47 +musaraignes musaraigne nom f p 0.07 0.61 0.02 0.14 +musard musard adj m s 0.00 0.20 0.00 0.14 +musarda musarder ver 0.03 1.42 0.00 0.07 ind:pas:3s; +musardaient musarder ver 0.03 1.42 0.00 0.14 ind:imp:3p; +musardait musarder ver 0.03 1.42 0.00 0.34 ind:imp:3s; +musardant musarder ver 0.03 1.42 0.00 0.07 par:pre; +musarde musarder ver 0.03 1.42 0.00 0.20 ind:pre:3s; +musarder musarder ver 0.03 1.42 0.03 0.54 inf; +musardez musarder ver 0.03 1.42 0.00 0.07 imp:pre:2p; +musardise musardise nom f s 0.00 0.07 0.00 0.07 +musards musard adj m p 0.00 0.20 0.00 0.07 +mésaventure mésaventure nom f s 0.78 4.26 0.58 3.31 +mésaventures mésaventure nom f p 0.78 4.26 0.20 0.95 +musc musc nom m s 0.28 0.81 0.28 0.81 +muscade muscade nom f s 0.52 1.15 0.52 1.15 +muscadelle muscadelle nom f s 0.00 0.07 0.00 0.07 +muscadet muscadet nom m s 0.30 1.69 0.30 1.69 +muscadin muscadin nom m s 0.00 0.07 0.00 0.07 +muscadine muscadine nom f s 0.00 0.07 0.00 0.07 +muscat muscat nom m s 0.36 1.28 0.36 1.15 +muscats muscat nom m p 0.36 1.28 0.00 0.14 +musclant muscler ver 1.46 2.50 0.01 0.00 par:pre; +muscle muscle nom m s 15.61 34.53 3.86 3.92 +musclent muscler ver 1.46 2.50 0.01 0.14 ind:pre:3p; +muscler muscler ver 1.46 2.50 0.52 0.27 inf; +muscles muscle nom m p 15.61 34.53 11.75 30.61 +musclé musclé adj m s 2.60 7.03 1.52 2.50 +musclée musclé adj f s 2.60 7.03 0.17 1.28 +musclées musclé adj f p 2.60 7.03 0.14 1.28 +musclés musclé adj m p 2.60 7.03 0.76 1.96 +muscovite muscovite nom f s 0.01 0.00 0.01 0.00 +musculaire musculaire adj s 2.55 2.77 1.66 1.82 +musculaires musculaire adj p 2.55 2.77 0.90 0.95 +musculation musculation nom f s 0.48 0.20 0.48 0.20 +musculature musculature nom f s 0.36 1.89 0.36 1.89 +musculeuse musculeux adj f s 0.03 2.30 0.00 0.81 +musculeuses musculeux adj f p 0.03 2.30 0.00 0.41 +musculeux musculeux adj m 0.03 2.30 0.03 1.08 +muse muse nom f s 2.42 1.35 1.82 0.81 +museau museau nom m s 1.86 12.64 1.60 11.76 +museaux museau nom m p 1.86 12.64 0.26 0.88 +muselait museler ver 0.40 1.01 0.00 0.07 ind:imp:3s; +muselant museler ver 0.40 1.01 0.01 0.07 par:pre; +museler museler ver 0.40 1.01 0.19 0.34 inf; +muselière muselière nom f s 0.74 0.81 0.62 0.74 +muselières muselière nom f p 0.74 0.81 0.12 0.07 +muselle museler ver 0.40 1.01 0.01 0.07 imp:pre:2s;ind:pre:3s; +musellerait museler ver 0.40 1.01 0.00 0.07 cnd:pre:3s; +muselons museler ver 0.40 1.01 0.01 0.00 imp:pre:1p; +muselé museler ver m s 0.40 1.01 0.15 0.07 par:pas; +muselée museler ver f s 0.40 1.01 0.01 0.07 par:pas; +muselées museler ver f p 0.40 1.01 0.00 0.07 par:pas; +muselés museler ver m p 0.40 1.01 0.02 0.20 par:pas; +mésencéphale mésencéphale nom m s 0.04 0.00 0.04 0.00 +mésentente mésentente nom f s 0.11 0.61 0.08 0.34 +mésententes mésentente nom f p 0.11 0.61 0.03 0.27 +mésentère mésentère nom m s 0.01 0.00 0.01 0.00 +mésentérique mésentérique adj s 0.11 0.00 0.11 0.00 +muser muser ver 0.44 0.74 0.10 0.07 inf; +muserolle muserolle nom f s 0.00 0.07 0.00 0.07 +muses muse nom f p 2.42 1.35 0.60 0.54 +mésestimant mésestimer ver 0.10 0.20 0.00 0.07 par:pre; +mésestime mésestimer ver 0.10 0.20 0.03 0.00 imp:pre:2s;ind:pre:1s; +mésestimer mésestimer ver 0.10 0.20 0.00 0.07 inf; +mésestimez mésestimer ver 0.10 0.20 0.02 0.07 imp:pre:2p;ind:pre:2p; +mésestimé mésestimer ver m s 0.10 0.20 0.05 0.00 par:pas; +musette musette nom f s 0.77 18.45 0.75 13.78 +musettes_repa musettes_repa nom f p 0.00 0.07 0.00 0.07 +musettes musette nom f p 0.77 18.45 0.02 4.66 +music_hall music_hall nom m s 1.85 4.32 1.70 3.78 +music_hall music_hall nom m p 1.85 4.32 0.13 0.54 +music_hall music_hall nom m s 1.85 4.32 0.02 0.00 +musical musical adj m s 24.76 10.54 17.50 3.45 +musicale musical adj f s 24.76 10.54 4.88 4.19 +musicalement musicalement adv 0.30 0.27 0.30 0.27 +musicales musical adj f p 24.76 10.54 1.63 1.96 +musicalité musicalité nom f s 0.14 0.47 0.14 0.47 +musicaux musical adj m p 24.76 10.54 0.75 0.95 +musicien musicien nom m s 12.90 16.08 4.78 5.88 +musicienne musicien nom f s 12.90 16.08 0.79 0.14 +musiciennes musicienne nom f p 0.40 0.00 0.40 0.00 +musiciens musicien nom m p 12.90 16.08 7.31 9.86 +musico musico adv 0.00 0.68 0.00 0.68 +musicographes musicographe nom p 0.00 0.07 0.00 0.07 +musicologie musicologie nom f s 0.03 0.00 0.03 0.00 +musicologique musicologique adj m s 0.02 0.00 0.02 0.00 +musicologue musicologue nom s 0.01 0.34 0.01 0.07 +musicologues musicologue nom p 0.01 0.34 0.00 0.27 +musicothérapie musicothérapie nom f s 0.01 0.00 0.01 0.00 +mésintelligence mésintelligence nom f s 0.00 0.07 0.00 0.07 +mésinterpréter mésinterpréter ver 0.00 0.14 0.00 0.14 inf; +musiquait musiquer ver 0.27 0.34 0.00 0.07 ind:imp:3s; +musique musique nom f s 169.80 114.32 168.89 109.80 +musiquer musiquer ver 0.27 0.34 0.00 0.14 inf; +musiques musique nom f p 169.80 114.32 0.91 4.53 +musiquette musiquette nom f s 0.00 0.47 0.00 0.34 +musiquettes musiquette nom f p 0.00 0.47 0.00 0.14 +muskogee muskogee nom s 0.01 0.00 0.01 0.00 +mésodermiques mésodermique adj p 0.01 0.00 0.01 0.00 +musoir musoir nom m s 0.00 0.07 0.00 0.07 +mésomorphe mésomorphe adj m s 0.02 0.00 0.02 0.00 +mésomorphique mésomorphique adj s 0.01 0.00 0.01 0.00 +méson méson nom m s 0.04 0.00 0.03 0.00 +mésons méson nom m p 0.04 0.00 0.01 0.00 +mésopotamien mésopotamien adj m s 0.05 0.00 0.04 0.00 +mésopotamienne mésopotamienne nom f s 0.00 0.07 0.00 0.07 +mésopotamiens mésopotamien nom m p 0.03 0.00 0.03 0.00 +mésosphère mésosphère nom f s 0.02 0.00 0.02 0.00 +mésozoïque mésozoïque adj f s 0.04 0.00 0.04 0.00 +musqué musqué adj m s 0.18 1.49 0.14 0.41 +musquée musqué adj f s 0.18 1.49 0.01 0.68 +musquées musqué adj f p 0.18 1.49 0.00 0.14 +musqués musqué adj m p 0.18 1.49 0.04 0.27 +mussais musser ver 0.00 0.41 0.00 0.07 ind:imp:1s; +musse musser ver 0.00 0.41 0.00 0.07 ind:pre:3s; +mussent musser ver 0.00 0.41 0.00 0.07 ind:pre:3p; +mussolinien mussolinien adj m s 0.00 0.41 0.00 0.14 +mussolinienne mussolinien adj f s 0.00 0.41 0.00 0.14 +mussoliniens mussolinien adj m p 0.00 0.41 0.00 0.14 +mussée musser ver f s 0.00 0.41 0.00 0.07 par:pas; +mussés musser ver m p 0.00 0.41 0.00 0.14 par:pas; +must must nom m 3.98 0.54 3.98 0.54 +mustang mustang nom m s 0.75 0.14 0.32 0.07 +mustangs mustang nom m p 0.75 0.14 0.43 0.07 +mustélidés mustélidé nom m p 0.00 0.07 0.00 0.07 +musée musée nom m s 20.70 28.38 18.59 21.55 +musées musée nom m p 20.70 28.38 2.11 6.82 +musulman musulman adj m s 5.84 7.09 2.00 2.09 +musulmane musulman adj f s 5.84 7.09 1.84 2.09 +musulmanes musulman adj f p 5.84 7.09 0.54 0.81 +musulmans musulman nom m p 6.22 6.22 4.00 3.92 +muséologie muséologie nom f s 0.01 0.00 0.01 0.00 +muséologique muséologique adj f s 0.01 0.00 0.01 0.00 +muséologue muséologue nom s 0.01 0.00 0.01 0.00 +mésusage mésusage nom m s 0.00 0.07 0.00 0.07 +mésuser mésuser ver 0.00 0.07 0.00 0.07 inf; +muséum muséum nom m s 0.24 0.20 0.24 0.20 +méta méta nom m s 0.14 0.14 0.14 0.14 +mutabilité mutabilité nom f s 0.03 0.00 0.03 0.00 +mutable mutable adj s 0.03 0.00 0.02 0.00 +mutables mutable adj p 0.03 0.00 0.01 0.00 +métabolique métabolique adj s 0.28 0.00 0.28 0.00 +métaboliser métaboliser ver 0.02 0.00 0.02 0.00 inf; +métabolisme métabolisme nom m s 1.27 0.20 1.22 0.20 +métabolismes métabolisme nom m p 1.27 0.20 0.05 0.00 +métabolite métabolite nom m s 0.07 0.00 0.07 0.00 +métacarpe métacarpe nom m s 0.13 0.00 0.13 0.00 +métacarpien métacarpien nom m s 0.04 0.00 0.03 0.00 +métacarpiens métacarpien nom m p 0.04 0.00 0.01 0.00 +mutagène mutagène adj m s 0.02 0.00 0.02 0.00 +métairie métairie nom f s 0.00 1.15 0.00 0.74 +métairies métairie nom f p 0.00 1.15 0.00 0.41 +métal métal nom m s 14.36 44.73 12.16 41.82 +métallique métallique adj s 3.34 23.78 2.60 16.49 +métalliques métallique adj p 3.34 23.78 0.74 7.30 +métallisation métallisation nom f s 0.01 0.00 0.01 0.00 +métallise métalliser ver 0.62 1.15 0.00 0.07 ind:pre:3s; +métallisent métalliser ver 0.62 1.15 0.00 0.07 ind:pre:3p; +métallisé métalliser ver m s 0.62 1.15 0.48 0.68 par:pas; +métallisée métalliser ver f s 0.62 1.15 0.12 0.20 par:pas; +métallisées métalliser ver f p 0.62 1.15 0.00 0.07 par:pas; +métallisés métalliser ver m p 0.62 1.15 0.01 0.07 par:pas; +métallo métallo nom m s 0.02 1.08 0.02 0.47 +métallographie métallographie nom f s 0.04 0.00 0.04 0.00 +métallos métallo nom m p 0.02 1.08 0.00 0.61 +métallurgie métallurgie nom f s 0.16 0.47 0.16 0.47 +métallurgique métallurgique adj s 0.07 0.54 0.07 0.47 +métallurgiques métallurgique adj f p 0.07 0.54 0.00 0.07 +métallurgiste métallurgiste nom m s 0.27 0.34 0.23 0.07 +métallurgistes métallurgiste nom m p 0.27 0.34 0.04 0.27 +métamorphique métamorphique adj f s 0.01 0.00 0.01 0.00 +métamorphosa métamorphoser ver 0.94 9.26 0.02 0.20 ind:pas:3s; +métamorphosaient métamorphoser ver 0.94 9.26 0.00 0.27 ind:imp:3p; +métamorphosait métamorphoser ver 0.94 9.26 0.00 1.49 ind:imp:3s; +métamorphosant métamorphoser ver 0.94 9.26 0.10 0.27 par:pre; +métamorphose métamorphose nom f s 1.59 11.22 1.22 9.12 +métamorphosent métamorphoser ver 0.94 9.26 0.00 0.20 ind:pre:3p; +métamorphoser métamorphoser ver 0.94 9.26 0.37 1.69 inf; +métamorphoseraient métamorphoser ver 0.94 9.26 0.00 0.07 cnd:pre:3p; +métamorphoserait métamorphoser ver 0.94 9.26 0.00 0.07 cnd:pre:3s; +métamorphoses métamorphose nom f p 1.59 11.22 0.37 2.09 +métamorphosez métamorphoser ver 0.94 9.26 0.00 0.07 ind:pre:2p; +métamorphosions métamorphoser ver 0.94 9.26 0.00 0.07 ind:imp:1p; +métamorphosât métamorphoser ver 0.94 9.26 0.00 0.07 sub:imp:3s; +métamorphosèrent métamorphoser ver 0.94 9.26 0.01 0.00 ind:pas:3p; +métamorphosé métamorphoser ver m s 0.94 9.26 0.22 1.96 par:pas; +métamorphosée métamorphoser ver f s 0.94 9.26 0.11 1.08 par:pas; +métamorphosées métamorphoser ver f p 0.94 9.26 0.00 0.14 par:pas; +métamorphosés métamorphoser ver m p 0.94 9.26 0.01 0.47 par:pas; +mutant mutant nom m s 4.67 0.81 1.93 0.27 +mutante mutant adj f s 2.02 0.07 0.98 0.00 +mutantes mutant adj f p 2.02 0.07 0.10 0.00 +mutants mutant nom m p 4.67 0.81 2.46 0.54 +métaphase métaphase nom f s 0.01 0.00 0.01 0.00 +métaphore métaphore nom f s 4.71 3.31 4.04 1.89 +métaphores métaphore nom f p 4.71 3.31 0.67 1.42 +métaphorique métaphorique adj s 0.27 0.20 0.26 0.20 +métaphoriquement métaphoriquement adv 0.51 0.07 0.51 0.07 +métaphoriques métaphorique adj p 0.27 0.20 0.01 0.00 +métaphysicien métaphysicien nom m s 0.03 0.47 0.02 0.14 +métaphysicienne métaphysicien nom f s 0.03 0.47 0.00 0.07 +métaphysiciens métaphysicien nom m p 0.03 0.47 0.01 0.27 +métaphysique métaphysique adj s 0.91 6.35 0.64 4.12 +métaphysiquement métaphysiquement adv 0.01 0.14 0.01 0.14 +métaphysiques métaphysique adj p 0.91 6.35 0.27 2.23 +métapsychique métapsychique adj s 0.11 0.00 0.11 0.00 +métapsychologie métapsychologie nom f s 0.01 0.07 0.01 0.07 +métapsychologique métapsychologique adj s 0.00 0.07 0.00 0.07 +métastase métastase nom f s 0.28 0.27 0.08 0.20 +métastases métastase nom f p 0.28 0.27 0.20 0.07 +métastasé métastaser ver m s 0.10 0.07 0.10 0.07 par:pas; +métastatique métastatique adj s 0.08 0.00 0.08 0.00 +métatarses métatarse nom m p 0.01 0.00 0.01 0.00 +métatarsienne métatarsien adj f s 0.03 0.00 0.03 0.00 +mutation mutation nom f s 5.53 4.32 4.67 3.18 +mutations mutation nom f p 5.53 4.32 0.85 1.15 +mutatis_mutandis mutatis_mutandis adv 0.00 0.07 0.00 0.07 +métaux métal nom m p 14.36 44.73 2.19 2.91 +métayage métayage nom m s 0.01 0.07 0.01 0.07 +métayer métayer nom m s 0.23 1.49 0.11 0.81 +métayers métayer nom m p 0.23 1.49 0.12 0.68 +métazoaires métazoaire nom m p 0.00 0.07 0.00 0.07 +mute muter ver 7.04 2.09 0.24 0.14 ind:pre:1s;ind:pre:3s; +métempsychose métempsychose nom f s 0.00 0.07 0.00 0.07 +métempsycose métempsycose nom f s 0.14 0.27 0.14 0.27 +mutent muter ver 7.04 2.09 0.08 0.00 ind:pre:3p; +muter muter ver 7.04 2.09 1.88 0.47 inf; +mutera muter ver 7.04 2.09 0.01 0.00 ind:fut:3s; +muterai muter ver 7.04 2.09 0.34 0.00 ind:fut:1s; +muteront muter ver 7.04 2.09 0.01 0.00 ind:fut:3p; +méthacrylate méthacrylate nom m s 0.01 0.00 0.01 0.00 +méthadone méthadone nom f s 0.73 0.00 0.73 0.00 +méthanal méthanal nom m s 0.01 0.00 0.01 0.00 +méthane méthane nom m s 0.70 0.20 0.70 0.20 +méthanol méthanol nom m s 0.13 0.00 0.13 0.00 +méthode méthode nom f s 24.87 24.86 13.83 16.42 +méthodes méthode nom f p 24.87 24.86 11.04 8.45 +méthodique méthodique adj s 0.67 3.18 0.60 2.84 +méthodiquement méthodiquement adv 0.09 4.26 0.09 4.26 +méthodiques méthodique adj p 0.67 3.18 0.07 0.34 +méthodisme méthodisme nom m s 0.00 0.14 0.00 0.14 +méthodiste méthodiste adj s 0.20 0.20 0.15 0.14 +méthodistes méthodiste nom p 0.28 0.07 0.18 0.07 +méthodologie méthodologie nom f s 0.27 0.00 0.27 0.00 +méthodologique méthodologique adj f s 0.02 0.07 0.02 0.07 +méthédrine méthédrine nom f s 0.09 0.00 0.09 0.00 +méthyle méthyle nom m s 0.05 0.00 0.05 0.00 +méthylique méthylique adj s 0.01 0.00 0.01 0.00 +méthylène méthylène nom m s 0.05 0.34 0.05 0.34 +méticuleuse méticuleux adj f s 2.40 6.28 0.52 1.82 +méticuleusement méticuleusement adv 0.37 2.57 0.37 2.57 +méticuleuses méticuleux adj f p 2.40 6.28 0.09 0.34 +méticuleux méticuleux adj m 2.40 6.28 1.79 4.12 +méticulosité méticulosité nom f s 0.00 0.34 0.00 0.34 +métier métier nom m s 55.03 84.53 53.22 75.54 +métiers métier nom m p 55.03 84.53 1.81 8.99 +mutila mutiler ver 2.36 4.39 0.01 0.20 ind:pas:3s; +mutilais mutiler ver 2.36 4.39 0.01 0.00 ind:imp:2s; +mutilait mutiler ver 2.36 4.39 0.02 0.27 ind:imp:3s; +mutilant mutiler ver 2.36 4.39 0.14 0.07 par:pre; +mutilante mutilant adj f s 0.00 0.20 0.00 0.14 +mutilateur mutilateur adj m s 0.03 0.00 0.03 0.00 +mutilation mutilation nom f s 2.02 2.57 1.13 1.82 +mutilations mutilation nom f p 2.02 2.57 0.89 0.74 +mutile mutiler ver 2.36 4.39 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mutilent mutiler ver 2.36 4.39 0.08 0.07 ind:pre:3p; +mutiler mutiler ver 2.36 4.39 0.67 0.81 inf; +mutilera mutiler ver 2.36 4.39 0.00 0.07 ind:fut:3s; +mutileraient mutiler ver 2.36 4.39 0.01 0.07 cnd:pre:3p; +mutilé mutilé adj m s 2.21 6.15 1.22 1.76 +mutilée mutiler ver f s 2.36 4.39 0.40 0.68 par:pas; +mutilées mutilé adj f p 2.21 6.15 0.04 1.01 +mutilés mutilé adj m p 2.21 6.15 0.72 1.96 +mutin mutin adj m s 0.33 0.88 0.27 0.27 +mutina mutiner ver 0.85 0.47 0.03 0.07 ind:pas:3s; +mutinaient mutiner ver 0.85 0.47 0.03 0.07 ind:imp:3p; +mutine mutiner ver 0.85 0.47 0.04 0.07 ind:pre:3s; +mutinent mutiner ver 0.85 0.47 0.11 0.00 ind:pre:3p; +mutiner mutiner ver 0.85 0.47 0.18 0.14 inf; +mutinerie mutinerie nom f s 3.13 1.15 2.97 0.81 +mutineries mutinerie nom f p 3.13 1.15 0.16 0.34 +mutines mutin adj f p 0.33 0.88 0.01 0.07 +mutinez mutiner ver 0.85 0.47 0.01 0.00 ind:pre:2p; +métingue métingue nom m s 0.00 0.14 0.00 0.14 +mutins mutin nom m p 0.70 1.01 0.59 0.61 +mutiné mutiner ver m s 0.85 0.47 0.31 0.14 par:pas; +mutinée mutiner ver f s 0.85 0.47 0.10 0.00 par:pas; +mutinés mutiné adj m p 0.15 0.07 0.05 0.07 +mutique mutique adj m s 0.01 0.07 0.01 0.07 +métis métis nom m 1.91 2.97 1.91 2.97 +mutisme mutisme nom m s 0.97 6.89 0.97 6.82 +mutismes mutisme nom m p 0.97 6.89 0.00 0.07 +métissage métissage nom m s 0.23 1.15 0.23 0.88 +métissages métissage nom m p 0.23 1.15 0.00 0.27 +métisse métisse adj f s 0.23 0.54 0.19 0.34 +métisser métisser ver 0.40 0.34 0.00 0.07 inf; +métisses métisse adj f p 0.23 0.54 0.04 0.20 +métissez métisser ver 0.40 0.34 0.00 0.07 imp:pre:2p; +métissé métisser ver m s 0.40 0.34 0.39 0.14 par:pas; +métissée métisser ver f s 0.40 0.34 0.01 0.07 par:pas; +mutité mutité nom f s 0.00 0.20 0.00 0.20 +métonymie métonymie nom f s 0.00 0.07 0.00 0.07 +métopes métope nom f p 0.00 0.07 0.00 0.07 +mutât muter ver 7.04 2.09 0.00 0.07 sub:imp:3s; +métra métrer ver 0.16 0.61 0.04 0.00 ind:pas:3s; +métrage métrage nom m s 0.91 1.69 0.69 1.08 +métrages métrage nom m p 0.91 1.69 0.22 0.61 +métras métrer ver 0.16 0.61 0.01 0.00 ind:pas:2s; +métreur métreur nom m s 0.01 0.00 0.01 0.00 +métrique métrique adj s 0.24 0.27 0.24 0.27 +métriques métrique nom f p 0.04 0.07 0.01 0.00 +métrite métrite nom f s 0.00 0.14 0.00 0.07 +métrites métrite nom f p 0.00 0.14 0.00 0.07 +métro métro nom m s 18.17 41.35 17.66 40.00 +métronome métronome nom m s 0.16 1.35 0.15 1.28 +métronomes métronome nom m p 0.16 1.35 0.01 0.07 +métropole métropole nom f s 1.17 10.74 0.95 10.34 +métropoles métropole nom f p 1.17 10.74 0.22 0.41 +métropolitain métropolitain adj m s 0.23 3.92 0.07 1.96 +métropolitaine métropolitain adj f s 0.23 3.92 0.11 1.08 +métropolitaines métropolitain adj f p 0.23 3.92 0.03 0.41 +métropolitains métropolitain adj m p 0.23 3.92 0.02 0.47 +métropolite métropolite nom m s 0.00 0.47 0.00 0.47 +métros métro nom m p 18.17 41.35 0.51 1.35 +métèque métèque nom s 1.26 4.19 0.64 2.91 +métèques métèque nom p 1.26 4.19 0.61 1.28 +muté muter ver m s 7.04 2.09 3.59 1.08 par:pas; +mutualisme mutualisme nom m s 0.00 0.07 0.00 0.07 +mutualité mutualité nom f s 0.14 0.34 0.00 0.34 +mutualités mutualité nom f p 0.14 0.34 0.14 0.00 +mutée muter ver f s 7.04 2.09 0.42 0.00 par:pas; +mutuel mutuel adj m s 4.00 3.78 1.50 1.15 +mutuelle mutuel adj f s 4.00 3.78 1.88 2.23 +mutuellement mutuellement adv 3.40 4.59 3.40 4.59 +mutuelles mutuel adj f p 4.00 3.78 0.22 0.34 +mutuels mutuel adj m p 4.00 3.78 0.41 0.07 +mutées muter ver f p 7.04 2.09 0.05 0.00 par:pas; +météo météo nom f s 8.90 1.69 8.90 1.69 +météore météore nom m s 1.06 2.97 0.55 0.81 +météores météore nom m p 1.06 2.97 0.52 2.16 +météorique météorique adj s 0.05 0.14 0.05 0.14 +météoriquement météoriquement adv 0.01 0.07 0.01 0.07 +météorite météorite nom f s 4.87 0.61 2.05 0.47 +météorites météorite nom f p 4.87 0.61 2.82 0.14 +météoritique météoritique adj f s 0.01 0.07 0.01 0.07 +météorologie météorologie nom f s 0.13 1.08 0.13 1.08 +météorologique météorologique adj s 0.71 1.82 0.47 0.88 +météorologiques météorologique adj p 0.71 1.82 0.25 0.95 +météorologiste météorologiste nom s 0.05 0.07 0.05 0.07 +météorologue météorologue nom s 0.40 0.20 0.32 0.00 +météorologues météorologue nom p 0.40 0.20 0.08 0.20 +mutés muter ver m p 7.04 2.09 0.19 0.34 par:pas; +mué muer ver m s 1.63 7.03 0.32 1.62 par:pas; +muée muer ver f s 1.63 7.03 0.03 0.81 par:pas; +muées muer ver f p 1.63 7.03 0.00 0.07 par:pas; +mués muer ver m p 1.63 7.03 0.02 0.27 par:pas; +mévente mévente nom f s 0.00 0.27 0.00 0.27 +mézig mézig pro_per s 0.00 1.15 0.00 1.15 +mézigue mézigue pro_per s 0.02 2.84 0.02 2.84 +myasthénie myasthénie nom f s 0.12 0.00 0.12 0.00 +mycologie mycologie nom f s 0.00 0.07 0.00 0.07 +mycologue mycologue nom s 0.01 0.27 0.00 0.20 +mycologues mycologue nom p 0.01 0.27 0.01 0.07 +mycose mycose nom f s 0.73 0.00 0.73 0.00 +mycène mycène nom m s 0.04 0.00 0.04 0.00 +mycénien mycénien adj m s 0.01 0.14 0.01 0.00 +mycéniennes mycénien adj f p 0.01 0.14 0.00 0.07 +mycéniens mycénien adj m p 0.01 0.14 0.00 0.07 +mygale mygale nom f s 0.05 0.47 0.04 0.27 +mygales mygale nom f p 0.05 0.47 0.01 0.20 +mylord mylord nom m s 0.97 0.14 0.97 0.14 +myocarde myocarde nom m s 0.12 0.20 0.12 0.20 +myocardiopathie myocardiopathie nom f s 0.07 0.00 0.07 0.00 +myocardique myocardique adj f s 0.01 0.00 0.01 0.00 +myocardite myocardite nom f s 0.03 0.07 0.03 0.07 +myoclonie myoclonie nom f s 0.01 0.00 0.01 0.00 +myoglobine myoglobine nom f s 0.04 0.00 0.04 0.00 +myographe myographe nom m s 0.00 0.07 0.00 0.07 +myopathes myopathe nom p 0.02 0.00 0.02 0.00 +myopathie myopathie nom f s 0.03 0.07 0.03 0.07 +myopathique myopathique adj s 0.01 0.00 0.01 0.00 +myope myope adj s 1.76 4.05 1.71 3.24 +myopes myope adj m p 1.76 4.05 0.05 0.81 +myopie myopie nom f s 0.29 2.16 0.29 2.09 +myopies myopie nom f p 0.29 2.16 0.00 0.07 +myosine myosine nom f s 0.01 0.00 0.01 0.00 +myosis myosis nom m 0.04 0.00 0.04 0.00 +myosotis myosotis nom m 0.17 1.49 0.17 1.49 +myriade myriade nom f s 0.78 3.31 0.11 1.08 +myriades myriade nom f p 0.78 3.31 0.67 2.23 +myriophylle myriophylle nom f s 0.00 0.20 0.00 0.20 +myrmidon myrmidon nom m s 0.69 0.00 0.67 0.00 +myrmidons myrmidon nom m p 0.69 0.00 0.02 0.00 +myrrhe myrrhe nom f s 0.43 0.54 0.43 0.54 +myrte myrte nom m s 1.25 1.55 1.25 0.74 +myrtes myrte nom m p 1.25 1.55 0.00 0.81 +myrtille myrtille nom f s 3.43 2.16 1.71 0.34 +myrtilles myrtille nom f p 3.43 2.16 1.72 1.82 +mystagogie mystagogie nom f s 0.00 0.14 0.00 0.14 +mystagogique mystagogique adj f s 0.00 0.14 0.00 0.14 +mystagogue mystagogue nom m s 0.00 0.07 0.00 0.07 +myste myste nom m s 0.01 0.00 0.01 0.00 +mysticisme mysticisme nom m s 0.79 1.89 0.79 1.82 +mysticismes mysticisme nom m p 0.79 1.89 0.00 0.07 +mystificateur mystificateur nom m s 0.09 0.41 0.05 0.34 +mystificateurs mystificateur nom m p 0.09 0.41 0.02 0.07 +mystification mystification nom f s 0.40 1.49 0.16 1.28 +mystifications mystification nom f p 0.40 1.49 0.23 0.20 +mystificatrice mystificateur nom f s 0.09 0.41 0.02 0.00 +mystifie mystifier ver 0.28 1.01 0.10 0.00 ind:pre:3s; +mystifier mystifier ver 0.28 1.01 0.03 0.54 inf; +mystifié mystifier ver m s 0.28 1.01 0.13 0.20 par:pas; +mystifiée mystifier ver f s 0.28 1.01 0.01 0.14 par:pas; +mystifiées mystifier ver f p 0.28 1.01 0.00 0.07 par:pas; +mystifiés mystifier ver m p 0.28 1.01 0.01 0.07 par:pas; +mystique mystique adj s 3.31 8.85 2.75 6.82 +mystiquement mystiquement adv 0.04 0.20 0.04 0.20 +mystiques mystique adj p 3.31 8.85 0.57 2.03 +mystère mystère nom m s 28.03 51.01 22.90 39.53 +mystères mystère nom m p 28.03 51.01 5.13 11.49 +mystérieuse mystérieux adj f s 19.61 53.65 6.56 18.65 +mystérieusement mystérieusement adv 1.63 6.82 1.63 6.82 +mystérieuses mystérieux adj f p 19.61 53.65 1.21 7.64 +mystérieux mystérieux adj m 19.61 53.65 11.84 27.36 +mythe mythe nom m s 6.26 10.41 5.17 5.61 +mythes mythe nom m p 6.26 10.41 1.10 4.80 +mythifiait mythifier ver 0.00 0.14 0.00 0.07 ind:imp:3s; +mythifier mythifier ver 0.00 0.14 0.00 0.07 inf; +mythique mythique adj s 1.15 4.19 1.01 3.11 +mythiques mythique adj p 1.15 4.19 0.14 1.08 +mythisation mythisation nom f s 0.00 0.07 0.00 0.07 +mytho mytho adv 0.36 0.20 0.36 0.20 +mythologie mythologie nom f s 2.06 4.73 2.02 4.12 +mythologies mythologie nom f p 2.06 4.73 0.04 0.61 +mythologique mythologique adj s 0.81 2.03 0.66 1.62 +mythologiques mythologique adj p 0.81 2.03 0.16 0.41 +mythologisé mythologiser ver m s 0.00 0.07 0.00 0.07 par:pas; +mythologue mythologue nom s 0.00 0.14 0.00 0.07 +mythologues mythologue nom p 0.00 0.14 0.00 0.07 +mythomane mythomane adj s 0.43 0.68 0.42 0.68 +mythomanes mythomane adj f p 0.43 0.68 0.01 0.00 +mythomanie mythomanie nom f s 0.10 0.61 0.10 0.61 +myéline myéline nom f s 0.01 0.00 0.01 0.00 +myélite myélite nom f s 0.05 0.07 0.05 0.07 +myéloïde myéloïde adj f s 0.02 0.00 0.02 0.00 +myéloblaste myéloblaste nom m s 0.00 0.20 0.00 0.07 +myéloblastes myéloblaste nom m p 0.00 0.20 0.00 0.14 +myxoedémateuse myxoedémateux adj f s 0.00 0.07 0.00 0.07 +myxoedémateuse myxoedémateux nom f s 0.00 0.07 0.00 0.07 +myxomatose myxomatose nom f s 0.03 0.07 0.03 0.07 +n_ n_ pro_per 0.18 0.00 0.18 0.00 +n_est_ce_pas n_est_ce_pas adv 0.10 0.00 0.10 0.00 +n ne adv_sup 22287.83 13841.89 70.36 5.68 +nôtre nôtre pro_pos s 19.00 23.51 19.00 23.51 +nôtres nôtres pro_pos p 22.63 21.35 22.63 21.35 +na na ono 5.66 0.81 5.66 0.81 +naît naître ver 116.11 119.32 5.47 6.82 ind:pre:3s; +naîtra naître ver 116.11 119.32 1.55 0.54 ind:fut:3s; +naîtrai naître ver 116.11 119.32 0.02 0.00 ind:fut:1s; +naîtraient naître ver 116.11 119.32 0.17 0.07 cnd:pre:3p; +naîtrait naître ver 116.11 119.32 0.11 0.34 cnd:pre:3s; +naître naître ver 116.11 119.32 12.74 19.86 inf; +naîtrions naître ver 116.11 119.32 0.00 0.07 cnd:pre:1p; +naîtront naître ver 116.11 119.32 0.34 0.47 ind:fut:3p; +naïade naïade nom f s 0.04 0.54 0.03 0.14 +naïades naïade nom f p 0.04 0.54 0.01 0.41 +naïf naïf adj m s 7.91 21.62 4.22 9.59 +naïfs naïf adj m p 7.91 21.62 0.76 3.18 +naïve naïf adj f s 7.91 21.62 2.76 6.69 +naïvement naïvement adv 0.27 6.01 0.27 6.01 +naïves naïf adj f p 7.91 21.62 0.17 2.16 +naïveté naïveté nom f s 0.95 10.68 0.94 9.86 +naïvetés naïveté nom f p 0.95 10.68 0.01 0.81 +nabab nabab nom m s 0.72 0.68 0.55 0.54 +nababs nabab nom m p 0.72 0.68 0.18 0.14 +nabi nabi nom m s 0.28 0.00 0.28 0.00 +nable nable nom m s 0.02 0.00 0.02 0.00 +nabot nabot nom m s 2.10 2.09 2.01 1.49 +nabote nabot nom f s 2.10 2.09 0.00 0.14 +nabots nabot nom m p 2.10 2.09 0.08 0.47 +nacarat nacarat nom m s 0.00 0.20 0.00 0.20 +nacelle nacelle nom f s 1.24 3.04 1.04 2.36 +nacelles nacelle nom f p 1.24 3.04 0.20 0.68 +nacra nacrer ver 0.00 1.62 0.00 0.07 ind:pas:3s; +nacraient nacrer ver 0.00 1.62 0.00 0.07 ind:imp:3p; +nacre nacre nom f s 0.58 5.34 0.58 5.20 +nacres nacre nom f p 0.58 5.34 0.00 0.14 +nacré nacré adj m s 0.38 3.24 0.05 1.15 +nacrée nacré adj f s 0.38 3.24 0.01 0.74 +nacrées nacré adj f p 0.38 3.24 0.04 0.74 +nacrure nacrure nom f s 0.00 0.14 0.00 0.14 +nacrés nacré adj m p 0.38 3.24 0.28 0.61 +nada nada adv 2.63 0.41 2.63 0.41 +nadir nadir nom m s 0.01 0.20 0.01 0.20 +naevus naevus nom m 0.03 0.14 0.03 0.14 +naga naga nom m 0.05 0.00 0.05 0.00 +nage nage nom f s 5.42 6.28 5.37 6.22 +nagea nager ver 30.36 25.68 0.03 1.15 ind:pas:3s; +nageai nager ver 30.36 25.68 0.00 0.20 ind:pas:1s; +nageaient nager ver 30.36 25.68 0.08 1.82 ind:imp:3p; +nageais nager ver 30.36 25.68 0.57 0.74 ind:imp:1s;ind:imp:2s; +nageait nager ver 30.36 25.68 0.62 3.58 ind:imp:3s; +nageant nager ver 30.36 25.68 0.95 2.30 par:pre; +nageante nageant adj f s 0.03 0.07 0.00 0.07 +nagent nager ver 30.36 25.68 1.24 1.01 ind:pre:3p; +nageoire nageoire nom f s 1.10 2.30 0.53 0.34 +nageoires nageoire nom f p 1.10 2.30 0.57 1.96 +nageons nager ver 30.36 25.68 0.07 0.20 imp:pre:1p;ind:pre:1p; +nageât nager ver 30.36 25.68 0.00 0.07 sub:imp:3s; +nager nager ver 30.36 25.68 18.71 9.32 inf; +nagera nager ver 30.36 25.68 0.15 0.07 ind:fut:3s; +nagerai nager ver 30.36 25.68 0.22 0.00 ind:fut:1s; +nageraient nager ver 30.36 25.68 0.01 0.00 cnd:pre:3p; +nagerais nager ver 30.36 25.68 0.02 0.07 cnd:pre:1s; +nagerait nager ver 30.36 25.68 0.02 0.20 cnd:pre:3s; +nageras nager ver 30.36 25.68 0.03 0.07 ind:fut:2s; +nagerez nager ver 30.36 25.68 0.01 0.14 ind:fut:2p; +nagerons nager ver 30.36 25.68 0.03 0.00 ind:fut:1p; +nageront nager ver 30.36 25.68 0.01 0.00 ind:fut:3p; +nages nager ver 30.36 25.68 0.58 0.14 ind:pre:2s; +nageur nageur nom m s 2.65 4.59 1.43 3.24 +nageurs nageur nom m p 2.65 4.59 0.75 0.95 +nageuse nageur nom f s 2.65 4.59 0.47 0.41 +nageuses nageuse nom f p 0.07 0.00 0.07 0.00 +nagez nager ver 30.36 25.68 0.53 0.27 imp:pre:2p;ind:pre:2p; +nagiez nager ver 30.36 25.68 0.05 0.07 ind:imp:2p; +nagions nager ver 30.36 25.68 0.13 0.34 ind:imp:1p; +nagèrent nager ver 30.36 25.68 0.00 0.34 ind:pas:3p; +nagé nager ver m s 30.36 25.68 1.26 1.22 par:pas; +naguère naguère adv 1.16 23.72 1.16 23.72 +nain nain nom m s 13.87 8.99 9.08 6.69 +naine nain nom f s 13.87 8.99 0.63 0.61 +naines naine nom f p 0.03 0.00 0.03 0.00 +nains nain nom m p 13.87 8.99 4.17 1.62 +naira naira nom m s 0.03 0.00 0.03 0.00 +nais naître ver 116.11 119.32 0.57 0.27 ind:pre:1s;ind:pre:2s; +naissaient naître ver 116.11 119.32 0.16 3.85 ind:imp:3p; +naissain naissain nom m s 0.00 0.07 0.00 0.07 +naissais naître ver 116.11 119.32 0.01 0.07 ind:imp:1s; +naissait naître ver 116.11 119.32 0.24 7.57 ind:imp:3s; +naissance naissance nom f s 39.72 52.91 37.90 49.53 +naissances naissance nom f p 39.72 52.91 1.83 3.38 +naissant naître ver 116.11 119.32 0.42 0.88 par:pre; +naissante naissant adj f s 0.94 5.61 0.33 2.50 +naissantes naissant adj f p 0.94 5.61 0.34 0.68 +naissants naissant adj m p 0.94 5.61 0.01 0.27 +naisse naître ver 116.11 119.32 0.92 0.88 sub:pre:1s;sub:pre:3s; +naissent naître ver 116.11 119.32 3.82 3.58 ind:pre:3p; +naisses naître ver 116.11 119.32 0.03 0.14 sub:pre:2s; +naisseur naisseur adj m s 0.01 0.00 0.01 0.00 +naissez naître ver 116.11 119.32 0.06 0.00 imp:pre:2p;ind:pre:2p; +naissions naître ver 116.11 119.32 0.03 0.14 ind:imp:1p; +naissons naître ver 116.11 119.32 0.21 0.27 ind:pre:1p; +naja naja nom m s 0.02 0.41 0.02 0.34 +najas naja nom m p 0.02 0.41 0.00 0.07 +namibiens namibien nom m p 0.02 0.00 0.02 0.00 +nan nan nom m s 11.92 1.42 11.92 1.42 +nana nana nom f s 39.57 13.65 26.48 7.64 +nanan nanan nom m s 0.04 0.74 0.04 0.74 +nanar nanar nom m s 0.00 0.14 0.00 0.14 +nanard nanard nom m s 0.01 0.07 0.01 0.07 +nanas nana nom f p 39.57 13.65 13.09 6.01 +nancéiens nancéien adj m p 0.00 0.07 0.00 0.07 +nanisme nanisme nom m s 0.02 0.14 0.02 0.14 +nankin nankin nom m s 0.02 0.27 0.02 0.27 +nano nano adv 0.14 0.14 0.14 0.14 +nanomètre nanomètre nom m s 0.07 0.00 0.03 0.00 +nanomètres nanomètre nom m p 0.07 0.00 0.04 0.00 +nanoseconde nanoseconde nom f s 0.05 0.00 0.02 0.00 +nanosecondes nanoseconde nom f p 0.05 0.00 0.03 0.00 +nanotechnologie nanotechnologie nom f s 0.34 0.00 0.34 0.00 +nant nant nom m s 0.32 0.81 0.32 0.81 +nantais nantais adj m s 0.00 0.41 0.00 0.34 +nantaise nantaise nom f s 0.14 0.00 0.14 0.00 +nantaises nantais nom f p 0.00 0.34 0.00 0.07 +nanti nanti nom m s 0.44 1.62 0.17 0.14 +nantie nantir ver f s 0.11 1.96 0.05 0.61 par:pas; +nanties nantir ver f p 0.11 1.96 0.00 0.14 par:pas; +nantir nantir ver 0.11 1.96 0.01 0.20 inf; +nantis nanti nom m p 0.44 1.62 0.25 1.42 +nantissement nantissement nom m s 0.01 0.07 0.01 0.07 +nap nap adj m s 0.05 0.00 0.05 0.00 +napalm napalm nom m s 0.96 0.68 0.96 0.68 +napel napel nom m s 0.01 0.00 0.01 0.00 +naphtaline naphtaline nom f s 0.53 2.30 0.53 2.23 +naphtalines naphtaline nom f p 0.53 2.30 0.00 0.07 +naphtalène naphtalène nom m s 0.09 0.00 0.09 0.00 +naphte naphte nom m s 0.10 0.27 0.10 0.27 +napolitain napolitain adj m s 1.09 1.96 0.73 0.34 +napolitaine napolitain adj f s 1.09 1.96 0.21 0.74 +napolitaines napolitain adj f p 1.09 1.96 0.02 0.27 +napolitains napolitain nom m p 1.21 0.74 0.63 0.07 +napoléon napoléon nom m s 0.18 1.28 0.04 0.81 +napoléonien napoléonien adj m s 0.08 0.61 0.02 0.20 +napoléonienne napoléonien adj f s 0.08 0.61 0.01 0.20 +napoléoniennes napoléonien adj f p 0.08 0.61 0.04 0.14 +napoléoniens napoléonien adj m p 0.08 0.61 0.01 0.07 +napoléons napoléon nom m p 0.18 1.28 0.14 0.47 +nappa napper ver 0.31 1.49 0.22 0.20 ind:pas:3s; +nappage nappage nom m s 0.04 0.00 0.04 0.00 +nappaient napper ver 0.31 1.49 0.00 0.07 ind:imp:3p; +nappait napper ver 0.31 1.49 0.00 0.14 ind:imp:3s; +nappe nappe nom f s 4.34 25.68 3.01 18.18 +napper napper ver 0.31 1.49 0.01 0.07 inf; +napperon napperon nom m s 0.51 3.65 0.31 2.16 +napperons napperon nom m p 0.51 3.65 0.20 1.49 +nappes nappe nom f p 4.34 25.68 1.33 7.50 +nappé napper ver m s 0.31 1.49 0.04 0.41 par:pas; +nappée napper ver f s 0.31 1.49 0.01 0.20 par:pas; +nappées napper ver f p 0.31 1.49 0.01 0.20 par:pas; +nappés napper ver m p 0.31 1.49 0.02 0.14 par:pas; +naquît naître ver 116.11 119.32 0.00 0.20 sub:imp:3s; +naquirent naître ver 116.11 119.32 0.03 0.34 ind:pas:3p; +naquis naître ver 116.11 119.32 0.25 0.27 ind:pas:1s;ind:pas:2s; +naquisse naître ver 116.11 119.32 0.00 0.07 sub:imp:1s; +naquissent naître ver 116.11 119.32 0.00 0.07 sub:imp:3p; +naquit naître ver 116.11 119.32 1.40 3.18 ind:pas:3s; +narbonnais narbonnais adj m s 0.00 0.68 0.00 0.68 +narcisse narcisse nom m s 0.34 0.95 0.04 0.27 +narcisses narcisse nom m p 0.34 0.95 0.31 0.68 +narcissique narcissique adj s 1.16 0.88 0.88 0.61 +narcissiquement narcissiquement adv 0.00 0.07 0.00 0.07 +narcissiques narcissique adj p 1.16 0.88 0.27 0.27 +narcissisme narcissisme nom m s 1.18 1.15 1.18 1.15 +narcissiste narcissiste nom s 0.03 0.00 0.03 0.00 +narco_analyse narco_analyse nom f s 0.01 0.00 0.01 0.00 +narcolepsie narcolepsie nom f s 0.21 0.00 0.21 0.00 +narcoleptique narcoleptique adj s 0.14 0.00 0.14 0.00 +narcose narcose nom f s 0.00 0.14 0.00 0.14 +narcotique narcotique nom m s 1.28 0.47 0.32 0.34 +narcotiques narcotique nom m p 1.28 0.47 0.96 0.14 +narcotrafic narcotrafic nom m s 0.01 0.00 0.01 0.00 +narcotrafiquants narcotrafiquant nom m p 0.19 0.00 0.19 0.00 +nard nard nom m s 0.02 0.14 0.01 0.14 +nards nard nom m p 0.02 0.14 0.01 0.00 +narghileh narghileh nom m s 0.00 0.07 0.00 0.07 +narghilé narghilé nom m s 0.01 0.14 0.01 0.14 +nargua narguer ver 1.93 6.55 0.00 0.14 ind:pas:3s; +narguaient narguer ver 1.93 6.55 0.00 0.34 ind:imp:3p; +narguais narguer ver 1.93 6.55 0.02 0.07 ind:imp:2s; +narguait narguer ver 1.93 6.55 0.02 0.88 ind:imp:3s; +narguant narguer ver 1.93 6.55 0.04 0.47 par:pre; +nargue narguer ver 1.93 6.55 0.88 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +narguent narguer ver 1.93 6.55 0.48 0.20 ind:pre:3p; +narguer narguer ver 1.93 6.55 0.41 3.38 inf; +nargues narguer ver 1.93 6.55 0.01 0.00 ind:pre:2s; +narguez narguer ver 1.93 6.55 0.02 0.07 ind:pre:2p; +narguilé narguilé nom m s 0.08 1.01 0.07 0.81 +narguilés narguilé nom m p 0.08 1.01 0.01 0.20 +narguons narguer ver 1.93 6.55 0.01 0.00 imp:pre:1p; +nargué narguer ver m s 1.93 6.55 0.05 0.07 par:pas; +narguées narguer ver f p 1.93 6.55 0.00 0.07 par:pas; +narine narine nom f s 3.41 25.81 1.11 5.14 +narines narine nom f p 3.41 25.81 2.30 20.68 +narquois narquois adj m 0.26 6.35 0.12 4.73 +narquoise narquois adj f s 0.26 6.35 0.14 1.42 +narquoisement narquoisement adv 0.00 0.27 0.00 0.27 +narquoiserie narquoiserie nom f s 0.00 0.07 0.00 0.07 +narquoises narquois adj f p 0.26 6.35 0.00 0.20 +narra narrer ver 0.24 2.30 0.00 0.20 ind:pas:3s; +narrai narrer ver 0.24 2.30 0.00 0.07 ind:pas:1s; +narrait narrer ver 0.24 2.30 0.01 0.61 ind:imp:3s; +narrant narrer ver 0.24 2.30 0.02 0.27 par:pre; +narrateur narrateur nom m s 0.61 2.36 0.43 2.23 +narratif narratif adj m s 0.20 0.34 0.05 0.34 +narratifs narratif adj m p 0.20 0.34 0.05 0.00 +narration narration nom f s 0.44 2.43 0.43 2.30 +narrations narration nom f p 0.44 2.43 0.01 0.14 +narrative narratif adj f s 0.20 0.34 0.07 0.00 +narratives narratif adj f p 0.20 0.34 0.04 0.00 +narratrice narrateur nom f s 0.61 2.36 0.17 0.14 +narratrices narratrice nom f p 0.14 0.00 0.14 0.00 +narre narrer ver 0.24 2.30 0.01 0.34 ind:pre:1s;ind:pre:3s; +narrer narrer ver 0.24 2.30 0.16 0.47 inf; +narré narrer ver m s 0.24 2.30 0.03 0.20 par:pas; +narrée narrer ver f s 0.24 2.30 0.00 0.07 par:pas; +narrées narrer ver f p 0.24 2.30 0.00 0.07 par:pas; +narthex narthex nom m 0.01 0.61 0.01 0.61 +narval narval nom m s 0.04 0.68 0.04 0.61 +narvals narval nom m p 0.04 0.68 0.00 0.07 +nasal nasal adj m s 1.56 2.50 0.60 0.47 +nasale nasal adj f s 1.56 2.50 0.67 1.08 +nasales nasal adj f p 1.56 2.50 0.24 0.81 +nasard nasard nom m s 0.00 0.14 0.00 0.07 +nasardes nasard nom f p 0.00 0.14 0.00 0.07 +nasaux nasal adj m p 1.56 2.50 0.05 0.14 +nasdaq nasdaq nom m s 0.14 0.00 0.14 0.00 +nase nase adj s 1.84 0.74 1.54 0.68 +naseau naseau nom m s 0.35 5.20 0.14 0.20 +naseaux naseau nom m p 0.35 5.20 0.21 5.00 +nases nase nom m p 1.06 0.20 0.43 0.00 +nasilla nasiller ver 0.01 1.22 0.00 0.07 ind:pas:3s; +nasillaient nasiller ver 0.01 1.22 0.00 0.07 ind:imp:3p; +nasillait nasiller ver 0.01 1.22 0.00 0.41 ind:imp:3s; +nasillant nasiller ver 0.01 1.22 0.00 0.34 par:pre; +nasillard nasillard adj m s 0.02 2.64 0.01 0.54 +nasillarde nasillard adj f s 0.02 2.64 0.01 1.42 +nasillardes nasillard adj f p 0.02 2.64 0.00 0.27 +nasillards nasillard adj m p 0.02 2.64 0.00 0.41 +nasille nasiller ver 0.01 1.22 0.01 0.14 ind:pre:1s;ind:pre:3s; +nasillement nasillement nom m s 0.00 0.41 0.00 0.41 +nasillent nasiller ver 0.01 1.22 0.00 0.07 ind:pre:3p; +nasiller nasiller ver 0.01 1.22 0.00 0.14 inf; +nasillonne nasillonner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +nasique nasique nom m s 0.50 0.00 0.50 0.00 +nasopharynx nasopharynx nom m 0.03 0.00 0.03 0.00 +nasse nasse nom f s 0.54 1.82 0.39 1.22 +nasses nasse nom f p 0.54 1.82 0.14 0.61 +nassérien nassérien adj m s 0.00 0.07 0.00 0.07 +natal natal adj m s 5.71 13.92 2.54 5.47 +natale natal adj f s 5.71 13.92 3.15 7.91 +natales natal adj f p 5.71 13.92 0.02 0.41 +natalité natalité nom f s 0.20 0.54 0.20 0.54 +natals natal adj m p 5.71 13.92 0.00 0.14 +natation natation nom f s 3.59 1.22 3.59 1.22 +natatoire natatoire adj f s 0.01 0.07 0.01 0.07 +natif natif adj m s 0.58 3.65 0.44 1.82 +natifs natif nom m p 0.52 0.68 0.36 0.27 +nation nation nom f s 24.80 47.23 16.97 31.96 +national_socialisme national_socialisme nom m s 0.58 2.03 0.58 2.03 +national_socialiste national_socialiste adj m s 0.23 0.14 0.23 0.14 +national national adj m s 34.61 98.04 12.23 42.70 +nationale_socialiste nationale_socialiste adj f s 0.00 0.14 0.00 0.14 +nationale national adj f s 34.61 98.04 18.59 48.18 +nationalement nationalement adv 0.00 0.14 0.00 0.14 +nationales national adj f p 34.61 98.04 1.43 4.39 +nationalisait nationaliser ver 0.06 0.68 0.00 0.07 ind:imp:3s; +nationalisation nationalisation nom f s 0.11 1.08 0.01 0.61 +nationalisations nationalisation nom f p 0.11 1.08 0.10 0.47 +nationalisent nationaliser ver 0.06 0.68 0.00 0.07 ind:pre:3p; +nationaliser nationaliser ver 0.06 0.68 0.01 0.07 inf; +nationalisme nationalisme nom m s 2.75 3.11 2.75 3.11 +nationalisons nationaliser ver 0.06 0.68 0.00 0.07 imp:pre:1p; +nationaliste nationaliste adj s 1.65 2.57 1.16 1.76 +nationalistes nationaliste nom p 1.45 1.55 1.40 1.22 +nationalisé nationaliser ver m s 0.06 0.68 0.01 0.07 par:pas; +nationalisée nationaliser ver f s 0.06 0.68 0.01 0.14 par:pas; +nationalisées nationaliser ver f p 0.06 0.68 0.01 0.20 par:pas; +nationalisés nationaliser ver m p 0.06 0.68 0.02 0.00 par:pas; +nationalité nationalité nom f s 3.21 6.89 2.77 5.74 +nationalités nationalité nom f p 3.21 6.89 0.43 1.15 +nationaux_socialistes nationaux_socialistes adj p 0.00 0.14 0.00 0.14 +nationaux national adj m p 34.61 98.04 2.35 2.77 +nations nation nom f p 24.80 47.23 7.83 15.27 +native natif adj f s 0.58 3.65 0.06 1.28 +natives natif adj f p 0.58 3.65 0.01 0.20 +nativité nativité nom f s 0.14 1.35 0.14 1.28 +nativités nativité nom f p 0.14 1.35 0.00 0.07 +natron natron nom m s 0.04 0.00 0.04 0.00 +natrum natrum nom m s 0.01 0.00 0.01 0.00 +natrémie natrémie nom f s 0.03 0.00 0.03 0.00 +natta natter ver 0.11 1.01 0.00 0.07 ind:pas:3s; +natte natte nom f s 1.75 10.20 0.88 4.26 +natter natter ver 0.11 1.01 0.01 0.14 inf; +nattes natte nom f p 1.75 10.20 0.87 5.95 +nattier nattier nom m s 0.00 0.14 0.00 0.14 +natté natter ver m s 0.11 1.01 0.00 0.07 par:pas; +nattée natter ver f s 0.11 1.01 0.00 0.20 par:pas; +nattées natter ver f p 0.11 1.01 0.00 0.07 par:pas; +nattés natter ver m p 0.11 1.01 0.10 0.41 par:pas; +naturalisation naturalisation nom f s 0.06 1.01 0.06 1.01 +naturaliser naturaliser ver 0.34 0.68 0.05 0.34 inf; +naturalisme naturalisme nom m s 0.40 0.27 0.40 0.27 +naturaliste naturaliste nom s 0.69 0.68 0.51 0.41 +naturalistes naturaliste nom p 0.69 0.68 0.18 0.27 +naturalisé naturaliser ver m s 0.34 0.68 0.29 0.27 par:pas; +naturalisée naturalisé adj f s 0.04 0.47 0.01 0.00 +naturalisés naturalisé adj m p 0.04 0.47 0.01 0.20 +nature nature nom f s 60.20 95.88 59.80 93.45 +naturel naturel adj m s 39.78 75.68 19.01 38.65 +naturelle naturel adj f s 39.78 75.68 14.02 24.86 +naturellement naturellement adv 21.05 71.96 21.05 71.96 +naturelles naturel adj f p 39.78 75.68 3.90 6.28 +naturels naturel adj m p 39.78 75.68 2.86 5.88 +natures nature nom f p 60.20 95.88 0.40 2.43 +naturisme naturisme nom m s 0.03 0.14 0.03 0.14 +naturiste naturiste adj m s 0.20 0.41 0.18 0.20 +naturistes naturiste nom p 0.03 0.20 0.03 0.14 +naturlich naturlich adv 0.27 0.14 0.27 0.14 +naturopathe naturopathe nom s 0.03 0.00 0.03 0.00 +naufrage naufrage nom m s 3.04 11.62 2.76 10.61 +naufrageant naufrager ver 0.21 0.88 0.00 0.07 par:pre; +naufragent naufrager ver 0.21 0.88 0.00 0.07 ind:pre:3p; +naufrager naufrager ver 0.21 0.88 0.19 0.07 inf; +naufrages naufrage nom m p 3.04 11.62 0.28 1.01 +naufrageur naufrageur nom m s 0.02 0.20 0.00 0.07 +naufrageurs naufrageur nom m p 0.02 0.20 0.02 0.07 +naufrageuse naufrageur nom f s 0.02 0.20 0.00 0.07 +naufragé naufragé nom m s 0.69 3.45 0.30 2.03 +naufragée naufragé nom f s 0.69 3.45 0.00 0.41 +naufragées naufragé adj f p 0.06 1.08 0.00 0.07 +naufragés naufragé nom m p 0.69 3.45 0.38 1.01 +nauséabond nauséabond adj m s 0.63 2.97 0.34 0.95 +nauséabonde nauséabond adj f s 0.63 2.97 0.17 0.88 +nauséabondes nauséabond adj f p 0.63 2.97 0.05 0.95 +nauséabonds nauséabond adj m p 0.63 2.97 0.06 0.20 +nausée nausée nom f s 6.51 10.00 4.75 7.91 +nausées nausée nom f p 6.51 10.00 1.76 2.09 +nauséeuse nauséeux adj f s 0.55 2.03 0.20 0.74 +nauséeuses nauséeux adj f p 0.55 2.03 0.14 0.14 +nauséeux nauséeux adj m 0.55 2.03 0.21 1.15 +nautes naute nom m p 0.00 0.07 0.00 0.07 +nautile nautile nom m s 0.05 0.00 0.05 0.00 +nautilus nautilus nom m 1.26 0.14 1.26 0.14 +nautique nautique adj s 1.89 2.09 0.71 1.15 +nautiques nautique adj p 1.89 2.09 1.17 0.95 +nautonier nautonier nom m s 0.00 0.27 0.00 0.07 +nautoniers nautonier nom m p 0.00 0.27 0.00 0.20 +navaja navaja nom f s 0.15 0.34 0.15 0.27 +navajas navaja nom f p 0.15 0.34 0.00 0.07 +navajo navajo adj s 0.21 0.14 0.18 0.00 +navajos navajo nom p 0.13 0.00 0.09 0.00 +naval naval adj m s 4.37 8.78 2.08 1.08 +navale naval adj f s 4.37 8.78 1.56 3.45 +navales naval adj f p 4.37 8.78 0.27 3.31 +navals naval adj m p 4.37 8.78 0.46 0.95 +navarin navarin nom m s 0.10 0.27 0.10 0.20 +navarins navarin nom m p 0.10 0.27 0.00 0.07 +navarrais navarrais nom m 0.10 0.61 0.10 0.61 +nave nave nom f s 0.02 0.74 0.02 0.74 +navel navel nom f s 0.03 0.00 0.03 0.00 +navet navet nom m s 3.16 2.77 1.25 0.88 +navets navet nom m p 3.16 2.77 1.90 1.89 +navette navette nom f s 9.35 3.65 8.44 3.04 +navettes navette nom f p 9.35 3.65 0.91 0.61 +navicert navicert nom m 0.00 0.07 0.00 0.07 +navigabilité navigabilité nom f s 0.01 0.00 0.01 0.00 +navigable navigable adj m s 0.07 0.27 0.02 0.14 +navigables navigable adj f p 0.07 0.27 0.04 0.14 +navigant navigant adj m s 0.19 0.41 0.16 0.41 +navigante navigant adj f s 0.19 0.41 0.03 0.00 +navigateur navigateur nom m s 2.23 3.78 1.95 1.89 +navigateurs navigateur nom m p 2.23 3.78 0.25 1.82 +navigation navigation nom f s 3.25 5.41 3.25 5.07 +navigations navigation nom f p 3.25 5.41 0.00 0.34 +navigatrice navigateur nom f s 2.23 3.78 0.04 0.07 +navigua naviguer ver 8.71 11.42 0.04 0.27 ind:pas:3s; +naviguaient naviguer ver 8.71 11.42 0.02 1.01 ind:imp:3p; +naviguais naviguer ver 8.71 11.42 0.12 0.27 ind:imp:1s; +naviguait naviguer ver 8.71 11.42 0.20 1.82 ind:imp:3s; +naviguant naviguer ver 8.71 11.42 0.07 1.08 par:pre; +navigue naviguer ver 8.71 11.42 2.18 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +naviguent naviguer ver 8.71 11.42 0.14 0.61 ind:pre:3p; +naviguer naviguer ver 8.71 11.42 3.33 2.57 inf; +naviguera naviguer ver 8.71 11.42 0.10 0.00 ind:fut:3s; +naviguerai naviguer ver 8.71 11.42 0.04 0.00 ind:fut:1s; +navigueraient naviguer ver 8.71 11.42 0.00 0.07 cnd:pre:3p; +naviguerons naviguer ver 8.71 11.42 0.25 0.00 ind:fut:1p; +navigues naviguer ver 8.71 11.42 0.02 0.00 ind:pre:2s; +naviguez naviguer ver 8.71 11.42 0.56 0.00 imp:pre:2p;ind:pre:2p; +naviguiez naviguer ver 8.71 11.42 0.14 0.00 ind:imp:2p; +naviguions naviguer ver 8.71 11.42 0.00 0.41 ind:imp:1p; +naviguons naviguer ver 8.71 11.42 0.19 0.14 imp:pre:1p;ind:pre:1p; +naviguèrent naviguer ver 8.71 11.42 0.02 0.00 ind:pas:3p; +navigué naviguer ver m s 8.71 11.42 1.29 1.35 par:pas; +navire_citerne navire_citerne nom m s 0.14 0.00 0.01 0.00 +navire_hôpital navire_hôpital nom m s 0.04 0.14 0.04 0.14 +navire navire nom m s 21.98 50.20 15.83 28.04 +navire_citerne navire_citerne nom m p 0.14 0.00 0.14 0.00 +navire_école navire_école nom m p 0.00 0.07 0.00 0.07 +navires navire nom m p 21.98 50.20 6.14 22.16 +navra navrer ver 18.68 4.19 0.00 0.20 ind:pas:3s; +navrait navrer ver 18.68 4.19 0.00 0.34 ind:imp:3s; +navrance navrance nom f s 0.00 0.07 0.00 0.07 +navrant navrant adj m s 0.63 2.70 0.51 0.74 +navrante navrant adj f s 0.63 2.70 0.09 1.01 +navrantes navrant adj f p 0.63 2.70 0.02 0.54 +navrants navrant adj m p 0.63 2.70 0.01 0.41 +navre navrer ver 18.68 4.19 0.29 0.47 imp:pre:2s;ind:pre:3s; +navrer navrer ver 18.68 4.19 0.00 0.07 inf; +navres navrer ver 18.68 4.19 0.00 0.07 ind:pre:2s; +navrez navrer ver 18.68 4.19 0.01 0.00 ind:pre:2p; +navré navrer ver m s 18.68 4.19 12.01 1.42 par:pas; +navrée navrer ver f s 18.68 4.19 6.01 0.81 par:pas; +navrées navrer ver f p 18.68 4.19 0.03 0.07 par:pas; +navrés navrer ver m p 18.68 4.19 0.31 0.41 par:pas; +nay nay nom f s 0.01 0.00 0.01 0.00 +nazaréen nazaréen nom m s 0.48 0.14 0.48 0.14 +naze naze adj s 4.82 1.55 4.20 1.55 +nazes naze nom m p 3.27 0.34 1.56 0.07 +nazi nazi nom m s 14.76 7.50 4.13 0.74 +nazie nazi adj f s 7.11 7.70 1.27 1.62 +nazies nazi adj f p 7.11 7.70 0.53 0.88 +nazillons nazillon nom m p 0.01 0.07 0.01 0.07 +nazis nazi nom m p 14.76 7.50 9.81 6.76 +nazisme nazisme nom m s 0.63 1.62 0.63 1.62 +ne_varietur ne_varietur adv 0.00 0.14 0.00 0.14 +ne ne adv_sup 22287.83 13841.89 13357.03 7752.09 +nec nec nom s 0.64 0.27 0.64 0.27 +neck neck nom m s 0.21 0.00 0.21 0.00 +nectar nectar nom m s 2.28 0.81 2.28 0.81 +nectarine nectarine nom f s 0.14 0.00 0.12 0.00 +nectarines nectarine nom f p 0.14 0.00 0.01 0.00 +nef nef nom f s 0.55 6.89 0.41 6.49 +nefs nef nom f p 0.55 6.89 0.13 0.41 +negro_spiritual negro_spiritual nom m s 0.01 0.14 0.01 0.07 +negro_spiritual negro_spiritual nom m p 0.01 0.14 0.00 0.07 +negro negro nom s 0.07 0.07 0.07 0.07 +neige neige nom f s 39.34 80.88 37.52 74.93 +neigeait neiger ver 7.87 3.92 0.89 1.22 ind:imp:3s; +neiger neiger ver 7.87 3.92 0.59 0.61 inf; +neigera neiger ver 7.87 3.92 0.21 0.07 ind:fut:3s; +neigerait neiger ver 7.87 3.92 0.02 0.00 cnd:pre:3s; +neiges neige nom f p 39.34 80.88 1.82 5.95 +neigeuse neigeux adj f s 0.30 4.12 0.04 1.35 +neigeuses neigeux adj f p 0.30 4.12 0.03 1.22 +neigeux neigeux adj m 0.30 4.12 0.23 1.55 +neigé neiger ver m s 7.87 3.92 0.66 0.54 par:pas; +nem nem nom m s 0.62 0.14 0.33 0.07 +nemrod nemrod nom m s 0.00 0.07 0.00 0.07 +nems nem nom m p 0.62 0.14 0.29 0.07 +nenni nenni adv 0.52 0.34 0.52 0.34 +nephtys nephtys nom m 0.00 0.07 0.00 0.07 +neptunienne neptunien adj f s 0.06 0.00 0.03 0.00 +neptuniens neptunien adj m p 0.06 0.00 0.04 0.00 +nerf nerf nom m s 30.12 30.47 8.09 3.92 +nerfs nerf nom m p 30.12 30.47 22.03 26.55 +nerprun nerprun nom m s 0.00 0.20 0.00 0.14 +nerpruns nerprun nom m p 0.00 0.20 0.00 0.07 +nerva nerver ver 0.35 0.07 0.34 0.00 ind:pas:3s; +nerver nerver ver 0.35 0.07 0.02 0.00 inf; +nerveuse nerveux adj f s 41.91 35.81 8.50 10.88 +nerveusement nerveusement adv 0.38 7.36 0.38 7.36 +nerveuses nerveux adj f p 41.91 35.81 0.89 3.11 +nerveux nerveux adj m 41.91 35.81 32.52 21.82 +nervi nervi nom m s 0.05 0.81 0.05 0.47 +nervis nervi nom m p 0.05 0.81 0.00 0.34 +nervosité nervosité nom f s 1.58 5.07 1.58 4.93 +nervosités nervosité nom f p 1.58 5.07 0.00 0.14 +nervé nerver ver m s 0.35 0.07 0.00 0.07 par:pas; +nervure nervure nom f s 0.01 3.24 0.00 0.54 +nervures nervure nom f p 0.01 3.24 0.01 2.70 +nervuré nervurer ver m s 0.01 0.41 0.00 0.20 par:pas; +nervurée nervurer ver f s 0.01 0.41 0.01 0.14 par:pas; +nervurées nervurer ver f p 0.01 0.41 0.00 0.07 par:pas; +nescafé nescafé nom m s 0.20 0.81 0.20 0.81 +nestor nestor nom m s 0.01 0.00 0.01 0.00 +nestorianisme nestorianisme nom m s 0.00 0.34 0.00 0.34 +nestorien nestorien nom m s 0.00 2.09 0.00 1.35 +nestorienne nestorien adj f s 0.00 1.62 0.00 0.34 +nestoriennes nestorien adj f p 0.00 1.62 0.00 0.07 +nestoriens nestorien nom m p 0.00 2.09 0.00 0.74 +net net adj m s 19.95 40.20 14.31 17.09 +nets net adj m p 19.95 40.20 0.94 4.19 +nette net adj f s 19.95 40.20 3.91 14.86 +nettement nettement adv 3.17 20.34 3.17 20.34 +nettes net adj f p 19.95 40.20 0.79 4.05 +netteté netteté nom f s 0.61 9.12 0.61 9.12 +nettoie nettoyer ver 61.93 28.11 12.09 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +nettoiement nettoiement nom m s 0.03 0.27 0.03 0.27 +nettoient nettoyer ver 61.93 28.11 0.67 0.81 ind:pre:3p; +nettoiera nettoyer ver 61.93 28.11 0.33 0.20 ind:fut:3s; +nettoierai nettoyer ver 61.93 28.11 0.75 0.07 ind:fut:1s; +nettoieraient nettoyer ver 61.93 28.11 0.02 0.00 cnd:pre:3p; +nettoierais nettoyer ver 61.93 28.11 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +nettoierait nettoyer ver 61.93 28.11 0.13 0.07 cnd:pre:3s; +nettoieras nettoyer ver 61.93 28.11 0.33 0.00 ind:fut:2s; +nettoierez nettoyer ver 61.93 28.11 0.04 0.14 ind:fut:2p; +nettoierons nettoyer ver 61.93 28.11 0.13 0.00 ind:fut:1p; +nettoies nettoyer ver 61.93 28.11 1.42 0.14 ind:pre:2s;sub:pre:2s; +nettoya nettoyer ver 61.93 28.11 0.02 1.28 ind:pas:3s; +nettoyable nettoyable adj s 0.01 0.07 0.01 0.00 +nettoyables nettoyable adj p 0.01 0.07 0.00 0.07 +nettoyage nettoyage nom m s 7.50 6.35 7.48 5.88 +nettoyages nettoyage nom m p 7.50 6.35 0.02 0.47 +nettoyai nettoyer ver 61.93 28.11 0.00 0.14 ind:pas:1s; +nettoyaient nettoyer ver 61.93 28.11 0.07 0.95 ind:imp:3p; +nettoyais nettoyer ver 61.93 28.11 1.06 0.14 ind:imp:1s;ind:imp:2s; +nettoyait nettoyer ver 61.93 28.11 1.02 2.57 ind:imp:3s; +nettoyant nettoyer ver 61.93 28.11 0.64 1.01 par:pre; +nettoyante nettoyant adj f s 0.10 0.07 0.01 0.00 +nettoyants nettoyant nom m p 0.35 0.07 0.02 0.07 +nettoyer nettoyer ver 61.93 28.11 30.26 10.95 inf; +nettoyeur nettoyeur nom m s 2.51 0.68 1.24 0.34 +nettoyeurs nettoyeur nom m p 2.51 0.68 0.91 0.20 +nettoyeuse nettoyeur nom f s 2.51 0.68 0.36 0.07 +nettoyeuses nettoyeur nom f p 2.51 0.68 0.00 0.07 +nettoyez nettoyer ver 61.93 28.11 2.88 0.00 imp:pre:2p;ind:pre:2p; +nettoyiez nettoyer ver 61.93 28.11 0.14 0.07 ind:imp:2p; +nettoyons nettoyer ver 61.93 28.11 0.46 0.14 imp:pre:1p;ind:pre:1p; +nettoyât nettoyer ver 61.93 28.11 0.00 0.20 sub:imp:3s; +nettoyèrent nettoyer ver 61.93 28.11 0.01 0.07 ind:pas:3p; +nettoyé nettoyer ver m s 61.93 28.11 7.72 4.19 par:pas; +nettoyée nettoyer ver f s 61.93 28.11 0.89 1.08 par:pas; +nettoyées nettoyer ver f p 61.93 28.11 0.29 0.41 par:pas; +nettoyés nettoyer ver m p 61.93 28.11 0.45 0.88 par:pas; +neuf neuf adj_num 59.45 113.18 32.05 56.01 +neufs neuf adj m p 59.45 113.18 3.50 11.89 +neuneu neuneu adj f s 0.49 0.07 0.49 0.07 +neural neural adj m s 1.21 0.00 0.79 0.00 +neurale neural adj f s 1.21 0.00 0.32 0.00 +neurales neural adj f p 1.21 0.00 0.10 0.00 +neurasthénie neurasthénie nom f s 0.14 1.28 0.14 1.28 +neurasthénique neurasthénique adj s 0.71 1.15 0.70 0.81 +neurasthéniques neurasthénique nom p 0.10 0.20 0.10 0.07 +neurinome neurinome nom m s 0.01 0.00 0.01 0.00 +neurobiologie neurobiologie nom f s 0.01 0.00 0.01 0.00 +neurobiologiste neurobiologiste nom s 0.02 0.00 0.02 0.00 +neurochimie neurochimie nom f s 0.03 0.00 0.03 0.00 +neurochimique neurochimique adj s 0.01 0.00 0.01 0.00 +neurochirurgie neurochirurgie nom f s 0.53 0.00 0.53 0.00 +neurochirurgien neurochirurgien nom m s 0.85 0.00 0.79 0.00 +neurochirurgienne neurochirurgien nom f s 0.85 0.00 0.06 0.00 +neurofibromatose neurofibromatose nom f s 0.05 0.00 0.05 0.00 +neuroleptique neuroleptique nom m s 0.07 0.20 0.01 0.07 +neuroleptiques neuroleptique nom m p 0.07 0.20 0.06 0.14 +neurolinguistique neurolinguistique nom f s 0.01 0.00 0.01 0.00 +neurologie neurologie nom f s 0.93 0.00 0.93 0.00 +neurologique neurologique adj s 1.71 0.00 1.26 0.00 +neurologiquement neurologiquement adv 0.02 0.00 0.02 0.00 +neurologiques neurologique adj p 1.71 0.00 0.45 0.00 +neurologiste neurologiste nom s 0.09 0.00 0.09 0.00 +neurologue neurologue nom s 1.56 0.34 1.34 0.34 +neurologues neurologue nom p 1.56 0.34 0.22 0.00 +neuromusculaire neuromusculaire adj m s 0.11 0.00 0.11 0.00 +neuronal neuronal adj m s 0.42 0.00 0.19 0.00 +neuronale neuronal adj f s 0.42 0.00 0.14 0.00 +neuronales neuronal adj f p 0.42 0.00 0.03 0.00 +neuronaux neuronal adj m p 0.42 0.00 0.06 0.00 +neurone neurone nom m s 1.77 1.15 0.38 0.07 +neurones neurone nom m p 1.77 1.15 1.39 1.08 +neuronique neuronique adj f s 0.03 0.00 0.03 0.00 +neuropathie neuropathie nom f s 0.07 0.00 0.07 0.00 +neuropathologie neuropathologie nom f s 0.01 0.00 0.01 0.00 +neuropeptide neuropeptide nom m s 0.01 0.00 0.01 0.00 +neurophysiologie neurophysiologie nom f s 0.02 0.07 0.02 0.07 +neuroplégique neuroplégique adj s 0.02 0.00 0.02 0.00 +neuropsychiatrie neuropsychiatrie nom f s 0.03 0.00 0.03 0.00 +neuropsychologiques neuropsychologique adj p 0.11 0.00 0.11 0.00 +neuropsychologue neuropsychologue nom s 0.02 0.00 0.02 0.00 +neuroscience neuroscience nom f s 0.04 0.00 0.04 0.00 +neurotoxine neurotoxine nom f s 0.05 0.00 0.05 0.00 +neurotoxique neurotoxique adj s 0.14 0.00 0.14 0.00 +neurotransmetteur neurotransmetteur nom m s 0.36 0.00 0.05 0.00 +neurotransmetteurs neurotransmetteur nom m p 0.36 0.00 0.31 0.00 +neutralisaient neutraliser ver 5.31 2.97 0.01 0.14 ind:imp:3p; +neutralisait neutraliser ver 5.31 2.97 0.05 0.07 ind:imp:3s; +neutralisant neutraliser ver 5.31 2.97 0.06 0.20 par:pre; +neutralisante neutralisant adj f s 0.04 0.00 0.02 0.00 +neutralisateur neutralisateur adj m s 0.01 0.07 0.01 0.07 +neutralisation neutralisation nom f s 0.13 1.08 0.13 1.08 +neutralise neutraliser ver 5.31 2.97 0.53 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +neutralisent neutraliser ver 5.31 2.97 0.29 0.00 ind:pre:3p; +neutraliser neutraliser ver 5.31 2.97 2.31 1.28 inf; +neutralisera neutraliser ver 5.31 2.97 0.09 0.00 ind:fut:3s; +neutraliserai neutraliser ver 5.31 2.97 0.02 0.00 ind:fut:1s; +neutraliseraient neutraliser ver 5.31 2.97 0.00 0.07 cnd:pre:3p; +neutraliserait neutraliser ver 5.31 2.97 0.03 0.00 cnd:pre:3s; +neutraliseront neutraliser ver 5.31 2.97 0.04 0.00 ind:fut:3p; +neutralisez neutraliser ver 5.31 2.97 0.19 0.00 imp:pre:2p;ind:pre:2p; +neutralisiez neutraliser ver 5.31 2.97 0.01 0.00 ind:imp:2p; +neutralisons neutraliser ver 5.31 2.97 0.03 0.00 imp:pre:1p;ind:pre:1p; +neutraliste neutraliste nom s 0.16 0.00 0.16 0.00 +neutralisé neutraliser ver m s 5.31 2.97 1.02 0.34 par:pas; +neutralisée neutraliser ver f s 5.31 2.97 0.29 0.27 par:pas; +neutralisées neutraliser ver f p 5.31 2.97 0.02 0.14 par:pas; +neutralisés neutraliser ver m p 5.31 2.97 0.31 0.20 par:pas; +neutralité neutralité nom f s 0.46 2.97 0.46 2.97 +neutre neutre adj s 5.15 11.76 4.32 10.20 +neutres neutre adj p 5.15 11.76 0.83 1.55 +neutrino neutrino nom m s 0.55 0.00 0.15 0.00 +neutrinos neutrino nom m p 0.55 0.00 0.40 0.00 +neutron neutron nom m s 0.68 0.54 0.46 0.14 +neutronique neutronique adj m s 0.01 0.00 0.01 0.00 +neutrons neutron nom m p 0.68 0.54 0.23 0.41 +neutropénie neutropénie nom f s 0.04 0.00 0.04 0.00 +neuvaine neuvaine nom f s 0.38 0.61 0.14 0.14 +neuvaines neuvaine nom f p 0.38 0.61 0.25 0.47 +neuve neuf adj f s 59.45 113.18 10.30 22.43 +neuves neuf adj f p 59.45 113.18 5.02 8.72 +neuvième neuvième adj 1.09 1.49 1.09 1.42 +neuvièmes neuvième nom p 0.55 1.08 0.01 0.00 +neveu neveu nom m s 22.90 26.35 22.90 13.92 +neveux neveux nom m p 2.13 3.72 2.13 3.72 +new_yorkais new_yorkais adj m 0.00 1.42 0.00 0.95 +new_yorkais new_yorkais adj f s 0.00 1.42 0.00 0.34 +new_yorkais new_yorkais adj f p 0.00 1.42 0.00 0.14 +new_wave new_wave nom f 0.00 0.07 0.00 0.07 +new new adj m s 0.74 3.51 0.74 3.51 +news new nom m p 0.08 0.20 0.08 0.20 +ney ney nom m s 1.68 0.14 1.68 0.14 +nez nez nom m 75.18 177.64 75.18 177.64 +ni ni con 377.64 662.36 377.64 662.36 +nia nier ver 24.86 23.58 0.13 1.01 ind:pas:3s; +niable niable adj s 0.00 0.61 0.00 0.61 +niai nier ver 24.86 23.58 0.00 0.20 ind:pas:1s; +niaient nier ver 24.86 23.58 0.03 0.54 ind:imp:3p; +niais niais adj m 1.19 5.68 1.11 3.51 +niaise niais nom f s 0.71 1.49 0.14 0.41 +niaisement niaisement adv 0.11 0.68 0.11 0.68 +niaiser niaiser ver 0.30 0.00 0.17 0.00 inf; +niaiserie niaiserie nom f s 0.89 3.51 0.16 1.89 +niaiseries niaiserie nom f p 0.89 3.51 0.73 1.62 +niaises niaise nom f p 0.11 0.00 0.07 0.00 +niaiseuse niaiseux adj f s 0.05 0.07 0.01 0.00 +niaiseux niaiseux adj m p 0.05 0.07 0.04 0.07 +niaisé niaiser ver m s 0.30 0.00 0.14 0.00 par:pas; +niait nier ver 24.86 23.58 0.11 2.43 ind:imp:3s; +niakoué niakoué nom s 0.07 0.14 0.03 0.07 +niakoués niakoué nom p 0.07 0.14 0.04 0.07 +niant nier ver 24.86 23.58 0.35 0.95 par:pre; +nib nib adv 0.16 2.03 0.16 2.03 +nibard nibard nom m s 1.60 0.68 0.13 0.07 +nibards nibard nom m p 1.60 0.68 1.47 0.61 +nibergue nibergue adj 0.00 0.07 0.00 0.07 +nicaraguayen nicaraguayen adj m s 0.06 0.00 0.04 0.00 +nicaraguayenne nicaraguayen nom f s 0.07 0.00 0.02 0.00 +nicaraguayens nicaraguayen nom m p 0.07 0.00 0.05 0.00 +nice nice nom s 2.00 0.41 2.00 0.41 +nicet nicet adj m s 0.00 0.14 0.00 0.14 +nicha nicher ver 1.52 5.61 0.01 0.07 ind:pas:3s; +nichaient nicher ver 1.52 5.61 0.12 0.34 ind:imp:3p; +nichait nicher ver 1.52 5.61 0.10 0.27 ind:imp:3s; +nichan nichan nom m s 0.00 0.07 0.00 0.07 +nichant nicher ver 1.52 5.61 0.00 0.34 par:pre; +niche niche nom f s 2.27 9.39 2.17 6.35 +nichent nicher ver 1.52 5.61 0.16 0.27 ind:pre:3p; +nicher nicher ver 1.52 5.61 0.35 1.62 inf; +niches niche nom f p 2.27 9.39 0.10 3.04 +nicheurs nicheur adj m p 0.00 0.07 0.00 0.07 +nichions nicher ver 1.52 5.61 0.00 0.07 ind:imp:1p; +nichon nichon nom m s 9.85 6.35 0.67 0.54 +nichonnée nichonnée adj f s 0.00 0.27 0.00 0.14 +nichonnées nichonnée adj f p 0.00 0.27 0.00 0.14 +nichons nichon nom m p 9.85 6.35 9.18 5.81 +nichèrent nicher ver 1.52 5.61 0.00 0.07 ind:pas:3p; +niché nicher ver m s 1.52 5.61 0.23 0.61 par:pas; +nichée nicher ver f s 1.52 5.61 0.14 0.61 par:pas; +nichées nichée nom f p 0.07 1.22 0.01 0.00 +nichés nicher ver m p 1.52 5.61 0.02 0.27 par:pas; +nickel nickel adj 2.78 1.28 2.78 1.28 +nickelle nickeler ver 0.00 0.54 0.00 0.07 ind:pre:3s; +nickels nickel nom m p 1.50 1.55 0.09 0.34 +nickelé nickelé adj m s 0.35 2.03 0.02 0.81 +nickelée nickelé adj f s 0.35 2.03 0.01 0.54 +nickelées nickelé adj f p 0.35 2.03 0.00 0.07 +nickelés nickelé adj m p 0.35 2.03 0.32 0.61 +nicotine nicotine nom f s 1.66 1.28 1.66 1.28 +nicotinisé nicotiniser ver m s 0.00 0.14 0.00 0.07 par:pas; +nicotinisés nicotiniser ver m p 0.00 0.14 0.00 0.07 par:pas; +nictation nictation nom f s 0.00 0.07 0.00 0.07 +nictitant nictitant adj m s 0.01 0.07 0.00 0.07 +nictitante nictitant adj f s 0.01 0.07 0.01 0.00 +nid_de_poule nid_de_poule nom m s 0.20 0.20 0.14 0.07 +nid nid nom m s 12.25 18.85 11.07 14.59 +nidification nidification nom f s 0.04 0.07 0.04 0.07 +nidificatrices nidificateur nom f p 0.00 0.07 0.00 0.07 +nidifie nidifier ver 0.01 0.00 0.01 0.00 ind:pre:3s; +nid_de_poule nid_de_poule nom m p 0.20 0.20 0.06 0.14 +nids nid nom m p 12.25 18.85 1.19 4.26 +nie nier ver 24.86 23.58 7.37 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +nielle nielle nom s 0.00 0.14 0.00 0.14 +niellé nieller ver m s 0.00 0.07 0.00 0.07 par:pas; +nient nier ver 24.86 23.58 0.90 0.95 ind:pre:3p; +nier nier ver 24.86 23.58 7.76 10.68 inf; +niera nier ver 24.86 23.58 0.18 0.00 ind:fut:3s; +nierai nier ver 24.86 23.58 0.62 0.20 ind:fut:1s; +nierais nier ver 24.86 23.58 0.12 0.14 cnd:pre:1s; +nierait nier ver 24.86 23.58 0.19 0.07 cnd:pre:3s; +nieras nier ver 24.86 23.58 0.14 0.00 ind:fut:2s; +nierez nier ver 24.86 23.58 0.04 0.20 ind:fut:2p; +nieriez nier ver 24.86 23.58 0.01 0.00 cnd:pre:2p; +nierons nier ver 24.86 23.58 0.04 0.00 ind:fut:1p; +nieront nier ver 24.86 23.58 0.06 0.07 ind:fut:3p; +nies nier ver 24.86 23.58 2.96 0.20 ind:pre:2s; +niet niet ono 0.33 0.27 0.33 0.27 +nietzschéen nietzschéen nom m s 0.59 0.07 0.59 0.07 +nietzschéenne nietzschéen adj f s 0.79 0.74 0.41 0.20 +nietzschéennes nietzschéen adj f p 0.79 0.74 0.20 0.14 +niez nier ver 24.86 23.58 1.87 0.61 imp:pre:2p;ind:pre:2p; +nigaud nigaud nom m s 1.59 1.42 1.27 0.95 +nigaude nigaud adj f s 0.62 1.15 0.05 0.14 +nigaudement nigaudement adv 0.00 0.07 0.00 0.07 +nigauderie nigauderie nom f s 0.00 0.07 0.00 0.07 +nigauds nigaud nom m p 1.59 1.42 0.28 0.41 +nigelle nigel nom f s 0.01 0.00 0.01 0.00 +night_club night_club nom m s 1.31 0.88 1.16 0.61 +night_club night_club nom m p 1.31 0.88 0.10 0.27 +night_club night_club nom m s 1.31 0.88 0.05 0.00 +niguedouille niguedouille nom s 0.00 0.07 0.00 0.07 +nigérian nigérian adj m s 0.13 0.00 0.08 0.00 +nigérian nigérian nom m s 0.22 0.00 0.08 0.00 +nigériane nigérian adj f s 0.13 0.00 0.01 0.00 +nigérians nigérian nom m p 0.22 0.00 0.14 0.00 +nigérien nigérien adj m s 0.17 0.00 0.17 0.00 +nigériens nigérien nom m p 0.04 0.07 0.03 0.07 +nihil_obstat nihil_obstat adv 0.00 0.20 0.00 0.20 +nihilisme nihilisme nom m s 0.11 1.22 0.11 1.22 +nihiliste nihiliste adj s 0.09 0.74 0.09 0.54 +nihilistes nihiliste nom p 0.16 0.41 0.08 0.00 +nikkei nikkei nom m s 0.05 0.00 0.05 0.00 +nil nil nom s 0.05 0.07 0.05 0.07 +nim nim nom m s 1.78 0.07 1.78 0.07 +nimba nimber ver 0.17 2.50 0.00 0.07 ind:pas:3s; +nimbaient nimber ver 0.17 2.50 0.00 0.07 ind:imp:3p; +nimbait nimber ver 0.17 2.50 0.01 0.74 ind:imp:3s; +nimbant nimber ver 0.17 2.50 0.00 0.14 par:pre; +nimbe nimbe nom m s 0.01 0.88 0.01 0.81 +nimbent nimber ver 0.17 2.50 0.00 0.07 ind:pre:3p; +nimber nimber ver 0.17 2.50 0.00 0.14 inf; +nimbes nimbe nom m p 0.01 0.88 0.00 0.07 +nimbo_stratus nimbo_stratus nom m 0.14 0.00 0.14 0.00 +nimbo nimbo adv 0.00 0.07 0.00 0.07 +nimbostratus nimbostratus nom m 0.00 0.07 0.00 0.07 +nimbé nimber ver m s 0.17 2.50 0.14 0.47 par:pas; +nimbée nimber ver f s 0.17 2.50 0.02 0.61 par:pas; +nimbées nimber ver f p 0.17 2.50 0.00 0.14 par:pas; +nimbés nimber ver m p 0.17 2.50 0.00 0.07 par:pas; +nimbus nimbus nom m 0.09 0.20 0.09 0.20 +ninas ninas nom m 0.01 0.95 0.01 0.95 +niobium niobium nom m s 0.01 0.00 0.01 0.00 +niolo niolo nom m s 0.00 0.14 0.00 0.14 +nions nier ver 24.86 23.58 0.16 0.07 imp:pre:1p;ind:pre:1p; +nioulouque nioulouque adj s 0.00 0.07 0.00 0.07 +nippe nippe nom f s 0.14 2.43 0.01 0.07 +nipper nipper ver 0.38 0.88 0.04 0.14 inf; +nippes nippe nom f p 0.14 2.43 0.13 2.36 +nippez nipper ver 0.38 0.88 0.10 0.07 imp:pre:2p; +nippo nippo adv 0.03 0.00 0.03 0.00 +nippon nippon adj m s 0.34 1.22 0.33 0.41 +nippone nippon adj f s 0.34 1.22 0.01 0.14 +nippones nippon adj f p 0.34 1.22 0.00 0.34 +nipponne nipponne adj f s 0.14 0.00 0.14 0.00 +nippons nippon nom m p 0.06 0.41 0.04 0.41 +nippé nipper ver m s 0.38 0.88 0.02 0.07 par:pas; +nippée nipper ver f s 0.38 0.88 0.02 0.34 par:pas; +nippées nipper ver f p 0.38 0.88 0.10 0.20 par:pas; +niquait niquer ver 7.57 1.35 0.06 0.00 ind:imp:3s; +nique nique nom f s 1.56 0.61 1.56 0.61 +niquedouille niquedouille nom s 0.03 0.20 0.03 0.20 +niquent niquer ver 7.57 1.35 0.23 0.00 ind:pre:3p; +niquer niquer ver 7.57 1.35 3.27 0.74 inf; +niquera niquer ver 7.57 1.35 0.03 0.00 ind:fut:3s; +niquerait niquer ver 7.57 1.35 0.01 0.00 cnd:pre:3s; +niques niquer ver 7.57 1.35 0.11 0.00 ind:pre:2s; +niquez niquer ver 7.57 1.35 0.08 0.00 imp:pre:2p;ind:pre:2p; +niquons niquer ver 7.57 1.35 0.01 0.00 imp:pre:1p; +niqué niquer ver m s 7.57 1.35 2.33 0.20 par:pas; +niquée niquer ver f s 7.57 1.35 0.11 0.00 par:pas; +niqués niquer ver m p 7.57 1.35 0.14 0.20 par:pas; +nirvana nirvana nom m s 0.81 0.74 0.81 0.68 +nirvanas nirvana nom m p 0.81 0.74 0.00 0.07 +nirvâna nirvâna nom m s 0.01 2.09 0.01 2.09 +nisan nisan nom m s 0.00 0.20 0.00 0.20 +nièce nièce nom f s 10.10 0.00 9.28 0.00 +nièces nièce nom f p 10.10 0.00 0.82 0.00 +nième nième nom m s 0.03 0.07 0.03 0.07 +niçois niçois adj m 0.08 1.28 0.00 0.88 +niçoise niçois adj f s 0.08 1.28 0.08 0.34 +niçoises niçois nom f p 0.03 0.47 0.00 0.20 +nière nière nom m s 0.14 0.07 0.14 0.07 +nièrent nier ver 24.86 23.58 0.01 0.07 ind:pas:3p; +nitratant nitrater ver 0.01 0.00 0.01 0.00 par:pre; +nitrate nitrate nom m s 0.64 0.54 0.38 0.41 +nitrates nitrate nom m p 0.64 0.54 0.27 0.14 +nitre nitre nom m s 0.07 0.00 0.07 0.00 +nitreuse nitreux adj f s 0.17 0.00 0.01 0.00 +nitreux nitreux adj m s 0.17 0.00 0.16 0.00 +nitrique nitrique adj s 0.25 0.14 0.25 0.14 +nitrite nitrite nom m s 0.02 0.14 0.02 0.14 +nitroglycérine nitroglycérine nom f s 0.79 0.20 0.79 0.20 +nitrogène nitrogène nom m s 0.17 0.00 0.17 0.00 +nitré nitré adj m s 0.00 0.07 0.00 0.07 +nié nier ver m s 24.86 23.58 1.53 0.88 par:pas; +niébé niébé nom m s 0.02 0.07 0.02 0.07 +niée nier ver f s 24.86 23.58 0.14 0.27 par:pas; +niés nier ver m p 24.86 23.58 0.01 0.07 par:pas; +nivôse nivôse nom m s 0.00 0.41 0.00 0.41 +nivaquine nivaquine nom f s 0.00 0.14 0.00 0.14 +niveau niveau nom m s 50.70 32.91 45.46 30.74 +niveaux niveau nom m p 50.70 32.91 5.24 2.16 +nivelait niveler ver 0.14 1.96 0.00 0.07 ind:imp:3s; +nivelant niveler ver 0.14 1.96 0.04 0.07 par:pre; +niveler niveler ver 0.14 1.96 0.09 0.27 inf; +niveleur niveleur nom m s 0.01 0.27 0.01 0.00 +niveleurs niveleur nom m p 0.01 0.27 0.00 0.20 +niveleuse niveleur nom f s 0.01 0.27 0.00 0.07 +nivelle niveler ver 0.14 1.96 0.00 0.07 ind:pre:1s; +nivellement nivellement nom m s 0.00 0.20 0.00 0.20 +nivellent niveler ver 0.14 1.96 0.00 0.07 ind:pre:3p; +nivelât niveler ver 0.14 1.96 0.00 0.07 sub:imp:3s; +nivelé niveler ver m s 0.14 1.96 0.02 0.68 par:pas; +nivelée niveler ver f s 0.14 1.96 0.00 0.27 par:pas; +nivelées niveler ver f p 0.14 1.96 0.00 0.07 par:pas; +nivelés niveler ver m p 0.14 1.96 0.00 0.34 par:pas; +nivernais nivernais adj m 0.00 0.07 0.00 0.07 +nivernaise nivernaise adj f s 0.00 0.20 0.00 0.20 +nixe nixe nom f s 0.01 0.07 0.01 0.07 +no_man_s_land no_man_s_land nom m s 0.95 1.49 0.95 1.49 +nobiliaire nobiliaire adj s 0.10 0.95 0.10 0.47 +nobiliaires nobiliaire adj p 0.10 0.95 0.00 0.47 +nobilitas nobilitas nom f 0.10 0.00 0.10 0.00 +noblaillon noblaillon nom m s 0.02 0.00 0.02 0.00 +noble noble adj s 28.70 31.62 23.73 20.00 +noblement noblement adv 0.58 2.70 0.58 2.70 +nobles noble adj p 28.70 31.62 4.97 11.62 +noblesse noblesse nom f s 6.09 12.64 6.09 12.43 +noblesses noblesse nom f p 6.09 12.64 0.00 0.20 +nobliau nobliau nom m s 0.01 0.14 0.01 0.00 +nobliaux nobliau nom m p 0.01 0.14 0.00 0.14 +noce noce nom f s 17.05 21.01 4.43 6.55 +nocer nocer ver 0.01 0.00 0.01 0.00 inf; +noces noce nom f p 17.05 21.01 12.62 14.46 +noceur noceur nom m s 0.17 0.88 0.15 0.47 +noceurs noceur nom m p 0.17 0.88 0.02 0.20 +noceuse noceur nom f s 0.17 0.88 0.00 0.14 +noceuses noceur nom f p 0.17 0.88 0.00 0.07 +nocher nocher nom m s 0.02 0.14 0.02 0.14 +nochère nochère nom f s 0.00 0.14 0.00 0.14 +nocif nocif adj m s 1.53 1.69 0.56 0.74 +nocifs nocif adj m p 1.53 1.69 0.38 0.34 +nocive nocif adj f s 1.53 1.69 0.31 0.41 +nocives nocif adj f p 1.53 1.69 0.27 0.20 +nocivité nocivité nom f s 0.16 0.20 0.16 0.20 +noctambule noctambule adj m s 0.51 0.61 0.38 0.27 +noctambules noctambule adj p 0.51 0.61 0.14 0.34 +noctambulisme noctambulisme nom m s 0.00 0.14 0.00 0.14 +nocturnal nocturnal nom m s 0.01 0.07 0.01 0.07 +nocturne nocturne adj s 5.71 37.16 4.09 25.41 +nocturnes nocturne adj p 5.71 37.16 1.62 11.76 +nodal nodal adj m s 0.01 0.41 0.01 0.34 +nodales nodal adj f p 0.01 0.41 0.00 0.07 +nodosités nodosité nom f p 0.01 0.27 0.01 0.27 +nodule nodule nom m s 0.43 0.00 0.12 0.00 +nodules nodule nom m p 0.43 0.00 0.31 0.00 +noduleux noduleux adj m p 0.00 0.14 0.00 0.14 +nodus nodus nom m 0.00 0.07 0.00 0.07 +noeud noeud nom m s 11.12 24.26 7.64 14.46 +noeuds noeud nom m p 11.12 24.26 3.48 9.80 +noie noyer ver 27.29 38.58 4.53 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +noient noyer ver 27.29 38.58 0.48 1.08 ind:pre:3p; +noiera noyer ver 27.29 38.58 0.14 0.07 ind:fut:3s; +noierai noyer ver 27.29 38.58 0.17 0.07 ind:fut:1s; +noieraient noyer ver 27.29 38.58 0.00 0.07 cnd:pre:3p; +noierait noyer ver 27.29 38.58 0.56 0.47 cnd:pre:3s; +noieras noyer ver 27.29 38.58 0.04 0.00 ind:fut:2s; +noierez noyer ver 27.29 38.58 0.10 0.07 ind:fut:2p; +noieront noyer ver 27.29 38.58 0.14 0.00 ind:fut:3p; +noies noyer ver 27.29 38.58 0.71 0.14 ind:pre:2s; +noir noir adj m s 144.81 482.23 72.20 184.86 +noiraud noiraud adj m s 0.70 4.80 0.69 1.28 +noiraude noiraud adj f s 0.70 4.80 0.01 3.31 +noiraudes noiraud adj f p 0.70 4.80 0.00 0.14 +noirauds noiraud nom m p 0.37 0.81 0.01 0.00 +noirceur noirceur nom f s 0.63 3.24 0.63 2.97 +noirceurs noirceur nom f p 0.63 3.24 0.00 0.27 +noirci noirci adj m s 0.66 4.93 0.47 1.35 +noircie noircir ver f s 2.14 10.41 0.15 1.01 par:pas; +noircies noirci adj f p 0.66 4.93 0.04 1.69 +noircir noircir ver 2.14 10.41 0.68 2.16 inf; +noircirai noircir ver 2.14 10.41 0.01 0.00 ind:fut:1s; +noircirais noircir ver 2.14 10.41 0.00 0.07 cnd:pre:1s; +noircirait noircir ver 2.14 10.41 0.00 0.07 cnd:pre:3s; +noircirent noircir ver 2.14 10.41 0.00 0.20 ind:pas:3p; +noircis noircir ver m p 2.14 10.41 0.35 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +noircissaient noircir ver 2.14 10.41 0.14 0.20 ind:imp:3p; +noircissais noircir ver 2.14 10.41 0.00 0.07 ind:imp:1s; +noircissait noircir ver 2.14 10.41 0.01 1.28 ind:imp:3s; +noircissant noircir ver 2.14 10.41 0.00 0.34 par:pre; +noircisse noircir ver 2.14 10.41 0.00 0.07 sub:pre:1s; +noircissent noircir ver 2.14 10.41 0.11 0.20 ind:pre:3p; +noircissez noircir ver 2.14 10.41 0.05 0.07 imp:pre:2p;ind:pre:2p; +noircit noircir ver 2.14 10.41 0.25 0.68 ind:pre:3s;ind:pas:3s; +noire noir adj f s 144.81 482.23 41.57 140.88 +noires noir adj f p 144.81 482.23 9.39 62.64 +noirâtre noirâtre adj s 0.02 6.08 0.02 4.12 +noirâtres noirâtre adj p 0.02 6.08 0.00 1.96 +noirs noir adj m p 144.81 482.23 21.65 93.85 +noise noise nom f s 1.14 0.68 0.35 0.27 +noises noise nom f p 1.14 0.68 0.79 0.41 +noisetier noisetier nom m s 1.12 3.24 1.10 1.62 +noisetiers noisetier nom m p 1.12 3.24 0.03 1.62 +noisette noisette nom f s 2.90 3.99 0.57 1.69 +noisettes noisette nom f p 2.90 3.99 2.33 2.30 +noix noix nom f 12.83 12.23 12.83 12.23 +nok nok adj f s 0.03 0.00 0.03 0.00 +nolis nolis nom m 0.00 0.07 0.00 0.07 +nom nom nom m s 570.67 395.00 528.17 326.89 +nomade nomade nom s 1.32 4.86 0.60 1.62 +nomades nomade nom p 1.32 4.86 0.72 3.24 +nomadisait nomadiser ver 0.00 0.20 0.00 0.07 ind:imp:3s; +nomadisant nomadiser ver 0.00 0.20 0.00 0.07 par:pre; +nomadisent nomadiser ver 0.00 0.20 0.00 0.07 ind:pre:3p; +nomadisme nomadisme nom m s 0.01 0.68 0.01 0.68 +nombre nombre nom m s 40.16 78.38 36.57 76.28 +nombres nombre nom m p 40.16 78.38 3.59 2.09 +nombreuse nombreux adj f s 44.64 60.27 0.74 5.34 +nombreuses nombreux adj f p 44.64 60.27 14.01 17.91 +nombreux nombreux adj m 44.64 60.27 29.89 37.03 +nombril nombril nom m s 4.34 5.54 4.26 5.20 +nombrilisme nombrilisme nom m s 0.03 0.00 0.03 0.00 +nombriliste nombriliste nom s 0.14 0.00 0.14 0.00 +nombrils nombril nom m p 4.34 5.54 0.08 0.34 +nome nome nom m s 0.24 0.07 0.24 0.07 +nomenclature nomenclature nom f s 0.03 1.01 0.03 0.81 +nomenclatures nomenclature nom f p 0.03 1.01 0.00 0.20 +nomenklatura nomenklatura nom f s 0.00 0.14 0.00 0.14 +nominal nominal adj m s 0.39 0.34 0.09 0.14 +nominale nominal adj f s 0.39 0.34 0.10 0.07 +nominalement nominalement adv 0.01 0.00 0.01 0.00 +nominales nominal adj f p 0.39 0.34 0.02 0.14 +nominaliste nominaliste adj m s 0.00 0.07 0.00 0.07 +nominatif nominatif adj m s 0.09 0.47 0.05 0.07 +nominatifs nominatif adj m p 0.09 0.47 0.00 0.20 +nomination nomination nom f s 3.50 3.11 3.10 2.77 +nominations nomination nom f p 3.50 3.11 0.40 0.34 +nominative nominatif adj f s 0.09 0.47 0.03 0.07 +nominatives nominatif adj f p 0.09 0.47 0.01 0.14 +nominaux nominal adj m p 0.39 0.34 0.17 0.00 +nomine nominer ver 1.42 0.34 0.25 0.34 ind:pre:1s;ind:pre:3s; +nominer nominer ver 1.42 0.34 0.04 0.00 inf; +nominé nominer ver m s 1.42 0.34 0.56 0.00 par:pas; +nominée nominer ver f s 1.42 0.34 0.21 0.00 par:pas; +nominées nominer ver f p 1.42 0.34 0.08 0.00 par:pas; +nominés nominer ver m p 1.42 0.34 0.27 0.00 par:pas; +nomma nommer ver 45.60 62.30 0.30 1.82 ind:pas:3s; +nommai nommer ver 45.60 62.30 0.00 0.68 ind:pas:1s; +nommaient nommer ver 45.60 62.30 0.02 1.22 ind:imp:3p; +nommais nommer ver 45.60 62.30 0.02 0.27 ind:imp:1s; +nommait nommer ver 45.60 62.30 0.51 6.82 ind:imp:3s; +nommant nommer ver 45.60 62.30 0.57 0.95 par:pre; +nomme nommer ver 45.60 62.30 9.41 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +nomment nommer ver 45.60 62.30 0.69 1.22 ind:pre:3p; +nommer nommer ver 45.60 62.30 7.41 10.47 inf; +nommera nommer ver 45.60 62.30 0.64 0.27 ind:fut:3s; +nommerai nommer ver 45.60 62.30 1.10 0.27 ind:fut:1s; +nommerais nommer ver 45.60 62.30 0.21 0.00 cnd:pre:1s;cnd:pre:2s; +nommerait nommer ver 45.60 62.30 0.04 0.14 cnd:pre:3s; +nommeras nommer ver 45.60 62.30 0.02 0.00 ind:fut:2s; +nommeriez nommer ver 45.60 62.30 0.02 0.00 cnd:pre:2p; +nommerons nommer ver 45.60 62.30 0.05 0.00 ind:fut:1p; +nommeront nommer ver 45.60 62.30 0.05 0.07 ind:fut:3p; +nommes nommer ver 45.60 62.30 0.61 0.07 ind:pre:2s;sub:pre:2s; +nommez nommer ver 45.60 62.30 1.14 0.61 imp:pre:2p;ind:pre:2p; +nommiez nommer ver 45.60 62.30 0.17 0.00 ind:imp:2p; +nommions nommer ver 45.60 62.30 0.01 0.27 ind:imp:1p; +nommons nommer ver 45.60 62.30 0.34 0.34 imp:pre:1p;ind:pre:1p; +nommât nommer ver 45.60 62.30 0.00 0.14 sub:imp:3s; +nommèrent nommer ver 45.60 62.30 0.15 0.14 ind:pas:3p; +nommé nommer ver m s 45.60 62.30 18.24 20.41 par:pas; +nommée nommer ver f s 45.60 62.30 3.01 3.51 par:pas; +nommées nommer ver f p 45.60 62.30 0.20 0.81 par:pas; +nommément nommément adv 0.10 0.47 0.10 0.47 +nommés nommer ver m p 45.60 62.30 0.68 2.30 par:pas; +noms nom nom m p 570.67 395.00 42.50 68.11 +non_agression non_agression nom f s 0.07 0.61 0.07 0.61 +non_alignement non_alignement nom m s 0.04 0.00 0.04 0.00 +non_aligné non_aligné adj m p 0.09 0.00 0.09 0.00 +non_amour non_amour nom m s 0.10 0.00 0.10 0.00 +non_appartenance non_appartenance nom f s 0.01 0.07 0.01 0.07 +non_assistance non_assistance nom f s 0.10 0.07 0.10 0.07 +non_blanc non_blanc nom m s 0.04 0.07 0.00 0.07 +non_blanc non_blanc nom m p 0.04 0.07 0.04 0.00 +non_combattant non_combattant adj m s 0.15 0.00 0.01 0.00 +non_combattant non_combattant nom m s 0.03 0.00 0.01 0.00 +non_combattant non_combattant adj m p 0.15 0.00 0.14 0.00 +non_comparution non_comparution nom f s 0.01 0.00 0.01 0.00 +non_concurrence non_concurrence nom f s 0.01 0.00 0.01 0.00 +non_conformisme non_conformisme nom m s 0.00 0.20 0.00 0.20 +non_conformiste non_conformiste adj s 0.14 0.00 0.10 0.00 +non_conformiste non_conformiste adj p 0.14 0.00 0.04 0.00 +non_conformité non_conformité nom f s 0.01 0.00 0.01 0.00 +non_consommation non_consommation nom f s 0.03 0.00 0.03 0.00 +non_croyance non_croyance nom f s 0.10 0.00 0.10 0.00 +non_croyant non_croyant nom m s 0.62 0.07 0.21 0.07 +non_croyant non_croyant nom m p 0.62 0.07 0.41 0.00 +non_culpabilité non_culpabilité nom f s 0.01 0.00 0.01 0.00 +non_dit non_dit nom m s 0.27 0.88 0.09 0.74 +non_dit non_dit nom m p 0.27 0.88 0.18 0.14 +non_droit non_droit nom m s 0.22 0.00 0.22 0.00 +non_existence non_existence nom f s 0.07 0.07 0.07 0.07 +non_ferreux non_ferreux nom m 0.01 0.00 0.01 0.00 +non_fumeur non_fumeur adj m s 0.68 0.00 0.68 0.00 +non_fumeurs non_fumeurs adj 0.44 0.07 0.44 0.07 +non_initié non_initié nom m s 0.22 0.34 0.03 0.14 +non_initié non_initié nom m p 0.22 0.34 0.19 0.20 +non_intervention non_intervention nom f s 0.21 0.14 0.21 0.14 +non_lieu non_lieu nom m s 1.08 1.42 1.08 1.42 +non_lieux non_lieux nom m p 0.01 0.20 0.01 0.20 +non_malade non_malade nom p 0.00 0.07 0.00 0.07 +non_paiement non_paiement nom m s 0.10 0.07 0.10 0.07 +non_participation non_participation nom f s 0.01 0.07 0.01 0.07 +non_pesanteur non_pesanteur nom f s 0.00 0.07 0.00 0.07 +non_prolifération non_prolifération nom f s 0.09 0.00 0.09 0.00 +non_présence non_présence nom f s 0.01 0.14 0.01 0.14 +non_recevoir non_recevoir nom m s 0.06 0.20 0.06 0.20 +non_représentation non_représentation nom f s 0.01 0.00 0.01 0.00 +non_respect non_respect nom m s 0.16 0.00 0.16 0.00 +non_retour non_retour nom m s 0.34 0.41 0.34 0.41 +non_résistance non_résistance nom f s 0.00 0.14 0.00 0.14 +non_savoir non_savoir nom m s 0.04 0.07 0.04 0.07 +non_sens non_sens nom m 0.83 0.95 0.83 0.95 +non_spécialiste non_spécialiste nom s 0.02 0.07 0.01 0.00 +non_spécialiste non_spécialiste nom p 0.02 0.07 0.01 0.07 +non_stop non_stop adj 0.89 0.14 0.89 0.14 +non_séparation non_séparation nom f s 0.00 0.07 0.00 0.07 +non_utilisation non_utilisation nom f s 0.01 0.00 0.01 0.00 +non_être non_être nom m 0.00 0.95 0.00 0.95 +non_événement non_événement nom m s 0.02 0.00 0.02 0.00 +non_vie non_vie nom f s 0.04 0.00 0.04 0.00 +non_violence non_violence nom f s 0.63 0.07 0.63 0.07 +non_violent non_violent adj m s 0.31 0.07 0.19 0.07 +non_violent non_violent adj f s 0.31 0.07 0.07 0.00 +non_violent non_violent adj m p 0.31 0.07 0.05 0.00 +non_vouloir non_vouloir nom m s 0.00 0.07 0.00 0.07 +non_voyant non_voyant nom m s 0.32 0.27 0.28 0.20 +non_voyant non_voyant nom f s 0.32 0.27 0.02 0.00 +non_voyant non_voyant nom m p 0.32 0.27 0.03 0.07 +non_troppo non_troppo adv 0.00 0.07 0.00 0.07 +non non pro_per s 0.01 0.00 0.01 0.00 +nonagénaire nonagénaire adj s 0.01 0.54 0.01 0.41 +nonagénaires nonagénaire nom p 0.03 0.14 0.01 0.00 +nonante_huit nonante_huit adj_num 0.00 0.07 0.00 0.07 +nonante nonante adj_num 0.27 0.27 0.27 0.27 +nonce nonce nom m s 0.01 0.68 0.01 0.68 +nonchalamment nonchalamment adv 0.04 2.70 0.04 2.70 +nonchalance nonchalance nom f s 0.47 5.00 0.47 5.00 +nonchalant nonchalant adj m s 0.60 7.64 0.21 3.31 +nonchalante nonchalant adj f s 0.60 7.64 0.27 2.77 +nonchalantes nonchalant adj f p 0.60 7.64 0.11 0.68 +nonchalants nonchalant adj m p 0.60 7.64 0.01 0.88 +nonciature nonciature nom f s 0.14 0.14 0.14 0.14 +none none nom f s 0.67 0.41 0.48 0.07 +nones none nom f p 0.67 0.41 0.19 0.34 +nonette nonette nom s 0.00 0.27 0.00 0.20 +nonettes nonette nom p 0.00 0.27 0.00 0.07 +nonidi nonidi nom m s 0.00 0.07 0.00 0.07 +nonnain nonnain nom m s 0.00 0.61 0.00 0.61 +nonne nonne nom f s 8.46 3.72 5.46 1.69 +nonnes nonne nom f p 8.46 3.72 3.01 2.03 +nonnette nonnette nom f s 0.14 0.41 0.04 0.34 +nonnettes nonnette nom f p 0.14 0.41 0.10 0.07 +nonobstant nonobstant pre 0.16 2.97 0.16 2.97 +nonpareille nonpareil adj f s 0.01 0.14 0.01 0.14 +nonsense nonsense nom m s 0.04 0.07 0.04 0.07 +nope nope nom f s 0.50 0.00 0.50 0.00 +noradrénaline noradrénaline nom f s 0.05 0.00 0.05 0.00 +nord_africain nord_africain adj m s 0.05 1.96 0.02 0.20 +nord_africain nord_africain adj f s 0.05 1.96 0.01 0.95 +nord_africain nord_africain adj f p 0.05 1.96 0.01 0.07 +nord_africain nord_africain adj m p 0.05 1.96 0.01 0.74 +nord_américain nord_américain adj m s 0.32 0.20 0.24 0.07 +nord_américain nord_américain adj f s 0.32 0.20 0.06 0.14 +nord_américain nord_américain nom m p 0.13 0.00 0.03 0.00 +nord_coréen nord_coréen adj m s 0.36 0.00 0.24 0.00 +nord_coréen nord_coréen adj f s 0.36 0.00 0.06 0.00 +nord_coréen nord_coréen adj f p 0.36 0.00 0.02 0.00 +nord_coréen nord_coréen nom m p 0.23 0.07 0.18 0.07 +nord_est nord_est nom m 1.40 2.84 1.40 2.84 +nord_nord_est nord_nord_est nom m s 0.03 0.14 0.03 0.14 +nord_ouest nord_ouest nom m 0.95 1.22 0.95 1.22 +nord_sud nord_sud adj 0.15 0.88 0.15 0.88 +nord_vietnamien nord_vietnamien adj m s 0.11 0.00 0.04 0.00 +nord_vietnamien nord_vietnamien adj f s 0.11 0.00 0.04 0.00 +nord_vietnamien nord_vietnamien nom m p 0.12 0.00 0.11 0.00 +nord nord nom m 50.38 72.30 50.38 72.30 +nordet nordet nom m s 0.00 0.07 0.00 0.07 +nordicité nordicité nom f s 0.01 0.00 0.01 0.00 +nordique nordique adj s 1.43 1.69 1.15 1.22 +nordiques nordique nom p 0.71 0.47 0.31 0.07 +nordiste nordiste adj s 0.47 0.14 0.22 0.14 +nordistes nordiste nom p 0.78 0.07 0.66 0.07 +noria noria nom f s 0.01 0.61 0.01 0.54 +norias noria nom f p 0.01 0.61 0.00 0.07 +normal normal adj m s 127.15 62.77 90.98 42.97 +normale normal adj f s 127.15 62.77 23.74 13.45 +normalement normalement adv 20.37 12.43 20.37 12.43 +normales normal adj f p 127.15 62.77 4.08 2.30 +normalien normalien nom m s 0.00 2.23 0.00 1.35 +normalienne normalien adj f s 0.00 0.34 0.00 0.14 +normaliennes normalien nom f p 0.00 2.23 0.00 0.07 +normaliens normalien nom m p 0.00 2.23 0.00 0.81 +normalisation normalisation nom f s 0.13 0.41 0.13 0.41 +normalise normaliser ver 0.20 0.54 0.04 0.07 ind:pre:3s; +normalisent normaliser ver 0.20 0.54 0.00 0.07 ind:pre:3p; +normaliser normaliser ver 0.20 0.54 0.12 0.27 inf; +normalisons normaliser ver 0.20 0.54 0.00 0.07 ind:pre:1p; +normalisée normaliser ver f s 0.20 0.54 0.03 0.00 par:pas; +normalisées normaliser ver f p 0.20 0.54 0.00 0.07 par:pas; +normalisés normaliser ver m p 0.20 0.54 0.01 0.00 par:pas; +normalité normalité nom f s 1.27 0.74 1.27 0.74 +normand normand adj m s 0.79 6.42 0.45 2.03 +normande normand adj f s 0.79 6.42 0.27 2.97 +normandes normand adj f p 0.79 6.42 0.03 0.74 +normands normand adj m p 0.79 6.42 0.05 0.68 +normatif normatif adj m s 0.01 0.27 0.01 0.14 +normative normatif adj f s 0.01 0.27 0.00 0.14 +normaux normal adj m p 127.15 62.77 8.35 4.05 +norme norme nom f s 5.00 3.78 1.58 1.15 +normes norme nom f p 5.00 3.78 3.42 2.64 +noroît noroît nom m s 0.00 0.34 0.00 0.34 +norroise norrois adj f s 0.01 0.00 0.01 0.00 +norvégien norvégien adj m s 2.96 1.15 1.16 0.54 +norvégienne norvégien adj f s 2.96 1.15 1.00 0.14 +norvégiennes norvégien adj f p 2.96 1.15 0.47 0.14 +norvégiens norvégien adj m p 2.96 1.15 0.34 0.34 +nos nos adj_pos p 524.63 579.19 524.63 579.19 +nosocomiale nosocomial adj f s 0.01 0.00 0.01 0.00 +nostalgie nostalgie nom f s 4.45 20.07 4.44 18.04 +nostalgies nostalgie nom f p 4.45 20.07 0.01 2.03 +nostalgique nostalgique adj s 1.31 5.27 1.11 3.78 +nostalgiquement nostalgiquement adv 0.00 0.20 0.00 0.20 +nostalgiques nostalgique adj p 1.31 5.27 0.20 1.49 +not not nom 0.56 0.07 0.56 0.07 +nota_bene nota_bene adv 0.01 0.07 0.01 0.07 +nota noter ver 31.24 44.53 0.02 4.12 ind:pas:3s; +notabilité notabilité nom f s 0.00 0.74 0.00 0.07 +notabilités notabilité nom f p 0.00 0.74 0.00 0.68 +notable notable adj s 0.69 5.00 0.49 3.65 +notablement notablement adv 0.04 0.74 0.04 0.74 +notables notable nom p 0.63 6.55 0.52 5.20 +notai noter ver 31.24 44.53 0.14 1.62 ind:pas:1s; +notaient noter ver 31.24 44.53 0.03 0.27 ind:imp:3p; +notaire notaire nom m s 4.69 17.23 4.63 14.86 +notaires notaire nom m p 4.69 17.23 0.06 2.36 +notais noter ver 31.24 44.53 0.31 1.01 ind:imp:1s; +notait noter ver 31.24 44.53 0.32 2.70 ind:imp:3s; +notamment notamment adv 2.20 20.20 2.20 20.20 +notant noter ver 31.24 44.53 0.16 1.01 par:pre; +notarial notarial adj m s 0.03 0.20 0.01 0.14 +notariale notarial adj f s 0.03 0.20 0.01 0.00 +notariat notariat nom m s 0.00 0.20 0.00 0.20 +notariaux notarial adj m p 0.03 0.20 0.00 0.07 +notarié notarier ver m s 0.09 0.20 0.05 0.07 par:pas; +notariée notarié adj f s 0.07 0.07 0.01 0.00 +notariées notarier ver f p 0.09 0.20 0.01 0.07 par:pas; +notariés notarier ver m p 0.09 0.20 0.03 0.07 par:pas; +notation notation nom f s 0.21 1.08 0.19 0.54 +notations notation nom f p 0.21 1.08 0.03 0.54 +note note nom f s 62.82 77.43 33.42 39.32 +notent noter ver 31.24 44.53 0.28 0.14 ind:pre:3p; +noter noter ver 31.24 44.53 5.44 8.78 inf; +notera noter ver 31.24 44.53 0.03 0.47 ind:fut:3s; +noterai noter ver 31.24 44.53 0.51 0.20 ind:fut:1s; +noterais noter ver 31.24 44.53 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +noterait noter ver 31.24 44.53 0.04 0.27 cnd:pre:3s; +noteras noter ver 31.24 44.53 0.03 0.07 ind:fut:2s; +noterez noter ver 31.24 44.53 0.19 0.34 ind:fut:2p; +noterons noter ver 31.24 44.53 0.01 0.07 ind:fut:1p; +noteront noter ver 31.24 44.53 0.04 0.00 ind:fut:3p; +notes note nom f p 62.82 77.43 29.40 38.11 +notez noter ver 31.24 44.53 5.74 5.14 imp:pre:2p;ind:pre:2p; +notice notice nom f s 1.23 2.57 0.92 1.96 +notices notice nom f p 1.23 2.57 0.31 0.61 +notiez noter ver 31.24 44.53 0.35 0.00 ind:imp:2p; +notifia notifier ver 0.75 3.18 0.00 0.47 ind:pas:3s; +notifiai notifier ver 0.75 3.18 0.00 0.20 ind:pas:1s; +notifiaient notifier ver 0.75 3.18 0.00 0.07 ind:imp:3p; +notifiait notifier ver 0.75 3.18 0.00 0.20 ind:imp:3s; +notifiant notifier ver 0.75 3.18 0.00 0.20 par:pre; +notification notification nom f s 0.37 0.54 0.37 0.54 +notifier notifier ver 0.75 3.18 0.27 0.74 inf; +notifiez notifier ver 0.75 3.18 0.01 0.00 imp:pre:2p; +notifions notifier ver 0.75 3.18 0.02 0.07 ind:pre:1p; +notifié notifier ver m s 0.75 3.18 0.42 0.88 par:pas; +notifiée notifier ver f s 0.75 3.18 0.02 0.27 par:pas; +notifiées notifié adj f p 0.00 0.20 0.00 0.14 +notion notion nom f s 5.79 14.05 4.99 10.61 +notions notion nom f p 5.79 14.05 0.81 3.45 +notoire notoire adj s 1.81 5.81 1.55 4.39 +notoirement notoirement adv 0.17 0.61 0.17 0.61 +notoires notoire adj p 1.81 5.81 0.26 1.42 +notonecte notonecte nom s 0.00 0.14 0.00 0.07 +notonectes notonecte nom p 0.00 0.14 0.00 0.07 +notons noter ver 31.24 44.53 0.18 0.20 imp:pre:1p;ind:pre:1p; +notoriété notoriété nom f s 0.65 2.84 0.65 2.77 +notoriétés notoriété nom f p 0.65 2.84 0.00 0.07 +notre_dame notre_dame nom f 2.69 8.58 2.69 8.58 +notre notre adj_pos s 1022.94 680.68 1022.94 680.68 +notèrent noter ver 31.24 44.53 0.01 0.07 ind:pas:3p; +noté noter ver m s 31.24 44.53 11.04 8.11 par:pas; +notée noter ver f s 31.24 44.53 0.33 0.27 par:pas; +notées noté adj f p 1.40 0.68 0.16 0.00 +notules notule nom f p 0.00 0.20 0.00 0.20 +notés noter ver m p 31.24 44.53 0.56 0.47 par:pas; +noua nouer ver 3.61 32.50 0.01 3.04 ind:pas:3s; +nouage nouage nom m s 0.01 0.00 0.01 0.00 +nouai nouer ver 3.61 32.50 0.00 0.20 ind:pas:1s; +nouaient nouer ver 3.61 32.50 0.02 1.49 ind:imp:3p; +nouais nouer ver 3.61 32.50 0.00 0.27 ind:imp:1s; +nouait nouer ver 3.61 32.50 0.03 3.85 ind:imp:3s; +nouant nouer ver 3.61 32.50 0.01 1.01 par:pre; +nouas nouer ver 3.61 32.50 0.01 0.00 ind:pas:2s; +nouba nouba nom f s 0.98 0.88 0.95 0.74 +noubas nouba nom f p 0.98 0.88 0.04 0.14 +noue nouer ver 3.61 32.50 0.52 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +nouent nouer ver 3.61 32.50 0.16 1.69 ind:pre:3p; +nouer nouer ver 3.61 32.50 1.67 6.01 inf; +nouera nouer ver 3.61 32.50 0.01 0.07 ind:fut:3s; +nouerais nouer ver 3.61 32.50 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +nouerait nouer ver 3.61 32.50 0.00 0.07 cnd:pre:3s; +nouerez nouer ver 3.61 32.50 0.00 0.07 ind:fut:2p; +noueront nouer ver 3.61 32.50 0.00 0.07 ind:fut:3p; +noueuse noueux adj f s 0.22 5.14 0.00 0.74 +noueuses noueux adj f p 0.22 5.14 0.00 1.62 +noueux noueux adj m 0.22 5.14 0.22 2.77 +nouez nouer ver 3.61 32.50 0.18 0.00 imp:pre:2p;ind:pre:2p; +nougat nougat nom m s 0.94 2.16 0.89 1.49 +nougatine nougatine nom f s 0.04 0.47 0.03 0.41 +nougatines nougatine nom f p 0.04 0.47 0.01 0.07 +nougats nougat nom m p 0.94 2.16 0.05 0.68 +nouille nouille nom f s 4.37 4.26 1.02 0.47 +nouilles nouille nom f p 4.37 4.26 3.35 3.78 +noël noël nom m s 2.98 6.69 2.14 5.95 +noëls noël nom m p 2.98 6.69 0.84 0.74 +noumène noumène nom m s 0.00 0.07 0.00 0.07 +nounou nounou nom f s 4.40 5.00 3.87 4.86 +nounours nounours nom m 3.71 2.03 3.71 2.03 +nounous nounou nom f p 4.40 5.00 0.53 0.14 +nourrît nourrir ver 52.53 64.53 0.00 0.07 sub:imp:3s; +nourri nourrir ver m s 52.53 64.53 6.13 7.43 par:pas; +nourrice nourrice nom f s 6.17 8.38 5.88 7.36 +nourrices nourrice nom f p 6.17 8.38 0.29 1.01 +nourricier nourricier adj m s 0.34 2.91 0.15 1.01 +nourriciers nourricier adj m p 0.34 2.91 0.01 0.61 +nourricière nourricier adj f s 0.34 2.91 0.16 1.15 +nourricières nourricier adj f p 0.34 2.91 0.02 0.14 +nourrie nourrir ver f s 52.53 64.53 0.91 2.97 par:pas; +nourries nourrir ver f p 52.53 64.53 0.11 0.95 par:pas; +nourrir nourrir ver 52.53 64.53 22.08 24.05 inf;; +nourrira nourrir ver 52.53 64.53 0.52 0.47 ind:fut:3s; +nourrirai nourrir ver 52.53 64.53 0.36 0.20 ind:fut:1s; +nourriraient nourrir ver 52.53 64.53 0.01 0.20 cnd:pre:3p; +nourrirais nourrir ver 52.53 64.53 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +nourrirait nourrir ver 52.53 64.53 0.35 0.41 cnd:pre:3s; +nourriras nourrir ver 52.53 64.53 0.03 0.00 ind:fut:2s; +nourrirent nourrir ver 52.53 64.53 0.00 0.14 ind:pas:3p; +nourrirez nourrir ver 52.53 64.53 0.06 0.00 ind:fut:2p; +nourririons nourrir ver 52.53 64.53 0.01 0.00 cnd:pre:1p; +nourrirons nourrir ver 52.53 64.53 0.07 0.07 ind:fut:1p; +nourriront nourrir ver 52.53 64.53 0.18 0.20 ind:fut:3p; +nourris nourrir ver m p 52.53 64.53 6.36 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +nourrissage nourrissage nom m s 0.02 0.14 0.02 0.14 +nourrissaient nourrir ver 52.53 64.53 0.26 1.82 ind:imp:3p; +nourrissais nourrir ver 52.53 64.53 0.54 0.95 ind:imp:1s;ind:imp:2s; +nourrissait nourrir ver 52.53 64.53 1.00 7.91 ind:imp:3s; +nourrissant nourrissant adj m s 1.01 1.49 0.68 0.81 +nourrissante nourrissant adj f s 1.01 1.49 0.28 0.47 +nourrissantes nourrissant adj f p 1.01 1.49 0.00 0.07 +nourrissants nourrissant adj m p 1.01 1.49 0.05 0.14 +nourrisse nourrir ver 52.53 64.53 0.52 0.74 sub:pre:1s;sub:pre:3s; +nourrissent nourrir ver 52.53 64.53 2.46 3.31 ind:pre:3p;sub:imp:3p; +nourrisses nourrir ver 52.53 64.53 0.06 0.14 sub:pre:2s; +nourrisseur nourrisseur nom m s 0.00 0.14 0.00 0.14 +nourrissez nourrir ver 52.53 64.53 0.91 0.27 imp:pre:2p;ind:pre:2p; +nourrissiez nourrir ver 52.53 64.53 0.03 0.07 ind:imp:2p; +nourrissions nourrir ver 52.53 64.53 0.02 0.20 ind:imp:1p; +nourrisson nourrisson nom m s 1.62 4.53 1.13 3.04 +nourrissons nourrisson nom m p 1.62 4.53 0.49 1.49 +nourrit nourrir ver 52.53 64.53 8.78 6.55 ind:pre:3s;ind:pas:3s; +nourriture nourriture nom f s 44.86 31.01 44.59 25.74 +nourritures nourriture nom f p 44.86 31.01 0.27 5.27 +nous_même nous_même pro_per p 1.12 0.61 1.12 0.61 +nous_mêmes nous_mêmes pro_per p 11.11 16.28 11.11 16.28 +nous nous pro_per p 4772.12 3867.84 4772.12 3867.84 +nouèrent nouer ver 3.61 32.50 0.00 0.34 ind:pas:3p; +noué nouer ver m s 3.61 32.50 0.47 5.81 par:pas; +nouée noué adj f s 1.01 6.62 0.45 3.24 +nouées nouer ver f p 3.61 32.50 0.17 1.62 par:pas; +noués nouer ver m p 3.61 32.50 0.21 3.04 par:pas; +nouveau_né nouveau_né nom m s 2.72 4.80 2.27 3.18 +nouveau_né nouveau_né nom m p 2.72 4.80 0.14 1.49 +nouveau nouveau adj m s 400.60 358.11 170.28 138.31 +nouveauté nouveauté nom f s 4.23 8.72 3.23 6.55 +nouveautés nouveauté nom f p 4.23 8.72 1.00 2.16 +nouveau_né nouveau_né nom m p 2.72 4.80 0.30 0.14 +nouveaux nouveau adj m p 400.60 358.11 39.17 47.30 +nouvel nouvel adj m s 30.59 22.23 30.59 22.23 +nouvelle nouveau adj f s 400.60 358.11 152.78 130.81 +nouvellement nouvellement adv 0.27 1.62 0.27 1.62 +nouvelles nouveau nom f p 229.97 285.88 82.08 59.46 +nouvelleté nouvelleté nom f s 0.00 0.07 0.00 0.07 +nouvelliste nouvelliste nom s 0.01 0.00 0.01 0.00 +nova nova nom f s 4.14 0.07 4.14 0.07 +novateur novateur adj m s 0.38 0.68 0.27 0.20 +novateurs novateur nom m p 0.30 0.27 0.27 0.00 +novation novation nom f s 0.14 0.00 0.14 0.00 +novatrice novateur adj f s 0.38 0.68 0.05 0.27 +novatrices novateur adj f p 0.38 0.68 0.02 0.07 +nove nover ver 0.02 0.07 0.00 0.07 imp:pre:2s; +novelettes novelette nom f p 0.01 0.00 0.01 0.00 +novembre novembre nom m 8.79 33.04 8.79 33.04 +novice novice nom s 2.01 2.91 1.05 1.35 +novices novice nom p 2.01 2.91 0.96 1.55 +noviciat noviciat nom m s 0.04 0.61 0.04 0.61 +novilleros novillero nom m p 0.00 0.07 0.00 0.07 +novillo novillo nom m s 0.00 0.14 0.00 0.14 +novocaïne novocaïne nom f s 0.13 0.27 0.13 0.27 +novotique novotique nom f s 0.01 0.00 0.01 0.00 +novélisation novélisation nom f s 0.03 0.00 0.03 0.00 +noya noyer ver 27.29 38.58 0.33 0.74 ind:pas:3s; +noyade noyade nom f s 1.96 2.43 1.85 2.03 +noyades noyade nom f p 1.96 2.43 0.12 0.41 +noyaient noyer ver 27.29 38.58 0.06 1.15 ind:imp:3p; +noyais noyer ver 27.29 38.58 0.30 0.20 ind:imp:1s;ind:imp:2s; +noyait noyer ver 27.29 38.58 0.38 3.24 ind:imp:3s; +noyant noyer ver 27.29 38.58 0.18 1.55 par:pre; +noyau noyau nom m s 4.15 9.66 3.71 7.36 +noyauta noyauter ver 0.01 0.88 0.00 0.07 ind:pas:3s; +noyautage noyautage nom m s 0.01 0.20 0.01 0.20 +noyautant noyauter ver 0.01 0.88 0.00 0.07 par:pre; +noyautent noyauter ver 0.01 0.88 0.00 0.07 ind:pre:3p; +noyauter noyauter ver 0.01 0.88 0.00 0.47 inf; +noyauté noyauter ver m s 0.01 0.88 0.00 0.07 par:pas; +noyautée noyauter ver f s 0.01 0.88 0.01 0.07 par:pas; +noyautées noyauter ver f p 0.01 0.88 0.00 0.07 par:pas; +noyaux noyau nom m p 4.15 9.66 0.45 2.30 +noyer noyer ver 27.29 38.58 9.00 11.49 inf; +noyers noyer nom m p 0.55 2.50 0.03 0.88 +noyez noyer ver 27.29 38.58 0.39 0.14 imp:pre:2p;ind:pre:2p; +noyions noyer ver 27.29 38.58 0.00 0.07 ind:imp:1p; +noyons noyer ver 27.29 38.58 0.13 0.14 imp:pre:1p;ind:pre:1p; +noyèrent noyer ver 27.29 38.58 0.00 0.27 ind:pas:3p; +noyé noyer ver m s 27.29 38.58 4.78 6.69 par:pas; +noyée noyer ver f s 27.29 38.58 3.35 3.11 par:pas; +noyées noyé adj f p 1.80 7.36 0.16 0.68 +noyés noyer ver m p 27.29 38.58 1.40 2.91 par:pas; +nèfles nèfle nom f p 0.17 0.54 0.17 0.54 +nègre nègre nom m s 18.93 27.64 11.26 15.54 +nègres nègre nom m p 18.93 27.64 6.12 7.03 +nèpe nèpe nom f s 0.00 0.14 0.00 0.07 +nèpes nèpe nom f p 0.00 0.14 0.00 0.07 +nu_propriétaire nu_propriétaire nom s 0.00 0.07 0.00 0.07 +nu_tête nu_tête adj m s 0.02 1.35 0.02 1.35 +né naître ver m s 116.11 119.32 53.72 36.01 par:pas; +nu nu adj m s 49.87 168.04 17.39 53.85 +nuage nuage nom m s 30.27 76.82 11.81 26.49 +nuages nuage nom m p 30.27 76.82 18.47 50.34 +nuageuse nuageux adj f s 1.24 1.28 0.22 0.14 +nuageuses nuageux adj f p 1.24 1.28 0.29 0.20 +nuageux nuageux adj m 1.24 1.28 0.73 0.95 +nuance nuance nom f s 1.98 20.81 1.09 10.88 +nuancer nuancer ver 0.05 2.64 0.01 0.54 inf; +nuances nuance nom f p 1.98 20.81 0.89 9.93 +nuancier nuancier nom m s 0.04 0.00 0.04 0.00 +nuancé nuancé adj m s 0.20 0.81 0.16 0.41 +nuancée nuancé adj f s 0.20 0.81 0.04 0.07 +nuancées nuancer ver f p 0.05 2.64 0.00 0.07 par:pas; +nuancés nuancé adj m p 0.20 0.81 0.01 0.27 +néandertalien néandertalien adj m s 0.01 0.00 0.01 0.00 +néandertaliens néandertalien nom m p 0.02 0.00 0.02 0.00 +néanderthalien néanderthalien nom m s 0.01 0.07 0.01 0.07 +néanmoins néanmoins con 2.70 16.35 2.70 16.35 +néant néant nom m s 6.62 23.99 6.62 23.92 +nuança nuancer ver 0.05 2.64 0.00 0.27 ind:pas:3s; +nuançaient nuancer ver 0.05 2.64 0.00 0.14 ind:imp:3p; +nuançait nuancer ver 0.05 2.64 0.00 0.34 ind:imp:3s; +nuançant nuancer ver 0.05 2.64 0.00 0.14 par:pre; +nuançât nuancer ver 0.05 2.64 0.00 0.07 sub:imp:3s; +néantisation néantisation nom f s 0.00 0.07 0.00 0.07 +néantisée néantiser ver f s 0.00 0.07 0.00 0.07 par:pas; +néants néant nom m p 6.62 23.99 0.00 0.07 +nuas nuer ver 0.63 1.96 0.00 0.07 ind:pas:2s; +nubien nubien nom m s 0.13 0.07 0.10 0.00 +nubienne nubienne adj f s 0.04 0.00 0.04 0.00 +nubiens nubien nom m p 0.13 0.07 0.03 0.07 +nubile nubile adj s 0.31 0.54 0.25 0.34 +nubiles nubile adj f p 0.31 0.54 0.06 0.20 +nubilité nubilité nom f s 0.00 0.14 0.00 0.14 +nubuck nubuck nom m s 0.16 0.00 0.16 0.00 +nébuleuse nébuleux nom f s 0.71 1.22 0.71 0.61 +nébuleuses nébuleux adj f p 0.45 1.28 0.04 0.27 +nébuleux nébuleux adj m 0.45 1.28 0.38 0.68 +nébuliseur nébuliseur nom m s 0.01 0.00 0.01 0.00 +nébulosité nébulosité nom f s 0.10 0.14 0.10 0.14 +nucal nucal adj m s 0.01 0.00 0.01 0.00 +nécessaire nécessaire adj s 52.00 68.11 44.29 48.45 +nécessairement nécessairement adv 3.31 7.64 3.31 7.64 +nécessaires nécessaire adj p 52.00 68.11 7.71 19.66 +nécessita nécessiter ver 4.16 4.12 0.01 0.20 ind:pas:3s; +nécessitaient nécessiter ver 4.16 4.12 0.01 0.14 ind:imp:3p; +nécessitait nécessiter ver 4.16 4.12 0.54 1.01 ind:imp:3s; +nécessitant nécessiter ver 4.16 4.12 0.28 0.07 par:pre; +nécessite nécessiter ver 4.16 4.12 2.42 1.08 imp:pre:2s;ind:pre:3s; +nécessitent nécessiter ver 4.16 4.12 0.40 0.34 ind:pre:3p; +nécessiter nécessiter ver 4.16 4.12 0.16 0.07 inf; +nécessitera nécessiter ver 4.16 4.12 0.07 0.00 ind:fut:3s; +nécessiterait nécessiter ver 4.16 4.12 0.11 0.14 cnd:pre:3s; +nécessiteuse nécessiteux adj f s 0.21 0.47 0.01 0.00 +nécessiteuses nécessiteux adj f p 0.21 0.47 0.04 0.07 +nécessiteux nécessiteux nom m 0.76 0.54 0.76 0.54 +nécessité nécessité nom f s 5.93 33.78 5.61 28.78 +nécessitée nécessiter ver f s 4.16 4.12 0.00 0.14 par:pas; +nécessitées nécessiter ver f p 4.16 4.12 0.00 0.07 par:pas; +nécessités nécessité nom f p 5.93 33.78 0.32 5.00 +nucléaire nucléaire adj s 15.49 1.82 11.45 1.22 +nucléaires nucléaire adj p 15.49 1.82 4.04 0.61 +nucléique nucléique adj m s 0.02 0.00 0.02 0.00 +nucléoside nucléoside nom m s 0.01 0.00 0.01 0.00 +nucléotides nucléotide nom m p 0.09 0.00 0.09 0.00 +nucléée nucléé adj f s 0.01 0.00 0.01 0.00 +nucléus nucléus nom m 0.10 0.00 0.10 0.00 +nécro nécro nom f s 0.35 0.07 0.25 0.07 +nécrobioses nécrobiose nom f p 0.00 0.07 0.00 0.07 +nécrologe nécrologe nom m s 0.00 0.14 0.00 0.14 +nécrologie nécrologie nom f s 1.11 0.47 1.03 0.47 +nécrologies nécrologie nom f p 1.11 0.47 0.08 0.00 +nécrologique nécrologique adj s 0.53 0.47 0.41 0.34 +nécrologiques nécrologique adj p 0.53 0.47 0.12 0.14 +nécrologue nécrologue nom s 0.03 0.07 0.03 0.07 +nécromancie nécromancie nom f s 0.09 0.07 0.09 0.07 +nécromancien nécromancien nom m s 0.20 0.27 0.19 0.00 +nécromancienne nécromancien nom f s 0.20 0.27 0.01 0.07 +nécromanciens nécromancien nom m p 0.20 0.27 0.00 0.20 +nécromant nécromant nom m s 0.03 0.07 0.03 0.07 +nécrophage nécrophage adj s 0.03 0.07 0.03 0.07 +nécrophagie nécrophagie nom f s 0.00 0.07 0.00 0.07 +nécrophile nécrophile adj m s 0.25 0.00 0.20 0.00 +nécrophiles nécrophile adj f p 0.25 0.00 0.05 0.00 +nécrophilie nécrophilie nom f s 0.08 0.27 0.08 0.27 +nécropole nécropole nom f s 0.20 1.28 0.20 1.01 +nécropoles nécropole nom f p 0.20 1.28 0.00 0.27 +nécropsie nécropsie nom f s 0.05 0.00 0.05 0.00 +nécros nécro nom f p 0.35 0.07 0.11 0.00 +nécrosant nécroser ver 0.20 0.07 0.10 0.00 par:pre; +nécrose nécrose nom f s 0.45 0.27 0.28 0.14 +nécroser nécroser ver 0.20 0.07 0.01 0.00 inf; +nécroses nécrose nom f p 0.45 0.27 0.17 0.14 +nécrosé nécroser ver m s 0.20 0.07 0.07 0.07 par:pas; +nécrosée nécroser ver f s 0.20 0.07 0.01 0.00 par:pas; +nécrotique nécrotique adj m s 0.05 0.00 0.05 0.00 +nudisme nudisme nom m s 0.25 0.07 0.25 0.07 +nudiste nudiste nom s 2.24 0.47 0.81 0.07 +nudistes nudiste nom p 2.24 0.47 1.43 0.41 +nudité nudité nom f s 2.11 13.51 2.10 12.57 +nudités nudité nom f p 2.11 13.51 0.01 0.95 +nue_propriété nue_propriété nom f s 0.00 0.07 0.00 0.07 +née naître ver f s 116.11 119.32 23.63 22.36 par:pas; +nue nu adj f s 49.87 168.04 15.23 43.85 +nuer nuer ver 0.63 1.96 0.01 0.00 inf; +néerlandais néerlandais adj m 1.47 0.88 1.10 0.47 +néerlandaise néerlandais adj f s 1.47 0.88 0.37 0.14 +néerlandaises néerlandais adj f p 1.47 0.88 0.00 0.27 +nées naître ver f p 116.11 119.32 1.37 3.51 par:pas; +nues nu adj f 49.87 168.04 6.46 21.42 +néfaste néfaste adj s 1.65 4.39 1.27 2.70 +néfastes néfaste adj p 1.65 4.39 0.38 1.69 +néflier néflier nom m s 0.00 0.27 0.00 0.20 +néfliers néflier nom m p 0.00 0.27 0.00 0.07 +négateur négateur adj m s 0.00 0.14 0.00 0.14 +négatif négatif adj m s 16.02 8.31 8.33 3.31 +négatifs négatif adj m p 16.02 8.31 2.13 0.68 +négation négation nom f s 1.83 3.65 1.78 3.38 +négationnisme négationnisme nom m s 0.01 0.00 0.01 0.00 +négations négation nom f p 1.83 3.65 0.04 0.27 +négative négatif adj f s 16.02 8.31 3.33 3.65 +négativement négativement adv 0.12 1.08 0.12 1.08 +négatives négatif adj f p 16.02 8.31 2.23 0.68 +négativisme négativisme nom m s 0.01 0.00 0.01 0.00 +négativiste négativiste nom s 0.01 0.07 0.01 0.07 +négativité négativité nom f s 0.20 0.07 0.20 0.07 +néglige négliger ver 9.42 19.86 1.46 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +négligea négliger ver 9.42 19.86 0.01 1.08 ind:pas:3s; +négligeable négligeable adj s 1.16 5.00 0.82 3.92 +négligeables négligeable adj p 1.16 5.00 0.34 1.08 +négligeai négliger ver 9.42 19.86 0.00 0.20 ind:pas:1s; +négligeaient négliger ver 9.42 19.86 0.00 0.27 ind:imp:3p; +négligeais négliger ver 9.42 19.86 0.30 0.20 ind:imp:1s;ind:imp:2s; +négligeait négliger ver 9.42 19.86 0.12 1.62 ind:imp:3s; +négligeant négliger ver 9.42 19.86 0.17 2.16 par:pre; +négligemment négligemment adv 0.04 8.45 0.04 8.45 +négligence négligence nom f s 3.01 5.00 2.96 4.12 +négligences négligence nom f p 3.01 5.00 0.05 0.88 +négligent négligent adj m s 1.70 3.31 0.92 2.09 +négligente négligent adj f s 1.70 3.31 0.36 0.95 +négligents négligent adj m p 1.70 3.31 0.41 0.27 +négligeons négliger ver 9.42 19.86 0.30 0.00 imp:pre:1p;ind:pre:1p; +négligeât négliger ver 9.42 19.86 0.00 0.20 sub:imp:3s; +négliger négliger ver 9.42 19.86 1.62 4.73 inf; +négligera négliger ver 9.42 19.86 0.00 0.07 ind:fut:3s; +négligerai négliger ver 9.42 19.86 0.14 0.00 ind:fut:1s; +négligerait négliger ver 9.42 19.86 0.01 0.14 cnd:pre:3s; +négligeriez négliger ver 9.42 19.86 0.01 0.00 cnd:pre:2p; +négliges négliger ver 9.42 19.86 0.23 0.20 ind:pre:2s; +négligez négliger ver 9.42 19.86 1.34 0.07 imp:pre:2p;ind:pre:2p; +négligiez négliger ver 9.42 19.86 0.01 0.00 ind:imp:2p; +négligions négliger ver 9.42 19.86 0.00 0.20 ind:imp:1p; +négligèrent négliger ver 9.42 19.86 0.00 0.07 ind:pas:3p; +négligé négliger ver m s 9.42 19.86 2.71 4.46 par:pas; +négligée négligé adj f s 1.37 2.70 0.65 1.08 +négligées négligé adj f p 1.37 2.70 0.11 0.34 +négligés négligé adj m p 1.37 2.70 0.14 0.54 +négoce négoce nom m s 0.20 2.09 0.10 2.03 +négoces négoce nom m p 0.20 2.09 0.10 0.07 +négocia négocier ver 18.82 10.81 0.03 0.14 ind:pas:3s; +négociable négociable adj s 1.31 0.68 1.08 0.41 +négociables négociable adj p 1.31 0.68 0.23 0.27 +négociaient négocier ver 18.82 10.81 0.04 0.34 ind:imp:3p; +négociais négocier ver 18.82 10.81 0.08 0.20 ind:imp:1s; +négociait négocier ver 18.82 10.81 0.23 0.81 ind:imp:3s; +négociant négociant nom m s 0.43 2.43 0.30 0.88 +négociante négociant nom f s 0.43 2.43 0.04 0.00 +négociants négociant nom m p 0.43 2.43 0.10 1.55 +négociateur négociateur nom m s 1.37 1.22 0.94 0.61 +négociateurs négociateur nom m p 1.37 1.22 0.38 0.61 +négociation négociation nom f s 6.70 11.28 2.71 2.84 +négociations négociation nom f p 6.70 11.28 3.99 8.45 +négociatrice négociateur nom f s 1.37 1.22 0.05 0.00 +négociatrices négociatrice nom f p 0.01 0.00 0.01 0.00 +négocie négocier ver 18.82 10.81 2.49 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +négocient négocier ver 18.82 10.81 0.40 0.14 ind:pre:3p; +négocier négocier ver 18.82 10.81 11.88 5.61 inf; +négociera négocier ver 18.82 10.81 0.24 0.00 ind:fut:3s; +négocierai négocier ver 18.82 10.81 0.19 0.14 ind:fut:1s; +négocieraient négocier ver 18.82 10.81 0.00 0.07 cnd:pre:3p; +négocierions négocier ver 18.82 10.81 0.02 0.00 cnd:pre:1p; +négocierons négocier ver 18.82 10.81 0.28 0.00 ind:fut:1p; +négocieront négocier ver 18.82 10.81 0.19 0.00 ind:fut:3p; +négociez négocier ver 18.82 10.81 0.34 0.07 imp:pre:2p;ind:pre:2p; +négocions négocier ver 18.82 10.81 0.45 0.00 imp:pre:1p;ind:pre:1p; +négocié négocier ver m s 18.82 10.81 1.76 1.22 par:pas; +négociée négocier ver f s 18.82 10.81 0.00 0.14 par:pas; +négociées négocier ver f p 18.82 10.81 0.01 0.00 par:pas; +négociés négocier ver m p 18.82 10.81 0.09 0.47 par:pas; +négresse nègre nom f s 18.93 27.64 1.56 3.78 +négresses négresse nom f p 0.15 0.00 0.15 0.00 +négrier négrier adj m s 0.13 0.34 0.12 0.34 +négriers négrier nom m p 0.33 0.54 0.23 0.07 +négril négril nom m s 0.00 0.07 0.00 0.07 +négrillon négrillon nom m s 0.07 1.01 0.04 0.14 +négrillons négrillon nom m p 0.07 1.01 0.04 0.88 +négrière négrier nom f s 0.33 0.54 0.02 0.00 +négritude négritude nom f s 0.44 0.41 0.44 0.41 +négro négro nom m s 6.02 2.97 4.64 2.43 +négroïde négroïde adj s 0.09 1.28 0.07 0.74 +négroïdes négroïde adj p 0.09 1.28 0.02 0.54 +négrophile négrophile adj m s 0.04 0.00 0.02 0.00 +négrophiles négrophile adj f p 0.04 0.00 0.02 0.00 +négros négro nom m p 6.02 2.97 1.38 0.54 +négus négus nom m 0.10 1.55 0.10 1.55 +nui nuire ver m s 14.76 11.22 1.31 0.61 par:pas; +nuira nuire ver 14.76 11.22 0.59 0.14 ind:fut:3s; +nuirai nuire ver 14.76 11.22 0.01 0.00 ind:fut:1s; +nuirait nuire ver 14.76 11.22 0.27 0.34 cnd:pre:3s; +nuiras nuire ver 14.76 11.22 0.11 0.00 ind:fut:2s; +nuire nuire ver 14.76 11.22 5.98 4.46 inf; +nuiront nuire ver 14.76 11.22 0.03 0.00 ind:fut:3p; +nuis nuire ver 14.76 11.22 0.20 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +nuisît nuire ver 14.76 11.22 0.00 0.07 sub:imp:3s; +nuisaient nuire ver 14.76 11.22 0.10 0.07 ind:imp:3p; +nuisait nuire ver 14.76 11.22 0.05 0.61 ind:imp:3s; +nuisance nuisance nom f s 0.67 0.27 0.38 0.14 +nuisances nuisance nom f p 0.67 0.27 0.30 0.14 +nuisant nuire ver 14.76 11.22 0.03 0.07 par:pre; +nuise nuire ver 14.76 11.22 0.22 0.41 sub:pre:1s;sub:pre:3s; +nuisent nuire ver 14.76 11.22 0.54 0.27 ind:pre:3p; +nuisette nuisette nom f s 0.33 0.07 0.33 0.07 +nuisez nuire ver 14.76 11.22 0.02 0.00 ind:pre:2p; +nuisible nuisible adj s 0.83 2.23 0.56 1.42 +nuisibles nuisible adj p 0.83 2.23 0.28 0.81 +nuit nuit nom f s 586.54 738.24 557.56 672.36 +nuitamment nuitamment adv 0.02 0.47 0.02 0.47 +nuitards nuitard nom m p 0.01 0.00 0.01 0.00 +nuiteux nuiteux nom m s 0.01 0.20 0.01 0.20 +nuits nuit nom f p 586.54 738.24 28.98 65.88 +nuitée nuitée nom f s 0.01 0.34 0.00 0.20 +nuitées nuitée nom f p 0.01 0.34 0.01 0.14 +nul nul adj_ind m s 44.53 35.07 28.80 19.93 +nullard nullard nom m s 0.51 0.20 0.20 0.07 +nullarde nullard adj f s 0.17 0.14 0.03 0.07 +nullardes nullard adj f p 0.17 0.14 0.00 0.07 +nullards nullard nom m p 0.51 0.20 0.32 0.14 +nulle nulle adj_ind f s 37.84 32.70 37.84 32.70 +nullement nullement adv 1.45 14.19 1.45 14.19 +nulles nulles adj_ind f p 0.41 0.34 0.41 0.34 +nullissime nullissime adj s 0.01 0.07 0.01 0.07 +nullité nullité nom f s 1.20 2.77 0.96 2.16 +nullités nullité nom f p 1.20 2.77 0.24 0.61 +nullos nullos adj s 0.18 0.00 0.18 0.00 +nuls nuls adj_ind m p 0.63 0.34 0.63 0.34 +nématodes nématode nom m p 0.01 0.00 0.01 0.00 +numerus_clausus numerus_clausus nom m 0.00 0.07 0.00 0.07 +numide numide nom s 0.04 0.14 0.04 0.14 +numides numide adj p 0.00 0.34 0.00 0.27 +numismate numismate nom s 0.01 0.47 0.01 0.34 +numismates numismate nom p 0.01 0.47 0.00 0.14 +numismatique numismatique adj m s 0.01 0.14 0.01 0.14 +numéraire numéraire nom m s 0.01 0.27 0.01 0.27 +numéral numéral adj m s 0.00 0.07 0.00 0.07 +numérateur numérateur nom m s 0.02 0.00 0.02 0.00 +numération numération nom f s 0.23 0.07 0.23 0.07 +numérique numérique adj s 3.34 0.41 2.41 0.27 +numériquement numériquement adv 0.09 0.20 0.09 0.20 +numériques numérique adj p 3.34 0.41 0.93 0.14 +numérisation numérisation nom f s 0.07 0.00 0.07 0.00 +numérise numériser ver 0.22 0.00 0.04 0.00 imp:pre:2s;ind:pre:3s; +numériser numériser ver 0.22 0.00 0.02 0.00 inf; +numérisez numériser ver 0.22 0.00 0.02 0.00 imp:pre:2p; +numérisé numériser ver m s 0.22 0.00 0.09 0.00 par:pas; +numérisée numériser ver f s 0.22 0.00 0.01 0.00 par:pas; +numérisées numériser ver f p 0.22 0.00 0.04 0.00 par:pas; +numéro numéro nom m s 173.48 70.07 162.08 60.00 +numérologie numérologie nom f s 0.14 0.00 0.14 0.00 +numérologue numérologue nom s 0.05 0.00 0.05 0.00 +numéros numéro nom m p 173.48 70.07 11.40 10.07 +numérota numéroter ver 0.50 1.89 0.00 0.07 ind:pas:3s; +numérotage numérotage nom m s 0.00 0.14 0.00 0.14 +numérotaient numéroter ver 0.50 1.89 0.00 0.07 ind:imp:3p; +numérotait numéroter ver 0.50 1.89 0.01 0.20 ind:imp:3s; +numérotation numérotation nom f s 0.12 0.07 0.12 0.07 +numérote numéroter ver 0.50 1.89 0.11 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +numérotent numéroter ver 0.50 1.89 0.01 0.07 ind:pre:3p; +numéroter numéroter ver 0.50 1.89 0.04 0.27 inf; +numérotez numéroter ver 0.50 1.89 0.03 0.07 imp:pre:2p; +numéroté numéroter ver m s 0.50 1.89 0.20 0.14 par:pas; +numérotée numéroté adj f s 0.53 1.62 0.11 0.07 +numérotées numéroté adj f p 0.53 1.62 0.15 0.68 +numérotés numéroté adj m p 0.53 1.62 0.08 0.54 +nunchaku nunchaku nom m s 0.24 0.00 0.05 0.00 +nunchakus nunchaku nom m p 0.24 0.00 0.19 0.00 +nuncupatifs nuncupatif adj m p 0.00 0.07 0.00 0.07 +nénesse nénesse nom m s 0.00 0.27 0.00 0.14 +nénesses nénesse nom m p 0.00 0.27 0.00 0.14 +nénette nénette nom f s 0.85 3.72 0.69 2.77 +nénettes nénette nom f p 0.85 3.72 0.16 0.95 +néné néné nom m s 5.41 3.04 3.76 2.03 +nunuche nunuche adj s 0.51 0.00 0.35 0.00 +nunuches nunuche adj p 0.51 0.00 0.16 0.00 +nénuphar nénuphar nom m s 0.50 2.91 0.25 0.47 +nénuphars nénuphar nom m p 0.50 2.91 0.24 2.43 +nénés néné nom m p 5.41 3.04 1.65 1.01 +néo_barbare néo_barbare adj f p 0.00 0.07 0.00 0.07 +néo_classique néo_classique adj s 0.12 0.34 0.12 0.34 +néo_colonialisme néo_colonialisme nom m s 0.00 0.20 0.00 0.20 +néo_communiste néo_communiste adj f s 0.01 0.00 0.01 0.00 +néo_fascisme néo_fascisme nom m s 0.01 0.07 0.01 0.07 +néo_fasciste néo_fasciste adj p 0.01 0.00 0.01 0.00 +néo_fasciste néo_fasciste nom p 0.01 0.00 0.01 0.00 +néo_figuration néo_figuration nom f s 0.00 0.07 0.00 0.07 +néo_flic néo_flic nom m p 0.02 0.00 0.02 0.00 +néo_gangster néo_gangster nom m s 0.01 0.00 0.01 0.00 +néo_gothique néo_gothique adj f s 0.00 0.20 0.00 0.14 +néo_gothique néo_gothique adj p 0.00 0.20 0.00 0.07 +néo_grec néo_grec adj m s 0.00 0.07 0.00 0.07 +néo_hellénique néo_hellénique adj f p 0.00 0.07 0.00 0.07 +néo_malthusianisme néo_malthusianisme nom m s 0.00 0.14 0.00 0.14 +néo_mauresque néo_mauresque adj m s 0.00 0.14 0.00 0.07 +néo_mauresque néo_mauresque adj f p 0.00 0.14 0.00 0.07 +néo_mouvement néo_mouvement nom m s 0.00 0.07 0.00 0.07 +néo_renaissant néo_renaissant adj m s 0.00 0.07 0.00 0.07 +néo_romantique néo_romantique adj f s 0.01 0.00 0.01 0.00 +néo_réalisme néo_réalisme nom m s 0.10 0.07 0.10 0.07 +néo_réaliste néo_réaliste adj m s 0.00 0.20 0.00 0.07 +néo_réaliste néo_réaliste adj m p 0.00 0.20 0.00 0.14 +néo_russe néo_russe adj s 0.00 0.14 0.00 0.14 +néo_zélandais néo_zélandais adj m 0.11 0.14 0.10 0.14 +néo_zélandais néo_zélandais adj f s 0.11 0.14 0.01 0.00 +néo néo adv 0.62 0.61 0.62 0.61 +nuoc_mâm nuoc_mâm nom m 0.00 0.07 0.00 0.07 +néoclassique néoclassique adj m s 0.01 0.07 0.01 0.07 +néocolonial néocolonial adj m s 0.00 0.07 0.00 0.07 +néocolonialisme néocolonialisme nom m s 0.01 0.00 0.01 0.00 +néocortex néocortex nom m 0.15 0.00 0.15 0.00 +néofascisme néofascisme nom m s 0.01 0.00 0.01 0.00 +néogothique néogothique adj m s 0.14 0.07 0.14 0.07 +néolibéralisme néolibéralisme nom m s 0.14 0.00 0.14 0.00 +néolithique néolithique nom s 0.02 0.14 0.02 0.14 +néolithiques néolithique adj f p 0.01 0.14 0.00 0.07 +néologisme néologisme nom m s 0.01 0.61 0.01 0.27 +néologismes néologisme nom m p 0.01 0.61 0.00 0.34 +néon néon nom m s 1.81 10.81 1.21 7.16 +néonatal néonatal adj m s 0.11 0.00 0.04 0.00 +néonatale néonatal adj f s 0.11 0.00 0.07 0.00 +néonazie néonazi adj f s 0.11 0.00 0.01 0.00 +néonazis néonazi adj m p 0.11 0.00 0.10 0.00 +néons néon nom m p 1.81 10.81 0.61 3.65 +néophyte néophyte nom s 0.17 0.95 0.12 0.54 +néophytes néophyte nom p 0.17 0.95 0.05 0.41 +néoplasie néoplasie nom f s 0.01 0.00 0.01 0.00 +néoplasique néoplasique adj s 0.04 0.00 0.04 0.00 +néoplasme néoplasme nom m s 0.01 0.07 0.01 0.07 +néoplatonisme néoplatonisme nom m s 0.00 0.07 0.00 0.07 +néoprène néoprène nom m s 0.03 0.00 0.03 0.00 +néoréalisme néoréalisme nom m s 0.02 0.00 0.02 0.00 +népalais népalais adj m p 0.03 0.20 0.02 0.07 +népalaise népalais nom f s 0.01 0.20 0.00 0.14 +népalaises népalais adj f p 0.03 0.20 0.01 0.07 +népenthès népenthès nom m 0.04 0.07 0.04 0.07 +néphrectomie néphrectomie nom f s 0.03 0.00 0.03 0.00 +néphrite néphrite nom f s 0.11 0.07 0.11 0.07 +néphrologie néphrologie nom f s 0.05 0.00 0.05 0.00 +néphrologue néphrologue nom s 0.03 0.00 0.03 0.00 +néphrétique néphrétique adj f s 0.02 0.20 0.01 0.07 +néphrétiques néphrétique adj f p 0.02 0.20 0.01 0.14 +népotisme népotisme nom m s 0.13 0.20 0.13 0.20 +nuptial nuptial adj m s 2.92 4.32 1.05 1.35 +nuptiale nuptial adj f s 2.92 4.32 1.56 2.09 +nuptiales nuptial adj f p 2.92 4.32 0.17 0.68 +nuptialité nuptialité nom f s 0.00 0.20 0.00 0.20 +nuptiaux nuptial adj m p 2.92 4.32 0.14 0.20 +nuque nuque nom f s 7.80 50.95 7.58 48.51 +nuques nuque nom f p 7.80 50.95 0.22 2.43 +néroli néroli nom m s 0.03 0.00 0.03 0.00 +nurse nurse nom f s 2.24 3.92 2.14 3.18 +nurseries nurseries nom f p 0.00 0.07 0.00 0.07 +nursery nursery nom f s 1.04 0.74 1.04 0.74 +nurses nurse nom f p 2.24 3.92 0.10 0.74 +nursing nursing nom m s 0.03 0.00 0.03 0.00 +néréide néréide nom f s 0.00 0.20 0.00 0.07 +néréides néréide nom f p 0.00 0.20 0.00 0.14 +nés naître ver m p 116.11 119.32 8.83 7.50 par:pas; +nus nu adj m p 49.87 168.04 10.80 48.92 +nutriment nutriment nom m s 0.21 0.00 0.02 0.00 +nutriments nutriment nom m p 0.21 0.00 0.19 0.00 +nutritif nutritif adj m s 1.05 0.41 0.16 0.20 +nutritifs nutritif adj m p 1.05 0.41 0.21 0.00 +nutrition nutrition nom f s 0.86 0.34 0.86 0.34 +nutritionnel nutritionnel adj m s 0.10 0.07 0.04 0.00 +nutritionnelle nutritionnel adj f s 0.10 0.07 0.06 0.07 +nutritionniste nutritionniste nom s 0.25 0.00 0.25 0.00 +nutritive nutritif adj f s 1.05 0.41 0.51 0.07 +nutritives nutritif adj f p 1.05 0.41 0.18 0.14 +nuée nuée nom f s 1.27 10.74 0.54 3.99 +nuées nuée nom f p 1.27 10.74 0.74 6.76 +névralgie névralgie nom f s 0.21 0.61 0.17 0.34 +névralgies névralgie nom f p 0.21 0.61 0.04 0.27 +névralgique névralgique adj m s 0.12 0.14 0.12 0.00 +névralgiques névralgique adj m p 0.12 0.14 0.00 0.14 +névrite névrite nom f s 0.17 0.07 0.17 0.07 +névropathe névropathe nom s 0.12 0.14 0.12 0.14 +névroptères névroptère nom m p 0.00 0.07 0.00 0.07 +névrose névrose nom f s 1.36 2.50 1.04 1.28 +névroses névrose nom f p 1.36 2.50 0.32 1.22 +névrosé névrosé adj m s 1.20 0.74 0.49 0.14 +névrosée névrosé adj f s 1.20 0.74 0.61 0.41 +névrosées névrosé adj f p 1.20 0.74 0.04 0.14 +névrosés névrosé nom m p 0.58 0.41 0.24 0.20 +névrotique névrotique adj s 0.21 0.27 0.13 0.14 +névrotiques névrotique adj p 0.21 0.27 0.08 0.14 +névé névé nom m s 0.00 0.27 0.00 0.14 +névés névé nom m p 0.00 0.27 0.00 0.14 +nyctalope nyctalope adj s 0.00 0.20 0.00 0.14 +nyctalopes nyctalope nom p 0.00 0.41 0.00 0.34 +nylon nylon nom m s 1.33 6.42 1.27 6.42 +nylons nylon nom m p 1.33 6.42 0.05 0.00 +nymphal nymphal adj m s 0.04 0.00 0.04 0.00 +nymphe nymphe nom f s 1.77 5.81 0.88 1.76 +nymphes nymphe nom f p 1.77 5.81 0.90 4.05 +nymphette nymphette nom f s 0.10 0.68 0.07 0.41 +nymphettes nymphette nom f p 0.10 0.68 0.03 0.27 +nympho nympho nom f s 0.80 0.14 0.69 0.07 +nymphomane nymphomane nom s 0.92 0.20 0.80 0.07 +nymphomanes nymphomane nom p 0.92 0.20 0.13 0.14 +nymphomanie nymphomanie nom f s 0.20 0.00 0.20 0.00 +nymphos nympho nom f p 0.80 0.14 0.11 0.07 +nymphéa nymphéa nom m s 0.00 0.34 0.00 0.07 +nymphéas nymphéa nom m p 0.00 0.34 0.00 0.27 +nymphées nymphée nom m p 0.14 0.07 0.14 0.07 +à_côté à_côté nom m s 0.00 0.68 0.00 0.34 +à_côté à_côté nom m p 0.00 0.68 0.00 0.34 +à_coup à_coup nom m s 0.00 4.80 0.00 0.54 +à_coup à_coup nom m p 0.00 4.80 0.00 4.26 +à_dieu_vat à_dieu_vat ono 0.00 0.07 0.00 0.07 +à_peu_près à_peu_près nom m 0.00 0.74 0.00 0.74 +à_pic à_pic nom m 0.00 1.42 0.00 1.08 +à_pic à_pic nom m p 0.00 1.42 0.00 0.34 +à_plat à_plat nom m s 0.00 0.27 0.00 0.14 +à_plat à_plat nom m p 0.00 0.27 0.00 0.14 +à_propos à_propos nom m 0.00 0.88 0.00 0.88 +à_valoir à_valoir nom m 0.00 0.27 0.00 0.27 +à_brûle_pourpoint à_brûle_pourpoint 0.14 0.00 0.14 0.00 +à_cloche_pied à_cloche_pied 0.22 0.00 0.22 0.00 +à_cropetons à_cropetons adv 0.00 0.07 0.00 0.07 +à_croupetons à_croupetons adv 0.01 0.95 0.01 0.95 +à_fortiori à_fortiori adv 0.16 0.20 0.16 0.20 +à_giorno à_giorno adv 0.00 0.07 0.00 0.07 +à_glagla à_glagla adv 0.00 0.07 0.00 0.07 +à_jeun à_jeun adv 1.45 3.85 1.27 3.85 +à_l_aveuglette à_l_aveuglette adv 1.11 2.16 1.11 2.16 +à_l_encan à_l_encan adv 0.01 0.14 0.01 0.14 +à_l_encontre à_l_encontre pre 2.67 1.89 2.67 1.89 +à_l_envi à_l_envi adv 0.20 0.61 0.20 0.61 +à_l_improviste à_l_improviste adv 2.67 4.53 2.67 4.53 +à_l_instar à_l_instar pre 0.26 6.42 0.26 6.42 +à_la_daumont à_la_daumont adv 0.00 0.07 0.00 0.07 +à_la_saint_glinglin à_la_saint_glinglin adv 0.02 0.00 0.02 0.00 +à_leur_encontre à_leur_encontre adv 0.03 0.07 0.03 0.07 +à_lurelure à_lurelure adv 0.00 0.20 0.00 0.20 +à_mon_encontre à_mon_encontre adv 0.05 0.14 0.05 0.14 +à_notre_encontre à_notre_encontre adv 0.02 0.07 0.02 0.07 +a_posteriori a_posteriori adv 0.05 0.20 0.04 0.07 +a_priori a_priori adv 1.04 3.85 0.41 1.28 +à_rebrousse_poil à_rebrousse_poil 0.08 0.00 0.08 0.00 +à_son_encontre à_son_encontre adv 0.05 0.20 0.05 0.20 +à_tire_larigot à_tire_larigot 0.17 0.00 0.17 0.00 +à_ton_encontre à_ton_encontre adv 0.02 0.00 0.02 0.00 +à_tâtons à_tâtons adv 0.60 8.78 0.60 8.78 +à_touche_touche à_touche_touche 0.01 0.00 0.01 0.00 +à_tue_tête à_tue_tête 0.54 0.00 0.54 0.00 +à_votre_encontre à_votre_encontre adv 0.15 0.00 0.15 0.00 +à à pre 12190.40 19209.05 12190.40 19209.05 +o o nom m 57.07 11.49 57.07 11.49 +où où pro_rel 2177.25 2068.11 1546.44 1767.23 +oïl oïl nom m 0.01 0.00 0.01 0.00 +oaristys oaristys nom f 0.00 0.07 0.00 0.07 +oasis oasis nom f 1.61 6.42 1.61 6.42 +ob ob nom m s 0.25 0.07 0.25 0.07 +obi obi nom f s 0.30 0.07 0.30 0.07 +obituaire obituaire adj s 0.00 0.07 0.00 0.07 +objecta objecter ver 0.87 6.49 0.00 2.43 ind:pas:3s; +objectai objecter ver 0.87 6.49 0.00 0.47 ind:pas:1s; +objectais objecter ver 0.87 6.49 0.01 0.07 ind:imp:1s;ind:imp:2s; +objectait objecter ver 0.87 6.49 0.01 0.68 ind:imp:3s; +objectal objectal adj m s 0.01 0.07 0.00 0.07 +objectale objectal adj f s 0.01 0.07 0.01 0.00 +objectant objecter ver 0.87 6.49 0.00 0.14 par:pre; +objecte objecter ver 0.87 6.49 0.46 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +objectent objecter ver 0.87 6.49 0.00 0.07 ind:pre:3p; +objecter objecter ver 0.87 6.49 0.28 0.54 inf; +objectera objecter ver 0.87 6.49 0.01 0.07 ind:fut:3s; +objecterez objecter ver 0.87 6.49 0.01 0.07 ind:fut:2p; +objecteront objecter ver 0.87 6.49 0.01 0.00 ind:fut:3p; +objecteur objecteur nom m s 0.43 0.20 0.36 0.20 +objecteurs objecteur nom m p 0.43 0.20 0.07 0.00 +objectez objecter ver 0.87 6.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +objectif objectif nom m s 18.91 12.43 15.44 9.19 +objectifs objectif nom m p 18.91 12.43 3.46 3.24 +objection objection nom f s 14.18 7.97 12.07 3.78 +objections objection nom f p 14.18 7.97 2.10 4.19 +objectivation objectivation nom f s 0.11 0.00 0.11 0.00 +objective objectif adj f s 4.30 3.72 1.34 1.42 +objectivement objectivement adv 0.41 1.82 0.41 1.82 +objectivent objectiver ver 0.19 0.07 0.01 0.07 ind:pre:3p; +objectives objectif adj f p 4.30 3.72 0.20 0.41 +objectivité objectivité nom f s 0.89 0.68 0.89 0.68 +objectèrent objecter ver 0.87 6.49 0.00 0.07 ind:pas:3p; +objecté objecter ver m s 0.87 6.49 0.04 0.81 par:pas; +objet objet nom m s 45.94 124.32 26.88 67.09 +objets objet nom m p 45.94 124.32 19.06 57.23 +objurgation objurgation nom f s 0.00 2.03 0.00 0.14 +objurgations objurgation nom f p 0.00 2.03 0.00 1.89 +objurgua objurguer ver 0.00 0.14 0.00 0.07 ind:pas:3s; +objurguant objurguer ver 0.00 0.14 0.00 0.07 par:pre; +oblatif oblatif adj m s 0.00 0.20 0.00 0.07 +oblation oblation nom f s 0.00 0.20 0.00 0.20 +oblative oblatif adj f s 0.00 0.20 0.00 0.14 +oblats oblat nom m p 0.00 0.07 0.00 0.07 +obligado obligado adv 0.00 0.14 0.00 0.14 +obligataire obligataire adj m s 0.02 0.00 0.01 0.00 +obligataires obligataire adj m p 0.02 0.00 0.01 0.00 +obligation obligation nom f s 11.34 15.74 6.66 9.12 +obligations obligation nom f p 11.34 15.74 4.69 6.62 +obligatoire obligatoire adj s 5.57 7.97 5.18 6.49 +obligatoirement obligatoirement adv 1.13 3.04 1.13 3.04 +obligatoires obligatoire adj p 5.57 7.97 0.39 1.49 +oblige obliger ver 91.63 107.57 14.74 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +obligea obliger ver 91.63 107.57 0.47 4.39 ind:pas:3s; +obligeai obliger ver 91.63 107.57 0.00 0.34 ind:pas:1s; +obligeaient obliger ver 91.63 107.57 0.17 2.43 ind:imp:3p; +obligeais obliger ver 91.63 107.57 0.04 0.47 ind:imp:1s;ind:imp:2s; +obligeait obliger ver 91.63 107.57 1.40 9.32 ind:imp:3s; +obligeamment obligeamment adv 0.00 0.68 0.00 0.68 +obligeance obligeance nom f s 0.85 1.62 0.84 1.55 +obligeances obligeance nom f p 0.85 1.62 0.01 0.07 +obligeant obliger ver 91.63 107.57 0.45 4.19 par:pre; +obligeante obligeant adj f s 0.36 1.55 0.14 0.14 +obligeantes obligeant adj f p 0.36 1.55 0.01 0.20 +obligeants obligeant adj m p 0.36 1.55 0.03 0.14 +obligent obliger ver 91.63 107.57 1.93 2.30 ind:pre:3p; +obligeons obliger ver 91.63 107.57 0.06 0.07 imp:pre:1p;ind:pre:1p; +obligeât obliger ver 91.63 107.57 0.00 0.54 sub:imp:3s; +obliger obliger ver 91.63 107.57 6.30 9.39 ind:pre:2p;inf; +obligera obliger ver 91.63 107.57 0.84 0.20 ind:fut:3s; +obligerai obliger ver 91.63 107.57 0.77 0.07 ind:fut:1s; +obligerais obliger ver 91.63 107.57 0.18 0.07 cnd:pre:1s;cnd:pre:2s; +obligerait obliger ver 91.63 107.57 0.78 1.08 cnd:pre:3s; +obligeras obliger ver 91.63 107.57 0.15 0.14 ind:fut:2s; +obligerez obliger ver 91.63 107.57 0.04 0.07 ind:fut:2p; +obligeriez obliger ver 91.63 107.57 0.05 0.14 cnd:pre:2p; +obligeront obliger ver 91.63 107.57 0.06 0.07 ind:fut:3p; +obliges obliger ver 91.63 107.57 1.28 0.34 ind:pre:2s; +obligez obliger ver 91.63 107.57 2.81 0.20 imp:pre:2p;ind:pre:2p; +obligiez obliger ver 91.63 107.57 0.16 0.00 ind:imp:2p; +obligèrent obliger ver 91.63 107.57 0.20 0.61 ind:pas:3p; +obligé obliger ver m s 91.63 107.57 36.43 35.07 par:pas; +obligée obliger ver f s 91.63 107.57 12.01 11.96 par:pas; +obligées obliger ver f p 91.63 107.57 0.75 0.88 par:pas; +obligés obliger ver m p 91.63 107.57 9.56 10.27 par:pas; +obliqua obliquer ver 0.16 5.41 0.00 2.30 ind:pas:3s; +obliquaient obliquer ver 0.16 5.41 0.00 0.14 ind:imp:3p; +obliquait obliquer ver 0.16 5.41 0.00 0.20 ind:imp:3s; +obliquant obliquer ver 0.16 5.41 0.10 0.54 par:pre; +oblique oblique adj s 0.83 11.49 0.81 7.70 +obliquement obliquement adv 0.02 2.23 0.02 2.23 +obliquent obliquer ver 0.16 5.41 0.01 0.14 ind:pre:3p; +obliquer obliquer ver 0.16 5.41 0.00 0.54 inf; +obliques oblique adj p 0.83 11.49 0.02 3.78 +obliquez obliquer ver 0.16 5.41 0.03 0.00 imp:pre:2p; +obliquité obliquité nom f s 0.01 0.07 0.01 0.07 +obliquâmes obliquer ver 0.16 5.41 0.00 0.07 ind:pas:1p; +obliquèrent obliquer ver 0.16 5.41 0.00 0.34 ind:pas:3p; +obliqué obliquer ver m s 0.16 5.41 0.00 0.41 par:pas; +oblitère oblitérer ver 0.17 1.42 0.00 0.27 ind:pre:3s; +oblitèrent oblitérer ver 0.17 1.42 0.00 0.07 ind:pre:3p; +oblitéraient oblitérer ver 0.17 1.42 0.00 0.07 ind:imp:3p; +oblitérait oblitérer ver 0.17 1.42 0.00 0.27 ind:imp:3s; +oblitération oblitération nom f s 0.03 0.07 0.03 0.07 +oblitérer oblitérer ver 0.17 1.42 0.07 0.20 inf; +oblitérons oblitérer ver 0.17 1.42 0.01 0.00 imp:pre:1p; +oblitérèrent oblitérer ver 0.17 1.42 0.00 0.07 ind:pas:3p; +oblitéré oblitérer ver m s 0.17 1.42 0.04 0.14 par:pas; +oblitérée oblitérer ver f s 0.17 1.42 0.02 0.14 par:pas; +oblitérées oblitérer ver f p 0.17 1.42 0.01 0.14 par:pas; +oblitérés oblitérer ver m p 0.17 1.42 0.02 0.07 par:pas; +oblong oblong adj m s 0.05 3.24 0.02 1.01 +oblongs oblong adj m p 0.05 3.24 0.00 0.27 +oblongue oblong adj f s 0.05 3.24 0.03 1.49 +oblongues oblong adj f p 0.05 3.24 0.00 0.47 +obnubila obnubiler ver 0.50 1.82 0.00 0.07 ind:pas:3s; +obnubilait obnubiler ver 0.50 1.82 0.01 0.00 ind:imp:3s; +obnubilant obnubiler ver 0.50 1.82 0.00 0.07 par:pre; +obnubilation obnubilation nom f s 0.00 0.14 0.00 0.14 +obnubile obnubiler ver 0.50 1.82 0.03 0.07 ind:pre:3s; +obnubiler obnubiler ver 0.50 1.82 0.02 0.27 inf; +obnubilé obnubiler ver m s 0.50 1.82 0.22 0.88 par:pas; +obnubilée obnubiler ver f s 0.50 1.82 0.17 0.07 par:pas; +obnubilées obnubiler ver f p 0.50 1.82 0.00 0.07 par:pas; +obnubilés obnubiler ver m p 0.50 1.82 0.04 0.34 par:pas; +obole obole nom f s 0.11 1.22 0.11 1.01 +oboles obole nom f p 0.11 1.22 0.00 0.20 +obscène obscène adj s 4.48 13.04 3.25 7.91 +obscènement obscènement adv 0.01 0.27 0.01 0.27 +obscènes obscène adj p 4.48 13.04 1.23 5.14 +obscénité obscénité nom f s 1.63 3.78 0.92 2.23 +obscénités obscénité nom f p 1.63 3.78 0.71 1.55 +obscur obscur adj m s 11.06 67.57 5.00 29.12 +obscurantisme obscurantisme nom m s 0.14 0.81 0.14 0.74 +obscurantismes obscurantisme nom m p 0.14 0.81 0.00 0.07 +obscurantiste obscurantiste nom s 0.14 0.00 0.14 0.00 +obscurcît obscurcir ver 1.42 6.69 0.00 0.07 sub:imp:3s; +obscurci obscurcir ver m s 1.42 6.69 0.57 1.28 par:pas; +obscurcie obscurcir ver f s 1.42 6.69 0.15 0.74 par:pas; +obscurcies obscurcir ver f p 1.42 6.69 0.00 0.20 par:pas; +obscurcir obscurcir ver 1.42 6.69 0.24 0.88 inf; +obscurcira obscurcir ver 1.42 6.69 0.04 0.14 ind:fut:3s; +obscurcirait obscurcir ver 1.42 6.69 0.00 0.07 cnd:pre:3s; +obscurcis obscurcir ver m p 1.42 6.69 0.00 0.27 par:pas; +obscurcissaient obscurcir ver 1.42 6.69 0.01 0.47 ind:imp:3p; +obscurcissait obscurcir ver 1.42 6.69 0.01 0.68 ind:imp:3s; +obscurcissant obscurcir ver 1.42 6.69 0.00 0.14 par:pre; +obscurcissement obscurcissement nom m s 0.11 0.41 0.11 0.27 +obscurcissements obscurcissement nom m p 0.11 0.41 0.00 0.14 +obscurcissent obscurcir ver 1.42 6.69 0.06 0.47 ind:pre:3p; +obscurcit obscurcir ver 1.42 6.69 0.34 1.28 ind:pre:3s;ind:pas:3s; +obscure obscur adj f s 11.06 67.57 3.46 20.61 +obscures obscur adj f p 11.06 67.57 1.32 9.53 +obscurité obscurité nom f s 14.33 49.39 14.33 48.65 +obscurités obscurité nom f p 14.33 49.39 0.00 0.74 +obscurs obscur adj m p 11.06 67.57 1.28 8.31 +obscurément obscurément adv 0.01 6.96 0.01 6.96 +observa observer ver 42.66 116.01 0.18 19.46 ind:pas:3s; +observable observable adj m s 0.03 0.00 0.03 0.00 +observai observer ver 42.66 116.01 0.01 1.76 ind:pas:1s; +observaient observer ver 42.66 116.01 0.26 3.85 ind:imp:3p; +observais observer ver 42.66 116.01 1.39 5.20 ind:imp:1s;ind:imp:2s; +observait observer ver 42.66 116.01 1.23 19.73 ind:imp:3s; +observance observance nom f s 0.14 0.34 0.14 0.27 +observances observance nom f p 0.14 0.34 0.00 0.07 +observant observer ver 42.66 116.01 1.17 6.89 par:pre; +observateur observateur nom m s 3.08 6.08 1.94 4.53 +observateurs observateur nom m p 3.08 6.08 1.05 1.35 +observation observation nom f s 8.07 15.27 6.91 11.08 +observations observation nom f p 8.07 15.27 1.16 4.19 +observatoire observatoire nom m s 1.25 3.18 1.23 2.84 +observatoires observatoire nom m p 1.25 3.18 0.02 0.34 +observatrice observateur adj f s 1.55 0.68 0.24 0.07 +observatrices observateur nom f p 3.08 6.08 0.00 0.14 +observe observer ver 42.66 116.01 11.48 16.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +observent observer ver 42.66 116.01 1.41 2.16 ind:pre:3p; +observer observer ver 42.66 116.01 11.22 24.26 inf; +observera observer ver 42.66 116.01 0.11 0.07 ind:fut:3s; +observerai observer ver 42.66 116.01 0.51 0.07 ind:fut:1s; +observeraient observer ver 42.66 116.01 0.00 0.14 cnd:pre:3p; +observerais observer ver 42.66 116.01 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +observerait observer ver 42.66 116.01 0.04 0.20 cnd:pre:3s; +observerez observer ver 42.66 116.01 0.05 0.07 ind:fut:2p; +observerons observer ver 42.66 116.01 0.18 0.00 ind:fut:1p; +observeront observer ver 42.66 116.01 0.03 0.00 ind:fut:3p; +observes observer ver 42.66 116.01 0.75 0.34 ind:pre:2s;sub:pre:2s; +observez observer ver 42.66 116.01 3.63 1.35 imp:pre:2p;ind:pre:2p; +observiez observer ver 42.66 116.01 0.15 0.00 ind:imp:2p;sub:pre:2p; +observions observer ver 42.66 116.01 0.13 0.74 ind:imp:1p; +observâmes observer ver 42.66 116.01 0.00 0.20 ind:pas:1p; +observons observer ver 42.66 116.01 1.27 0.47 imp:pre:1p;ind:pre:1p; +observèrent observer ver 42.66 116.01 0.00 1.69 ind:pas:3p; +observé observer ver m s 42.66 116.01 5.53 6.96 par:pas; +observée observer ver f s 42.66 116.01 0.83 2.03 par:pas; +observées observer ver f p 42.66 116.01 0.22 0.54 par:pas; +observés observer ver m p 42.66 116.01 0.86 1.08 par:pas; +obsessif obsessif adj m s 0.20 0.00 0.13 0.00 +obsession obsession nom f s 8.79 11.15 7.76 8.78 +obsessionnel obsessionnel adj m s 1.43 1.15 0.87 0.41 +obsessionnelle obsessionnel adj f s 1.43 1.15 0.37 0.47 +obsessionnellement obsessionnellement adv 0.01 0.41 0.01 0.41 +obsessionnelles obsessionnel adj f p 1.43 1.15 0.06 0.07 +obsessionnels obsessionnel adj m p 1.43 1.15 0.13 0.20 +obsessions obsession nom f p 8.79 11.15 1.02 2.36 +obsessive obsessif adj f s 0.20 0.00 0.08 0.00 +obsidienne obsidienne nom f s 0.03 0.74 0.03 0.74 +obsidional obsidional adj m s 0.00 0.41 0.00 0.07 +obsidionale obsidional adj f s 0.00 0.41 0.00 0.34 +obsolescence obsolescence nom f s 0.02 0.07 0.02 0.07 +obsolète obsolète adj s 1.19 0.14 0.84 0.07 +obsolètes obsolète adj p 1.19 0.14 0.35 0.07 +obstacle obstacle nom m s 10.65 26.01 6.58 14.12 +obstacles obstacle nom m p 10.65 26.01 4.07 11.89 +obsède obséder ver 11.53 9.12 2.15 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obsèdent obséder ver 11.53 9.12 0.19 0.27 ind:pre:3p; +obsèdes obséder ver 11.53 9.12 0.08 0.00 ind:pre:2s; +obsèques obsèques nom f p 4.32 4.80 4.32 4.80 +obstina obstiner ver 3.77 16.49 0.03 0.88 ind:pas:3s; +obstinai obstiner ver 3.77 16.49 0.00 0.14 ind:pas:1s; +obstinaient obstiner ver 3.77 16.49 0.02 0.74 ind:imp:3p; +obstinais obstiner ver 3.77 16.49 0.00 0.68 ind:imp:1s;ind:imp:2s; +obstinait obstiner ver 3.77 16.49 0.03 4.66 ind:imp:3s; +obstinant obstiner ver 3.77 16.49 0.00 0.88 par:pre; +obstination obstination nom f s 1.26 12.23 1.26 12.09 +obstinations obstination nom f p 1.26 12.23 0.00 0.14 +obstine obstiner ver 3.77 16.49 0.94 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obstinent obstiner ver 3.77 16.49 0.16 0.81 ind:pre:3p; +obstiner obstiner ver 3.77 16.49 0.53 1.35 inf; +obstinera obstiner ver 3.77 16.49 0.01 0.07 ind:fut:3s; +obstineraient obstiner ver 3.77 16.49 0.00 0.07 cnd:pre:3p; +obstinerait obstiner ver 3.77 16.49 0.00 0.07 cnd:pre:3s; +obstineras obstiner ver 3.77 16.49 0.00 0.07 ind:fut:2s; +obstinerez obstiner ver 3.77 16.49 0.00 0.14 ind:fut:2p; +obstineriez obstiner ver 3.77 16.49 0.00 0.07 cnd:pre:2p; +obstineront obstiner ver 3.77 16.49 0.00 0.14 ind:fut:3p; +obstines obstiner ver 3.77 16.49 0.77 0.27 ind:pre:2s;sub:pre:2s; +obstinez obstiner ver 3.77 16.49 0.34 0.27 imp:pre:2p;ind:pre:2p; +obstinions obstiner ver 3.77 16.49 0.00 0.14 ind:imp:1p; +obstinons obstiner ver 3.77 16.49 0.01 0.14 ind:pre:1p; +obstinèrent obstiner ver 3.77 16.49 0.00 0.14 ind:pas:3p; +obstiné obstiner ver m s 3.77 16.49 0.51 1.15 par:pas; +obstinée obstiner ver f s 3.77 16.49 0.28 0.41 par:pas; +obstinées obstiné adj f p 0.55 6.96 0.01 0.68 +obstinément obstinément adv 0.48 10.27 0.48 10.27 +obstinés obstiner ver m p 3.77 16.49 0.14 0.34 par:pas; +obstrua obstruer ver 1.35 4.86 0.01 0.14 ind:pas:3s; +obstruaient obstruer ver 1.35 4.86 0.01 0.68 ind:imp:3p; +obstruait obstruer ver 1.35 4.86 0.03 0.61 ind:imp:3s; +obstruant obstruer ver 1.35 4.86 0.03 0.27 par:pre; +obstructif obstructif adj m s 0.03 0.00 0.01 0.00 +obstruction obstruction nom f s 3.64 0.47 3.20 0.47 +obstructionnisme obstructionnisme nom m s 0.01 0.00 0.01 0.00 +obstructions obstruction nom f p 3.64 0.47 0.44 0.00 +obstructive obstructif adj f s 0.03 0.00 0.01 0.00 +obstrue obstruer ver 1.35 4.86 0.55 0.54 imp:pre:2s;ind:pre:3s; +obstruent obstruer ver 1.35 4.86 0.00 0.47 ind:pre:3p; +obstruer obstruer ver 1.35 4.86 0.04 0.27 inf; +obstrueraient obstruer ver 1.35 4.86 0.00 0.07 cnd:pre:3p; +obstrueront obstruer ver 1.35 4.86 0.10 0.00 ind:fut:3p; +obstruez obstruer ver 1.35 4.86 0.02 0.00 imp:pre:2p;ind:pre:2p; +obstrué obstruer ver m s 1.35 4.86 0.31 0.54 par:pas; +obstruée obstruer ver f s 1.35 4.86 0.07 0.81 par:pas; +obstruées obstruer ver f p 1.35 4.86 0.01 0.27 par:pas; +obstrués obstruer ver m p 1.35 4.86 0.17 0.20 par:pas; +obstétrical obstétrical adj m s 0.01 0.00 0.01 0.00 +obstétricien obstétricien nom m s 0.35 0.07 0.28 0.07 +obstétricienne obstétricien nom f s 0.35 0.07 0.04 0.00 +obstétriciens obstétricien nom m p 0.35 0.07 0.04 0.00 +obstétrique obstétrique nom f s 0.83 0.14 0.83 0.14 +obséda obséder ver 11.53 9.12 0.00 0.14 ind:pas:3s; +obsédaient obséder ver 11.53 9.12 0.00 0.34 ind:imp:3p; +obsédais obséder ver 11.53 9.12 0.04 0.00 ind:imp:1s;ind:imp:2s; +obsédait obséder ver 11.53 9.12 0.40 1.82 ind:imp:3s; +obsédant obsédant adj m s 0.22 6.28 0.12 1.69 +obsédante obsédant adj f s 0.22 6.28 0.05 3.58 +obsédantes obsédant adj f p 0.22 6.28 0.02 0.54 +obsédants obsédant adj m p 0.22 6.28 0.03 0.47 +obséder obséder ver 11.53 9.12 0.12 0.61 inf; +obsédèrent obséder ver 11.53 9.12 0.14 0.07 ind:pas:3p; +obsédé obséder ver m s 11.53 9.12 5.12 2.57 par:pas; +obsédée obséder ver f s 11.53 9.12 2.19 0.95 par:pas; +obsédées obséder ver f p 11.53 9.12 0.10 0.20 par:pas; +obsédés obsédé nom m p 3.73 2.23 1.33 0.95 +obséquieuse obséquieux adj f s 0.15 1.01 0.02 0.20 +obséquieusement obséquieusement adv 0.01 0.14 0.01 0.14 +obséquieuses obséquieux adj f p 0.15 1.01 0.00 0.14 +obséquieux obséquieux adj m s 0.15 1.01 0.13 0.68 +obséquiosité obséquiosité nom f s 0.01 0.54 0.01 0.54 +obtînmes obtenir ver 88.10 80.95 0.01 0.07 ind:pas:1p; +obtînt obtenir ver 88.10 80.95 0.00 0.14 sub:imp:3s; +obtempère obtempérer ver 1.12 2.16 0.18 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obtempéra obtempérer ver 1.12 2.16 0.00 0.47 ind:pas:3s; +obtempérai obtempérer ver 1.12 2.16 0.00 0.07 ind:pas:1s; +obtempéraient obtempérer ver 1.12 2.16 0.01 0.07 ind:imp:3p; +obtempérait obtempérer ver 1.12 2.16 0.00 0.14 ind:imp:3s; +obtempérer obtempérer ver 1.12 2.16 0.82 0.74 inf; +obtempérez obtempérer ver 1.12 2.16 0.07 0.00 imp:pre:2p;ind:pre:2p; +obtempérions obtempérer ver 1.12 2.16 0.00 0.07 ind:imp:1p; +obtempérèrent obtempérer ver 1.12 2.16 0.00 0.07 ind:pas:3p; +obtempéré obtempérer ver m s 1.12 2.16 0.04 0.20 par:pas; +obtenaient obtenir ver 88.10 80.95 0.04 0.68 ind:imp:3p; +obtenais obtenir ver 88.10 80.95 0.51 1.08 ind:imp:1s;ind:imp:2s; +obtenait obtenir ver 88.10 80.95 0.35 2.36 ind:imp:3s; +obtenant obtenir ver 88.10 80.95 0.19 1.22 par:pre; +obtenez obtenir ver 88.10 80.95 2.40 0.20 imp:pre:2p;ind:pre:2p; +obteniez obtenir ver 88.10 80.95 0.27 0.00 ind:imp:2p; +obtenions obtenir ver 88.10 80.95 0.06 0.20 ind:imp:1p; +obtenir obtenir ver 88.10 80.95 36.70 37.77 inf; +obtenons obtenir ver 88.10 80.95 0.87 0.41 imp:pre:1p;ind:pre:1p; +obtention obtention nom f s 0.53 0.47 0.53 0.47 +obtenu obtenir ver m s 88.10 80.95 20.36 14.73 par:pas; +obtenue obtenir ver f s 88.10 80.95 0.67 2.03 par:pas; +obtenues obtenir ver f p 88.10 80.95 0.55 0.68 par:pas; +obtenus obtenir ver m p 88.10 80.95 0.91 1.35 par:pas; +obère obérer ver 0.00 0.20 0.00 0.07 ind:pre:1s; +obèse obèse adj s 1.40 3.58 1.11 2.57 +obèses obèse adj p 1.40 3.58 0.29 1.01 +obtiendra obtenir ver 88.10 80.95 1.24 0.41 ind:fut:3s; +obtiendrai obtenir ver 88.10 80.95 1.62 0.20 ind:fut:1s; +obtiendraient obtenir ver 88.10 80.95 0.00 0.34 cnd:pre:3p; +obtiendrais obtenir ver 88.10 80.95 0.86 0.20 cnd:pre:1s;cnd:pre:2s; +obtiendrait obtenir ver 88.10 80.95 0.66 1.22 cnd:pre:3s; +obtiendras obtenir ver 88.10 80.95 0.85 0.07 ind:fut:2s; +obtiendrez obtenir ver 88.10 80.95 1.39 0.47 ind:fut:2p; +obtiendriez obtenir ver 88.10 80.95 0.17 0.00 cnd:pre:2p; +obtiendrions obtenir ver 88.10 80.95 0.03 0.07 cnd:pre:1p; +obtiendrons obtenir ver 88.10 80.95 0.53 0.41 ind:fut:1p; +obtiendront obtenir ver 88.10 80.95 0.55 0.27 ind:fut:3p; +obtienne obtenir ver 88.10 80.95 1.44 0.88 sub:pre:1s;sub:pre:3s; +obtiennent obtenir ver 88.10 80.95 1.23 0.47 ind:pre:3p; +obtiennes obtenir ver 88.10 80.95 0.33 0.07 sub:pre:2s; +obtiens obtenir ver 88.10 80.95 5.46 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +obtient obtenir ver 88.10 80.95 6.75 3.18 ind:pre:3s; +obtinrent obtenir ver 88.10 80.95 0.20 0.74 ind:pas:3p; +obtins obtenir ver 88.10 80.95 0.16 2.57 ind:pas:1s;ind:pas:2s; +obtinsse obtenir ver 88.10 80.95 0.00 0.07 sub:imp:1s; +obtint obtenir ver 88.10 80.95 0.74 5.95 ind:pas:3s; +obtura obturer ver 0.13 0.61 0.00 0.07 ind:pas:3s; +obturait obturer ver 0.13 0.61 0.00 0.14 ind:imp:3s; +obturateur obturateur adj m s 0.13 0.00 0.12 0.00 +obturateurs obturateur nom m p 0.07 0.27 0.01 0.07 +obturation obturation nom f s 0.06 0.00 0.06 0.00 +obture obturer ver 0.13 0.61 0.01 0.20 ind:pre:1s;ind:pre:3s; +obturer obturer ver 0.13 0.61 0.08 0.07 inf; +obturez obturer ver 0.13 0.61 0.01 0.00 imp:pre:2p; +obturé obturer ver m s 0.13 0.61 0.03 0.07 par:pas; +obturée obturer ver f s 0.13 0.61 0.00 0.07 par:pas; +obtus obtus adj m 1.17 4.66 0.85 2.70 +obtuse obtus adj f s 1.17 4.66 0.32 1.89 +obtuses obtus adj f p 1.17 4.66 0.00 0.07 +obéîmes obéir ver 45.12 45.88 0.01 0.07 ind:pas:1p; +obédience obédience nom f s 0.14 2.36 0.14 2.30 +obédiences obédience nom f p 0.14 2.36 0.00 0.07 +obéi obéir ver m s 45.12 45.88 3.38 4.59 par:pas; +obéie obéir ver f s 45.12 45.88 0.01 0.27 par:pas; +obéir obéir ver 45.12 45.88 13.76 14.26 inf;;inf;;inf;; +obéira obéir ver 45.12 45.88 0.86 0.61 ind:fut:3s; +obéirai obéir ver 45.12 45.88 1.47 0.20 ind:fut:1s; +obéiraient obéir ver 45.12 45.88 0.01 0.07 cnd:pre:3p; +obéirais obéir ver 45.12 45.88 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +obéirait obéir ver 45.12 45.88 0.03 0.07 cnd:pre:3s; +obéiras obéir ver 45.12 45.88 0.32 0.14 ind:fut:2s; +obéirent obéir ver 45.12 45.88 0.00 0.54 ind:pas:3p; +obéirez obéir ver 45.12 45.88 0.33 0.07 ind:fut:2p; +obéiriez obéir ver 45.12 45.88 0.03 0.07 cnd:pre:2p; +obéirons obéir ver 45.12 45.88 0.24 0.07 ind:fut:1p; +obéiront obéir ver 45.12 45.88 0.21 0.07 ind:fut:3p; +obéis obéir ver m p 45.12 45.88 10.93 2.91 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +obéissaient obéir ver 45.12 45.88 0.46 1.15 ind:imp:3p; +obéissais obéir ver 45.12 45.88 0.36 0.54 ind:imp:1s;ind:imp:2s; +obéissait obéir ver 45.12 45.88 0.36 4.05 ind:imp:3s; +obéissance obéissance nom f s 4.24 5.07 4.24 5.07 +obéissant obéissant adj m s 2.59 2.30 0.99 1.15 +obéissante obéissant adj f s 2.59 2.30 1.10 0.41 +obéissantes obéissant adj f p 2.59 2.30 0.11 0.34 +obéissants obéissant adj m p 2.59 2.30 0.39 0.41 +obéisse obéir ver 45.12 45.88 0.39 0.41 sub:pre:1s;sub:pre:3s; +obéissent obéir ver 45.12 45.88 2.04 1.55 ind:pre:3p; +obéisses obéir ver 45.12 45.88 0.05 0.07 sub:pre:2s; +obéissez obéir ver 45.12 45.88 4.88 0.27 imp:pre:2p;ind:pre:2p; +obéissiez obéir ver 45.12 45.88 0.19 0.07 ind:imp:2p; +obéissions obéir ver 45.12 45.88 0.00 0.41 ind:imp:1p; +obéissons obéir ver 45.12 45.88 0.49 0.07 imp:pre:1p;ind:pre:1p; +obéit obéir ver 45.12 45.88 3.54 9.66 ind:pre:3s;ind:pas:3s; +obélisque obélisque nom m s 0.36 1.22 0.10 0.74 +obélisques obélisque nom m p 0.36 1.22 0.27 0.47 +obérant obérer ver 0.00 0.20 0.00 0.07 par:pre; +obérer obérer ver 0.00 0.20 0.00 0.07 inf; +obus obus nom m 5.13 31.82 5.13 31.82 +obusier obusier nom m s 0.05 0.68 0.01 0.07 +obusiers obusier nom m p 0.05 0.68 0.04 0.61 +obésité obésité nom f s 0.73 1.08 0.73 0.95 +obésités obésité nom f p 0.73 1.08 0.00 0.14 +obverse obvers nom f s 0.00 0.07 0.00 0.07 +obvie obvie adj s 0.00 0.07 0.00 0.07 +obvier obvier ver 0.00 0.14 0.00 0.14 inf; +ocarina ocarina nom m s 0.03 0.27 0.03 0.20 +ocarinas ocarina nom m p 0.03 0.27 0.00 0.07 +occase occase nom f s 1.25 5.34 1.14 4.53 +occases occase nom f p 1.25 5.34 0.11 0.81 +occasion occasion nom f s 61.89 105.74 55.39 92.09 +occasionna occasionner ver 0.70 1.69 0.00 0.07 ind:pas:3s; +occasionnait occasionner ver 0.70 1.69 0.00 0.14 ind:imp:3s; +occasionnant occasionner ver 0.70 1.69 0.02 0.07 par:pre; +occasionne occasionner ver 0.70 1.69 0.02 0.34 ind:pre:1s;ind:pre:3s; +occasionnel occasionnel adj m s 0.99 1.22 0.46 0.54 +occasionnelle occasionnel adj f s 0.99 1.22 0.33 0.14 +occasionnellement occasionnellement adv 0.59 0.27 0.59 0.27 +occasionnelles occasionnel adj f p 0.99 1.22 0.06 0.14 +occasionnels occasionnel adj m p 0.99 1.22 0.14 0.41 +occasionnent occasionner ver 0.70 1.69 0.01 0.07 ind:pre:3p; +occasionner occasionner ver 0.70 1.69 0.09 0.20 inf; +occasionnèrent occasionner ver 0.70 1.69 0.00 0.07 ind:pas:3p; +occasionné occasionner ver m s 0.70 1.69 0.23 0.07 par:pas; +occasionnée occasionner ver f s 0.70 1.69 0.12 0.14 par:pas; +occasionnées occasionner ver f p 0.70 1.69 0.03 0.20 par:pas; +occasionnés occasionner ver m p 0.70 1.69 0.19 0.34 par:pas; +occasions occasion nom f p 61.89 105.74 6.50 13.65 +occident occident nom m s 0.38 1.69 0.38 1.69 +occidental occidental adj m s 5.07 15.61 1.50 3.65 +occidentale occidental adj f s 5.07 15.61 2.15 8.65 +occidentales occidental adj f p 5.07 15.61 0.36 1.69 +occidentalisation occidentalisation nom f s 0.10 0.14 0.10 0.14 +occidentalise occidentaliser ver 0.01 0.07 0.01 0.07 ind:pre:3s; +occidentalisme occidentalisme nom m s 0.00 0.07 0.00 0.07 +occidentaux occidental adj m p 5.07 15.61 1.06 1.62 +occipital occipital adj m s 0.49 0.20 0.38 0.14 +occipitale occipital adj f s 0.49 0.20 0.08 0.00 +occipitales occipital adj f p 0.49 0.20 0.01 0.07 +occipitaux occipital adj m p 0.49 0.20 0.02 0.00 +occiput occiput nom m s 0.19 1.69 0.19 1.69 +occire occire ver 0.10 0.41 0.10 0.41 inf; +occis occis adj m 0.28 0.68 0.28 0.68 +occitan occitan nom m s 0.00 0.34 0.00 0.34 +occitane occitan adj f s 0.01 0.41 0.01 0.27 +occitans occitan adj m p 0.01 0.41 0.00 0.07 +occlusion occlusion nom f s 0.31 0.34 0.31 0.34 +occlut occlure ver 0.00 0.07 0.00 0.07 ind:pas:3s; +occulta occulter ver 0.86 1.01 0.00 0.07 ind:pas:3s; +occultaient occulter ver 0.86 1.01 0.00 0.07 ind:imp:3p; +occultait occulter ver 0.86 1.01 0.01 0.34 ind:imp:3s; +occultant occulter ver 0.86 1.01 0.04 0.00 par:pre; +occultation occultation nom f s 0.28 0.27 0.28 0.20 +occultations occultation nom f p 0.28 0.27 0.00 0.07 +occulte occulte adj s 2.28 3.24 0.96 1.76 +occultement occultement adv 0.00 0.07 0.00 0.07 +occultent occulter ver 0.86 1.01 0.12 0.07 ind:pre:3p; +occulter occulter ver 0.86 1.01 0.29 0.34 inf; +occultera occulter ver 0.86 1.01 0.01 0.00 ind:fut:3s; +occultes occulte adj p 2.28 3.24 1.33 1.49 +occultez occulter ver 0.86 1.01 0.07 0.00 imp:pre:2p; +occultisme occultisme nom m s 0.33 0.34 0.33 0.27 +occultismes occultisme nom m p 0.33 0.34 0.00 0.07 +occultiste occultiste nom s 0.11 0.14 0.01 0.00 +occultistes occultiste nom p 0.11 0.14 0.10 0.14 +occulté occulter ver m s 0.86 1.01 0.22 0.14 par:pas; +occultée occulter ver f s 0.86 1.01 0.08 0.00 par:pas; +occupa occuper ver 375.14 219.80 0.10 3.78 ind:pas:3s; +occupai occuper ver 375.14 219.80 0.01 0.61 ind:pas:1s; +occupaient occuper ver 375.14 219.80 0.93 10.34 ind:imp:3p; +occupais occuper ver 375.14 219.80 3.37 3.45 ind:imp:1s;ind:imp:2s; +occupait occuper ver 375.14 219.80 4.36 31.42 ind:imp:3s; +occupant occupant nom m s 2.38 10.07 0.62 3.99 +occupante occupant nom f s 2.38 10.07 0.03 0.14 +occupantes occupant adj f p 0.18 0.81 0.01 0.07 +occupants occupant nom m p 2.38 10.07 1.73 5.88 +occupas occuper ver 375.14 219.80 0.00 0.07 ind:pas:2s; +occupation occupation nom f s 6.71 30.61 4.91 22.84 +occupations occupation nom f p 6.71 30.61 1.80 7.77 +occupe occuper ver 375.14 219.80 139.84 37.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +occupent occuper ver 375.14 219.80 6.45 7.30 ind:pre:3p; +occuper occuper ver 375.14 219.80 97.22 56.69 ind:pre:2p;inf; +occupera occuper ver 375.14 219.80 10.27 2.50 ind:fut:3s; +occuperai occuper ver 375.14 219.80 10.51 1.69 ind:fut:1s; +occuperaient occuper ver 375.14 219.80 0.31 0.54 cnd:pre:3p; +occuperais occuper ver 375.14 219.80 1.03 0.34 cnd:pre:1s;cnd:pre:2s; +occuperait occuper ver 375.14 219.80 0.67 2.50 cnd:pre:3s; +occuperas occuper ver 375.14 219.80 1.09 0.41 ind:fut:2s; +occuperez occuper ver 375.14 219.80 0.56 0.20 ind:fut:2p; +occuperions occuper ver 375.14 219.80 0.03 0.07 cnd:pre:1p; +occuperons occuper ver 375.14 219.80 0.79 0.00 ind:fut:1p; +occuperont occuper ver 375.14 219.80 1.61 0.61 ind:fut:3p; +occupes occuper ver 375.14 219.80 12.60 0.95 ind:pre:2s;sub:pre:2s; +occupez occuper ver 375.14 219.80 15.36 2.23 imp:pre:2p;ind:pre:2p; +occupiez occuper ver 375.14 219.80 1.08 0.07 ind:imp:2p; +occupions occuper ver 375.14 219.80 0.06 1.35 ind:imp:1p; +occupons occuper ver 375.14 219.80 2.23 0.95 imp:pre:1p;ind:pre:1p; +occupât occuper ver 375.14 219.80 0.00 0.88 sub:imp:3s; +occupèrent occuper ver 375.14 219.80 0.16 1.08 ind:pas:3p; +occupé occuper ver m s 375.14 219.80 41.37 25.47 par:pas; +occupée occuper ver f s 375.14 219.80 15.71 13.31 par:pas; +occupées occuper ver f p 375.14 219.80 1.67 3.31 par:pas; +occupés occuper ver m p 375.14 219.80 5.24 7.36 par:pas; +occurrence occurrence nom f s 1.57 7.43 1.56 7.16 +occurrences occurrence nom f p 1.57 7.43 0.01 0.27 +occurrentes occurrent adj f p 0.00 0.07 0.00 0.07 +ocelles ocelle nom m p 0.00 0.14 0.00 0.14 +ocellée ocellé adj f s 0.00 0.41 0.00 0.20 +ocellés ocellé adj m p 0.00 0.41 0.00 0.20 +ocelot ocelot nom m s 0.20 0.14 0.17 0.07 +ocelots ocelot nom m p 0.20 0.14 0.03 0.07 +âcre âcre adj s 0.47 11.49 0.45 10.14 +ocre ocre nom s 0.29 4.46 0.26 3.78 +âcrement âcrement adv 0.00 0.14 0.00 0.14 +âcres âcre adj p 0.47 11.49 0.01 1.35 +ocres ocre nom p 0.29 4.46 0.04 0.68 +âcreté âcreté nom f s 0.11 0.95 0.11 0.95 +ocreux ocreux adj m 0.00 0.20 0.00 0.20 +ocré ocrer ver m s 0.00 0.34 0.00 0.07 par:pas; +ocrée ocré adj f s 0.00 0.27 0.00 0.20 +ocrées ocrer ver f p 0.00 0.34 0.00 0.07 par:pas; +ocrés ocrer ver m p 0.00 0.34 0.00 0.14 par:pas; +octane octane nom m s 0.09 0.00 0.09 0.00 +octant octant nom m s 0.00 0.14 0.00 0.14 +octante octante adj_num 0.00 0.14 0.00 0.14 +octave octave nom f s 1.11 1.82 1.07 1.42 +octaves octave nom f p 1.11 1.82 0.03 0.41 +octavia octavier ver 0.34 0.00 0.28 0.00 ind:pas:3s; +octavie octavier ver 0.34 0.00 0.07 0.00 imp:pre:2s; +octavo octavo adv 0.01 0.00 0.01 0.00 +octet octet nom m s 0.02 0.00 0.01 0.00 +octets octet nom m p 0.02 0.00 0.01 0.00 +octidi octidi nom m s 0.00 0.07 0.00 0.07 +octobre octobre nom m 11.78 36.28 11.78 36.28 +octogonal octogonal adj m s 0.23 1.82 0.20 0.74 +octogonale octogonal adj f s 0.23 1.82 0.03 0.95 +octogonales octogonal adj f p 0.23 1.82 0.00 0.07 +octogonaux octogonal adj m p 0.23 1.82 0.00 0.07 +octogone octogone nom m s 0.04 0.61 0.04 0.41 +octogones octogone nom m p 0.04 0.61 0.00 0.20 +octogénaire octogénaire nom s 0.22 0.41 0.21 0.27 +octogénaires octogénaire nom p 0.22 0.41 0.01 0.14 +octosyllabe octosyllabe nom m s 0.14 0.34 0.00 0.07 +octosyllabes octosyllabe nom m p 0.14 0.34 0.14 0.27 +octroi octroi nom m s 0.18 2.03 0.17 1.82 +octroie octroyer ver 1.35 3.58 0.41 0.47 ind:pre:1s;ind:pre:3s; +octroient octroyer ver 1.35 3.58 0.03 0.14 ind:pre:3p; +octroiera octroyer ver 1.35 3.58 0.02 0.07 ind:fut:3s; +octrois octroi nom m p 0.18 2.03 0.01 0.20 +octroya octroyer ver 1.35 3.58 0.01 0.47 ind:pas:3s; +octroyaient octroyer ver 1.35 3.58 0.00 0.27 ind:imp:3p; +octroyait octroyer ver 1.35 3.58 0.01 0.20 ind:imp:3s; +octroyant octroyer ver 1.35 3.58 0.02 0.14 par:pre; +octroyer octroyer ver 1.35 3.58 0.11 0.27 inf; +octroyons octroyer ver 1.35 3.58 0.01 0.07 ind:pre:1p; +octroyât octroyer ver 1.35 3.58 0.00 0.07 sub:imp:3s; +octroyé octroyer ver m s 1.35 3.58 0.59 0.88 par:pas; +octroyée octroyer ver f s 1.35 3.58 0.13 0.27 par:pas; +octroyées octroyer ver f p 1.35 3.58 0.00 0.14 par:pas; +octroyés octroyer ver m p 1.35 3.58 0.00 0.14 par:pas; +octuor octuor nom m s 0.01 0.14 0.01 0.14 +octuple octuple adj f s 0.02 0.00 0.02 0.00 +océan océan nom m s 24.89 28.78 22.86 24.93 +océane océan adj f s 0.02 0.47 0.02 0.47 +océanienne océanien adj f s 0.00 0.07 0.00 0.07 +océanique océanique adj s 0.26 0.81 0.22 0.68 +océaniques océanique adj m p 0.26 0.81 0.04 0.14 +océanographe océanographe nom s 0.07 0.00 0.07 0.00 +océanographie océanographie nom f s 0.05 0.00 0.05 0.00 +océanographique océanographique adj s 0.33 0.00 0.30 0.00 +océanographiques océanographique adj m p 0.33 0.00 0.03 0.00 +océanologie océanologie nom f s 0.01 0.00 0.01 0.00 +océanologue océanologue nom s 0.08 0.00 0.08 0.00 +océans océan nom m p 24.89 28.78 2.03 3.85 +oculaire oculaire adj s 3.36 0.81 1.98 0.20 +oculaires oculaire adj p 3.36 0.81 1.38 0.61 +oculi oculus nom m p 0.02 0.00 0.01 0.00 +oculiste oculiste nom s 0.37 0.81 0.37 0.74 +oculistes oculiste nom p 0.37 0.81 0.00 0.07 +oculomoteur oculomoteur adj m s 0.01 0.00 0.01 0.00 +oculus oculus nom m 0.02 0.00 0.01 0.00 +ocytocine ocytocine nom f s 0.03 0.00 0.03 0.00 +odalisque odalisque nom f s 0.38 1.28 0.22 0.54 +odalisques odalisque nom f p 0.38 1.28 0.16 0.74 +ode ode nom f s 0.96 0.81 0.94 0.61 +odelette odelette nom f s 0.01 0.07 0.01 0.00 +odelettes odelette nom f p 0.01 0.07 0.00 0.07 +odes ode nom f p 0.96 0.81 0.03 0.20 +odeur odeur nom f s 49.57 195.68 47.19 159.86 +odeurs odeur nom f p 49.57 195.68 2.38 35.81 +odieuse odieux adj f s 8.59 14.32 2.14 3.78 +odieusement odieusement adv 0.03 0.61 0.03 0.61 +odieuses odieux adj f p 8.59 14.32 0.23 1.01 +odieux odieux adj m 8.59 14.32 6.22 9.53 +odomètre odomètre nom m s 0.10 0.00 0.10 0.00 +odontologie odontologie nom f s 0.13 0.00 0.13 0.00 +odontologiste odontologiste nom s 0.01 0.00 0.01 0.00 +odontologues odontologue nom p 0.01 0.00 0.01 0.00 +odorant odorant adj m s 0.66 6.82 0.08 1.49 +odorante odorant adj f s 0.66 6.82 0.16 3.11 +odorantes odorant adj f p 0.66 6.82 0.40 1.35 +odorants odorant adj m p 0.66 6.82 0.03 0.88 +odorat odorat nom m s 1.28 2.57 1.28 2.57 +odoriférant odoriférant adj m s 0.01 0.74 0.00 0.14 +odoriférante odoriférant adj f s 0.01 0.74 0.00 0.20 +odoriférantes odoriférant adj f p 0.01 0.74 0.01 0.14 +odoriférants odoriférant adj m p 0.01 0.74 0.00 0.27 +odéon odéon nom m s 0.00 0.34 0.00 0.34 +odyssée odyssée nom f s 0.24 1.01 0.23 0.95 +odyssées odyssée nom f p 0.24 1.01 0.01 0.07 +oecuménique oecuménique adj s 0.33 0.41 0.33 0.34 +oecuméniques oecuménique adj f p 0.33 0.41 0.00 0.07 +oecuménisme oecuménisme nom m s 0.01 0.34 0.01 0.34 +oedipe oedipe nom m s 0.14 0.41 0.14 0.41 +oedipien oedipien adj m s 0.07 0.14 0.06 0.14 +oedipienne oedipien adj f s 0.07 0.14 0.01 0.00 +oedème oedème nom m s 1.26 0.61 1.25 0.54 +oedèmes oedème nom m p 1.26 0.61 0.01 0.07 +oedémateuse oedémateux adj f s 0.01 0.00 0.01 0.00 +oeil_de_boeuf oeil_de_boeuf nom m s 0.00 0.95 0.00 0.47 +oeil oeil nom m s 413.04 1234.59 97.13 278.51 +oeillade oeillade nom f s 0.05 1.82 0.02 0.74 +oeillades oeillade nom f p 0.05 1.82 0.03 1.08 +oeillet oeillet nom m s 3.53 6.08 0.39 2.09 +oeilleton oeilleton nom m s 0.00 1.35 0.00 1.15 +oeilletons oeilleton nom m p 0.00 1.35 0.00 0.20 +oeillets oeillet nom m p 3.53 6.08 3.13 3.99 +oeillette oeillette nom f s 0.00 0.14 0.00 0.14 +oeillère oeillère nom f s 0.44 1.82 0.00 0.07 +oeillères oeillère nom f p 0.44 1.82 0.44 1.76 +oeil_de_boeuf oeil_de_boeuf nom m p 0.00 0.95 0.00 0.47 +oeil_de_perdrix oeil_de_perdrix nom m p 0.00 0.14 0.00 0.14 +oeils oeil nom m p 413.04 1234.59 0.01 0.41 +oenologie oenologie nom f s 0.01 0.00 0.01 0.00 +oenologique oenologique adj f s 0.00 0.07 0.00 0.07 +oenologues oenologue nom p 0.00 0.14 0.00 0.14 +oenophile oenophile adj s 0.00 0.07 0.00 0.07 +oenothera oenothera nom m s 0.01 0.00 0.01 0.00 +oenothère oenothère nom m s 0.00 0.07 0.00 0.07 +oesophage oesophage nom m s 0.48 1.22 0.48 1.08 +oesophages oesophage nom m p 0.48 1.22 0.00 0.14 +oesophagien oesophagien adj m s 0.06 0.00 0.02 0.00 +oesophagienne oesophagien adj f s 0.06 0.00 0.01 0.00 +oesophagiennes oesophagien adj f p 0.06 0.00 0.03 0.00 +oestrogène oestrogène nom m s 0.28 0.14 0.04 0.00 +oestrogènes oestrogène nom m p 0.28 0.14 0.24 0.14 +oeuf oeuf nom m s 39.40 50.14 13.53 20.34 +oeufs oeuf nom m p 39.40 50.14 25.88 29.80 +oeuvraient oeuvrer ver 2.08 4.26 0.00 0.20 ind:imp:3p; +oeuvrait oeuvrer ver 2.08 4.26 0.14 0.61 ind:imp:3s; +oeuvrant oeuvrer ver 2.08 4.26 0.14 0.54 par:pre; +oeuvre oeuvre nom s 30.10 92.23 23.38 68.11 +oeuvrent oeuvrer ver 2.08 4.26 0.16 0.20 ind:pre:3p; +oeuvrer oeuvrer ver 2.08 4.26 0.41 1.01 inf; +oeuvrera oeuvrer ver 2.08 4.26 0.03 0.00 ind:fut:3s; +oeuvres oeuvre nom p 30.10 92.23 6.72 24.12 +oeuvrette oeuvrette nom f s 0.00 0.20 0.00 0.07 +oeuvrettes oeuvrette nom f p 0.00 0.20 0.00 0.14 +oeuvrez oeuvrer ver 2.08 4.26 0.03 0.00 imp:pre:2p; +oeuvrions oeuvrer ver 2.08 4.26 0.00 0.07 ind:imp:1p; +oeuvré oeuvrer ver m s 2.08 4.26 0.11 0.74 par:pas; +off_shore off_shore nom m s 0.07 0.00 0.07 0.00 +off off adj 3.27 0.54 3.27 0.54 +offensa offenser ver 15.78 6.35 0.03 0.07 ind:pas:3s; +offensaient offenser ver 15.78 6.35 0.00 0.20 ind:imp:3p; +offensais offenser ver 15.78 6.35 0.00 0.07 ind:imp:1s; +offensait offenser ver 15.78 6.35 0.13 0.54 ind:imp:3s; +offensant offensant adj m s 0.93 1.01 0.82 0.34 +offensante offensant adj f s 0.93 1.01 0.07 0.41 +offensantes offensant adj f p 0.93 1.01 0.01 0.07 +offensants offensant adj m p 0.93 1.01 0.02 0.20 +offense offense nom f s 7.45 3.24 5.41 2.03 +offensent offenser ver 15.78 6.35 0.34 0.34 ind:pre:3p; +offenser offenser ver 15.78 6.35 6.59 1.76 inf; +offensera offenser ver 15.78 6.35 0.04 0.00 ind:fut:3s; +offenserai offenser ver 15.78 6.35 0.01 0.07 ind:fut:1s; +offenseraient offenser ver 15.78 6.35 0.11 0.14 cnd:pre:3p; +offenserais offenser ver 15.78 6.35 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +offenserez offenser ver 15.78 6.35 0.01 0.00 ind:fut:2p; +offenseront offenser ver 15.78 6.35 0.01 0.00 ind:fut:3p; +offenses offense nom f p 7.45 3.24 2.04 1.22 +offenseur offenseur nom m s 0.66 0.14 0.55 0.14 +offenseurs offenseur nom m p 0.66 0.14 0.11 0.00 +offensez offenser ver 15.78 6.35 0.64 0.07 imp:pre:2p;ind:pre:2p; +offensif offensif adj m s 0.85 2.36 0.32 0.61 +offensifs offensif adj m p 0.85 2.36 0.07 0.07 +offensive offensive nom f s 3.12 12.30 2.91 11.96 +offensives offensive nom f p 3.12 12.30 0.21 0.34 +offensons offenser ver 15.78 6.35 0.00 0.07 ind:pre:1p; +offensèrent offenser ver 15.78 6.35 0.00 0.07 ind:pas:3p; +offensé offenser ver m s 15.78 6.35 4.09 1.55 par:pas; +offensée offenser ver f s 15.78 6.35 0.97 0.47 par:pas; +offensées offensé adj f p 2.19 2.09 0.17 0.14 +offensés offenser ver m p 15.78 6.35 1.15 0.14 par:pas; +offert offrir ver m s 177.80 213.99 34.01 28.51 par:pas; +offerte offrir ver f s 177.80 213.99 5.08 12.03 par:pas; +offertes offrir ver f p 177.80 213.99 0.93 3.85 par:pas; +offertoire offertoire nom m s 0.00 0.34 0.00 0.34 +offerts offrir ver m p 177.80 213.99 1.41 3.45 par:pas; +office office nom s 6.37 25.00 6.13 21.28 +offices office nom m p 6.37 25.00 0.25 3.72 +officiaient officier ver 7.15 6.69 0.00 0.41 ind:imp:3p; +officiais officier ver 7.15 6.69 0.00 0.14 ind:imp:1s; +officiait officier ver 7.15 6.69 0.05 1.08 ind:imp:3s; +official official nom m s 0.03 0.00 0.03 0.00 +officialisait officialiser ver 0.23 0.07 0.00 0.07 ind:imp:3s; +officialise officialiser ver 0.23 0.07 0.03 0.00 ind:pre:1s;ind:pre:3s; +officialiser officialiser ver 0.23 0.07 0.14 0.00 inf; +officialisez officialiser ver 0.23 0.07 0.01 0.00 imp:pre:2p; +officialisé officialiser ver m s 0.23 0.07 0.04 0.00 par:pas; +officialité officialité nom f s 0.00 0.20 0.00 0.20 +officiant officiant nom m s 0.21 1.62 0.21 1.08 +officiants officiant adj m p 0.01 0.20 0.01 0.07 +officie officier ver 7.15 6.69 0.08 0.61 ind:pre:1s;ind:pre:3s; +officiel officiel adj m s 21.36 32.84 9.54 11.89 +officielle officiel adj f s 21.36 32.84 8.45 12.09 +officiellement officiellement adv 10.41 7.36 10.41 7.36 +officielles officiel adj f p 21.36 32.84 1.59 4.05 +officiels officiel adj m p 21.36 32.84 1.78 4.80 +officient officier ver 7.15 6.69 0.01 0.07 ind:pre:3p; +officier officier nom m s 55.35 79.05 35.47 35.68 +officiers officier nom m p 55.35 79.05 19.87 43.38 +officieuse officielle adj f s 0.53 0.47 0.38 0.20 +officieusement officieusement adv 1.13 0.54 1.13 0.54 +officieuses officielle adj f p 0.53 0.47 0.15 0.27 +officieux officieux adj m 0.92 0.88 0.92 0.88 +officiez officier ver 7.15 6.69 0.02 0.00 ind:pre:2p; +officine officine nom f s 0.17 2.64 0.17 1.96 +officines officine nom f p 0.17 2.64 0.00 0.68 +officions officier ver 7.15 6.69 0.01 0.00 ind:pre:1p; +officière officier nom f s 55.35 79.05 0.01 0.00 +officié officier ver m s 7.15 6.69 0.05 0.00 par:pas; +offrît offrir ver 177.80 213.99 0.00 0.47 sub:imp:3s; +offraient offrir ver 177.80 213.99 0.71 8.38 ind:imp:3p; +offrais offrir ver 177.80 213.99 0.81 1.96 ind:imp:1s;ind:imp:2s; +offrait offrir ver 177.80 213.99 2.96 31.76 ind:imp:3s; +offrande offrande nom f s 4.54 6.89 3.97 4.53 +offrandes offrande nom f p 4.54 6.89 0.57 2.36 +offrant offrir ver 177.80 213.99 2.13 10.54 par:pre; +offrante offrant adj f s 1.09 0.47 0.01 0.00 +offrantes offrant adj f p 1.09 0.47 0.00 0.07 +offrants offrant adj m p 1.09 0.47 0.02 0.00 +offre offrir ver 177.80 213.99 51.81 29.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +offrent offrir ver 177.80 213.99 4.29 4.53 ind:pre:3p; +offres offrir ver 177.80 213.99 4.78 0.68 ind:pre:2s;sub:pre:2s; +offrez offrir ver 177.80 213.99 5.50 1.01 imp:pre:2p;ind:pre:2p; +offriez offrir ver 177.80 213.99 0.26 0.14 ind:imp:2p; +offrions offrir ver 177.80 213.99 0.07 0.34 ind:imp:1p; +offrir offrir ver 177.80 213.99 52.06 50.34 inf;; +offrira offrir ver 177.80 213.99 1.15 1.15 ind:fut:3s; +offrirai offrir ver 177.80 213.99 1.92 0.81 ind:fut:1s; +offriraient offrir ver 177.80 213.99 0.02 0.54 cnd:pre:3p; +offrirais offrir ver 177.80 213.99 1.23 0.34 cnd:pre:1s;cnd:pre:2s; +offrirait offrir ver 177.80 213.99 0.70 2.43 cnd:pre:3s; +offriras offrir ver 177.80 213.99 0.73 0.00 ind:fut:2s; +offrirent offrir ver 177.80 213.99 0.02 1.35 ind:pas:3p; +offrirez offrir ver 177.80 213.99 0.13 0.20 ind:fut:2p; +offririez offrir ver 177.80 213.99 0.06 0.07 cnd:pre:2p; +offrirons offrir ver 177.80 213.99 0.37 0.07 ind:fut:1p; +offriront offrir ver 177.80 213.99 0.24 0.27 ind:fut:3p; +offris offrir ver 177.80 213.99 0.06 1.69 ind:pas:1s; +offrit offrir ver 177.80 213.99 1.55 16.55 ind:pas:3s; +offrons offrir ver 177.80 213.99 2.81 0.74 imp:pre:1p;ind:pre:1p; +offset offset nom s 0.01 0.20 0.01 0.20 +offshore offshore adj 0.43 0.00 0.43 0.00 +offuscation offuscation nom f s 0.00 0.14 0.00 0.07 +offuscations offuscation nom f p 0.00 0.14 0.00 0.07 +offusqua offusquer ver 1.04 4.93 0.01 0.47 ind:pas:3s; +offusquaient offusquer ver 1.04 4.93 0.00 0.41 ind:imp:3p; +offusquais offusquer ver 1.04 4.93 0.01 0.07 ind:imp:1s; +offusquait offusquer ver 1.04 4.93 0.01 0.68 ind:imp:3s; +offusquant offusquant adj m s 0.03 0.07 0.03 0.07 +offusque offusquer ver 1.04 4.93 0.30 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +offusquent offusquer ver 1.04 4.93 0.01 0.20 ind:pre:3p; +offusquer offusquer ver 1.04 4.93 0.23 0.74 inf; +offusquerai offusquer ver 1.04 4.93 0.04 0.00 ind:fut:1s; +offusquerait offusquer ver 1.04 4.93 0.01 0.00 cnd:pre:3s; +offusquerez offusquer ver 1.04 4.93 0.01 0.00 ind:fut:2p; +offusques offusquer ver 1.04 4.93 0.00 0.07 ind:pre:2s; +offusquât offusquer ver 1.04 4.93 0.00 0.07 sub:imp:3s; +offusquèrent offusquer ver 1.04 4.93 0.00 0.14 ind:pas:3p; +offusqué offusquer ver m s 1.04 4.93 0.27 0.34 par:pas; +offusquée offusquer ver f s 1.04 4.93 0.12 0.61 par:pas; +offusquées offusquer ver f p 1.04 4.93 0.00 0.14 par:pas; +offusqués offusquer ver m p 1.04 4.93 0.00 0.20 par:pas; +oflag oflag nom m s 0.00 0.27 0.00 0.20 +oflags oflag nom m p 0.00 0.27 0.00 0.07 +âge âge nom m s 152.59 217.43 150.45 205.27 +âges âge nom m p 152.59 217.43 2.13 12.16 +âgisme âgisme nom m s 0.02 0.00 0.02 0.00 +ogival ogival adj m s 0.00 0.41 0.00 0.41 +ogive ogive nom f s 2.35 3.45 1.40 1.69 +ogives ogive nom f p 2.35 3.45 0.95 1.76 +ognons ognon nom m p 0.11 0.00 0.11 0.00 +ogre ogre nom m s 2.83 5.95 2.52 4.66 +ogres ogre nom m p 2.83 5.95 0.30 1.28 +ogresse ogresse nom f s 0.31 1.89 0.31 1.55 +ogresses ogresse nom f p 0.31 1.89 0.00 0.34 +âgé âgé adj m s 19.81 30.74 7.67 14.39 +âgée âgé adj f s 19.81 30.74 7.75 8.92 +âgées âgé adj f p 19.81 30.74 1.91 1.69 +âgés âgé adj m p 19.81 30.74 2.48 5.74 +oh oh ono 897.52 197.09 897.52 197.09 +ohms ohm nom m p 0.02 0.14 0.02 0.14 +ohé ohé ono 5.24 1.28 5.24 1.28 +oie oie nom f s 9.15 9.32 5.42 5.20 +oies oie nom f p 9.15 9.32 3.73 4.12 +oignait oindre ver 0.56 1.62 0.00 0.14 ind:imp:3s; +oignant oindre ver 0.56 1.62 0.00 0.07 par:pre; +oigne oindre ver 0.56 1.62 0.14 0.07 sub:pre:1s;sub:pre:3s; +oignes oindre ver 0.56 1.62 0.00 0.20 sub:pre:2s; +oignez oindre ver 0.56 1.62 0.03 0.00 imp:pre:2p; +oignit oindre ver 0.56 1.62 0.00 0.07 ind:pas:3s; +oignon oignon nom m s 19.98 15.54 4.35 5.34 +oignons oignon nom m p 19.98 15.54 15.63 10.20 +oille oille nom f s 0.00 0.07 0.00 0.07 +oindra oindre ver 0.56 1.62 0.00 0.07 ind:fut:3s; +oindre oindre ver 0.56 1.62 0.12 0.20 inf; +oing oing nom m s 0.00 0.07 0.00 0.07 +oins oindre ver 0.56 1.62 0.16 0.07 ind:pre:1s;ind:pre:2s; +oint oint nom m s 0.10 0.27 0.10 0.14 +ointe oindre ver f s 0.56 1.62 0.00 0.20 par:pas; +ointes oindre ver f p 0.56 1.62 0.00 0.27 par:pas; +oints oint nom m p 0.10 0.27 0.00 0.14 +ois ouïr ver 5.72 3.78 1.16 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +oiseau_clé oiseau_clé nom m s 0.01 0.00 0.01 0.00 +oiseau_lyre oiseau_lyre nom m s 0.00 0.07 0.00 0.07 +oiseau_mouche oiseau_mouche nom m s 0.10 0.27 0.08 0.14 +oiseau_vedette oiseau_vedette nom m s 0.01 0.00 0.01 0.00 +oiseau oiseau nom m s 77.73 113.04 43.78 47.97 +oiseau_mouche oiseau_mouche nom m p 0.10 0.27 0.01 0.14 +oiseaux oiseau nom m p 77.73 113.04 33.96 65.07 +oiselet oiselet nom m s 0.13 0.54 0.12 0.34 +oiselets oiselet nom m p 0.13 0.54 0.01 0.20 +oiseleur oiseleur nom m s 0.07 0.54 0.06 0.47 +oiseleurs oiseleur nom m p 0.07 0.54 0.01 0.07 +oiselez oiseler ver 0.00 0.07 0.00 0.07 imp:pre:2p; +oiselier oiselier nom m s 0.01 0.20 0.00 0.07 +oiseliers oiselier nom m p 0.01 0.20 0.01 0.07 +oiselière oiselier nom f s 0.01 0.20 0.00 0.07 +oiselle oiselle nom f s 0.08 0.41 0.06 0.34 +oisellerie oisellerie nom f s 0.04 0.00 0.04 0.00 +oiselles oiselle nom f p 0.08 0.41 0.02 0.07 +oiseuse oiseux adj f s 0.28 2.36 0.01 0.47 +oiseuses oiseux adj f p 0.28 2.36 0.13 1.01 +oiseux oiseux adj m 0.28 2.36 0.14 0.88 +oisif oisif adj m s 0.85 2.03 0.36 0.41 +oisifs oisif nom m p 0.10 1.28 0.06 1.01 +oisillon oisillon nom m s 0.46 1.22 0.30 0.68 +oisillons oisillon nom m p 0.46 1.22 0.15 0.54 +oisive oisif adj f s 0.85 2.03 0.35 0.95 +oisivement oisivement adv 0.02 0.00 0.02 0.00 +oisives oisif adj f p 0.85 2.03 0.08 0.20 +oisiveté oisiveté nom f s 0.59 3.65 0.59 3.65 +oison oison nom m s 0.02 0.07 0.02 0.00 +oisons oison nom m p 0.02 0.07 0.00 0.07 +oit ouïr ver 5.72 3.78 0.13 0.00 ind:pre:3s; +ok ok adj_sup 234.89 1.15 234.89 1.15 +oka oka nom m s 0.00 0.07 0.00 0.07 +okapi okapi nom m s 0.08 0.00 0.08 0.00 +okoumé okoumé nom m s 0.00 0.14 0.00 0.14 +ola ola nom f s 1.31 0.00 1.31 0.00 +olfactif olfactif adj m s 0.47 1.01 0.11 0.54 +olfactifs olfactif adj m p 0.47 1.01 0.03 0.07 +olfactive olfactif adj f s 0.47 1.01 0.06 0.27 +olfactives olfactif adj f p 0.47 1.01 0.28 0.14 +olfactomètre olfactomètre nom m s 0.00 0.07 0.00 0.07 +olibrius olibrius nom m 0.03 0.20 0.03 0.20 +olifant olifant nom m s 0.14 0.41 0.14 0.41 +oligarchie oligarchie nom f s 0.12 0.07 0.12 0.07 +oligo_élément oligo_élément nom m p 0.00 0.14 0.00 0.14 +olivaies olivaie nom f p 0.00 0.07 0.00 0.07 +olive olive nom f s 5.42 8.85 2.54 4.12 +oliver oliver nom m s 0.06 0.00 0.06 0.00 +oliveraie oliveraie nom f s 1.08 0.47 1.08 0.07 +oliveraies oliveraie nom f p 1.08 0.47 0.00 0.41 +olives olive nom f p 5.42 8.85 2.88 4.73 +olivette olivette nom f s 0.00 0.68 0.00 0.07 +olivettes olivette nom f p 0.00 0.68 0.00 0.61 +olivier olivier nom m s 2.09 12.84 0.77 4.19 +oliviers olivier nom m p 2.09 12.84 1.32 8.65 +olivine olivine nom f s 0.05 0.00 0.05 0.00 +olivâtre olivâtre adj s 0.00 1.15 0.00 0.81 +olivâtres olivâtre adj f p 0.00 1.15 0.00 0.34 +olla_podrida olla_podrida nom f 0.00 0.07 0.00 0.07 +ollé ollé ono 0.02 0.00 0.02 0.00 +olmèque olmèque adj s 0.01 0.00 0.01 0.00 +olmèques olmèque nom p 0.00 0.07 0.00 0.07 +olographe olographe adj m s 0.00 0.14 0.00 0.14 +olé_olé olé_olé adj m p 0.00 0.14 0.00 0.14 +olé olé ono 2.37 0.47 2.37 0.47 +oléagineux oléagineux nom m 0.00 0.07 0.00 0.07 +olécrane olécrane nom m s 0.01 0.00 0.01 0.00 +olécrâne olécrâne nom m s 0.00 0.07 0.00 0.07 +oléfine oléfine nom f s 0.03 0.00 0.03 0.00 +oléiculteurs oléiculteur nom m p 0.00 0.07 0.00 0.07 +oléine oléine nom f s 0.00 0.07 0.00 0.07 +oléoduc oléoduc nom m s 0.31 0.07 0.26 0.00 +oléoducs oléoduc nom m p 0.31 0.07 0.05 0.07 +olympe olympe nom m s 0.01 0.20 0.01 0.14 +olympes olympe nom m p 0.01 0.20 0.00 0.07 +olympiade olympiade nom f s 0.36 0.20 0.10 0.07 +olympiades olympiade nom f p 0.36 0.20 0.26 0.14 +olympien olympien adj m s 0.08 2.03 0.07 1.35 +olympienne olympien adj f s 0.08 2.03 0.00 0.54 +olympiens olympien adj m p 0.08 2.03 0.01 0.14 +olympique olympique adj s 3.62 1.69 1.68 1.28 +olympiques olympique adj p 3.62 1.69 1.94 0.41 +omît omettre ver 2.73 6.42 0.00 0.07 sub:imp:3s; +omani omani adj m s 0.01 0.00 0.01 0.00 +ombelle ombelle nom f s 0.01 0.74 0.00 0.07 +ombelles ombelle nom f p 0.01 0.74 0.01 0.68 +ombellifères ombellifère nom f p 0.00 0.20 0.00 0.20 +ombilic ombilic nom m s 0.07 0.20 0.07 0.20 +ombilical ombilical adj m s 0.78 1.89 0.57 1.76 +ombilicale ombilical adj f s 0.78 1.89 0.19 0.00 +ombilicaux ombilical adj m p 0.78 1.89 0.02 0.14 +omble omble nom m s 0.03 0.14 0.01 0.07 +ombles omble nom m p 0.03 0.14 0.02 0.07 +ombra ombrer ver 0.54 2.50 0.00 0.07 ind:pas:3s; +ombrage ombrage nom m s 0.57 2.64 0.46 1.28 +ombragea ombrager ver 0.03 2.77 0.00 0.07 ind:pas:3s; +ombrageaient ombrager ver 0.03 2.77 0.00 0.20 ind:imp:3p; +ombrageait ombrager ver 0.03 2.77 0.00 0.27 ind:imp:3s; +ombragent ombrager ver 0.03 2.77 0.00 0.27 ind:pre:3p; +ombrager ombrager ver 0.03 2.77 0.00 0.20 inf; +ombrages ombrage nom m p 0.57 2.64 0.11 1.35 +ombrageuse ombrageux adj f s 0.45 2.84 0.14 0.81 +ombrageusement ombrageusement adv 0.00 0.07 0.00 0.07 +ombrageuses ombrageux adj f p 0.45 2.84 0.00 0.14 +ombrageux ombrageux adj m 0.45 2.84 0.31 1.89 +ombragé ombragé adj m s 0.17 0.95 0.13 0.68 +ombragée ombragé adj f s 0.17 0.95 0.01 0.20 +ombragées ombrager ver f p 0.03 2.77 0.00 0.27 par:pas; +ombragés ombragé adj m p 0.17 0.95 0.03 0.00 +ombraient ombrer ver 0.54 2.50 0.00 0.07 ind:imp:3p; +ombrait ombrer ver 0.54 2.50 0.00 0.20 ind:imp:3s; +ombrant ombrer ver 0.54 2.50 0.00 0.14 par:pre; +ombre ombre nom s 45.67 233.45 35.98 190.61 +ombrelle ombrelle nom f s 0.97 4.80 0.86 3.72 +ombrelles ombrelle nom f p 0.97 4.80 0.11 1.08 +ombrer ombrer ver 0.54 2.50 0.13 0.20 inf; +ombres ombre nom p 45.67 233.45 9.70 42.84 +ombreuse ombreux adj f s 0.00 2.43 0.00 0.68 +ombreuses ombreux adj f p 0.00 2.43 0.00 0.95 +ombreux ombreux adj m 0.00 2.43 0.00 0.81 +ombré ombrer ver m s 0.54 2.50 0.01 0.34 par:pas; +ombrée ombrer ver f s 0.54 2.50 0.00 0.27 par:pas; +ombrées ombrée nom f p 0.54 0.07 0.54 0.00 +ombrés ombrer ver m p 0.54 2.50 0.00 0.47 par:pas; +âme_soeur âme_soeur nom f s 0.04 0.14 0.04 0.14 +âme âme nom f s 141.59 151.62 122.22 129.53 +omelette omelette nom f s 6.87 6.42 6.42 5.14 +omelettes omelette nom f p 6.87 6.42 0.45 1.28 +omerta omerta nom f s 0.14 0.14 0.14 0.14 +âmes âme nom f p 141.59 151.62 19.37 22.09 +omet omettre ver 2.73 6.42 0.13 0.20 ind:pre:3s; +omets omettre ver 2.73 6.42 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +omettaient omettre ver 2.73 6.42 0.00 0.07 ind:imp:3p; +omettais omettre ver 2.73 6.42 0.00 0.07 ind:imp:1s; +omettait omettre ver 2.73 6.42 0.00 0.27 ind:imp:3s; +omettant omettre ver 2.73 6.42 0.10 0.54 par:pre; +omette omettre ver 2.73 6.42 0.00 0.07 sub:pre:3s; +omettent omettre ver 2.73 6.42 0.01 0.20 ind:pre:3p; +omettez omettre ver 2.73 6.42 0.24 0.00 imp:pre:2p;ind:pre:2p; +omettiez omettre ver 2.73 6.42 0.01 0.07 ind:imp:2p; +omettrai omettre ver 2.73 6.42 0.03 0.07 ind:fut:1s; +omettre omettre ver 2.73 6.42 0.35 0.74 inf; +omettrez omettre ver 2.73 6.42 0.01 0.00 ind:fut:2p; +omicron omicron nom m s 0.12 0.07 0.12 0.07 +omis omettre ver m 2.73 6.42 1.74 3.58 par:pas; +omise omettre ver f s 2.73 6.42 0.04 0.14 par:pas; +omises omettre ver f p 2.73 6.42 0.03 0.07 par:pas; +omission omission nom f s 1.02 2.09 0.78 1.76 +omissions omission nom f p 1.02 2.09 0.25 0.34 +omit omettre ver 2.73 6.42 0.00 0.20 ind:pas:3s; +omni omni adv 0.21 0.27 0.21 0.27 +omnibus omnibus nom m 0.37 1.28 0.37 1.28 +omnidirectionnel omnidirectionnel adj m s 0.03 0.00 0.02 0.00 +omnidirectionnelle omnidirectionnel adj f s 0.03 0.00 0.01 0.00 +omnipotence omnipotence nom f s 0.16 0.74 0.16 0.74 +omnipotent omnipotent adj m s 0.16 1.28 0.14 0.54 +omnipotente omnipotent adj f s 0.16 1.28 0.01 0.74 +omnipotentes omnipotent adj f p 0.16 1.28 0.01 0.00 +omniprésence omniprésence nom f s 0.11 0.34 0.11 0.34 +omniprésent omniprésent adj m s 0.69 2.16 0.53 0.81 +omniprésente omniprésent adj f s 0.69 2.16 0.08 1.08 +omniprésentes omniprésent adj f p 0.69 2.16 0.03 0.20 +omniprésents omniprésent adj m p 0.69 2.16 0.06 0.07 +omnipuissance omnipuissance nom f s 0.00 0.07 0.00 0.07 +omniscience omniscience nom f s 0.09 0.00 0.09 0.00 +omniscient omniscient adj m s 0.33 0.47 0.14 0.34 +omnisciente omniscient adj f s 0.33 0.47 0.05 0.07 +omniscients omniscient adj m p 0.33 0.47 0.14 0.07 +omnisports omnisports adj m s 0.01 1.28 0.01 1.28 +omnium omnium nom m s 0.00 0.20 0.00 0.20 +omnivore omnivore adj m s 0.16 0.14 0.02 0.07 +omnivores omnivore adj f p 0.16 0.14 0.14 0.07 +omoplate omoplate nom f s 0.66 5.74 0.48 1.55 +omoplates omoplate nom f p 0.66 5.74 0.18 4.19 +omphalos omphalos nom m 0.00 0.07 0.00 0.07 +oméga oméga nom m s 0.88 0.88 0.88 0.88 +on_dit on_dit nom m 0.14 0.81 0.14 0.81 +on_line on_line adv 0.07 0.00 0.07 0.00 +on on pro_per s 8586.40 4838.38 8586.40 4838.38 +onagre onagre nom s 0.00 0.14 0.00 0.14 +onanisme onanisme nom m s 0.10 0.47 0.10 0.41 +onanismes onanisme nom m p 0.10 0.47 0.00 0.07 +onaniste onaniste nom s 0.02 0.14 0.02 0.14 +onc onc adv 0.03 0.14 0.03 0.14 +once once nom f s 4.66 1.89 3.77 1.76 +onces once nom f p 4.66 1.89 0.89 0.14 +oncle oncle nom m s 126.71 127.70 124.11 121.96 +oncles oncle nom m p 126.71 127.70 2.60 5.74 +oncologie oncologie nom f s 0.35 0.00 0.35 0.00 +oncologique oncologique adj f s 0.01 0.00 0.01 0.00 +oncologue oncologue nom s 0.22 0.00 0.21 0.00 +oncologues oncologue nom p 0.22 0.00 0.01 0.00 +onction onction nom f s 0.28 1.28 0.28 1.15 +onctions onction nom f p 0.28 1.28 0.00 0.14 +onctueuse onctueux adj f s 0.24 4.73 0.17 1.96 +onctueusement onctueusement adv 0.00 0.07 0.00 0.07 +onctueuses onctueux adj f p 0.24 4.73 0.00 0.27 +onctueux onctueux adj m 0.24 4.73 0.07 2.50 +onctuosité onctuosité nom f s 0.01 0.61 0.01 0.61 +ondatra ondatra nom m s 0.02 0.00 0.02 0.00 +onde onde nom f s 11.91 17.70 4.39 6.01 +onder onder ver 0.01 0.00 0.01 0.00 inf; +ondes onde nom f p 11.91 17.70 7.52 11.69 +ondin ondin nom m s 0.20 0.81 0.00 0.20 +ondine ondin nom f s 0.20 0.81 0.20 0.34 +ondines ondine nom f p 0.01 0.00 0.01 0.00 +ondins ondin nom m p 0.20 0.81 0.00 0.20 +ondoie ondoyer ver 0.01 2.84 0.00 0.07 ind:pre:1s; +ondoiement ondoiement nom m s 0.00 0.54 0.00 0.47 +ondoiements ondoiement nom m p 0.00 0.54 0.00 0.07 +ondoient ondoyer ver 0.01 2.84 0.00 0.14 ind:pre:3p; +ondoyaient ondoyer ver 0.01 2.84 0.00 0.47 ind:imp:3p; +ondoyait ondoyer ver 0.01 2.84 0.00 0.54 ind:imp:3s; +ondoyant ondoyer ver 0.01 2.84 0.01 0.95 par:pre; +ondoyante ondoyant adj f s 0.10 1.15 0.10 0.47 +ondoyantes ondoyant adj f p 0.10 1.15 0.00 0.14 +ondoyants ondoyant adj m p 0.10 1.15 0.00 0.27 +ondoyer ondoyer ver 0.01 2.84 0.00 0.47 inf; +ondoyons ondoyer ver 0.01 2.84 0.00 0.07 imp:pre:1p; +ondoyé ondoyer ver m s 0.01 2.84 0.00 0.14 par:pas; +ondée ondée adj f s 0.01 0.07 0.01 0.00 +ondées ondée nom f p 0.16 2.30 0.16 0.47 +ondula onduler ver 1.28 12.03 0.00 0.47 ind:pas:3s; +ondulaient onduler ver 1.28 12.03 0.14 0.81 ind:imp:3p; +ondulait onduler ver 1.28 12.03 0.11 2.64 ind:imp:3s; +ondulant onduler ver 1.28 12.03 0.24 1.96 par:pre; +ondulante ondulant adj f s 0.20 1.55 0.17 0.95 +ondulantes ondulant adj f p 0.20 1.55 0.01 0.20 +ondulants ondulant adj m p 0.20 1.55 0.01 0.14 +ondulation ondulation nom f s 0.26 6.01 0.05 2.03 +ondulations ondulation nom f p 0.26 6.01 0.21 3.99 +ondulatoire ondulatoire adj s 0.01 0.34 0.00 0.27 +ondulatoires ondulatoire adj m p 0.01 0.34 0.01 0.07 +ondule onduler ver 1.28 12.03 0.27 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ondulent onduler ver 1.28 12.03 0.23 1.01 ind:pre:3p; +onduler onduler ver 1.28 12.03 0.23 2.09 inf; +ondulerait onduler ver 1.28 12.03 0.00 0.07 cnd:pre:3s; +onduleuse onduleux adj f s 0.00 1.62 0.00 0.68 +onduleuses onduleux adj f p 0.00 1.62 0.00 0.34 +onduleux onduleux adj m s 0.00 1.62 0.00 0.61 +ondulons onduler ver 1.28 12.03 0.00 0.07 ind:pre:1p; +ondulèrent onduler ver 1.28 12.03 0.00 0.07 ind:pas:3p; +ondulé ondulé adj m s 0.73 4.59 0.04 0.95 +ondulée ondulé adj f s 0.73 4.59 0.38 2.03 +ondulées ondulé adj f p 0.73 4.59 0.02 0.41 +ondulés ondulé adj m p 0.73 4.59 0.29 1.22 +ondés ondé adj m p 0.00 0.14 0.00 0.14 +one_step one_step nom m s 0.00 0.20 0.00 0.20 +âne âne nom m s 14.19 18.58 12.33 14.32 +ânerie ânerie nom f s 1.96 2.70 0.32 0.81 +âneries ânerie nom f p 1.96 2.70 1.64 1.89 +ânes âne nom m p 14.19 18.58 1.86 4.26 +ânesse ânesse nom f s 0.90 0.41 0.90 0.20 +ânesses ânesse nom f p 0.90 0.41 0.00 0.20 +ongle ongle nom m s 20.37 45.47 2.35 10.14 +ongles ongle nom m p 20.37 45.47 18.02 35.34 +onglet onglet nom m s 0.67 0.34 0.52 0.14 +onglets onglet nom m p 0.67 0.34 0.14 0.20 +onglon onglon nom m s 0.00 0.07 0.00 0.07 +onglée onglée adj f s 0.01 0.00 0.01 0.00 +onguent onguent nom m s 0.93 1.82 0.79 0.54 +onguents onguent nom m p 0.93 1.82 0.14 1.28 +ongulé ongulé nom m s 0.09 0.00 0.08 0.00 +ongulés ongulé nom m p 0.09 0.00 0.01 0.00 +ânier ânier nom m s 0.00 0.54 0.00 0.54 +onirique onirique adj s 0.17 0.41 0.04 0.34 +oniriques onirique adj p 0.17 0.41 0.13 0.07 +onirisme onirisme nom m s 0.14 0.00 0.14 0.00 +onirologie onirologie nom f s 0.00 0.07 0.00 0.07 +onomatopée onomatopée nom f s 0.05 2.03 0.03 0.74 +onomatopées onomatopée nom f p 0.05 2.03 0.02 1.28 +onomatopéique onomatopéique adj s 0.40 0.00 0.40 0.00 +ânon ânon nom m s 0.17 0.47 0.16 0.41 +ânonna ânonner ver 0.16 2.50 0.00 0.27 ind:pas:3s; +ânonnaient ânonner ver 0.16 2.50 0.00 0.14 ind:imp:3p; +ânonnait ânonner ver 0.16 2.50 0.14 0.68 ind:imp:3s; +ânonnant ânonner ver 0.16 2.50 0.00 0.47 par:pre; +ânonne ânonner ver 0.16 2.50 0.00 0.27 ind:pre:1s;ind:pre:3s; +ânonnement ânonnement nom m s 0.00 0.14 0.00 0.07 +ânonnements ânonnement nom m p 0.00 0.14 0.00 0.07 +ânonner ânonner ver 0.16 2.50 0.02 0.54 inf; +ânonnions ânonner ver 0.16 2.50 0.00 0.07 ind:imp:1p; +ânonnés ânonner ver m p 0.16 2.50 0.00 0.07 par:pas; +ânons ânon nom m p 0.17 0.47 0.01 0.07 +onopordons onopordon nom m p 0.00 0.07 0.00 0.07 +ont avoir aux 18559.23 12800.81 1063.32 553.31 ind:pre:3p; +onto onto adv 0.05 0.07 0.05 0.07 +ontologie ontologie nom f s 0.02 0.14 0.02 0.14 +ontologique ontologique adj s 0.04 0.34 0.04 0.34 +ontologiquement ontologiquement adv 0.02 0.00 0.02 0.00 +onéreuse onéreux adj f s 0.84 1.08 0.21 0.14 +onéreuses onéreux adj f p 0.84 1.08 0.04 0.27 +onéreux onéreux adj m 0.84 1.08 0.60 0.68 +onusienne onusien adj f s 0.03 0.07 0.02 0.00 +onusiennes onusien adj f p 0.03 0.07 0.01 0.00 +onusiens onusien adj m p 0.03 0.07 0.00 0.07 +onyx onyx nom m 0.34 0.61 0.34 0.61 +onze onze adj_num 11.27 38.85 11.27 38.85 +onzième onzième adj 0.34 1.49 0.34 1.49 +opacifiait opacifier ver 0.03 0.54 0.00 0.07 ind:imp:3s; +opacifiant opacifier ver 0.03 0.54 0.00 0.07 par:pre; +opacification opacification nom f s 0.01 0.00 0.01 0.00 +opacifie opacifier ver 0.03 0.54 0.00 0.20 ind:pre:1s;ind:pre:3s; +opacifient opacifier ver 0.03 0.54 0.01 0.07 ind:pre:3p; +opacifier opacifier ver 0.03 0.54 0.01 0.07 inf; +opacifié opacifier ver m s 0.03 0.54 0.00 0.07 par:pas; +opacité opacité nom f s 0.23 2.03 0.21 1.96 +opacités opacité nom f p 0.23 2.03 0.03 0.07 +opale opale nom f s 0.24 0.81 0.16 0.68 +opales opale nom f p 0.24 0.81 0.08 0.14 +opalescence opalescence nom f s 0.00 0.07 0.00 0.07 +opalescent opalescent adj m s 0.00 0.68 0.00 0.27 +opalescente opalescent adj f s 0.00 0.68 0.00 0.27 +opalescentes opalescent adj f p 0.00 0.68 0.00 0.14 +opalin opalin adj m s 0.02 0.74 0.00 0.41 +opaline opalin nom f s 0.02 1.35 0.02 1.28 +opalines opalin nom f p 0.02 1.35 0.00 0.07 +opalins opalin adj m p 0.02 0.74 0.01 0.14 +opaque opaque adj s 0.50 13.11 0.31 9.59 +opaques opaque adj p 0.50 13.11 0.19 3.51 +ope ope nom s 0.08 0.00 0.08 0.00 +open open adj 1.75 0.00 1.75 0.00 +opercule opercule nom m s 0.01 0.07 0.01 0.07 +ophidien ophidien nom m s 0.02 0.07 0.01 0.00 +ophidiens ophidien nom m p 0.02 0.07 0.01 0.07 +ophite ophite nom m s 0.00 0.07 0.00 0.07 +ophtalmique ophtalmique adj f s 0.01 0.00 0.01 0.00 +ophtalmologie ophtalmologie nom f s 0.09 0.07 0.09 0.07 +ophtalmologique ophtalmologique adj m s 0.02 0.00 0.02 0.00 +ophtalmologiste ophtalmologiste nom s 0.09 0.61 0.09 0.54 +ophtalmologistes ophtalmologiste nom p 0.09 0.61 0.00 0.07 +ophtalmologue ophtalmologue nom s 0.04 0.07 0.04 0.07 +ophtalmoscope ophtalmoscope nom m s 0.02 0.00 0.02 0.00 +opiacé opiacé nom m s 0.58 0.00 0.06 0.00 +opiacées opiacé adj f p 0.19 0.00 0.14 0.00 +opiacés opiacé nom m p 0.58 0.00 0.52 0.00 +opiat opiat nom m s 0.03 0.20 0.01 0.00 +opiats opiat nom m p 0.03 0.20 0.01 0.20 +opimes opimes adj f p 0.01 0.00 0.01 0.00 +opina opiner ver 0.38 4.46 0.10 0.95 ind:pas:3s; +opinai opiner ver 0.38 4.46 0.00 0.20 ind:pas:1s; +opinaient opiner ver 0.38 4.46 0.00 0.07 ind:imp:3p; +opinais opiner ver 0.38 4.46 0.00 0.14 ind:imp:1s; +opinait opiner ver 0.38 4.46 0.10 0.47 ind:imp:3s; +opinant opiner ver 0.38 4.46 0.00 0.14 par:pre; +opine opiner ver 0.38 4.46 0.02 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +opinel opinel nom m s 0.00 1.22 0.00 1.15 +opinels opinel nom m p 0.00 1.22 0.00 0.07 +opiner opiner ver 0.38 4.46 0.02 0.41 inf; +opines opiner ver 0.38 4.46 0.11 0.00 ind:pre:2s; +opinion opinion nom f s 33.89 44.66 28.43 33.24 +opinions opinion nom f p 33.89 44.66 5.47 11.42 +opiniâtra opiniâtrer ver 0.02 0.27 0.00 0.14 ind:pas:3s; +opiniâtre opiniâtre adj s 0.06 2.77 0.06 2.23 +opiniâtrement opiniâtrement adv 0.02 0.27 0.02 0.27 +opiniâtres opiniâtre adj p 0.06 2.77 0.00 0.54 +opiniâtreté opiniâtreté nom f s 0.01 1.76 0.01 1.76 +opiniâtrez opiniâtrer ver 0.02 0.27 0.00 0.07 ind:pre:2p; +opinèrent opiner ver 0.38 4.46 0.00 0.07 ind:pas:3p; +opiné opiner ver m s 0.38 4.46 0.01 0.34 par:pas; +opiomane opiomane adj f s 0.03 0.07 0.03 0.07 +opium opium nom m s 3.95 5.61 3.95 5.61 +opopanax opopanax nom m 0.00 0.07 0.00 0.07 +opoponax opoponax nom m 0.00 0.07 0.00 0.07 +opossum opossum nom m s 0.52 0.27 0.41 0.27 +opossums opossum nom m p 0.52 0.27 0.12 0.00 +opothérapiques opothérapique adj f p 0.00 0.07 0.00 0.07 +oppidum oppidum nom m s 0.00 0.27 0.00 0.27 +opportun opportun adj m s 1.68 2.57 1.45 1.89 +opportune opportun adj f s 1.68 2.57 0.08 0.54 +opportunes opportun adj f p 1.68 2.57 0.02 0.00 +opportunisme opportunisme nom m s 0.11 0.20 0.11 0.20 +opportuniste opportuniste adj s 0.44 0.47 0.38 0.34 +opportunistes opportuniste nom p 0.62 0.20 0.26 0.20 +opportunité opportunité nom f s 11.84 2.50 9.50 2.36 +opportunités opportunité nom f p 11.84 2.50 2.33 0.14 +opportuns opportun adj m p 1.68 2.57 0.14 0.14 +opportunément opportunément adv 0.07 0.68 0.07 0.68 +opposa opposer ver 18.20 46.01 0.12 2.30 ind:pas:3s; +opposable opposable adj m s 0.14 0.07 0.05 0.00 +opposables opposable adj p 0.14 0.07 0.09 0.07 +opposai opposer ver 18.20 46.01 0.00 0.34 ind:pas:1s; +opposaient opposer ver 18.20 46.01 0.07 2.23 ind:imp:3p; +opposais opposer ver 18.20 46.01 0.18 0.41 ind:imp:1s;ind:imp:2s; +opposait opposer ver 18.20 46.01 0.53 7.03 ind:imp:3s; +opposant opposer ver 18.20 46.01 0.35 1.69 par:pre; +opposante opposant nom f s 1.63 1.42 0.01 0.00 +opposants opposant nom m p 1.63 1.42 1.28 0.95 +oppose opposer ver 18.20 46.01 4.27 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +opposent opposer ver 18.20 46.01 0.85 1.89 ind:pre:3p; +opposer opposer ver 18.20 46.01 6.48 9.93 ind:pre:2p;inf; +opposera opposer ver 18.20 46.01 0.28 0.54 ind:fut:3s; +opposerai opposer ver 18.20 46.01 0.55 0.00 ind:fut:1s; +opposeraient opposer ver 18.20 46.01 0.01 0.47 cnd:pre:3p; +opposerais opposer ver 18.20 46.01 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +opposerait opposer ver 18.20 46.01 0.15 0.34 cnd:pre:3s; +opposerez opposer ver 18.20 46.01 0.11 0.07 ind:fut:2p; +opposerions opposer ver 18.20 46.01 0.00 0.07 cnd:pre:1p; +opposerons opposer ver 18.20 46.01 0.14 0.07 ind:fut:1p; +opposeront opposer ver 18.20 46.01 0.28 0.00 ind:fut:3p; +opposes opposer ver 18.20 46.01 0.35 0.07 ind:pre:2s; +opposez opposer ver 18.20 46.01 0.29 0.20 imp:pre:2p;ind:pre:2p; +opposions opposer ver 18.20 46.01 0.02 0.27 ind:imp:1p; +opposition opposition nom f s 5.28 11.49 5.26 10.68 +oppositionnel oppositionnel adj m s 0.01 0.07 0.01 0.00 +oppositionnelle oppositionnel adj f s 0.01 0.07 0.00 0.07 +oppositions opposition nom f p 5.28 11.49 0.02 0.81 +opposons opposer ver 18.20 46.01 0.06 0.14 imp:pre:1p;ind:pre:1p; +opposât opposer ver 18.20 46.01 0.00 0.34 sub:imp:3s; +opposèrent opposer ver 18.20 46.01 0.03 0.61 ind:pas:3p; +opposé opposé nom m s 2.38 5.34 2.13 5.20 +opposée opposé adj f s 3.51 14.46 0.92 3.18 +opposées opposé adj f p 3.51 14.46 0.69 1.89 +opposés opposer ver m p 18.20 46.01 0.60 1.42 par:pas; +oppressa oppresser ver 1.11 4.80 0.00 0.07 ind:pas:3s; +oppressaient oppresser ver 1.11 4.80 0.10 0.34 ind:imp:3p; +oppressait oppresser ver 1.11 4.80 0.17 1.35 ind:imp:3s; +oppressant oppressant adj m s 1.01 3.38 0.38 1.49 +oppressante oppressant adj f s 1.01 3.38 0.61 1.55 +oppressantes oppressant adj f p 1.01 3.38 0.01 0.20 +oppressants oppressant adj m p 1.01 3.38 0.01 0.14 +oppresse oppresser ver 1.11 4.80 0.38 1.15 ind:pre:1s;ind:pre:3s; +oppressent oppresser ver 1.11 4.80 0.06 0.27 ind:pre:3p; +oppresser oppresser ver 1.11 4.80 0.14 0.07 inf; +oppresseur oppresseur nom m s 1.26 0.74 0.67 0.41 +oppresseurs oppresseur nom m p 1.26 0.74 0.59 0.34 +oppressif oppressif adj m s 0.06 0.14 0.04 0.07 +oppression oppression nom f s 2.25 6.82 2.17 6.69 +oppressions oppression nom f p 2.25 6.82 0.07 0.14 +oppressive oppressif adj f s 0.06 0.14 0.02 0.07 +oppressé oppresser ver m s 1.11 4.80 0.25 0.68 par:pas; +oppressée oppressé adj f s 0.29 1.08 0.20 0.68 +oppressées oppressé adj f p 0.29 1.08 0.02 0.00 +opprimait opprimer ver 1.69 2.03 0.01 0.20 ind:imp:3s; +opprimant opprimer ver 1.69 2.03 0.01 0.07 par:pre; +opprime opprimer ver 1.69 2.03 0.40 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +oppriment opprimer ver 1.69 2.03 0.06 0.20 ind:pre:3p; +opprimer opprimer ver 1.69 2.03 0.07 0.68 inf; +opprimez opprimer ver 1.69 2.03 0.04 0.00 ind:pre:2p; +opprimé opprimer ver m s 1.69 2.03 0.35 0.20 par:pas; +opprimée opprimer ver f s 1.69 2.03 0.28 0.27 par:pas; +opprimées opprimé nom f p 1.91 1.89 0.22 0.00 +opprimés opprimé nom m p 1.91 1.89 1.48 1.28 +opprobre opprobre nom m s 0.33 1.89 0.33 1.82 +opprobres opprobre nom m p 0.33 1.89 0.00 0.07 +âpre âpre adj s 1.60 9.86 1.32 7.70 +âprement âprement adv 0.13 3.11 0.13 3.11 +âpres âpre adj p 1.60 9.86 0.27 2.16 +âpreté âpreté nom f s 0.04 2.77 0.04 2.70 +âpretés âpreté nom f p 0.04 2.77 0.00 0.07 +opta opter ver 1.98 5.14 0.01 1.08 ind:pas:3s; +optai opter ver 1.98 5.14 0.00 0.34 ind:pas:1s; +optaient opter ver 1.98 5.14 0.00 0.20 ind:imp:3p; +optais opter ver 1.98 5.14 0.03 0.07 ind:imp:1s; +optait opter ver 1.98 5.14 0.01 0.07 ind:imp:3s; +optalidon optalidon nom m s 0.14 0.07 0.14 0.07 +optant optant nom m s 0.00 0.14 0.00 0.14 +optatif optatif adj m s 0.00 0.20 0.00 0.14 +optatifs optatif adj m p 0.00 0.20 0.00 0.07 +opte opter ver 1.98 5.14 0.31 0.54 ind:pre:1s;ind:pre:3s; +optent opter ver 1.98 5.14 0.14 0.14 ind:pre:3p; +opter opter ver 1.98 5.14 0.37 0.88 inf; +opterais opter ver 1.98 5.14 0.04 0.07 cnd:pre:1s; +optes opter ver 1.98 5.14 0.02 0.00 ind:pre:2s; +opère opérer ver 29.59 24.53 4.75 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +opèrent opérer ver 29.59 24.53 1.06 0.47 ind:pre:3p; +opticien opticien nom m s 0.18 0.47 0.13 0.34 +opticienne opticien nom f s 0.18 0.47 0.02 0.00 +opticiens opticien nom m p 0.18 0.47 0.04 0.14 +optima optimum nom m p 0.15 0.14 0.00 0.07 +optimal optimal adj m s 0.48 0.34 0.19 0.20 +optimale optimal adj f s 0.48 0.34 0.24 0.14 +optimales optimal adj f p 0.48 0.34 0.04 0.00 +optimaux optimal adj m p 0.48 0.34 0.02 0.00 +optime optime adv 0.00 0.20 0.00 0.20 +optimisation optimisation nom f s 0.14 0.00 0.14 0.00 +optimise optimiser ver 0.23 0.07 0.06 0.00 ind:pre:1s;ind:pre:3s; +optimiser optimiser ver 0.23 0.07 0.12 0.00 inf; +optimisez optimiser ver 0.23 0.07 0.01 0.00 ind:pre:2p; +optimisme optimisme nom m s 1.66 6.55 1.66 6.55 +optimiste optimiste adj s 4.21 4.19 3.52 3.11 +optimistes optimiste adj p 4.21 4.19 0.70 1.08 +optimisé optimiser ver m s 0.23 0.07 0.05 0.00 par:pas; +optimisées optimiser ver f p 0.23 0.07 0.00 0.07 par:pas; +optimum optimum nom m s 0.15 0.14 0.15 0.07 +option option nom f s 12.31 2.09 7.37 1.08 +optionnel optionnel adj m s 0.19 0.00 0.16 0.00 +optionnelle optionnel adj f s 0.19 0.00 0.03 0.00 +options option nom f p 12.31 2.09 4.94 1.01 +optique optique adj s 1.73 1.08 1.36 1.01 +optiques optique adj p 1.73 1.08 0.38 0.07 +optométrie optométrie nom f s 0.01 0.00 0.01 0.00 +optométriste optométriste nom s 0.05 0.00 0.05 0.00 +optons opter ver 1.98 5.14 0.03 0.00 imp:pre:1p;ind:pre:1p; +optât opter ver 1.98 5.14 0.00 0.14 sub:imp:3s; +optèrent opter ver 1.98 5.14 0.01 0.14 ind:pas:3p; +opté opter ver m s 1.98 5.14 0.90 1.49 par:pas; +opulence opulence nom f s 0.54 3.31 0.54 3.24 +opulences opulence nom f p 0.54 3.31 0.00 0.07 +opulent opulent adj m s 0.47 4.39 0.01 1.08 +opulente opulent adj f s 0.47 4.39 0.32 1.42 +opulentes opulent adj f p 0.47 4.39 0.02 1.08 +opulents opulent adj m p 0.47 4.39 0.11 0.81 +opéra_comique opéra_comique nom m s 0.00 0.34 0.00 0.34 +opéra opéra nom m s 19.61 20.07 18.93 18.99 +opérable opérable adj f s 0.13 0.07 0.13 0.07 +opéraient opérer ver 29.59 24.53 0.03 1.69 ind:imp:3p; +opérais opérer ver 29.59 24.53 0.05 0.34 ind:imp:1s;ind:imp:2s; +opérait opérer ver 29.59 24.53 0.56 3.11 ind:imp:3s; +opérant opérer ver 29.59 24.53 0.26 1.28 par:pre; +opéras opéra nom m p 19.61 20.07 0.68 1.08 +opérateur opérateur nom m s 6.54 2.84 5.07 2.03 +opérateurs opérateur nom m p 6.54 2.84 0.28 0.74 +opération_miracle opération_miracle nom f s 0.00 0.07 0.00 0.07 +opération opération nom f s 61.94 70.20 50.01 41.42 +opérationnel opérationnel adj m s 5.07 0.34 2.21 0.14 +opérationnelle opérationnel adj f s 5.07 0.34 1.19 0.14 +opérationnelles opérationnel adj f p 5.07 0.34 0.26 0.07 +opérationnels opérationnel adj m p 5.07 0.34 1.42 0.00 +opérations opération nom f p 61.94 70.20 11.94 28.78 +opératique opératique adj f s 0.01 0.00 0.01 0.00 +opératoire opératoire adj s 1.54 0.68 1.49 0.68 +opératoires opératoire adj p 1.54 0.68 0.05 0.00 +opératrice opérateur nom f s 6.54 2.84 1.19 0.07 +opératrices opératrice nom f p 0.19 0.00 0.19 0.00 +opérer opérer ver 29.59 24.53 14.94 8.58 ind:pre:2p;inf; +opérera opérer ver 29.59 24.53 0.20 0.27 ind:fut:3s; +opérerai opérer ver 29.59 24.53 0.28 0.00 ind:fut:1s; +opéreraient opérer ver 29.59 24.53 0.00 0.27 cnd:pre:3p; +opérerait opérer ver 29.59 24.53 0.04 0.41 cnd:pre:3s; +opéreras opérer ver 29.59 24.53 0.02 0.00 ind:fut:2s; +opérerez opérer ver 29.59 24.53 0.05 0.07 ind:fut:2p; +opérerons opérer ver 29.59 24.53 0.18 0.00 ind:fut:1p; +opéreront opérer ver 29.59 24.53 0.08 0.07 ind:fut:3p; +opérette opérette nom f s 0.58 4.19 0.54 3.11 +opérettes opérette nom f p 0.58 4.19 0.04 1.08 +opérez opérer ver 29.59 24.53 0.49 0.14 imp:pre:2p;ind:pre:2p; +opériez opérer ver 29.59 24.53 0.13 0.00 ind:imp:2p; +opérions opérer ver 29.59 24.53 0.00 0.27 ind:imp:1p; +opérons opérer ver 29.59 24.53 0.19 0.07 imp:pre:1p;ind:pre:1p; +opérât opérer ver 29.59 24.53 0.00 0.07 sub:imp:3s; +opérèrent opérer ver 29.59 24.53 0.00 0.07 ind:pas:3p; +opéré opérer ver m s 29.59 24.53 4.92 2.43 par:pas; +opérée opérer ver f s 29.59 24.53 1.00 0.88 par:pas; +opérées opérer ver f p 29.59 24.53 0.03 0.14 par:pas; +opérés opérer ver m p 29.59 24.53 0.06 0.54 par:pas; +opus opus nom m 0.35 1.01 0.35 1.01 +opuscule opuscule nom m s 0.04 0.88 0.03 0.61 +opuscules opuscule nom m p 0.04 0.88 0.01 0.27 +or or con 17.13 65.27 17.13 65.27 +oracle oracle nom m s 3.21 2.77 2.32 2.16 +oracles oracle nom m p 3.21 2.77 0.89 0.61 +orage orage nom m s 17.14 35.41 14.50 30.61 +orages orage nom m p 17.14 35.41 2.64 4.80 +orageuse orageux adj f s 0.61 4.12 0.11 1.82 +orageuses orageux adj f p 0.61 4.12 0.17 0.74 +orageux orageux adj m 0.61 4.12 0.33 1.55 +oraison oraison nom f s 0.63 3.65 0.20 3.11 +oraisons oraison nom f p 0.63 3.65 0.43 0.54 +oral oral nom m s 1.42 2.70 1.42 2.70 +orale oral adj f s 2.31 1.96 1.31 0.88 +oralement oralement adv 0.20 0.74 0.20 0.74 +orales oral adj f p 2.31 1.96 0.22 0.27 +oralité oralité nom f s 0.01 0.07 0.01 0.07 +oranais oranais adj m s 0.00 0.41 0.00 0.34 +oranaise oranais adj f s 0.00 0.41 0.00 0.07 +orang_outan orang_outan nom m s 0.28 0.20 0.22 0.07 +orang_outang orang_outang nom m s 0.08 0.74 0.08 0.61 +orange orange nom s 16.29 19.59 11.56 12.03 +orangeade orangeade nom f s 1.91 2.03 1.44 1.76 +orangeades orangeade nom f p 1.91 2.03 0.48 0.27 +oranger oranger nom m s 1.67 5.27 1.03 2.09 +orangeraie orangeraie nom f s 0.31 0.34 0.11 0.20 +orangeraies orangeraie nom f p 0.31 0.34 0.20 0.14 +orangerie orangerie nom f s 0.03 0.41 0.03 0.34 +orangeries orangerie nom f p 0.03 0.41 0.00 0.07 +orangers oranger nom m p 1.67 5.27 0.64 3.18 +oranges orange nom p 16.29 19.59 4.73 7.57 +orangistes orangiste nom p 0.04 0.00 0.04 0.00 +orang_outang orang_outang nom m p 0.08 0.74 0.00 0.14 +orang_outan orang_outan nom m p 0.28 0.20 0.06 0.14 +orangé orangé adj m s 0.32 4.93 0.17 1.96 +orangée orangé adj f s 0.32 4.93 0.14 1.62 +orangées orangé adj f p 0.32 4.93 0.01 0.61 +orangés orangé adj m p 0.32 4.93 0.00 0.74 +orant orant nom m s 0.00 0.47 0.00 0.07 +orante orant nom f s 0.00 0.47 0.00 0.34 +orantes orant adj f p 0.02 0.07 0.02 0.00 +orants orant nom m p 0.00 0.47 0.00 0.07 +orateur orateur nom m s 1.70 5.34 1.42 3.58 +orateurs orateur nom m p 1.70 5.34 0.23 1.76 +oratoire oratoire nom m s 0.42 1.49 0.42 1.28 +oratoires oratoire adj p 0.23 1.76 0.06 0.81 +oratorien oratorien nom m s 0.00 0.34 0.00 0.14 +oratoriens oratorien nom m p 0.00 0.34 0.00 0.20 +oratorio oratorio nom m s 0.02 0.61 0.02 0.54 +oratorios oratorio nom m p 0.02 0.61 0.00 0.07 +oratrice orateur nom f s 1.70 5.34 0.05 0.00 +oraux oral adj m p 2.31 1.96 0.10 0.27 +orbe orbe nom m s 0.59 1.22 0.46 1.01 +orbes orbe nom m p 0.59 1.22 0.14 0.20 +orbiculaire orbiculaire adj m s 0.00 0.14 0.00 0.14 +orbitaire orbitaire adj f s 0.04 0.07 0.02 0.07 +orbitaires orbitaire adj f p 0.04 0.07 0.02 0.00 +orbital orbital adj m s 0.61 0.07 0.17 0.00 +orbitale orbital adj f s 0.61 0.07 0.29 0.07 +orbitales orbital adj f p 0.61 0.07 0.11 0.00 +orbitaux orbital adj m p 0.61 0.07 0.04 0.00 +orbite orbite nom f s 9.81 8.31 8.59 2.64 +orbiter orbiter ver 0.03 0.00 0.01 0.00 inf; +orbites orbite nom f p 9.81 8.31 1.22 5.68 +orbitons orbiter ver 0.03 0.00 0.02 0.00 ind:pre:1p; +orbitèle orbitèle adj m s 0.05 0.00 0.03 0.00 +orbitèles orbitèle adj m p 0.05 0.00 0.02 0.00 +orchestra orchestrer ver 4.29 1.08 2.99 0.00 ind:pas:3s; +orchestraient orchestrer ver 4.29 1.08 0.00 0.07 ind:imp:3p; +orchestrait orchestrer ver 4.29 1.08 0.03 0.07 ind:imp:3s; +orchestral orchestral adj m s 1.10 0.14 0.02 0.00 +orchestrale orchestral adj f s 1.10 0.14 1.08 0.07 +orchestration orchestration nom f s 0.23 0.07 0.22 0.07 +orchestrations orchestration nom f p 0.23 0.07 0.01 0.00 +orchestraux orchestral adj m p 1.10 0.14 0.00 0.07 +orchestre orchestre nom m s 14.69 19.73 13.71 18.04 +orchestrent orchestrer ver 4.29 1.08 0.00 0.07 ind:pre:3p; +orchestrer orchestrer ver 4.29 1.08 0.12 0.20 inf; +orchestres orchestre nom m p 14.69 19.73 0.98 1.69 +orchestré orchestrer ver m s 4.29 1.08 0.85 0.27 par:pas; +orchestrée orchestrer ver f s 4.29 1.08 0.18 0.07 par:pas; +orchestrées orchestrer ver f p 4.29 1.08 0.04 0.07 par:pas; +orchestrés orchestrer ver m p 4.29 1.08 0.03 0.00 par:pas; +orchidée orchidée nom f s 3.88 2.57 1.98 1.42 +orchidées orchidée nom f p 3.88 2.57 1.90 1.15 +orchis orchis nom m 0.14 0.27 0.14 0.27 +ord ord adj m s 0.39 0.00 0.39 0.00 +ordalie ordalie nom f s 0.04 0.20 0.04 0.20 +ordinaire ordinaire adj s 20.55 27.97 15.54 19.86 +ordinairement ordinairement adv 0.21 2.70 0.21 2.70 +ordinaires ordinaire adj p 20.55 27.97 5.01 8.11 +ordinal ordinal adj m s 0.00 0.07 0.00 0.07 +ordinant ordinant nom m s 0.00 0.07 0.00 0.07 +ordinateur ordinateur nom m s 37.15 4.26 30.20 2.30 +ordinateurs ordinateur nom m p 37.15 4.26 6.95 1.96 +ordination ordination nom f s 0.12 0.34 0.12 0.34 +ordo ordo nom m 0.01 0.07 0.01 0.07 +ordonna ordonner ver 36.73 35.68 1.34 9.05 ind:pas:3s; +ordonnai ordonner ver 36.73 35.68 0.10 0.68 ind:pas:1s; +ordonnaient ordonner ver 36.73 35.68 0.02 0.41 ind:imp:3p; +ordonnais ordonner ver 36.73 35.68 0.02 0.27 ind:imp:1s; +ordonnait ordonner ver 36.73 35.68 0.11 3.18 ind:imp:3s; +ordonnance ordonnance nom s 9.71 23.65 7.94 19.66 +ordonnancement ordonnancement nom m s 0.01 0.27 0.01 0.27 +ordonnancer ordonnancer ver 0.00 0.20 0.00 0.14 inf; +ordonnances ordonnance nom p 9.71 23.65 1.78 3.99 +ordonnancée ordonnancer ver f s 0.00 0.20 0.00 0.07 par:pas; +ordonnant ordonner ver 36.73 35.68 0.11 1.15 par:pre; +ordonnateur ordonnateur nom m s 0.16 0.68 0.16 0.47 +ordonnateurs ordonnateur nom m p 0.16 0.68 0.00 0.14 +ordonnatrice ordonnateur nom f s 0.16 0.68 0.00 0.07 +ordonne ordonner ver 36.73 35.68 16.69 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ordonnent ordonner ver 36.73 35.68 0.32 0.88 ind:pre:3p; +ordonner ordonner ver 36.73 35.68 2.36 3.78 inf; +ordonnera ordonner ver 36.73 35.68 0.11 0.20 ind:fut:3s; +ordonnerai ordonner ver 36.73 35.68 0.55 0.14 ind:fut:1s; +ordonnerais ordonner ver 36.73 35.68 0.01 0.00 cnd:pre:1s; +ordonnerait ordonner ver 36.73 35.68 0.05 0.07 cnd:pre:3s; +ordonneront ordonner ver 36.73 35.68 0.01 0.00 ind:fut:3p; +ordonnes ordonner ver 36.73 35.68 0.77 0.00 ind:pre:2s; +ordonnez ordonner ver 36.73 35.68 1.23 0.14 imp:pre:2p;ind:pre:2p; +ordonniez ordonner ver 36.73 35.68 0.01 0.00 ind:imp:2p; +ordonnons ordonner ver 36.73 35.68 0.97 0.41 imp:pre:1p;ind:pre:1p; +ordonnèrent ordonner ver 36.73 35.68 0.02 0.27 ind:pas:3p; +ordonné ordonner ver m s 36.73 35.68 11.52 6.82 par:pas;par:pas;par:pas; +ordonnée ordonné adj f s 0.99 4.39 0.38 1.76 +ordonnées ordonner ver f p 36.73 35.68 0.02 0.41 par:pas; +ordonnés ordonner ver m p 36.73 35.68 0.18 0.47 par:pas; +ordre ordre nom m s 217.25 235.34 132.50 179.26 +ordres ordre nom m p 217.25 235.34 84.75 56.08 +ordure ordure nom f s 31.07 26.55 16.97 10.41 +ordureries ordurerie nom f p 0.00 0.07 0.00 0.07 +ordures ordure nom f p 31.07 26.55 14.10 16.15 +ordurier ordurier adj m s 0.30 2.97 0.16 1.08 +orduriers ordurier adj m p 0.30 2.97 0.08 0.68 +ordurière ordurier adj f s 0.30 2.97 0.04 0.54 +ordurières ordurier adj f p 0.30 2.97 0.03 0.68 +ore ore adv 0.04 0.00 0.04 0.00 +oreille oreille nom f s 73.54 194.12 34.46 103.45 +oreiller oreiller nom m s 9.34 33.72 7.93 26.35 +oreillers oreiller nom m p 9.34 33.72 1.41 7.36 +oreilles oreille nom f p 73.54 194.12 39.08 90.68 +oreillette oreillette nom f s 0.83 1.08 0.69 0.14 +oreillettes oreillette nom f p 0.83 1.08 0.14 0.95 +oreillons oreillon nom m p 1.07 0.54 1.07 0.54 +orfraie orfraie nom f s 0.01 0.14 0.01 0.14 +orfèvre orfèvre nom s 0.80 3.24 0.49 1.35 +orfèvrerie orfèvrerie nom f s 0.02 0.74 0.02 0.54 +orfèvreries orfèvrerie nom f p 0.02 0.74 0.00 0.20 +orfèvres orfèvre nom p 0.80 3.24 0.31 1.89 +orfévrée orfévré adj f s 0.00 0.07 0.00 0.07 +organdi organdi nom m s 0.45 1.22 0.45 1.15 +organdis organdi nom m p 0.45 1.22 0.00 0.07 +organe organe nom m s 13.69 15.68 3.14 6.55 +organes organe nom m p 13.69 15.68 10.55 9.12 +organiciser organiciser adj m s 0.01 0.00 0.01 0.00 +organigramme organigramme nom m s 0.13 0.07 0.13 0.07 +organique organique adj s 3.67 2.77 2.56 2.16 +organiquement organiquement adv 0.02 0.74 0.02 0.74 +organiques organique adj p 3.67 2.77 1.11 0.61 +organisa organiser ver 47.90 47.16 0.38 2.09 ind:pas:3s; +organisai organiser ver 47.90 47.16 0.01 0.34 ind:pas:1s; +organisaient organiser ver 47.90 47.16 0.05 1.76 ind:imp:3p; +organisais organiser ver 47.90 47.16 0.31 0.07 ind:imp:1s;ind:imp:2s; +organisait organiser ver 47.90 47.16 1.08 4.46 ind:imp:3s; +organisant organiser ver 47.90 47.16 0.19 0.81 par:pre; +organisateur organisateur nom m s 2.37 3.24 1.31 1.55 +organisateurs organisateur nom m p 2.37 3.24 0.75 1.69 +organisation organisation nom f s 20.97 39.12 18.96 34.32 +organisationnelle organisationnel adj f s 0.20 0.00 0.20 0.00 +organisations organisation nom f p 20.97 39.12 2.02 4.80 +organisatrice organisateur nom f s 2.37 3.24 0.30 0.00 +organise organiser ver 47.90 47.16 10.59 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +organisent organiser ver 47.90 47.16 1.83 0.88 ind:pre:3p; +organiser organiser ver 47.90 47.16 13.93 16.01 inf; +organisera organiser ver 47.90 47.16 0.38 0.27 ind:fut:3s; +organiserai organiser ver 47.90 47.16 0.38 0.07 ind:fut:1s; +organiserais organiser ver 47.90 47.16 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +organiserait organiser ver 47.90 47.16 0.07 0.41 cnd:pre:3s; +organiserez organiser ver 47.90 47.16 0.05 0.00 ind:fut:2p; +organiseriez organiser ver 47.90 47.16 0.02 0.00 cnd:pre:2p; +organiserons organiser ver 47.90 47.16 0.20 0.07 ind:fut:1p; +organiseront organiser ver 47.90 47.16 0.16 0.00 ind:fut:3p; +organises organiser ver 47.90 47.16 1.29 0.07 ind:pre:2s; +organiseur organiseur nom m s 0.01 0.00 0.01 0.00 +organisez organiser ver 47.90 47.16 1.01 0.07 imp:pre:2p;ind:pre:2p; +organisiez organiser ver 47.90 47.16 0.11 0.07 ind:imp:2p; +organisions organiser ver 47.90 47.16 0.13 0.34 ind:imp:1p; +organisme organisme nom m s 6.84 10.81 4.83 8.45 +organismes organisme nom m p 6.84 10.81 2.02 2.36 +organisâmes organiser ver 47.90 47.16 0.00 0.07 ind:pas:1p; +organisons organiser ver 47.90 47.16 1.55 0.00 imp:pre:1p;ind:pre:1p; +organisât organiser ver 47.90 47.16 0.00 0.14 sub:imp:3s; +organiste organiste nom s 0.52 1.01 0.51 1.01 +organistes organiste nom p 0.52 1.01 0.01 0.00 +organisèrent organiser ver 47.90 47.16 0.11 0.54 ind:pas:3p; +organistique organistique adj m s 0.00 0.07 0.00 0.07 +organisé organiser ver m s 47.90 47.16 10.55 7.16 par:pas; +organisée organiser ver f s 47.90 47.16 2.13 3.99 par:pas; +organisées organisé adj f p 5.58 7.50 0.20 0.61 +organisés organisé adj m p 5.58 7.50 1.33 1.76 +organométallique organométallique adj m s 0.01 0.00 0.01 0.00 +organon organon nom m s 0.01 0.00 0.01 0.00 +orgasme orgasme nom m s 6.37 3.38 4.89 3.18 +orgasmes orgasme nom m p 6.37 3.38 1.48 0.20 +orgasmique orgasmique adj s 0.08 0.00 0.08 0.00 +orgastique orgastique adj m s 0.00 0.14 0.00 0.14 +orge orge nom s 1.98 3.72 1.96 3.58 +orgeat orgeat nom m s 0.19 0.74 0.19 0.74 +orgelet orgelet nom m s 0.89 0.27 0.78 0.07 +orgelets orgelet nom m p 0.89 0.27 0.11 0.20 +orges orge nom p 1.98 3.72 0.01 0.14 +orgiaque orgiaque adj m s 0.31 0.07 0.31 0.07 +orgiastique orgiastique adj m s 0.00 0.14 0.00 0.07 +orgiastiques orgiastique adj p 0.00 0.14 0.00 0.07 +orgie orgie nom f s 3.46 3.72 2.09 2.36 +orgies orgie nom f p 3.46 3.72 1.38 1.35 +orgue orgue nom m s 3.12 8.31 3.08 5.41 +orgueil orgueil nom m s 11.56 33.45 11.56 33.24 +orgueilleuse orgueilleux adj f s 1.81 9.19 0.37 4.59 +orgueilleusement orgueilleusement adv 0.14 1.35 0.14 1.35 +orgueilleuses orgueilleux adj f p 1.81 9.19 0.23 0.54 +orgueilleux orgueilleux adj m 1.81 9.19 1.20 4.05 +orgueils orgueil nom m p 11.56 33.45 0.00 0.20 +orgues orgue nom f p 3.12 8.31 0.04 2.91 +oribus oribus nom m 0.00 0.07 0.00 0.07 +orient orient nom m s 0.78 3.78 0.78 3.72 +orienta orienter ver 3.90 11.89 0.10 0.81 ind:pas:3s; +orientable orientable adj s 0.14 0.34 0.14 0.34 +orientai orienter ver 3.90 11.89 0.01 0.07 ind:pas:1s; +orientaient orienter ver 3.90 11.89 0.01 0.41 ind:imp:3p; +orientais orienter ver 3.90 11.89 0.01 0.20 ind:imp:1s; +orientait orienter ver 3.90 11.89 0.00 0.81 ind:imp:3s; +oriental oriental adj m s 4.16 14.32 0.92 3.51 +orientale oriental adj f s 4.16 14.32 2.52 6.82 +orientales oriental adj f p 4.16 14.32 0.40 2.50 +orientalisme orientalisme nom m s 0.00 0.14 0.00 0.14 +orientaliste orientaliste adj f s 0.01 0.07 0.01 0.07 +orientalistes orientaliste nom p 0.00 0.20 0.00 0.14 +orientant orienter ver 3.90 11.89 0.01 0.54 par:pre; +orientateurs orientateur nom m p 0.00 0.07 0.00 0.07 +orientation orientation nom f s 3.86 6.89 3.76 6.62 +orientations orientation nom f p 3.86 6.89 0.10 0.27 +orientaux oriental adj m p 4.16 14.32 0.32 1.49 +oriente orienter ver 3.90 11.89 0.96 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +orientent orienter ver 3.90 11.89 0.16 0.00 ind:pre:3p; +orienter orienter ver 3.90 11.89 1.39 3.65 inf; +orienterai orienter ver 3.90 11.89 0.04 0.00 ind:fut:1s; +orienterait orienter ver 3.90 11.89 0.01 0.07 cnd:pre:3s; +orienterez orienter ver 3.90 11.89 0.01 0.00 ind:fut:2p; +orienteur orienteur nom m s 0.27 0.14 0.27 0.00 +orienteurs orienteur nom m p 0.27 0.14 0.00 0.07 +orienteuse orienteur nom f s 0.27 0.14 0.00 0.07 +orientez orienter ver 3.90 11.89 0.15 0.07 imp:pre:2p;ind:pre:2p; +orients orient nom m p 0.78 3.78 0.00 0.07 +orientèrent orienter ver 3.90 11.89 0.00 0.07 ind:pas:3p; +orienté orienter ver m s 3.90 11.89 0.40 1.55 par:pas; +orientée orienter ver f s 3.90 11.89 0.27 1.08 par:pas; +orientées orienter ver f p 3.90 11.89 0.20 0.47 par:pas; +orientés orienter ver m p 3.90 11.89 0.17 0.74 par:pas; +orifice orifice nom m s 1.85 4.05 1.23 3.24 +orifices orifice nom m p 1.85 4.05 0.61 0.81 +oriflamme oriflamme nom f s 0.22 2.84 0.01 1.08 +oriflammes oriflamme nom f p 0.22 2.84 0.21 1.76 +origami origami nom m s 0.23 0.07 0.23 0.07 +origan origan nom m s 0.32 0.95 0.32 0.95 +originaire originaire adj s 2.58 5.41 2.06 4.19 +originairement originairement adv 0.00 0.14 0.00 0.14 +originaires originaire adj p 2.58 5.41 0.51 1.22 +original original nom m s 10.44 4.32 8.48 2.84 +originale original adj f s 14.45 10.54 4.15 3.24 +originalement originalement adv 0.01 0.00 0.01 0.00 +originales original adj f p 14.45 10.54 1.03 1.55 +originalité originalité nom f s 1.34 4.53 1.34 4.39 +originalités originalité nom f p 1.34 4.53 0.00 0.14 +originaux original nom m p 10.44 4.32 1.44 1.08 +origine origine nom f s 28.07 46.82 22.18 34.19 +originel originel adj m s 1.84 6.49 1.03 3.11 +originelle originel adj f s 1.84 6.49 0.58 2.91 +originellement originellement adv 0.09 0.34 0.09 0.34 +originelles originel adj f p 1.84 6.49 0.12 0.20 +originels originel adj m p 1.84 6.49 0.11 0.27 +origines origine nom f p 28.07 46.82 5.88 12.64 +orignal orignal nom m s 0.42 0.47 0.26 0.20 +orignaux orignal nom m p 0.42 0.47 0.16 0.27 +orillon orillon nom m s 0.00 0.14 0.00 0.07 +orillons orillon nom m p 0.00 0.14 0.00 0.07 +orin orin nom m s 0.21 0.00 0.21 0.00 +oriol oriol nom m s 0.00 0.14 0.00 0.14 +oripeaux oripeau nom m p 0.38 1.55 0.38 1.55 +orlon orlon nom m s 0.04 0.00 0.04 0.00 +orléanais orléanais adj m 0.00 0.27 0.00 0.07 +orléanaise orléanais adj f s 0.00 0.27 0.00 0.14 +orléanaises orléanais adj f p 0.00 0.27 0.00 0.07 +orléanisme orléanisme nom m s 0.00 0.20 0.00 0.20 +orléaniste orléaniste adj f s 0.14 0.20 0.00 0.14 +orléanistes orléaniste adj f p 0.14 0.20 0.14 0.07 +orme orme nom m s 0.39 3.58 0.33 1.28 +ormeau ormeau nom m s 0.03 1.08 0.01 0.47 +ormeaux ormeau nom m p 0.03 1.08 0.02 0.61 +ormes orme nom m p 0.39 3.58 0.06 2.30 +orna orner ver 3.11 31.15 0.00 0.20 ind:pas:3s; +ornaient orner ver 3.11 31.15 0.10 2.03 ind:imp:3p; +ornait orner ver 3.11 31.15 0.02 3.11 ind:imp:3s; +ornant orner ver 3.11 31.15 0.23 0.88 par:pre; +orne orner ver 3.11 31.15 0.44 1.08 imp:pre:2s;ind:pre:3s; +ornement ornement nom m s 0.96 7.03 0.33 3.24 +ornemental ornemental adj m s 0.17 0.34 0.13 0.14 +ornementale ornemental adj f s 0.17 0.34 0.02 0.20 +ornementales ornemental adj f p 0.17 0.34 0.02 0.00 +ornementation ornementation nom f s 0.14 0.81 0.14 0.74 +ornementations ornementation nom f p 0.14 0.81 0.00 0.07 +ornementer ornementer ver 0.01 0.61 0.00 0.07 inf; +ornements ornement nom m p 0.96 7.03 0.64 3.78 +ornementé ornementer ver m s 0.01 0.61 0.00 0.27 par:pas; +ornementée ornementer ver f s 0.01 0.61 0.01 0.14 par:pas; +ornementés ornementer ver m p 0.01 0.61 0.00 0.14 par:pas; +ornent orner ver 3.11 31.15 0.17 0.81 ind:pre:3p; +orner orner ver 3.11 31.15 1.11 1.82 inf; +ornera orner ver 3.11 31.15 0.07 0.07 ind:fut:3s; +ornerait orner ver 3.11 31.15 0.00 0.07 cnd:pre:3s; +orneront orner ver 3.11 31.15 0.11 0.07 ind:fut:3p; +ornez orner ver 3.11 31.15 0.25 0.00 imp:pre:2p; +ornithologie ornithologie nom f s 0.20 0.07 0.20 0.07 +ornithologique ornithologique adj s 0.17 0.00 0.17 0.00 +ornithologue ornithologue nom s 0.13 0.14 0.12 0.07 +ornithologues ornithologue nom p 0.13 0.14 0.01 0.07 +ornithoptère ornithoptère nom m s 0.01 0.00 0.01 0.00 +ornithorynque ornithorynque nom m s 0.26 0.20 0.25 0.07 +ornithorynques ornithorynque nom m p 0.26 0.20 0.01 0.14 +ornière ornière nom f s 0.49 6.42 0.17 1.42 +ornières ornière nom f p 0.49 6.42 0.31 5.00 +ornât orner ver 3.11 31.15 0.00 0.14 sub:imp:3s; +ornèrent orner ver 3.11 31.15 0.00 0.14 ind:pas:3p; +orné orner ver m s 3.11 31.15 0.26 8.38 par:pas; +ornée orner ver f s 3.11 31.15 0.08 6.01 par:pas; +ornées orner ver f p 3.11 31.15 0.26 2.77 par:pas; +ornés orné adj m p 0.04 0.88 0.03 0.27 +orographie orographie nom f s 0.40 0.00 0.40 0.00 +oronge oronge nom f s 0.00 0.20 0.00 0.07 +oronges oronge nom f p 0.00 0.20 0.00 0.14 +oropharynx oropharynx nom m 0.04 0.00 0.04 0.00 +orpailleur orpailleur nom m s 0.02 0.07 0.01 0.07 +orpailleurs orpailleur nom m p 0.02 0.07 0.01 0.00 +orphelin orphelin adj m s 7.57 6.49 3.92 3.78 +orphelinat orphelinat nom m s 6.13 3.18 5.86 2.91 +orphelinats orphelinat nom m p 6.13 3.18 0.28 0.27 +orpheline orphelin adj f s 7.57 6.49 2.11 1.35 +orphelines orphelin nom f p 7.55 9.53 0.79 0.20 +orphelins orphelin nom m p 7.55 9.53 3.91 2.30 +orphie orphie nom f s 0.02 0.00 0.02 0.00 +orphique orphique adj m s 0.00 0.14 0.00 0.07 +orphiques orphique adj m p 0.00 0.14 0.00 0.07 +orphisme orphisme nom m s 0.00 0.07 0.00 0.07 +orphée orphée nom f s 0.00 0.07 0.00 0.07 +orphéon orphéon nom m s 0.10 0.95 0.10 0.74 +orphéoniste orphéoniste nom s 0.00 0.14 0.00 0.07 +orphéonistes orphéoniste nom p 0.00 0.14 0.00 0.07 +orphéons orphéon nom m p 0.10 0.95 0.00 0.20 +orpiment orpiment nom m s 0.10 0.00 0.10 0.00 +orpin orpin nom m s 0.00 0.14 0.00 0.14 +orque orque nom f s 1.43 0.07 0.61 0.07 +orques orque nom f p 1.43 0.07 0.82 0.00 +ors or nom m p 110.28 130.00 0.32 2.77 +orsec orsec nom m 0.00 0.07 0.00 0.07 +ort ort adj 0.16 0.00 0.16 0.00 +orteil orteil nom m s 9.71 9.12 4.04 1.96 +orteils orteil nom m p 9.71 9.12 5.67 7.16 +ortho ortho adv 0.56 0.27 0.56 0.27 +orthodontie orthodontie nom f s 0.04 0.00 0.04 0.00 +orthodontique orthodontique adj m s 0.01 0.00 0.01 0.00 +orthodontiste orthodontiste nom s 0.28 0.00 0.22 0.00 +orthodontistes orthodontiste nom p 0.28 0.00 0.05 0.00 +orthodoxe orthodoxe adj s 2.13 4.73 1.56 3.24 +orthodoxes orthodoxe nom p 0.73 1.22 0.58 0.88 +orthodoxie orthodoxie nom f s 0.15 1.42 0.15 1.42 +orthogonal orthogonal adj m s 0.04 0.07 0.03 0.00 +orthogonaux orthogonal adj m p 0.04 0.07 0.01 0.07 +orthographe orthographe nom f s 3.34 5.88 3.34 5.88 +orthographiait orthographier ver 0.20 0.47 0.00 0.14 ind:imp:3s; +orthographie orthographier ver 0.20 0.47 0.02 0.07 ind:pre:3s; +orthographier orthographier ver 0.20 0.47 0.04 0.14 inf; +orthographique orthographique adj s 0.02 0.07 0.02 0.00 +orthographiques orthographique adj f p 0.02 0.07 0.00 0.07 +orthographié orthographier ver m s 0.20 0.47 0.13 0.14 par:pas; +orthographiées orthographier ver f p 0.20 0.47 0.01 0.00 par:pas; +orthophonie orthophonie nom f s 0.07 0.00 0.07 0.00 +orthophoniste orthophoniste nom s 0.30 0.14 0.30 0.07 +orthophonistes orthophoniste nom p 0.30 0.14 0.00 0.07 +orthoptère orthoptère nom m s 0.01 0.14 0.01 0.00 +orthoptères orthoptère nom m p 0.01 0.14 0.00 0.14 +orthopédie orthopédie nom f s 0.51 0.14 0.51 0.14 +orthopédique orthopédique adj s 0.28 0.81 0.18 0.54 +orthopédiques orthopédique adj p 0.28 0.81 0.09 0.27 +orthopédiste orthopédiste nom s 0.10 0.00 0.10 0.00 +orthostatique orthostatique adj f s 0.01 0.00 0.01 0.00 +ortie ortie nom f s 2.04 6.82 0.41 0.74 +orties ortie nom f p 2.04 6.82 1.63 6.08 +ortolan ortolan nom m s 0.41 1.89 0.11 0.27 +ortolans ortolan nom m p 0.41 1.89 0.30 1.62 +ortédrine ortédrine nom f s 0.00 0.07 0.00 0.07 +oréade oréade nom f s 0.00 0.07 0.00 0.07 +orée orée nom f s 0.67 4.86 0.67 4.86 +orémus orémus nom m 0.00 0.14 0.00 0.14 +orvet orvet nom m s 0.04 0.14 0.04 0.14 +oryctérope oryctérope nom m s 0.03 0.00 0.03 0.00 +oryx oryx nom m 0.08 0.00 0.08 0.00 +os os nom m 40.77 49.73 40.77 49.73 +osa oser ver 90.06 155.47 0.05 11.35 ind:pas:3s; +osai oser ver 90.06 155.47 0.14 2.36 ind:pas:1s; +osaient oser ver 90.06 155.47 0.17 3.38 ind:imp:3p; +osais oser ver 90.06 155.47 2.73 12.77 ind:imp:1s;ind:imp:2s; +osait oser ver 90.06 155.47 1.91 27.30 ind:imp:3s; +osant oser ver 90.06 155.47 0.05 5.68 par:pre; +oscar oscar nom m s 1.71 0.47 0.65 0.14 +oscars oscar nom m p 1.71 0.47 1.07 0.34 +oscilla osciller ver 0.63 13.11 0.00 0.61 ind:pas:3s; +oscillai osciller ver 0.63 13.11 0.00 0.07 ind:pas:1s; +oscillaient osciller ver 0.63 13.11 0.00 0.81 ind:imp:3p; +oscillais osciller ver 0.63 13.11 0.01 0.20 ind:imp:1s; +oscillait osciller ver 0.63 13.11 0.01 3.18 ind:imp:3s; +oscillant oscillant adj m s 0.06 0.81 0.04 0.47 +oscillante oscillant adj f s 0.06 0.81 0.01 0.14 +oscillants oscillant adj m p 0.06 0.81 0.00 0.20 +oscillateur oscillateur nom m s 0.17 0.07 0.17 0.07 +oscillation oscillation nom f s 0.25 1.96 0.13 0.88 +oscillations oscillation nom f p 0.25 1.96 0.12 1.08 +oscillatoire oscillatoire adj m s 0.01 0.14 0.01 0.07 +oscillatoires oscillatoire adj m p 0.01 0.14 0.00 0.07 +oscille osciller ver 0.63 13.11 0.46 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +oscillent osciller ver 0.63 13.11 0.09 0.61 ind:pre:3p; +osciller osciller ver 0.63 13.11 0.04 1.76 inf; +oscillez osciller ver 0.63 13.11 0.01 0.00 imp:pre:2p; +oscillographe oscillographe nom s 0.07 0.00 0.07 0.00 +oscillomètre oscillomètre nom m s 0.01 0.07 0.01 0.07 +oscilloscope oscilloscope nom m s 0.08 0.00 0.08 0.00 +oscillèrent osciller ver 0.63 13.11 0.00 0.14 ind:pas:3p; +oscillé osciller ver m s 0.63 13.11 0.00 0.27 par:pas; +ose oser ver 90.06 155.47 22.97 28.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +oseille oseille nom f s 1.78 4.32 1.78 4.19 +oseilles oseille nom f p 1.78 4.32 0.00 0.14 +osent oser ver 90.06 155.47 3.23 3.92 ind:pre:3p; +oser oser ver 90.06 155.47 3.15 11.42 inf;; +osera oser ver 90.06 155.47 1.50 1.89 ind:fut:3s; +oserai oser ver 90.06 155.47 1.60 2.03 ind:fut:1s; +oseraie oseraie nom f s 0.00 0.14 0.00 0.07 +oseraient oseraient adv 0.00 0.07 0.00 0.07 +oseraies oseraie nom f p 0.00 0.14 0.00 0.07 +oserais oser ver 90.06 155.47 3.86 3.99 cnd:pre:1s;cnd:pre:2s; +oserait oser ver 90.06 155.47 2.71 5.34 cnd:pre:3s; +oseras oser ver 90.06 155.47 1.42 0.14 ind:fut:2s; +oserez oser ver 90.06 155.47 0.33 0.27 ind:fut:2p; +oseriez oser ver 90.06 155.47 0.91 0.07 cnd:pre:2p; +oserions oser ver 90.06 155.47 0.04 0.14 cnd:pre:1p; +oserons oser ver 90.06 155.47 0.04 0.00 ind:fut:1p; +oseront oser ver 90.06 155.47 0.76 0.47 ind:fut:3p; +oses oser ver 90.06 155.47 18.16 1.89 ind:pre:2s; +osez oser ver 90.06 155.47 10.71 1.49 imp:pre:2p;ind:pre:2p; +osier osier nom m s 0.35 12.64 0.35 12.30 +osiers osier nom m p 0.35 12.64 0.00 0.34 +osiez oser ver 90.06 155.47 0.34 0.14 ind:imp:2p; +osions oser ver 90.06 155.47 0.16 1.55 ind:imp:1p; +osmium osmium nom m s 0.02 0.00 0.02 0.00 +osmonde osmonde nom f s 0.02 0.00 0.02 0.00 +osmose osmose nom f s 0.50 1.08 0.50 1.01 +osmoses osmose nom f p 0.50 1.08 0.00 0.07 +osâmes oser ver 90.06 155.47 0.00 0.20 ind:pas:1p; +osons oser ver 90.06 155.47 0.23 0.81 imp:pre:1p;ind:pre:1p; +osât oser ver 90.06 155.47 0.10 0.88 sub:imp:3s; +ossature ossature nom f s 0.52 1.62 0.52 1.49 +ossatures ossature nom f p 0.52 1.62 0.00 0.14 +osselet osselet nom m s 0.39 3.31 0.00 0.14 +osselets osselet nom m p 0.39 3.31 0.39 3.18 +ossement ossement nom m s 1.33 3.78 0.02 0.14 +ossements ossement nom m p 1.33 3.78 1.30 3.65 +osseuse osseux adj f s 1.73 9.32 1.33 2.64 +osseuses osseux adj f p 1.73 9.32 0.08 1.42 +osseux osseux adj m 1.73 9.32 0.32 5.27 +ossification ossification nom f s 0.00 0.14 0.00 0.14 +ossifié ossifier ver m s 0.00 0.07 0.00 0.07 par:pas; +osso_buco osso_buco nom m s 0.05 0.00 0.05 0.00 +ossuaire ossuaire nom m s 0.43 0.54 0.42 0.41 +ossuaires ossuaire nom m p 0.43 0.54 0.01 0.14 +ossue ossu adj f s 0.00 0.07 0.00 0.07 +ost ost nom m s 0.18 0.00 0.18 0.00 +ostensible ostensible adj s 0.00 0.54 0.00 0.54 +ostensiblement ostensiblement adv 0.04 4.66 0.04 4.66 +ostensoir ostensoir nom m s 0.27 1.62 0.14 1.28 +ostensoirs ostensoir nom m p 0.27 1.62 0.14 0.34 +ostentation ostentation nom f s 0.32 3.38 0.32 3.38 +ostentatoire ostentatoire adj s 0.08 1.42 0.08 1.42 +ostentatoirement ostentatoirement adv 0.00 0.14 0.00 0.14 +osèrent oser ver 90.06 155.47 0.34 0.54 ind:pas:3p; +ostinato ostinato adv 0.02 0.00 0.02 0.00 +ostracisme ostracisme nom m s 0.47 1.08 0.47 1.08 +ostrogoth ostrogoth nom m s 0.02 0.20 0.01 0.14 +ostrogoths ostrogoth nom m p 0.02 0.20 0.01 0.07 +ostréiculteur ostréiculteur nom m s 0.01 0.14 0.00 0.07 +ostréiculteurs ostréiculteur nom m p 0.01 0.14 0.01 0.07 +ostréiculture ostréiculture nom f s 0.01 0.00 0.01 0.00 +ostéoarthrite ostéoarthrite nom f s 0.01 0.00 0.01 0.00 +ostéogenèse ostéogenèse nom f s 0.02 0.00 0.02 0.00 +ostéogéniques ostéogénique adj f p 0.01 0.00 0.01 0.00 +ostéologique ostéologique adj f s 0.01 0.00 0.01 0.00 +ostéomyélite ostéomyélite nom f s 0.03 0.00 0.03 0.00 +ostéopathe ostéopathe nom s 0.36 0.00 0.33 0.00 +ostéopathes ostéopathe nom p 0.36 0.00 0.03 0.00 +ostéopathie ostéopathie nom f s 0.01 0.07 0.01 0.07 +ostéoporose ostéoporose nom f s 0.07 0.00 0.07 0.00 +ostéosarcome ostéosarcome nom m s 0.04 0.00 0.04 0.00 +ostéotomie ostéotomie nom f s 0.01 0.00 0.01 0.00 +osé oser ver m s 90.06 155.47 12.12 26.82 par:pas; +osée oser ver f s 90.06 155.47 0.21 0.07 par:pas; +osées osé adj f p 1.24 0.88 0.39 0.27 +osés osé adj m p 1.24 0.88 0.12 0.14 +otage otage nom m s 26.40 5.74 15.22 2.97 +otages otage nom m p 26.40 5.74 11.17 2.77 +otalgie otalgie nom f s 0.03 0.00 0.03 0.00 +otarie otarie nom f s 1.05 1.15 0.13 0.68 +otaries otarie nom f p 1.05 1.15 0.92 0.47 +otite otite nom f s 1.16 0.81 0.84 0.47 +otites otite nom f p 1.16 0.81 0.31 0.34 +oto_rhino_laryngologique oto_rhino_laryngologique adj f s 0.00 0.07 0.00 0.07 +oto_rhino_laryngologiste oto_rhino_laryngologiste nom s 0.02 0.00 0.02 0.00 +oto_rhino oto_rhino nom s 0.49 1.22 0.48 1.08 +oto_rhino oto_rhino nom p 0.49 1.22 0.01 0.07 +oto_rhino oto_rhino nom s 0.49 1.22 0.00 0.07 +otoscope otoscope nom m s 0.01 0.00 0.01 0.00 +otospongiose otospongiose nom s 0.10 0.00 0.10 0.00 +âtre âtre nom m s 0.10 5.88 0.08 5.61 +âtres âtre nom m p 0.10 5.88 0.01 0.27 +ottoman ottoman adj m s 0.28 1.35 0.18 0.27 +ottomane ottomane nom f s 0.01 0.27 0.01 0.27 +ottomanes ottoman adj f p 0.28 1.35 0.00 0.07 +ottomans ottoman adj m p 0.28 1.35 0.10 0.14 +ou ou con 1583.95 2429.86 1583.95 2429.86 +ouï_dire ouï_dire nom m 0.00 1.01 0.00 1.01 +ouï ouïr ver m s 5.72 3.78 0.87 0.68 par:pas; +ouïe ouïe nom f s 2.38 4.46 2.21 3.38 +ouïes ouïe nom f p 2.38 4.46 0.16 1.08 +ouïgour ouïgour nom s 0.00 0.07 0.00 0.07 +ouïr ouïr ver 5.72 3.78 0.77 1.22 inf; +ouïrais ouïr ver 5.72 3.78 0.00 0.07 cnd:pre:1s; +ouïs ouïr ver m p 5.72 3.78 0.02 0.47 ind:pas:1s;par:pas; +ouït ouïr ver 5.72 3.78 0.00 0.41 ind:pas:3s; +ouah ouah ono 9.30 1.28 9.30 1.28 +ouaille ouaille nom f s 0.57 1.15 0.01 0.07 +ouailles ouaille nom f p 0.57 1.15 0.56 1.08 +ouais ouais adv_sup 533.02 39.05 533.02 39.05 +ouananiche ouananiche nom f s 0.06 0.07 0.04 0.00 +ouananiches ouananiche nom f p 0.06 0.07 0.02 0.07 +ouaouaron ouaouaron nom m s 0.01 0.00 0.01 0.00 +ouata ouater ver 0.00 1.82 0.00 0.07 ind:pas:3s; +ouatant ouater ver 0.00 1.82 0.00 0.07 par:pre; +ouate ouate nom f s 0.27 3.72 0.26 3.58 +ouates ouate nom f p 0.27 3.72 0.01 0.14 +ouateuse ouateux adj f s 0.00 0.14 0.00 0.07 +ouateux ouateux adj m s 0.00 0.14 0.00 0.07 +ouatiner ouatiner ver 0.00 0.41 0.00 0.07 inf; +ouatiné ouatiner ver m s 0.00 0.41 0.00 0.07 par:pas; +ouatinée ouatiner ver f s 0.00 0.41 0.00 0.14 par:pas; +ouatinées ouatiner ver f p 0.00 0.41 0.00 0.14 par:pas; +ouaté ouaté adj m s 0.01 2.23 0.01 0.74 +ouatée ouaté adj f s 0.01 2.23 0.00 1.01 +ouatées ouaté adj f p 0.01 2.23 0.00 0.14 +ouatés ouater ver m p 0.00 1.82 0.00 0.47 par:pas; +oubli oubli nom m s 8.02 29.93 6.92 28.65 +oublia oublier ver 487.06 286.96 0.58 6.15 ind:pas:3s; +oubliable oubliable adj f s 0.03 0.14 0.03 0.14 +oubliai oublier ver 487.06 286.96 0.42 1.96 ind:pas:1s; +oubliaient oublier ver 487.06 286.96 0.17 2.16 ind:imp:3p; +oubliais oublier ver 487.06 286.96 9.17 9.12 ind:imp:1s;ind:imp:2s; +oubliait oublier ver 487.06 286.96 1.22 14.32 ind:imp:3s; +oubliant oublier ver 487.06 286.96 1.52 8.11 par:pre; +oublias oublier ver 487.06 286.96 0.00 0.07 ind:pas:2s; +oubliasse oublier ver 487.06 286.96 0.00 0.07 sub:imp:1s; +oublie oublier ver 487.06 286.96 104.78 34.66 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +oublient oublier ver 487.06 286.96 3.94 3.51 ind:pre:3p; +oublier oublier ver 487.06 286.96 85.96 74.19 ind:pre:2p;inf; +oubliera oublier ver 487.06 286.96 4.03 1.62 ind:fut:3s; +oublierai oublier ver 487.06 286.96 15.98 6.55 ind:fut:1s; +oublieraient oublier ver 487.06 286.96 0.09 0.20 cnd:pre:3p; +oublierais oublier ver 487.06 286.96 2.42 0.34 cnd:pre:1s;cnd:pre:2s; +oublierait oublier ver 487.06 286.96 0.89 2.97 cnd:pre:3s; +oublieras oublier ver 487.06 286.96 4.74 0.81 ind:fut:2s; +oublierez oublier ver 487.06 286.96 1.89 0.54 ind:fut:2p; +oublierions oublier ver 487.06 286.96 0.00 0.07 cnd:pre:1p; +oublierons oublier ver 487.06 286.96 1.56 0.27 ind:fut:1p; +oublieront oublier ver 487.06 286.96 1.10 0.34 ind:fut:3p; +oublies oublier ver 487.06 286.96 15.34 4.39 ind:pre:2s;sub:pre:2s; +oubliette oubliette nom f s 1.21 1.62 0.19 0.14 +oubliettes oubliette nom f p 1.21 1.62 1.01 1.49 +oublieuse oublieux adj f s 0.65 2.23 0.00 0.68 +oublieuses oublieux adj f p 0.65 2.23 0.20 0.27 +oublieux oublieux adj m 0.65 2.23 0.45 1.28 +oubliez oublier ver 487.06 286.96 49.48 11.15 imp:pre:2p;ind:pre:2p; +oubliiez oublier ver 487.06 286.96 0.00 0.07 ind:imp:2p; +oubliions oublier ver 487.06 286.96 0.00 0.27 ind:imp:1p; +oubliâmes oublier ver 487.06 286.96 0.14 0.07 ind:pas:1p; +oublions oublier ver 487.06 286.96 13.28 3.72 imp:pre:1p;ind:pre:1p; +oubliât oublier ver 487.06 286.96 0.00 0.41 sub:imp:3s; +oublis oubli nom m p 8.02 29.93 0.20 1.22 +oublièrent oublier ver 487.06 286.96 0.02 1.08 ind:pas:3p; +oublié oublier ver m s 487.06 286.96 154.09 80.27 par:pas;par:pas;par:pas; +oubliée oublier ver f s 487.06 286.96 8.81 8.92 par:pas; +oubliées oublier ver f p 487.06 286.96 1.65 2.64 par:pas; +oubliés oublier ver m p 487.06 286.96 3.72 5.95 par:pas; +ouche ouche nom f s 0.42 0.07 0.42 0.07 +oued oued nom m s 0.27 0.61 0.27 0.47 +oueds oued nom m p 0.27 0.61 0.00 0.14 +ouest_allemand ouest_allemand adj m s 0.12 0.00 0.12 0.00 +ouest ouest nom m 27.79 27.77 27.79 27.77 +ouf ouf ono 4.57 7.03 4.57 7.03 +ougandais ougandais nom m 0.06 0.07 0.06 0.07 +ougandaise ougandais adj f s 0.04 0.00 0.04 0.00 +ouh ouh ono 5.50 1.28 5.50 1.28 +oui_da oui_da ono 0.27 0.07 0.27 0.07 +oui oui adv_sup 3207.35 637.57 3207.35 637.57 +ouiche ouiche ono 0.02 1.96 0.02 1.96 +ouighour ouighour nom m s 0.00 1.01 0.00 0.61 +ouighours ouighour nom m p 0.00 1.01 0.00 0.41 +ouille ouille ono 0.79 1.69 0.79 1.69 +ouistiti ouistiti nom m s 1.51 0.81 1.46 0.61 +ouistitis ouistiti nom m p 1.51 0.81 0.05 0.20 +oukases oukase nom m p 0.00 0.07 0.00 0.07 +ouléma ouléma nom m s 0.01 1.69 0.01 0.14 +oulémas ouléma nom m p 0.01 1.69 0.00 1.55 +ounce ounce nom f s 0.01 0.00 0.01 0.00 +ouragan ouragan nom m s 6.05 4.19 5.09 3.72 +ouragans ouragan nom m p 6.05 4.19 0.96 0.47 +ouralienne ouralien adj f s 0.00 0.07 0.00 0.07 +ouraniennes ouranien adj f p 0.00 0.07 0.00 0.07 +ourdi ourdir ver m s 0.72 1.55 0.39 0.27 par:pas; +ourdie ourdir ver f s 0.72 1.55 0.10 0.14 par:pas; +ourdies ourdir ver f p 0.72 1.55 0.00 0.07 par:pas; +ourdir ourdir ver 0.72 1.55 0.01 0.14 inf; +ourdira ourdir ver 0.72 1.55 0.00 0.07 ind:fut:3s; +ourdis ourdir ver 0.72 1.55 0.01 0.07 ind:pre:1s;ind:pre:2s; +ourdissage ourdissage nom m s 0.00 0.54 0.00 0.54 +ourdissait ourdir ver 0.72 1.55 0.10 0.07 ind:imp:3s; +ourdissant ourdir ver 0.72 1.55 0.00 0.20 par:pre; +ourdissent ourdir ver 0.72 1.55 0.00 0.14 ind:pre:3p; +ourdisseur ourdisseur nom m s 0.00 0.41 0.00 0.07 +ourdisseurs ourdisseur nom m p 0.00 0.41 0.00 0.07 +ourdisseuses ourdisseur nom f p 0.00 0.41 0.00 0.27 +ourdissoir ourdissoir nom m s 0.00 0.27 0.00 0.27 +ourdit ourdir ver 0.72 1.55 0.11 0.41 ind:pre:3s;ind:pas:3s; +ourdou ourdou nom m s 0.42 0.00 0.42 0.00 +ourlaient ourler ver 0.02 5.14 0.00 0.20 ind:imp:3p; +ourlait ourler ver 0.02 5.14 0.00 0.41 ind:imp:3s; +ourlant ourler ver 0.02 5.14 0.00 0.34 par:pre; +ourle ourler ver 0.02 5.14 0.00 0.34 ind:pre:3s; +ourlent ourler ver 0.02 5.14 0.00 0.20 ind:pre:3p; +ourler ourler ver 0.02 5.14 0.00 0.34 inf; +ourlet ourlet nom m s 0.93 3.11 0.69 2.36 +ourlets ourlet nom m p 0.93 3.11 0.24 0.74 +ourlé ourler ver m s 0.02 5.14 0.00 0.74 par:pas; +ourlée ourler ver f s 0.02 5.14 0.00 0.81 par:pas; +ourlées ourler ver f p 0.02 5.14 0.02 1.42 par:pas; +ourlés ourler ver m p 0.02 5.14 0.00 0.34 par:pas; +ouroboros ouroboros nom m 0.02 0.00 0.02 0.00 +ours ours nom m s 24.57 17.91 23.96 17.36 +ourse ours nom f s 24.57 17.91 0.58 0.47 +ourses ours nom f p 24.57 17.91 0.02 0.07 +oursin oursin nom m s 0.38 2.03 0.04 0.54 +oursins oursin nom m p 0.38 2.03 0.34 1.49 +ourson ourson nom m s 1.62 0.74 1.52 0.41 +oursonne ourson nom f s 1.62 0.74 0.01 0.07 +oursonnes oursonne nom f p 0.01 0.00 0.01 0.00 +oursons ourson nom m p 1.62 0.74 0.09 0.27 +ousque ousque adv 0.01 0.07 0.01 0.07 +oust oust ono 0.25 0.14 0.25 0.14 +oustachi oustachi nom m s 0.28 0.27 0.14 0.00 +oustachis oustachi nom m p 0.28 0.27 0.14 0.27 +ouste ouste ono 5.24 1.82 5.24 1.82 +out out adj 8.04 0.68 8.04 0.68 +outarde outarde nom f s 0.00 0.14 0.00 0.07 +outardes outarde nom f p 0.00 0.14 0.00 0.07 +outil outil nom m s 14.18 30.88 3.63 10.14 +outillage outillage nom m s 0.36 2.70 0.25 2.23 +outillages outillage nom m p 0.36 2.70 0.11 0.47 +outiller outiller ver 0.06 0.20 0.01 0.00 inf; +outilleur outilleur nom m s 0.10 0.00 0.10 0.00 +outillé outiller ver m s 0.06 0.20 0.04 0.07 par:pas; +outillée outillé adj f s 0.01 0.41 0.00 0.07 +outillées outillé adj f p 0.01 0.41 0.00 0.07 +outillés outiller ver m p 0.06 0.20 0.01 0.07 par:pas; +outils outil nom m p 14.18 30.88 10.56 20.74 +outlaw outlaw nom m s 0.00 0.14 0.00 0.07 +outlaws outlaw nom m p 0.00 0.14 0.00 0.07 +outrage outrage nom m s 3.89 5.14 3.40 2.97 +outrageant outrageant adj m s 0.36 0.61 0.15 0.27 +outrageante outrageant adj f s 0.36 0.61 0.20 0.20 +outrageantes outrageant adj f p 0.36 0.61 0.00 0.07 +outrageants outrageant adj m p 0.36 0.61 0.02 0.07 +outragent outrager ver 2.36 4.66 0.01 0.07 ind:pre:3p; +outrager outrager ver 2.36 4.66 0.26 0.27 inf; +outragerais outrager ver 2.36 4.66 0.00 0.07 cnd:pre:1s; +outrages outrage nom m p 3.89 5.14 0.49 2.16 +outrageuse outrageux adj f s 0.10 0.27 0.05 0.00 +outrageusement outrageusement adv 0.08 1.35 0.08 1.35 +outrageuses outrageux adj f p 0.10 0.27 0.01 0.07 +outrageux outrageux adj m s 0.10 0.27 0.03 0.20 +outragez outrager ver 2.36 4.66 0.17 0.00 imp:pre:2p;ind:pre:2p; +outragèrent outrager ver 2.36 4.66 0.00 0.07 ind:pas:3p; +outragé outrager ver m s 2.36 4.66 0.26 1.42 par:pas; +outragée outrager ver f s 2.36 4.66 0.27 1.55 par:pas; +outragées outrager ver f p 2.36 4.66 0.01 0.20 par:pas; +outragés outrager ver m p 2.36 4.66 0.31 0.54 par:pas; +outrait outrer ver 0.57 3.11 0.00 0.34 ind:imp:3s; +outrance outrance nom f s 0.17 3.51 0.17 2.77 +outrances outrance nom f p 0.17 3.51 0.00 0.74 +outrancier outrancier adj m s 0.16 0.68 0.14 0.41 +outrancière outrancier adj f s 0.16 0.68 0.01 0.14 +outrancières outrancier adj f p 0.16 0.68 0.01 0.14 +outrant outrer ver 0.57 3.11 0.00 0.07 par:pre; +outre_atlantique outre_atlantique adv 0.04 0.68 0.04 0.68 +outre_manche outre_manche adv 0.00 0.20 0.00 0.20 +outre_mer outre_mer adv 0.89 4.05 0.89 4.05 +outre_rhin outre_rhin adv 0.00 0.27 0.00 0.27 +outre_tombe outre_tombe adj s 0.26 2.16 0.26 2.16 +outre outre pre 3.03 15.27 3.03 15.27 +outrecuidance outrecuidance nom f s 0.01 0.74 0.01 0.74 +outrecuidant outrecuidant adj m s 0.11 0.54 0.11 0.20 +outrecuidante outrecuidant adj f s 0.11 0.54 0.00 0.14 +outrecuidantes outrecuidant adj f p 0.11 0.54 0.00 0.14 +outrecuidants outrecuidant adj m p 0.11 0.54 0.00 0.07 +outremer outremer nom m s 0.21 0.47 0.21 0.47 +outrepassa outrepasser ver 0.83 0.68 0.01 0.07 ind:pas:3s; +outrepassaient outrepasser ver 0.83 0.68 0.00 0.14 ind:imp:3p; +outrepassait outrepasser ver 0.83 0.68 0.03 0.07 ind:imp:3s; +outrepassant outrepasser ver 0.83 0.68 0.01 0.00 par:pre; +outrepasse outrepasser ver 0.83 0.68 0.13 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +outrepassent outrepasser ver 0.83 0.68 0.02 0.00 ind:pre:3p; +outrepasser outrepasser ver 0.83 0.68 0.23 0.07 inf; +outrepasserai outrepasser ver 0.83 0.68 0.00 0.07 ind:fut:1s; +outrepasses outrepasser ver 0.83 0.68 0.20 0.00 ind:pre:2s; +outrepassez outrepasser ver 0.83 0.68 0.07 0.00 ind:pre:2p; +outrepassé outrepasser ver m s 0.83 0.68 0.13 0.07 par:pas; +outrer outrer ver 0.57 3.11 0.00 0.07 inf; +outres outre nom_sup f p 4.45 24.59 0.02 1.42 +outrigger outrigger nom m s 0.16 0.00 0.16 0.00 +outré outrer ver m s 0.57 3.11 0.27 0.61 par:pas; +outrée outré adj f s 0.47 2.23 0.26 0.68 +outrées outrer ver f p 0.57 3.11 0.01 0.07 par:pas; +outrés outré adj m p 0.47 2.23 0.01 0.34 +outsider outsider nom m s 0.54 0.74 0.44 0.54 +outsiders outsider nom m p 0.54 0.74 0.10 0.20 +ouvert ouvrir ver m s 413.32 492.50 56.83 56.35 par:pas; +ouverte ouvrir ver f s 413.32 492.50 22.29 27.97 par:pas; +ouvertement ouvertement adv 2.50 6.96 2.50 6.96 +ouvertes ouvert adj f p 39.97 132.36 2.88 15.14 +ouverts ouvert adj m p 39.97 132.36 7.22 23.31 +ouverture ouverture nom f s 18.31 26.69 16.87 23.04 +ouvertures ouverture nom f p 18.31 26.69 1.44 3.65 +ouvrîmes ouvrir ver 413.32 492.50 0.00 0.34 ind:pas:1p; +ouvrît ouvrir ver 413.32 492.50 0.01 1.28 sub:imp:3s; +ouvrable ouvrable adj m s 0.31 1.35 0.03 0.47 +ouvrables ouvrable adj p 0.31 1.35 0.28 0.88 +ouvrage ouvrage nom m s 5.50 37.30 4.72 26.15 +ouvrageant ouvrager ver 0.14 0.68 0.00 0.07 par:pre; +ouvrager ouvrager ver 0.14 0.68 0.00 0.07 inf; +ouvrages ouvrage nom m p 5.50 37.30 0.78 11.15 +ouvragé ouvragé adj m s 0.15 2.30 0.02 0.88 +ouvragée ouvragé adj f s 0.15 2.30 0.12 0.54 +ouvragées ouvragé adj f p 0.15 2.30 0.00 0.61 +ouvragés ouvragé adj m p 0.15 2.30 0.01 0.27 +ouvraient ouvrir ver 413.32 492.50 0.52 12.50 ind:imp:3p; +ouvrais ouvrir ver 413.32 492.50 1.39 4.12 ind:imp:1s;ind:imp:2s; +ouvrait ouvrir ver 413.32 492.50 2.40 46.62 ind:imp:3s; +ouvrant ouvrir ver 413.32 492.50 1.86 18.65 par:pre; +ouvrants ouvrant adj m p 0.32 3.18 0.00 0.07 +ouvre_boîte ouvre_boîte nom m s 0.32 0.20 0.32 0.20 +ouvre_boîtes ouvre_boîtes nom m 0.16 0.34 0.16 0.34 +ouvre_bouteille ouvre_bouteille nom m s 0.12 0.14 0.08 0.00 +ouvre_bouteille ouvre_bouteille nom m p 0.12 0.14 0.04 0.14 +ouvre ouvrir ver 413.32 492.50 141.45 80.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ouvrent ouvrir ver 413.32 492.50 6.24 10.88 ind:pre:3p;sub:pre:3p; +ouvrer ouvrer ver 0.02 0.14 0.00 0.07 inf; +ouvres ouvrir ver 413.32 492.50 10.20 1.62 ind:pre:2s;sub:pre:2s; +ouvreur ouvreur nom m s 1.21 2.36 1.00 0.00 +ouvreurs ouvreur nom m p 1.21 2.36 0.01 0.14 +ouvreuse ouvreur nom f s 1.21 2.36 0.20 1.62 +ouvreuses ouvreuse nom f p 0.17 0.00 0.17 0.00 +ouvrez ouvrir ver 413.32 492.50 64.17 6.22 imp:pre:2p;imp:pre:2p;ind:pre:2p; +ouvrier ouvrier nom m s 22.38 51.35 7.17 12.64 +ouvriers ouvrier nom m p 22.38 51.35 14.56 34.46 +ouvriez ouvrir ver 413.32 492.50 0.41 0.00 ind:imp:2p; +ouvrions ouvrir ver 413.32 492.50 0.10 0.88 ind:imp:1p; +ouvrir ouvrir ver 413.32 492.50 79.61 88.58 inf; +ouvrira ouvrir ver 413.32 492.50 4.13 1.96 ind:fut:3s; +ouvrirai ouvrir ver 413.32 492.50 2.45 0.95 ind:fut:1s; +ouvriraient ouvrir ver 413.32 492.50 0.09 1.28 cnd:pre:3p; +ouvrirais ouvrir ver 413.32 492.50 0.41 0.61 cnd:pre:1s;cnd:pre:2s; +ouvrirait ouvrir ver 413.32 492.50 0.75 4.26 cnd:pre:3s; +ouvriras ouvrir ver 413.32 492.50 0.85 0.27 ind:fut:2s; +ouvrirent ouvrir ver 413.32 492.50 0.51 3.78 ind:pas:3p; +ouvrirez ouvrir ver 413.32 492.50 0.60 0.07 ind:fut:2p; +ouvririez ouvrir ver 413.32 492.50 0.18 0.07 cnd:pre:2p; +ouvririons ouvrir ver 413.32 492.50 0.15 0.00 cnd:pre:1p; +ouvrirons ouvrir ver 413.32 492.50 0.77 0.00 ind:fut:1p; +ouvriront ouvrir ver 413.32 492.50 1.35 0.68 ind:fut:3p; +ouvris ouvrir ver 413.32 492.50 0.36 7.97 ind:pas:1s;ind:pas:2s; +ouvrissent ouvrir ver 413.32 492.50 0.00 0.20 sub:imp:3p; +ouvrit ouvrir ver 413.32 492.50 2.54 86.62 ind:pas:3s; +ouvrière ouvrier adj f s 6.07 15.88 2.48 6.69 +ouvrières ouvrière nom f p 1.56 0.00 1.56 0.00 +ouvriérisme ouvriérisme nom m s 0.00 0.07 0.00 0.07 +ouvriériste ouvriériste adj m s 0.00 0.20 0.00 0.20 +ouvroir ouvroir nom m s 0.00 0.88 0.00 0.68 +ouvroirs ouvroir nom m p 0.00 0.88 0.00 0.20 +ouvrons ouvrir ver 413.32 492.50 3.39 0.95 imp:pre:1p;ind:pre:1p; +ouvré ouvrer ver m s 0.02 0.14 0.02 0.07 par:pas; +ouvrées ouvré adj f p 0.04 0.27 0.00 0.14 +ouvrés ouvré adj m p 0.04 0.27 0.03 0.07 +ouzbeks ouzbek adj p 0.00 0.07 0.00 0.07 +ouzo ouzo nom m s 0.58 2.36 0.48 2.30 +ouzos ouzo nom m p 0.58 2.36 0.10 0.07 +ovaire ovaire nom m s 1.20 1.35 0.49 0.14 +ovaires ovaire nom m p 1.20 1.35 0.71 1.22 +ovalaire ovalaire adj f s 0.00 0.07 0.00 0.07 +ovale ovale adj s 1.88 10.54 1.83 8.18 +ovales ovale adj p 1.88 10.54 0.06 2.36 +ovalisées ovaliser ver f p 0.00 0.07 0.00 0.07 par:pas; +ovariectomie ovariectomie nom f s 0.01 0.00 0.01 0.00 +ovarien ovarien adj m s 0.07 0.00 0.02 0.00 +ovarienne ovarien adj f s 0.07 0.00 0.05 0.00 +ovariotomie ovariotomie nom f s 0.00 0.07 0.00 0.07 +ovation ovation nom f s 0.96 2.50 0.91 1.49 +ovationnaient ovationner ver 0.03 0.34 0.00 0.07 ind:imp:3p; +ovationner ovationner ver 0.03 0.34 0.01 0.14 inf; +ovationné ovationner ver m s 0.03 0.34 0.01 0.07 par:pas; +ovationnés ovationner ver m p 0.03 0.34 0.01 0.07 par:pas; +ovations ovation nom f p 0.96 2.50 0.06 1.01 +ove ove nom m s 0.20 0.07 0.20 0.07 +overdose overdose nom f s 5.11 1.28 4.81 1.28 +overdoses overdose nom f p 5.11 1.28 0.29 0.00 +overdrive overdrive nom m s 0.05 0.07 0.05 0.07 +ovibos ovibos nom m 0.00 0.07 0.00 0.07 +ovin ovin adj m s 0.01 0.00 0.01 0.00 +ovins ovin nom m p 0.04 0.07 0.04 0.07 +ovipare ovipare adj s 0.02 0.00 0.01 0.00 +ovipares ovipare adj p 0.02 0.00 0.01 0.00 +ovni ovni nom m 2.98 0.27 1.07 0.14 +ovnis ovni nom m p 2.98 0.27 1.91 0.14 +ovoïdal ovoïdal adj m s 0.01 0.61 0.00 0.61 +ovoïdale ovoïdal adj f s 0.01 0.61 0.01 0.00 +ovoïde ovoïde adj s 0.00 1.08 0.00 0.95 +ovoïdes ovoïde adj p 0.00 1.08 0.00 0.14 +ovocyte ovocyte nom m s 0.03 0.41 0.00 0.14 +ovocytes ovocyte nom m p 0.03 0.41 0.03 0.27 +ovée ové adj f s 0.01 0.00 0.01 0.00 +ovulaire ovulaire adj f s 0.01 0.00 0.01 0.00 +ovulation ovulation nom f s 0.53 0.07 0.53 0.07 +ovule ovule nom m s 1.16 0.47 0.64 0.27 +ovuler ovuler ver 0.11 0.00 0.04 0.00 inf; +ovules ovule nom m p 1.16 0.47 0.52 0.20 +oxalate oxalate nom m s 0.01 0.00 0.01 0.00 +oxer oxer nom m s 0.00 0.07 0.00 0.07 +oxfordien oxfordien adj m s 0.00 0.14 0.00 0.07 +oxfordiennes oxfordien adj f p 0.00 0.14 0.00 0.07 +oxfords oxford nom m p 0.03 0.14 0.03 0.14 +oxhydrique oxhydrique adj s 0.00 0.07 0.00 0.07 +oxo oxo adj 0.00 0.07 0.00 0.07 +oxonienne oxonien nom f s 0.00 0.07 0.00 0.07 +oxychlorure oxychlorure nom m s 0.01 0.00 0.01 0.00 +oxydant oxydant nom m s 0.05 0.00 0.01 0.00 +oxydants oxydant nom m p 0.05 0.00 0.04 0.00 +oxydation oxydation nom f s 0.16 0.20 0.16 0.20 +oxyde oxyde nom m s 1.03 0.41 0.99 0.34 +oxyder oxyder ver 0.10 0.61 0.00 0.07 inf; +oxydes oxyde nom m p 1.03 0.41 0.04 0.07 +oxydé oxyder ver m s 0.10 0.61 0.07 0.14 par:pas; +oxydée oxyder ver f s 0.10 0.61 0.00 0.14 par:pas; +oxydées oxyder ver f p 0.10 0.61 0.00 0.14 par:pas; +oxygène oxygène nom m s 14.03 4.39 14.03 4.39 +oxygènent oxygéner ver 0.53 0.20 0.01 0.07 ind:pre:3p; +oxygénation oxygénation nom f s 0.15 0.07 0.15 0.07 +oxygéner oxygéner ver 0.53 0.20 0.19 0.00 inf; +oxygéné oxygéné adj m s 0.49 0.95 0.05 0.07 +oxygénée oxygéné adj f s 0.49 0.95 0.42 0.54 +oxygénées oxygéné adj f p 0.49 0.95 0.00 0.07 +oxygénés oxygéné adj m p 0.49 0.95 0.02 0.27 +oxymore oxymore nom m s 0.04 0.00 0.03 0.00 +oxymores oxymore nom m p 0.04 0.00 0.01 0.00 +oxymoron oxymoron nom m s 0.05 0.00 0.05 0.00 +oxymétrie oxymétrie nom f s 0.03 0.00 0.03 0.00 +oyant oyant adj m s 0.10 0.00 0.10 0.00 +oyat oyat nom m s 0.11 0.14 0.00 0.07 +oyats oyat nom m p 0.11 0.14 0.11 0.07 +oye oye nom f s 0.21 0.95 0.21 0.95 +oyez ouïr ver 5.72 3.78 1.69 0.20 imp:pre:2p;ind:pre:2p; +oyons ouïr ver 5.72 3.78 0.01 0.07 imp:pre:1p; +ozone ozone nom m s 1.35 0.54 1.35 0.54 +p. p. nom m 3.66 0.34 3.66 0.34 +p.m. p.m. nom m s 0.01 0.00 0.01 0.00 +pôle pôle nom m s 3.59 3.99 3.12 2.77 +pôles pôle nom m p 3.59 3.99 0.47 1.22 +pûmes pouvoir ver_sup 5524.52 2659.80 0.16 1.62 ind:pas:1p; +pût pouvoir ver_sup 5524.52 2659.80 0.50 42.70 sub:imp:3s; +pûtes pouvoir ver_sup 5524.52 2659.80 0.04 0.00 ind:pas:2p; +pa pa art_ind m s 0.01 0.00 0.01 0.00 +paît paître ver 2.29 4.46 0.20 0.00 ind:pre:3s; +paître paître ver 2.29 4.46 0.97 1.76 inf; +paîtront paître ver 2.29 4.46 0.12 0.00 ind:fut:3p; +païen païen adj m s 1.39 3.38 0.51 1.42 +païenne païen adj f s 1.39 3.38 0.39 1.28 +païennes païen adj f p 1.39 3.38 0.29 0.20 +païens païen nom m p 2.22 2.57 1.91 1.28 +pacage pacage nom m s 0.00 0.74 0.00 0.34 +pacages pacage nom m p 0.00 0.74 0.00 0.41 +pacas paca adj m p 0.01 0.00 0.01 0.00 +pacemaker pacemaker nom m s 0.56 0.34 0.41 0.34 +pacemakers pacemaker nom m p 0.56 0.34 0.15 0.00 +pacha pacha nom m s 7.28 11.96 7.11 11.15 +pachas pacha nom m p 7.28 11.96 0.17 0.81 +pachinko pachinko nom m s 0.00 0.07 0.00 0.07 +pachon pachon nom m s 0.00 0.07 0.00 0.07 +pachyderme pachyderme nom m s 0.21 1.01 0.14 0.74 +pachydermes pachyderme nom m p 0.21 1.01 0.07 0.27 +pachydermique pachydermique adj s 0.01 0.74 0.01 0.68 +pachydermiques pachydermique adj p 0.01 0.74 0.00 0.07 +pacifiait pacifier ver 0.65 2.30 0.00 0.14 ind:imp:3s; +pacifiant pacifier ver 0.65 2.30 0.00 0.07 par:pre; +pacifiante pacifiant adj f s 0.00 0.27 0.00 0.20 +pacifiantes pacifiant adj f p 0.00 0.27 0.00 0.07 +pacificateur pacificateur nom m s 4.01 0.07 1.10 0.07 +pacificateurs pacificateur nom m p 4.01 0.07 2.74 0.00 +pacification pacification nom f s 0.12 0.41 0.12 0.41 +pacificatrice pacificateur nom f s 4.01 0.07 0.17 0.00 +pacifie pacifier ver 0.65 2.30 0.00 0.14 ind:pre:3s; +pacifier pacifier ver 0.65 2.30 0.45 0.61 inf; +pacifique pacifique adj s 4.00 4.26 2.90 3.11 +pacifiquement pacifiquement adv 0.93 0.27 0.93 0.27 +pacifiques pacifique adj p 4.00 4.26 1.10 1.15 +pacifisme pacifisme nom m s 0.14 0.54 0.14 0.54 +pacifiste pacifiste adj s 0.98 0.95 0.88 0.61 +pacifistes pacifiste nom p 0.46 0.68 0.17 0.34 +pacifié pacifier ver m s 0.65 2.30 0.17 0.74 par:pas; +pacifiée pacifier ver f s 0.65 2.30 0.03 0.34 par:pas; +pacifiées pacifier ver f p 0.65 2.30 0.00 0.14 par:pas; +pacifiés pacifier ver m p 0.65 2.30 0.00 0.14 par:pas; +pack pack nom m s 1.72 0.88 1.50 0.27 +package package nom m s 0.09 0.00 0.09 0.00 +packaging packaging nom m s 0.01 0.00 0.01 0.00 +packs pack nom m p 1.72 0.88 0.22 0.61 +packson packson nom m s 0.04 0.07 0.04 0.07 +pacotille pacotille nom f s 1.63 3.24 1.61 2.91 +pacotilles pacotille nom f p 1.63 3.24 0.02 0.34 +pacs pacs nom m 0.58 0.00 0.58 0.00 +pacsif pacsif nom m s 0.00 0.34 0.00 0.20 +pacsifs pacsif nom m p 0.00 0.34 0.00 0.14 +pacson pacson nom m s 0.06 0.61 0.04 0.61 +pacsons pacson nom m p 0.06 0.61 0.02 0.00 +pacsés pacser ver m p 0.37 0.00 0.37 0.00 par:pas; +pacte pacte nom m s 8.12 11.89 7.29 11.49 +pactes pacte nom m p 8.12 11.89 0.83 0.41 +pactisaient pactiser ver 0.52 1.42 0.00 0.07 ind:imp:3p; +pactisait pactiser ver 0.52 1.42 0.01 0.20 ind:imp:3s; +pactisant pactiser ver 0.52 1.42 0.00 0.07 par:pre; +pactise pactiser ver 0.52 1.42 0.05 0.07 ind:pre:1s;ind:pre:3s; +pactiser pactiser ver 0.52 1.42 0.25 0.74 inf; +pactiseras pactiser ver 0.52 1.42 0.00 0.07 ind:fut:2s; +pactiseurs pactiseur nom m p 0.00 0.07 0.00 0.07 +pactisez pactiser ver 0.52 1.42 0.01 0.00 imp:pre:2p; +pactisions pactiser ver 0.52 1.42 0.00 0.07 ind:imp:1p; +pactisé pactiser ver m s 0.52 1.42 0.20 0.14 par:pas; +pactole pactole nom m s 1.14 0.74 1.14 0.61 +pactoles pactole nom m p 1.14 0.74 0.00 0.14 +pad pad nom m s 0.11 0.27 0.11 0.27 +paddock paddock nom m s 0.28 2.64 0.27 2.36 +paddocker paddocker ver 0.00 0.07 0.00 0.07 inf; +paddocks paddock nom m p 0.28 2.64 0.01 0.27 +paddy paddy nom m s 1.52 0.47 1.52 0.47 +padouanes padouan adj f p 0.00 0.07 0.00 0.07 +paella paella nom f s 1.98 0.68 1.71 0.54 +paellas paella nom f p 1.98 0.68 0.27 0.14 +paf paf adj 1.31 2.23 1.31 2.23 +pagaïe pagaïe nom f s 0.07 0.74 0.07 0.74 +pagaie pagaie nom f s 0.72 1.08 0.65 0.47 +pagaient pagayer ver 0.42 1.08 0.02 0.00 ind:pre:3p; +pagaiera pagayer ver 0.42 1.08 0.01 0.00 ind:fut:3s; +pagaies pagaie nom f p 0.72 1.08 0.07 0.61 +pagaille pagaille nom f s 5.21 4.80 5.09 4.73 +pagailles pagaille nom f p 5.21 4.80 0.13 0.07 +pagailleux pagailleux adj m 0.00 0.07 0.00 0.07 +paganisme paganisme nom m s 0.04 0.47 0.04 0.47 +pagaya pagayer ver 0.42 1.08 0.00 0.07 ind:pas:3s; +pagayait pagayer ver 0.42 1.08 0.00 0.07 ind:imp:3s; +pagayant pagayer ver 0.42 1.08 0.02 0.07 par:pre; +pagaye pagaye nom f s 0.02 0.41 0.02 0.41 +pagayer pagayer ver 0.42 1.08 0.13 0.34 inf; +pagayeur pagayeur nom m s 0.03 0.14 0.00 0.07 +pagayeurs pagayeur nom m p 0.03 0.14 0.03 0.07 +pagayez pagayer ver 0.42 1.08 0.09 0.00 imp:pre:2p; +pagayèrent pagayer ver 0.42 1.08 0.00 0.07 ind:pas:3p; +pagayé pagayer ver m s 0.42 1.08 0.05 0.14 par:pas; +page page nom s 39.41 115.54 25.16 55.88 +pageais pager ver 1.01 0.61 0.00 0.07 ind:imp:1s; +pageait pager ver 1.01 0.61 0.00 0.07 ind:imp:3s; +pageant pager ver 1.01 0.61 0.01 0.00 par:pre; +pagels pagel nom m p 0.01 0.00 0.01 0.00 +pageot pageot nom m s 0.02 2.09 0.02 1.62 +pageots pageot nom m p 0.02 2.09 0.00 0.47 +pager pager ver 1.01 0.61 0.99 0.27 inf; +pages page nom p 39.41 115.54 14.25 59.66 +pagination pagination nom f s 0.01 0.07 0.01 0.07 +paginer paginer ver 0.01 0.00 0.01 0.00 inf; +pagne pagne nom m s 0.40 1.69 0.37 1.42 +pagnes pagne nom m p 0.40 1.69 0.03 0.27 +pagnon pagnon nom m s 0.00 0.07 0.00 0.07 +pagnote pagnoter ver 0.00 0.14 0.00 0.07 ind:pre:1s; +pagnoter pagnoter ver 0.00 0.14 0.00 0.07 inf; +pagode pagode nom f s 0.40 2.84 0.23 2.36 +pagodes pagode nom f p 0.40 2.84 0.16 0.47 +pagodon pagodon nom m s 0.00 0.07 0.00 0.07 +pagé pager ver m s 1.01 0.61 0.01 0.07 par:pas; +pagée pager ver f s 1.01 0.61 0.00 0.07 par:pas; +pagure pagure nom m s 0.00 0.14 0.00 0.07 +pagures pagure nom m p 0.00 0.14 0.00 0.07 +pagus pagus nom m 0.01 0.07 0.01 0.07 +pagés pager ver m p 1.01 0.61 0.00 0.07 par:pas; +paie payer ver 416.67 150.20 53.51 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +paiement paiement nom m s 5.56 2.03 4.36 1.62 +paiements paiement nom m p 5.56 2.03 1.20 0.41 +paient payer ver 416.67 150.20 6.98 2.09 ind:pre:3p; +paiera payer ver 416.67 150.20 8.71 1.96 ind:fut:3s; +paierai payer ver 416.67 150.20 14.53 2.57 ind:fut:1s; +paieraient payer ver 416.67 150.20 0.93 0.41 cnd:pre:3p; +paierais payer ver 416.67 150.20 2.84 0.41 cnd:pre:1s;cnd:pre:2s; +paierait payer ver 416.67 150.20 2.20 1.62 cnd:pre:3s; +paieras payer ver 416.67 150.20 6.30 1.22 ind:fut:2s; +paierez payer ver 416.67 150.20 4.70 0.34 ind:fut:2p; +paierie paierie nom f s 0.01 0.20 0.01 0.20 +paieriez payer ver 416.67 150.20 0.11 0.00 cnd:pre:2p; +paierions payer ver 416.67 150.20 0.01 0.07 cnd:pre:1p; +paierons payer ver 416.67 150.20 1.01 0.27 ind:fut:1p; +paieront payer ver 416.67 150.20 2.84 0.54 ind:fut:3p; +paies payer ver 416.67 150.20 8.97 0.74 ind:pre:2s; +paillard paillard adj m s 0.35 0.95 0.17 0.61 +paillardait paillarder ver 0.00 0.07 0.00 0.07 ind:imp:3s; +paillarde paillard adj f s 0.35 0.95 0.01 0.14 +paillardement paillardement adv 0.00 0.07 0.00 0.07 +paillardes paillard adj f p 0.35 0.95 0.17 0.14 +paillardise paillardise nom f s 0.16 0.20 0.16 0.20 +paillards paillard adj m p 0.35 0.95 0.00 0.07 +paillasse paillasse nom s 2.38 8.78 1.98 7.43 +paillasses paillasse nom f p 2.38 8.78 0.40 1.35 +paillasson paillasson nom m s 1.06 4.39 0.93 3.51 +paillassons paillasson nom m p 1.06 4.39 0.14 0.88 +paille paille nom f s 9.43 44.05 8.57 42.97 +pailler pailler ver 0.01 0.27 0.01 0.00 inf; +pailles paille nom f p 9.43 44.05 0.86 1.08 +pailleter pailleter ver 0.03 1.35 0.00 0.14 inf; +paillette paillette nom f s 1.71 5.14 0.08 0.41 +paillettes paillette nom f p 1.71 5.14 1.63 4.73 +pailleté pailleter ver m s 0.03 1.35 0.02 0.34 par:pas; +pailletée pailleté adj f s 0.03 1.15 0.01 0.34 +pailletées pailleté adj f p 0.03 1.15 0.01 0.20 +pailletés pailleter ver m p 0.03 1.35 0.00 0.27 par:pas; +pailleux pailleux adj m 0.00 0.07 0.00 0.07 +paillis paillis nom m 0.04 0.00 0.04 0.00 +paillon paillon nom m s 0.00 0.41 0.00 0.20 +paillons paillon nom m p 0.00 0.41 0.00 0.20 +paillot paillot nom m s 0.00 0.81 0.00 0.81 +paillote paillote nom f s 0.02 1.22 0.02 0.34 +paillotes paillote nom f p 0.02 1.22 0.00 0.88 +paillé paillé adj m s 0.00 1.62 0.00 0.14 +paillu paillu adj m s 0.00 0.07 0.00 0.07 +paillée paillé adj f s 0.00 1.62 0.00 0.81 +paillées paillé adj f p 0.00 1.62 0.00 0.68 +paimpolaise paimpolais nom f s 0.00 0.47 0.00 0.41 +paimpolaises paimpolais nom f p 0.00 0.47 0.00 0.07 +pain pain nom m s 67.58 105.41 62.81 99.32 +pains pain nom m p 67.58 105.41 4.77 6.08 +pair pair nom m s 3.54 6.62 2.27 3.92 +paire paire nom f s 21.59 32.84 18.31 26.89 +paires paire nom f p 21.59 32.84 3.28 5.95 +pairesses pairesse nom f p 0.00 0.07 0.00 0.07 +pairie pairie nom f s 0.03 0.07 0.03 0.07 +pairs pair nom m p 3.54 6.62 1.27 2.70 +pais paître ver 2.29 4.46 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +paisible paisible adj s 7.55 36.42 6.32 27.84 +paisiblement paisiblement adv 2.10 9.12 2.10 9.12 +paisibles paisible adj p 7.55 36.42 1.23 8.58 +paissaient paître ver 2.29 4.46 0.01 1.49 ind:imp:3p; +paissait paître ver 2.29 4.46 0.14 0.20 ind:imp:3s; +paissant paître ver 2.29 4.46 0.03 0.34 par:pre; +paissent paître ver 2.29 4.46 0.42 0.61 ind:pre:3p; +paiute paiute nom s 0.05 0.07 0.04 0.07 +paiutes paiute nom p 0.05 0.07 0.01 0.00 +paix paix nom f 144.86 103.72 144.86 103.72 +pakistanais pakistanais nom m 1.56 0.27 1.36 0.20 +pakistanaise pakistanais adj f s 1.22 0.47 0.23 0.20 +pakistanaises pakistanais adj f p 1.22 0.47 0.04 0.00 +pakistano pakistano adv 0.01 0.07 0.01 0.07 +pal pal nom m s 0.19 0.88 0.14 0.68 +palabra palabrer ver 0.64 2.03 0.09 0.07 ind:pas:3s; +palabraient palabrer ver 0.64 2.03 0.00 0.34 ind:imp:3p; +palabrait palabrer ver 0.64 2.03 0.00 0.34 ind:imp:3s; +palabrant palabrer ver 0.64 2.03 0.01 0.20 par:pre; +palabre palabrer ver 0.64 2.03 0.11 0.00 ind:pre:3s; +palabrent palabrer ver 0.64 2.03 0.02 0.20 ind:pre:3p; +palabrer palabrer ver 0.64 2.03 0.35 0.88 inf; +palabres palabre nom p 0.14 3.51 0.13 3.04 +palabreur palabreur nom m s 0.00 0.14 0.00 0.07 +palabreurs palabreur nom m p 0.00 0.14 0.00 0.07 +palabré palabrer ver m s 0.64 2.03 0.06 0.00 par:pas; +palace palace nom m s 4.85 7.77 4.56 5.47 +palaces palace nom m p 4.85 7.77 0.29 2.30 +paladin paladin nom m s 0.18 0.81 0.16 0.54 +paladins paladin nom m p 0.18 0.81 0.03 0.27 +palais palais nom m 29.55 58.72 29.55 58.72 +palan palan nom m s 0.11 0.74 0.07 0.54 +palanche palanche nom f s 0.10 0.14 0.00 0.14 +palanches palanche nom f p 0.10 0.14 0.10 0.00 +palangrotte palangrotte nom f s 0.00 0.14 0.00 0.14 +palanquer palanquer ver 0.01 0.14 0.01 0.00 inf; +palanquin palanquin nom m s 0.32 0.41 0.32 0.34 +palanquins palanquin nom m p 0.32 0.41 0.00 0.07 +palanquée palanquer ver f s 0.01 0.14 0.00 0.07 par:pas; +palanquées palanquer ver f p 0.01 0.14 0.00 0.07 par:pas; +palans palan nom m p 0.11 0.74 0.04 0.20 +palastre palastre nom m s 0.00 0.07 0.00 0.07 +palatales palatal adj f p 0.00 0.07 0.00 0.07 +palatin palatin adj m s 0.03 0.20 0.02 0.14 +palatine palatin adj f s 0.03 0.20 0.01 0.07 +palatines palatine nom f p 0.00 0.07 0.00 0.07 +palatisation palatisation nom f s 0.00 0.07 0.00 0.07 +palazzo palazzo nom m s 0.56 1.62 0.56 1.62 +pale pale nom f s 1.11 1.62 0.74 0.41 +palefrenier palefrenier nom m s 0.69 1.01 0.64 0.68 +palefreniers palefrenier nom m p 0.69 1.01 0.04 0.34 +palefrenière palefrenier nom f s 0.69 1.01 0.01 0.00 +palefroi palefroi nom m s 0.01 0.61 0.01 0.20 +palefrois palefroi nom m p 0.01 0.61 0.00 0.41 +paleron paleron nom m s 0.01 0.00 0.01 0.00 +pales pale nom f p 1.11 1.62 0.37 1.22 +palestinien palestinien adj m s 3.09 0.74 1.78 0.20 +palestinienne palestinien adj f s 3.09 0.74 0.35 0.34 +palestiniens palestinien nom m p 3.22 0.47 2.81 0.47 +palestre palestre nom f s 0.00 0.41 0.00 0.27 +palestres palestre nom f p 0.00 0.41 0.00 0.14 +palet palet nom m s 1.08 0.41 0.93 0.34 +paletot paletot nom m s 0.03 2.03 0.03 1.89 +paletots paletot nom m p 0.03 2.03 0.00 0.14 +palets palet nom m p 1.08 0.41 0.15 0.07 +palette palette nom f s 0.87 5.68 0.28 4.12 +palettes palette nom f p 0.87 5.68 0.58 1.55 +palier palier nom m s 3.47 29.80 3.24 27.91 +paliers palier nom m p 3.47 29.80 0.23 1.89 +palikare palikare nom m s 0.00 0.54 0.00 0.20 +palikares palikare nom m p 0.00 0.54 0.00 0.34 +palilalie palilalie nom f s 0.01 0.00 0.01 0.00 +palimpseste palimpseste nom m s 0.00 0.20 0.00 0.20 +palindrome palindrome nom m s 0.55 0.00 0.45 0.00 +palindromes palindrome nom m p 0.55 0.00 0.10 0.00 +palinodie palinodie nom f s 0.01 0.54 0.00 0.27 +palinodier palinodier ver 0.00 0.07 0.00 0.07 inf; +palinodies palinodie nom f p 0.01 0.54 0.01 0.27 +palis palis nom m 0.00 0.07 0.00 0.07 +palissade palissade nom f s 0.64 5.34 0.59 3.11 +palissades palissade nom f p 0.64 5.34 0.05 2.23 +palissadé palissader ver m s 0.00 0.34 0.00 0.20 par:pas; +palissadée palissader ver f s 0.00 0.34 0.00 0.07 par:pas; +palissadés palissader ver m p 0.00 0.34 0.00 0.07 par:pas; +palissandre palissandre nom m s 0.00 0.74 0.00 0.74 +palissant palisser ver 0.00 0.07 0.00 0.07 par:pre; +palissonnage palissonnage nom m s 0.00 0.07 0.00 0.07 +palière palier adj f s 0.00 0.68 0.00 0.68 +palladiennes palladien adj f p 0.01 0.07 0.01 0.07 +palladium palladium nom m s 0.17 0.34 0.17 0.34 +palle palle nom f s 0.91 0.00 0.91 0.00 +palliait pallier ver 0.47 1.01 0.00 0.07 ind:imp:3s; +palliatif palliatif adj m s 0.14 0.07 0.05 0.07 +palliatifs palliatif adj m p 0.14 0.07 0.09 0.00 +pallient pallier ver 0.47 1.01 0.01 0.00 ind:pre:3p; +pallier pallier ver 0.47 1.01 0.44 0.88 inf; +palliera pallier ver 0.47 1.01 0.01 0.00 ind:fut:3s; +pallié pallier ver m s 0.47 1.01 0.01 0.07 par:pas; +palma_christi palma_christi nom m 0.00 0.07 0.00 0.07 +palmaient palmer ver 0.02 0.47 0.00 0.07 ind:imp:3p; +palmaire palmaire adj m s 0.02 0.07 0.02 0.07 +palmarès palmarès nom m 0.41 1.08 0.41 1.08 +palmas palma nom f p 0.04 0.07 0.04 0.07 +palme palme nom f s 2.09 9.53 1.25 2.91 +palmer palmer nom m s 0.17 0.14 0.17 0.14 +palmeraie palmeraie nom f s 0.31 1.28 0.29 0.74 +palmeraies palmeraie nom f p 0.31 1.28 0.01 0.54 +palmes palme nom f p 2.09 9.53 0.84 6.62 +palmette palmette nom f s 0.00 0.20 0.00 0.07 +palmettes palmette nom f p 0.00 0.20 0.00 0.14 +palmier palmier nom m s 4.57 14.26 1.69 3.04 +palmiers palmier nom m p 4.57 14.26 2.89 11.22 +palmipède palmipède nom m s 0.00 0.27 0.00 0.14 +palmipèdes palmipède adj m p 0.27 0.14 0.27 0.14 +palmiste palmiste nom m s 0.00 0.27 0.00 0.14 +palmistes palmiste nom m p 0.00 0.27 0.00 0.14 +palmé palmer ver m s 0.02 0.47 0.00 0.20 par:pas; +palmée palmé adj f s 0.17 0.41 0.01 0.07 +palmées palmé adj f p 0.17 0.41 0.00 0.27 +palmure palmure nom f s 0.01 0.07 0.01 0.00 +palmures palmure nom f p 0.01 0.07 0.00 0.07 +palmés palmé adj m p 0.17 0.41 0.16 0.07 +palombe palombe nom f s 0.11 0.61 0.01 0.27 +palombes palombe nom f p 0.11 0.61 0.10 0.34 +palonnier palonnier nom m s 0.01 0.07 0.01 0.07 +palot palot nom m s 0.20 0.14 0.05 0.07 +palots palot nom m p 0.20 0.14 0.15 0.07 +palourde palourde nom f s 1.52 0.54 0.34 0.00 +palourdes palourde nom f p 1.52 0.54 1.17 0.54 +palpa palper ver 1.81 13.04 0.00 1.62 ind:pas:3s; +palpable palpable adj s 0.65 2.77 0.52 2.50 +palpables palpable adj p 0.65 2.77 0.13 0.27 +palpaient palper ver 1.81 13.04 0.01 0.74 ind:imp:3p; +palpais palper ver 1.81 13.04 0.01 0.27 ind:imp:1s; +palpait palper ver 1.81 13.04 0.01 1.82 ind:imp:3s; +palpant palper ver 1.81 13.04 0.02 1.08 par:pre; +palpation palpation nom f s 0.04 0.34 0.04 0.27 +palpations palpation nom f p 0.04 0.34 0.00 0.07 +palpe palper ver 1.81 13.04 0.34 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +palpent palper ver 1.81 13.04 0.01 0.34 ind:pre:3p; +palper palper ver 1.81 13.04 0.97 4.19 inf; +palpera palper ver 1.81 13.04 0.01 0.00 ind:fut:3s; +palperai palper ver 1.81 13.04 0.00 0.07 ind:fut:1s; +palpes palper ver 1.81 13.04 0.08 0.00 ind:pre:2s; +palpeur palpeur nom m s 0.02 0.14 0.01 0.07 +palpeurs palpeur nom m p 0.02 0.14 0.01 0.07 +palpez palper ver 1.81 13.04 0.04 0.00 imp:pre:2p;ind:pre:2p; +palpita palpiter ver 1.64 10.41 0.00 0.14 ind:pas:3s; +palpitaient palpiter ver 1.64 10.41 0.01 1.08 ind:imp:3p; +palpitait palpiter ver 1.64 10.41 0.06 2.30 ind:imp:3s; +palpitant palpitant adj m s 2.13 6.82 1.53 3.31 +palpitante palpitant adj f s 2.13 6.82 0.42 1.96 +palpitantes palpitant adj f p 2.13 6.82 0.15 0.61 +palpitants palpitant adj m p 2.13 6.82 0.03 0.95 +palpitation palpitation nom f s 0.86 3.65 0.04 2.30 +palpitations palpitation nom f p 0.86 3.65 0.81 1.35 +palpite palpiter ver 1.64 10.41 1.07 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +palpitement palpitement nom m s 0.00 0.07 0.00 0.07 +palpitent palpiter ver 1.64 10.41 0.16 1.28 ind:pre:3p; +palpiter palpiter ver 1.64 10.41 0.26 1.62 inf; +palpiterait palpiter ver 1.64 10.41 0.00 0.07 cnd:pre:3s; +palpites palpiter ver 1.64 10.41 0.00 0.07 ind:pre:2s; +palpitèrent palpiter ver 1.64 10.41 0.00 0.20 ind:pas:3p; +palpité palpiter ver m s 1.64 10.41 0.00 0.07 par:pas; +palpons palper ver 1.81 13.04 0.00 0.07 imp:pre:1p; +palpèrent palper ver 1.81 13.04 0.00 0.07 ind:pas:3p; +palpé palper ver m s 1.81 13.04 0.28 0.74 par:pas; +palpées palper ver f p 1.81 13.04 0.00 0.07 par:pas; +palpés palper ver m p 1.81 13.04 0.02 0.14 par:pas; +pals pal nom m p 0.19 0.88 0.04 0.20 +palsambleu palsambleu ono 0.03 0.20 0.03 0.20 +paltoquet paltoquet nom m s 0.01 0.20 0.01 0.20 +palé palé adj m s 0.01 0.07 0.01 0.07 +palu palu nom m s 0.80 0.14 0.80 0.14 +paluchait palucher ver 0.20 0.34 0.00 0.07 ind:imp:3s; +paluche paluche nom f s 0.33 5.47 0.20 3.11 +palucher palucher ver 0.20 0.34 0.20 0.27 inf; +paluches paluche nom f p 0.33 5.47 0.13 2.36 +paludamentum paludamentum nom m s 0.00 0.07 0.00 0.07 +paludes palude nom m p 0.00 0.20 0.00 0.20 +paludiers paludier nom m p 0.00 0.14 0.00 0.14 +paludiques paludique adj p 0.00 0.07 0.00 0.07 +paludisme paludisme nom m s 0.25 1.35 0.25 1.35 +paludière paludière nom f s 0.00 0.07 0.00 0.07 +paludéenne paludéen adj f s 0.00 0.34 0.00 0.07 +paludéennes paludéen adj f p 0.00 0.34 0.00 0.20 +paludéens paludéen adj m p 0.00 0.34 0.00 0.07 +paléo paléo adv 0.01 0.00 0.01 0.00 +paléographie paléographie nom f s 0.00 0.14 0.00 0.14 +paléolithique paléolithique adj s 0.03 0.14 0.03 0.07 +paléolithiques paléolithique adj m p 0.03 0.14 0.00 0.07 +paléontologie paléontologie nom f s 0.14 0.14 0.14 0.14 +paléontologiques paléontologique adj m p 0.00 0.07 0.00 0.07 +paléontologiste paléontologiste nom s 0.05 0.00 0.04 0.00 +paléontologistes paléontologiste nom p 0.05 0.00 0.01 0.00 +paléontologue paléontologue nom s 0.20 0.07 0.18 0.00 +paléontologues paléontologue nom p 0.20 0.07 0.02 0.07 +paléozoïque paléozoïque nom m s 0.01 0.00 0.01 0.00 +palus palus nom m 0.01 0.07 0.01 0.07 +palustre palustre adj s 0.00 0.07 0.00 0.07 +palétuvier palétuvier nom m s 0.04 0.81 0.03 0.14 +palétuviers palétuvier nom m p 0.04 0.81 0.01 0.68 +palynologie palynologie nom f s 0.01 0.00 0.01 0.00 +pampa pampa nom f s 0.61 0.95 0.34 0.81 +pampas pampa nom f p 0.61 0.95 0.28 0.14 +pampero pampero nom m s 0.00 0.07 0.00 0.07 +pamphlet pamphlet nom m s 2.84 1.42 1.11 0.68 +pamphlets pamphlet nom m p 2.84 1.42 1.73 0.74 +pamphlétaire pamphlétaire nom s 0.00 0.41 0.00 0.34 +pamphlétaires pamphlétaire nom p 0.00 0.41 0.00 0.07 +pamplemousse pamplemousse nom s 2.01 1.55 1.56 0.95 +pamplemousses pamplemousse nom p 2.01 1.55 0.45 0.61 +pamplemoussier pamplemoussier nom m s 0.00 0.14 0.00 0.07 +pamplemoussiers pamplemoussier nom m p 0.00 0.14 0.00 0.07 +pampre pampre nom m s 0.41 1.01 0.27 0.20 +pampres pampre nom m p 0.41 1.01 0.14 0.81 +pan_bagnat pan_bagnat nom m s 0.00 0.14 0.00 0.14 +pan pan ono 3.57 1.76 3.57 1.76 +pana paner ver 0.13 0.41 0.02 0.00 ind:pas:3s; +panachage panachage nom m s 0.01 0.00 0.01 0.00 +panachait panacher ver 0.03 0.20 0.00 0.07 ind:imp:3s; +panache panache nom m s 1.09 7.36 0.95 5.14 +panacher panacher ver 0.03 0.20 0.01 0.00 inf; +panaches panache nom m p 1.09 7.36 0.14 2.23 +panaché panaché nom m s 0.12 0.47 0.10 0.27 +panachée panacher ver f s 0.03 0.20 0.00 0.07 par:pas; +panachés panaché nom m p 0.12 0.47 0.02 0.20 +panacée panacée nom f s 0.29 0.81 0.27 0.74 +panacées panacée nom f p 0.29 0.81 0.02 0.07 +panade panade nom f s 0.96 1.22 0.96 0.95 +panades panade nom f p 0.96 1.22 0.00 0.27 +panais panais nom m 0.01 0.14 0.01 0.14 +panama panama nom m s 0.15 1.35 0.15 1.22 +panamas panama nom m p 0.15 1.35 0.00 0.14 +panamienne panamien adj f s 0.00 0.14 0.00 0.07 +panamiens panamien adj m p 0.00 0.14 0.00 0.07 +panaméen panaméen adj m s 0.09 0.34 0.09 0.34 +panaméenne panaméenne adj f s 0.14 0.00 0.14 0.00 +panaméricain panaméricain adj m s 0.11 0.00 0.10 0.00 +panaméricaine panaméricain adj f s 0.11 0.00 0.01 0.00 +panarabisme panarabisme nom m s 0.00 0.41 0.00 0.41 +panard panard nom m s 0.26 2.16 0.19 0.74 +panards panard nom m p 0.26 2.16 0.07 1.42 +panaris panaris nom m 0.03 0.34 0.03 0.34 +panatella panatella nom m s 0.01 0.00 0.01 0.00 +panathénaïque panathénaïque adj m s 0.00 0.07 0.00 0.07 +panathénées panathénées nom f p 0.00 0.07 0.00 0.07 +pancake pancake nom m s 2.97 0.20 0.44 0.14 +pancakes pancake nom m p 2.97 0.20 2.54 0.07 +pancarte pancarte nom f s 3.90 8.99 3.28 5.95 +pancartes pancarte nom f p 3.90 8.99 0.61 3.04 +panceltique panceltique adj m s 0.00 0.07 0.00 0.07 +pancetta pancetta nom f s 0.03 0.00 0.03 0.00 +panclastite panclastite nom f s 0.00 0.07 0.00 0.07 +pancrace pancrace nom m s 0.00 0.47 0.00 0.34 +pancraces pancrace nom m p 0.00 0.47 0.00 0.14 +pancréas pancréas nom m 1.13 2.03 1.13 2.03 +pancréatectomie pancréatectomie nom f s 0.09 0.00 0.09 0.00 +pancréatique pancréatique adj s 0.18 0.20 0.06 0.20 +pancréatiques pancréatique adj f p 0.18 0.20 0.12 0.00 +pancréatite pancréatite nom f s 0.14 0.00 0.14 0.00 +panda panda nom m s 1.71 0.14 1.46 0.14 +pandanus pandanus nom m 0.00 0.14 0.00 0.14 +pandas panda nom m p 1.71 0.14 0.26 0.00 +pandit pandit nom m s 0.08 0.00 0.08 0.00 +pandore pandore nom s 0.11 1.08 0.11 0.34 +pandores pandore nom p 0.11 1.08 0.00 0.74 +pandémie pandémie nom f s 0.17 0.00 0.17 0.00 +pandémonium pandémonium nom m s 0.03 0.20 0.02 0.20 +pandémoniums pandémonium nom m p 0.03 0.20 0.01 0.00 +pane paner ver 0.13 0.41 0.02 0.00 ind:pre:3s; +panel panel nom m s 0.28 0.00 0.28 0.00 +paner paner ver 0.13 0.41 0.04 0.00 inf; +panetier panetier nom m s 0.00 0.27 0.00 0.07 +panetière panetier nom f s 0.00 0.27 0.00 0.14 +panetières panetier nom f p 0.00 0.27 0.00 0.07 +pangermanisme pangermanisme nom m s 0.01 0.20 0.01 0.20 +panic panic nom m s 0.46 0.00 0.46 0.00 +panicules panicule nom f p 0.00 0.14 0.00 0.14 +panier_repas panier_repas nom m 0.21 0.07 0.21 0.07 +panier panier nom m s 15.72 33.18 13.82 24.39 +paniers panier nom m p 15.72 33.18 1.90 8.78 +panification panification nom f s 0.00 0.14 0.00 0.14 +panini panini nom m s 0.02 0.00 0.02 0.00 +paniqua paniquer ver 19.76 6.15 0.05 0.20 ind:pas:3s; +paniquaient paniquer ver 19.76 6.15 0.13 0.20 ind:imp:3p; +paniquais paniquer ver 19.76 6.15 0.12 0.20 ind:imp:1s;ind:imp:2s; +paniquait paniquer ver 19.76 6.15 0.22 0.54 ind:imp:3s; +paniquant paniquant adj m s 0.04 0.07 0.04 0.07 +paniquards paniquard nom m p 0.00 0.20 0.00 0.20 +panique panique nom f s 16.23 25.61 16.17 24.86 +paniquent paniquer ver 19.76 6.15 0.63 0.07 ind:pre:3p; +paniquer paniquer ver 19.76 6.15 4.25 0.88 inf; +paniquera paniquer ver 19.76 6.15 0.01 0.00 ind:fut:3s; +paniquerai paniquer ver 19.76 6.15 0.06 0.00 ind:fut:1s; +paniqueraient paniquer ver 19.76 6.15 0.05 0.00 cnd:pre:3p; +paniquerais paniquer ver 19.76 6.15 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +paniqueras paniquer ver 19.76 6.15 0.01 0.00 ind:fut:2s; +paniqueront paniquer ver 19.76 6.15 0.01 0.00 ind:fut:3p; +paniques paniquer ver 19.76 6.15 1.08 0.14 ind:pre:2s;sub:pre:2s; +paniquez paniquer ver 19.76 6.15 1.66 0.00 imp:pre:2p;ind:pre:2p; +paniquons paniquer ver 19.76 6.15 0.34 0.00 imp:pre:1p; +paniquèrent paniquer ver 19.76 6.15 0.02 0.00 ind:pas:3p; +paniqué paniquer ver m s 19.76 6.15 5.56 0.95 par:pas; +paniquée paniquer ver f s 19.76 6.15 0.68 0.34 par:pas; +paniqués paniqué adj m p 1.52 1.01 0.24 0.20 +panis panis nom m 0.14 0.07 0.14 0.07 +panière panière nom f s 0.16 0.54 0.16 0.34 +panières panière nom f p 0.16 0.54 0.00 0.20 +panka panka nom m s 0.00 0.27 0.00 0.07 +pankas panka nom m p 0.00 0.27 0.00 0.20 +panna panner ver 0.14 0.34 0.02 0.07 ind:pas:3s; +pannais panner ver 0.14 0.34 0.00 0.07 ind:imp:1s; +pannait panner ver 0.14 0.34 0.00 0.07 ind:imp:3s; +panne panne nom f s 24.59 11.69 23.84 10.81 +panneau_réclame panneau_réclame nom m s 0.00 0.68 0.00 0.68 +panneau panneau nom m s 12.67 26.69 9.87 16.55 +panneaux panneau nom m p 12.67 26.69 2.80 10.14 +panner panner ver 0.14 0.34 0.00 0.14 inf; +pannes panne nom f p 24.59 11.69 0.74 0.88 +panneton panneton nom m s 0.01 0.00 0.01 0.00 +panné panner ver m s 0.14 0.34 0.11 0.00 par:pas; +pano pano adj m s 0.46 0.00 0.29 0.00 +panonceau panonceau nom m s 0.00 0.88 0.00 0.68 +panonceaux panonceau nom m p 0.00 0.88 0.00 0.20 +panoplie panoplie nom f s 1.44 4.73 1.42 3.99 +panoplies panoplie nom f p 1.44 4.73 0.02 0.74 +panorama panorama nom m s 1.24 5.14 1.11 4.26 +panoramas panorama nom m p 1.24 5.14 0.14 0.88 +panoramique panoramique adj s 0.61 1.15 0.60 0.81 +panoramiquer panoramiquer ver 0.00 0.14 0.00 0.07 inf; +panoramiques panoramique nom m p 0.36 0.14 0.15 0.00 +panoramiqué panoramiquer ver m s 0.00 0.14 0.00 0.07 par:pas; +panos pano adj m p 0.46 0.00 0.17 0.00 +panosse panosse nom f s 0.00 0.14 0.00 0.14 +panouille panouille nom s 0.01 0.54 0.01 0.41 +panouilles panouille nom p 0.01 0.54 0.00 0.14 +pans pan nom m p 3.73 26.01 0.25 12.16 +pansa panser ver 1.34 3.65 0.14 0.20 ind:pas:3s; +pansage pansage nom m s 0.00 0.14 0.00 0.14 +pansait panser ver 1.34 3.65 0.00 0.27 ind:imp:3s; +pansant panser ver 1.34 3.65 0.00 0.07 par:pre; +pansas panser ver 1.34 3.65 0.00 0.07 ind:pas:2s; +panse panse nom f s 2.13 3.04 2.02 2.91 +pansement pansement nom m s 6.52 13.45 4.70 8.38 +pansements pansement nom m p 6.52 13.45 1.82 5.07 +pansent panser ver 1.34 3.65 0.01 0.00 ind:pre:3p; +panser panser ver 1.34 3.65 0.50 1.42 inf; +panserai panser ver 1.34 3.65 0.01 0.00 ind:fut:1s; +panses panse nom f p 2.13 3.04 0.11 0.14 +pansez panser ver 1.34 3.65 0.07 0.07 imp:pre:2p;ind:pre:2p; +pansiez panser ver 1.34 3.65 0.00 0.07 ind:imp:2p; +pansions panser ver 1.34 3.65 0.14 0.00 ind:imp:1p; +panspermie panspermie nom f s 0.01 0.00 0.01 0.00 +pansèrent panser ver 1.34 3.65 0.00 0.07 ind:pas:3p; +pansé panser ver m s 1.34 3.65 0.28 0.54 par:pas; +pansu pansu adj m s 0.00 1.01 0.00 0.34 +pansée panser ver f s 1.34 3.65 0.00 0.14 par:pas; +pansue pansu adj f s 0.00 1.01 0.00 0.14 +pansées panser ver f p 1.34 3.65 0.04 0.14 par:pas; +pansues pansu adj f p 0.00 1.01 0.00 0.34 +pansés panser ver m p 1.34 3.65 0.00 0.14 par:pas; +pansus pansu adj m p 0.00 1.01 0.00 0.20 +pantagruélique pantagruélique adj m s 0.00 0.34 0.00 0.20 +pantagruéliques pantagruélique adj p 0.00 0.34 0.00 0.14 +pantalon pantalon nom m s 37.55 71.76 31.49 57.91 +pantalonnade pantalonnade nom f s 0.00 0.27 0.00 0.20 +pantalonnades pantalonnade nom f p 0.00 0.27 0.00 0.07 +pantalons pantalon nom m p 37.55 71.76 6.06 13.85 +pante pante nom m s 0.01 0.81 0.00 0.27 +pantela panteler ver 0.00 1.01 0.00 0.07 ind:pas:3s; +pantelaient panteler ver 0.00 1.01 0.00 0.07 ind:imp:3p; +pantelait panteler ver 0.00 1.01 0.00 0.20 ind:imp:3s; +pantelant pantelant adj m s 0.10 3.24 0.03 1.35 +pantelante pantelant adj f s 0.10 3.24 0.07 1.22 +pantelantes pantelant adj f p 0.10 3.24 0.00 0.27 +pantelants pantelant adj m p 0.10 3.24 0.00 0.41 +panteler panteler ver 0.00 1.01 0.00 0.14 inf; +pantelle panteler ver 0.00 1.01 0.00 0.20 ind:pre:3s; +pantelé panteler ver m s 0.00 1.01 0.00 0.07 par:pas; +pantes pante nom m p 0.01 0.81 0.01 0.54 +panthère panthère nom f s 2.08 5.41 1.84 3.65 +panthères panthère nom f p 2.08 5.41 0.24 1.76 +panthéisme panthéisme nom m s 0.00 0.20 0.00 0.20 +panthéiste panthéiste adj s 0.03 0.20 0.03 0.20 +panthéon panthéon nom m s 0.79 6.42 0.78 6.35 +panthéons panthéon nom m p 0.79 6.42 0.01 0.07 +pantin pantin nom m s 3.96 5.88 3.25 4.19 +pantins pantin nom m p 3.96 5.88 0.72 1.69 +pantière pantière nom f s 0.00 0.14 0.00 0.14 +pantocrator pantocrator adj m s 0.14 0.00 0.14 0.00 +pantographe pantographe nom m s 0.01 0.07 0.01 0.00 +pantographes pantographe nom m p 0.01 0.07 0.00 0.07 +pantois pantois adj m 0.09 2.30 0.06 2.23 +pantoise pantois adj f s 0.09 2.30 0.01 0.00 +pantoises pantois adj f p 0.09 2.30 0.01 0.07 +pantomime pantomime nom f s 0.41 1.82 0.41 1.42 +pantomimes pantomime nom f p 0.41 1.82 0.00 0.41 +pantomètres pantomètre nom m p 0.00 0.07 0.00 0.07 +pantouflard pantouflard adj m s 0.23 0.07 0.13 0.07 +pantouflarde pantouflard adj f s 0.23 0.07 0.10 0.00 +pantouflards pantouflard nom m p 0.07 0.20 0.02 0.07 +pantoufle pantoufle nom f s 3.08 8.78 0.57 0.95 +pantoufler pantoufler ver 0.01 0.34 0.01 0.00 inf; +pantoufles pantoufle nom f p 3.08 8.78 2.51 7.84 +panty panty nom m s 0.05 0.07 0.05 0.07 +pané pané adj m s 0.19 0.41 0.14 0.14 +panée paner ver f s 0.13 0.41 0.01 0.14 par:pas; +panées pané adj f p 0.19 0.41 0.01 0.20 +panégyrique panégyrique nom m s 0.23 0.34 0.22 0.20 +panégyriques panégyrique nom m p 0.23 0.34 0.01 0.14 +panégyristes panégyriste nom p 0.00 0.07 0.00 0.07 +panurge panurge nom m s 0.04 0.47 0.04 0.47 +panurgisme panurgisme nom m s 0.00 0.07 0.00 0.07 +panés pané adj m p 0.19 0.41 0.04 0.00 +panzer panzer nom m s 0.71 1.42 0.25 0.68 +panzers panzer nom m p 0.71 1.42 0.46 0.74 +paolistes paoliste adj m p 0.00 0.14 0.00 0.14 +paolo paolo nom m s 0.07 0.00 0.07 0.00 +paon paon nom m s 1.30 5.34 0.60 3.85 +paonne paon nom f s 1.30 5.34 0.10 0.07 +paons paon nom m p 1.30 5.34 0.60 1.42 +papa_cadeau papa_cadeau nom m s 0.01 0.00 0.01 0.00 +papa papa nom m s 259.01 77.16 259.01 77.16 +papable papable adj m s 0.00 0.07 0.00 0.07 +papal papal adj m s 0.41 0.68 0.02 0.27 +papale papal adj f s 0.41 0.68 0.37 0.41 +papamobile papamobile nom f s 0.14 0.00 0.14 0.00 +paparazzi paparazzi nom m 1.46 0.34 0.67 0.34 +paparazzis paparazzi nom m p 1.46 0.34 0.79 0.00 +paparazzo paparazzo nom m s 0.03 0.07 0.03 0.07 +papas papas nom m 1.25 1.08 1.25 1.08 +papauté papauté nom f s 0.01 0.81 0.01 0.81 +papaux papal adj m p 0.41 0.68 0.02 0.00 +papaver papaver nom m s 0.01 0.00 0.01 0.00 +papavérine papavérine nom f s 0.00 0.07 0.00 0.07 +papaye papaye nom f s 0.59 0.20 0.49 0.14 +papayer papayer nom m s 0.00 0.14 0.00 0.07 +papayers papayer nom m p 0.00 0.14 0.00 0.07 +papayes papaye nom f p 0.59 0.20 0.10 0.07 +pape pape nom m s 7.17 19.32 6.57 14.59 +papegai papegai nom m s 0.00 0.14 0.00 0.07 +papegais papegai nom m p 0.00 0.14 0.00 0.07 +papelard papelard nom m s 0.17 2.43 0.16 1.62 +papelarde papelard adj f s 0.01 0.27 0.00 0.07 +papelards papelard nom m p 0.17 2.43 0.01 0.81 +paperasse paperasse nom f s 4.80 5.74 4.11 0.95 +paperasser paperasser ver 0.00 0.07 0.00 0.07 inf; +paperasserie paperasserie nom f s 1.07 0.88 1.05 0.74 +paperasseries paperasserie nom f p 1.07 0.88 0.01 0.14 +paperasses paperasse nom f p 4.80 5.74 0.69 4.80 +paperassier paperassier nom m s 0.01 0.07 0.01 0.07 +papes pape nom m p 7.17 19.32 0.60 4.73 +papesse papesse nom f s 0.39 0.14 0.39 0.14 +papet papet nom m s 4.25 0.27 4.25 0.27 +papeterie papeterie nom f s 0.91 2.84 0.82 1.28 +papeteries papeterie nom f p 0.91 2.84 0.08 1.55 +papetier papetier nom m s 0.44 0.27 0.44 0.07 +papetiers papetier nom m p 0.44 0.27 0.00 0.20 +papi papi nom m s 7.23 0.00 7.05 0.00 +papier_cadeau papier_cadeau nom m s 0.07 0.07 0.07 0.07 +papier_monnaie papier_monnaie nom m s 0.00 0.14 0.00 0.14 +papier papier nom m s 120.51 203.11 56.32 144.59 +papier_calque papier_calque nom m p 0.00 0.07 0.00 0.07 +papiers papier nom m p 120.51 203.11 64.19 58.51 +papilionacé papilionacé adj m s 0.01 0.14 0.01 0.00 +papilionacée papilionacé adj f s 0.01 0.14 0.00 0.07 +papilionacées papilionacé adj f p 0.01 0.14 0.00 0.07 +papillaire papillaire adj m s 0.00 0.07 0.00 0.07 +papille papille nom f s 0.35 1.15 0.01 0.07 +papilles papille nom f p 0.35 1.15 0.34 1.08 +papillomavirus papillomavirus nom m 0.04 0.00 0.04 0.00 +papillomes papillome nom m p 0.01 0.14 0.01 0.14 +papillon papillon nom m s 12.28 20.07 8.12 10.68 +papillonna papillonner ver 0.33 0.81 0.00 0.07 ind:pas:3s; +papillonnage papillonnage nom m s 0.01 0.14 0.01 0.14 +papillonnaient papillonner ver 0.33 0.81 0.00 0.07 ind:imp:3p; +papillonnais papillonner ver 0.33 0.81 0.15 0.00 ind:imp:1s; +papillonnait papillonner ver 0.33 0.81 0.03 0.07 ind:imp:3s; +papillonnant papillonnant adj m s 0.00 0.14 0.00 0.07 +papillonnante papillonnant adj f s 0.00 0.14 0.00 0.07 +papillonne papillonner ver 0.33 0.81 0.04 0.27 ind:pre:1s;ind:pre:3s; +papillonnement papillonnement nom m s 0.00 0.14 0.00 0.14 +papillonnent papillonner ver 0.33 0.81 0.01 0.14 ind:pre:3p; +papillonner papillonner ver 0.33 0.81 0.07 0.14 inf; +papillonnes papillonner ver 0.33 0.81 0.02 0.00 ind:pre:2s; +papillonné papillonner ver m s 0.33 0.81 0.00 0.07 par:pas; +papillons papillon nom m p 12.28 20.07 4.16 9.39 +papillotaient papilloter ver 0.00 1.01 0.00 0.41 ind:imp:3p; +papillotait papilloter ver 0.00 1.01 0.00 0.07 ind:imp:3s; +papillotant papillotant adj m s 0.00 0.47 0.00 0.14 +papillotantes papillotant adj f p 0.00 0.47 0.00 0.14 +papillotants papillotant adj m p 0.00 0.47 0.00 0.20 +papillote papillote nom f s 0.33 1.89 0.02 0.07 +papillotent papilloter ver 0.00 1.01 0.00 0.14 ind:pre:3p; +papilloter papilloter ver 0.00 1.01 0.00 0.20 inf; +papillotes papillote nom f p 0.33 1.89 0.31 1.82 +papillotèrent papilloter ver 0.00 1.01 0.00 0.07 ind:pas:3p; +papis papi nom m p 7.23 0.00 0.17 0.00 +papisme papisme nom m s 0.04 0.07 0.04 0.07 +papiste papiste adj s 0.55 0.61 0.43 0.47 +papistes papiste adj f p 0.55 0.61 0.12 0.14 +papotage papotage nom m s 0.27 0.61 0.19 0.14 +papotages papotage nom m p 0.27 0.61 0.08 0.47 +papotaient papoter ver 1.77 1.62 0.02 0.20 ind:imp:3p; +papotait papoter ver 1.77 1.62 0.06 0.20 ind:imp:3s; +papotant papoter ver 1.77 1.62 0.03 0.27 par:pre; +papote papoter ver 1.77 1.62 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +papotent papoter ver 1.77 1.62 0.04 0.00 ind:pre:3p; +papoter papoter ver 1.77 1.62 1.16 0.61 inf; +papotera papoter ver 1.77 1.62 0.03 0.00 ind:fut:3s; +papotez papoter ver 1.77 1.62 0.04 0.00 imp:pre:2p; +papotèrent papoter ver 1.77 1.62 0.00 0.07 ind:pas:3p; +papoté papoter ver m s 1.77 1.62 0.13 0.07 par:pas; +papou papou nom m s 0.04 0.07 0.02 0.00 +papouille papouille nom f s 0.08 0.54 0.00 0.07 +papouillent papouiller ver 0.02 0.14 0.01 0.00 ind:pre:3p; +papouiller papouiller ver 0.02 0.14 0.01 0.00 inf; +papouilles papouille nom f p 0.08 0.54 0.08 0.47 +papouillez papouiller ver 0.02 0.14 0.00 0.07 ind:pre:2p; +papouillé papouiller ver m s 0.02 0.14 0.00 0.07 par:pas; +papous papou nom m p 0.04 0.07 0.02 0.07 +paprika paprika nom m s 0.75 0.61 0.75 0.61 +papé papé nom m s 0.00 0.14 0.00 0.14 +papy papy nom m s 6.79 1.08 6.76 1.08 +papyrus papyrus nom m 1.57 0.95 1.57 0.95 +papys papy nom m p 6.79 1.08 0.04 0.00 +paqson paqson nom m s 0.01 0.00 0.01 0.00 +paquebot paquebot nom m s 1.18 7.43 1.10 5.07 +paquebots paquebot nom m p 1.18 7.43 0.09 2.36 +paquet_cadeau paquet_cadeau nom m s 0.19 0.20 0.19 0.20 +paquet paquet nom m s 44.96 89.19 36.90 62.77 +paqueta paqueter ver 0.04 0.07 0.01 0.07 ind:pas:3s; +paquetage paquetage nom m s 0.60 2.91 0.44 2.16 +paquetages paquetage nom m p 0.60 2.91 0.16 0.74 +paquets_cadeaux paquets_cadeaux nom m p 0.01 0.54 0.01 0.54 +paquets paquet nom m p 44.96 89.19 8.06 26.42 +paquette paqueter ver 0.04 0.07 0.03 0.00 imp:pre:2s; +paqueté paqueté adj m s 0.02 0.00 0.02 0.00 +par_ci par_ci adv 3.10 9.12 3.10 9.12 +par_dedans par_dedans pre 0.00 0.07 0.00 0.07 +par_delà par_delà pre 1.32 9.05 1.32 9.05 +par_derrière par_derrière pre 2.04 6.35 2.04 6.35 +par_dessous par_dessous pre 0.32 2.16 0.32 2.16 +par_dessus par_dessus pre 16.10 69.19 16.10 69.19 +par_devant par_devant pre 0.16 1.96 0.16 1.96 +par_devers par_devers pre 0.01 1.08 0.01 1.08 +par_mégarde par_mégarde adv 0.61 2.91 0.61 2.91 +par par pre 1753.02 3727.09 1753.02 3727.09 +parût paraître ver 122.14 448.11 0.00 4.46 sub:imp:3s; +para_humain para_humain nom m s 0.00 0.14 0.00 0.14 +para parer ver 30.50 19.66 4.71 0.20 ind:pas:3s; +paraît paraître ver 122.14 448.11 81.22 113.92 ind:pre:3s; +paraîtra paraître ver 122.14 448.11 1.99 3.24 ind:fut:3s; +paraîtrai paraître ver 122.14 448.11 0.02 0.14 ind:fut:1s; +paraîtraient paraître ver 122.14 448.11 0.10 0.81 cnd:pre:3p; +paraîtrais paraître ver 122.14 448.11 0.00 0.14 cnd:pre:1s; +paraîtrait paraître ver 122.14 448.11 0.43 3.11 cnd:pre:3s; +paraîtras paraître ver 122.14 448.11 0.25 0.00 ind:fut:2s; +paraître paraître ver 122.14 448.11 15.31 40.27 inf; +paraîtrez paraître ver 122.14 448.11 0.05 0.00 ind:fut:2p; +paraîtront paraître ver 122.14 448.11 0.47 0.61 ind:fut:3p; +parabellum parabellum nom m s 0.24 0.61 0.23 0.54 +parabellums parabellum nom m p 0.24 0.61 0.01 0.07 +parabole parabole nom f s 1.90 2.57 1.78 1.96 +paraboles parabole nom f p 1.90 2.57 0.12 0.61 +parabolique parabolique adj s 0.42 0.47 0.38 0.20 +paraboliquement paraboliquement adv 0.01 0.00 0.01 0.00 +paraboliques parabolique adj p 0.42 0.47 0.04 0.27 +paraboloïde paraboloïde nom m s 0.01 0.00 0.01 0.00 +parachevaient parachever ver 0.57 1.28 0.01 0.07 ind:imp:3p; +parachevait parachever ver 0.57 1.28 0.00 0.14 ind:imp:3s; +parachevant parachever ver 0.57 1.28 0.01 0.14 par:pre; +parachever parachever ver 0.57 1.28 0.28 0.47 inf; +parachevèrent parachever ver 0.57 1.28 0.00 0.07 ind:pas:3p; +parachevé parachever ver m s 0.57 1.28 0.26 0.20 par:pas; +parachèvement parachèvement nom m s 0.01 0.14 0.01 0.14 +parachèvent parachever ver 0.57 1.28 0.00 0.14 ind:pre:3p; +parachèvera parachever ver 0.57 1.28 0.01 0.00 ind:fut:3s; +parachèveraient parachever ver 0.57 1.28 0.00 0.07 cnd:pre:3p; +parachutage parachutage nom m s 0.22 0.95 0.17 0.41 +parachutages parachutage nom m p 0.22 0.95 0.05 0.54 +parachute parachute nom m s 4.79 3.58 4.12 3.04 +parachutent parachuter ver 1.12 1.96 0.01 0.14 ind:pre:3p; +parachuter parachuter ver 1.12 1.96 0.11 0.14 inf; +parachuterais parachuter ver 1.12 1.96 0.01 0.00 cnd:pre:1s; +parachuterons parachuter ver 1.12 1.96 0.01 0.00 ind:fut:1p; +parachutes parachute nom m p 4.79 3.58 0.67 0.54 +parachutez parachuter ver 1.12 1.96 0.01 0.07 imp:pre:2p;ind:pre:2p; +parachutisme parachutisme nom m s 0.29 0.07 0.29 0.07 +parachutiste parachutiste nom s 2.50 4.80 0.57 1.49 +parachutistes parachutiste nom p 2.50 4.80 1.93 3.31 +parachutèrent parachuter ver 1.12 1.96 0.00 0.07 ind:pas:3p; +parachuté parachuter ver m s 1.12 1.96 0.39 0.74 par:pas; +parachutée parachuter ver f s 1.12 1.96 0.02 0.07 par:pas; +parachutées parachuter ver f p 1.12 1.96 0.00 0.14 par:pas; +parachutés parachuter ver m p 1.12 1.96 0.07 0.41 par:pas; +paraclet paraclet nom m s 0.04 0.68 0.04 0.68 +paracétamol paracétamol nom m s 0.11 0.14 0.11 0.14 +parada parader ver 1.48 3.58 0.04 0.07 ind:pas:3s; +paradaient parader ver 1.48 3.58 0.00 0.47 ind:imp:3p; +paradais parader ver 1.48 3.58 0.01 0.14 ind:imp:1s; +paradait parader ver 1.48 3.58 0.14 0.68 ind:imp:3s; +paradant parader ver 1.48 3.58 0.04 0.41 par:pre; +parade parade nom f s 5.10 11.22 4.79 9.93 +paradent parader ver 1.48 3.58 0.10 0.27 ind:pre:3p; +parader parader ver 1.48 3.58 0.72 0.81 inf; +paradera parader ver 1.48 3.58 0.00 0.07 ind:fut:3s; +parades parade nom f p 5.10 11.22 0.30 1.28 +paradeurs paradeur nom m p 0.00 0.07 0.00 0.07 +paradigme paradigme nom m s 0.25 0.20 0.13 0.14 +paradigmes paradigme nom m p 0.25 0.20 0.13 0.07 +paradis paradis nom m 33.23 28.04 33.23 28.04 +paradisiaque paradisiaque adj s 0.61 1.01 0.59 0.95 +paradisiaques paradisiaque adj p 0.61 1.01 0.02 0.07 +paradisiers paradisier nom m p 0.00 0.07 0.00 0.07 +paradons parader ver 1.48 3.58 0.01 0.00 ind:pre:1p; +parador parador nom m s 0.10 0.14 0.10 0.14 +parados parados nom m 0.00 0.81 0.00 0.81 +paradoxal paradoxal adj m s 0.78 5.14 0.65 2.16 +paradoxale paradoxal adj f s 0.78 5.14 0.12 1.96 +paradoxalement paradoxalement adv 0.22 3.78 0.22 3.78 +paradoxales paradoxal adj f p 0.78 5.14 0.01 0.68 +paradoxaux paradoxal adj m p 0.78 5.14 0.00 0.34 +paradoxe paradoxe nom m s 1.90 8.11 1.50 6.01 +paradoxes paradoxe nom m p 1.90 8.11 0.40 2.09 +paradoxie paradoxie nom f s 0.00 0.07 0.00 0.07 +paradèrent parader ver 1.48 3.58 0.00 0.07 ind:pas:3p; +paradé parader ver m s 1.48 3.58 0.01 0.14 par:pas; +paradée parader ver f s 1.48 3.58 0.01 0.00 par:pas; +parafer parafer ver 0.01 0.00 0.01 0.00 inf; +paraffine paraffine nom f s 0.22 0.68 0.22 0.68 +paraffiné paraffiné adj m s 0.01 0.27 0.00 0.20 +paraffinée paraffiné adj f s 0.01 0.27 0.01 0.00 +paraffinés paraffiné adj m p 0.01 0.27 0.00 0.07 +parage parage nom m s 5.99 5.74 0.01 0.00 +parages parage nom m p 5.99 5.74 5.98 5.74 +paragouvernementales paragouvernemental adj f p 0.00 0.07 0.00 0.07 +paragraphe paragraphe nom m s 3.58 3.65 3.21 2.57 +paragraphes paragraphe nom m p 3.58 3.65 0.37 1.08 +paraguayen paraguayen adj m s 0.35 0.47 0.00 0.34 +paraguayenne paraguayen adj f s 0.35 0.47 0.23 0.07 +paraguayennes paraguayen adj f p 0.35 0.47 0.00 0.07 +paraguayens paraguayen nom m p 0.14 0.14 0.14 0.07 +parai parer ver 30.50 19.66 0.02 0.14 ind:pas:1s; +paraient parer ver 30.50 19.66 0.00 0.34 ind:imp:3p; +parais parer ver 30.50 19.66 1.98 0.47 imp:pre:2s;ind:imp:1s;ind:imp:2s; +paraissaient paraître ver 122.14 448.11 0.73 26.96 ind:imp:3p; +paraissais paraître ver 122.14 448.11 0.46 0.61 ind:imp:1s;ind:imp:2s; +paraissait paraître ver 122.14 448.11 4.63 118.31 ind:imp:3s; +paraissant paraître ver 122.14 448.11 0.41 3.51 par:pre; +paraisse paraître ver 122.14 448.11 1.45 2.84 sub:pre:1s;sub:pre:3s; +paraissent paraître ver 122.14 448.11 2.88 13.04 ind:pre:3p; +paraissez paraître ver 122.14 448.11 2.30 0.68 imp:pre:2p;ind:pre:2p; +paraissiez paraître ver 122.14 448.11 0.03 0.41 ind:imp:2p; +paraissions paraître ver 122.14 448.11 0.02 0.14 ind:imp:1p; +paraissons paraître ver 122.14 448.11 0.04 0.27 imp:pre:1p;ind:pre:1p; +parait parer ver 30.50 19.66 12.53 2.09 ind:imp:3s; +parallaxe parallaxe nom f s 0.03 0.07 0.02 0.00 +parallaxes parallaxe nom f p 0.03 0.07 0.01 0.07 +parallèle parallèle adj s 2.79 13.11 1.36 3.51 +parallèlement parallèlement adv 0.20 3.45 0.20 3.45 +parallèles parallèle adj p 2.79 13.11 1.42 9.59 +parallélisme parallélisme nom m s 0.20 0.41 0.20 0.41 +paralléliste paralléliste adj s 0.01 0.00 0.01 0.00 +parallélogramme parallélogramme nom m s 0.00 0.07 0.00 0.07 +parallélépipède parallélépipède nom m s 0.00 0.54 0.00 0.20 +parallélépipèdes parallélépipède nom m p 0.00 0.54 0.00 0.34 +parallélépipédique parallélépipédique adj s 0.00 0.20 0.00 0.20 +paralogismes paralogisme nom m p 0.00 0.07 0.00 0.07 +paralympiques paralympique nom m p 0.10 0.00 0.10 0.00 +paralysa paralyser ver 7.84 13.99 0.05 0.20 ind:pas:3s; +paralysaient paralyser ver 7.84 13.99 0.01 0.47 ind:imp:3p; +paralysais paralyser ver 7.84 13.99 0.00 0.07 ind:imp:1s; +paralysait paralyser ver 7.84 13.99 0.03 2.16 ind:imp:3s; +paralysant paralysant adj m s 0.86 1.01 0.52 0.41 +paralysante paralysant adj f s 0.86 1.01 0.17 0.54 +paralysantes paralysant adj f p 0.86 1.01 0.11 0.07 +paralysants paralysant adj m p 0.86 1.01 0.06 0.00 +paralyse paralyser ver 7.84 13.99 0.72 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +paralysent paralyser ver 7.84 13.99 0.07 0.47 ind:pre:3p; +paralyser paralyser ver 7.84 13.99 0.69 1.08 inf; +paralysera paralyser ver 7.84 13.99 0.15 0.07 ind:fut:3s; +paralyserait paralyser ver 7.84 13.99 0.19 0.00 cnd:pre:3s; +paralyserez paralyser ver 7.84 13.99 0.01 0.00 ind:fut:2p; +paralysie paralysie nom f s 2.61 4.32 2.60 4.19 +paralysies paralysie nom f p 2.61 4.32 0.01 0.14 +paralysât paralyser ver 7.84 13.99 0.00 0.14 sub:imp:3s; +paralysèrent paralyser ver 7.84 13.99 0.00 0.14 ind:pas:3p; +paralysé paralyser ver m s 7.84 13.99 3.69 4.12 par:pas; +paralysée paralyser ver f s 7.84 13.99 1.71 1.96 par:pas; +paralysées paralyser ver f p 7.84 13.99 0.18 0.14 par:pas; +paralysés paralyser ver m p 7.84 13.99 0.27 0.68 par:pas; +paralytique paralytique adj s 0.84 1.76 0.82 1.35 +paralytiques paralytique adj m p 0.84 1.76 0.02 0.41 +paramagnétique paramagnétique adj s 0.01 0.00 0.01 0.00 +paramilitaire paramilitaire adj s 0.30 1.01 0.12 0.27 +paramilitaires paramilitaire adj p 0.30 1.01 0.18 0.74 +paramnésie paramnésie nom f s 0.01 0.14 0.01 0.14 +paramètre paramètre nom m s 1.50 0.41 0.07 0.00 +paramètres paramètre nom m p 1.50 0.41 1.43 0.41 +paramédical paramédical adj m s 0.37 0.14 0.30 0.14 +paramédicale paramédical adj f s 0.37 0.14 0.03 0.00 +paramédicaux paramédical adj m p 0.37 0.14 0.04 0.00 +paramétrique paramétrique adj f s 0.01 0.00 0.01 0.00 +parangon parangon nom m s 0.13 1.22 0.12 1.08 +parangonnages parangonnage nom m p 0.00 0.07 0.00 0.07 +parangons parangon nom m p 0.13 1.22 0.01 0.14 +parano parano adj s 4.23 0.47 3.98 0.47 +paranoïa paranoïa nom f s 2.03 1.15 2.03 1.15 +paranoïaque paranoïaque adj s 3.33 0.54 2.97 0.41 +paranoïaques paranoïaque adj p 3.33 0.54 0.35 0.14 +paranoïde paranoïde adj s 0.09 0.27 0.09 0.27 +paranormal paranormal nom m s 0.61 0.07 0.61 0.07 +paranormale paranormal adj f s 2.04 0.07 1.02 0.07 +paranormales paranormal adj f p 2.04 0.07 0.14 0.00 +paranormaux paranormal adj m p 2.04 0.07 0.57 0.00 +paranos parano adj f p 4.23 0.47 0.25 0.00 +parant parer ver 30.50 19.66 0.01 1.28 par:pre; +paranéoplasique paranéoplasique adj m s 0.07 0.00 0.07 0.00 +parapente parapente nom m s 0.31 0.00 0.31 0.00 +parapet parapet nom m s 0.88 12.91 0.73 10.88 +parapets parapet nom m p 0.88 12.91 0.16 2.03 +paraphait parapher ver 0.64 0.74 0.00 0.07 ind:imp:3s; +paraphant parapher ver 0.64 0.74 0.00 0.14 par:pre; +parapharmacie parapharmacie nom f s 0.03 0.07 0.03 0.07 +paraphe paraphe nom m s 0.10 1.55 0.10 1.01 +parapher parapher ver 0.64 0.74 0.06 0.00 inf; +paraphes parapher ver 0.64 0.74 0.02 0.00 ind:pre:2s; +parapheurs parapheur nom m p 0.00 0.07 0.00 0.07 +paraphez parapher ver 0.64 0.74 0.24 0.00 imp:pre:2p;ind:pre:2p; +paraphrasa paraphraser ver 0.24 0.41 0.00 0.07 ind:pas:3s; +paraphrasait paraphraser ver 0.24 0.41 0.00 0.14 ind:imp:3s; +paraphrasant paraphraser ver 0.24 0.41 0.01 0.00 par:pre; +paraphrase paraphrase nom f s 0.12 0.34 0.12 0.27 +paraphraser paraphraser ver 0.24 0.41 0.13 0.14 inf; +paraphrases paraphraser ver 0.24 0.41 0.01 0.00 ind:pre:2s; +paraphrasé paraphraser ver m s 0.24 0.41 0.00 0.07 par:pas; +paraphé parapher ver m s 0.64 0.74 0.25 0.34 par:pas; +paraphée parapher ver f s 0.64 0.74 0.03 0.07 par:pas; +paraphés parapher ver m p 0.64 0.74 0.02 0.07 par:pas; +paraplégique paraplégique adj s 0.29 0.14 0.25 0.07 +paraplégiques paraplégique adj m p 0.29 0.14 0.04 0.07 +parapluie parapluie nom m s 7.38 16.28 6.37 12.50 +parapluies parapluie nom m p 7.38 16.28 1.01 3.78 +parapsychique parapsychique adj s 0.04 0.00 0.04 0.00 +parapsychologie parapsychologie nom f s 0.61 0.14 0.61 0.14 +parapsychologique parapsychologique adj s 0.03 0.07 0.02 0.00 +parapsychologiques parapsychologique adj m p 0.03 0.07 0.01 0.07 +parapsychologue parapsychologue nom s 0.09 0.00 0.06 0.00 +parapsychologues parapsychologue nom p 0.09 0.00 0.03 0.00 +parareligieuse parareligieux adj f s 0.10 0.00 0.10 0.00 +paras para nom m p 3.23 1.49 0.90 0.61 +parascolaire parascolaire adj m s 0.04 0.07 0.00 0.07 +parascolaires parascolaire adj p 0.04 0.07 0.04 0.00 +parascève parascève nom f s 0.00 0.47 0.00 0.47 +parasitaire parasitaire adj s 0.25 0.81 0.23 0.61 +parasitaires parasitaire adj p 0.25 0.81 0.03 0.20 +parasitait parasiter ver 0.39 0.27 0.00 0.07 ind:imp:3s; +parasite parasite nom m s 8.72 4.53 4.66 1.22 +parasitent parasiter ver 0.39 0.27 0.12 0.00 ind:pre:3p; +parasiter parasiter ver 0.39 0.27 0.07 0.07 inf; +parasites parasite nom m p 8.72 4.53 4.06 3.31 +parasiticide parasiticide adj m s 0.10 0.00 0.10 0.00 +parasitisme parasitisme nom m s 0.01 0.74 0.01 0.74 +parasitologie parasitologie nom f s 0.00 0.07 0.00 0.07 +parasitose parasitose nom f s 0.01 0.00 0.01 0.00 +parasité parasiter ver m s 0.39 0.27 0.05 0.07 par:pas; +parasitée parasiter ver f s 0.39 0.27 0.01 0.07 par:pas; +parasités parasiter ver m p 0.39 0.27 0.06 0.00 par:pas; +parasol parasol nom m s 0.80 6.69 0.72 3.72 +parasols parasol nom m p 0.80 6.69 0.08 2.97 +parathyroïdienne parathyroïdien adj f s 0.01 0.00 0.01 0.00 +paratonnerre paratonnerre nom m s 0.55 0.61 0.41 0.41 +paratonnerres paratonnerre nom m p 0.55 0.61 0.14 0.20 +paravent paravent nom m s 1.77 4.32 1.51 3.85 +paravents paravent nom m p 1.77 4.32 0.26 0.47 +parbleu parbleu ono 1.54 1.96 1.54 1.96 +parc parc nom m s 32.85 43.99 31.02 38.72 +parcage parcage nom m s 0.00 0.07 0.00 0.07 +parce_qu parce_qu con 4.13 2.36 4.13 2.36 +parce_que parce_que con 548.52 327.43 548.52 327.43 +parce parce adv_sup 3.49 0.95 3.49 0.95 +parcellaire parcellaire adj s 0.00 0.34 0.00 0.34 +parcelle parcelle nom f s 2.73 11.15 1.99 7.09 +parcelles parcelle nom f p 2.73 11.15 0.74 4.05 +parchemin parchemin nom m s 3.61 4.80 3.47 3.85 +parchemineuse parchemineux adj f s 0.00 0.07 0.00 0.07 +parchemins parchemin nom m p 3.61 4.80 0.14 0.95 +parcheminé parcheminé adj m s 0.04 1.49 0.03 0.47 +parcheminée parcheminé adj f s 0.04 1.49 0.01 0.47 +parcheminées parcheminé adj f p 0.04 1.49 0.00 0.34 +parcheminés parcheminé adj m p 0.04 1.49 0.00 0.20 +parcimonie parcimonie nom f s 0.22 0.95 0.22 0.95 +parcimonieuse parcimonieux adj f s 0.00 1.55 0.00 0.61 +parcimonieusement parcimonieusement adv 0.00 0.88 0.00 0.88 +parcimonieuses parcimonieux adj f p 0.00 1.55 0.00 0.07 +parcimonieux parcimonieux adj m 0.00 1.55 0.00 0.88 +parcmètre parcmètre nom m s 0.38 0.00 0.22 0.00 +parcmètres parcmètre nom m p 0.38 0.00 0.16 0.00 +parcomètre parcomètre nom m s 0.01 0.00 0.01 0.00 +parcourûmes parcourir ver 15.46 61.82 0.00 0.47 ind:pas:1p; +parcouraient parcourir ver 15.46 61.82 0.16 1.89 ind:imp:3p; +parcourais parcourir ver 15.46 61.82 0.32 1.22 ind:imp:1s; +parcourait parcourir ver 15.46 61.82 0.47 6.28 ind:imp:3s; +parcourant parcourir ver 15.46 61.82 0.50 4.12 par:pre; +parcoure parcourir ver 15.46 61.82 0.06 0.07 sub:pre:1s;sub:pre:3s; +parcourent parcourir ver 15.46 61.82 0.57 1.15 ind:pre:3p; +parcourez parcourir ver 15.46 61.82 0.22 0.07 imp:pre:2p;ind:pre:2p; +parcouriez parcourir ver 15.46 61.82 0.05 0.07 ind:imp:2p; +parcourions parcourir ver 15.46 61.82 0.16 0.14 ind:imp:1p; +parcourir parcourir ver 15.46 61.82 3.50 13.65 inf; +parcourons parcourir ver 15.46 61.82 0.11 0.20 imp:pre:1p;ind:pre:1p; +parcourra parcourir ver 15.46 61.82 0.02 0.00 ind:fut:3s; +parcourrai parcourir ver 15.46 61.82 0.04 0.07 ind:fut:1s; +parcourraient parcourir ver 15.46 61.82 0.01 0.00 cnd:pre:3p; +parcourrais parcourir ver 15.46 61.82 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +parcourrait parcourir ver 15.46 61.82 0.01 0.14 cnd:pre:3s; +parcourrez parcourir ver 15.46 61.82 0.00 0.14 ind:fut:2p; +parcourrions parcourir ver 15.46 61.82 0.10 0.00 cnd:pre:1p; +parcourront parcourir ver 15.46 61.82 0.01 0.00 ind:fut:3p; +parcours parcours nom m 7.42 17.64 7.42 17.64 +parcourt parcourir ver 15.46 61.82 2.30 4.59 ind:pre:3s; +parcouru parcourir ver m s 15.46 61.82 4.74 11.08 par:pas; +parcourue parcourir ver f s 15.46 61.82 0.38 2.97 par:pas; +parcourues parcourir ver f p 15.46 61.82 0.03 1.42 par:pas; +parcoururent parcourir ver 15.46 61.82 0.02 1.55 ind:pas:3p; +parcourus parcourir ver m p 15.46 61.82 0.20 2.77 ind:pas:1s;par:pas; +parcourut parcourir ver 15.46 61.82 0.15 6.49 ind:pas:3s; +parcs parc nom m p 32.85 43.99 1.84 5.27 +pardessus pardessus nom m 1.43 9.05 1.43 9.05 +pardi pardi ono 2.66 6.22 2.66 6.22 +pardieu pardieu ono 0.54 0.20 0.54 0.20 +pardingue pardingue nom m s 0.00 0.07 0.00 0.07 +pardon pardon ono 209.13 18.04 209.13 18.04 +pardonna pardonner ver 139.45 44.59 0.04 0.54 ind:pas:3s; +pardonnable pardonnable adj m s 0.03 0.20 0.03 0.20 +pardonnaient pardonner ver 139.45 44.59 0.00 0.68 ind:imp:3p; +pardonnais pardonner ver 139.45 44.59 0.07 0.07 ind:imp:1s;ind:imp:2s; +pardonnait pardonner ver 139.45 44.59 0.33 2.64 ind:imp:3s; +pardonnant pardonner ver 139.45 44.59 0.05 0.20 par:pre; +pardonne pardonner ver 139.45 44.59 53.11 12.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +pardonnent pardonner ver 139.45 44.59 1.09 0.81 ind:pre:3p; +pardonner pardonner ver 139.45 44.59 21.71 11.49 inf;; +pardonnera pardonner ver 139.45 44.59 3.72 0.74 ind:fut:3s; +pardonnerai pardonner ver 139.45 44.59 4.58 0.81 ind:fut:1s; +pardonneraient pardonner ver 139.45 44.59 0.13 0.07 cnd:pre:3p; +pardonnerais pardonner ver 139.45 44.59 1.02 0.20 cnd:pre:1s;cnd:pre:2s; +pardonnerait pardonner ver 139.45 44.59 0.55 1.08 cnd:pre:3s; +pardonneras pardonner ver 139.45 44.59 1.45 0.14 ind:fut:2s; +pardonnerez pardonner ver 139.45 44.59 0.66 0.81 ind:fut:2p; +pardonneriez pardonner ver 139.45 44.59 0.04 0.00 cnd:pre:2p; +pardonnerons pardonner ver 139.45 44.59 0.02 0.07 ind:fut:1p; +pardonneront pardonner ver 139.45 44.59 0.63 0.27 ind:fut:3p; +pardonnes pardonner ver 139.45 44.59 4.41 0.54 ind:pre:2s;sub:pre:2s; +pardonnez pardonner ver 139.45 44.59 34.31 5.74 imp:pre:2p;ind:pre:2p; +pardonniez pardonner ver 139.45 44.59 0.16 0.07 ind:imp:2p; +pardonnions pardonner ver 139.45 44.59 0.02 0.20 ind:imp:1p; +pardonnons pardonner ver 139.45 44.59 1.02 0.07 imp:pre:1p;ind:pre:1p; +pardonnât pardonner ver 139.45 44.59 0.00 0.07 sub:imp:3s; +pardonnèrent pardonner ver 139.45 44.59 0.02 0.07 ind:pas:3p; +pardonné pardonner ver m s 139.45 44.59 8.31 4.32 par:pas; +pardonnée pardonner ver f s 139.45 44.59 1.18 0.27 par:pas; +pardonnées pardonner ver f p 139.45 44.59 0.02 0.07 par:pas; +pardonnés pardonner ver m p 139.45 44.59 0.80 0.27 par:pas; +pardons pardon nom m p 55.62 26.89 0.92 0.81 +pare_balle pare_balle adj s 0.13 0.00 0.13 0.00 +pare_balles pare_balles adj 1.92 0.34 1.92 0.34 +pare_boue pare_boue nom m 0.04 0.00 0.04 0.00 +pare_brise pare_brise nom m 4.12 7.16 4.08 7.16 +pare_brise pare_brise nom m p 4.12 7.16 0.04 0.00 +pare_chocs pare_chocs nom m 1.85 1.82 1.85 1.82 +pare_feu pare_feu nom m 0.24 0.07 0.24 0.07 +pare_feux pare_feux nom m p 0.05 0.00 0.05 0.00 +pare_soleil pare_soleil nom m 0.26 0.54 0.26 0.54 +pare_éclats pare_éclats nom m 0.00 0.07 0.00 0.07 +pare_étincelles pare_étincelles nom m 0.00 0.07 0.00 0.07 +pare parer ver 30.50 19.66 1.64 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pareil pareil adj m s 133.45 149.66 95.18 70.47 +pareille pareil adj f s 133.45 149.66 21.01 41.22 +pareillement pareillement adv 1.57 3.72 1.57 3.72 +pareilles pareil adj f p 133.45 149.66 6.97 16.82 +pareils pareil adj m p 133.45 149.66 10.29 21.15 +parement parement nom m s 0.03 1.76 0.03 0.00 +parements parement nom m p 0.03 1.76 0.00 1.76 +parenchyme parenchyme nom m s 0.01 0.00 0.01 0.00 +parent parent nom m s 188.38 146.35 10.03 4.53 +parentage parentage nom m s 0.00 0.07 0.00 0.07 +parental parental adj m s 1.65 0.81 0.50 0.07 +parentale parental adj f s 1.65 0.81 0.72 0.61 +parentales parental adj f p 1.65 0.81 0.10 0.07 +parentaux parental adj m p 1.65 0.81 0.32 0.07 +parente parent nom f s 188.38 146.35 1.12 2.30 +parentes parent nom f p 188.38 146.35 0.20 0.81 +parenthèse parenthèse nom f s 1.80 9.32 1.00 5.47 +parenthèses parenthèse nom f p 1.80 9.32 0.80 3.85 +parents parent nom m p 188.38 146.35 177.04 138.72 +parentèle parentèle nom f s 0.11 0.34 0.11 0.27 +parentèles parentèle nom f p 0.11 0.34 0.00 0.07 +parenté parenté nom f s 1.42 6.42 1.42 5.68 +parentés parenté nom f p 1.42 6.42 0.00 0.74 +parer parer ver 30.50 19.66 0.69 5.14 inf; +parerai parer ver 30.50 19.66 0.00 0.07 ind:fut:1s; +parerait parer ver 30.50 19.66 0.00 0.07 cnd:pre:3s; +paressaient paresser ver 0.42 0.95 0.00 0.07 ind:imp:3p; +paressais paresser ver 0.42 0.95 0.02 0.07 ind:imp:1s;ind:imp:2s; +paressait paresser ver 0.42 0.95 0.00 0.20 ind:imp:3s; +paressant paresser ver 0.42 0.95 0.01 0.07 par:pre; +paresse paresse nom f s 2.65 12.43 2.54 11.89 +paresser paresser ver 0.42 0.95 0.25 0.34 inf; +paresses paresse nom f p 2.65 12.43 0.10 0.54 +paresseuse paresseux adj f s 5.46 10.34 2.08 3.65 +paresseusement paresseusement adv 0.01 2.97 0.01 2.97 +paresseuses paresseux adj f p 5.46 10.34 0.20 0.41 +paresseux paresseux adj m 5.46 10.34 3.19 6.28 +paressions paresser ver 0.42 0.95 0.10 0.07 ind:imp:1p; +paressé paresser ver m s 0.42 0.95 0.02 0.14 par:pas; +paresthésie paresthésie nom f s 0.05 0.00 0.05 0.00 +pareur pareur nom m s 0.01 0.00 0.01 0.00 +parez parer ver 30.50 19.66 1.44 0.14 imp:pre:2p;ind:pre:2p; +parfaire parfaire ver 60.06 19.86 0.58 2.64 inf; +parfais parfaire ver 60.06 19.86 0.09 0.00 imp:pre:2s;ind:pre:1s; +parfaisais parfaire ver 60.06 19.86 0.00 0.07 ind:imp:1s; +parfaisait parfaire ver 60.06 19.86 0.00 0.07 ind:imp:3s; +parfait parfaire ver m s 60.06 19.86 45.92 11.89 ind:pre:3s;par:pas; +parfaite parfait adj f s 58.77 43.45 19.32 18.45 +parfaitement parfaitement adv 45.48 71.08 45.48 71.08 +parfaites parfait adj f p 58.77 43.45 1.52 2.03 +parfaits parfait adj m p 58.77 43.45 2.36 2.30 +parferont parfaire ver 60.06 19.86 0.00 0.07 ind:fut:3p; +parfit parfaire ver 60.06 19.86 0.00 0.07 ind:pas:3s; +parfois parfois adv_sup 152.86 287.36 152.86 287.36 +parfum parfum nom m s 30.00 65.74 24.44 52.36 +parfuma parfumer ver 1.89 10.27 0.00 0.41 ind:pas:3s; +parfumaient parfumer ver 1.89 10.27 0.00 0.07 ind:imp:3p; +parfumait parfumer ver 1.89 10.27 0.01 1.22 ind:imp:3s; +parfume parfumer ver 1.89 10.27 0.14 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +parfument parfumer ver 1.89 10.27 0.06 0.41 ind:pre:3p; +parfumer parfumer ver 1.89 10.27 0.27 0.95 inf; +parfumera parfumer ver 1.89 10.27 0.00 0.07 ind:fut:3s; +parfumerie parfumerie nom f s 0.47 1.42 0.47 1.22 +parfumeries parfumerie nom f p 0.47 1.42 0.00 0.20 +parfumeur parfumeur nom m s 0.13 1.15 0.12 0.47 +parfumeurs parfumeur nom m p 0.13 1.15 0.00 0.41 +parfumeuse parfumeur nom f s 0.13 1.15 0.01 0.27 +parfumez parfumer ver 1.89 10.27 0.11 0.00 imp:pre:2p;ind:pre:2p; +parfums parfum nom m p 30.00 65.74 5.55 13.38 +parfumé parfumé adj m s 2.24 10.20 0.64 3.99 +parfumée parfumé adj f s 2.24 10.20 1.12 3.51 +parfumées parfumé adj f p 2.24 10.20 0.23 1.89 +parfumés parfumé adj m p 2.24 10.20 0.25 0.81 +pari pari nom m s 26.61 12.57 13.93 4.59 +paria paria nom m s 1.12 2.09 0.82 1.35 +pariade pariade nom f s 0.01 0.14 0.01 0.14 +pariaient parier ver 81.96 15.61 0.15 0.20 ind:imp:3p; +pariais parier ver 81.96 15.61 0.25 0.07 ind:imp:1s;ind:imp:2s; +pariait parier ver 81.96 15.61 0.48 0.27 ind:imp:3s; +pariant parier ver 81.96 15.61 0.52 0.07 par:pre; +parias paria nom m p 1.12 2.09 0.29 0.74 +parie parier ver 81.96 15.61 52.59 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +parient parier ver 81.96 15.61 0.33 0.00 ind:pre:3p; +parier parier ver 81.96 15.61 9.93 2.70 ind:pre:2p;inf; +parierai parier ver 81.96 15.61 0.51 0.07 ind:fut:1s; +parierais parier ver 81.96 15.61 1.81 1.01 cnd:pre:1s;cnd:pre:2s; +parierait parier ver 81.96 15.61 0.02 0.14 cnd:pre:3s; +parieriez parier ver 81.96 15.61 0.05 0.00 cnd:pre:2p; +paries parier ver 81.96 15.61 3.61 0.54 ind:pre:2s; +parieur parieur nom m s 0.81 0.54 0.39 0.07 +parieurs parieur nom m p 0.81 0.54 0.41 0.47 +parieuse parieur nom f s 0.81 0.54 0.01 0.00 +pariez parier ver 81.96 15.61 1.69 0.14 imp:pre:2p;ind:pre:2p; +parigot parigot adj m s 0.40 1.22 0.27 0.81 +parigote parigot nom f s 0.00 1.01 0.00 0.20 +parigotes parigot adj f p 0.40 1.22 0.00 0.14 +parigots parigot adj m p 0.40 1.22 0.14 0.14 +parions parier ver 81.96 15.61 0.38 0.20 imp:pre:1p;ind:imp:1p;ind:pre:1p; +paris_brest paris_brest nom m 0.19 0.20 0.19 0.20 +paris pari nom m p 26.61 12.57 12.68 7.97 +parisien parisien adj m s 2.73 30.61 0.94 12.09 +parisienne parisien adj f s 2.73 30.61 1.11 10.07 +parisiennes parisien adj f p 2.73 30.61 0.16 2.30 +parisiens parisien nom m p 2.20 9.12 1.36 6.49 +paritaire paritaire adj s 0.00 0.07 0.00 0.07 +parité parité nom f s 0.31 0.14 0.31 0.14 +parié parier ver m s 81.96 15.61 9.61 1.42 par:pas; +pariétal pariétal adj m s 0.26 0.20 0.20 0.14 +pariétale pariétal adj f s 0.26 0.20 0.04 0.07 +pariétaux pariétal adj m p 0.26 0.20 0.02 0.00 +parjurant parjurer ver 0.79 0.47 0.00 0.07 par:pre; +parjure parjure nom m s 1.35 0.74 1.16 0.68 +parjurer parjurer ver 0.79 0.47 0.14 0.34 ind:pre:2p;inf; +parjurera parjurer ver 0.79 0.47 0.01 0.00 ind:fut:3s; +parjures parjure nom m p 1.35 0.74 0.19 0.07 +parjuré parjurer ver m s 0.79 0.47 0.21 0.00 par:pas; +parjurée parjurer ver f s 0.79 0.47 0.03 0.00 par:pas; +parka parka nom m s 0.28 0.41 0.28 0.41 +parking parking nom m s 18.23 9.86 17.38 8.65 +parkings parking nom m p 18.23 9.86 0.84 1.22 +parkinson parkinson nom m 0.03 0.07 0.03 0.07 +parkinsonien parkinsonien adj m s 0.07 0.14 0.04 0.07 +parkinsonienne parkinsonien adj f s 0.07 0.14 0.00 0.07 +parkinsoniens parkinsonien adj m p 0.07 0.14 0.03 0.00 +parla parler ver 1970.58 1086.01 2.71 38.99 ind:pas:3s; +parlai parler ver 1970.58 1086.01 0.59 3.78 ind:pas:1s; +parlaient parler ver 1970.58 1086.01 5.94 40.27 ind:imp:3p; +parlais parler ver 1970.58 1086.01 32.98 19.53 ind:imp:1s;ind:imp:2s; +parlait parler ver 1970.58 1086.01 44.37 157.09 ind:imp:3s; +parlant parler ver 1970.58 1086.01 15.70 36.15 par:pre; +parlante parlant adj f s 5.62 5.47 1.01 0.68 +parlantes parlant adj f p 5.62 5.47 0.46 0.14 +parlants parlant adj m p 5.62 5.47 0.12 0.34 +parlas parler ver 1970.58 1086.01 0.01 0.07 ind:pas:2s; +parlassent parler ver 1970.58 1086.01 0.00 0.20 sub:imp:3p; +parlasses parler ver 1970.58 1086.01 0.00 0.07 sub:imp:2s; +parle parler ver 1970.58 1086.01 451.68 168.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +parlement parlement nom m s 4.71 5.68 4.71 5.54 +parlementaire parlementaire adj s 0.77 3.72 0.72 2.70 +parlementaires parlementaire nom p 0.27 2.91 0.16 2.70 +parlementait parlementer ver 0.82 1.69 0.00 0.34 ind:imp:3s; +parlementant parlementer ver 0.82 1.69 0.00 0.07 par:pre; +parlementarisme parlementarisme nom m s 0.00 0.20 0.00 0.20 +parlementariste parlementariste adj s 0.00 0.07 0.00 0.07 +parlemente parlementer ver 0.82 1.69 0.15 0.27 ind:pre:1s;ind:pre:3s; +parlementent parlementer ver 0.82 1.69 0.01 0.14 ind:pre:3p; +parlementer parlementer ver 0.82 1.69 0.61 0.74 inf; +parlementons parlementer ver 0.82 1.69 0.01 0.07 imp:pre:1p;ind:pre:1p; +parlements parlement nom m p 4.71 5.68 0.00 0.14 +parlementèrent parlementer ver 0.82 1.69 0.00 0.07 ind:pas:3p; +parlementé parlementer ver m s 0.82 1.69 0.04 0.00 par:pas; +parlent parler ver 1970.58 1086.01 32.08 29.39 ind:pre:3p;sub:pre:3p; +parler parler ver 1970.58 1086.01 728.02 341.82 inf;;inf;;inf;;inf;; +parlera parler ver 1970.58 1086.01 23.70 6.22 ind:fut:3s; +parlerai parler ver 1970.58 1086.01 22.47 8.24 ind:fut:1s; +parleraient parler ver 1970.58 1086.01 0.14 1.42 cnd:pre:3p; +parlerais parler ver 1970.58 1086.01 3.96 2.03 cnd:pre:1s;cnd:pre:2s; +parlerait parler ver 1970.58 1086.01 3.17 6.49 cnd:pre:3s; +parleras parler ver 1970.58 1086.01 3.89 1.28 ind:fut:2s; +parlerez parler ver 1970.58 1086.01 2.71 0.47 ind:fut:2p; +parlerie parlerie nom f s 0.00 0.07 0.00 0.07 +parleriez parler ver 1970.58 1086.01 0.50 0.14 cnd:pre:2p; +parlerions parler ver 1970.58 1086.01 0.26 0.47 cnd:pre:1p; +parlerons parler ver 1970.58 1086.01 6.53 2.03 ind:fut:1p; +parleront parler ver 1970.58 1086.01 1.75 1.22 ind:fut:3p; +parlers parler nom m p 11.58 9.05 0.00 0.14 +parles parler ver 1970.58 1086.01 152.20 35.34 ind:pre:2s;sub:pre:2s; +parleur parleur nom m s 1.36 2.03 1.20 1.76 +parleurs parleur nom m p 1.36 2.03 0.16 0.20 +parleuse parleur nom f s 1.36 2.03 0.00 0.07 +parlez parler ver 1970.58 1086.01 120.79 22.03 imp:pre:2p;ind:pre:2p; +parliez parler ver 1970.58 1086.01 10.93 3.11 ind:imp:2p;sub:pre:2p; +parlions parler ver 1970.58 1086.01 6.69 12.16 ind:imp:1p; +parloir parloir nom m s 2.64 4.39 2.64 4.19 +parloirs parloir nom m p 2.64 4.39 0.00 0.20 +parlâmes parler ver 1970.58 1086.01 0.02 1.55 ind:pas:1p; +parlons parler ver 1970.58 1086.01 46.28 16.22 imp:pre:1p;ind:pre:1p; +parlophone parlophone nom s 0.00 0.34 0.00 0.34 +parlât parler ver 1970.58 1086.01 0.10 3.11 sub:imp:3s; +parlotaient parloter ver 0.00 0.14 0.00 0.07 ind:imp:3p; +parlote parlote nom f s 0.27 1.35 0.24 0.27 +parloter parloter ver 0.00 0.14 0.00 0.07 inf; +parlotes parlote nom f p 0.27 1.35 0.03 1.08 +parlotte parlotte nom f s 0.19 0.47 0.16 0.14 +parlottes parlotte nom f p 0.19 0.47 0.04 0.34 +parlèrent parler ver 1970.58 1086.01 0.08 7.77 ind:pas:3p; +parlé parler ver m s 1970.58 1086.01 248.94 118.04 par:pas;par:pas;par:pas;par:pas; +parlée parler ver f s 1970.58 1086.01 0.39 0.27 par:pas; +parlées parler ver f p 1970.58 1086.01 0.30 0.07 par:pas; +parlés parler ver m p 1970.58 1086.01 0.65 0.20 par:pas; +parme parme adj 0.01 0.81 0.01 0.81 +parmentier parmentier nom m s 0.04 0.27 0.04 0.27 +parmentures parmenture nom f p 0.00 0.07 0.00 0.07 +parmesan parmesan nom m s 0.66 0.54 0.66 0.47 +parmesane parmesan adj f s 0.18 0.20 0.01 0.07 +parmesans parmesan nom m p 0.66 0.54 0.00 0.07 +parmi parmi pre 69.17 171.96 69.17 171.96 +parmélies parmélie nom f p 0.00 0.20 0.00 0.20 +parménidien parménidien adj m s 0.00 0.07 0.00 0.07 +parnassienne parnassien adj f s 0.00 0.14 0.00 0.14 +parodiai parodier ver 0.21 1.55 0.00 0.14 ind:pas:1s; +parodiait parodier ver 0.21 1.55 0.00 0.20 ind:imp:3s; +parodiant parodier ver 0.21 1.55 0.04 0.34 par:pre; +parodie parodie nom f s 1.13 2.43 1.09 2.16 +parodier parodier ver 0.21 1.55 0.01 0.61 inf; +parodies parodie nom f p 1.13 2.43 0.05 0.27 +parodique parodique adj s 0.06 1.08 0.05 0.95 +parodiquement parodiquement adv 0.00 0.14 0.00 0.14 +parodiques parodique adj m p 0.06 1.08 0.01 0.14 +parodontal parodontal adj m s 0.02 0.00 0.01 0.00 +parodontale parodontal adj f s 0.02 0.00 0.01 0.00 +paroi paroi nom f s 4.88 30.00 3.01 16.01 +paroir paroir nom m s 0.00 0.14 0.00 0.07 +paroirs paroir nom m p 0.00 0.14 0.00 0.07 +parois paroi nom f p 4.88 30.00 1.87 13.99 +paroisse paroisse nom f s 5.75 6.62 5.42 5.88 +paroisses paroisse nom f p 5.75 6.62 0.33 0.74 +paroissial paroissial adj m s 0.67 1.35 0.24 0.27 +paroissiale paroissial adj f s 0.67 1.35 0.38 0.61 +paroissiales paroissial adj f p 0.67 1.35 0.00 0.20 +paroissiaux paroissial adj m p 0.67 1.35 0.04 0.27 +paroissien paroissien nom m s 1.06 1.76 0.10 0.14 +paroissienne paroissien nom f s 1.06 1.76 0.02 0.00 +paroissiennes paroissienne nom f p 0.04 0.00 0.04 0.00 +paroissiens paroissien nom m p 1.06 1.76 0.94 1.42 +parole parole nom f s 103.48 178.31 71.07 81.82 +paroles parole nom f p 103.48 178.31 32.41 96.49 +paroli paroli nom m s 0.00 0.07 0.00 0.07 +parolier parolier nom m s 0.07 0.07 0.06 0.07 +parolière parolier nom f s 0.07 0.07 0.01 0.00 +paronomasie paronomasie nom f s 0.00 0.07 0.00 0.07 +paros paros nom m 0.27 1.08 0.27 1.08 +parotidienne parotidien adj f s 0.01 0.00 0.01 0.00 +parâtre parâtre nom m s 0.02 0.00 0.02 0.00 +parousie parousie nom f s 0.00 0.27 0.00 0.27 +paroxysme paroxysme nom m s 0.27 3.24 0.27 3.18 +paroxysmes paroxysme nom m p 0.27 3.24 0.00 0.07 +paroxysmique paroxysmique adj f s 0.01 0.07 0.01 0.00 +paroxysmiques paroxysmique adj p 0.01 0.07 0.00 0.07 +paroxystique paroxystique adj s 0.01 0.20 0.01 0.14 +paroxystiques paroxystique adj m p 0.01 0.20 0.00 0.07 +parpaillot parpaillot nom m s 0.00 0.27 0.00 0.14 +parpaillote parpaillot nom f s 0.00 0.27 0.00 0.07 +parpaillotes parpaillot nom f p 0.00 0.27 0.00 0.07 +parpaing parpaing nom m s 0.64 1.42 0.22 0.20 +parpaings parpaing nom m p 0.64 1.42 0.42 1.22 +parquait parquer ver 0.41 2.36 0.00 0.14 ind:imp:3s; +parque parquer ver 0.41 2.36 0.06 0.14 imp:pre:2s;ind:pre:3s; +parquent parquer ver 0.41 2.36 0.14 0.14 ind:pre:3p; +parquer parquer ver 0.41 2.36 0.09 0.20 inf; +parquet parquet nom m s 4.43 22.43 4.12 18.51 +parquetage parquetage nom m s 0.00 0.14 0.00 0.14 +parqueteur parqueteur nom m s 0.00 0.14 0.00 0.07 +parqueteuse parqueteur nom f s 0.00 0.14 0.00 0.07 +parquets parquet nom m p 4.43 22.43 0.32 3.92 +parqueté parqueter ver m s 0.00 0.61 0.00 0.07 par:pas; +parquetée parqueter ver f s 0.00 0.61 0.00 0.47 par:pas; +parquetées parqueter ver f p 0.00 0.61 0.00 0.07 par:pas; +parquez parquer ver 0.41 2.36 0.02 0.00 imp:pre:2p; +parqué parquer ver m s 0.41 2.36 0.05 0.20 par:pas; +parquée parqué adj f s 0.01 0.14 0.01 0.00 +parquées parquer ver f p 0.41 2.36 0.02 0.20 par:pas; +parqués parquer ver m p 0.41 2.36 0.02 1.28 par:pas; +parr parr nom m s 0.12 0.14 0.12 0.14 +parrain parrain nom m s 10.37 7.64 9.76 7.50 +parrainage parrainage nom m s 0.11 0.14 0.11 0.14 +parrainait parrainer ver 0.96 0.27 0.04 0.14 ind:imp:3s; +parrainant parrainer ver 0.96 0.27 0.01 0.07 par:pre; +parraine parrainer ver 0.96 0.27 0.24 0.00 ind:pre:1s;ind:pre:3s; +parrainent parrainer ver 0.96 0.27 0.01 0.00 ind:pre:3p; +parrainer parrainer ver 0.96 0.27 0.26 0.07 inf; +parrainerai parrainer ver 0.96 0.27 0.01 0.00 ind:fut:1s; +parraineuse parraineur nom f s 0.00 0.07 0.00 0.07 +parrains parrain nom m p 10.37 7.64 0.61 0.14 +parrainé parrainer ver m s 0.96 0.27 0.33 0.00 par:pas; +parrainée parrainer ver f s 0.96 0.27 0.03 0.00 par:pas; +parrainés parrainer ver m p 0.96 0.27 0.03 0.00 par:pas; +parricide parricide nom s 0.56 0.20 0.56 0.20 +parricides parricide adj m p 0.01 0.14 0.00 0.14 +pars partir ver 1111.97 485.68 109.45 14.53 imp:pre:2s;ind:pre:1s;ind:pre:2s; +parsec parsec nom m s 0.27 0.07 0.01 0.00 +parsecs parsec nom m p 0.27 0.07 0.25 0.07 +parsemaient parsemer ver 0.35 7.36 0.00 0.68 ind:imp:3p; +parsemant parsemer ver 0.35 7.36 0.01 0.61 par:pre; +parsemer parsemer ver 0.35 7.36 0.01 0.07 inf; +parsemé parsemer ver m s 0.35 7.36 0.10 2.09 par:pas; +parsemée parsemer ver f s 0.35 7.36 0.19 1.76 par:pas; +parsemées parsemer ver f p 0.35 7.36 0.00 0.54 par:pas; +parsemés parsemer ver m p 0.35 7.36 0.01 0.88 par:pas; +parsi parsi adj m s 0.27 0.00 0.27 0.00 +parsis parsi nom m p 0.02 0.14 0.00 0.14 +parsème parsemer ver 0.35 7.36 0.00 0.14 ind:pre:3s; +parsèment parsemer ver 0.35 7.36 0.03 0.61 ind:pre:3p; +part_time part_time nom f s 0.00 0.14 0.00 0.14 +part part nom s 305.89 320.41 299.31 306.22 +partîmes partir ver 1111.97 485.68 0.26 1.76 ind:pas:1p; +partît partir ver 1111.97 485.68 0.00 0.47 sub:imp:3s; +partage partager ver 79.09 78.99 16.43 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +partagea partager ver 79.09 78.99 0.03 1.22 ind:pas:3s; +partageable partageable adj s 0.01 0.07 0.01 0.07 +partageai partager ver 79.09 78.99 0.00 0.41 ind:pas:1s; +partageaient partager ver 79.09 78.99 0.61 4.32 ind:imp:3p; +partageais partager ver 79.09 78.99 0.80 2.77 ind:imp:1s;ind:imp:2s; +partageait partager ver 79.09 78.99 1.74 11.62 ind:imp:3s; +partageant partager ver 79.09 78.99 0.57 2.03 par:pre; +partagent partager ver 79.09 78.99 3.44 3.11 ind:pre:3p; +partageâmes partager ver 79.09 78.99 0.02 0.07 ind:pas:1p; +partageons partager ver 79.09 78.99 3.48 1.15 imp:pre:1p;ind:pre:1p; +partageât partager ver 79.09 78.99 0.00 0.47 sub:imp:3s; +partager partager ver 79.09 78.99 34.05 24.93 inf; +partagera partager ver 79.09 78.99 1.42 0.14 ind:fut:3s; +partagerai partager ver 79.09 78.99 0.66 0.20 ind:fut:1s; +partageraient partager ver 79.09 78.99 0.15 0.41 cnd:pre:3p; +partagerais partager ver 79.09 78.99 0.61 0.47 cnd:pre:1s;cnd:pre:2s; +partagerait partager ver 79.09 78.99 0.33 0.54 cnd:pre:3s; +partageras partager ver 79.09 78.99 0.29 0.00 ind:fut:2s; +partagerez partager ver 79.09 78.99 0.42 0.00 ind:fut:2p; +partageriez partager ver 79.09 78.99 0.09 0.00 cnd:pre:2p; +partagerions partager ver 79.09 78.99 0.04 0.07 cnd:pre:1p; +partagerons partager ver 79.09 78.99 0.69 0.20 ind:fut:1p; +partageront partager ver 79.09 78.99 0.11 0.20 ind:fut:3p; +partages partager ver 79.09 78.99 1.63 0.14 ind:pre:2s; +partageur partageur adj m s 0.02 0.07 0.02 0.00 +partageurs partageur adj m p 0.02 0.07 0.00 0.07 +partageuse partageux adj f s 0.01 0.07 0.01 0.07 +partageux partageux nom m 0.00 0.07 0.00 0.07 +partagez partager ver 79.09 78.99 2.54 0.20 imp:pre:2p;ind:pre:2p; +partagiez partager ver 79.09 78.99 0.21 0.00 ind:imp:2p; +partagions partager ver 79.09 78.99 0.80 1.28 ind:imp:1p; +partagèrent partager ver 79.09 78.99 0.12 1.01 ind:pas:3p; +partagé partager ver m s 79.09 78.99 5.73 8.51 par:pas; +partagée partager ver f s 79.09 78.99 1.01 3.04 par:pas; +partagées partager ver f p 79.09 78.99 0.21 1.35 par:pas; +partagés partager ver m p 79.09 78.99 0.85 1.49 par:pas; +partaient partir ver 1111.97 485.68 1.58 11.62 ind:imp:3p; +partais partir ver 1111.97 485.68 6.69 5.41 ind:imp:1s;ind:imp:2s; +partait partir ver 1111.97 485.68 8.52 25.81 ind:imp:3s; +partance partance nom f s 0.77 1.76 0.77 1.76 +partant partir ver 1111.97 485.68 6.90 13.04 par:pre; +partante partant adj f s 5.07 1.82 1.25 0.20 +partantes partant adj f p 5.07 1.82 0.19 0.07 +partants partant adj m p 5.07 1.82 0.55 0.20 +parte partir ver 1111.97 485.68 22.87 7.84 sub:pre:1s;sub:pre:3s; +partenaire_robot partenaire_robot nom s 0.01 0.00 0.01 0.00 +partenaire partenaire nom s 28.54 15.00 22.22 10.47 +partenaires partenaire nom p 28.54 15.00 6.33 4.53 +partenariat partenariat nom m s 1.47 0.07 1.47 0.07 +partent partir ver 1111.97 485.68 14.19 8.45 ind:pre:3p; +parterre parterre nom m s 2.76 6.82 2.31 4.05 +parterres parterre nom m p 2.76 6.82 0.45 2.77 +partes partir ver 1111.97 485.68 7.50 0.95 sub:pre:2s; +partez partir ver 1111.97 485.68 73.82 6.62 imp:pre:2p;ind:pre:2p; +parthe parthe adj s 0.00 1.15 0.00 0.95 +parthes parthe adj p 0.00 1.15 0.00 0.20 +parthique parthique adj s 0.00 0.07 0.00 0.07 +parthénogenèse parthénogenèse nom f s 0.04 0.07 0.04 0.07 +parthénogénèse parthénogénèse nom f s 0.00 0.07 0.00 0.07 +parthénogénétique parthénogénétique adj m s 0.15 0.00 0.15 0.00 +parti partir ver m s 1111.97 485.68 162.93 58.72 par:pas; +partial partial adj m s 0.51 1.08 0.20 0.81 +partiale partial adj f s 0.51 1.08 0.30 0.20 +partiales partial adj f p 0.51 1.08 0.00 0.07 +partialité partialité nom f s 0.25 1.22 0.25 1.22 +partiaux partial adj m p 0.51 1.08 0.01 0.00 +participa participer ver 33.56 40.07 0.34 0.61 ind:pas:3s; +participai participer ver 33.56 40.07 0.10 0.54 ind:pas:1s; +participaient participer ver 33.56 40.07 0.21 2.36 ind:imp:3p; +participais participer ver 33.56 40.07 0.18 1.15 ind:imp:1s;ind:imp:2s; +participait participer ver 33.56 40.07 0.30 4.73 ind:imp:3s; +participant participer ver 33.56 40.07 0.38 1.22 par:pre; +participante participant nom f s 1.50 2.23 0.04 0.00 +participantes participant nom f p 1.50 2.23 0.04 0.00 +participants participant nom m p 1.50 2.23 1.23 1.96 +participation participation nom f s 3.17 8.58 3.11 8.51 +participations participation nom f p 3.17 8.58 0.05 0.07 +participative participatif adj f s 0.02 0.00 0.02 0.00 +participe participer ver 33.56 40.07 3.29 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +participent participer ver 33.56 40.07 1.47 2.57 ind:pre:3p; +participer participer ver 33.56 40.07 16.02 15.34 inf; +participera participer ver 33.56 40.07 0.49 0.20 ind:fut:3s; +participerai participer ver 33.56 40.07 0.38 0.00 ind:fut:1s; +participeraient participer ver 33.56 40.07 0.03 0.27 cnd:pre:3p; +participerais participer ver 33.56 40.07 0.09 0.07 cnd:pre:1s; +participerait participer ver 33.56 40.07 0.14 0.20 cnd:pre:3s; +participeras participer ver 33.56 40.07 0.16 0.07 ind:fut:2s; +participerez participer ver 33.56 40.07 0.09 0.00 ind:fut:2p; +participerons participer ver 33.56 40.07 0.34 0.00 ind:fut:1p; +participeront participer ver 33.56 40.07 0.13 0.27 ind:fut:3p; +participes participer ver 33.56 40.07 0.67 0.00 ind:pre:2s; +participez participer ver 33.56 40.07 1.25 0.07 imp:pre:2p;ind:pre:2p; +participiez participer ver 33.56 40.07 0.23 0.14 ind:imp:2p; +participions participer ver 33.56 40.07 0.10 0.27 ind:imp:1p; +participons participer ver 33.56 40.07 0.24 0.34 imp:pre:1p;ind:pre:1p; +participât participer ver 33.56 40.07 0.00 0.47 sub:imp:3s; +participèrent participer ver 33.56 40.07 0.01 0.20 ind:pas:3p; +participé participer ver m s 33.56 40.07 6.94 5.07 par:pas; +participés participer ver m p 33.56 40.07 0.01 0.00 par:pas; +particularisme particularisme nom m s 0.00 0.41 0.00 0.14 +particularismes particularisme nom m p 0.00 0.41 0.00 0.27 +particularisées particulariser ver f p 0.00 0.07 0.00 0.07 par:pas; +particularité particularité nom f s 1.16 5.00 0.82 2.50 +particularités particularité nom f p 1.16 5.00 0.34 2.50 +particule particule nom f s 3.46 5.27 0.66 2.03 +particules particule nom f p 3.46 5.27 2.80 3.24 +particulier particulier adj m s 24.91 53.99 13.88 23.65 +particuliers particulier adj m p 24.91 53.99 3.07 6.08 +particulière particulier adj f s 24.91 53.99 6.63 20.00 +particulièrement particulièrement adv 14.78 36.62 14.78 36.62 +particulières particulier adj f p 24.91 53.99 1.33 4.26 +partie partie nom f s 191.19 211.49 177.81 187.97 +partiel partiel adj m s 3.33 2.09 1.19 0.88 +partielle partiel adj f s 3.33 2.09 1.67 0.81 +partiellement partiellement adv 1.03 2.97 1.03 2.97 +partielles partiel adj f p 3.33 2.09 0.41 0.27 +partiels partiel nom m p 1.10 0.27 0.81 0.00 +parties partie nom f p 191.19 211.49 13.39 23.51 +partiez partir ver 1111.97 485.68 5.93 1.42 ind:imp:2p;sub:pre:2p; +partions partir ver 1111.97 485.68 2.24 4.73 ind:imp:1p; +partir partir ver 1111.97 485.68 388.25 167.77 inf; +partira partir ver 1111.97 485.68 12.15 3.18 ind:fut:3s; +partirai partir ver 1111.97 485.68 11.98 3.99 ind:fut:1s; +partiraient partir ver 1111.97 485.68 0.61 0.81 cnd:pre:3p; +partirais partir ver 1111.97 485.68 3.12 2.30 cnd:pre:1s;cnd:pre:2s; +partirait partir ver 1111.97 485.68 2.37 5.47 cnd:pre:3s; +partiras partir ver 1111.97 485.68 4.25 1.01 ind:fut:2s; +partirent partir ver 1111.97 485.68 1.11 5.20 ind:pas:3p; +partirez partir ver 1111.97 485.68 3.31 0.88 ind:fut:2p; +partiriez partir ver 1111.97 485.68 0.27 0.14 cnd:pre:2p; +partirions partir ver 1111.97 485.68 0.34 0.47 cnd:pre:1p; +partirons partir ver 1111.97 485.68 4.76 1.82 ind:fut:1p; +partiront partir ver 1111.97 485.68 1.84 0.61 ind:fut:3p; +partis partir ver m p 1111.97 485.68 46.29 29.66 ind:pas:1s;ind:pas:2s;par:pas; +partisan partisan nom m s 4.75 12.97 1.04 1.69 +partisane partisan adj f s 1.35 2.77 0.20 0.34 +partisanes partisan adj f p 1.35 2.77 0.10 0.20 +partisans partisan nom m p 4.75 12.97 3.70 11.15 +partisse partir ver 1111.97 485.68 0.00 0.07 sub:imp:1s; +partissent partir ver 1111.97 485.68 0.00 0.07 sub:imp:3p; +partit partir ver 1111.97 485.68 4.17 28.78 ind:pas:3s; +partita partita nom f s 0.00 0.20 0.00 0.14 +partitas partita nom f p 0.00 0.20 0.00 0.07 +partitif partitif adj m s 0.00 0.07 0.00 0.07 +partition partition nom f s 3.49 5.95 2.88 3.72 +partitions partition nom f p 3.49 5.95 0.61 2.23 +partner partner nom m s 0.26 0.00 0.26 0.00 +partons partir ver 1111.97 485.68 50.52 7.97 imp:pre:1p;ind:pre:1p;;imp:pre:1p;ind:pre:1p; +partouse partouse nom f s 0.11 0.07 0.11 0.07 +partouser partouser ver 0.01 0.00 0.01 0.00 inf; +partout partout adv_sup 141.94 179.39 141.94 179.39 +partouzait partouzer ver 0.17 0.34 0.00 0.14 ind:imp:3s; +partouzarde partouzard adj f s 0.00 0.20 0.00 0.07 +partouzardes partouzard adj f p 0.00 0.20 0.00 0.07 +partouzards partouzard nom m p 0.01 0.00 0.01 0.00 +partouze partouze nom f s 2.33 2.16 1.95 1.28 +partouzent partouzer ver 0.17 0.34 0.14 0.07 ind:pre:3p; +partouzer partouzer ver 0.17 0.34 0.04 0.14 inf; +partouzes partouze nom f p 2.33 2.16 0.38 0.88 +partouzeur partouzeur nom m s 0.00 0.20 0.00 0.14 +partouzeurs partouzeur nom m p 0.00 0.20 0.00 0.07 +parts part nom f p 305.89 320.41 6.58 14.19 +parturiente parturiente nom f s 0.00 0.34 0.00 0.27 +parturientes parturiente nom f p 0.00 0.34 0.00 0.07 +parturition parturition nom f s 0.01 0.27 0.01 0.14 +parturitions parturition nom f p 0.01 0.27 0.00 0.14 +party party nom f s 1.54 0.81 1.54 0.81 +paré parer ver m s 30.50 19.66 3.62 2.57 par:pas; +paru paraître ver m s 122.14 448.11 5.92 34.12 par:pas; +parée parer ver f s 30.50 19.66 1.21 2.43 par:pas; +parue paraître ver f s 122.14 448.11 0.36 0.61 par:pas; +parées parer ver f p 30.50 19.66 0.19 1.08 par:pas; +parégorique parégorique adj s 0.04 0.34 0.04 0.34 +paréo paréo nom m s 0.01 0.47 0.01 0.20 +paréos paréo nom m p 0.01 0.47 0.00 0.27 +parure parure nom f s 1.00 4.05 0.48 2.70 +parurent paraître ver 122.14 448.11 0.11 7.36 ind:pas:3p; +parures parure nom f p 1.00 4.05 0.52 1.35 +parés parer ver m p 30.50 19.66 2.31 1.62 par:pas; +parus paraître ver m p 122.14 448.11 0.23 0.54 ind:pas:1s;ind:pas:2s;par:pas; +parésie parésie nom f s 0.01 0.00 0.01 0.00 +parussent paraître ver 122.14 448.11 0.00 0.34 sub:imp:3p; +parut paraître ver 122.14 448.11 1.48 71.28 ind:pas:3s; +parution parution nom f s 0.36 1.15 0.36 1.15 +parvînmes parvenir ver 22.73 156.42 0.00 0.47 ind:pas:1p; +parvînt parvenir ver 22.73 156.42 0.01 1.01 sub:imp:3s; +parvenaient parvenir ver 22.73 156.42 0.04 10.68 ind:imp:3p; +parvenais parvenir ver 22.73 156.42 0.30 5.07 ind:imp:1s; +parvenait parvenir ver 22.73 156.42 0.48 25.88 ind:imp:3s; +parvenant parvenir ver 22.73 156.42 0.04 3.65 par:pre; +parvenez parvenir ver 22.73 156.42 0.48 0.20 ind:pre:2p; +parveniez parvenir ver 22.73 156.42 0.07 0.07 ind:imp:2p; +parvenions parvenir ver 22.73 156.42 0.03 0.61 ind:imp:1p; +parvenir parvenir ver 22.73 156.42 6.45 22.70 inf; +parvenons parvenir ver 22.73 156.42 0.52 0.68 imp:pre:1p;ind:pre:1p; +parvenu parvenir ver m s 22.73 156.42 2.63 14.93 par:pas; +parvenue parvenir ver f s 22.73 156.42 0.98 4.53 par:pas; +parvenues parvenir ver f p 22.73 156.42 0.29 1.22 par:pas; +parvenus parvenir ver m p 22.73 156.42 0.81 5.20 par:pas; +parviendra parvenir ver 22.73 156.42 0.80 1.22 ind:fut:3s; +parviendrai parvenir ver 22.73 156.42 0.41 0.54 ind:fut:1s; +parviendraient parvenir ver 22.73 156.42 0.00 0.54 cnd:pre:3p; +parviendrais parvenir ver 22.73 156.42 0.01 0.61 cnd:pre:1s; +parviendrait parvenir ver 22.73 156.42 0.27 3.18 cnd:pre:3s; +parviendras parvenir ver 22.73 156.42 0.12 0.14 ind:fut:2s; +parviendrez parvenir ver 22.73 156.42 0.34 0.07 ind:fut:2p; +parviendrions parvenir ver 22.73 156.42 0.00 0.20 cnd:pre:1p; +parviendrons parvenir ver 22.73 156.42 0.33 0.27 ind:fut:1p; +parviendront parvenir ver 22.73 156.42 0.24 0.54 ind:fut:3p; +parvienne parvenir ver 22.73 156.42 0.62 2.57 sub:pre:1s;sub:pre:3s; +parviennent parvenir ver 22.73 156.42 0.98 6.22 ind:pre:3p; +parviens parvenir ver 22.73 156.42 1.71 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +parvient parvenir ver 22.73 156.42 2.52 12.36 ind:pre:3s; +parvinrent parvenir ver 22.73 156.42 0.04 3.38 ind:pas:3p; +parvins parvenir ver 22.73 156.42 0.24 2.30 ind:pas:1s; +parvinssent parvenir ver 22.73 156.42 0.00 0.14 sub:imp:3p; +parvint parvenir ver 22.73 156.42 0.98 19.39 ind:pas:3s; +parvis parvis nom m 0.19 6.28 0.19 6.28 +pas_de_porte pas_de_porte nom m 0.00 0.20 0.00 0.20 +pas_je pas_je adv 0.01 0.00 0.01 0.00 +pas pas adv_sup 18189.04 8795.20 18188.15 8795.14 +pascal pascal adj m s 0.79 18.24 0.23 17.64 +pascale pascal adj f s 0.79 18.24 0.56 0.41 +pascales pascal adj f p 0.79 18.24 0.00 0.20 +pascalien pascalien adj m s 0.00 0.27 0.00 0.07 +pascaliennes pascalien adj f p 0.00 0.27 0.00 0.14 +pascaliens pascalien adj m p 0.00 0.27 0.00 0.07 +paseo paseo nom m s 0.00 0.88 0.00 0.88 +pasionaria pasionaria nom f s 0.12 0.27 0.02 0.20 +pasionarias pasionaria nom f p 0.12 0.27 0.10 0.07 +paso_doble paso_doble nom m s 0.00 0.07 0.00 0.07 +paso_doble paso_doble nom m 0.69 0.81 0.69 0.81 +paso paso nom m s 0.23 0.14 0.23 0.00 +pasos paso nom m p 0.23 0.14 0.00 0.14 +pasque pasque con 0.05 1.69 0.05 1.69 +pasquins pasquin nom m p 0.00 0.07 0.00 0.07 +passa passer ver 1495.48 1165.27 3.79 82.50 ind:pas:3s; +passable passable adj s 0.36 1.15 0.34 1.01 +passablement passablement adv 0.51 3.72 0.51 3.72 +passables passable adj f p 0.36 1.15 0.02 0.14 +passade passade nom f s 0.82 1.28 0.72 0.95 +passades passade nom f p 0.82 1.28 0.10 0.34 +passage passage nom m s 44.73 154.39 40.20 136.82 +passager passager nom m s 19.23 13.24 3.75 3.24 +passagers passager nom m p 19.23 13.24 14.23 8.31 +passages passage nom m p 44.73 154.39 4.53 17.57 +passagère passager adj f s 5.09 6.82 1.69 3.31 +passagèrement passagèrement adv 0.00 0.74 0.00 0.74 +passagères passager adj f p 5.09 6.82 0.25 0.74 +passai passer ver 1495.48 1165.27 0.25 10.74 ind:pas:1s; +passaient passer ver 1495.48 1165.27 3.44 42.23 ind:imp:3p; +passais passer ver 1495.48 1165.27 13.12 13.92 ind:imp:1s;ind:imp:2s; +passait passer ver 1495.48 1165.27 28.50 131.28 ind:imp:3s; +passant passer ver 1495.48 1165.27 10.91 60.88 par:pre; +passante passant nom f s 2.76 32.57 0.27 1.08 +passantes passant nom f p 2.76 32.57 0.01 0.61 +passants passant nom m p 2.76 32.57 1.82 24.39 +passas passer ver 1495.48 1165.27 0.00 0.14 ind:pas:2s; +passation passation nom f s 0.29 0.34 0.29 0.34 +passavant passavant nom m s 0.44 0.00 0.44 0.00 +passe_boule passe_boule nom m s 0.00 0.07 0.00 0.07 +passe_boules passe_boules nom m 0.00 0.07 0.00 0.07 +passe_crassane passe_crassane nom f 0.00 0.14 0.00 0.14 +passe_droit passe_droit nom m s 0.25 0.47 0.08 0.27 +passe_droit passe_droit nom m p 0.25 0.47 0.17 0.20 +passe_la_moi passe_la_moi nom f s 0.35 0.07 0.35 0.07 +passe_lacet passe_lacet nom m s 0.00 0.20 0.00 0.07 +passe_lacet passe_lacet nom m p 0.00 0.20 0.00 0.14 +passe_montagne passe_montagne nom m s 0.41 1.69 0.39 1.35 +passe_montagne passe_montagne nom m p 0.41 1.69 0.02 0.34 +passe_muraille passe_muraille nom m 0.01 0.07 0.01 0.07 +passe_partout passe_partout nom m 0.45 1.22 0.45 1.22 +passe_passe passe_passe nom m 0.97 1.15 0.97 1.15 +passe_pied passe_pied nom m s 0.00 0.07 0.00 0.07 +passe_plat passe_plat nom m s 0.04 0.14 0.04 0.14 +passe_rose passe_rose nom f p 0.00 0.07 0.00 0.07 +passe_temps passe_temps nom m 4.21 2.77 4.21 2.77 +passe passer ver 1495.48 1165.27 523.58 185.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +passement passement nom m s 0.14 0.07 0.14 0.07 +passementaient passementer ver 0.01 0.20 0.00 0.14 ind:imp:3p; +passementent passementer ver 0.01 0.20 0.00 0.07 ind:pre:3p; +passementerie passementerie nom f s 0.01 1.01 0.01 0.74 +passementeries passementerie nom f p 0.01 1.01 0.00 0.27 +passementier passementier nom m s 0.10 0.14 0.10 0.07 +passementière passementier nom f s 0.10 0.14 0.00 0.07 +passementé passementer ver m s 0.01 0.20 0.01 0.00 par:pas; +passent passer ver 1495.48 1165.27 27.56 37.91 ind:pre:3p;sub:pre:3p; +passepoil passepoil nom m s 0.01 0.14 0.01 0.14 +passeport passeport nom m s 25.55 10.00 19.81 7.16 +passeports passeport nom m p 25.55 10.00 5.75 2.84 +passer passer ver 1495.48 1165.27 345.67 288.78 inf;; +passera passer ver 1495.48 1165.27 39.92 13.99 ind:fut:3s; +passerai passer ver 1495.48 1165.27 15.96 4.39 ind:fut:1s; +passeraient passer ver 1495.48 1165.27 1.19 3.51 cnd:pre:3p; +passerais passer ver 1495.48 1165.27 3.77 2.91 cnd:pre:1s;cnd:pre:2s; +passerait passer ver 1495.48 1165.27 7.09 12.36 cnd:pre:3s; +passeras passer ver 1495.48 1165.27 4.39 1.15 ind:fut:2s; +passereau passereau nom m s 0.55 0.95 0.25 0.34 +passereaux passereau nom m p 0.55 0.95 0.30 0.61 +passerelle passerelle nom f s 4.49 11.49 4.41 8.45 +passerelles passerelle nom f p 4.49 11.49 0.09 3.04 +passerez passer ver 1495.48 1165.27 5.10 1.82 ind:fut:2p; +passeriez passer ver 1495.48 1165.27 0.97 0.20 cnd:pre:2p; +passerions passer ver 1495.48 1165.27 0.22 0.34 cnd:pre:1p; +passerons passer ver 1495.48 1165.27 2.32 2.30 ind:fut:1p; +passeront passer ver 1495.48 1165.27 3.58 1.96 ind:fut:3p; +passeroses passerose nom f p 0.00 0.07 0.00 0.07 +passes passer ver 1495.48 1165.27 21.65 4.39 ind:pre:2s;sub:pre:2s; +passeur passeur nom m s 2.24 2.77 1.65 1.96 +passeurs passeur nom m p 2.24 2.77 0.56 0.74 +passeuse passeur nom f s 2.24 2.77 0.04 0.07 +passez passer ver 1495.48 1165.27 52.84 6.62 imp:pre:2p;ind:pre:2p; +passible passible adj m s 1.04 0.61 0.82 0.34 +passibles passible adj m p 1.04 0.61 0.22 0.27 +passiez passer ver 1495.48 1165.27 2.19 1.08 ind:imp:2p;sub:pre:2p; +passif passif adj m s 4.00 7.23 1.89 1.82 +passiflore passiflore nom f s 0.14 0.07 0.14 0.07 +passifs passif adj m p 4.00 7.23 0.36 0.74 +passim passim adv 0.00 0.07 0.00 0.07 +passing passing nom m s 0.04 0.00 0.04 0.00 +passion passion nom f s 33.78 87.64 30.71 68.72 +passionna passionner ver 5.75 17.50 0.01 0.20 ind:pas:3s; +passionnai passionner ver 5.75 17.50 0.00 0.27 ind:pas:1s; +passionnaient passionner ver 5.75 17.50 0.12 0.27 ind:imp:3p; +passionnais passionner ver 5.75 17.50 0.00 0.34 ind:imp:1s;ind:imp:2s; +passionnait passionner ver 5.75 17.50 0.11 2.57 ind:imp:3s; +passionnant passionnant adj m s 8.93 7.03 6.17 4.19 +passionnante passionnant adj f s 8.93 7.03 2.23 1.42 +passionnantes passionnant adj f p 8.93 7.03 0.30 0.95 +passionnants passionnant adj m p 8.93 7.03 0.23 0.47 +passionne passionner ver 5.75 17.50 1.16 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +passionnel passionnel adj m s 1.43 3.92 1.05 1.89 +passionnelle passionnel adj f s 1.43 3.92 0.13 1.08 +passionnellement passionnellement adv 0.00 0.07 0.00 0.07 +passionnelles passionnel adj f p 1.43 3.92 0.02 0.34 +passionnels passionnel adj m p 1.43 3.92 0.22 0.61 +passionnent passionner ver 5.75 17.50 0.34 0.68 ind:pre:3p; +passionner passionner ver 5.75 17.50 0.41 1.76 inf; +passionnera passionner ver 5.75 17.50 0.01 0.14 ind:fut:3s; +passionnerait passionner ver 5.75 17.50 0.03 0.07 cnd:pre:3s; +passionneras passionner ver 5.75 17.50 0.01 0.00 ind:fut:2s; +passionnons passionner ver 5.75 17.50 0.00 0.14 ind:pre:1p; +passionnèrent passionner ver 5.75 17.50 0.00 0.14 ind:pas:3p; +passionné passionner ver m s 5.75 17.50 1.84 3.58 par:pas; +passionnée passionné adj f s 4.14 14.80 1.44 5.74 +passionnées passionné adj f p 4.14 14.80 0.24 2.09 +passionnément passionnément adv 1.38 9.39 1.38 9.39 +passionnés passionné adj m p 4.14 14.80 0.70 2.03 +passions passion nom f p 33.78 87.64 3.07 18.92 +passive passif adj f s 4.00 7.23 1.73 4.32 +passivement passivement adv 0.29 1.08 0.29 1.08 +passiver passiver ver 0.14 0.27 0.14 0.00 inf; +passives passif adj f p 4.00 7.23 0.03 0.34 +passiveté passiveté nom f s 0.00 0.07 0.00 0.07 +passivité passivité nom f s 0.46 3.38 0.46 3.38 +passoire passoire nom f s 1.44 2.23 1.27 2.09 +passoires passoire nom f p 1.44 2.23 0.17 0.14 +passâmes passer ver 1495.48 1165.27 0.46 3.85 ind:pas:1p; +passons passer ver 1495.48 1165.27 17.85 9.66 imp:pre:1p;ind:pre:1p; +passât passer ver 1495.48 1165.27 0.00 1.35 sub:imp:3s; +passâtes passer ver 1495.48 1165.27 0.00 0.07 ind:pas:2p; +passèrent passer ver 1495.48 1165.27 2.13 20.07 ind:pas:3p; +passé passer ver m s 1495.48 1165.27 297.63 157.09 par:pas;par:pas;par:pas;par:pas; +passée passer ver f s 1495.48 1165.27 32.14 25.68 par:pas; +passées passer ver f p 1495.48 1165.27 7.98 11.89 par:pas; +passéiste passéiste adj f s 0.16 0.07 0.16 0.07 +passés passer ver m p 1495.48 1165.27 18.16 18.18 par:pas; +past past nom m s 0.58 0.00 0.58 0.00 +pastaga pastaga nom m s 0.00 1.69 0.00 1.35 +pastagas pastaga nom m p 0.00 1.69 0.00 0.34 +pastel pastel nom m s 0.55 1.89 0.40 1.01 +pastels pastel nom m p 0.55 1.89 0.14 0.88 +pastenague pastenague nom f s 0.04 0.00 0.04 0.00 +pasteur pasteur nom m s 17.74 11.35 16.61 10.07 +pasteurella pasteurella nom f s 0.02 0.00 0.02 0.00 +pasteurisation pasteurisation nom f s 0.10 0.14 0.10 0.14 +pasteuriser pasteuriser ver 0.00 0.07 0.00 0.07 inf; +pasteurisé pasteurisé adj m s 0.05 0.41 0.05 0.14 +pasteurisée pasteurisé adj f s 0.05 0.41 0.00 0.20 +pasteurisés pasteurisé adj m p 0.05 0.41 0.00 0.07 +pasteurs pasteur nom m p 17.74 11.35 1.13 1.28 +pasticha pasticher ver 0.00 0.41 0.00 0.07 ind:pas:3s; +pastichai pasticher ver 0.00 0.41 0.00 0.07 ind:pas:1s; +pastichait pasticher ver 0.00 0.41 0.00 0.07 ind:imp:3s; +pastiche pastiche nom m s 0.03 1.01 0.03 0.68 +pasticher pasticher ver 0.00 0.41 0.00 0.14 inf; +pastiches pastiche nom m p 0.03 1.01 0.00 0.34 +pasticheur pasticheur nom m s 0.00 0.14 0.00 0.14 +pastiché pasticher ver m s 0.00 0.41 0.00 0.07 par:pas; +pastille pastille nom f s 1.51 5.81 0.56 1.35 +pastiller pastiller ver 0.01 0.00 0.01 0.00 inf; +pastilles pastille nom f p 1.51 5.81 0.95 4.46 +pastis pastis nom m 1.43 4.73 1.43 4.73 +pastophore pastophore nom m s 0.00 0.14 0.00 0.14 +pastoral pastoral adj m s 0.57 1.08 0.14 0.27 +pastorale pastoral adj f s 0.57 1.08 0.33 0.54 +pastorales pastoral adj f p 0.57 1.08 0.10 0.20 +pastoraux pastoral adj m p 0.57 1.08 0.00 0.07 +pastour pastour nom m s 0.00 0.07 0.00 0.07 +pastoureau pastoureau nom m s 0.02 0.41 0.02 0.14 +pastoureaux pastoureau nom m p 0.02 0.41 0.00 0.07 +pastourelle pastoureau nom f s 0.02 0.41 0.00 0.07 +pastourelles pastoureau nom f p 0.02 0.41 0.00 0.14 +pastèque pastèque nom f s 4.16 2.50 2.39 1.62 +pastèques pastèque nom f p 4.16 2.50 1.77 0.88 +pat pat adj m s 0.46 0.34 0.46 0.34 +patache patache nom f s 0.30 0.20 0.30 0.20 +patachon patachon nom m s 0.16 0.54 0.16 0.54 +patafiole patafioler ver 0.04 0.00 0.04 0.00 imp:pre:2s; +patagon patagon adj m s 0.01 0.07 0.01 0.07 +patagonien patagonien adj m s 0.02 0.07 0.02 0.07 +patagons patagon nom m p 0.00 0.07 0.00 0.07 +patapouf patapouf ono 0.03 0.00 0.03 0.00 +patapoufs patapouf nom m p 0.17 0.34 0.00 0.07 +pataquès pataquès nom m 0.02 0.34 0.02 0.34 +patarin patarin nom m s 0.00 0.14 0.00 0.14 +patata patata ono 0.32 1.15 0.32 1.15 +patate patate nom f s 14.47 10.74 4.59 3.38 +patates patate nom f p 14.47 10.74 9.88 7.36 +patati patati ono 0.33 1.76 0.33 1.76 +patatras patatras ono 0.04 0.54 0.04 0.54 +pataud pataud adj m s 0.03 1.35 0.01 0.34 +pataude pataud adj f s 0.03 1.35 0.01 0.41 +pataudes pataud adj f p 0.03 1.35 0.00 0.34 +patauds pataud adj m p 0.03 1.35 0.01 0.27 +pataugas pataugas nom m 0.00 0.68 0.00 0.68 +patauge patauger ver 1.69 8.99 0.42 1.35 ind:pre:1s;ind:pre:3s; +pataugea patauger ver 1.69 8.99 0.00 0.41 ind:pas:3s; +pataugeaient patauger ver 1.69 8.99 0.01 0.81 ind:imp:3p; +pataugeais patauger ver 1.69 8.99 0.02 0.07 ind:imp:1s; +pataugeait patauger ver 1.69 8.99 0.18 0.74 ind:imp:3s; +pataugeant patauger ver 1.69 8.99 0.03 1.96 par:pre; +pataugent patauger ver 1.69 8.99 0.32 0.54 ind:pre:3p; +pataugeoire pataugeoire nom f s 0.04 0.00 0.04 0.00 +pataugeons patauger ver 1.69 8.99 0.04 0.34 imp:pre:1p;ind:pre:1p; +patauger patauger ver 1.69 8.99 0.48 1.89 inf; +pataugera patauger ver 1.69 8.99 0.01 0.00 ind:fut:3s; +pataugerais patauger ver 1.69 8.99 0.01 0.00 cnd:pre:1s; +pataugerons patauger ver 1.69 8.99 0.00 0.07 ind:fut:1p; +patauges patauger ver 1.69 8.99 0.04 0.07 ind:pre:2s; +pataugez patauger ver 1.69 8.99 0.06 0.14 imp:pre:2p;ind:pre:2p; +pataugis pataugis nom m 0.00 0.07 0.00 0.07 +pataugèrent patauger ver 1.69 8.99 0.00 0.14 ind:pas:3p; +pataugé patauger ver m s 1.69 8.99 0.05 0.47 par:pas; +patch patch nom m s 1.11 0.14 0.88 0.07 +patches patch nom m p 1.11 0.14 0.02 0.07 +patchouli patchouli nom m s 0.31 0.20 0.31 0.20 +patchs patch nom m p 1.11 0.14 0.22 0.00 +patchwork patchwork nom m s 0.00 0.61 0.00 0.61 +patelin patelin nom m s 1.62 3.51 1.56 3.31 +pateline patelin adj f s 0.63 0.47 0.01 0.07 +patelins patelin nom m p 1.62 3.51 0.05 0.20 +patellaire patellaire adj m s 0.01 0.00 0.01 0.00 +patelles patelle nom f p 0.00 0.27 0.00 0.27 +patenôtres patenôtre nom f p 0.00 0.41 0.00 0.41 +patent patent adj m s 0.41 1.28 0.14 0.54 +patente patent adj f s 0.41 1.28 0.14 0.54 +patentes patente nom f p 0.16 0.41 0.02 0.14 +patents patent adj m p 0.41 1.28 0.11 0.07 +patenté patenté adj m s 0.20 1.42 0.14 0.61 +patentée patenté adj f s 0.20 1.42 0.01 0.00 +patentées patenté adj f p 0.20 1.42 0.00 0.20 +patentés patenté adj m p 0.20 1.42 0.04 0.61 +pater_familias pater_familias nom m 0.03 0.07 0.03 0.07 +pater_noster pater_noster nom m s 0.10 0.41 0.10 0.41 +pater pater nom m 0.56 1.62 0.56 1.62 +paternalisme paternalisme nom m s 0.12 0.74 0.12 0.74 +paternaliste paternaliste adj s 0.17 0.27 0.16 0.20 +paternalistes paternaliste adj p 0.17 0.27 0.01 0.07 +paterne paterne adj m s 0.00 0.47 0.00 0.47 +paternel paternel adj m s 3.29 13.92 1.33 5.00 +paternelle paternel adj f s 3.29 13.92 1.48 6.82 +paternellement paternellement adv 0.01 0.54 0.01 0.54 +paternelles paternel adj f p 3.29 13.92 0.16 0.88 +paternels paternel adj m p 3.29 13.92 0.32 1.22 +paternité paternité nom f s 1.98 3.11 1.97 3.04 +paternités paternité nom f p 1.98 3.11 0.01 0.07 +pathogène pathogène adj s 0.58 0.14 0.58 0.14 +pathogénique pathogénique adj m s 0.01 0.00 0.01 0.00 +pathologie pathologie nom f s 1.58 0.20 1.58 0.20 +pathologique pathologique adj s 1.26 1.22 1.05 1.08 +pathologiquement pathologiquement adv 0.08 0.14 0.08 0.14 +pathologiques pathologique adj m p 1.26 1.22 0.21 0.14 +pathologiste pathologiste nom s 0.29 0.07 0.29 0.07 +pathos pathos nom m 0.38 0.68 0.38 0.68 +pathétique pathétique adj s 9.17 11.08 7.92 8.18 +pathétiquement pathétiquement adv 0.05 0.41 0.05 0.41 +pathétiques pathétique adj p 9.17 11.08 1.25 2.91 +pathétisme pathétisme nom m s 0.01 0.14 0.01 0.14 +patibulaire patibulaire adj s 0.03 1.96 0.01 0.95 +patibulaires patibulaire adj p 0.03 1.96 0.02 1.01 +patiemment patiemment adv 1.75 11.15 1.75 11.15 +patience patience nom f s 30.68 33.58 29.93 32.97 +patiences patience nom f p 30.68 33.58 0.75 0.61 +patient patient nom m s 61.69 10.00 29.58 4.05 +patienta patienter ver 10.10 8.45 0.01 0.20 ind:pas:3s; +patientai patienter ver 10.10 8.45 0.00 0.07 ind:pas:1s; +patientaient patienter ver 10.10 8.45 0.00 0.34 ind:imp:3p; +patientait patienter ver 10.10 8.45 0.03 0.68 ind:imp:3s; +patientant patienter ver 10.10 8.45 0.01 0.07 par:pre; +patiente patient nom f s 61.69 10.00 7.69 2.16 +patientent patienter ver 10.10 8.45 0.04 0.14 ind:pre:3p; +patienter patienter ver 10.10 8.45 4.71 4.66 inf; +patientera patienter ver 10.10 8.45 0.05 0.00 ind:fut:3s; +patienteraient patienter ver 10.10 8.45 0.00 0.07 cnd:pre:3p; +patienterait patienter ver 10.10 8.45 0.00 0.07 cnd:pre:3s; +patienteras patienter ver 10.10 8.45 0.00 0.07 ind:fut:2s; +patienterez patienter ver 10.10 8.45 0.23 0.07 ind:fut:2p; +patienterons patienter ver 10.10 8.45 0.01 0.00 ind:fut:1p; +patientes patient nom f p 61.69 10.00 1.94 0.27 +patientez patienter ver 10.10 8.45 2.82 0.47 imp:pre:2p;ind:pre:2p; +patientions patienter ver 10.10 8.45 0.00 0.07 ind:imp:1p; +patientons patienter ver 10.10 8.45 0.14 0.07 imp:pre:1p;ind:pre:1p; +patients patient nom m p 61.69 10.00 22.49 3.51 +patientèrent patienter ver 10.10 8.45 0.01 0.07 ind:pas:3p; +patienté patienter ver m s 10.10 8.45 0.54 0.27 par:pas; +patin patin nom m s 3.77 5.61 1.12 1.35 +patina patiner ver 2.54 5.27 0.02 0.07 ind:pas:3s; +patinage patinage nom m s 1.25 0.07 1.25 0.07 +patinaient patiner ver 2.54 5.27 0.00 0.34 ind:imp:3p; +patinais patiner ver 2.54 5.27 0.15 0.00 ind:imp:1s; +patinait patiner ver 2.54 5.27 0.06 0.74 ind:imp:3s; +patinant patiner ver 2.54 5.27 0.01 0.20 par:pre; +patine patiner ver 2.54 5.27 0.36 0.34 ind:pre:1s;ind:pre:3s; +patinent patiner ver 2.54 5.27 0.16 0.41 ind:pre:3p; +patiner patiner ver 2.54 5.27 1.26 0.27 inf; +patinerais patiner ver 2.54 5.27 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +patinerons patiner ver 2.54 5.27 0.00 0.07 ind:fut:1p; +patines patiner ver 2.54 5.27 0.03 0.00 ind:pre:2s; +patinette patinette nom f s 0.02 0.27 0.01 0.20 +patinettes patinette nom f p 0.02 0.27 0.01 0.07 +patineur patineur nom m s 0.67 1.28 0.11 0.34 +patineurs patineur nom m p 0.67 1.28 0.27 0.74 +patineuse patineur nom f s 0.67 1.28 0.29 0.14 +patineuses patineuse nom f p 0.16 0.00 0.16 0.00 +patinez patiner ver 2.54 5.27 0.10 0.00 imp:pre:2p;ind:pre:2p; +patiniez patiner ver 2.54 5.27 0.02 0.00 ind:imp:2p; +patinions patiner ver 2.54 5.27 0.00 0.07 ind:imp:1p; +patinoire patinoire nom f s 1.37 0.41 1.21 0.41 +patinoires patinoire nom f p 1.37 0.41 0.16 0.00 +patinons patiner ver 2.54 5.27 0.03 0.00 imp:pre:1p;ind:pre:1p; +patins patin nom m p 3.77 5.61 2.65 4.26 +patiné patiner ver m s 2.54 5.27 0.27 1.01 par:pas; +patinée patiner ver f s 2.54 5.27 0.01 0.54 par:pas; +patinées patiner ver f p 2.54 5.27 0.02 0.68 par:pas; +patinés patiner ver m p 2.54 5.27 0.01 0.54 par:pas; +patio patio nom m s 2.02 6.42 2.02 4.46 +patios patio nom m p 2.02 6.42 0.00 1.96 +patoche patoche nom f s 0.01 0.14 0.01 0.07 +patoches patoche nom f p 0.01 0.14 0.00 0.07 +patois patois nom m 0.85 8.58 0.85 8.58 +patoisante patoisant adj f s 0.00 0.14 0.00 0.14 +patoise patoiser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +patouillard patouillard nom m s 0.00 0.07 0.00 0.07 +patouille patouiller ver 0.03 0.14 0.03 0.07 imp:pre:2s;ind:pre:3s; +patouillons patouiller ver 0.03 0.14 0.00 0.07 ind:pre:1p; +patraque patraque adj s 0.97 0.81 0.97 0.81 +patri patri adv 0.15 0.07 0.15 0.07 +patriarcal patriarcal adj m s 0.34 1.01 0.04 0.41 +patriarcale patriarcal adj f s 0.34 1.01 0.29 0.27 +patriarcales patriarcal adj f p 0.34 1.01 0.01 0.20 +patriarcat patriarcat nom m s 0.15 0.34 0.15 0.27 +patriarcats patriarcat nom m p 0.15 0.34 0.00 0.07 +patriarcaux patriarcal adj m p 0.34 1.01 0.00 0.14 +patriarche patriarche nom m s 1.30 4.59 1.04 4.12 +patriarches patriarche nom m p 1.30 4.59 0.26 0.47 +patriarchie patriarchie nom f s 0.02 0.00 0.02 0.00 +patriciat patriciat nom m s 0.00 0.07 0.00 0.07 +patricien patricien nom m s 0.21 0.54 0.05 0.20 +patricienne patricien nom f s 0.21 0.54 0.10 0.00 +patriciennes patricien adj f p 0.05 0.88 0.01 0.34 +patriciens patricien nom m p 0.21 0.54 0.06 0.27 +patrie patrie nom f s 23.36 29.19 23.36 28.65 +patries patrie nom f p 23.36 29.19 0.00 0.54 +patrilinéaire patrilinéaire adj f s 0.00 0.07 0.00 0.07 +patrimoine patrimoine nom m s 2.34 2.97 2.19 2.91 +patrimoines patrimoine nom m p 2.34 2.97 0.15 0.07 +patrimonial patrimonial adj m s 0.00 0.34 0.00 0.34 +patriotard patriotard adj m s 0.00 0.34 0.00 0.27 +patriotardes patriotard adj f p 0.00 0.34 0.00 0.07 +patriotards patriotard nom m p 0.00 0.07 0.00 0.07 +patriote patriote nom s 3.29 5.47 1.96 1.76 +patriotes patriote nom p 3.29 5.47 1.33 3.72 +patriotique patriotique adj s 1.95 5.34 1.73 3.31 +patriotiquement patriotiquement adv 0.00 0.07 0.00 0.07 +patriotiques patriotique adj p 1.95 5.34 0.21 2.03 +patriotisme patriotisme nom m s 2.54 3.65 2.54 3.65 +patron patron nom m s 141.18 132.03 122.44 93.85 +patronage patronage nom m s 0.07 2.43 0.07 1.96 +patronages patronage nom m p 0.07 2.43 0.00 0.47 +patronal patronal adj m s 0.30 0.61 0.01 0.07 +patronale patronal adj f s 0.30 0.61 0.14 0.20 +patronales patronal adj f p 0.30 0.61 0.14 0.20 +patronat patronat nom m s 0.51 0.47 0.51 0.47 +patronaux patronal adj m p 0.30 0.61 0.02 0.14 +patronna patronner ver 0.16 0.81 0.01 0.00 ind:pas:3s; +patronne patron nom f s 141.18 132.03 11.23 26.82 +patronner patronner ver 0.16 0.81 0.00 0.14 inf; +patronnes patronne nom f p 0.26 0.00 0.26 0.00 +patronnesse patronnesse adj f s 0.22 0.95 0.14 0.61 +patronnesses patronnesse adj f p 0.22 0.95 0.07 0.34 +patronné patronner ver m s 0.16 0.81 0.03 0.14 par:pas; +patronnée patronner ver f s 0.16 0.81 0.03 0.07 par:pas; +patronnés patronner ver m p 0.16 0.81 0.00 0.07 par:pas; +patrons patron nom m p 141.18 132.03 7.50 10.88 +patronyme patronyme nom m s 0.28 3.24 0.25 2.50 +patronymes patronyme nom m p 0.28 3.24 0.03 0.74 +patronymique patronymique adj m s 0.20 0.20 0.20 0.07 +patronymiques patronymique adj m p 0.20 0.20 0.00 0.14 +patrouilla patrouiller ver 2.54 2.97 0.00 0.14 ind:pas:3s; +patrouillaient patrouiller ver 2.54 2.97 0.14 0.95 ind:imp:3p; +patrouillais patrouiller ver 2.54 2.97 0.08 0.00 ind:imp:1s; +patrouillait patrouiller ver 2.54 2.97 0.12 0.41 ind:imp:3s; +patrouillant patrouiller ver 2.54 2.97 0.09 0.34 par:pre; +patrouille patrouille nom f s 14.45 10.47 10.83 6.42 +patrouillent patrouiller ver 2.54 2.97 0.28 0.27 ind:pre:3p; +patrouiller patrouiller ver 2.54 2.97 1.02 0.41 inf; +patrouillerai patrouiller ver 2.54 2.97 0.03 0.00 ind:fut:1s; +patrouilleras patrouiller ver 2.54 2.97 0.01 0.00 ind:fut:2s; +patrouillerez patrouiller ver 2.54 2.97 0.02 0.00 ind:fut:2p; +patrouilleront patrouiller ver 2.54 2.97 0.01 0.00 ind:fut:3p; +patrouilles patrouille nom f p 14.45 10.47 3.61 4.05 +patrouilleur patrouilleur nom m s 1.43 0.47 1.15 0.07 +patrouilleurs patrouilleur nom m p 1.43 0.47 0.28 0.41 +patrouillez patrouiller ver 2.54 2.97 0.12 0.00 imp:pre:2p;ind:pre:2p; +patrouilliez patrouiller ver 2.54 2.97 0.04 0.00 ind:imp:2p; +patrouillions patrouiller ver 2.54 2.97 0.01 0.00 ind:imp:1p; +patrouillé patrouiller ver m s 2.54 2.97 0.12 0.07 par:pas; +patrouillée patrouiller ver f s 2.54 2.97 0.02 0.00 par:pas; +patrouillées patrouiller ver f p 2.54 2.97 0.02 0.14 par:pas; +patte patte nom f s 34.60 85.14 6.45 21.28 +pattemouille pattemouille nom f s 0.14 0.41 0.14 0.34 +pattemouilles pattemouille nom f p 0.14 0.41 0.00 0.07 +pattern pattern nom m s 0.06 0.00 0.06 0.00 +pattes patte nom f p 34.60 85.14 28.16 63.85 +patène patène nom f s 0.10 0.34 0.10 0.27 +patènes patène nom f p 0.10 0.34 0.00 0.07 +patère patère nom f s 0.08 1.76 0.08 1.08 +patères patère nom f p 0.08 1.76 0.00 0.68 +pattu pattu adj m s 0.00 0.14 0.00 0.07 +pattée patté adj f s 0.00 0.14 0.00 0.14 +pattus pattu adj m p 0.00 0.14 0.00 0.07 +paturon paturon nom m s 0.00 1.42 0.00 0.41 +paturons paturon nom m p 0.00 1.42 0.00 1.01 +pauchouse pauchouse nom f s 0.00 0.20 0.00 0.20 +pauline pauline nom f s 0.00 0.07 0.00 0.07 +paulinienne paulinien adj f s 0.00 0.07 0.00 0.07 +paulownias paulownia nom m p 0.00 0.07 0.00 0.07 +pauma paumer ver 4.27 8.92 0.00 0.14 ind:pas:3s; +paumais paumer ver 4.27 8.92 0.00 0.20 ind:imp:1s; +paumait paumer ver 4.27 8.92 0.00 0.20 ind:imp:3s; +paumant paumer ver 4.27 8.92 0.00 0.34 par:pre; +paume paume nom f s 3.17 35.47 2.18 22.57 +paumelle paumelle nom f s 0.00 0.14 0.00 0.07 +paumelles paumelle nom f p 0.00 0.14 0.00 0.07 +paument paumer ver 4.27 8.92 0.01 0.20 ind:pre:3p; +paumer paumer ver 4.27 8.92 0.38 1.82 inf; +paumes paume nom f p 3.17 35.47 0.99 12.91 +paumé paumer ver m s 4.27 8.92 2.58 2.97 par:pas; +paumée paumer ver f s 4.27 8.92 0.46 0.61 par:pas; +paumées paumé adj f p 2.46 2.84 0.02 0.27 +paumés paumé nom m p 2.23 5.54 0.90 2.23 +paupiette paupiette nom f s 0.19 0.07 0.02 0.00 +paupiettes paupiette nom f p 0.19 0.07 0.17 0.07 +paupière paupière nom f s 4.75 63.45 0.97 7.03 +paupières paupière nom f p 4.75 63.45 3.77 56.42 +paupérisation paupérisation nom f s 0.00 0.27 0.00 0.27 +paupérise paupériser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +paupérisme paupérisme nom m s 0.00 0.20 0.00 0.20 +pause_café pause_café nom f s 0.29 0.14 0.26 0.07 +pause pause nom f s 28.24 11.89 27.30 10.14 +pauser pauser ver 0.02 0.07 0.01 0.07 inf; +pause_café pause_café nom f p 0.29 0.14 0.03 0.07 +pauses_repas pauses_repas nom f p 0.01 0.07 0.01 0.07 +pauses pause nom f p 28.24 11.89 0.94 1.76 +pausez pauser ver 0.02 0.07 0.01 0.00 imp:pre:2p; +pauvre pauvre adj s 178.03 187.77 148.93 148.78 +pauvrement pauvrement adv 0.31 1.89 0.31 1.89 +pauvres pauvre adj p 178.03 187.77 29.09 38.99 +pauvresse pauvresse nom f s 0.34 0.54 0.23 0.47 +pauvresses pauvresse nom f p 0.34 0.54 0.11 0.07 +pauvret pauvret nom m s 0.05 0.41 0.05 0.14 +pauvrets pauvret nom m p 0.05 0.41 0.00 0.27 +pauvrette pauvrette nom f s 1.16 0.95 1.16 0.81 +pauvrettes pauvrette nom f p 1.16 0.95 0.00 0.14 +pauvreté pauvreté nom f s 7.04 10.27 7.04 10.14 +pauvretés pauvreté nom f p 7.04 10.27 0.00 0.14 +pavage pavage nom m s 0.04 1.42 0.04 1.42 +pavait paver ver 0.33 1.01 0.00 0.07 ind:imp:3s; +pavana pavaner ver 1.53 2.23 0.00 0.14 ind:pas:3s; +pavanaient pavaner ver 1.53 2.23 0.03 0.41 ind:imp:3p; +pavanait pavaner ver 1.53 2.23 0.09 0.54 ind:imp:3s; +pavanant pavaner ver 1.53 2.23 0.10 0.27 par:pre; +pavane pavaner ver 1.53 2.23 0.47 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pavanent pavaner ver 1.53 2.23 0.07 0.14 ind:pre:3p; +pavaner pavaner ver 1.53 2.23 0.65 0.34 inf; +pavanera pavaner ver 1.53 2.23 0.01 0.00 ind:fut:3s; +pavanerez pavaner ver 1.53 2.23 0.01 0.07 ind:fut:2p; +pavanes pavaner ver 1.53 2.23 0.08 0.00 ind:pre:2s; +pavanons pavaner ver 1.53 2.23 0.00 0.07 ind:pre:1p; +pavané pavaner ver m s 1.53 2.23 0.03 0.00 par:pas; +pave paver ver 0.33 1.01 0.14 0.14 ind:pre:1s;ind:pre:3s; +pavement pavement nom m s 0.00 1.76 0.00 1.28 +pavements pavement nom m p 0.00 1.76 0.00 0.47 +paver paver ver 0.33 1.01 0.06 0.07 inf; +paveton paveton nom m s 0.00 0.47 0.00 0.34 +pavetons paveton nom m p 0.00 0.47 0.00 0.14 +paveur paveur nom m s 0.00 0.20 0.00 0.14 +paveurs paveur nom m p 0.00 0.20 0.00 0.07 +pavez paver ver 0.33 1.01 0.02 0.07 imp:pre:2p; +pavillon pavillon nom m s 5.95 25.61 5.39 20.07 +pavillonnaire pavillonnaire adj s 0.03 0.20 0.03 0.14 +pavillonnaires pavillonnaire adj m p 0.03 0.20 0.00 0.07 +pavillons pavillon nom m p 5.95 25.61 0.56 5.54 +pavlovien pavlovien adj m s 0.08 0.27 0.05 0.27 +pavlovienne pavlovien adj f s 0.08 0.27 0.03 0.00 +pavois pavois nom m 0.01 1.49 0.01 1.49 +pavoisa pavoiser ver 0.38 3.65 0.00 0.14 ind:pas:3s; +pavoisaient pavoiser ver 0.38 3.65 0.00 0.07 ind:imp:3p; +pavoisait pavoiser ver 0.38 3.65 0.14 0.07 ind:imp:3s; +pavoise pavoiser ver 0.38 3.65 0.03 0.34 imp:pre:2s;ind:pre:3s; +pavoisement pavoisement nom m s 0.00 0.07 0.00 0.07 +pavoisent pavoiser ver 0.38 3.65 0.03 0.54 ind:pre:3p; +pavoiser pavoiser ver 0.38 3.65 0.17 0.61 inf; +pavoisera pavoiser ver 0.38 3.65 0.01 0.00 ind:fut:3s; +pavoiseraient pavoiser ver 0.38 3.65 0.00 0.07 cnd:pre:3p; +pavoisé pavoiser ver m s 0.38 3.65 0.00 0.54 par:pas; +pavoisée pavoiser ver f s 0.38 3.65 0.00 0.61 par:pas; +pavoisées pavoiser ver f p 0.38 3.65 0.00 0.27 par:pas; +pavoisés pavoiser ver m p 0.38 3.65 0.00 0.41 par:pas; +pavot pavot nom m s 0.85 1.49 0.74 1.15 +pavots pavot nom m p 0.85 1.49 0.11 0.34 +pavé pavé nom m s 3.00 26.62 2.08 13.24 +pavée pavé adj f s 0.92 5.68 0.33 3.51 +pavées pavé adj f p 0.92 5.68 0.17 0.74 +pavés pavé nom m p 3.00 26.62 0.92 13.38 +pax_americana pax_americana nom f 0.01 0.00 0.01 0.00 +paxon paxon nom m s 0.07 0.07 0.07 0.07 +paya payer ver 416.67 150.20 0.76 5.14 ind:pas:3s; +payable payable adj s 0.74 0.61 0.58 0.34 +payables payable adj m p 0.74 0.61 0.16 0.27 +payai payer ver 416.67 150.20 0.01 0.41 ind:pas:1s; +payaient payer ver 416.67 150.20 0.66 2.50 ind:imp:3p; +payais payer ver 416.67 150.20 1.07 1.08 ind:imp:1s;ind:imp:2s; +payait payer ver 416.67 150.20 5.12 8.85 ind:imp:3s; +payant payant adj m s 2.09 2.03 1.23 0.74 +payante payant adj f s 2.09 2.03 0.39 0.74 +payantes payant adj f p 2.09 2.03 0.19 0.34 +payants payant adj m p 2.09 2.03 0.28 0.20 +payassent payer ver 416.67 150.20 0.00 0.07 sub:imp:3p; +payassiez payer ver 416.67 150.20 0.00 0.07 sub:imp:2p; +paye payer ver 416.67 150.20 29.91 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +payement payement nom m s 0.06 0.34 0.03 0.34 +payements payement nom m p 0.06 0.34 0.03 0.00 +payent payer ver 416.67 150.20 4.30 1.35 ind:pre:3p; +payer payer ver 416.67 150.20 149.10 58.31 inf;;inf;;inf;; +payera payer ver 416.67 150.20 2.24 0.20 ind:fut:3s; +payerai payer ver 416.67 150.20 2.40 0.34 ind:fut:1s; +payeraient payer ver 416.67 150.20 0.10 0.14 cnd:pre:3p; +payerais payer ver 416.67 150.20 0.33 0.34 cnd:pre:1s;cnd:pre:2s; +payerait payer ver 416.67 150.20 0.20 0.47 cnd:pre:3s; +payeras payer ver 416.67 150.20 0.37 0.34 ind:fut:2s; +payerez payer ver 416.67 150.20 1.49 0.20 ind:fut:2p; +payeriez payer ver 416.67 150.20 0.10 0.07 cnd:pre:2p; +payerons payer ver 416.67 150.20 0.58 0.14 ind:fut:1p; +payeront payer ver 416.67 150.20 0.55 0.14 ind:fut:3p; +payes payer ver 416.67 150.20 4.59 1.15 ind:pre:2s;sub:pre:2s; +payeur payeur nom m s 0.21 0.27 0.07 0.14 +payeurs payeur nom m p 0.21 0.27 0.14 0.14 +payez payer ver 416.67 150.20 13.15 1.01 imp:pre:2p;ind:pre:2p; +payiez payer ver 416.67 150.20 0.55 0.00 ind:imp:2p; +payions payer ver 416.67 150.20 0.03 0.07 ind:imp:1p; +payâmes payer ver 416.67 150.20 0.00 0.07 ind:pas:1p; +payons payer ver 416.67 150.20 1.68 0.74 imp:pre:1p;ind:pre:1p; +payât payer ver 416.67 150.20 0.00 0.34 sub:imp:3s; +pays pays nom m 202.57 241.55 202.57 241.55 +paysage paysage nom m s 13.19 64.12 10.57 50.47 +paysager paysager adj m s 0.06 0.07 0.06 0.07 +paysages paysage nom m p 13.19 64.12 2.62 13.65 +paysagiste paysagiste nom s 0.73 0.68 0.66 0.61 +paysagistes paysagiste nom p 0.73 0.68 0.08 0.07 +paysagé paysagé adj m s 0.00 0.47 0.00 0.41 +paysagés paysagé adj m p 0.00 0.47 0.00 0.07 +paysan paysan nom m s 22.34 57.30 9.06 17.77 +paysanne paysan nom f s 22.34 57.30 2.66 6.82 +paysannerie paysannerie nom f s 0.23 0.54 0.23 0.54 +paysannes paysanne nom f p 0.95 0.00 0.95 0.00 +paysans paysan nom m p 22.34 57.30 10.62 29.80 +payse payse nom m 0.01 0.07 0.01 0.07 +payèrent payer ver 416.67 150.20 0.11 0.41 ind:pas:3p; +payé payer ver m s 416.67 150.20 66.22 23.24 par:pas; +payée payer ver f s 416.67 150.20 9.16 2.91 par:pas; +payées payer ver f p 416.67 150.20 1.53 1.01 par:pas; +payés payer ver m p 416.67 150.20 5.56 3.31 par:pas; +pc pc nom m 0.16 0.00 0.16 0.00 +pchitt pchitt ono 0.00 0.20 0.00 0.20 +peanuts peanuts nom m p 0.07 0.07 0.07 0.07 +peau_rouge peau_rouge nom s 0.51 0.54 0.49 0.27 +peau peau nom f s 87.47 187.77 83.83 174.26 +peaucier peaucier nom m s 0.00 0.14 0.00 0.07 +peauciers peaucier nom m p 0.00 0.14 0.00 0.07 +peaufina peaufiner ver 0.67 1.08 0.00 0.14 ind:pas:3s; +peaufinage peaufinage nom m s 0.01 0.00 0.01 0.00 +peaufinait peaufiner ver 0.67 1.08 0.03 0.20 ind:imp:3s; +peaufinant peaufiner ver 0.67 1.08 0.00 0.07 par:pre; +peaufiner peaufiner ver 0.67 1.08 0.44 0.34 inf; +peaufiné peaufiner ver m s 0.67 1.08 0.20 0.20 par:pas; +peaufinée peaufiner ver f s 0.67 1.08 0.00 0.07 par:pas; +peaufinés peaufiner ver m p 0.67 1.08 0.00 0.07 par:pas; +peausserie peausserie nom f s 0.00 0.27 0.00 0.14 +peausseries peausserie nom f p 0.00 0.27 0.00 0.14 +peaussier peaussier nom m s 0.01 0.07 0.01 0.07 +peau_rouge peau_rouge nom p 0.51 0.54 0.02 0.27 +peaux peau nom f p 87.47 187.77 3.63 13.51 +pec pec adj m s 0.01 0.00 0.01 0.00 +peccable peccable adj m s 0.01 0.00 0.01 0.00 +peccadille peccadille nom f s 0.08 1.08 0.04 0.34 +peccadilles peccadille nom f p 0.08 1.08 0.04 0.74 +peccata peccata nom m s 0.20 0.00 0.20 0.00 +peccavi peccavi nom m s 0.10 0.14 0.10 0.14 +pecnots pecnot nom m p 0.03 0.00 0.03 0.00 +pecorino pecorino nom m s 0.25 0.00 0.25 0.00 +pectoral pectoral adj m s 0.19 1.08 0.07 0.00 +pectorale pectoral adj f s 0.19 1.08 0.04 0.27 +pectorales pectoral adj f p 0.19 1.08 0.03 0.41 +pectoraux pectoral nom m p 0.70 2.09 0.66 1.76 +pedigree pedigree nom m s 0.67 1.82 0.65 1.76 +pedigrees pedigree nom m p 0.67 1.82 0.02 0.07 +pedzouille pedzouille nom m s 0.04 0.54 0.04 0.41 +pedzouilles pedzouille nom m p 0.04 0.54 0.00 0.14 +peeling peeling nom m s 0.14 0.00 0.14 0.00 +peignît peindre ver 36.05 80.27 0.00 0.07 sub:imp:3s; +peigna peigner ver 2.25 4.39 0.00 0.41 ind:pas:3s; +peignaient peindre ver 36.05 80.27 0.16 0.88 ind:imp:3p; +peignais peindre ver 36.05 80.27 0.35 1.42 ind:imp:1s; +peignait peindre ver 36.05 80.27 1.61 4.86 ind:imp:3s; +peignant peindre ver 36.05 80.27 0.51 1.55 par:pre; +peigne_cul peigne_cul nom m s 0.23 0.34 0.07 0.27 +peigne_cul peigne_cul nom m p 0.23 0.34 0.17 0.07 +peigne_zizi peigne_zizi nom s 0.00 0.07 0.00 0.07 +peigne peigne nom m s 6.81 10.81 6.07 8.85 +peignent peindre ver 36.05 80.27 0.43 0.81 ind:pre:3p;sub:pre:3p; +peigner peigner ver 2.25 4.39 0.85 1.28 inf; +peignerais peigner ver 2.25 4.39 0.00 0.07 cnd:pre:2s; +peignerait peigner ver 2.25 4.39 0.00 0.07 cnd:pre:3s; +peignes peigne nom m p 6.81 10.81 0.74 1.96 +peignez peindre ver 36.05 80.27 0.57 0.20 imp:pre:2p;ind:pre:2p; +peigniez peigner ver 2.25 4.39 0.03 0.00 ind:imp:2p; +peignions peigner ver 2.25 4.39 0.00 0.20 ind:imp:1p; +peignis peindre ver 36.05 80.27 0.00 1.22 ind:pas:1s; +peignit peindre ver 36.05 80.27 0.14 1.82 ind:pas:3s; +peignoir peignoir nom m s 6.65 16.96 5.94 14.73 +peignoirs peignoir nom m p 6.65 16.96 0.72 2.23 +peignons peindre ver 36.05 80.27 0.18 0.00 imp:pre:1p;ind:pre:1p; +peigné peigner ver m s 2.25 4.39 0.08 0.41 par:pas; +peignée peignée nom f s 0.17 1.49 0.17 1.22 +peignées peignée nom f p 0.17 1.49 0.00 0.27 +peignés peigné adj m p 0.06 1.89 0.02 1.01 +peina peiner ver 7.65 12.36 0.00 0.14 ind:pas:3s; +peinaient peiner ver 7.65 12.36 0.01 0.61 ind:imp:3p; +peinais peiner ver 7.65 12.36 0.02 0.07 ind:imp:1s; +peinait peiner ver 7.65 12.36 0.03 2.43 ind:imp:3s; +peinant peiner ver 7.65 12.36 0.15 0.68 par:pre; +peinard peinard adj m s 3.92 9.59 2.91 5.88 +peinarde peinard adj f s 3.92 9.59 0.33 1.35 +peinardement peinardement adv 0.00 0.20 0.00 0.20 +peinardes peinard adj f p 3.92 9.59 0.02 0.20 +peinards peinard adj m p 3.92 9.59 0.67 2.16 +peindra peindre ver 36.05 80.27 0.19 0.07 ind:fut:3s; +peindrai peindre ver 36.05 80.27 0.51 0.34 ind:fut:1s; +peindrais peindre ver 36.05 80.27 0.06 0.27 cnd:pre:1s;cnd:pre:2s; +peindrait peindre ver 36.05 80.27 0.16 0.34 cnd:pre:3s; +peindras peindre ver 36.05 80.27 0.17 0.14 ind:fut:2s; +peindre peindre ver 36.05 80.27 12.75 22.64 inf;; +peine peine nom f s 199.75 399.53 193.42 388.24 +peinent peiner ver 7.65 12.36 0.54 0.27 ind:pre:3p; +peiner peiner ver 7.65 12.36 0.45 2.36 ind:pre:2p;inf; +peinera peiner ver 7.65 12.36 0.14 0.07 ind:fut:3s; +peinerait peiner ver 7.65 12.36 0.18 0.00 cnd:pre:3s; +peinerez peiner ver 7.65 12.36 0.01 0.00 ind:fut:2p; +peines peine nom f p 199.75 399.53 6.34 11.28 +peineuse peineuse adj m s 0.00 0.07 0.00 0.07 +peinez peiner ver 7.65 12.36 0.54 0.07 imp:pre:2p;ind:pre:2p; +peinions peiner ver 7.65 12.36 0.00 0.07 ind:imp:1p; +peinons peiner ver 7.65 12.36 0.14 0.07 ind:pre:1p; +peinât peiner ver 7.65 12.36 0.00 0.07 sub:imp:3s; +peins peindre ver 36.05 80.27 3.77 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s; +peint peindre ver m s 36.05 80.27 11.95 17.84 ind:pre:3s;par:pas;par:pas; +peinte peindre ver f s 36.05 80.27 0.95 9.53 par:pas; +peintes peindre ver f p 36.05 80.27 0.61 5.95 par:pas; +peinèrent peiner ver 7.65 12.36 0.00 0.07 ind:pas:3p; +peintre peintre nom s 17.02 45.07 13.60 31.22 +peintres peintre nom p 17.02 45.07 3.42 13.85 +peints peindre ver m p 36.05 80.27 1.00 7.64 par:pas; +peinture peinture nom f s 29.53 67.64 25.83 59.39 +peintures peinture nom f p 29.53 67.64 3.70 8.24 +peinturlure peinturlurer ver 0.47 2.23 0.14 0.00 ind:pre:1s;ind:pre:3s; +peinturlurent peinturlurer ver 0.47 2.23 0.00 0.07 ind:pre:3p; +peinturlurer peinturlurer ver 0.47 2.23 0.11 0.41 inf; +peinturlures peinturlurer ver 0.47 2.23 0.00 0.07 ind:pre:2s; +peinturlureur peinturlureur nom m s 0.00 0.14 0.00 0.07 +peinturlureurs peinturlureur nom m p 0.00 0.14 0.00 0.07 +peinturluré peinturlurer ver m s 0.47 2.23 0.12 0.74 par:pas; +peinturlurée peinturlurer ver f s 0.47 2.23 0.02 0.47 par:pas; +peinturlurées peinturlurer ver f p 0.47 2.23 0.03 0.14 par:pas; +peinturlurés peinturlurer ver m p 0.47 2.23 0.05 0.34 par:pas; +peinturé peinturer ver m s 0.02 0.20 0.02 0.14 par:pas; +peinturée peinturer ver f s 0.02 0.20 0.00 0.07 par:pas; +peiné peiner ver m s 7.65 12.36 1.68 2.50 par:pas; +peinée peiner ver f s 7.65 12.36 0.14 0.74 par:pas; +peinées peiner ver f p 7.65 12.36 0.11 0.00 par:pas; +peinés peiner ver m p 7.65 12.36 0.22 0.20 par:pas; +pela peler ver 1.78 4.93 0.00 0.20 ind:pas:3s; +pelade pelade nom f s 0.16 0.47 0.16 0.41 +pelades pelade nom f p 0.16 0.47 0.00 0.07 +pelage pelage nom m s 0.44 6.01 0.44 5.74 +pelages pelage nom m p 0.44 6.01 0.00 0.27 +pelaient peler ver 1.78 4.93 0.00 0.07 ind:imp:3p; +pelait peler ver 1.78 4.93 0.01 0.41 ind:imp:3s; +pelant peler ver 1.78 4.93 0.00 0.27 par:pre; +peler peler ver 1.78 4.93 0.44 1.22 inf; +pelisse pelisse nom f s 0.11 3.51 0.11 2.84 +pelisses pelisse nom f p 0.11 3.51 0.00 0.68 +pellagre pellagre nom f s 0.04 0.00 0.04 0.00 +pelle_bêche pelle_bêche nom f s 0.00 0.14 0.00 0.07 +pelle_pioche pelle_pioche nom f s 0.00 0.41 0.00 0.07 +pelle pelle nom f s 10.10 15.61 8.75 11.35 +pelle_bêche pelle_bêche nom f p 0.00 0.14 0.00 0.07 +pelle_pioche pelle_pioche nom f p 0.00 0.41 0.00 0.34 +pelles pelle nom f p 10.10 15.61 1.35 4.26 +pelletage pelletage nom m s 0.02 0.00 0.02 0.00 +pelletaient pelleter ver 0.27 0.95 0.00 0.14 ind:imp:3p; +pelletait pelleter ver 0.27 0.95 0.00 0.27 ind:imp:3s; +pelletant pelleter ver 0.27 0.95 0.00 0.14 par:pre; +pelleter pelleter ver 0.27 0.95 0.27 0.34 inf; +pelleterie pelleterie nom f s 0.00 0.07 0.00 0.07 +pelleteur pelleteur nom m s 0.44 0.27 0.04 0.00 +pelleteuse pelleteur nom f s 0.44 0.27 0.40 0.14 +pelleteuses pelleteuse nom f p 0.02 0.00 0.02 0.00 +pelletiers pelletier nom m p 0.02 0.14 0.02 0.14 +pellette pelleter ver 0.27 0.95 0.00 0.07 ind:pre:3s; +pelletée pelletée nom f s 0.31 2.03 0.29 0.47 +pelletées pelletée nom f p 0.31 2.03 0.02 1.55 +pelliculages pelliculage nom m p 0.00 0.07 0.00 0.07 +pelliculaire pelliculaire adj f s 0.00 0.07 0.00 0.07 +pellicule pellicule nom f s 7.52 6.82 6.29 5.68 +pellicules pellicule nom f p 7.52 6.82 1.23 1.15 +pelliculé pelliculer ver m s 0.00 0.14 0.00 0.07 par:pas; +pelliculée pelliculer ver f s 0.00 0.14 0.00 0.07 par:pas; +pelloche pelloche nom f s 0.10 0.20 0.10 0.20 +pelota peloter ver 5.36 3.38 0.10 0.14 ind:pas:3s; +pelotage pelotage nom m s 0.21 0.61 0.19 0.34 +pelotages pelotage nom m p 0.21 0.61 0.02 0.27 +pelotaient peloter ver 5.36 3.38 0.03 0.14 ind:imp:3p; +pelotais peloter ver 5.36 3.38 0.07 0.00 ind:imp:1s;ind:imp:2s; +pelotait peloter ver 5.36 3.38 0.32 0.61 ind:imp:3s; +pelotant peloter ver 5.36 3.38 0.14 0.34 par:pre; +pelote pelote nom f s 0.98 6.01 0.94 4.19 +pelotent peloter ver 5.36 3.38 0.14 0.00 ind:pre:3p; +peloter peloter ver 5.36 3.38 2.90 1.22 inf; +peloterai peloter ver 5.36 3.38 0.04 0.07 ind:fut:1s; +peloterait peloter ver 5.36 3.38 0.01 0.00 cnd:pre:3s; +pelotes peloter ver 5.36 3.38 0.17 0.00 ind:pre:2s; +peloteur peloteur nom m s 0.03 0.14 0.02 0.00 +peloteurs peloteur nom m p 0.03 0.14 0.01 0.14 +peloteuse peloteur adj f s 0.00 0.20 0.00 0.14 +pelotez peloter ver 5.36 3.38 0.11 0.00 imp:pre:2p;ind:pre:2p; +peloton peloton nom m s 7.15 10.74 6.83 9.73 +pelotonna pelotonner ver 0.07 4.12 0.00 0.34 ind:pas:3s; +pelotonnai pelotonner ver 0.07 4.12 0.00 0.14 ind:pas:1s; +pelotonnaient pelotonner ver 0.07 4.12 0.01 0.07 ind:imp:3p; +pelotonnais pelotonner ver 0.07 4.12 0.00 0.07 ind:imp:1s; +pelotonnait pelotonner ver 0.07 4.12 0.00 0.14 ind:imp:3s; +pelotonnant pelotonner ver 0.07 4.12 0.00 0.07 par:pre; +pelotonne pelotonner ver 0.07 4.12 0.00 0.34 ind:pre:1s;ind:pre:3s; +pelotonnent pelotonner ver 0.07 4.12 0.00 0.14 ind:pre:3p; +pelotonner pelotonner ver 0.07 4.12 0.01 0.68 inf; +pelotonné pelotonner ver m s 0.07 4.12 0.00 1.22 par:pas; +pelotonnée pelotonner ver f s 0.07 4.12 0.02 0.61 par:pas; +pelotonnées pelotonner ver f p 0.07 4.12 0.00 0.14 par:pas; +pelotonnés pelotonner ver m p 0.07 4.12 0.02 0.20 par:pas; +pelotons peloton nom m p 7.15 10.74 0.32 1.01 +peloté peloter ver m s 5.36 3.38 0.28 0.00 par:pas; +pelotée peloter ver f s 5.36 3.38 0.38 0.14 par:pas; +pelotés peloter ver m p 5.36 3.38 0.32 0.00 par:pas; +pelouse pelouse nom f s 4.79 19.39 4.28 12.97 +pelouses pelouse nom f p 4.79 19.39 0.52 6.42 +pelé peler ver m s 1.78 4.93 0.14 0.95 par:pas; +peluche peluche nom f s 4.21 5.54 3.25 5.34 +peluches peluche nom f p 4.21 5.54 0.96 0.20 +pelucheuse pelucheux adj f s 0.31 1.76 0.03 0.54 +pelucheuses pelucheux adj f p 0.31 1.76 0.01 0.27 +pelucheux pelucheux adj m 0.31 1.76 0.27 0.95 +peluchée peluché adj f s 0.00 0.20 0.00 0.20 +pelée pelé adj f s 0.44 3.24 0.30 1.08 +pelées peler ver f p 1.78 4.93 0.00 0.34 par:pas; +pelure pelure nom f s 0.37 3.24 0.10 2.03 +pelures pelure nom f p 0.37 3.24 0.28 1.22 +pelés peler ver m p 1.78 4.93 0.02 0.41 par:pas; +pelvien pelvien adj m s 0.55 0.00 0.18 0.00 +pelvienne pelvien adj f s 0.55 0.00 0.37 0.00 +pelvis pelvis nom m 0.34 0.07 0.34 0.07 +pembina pembina nom f s 0.00 0.07 0.00 0.07 +pemmican pemmican nom m s 0.01 0.14 0.01 0.14 +penalties penalties nom m p 0.29 0.14 0.29 0.14 +penalty penalty nom m s 1.50 0.47 1.50 0.47 +penaud penaud adj m s 0.21 4.86 0.20 3.04 +penaude penaud adj f s 0.21 4.86 0.01 0.81 +penaudes penaud adj f p 0.21 4.86 0.00 0.07 +penauds penaud adj m p 0.21 4.86 0.00 0.95 +pence pence nom m p 1.71 0.14 1.71 0.14 +pencha pencher ver 16.90 155.88 0.10 34.05 ind:pas:3s; +penchai pencher ver 16.90 155.88 0.00 2.36 ind:pas:1s; +penchaient pencher ver 16.90 155.88 0.00 2.30 ind:imp:3p; +penchais pencher ver 16.90 155.88 0.23 1.22 ind:imp:1s;ind:imp:2s; +penchait pencher ver 16.90 155.88 0.26 13.92 ind:imp:3s; +penchant penchant nom m s 3.26 5.27 2.54 3.45 +penchante penchant adj f s 0.01 0.74 0.00 0.20 +penchants penchant nom m p 3.26 5.27 0.72 1.82 +penche pencher ver 16.90 155.88 7.30 26.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +penchement penchement nom m s 0.00 0.20 0.00 0.20 +penchent pencher ver 16.90 155.88 0.44 2.91 ind:pre:3p; +pencher pencher ver 16.90 155.88 2.08 11.76 inf; +penchera pencher ver 16.90 155.88 0.18 0.27 ind:fut:3s; +pencherai pencher ver 16.90 155.88 0.20 0.00 ind:fut:1s; +pencheraient pencher ver 16.90 155.88 0.04 0.07 cnd:pre:3p; +pencherais pencher ver 16.90 155.88 0.13 0.34 cnd:pre:1s; +pencherait pencher ver 16.90 155.88 0.04 0.14 cnd:pre:3s; +pencheras pencher ver 16.90 155.88 0.01 0.00 ind:fut:2s; +pencherez pencher ver 16.90 155.88 0.01 0.00 ind:fut:2p; +pencheriez pencher ver 16.90 155.88 0.01 0.00 cnd:pre:2p; +pencherons pencher ver 16.90 155.88 0.01 0.00 ind:fut:1p; +pencheront pencher ver 16.90 155.88 0.37 0.14 ind:fut:3p; +penches pencher ver 16.90 155.88 0.28 0.14 ind:pre:2s; +penchez pencher ver 16.90 155.88 1.75 0.27 imp:pre:2p;ind:pre:2p; +penchiez pencher ver 16.90 155.88 0.04 0.00 ind:imp:2p; +penchions pencher ver 16.90 155.88 0.02 0.34 ind:imp:1p; +penchâmes pencher ver 16.90 155.88 0.01 0.20 ind:pas:1p; +penchons pencher ver 16.90 155.88 0.11 0.27 imp:pre:1p;ind:pre:1p; +penchât pencher ver 16.90 155.88 0.00 0.14 sub:imp:3s; +penchèrent pencher ver 16.90 155.88 0.00 0.81 ind:pas:3p; +penché pencher ver m s 16.90 155.88 1.61 25.07 par:pas; +penchée pencher ver f s 16.90 155.88 1.32 12.36 par:pas; +penchées pencher ver f p 16.90 155.88 0.01 1.35 par:pas; +penchés penché adj m p 1.30 11.01 0.21 1.55 +pend pendre ver 43.03 58.04 2.50 6.69 ind:pre:3s; +pendable pendable adj s 0.04 0.88 0.02 0.61 +pendables pendable adj m p 0.04 0.88 0.02 0.27 +pendaient pendre ver 43.03 58.04 0.51 7.30 ind:imp:3p; +pendais pendre ver 43.03 58.04 0.02 0.00 ind:imp:1s; +pendaison pendaison nom f s 3.02 1.08 2.78 1.08 +pendaisons pendaison nom f p 3.02 1.08 0.24 0.00 +pendait pendre ver 43.03 58.04 0.86 13.38 ind:imp:3s; +pendant pendant pre 312.62 450.14 312.62 450.14 +pendante pendant adj_sup f s 3.56 12.50 0.36 3.24 +pendantes pendant adj_sup f p 3.56 12.50 0.19 3.92 +pendants pendant adj_sup m p 3.56 12.50 0.18 1.49 +pendard pendard nom m s 0.05 0.07 0.03 0.07 +pendarde pendard nom f s 0.05 0.07 0.01 0.00 +pendards pendard nom m p 0.05 0.07 0.01 0.00 +pende pendre ver 43.03 58.04 1.15 0.34 sub:pre:1s;sub:pre:3s; +pendeloque pendeloque nom f s 0.01 1.08 0.01 0.14 +pendeloques pendeloque nom f p 0.01 1.08 0.00 0.95 +pendent pendre ver 43.03 58.04 1.41 4.53 ind:pre:3p; +pendentif pendentif nom m s 1.04 1.22 1.00 0.74 +pendentifs pendentif nom m p 1.04 1.22 0.03 0.47 +penderie penderie nom f s 1.88 3.11 1.84 2.50 +penderies penderie nom f p 1.88 3.11 0.04 0.61 +pendeur pendeur nom m s 0.01 0.00 0.01 0.00 +pendez pendre ver 43.03 58.04 1.60 0.14 imp:pre:2p;ind:pre:2p; +pendillaient pendiller ver 0.01 0.41 0.00 0.14 ind:imp:3p; +pendillait pendiller ver 0.01 0.41 0.00 0.07 ind:imp:3s; +pendillant pendiller ver 0.01 0.41 0.00 0.14 par:pre; +pendille pendiller ver 0.01 0.41 0.01 0.07 ind:pre:3s; +pendirent pendre ver 43.03 58.04 0.00 0.07 ind:pas:3p; +pendit pendre ver 43.03 58.04 0.09 1.08 ind:pas:3s; +pendjabi pendjabi nom m s 0.04 0.00 0.04 0.00 +pendons pendre ver 43.03 58.04 0.63 0.00 imp:pre:1p;ind:pre:1p; +pendouillaient pendouiller ver 0.47 2.23 0.01 0.27 ind:imp:3p; +pendouillait pendouiller ver 0.47 2.23 0.00 0.47 ind:imp:3s; +pendouillant pendouiller ver 0.47 2.23 0.02 0.47 par:pre; +pendouille pendouiller ver 0.47 2.23 0.30 0.61 ind:pre:1s;ind:pre:3s; +pendouillent pendouiller ver 0.47 2.23 0.03 0.27 ind:pre:3p; +pendouiller pendouiller ver 0.47 2.23 0.11 0.07 inf; +pendouilles pendouiller ver 0.47 2.23 0.00 0.07 ind:pre:2s; +pendra pendre ver 43.03 58.04 1.83 0.34 ind:fut:3s; +pendrai pendre ver 43.03 58.04 0.28 0.00 ind:fut:1s; +pendrais pendre ver 43.03 58.04 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +pendrait pendre ver 43.03 58.04 0.28 0.07 cnd:pre:3s; +pendras pendre ver 43.03 58.04 0.17 0.00 ind:fut:2s; +pendre pendre ver 43.03 58.04 12.40 8.51 inf; +pendrez pendre ver 43.03 58.04 0.05 0.00 ind:fut:2p; +pendrons pendre ver 43.03 58.04 0.07 0.00 ind:fut:1p; +pendront pendre ver 43.03 58.04 0.82 0.07 ind:fut:3p; +pends pendre ver 43.03 58.04 1.13 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +pendu pendre ver m s 43.03 58.04 11.02 5.74 par:pas; +pendue pendre ver f s 43.03 58.04 2.19 2.97 par:pas; +pendues pendu adj f p 2.90 3.78 0.18 0.47 +pendulaire pendulaire adj s 0.00 0.20 0.00 0.20 +pendulait penduler ver 0.00 0.07 0.00 0.07 ind:imp:3s; +pendule pendule nom s 4.78 11.82 3.37 9.86 +pendules pendule nom f p 4.78 11.82 1.42 1.96 +pendulette pendulette nom f s 0.03 1.15 0.03 0.95 +pendulettes pendulette nom f p 0.03 1.15 0.00 0.20 +pendus pendre ver m p 43.03 58.04 1.52 2.50 par:pas; +pennage pennage nom m s 0.12 0.00 0.12 0.00 +penne penne nom f s 0.39 0.54 0.34 0.34 +pennes penne nom f p 0.39 0.54 0.05 0.20 +pennies pennies nom m p 0.62 0.20 0.62 0.20 +pennon pennon nom m s 0.02 0.07 0.01 0.00 +pennons pennon nom m p 0.02 0.07 0.01 0.07 +pennées penné adj f p 0.00 0.07 0.00 0.07 +penny penny nom f s 3.49 0.14 3.49 0.14 +penon penon nom m s 0.00 0.07 0.00 0.07 +pensa penser ver 1485.46 869.80 1.52 78.11 ind:pas:3s; +pensable pensable adj f s 0.19 0.81 0.19 0.81 +pensai penser ver 1485.46 869.80 0.86 16.28 ind:pas:1s; +pensaient penser ver 1485.46 869.80 6.32 10.61 ind:imp:3p; +pensais penser ver 1485.46 869.80 199.51 69.66 ind:imp:1s;ind:imp:2s; +pensait penser ver 1485.46 869.80 32.53 109.05 ind:imp:3s; +pensant penser ver 1485.46 869.80 10.22 32.50 par:pre; +pensante pensant adj f s 1.09 6.08 0.19 1.22 +pensantes pensant adj f p 1.09 6.08 0.06 0.14 +pensants pensant adj m p 1.09 6.08 0.03 0.41 +pense_bête pense_bête nom m s 0.34 0.41 0.17 0.41 +pense_bête pense_bête nom m p 0.34 0.41 0.17 0.00 +pense penser ver 1485.46 869.80 517.64 178.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +pensent penser ver 1485.46 869.80 37.42 12.30 ind:pre:3p; +penser penser ver 1485.46 869.80 140.23 161.62 inf; +pensera penser ver 1485.46 869.80 3.66 1.62 ind:fut:3s; +penserai penser ver 1485.46 869.80 3.44 1.28 ind:fut:1s; +penseraient penser ver 1485.46 869.80 0.90 0.88 cnd:pre:3p; +penserais penser ver 1485.46 869.80 2.38 1.22 cnd:pre:1s;cnd:pre:2s; +penserait penser ver 1485.46 869.80 3.17 2.16 cnd:pre:3s; +penseras penser ver 1485.46 869.80 1.84 0.95 ind:fut:2s; +penserez penser ver 1485.46 869.80 0.93 0.61 ind:fut:2p; +penseriez penser ver 1485.46 869.80 0.66 0.20 cnd:pre:2p; +penserions penser ver 1485.46 869.80 0.01 0.20 cnd:pre:1p; +penserons penser ver 1485.46 869.80 0.30 0.14 ind:fut:1p; +penseront penser ver 1485.46 869.80 2.19 0.61 ind:fut:3p; +penses penser ver 1485.46 869.80 186.90 38.24 ind:pre:2s;sub:pre:2s; +penseur penseur nom m s 1.64 3.92 0.84 1.96 +penseurs penseur nom m p 1.64 3.92 0.80 1.69 +penseuse penseur nom f s 1.64 3.92 0.00 0.14 +penseuses penseur nom f p 1.64 3.92 0.00 0.14 +pensez penser ver 1485.46 869.80 148.70 41.69 imp:pre:2p;ind:pre:2p; +pensiez penser ver 1485.46 869.80 12.33 2.16 ind:imp:2p;sub:pre:2p; +pensif pensif adj m s 0.80 9.80 0.58 5.95 +pensifs pensif adj m p 0.80 9.80 0.01 1.42 +pension pension nom f s 17.75 19.19 16.45 18.18 +pensionna pensionner ver 0.02 0.20 0.00 0.07 ind:pas:3s; +pensionnaire pensionnaire nom s 2.41 10.54 1.42 4.19 +pensionnaires pensionnaire nom p 2.41 10.54 0.99 6.35 +pensionnat pensionnat nom m s 1.88 2.77 1.87 2.64 +pensionnats pensionnat nom m p 1.88 2.77 0.01 0.14 +pensionner pensionner ver 0.02 0.20 0.00 0.07 inf; +pensionné pensionner ver m s 0.02 0.20 0.01 0.00 par:pas; +pensionnés pensionné nom m p 0.21 0.20 0.21 0.00 +pensions penser ver 1485.46 869.80 5.41 4.26 ind:imp:1p; +pensive pensif adj f s 0.80 9.80 0.21 2.43 +pensivement pensivement adv 0.01 5.20 0.01 5.20 +pensâmes penser ver 1485.46 869.80 0.00 0.07 ind:pas:1p; +pensons penser ver 1485.46 869.80 13.89 3.65 imp:pre:1p;ind:pre:1p; +pensât penser ver 1485.46 869.80 0.00 0.74 sub:imp:3s; +pensèrent penser ver 1485.46 869.80 0.07 1.01 ind:pas:3p; +pensé penser ver m s 1485.46 869.80 151.67 97.57 imp:pre:2s;par:pas;par:pas;par:pas;par:pas;par:pas; +pensée pensée nom f s 57.87 151.55 26.25 98.92 +pensées pensée nom f p 57.87 151.55 31.61 52.64 +pensum pensum nom m s 0.03 1.22 0.02 0.95 +pensums pensum nom m p 0.03 1.22 0.01 0.27 +pensés penser ver m p 1485.46 869.80 0.09 0.41 par:pas; +pentacle pentacle nom m s 0.57 0.20 0.54 0.20 +pentacles pentacle nom m p 0.57 0.20 0.04 0.00 +pentagonal pentagonal adj m s 0.01 0.00 0.01 0.00 +pentagone pentagone nom m s 0.26 0.20 0.25 0.14 +pentagones pentagone nom m p 0.26 0.20 0.01 0.07 +pentagramme pentagramme nom m s 0.70 0.00 0.67 0.00 +pentagrammes pentagramme nom m p 0.70 0.00 0.04 0.00 +pentamètre pentamètre nom s 0.17 0.00 0.12 0.00 +pentamètres pentamètre nom p 0.17 0.00 0.05 0.00 +pentasyllabe pentasyllabe nom m s 0.00 0.07 0.00 0.07 +pentateuque pentateuque nom m s 0.00 0.07 0.00 0.07 +pentathlon pentathlon nom m s 0.00 0.07 0.00 0.07 +pente pente nom f s 4.82 49.66 4.46 39.19 +pentecôte pentecôte nom f s 0.57 3.85 0.57 3.85 +pentecôtiste pentecôtiste nom s 0.04 0.20 0.02 0.20 +pentecôtistes pentecôtiste nom p 0.04 0.20 0.02 0.00 +pentes pente nom f p 4.82 49.66 0.36 10.47 +penthiobarbital penthiobarbital nom m s 0.01 0.00 0.01 0.00 +penthotal penthotal nom m s 0.06 0.20 0.06 0.20 +penthouse penthouse nom m s 0.90 0.00 0.90 0.00 +pentothal pentothal nom m s 0.17 0.00 0.17 0.00 +pentu pentu adj m s 0.05 1.22 0.05 0.61 +pentue pentu adj f s 0.05 1.22 0.00 0.27 +pentues pentu adj f p 0.05 1.22 0.00 0.07 +pentélique pentélique adj m s 0.00 0.07 0.00 0.07 +penture penture nom f s 0.00 0.14 0.00 0.07 +pentures penture nom f p 0.00 0.14 0.00 0.07 +pentus pentu adj m p 0.05 1.22 0.00 0.27 +people people adj 3.55 0.20 3.55 0.20 +pep pep nom m s 0.33 0.14 0.15 0.14 +peppermint peppermint nom m s 0.05 0.34 0.05 0.34 +peps pep nom m p 0.33 0.14 0.18 0.00 +pepsine pepsine nom f s 0.01 0.00 0.01 0.00 +peptide peptide nom m s 0.03 0.00 0.03 0.00 +peptique peptique adj s 0.03 0.00 0.03 0.00 +percale percale nom f s 0.11 0.68 0.11 0.61 +percales percale nom f p 0.11 0.68 0.00 0.07 +perce_oreille perce_oreille nom m s 0.04 0.20 0.03 0.07 +perce_oreille perce_oreille nom m p 0.04 0.20 0.01 0.14 +perce_pierre perce_pierre nom f s 0.00 0.07 0.00 0.07 +perce percer ver 15.77 42.03 2.09 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +percement percement nom m s 0.01 0.41 0.01 0.41 +percent percer ver 15.77 42.03 0.42 1.08 ind:pre:3p; +percepteur percepteur nom m s 1.03 1.42 0.93 1.28 +percepteurs percepteur nom m p 1.03 1.42 0.09 0.14 +perceptible perceptible adj s 0.46 7.43 0.40 6.01 +perceptibles perceptible adj p 0.46 7.43 0.06 1.42 +perceptif perceptif adj m s 0.09 0.14 0.01 0.14 +perception perception nom f s 2.92 3.72 2.62 2.70 +perceptions perception nom f p 2.92 3.72 0.31 1.01 +perceptive perceptif adj f s 0.09 0.14 0.07 0.00 +perceptives perceptif adj f p 0.09 0.14 0.01 0.00 +perceptrice percepteur nom f s 1.03 1.42 0.01 0.00 +perceptuels perceptuel adj m p 0.01 0.00 0.01 0.00 +percer percer ver 15.77 42.03 6.19 11.22 inf; +percera percer ver 15.77 42.03 0.26 0.20 ind:fut:3s; +percerai percer ver 15.77 42.03 0.08 0.00 ind:fut:1s; +percerait percer ver 15.77 42.03 0.03 0.00 cnd:pre:3s; +percerez percer ver 15.77 42.03 0.11 0.07 ind:fut:2p; +perceur perceur nom m s 1.21 1.01 0.12 0.20 +perceurs perceur nom m p 1.21 1.01 0.12 0.47 +perceuse perceur nom f s 1.21 1.01 0.97 0.20 +perceuses perceuse nom f p 0.01 0.00 0.01 0.00 +percevaient percevoir ver 7.39 41.01 0.01 0.81 ind:imp:3p; +percevais percevoir ver 7.39 41.01 0.26 2.30 ind:imp:1s;ind:imp:2s; +percevait percevoir ver 7.39 41.01 0.15 6.62 ind:imp:3s; +percevant percevoir ver 7.39 41.01 0.20 1.15 par:pre; +percevez percevoir ver 7.39 41.01 0.26 0.00 imp:pre:2p;ind:pre:2p; +perceviez percevoir ver 7.39 41.01 0.00 0.07 ind:imp:2p; +percevions percevoir ver 7.39 41.01 0.01 0.27 ind:imp:1p; +percevoir percevoir ver 7.39 41.01 1.19 9.19 inf; +percevons percevoir ver 7.39 41.01 0.20 0.20 ind:pre:1p; +percevra percevoir ver 7.39 41.01 0.17 0.00 ind:fut:3s; +percevrais percevoir ver 7.39 41.01 0.01 0.00 cnd:pre:1s; +percevrait percevoir ver 7.39 41.01 0.01 0.14 cnd:pre:3s; +percevrez percevoir ver 7.39 41.01 0.01 0.00 ind:fut:2p; +percez percer ver 15.77 42.03 0.33 0.00 imp:pre:2p;ind:pre:2p; +percha percher ver 2.37 12.97 0.04 0.20 ind:pas:3s; +perchaient percher ver 2.37 12.97 0.10 0.34 ind:imp:3p; +perchais percher ver 2.37 12.97 0.01 0.14 ind:imp:1s; +perchait percher ver 2.37 12.97 0.11 0.14 ind:imp:3s; +perche perche nom f s 6.11 7.43 5.67 4.93 +perchent percher ver 2.37 12.97 0.00 0.14 ind:pre:3p; +percher percher ver 2.37 12.97 0.23 0.68 inf;; +percheron percheron nom m s 0.02 2.30 0.02 1.22 +percheronne percheron adj f s 0.00 0.68 0.00 0.14 +percheronnes percheron nom f p 0.02 2.30 0.00 0.07 +percherons percheron nom m p 0.02 2.30 0.00 1.01 +perches perche nom f p 6.11 7.43 0.45 2.50 +perchettes perchette nom f p 0.00 0.07 0.00 0.07 +percheurs percheur adj m p 0.01 0.00 0.01 0.00 +perchiste perchiste nom s 0.00 0.07 0.00 0.07 +perchlorate perchlorate nom m s 0.04 0.00 0.04 0.00 +perchlorique perchlorique adj m s 0.01 0.00 0.01 0.00 +perchman perchman nom m s 0.14 0.07 0.14 0.00 +perchmans perchman nom m p 0.14 0.07 0.00 0.07 +perchoir perchoir nom m s 0.46 3.78 0.43 3.58 +perchoirs perchoir nom m p 0.46 3.78 0.03 0.20 +perchèrent percher ver 2.37 12.97 0.00 0.07 ind:pas:3p; +perché percher ver m s 2.37 12.97 1.12 4.59 par:pas; +perchée percher ver f s 2.37 12.97 0.49 2.97 par:pas; +perchées percher ver f p 2.37 12.97 0.00 0.68 par:pas; +perchés percher ver m p 2.37 12.97 0.10 2.70 par:pas; +percions percer ver 15.77 42.03 0.00 0.07 ind:imp:1p; +perclus perclus adj m 0.03 1.62 0.03 1.28 +percluse perclus adj f s 0.03 1.62 0.00 0.27 +percluses perclus adj f p 0.03 1.62 0.00 0.07 +perco perco nom m s 0.07 0.27 0.07 0.14 +percolateur percolateur nom m s 0.11 1.28 0.09 0.95 +percolateurs percolateur nom m p 0.11 1.28 0.02 0.34 +percolation percolation nom f s 0.01 0.00 0.01 0.00 +percoler percoler ver 0.01 0.00 0.01 0.00 inf; +percos perco nom m p 0.07 0.27 0.00 0.14 +percèrent percer ver 15.77 42.03 0.10 0.47 ind:pas:3p; +percé percer ver m s 15.77 42.03 3.67 7.57 par:pas; +percée percée nom f s 1.37 3.99 1.20 3.58 +percées percer ver f p 15.77 42.03 0.46 2.03 par:pas; +percés percer ver m p 15.77 42.03 0.51 2.77 par:pas; +percussion percussion nom f s 1.04 1.76 0.16 0.61 +percussionniste percussionniste nom s 0.09 0.00 0.08 0.00 +percussionnistes percussionniste nom p 0.09 0.00 0.01 0.00 +percussions percussion nom f p 1.04 1.76 0.89 1.15 +percuta percuter ver 3.87 2.77 0.01 0.61 ind:pas:3s; +percutait percuter ver 3.87 2.77 0.02 0.14 ind:imp:3s; +percutant percutant adj m s 0.38 1.01 0.32 0.41 +percutante percutant adj f s 0.38 1.01 0.01 0.00 +percutantes percutant adj f p 0.38 1.01 0.02 0.07 +percutants percutant adj m p 0.38 1.01 0.03 0.54 +percute percuter ver 3.87 2.77 0.49 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +percutent percuter ver 3.87 2.77 0.04 0.07 ind:pre:3p; +percuter percuter ver 3.87 2.77 0.69 0.74 inf; +percuterait percuter ver 3.87 2.77 0.00 0.07 cnd:pre:3s; +percutes percuter ver 3.87 2.77 0.26 0.00 ind:pre:2s; +percuteur percuteur nom m s 0.25 0.07 0.22 0.07 +percuteurs percuteur nom m p 0.25 0.07 0.02 0.00 +percutez percuter ver 3.87 2.77 0.06 0.00 imp:pre:2p;ind:pre:2p; +percuté percuter ver m s 3.87 2.77 2.07 0.54 par:pas; +percutée percuter ver f s 3.87 2.77 0.12 0.00 par:pas; +percutées percuter ver f p 3.87 2.77 0.02 0.00 par:pas; +percutés percuter ver m p 3.87 2.77 0.06 0.00 par:pas; +perd perdre ver 546.08 377.36 39.97 25.00 ind:pre:3s; +perdîmes perdre ver 546.08 377.36 0.02 0.20 ind:pas:1p; +perdît perdre ver 546.08 377.36 0.00 0.61 sub:imp:3s; +perdaient perdre ver 546.08 377.36 0.53 7.64 ind:imp:3p; +perdais perdre ver 546.08 377.36 2.85 4.80 ind:imp:1s;ind:imp:2s; +perdait perdre ver 546.08 377.36 2.52 24.73 ind:imp:3s; +perdant perdant nom m s 6.71 1.42 4.04 0.74 +perdante perdant nom f s 6.71 1.42 0.68 0.07 +perdants perdant nom m p 6.71 1.42 2.00 0.61 +perde perdre ver 546.08 377.36 5.62 4.19 sub:pre:1s;sub:pre:3s; +perdent perdre ver 546.08 377.36 8.12 8.72 ind:pre:3p; +perdes perdre ver 546.08 377.36 0.89 0.20 sub:pre:2s; +perdez perdre ver 546.08 377.36 15.04 2.16 imp:pre:2p;ind:pre:2p; +perdiez perdre ver 546.08 377.36 0.59 0.20 ind:imp:2p; +perdions perdre ver 546.08 377.36 0.43 0.88 ind:imp:1p; +perdirent perdre ver 546.08 377.36 0.35 1.82 ind:pas:3p; +perdis perdre ver 546.08 377.36 0.27 2.16 ind:pas:1s; +perdisse perdre ver 546.08 377.36 0.00 0.07 sub:imp:1s; +perdit perdre ver 546.08 377.36 1.39 11.35 ind:pas:3s; +perdition perdition nom f s 1.18 2.36 1.18 2.36 +perdons perdre ver 546.08 377.36 9.38 2.36 imp:pre:1p;ind:pre:1p; +perdra perdre ver 546.08 377.36 5.23 1.82 ind:fut:3s; +perdrai perdre ver 546.08 377.36 3.10 0.68 ind:fut:1s; +perdraient perdre ver 546.08 377.36 0.17 0.47 cnd:pre:3p; +perdrais perdre ver 546.08 377.36 2.26 1.01 cnd:pre:1s;cnd:pre:2s; +perdrait perdre ver 546.08 377.36 1.94 3.31 cnd:pre:3s; +perdras perdre ver 546.08 377.36 3.79 0.27 ind:fut:2s; +perdre perdre ver 546.08 377.36 131.47 97.70 inf; +perdreau perdreau nom m s 1.45 2.84 0.84 1.15 +perdreaux perdreau nom m p 1.45 2.84 0.61 1.69 +perdrez perdre ver 546.08 377.36 2.66 0.34 ind:fut:2p; +perdriez perdre ver 546.08 377.36 0.57 0.41 cnd:pre:2p; +perdrions perdre ver 546.08 377.36 0.11 0.68 cnd:pre:1p; +perdrix perdrix nom f 2.83 1.49 2.83 1.49 +perdrons perdre ver 546.08 377.36 1.08 0.34 ind:fut:1p; +perdront perdre ver 546.08 377.36 0.50 0.34 ind:fut:3p; +perds perdre ver 546.08 377.36 48.13 11.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +perdu perdre ver m s 546.08 377.36 217.23 115.07 par:pas; +perdue perdre ver f s 546.08 377.36 22.38 22.70 par:pas; +perdues perdu adj f p 36.46 58.45 3.43 6.15 +perdurable perdurable adj m s 0.00 0.07 0.00 0.07 +perdurait perdurer ver 0.73 0.74 0.01 0.14 ind:imp:3s; +perdure perdurer ver 0.73 0.74 0.32 0.27 ind:pre:3s; +perdurent perdurer ver 0.73 0.74 0.05 0.20 ind:pre:3p; +perdurer perdurer ver 0.73 0.74 0.27 0.07 inf; +perdurera perdurer ver 0.73 0.74 0.05 0.00 ind:fut:3s; +perduré perdurer ver m s 0.73 0.74 0.03 0.07 par:pas; +perdus perdre ver m p 546.08 377.36 12.18 13.31 par:pas; +perestroïka perestroïka nom f s 0.00 0.07 0.00 0.07 +perfectibilité perfectibilité nom f s 0.00 0.07 0.00 0.07 +perfectible perfectible adj f s 0.00 0.14 0.00 0.07 +perfectibles perfectible adj p 0.00 0.14 0.00 0.07 +perfection perfection nom f s 7.76 16.82 7.66 16.01 +perfectionna perfectionner ver 2.27 5.61 0.00 0.14 ind:pas:3s; +perfectionnaient perfectionner ver 2.27 5.61 0.00 0.07 ind:imp:3p; +perfectionnais perfectionner ver 2.27 5.61 0.00 0.07 ind:imp:1s; +perfectionnait perfectionner ver 2.27 5.61 0.02 0.14 ind:imp:3s; +perfectionnant perfectionner ver 2.27 5.61 0.00 0.47 par:pre; +perfectionne perfectionner ver 2.27 5.61 0.09 0.54 ind:pre:1s;ind:pre:3s; +perfectionnement perfectionnement nom m s 0.31 1.35 0.30 0.95 +perfectionnements perfectionnement nom m p 0.31 1.35 0.01 0.41 +perfectionnent perfectionner ver 2.27 5.61 0.00 0.07 ind:pre:3p; +perfectionner perfectionner ver 2.27 5.61 1.01 1.28 inf; +perfectionnerais perfectionner ver 2.27 5.61 0.00 0.07 cnd:pre:1s; +perfectionnions perfectionner ver 2.27 5.61 0.01 0.00 ind:imp:1p; +perfectionnisme perfectionnisme nom m s 0.21 0.14 0.21 0.14 +perfectionniste perfectionniste adj s 0.51 0.14 0.43 0.14 +perfectionnistes perfectionniste adj m p 0.51 0.14 0.09 0.00 +perfectionnèrent perfectionner ver 2.27 5.61 0.02 0.00 ind:pas:3p; +perfectionné perfectionner ver m s 2.27 5.61 0.73 1.62 par:pas; +perfectionnée perfectionner ver f s 2.27 5.61 0.06 0.34 par:pas; +perfectionnées perfectionner ver f p 2.27 5.61 0.13 0.34 par:pas; +perfectionnés perfectionner ver m p 2.27 5.61 0.19 0.47 par:pas; +perfections perfection nom f p 7.76 16.82 0.10 0.81 +perfecto perfecto nom m s 0.19 0.27 0.19 0.20 +perfectos perfecto nom m p 0.19 0.27 0.00 0.07 +perfide perfide adj s 2.48 4.86 1.69 3.18 +perfidement perfidement adv 0.10 0.61 0.10 0.61 +perfides perfide adj p 2.48 4.86 0.79 1.69 +perfidie perfidie nom f s 1.30 3.65 1.17 3.24 +perfidies perfidie nom f p 1.30 3.65 0.14 0.41 +perfora perforer ver 1.45 1.35 0.00 0.14 ind:pas:3s; +perforage perforage nom m s 0.01 0.00 0.01 0.00 +perforait perforer ver 1.45 1.35 0.01 0.14 ind:imp:3s; +perforant perforant adj m s 0.32 0.14 0.04 0.00 +perforante perforant adj f s 0.32 0.14 0.11 0.07 +perforantes perforant adj f p 0.32 0.14 0.05 0.07 +perforants perforant adj m p 0.32 0.14 0.12 0.00 +perforateur perforateur nom m s 0.05 0.14 0.05 0.07 +perforation perforation nom f s 0.67 0.88 0.53 0.47 +perforations perforation nom f p 0.67 0.88 0.14 0.41 +perforatrice perforateur nom f s 0.05 0.14 0.00 0.07 +perfore perforer ver 1.45 1.35 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +perforer perforer ver 1.45 1.35 0.21 0.47 inf; +perforera perforer ver 1.45 1.35 0.01 0.00 ind:fut:3s; +perforeuse perforeuse nom f s 0.04 0.14 0.04 0.14 +perforez perforer ver 1.45 1.35 0.01 0.00 imp:pre:2p; +perforions perforer ver 1.45 1.35 0.00 0.07 ind:imp:1p; +performance performance nom f s 4.71 4.19 3.48 2.23 +performances performance nom f p 4.71 4.19 1.23 1.96 +performant performant adj m s 0.90 0.41 0.48 0.14 +performante performant adj f s 0.90 0.41 0.11 0.00 +performantes performant adj f p 0.90 0.41 0.04 0.07 +performants performant adj m p 0.90 0.41 0.27 0.20 +performer performer nom m s 0.00 0.07 0.00 0.07 +perforé perforer ver m s 1.45 1.35 0.87 0.27 par:pas; +perforée perforer ver f s 1.45 1.35 0.07 0.14 par:pas; +perforées perforé adj f p 0.62 0.81 0.03 0.27 +perforés perforé adj m p 0.62 0.81 0.10 0.14 +perfuse perfuser ver 0.25 0.00 0.15 0.00 ind:pre:3s; +perfuser perfuser ver 0.25 0.00 0.08 0.00 inf; +perfusion perfusion nom f s 2.14 0.81 1.95 0.54 +perfusions perfusion nom f p 2.14 0.81 0.19 0.27 +perfusé perfuser ver m s 0.25 0.00 0.02 0.00 par:pas; +pergola pergola nom f s 0.10 0.68 0.10 0.68 +pergélisol pergélisol nom m s 0.01 0.00 0.01 0.00 +perla perler ver 0.38 7.77 0.01 0.14 ind:pas:3s; +perlaient perler ver 0.38 7.77 0.00 0.81 ind:imp:3p; +perlait perler ver 0.38 7.77 0.00 1.89 ind:imp:3s; +perlant perler ver 0.38 7.77 0.00 0.34 par:pre; +perle perle nom f s 10.57 23.85 4.13 7.30 +perlent perler ver 0.38 7.77 0.14 0.41 ind:pre:3p; +perler perler ver 0.38 7.77 0.02 1.42 inf; +perleront perler ver 0.38 7.77 0.01 0.00 ind:fut:3p; +perles perle nom f p 10.57 23.85 6.44 16.55 +perlimpinpin perlimpinpin nom m s 0.03 0.20 0.03 0.20 +perlière perlière adj f s 0.01 0.00 0.01 0.00 +perlières perlier adj f p 0.00 0.27 0.00 0.07 +perlot perlot nom m s 0.00 0.34 0.00 0.27 +perlots perlot nom m p 0.00 0.34 0.00 0.07 +perlouse perlouse nom f s 0.00 0.74 0.00 0.20 +perlouses perlouse nom f p 0.00 0.74 0.00 0.54 +perlouze perlouze nom f s 0.00 0.47 0.00 0.34 +perlouzes perlouze nom f p 0.00 0.47 0.00 0.14 +perlèrent perler ver 0.38 7.77 0.00 0.07 ind:pas:3p; +perlé perler ver m s 0.38 7.77 0.14 0.20 par:pas; +perlée perlé adj f s 0.11 1.01 0.01 0.34 +perlées perlé adj f p 0.11 1.01 0.00 0.14 +perlés perlé adj m p 0.11 1.01 0.10 0.07 +perm perm nom f s 1.38 1.22 1.38 1.01 +permît permettre ver 172.86 184.19 0.00 2.23 sub:imp:3s; +permafrost permafrost nom m s 0.07 0.14 0.07 0.14 +permalloy permalloy nom m s 0.01 0.00 0.01 0.00 +permane permaner ver 0.00 0.14 0.00 0.14 ind:pre:3s; +permanence permanence nom f s 5.87 12.64 5.85 12.30 +permanences permanence nom f p 5.87 12.64 0.02 0.34 +permanent permanent adj m s 8.86 14.80 3.73 7.97 +permanente permanent adj f s 8.86 14.80 4.03 5.20 +permanenter permanenter ver 0.07 0.14 0.02 0.00 inf; +permanentes permanent adj f p 8.86 14.80 0.63 0.41 +permanents permanent adj m p 8.86 14.80 0.48 1.22 +permanenté permanenter ver m s 0.07 0.14 0.01 0.00 par:pas; +permanentée permanenter ver f s 0.07 0.14 0.01 0.00 par:pas; +permanentés permanenter ver m p 0.07 0.14 0.01 0.14 par:pas; +permanganate permanganate nom m s 0.04 0.20 0.04 0.20 +perme perme nom f s 0.58 1.22 0.57 1.22 +permes perme nom f p 0.58 1.22 0.01 0.00 +permet permettre ver 172.86 184.19 22.88 23.99 ind:pre:3s; +permets permettre ver 172.86 184.19 16.70 6.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +permettaient permettre ver 172.86 184.19 0.17 7.43 ind:imp:3p; +permettais permettre ver 172.86 184.19 0.10 0.61 ind:imp:1s;ind:imp:2s; +permettait permettre ver 172.86 184.19 2.04 26.22 ind:imp:3s; +permettant permettre ver 172.86 184.19 2.23 6.15 par:pre; +permette permettre ver 172.86 184.19 1.68 2.03 sub:pre:1s;sub:pre:3s; +permettent permettre ver 172.86 184.19 4.38 7.23 ind:pre:3p; +permettes permettre ver 172.86 184.19 0.04 0.00 sub:pre:2s; +permettez permettre ver 172.86 184.19 48.28 10.14 imp:pre:2p;ind:pre:2p; +permettiez permettre ver 172.86 184.19 0.03 0.07 ind:imp:2p; +permettions permettre ver 172.86 184.19 0.02 0.27 ind:imp:1p; +permettons permettre ver 172.86 184.19 0.17 0.14 imp:pre:1p;ind:pre:1p; +permettra permettre ver 172.86 184.19 6.38 3.85 ind:fut:3s; +permettrai permettre ver 172.86 184.19 3.96 0.88 ind:fut:1s; +permettraient permettre ver 172.86 184.19 0.42 2.16 cnd:pre:3p; +permettrais permettre ver 172.86 184.19 1.11 0.54 cnd:pre:1s;cnd:pre:2s; +permettrait permettre ver 172.86 184.19 3.11 8.24 cnd:pre:3s; +permettras permettre ver 172.86 184.19 0.05 0.27 ind:fut:2s; +permettre permettre ver 172.86 184.19 26.32 25.81 inf;; +permettrez permettre ver 172.86 184.19 0.84 0.14 ind:fut:2p; +permettriez permettre ver 172.86 184.19 0.02 0.07 cnd:pre:2p; +permettrions permettre ver 172.86 184.19 0.01 0.00 cnd:pre:1p; +permettrons permettre ver 172.86 184.19 0.12 0.00 ind:fut:1p; +permettront permettre ver 172.86 184.19 0.91 1.62 ind:fut:3p; +permirent permettre ver 172.86 184.19 0.24 1.89 ind:pas:3p; +permis permettre ver m 172.86 184.19 28.04 35.54 ind:pas:1s;par:pas;par:pas; +permise permettre ver f s 172.86 184.19 0.94 1.28 par:pas; +permises permettre ver f p 172.86 184.19 0.30 0.47 par:pas; +permissent permettre ver 172.86 184.19 0.00 0.07 sub:imp:3p; +permissifs permissif adj m p 0.09 0.07 0.01 0.07 +permission permission nom f s 31.18 19.12 30.11 17.70 +permissionnaire permissionnaire nom s 0.16 1.96 0.01 0.47 +permissionnaires permissionnaire nom p 0.16 1.96 0.14 1.49 +permissions permission nom f p 31.18 19.12 1.07 1.42 +permissive permissif adj f s 0.09 0.07 0.08 0.00 +permissivité permissivité nom f s 0.00 0.14 0.00 0.14 +permit permettre ver 172.86 184.19 1.39 8.58 ind:pas:3s; +perméabilité perméabilité nom f s 0.01 0.00 0.01 0.00 +perméable perméable adj s 0.23 1.01 0.19 0.88 +perméables perméable adj p 0.23 1.01 0.04 0.14 +permutant permutant adj m s 0.01 0.07 0.01 0.07 +permutation permutation nom f s 0.37 0.81 0.26 0.41 +permutations permutation nom f p 0.37 0.81 0.11 0.41 +permute permuter ver 0.41 0.41 0.24 0.00 ind:pre:1s;ind:pre:3s; +permutent permuter ver 0.41 0.41 0.00 0.07 ind:pre:3p; +permuter permuter ver 0.41 0.41 0.13 0.20 inf; +permutèrent permuter ver 0.41 0.41 0.00 0.07 ind:pas:3p; +permuté permuter ver m s 0.41 0.41 0.03 0.07 par:pas; +pernicieuse pernicieux adj f s 0.40 2.16 0.20 0.74 +pernicieuses pernicieux adj f p 0.40 2.16 0.02 0.34 +pernicieux pernicieux adj m 0.40 2.16 0.18 1.08 +pernod pernod nom m s 0.17 4.73 0.17 4.46 +pernods pernod nom m p 0.17 4.73 0.00 0.27 +peroxydase peroxydase nom f s 0.01 0.00 0.01 0.00 +peroxyde peroxyde nom m s 0.17 0.00 0.17 0.00 +peroxydé peroxyder ver m s 0.15 0.07 0.15 0.07 par:pas; +perpendiculaire perpendiculaire adj s 0.23 1.89 0.21 1.35 +perpendiculairement perpendiculairement adv 0.02 1.15 0.02 1.15 +perpendiculaires perpendiculaire adj p 0.23 1.89 0.02 0.54 +perpette perpette nom f s 0.21 0.41 0.21 0.41 +perpignan perpignan nom m s 0.00 0.14 0.00 0.14 +perplexe perplexe adj s 2.27 10.81 2.03 9.39 +perplexes perplexe adj p 2.27 10.81 0.24 1.42 +perplexité perplexité nom f s 0.21 5.54 0.21 4.66 +perplexités perplexité nom f p 0.21 5.54 0.00 0.88 +perpète perpète adv 1.46 1.49 1.46 1.49 +perpètrent perpétrer ver 1.86 2.03 0.01 0.00 ind:pre:3p; +perpètres perpétrer ver 1.86 2.03 0.00 0.07 ind:pre:2s; +perpétra perpétrer ver 1.86 2.03 0.01 0.00 ind:pas:3s; +perpétrait perpétrer ver 1.86 2.03 0.01 0.14 ind:imp:3s; +perpétration perpétration nom f s 0.11 0.07 0.11 0.07 +perpétrer perpétrer ver 1.86 2.03 0.35 0.68 inf; +perpétrons perpétrer ver 1.86 2.03 0.00 0.07 ind:pre:1p; +perpétré perpétrer ver m s 1.86 2.03 0.94 0.41 par:pas; +perpétrée perpétrer ver f s 1.86 2.03 0.09 0.20 par:pas; +perpétrées perpétrer ver f p 1.86 2.03 0.09 0.07 par:pas; +perpétrés perpétrer ver m p 1.86 2.03 0.36 0.41 par:pas; +perpétua perpétuer ver 2.81 3.92 0.32 0.00 ind:pas:3s; +perpétuaient perpétuer ver 2.81 3.92 0.00 0.47 ind:imp:3p; +perpétuait perpétuer ver 2.81 3.92 0.01 0.47 ind:imp:3s; +perpétuant perpétuer ver 2.81 3.92 0.03 0.07 par:pre; +perpétuation perpétuation nom f s 0.04 0.54 0.04 0.54 +perpétue perpétuer ver 2.81 3.92 0.18 0.68 ind:pre:1s;ind:pre:3s; +perpétuel perpétuel adj m s 3.00 18.24 1.87 8.04 +perpétuelle perpétuel adj f s 3.00 18.24 0.83 7.43 +perpétuellement perpétuellement adv 0.26 4.66 0.26 4.66 +perpétuelles perpétuel adj f p 3.00 18.24 0.15 1.62 +perpétuels perpétuel adj m p 3.00 18.24 0.15 1.15 +perpétuent perpétuer ver 2.81 3.92 0.05 0.20 ind:pre:3p; +perpétuer perpétuer ver 2.81 3.92 1.73 1.62 inf; +perpétuera perpétuer ver 2.81 3.92 0.38 0.00 ind:fut:3s; +perpétuerait perpétuer ver 2.81 3.92 0.00 0.07 cnd:pre:3s; +perpétuité perpétuité nom f s 3.24 2.09 3.11 2.09 +perpétuités perpétuité nom f p 3.24 2.09 0.13 0.00 +perpétué perpétuer ver m s 2.81 3.92 0.09 0.27 par:pas; +perpétuée perpétuer ver f s 2.81 3.92 0.03 0.00 par:pas; +perpétués perpétuer ver m p 2.81 3.92 0.00 0.07 par:pas; +perquise perquise nom f s 0.14 0.54 0.14 0.54 +perquisition perquisition nom f s 3.75 2.30 3.54 1.82 +perquisitionne perquisitionner ver 1.30 0.74 0.14 0.20 ind:pre:1s;ind:pre:3s; +perquisitionnent perquisitionner ver 1.30 0.74 0.11 0.00 ind:pre:3p; +perquisitionner perquisitionner ver 1.30 0.74 0.72 0.47 inf; +perquisitionnera perquisitionner ver 1.30 0.74 0.01 0.00 ind:fut:3s; +perquisitionné perquisitionner ver m s 1.30 0.74 0.31 0.07 par:pas; +perquisitions perquisition nom f p 3.75 2.30 0.21 0.47 +perrier perrier nom m s 0.01 0.00 0.01 0.00 +perrières perrière nom f p 0.00 0.14 0.00 0.14 +perron perron nom m s 1.27 18.24 1.27 17.91 +perrons perron nom m p 1.27 18.24 0.00 0.34 +perroquet perroquet nom m s 5.55 8.78 4.39 7.36 +perroquets perroquet nom m p 5.55 8.78 1.17 1.42 +perré perré nom m s 0.00 0.41 0.00 0.27 +perruche perruche nom f s 0.78 2.84 0.47 0.81 +perruches perruche nom f p 0.78 2.84 0.31 2.03 +perruque perruque nom f s 9.68 9.59 8.03 7.03 +perruques perruque nom f p 9.68 9.59 1.65 2.57 +perruquier perruquier nom m s 0.07 0.27 0.04 0.14 +perruquiers perruquier nom m p 0.07 0.27 0.02 0.07 +perruquière perruquier nom f s 0.07 0.27 0.01 0.07 +perrés perré nom m p 0.00 0.41 0.00 0.14 +pers pers adj m 0.25 0.27 0.25 0.27 +persan persan adj m s 0.53 3.04 0.25 1.08 +persane persan adj f s 0.53 3.04 0.06 0.68 +persanes persan adj f p 0.53 3.04 0.00 0.54 +persans persan adj m p 0.53 3.04 0.22 0.74 +perse perse adj s 0.92 0.74 0.48 0.47 +perses perse adj p 0.92 0.74 0.44 0.27 +persienne persienne nom f s 0.37 7.16 0.01 0.41 +persiennes persienne nom f p 0.37 7.16 0.36 6.76 +persifla persifler ver 0.17 0.68 0.00 0.27 ind:pas:3s; +persiflage persiflage nom m s 0.19 0.41 0.19 0.34 +persiflages persiflage nom m p 0.19 0.41 0.00 0.07 +persiflait persifler ver 0.17 0.68 0.00 0.27 ind:imp:3s; +persifle persifler ver 0.17 0.68 0.02 0.00 ind:pre:3s; +persifler persifler ver 0.17 0.68 0.14 0.14 inf; +persifleur persifleur adj m s 0.00 0.41 0.00 0.20 +persifleurs persifleur nom m p 0.00 0.20 0.00 0.14 +persifleuse persifleur adj f s 0.00 0.41 0.00 0.14 +persiflé persifler ver m s 0.17 0.68 0.01 0.00 par:pas; +persil persil nom m s 1.75 2.36 1.75 2.36 +persillé persillé adj m s 0.01 0.41 0.00 0.34 +persillée persillé adj f s 0.01 0.41 0.01 0.00 +persillées persillé adj f p 0.01 0.41 0.00 0.07 +persique persique adj m s 0.17 0.34 0.17 0.34 +persista persister ver 3.66 15.41 0.02 0.81 ind:pas:3s; +persistai persister ver 3.66 15.41 0.01 0.07 ind:pas:1s; +persistaient persister ver 3.66 15.41 0.02 1.22 ind:imp:3p; +persistais persister ver 3.66 15.41 0.02 0.14 ind:imp:1s; +persistait persister ver 3.66 15.41 0.04 4.32 ind:imp:3s; +persistance persistance nom f s 0.17 1.76 0.17 1.76 +persistant persistant adj m s 0.67 2.64 0.17 1.22 +persistante persistant adj f s 0.67 2.64 0.31 1.08 +persistantes persistant adj f p 0.67 2.64 0.11 0.34 +persistants persistant adj m p 0.67 2.64 0.07 0.00 +persiste persister ver 3.66 15.41 1.11 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persistent persister ver 3.66 15.41 0.32 0.81 ind:pre:3p; +persister persister ver 3.66 15.41 0.27 0.88 inf; +persistera persister ver 3.66 15.41 0.12 0.07 ind:fut:3s; +persisterai persister ver 3.66 15.41 0.01 0.07 ind:fut:1s; +persisterait persister ver 3.66 15.41 0.01 0.07 cnd:pre:3s; +persisteriez persister ver 3.66 15.41 0.00 0.07 cnd:pre:2p; +persistes persister ver 3.66 15.41 0.47 0.34 ind:pre:2s; +persistez persister ver 3.66 15.41 1.06 0.74 imp:pre:2p;ind:pre:2p; +persistions persister ver 3.66 15.41 0.00 0.14 ind:imp:1p; +persistons persister ver 3.66 15.41 0.01 0.07 imp:pre:1p;ind:pre:1p; +persistèrent persister ver 3.66 15.41 0.01 0.07 ind:pas:3p; +persisté persister ver m s 3.66 15.41 0.14 0.54 par:pas; +perso perso adj s 2.38 0.20 2.33 0.20 +persona_grata persona_grata adj 0.01 0.00 0.01 0.00 +persona_non_grata persona_non_grata nom f 0.08 0.07 0.08 0.07 +personnage_clé personnage_clé nom m s 0.02 0.00 0.02 0.00 +personnage personnage nom m s 31.62 86.96 20.65 49.80 +personnages personnage nom m p 31.62 86.96 10.97 37.16 +personnalisaient personnaliser ver 0.30 0.47 0.00 0.07 ind:imp:3p; +personnalisation personnalisation nom f s 0.05 0.00 0.05 0.00 +personnalise personnaliser ver 0.30 0.47 0.00 0.07 ind:pre:3s; +personnalisent personnaliser ver 0.30 0.47 0.00 0.07 ind:pre:3p; +personnaliser personnaliser ver 0.30 0.47 0.10 0.07 inf; +personnalisez personnaliser ver 0.30 0.47 0.01 0.00 imp:pre:2p; +personnalisme personnalisme nom m s 0.00 0.20 0.00 0.20 +personnalisons personnaliser ver 0.30 0.47 0.01 0.00 imp:pre:1p; +personnalisé personnalisé adj m s 0.64 0.27 0.39 0.07 +personnalisée personnalisé adj f s 0.64 0.27 0.20 0.07 +personnalisées personnalisé adj f p 0.64 0.27 0.05 0.14 +personnalité personnalité nom f s 16.90 19.86 13.85 13.24 +personnalités personnalité nom f p 16.90 19.86 3.04 6.62 +personne personne pro_ind m s 577.60 312.16 577.60 312.16 +personnel personnel adj m s 61.02 50.00 28.48 18.38 +personnelle personnel adj f s 61.02 50.00 15.28 17.30 +personnellement personnellement adv 18.39 14.93 18.39 14.93 +personnelles personnel adj f p 61.02 50.00 7.66 7.36 +personnels personnel adj m p 61.02 50.00 9.60 6.96 +personnes personne nom_sup f p 296.74 209.80 105.79 63.85 +personnifiaient personnifier ver 0.28 0.74 0.00 0.07 ind:imp:3p; +personnifiait personnifier ver 0.28 0.74 0.03 0.07 ind:imp:3s; +personnifiant personnifier ver 0.28 0.74 0.00 0.07 par:pre; +personnification personnification nom f s 0.30 0.20 0.30 0.14 +personnifications personnification nom f p 0.30 0.20 0.00 0.07 +personnifie personnifier ver 0.28 0.74 0.05 0.14 ind:pre:1s;ind:pre:3s; +personnifier personnifier ver 0.28 0.74 0.04 0.07 inf; +personnifié personnifié adj m s 0.30 0.54 0.17 0.41 +personnifiée personnifié adj f s 0.30 0.54 0.14 0.14 +persos perso adj p 2.38 0.20 0.06 0.00 +perspective perspective nom f s 7.33 36.76 5.47 27.64 +perspectives perspective nom f p 7.33 36.76 1.86 9.12 +perspicace perspicace adj s 2.31 2.50 2.16 1.69 +perspicaces perspicace adj m p 2.31 2.50 0.15 0.81 +perspicacité perspicacité nom f s 0.95 1.28 0.95 1.28 +perspiration perspiration nom f s 0.03 0.00 0.03 0.00 +persuada persuader ver 19.86 36.55 0.24 1.76 ind:pas:3s; +persuadai persuader ver 19.86 36.55 0.01 0.68 ind:pas:1s; +persuadaient persuader ver 19.86 36.55 0.02 0.34 ind:imp:3p; +persuadais persuader ver 19.86 36.55 0.01 0.88 ind:imp:1s; +persuadait persuader ver 19.86 36.55 0.28 1.15 ind:imp:3s; +persuadant persuader ver 19.86 36.55 0.24 1.22 par:pre; +persuade persuader ver 19.86 36.55 1.55 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persuadent persuader ver 19.86 36.55 0.36 0.07 ind:pre:3p; +persuader persuader ver 19.86 36.55 4.50 12.23 inf; +persuadera persuader ver 19.86 36.55 0.29 0.07 ind:fut:3s; +persuaderai persuader ver 19.86 36.55 0.03 0.07 ind:fut:1s; +persuaderais persuader ver 19.86 36.55 0.02 0.07 cnd:pre:1s; +persuaderait persuader ver 19.86 36.55 0.00 0.14 cnd:pre:3s; +persuaderas persuader ver 19.86 36.55 0.03 0.00 ind:fut:2s; +persuaderez persuader ver 19.86 36.55 0.05 0.00 ind:fut:2p; +persuaderons persuader ver 19.86 36.55 0.02 0.00 ind:fut:1p; +persuadez persuader ver 19.86 36.55 0.83 0.00 imp:pre:2p;ind:pre:2p; +persuadiez persuader ver 19.86 36.55 0.04 0.00 ind:imp:2p; +persuadons persuader ver 19.86 36.55 0.04 0.07 imp:pre:1p;ind:pre:1p; +persuadèrent persuader ver 19.86 36.55 0.01 0.20 ind:pas:3p; +persuadé persuader ver m s 19.86 36.55 7.17 10.07 par:pas; +persuadée persuader ver f s 19.86 36.55 2.65 3.78 ind:imp:3s;par:pas; +persuadées persuader ver f p 19.86 36.55 0.01 0.00 par:pas; +persuadés persuader ver m p 19.86 36.55 1.46 1.62 par:pas; +persuasif persuasif adj m s 1.28 2.50 0.80 1.15 +persuasifs persuasif adj m p 1.28 2.50 0.16 0.27 +persuasion persuasion nom f s 0.81 2.09 0.81 2.09 +persuasive persuasif adj f s 1.28 2.50 0.33 0.81 +persuasives persuasif adj f p 1.28 2.50 0.00 0.27 +persécutaient persécuter ver 4.52 4.19 0.00 0.07 ind:imp:3p; +persécutait persécuter ver 4.52 4.19 0.05 0.07 ind:imp:3s; +persécutant persécuter ver 4.52 4.19 0.01 0.34 par:pre; +persécute persécuter ver 4.52 4.19 1.22 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persécutent persécuter ver 4.52 4.19 0.47 0.27 ind:pre:3p; +persécuter persécuter ver 4.52 4.19 0.75 0.47 inf; +persécuteraient persécuter ver 4.52 4.19 0.00 0.07 cnd:pre:3p; +persécuterez persécuter ver 4.52 4.19 0.14 0.00 ind:fut:2p; +persécutes persécuter ver 4.52 4.19 0.16 0.00 ind:pre:2s; +persécuteur persécuteur nom m s 0.25 0.95 0.05 0.20 +persécuteurs persécuteur nom m p 0.25 0.95 0.20 0.68 +persécutez persécuter ver 4.52 4.19 0.08 0.00 imp:pre:2p;ind:pre:2p; +persécution persécution nom f s 2.40 4.66 1.79 2.09 +persécutions persécution nom f p 2.40 4.66 0.61 2.57 +persécutrices persécuteur nom f p 0.25 0.95 0.00 0.07 +persécuté persécuter ver m s 4.52 4.19 0.60 1.49 par:pas; +persécutée persécuter ver f s 4.52 4.19 0.37 0.20 par:pas; +persécutées persécuter ver f p 4.52 4.19 0.04 0.20 par:pas; +persécutés persécuter ver m p 4.52 4.19 0.63 0.47 par:pas; +perséides perséides nom f p 0.01 0.00 0.01 0.00 +persévère persévérer ver 1.47 3.24 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persévères persévérer ver 1.47 3.24 0.12 0.00 ind:pre:2s; +persévéra persévérer ver 1.47 3.24 0.00 0.14 ind:pas:3s; +persévérai persévérer ver 1.47 3.24 0.00 0.27 ind:pas:1s; +persévéraient persévérer ver 1.47 3.24 0.00 0.07 ind:imp:3p; +persévérait persévérer ver 1.47 3.24 0.01 0.20 ind:imp:3s; +persévéramment persévéramment adv 0.00 0.07 0.00 0.07 +persévérance persévérance nom f s 0.75 2.09 0.75 2.09 +persévérant persévérant adj m s 0.36 0.34 0.30 0.14 +persévérante persévérant adj f s 0.36 0.34 0.04 0.00 +persévérantes persévérant adj f p 0.36 0.34 0.00 0.14 +persévérants persévérant adj m p 0.36 0.34 0.02 0.07 +persévérer persévérer ver 1.47 3.24 0.48 1.28 inf; +persévérerai persévérer ver 1.47 3.24 0.02 0.00 ind:fut:1s; +persévérerait persévérer ver 1.47 3.24 0.01 0.00 cnd:pre:3s; +persévérez persévérer ver 1.47 3.24 0.24 0.20 imp:pre:2p;ind:pre:2p; +persévériez persévérer ver 1.47 3.24 0.00 0.07 ind:imp:2p; +persévérions persévérer ver 1.47 3.24 0.01 0.00 ind:imp:1p; +persévérons persévérer ver 1.47 3.24 0.04 0.20 imp:pre:1p;ind:pre:1p; +persévéré persévérer ver m s 1.47 3.24 0.12 0.27 par:pas; +perte perte nom f s 37.80 36.28 30.20 26.62 +pertes perte nom f p 37.80 36.28 7.60 9.66 +perçût percevoir ver 7.39 41.01 0.00 0.14 sub:imp:3s; +perça percer ver 15.77 42.03 0.04 1.15 ind:pas:3s; +perçage perçage nom m s 0.03 0.07 0.03 0.07 +perçaient percer ver 15.77 42.03 0.23 2.03 ind:imp:3p; +perçais percer ver 15.77 42.03 0.01 0.20 ind:imp:1s; +perçait percer ver 15.77 42.03 0.31 5.00 ind:imp:3s; +perçant perçant adj m s 0.90 5.74 0.41 2.50 +perçante perçant adj f s 0.90 5.74 0.22 0.81 +perçantes perçant adj f p 0.90 5.74 0.00 0.14 +perçants perçant adj m p 0.90 5.74 0.27 2.30 +perçois percevoir ver 7.39 41.01 1.50 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +perçoit percevoir ver 7.39 41.01 0.90 4.73 ind:pre:3s; +perçoive percevoir ver 7.39 41.01 0.13 0.47 sub:pre:1s;sub:pre:3s; +perçoivent percevoir ver 7.39 41.01 0.26 0.81 ind:pre:3p; +perçons percer ver 15.77 42.03 0.05 0.00 imp:pre:1p;ind:pre:1p; +perçât percer ver 15.77 42.03 0.00 0.07 sub:imp:3s; +perçu percevoir ver m s 7.39 41.01 1.41 4.53 par:pas; +perçue percevoir ver f s 7.39 41.01 0.40 0.81 par:pas; +perçues perçu adj f p 0.31 1.35 0.06 0.07 +perçurent percevoir ver 7.39 41.01 0.01 0.41 ind:pas:3p; +perçus percevoir ver m p 7.39 41.01 0.24 1.35 ind:pas:1s;par:pas; +perçut percevoir ver 7.39 41.01 0.05 4.32 ind:pas:3s; +pertinemment pertinemment adv 0.77 1.49 0.77 1.49 +pertinence pertinence nom f s 0.57 0.34 0.57 0.34 +pertinent pertinent adj m s 2.22 1.28 1.10 0.41 +pertinente pertinent adj f s 2.22 1.28 0.58 0.27 +pertinentes pertinent adj f p 2.22 1.28 0.33 0.41 +pertinents pertinent adj m p 2.22 1.28 0.21 0.20 +pertuis pertuis nom m 0.00 0.34 0.00 0.34 +pertuisane pertuisane nom f s 0.00 0.20 0.00 0.07 +pertuisanes pertuisane nom f p 0.00 0.20 0.00 0.14 +perturba perturber ver 11.79 3.58 0.03 0.00 ind:pas:3s; +perturbaient perturber ver 11.79 3.58 0.01 0.07 ind:imp:3p; +perturbait perturber ver 11.79 3.58 0.28 0.27 ind:imp:3s; +perturbant perturbant adj m s 1.00 0.14 0.83 0.07 +perturbante perturbant adj f s 1.00 0.14 0.13 0.00 +perturbants perturbant adj m p 1.00 0.14 0.04 0.07 +perturbateur perturbateur adj m s 0.36 0.54 0.27 0.34 +perturbateurs perturbateur nom m p 0.17 0.20 0.06 0.00 +perturbation perturbation nom f s 1.79 1.55 1.20 0.47 +perturbations perturbation nom f p 1.79 1.55 0.59 1.08 +perturbatrice perturbateur adj f s 0.36 0.54 0.04 0.07 +perturbe perturber ver 11.79 3.58 2.54 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +perturbent perturber ver 11.79 3.58 0.32 0.07 ind:pre:3p; +perturber perturber ver 11.79 3.58 2.66 1.15 inf; +perturbera perturber ver 11.79 3.58 0.10 0.00 ind:fut:3s; +perturberait perturber ver 11.79 3.58 0.12 0.00 cnd:pre:3s; +perturberont perturber ver 11.79 3.58 0.02 0.00 ind:fut:3p; +perturbez perturber ver 11.79 3.58 0.12 0.00 ind:pre:2p; +perturbé perturber ver m s 11.79 3.58 2.83 1.01 par:pas; +perturbée perturber ver f s 11.79 3.58 2.08 0.34 par:pas; +perturbées perturber ver f p 11.79 3.58 0.20 0.00 par:pas; +perturbés perturbé adj m p 3.81 0.74 0.52 0.34 +pervenche pervenche adj 0.33 1.08 0.33 1.08 +pervenches pervenche nom f p 0.37 0.81 0.08 0.47 +pervers pervers nom m 8.01 0.88 7.77 0.54 +perverse pervers adj f s 5.83 6.15 1.27 2.23 +perversement perversement adv 0.00 0.14 0.00 0.14 +perverses pervers adj f p 5.83 6.15 0.41 0.54 +perversion perversion nom f s 3.00 1.69 1.61 1.22 +perversions perversion nom f p 3.00 1.69 1.39 0.47 +perversité perversité nom f s 0.72 1.49 0.72 1.49 +perverti perverti adj m s 0.74 0.61 0.45 0.14 +pervertie pervertir ver f s 1.55 1.49 0.17 0.20 par:pas; +perverties perverti adj f p 0.74 0.61 0.03 0.07 +pervertir pervertir ver 1.55 1.49 0.65 0.74 inf; +pervertis perverti adj m p 0.74 0.61 0.16 0.20 +pervertissaient pervertir ver 1.55 1.49 0.00 0.07 ind:imp:3p; +pervertissait pervertir ver 1.55 1.49 0.00 0.07 ind:imp:3s; +pervertissant pervertir ver 1.55 1.49 0.01 0.00 par:pre; +pervertisse pervertir ver 1.55 1.49 0.02 0.00 sub:pre:1s;sub:pre:3s; +pervertit pervertir ver 1.55 1.49 0.29 0.00 ind:pre:3s; +pesa peser ver 23.41 70.88 0.01 2.16 ind:pas:3s; +pesage pesage nom m s 0.00 0.68 0.00 0.68 +pesai peser ver 23.41 70.88 0.00 0.07 ind:pas:1s; +pesaient peser ver 23.41 70.88 0.35 3.99 ind:imp:3p; +pesais peser ver 23.41 70.88 0.27 0.81 ind:imp:1s;ind:imp:2s; +pesait peser ver 23.41 70.88 1.95 18.72 ind:imp:3s; +pesamment pesamment adv 0.00 4.93 0.00 4.93 +pesant pesant adj m s 2.62 17.64 1.21 6.76 +pesante pesant adj f s 2.62 17.64 0.79 6.69 +pesantes pesant adj f p 2.62 17.64 0.01 2.16 +pesanteur pesanteur nom f s 1.12 6.96 1.12 6.69 +pesanteurs pesanteur nom f p 1.12 6.96 0.00 0.27 +pesants pesant adj m p 2.62 17.64 0.61 2.03 +peser peser ver 23.41 70.88 3.92 13.72 inf; +peseta peseta nom f s 6.92 0.68 0.11 0.07 +pesetas peseta nom f p 6.92 0.68 6.81 0.61 +peseurs peseur nom m p 0.00 0.07 0.00 0.07 +pesez peser ver 23.41 70.88 0.88 0.14 imp:pre:2p;ind:pre:2p; +pesions peser ver 23.41 70.88 0.00 0.14 ind:imp:1p; +peso peso nom m s 11.02 0.81 0.73 0.20 +peson peson nom m s 0.00 0.20 0.00 0.20 +pesons peser ver 23.41 70.88 0.16 0.27 imp:pre:1p;ind:pre:1p; +pesos peso nom m p 11.02 0.81 10.29 0.61 +pesât peser ver 23.41 70.88 0.00 0.07 sub:imp:3s; +pessah pessah nom s 0.03 0.00 0.03 0.00 +pessaire pessaire nom m s 0.01 0.00 0.01 0.00 +pesse pesse nom f s 0.01 0.00 0.01 0.00 +pessimisme pessimisme nom m s 0.75 2.30 0.75 2.30 +pessimiste pessimiste adj s 1.45 3.65 1.38 2.50 +pessimistes pessimiste nom p 0.41 0.81 0.07 0.20 +pesta pester ver 0.34 4.59 0.00 0.54 ind:pas:3s; +pestaient pester ver 0.34 4.59 0.00 0.07 ind:imp:3p; +pestais pester ver 0.34 4.59 0.03 0.14 ind:imp:1s;ind:imp:2s; +pestait pester ver 0.34 4.59 0.01 1.15 ind:imp:3s; +pestant pester ver 0.34 4.59 0.02 1.08 par:pre; +peste peste ono 0.40 0.20 0.40 0.20 +pestent pester ver 0.34 4.59 0.16 0.20 ind:pre:3p; +pester pester ver 0.34 4.59 0.02 0.61 inf; +pestes peste nom f p 16.95 8.31 0.27 0.07 +pesteuse pesteux adj f s 0.00 0.07 0.00 0.07 +pestez pester ver 0.34 4.59 0.00 0.07 ind:pre:2p; +pesèrent peser ver 23.41 70.88 0.01 0.07 ind:pas:3p; +pesticide pesticide nom m s 1.11 0.00 0.21 0.00 +pesticides pesticide nom m p 1.11 0.00 0.90 0.00 +pestiféré pestiféré nom m s 0.71 1.01 0.15 0.20 +pestiférée pestiféré nom f s 0.71 1.01 0.21 0.07 +pestiférées pestiféré nom f p 0.71 1.01 0.00 0.07 +pestiférés pestiféré nom m p 0.71 1.01 0.36 0.68 +pestilence pestilence nom f s 0.08 1.22 0.06 1.15 +pestilences pestilence nom f p 0.08 1.22 0.02 0.07 +pestilentiel pestilentiel adj m s 0.63 1.08 0.27 0.14 +pestilentielle pestilentiel adj f s 0.63 1.08 0.04 0.54 +pestilentielles pestilentiel adj f p 0.63 1.08 0.30 0.27 +pestilentiels pestilentiel adj m p 0.63 1.08 0.01 0.14 +pesté pester ver m s 0.34 4.59 0.00 0.20 par:pas; +pesé peser ver m s 23.41 70.88 0.97 5.27 par:pas; +pesée pesée nom f s 0.61 2.36 0.61 2.09 +pesées peser ver f p 23.41 70.88 0.02 0.14 par:pas; +pesés peser ver m p 23.41 70.88 0.02 0.61 par:pas; +pet_de_loup pet_de_loup nom m s 0.00 0.07 0.00 0.07 +pet pet nom m s 4.30 5.41 3.51 4.53 +petiot petiot adj m s 0.69 1.49 0.56 0.81 +petiote petiot adj f s 0.69 1.49 0.11 0.54 +petiots petiot adj m p 0.69 1.49 0.03 0.14 +petit_beurre petit_beurre nom m s 0.00 0.95 0.00 0.14 +petit_bourgeois petit_bourgeois adj m 0.77 1.42 0.77 1.42 +petit_cousin petit_cousin nom m s 0.00 0.07 0.00 0.07 +petit_déjeuner petit_déjeuner nom m s 13.51 0.07 13.37 0.00 +petit_fils petit_fils nom m 12.90 12.70 12.50 11.01 +petit_four petit_four nom m s 0.08 0.07 0.03 0.00 +petit_gris petit_gris nom m 0.51 0.00 0.27 0.00 +petit_lait petit_lait nom m s 0.05 0.54 0.05 0.54 +petit_maître petit_maître nom m s 0.20 0.07 0.20 0.07 +petit_neveu petit_neveu nom m s 0.04 0.95 0.04 0.61 +petit_nègre petit_nègre nom m s 0.00 0.14 0.00 0.14 +petit_salé petit_salé nom m s 0.00 0.07 0.00 0.07 +petit_suisse petit_suisse nom m s 0.01 0.20 0.01 0.00 +petit petit adj m s 1106.80 1541.96 573.72 653.78 +petite_bourgeoise petite_bourgeoise adj f s 0.11 0.27 0.11 0.27 +petite_cousine petite_cousine nom f s 0.00 0.14 0.00 0.14 +petite_fille petite_fille nom f s 5.30 6.35 4.97 5.74 +petite_nièce petite_nièce nom f s 0.02 0.20 0.02 0.20 +petite petit adj f s 1106.80 1541.96 355.66 491.82 +petitement petitement adv 0.14 1.15 0.14 1.15 +petite_bourgeoise petite_bourgeoise nom f p 0.00 0.34 0.00 0.14 +petite_fille petite_fille nom f p 5.30 6.35 0.33 0.61 +petites petit adj f p 1106.80 1541.96 64.50 152.16 +petitesse petitesse nom f s 0.09 2.16 0.08 1.82 +petitesses petitesse nom f p 0.09 2.16 0.01 0.34 +petit_beurre petit_beurre nom m p 0.00 0.95 0.00 0.81 +petit_bourgeois petit_bourgeois nom m p 0.71 2.16 0.32 1.42 +petit_déjeuner petit_déjeuner nom m p 13.51 0.07 0.14 0.07 +petit_enfant petit_enfant nom m p 5.76 3.04 5.76 3.04 +petit_fils petit_fils nom m p 12.90 12.70 0.40 1.69 +petit_four petit_four nom m p 0.08 0.07 0.04 0.07 +petit_gris petit_gris nom m p 0.51 0.00 0.25 0.00 +petit_neveu petit_neveu nom m p 0.04 0.95 0.00 0.34 +petits_pois petits_pois nom m p 0.10 0.00 0.10 0.00 +petit_suisse petit_suisse nom m p 0.01 0.20 0.00 0.20 +petits petit adj m p 1106.80 1541.96 112.92 244.19 +peton peton nom m s 0.09 0.47 0.01 0.07 +petons peton nom m p 0.09 0.47 0.08 0.41 +petros petro nom m p 0.00 1.28 0.00 1.28 +pet_de_nonne pet_de_nonne nom m p 0.00 0.41 0.00 0.41 +pets pet nom m p 4.30 5.41 0.79 0.88 +petzouille petzouille nom s 0.01 0.20 0.00 0.07 +petzouilles petzouille nom p 0.01 0.20 0.01 0.14 +peu_ou_prou peu_ou_prou adv 0.40 0.68 0.40 0.68 +peu peu nom_sup m 894.78 1023.38 894.78 1023.38 +peuchère peuchère ono 0.14 0.41 0.14 0.41 +peuh peuh ono 0.08 1.96 0.08 1.96 +peuhl peuhl adj m s 0.00 0.14 0.00 0.14 +peul peul adj m s 0.02 0.07 0.02 0.07 +peulh peulh nom s 0.00 0.07 0.00 0.07 +peupla peupler ver 4.58 19.66 0.02 0.34 ind:pas:3s; +peuplade peuplade nom f s 0.16 1.35 0.01 0.61 +peuplades peuplade nom f p 0.16 1.35 0.15 0.74 +peuplaient peupler ver 4.58 19.66 0.00 1.28 ind:imp:3p; +peuplait peupler ver 4.58 19.66 0.04 1.15 ind:imp:3s; +peuplant peupler ver 4.58 19.66 0.12 0.47 par:pre; +peuple peuple nom m s 111.36 107.30 105.65 89.39 +peuplement peuplement nom m s 0.04 0.88 0.04 0.47 +peuplements peuplement nom m p 0.04 0.88 0.00 0.41 +peuplent peupler ver 4.58 19.66 0.56 1.62 ind:pre:3p; +peupler peupler ver 4.58 19.66 0.23 1.22 inf; +peuplera peupler ver 4.58 19.66 0.01 0.00 ind:fut:3s; +peupleraie peupleraie nom f s 0.00 0.07 0.00 0.07 +peuplerait peupler ver 4.58 19.66 0.00 0.14 cnd:pre:3s; +peupleront peupler ver 4.58 19.66 0.11 0.07 ind:fut:3p; +peuples peuple nom m p 111.36 107.30 5.71 17.91 +peuplier peuplier nom m s 1.08 9.93 0.70 3.04 +peupliers peuplier nom m p 1.08 9.93 0.37 6.89 +peuplèrent peupler ver 4.58 19.66 0.01 0.07 ind:pas:3p; +peuplé peupler ver m s 4.58 19.66 1.48 5.27 par:pas; +peuplée peupler ver f s 4.58 19.66 0.80 4.59 par:pas; +peuplées peupler ver f p 4.58 19.66 0.23 1.35 par:pas; +peuplés peupler ver m p 4.58 19.66 0.05 0.74 par:pas; +peur peur nom f s 557.21 311.69 551.83 307.23 +peureuse peureux adj f s 2.31 3.51 0.94 1.15 +peureusement peureusement adv 0.00 0.88 0.00 0.88 +peureuses peureux adj f p 2.31 3.51 0.12 0.20 +peureux peureux adj m 2.31 3.51 1.25 2.16 +peurs peur nom f p 557.21 311.69 5.38 4.46 +peut_être peut_être adv 907.68 697.97 907.68 697.97 +peut pouvoir ver_sup 5524.52 2659.80 1209.64 508.99 ind:pre:3s; +peuvent pouvoir ver_sup 5524.52 2659.80 133.30 69.32 ind:pre:3p; +peux pouvoir ver_sup 5524.52 2659.80 1743.78 245.41 ind:pre:1s;ind:pre:2s; +peyotl peyotl nom m s 0.16 0.07 0.16 0.07 +pfennig pfennig nom m s 0.61 0.14 0.01 0.07 +pfennigs pfennig nom m p 0.61 0.14 0.60 0.07 +pff pff ono 1.59 0.41 1.59 0.41 +pfft pfft ono 0.98 0.27 0.98 0.27 +pfutt pfutt ono 0.00 0.07 0.00 0.07 +ph ph nom m s 0.30 0.20 0.30 0.20 +phacochère phacochère nom m s 0.50 0.20 0.47 0.14 +phacochères phacochère nom m p 0.50 0.20 0.03 0.07 +phagocyte phagocyte nom m s 0.04 0.07 0.01 0.00 +phagocyter phagocyter ver 0.00 0.14 0.00 0.07 inf; +phagocytes phagocyte nom m p 0.04 0.07 0.03 0.07 +phalange phalange nom f s 1.00 5.20 0.58 1.69 +phalanges phalange nom f p 1.00 5.20 0.42 3.51 +phalangettes phalangette nom f p 0.00 0.14 0.00 0.14 +phalangine phalangine nom f s 0.00 0.07 0.00 0.07 +phalangisme phalangisme nom m s 0.00 0.07 0.00 0.07 +phalangiste phalangiste nom s 0.01 0.20 0.00 0.07 +phalangistes phalangiste nom p 0.01 0.20 0.01 0.14 +phalanstère phalanstère nom m s 0.00 0.41 0.00 0.41 +phalarope phalarope nom m s 0.05 0.00 0.05 0.00 +phallique phallique adj s 0.43 1.08 0.38 0.95 +phalliques phallique adj p 0.43 1.08 0.05 0.14 +phallo phallo nom m s 0.14 0.07 0.14 0.07 +phalloïdes phalloïde adj p 0.00 0.07 0.00 0.07 +phallocentrique phallocentrique adj s 0.01 0.00 0.01 0.00 +phallocrate phallocrate adj f s 0.03 0.14 0.03 0.14 +phallocratie phallocratie nom f s 0.01 0.14 0.01 0.14 +phallocratique phallocratique adj m s 0.00 0.14 0.00 0.07 +phallocratiques phallocratique adj p 0.00 0.14 0.00 0.07 +phallologie phallologie nom f s 0.00 0.14 0.00 0.14 +phallophore phallophore nom m s 0.00 0.14 0.00 0.14 +phallus phallus nom m 0.44 1.42 0.44 1.42 +phalène phalène nom f s 0.06 0.68 0.05 0.34 +phalènes phalène nom f p 0.06 0.68 0.01 0.34 +phalère phalère nom f s 0.05 0.20 0.05 0.20 +phantasme phantasme nom m s 0.27 2.36 0.00 0.41 +phantasmes phantasme nom m p 0.27 2.36 0.27 1.96 +phanères phanère nom m p 0.00 0.07 0.00 0.07 +phanérogames phanérogame nom f p 0.00 0.14 0.00 0.14 +pharamineuses pharamineux adj f p 0.01 0.34 0.00 0.14 +pharamineux pharamineux adj m s 0.01 0.34 0.01 0.20 +pharaon pharaon nom m s 3.63 2.64 2.50 1.62 +pharaonique pharaonique adj m s 0.02 0.68 0.01 0.61 +pharaoniques pharaonique adj f p 0.02 0.68 0.01 0.07 +pharaonnes pharaon nom f p 3.63 2.64 0.00 0.07 +pharaons pharaon nom m p 3.63 2.64 1.12 0.95 +phare phare nom m s 11.88 31.49 7.17 10.68 +phares phare nom m p 11.88 31.49 4.70 20.81 +pharisaïque pharisaïque adj s 0.06 0.07 0.04 0.00 +pharisaïques pharisaïque adj f p 0.06 0.07 0.02 0.07 +pharisaïsme pharisaïsme nom m s 0.01 0.20 0.01 0.14 +pharisaïsmes pharisaïsme nom m p 0.01 0.20 0.00 0.07 +pharisien pharisien nom m s 1.46 0.74 0.02 0.14 +pharisiens pharisien nom m p 1.46 0.74 1.44 0.61 +pharma pharma nom s 0.04 0.14 0.04 0.14 +pharmaceutique pharmaceutique adj s 2.82 1.42 1.48 0.54 +pharmaceutiques pharmaceutique adj p 2.82 1.42 1.35 0.88 +pharmacie pharmacie nom f s 10.46 10.20 10.08 9.32 +pharmacien pharmacien nom m s 3.71 7.30 3.19 4.86 +pharmacienne pharmacien nom f s 3.71 7.30 0.35 1.76 +pharmaciens pharmacien nom m p 3.71 7.30 0.17 0.68 +pharmacies pharmacie nom f p 10.46 10.20 0.38 0.88 +pharmaco pharmaco nom f s 0.01 0.20 0.01 0.20 +pharmacognosie pharmacognosie nom f s 0.01 0.00 0.01 0.00 +pharmacologie pharmacologie nom f s 0.37 0.07 0.37 0.07 +pharmacologique pharmacologique adj m s 0.02 0.00 0.02 0.00 +pharmacomanie pharmacomanie nom f s 0.00 0.14 0.00 0.14 +pharmacopée pharmacopée nom f s 0.25 0.20 0.25 0.20 +pharmacothérapie pharmacothérapie nom f s 0.03 0.07 0.03 0.07 +pharyngite pharyngite nom f s 0.01 0.00 0.01 0.00 +pharynx pharynx nom m 0.01 0.41 0.01 0.41 +phascolome phascolome nom m s 0.01 0.00 0.01 0.00 +phase phase nom f s 13.22 9.32 12.42 6.76 +phases phase nom f p 13.22 9.32 0.80 2.57 +phasmes phasme nom m p 0.01 0.07 0.01 0.07 +phaéton phaéton nom m s 0.00 0.27 0.00 0.27 +phi phi nom m 0.39 0.20 0.39 0.20 +philanthrope philanthrope nom s 0.87 0.68 0.84 0.54 +philanthropes philanthrope nom p 0.87 0.68 0.03 0.14 +philanthropie philanthropie nom f s 0.17 0.47 0.17 0.47 +philanthropique philanthropique adj s 0.07 0.54 0.03 0.27 +philanthropiques philanthropique adj f p 0.07 0.54 0.04 0.27 +philarète philarète adj s 0.00 0.07 0.00 0.07 +philarète philarète nom s 0.00 0.07 0.00 0.07 +philatélie philatélie nom f s 0.02 0.00 0.02 0.00 +philatéliste philatéliste nom s 0.12 0.27 0.11 0.14 +philatélistes philatéliste nom p 0.12 0.27 0.01 0.14 +philharmonie philharmonie nom f s 0.21 0.00 0.21 0.00 +philharmonique philharmonique adj m s 0.59 0.34 0.59 0.34 +philhellène philhellène nom m s 0.00 0.14 0.00 0.07 +philhellènes philhellène nom m p 0.00 0.14 0.00 0.07 +philippin philippin nom m s 0.25 0.41 0.03 0.41 +philippine philippin adj f s 0.41 1.15 0.23 0.20 +philippines philippin adj f p 0.41 1.15 0.13 0.54 +philippins philippin nom m p 0.25 0.41 0.22 0.00 +philistin philistin nom m s 0.12 0.07 0.05 0.07 +philistins philistin nom m p 0.12 0.07 0.06 0.00 +philo philo nom f s 2.35 3.24 2.35 3.18 +philodendron philodendron nom m s 0.03 0.74 0.03 0.34 +philodendrons philodendron nom m p 0.03 0.74 0.00 0.41 +philologie philologie nom f s 0.21 0.74 0.21 0.74 +philologique philologique adj f s 0.00 0.14 0.00 0.07 +philologiques philologique adj f p 0.00 0.14 0.00 0.07 +philologue philologue nom s 0.26 1.35 0.26 0.88 +philologues philologue nom p 0.26 1.35 0.00 0.47 +philos philo nom f p 2.35 3.24 0.00 0.07 +philosophaient philosopher ver 0.64 2.09 0.00 0.14 ind:imp:3p; +philosophaillerie philosophaillerie nom f s 0.00 0.14 0.00 0.14 +philosophait philosopher ver 0.64 2.09 0.00 0.27 ind:imp:3s; +philosophal philosophal adj m s 0.07 0.68 0.00 0.07 +philosophale philosophal adj f s 0.07 0.68 0.07 0.54 +philosophales philosophal adj f p 0.07 0.68 0.00 0.07 +philosophant philosopher ver 0.64 2.09 0.00 0.07 par:pre; +philosophard philosophard adj m s 0.00 0.07 0.00 0.07 +philosophe philosophe nom s 6.02 19.39 4.11 11.62 +philosopher philosopher ver 0.64 2.09 0.37 0.81 inf; +philosophes philosophe nom p 6.02 19.39 1.91 7.77 +philosophie philosophie nom f s 10.32 24.73 9.82 24.32 +philosophies philosophie nom f p 10.32 24.73 0.50 0.41 +philosophique philosophique adj s 1.48 4.19 1.06 2.50 +philosophiquement philosophiquement adv 0.09 0.68 0.09 0.68 +philosophiques philosophique adj p 1.48 4.19 0.42 1.69 +philosophons philosopher ver 0.64 2.09 0.01 0.00 imp:pre:1p; +philosophé philosopher ver m s 0.64 2.09 0.10 0.14 par:pas; +philosémites philosémite nom m p 0.00 0.07 0.00 0.07 +philosémitisme philosémitisme nom m s 0.00 0.07 0.00 0.07 +philotechnique philotechnique adj f s 0.00 0.07 0.00 0.07 +philtre philtre nom m s 0.96 1.69 0.84 1.01 +philtres philtre nom m p 0.96 1.69 0.11 0.68 +phimosis phimosis nom m 0.00 0.20 0.00 0.20 +phlox phlox nom m 0.00 0.34 0.00 0.34 +phlébite phlébite nom f s 0.08 0.34 0.08 0.27 +phlébites phlébite nom f p 0.08 0.34 0.00 0.07 +phlébographie phlébographie nom f s 0.01 0.00 0.01 0.00 +phlébologue phlébologue nom s 0.01 0.00 0.01 0.00 +phlébotomie phlébotomie nom f s 0.01 0.00 0.01 0.00 +phobie phobie nom f s 2.62 1.08 1.43 0.47 +phobies phobie nom f p 2.62 1.08 1.20 0.61 +phobique phobique adj f s 0.04 0.14 0.04 0.14 +phobiques phobique adj p 0.04 0.14 0.01 0.00 +phocéenne phocéen adj f s 0.00 0.07 0.00 0.07 +phoenix phoenix nom m 0.48 0.07 0.48 0.07 +phonatoire phonatoire adj s 0.00 0.07 0.00 0.07 +phone phone nom m s 0.67 0.14 0.64 0.07 +phones phone nom m p 0.67 0.14 0.04 0.07 +phonique phonique adj s 0.18 0.00 0.17 0.00 +phoniques phonique adj p 0.18 0.00 0.01 0.00 +phono phono nom m s 0.75 5.47 0.75 5.20 +phonographe phonographe nom m s 0.87 6.01 0.86 5.41 +phonographes phonographe nom m p 0.87 6.01 0.01 0.61 +phonographiques phonographique adj f p 0.00 0.14 0.00 0.14 +phonologie phonologie nom f s 0.00 0.14 0.00 0.14 +phonos phono nom m p 0.75 5.47 0.00 0.27 +phonèmes phonème nom m p 0.00 0.41 0.00 0.41 +phonéticien phonéticien nom m s 0.00 0.07 0.00 0.07 +phonétique phonétique adj s 0.20 0.41 0.19 0.27 +phonétiquement phonétiquement adv 0.03 0.07 0.03 0.07 +phonétiques phonétique adj m p 0.20 0.41 0.01 0.14 +phoque phoque nom m s 2.81 4.19 2.24 2.77 +phoques phoque nom m p 2.81 4.19 0.57 1.42 +phosgène phosgène nom m s 0.23 0.00 0.23 0.00 +phosphatase phosphatase nom f s 0.02 0.00 0.02 0.00 +phosphate phosphate nom m s 0.43 0.68 0.38 0.41 +phosphates phosphate nom m p 0.43 0.68 0.05 0.27 +phosphatine phosphatine nom f s 0.10 0.07 0.10 0.07 +phospholipide phospholipide nom m s 0.01 0.00 0.01 0.00 +phosphore phosphore nom m s 1.46 2.16 1.46 2.16 +phosphorescence phosphorescence nom f s 0.02 0.88 0.02 0.68 +phosphorescences phosphorescence nom f p 0.02 0.88 0.00 0.20 +phosphorescent phosphorescent adj m s 0.38 5.47 0.08 1.42 +phosphorescente phosphorescent adj f s 0.38 5.47 0.23 2.03 +phosphorescentes phosphorescent adj f p 0.38 5.47 0.01 1.01 +phosphorescents phosphorescent adj m p 0.38 5.47 0.06 1.01 +phosphoré phosphorer ver m s 0.14 0.07 0.01 0.00 par:pas; +phosphorylation phosphorylation nom f s 0.03 0.00 0.03 0.00 +phosphène phosphène nom m s 0.00 0.27 0.00 0.07 +phosphènes phosphène nom m p 0.00 0.27 0.00 0.20 +phot phot nom m s 1.00 0.00 1.00 0.00 +photique photique adj f s 0.01 0.00 0.01 0.00 +photo_finish photo_finish nom f s 0.01 0.00 0.01 0.00 +photo_robot photo_robot nom f s 0.01 0.14 0.01 0.14 +photo_électrique photo_électrique adj f s 0.00 0.14 0.00 0.14 +photo photo nom f s 209.10 94.59 122.47 54.66 +photochimique photochimique adj m s 0.01 0.00 0.01 0.00 +photocomposition photocomposition nom f s 0.14 0.07 0.14 0.07 +photoconducteur photoconducteur adj m s 0.01 0.00 0.01 0.00 +photocopie photocopie nom f s 3.89 0.88 1.50 0.41 +photocopient photocopier ver 1.83 0.41 0.01 0.00 ind:pre:3p; +photocopier photocopier ver 1.83 0.41 0.72 0.07 inf; +photocopiera photocopier ver 1.83 0.41 0.01 0.00 ind:fut:3s; +photocopierai photocopier ver 1.83 0.41 0.01 0.00 ind:fut:1s; +photocopies photocopie nom f p 3.89 0.88 2.39 0.47 +photocopieur photocopieur nom m s 2.46 0.20 0.11 0.00 +photocopieurs photocopieur nom m p 2.46 0.20 0.07 0.00 +photocopieuse photocopieur nom f s 2.46 0.20 2.28 0.00 +photocopieuses photocopieuse nom f p 0.14 0.00 0.14 0.00 +photocopié photocopier ver m s 1.83 0.41 0.50 0.07 par:pas; +photocopiée photocopier ver f s 1.83 0.41 0.13 0.07 par:pas; +photocopiées photocopier ver f p 1.83 0.41 0.00 0.07 par:pas; +photocopiés photocopier ver m p 1.83 0.41 0.04 0.07 par:pas; +photogramme photogramme nom m s 0.01 0.00 0.01 0.00 +photographe photographe nom s 15.82 17.64 12.51 11.96 +photographes photographe nom p 15.82 17.64 3.31 5.68 +photographia photographier ver 10.35 13.65 0.03 0.68 ind:pas:3s; +photographiable photographiable nom f s 0.01 0.00 0.01 0.00 +photographiaient photographier ver 10.35 13.65 0.28 0.27 ind:imp:3p; +photographiais photographier ver 10.35 13.65 0.20 0.14 ind:imp:1s;ind:imp:2s; +photographiait photographier ver 10.35 13.65 0.34 0.34 ind:imp:3s; +photographiant photographier ver 10.35 13.65 0.03 0.47 par:pre; +photographie photographie nom f s 8.36 41.08 7.42 23.78 +photographient photographier ver 10.35 13.65 0.19 0.07 ind:pre:3p; +photographier photographier ver 10.35 13.65 4.42 5.54 inf; +photographierai photographier ver 10.35 13.65 0.02 0.07 ind:fut:1s; +photographierait photographier ver 10.35 13.65 0.01 0.27 cnd:pre:3s; +photographierions photographier ver 10.35 13.65 0.00 0.07 cnd:pre:1p; +photographierons photographier ver 10.35 13.65 0.01 0.00 ind:fut:1p; +photographieront photographier ver 10.35 13.65 0.01 0.00 ind:fut:3p; +photographies photographie nom f p 8.36 41.08 0.94 17.30 +photographiez photographier ver 10.35 13.65 0.35 0.00 imp:pre:2p;ind:pre:2p; +photographiât photographier ver 10.35 13.65 0.00 0.07 sub:imp:3s; +photographique photographique adj s 1.30 3.78 1.25 3.24 +photographiques photographique adj p 1.30 3.78 0.05 0.54 +photographièrent photographier ver 10.35 13.65 0.10 0.14 ind:pas:3p; +photographié photographier ver m s 10.35 13.65 1.73 2.57 par:pas; +photographiée photographier ver f s 10.35 13.65 0.23 0.88 par:pas; +photographiées photographier ver f p 10.35 13.65 0.11 0.14 par:pas; +photographiés photographier ver m p 10.35 13.65 0.48 0.95 par:pas; +photograveur photograveur nom m s 0.00 0.07 0.00 0.07 +photogravure photogravure nom f s 0.04 0.07 0.04 0.07 +photogénie photogénie nom f s 0.34 0.07 0.34 0.07 +photogénique photogénique adj s 2.01 0.41 1.97 0.34 +photogéniques photogénique adj p 2.01 0.41 0.04 0.07 +photojournalisme photojournalisme nom m s 0.02 0.00 0.02 0.00 +photojournaliste photojournaliste nom s 0.01 0.00 0.01 0.00 +photomaton photomaton adj m s 0.92 1.01 0.37 0.81 +photomatons photomaton adj m p 0.92 1.01 0.55 0.20 +photomicrographie photomicrographie nom f s 0.01 0.00 0.01 0.00 +photomontage photomontage nom m s 0.00 0.14 0.00 0.07 +photomontages photomontage nom m p 0.00 0.14 0.00 0.07 +photon photon nom m s 0.24 0.00 0.09 0.00 +photonique photonique adj f s 0.15 0.00 0.15 0.00 +photons photon nom m p 0.24 0.00 0.16 0.00 +photophobie photophobie nom f s 0.04 0.00 0.04 0.00 +photopile photopile nom f s 0.12 0.00 0.12 0.00 +photopériodique photopériodique adj f s 0.01 0.00 0.01 0.00 +photos photo nom f p 209.10 94.59 86.63 39.93 +photosensibilité photosensibilité nom f s 0.04 0.00 0.04 0.00 +photosensible photosensible adj m s 0.08 0.07 0.06 0.07 +photosensibles photosensible adj p 0.08 0.07 0.02 0.00 +photostat photostat nom m s 0.06 0.00 0.06 0.00 +photosynthèse photosynthèse nom f s 0.25 0.00 0.25 0.00 +phototaxie phototaxie nom f s 0.02 0.00 0.02 0.00 +phototype phototype nom m s 0.01 0.00 0.01 0.00 +photoélectrique photoélectrique adj s 0.02 0.00 0.02 0.00 +photovoltaïque photovoltaïque adj m s 0.01 0.00 0.01 0.00 +phragmites phragmite nom m p 0.00 0.07 0.00 0.07 +phrase_clé phrase_clé nom f s 0.02 0.00 0.02 0.00 +phrase_robot phrase_robot nom f s 0.00 0.07 0.00 0.07 +phrase phrase nom f s 22.01 140.47 15.40 86.76 +phraser phraser ver 0.19 0.74 0.01 0.00 inf; +phrases_clé phrases_clé nom f p 0.00 0.07 0.00 0.07 +phrases phrase nom f p 22.01 140.47 6.61 53.72 +phraseur phraseur nom m s 0.02 0.14 0.01 0.07 +phraseurs phraseur nom m p 0.02 0.14 0.01 0.07 +phrasé phrasé nom m s 0.05 0.20 0.05 0.20 +phrasée phraser ver f s 0.19 0.74 0.00 0.07 par:pas; +phraséologie phraséologie nom f s 0.02 0.27 0.02 0.20 +phraséologies phraséologie nom f p 0.02 0.27 0.00 0.07 +phraséologique phraséologique adj f s 0.00 0.07 0.00 0.07 +phréatique phréatique adj f s 0.17 0.27 0.16 0.20 +phréatiques phréatique adj f p 0.17 0.27 0.01 0.07 +phrénique phrénique adj m s 0.01 0.00 0.01 0.00 +phrénologie phrénologie nom f s 0.03 0.00 0.03 0.00 +phrénologiste phrénologiste nom s 0.01 0.07 0.01 0.00 +phrénologistes phrénologiste nom p 0.01 0.07 0.00 0.07 +phrénologues phrénologue nom p 0.00 0.07 0.00 0.07 +phrygien phrygien adj m s 0.00 0.74 0.00 0.54 +phrygiens phrygien adj m p 0.00 0.74 0.00 0.20 +phtaléine phtaléine nom f s 0.03 0.00 0.03 0.00 +phtiriasis phtiriasis nom m 0.00 0.07 0.00 0.07 +phtisie phtisie nom f s 0.05 0.81 0.05 0.81 +phtisiologie phtisiologie nom f s 0.00 0.14 0.00 0.14 +phtisique phtisique adj s 0.01 1.22 0.00 0.88 +phtisiques phtisique adj f p 0.01 1.22 0.01 0.34 +phénate phénate nom m s 0.01 0.00 0.01 0.00 +phénicien phénicien nom m s 0.57 0.07 0.04 0.00 +phénicienne phénicien adj f s 0.77 0.41 0.44 0.14 +phéniciennes phénicien adj f p 0.77 0.41 0.01 0.14 +phéniciens phénicien nom m p 0.57 0.07 0.54 0.07 +phénique phénique adj m s 0.00 0.07 0.00 0.07 +phéniqués phéniqué adj m p 0.00 0.07 0.00 0.07 +phénix phénix nom m 0.28 0.68 0.28 0.68 +phénobarbital phénobarbital nom m s 0.10 0.00 0.10 0.00 +phénol phénol nom m s 0.07 0.14 0.07 0.14 +phénomène phénomène nom m s 10.77 13.72 8.62 10.81 +phénomènes phénomène nom m p 10.77 13.72 2.15 2.91 +phénoménal phénoménal adj m s 1.36 1.62 0.77 0.74 +phénoménale phénoménal adj f s 1.36 1.62 0.46 0.68 +phénoménalement phénoménalement adv 0.05 0.00 0.05 0.00 +phénoménales phénoménal adj f p 1.36 1.62 0.05 0.07 +phénoménaux phénoménal adj m p 1.36 1.62 0.08 0.14 +phénoménologie phénoménologie nom f s 0.04 0.34 0.04 0.34 +phénoménologique phénoménologique adj s 0.02 0.00 0.02 0.00 +phénoménologues phénoménologue nom p 0.00 0.07 0.00 0.07 +phénothiazine phénothiazine nom f s 0.01 0.00 0.01 0.00 +phénotype phénotype nom m s 0.01 0.00 0.01 0.00 +phéochromocytome phéochromocytome nom m s 0.07 0.00 0.07 0.00 +phéromone phéromone nom f s 0.69 0.00 0.10 0.00 +phéromones phéromone nom f p 0.69 0.00 0.59 0.00 +phylactère phylactère nom m s 0.00 0.34 0.00 0.34 +phylloxera phylloxera nom m s 0.10 0.00 0.10 0.00 +phylloxéra phylloxéra nom m s 0.10 0.47 0.10 0.47 +phylogenèse phylogenèse nom f s 0.14 0.00 0.14 0.00 +phylum phylum nom m s 0.03 0.00 0.03 0.00 +phynances phynances nom f p 0.00 0.07 0.00 0.07 +physicien physicien nom m s 1.18 1.55 0.75 0.95 +physicienne physicien nom f s 1.18 1.55 0.15 0.07 +physiciennes physicienne nom f p 0.01 0.00 0.01 0.00 +physiciens physicien nom m p 1.18 1.55 0.29 0.54 +physico_chimique physico_chimique adj f p 0.00 0.07 0.00 0.07 +physio physio adv 0.94 0.00 0.94 0.00 +physiologie physiologie nom f s 0.76 1.42 0.75 1.35 +physiologies physiologie nom f p 0.76 1.42 0.01 0.07 +physiologique physiologique adj s 1.59 2.09 0.84 1.49 +physiologiquement physiologiquement adv 0.24 0.27 0.24 0.27 +physiologiques physiologique adj p 1.59 2.09 0.75 0.61 +physiologiste physiologiste adj s 0.10 0.00 0.10 0.00 +physionomie physionomie nom f s 0.48 5.27 0.48 4.93 +physionomies physionomie nom f p 0.48 5.27 0.00 0.34 +physionomique physionomique adj s 0.01 0.14 0.01 0.14 +physionomiste physionomiste nom s 0.12 0.07 0.11 0.07 +physionomistes physionomiste adj p 0.11 0.14 0.02 0.00 +physiothérapie physiothérapie nom f s 0.24 0.00 0.24 0.00 +physique physique adj s 19.42 33.18 14.76 27.50 +physiquement physiquement adv 8.72 8.72 8.72 8.72 +physiques physique adj p 19.42 33.18 4.66 5.68 +phytoplancton phytoplancton nom m s 0.01 0.00 0.01 0.00 +pi pi nom m 0.69 1.28 0.69 1.28 +più più adv 0.01 0.07 0.01 0.07 +piaf piaf nom m s 2.00 5.14 1.75 1.82 +piaffa piaffer ver 0.14 2.57 0.00 0.14 ind:pas:3s; +piaffaient piaffer ver 0.14 2.57 0.00 0.14 ind:imp:3p; +piaffait piaffer ver 0.14 2.57 0.00 0.68 ind:imp:3s; +piaffant piaffer ver 0.14 2.57 0.00 0.54 par:pre; +piaffante piaffant adj f s 0.01 0.74 0.00 0.14 +piaffantes piaffant adj f p 0.01 0.74 0.01 0.14 +piaffants piaffant adj m p 0.01 0.74 0.00 0.20 +piaffe piaffer ver 0.14 2.57 0.12 0.34 ind:pre:1s;ind:pre:3s; +piaffement piaffement nom m s 0.00 0.20 0.00 0.14 +piaffements piaffement nom m p 0.00 0.20 0.00 0.07 +piaffent piaffer ver 0.14 2.57 0.02 0.34 ind:pre:3p; +piaffer piaffer ver 0.14 2.57 0.00 0.20 inf; +piaffes piaffer ver 0.14 2.57 0.00 0.14 ind:pre:2s; +piaffé piaffer ver m s 0.14 2.57 0.00 0.07 par:pas; +piafs piaf nom m p 2.00 5.14 0.25 3.31 +piailla piailler ver 0.84 4.73 0.00 0.14 ind:pas:3s; +piaillaient piailler ver 0.84 4.73 0.02 0.74 ind:imp:3p; +piaillais piailler ver 0.84 4.73 0.00 0.07 ind:imp:2s; +piaillait piailler ver 0.84 4.73 0.22 0.74 ind:imp:3s; +piaillant piailler ver 0.84 4.73 0.00 1.08 par:pre; +piaillante piaillant adj f s 0.00 0.68 0.00 0.27 +piaillantes piaillant adj f p 0.00 0.68 0.00 0.07 +piaillarde piaillard adj f s 0.00 0.14 0.00 0.07 +piaillards piaillard adj m p 0.00 0.14 0.00 0.07 +piaille piailler ver 0.84 4.73 0.26 0.54 ind:pre:1s;ind:pre:3s; +piaillement piaillement nom m s 5.37 2.57 0.70 0.68 +piaillements piaillement nom m p 5.37 2.57 4.67 1.89 +piaillent piailler ver 0.84 4.73 0.13 0.61 ind:pre:3p; +piailler piailler ver 0.84 4.73 0.21 0.68 inf; +piaillerie piaillerie nom f s 0.00 0.20 0.00 0.07 +piailleries piaillerie nom f p 0.00 0.20 0.00 0.14 +piailleurs piailleur adj m p 0.00 0.20 0.00 0.14 +piailleuse piailleur adj f s 0.00 0.20 0.00 0.07 +piaillèrent piailler ver 0.84 4.73 0.00 0.14 ind:pas:3p; +pian pian nom m s 0.03 0.00 0.03 0.00 +pianissimo pianissimo adv_sup 0.12 0.20 0.12 0.20 +pianissimos pianissimo nom_sup m p 0.10 0.14 0.00 0.07 +pianiste pianiste nom s 5.75 5.20 5.52 4.80 +pianistes pianiste nom p 5.75 5.20 0.23 0.41 +piano_bar piano_bar nom m s 0.05 0.00 0.05 0.00 +piano piano nom m s 22.22 31.28 21.50 28.51 +pianola pianola nom m s 0.35 0.14 0.35 0.14 +pianos piano nom m p 22.22 31.28 0.71 2.77 +pianota pianoter ver 0.41 2.36 0.10 0.34 ind:pas:3s; +pianotage pianotage nom m s 0.10 0.07 0.10 0.07 +pianotaient pianoter ver 0.41 2.36 0.00 0.14 ind:imp:3p; +pianotait pianoter ver 0.41 2.36 0.00 0.68 ind:imp:3s; +pianotant pianoter ver 0.41 2.36 0.00 0.27 par:pre; +pianote pianoter ver 0.41 2.36 0.04 0.34 ind:pre:1s;ind:pre:3s; +pianoter pianoter ver 0.41 2.36 0.27 0.41 inf; +pianotèrent pianoter ver 0.41 2.36 0.00 0.07 ind:pas:3p; +pianoté pianoter ver m s 0.41 2.36 0.00 0.07 par:pas; +pianotée pianoter ver f s 0.41 2.36 0.00 0.07 par:pas; +piastre piastre nom f s 1.36 0.54 0.14 0.14 +piastres piastre nom f p 1.36 0.54 1.23 0.41 +piaula piauler ver 0.02 1.49 0.00 0.27 ind:pas:3s; +piaulaient piauler ver 0.02 1.49 0.01 0.27 ind:imp:3p; +piaulait piauler ver 0.02 1.49 0.00 0.20 ind:imp:3s; +piaulant piauler ver 0.02 1.49 0.00 0.20 par:pre; +piaulante piaulant adj f s 0.00 0.14 0.00 0.07 +piaule piaule nom f s 3.36 12.16 3.02 11.42 +piaulement piaulement nom m s 0.00 0.54 0.00 0.14 +piaulements piaulement nom m p 0.00 0.54 0.00 0.41 +piaulent piauler ver 0.02 1.49 0.00 0.07 ind:pre:3p; +piauler piauler ver 0.02 1.49 0.00 0.14 inf; +piaulera piauler ver 0.02 1.49 0.00 0.07 ind:fut:3s; +piaules piaule nom f p 3.36 12.16 0.34 0.74 +piauleur piauleur nom m s 0.00 0.07 0.00 0.07 +piaulèrent piauler ver 0.02 1.49 0.00 0.14 ind:pas:3p; +piaye piaye nom m s 0.00 0.07 0.00 0.07 +piazza piazza nom f s 1.89 3.18 1.89 3.18 +piazzetta piazzetta nom f 0.00 0.20 0.00 0.20 +pibloque pibloque nom m s 0.00 0.34 0.00 0.34 +pic_vert pic_vert nom m s 0.28 0.27 0.27 0.27 +pic pic nom m s 5.30 12.43 4.61 10.34 +pica pica nom m s 0.01 0.07 0.01 0.07 +picador picador nom m s 0.01 0.34 0.00 0.27 +picadors picador nom m p 0.01 0.34 0.01 0.07 +picaillon picaillon nom m s 0.02 0.20 0.01 0.07 +picaillons picaillon nom m p 0.02 0.20 0.01 0.14 +picard picard adj m s 0.00 0.61 0.00 0.14 +picarde picard adj f s 0.00 0.61 0.00 0.07 +picardes picard adj f p 0.00 0.61 0.00 0.20 +picards picard adj m p 0.00 0.61 0.00 0.20 +picaresque picaresque adj s 0.03 0.54 0.03 0.34 +picaresques picaresque adj p 0.03 0.54 0.00 0.20 +picaro picaro nom m s 0.40 0.07 0.40 0.07 +picassien picassien adj m s 0.00 0.07 0.00 0.07 +piccolo piccolo nom m s 0.41 0.07 0.40 0.07 +piccolos piccolo nom m p 0.41 0.07 0.01 0.00 +pichenette pichenette nom f s 0.27 2.30 0.27 2.09 +pichenettes pichenette nom f p 0.27 2.30 0.00 0.20 +pichet pichet nom m s 1.29 1.42 1.21 0.95 +pichets pichet nom m p 1.29 1.42 0.09 0.47 +pick_up pick_up nom m 1.98 2.64 1.98 2.64 +picker picker nom m s 0.19 0.00 0.19 0.00 +pickles pickle nom m p 0.47 0.20 0.47 0.20 +pickpocket pickpocket nom m s 0.87 0.74 0.63 0.47 +pickpockets pickpocket nom m p 0.87 0.74 0.24 0.27 +pico pico adv 0.31 0.20 0.31 0.20 +picolaient picoler ver 5.89 4.66 0.00 0.07 ind:imp:3p; +picolais picoler ver 5.89 4.66 0.09 0.14 ind:imp:1s; +picolait picoler ver 5.89 4.66 0.21 0.14 ind:imp:3s; +picolant picoler ver 5.89 4.66 0.03 0.07 par:pre; +picole picoler ver 5.89 4.66 1.64 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +picolent picoler ver 5.89 4.66 0.08 0.00 ind:pre:3p; +picoler picoler ver 5.89 4.66 2.32 1.76 inf; +picolerait picoler ver 5.89 4.66 0.00 0.07 cnd:pre:3s; +picoles picoler ver 5.89 4.66 0.69 0.14 ind:pre:2s; +picoleur picoleur nom m s 0.00 0.27 0.00 0.20 +picoleurs picoleur nom m p 0.00 0.27 0.00 0.07 +picolez picoler ver 5.89 4.66 0.04 0.00 ind:pre:2p; +picoliez picoler ver 5.89 4.66 0.01 0.00 ind:imp:2p; +picolo picolo nom m s 0.00 0.14 0.00 0.14 +picolé picoler ver m s 5.89 4.66 0.77 1.22 par:pas; +picora picorer ver 0.74 3.58 0.00 0.07 ind:pas:3s; +picoraient picorer ver 0.74 3.58 0.02 0.47 ind:imp:3p; +picorait picorer ver 0.74 3.58 0.00 0.47 ind:imp:3s; +picorant picorer ver 0.74 3.58 0.02 0.14 par:pre; +picore picorer ver 0.74 3.58 0.18 0.34 ind:pre:1s;ind:pre:3s; +picorent picorer ver 0.74 3.58 0.02 0.41 ind:pre:3p; +picorer picorer ver 0.74 3.58 0.33 1.28 inf; +picoreur picoreur nom m s 0.00 0.07 0.00 0.07 +picorez picorer ver 0.74 3.58 0.14 0.00 ind:pre:2p; +picoré picorer ver m s 0.74 3.58 0.02 0.14 par:pas; +picorée picorer ver f s 0.74 3.58 0.00 0.07 par:pas; +picorées picorer ver f p 0.74 3.58 0.00 0.07 par:pas; +picorés picorer ver m p 0.74 3.58 0.01 0.14 par:pas; +picot picot nom m s 0.26 1.35 0.03 1.22 +picota picoter ver 0.74 1.62 0.04 0.14 ind:pas:3s; +picotaient picoter ver 0.74 1.62 0.00 0.27 ind:imp:3p; +picotait picoter ver 0.74 1.62 0.00 0.47 ind:imp:3s; +picotant picoter ver 0.74 1.62 0.02 0.00 par:pre; +picote picoter ver 0.74 1.62 0.63 0.27 ind:pre:1s;ind:pre:3s; +picotement picotement nom m s 0.50 1.62 0.22 0.95 +picotements picotement nom m p 0.50 1.62 0.28 0.68 +picotent picoter ver 0.74 1.62 0.03 0.27 ind:pre:3p; +picoter picoter ver 0.74 1.62 0.01 0.07 inf; +picotin picotin nom m s 0.24 0.61 0.24 0.61 +picotis picotis nom m 0.00 0.07 0.00 0.07 +picots picot nom m p 0.26 1.35 0.23 0.14 +picoté picoter ver m s 0.74 1.62 0.01 0.07 par:pas; +picotées picoter ver f p 0.74 1.62 0.00 0.07 par:pas; +picrate picrate nom m s 0.01 1.35 0.01 1.35 +picrique picrique adj s 0.00 0.27 0.00 0.27 +pic_vert pic_vert nom m p 0.28 0.27 0.01 0.00 +pics pic nom m p 5.30 12.43 0.69 2.09 +picsou picsou nom m s 0.43 0.00 0.43 0.00 +pictogramme pictogramme nom m s 0.14 0.00 0.03 0.00 +pictogrammes pictogramme nom m p 0.14 0.00 0.11 0.00 +picton picton nom s 0.00 0.41 0.00 0.41 +picté picter ver m s 0.00 0.07 0.00 0.07 par:pas; +pictural pictural adj m s 0.15 0.95 0.01 0.47 +picturale pictural adj f s 0.15 0.95 0.14 0.20 +picturalement picturalement adv 0.00 0.07 0.00 0.07 +picturales pictural adj f p 0.15 0.95 0.00 0.27 +pidgin pidgin nom m s 0.00 0.14 0.00 0.14 +pie_grièche pie_grièche nom f s 0.00 0.07 0.00 0.07 +pie_mère pie_mère nom f s 0.01 0.07 0.01 0.07 +pie pie nom f s 1.59 4.32 1.06 3.18 +pied_bot pied_bot nom m s 0.28 0.61 0.28 0.61 +pied_d_alouette pied_d_alouette nom m s 0.01 0.00 0.01 0.00 +pied_d_oeuvre pied_d_oeuvre nom m s 0.00 0.07 0.00 0.07 +pied_de_biche pied_de_biche nom m s 0.32 0.27 0.28 0.20 +pied_de_poule pied_de_poule adj 0.02 0.54 0.02 0.54 +pied_noir pied_noir nom m s 0.28 3.78 0.09 0.54 +pied_plat pied_plat nom m s 0.05 0.00 0.05 0.00 +pied pied nom m s 214.08 486.42 105.51 248.18 +piedmont piedmont nom m s 0.23 0.00 0.23 0.00 +pied_de_biche pied_de_biche nom m p 0.32 0.27 0.04 0.07 +pied_de_coq pied_de_coq nom m p 0.00 0.07 0.00 0.07 +pied_droit pied_droit nom m p 0.00 0.07 0.00 0.07 +pied_noir pied_noir nom m p 0.28 3.78 0.19 3.24 +pieds pied nom m p 214.08 486.42 108.57 238.24 +pier pier nom m s 0.01 0.00 0.01 0.00 +piercing piercing nom m s 1.69 0.00 1.29 0.00 +piercings piercing nom m p 1.69 0.00 0.40 0.00 +pierraille pierraille nom f s 0.12 3.85 0.12 2.23 +pierrailles pierraille nom f p 0.12 3.85 0.00 1.62 +pierre pierre nom f s 67.17 189.86 40.58 119.39 +pierreries pierreries nom f p 0.28 1.89 0.28 1.89 +pierres pierre nom f p 67.17 189.86 26.60 70.47 +pierreuse pierreux adj f s 0.11 2.64 0.11 0.54 +pierreuses pierreux adj f p 0.11 2.64 0.00 0.47 +pierreux pierreux adj m 0.11 2.64 0.00 1.62 +pierrier pierrier nom m s 0.00 0.20 0.00 0.14 +pierriers pierrier nom m p 0.00 0.20 0.00 0.07 +pierrière pierrière nom f s 0.00 0.07 0.00 0.07 +pierrot pierrot nom m s 0.14 1.35 0.14 0.88 +pierrots pierrot nom m p 0.14 1.35 0.01 0.47 +pierrures pierrure nom f p 0.00 0.07 0.00 0.07 +pies pie nom f p 1.59 4.32 0.53 1.15 +pietà pietà nom f s 0.18 0.88 0.18 0.88 +pieu pieu nom m s 5.45 5.34 5.45 5.34 +pieuse pieux adj f s 3.93 12.43 1.33 4.12 +pieusement pieusement adv 0.41 3.11 0.41 3.11 +pieuses pieux adj f p 3.93 12.43 0.75 2.77 +pieutait pieuter ver 1.24 2.03 0.00 0.07 ind:imp:3s; +pieute pieuter ver 1.24 2.03 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pieuter pieuter ver 1.24 2.03 0.85 1.22 inf; +pieuterez pieuter ver 1.24 2.03 0.01 0.00 ind:fut:2p; +pieutes pieuter ver 1.24 2.03 0.03 0.14 ind:pre:2s; +pieutez pieuter ver 1.24 2.03 0.10 0.00 imp:pre:2p; +pieuté pieuter ver m s 1.24 2.03 0.04 0.20 par:pas; +pieutée pieuter ver f s 1.24 2.03 0.00 0.07 par:pas; +pieutés pieuter ver m p 1.24 2.03 0.01 0.07 par:pas; +pieuvre pieuvre nom f s 1.73 2.97 1.65 1.82 +pieuvres pieuvre nom f p 1.73 2.97 0.08 1.15 +pieux pieux adj m 3.93 12.43 1.86 5.54 +pif pif nom m s 1.58 7.23 1.58 7.23 +pifer pifer ver 0.01 0.00 0.01 0.00 inf; +piffait piffer ver 0.16 0.68 0.00 0.14 ind:imp:3s; +piffer piffer ver 0.16 0.68 0.16 0.47 inf; +piffre piffre nom s 0.00 0.07 0.00 0.07 +piffrer piffrer adj m s 0.16 0.00 0.16 0.00 +piffé piffer ver m s 0.16 0.68 0.00 0.07 par:pas; +pifomètre pifomètre nom m s 0.02 0.61 0.02 0.61 +pige piger ver 41.77 11.96 6.40 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pigeais piger ver 41.77 11.96 0.17 0.54 ind:imp:1s;ind:imp:2s; +pigeait piger ver 41.77 11.96 0.09 0.88 ind:imp:3s; +pigent piger ver 41.77 11.96 0.50 0.14 ind:pre:3p; +pigeon_voyageur pigeon_voyageur nom m s 0.14 0.00 0.14 0.00 +pigeon pigeon nom m s 15.05 19.26 8.56 7.97 +pigeonnant pigeonnant adj m s 0.07 0.34 0.07 0.20 +pigeonnante pigeonnant adj f s 0.07 0.34 0.00 0.07 +pigeonnants pigeonnant adj m p 0.07 0.34 0.00 0.07 +pigeonne pigeon nom f s 15.05 19.26 0.03 0.68 +pigeonneau pigeonneau nom m s 0.29 0.34 0.06 0.27 +pigeonneaux pigeonneau nom m p 0.29 0.34 0.23 0.07 +pigeonner pigeonner ver 0.24 0.34 0.05 0.14 inf; +pigeonnier pigeonnier nom m s 0.27 3.45 0.27 3.18 +pigeonniers pigeonnier nom m p 0.27 3.45 0.00 0.27 +pigeonné pigeonner ver m s 0.24 0.34 0.17 0.07 par:pas; +pigeons pigeon nom m p 15.05 19.26 6.46 10.61 +piger piger ver 41.77 11.96 1.78 1.96 inf; +pigera piger ver 41.77 11.96 0.04 0.07 ind:fut:3s; +pigerai piger ver 41.77 11.96 0.01 0.00 ind:fut:1s; +pigeraient piger ver 41.77 11.96 0.01 0.00 cnd:pre:3p; +pigerait piger ver 41.77 11.96 0.02 0.00 cnd:pre:3s; +pigeras piger ver 41.77 11.96 0.06 0.07 ind:fut:2s; +pigerez piger ver 41.77 11.96 0.02 0.00 ind:fut:2p; +piges piger ver 41.77 11.96 10.99 2.03 ind:pre:2s;sub:pre:2s; +pigez piger ver 41.77 11.96 2.08 0.47 imp:pre:2p;ind:pre:2p; +pigiste pigiste nom s 0.24 0.54 0.21 0.27 +pigistes pigiste nom p 0.24 0.54 0.03 0.27 +pigment pigment nom m s 0.35 0.61 0.07 0.34 +pigmentaire pigmentaire adj f s 0.04 0.07 0.04 0.07 +pigmentation pigmentation nom f s 0.51 0.14 0.51 0.14 +pigments pigment nom m p 0.35 0.61 0.28 0.27 +pigne pigne nom f s 0.07 0.47 0.02 0.27 +pigner pigner ver 0.01 0.00 0.01 0.00 inf; +pignes pigne nom f p 0.07 0.47 0.04 0.20 +pignochait pignocher ver 0.00 0.07 0.00 0.07 ind:imp:3s; +pignole pignole nom f s 0.01 0.07 0.01 0.07 +pignon pignon nom m s 4.94 8.31 4.79 6.55 +pignons pignon nom m p 4.94 8.31 0.15 1.76 +pignouf pignouf nom m s 0.27 0.54 0.25 0.34 +pignoufs pignouf nom m p 0.27 0.54 0.02 0.20 +pigé piger ver m s 41.77 11.96 19.46 3.51 par:pas; +pila piler ver 3.34 6.15 0.00 0.34 ind:pas:3s; +pilaf pilaf nom m s 0.26 0.27 0.26 0.27 +pilaient piler ver 3.34 6.15 0.00 0.14 ind:imp:3p; +pilait piler ver 3.34 6.15 0.00 0.54 ind:imp:3s; +pilant piler ver 3.34 6.15 0.07 0.07 par:pre; +pilastre pilastre nom m s 0.03 1.15 0.02 0.20 +pilastres pilastre nom m p 0.03 1.15 0.01 0.95 +pilchards pilchard nom m p 0.00 0.27 0.00 0.27 +pile_poil pile_poil nom f s 0.07 0.00 0.07 0.00 +pile pile nom f s 21.30 32.50 16.22 21.62 +pilent piler ver 3.34 6.15 0.00 0.07 ind:pre:3p; +piler piler ver 3.34 6.15 0.35 0.27 inf; +piles pile nom f p 21.30 32.50 5.08 10.88 +pileuse pileux adj f s 0.06 0.61 0.00 0.20 +pileuses pileux adj f p 0.06 0.61 0.00 0.07 +pileux pileux adj m 0.06 0.61 0.06 0.34 +pilier pilier nom m s 3.82 16.15 2.43 7.23 +piliers pilier nom m p 3.82 16.15 1.39 8.92 +pilifère pilifère adj s 0.00 0.07 0.00 0.07 +pilla piller ver 7.66 8.38 0.01 0.27 ind:pas:3s; +pillage pillage nom m s 1.76 3.38 1.21 2.64 +pillages pillage nom m p 1.76 3.38 0.56 0.74 +pillaient piller ver 7.66 8.38 0.06 0.41 ind:imp:3p; +pillais piller ver 7.66 8.38 0.01 0.00 ind:imp:1s; +pillait piller ver 7.66 8.38 0.16 0.34 ind:imp:3s; +pillant piller ver 7.66 8.38 0.17 0.68 par:pre; +pillard pillard nom m s 1.00 1.89 0.15 0.47 +pillarde pillard nom f s 1.00 1.89 0.00 0.07 +pillards pillard nom m p 1.00 1.89 0.85 1.35 +pille piller ver 7.66 8.38 1.02 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pillent piller ver 7.66 8.38 0.78 0.07 ind:pre:3p; +piller piller ver 7.66 8.38 2.12 2.70 inf; +pillera piller ver 7.66 8.38 0.02 0.00 ind:fut:3s; +pillerait piller ver 7.66 8.38 0.02 0.00 cnd:pre:3s; +pillerons piller ver 7.66 8.38 0.02 0.07 ind:fut:1p; +pilleront piller ver 7.66 8.38 0.16 0.00 ind:fut:3p; +pilles piller ver 7.66 8.38 0.04 0.07 ind:pre:2s; +pilleur pilleur nom m s 1.05 1.35 0.44 0.34 +pilleurs pilleur nom m p 1.05 1.35 0.47 0.95 +pilleuse pilleur nom f s 1.05 1.35 0.14 0.07 +pillez piller ver 7.66 8.38 0.35 0.07 imp:pre:2p;ind:pre:2p; +pilliez piller ver 7.66 8.38 0.02 0.00 ind:imp:2p; +pillons piller ver 7.66 8.38 0.03 0.00 imp:pre:1p;ind:pre:1p; +pillèrent piller ver 7.66 8.38 0.02 0.07 ind:pas:3p; +pillé piller ver m s 7.66 8.38 1.87 1.62 par:pas; +pillée piller ver f s 7.66 8.38 0.58 0.47 par:pas; +pillées piller ver f p 7.66 8.38 0.04 0.47 par:pas; +pillés piller ver m p 7.66 8.38 0.18 0.61 par:pas; +piloches piloche nom f p 0.00 0.07 0.00 0.07 +pilon pilon nom m s 0.62 1.69 0.47 1.28 +pilonnage pilonnage nom m s 0.16 0.61 0.12 0.54 +pilonnages pilonnage nom m p 0.16 0.61 0.04 0.07 +pilonnaient pilonner ver 0.60 1.35 0.01 0.20 ind:imp:3p; +pilonnait pilonner ver 0.60 1.35 0.01 0.20 ind:imp:3s; +pilonnant pilonner ver 0.60 1.35 0.01 0.07 par:pre; +pilonnent pilonner ver 0.60 1.35 0.13 0.14 ind:pre:3p; +pilonner pilonner ver 0.60 1.35 0.10 0.27 inf; +pilonnera pilonner ver 0.60 1.35 0.00 0.07 ind:fut:3s; +pilonneurs pilonneur nom m p 0.00 0.07 0.00 0.07 +pilonnez pilonner ver 0.60 1.35 0.02 0.00 imp:pre:2p;ind:pre:2p; +pilonné pilonner ver m s 0.60 1.35 0.28 0.14 par:pas; +pilonnée pilonner ver f s 0.60 1.35 0.02 0.07 par:pas; +pilonnées pilonner ver f p 0.60 1.35 0.00 0.07 par:pas; +pilonnés pilonner ver m p 0.60 1.35 0.02 0.14 par:pas; +pilons pilon nom m p 0.62 1.69 0.14 0.41 +pilori pilori nom m s 0.79 2.50 0.78 2.36 +piloris pilori nom m p 0.79 2.50 0.01 0.14 +pilosité pilosité nom f s 0.09 0.27 0.09 0.27 +pilot pilot nom m s 1.10 0.00 1.10 0.00 +pilota piloter ver 13.18 4.12 0.00 0.07 ind:pas:3s; +pilotage pilotage nom m s 2.44 1.35 2.44 1.35 +pilotaient piloter ver 13.18 4.12 0.01 0.00 ind:imp:3p; +pilotais piloter ver 13.18 4.12 0.28 0.14 ind:imp:1s;ind:imp:2s; +pilotait piloter ver 13.18 4.12 0.79 0.61 ind:imp:3s; +pilotant piloter ver 13.18 4.12 0.06 0.27 par:pre; +pilote pilote nom s 37.69 8.72 29.10 5.61 +pilotent piloter ver 13.18 4.12 0.06 0.07 ind:pre:3p; +piloter piloter ver 13.18 4.12 6.12 1.82 inf; +pilotera piloter ver 13.18 4.12 0.13 0.00 ind:fut:3s; +piloterai piloter ver 13.18 4.12 0.17 0.00 ind:fut:1s; +piloterait piloter ver 13.18 4.12 0.03 0.14 cnd:pre:3s; +piloteras piloter ver 13.18 4.12 0.02 0.00 ind:fut:2s; +piloteront piloter ver 13.18 4.12 0.01 0.00 ind:fut:3p; +pilotes pilote nom p 37.69 8.72 8.59 3.11 +pilotez piloter ver 13.18 4.12 0.36 0.00 imp:pre:2p;ind:pre:2p; +pilotiez piloter ver 13.18 4.12 0.08 0.00 ind:imp:2p; +pilotin pilotin nom m s 0.10 0.00 0.10 0.00 +pilotis pilotis nom m 0.33 2.30 0.33 2.30 +pilotèrent piloter ver 13.18 4.12 0.00 0.07 ind:pas:3p; +piloté piloter ver m s 13.18 4.12 1.65 0.41 par:pas; +pilotée piloter ver f s 13.18 4.12 0.19 0.00 par:pas; +pilotées piloter ver f p 13.18 4.12 0.01 0.07 par:pas; +pilotés piloter ver m p 13.18 4.12 0.06 0.14 par:pas; +pilou pilou nom m s 0.00 0.95 0.00 0.95 +pilsen pilsen nom f s 0.00 0.07 0.00 0.07 +pilé piler ver m s 3.34 6.15 0.30 1.15 par:pas; +pilée piler ver f s 3.34 6.15 0.19 1.01 par:pas; +pilées piler ver f p 3.34 6.15 0.00 0.27 par:pas; +pilule pilule nom f s 22.64 12.91 6.10 4.86 +pilules pilule nom f p 22.64 12.91 16.54 8.04 +pilum pilum nom m s 0.00 0.07 0.00 0.07 +pilés piler ver m p 3.34 6.15 0.04 0.41 par:pas; +pimbêche pimbêche nom f s 0.45 0.47 0.42 0.34 +pimbêches pimbêche nom f p 0.45 0.47 0.03 0.14 +piment piment nom m s 4.76 4.66 2.94 2.77 +pimenta pimenter ver 0.82 0.88 0.00 0.07 ind:pas:3s; +pimentait pimenter ver 0.82 0.88 0.00 0.20 ind:imp:3s; +pimentant pimenter ver 0.82 0.88 0.00 0.07 par:pre; +pimente pimenter ver 0.82 0.88 0.17 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pimentent pimenter ver 0.82 0.88 0.01 0.00 ind:pre:3p; +pimenter pimenter ver 0.82 0.88 0.56 0.27 inf; +piments piment nom m p 4.76 4.66 1.82 1.89 +pimenté pimenté adj m s 0.13 0.27 0.06 0.20 +pimentée pimenter ver f s 0.82 0.88 0.04 0.07 par:pas; +pimentées pimenté adj f p 0.13 0.27 0.01 0.00 +pimentés pimenté adj m p 0.13 0.27 0.03 0.00 +pimpant pimpant adj m s 0.81 4.05 0.34 0.54 +pimpante pimpant adj f s 0.81 4.05 0.12 2.09 +pimpantes pimpant adj f p 0.81 4.05 0.34 1.22 +pimpants pimpant adj m p 0.81 4.05 0.01 0.20 +pimpon pimpon nom m s 0.01 0.41 0.00 0.14 +pimpons pimpon nom m p 0.01 0.41 0.01 0.27 +pimprenelle pimprenelle nom f s 0.08 0.14 0.08 0.07 +pimprenelles pimprenelle nom f p 0.08 0.14 0.00 0.07 +pin_s pin_s nom m 0.30 0.00 0.30 0.00 +pin_pon pin_pon ono 0.00 0.34 0.00 0.34 +pin_up pin_up nom f 0.71 0.54 0.71 0.54 +pin pin nom m s 5.06 26.62 2.79 9.53 +pina piner ver 0.81 0.20 0.44 0.00 ind:pas:3s; +pinacle pinacle nom m s 0.02 0.61 0.02 0.54 +pinacles pinacle nom m p 0.02 0.61 0.00 0.07 +pinacothèque pinacothèque nom f s 0.00 0.20 0.00 0.20 +pinaillage pinaillage nom m s 0.02 0.00 0.02 0.00 +pinaillait pinailler ver 0.50 0.34 0.00 0.07 ind:imp:3s; +pinaille pinailler ver 0.50 0.34 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pinailler pinailler ver 0.50 0.34 0.41 0.14 inf; +pinailles pinailler ver 0.50 0.34 0.05 0.00 ind:pre:2s; +pinailleur pinailleur nom m s 0.02 0.00 0.02 0.00 +pinaillé pinailler ver m s 0.50 0.34 0.02 0.00 par:pas; +pinard pinard nom m s 0.39 6.89 0.39 6.76 +pinardiers pinardier nom m p 0.00 0.14 0.00 0.07 +pinardière pinardier nom f s 0.00 0.14 0.00 0.07 +pinards pinard nom m p 0.39 6.89 0.00 0.14 +pinasse pinasse nom f s 0.00 0.54 0.00 0.14 +pinasses pinasse nom f p 0.00 0.54 0.00 0.41 +pince_fesse pince_fesse nom m p 0.05 0.14 0.05 0.14 +pince_maille pince_maille nom m p 0.00 0.07 0.00 0.07 +pince_monseigneur pince_monseigneur nom f s 0.03 0.54 0.03 0.54 +pince_nez pince_nez nom m 0.07 1.35 0.07 1.35 +pince_sans_rire pince_sans_rire adj s 0.05 0.47 0.05 0.47 +pince pince nom f s 9.00 14.73 5.62 7.64 +pinceau pinceau nom m s 4.59 17.91 2.96 10.27 +pinceaux pinceau nom m p 4.59 17.91 1.63 7.64 +pincement pincement nom m s 0.19 3.92 0.18 3.65 +pincements pincement nom m p 0.19 3.92 0.01 0.27 +pincent pincer ver 10.84 23.65 0.14 0.54 ind:pre:3p; +pincer pincer ver 10.84 23.65 4.06 3.72 inf; +pincera pincer ver 10.84 23.65 0.20 0.07 ind:fut:3s; +pincerai pincer ver 10.84 23.65 0.02 0.00 ind:fut:1s; +pinceras pincer ver 10.84 23.65 0.01 0.00 ind:fut:2s; +pincerez pincer ver 10.84 23.65 0.01 0.00 ind:fut:2p; +pincerons pincer ver 10.84 23.65 0.01 0.00 ind:fut:1p; +pinces pince nom f p 9.00 14.73 3.38 7.09 +pincette pincette nom f s 0.29 1.49 0.05 0.34 +pincettes pincette nom f p 0.29 1.49 0.25 1.15 +pinceur pinceur nom m s 0.00 0.07 0.00 0.07 +pincez pincer ver 10.84 23.65 0.82 0.00 imp:pre:2p;ind:pre:2p; +pinchart pinchart nom m s 0.00 0.07 0.00 0.07 +pinciez pincer ver 10.84 23.65 0.16 0.00 ind:imp:2p; +pincions pincer ver 10.84 23.65 0.01 0.20 ind:imp:1p; +pincèrent pincer ver 10.84 23.65 0.00 0.07 ind:pas:3p; +pincé pincer ver m s 10.84 23.65 1.27 2.03 par:pas; +pincée pincée nom f s 1.37 3.31 1.30 2.91 +pincées pincer ver f p 10.84 23.65 0.10 3.04 par:pas; +pincés pincer ver m p 10.84 23.65 0.10 0.47 par:pas; +pine pine nom f s 1.59 0.88 1.48 0.68 +pineau pineau nom m s 0.00 0.14 0.00 0.14 +piner piner ver 0.81 0.20 0.16 0.07 inf; +pines pine nom f p 1.59 0.88 0.11 0.20 +ping_pong ping_pong nom m s 2.67 2.36 2.67 2.36 +pinglot pinglot nom m s 0.00 0.14 0.00 0.07 +pinglots pinglot nom m p 0.00 0.14 0.00 0.07 +pingouin pingouin nom m s 3.51 2.64 2.29 1.35 +pingouins pingouin nom m p 3.51 2.64 1.23 1.28 +pingre pingre adj s 0.58 0.74 0.56 0.54 +pingrerie pingrerie nom f s 0.02 0.20 0.02 0.20 +pingres pingre nom p 0.19 0.34 0.15 0.07 +pink pink nom f s 1.00 0.34 1.00 0.34 +pinot pinot nom m s 0.47 0.14 0.46 0.07 +pinots pinot nom m p 0.47 0.14 0.01 0.07 +pins pin nom m p 5.06 26.62 2.27 17.09 +pinson pinson nom m s 2.86 1.82 2.68 1.08 +pinsons pinson nom m p 2.86 1.82 0.18 0.74 +pinta pinter ver 0.33 0.68 0.05 0.20 ind:pas:3s;;ind:pas:3s; +pintade pintade nom f s 0.44 2.16 0.44 0.54 +pintades pintade nom f p 0.44 2.16 0.00 1.62 +pintait pinter ver 0.33 0.68 0.00 0.07 ind:imp:3s; +pinte pinte nom f s 1.34 0.61 0.90 0.34 +pinter pinter ver 0.33 0.68 0.12 0.14 inf; +pintes pinte nom f p 1.34 0.61 0.44 0.27 +pinça pincer ver 10.84 23.65 0.00 2.43 ind:pas:3s; +pinçage pinçage nom m s 0.10 0.00 0.10 0.00 +pinçai pincer ver 10.84 23.65 0.00 0.07 ind:pas:1s; +pinçaient pincer ver 10.84 23.65 0.05 0.61 ind:imp:3p; +pinçais pincer ver 10.84 23.65 0.07 0.34 ind:imp:1s; +pinçait pincer ver 10.84 23.65 0.52 2.23 ind:imp:3s; +pinçant pincer ver 10.84 23.65 0.08 2.09 par:pre; +pinçard pinçard adj m s 0.00 0.07 0.00 0.07 +pinède pinède nom f s 0.72 3.72 0.58 2.70 +pinèdes pinède nom f p 0.72 3.72 0.15 1.01 +pinçon pinçon nom m s 0.04 0.20 0.04 0.07 +pinçons pincer ver 10.84 23.65 0.01 0.00 imp:pre:1p; +pinçotait pinçoter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +pinçotant pinçoter ver 0.00 0.20 0.00 0.07 par:pre; +pinçote pinçoter ver 0.00 0.20 0.00 0.07 ind:pre:3s; +pinçure pinçure nom f s 0.00 0.07 0.00 0.07 +pinté pinter ver m s 0.33 0.68 0.04 0.00 par:pas; +pintée pinter ver f s 0.33 0.68 0.01 0.14 par:pas; +pintés pinter ver m p 0.33 0.68 0.00 0.07 par:pas; +piné piner ver m s 0.81 0.20 0.10 0.00 par:pas; +pinéal pinéal adj m s 0.23 0.07 0.02 0.07 +pinéale pinéal adj f s 0.23 0.07 0.19 0.00 +pinéales pinéal adj f p 0.23 0.07 0.02 0.00 +piochaient piocher ver 1.11 2.91 0.00 0.14 ind:imp:3p; +piochais piocher ver 1.11 2.91 0.00 0.14 ind:imp:1s; +piochait piocher ver 1.11 2.91 0.00 0.54 ind:imp:3s; +piochant piocher ver 1.11 2.91 0.01 0.14 par:pre; +pioche pioche nom f s 4.36 6.42 4.18 4.39 +piochent piocher ver 1.11 2.91 0.01 0.07 ind:pre:3p; +piocher piocher ver 1.11 2.91 0.50 1.42 inf; +pioches pioche nom f p 4.36 6.42 0.18 2.03 +piocheur piocheur nom m s 0.00 0.07 0.00 0.07 +piochez piocher ver 1.11 2.91 0.25 0.00 imp:pre:2p;ind:pre:2p; +pioché piocher ver m s 1.11 2.91 0.18 0.00 par:pas; +piochée piocher ver f s 1.11 2.91 0.00 0.07 par:pas; +piochées piocher ver f p 1.11 2.91 0.00 0.07 par:pas; +piolet piolet nom m s 0.31 0.14 0.31 0.14 +pion pion nom m s 4.91 6.49 2.98 3.58 +pionce pioncer ver 1.63 2.64 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pioncent pioncer ver 1.63 2.64 0.00 0.20 ind:pre:3p; +pioncer pioncer ver 1.63 2.64 0.62 0.81 inf; +pioncera pioncer ver 1.63 2.64 0.01 0.00 ind:fut:3s; +pionces pioncer ver 1.63 2.64 0.15 0.14 ind:pre:2s; +pioncez pioncer ver 1.63 2.64 0.16 0.00 imp:pre:2p;ind:pre:2p; +pioncé pioncer ver m s 1.63 2.64 0.05 0.14 par:pas; +pionne pion nom f s 4.91 6.49 0.01 0.14 +pionner pionner ver 0.01 0.00 0.01 0.00 inf; +pionnier pionnier nom m s 4.17 9.73 1.27 2.50 +pionniers pionnier nom m p 4.17 9.73 2.62 7.03 +pionnière pionnier nom f s 4.17 9.73 0.28 0.07 +pionnières pionnière nom f p 0.03 0.00 0.03 0.00 +pions pion nom m p 4.91 6.49 1.92 2.77 +pionçais pioncer ver 1.63 2.64 0.33 0.07 ind:imp:1s;ind:imp:2s; +pionçait pioncer ver 1.63 2.64 0.03 0.41 ind:imp:3s; +pionçant pioncer ver 1.63 2.64 0.00 0.07 par:pre; +piot piot nom m s 0.00 0.34 0.00 0.14 +piots piot nom m p 0.00 0.34 0.00 0.20 +pioupiou pioupiou nom m s 0.05 0.34 0.05 0.27 +pioupious pioupiou nom m p 0.05 0.34 0.00 0.07 +pipa pipa nom m s 0.02 0.07 0.02 0.07 +pipai piper ver 20.57 2.57 0.00 0.07 ind:pas:1s; +pipais piper ver 20.57 2.57 0.01 0.07 ind:imp:1s; +pipait piper ver 20.57 2.57 0.01 0.14 ind:imp:3s; +pipant piper ver 20.57 2.57 0.10 0.00 par:pre; +pipasse piper ver 20.57 2.57 0.00 0.07 sub:imp:1s; +pipe_line pipe_line nom m s 0.11 0.34 0.09 0.34 +pipe_line pipe_line nom m p 0.11 0.34 0.02 0.00 +pipe pipe nom f s 16.38 32.84 12.74 25.74 +pipeau pipeau nom m s 2.09 1.22 1.84 0.95 +pipeaux pipeau nom m p 2.09 1.22 0.25 0.27 +pipelet pipelet nom m s 0.00 0.47 0.00 0.34 +pipelets pipelet nom m p 0.00 0.47 0.00 0.14 +pipelette pipelette nom f s 0.35 1.82 0.27 1.62 +pipelettes pipelette nom f p 0.35 1.82 0.09 0.20 +pipeline pipeline nom m s 0.51 0.14 0.42 0.07 +pipelines pipeline nom m p 0.51 0.14 0.08 0.07 +piper piper ver 20.57 2.57 19.94 0.88 inf; +pipera piper ver 20.57 2.57 0.01 0.00 ind:fut:3s; +piperade piperade nom f s 0.00 0.07 0.00 0.07 +piperie piperie nom f s 0.00 0.07 0.00 0.07 +pipes pipe nom f p 16.38 32.84 3.64 7.09 +pipette pipette nom f s 0.55 0.68 0.54 0.54 +pipettes pipette nom f p 0.55 0.68 0.01 0.14 +pipeur pipeur nom m s 0.00 0.47 0.00 0.14 +pipeuse pipeur nom f s 0.00 0.47 0.00 0.14 +pipeuses pipeuse nom f p 0.14 0.00 0.14 0.00 +pipi_room pipi_room nom m s 0.05 0.00 0.05 0.00 +pipi pipi nom m s 15.36 10.07 15.33 9.19 +pipiers pipier nom m p 0.00 0.07 0.00 0.07 +pipis pipi nom m p 15.36 10.07 0.03 0.88 +pipistrelle pipistrelle nom f s 0.13 0.00 0.13 0.00 +pipo pipo nom m s 0.18 0.00 0.18 0.00 +pipé piper ver m s 20.57 2.57 0.16 0.20 par:pas; +pipée pipée nom f s 0.02 0.07 0.02 0.00 +pipées pipée nom f p 0.02 0.07 0.00 0.07 +pipés piper ver m p 20.57 2.57 0.24 0.41 par:pas; +piqûre piqûre nom f s 11.41 10.95 7.59 6.08 +piqûres piqûre nom f p 11.41 10.95 3.82 4.86 +piqua piquer ver 50.05 64.86 0.03 3.72 ind:pas:3s; +piquage piquage nom m s 0.02 0.07 0.02 0.00 +piquages piquage nom m p 0.02 0.07 0.00 0.07 +piquai piquer ver 50.05 64.86 0.01 0.34 ind:pas:1s; +piquaient piquer ver 50.05 64.86 0.11 2.36 ind:imp:3p; +piquais piquer ver 50.05 64.86 0.91 0.88 ind:imp:1s;ind:imp:2s; +piquait piquer ver 50.05 64.86 0.90 6.55 ind:imp:3s; +piquant piquant nom m s 1.17 1.76 0.74 1.15 +piquante piquant adj f s 2.59 6.82 1.60 2.57 +piquantes piquant adj f p 2.59 6.82 0.31 1.22 +piquants piquant nom m p 1.17 1.76 0.43 0.61 +pique_assiette pique_assiette nom s 0.39 0.34 0.27 0.27 +pique_assiette pique_assiette nom p 0.39 0.34 0.12 0.07 +pique_boeuf pique_boeuf nom m p 0.00 0.07 0.00 0.07 +pique_feu pique_feu nom m 0.03 0.81 0.03 0.81 +pique_niquer pique_niquer ver 1.03 0.74 0.01 0.00 ind:imp:3p; +pique_nique pique_nique nom m s 6.05 4.12 5.57 3.18 +pique_niquer pique_niquer ver 1.03 0.74 0.03 0.07 ind:pre:3p; +pique_niquer pique_niquer ver 1.03 0.74 0.83 0.47 inf;; +pique_niquer pique_niquer ver 1.03 0.74 0.01 0.00 cnd:pre:3p; +pique_niquer pique_niquer ver 1.03 0.74 0.01 0.00 ind:fut:1p; +pique_nique pique_nique nom m p 6.05 4.12 0.48 0.95 +pique_niqueur pique_niqueur nom m p 0.02 0.27 0.02 0.27 +pique_niquer pique_niquer ver 1.03 0.74 0.01 0.07 ind:pre:2p; +pique_niquer pique_niquer ver m s 1.03 0.74 0.05 0.07 par:pas; +pique piquer ver 50.05 64.86 7.74 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +piquent piquer ver 50.05 64.86 1.54 2.57 ind:pre:3p; +piquer piquer ver 50.05 64.86 15.35 14.26 inf; +piquera piquer ver 50.05 64.86 0.55 0.20 ind:fut:3s; +piquerai piquer ver 50.05 64.86 0.16 0.07 ind:fut:1s; +piqueraient piquer ver 50.05 64.86 0.02 0.07 cnd:pre:3p; +piquerais piquer ver 50.05 64.86 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +piquerait piquer ver 50.05 64.86 0.08 0.27 cnd:pre:3s; +piqueras piquer ver 50.05 64.86 0.17 0.14 ind:fut:2s; +piquerez piquer ver 50.05 64.86 0.01 0.00 ind:fut:2p; +piquerons piqueron nom m p 0.14 0.00 0.14 0.00 +piqueront piquer ver 50.05 64.86 0.04 0.14 ind:fut:3p; +piques piquer ver 50.05 64.86 1.92 0.61 ind:pre:2s; +piquet piquet nom m s 3.64 9.39 1.48 4.73 +piquetage piquetage nom m s 0.00 0.07 0.00 0.07 +piquetaient piqueter ver 0.00 3.18 0.00 0.41 ind:imp:3p; +piquetait piqueter ver 0.00 3.18 0.00 0.07 ind:imp:3s; +piqueter piqueter ver 0.00 3.18 0.00 0.14 inf; +piquetis piquetis nom m 0.00 0.14 0.00 0.14 +piquets piquet nom m p 3.64 9.39 2.16 4.66 +piquette piquette nom f s 0.99 1.15 0.99 1.08 +piquettes piquette nom f p 0.99 1.15 0.00 0.07 +piqueté piqueter ver m s 0.00 3.18 0.00 0.95 par:pas; +piquetée piqueter ver f s 0.00 3.18 0.00 0.88 par:pas; +piquetées piqueter ver f p 0.00 3.18 0.00 0.47 par:pas; +piquetés piqueter ver m p 0.00 3.18 0.00 0.27 par:pas; +piqueur piqueur adj m s 0.76 0.61 0.61 0.54 +piqueurs piqueur nom m p 0.32 1.35 0.14 0.34 +piqueuse piqueur nom f s 0.32 1.35 0.00 0.27 +piqueuses piqueur nom f p 0.32 1.35 0.00 0.41 +piqueux piqueux nom m 0.01 0.20 0.01 0.20 +piquez piquer ver 50.05 64.86 1.15 0.20 imp:pre:2p;ind:pre:2p; +piquier piquier nom m s 0.01 0.07 0.01 0.07 +piquiez piquer ver 50.05 64.86 0.13 0.07 ind:imp:2p; +piquions piquer ver 50.05 64.86 0.00 0.07 ind:imp:1p; +piquons piquer ver 50.05 64.86 0.04 0.27 imp:pre:1p;ind:pre:1p; +piquouse piquouse nom f s 0.04 0.95 0.02 0.54 +piquouser piquouser ver 0.01 0.00 0.01 0.00 inf; +piquouses piquouse nom f p 0.04 0.95 0.02 0.41 +piquouze piquouze nom f s 0.05 0.34 0.02 0.20 +piquouzes piquouze nom f p 0.05 0.34 0.03 0.14 +piquèrent piquer ver 50.05 64.86 0.00 0.47 ind:pas:3p; +piqué piquer ver m s 50.05 64.86 15.18 11.55 par:pas; +piquée piquer ver f s 50.05 64.86 2.79 3.78 par:pas; +piquées piquer ver f p 50.05 64.86 0.38 1.15 par:pas; +piqués piquer ver m p 50.05 64.86 0.58 2.57 par:pas; +pirandellienne pirandellien adj f s 0.00 0.07 0.00 0.07 +piranha piranha nom m s 1.32 0.14 0.26 0.00 +piranhas piranha nom m p 1.32 0.14 1.06 0.14 +piratage piratage nom m s 0.56 0.07 0.53 0.07 +piratages piratage nom m p 0.56 0.07 0.03 0.00 +pirataient pirater ver 2.84 0.47 0.00 0.07 ind:imp:3p; +piratant pirater ver 2.84 0.47 0.02 0.07 par:pre; +pirate pirate nom m s 8.14 5.47 3.88 1.69 +piratent pirater ver 2.84 0.47 0.06 0.00 ind:pre:3p; +pirater pirater ver 2.84 0.47 0.90 0.14 inf; +piraterie piraterie nom f s 0.51 0.61 0.49 0.41 +pirateries piraterie nom f p 0.51 0.61 0.02 0.20 +pirates pirate nom m p 8.14 5.47 4.26 3.78 +piratez pirater ver 2.84 0.47 0.06 0.00 imp:pre:2p;ind:pre:2p; +piraté pirater ver m s 2.84 0.47 1.14 0.14 par:pas; +piratée pirater ver f s 2.84 0.47 0.07 0.00 par:pas; +piratés pirater ver m p 2.84 0.47 0.25 0.07 par:pas; +pire pire adj s 98.83 57.70 83.22 39.80 +pires pire adj p 98.83 57.70 15.61 17.91 +piriforme piriforme adj m s 0.00 0.47 0.00 0.34 +piriformes piriforme adj f p 0.00 0.47 0.00 0.14 +pirogue pirogue nom f s 0.76 4.73 0.65 2.50 +pirogues pirogue nom f p 0.76 4.73 0.11 2.23 +pirojki pirojki nom m 0.28 0.20 0.00 0.14 +pirojkis pirojki nom m p 0.28 0.20 0.28 0.07 +pirolle pirolle nom f s 0.00 0.20 0.00 0.20 +pirouetta pirouetter ver 0.10 0.81 0.00 0.20 ind:pas:3s; +pirouettais pirouetter ver 0.10 0.81 0.00 0.07 ind:imp:1s; +pirouettait pirouetter ver 0.10 0.81 0.00 0.07 ind:imp:3s; +pirouettant pirouetter ver 0.10 0.81 0.00 0.07 par:pre; +pirouette pirouette nom f s 1.39 3.51 0.42 3.04 +pirouetter pirouetter ver 0.10 0.81 0.07 0.20 inf; +pirouettes pirouette nom f p 1.39 3.51 0.96 0.47 +pis_aller pis_aller nom m 0.14 0.81 0.14 0.81 +pis pis adv_sup 30.15 37.16 30.15 37.16 +pisa piser ver 0.50 0.00 0.50 0.00 ind:pas:3s; +pisan pisan adj m s 0.10 0.07 0.10 0.00 +pisans pisan adj m p 0.10 0.07 0.00 0.07 +pisans pisan nom m p 0.00 0.07 0.00 0.07 +piscicole piscicole adj s 0.07 0.07 0.06 0.00 +piscicoles piscicole adj p 0.07 0.07 0.01 0.07 +pisciculteur pisciculteur nom m s 0.01 0.07 0.01 0.07 +pisciculture pisciculture nom f s 0.04 0.14 0.04 0.14 +pisciforme pisciforme adj f s 0.00 0.07 0.00 0.07 +piscine piscine nom f s 23.62 17.09 22.19 15.74 +piscines piscine nom f p 23.62 17.09 1.43 1.35 +pisiforme pisiforme nom m s 0.03 0.00 0.03 0.00 +pissa pisser ver 39.03 26.49 0.01 0.54 ind:pas:3s; +pissaient pisser ver 39.03 26.49 0.04 0.68 ind:imp:3p; +pissais pisser ver 39.03 26.49 0.67 0.27 ind:imp:1s;ind:imp:2s; +pissait pisser ver 39.03 26.49 0.78 1.96 ind:imp:3s; +pissaladière pissaladière nom f s 0.00 0.07 0.00 0.07 +pissant pisser ver 39.03 26.49 0.45 0.68 par:pre; +pissat pissat nom m s 0.10 0.41 0.10 0.41 +pisse_copie pisse_copie nom s 0.01 0.27 0.01 0.20 +pisse_copie pisse_copie nom p 0.01 0.27 0.00 0.07 +pisse_froid pisse_froid nom m 0.10 0.34 0.10 0.34 +pisse_vinaigre pisse_vinaigre nom m 0.04 0.07 0.04 0.07 +pisse pisser ver 39.03 26.49 6.84 5.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pissenlit pissenlit nom m s 1.32 3.24 0.68 1.28 +pissenlits pissenlit nom m p 1.32 3.24 0.65 1.96 +pissent pisser ver 39.03 26.49 0.60 0.68 ind:pre:3p; +pisser pisser ver 39.03 26.49 20.83 13.65 inf; +pissera pisser ver 39.03 26.49 0.25 0.00 ind:fut:3s; +pisserai pisser ver 39.03 26.49 0.43 0.00 ind:fut:1s; +pisseraient pisser ver 39.03 26.49 0.01 0.14 cnd:pre:3p; +pisserais pisser ver 39.03 26.49 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +pisserait pisser ver 39.03 26.49 0.07 0.14 cnd:pre:3s; +pisseras pisser ver 39.03 26.49 0.06 0.27 ind:fut:2s; +pisses pisser ver 39.03 26.49 1.05 0.07 ind:pre:2s; +pissette pissette nom f s 0.14 0.20 0.14 0.20 +pisseur pisseur nom m s 0.51 0.88 0.25 0.14 +pisseurs pisseur nom m p 0.51 0.88 0.03 0.07 +pisseuse pisseux adj f s 0.71 2.84 0.30 0.68 +pisseuses pisseuse nom f p 0.14 0.00 0.14 0.00 +pisseux pisseux adj m 0.71 2.84 0.40 1.89 +pissez pisser ver 39.03 26.49 1.07 0.20 imp:pre:2p;ind:pre:2p; +pissoir pissoir nom m s 0.02 0.00 0.02 0.00 +pissons pisser ver 39.03 26.49 0.14 0.00 imp:pre:1p;ind:pre:1p; +pissât pisser ver 39.03 26.49 0.00 0.07 sub:imp:3s; +pissotière pissotière nom f s 0.61 3.45 0.41 2.03 +pissotières pissotière nom f p 0.61 3.45 0.20 1.42 +pissou pissou nom m s 5.28 0.07 5.28 0.07 +pissèrent pisser ver 39.03 26.49 0.00 0.07 ind:pas:3p; +pissé pisser ver m s 39.03 26.49 5.46 1.89 par:pas; +pissée pisser ver f s 39.03 26.49 0.13 0.00 par:pas; +pista pister ver 1.90 1.28 0.00 0.07 ind:pas:3s; +pistache pistache nom f s 0.69 1.69 0.41 0.74 +pistaches pistache nom f p 0.69 1.69 0.27 0.95 +pistachier pistachier nom m s 0.00 0.14 0.00 0.07 +pistachiers pistachier nom m p 0.00 0.14 0.00 0.07 +pistage pistage nom m s 0.30 0.00 0.30 0.00 +pistais pister ver 1.90 1.28 0.00 0.07 ind:imp:1s; +pistait pister ver 1.90 1.28 0.06 0.07 ind:imp:3s; +pistant pister ver 1.90 1.28 0.00 0.20 par:pre; +pistard pistard nom m s 0.01 0.47 0.01 0.20 +pistards pistard nom m p 0.01 0.47 0.00 0.27 +piste piste nom f s 51.77 41.15 43.01 34.86 +pistent pister ver 1.90 1.28 0.08 0.14 ind:pre:3p; +pister pister ver 1.90 1.28 0.76 0.47 inf; +pistera pister ver 1.90 1.28 0.01 0.00 ind:fut:3s; +pisterai pister ver 1.90 1.28 0.02 0.00 ind:fut:1s; +pistes piste nom f p 51.77 41.15 8.77 6.28 +pisteur pisteur nom m s 0.54 0.95 0.47 0.81 +pisteurs pisteur nom m p 0.54 0.95 0.06 0.14 +pistez pister ver 1.90 1.28 0.15 0.00 imp:pre:2p;ind:pre:2p; +pistil pistil nom m s 0.02 0.81 0.02 0.47 +pistils pistil nom m p 0.02 0.81 0.00 0.34 +pistole pistole nom f s 1.09 0.34 0.16 0.27 +pistolero pistolero nom m s 0.24 0.14 0.08 0.07 +pistoleros pistolero nom m p 0.24 0.14 0.16 0.07 +pistoles pistole nom f p 1.09 0.34 0.93 0.07 +pistolet_mitrailleur pistolet_mitrailleur nom m s 0.02 0.00 0.02 0.00 +pistolet pistolet nom m s 34.92 18.78 31.63 14.80 +pistolets pistolet nom m p 34.92 18.78 3.29 3.99 +pistoleurs pistoleur nom m p 0.00 0.07 0.00 0.07 +pistolétade pistolétade nom f s 0.00 0.14 0.00 0.14 +piston piston nom m s 2.46 3.18 1.79 2.50 +pistonnais pistonner ver 1.03 0.47 0.00 0.07 ind:imp:2s; +pistonner pistonner ver 1.03 0.47 0.29 0.20 inf; +pistonnera pistonner ver 1.03 0.47 0.01 0.00 ind:fut:3s; +pistonnerai pistonner ver 1.03 0.47 0.01 0.00 ind:fut:1s; +pistonnions pistonner ver 1.03 0.47 0.01 0.00 ind:imp:1p; +pistonné pistonner ver m s 1.03 0.47 0.67 0.14 par:pas; +pistonnée pistonner ver f s 1.03 0.47 0.04 0.00 par:pas; +pistonnés pistonné nom m p 0.35 0.07 0.10 0.07 +pistons piston nom m p 2.46 3.18 0.68 0.68 +pistou pistou nom m s 0.38 0.00 0.38 0.00 +pisté pister ver m s 1.90 1.28 0.17 0.14 par:pas; +pistée pister ver f s 1.90 1.28 0.03 0.00 par:pas; +pistées pister ver f p 1.90 1.28 0.00 0.07 par:pas; +pistés pister ver m p 1.90 1.28 0.08 0.00 par:pas; +pisé pisé nom m s 0.02 0.47 0.02 0.47 +pit_bull pit_bull nom m s 0.63 0.00 0.26 0.00 +pit_bull pit_bull nom m p 0.63 0.00 0.06 0.00 +pit_bull pit_bull nom m s 0.63 0.00 0.31 0.00 +pita pita nom m s 0.73 0.00 0.70 0.00 +pitaine pitaine nom m s 0.00 2.09 0.00 2.09 +pitance pitance nom f s 0.35 2.70 0.35 2.57 +pitances pitance nom f p 0.35 2.70 0.00 0.14 +pitancher pitancher ver 0.00 0.14 0.00 0.07 inf; +pitancherai pitancher ver 0.00 0.14 0.00 0.07 ind:fut:1s; +pitancier pitancier nom m s 0.00 0.07 0.00 0.07 +pitas pita nom m p 0.73 0.00 0.03 0.00 +pitbull pitbull nom m s 1.02 0.00 0.82 0.00 +pitbulls pitbull nom m p 1.02 0.00 0.20 0.00 +pitch pitch nom m s 0.29 0.00 0.29 0.00 +pitcher pitcher ver 0.03 0.00 0.03 0.00 inf; +pitchoun pitchoun nom m s 0.03 0.07 0.02 0.00 +pitchoune pitchoun adj f s 0.03 0.00 0.03 0.00 +pitchounet pitchounet nom m s 0.14 0.00 0.14 0.00 +pitchounette pitchounette nom f s 0.14 0.00 0.14 0.00 +pitchpin pitchpin nom m s 0.00 0.47 0.00 0.47 +piteuse piteux adj f s 0.82 4.46 0.12 1.69 +piteusement piteusement adv 0.14 1.42 0.14 1.42 +piteuses piteux adj f p 0.82 4.46 0.00 0.07 +piteux piteux adj m 0.82 4.46 0.70 2.70 +pièce pièce nom f s 151.10 276.35 110.66 193.78 +pièces pièce nom f p 151.10 276.35 40.44 82.57 +piège piège nom m s 33.12 30.20 27.53 19.93 +piègent piéger ver 21.77 7.09 0.20 0.14 ind:pre:3p; +pièges piège nom m p 33.12 30.20 5.59 10.27 +pithiviers pithiviers nom m 0.00 0.07 0.00 0.07 +piète piéter ver 0.01 0.54 0.00 0.07 ind:pre:3s; +piètement piètement nom m s 0.00 0.07 0.00 0.07 +piètre piètre adj s 2.65 4.19 2.47 3.45 +piètrement piètrement adv 0.03 0.00 0.03 0.00 +piètres piètre adj p 2.65 4.19 0.18 0.74 +pithécanthrope pithécanthrope nom m s 0.00 0.34 0.00 0.20 +pithécanthropes pithécanthrope nom m p 0.00 0.34 0.00 0.14 +pitié pitié nom f s 76.38 58.11 76.38 57.91 +pitiés pitié nom f p 76.38 58.11 0.00 0.20 +piton piton nom m s 0.46 7.30 0.40 6.42 +pitonnant pitonner ver 0.00 0.14 0.00 0.07 par:pre; +pitonner pitonner ver 0.00 0.14 0.00 0.07 inf; +pitons piton nom m p 0.46 7.30 0.06 0.88 +pitoyable pitoyable adj s 6.26 9.19 5.63 6.96 +pitoyablement pitoyablement adv 0.17 0.47 0.17 0.47 +pitoyables pitoyable adj p 6.26 9.19 0.63 2.23 +pitre pitre nom m s 1.70 1.96 1.55 1.69 +pitrerie pitrerie nom f s 0.99 1.28 0.16 0.34 +pitreries pitrerie nom f p 0.99 1.28 0.83 0.95 +pitres pitre nom m p 1.70 1.96 0.15 0.27 +pittoresque pittoresque adj s 1.71 6.49 1.47 4.53 +pittoresques pittoresque adj p 1.71 6.49 0.25 1.96 +pituitaire pituitaire adj s 0.15 0.20 0.12 0.14 +pituitaires pituitaire adj p 0.15 0.20 0.03 0.07 +pituite pituite nom f s 0.01 0.07 0.01 0.07 +pityriasis pityriasis nom m 0.01 0.07 0.01 0.07 +piu piu adv 0.02 0.07 0.02 0.07 +piécette piécette nom f s 0.09 1.89 0.07 0.68 +piécettes piécette nom f p 0.09 1.89 0.02 1.22 +piédestal piédestal nom m s 0.80 2.09 0.79 2.09 +piédestaux piédestal nom m p 0.80 2.09 0.01 0.00 +piédroit piédroit nom m s 0.00 0.20 0.00 0.14 +piédroits piédroit nom m p 0.00 0.20 0.00 0.07 +piégeage piégeage nom m s 0.01 0.27 0.01 0.14 +piégeages piégeage nom m p 0.01 0.27 0.00 0.14 +piégeais piéger ver 21.77 7.09 0.02 0.07 ind:imp:1s; +piégeait piéger ver 21.77 7.09 0.04 0.41 ind:imp:3s; +piégeant piéger ver 21.77 7.09 0.04 0.00 par:pre; +piéger piéger ver 21.77 7.09 6.33 2.36 inf; +piégerai piéger ver 21.77 7.09 0.04 0.07 ind:fut:1s; +piégerais piéger ver 21.77 7.09 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +piégerait piéger ver 21.77 7.09 0.01 0.07 cnd:pre:3s; +piégerez piéger ver 21.77 7.09 0.03 0.00 ind:fut:2p; +piégeront piéger ver 21.77 7.09 0.01 0.07 ind:fut:3p; +piégeur piégeur nom m s 0.23 0.34 0.08 0.20 +piégeurs piégeur nom m p 0.23 0.34 0.00 0.07 +piégeuse piégeur nom f s 0.23 0.34 0.15 0.00 +piégeuses piégeur nom f p 0.23 0.34 0.00 0.07 +piégez piéger ver 21.77 7.09 0.07 0.00 imp:pre:2p;ind:pre:2p; +piégé piéger ver m s 21.77 7.09 9.12 1.69 par:pas; +piégée piéger ver f s 21.77 7.09 2.34 0.61 par:pas; +piégées piéger ver f p 21.77 7.09 0.43 0.54 par:pas; +piégés piéger ver m p 21.77 7.09 2.53 0.68 par:pas; +piémont piémont nom m s 0.01 0.14 0.01 0.14 +piémontais piémontais nom m 0.60 0.34 0.60 0.34 +piémontaise piémontais adj f s 0.34 0.34 0.01 0.07 +piéride piéride nom f s 0.00 0.14 0.00 0.07 +piérides piéride nom f p 0.00 0.14 0.00 0.07 +piéta piéta nom f s 0.15 0.07 0.15 0.07 +piétaille piétaille nom f s 0.20 1.28 0.20 1.28 +piétait piéter ver 0.01 0.54 0.00 0.07 ind:imp:3s; +piétant piéter ver 0.01 0.54 0.00 0.07 par:pre; +piétement piétement nom m s 0.00 0.47 0.00 0.47 +piéter piéter ver 0.01 0.54 0.00 0.07 inf; +piétin piétin nom m s 0.00 0.07 0.00 0.07 +piétina piétiner ver 6.78 20.61 0.10 0.74 ind:pas:3s; +piétinai piétiner ver 6.78 20.61 0.00 0.07 ind:pas:1s; +piétinaient piétiner ver 6.78 20.61 0.11 1.62 ind:imp:3p; +piétinais piétiner ver 6.78 20.61 0.29 0.14 ind:imp:1s;ind:imp:2s; +piétinait piétiner ver 6.78 20.61 0.03 1.89 ind:imp:3s; +piétinant piétiner ver 6.78 20.61 0.01 2.43 par:pre; +piétinante piétinant adj f s 0.00 0.34 0.00 0.07 +piétine piétiner ver 6.78 20.61 1.66 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +piétinement piétinement nom m s 0.11 5.34 0.09 4.53 +piétinements piétinement nom m p 0.11 5.34 0.01 0.81 +piétinent piétiner ver 6.78 20.61 0.39 1.28 ind:pre:3p; +piétiner piétiner ver 6.78 20.61 1.39 3.45 inf; +piétinera piétiner ver 6.78 20.61 0.26 0.14 ind:fut:3s; +piétinerai piétiner ver 6.78 20.61 0.14 0.00 ind:fut:1s; +piétinerais piétiner ver 6.78 20.61 0.03 0.00 cnd:pre:2s; +piétinerait piétiner ver 6.78 20.61 0.02 0.00 cnd:pre:3s; +piétineront piétiner ver 6.78 20.61 0.01 0.00 ind:fut:3p; +piétinez piétiner ver 6.78 20.61 0.20 0.07 imp:pre:2p;ind:pre:2p; +piétinons piétiner ver 6.78 20.61 0.02 0.14 ind:pre:1p; +piétinèrent piétiner ver 6.78 20.61 0.00 0.20 ind:pas:3p; +piétiné piétiner ver m s 6.78 20.61 1.35 2.57 par:pas; +piétinée piétiner ver f s 6.78 20.61 0.34 1.55 par:pas; +piétinées piétiner ver f p 6.78 20.61 0.05 0.74 par:pas; +piétinés piétiner ver m p 6.78 20.61 0.37 1.15 par:pas; +piétiste piétiste adj f s 0.00 0.07 0.00 0.07 +piéton piéton nom m s 0.75 3.72 0.54 1.28 +piétonne piéton adj f s 0.85 1.82 0.04 0.14 +piétonnes piéton adj f p 0.85 1.82 0.01 0.00 +piétonnier piétonnier adj m s 0.14 0.20 0.02 0.07 +piétonnière piétonnier adj f s 0.14 0.20 0.02 0.07 +piétonnières piétonnier adj f p 0.14 0.20 0.10 0.07 +piétons piéton adj m p 0.85 1.82 0.26 1.62 +piété piété nom f s 1.47 7.70 1.47 7.70 +pive pive nom f s 0.00 0.07 0.00 0.07 +pivert pivert nom m s 0.22 0.88 0.16 0.81 +piverts pivert nom m p 0.22 0.88 0.06 0.07 +pivoine pivoine nom f s 0.73 1.96 0.19 0.74 +pivoines pivoine nom f p 0.73 1.96 0.54 1.22 +pivot pivot nom m s 0.68 1.69 0.61 1.55 +pivota pivoter ver 1.19 9.39 0.00 2.09 ind:pas:3s; +pivotai pivoter ver 1.19 9.39 0.00 0.07 ind:pas:1s; +pivotaient pivoter ver 1.19 9.39 0.01 0.14 ind:imp:3p; +pivotait pivoter ver 1.19 9.39 0.04 0.54 ind:imp:3s; +pivotant pivotant adj m s 0.08 0.81 0.04 0.47 +pivotante pivotant adj f s 0.08 0.81 0.03 0.20 +pivotantes pivotant adj f p 0.08 0.81 0.00 0.07 +pivotants pivotant adj m p 0.08 0.81 0.00 0.07 +pivote pivoter ver 1.19 9.39 0.36 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pivotement pivotement nom m s 0.01 0.07 0.01 0.07 +pivotent pivoter ver 1.19 9.39 0.01 0.14 ind:pre:3p; +pivoter pivoter ver 1.19 9.39 0.33 2.91 inf; +pivotes pivoter ver 1.19 9.39 0.01 0.00 ind:pre:2s; +pivotez pivoter ver 1.19 9.39 0.29 0.00 imp:pre:2p; +pivots pivot nom m p 0.68 1.69 0.07 0.14 +pivotèrent pivoter ver 1.19 9.39 0.00 0.14 ind:pas:3p; +pivoté pivoter ver m s 1.19 9.39 0.13 0.27 par:pas; +pixel pixel nom m s 0.36 0.00 0.03 0.00 +pixellisés pixelliser ver m p 0.03 0.00 0.03 0.00 par:pas; +pixels pixel nom m p 0.36 0.00 0.34 0.00 +pizza pizza nom f s 23.09 3.24 18.60 2.09 +pizzaiolo pizzaiolo nom m s 0.02 0.00 0.02 0.00 +pizzas pizza nom f p 23.09 3.24 4.49 1.15 +pizzeria pizzeria nom f s 2.12 1.42 2.01 1.35 +pizzerias pizzeria nom f p 2.12 1.42 0.10 0.07 +pizzicato pizzicato nom m s 0.29 0.14 0.29 0.14 +plût plaire ver 607.24 139.80 0.22 1.69 sub:imp:3s; +plaît plaire ver 607.24 139.80 499.91 55.00 ind:pre:3s; +placage placage nom m s 0.22 0.34 0.22 0.20 +placages placage nom m p 0.22 0.34 0.00 0.14 +placard placard nom m s 21.47 34.39 19.26 25.74 +placardait placarder ver 0.56 3.18 0.00 0.20 ind:imp:3s; +placarde placarder ver 0.56 3.18 0.11 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +placarder placarder ver 0.56 3.18 0.04 0.54 inf; +placardes placarder ver 0.56 3.18 0.00 0.07 ind:pre:2s; +placardier placardier nom m s 0.00 0.14 0.00 0.14 +placards placard nom m p 21.47 34.39 2.20 8.65 +placardé placarder ver m s 0.56 3.18 0.16 0.41 par:pas; +placardée placarder ver f s 0.56 3.18 0.07 0.41 par:pas; +placardées placarder ver f p 0.56 3.18 0.02 0.34 par:pas; +placardés placarder ver m p 0.56 3.18 0.16 0.14 par:pas; +place place nom f s 301.30 468.58 280.54 437.97 +placebo placebo nom m s 0.52 0.14 0.47 0.14 +placebos placebo nom m p 0.52 0.14 0.05 0.00 +placement placement nom m s 3.12 3.11 2.13 2.03 +placements placement nom m p 3.12 3.11 0.99 1.08 +placent placer ver 52.95 101.76 0.58 0.74 ind:pre:3p; +placenta placenta nom m s 0.70 0.61 0.69 0.54 +placentaire placentaire adj s 0.04 0.00 0.04 0.00 +placentas placenta nom m p 0.70 0.61 0.02 0.07 +placer placer ver 52.95 101.76 10.24 21.69 inf; +placera placer ver 52.95 101.76 0.35 0.34 ind:fut:3s; +placerai placer ver 52.95 101.76 0.55 0.27 ind:fut:1s; +placeraient placer ver 52.95 101.76 0.00 0.07 cnd:pre:3p; +placerais placer ver 52.95 101.76 0.05 0.27 cnd:pre:1s; +placerait placer ver 52.95 101.76 0.17 0.68 cnd:pre:3s; +placeras placer ver 52.95 101.76 0.08 0.00 ind:fut:2s; +placerez placer ver 52.95 101.76 0.20 0.20 ind:fut:2p; +placerons placer ver 52.95 101.76 0.06 0.20 ind:fut:1p; +placeront placer ver 52.95 101.76 0.25 0.00 ind:fut:3p; +places place nom f p 301.30 468.58 20.76 30.61 +placet placet nom m s 0.01 0.27 0.00 0.20 +placets placet nom m p 0.01 0.27 0.01 0.07 +placette placette nom f s 0.00 1.82 0.00 1.49 +placettes placette nom f p 0.00 1.82 0.00 0.34 +placeur placeur nom m s 0.06 0.34 0.03 0.07 +placeurs placeur nom m p 0.06 0.34 0.03 0.00 +placeuse placeur nom f s 0.06 0.34 0.00 0.20 +placeuses placeur nom f p 0.06 0.34 0.00 0.07 +placez placer ver 52.95 101.76 4.01 1.15 imp:pre:2p;ind:pre:2p; +placide placide adj s 0.29 5.95 0.19 5.20 +placidement placidement adv 0.00 1.35 0.00 1.35 +placides placide adj p 0.29 5.95 0.11 0.74 +placidité placidité nom f s 0.00 2.03 0.00 2.03 +placier placier nom m s 0.03 0.14 0.03 0.07 +placiers placier nom m p 0.03 0.14 0.00 0.07 +placiez placer ver 52.95 101.76 0.03 0.00 ind:imp:2p; +placions placer ver 52.95 101.76 0.04 0.07 ind:imp:1p; +placoplâtre placoplâtre nom m s 0.06 0.00 0.06 0.00 +placèrent placer ver 52.95 101.76 0.14 0.68 ind:pas:3p; +placé placer ver m s 52.95 101.76 11.81 22.91 par:pas; +placée placer ver f s 52.95 101.76 4.51 8.18 par:pas; +placées placer ver f p 52.95 101.76 1.09 2.84 par:pas; +placés placer ver m p 52.95 101.76 2.19 6.96 par:pas; +plafond plafond nom m s 10.34 50.34 9.44 46.35 +plafonds plafond nom m p 10.34 50.34 0.90 3.99 +plafonnant plafonner ver 0.17 0.34 0.00 0.07 par:pre; +plafonne plafonner ver 0.17 0.34 0.07 0.07 imp:pre:2s;ind:pre:3s; +plafonnement plafonnement nom m s 0.04 0.07 0.04 0.07 +plafonner plafonner ver 0.17 0.34 0.05 0.07 inf; +plafonnier plafonnier nom m s 0.13 1.42 0.13 1.15 +plafonniers plafonnier nom m p 0.13 1.42 0.00 0.20 +plafonnière plafonnier nom f s 0.13 1.42 0.00 0.07 +plafonnons plafonner ver 0.17 0.34 0.00 0.07 ind:pre:1p; +plafonné plafonner ver m s 0.17 0.34 0.04 0.07 par:pas; +plafonnée plafonner ver f s 0.17 0.34 0.01 0.00 par:pas; +plafonnées plafonné adj f p 0.01 0.14 0.00 0.14 +plage plage nom f s 48.19 86.89 44.99 72.03 +plages plage nom f p 48.19 86.89 3.20 14.86 +plagiaire plagiaire nom m s 0.19 0.07 0.17 0.00 +plagiaires plagiaire nom m p 0.19 0.07 0.02 0.07 +plagiant plagier ver 0.40 0.47 0.00 0.14 par:pre; +plagiat plagiat nom m s 0.38 0.41 0.35 0.20 +plagiats plagiat nom m p 0.38 0.41 0.02 0.20 +plagie plagier ver 0.40 0.47 0.03 0.07 ind:pre:1s;ind:pre:3s; +plagier plagier ver 0.40 0.47 0.11 0.07 inf; +plagies plagier ver 0.40 0.47 0.01 0.00 ind:pre:2s; +plagioclase plagioclase nom m s 0.01 0.00 0.01 0.00 +plagié plagier ver m s 0.40 0.47 0.25 0.20 par:pas; +plaid plaid nom m s 0.34 1.15 0.28 0.95 +plaida plaider ver 11.46 12.70 0.14 0.81 ind:pas:3s; +plaidable plaidable adj f s 0.02 0.00 0.02 0.00 +plaidai plaider ver 11.46 12.70 0.00 0.07 ind:pas:1s; +plaidaient plaider ver 11.46 12.70 0.00 0.41 ind:imp:3p; +plaidais plaider ver 11.46 12.70 0.01 0.20 ind:imp:1s;ind:imp:2s; +plaidait plaider ver 11.46 12.70 0.06 0.88 ind:imp:3s; +plaidant plaider ver 11.46 12.70 0.21 0.41 par:pre; +plaidants plaidant adj m p 0.00 0.07 0.00 0.07 +plaide plaider ver 11.46 12.70 2.75 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +plaident plaider ver 11.46 12.70 0.13 0.20 ind:pre:3p; +plaider plaider ver 11.46 12.70 4.07 5.61 inf; +plaidera plaider ver 11.46 12.70 0.42 0.00 ind:fut:3s; +plaiderai plaider ver 11.46 12.70 0.61 0.14 ind:fut:1s; +plaiderait plaider ver 11.46 12.70 0.12 0.27 cnd:pre:3s; +plaideras plaider ver 11.46 12.70 0.13 0.07 ind:fut:2s; +plaiderez plaider ver 11.46 12.70 0.24 0.07 ind:fut:2p; +plaiderons plaider ver 11.46 12.70 0.08 0.14 ind:fut:1p; +plaideront plaider ver 11.46 12.70 0.01 0.00 ind:fut:3p; +plaides plaider ver 11.46 12.70 0.24 0.14 ind:pre:2s; +plaideur plaideur nom m s 0.05 0.47 0.04 0.14 +plaideurs plaideur nom m p 0.05 0.47 0.01 0.34 +plaidez plaider ver 11.46 12.70 1.03 0.20 imp:pre:2p;ind:pre:2p; +plaidiez plaider ver 11.46 12.70 0.03 0.07 ind:imp:2p; +plaidions plaider ver 11.46 12.70 0.00 0.07 ind:imp:1p; +plaidoirie plaidoirie nom f s 1.27 2.36 1.14 1.22 +plaidoiries plaidoirie nom f p 1.27 2.36 0.13 1.15 +plaidons plaider ver 11.46 12.70 0.09 0.14 imp:pre:1p;ind:pre:1p; +plaidoyer plaidoyer nom m s 0.64 1.28 0.60 0.88 +plaidoyers plaidoyer nom m p 0.64 1.28 0.04 0.41 +plaids plaid nom m p 0.34 1.15 0.05 0.20 +plaidèrent plaider ver 11.46 12.70 0.00 0.14 ind:pas:3p; +plaidé plaider ver m s 11.46 12.70 1.03 0.81 par:pas; +plaidée plaider ver f s 11.46 12.70 0.05 0.14 par:pas; +plaie plaie nom f s 15.02 24.26 10.42 14.32 +plaies plaie nom f p 15.02 24.26 4.59 9.93 +plaignît plaindre ver 61.25 67.84 0.00 0.20 sub:imp:3s; +plaignaient plaindre ver 61.25 67.84 0.28 2.30 ind:imp:3p; +plaignais plaindre ver 61.25 67.84 0.70 1.49 ind:imp:1s;ind:imp:2s; +plaignait plaindre ver 61.25 67.84 0.94 8.92 ind:imp:3s; +plaignant plaignant nom m s 1.56 0.74 0.86 0.34 +plaignante plaignant nom f s 1.56 0.74 0.33 0.14 +plaignantes plaignant nom f p 1.56 0.74 0.03 0.07 +plaignants plaignant nom m p 1.56 0.74 0.34 0.20 +plaigne plaindre ver 61.25 67.84 0.34 0.81 sub:pre:1s;sub:pre:3s; +plaignent plaindre ver 61.25 67.84 2.71 1.49 ind:pre:3p; +plaignes plaindre ver 61.25 67.84 0.04 0.00 sub:pre:2s; +plaignez plaindre ver 61.25 67.84 1.60 0.74 imp:pre:2p;ind:pre:2p; +plaigniez plaindre ver 61.25 67.84 0.05 0.00 ind:imp:2p; +plaignions plaindre ver 61.25 67.84 0.02 0.20 ind:imp:1p; +plaignirent plaindre ver 61.25 67.84 0.01 0.27 ind:pas:3p; +plaignis plaindre ver 61.25 67.84 0.00 0.20 ind:pas:1s; +plaignit plaindre ver 61.25 67.84 0.14 2.84 ind:pas:3s; +plaignons plaindre ver 61.25 67.84 0.34 0.47 imp:pre:1p;ind:pre:1p; +plain_chant plain_chant nom m s 0.10 0.27 0.10 0.27 +plain_pied plain_pied nom m s 0.12 3.65 0.12 3.65 +plain plain adj m s 0.60 0.27 0.31 0.14 +plaindra plaindre ver 61.25 67.84 0.41 0.07 ind:fut:3s; +plaindrai plaindre ver 61.25 67.84 0.82 0.07 ind:fut:1s; +plaindraient plaindre ver 61.25 67.84 0.16 0.07 cnd:pre:3p; +plaindrais plaindre ver 61.25 67.84 0.40 0.20 cnd:pre:1s;cnd:pre:2s; +plaindrait plaindre ver 61.25 67.84 0.12 0.81 cnd:pre:3s; +plaindras plaindre ver 61.25 67.84 0.05 0.00 ind:fut:2s; +plaindre plaindre ver 61.25 67.84 17.27 24.53 inf;;inf;;inf;;inf;; +plaindrez plaindre ver 61.25 67.84 0.03 0.00 ind:fut:2p; +plaindriez plaindre ver 61.25 67.84 0.01 0.07 cnd:pre:2p; +plaindrions plaindre ver 61.25 67.84 0.00 0.07 cnd:pre:1p; +plaindront plaindre ver 61.25 67.84 0.11 0.14 ind:fut:3p; +plaine plaine nom f s 3.52 39.86 3.52 39.86 +plaines plain nom f p 1.63 7.43 1.63 7.43 +plains plaindre ver 61.25 67.84 12.84 5.61 imp:pre:2s;ind:pre:1s;ind:pre:2s; +plaint plaindre ver m s 61.25 67.84 7.28 7.84 ind:pre:3s;par:pas; +plainte plaindre ver f s 61.25 67.84 13.79 6.35 par:pas; +plaintes plainte nom f p 15.07 26.69 5.46 9.59 +plaintif plaintif adj m s 1.12 6.82 0.81 3.31 +plaintifs plaintif adj m p 1.12 6.82 0.06 1.01 +plaintive plaintif adj f s 1.12 6.82 0.26 2.09 +plaintivement plaintivement adv 0.00 0.81 0.00 0.81 +plaintives plaintif adj f p 1.12 6.82 0.00 0.41 +plaints plaindre ver m p 61.25 67.84 0.44 0.47 par:pas; +plaira plaire ver 607.24 139.80 12.63 3.45 ind:fut:3s; +plairai plaire ver 607.24 139.80 0.16 0.14 ind:fut:1s; +plairaient plaire ver 607.24 139.80 0.21 0.41 cnd:pre:3p; +plairais plaire ver 607.24 139.80 0.61 0.27 cnd:pre:1s;cnd:pre:2s; +plairait plaire ver 607.24 139.80 14.60 4.46 cnd:pre:3s; +plairas plaire ver 607.24 139.80 0.70 0.14 ind:fut:2s; +plaire plaire ver 607.24 139.80 19.00 19.66 inf;; +plairez plaire ver 607.24 139.80 1.07 0.34 ind:fut:2p; +plairiez plaire ver 607.24 139.80 0.30 0.00 cnd:pre:2p; +plairont plaire ver 607.24 139.80 0.81 0.20 ind:fut:3p; +plais plaire ver 607.24 139.80 21.48 4.66 imp:pre:2s;ind:pre:1s;ind:pre:2s; +plaisaient plaire ver 607.24 139.80 0.55 2.97 ind:imp:3p; +plaisais plaire ver 607.24 139.80 1.75 2.70 ind:imp:1s;ind:imp:2s; +plaisait plaire ver 607.24 139.80 8.75 27.50 ind:imp:3s; +plaisamment plaisamment adv 0.02 2.03 0.02 2.03 +plaisance plaisance nom f s 0.35 2.03 0.35 2.03 +plaisancier plaisancier nom m s 0.19 0.20 0.00 0.07 +plaisanciers plaisancier nom m p 0.19 0.20 0.19 0.14 +plaisant plaisant adj m s 4.88 9.73 2.11 4.32 +plaisanta plaisanter ver 87.13 27.43 0.00 2.03 ind:pas:3s; +plaisantai plaisanter ver 87.13 27.43 0.10 0.14 ind:pas:1s; +plaisantaient plaisanter ver 87.13 27.43 0.13 0.68 ind:imp:3p; +plaisantais plaisanter ver 87.13 27.43 7.92 1.22 ind:imp:1s;ind:imp:2s; +plaisantait plaisanter ver 87.13 27.43 2.08 5.95 ind:imp:3s; +plaisantant plaisanter ver 87.13 27.43 0.62 2.64 par:pre; +plaisante plaisanter ver 87.13 27.43 28.50 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +plaisantent plaisanter ver 87.13 27.43 0.61 0.27 ind:pre:3p; +plaisanter plaisanter ver 87.13 27.43 6.24 6.01 inf; +plaisantera plaisanter ver 87.13 27.43 0.00 0.07 ind:fut:3s; +plaisanterai plaisanter ver 87.13 27.43 0.03 0.07 ind:fut:1s; +plaisanteraient plaisanter ver 87.13 27.43 0.00 0.07 cnd:pre:3p; +plaisanterais plaisanter ver 87.13 27.43 0.15 0.00 cnd:pre:1s; +plaisanteras plaisanter ver 87.13 27.43 0.00 0.07 ind:fut:2s; +plaisanterie plaisanterie nom f s 17.75 26.49 13.41 14.05 +plaisanteries plaisanterie nom f p 17.75 26.49 4.33 12.43 +plaisanterons plaisanter ver 87.13 27.43 0.02 0.07 ind:fut:1p; +plaisantes plaisanter ver 87.13 27.43 24.29 0.95 ind:pre:2s; +plaisantez plaisanter ver 87.13 27.43 14.96 1.55 imp:pre:2p;ind:pre:2p; +plaisantiez plaisanter ver 87.13 27.43 0.32 0.00 ind:imp:2p; +plaisantin plaisantin nom m s 0.86 0.95 0.68 0.68 +plaisantins plaisantin nom m p 0.86 0.95 0.19 0.27 +plaisantions plaisanter ver 87.13 27.43 0.04 0.14 ind:imp:1p; +plaisantons plaisanter ver 87.13 27.43 0.28 0.20 imp:pre:1p;ind:pre:1p; +plaisants plaisant adj m p 4.88 9.73 0.22 0.61 +plaisantèrent plaisanter ver 87.13 27.43 0.00 0.07 ind:pas:3p; +plaisanté plaisanter ver m s 87.13 27.43 0.84 1.35 par:pas; +plaise plaire ver 607.24 139.80 6.49 3.65 sub:pre:1s;sub:pre:3s; +plaisent plaire ver 607.24 139.80 6.92 3.45 ind:pre:3p; +plaises plaire ver 607.24 139.80 0.35 0.20 sub:pre:2s; +plaisez plaire ver 607.24 139.80 3.83 1.42 ind:pre:2p; +plaisiez plaire ver 607.24 139.80 0.27 0.20 ind:imp:2p; +plaisions plaire ver 607.24 139.80 0.00 0.27 ind:imp:1p; +plaisir plaisir nom m s 186.37 233.85 177.40 208.78 +plaisirs plaisir nom m p 186.37 233.85 8.97 25.07 +plaisons plaire ver 607.24 139.80 0.04 0.20 ind:pre:1p; +plan_séquence plan_séquence nom m s 0.10 0.00 0.10 0.00 +plan plan nom m s 147.54 88.99 119.54 67.84 +plana planer ver 7.86 16.55 0.00 0.34 ind:pas:3s; +planaient planer ver 7.86 16.55 0.13 0.95 ind:imp:3p; +planais planer ver 7.86 16.55 0.24 0.41 ind:imp:1s;ind:imp:2s; +planait planer ver 7.86 16.55 0.70 3.99 ind:imp:3s; +planant planant adj m s 0.56 1.22 0.25 0.68 +planante planant adj f s 0.56 1.22 0.27 0.20 +planantes planant adj f p 0.56 1.22 0.02 0.34 +planants planant adj m p 0.56 1.22 0.03 0.00 +planas planer ver 7.86 16.55 0.00 0.07 ind:pas:2s; +planchais plancher ver 1.37 1.35 0.02 0.07 ind:imp:1s; +planche planche nom f s 13.37 41.55 10.01 14.53 +planchent plancher ver 1.37 1.35 0.04 0.00 ind:pre:3p; +plancher plancher nom m s 7.50 31.15 6.67 29.39 +planchers plancher nom m p 7.50 31.15 0.84 1.76 +planche_contact planche_contact nom f p 0.00 0.07 0.00 0.07 +planches planche nom f p 13.37 41.55 3.36 27.03 +planchette planchette nom f s 0.01 2.50 0.01 1.82 +planchettes planchette nom f p 0.01 2.50 0.00 0.68 +planchiste planchiste nom s 0.20 0.00 0.20 0.00 +planché plancher ver m s 1.37 1.35 0.24 0.07 par:pas; +plancton plancton nom m s 0.65 0.47 0.52 0.47 +planctons plancton nom m p 0.65 0.47 0.14 0.00 +plane planer ver 7.86 16.55 2.48 2.57 ind:pre:1s;ind:pre:3s;sub:pre:3s; +planelle planelle nom f s 0.01 0.00 0.01 0.00 +planement planement nom m s 0.00 0.07 0.00 0.07 +planent planer ver 7.86 16.55 0.45 0.88 ind:pre:3p; +planer planer ver 7.86 16.55 2.25 3.99 inf;; +planera planer ver 7.86 16.55 0.02 0.00 ind:fut:3s; +planerait planer ver 7.86 16.55 0.00 0.07 cnd:pre:3s; +planerions planer ver 7.86 16.55 0.00 0.07 cnd:pre:1p; +planeront planer ver 7.86 16.55 0.00 0.07 ind:fut:3p; +planes planer ver 7.86 16.55 0.58 0.14 ind:pre:2s; +planeur planeur nom m s 1.31 0.61 0.66 0.27 +planeurs planeur nom m p 1.31 0.61 0.65 0.34 +planez planer ver 7.86 16.55 0.12 0.07 imp:pre:2p;ind:pre:2p; +planiez planer ver 7.86 16.55 0.02 0.00 ind:imp:2p; +planifiable planifiable adj s 0.01 0.00 0.01 0.00 +planifiaient planifier ver 8.15 0.68 0.01 0.00 ind:imp:3p; +planifiait planifier ver 8.15 0.68 0.18 0.00 ind:imp:3s; +planifiant planifier ver 8.15 0.68 0.05 0.07 par:pre; +planificateur planificateur nom m s 0.06 0.00 0.04 0.00 +planification planification nom f s 0.42 0.34 0.42 0.34 +planificatrice planificateur nom f s 0.06 0.00 0.01 0.00 +planifie planifier ver 8.15 0.68 0.87 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +planifient planifier ver 8.15 0.68 0.09 0.00 ind:pre:3p; +planifier planifier ver 8.15 0.68 1.94 0.07 inf; +planifierais planifier ver 8.15 0.68 0.01 0.07 cnd:pre:1s; +planifiez planifier ver 8.15 0.68 0.11 0.00 imp:pre:2p;ind:pre:2p; +planifions planifier ver 8.15 0.68 0.08 0.00 imp:pre:1p;ind:pre:1p; +planifié planifier ver m s 8.15 0.68 4.42 0.27 par:pas; +planifiée planifier ver f s 8.15 0.68 0.31 0.07 par:pas; +planifiés planifier ver m p 8.15 0.68 0.08 0.07 par:pas; +planisphère planisphère nom m s 0.01 1.15 0.01 1.01 +planisphères planisphère nom m p 0.01 1.15 0.00 0.14 +planitude planitude nom f s 0.00 0.14 0.00 0.14 +planning planning nom m s 4.77 0.81 4.55 0.81 +plannings planning nom m p 4.77 0.81 0.22 0.00 +planqua planquer ver 18.79 21.76 0.00 0.07 ind:pas:3s; +planquaient planquer ver 18.79 21.76 0.12 0.41 ind:imp:3p; +planquais planquer ver 18.79 21.76 0.26 0.20 ind:imp:1s;ind:imp:2s; +planquait planquer ver 18.79 21.76 0.21 1.35 ind:imp:3s; +planquant planquer ver 18.79 21.76 0.01 0.27 par:pre; +planque planque nom f s 9.10 7.30 8.21 6.42 +planquent planquer ver 18.79 21.76 0.68 0.74 ind:pre:3p; +planquer planquer ver 18.79 21.76 3.81 6.49 inf; +planquera planquer ver 18.79 21.76 0.05 0.07 ind:fut:3s; +planquerai planquer ver 18.79 21.76 0.02 0.07 ind:fut:1s; +planquerais planquer ver 18.79 21.76 0.04 0.00 cnd:pre:1s; +planquerait planquer ver 18.79 21.76 0.04 0.07 cnd:pre:3s; +planqueras planquer ver 18.79 21.76 0.03 0.00 ind:fut:2s; +planques planque nom f p 9.10 7.30 0.90 0.88 +planquez planquer ver 18.79 21.76 1.77 0.34 imp:pre:2p;ind:pre:2p; +planquiez planquer ver 18.79 21.76 0.00 0.07 ind:imp:2p; +planquions planquer ver 18.79 21.76 0.00 0.07 ind:imp:1p; +planquons planquer ver 18.79 21.76 0.22 0.14 imp:pre:1p;ind:pre:1p; +planquèrent planquer ver 18.79 21.76 0.00 0.07 ind:pas:3p; +planqué planquer ver m s 18.79 21.76 3.87 4.66 par:pas; +planquée planquer ver f s 18.79 21.76 0.94 1.28 par:pas; +planquées planqué adj f p 1.67 1.69 0.14 0.14 +planqués planqué adj m p 1.67 1.69 0.74 0.88 +plans plan nom m p 147.54 88.99 28.00 21.15 +plant plant nom m s 2.54 4.53 1.07 1.62 +planta planter ver 38.29 75.88 0.19 7.84 ind:pas:3s; +plantage plantage nom m s 0.04 0.00 0.04 0.00 +plantai planter ver 38.29 75.88 0.01 0.54 ind:pas:1s; +plantaient planter ver 38.29 75.88 0.14 0.74 ind:imp:3p; +plantain plantain nom m s 0.04 0.14 0.01 0.00 +plantains plantain nom m p 0.04 0.14 0.04 0.14 +plantaire plantaire adj s 0.14 0.20 0.10 0.14 +plantaires plantaire adj f p 0.14 0.20 0.04 0.07 +plantais planter ver 38.29 75.88 0.33 1.01 ind:imp:1s;ind:imp:2s; +plantait planter ver 38.29 75.88 0.43 3.24 ind:imp:3s; +plantant planter ver 38.29 75.88 0.43 2.03 par:pre; +plantation plantation nom f s 5.73 6.35 2.25 3.72 +plantations plantation nom f p 5.73 6.35 3.48 2.64 +plante plante nom f s 21.86 35.00 9.00 11.49 +plantent planter ver 38.29 75.88 0.43 0.61 ind:pre:3p; +planter planter ver 38.29 75.88 10.58 12.16 inf;; +plantera planter ver 38.29 75.88 0.30 0.07 ind:fut:3s; +planterai planter ver 38.29 75.88 0.81 0.07 ind:fut:1s; +planterais planter ver 38.29 75.88 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +planterait planter ver 38.29 75.88 0.06 0.20 cnd:pre:3s; +planteras planter ver 38.29 75.88 0.17 0.00 ind:fut:2s; +planterez planter ver 38.29 75.88 0.02 0.00 ind:fut:2p; +planterons planter ver 38.29 75.88 0.05 0.14 ind:fut:1p; +planteront planter ver 38.29 75.88 0.13 0.00 ind:fut:3p; +plantes plante nom f p 21.86 35.00 12.85 23.51 +planteur planteur nom m s 0.64 2.23 0.42 1.15 +planteurs planteur nom m p 0.64 2.23 0.22 1.08 +plantez planter ver 38.29 75.88 0.68 0.14 imp:pre:2p;ind:pre:2p; +planète planète nom f s 61.11 22.91 55.29 19.86 +planètes planète nom f p 61.11 22.91 5.82 3.04 +plantier plantier nom m s 0.70 0.14 0.70 0.14 +plantiez planter ver 38.29 75.88 0.04 0.07 ind:imp:2p; +plantigrade plantigrade nom m s 0.13 0.20 0.13 0.20 +plantions planter ver 38.29 75.88 0.02 0.14 ind:imp:1p; +plantoir plantoir nom m s 0.14 0.07 0.14 0.07 +planton planton nom m s 0.53 2.91 0.50 2.50 +plantons planter ver 38.29 75.88 0.25 0.14 imp:pre:1p;ind:pre:1p; +plants plant nom m p 2.54 4.53 1.47 2.91 +plantèrent planter ver 38.29 75.88 0.01 0.68 ind:pas:3p; +planté planter ver m s 38.29 75.88 11.20 20.07 par:pas; +plantée planter ver f s 38.29 75.88 2.68 10.47 par:pas; +plantées planter ver f p 38.29 75.88 0.89 3.31 par:pas; +plantureuse plantureux adj f s 0.11 1.42 0.07 0.68 +plantureuses plantureux adj f p 0.11 1.42 0.04 0.27 +plantureux plantureux adj m s 0.11 1.42 0.01 0.47 +plantés planter ver m p 38.29 75.88 2.31 7.09 par:pas; +plané planer ver m s 7.86 16.55 0.76 1.76 par:pas; +planétaire planétaire adj s 2.27 1.35 1.93 0.95 +planétaires planétaire adj p 2.27 1.35 0.34 0.41 +planétarium planétarium nom m s 0.31 0.27 0.31 0.20 +planétariums planétarium nom m p 0.31 0.27 0.00 0.07 +planétoïde planétoïde nom m s 0.04 0.00 0.04 0.00 +plaqua plaquer ver 12.46 27.70 0.01 2.64 ind:pas:3s; +plaquage plaquage nom m s 0.26 0.20 0.22 0.07 +plaquages plaquage nom m p 0.26 0.20 0.04 0.14 +plaquai plaquer ver 12.46 27.70 0.00 0.34 ind:pas:1s; +plaquaient plaquer ver 12.46 27.70 0.01 0.27 ind:imp:3p; +plaquais plaquer ver 12.46 27.70 0.14 0.14 ind:imp:1s;ind:imp:2s; +plaquait plaquer ver 12.46 27.70 0.13 2.23 ind:imp:3s; +plaquant plaquer ver 12.46 27.70 0.02 1.49 par:pre; +plaque plaque nom f s 20.48 46.15 13.87 26.01 +plaqueminiers plaqueminier nom m p 0.00 0.14 0.00 0.14 +plaquent plaquer ver 12.46 27.70 0.14 0.34 ind:pre:3p; +plaquer plaquer ver 12.46 27.70 2.48 3.92 inf; +plaquera plaquer ver 12.46 27.70 0.03 0.00 ind:fut:3s; +plaquerai plaquer ver 12.46 27.70 0.05 0.00 ind:fut:1s; +plaquerais plaquer ver 12.46 27.70 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +plaquerait plaquer ver 12.46 27.70 0.03 0.07 cnd:pre:3s; +plaqueras plaquer ver 12.46 27.70 0.01 0.00 ind:fut:2s; +plaques plaque nom f p 20.48 46.15 6.62 20.14 +plaquettaire plaquettaire adj f s 0.01 0.00 0.01 0.00 +plaquette plaquette nom f s 1.02 4.26 0.28 1.55 +plaquettes plaquette nom f p 1.02 4.26 0.74 2.70 +plaqueur plaqueur nom m s 0.07 0.07 0.07 0.07 +plaquez plaquer ver 12.46 27.70 0.20 0.20 imp:pre:2p;ind:pre:2p; +plaquèrent plaquer ver 12.46 27.70 0.00 0.27 ind:pas:3p; +plaqué plaquer ver m s 12.46 27.70 4.37 5.00 par:pas; +plaquée plaquer ver f s 12.46 27.70 2.07 4.32 par:pas; +plaquées plaquer ver f p 12.46 27.70 0.04 1.76 par:pas; +plaqués plaquer ver m p 12.46 27.70 0.42 1.76 par:pas; +plasma plasma nom m s 2.85 0.34 2.85 0.34 +plasmagène plasmagène adj m s 0.01 0.00 0.01 0.00 +plasmaphérèse plasmaphérèse nom f s 0.08 0.00 0.08 0.00 +plasmique plasmique adj m s 0.01 0.00 0.01 0.00 +plaste plaste nom m s 0.01 0.00 0.01 0.00 +plastic plastic nom m s 0.81 1.15 0.81 1.15 +plasticage plasticage nom m s 0.01 0.34 0.01 0.00 +plasticages plasticage nom m p 0.01 0.34 0.00 0.34 +plasticien plasticien nom m s 0.40 0.00 0.38 0.00 +plasticienne plasticien nom f s 0.40 0.00 0.01 0.00 +plasticité plasticité nom f s 0.04 0.27 0.04 0.27 +plastie plastie nom f s 0.03 0.00 0.03 0.00 +plastifiant plastifiant nom m s 0.01 0.00 0.01 0.00 +plastification plastification nom f s 0.01 0.00 0.01 0.00 +plastifier plastifier ver 0.23 0.95 0.06 0.00 inf; +plastifié plastifier ver m s 0.23 0.95 0.09 0.61 par:pas; +plastifiée plastifier ver f s 0.23 0.95 0.07 0.14 par:pas; +plastifiées plastifier ver f p 0.23 0.95 0.01 0.07 par:pas; +plastifiés plastifier ver m p 0.23 0.95 0.00 0.14 par:pas; +plastiquage plastiquage nom m s 0.16 0.00 0.16 0.00 +plastiquais plastiquer ver 0.41 0.41 0.01 0.00 ind:imp:1s; +plastique plastique nom s 13.44 16.96 12.89 16.82 +plastiquer plastiquer ver 0.41 0.41 0.16 0.07 inf; +plastiques plastique adj p 4.67 6.96 0.72 1.42 +plastiqueur plastiqueur nom m s 0.22 0.14 0.22 0.14 +plastiqué plastiquer ver m s 0.41 0.41 0.18 0.07 par:pas; +plastisol plastisol nom m s 0.01 0.00 0.01 0.00 +plastoc plastoc nom m s 0.09 0.20 0.09 0.20 +plastron plastron nom m s 0.11 2.57 0.09 2.30 +plastronnaient plastronner ver 0.02 1.35 0.00 0.07 ind:imp:3p; +plastronnait plastronner ver 0.02 1.35 0.00 0.20 ind:imp:3s; +plastronnant plastronner ver 0.02 1.35 0.00 0.20 par:pre; +plastronne plastronner ver 0.02 1.35 0.00 0.07 ind:pre:3s; +plastronnent plastronner ver 0.02 1.35 0.00 0.14 ind:pre:3p; +plastronner plastronner ver 0.02 1.35 0.02 0.61 inf; +plastronnes plastronner ver 0.02 1.35 0.00 0.07 ind:pre:2s; +plastronneur plastronneur nom m s 0.00 0.07 0.00 0.07 +plastrons plastron nom m p 0.11 2.57 0.02 0.27 +plat_bord plat_bord nom m s 0.01 0.61 0.00 0.54 +plat_ventre plat_ventre nom m s 0.11 0.07 0.11 0.07 +plat plat nom s 30.24 61.35 21.87 44.26 +platane platane nom m s 0.44 13.99 0.31 4.26 +platanes platane nom m p 0.44 13.99 0.14 9.73 +plate_bande plate_bande nom f s 0.82 2.77 0.12 0.54 +plate_forme plate_forme nom f s 3.06 11.15 2.49 8.45 +plate plat adj f s 14.66 61.76 3.09 17.50 +plateau_repas plateau_repas nom m 0.04 0.14 0.04 0.14 +plateau plateau nom m s 17.17 54.53 15.73 45.74 +plateaux_repas plateaux_repas nom m p 0.04 0.07 0.04 0.07 +plateaux plateau nom m p 17.17 54.53 1.44 8.78 +platebandes platebande nom f p 0.06 0.00 0.06 0.00 +plateforme plateforme nom f s 0.59 0.34 0.59 0.34 +platelage platelage nom m s 0.00 0.07 0.00 0.07 +platement platement adv 0.14 1.08 0.14 1.08 +plateresque plateresque adj m s 0.00 0.20 0.00 0.14 +plateresques plateresque adj f p 0.00 0.20 0.00 0.07 +plate_bande plate_bande nom f p 0.82 2.77 0.70 2.23 +plate_forme plate_forme nom f p 3.06 11.15 0.57 2.70 +plates plat adj f p 14.66 61.76 0.92 7.23 +plaça placer ver 52.95 101.76 0.58 6.76 ind:pas:3s; +plaçai placer ver 52.95 101.76 0.02 0.74 ind:pas:1s; +plaçaient placer ver 52.95 101.76 0.03 1.55 ind:imp:3p; +plaçais placer ver 52.95 101.76 0.07 0.61 ind:imp:1s;ind:imp:2s; +plaçait placer ver 52.95 101.76 0.46 6.01 ind:imp:3s; +plaçant placer ver 52.95 101.76 0.79 3.38 par:pre; +plaçons placer ver 52.95 101.76 0.60 0.14 imp:pre:1p;ind:pre:1p; +plaçât placer ver 52.95 101.76 0.00 0.07 sub:imp:3s; +platine platine nom s 2.06 3.31 1.73 3.18 +platines platine nom p 2.06 3.31 0.32 0.14 +platiné platiné adj m s 0.01 1.15 0.00 0.07 +platinée platiné adj f s 0.01 1.15 0.00 0.61 +platinées platiné adj f p 0.01 1.15 0.01 0.34 +platinés platiné adj m p 0.01 1.15 0.00 0.14 +platière platière nom f s 0.00 0.07 0.00 0.07 +platitude platitude nom f s 0.29 2.30 0.18 1.55 +platitudes platitude nom f p 0.29 2.30 0.12 0.74 +platonicien platonicien adj m s 0.14 0.41 0.00 0.27 +platonicienne platonicien adj f s 0.14 0.41 0.14 0.07 +platoniciens platonicien adj m p 0.14 0.41 0.00 0.07 +platonique platonique adj s 0.76 1.55 0.66 0.88 +platoniquement platoniquement adv 0.05 0.27 0.05 0.27 +platoniques platonique adj p 0.76 1.55 0.10 0.68 +platonisant platonisant adj m s 0.00 0.07 0.00 0.07 +plat_bord plat_bord nom m p 0.01 0.61 0.01 0.07 +plats plat nom m p 30.24 61.35 8.37 17.09 +platée platée nom f s 0.04 0.61 0.04 0.47 +platées platée nom f p 0.04 0.61 0.00 0.14 +platures plature nom m p 0.00 0.14 0.00 0.14 +platyrrhiniens platyrrhinien adj m p 0.00 0.07 0.00 0.07 +plausibilité plausibilité nom f s 0.04 0.00 0.04 0.00 +plausible plausible adj s 2.68 3.92 2.48 3.24 +plausiblement plausiblement adv 0.00 0.07 0.00 0.07 +plausibles plausible adj p 2.68 3.92 0.20 0.68 +play_back play_back nom m 0.59 0.14 0.57 0.14 +play_boy play_boy nom m s 0.69 1.08 0.58 0.95 +play_boy play_boy nom m p 0.69 1.08 0.11 0.14 +play_back play_back nom m 0.59 0.14 0.02 0.00 +play play adv 0.01 0.00 0.01 0.00 +playboy playboy nom m s 0.38 0.00 0.38 0.00 +playmate playmate nom f s 0.36 0.34 0.30 0.27 +playmates playmate nom f p 0.36 0.34 0.06 0.07 +playon playon nom m s 0.02 0.00 0.02 0.00 +plaza plaza nom f s 1.53 2.91 1.53 2.91 +plazza plazza nom f s 0.05 0.14 0.05 0.14 +please please adv 3.18 0.88 3.18 0.88 +plectre plectre nom m s 0.00 0.07 0.00 0.07 +plein_air plein_air adj m s 0.00 0.07 0.00 0.07 +plein_air plein_air nom m s 0.00 0.20 0.00 0.20 +plein_cintre plein_cintre nom m s 0.00 0.07 0.00 0.07 +plein_emploi plein_emploi nom m s 0.01 0.00 0.01 0.00 +plein_temps plein_temps nom m 0.12 0.00 0.12 0.00 +plein plein pre 89.11 52.77 89.11 52.77 +pleine plein adj f s 208.75 370.41 82.13 139.19 +pleinement pleinement adv 3.44 7.77 3.44 7.77 +pleines plein adj f p 208.75 370.41 8.60 32.43 +pleins plein adj m p 208.75 370.41 13.46 40.95 +plessis plessis nom m 0.00 0.07 0.00 0.07 +plet plet nom m s 0.00 0.07 0.00 0.07 +pleur pleur nom m s 9.52 12.50 0.20 0.81 +pleura pleurer ver 191.64 163.31 0.81 5.88 ind:pas:3s; +pleurai pleurer ver 191.64 163.31 0.00 1.22 ind:pas:1s; +pleuraient pleurer ver 191.64 163.31 1.16 3.72 ind:imp:3p; +pleurais pleurer ver 191.64 163.31 4.01 5.07 ind:imp:1s;ind:imp:2s; +pleurait pleurer ver 191.64 163.31 7.54 26.49 ind:imp:3s; +pleural pleural adj m s 0.32 0.00 0.12 0.00 +pleurale pleural adj f s 0.32 0.00 0.20 0.00 +pleurant pleurer ver 191.64 163.31 3.26 7.16 par:pre; +pleurante pleurant adj f s 0.20 2.09 0.00 0.95 +pleurantes pleurant adj f p 0.20 2.09 0.00 0.07 +pleurants pleurant adj m p 0.20 2.09 0.01 0.20 +pleurard pleurard adj m s 0.01 0.54 0.01 0.14 +pleurarde pleurard adj f s 0.01 0.54 0.00 0.20 +pleurards pleurard adj m p 0.01 0.54 0.00 0.20 +pleure pleurer ver 191.64 163.31 60.17 24.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +pleurement pleurement nom m s 0.00 0.20 0.00 0.14 +pleurements pleurement nom m p 0.00 0.20 0.00 0.07 +pleurent pleurer ver 191.64 163.31 5.41 4.19 ind:pre:3p;sub:pre:3p; +pleurer pleurer ver 191.64 163.31 61.60 63.51 inf; +pleurera pleurer ver 191.64 163.31 1.25 0.61 ind:fut:3s; +pleurerai pleurer ver 191.64 163.31 1.34 0.14 ind:fut:1s; +pleureraient pleurer ver 191.64 163.31 0.12 0.00 cnd:pre:3p; +pleurerais pleurer ver 191.64 163.31 1.19 0.47 cnd:pre:1s;cnd:pre:2s; +pleurerait pleurer ver 191.64 163.31 0.38 0.68 cnd:pre:3s; +pleureras pleurer ver 191.64 163.31 0.55 0.14 ind:fut:2s; +pleurerez pleurer ver 191.64 163.31 0.20 0.14 ind:fut:2p; +pleurerons pleurer ver 191.64 163.31 0.02 0.00 ind:fut:1p; +pleureront pleurer ver 191.64 163.31 0.16 0.00 ind:fut:3p; +pleures pleurer ver 191.64 163.31 17.00 2.84 ind:pre:2s; +pleureur pleureur adj m s 0.11 1.15 0.06 0.47 +pleureurs pleureur nom m p 0.33 1.22 0.14 0.14 +pleureuse pleureur nom f s 0.33 1.22 0.17 0.20 +pleureuses pleureuse nom f p 0.14 0.00 0.14 0.00 +pleureux pleureur adj m 0.11 1.15 0.01 0.00 +pleurez pleurer ver 191.64 163.31 7.26 1.08 imp:pre:2p;ind:pre:2p; +pleuriez pleurer ver 191.64 163.31 0.31 0.14 ind:imp:2p; +pleurions pleurer ver 191.64 163.31 0.13 0.34 ind:imp:1p;sub:pre:1p; +pleurite pleurite nom f s 0.10 0.07 0.10 0.07 +pleurnicha pleurnicher ver 5.75 6.08 0.00 0.95 ind:pas:3s; +pleurnichage pleurnichage nom m s 0.03 0.00 0.01 0.00 +pleurnichages pleurnichage nom m p 0.03 0.00 0.01 0.00 +pleurnichais pleurnicher ver 5.75 6.08 0.11 0.07 ind:imp:1s;ind:imp:2s; +pleurnichait pleurnicher ver 5.75 6.08 0.02 0.81 ind:imp:3s; +pleurnichant pleurnicher ver 5.75 6.08 0.05 0.68 par:pre; +pleurnichard pleurnichard nom m s 0.55 0.07 0.47 0.07 +pleurnicharde pleurnichard adj f s 0.34 0.74 0.05 0.20 +pleurnichardes pleurnichard adj f p 0.34 0.74 0.01 0.00 +pleurnichards pleurnichard nom m p 0.55 0.07 0.08 0.00 +pleurniche pleurnicher ver 5.75 6.08 1.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pleurnichement pleurnichement nom m s 0.01 0.34 0.00 0.14 +pleurnichements pleurnichement nom m p 0.01 0.34 0.01 0.20 +pleurnichent pleurnicher ver 5.75 6.08 0.07 0.27 ind:pre:3p; +pleurnicher pleurnicher ver 5.75 6.08 3.35 1.62 inf; +pleurnicherais pleurnicher ver 5.75 6.08 0.01 0.00 cnd:pre:2s; +pleurnicherait pleurnicher ver 5.75 6.08 0.00 0.07 cnd:pre:3s; +pleurnicheras pleurnicher ver 5.75 6.08 0.03 0.00 ind:fut:2s; +pleurnicherie pleurnicherie nom f s 0.20 0.54 0.02 0.07 +pleurnicheries pleurnicherie nom f p 0.20 0.54 0.17 0.47 +pleurniches pleurnicher ver 5.75 6.08 0.54 0.00 ind:pre:2s; +pleurnicheur pleurnicheur adj m s 0.28 0.34 0.22 0.14 +pleurnicheurs pleurnicheur nom m p 0.25 0.14 0.04 0.00 +pleurnicheuse pleurnicheur nom f s 0.25 0.14 0.06 0.07 +pleurnicheuses pleurnicheuse nom f p 0.03 0.00 0.03 0.00 +pleurnichez pleurnicher ver 5.75 6.08 0.14 0.07 imp:pre:2p;ind:pre:2p; +pleurniché pleurnicher ver m s 5.75 6.08 0.08 0.74 par:pas; +pleurons pleurer ver 191.64 163.31 0.73 0.61 imp:pre:1p;ind:pre:1p; +pleurât pleurer ver 191.64 163.31 0.00 0.14 sub:imp:3s; +pleurotes pleurote nom m p 0.00 0.07 0.00 0.07 +pleurs pleur nom m p 9.52 12.50 9.32 11.69 +pleurèrent pleurer ver 191.64 163.31 0.01 0.41 ind:pas:3p; +pleuré pleurer ver m s 191.64 163.31 16.91 13.04 par:pas; +pleurée pleurer ver f s 191.64 163.31 0.07 0.14 par:pas; +pleurées pleurer ver f p 191.64 163.31 0.00 0.20 par:pas; +pleurés pleurer ver m p 191.64 163.31 0.03 0.07 par:pas; +pleurésie pleurésie nom f s 0.17 0.54 0.17 0.54 +pleurétique pleurétique adj f s 0.01 0.00 0.01 0.00 +pleut pleuvoir ver 67.22 47.09 20.50 10.41 ind:pre:3s; +pleutre pleutre nom m s 0.18 0.61 0.16 0.41 +pleutrerie pleutrerie nom f s 0.00 0.14 0.00 0.14 +pleutres pleutre nom m p 0.18 0.61 0.02 0.20 +pleuvaient pleuvoir ver 67.22 47.09 0.13 2.23 ind:imp:3p; +pleuvait pleuvoir ver 67.22 47.09 4.43 11.62 ind:imp:3s; +pleuvant pleuvoir ver 67.22 47.09 0.01 0.20 par:pre; +pleuve pleuvoir ver 67.22 47.09 3.29 0.95 sub:pre:3s; +pleuvent pleuvoir ver 67.22 47.09 0.38 0.88 ind:pre:3p; +pleuvinait pleuviner ver 0.02 0.14 0.00 0.07 ind:imp:3s; +pleuvine pleuviner ver 0.02 0.14 0.02 0.00 ind:pre:3s; +pleuviner pleuviner ver 0.02 0.14 0.00 0.07 inf; +pleuvioter pleuvioter ver 0.00 0.07 0.00 0.07 inf; +pleuvoir pleuvoir ver 67.22 47.09 7.98 6.69 inf; +pleuvra pleuvoir ver 67.22 47.09 0.87 0.68 ind:fut:3s; +pleuvrait pleuvoir ver 67.22 47.09 0.05 0.34 cnd:pre:3s; +plexi plexi nom m s 0.01 0.00 0.01 0.00 +plexiglas plexiglas nom m 0.13 0.47 0.13 0.47 +plexus plexus nom m 0.43 0.88 0.43 0.88 +pleyel pleyel nom m s 0.02 0.07 0.02 0.07 +pli pli nom m s 6.00 41.42 4.42 16.76 +plia plier ver 14.37 50.20 0.00 3.99 ind:pas:3s; +pliable pliable adj s 0.19 0.00 0.19 0.00 +pliage pliage nom m s 0.12 0.54 0.11 0.47 +pliages pliage nom m p 0.12 0.54 0.01 0.07 +pliai plier ver 14.37 50.20 0.00 0.27 ind:pas:1s; +pliaient plier ver 14.37 50.20 0.02 1.08 ind:imp:3p; +pliais plier ver 14.37 50.20 0.01 0.34 ind:imp:1s; +pliait plier ver 14.37 50.20 0.13 3.18 ind:imp:3s; +pliant pliant adj m s 0.54 3.92 0.34 2.09 +pliante pliant adj f s 0.54 3.92 0.06 1.15 +pliantes pliant adj f p 0.54 3.92 0.12 0.27 +pliants pliant adj m p 0.54 3.92 0.03 0.41 +plie plier ver 14.37 50.20 3.54 5.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +plient plier ver 14.37 50.20 0.22 0.74 ind:pre:3p; +plier plier ver 14.37 50.20 5.02 10.68 inf; +pliera plier ver 14.37 50.20 0.08 0.07 ind:fut:3s; +plierai plier ver 14.37 50.20 0.28 0.14 ind:fut:1s; +plieraient plier ver 14.37 50.20 0.02 0.00 cnd:pre:3p; +plierait plier ver 14.37 50.20 0.04 0.27 cnd:pre:3s; +plieras plier ver 14.37 50.20 0.03 0.00 ind:fut:2s; +plierez plier ver 14.37 50.20 0.03 0.07 ind:fut:2p; +plierons plier ver 14.37 50.20 0.17 0.00 ind:fut:1p; +plies plier ver 14.37 50.20 0.28 0.14 ind:pre:2s; +plieur plieur nom m s 0.02 0.00 0.01 0.00 +plieuse plieur nom f s 0.02 0.00 0.01 0.00 +pliez plier ver 14.37 50.20 1.32 0.07 imp:pre:2p;ind:pre:2p; +plinthe plinthe nom f s 0.26 2.43 0.10 1.01 +plinthes plinthe nom f p 0.26 2.43 0.16 1.42 +pliocène pliocène nom m s 0.01 0.00 0.01 0.00 +plioir plioir nom m s 0.00 0.14 0.00 0.14 +plions plier ver 14.37 50.20 0.22 0.00 imp:pre:1p;ind:pre:1p; +pliât plier ver 14.37 50.20 0.00 0.07 sub:imp:3s; +plique plique nom f s 0.03 0.00 0.03 0.00 +plis pli nom m p 6.00 41.42 1.58 24.66 +plissa plisser ver 0.59 16.49 0.00 3.31 ind:pas:3s; +plissai plisser ver 0.59 16.49 0.00 0.14 ind:pas:1s; +plissaient plisser ver 0.59 16.49 0.00 0.54 ind:imp:3p; +plissais plisser ver 0.59 16.49 0.00 0.07 ind:imp:1s; +plissait plisser ver 0.59 16.49 0.00 1.69 ind:imp:3s; +plissant plisser ver 0.59 16.49 0.02 3.38 par:pre; +plisse plisser ver 0.59 16.49 0.10 2.50 imp:pre:2s;ind:pre:3s; +plissement plissement nom m s 0.03 1.08 0.02 0.68 +plissements plissement nom m p 0.03 1.08 0.01 0.41 +plissent plisser ver 0.59 16.49 0.02 0.41 ind:pre:3p; +plisser plisser ver 0.59 16.49 0.15 1.08 inf; +plisseront plisser ver 0.59 16.49 0.00 0.07 ind:fut:3p; +plisseur plisseur nom m s 0.00 0.07 0.00 0.07 +plissèrent plisser ver 0.59 16.49 0.00 0.27 ind:pas:3p; +plissé plisser ver m s 0.59 16.49 0.12 1.42 par:pas; +plissée plissé adj f s 0.33 8.72 0.08 3.18 +plissées plissé adj f p 0.33 8.72 0.02 1.01 +plissure plissure nom f s 0.00 0.20 0.00 0.07 +plissures plissure nom f p 0.00 0.20 0.00 0.14 +plissés plissé adj m p 0.33 8.72 0.17 1.76 +plièrent plier ver 14.37 50.20 0.00 0.20 ind:pas:3p; +plié plier ver m s 14.37 50.20 1.43 10.27 par:pas; +pliée plier ver f s 14.37 50.20 0.68 5.34 par:pas; +pliées plier ver f p 14.37 50.20 0.37 1.62 par:pas; +pliure pliure nom f s 0.03 0.95 0.03 0.41 +pliures pliure nom f p 0.03 0.95 0.00 0.54 +pliés plier ver m p 14.37 50.20 0.32 3.92 par:pas; +ploc ploc ono 0.65 0.61 0.65 0.61 +ploie ployer ver 0.44 7.36 0.03 0.95 ind:pre:1s;ind:pre:3s; +ploiement ploiement nom m s 0.00 0.27 0.00 0.27 +ploient ployer ver 0.44 7.36 0.01 0.34 ind:pre:3p; +plomb plomb nom m s 20.24 22.64 10.62 20.27 +plombage plombage nom m s 0.99 0.41 0.43 0.14 +plombages plombage nom m p 0.99 0.41 0.56 0.27 +plombaient plomber ver 1.77 2.70 0.00 0.14 ind:imp:3p; +plombait plomber ver 1.77 2.70 0.00 0.41 ind:imp:3s; +plombant plomber ver 1.77 2.70 0.01 0.14 par:pre; +plombe plombe nom f s 1.00 7.09 0.45 1.55 +plombent plomber ver 1.77 2.70 0.01 0.07 ind:pre:3p; +plomber plomber ver 1.77 2.70 0.78 0.54 inf; +plomberie plomberie nom f s 2.32 0.81 2.31 0.74 +plomberies plomberie nom f p 2.32 0.81 0.01 0.07 +plombes plombe nom f p 1.00 7.09 0.55 5.54 +plombez plomber ver 1.77 2.70 0.03 0.00 imp:pre:2p;ind:pre:2p; +plombier plombier nom m s 5.85 3.99 5.22 3.31 +plombiers plombier nom m p 5.85 3.99 0.63 0.68 +plombières plombières nom f 0.00 0.20 0.00 0.20 +plombs plomb nom m p 20.24 22.64 9.62 2.36 +plombé plomber ver m s 1.77 2.70 0.32 0.61 par:pas; +plombée plomber ver f s 1.77 2.70 0.16 0.07 par:pas; +plombées plombé adj f p 0.20 3.85 0.01 0.47 +plombure plombure nom f s 0.00 0.07 0.00 0.07 +plombés plombé adj m p 0.20 3.85 0.01 0.54 +plonge plonger ver 31.96 86.22 5.37 12.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +plongea plonger ver 31.96 86.22 0.49 10.88 ind:pas:3s; +plongeai plonger ver 31.96 86.22 0.13 1.22 ind:pas:1s; +plongeaient plonger ver 31.96 86.22 0.16 2.64 ind:imp:3p; +plongeais plonger ver 31.96 86.22 0.29 2.43 ind:imp:1s;ind:imp:2s; +plongeait plonger ver 31.96 86.22 0.41 10.27 ind:imp:3s; +plongeant plonger ver 31.96 86.22 1.41 5.41 par:pre; +plongeante plongeant adj f s 0.20 1.28 0.04 0.47 +plongeantes plongeant adj f p 0.20 1.28 0.00 0.07 +plongeants plongeant adj m p 0.20 1.28 0.00 0.07 +plongement plongement nom m s 0.00 0.07 0.00 0.07 +plongent plonger ver 31.96 86.22 1.04 2.09 ind:pre:3p; +plongeoir plongeoir nom m s 0.44 1.08 0.44 1.01 +plongeoirs plongeoir nom m p 0.44 1.08 0.00 0.07 +plongeâmes plonger ver 31.96 86.22 0.01 0.07 ind:pas:1p; +plongeon plongeon nom m s 2.98 4.05 2.71 3.18 +plongeons plongeon nom m p 2.98 4.05 0.27 0.88 +plongeât plonger ver 31.96 86.22 0.00 0.14 sub:imp:3s; +plonger plonger ver 31.96 86.22 9.36 14.66 inf; +plongera plonger ver 31.96 86.22 0.36 0.27 ind:fut:3s; +plongerai plonger ver 31.96 86.22 0.30 0.00 ind:fut:1s; +plongeraient plonger ver 31.96 86.22 0.02 0.00 cnd:pre:3p; +plongerais plonger ver 31.96 86.22 0.02 0.20 cnd:pre:1s; +plongerait plonger ver 31.96 86.22 0.21 0.47 cnd:pre:3s; +plongeras plonger ver 31.96 86.22 0.15 0.00 ind:fut:2s; +plongerez plonger ver 31.96 86.22 0.44 0.00 ind:fut:2p; +plongeriez plonger ver 31.96 86.22 0.01 0.00 cnd:pre:2p; +plongerons plonger ver 31.96 86.22 0.06 0.00 ind:fut:1p; +plongeront plonger ver 31.96 86.22 0.16 0.07 ind:fut:3p; +plonges plonger ver 31.96 86.22 0.61 0.20 ind:pre:2s; +plongeur plongeur nom m s 3.88 3.11 2.06 1.69 +plongeurs plongeur nom m p 3.88 3.11 1.70 0.68 +plongeuse plongeur nom f s 3.88 3.11 0.13 0.68 +plongeuses plongeuse nom f p 0.01 0.00 0.01 0.00 +plongez plonger ver 31.96 86.22 2.13 0.14 imp:pre:2p;ind:pre:2p; +plongiez plonger ver 31.96 86.22 0.37 0.00 ind:imp:2p; +plongions plonger ver 31.96 86.22 0.04 0.41 ind:imp:1p; +plongèrent plonger ver 31.96 86.22 0.16 0.95 ind:pas:3p; +plongé plonger ver m s 31.96 86.22 5.87 14.19 par:pas; +plongée plongée nom f s 6.74 6.55 6.63 5.34 +plongées plonger ver f p 31.96 86.22 0.13 0.68 par:pas; +plongés plonger ver m p 31.96 86.22 0.72 2.50 par:pas; +plot plot nom m s 0.32 0.61 0.26 0.54 +plâtra plâtrer ver 0.60 0.88 0.00 0.07 ind:pas:3s; +plâtrait plâtrer ver 0.60 0.88 0.00 0.07 ind:imp:3s; +plâtras plâtras nom m 0.00 0.95 0.00 0.95 +plâtre plâtre nom m s 5.42 15.81 5.06 14.59 +plâtrent plâtrer ver 0.60 0.88 0.00 0.07 ind:pre:3p; +plâtrer plâtrer ver 0.60 0.88 0.29 0.00 inf; +plâtres plâtre nom m p 5.42 15.81 0.36 1.22 +plâtreuse plâtreux adj f s 0.00 0.95 0.00 0.20 +plâtreuses plâtreux adj f p 0.00 0.95 0.00 0.07 +plâtreux plâtreux adj m 0.00 0.95 0.00 0.68 +plâtrier plâtrier nom m s 0.10 1.01 0.10 0.88 +plâtriers plâtrier nom m p 0.10 1.01 0.00 0.14 +plâtré plâtré adj m s 0.25 0.47 0.13 0.20 +plâtrée plâtrer ver f s 0.60 0.88 0.05 0.34 par:pas; +plâtrées plâtrer ver f p 0.60 0.88 0.01 0.07 par:pas; +plâtrés plâtré adj m p 0.25 0.47 0.11 0.00 +plots plot nom m p 0.32 0.61 0.06 0.07 +plouc plouc nom m s 3.90 1.82 2.35 0.47 +ploucs plouc nom m p 3.90 1.82 1.55 1.35 +plouf plouf ono 1.31 1.55 1.31 1.55 +plouk plouk nom m s 0.01 0.68 0.01 0.68 +ploutocrate ploutocrate nom m s 0.02 0.07 0.01 0.00 +ploutocrates ploutocrate nom m p 0.02 0.07 0.01 0.07 +ploutocratie ploutocratie nom f s 0.20 0.00 0.20 0.00 +ploya ployer ver 0.44 7.36 0.00 0.14 ind:pas:3s; +ployaient ployer ver 0.44 7.36 0.01 0.34 ind:imp:3p; +ployait ployer ver 0.44 7.36 0.10 0.74 ind:imp:3s; +ployant ployant adj m s 0.01 0.20 0.01 0.07 +ployante ployant adj f s 0.01 0.20 0.00 0.14 +ployer ployer ver 0.44 7.36 0.14 1.42 inf; +ployé ployer ver m s 0.44 7.36 0.14 1.01 par:pas; +ployée ployer ver f s 0.44 7.36 0.00 0.95 par:pas; +ployées ployer ver f p 0.44 7.36 0.00 0.20 par:pas; +ployés ployer ver m p 0.44 7.36 0.00 0.27 par:pas; +plèbe plèbe nom f s 0.70 0.41 0.70 0.41 +plèvre plèvre nom f s 0.31 0.14 0.31 0.07 +plèvres plèvre nom f p 0.31 0.14 0.00 0.07 +plu pleuvoir ver m s 67.22 47.09 29.54 13.11 par:pas; +plébiscite plébiscite nom m s 0.43 0.95 0.42 0.95 +plébisciter plébisciter ver 0.02 0.14 0.01 0.00 inf; +plébiscites plébiscite nom m p 0.43 0.95 0.01 0.00 +plébiscité plébisciter ver m s 0.02 0.14 0.01 0.00 par:pas; +plébiscités plébisciter ver m p 0.02 0.14 0.00 0.07 par:pas; +plébéien plébéien adj m s 0.06 0.68 0.04 0.34 +plébéienne plébéien adj f s 0.06 0.68 0.01 0.14 +plébéiennes plébéien nom f p 0.14 0.07 0.01 0.00 +plébéiens plébéien nom m p 0.14 0.07 0.09 0.00 +pluche plucher ver 0.01 1.01 0.01 0.95 imp:pre:2s;ind:pre:3s; +plucher plucher ver 0.01 1.01 0.00 0.07 inf; +pluches pluches nom f p 0.01 0.54 0.01 0.54 +plue plue adv 0.26 0.00 0.26 0.00 +pléiade pléiade nom f s 0.16 1.82 0.16 1.69 +pléiades pléiade nom f p 0.16 1.82 0.00 0.14 +pluie pluie nom f s 46.10 122.57 42.91 111.76 +pluies pluie nom f p 46.10 122.57 3.19 10.81 +pléistocène pléistocène nom m s 0.02 0.00 0.02 0.00 +plum_pudding plum_pudding nom m s 0.02 0.07 0.02 0.07 +plum plume nom m s 15.29 60.00 0.11 0.61 +pluma plumer ver 2.44 3.78 0.00 0.07 ind:pas:3s; +plumage plumage nom m s 0.41 2.64 0.41 2.30 +plumages plumage nom m p 0.41 2.64 0.00 0.34 +plumaient plumer ver 2.44 3.78 0.00 0.27 ind:imp:3p; +plumait plumer ver 2.44 3.78 0.03 0.47 ind:imp:3s; +plumant plumer ver 2.44 3.78 0.04 0.20 par:pre; +plumard plumard nom m s 0.84 5.95 0.70 5.68 +plumards plumard nom m p 0.84 5.95 0.14 0.27 +plumassière plumassier nom f s 0.00 0.07 0.00 0.07 +plume plume nom f s 15.29 60.00 6.49 33.38 +plumeau plumeau nom m s 0.59 2.70 0.48 2.30 +plumeaux plumeau nom m p 0.59 2.70 0.11 0.41 +plument plumer ver 2.44 3.78 0.01 0.07 ind:pre:3p; +plumer plumer ver 2.44 3.78 1.06 1.01 inf; +plumes plume nom f p 15.29 60.00 8.69 26.01 +plumet plumet nom m s 0.23 2.03 0.23 0.74 +plumetis plumetis nom m 0.00 0.20 0.00 0.20 +plumets plumet nom m p 0.23 2.03 0.00 1.28 +plumeuse plumeux adj f s 0.00 0.74 0.00 0.20 +plumeuses plumeux adj f p 0.00 0.74 0.00 0.20 +plumeux plumeux adj m 0.00 0.74 0.00 0.34 +plumez plumer ver 2.44 3.78 0.04 0.00 imp:pre:2p;ind:pre:2p; +plumier plumier nom m s 0.03 1.35 0.03 0.95 +plumiers plumier nom m p 0.03 1.35 0.00 0.41 +plumitif plumitif nom m s 0.32 1.15 0.31 0.41 +plumitifs plumitif nom m p 0.32 1.15 0.01 0.74 +plumitives plumitive nom f p 0.00 0.07 0.00 0.07 +plumé plumer ver m s 2.44 3.78 0.37 0.47 par:pas; +plumée plumer ver f s 2.44 3.78 0.26 0.27 par:pas; +plumées plumer ver f p 2.44 3.78 0.00 0.14 par:pas; +plumules plumule nom f p 0.00 0.07 0.00 0.07 +plumés plumer ver m p 2.44 3.78 0.08 0.14 par:pas; +plénier plénier adj m s 0.00 1.42 0.00 0.20 +pléniers plénier adj m p 0.00 1.42 0.00 0.07 +plénipotentiaire plénipotentiaire adj m s 0.01 1.15 0.01 1.08 +plénipotentiaires plénipotentiaire nom p 0.00 1.28 0.00 0.41 +plénière plénier adj f s 0.00 1.42 0.00 0.88 +plénières plénier adj f p 0.00 1.42 0.00 0.27 +plénitude plénitude nom f s 1.27 6.96 1.27 6.76 +plénitudes plénitude nom f p 1.27 6.96 0.00 0.20 +plénum plénum nom m s 0.11 0.00 0.11 0.00 +pléonasme pléonasme nom m s 0.17 0.47 0.17 0.27 +pléonasmes pléonasme nom m p 0.17 0.47 0.00 0.20 +pléonastiques pléonastique adj p 0.01 0.00 0.01 0.00 +plupart plupart adv_sup 0.01 0.07 0.01 0.07 +pluralisme pluralisme nom m s 0.16 0.07 0.16 0.07 +pluraliste pluraliste adj f s 0.22 0.14 0.22 0.14 +pluralité pluralité nom f s 0.00 0.27 0.00 0.27 +plurent plaire ver 607.24 139.80 0.11 0.54 ind:pas:3p; +pluriannuel pluriannuel adj m s 0.01 0.00 0.01 0.00 +pluridisciplinaire pluridisciplinaire adj s 0.01 0.00 0.01 0.00 +pluriel pluriel nom m s 0.82 3.11 0.81 2.97 +plurielle pluriel adj f s 0.27 0.41 0.00 0.20 +pluriels pluriel nom m p 0.82 3.11 0.01 0.14 +plurinational plurinational adj m s 0.10 0.00 0.10 0.00 +plus_que_parfait plus_que_parfait nom m s 0.02 0.14 0.02 0.07 +plus_que_parfait plus_que_parfait nom m p 0.02 0.14 0.00 0.07 +plus_value plus_value nom f s 0.72 0.68 0.48 0.54 +plus_value plus_value nom f p 0.72 0.68 0.25 0.14 +plus plus adv_sup 4062.45 5014.53 4062.45 5014.53 +plusieurs plusieurs adj_ind p 66.98 203.58 66.98 203.58 +plésiosaure plésiosaure nom m s 0.02 0.14 0.02 0.14 +plusse plaire ver 607.24 139.80 0.00 0.07 sub:imp:1s; +plut plaire ver 607.24 139.80 0.76 4.86 ind:pas:3p;ind:pas:3s;ind:pas:3s; +plutôt plutôt adv 210.40 280.74 210.40 280.74 +pléthore pléthore nom f s 0.32 0.27 0.32 0.27 +pléthorique pléthorique adj m s 0.00 0.41 0.00 0.34 +pléthoriques pléthorique adj f p 0.00 0.41 0.00 0.07 +pluton pluton nom m s 0.14 0.00 0.14 0.00 +plutonien plutonien adj m s 0.03 0.00 0.02 0.00 +plutonienne plutonien adj f s 0.03 0.00 0.01 0.00 +plutonienne plutonienne adj f s 0.01 0.00 0.01 0.00 +plutonique plutonique adj s 0.01 0.00 0.01 0.00 +plutonium plutonium nom m s 1.48 0.07 1.48 0.07 +pluviôse pluviôse nom m s 0.00 0.14 0.00 0.14 +pluvial pluvial adj m s 0.10 0.00 0.06 0.00 +pluviale pluvial adj f s 0.10 0.00 0.01 0.00 +pluviales pluvial adj f p 0.10 0.00 0.02 0.00 +pluviaux pluvial adj m p 0.10 0.00 0.01 0.00 +pluvier pluvier nom m s 0.04 0.27 0.03 0.07 +pluviers pluvier nom m p 0.04 0.27 0.01 0.20 +pluvieuse pluvieux adj f s 0.79 4.46 0.20 1.89 +pluvieuses pluvieux adj f p 0.79 4.46 0.17 0.27 +pluvieux pluvieux adj m 0.79 4.46 0.42 2.30 +pluviomètre pluviomètre nom m s 0.00 0.14 0.00 0.07 +pluviomètres pluviomètre nom m p 0.00 0.14 0.00 0.07 +pluviométrie pluviométrie nom f s 0.02 0.00 0.02 0.00 +pluviométrique pluviométrique adj s 0.00 0.07 0.00 0.07 +pluviosité pluviosité nom f s 0.01 0.07 0.01 0.07 +pneu pneu nom m s 13.44 17.03 5.64 4.93 +pneumatique pneumatique adj s 0.47 2.16 0.31 1.49 +pneumatiques pneumatique adj p 0.47 2.16 0.17 0.68 +pneumatophore pneumatophore nom m s 0.00 0.07 0.00 0.07 +pneumo pneumo nom m s 0.26 0.34 0.26 0.07 +pneumoconiose pneumoconiose nom f s 0.01 0.00 0.01 0.00 +pneumocoque pneumocoque nom m s 0.01 0.07 0.01 0.00 +pneumocoques pneumocoque nom m p 0.01 0.07 0.00 0.07 +pneumocystose pneumocystose nom f s 0.01 0.34 0.01 0.34 +pneumologue pneumologue nom s 0.01 0.00 0.01 0.00 +pneumonectomie pneumonectomie nom f s 0.01 0.00 0.01 0.00 +pneumonie pneumonie nom f s 4.96 0.81 4.67 0.81 +pneumonies pneumonie nom f p 4.96 0.81 0.29 0.00 +pneumonique pneumonique adj f s 0.09 0.00 0.09 0.00 +pneumopathie pneumopathie nom f s 0.00 0.07 0.00 0.07 +pneumos pneumo nom m p 0.26 0.34 0.00 0.27 +pneumothorax pneumothorax nom m 0.45 0.27 0.45 0.27 +pneus_neige pneus_neige nom m p 0.02 0.00 0.02 0.00 +pneus pneu nom m p 13.44 17.03 7.79 12.09 +pochade pochade nom f s 0.02 0.41 0.02 0.20 +pochades pochade nom f p 0.02 0.41 0.00 0.20 +pochage pochage nom m s 0.00 0.07 0.00 0.07 +pochard pochard nom m s 0.73 1.01 0.49 0.54 +pocharde pochard nom f s 0.73 1.01 0.11 0.34 +pochards pochard nom m p 0.73 1.01 0.13 0.14 +poche_revolver poche_revolver nom s 0.00 0.27 0.00 0.27 +poche poche nom s 49.65 146.28 36.23 101.82 +pocher pocher ver 0.36 0.61 0.07 0.14 inf; +poches poche nom p 49.65 146.28 13.42 44.46 +pochetron pochetron nom m s 0.14 0.14 0.14 0.07 +pochetrons pochetron nom m p 0.14 0.14 0.01 0.07 +pochette_surprise pochette_surprise nom f s 0.20 0.34 0.20 0.20 +pochette pochette nom f s 2.34 8.85 1.89 6.69 +pochette_surprise pochette_surprise nom f p 0.20 0.34 0.00 0.14 +pochettes pochette nom f p 2.34 8.85 0.44 2.16 +pocheté pocheté adj m s 0.00 0.07 0.00 0.07 +pochetée pocheté nom f s 0.00 0.14 0.00 0.07 +pochetées pocheté nom f p 0.00 0.14 0.00 0.07 +pochoir pochoir nom m s 0.08 0.95 0.08 0.95 +pochon pochon nom m s 0.01 0.47 0.01 0.27 +pochons pochon nom m p 0.01 0.47 0.00 0.20 +pochtron pochtron nom m s 0.12 0.00 0.11 0.00 +pochtrons pochtron nom m p 0.12 0.00 0.01 0.00 +poché poché adj m s 0.61 0.81 0.28 0.41 +pochée poché adj f s 0.61 0.81 0.01 0.14 +pochées poché adj f p 0.61 0.81 0.03 0.00 +pochés poché adj m p 0.61 0.81 0.28 0.27 +podagre podagre adj s 0.00 0.20 0.00 0.20 +podestat podestat nom m s 0.00 0.27 0.00 0.07 +podestats podestat nom m p 0.00 0.27 0.00 0.20 +podium podium nom m s 2.16 1.08 2.12 0.95 +podiums podium nom m p 2.16 1.08 0.04 0.14 +podologue podologue nom s 0.05 0.07 0.05 0.07 +podomètre podomètre nom m s 0.01 0.00 0.01 0.00 +poecile poecile nom m s 0.00 0.07 0.00 0.07 +pogne pogne nom f s 0.76 13.38 0.69 8.31 +pognes pogne nom f p 0.76 13.38 0.07 5.07 +pognon pognon nom m s 13.85 11.96 13.85 11.96 +pogo pogo nom m s 0.16 0.00 0.16 0.00 +pogrom pogrom nom m s 0.05 1.08 0.04 0.41 +pogrome pogrome nom m s 0.01 0.47 0.01 0.07 +pogromes pogrome nom m p 0.01 0.47 0.00 0.41 +pogroms pogrom nom m p 0.05 1.08 0.01 0.68 +poids_lourds poids_lourds nom m 0.02 0.07 0.02 0.07 +poids poids nom m 34.42 89.05 34.42 89.05 +poignaient poigner ver 0.17 1.08 0.00 0.14 ind:imp:3p; +poignait poigner ver 0.17 1.08 0.00 0.47 ind:imp:3s; +poignant poignant adj m s 0.78 6.22 0.38 2.23 +poignante poignant adj f s 0.78 6.22 0.22 2.84 +poignantes poignant adj f p 0.78 6.22 0.02 0.47 +poignants poignant adj m p 0.78 6.22 0.16 0.68 +poignard poignard nom m s 9.89 10.14 9.38 8.11 +poignarda poignarder ver 14.32 3.31 0.02 0.07 ind:pas:3s; +poignardaient poignarder ver 14.32 3.31 0.01 0.27 ind:imp:3p; +poignardais poignarder ver 14.32 3.31 0.07 0.00 ind:imp:1s;ind:imp:2s; +poignardait poignarder ver 14.32 3.31 0.07 0.14 ind:imp:3s; +poignardant poignarder ver 14.32 3.31 0.05 0.07 par:pre; +poignarde poignarder ver 14.32 3.31 1.61 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +poignardent poignarder ver 14.32 3.31 0.36 0.00 ind:pre:3p; +poignarder poignarder ver 14.32 3.31 3.25 0.81 inf; +poignardera poignarder ver 14.32 3.31 0.03 0.00 ind:fut:3s; +poignarderai poignarder ver 14.32 3.31 0.07 0.07 ind:fut:1s; +poignarderais poignarder ver 14.32 3.31 0.05 0.00 cnd:pre:1s; +poignarderait poignarder ver 14.32 3.31 0.03 0.00 cnd:pre:3s; +poignarderont poignarder ver 14.32 3.31 0.00 0.07 ind:fut:3p; +poignardez poignarder ver 14.32 3.31 0.07 0.00 imp:pre:2p;ind:pre:2p; +poignards poignard nom m p 9.89 10.14 0.51 2.03 +poignardé poignarder ver m s 14.32 3.31 5.91 0.95 par:pas; +poignardée poignarder ver f s 14.32 3.31 2.39 0.34 par:pas; +poignardées poignarder ver f p 14.32 3.31 0.05 0.00 par:pas; +poignardés poignarder ver m p 14.32 3.31 0.28 0.14 par:pas; +poigne poigne nom f s 1.96 5.41 1.95 5.00 +poignent poigner ver 0.17 1.08 0.00 0.07 ind:pre:3p; +poigner poigner ver 0.17 1.08 0.14 0.00 inf; +poignerait poigner ver 0.17 1.08 0.00 0.07 cnd:pre:3s; +poignes poigne nom f p 1.96 5.41 0.01 0.41 +poignet poignet nom m s 10.00 42.84 6.38 27.70 +poignets poignet nom m p 10.00 42.84 3.62 15.14 +poignons poigner ver 0.17 1.08 0.00 0.07 imp:pre:1p; +poignée poignée nom f s 13.61 46.08 11.65 36.35 +poignées poignée nom f p 13.61 46.08 1.95 9.73 +poil_de_carotte poil_de_carotte nom m s 0.00 0.07 0.00 0.07 +poil poil nom m s 39.33 76.01 27.09 42.91 +poilaient poiler ver 0.06 1.28 0.00 0.07 ind:imp:3p; +poilais poiler ver 0.06 1.28 0.00 0.20 ind:imp:1s; +poilait poiler ver 0.06 1.28 0.00 0.34 ind:imp:3s; +poilant poilant adj m s 0.10 0.14 0.10 0.14 +poile poiler ver 0.06 1.28 0.03 0.07 ind:pre:1s;ind:pre:3s; +poiler poiler ver 0.06 1.28 0.03 0.14 inf; +poileux poileux adj m 0.00 0.07 0.00 0.07 +poils poil nom m p 39.33 76.01 12.24 33.11 +poilé poiler ver m s 0.06 1.28 0.00 0.07 par:pas; +poilu poilu adj m s 4.30 9.05 1.94 3.04 +poilue poilu adj f s 4.30 9.05 0.75 1.42 +poilues poilu adj f p 4.30 9.05 0.70 1.42 +poilés poiler ver m p 0.06 1.28 0.00 0.14 par:pas; +poilus poilu adj m p 4.30 9.05 0.92 3.18 +poindra poindre ver 5.28 5.61 0.11 0.07 ind:fut:3s; +poindre poindre ver 5.28 5.61 0.06 2.70 inf; +poing poing nom m s 17.52 76.08 13.25 47.97 +poings poing nom m p 17.52 76.08 4.27 28.11 +poinsettia poinsettia nom f s 0.04 0.00 0.04 0.00 +point_clé point_clé nom m s 0.02 0.00 0.02 0.00 +point_virgule point_virgule nom m s 0.04 0.07 0.04 0.00 +point point nom_sup m s 225.32 323.58 186.70 272.57 +pointa pointer ver 25.45 38.51 0.03 1.89 ind:pas:3s; +pointage pointage nom m s 0.31 0.41 0.30 0.41 +pointages pointage nom m p 0.31 0.41 0.01 0.00 +pointai pointer ver 25.45 38.51 0.00 0.07 ind:pas:1s; +pointaient pointer ver 25.45 38.51 0.17 2.30 ind:imp:3p; +pointais pointer ver 25.45 38.51 0.11 0.27 ind:imp:1s;ind:imp:2s; +pointait pointer ver 25.45 38.51 0.61 5.00 ind:imp:3s; +pointant pointer ver 25.45 38.51 0.27 3.72 par:pre; +pointe pointe nom f s 13.32 83.85 11.37 69.05 +pointeau pointeau nom m s 0.01 0.14 0.01 0.14 +pointement pointement nom m s 0.00 0.07 0.00 0.07 +pointent pointer ver 25.45 38.51 1.37 1.62 ind:pre:3p; +pointer pointer ver 25.45 38.51 4.63 5.14 inf; +pointera pointer ver 25.45 38.51 0.47 0.27 ind:fut:3s; +pointerai pointer ver 25.45 38.51 0.17 0.00 ind:fut:1s; +pointeraient pointer ver 25.45 38.51 0.01 0.14 cnd:pre:3p; +pointerais pointer ver 25.45 38.51 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +pointerait pointer ver 25.45 38.51 0.07 0.20 cnd:pre:3s; +pointeras pointer ver 25.45 38.51 0.02 0.00 ind:fut:2s; +pointerez pointer ver 25.45 38.51 0.04 0.00 ind:fut:2p; +pointeront pointer ver 25.45 38.51 0.06 0.00 ind:fut:3p; +pointers pointer nom m p 0.12 0.00 0.01 0.00 +pointes pointe nom f p 13.32 83.85 1.96 14.80 +pointeur pointeur nom m s 0.35 0.61 0.03 0.41 +pointeurs pointeur nom m p 0.35 0.61 0.00 0.14 +pointeuse pointeur nom f s 0.35 0.61 0.33 0.07 +pointeuses pointeur adj f p 0.01 0.20 0.00 0.07 +pointez pointer ver 25.45 38.51 2.06 0.20 imp:pre:2p;ind:pre:2p; +poinçon poinçon nom m s 0.37 1.89 0.35 1.55 +poinçonnait poinçonner ver 0.06 0.54 0.00 0.07 ind:imp:3s; +poinçonner poinçonner ver 0.06 0.54 0.04 0.14 inf; +poinçonneraient poinçonner ver 0.06 0.54 0.00 0.07 cnd:pre:3p; +poinçonneur poinçonneur nom m s 0.16 0.20 0.16 0.14 +poinçonneurs poinçonneur nom m p 0.16 0.20 0.00 0.07 +poinçonné poinçonner ver m s 0.06 0.54 0.01 0.07 par:pas; +poinçonnée poinçonner ver f s 0.06 0.54 0.01 0.07 par:pas; +poinçonnés poinçonner ver m p 0.06 0.54 0.00 0.14 par:pas; +poinçons poinçon nom m p 0.37 1.89 0.02 0.34 +pointiez pointer ver 25.45 38.51 0.10 0.00 ind:imp:2p; +pointillaient pointiller ver 0.03 1.62 0.00 0.07 ind:imp:3p; +pointillant pointiller ver 0.03 1.62 0.00 0.27 par:pre; +pointille pointiller ver 0.03 1.62 0.00 0.07 ind:pre:3s; +pointilleuse pointilleux adj f s 1.01 1.76 0.06 0.74 +pointilleuses pointilleux adj f p 1.01 1.76 0.02 0.14 +pointilleux pointilleux adj m 1.01 1.76 0.92 0.88 +pointillisme pointillisme nom m s 0.01 0.00 0.01 0.00 +pointilliste pointilliste adj m s 0.00 0.34 0.00 0.14 +pointillistes pointilliste adj p 0.00 0.34 0.00 0.20 +pointillé pointillé nom m s 0.36 2.97 0.16 1.62 +pointillée pointiller ver f s 0.03 1.62 0.02 0.47 par:pas; +pointillées pointiller ver f p 0.03 1.62 0.00 0.27 par:pas; +pointillés pointillé nom m p 0.36 2.97 0.20 1.35 +pointâmes pointer ver 25.45 38.51 0.00 0.07 ind:pas:1p; +pointons pointer ver 25.45 38.51 0.04 0.00 imp:pre:1p;ind:pre:1p; +point_virgule point_virgule nom m p 0.04 0.07 0.00 0.07 +points point nom_sup m p 225.32 323.58 38.62 51.01 +pointèrent pointer ver 25.45 38.51 0.00 0.34 ind:pas:3p; +pointé pointer ver m s 25.45 38.51 3.17 6.28 par:pas; +pointu pointu adj m s 4.38 21.62 2.17 9.19 +pointée pointer ver f s 25.45 38.51 0.97 1.89 par:pas; +pointue pointu adj f s 4.38 21.62 0.48 3.65 +pointées pointer ver f p 25.45 38.51 0.32 0.20 par:pas; +pointues pointu adj f p 4.38 21.62 0.78 3.72 +pointure pointure nom f s 3.27 1.49 2.67 1.01 +pointures pointure nom f p 3.27 1.49 0.60 0.47 +pointés pointer ver m p 25.45 38.51 0.40 0.88 par:pas; +pointus pointu adj m p 4.38 21.62 0.95 5.07 +poire_vérité poire_vérité nom f s 0.00 0.07 0.00 0.07 +poire poire nom f s 7.58 15.07 5.67 10.81 +poireau poireau nom m s 1.31 2.84 0.61 0.88 +poireautai poireauter ver 1.87 2.30 0.00 0.07 ind:pas:1s; +poireautaient poireauter ver 1.87 2.30 0.00 0.07 ind:imp:3p; +poireautais poireauter ver 1.87 2.30 0.02 0.20 ind:imp:1s; +poireautait poireauter ver 1.87 2.30 0.00 0.20 ind:imp:3s; +poireaute poireauter ver 1.87 2.30 0.58 0.20 ind:pre:1s;ind:pre:3s; +poireauter poireauter ver 1.87 2.30 1.18 1.28 inf; +poireautes poireauter ver 1.87 2.30 0.01 0.07 ind:pre:2s; +poireautions poireauter ver 1.87 2.30 0.00 0.07 ind:imp:1p; +poireauté poireauter ver m s 1.87 2.30 0.08 0.14 par:pas; +poireaux poireau nom m p 1.31 2.84 0.70 1.96 +poirer poirer ver 0.00 0.14 0.00 0.14 inf; +poires poire nom f p 7.58 15.07 1.91 4.26 +poirier poirier nom m s 0.56 3.65 0.42 2.57 +poiriers poirier nom m p 0.56 3.65 0.15 1.08 +poirota poiroter ver 0.02 0.27 0.00 0.14 ind:pas:3s; +poirotait poiroter ver 0.02 0.27 0.00 0.14 ind:imp:3s; +poiroter poiroter ver 0.02 0.27 0.02 0.00 inf; +poiré poiré nom m s 0.00 0.27 0.00 0.14 +poirée poiré nom f s 0.00 0.27 0.00 0.14 +pois pois nom m 8.09 13.72 8.09 13.72 +poiscaille poiscaille nom f s 0.23 0.81 0.21 0.41 +poiscailles poiscaille nom f p 0.23 0.81 0.03 0.41 +poison poison nom m s 19.76 12.23 18.59 9.86 +poisons poison nom m p 19.76 12.23 1.18 2.36 +poissaient poisser ver 0.33 2.64 0.00 0.27 ind:imp:3p; +poissait poisser ver 0.33 2.64 0.00 0.41 ind:imp:3s; +poissard poissard nom m s 0.00 0.14 0.00 0.07 +poissardes poissard nom f p 0.00 0.14 0.00 0.07 +poisse poisse nom f s 5.62 1.42 5.61 1.35 +poissent poisser ver 0.33 2.64 0.00 0.07 ind:pre:3p; +poisser poisser ver 0.33 2.64 0.11 0.61 inf; +poisses poisse nom f p 5.62 1.42 0.01 0.07 +poisseuse poisseux adj f s 0.72 8.99 0.12 3.11 +poisseuses poisseux adj f p 0.72 8.99 0.06 1.89 +poisseux poisseux adj m 0.72 8.99 0.54 3.99 +poisson_chat poisson_chat nom m s 0.64 0.54 0.54 0.34 +poisson_globe poisson_globe nom m s 0.02 0.00 0.02 0.00 +poisson_lune poisson_lune nom m s 0.15 0.07 0.15 0.07 +poisson_pilote poisson_pilote nom m s 0.00 0.07 0.00 0.07 +poisson_épée poisson_épée nom m s 0.09 0.00 0.09 0.00 +poisson poisson nom m s 81.51 54.46 53.61 30.14 +poissonnerie poissonnerie nom f s 0.22 0.47 0.22 0.47 +poissonneuse poissonneux adj f s 0.32 0.47 0.01 0.07 +poissonneuses poissonneux adj f p 0.32 0.47 0.10 0.07 +poissonneux poissonneux adj m 0.32 0.47 0.21 0.34 +poissonnier poissonnier nom m s 0.69 0.88 0.69 0.41 +poissonniers poissonnier nom m p 0.69 0.88 0.01 0.27 +poissonnière poissonnière nom f s 0.09 3.92 0.07 3.92 +poissonnières poissonnière nom f p 0.09 3.92 0.02 0.00 +poisson_chat poisson_chat nom m p 0.64 0.54 0.11 0.20 +poissons poisson nom m p 81.51 54.46 27.90 24.32 +poissé poisser ver m s 0.33 2.64 0.00 0.34 par:pas; +poissée poisser ver f s 0.33 2.64 0.00 0.20 par:pas; +poissées poisser ver f p 0.33 2.64 0.00 0.14 par:pas; +poissés poisser ver m p 0.33 2.64 0.00 0.07 par:pas; +poitevin poitevin adj m s 0.00 0.41 0.00 0.20 +poitevins poitevin adj m p 0.00 0.41 0.00 0.20 +poitrail poitrail nom m s 0.20 5.07 0.20 4.73 +poitrails poitrail nom m p 0.20 5.07 0.00 0.34 +poitrinaire poitrinaire adj s 0.02 1.08 0.02 0.88 +poitrinaires poitrinaire adj m p 0.02 1.08 0.00 0.20 +poitrinant poitriner ver 0.00 0.07 0.00 0.07 par:pre; +poitrine poitrine nom f s 26.45 104.46 25.31 99.59 +poitrines poitrine nom f p 26.45 104.46 1.14 4.86 +poitrinières poitrinière nom f p 0.00 0.14 0.00 0.14 +poivra poivrer ver 0.17 2.30 0.00 0.07 ind:pas:3s; +poivrade poivrade nom f s 0.14 0.68 0.14 0.27 +poivrades poivrade nom f p 0.14 0.68 0.00 0.41 +poivrais poivrer ver 0.17 2.30 0.01 0.07 ind:imp:1s; +poivrait poivrer ver 0.17 2.30 0.00 0.14 ind:imp:3s; +poivre poivre nom m s 3.80 6.89 3.79 6.69 +poivrent poivrer ver 0.17 2.30 0.00 0.14 ind:pre:3p; +poivrer poivrer ver 0.17 2.30 0.03 0.20 inf; +poivres poivre nom m p 3.80 6.89 0.01 0.20 +poivrez poivrer ver 0.17 2.30 0.01 0.07 imp:pre:2p;ind:pre:2p; +poivrier poivrier nom m s 0.08 0.88 0.08 0.34 +poivriers poivrier nom m p 0.08 0.88 0.00 0.54 +poivrière poivrière nom f s 0.08 0.34 0.05 0.07 +poivrières poivrière nom f p 0.08 0.34 0.03 0.27 +poivron poivron nom m s 2.35 1.15 0.51 0.27 +poivrons poivron nom m p 2.35 1.15 1.85 0.88 +poivrot poivrot nom m s 3.53 3.51 2.16 2.03 +poivrote poivrot nom f s 3.53 3.51 0.38 0.20 +poivrotes poivrot nom f p 3.53 3.51 0.00 0.20 +poivrots poivrot nom m p 3.53 3.51 0.99 1.08 +poivré poivrer ver m s 0.17 2.30 0.04 0.20 par:pas; +poivrée poivré adj f s 0.11 1.22 0.09 0.68 +poivrées poivré adj f p 0.11 1.22 0.00 0.14 +poivrés poivrer ver m p 0.17 2.30 0.01 0.20 par:pas; +poix poix nom f 0.14 1.22 0.14 1.22 +poker poker nom m s 10.76 3.92 10.62 3.78 +pokers poker nom m p 10.76 3.92 0.14 0.14 +polack polack nom s 1.48 0.00 1.37 0.00 +polacks polack nom p 1.48 0.00 0.11 0.00 +polaire polaire adj s 2.00 2.50 1.71 1.55 +polaires polaire adj p 2.00 2.50 0.28 0.95 +polak polak nom m s 0.17 0.41 0.12 0.34 +polaks polak nom m p 0.17 0.41 0.05 0.07 +polaque polaque nom m s 0.05 0.47 0.05 0.07 +polaques polaque nom m p 0.05 0.47 0.00 0.41 +polar polar nom m s 0.86 1.49 0.23 1.08 +polarde polard adj f s 0.01 0.27 0.01 0.07 +polardes polard adj f p 0.01 0.27 0.00 0.14 +polards polard adj m p 0.01 0.27 0.00 0.07 +polarisaient polariser ver 0.41 0.34 0.00 0.07 ind:imp:3p; +polarisait polariser ver 0.41 0.34 0.01 0.07 ind:imp:3s; +polarisant polariser ver 0.41 0.34 0.01 0.00 par:pre; +polarisants polarisant adj m p 0.01 0.07 0.00 0.07 +polarisation polarisation nom f s 0.06 0.00 0.06 0.00 +polarise polariser ver 0.41 0.34 0.01 0.00 imp:pre:2s; +polarisent polariser ver 0.41 0.34 0.01 0.00 ind:pre:3p; +polariser polariser ver 0.41 0.34 0.04 0.07 inf; +polarisé polariser ver m s 0.41 0.34 0.16 0.00 par:pas; +polarisée polariser ver f s 0.41 0.34 0.17 0.14 par:pas; +polarité polarité nom f s 0.54 0.00 0.54 0.00 +polaroïd polaroïd nom m s 0.74 0.95 0.47 0.88 +polaroïds polaroïd nom m p 0.74 0.95 0.28 0.07 +polaroid polaroid nom m s 0.39 0.00 0.39 0.00 +polars polar nom m p 0.86 1.49 0.63 0.41 +polder polder nom m s 0.00 0.20 0.00 0.07 +polders polder nom m p 0.00 0.20 0.00 0.14 +pâle pâle adj s 16.50 83.58 14.52 67.23 +pole pole nom m s 0.22 0.00 0.22 0.00 +pâlement pâlement adv 0.00 0.54 0.00 0.54 +polenta polenta nom f s 0.88 0.27 0.88 0.27 +pâles pâle adj p 16.50 83.58 1.98 16.35 +pâleur pâleur nom f s 1.38 10.41 1.38 10.00 +pâleurs pâleur nom f p 1.38 10.41 0.00 0.41 +pâli pâlir ver m s 1.19 15.14 0.31 2.50 par:pas; +poli polir ver m s 9.45 11.01 6.04 5.07 par:pas; +police_secours police_secours nom f s 0.16 0.47 0.16 0.47 +police police nom f s 276.21 83.72 274.31 81.69 +policeman policeman nom m s 0.04 0.41 0.03 0.34 +policemen policeman nom m p 0.04 0.41 0.01 0.07 +policer policer ver 1.27 0.61 0.04 0.00 inf; +polices police nom f p 276.21 83.72 1.90 2.03 +polichinelle polichinelle nom m s 0.50 2.09 0.49 1.76 +polichinelles polichinelle nom m p 0.50 2.09 0.01 0.34 +pâlichon pâlichon adj m s 0.06 0.81 0.06 0.47 +pâlichonne pâlichon adj f s 0.06 0.81 0.00 0.20 +pâlichons pâlichon adj m p 0.06 0.81 0.00 0.14 +policier policier nom m s 34.12 21.62 19.94 10.00 +policiers policier nom m p 34.12 21.62 14.02 11.62 +policière policier adj f s 9.29 6.82 2.31 1.76 +policières policier adj f p 9.29 6.82 0.58 1.01 +policlinique policlinique nom f s 0.10 0.00 0.10 0.00 +policé policer ver m s 1.27 0.61 0.01 0.07 par:pas; +policée policé adj f s 0.02 1.82 0.01 0.54 +policées policer ver f p 1.27 0.61 0.01 0.14 par:pas; +policés policé adj m p 0.02 1.82 0.01 0.27 +pâlie pâlir ver f s 1.19 15.14 0.10 0.68 par:pas; +polie polir ver f s 9.45 11.01 2.23 2.03 par:pas; +pâlies pâlir ver f p 1.19 15.14 0.00 0.54 par:pas; +polies poli adj f p 4.68 16.69 0.08 1.28 +poliment poliment adv 3.29 10.00 3.29 10.00 +polio polio nom f s 1.10 0.34 1.08 0.27 +poliomyélite poliomyélite nom f s 0.28 0.27 0.28 0.27 +poliomyélitique poliomyélitique adj m s 0.01 0.27 0.00 0.14 +poliomyélitiques poliomyélitique adj p 0.01 0.27 0.01 0.14 +poliorcétique poliorcétique adj m s 0.00 0.07 0.00 0.07 +polios polio nom f p 1.10 0.34 0.02 0.07 +pâlir pâlir ver 1.19 15.14 0.54 4.39 inf; +polir polir ver 9.45 11.01 0.38 1.42 inf; +pâlirait pâlir ver 1.19 15.14 0.00 0.07 cnd:pre:3s; +poliras polir ver 9.45 11.01 0.01 0.00 ind:fut:2s; +pâlirent pâlir ver 1.19 15.14 0.00 0.07 ind:pas:3p; +pâlis pâlir ver m p 1.19 15.14 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +polis poli adj m p 4.68 16.69 0.80 2.64 +polish polish nom m s 0.06 0.07 0.06 0.07 +polissage polissage nom m s 0.11 0.41 0.11 0.34 +polissages polissage nom m p 0.11 0.41 0.00 0.07 +pâlissaient pâlir ver 1.19 15.14 0.00 0.68 ind:imp:3p; +polissaient polir ver 9.45 11.01 0.00 0.07 ind:imp:3p; +polissais polir ver 9.45 11.01 0.01 0.07 ind:imp:1s; +pâlissait pâlir ver 1.19 15.14 0.00 1.22 ind:imp:3s; +polissait polir ver 9.45 11.01 0.02 0.14 ind:imp:3s; +pâlissant pâlissant adj m s 0.10 0.74 0.10 0.61 +polissant polir ver 9.45 11.01 0.04 0.34 par:pre; +pâlissante pâlissant adj f s 0.10 0.74 0.00 0.07 +pâlissantes pâlissant adj f p 0.10 0.74 0.00 0.07 +pâlissent pâlir ver 1.19 15.14 0.03 0.61 ind:pre:3p; +polissent polir ver 9.45 11.01 0.01 0.14 ind:pre:3p; +polisseur polisseur nom m s 0.01 0.14 0.01 0.00 +polisseurs polisseur nom m p 0.01 0.14 0.00 0.07 +polisseuse polisseur nom f s 0.01 0.14 0.00 0.07 +pâlissions pâlir ver 1.19 15.14 0.00 0.14 ind:imp:1p; +polissoir polissoir nom m s 0.02 0.07 0.02 0.07 +polisson polisson nom m s 1.12 0.47 0.83 0.27 +polissonnait polissonner ver 0.11 0.07 0.10 0.00 ind:imp:3s; +polissonne polisson adj f s 1.06 0.68 0.16 0.07 +polissonner polissonner ver 0.11 0.07 0.01 0.00 inf; +polissonnerie polissonnerie nom f s 0.00 0.20 0.00 0.14 +polissonneries polissonnerie nom f p 0.00 0.20 0.00 0.07 +polissonnes polisson adj f p 1.06 0.68 0.23 0.14 +polissons polisson nom m p 1.12 0.47 0.28 0.14 +polissure polissure nom f s 0.00 0.07 0.00 0.07 +pâlit pâlir ver 1.19 15.14 0.15 3.18 ind:pre:3s;ind:pas:3s; +polit polir ver 9.45 11.01 0.03 0.20 ind:pre:3s;ind:pas:3s; +politburo politburo nom m s 0.03 0.47 0.03 0.47 +politesse politesse nom f s 5.00 20.54 4.29 17.97 +politesses politesse nom f p 5.00 20.54 0.70 2.57 +politicard politicard nom m s 0.41 0.34 0.08 0.14 +politicards politicard nom m p 0.41 0.34 0.33 0.20 +politicien politicien nom m s 7.67 2.43 2.34 0.61 +politicienne politicien nom f s 7.67 2.43 0.10 0.00 +politiciennes politicien adj f p 0.83 0.68 0.12 0.14 +politiciens politicien nom m p 7.67 2.43 5.23 1.82 +politico_religieux politico_religieux adj f s 0.00 0.07 0.00 0.07 +politico politico adv 0.17 0.27 0.17 0.27 +politique_fiction politique_fiction nom f s 0.00 0.07 0.00 0.07 +politique politique nom s 38.38 70.34 34.84 65.88 +politiquement politiquement adv 2.73 2.77 2.73 2.77 +politiques politique adj p 38.09 70.81 13.20 26.42 +politisation politisation nom f s 0.01 0.00 0.01 0.00 +politiser politiser ver 0.29 0.34 0.07 0.00 inf; +politisé politiser ver m s 0.29 0.34 0.06 0.07 par:pas; +politisée politiser ver f s 0.29 0.34 0.14 0.07 par:pas; +politisés politiser ver m p 0.29 0.34 0.02 0.20 par:pas; +polka polka nom f s 1.98 7.64 1.90 7.50 +polkas polka nom f p 1.98 7.64 0.08 0.14 +pollen pollen nom m s 1.37 1.89 1.20 1.82 +pollens pollen nom m p 1.37 1.89 0.17 0.07 +pollinies pollinie nom f p 0.00 0.07 0.00 0.07 +pollinique pollinique adj f s 0.00 0.07 0.00 0.07 +pollinisateur pollinisateur adj m s 0.03 0.00 0.03 0.00 +pollinisation pollinisation nom f s 0.09 0.00 0.09 0.00 +polliniser polliniser ver 0.02 0.00 0.01 0.00 inf; +pollinisé polliniser ver m s 0.02 0.00 0.01 0.00 par:pas; +pollope pollope ono 0.00 0.07 0.00 0.07 +polluait polluer ver 3.38 2.09 0.12 0.07 ind:imp:3s; +polluant polluer ver 3.38 2.09 0.04 0.00 par:pre; +polluante polluant adj f s 0.21 0.14 0.02 0.00 +polluants polluant adj m p 0.21 0.14 0.16 0.07 +pollue polluer ver 3.38 2.09 0.45 0.07 ind:pre:1s;ind:pre:3s; +polluent polluer ver 3.38 2.09 0.22 0.14 ind:pre:3p; +polluer polluer ver 3.38 2.09 0.65 0.34 inf; +pollueront polluer ver 3.38 2.09 0.01 0.00 ind:fut:3p; +pollues polluer ver 3.38 2.09 0.12 0.07 ind:pre:2s; +pollueur pollueur nom m s 0.25 0.14 0.04 0.00 +pollueurs pollueur nom m p 0.25 0.14 0.18 0.14 +pollueuse pollueur nom f s 0.25 0.14 0.02 0.00 +polluez polluer ver 3.38 2.09 0.04 0.00 imp:pre:2p;ind:pre:2p; +pollution pollution nom f s 2.38 1.28 2.35 1.15 +pollutions pollution nom f p 2.38 1.28 0.04 0.14 +pollué polluer ver m s 3.38 2.09 0.57 0.68 par:pas; +polluée polluer ver f s 3.38 2.09 0.86 0.20 par:pas; +polluées polluer ver f p 3.38 2.09 0.17 0.47 par:pas; +pollués polluer ver m p 3.38 2.09 0.14 0.07 par:pas; +polo polo nom m s 1.51 2.03 1.46 1.96 +poloche poloche nom f s 0.00 0.34 0.00 0.34 +polochon polochon nom m s 0.19 0.81 0.06 0.41 +polochons polochon nom m p 0.19 0.81 0.12 0.41 +polonais polonais nom m 8.26 9.32 7.06 8.18 +polonaise polonais adj f s 8.41 14.73 1.87 4.39 +polonaises polonais adj f p 8.41 14.73 0.27 0.95 +polope polope ono 0.00 0.41 0.00 0.41 +polos polo nom m p 1.51 2.03 0.05 0.07 +pâlot pâlot adj m s 0.60 1.22 0.44 0.34 +pâlots pâlot adj m p 0.60 1.22 0.01 0.20 +pâlotte pâlot adj f s 0.60 1.22 0.15 0.61 +pâlottes pâlot adj f p 0.60 1.22 0.00 0.07 +polski polski nom m s 0.14 0.14 0.14 0.14 +poltron poltron nom m s 0.74 0.41 0.58 0.27 +poltronne poltron adj f s 0.32 0.34 0.03 0.07 +poltronnerie poltronnerie nom f s 0.55 0.00 0.55 0.00 +poltrons poltron nom m p 0.74 0.41 0.16 0.14 +polémique polémique nom f s 0.73 1.35 0.46 1.22 +polémiquer polémiquer ver 0.07 0.14 0.03 0.14 inf; +polémiques polémique nom f p 0.73 1.35 0.27 0.14 +polémiste polémiste nom s 0.14 0.47 0.14 0.41 +polémistes polémiste nom p 0.14 0.47 0.00 0.07 +poly_sexuel poly_sexuel adj f s 0.01 0.00 0.01 0.00 +poly poly nom m s 0.30 0.14 0.30 0.14 +polyacrylate polyacrylate nom m s 0.03 0.00 0.03 0.00 +polyamide polyamide nom m s 0.00 0.20 0.00 0.14 +polyamides polyamide nom m p 0.00 0.20 0.00 0.07 +polyandre polyandre adj f s 0.00 0.07 0.00 0.07 +polyarthrite polyarthrite nom f s 0.03 0.00 0.03 0.00 +polycarbonate polycarbonate nom m s 0.03 0.00 0.03 0.00 +polychlorure polychlorure nom m s 0.01 0.00 0.01 0.00 +polychrome polychrome adj s 0.00 1.08 0.00 0.74 +polychromes polychrome adj m p 0.00 1.08 0.00 0.34 +polychromie polychromie nom f s 0.00 0.27 0.00 0.27 +polychromé polychromé adj m s 0.00 0.27 0.00 0.14 +polychromées polychromé adj f p 0.00 0.27 0.00 0.14 +polyclinique polyclinique nom f s 0.23 0.14 0.23 0.14 +polycopiait polycopier ver 0.12 0.54 0.00 0.07 ind:imp:3s; +polycopie polycopie nom f s 0.01 0.07 0.01 0.07 +polycopier polycopier ver 0.12 0.54 0.01 0.34 inf; +polycopié polycopié nom m s 0.00 0.20 0.00 0.07 +polycopiée polycopier ver f s 0.12 0.54 0.00 0.14 par:pas; +polycopiés polycopier ver m p 0.12 0.54 0.11 0.00 par:pas; +polyculture polyculture nom f s 0.00 0.07 0.00 0.07 +polycéphale polycéphale adj m s 0.01 0.00 0.01 0.00 +polydactylie polydactylie nom f s 0.01 0.00 0.01 0.00 +polyester polyester nom m s 0.46 0.34 0.46 0.34 +polygame polygame adj s 0.15 0.00 0.15 0.00 +polygamie polygamie nom f s 0.49 0.27 0.49 0.27 +polyglotte polyglotte adj s 0.08 1.01 0.08 0.61 +polyglottes polyglotte nom p 0.03 0.14 0.01 0.00 +polygonal polygonal adj m s 0.01 0.20 0.01 0.00 +polygonales polygonal adj f p 0.01 0.20 0.00 0.14 +polygonaux polygonal adj m p 0.01 0.20 0.00 0.07 +polygone polygone nom m s 0.13 0.88 0.12 0.47 +polygones polygone nom m p 0.13 0.88 0.01 0.41 +polygraphe polygraphe nom s 0.37 0.14 0.34 0.07 +polygraphes polygraphe nom p 0.37 0.14 0.04 0.07 +polygénique polygénique adj f s 0.01 0.00 0.01 0.00 +polykystique polykystique adj m s 0.04 0.00 0.04 0.00 +polymorphe polymorphe adj s 0.06 0.07 0.05 0.07 +polymorphes polymorphe adj p 0.06 0.07 0.01 0.00 +polymorphie polymorphie nom f s 0.02 0.00 0.02 0.00 +polymorphismes polymorphisme nom m p 0.03 0.00 0.03 0.00 +polymère polymère nom m s 0.16 0.00 0.16 0.00 +polymérase polymérase nom f s 0.05 0.00 0.05 0.00 +polymérique polymérique adj m s 0.02 0.00 0.01 0.00 +polymériques polymérique adj m p 0.02 0.00 0.01 0.00 +polynésien polynésien adj m s 0.08 0.47 0.03 0.07 +polynésienne polynésienne adj f s 0.03 0.00 0.03 0.00 +polynésiennes polynésien adj f p 0.08 0.47 0.03 0.14 +polynésiens polynésien nom m p 0.04 0.07 0.02 0.00 +polype polype nom m s 0.32 0.74 0.23 0.54 +polypes polype nom m p 0.32 0.74 0.09 0.20 +polyphone polyphone adj s 0.00 0.07 0.00 0.07 +polyphonie polyphonie nom f s 0.02 0.14 0.02 0.14 +polyphonique polyphonique adj m s 0.23 0.14 0.23 0.14 +polypier polypier nom m s 0.00 0.14 0.00 0.07 +polypiers polypier nom m p 0.00 0.14 0.00 0.07 +polypropylène polypropylène nom m s 0.01 0.14 0.01 0.14 +polysaccharides polysaccharide nom m p 0.01 0.00 0.01 0.00 +polystyrène polystyrène nom m s 0.38 0.14 0.38 0.14 +polysyllabe polysyllabe adj s 0.01 0.00 0.01 0.00 +polysyllabique polysyllabique adj m s 0.01 0.07 0.01 0.07 +polytechnicien polytechnicien nom m s 0.25 1.35 0.14 0.81 +polytechnicienne polytechnicien nom f s 0.25 1.35 0.01 0.00 +polytechniciens polytechnicien nom m p 0.25 1.35 0.10 0.54 +polytechnique polytechnique nom f s 0.44 0.47 0.44 0.47 +polyèdre polyèdre nom m s 0.00 0.20 0.00 0.14 +polyèdres polyèdre nom m p 0.00 0.20 0.00 0.07 +polythène polythène nom m s 0.01 0.00 0.01 0.00 +polythéiste polythéiste adj s 0.01 0.00 0.01 0.00 +polytonal polytonal adj m s 0.00 0.07 0.00 0.07 +polytonalité polytonalité nom f s 0.00 0.07 0.00 0.07 +polyuréthane polyuréthane nom m s 0.05 0.00 0.05 0.00 +polyéthylène polyéthylène nom m s 0.13 0.14 0.13 0.14 +polyvalence polyvalence nom f s 0.01 0.14 0.01 0.14 +polyvalent polyvalent adj m s 0.15 0.14 0.02 0.14 +polyvalente polyvalent adj f s 0.15 0.14 0.12 0.00 +polyvalents polyvalent adj m p 0.15 0.14 0.01 0.00 +polyvinyle polyvinyle nom m s 0.01 0.07 0.01 0.07 +polyvinylique polyvinylique adj m s 0.03 0.00 0.03 0.00 +pom_pom_girl pom_pom_girl nom f s 2.06 0.00 0.95 0.00 +pom_pom_girl pom_pom_girl nom f p 2.06 0.00 1.11 0.00 +pâma pâmer ver 0.47 3.18 0.01 0.07 ind:pas:3s; +pâmaient pâmer ver 0.47 3.18 0.01 0.20 ind:imp:3p; +pâmait pâmer ver 0.47 3.18 0.02 0.27 ind:imp:3s; +pâmant pâmer ver 0.47 3.18 0.00 0.27 par:pre; +pâme pâmer ver 0.47 3.18 0.07 0.27 ind:pre:1s;ind:pre:3s; +pomelo pomelo nom m s 0.01 0.00 0.01 0.00 +pâment pâmer ver 0.47 3.18 0.04 0.00 ind:pre:3p; +pâmer pâmer ver 0.47 3.18 0.06 0.61 inf; +pâmerais pâmer ver 0.47 3.18 0.00 0.07 cnd:pre:1s; +pâmerait pâmer ver 0.47 3.18 0.01 0.00 cnd:pre:3s; +pomerols pomerol nom m p 0.00 0.07 0.00 0.07 +pâmeront pâmer ver 0.47 3.18 0.03 0.00 ind:fut:3p; +pâmez pâmer ver 0.47 3.18 0.10 0.07 imp:pre:2p;ind:pre:2p; +pommade pommade nom f s 2.35 3.04 2.21 2.16 +pommader pommader ver 0.02 0.54 0.00 0.41 inf; +pommades pommade nom f p 2.35 3.04 0.14 0.88 +pommadin pommadin nom m s 0.00 0.07 0.00 0.07 +pommadé pommadé adj m s 0.00 0.74 0.00 0.47 +pommadées pommadé adj f p 0.00 0.74 0.00 0.07 +pommadés pommadé adj m p 0.00 0.74 0.00 0.20 +pommaient pommer ver 0.38 1.96 0.00 0.07 ind:imp:3p; +pommard pommard nom m s 0.00 0.20 0.00 0.07 +pommards pommard nom m p 0.00 0.20 0.00 0.14 +pomme pomme nom f s 42.35 82.36 19.77 46.08 +pommeau pommeau nom m s 0.22 4.26 0.22 3.92 +pommeaux pommeau nom m p 0.22 4.26 0.00 0.34 +pommeler pommeler ver 0.00 0.27 0.00 0.07 inf; +pommelé pommelé adj m s 0.28 1.49 0.26 0.95 +pommelées pommelé adj f p 0.28 1.49 0.00 0.07 +pommelés pommelé adj m p 0.28 1.49 0.02 0.47 +pommer pommer ver 0.38 1.96 0.04 0.00 inf; +pommeraie pommeraie nom f s 0.01 0.14 0.01 0.14 +pommes pomme nom f p 42.35 82.36 22.57 36.28 +pommette pommette nom f s 0.90 16.35 0.21 2.70 +pommettes pommette nom f p 0.90 16.35 0.69 13.65 +pommier pommier nom m s 1.93 8.78 1.55 5.88 +pommiers pommier nom m p 1.93 8.78 0.38 2.91 +pommé pommer ver m s 0.38 1.96 0.04 0.07 par:pas; +pommée pommé adj f s 0.01 0.27 0.01 0.07 +pommées pommé adj f p 0.01 0.27 0.00 0.14 +pommés pommé adj m p 0.01 0.27 0.00 0.07 +pâmoison pâmoison nom f s 0.00 1.22 0.00 0.74 +pâmoisons pâmoison nom f p 0.00 1.22 0.00 0.47 +pompadour pompadour adj 0.03 0.00 0.03 0.00 +pompage pompage nom m s 0.35 0.14 0.35 0.14 +pompai pomper ver 5.24 4.59 0.00 0.07 ind:pas:1s; +pompaient pomper ver 5.24 4.59 0.01 0.14 ind:imp:3p; +pompais pomper ver 5.24 4.59 0.02 0.07 ind:imp:1s; +pompait pomper ver 5.24 4.59 0.15 0.61 ind:imp:3s; +pompant pomper ver 5.24 4.59 0.03 0.47 par:pre; +pompe pompe nom f s 22.92 35.14 10.51 18.45 +pompent pomper ver 5.24 4.59 0.24 0.34 ind:pre:3p; +pomper pomper ver 5.24 4.59 1.72 1.15 inf; +pompera pomper ver 5.24 4.59 0.02 0.07 ind:fut:3s; +pomperais pomper ver 5.24 4.59 0.02 0.00 cnd:pre:2s; +pomperait pomper ver 5.24 4.59 0.01 0.00 cnd:pre:3s; +pompes pompe nom f p 22.92 35.14 12.41 16.69 +pompette pompette adj s 1.21 0.41 1.21 0.41 +pompeur pompeur nom m s 0.04 0.27 0.04 0.27 +pompeuse pompeux adj f s 0.97 4.26 0.09 1.15 +pompeusement pompeusement adv 0.01 1.15 0.01 1.15 +pompeuses pompeux adj f p 0.97 4.26 0.04 0.61 +pompeux pompeux adj m 0.97 4.26 0.85 2.50 +pompez pomper ver 5.24 4.59 0.66 0.07 imp:pre:2p;ind:pre:2p; +pompidoliens pompidolien adj m p 0.00 0.07 0.00 0.07 +pompier pompier nom m s 13.01 10.07 2.67 1.01 +pompiers pompier nom m p 13.01 10.07 10.35 9.05 +pompions pomper ver 5.24 4.59 0.00 0.07 ind:imp:1p; +pompiste pompiste nom s 2.10 4.05 2.05 3.51 +pompistes pompiste nom p 2.10 4.05 0.05 0.54 +pompiérisme pompiérisme nom m s 0.00 0.07 0.00 0.07 +pompon pompon nom m s 1.56 3.92 1.22 1.35 +pomponna pomponner ver 0.94 1.69 0.00 0.07 ind:pas:3s; +pomponnaient pomponner ver 0.94 1.69 0.00 0.07 ind:imp:3p; +pomponnait pomponner ver 0.94 1.69 0.00 0.20 ind:imp:3s; +pomponnant pomponner ver 0.94 1.69 0.00 0.07 par:pre; +pomponne pomponner ver 0.94 1.69 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pomponnent pomponner ver 0.94 1.69 0.01 0.00 ind:pre:3p; +pomponner pomponner ver 0.94 1.69 0.32 0.14 inf; +pomponniez pomponner ver 0.94 1.69 0.00 0.07 ind:imp:2p; +pomponné pomponner ver m s 0.94 1.69 0.10 0.34 par:pas; +pomponnée pomponner ver f s 0.94 1.69 0.41 0.34 par:pas; +pomponnées pomponner ver f p 0.94 1.69 0.01 0.27 par:pas; +pomponnés pomponner ver m p 0.94 1.69 0.01 0.07 par:pas; +pompons pompon nom m p 1.56 3.92 0.34 2.57 +pompé pomper ver m s 5.24 4.59 0.40 0.54 par:pas; +pompée pomper ver f s 5.24 4.59 0.25 0.00 par:pas; +pompéien pompéien adj m s 0.17 0.54 0.01 0.20 +pompéienne pompéien adj f s 0.17 0.54 0.01 0.20 +pompéiennes pompéien adj f p 0.17 0.54 0.00 0.07 +pompéiens pompéien adj m p 0.17 0.54 0.15 0.07 +pompés pomper ver m p 5.24 4.59 0.01 0.07 par:pas; +pâmèrent pâmer ver 0.47 3.18 0.01 0.07 ind:pas:3p; +pâmé pâmer ver m s 0.47 3.18 0.10 0.41 par:pas; +pâmée pâmer ver f s 0.47 3.18 0.01 0.54 par:pas; +pâmées pâmer ver f p 0.47 3.18 0.01 0.20 par:pas; +pomélo pomélo nom m s 0.01 0.00 0.01 0.00 +poméranien poméranien adj m s 0.01 0.14 0.01 0.07 +poméranienne poméranien nom f s 0.00 0.47 0.00 0.07 +poméraniennes poméranien nom f p 0.00 0.47 0.00 0.34 +poméraniens poméranien nom m p 0.00 0.47 0.00 0.07 +pâmés pâmer ver m p 0.47 3.18 0.00 0.14 par:pas; +ponant ponant nom m s 0.04 0.34 0.04 0.34 +ponce poncer ver 0.42 2.43 0.18 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ponceau ponceau nom m s 0.00 0.41 0.00 0.34 +ponceaux ponceau nom m p 0.00 0.41 0.00 0.07 +poncer poncer ver 0.42 2.43 0.16 0.07 inf; +ponces poncer ver 0.42 2.43 0.00 0.27 sub:pre:2s; +ponceuse ponceur nom f s 0.31 0.41 0.31 0.41 +poncho poncho nom m s 1.04 0.20 1.00 0.20 +ponchos poncho nom m p 1.04 0.20 0.04 0.00 +poncif poncif nom m s 0.01 0.95 0.00 0.47 +poncifs poncif nom m p 0.01 0.95 0.01 0.47 +ponction ponction nom f s 1.72 1.08 1.68 0.74 +ponctionna ponctionner ver 0.02 0.27 0.00 0.07 ind:pas:3s; +ponctionnait ponctionner ver 0.02 0.27 0.00 0.07 ind:imp:3s; +ponctionne ponctionner ver 0.02 0.27 0.01 0.07 ind:pre:3s; +ponctionner ponctionner ver 0.02 0.27 0.01 0.07 inf; +ponctions ponction nom f p 1.72 1.08 0.04 0.34 +ponctua ponctuer ver 0.12 9.32 0.00 0.27 ind:pas:3s; +ponctuaient ponctuer ver 0.12 9.32 0.00 0.47 ind:imp:3p; +ponctuait ponctuer ver 0.12 9.32 0.01 1.69 ind:imp:3s; +ponctualité ponctualité nom f s 1.01 1.42 1.01 1.42 +ponctuant ponctuer ver 0.12 9.32 0.01 0.88 par:pre; +ponctuation ponctuation nom f s 0.30 1.55 0.30 1.35 +ponctuations ponctuation nom f p 0.30 1.55 0.00 0.20 +ponctue ponctuer ver 0.12 9.32 0.01 0.88 ind:pre:1s;ind:pre:3s; +ponctuel ponctuel adj m s 3.55 1.82 1.82 0.81 +ponctuelle ponctuel adj f s 3.55 1.82 1.13 0.27 +ponctuellement ponctuellement adv 0.26 1.01 0.26 1.01 +ponctuelles ponctuel adj f p 3.55 1.82 0.06 0.41 +ponctuels ponctuel adj m p 3.55 1.82 0.54 0.34 +ponctuent ponctuer ver 0.12 9.32 0.01 0.27 ind:pre:3p; +ponctuer ponctuer ver 0.12 9.32 0.02 0.61 inf; +ponctuèrent ponctuer ver 0.12 9.32 0.00 0.07 ind:pas:3p; +ponctué ponctuer ver m s 0.12 9.32 0.02 2.16 par:pas; +ponctuée ponctuer ver f s 0.12 9.32 0.00 1.08 par:pas; +ponctuées ponctuer ver f p 0.12 9.32 0.00 0.47 par:pas; +ponctués ponctuer ver m p 0.12 9.32 0.03 0.47 par:pas; +poncé poncer ver m s 0.42 2.43 0.07 0.20 par:pas; +poncée poncer ver f s 0.42 2.43 0.00 0.27 par:pas; +poncées poncer ver f p 0.42 2.43 0.00 0.14 par:pas; +poncés poncer ver m p 0.42 2.43 0.00 0.07 par:pas; +pond pondre ver 5.41 6.82 1.18 0.74 ind:pre:3s; +pondaient pondre ver 5.41 6.82 0.01 0.20 ind:imp:3p; +pondait pondre ver 5.41 6.82 0.15 0.41 ind:imp:3s; +pondant pondre ver 5.41 6.82 0.02 0.07 par:pre; +ponde pondre ver 5.41 6.82 0.10 0.00 sub:pre:1s;sub:pre:3s; +pondent pondre ver 5.41 6.82 0.55 0.34 ind:pre:3p; +pondes pondre ver 5.41 6.82 0.00 0.07 sub:pre:2s; +pondeur pondeur nom m s 0.08 0.20 0.00 0.07 +pondeuse pondeur nom f s 0.08 0.20 0.08 0.00 +pondeuses pondeuse nom f p 0.03 0.00 0.03 0.00 +pondez pondre ver 5.41 6.82 0.06 0.00 imp:pre:2p;ind:pre:2p; +pondiez pondre ver 5.41 6.82 0.00 0.07 ind:imp:2p; +pondoir pondoir nom m s 0.00 0.20 0.00 0.14 +pondoirs pondoir nom m p 0.00 0.20 0.00 0.07 +pondra pondre ver 5.41 6.82 0.04 0.07 ind:fut:3s; +pondrai pondre ver 5.41 6.82 0.16 0.07 ind:fut:1s; +pondraient pondre ver 5.41 6.82 0.01 0.14 cnd:pre:3p; +pondrais pondre ver 5.41 6.82 0.00 0.07 cnd:pre:2s; +pondras pondre ver 5.41 6.82 0.02 0.07 ind:fut:2s; +pondre pondre ver 5.41 6.82 1.64 1.69 inf; +pondront pondre ver 5.41 6.82 0.01 0.00 ind:fut:3p; +ponds pondre ver 5.41 6.82 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +pondu pondre ver m s 5.41 6.82 1.39 1.76 par:pas; +pondue pondre ver f s 5.41 6.82 0.01 0.27 par:pas; +pondérable pondérable adj f s 0.00 0.20 0.00 0.14 +pondérables pondérable adj p 0.00 0.20 0.00 0.07 +pondérale pondéral adj f s 0.05 0.00 0.05 0.00 +pondération pondération nom f s 0.12 0.47 0.12 0.47 +pondérer pondérer ver 0.04 0.14 0.01 0.00 inf; +pondéré pondéré adj m s 0.18 1.15 0.03 0.68 +pondérée pondéré adj f s 0.18 1.15 0.13 0.14 +pondérées pondéré adj f p 0.18 1.15 0.00 0.07 +pondérés pondéré adj m p 0.18 1.15 0.02 0.27 +pondus pondre ver m p 5.41 6.82 0.02 0.74 par:pas; +ponette ponette nom f s 0.00 0.47 0.00 0.27 +ponettes ponette nom f p 0.00 0.47 0.00 0.20 +poney poney nom m s 4.80 1.01 3.70 0.47 +poneys poney nom m p 4.80 1.01 1.10 0.54 +pongiste pongiste nom s 0.30 0.00 0.10 0.00 +pongistes pongiste nom p 0.30 0.00 0.20 0.00 +pongo pongo nom m s 1.72 0.00 1.72 0.00 +pongé pongé nom m s 0.00 0.20 0.00 0.20 +pont_l_évêque pont_l_évêque nom m s 0.00 0.07 0.00 0.07 +pont_levis pont_levis nom m 0.46 1.42 0.46 1.42 +pont_neuf pont_neuf nom m s 0.14 2.43 0.14 2.43 +pont_promenade pont_promenade nom m s 0.00 0.07 0.00 0.07 +pont pont nom m s 56.43 90.81 50.45 74.59 +pontage pontage nom m s 0.65 0.07 0.60 0.07 +pontages pontage nom m p 0.65 0.07 0.04 0.00 +ponte ponte nom s 2.35 2.30 1.46 1.62 +ponter ponter ver 0.52 0.20 0.21 0.00 inf; +pontes ponte nom p 2.35 2.30 0.89 0.68 +pontet pontet nom m s 0.01 0.20 0.01 0.14 +pontets pontet nom m p 0.01 0.20 0.00 0.07 +ponçage ponçage nom m s 0.01 0.14 0.01 0.14 +ponçait poncer ver 0.42 2.43 0.01 0.20 ind:imp:3s; +ponçant poncer ver 0.42 2.43 0.00 0.07 par:pre; +pontife pontife nom m s 0.26 1.28 0.23 0.88 +pontifes pontife nom m p 0.26 1.28 0.03 0.41 +pontifia pontifier ver 0.04 0.54 0.00 0.07 ind:pas:3s; +pontifiait pontifier ver 0.04 0.54 0.00 0.14 ind:imp:3s; +pontifiant pontifiant adj m s 0.04 0.41 0.02 0.27 +pontifiante pontifiant adj f s 0.04 0.41 0.02 0.07 +pontifiants pontifiant adj m p 0.04 0.41 0.00 0.07 +pontifical pontifical adj m s 0.30 1.35 0.16 0.47 +pontificale pontifical adj f s 0.30 1.35 0.14 0.47 +pontificales pontifical adj f p 0.30 1.35 0.00 0.27 +pontificat pontificat nom m s 0.01 0.14 0.01 0.14 +pontificaux pontifical adj m p 0.30 1.35 0.00 0.14 +pontifie pontifier ver 0.04 0.54 0.00 0.14 ind:pre:3s; +pontifier pontifier ver 0.04 0.54 0.04 0.07 inf; +pontifièrent pontifier ver 0.04 0.54 0.00 0.07 ind:pas:3p; +pontil pontil nom m s 0.00 0.07 0.00 0.07 +pontin pontin adj m s 0.11 0.20 0.10 0.07 +pontins pontin adj m p 0.11 0.20 0.01 0.14 +ponton ponton nom m s 1.01 3.99 0.98 2.16 +pontonnier pontonnier nom m s 0.00 0.81 0.00 0.14 +pontonniers pontonnier nom m p 0.00 0.81 0.00 0.68 +pontons ponton nom m p 1.01 3.99 0.03 1.82 +ponts_levis ponts_levis nom m p 0.00 0.27 0.00 0.27 +ponts pont nom m p 56.43 90.81 5.97 16.22 +ponté ponter ver m s 0.52 0.20 0.01 0.07 par:pas; +pool pool nom m s 1.19 0.20 1.19 0.20 +pop_club pop_club nom s 0.00 0.07 0.00 0.07 +pop_corn pop_corn nom m 3.79 0.14 3.79 0.14 +pop pop adj s 3.10 1.28 3.10 1.28 +popaul popaul nom m s 0.28 0.07 0.28 0.07 +pope pope nom m s 1.07 6.42 0.83 5.20 +popeline popeline nom f s 0.00 4.66 0.00 4.66 +popes pope nom m p 1.07 6.42 0.23 1.22 +popistes popiste adj f p 0.00 0.07 0.00 0.07 +poplité poplité adj m s 0.05 0.00 0.01 0.00 +poplitée poplité adj f s 0.05 0.00 0.04 0.00 +popote popote nom f s 0.40 2.57 0.39 2.09 +popotes popote nom f p 0.40 2.57 0.01 0.47 +popotin popotin nom m s 0.79 0.74 0.79 0.74 +populace populace nom f s 1.53 2.36 1.53 2.36 +populacier populacier adj m s 0.00 0.68 0.00 0.20 +populacière populacier adj f s 0.00 0.68 0.00 0.20 +populacières populacier adj f p 0.00 0.68 0.00 0.27 +populaire populaire adj s 19.34 31.28 16.23 23.45 +populairement populairement adv 0.14 0.07 0.14 0.07 +populaires populaire adj p 19.34 31.28 3.11 7.84 +populariser populariser ver 0.12 0.14 0.12 0.07 inf; +popularisé populariser ver m s 0.12 0.14 0.00 0.07 par:pas; +popularité popularité nom f s 2.03 1.82 2.03 1.76 +popularités popularité nom f p 2.03 1.82 0.00 0.07 +population population nom f s 15.68 33.65 14.86 23.58 +populations population nom f p 15.68 33.65 0.82 10.07 +populeuse populeux adj f s 0.02 1.15 0.01 0.27 +populeuses populeux adj f p 0.02 1.15 0.00 0.14 +populeux populeux adj m 0.02 1.15 0.01 0.74 +populisme populisme nom m s 0.02 0.14 0.02 0.07 +populismes populisme nom m p 0.02 0.14 0.00 0.07 +populiste populiste adj s 0.17 0.41 0.16 0.27 +populistes populiste adj m p 0.17 0.41 0.01 0.14 +populo populo nom m s 0.17 1.55 0.17 1.55 +poquait poquer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +pâque pâque nom f s 0.51 0.95 0.51 0.95 +poque poque nom f s 0.16 0.07 0.16 0.07 +pâquerette pâquerette nom f s 0.69 2.09 0.27 0.20 +pâquerettes pâquerette nom f p 0.69 2.09 0.43 1.89 +pâques pâques nom m s 0.26 1.01 0.26 1.01 +poquette poquette nom f s 0.00 0.07 0.00 0.07 +pâquis pâquis nom m 0.00 0.07 0.00 0.07 +porc_épic porc_épic nom m s 0.55 0.27 0.55 0.27 +porc porc nom m s 41.07 14.46 30.18 11.15 +porcelaine porcelaine nom f s 3.07 12.43 2.85 10.74 +porcelaines porcelaine nom f p 3.07 12.43 0.22 1.69 +porcelainiers porcelainier nom m p 0.00 0.07 0.00 0.07 +porcelet porcelet nom m s 0.57 0.54 0.44 0.27 +porcelets porcelet nom m p 0.57 0.54 0.13 0.27 +porche porche nom m s 3.10 17.03 2.95 15.34 +porcher porcher nom m s 1.47 0.00 1.46 0.00 +porcherie porcherie nom f s 2.76 1.22 2.73 1.22 +porcheries porcherie nom f p 2.76 1.22 0.03 0.00 +porches porche nom m p 3.10 17.03 0.14 1.69 +porchère porcher nom f s 1.47 0.00 0.01 0.00 +porchères porchère nom f p 0.01 0.00 0.01 0.00 +porcif porcif nom f s 0.00 0.34 0.00 0.14 +porcifs porcif nom f p 0.00 0.34 0.00 0.20 +porcin porcin adj m s 0.29 0.74 0.19 0.20 +porcine porcin adj f s 0.29 0.74 0.06 0.07 +porcins porcin nom m p 0.12 0.00 0.10 0.00 +porcs porc nom m p 41.07 14.46 10.89 3.31 +pore pore nom m s 1.54 3.51 0.57 0.47 +pores pore nom m p 1.54 3.51 0.97 3.04 +poreuse poreux adj f s 0.70 2.84 0.16 1.15 +poreuses poreux adj f p 0.70 2.84 0.04 0.14 +poreux poreux adj m 0.70 2.84 0.49 1.55 +porno porno nom m s 9.77 1.08 8.73 0.47 +pornocrate pornocrate nom s 0.00 0.14 0.00 0.07 +pornocrates pornocrate nom p 0.00 0.14 0.00 0.07 +pornographe pornographe nom s 0.19 0.47 0.17 0.47 +pornographes pornographe nom p 0.19 0.47 0.02 0.00 +pornographie pornographie nom f s 1.81 1.22 1.81 1.15 +pornographies pornographie nom f p 1.81 1.22 0.00 0.07 +pornographique pornographique adj s 1.39 1.82 0.56 0.68 +pornographiques pornographique adj p 1.39 1.82 0.83 1.15 +pornos porno adj p 7.20 2.03 2.07 0.95 +porosité porosité nom f s 0.04 0.34 0.04 0.34 +porphyre porphyre nom m s 0.10 1.49 0.10 1.35 +porphyres porphyre nom m p 0.10 1.49 0.00 0.14 +porphyrie porphyrie nom f s 0.12 0.00 0.12 0.00 +porque porque nom f s 0.32 0.00 0.32 0.00 +porridge porridge nom m s 1.13 0.74 1.13 0.74 +port_salut port_salut nom m 0.00 0.20 0.00 0.20 +port port nom m s 31.68 76.42 29.40 64.86 +porta porter ver 319.85 474.93 1.41 16.55 ind:pas:3s; +portabilité portabilité nom f s 0.01 0.00 0.01 0.00 +portable portable adj s 35.82 0.61 31.70 0.61 +portables portable adj p 35.82 0.61 4.12 0.00 +portage portage nom m s 0.08 0.74 0.08 0.74 +portager portager ver 0.00 0.07 0.00 0.07 inf; +portai porter ver 319.85 474.93 0.12 1.01 ind:pas:1s; +portaient porter ver 319.85 474.93 2.81 28.72 ind:imp:3p; +portail portail nom m s 8.61 22.97 7.97 21.82 +portails portail nom m p 8.61 22.97 0.64 1.15 +portais porter ver 319.85 474.93 7.96 9.19 ind:imp:1s;ind:imp:2s; +portait porter ver 319.85 474.93 25.75 113.85 ind:imp:3s; +portal portal adj m s 0.05 0.14 0.05 0.14 +portance portance nom f s 0.29 0.00 0.29 0.00 +portant portant adj m s 5.46 9.73 5.00 8.72 +portante portant adj f s 5.46 9.73 0.20 0.34 +portants portant adj m p 5.46 9.73 0.26 0.68 +portassent porter ver 319.85 474.93 0.00 0.07 sub:imp:3p; +portatif portatif adj m s 0.65 2.64 0.40 1.08 +portatifs portatif adj m p 0.65 2.64 0.10 0.41 +portative portatif adj f s 0.65 2.64 0.14 0.88 +portatives portatif adj f p 0.65 2.64 0.01 0.27 +porte_aiguille porte_aiguille nom m s 0.07 0.00 0.07 0.00 +porte_avion porte_avion nom m s 0.04 0.07 0.04 0.07 +porte_avions porte_avions nom m 1.21 1.22 1.21 1.22 +porte_bagages porte_bagages nom m 0.02 3.11 0.02 3.11 +porte_bannière porte_bannière nom m s 0.00 0.07 0.00 0.07 +porte_billets porte_billets nom m 0.00 0.14 0.00 0.14 +porte_bois porte_bois nom m 0.00 0.07 0.00 0.07 +porte_bonheur porte_bonheur nom m 4.58 1.08 4.58 1.08 +porte_bouteilles porte_bouteilles nom m 0.00 0.27 0.00 0.27 +porte_bébé porte_bébé nom m s 0.02 0.00 0.02 0.00 +porte_cannes porte_cannes nom m 0.00 0.07 0.00 0.07 +porte_carte porte_carte nom m s 0.00 0.07 0.00 0.07 +porte_cartes porte_cartes nom m 0.00 0.34 0.00 0.34 +porte_chance porte_chance nom m 0.17 0.07 0.17 0.07 +porte_chapeaux porte_chapeaux nom m 0.04 0.00 0.04 0.00 +porte_cigarette porte_cigarette nom m s 0.00 0.20 0.00 0.20 +porte_cigarettes porte_cigarettes nom m 0.65 0.74 0.65 0.74 +porte_clef porte_clef nom m s 0.02 0.14 0.02 0.14 +porte_clefs porte_clefs nom m 0.27 0.34 0.27 0.34 +porte_clé porte_clé nom m s 0.10 0.00 0.10 0.00 +porte_clés porte_clés nom m 1.44 0.54 1.44 0.54 +porte_conteneurs porte_conteneurs nom m 0.01 0.00 0.01 0.00 +porte_coton porte_coton nom m s 0.00 0.07 0.00 0.07 +porte_couilles porte_couilles nom m 0.00 0.07 0.00 0.07 +porte_couteau porte_couteau nom m s 0.00 0.07 0.00 0.07 +porte_couteaux porte_couteaux nom m p 0.00 0.07 0.00 0.07 +porte_cravate porte_cravate nom m s 0.00 0.07 0.00 0.07 +porte_crayon porte_crayon nom m s 0.01 0.00 0.01 0.00 +porte_document porte_document nom m s 0.01 0.00 0.01 0.00 +porte_documents porte_documents nom m 0.86 0.68 0.86 0.68 +porte_drapeau porte_drapeau nom m s 0.19 0.68 0.19 0.68 +porte_drapeaux porte_drapeaux nom m p 0.01 0.07 0.01 0.07 +porte_fanion porte_fanion nom m s 0.00 0.14 0.00 0.14 +porte_fenêtre porte_fenêtre nom f s 0.14 4.46 0.03 3.11 +porte_flingue porte_flingue nom m s 0.08 0.07 0.08 0.00 +porte_flingue porte_flingue nom m p 0.08 0.07 0.00 0.07 +porte_foret porte_foret nom m p 0.00 0.07 0.00 0.07 +porte_glaive porte_glaive nom m 0.10 1.01 0.10 1.01 +porte_jarretelles porte_jarretelles nom m 0.59 1.89 0.59 1.89 +porte_malheur porte_malheur nom m 0.19 0.07 0.19 0.07 +porte_mine porte_mine nom m s 0.00 0.14 0.00 0.14 +porte_monnaie porte_monnaie nom m 2.24 6.01 2.24 6.01 +porte_musique porte_musique nom m s 0.00 0.07 0.00 0.07 +porte_à_faux porte_à_faux nom m 0.00 0.61 0.00 0.61 +porte_à_porte porte_à_porte nom m 0.00 0.41 0.00 0.41 +porte_objet porte_objet nom m s 0.01 0.00 0.01 0.00 +porte_papier porte_papier nom m 0.01 0.07 0.01 0.07 +porte_parapluie porte_parapluie nom m s 0.00 0.07 0.00 0.07 +porte_parapluies porte_parapluies nom m 0.14 0.47 0.14 0.47 +porte_plume porte_plume nom m 0.29 3.78 0.29 3.72 +porte_plume porte_plume nom m p 0.29 3.78 0.00 0.07 +porte_queue porte_queue nom m 0.01 0.00 0.01 0.00 +porte_savon porte_savon nom m s 0.09 0.27 0.09 0.27 +porte_serviette porte_serviette nom m s 0.00 0.20 0.00 0.20 +porte_serviettes porte_serviettes nom m 0.12 0.20 0.12 0.20 +porte_tambour porte_tambour nom m 0.01 0.34 0.01 0.34 +porte_épée porte_épée nom m s 0.00 0.14 0.00 0.14 +porte_étendard porte_étendard nom m s 0.01 0.34 0.01 0.27 +porte_étendard porte_étendard nom m p 0.01 0.34 0.00 0.07 +porte_étrier porte_étrier nom m s 0.00 0.07 0.00 0.07 +porte_voix porte_voix nom m 0.55 2.64 0.55 2.64 +porte porte nom f s 333.85 617.43 288.39 536.96 +portefaix portefaix nom m 0.01 1.15 0.01 1.15 +portefeuille portefeuille nom m s 17.91 21.15 16.53 19.66 +portefeuilles portefeuille nom m p 17.91 21.15 1.38 1.49 +portemanteau portemanteau nom m s 0.36 4.05 0.30 2.97 +portemanteaux portemanteau nom m p 0.36 4.05 0.07 1.08 +portement portement nom m s 0.00 0.07 0.00 0.07 +portent porter ver 319.85 474.93 11.90 19.39 ind:pre:3p;sub:pre:3p; +porter porter ver 319.85 474.93 78.91 79.93 inf; +portera porter ver 319.85 474.93 7.54 3.11 ind:fut:3s; +porterai porter ver 319.85 474.93 5.49 1.62 ind:fut:1s; +porteraient porter ver 319.85 474.93 0.20 1.15 cnd:pre:3p; +porterais porter ver 319.85 474.93 1.14 0.81 cnd:pre:1s;cnd:pre:2s; +porterait porter ver 319.85 474.93 2.16 3.65 cnd:pre:3s; +porteras porter ver 319.85 474.93 2.10 0.47 ind:fut:2s; +porterez porter ver 319.85 474.93 1.53 0.54 ind:fut:2p; +porterie porterie nom f s 0.01 0.14 0.01 0.14 +porteriez porter ver 319.85 474.93 0.30 0.07 cnd:pre:2p; +porterons porter ver 319.85 474.93 0.46 0.27 ind:fut:1p; +porteront porter ver 319.85 474.93 1.73 0.74 ind:fut:3p; +porte_fenêtre porte_fenêtre nom f p 0.14 4.46 0.10 1.35 +portes porte nom f p 333.85 617.43 45.46 80.47 +porteur porteur nom m s 6.15 13.31 4.01 5.54 +porteurs porteur nom m p 6.15 13.31 1.89 6.49 +porteuse porteur adj f s 4.31 11.15 0.98 1.82 +porteuses porteur adj f p 4.31 11.15 0.44 0.88 +portez porter ver 319.85 474.93 16.22 2.84 imp:pre:2p;ind:pre:2p; +portfolio portfolio nom m s 0.68 0.00 0.68 0.00 +portier portier nom m s 7.39 45.00 3.07 6.89 +portiers portier nom m p 7.39 45.00 0.21 0.68 +portiez porter ver 319.85 474.93 2.56 1.15 ind:imp:2p; +portillon portillon nom m s 0.36 3.24 0.35 3.04 +portillons portillon nom m p 0.36 3.24 0.01 0.20 +portion portion nom f s 3.13 7.57 2.30 5.61 +portions portion nom f p 3.13 7.57 0.83 1.96 +portique portique nom m s 0.40 4.53 0.35 3.11 +portiques portique nom m p 0.40 4.53 0.04 1.42 +portière portier nom f s 7.39 45.00 4.12 29.19 +portières portière nom f p 0.84 0.00 0.84 0.00 +portland portland nom m s 0.05 0.07 0.05 0.07 +porto porto nom m s 2.30 5.00 2.27 4.46 +portâmes porter ver 319.85 474.93 0.00 0.14 ind:pas:1p; +portons porter ver 319.85 474.93 4.34 2.43 imp:pre:1p;ind:pre:1p; +portor portor nom m s 0.00 0.07 0.00 0.07 +portoricain portoricain adj m s 1.09 0.07 0.53 0.00 +portoricaine portoricain adj f s 1.09 0.07 0.48 0.00 +portoricaines portoricain adj f p 1.09 0.07 0.03 0.07 +portoricains portoricain nom m p 1.27 0.07 0.80 0.07 +portos porto nom m p 2.30 5.00 0.03 0.54 +portât porter ver 319.85 474.93 0.01 0.95 sub:imp:3s; +portraire portraire ver 0.36 1.01 0.00 0.07 inf; +portrait_robot portrait_robot nom m s 1.17 0.54 0.77 0.47 +portrait portrait nom m s 25.73 54.59 22.64 39.19 +portraitiste portraitiste nom s 0.28 0.47 0.26 0.27 +portraitistes portraitiste nom p 0.28 0.47 0.03 0.20 +portrait_robot portrait_robot nom m p 1.17 0.54 0.40 0.07 +portraits portrait nom m p 25.73 54.59 3.09 15.41 +portraiturant portraiturer ver 0.00 0.54 0.00 0.07 par:pre; +portraiture portraiturer ver 0.00 0.54 0.00 0.14 ind:pre:3s; +portraiturer portraiturer ver 0.00 0.54 0.00 0.20 inf; +portraituré portraiturer ver m s 0.00 0.54 0.00 0.07 par:pas; +portraiturés portraiturer ver m p 0.00 0.54 0.00 0.07 par:pas; +ports port nom m p 31.68 76.42 2.28 11.55 +portèrent porter ver 319.85 474.93 0.29 2.50 ind:pas:3p; +porté porter ver m s 319.85 474.93 20.56 38.65 par:pas;par:pas;par:pas; +portuaire portuaire adj f s 0.56 0.81 0.29 0.54 +portuaires portuaire adj f p 0.56 0.81 0.26 0.27 +portée portée nom f s 13.38 33.85 13.05 33.18 +portées porter ver f p 319.85 474.93 1.00 3.38 par:pas; +portugais portugais nom m 7.89 3.45 7.58 2.70 +portugaise portugais adj f s 3.88 3.51 0.55 1.49 +portugaises portugais adj f p 3.88 3.51 0.30 0.41 +portulan portulan nom m s 0.00 0.61 0.00 0.34 +portulans portulan nom m p 0.00 0.61 0.00 0.27 +portés porter ver m p 319.85 474.93 2.70 7.64 par:pas; +portus portus nom m 0.00 0.07 0.00 0.07 +posa poser ver 217.20 409.05 1.77 65.68 ind:pas:3s; +posada posada nom f s 0.12 0.81 0.12 0.74 +posadas posada nom f p 0.12 0.81 0.00 0.07 +posai poser ver 217.20 409.05 0.03 5.20 ind:pas:1s; +posaient poser ver 217.20 409.05 0.73 7.30 ind:imp:3p; +posais poser ver 217.20 409.05 1.77 5.41 ind:imp:1s;ind:imp:2s; +posait poser ver 217.20 409.05 3.38 32.43 ind:imp:3s; +posant poser ver 217.20 409.05 1.47 16.28 par:pre; +posas poser ver 217.20 409.05 0.00 0.07 ind:pas:2s; +pose_la_moi pose_la_moi nom f s 0.01 0.00 0.01 0.00 +pose poser ver 217.20 409.05 57.41 48.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +posemètre posemètre nom m s 0.02 0.00 0.02 0.00 +posent poser ver 217.20 409.05 3.54 7.50 ind:pre:3p; +poser poser ver 217.20 409.05 73.73 73.85 inf;;inf;;inf;;inf;; +posera poser ver 217.20 409.05 3.04 1.08 ind:fut:3s; +poserai poser ver 217.20 409.05 1.73 0.74 ind:fut:1s; +poseraient poser ver 217.20 409.05 0.06 0.34 cnd:pre:3p; +poserais poser ver 217.20 409.05 0.40 0.14 cnd:pre:1s;cnd:pre:2s; +poserait poser ver 217.20 409.05 0.74 1.76 cnd:pre:3s; +poseras poser ver 217.20 409.05 0.41 0.07 ind:fut:2s; +poserez poser ver 217.20 409.05 0.35 0.07 ind:fut:2p; +poseriez poser ver 217.20 409.05 0.24 0.00 cnd:pre:2p; +poserions poser ver 217.20 409.05 0.01 0.00 cnd:pre:1p; +poserons poser ver 217.20 409.05 0.43 0.07 ind:fut:1p; +poseront poser ver 217.20 409.05 1.02 0.95 ind:fut:3p; +poses poser ver 217.20 409.05 6.12 0.95 ind:pre:2s;sub:pre:2s; +poseur poseur nom m s 0.96 0.95 0.67 0.74 +poseurs poseur nom m p 0.96 0.95 0.23 0.20 +poseuse poseur nom f s 0.96 0.95 0.07 0.00 +posez poser ver 217.20 409.05 23.70 2.77 imp:pre:2p;ind:pre:2p; +posiez poser ver 217.20 409.05 0.47 0.27 ind:imp:2p; +posions poser ver 217.20 409.05 0.06 0.14 ind:imp:1p; +positif positif adj m s 17.27 7.70 9.69 3.99 +positifs positif adj m p 17.27 7.70 1.69 0.54 +position_clé position_clé nom f s 0.01 0.00 0.01 0.00 +position position nom f s 61.74 63.38 55.24 53.85 +positionne positionner ver 1.11 0.14 0.22 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +positionnel positionnel adj m s 0.01 0.00 0.01 0.00 +positionnement positionnement nom m s 0.23 0.07 0.23 0.07 +positionnent positionner ver 1.11 0.14 0.03 0.00 ind:pre:3p; +positionner positionner ver 1.11 0.14 0.57 0.07 inf; +positionnera positionner ver 1.11 0.14 0.02 0.00 ind:fut:3s; +positionneur positionneur nom m s 0.01 0.00 0.01 0.00 +positionné positionner ver m s 1.11 0.14 0.16 0.07 par:pas; +positionnée positionner ver f s 1.11 0.14 0.11 0.00 par:pas; +positions position nom f p 61.74 63.38 6.49 9.53 +positive positif adj f s 17.27 7.70 4.63 2.57 +positivement positivement adv 1.58 3.11 1.58 3.11 +positiver positiver ver 0.23 0.00 0.23 0.00 inf; +positives positif adj f p 17.27 7.70 1.25 0.61 +positivisme positivisme nom m s 0.04 0.14 0.04 0.14 +positiviste positiviste adj s 0.20 0.20 0.20 0.14 +positivistes positiviste adj m p 0.20 0.20 0.00 0.07 +positivité positivité nom f s 0.17 0.07 0.17 0.07 +positon positon nom m s 0.01 0.00 0.01 0.00 +positron positron nom m s 0.04 0.14 0.01 0.07 +positrons positron nom m p 0.04 0.14 0.02 0.07 +posologie posologie nom f s 0.26 0.34 0.15 0.27 +posologies posologie nom f p 0.26 0.34 0.11 0.07 +posâmes poser ver 217.20 409.05 0.00 0.27 ind:pas:1p; +posons poser ver 217.20 409.05 1.38 0.34 imp:pre:1p;ind:pre:1p; +posât poser ver 217.20 409.05 0.00 0.81 sub:imp:3s; +possesseur possesseur nom m s 0.53 3.78 0.50 2.57 +possesseurs possesseur nom m p 0.53 3.78 0.04 1.22 +possessif possessif adj m s 1.04 1.76 0.41 0.81 +possessifs possessif adj m p 1.04 1.76 0.09 0.07 +possession possession nom f s 12.76 27.64 11.56 24.19 +possessions possession nom f p 12.76 27.64 1.20 3.45 +possessive possessif adj f s 1.04 1.76 0.53 0.81 +possessives possessif adj f p 1.04 1.76 0.02 0.07 +possessivité possessivité nom f s 0.03 0.20 0.03 0.20 +possibilité possibilité nom f s 25.87 30.54 16.79 19.46 +possibilités possibilité nom f p 25.87 30.54 9.08 11.08 +possible possible adj s 201.41 211.96 193.91 197.16 +possiblement possiblement adv 0.21 0.20 0.21 0.20 +possibles possible adj p 201.41 211.96 7.50 14.80 +possède posséder ver 42.76 82.23 17.80 20.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +possèdent posséder ver 42.76 82.23 3.27 4.59 ind:pre:3p; +possèdes posséder ver 42.76 82.23 1.44 0.47 ind:pre:2s; +posséda posséder ver 42.76 82.23 0.12 0.61 ind:pas:3s; +possédaient posséder ver 42.76 82.23 0.38 5.14 ind:imp:3p; +possédais posséder ver 42.76 82.23 0.72 3.11 ind:imp:1s;ind:imp:2s; +possédait posséder ver 42.76 82.23 2.84 21.42 ind:imp:3s; +possédant posséder ver 42.76 82.23 0.59 1.55 par:pre; +possédante possédant adj f s 0.27 0.34 0.21 0.20 +possédants possédant nom m p 0.09 0.68 0.01 0.34 +possédasse posséder ver 42.76 82.23 0.00 0.07 sub:imp:1s; +posséder posséder ver 42.76 82.23 6.36 13.24 inf; +possédera posséder ver 42.76 82.23 0.39 0.27 ind:fut:3s; +posséderai posséder ver 42.76 82.23 0.27 0.20 ind:fut:1s; +posséderaient posséder ver 42.76 82.23 0.04 0.07 cnd:pre:3p; +posséderais posséder ver 42.76 82.23 0.00 0.07 cnd:pre:1s; +posséderait posséder ver 42.76 82.23 0.05 0.27 cnd:pre:3s; +posséderas posséder ver 42.76 82.23 0.01 0.07 ind:fut:2s; +posséderez posséder ver 42.76 82.23 0.05 0.00 ind:fut:2p; +posséderont posséder ver 42.76 82.23 0.20 0.07 ind:fut:3p; +possédez posséder ver 42.76 82.23 2.18 0.81 imp:pre:2p;ind:pre:2p; +possédiez posséder ver 42.76 82.23 0.29 0.07 ind:imp:2p; +possédions posséder ver 42.76 82.23 0.13 0.81 ind:imp:1p; +possédons posséder ver 42.76 82.23 1.09 1.01 imp:pre:1p;ind:pre:1p; +possédât posséder ver 42.76 82.23 0.01 0.74 sub:imp:3s; +possédé posséder ver m s 42.76 82.23 2.67 4.93 par:pas; +possédée posséder ver f s 42.76 82.23 1.44 1.55 par:pas; +possédées posséder ver f p 42.76 82.23 0.14 0.14 par:pas; +possédés posséder ver m p 42.76 82.23 0.29 0.95 par:pas; +post_apocalyptique post_apocalyptique adj s 0.04 0.00 0.04 0.00 +post_empire post_empire nom m s 0.00 0.07 0.00 0.07 +post_hypnotique post_hypnotique adj f s 0.02 0.00 0.02 0.00 +post_impressionnisme post_impressionnisme nom m s 0.01 0.00 0.01 0.00 +post_it post_it nom m 1.85 0.00 1.84 0.00 +post_moderne post_moderne adj s 0.14 0.00 0.14 0.00 +post_natal post_natal adj m s 0.18 0.07 0.03 0.07 +post_natal post_natal adj f s 0.18 0.07 0.16 0.00 +post_opératoire post_opératoire adj s 0.19 0.00 0.17 0.00 +post_opératoire post_opératoire adj m p 0.19 0.00 0.02 0.00 +post_partum post_partum nom m 0.04 0.00 0.04 0.00 +post_production post_production nom f s 0.14 0.00 0.14 0.00 +post_punk post_punk nom s 0.00 0.14 0.00 0.14 +post_romantique post_romantique adj m s 0.00 0.07 0.00 0.07 +post_rupture post_rupture nom f s 0.01 0.00 0.01 0.00 +post_scriptum post_scriptum nom m 0.29 1.96 0.29 1.96 +post_surréaliste post_surréaliste adj p 0.00 0.07 0.00 0.07 +post_synchro post_synchro adj s 0.05 0.00 0.05 0.00 +post_traumatique post_traumatique adj s 0.82 0.07 0.79 0.00 +post_traumatique post_traumatique adj p 0.82 0.07 0.03 0.07 +post_victorien post_victorien adj m s 0.01 0.00 0.01 0.00 +post_zoo post_zoo nom m s 0.01 0.00 0.01 0.00 +post_it post_it nom m 1.85 0.00 0.01 0.00 +post_mortem post_mortem adv 0.28 0.20 0.28 0.20 +post post adv 0.69 0.41 0.69 0.41 +posta poster ver 9.54 10.47 0.07 0.95 ind:pas:3s; +postage postage nom m s 0.01 0.00 0.01 0.00 +postai poster ver 9.54 10.47 0.01 0.14 ind:pas:1s; +postaient poster ver 9.54 10.47 0.00 0.07 ind:imp:3p; +postais poster ver 9.54 10.47 0.02 0.14 ind:imp:1s; +postait poster ver 9.54 10.47 0.01 0.20 ind:imp:3s; +postal postal adj m s 9.04 16.76 1.69 1.35 +postale postal adj f s 9.04 16.76 5.18 6.89 +postales postal adj f p 9.04 16.76 1.94 8.11 +postant poster ver 9.54 10.47 0.05 0.14 par:pre; +postaux postal adj m p 9.04 16.76 0.22 0.41 +postcombustion postcombustion nom f s 0.12 0.00 0.12 0.00 +postcure postcure nom f s 0.04 0.27 0.04 0.27 +postdater postdater ver 0.04 0.00 0.01 0.00 inf; +postdaté postdater ver m s 0.04 0.00 0.02 0.00 par:pas; +postdoctoral postdoctoral adj m s 0.01 0.00 0.01 0.00 +poste_clé poste_clé nom s 0.02 0.00 0.02 0.00 +poste poste nom s 82.87 90.68 72.64 73.58 +postent poster ver 9.54 10.47 0.15 0.07 ind:pre:3p; +poster poster ver 9.54 10.47 2.51 2.16 inf; +postera poster ver 9.54 10.47 0.09 0.00 ind:fut:3s; +posterai poster ver 9.54 10.47 0.40 0.27 ind:fut:1s; +posterait poster ver 9.54 10.47 0.01 0.07 cnd:pre:3s; +posteras poster ver 9.54 10.47 0.02 0.07 ind:fut:2s; +posterons poster ver 9.54 10.47 0.12 0.07 ind:fut:1p; +posters poster nom m p 2.41 2.03 0.81 1.01 +postes_clé postes_clé nom p 0.01 0.00 0.01 0.00 +postes poste nom p 82.87 90.68 10.23 17.09 +postez poster ver 9.54 10.47 0.80 0.00 imp:pre:2p;ind:pre:2p; +postface postface nom f s 0.00 0.27 0.00 0.20 +postfaces postface nom f p 0.00 0.27 0.00 0.07 +posèrent poser ver 217.20 409.05 0.02 2.91 ind:pas:3p; +posthume posthume adj s 0.83 4.32 0.81 3.78 +posthumes posthume adj p 0.83 4.32 0.02 0.54 +postiche postiche nom m s 0.48 0.74 0.33 0.34 +postiches postiche adj p 0.44 1.28 0.17 0.61 +postier postier nom m s 0.66 2.03 0.58 0.54 +postiers postier nom m p 0.66 2.03 0.04 1.08 +postillon postillon nom m s 0.22 1.42 0.03 0.68 +postillonna postillonner ver 0.20 2.30 0.00 0.14 ind:pas:3s; +postillonnait postillonner ver 0.20 2.30 0.00 0.34 ind:imp:3s; +postillonnant postillonner ver 0.20 2.30 0.01 0.88 par:pre; +postillonne postillonner ver 0.20 2.30 0.05 0.47 ind:pre:1s;ind:pre:3s; +postillonnent postillonner ver 0.20 2.30 0.02 0.07 ind:pre:3p; +postillonner postillonner ver 0.20 2.30 0.00 0.34 inf; +postillonnes postillonner ver 0.20 2.30 0.04 0.00 ind:pre:2s; +postillonneur postillonneur nom m s 0.01 0.14 0.01 0.00 +postillonneurs postillonneur nom m p 0.01 0.14 0.00 0.14 +postillonnez postillonner ver 0.20 2.30 0.03 0.00 ind:pre:2p; +postillonné postillonner ver m s 0.20 2.30 0.04 0.07 par:pas; +postillons postillon nom m p 0.22 1.42 0.19 0.74 +postière postier nom f s 0.66 2.03 0.04 0.41 +postmoderne postmoderne adj s 0.08 0.07 0.08 0.07 +postmodernisme postmodernisme nom m s 0.01 0.07 0.01 0.07 +postmoderniste postmoderniste adj s 0.01 0.00 0.01 0.00 +postnatal postnatal adj m s 0.02 0.00 0.01 0.00 +postnatale postnatal adj f s 0.02 0.00 0.01 0.00 +postopératoire postopératoire adj s 0.18 0.07 0.13 0.00 +postopératoires postopératoire adj m p 0.18 0.07 0.05 0.07 +postproduction postproduction nom f s 0.02 0.00 0.02 0.00 +postsynchronisation postsynchronisation nom f s 0.00 0.07 0.00 0.07 +posté poster ver m s 9.54 10.47 1.94 2.23 par:pas; +postée poster ver f s 9.54 10.47 0.68 0.74 par:pas; +postées poster ver f p 9.54 10.47 0.14 0.54 par:pas; +postulai postuler ver 2.44 1.49 0.00 0.07 ind:pas:1s; +postulaient postuler ver 2.44 1.49 0.00 0.07 ind:imp:3p; +postulait postuler ver 2.44 1.49 0.07 0.20 ind:imp:3s; +postulant postulant nom m s 0.78 1.28 0.05 0.27 +postulante postulant nom f s 0.78 1.28 0.01 0.14 +postulantes postulant nom f p 0.78 1.28 0.04 0.27 +postulants postulant nom m p 0.78 1.28 0.68 0.61 +postulat postulat nom m s 0.17 0.95 0.14 0.61 +postulations postulation nom f p 0.00 0.07 0.00 0.07 +postulats postulat nom m p 0.17 0.95 0.03 0.34 +postule postuler ver 2.44 1.49 0.36 0.14 ind:pre:1s;ind:pre:3s; +postulent postuler ver 2.44 1.49 0.19 0.07 ind:pre:3p; +postuler postuler ver 2.44 1.49 0.88 0.54 inf; +postuleras postuler ver 2.44 1.49 0.01 0.00 ind:fut:2s; +postules postuler ver 2.44 1.49 0.04 0.00 ind:pre:2s; +postulé postuler ver m s 2.44 1.49 0.87 0.20 par:pas; +posturaux postural adj m p 0.01 0.00 0.01 0.00 +posture posture nom f s 1.30 9.46 1.26 7.84 +postures posture nom f p 1.30 9.46 0.04 1.62 +postérieur postérieur nom m s 0.90 1.35 0.73 1.01 +postérieure postérieur adj f s 0.68 1.76 0.37 0.74 +postérieurement postérieurement adv 0.03 0.27 0.03 0.27 +postérieures postérieur adj f p 0.68 1.76 0.06 0.27 +postérieurs postérieur nom m p 0.90 1.35 0.16 0.34 +postérité postérité nom f s 1.54 2.30 1.54 2.23 +postérités postérité nom f p 1.54 2.30 0.00 0.07 +postés poster ver m p 9.54 10.47 0.70 0.95 par:pas; +posé poser ver m s 217.20 409.05 28.09 69.26 par:pas; +posée poser ver f s 217.20 409.05 2.67 34.80 par:pas; +posées poser ver f p 217.20 409.05 1.13 14.39 par:pas; +posément posément adv 0.10 8.38 0.10 8.38 +posés poser ver m p 217.20 409.05 1.33 14.39 par:pas; +pot_au_feu pot_au_feu nom m 0.90 0.88 0.90 0.88 +pot_bouille pot_bouille nom m 0.01 0.00 0.01 0.00 +pot_de_vin pot_de_vin nom m s 1.22 0.41 1.22 0.41 +pot_pourri pot_pourri nom m s 0.49 0.68 0.34 0.68 +pât pâte nom m s 16.48 24.73 0.10 0.07 +pot pot nom m s 29.89 48.04 25.72 32.30 +pâtît pâtir ver 1.41 2.64 0.00 0.07 sub:imp:3s; +potable potable adj s 2.26 1.28 2.15 1.08 +potables potable adj p 2.26 1.28 0.11 0.20 +potache potache nom m s 0.09 0.54 0.08 0.47 +potaches potache nom m p 0.09 0.54 0.01 0.07 +potage potage nom m s 3.28 6.22 3.07 6.01 +potager potager nom m s 2.21 3.24 1.93 3.04 +potagers potager nom m p 2.21 3.24 0.29 0.20 +potages potage nom m p 3.28 6.22 0.21 0.20 +potagère potager adj f s 0.41 1.35 0.00 0.07 +potagères potager adj f p 0.41 1.35 0.14 0.14 +potard potard nom m s 0.00 0.68 0.00 0.68 +potassa potasser ver 0.83 0.81 0.00 0.07 ind:pas:3s; +potassait potasser ver 0.83 0.81 0.02 0.14 ind:imp:3s; +potasse potasse nom f s 0.21 0.27 0.21 0.27 +potassent potasser ver 0.83 0.81 0.00 0.07 ind:pre:3p; +potasser potasser ver 0.83 0.81 0.17 0.14 inf; +potasserai potasser ver 0.83 0.81 0.00 0.07 ind:fut:1s; +potasses potasser ver 0.83 0.81 0.11 0.00 ind:pre:2s; +potassez potasser ver 0.83 0.81 0.01 0.07 imp:pre:2p; +potassium potassium nom m s 1.68 0.47 1.68 0.47 +potassé potasser ver m s 0.83 0.81 0.37 0.14 par:pas; +pâte pâte nom f s 16.48 24.73 7.04 18.45 +pote pote nom m s 84.92 36.35 65.03 22.97 +poteau poteau nom m s 5.17 13.04 3.88 7.70 +poteaux poteau nom m p 5.17 13.04 1.28 5.34 +potelé potelé adj m s 0.79 3.38 0.33 0.54 +potelée potelé adj f s 0.79 3.38 0.38 1.22 +potelées potelé adj f p 0.79 3.38 0.06 1.15 +potelés potelé adj m p 0.79 3.38 0.02 0.47 +potence potence nom f s 3.40 2.03 3.04 1.35 +potences potence nom f p 3.40 2.03 0.35 0.68 +potencée potencé adj f s 0.00 0.07 0.00 0.07 +potentat potentat nom m s 0.12 0.41 0.10 0.34 +potentats potentat nom m p 0.12 0.41 0.02 0.07 +potentialisation potentialisation nom f s 0.01 0.00 0.01 0.00 +potentialiser potentialiser ver 0.01 0.00 0.01 0.00 inf; +potentialité potentialité nom f s 0.38 0.07 0.38 0.07 +potentiel potentiel nom m s 6.04 1.01 5.94 0.95 +potentielle potentiel adj f s 5.69 0.95 0.88 0.20 +potentiellement potentiellement adv 1.12 0.14 1.12 0.14 +potentielles potentiel adj f p 5.69 0.95 0.54 0.07 +potentiels potentiel adj m p 5.69 0.95 1.96 0.41 +potentiomètre potentiomètre nom m s 0.14 0.20 0.14 0.20 +poter poter ver 0.02 0.00 0.02 0.00 inf; +poterie poterie nom f s 0.95 4.32 0.78 1.89 +poteries poterie nom f p 0.95 4.32 0.17 2.43 +poterne poterne nom f s 0.02 2.03 0.02 1.76 +poternes poterne nom f p 0.02 2.03 0.00 0.27 +pâtes pâte nom f p 16.48 24.73 9.35 6.22 +potes pote nom m p 84.92 36.35 19.89 13.38 +pâteuse pâteux adj f s 0.08 5.07 0.06 2.84 +pâteusement pâteusement adv 0.00 0.20 0.00 0.20 +pâteuses pâteux adj f p 0.08 5.07 0.00 0.27 +pâteux pâteux adj m 0.08 5.07 0.02 1.96 +poème poème nom m s 27.03 31.22 15.98 15.95 +poèmes poème nom m p 27.03 31.22 11.05 15.27 +poète poète nom m s 22.63 35.95 16.98 23.45 +poètes poète nom m p 22.63 35.95 5.17 11.55 +pâti pâtir ver m s 1.41 2.64 0.18 0.61 par:pas; +potiche potiche nom f s 0.64 1.15 0.55 0.61 +potiches potiche nom f p 0.64 1.15 0.09 0.54 +potier potier nom m s 0.47 0.68 0.26 0.61 +potiers potier nom m p 0.47 0.68 0.20 0.07 +potimarron potimarron nom m s 0.01 0.00 0.01 0.00 +potin potin nom m s 2.02 3.85 0.61 1.55 +potinais potiner ver 0.01 0.81 0.00 0.07 ind:imp:1s; +potine potiner ver 0.01 0.81 0.01 0.20 ind:pre:3s; +potines potiner ver 0.01 0.81 0.00 0.54 ind:pre:2s; +potins potin nom m p 2.02 3.85 1.41 2.30 +potion potion nom f s 11.59 2.97 10.01 2.30 +potions potion nom f p 11.59 2.97 1.58 0.68 +pâtir pâtir ver 1.41 2.64 0.56 1.08 inf; +pâtira pâtir ver 1.41 2.64 0.28 0.14 ind:fut:3s; +pâtiraient pâtir ver 1.41 2.64 0.01 0.07 cnd:pre:3p; +pâtirait pâtir ver 1.41 2.64 0.16 0.07 cnd:pre:3s; +pâtirent pâtir ver 1.41 2.64 0.01 0.07 ind:pas:3p; +potiron potiron nom m s 1.08 0.95 0.99 0.61 +potirons potiron nom m p 1.08 0.95 0.09 0.34 +pâtiront pâtir ver 1.41 2.64 0.04 0.00 ind:fut:3p; +pâtis pâtis nom m 0.01 0.54 0.01 0.54 +pâtissaient pâtisser ver 0.38 0.88 0.00 0.07 ind:imp:3p; +pâtissais pâtisser ver 0.38 0.88 0.00 0.14 ind:imp:1s; +pâtissait pâtisser ver 0.38 0.88 0.00 0.14 ind:imp:3s; +pâtisse pâtisser ver 0.38 0.88 0.07 0.14 imp:pre:2s;ind:pre:3s; +pâtissent pâtisser ver 0.38 0.88 0.29 0.27 ind:pre:3p; +pâtisserie pâtisserie nom f s 5.10 13.11 4.20 9.32 +pâtisseries pâtisserie nom f p 5.10 13.11 0.90 3.78 +pâtisses pâtisser ver 0.38 0.88 0.01 0.07 ind:pre:2s; +pâtissez pâtisser ver 0.38 0.88 0.00 0.07 ind:pre:2p; +pâtissier pâtissier nom m s 2.37 8.51 1.81 6.49 +pâtissiers pâtissier nom m p 2.37 8.51 0.16 1.15 +pâtissière pâtissier nom f s 2.37 8.51 0.41 0.88 +pâtissons pâtir ver 1.41 2.64 0.00 0.14 ind:pre:1p; +pâtit pâtir ver 1.41 2.64 0.17 0.34 ind:pre:3s;ind:pas:3s; +potière potier nom f s 0.47 0.68 0.01 0.00 +potlatch potlatch nom m s 0.00 0.20 0.00 0.20 +poto_poto poto_poto nom m s 0.00 0.14 0.00 0.14 +pâton pâton nom m s 0.00 0.20 0.00 0.07 +pâtons pâton nom m p 0.00 0.20 0.00 0.14 +potos potos nom m 0.00 0.07 0.00 0.07 +pâtour pâtour nom m s 0.00 0.07 0.00 0.07 +pâtre pâtre nom m s 0.11 1.62 0.11 1.15 +pâtres pâtre nom m p 0.11 1.62 0.00 0.47 +potron_minet potron_minet nom m s 0.03 0.27 0.03 0.27 +pots_de_vin pots_de_vin nom m p 1.98 0.34 1.98 0.34 +pot_pourri pot_pourri nom m p 0.49 0.68 0.15 0.00 +pots pot nom m p 29.89 48.04 4.17 15.74 +pâté pâté nom m s 7.18 16.55 5.22 11.01 +pâtée pâtée nom f s 1.78 2.97 1.78 2.77 +potée potée nom f s 0.04 1.35 0.04 0.95 +pâtées pâtée nom f p 1.78 2.97 0.00 0.20 +potées potée nom f p 0.04 1.35 0.00 0.41 +pâturage pâturage nom m s 1.98 4.53 0.69 0.81 +pâturages pâturage nom m p 1.98 4.53 1.29 3.72 +pâturaient pâturer ver 0.03 0.74 0.00 0.20 ind:imp:3p; +pâture pâture nom f s 1.94 3.31 1.73 2.77 +pâturent pâturer ver 0.03 0.74 0.00 0.20 ind:pre:3p; +pâturer pâturer ver 0.03 0.74 0.01 0.34 inf; +pâtures pâture nom f p 1.94 3.31 0.22 0.54 +pâturin pâturin nom m s 0.02 0.07 0.02 0.07 +pâturé pâturer ver m s 0.03 0.74 0.01 0.00 par:pas; +pâtés pâté nom m p 7.18 16.55 1.96 5.54 +pou pou nom m s 10.41 8.51 1.92 1.42 +pouacre pouacre nom m s 0.01 0.07 0.01 0.07 +pouah pouah ono 0.89 1.82 0.89 1.82 +poubelle poubelle nom f s 21.34 22.91 14.85 10.27 +poubelles poubelle nom f p 21.34 22.91 6.49 12.64 +pouce_pied pouce_pied nom m s 0.01 0.00 0.01 0.00 +pouce pouce ono 0.50 0.54 0.50 0.54 +pouces pouce nom m p 15.72 35.34 3.83 5.47 +poucet poucet nom m s 0.84 1.08 0.84 0.95 +poucets poucet nom m p 0.84 1.08 0.00 0.14 +poucette poucettes nom f s 1.18 0.00 0.76 0.00 +poucettes poucettes nom f p 1.18 0.00 0.41 0.00 +pouding pouding nom m s 0.16 0.07 0.16 0.07 +poudingue poudingue nom m s 0.00 0.07 0.00 0.07 +poudra poudrer ver 0.95 4.32 0.00 0.14 ind:pas:3s; +poudrage poudrage nom m s 0.01 0.07 0.01 0.07 +poudraient poudrer ver 0.95 4.32 0.00 0.07 ind:imp:3p; +poudrait poudrer ver 0.95 4.32 0.00 0.34 ind:imp:3s; +poudrant poudrer ver 0.95 4.32 0.01 0.34 par:pre; +poudre poudre nom f s 23.11 30.27 22.09 27.57 +poudrent poudrer ver 0.95 4.32 0.14 0.00 ind:pre:3p; +poudrer poudrer ver 0.95 4.32 0.42 0.41 inf; +poudres poudre nom f p 23.11 30.27 1.02 2.70 +poudrette poudrette nom f s 0.00 0.07 0.00 0.07 +poudreuse poudreux nom f s 0.26 0.00 0.26 0.00 +poudreuses poudreux adj f p 0.07 3.18 0.00 0.47 +poudreux poudreux adj m 0.07 3.18 0.02 1.62 +poudrier poudrier nom m s 0.25 1.42 0.25 1.35 +poudriers poudrier nom m p 0.25 1.42 0.00 0.07 +poudrière poudrière nom f s 0.25 0.61 0.25 0.61 +poudroie poudroyer ver 0.00 0.34 0.00 0.20 ind:pre:3s; +poudroiement poudroiement nom m s 0.00 1.15 0.00 1.08 +poudroiements poudroiement nom m p 0.00 1.15 0.00 0.07 +poudroyaient poudroyer ver 0.00 0.34 0.00 0.07 ind:imp:3p; +poudroyait poudroyer ver 0.00 0.34 0.00 0.07 ind:imp:3s; +poudroyante poudroyant adj f s 0.00 0.27 0.00 0.20 +poudroyantes poudroyant adj f p 0.00 0.27 0.00 0.07 +poudré poudrer ver m s 0.95 4.32 0.19 0.81 par:pas; +poudrée poudré adj f s 0.09 2.30 0.02 0.74 +poudrées poudré adj f p 0.09 2.30 0.02 0.47 +poudrés poudré adj m p 0.09 2.30 0.02 0.47 +pouf pouf ono 0.53 0.20 0.53 0.20 +pouffa pouffer ver 0.98 9.12 0.00 1.69 ind:pas:3s; +pouffaient pouffer ver 0.98 9.12 0.00 0.74 ind:imp:3p; +pouffait pouffer ver 0.98 9.12 0.11 0.74 ind:imp:3s; +pouffant pouffer ver 0.98 9.12 0.00 1.22 par:pre; +pouffante pouffant adj f s 0.00 0.27 0.00 0.14 +pouffantes pouffant adj f p 0.00 0.27 0.00 0.07 +pouffe pouffer ver 0.98 9.12 0.41 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pouffement pouffement nom m s 0.00 0.14 0.00 0.07 +pouffements pouffement nom m p 0.00 0.14 0.00 0.07 +pouffent pouffer ver 0.98 9.12 0.27 0.27 ind:pre:3p; +pouffer pouffer ver 0.98 9.12 0.05 1.35 inf; +poufferais pouffer ver 0.98 9.12 0.00 0.14 cnd:pre:1s; +poufferait pouffer ver 0.98 9.12 0.00 0.07 cnd:pre:3s; +pouffes pouffer ver 0.98 9.12 0.14 0.00 ind:pre:2s; +pouffiasse pouffiasse nom f s 3.09 2.09 2.73 1.35 +pouffiasses pouffiasse nom f p 3.09 2.09 0.36 0.74 +pouffions pouffer ver 0.98 9.12 0.00 0.07 ind:imp:1p; +pouffons pouffer ver 0.98 9.12 0.00 0.14 ind:pre:1p; +pouffèrent pouffer ver 0.98 9.12 0.00 0.41 ind:pas:3p; +pouffé pouffer ver m s 0.98 9.12 0.00 0.34 par:pas; +poufiasse poufiasse nom f s 1.64 0.34 1.50 0.20 +poufiasses poufiasse nom f p 1.64 0.34 0.14 0.14 +poufs pouf nom m p 0.83 5.07 0.07 1.15 +pouh pouh ono 0.28 0.14 0.28 0.14 +pouic pouic ono 0.04 0.41 0.04 0.41 +pouille pouille nom f s 0.01 0.07 0.01 0.00 +pouillerie pouillerie nom f s 0.00 0.54 0.00 0.41 +pouilleries pouillerie nom f p 0.00 0.54 0.00 0.14 +pouilles pouille nom f p 0.01 0.07 0.00 0.07 +pouilleuse pouilleux adj f s 0.61 1.22 0.14 0.27 +pouilleuses pouilleux adj f p 0.61 1.22 0.00 0.07 +pouilleux pouilleux nom m 1.27 0.27 1.25 0.27 +pouillot pouillot nom m s 0.01 0.07 0.01 0.00 +pouillots pouillot nom m p 0.01 0.07 0.00 0.07 +pouillés pouillé nom m p 0.01 0.00 0.01 0.00 +pouilly pouilly nom m s 0.01 0.34 0.01 0.34 +poujadisme poujadisme nom m s 0.00 0.07 0.00 0.07 +poujadiste poujadiste nom s 0.10 0.20 0.10 0.14 +poujadistes poujadiste nom p 0.10 0.20 0.00 0.07 +poulaga poulaga nom m s 0.14 2.43 0.14 1.22 +poulagas poulaga nom m p 0.14 2.43 0.00 1.22 +poulaille poulaille nom f s 0.26 0.41 0.26 0.41 +poulailler poulailler nom m s 2.45 3.51 2.43 3.04 +poulaillers poulailler nom m p 2.45 3.51 0.02 0.47 +poulain poulain nom m s 3.46 3.78 3.20 3.04 +poulaine poulain nom f s 3.46 3.78 0.00 0.07 +poulaines poulain nom f p 3.46 3.78 0.00 0.07 +poulains poulain nom m p 3.46 3.78 0.26 0.61 +poularde poularde nom f s 0.16 0.54 0.16 0.27 +poulardes poularde nom f p 0.16 0.54 0.00 0.27 +poulardin poulardin nom m s 0.00 0.34 0.00 0.20 +poulardins poulardin nom m p 0.00 0.34 0.00 0.14 +poulbot poulbot nom m s 0.00 0.54 0.00 0.20 +poulbots poulbot nom m p 0.00 0.54 0.00 0.34 +poule poule nom f s 36.70 31.82 23.50 16.69 +poêle poêle nom s 5.12 19.93 4.58 17.84 +poules poule nom f p 36.70 31.82 13.21 15.14 +poêles poêle nom p 5.12 19.93 0.55 2.09 +poulet poulet nom m s 41.25 25.34 32.33 14.53 +poulets poulet nom m p 41.25 25.34 8.93 10.81 +poulette poulette nom f s 3.41 1.15 2.71 0.95 +poulettes poulette nom f p 3.41 1.15 0.70 0.20 +pouliche pouliche nom f s 1.10 2.09 0.90 1.55 +pouliches pouliche nom f p 1.10 2.09 0.20 0.54 +poulie poulie nom f s 0.83 3.11 0.57 1.49 +poulies poulie nom f p 0.83 3.11 0.27 1.62 +poulinière poulinière adj f s 0.14 0.07 0.14 0.07 +poêlon poêlon nom m s 0.16 0.41 0.16 0.41 +poulot poulot nom m s 0.00 0.20 0.00 0.07 +poulots poulot nom m p 0.00 0.20 0.00 0.14 +poulottant poulotter ver 0.00 0.14 0.00 0.07 par:pre; +poulotter poulotter ver 0.00 0.14 0.00 0.07 inf; +poulpe poulpe nom m s 1.77 3.11 1.48 1.22 +poulpes poulpe nom m p 1.77 3.11 0.29 1.89 +pouls pouls nom m 15.64 5.54 15.64 5.54 +poêlées poêler ver f p 0.10 0.14 0.10 0.07 par:pas; +poumon poumon nom m s 16.65 21.55 4.55 3.58 +poumons poumon nom m p 16.65 21.55 12.09 17.97 +pound pound nom m s 0.20 0.07 0.03 0.00 +pounds pound nom m p 0.20 0.07 0.16 0.07 +poupard poupard nom m s 0.00 0.68 0.00 0.47 +poupards poupard nom m p 0.00 0.68 0.00 0.20 +poupe poupe nom f s 1.30 2.97 1.30 2.97 +poupin poupin adj m s 0.00 1.55 0.00 1.35 +poupine poupin adj f s 0.00 1.55 0.00 0.20 +poupon poupon nom m s 0.33 2.77 0.33 2.30 +pouponnage pouponnage nom m s 0.04 0.07 0.04 0.07 +pouponne pouponner ver 0.21 0.54 0.03 0.00 ind:pre:3s; +pouponnent pouponner ver 0.21 0.54 0.00 0.07 ind:pre:3p; +pouponner pouponner ver 0.21 0.54 0.14 0.47 inf; +pouponnière pouponnière nom f s 0.23 0.20 0.20 0.14 +pouponnières pouponnière nom f p 0.23 0.20 0.03 0.07 +pouponné pouponner ver m s 0.21 0.54 0.04 0.00 par:pas; +poupons poupon nom m p 0.33 2.77 0.00 0.47 +poupoule poupoule nom f s 0.10 0.74 0.10 0.74 +poupée poupée nom f s 27.59 27.57 22.05 18.58 +poupées poupée nom f p 27.59 27.57 5.54 8.99 +pour_cent pour_cent nom m 0.56 0.00 0.56 0.00 +pour pour pre 7078.55 6198.24 7078.55 6198.24 +pourboire pourboire nom m s 8.77 8.24 6.00 5.20 +pourboires pourboire nom m p 8.77 8.24 2.77 3.04 +pourceau pourceau nom m s 0.74 0.95 0.30 0.34 +pourceaux pourceau nom m p 0.74 0.95 0.44 0.61 +pourcent pourcent nom m s 0.45 0.00 0.35 0.00 +pourcentage pourcentage nom m s 4.75 2.43 3.83 1.76 +pourcentages pourcentage nom m p 4.75 2.43 0.93 0.68 +pourcents pourcent nom m p 0.45 0.00 0.10 0.00 +pourchas pourchas nom m 0.00 0.27 0.00 0.27 +pourchassa pourchasser ver 4.66 4.93 0.01 0.34 ind:pas:3s; +pourchassaient pourchasser ver 4.66 4.93 0.08 0.47 ind:imp:3p; +pourchassais pourchasser ver 4.66 4.93 0.07 0.07 ind:imp:1s;ind:imp:2s; +pourchassait pourchasser ver 4.66 4.93 0.14 0.81 ind:imp:3s; +pourchassant pourchasser ver 4.66 4.93 0.14 0.41 par:pre; +pourchasse pourchasser ver 4.66 4.93 0.65 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pourchassent pourchasser ver 4.66 4.93 0.34 0.27 ind:pre:3p; +pourchasser pourchasser ver 4.66 4.93 0.82 0.27 inf; +pourchassera pourchasser ver 4.66 4.93 0.16 0.00 ind:fut:3s; +pourchasserai pourchasser ver 4.66 4.93 0.02 0.00 ind:fut:1s; +pourchasseraient pourchasser ver 4.66 4.93 0.02 0.00 cnd:pre:3p; +pourchasserait pourchasser ver 4.66 4.93 0.03 0.00 cnd:pre:3s; +pourchasserons pourchasser ver 4.66 4.93 0.02 0.00 ind:fut:1p; +pourchasseront pourchasser ver 4.66 4.93 0.09 0.00 ind:fut:3p; +pourchasseur pourchasseur nom m s 0.00 0.07 0.00 0.07 +pourchassez pourchasser ver 4.66 4.93 0.31 0.00 imp:pre:2p;ind:pre:2p; +pourchassons pourchasser ver 4.66 4.93 0.07 0.00 imp:pre:1p;ind:pre:1p; +pourchassèrent pourchasser ver 4.66 4.93 0.00 0.07 ind:pas:3p; +pourchassé pourchasser ver m s 4.66 4.93 1.23 0.81 par:pas; +pourchassée pourchasser ver f s 4.66 4.93 0.26 0.20 par:pas; +pourchassées pourchasser ver f p 4.66 4.93 0.01 0.14 par:pas; +pourchassés pourchasser ver m p 4.66 4.93 0.17 0.81 par:pas; +pourcif pourcif nom m s 0.00 0.07 0.00 0.07 +pourfendait pourfendre ver 0.10 1.01 0.00 0.07 ind:imp:3s; +pourfendant pourfendre ver 0.10 1.01 0.00 0.20 par:pre; +pourfende pourfendre ver 0.10 1.01 0.00 0.07 sub:pre:3s; +pourfendeur pourfendeur nom m s 0.16 0.14 0.16 0.14 +pourfendions pourfendre ver 0.10 1.01 0.00 0.07 ind:imp:1p; +pourfendre pourfendre ver 0.10 1.01 0.04 0.54 inf; +pourfends pourfendre ver 0.10 1.01 0.02 0.00 imp:pre:2s;ind:pre:1s; +pourfendu pourfendre ver m s 0.10 1.01 0.04 0.07 par:pas; +pourim pourim nom m s 0.68 0.27 0.68 0.27 +pourliche pourliche nom m s 0.07 1.76 0.06 0.81 +pourliches pourliche nom m p 0.07 1.76 0.01 0.95 +pourlèche pourlécher ver 0.10 1.35 0.10 0.27 imp:pre:2s;ind:pre:3s; +pourlèchent pourlécher ver 0.10 1.35 0.00 0.20 ind:pre:3p; +pourléchaient pourlécher ver 0.10 1.35 0.00 0.20 ind:imp:3p; +pourléchait pourlécher ver 0.10 1.35 0.00 0.20 ind:imp:3s; +pourléchant pourlécher ver 0.10 1.35 0.00 0.27 par:pre; +pourlécher pourlécher ver 0.10 1.35 0.00 0.14 inf; +pourléchée pourlécher ver f s 0.10 1.35 0.00 0.07 par:pas; +pourparler pourparler nom m s 0.15 0.07 0.15 0.07 +pourparlers pourparlers nom m p 0.96 2.23 0.96 2.23 +pourpier pourpier nom m s 0.00 0.20 0.00 0.14 +pourpiers pourpier nom m p 0.00 0.20 0.00 0.07 +pourpoint pourpoint nom m s 0.59 1.49 0.59 1.15 +pourpoints pourpoint nom m p 0.59 1.49 0.00 0.34 +pourpre pourpre adj s 2.25 6.82 1.35 4.73 +pourpres pourpre adj p 2.25 6.82 0.90 2.09 +pourpré pourpré adj m s 0.01 0.14 0.01 0.00 +pourprée pourpré adj f s 0.01 0.14 0.00 0.14 +pourprées pourprer ver f p 0.00 0.14 0.00 0.07 par:pas; +pourquoi pourquoi con 655.75 297.64 655.75 297.64 +pourra pouvoir ver_sup 5524.52 2659.80 85.18 37.36 ind:fut:3s; +pourrai pouvoir ver_sup 5524.52 2659.80 46.71 23.11 ind:fut:1s; +pourraient pouvoir ver_sup 5524.52 2659.80 32.66 26.62 cnd:pre:3p; +pourrais pouvoir ver_sup 5524.52 2659.80 247.90 64.93 cnd:pre:1s;cnd:pre:2s; +pourrait pouvoir ver_sup 5524.52 2659.80 313.54 159.32 cnd:pre:3s; +pourras pouvoir ver_sup 5524.52 2659.80 44.35 10.00 ind:fut:2s; +pourrez pouvoir ver_sup 5524.52 2659.80 38.28 11.08 ind:fut:2p; +pourri pourri adj m s 18.09 22.84 9.23 8.18 +pourrie pourri adj f s 18.09 22.84 4.95 6.89 +pourries pourri adj f p 18.09 22.84 1.49 4.39 +pourriez pouvoir ver_sup 5524.52 2659.80 82.51 12.09 cnd:pre:2p; +pourrions pouvoir ver_sup 5524.52 2659.80 24.56 12.23 cnd:pre:1p; +pourrir pourrir ver 22.64 21.89 5.79 5.95 inf; +pourrira pourrir ver 22.64 21.89 0.25 0.27 ind:fut:3s; +pourrirai pourrir ver 22.64 21.89 0.30 0.07 ind:fut:1s; +pourrirait pourrir ver 22.64 21.89 0.03 0.07 cnd:pre:3s; +pourriras pourrir ver 22.64 21.89 0.31 0.07 ind:fut:2s; +pourrirent pourrir ver 22.64 21.89 0.00 0.20 ind:pas:3p; +pourrirez pourrir ver 22.64 21.89 0.22 0.00 ind:fut:2p; +pourririez pourrir ver 22.64 21.89 0.14 0.00 cnd:pre:2p; +pourrirons pourrir ver 22.64 21.89 0.02 0.00 ind:fut:1p; +pourriront pourrir ver 22.64 21.89 0.17 0.27 ind:fut:3p; +pourris pourri adj m p 18.09 22.84 2.42 3.38 +pourrissaient pourrir ver 22.64 21.89 0.00 1.49 ind:imp:3p; +pourrissais pourrir ver 22.64 21.89 0.02 0.07 ind:imp:1s; +pourrissait pourrir ver 22.64 21.89 0.18 1.22 ind:imp:3s; +pourrissant pourrissant adj m s 0.26 2.30 0.06 0.81 +pourrissante pourrissant adj f s 0.26 2.30 0.14 0.34 +pourrissantes pourrissant adj f p 0.26 2.30 0.04 0.47 +pourrissants pourrissant adj m p 0.26 2.30 0.02 0.68 +pourrisse pourrir ver 22.64 21.89 1.23 0.20 sub:pre:1s;sub:pre:3s; +pourrissement pourrissement nom m s 0.46 0.88 0.46 0.88 +pourrissent pourrir ver 22.64 21.89 0.84 1.42 ind:pre:3p; +pourrisseur pourrisseur adj m s 0.00 0.07 0.00 0.07 +pourrissez pourrir ver 22.64 21.89 0.20 0.00 imp:pre:2p;ind:pre:2p; +pourrissoir pourrissoir nom m s 0.00 0.41 0.00 0.41 +pourrissons pourrir ver 22.64 21.89 0.03 0.00 imp:pre:1p;ind:pre:1p; +pourrit pourrir ver 22.64 21.89 2.13 1.62 ind:pre:3s;ind:pas:3s; +pourriture pourriture nom f s 4.36 6.89 3.93 6.55 +pourritures pourriture nom f p 4.36 6.89 0.43 0.34 +pourrons pouvoir ver_sup 5524.52 2659.80 15.15 6.08 ind:fut:1p; +pourront pouvoir ver_sup 5524.52 2659.80 12.79 11.35 ind:fut:3p; +poursuis poursuivre ver 64.84 106.42 4.58 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +poursuit poursuivre ver 64.84 106.42 10.56 13.45 ind:pre:3s; +poursuite poursuite nom f s 11.03 15.47 6.92 12.36 +poursuites poursuite nom f p 11.03 15.47 4.11 3.11 +poursuivîmes poursuivre ver 64.84 106.42 0.01 0.07 ind:pas:1p; +poursuivît poursuivre ver 64.84 106.42 0.00 0.14 sub:imp:3s; +poursuivaient poursuivre ver 64.84 106.42 0.68 5.81 ind:imp:3p; +poursuivais poursuivre ver 64.84 106.42 0.34 0.95 ind:imp:1s;ind:imp:2s; +poursuivait poursuivre ver 64.84 106.42 2.43 15.41 ind:imp:3s; +poursuivant poursuivre ver 64.84 106.42 0.90 5.14 par:pre; +poursuivante poursuivant nom f s 0.74 2.43 0.01 0.07 +poursuivants poursuivant nom m p 0.74 2.43 0.41 1.82 +poursuive poursuivre ver 64.84 106.42 0.63 0.68 sub:pre:1s;sub:pre:3s; +poursuivent poursuivre ver 64.84 106.42 2.77 3.11 ind:pre:3p; +poursuives poursuivre ver 64.84 106.42 0.04 0.00 sub:pre:2s; +poursuiveurs poursuiveur nom m p 0.01 0.00 0.01 0.00 +poursuivez poursuivre ver 64.84 106.42 4.81 0.20 imp:pre:2p;ind:pre:2p; +poursuivi poursuivre ver m s 64.84 106.42 6.88 9.59 par:pas; +poursuivie poursuivre ver f s 64.84 106.42 2.40 2.91 par:pas; +poursuivies poursuivre ver f p 64.84 106.42 0.01 0.47 par:pas; +poursuiviez poursuivre ver 64.84 106.42 0.32 0.07 ind:imp:2p; +poursuivions poursuivre ver 64.84 106.42 0.11 0.68 ind:imp:1p; +poursuivirent poursuivre ver 64.84 106.42 0.26 1.35 ind:pas:3p; +poursuivis poursuivre ver m p 64.84 106.42 1.62 3.65 ind:pas:1s;par:pas; +poursuivit poursuivre ver 64.84 106.42 0.72 15.14 ind:pas:3s; +poursuivons poursuivre ver 64.84 106.42 2.50 0.88 imp:pre:1p;ind:pre:1p; +poursuivra poursuivre ver 64.84 106.42 1.45 0.68 ind:fut:3s; +poursuivrai poursuivre ver 64.84 106.42 1.08 0.20 ind:fut:1s; +poursuivraient poursuivre ver 64.84 106.42 0.17 0.20 cnd:pre:3p; +poursuivrais poursuivre ver 64.84 106.42 0.31 0.34 cnd:pre:1s;cnd:pre:2s; +poursuivrait poursuivre ver 64.84 106.42 0.43 1.08 cnd:pre:3s; +poursuivras poursuivre ver 64.84 106.42 0.07 0.00 ind:fut:2s; +poursuivre poursuivre ver 64.84 106.42 17.35 22.23 imp:pre:2p;ind:pre:2p;inf; +poursuivrez poursuivre ver 64.84 106.42 0.05 0.07 ind:fut:2p; +poursuivrions poursuivre ver 64.84 106.42 0.01 0.14 cnd:pre:1p; +poursuivrons poursuivre ver 64.84 106.42 0.96 0.14 ind:fut:1p; +poursuivront poursuivre ver 64.84 106.42 0.36 0.07 ind:fut:3p; +pourtant pourtant adv_sup 95.80 375.68 95.80 375.68 +pourtour pourtour nom m s 0.09 2.84 0.09 2.57 +pourtours pourtour nom m p 0.09 2.84 0.00 0.27 +pourvoi pourvoi nom m s 0.31 0.07 0.31 0.00 +pourvoie pourvoir ver 21.48 33.78 0.02 0.00 sub:pre:3s; +pourvoient pourvoir ver 21.48 33.78 0.15 0.07 ind:pre:3p; +pourvoir pourvoir ver 21.48 33.78 1.25 2.57 inf; +pourvoira pourvoir ver 21.48 33.78 0.32 0.14 ind:fut:3s; +pourvoirai pourvoir ver 21.48 33.78 0.14 0.00 ind:fut:1s; +pourvoiraient pourvoir ver 21.48 33.78 0.00 0.07 cnd:pre:3p; +pourvoirait pourvoir ver 21.48 33.78 0.04 0.07 cnd:pre:3s; +pourvoirons pourvoir ver 21.48 33.78 0.00 0.07 ind:fut:1p; +pourvoiront pourvoir ver 21.48 33.78 0.01 0.07 ind:fut:3p; +pourvois pourvoir ver 21.48 33.78 0.04 0.00 ind:pre:1s;ind:pre:2s; +pourvoit pourvoir ver 21.48 33.78 0.45 0.14 ind:pre:3s; +pourvoyaient pourvoir ver 21.48 33.78 0.10 0.14 ind:imp:3p; +pourvoyait pourvoir ver 21.48 33.78 0.01 0.34 ind:imp:3s; +pourvoyant pourvoir ver 21.48 33.78 0.01 0.07 par:pre; +pourvoyeur pourvoyeur nom m s 0.52 1.35 0.47 0.74 +pourvoyeurs pourvoyeur nom m p 0.52 1.35 0.04 0.41 +pourvoyeuse pourvoyeur nom f s 0.52 1.35 0.01 0.20 +pourvoyons pourvoir ver 21.48 33.78 0.01 0.00 ind:pre:1p; +pourvu pourvoir ver m s 21.48 33.78 18.50 24.59 par:pas; +pourvue pourvoir ver f s 21.48 33.78 0.24 1.89 par:pas; +pourvues pourvoir ver f p 21.48 33.78 0.02 1.15 par:pas; +pourvus pourvoir ver m p 21.48 33.78 0.18 2.30 par:pas; +pourvut pourvoir ver 21.48 33.78 0.00 0.14 ind:pas:3s; +poésie poésie nom f s 19.07 21.89 17.56 19.86 +poésies poésie nom f p 19.07 21.89 1.52 2.03 +poussa pousser ver 125.61 288.92 0.98 37.64 ind:pas:3s; +poussah poussah nom m s 0.00 0.27 0.00 0.27 +poussai pousser ver 125.61 288.92 0.02 4.26 ind:pas:1s; +poussaient pousser ver 125.61 288.92 0.45 12.91 ind:imp:3p; +poussais pousser ver 125.61 288.92 0.46 2.30 ind:imp:1s;ind:imp:2s; +poussait pousser ver 125.61 288.92 2.59 33.78 ind:imp:3s; +poussant pousser ver 125.61 288.92 1.83 30.61 par:pre; +poussas pousser ver 125.61 288.92 0.00 0.07 ind:pas:2s; +pousse_au_crime pousse_au_crime nom m 0.02 0.07 0.02 0.07 +pousse_café pousse_café nom m 0.13 0.68 0.13 0.68 +pousse_cailloux pousse_cailloux nom m s 0.00 0.07 0.00 0.07 +pousse_pousse pousse_pousse nom m 1.43 0.41 1.43 0.41 +pousse pousser ver 125.61 288.92 29.60 41.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +poussent pousser ver 125.61 288.92 5.17 10.00 ind:pre:3p;sub:pre:3p; +pousser pousser ver 125.61 288.92 27.51 45.68 inf; +poussera pousser ver 125.61 288.92 1.25 1.01 ind:fut:3s; +pousserai pousser ver 125.61 288.92 0.50 0.20 ind:fut:1s; +pousseraient pousser ver 125.61 288.92 0.19 0.68 cnd:pre:3p; +pousserais pousser ver 125.61 288.92 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +pousserait pousser ver 125.61 288.92 0.35 2.09 cnd:pre:3s; +pousseras pousser ver 125.61 288.92 0.04 0.14 ind:fut:2s; +pousserez pousser ver 125.61 288.92 0.04 0.07 ind:fut:2p; +pousseriez pousser ver 125.61 288.92 0.02 0.00 cnd:pre:2p; +pousserions pousser ver 125.61 288.92 0.01 0.07 cnd:pre:1p; +pousserons pousser ver 125.61 288.92 0.09 0.00 ind:fut:1p; +pousseront pousser ver 125.61 288.92 0.36 0.14 ind:fut:3p; +pousses pousser ver 125.61 288.92 5.63 1.35 ind:pre:2s; +poussette poussette nom f s 1.96 2.43 1.83 1.96 +poussettes poussette nom f p 1.96 2.43 0.13 0.47 +pousseur pousseur nom m s 0.04 0.34 0.02 0.20 +pousseurs pousseur nom m p 0.04 0.34 0.02 0.14 +poussez pousser ver 125.61 288.92 21.60 1.69 imp:pre:2p;ind:pre:2p; +poussier poussier nom m s 0.00 0.81 0.00 0.81 +poussiez pousser ver 125.61 288.92 0.10 0.07 ind:imp:2p; +poussif poussif adj m s 0.13 3.58 0.02 1.55 +poussifs poussif adj m p 0.13 3.58 0.00 0.95 +poussin poussin nom m s 7.50 3.04 5.81 1.55 +poussine poussine nom f s 0.00 0.07 0.00 0.07 +poussinière poussinière nom f s 0.00 0.07 0.00 0.07 +poussins poussin nom m p 7.50 3.04 1.69 1.49 +poussions pousser ver 125.61 288.92 0.19 0.61 ind:imp:1p; +poussière poussière nom f s 24.40 78.45 22.77 73.38 +poussières poussière nom f p 24.40 78.45 1.63 5.07 +poussiéreuse poussiéreux adj f s 2.02 16.55 0.76 4.53 +poussiéreuses poussiéreux adj f p 2.02 16.55 0.14 3.24 +poussiéreux poussiéreux adj m 2.02 16.55 1.12 8.78 +poussive poussif adj f s 0.13 3.58 0.10 0.88 +poussivement poussivement adv 0.00 0.14 0.00 0.14 +poussives poussif adj f p 0.13 3.58 0.01 0.20 +poussoir poussoir nom m s 0.02 0.07 0.02 0.07 +poussâmes pousser ver 125.61 288.92 0.00 0.41 ind:pas:1p; +poussons pousser ver 125.61 288.92 0.67 0.41 imp:pre:1p;ind:pre:1p; +poussât pousser ver 125.61 288.92 0.00 0.68 sub:imp:3s; +poussèrent pousser ver 125.61 288.92 0.24 3.85 ind:pas:3p; +poussé pousser ver m s 125.61 288.92 18.46 42.03 par:pas; +poussée pousser ver f s 125.61 288.92 4.63 8.24 par:pas; +poussées pousser ver f p 125.61 288.92 0.43 1.15 par:pas; +poussés pousser ver m p 125.61 288.92 1.92 4.93 par:pas; +poutargue poutargue nom f s 0.00 0.07 0.00 0.07 +poétesse poète nom f s 22.63 35.95 0.48 0.95 +poétesses poétesse nom f p 0.02 0.00 0.02 0.00 +poéticien poéticien nom m s 0.00 0.07 0.00 0.07 +poutine poutine adj f s 0.06 0.00 0.06 0.00 +poétique poétique adj s 2.60 8.11 2.34 6.15 +poétiquement poétiquement adv 0.04 0.47 0.04 0.47 +poétiques poétique adj p 2.60 8.11 0.26 1.96 +poétisait poétiser ver 0.00 0.41 0.00 0.07 ind:imp:3s; +poétisant poétiser ver 0.00 0.41 0.00 0.07 par:pre; +poétise poétiser ver 0.00 0.41 0.00 0.14 imp:pre:2s;ind:pre:3s; +poétiser poétiser ver 0.00 0.41 0.00 0.07 inf; +poétisez poétiser ver 0.00 0.41 0.00 0.07 imp:pre:2p; +poutou poutou nom m s 0.06 0.34 0.06 0.34 +poutrages poutrage nom m p 0.00 0.07 0.00 0.07 +poutraison poutraison nom f s 0.00 0.14 0.00 0.14 +poutre poutre nom f s 2.04 15.74 1.38 5.34 +poutrelle poutrelle nom f s 0.30 2.03 0.06 0.41 +poutrelles poutrelle nom f p 0.30 2.03 0.24 1.62 +poutres poutre nom f p 2.04 15.74 0.66 10.41 +pouvaient pouvoir ver_sup 5524.52 2659.80 15.50 67.16 ind:imp:3p; +pouvais pouvoir ver_sup 5524.52 2659.80 122.61 113.24 ind:imp:1s;ind:imp:2s; +pouvait pouvoir ver_sup 5524.52 2659.80 108.02 445.00 ind:imp:3s; +pouvant pouvoir ver_sup 5524.52 2659.80 4.43 18.65 par:pre; +pouvez pouvoir ver_sup 5524.52 2659.80 353.43 53.11 ind:pre:2p; +pouviez pouvoir ver_sup 5524.52 2659.80 17.64 4.59 ind:imp:2p; +pouvions pouvoir ver_sup 5524.52 2659.80 6.86 14.73 ind:imp:1p; +pouvoir pouvoir ver_sup 5524.52 2659.80 134.56 114.39 inf; +pouvoirs pouvoir nom_sup m p 117.87 107.91 28.36 21.42 +pouvons pouvoir ver_sup 5524.52 2659.80 82.09 21.01 ind:pre:1p; +poux pou nom m p 10.41 8.51 8.49 7.09 +pouzzolane pouzzolane nom f s 0.00 0.14 0.00 0.14 +prîmes prendre ver 1913.83 1466.42 0.22 2.77 ind:pas:1p; +prît prendre ver 1913.83 1466.42 0.24 6.42 sub:imp:3s; +prônais prôner ver 1.34 1.49 0.01 0.00 ind:imp:2s; +prônait prôner ver 1.34 1.49 0.15 0.61 ind:imp:3s; +prônant prôner ver 1.34 1.49 0.13 0.20 par:pre; +prône prôner ver 1.34 1.49 0.46 0.27 ind:pre:1s;ind:pre:3s; +prônent prôner ver 1.34 1.49 0.18 0.07 ind:pre:3p; +prôner prôner ver 1.34 1.49 0.10 0.00 inf; +prônera prôner ver 1.34 1.49 0.01 0.00 ind:fut:3s; +prônerez prôner ver 1.34 1.49 0.01 0.00 ind:fut:2p; +prônes prôner ver 1.34 1.49 0.05 0.00 ind:pre:2s; +prôneur prôneur nom m s 0.00 0.07 0.00 0.07 +prônez prôner ver 1.34 1.49 0.05 0.00 ind:pre:2p; +prônons prôner ver 1.34 1.49 0.02 0.00 imp:pre:1p;ind:pre:1p; +prôné prôner ver m s 1.34 1.49 0.03 0.07 par:pas; +prônée prôner ver f s 1.34 1.49 0.14 0.14 par:pas; +prônées prôner ver f p 1.34 1.49 0.00 0.07 par:pas; +prônés prôner ver m p 1.34 1.49 0.00 0.07 par:pas; +practice practice nom m s 0.15 0.00 0.15 0.00 +pradelle pradelle nom f s 0.00 6.08 0.00 6.08 +praesidium praesidium nom m s 0.10 0.14 0.10 0.14 +pragmatique pragmatique adj s 0.51 0.41 0.43 0.34 +pragmatiquement pragmatiquement adv 0.01 0.00 0.01 0.00 +pragmatiques pragmatique adj f p 0.51 0.41 0.08 0.07 +pragmatisme pragmatisme nom m s 0.24 0.27 0.24 0.27 +pragmatiste pragmatiste nom s 0.01 0.07 0.01 0.07 +praire praire nom f s 0.13 0.20 0.01 0.07 +praires praire nom f p 0.13 0.20 0.12 0.14 +prairial prairial nom m s 0.00 0.20 0.00 0.20 +prairie prairie nom f s 3.44 19.66 2.38 9.80 +prairies prairie nom f p 3.44 19.66 1.06 9.86 +praline praline nom f s 0.87 1.76 0.41 0.47 +pralines praline nom f p 0.87 1.76 0.46 1.28 +praliné praliné adj m s 0.05 0.20 0.05 0.07 +pralinés praliné adj m p 0.05 0.20 0.00 0.14 +prang prang nom m s 0.11 0.07 0.11 0.07 +praticable praticable adj s 0.48 1.28 0.30 1.01 +praticables praticable adj p 0.48 1.28 0.18 0.27 +praticien praticien nom m s 0.57 1.76 0.30 1.35 +praticienne praticien nom f s 0.57 1.76 0.00 0.14 +praticiens praticien nom m p 0.57 1.76 0.26 0.27 +pratiqua pratiquer ver 13.87 24.59 0.02 0.34 ind:pas:3s; +pratiquai pratiquer ver 13.87 24.59 0.00 0.07 ind:pas:1s; +pratiquaient pratiquer ver 13.87 24.59 0.64 1.42 ind:imp:3p; +pratiquais pratiquer ver 13.87 24.59 0.11 0.61 ind:imp:1s; +pratiquait pratiquer ver 13.87 24.59 0.34 3.65 ind:imp:3s; +pratiquant pratiquant adj m s 0.75 0.88 0.56 0.54 +pratiquante pratiquant adj f s 0.75 0.88 0.13 0.34 +pratiquants pratiquant nom m p 0.22 0.34 0.09 0.07 +pratique pratique adj s 13.18 16.69 11.00 10.54 +pratiquement pratiquement adv 14.68 17.03 14.68 17.03 +pratiquent pratiquer ver 13.87 24.59 1.22 0.95 ind:pre:3p; +pratiquer pratiquer ver 13.87 24.59 3.65 4.53 inf; +pratiquera pratiquer ver 13.87 24.59 0.02 0.07 ind:fut:3s; +pratiquerai pratiquer ver 13.87 24.59 0.04 0.00 ind:fut:1s; +pratiquerais pratiquer ver 13.87 24.59 0.00 0.07 cnd:pre:1s; +pratiquerait pratiquer ver 13.87 24.59 0.00 0.07 cnd:pre:3s; +pratiquerons pratiquer ver 13.87 24.59 0.03 0.00 ind:fut:1p; +pratiques pratique nom p 10.15 15.00 2.55 3.58 +pratiquez pratiquer ver 13.87 24.59 0.89 0.47 imp:pre:2p;ind:pre:2p; +pratiquiez pratiquer ver 13.87 24.59 0.03 0.14 ind:imp:2p; +pratiquions pratiquer ver 13.87 24.59 0.02 0.14 ind:imp:1p; +pratiquons pratiquer ver 13.87 24.59 0.25 0.14 imp:pre:1p;ind:pre:1p; +pratiquât pratiquer ver 13.87 24.59 0.00 0.07 sub:imp:3s; +pratiquèrent pratiquer ver 13.87 24.59 0.00 0.07 ind:pas:3p; +pratiqué pratiquer ver m s 13.87 24.59 1.87 3.31 par:pas; +pratiquée pratiquer ver f s 13.87 24.59 0.54 1.76 par:pas; +pratiquées pratiquer ver f p 13.87 24.59 0.19 0.88 par:pas; +pratiqués pratiquer ver m p 13.87 24.59 0.12 0.81 par:pas; +praxie praxie nom f s 0.10 0.00 0.10 0.00 +premier_maître premier_maître nom m s 0.16 0.00 0.16 0.00 +premier_né premier_né nom m s 0.91 0.20 0.77 0.14 +premier premier adj m s 376.98 672.57 146.12 237.91 +premier_né premier_né nom m p 0.91 0.20 0.14 0.07 +premiers premier adj m p 376.98 672.57 19.36 77.70 +première_née première_née nom f s 0.11 0.00 0.11 0.00 +première premier adj f s 376.98 672.57 197.34 296.76 +premièrement premièrement adv 5.51 1.76 5.51 1.76 +premières premier adj f p 376.98 672.57 14.16 60.20 +premium premium nom m s 0.05 0.00 0.05 0.00 +prenable prenable adj m s 0.01 0.14 0.01 0.00 +prenables prenable adj f p 0.01 0.14 0.00 0.14 +prenaient prendre ver 1913.83 1466.42 3.31 30.68 ind:imp:3p; +prenais prendre ver 1913.83 1466.42 10.15 19.53 ind:imp:1s;ind:imp:2s; +prenait prendre ver 1913.83 1466.42 18.66 113.92 ind:imp:3s; +prenant prendre ver 1913.83 1466.42 6.62 48.04 par:pre; +prenante prenant adj f s 1.59 3.18 0.41 0.88 +prenantes prenant adj f p 1.59 3.18 0.02 0.34 +prenants prenant adj m p 1.59 3.18 0.02 0.07 +prend prendre ver 1913.83 1466.42 179.02 129.05 ind:pre:3s; +prendra prendre ver 1913.83 1466.42 37.82 9.66 ind:fut:3s; +prendrai prendre ver 1913.83 1466.42 27.68 5.14 ind:fut:1s; +prendraient prendre ver 1913.83 1466.42 1.24 2.57 cnd:pre:3p; +prendrais prendre ver 1913.83 1466.42 11.04 3.58 cnd:pre:1s;cnd:pre:2s; +prendrait prendre ver 1913.83 1466.42 7.91 14.80 cnd:pre:3s; +prendras prendre ver 1913.83 1466.42 7.86 2.50 ind:fut:2s; +prendre prendre ver 1913.83 1466.42 465.77 344.05 inf;;inf;;inf;; +prendrez prendre ver 1913.83 1466.42 8.49 2.64 ind:fut:2p; +prendriez prendre ver 1913.83 1466.42 1.36 0.74 cnd:pre:2p; +prendrions prendre ver 1913.83 1466.42 0.16 0.27 cnd:pre:1p; +prendrons prendre ver 1913.83 1466.42 6.12 1.49 ind:fut:1p; +prendront prendre ver 1913.83 1466.42 4.47 3.72 ind:fut:3p; +prends prendre ver 1913.83 1466.42 431.50 70.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +preneur preneur nom m s 2.21 1.62 1.97 1.42 +preneurs preneur nom m p 2.21 1.62 0.22 0.14 +preneuse preneur nom f s 2.21 1.62 0.03 0.07 +prenez prendre ver 1913.83 1466.42 175.12 25.47 imp:pre:2p;ind:pre:2p; +preniez prendre ver 1913.83 1466.42 3.58 1.62 ind:imp:2p; +prenions prendre ver 1913.83 1466.42 1.40 4.66 ind:imp:1p; +prenne prendre ver 1913.83 1466.42 21.02 16.08 sub:pre:1s;sub:pre:3s; +prennent prendre ver 1913.83 1466.42 27.90 29.12 ind:pre:3p; +prennes prendre ver 1913.83 1466.42 5.01 2.03 sub:pre:2s; +prenons prendre ver 1913.83 1466.42 20.80 7.03 imp:pre:1p;ind:pre:1p; +presbyte presbyte adj s 0.19 0.14 0.19 0.14 +presbyterium presbyterium nom m s 0.00 0.07 0.00 0.07 +presbytie presbytie nom f s 0.00 0.34 0.00 0.34 +presbytère presbytère nom m s 1.07 3.51 1.07 3.51 +presbytérien presbytérien adj m s 0.23 0.20 0.12 0.07 +presbytérienne presbytérien adj f s 0.23 0.20 0.11 0.07 +presbytériennes presbytérien adj f p 0.23 0.20 0.00 0.07 +prescience prescience nom f s 0.04 1.01 0.04 1.01 +presciente prescient adj f s 0.01 0.00 0.01 0.00 +prescription prescription nom f s 2.24 2.50 1.77 1.28 +prescriptions prescription nom f p 2.24 2.50 0.47 1.22 +prescrirait prescrire ver 8.70 12.30 0.01 0.07 cnd:pre:3s; +prescrire prescrire ver 8.70 12.30 1.72 1.62 inf; +prescris prescrire ver 8.70 12.30 0.84 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prescrit prescrire ver m s 8.70 12.30 4.49 4.12 ind:pre:3s;par:pas; +prescrite prescrire ver f s 8.70 12.30 0.34 1.01 par:pas; +prescrites prescrire ver f p 8.70 12.30 0.58 0.68 par:pas; +prescrits prescrire ver m p 8.70 12.30 0.38 0.41 par:pas; +prescrivaient prescrire ver 8.70 12.30 0.00 0.20 ind:imp:3p; +prescrivais prescrire ver 8.70 12.30 0.00 0.34 ind:imp:1s; +prescrivait prescrire ver 8.70 12.30 0.01 1.01 ind:imp:3s; +prescrivant prescrire ver 8.70 12.30 0.01 0.54 par:pre; +prescrive prescrire ver 8.70 12.30 0.17 0.07 sub:pre:1s;sub:pre:3s; +prescrivent prescrire ver 8.70 12.30 0.07 0.20 ind:pre:3p; +prescrivez prescrire ver 8.70 12.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +prescrivis prescrire ver 8.70 12.30 0.00 0.41 ind:pas:1s; +prescrivit prescrire ver 8.70 12.30 0.00 0.74 ind:pas:3s; +presqu_île presqu_île nom f s 0.16 1.49 0.16 1.35 +presqu_île presqu_île nom f p 0.16 1.49 0.00 0.14 +presque presque adv_sup 181.81 465.54 181.81 465.54 +press_book press_book nom m s 0.03 0.00 0.03 0.00 +pressa presser ver 52.28 71.01 0.03 6.35 ind:pas:3s; +pressage pressage nom m s 0.07 0.00 0.07 0.00 +pressai presser ver 52.28 71.01 0.02 0.74 ind:pas:1s; +pressaient presser ver 52.28 71.01 0.06 5.68 ind:imp:3p; +pressais presser ver 52.28 71.01 0.13 1.22 ind:imp:1s;ind:imp:2s; +pressait presser ver 52.28 71.01 0.47 10.61 ind:imp:3s; +pressant pressant adj m s 2.09 7.70 0.97 2.50 +pressante pressant adj f s 2.09 7.70 0.72 3.72 +pressantes pressant adj f p 2.09 7.70 0.04 1.22 +pressants pressant adj m p 2.09 7.70 0.36 0.27 +presse_agrumes presse_agrumes nom m 0.04 0.00 0.04 0.00 +presse_bouton presse_bouton adj f s 0.04 0.07 0.04 0.07 +presse_citron presse_citron nom m s 0.02 0.00 0.02 0.00 +presse_fruits presse_fruits nom m 0.07 0.00 0.07 0.00 +presse_papier presse_papier nom m s 0.16 0.27 0.16 0.27 +presse_papiers presse_papiers nom m 0.24 0.47 0.24 0.47 +presse_purée presse_purée nom m 0.04 0.41 0.04 0.41 +presse_raquette presse_raquette nom m s 0.00 0.07 0.00 0.07 +presse presse nom f s 45.77 41.82 45.10 40.68 +pressement pressement nom m s 0.01 0.34 0.01 0.20 +pressements pressement nom m p 0.01 0.34 0.00 0.14 +pressens pressentir ver 2.18 19.12 0.28 1.15 ind:pre:1s;ind:pre:2s; +pressent pressentir ver 2.18 19.12 0.63 3.45 ind:pre:3s; +pressentîmes pressentir ver 2.18 19.12 0.00 0.14 ind:pas:1p; +pressentît pressentir ver 2.18 19.12 0.00 0.07 sub:imp:3s; +pressentaient pressentir ver 2.18 19.12 0.00 0.34 ind:imp:3p; +pressentais pressentir ver 2.18 19.12 0.12 2.43 ind:imp:1s;ind:imp:2s; +pressentait pressentir ver 2.18 19.12 0.15 3.18 ind:imp:3s; +pressentant pressentir ver 2.18 19.12 0.00 1.96 par:pre; +pressentent pressentir ver 2.18 19.12 0.04 0.20 ind:pre:3p; +pressentez pressentir ver 2.18 19.12 0.06 0.00 ind:pre:2p; +pressenti pressentir ver m s 2.18 19.12 0.68 2.09 par:pas; +pressentie pressentir ver f s 2.18 19.12 0.01 0.41 par:pas; +pressenties pressenti adj f p 0.01 1.01 0.00 0.07 +pressentiez pressentir ver 2.18 19.12 0.04 0.00 ind:imp:2p; +pressentiment pressentiment nom m s 8.34 8.72 7.17 6.76 +pressentiments pressentiment nom m p 8.34 8.72 1.17 1.96 +pressentions pressentir ver 2.18 19.12 0.00 0.20 ind:imp:1p; +pressentir pressentir ver 2.18 19.12 0.14 2.70 inf; +pressentirez pressentir ver 2.18 19.12 0.00 0.07 ind:fut:2p; +pressentis pressentir ver m p 2.18 19.12 0.03 0.27 ind:pas:1s;par:pas; +pressentit pressentir ver 2.18 19.12 0.00 0.47 ind:pas:3s; +pressentons pressentir ver 2.18 19.12 0.01 0.00 imp:pre:1p; +presser presser ver 52.28 71.01 5.64 12.43 inf; +pressera presser ver 52.28 71.01 0.03 0.07 ind:fut:3s; +presserai presser ver 52.28 71.01 0.16 0.00 ind:fut:1s; +presseraient presser ver 52.28 71.01 0.00 0.07 cnd:pre:3p; +presserait presser ver 52.28 71.01 0.11 0.07 cnd:pre:3s; +presseront presser ver 52.28 71.01 0.00 0.07 ind:fut:3p; +presses presse nom f p 45.77 41.82 0.67 1.15 +presseur presseur adj m s 0.01 0.14 0.01 0.14 +pressez presser ver 52.28 71.01 2.46 0.54 imp:pre:2p;ind:pre:2p; +pressiez presser ver 52.28 71.01 0.01 0.00 ind:imp:2p; +pressing pressing nom m s 2.63 0.81 2.52 0.74 +pressings pressing nom m p 2.63 0.81 0.10 0.07 +pression pression nom f s 37.28 21.76 35.33 19.05 +pressionnée pressionné adj f s 0.00 0.07 0.00 0.07 +pressions pression nom f p 37.28 21.76 1.96 2.70 +pressoir pressoir nom m s 0.19 1.15 0.17 0.95 +pressoirs pressoir nom m p 0.19 1.15 0.01 0.20 +pressons presser ver 52.28 71.01 2.02 1.89 imp:pre:1p;ind:pre:1p; +pressât presser ver 52.28 71.01 0.00 0.14 sub:imp:3s; +pressèrent presser ver 52.28 71.01 0.01 0.54 ind:pas:3p; +pressé presser ver m s 52.28 71.01 17.12 12.23 par:pas; +pressée pressé adj f s 25.09 31.42 11.26 8.58 +pressées pressé adj f p 25.09 31.42 0.62 3.18 +pressurant pressurer ver 0.28 0.61 0.00 0.07 par:pre; +pressure pressurer ver 0.28 0.61 0.17 0.20 imp:pre:2s;ind:pre:3s; +pressurer pressurer ver 0.28 0.61 0.06 0.20 inf; +pressures pressurer ver 0.28 0.61 0.03 0.00 ind:pre:2s; +pressurisation pressurisation nom f s 0.38 0.00 0.38 0.00 +pressuriser pressuriser ver 0.17 0.07 0.02 0.00 inf; +pressurisez pressuriser ver 0.17 0.07 0.02 0.00 imp:pre:2p; +pressurisé pressurisé adj m s 0.60 0.00 0.14 0.00 +pressurisée pressurisé adj f s 0.60 0.00 0.27 0.00 +pressurisées pressuriser ver f p 0.17 0.07 0.00 0.07 par:pas; +pressurisés pressurisé adj m p 0.60 0.00 0.19 0.00 +pressurée pressurer ver f s 0.28 0.61 0.00 0.07 par:pas; +pressurés pressurer ver m p 0.28 0.61 0.02 0.07 par:pas; +pressés presser ver m p 52.28 71.01 4.45 4.32 par:pas; +prestance prestance nom f s 0.27 2.30 0.27 2.30 +prestataire prestataire nom s 0.34 0.07 0.12 0.00 +prestataires prestataire nom p 0.34 0.07 0.22 0.07 +prestation prestation nom f s 1.95 2.30 1.58 1.28 +prestations prestation nom f p 1.95 2.30 0.37 1.01 +preste preste adj s 0.04 2.50 0.04 1.55 +prestement prestement adv 0.09 4.05 0.09 4.05 +prestes preste adj p 0.04 2.50 0.00 0.95 +prestesse prestesse nom f s 0.00 0.61 0.00 0.61 +prestidigitateur prestidigitateur nom m s 0.51 1.89 0.48 1.55 +prestidigitateurs prestidigitateur nom m p 0.51 1.89 0.00 0.27 +prestidigitation prestidigitation nom f s 0.10 0.41 0.10 0.34 +prestidigitations prestidigitation nom f p 0.10 0.41 0.00 0.07 +prestidigitatrice prestidigitateur nom f s 0.51 1.89 0.02 0.07 +prestige prestige nom m s 2.54 16.96 2.54 14.73 +prestiges prestige nom m p 2.54 16.96 0.00 2.23 +prestigieuse prestigieux adj f s 2.03 6.35 0.65 1.22 +prestigieuses prestigieux adj f p 2.03 6.35 0.11 0.41 +prestigieux prestigieux adj m 2.03 6.35 1.27 4.73 +presto presto adv 1.18 1.22 1.18 1.22 +preuve preuve nom f s 107.54 65.34 60.79 50.54 +preuves preuve nom f p 107.54 65.34 46.75 14.80 +preux preux adj m 0.88 0.54 0.88 0.54 +pria prier ver 313.12 105.74 0.52 6.15 ind:pas:3s; +priai prier ver 313.12 105.74 0.20 1.76 ind:pas:1s; +priaient prier ver 313.12 105.74 0.34 1.01 ind:imp:3p; +priais prier ver 313.12 105.74 1.16 1.08 ind:imp:1s;ind:imp:2s; +priait prier ver 313.12 105.74 1.34 7.36 ind:imp:3s; +priant prier ver 313.12 105.74 1.61 3.31 par:pre; +priapique priapique adj m s 0.00 0.61 0.00 0.41 +priapiques priapique adj f p 0.00 0.61 0.00 0.20 +priapisme priapisme nom m s 0.17 0.14 0.17 0.14 +priasse prier ver 313.12 105.74 0.00 0.07 sub:imp:1s; +prie_dieu prie_dieu nom m 0.01 2.64 0.01 2.64 +prie prier ver 313.12 105.74 247.29 44.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +prient prier ver 313.12 105.74 1.52 1.55 ind:pre:3p; +prier prier ver 313.12 105.74 25.46 21.62 inf; +priera prier ver 313.12 105.74 0.29 0.07 ind:fut:3s; +prierai prier ver 313.12 105.74 2.83 1.22 ind:fut:1s; +prieraient prier ver 313.12 105.74 0.00 0.07 cnd:pre:3p; +prierais prier ver 313.12 105.74 0.38 0.20 cnd:pre:1s; +prierait prier ver 313.12 105.74 0.16 0.41 cnd:pre:3s; +prieras prier ver 313.12 105.74 0.51 0.34 ind:fut:2s; +prierez prier ver 313.12 105.74 0.07 0.07 ind:fut:2p; +prierons prier ver 313.12 105.74 0.42 0.14 ind:fut:1p; +prieront prier ver 313.12 105.74 0.14 0.07 ind:fut:3p; +pries prier ver 313.12 105.74 2.06 0.74 ind:pre:2s; +prieur prieur adj m s 0.38 0.95 0.38 0.95 +prieure prieur nom f s 0.29 8.85 0.00 0.14 +prieurs prieur nom m p 0.29 8.85 0.00 0.07 +prieuré prieuré nom m s 0.22 0.68 0.22 0.61 +prieurés prieuré nom m p 0.22 0.68 0.00 0.07 +priez prier ver 313.12 105.74 9.13 1.76 imp:pre:2p;ind:pre:2p; +priions prier ver 313.12 105.74 0.00 0.27 ind:imp:1p; +prima primer ver 2.01 2.09 0.83 0.74 ind:pas:3s; +primaire primaire adj s 4.95 5.54 3.98 4.26 +primaires primaire adj p 4.95 5.54 0.97 1.28 +primait primer ver 2.01 2.09 0.02 0.41 ind:imp:3s; +primal primal adj m s 0.29 0.07 0.11 0.00 +primale primal adj f s 0.29 0.07 0.18 0.07 +primant primer ver 2.01 2.09 0.01 0.07 par:pre; +primat primat nom m s 0.09 0.34 0.09 0.34 +primate primate nom m s 1.29 1.62 0.72 0.61 +primates primate nom m p 1.29 1.62 0.57 1.01 +primatologue primatologue nom s 0.01 0.00 0.01 0.00 +primauté primauté nom f s 0.01 0.95 0.01 0.95 +prime_saut prime_saut nom s 0.00 0.07 0.00 0.07 +prime_time prime_time nom m 0.41 0.00 0.41 0.00 +prime prime nom f s 17.79 8.11 10.63 7.09 +priment primer ver 2.01 2.09 0.16 0.20 ind:pre:3p; +primer primer ver 2.01 2.09 0.15 0.07 inf; +primerait primer ver 2.01 2.09 0.00 0.07 cnd:pre:3s; +primerose primerose nom f s 0.01 0.07 0.01 0.07 +primes prime nom f p 17.79 8.11 7.17 1.01 +primesautier primesautier adj m s 0.00 0.95 0.00 0.27 +primesautiers primesautier adj m p 0.00 0.95 0.00 0.07 +primesautière primesautier adj f s 0.00 0.95 0.00 0.61 +primeur primeur nom f s 0.20 1.96 0.16 1.01 +primeurs primeur nom f p 0.20 1.96 0.04 0.95 +primevère primevère nom f s 0.06 1.01 0.01 0.14 +primevères primevère nom f p 0.06 1.01 0.05 0.88 +primidi primidi nom m s 0.00 0.07 0.00 0.07 +primitif primitif adj m s 7.00 10.20 2.84 3.31 +primitifs primitif adj m p 7.00 10.20 0.87 1.28 +primitive primitif adj f s 7.00 10.20 2.08 4.59 +primitivement primitivement adv 0.02 0.54 0.02 0.54 +primitives primitif adj f p 7.00 10.20 1.22 1.01 +primitivisme primitivisme nom m s 0.10 0.14 0.10 0.14 +primo_infection primo_infection nom f s 0.00 0.07 0.00 0.07 +primo primo adv_sup 4.10 2.16 4.10 2.16 +primordial primordial adj m s 2.39 2.97 1.52 0.88 +primordiale primordial adj f s 2.39 2.97 0.63 1.82 +primordialement primordialement adv 0.00 0.41 0.00 0.41 +primordiales primordial adj f p 2.39 2.97 0.18 0.00 +primordiaux primordial adj m p 2.39 2.97 0.06 0.27 +primé primé adj m s 0.14 0.07 0.09 0.00 +primée primer ver f s 2.01 2.09 0.05 0.07 par:pas; +primées primer ver f p 2.01 2.09 0.02 0.00 par:pas; +primés primé adj m p 0.14 0.07 0.03 0.00 +prin prin nom m s 0.10 0.14 0.10 0.14 +prince_de_galles prince_de_galles nom m 0.00 0.27 0.00 0.27 +prince_évêque prince_évêque nom m s 0.00 0.14 0.00 0.14 +prince prince nom m s 96.42 101.22 44.83 65.61 +princeps princeps adj f p 0.00 0.07 0.00 0.07 +princes prince nom m p 96.42 101.22 5.29 11.08 +princesse prince nom f s 96.42 101.22 46.31 21.01 +princesses princesse nom f p 2.48 0.00 2.48 0.00 +princier princier adj m s 0.59 3.65 0.22 1.08 +princiers princier adj m p 0.59 3.65 0.02 0.74 +principal principal adj m s 36.68 38.92 17.53 15.81 +principale principal adj f s 36.68 38.92 10.68 12.30 +principalement principalement adv 3.60 6.08 3.60 6.08 +principales principal adj f p 36.68 38.92 3.35 3.65 +principat principat nom m s 0.00 0.34 0.00 0.34 +principauté principauté nom f s 0.25 1.01 0.20 0.81 +principautés principauté nom f p 0.25 1.01 0.05 0.20 +principaux principal adj m p 36.68 38.92 5.12 7.16 +principe principe nom m s 26.36 47.57 15.62 30.88 +principes principe nom m p 26.36 47.57 10.75 16.69 +princière princier adj f s 0.59 3.65 0.35 1.28 +princièrement princièrement adv 0.11 0.20 0.11 0.20 +princières princier adj f p 0.59 3.65 0.00 0.54 +printanier printanier adj m s 0.66 4.32 0.33 1.89 +printaniers printanier adj m p 0.66 4.32 0.11 0.81 +printanière printanier adj f s 0.66 4.32 0.21 1.35 +printanières printanier adj f p 0.66 4.32 0.02 0.27 +printemps printemps nom m 27.85 60.88 27.85 60.88 +priâmes prier ver 313.12 105.74 0.00 0.14 ind:pas:1p; +prion prion nom m s 3.11 0.54 0.43 0.00 +prions prier ver 313.12 105.74 6.14 1.49 imp:pre:1p;ind:pre:1p; +prioritaire prioritaire adj s 3.07 0.54 2.43 0.34 +prioritaires prioritaire adj p 3.07 0.54 0.64 0.20 +priorité priorité nom f s 12.15 4.80 8.84 4.53 +priorités priorité nom f p 12.15 4.80 3.31 0.27 +priât prier ver 313.12 105.74 0.00 0.27 sub:imp:3s; +prirent prendre ver 1913.83 1466.42 0.80 15.20 ind:pas:3p; +pris prendre ver m 1913.83 1466.42 374.60 333.04 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +prisa priser ver 2.59 5.20 0.02 0.07 ind:pas:3s; +prisaient priser ver 2.59 5.20 0.00 0.14 ind:imp:3p; +prisait priser ver 2.59 5.20 0.10 0.61 ind:imp:3s; +prisant priser ver 2.59 5.20 0.00 0.07 par:pre; +prise prendre ver f s 1913.83 1466.42 38.26 42.64 par:pas; +prisent priser ver 2.59 5.20 0.14 0.14 ind:pre:3p; +priser priser ver 2.59 5.20 0.06 0.81 inf; +prises prendre ver f p 1913.83 1466.42 8.42 12.16 par:pas; +priseur priseur nom m s 0.01 0.14 0.01 0.07 +priseurs priseur nom m p 0.01 0.14 0.00 0.07 +prisez priser ver 2.59 5.20 0.00 0.07 imp:pre:2p; +prismatique prismatique adj m s 0.02 0.07 0.02 0.00 +prismatiques prismatique adj f p 0.02 0.07 0.00 0.07 +prisme prisme nom m s 0.11 1.42 0.10 0.88 +prismes prisme nom m p 0.11 1.42 0.01 0.54 +prison prison nom f s 147.49 72.43 142.97 64.66 +prisonnier prisonnier nom m s 37.80 40.00 16.97 11.69 +prisonniers prisonnier nom m p 37.80 40.00 19.55 26.42 +prisonnière prisonnier adj f s 19.64 29.46 3.40 4.73 +prisonnières prisonnier adj f p 19.64 29.46 0.65 1.22 +prisons_école prisons_école nom f p 0.00 0.07 0.00 0.07 +prisons prison nom f p 147.49 72.43 4.52 7.77 +prisse prendre ver 1913.83 1466.42 0.01 0.14 sub:imp:1s; +prissent prendre ver 1913.83 1466.42 0.00 0.61 sub:imp:3p; +prissions prendre ver 1913.83 1466.42 0.00 0.07 sub:imp:1p; +pristi pristi ono 0.00 0.20 0.00 0.20 +prisé priser ver m s 2.59 5.20 0.30 0.54 par:pas; +prisée priser ver f s 2.59 5.20 0.06 0.41 par:pas; +prisées priser ver f p 2.59 5.20 0.21 0.68 par:pas; +prisunic prisunic nom m s 0.03 3.11 0.03 3.11 +prisés priser ver m p 2.59 5.20 0.28 0.07 par:pas; +prit prendre ver 1913.83 1466.42 7.27 164.80 ind:pas:3s; +prière prière nom f s 32.73 45.95 19.15 30.00 +prièrent prier ver 313.12 105.74 0.03 0.34 ind:pas:3p; +prières prière nom f p 32.73 45.95 13.58 15.95 +prié prier ver m s 313.12 105.74 9.03 7.84 par:pas; +priée prier ver f s 313.12 105.74 0.52 1.15 par:pas; +priées prier ver f p 313.12 105.74 0.05 0.14 par:pas; +priés prier ver m p 313.12 105.74 1.91 0.95 par:pas; +priva priver ver 24.06 42.70 0.16 0.74 ind:pas:3s; +privai priver ver 24.06 42.70 0.00 0.07 ind:pas:1s; +privaient priver ver 24.06 42.70 0.02 0.88 ind:imp:3p; +privais priver ver 24.06 42.70 0.02 0.61 ind:imp:1s;ind:imp:2s; +privait priver ver 24.06 42.70 0.09 3.65 ind:imp:3s; +privant priver ver 24.06 42.70 0.33 1.69 par:pre; +privasse priver ver 24.06 42.70 0.00 0.07 sub:imp:1s; +privatif privatif adj m s 0.06 0.47 0.02 0.27 +privatifs privatif adj m p 0.06 0.47 0.00 0.07 +privation privation nom f s 1.55 4.53 0.70 1.49 +privations privation nom f p 1.55 4.53 0.85 3.04 +privatisation privatisation nom f s 0.41 0.07 0.41 0.07 +privatiser privatiser ver 0.36 0.00 0.31 0.00 inf; +privatisé privatiser ver m s 0.36 0.00 0.03 0.00 par:pas; +privatisée privatiser ver f s 0.36 0.00 0.01 0.00 par:pas; +privatisés privatiser ver m p 0.36 0.00 0.01 0.00 par:pas; +privative privatif adj f s 0.06 0.47 0.02 0.00 +privatives privatif adj f p 0.06 0.47 0.01 0.14 +privauté privauté nom f s 0.02 0.54 0.00 0.07 +privautés privauté nom f p 0.02 0.54 0.02 0.47 +prive priver ver 24.06 42.70 1.49 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +privent priver ver 24.06 42.70 0.46 0.47 ind:pre:3p; +priver priver ver 24.06 42.70 4.19 6.15 inf; +privera priver ver 24.06 42.70 0.44 0.27 ind:fut:3s; +priverai priver ver 24.06 42.70 0.27 0.00 ind:fut:1s; +priveraient priver ver 24.06 42.70 0.01 0.07 cnd:pre:3p; +priverais priver ver 24.06 42.70 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +priverait priver ver 24.06 42.70 0.17 0.27 cnd:pre:3s; +priveras priver ver 24.06 42.70 0.02 0.00 ind:fut:2s; +priveriez priver ver 24.06 42.70 0.12 0.00 cnd:pre:2p; +prives priver ver 24.06 42.70 0.47 0.14 ind:pre:2s; +privez priver ver 24.06 42.70 0.54 0.41 imp:pre:2p;ind:pre:2p; +priviez priver ver 24.06 42.70 0.02 0.00 ind:imp:2p; +privilège privilège nom m s 10.41 17.70 7.06 11.96 +privilèges privilège nom m p 10.41 17.70 3.35 5.74 +privilégiait privilégier ver 2.92 3.11 0.01 0.14 ind:imp:3s; +privilégiant privilégier ver 2.92 3.11 0.00 0.07 par:pre; +privilégie privilégier ver 2.92 3.11 0.42 0.27 ind:pre:1s;ind:pre:3s; +privilégient privilégier ver 2.92 3.11 0.04 0.00 ind:pre:3p; +privilégier privilégier ver 2.92 3.11 0.84 0.20 inf; +privilégions privilégier ver 2.92 3.11 0.02 0.00 ind:pre:1p; +privilégié privilégié adj m s 2.15 9.46 1.01 4.05 +privilégiée privilégié adj f s 2.15 9.46 0.56 2.84 +privilégiées privilégié adj f p 2.15 9.46 0.23 0.68 +privilégiés privilégié nom m p 0.87 5.07 0.65 3.31 +privions priver ver 24.06 42.70 0.00 0.14 ind:imp:1p; +privons priver ver 24.06 42.70 0.03 0.00 ind:pre:1p; +privât priver ver 24.06 42.70 0.00 0.14 sub:imp:3s; +privèrent priver ver 24.06 42.70 0.00 0.07 ind:pas:3p; +privé privé adj m s 36.44 21.89 11.99 7.09 +privée privé adj f s 36.44 21.89 18.80 9.39 +privées privé adj f p 36.44 21.89 2.61 2.30 +privément privément adv 0.01 0.00 0.01 0.00 +privés privé adj m p 36.44 21.89 3.04 3.11 +prix_choc prix_choc nom m 0.00 0.07 0.00 0.07 +prix prix nom m 126.55 107.50 126.55 107.50 +pro_occidental pro_occidental adj m s 0.01 0.00 0.01 0.00 +pro pro nom s 19.45 2.03 14.45 1.62 +proactif proactif adj m s 0.07 0.00 0.07 0.00 +probabilité probabilité nom f s 3.66 2.23 1.68 1.28 +probabilités probabilité nom f p 3.66 2.23 1.99 0.95 +probable probable adj s 10.98 18.18 10.61 17.36 +probablement probablement adv 69.41 37.64 69.41 37.64 +probables probable adj p 10.98 18.18 0.38 0.81 +probant probant adj m s 0.47 1.08 0.31 0.54 +probante probant adj f s 0.47 1.08 0.06 0.27 +probantes probant adj f p 0.47 1.08 0.04 0.00 +probants probant adj m p 0.47 1.08 0.06 0.27 +probation probation nom f s 1.39 0.14 1.39 0.14 +probatoire probatoire adj s 0.12 0.27 0.12 0.27 +probe probe adj f s 0.38 0.20 0.36 0.14 +probes probe adj p 0.38 0.20 0.01 0.07 +probité probité nom f s 0.10 1.89 0.10 1.89 +probloc probloc nom m s 0.00 0.54 0.00 0.47 +problocs probloc nom m p 0.00 0.54 0.00 0.07 +probloque probloque nom m s 0.00 1.01 0.00 0.61 +probloques probloque nom m p 0.00 1.01 0.00 0.41 +problème problème nom m s 520.07 95.00 391.20 55.20 +problèmes problème nom m p 520.07 95.00 128.87 39.80 +problématique problématique adj s 1.39 1.22 1.22 0.95 +problématiques problématique adj p 1.39 1.22 0.17 0.27 +proc proc nom m s 0.27 0.68 0.27 0.61 +procaïne procaïne nom f s 0.02 0.00 0.02 0.00 +procalmadiol procalmadiol nom m s 0.00 0.07 0.00 0.07 +process process nom m 0.07 0.07 0.07 0.07 +processeur processeur nom m s 0.69 0.00 0.54 0.00 +processeurs processeur nom m p 0.69 0.00 0.15 0.00 +procession procession nom f s 3.81 10.20 3.21 7.91 +processionnaient processionner ver 0.00 0.14 0.00 0.07 ind:imp:3p; +processionnaire processionnaire adj f s 0.00 0.20 0.00 0.20 +processionnaires processionnaire nom m p 0.00 0.20 0.00 0.20 +processionnant processionner ver 0.00 0.14 0.00 0.07 par:pre; +processionnelle processionnel adj f s 0.01 0.20 0.01 0.07 +processionnelles processionnel adj f p 0.01 0.20 0.00 0.14 +processions procession nom f p 3.81 10.20 0.59 2.30 +processus processus nom m 10.86 5.47 10.86 5.47 +prochain prochain adj m s 160.27 59.32 51.95 21.96 +prochaine prochain adj f s 160.27 59.32 100.44 32.50 +prochainement prochainement adv 0.86 2.77 0.86 2.77 +prochaines prochain adj f p 160.27 59.32 4.27 2.70 +prochains prochain adj m p 160.27 59.32 3.62 2.16 +proche_oriental proche_oriental adj m s 0.01 0.00 0.01 0.00 +proche proche adj s 55.34 82.91 38.29 63.04 +proches proche adj p 55.34 82.91 17.05 19.86 +prochinois prochinois adj m 0.00 0.14 0.00 0.07 +prochinoise prochinois adj f s 0.00 0.14 0.00 0.07 +proclama proclamer ver 6.50 16.42 0.02 1.08 ind:pas:3s; +proclamai proclamer ver 6.50 16.42 0.00 0.14 ind:pas:1s; +proclamaient proclamer ver 6.50 16.42 0.00 0.61 ind:imp:3p; +proclamais proclamer ver 6.50 16.42 0.23 0.07 ind:imp:1s;ind:imp:2s; +proclamait proclamer ver 6.50 16.42 0.03 3.38 ind:imp:3s; +proclamant proclamer ver 6.50 16.42 0.41 1.01 par:pre; +proclamation proclamation nom f s 0.60 4.19 0.60 3.45 +proclamations proclamation nom f p 0.60 4.19 0.00 0.74 +proclamatrices proclamateur nom f p 0.01 0.00 0.01 0.00 +proclame proclamer ver 6.50 16.42 2.37 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +proclament proclamer ver 6.50 16.42 0.17 0.68 ind:pre:3p; +proclamer proclamer ver 6.50 16.42 0.81 3.18 inf; +proclamera proclamer ver 6.50 16.42 0.03 0.00 ind:fut:3s; +proclamerai proclamer ver 6.50 16.42 0.01 0.07 ind:fut:1s; +proclameraient proclamer ver 6.50 16.42 0.00 0.07 cnd:pre:3p; +proclamerait proclamer ver 6.50 16.42 0.00 0.27 cnd:pre:3s; +proclamerons proclamer ver 6.50 16.42 0.02 0.07 ind:fut:1p; +proclamez proclamer ver 6.50 16.42 0.27 0.20 imp:pre:2p;ind:pre:2p; +proclamiez proclamer ver 6.50 16.42 0.00 0.07 ind:imp:2p; +proclamions proclamer ver 6.50 16.42 0.00 0.14 ind:imp:1p; +proclamons proclamer ver 6.50 16.42 0.24 0.07 imp:pre:1p;ind:pre:1p; +proclamât proclamer ver 6.50 16.42 0.00 0.14 sub:imp:3s; +proclamèrent proclamer ver 6.50 16.42 0.00 0.14 ind:pas:3p; +proclamé proclamer ver m s 6.50 16.42 1.38 1.96 par:pas; +proclamée proclamer ver f s 6.50 16.42 0.49 0.68 par:pas; +proclamées proclamer ver f p 6.50 16.42 0.03 0.07 par:pas; +proclamés proclamer ver m p 6.50 16.42 0.01 0.14 par:pas; +procommuniste procommuniste adj s 0.00 0.07 0.00 0.07 +proconsul proconsul nom m s 0.51 1.35 0.51 0.41 +proconsuls proconsul nom m p 0.51 1.35 0.00 0.95 +procrastination procrastination nom f s 0.01 0.00 0.01 0.00 +procréa procréer ver 1.13 1.55 0.00 0.07 ind:pas:3s; +procréant procréer ver 1.13 1.55 0.01 0.14 par:pre; +procréateur procréateur nom m s 0.01 0.14 0.01 0.07 +procréateurs procréateur nom m p 0.01 0.14 0.00 0.07 +procréation procréation nom f s 0.40 1.22 0.40 1.08 +procréations procréation nom f p 0.40 1.22 0.00 0.14 +procréative procréatif adj f s 0.00 0.07 0.00 0.07 +procréatrice procréateur adj f s 0.05 0.07 0.03 0.00 +procréatrices procréateur adj f p 0.05 0.07 0.02 0.00 +procrée procréer ver 1.13 1.55 0.03 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procréent procréer ver 1.13 1.55 0.01 0.07 ind:pre:3p; +procréer procréer ver 1.13 1.55 1.01 0.61 inf; +procréerons procréer ver 1.13 1.55 0.02 0.00 ind:fut:1p; +procréé procréer ver m s 1.13 1.55 0.04 0.34 par:pas; +procs proc nom m p 0.27 0.68 0.00 0.07 +procède procéder ver 12.91 25.88 1.75 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procèdent procéder ver 12.91 25.88 0.38 0.81 ind:pre:3p; +procès_test procès_test nom m 0.02 0.00 0.02 0.00 +procès_verbal procès_verbal nom m s 3.86 2.30 3.55 1.76 +procès_verbal procès_verbal nom m p 3.86 2.30 0.31 0.54 +procès procès nom m 45.41 24.32 45.41 24.32 +proctologie proctologie nom f s 0.01 0.00 0.01 0.00 +proctologue proctologue nom s 0.28 0.00 0.22 0.00 +proctologues proctologue nom p 0.28 0.00 0.07 0.00 +procéda procéder ver 12.91 25.88 0.02 0.34 ind:pas:3s; +procédaient procéder ver 12.91 25.88 0.00 0.54 ind:imp:3p; +procédais procéder ver 12.91 25.88 0.01 0.14 ind:imp:1s; +procédait procéder ver 12.91 25.88 0.04 2.97 ind:imp:3s; +procédant procéder ver 12.91 25.88 0.07 0.81 par:pre; +procéder procéder ver 12.91 25.88 6.75 10.14 inf; +procédera procéder ver 12.91 25.88 0.27 0.54 ind:fut:3s; +procéderaient procéder ver 12.91 25.88 0.00 0.20 cnd:pre:3p; +procéderais procéder ver 12.91 25.88 0.03 0.00 cnd:pre:1s; +procéderait procéder ver 12.91 25.88 0.00 0.54 cnd:pre:3s; +procéderez procéder ver 12.91 25.88 0.08 0.00 ind:fut:2p; +procéderiez procéder ver 12.91 25.88 0.01 0.00 cnd:pre:2p; +procéderons procéder ver 12.91 25.88 0.45 0.14 ind:fut:1p; +procéderont procéder ver 12.91 25.88 0.00 0.27 ind:fut:3p; +procédez procéder ver 12.91 25.88 0.76 0.14 imp:pre:2p;ind:pre:2p; +procédiez procéder ver 12.91 25.88 0.01 0.07 ind:imp:2p; +procédions procéder ver 12.91 25.88 0.04 0.14 ind:imp:1p; +procédâmes procéder ver 12.91 25.88 0.00 0.07 ind:pas:1p; +procédons procéder ver 12.91 25.88 1.15 0.61 imp:pre:1p;ind:pre:1p; +procédât procéder ver 12.91 25.88 0.00 0.14 sub:imp:3s; +procédé procédé nom m s 4.17 8.85 3.28 4.46 +procédural procédural adj m s 0.03 0.00 0.01 0.00 +procédurale procédural adj f s 0.03 0.00 0.01 0.00 +procédure procédure nom f s 16.16 3.58 13.26 3.38 +procédures procédure nom f p 16.16 3.58 2.91 0.20 +procédurier procédurier adj m s 0.04 0.14 0.03 0.07 +procédurière procédurier adj f s 0.04 0.14 0.01 0.00 +procédurières procédurier adj f p 0.04 0.14 0.00 0.07 +procédés procédé nom m p 4.17 8.85 0.89 4.39 +procura procurer ver 12.77 27.97 0.16 1.01 ind:pas:3s; +procurai procurer ver 12.77 27.97 0.00 0.07 ind:pas:1s; +procuraient procurer ver 12.77 27.97 0.03 1.35 ind:imp:3p; +procurais procurer ver 12.77 27.97 0.01 0.14 ind:imp:1s; +procurait procurer ver 12.77 27.97 0.39 3.72 ind:imp:3s; +procurant procurer ver 12.77 27.97 0.04 0.61 par:pre; +procurateur procurateur nom m s 0.03 0.88 0.03 0.20 +procurateurs procurateur nom m p 0.03 0.88 0.00 0.07 +procuraties procuratie nom f p 0.00 0.14 0.00 0.14 +procuration procuration nom f s 1.69 2.50 1.69 2.50 +procuratrice procurateur nom f s 0.03 0.88 0.00 0.61 +procure procurer ver 12.77 27.97 1.67 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procurent procurer ver 12.77 27.97 0.34 0.88 ind:pre:3p; +procurer procurer ver 12.77 27.97 7.29 9.66 imp:pre:2p;inf; +procurera procurer ver 12.77 27.97 0.21 0.07 ind:fut:3s; +procurerai procurer ver 12.77 27.97 0.19 0.14 ind:fut:1s; +procureraient procurer ver 12.77 27.97 0.01 0.20 cnd:pre:3p; +procurerais procurer ver 12.77 27.97 0.01 0.00 cnd:pre:1s; +procurerait procurer ver 12.77 27.97 0.14 0.61 cnd:pre:3s; +procureras procurer ver 12.77 27.97 0.03 0.00 ind:fut:2s; +procureriez procurer ver 12.77 27.97 0.01 0.00 cnd:pre:2p; +procurerons procurer ver 12.77 27.97 0.04 0.00 ind:fut:1p; +procureront procurer ver 12.77 27.97 0.02 0.07 ind:fut:3p; +procures procurer ver 12.77 27.97 0.09 0.00 ind:pre:2s; +procureur procureur nom m s 29.45 6.15 28.68 5.54 +procureurs procureur nom m p 29.45 6.15 0.78 0.41 +procureuse procureur nom f s 29.45 6.15 0.00 0.14 +procureuses procureur nom f p 29.45 6.15 0.00 0.07 +procurez procurer ver 12.77 27.97 0.20 0.00 imp:pre:2p;ind:pre:2p; +procuriez procurer ver 12.77 27.97 0.01 0.07 ind:imp:2p; +procurions procurer ver 12.77 27.97 0.00 0.14 ind:imp:1p;sub:pre:1p; +procurât procurer ver 12.77 27.97 0.00 0.07 sub:imp:3s; +procurèrent procurer ver 12.77 27.97 0.00 0.14 ind:pas:3p; +procuré procurer ver m s 12.77 27.97 1.78 4.26 par:pas; +procurée procurer ver f s 12.77 27.97 0.03 0.41 par:pas; +procurées procurer ver f p 12.77 27.97 0.00 0.14 par:pas; +procurés procurer ver m p 12.77 27.97 0.08 0.07 par:pas; +prodigalité prodigalité nom f s 0.04 1.01 0.03 0.95 +prodigalités prodigalité nom f p 0.04 1.01 0.01 0.07 +prodige prodige nom m s 5.83 8.78 4.62 5.61 +prodiges prodige nom m p 5.83 8.78 1.21 3.18 +prodigieuse prodigieux adj f s 3.66 13.24 1.29 5.47 +prodigieusement prodigieusement adv 0.67 3.65 0.67 3.65 +prodigieuses prodigieux adj f p 3.66 13.24 0.17 1.22 +prodigieux prodigieux adj m 3.66 13.24 2.19 6.55 +prodigua prodiguer ver 0.89 11.42 0.02 0.41 ind:pas:3s; +prodiguaient prodiguer ver 0.89 11.42 0.00 0.81 ind:imp:3p; +prodiguais prodiguer ver 0.89 11.42 0.01 0.14 ind:imp:1s;ind:imp:2s; +prodiguait prodiguer ver 0.89 11.42 0.01 1.82 ind:imp:3s; +prodiguant prodiguer ver 0.89 11.42 0.06 0.47 par:pre; +prodigue prodigue adj s 1.90 3.65 1.88 3.04 +prodiguent prodiguer ver 0.89 11.42 0.00 0.61 ind:pre:3p; +prodiguer prodiguer ver 0.89 11.42 0.09 1.76 inf; +prodiguera prodiguer ver 0.89 11.42 0.01 0.07 ind:fut:3s; +prodiguerais prodiguer ver 0.89 11.42 0.00 0.07 cnd:pre:2s; +prodigueras prodiguer ver 0.89 11.42 0.01 0.00 ind:fut:2s; +prodigueront prodiguer ver 0.89 11.42 0.00 0.07 ind:fut:3p; +prodigues prodiguer ver 0.89 11.42 0.04 0.07 ind:pre:2s; +prodiguions prodiguer ver 0.89 11.42 0.14 0.07 ind:imp:1p; +prodiguèrent prodiguer ver 0.89 11.42 0.00 0.27 ind:pas:3p; +prodigué prodiguer ver m s 0.89 11.42 0.31 1.49 par:pas; +prodiguée prodiguer ver f s 0.89 11.42 0.01 0.20 par:pas; +prodiguées prodiguer ver f p 0.89 11.42 0.11 0.81 par:pas; +prodigués prodiguer ver m p 0.89 11.42 0.03 0.88 par:pas; +prodrome prodrome nom m s 0.00 0.47 0.00 0.07 +prodromes prodrome nom m p 0.00 0.47 0.00 0.41 +producteur producteur nom m s 12.82 5.74 9.01 3.45 +producteurs producteur nom m p 12.82 5.74 3.19 2.03 +productif productif adj m s 1.66 0.81 0.89 0.34 +productifs productif adj m p 1.66 0.81 0.14 0.27 +production production nom f s 18.73 14.59 17.10 12.30 +productions production nom f p 18.73 14.59 1.63 2.30 +productive productif adj f s 1.66 0.81 0.46 0.07 +productives productif adj f p 1.66 0.81 0.17 0.14 +productivité productivité nom f s 0.75 0.34 0.75 0.34 +productrice producteur nom f s 12.82 5.74 0.63 0.27 +productrices producteur adj f p 1.34 1.01 0.07 0.07 +produira produire ver 49.81 68.92 1.71 0.61 ind:fut:3s; +produiraient produire ver 49.81 68.92 0.12 0.27 cnd:pre:3p; +produirais produire ver 49.81 68.92 0.05 0.00 cnd:pre:1s; +produirait produire ver 49.81 68.92 0.49 1.49 cnd:pre:3s; +produiras produire ver 49.81 68.92 0.00 0.07 ind:fut:2s; +produire produire ver 49.81 68.92 11.84 16.76 inf; +produirez produire ver 49.81 68.92 0.03 0.00 ind:fut:2p; +produiriez produire ver 49.81 68.92 0.01 0.00 cnd:pre:2p; +produirons produire ver 49.81 68.92 0.06 0.00 ind:fut:1p; +produiront produire ver 49.81 68.92 0.22 0.07 ind:fut:3p; +produis produire ver 49.81 68.92 1.05 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +produisît produire ver 49.81 68.92 0.01 0.61 sub:imp:3s; +produisaient produire ver 49.81 68.92 0.09 1.69 ind:imp:3p; +produisais produire ver 49.81 68.92 0.07 0.07 ind:imp:1s;ind:imp:2s; +produisait produire ver 49.81 68.92 1.50 6.28 ind:imp:3s; +produisant produire ver 49.81 68.92 0.53 2.03 par:pre; +produise produire ver 49.81 68.92 2.15 1.08 sub:pre:1s;sub:pre:3s; +produisent produire ver 49.81 68.92 3.91 2.70 ind:pre:3p; +produises produire ver 49.81 68.92 0.01 0.00 sub:pre:2s; +produisez produire ver 49.81 68.92 0.27 0.07 imp:pre:2p;ind:pre:2p; +produisions produire ver 49.81 68.92 0.02 0.00 ind:imp:1p; +produisirent produire ver 49.81 68.92 0.01 0.27 ind:pas:3p; +produisis produire ver 49.81 68.92 0.00 0.07 ind:pas:1s; +produisit produire ver 49.81 68.92 0.74 5.88 ind:pas:3s; +produisons produire ver 49.81 68.92 0.84 0.07 imp:pre:1p;ind:pre:1p; +produit produire ver m s 49.81 68.92 20.16 22.57 ind:pre:3s;par:pas; +produite produire ver f s 49.81 68.92 1.34 3.31 par:pas; +produites produire ver f p 49.81 68.92 0.82 0.47 par:pas; +produits produit nom m p 28.80 23.99 14.17 11.28 +prof prof nom s 37.82 20.20 30.36 15.07 +profana profaner ver 3.12 2.50 0.23 0.07 ind:pas:3s; +profanaient profaner ver 3.12 2.50 0.00 0.07 ind:imp:3p; +profanait profaner ver 3.12 2.50 0.00 0.14 ind:imp:3s; +profanant profaner ver 3.12 2.50 0.01 0.14 par:pre; +profanateur profanateur nom m s 0.28 0.14 0.07 0.14 +profanateurs profanateur nom m p 0.28 0.14 0.21 0.00 +profanation profanation nom f s 1.21 1.08 1.04 0.95 +profanations profanation nom f p 1.21 1.08 0.16 0.14 +profanatoire profanatoire adj f s 0.00 0.07 0.00 0.07 +profane profane adj s 1.11 2.84 0.88 1.89 +profanent profaner ver 3.12 2.50 0.40 0.00 ind:pre:3p; +profaner profaner ver 3.12 2.50 0.70 0.41 inf; +profanera profaner ver 3.12 2.50 0.12 0.07 ind:fut:3s; +profanes profane adj p 1.11 2.84 0.23 0.95 +profanez profaner ver 3.12 2.50 0.15 0.07 imp:pre:2p;ind:pre:2p; +profanèrent profaner ver 3.12 2.50 0.00 0.07 ind:pas:3p; +profané profaner ver m s 3.12 2.50 0.89 0.47 par:pas; +profanée profaner ver f s 3.12 2.50 0.19 0.47 par:pas; +profanées profaner ver f p 3.12 2.50 0.11 0.20 par:pas; +profanés profaner ver m p 3.12 2.50 0.01 0.14 par:pas; +professa professer ver 0.47 3.51 0.00 0.07 ind:pas:3s; +professaient professer ver 0.47 3.51 0.00 0.34 ind:imp:3p; +professait professer ver 0.47 3.51 0.00 1.42 ind:imp:3s; +professant professer ver 0.47 3.51 0.00 0.20 par:pre; +professe professer ver 0.47 3.51 0.22 0.41 ind:pre:1s;ind:pre:3s; +professent professer ver 0.47 3.51 0.00 0.20 ind:pre:3p; +professer professer ver 0.47 3.51 0.11 0.07 inf; +professeur professeur nom s 98.55 63.92 90.02 49.53 +professeure professeur nom f s 98.55 63.92 0.17 0.00 +professeurs professeur nom p 98.55 63.92 8.35 14.39 +professiez professer ver 0.47 3.51 0.01 0.07 ind:imp:2p; +profession profession nom f s 9.93 15.81 9.46 13.99 +professionnalisme professionnalisme nom m s 1.03 0.34 1.03 0.34 +professionnel professionnel adj m s 23.09 20.61 11.75 7.23 +professionnelle professionnel adj f s 23.09 20.61 7.13 6.96 +professionnellement professionnellement adv 1.13 0.74 1.13 0.74 +professionnelles professionnel adj f p 23.09 20.61 1.24 3.51 +professionnels professionnel nom m p 12.91 6.82 4.29 3.24 +professions profession nom f p 9.93 15.81 0.46 1.82 +professons professer ver 0.47 3.51 0.00 0.07 ind:pre:1p; +professoral professoral adj m s 0.06 0.41 0.06 0.41 +professorat professorat nom m s 0.02 0.34 0.02 0.34 +professé professer ver m s 0.47 3.51 0.12 0.27 par:pas; +professées professer ver f p 0.47 3.51 0.00 0.20 par:pas; +profil profil nom m s 14.44 29.12 13.38 26.69 +profila profiler ver 1.67 6.62 0.00 0.68 ind:pas:3s; +profilage profilage nom m s 0.12 0.07 0.12 0.07 +profilaient profiler ver 1.67 6.62 0.00 0.74 ind:imp:3p; +profilait profiler ver 1.67 6.62 0.02 0.88 ind:imp:3s; +profilant profiler ver 1.67 6.62 0.00 0.61 par:pre; +profile profiler ver 1.67 6.62 1.16 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +profilent profiler ver 1.67 6.62 0.04 0.61 ind:pre:3p; +profiler profiler ver 1.67 6.62 0.35 1.15 inf; +profileur profileur nom m s 0.13 0.00 0.11 0.00 +profileuse profileur nom f s 0.13 0.00 0.01 0.00 +profils profil nom m p 14.44 29.12 1.06 2.43 +profilèrent profiler ver 1.67 6.62 0.00 0.07 ind:pas:3p; +profilé profiler ver m s 1.67 6.62 0.06 0.07 par:pas; +profilée profiler ver f s 1.67 6.62 0.02 0.47 par:pas; +profilées profiler ver f p 1.67 6.62 0.00 0.20 par:pas; +profilés profiler ver m p 1.67 6.62 0.02 0.07 par:pas; +profit profit nom m s 14.29 25.00 12.26 22.77 +profita profiter ver 67.20 91.22 0.13 7.84 ind:pas:3s; +profitabilité profitabilité nom f s 0.01 0.00 0.01 0.00 +profitable profitable adj s 1.64 1.96 1.32 1.42 +profitables profitable adj p 1.64 1.96 0.32 0.54 +profitai profiter ver 67.20 91.22 0.01 1.35 ind:pas:1s; +profitaient profiter ver 67.20 91.22 0.09 3.04 ind:imp:3p; +profitais profiter ver 67.20 91.22 0.60 1.28 ind:imp:1s;ind:imp:2s; +profitait profiter ver 67.20 91.22 0.52 5.95 ind:imp:3s; +profitant profiter ver 67.20 91.22 0.59 10.20 par:pre; +profite profiter ver 67.20 91.22 13.06 12.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +profitent profiter ver 67.20 91.22 1.67 3.24 ind:pre:3p; +profiter profiter ver 67.20 91.22 22.50 25.14 inf; +profitera profiter ver 67.20 91.22 0.76 0.74 ind:fut:3s; +profiterai profiter ver 67.20 91.22 1.00 0.47 ind:fut:1s; +profiteraient profiter ver 67.20 91.22 0.05 0.47 cnd:pre:3p; +profiterais profiter ver 67.20 91.22 0.31 0.27 cnd:pre:1s;cnd:pre:2s; +profiterait profiter ver 67.20 91.22 0.27 1.22 cnd:pre:3s; +profiteras profiter ver 67.20 91.22 0.23 0.07 ind:fut:2s; +profiterez profiter ver 67.20 91.22 0.18 0.07 ind:fut:2p; +profiteriez profiter ver 67.20 91.22 0.04 0.00 cnd:pre:2p; +profiterole profiterole nom f s 0.06 0.07 0.00 0.07 +profiteroles profiterole nom f p 0.06 0.07 0.06 0.00 +profiterons profiter ver 67.20 91.22 0.54 0.14 ind:fut:1p; +profiteront profiter ver 67.20 91.22 0.27 0.14 ind:fut:3p; +profites profiter ver 67.20 91.22 6.34 0.61 ind:pre:2s;sub:pre:2s; +profiteur profiteur nom m s 1.00 1.35 0.50 0.54 +profiteurs profiteur nom m p 1.00 1.35 0.47 0.74 +profiteuse profiteur nom f s 1.00 1.35 0.03 0.07 +profitez profiter ver 67.20 91.22 8.51 1.49 imp:pre:2p;ind:pre:2p; +profitiez profiter ver 67.20 91.22 0.19 0.07 ind:imp:2p; +profitions profiter ver 67.20 91.22 0.04 0.47 ind:imp:1p; +profitâmes profiter ver 67.20 91.22 0.00 0.14 ind:pas:1p; +profitons profiter ver 67.20 91.22 2.41 0.41 imp:pre:1p;ind:pre:1p; +profitât profiter ver 67.20 91.22 0.00 0.34 sub:imp:3s; +profits profit nom m p 14.29 25.00 2.04 2.23 +profitèrent profiter ver 67.20 91.22 0.00 0.95 ind:pas:3p; +profité profiter ver m s 67.20 91.22 6.89 12.16 par:pas; +profitée profiter ver f s 67.20 91.22 0.00 0.07 par:pas; +profond profond adj m s 42.41 105.74 24.72 47.77 +profonde profond adj f s 42.41 105.74 11.71 37.97 +profondes profond adj f p 42.41 105.74 3.80 11.55 +profondeur profondeur nom f s 13.30 32.64 8.84 17.84 +profondeurs profondeur nom f p 13.30 32.64 4.46 14.80 +profonds profond adj m p 42.41 105.74 2.19 8.45 +profondément profondément adv 19.00 34.59 19.00 34.59 +profs prof nom p 37.82 20.20 7.46 5.14 +profère proférer ver 0.88 8.24 0.22 1.01 ind:pre:3s; +profèrent proférer ver 0.88 8.24 0.01 0.14 ind:pre:3p; +proféra proférer ver 0.88 8.24 0.02 1.62 ind:pas:3s; +proféraient proférer ver 0.88 8.24 0.00 0.07 ind:imp:3p; +proférait proférer ver 0.88 8.24 0.01 0.95 ind:imp:3s; +proférant proférer ver 0.88 8.24 0.05 0.54 par:pre; +proférations profération nom f p 0.00 0.07 0.00 0.07 +proférer proférer ver 0.88 8.24 0.36 1.89 inf; +proféreraient proférer ver 0.88 8.24 0.00 0.07 cnd:pre:3p; +proférez proférer ver 0.88 8.24 0.02 0.00 ind:pre:2p; +proférions proférer ver 0.88 8.24 0.00 0.07 ind:imp:1p; +proférât proférer ver 0.88 8.24 0.00 0.07 sub:imp:3s; +proféré proférer ver m s 0.88 8.24 0.16 0.88 par:pas; +proférée proférer ver f s 0.88 8.24 0.02 0.34 par:pas; +proférées proférer ver f p 0.88 8.24 0.01 0.27 par:pas; +proférés proférer ver m p 0.88 8.24 0.00 0.34 par:pas; +profus profus adj m s 0.01 0.47 0.00 0.14 +profuse profus adj f s 0.01 0.47 0.01 0.27 +profuses profus adj f p 0.01 0.47 0.00 0.07 +profusion profusion nom f s 0.24 4.73 0.24 4.66 +profusions profusion nom f p 0.24 4.73 0.00 0.07 +progestérone progestérone nom f s 0.07 0.07 0.07 0.07 +prognathe prognathe adj s 0.00 0.47 0.00 0.47 +prognathisme prognathisme nom m s 0.01 0.00 0.01 0.00 +programma programmer ver 7.14 2.30 0.01 0.14 ind:pas:3s; +programmable programmable adj f s 0.06 0.00 0.04 0.00 +programmables programmable adj p 0.06 0.00 0.01 0.00 +programmaient programmer ver 7.14 2.30 0.01 0.07 ind:imp:3p; +programmait programmer ver 7.14 2.30 0.01 0.14 ind:imp:3s; +programmateur programmateur nom m s 0.19 0.14 0.04 0.07 +programmateurs programmateur nom m p 0.19 0.14 0.14 0.07 +programmation programmation nom f s 1.09 0.41 1.09 0.41 +programmatrice programmateur adj f s 0.14 0.00 0.10 0.00 +programme programme nom m s 49.11 26.49 44.16 21.89 +programment programmer ver 7.14 2.30 0.06 0.14 ind:pre:3p; +programmer programmer ver 7.14 2.30 1.36 0.14 inf; +programmerai programmer ver 7.14 2.30 0.04 0.00 ind:fut:1s; +programmes programme nom m p 49.11 26.49 4.95 4.59 +programmeur programmeur nom m s 0.64 0.00 0.38 0.00 +programmeurs programmeur nom m p 0.64 0.00 0.21 0.00 +programmeuse programmeur nom f s 0.64 0.00 0.05 0.00 +programmez programmer ver 7.14 2.30 0.33 0.07 imp:pre:2p;ind:pre:2p; +programmons programmer ver 7.14 2.30 0.01 0.00 imp:pre:1p; +programmé programmer ver m s 7.14 2.30 3.10 0.68 par:pas; +programmée programmer ver f s 7.14 2.30 0.78 0.27 par:pas; +programmées programmer ver f p 7.14 2.30 0.32 0.27 par:pas; +programmés programmer ver m p 7.14 2.30 0.45 0.27 par:pas; +progressa progresser ver 9.92 15.81 0.01 0.47 ind:pas:3s; +progressai progresser ver 9.92 15.81 0.00 0.14 ind:pas:1s; +progressaient progresser ver 9.92 15.81 0.01 0.95 ind:imp:3p; +progressais progresser ver 9.92 15.81 0.13 0.27 ind:imp:1s; +progressait progresser ver 9.92 15.81 0.22 2.91 ind:imp:3s; +progressant progresser ver 9.92 15.81 0.04 1.82 par:pre; +progresse progresser ver 9.92 15.81 3.74 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +progressent progresser ver 9.92 15.81 0.52 1.08 ind:pre:3p; +progresser progresser ver 9.92 15.81 2.23 3.04 inf; +progressera progresser ver 9.92 15.81 0.22 0.00 ind:fut:3s; +progresseraient progresser ver 9.92 15.81 0.00 0.07 cnd:pre:3p; +progresserais progresser ver 9.92 15.81 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +progresserait progresser ver 9.92 15.81 0.01 0.07 cnd:pre:3s; +progresserez progresser ver 9.92 15.81 0.04 0.00 ind:fut:2p; +progresserons progresser ver 9.92 15.81 0.16 0.00 ind:fut:1p; +progresseront progresser ver 9.92 15.81 0.03 0.07 ind:fut:3p; +progresses progresser ver 9.92 15.81 0.63 0.00 ind:pre:2s; +progressez progresser ver 9.92 15.81 0.36 0.00 imp:pre:2p;ind:pre:2p; +progressif progressif adj m s 1.01 5.27 0.42 2.09 +progression progression nom f s 1.73 6.62 1.61 6.62 +progressions progression nom f p 1.73 6.62 0.13 0.00 +progressisme progressisme nom m s 0.01 0.34 0.01 0.34 +progressiste progressiste adj s 1.08 1.08 0.81 0.68 +progressistes progressiste adj p 1.08 1.08 0.28 0.41 +progressive progressif adj f s 1.01 5.27 0.57 2.97 +progressivement progressivement adv 1.44 8.24 1.44 8.24 +progressives progressif adj f p 1.01 5.27 0.02 0.20 +progressons progresser ver 9.92 15.81 0.55 0.27 imp:pre:1p;ind:pre:1p; +progressèrent progresser ver 9.92 15.81 0.00 0.07 ind:pas:3p; +progressé progresser ver m s 9.92 15.81 0.98 1.15 par:pas; +progressée progresser ver f s 9.92 15.81 0.01 0.00 par:pas; +progrès progrès nom m 18.52 29.73 18.52 29.73 +progéniteur progéniteur nom m s 0.00 0.07 0.00 0.07 +progéniture progéniture nom f s 1.64 2.64 1.60 2.57 +progénitures progéniture nom f p 1.64 2.64 0.04 0.07 +prohibait prohiber ver 0.41 1.01 0.01 0.27 ind:imp:3s; +prohibe prohiber ver 0.41 1.01 0.02 0.14 ind:pre:3s; +prohibent prohiber ver 0.41 1.01 0.01 0.00 ind:pre:3p; +prohibition prohibition nom f s 0.79 0.54 0.79 0.54 +prohibitive prohibitif adj f s 0.02 0.00 0.02 0.00 +prohibé prohiber ver m s 0.41 1.01 0.19 0.27 par:pas; +prohibée prohibé adj f s 0.41 0.61 0.18 0.20 +prohibées prohibé adj f p 0.41 0.61 0.04 0.07 +prohibés prohibé adj m p 0.41 0.61 0.15 0.07 +proie proie nom f s 10.61 32.50 9.19 29.59 +proies proie nom f p 10.61 32.50 1.42 2.91 +projecteur projecteur nom m s 5.02 12.91 3.09 5.14 +projecteurs projecteur nom m p 5.02 12.91 1.93 7.77 +projectif projectif adj m s 0.01 0.00 0.01 0.00 +projectile projectile nom m s 1.40 4.46 0.82 1.69 +projectiles projectile nom m p 1.40 4.46 0.58 2.77 +projection projection nom f s 4.66 6.69 3.75 5.41 +projectionniste projectionniste nom s 0.52 0.14 0.50 0.14 +projectionnistes projectionniste nom p 0.52 0.14 0.02 0.00 +projections projection nom f p 4.66 6.69 0.91 1.28 +projet projet nom m s 69.59 70.00 44.18 39.86 +projeta projeter ver 9.75 32.77 0.03 1.28 ind:pas:3s; +projetai projeter ver 9.75 32.77 0.00 0.41 ind:pas:1s; +projetaient projeter ver 9.75 32.77 0.19 1.76 ind:imp:3p; +projetais projeter ver 9.75 32.77 0.24 0.74 ind:imp:1s;ind:imp:2s; +projetait projeter ver 9.75 32.77 0.00 6.69 ind:imp:3s; +projetant projeter ver 9.75 32.77 0.25 2.16 par:pre; +projeter projeter ver 9.75 32.77 1.59 3.11 inf; +projetez projeter ver 9.75 32.77 0.28 0.00 imp:pre:2p;ind:pre:2p; +projetiez projeter ver 9.75 32.77 0.05 0.00 ind:imp:2p; +projetions projeter ver 9.75 32.77 0.05 0.20 ind:imp:1p; +projetâmes projeter ver 9.75 32.77 0.01 0.07 ind:pas:1p; +projetons projeter ver 9.75 32.77 0.38 0.07 imp:pre:1p;ind:pre:1p; +projetât projeter ver 9.75 32.77 0.00 0.14 sub:imp:3s; +projets projet nom m p 69.59 70.00 25.41 30.14 +projette projeter ver 9.75 32.77 2.34 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +projettent projeter ver 9.75 32.77 0.39 0.81 ind:pre:3p; +projettera projeter ver 9.75 32.77 0.05 0.07 ind:fut:3s; +projetterait projeter ver 9.75 32.77 0.00 0.07 cnd:pre:3s; +projetteriez projeter ver 9.75 32.77 0.00 0.07 cnd:pre:2p; +projetterons projeter ver 9.75 32.77 0.02 0.00 ind:fut:1p; +projettes projeter ver 9.75 32.77 0.33 0.00 ind:pre:2s; +projetèrent projeter ver 9.75 32.77 0.01 0.07 ind:pas:3p; +projeté projeter ver m s 9.75 32.77 2.31 5.54 par:pas; +projetée projeter ver f s 9.75 32.77 0.47 2.57 par:pas; +projetées projeter ver f p 9.75 32.77 0.14 0.41 par:pas; +projetés projeter ver m p 9.75 32.77 0.62 1.82 par:pas; +projo projo nom m s 0.66 0.14 0.36 0.00 +projos projo nom m p 0.66 0.14 0.30 0.14 +prolapsus prolapsus nom m 0.15 0.00 0.15 0.00 +prolifique prolifique adj s 0.20 1.62 0.17 0.95 +prolifiques prolifique adj p 0.20 1.62 0.03 0.68 +prolifère proliférer ver 0.73 2.09 0.16 0.61 ind:pre:1s;ind:pre:3s; +prolifèrent proliférer ver 0.73 2.09 0.21 0.27 ind:pre:3p; +proliféraient proliférer ver 0.73 2.09 0.00 0.27 ind:imp:3p; +proliférait proliférer ver 0.73 2.09 0.01 0.14 ind:imp:3s; +proliférant proliférer ver 0.73 2.09 0.01 0.00 par:pre; +proliférante proliférant adj f s 0.00 0.54 0.00 0.14 +proliférantes proliférant adj f p 0.00 0.54 0.00 0.27 +proliférants proliférant adj m p 0.00 0.54 0.00 0.07 +prolifération prolifération nom f s 0.37 1.08 0.37 1.08 +proliférer proliférer ver 0.73 2.09 0.30 0.54 inf; +proliférera proliférer ver 0.73 2.09 0.01 0.00 ind:fut:3s; +proliféré proliférer ver m s 0.73 2.09 0.03 0.27 par:pas; +proline proline nom f s 0.03 0.00 0.03 0.00 +prolixe prolixe adj s 0.18 1.62 0.18 1.28 +prolixes prolixe adj p 0.18 1.62 0.00 0.34 +prolixité prolixité nom f s 0.00 0.20 0.00 0.20 +prolo prolo nom s 0.90 3.04 0.58 1.35 +prologue prologue nom m s 1.38 1.42 1.38 1.42 +prolongateur prolongateur nom m s 0.01 0.00 0.01 0.00 +prolongation prolongation nom f s 0.97 0.81 0.74 0.54 +prolongations prolongation nom f p 0.97 0.81 0.23 0.27 +prolonge prolonger ver 5.27 35.00 0.99 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prolongea prolonger ver 5.27 35.00 0.13 1.89 ind:pas:3s; +prolongeaient prolonger ver 5.27 35.00 0.00 2.09 ind:imp:3p; +prolongeais prolonger ver 5.27 35.00 0.00 0.27 ind:imp:1s; +prolongeait prolonger ver 5.27 35.00 0.11 4.46 ind:imp:3s; +prolongeant prolonger ver 5.27 35.00 0.16 2.57 par:pre; +prolongement prolongement nom m s 0.36 4.66 0.35 3.65 +prolongements prolongement nom m p 0.36 4.66 0.01 1.01 +prolongent prolonger ver 5.27 35.00 0.19 0.95 ind:pre:3p; +prolongeât prolonger ver 5.27 35.00 0.00 0.34 sub:imp:3s; +prolonger prolonger ver 5.27 35.00 2.42 9.39 inf; +prolongera prolonger ver 5.27 35.00 0.11 0.14 ind:fut:3s; +prolongeraient prolonger ver 5.27 35.00 0.00 0.27 cnd:pre:3p; +prolongerait prolonger ver 5.27 35.00 0.00 0.74 cnd:pre:3s; +prolongerons prolonger ver 5.27 35.00 0.01 0.07 ind:fut:1p; +prolonges prolonger ver 5.27 35.00 0.04 0.07 ind:pre:2s; +prolongez prolonger ver 5.27 35.00 0.00 0.07 ind:pre:2p; +prolongèrent prolonger ver 5.27 35.00 0.01 0.41 ind:pas:3p; +prolongé prolonger ver m s 5.27 35.00 0.41 2.97 par:pas; +prolongée prolongé adj f s 1.14 6.49 0.59 2.23 +prolongées prolongé adj f p 1.14 6.49 0.06 0.74 +prolongés prolongé adj m p 1.14 6.49 0.17 0.81 +prolos prolo nom p 0.90 3.04 0.32 1.69 +prolégomènes prolégomènes nom m p 0.00 0.68 0.00 0.68 +prolétaire prolétaire nom s 1.79 3.78 0.83 1.35 +prolétaires prolétaire nom p 1.79 3.78 0.96 2.43 +prolétariat prolétariat nom m s 1.12 3.65 1.12 3.58 +prolétariats prolétariat nom m p 1.12 3.65 0.00 0.07 +prolétarien prolétarien adj m s 0.56 2.36 0.14 0.47 +prolétarienne prolétarien adj f s 0.56 2.36 0.42 1.55 +prolétariennes prolétarien adj f p 0.56 2.36 0.00 0.20 +prolétariens prolétarien adj m p 0.56 2.36 0.00 0.14 +prolétarisation prolétarisation nom f s 0.00 0.14 0.00 0.14 +prolétariser prolétariser ver 0.00 0.14 0.00 0.14 inf; +promîmes promettre ver 185.26 101.42 0.01 0.07 ind:pas:1p; +promît promettre ver 185.26 101.42 0.00 0.14 sub:imp:3s; +promazine promazine nom f s 0.01 0.00 0.01 0.00 +promena promener ver 37.80 97.77 0.01 4.26 ind:pas:3s; +promenade promenade nom f s 15.34 58.11 13.45 42.43 +promenades promenade nom f p 15.34 58.11 1.88 15.68 +promenai promener ver 37.80 97.77 0.01 1.42 ind:pas:1s; +promenaient promener ver 37.80 97.77 0.23 5.68 ind:imp:3p; +promenais promener ver 37.80 97.77 1.84 2.84 ind:imp:1s;ind:imp:2s; +promenait promener ver 37.80 97.77 1.33 12.50 ind:imp:3s; +promenant promener ver 37.80 97.77 0.68 6.82 par:pre; +promener promener ver 37.80 97.77 20.02 32.43 inf;;inf;;inf;; +promeneur promeneur nom m s 0.57 8.92 0.22 2.77 +promeneurs promeneur nom m p 0.57 8.92 0.33 5.47 +promeneuse promeneur nom f s 0.57 8.92 0.02 0.27 +promeneuses promeneur nom f p 0.57 8.92 0.00 0.41 +promenez promener ver 37.80 97.77 0.91 0.61 imp:pre:2p;ind:pre:2p; +promeniez promener ver 37.80 97.77 0.03 0.20 ind:imp:2p; +promenions promener ver 37.80 97.77 0.21 1.89 ind:imp:1p; +promenoir promenoir nom m s 0.00 0.54 0.00 0.54 +promenâmes promener ver 37.80 97.77 0.01 0.20 ind:pas:1p; +promenons promener ver 37.80 97.77 0.15 0.74 imp:pre:1p;ind:pre:1p; +promenât promener ver 37.80 97.77 0.00 0.07 sub:imp:3s; +promenèrent promener ver 37.80 97.77 0.00 1.35 ind:pas:3p; +promené promener ver m s 37.80 97.77 0.85 4.26 par:pas; +promenée promener ver f s 37.80 97.77 0.39 2.09 par:pas; +promenées promener ver f p 37.80 97.77 0.02 0.34 par:pas; +promenés promener ver m p 37.80 97.77 0.75 2.57 par:pas; +promesse promesse nom f s 32.20 40.20 20.45 21.76 +promesses promesse nom f p 32.20 40.20 11.75 18.45 +promet promettre ver 185.26 101.42 8.16 6.35 ind:pre:3s; +promets promettre ver 185.26 101.42 68.81 12.30 imp:pre:2s;ind:pre:1s;ind:pre:2s; +promettaient promettre ver 185.26 101.42 0.17 1.82 ind:imp:3p; +promettais promettre ver 185.26 101.42 0.39 1.69 ind:imp:1s;ind:imp:2s; +promettait promettre ver 185.26 101.42 0.82 8.72 ind:imp:3s; +promettant promettre ver 185.26 101.42 0.77 3.38 par:pre; +promette promettre ver 185.26 101.42 0.67 0.34 sub:pre:1s;sub:pre:3s; +promettent promettre ver 185.26 101.42 0.77 1.28 ind:pre:3p; +promettes promettre ver 185.26 101.42 0.67 0.07 sub:pre:2s; +prometteur prometteur adj m s 3.96 2.57 2.75 1.15 +prometteurs prometteur adj m p 3.96 2.57 0.29 0.61 +prometteuse prometteur adj f s 3.96 2.57 0.76 0.54 +prometteuses prometteur adj f p 3.96 2.57 0.16 0.27 +promettez promettre ver 185.26 101.42 7.25 1.42 imp:pre:2p;ind:pre:2p; +promettiez promettre ver 185.26 101.42 0.19 0.14 ind:imp:2p; +promettons promettre ver 185.26 101.42 0.76 0.20 imp:pre:1p;ind:pre:1p; +promettra promettre ver 185.26 101.42 0.03 0.00 ind:fut:3s; +promettrai promettre ver 185.26 101.42 0.28 0.00 ind:fut:1s; +promettraient promettre ver 185.26 101.42 0.00 0.07 cnd:pre:3p; +promettrais promettre ver 185.26 101.42 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +promettrait promettre ver 185.26 101.42 0.00 0.14 cnd:pre:3s; +promettras promettre ver 185.26 101.42 0.00 0.07 ind:fut:2s; +promettre promettre ver 185.26 101.42 10.05 7.16 inf; +promettriez promettre ver 185.26 101.42 0.01 0.00 cnd:pre:2p; +promettront promettre ver 185.26 101.42 0.01 0.14 ind:fut:3p; +promeut promouvoir ver 6.08 3.11 0.04 0.00 ind:pre:3s; +promirent promettre ver 185.26 101.42 0.01 0.34 ind:pas:3p; +promis promettre ver m 185.26 101.42 82.83 42.43 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +promiscuité promiscuité nom f s 0.57 4.26 0.57 3.85 +promiscuités promiscuité nom f p 0.57 4.26 0.00 0.41 +promise promis adj f s 10.21 6.62 2.26 4.12 +promises promettre ver f p 185.26 101.42 0.34 0.81 par:pas; +promit promettre ver 185.26 101.42 0.52 10.61 ind:pas:3s; +promo promo nom f s 4.86 0.34 4.74 0.34 +promontoire promontoire nom m s 0.18 3.24 0.18 2.77 +promontoires promontoire nom m p 0.18 3.24 0.00 0.47 +promos promo nom f p 4.86 0.34 0.12 0.00 +promoteur promoteur nom m s 1.41 1.82 1.12 0.81 +promoteurs promoteur nom m p 1.41 1.82 0.28 1.01 +promotion promotion nom f s 14.81 7.64 14.12 6.55 +promotionnait promotionner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +promotionnel promotionnel adj m s 0.23 0.14 0.10 0.07 +promotionnelle promotionnel adj f s 0.23 0.14 0.08 0.00 +promotionnelles promotionnel adj f p 0.23 0.14 0.05 0.07 +promotions promotion nom f p 14.81 7.64 0.70 1.08 +promotrice promoteur nom f s 1.41 1.82 0.01 0.00 +promouvaient promouvoir ver 6.08 3.11 0.01 0.07 ind:imp:3p; +promouvez promouvoir ver 6.08 3.11 0.01 0.00 ind:pre:2p; +promouvoir promouvoir ver 6.08 3.11 1.56 0.74 inf; +prompt prompt adj m s 2.06 8.65 1.70 3.72 +prompte prompt adj f s 2.06 8.65 0.22 2.57 +promptement promptement adv 0.35 2.70 0.35 2.70 +promptes prompt adj f p 2.06 8.65 0.03 0.61 +prompteur prompteur nom m s 0.24 0.07 0.21 0.00 +prompteurs prompteur nom m p 0.24 0.07 0.03 0.07 +promptitude promptitude nom f s 0.21 2.23 0.21 2.23 +prompto prompto adv 0.00 0.07 0.00 0.07 +prompts prompt adj m p 2.06 8.65 0.12 1.76 +promène promener ver 37.80 97.77 6.97 11.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +promènent promener ver 37.80 97.77 1.58 3.11 ind:pre:3p; +promènera promener ver 37.80 97.77 0.30 0.14 ind:fut:3s; +promènerai promener ver 37.80 97.77 0.06 0.81 ind:fut:1s; +promèneraient promener ver 37.80 97.77 0.12 0.20 cnd:pre:3p; +promènerais promener ver 37.80 97.77 0.01 0.27 cnd:pre:1s; +promènerait promener ver 37.80 97.77 0.16 0.34 cnd:pre:3s; +promèneras promener ver 37.80 97.77 0.03 0.14 ind:fut:2s; +promènerez promener ver 37.80 97.77 0.04 0.07 ind:fut:2p; +promènerions promener ver 37.80 97.77 0.00 0.07 cnd:pre:1p; +promènerons promener ver 37.80 97.77 0.01 0.14 ind:fut:1p; +promènes promener ver 37.80 97.77 1.08 0.68 ind:pre:2s; +promu promouvoir ver m s 6.08 3.11 3.56 1.62 par:pas; +promue promouvoir ver f s 6.08 3.11 0.65 0.34 par:pas; +promues promouvoir ver f p 6.08 3.11 0.00 0.07 par:pas; +promulgation promulgation nom f s 0.04 0.34 0.04 0.34 +promulguait promulguer ver 0.24 1.82 0.00 0.20 ind:imp:3s; +promulguant promulguer ver 0.24 1.82 0.10 0.07 par:pre; +promulguer promulguer ver 0.24 1.82 0.06 0.41 inf; +promulguera promulguer ver 0.24 1.82 0.00 0.07 ind:fut:3s; +promulgué promulguer ver m s 0.24 1.82 0.04 0.20 par:pas; +promulguée promulguer ver f s 0.24 1.82 0.01 0.34 par:pas; +promulguées promulguer ver f p 0.24 1.82 0.03 0.41 par:pas; +promulgués promulguer ver m p 0.24 1.82 0.00 0.14 par:pas; +promus promouvoir ver m p 6.08 3.11 0.23 0.20 ind:pas:1s;par:pas; +promut promouvoir ver 6.08 3.11 0.01 0.07 ind:pas:3s; +prométhéen prométhéen adj m s 0.04 0.00 0.03 0.00 +prométhéenne prométhéen adj f s 0.04 0.00 0.01 0.00 +pronateurs pronateur adj m p 0.01 0.00 0.01 0.00 +pronation pronation nom f s 0.04 0.14 0.04 0.14 +pronom pronom nom m s 0.22 0.74 0.12 0.68 +pronominal pronominal adj m s 0.00 0.20 0.00 0.07 +pronominale pronominal adj f s 0.00 0.20 0.00 0.07 +pronominaux pronominal adj m p 0.00 0.20 0.00 0.07 +pronoms pronom nom m p 0.22 0.74 0.10 0.07 +prononce prononcer ver 24.81 86.08 5.82 9.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +prononcent prononcer ver 24.81 86.08 0.51 0.74 ind:pre:3p; +prononcer prononcer ver 24.81 86.08 7.56 21.76 inf; +prononcera prononcer ver 24.81 86.08 0.10 0.54 ind:fut:3s; +prononcerai prononcer ver 24.81 86.08 0.20 0.00 ind:fut:1s; +prononceraient prononcer ver 24.81 86.08 0.00 0.14 cnd:pre:3p; +prononcerais prononcer ver 24.81 86.08 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +prononcerait prononcer ver 24.81 86.08 0.03 0.47 cnd:pre:3s; +prononceras prononcer ver 24.81 86.08 0.03 0.00 ind:fut:2s; +prononcerez prononcer ver 24.81 86.08 0.02 0.14 ind:fut:2p; +prononceriez prononcer ver 24.81 86.08 0.00 0.07 cnd:pre:2p; +prononcerons prononcer ver 24.81 86.08 0.12 0.00 ind:fut:1p; +prononceront prononcer ver 24.81 86.08 0.02 0.14 ind:fut:3p; +prononces prononcer ver 24.81 86.08 0.85 0.00 ind:pre:2s; +prononcez prononcer ver 24.81 86.08 0.91 0.41 imp:pre:2p;ind:pre:2p; +prononciation prononciation nom f s 0.68 1.69 0.67 1.55 +prononciations prononciation nom f p 0.68 1.69 0.01 0.14 +prononciez prononcer ver 24.81 86.08 0.18 0.00 ind:imp:2p; +prononcions prononcer ver 24.81 86.08 0.04 0.14 ind:imp:1p; +prononcèrent prononcer ver 24.81 86.08 0.00 0.41 ind:pas:3p; +prononcé prononcer ver m s 24.81 86.08 4.99 16.69 par:pas; +prononcée prononcer ver f s 24.81 86.08 0.57 4.59 par:pas; +prononcées prononcer ver f p 24.81 86.08 0.18 1.69 par:pas; +prononcés prononcer ver m p 24.81 86.08 0.50 4.12 par:pas; +prononça prononcer ver 24.81 86.08 0.58 8.78 ind:pas:3s; +prononçable prononçable adj s 0.00 0.27 0.00 0.27 +prononçai prononcer ver 24.81 86.08 0.01 1.28 ind:pas:1s; +prononçaient prononcer ver 24.81 86.08 0.01 1.15 ind:imp:3p; +prononçais prononcer ver 24.81 86.08 0.05 0.47 ind:imp:1s; +prononçait prononcer ver 24.81 86.08 0.38 8.58 ind:imp:3s; +prononçant prononcer ver 24.81 86.08 0.95 3.85 par:pre; +prononças prononcer ver 24.81 86.08 0.10 0.00 ind:pas:2s; +prononçons prononcer ver 24.81 86.08 0.07 0.20 imp:pre:1p;ind:pre:1p; +prononçât prononcer ver 24.81 86.08 0.00 0.54 sub:imp:3s; +pronostic pronostic nom m s 1.78 2.70 0.90 1.01 +pronostics pronostic nom m p 1.78 2.70 0.89 1.69 +pronostiquait pronostiquer ver 0.12 0.47 0.01 0.20 ind:imp:3s; +pronostique pronostiquer ver 0.12 0.47 0.06 0.14 ind:pre:1s;ind:pre:3s; +pronostiquer pronostiquer ver 0.12 0.47 0.04 0.14 inf; +pronostiqueur pronostiqueur nom m s 0.06 0.00 0.06 0.00 +pronostiquiez pronostiquer ver 0.12 0.47 0.01 0.00 ind:imp:2p; +pronunciamiento pronunciamiento nom m s 0.00 0.14 0.00 0.14 +propagande propagande nom f s 4.98 10.07 4.98 9.86 +propagandes propagande nom f p 4.98 10.07 0.00 0.20 +propagandiste propagandiste nom s 0.02 0.54 0.01 0.20 +propagandistes propagandiste nom p 0.02 0.54 0.01 0.34 +propagateur propagateur nom m s 0.03 0.41 0.02 0.14 +propagateurs propagateur nom m p 0.03 0.41 0.01 0.27 +propagation propagation nom f s 0.59 0.95 0.59 0.88 +propagations propagation nom f p 0.59 0.95 0.00 0.07 +propage propager ver 6.42 6.01 1.98 0.81 ind:pre:1s;ind:pre:3s; +propagea propager ver 6.42 6.01 0.01 0.61 ind:pas:3s; +propageaient propager ver 6.42 6.01 0.00 0.61 ind:imp:3p; +propageait propager ver 6.42 6.01 0.20 1.01 ind:imp:3s; +propageant propager ver 6.42 6.01 0.08 0.27 par:pre; +propagent propager ver 6.42 6.01 0.30 0.68 ind:pre:3p; +propageât propager ver 6.42 6.01 0.00 0.07 sub:imp:3s; +propager propager ver 6.42 6.01 1.99 0.88 inf; +propagera propager ver 6.42 6.01 0.41 0.00 ind:fut:3s; +propageraient propager ver 6.42 6.01 0.00 0.07 cnd:pre:3p; +propagerait propager ver 6.42 6.01 0.08 0.00 cnd:pre:3s; +propagez propager ver 6.42 6.01 0.05 0.14 imp:pre:2p;ind:pre:2p; +propagèrent propager ver 6.42 6.01 0.01 0.20 ind:pas:3p; +propagé propager ver m s 6.42 6.01 0.96 0.34 par:pas; +propagée propager ver f s 6.42 6.01 0.30 0.14 par:pas; +propagées propager ver f p 6.42 6.01 0.02 0.14 par:pas; +propagés propager ver m p 6.42 6.01 0.02 0.07 par:pas; +propane propane nom m s 0.39 0.00 0.39 0.00 +propension propension nom f s 0.41 1.96 0.41 1.96 +propergol propergol nom m s 0.01 0.00 0.01 0.00 +prophase prophase nom f s 0.02 0.00 0.02 0.00 +prophète prophète nom m s 12.36 10.61 8.49 6.42 +prophètes prophète nom m p 12.36 10.61 2.83 4.05 +prophétesse prophète nom f s 12.36 10.61 1.04 0.14 +prophétie prophétie nom f s 5.36 3.51 3.69 1.89 +prophéties prophétie nom f p 5.36 3.51 1.66 1.62 +prophétique prophétique adj s 0.84 1.55 0.55 1.01 +prophétiquement prophétiquement adv 0.00 0.07 0.00 0.07 +prophétiques prophétique adj p 0.84 1.55 0.29 0.54 +prophétisaient prophétiser ver 0.43 1.35 0.00 0.20 ind:imp:3p; +prophétisait prophétiser ver 0.43 1.35 0.00 0.47 ind:imp:3s; +prophétisant prophétiser ver 0.43 1.35 0.02 0.00 par:pre; +prophétise prophétiser ver 0.43 1.35 0.02 0.27 imp:pre:2s;ind:pre:3s; +prophétisent prophétiser ver 0.43 1.35 0.02 0.07 ind:pre:3p; +prophétiser prophétiser ver 0.43 1.35 0.14 0.14 inf; +prophétisez prophétiser ver 0.43 1.35 0.00 0.07 ind:pre:2p; +prophétisé prophétiser ver m s 0.43 1.35 0.22 0.14 par:pas; +prophylactique prophylactique adj s 0.17 0.41 0.14 0.14 +prophylactiques prophylactique adj m p 0.17 0.41 0.03 0.27 +prophylaxie prophylaxie nom f s 0.04 0.14 0.04 0.14 +propice propice adj s 2.86 9.80 2.13 7.77 +propices propice adj p 2.86 9.80 0.73 2.03 +propionate propionate nom m s 0.01 0.07 0.01 0.07 +propitiatoire propitiatoire adj s 0.00 0.68 0.00 0.47 +propitiatoires propitiatoire adj f p 0.00 0.68 0.00 0.20 +propolis propolis nom m 0.10 0.00 0.10 0.00 +proportion proportion nom f s 3.17 12.70 1.30 4.26 +proportionnalité proportionnalité nom f s 0.12 0.00 0.12 0.00 +proportionnel proportionnel adj m s 0.86 1.08 0.20 0.34 +proportionnelle proportionnel adj f s 0.86 1.08 0.51 0.74 +proportionnellement proportionnellement adv 0.08 0.34 0.08 0.34 +proportionnelles proportionnel adj f p 0.86 1.08 0.15 0.00 +proportionner proportionner ver 0.07 1.22 0.00 0.14 inf; +proportionné proportionné adj m s 0.46 0.74 0.16 0.41 +proportionnée proportionné adj f s 0.46 0.74 0.26 0.20 +proportionnées proportionner ver f p 0.07 1.22 0.02 0.00 par:pas; +proportionnés proportionné adj m p 0.46 0.74 0.04 0.07 +proportions proportion nom f p 3.17 12.70 1.87 8.45 +propos propos nom m 115.21 106.28 115.21 106.28 +proposa proposer ver 70.00 119.66 0.52 22.91 ind:pas:3s; +proposai proposer ver 70.00 119.66 0.01 2.50 ind:pas:1s; +proposaient proposer ver 70.00 119.66 0.10 3.11 ind:imp:3p; +proposais proposer ver 70.00 119.66 0.80 3.11 ind:imp:1s;ind:imp:2s; +proposait proposer ver 70.00 119.66 0.48 15.61 ind:imp:3s; +proposant proposer ver 70.00 119.66 0.64 3.38 par:pre; +propose proposer ver 70.00 119.66 23.57 21.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +proposent proposer ver 70.00 119.66 1.21 2.16 ind:pre:3p; +proposer proposer ver 70.00 119.66 13.44 15.54 inf;; +proposera proposer ver 70.00 119.66 0.28 0.34 ind:fut:3s; +proposerai proposer ver 70.00 119.66 0.48 0.14 ind:fut:1s; +proposeraient proposer ver 70.00 119.66 0.03 0.14 cnd:pre:3p; +proposerais proposer ver 70.00 119.66 0.28 0.41 cnd:pre:1s;cnd:pre:2s; +proposerait proposer ver 70.00 119.66 0.01 0.74 cnd:pre:3s; +proposeras proposer ver 70.00 119.66 0.05 0.07 ind:fut:2s; +proposerez proposer ver 70.00 119.66 0.04 0.14 ind:fut:2p; +proposeriez proposer ver 70.00 119.66 0.01 0.00 cnd:pre:2p; +proposerions proposer ver 70.00 119.66 0.00 0.07 cnd:pre:1p; +proposerons proposer ver 70.00 119.66 0.19 0.00 ind:fut:1p; +proposeront proposer ver 70.00 119.66 0.13 0.14 ind:fut:3p; +proposes proposer ver 70.00 119.66 5.20 0.61 ind:pre:2s; +proposez proposer ver 70.00 119.66 3.30 1.82 imp:pre:2p;ind:pre:2p; +proposiez proposer ver 70.00 119.66 0.09 0.00 ind:imp:2p; +proposions proposer ver 70.00 119.66 0.04 0.41 ind:imp:1p; +proposition proposition nom f s 22.43 20.14 19.28 12.64 +propositions proposition nom f p 22.43 20.14 3.15 7.50 +proposâmes proposer ver 70.00 119.66 0.00 0.07 ind:pas:1p; +proposons proposer ver 70.00 119.66 1.13 0.27 imp:pre:1p;ind:pre:1p; +proposât proposer ver 70.00 119.66 0.00 0.41 sub:imp:3s; +proposèrent proposer ver 70.00 119.66 0.01 1.08 ind:pas:3p; +proposé proposer ver m s 70.00 119.66 16.86 18.92 imp:pre:2s;par:pas; +proposée proposer ver f s 70.00 119.66 0.44 1.96 par:pas; +proposées proposé adj f p 0.54 1.15 0.14 0.27 +proposés proposer ver m p 70.00 119.66 0.63 1.22 par:pas; +propre_à_rien propre_à_rien nom m s 0.00 0.07 0.00 0.07 +propre propre adj s 163.24 207.50 120.61 149.80 +proprement proprement adv 4.54 16.22 4.54 16.22 +propres propre adj p 163.24 207.50 42.63 57.70 +propret propret adj m s 0.18 2.03 0.02 0.81 +proprets propret adj m p 0.18 2.03 0.03 0.07 +proprette propret adj f s 0.18 2.03 0.10 0.54 +proprettes propret adj f p 0.18 2.03 0.02 0.61 +propreté propreté nom f s 2.17 7.97 2.17 7.97 +proprio proprio nom m s 3.55 4.12 3.08 3.78 +proprios proprio nom m p 3.55 4.12 0.47 0.34 +propriétaire propriétaire nom s 37.27 32.77 29.77 23.51 +propriétaires propriétaire nom p 37.27 32.77 7.50 9.26 +propriété propriété nom f s 22.70 20.61 19.18 17.43 +propriétés propriété nom f p 22.70 20.61 3.52 3.18 +propédeute propédeute nom s 0.00 0.07 0.00 0.07 +propulsa propulser ver 1.37 5.95 0.01 0.61 ind:pas:3s; +propulsaient propulser ver 1.37 5.95 0.00 0.14 ind:imp:3p; +propulsais propulser ver 1.37 5.95 0.00 0.07 ind:imp:1s; +propulsait propulser ver 1.37 5.95 0.01 0.47 ind:imp:3s; +propulsant propulser ver 1.37 5.95 0.04 0.27 par:pre; +propulse propulser ver 1.37 5.95 0.32 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +propulsent propulser ver 1.37 5.95 0.02 0.20 ind:pre:3p; +propulser propulser ver 1.37 5.95 0.22 0.74 inf; +propulsera propulser ver 1.37 5.95 0.07 0.00 ind:fut:3s; +propulserait propulser ver 1.37 5.95 0.01 0.00 cnd:pre:3s; +propulseur propulseur nom m s 1.88 0.07 0.69 0.07 +propulseurs propulseur nom m p 1.88 0.07 1.18 0.00 +propulsif propulsif adj m s 0.01 0.00 0.01 0.00 +propulsion propulsion nom f s 2.07 0.34 2.05 0.34 +propulsions propulsion nom f p 2.07 0.34 0.02 0.00 +propulsât propulser ver 1.37 5.95 0.00 0.07 sub:imp:3s; +propulsé propulser ver m s 1.37 5.95 0.36 1.35 par:pas; +propulsée propulser ver f s 1.37 5.95 0.19 0.88 par:pas; +propulsées propulser ver f p 1.37 5.95 0.02 0.07 par:pas; +propulsés propulser ver m p 1.37 5.95 0.10 0.20 par:pas; +propylène propylène nom m s 0.05 0.00 0.05 0.00 +propylées propylée nom m p 0.00 0.14 0.00 0.14 +prorata prorata nom m 0.15 0.20 0.15 0.20 +prorogation prorogation nom f s 0.04 0.07 0.04 0.07 +proroger proroger ver 0.10 0.14 0.10 0.00 inf; +prorogé proroger ver m s 0.10 0.14 0.00 0.14 par:pas; +pros pro nom p 19.45 2.03 5.00 0.41 +prosaïque prosaïque adj s 0.30 1.55 0.28 0.88 +prosaïquement prosaïquement adv 0.00 0.47 0.00 0.47 +prosaïques prosaïque adj p 0.30 1.55 0.03 0.68 +prosaïsme prosaïsme nom m s 0.00 0.14 0.00 0.14 +prosateur prosateur nom m s 0.00 0.20 0.00 0.14 +prosateurs prosateur nom m p 0.00 0.20 0.00 0.07 +proscenium proscenium nom m s 0.01 0.14 0.01 0.14 +proscription proscription nom f s 0.01 0.27 0.01 0.20 +proscriptions proscription nom f p 0.01 0.27 0.00 0.07 +proscrire proscrire ver 1.19 1.28 0.35 0.14 inf; +proscrit proscrire ver m s 1.19 1.28 0.53 0.27 ind:pre:3s;par:pas; +proscrite proscrire ver f s 1.19 1.28 0.02 0.07 par:pas; +proscrites proscrire ver f p 1.19 1.28 0.11 0.07 par:pas; +proscrits proscrit nom m p 0.55 0.54 0.33 0.41 +proscrivait proscrire ver 1.19 1.28 0.00 0.14 ind:imp:3s; +proscrivant proscrire ver 1.19 1.28 0.00 0.14 par:pre; +proscrivit proscrire ver 1.19 1.28 0.00 0.14 ind:pas:3s; +prose prose nom f s 0.81 3.31 0.81 3.31 +prosit prosit ono 0.38 0.41 0.38 0.41 +prosodie prosodie nom f s 0.00 0.27 0.00 0.27 +prosodique prosodique adj f s 0.00 0.07 0.00 0.07 +prosopopées prosopopée nom f p 0.00 0.07 0.00 0.07 +prosoviétique prosoviétique adj s 0.00 0.07 0.00 0.07 +prospect prospect nom m s 0.18 0.00 0.18 0.00 +prospectais prospecter ver 0.82 1.49 0.01 0.07 ind:imp:1s; +prospectait prospecter ver 0.82 1.49 0.01 0.20 ind:imp:3s; +prospectant prospecter ver 0.82 1.49 0.00 0.20 par:pre; +prospecte prospecter ver 0.82 1.49 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prospecter prospecter ver 0.82 1.49 0.66 0.68 inf; +prospecteur prospecteur nom m s 0.94 0.27 0.34 0.07 +prospecteurs prospecteur nom m p 0.94 0.27 0.60 0.20 +prospectif prospectif adj m s 0.00 0.34 0.00 0.20 +prospection prospection nom f s 0.17 2.70 0.17 2.30 +prospections prospection nom f p 0.17 2.70 0.00 0.41 +prospective prospective nom f s 0.02 0.14 0.02 0.14 +prospecté prospecter ver m s 0.82 1.49 0.11 0.14 par:pas; +prospectus prospectus nom m 2.06 6.49 2.06 6.49 +prospère prospère adj s 3.54 3.18 3.19 2.23 +prospèrent prospérer ver 1.31 2.03 0.16 0.41 ind:pre:3p; +prospères prospère adj p 3.54 3.18 0.35 0.95 +prospéra prospérer ver 1.31 2.03 0.05 0.14 ind:pas:3s; +prospéraient prospérer ver 1.31 2.03 0.00 0.41 ind:imp:3p; +prospérait prospérer ver 1.31 2.03 0.04 0.41 ind:imp:3s; +prospérer prospérer ver 1.31 2.03 0.44 0.47 inf; +prospérera prospérer ver 1.31 2.03 0.05 0.00 ind:fut:3s; +prospéreraient prospérer ver 1.31 2.03 0.01 0.00 cnd:pre:3p; +prospérité prospérité nom f s 3.09 5.14 3.08 4.93 +prospérités prospérité nom f p 3.09 5.14 0.01 0.20 +prospérons prospérer ver 1.31 2.03 0.01 0.00 ind:pre:1p; +prospérèrent prospérer ver 1.31 2.03 0.00 0.07 ind:pas:3p; +prospéré prospérer ver m s 1.31 2.03 0.34 0.00 par:pas; +prostate prostate nom f s 1.59 1.42 1.59 1.42 +prostatectomie prostatectomie nom f s 0.01 0.00 0.01 0.00 +prostatique prostatique adj s 0.04 0.20 0.04 0.20 +prostatite prostatite nom f s 0.11 0.00 0.11 0.00 +prosterna prosterner ver 1.75 4.73 0.01 0.68 ind:pas:3s; +prosternaient prosterner ver 1.75 4.73 0.04 0.07 ind:imp:3p; +prosternais prosterner ver 1.75 4.73 0.14 0.07 ind:imp:1s; +prosternait prosterner ver 1.75 4.73 0.00 0.20 ind:imp:3s; +prosternant prosterner ver 1.75 4.73 0.18 0.14 par:pre; +prosternation prosternation nom f s 0.11 0.27 0.09 0.07 +prosternations prosternation nom f p 0.11 0.27 0.02 0.20 +prosterne prosterner ver 1.75 4.73 0.52 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prosternent prosterner ver 1.75 4.73 0.12 0.07 ind:pre:3p; +prosterner prosterner ver 1.75 4.73 0.12 0.95 inf; +prosternera prosterner ver 1.75 4.73 0.07 0.00 ind:fut:3s; +prosternerait prosterner ver 1.75 4.73 0.00 0.07 cnd:pre:3s; +prosterneras prosterner ver 1.75 4.73 0.00 0.14 ind:fut:2s; +prosternerons prosterner ver 1.75 4.73 0.03 0.00 ind:fut:1p; +prosterneront prosterner ver 1.75 4.73 0.01 0.00 ind:fut:3p; +prosternez prosterner ver 1.75 4.73 0.49 0.14 imp:pre:2p;ind:pre:2p; +prosternons prosterner ver 1.75 4.73 0.01 0.00 imp:pre:1p; +prosternèrent prosterner ver 1.75 4.73 0.01 0.14 ind:pas:3p; +prosterné prosterner ver m s 1.75 4.73 0.01 1.15 par:pas; +prosternée prosterner ver f s 1.75 4.73 0.00 0.27 par:pas; +prosternées prosterner ver f p 1.75 4.73 0.00 0.14 par:pas; +prosternés prosterner ver m p 1.75 4.73 0.01 0.27 par:pas; +prosthétique prosthétique adj m s 0.01 0.00 0.01 0.00 +prostitua prostituer ver 3.24 1.49 0.00 0.07 ind:pas:3s; +prostituais prostituer ver 3.24 1.49 0.03 0.00 ind:imp:1s; +prostituait prostituer ver 3.24 1.49 0.16 0.20 ind:imp:3s; +prostituant prostituer ver 3.24 1.49 0.01 0.07 par:pre; +prostitue prostituer ver 3.24 1.49 0.92 0.07 ind:pre:1s;ind:pre:3s; +prostituent prostituer ver 3.24 1.49 0.13 0.07 ind:pre:3p; +prostituer prostituer ver 3.24 1.49 0.77 0.47 inf; +prostituerais prostituer ver 3.24 1.49 0.14 0.00 cnd:pre:2s; +prostitution prostitution nom f s 6.72 2.97 6.72 2.77 +prostitutionnel prostitutionnel adj m s 0.00 0.07 0.00 0.07 +prostitutions prostitution nom f p 6.72 2.97 0.00 0.20 +prostitué prostituer ver m s 3.24 1.49 0.44 0.00 par:pas; +prostituée prostitué nom f s 14.21 9.46 7.53 5.68 +prostituées prostitué nom f p 14.21 9.46 5.63 3.58 +prostitués prostitué nom m p 14.21 9.46 0.61 0.14 +prostrant prostrer ver 0.00 0.07 0.00 0.07 par:pre; +prostration prostration nom f s 0.14 1.01 0.14 0.95 +prostrations prostration nom f p 0.14 1.01 0.00 0.07 +prostré prostré adj m s 0.42 4.93 0.25 2.03 +prostrée prostré adj f s 0.42 4.93 0.15 2.36 +prostrées prostré adj f p 0.42 4.93 0.00 0.07 +prostrés prostré adj m p 0.42 4.93 0.02 0.47 +prosélyte prosélyte nom s 0.14 0.20 0.14 0.00 +prosélytes prosélyte nom p 0.14 0.20 0.00 0.20 +prosélytique prosélytique adj m s 0.00 0.07 0.00 0.07 +prosélytisme prosélytisme nom m s 0.20 0.47 0.20 0.47 +protagoniste protagoniste nom s 0.72 2.03 0.42 0.54 +protagonistes protagoniste nom p 0.72 2.03 0.30 1.49 +protal protal nom m s 0.01 0.20 0.01 0.20 +prote prote nom m s 0.00 1.35 0.00 1.22 +protecteur protecteur nom m s 3.79 5.61 2.71 4.26 +protecteurs protecteur nom m p 3.79 5.61 0.79 0.68 +protection protection nom f s 24.78 17.64 23.88 17.09 +protectionnisme protectionnisme nom m s 0.02 0.14 0.02 0.14 +protections protection nom f p 24.78 17.64 0.91 0.54 +protectorat protectorat nom m s 0.18 1.01 0.18 0.88 +protectorats protectorat nom m p 0.18 1.01 0.00 0.14 +protectrice protecteur adj f s 3.98 10.68 0.92 3.58 +protectrices protecteur adj f p 3.98 10.68 0.21 0.74 +protes prote nom m p 0.00 1.35 0.00 0.14 +protesta protester ver 10.13 38.58 0.04 8.99 ind:pas:3s; +protestai protester ver 10.13 38.58 0.00 2.43 ind:pas:1s; +protestaient protester ver 10.13 38.58 0.05 0.61 ind:imp:3p; +protestais protester ver 10.13 38.58 0.03 1.01 ind:imp:1s; +protestait protester ver 10.13 38.58 0.08 4.12 ind:imp:3s; +protestant protestant adj m s 2.66 3.99 0.91 1.42 +protestante protestant adj f s 2.66 3.99 0.91 1.15 +protestantes protestant adj f p 2.66 3.99 0.14 0.61 +protestantisme protestantisme nom m s 0.31 0.81 0.31 0.81 +protestants protestant nom m p 2.43 4.12 1.79 1.76 +protestataires protestataire nom p 0.07 0.07 0.07 0.07 +protestation protestation nom f s 3.14 13.45 1.69 6.49 +protestations protestation nom f p 3.14 13.45 1.45 6.96 +proteste protester ver 10.13 38.58 3.06 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +protestent protester ver 10.13 38.58 1.06 0.61 ind:pre:3p; +protester protester ver 10.13 38.58 3.44 8.65 inf; +protestera protester ver 10.13 38.58 0.31 0.14 ind:fut:3s; +protesterai protester ver 10.13 38.58 0.05 0.14 ind:fut:1s; +protesterais protester ver 10.13 38.58 0.01 0.20 cnd:pre:1s;cnd:pre:2s; +protesterait protester ver 10.13 38.58 0.02 0.07 cnd:pre:3s; +protesterons protester ver 10.13 38.58 0.02 0.00 ind:fut:1p; +protestes protester ver 10.13 38.58 0.04 0.14 ind:pre:2s; +protestez protester ver 10.13 38.58 0.52 0.61 imp:pre:2p;ind:pre:2p; +protestions protester ver 10.13 38.58 0.00 0.14 ind:imp:1p; +protestâmes protester ver 10.13 38.58 0.00 0.07 ind:pas:1p; +protestons protester ver 10.13 38.58 0.36 0.00 imp:pre:1p;ind:pre:1p; +protestât protester ver 10.13 38.58 0.00 0.07 sub:imp:3s; +protestèrent protester ver 10.13 38.58 0.01 0.20 ind:pas:3p; +protesté protester ver m s 10.13 38.58 0.88 2.64 par:pas; +protestés protester ver m p 10.13 38.58 0.01 0.00 par:pas; +proteus proteus nom m 0.62 0.00 0.62 0.00 +proèdre proèdre nom m s 0.00 0.07 0.00 0.07 +prothrombine prothrombine nom f s 0.04 0.00 0.04 0.00 +prothèse prothèse nom f s 2.11 1.69 1.73 0.68 +prothèses prothèse nom f p 2.11 1.69 0.39 1.01 +prothésiste prothésiste nom s 0.23 0.00 0.10 0.00 +prothésistes prothésiste nom p 0.23 0.00 0.14 0.00 +prothétique prothétique adj f s 0.01 0.00 0.01 0.00 +protide protide nom m s 0.14 0.07 0.00 0.07 +protides protide nom m p 0.14 0.07 0.14 0.00 +protidique protidique adj m s 0.01 0.00 0.01 0.00 +protistes protiste nom m p 0.01 0.00 0.01 0.00 +protococcus protococcus nom m 0.01 0.00 0.01 0.00 +protocolaire protocolaire adj s 0.06 1.22 0.06 0.95 +protocolaires protocolaire adj p 0.06 1.22 0.00 0.27 +protocole protocole nom m s 6.01 5.61 4.36 5.34 +protocoles protocole nom m p 6.01 5.61 1.66 0.27 +protocoques protocoque nom m p 0.01 0.00 0.01 0.00 +protohistoire protohistoire nom f s 0.00 0.14 0.00 0.14 +proton proton nom m s 0.53 0.14 0.21 0.07 +protonique protonique adj s 0.09 0.00 0.09 0.00 +protonotaire protonotaire nom m s 0.00 0.34 0.00 0.34 +protons proton nom m p 0.53 0.14 0.32 0.07 +protoplasme protoplasme nom m s 0.09 0.00 0.08 0.00 +protoplasmes protoplasme nom m p 0.09 0.00 0.01 0.00 +protoplasmique protoplasmique adj f s 0.00 0.07 0.00 0.07 +protoplaste protoplaste nom m s 0.01 0.00 0.01 0.00 +prototype prototype nom m s 2.81 1.08 2.29 0.74 +prototypes prototype nom m p 2.81 1.08 0.53 0.34 +protoxyde protoxyde nom m s 0.11 0.00 0.11 0.00 +protozoaire protozoaire nom m s 0.04 0.00 0.04 0.00 +protrusion protrusion nom f s 0.01 0.00 0.01 0.00 +protège_cahier protège_cahier nom m s 0.01 0.07 0.01 0.07 +protège_dents protège_dents nom m 0.10 0.27 0.10 0.27 +protège_slip protège_slip nom m s 0.03 0.00 0.03 0.00 +protège_tibia protège_tibia nom m s 0.02 0.00 0.02 0.00 +protège protéger ver 130.71 72.23 27.45 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +protègent protéger ver 130.71 72.23 3.87 2.43 ind:pre:3p;sub:pre:3p; +protèges protéger ver 130.71 72.23 2.37 0.27 ind:pre:2s;sub:pre:2s; +protéase protéase nom f s 0.01 0.00 0.01 0.00 +protubérance protubérance nom f s 0.42 0.74 0.33 0.47 +protubérances protubérance nom f p 0.42 0.74 0.09 0.27 +protubérant protubérant adj m s 0.04 0.34 0.04 0.07 +protubérante protubérant adj f s 0.04 0.34 0.00 0.07 +protubérantes protubérant adj f p 0.04 0.34 0.00 0.14 +protubérants protubérant adj m p 0.04 0.34 0.00 0.07 +protégea protéger ver 130.71 72.23 0.03 0.41 ind:pas:3s; +protégeai protéger ver 130.71 72.23 0.00 0.14 ind:pas:1s; +protégeaient protéger ver 130.71 72.23 0.81 2.97 ind:imp:3p; +protégeais protéger ver 130.71 72.23 1.10 0.47 ind:imp:1s;ind:imp:2s; +protégeait protéger ver 130.71 72.23 2.42 8.45 ind:imp:3s; +protégeant protéger ver 130.71 72.23 1.15 3.65 par:pre; +protégeons protéger ver 130.71 72.23 0.81 0.00 imp:pre:1p;ind:pre:1p; +protégeât protéger ver 130.71 72.23 0.00 0.07 sub:imp:3s; +protéger protéger ver 130.71 72.23 62.53 26.82 inf;;inf;;inf;;inf;; +protégera protéger ver 130.71 72.23 4.26 0.34 ind:fut:3s; +protégerai protéger ver 130.71 72.23 1.90 0.07 ind:fut:1s; +protégeraient protéger ver 130.71 72.23 0.09 0.27 cnd:pre:3p; +protégerais protéger ver 130.71 72.23 0.21 0.07 cnd:pre:1s;cnd:pre:2s; +protégerait protéger ver 130.71 72.23 0.40 0.95 cnd:pre:3s; +protégeras protéger ver 130.71 72.23 0.31 0.00 ind:fut:2s; +protégerez protéger ver 130.71 72.23 0.29 0.00 ind:fut:2p; +protégeriez protéger ver 130.71 72.23 0.06 0.00 cnd:pre:2p; +protégerons protéger ver 130.71 72.23 0.18 0.00 ind:fut:1p; +protégeront protéger ver 130.71 72.23 0.49 0.14 ind:fut:3p; +protégez protéger ver 130.71 72.23 5.38 0.34 imp:pre:2p;ind:pre:2p; +protégiez protéger ver 130.71 72.23 0.27 0.00 ind:imp:2p; +protégions protéger ver 130.71 72.23 0.14 0.20 ind:imp:1p; +protégé protéger ver m s 130.71 72.23 7.76 6.69 par:pas; +protégée protéger ver f s 130.71 72.23 3.68 3.85 par:pas; +protégées protéger ver f p 130.71 72.23 0.73 1.15 par:pas; +protégés protéger ver m p 130.71 72.23 2.03 2.97 par:pas; +protéiforme protéiforme adj s 0.01 0.14 0.01 0.14 +protéine protéine nom f s 3.59 0.47 0.89 0.07 +protéines protéine nom f p 3.59 0.47 2.71 0.41 +protéinique protéinique adj m s 0.01 0.00 0.01 0.00 +protéiné protéiné adj m s 0.20 0.00 0.08 0.00 +protéinée protéiné adj f s 0.20 0.00 0.12 0.00 +protéinurie protéinurie nom f s 0.04 0.00 0.04 0.00 +protéique protéique adj s 0.11 0.00 0.11 0.00 +protéolytique protéolytique adj f s 0.00 0.07 0.00 0.07 +protêt protêt nom m s 0.00 0.14 0.00 0.07 +protêts protêt nom m p 0.00 0.14 0.00 0.07 +proudhonisme proudhonisme nom m s 0.00 0.07 0.00 0.07 +proue proue nom f s 1.30 5.47 1.30 5.34 +proues proue nom f p 1.30 5.47 0.00 0.14 +prouesse prouesse nom f s 1.15 5.14 0.27 1.42 +prouesses prouesse nom f p 1.15 5.14 0.88 3.72 +proéminait proéminer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +proémine proéminer ver 0.00 0.14 0.00 0.07 ind:pre:3s; +proéminence proéminence nom f s 0.01 0.14 0.01 0.00 +proéminences proéminence nom f p 0.01 0.14 0.00 0.14 +proéminent proéminent adj m s 0.46 2.36 0.04 1.15 +proéminente proéminent adj f s 0.46 2.36 0.03 0.68 +proéminentes proéminent adj f p 0.46 2.36 0.15 0.20 +proéminents proéminent adj m p 0.46 2.36 0.25 0.34 +proustien proustien adj m s 0.02 0.14 0.02 0.00 +proustienne proustien adj f s 0.02 0.14 0.00 0.14 +prout prout ono 0.04 0.27 0.04 0.27 +prouts prout nom m p 0.32 0.00 0.07 0.00 +prouva prouver ver 88.82 52.43 0.04 0.88 ind:pas:3s; +prouvable prouvable adj s 0.02 0.07 0.02 0.07 +prouvai prouver ver 88.82 52.43 0.00 0.07 ind:pas:1s; +prouvaient prouver ver 88.82 52.43 0.14 1.22 ind:imp:3p; +prouvais prouver ver 88.82 52.43 0.08 0.07 ind:imp:1s; +prouvait prouver ver 88.82 52.43 0.53 5.14 ind:imp:3s; +prouvant prouver ver 88.82 52.43 1.09 1.42 par:pre; +prouve prouver ver 88.82 52.43 23.25 13.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +prouvent prouver ver 88.82 52.43 2.71 1.35 ind:pre:3p; +prouver prouver ver 88.82 52.43 41.05 21.15 inf; +prouvera prouver ver 88.82 52.43 2.18 0.27 ind:fut:3s; +prouverai prouver ver 88.82 52.43 2.82 0.34 ind:fut:1s; +prouveraient prouver ver 88.82 52.43 0.01 0.07 cnd:pre:3p; +prouverait prouver ver 88.82 52.43 0.91 0.54 cnd:pre:3s; +prouveras prouver ver 88.82 52.43 0.34 0.07 ind:fut:2s; +prouverez prouver ver 88.82 52.43 0.26 0.14 ind:fut:2p; +prouverons prouver ver 88.82 52.43 0.29 0.00 ind:fut:1p; +prouveront prouver ver 88.82 52.43 0.62 0.20 ind:fut:3p; +prouves prouver ver 88.82 52.43 0.45 0.00 ind:pre:2s; +prouvez prouver ver 88.82 52.43 2.44 0.07 imp:pre:2p;ind:pre:2p; +prouviez prouver ver 88.82 52.43 0.33 0.00 ind:imp:2p; +prouvons prouver ver 88.82 52.43 0.27 0.07 imp:pre:1p;ind:pre:1p; +prouvèrent prouver ver 88.82 52.43 0.01 0.20 ind:pas:3p; +prouvé prouver ver m s 88.82 52.43 8.53 5.41 par:pas; +prouvée prouver ver f s 88.82 52.43 0.24 0.34 par:pas; +prouvées prouver ver f p 88.82 52.43 0.05 0.00 par:pas; +prouvés prouver ver m p 88.82 52.43 0.20 0.00 par:pas; +provenaient provenir ver 13.66 15.34 0.41 1.55 ind:imp:3p; +provenait provenir ver 13.66 15.34 0.98 3.04 ind:imp:3s; +provenance provenance nom f s 3.73 5.27 3.73 4.80 +provenances provenance nom f p 3.73 5.27 0.00 0.47 +provenant provenir ver 13.66 15.34 3.74 6.15 par:pre; +provende provende nom f s 0.00 0.95 0.00 0.95 +provenir provenir ver 13.66 15.34 1.36 1.89 inf; +provençal provençal adj m s 0.05 3.58 0.01 1.28 +provençale provençal adj f s 0.05 3.58 0.03 1.69 +provençales provençal adj f p 0.05 3.58 0.01 0.20 +provençaux provençal adj m p 0.05 3.58 0.00 0.41 +provenu provenir ver m s 13.66 15.34 0.01 0.00 par:pas; +proverbe proverbe nom m s 4.90 4.19 3.90 2.64 +proverbes proverbe nom m p 4.90 4.19 1.00 1.55 +proverbial proverbial adj m s 0.04 0.81 0.01 0.14 +proverbiale proverbial adj f s 0.04 0.81 0.02 0.68 +providence providence nom f s 2.04 2.50 2.04 2.50 +providentiel providentiel adj m s 0.54 3.38 0.48 1.49 +providentielle providentiel adj f s 0.54 3.38 0.04 1.55 +providentiellement providentiellement adv 0.00 0.61 0.00 0.61 +providentielles providentiel adj f p 0.54 3.38 0.01 0.07 +providentiels providentiel adj m p 0.54 3.38 0.01 0.27 +provider provider nom m s 0.03 0.00 0.03 0.00 +proviendrait provenir ver 13.66 15.34 0.03 0.07 cnd:pre:3s; +provienne provenir ver 13.66 15.34 0.16 0.07 sub:pre:3s; +proviennent provenir ver 13.66 15.34 1.77 0.61 ind:pre:3p; +provient provenir ver 13.66 15.34 5.19 1.96 ind:pre:3s; +provietnamien provietnamien adj m s 0.00 0.07 0.00 0.07 +province province nom f s 12.01 30.68 10.21 24.73 +provinces province nom f p 12.01 30.68 1.79 5.95 +provincial provincial adj m s 1.26 5.74 0.28 1.55 +provinciale provincial adj f s 1.26 5.74 0.96 3.11 +provincialement provincialement adv 0.00 0.07 0.00 0.07 +provinciales provincial adj f p 1.26 5.74 0.00 0.88 +provinciaux provincial nom m p 0.78 2.09 0.51 0.81 +proviseur proviseur nom m s 4.45 3.58 4.43 3.45 +proviseurs proviseur nom m p 4.45 3.58 0.02 0.14 +provision provision nom f s 7.46 18.04 1.01 5.34 +provisionnel provisionnel adj m s 0.01 0.20 0.01 0.20 +provisionner provisionner ver 0.00 0.14 0.00 0.07 inf; +provisionnons provisionner ver 0.00 0.14 0.00 0.07 imp:pre:1p; +provisions provision nom f p 7.46 18.04 6.45 12.70 +provisoire provisoire adj s 5.80 16.28 5.44 13.85 +provisoirement provisoirement adv 1.52 7.84 1.52 7.84 +provisoires provisoire adj p 5.80 16.28 0.36 2.43 +provo provo nom m s 0.17 0.14 0.12 0.00 +provoc provoc nom f s 0.21 0.14 0.21 0.14 +provocant provocant adj m s 1.23 5.68 0.17 1.76 +provocante provocant adj f s 1.23 5.68 0.73 2.91 +provocantes provocant adj f p 1.23 5.68 0.15 0.47 +provocants provocant adj m p 1.23 5.68 0.17 0.54 +provocateur provocateur nom m s 0.56 1.01 0.53 0.61 +provocateurs provocateur adj m p 0.32 1.15 0.04 0.47 +provocation provocation nom f s 4.19 11.01 3.32 8.99 +provocations provocation nom f p 4.19 11.01 0.87 2.03 +provocatrice provocateur adj f s 0.32 1.15 0.02 0.07 +provolone provolone nom m s 0.18 0.00 0.18 0.00 +provoqua provoquer ver 34.19 48.85 0.44 3.38 ind:pas:3s; +provoquai provoquer ver 34.19 48.85 0.00 0.07 ind:pas:1s; +provoquaient provoquer ver 34.19 48.85 0.08 2.30 ind:imp:3p; +provoquais provoquer ver 34.19 48.85 0.37 0.34 ind:imp:1s;ind:imp:2s; +provoquait provoquer ver 34.19 48.85 1.06 6.89 ind:imp:3s; +provoquant provoquer ver 34.19 48.85 0.95 2.97 par:pre; +provoque provoquer ver 34.19 48.85 7.12 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +provoquent provoquer ver 34.19 48.85 1.20 1.22 ind:pre:3p; +provoquer provoquer ver 34.19 48.85 9.30 12.23 inf; +provoquera provoquer ver 34.19 48.85 0.65 0.27 ind:fut:3s; +provoquerai provoquer ver 34.19 48.85 0.04 0.00 ind:fut:1s; +provoqueraient provoquer ver 34.19 48.85 0.01 0.14 cnd:pre:3p; +provoquerais provoquer ver 34.19 48.85 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +provoquerait provoquer ver 34.19 48.85 0.39 0.68 cnd:pre:3s; +provoquerez provoquer ver 34.19 48.85 0.04 0.07 ind:fut:2p; +provoqueriez provoquer ver 34.19 48.85 0.11 0.07 cnd:pre:2p; +provoquerions provoquer ver 34.19 48.85 0.01 0.07 cnd:pre:1p; +provoquerons provoquer ver 34.19 48.85 0.03 0.00 ind:fut:1p; +provoqueront provoquer ver 34.19 48.85 0.02 0.07 ind:fut:3p; +provoques provoquer ver 34.19 48.85 1.19 0.00 ind:pre:2s; +provoquez provoquer ver 34.19 48.85 0.50 0.00 imp:pre:2p;ind:pre:2p; +provoquions provoquer ver 34.19 48.85 0.00 0.07 ind:imp:1p; +provoquons provoquer ver 34.19 48.85 0.23 0.00 imp:pre:1p;ind:pre:1p; +provoquât provoquer ver 34.19 48.85 0.01 0.34 sub:imp:3s; +provoquèrent provoquer ver 34.19 48.85 0.01 0.27 ind:pas:3p; +provoqué provoquer ver m s 34.19 48.85 8.07 7.36 par:pas; +provoquée provoquer ver f s 34.19 48.85 1.27 2.50 par:pas; +provoquées provoquer ver f p 34.19 48.85 0.34 1.42 par:pas; +provoqués provoquer ver m p 34.19 48.85 0.59 0.88 par:pas; +provos provo nom m p 0.17 0.14 0.05 0.14 +provéditeur provéditeur nom m s 0.00 0.14 0.00 0.07 +provéditeurs provéditeur nom m p 0.00 0.14 0.00 0.07 +proximal proximal adj m s 0.11 0.27 0.07 0.27 +proximale proximal adj f s 0.11 0.27 0.04 0.00 +proximité proximité nom f s 3.99 14.46 3.99 14.46 +proxo proxo nom m s 0.06 0.41 0.06 0.34 +proxos proxo nom m p 0.06 0.41 0.00 0.07 +proxénète proxénète nom s 0.71 1.01 0.52 0.74 +proxénètes proxénète nom p 0.71 1.01 0.20 0.27 +proxénétisme proxénétisme nom m s 0.42 0.41 0.42 0.41 +proze proze nom m s 0.00 0.41 0.00 0.41 +prèle prèle nom f s 0.02 0.00 0.02 0.00 +près_de près_de adv 4.10 16.35 4.10 16.35 +près près pre 134.13 285.41 134.13 285.41 +pré_salé pré_salé nom m s 0.00 0.20 0.00 0.20 +pré_établi pré_établi adj m s 0.00 0.07 0.00 0.07 +pré pré nom m s 21.59 32.50 5.03 19.80 +préadolescence préadolescence nom f s 0.01 0.00 0.01 0.00 +préadolescente préadolescent nom f s 0.01 0.00 0.01 0.00 +préalable préalable nom m s 0.91 2.03 0.91 1.96 +préalablement préalablement adv 0.08 2.03 0.08 2.03 +préalables préalable adj p 0.59 2.70 0.04 0.34 +préambule préambule nom m s 0.29 2.77 0.25 2.57 +préambules préambule nom m p 0.29 2.77 0.05 0.20 +préau préau nom m s 0.10 4.59 0.10 3.51 +préaux préau nom m p 0.10 4.59 0.00 1.08 +préavis préavis nom m 2.00 1.08 2.00 1.08 +prébendes prébende nom f p 0.00 0.20 0.00 0.20 +précaire précaire adj s 0.98 6.35 0.86 5.41 +précairement précairement adv 0.00 0.47 0.00 0.47 +précaires précaire adj p 0.98 6.35 0.13 0.95 +précambrien précambrien adj m s 0.02 0.00 0.01 0.00 +précambrienne précambrien adj f s 0.02 0.00 0.01 0.00 +précarité précarité nom f s 0.19 1.35 0.19 1.35 +précaution précaution nom f s 10.26 36.01 4.80 19.39 +précautionneuse précautionneux adj f s 0.06 3.24 0.03 0.47 +précautionneusement précautionneusement adv 0.01 3.72 0.01 3.72 +précautionneuses précautionneux adj f p 0.06 3.24 0.00 0.27 +précautionneux précautionneux adj m 0.06 3.24 0.04 2.50 +précautions précaution nom f p 10.26 36.01 5.45 16.62 +précellence précellence nom f s 0.00 0.07 0.00 0.07 +précelles précelles nom f p 0.00 0.07 0.00 0.07 +précepte précepte nom m s 1.55 2.23 0.17 1.08 +préceptes précepte nom m p 1.55 2.23 1.38 1.15 +précepteur précepteur nom m s 0.80 2.91 0.32 2.16 +précepteurs précepteur nom m p 0.80 2.91 0.04 0.68 +préceptrice précepteur nom f s 0.80 2.91 0.44 0.07 +précession précession nom f s 0.00 0.20 0.00 0.20 +prêcha prêcher ver 7.82 7.43 0.12 0.20 ind:pas:3s; +prêchaient prêcher ver 7.82 7.43 0.03 0.61 ind:imp:3p; +prêchais prêcher ver 7.82 7.43 0.04 0.07 ind:imp:1s;ind:imp:2s; +prêchait prêcher ver 7.82 7.43 0.49 1.55 ind:imp:3s; +prêchant prêcher ver 7.82 7.43 0.34 0.27 par:pre; +préchauffage préchauffage nom m s 0.02 0.00 0.02 0.00 +préchauffer préchauffer ver 0.01 0.00 0.01 0.00 inf; +prêche prêcher ver 7.82 7.43 1.70 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prêchent prêcher ver 7.82 7.43 0.77 0.41 ind:pre:3p; +prêcher prêcher ver 7.82 7.43 3.06 2.36 inf; +prêches prêcher ver 7.82 7.43 0.20 0.14 ind:pre:2s; +prêcheur prêcheur nom m s 0.82 4.59 0.58 0.74 +prêcheurs prêcheur nom m p 0.82 4.59 0.20 3.78 +prêcheuse prêcheur nom f s 0.82 4.59 0.03 0.07 +prêchez prêcher ver 7.82 7.43 0.25 0.07 imp:pre:2p;ind:pre:2p; +prêchi_prêcha prêchi_prêcha nom m 0.11 0.14 0.11 0.14 +prêché prêcher ver m s 7.82 7.43 0.63 0.88 par:pas; +prêchée prêcher ver f s 7.82 7.43 0.20 0.14 par:pas; +précieuse précieux adj f s 24.66 39.19 6.96 8.85 +précieusement précieusement adv 0.44 1.76 0.44 1.76 +précieuses précieux adj f p 24.66 39.19 1.58 7.43 +précieux précieux adj m 24.66 39.19 16.13 22.91 +préciosité préciosité nom f s 0.02 1.28 0.02 1.08 +préciosités préciosité nom f p 0.02 1.28 0.00 0.20 +précipice précipice nom m s 1.67 3.38 1.44 1.62 +précipices précipice nom m p 1.67 3.38 0.24 1.76 +précipita précipiter ver 11.89 66.96 0.19 14.05 ind:pas:3s; +précipitai précipiter ver 11.89 66.96 0.01 2.09 ind:pas:1s; +précipitaient précipiter ver 11.89 66.96 0.02 2.91 ind:imp:3p; +précipitais précipiter ver 11.89 66.96 0.04 0.88 ind:imp:1s;ind:imp:2s; +précipitait précipiter ver 11.89 66.96 0.08 5.95 ind:imp:3s; +précipitamment précipitamment adv 0.99 10.14 0.99 10.14 +précipitant précipiter ver 11.89 66.96 0.31 2.23 par:pre; +précipitation précipitation nom f s 2.35 6.35 1.90 6.15 +précipitations précipitation nom f p 2.35 6.35 0.45 0.20 +précipite précipiter ver 11.89 66.96 2.10 11.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +précipitent précipiter ver 11.89 66.96 0.51 2.84 ind:pre:3p; +précipiter précipiter ver 11.89 66.96 2.53 9.46 inf;; +précipitera précipiter ver 11.89 66.96 0.05 0.00 ind:fut:3s; +précipiterai précipiter ver 11.89 66.96 0.04 0.14 ind:fut:1s; +précipiteraient précipiter ver 11.89 66.96 0.05 0.20 cnd:pre:3p; +précipiterais précipiter ver 11.89 66.96 0.20 0.00 cnd:pre:1s;cnd:pre:2s; +précipiterait précipiter ver 11.89 66.96 0.02 0.74 cnd:pre:3s; +précipiteras précipiter ver 11.89 66.96 0.01 0.07 ind:fut:2s; +précipiterez précipiter ver 11.89 66.96 0.00 0.07 ind:fut:2p; +précipiterions précipiter ver 11.89 66.96 0.00 0.14 cnd:pre:1p; +précipiteront précipiter ver 11.89 66.96 0.02 0.14 ind:fut:3p; +précipites précipiter ver 11.89 66.96 0.37 0.20 ind:pre:2s;sub:pre:2s; +précipitez précipiter ver 11.89 66.96 0.44 0.14 imp:pre:2p;ind:pre:2p; +précipitiez précipiter ver 11.89 66.96 0.03 0.00 ind:imp:2p; +précipitions précipiter ver 11.89 66.96 0.00 0.14 ind:imp:1p; +précipitâmes précipiter ver 11.89 66.96 0.00 0.34 ind:pas:1p; +précipitons précipiter ver 11.89 66.96 0.36 0.47 imp:pre:1p;ind:pre:1p; +précipitât précipiter ver 11.89 66.96 0.00 0.27 sub:imp:3s; +précipitèrent précipiter ver 11.89 66.96 0.20 1.82 ind:pas:3p; +précipité précipiter ver m s 11.89 66.96 2.67 6.55 par:pas; +précipitée précipiter ver f s 11.89 66.96 1.36 2.09 par:pas; +précipitées précipité adj f p 1.83 8.45 0.10 0.95 +précipités précipiter ver m p 11.89 66.96 0.23 1.55 par:pas; +préciputs préciput nom m p 0.00 0.07 0.00 0.07 +précis précis adj m 31.59 61.82 20.18 38.24 +précisa préciser ver 9.29 48.31 0.00 8.65 ind:pas:3s; +précisai préciser ver 9.29 48.31 0.00 0.74 ind:pas:1s; +précisaient préciser ver 9.29 48.31 0.02 0.95 ind:imp:3p; +précisais préciser ver 9.29 48.31 0.01 0.47 ind:imp:1s;ind:imp:2s; +précisait préciser ver 9.29 48.31 0.06 4.26 ind:imp:3s; +précisant préciser ver 9.29 48.31 0.12 2.77 par:pre; +précise précis adj f s 31.59 61.82 6.97 15.68 +précisent préciser ver 9.29 48.31 0.39 0.81 ind:pre:3p; +préciser préciser ver 9.29 48.31 3.77 13.04 inf; +précisera préciser ver 9.29 48.31 0.00 0.20 ind:fut:3s; +préciserai préciser ver 9.29 48.31 0.02 0.20 ind:fut:1s; +préciserais préciser ver 9.29 48.31 0.01 0.07 cnd:pre:1s; +préciserait préciser ver 9.29 48.31 0.00 0.14 cnd:pre:3s; +préciserez préciser ver 9.29 48.31 0.00 0.07 ind:fut:2p; +préciseront préciser ver 9.29 48.31 0.00 0.07 ind:fut:3p; +précises précis adj f p 31.59 61.82 4.43 7.91 +précisez préciser ver 9.29 48.31 0.38 0.14 imp:pre:2p; +précision précision nom f s 6.86 24.26 5.50 18.99 +précisions précision nom f p 6.86 24.26 1.35 5.27 +précisons préciser ver 9.29 48.31 0.02 0.00 imp:pre:1p;ind:pre:1p; +précisât préciser ver 9.29 48.31 0.00 0.34 sub:imp:3s; +précisèrent préciser ver 9.29 48.31 0.00 0.47 ind:pas:3p; +précisé préciser ver m s 9.29 48.31 2.48 5.34 par:pas; +précisée préciser ver f s 9.29 48.31 0.14 0.74 par:pas; +précisées préciser ver f p 9.29 48.31 0.01 0.68 par:pas; +précisément précisément adv 12.80 34.80 12.80 34.80 +précisés préciser ver m p 9.29 48.31 0.01 0.07 par:pas; +précité précité adj m s 0.04 0.41 0.01 0.14 +précitée précité adj f s 0.04 0.41 0.01 0.00 +précitées précité adj f p 0.04 0.41 0.01 0.20 +précités précité adj m p 0.04 0.41 0.01 0.07 +précoce précoce adj s 2.66 5.61 2.31 4.39 +précocement précocement adv 0.01 1.15 0.01 1.15 +précoces précoce adj p 2.66 5.61 0.35 1.22 +précocité précocité nom f s 0.12 1.35 0.12 1.35 +précognition précognition nom f s 0.03 0.00 0.03 0.00 +précolombien précolombien adj m s 0.06 0.07 0.02 0.00 +précolombienne précolombien adj f s 0.06 0.07 0.04 0.00 +précolombiennes précolombien adj f p 0.06 0.07 0.00 0.07 +préconisa préconiser ver 1.80 1.96 0.00 0.14 ind:pas:3s; +préconisaient préconiser ver 1.80 1.96 0.00 0.20 ind:imp:3p; +préconisais préconiser ver 1.80 1.96 0.03 0.00 ind:imp:1s;ind:imp:2s; +préconisait préconiser ver 1.80 1.96 0.02 0.41 ind:imp:3s; +préconisant préconiser ver 1.80 1.96 0.01 0.00 par:pre; +préconisation préconisation nom f s 0.01 0.00 0.01 0.00 +préconise préconiser ver 1.80 1.96 0.82 0.41 ind:pre:1s;ind:pre:3s; +préconisent préconiser ver 1.80 1.96 0.17 0.14 ind:pre:3p; +préconiser préconiser ver 1.80 1.96 0.15 0.20 inf; +préconiserais préconiser ver 1.80 1.96 0.11 0.00 cnd:pre:1s; +préconises préconiser ver 1.80 1.96 0.01 0.07 ind:pre:2s; +préconisez préconiser ver 1.80 1.96 0.14 0.00 imp:pre:2p;ind:pre:2p; +préconisiez préconiser ver 1.80 1.96 0.02 0.00 ind:imp:2p; +préconisât préconiser ver 1.80 1.96 0.00 0.07 sub:imp:3s; +préconisé préconiser ver m s 1.80 1.96 0.19 0.20 par:pas; +préconisée préconiser ver f s 1.80 1.96 0.11 0.07 par:pas; +préconisées préconiser ver f p 1.80 1.96 0.00 0.07 par:pas; +préconisés préconiser ver m p 1.80 1.96 0.01 0.00 par:pas; +préconçu préconçu adj m s 0.06 0.81 0.00 0.07 +préconçue préconçu adj f s 0.06 0.81 0.04 0.20 +préconçues préconcevoir ver f p 0.04 0.00 0.04 0.00 par:pas; +précède précéder ver 6.09 41.22 1.30 7.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +précèdent précéder ver 6.09 41.22 0.30 2.16 ind:pre:3p; +précéda précéder ver 6.09 41.22 0.01 2.09 ind:pas:3s; +précédai précéder ver 6.09 41.22 0.00 0.07 ind:pas:1s; +précédaient précéder ver 6.09 41.22 0.04 1.76 ind:imp:3p; +précédais précéder ver 6.09 41.22 0.00 0.14 ind:imp:1s; +précédait précéder ver 6.09 41.22 0.20 5.54 ind:imp:3s; +précédant précéder ver 6.09 41.22 0.87 3.78 par:pre; +précédassent précéder ver 6.09 41.22 0.00 0.07 sub:imp:3p; +précédemment précédemment adv 11.48 2.16 11.48 2.16 +précédent précédent nom m s 5.08 10.07 3.36 4.66 +précédente précédent adj f s 7.63 24.12 2.21 8.99 +précédentes précédent adj f p 7.63 24.12 0.94 3.38 +précédents précédent adj m p 7.63 24.12 2.16 5.61 +précéder précéder ver 6.09 41.22 0.09 2.23 inf; +précédera précéder ver 6.09 41.22 0.13 0.14 ind:fut:3s; +précéderai précéder ver 6.09 41.22 0.14 0.00 ind:fut:1s; +précéderaient précéder ver 6.09 41.22 0.00 0.14 cnd:pre:3p; +précéderait précéder ver 6.09 41.22 0.01 0.20 cnd:pre:3s; +précéderions précéder ver 6.09 41.22 0.00 0.07 cnd:pre:1p; +précédez précéder ver 6.09 41.22 0.50 0.07 imp:pre:2p;ind:pre:2p; +précédons précéder ver 6.09 41.22 0.02 0.00 ind:pre:1p; +précédèrent précéder ver 6.09 41.22 0.02 1.76 ind:pas:3p; +précédé précéder ver m s 6.09 41.22 1.27 7.77 par:pas; +précédée précéder ver f s 6.09 41.22 0.56 2.97 par:pas; +précédées précéder ver f p 6.09 41.22 0.18 0.41 par:pas; +précédés précéder ver m p 6.09 41.22 0.45 2.84 par:pas; +précuit précuit adj m s 0.12 0.00 0.01 0.00 +précuites précuit adj f p 0.12 0.00 0.11 0.00 +précurseur précurseur nom m s 0.34 1.49 0.14 1.01 +précurseurs précurseur nom m p 0.34 1.49 0.20 0.47 +prud_homme prud_homme nom m s 0.21 0.07 0.01 0.00 +prud_homme prud_homme nom m p 0.21 0.07 0.20 0.07 +prédateur prédateur nom m s 2.38 0.68 1.54 0.34 +prédateurs prédateur nom m p 2.38 0.68 0.84 0.34 +prédation prédation nom f s 0.04 0.00 0.04 0.00 +prédatrice prédateur adj f s 0.40 0.54 0.11 0.07 +prude prude adj s 0.52 0.81 0.50 0.61 +prédelle prédelle nom f s 0.00 0.14 0.00 0.14 +prudemment prudemment adv 2.76 9.86 2.76 9.86 +prudence prudence nom f s 5.04 20.07 5.04 19.32 +prudences prudence nom f p 5.04 20.07 0.00 0.74 +prudent prudent adj m s 37.60 20.41 23.79 12.43 +prudente prudent adj f s 37.60 20.41 6.15 4.53 +prudentes prudent adj f p 37.60 20.41 0.54 0.68 +prudents prudent adj m p 37.60 20.41 7.13 2.77 +pruderie pruderie nom f s 0.01 0.68 0.01 0.54 +pruderies pruderie nom f p 0.01 0.68 0.00 0.14 +prudes prude nom p 0.51 0.47 0.20 0.14 +prédestinaient prédestiner ver 0.65 0.74 0.00 0.14 ind:imp:3p; +prédestination prédestination nom f s 0.04 1.01 0.04 0.95 +prédestinations prédestination nom f p 0.04 1.01 0.00 0.07 +prédestiné prédestiner ver m s 0.65 0.74 0.41 0.27 par:pas; +prédestinée prédestiner ver f s 0.65 0.74 0.20 0.07 par:pas; +prédestinées prédestiné adj f p 0.08 0.81 0.00 0.07 +prédestinés prédestiner ver m p 0.65 0.74 0.04 0.27 par:pas; +prudhommesque prudhommesque adj m s 0.14 0.07 0.14 0.00 +prudhommesques prudhommesque adj f p 0.14 0.07 0.00 0.07 +prédicant prédicant nom m s 0.00 0.54 0.00 0.27 +prédicants prédicant nom m p 0.00 0.54 0.00 0.27 +prédicat prédicat nom m s 0.01 0.00 0.01 0.00 +prédicateur prédicateur nom m s 0.84 1.69 0.66 1.01 +prédicateurs prédicateur nom m p 0.84 1.69 0.19 0.68 +prédication prédication nom f s 0.29 0.61 0.25 0.41 +prédications prédication nom f p 0.29 0.61 0.05 0.20 +prédictible prédictible adj s 0.01 0.00 0.01 0.00 +prédictif prédictif adj m s 0.05 0.00 0.01 0.00 +prédiction prédiction nom f s 2.06 3.24 1.08 1.89 +prédictions prédiction nom f p 2.06 3.24 0.98 1.35 +prédictive prédictif adj f s 0.05 0.00 0.04 0.00 +prédigestion prédigestion nom f s 0.00 0.07 0.00 0.07 +prédigéré prédigéré adj m s 0.01 0.00 0.01 0.00 +prédilection prédilection nom f s 0.35 3.18 0.34 3.11 +prédilections prédilection nom f p 0.35 3.18 0.01 0.07 +prédira prédire ver 9.05 6.82 0.01 0.00 ind:fut:3s; +prédire prédire ver 9.05 6.82 2.52 1.28 inf; +prédirent prédire ver 9.05 6.82 0.00 0.07 ind:pas:3p; +prédirez prédire ver 9.05 6.82 0.01 0.00 ind:fut:2p; +prédis prédire ver 9.05 6.82 1.02 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prédisaient prédire ver 9.05 6.82 0.03 0.14 ind:imp:3p; +prédisait prédire ver 9.05 6.82 0.12 0.61 ind:imp:3s; +prédisant prédire ver 9.05 6.82 0.12 0.20 par:pre; +prédise prédire ver 9.05 6.82 0.16 0.00 sub:pre:1s;sub:pre:3s; +prédisent prédire ver 9.05 6.82 0.25 0.20 ind:pre:3p; +prédisez prédire ver 9.05 6.82 0.04 0.00 ind:pre:2p; +prédisiez prédire ver 9.05 6.82 0.00 0.07 ind:imp:2p; +prédisposait prédisposer ver 0.27 0.68 0.00 0.07 ind:imp:3s; +prédisposant prédisposer ver 0.27 0.68 0.00 0.07 par:pre; +prédispose prédisposer ver 0.27 0.68 0.03 0.27 imp:pre:2s;ind:pre:3s; +prédisposition prédisposition nom f s 0.46 0.41 0.21 0.27 +prédispositions prédisposition nom f p 0.46 0.41 0.25 0.14 +prédisposé prédisposer ver m s 0.27 0.68 0.09 0.14 par:pas; +prédisposée prédisposer ver f s 0.27 0.68 0.13 0.07 par:pas; +prédisposées prédisposer ver f p 0.27 0.68 0.01 0.07 par:pas; +prédisposés prédisposer ver m p 0.27 0.68 0.01 0.00 par:pas; +prédit prédire ver m s 9.05 6.82 4.46 3.38 ind:pre:3s;par:pas; +prédite prédire ver f s 9.05 6.82 0.32 0.07 par:pas; +prédominaient prédominer ver 0.12 0.27 0.00 0.07 ind:imp:3p; +prédominait prédominer ver 0.12 0.27 0.00 0.14 ind:imp:3s; +prédominance prédominance nom f s 0.01 0.47 0.01 0.47 +prédominant prédominant adj m s 0.11 0.34 0.04 0.14 +prédominante prédominant adj f s 0.11 0.34 0.07 0.20 +prédomine prédominer ver 0.12 0.27 0.08 0.00 ind:pre:3s; +prédominer prédominer ver 0.12 0.27 0.01 0.00 inf; +prédécesseur prédécesseur nom m s 2.27 3.18 1.60 1.96 +prédécesseurs prédécesseur nom m p 2.27 3.18 0.67 1.22 +prédécoupée prédécoupé adj f s 0.01 0.00 0.01 0.00 +prédéfini prédéfinir ver m s 0.03 0.00 0.01 0.00 par:pas; +prédéfinies prédéfinir ver f p 0.03 0.00 0.01 0.00 par:pas; +prédéterminer prédéterminer ver 0.55 0.07 0.00 0.07 inf; +prédéterminé prédéterminer ver m s 0.55 0.07 0.24 0.00 par:pas; +prédéterminée prédéterminer ver f s 0.55 0.07 0.26 0.00 par:pas; +prédéterminées prédéterminer ver f p 0.55 0.07 0.02 0.00 par:pas; +prédéterminés prédéterminer ver m p 0.55 0.07 0.02 0.00 par:pas; +préemption préemption nom f s 0.05 0.07 0.05 0.07 +préemptive préemptif adj f s 0.01 0.00 0.01 0.00 +préencollé préencollé adj m s 0.01 0.00 0.01 0.00 +préexistaient préexister ver 0.01 0.27 0.00 0.07 ind:imp:3p; +préexistait préexister ver 0.01 0.27 0.00 0.07 ind:imp:3s; +préexistant préexistant adj m s 0.04 0.00 0.01 0.00 +préexistante préexistant adj f s 0.04 0.00 0.03 0.00 +préexistants préexistant adj m p 0.04 0.00 0.01 0.00 +préexiste préexister ver 0.01 0.27 0.00 0.14 ind:pre:3s; +préexisté préexister ver m s 0.01 0.27 0.01 0.00 par:pas; +préfabriqué préfabriqué adj m s 0.62 1.42 0.19 0.88 +préfabriquée préfabriqué adj f s 0.62 1.42 0.23 0.14 +préfabriquées préfabriqué adj f p 0.62 1.42 0.00 0.20 +préfabriqués préfabriqué adj m p 0.62 1.42 0.20 0.20 +préface préface nom f s 0.42 2.97 0.42 2.64 +préfacent préfacer ver 0.04 0.34 0.00 0.07 ind:pre:3p; +préfacer préfacer ver 0.04 0.34 0.04 0.00 inf; +préfaces préface nom f p 0.42 2.97 0.00 0.34 +préfacier préfacier nom m s 0.00 0.07 0.00 0.07 +préfacé préfacer ver m s 0.04 0.34 0.00 0.14 par:pas; +préfacées préfacer ver f p 0.04 0.34 0.00 0.07 par:pas; +préfectance préfectance nom f s 0.00 0.14 0.00 0.14 +préfectorale préfectoral adj f s 0.00 0.07 0.00 0.07 +préfecture préfecture nom f s 3.98 7.91 3.97 7.36 +préfectures préfecture nom f p 3.98 7.91 0.01 0.54 +préfet préfet nom m s 7.56 8.45 7.42 7.09 +préfets préfet nom m p 7.56 8.45 0.14 1.35 +préfiguraient préfigurer ver 0.02 1.69 0.00 0.34 ind:imp:3p; +préfigurait préfigurer ver 0.02 1.69 0.00 0.34 ind:imp:3s; +préfigurant préfigurer ver 0.02 1.69 0.00 0.07 par:pre; +préfiguration préfiguration nom f s 0.00 0.61 0.00 0.61 +préfigure préfigurer ver 0.02 1.69 0.01 0.41 ind:pre:3s; +préfigurent préfigurer ver 0.02 1.69 0.00 0.14 ind:pre:3p; +préfigurer préfigurer ver 0.02 1.69 0.01 0.07 inf; +préfiguré préfigurer ver m s 0.02 1.69 0.00 0.07 par:pas; +préfigurée préfigurer ver f s 0.02 1.69 0.00 0.27 par:pas; +préfix préfix adj m 0.01 0.00 0.01 0.00 +préfixation préfixation nom f s 0.01 0.00 0.01 0.00 +préfixe préfixe nom m s 0.35 0.34 0.23 0.14 +préfixes préfixe nom m p 0.35 0.34 0.12 0.20 +préformait préformer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +préformation préformation nom f s 0.00 0.07 0.00 0.07 +préformer préformer ver 0.00 0.14 0.00 0.07 inf; +préfrontal préfrontal adj m s 0.06 0.07 0.05 0.00 +préfrontale préfrontal adj f s 0.06 0.07 0.01 0.07 +préfère préférer ver 179.44 133.38 90.34 36.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +préfèrent préférer ver 179.44 133.38 5.94 3.85 ind:pre:3p;sub:pre:3p; +préfères préférer ver 179.44 133.38 21.62 5.68 ind:pre:2s; +préféra préférer ver 179.44 133.38 0.32 4.66 ind:pas:3s; +préférable préférable adj s 4.56 7.70 4.39 7.30 +préférablement préférablement adv 0.01 0.00 0.01 0.00 +préférables préférable adj p 4.56 7.70 0.17 0.41 +préférai préférer ver 179.44 133.38 0.13 0.95 ind:pas:1s; +préféraient préférer ver 179.44 133.38 0.67 3.72 ind:imp:3p; +préférais préférer ver 179.44 133.38 3.66 9.19 ind:imp:1s;ind:imp:2s; +préférait préférer ver 179.44 133.38 2.85 21.55 ind:imp:3s; +préférant préférer ver 179.44 133.38 0.21 3.65 par:pre; +préférence préférence nom f s 5.73 13.92 4.65 12.16 +préférences préférence nom f p 5.73 13.92 1.09 1.76 +préférentiel préférentiel adj m s 0.16 0.14 0.06 0.07 +préférentielle préférentiel adj f s 0.16 0.14 0.10 0.07 +préférer préférer ver 179.44 133.38 1.68 5.95 inf; +préférera préférer ver 179.44 133.38 0.66 0.27 ind:fut:3s; +préférerai préférer ver 179.44 133.38 0.40 0.07 ind:fut:1s; +préféreraient préférer ver 179.44 133.38 0.43 0.47 cnd:pre:3p; +préférerais préférer ver 179.44 133.38 14.52 5.14 cnd:pre:1s;cnd:pre:2s; +préférerait préférer ver 179.44 133.38 1.73 1.22 cnd:pre:3s; +préféreras préférer ver 179.44 133.38 0.20 0.00 ind:fut:2s; +préférerez préférer ver 179.44 133.38 0.09 0.07 ind:fut:2p; +préféreriez préférer ver 179.44 133.38 1.17 0.68 cnd:pre:2p; +préférerions préférer ver 179.44 133.38 0.28 0.07 cnd:pre:1p; +préféreront préférer ver 179.44 133.38 0.03 0.00 ind:fut:3p; +préférez préférer ver 179.44 133.38 12.19 5.81 imp:pre:2p;ind:pre:2p; +préfériez préférer ver 179.44 133.38 0.39 0.20 ind:imp:2p; +préférions préférer ver 179.44 133.38 0.02 1.35 ind:imp:1p; +préférâmes préférer ver 179.44 133.38 0.00 0.07 ind:pas:1p; +préférons préférer ver 179.44 133.38 1.67 0.95 imp:pre:1p;ind:pre:1p; +préférât préférer ver 179.44 133.38 0.00 0.47 sub:imp:3s; +préférèrent préférer ver 179.44 133.38 0.00 0.47 ind:pas:3p; +préféré préférer ver m s 179.44 133.38 17.57 19.73 par:pas; +préférée préféré adj f s 27.42 11.01 9.82 3.45 +préférées préféré adj f p 27.42 11.01 1.80 1.15 +préférés préféré adj m p 27.42 11.01 2.04 1.96 +prégnance prégnance nom f s 0.00 0.14 0.00 0.14 +prégnante prégnant adj f s 0.01 0.00 0.01 0.00 +préhenseur préhenseur adj m s 1.00 0.00 1.00 0.00 +préhensile préhensile adj m s 0.01 0.07 0.01 0.07 +préhension préhension nom f s 0.10 0.07 0.10 0.07 +préhensives préhensif adj f p 0.00 0.07 0.00 0.07 +préhistoire préhistoire nom f s 0.73 2.84 0.73 2.84 +préhistorien préhistorien nom m s 0.00 0.07 0.00 0.07 +préhistorique préhistorique adj s 1.28 2.91 0.83 1.55 +préhistoriques préhistorique adj p 1.28 2.91 0.45 1.35 +préhominien préhominien nom m s 0.00 0.07 0.00 0.07 +préindustriel préindustriel adj m s 0.01 0.00 0.01 0.00 +préjudice préjudice nom m s 1.80 2.03 1.56 1.96 +préjudices préjudice nom m p 1.80 2.03 0.25 0.07 +préjudiciable préjudiciable adj s 0.34 0.88 0.30 0.47 +préjudiciables préjudiciable adj m p 0.34 0.88 0.03 0.41 +préjuge préjuger ver 0.16 1.69 0.00 0.20 ind:pre:3s; +préjugeait préjuger ver 0.16 1.69 0.00 0.07 ind:imp:3s; +préjugeant préjuger ver 0.16 1.69 0.00 0.20 par:pre; +préjuger préjuger ver 0.16 1.69 0.02 0.88 inf; +préjugé préjugé nom m s 4.79 10.61 0.93 2.43 +préjugée préjuger ver f s 0.16 1.69 0.00 0.07 par:pas; +préjugés préjugé nom m p 4.79 10.61 3.86 8.18 +prélassaient prélasser ver 0.73 2.57 0.00 0.20 ind:imp:3p; +prélassais prélasser ver 0.73 2.57 0.02 0.07 ind:imp:1s; +prélassait prélasser ver 0.73 2.57 0.01 0.34 ind:imp:3s; +prélassant prélasser ver 0.73 2.57 0.01 0.14 par:pre; +prélasse prélasser ver 0.73 2.57 0.33 0.41 ind:pre:1s;ind:pre:3s; +prélassent prélasser ver 0.73 2.57 0.02 0.27 ind:pre:3p; +prélasser prélasser ver 0.73 2.57 0.33 0.88 inf; +prélassera prélasser ver 0.73 2.57 0.00 0.07 ind:fut:3s; +prélasseront prélasser ver 0.73 2.57 0.00 0.07 ind:fut:3p; +prélassez prélasser ver 0.73 2.57 0.00 0.07 ind:pre:2p; +prélassiez prélasser ver 0.73 2.57 0.01 0.00 ind:imp:2p; +prélassèrent prélasser ver 0.73 2.57 0.00 0.07 ind:pas:3p; +prélat prélat nom m s 0.14 2.77 0.04 1.76 +prélats prélat nom m p 0.14 2.77 0.10 1.01 +prélavage prélavage nom m s 0.01 0.00 0.01 0.00 +prélaver prélaver ver 0.01 0.00 0.01 0.00 inf; +prélegs prélegs nom m 0.00 0.07 0.00 0.07 +prêles prêle nom f p 0.00 0.14 0.00 0.14 +préleva prélever ver 6.07 5.81 0.00 0.27 ind:pas:3s; +prélevaient prélever ver 6.07 5.81 0.11 0.14 ind:imp:3p; +prélevais prélever ver 6.07 5.81 0.11 0.07 ind:imp:1s; +prélevait prélever ver 6.07 5.81 0.01 0.47 ind:imp:3s; +prélevant prélever ver 6.07 5.81 0.16 0.14 par:pre; +prélever prélever ver 6.07 5.81 1.75 1.35 inf; +prélevez prélever ver 6.07 5.81 0.18 0.00 imp:pre:2p;ind:pre:2p; +prélevons prélever ver 6.07 5.81 0.07 0.00 imp:pre:1p;ind:pre:1p; +prélevèrent prélever ver 6.07 5.81 0.01 0.07 ind:pas:3p; +prélevé prélever ver m s 6.07 5.81 1.87 0.81 par:pas; +prélevée prélever ver f s 6.07 5.81 0.40 0.74 par:pas; +prélevées prélever ver f p 6.07 5.81 0.39 0.54 par:pas; +prélevés prélever ver m p 6.07 5.81 0.32 0.54 par:pas; +préliminaire préliminaire adj s 3.12 1.69 2.21 0.74 +préliminaires préliminaire nom m p 1.67 1.08 1.56 0.88 +prélève prélever ver 6.07 5.81 0.59 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prélèvement prélèvement nom m s 4.33 1.28 2.43 0.54 +prélèvements prélèvement nom m p 4.33 1.28 1.89 0.74 +prélèvent prélever ver 6.07 5.81 0.05 0.14 ind:pre:3p; +prélèveraient prélever ver 6.07 5.81 0.00 0.07 cnd:pre:3p; +prélèverait prélever ver 6.07 5.81 0.00 0.07 cnd:pre:3s; +prélèverez prélever ver 6.07 5.81 0.03 0.00 ind:fut:2p; +prélèverions prélever ver 6.07 5.81 0.02 0.00 cnd:pre:1p; +préluda préluder ver 0.00 2.57 0.00 0.20 ind:pas:3s; +préludaient préluder ver 0.00 2.57 0.00 0.07 ind:imp:3p; +préludait préluder ver 0.00 2.57 0.00 0.34 ind:imp:3s; +préludant préluder ver 0.00 2.57 0.00 0.14 par:pre; +prélude prélude nom m s 1.23 2.91 0.89 2.36 +préludent préluder ver 0.00 2.57 0.00 0.14 ind:pre:3p; +préluder préluder ver 0.00 2.57 0.00 0.27 inf; +préluderait préluder ver 0.00 2.57 0.00 0.07 cnd:pre:3s; +préludes prélude nom m p 1.23 2.91 0.34 0.54 +préludât préluder ver 0.00 2.57 0.00 0.07 sub:imp:3s; +préludèrent préluder ver 0.00 2.57 0.00 0.07 ind:pas:3p; +préludé préluder ver m s 0.00 2.57 0.00 0.27 par:pas; +prématurité prématurité nom f s 0.01 0.00 0.01 0.00 +prématuré prématuré adj m s 2.39 3.18 1.51 1.22 +prématurée prématuré adj f s 2.39 3.18 0.68 1.28 +prématurées prématuré adj f p 2.39 3.18 0.14 0.61 +prématurément prématurément adv 1.22 2.03 1.22 2.03 +prématurés prématuré nom m p 1.00 0.20 0.20 0.00 +prémenstruel prémenstruel adj m s 0.26 0.00 0.21 0.00 +prémenstruelle prémenstruel adj f s 0.26 0.00 0.05 0.00 +prémices prémices nom f p 0.34 1.35 0.34 1.35 +prémisse prémisse nom f s 0.11 0.68 0.05 0.07 +prémisses prémisse nom f p 0.11 0.68 0.05 0.61 +prémolaire prémolaire nom f s 0.23 0.14 0.19 0.07 +prémolaires prémolaire nom f p 0.23 0.14 0.04 0.07 +prémonition prémonition nom f s 3.54 2.64 2.46 2.03 +prémonitions prémonition nom f p 3.54 2.64 1.08 0.61 +prémonitoire prémonitoire adj s 0.43 1.62 0.24 1.22 +prémonitoires prémonitoire adj p 0.43 1.62 0.19 0.41 +prémontrés prémontré adj m p 0.00 0.07 0.00 0.07 +préméditait préméditer ver 0.66 1.89 0.00 0.14 ind:imp:3s; +préméditation préméditation nom f s 1.30 1.82 1.30 1.69 +préméditations préméditation nom f p 1.30 1.82 0.00 0.14 +prémédite préméditer ver 0.66 1.89 0.01 0.14 ind:pre:3s; +préméditer préméditer ver 0.66 1.89 0.02 0.00 inf; +préméditera préméditer ver 0.66 1.89 0.00 0.07 ind:fut:3s; +préméditons préméditer ver 0.66 1.89 0.00 0.07 ind:pre:1p; +prémédité prémédité adj m s 1.46 0.95 1.25 0.27 +préméditée prémédité adj f s 1.46 0.95 0.11 0.41 +préméditées préméditer ver f p 0.66 1.89 0.00 0.07 par:pas; +prémédités prémédité adj m p 1.46 0.95 0.11 0.20 +prémuni prémunir ver m s 0.07 0.95 0.02 0.14 par:pas; +prémunie prémunir ver f s 0.07 0.95 0.00 0.07 par:pas; +prémunir prémunir ver 0.07 0.95 0.04 0.54 inf; +prémuniraient prémunir ver 0.07 0.95 0.00 0.07 cnd:pre:3p; +prémunis prémunir ver m p 0.07 0.95 0.00 0.07 par:pas; +prémunissent prémunir ver 0.07 0.95 0.00 0.07 ind:pre:3p; +prénatal prénatal adj m s 0.46 0.54 0.27 0.14 +prénatale prénatal adj f s 0.46 0.54 0.12 0.41 +prénatales prénatal adj f p 0.46 0.54 0.05 0.00 +prénataux prénatal adj m p 0.46 0.54 0.02 0.00 +prune prune nom f s 2.94 5.68 1.07 1.55 +pruneau pruneau nom m s 1.59 3.65 0.92 1.35 +pruneaux pruneau nom m p 1.59 3.65 0.67 2.30 +prunelle prunelle nom f s 1.10 15.74 0.94 3.11 +prunelles prunelle nom f p 1.10 15.74 0.16 12.64 +prunellier prunellier nom m s 0.00 0.47 0.00 0.07 +prunelliers prunellier nom m p 0.00 0.47 0.00 0.41 +prunes prune nom f p 2.94 5.68 1.87 4.12 +prunier prunier nom m s 0.96 2.57 0.49 1.28 +pruniers prunier nom m p 0.96 2.57 0.47 1.28 +prénom_type prénom_type nom m s 0.00 0.07 0.00 0.07 +prénom prénom nom m s 25.88 30.47 23.18 24.19 +prénomma prénommer ver 0.83 2.36 0.00 0.07 ind:pas:3s; +prénommaient prénommer ver 0.83 2.36 0.00 0.07 ind:imp:3p; +prénommais prénommer ver 0.83 2.36 0.03 0.00 ind:imp:1s; +prénommait prénommer ver 0.83 2.36 0.02 0.81 ind:imp:3s; +prénommant prénommer ver 0.83 2.36 0.00 0.14 par:pre; +prénomme prénommer ver 0.83 2.36 0.06 0.47 imp:pre:2s;ind:pre:3s; +prénomment prénommer ver 0.83 2.36 0.14 0.07 ind:pre:3p; +prénommer prénommer ver 0.83 2.36 0.00 0.27 inf; +prénommez prénommer ver 0.83 2.36 0.02 0.00 ind:pre:2p; +prénommât prénommer ver 0.83 2.36 0.00 0.07 sub:imp:3s; +prénommèrent prénommer ver 0.83 2.36 0.01 0.00 ind:pas:3p; +prénommé prénommer ver m s 0.83 2.36 0.38 0.41 par:pas; +prénommée prénommé nom f s 0.26 0.47 0.17 0.20 +prénoms prénom nom m p 25.88 30.47 2.70 6.28 +prénuptial prénuptial adj m s 0.47 0.20 0.30 0.07 +prénuptiale prénuptial adj f s 0.47 0.20 0.17 0.14 +prunus prunus nom m 0.00 0.07 0.00 0.07 +préoccupa préoccuper ver 17.43 18.92 0.01 0.07 ind:pas:3s; +préoccupai préoccuper ver 17.43 18.92 0.00 0.14 ind:pas:1s; +préoccupaient préoccuper ver 17.43 18.92 0.02 0.68 ind:imp:3p; +préoccupais préoccuper ver 17.43 18.92 0.23 0.27 ind:imp:1s;ind:imp:2s; +préoccupait préoccuper ver 17.43 18.92 0.52 3.78 ind:imp:3s; +préoccupant préoccupant adj m s 0.35 0.88 0.27 0.27 +préoccupante préoccupant adj f s 0.35 0.88 0.06 0.41 +préoccupantes préoccupant adj f p 0.35 0.88 0.02 0.20 +préoccupation préoccupation nom f s 3.23 11.82 1.53 3.99 +préoccupations préoccupation nom f p 3.23 11.82 1.69 7.84 +préoccupe préoccuper ver 17.43 18.92 7.48 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +préoccupent préoccuper ver 17.43 18.92 0.34 0.41 ind:pre:3p; +préoccuper préoccuper ver 17.43 18.92 2.68 3.45 inf; +préoccupera préoccuper ver 17.43 18.92 0.04 0.07 ind:fut:3s; +préoccuperai préoccuper ver 17.43 18.92 0.03 0.00 ind:fut:1s; +préoccuperaient préoccuper ver 17.43 18.92 0.01 0.00 cnd:pre:3p; +préoccuperais préoccuper ver 17.43 18.92 0.03 0.00 cnd:pre:1s; +préoccuperait préoccuper ver 17.43 18.92 0.06 0.00 cnd:pre:3s; +préoccupes préoccuper ver 17.43 18.92 0.81 0.14 ind:pre:2s; +préoccupez préoccuper ver 17.43 18.92 0.85 0.07 imp:pre:2p;ind:pre:2p; +préoccupiez préoccuper ver 17.43 18.92 0.02 0.00 ind:imp:2p; +préoccupions préoccuper ver 17.43 18.92 0.00 0.07 ind:imp:1p; +préoccupons préoccuper ver 17.43 18.92 0.02 0.20 imp:pre:1p;ind:pre:1p; +préoccupât préoccuper ver 17.43 18.92 0.00 0.20 sub:imp:3s; +préoccupâtes préoccuper ver 17.43 18.92 0.01 0.00 ind:pas:2p; +préoccupèrent préoccuper ver 17.43 18.92 0.00 0.07 ind:pas:3p; +préoccupé préoccuper ver m s 17.43 18.92 2.84 3.85 par:pas; +préoccupée préoccuper ver f s 17.43 18.92 0.71 1.35 par:pas; +préoccupées préoccupé adj f p 1.44 4.86 0.01 0.20 +préoccupés préoccuper ver m p 17.43 18.92 0.68 1.22 par:pas; +préopératoire préopératoire adj s 0.05 0.00 0.05 0.00 +prépa prépa nom f s 0.78 0.00 0.78 0.00 +prépara préparer ver 174.32 154.12 0.30 5.00 ind:pas:3s; +préparai préparer ver 174.32 154.12 0.02 1.22 ind:pas:1s; +préparaient préparer ver 174.32 154.12 0.90 5.41 ind:imp:3p; +préparais préparer ver 174.32 154.12 1.68 2.43 ind:imp:1s;ind:imp:2s; +préparait préparer ver 174.32 154.12 3.38 25.00 ind:imp:3s; +préparant préparer ver 174.32 154.12 1.00 5.14 par:pre; +préparateur préparateur nom m s 0.05 1.15 0.04 0.88 +préparateurs préparateur nom m p 0.05 1.15 0.00 0.14 +préparatif préparatif nom m s 3.09 7.36 0.00 0.07 +préparatifs préparatif nom m p 3.09 7.36 3.09 7.30 +préparation préparation nom f s 6.13 10.54 5.17 9.73 +préparations préparation nom f p 6.13 10.54 0.95 0.81 +préparatoire préparatoire adj s 0.52 2.64 0.43 1.55 +préparatoires préparatoire adj p 0.52 2.64 0.09 1.08 +préparatrice préparateur nom f s 0.05 1.15 0.01 0.07 +préparatrices préparateur nom f p 0.05 1.15 0.00 0.07 +prépare préparer ver 174.32 154.12 45.54 19.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +préparent préparer ver 174.32 154.12 6.09 3.72 ind:pre:3p; +préparer préparer ver 174.32 154.12 46.70 43.24 ind:pre:2p;inf; +préparera préparer ver 174.32 154.12 0.85 0.41 ind:fut:3s; +préparerai préparer ver 174.32 154.12 1.65 0.47 ind:fut:1s; +prépareraient préparer ver 174.32 154.12 0.15 0.14 cnd:pre:3p; +préparerais préparer ver 174.32 154.12 0.24 0.14 cnd:pre:1s;cnd:pre:2s; +préparerait préparer ver 174.32 154.12 0.03 0.68 cnd:pre:3s; +prépareras préparer ver 174.32 154.12 0.05 0.00 ind:fut:2s; +préparerez préparer ver 174.32 154.12 0.04 0.00 ind:fut:2p; +préparerons préparer ver 174.32 154.12 0.30 0.07 ind:fut:1p; +prépareront préparer ver 174.32 154.12 0.04 0.07 ind:fut:3p; +prépares préparer ver 174.32 154.12 3.35 0.61 ind:pre:2s;sub:pre:2s; +préparez préparer ver 174.32 154.12 26.72 2.03 imp:pre:2p;ind:pre:2p; +prépariez préparer ver 174.32 154.12 0.38 0.07 ind:imp:2p; +préparions préparer ver 174.32 154.12 0.12 0.61 ind:imp:1p; +préparons préparer ver 174.32 154.12 2.92 0.74 imp:pre:1p;ind:pre:1p; +préparât préparer ver 174.32 154.12 0.00 0.54 sub:imp:3s; +préparèrent préparer ver 174.32 154.12 0.11 0.34 ind:pas:3p; +préparé préparer ver m s 174.32 154.12 25.19 21.96 par:pas; +préparée préparer ver f s 174.32 154.12 2.97 6.82 par:pas; +préparées préparer ver f p 174.32 154.12 0.75 2.77 par:pas; +préparés préparer ver m p 174.32 154.12 2.86 4.93 par:pas; +prépayée prépayer ver f s 0.01 0.00 0.01 0.00 par:pas; +prépondérance prépondérance nom f s 0.07 0.61 0.07 0.61 +prépondérant prépondérant adj m s 0.15 1.35 0.12 0.27 +prépondérante prépondérant adj f s 0.15 1.35 0.03 0.88 +prépondérants prépondérant adj m p 0.15 1.35 0.00 0.20 +préposition préposition nom f s 0.23 0.20 0.20 0.07 +prépositions préposition nom f p 0.23 0.20 0.03 0.14 +préposé préposé nom m s 0.91 3.99 0.77 2.84 +préposée préposé nom f s 0.91 3.99 0.10 0.41 +préposées préposé nom f p 0.91 3.99 0.00 0.07 +préposés préposé nom m p 0.91 3.99 0.04 0.68 +prépotence prépotence nom f s 0.00 0.07 0.00 0.07 +préprogrammé préprogrammé adj m s 0.09 0.00 0.07 0.00 +préprogrammée préprogrammé adj f s 0.09 0.00 0.03 0.00 +prépubère prépubère adj s 0.08 0.00 0.08 0.00 +prépuce prépuce nom m s 0.89 0.47 0.88 0.41 +prépuces prépuce nom m p 0.89 0.47 0.01 0.07 +préraphaélite préraphaélite adj s 0.00 0.07 0.00 0.07 +prérentrée prérentrée nom f s 0.01 0.00 0.01 0.00 +préretraite préretraite nom f s 0.04 0.00 0.04 0.00 +prurigo prurigo nom m s 0.00 0.07 0.00 0.07 +prurit prurit nom m s 2.15 0.88 2.15 0.88 +prérogative prérogative nom f s 0.59 1.35 0.28 0.27 +prérogatives prérogative nom f p 0.59 1.35 0.31 1.08 +préroman préroman adj m s 0.00 0.07 0.00 0.07 +préréglé prérégler ver m s 0.03 0.00 0.03 0.00 par:pas; +prérévolutionnaire prérévolutionnaire adj f s 0.00 0.07 0.00 0.07 +prés pré nom m p 21.59 32.50 16.56 12.70 +présage présage nom m s 2.99 4.59 1.95 2.77 +présagea présager ver 0.79 3.31 0.00 0.14 ind:pas:3s; +présageaient présager ver 0.79 3.31 0.01 0.27 ind:imp:3p; +présageait présager ver 0.79 3.31 0.13 0.95 ind:imp:3s; +présagent présager ver 0.79 3.31 0.01 0.00 ind:pre:3p; +présager présager ver 0.79 3.31 0.14 1.49 inf; +présagerait présager ver 0.79 3.31 0.01 0.07 cnd:pre:3s; +présages présage nom m p 2.99 4.59 1.04 1.82 +présagé présager ver m s 0.79 3.31 0.01 0.00 par:pas; +préscolaire préscolaire adj f s 0.07 0.00 0.05 0.00 +préscolaires préscolaire adj p 0.07 0.00 0.02 0.00 +présence présence nom f s 45.03 135.54 44.95 133.11 +présences présence nom f p 45.03 135.54 0.07 2.43 +présent présent nom m s 66.72 141.01 65.14 137.23 +présenta présenter ver 165.86 135.14 0.93 13.18 ind:pas:3s; +présentable présentable adj s 3.17 2.09 2.65 1.82 +présentables présentable adj p 3.17 2.09 0.52 0.27 +présentai présenter ver 165.86 135.14 0.17 1.28 ind:pas:1s; +présentaient présenter ver 165.86 135.14 0.21 4.32 ind:imp:3p; +présentais présenter ver 165.86 135.14 0.40 0.74 ind:imp:1s;ind:imp:2s; +présentait présenter ver 165.86 135.14 1.59 20.14 ind:imp:3s; +présentant présenter ver 165.86 135.14 1.09 5.54 par:pre; +présentassent présenter ver 165.86 135.14 0.00 0.07 sub:imp:3p; +présentateur présentateur nom m s 2.91 1.49 1.76 1.08 +présentateurs présentateur nom m p 2.91 1.49 0.20 0.14 +présentation présentation nom f s 7.88 8.38 5.52 4.80 +présentations présentation nom f p 7.88 8.38 2.37 3.58 +présentatrice présentateur nom f s 2.91 1.49 0.95 0.20 +présentatrices présentatrice nom f p 0.20 0.00 0.20 0.00 +présente présenter ver 165.86 135.14 61.59 27.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +présentement présentement adv 1.27 3.78 1.27 3.78 +présentent présenter ver 165.86 135.14 3.81 4.73 ind:pre:3p; +présenter présenter ver 165.86 135.14 56.14 28.99 inf;; +présentera présenter ver 165.86 135.14 1.91 0.61 ind:fut:3s; +présenterai présenter ver 165.86 135.14 2.89 0.88 ind:fut:1s; +présenteraient présenter ver 165.86 135.14 0.00 0.61 cnd:pre:3p; +présenterais présenter ver 165.86 135.14 0.43 0.07 cnd:pre:1s;cnd:pre:2s; +présenterait présenter ver 165.86 135.14 0.36 2.03 cnd:pre:3s; +présenteras présenter ver 165.86 135.14 0.24 0.20 ind:fut:2s; +présenterez présenter ver 165.86 135.14 0.82 0.41 ind:fut:2p; +présenteriez présenter ver 165.86 135.14 0.03 0.00 cnd:pre:2p; +présenterons présenter ver 165.86 135.14 0.36 0.00 ind:fut:1p; +présenteront présenter ver 165.86 135.14 0.51 0.41 ind:fut:3p; +présentes présenter ver 165.86 135.14 3.44 0.41 ind:pre:2s; +présentez présenter ver 165.86 135.14 5.83 0.81 imp:pre:2p;ind:pre:2p; +présentiez présenter ver 165.86 135.14 0.40 0.14 ind:imp:2p; +présentions présenter ver 165.86 135.14 0.02 0.20 ind:imp:1p; +présentoir présentoir nom m s 0.38 1.35 0.38 0.88 +présentoirs présentoir nom m p 0.38 1.35 0.00 0.47 +présentons présenter ver 165.86 135.14 0.79 0.54 imp:pre:1p;ind:pre:1p; +présentât présenter ver 165.86 135.14 0.00 0.27 sub:imp:3s; +présents présent adj m p 53.70 80.74 5.38 8.85 +présentèrent présenter ver 165.86 135.14 0.15 1.28 ind:pas:3p; +présenté présenter ver m s 165.86 135.14 12.58 11.42 par:pas; +présentée présenter ver f s 165.86 135.14 3.86 3.99 par:pas; +présentées présenter ver f p 165.86 135.14 0.73 1.76 par:pas; +présentés présenter ver m p 165.86 135.14 4.57 2.64 par:pas; +préserva préserver ver 14.61 21.15 0.01 0.20 ind:pas:3s; +préservaient préserver ver 14.61 21.15 0.00 0.47 ind:imp:3p; +préservais préserver ver 14.61 21.15 0.11 0.07 ind:imp:1s; +préservait préserver ver 14.61 21.15 0.17 1.01 ind:imp:3s; +préservant préserver ver 14.61 21.15 0.45 0.41 par:pre; +préservateur préservateur nom m s 0.01 0.00 0.01 0.00 +préservatif préservatif nom m s 5.19 0.47 2.16 0.07 +préservatifs préservatif nom m p 5.19 0.47 3.03 0.41 +préservation préservation nom f s 1.00 0.47 1.00 0.47 +préserve préserver ver 14.61 21.15 2.99 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +préservent préserver ver 14.61 21.15 0.10 0.34 ind:pre:3p; +préserver préserver ver 14.61 21.15 7.26 9.66 ind:pre:2p;inf; +préservera préserver ver 14.61 21.15 0.23 0.07 ind:fut:3s; +préserverai préserver ver 14.61 21.15 0.03 0.00 ind:fut:1s; +préserverait préserver ver 14.61 21.15 0.00 0.20 cnd:pre:3s; +préservez préserver ver 14.61 21.15 0.54 0.20 imp:pre:2p;ind:pre:2p; +préservons préserver ver 14.61 21.15 0.21 0.00 imp:pre:1p;ind:pre:1p; +préservé préserver ver m s 14.61 21.15 1.49 3.65 par:pas; +préservée préserver ver f s 14.61 21.15 0.59 2.36 par:pas; +préservées préserver ver f p 14.61 21.15 0.32 0.41 par:pas; +préservés préserver ver m p 14.61 21.15 0.12 0.47 par:pas; +présida présider ver 4.72 10.61 0.14 0.27 ind:pas:3s; +présidai présider ver 4.72 10.61 0.00 0.20 ind:pas:1s; +présidaient présider ver 4.72 10.61 0.00 0.41 ind:imp:3p; +présidais présider ver 4.72 10.61 0.17 0.00 ind:imp:1s; +présidait présider ver 4.72 10.61 0.46 2.16 ind:imp:3s; +présidant présider ver 4.72 10.61 0.00 0.47 par:pre; +préside présider ver 4.72 10.61 1.20 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +présidence présidence nom f s 4.27 5.95 4.26 5.88 +présidences présidence nom f p 4.27 5.95 0.01 0.07 +président_directeur président_directeur nom m s 0.02 0.27 0.02 0.27 +président président nom m s 143.39 79.66 131.53 76.22 +présidente président nom f s 143.39 79.66 9.21 1.08 +présidentes président nom f p 143.39 79.66 0.17 0.07 +présidentiable présidentiable adj s 0.04 0.34 0.04 0.27 +présidentiables présidentiable adj p 0.04 0.34 0.00 0.07 +présidentiel présidentiel adj m s 3.80 1.69 1.86 0.68 +présidentielle présidentiel adj f s 3.80 1.69 1.85 0.95 +présidentielles présidentielle adj f p 0.62 0.27 0.62 0.27 +présidentiels présidentiel adj m p 3.80 1.69 0.09 0.07 +présidents_directeur présidents_directeur nom m p 0.00 0.14 0.00 0.14 +présidents président nom m p 143.39 79.66 2.48 2.30 +présider présider ver 4.72 10.61 1.01 1.89 inf; +présidera présider ver 4.72 10.61 0.38 0.07 ind:fut:3s; +présiderai présider ver 4.72 10.61 0.07 0.00 ind:fut:1s; +présiderais présider ver 4.72 10.61 0.00 0.07 cnd:pre:1s; +présiderait présider ver 4.72 10.61 0.03 0.14 cnd:pre:3s; +présideras présider ver 4.72 10.61 0.00 0.14 ind:fut:2s; +présiderez présider ver 4.72 10.61 0.01 0.07 ind:fut:2p; +présides présider ver 4.72 10.61 0.01 0.00 ind:pre:2s; +présidiez présider ver 4.72 10.61 0.02 0.00 ind:imp:2p; +présidium présidium nom m s 0.02 0.14 0.02 0.14 +présidons présider ver 4.72 10.61 0.01 0.07 ind:pre:1p; +présidât présider ver 4.72 10.61 0.00 0.07 sub:imp:3s; +présidèrent présider ver 4.72 10.61 0.00 0.07 ind:pas:3p; +présidé présider ver m s 4.72 10.61 0.41 1.96 par:pas; +présidée présider ver f s 4.72 10.61 0.38 0.41 par:pas; +présidés présider ver m p 4.72 10.61 0.01 0.20 par:pas; +présocratique présocratique adj s 0.00 0.20 0.00 0.14 +présocratiques présocratique adj p 0.00 0.20 0.00 0.07 +présomptif présomptif adj m s 0.23 0.20 0.23 0.14 +présomption présomption nom f s 1.46 1.76 1.06 1.08 +présomptions présomption nom f p 1.46 1.76 0.39 0.68 +présomptive présomptif adj f s 0.23 0.20 0.00 0.07 +présomptueuse présomptueux nom f s 0.42 0.20 0.14 0.00 +présomptueuses présomptueux adj f p 1.00 1.22 0.01 0.14 +présomptueux présomptueux adj m s 1.00 1.22 0.91 0.88 +prussianisé prussianiser ver m s 0.00 0.07 0.00 0.07 par:pas; +prussien prussien adj m s 0.41 3.38 0.16 1.01 +prussienne prussien adj f s 0.41 3.38 0.04 1.42 +prussiennes prussien adj f p 0.41 3.38 0.03 0.41 +prussiens prussien nom m p 0.46 2.97 0.38 2.03 +prussik prussik nom m s 0.02 0.00 0.02 0.00 +prussique prussique adj m s 0.41 0.20 0.41 0.20 +préséance préséance nom f s 0.06 0.81 0.05 0.47 +préséances préséance nom f p 0.06 0.81 0.01 0.34 +présélection présélection nom f s 0.06 0.00 0.04 0.00 +présélectionné présélectionner ver m s 0.04 0.00 0.03 0.00 par:pas; +présélectionnée présélectionner ver f s 0.04 0.00 0.02 0.00 par:pas; +présélections présélection nom f p 0.06 0.00 0.02 0.00 +présumables présumable adj m p 0.00 0.07 0.00 0.07 +présumai présumer ver 9.29 3.65 0.00 0.20 ind:pas:1s; +présumais présumer ver 9.29 3.65 0.16 0.00 ind:imp:1s;ind:imp:2s; +présumait présumer ver 9.29 3.65 0.01 0.47 ind:imp:3s; +présumant présumer ver 9.29 3.65 0.08 0.14 par:pre; +présume présumer ver 9.29 3.65 6.36 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +présumer présumer ver 9.29 3.65 0.82 0.61 inf; +présumerai présumer ver 9.29 3.65 0.02 0.00 ind:fut:1s; +présumez présumer ver 9.29 3.65 0.11 0.00 imp:pre:2p;ind:pre:2p; +présumons présumer ver 9.29 3.65 0.11 0.00 imp:pre:1p;ind:pre:1p; +présumé présumé adj m s 1.62 0.88 1.22 0.47 +présumée présumer ver f s 9.29 3.65 0.38 0.20 par:pas; +présumées présumé adj f p 1.62 0.88 0.02 0.07 +présumés présumer ver m p 9.29 3.65 0.21 0.00 par:pas; +préséniles présénile adj p 0.10 0.00 0.10 0.00 +présupposant présupposer ver 0.15 0.20 0.00 0.14 par:pre; +présuppose présupposer ver 0.15 0.20 0.14 0.00 ind:pre:3s; +présupposent présupposer ver 0.15 0.20 0.01 0.00 ind:pre:3p; +présupposée présupposer ver f s 0.15 0.20 0.00 0.07 par:pas; +prêt_bail prêt_bail nom m s 0.00 0.27 0.00 0.27 +prêt_à_porter prêt_à_porter nom m s 0.00 0.95 0.00 0.95 +prêt prêt adj m s 314.64 121.28 170.23 60.41 +prêta prêter ver 62.00 87.09 0.21 4.59 ind:pas:3s; +prêtai prêter ver 62.00 87.09 0.00 0.41 ind:pas:1s; +prêtaient prêter ver 62.00 87.09 0.28 2.77 ind:imp:3p; +prêtais prêter ver 62.00 87.09 0.38 1.42 ind:imp:1s;ind:imp:2s; +prêtait prêter ver 62.00 87.09 0.29 13.24 ind:imp:3s; +prêtant prêter ver 62.00 87.09 0.33 2.91 par:pre; +prêtassent prêter ver 62.00 87.09 0.00 0.14 sub:imp:3p; +prête_nom prête_nom nom m s 0.00 0.27 0.00 0.27 +prête prêt adj f s 314.64 121.28 66.25 28.31 +prétend prétendre ver 35.64 67.43 11.42 13.24 ind:pre:3s; +prétendît prétendre ver 35.64 67.43 0.00 0.34 sub:imp:3s; +prétendaient prétendre ver 35.64 67.43 0.42 3.65 ind:imp:3p; +prétendais prétendre ver 35.64 67.43 0.55 1.49 ind:imp:1s;ind:imp:2s; +prétendait prétendre ver 35.64 67.43 1.24 16.49 ind:imp:3s; +prétendant prétendant nom m s 3.16 2.16 1.96 1.01 +prétendante prétendant nom f s 3.16 2.16 0.01 0.00 +prétendants prétendant nom m p 3.16 2.16 1.20 1.15 +prétende prétendre ver 35.64 67.43 0.26 0.41 sub:pre:1s;sub:pre:3s; +prétendent prétendre ver 35.64 67.43 2.67 4.32 ind:pre:3p; +prétendez prétendre ver 35.64 67.43 3.10 1.22 imp:pre:2p;ind:pre:2p; +prétendiez prétendre ver 35.64 67.43 0.16 0.07 ind:imp:2p; +prétendions prétendre ver 35.64 67.43 0.02 0.34 ind:imp:1p; +prétendirent prétendre ver 35.64 67.43 0.02 0.54 ind:pas:3p; +prétendis prétendre ver 35.64 67.43 0.00 0.74 ind:pas:1s; +prétendissent prétendre ver 35.64 67.43 0.00 0.07 sub:imp:3p; +prétendit prétendre ver 35.64 67.43 0.17 1.82 ind:pas:3s; +prétendons prétendre ver 35.64 67.43 0.19 0.81 imp:pre:1p;ind:pre:1p; +prétendra prétendre ver 35.64 67.43 0.21 0.27 ind:fut:3s; +prétendrai prétendre ver 35.64 67.43 0.09 0.07 ind:fut:1s; +prétendraient prétendre ver 35.64 67.43 0.00 0.14 cnd:pre:3p; +prétendrais prétendre ver 35.64 67.43 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +prétendrait prétendre ver 35.64 67.43 0.13 0.34 cnd:pre:3s; +prétendras prétendre ver 35.64 67.43 0.29 0.00 ind:fut:2s; +prétendre prétendre ver 35.64 67.43 6.00 10.54 inf; +prétendront prétendre ver 35.64 67.43 0.03 0.20 ind:fut:3p; +prétends prétendre ver 35.64 67.43 4.84 3.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prétendu prétendre ver m s 35.64 67.43 2.41 3.65 par:pas; +prétendue prétendu adj f s 2.82 7.64 0.75 2.43 +prétendues prétendu adj f p 2.82 7.64 0.14 0.88 +prétendument prétendument adv 0.37 1.76 0.37 1.76 +prétendus prétendu adj m p 2.82 7.64 0.61 1.82 +prêtent prêter ver 62.00 87.09 0.42 2.50 ind:pre:3p; +prétentaine prétentaine nom f s 0.02 0.07 0.02 0.07 +prétentiard prétentiard adj m s 0.14 0.00 0.14 0.00 +prétentiarde prétentiard nom f s 0.01 0.20 0.00 0.07 +prétentiards prétentiard nom m p 0.01 0.20 0.00 0.07 +prétentieuse prétentieux adj f s 4.51 5.95 1.05 2.03 +prétentieuses prétentieux adj f p 4.51 5.95 0.10 0.68 +prétentieux prétentieux adj m 4.51 5.95 3.37 3.24 +prétention prétention nom f s 2.63 10.68 1.51 6.28 +prétentions prétention nom f p 2.63 10.68 1.12 4.39 +prêter prêter ver 62.00 87.09 14.40 21.22 inf;; +prêtera prêter ver 62.00 87.09 1.37 0.41 ind:fut:3s; +prêterai prêter ver 62.00 87.09 1.56 0.88 ind:fut:1s; +prêteraient prêter ver 62.00 87.09 0.03 0.41 cnd:pre:3p; +prêterais prêter ver 62.00 87.09 0.55 0.41 cnd:pre:1s;cnd:pre:2s; +prêterait prêter ver 62.00 87.09 0.48 1.08 cnd:pre:3s; +prêteras prêter ver 62.00 87.09 0.22 0.07 ind:fut:2s; +prêterez prêter ver 62.00 87.09 0.09 0.07 ind:fut:2p; +prêteriez prêter ver 62.00 87.09 0.16 0.27 cnd:pre:2p; +prêterions prêter ver 62.00 87.09 0.01 0.14 cnd:pre:1p; +préternaturel préternaturel adj m s 0.03 0.00 0.03 0.00 +prêterons prêter ver 62.00 87.09 0.02 0.20 ind:fut:1p; +prêteront prêter ver 62.00 87.09 0.41 0.20 ind:fut:3p; +prêtes prêt adj f p 314.64 121.28 10.78 7.64 +prêteur prêteur adj m s 0.27 0.41 0.23 0.20 +préteur préteur nom m s 0.02 0.20 0.02 0.14 +prêteur prêteur nom m s 1.56 0.61 1.13 0.27 +prêteurs prêteur adj m p 0.27 0.41 0.02 0.14 +préteurs préteur nom m p 0.02 0.20 0.00 0.07 +prêteurs prêteur nom m p 1.56 0.61 0.43 0.27 +prêteuse prêteur adj f s 0.27 0.41 0.01 0.07 +prétexta prétexter ver 0.87 5.61 0.01 0.61 ind:pas:3s; +prétextai prétexter ver 0.87 5.61 0.00 0.20 ind:pas:1s; +prétextait prétexter ver 0.87 5.61 0.01 0.41 ind:imp:3s; +prétextant prétexter ver 0.87 5.61 0.34 3.11 par:pre; +prétexte prétexte nom m s 14.04 42.91 12.10 36.82 +prétextent prétexter ver 0.87 5.61 0.01 0.00 ind:pre:3p; +prétexter prétexter ver 0.87 5.61 0.19 0.07 inf; +prétextes prétexte nom m p 14.04 42.91 1.94 6.08 +prétexté prétexter ver m s 0.87 5.61 0.19 0.54 par:pas; +prêtez prêter ver 62.00 87.09 4.16 0.74 imp:pre:2p;ind:pre:2p; +prêtiez prêter ver 62.00 87.09 0.22 0.07 ind:imp:2p; +prêtions prêter ver 62.00 87.09 0.02 0.20 ind:imp:1p; +prétoire prétoire nom m s 0.24 2.30 0.09 2.16 +prétoires prétoire nom m p 0.24 2.30 0.16 0.14 +prêtâmes prêter ver 62.00 87.09 0.00 0.07 ind:pas:1p; +prêtons prêter ver 62.00 87.09 0.26 0.41 imp:pre:1p;ind:pre:1p; +prétorien prétorien nom m s 0.18 0.07 0.03 0.00 +prétorienne prétorien adj f s 0.36 0.34 0.35 0.14 +prétoriennes prétorien adj f p 0.36 0.34 0.00 0.07 +prétoriens prétorien nom m p 0.18 0.07 0.15 0.07 +prêtât prêter ver 62.00 87.09 0.00 0.34 sub:imp:3s; +prêtraille prêtraille nom f s 0.00 0.07 0.00 0.07 +prêtre_ouvrier prêtre_ouvrier nom m s 0.00 0.07 0.00 0.07 +prêtre prêtre nom m s 51.20 45.27 38.37 29.39 +prêtres prêtre nom m p 51.20 45.27 11.31 14.66 +prêtresse prêtre nom f s 51.20 45.27 1.52 0.88 +prêtresses prêtresse nom f p 0.49 0.00 0.49 0.00 +prêtrise prêtrise nom f s 0.28 0.41 0.28 0.41 +prêts prêt adj 314.64 121.28 67.39 24.93 +prêtèrent prêter ver 62.00 87.09 0.30 0.14 ind:pas:3p; +prêté prêter ver m s 62.00 87.09 10.73 11.08 par:pas; +prêtée prêter ver f s 62.00 87.09 1.28 2.57 par:pas; +prêtées prêter ver f p 62.00 87.09 0.12 0.54 par:pas; +préture préture nom f s 0.01 0.00 0.01 0.00 +prêtés prêter ver m p 62.00 87.09 0.37 1.15 par:pas; +préélectoral préélectoral adj m s 0.02 0.00 0.01 0.00 +préélectorale préélectoral adj f s 0.02 0.00 0.01 0.00 +prééminence prééminence nom f s 0.01 0.41 0.01 0.41 +prééminente prééminent adj f s 0.00 0.07 0.00 0.07 +préétabli préétabli adj m s 0.28 0.41 0.25 0.14 +préétablie préétabli adj f s 0.28 0.41 0.01 0.20 +préétablies préétabli adj f p 0.28 0.41 0.01 0.00 +préétablis préétabli adj m p 0.28 0.41 0.01 0.07 +prévînt prévenir ver 129.26 73.72 0.00 0.07 sub:imp:3s; +prévôt prévôt nom m s 0.47 1.42 0.39 1.35 +prévôts prévôt nom m p 0.47 1.42 0.08 0.07 +prévôté prévôté nom f s 0.01 0.20 0.01 0.20 +prévalaient prévaloir ver 1.44 2.64 0.01 0.27 ind:imp:3p; +prévalait prévaloir ver 1.44 2.64 0.14 0.27 ind:imp:3s; +prévalant prévaloir ver 1.44 2.64 0.10 0.07 par:pre; +prévalence prévalence nom f s 0.11 0.00 0.11 0.00 +prévalent prévalent adj m s 0.14 0.00 0.14 0.00 +prévalez prévaloir ver 1.44 2.64 0.00 0.07 ind:pre:2p; +prévaloir prévaloir ver 1.44 2.64 0.42 1.15 inf; +prévalu prévaloir ver m s 1.44 2.64 0.08 0.20 par:pas; +prévalut prévaloir ver 1.44 2.64 0.01 0.20 ind:pas:3s; +prévaricateur prévaricateur nom m s 0.00 0.14 0.00 0.14 +prévaudra prévaloir ver 1.44 2.64 0.36 0.00 ind:fut:3s; +prévaudrait prévaloir ver 1.44 2.64 0.03 0.14 cnd:pre:3s; +prévaudront prévaloir ver 1.44 2.64 0.01 0.00 ind:fut:3p; +prévaut prévaloir ver 1.44 2.64 0.26 0.27 ind:pre:3s; +prévenaient prévenir ver 129.26 73.72 0.00 0.20 ind:imp:3p; +prévenais prévenir ver 129.26 73.72 0.06 0.07 ind:imp:1s;ind:imp:2s; +prévenait prévenir ver 129.26 73.72 0.32 2.23 ind:imp:3s; +prévenance prévenance nom f s 0.43 2.50 0.23 0.41 +prévenances prévenance nom f p 0.43 2.50 0.20 2.09 +prévenant prévenant adj m s 1.12 1.35 0.74 0.74 +prévenante prévenant adj f s 1.12 1.35 0.29 0.47 +prévenants prévenant adj m p 1.12 1.35 0.09 0.14 +prévenez prévenir ver 129.26 73.72 10.22 1.42 imp:pre:2p;ind:pre:2p; +préveniez prévenir ver 129.26 73.72 0.07 0.07 ind:imp:2p; +prévenions prévenir ver 129.26 73.72 0.11 0.07 ind:imp:1p; +prévenir prévenir ver 129.26 73.72 42.49 31.49 inf; +prévenons prévenir ver 129.26 73.72 0.67 0.00 imp:pre:1p;ind:pre:1p; +préventif préventif adj m s 1.85 1.22 0.26 0.41 +prévention prévention nom f s 1.40 2.57 1.33 1.35 +préventions prévention nom f p 1.40 2.57 0.07 1.22 +préventive préventif adj f s 1.85 1.22 1.50 0.61 +préventivement préventivement adv 0.00 0.34 0.00 0.34 +préventives préventif adj f p 1.85 1.22 0.09 0.20 +préventorium préventorium nom m s 0.00 0.41 0.00 0.41 +prévenu prévenir ver m s 129.26 73.72 24.25 14.53 par:pas; +prévenue prévenir ver f s 129.26 73.72 7.24 3.65 par:pas; +prévenues prévenir ver f p 129.26 73.72 0.33 0.20 par:pas; +prévenus prévenir ver m p 129.26 73.72 4.64 3.58 par:pas; +préviendra prévenir ver 129.26 73.72 1.06 0.20 ind:fut:3s; +préviendrai prévenir ver 129.26 73.72 1.96 0.41 ind:fut:1s; +préviendrais prévenir ver 129.26 73.72 0.07 0.07 cnd:pre:1s; +préviendrait prévenir ver 129.26 73.72 0.08 0.47 cnd:pre:3s; +préviendras prévenir ver 129.26 73.72 0.12 0.20 ind:fut:2s; +préviendrez prévenir ver 129.26 73.72 0.14 0.14 ind:fut:2p; +préviendrons prévenir ver 129.26 73.72 0.18 0.00 ind:fut:1p; +préviendront prévenir ver 129.26 73.72 0.10 0.07 ind:fut:3p; +prévienne prévenir ver 129.26 73.72 1.37 1.69 sub:pre:1s;sub:pre:3s; +préviennent prévenir ver 129.26 73.72 0.63 0.47 ind:pre:3p; +préviennes prévenir ver 129.26 73.72 0.23 0.00 sub:pre:2s; +préviens prévenir ver 129.26 73.72 29.86 6.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prévient prévenir ver 129.26 73.72 2.50 2.03 ind:pre:3s; +prévins prévenir ver 129.26 73.72 0.00 0.54 ind:pas:1s; +prévint prévenir ver 129.26 73.72 0.00 2.30 ind:pas:3s; +prévis prévis nom f 0.00 0.14 0.00 0.14 +prévisibilité prévisibilité nom f s 0.04 0.00 0.04 0.00 +prévisible prévisible adj s 2.79 3.45 2.40 2.77 +prévisibles prévisible adj p 2.79 3.45 0.39 0.68 +prévision prévision nom f s 3.29 7.03 1.28 3.58 +prévisionnel prévisionnel adj m s 0.12 0.07 0.08 0.00 +prévisionnelles prévisionnel adj f p 0.12 0.07 0.01 0.00 +prévisionnels prévisionnel adj m p 0.12 0.07 0.03 0.07 +prévisions prévision nom f p 3.29 7.03 2.00 3.45 +prévit prévoir ver 78.22 77.09 0.00 0.07 ind:pas:3s; +prévoie prévoir ver 78.22 77.09 0.44 0.00 sub:pre:1s;sub:pre:3s; +prévoient prévoir ver 78.22 77.09 0.54 0.34 ind:pre:3p; +prévoies prévoir ver 78.22 77.09 0.09 0.00 sub:pre:2s; +prévoir prévoir ver 78.22 77.09 8.23 17.70 inf; +prévoira prévoir ver 78.22 77.09 0.01 0.00 ind:fut:3s; +prévoirait prévoir ver 78.22 77.09 0.01 0.07 cnd:pre:3s; +prévois prévoir ver 78.22 77.09 1.86 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prévoit prévoir ver 78.22 77.09 3.05 1.96 ind:pre:3s; +prévoyaient prévoir ver 78.22 77.09 0.19 0.54 ind:imp:3p; +prévoyais prévoir ver 78.22 77.09 0.40 1.62 ind:imp:1s;ind:imp:2s; +prévoyait prévoir ver 78.22 77.09 0.55 4.05 ind:imp:3s; +prévoyance prévoyance nom f s 0.43 1.28 0.43 1.22 +prévoyances prévoyance nom f p 0.43 1.28 0.00 0.07 +prévoyant prévoyant adj m s 0.78 1.89 0.58 0.88 +prévoyante prévoyant adj f s 0.78 1.89 0.06 0.47 +prévoyantes prévoyant adj f p 0.78 1.89 0.00 0.14 +prévoyants prévoyant adj m p 0.78 1.89 0.14 0.41 +prévoyez prévoir ver 78.22 77.09 0.96 0.14 imp:pre:2p;ind:pre:2p; +prévoyions prévoir ver 78.22 77.09 0.01 0.07 ind:imp:1p; +prévoyons prévoir ver 78.22 77.09 0.49 0.20 imp:pre:1p;ind:pre:1p; +prévu prévoir ver m s 78.22 77.09 55.54 33.45 par:pas; +prévue prévoir ver f s 78.22 77.09 4.35 7.70 par:pas; +prévues prévoir ver f p 78.22 77.09 0.65 3.51 par:pas; +prévus prévoir ver m p 78.22 77.09 0.76 2.43 par:pas; +prytanée prytanée nom m s 0.00 0.27 0.00 0.27 +psalliotes psalliote nom f p 0.00 0.20 0.00 0.20 +psalmiste psalmiste nom s 0.00 0.14 0.00 0.14 +psalmodia psalmodier ver 0.33 3.24 0.00 0.20 ind:pas:3s; +psalmodiaient psalmodier ver 0.33 3.24 0.00 0.14 ind:imp:3p; +psalmodiais psalmodier ver 0.33 3.24 0.03 0.14 ind:imp:1s;ind:imp:2s; +psalmodiait psalmodier ver 0.33 3.24 0.01 0.81 ind:imp:3s; +psalmodiant psalmodier ver 0.33 3.24 0.01 0.81 par:pre; +psalmodie psalmodier ver 0.33 3.24 0.06 0.41 ind:pre:1s;ind:pre:3s; +psalmodient psalmodier ver 0.33 3.24 0.00 0.14 ind:pre:3p; +psalmodier psalmodier ver 0.33 3.24 0.16 0.47 inf; +psalmodies psalmodie nom f p 0.15 0.74 0.12 0.41 +psalmodié psalmodier ver m s 0.33 3.24 0.01 0.14 par:pas; +psalmodiés psalmodier ver m p 0.33 3.24 0.01 0.00 par:pas; +psaume psaume nom m s 1.73 4.39 0.83 1.96 +psaumes psaume nom m p 1.73 4.39 0.90 2.43 +psautier psautier nom m s 0.00 0.14 0.00 0.14 +pschent pschent nom m s 0.00 0.07 0.00 0.07 +pschitt pschitt ono 0.02 0.95 0.02 0.95 +pseudo_gouvernement pseudo_gouvernement nom m s 0.00 0.14 0.00 0.14 +pseudo pseudo nom_sup m s 1.62 1.08 1.37 1.01 +pseudobulbaire pseudobulbaire adj f s 0.01 0.00 0.01 0.00 +pseudomonas pseudomonas nom m 0.05 0.00 0.05 0.00 +pseudonyme pseudonyme nom m s 1.62 4.05 1.46 3.38 +pseudonymes pseudonyme nom m p 1.62 4.05 0.16 0.68 +pseudopodes pseudopode nom m p 0.00 0.14 0.00 0.14 +pseudos pseudo nom_sup m p 1.62 1.08 0.25 0.07 +psi psi nom m 0.04 0.00 0.04 0.00 +psilocybine psilocybine nom f s 0.05 0.00 0.05 0.00 +psitt psitt ono 0.01 0.20 0.01 0.20 +psittacose psittacose nom f s 0.05 0.00 0.05 0.00 +psoriasis psoriasis nom m 0.14 0.00 0.14 0.00 +pst pst ono 0.43 0.00 0.43 0.00 +psy psy nom s 17.22 3.85 15.94 3.85 +psychanalyse psychanalyse nom f s 1.35 4.73 1.35 4.66 +psychanalyser psychanalyser ver 0.22 1.42 0.14 1.01 inf; +psychanalyserai psychanalyser ver 0.22 1.42 0.00 0.20 ind:fut:1s; +psychanalyses psychanalyser ver 0.22 1.42 0.01 0.00 ind:pre:2s; +psychanalyste psychanalyste nom s 0.91 3.38 0.83 2.77 +psychanalystes psychanalyste nom p 0.91 3.38 0.08 0.61 +psychanalysé psychanalyser ver m s 0.22 1.42 0.04 0.07 par:pas; +psychanalytique psychanalytique adj s 0.15 0.54 0.13 0.41 +psychanalytiques psychanalytique adj p 0.15 0.54 0.02 0.14 +psychasthéniques psychasthénique adj p 0.00 0.07 0.00 0.07 +psychiatre_conseil psychiatre_conseil nom s 0.02 0.00 0.02 0.00 +psychiatre psychiatre nom s 13.52 8.11 11.39 6.82 +psychiatres psychiatre nom p 13.52 8.11 2.13 1.28 +psychiatrie psychiatrie nom f s 3.59 1.22 3.59 1.22 +psychiatrique psychiatrique adj s 9.16 3.65 7.68 3.04 +psychiatriques psychiatrique adj p 9.16 3.65 1.48 0.61 +psychique psychique adj s 3.34 2.84 1.75 1.76 +psychiquement psychiquement adv 0.13 0.00 0.13 0.00 +psychiques psychique adj p 3.34 2.84 1.59 1.08 +psychisme psychisme nom m s 0.38 1.15 0.38 1.08 +psychismes psychisme nom m p 0.38 1.15 0.00 0.07 +psycho psycho adv 2.11 0.27 2.11 0.27 +psychochirurgie psychochirurgie nom f s 0.02 0.00 0.02 0.00 +psychodrame psychodrame nom m s 0.33 0.20 0.33 0.20 +psychodysleptique psychodysleptique adj s 0.01 0.00 0.01 0.00 +psychogène psychogène adj f s 0.01 1.08 0.01 0.20 +psychogènes psychogène adj p 0.01 1.08 0.00 0.88 +psychokinésie psychokinésie nom f s 0.20 0.00 0.20 0.00 +psycholinguistes psycholinguiste nom p 0.00 0.07 0.00 0.07 +psycholinguistique psycholinguistique adj s 0.01 0.00 0.01 0.00 +psychologie_fiction psychologie_fiction nom f s 0.00 0.07 0.00 0.07 +psychologie psychologie nom f s 5.64 8.24 5.64 8.11 +psychologies psychologie nom f p 5.64 8.24 0.00 0.14 +psychologique psychologique adj s 8.07 6.69 6.79 4.93 +psychologiquement psychologiquement adv 1.68 0.34 1.68 0.34 +psychologiques psychologique adj p 8.07 6.69 1.28 1.76 +psychologisation psychologisation nom f s 0.00 0.07 0.00 0.07 +psychologue psychologue nom s 6.67 3.72 5.98 2.64 +psychologues psychologue nom p 6.67 3.72 0.69 1.08 +psychomotrice psychomoteur adj f s 0.14 0.00 0.14 0.00 +psychométrique psychométrique adj s 0.02 0.00 0.02 0.00 +psychonévrose psychonévrose nom f s 0.01 0.00 0.01 0.00 +psychopathe psychopathe nom s 9.38 0.14 8.01 0.14 +psychopathes psychopathe nom p 9.38 0.14 1.38 0.00 +psychopathie psychopathie nom f s 0.02 0.00 0.02 0.00 +psychopathique psychopathique adj f s 0.13 0.00 0.13 0.00 +psychopathologie psychopathologie nom f s 0.05 0.07 0.05 0.07 +psychopathologique psychopathologique adj f s 0.01 0.07 0.01 0.07 +psychopharmacologie psychopharmacologie nom f s 0.03 0.00 0.03 0.00 +psychophysiologie psychophysiologie nom f s 0.01 0.00 0.01 0.00 +psychophysiologique psychophysiologique adj f s 0.01 0.00 0.01 0.00 +psychorigide psychorigide adj m s 0.02 0.00 0.02 0.00 +psychose psychose nom f s 1.79 0.95 1.79 0.95 +psychosexuel psychosexuel adj m s 0.01 0.00 0.01 0.00 +psychosociologie psychosociologie nom f s 0.00 0.07 0.00 0.07 +psychosociologue psychosociologue nom s 0.10 0.00 0.10 0.00 +psychosomaticien psychosomaticien nom m s 0.00 0.20 0.00 0.20 +psychosomatique psychosomatique adj s 0.66 0.47 0.55 0.41 +psychosomatiques psychosomatique adj p 0.66 0.47 0.11 0.07 +psychotechnicien psychotechnicien nom m s 0.00 0.20 0.00 0.14 +psychotechniciens psychotechnicien nom m p 0.00 0.20 0.00 0.07 +psychotechnique psychotechnique adj m s 0.20 0.00 0.20 0.00 +psychothérapeute psychothérapeute nom s 0.23 0.14 0.23 0.14 +psychothérapie psychothérapie nom f s 0.69 0.20 0.69 0.20 +psychotique psychotique adj s 2.66 0.27 2.25 0.00 +psychotiques psychotique adj p 2.66 0.27 0.42 0.27 +psychotoniques psychotonique nom p 0.01 0.00 0.01 0.00 +psychotrope psychotrope nom s 0.34 0.00 0.07 0.00 +psychotropes psychotrope nom p 0.34 0.00 0.26 0.00 +psyché psyché nom f s 0.73 1.08 0.70 1.01 +psychédélique psychédélique adj s 0.89 0.61 0.79 0.41 +psychédéliques psychédélique adj p 0.89 0.61 0.11 0.20 +psychés psyché nom f p 0.73 1.08 0.03 0.07 +psyllium psyllium nom m s 0.01 0.00 0.01 0.00 +psys psy nom p 17.22 3.85 1.28 0.00 +pèche pécher ver 9.87 4.59 0.96 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèchent pécher ver 9.87 4.59 0.01 0.07 ind:pre:3p; +pègre pègre nom f s 1.34 1.42 1.34 1.42 +pèle peler ver 1.78 4.93 0.88 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèlent peler ver 1.78 4.93 0.27 0.20 ind:pre:3p; +pèlerai peler ver 1.78 4.93 0.02 0.00 ind:fut:1s; +pèlerin pèlerin nom m s 4.04 12.70 1.31 1.89 +pèlerinage pèlerinage nom m s 2.32 8.58 2.02 7.23 +pèlerinages pèlerinage nom m p 2.32 8.58 0.30 1.35 +pèlerine pèlerin nom f s 4.04 12.70 0.27 4.80 +pèlerines pèlerin nom f p 4.04 12.70 0.01 0.95 +pèlerins pèlerin nom m p 4.04 12.70 2.45 5.07 +pèles peler ver 1.78 4.93 0.00 0.14 ind:pre:2s; +père père nom m s 895.55 723.51 879.31 708.11 +pères père nom m p 895.55 723.51 16.25 15.41 +pèse_acide pèse_acide nom m s 0.00 0.07 0.00 0.07 +pèse_bébé pèse_bébé nom m s 0.00 0.14 0.00 0.14 +pèse_lettre pèse_lettre nom m s 0.00 0.07 0.00 0.07 +pèse_personne pèse_personne nom m s 0.02 0.07 0.02 0.00 +pèse_personne pèse_personne nom m p 0.02 0.07 0.00 0.07 +pèse peser ver 23.41 70.88 10.47 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèsent peser ver 23.41 70.88 2.02 4.32 ind:pre:3p; +pèsera peser ver 23.41 70.88 0.30 0.54 ind:fut:3s; +pèserai peser ver 23.41 70.88 0.02 0.20 ind:fut:1s; +pèseraient peser ver 23.41 70.88 0.04 0.07 cnd:pre:3p; +pèserais peser ver 23.41 70.88 0.12 0.14 cnd:pre:1s;cnd:pre:2s; +pèserait peser ver 23.41 70.88 0.05 0.74 cnd:pre:3s; +pèseras peser ver 23.41 70.88 0.01 0.00 ind:fut:2s; +pèseront peser ver 23.41 70.88 0.13 0.07 ind:fut:3p; +pèses peser ver 23.41 70.88 0.61 0.14 ind:pre:2s; +pète_sec pète_sec adj 0.03 0.41 0.03 0.41 +pète péter ver 31.66 16.28 8.16 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pètent péter ver 31.66 16.28 0.79 0.68 ind:pre:3p; +pètes péter ver 31.66 16.28 0.85 0.27 ind:pre:2s; +pètesec pètesec adj f s 0.00 0.07 0.00 0.07 +pèze pèze nom m s 0.82 0.95 0.82 0.95 +ptosis ptosis nom m 0.01 0.00 0.01 0.00 +ptérodactyle ptérodactyle nom m s 0.21 0.20 0.19 0.07 +ptérodactyles ptérodactyle nom m p 0.21 0.20 0.02 0.14 +ptyx ptyx nom m 0.00 0.07 0.00 0.07 +pu pouvoir ver_sup m s 5524.52 2659.80 366.22 349.32 par:pas; +puîné puîné nom m s 0.00 0.27 0.00 0.14 +puînée puîné adj f s 0.00 0.07 0.00 0.07 +puînés puîné nom m p 0.00 0.27 0.00 0.14 +pua puer ver 36.29 18.65 0.01 0.07 ind:pas:3s; +péage péage nom m s 1.08 1.01 0.90 0.88 +péages péage nom m p 1.08 1.01 0.18 0.14 +péagiste péagiste nom s 0.00 0.07 0.00 0.07 +puaient puer ver 36.29 18.65 0.04 0.47 ind:imp:3p; +puais puer ver 36.29 18.65 0.37 0.20 ind:imp:1s;ind:imp:2s; +puait puer ver 36.29 18.65 1.19 3.51 ind:imp:3s; +péan péan nom m s 0.00 0.07 0.00 0.07 +puant puant adj m s 7.02 11.49 2.74 4.59 +puante puant adj f s 7.02 11.49 1.91 3.11 +puantes puant adj f p 7.02 11.49 0.77 2.30 +puanteur puanteur nom f s 3.44 9.05 3.32 7.91 +puanteurs puanteur nom f p 3.44 9.05 0.12 1.15 +puants puant adj m p 7.02 11.49 1.60 1.49 +pub pub nom s 25.65 4.53 21.39 3.99 +pubertaire pubertaire adj s 0.14 0.20 0.14 0.07 +pubertaires pubertaire adj f p 0.14 0.20 0.00 0.14 +puberté puberté nom f s 1.32 2.36 1.32 2.36 +pubescentes pubescent adj f p 0.01 0.00 0.01 0.00 +pubien pubien adj m s 1.51 0.41 0.57 0.07 +pubienne pubien adj f s 1.51 0.41 0.20 0.20 +pubiennes pubien adj f p 1.51 0.41 0.01 0.07 +pubiens pubien adj m p 1.51 0.41 0.72 0.07 +pubis pubis nom m 0.59 1.15 0.59 1.15 +publia publier ver 21.07 33.92 0.03 1.35 ind:pas:3s; +publiable publiable adj s 0.03 0.07 0.01 0.07 +publiables publiable adj m p 0.03 0.07 0.02 0.00 +publiai publier ver 21.07 33.92 0.01 0.27 ind:pas:1s; +publiaient publier ver 21.07 33.92 0.02 1.01 ind:imp:3p; +publiais publier ver 21.07 33.92 0.00 0.14 ind:imp:1s; +publiait publier ver 21.07 33.92 0.27 1.89 ind:imp:3s; +publiant publier ver 21.07 33.92 0.07 0.61 par:pre; +public_relations public_relations nom f p 0.01 0.20 0.01 0.20 +public_school public_school nom f p 0.00 0.07 0.00 0.07 +public public nom m s 46.97 38.04 46.72 37.91 +publicain publicain nom m s 0.39 0.34 0.01 0.14 +publicains publicain nom m p 0.39 0.34 0.38 0.20 +publication publication nom f s 1.85 7.23 1.40 5.00 +publications publication nom f p 1.85 7.23 0.45 2.23 +publiciste publiciste nom s 0.18 0.74 0.12 0.47 +publicistes publiciste nom p 0.18 0.74 0.06 0.27 +publicitaire publicitaire adj s 3.26 6.49 1.93 3.72 +publicitairement publicitairement adv 0.00 0.07 0.00 0.07 +publicitaires publicitaire adj p 3.26 6.49 1.34 2.77 +publicité publicité nom f s 13.30 14.66 12.12 12.57 +publicités publicité nom f p 13.30 14.66 1.18 2.09 +publico publico adv 0.01 0.07 0.01 0.07 +publics public adj m p 44.81 65.27 4.84 14.46 +publie publier ver 21.07 33.92 1.71 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +publient publier ver 21.07 33.92 0.41 0.34 ind:pre:3p; +publier publier ver 21.07 33.92 6.85 8.92 inf; +publiera publier ver 21.07 33.92 0.47 0.27 ind:fut:3s; +publierai publier ver 21.07 33.92 0.12 0.07 ind:fut:1s; +publieraient publier ver 21.07 33.92 0.01 0.00 cnd:pre:3p; +publierais publier ver 21.07 33.92 0.02 0.14 cnd:pre:1s; +publierait publier ver 21.07 33.92 0.01 0.34 cnd:pre:3s; +publierez publier ver 21.07 33.92 0.05 0.14 ind:fut:2p; +publierions publier ver 21.07 33.92 0.00 0.07 cnd:pre:1p; +publierons publier ver 21.07 33.92 0.05 0.07 ind:fut:1p; +publieront publier ver 21.07 33.92 0.08 0.14 ind:fut:3p; +publies publier ver 21.07 33.92 0.31 0.20 ind:pre:2s; +publieur publieur nom m s 0.01 0.00 0.01 0.00 +publiez publier ver 21.07 33.92 1.06 0.07 imp:pre:2p;ind:pre:2p; +publions publier ver 21.07 33.92 0.31 0.34 imp:pre:1p;ind:pre:1p; +publiât publier ver 21.07 33.92 0.00 0.07 sub:imp:3s; +publiphone publiphone nom m s 0.01 0.00 0.01 0.00 +publique public adj f s 44.81 65.27 16.50 24.93 +publiquement publiquement adv 2.47 7.57 2.47 7.57 +publiques public adj f p 44.81 65.27 5.56 7.84 +publireportage publireportage nom m s 0.03 0.00 0.03 0.00 +publièrent publier ver 21.07 33.92 0.00 0.34 ind:pas:3p; +publié publier ver m s 21.07 33.92 6.54 8.85 par:pas; +publiée publier ver f s 21.07 33.92 1.09 2.97 par:pas; +publiées publier ver f p 21.07 33.92 0.56 1.08 par:pas; +publiés publier ver m p 21.07 33.92 1.01 1.55 par:pas; +pébroc pébroc nom m s 0.00 0.07 0.00 0.07 +pébroque pébroque nom m s 0.00 1.62 0.00 1.49 +pébroques pébroque nom m p 0.00 1.62 0.00 0.14 +pubs pub nom p 25.65 4.53 4.26 0.54 +pubère pubère adj s 0.28 0.41 0.20 0.20 +pubères pubère adj p 0.28 0.41 0.09 0.20 +pécan pécan nom m s 0.32 0.00 0.32 0.00 +pécari pécari nom m s 0.00 0.81 0.00 0.61 +pécaris pécari nom m p 0.00 0.81 0.00 0.20 +puce puce nom f s 27.65 12.43 22.15 3.58 +puceau puceau adj m s 2.17 1.08 2.15 1.01 +puceaux puceau nom m p 1.99 2.84 0.30 0.27 +pucelage pucelage nom m s 0.38 1.15 0.38 0.95 +pucelages pucelage nom m p 0.38 1.15 0.00 0.20 +pucelle puceau nom f s 1.99 2.84 1.09 1.35 +pucelles pucelle nom f p 0.31 0.00 0.31 0.00 +puceron puceron nom m s 0.17 0.47 0.06 0.20 +pucerons puceron nom m p 0.17 0.47 0.11 0.27 +puces puce nom f p 27.65 12.43 5.50 8.85 +pêcha pêcher ver 16.52 12.84 0.00 0.27 ind:pas:3s; +pêchaient pêcher ver 16.52 12.84 0.05 0.74 ind:imp:3p; +pêchais pêcher ver 16.52 12.84 0.44 0.34 ind:imp:1s;ind:imp:2s; +péchais pécher ver 9.87 4.59 0.02 0.07 ind:imp:1s; +pêchait pêcher ver 16.52 12.84 0.76 0.95 ind:imp:3s; +péchait pécher ver 9.87 4.59 0.02 0.27 ind:imp:3s; +pêchant pêcher ver 16.52 12.84 0.14 0.54 par:pre; +péchant pécher ver 9.87 4.59 0.01 0.07 par:pre; +pêche pêche nom f s 24.39 30.41 21.13 26.76 +pêchent pêcher ver 16.52 12.84 0.16 0.47 ind:pre:3p; +pêcher pêcher ver 16.52 12.84 9.04 5.47 inf; +pécher pécher ver 9.87 4.59 1.88 0.95 inf; +pucher pucher ver 0.02 0.00 0.02 0.00 inf; +pêchera pêcher ver 16.52 12.84 0.09 0.14 ind:fut:3s; +pécherai pécher ver 9.87 4.59 0.04 0.00 ind:fut:1s; +pêcherais pêcher ver 16.52 12.84 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +pécherais pécher ver 9.87 4.59 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +pécherait pécher ver 9.87 4.59 0.00 0.07 cnd:pre:3s; +pêcheras pêcher ver 16.52 12.84 0.01 0.07 ind:fut:2s; +pécheresse pécheur nom f s 8.02 4.53 0.77 0.54 +pécheresses pécheur adj f p 1.75 1.55 0.07 0.07 +pêcherie pêcherie nom f s 0.23 0.88 0.14 0.14 +pêcheries pêcherie nom f p 0.23 0.88 0.10 0.74 +pêcherons pêcher ver 16.52 12.84 0.01 0.00 ind:fut:1p; +pêchers pêcher nom m p 0.58 1.55 0.34 0.68 +pêches pêche nom f p 24.39 30.41 3.25 3.65 +pécheur pécheur adj m s 1.75 1.55 0.62 0.74 +pêcheur pêcheur nom m s 10.33 27.43 5.08 13.11 +pécheur pécheur nom m s 8.02 4.53 3.54 1.82 +pécheurs pécheur adj m p 1.75 1.55 0.40 0.34 +pêcheurs pêcheur nom m p 10.33 27.43 5.21 14.19 +pécheurs pécheur nom m p 8.02 4.53 3.70 2.03 +pêcheuse pêcheur nom f s 10.33 27.43 0.04 0.14 +pêcheuses pêcheuse nom f p 0.01 0.00 0.01 0.00 +pucheux pucheux nom m 0.00 0.07 0.00 0.07 +pêchez pêcher ver 16.52 12.84 0.45 0.07 imp:pre:2p;ind:pre:2p; +péchez pécher ver 9.87 4.59 0.01 0.14 imp:pre:2p;ind:pre:2p; +pêchions pêcher ver 16.52 12.84 0.04 0.20 ind:imp:1p; +péchons péchon nom m p 0.03 0.00 0.03 0.00 +pêché pêcher ver m s 16.52 12.84 3.03 1.01 par:pas; +péché pécher ver m s 9.87 4.59 6.84 2.30 par:pas; +pêché pêché adj m s 1.77 0.20 0.94 0.20 +péché péché nom m s 41.22 30.34 26.14 22.64 +pêchée pêcher ver f s 16.52 12.84 0.04 0.27 par:pas; +pêchées pêcher ver f p 16.52 12.84 0.01 0.14 par:pas; +pêchés pêcher ver m p 16.52 12.84 0.25 0.27 par:pas; +péchés pécher ver m p 9.87 4.59 0.05 0.14 par:pas; +pêchés pêché adj m p 1.77 0.20 0.83 0.00 +péchés péché nom m p 41.22 30.34 15.08 7.70 +pucier pucier nom m s 0.05 0.41 0.05 0.34 +puciers pucier nom m p 0.05 0.41 0.00 0.07 +pécore pécore nom s 0.62 1.01 0.49 0.61 +pécores pécore nom p 0.62 1.01 0.14 0.41 +pécule pécule nom m s 0.64 2.30 0.64 2.09 +pécules pécule nom m p 0.64 2.30 0.00 0.20 +pécune pécune nom f s 0.00 0.07 0.00 0.07 +pécuniaire pécuniaire adj s 0.13 0.41 0.11 0.14 +pécuniairement pécuniairement adv 0.00 0.07 0.00 0.07 +pécuniaires pécuniaire adj p 0.13 0.41 0.02 0.27 +pécunieux pécunieux adj m 0.00 0.07 0.00 0.07 +pédagogie pédagogie nom f s 0.45 1.22 0.45 1.22 +pédagogique pédagogique adj s 0.74 2.36 0.69 1.55 +pédagogiques pédagogique adj p 0.74 2.36 0.05 0.81 +pédagogue pédagogue nom s 0.86 1.49 0.76 1.08 +pédagogues pédagogue nom p 0.86 1.49 0.10 0.41 +pédala pédaler ver 1.58 7.03 0.01 0.27 ind:pas:3s; +pédalage pédalage nom m s 0.00 0.14 0.00 0.14 +pédalai pédaler ver 1.58 7.03 0.00 0.14 ind:pas:1s; +pédalaient pédaler ver 1.58 7.03 0.00 0.20 ind:imp:3p; +pédalais pédaler ver 1.58 7.03 0.16 0.14 ind:imp:1s; +pédalait pédaler ver 1.58 7.03 0.19 1.55 ind:imp:3s; +pédalant pédaler ver 1.58 7.03 0.08 1.35 par:pre; +pédale pédale nom f s 10.01 12.23 5.08 5.20 +pédalent pédaler ver 1.58 7.03 0.00 0.07 ind:pre:3p; +pédaler pédaler ver 1.58 7.03 0.37 2.57 inf; +pédalerait pédaler ver 1.58 7.03 0.00 0.07 cnd:pre:3s; +pédalerons pédaler ver 1.58 7.03 0.00 0.07 ind:fut:1p; +pédales pédale nom f p 10.01 12.23 4.92 7.03 +pédaleur pédaleur nom m s 0.00 0.14 0.00 0.07 +pédaleuses pédaleur nom f p 0.00 0.14 0.00 0.07 +pédalier pédalier nom m s 0.11 1.01 0.01 0.81 +pédaliers pédalier nom m p 0.11 1.01 0.10 0.20 +pédalo pédalo nom m s 0.05 0.41 0.03 0.20 +pédalos pédalo nom m p 0.05 0.41 0.02 0.20 +pédalèrent pédaler ver 1.58 7.03 0.00 0.07 ind:pas:3p; +pédalé pédaler ver m s 1.58 7.03 0.14 0.07 par:pas; +pédalées pédaler ver f p 1.58 7.03 0.00 0.07 par:pas; +pédant pédant adj m s 0.43 1.55 0.18 0.68 +pédante pédant adj f s 0.43 1.55 0.11 0.34 +pédanterie pédanterie nom f s 0.00 0.47 0.00 0.41 +pédanteries pédanterie nom f p 0.00 0.47 0.00 0.07 +pédantes pédant adj f p 0.43 1.55 0.01 0.27 +pédantesque pédantesque adj s 0.00 0.07 0.00 0.07 +pédantisme pédantisme nom m s 0.00 0.61 0.00 0.61 +pédants pédant adj m p 0.43 1.55 0.14 0.27 +pudding pudding nom m s 2.86 0.68 2.80 0.54 +puddings pudding nom m p 2.86 0.68 0.06 0.14 +puddle puddler ver 0.16 0.00 0.16 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pédestre pédestre adj s 0.01 0.54 0.01 0.34 +pédestrement pédestrement adv 0.00 0.14 0.00 0.14 +pédestres pédestre adj f p 0.01 0.54 0.00 0.20 +pudeur pudeur nom f s 5.08 20.07 4.98 19.32 +pudeurs pudeur nom f p 5.08 20.07 0.10 0.74 +pédezouille pédezouille nom s 0.00 0.07 0.00 0.07 +pédiatre pédiatre nom s 2.55 0.95 2.03 0.81 +pédiatres pédiatre nom p 2.55 0.95 0.52 0.14 +pédiatrie pédiatrie nom f s 1.08 0.14 1.08 0.14 +pédiatrique pédiatrique adj s 0.48 0.00 0.48 0.00 +pudibond pudibond adj m s 0.06 0.41 0.02 0.14 +pudibonde pudibond adj f s 0.06 0.41 0.04 0.14 +pudibonderie pudibonderie nom f s 0.01 0.47 0.01 0.34 +pudibonderies pudibonderie nom f p 0.01 0.47 0.00 0.14 +pudibondes pudibond adj f p 0.06 0.41 0.00 0.07 +pudibonds pudibond adj m p 0.06 0.41 0.00 0.07 +pédibus pédibus adv 0.00 0.20 0.00 0.20 +pudicité pudicité nom f s 0.00 0.07 0.00 0.07 +pédicule pédicule nom m s 0.03 0.07 0.03 0.07 +pédicure pédicure nom s 0.76 0.41 0.71 0.34 +pédicures pédicure nom p 0.76 0.41 0.05 0.07 +pédicurie pédicurie nom f s 0.01 0.00 0.01 0.00 +pédieuse pédieux adj f s 0.03 0.00 0.01 0.00 +pédieux pédieux adj m 0.03 0.00 0.01 0.00 +pudique pudique adj s 1.12 5.27 0.98 4.39 +pudiquement pudiquement adv 0.02 2.03 0.02 2.03 +pudiques pudique adj p 1.12 5.27 0.14 0.88 +pédologue pédologue nom s 0.03 0.00 0.03 0.00 +pédomètre pédomètre nom m s 0.01 0.00 0.01 0.00 +pédoncule pédoncule nom m s 0.06 0.20 0.06 0.14 +pédoncules pédoncule nom m p 0.06 0.20 0.00 0.07 +pédonculé pédonculé adj m s 0.00 0.07 0.00 0.07 +pédophile pédophile nom m s 1.34 0.34 0.95 0.20 +pédophiles pédophile nom m p 1.34 0.34 0.39 0.14 +pédophilie pédophilie nom f s 0.58 0.14 0.58 0.14 +pédophiliques pédophilique adj m p 0.00 0.07 0.00 0.07 +pédopsychiatre pédopsychiatre nom s 0.32 0.00 0.32 0.00 +pédoque pédoque nom m s 0.00 0.54 0.00 0.54 +pédé pédé nom m s 33.12 8.18 25.64 4.86 +pédégé pédégé nom m s 0.00 0.07 0.00 0.07 +pédéraste pédéraste nom m s 0.48 3.38 0.36 1.96 +pédérastes pédéraste nom m p 0.48 3.38 0.13 1.42 +pédérastie pédérastie nom f s 0.29 0.61 0.29 0.61 +pédérastique pédérastique adj s 0.00 0.27 0.00 0.27 +pédés pédé nom m p 33.12 8.18 7.48 3.31 +pue puer ver 36.29 18.65 23.80 8.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pueblo pueblo adj m s 0.05 0.95 0.05 0.95 +puent puer ver 36.29 18.65 2.29 1.89 ind:pre:3p; +puer puer ver 36.29 18.65 1.44 1.49 inf; +puera puer ver 36.29 18.65 0.05 0.00 ind:fut:3s; +puerait puer ver 36.29 18.65 0.01 0.00 cnd:pre:3s; +pueras puer ver 36.29 18.65 0.23 0.00 ind:fut:2s; +puerez puer ver 36.29 18.65 0.01 0.00 ind:fut:2p; +puerpérale puerpéral adj f s 0.12 0.07 0.12 0.07 +pues puer ver 36.29 18.65 5.66 0.54 ind:pre:2s; +puez puer ver 36.29 18.65 0.67 0.14 imp:pre:2p;ind:pre:2p; +puff puff nom m s 0.57 0.14 0.57 0.14 +puffin puffin nom m s 0.54 0.00 0.54 0.00 +pégamoïd pégamoïd nom m s 0.00 0.07 0.00 0.07 +pugilat pugilat nom m s 0.12 1.08 0.11 0.74 +pugilats pugilat nom m p 0.12 1.08 0.01 0.34 +pugiler pugiler ver 0.00 0.07 0.00 0.07 inf; +pugiliste pugiliste nom s 0.20 0.41 0.20 0.20 +pugilistes pugiliste nom p 0.20 0.41 0.00 0.20 +pugilistique pugilistique adj f s 0.00 0.07 0.00 0.07 +pugnace pugnace adj s 0.06 0.14 0.06 0.14 +pugnacité pugnacité nom f s 0.04 0.20 0.04 0.20 +pégriot pégriot nom m s 0.00 0.41 0.00 0.20 +pégriots pégriot nom m p 0.00 0.41 0.00 0.20 +puis puis con 256.19 836.42 256.19 836.42 +puisa puiser ver 2.97 14.46 0.02 0.68 ind:pas:3s; +puisai puiser ver 2.97 14.46 0.14 0.20 ind:pas:1s; +puisaient puiser ver 2.97 14.46 0.00 0.81 ind:imp:3p; +puisais puiser ver 2.97 14.46 0.00 0.61 ind:imp:1s; +puisait puiser ver 2.97 14.46 0.16 3.11 ind:imp:3s; +puisant puiser ver 2.97 14.46 0.17 1.01 par:pre; +puisard puisard nom m s 0.29 0.20 0.29 0.14 +puisards puisard nom m p 0.29 0.20 0.00 0.07 +puisatier puisatier nom m s 0.00 0.07 0.00 0.07 +puise puiser ver 2.97 14.46 0.82 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +puisent puiser ver 2.97 14.46 0.02 0.20 ind:pre:3p; +puiser puiser ver 2.97 14.46 1.08 3.51 inf; +puisera puiser ver 2.97 14.46 0.01 0.07 ind:fut:3s; +puiserai puiser ver 2.97 14.46 0.00 0.07 ind:fut:1s; +puiserait puiser ver 2.97 14.46 0.00 0.07 cnd:pre:3s; +puiserez puiser ver 2.97 14.46 0.02 0.00 ind:fut:2p; +puiseront puiser ver 2.97 14.46 0.00 0.14 ind:fut:3p; +puises puiser ver 2.97 14.46 0.08 0.07 ind:pre:2s; +puisette puisette nom f s 0.00 0.14 0.00 0.14 +puisez puiser ver 2.97 14.46 0.04 0.00 imp:pre:2p;ind:pre:2p; +puisions puiser ver 2.97 14.46 0.00 0.07 ind:imp:1p; +puisons puiser ver 2.97 14.46 0.03 0.27 imp:pre:1p;ind:pre:1p; +puisqu puisqu con 0.03 0.00 0.03 0.00 +puisque puisque con 59.09 131.82 59.09 131.82 +puissamment puissamment con 0.12 0.95 0.12 0.95 +puissance puissance nom f s 33.69 55.20 30.37 44.12 +puissances puissance nom f p 33.69 55.20 3.33 11.08 +puissant puissant adj m s 39.99 47.70 22.65 19.86 +puissante puissant adj f s 39.99 47.70 9.16 14.26 +puissantes puissant adj f p 39.99 47.70 2.85 5.20 +puissants puissant adj m p 39.99 47.70 5.34 8.38 +puisse pouvoir ver_sup 5524.52 2659.80 90.37 74.80 sub:pre:1s;sub:pre:3s; +puissent pouvoir ver_sup 5524.52 2659.80 10.18 14.05 sub:pre:3p; +puisses pouvoir ver_sup 5524.52 2659.80 13.79 2.50 sub:pre:2s; +puissiez pouvoir ver_sup 5524.52 2659.80 8.59 2.97 sub:pre:2p; +puissions pouvoir ver_sup 5524.52 2659.80 6.20 3.58 sub:pre:1p; +puisé puiser ver m s 2.97 14.46 0.35 1.35 par:pas; +puisée puiser ver f s 2.97 14.46 0.01 0.54 par:pas; +puisées puiser ver f p 2.97 14.46 0.02 0.34 par:pas; +puisés puiser ver m p 2.97 14.46 0.00 0.20 par:pas; +puits puits nom m 19.52 21.69 19.52 21.69 +péjoratif péjoratif adj m s 0.09 1.28 0.07 1.01 +péjoratifs péjoratif adj m p 0.09 1.28 0.00 0.14 +péjorative péjoratif adj f s 0.09 1.28 0.01 0.07 +péjorativement péjorativement adv 0.01 0.07 0.01 0.07 +péjoratives péjoratif adj f p 0.09 1.28 0.01 0.07 +pékan pékan nom m s 0.03 0.00 0.03 0.00 +pékin pékin nom m s 0.32 1.28 0.27 0.47 +pékinois pékinois nom m 1.68 0.47 1.68 0.47 +pékinoise pékinois adj f s 0.07 0.20 0.03 0.00 +pékins pékin nom m p 0.32 1.28 0.05 0.81 +pélagique pélagique adj m s 0.29 0.00 0.29 0.00 +pélasgiques pélasgique adj p 0.00 0.07 0.00 0.07 +pêle_mêle pêle_mêle adv 0.00 8.24 0.00 8.24 +pélican pélican nom m s 0.43 1.28 0.28 0.81 +pélicans pélican nom m p 0.43 1.28 0.16 0.47 +pull_over pull_over nom m s 0.80 6.35 0.78 5.27 +pull_over pull_over nom m p 0.80 6.35 0.02 1.08 +pull pull nom m s 13.43 8.65 11.41 7.03 +pullman pullman nom m s 0.06 0.54 0.05 0.47 +pullmans pullman nom m p 0.06 0.54 0.01 0.07 +pulls pull nom m p 13.43 8.65 2.02 1.62 +pullula pulluler ver 0.78 2.91 0.00 0.07 ind:pas:3s; +pullulaient pulluler ver 0.78 2.91 0.01 0.74 ind:imp:3p; +pullulait pulluler ver 0.78 2.91 0.00 0.34 ind:imp:3s; +pullulant pulluler ver 0.78 2.91 0.00 0.14 par:pre; +pullulantes pullulant adj f p 0.00 0.20 0.00 0.07 +pullulants pullulant adj m p 0.00 0.20 0.00 0.14 +pullule pulluler ver 0.78 2.91 0.41 0.61 ind:pre:3s; +pullulement pullulement nom m s 0.00 0.74 0.00 0.74 +pullulent pulluler ver 0.78 2.91 0.19 0.74 ind:pre:3p; +pulluler pulluler ver 0.78 2.91 0.16 0.27 inf; +pulluleront pulluler ver 0.78 2.91 0.01 0.00 ind:fut:3p; +pulmonaire pulmonaire adj s 2.31 1.35 2.00 0.95 +pulmonaires pulmonaire adj p 2.31 1.35 0.32 0.41 +pulmonie pulmonie nom f s 0.00 0.07 0.00 0.07 +pulmonique pulmonique adj s 0.00 0.07 0.00 0.07 +pélot pélot nom m s 0.00 0.07 0.00 0.07 +pulpe pulpe nom f s 0.72 2.36 0.62 2.16 +pulpes pulpe nom f p 0.72 2.36 0.10 0.20 +pulpeuse pulpeux adj f s 0.22 2.23 0.11 1.28 +pulpeuses pulpeux adj f p 0.22 2.23 0.09 0.41 +pulpeux pulpeux adj m 0.22 2.23 0.02 0.54 +pulque pulque nom m s 0.60 0.00 0.60 0.00 +pulsait pulser ver 0.51 0.61 0.01 0.20 ind:imp:3s; +pulsant pulser ver 0.51 0.61 0.00 0.14 par:pre; +pulsar pulsar nom m s 0.46 0.00 0.46 0.00 +pulsatile pulsatile adj f s 0.01 0.00 0.01 0.00 +pulsation pulsation nom f s 1.24 4.19 0.54 2.09 +pulsations pulsation nom f p 1.24 4.19 0.70 2.09 +pulsative pulsatif adj f s 0.01 0.00 0.01 0.00 +pulse pulser ver 0.51 0.61 0.21 0.20 imp:pre:2s;ind:pre:3s; +pulser pulser ver 0.51 0.61 0.11 0.07 inf; +pulseur pulseur nom m s 0.15 0.07 0.15 0.07 +pulsion pulsion nom f s 4.15 1.69 1.19 0.74 +pulsions pulsion nom f p 4.15 1.69 2.96 0.95 +pulso_réacteur pulso_réacteur nom m p 0.01 0.00 0.01 0.00 +pulsoréacteurs pulsoréacteur nom m p 0.01 0.00 0.01 0.00 +pulsé pulser ver m s 0.51 0.61 0.17 0.00 par:pas; +pulvérin pulvérin nom m s 0.00 0.07 0.00 0.07 +pulvérisa pulvériser ver 3.11 6.69 0.00 0.47 ind:pas:3s; +pulvérisaient pulvériser ver 3.11 6.69 0.00 0.07 ind:imp:3p; +pulvérisais pulvériser ver 3.11 6.69 0.01 0.00 ind:imp:2s; +pulvérisait pulvériser ver 3.11 6.69 0.12 0.61 ind:imp:3s; +pulvérisant pulvériser ver 3.11 6.69 0.08 0.61 par:pre; +pulvérisateur pulvérisateur nom m s 0.22 0.14 0.18 0.07 +pulvérisateurs pulvérisateur nom m p 0.22 0.14 0.03 0.07 +pulvérisation pulvérisation nom f s 0.09 0.27 0.06 0.14 +pulvérisations pulvérisation nom f p 0.09 0.27 0.02 0.14 +pulvérise pulvériser ver 3.11 6.69 0.42 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pulvérisent pulvériser ver 3.11 6.69 0.01 0.20 ind:pre:3p; +pulvériser pulvériser ver 3.11 6.69 1.14 1.15 inf; +pulvériserai pulvériser ver 3.11 6.69 0.02 0.07 ind:fut:1s; +pulvériserait pulvériser ver 3.11 6.69 0.01 0.07 cnd:pre:3s; +pulvériserons pulvériser ver 3.11 6.69 0.01 0.00 ind:fut:1p; +pulvériseront pulvériser ver 3.11 6.69 0.14 0.00 ind:fut:3p; +pulvérises pulvériser ver 3.11 6.69 0.00 0.07 ind:pre:2s; +pulvérisez pulvériser ver 3.11 6.69 0.06 0.00 imp:pre:2p;ind:pre:2p; +pulvérisé pulvériser ver m s 3.11 6.69 0.74 1.22 par:pas; +pulvérisée pulvériser ver f s 3.11 6.69 0.10 1.08 par:pas; +pulvérisées pulvériser ver f p 3.11 6.69 0.06 0.14 par:pas; +pulvérisés pulvériser ver m p 3.11 6.69 0.17 0.54 par:pas; +pulvérulence pulvérulence nom f s 0.00 0.07 0.00 0.07 +pulvérulentes pulvérulent adj f p 0.00 0.07 0.00 0.07 +puma puma nom m s 1.34 2.03 0.42 1.89 +pumas puma nom m p 1.34 2.03 0.92 0.14 +punais punais adj m s 0.00 0.20 0.00 0.20 +punaisait punaiser ver 0.12 0.81 0.00 0.07 ind:imp:3s; +punaise punaise nom f s 2.46 7.84 1.41 1.76 +punaises punaise nom f p 2.46 7.84 1.05 6.08 +punaisé punaiser ver m s 0.12 0.81 0.01 0.27 par:pas; +punaisée punaiser ver f s 0.12 0.81 0.01 0.34 par:pas; +punaisées punaiser ver f p 0.12 0.81 0.00 0.14 par:pas; +punaisés punaiser ver m p 0.12 0.81 0.10 0.00 par:pas; +pénal pénal adj m s 4.64 3.38 3.78 2.91 +pénale pénal adj f s 4.64 3.38 0.54 0.20 +pénalement pénalement adv 0.03 0.07 0.03 0.07 +pénales pénal adj f p 4.64 3.38 0.20 0.27 +pénalisaient pénaliser ver 0.46 0.34 0.01 0.00 ind:imp:3p; +pénalisation pénalisation nom f s 0.01 0.00 0.01 0.00 +pénalise pénaliser ver 0.46 0.34 0.03 0.00 imp:pre:2s;ind:pre:1s; +pénaliser pénaliser ver 0.46 0.34 0.12 0.07 inf; +pénalisera pénaliser ver 0.46 0.34 0.01 0.07 ind:fut:3s; +pénaliserai pénaliser ver 0.46 0.34 0.03 0.00 ind:fut:1s; +pénaliste pénaliste nom s 0.04 0.00 0.04 0.00 +pénalistes pénaliste nom p 0.04 0.00 0.01 0.00 +pénalisé pénaliser ver m s 0.46 0.34 0.15 0.07 par:pas; +pénalisée pénaliser ver f s 0.46 0.34 0.04 0.00 par:pas; +pénalisés pénaliser ver m p 0.46 0.34 0.08 0.14 par:pas; +pénalité pénalité nom f s 1.11 0.07 0.60 0.00 +pénalités pénalité nom f p 1.11 0.07 0.51 0.07 +pénard pénard adj m s 0.02 1.08 0.01 0.54 +pénarde pénard adj f s 0.02 1.08 0.00 0.27 +pénardement pénardement adv 0.00 0.07 0.00 0.07 +pénardes pénard adj f p 0.02 1.08 0.00 0.07 +pénards pénard adj m p 0.02 1.08 0.01 0.20 +pénates pénates nom m p 0.15 0.88 0.15 0.88 +pénaux pénal adj m p 4.64 3.38 0.14 0.00 +punch punch nom m s 3.67 3.11 3.65 2.97 +puncheur puncheur nom m s 0.02 0.00 0.02 0.00 +punching_ball punching_ball nom m s 0.71 0.61 0.64 0.61 +punching_ball punching_ball nom m s 0.71 0.61 0.08 0.00 +punchs punch nom m p 3.67 3.11 0.02 0.14 +punctiforme punctiforme adj f s 0.01 0.00 0.01 0.00 +puncture puncture nom f s 0.10 0.00 0.10 0.00 +pêne pêne nom m s 0.15 0.81 0.15 0.81 +puni punir ver m s 41.70 20.14 10.09 3.99 par:pas; +pénible pénible adj s 13.75 27.43 12.07 21.96 +péniblement péniblement adv 0.74 11.01 0.74 11.01 +pénibles pénible adj p 13.75 27.43 1.69 5.47 +péniche péniche nom f s 1.55 7.97 1.47 5.27 +péniches péniche nom f p 1.55 7.97 0.08 2.70 +pénicilline pénicilline nom f s 1.44 0.95 1.44 0.95 +punie punir ver f s 41.70 20.14 2.79 1.42 par:pas; +pénien pénien adj m s 0.04 0.00 0.02 0.00 +pénienne pénien adj f s 0.04 0.00 0.01 0.00 +punies punir ver f p 41.70 20.14 0.20 0.14 par:pas; +pénil pénil nom m s 0.01 0.00 0.01 0.00 +péninsulaire péninsulaire adj s 0.00 0.14 0.00 0.07 +péninsulaires péninsulaire adj p 0.00 0.14 0.00 0.07 +péninsule péninsule nom f s 0.89 3.31 0.88 3.18 +péninsules péninsule nom f p 0.89 3.31 0.01 0.14 +punique punique adj m s 0.00 0.20 0.00 0.14 +puniques punique adj p 0.00 0.20 0.00 0.07 +punir punir ver 41.70 20.14 13.82 8.45 inf; +punira punir ver 41.70 20.14 1.89 0.27 ind:fut:3s; +punirai punir ver 41.70 20.14 0.91 0.00 ind:fut:1s; +punirais punir ver 41.70 20.14 0.04 0.07 cnd:pre:1s; +punirait punir ver 41.70 20.14 0.06 0.07 cnd:pre:3s; +puniras punir ver 41.70 20.14 0.02 0.07 ind:fut:2s; +punirez punir ver 41.70 20.14 0.03 0.00 ind:fut:2p; +punirons punir ver 41.70 20.14 0.17 0.00 ind:fut:1p; +puniront punir ver 41.70 20.14 0.03 0.00 ind:fut:3p; +pénis pénis nom m 8.11 1.96 8.11 1.96 +punis punir ver m p 41.70 20.14 6.09 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +punissable punissable adj m s 0.21 0.14 0.21 0.07 +punissables punissable adj m p 0.21 0.14 0.00 0.07 +punissaient punir ver 41.70 20.14 0.02 0.20 ind:imp:3p; +punissais punir ver 41.70 20.14 0.26 0.14 ind:imp:1s;ind:imp:2s; +punissait punir ver 41.70 20.14 0.29 1.01 ind:imp:3s; +punissant punir ver 41.70 20.14 0.71 0.47 par:pre; +punisse punir ver 41.70 20.14 0.61 0.27 sub:pre:1s;sub:pre:3s; +punissent punir ver 41.70 20.14 0.26 0.20 ind:pre:3p; +punisses punir ver 41.70 20.14 0.30 0.00 sub:pre:2s; +punisseur punisseur nom m s 0.11 0.00 0.11 0.00 +punissez punir ver 41.70 20.14 0.99 0.07 imp:pre:2p;ind:pre:2p; +punissions punir ver 41.70 20.14 0.01 0.07 ind:imp:1p; +punissons punir ver 41.70 20.14 0.15 0.00 imp:pre:1p;ind:pre:1p; +punit punir ver 41.70 20.14 1.98 1.55 ind:pre:3s;ind:pas:3s; +pénitence pénitence nom f s 2.96 5.95 2.96 5.00 +pénitences pénitence nom f p 2.96 5.95 0.00 0.95 +pénitencier pénitencier nom m s 2.09 1.15 2.04 1.15 +pénitenciers pénitencier nom m p 2.09 1.15 0.06 0.00 +pénitent pénitent nom m s 0.90 2.84 0.27 0.61 +pénitente pénitent nom f s 0.90 2.84 0.14 0.14 +pénitentes pénitent nom f p 0.90 2.84 0.00 0.20 +pénitentiaire pénitentiaire adj s 3.21 2.77 2.79 2.23 +pénitentiaires pénitentiaire adj p 3.21 2.77 0.42 0.54 +pénitentielle pénitentiel adj f s 0.00 0.07 0.00 0.07 +pénitents pénitent nom m p 0.90 2.84 0.49 1.89 +punitif punitif adj m s 0.42 1.08 0.27 0.14 +punition punition nom f s 13.16 9.46 11.97 7.64 +punitions punition nom f p 13.16 9.46 1.19 1.82 +punitive punitif adj f s 0.42 1.08 0.12 0.61 +punitives punitif adj f p 0.42 1.08 0.03 0.34 +punk punk nom s 6.39 4.12 5.45 2.50 +punkette punkette nom f s 0.00 0.14 0.00 0.14 +punks punk nom p 6.39 4.12 0.94 1.62 +pénologie pénologie nom f s 0.02 0.00 0.02 0.00 +pénombre pénombre nom f s 1.23 28.24 1.22 28.04 +pénombres pénombre nom f p 1.23 28.24 0.01 0.20 +punt punt nom m s 0.23 0.00 0.23 0.00 +pénètre pénétrer ver 19.00 87.23 4.64 12.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +pénètrent pénétrer ver 19.00 87.23 0.84 2.77 ind:pre:3p; +pénètres pénétrer ver 19.00 87.23 0.11 0.20 ind:pre:2s; +pénultième pénultième nom f s 0.03 0.07 0.03 0.07 +pénéplaines pénéplaine nom f p 0.00 0.07 0.00 0.07 +pénurie pénurie nom f s 2.15 2.84 2.12 2.70 +pénuries pénurie nom f p 2.15 2.84 0.04 0.14 +pénétra pénétrer ver 19.00 87.23 0.32 9.66 ind:pas:3s; +pénétrable pénétrable adj f s 0.14 0.07 0.14 0.00 +pénétrables pénétrable adj p 0.14 0.07 0.00 0.07 +pénétrai pénétrer ver 19.00 87.23 0.00 1.42 ind:pas:1s; +pénétraient pénétrer ver 19.00 87.23 0.14 3.04 ind:imp:3p; +pénétrais pénétrer ver 19.00 87.23 0.00 1.08 ind:imp:1s;ind:imp:2s; +pénétrait pénétrer ver 19.00 87.23 0.26 9.66 ind:imp:3s; +pénétrant pénétrer ver 19.00 87.23 0.41 4.86 par:pre; +pénétrante pénétrante adj f s 0.29 2.43 0.20 2.23 +pénétrantes pénétrante adj f p 0.29 2.43 0.10 0.20 +pénétrants pénétrant adj m p 0.59 2.09 0.18 0.20 +pénétration pénétration nom f s 2.20 3.38 1.91 3.18 +pénétrations pénétration nom f p 2.20 3.38 0.29 0.20 +pénétrer pénétrer ver 19.00 87.23 6.94 24.19 inf; +pénétrera pénétrer ver 19.00 87.23 0.14 0.20 ind:fut:3s; +pénétrerai pénétrer ver 19.00 87.23 0.02 0.07 ind:fut:1s; +pénétreraient pénétrer ver 19.00 87.23 0.00 0.27 cnd:pre:3p; +pénétrerait pénétrer ver 19.00 87.23 0.01 0.54 cnd:pre:3s; +pénétrerons pénétrer ver 19.00 87.23 0.04 0.07 ind:fut:1p; +pénétreront pénétrer ver 19.00 87.23 0.01 0.07 ind:fut:3p; +pénétrez pénétrer ver 19.00 87.23 0.41 0.34 imp:pre:2p;ind:pre:2p; +pénétrions pénétrer ver 19.00 87.23 0.00 0.27 ind:imp:1p; +pénétrâmes pénétrer ver 19.00 87.23 0.00 0.61 ind:pas:1p; +pénétrons pénétrer ver 19.00 87.23 0.07 0.95 imp:pre:1p;ind:pre:1p; +pénétrât pénétrer ver 19.00 87.23 0.00 0.34 sub:imp:3s; +pénétrèrent pénétrer ver 19.00 87.23 0.02 3.24 ind:pas:3p; +pénétré pénétrer ver m s 19.00 87.23 4.07 8.72 par:pas; +pénétrée pénétrer ver f s 19.00 87.23 0.49 1.28 par:pas; +pénétrées pénétrer ver f p 19.00 87.23 0.00 0.07 par:pas; +pénétrés pénétrer ver m p 19.00 87.23 0.04 0.95 par:pas; +péon péon nom m s 0.02 0.14 0.01 0.00 +péons péon nom m p 0.02 0.14 0.01 0.14 +péottes péotte nom f p 0.00 0.14 0.00 0.14 +pupazzo pupazzo nom m s 0.00 0.14 0.00 0.14 +pupe pupe nom f s 0.01 0.00 0.01 0.00 +pépettes pépettes nom f p 0.03 0.20 0.03 0.20 +pépia pépier ver 0.35 1.28 0.00 0.07 ind:pas:3s; +pépiaient pépier ver 0.35 1.28 0.00 0.47 ind:imp:3p; +pépiait pépier ver 0.35 1.28 0.00 0.14 ind:imp:3s; +pépiant pépiant adj m s 0.14 0.20 0.14 0.20 +pépie pépier ver 0.35 1.28 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pépiement pépiement nom m s 1.16 2.77 0.09 1.49 +pépiements pépiement nom m p 1.16 2.77 1.07 1.28 +pépient pépier ver 0.35 1.28 0.04 0.34 ind:pre:3p; +pépier pépier ver 0.35 1.28 0.11 0.14 inf; +pupillaire pupillaire adj s 0.07 0.00 0.06 0.00 +pupillaires pupillaire adj m p 0.07 0.00 0.01 0.00 +pupille pupille nom s 3.92 5.54 2.04 2.43 +pupilles pupille nom p 3.92 5.54 1.88 3.11 +pépin pépin nom m s 5.15 3.51 4.31 1.96 +pépinière pépinière nom f s 0.51 0.95 0.45 0.68 +pépinières pépinière nom f p 0.51 0.95 0.06 0.27 +pépiniériste pépiniériste nom s 0.04 0.41 0.03 0.27 +pépiniéristes pépiniériste nom p 0.04 0.41 0.01 0.14 +pépins pépin nom m p 5.15 3.51 0.84 1.55 +pépite pépite nom f s 2.04 0.61 0.77 0.20 +pépites pépite nom f p 2.04 0.61 1.27 0.41 +pupitre pupitre nom m s 0.80 6.89 0.73 5.74 +pupitres pupitre nom m p 0.80 6.89 0.07 1.15 +pupitreur pupitreur nom m s 0.01 0.00 0.01 0.00 +pépiés pépier ver m p 0.35 1.28 0.00 0.07 par:pas; +péplum péplum nom m s 0.10 0.54 0.00 0.14 +péplums péplum nom m p 0.10 0.54 0.10 0.41 +pépère pépère adj s 1.21 3.18 1.00 2.50 +pépères pépère adj p 1.21 3.18 0.20 0.68 +pépètes pépètes nom f p 0.08 0.34 0.08 0.34 +pépé pépé nom m s 4.95 16.96 4.81 16.76 +pépée pépée nom f s 0.69 0.54 0.49 0.20 +pépées pépée nom f p 0.69 0.54 0.20 0.34 +pépés pépé nom m p 4.95 16.96 0.13 0.20 +péquenaud péquenaud nom m s 1.60 0.27 1.00 0.07 +péquenaude péquenaud nom f s 1.60 0.27 0.20 0.00 +péquenaudes péquenaud nom f p 1.60 0.27 0.00 0.07 +péquenauds péquenaud nom m p 1.60 0.27 0.41 0.14 +péquenot péquenot nom m s 1.80 1.82 0.97 1.01 +péquenots péquenot nom m p 1.80 1.82 0.83 0.81 +péquin péquin nom m s 0.00 0.20 0.00 0.14 +péquins péquin nom m p 0.00 0.20 0.00 0.07 +pur_sang pur_sang nom m 1.01 2.23 1.01 2.23 +pur pur adj m s 58.46 90.34 26.48 44.59 +pérît périr ver 11.20 10.34 0.00 0.07 sub:imp:3s; +pure pur adj f s 58.46 90.34 26.97 34.19 +pureau pureau nom m s 0.00 0.07 0.00 0.07 +purement purement adv 3.99 9.32 3.99 9.32 +péremptoire péremptoire adj s 0.00 5.07 0.00 3.85 +péremptoirement péremptoirement adv 0.00 0.61 0.00 0.61 +péremptoires péremptoire adj p 0.00 5.07 0.00 1.22 +pérenne pérenne adj s 0.00 0.14 0.00 0.07 +pérennes pérenne adj p 0.00 0.14 0.00 0.07 +pérennise pérenniser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +pérennité pérennité nom f s 0.00 0.74 0.00 0.74 +purent pouvoir ver_sup 5524.52 2659.80 0.24 6.89 ind:pas:3p; +pures pur adj f p 58.46 90.34 1.35 4.66 +pureté pureté nom f s 6.77 13.99 6.77 13.92 +puretés pureté nom f p 6.77 13.99 0.00 0.07 +purgatif purgatif adj m s 0.40 0.14 0.30 0.07 +purgation purgation nom f s 0.02 0.20 0.02 0.07 +purgations purgation nom f p 0.02 0.20 0.00 0.14 +purgative purgatif adj f s 0.40 0.14 0.10 0.07 +purgatoire purgatoire nom m s 1.92 2.84 1.92 2.77 +purgatoires purgatoire nom m p 1.92 2.84 0.00 0.07 +purge purger ver 5.46 3.24 1.30 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +purgea purger ver 5.46 3.24 0.02 0.07 ind:pas:3s; +purgeaient purger ver 5.46 3.24 0.01 0.14 ind:imp:3p; +purgeais purger ver 5.46 3.24 0.02 0.00 ind:imp:1s;ind:imp:2s; +purgeait purger ver 5.46 3.24 0.28 0.41 ind:imp:3s; +purgeant purger ver 5.46 3.24 0.03 0.07 par:pre; +purgent purger ver 5.46 3.24 0.15 0.14 ind:pre:3p; +purger purger ver 5.46 3.24 1.59 1.08 inf; +purgera purger ver 5.46 3.24 0.11 0.00 ind:fut:3s; +purgerai purger ver 5.46 3.24 0.05 0.00 ind:fut:1s; +purgerais purger ver 5.46 3.24 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +purgeras purger ver 5.46 3.24 0.07 0.00 ind:fut:2s; +purgerez purger ver 5.46 3.24 0.07 0.00 ind:fut:2p; +purgeriez purger ver 5.46 3.24 0.01 0.00 cnd:pre:2p; +purges purge nom f p 1.34 1.89 0.84 0.54 +purgez purger ver 5.46 3.24 0.23 0.00 imp:pre:2p;ind:pre:2p; +purgiez purger ver 5.46 3.24 0.02 0.00 ind:imp:2p; +purgé purger ver m s 5.46 3.24 0.93 0.81 par:pas; +purgée purger ver f s 5.46 3.24 0.21 0.00 par:pas; +purgées purger ver f p 5.46 3.24 0.01 0.07 par:pas; +purgés purger ver m p 5.46 3.24 0.23 0.14 par:pas; +péri périr ver m s 11.20 10.34 2.56 1.89 par:pas; +péricarde péricarde nom m s 0.33 0.00 0.33 0.00 +péricardique péricardique adj s 0.12 0.00 0.12 0.00 +péricardite péricardite nom f s 0.05 0.00 0.05 0.00 +péricarpe péricarpe nom m s 0.01 0.00 0.01 0.00 +périclita péricliter ver 0.10 1.01 0.00 0.07 ind:pas:3s; +périclitait péricliter ver 0.10 1.01 0.02 0.20 ind:imp:3s; +périclitant péricliter ver 0.10 1.01 0.00 0.07 par:pre; +périclitent péricliter ver 0.10 1.01 0.01 0.07 ind:pre:3p; +péricliter péricliter ver 0.10 1.01 0.03 0.27 inf; +périclitèrent péricliter ver 0.10 1.01 0.01 0.07 ind:pas:3p; +périclité péricliter ver m s 0.10 1.01 0.04 0.27 par:pas; +péridurale péridural nom f s 0.37 0.07 0.37 0.07 +périe périr ver f s 11.20 10.34 0.01 0.00 par:pas; +périf périf nom m s 0.14 0.27 0.14 0.27 +purifiaient purifier ver 7.92 4.86 0.00 0.14 ind:imp:3p; +purifiais purifier ver 7.92 4.86 0.10 0.00 ind:imp:2s; +purifiait purifier ver 7.92 4.86 0.14 0.20 ind:imp:3s; +purifiant purifier ver 7.92 4.86 0.20 0.27 par:pre; +purificateur purificateur adj m s 0.75 0.68 0.47 0.54 +purificateurs purificateur nom m p 0.22 0.07 0.07 0.00 +purification purification nom f s 1.31 1.08 1.31 0.95 +purifications purification nom f p 1.31 1.08 0.00 0.14 +purificatoire purificatoire adj m s 0.00 0.07 0.00 0.07 +purificatrice purificateur adj f s 0.75 0.68 0.02 0.07 +purificatrices purificateur adj f p 0.75 0.68 0.27 0.00 +purifie purifier ver 7.92 4.86 2.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +purifient purifier ver 7.92 4.86 0.30 0.07 ind:pre:3p; +purifier purifier ver 7.92 4.86 2.59 1.15 inf; +purifiera purifier ver 7.92 4.86 0.14 0.00 ind:fut:3s; +purifiez purifier ver 7.92 4.86 0.34 0.14 imp:pre:2p;ind:pre:2p; +purifions purifier ver 7.92 4.86 0.02 0.07 imp:pre:1p;ind:pre:1p; +purifiât purifier ver 7.92 4.86 0.00 0.07 sub:imp:3s; +purifié purifier ver m s 7.92 4.86 1.05 1.35 par:pas; +purifiée purifier ver f s 7.92 4.86 0.68 0.68 par:pas; +purifiées purifier ver f p 7.92 4.86 0.00 0.07 par:pas; +purifiés purifier ver m p 7.92 4.86 0.32 0.34 par:pas; +périgourdin périgourdin adj m s 0.02 0.27 0.00 0.07 +périgourdine périgourdin adj f s 0.02 0.27 0.01 0.20 +périgourdins périgourdin adj m p 0.02 0.27 0.01 0.00 +périgée périgée nom m s 0.02 0.07 0.02 0.07 +péril péril nom m s 7.76 13.78 6.32 10.00 +périlleuse périlleux adj f s 1.43 6.76 0.35 2.30 +périlleusement périlleusement adv 0.00 0.20 0.00 0.20 +périlleuses périlleux adj f p 1.43 6.76 0.21 0.88 +périlleux périlleux adj m 1.43 6.76 0.87 3.58 +périls péril nom m p 7.76 13.78 1.45 3.78 +périme périmer ver 1.68 0.54 0.02 0.00 ind:pre:3s; +périment périmer ver 1.68 0.54 0.01 0.00 ind:pre:3p; +périmer périmer ver 1.68 0.54 0.01 0.00 inf; +périmètre périmètre nom m s 6.81 2.84 6.71 2.64 +périmètres périmètre nom m p 6.81 2.84 0.10 0.20 +périmé périmer ver m s 1.68 0.54 0.69 0.27 par:pas; +périmée périmer ver f s 1.68 0.54 0.59 0.20 par:pas; +périmées périmé adj f p 0.79 2.36 0.09 0.47 +périmés périmer ver m p 1.68 0.54 0.28 0.00 par:pas; +purin purin nom m s 0.38 2.23 0.38 2.23 +périnée périnée nom m s 0.16 0.47 0.16 0.47 +période période nom f s 25.65 41.89 23.72 32.09 +périodes période nom f p 25.65 41.89 1.94 9.80 +périodicité périodicité nom f s 0.01 0.07 0.01 0.07 +périodique périodique adj s 0.23 1.89 0.15 1.28 +périodiquement périodiquement adv 0.17 3.18 0.17 3.18 +périodiques périodique adj p 0.23 1.89 0.09 0.61 +péripatéticiennes péripatéticienne nom f p 0.14 0.00 0.14 0.00 +périph périph nom m s 0.16 0.20 0.16 0.20 +périphrase périphrase nom f s 0.11 0.27 0.11 0.14 +périphrases périphrase nom f p 0.11 0.27 0.00 0.14 +périphérie périphérie nom f s 1.30 3.04 1.21 2.91 +périphéries périphérie nom f p 1.30 3.04 0.10 0.14 +périphérique périphérique nom m s 0.53 1.15 0.52 1.15 +périphériques périphérique adj p 0.50 1.55 0.19 0.95 +périple périple nom m s 1.14 2.64 0.98 2.09 +périples périple nom m p 1.14 2.64 0.15 0.54 +péripétie péripétie nom f s 0.85 6.69 0.59 1.35 +péripéties péripétie nom f p 0.85 6.69 0.26 5.34 +périr périr ver 11.20 10.34 3.83 4.93 inf; +périra périr ver 11.20 10.34 1.01 0.20 ind:fut:3s; +périrais périr ver 11.20 10.34 0.01 0.14 cnd:pre:1s; +périrait périr ver 11.20 10.34 0.31 0.14 cnd:pre:3s; +périras périr ver 11.20 10.34 0.06 0.00 ind:fut:2s; +périrent périr ver 11.20 10.34 0.49 0.61 ind:pas:3p; +périrez périr ver 11.20 10.34 0.06 0.07 ind:fut:2p; +péririez périr ver 11.20 10.34 0.01 0.00 cnd:pre:2p; +périrons périr ver 11.20 10.34 0.14 0.07 ind:fut:1p; +périront périr ver 11.20 10.34 0.75 0.20 ind:fut:3p; +péris périr ver m p 11.20 10.34 0.05 0.07 ind:pre:1s;ind:pre:2s;par:pas; +périscolaire périscolaire adj f s 0.01 0.00 0.01 0.00 +périscope périscope nom m s 1.28 0.88 1.24 0.68 +périscopes périscope nom m p 1.28 0.88 0.04 0.20 +périscopique périscopique adj f s 0.31 0.00 0.31 0.00 +périssable périssable adj s 0.38 1.82 0.12 1.35 +périssables périssable adj p 0.38 1.82 0.27 0.47 +périssaient périr ver 11.20 10.34 0.01 0.27 ind:imp:3p; +périssait périr ver 11.20 10.34 0.00 0.34 ind:imp:3s; +périssant périr ver 11.20 10.34 0.01 0.07 par:pre; +périsse périr ver 11.20 10.34 0.34 0.47 sub:pre:3s; +périssent périr ver 11.20 10.34 0.54 0.27 ind:pre:3p; +périssez périr ver 11.20 10.34 0.10 0.00 imp:pre:2p; +périssodactyle périssodactyle nom m s 0.14 0.00 0.14 0.00 +périssoire périssoire nom f s 0.00 0.20 0.00 0.14 +périssoires périssoire nom f p 0.00 0.20 0.00 0.07 +périssons périr ver 11.20 10.34 0.14 0.07 imp:pre:1p;ind:pre:1p; +péristaltique péristaltique adj f s 0.01 0.14 0.01 0.07 +péristaltiques péristaltique adj f p 0.01 0.14 0.00 0.07 +péristaltisme péristaltisme nom m s 0.01 0.00 0.01 0.00 +puriste puriste nom s 0.13 0.00 0.11 0.00 +puristes puriste nom p 0.13 0.00 0.02 0.00 +péristyle péristyle nom m s 0.00 1.49 0.00 1.49 +périt périr ver 11.20 10.34 0.76 0.47 ind:pre:3s;ind:pas:3s; +puritain puritain nom m s 0.53 0.81 0.28 0.07 +puritaine puritain adj f s 1.16 2.03 0.67 0.54 +puritaines puritain adj f p 1.16 2.03 0.20 0.20 +puritains puritain nom m p 0.53 0.81 0.20 0.61 +puritanisme puritanisme nom m s 0.05 1.22 0.05 1.22 +péritoine péritoine nom m s 0.13 0.14 0.13 0.14 +péritonite péritonite nom f s 0.32 0.47 0.32 0.47 +péritonéal péritonéal adj m s 0.32 0.07 0.18 0.00 +péritonéale péritonéal adj f s 0.32 0.07 0.14 0.07 +périurbaines périurbain adj f p 0.01 0.00 0.01 0.00 +pérodictique pérodictique nom m s 0.01 0.00 0.01 0.00 +péroniste péroniste adj m s 0.17 0.00 0.17 0.00 +péronnelle péronnelle nom f s 0.04 0.07 0.04 0.07 +péroné péroné nom m s 0.27 0.14 0.27 0.00 +péronés péroné nom m p 0.27 0.14 0.00 0.14 +pérorais pérorer ver 0.22 3.24 0.00 0.07 ind:imp:1s; +péroraison péroraison nom f s 0.00 1.08 0.00 0.95 +péroraisons péroraison nom f p 0.00 1.08 0.00 0.14 +pérorait pérorer ver 0.22 3.24 0.00 1.49 ind:imp:3s; +pérorant pérorer ver 0.22 3.24 0.00 0.54 par:pre; +pérore pérorer ver 0.22 3.24 0.15 0.61 ind:pre:1s;ind:pre:3s; +pérorer pérorer ver 0.22 3.24 0.07 0.47 inf; +péroreur péroreur nom m s 0.00 0.07 0.00 0.07 +pérorons pérorer ver 0.22 3.24 0.00 0.07 ind:pre:1p; +pérot pérot nom m s 0.11 0.00 0.11 0.00 +purotin purotin nom m s 0.00 0.41 0.00 0.14 +purotins purotin nom m p 0.00 0.41 0.00 0.27 +pérou pérou nom s 0.01 0.00 0.01 0.00 +purpura purpura nom m s 0.09 0.00 0.09 0.00 +purpurin purpurin adj m s 0.01 0.61 0.00 0.27 +purpurine purpurin adj f s 0.01 0.61 0.01 0.14 +purpurines purpurin adj f p 0.01 0.61 0.00 0.07 +purpurins purpurin adj m p 0.01 0.61 0.00 0.14 +purs pur adj m p 58.46 90.34 3.67 6.89 +purée purée nom f s 5.75 6.28 5.74 6.08 +purées purée nom f p 5.75 6.28 0.01 0.20 +pérégrinant pérégriner ver 0.00 0.47 0.00 0.07 par:pre; +pérégrination pérégrination nom f s 0.06 1.62 0.00 0.20 +pérégrinations pérégrination nom f p 0.06 1.62 0.06 1.42 +pérégrine pérégriner ver 0.00 0.47 0.00 0.14 ind:pre:3s; +pérégriner pérégriner ver 0.00 0.47 0.00 0.20 inf; +pérégrines pérégriner ver 0.00 0.47 0.00 0.07 ind:pre:2s; +purulence purulence nom f s 0.02 0.41 0.02 0.20 +purulences purulence nom f p 0.02 0.41 0.00 0.20 +purulent purulent adj m s 0.26 0.74 0.06 0.20 +purulente purulent adj f s 0.26 0.74 0.10 0.20 +purulentes purulent adj f p 0.26 0.74 0.04 0.34 +purulents purulent adj m p 0.26 0.74 0.06 0.00 +péréquation péréquation nom f s 0.00 0.20 0.00 0.14 +péréquations péréquation nom f p 0.00 0.20 0.00 0.07 +péruvien péruvien adj m s 1.52 0.68 1.15 0.34 +péruvienne péruvien adj f s 1.52 0.68 0.19 0.27 +péruviens péruvien adj m p 1.52 0.68 0.19 0.07 +pus pus adj m s 1.90 5.00 1.90 5.00 +pusillanime pusillanime adj s 0.05 0.95 0.03 0.81 +pusillanimes pusillanime adj p 0.05 0.95 0.02 0.14 +pusillanimité pusillanimité nom f s 0.00 0.34 0.00 0.34 +pusse pouvoir ver_sup 5524.52 2659.80 0.00 1.28 sub:imp:1s; +pussent pouvoir ver_sup 5524.52 2659.80 0.00 2.77 sub:imp:3p; +pusses pouvoir ver_sup 5524.52 2659.80 0.00 0.07 sub:imp:2s; +pussiez pouvoir ver_sup 5524.52 2659.80 0.00 0.07 sub:imp:2p; +pustule pustule nom f s 0.69 1.35 0.28 0.14 +pustules pustule nom f p 0.69 1.35 0.41 1.22 +pustuleuse pustuleux adj f s 0.02 0.61 0.00 0.27 +pustuleux pustuleux adj m p 0.02 0.61 0.02 0.34 +put pouvoir ver_sup 5524.52 2659.80 5.10 49.66 ind:pas:3s; +pétaient péter ver 31.66 16.28 0.03 0.81 ind:imp:3p; +putain putain nom f s 306.74 40.41 287.83 33.58 +pétainiste pétainiste adj m s 0.00 0.54 0.00 0.34 +pétainistes pétainiste adj f p 0.00 0.54 0.00 0.20 +putains putain nom f p 306.74 40.41 18.91 6.82 +pétais péter ver 31.66 16.28 0.13 0.07 ind:imp:1s;ind:imp:2s; +pétait péter ver 31.66 16.28 0.38 1.28 ind:imp:3s; +pétale pétale nom m s 3.47 8.24 1.17 1.42 +pétales pétale nom m p 3.47 8.24 2.31 6.82 +pétaloïdes pétaloïde adj m p 0.01 0.00 0.01 0.00 +putanat putanat nom m s 0.00 0.20 0.00 0.20 +pétanque pétanque nom f s 0.17 1.49 0.17 1.49 +pétant péter ver 31.66 16.28 0.25 0.34 par:pre; +pétante pétant adj f s 0.33 0.68 0.02 0.00 +pétantes pétant adj f p 0.33 0.68 0.13 0.41 +pétants pétant adj m p 0.33 0.68 0.00 0.07 +pétaradaient pétarader ver 0.10 1.55 0.00 0.07 ind:imp:3p; +pétaradait pétarader ver 0.10 1.55 0.01 0.20 ind:imp:3s; +pétaradant pétarader ver 0.10 1.55 0.01 0.34 par:pre; +pétaradante pétaradant adj f s 0.01 0.88 0.00 0.14 +pétaradantes pétaradant adj f p 0.01 0.88 0.00 0.20 +pétaradants pétaradant adj m p 0.01 0.88 0.00 0.20 +pétarade pétarade nom f s 0.30 2.36 0.16 1.55 +pétarader pétarader ver 0.10 1.55 0.04 0.47 inf; +pétarades pétarade nom f p 0.30 2.36 0.14 0.81 +pétaradé pétarader ver m s 0.10 1.55 0.00 0.07 par:pas; +pétard pétard nom m s 7.19 9.93 4.77 5.47 +pétarde pétarder ver 0.00 0.07 0.00 0.07 ind:pre:3s; +pétardier pétardier nom m s 0.00 0.47 0.00 0.34 +pétardière pétardier nom f s 0.00 0.47 0.00 0.14 +pétards pétard nom m p 7.19 9.93 2.42 4.46 +pétase pétase nom m s 0.00 0.14 0.00 0.14 +pétasse pétasse nom f s 8.03 0.95 6.91 0.61 +putasse putasser ver 0.17 0.34 0.17 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pétassent pétasser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +putasserie putasserie nom f s 0.34 0.41 0.10 0.41 +putasseries putasserie nom f p 0.34 0.41 0.23 0.00 +pétasses pétasse nom f p 8.03 0.95 1.12 0.34 +putasses putasser ver 0.17 0.34 0.01 0.07 ind:pre:2s; +putassier putassier adj m s 0.02 0.41 0.01 0.07 +putassiers putassier adj m p 0.02 0.41 0.00 0.14 +putassière putassier adj f s 0.02 0.41 0.01 0.14 +putassières putassier adj f p 0.02 0.41 0.00 0.07 +putatif putatif adj m s 0.00 0.74 0.00 0.47 +putatifs putatif adj m p 0.00 0.74 0.00 0.14 +putative putatif adj f s 0.00 0.74 0.00 0.14 +pétaudière pétaudière nom f s 0.01 0.07 0.01 0.07 +pute pute nom f s 105.25 20.27 87.91 13.65 +péter péter ver 31.66 16.28 11.08 5.34 inf; +pétera péter ver 31.66 16.28 0.34 0.14 ind:fut:3s; +péterai péter ver 31.66 16.28 0.05 0.00 ind:fut:1s; +péterais péter ver 31.66 16.28 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +péterait péter ver 31.66 16.28 0.10 0.07 cnd:pre:3s; +péteras péter ver 31.66 16.28 0.01 0.00 ind:fut:2s; +putes pute nom f p 105.25 20.27 17.34 6.62 +péteur péteur nom m s 0.11 0.07 0.11 0.07 +péteuse péteuse nom f s 0.06 0.54 0.06 0.54 +péteux péteux nom m 0.30 0.61 0.30 0.61 +pétez péter ver 31.66 16.28 0.21 0.00 imp:pre:2p;ind:pre:2p; +putier putier nom m s 0.00 0.14 0.00 0.14 +pétiez péter ver 31.66 16.28 0.02 0.00 ind:imp:2p; +pétilla pétiller ver 0.32 4.39 0.00 0.14 ind:pas:3s; +pétillaient pétiller ver 0.32 4.39 0.00 0.54 ind:imp:3p; +pétillait pétiller ver 0.32 4.39 0.00 0.95 ind:imp:3s; +pétillant pétillant adj m s 1.27 3.24 0.55 1.55 +pétillante pétillant adj f s 1.27 3.24 0.44 0.81 +pétillantes pétillant adj f p 1.27 3.24 0.15 0.27 +pétillants pétillant adj m p 1.27 3.24 0.14 0.61 +pétille pétiller ver 0.32 4.39 0.21 1.01 ind:pre:1s;ind:pre:3s; +pétillement pétillement nom m s 0.01 1.15 0.01 1.01 +pétillements pétillement nom m p 0.01 1.15 0.00 0.14 +pétillent pétiller ver 0.32 4.39 0.03 0.47 ind:pre:3p; +pétiller pétiller ver 0.32 4.39 0.05 0.54 inf; +pétilles pétiller ver 0.32 4.39 0.01 0.00 ind:pre:2s; +pétillèrent pétiller ver 0.32 4.39 0.00 0.07 ind:pas:3p; +pétillé pétiller ver m s 0.32 4.39 0.00 0.07 par:pas; +pétiole pétiole nom m s 0.00 0.07 0.00 0.07 +pétition pétition nom f s 3.54 1.76 3.00 0.95 +pétitionnaires pétitionnaire nom p 0.01 0.07 0.01 0.07 +pétitionnent pétitionner ver 0.01 0.07 0.00 0.07 ind:pre:3p; +pétitionner pétitionner ver 0.01 0.07 0.01 0.00 inf; +pétitions pétition nom f p 3.54 1.76 0.55 0.81 +pétochais pétocher ver 0.01 0.07 0.00 0.07 ind:imp:1s; +pétochait pétocher ver 0.01 0.07 0.01 0.00 ind:imp:3s; +pétochard pétochard adj m s 0.02 0.14 0.02 0.14 +pétoche pétoche nom f s 0.52 2.77 0.50 2.57 +pétoches pétoche nom f p 0.52 2.77 0.02 0.20 +pétoire pétoire nom f s 0.42 1.62 0.41 1.08 +pétoires pétoire nom f p 0.42 1.62 0.01 0.54 +putois putois nom m 1.06 1.28 1.06 1.28 +pétomane pétomane nom s 0.05 0.47 0.03 0.34 +pétomanes pétomane nom p 0.05 0.47 0.03 0.14 +pétoncle pétoncle nom m s 0.08 0.00 0.05 0.00 +pétoncles pétoncle nom m p 0.08 0.00 0.03 0.00 +pétons péter ver 31.66 16.28 0.01 0.00 imp:pre:1p; +pétouille pétouiller ver 0.00 0.07 0.00 0.07 ind:pre:3s; +pétoulet pétoulet nom m s 0.00 0.41 0.00 0.41 +pétrarquistes pétrarquiste nom p 0.00 0.07 0.00 0.07 +pétrel pétrel nom m s 0.02 0.07 0.02 0.07 +putrescence putrescence nom f s 0.01 0.14 0.01 0.07 +putrescences putrescence nom f p 0.01 0.14 0.00 0.07 +putrescent putrescent adj m s 0.20 0.07 0.20 0.00 +putrescents putrescent adj m p 0.20 0.07 0.00 0.07 +putrescible putrescible adj f s 0.00 0.20 0.00 0.20 +putrescine putrescine nom f s 0.01 0.00 0.01 0.00 +pétreux pétreux adj m 0.01 0.00 0.01 0.00 +pétri pétrir ver m s 1.48 11.01 0.42 1.76 par:pas; +putride putride adj s 1.04 0.95 0.74 0.54 +putrides putride adj p 1.04 0.95 0.30 0.41 +pétrie pétrir ver f s 1.48 11.01 0.17 1.15 par:pas; +pétries pétrir ver f p 1.48 11.01 0.01 0.34 par:pas; +pétrifia pétrifier ver 2.17 8.38 0.01 0.14 ind:pas:3s; +pétrifiaient pétrifier ver 2.17 8.38 0.00 0.14 ind:imp:3p; +pétrifiais pétrifier ver 2.17 8.38 0.00 0.07 ind:imp:1s; +pétrifiait pétrifier ver 2.17 8.38 0.10 0.74 ind:imp:3s; +pétrifiant pétrifier ver 2.17 8.38 0.00 0.14 par:pre; +pétrifiante pétrifiant adj f s 0.00 0.27 0.00 0.20 +pétrifiantes pétrifiant adj f p 0.00 0.27 0.00 0.07 +pétrification pétrification nom f s 0.01 0.27 0.01 0.27 +pétrifie pétrifier ver 2.17 8.38 0.11 0.27 ind:pre:3s; +pétrifient pétrifier ver 2.17 8.38 0.01 0.07 ind:pre:3p; +pétrifier pétrifier ver 2.17 8.38 0.04 0.54 inf; +pétrifieront pétrifier ver 2.17 8.38 0.00 0.07 ind:fut:3p; +pétrifiez pétrifier ver 2.17 8.38 0.00 0.07 ind:pre:2p; +pétrifiât pétrifier ver 2.17 8.38 0.00 0.07 sub:imp:3s; +pétrifièrent pétrifier ver 2.17 8.38 0.00 0.07 ind:pas:3p; +pétrifié pétrifier ver m s 2.17 8.38 1.14 2.57 par:pas; +pétrifiée pétrifier ver f s 2.17 8.38 0.56 1.82 par:pas; +pétrifiées pétrifier ver f p 2.17 8.38 0.15 0.20 par:pas; +pétrifiés pétrifier ver m p 2.17 8.38 0.07 1.42 par:pas; +pétrin pétrin nom m s 10.89 3.31 10.82 3.18 +pétrins pétrin nom m p 10.89 3.31 0.07 0.14 +pétrir pétrir ver 1.48 11.01 0.68 3.31 inf; +pétrirai pétrir ver 1.48 11.01 0.00 0.07 ind:fut:1s; +pétrirent pétrir ver 1.48 11.01 0.00 0.07 ind:pas:3p; +pétris pétri adj m p 0.27 0.34 0.14 0.14 +pétrissage pétrissage nom m s 0.00 0.14 0.00 0.14 +pétrissaient pétrir ver 1.48 11.01 0.00 0.34 ind:imp:3p; +pétrissait pétrir ver 1.48 11.01 0.10 1.42 ind:imp:3s; +pétrissant pétrir ver 1.48 11.01 0.00 0.68 par:pre; +pétrisse pétrir ver 1.48 11.01 0.00 0.14 sub:pre:3s; +pétrissent pétrir ver 1.48 11.01 0.01 0.07 ind:pre:3p; +pétrisseur pétrisseur nom m s 0.00 0.07 0.00 0.07 +pétrissez pétrir ver 1.48 11.01 0.00 0.07 ind:pre:2p; +pétrit pétrir ver 1.48 11.01 0.03 1.15 ind:pre:3s;ind:pas:3s; +pétrochimie pétrochimie nom f s 0.00 0.14 0.00 0.14 +pétrochimique pétrochimique adj s 0.04 0.00 0.04 0.00 +pétrodollars pétrodollar nom m p 0.30 0.00 0.30 0.00 +pétrole pétrole nom m s 13.84 15.41 13.71 14.73 +pétroles pétrole nom m p 13.84 15.41 0.13 0.68 +pétrolette pétrolette nom f s 0.02 0.20 0.02 0.20 +pétroleuse pétroleur nom f s 0.03 0.20 0.03 0.14 +pétroleuses pétroleuse nom f p 0.01 0.00 0.01 0.00 +pétrolier pétrolier adj m s 1.75 1.22 0.38 0.27 +pétroliers pétrolier nom m p 0.73 2.23 0.36 0.61 +pétrolifère pétrolifère adj s 0.11 0.27 0.04 0.14 +pétrolifères pétrolifère adj p 0.11 0.27 0.06 0.14 +pétrolière pétrolier adj f s 1.75 1.22 0.79 0.14 +pétrolières pétrolier adj f p 1.75 1.22 0.37 0.61 +pétrousquin pétrousquin nom m s 0.00 0.14 0.00 0.14 +pétrée pétré adj f s 0.00 0.07 0.00 0.07 +putréfaction putréfaction nom f s 0.49 1.15 0.49 1.15 +putréfiaient putréfier ver 0.32 0.68 0.00 0.07 ind:imp:3p; +putréfiait putréfier ver 0.32 0.68 0.00 0.14 ind:imp:3s; +putréfiant putréfier ver 0.32 0.68 0.00 0.07 par:pre; +putréfient putréfier ver 0.32 0.68 0.00 0.07 ind:pre:3p; +putréfier putréfier ver 0.32 0.68 0.02 0.07 inf; +putréfié putréfier ver m s 0.32 0.68 0.09 0.00 par:pas; +putréfiée putréfier ver f s 0.32 0.68 0.17 0.07 par:pas; +putréfiées putréfier ver f p 0.32 0.68 0.01 0.14 par:pas; +putréfiés putréfier ver m p 0.32 0.68 0.02 0.07 par:pas; +pétrus pétrus nom m 0.03 0.34 0.03 0.34 +putsch putsch nom m s 1.46 1.55 1.46 1.55 +putschiste putschiste adj f s 0.27 0.00 0.27 0.00 +putt putt nom m s 0.21 0.00 0.21 0.00 +putter putter ver 0.35 0.00 0.35 0.00 inf; +putti putto nom m p 0.02 0.00 0.02 0.00 +putting putting nom m s 0.17 0.00 0.17 0.00 +pété péter ver m s 31.66 16.28 8.47 1.01 par:pas; +pétéchiale pétéchial adj f s 0.10 0.00 0.10 0.00 +pétéchie pétéchie nom f s 0.22 0.00 0.04 0.00 +pétéchies pétéchie nom f p 0.22 0.00 0.17 0.00 +pétée péter ver f s 31.66 16.28 0.57 0.14 par:pas; +pétées pété adj f p 1.66 0.81 0.11 0.20 +pétulance pétulance nom f s 0.02 0.34 0.02 0.34 +pétulant pétulant adj m s 0.05 0.54 0.01 0.20 +pétulante pétulant adj f s 0.05 0.54 0.03 0.07 +pétulantes pétulant adj f p 0.05 0.54 0.00 0.07 +pétulants pétulant adj m p 0.05 0.54 0.01 0.20 +pétunant pétuner ver 0.01 0.20 0.00 0.07 par:pre; +pétuner pétuner ver 0.01 0.20 0.00 0.07 inf; +pétunez pétuner ver 0.01 0.20 0.01 0.00 ind:pre:2p; +pétunia pétunia nom m s 0.63 1.01 0.50 0.07 +pétunias pétunia nom m p 0.63 1.01 0.13 0.95 +pétuné pétuner ver m s 0.01 0.20 0.00 0.07 par:pas; +pétés péter ver m p 31.66 16.28 0.17 0.34 par:pas; +puéricultrice puériculteur nom f s 0.03 0.20 0.03 0.07 +puéricultrices puériculteur nom f p 0.03 0.20 0.00 0.14 +puériculture puériculture nom f s 0.01 0.47 0.01 0.47 +puéril puéril adj m s 3.73 9.59 2.08 3.18 +puérile puéril adj f s 3.73 9.59 1.01 3.92 +puérilement puérilement adv 0.01 0.20 0.01 0.20 +puériles puéril adj f p 3.73 9.59 0.22 1.28 +puérilité puérilité nom f s 0.47 1.28 0.32 1.08 +puérilités puérilité nom f p 0.47 1.28 0.15 0.20 +puérils puéril adj m p 3.73 9.59 0.43 1.22 +puy puy nom m s 0.00 0.14 0.00 0.14 +puzzle puzzle nom m s 4.81 11.82 4.38 7.77 +puzzles puzzle nom m p 4.81 11.82 0.43 4.05 +pygmée pygmée nom s 0.58 0.47 0.28 0.00 +pygmées pygmée nom p 0.58 0.47 0.30 0.47 +pyjama pyjama nom m s 8.11 17.57 7.10 15.07 +pyjamas pyjama nom m p 8.11 17.57 1.01 2.50 +pylône pylône nom m s 0.36 1.96 0.31 0.88 +pylônes pylône nom m p 0.36 1.96 0.05 1.08 +pylore pylore nom m s 0.02 0.07 0.02 0.07 +pylorique pylorique adj s 0.03 0.00 0.03 0.00 +pyogène pyogène adj m s 0.01 0.00 0.01 0.00 +pyralène pyralène nom m s 0.01 0.00 0.01 0.00 +pyrame pyrame nom m s 0.01 0.14 0.01 0.14 +pyramidal pyramidal adj m s 0.36 1.15 0.26 0.34 +pyramidale pyramidal adj f s 0.36 1.15 0.07 0.47 +pyramidalement pyramidalement adv 0.00 0.07 0.00 0.07 +pyramidales pyramidal adj f p 0.36 1.15 0.02 0.20 +pyramidaux pyramidal adj m p 0.36 1.15 0.01 0.14 +pyramide pyramide nom f s 7.02 10.14 5.25 4.80 +pyramides pyramide nom f p 7.02 10.14 1.77 5.34 +pyramidé pyramidé adj m s 0.00 0.07 0.00 0.07 +pyrex pyrex nom m 0.01 0.07 0.01 0.07 +pyrexie pyrexie nom f s 0.01 0.00 0.01 0.00 +pyridoxine pyridoxine nom f s 0.01 0.00 0.01 0.00 +pyrite pyrite nom f s 0.06 0.00 0.04 0.00 +pyrites pyrite nom f p 0.06 0.00 0.02 0.00 +pyroclastique pyroclastique adj s 0.03 0.00 0.02 0.00 +pyroclastiques pyroclastique adj p 0.03 0.00 0.01 0.00 +pyrogravées pyrograver ver f p 0.00 0.07 0.00 0.07 par:pas; +pyrogène pyrogène adj s 0.00 0.14 0.00 0.14 +pyrolyse pyrolyse nom f s 0.01 0.00 0.01 0.00 +pyromane pyromane nom s 1.69 0.88 1.29 0.74 +pyromanes pyromane nom p 1.69 0.88 0.40 0.14 +pyromanie pyromanie nom f s 0.03 0.07 0.03 0.07 +pyromètre pyromètre nom m s 0.00 0.27 0.00 0.27 +pyrosphère pyrosphère nom f s 0.00 0.07 0.00 0.07 +pyrotechnicien pyrotechnicien nom s 0.02 0.00 0.02 0.00 +pyrotechnie pyrotechnie nom f s 0.15 0.41 0.15 0.41 +pyrotechnique pyrotechnique adj s 0.06 0.41 0.06 0.41 +pyroxène pyroxène nom m s 0.01 0.00 0.01 0.00 +pyrrhique pyrrhique nom f s 0.14 0.07 0.14 0.07 +pyrrhonien pyrrhonien nom m s 0.00 0.14 0.00 0.14 +pyrrhonisme pyrrhonisme nom m s 0.00 0.14 0.00 0.14 +pyrèthre pyrèthre nom m s 0.00 0.07 0.00 0.07 +pyrénéen pyrénéen adj m s 0.00 0.07 0.00 0.07 +pyrénéenne pyrénéenne adj f s 0.00 0.07 0.00 0.07 +pyréthrine pyréthrine nom f s 0.03 0.00 0.03 0.00 +pythagoricien pythagoricien adj m s 0.00 0.07 0.00 0.07 +pythagoriques pythagorique adj m p 0.01 0.00 0.01 0.00 +pythie pythie nom f s 0.02 0.54 0.02 0.47 +pythies pythie nom f p 0.02 0.54 0.00 0.07 +python python nom m s 2.33 0.54 2.21 0.47 +pythonisse pythonisse nom f s 0.00 0.20 0.00 0.20 +pythons python nom m p 2.33 0.54 0.12 0.07 +pyxides pyxide nom f p 0.00 0.07 0.00 0.07 +q q nom m 3.49 0.61 3.49 0.61 +qu_en_dira_t_on qu_en_dira_t_on nom m 0.10 0.41 0.10 0.41 +qu qu con 22.07 1.55 22.07 1.55 +quadra quadra nom s 0.05 0.00 0.03 0.00 +quadragénaire quadragénaire nom s 0.40 1.01 0.19 0.74 +quadragénaires quadragénaire nom p 0.40 1.01 0.21 0.27 +quadrangle quadrangle nom m s 0.03 0.00 0.03 0.00 +quadrangulaire quadrangulaire adj f s 0.02 0.41 0.02 0.34 +quadrangulaires quadrangulaire adj m p 0.02 0.41 0.00 0.07 +quadrant quadrant nom m s 0.73 0.00 0.64 0.00 +quadrants quadrant nom m p 0.73 0.00 0.09 0.00 +quadras quadra nom p 0.05 0.00 0.02 0.00 +quadratique quadratique adj s 0.01 0.00 0.01 0.00 +quadrature quadrature nom f s 0.11 1.15 0.11 1.15 +quadri quadri nom f s 0.02 0.07 0.02 0.07 +quadriceps quadriceps nom m 0.11 0.07 0.11 0.07 +quadrichromie quadrichromie nom f s 0.00 0.47 0.00 0.34 +quadrichromies quadrichromie nom f p 0.00 0.47 0.00 0.14 +quadridimensionnel quadridimensionnel adj m s 0.01 0.00 0.01 0.00 +quadriennal quadriennal adj m s 0.09 0.00 0.09 0.00 +quadrige quadrige nom m s 0.01 0.07 0.01 0.07 +quadrilatère quadrilatère nom m s 0.16 1.76 0.16 1.62 +quadrilatères quadrilatère nom m p 0.16 1.76 0.00 0.14 +quadrillage quadrillage nom m s 0.51 1.01 0.49 0.88 +quadrillages quadrillage nom m p 0.51 1.01 0.01 0.14 +quadrillaient quadriller ver 1.32 3.85 0.00 0.07 ind:imp:3p; +quadrillais quadriller ver 1.32 3.85 0.01 0.00 ind:imp:1s; +quadrillait quadriller ver 1.32 3.85 0.00 0.07 ind:imp:3s; +quadrille quadrille nom s 0.23 0.88 0.20 0.88 +quadrillent quadriller ver 1.32 3.85 0.19 0.00 ind:pre:3p; +quadriller quadriller ver 1.32 3.85 0.38 0.20 inf; +quadrillerez quadriller ver 1.32 3.85 0.01 0.00 ind:fut:2p; +quadrilles quadrille nom p 0.23 0.88 0.03 0.00 +quadrillez quadriller ver 1.32 3.85 0.19 0.00 imp:pre:2p;ind:pre:2p; +quadrillion quadrillion nom m s 0.04 0.00 0.04 0.00 +quadrillons quadriller ver 1.32 3.85 0.02 0.00 imp:pre:1p;ind:pre:1p; +quadrillé quadriller ver m s 1.32 3.85 0.19 2.03 par:pas; +quadrillée quadriller ver f s 1.32 3.85 0.28 0.74 par:pas; +quadrillées quadriller ver f p 1.32 3.85 0.01 0.34 par:pas; +quadrillés quadriller ver m p 1.32 3.85 0.00 0.34 par:pas; +quadrilobé quadrilobé adj m s 0.00 0.07 0.00 0.07 +quadrimestre quadrimestre nom m s 0.01 0.00 0.01 0.00 +quadrimoteur quadrimoteur adj m s 0.02 0.00 0.02 0.00 +quadripartite quadripartite adj s 0.02 0.07 0.02 0.00 +quadripartites quadripartite adj p 0.02 0.07 0.00 0.07 +quadriphonie quadriphonie nom f s 0.02 0.14 0.02 0.14 +quadriphonique quadriphonique adj s 0.11 0.00 0.11 0.00 +quadriplégique quadriplégique adj s 0.03 0.00 0.03 0.00 +quadriréacteur quadriréacteur nom m s 0.00 0.07 0.00 0.07 +quadrivium quadrivium nom m s 0.00 0.07 0.00 0.07 +quadrumane quadrumane nom m s 0.00 0.07 0.00 0.07 +quadrupla quadrupler ver 0.21 0.68 0.00 0.07 ind:pas:3s; +quadruplait quadrupler ver 0.21 0.68 0.00 0.14 ind:imp:3s; +quadruple quadruple adj 0.42 0.54 0.42 0.54 +quadrupler quadrupler ver 0.21 0.68 0.07 0.14 inf; +quadruples quadruple nom m p 0.19 0.47 0.01 0.27 +quadruplé quadrupler ver m s 0.21 0.68 0.06 0.14 par:pas; +quadruplées quadruplée nom f p 0.00 0.07 0.00 0.07 +quadruplés quadruplé nom m p 0.06 0.00 0.06 0.00 +quadrupède quadrupède nom m s 0.36 1.01 0.34 0.81 +quadrupèdes quadrupède nom m p 0.36 1.01 0.01 0.20 +quai quai nom m s 14.01 73.99 10.37 55.14 +quais quai nom m p 14.01 73.99 3.64 18.85 +quaker quaker nom m s 0.67 0.74 0.49 0.47 +quakeresse quakeresse nom f s 0.02 0.14 0.02 0.14 +quakers quaker nom m p 0.67 0.74 0.19 0.27 +qualifia qualifier ver 6.18 11.62 0.04 0.41 ind:pas:3s; +qualifiable qualifiable adj m s 0.00 0.07 0.00 0.07 +qualifiaient qualifier ver 6.18 11.62 0.00 0.27 ind:imp:3p; +qualifiais qualifier ver 6.18 11.62 0.00 0.14 ind:imp:1s; +qualifiait qualifier ver 6.18 11.62 0.06 0.88 ind:imp:3s; +qualifiant qualifier ver 6.18 11.62 0.03 0.34 par:pre; +qualifiassent qualifier ver 6.18 11.62 0.00 0.07 sub:imp:3p; +qualificatif qualificatif nom m s 0.11 0.74 0.05 0.34 +qualificatifs qualificatif nom m p 0.11 0.74 0.05 0.41 +qualification qualification nom f s 2.45 0.81 0.68 0.68 +qualifications qualification nom f p 2.45 0.81 1.78 0.14 +qualifie qualifier ver 6.18 11.62 0.63 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +qualifient qualifier ver 6.18 11.62 0.38 0.14 ind:pre:3p; +qualifier qualifier ver 6.18 11.62 0.96 3.04 inf; +qualifiera qualifier ver 6.18 11.62 0.01 0.20 ind:fut:3s; +qualifierai qualifier ver 6.18 11.62 0.16 0.07 ind:fut:1s; +qualifierais qualifier ver 6.18 11.62 0.26 0.20 cnd:pre:1s;cnd:pre:2s; +qualifierait qualifier ver 6.18 11.62 0.03 0.00 cnd:pre:3s; +qualifieriez qualifier ver 6.18 11.62 0.07 0.00 cnd:pre:2p; +qualifiez qualifier ver 6.18 11.62 0.06 0.07 ind:pre:2p; +qualifiât qualifier ver 6.18 11.62 0.00 0.07 sub:imp:3s; +qualifié qualifié adj m s 4.62 3.78 2.25 1.76 +qualifiée qualifié adj f s 4.62 3.78 1.13 0.68 +qualifiées qualifier ver f p 6.18 11.62 0.10 0.27 par:pas; +qualifiés qualifié adj m p 4.62 3.78 1.18 1.28 +qualitatif qualitatif adj m s 0.03 0.14 0.01 0.00 +qualitatifs qualitatif adj m p 0.03 0.14 0.00 0.07 +qualitative qualitatif adj f s 0.03 0.14 0.02 0.07 +qualité qualité nom f s 29.13 59.12 20.84 42.70 +qualités qualité nom f p 29.13 59.12 8.28 16.42 +quand quand con 1827.92 1480.07 1827.92 1480.07 +quant_à_moi quant_à_moi nom m 0.00 0.14 0.00 0.14 +quant_à_soi quant_à_soi nom m 0.00 1.22 0.00 1.22 +quant quant nom_sup f s 7.94 32.30 7.94 32.30 +quanta quantum nom m p 0.48 0.20 0.04 0.14 +quantifiable quantifiable adj s 0.15 0.00 0.15 0.00 +quantifier quantifier ver 0.23 0.07 0.20 0.07 inf; +quantifiée quantifier ver f s 0.23 0.07 0.03 0.00 par:pas; +quantique quantique adj s 1.36 0.07 1.16 0.07 +quantiques quantique adj p 1.36 0.07 0.20 0.00 +quantitatif quantitatif adj m s 0.05 0.14 0.03 0.00 +quantitative quantitatif adj f s 0.05 0.14 0.01 0.07 +quantitativement quantitativement adv 0.10 0.00 0.10 0.00 +quantitatives quantitatif adj f p 0.05 0.14 0.01 0.07 +quantième quantième nom m s 0.02 0.07 0.02 0.00 +quantièmes quantième nom m p 0.02 0.07 0.00 0.07 +quantité quantité nom f s 10.30 18.99 8.67 15.27 +quantités quantité nom f p 10.30 18.99 1.63 3.72 +quanto quanto adv 0.01 0.07 0.01 0.07 +quantum quantum nom m s 0.48 0.20 0.45 0.07 +quarantaine quarantaine nom f s 7.57 10.14 7.56 10.07 +quarantaines quarantaine nom f p 7.57 10.14 0.01 0.07 +quarante_cinq quarante_cinq adj_num 1.16 8.85 1.16 8.85 +quarante_cinquième quarante_cinquième adj 0.10 0.07 0.10 0.07 +quarante_deux quarante_deux adj_num 0.29 2.09 0.29 2.09 +quarante_deuxième quarante_deuxième adj 0.03 0.07 0.03 0.07 +quarante_huit quarante_huit adj_num 1.11 6.76 1.11 6.76 +quarante_huitard quarante_huitard nom m p 0.00 0.07 0.00 0.07 +quarante_huitième quarante_huitième adj 0.02 0.07 0.02 0.07 +quarante_neuf quarante_neuf adj_num 0.28 0.47 0.28 0.47 +quarante_quatre quarante_quatre adj_num 0.10 0.88 0.10 0.88 +quarante_sept quarante_sept adj_num 0.40 0.74 0.40 0.74 +quarante_septième quarante_septième adj 0.03 0.20 0.03 0.20 +quarante_six quarante_six adj_num 0.23 0.47 0.23 0.47 +quarante_trois quarante_trois adj_num 0.68 1.28 0.68 1.28 +quarante_troisième quarante_troisième adj 0.00 0.07 0.00 0.07 +quarante quarante adj_num 8.16 43.78 8.16 43.78 +quarantenaire quarantenaire adj m s 0.05 0.07 0.01 0.07 +quarantenaires quarantenaire adj p 0.05 0.07 0.04 0.00 +quarantième quarantième adj 0.03 0.27 0.03 0.27 +quarantièmes quarantième nom p 0.04 0.14 0.01 0.07 +quark quark nom m s 0.22 0.14 0.13 0.07 +quarks quark nom m p 0.22 0.14 0.09 0.07 +quarre quarre nom f s 0.04 0.00 0.04 0.00 +quarrez quarrer ver 0.00 0.07 0.00 0.07 imp:pre:2p; +quart_monde quart_monde nom m s 0.02 0.00 0.02 0.00 +quart quart nom m s 23.02 77.30 20.58 57.36 +quartaut quartaut nom m s 0.00 0.20 0.00 0.20 +quarte quarte nom f s 0.04 0.14 0.04 0.14 +quartenier quartenier nom m s 0.00 0.07 0.00 0.07 +quarter quarter ver 0.44 0.00 0.44 0.00 inf;; +quarteron quarteron nom m s 0.03 0.81 0.01 0.61 +quarteronnes quarteron nom f p 0.03 0.81 0.00 0.07 +quarterons quarteron nom m p 0.03 0.81 0.02 0.14 +quartet quartet nom m s 0.20 0.00 0.20 0.00 +quartette quartette nom m s 0.00 0.14 0.00 0.07 +quartettes quartette nom m p 0.00 0.14 0.00 0.07 +quartidi quartidi nom m s 0.00 0.07 0.00 0.07 +quartier_maître quartier_maître nom m s 0.84 0.27 0.83 0.27 +quartier quartier nom m s 65.70 112.16 55.23 89.86 +quartier_maître quartier_maître nom m p 0.84 0.27 0.01 0.00 +quartiers quartier nom m p 65.70 112.16 10.48 22.30 +quarto quarto adv 0.02 0.14 0.02 0.14 +quarts quart nom m p 23.02 77.30 2.43 19.93 +quarté quarté nom m s 0.01 0.07 0.01 0.07 +quartz quartz nom m 0.45 1.69 0.45 1.69 +quasar quasar nom m s 0.09 0.00 0.09 0.00 +quasi_agonie quasi_agonie nom f s 0.00 0.07 0.00 0.07 +quasi_blasphème quasi_blasphème nom m s 0.00 0.07 0.00 0.07 +quasi_bonheur quasi_bonheur nom m s 0.00 0.07 0.00 0.07 +quasi_certitude quasi_certitude nom f s 0.04 0.41 0.04 0.41 +quasi_chômage quasi_chômage nom m s 0.02 0.00 0.02 0.00 +quasi_débutant quasi_débutant adv 0.01 0.00 0.01 0.00 +quasi_décapitation quasi_décapitation nom f s 0.01 0.00 0.01 0.00 +quasi_désertification quasi_désertification nom f s 0.00 0.07 0.00 0.07 +quasi_facétieux quasi_facétieux adj m 0.01 0.00 0.01 0.00 +quasi_fiancé quasi_fiancé nom f s 0.00 0.07 0.00 0.07 +quasi_futuriste quasi_futuriste adj m p 0.01 0.00 0.01 0.00 +quasi_génocide quasi_génocide nom m s 0.01 0.00 0.01 0.00 +quasi_hérétique quasi_hérétique nom s 0.00 0.07 0.00 0.07 +quasi_ignare quasi_ignare nom s 0.00 0.07 0.00 0.07 +quasi_impossibilité quasi_impossibilité nom f s 0.00 0.14 0.00 0.14 +quasi_impunité quasi_impunité nom f s 0.00 0.07 0.00 0.07 +quasi_inconnu quasi_inconnu adv 0.02 0.07 0.02 0.07 +quasi_indifférence quasi_indifférence nom f s 0.00 0.07 0.00 0.07 +quasi_infirme quasi_infirme nom s 0.00 0.07 0.00 0.07 +quasi_instantanée quasi_instantanée adv 0.02 0.00 0.02 0.00 +quasi_jungienne quasi_jungienne nom f s 0.01 0.00 0.01 0.00 +quasi_mariage quasi_mariage nom m s 0.00 0.07 0.00 0.07 +quasi_maximum quasi_maximum adv 0.01 0.00 0.01 0.00 +quasi_mendiant quasi_mendiant nom m s 0.14 0.00 0.14 0.00 +quasi_miracle quasi_miracle nom m s 0.00 0.07 0.00 0.07 +quasi_monopole quasi_monopole nom m s 0.10 0.00 0.10 0.00 +quasi_morceau quasi_morceau nom m s 0.00 0.07 0.00 0.07 +quasi_noyade quasi_noyade nom f s 0.01 0.00 0.01 0.00 +quasi_nudité quasi_nudité nom f s 0.00 0.14 0.00 0.14 +quasi_permanence quasi_permanence nom f s 0.00 0.07 0.00 0.07 +quasi_protection quasi_protection nom f s 0.00 0.07 0.00 0.07 +quasi_religieux quasi_religieux adj m s 0.01 0.07 0.01 0.07 +quasi_respect quasi_respect nom m s 0.00 0.07 0.00 0.07 +quasi_totalité quasi_totalité nom f s 0.16 0.88 0.16 0.88 +quasi_émeute quasi_émeute nom f s 0.02 0.00 0.02 0.00 +quasi_unanime quasi_unanime adj s 0.00 0.14 0.00 0.14 +quasi_unanimité quasi_unanimité nom f s 0.00 0.07 0.00 0.07 +quasi_équitable quasi_équitable adj m s 0.01 0.00 0.01 0.00 +quasi_veuvage quasi_veuvage nom m s 0.00 0.07 0.00 0.07 +quasi_ville quasi_ville nom f s 0.00 0.07 0.00 0.07 +quasi_voisines quasi_voisines adv 0.00 0.07 0.00 0.07 +quasi quasi adv_sup 2.69 17.36 2.69 17.36 +quasiment quasiment adv 7.66 6.62 7.66 6.62 +quasimodo quasimodo nom f s 0.04 0.07 0.04 0.00 +quasimodos quasimodo nom f p 0.04 0.07 0.00 0.07 +quat_zarts quat_zarts nom m p 0.00 0.07 0.00 0.07 +quater quater adv 0.01 0.00 0.01 0.00 +quaternaire quaternaire nom m s 0.27 0.14 0.27 0.14 +quatorze quatorze adj_num 6.70 22.09 6.70 22.09 +quatorzième quatorzième nom s 0.07 0.54 0.07 0.54 +quatrain quatrain nom m s 0.23 0.68 0.22 0.14 +quatrains quatrain nom m p 0.23 0.68 0.01 0.54 +quatre_feuilles quatre_feuilles nom m 0.01 0.07 0.01 0.07 +quatre_heures quatre_heures nom m 0.04 0.41 0.04 0.41 +quatre_mâts quatre_mâts nom m 0.27 0.14 0.27 0.14 +quatre_quarts quatre_quarts nom m 0.26 0.14 0.26 0.14 +quatre_saisons quatre_saisons nom f 0.47 1.15 0.47 1.15 +quatre_vingt_cinq quatre_vingt_cinq adj_num 0.07 0.88 0.07 0.88 +quatre_vingt_deux quatre_vingt_deux adj_num 0.00 0.27 0.00 0.27 +quatre_vingt_dix_huit quatre_vingt_dix_huit adj_num 0.02 0.34 0.02 0.34 +quatre_vingt_dix_neuf quatre_vingt_dix_neuf adj_num 0.21 0.47 0.21 0.47 +quatre_vingt_dix_sept quatre_vingt_dix_sept adj_num 0.00 0.27 0.00 0.27 +quatre_vingt_dix quatre_vingt_dix nom m 0.33 0.61 0.33 0.61 +quatre_vingt_dixième quatre_vingt_dixième adj 0.01 0.14 0.01 0.14 +quatre_vingt_douze quatre_vingt_douze adj_num 0.11 0.54 0.11 0.54 +quatre_vingt_douzième quatre_vingt_douzième adj 0.00 0.07 0.00 0.07 +quatre_vingt_huit quatre_vingt_huit adj_num 0.02 0.20 0.02 0.20 +quatre_vingt_neuf quatre_vingt_neuf adj_num 0.14 0.61 0.14 0.61 +quatre_vingt_onze quatre_vingt_onze adj_num 0.10 0.34 0.10 0.34 +quatre_vingt_quatorze quatre_vingt_quatorze adj_num 0.10 0.07 0.10 0.07 +quatre_vingt_quatre quatre_vingt_quatre adj_num 0.03 0.74 0.03 0.74 +quatre_vingt_quinze quatre_vingt_quinze adj_num 0.14 2.16 0.14 2.16 +quatre_vingt_seize quatre_vingt_seize adj_num 0.10 0.07 0.10 0.07 +quatre_vingt_sept quatre_vingt_sept adj_num 0.07 0.27 0.07 0.27 +quatre_vingt_six quatre_vingt_six adj_num 0.19 0.34 0.19 0.34 +quatre_vingt_treize quatre_vingt_treize adj_num 0.11 0.95 0.11 0.95 +quatre_vingt_treizième quatre_vingt_treizième adj 0.00 0.07 0.00 0.07 +quatre_vingt_trois quatre_vingt_trois adj_num 0.06 0.41 0.06 0.41 +quatre_vingt_un quatre_vingt_un adj_num 0.02 0.14 0.02 0.14 +quatre_vingt quatre_vingt adj_num 0.93 1.01 0.93 1.01 +quatre_vingtième quatre_vingtième adj 0.00 0.14 0.00 0.14 +quatre_vingtième quatre_vingtième nom s 0.00 0.14 0.00 0.14 +quatre_vingts quatre_vingts adj_num 0.36 9.05 0.36 9.05 +quatre quatre adj_num 150.93 282.64 150.93 282.64 +quatrillion quatrillion nom m s 0.01 0.00 0.01 0.00 +quatrième quatrième adj 8.65 15.74 8.65 15.74 +quatrièmement quatrièmement adv 0.41 0.14 0.41 0.14 +quatrièmes quatrième nom p 7.14 13.04 0.05 0.27 +quattrocento quattrocento nom m s 0.10 0.27 0.10 0.27 +quatuor quatuor nom m s 1.07 3.45 1.04 3.04 +quatuors quatuor nom m p 1.07 3.45 0.03 0.41 +que que pro_rel 4100.90 3315.95 3330.88 2975.34 +quechua quechua nom m s 0.05 0.00 0.05 0.00 +quel quel adj_int m s 657.71 265.34 657.71 265.34 +quelconque quelconque adj_sup s 10.08 28.85 9.79 27.57 +quelconques quelconque adj_sup p 10.08 28.85 0.29 1.28 +quelle quelle adj_int f s 512.55 244.39 512.55 244.39 +quelles quelles adj_int f p 46.92 35.95 46.92 35.95 +quelqu_un quelqu_un pro_ind s 629.00 128.92 629.00 128.92 +quelqu_une quelqu_une pro_ind f s 0.08 0.61 0.08 0.61 +quelque quelque adj_ind s 884.61 557.77 884.61 557.77 +quelquefois quelquefois adv_sup 11.87 60.47 11.87 60.47 +quelques_unes quelques_unes pro_ind f p 3.50 8.51 3.50 8.51 +quelques_uns quelques_uns pro_ind m p 8.33 22.09 8.33 22.09 +quelques quelques adj_ind p 337.35 732.57 337.35 732.57 +quels quels adj_int m p 56.44 37.23 56.44 37.23 +quenelle quenelle nom f s 0.35 0.74 0.19 0.00 +quenelles quenelle nom f p 0.35 0.74 0.16 0.74 +quenotte quenotte nom f s 0.18 0.74 0.00 0.20 +quenottes quenotte nom f p 0.18 0.74 0.18 0.54 +quenouille quenouille nom f s 0.23 0.74 0.22 0.47 +quenouilles quenouille nom f p 0.23 0.74 0.01 0.27 +querella quereller ver 2.15 2.16 0.00 0.07 ind:pas:3s; +querellaient quereller ver 2.15 2.16 0.14 0.54 ind:imp:3p; +querellais quereller ver 2.15 2.16 0.00 0.07 ind:imp:1s; +querellait quereller ver 2.15 2.16 0.03 0.14 ind:imp:3s; +querellant quereller ver 2.15 2.16 0.01 0.00 par:pre; +querelle querelle nom f s 12.84 12.77 10.63 6.42 +querellent quereller ver 2.15 2.16 0.14 0.20 ind:pre:3p; +quereller quereller ver 2.15 2.16 0.91 0.27 inf; +querelles querelle nom f p 12.84 12.77 2.21 6.35 +querelleur querelleur adj m s 0.33 0.14 0.14 0.07 +querelleurs querelleur adj m p 0.33 0.14 0.19 0.07 +querelleuse querelleux adj f s 0.02 0.00 0.02 0.00 +querellez quereller ver 2.15 2.16 0.13 0.00 imp:pre:2p;ind:pre:2p; +querellons quereller ver 2.15 2.16 0.14 0.00 imp:pre:1p;ind:pre:1p; +querellèrent quereller ver 2.15 2.16 0.00 0.07 ind:pas:3p; +querellé quereller ver m s 2.15 2.16 0.05 0.07 par:pas; +querellée quereller ver f s 2.15 2.16 0.02 0.14 par:pas; +querellées quereller ver f p 2.15 2.16 0.11 0.00 par:pas; +querellés quereller ver m p 2.15 2.16 0.07 0.34 par:pas; +questeur questeur nom m s 0.13 0.07 0.10 0.00 +questeurs questeur nom m p 0.13 0.07 0.03 0.07 +question_clé question_clé nom f s 0.02 0.00 0.02 0.00 +question_réponse question_réponse nom f s 0.02 0.00 0.02 0.00 +question question nom f s 411.82 328.45 293.63 232.50 +questionna questionner ver 6.30 15.88 0.01 2.84 ind:pas:3s; +questionnai questionner ver 6.30 15.88 0.01 0.47 ind:pas:1s; +questionnaient questionner ver 6.30 15.88 0.02 0.47 ind:imp:3p; +questionnaire questionnaire nom m s 2.05 1.82 1.69 1.15 +questionnaires questionnaire nom m p 2.05 1.82 0.36 0.68 +questionnais questionner ver 6.30 15.88 0.04 0.34 ind:imp:1s; +questionnait questionner ver 6.30 15.88 0.23 1.35 ind:imp:3s; +questionnant questionner ver 6.30 15.88 0.04 0.27 par:pre; +questionne questionner ver 6.30 15.88 1.48 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +questionnement questionnement nom m s 0.36 0.14 0.32 0.07 +questionnements questionnement nom m p 0.36 0.14 0.04 0.07 +questionnent questionner ver 6.30 15.88 0.08 0.41 ind:pre:3p; +questionner questionner ver 6.30 15.88 2.66 3.51 ind:pre:2p;inf; +questionnera questionner ver 6.30 15.88 0.08 0.07 ind:fut:3s; +questionnerai questionner ver 6.30 15.88 0.02 0.00 ind:fut:1s; +questionnerait questionner ver 6.30 15.88 0.00 0.14 cnd:pre:3s; +questionnerons questionner ver 6.30 15.88 0.01 0.07 ind:fut:1p; +questionneront questionner ver 6.30 15.88 0.01 0.00 ind:fut:3p; +questionneur questionneur nom m s 0.03 0.81 0.03 0.34 +questionneurs questionneur nom m p 0.03 0.81 0.00 0.27 +questionneuse questionneur nom f s 0.03 0.81 0.00 0.20 +questionnez questionner ver 6.30 15.88 0.34 0.14 imp:pre:2p;ind:pre:2p; +questionnions questionner ver 6.30 15.88 0.00 0.14 ind:imp:1p; +questionnons questionner ver 6.30 15.88 0.01 0.07 ind:pre:1p; +questionnât questionner ver 6.30 15.88 0.00 0.07 sub:imp:3s; +questionnèrent questionner ver 6.30 15.88 0.00 0.14 ind:pas:3p; +questionné questionner ver m s 6.30 15.88 0.98 1.42 par:pas; +questionnée questionner ver f s 6.30 15.88 0.16 0.41 par:pas; +questionnés questionner ver m p 6.30 15.88 0.12 0.47 par:pas; +questions_réponse questions_réponse nom f p 0.07 0.07 0.07 0.07 +questions question nom f p 411.82 328.45 118.19 95.95 +questure questure nom f s 0.10 0.00 0.10 0.00 +quetsche quetsche nom f s 0.00 0.74 0.00 0.34 +quetsches quetsche nom f p 0.00 0.74 0.00 0.41 +quette quette nom f s 0.01 0.00 0.01 0.00 +quetzal quetzal nom m s 0.01 0.00 0.01 0.00 +queue_d_aronde queue_d_aronde nom f s 0.00 0.14 0.00 0.07 +queue_de_cheval queue_de_cheval nom f s 0.14 0.00 0.14 0.00 +queue_de_pie queue_de_pie nom f s 0.05 0.27 0.05 0.27 +queue queue nom f s 41.59 57.84 38.93 51.49 +queue_d_aronde queue_d_aronde nom f p 0.00 0.14 0.00 0.07 +queue_de_rat queue_de_rat nom f p 0.00 0.07 0.00 0.07 +queues queue nom f p 41.59 57.84 2.66 6.35 +queursoir queursoir nom m s 0.00 0.07 0.00 0.07 +queutard queutard nom m s 0.19 0.00 0.19 0.00 +queuté queuter ver m s 0.00 0.14 0.00 0.07 par:pas; +queutée queuter ver f s 0.00 0.14 0.00 0.07 par:pas; +qui_vive qui_vive ono 0.00 0.14 0.00 0.14 +qui qui pro_rel 5516.52 7923.24 5344.98 7897.91 +quibus quibus nom m 0.00 0.20 0.00 0.20 +quiche quiche nom f s 1.21 0.68 1.10 0.41 +quiches quiche nom f p 1.21 0.68 0.11 0.27 +quichotte quichotte nom m s 0.00 0.07 0.00 0.07 +quick quick nom m s 0.27 0.20 0.27 0.20 +quiconque quiconque pro_rel s 22.81 9.12 15.43 6.08 +quidam quidam nom m s 0.70 2.23 0.66 1.89 +quidams quidam nom m p 0.70 2.23 0.04 0.34 +quiet quiet adj m s 0.39 0.74 0.28 0.07 +quiets quiet adj m p 0.39 0.74 0.00 0.20 +quignon quignon nom m s 0.25 2.43 0.11 2.16 +quignons quignon nom m p 0.25 2.43 0.14 0.27 +quillai quiller ver 0.06 0.27 0.00 0.20 ind:pas:1s; +quillards quillard nom m p 0.00 0.34 0.00 0.34 +quille quille nom f s 2.89 5.81 1.49 2.57 +quiller quiller ver 0.06 0.27 0.05 0.00 inf; +quilles quille nom f p 2.89 5.81 1.40 3.24 +quillon quillon nom m s 0.00 0.20 0.00 0.07 +quillons quillon nom m p 0.00 0.20 0.00 0.14 +quillée quiller ver f s 0.06 0.27 0.00 0.07 par:pas; +quimpe quimper ver 0.00 1.15 0.00 0.27 ind:pre:1s;ind:pre:3s; +quimpent quimper ver 0.00 1.15 0.00 0.07 ind:pre:3p; +quimper quimper ver 0.00 1.15 0.00 0.68 inf; +quimpé quimper ver m s 0.00 1.15 0.00 0.14 par:pas; +quincaille quincaille nom f s 0.00 0.34 0.00 0.34 +quincaillerie quincaillerie nom f s 1.97 2.91 1.89 2.70 +quincailleries quincaillerie nom f p 1.97 2.91 0.08 0.20 +quincaillier quincaillier nom m s 0.30 1.49 0.21 1.28 +quincailliers quincaillier nom m p 0.30 1.49 0.09 0.07 +quincaillière quincaillier nom f s 0.30 1.49 0.00 0.14 +quinconce quinconce nom m s 0.01 1.42 0.00 1.22 +quinconces quinconce nom m p 0.01 1.42 0.01 0.20 +quine quine nom m s 0.23 0.34 0.23 0.34 +quinine quinine nom f s 0.54 0.95 0.54 0.95 +quinium quinium nom m s 0.00 0.07 0.00 0.07 +quinoa quinoa nom m s 0.01 0.00 0.01 0.00 +quinqua quinqua nom m s 0.00 0.20 0.00 0.20 +quinquagénaire quinquagénaire adj s 0.16 0.68 0.16 0.54 +quinquagénaires quinquagénaire nom p 0.15 1.35 0.02 0.27 +quinquagésime quinquagésime nom f s 0.00 0.07 0.00 0.07 +quinquennal quinquennal adj m s 0.26 0.34 0.26 0.34 +quinquennat quinquennat nom m s 0.10 0.00 0.10 0.00 +quinquet quinquet nom m s 0.25 2.30 0.04 0.34 +quinquets quinquet nom m p 0.25 2.30 0.21 1.96 +quinquina quinquina nom m s 0.00 0.54 0.00 0.54 +quint quint adj 0.20 0.20 0.20 0.20 +quintaine quintaine nom f s 0.00 0.07 0.00 0.07 +quintal quintal nom m s 0.56 1.01 0.19 0.68 +quintaux quintal nom m p 0.56 1.01 0.38 0.34 +quinte quinte nom f s 1.42 4.86 1.25 3.85 +quintes quinte nom f p 1.42 4.86 0.16 1.01 +quintessence quintessence nom f s 0.43 1.22 0.43 1.22 +quintessencié quintessencié adj m s 0.00 0.41 0.00 0.27 +quintessenciée quintessencié adj f s 0.00 0.41 0.00 0.07 +quintessenciées quintessencié adj f p 0.00 0.41 0.00 0.07 +quintet quintet nom m s 0.05 0.00 0.05 0.00 +quintette quintette nom m s 0.09 1.22 0.09 1.15 +quintettes quintette nom m p 0.09 1.22 0.00 0.07 +quinteux quinteux adj m s 0.00 0.20 0.00 0.20 +quintidi quintidi nom m s 0.00 0.07 0.00 0.07 +quinto quinto adv 0.22 0.00 0.22 0.00 +quintolet quintolet nom m s 0.02 0.00 0.02 0.00 +quinton quinton nom m s 0.01 0.00 0.01 0.00 +quinté quinté nom m s 0.14 0.00 0.14 0.00 +quintupla quintupler ver 0.19 0.14 0.00 0.07 ind:pas:3s; +quintuple quintuple adj s 0.03 0.20 0.03 0.07 +quintuples quintuple adj f p 0.03 0.20 0.00 0.14 +quintuplé quintupler ver m s 0.19 0.14 0.15 0.00 par:pas; +quintuplées quintuplée nom f p 0.08 0.14 0.08 0.14 +quintuplés quintuplé nom m p 0.35 0.07 0.35 0.07 +quinzaine quinzaine nom f s 2.02 11.89 2.01 11.69 +quinzaines quinzaine nom f p 2.02 11.89 0.01 0.20 +quinze quinze adj_num 21.92 94.80 21.92 94.80 +quinzième quinzième nom s 0.28 0.74 0.28 0.74 +quipos quipo nom m p 0.00 0.07 0.00 0.07 +quiproquo quiproquo nom m s 0.38 0.88 0.37 0.61 +quiproquos quiproquo nom m p 0.38 0.88 0.01 0.27 +quipu quipu nom m s 0.00 0.07 0.00 0.07 +quiquette quiquette nom f s 0.00 0.07 0.00 0.07 +quiqui quiqui nom m s 0.00 0.41 0.00 0.41 +quiscale quiscale nom m s 0.11 0.00 0.11 0.00 +quite quite nom m s 0.47 0.07 0.47 0.07 +quiète quiet adj f s 0.39 0.74 0.00 0.41 +quiètement quiètement adv 0.00 0.14 0.00 0.14 +quiètes quiet adj f p 0.39 0.74 0.10 0.07 +quitta quitter ver 276.23 318.72 1.82 27.30 ind:pas:3s; +quittai quitter ver 276.23 318.72 0.23 6.62 ind:pas:1s; +quittaient quitter ver 276.23 318.72 0.36 7.36 ind:imp:3p; +quittais quitter ver 276.23 318.72 1.37 3.85 ind:imp:1s;ind:imp:2s; +quittait quitter ver 276.23 318.72 2.88 24.93 ind:imp:3s; +quittance quittance nom f s 0.55 1.15 0.40 0.54 +quittances quittance nom f p 0.55 1.15 0.14 0.61 +quittant quitter ver 276.23 318.72 3.60 18.38 par:pre; +quittas quitter ver 276.23 318.72 0.00 0.07 ind:pas:2s; +quittassent quitter ver 276.23 318.72 0.00 0.07 sub:imp:3p; +quitte quitter ver 276.23 318.72 49.07 32.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +quittent quitter ver 276.23 318.72 4.39 5.47 ind:pre:3p; +quitter quitter ver 276.23 318.72 88.02 85.95 ind:pre:2p;inf; +quittera quitter ver 276.23 318.72 4.62 2.09 ind:fut:3s; +quitterai quitter ver 276.23 318.72 6.18 1.89 ind:fut:1s; +quitteraient quitter ver 276.23 318.72 0.02 1.08 cnd:pre:3p; +quitterais quitter ver 276.23 318.72 1.73 1.01 cnd:pre:1s;cnd:pre:2s; +quitterait quitter ver 276.23 318.72 0.78 2.57 cnd:pre:3s; +quitteras quitter ver 276.23 318.72 1.75 0.47 ind:fut:2s; +quitterez quitter ver 276.23 318.72 1.11 0.41 ind:fut:2p; +quitteriez quitter ver 276.23 318.72 0.34 0.07 cnd:pre:2p; +quitterions quitter ver 276.23 318.72 0.02 0.07 cnd:pre:1p; +quitterons quitter ver 276.23 318.72 0.63 0.47 ind:fut:1p; +quitteront quitter ver 276.23 318.72 0.40 0.41 ind:fut:3p; +quittes quitter ver 276.23 318.72 6.03 1.42 ind:pre:2s;sub:pre:2s; +quittez quitter ver 276.23 318.72 19.72 1.96 imp:pre:2p;ind:pre:2p; +quittiez quitter ver 276.23 318.72 1.19 0.27 ind:imp:2p;sub:pre:2p; +quittions quitter ver 276.23 318.72 0.39 2.77 ind:imp:1p;sub:pre:1p; +quittâmes quitter ver 276.23 318.72 0.16 2.16 ind:pas:1p; +quittons quitter ver 276.23 318.72 3.44 1.96 imp:pre:1p;ind:pre:1p; +quittât quitter ver 276.23 318.72 0.01 1.01 sub:imp:3s; +quittèrent quitter ver 276.23 318.72 0.38 6.69 ind:pas:3p; +quitté quitter ver m s 276.23 318.72 62.92 60.14 par:pas; +quittée quitter ver f s 276.23 318.72 7.40 8.85 par:pas; +quittées quitter ver f p 276.23 318.72 0.36 0.95 par:pas; +quittés quitter ver m p 276.23 318.72 4.95 7.97 par:pas; +quitus quitus nom m 0.14 0.07 0.14 0.07 +quiétisme quiétisme nom m s 0.00 0.34 0.00 0.34 +quiétiste quiétiste nom s 0.00 0.07 0.00 0.07 +quiétude quiétude nom f s 0.64 5.14 0.64 5.07 +quiétudes quiétude nom f p 0.64 5.14 0.00 0.07 +quiz quiz nom m 0.53 0.00 0.53 0.00 +quoaillant quoailler ver 0.00 0.07 0.00 0.07 par:pre; +quoi quoi pro_rel 923.03 380.07 904.12 376.89 +quoique quoique con 11.68 19.05 11.68 19.05 +quolibet quolibet nom m s 0.04 2.91 0.00 0.14 +quolibets quolibet nom m p 0.04 2.91 0.04 2.77 +quorum quorum nom m s 0.67 0.20 0.67 0.20 +quota quota nom m s 2.12 0.47 1.39 0.27 +quotas quota nom m p 2.12 0.47 0.73 0.20 +quote_part quote_part nom f s 0.03 0.47 0.03 0.47 +quotidien quotidien adj m s 10.15 37.43 3.66 10.47 +quotidienne quotidien adj f s 10.15 37.43 3.91 17.30 +quotidiennement quotidiennement adv 0.97 4.80 0.97 4.80 +quotidiennes quotidien adj f p 10.15 37.43 1.29 4.80 +quotidienneté quotidienneté nom f s 0.00 0.14 0.00 0.14 +quotidiens quotidien adj m p 10.15 37.43 1.30 4.86 +quotient quotient nom m s 0.42 0.61 0.42 0.47 +quotients quotient nom m p 0.42 0.61 0.00 0.14 +quotité quotité nom f s 0.00 0.07 0.00 0.07 +québécois québécois adj m s 0.25 0.07 0.11 0.00 +québécoise québécois adj f s 0.25 0.07 0.14 0.07 +quémanda quémander ver 0.60 2.70 0.00 0.07 ind:pas:3s; +quémandaient quémander ver 0.60 2.70 0.00 0.27 ind:imp:3p; +quémandait quémander ver 0.60 2.70 0.01 0.20 ind:imp:3s; +quémandant quémander ver 0.60 2.70 0.00 0.47 par:pre; +quémande quémander ver 0.60 2.70 0.03 0.14 ind:pre:3s; +quémandent quémander ver 0.60 2.70 0.12 0.07 ind:pre:3p; +quémander quémander ver 0.60 2.70 0.41 1.42 inf; +quémandeur quémandeur nom m s 0.32 0.88 0.02 0.41 +quémandeurs quémandeur nom m p 0.32 0.88 0.30 0.27 +quémandeuse quémandeur nom f s 0.32 0.88 0.00 0.07 +quémandeuses quémandeur nom f p 0.32 0.88 0.00 0.14 +quémandons quémander ver 0.60 2.70 0.01 0.00 ind:pre:1p; +quémandé quémander ver m s 0.60 2.70 0.02 0.07 par:pas; +quéquette quéquette nom f s 1.30 2.36 1.27 2.09 +quéquettes quéquette nom f p 1.30 2.36 0.03 0.27 +quérir quérir ver 0.65 1.76 0.65 1.76 inf; +quêta quêter ver 0.21 3.38 0.00 0.20 ind:pas:3s; +quêtai quêter ver 0.21 3.38 0.00 0.07 ind:pas:1s; +quêtaient quêter ver 0.21 3.38 0.00 0.27 ind:imp:3p; +quêtais quêter ver 0.21 3.38 0.01 0.20 ind:imp:1s;ind:imp:2s; +quêtait quêter ver 0.21 3.38 0.00 0.41 ind:imp:3s; +quêtant quêter ver 0.21 3.38 0.01 0.88 par:pre; +quête quête nom f s 10.24 14.53 9.97 13.92 +quêtent quêter ver 0.21 3.38 0.00 0.14 ind:pre:3p; +quêter quêter ver 0.21 3.38 0.13 0.88 inf; +quêtes quête nom f p 10.24 14.53 0.28 0.61 +quêteur quêteur nom m s 0.04 0.81 0.04 0.20 +quêteurs quêteur nom m p 0.04 0.81 0.00 0.34 +quêteuse quêteur nom f s 0.04 0.81 0.00 0.27 +quêtez quêter ver 0.21 3.38 0.00 0.07 imp:pre:2p; +quêté quêter ver m s 0.21 3.38 0.00 0.07 par:pas; +quêtées quêter ver f p 0.21 3.38 0.00 0.07 par:pas; +rîmes rire ver 140.25 320.54 0.01 0.20 ind:pas:1p; +rît rire ver 140.25 320.54 0.00 0.07 sub:imp:3s; +röntgens röntgen nom m p 0.02 0.00 0.02 0.00 +rôda rôder ver 5.76 20.07 0.00 0.07 ind:pas:3s; +rôdai rôder ver 5.76 20.07 0.00 0.20 ind:pas:1s; +rôdaient rôder ver 5.76 20.07 0.06 2.36 ind:imp:3p; +rôdailler rôdailler ver 0.00 0.20 0.00 0.20 inf; +rôdais rôder ver 5.76 20.07 0.07 0.47 ind:imp:1s;ind:imp:2s; +rôdait rôder ver 5.76 20.07 0.35 3.51 ind:imp:3s; +rôdant rôder ver 5.76 20.07 0.44 1.28 par:pre; +rôde rôder ver 5.76 20.07 1.93 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rôdent rôder ver 5.76 20.07 0.61 1.49 ind:pre:3p; +rôder rôder ver 5.76 20.07 1.63 5.41 inf; +rôdera rôder ver 5.76 20.07 0.01 0.07 ind:fut:3s; +rôderai rôder ver 5.76 20.07 0.00 0.07 ind:fut:1s; +rôderait rôder ver 5.76 20.07 0.00 0.07 cnd:pre:3s; +rôdes rôder ver 5.76 20.07 0.23 0.20 ind:pre:2s; +rôdeur rôdeur nom m s 1.37 2.57 0.94 1.28 +rôdeurs rôdeur nom m p 1.37 2.57 0.40 1.08 +rôdeuse rôdeur nom f s 1.37 2.57 0.03 0.14 +rôdeuses rôdeur nom f p 1.37 2.57 0.00 0.07 +rôdez rôder ver 5.76 20.07 0.04 0.00 imp:pre:2p;ind:pre:2p; +rôdiez rôder ver 5.76 20.07 0.01 0.00 ind:imp:2p; +rôdions rôder ver 5.76 20.07 0.14 0.14 ind:imp:1p; +rôdâmes rôder ver 5.76 20.07 0.00 0.07 ind:pas:1p; +rôdèrent rôder ver 5.76 20.07 0.00 0.14 ind:pas:3p; +rôdé rôder ver m s 5.76 20.07 0.20 0.68 par:pas; +rôdée rôder ver f s 5.76 20.07 0.01 0.14 par:pas; +rôdés rôder ver m p 5.76 20.07 0.01 0.00 par:pas; +rôle_titre rôle_titre nom m s 0.01 0.00 0.01 0.00 +rôle rôle nom m s 69.38 96.96 61.20 88.51 +rôles rôle nom m p 69.38 96.96 8.18 8.45 +rônier rônier nom m s 0.01 0.07 0.01 0.00 +rôniers rônier nom m p 0.01 0.07 0.00 0.07 +rônin rônin nom m s 0.10 0.00 0.07 0.00 +rônins rônin nom m p 0.10 0.00 0.03 0.00 +rôt rôt nom m s 0.05 0.07 0.04 0.00 +rôti rôti nom m s 4.33 3.24 4.02 2.30 +rôtie rôti adj f s 2.13 3.78 0.33 0.41 +rôties rôti adj f p 2.13 3.78 0.15 0.34 +rôtir rôtir ver 2.90 5.27 1.73 2.16 inf; +rôtiront rôtir ver 2.90 5.27 0.00 0.07 ind:fut:3p; +rôtis rôti nom m p 4.33 3.24 0.30 0.95 +rôtissaient rôtir ver 2.90 5.27 0.03 0.00 ind:imp:3p; +rôtissait rôtir ver 2.90 5.27 0.00 0.34 ind:imp:3s; +rôtissant rôtir ver 2.90 5.27 0.01 0.07 par:pre; +rôtissent rôtir ver 2.90 5.27 0.20 0.14 ind:pre:3p; +rôtisserie rôtisserie nom f s 0.35 0.27 0.35 0.27 +rôtisseur rôtisseur nom m s 0.07 0.20 0.05 0.14 +rôtisseurs rôtisseur nom m p 0.07 0.20 0.01 0.00 +rôtisseuse rôtisseur nom f s 0.07 0.20 0.01 0.00 +rôtisseuses rôtisseur nom f p 0.07 0.20 0.00 0.07 +rôtissez rôtir ver 2.90 5.27 0.01 0.00 imp:pre:2p; +rôtissions rôtir ver 2.90 5.27 0.01 0.00 ind:imp:1p; +rôtissoire rôtissoire nom f s 0.04 0.41 0.04 0.27 +rôtissoires rôtissoire nom f p 0.04 0.41 0.00 0.14 +rôtit rôtir ver 2.90 5.27 0.20 0.07 ind:pre:3s;ind:pas:3s; +rôts rôt nom m p 0.05 0.07 0.01 0.07 +ra ra nom m 3.63 3.45 3.63 3.45 +raïa raïa nom m s 0.10 0.00 0.10 0.00 +raïs raïs nom m 0.00 0.14 0.00 0.14 +rab rab nom m s 1.92 1.76 1.92 1.69 +rabais rabais nom m 1.57 1.55 1.57 1.55 +rabaissa rabaisser ver 3.79 3.38 0.00 0.20 ind:pas:3s; +rabaissaient rabaisser ver 3.79 3.38 0.00 0.07 ind:imp:3p; +rabaissais rabaisser ver 3.79 3.38 0.04 0.07 ind:imp:1s; +rabaissait rabaisser ver 3.79 3.38 0.10 0.34 ind:imp:3s; +rabaissant rabaisser ver 3.79 3.38 0.04 0.34 par:pre; +rabaisse rabaisser ver 3.79 3.38 0.69 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rabaissement rabaissement nom m s 0.01 0.07 0.01 0.07 +rabaissent rabaisser ver 3.79 3.38 0.15 0.14 ind:pre:3p; +rabaisser rabaisser ver 3.79 3.38 1.65 1.22 inf; +rabaissera rabaisser ver 3.79 3.38 0.02 0.00 ind:fut:3s; +rabaisserait rabaisser ver 3.79 3.38 0.12 0.00 cnd:pre:3s; +rabaisses rabaisser ver 3.79 3.38 0.17 0.00 ind:pre:2s; +rabaissez rabaisser ver 3.79 3.38 0.26 0.07 imp:pre:2p;ind:pre:2p; +rabaissé rabaisser ver m s 3.79 3.38 0.32 0.27 par:pas; +rabaissée rabaisser ver f s 3.79 3.38 0.23 0.14 par:pas; +rabaissées rabaisser ver f p 3.79 3.38 0.00 0.07 par:pas; +raban raban nom m s 0.32 0.00 0.09 0.00 +rabane rabane nom f s 0.00 0.14 0.00 0.07 +rabanes rabane nom f p 0.00 0.14 0.00 0.07 +rabans raban nom m p 0.32 0.00 0.24 0.00 +rabat_joie rabat_joie adj 0.91 0.14 0.91 0.14 +rabat rabattre ver 2.21 21.76 0.32 2.97 ind:pre:3s; +rabats rabattre ver 2.21 21.76 0.21 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rabattable rabattable adj s 0.01 0.00 0.01 0.00 +rabattaient rabattre ver 2.21 21.76 0.00 0.68 ind:imp:3p; +rabattais rabattre ver 2.21 21.76 0.01 0.07 ind:imp:1s; +rabattait rabattre ver 2.21 21.76 0.01 2.16 ind:imp:3s; +rabattant rabattre ver 2.21 21.76 0.00 0.68 par:pre; +rabatte rabattre ver 2.21 21.76 0.04 0.27 sub:pre:1s;sub:pre:3s; +rabattent rabattre ver 2.21 21.76 0.04 0.81 ind:pre:3p; +rabatteur rabatteur nom m s 0.68 1.82 0.22 0.47 +rabatteurs rabatteur nom m p 0.68 1.82 0.45 0.95 +rabatteuse rabatteur nom f s 0.68 1.82 0.01 0.41 +rabatteuses rabatteuse nom f p 0.01 0.00 0.01 0.00 +rabattez rabattre ver 2.21 21.76 0.11 0.07 imp:pre:2p;ind:pre:2p; +rabattions rabattre ver 2.21 21.76 0.00 0.07 ind:imp:1p; +rabattirent rabattre ver 2.21 21.76 0.00 0.34 ind:pas:3p; +rabattis rabattre ver 2.21 21.76 0.00 0.27 ind:pas:1s; +rabattit rabattre ver 2.21 21.76 0.01 2.91 ind:pas:3s; +rabattra rabattre ver 2.21 21.76 0.04 0.14 ind:fut:3s; +rabattraient rabattre ver 2.21 21.76 0.00 0.07 cnd:pre:3p; +rabattrait rabattre ver 2.21 21.76 0.00 0.14 cnd:pre:3s; +rabattras rabattre ver 2.21 21.76 0.00 0.07 ind:fut:2s; +rabattre rabattre ver 2.21 21.76 1.01 4.46 inf; +rabattrons rabattre ver 2.21 21.76 0.00 0.07 ind:fut:1p; +rabattu rabattre ver m s 2.21 21.76 0.28 3.11 par:pas; +rabattue rabattu adj f s 0.14 2.03 0.12 0.07 +rabattues rabattre ver f p 2.21 21.76 0.03 0.34 par:pas; +rabattus rabattre ver m p 2.21 21.76 0.07 0.41 par:pas; +rabbi rabbi nom m s 4.83 0.74 4.83 0.74 +rabbin rabbin nom m s 9.36 7.57 9.04 6.35 +rabbinat rabbinat nom m s 0.00 0.20 0.00 0.20 +rabbinique rabbinique adj s 0.01 0.41 0.01 0.34 +rabbiniques rabbinique adj m p 0.01 0.41 0.00 0.07 +rabbins rabbin nom m p 9.36 7.57 0.32 1.22 +rabe rabe nom m s 0.05 0.14 0.05 0.07 +rabelaisien rabelaisien adj m s 0.00 0.68 0.00 0.27 +rabelaisienne rabelaisien adj f s 0.00 0.68 0.00 0.27 +rabelaisiennes rabelaisien adj f p 0.00 0.68 0.00 0.07 +rabelaisiens rabelaisien adj m p 0.00 0.68 0.00 0.07 +rabes rabe nom m p 0.05 0.14 0.00 0.07 +rabibochage rabibochage nom m s 0.00 0.14 0.00 0.14 +rabiboche rabibocher ver 0.84 0.54 0.06 0.00 ind:pre:1s;ind:pre:3s; +rabibochent rabibocher ver 0.84 0.54 0.01 0.00 ind:pre:3p; +rabibocher rabibocher ver 0.84 0.54 0.17 0.41 inf; +rabibocherez rabibocher ver 0.84 0.54 0.00 0.07 ind:fut:2p; +rabiboché rabibocher ver m s 0.84 0.54 0.40 0.00 par:pas; +rabibochées rabibocher ver f p 0.84 0.54 0.01 0.00 par:pas; +rabibochés rabibocher ver m p 0.84 0.54 0.19 0.07 par:pas; +rabiot rabiot nom m s 0.06 0.88 0.06 0.88 +rabiotait rabioter ver 0.00 0.27 0.00 0.07 ind:imp:3s; +rabioter rabioter ver 0.00 0.27 0.00 0.20 inf; +rabique rabique adj f s 0.00 0.14 0.00 0.14 +rabâcha rabâcher ver 1.46 4.32 0.00 0.14 ind:pas:3s; +rabâchage rabâchage nom m s 0.10 0.34 0.10 0.20 +rabâchages rabâchage nom m p 0.10 0.34 0.00 0.14 +rabâchaient rabâcher ver 1.46 4.32 0.00 0.20 ind:imp:3p; +rabâchais rabâcher ver 1.46 4.32 0.01 0.00 ind:imp:2s; +rabâchait rabâcher ver 1.46 4.32 0.01 0.61 ind:imp:3s; +rabâchant rabâcher ver 1.46 4.32 0.15 0.14 par:pre; +rabâche rabâcher ver 1.46 4.32 0.32 0.81 ind:pre:1s;ind:pre:3s; +rabâchent rabâcher ver 1.46 4.32 0.04 0.00 ind:pre:3p; +rabâcher rabâcher ver 1.46 4.32 0.68 1.01 inf; +rabâcherait rabâcher ver 1.46 4.32 0.00 0.07 cnd:pre:3s; +rabâches rabâcher ver 1.46 4.32 0.15 0.54 ind:pre:2s; +rabâcheur rabâcheur adj m s 0.01 0.00 0.01 0.00 +rabâché rabâcher ver m s 1.46 4.32 0.12 0.34 par:pas; +rabâchée rabâcher ver f s 1.46 4.32 0.00 0.07 par:pas; +rabâchées rabâcher ver f p 1.46 4.32 0.00 0.41 par:pas; +rabonnir rabonnir ver 0.00 0.07 0.00 0.07 inf; +rabot rabot nom m s 0.01 1.28 0.01 0.95 +rabotage rabotage nom m s 0.00 0.14 0.00 0.14 +rabotais raboter ver 0.15 2.91 0.00 0.07 ind:imp:1s; +rabotait raboter ver 0.15 2.91 0.00 0.47 ind:imp:3s; +rabotant raboter ver 0.15 2.91 0.00 0.20 par:pre; +rabotent raboter ver 0.15 2.91 0.10 0.20 ind:pre:3p; +raboter raboter ver 0.15 2.91 0.03 0.41 inf; +raboteur raboteur nom m s 0.01 0.07 0.01 0.07 +raboteuse raboteux adj f s 0.10 0.88 0.00 0.34 +raboteuses raboteux adj f p 0.10 0.88 0.00 0.07 +raboteux raboteux adj m 0.10 0.88 0.10 0.47 +rabotin rabotin nom m s 0.00 0.34 0.00 0.34 +rabots rabot nom m p 0.01 1.28 0.00 0.34 +raboté raboter ver m s 0.15 2.91 0.01 0.34 par:pas; +rabotée raboter ver f s 0.15 2.91 0.00 0.34 par:pas; +rabotées raboter ver f p 0.15 2.91 0.00 0.41 par:pas; +rabotés raboter ver m p 0.15 2.91 0.01 0.47 par:pas; +rabougri rabougri adj m s 0.25 3.38 0.19 1.55 +rabougrie rabougri adj f s 0.25 3.38 0.02 0.27 +rabougries rabougri adj f p 0.25 3.38 0.01 0.20 +rabougrir rabougrir ver 0.19 0.95 0.16 0.07 inf; +rabougris rabougri adj m p 0.25 3.38 0.03 1.35 +rabougrissent rabougrir ver 0.19 0.95 0.00 0.07 ind:pre:3p; +rabougrit rabougrir ver 0.19 0.95 0.00 0.20 ind:pre:3s; +rabouillères rabouiller nom f p 0.00 0.07 0.00 0.07 +rabouin rabouin nom m s 0.00 0.07 0.00 0.07 +rabouler rabouler ver 0.01 0.00 0.01 0.00 inf; +rabouter rabouter ver 0.00 0.14 0.00 0.07 inf; +rabouté rabouter ver m s 0.00 0.14 0.00 0.07 par:pas; +rabroua rabrouer ver 0.40 2.84 0.00 0.20 ind:pas:3s; +rabrouai rabrouer ver 0.40 2.84 0.00 0.07 ind:pas:1s; +rabrouaient rabrouer ver 0.40 2.84 0.00 0.14 ind:imp:3p; +rabrouait rabrouer ver 0.40 2.84 0.03 0.34 ind:imp:3s; +rabrouant rabrouer ver 0.40 2.84 0.00 0.14 par:pre; +rabroue rabrouer ver 0.40 2.84 0.05 0.20 ind:pre:1s;ind:pre:3s; +rabrouer rabrouer ver 0.40 2.84 0.04 0.68 inf; +rabrouât rabrouer ver 0.40 2.84 0.00 0.07 sub:imp:3s; +rabrouèrent rabrouer ver 0.40 2.84 0.00 0.07 ind:pas:3p; +rabroué rabrouer ver m s 0.40 2.84 0.05 0.41 par:pas; +rabrouée rabrouer ver f s 0.40 2.84 0.23 0.54 par:pas; +rabs rab nom m p 1.92 1.76 0.00 0.07 +rac rac adj 0.00 0.95 0.00 0.95 +racaille racaille nom f s 6.30 2.97 5.67 2.97 +racailles racaille nom f p 6.30 2.97 0.62 0.00 +raccommoda raccommoder ver 0.68 3.04 0.00 0.14 ind:pas:3s; +raccommodage raccommodage nom m s 0.04 0.61 0.04 0.47 +raccommodages raccommodage nom m p 0.04 0.61 0.00 0.14 +raccommodaient raccommoder ver 0.68 3.04 0.00 0.07 ind:imp:3p; +raccommodait raccommoder ver 0.68 3.04 0.01 0.41 ind:imp:3s; +raccommodant raccommoder ver 0.68 3.04 0.01 0.07 par:pre; +raccommode raccommoder ver 0.68 3.04 0.18 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccommodements raccommodement nom m p 0.00 0.07 0.00 0.07 +raccommodent raccommoder ver 0.68 3.04 0.14 0.00 ind:pre:3p; +raccommoder raccommoder ver 0.68 3.04 0.25 1.22 inf; +raccommodera raccommoder ver 0.68 3.04 0.00 0.07 ind:fut:3s; +raccommoderai raccommoder ver 0.68 3.04 0.02 0.00 ind:fut:1s; +raccommodeurs raccommodeur nom m p 0.00 0.07 0.00 0.07 +raccommodez raccommoder ver 0.68 3.04 0.00 0.07 ind:pre:2p; +raccommodions raccommoder ver 0.68 3.04 0.01 0.00 ind:imp:1p; +raccommodé raccommoder ver m s 0.68 3.04 0.04 0.54 par:pas; +raccommodée raccommoder ver f s 0.68 3.04 0.01 0.14 par:pas; +raccommodées raccommoder ver f p 0.68 3.04 0.00 0.07 par:pas; +raccommodés raccommoder ver m p 0.68 3.04 0.02 0.07 par:pas; +raccompagna raccompagner ver 25.90 14.39 0.01 2.09 ind:pas:3s; +raccompagnai raccompagner ver 25.90 14.39 0.00 0.34 ind:pas:1s; +raccompagnaient raccompagner ver 25.90 14.39 0.00 0.20 ind:imp:3p; +raccompagnais raccompagner ver 25.90 14.39 0.34 0.41 ind:imp:1s;ind:imp:2s; +raccompagnait raccompagner ver 25.90 14.39 0.30 1.42 ind:imp:3s; +raccompagnant raccompagner ver 25.90 14.39 0.16 0.74 par:pre; +raccompagne raccompagner ver 25.90 14.39 11.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccompagnent raccompagner ver 25.90 14.39 0.04 0.14 ind:pre:3p; +raccompagner raccompagner ver 25.90 14.39 6.60 3.65 inf; +raccompagnera raccompagner ver 25.90 14.39 0.51 0.07 ind:fut:3s; +raccompagnerai raccompagner ver 25.90 14.39 0.60 0.00 ind:fut:1s; +raccompagnerais raccompagner ver 25.90 14.39 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +raccompagnerait raccompagner ver 25.90 14.39 0.01 0.34 cnd:pre:3s; +raccompagneras raccompagner ver 25.90 14.39 0.02 0.07 ind:fut:2s; +raccompagnerez raccompagner ver 25.90 14.39 0.00 0.07 ind:fut:2p; +raccompagnes raccompagner ver 25.90 14.39 0.71 0.14 ind:pre:2s; +raccompagnez raccompagner ver 25.90 14.39 1.52 0.14 imp:pre:2p;ind:pre:2p; +raccompagnons raccompagner ver 25.90 14.39 0.23 0.00 imp:pre:1p;ind:pre:1p; +raccompagnèrent raccompagner ver 25.90 14.39 0.00 0.20 ind:pas:3p; +raccompagné raccompagner ver m s 25.90 14.39 1.16 1.08 par:pas; +raccompagnée raccompagner ver f s 25.90 14.39 1.65 0.61 par:pas; +raccompagnés raccompagner ver m p 25.90 14.39 0.00 0.14 par:pas; +raccord raccord nom m s 1.02 1.28 0.81 0.68 +raccordaient raccorder ver 0.73 2.64 0.02 0.14 ind:imp:3p; +raccordait raccorder ver 0.73 2.64 0.00 0.41 ind:imp:3s; +raccordant raccorder ver 0.73 2.64 0.03 0.14 par:pre; +raccorde raccorder ver 0.73 2.64 0.13 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccordement raccordement nom m s 0.20 0.27 0.09 0.14 +raccordements raccordement nom m p 0.20 0.27 0.11 0.14 +raccordent raccorder ver 0.73 2.64 0.00 0.14 ind:pre:3p; +raccorder raccorder ver 0.73 2.64 0.21 0.61 inf; +raccorderait raccorder ver 0.73 2.64 0.00 0.07 cnd:pre:3s; +raccordez raccorder ver 0.73 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +raccords raccord nom m p 1.02 1.28 0.21 0.61 +raccordé raccorder ver m s 0.73 2.64 0.23 0.41 par:pas; +raccordée raccorder ver f s 0.73 2.64 0.01 0.07 par:pas; +raccordées raccorder ver f p 0.73 2.64 0.01 0.00 par:pas; +raccordés raccorder ver m p 0.73 2.64 0.06 0.14 par:pas; +raccourci raccourci nom m s 5.78 4.32 4.57 3.24 +raccourcie raccourcir ver f s 2.46 5.95 0.16 0.54 par:pas; +raccourcies raccourcir ver f p 2.46 5.95 0.01 0.07 par:pas; +raccourcir raccourcir ver 2.46 5.95 1.09 1.62 inf; +raccourcira raccourcir ver 2.46 5.95 0.04 0.07 ind:fut:3s; +raccourciras raccourcir ver 2.46 5.95 0.01 0.00 ind:fut:2s; +raccourcirons raccourcir ver 2.46 5.95 0.00 0.07 ind:fut:1p; +raccourcis raccourci nom m p 5.78 4.32 1.21 1.08 +raccourcissaient raccourcir ver 2.46 5.95 0.00 0.20 ind:imp:3p; +raccourcissait raccourcir ver 2.46 5.95 0.01 0.20 ind:imp:3s; +raccourcissant raccourcir ver 2.46 5.95 0.10 0.61 par:pre; +raccourcisse raccourcir ver 2.46 5.95 0.01 0.07 sub:pre:1s;sub:pre:3s; +raccourcissement raccourcissement nom m s 0.01 0.27 0.01 0.27 +raccourcissent raccourcir ver 2.46 5.95 0.14 0.54 ind:pre:3p; +raccourcit raccourcir ver 2.46 5.95 0.23 0.68 ind:pre:3s;ind:pas:3s; +raccroc raccroc nom m s 0.00 0.47 0.00 0.34 +raccrocha raccrocher ver 28.09 26.08 0.02 5.07 ind:pas:3s; +raccrochage raccrochage nom m s 0.01 0.14 0.01 0.07 +raccrochages raccrochage nom m p 0.01 0.14 0.00 0.07 +raccrochai raccrocher ver 28.09 26.08 0.01 1.42 ind:pas:1s; +raccrochaient raccrocher ver 28.09 26.08 0.01 0.20 ind:imp:3p; +raccrochais raccrocher ver 28.09 26.08 0.12 0.27 ind:imp:1s;ind:imp:2s; +raccrochait raccrocher ver 28.09 26.08 0.29 0.95 ind:imp:3s; +raccrochant raccrocher ver 28.09 26.08 0.04 1.22 par:pre; +raccroche raccrocher ver 28.09 26.08 10.58 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +raccrochent raccrocher ver 28.09 26.08 0.49 0.14 ind:pre:3p; +raccrocher raccrocher ver 28.09 26.08 5.41 5.27 inf; +raccrochera raccrocher ver 28.09 26.08 0.04 0.00 ind:fut:3s; +raccrocherai raccrocher ver 28.09 26.08 0.13 0.00 ind:fut:1s; +raccrocheraient raccrocher ver 28.09 26.08 0.00 0.07 cnd:pre:3p; +raccrocherais raccrocher ver 28.09 26.08 0.02 0.00 cnd:pre:1s; +raccrocherait raccrocher ver 28.09 26.08 0.11 0.07 cnd:pre:3s; +raccrocheras raccrocher ver 28.09 26.08 0.04 0.00 ind:fut:2s; +raccroches raccrocher ver 28.09 26.08 0.53 0.20 ind:pre:2s; +raccrocheur raccrocheur adj m s 0.00 0.20 0.00 0.14 +raccrocheurs raccrocheur adj m p 0.00 0.20 0.00 0.07 +raccrochez raccrocher ver 28.09 26.08 3.49 0.20 imp:pre:2p;ind:pre:2p; +raccrochons raccrocher ver 28.09 26.08 0.03 0.00 imp:pre:1p;ind:pre:1p; +raccrochèrent raccrocher ver 28.09 26.08 0.00 0.07 ind:pas:3p; +raccroché raccrocher ver m s 28.09 26.08 6.67 5.00 par:pas; +raccrochée raccrocher ver f s 28.09 26.08 0.04 0.20 par:pas; +raccrochées raccrocher ver f p 28.09 26.08 0.00 0.07 par:pas; +raccrochés raccrocher ver m p 28.09 26.08 0.03 0.07 par:pas; +raccrocs raccroc nom m p 0.00 0.47 0.00 0.14 +raccusa raccuser ver 0.00 0.07 0.00 0.07 ind:pas:3s; +race race nom f s 30.56 34.93 27.09 28.72 +races race nom f p 30.56 34.93 3.46 6.22 +rachat rachat nom m s 1.79 1.01 1.75 0.95 +rachats rachat nom m p 1.79 1.01 0.04 0.07 +racheta racheter ver 17.33 12.91 0.00 0.20 ind:pas:3s; +rachetai racheter ver 17.33 12.91 0.00 0.07 ind:pas:1s; +rachetaient racheter ver 17.33 12.91 0.01 0.20 ind:imp:3p; +rachetait racheter ver 17.33 12.91 0.00 0.68 ind:imp:3s; +rachetant racheter ver 17.33 12.91 0.19 0.20 par:pre; +racheter racheter ver 17.33 12.91 9.30 6.08 ind:pre:2p;inf; +rachetez racheter ver 17.33 12.91 0.09 0.07 imp:pre:2p;ind:pre:2p; +rachetiez racheter ver 17.33 12.91 0.03 0.07 ind:imp:2p; +rachetât racheter ver 17.33 12.91 0.00 0.07 sub:imp:3s; +rachetèrent racheter ver 17.33 12.91 0.00 0.07 ind:pas:3p; +racheté racheter ver m s 17.33 12.91 3.77 1.22 par:pas; +rachetée racheter ver f s 17.33 12.91 0.60 0.41 par:pas; +rachetées racheter ver f p 17.33 12.91 0.00 0.14 par:pas; +rachetés racheter ver m p 17.33 12.91 0.32 0.47 par:pas; +rachianesthésie rachianesthésie nom f s 0.10 0.00 0.10 0.00 +rachidien rachidien adj m s 0.23 0.14 0.18 0.14 +rachidienne rachidien adj f s 0.23 0.14 0.04 0.00 +rachis rachis nom m 0.04 0.07 0.04 0.07 +rachitique rachitique adj s 0.14 0.61 0.11 0.47 +rachitiques rachitique adj p 0.14 0.61 0.03 0.14 +rachitisme rachitisme nom m s 0.05 0.14 0.05 0.14 +racho racho adj s 0.03 0.07 0.03 0.07 +rachète racheter ver 17.33 12.91 1.48 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rachètent racheter ver 17.33 12.91 0.20 0.41 ind:pre:3p; +rachètera racheter ver 17.33 12.91 0.64 0.41 ind:fut:3s; +rachèterai racheter ver 17.33 12.91 0.47 0.34 ind:fut:1s; +rachèterais racheter ver 17.33 12.91 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +rachèterait racheter ver 17.33 12.91 0.03 0.34 cnd:pre:3s; +rachèterez racheter ver 17.33 12.91 0.14 0.00 ind:fut:2p; +rachèteront racheter ver 17.33 12.91 0.01 0.00 ind:fut:3p; +racial racial adj m s 3.08 1.35 0.66 0.07 +raciale racial adj f s 3.08 1.35 1.50 0.61 +racialement racialement adv 0.02 0.14 0.02 0.14 +raciales racial adj f p 3.08 1.35 0.71 0.47 +raciaux racial adj m p 3.08 1.35 0.22 0.20 +racinait raciner ver 0.00 0.34 0.00 0.07 ind:imp:3s; +racine racine nom f s 12.53 31.96 5.17 11.01 +raciner raciner ver 0.00 0.34 0.00 0.07 inf; +racines racine nom f p 12.53 31.96 7.36 20.95 +racingman racingman nom m s 0.00 0.07 0.00 0.07 +racinienne racinien adj f s 0.00 0.20 0.00 0.07 +raciniennes racinien adj f p 0.00 0.20 0.00 0.07 +raciniens racinien adj m p 0.00 0.20 0.00 0.07 +racinée raciner ver f s 0.00 0.34 0.00 0.07 par:pas; +racinées raciner ver f p 0.00 0.34 0.00 0.07 par:pas; +racinés raciner ver m p 0.00 0.34 0.00 0.07 par:pas; +racisme racisme nom m s 2.09 2.97 2.09 2.77 +racismes racisme nom m p 2.09 2.97 0.00 0.20 +raciste raciste adj s 4.97 3.45 3.89 2.03 +racistes raciste nom p 3.54 2.70 1.18 1.28 +rack rack nom m s 0.25 0.07 0.25 0.07 +racket racket nom m s 2.33 0.68 2.07 0.68 +rackets racket nom m p 2.33 0.68 0.27 0.00 +rackette racketter ver 0.23 0.00 0.05 0.00 ind:pre:3s; +racketter racketter ver 0.23 0.00 0.16 0.00 inf; +racketteur racketteur nom m s 0.22 0.00 0.22 0.00 +rackettez racketter ver 0.23 0.00 0.01 0.00 ind:pre:2p; +rackettons racketter ver 0.23 0.00 0.01 0.00 ind:pre:1p; +racketté racketter ver m s 0.23 0.00 0.01 0.00 par:pas; +racla racler ver 1.36 12.50 0.00 1.89 ind:pas:3s; +raclages raclage nom m p 0.00 0.07 0.00 0.07 +raclaient racler ver 1.36 12.50 0.00 0.54 ind:imp:3p; +raclais racler ver 1.36 12.50 0.01 0.20 ind:imp:1s; +raclait racler ver 1.36 12.50 0.04 2.09 ind:imp:3s; +raclant racler ver 1.36 12.50 0.06 1.49 par:pre; +raclante raclant adj f s 0.00 0.27 0.00 0.07 +racle racler ver 1.36 12.50 0.26 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raclement raclement nom m s 0.07 2.09 0.07 1.15 +raclements raclement nom m p 0.07 2.09 0.00 0.95 +raclent racler ver 1.36 12.50 0.02 0.61 ind:pre:3p; +racler racler ver 1.36 12.50 0.51 2.03 inf; +raclerai racler ver 1.36 12.50 0.01 0.00 ind:fut:1s; +racleras racler ver 1.36 12.50 0.01 0.00 ind:fut:2s; +racles racler ver 1.36 12.50 0.01 0.07 ind:pre:2s; +raclette raclette nom f s 1.13 0.81 1.13 0.81 +racleur racleur nom m s 0.04 0.00 0.03 0.00 +racleuse racleur nom f s 0.04 0.00 0.01 0.00 +racloir racloir nom m s 0.25 0.07 0.25 0.07 +raclons raclon nom m p 0.01 0.07 0.01 0.07 +raclèrent racler ver 1.36 12.50 0.00 0.20 ind:pas:3p; +raclé racler ver m s 1.36 12.50 0.43 0.95 par:pas; +raclée raclée nom f s 6.88 3.24 6.43 2.57 +raclées raclée nom f p 6.88 3.24 0.45 0.68 +raclure raclure nom f s 1.73 1.49 1.48 0.88 +raclures raclure nom f p 1.73 1.49 0.25 0.61 +raclés racler ver m p 1.36 12.50 0.00 0.20 par:pas; +racolage racolage nom m s 0.57 0.61 0.57 0.54 +racolages racolage nom m p 0.57 0.61 0.00 0.07 +racolaient racoler ver 0.59 1.42 0.00 0.07 ind:imp:3p; +racolais racoler ver 0.59 1.42 0.00 0.07 ind:imp:1s; +racolait racoler ver 0.59 1.42 0.07 0.20 ind:imp:3s; +racolant racoler ver 0.59 1.42 0.01 0.07 par:pre; +racole racoler ver 0.59 1.42 0.12 0.14 ind:pre:1s;ind:pre:3s; +racolent racoler ver 0.59 1.42 0.02 0.14 ind:pre:3p; +racoler racoler ver 0.59 1.42 0.16 0.54 inf; +racoles racoler ver 0.59 1.42 0.06 0.07 ind:pre:2s; +racoleur racoleur adj m s 0.33 0.41 0.15 0.20 +racoleurs racoleur nom m p 0.09 0.14 0.03 0.07 +racoleuse racoleur adj f s 0.33 0.41 0.05 0.07 +racoleuses racoleur adj f p 0.33 0.41 0.12 0.14 +racolé racoler ver m s 0.59 1.42 0.16 0.14 par:pas; +raconta raconter ver 253.84 261.89 1.08 18.04 ind:pas:3s; +racontable racontable adj f s 0.12 0.20 0.10 0.14 +racontables racontable adj f p 0.12 0.20 0.02 0.07 +racontai raconter ver 253.84 261.89 0.26 3.11 ind:pas:1s; +racontaient raconter ver 253.84 261.89 1.05 4.05 ind:imp:3p; +racontais raconter ver 253.84 261.89 2.41 5.00 ind:imp:1s;ind:imp:2s; +racontait raconter ver 253.84 261.89 4.50 29.46 ind:imp:3s; +racontant raconter ver 253.84 261.89 0.93 6.15 par:pre; +racontar racontar nom m s 1.11 2.23 0.02 0.47 +racontars racontar nom m p 1.11 2.23 1.08 1.76 +racontas raconter ver 253.84 261.89 0.00 0.07 ind:pas:2s; +raconte raconter ver 253.84 261.89 78.06 54.12 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +racontent raconter ver 253.84 261.89 4.32 6.35 ind:pre:3p;sub:pre:3p; +raconter raconter ver 253.84 261.89 57.79 64.86 inf;; +racontera raconter ver 253.84 261.89 2.02 1.82 ind:fut:3s; +raconterai raconter ver 253.84 261.89 6.80 5.07 ind:fut:1s; +raconteraient raconter ver 253.84 261.89 0.03 0.20 cnd:pre:3p; +raconterais raconter ver 253.84 261.89 0.63 0.54 cnd:pre:1s;cnd:pre:2s; +raconterait raconter ver 253.84 261.89 0.08 2.09 cnd:pre:3s; +raconteras raconter ver 253.84 261.89 3.19 1.28 ind:fut:2s; +raconterez raconter ver 253.84 261.89 0.96 0.95 ind:fut:2p; +raconterons raconter ver 253.84 261.89 0.14 0.14 ind:fut:1p; +raconteront raconter ver 253.84 261.89 0.13 0.07 ind:fut:3p; +racontes raconter ver 253.84 261.89 34.95 7.23 ind:pre:1p;ind:pre:2s;sub:pre:2s; +raconteur raconteur nom m s 0.18 0.14 0.17 0.00 +raconteuse raconteur nom f s 0.18 0.14 0.01 0.14 +racontez raconter ver 253.84 261.89 17.02 5.74 imp:pre:2p;ind:pre:2p; +racontiez raconter ver 253.84 261.89 0.45 0.61 ind:imp:2p; +racontions raconter ver 253.84 261.89 0.04 0.47 ind:imp:1p; +racontons raconter ver 253.84 261.89 0.47 0.27 imp:pre:1p;ind:pre:1p; +racontât raconter ver 253.84 261.89 0.00 0.07 sub:imp:3s; +racontèrent raconter ver 253.84 261.89 0.03 1.22 ind:pas:3p; +raconté raconter ver m s 253.84 261.89 33.87 38.18 par:pas; +racontée raconter ver f s 253.84 261.89 1.93 2.91 par:pas; +racontées raconter ver f p 253.84 261.89 0.49 1.22 par:pas; +racontés raconter ver m p 253.84 261.89 0.24 0.61 par:pas; +racorni racornir ver m s 0.59 3.45 0.40 1.15 par:pas; +racornie racornir ver f s 0.59 3.45 0.02 0.95 par:pas; +racornies racornir ver f p 0.59 3.45 0.00 0.54 par:pas; +racornir racornir ver 0.59 3.45 0.02 0.07 inf; +racornis racornir ver m p 0.59 3.45 0.00 0.41 par:pas; +racornissait racornir ver 0.59 3.45 0.00 0.14 ind:imp:3s; +racornissent racornir ver 0.59 3.45 0.14 0.07 ind:pre:3p; +racornit racornir ver 0.59 3.45 0.01 0.14 ind:pre:3s;ind:pas:3s; +racé racé adj m s 0.07 1.69 0.03 0.81 +racée racé adj f s 0.07 1.69 0.01 0.68 +racés racé adj m p 0.07 1.69 0.03 0.20 +rad rad nom m s 0.20 0.07 0.18 0.07 +radôme radôme nom m s 0.01 0.00 0.01 0.00 +rada rader ver 0.47 0.61 0.02 0.00 ind:pas:3s; +radada radada nom m s 0.00 0.07 0.00 0.07 +radar radar nom m s 10.36 2.70 8.05 1.96 +radars radar nom m p 10.36 2.70 2.31 0.74 +radasse rader ver 0.47 0.61 0.30 0.54 sub:imp:1s; +radasses rader ver 0.47 0.61 0.01 0.07 sub:imp:2s; +rade rade nom f s 2.33 10.88 2.18 9.26 +radeau_radar radeau_radar nom m s 0.00 0.07 0.00 0.07 +radeau radeau nom m s 3.27 5.20 2.97 4.32 +radeaux radeau nom m p 3.27 5.20 0.30 0.88 +rader rader ver 0.47 0.61 0.14 0.00 inf; +rades rade nom f p 2.33 10.88 0.16 1.62 +radeuse radeuse nom f s 0.00 0.34 0.00 0.27 +radeuses radeuse nom f p 0.00 0.34 0.00 0.07 +radial radial adj m s 0.34 0.34 0.12 0.00 +radiale radial adj f s 0.34 0.34 0.19 0.27 +radiales radial adj f p 0.34 0.34 0.01 0.07 +radiant radiant nom m s 0.02 0.00 0.02 0.00 +radiante radiant adj f s 0.02 0.14 0.01 0.07 +radiateur radiateur nom m s 3.65 7.43 3.02 6.35 +radiateurs radiateur nom m p 3.65 7.43 0.63 1.08 +radiation radiation nom f s 6.89 0.74 2.71 0.34 +radiations radiation nom f p 6.89 0.74 4.17 0.41 +radiative radiatif adj f s 0.01 0.00 0.01 0.00 +radiaux radial adj m p 0.34 0.34 0.02 0.00 +radical_socialisme radical_socialisme nom m s 0.00 0.27 0.00 0.27 +radical_socialiste radical_socialiste adj m s 0.00 0.34 0.00 0.34 +radical radical adj m s 6.25 8.11 2.96 3.51 +radicale_socialiste radicale_socialiste nom f s 0.00 0.20 0.00 0.20 +radicale radical adj f s 6.25 8.11 1.75 2.57 +radicalement radicalement adv 0.99 3.65 0.99 3.65 +radicales radical adj f p 6.25 8.11 0.33 0.27 +radicalisation radicalisation nom f s 0.10 0.14 0.10 0.14 +radicaliser radicaliser ver 0.02 0.00 0.01 0.00 inf; +radicalisme radicalisme nom m s 0.02 0.47 0.02 0.47 +radicalisé radicaliser ver m s 0.02 0.00 0.01 0.00 par:pas; +radical_socialiste radical_socialiste nom m p 0.00 0.34 0.00 0.27 +radicaux radical adj m p 6.25 8.11 1.22 1.76 +radicelles radicelle nom f p 0.00 0.74 0.00 0.74 +radiculaire radiculaire adj s 0.16 0.07 0.16 0.07 +radicule radicule nom f s 0.01 0.07 0.01 0.00 +radicules radicule nom f p 0.01 0.07 0.00 0.07 +radier radier ver 1.33 0.27 0.20 0.07 inf; +radiers radier nom m p 0.03 0.14 0.00 0.14 +radiesthésiste radiesthésiste nom s 0.14 0.00 0.14 0.00 +radieuse radieux adj f s 3.88 12.09 1.47 4.39 +radieusement radieusement adv 0.01 0.20 0.01 0.20 +radieuses radieux adj f p 3.88 12.09 0.22 1.15 +radieux radieux adj m 3.88 12.09 2.19 6.55 +radin radin adj m s 3.51 1.55 2.69 1.28 +radinait radiner ver 0.29 2.03 0.00 0.20 ind:imp:3s; +radine radin adj f s 3.51 1.55 0.50 0.20 +radinent radiner ver 0.29 2.03 0.01 0.47 ind:pre:3p; +radiner radiner ver 0.29 2.03 0.09 0.20 inf; +radinerie radinerie nom f s 0.02 0.07 0.02 0.07 +radines radin nom f p 1.10 0.34 0.10 0.00 +radinez radiner ver 0.29 2.03 0.00 0.07 imp:pre:2p; +radins radin adj m p 3.51 1.55 0.31 0.07 +radiné radiner ver m s 0.29 2.03 0.14 0.41 par:pas; +radinée radiner ver f s 0.29 2.03 0.02 0.07 par:pas; +radio_isotope radio_isotope nom m s 0.04 0.00 0.04 0.00 +radio_réveil radio_réveil nom m s 0.10 0.14 0.10 0.14 +radio_taxi radio_taxi nom m s 0.14 0.07 0.14 0.07 +radio radio nom s 78.23 55.00 71.31 50.54 +radioactif radioactif adj m s 2.65 0.68 1.11 0.47 +radioactifs radioactif adj m p 2.65 0.68 0.54 0.07 +radioactive radioactif adj f s 2.65 0.68 0.65 0.07 +radioactives radioactif adj f p 2.65 0.68 0.35 0.07 +radioactivité radioactivité nom f s 0.86 0.07 0.86 0.07 +radioamateur radioamateur nom m s 0.01 0.00 0.01 0.00 +radioastronome radioastronome nom s 0.01 0.00 0.01 0.00 +radiobalisage radiobalisage nom m s 0.01 0.00 0.01 0.00 +radiobalise radiobalise nom f s 0.07 0.00 0.07 0.00 +radiocassette radiocassette nom f s 0.02 0.00 0.02 0.00 +radiodiffusion radiodiffusion nom f s 0.01 0.14 0.01 0.14 +radiodiffusé radiodiffuser ver m s 0.03 0.68 0.03 0.47 par:pas; +radiodiffusée radiodiffuser ver f s 0.03 0.68 0.00 0.14 par:pas; +radiodiffusées radiodiffuser ver f p 0.03 0.68 0.00 0.07 par:pas; +radiogoniomètre radiogoniomètre nom m s 0.01 0.00 0.01 0.00 +radiogoniométrique radiogoniométrique adj s 0.10 0.00 0.10 0.00 +radiogramme radiogramme nom m s 0.11 0.07 0.11 0.00 +radiogrammes radiogramme nom m p 0.11 0.07 0.00 0.07 +radiographiant radiographier ver 0.10 0.34 0.00 0.07 par:pre; +radiographie radiographie nom f s 0.93 0.88 0.79 0.34 +radiographient radiographier ver 0.10 0.34 0.00 0.07 ind:pre:3p; +radiographier radiographier ver 0.10 0.34 0.04 0.07 inf; +radiographies radiographie nom f p 0.93 0.88 0.14 0.54 +radiographique radiographique adj f s 0.01 0.00 0.01 0.00 +radiographié radiographier ver m s 0.10 0.34 0.03 0.07 par:pas; +radiographiée radiographier ver f s 0.10 0.34 0.01 0.00 par:pas; +radiographiés radiographier ver m p 0.10 0.34 0.00 0.07 par:pas; +radioguidage radioguidage nom m s 0.02 0.07 0.02 0.07 +radioguidera radioguider ver 0.01 0.00 0.01 0.00 ind:fut:3s; +radiologie radiologie nom f s 1.16 0.07 1.16 0.07 +radiologique radiologique adj f s 0.09 0.07 0.09 0.00 +radiologiques radiologique adj f p 0.09 0.07 0.00 0.07 +radiologiste radiologiste nom s 0.05 0.00 0.05 0.00 +radiologue radiologue nom s 0.55 0.27 0.51 0.20 +radiologues radiologue nom p 0.55 0.27 0.04 0.07 +radiomètre radiomètre nom m s 0.01 0.07 0.01 0.00 +radiomètres radiomètre nom m p 0.01 0.07 0.00 0.07 +radiométrie radiométrie nom f s 0.01 0.00 0.01 0.00 +radiophare radiophare nom m s 0.01 0.07 0.01 0.07 +radiophonie radiophonie nom f s 0.00 0.27 0.00 0.27 +radiophonique radiophonique adj s 0.78 1.49 0.76 0.68 +radiophoniques radiophonique adj p 0.78 1.49 0.02 0.81 +radioréveil radioréveil nom m s 0.01 0.00 0.01 0.00 +radios radio nom p 78.23 55.00 6.92 4.46 +radioscopie radioscopie nom f s 0.03 0.14 0.03 0.14 +radioscopique radioscopique adj f s 0.01 0.07 0.01 0.00 +radioscopiques radioscopique adj p 0.01 0.07 0.00 0.07 +radiosonde radiosonde nom f s 0.01 0.00 0.01 0.00 +radiothérapie radiothérapie nom f s 0.21 0.00 0.21 0.00 +radiotélescope radiotélescope nom m s 0.10 0.00 0.09 0.00 +radiotélescopes radiotélescope nom m p 0.10 0.00 0.01 0.00 +radiotélégraphie radiotélégraphie nom f s 0.00 0.07 0.00 0.07 +radiotélégraphiste radiotélégraphiste nom s 0.00 0.14 0.00 0.14 +radiotéléphone radiotéléphone nom m s 0.03 0.00 0.02 0.00 +radiotéléphones radiotéléphone nom m p 0.03 0.00 0.01 0.00 +radiotéléphonie radiotéléphonie nom f s 0.10 0.00 0.10 0.00 +radiotéléphonique radiotéléphonique adj s 0.01 0.00 0.01 0.00 +radioélectrique radioélectrique adj s 0.01 0.00 0.01 0.00 +radioélément radioélément nom m s 0.01 0.00 0.01 0.00 +radis radis nom m 1.81 3.11 1.81 3.11 +radié radier ver m s 1.33 0.27 0.98 0.14 par:pas; +radiée radier ver f s 1.33 0.27 0.09 0.07 par:pas; +radium radium nom m s 0.32 0.07 0.32 0.07 +radiés radié adj m p 0.18 0.07 0.14 0.00 +radius radius nom m 0.15 0.07 0.15 0.07 +radja radja nom m s 0.00 0.07 0.00 0.07 +radjah radjah nom m s 0.00 0.14 0.00 0.07 +radjahs radjah nom m p 0.00 0.14 0.00 0.07 +radon radon nom m s 0.07 0.00 0.07 0.00 +radotage radotage nom m s 0.36 0.81 0.28 0.34 +radotages radotage nom m p 0.36 0.81 0.09 0.47 +radotait radoter ver 2.04 2.30 0.00 0.41 ind:imp:3s; +radotant radoter ver 2.04 2.30 0.03 0.27 par:pre; +radote radoter ver 2.04 2.30 0.69 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +radotent radoter ver 2.04 2.30 0.04 0.34 ind:pre:3p; +radoter radoter ver 2.04 2.30 0.59 0.41 inf; +radotes radoter ver 2.04 2.30 0.60 0.07 ind:pre:2s; +radoteur radoteur nom m s 0.22 0.27 0.21 0.07 +radoteurs radoteur nom m p 0.22 0.27 0.01 0.07 +radoteuses radoteur nom f p 0.22 0.27 0.00 0.14 +radotez radoter ver 2.04 2.30 0.10 0.00 ind:pre:2p; +radoté radoter ver m s 2.04 2.30 0.00 0.14 par:pas; +radoub radoub nom m s 0.03 0.41 0.03 0.41 +radoubait radouber ver 0.11 0.14 0.00 0.07 ind:imp:3s; +radouber radouber ver 0.11 0.14 0.11 0.07 inf; +radoubeur radoubeur nom m s 0.00 0.07 0.00 0.07 +radouci radoucir ver m s 0.29 2.09 0.12 0.54 par:pas; +radoucie radoucir ver f s 0.29 2.09 0.03 0.61 par:pas; +radoucir radoucir ver 0.29 2.09 0.07 0.00 inf; +radouciraient radoucir ver 0.29 2.09 0.00 0.07 cnd:pre:3p; +radoucis radoucir ver m p 0.29 2.09 0.04 0.14 ind:pre:1s;ind:pre:2s;par:pas; +radoucissais radoucir ver 0.29 2.09 0.00 0.07 ind:imp:1s; +radoucissait radoucir ver 0.29 2.09 0.00 0.07 ind:imp:3s; +radoucissement radoucissement nom m s 0.00 0.07 0.00 0.07 +radoucit radoucir ver 0.29 2.09 0.03 0.61 ind:pre:3s;ind:pas:3s; +rads rad nom m p 0.20 0.07 0.02 0.00 +rafa rafer ver 2.44 0.00 2.11 0.00 ind:pas:3s; +rafale rafale nom f s 1.59 19.46 0.79 8.85 +rafales rafale nom f p 1.59 19.46 0.81 10.61 +rafe rafer ver 2.44 0.00 0.33 0.00 imp:pre:2s; +raff raff nom m s 0.09 0.00 0.09 0.00 +raffermi raffermir ver m s 0.23 1.82 0.01 0.14 par:pas; +raffermie raffermir ver f s 0.23 1.82 0.01 0.27 par:pas; +raffermir raffermir ver 0.23 1.82 0.18 0.68 inf; +raffermira raffermir ver 0.23 1.82 0.03 0.00 ind:fut:3s; +raffermis raffermir ver m p 0.23 1.82 0.00 0.07 par:pas; +raffermissait raffermir ver 0.23 1.82 0.00 0.20 ind:imp:3s; +raffermissent raffermir ver 0.23 1.82 0.00 0.07 ind:pre:3p; +raffermit raffermir ver 0.23 1.82 0.00 0.41 ind:pre:3s;ind:pas:3s; +raffinage raffinage nom m s 0.01 0.07 0.01 0.07 +raffinait raffiner ver 1.06 2.03 0.00 0.14 ind:imp:3s; +raffinant raffiner ver 1.06 2.03 0.00 0.20 par:pre; +raffine raffiner ver 1.06 2.03 0.05 0.20 imp:pre:2s;ind:pre:3s; +raffinement raffinement nom m s 0.89 7.36 0.73 5.07 +raffinements raffinement nom m p 0.89 7.36 0.16 2.30 +raffiner raffiner ver 1.06 2.03 0.06 0.20 inf; +raffinerie raffinerie nom f s 0.85 1.01 0.73 0.88 +raffineries raffinerie nom f p 0.85 1.01 0.12 0.14 +raffineur raffineur nom m s 0.03 0.00 0.03 0.00 +raffiné raffiné adj m s 4.34 6.15 1.80 2.70 +raffinée raffiné adj f s 4.34 6.15 1.23 1.55 +raffinées raffiné adj f p 4.34 6.15 0.33 0.61 +raffinés raffiné adj m p 4.34 6.15 0.97 1.28 +raffolaient raffoler ver 3.16 3.85 0.01 0.14 ind:imp:3p; +raffolais raffoler ver 3.16 3.85 0.02 0.20 ind:imp:1s; +raffolait raffoler ver 3.16 3.85 0.19 1.62 ind:imp:3s; +raffolant raffoler ver 3.16 3.85 0.01 0.00 par:pre; +raffole raffoler ver 3.16 3.85 1.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raffolent raffoler ver 3.16 3.85 0.94 0.68 ind:pre:3p; +raffoler raffoler ver 3.16 3.85 0.05 0.27 inf; +raffoleront raffoler ver 3.16 3.85 0.01 0.07 ind:fut:3p; +raffoles raffoler ver 3.16 3.85 0.23 0.07 ind:pre:2s; +raffolez raffoler ver 3.16 3.85 0.04 0.00 ind:pre:2p; +raffoliez raffoler ver 3.16 3.85 0.00 0.07 ind:imp:2p; +raffolé raffoler ver m s 3.16 3.85 0.02 0.00 par:pas; +raffut raffut nom m s 1.56 1.69 1.56 1.49 +raffuts raffut nom m p 1.56 1.69 0.01 0.20 +rafiau rafiau nom m s 0.00 0.07 0.00 0.07 +rafiot rafiot nom m s 1.08 1.42 0.91 1.22 +rafiots rafiot nom m p 1.08 1.42 0.17 0.20 +rafistola rafistoler ver 0.61 3.31 0.00 0.20 ind:pas:3s; +rafistolage rafistolage nom m s 0.05 0.27 0.04 0.14 +rafistolages rafistolage nom m p 0.05 0.27 0.01 0.14 +rafistolaient rafistoler ver 0.61 3.31 0.00 0.27 ind:imp:3p; +rafistolais rafistoler ver 0.61 3.31 0.01 0.07 ind:imp:1s; +rafistolait rafistoler ver 0.61 3.31 0.01 0.27 ind:imp:3s; +rafistole rafistoler ver 0.61 3.31 0.19 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rafistoler rafistoler ver 0.61 3.31 0.12 0.34 inf; +rafistolez rafistoler ver 0.61 3.31 0.05 0.00 imp:pre:2p;ind:pre:2p; +rafistolé rafistoler ver m s 0.61 3.31 0.13 0.74 par:pas; +rafistolée rafistoler ver f s 0.61 3.31 0.04 0.54 par:pas; +rafistolées rafistoler ver f p 0.61 3.31 0.04 0.20 par:pas; +rafistolés rafistoler ver m p 0.61 3.31 0.01 0.41 par:pas; +rafla rafler ver 3.56 5.20 0.01 0.41 ind:pas:3s; +raflais rafler ver 3.56 5.20 0.01 0.14 ind:imp:1s; +raflait rafler ver 3.56 5.20 0.05 0.27 ind:imp:3s; +raflant rafler ver 3.56 5.20 0.01 0.20 par:pre; +rafle rafle nom f s 1.23 3.11 0.78 1.96 +raflent rafler ver 3.56 5.20 0.41 0.07 ind:pre:3p; +rafler rafler ver 3.56 5.20 0.81 1.42 inf; +raflera rafler ver 3.56 5.20 0.06 0.07 ind:fut:3s; +raflerai rafler ver 3.56 5.20 0.02 0.00 ind:fut:1s; +raflerait rafler ver 3.56 5.20 0.02 0.07 cnd:pre:3s; +rafles rafle nom f p 1.23 3.11 0.46 1.15 +raflez rafler ver 3.56 5.20 0.04 0.00 imp:pre:2p;ind:pre:2p; +raflé rafler ver m s 3.56 5.20 1.09 1.49 par:pas; +raflée rafler ver f s 3.56 5.20 0.16 0.07 par:pas; +raflées rafler ver f p 3.56 5.20 0.03 0.14 par:pas; +raflés rafler ver m p 3.56 5.20 0.00 0.27 par:pas; +rafraîchi rafraîchir ver m s 8.94 10.41 0.44 1.01 par:pas; +rafraîchie rafraîchir ver f s 8.94 10.41 0.04 0.47 par:pas; +rafraîchies rafraîchir ver f p 8.94 10.41 0.00 0.27 par:pas; +rafraîchir rafraîchir ver 8.94 10.41 4.61 4.19 inf; +rafraîchira rafraîchir ver 8.94 10.41 0.25 0.14 ind:fut:3s; +rafraîchirais rafraîchir ver 8.94 10.41 0.01 0.00 cnd:pre:1s; +rafraîchirait rafraîchir ver 8.94 10.41 0.06 0.07 cnd:pre:3s; +rafraîchirent rafraîchir ver 8.94 10.41 0.00 0.07 ind:pas:3p; +rafraîchiront rafraîchir ver 8.94 10.41 0.04 0.00 ind:fut:3p; +rafraîchis rafraîchir ver m p 8.94 10.41 0.90 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rafraîchissaient rafraîchir ver 8.94 10.41 0.00 0.34 ind:imp:3p; +rafraîchissais rafraîchir ver 8.94 10.41 0.14 0.14 ind:imp:1s;ind:imp:2s; +rafraîchissait rafraîchir ver 8.94 10.41 0.02 1.08 ind:imp:3s; +rafraîchissant rafraîchissant adj m s 0.72 2.16 0.50 1.08 +rafraîchissante rafraîchissant adj f s 0.72 2.16 0.16 0.47 +rafraîchissantes rafraîchissant adj f p 0.72 2.16 0.03 0.34 +rafraîchissants rafraîchissant adj m p 0.72 2.16 0.02 0.27 +rafraîchisse rafraîchir ver 8.94 10.41 0.49 0.14 sub:pre:1s;sub:pre:3s; +rafraîchissement rafraîchissement nom m s 2.48 1.62 1.39 0.54 +rafraîchissements rafraîchissement nom m p 2.48 1.62 1.09 1.08 +rafraîchissent rafraîchir ver 8.94 10.41 0.01 0.14 ind:pre:3p; +rafraîchisseur rafraîchisseur nom m s 0.00 0.07 0.00 0.07 +rafraîchissez rafraîchir ver 8.94 10.41 0.19 0.00 imp:pre:2p;ind:pre:2p; +rafraîchissoir rafraîchissoir nom m s 0.00 1.28 0.00 1.01 +rafraîchissoirs rafraîchissoir nom m p 0.00 1.28 0.00 0.27 +rafraîchissons rafraîchir ver 8.94 10.41 0.12 0.00 imp:pre:1p; +rafraîchit rafraîchir ver 8.94 10.41 1.50 1.35 ind:pre:3s;ind:pas:3s; +raft raft nom m s 0.10 0.07 0.10 0.07 +rafting rafting nom m s 0.22 0.00 0.22 0.00 +rag rag nom m s 0.01 0.00 0.01 0.00 +raga raga nom m s 0.10 0.00 0.10 0.00 +ragaillardi ragaillardir ver m s 0.06 2.57 0.01 1.35 par:pas; +ragaillardie ragaillardir ver f s 0.06 2.57 0.00 0.27 par:pas; +ragaillardir ragaillardir ver 0.06 2.57 0.02 0.07 inf; +ragaillardira ragaillardir ver 0.06 2.57 0.00 0.07 ind:fut:3s; +ragaillardirait ragaillardir ver 0.06 2.57 0.00 0.07 cnd:pre:3s; +ragaillardis ragaillardir ver m p 0.06 2.57 0.02 0.20 ind:pas:2s;par:pas; +ragaillardissaient ragaillardir ver 0.06 2.57 0.00 0.07 ind:imp:3p; +ragaillardisse ragaillardir ver 0.06 2.57 0.00 0.07 sub:pre:1s; +ragaillardit ragaillardir ver 0.06 2.57 0.00 0.41 ind:pre:3s;ind:pas:3s; +rage rage nom f s 15.97 45.34 15.54 44.12 +ragea rager ver 0.71 2.64 0.00 0.81 ind:pas:3s; +rageaient rager ver 0.71 2.64 0.00 0.14 ind:imp:3p; +rageais rager ver 0.71 2.64 0.01 0.20 ind:imp:1s; +rageait rager ver 0.71 2.64 0.02 0.54 ind:imp:3s; +rageant rageant adj m s 0.25 0.20 0.25 0.20 +ragent rager ver 0.71 2.64 0.02 0.00 ind:pre:3p; +rager rager ver 0.71 2.64 0.09 0.27 inf; +rages rage nom f p 15.97 45.34 0.44 1.22 +rageur rageur adj m s 0.07 9.26 0.05 4.46 +rageurs rageur adj m p 0.07 9.26 0.01 1.62 +rageuse rageur adj f s 0.07 9.26 0.01 2.57 +rageusement rageusement adv 0.03 5.61 0.03 5.61 +rageuses rageur adj f p 0.07 9.26 0.00 0.61 +ragez rager ver 0.71 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +raglan raglan nom m s 0.00 0.54 0.00 0.47 +raglans raglan nom m p 0.00 0.54 0.00 0.07 +ragnagnas ragnagnas nom m p 0.21 0.07 0.21 0.07 +ragoût ragoût nom m s 3.44 4.46 3.37 3.65 +ragoûtant ragoûtant adj m s 0.08 1.22 0.04 0.61 +ragoûtante ragoûtant adj f s 0.08 1.22 0.01 0.14 +ragoûtantes ragoûtant adj f p 0.08 1.22 0.01 0.20 +ragoûtants ragoûtant adj m p 0.08 1.22 0.01 0.27 +ragoûts ragoût nom m p 3.44 4.46 0.07 0.81 +ragondins ragondin nom m p 0.28 0.14 0.28 0.14 +ragot ragot nom m s 5.67 4.32 0.07 0.54 +ragota ragoter ver 0.04 0.27 0.00 0.07 ind:pas:3s; +ragotait ragoter ver 0.04 0.27 0.00 0.07 ind:imp:3s; +ragote ragoter ver 0.04 0.27 0.01 0.00 ind:pre:3s; +ragoter ragoter ver 0.04 0.27 0.03 0.14 inf; +ragots ragot nom m p 5.67 4.32 5.60 3.78 +ragougnasse ragougnasse nom f s 0.23 0.14 0.23 0.07 +ragougnasses ragougnasse nom f p 0.23 0.14 0.00 0.07 +ragrafait ragrafer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +ragrafant ragrafer ver 0.00 0.20 0.00 0.07 par:pre; +ragrafe ragrafer ver 0.00 0.20 0.00 0.07 ind:pre:1s; +ragtime ragtime nom m s 0.13 0.00 0.13 0.00 +rahat_lokoum rahat_lokoum nom m s 0.00 0.47 0.00 0.41 +rahat_lokoum rahat_lokoum nom m p 0.00 0.47 0.00 0.07 +rahat_loukoum rahat_loukoum nom m p 0.00 0.07 0.00 0.07 +rai rai nom m s 2.50 5.41 1.57 3.31 +raid raid nom m s 3.98 2.84 2.82 1.62 +raide raide adj s 7.76 39.39 6.61 24.53 +raidement raidement adv 0.00 0.14 0.00 0.14 +raider raider nom m s 1.57 0.41 0.90 0.00 +raiders raider nom m p 1.57 0.41 0.67 0.41 +raides raide adj p 7.76 39.39 1.15 14.86 +raideur raideur nom f s 0.62 7.03 0.62 7.03 +raidi raidir ver m s 0.57 19.59 0.03 3.04 par:pas; +raidie raidir ver f s 0.57 19.59 0.00 2.09 par:pas; +raidies raidir ver f p 0.57 19.59 0.01 1.49 par:pas; +raidillon raidillon nom m s 0.00 4.12 0.00 3.31 +raidillons raidillon nom m p 0.00 4.12 0.00 0.81 +raidir raidir ver 0.57 19.59 0.17 1.55 inf; +raidirent raidir ver 0.57 19.59 0.00 0.20 ind:pas:3p; +raidis raidir ver m p 0.57 19.59 0.03 2.23 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +raidissaient raidir ver 0.57 19.59 0.00 0.27 ind:imp:3p; +raidissais raidir ver 0.57 19.59 0.00 0.20 ind:imp:1s; +raidissait raidir ver 0.57 19.59 0.00 1.49 ind:imp:3s; +raidissant raidir ver 0.57 19.59 0.00 0.68 par:pre; +raidisse raidir ver 0.57 19.59 0.01 0.34 sub:pre:1s;sub:pre:3s; +raidissement raidissement nom m s 0.00 0.61 0.00 0.47 +raidissements raidissement nom m p 0.00 0.61 0.00 0.14 +raidissent raidir ver 0.57 19.59 0.04 0.41 ind:pre:3p; +raidissez raidir ver 0.57 19.59 0.02 0.07 imp:pre:2p;ind:pre:2p; +raidit raidir ver 0.57 19.59 0.27 5.54 ind:pre:3s;ind:pas:3s; +raids raid nom m p 3.98 2.84 1.16 1.22 +raie raie nom f s 2.49 11.01 1.71 7.50 +raient rayer ver 7.42 11.22 0.00 0.27 ind:pre:3p; +raies raie nom f p 2.49 11.01 0.78 3.51 +raifort raifort nom m s 0.21 0.27 0.21 0.27 +rail rail nom m s 9.31 16.22 1.70 2.50 +railla railler ver 2.77 3.31 0.00 0.61 ind:pas:3s; +raillaient railler ver 2.77 3.31 0.00 0.27 ind:imp:3p; +raillait railler ver 2.77 3.31 0.03 0.20 ind:imp:3s; +raillant railler ver 2.77 3.31 0.34 0.07 par:pre; +raille railler ver 2.77 3.31 0.38 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +railler railler ver 2.77 3.31 0.70 0.88 inf; +raillera railler ver 2.77 3.31 0.01 0.00 ind:fut:3s; +raillerai railler ver 2.77 3.31 0.01 0.00 ind:fut:1s; +raillerie raillerie nom f s 0.90 3.04 0.54 1.15 +railleries raillerie nom f p 0.90 3.04 0.36 1.89 +railleur railleur nom m s 0.17 0.14 0.16 0.07 +railleurs railleur nom m p 0.17 0.14 0.01 0.07 +railleuse railleur adj f s 0.04 1.89 0.01 0.54 +railleuses railleur adj f p 0.04 1.89 0.00 0.07 +raillez railler ver 2.77 3.31 0.47 0.20 imp:pre:2p;ind:pre:2p; +raillèrent railler ver 2.77 3.31 0.00 0.14 ind:pas:3p; +raillé railler ver m s 2.77 3.31 0.81 0.61 par:pas; +raillée railler ver f s 2.77 3.31 0.02 0.00 par:pas; +raillés railler ver m p 2.77 3.31 0.00 0.14 par:pas; +rails rail nom m p 9.31 16.22 7.61 13.72 +railway railway nom m s 0.00 0.07 0.00 0.07 +rain rain nom m s 1.03 0.00 1.03 0.00 +raine rainer ver 0.82 0.27 0.00 0.14 ind:pre:3s; +rainer rainer ver 0.82 0.27 0.00 0.07 inf; +raines rainer ver 0.82 0.27 0.82 0.07 ind:pre:2s; +rainette rainette nom f s 0.04 0.88 0.04 0.41 +rainettes rainette nom f p 0.04 0.88 0.00 0.47 +raineuse raineuse nom f s 0.00 0.07 0.00 0.07 +rainure rainure nom f s 0.43 3.51 0.20 1.42 +rainurer rainurer ver 0.01 0.20 0.00 0.07 inf; +rainures rainure nom f p 0.43 3.51 0.23 2.09 +rainuré rainurer ver m s 0.01 0.20 0.01 0.00 par:pas; +rainurés rainurer ver m p 0.01 0.20 0.00 0.14 par:pas; +raiponce raiponce nom f s 0.03 0.00 0.03 0.00 +raire raire ver 0.31 2.09 0.01 0.07 inf; +rais rai nom m p 2.50 5.41 0.93 2.09 +raisin raisin nom m s 9.40 9.53 5.88 4.86 +raisinets raisinet nom m p 0.02 0.00 0.02 0.00 +raisins raisin nom m p 9.40 9.53 3.52 4.66 +raisiné raisiné nom m s 0.01 1.35 0.01 1.35 +raison raison nom f s 467.94 308.78 424.28 247.50 +raisonna raisonner ver 8.72 10.27 0.00 0.47 ind:pas:3s; +raisonnable raisonnable adj s 28.25 23.51 25.04 19.39 +raisonnablement raisonnablement adv 1.03 2.36 1.03 2.36 +raisonnables raisonnable adj p 28.25 23.51 3.21 4.12 +raisonnai raisonner ver 8.72 10.27 0.00 0.07 ind:pas:1s; +raisonnaient raisonner ver 8.72 10.27 0.00 0.14 ind:imp:3p; +raisonnais raisonner ver 8.72 10.27 0.07 0.47 ind:imp:1s; +raisonnait raisonner ver 8.72 10.27 0.01 0.81 ind:imp:3s; +raisonnant raisonner ver 8.72 10.27 0.16 0.20 par:pre; +raisonnante raisonnant adj f s 0.00 0.07 0.00 0.07 +raisonnassent raisonner ver 8.72 10.27 0.00 0.07 sub:imp:3p; +raisonne raisonner ver 8.72 10.27 1.50 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raisonnement raisonnement nom m s 4.16 11.35 3.69 7.91 +raisonnements raisonnement nom m p 4.16 11.35 0.47 3.45 +raisonnent raisonner ver 8.72 10.27 0.31 0.20 ind:pre:3p; +raisonner raisonner ver 8.72 10.27 4.66 5.27 inf; +raisonnes raisonner ver 8.72 10.27 0.35 0.27 ind:pre:2s; +raisonneur raisonneur nom m s 0.17 0.34 0.17 0.07 +raisonneurs raisonneur nom m p 0.17 0.34 0.00 0.20 +raisonneuse raisonneur adj f s 0.00 0.54 0.00 0.14 +raisonnez raisonner ver 8.72 10.27 0.77 0.14 imp:pre:2p;ind:pre:2p; +raisonniez raisonner ver 8.72 10.27 0.00 0.14 ind:imp:2p; +raisonnons raisonner ver 8.72 10.27 0.47 0.20 imp:pre:1p;ind:pre:1p; +raisonné raisonné adj m s 0.51 0.68 0.50 0.27 +raisonnée raisonner ver f s 8.72 10.27 0.02 0.14 par:pas; +raisons raison nom f p 467.94 308.78 43.67 61.28 +rait raire ver m s 0.31 2.09 0.29 2.03 ind:pre:3s;par:pas; +raites raire ver f p 0.31 2.09 0.01 0.00 par:pas; +raja raja nom m s 0.03 0.00 0.03 0.00 +rajah rajah nom m s 0.06 0.20 0.04 0.07 +rajahs rajah nom m p 0.06 0.20 0.01 0.14 +rajeuni rajeunir ver m s 5.20 7.91 1.10 2.16 par:pas; +rajeunie rajeunir ver f s 5.20 7.91 0.20 0.88 par:pas; +rajeunies rajeunir ver f p 5.20 7.91 0.00 0.07 par:pas; +rajeunir rajeunir ver 5.20 7.91 1.26 0.88 inf; +rajeunira rajeunir ver 5.20 7.91 0.03 0.00 ind:fut:3s; +rajeunirai rajeunir ver 5.20 7.91 0.01 0.00 ind:fut:1s; +rajeunirait rajeunir ver 5.20 7.91 0.02 0.07 cnd:pre:3s; +rajeunirez rajeunir ver 5.20 7.91 0.01 0.07 ind:fut:2p; +rajeunis rajeunir ver m p 5.20 7.91 1.11 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rajeunissaient rajeunir ver 5.20 7.91 0.00 0.14 ind:imp:3p; +rajeunissais rajeunir ver 5.20 7.91 0.01 0.07 ind:imp:1s; +rajeunissait rajeunir ver 5.20 7.91 0.04 1.22 ind:imp:3s; +rajeunissant rajeunissant adj m s 0.04 0.00 0.02 0.00 +rajeunissante rajeunissant adj f s 0.04 0.00 0.02 0.00 +rajeunisse rajeunir ver 5.20 7.91 0.00 0.07 sub:pre:3s; +rajeunissement rajeunissement nom m s 0.26 0.68 0.26 0.68 +rajeunissent rajeunir ver 5.20 7.91 0.03 0.14 ind:pre:3p; +rajeunisseurs rajeunisseur nom m p 0.00 0.07 0.00 0.07 +rajeunissez rajeunir ver 5.20 7.91 0.17 0.00 ind:pre:2p; +rajeunissons rajeunir ver 5.20 7.91 0.00 0.07 ind:pre:1p; +rajeunit rajeunir ver 5.20 7.91 1.20 1.49 ind:pre:3s;ind:pas:3s; +rajout rajout nom m s 0.27 0.20 0.23 0.07 +rajouta rajouter ver 13.09 9.32 0.01 0.54 ind:pas:3s; +rajoutaient rajouter ver 13.09 9.32 0.12 0.14 ind:imp:3p; +rajoutais rajouter ver 13.09 9.32 0.01 0.41 ind:imp:1s;ind:imp:2s; +rajoutait rajouter ver 13.09 9.32 0.05 1.01 ind:imp:3s; +rajoutant rajouter ver 13.09 9.32 0.16 0.20 par:pre; +rajoute rajouter ver 13.09 9.32 4.11 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rajoutent rajouter ver 13.09 9.32 0.19 0.14 ind:pre:3p; +rajouter rajouter ver 13.09 9.32 3.73 2.30 inf; +rajoutera rajouter ver 13.09 9.32 0.15 0.00 ind:fut:3s; +rajouterais rajouter ver 13.09 9.32 0.15 0.07 cnd:pre:1s; +rajouterait rajouter ver 13.09 9.32 0.01 0.07 cnd:pre:3s; +rajouteras rajouter ver 13.09 9.32 0.10 0.07 ind:fut:2s; +rajouterez rajouter ver 13.09 9.32 0.00 0.07 ind:fut:2p; +rajoutes rajouter ver 13.09 9.32 1.04 0.07 ind:pre:2s; +rajoutez rajouter ver 13.09 9.32 0.75 0.20 imp:pre:2p;ind:pre:2p; +rajoutons rajouter ver 13.09 9.32 0.07 0.00 imp:pre:1p; +rajouts rajout nom m p 0.27 0.20 0.04 0.14 +rajouté rajouter ver m s 13.09 9.32 2.13 1.35 par:pas; +rajoutée rajouter ver f s 13.09 9.32 0.12 0.07 par:pas; +rajoutées rajouter ver f p 13.09 9.32 0.01 0.20 par:pas; +rajoutés rajouter ver m p 13.09 9.32 0.15 0.07 par:pas; +rajusta rajuster ver 0.41 6.08 0.00 0.95 ind:pas:3s; +rajustaient rajuster ver 0.41 6.08 0.00 0.20 ind:imp:3p; +rajustais rajuster ver 0.41 6.08 0.00 0.07 ind:imp:1s; +rajustait rajuster ver 0.41 6.08 0.00 0.47 ind:imp:3s; +rajustant rajuster ver 0.41 6.08 0.10 1.15 par:pre; +rajuste rajuster ver 0.41 6.08 0.02 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rajustement rajustement nom m s 0.00 0.20 0.00 0.20 +rajustent rajuster ver 0.41 6.08 0.27 0.14 ind:pre:3p; +rajuster rajuster ver 0.41 6.08 0.02 1.01 inf; +rajusteront rajuster ver 0.41 6.08 0.00 0.07 ind:fut:3p; +rajusté rajuster ver m s 0.41 6.08 0.00 0.54 par:pas; +rajustée rajuster ver f s 0.41 6.08 0.00 0.07 par:pas; +rajustées rajuster ver f p 0.41 6.08 0.00 0.14 par:pas; +raki raki nom m s 0.28 1.15 0.28 1.15 +ralbol ralbol nom m s 0.00 0.20 0.00 0.20 +ralentît ralentir ver 17.42 30.95 0.00 0.07 sub:imp:3s; +ralenti ralenti nom m s 9.20 10.61 3.08 10.20 +ralentie ralentir ver f s 17.42 30.95 0.22 1.49 par:pas; +ralenties ralentir ver f p 17.42 30.95 0.17 0.07 par:pas; +ralentir ralentir ver 17.42 30.95 5.25 5.20 inf; +ralentira ralentir ver 17.42 30.95 0.31 0.20 ind:fut:3s; +ralentirai ralentir ver 17.42 30.95 0.24 0.00 ind:fut:1s; +ralentiraient ralentir ver 17.42 30.95 0.03 0.00 cnd:pre:3p; +ralentirais ralentir ver 17.42 30.95 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +ralentirait ralentir ver 17.42 30.95 0.30 0.20 cnd:pre:3s; +ralentirent ralentir ver 17.42 30.95 0.02 0.61 ind:pas:3p; +ralentirez ralentir ver 17.42 30.95 0.02 0.07 ind:fut:2p; +ralentiriez ralentir ver 17.42 30.95 0.01 0.00 cnd:pre:2p; +ralentiront ralentir ver 17.42 30.95 0.07 0.00 ind:fut:3p; +ralentis ralenti nom m p 9.20 10.61 6.12 0.41 +ralentissaient ralentir ver 17.42 30.95 0.04 1.22 ind:imp:3p; +ralentissais ralentir ver 17.42 30.95 0.17 0.34 ind:imp:1s;ind:imp:2s; +ralentissait ralentir ver 17.42 30.95 0.20 2.23 ind:imp:3s; +ralentissant ralentir ver 17.42 30.95 0.04 1.82 par:pre; +ralentisse ralentir ver 17.42 30.95 0.29 0.34 sub:pre:1s;sub:pre:3s; +ralentissement ralentissement nom m s 0.38 1.89 0.34 1.55 +ralentissements ralentissement nom m p 0.38 1.89 0.03 0.34 +ralentissent ralentir ver 17.42 30.95 0.83 0.68 ind:pre:3p; +ralentisseur ralentisseur nom m s 0.09 0.00 0.04 0.00 +ralentisseurs ralentisseur nom m p 0.09 0.00 0.04 0.00 +ralentissez ralentir ver 17.42 30.95 1.94 0.14 imp:pre:2p;ind:pre:2p; +ralentissiez ralentir ver 17.42 30.95 0.04 0.00 ind:imp:2p; +ralentissions ralentir ver 17.42 30.95 0.02 0.00 ind:imp:1p; +ralentissons ralentir ver 17.42 30.95 0.27 0.07 imp:pre:1p;ind:pre:1p; +ralentit ralentir ver 17.42 30.95 3.23 10.68 ind:pre:3s;ind:pas:3s; +ralingue ralingue nom f s 0.00 0.14 0.00 0.07 +ralingues ralingue nom f p 0.00 0.14 0.00 0.07 +raller raller ver 0.01 0.27 0.01 0.07 inf; +rallia rallier ver 2.35 13.78 0.10 0.41 ind:pas:3s; +ralliai rallier ver 2.35 13.78 0.00 0.20 ind:pas:1s; +ralliaient rallier ver 2.35 13.78 0.00 0.41 ind:imp:3p; +ralliais rallier ver 2.35 13.78 0.00 0.20 ind:imp:1s; +ralliait rallier ver 2.35 13.78 0.03 1.01 ind:imp:3s; +ralliant rallier ver 2.35 13.78 0.11 0.34 par:pre; +ralliassent rallier ver 2.35 13.78 0.00 0.07 sub:imp:3p; +rallie rallier ver 2.35 13.78 0.37 0.54 ind:pre:1s;ind:pre:3s; +ralliement ralliement nom m s 1.16 8.18 1.16 7.50 +ralliements ralliement nom m p 1.16 8.18 0.00 0.68 +rallient rallier ver 2.35 13.78 0.07 0.74 ind:pre:3p; +rallier rallier ver 2.35 13.78 0.89 4.86 inf; +ralliera rallier ver 2.35 13.78 0.06 0.14 ind:fut:3s; +rallierai rallier ver 2.35 13.78 0.02 0.00 ind:fut:1s; +rallieraient rallier ver 2.35 13.78 0.01 0.20 cnd:pre:3p; +rallierait rallier ver 2.35 13.78 0.02 0.07 cnd:pre:3s; +rallieriez rallier ver 2.35 13.78 0.00 0.07 cnd:pre:2p; +rallierons rallier ver 2.35 13.78 0.04 0.00 ind:fut:1p; +rallieront rallier ver 2.35 13.78 0.01 0.07 ind:fut:3p; +rallies rallier ver 2.35 13.78 0.03 0.07 ind:pre:2s; +ralliez rallier ver 2.35 13.78 0.08 0.07 imp:pre:2p;ind:pre:2p; +rallions raller ver 0.01 0.27 0.00 0.20 ind:imp:1p; +rallièrent rallier ver 2.35 13.78 0.01 0.14 ind:pas:3p; +rallié rallier ver m s 2.35 13.78 0.17 2.50 par:pas; +ralliée rallier ver f s 2.35 13.78 0.14 0.27 par:pas; +ralliées rallier ver f p 2.35 13.78 0.14 0.20 par:pas; +ralliés rallié adj m p 0.11 0.81 0.10 0.54 +rallonge rallonge nom f s 0.91 2.09 0.72 1.22 +rallongea rallonger ver 1.45 1.35 0.00 0.14 ind:pas:3s; +rallongeaient rallonger ver 1.45 1.35 0.10 0.00 ind:imp:3p; +rallongeait rallonger ver 1.45 1.35 0.01 0.14 ind:imp:3s; +rallongement rallongement nom m s 0.01 0.00 0.01 0.00 +rallongent rallonger ver 1.45 1.35 0.03 0.14 ind:pre:3p; +rallonger rallonger ver 1.45 1.35 0.56 0.27 inf; +rallongerait rallonger ver 1.45 1.35 0.01 0.00 cnd:pre:3s; +rallonges rallonge nom f p 0.91 2.09 0.20 0.88 +rallongez rallonger ver 1.45 1.35 0.17 0.00 imp:pre:2p; +rallongé rallonger ver m s 1.45 1.35 0.07 0.27 par:pas; +rallongée rallonger ver f s 1.45 1.35 0.01 0.20 par:pas; +rallège ralléger ver 0.00 0.27 0.00 0.07 ind:pre:3s; +ralléger ralléger ver 0.00 0.27 0.00 0.14 inf; +rallégé ralléger ver m s 0.00 0.27 0.00 0.07 par:pas; +ralluma rallumer ver 4.85 8.99 0.00 2.03 ind:pas:3s; +rallumage rallumage nom m s 0.01 0.07 0.01 0.07 +rallumai rallumer ver 4.85 8.99 0.00 0.07 ind:pas:1s; +rallumaient rallumer ver 4.85 8.99 0.11 0.20 ind:imp:3p; +rallumais rallumer ver 4.85 8.99 0.00 0.07 ind:imp:1s; +rallumait rallumer ver 4.85 8.99 0.01 0.88 ind:imp:3s; +rallumant rallumer ver 4.85 8.99 0.01 0.54 par:pre; +rallume rallumer ver 4.85 8.99 1.88 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rallument rallumer ver 4.85 8.99 0.12 0.20 ind:pre:3p; +rallumer rallumer ver 4.85 8.99 1.50 2.36 inf; +rallumerai rallumer ver 4.85 8.99 0.01 0.00 ind:fut:1s; +rallumeront rallumer ver 4.85 8.99 0.02 0.00 ind:fut:3p; +rallumes rallumer ver 4.85 8.99 0.17 0.00 ind:pre:2s; +rallumez rallumer ver 4.85 8.99 0.42 0.00 imp:pre:2p;ind:pre:2p; +rallumons rallumer ver 4.85 8.99 0.20 0.07 imp:pre:1p;ind:pre:1p; +rallumèrent rallumer ver 4.85 8.99 0.00 0.14 ind:pas:3p; +rallumé rallumer ver m s 4.85 8.99 0.22 0.74 par:pas; +rallumée rallumer ver f s 4.85 8.99 0.12 0.27 par:pas; +rallumées rallumer ver f p 4.85 8.99 0.04 0.07 par:pas; +rallumés rallumer ver m p 4.85 8.99 0.01 0.14 par:pas; +rallye rallye nom m s 1.74 0.54 1.68 0.41 +rallyes rallye nom m p 1.74 0.54 0.06 0.14 +ram ram nom m s 0.11 0.07 0.11 0.07 +rama ramer ver 5.37 6.42 0.03 0.27 ind:pas:3s; +ramadan ramadan nom m s 1.07 0.95 1.07 0.95 +ramage ramage nom m s 0.16 2.57 0.16 0.61 +ramageait ramager ver 0.00 0.14 0.00 0.07 ind:imp:3s; +ramager ramager ver 0.00 0.14 0.00 0.07 inf; +ramages ramage nom m p 0.16 2.57 0.00 1.96 +ramai ramer ver 5.37 6.42 0.00 0.07 ind:pas:1s; +ramaient ramer ver 5.37 6.42 0.01 0.27 ind:imp:3p; +ramais ramer ver 5.37 6.42 0.04 0.27 ind:imp:1s; +ramait ramer ver 5.37 6.42 0.03 0.81 ind:imp:3s; +ramant ramer ver 5.37 6.42 0.02 0.41 par:pre; +ramarraient ramarrer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +ramarrer ramarrer ver 0.00 0.14 0.00 0.07 inf; +ramas ramer ver 5.37 6.42 0.10 0.00 ind:pas:2s; +ramassa ramasser ver 43.76 74.80 0.26 11.82 ind:pas:3s; +ramassage ramassage nom m s 0.91 1.35 0.90 1.35 +ramassages ramassage nom m p 0.91 1.35 0.01 0.00 +ramassai ramasser ver 43.76 74.80 0.01 0.88 ind:pas:1s; +ramassaient ramasser ver 43.76 74.80 0.18 1.55 ind:imp:3p; +ramassais ramasser ver 43.76 74.80 0.81 1.08 ind:imp:1s;ind:imp:2s; +ramassait ramasser ver 43.76 74.80 0.66 4.93 ind:imp:3s; +ramassant ramasser ver 43.76 74.80 0.30 3.92 par:pre; +ramasse_miettes ramasse_miettes nom m 0.02 0.27 0.02 0.27 +ramasse_poussière ramasse_poussière nom m 0.02 0.00 0.02 0.00 +ramasse ramasser ver 43.76 74.80 13.87 10.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ramassent ramasser ver 43.76 74.80 0.86 1.76 ind:pre:3p; +ramasser ramasser ver 43.76 74.80 13.15 17.91 inf; +ramassera ramasser ver 43.76 74.80 0.25 0.27 ind:fut:3s; +ramasserai ramasser ver 43.76 74.80 0.14 0.00 ind:fut:1s; +ramasseraient ramasser ver 43.76 74.80 0.00 0.14 cnd:pre:3p; +ramasserais ramasser ver 43.76 74.80 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +ramasserait ramasser ver 43.76 74.80 0.04 0.41 cnd:pre:3s; +ramasseras ramasser ver 43.76 74.80 0.04 0.07 ind:fut:2s; +ramasseront ramasser ver 43.76 74.80 0.07 0.20 ind:fut:3p; +ramasses ramasser ver 43.76 74.80 1.61 0.20 ind:pre:2s; +ramasseur ramasseur nom m s 0.73 2.70 0.56 1.15 +ramasseurs ramasseur nom m p 0.73 2.70 0.17 1.42 +ramasseuse ramasseur nom f s 0.73 2.70 0.00 0.14 +ramassez ramasser ver 43.76 74.80 3.37 0.68 imp:pre:2p;ind:pre:2p; +ramassiez ramasser ver 43.76 74.80 0.05 0.00 ind:imp:2p; +ramassions ramasser ver 43.76 74.80 0.00 0.20 ind:imp:1p; +ramassis ramassis nom m 1.50 1.62 1.50 1.62 +ramassons ramasser ver 43.76 74.80 0.30 0.14 imp:pre:1p;ind:pre:1p; +ramassât ramasser ver 43.76 74.80 0.00 0.07 sub:imp:3s; +ramassèrent ramasser ver 43.76 74.80 0.01 1.35 ind:pas:3p; +ramassé ramasser ver m s 43.76 74.80 5.62 10.34 par:pas; +ramassée ramasser ver f s 43.76 74.80 1.07 2.91 par:pas; +ramassées ramasser ver f p 43.76 74.80 0.42 0.68 par:pas; +ramassés ramasser ver m p 43.76 74.80 0.59 2.57 par:pas; +rambarde rambarde nom f s 0.45 3.04 0.45 2.64 +rambardes rambarde nom f p 0.45 3.04 0.00 0.41 +rambin rambin nom m s 0.00 0.34 0.00 0.34 +rambinait rambiner ver 0.00 0.88 0.00 0.07 ind:imp:3s; +rambine rambiner ver 0.00 0.88 0.00 0.27 ind:pre:3s; +rambinent rambiner ver 0.00 0.88 0.00 0.07 ind:pre:3p; +rambiner rambiner ver 0.00 0.88 0.00 0.27 inf; +rambineur rambineur nom m s 0.00 0.07 0.00 0.07 +rambiné rambiner ver m s 0.00 0.88 0.00 0.20 par:pas; +rambla rambla nom f s 0.00 0.07 0.00 0.07 +rambot rambot nom m s 0.01 0.07 0.01 0.07 +rambour rambour nom m s 0.00 0.34 0.00 0.34 +ramdam ramdam nom m s 0.21 1.01 0.21 0.95 +ramdams ramdam nom m p 0.21 1.01 0.00 0.07 +rame rame nom f s 4.38 11.55 2.47 5.74 +rameau rameau nom m s 1.92 6.22 1.29 2.57 +rameaux rameau nom m p 1.92 6.22 0.63 3.65 +ramena ramener ver 172.70 109.26 0.70 9.86 ind:pas:3s; +ramenai ramener ver 172.70 109.26 0.00 0.61 ind:pas:1s; +ramenaient ramener ver 172.70 109.26 0.13 3.72 ind:imp:3p; +ramenais ramener ver 172.70 109.26 0.88 1.28 ind:imp:1s;ind:imp:2s; +ramenait ramener ver 172.70 109.26 1.76 12.57 ind:imp:3s; +ramenant ramener ver 172.70 109.26 0.66 4.59 par:pre; +ramenard ramenard adj m s 0.02 0.20 0.01 0.20 +ramenards ramenard adj m p 0.02 0.20 0.01 0.00 +ramendé ramender ver m s 0.01 0.00 0.01 0.00 par:pas; +ramener ramener ver 172.70 109.26 51.43 24.93 inf;;inf;;inf;;inf;; +ramenez ramener ver 172.70 109.26 13.02 1.08 imp:pre:2p;ind:pre:2p; +rameniez ramener ver 172.70 109.26 0.59 0.00 ind:imp:2p;sub:pre:2p; +ramenions ramener ver 172.70 109.26 0.05 0.20 ind:imp:1p; +ramenâmes ramener ver 172.70 109.26 0.15 0.20 ind:pas:1p; +ramenons ramener ver 172.70 109.26 1.60 0.27 imp:pre:1p;ind:pre:1p; +ramenât ramener ver 172.70 109.26 0.00 0.41 sub:imp:3s; +rament ramer ver 5.37 6.42 0.17 0.27 ind:pre:3p; +ramenèrent ramener ver 172.70 109.26 0.50 1.08 ind:pas:3p; +ramené ramener ver m s 172.70 109.26 23.84 13.31 par:pas; +ramenée ramener ver f s 172.70 109.26 5.25 4.93 par:pas; +ramenées ramener ver f p 172.70 109.26 0.50 1.01 par:pas; +ramenés ramener ver m p 172.70 109.26 1.27 3.78 par:pas; +ramer ramer ver 5.37 6.42 1.73 1.82 inf; +ramera ramer ver 5.37 6.42 0.00 0.07 ind:fut:3s; +rameras ramer ver 5.37 6.42 0.01 0.00 ind:fut:2s; +ramerons ramer ver 5.37 6.42 0.01 0.20 ind:fut:1p; +rameront ramer ver 5.37 6.42 0.01 0.00 ind:fut:3p; +rames rame nom f p 4.38 11.55 1.91 5.81 +ramette ramette nom f s 0.00 0.14 0.00 0.14 +rameur rameur nom m s 1.00 2.43 0.40 0.47 +rameurs rameur nom m p 1.00 2.43 0.60 1.96 +rameutais rameuter ver 0.72 2.43 0.01 0.07 ind:imp:1s; +rameutait rameuter ver 0.72 2.43 0.00 0.47 ind:imp:3s; +rameutant rameuter ver 0.72 2.43 0.00 0.07 par:pre; +rameute rameuter ver 0.72 2.43 0.23 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rameutent rameuter ver 0.72 2.43 0.00 0.07 ind:pre:3p; +rameuter rameuter ver 0.72 2.43 0.32 0.68 inf; +rameutez rameuter ver 0.72 2.43 0.06 0.14 imp:pre:2p;ind:pre:2p; +rameutons rameuter ver 0.72 2.43 0.02 0.00 imp:pre:1p;ind:pre:1p; +rameuté rameuter ver m s 0.72 2.43 0.07 0.14 par:pas; +rameutées rameuter ver f p 0.72 2.43 0.00 0.20 par:pas; +rameutés rameuter ver m p 0.72 2.43 0.01 0.34 par:pas; +ramez ramer ver 5.37 6.42 1.17 0.00 imp:pre:2p;ind:pre:2p; +rami rami nom m s 0.48 0.20 0.47 0.14 +ramier ramier adj m s 0.01 0.27 0.01 0.00 +ramiers ramier nom m p 0.00 1.01 0.00 0.47 +ramies ramie nom f p 0.00 0.07 0.00 0.07 +ramifia ramifier ver 0.06 0.74 0.00 0.07 ind:pas:3s; +ramifiaient ramifier ver 0.06 0.74 0.00 0.07 ind:imp:3p; +ramifiait ramifier ver 0.06 0.74 0.00 0.07 ind:imp:3s; +ramifiant ramifiant adj m s 0.00 0.54 0.00 0.54 +ramification ramification nom f s 0.50 1.42 0.05 0.07 +ramifications ramification nom f p 0.50 1.42 0.45 1.35 +ramifie ramifier ver 0.06 0.74 0.04 0.00 ind:pre:3s; +ramifient ramifier ver 0.06 0.74 0.00 0.07 ind:pre:3p; +ramifier ramifier ver 0.06 0.74 0.00 0.07 inf; +ramifié ramifier ver m s 0.06 0.74 0.02 0.20 par:pas; +ramifiée ramifié adj f s 0.04 0.61 0.02 0.27 +ramifiées ramifié adj f p 0.04 0.61 0.01 0.20 +ramifiés ramifié adj m p 0.04 0.61 0.01 0.07 +ramille ramille nom f s 0.00 0.54 0.00 0.07 +ramilles ramille nom f p 0.00 0.54 0.00 0.47 +raminagrobis raminagrobis nom m 0.00 0.14 0.00 0.14 +ramions ramer ver 5.37 6.42 0.01 0.00 ind:imp:1p; +ramis rami nom m p 0.48 0.20 0.01 0.07 +ramolli ramollir ver m s 2.30 1.49 0.26 0.27 par:pas; +ramollie ramolli adj f s 0.44 1.08 0.05 0.27 +ramollies ramollir ver f p 2.30 1.49 0.04 0.07 par:pas; +ramollir ramollir ver 2.30 1.49 0.53 0.27 inf; +ramollirent ramollir ver 2.30 1.49 0.00 0.07 ind:pas:3p; +ramollis ramollir ver m p 2.30 1.49 0.49 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +ramollissait ramollir ver 2.30 1.49 0.04 0.20 ind:imp:3s; +ramollisse ramollir ver 2.30 1.49 0.16 0.00 sub:pre:3s; +ramollissement ramollissement nom m s 0.12 0.20 0.12 0.20 +ramollissent ramollir ver 2.30 1.49 0.28 0.00 ind:pre:3p; +ramollit ramollir ver 2.30 1.49 0.47 0.41 ind:pre:3s;ind:pas:3s; +ramollo ramollo adj m s 0.32 0.27 0.23 0.20 +ramollos ramollo adj m p 0.32 0.27 0.09 0.07 +ramon ramon nom m s 0.00 0.14 0.00 0.14 +ramonage ramonage nom m s 0.02 0.34 0.02 0.27 +ramonages ramonage nom m p 0.02 0.34 0.00 0.07 +ramonait ramoner ver 0.60 1.55 0.00 0.14 ind:imp:3s; +ramonant ramoner ver 0.60 1.55 0.00 0.07 par:pre; +ramone ramoner ver 0.60 1.55 0.26 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ramonent ramoner ver 0.60 1.55 0.00 0.07 ind:pre:3p; +ramoner ramoner ver 0.60 1.55 0.17 0.61 inf; +ramones ramoner ver 0.60 1.55 0.02 0.00 ind:pre:2s; +ramoneur ramoneur nom m s 0.12 0.88 0.08 0.74 +ramoneurs ramoneur nom m p 0.12 0.88 0.03 0.14 +ramons ramer ver 5.37 6.42 0.04 0.07 imp:pre:1p;ind:pre:1p; +ramoné ramoner ver m s 0.60 1.55 0.03 0.07 par:pas; +ramonée ramoner ver f s 0.60 1.55 0.03 0.07 par:pas; +ramonées ramoner ver f p 0.60 1.55 0.10 0.07 par:pas; +rampa ramper ver 11.55 19.39 0.02 1.08 ind:pas:3s; +rampai ramper ver 11.55 19.39 0.01 0.20 ind:pas:1s; +rampaient ramper ver 11.55 19.39 0.27 0.95 ind:imp:3p; +rampais ramper ver 11.55 19.39 0.16 0.27 ind:imp:1s;ind:imp:2s; +rampait ramper ver 11.55 19.39 0.23 2.09 ind:imp:3s; +rampant ramper ver 11.55 19.39 1.51 3.51 par:pre; +rampante rampant adj f s 0.68 2.84 0.15 0.68 +rampantes rampant adj f p 0.68 2.84 0.20 0.68 +rampants rampant adj m p 0.68 2.84 0.19 0.68 +rampe rampe nom f s 5.76 20.81 5.32 18.18 +rampement rampement nom m s 0.00 0.20 0.00 0.07 +rampements rampement nom m p 0.00 0.20 0.00 0.14 +rampent ramper ver 11.55 19.39 0.68 1.42 ind:pre:3p; +ramper ramper ver 11.55 19.39 3.32 5.20 inf; +rampera ramper ver 11.55 19.39 0.05 0.07 ind:fut:3s; +ramperai ramper ver 11.55 19.39 0.04 0.00 ind:fut:1s; +ramperaient ramper ver 11.55 19.39 0.00 0.07 cnd:pre:3p; +ramperais ramper ver 11.55 19.39 0.19 0.00 cnd:pre:1s;cnd:pre:2s; +ramperas ramper ver 11.55 19.39 0.13 0.00 ind:fut:2s; +ramperez ramper ver 11.55 19.39 0.02 0.07 ind:fut:2p; +rampes ramper ver 11.55 19.39 0.95 0.00 ind:pre:2s; +rampez ramper ver 11.55 19.39 1.32 0.07 imp:pre:2p;ind:pre:2p; +rampiez ramper ver 11.55 19.39 0.03 0.00 ind:imp:2p; +rampions ramper ver 11.55 19.39 0.02 0.07 ind:imp:1p; +ramponneau ramponneau nom m s 0.00 0.34 0.00 0.34 +rampons ramper ver 11.55 19.39 0.01 0.07 ind:pre:1p; +rampèrent ramper ver 11.55 19.39 0.00 0.14 ind:pas:3p; +rampé ramper ver m s 11.55 19.39 0.64 0.74 par:pas; +rampée ramper ver f s 11.55 19.39 0.01 0.00 par:pas; +rams rams nom m 0.35 0.00 0.35 0.00 +ramser ramser ver 0.01 0.00 0.01 0.00 inf; +ramène ramener ver 172.70 109.26 49.52 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +ramènent ramener ver 172.70 109.26 2.04 2.16 ind:pre:3p;sub:pre:3p; +ramènera ramener ver 172.70 109.26 3.95 1.15 ind:fut:3s; +ramènerai ramener ver 172.70 109.26 3.52 0.68 ind:fut:1s; +ramèneraient ramener ver 172.70 109.26 0.14 0.20 cnd:pre:3p; +ramènerais ramener ver 172.70 109.26 0.44 0.47 cnd:pre:1s;cnd:pre:2s; +ramènerait ramener ver 172.70 109.26 0.73 2.03 cnd:pre:3s; +ramèneras ramener ver 172.70 109.26 0.42 0.14 ind:fut:2s; +ramènerez ramener ver 172.70 109.26 0.48 0.14 ind:fut:2p; +ramèneriez ramener ver 172.70 109.26 0.17 0.14 cnd:pre:2p; +ramènerions ramener ver 172.70 109.26 0.03 0.07 cnd:pre:1p; +ramènerons ramener ver 172.70 109.26 0.76 0.20 ind:fut:1p; +ramèneront ramener ver 172.70 109.26 0.94 0.27 ind:fut:3p; +ramènes ramener ver 172.70 109.26 7.23 0.74 ind:pre:2s;sub:pre:2s; +ramèrent ramer ver 5.37 6.42 0.02 0.07 ind:pas:3p; +ramé ramer ver m s 5.37 6.42 0.28 0.27 par:pas; +ramée ramée nom f s 0.00 0.34 0.00 0.14 +ramées ramée nom f p 0.00 0.34 0.00 0.20 +ramure ramure nom f s 0.12 4.12 0.01 1.55 +ramures ramure nom f p 0.12 4.12 0.11 2.57 +ramés ramer ver m p 5.37 6.42 0.00 0.07 par:pas; +ran ran nom m s 0.34 0.74 0.34 0.74 +ranatres ranatre nom f p 0.00 0.07 0.00 0.07 +rancard rancard nom m s 2.80 1.22 2.60 1.15 +rancardait rancarder ver 0.35 0.61 0.00 0.07 ind:imp:3s; +rancarde rancarder ver 0.35 0.61 0.10 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rancarder rancarder ver 0.35 0.61 0.07 0.34 inf; +rancardez rancarder ver 0.35 0.61 0.01 0.00 ind:pre:2p; +rancards rancard nom m p 2.80 1.22 0.20 0.07 +rancardé rancarder ver m s 0.35 0.61 0.11 0.00 par:pas; +rancardée rancarder ver f s 0.35 0.61 0.01 0.07 par:pas; +rancardés rancarder ver m p 0.35 0.61 0.04 0.00 par:pas; +rancart rancart nom m s 0.82 1.76 0.76 1.62 +rancarts rancart nom m p 0.82 1.76 0.06 0.14 +rance rance adj s 1.34 4.26 1.18 3.65 +rances rance adj p 1.34 4.26 0.16 0.61 +ranch ranch nom m s 7.31 0.81 6.95 0.61 +ranche ranch nom f s 7.31 0.81 0.10 0.00 +rancher rancher nom m s 0.15 0.00 0.15 0.00 +ranches ranche nom f p 0.10 0.00 0.10 0.00 +rancho rancho nom m s 0.87 0.00 0.87 0.00 +ranchs ranch nom m p 7.31 0.81 0.26 0.00 +ranci ranci adj m s 0.04 0.27 0.02 0.07 +rancie ranci adj f s 0.04 0.27 0.01 0.07 +rancies rancir ver f p 0.01 0.54 0.00 0.07 par:pas; +rancio rancio nom m s 0.00 0.20 0.00 0.20 +rancir rancir ver 0.01 0.54 0.00 0.20 inf; +rancis rancir ver 0.01 0.54 0.01 0.00 ind:pre:2s; +rancissait rancir ver 0.01 0.54 0.00 0.14 ind:imp:3s; +rancissure rancissure nom f s 0.00 0.07 0.00 0.07 +rancit rancir ver 0.01 0.54 0.00 0.07 ind:pas:3s; +rancoeur rancoeur nom f s 1.31 6.15 1.09 4.46 +rancoeurs rancoeur nom f p 1.31 6.15 0.22 1.69 +rancune rancune nom f s 7.20 17.23 6.76 14.86 +rancunes rancune nom f p 7.20 17.23 0.44 2.36 +rancuneuses rancuneux adj f p 0.00 0.07 0.00 0.07 +rancunier rancunier adj m s 1.46 1.69 1.09 1.01 +rancuniers rancunier adj m p 1.46 1.69 0.17 0.14 +rancunière rancunier adj f s 1.46 1.69 0.17 0.54 +rancunières rancunier adj f p 1.46 1.69 0.02 0.00 +randonnait randonner ver 0.13 0.20 0.00 0.07 ind:imp:3s; +randonne randonner ver 0.13 0.20 0.01 0.07 imp:pre:2s;ind:pre:3s; +randonner randonner ver 0.13 0.20 0.04 0.00 inf; +randonneur randonneur nom m s 0.40 0.20 0.17 0.00 +randonneurs randonneur nom m p 0.40 0.20 0.20 0.20 +randonneuse randonneur nom f s 0.40 0.20 0.03 0.00 +randonnez randonner ver 0.13 0.20 0.01 0.00 ind:pre:2p; +randonnée randonnée nom f s 2.22 4.66 1.74 2.64 +randonnées randonnée nom f p 2.22 4.66 0.48 2.03 +rang rang nom m s 28.21 58.24 19.40 37.16 +range ranger ver 47.67 67.91 17.59 7.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rangea ranger ver 47.67 67.91 0.02 8.78 ind:pas:3s; +rangeai ranger ver 47.67 67.91 0.00 0.74 ind:pas:1s; +rangeaient ranger ver 47.67 67.91 0.03 1.82 ind:imp:3p; +rangeais ranger ver 47.67 67.91 0.50 1.08 ind:imp:1s;ind:imp:2s; +rangeait ranger ver 47.67 67.91 0.18 6.69 ind:imp:3s; +rangeant ranger ver 47.67 67.91 0.20 2.70 par:pre; +rangement rangement nom m s 1.21 2.16 1.14 1.49 +rangements rangement nom m p 1.21 2.16 0.07 0.68 +rangent ranger ver 47.67 67.91 0.47 1.08 ind:pre:3p; +rangeâmes ranger ver 47.67 67.91 0.00 0.07 ind:pas:1p; +rangeons ranger ver 47.67 67.91 0.20 0.14 imp:pre:1p;ind:pre:1p; +rangeât ranger ver 47.67 67.91 0.00 0.07 sub:imp:3s; +ranger ranger ver 47.67 67.91 14.95 14.53 inf; +rangera ranger ver 47.67 67.91 0.31 0.20 ind:fut:3s; +rangerai ranger ver 47.67 67.91 0.58 0.07 ind:fut:1s; +rangerais ranger ver 47.67 67.91 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +rangerait ranger ver 47.67 67.91 0.02 0.07 cnd:pre:3s; +rangeras ranger ver 47.67 67.91 0.10 0.14 ind:fut:2s; +rangerez ranger ver 47.67 67.91 0.16 0.00 ind:fut:2p; +rangerons ranger ver 47.67 67.91 0.00 0.07 ind:fut:1p; +rangeront ranger ver 47.67 67.91 0.06 0.07 ind:fut:3p; +rangers ranger nom m p 4.60 3.38 2.36 2.36 +ranges ranger ver 47.67 67.91 1.21 0.14 ind:pre:2s;sub:pre:2s; +rangez ranger ver 47.67 67.91 4.54 0.68 imp:pre:2p;ind:pre:2p; +rangions ranger ver 47.67 67.91 0.01 0.20 ind:imp:1p; +rangs rang nom m p 28.21 58.24 8.81 21.08 +rangèrent ranger ver 47.67 67.91 0.00 0.47 ind:pas:3p; +rangé ranger ver m s 47.67 67.91 4.09 8.78 par:pas; +rangée rangée nom f s 3.29 20.47 2.54 10.88 +rangées rangée nom f p 3.29 20.47 0.74 9.59 +rangés ranger ver m p 47.67 67.91 1.03 6.35 par:pas; +rani rani nom f s 0.00 1.08 0.00 1.08 +ranima ranimer ver 2.92 9.19 0.14 0.74 ind:pas:3s; +ranimaient ranimer ver 2.92 9.19 0.00 0.34 ind:imp:3p; +ranimait ranimer ver 2.92 9.19 0.01 0.74 ind:imp:3s; +ranimant ranimer ver 2.92 9.19 0.02 0.20 par:pre; +ranimation ranimation nom f s 0.00 0.07 0.00 0.07 +ranime ranimer ver 2.92 9.19 0.77 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raniment ranimer ver 2.92 9.19 0.04 0.20 ind:pre:3p; +ranimer ranimer ver 2.92 9.19 1.26 3.45 inf; +ranimera ranimer ver 2.92 9.19 0.05 0.00 ind:fut:3s; +ranimez ranimer ver 2.92 9.19 0.03 0.00 imp:pre:2p; +ranimions ranimer ver 2.92 9.19 0.00 0.07 ind:imp:1p; +ranimât ranimer ver 2.92 9.19 0.00 0.07 sub:imp:3s; +ranimèrent ranimer ver 2.92 9.19 0.00 0.27 ind:pas:3p; +ranimé ranimer ver m s 2.92 9.19 0.22 1.22 par:pas; +ranimée ranimer ver f s 2.92 9.19 0.22 0.54 par:pas; +ranimées ranimer ver f p 2.92 9.19 0.00 0.14 par:pas; +ranimés ranimer ver m p 2.92 9.19 0.17 0.41 par:pas; +rantanplan rantanplan ono 0.03 0.07 0.03 0.07 +rançon rançon nom f s 10.60 2.84 10.49 2.70 +rançonnage rançonnage nom m s 0.01 0.00 0.01 0.00 +rançonnaient rançonner ver 0.13 0.95 0.00 0.14 ind:imp:3p; +rançonnait rançonner ver 0.13 0.95 0.00 0.27 ind:imp:3s; +rançonne rançonner ver 0.13 0.95 0.04 0.00 ind:pre:1s;ind:pre:3s; +rançonnement rançonnement nom m s 0.00 0.07 0.00 0.07 +rançonner rançonner ver 0.13 0.95 0.04 0.20 inf; +rançonneurs rançonneur nom m p 0.01 0.00 0.01 0.00 +rançonné rançonner ver m s 0.13 0.95 0.02 0.14 par:pas; +rançonnée rançonner ver f s 0.13 0.95 0.02 0.00 par:pas; +rançonnées rançonner ver f p 0.13 0.95 0.00 0.14 par:pas; +rançonnés rançonner ver m p 0.13 0.95 0.00 0.07 par:pas; +rançons rançon nom f p 10.60 2.84 0.10 0.14 +ranz ranz nom m 0.00 0.14 0.00 0.14 +raout raout nom m s 0.10 0.74 0.08 0.41 +raouts raout nom m p 0.10 0.74 0.02 0.34 +rap rap nom m s 3.17 0.07 3.17 0.07 +rapace rapace adj s 0.95 1.28 0.86 0.47 +rapaces rapace nom m p 0.92 2.70 0.39 1.22 +rapacité rapacité nom f s 0.05 0.81 0.05 0.81 +rapatria rapatrier ver 2.48 3.11 0.00 0.07 ind:pas:3s; +rapatriait rapatrier ver 2.48 3.11 0.01 0.14 ind:imp:3s; +rapatriant rapatrier ver 2.48 3.11 0.01 0.07 par:pre; +rapatrie rapatrier ver 2.48 3.11 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rapatriement rapatriement nom m s 0.29 1.96 0.29 1.89 +rapatriements rapatriement nom m p 0.29 1.96 0.00 0.07 +rapatrient rapatrier ver 2.48 3.11 0.02 0.00 ind:pre:3p; +rapatrier rapatrier ver 2.48 3.11 1.36 0.88 inf; +rapatriera rapatrier ver 2.48 3.11 0.16 0.00 ind:fut:3s; +rapatriez rapatrier ver 2.48 3.11 0.13 0.00 imp:pre:2p;ind:pre:2p; +rapatrié rapatrier ver m s 2.48 3.11 0.33 0.81 par:pas; +rapatriée rapatrier ver f s 2.48 3.11 0.01 0.20 par:pas; +rapatriées rapatrier ver f p 2.48 3.11 0.01 0.14 par:pas; +rapatriés rapatrier ver m p 2.48 3.11 0.35 0.74 par:pas; +rapetassage rapetassage nom m s 0.00 0.14 0.00 0.07 +rapetassages rapetassage nom m p 0.00 0.14 0.00 0.07 +rapetasser rapetasser ver 0.00 0.61 0.00 0.14 inf; +rapetasseur rapetasseur nom m s 0.00 0.07 0.00 0.07 +rapetassions rapetasser ver 0.00 0.61 0.00 0.07 ind:imp:1p; +rapetassé rapetasser ver m s 0.00 0.61 0.00 0.20 par:pas; +rapetassées rapetasser ver f p 0.00 0.61 0.00 0.07 par:pas; +rapetassés rapetasser ver m p 0.00 0.61 0.00 0.14 par:pas; +rapetissaient rapetisser ver 0.76 4.86 0.00 0.27 ind:imp:3p; +rapetissais rapetisser ver 0.76 4.86 0.00 0.07 ind:imp:1s; +rapetissait rapetisser ver 0.76 4.86 0.03 1.08 ind:imp:3s; +rapetissant rapetisser ver 0.76 4.86 0.00 0.47 par:pre; +rapetisse rapetisser ver 0.76 4.86 0.26 0.54 ind:pre:1s;ind:pre:3s; +rapetissement rapetissement nom m s 0.01 0.27 0.01 0.27 +rapetissent rapetisser ver 0.76 4.86 0.04 0.47 ind:pre:3p; +rapetisser rapetisser ver 0.76 4.86 0.19 0.47 inf; +rapetissera rapetisser ver 0.76 4.86 0.00 0.07 ind:fut:3s; +rapetissez rapetisser ver 0.76 4.86 0.01 0.00 ind:pre:2p; +rapetissons rapetisser ver 0.76 4.86 0.01 0.07 ind:pre:1p; +rapetissèrent rapetisser ver 0.76 4.86 0.00 0.07 ind:pas:3p; +rapetissé rapetisser ver m s 0.76 4.86 0.20 0.61 par:pas; +rapetissée rapetisser ver f s 0.76 4.86 0.03 0.14 par:pas; +rapetissées rapetisser ver f p 0.76 4.86 0.00 0.27 par:pas; +rapetissés rapetisser ver m p 0.76 4.86 0.00 0.27 par:pas; +raphaélesque raphaélesque adj f s 0.00 0.07 0.00 0.07 +raphia raphia nom m s 0.16 1.28 0.16 1.28 +raphé raphé nom m s 0.00 0.07 0.00 0.07 +rapiat rapiat nom m s 0.20 0.14 0.05 0.07 +rapiater rapiater ver 0.00 0.07 0.00 0.07 inf; +rapiaterie rapiaterie nom f s 0.00 0.07 0.00 0.07 +rapiats rapiat nom m p 0.20 0.14 0.15 0.07 +rapide rapide adj s 48.73 71.82 42.28 53.99 +rapidement rapidement adv 26.49 62.64 26.49 62.64 +rapides rapide adj p 48.73 71.82 6.45 17.84 +rapidité rapidité nom f s 2.36 10.54 2.36 10.41 +rapidités rapidité nom f p 2.36 10.54 0.00 0.14 +rapidos rapidos adv 0.53 1.89 0.53 1.89 +rapin rapin nom m s 0.00 1.22 0.00 0.74 +rapine rapine nom f s 0.13 1.69 0.08 1.15 +rapinent rapiner ver 0.00 0.14 0.00 0.07 ind:pre:3p; +rapines rapine nom f p 0.13 1.69 0.05 0.54 +rapins rapin nom m p 0.00 1.22 0.00 0.47 +rapinés rapiner ver m p 0.00 0.14 0.00 0.07 par:pas; +rapière rapière nom f s 0.17 0.74 0.17 0.74 +rapiécer rapiécer ver 0.18 4.53 0.14 0.00 inf; +rapiécerait rapiécer ver 0.18 4.53 0.00 0.07 cnd:pre:3s; +rapiécé rapiécer ver m s 0.18 4.53 0.02 0.88 par:pas; +rapiécée rapiécer ver f s 0.18 4.53 0.02 1.62 par:pas; +rapiécées rapiécer ver f p 0.18 4.53 0.00 0.74 par:pas; +rapiécés rapiécer ver m p 0.18 4.53 0.00 1.22 par:pas; +rapiéçage rapiéçage nom m s 0.01 0.20 0.01 0.00 +rapiéçages rapiéçage nom m p 0.01 0.20 0.00 0.20 +raplapla raplapla adj 0.11 0.00 0.11 0.00 +rapointir rapointir ver 0.00 0.14 0.00 0.14 inf; +rappel rappel nom m s 4.24 10.34 3.77 8.31 +rappela rappeler ver 281.75 202.23 0.36 14.53 ind:pas:3s; +rappelai rappeler ver 281.75 202.23 0.04 5.14 ind:pas:1s; +rappelaient rappeler ver 281.75 202.23 0.37 7.50 ind:imp:3p; +rappelais rappeler ver 281.75 202.23 1.94 7.43 ind:imp:1s;ind:imp:2s; +rappelait rappeler ver 281.75 202.23 2.22 29.73 ind:imp:3s; +rappelant rappeler ver 281.75 202.23 0.54 6.69 par:pre; +rappeler rappeler ver 281.75 202.23 46.03 33.11 inf;; +rappelez rappeler ver 281.75 202.23 36.35 8.04 imp:pre:2p;ind:pre:2p; +rappeliez rappeler ver 281.75 202.23 0.46 0.34 ind:imp:2p; +rappelions rappeler ver 281.75 202.23 0.15 0.07 ind:imp:1p; +rappelle rappeler ver 281.75 202.23 117.92 57.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rappellent rappeler ver 281.75 202.23 2.79 3.45 ind:pre:3p; +rappellera rappeler ver 281.75 202.23 4.08 1.28 ind:fut:3s; +rappellerai rappeler ver 281.75 202.23 7.96 0.95 ind:fut:1s; +rappelleraient rappeler ver 281.75 202.23 0.05 0.14 cnd:pre:3p; +rappellerais rappeler ver 281.75 202.23 0.79 0.27 cnd:pre:1s;cnd:pre:2s; +rappellerait rappeler ver 281.75 202.23 0.36 1.42 cnd:pre:3s; +rappelleras rappeler ver 281.75 202.23 1.00 0.34 ind:fut:2s; +rappellerez rappeler ver 281.75 202.23 0.62 0.14 ind:fut:2p; +rappelleriez rappeler ver 281.75 202.23 0.19 0.07 cnd:pre:2p; +rappellerons rappeler ver 281.75 202.23 0.37 0.07 ind:fut:1p; +rappelleront rappeler ver 281.75 202.23 0.45 0.00 ind:fut:3p; +rappelles rappeler ver 281.75 202.23 37.34 8.38 ind:pre:1p;ind:pre:2s;sub:pre:2s; +rappelâmes rappeler ver 281.75 202.23 0.10 0.00 ind:pas:1p; +rappelons rappeler ver 281.75 202.23 1.90 0.41 imp:pre:1p;ind:pre:1p; +rappelât rappeler ver 281.75 202.23 0.00 0.47 sub:imp:3s; +rappels rappel nom m p 4.24 10.34 0.47 2.03 +rappelèrent rappeler ver 281.75 202.23 0.01 1.01 ind:pas:3p; +rappelé rappeler ver m s 281.75 202.23 14.60 11.49 par:pas; +rappelée rappeler ver f s 281.75 202.23 1.82 1.15 par:pas; +rappelés rappeler ver m p 281.75 202.23 0.94 0.95 par:pas; +rapper rapper ver 0.40 0.00 0.40 0.00 inf; +rappeur rappeur nom m s 1.01 0.00 0.65 0.00 +rappeurs rappeur nom m p 1.01 0.00 0.34 0.00 +rappeuse rappeur nom f s 1.01 0.00 0.02 0.00 +rappliqua rappliquer ver 4.22 5.74 0.00 0.20 ind:pas:3s; +rappliquaient rappliquer ver 4.22 5.74 0.01 0.41 ind:imp:3p; +rappliquais rappliquer ver 4.22 5.74 0.00 0.07 ind:imp:2s; +rappliquait rappliquer ver 4.22 5.74 0.00 0.47 ind:imp:3s; +rapplique rappliquer ver 4.22 5.74 1.38 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rappliquent rappliquer ver 4.22 5.74 0.50 1.01 ind:pre:3p; +rappliquer rappliquer ver 4.22 5.74 1.31 1.76 inf; +rappliquera rappliquer ver 4.22 5.74 0.04 0.00 ind:fut:3s; +rappliquerais rappliquer ver 4.22 5.74 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +rappliquerait rappliquer ver 4.22 5.74 0.01 0.00 cnd:pre:3s; +rappliqueriez rappliquer ver 4.22 5.74 0.00 0.07 cnd:pre:2p; +rappliqueront rappliquer ver 4.22 5.74 0.15 0.14 ind:fut:3p; +rappliques rappliquer ver 4.22 5.74 0.07 0.20 ind:pre:2s; +rappliquez rappliquer ver 4.22 5.74 0.28 0.14 imp:pre:2p;ind:pre:2p; +rappliquèrent rappliquer ver 4.22 5.74 0.00 0.07 ind:pas:3p; +rappliqué rappliquer ver m s 4.22 5.74 0.43 0.47 par:pas; +rapport rapport nom m s 140.08 130.95 115.57 87.23 +rapporta rapporter ver 56.99 62.43 0.43 3.45 ind:pas:3s; +rapportage rapportage nom m s 0.01 0.00 0.01 0.00 +rapportai rapporter ver 56.99 62.43 0.00 1.01 ind:pas:1s; +rapportaient rapporter ver 56.99 62.43 0.26 2.03 ind:imp:3p; +rapportais rapporter ver 56.99 62.43 0.35 0.95 ind:imp:1s;ind:imp:2s; +rapportait rapporter ver 56.99 62.43 1.12 7.64 ind:imp:3s; +rapportant rapporter ver 56.99 62.43 0.28 1.76 par:pre; +rapporte rapporter ver 56.99 62.43 21.03 10.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rapportent rapporter ver 56.99 62.43 1.98 2.03 ind:pre:3p; +rapporter rapporter ver 56.99 62.43 12.12 11.96 inf; +rapportera rapporter ver 56.99 62.43 2.13 0.68 ind:fut:3s; +rapporterai rapporter ver 56.99 62.43 1.94 0.54 ind:fut:1s; +rapporteraient rapporter ver 56.99 62.43 0.08 0.00 cnd:pre:3p; +rapporterais rapporter ver 56.99 62.43 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +rapporterait rapporter ver 56.99 62.43 0.52 0.95 cnd:pre:3s; +rapporteras rapporter ver 56.99 62.43 0.40 0.27 ind:fut:2s; +rapporterez rapporter ver 56.99 62.43 0.46 0.27 ind:fut:2p; +rapporteriez rapporter ver 56.99 62.43 0.02 0.00 cnd:pre:2p; +rapporterons rapporter ver 56.99 62.43 0.03 0.00 ind:fut:1p; +rapporteront rapporter ver 56.99 62.43 0.11 0.07 ind:fut:3p; +rapportes rapporter ver 56.99 62.43 0.94 0.41 ind:pre:2s; +rapporteur rapporteur nom m s 0.55 0.61 0.10 0.41 +rapporteurs rapporteur nom m p 0.55 0.61 0.01 0.14 +rapporteuse rapporteur nom f s 0.55 0.61 0.43 0.07 +rapporteuses rapporteuse nom f p 0.03 0.00 0.03 0.00 +rapportez rapporter ver 56.99 62.43 2.19 0.47 imp:pre:2p;ind:pre:2p; +rapportiez rapporter ver 56.99 62.43 0.19 0.00 ind:imp:2p; +rapportions rapporter ver 56.99 62.43 0.01 0.14 ind:imp:1p; +rapportons rapporter ver 56.99 62.43 0.09 0.20 imp:pre:1p;ind:pre:1p; +rapportât rapporter ver 56.99 62.43 0.00 0.14 sub:imp:3s; +rapports rapport nom m p 140.08 130.95 24.51 43.72 +rapportèrent rapporter ver 56.99 62.43 0.02 0.34 ind:pas:3p; +rapporté rapporter ver m s 56.99 62.43 8.58 11.89 par:pas; +rapportée rapporter ver f s 56.99 62.43 1.00 1.69 par:pas; +rapportées rapporter ver f p 56.99 62.43 0.42 1.55 par:pas; +rapportés rapporter ver m p 56.99 62.43 0.21 1.28 par:pas; +rapprendre rapprendre ver 0.02 0.27 0.02 0.20 inf; +rappris rapprendre ver 0.02 0.27 0.00 0.07 ind:pas:2s; +rapprocha rapprocher ver 25.18 54.66 0.15 6.62 ind:pas:3s; +rapprochai rapprocher ver 25.18 54.66 0.01 0.34 ind:pas:1s; +rapprochaient rapprocher ver 25.18 54.66 0.30 3.65 ind:imp:3p; +rapprochais rapprocher ver 25.18 54.66 0.05 0.27 ind:imp:1s;ind:imp:2s; +rapprochait rapprocher ver 25.18 54.66 0.69 7.57 ind:imp:3s; +rapprochant rapprocher ver 25.18 54.66 0.50 2.70 par:pre; +rapproche rapprocher ver 25.18 54.66 9.74 8.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rapprochement rapprochement nom m s 1.69 7.23 1.66 6.55 +rapprochements rapprochement nom m p 1.69 7.23 0.02 0.68 +rapprochent rapprocher ver 25.18 54.66 1.44 3.11 ind:pre:3p; +rapprocher rapprocher ver 25.18 54.66 6.53 9.93 inf; +rapprochera rapprocher ver 25.18 54.66 0.34 0.41 ind:fut:3s; +rapprocherais rapprocher ver 25.18 54.66 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +rapprocherait rapprocher ver 25.18 54.66 0.14 0.41 cnd:pre:3s; +rapprocheront rapprocher ver 25.18 54.66 0.00 0.07 ind:fut:3p; +rapprocheur rapprocheur nom m s 0.00 0.14 0.00 0.14 +rapprochez rapprocher ver 25.18 54.66 2.65 0.34 imp:pre:2p;ind:pre:2p; +rapprochiez rapprocher ver 25.18 54.66 0.03 0.07 ind:imp:2p; +rapprochions rapprocher ver 25.18 54.66 0.01 0.14 ind:imp:1p; +rapprochons rapprocher ver 25.18 54.66 0.54 0.34 imp:pre:1p;ind:pre:1p; +rapprochât rapprocher ver 25.18 54.66 0.00 0.07 sub:imp:3s; +rapprochèrent rapprocher ver 25.18 54.66 0.04 1.96 ind:pas:3p; +rapproché rapprocher ver m s 25.18 54.66 0.86 3.51 par:pas; +rapprochée rapproché adj f s 1.70 3.72 0.78 0.41 +rapprochées rapproché adj f p 1.70 3.72 0.22 1.08 +rapprochés rapprocher ver m p 25.18 54.66 0.54 2.30 par:pas; +rappropriait rapproprier ver 0.00 0.07 0.00 0.07 ind:imp:3s; +rapsodie rapsodie nom f s 0.02 0.00 0.02 0.00 +rapt rapt nom m s 1.31 1.62 1.13 1.62 +rapts rapt nom m p 1.31 1.62 0.18 0.00 +raquaient raquer ver 0.93 2.36 0.00 0.14 ind:imp:3p; +raquait raquer ver 0.93 2.36 0.00 0.07 ind:imp:3s; +raque raquer ver 0.93 2.36 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raquent raquer ver 0.93 2.36 0.04 0.07 ind:pre:3p; +raquer raquer ver 0.93 2.36 0.40 0.88 inf; +raques raquer ver 0.93 2.36 0.07 0.00 ind:pre:2s; +raquette raquette nom f s 2.05 3.51 1.77 1.69 +raquettes raquette nom f p 2.05 3.51 0.28 1.82 +raquez raquer ver 0.93 2.36 0.02 0.00 imp:pre:2p;ind:pre:2p; +raquons raquer ver 0.93 2.36 0.00 0.07 ind:pre:1p; +raqué raquer ver m s 0.93 2.36 0.05 0.41 par:pas; +raquée raquer ver f s 0.93 2.36 0.01 0.07 par:pas; +raquées raquer ver f p 0.93 2.36 0.00 0.07 par:pas; +rare rare adj s 33.27 87.23 22.58 37.23 +rarement rarement adv 14.05 31.62 14.05 31.62 +rares rare adj p 33.27 87.23 10.70 50.00 +rareté rareté nom f s 0.63 2.43 0.51 2.30 +raretés rareté nom f p 0.63 2.43 0.13 0.14 +rarissime rarissime adj s 0.54 1.96 0.38 1.35 +rarissimement rarissimement adv 0.00 0.07 0.00 0.07 +rarissimes rarissime adj p 0.54 1.96 0.16 0.61 +raréfaction raréfaction nom f s 0.01 0.27 0.01 0.27 +raréfia raréfier ver 0.35 1.89 0.00 0.14 ind:pas:3s; +raréfiaient raréfier ver 0.35 1.89 0.00 0.07 ind:imp:3p; +raréfiait raréfier ver 0.35 1.89 0.00 0.20 ind:imp:3s; +raréfiant raréfier ver 0.35 1.89 0.00 0.14 par:pre; +raréfie raréfier ver 0.35 1.89 0.06 0.00 ind:pre:3s; +raréfient raréfier ver 0.35 1.89 0.01 0.14 ind:pre:3p; +raréfier raréfier ver 0.35 1.89 0.10 0.27 inf; +raréfièrent raréfier ver 0.35 1.89 0.10 0.20 ind:pas:3p; +raréfié raréfier ver m s 0.35 1.89 0.06 0.34 par:pas; +raréfiée raréfié adj f s 0.06 0.34 0.04 0.07 +raréfiées raréfié adj f p 0.06 0.34 0.00 0.07 +raréfiés raréfier ver m p 0.35 1.89 0.00 0.20 par:pas; +ras_le_bol ras_le_bol nom m 1.62 0.47 1.62 0.47 +ras ras adj m 7.51 16.89 5.92 9.32 +rasa raser ver 28.54 43.78 0.06 1.49 ind:pas:3s; +rasade rasade nom f s 0.47 4.86 0.46 3.11 +rasades rasade nom f p 0.47 4.86 0.01 1.76 +rasage rasage nom m s 0.95 0.41 0.83 0.41 +rasages rasage nom m p 0.95 0.41 0.12 0.00 +rasai raser ver 28.54 43.78 0.00 0.07 ind:pas:1s; +rasaient raser ver 28.54 43.78 0.01 0.68 ind:imp:3p; +rasais raser ver 28.54 43.78 0.51 0.47 ind:imp:1s;ind:imp:2s; +rasait raser ver 28.54 43.78 0.44 2.77 ind:imp:3s; +rasant raser ver 28.54 43.78 0.64 3.92 par:pre; +rasante rasant adj f s 0.33 1.89 0.15 0.74 +rasantes rasant adj f p 0.33 1.89 0.01 0.07 +rasants rasant adj m p 0.33 1.89 0.00 0.07 +rascasse rascasse nom f s 0.41 0.41 0.40 0.00 +rascasses rascasse nom f p 0.41 0.41 0.01 0.41 +rase_mottes rase_mottes nom m 0.30 0.47 0.30 0.47 +rase_pet rase_pet nom m s 0.02 0.20 0.00 0.20 +rase_pet rase_pet nom m p 0.02 0.20 0.02 0.00 +rase raser ver 28.54 43.78 4.75 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rasent raser ver 28.54 43.78 0.50 0.68 ind:pre:3p; +raser raser ver 28.54 43.78 10.27 7.50 inf;; +rasera raser ver 28.54 43.78 0.32 0.14 ind:fut:3s; +raserai raser ver 28.54 43.78 0.55 0.14 ind:fut:1s; +raserais raser ver 28.54 43.78 0.08 0.07 cnd:pre:1s;cnd:pre:2s; +raserait raser ver 28.54 43.78 0.05 0.27 cnd:pre:3s; +raseras raser ver 28.54 43.78 0.02 0.14 ind:fut:2s; +raserez raser ver 28.54 43.78 0.01 0.00 ind:fut:2p; +raseront raser ver 28.54 43.78 0.16 0.00 ind:fut:3p; +rases raser ver 28.54 43.78 1.13 0.34 ind:pre:2s; +raseur raseur nom m s 0.65 1.15 0.46 0.47 +raseurs raseur nom m p 0.65 1.15 0.16 0.14 +raseuse raseur nom f s 0.65 1.15 0.03 0.47 +raseuses raseur nom f p 0.65 1.15 0.00 0.07 +rasez raser ver 28.54 43.78 0.64 0.20 imp:pre:2p;ind:pre:2p; +rash rash nom m s 0.03 0.07 0.03 0.07 +rasibus rasibus adv_sup 0.01 0.34 0.01 0.34 +rasiez raser ver 28.54 43.78 0.04 0.00 ind:imp:2p; +rasif rasif nom m s 0.00 0.54 0.00 0.47 +rasifs rasif nom m p 0.00 0.54 0.00 0.07 +rasoir rasoir nom m s 8.92 16.82 8.18 15.61 +rasoirs rasoir nom m p 8.92 16.82 0.74 1.22 +rasons raser ver 28.54 43.78 0.29 0.00 imp:pre:1p;ind:pre:1p; +rassasiaient rassasier ver 1.48 3.58 0.00 0.27 ind:imp:3p; +rassasiais rassasier ver 1.48 3.58 0.00 0.07 ind:imp:1s; +rassasiait rassasier ver 1.48 3.58 0.00 0.20 ind:imp:3s; +rassasiant rassasiant adj m s 0.01 0.07 0.01 0.00 +rassasiantes rassasiant adj f p 0.01 0.07 0.00 0.07 +rassasie rassasier ver 1.48 3.58 0.14 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassasient rassasier ver 1.48 3.58 0.02 0.00 ind:pre:3p; +rassasier rassasier ver 1.48 3.58 0.39 0.88 inf; +rassasieraient rassasier ver 1.48 3.58 0.00 0.07 cnd:pre:3p; +rassasiez rassasier ver 1.48 3.58 0.11 0.00 imp:pre:2p; +rassasiât rassasier ver 1.48 3.58 0.00 0.07 sub:imp:3s; +rassasié rassasier ver m s 1.48 3.58 0.50 1.08 par:pas; +rassasiée rassasier ver f s 1.48 3.58 0.18 0.41 par:pas; +rassasiées rassasié adj f p 0.53 1.35 0.01 0.07 +rassasiés rassasier ver m p 1.48 3.58 0.14 0.20 par:pas; +rasse rasse nom f s 0.00 0.07 0.00 0.07 +rassembla rassembler ver 25.99 52.70 0.14 2.97 ind:pas:3s; +rassemblai rassembler ver 25.99 52.70 0.01 0.54 ind:pas:1s; +rassemblaient rassembler ver 25.99 52.70 0.18 2.50 ind:imp:3p; +rassemblais rassembler ver 25.99 52.70 0.07 0.81 ind:imp:1s; +rassemblait rassembler ver 25.99 52.70 0.18 2.97 ind:imp:3s; +rassemblant rassembler ver 25.99 52.70 0.45 2.97 par:pre; +rassemble rassembler ver 25.99 52.70 5.75 5.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassemblement rassemblement nom m s 4.96 8.24 4.39 7.30 +rassemblements rassemblement nom m p 4.96 8.24 0.57 0.95 +rassemblent rassembler ver 25.99 52.70 1.59 1.35 ind:pre:3p; +rassembler rassembler ver 25.99 52.70 6.89 11.76 inf; +rassemblera rassembler ver 25.99 52.70 0.26 0.27 ind:fut:3s; +rassemblerai rassembler ver 25.99 52.70 0.05 0.07 ind:fut:1s; +rassembleraient rassembler ver 25.99 52.70 0.00 0.07 cnd:pre:3p; +rassemblerais rassembler ver 25.99 52.70 0.00 0.07 cnd:pre:1s; +rassemblerait rassembler ver 25.99 52.70 0.01 0.20 cnd:pre:3s; +rassembleras rassembler ver 25.99 52.70 0.14 0.00 ind:fut:2s; +rassemblerez rassembler ver 25.99 52.70 0.02 0.00 ind:fut:2p; +rassemblerons rassembler ver 25.99 52.70 0.05 0.00 ind:fut:1p; +rassembleront rassembler ver 25.99 52.70 0.10 0.14 ind:fut:3p; +rassembles rassembler ver 25.99 52.70 0.09 0.07 ind:pre:2s; +rassembleur rassembleur nom m s 0.00 0.14 0.00 0.14 +rassemblez rassembler ver 25.99 52.70 4.35 0.07 imp:pre:2p;ind:pre:2p; +rassemblons rassembler ver 25.99 52.70 1.06 0.00 imp:pre:1p;ind:pre:1p; +rassemblèrent rassembler ver 25.99 52.70 0.02 0.81 ind:pas:3p; +rassemblé rassembler ver m s 25.99 52.70 2.09 5.54 par:pas; +rassemblée rassembler ver f s 25.99 52.70 0.20 2.77 par:pas; +rassemblées rassembler ver f p 25.99 52.70 0.45 3.45 par:pas; +rassemblés rassembler ver m p 25.99 52.70 1.84 8.18 par:pas; +rasseoir rasseoir ver 1.97 14.05 0.52 2.91 inf; +rasseyaient rasseoir ver 1.97 14.05 0.00 0.07 ind:imp:3p; +rasseyais rasseoir ver 1.97 14.05 0.01 0.14 ind:imp:1s; +rasseyait rasseoir ver 1.97 14.05 0.00 0.41 ind:imp:3s; +rasseyant rasseoir ver 1.97 14.05 0.00 0.61 par:pre; +rasseyent rasseoir ver 1.97 14.05 0.00 0.07 ind:pre:3p; +rasseyez rasseoir ver 1.97 14.05 0.45 0.00 imp:pre:2p;ind:pre:2p; +rasseyons rasseoir ver 1.97 14.05 0.00 0.14 ind:pre:1p; +rassied rasseoir ver 1.97 14.05 0.01 0.74 ind:pre:3s; +rassieds rasseoir ver 1.97 14.05 0.22 0.00 imp:pre:2s;ind:pre:1s; +rassir rassir ver 0.01 0.00 0.01 0.00 inf; +rassirent rasseoir ver 1.97 14.05 0.00 0.14 ind:pas:3p; +rassis rasseoir ver m 1.97 14.05 0.47 3.24 ind:pas:1s;par:pas;par:pas; +rassise rasseoir ver f s 1.97 14.05 0.00 0.61 par:pas; +rassit rasseoir ver 1.97 14.05 0.01 4.12 ind:pas:3s; +rassoie rasseoir ver 1.97 14.05 0.01 0.00 sub:pre:3s; +rassoient rasseoir ver 1.97 14.05 0.00 0.07 ind:pre:3p; +rassoies rasseoir ver 1.97 14.05 0.01 0.00 sub:pre:2s; +rassois rasseoir ver 1.97 14.05 0.01 0.20 ind:pre:1s; +rassoit rasseoir ver 1.97 14.05 0.25 0.54 ind:pre:3s; +rassortiment rassortiment nom m s 0.00 0.07 0.00 0.07 +rassortir rassortir ver 0.01 0.07 0.01 0.07 inf; +rassoté rassoter ver m s 0.00 0.07 0.00 0.07 par:pas; +rassoyait rasseoir ver 1.97 14.05 0.00 0.07 ind:imp:3s; +rassura rassurer ver 29.25 68.04 0.00 3.65 ind:pas:3s; +rassurai rassurer ver 29.25 68.04 0.01 0.88 ind:pas:1s; +rassuraient rassurer ver 29.25 68.04 0.01 1.42 ind:imp:3p; +rassurais rassurer ver 29.25 68.04 0.00 0.41 ind:imp:1s; +rassurait rassurer ver 29.25 68.04 0.46 5.07 ind:imp:3s; +rassurant rassurant adj m s 3.16 16.69 2.81 7.64 +rassurante rassurant adj f s 3.16 16.69 0.21 5.34 +rassurantes rassurant adj f p 3.16 16.69 0.09 2.50 +rassurants rassurant adj m p 3.16 16.69 0.05 1.22 +rassure rassurer ver 29.25 68.04 9.62 9.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassurement rassurement nom m s 0.00 0.07 0.00 0.07 +rassurent rassurer ver 29.25 68.04 0.42 0.54 ind:pre:3p; +rassurer rassurer ver 29.25 68.04 6.06 17.57 inf; +rassurera rassurer ver 29.25 68.04 0.34 0.20 ind:fut:3s; +rassurerait rassurer ver 29.25 68.04 0.34 0.54 cnd:pre:3s; +rassureront rassurer ver 29.25 68.04 0.14 0.07 ind:fut:3p; +rassures rassurer ver 29.25 68.04 0.58 0.14 ind:pre:2s; +rassurez rassurer ver 29.25 68.04 5.42 3.51 imp:pre:2p;ind:pre:2p; +rassuriez rassurer ver 29.25 68.04 0.00 0.07 ind:imp:2p; +rassurâmes rassurer ver 29.25 68.04 0.00 0.07 ind:pas:1p; +rassurons rassurer ver 29.25 68.04 0.02 0.20 imp:pre:1p;ind:pre:1p; +rassurât rassurer ver 29.25 68.04 0.00 0.14 sub:imp:3s; +rassérène rasséréner ver 0.02 4.39 0.00 0.41 ind:pre:1s;ind:pre:3s; +rassurèrent rassurer ver 29.25 68.04 0.00 0.34 ind:pas:3p; +rassuré rassurer ver m s 29.25 68.04 2.56 12.50 par:pas; +rassurée rassurer ver f s 29.25 68.04 2.44 5.88 par:pas; +rassurées rassurer ver f p 29.25 68.04 0.19 0.27 par:pas; +rasséréna rasséréner ver 0.02 4.39 0.00 0.54 ind:pas:3s; +rassérénai rasséréner ver 0.02 4.39 0.00 0.27 ind:pas:1s; +rassérénait rasséréner ver 0.02 4.39 0.01 0.34 ind:imp:3s; +rassérénant rasséréner ver 0.02 4.39 0.00 0.07 par:pre; +rasséréner rasséréner ver 0.02 4.39 0.00 0.20 inf; +rassérénera rasséréner ver 0.02 4.39 0.00 0.07 ind:fut:3s; +rasséréné rasséréner ver m s 0.02 4.39 0.00 1.82 par:pas; +rassérénée rasséréner ver f s 0.02 4.39 0.00 0.54 par:pas; +rassérénées rasséréner ver f p 0.02 4.39 0.00 0.07 par:pas; +rassérénés rasséréner ver m p 0.02 4.39 0.01 0.07 par:pas; +rassurés rassurer ver m p 29.25 68.04 0.55 2.64 par:pas; +rasta rasta nom m s 0.43 0.34 0.32 0.20 +rastafari rastafari adj m s 0.03 0.00 0.03 0.00 +rastafari rastafari nom m s 0.03 0.00 0.03 0.00 +rastaquouère rastaquouère nom m s 0.05 0.41 0.01 0.20 +rastaquouères rastaquouère nom m p 0.05 0.41 0.04 0.20 +rastas rasta nom m p 0.43 0.34 0.12 0.14 +rasèrent raser ver 28.54 43.78 0.00 0.14 ind:pas:3p; +rasé raser ver m s 28.54 43.78 5.35 13.92 par:pas; +rasée raser ver f s 28.54 43.78 1.83 3.51 par:pas; +rasées raser ver f p 28.54 43.78 0.16 1.82 par:pas; +rasés raser ver m p 28.54 43.78 0.76 2.91 par:pas; +rat_de_cave rat_de_cave nom m s 0.00 0.07 0.00 0.07 +rat rat nom m s 45.60 37.64 24.21 20.81 +rata rata nom m s 0.53 0.27 0.53 0.27 +ratafia ratafia nom m s 0.02 0.54 0.02 0.54 +ratage ratage nom m s 0.63 1.01 0.16 0.68 +ratages ratage nom m p 0.63 1.01 0.47 0.34 +ratai rater ver 80.45 22.70 0.00 0.27 ind:pas:1s; +rataient rater ver 80.45 22.70 0.03 0.14 ind:imp:3p; +ratais rater ver 80.45 22.70 0.31 0.34 ind:imp:1s;ind:imp:2s; +ratait rater ver 80.45 22.70 0.23 1.22 ind:imp:3s; +ratant rater ver 80.45 22.70 0.09 0.07 par:pre; +rataplan rataplan ono 0.00 0.07 0.00 0.07 +ratatinai ratatiner ver 0.69 3.65 0.00 0.07 ind:pas:1s; +ratatinaient ratatiner ver 0.69 3.65 0.00 0.14 ind:imp:3p; +ratatinais ratatiner ver 0.69 3.65 0.01 0.00 ind:imp:1s; +ratatinait ratatiner ver 0.69 3.65 0.00 0.47 ind:imp:3s; +ratatine ratatiner ver 0.69 3.65 0.13 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ratatinent ratatiner ver 0.69 3.65 0.01 0.00 ind:pre:3p; +ratatiner ratatiner ver 0.69 3.65 0.21 0.54 inf; +ratatinerait ratatiner ver 0.69 3.65 0.01 0.07 cnd:pre:3s; +ratatineront ratatiner ver 0.69 3.65 0.01 0.07 ind:fut:3p; +ratatiné ratatiner ver m s 0.69 3.65 0.24 1.08 par:pas; +ratatinée ratatiner ver f s 0.69 3.65 0.04 0.61 par:pas; +ratatinées ratatiné adj f p 0.40 2.09 0.11 0.27 +ratatinés ratatiner ver m p 0.69 3.65 0.03 0.27 par:pas; +ratatouille ratatouille nom f s 0.54 0.74 0.54 0.61 +ratatouilles ratatouille nom f p 0.54 0.74 0.00 0.14 +rate rater ver 80.45 22.70 8.32 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +ratent rater ver 80.45 22.70 0.54 0.61 ind:pre:3p; +rater rater ver 80.45 22.70 24.71 6.28 inf; +ratera rater ver 80.45 22.70 0.42 0.00 ind:fut:3s; +raterai rater ver 80.45 22.70 0.64 0.00 ind:fut:1s; +raterais rater ver 80.45 22.70 0.63 0.14 cnd:pre:1s;cnd:pre:2s; +raterait rater ver 80.45 22.70 0.40 0.07 cnd:pre:3s; +rateras rater ver 80.45 22.70 0.21 0.07 ind:fut:2s; +raterez rater ver 80.45 22.70 0.34 0.00 ind:fut:2p; +rateriez rater ver 80.45 22.70 0.03 0.00 cnd:pre:2p; +raterons rater ver 80.45 22.70 0.14 0.00 ind:fut:1p; +rateront rater ver 80.45 22.70 0.27 0.07 ind:fut:3p; +rates rater ver 80.45 22.70 3.75 0.27 ind:pre:2s;sub:pre:2s; +ratez rater ver 80.45 22.70 2.10 0.14 imp:pre:2p;ind:pre:2p; +ratiboisaient ratiboiser ver 0.09 0.81 0.00 0.07 ind:imp:3p; +ratiboisait ratiboiser ver 0.09 0.81 0.00 0.14 ind:imp:3s; +ratiboiser ratiboiser ver 0.09 0.81 0.06 0.07 inf; +ratiboises ratiboiser ver 0.09 0.81 0.00 0.07 ind:pre:2s; +ratiboisé ratiboiser ver m s 0.09 0.81 0.01 0.47 par:pas; +ratiboisés ratiboiser ver m p 0.09 0.81 0.02 0.00 par:pas; +ratiche ratiche nom f s 0.04 1.76 0.00 0.47 +ratiches ratiche nom f p 0.04 1.76 0.04 1.28 +ratichon ratichon nom m s 0.00 0.61 0.00 0.41 +ratichons ratichon nom m p 0.00 0.61 0.00 0.20 +raticide raticide nom m s 0.04 0.00 0.04 0.00 +ratier ratier nom m s 0.00 0.88 0.00 0.88 +ratiez rater ver 80.45 22.70 0.20 0.07 ind:imp:2p;sub:pre:2p; +ratifia ratifier ver 0.80 1.22 0.00 0.07 ind:pas:3s; +ratifiant ratifier ver 0.80 1.22 0.00 0.07 par:pre; +ratification ratification nom f s 0.28 1.08 0.28 1.08 +ratifie ratifier ver 0.80 1.22 0.04 0.07 ind:pre:3s; +ratifient ratifier ver 0.80 1.22 0.00 0.07 ind:pre:3p; +ratifier ratifier ver 0.80 1.22 0.30 0.27 inf; +ratifieront ratifier ver 0.80 1.22 0.02 0.00 ind:fut:3p; +ratifié ratifier ver m s 0.80 1.22 0.34 0.27 par:pas; +ratifiée ratifier ver f s 0.80 1.22 0.10 0.27 par:pas; +ratifiés ratifier ver m p 0.80 1.22 0.00 0.14 par:pas; +ratine ratine nom f s 0.00 0.47 0.00 0.47 +ratio ratio nom m s 0.40 0.00 0.40 0.00 +ratiocinait ratiociner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +ratiocinant ratiociner ver 0.00 0.14 0.00 0.07 par:pre; +ratiocination ratiocination nom f s 0.02 0.54 0.02 0.00 +ratiocinations ratiocination nom f p 0.02 0.54 0.00 0.54 +ratiocineur ratiocineur nom m s 0.01 0.14 0.01 0.14 +ration ration nom f s 3.54 8.18 2.24 5.95 +rational rational nom m s 0.02 0.00 0.02 0.00 +rationalisation rationalisation nom f s 0.08 0.20 0.08 0.20 +rationalise rationaliser ver 0.58 0.00 0.22 0.00 ind:pre:1s;ind:pre:3s; +rationaliser rationaliser ver 0.58 0.00 0.34 0.00 inf; +rationalisez rationaliser ver 0.58 0.00 0.01 0.00 ind:pre:2p; +rationalisme rationalisme nom m s 0.34 0.41 0.34 0.41 +rationaliste rationaliste nom s 0.14 0.27 0.14 0.20 +rationalistes rationaliste adj f p 0.01 0.47 0.00 0.07 +rationalisé rationaliser ver m s 0.58 0.00 0.01 0.00 par:pas; +rationalisée rationalisé adj f s 0.01 0.20 0.01 0.20 +rationalité rationalité nom f s 0.11 0.27 0.11 0.27 +rationne rationner ver 0.66 1.01 0.06 0.07 ind:pre:1s;ind:pre:3s; +rationnel rationnel adj m s 3.50 3.04 1.26 1.08 +rationnelle rationnel adj f s 3.50 3.04 1.73 1.42 +rationnellement rationnellement adv 0.41 0.41 0.41 0.41 +rationnelles rationnel adj f p 3.50 3.04 0.14 0.34 +rationnels rationnel adj m p 3.50 3.04 0.35 0.20 +rationnement rationnement nom m s 1.12 1.55 1.12 1.55 +rationner rationner ver 0.66 1.01 0.19 0.20 inf; +rationnez rationner ver 0.66 1.01 0.01 0.00 ind:pre:2p; +rationné rationner ver m s 0.66 1.01 0.20 0.41 par:pas; +rationnée rationner ver f s 0.66 1.01 0.02 0.14 par:pas; +rationnées rationner ver f p 0.66 1.01 0.02 0.00 par:pas; +rationnés rationner ver m p 0.66 1.01 0.17 0.20 par:pas; +rations ration nom f p 3.54 8.18 1.30 2.23 +ratissa ratisser ver 3.45 5.27 0.00 0.20 ind:pas:3s; +ratissage ratissage nom m s 0.40 0.20 0.40 0.20 +ratissaient ratisser ver 3.45 5.27 0.01 0.20 ind:imp:3p; +ratissais ratisser ver 3.45 5.27 0.01 0.07 ind:imp:1s; +ratissait ratisser ver 3.45 5.27 0.03 0.47 ind:imp:3s; +ratissant ratisser ver 3.45 5.27 0.01 0.27 par:pre; +ratisse ratisser ver 3.45 5.27 0.81 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ratissent ratisser ver 3.45 5.27 0.58 0.00 ind:pre:3p; +ratisser ratisser ver 3.45 5.27 1.13 1.28 inf; +ratisserai ratisser ver 3.45 5.27 0.01 0.00 ind:fut:1s; +ratisseront ratisser ver 3.45 5.27 0.02 0.00 ind:fut:3p; +ratisseur ratisseur adj m s 0.00 0.07 0.00 0.07 +ratissez ratisser ver 3.45 5.27 0.27 0.00 imp:pre:2p; +ratissons ratisser ver 3.45 5.27 0.13 0.00 imp:pre:1p;ind:pre:1p; +ratissé ratisser ver m s 3.45 5.27 0.40 1.49 par:pas; +ratissée ratisser ver f s 3.45 5.27 0.01 0.41 par:pas; +ratissées ratisser ver f p 3.45 5.27 0.00 0.27 par:pas; +ratissés ratisser ver m p 3.45 5.27 0.01 0.07 par:pas; +ratite ratite nom m s 0.05 0.00 0.03 0.00 +ratites ratite nom m p 0.05 0.00 0.02 0.00 +ratière ratière nom f s 0.12 1.49 0.12 1.42 +ratières ratière nom f p 0.12 1.49 0.00 0.07 +raton raton nom m s 1.70 5.41 1.37 3.11 +ratonnade ratonnade nom f s 0.01 0.34 0.00 0.14 +ratonnades ratonnade nom f p 0.01 0.34 0.01 0.20 +ratonnent ratonner ver 0.00 0.20 0.00 0.07 ind:pre:3p; +ratonner ratonner ver 0.00 0.20 0.00 0.14 inf; +ratons raton nom m p 1.70 5.41 0.33 2.30 +rats rat nom m p 45.60 37.64 21.39 16.82 +rattacha rattacher ver 2.13 12.03 0.00 0.07 ind:pas:3s; +rattachaient rattacher ver 2.13 12.03 0.00 0.68 ind:imp:3p; +rattachais rattacher ver 2.13 12.03 0.00 0.14 ind:imp:1s; +rattachait rattacher ver 2.13 12.03 0.05 2.43 ind:imp:3s; +rattachant rattacher ver 2.13 12.03 0.11 0.27 par:pre; +rattache rattacher ver 2.13 12.03 0.70 1.08 imp:pre:2s;ind:pre:3s; +rattachement rattachement nom m s 0.13 0.68 0.13 0.68 +rattachent rattacher ver 2.13 12.03 0.07 0.68 ind:pre:3p; +rattacher rattacher ver 2.13 12.03 0.37 2.30 inf;; +rattachera rattacher ver 2.13 12.03 0.03 0.07 ind:fut:3s; +rattacherait rattacher ver 2.13 12.03 0.00 0.07 cnd:pre:3s; +rattachez rattacher ver 2.13 12.03 0.03 0.07 imp:pre:2p;ind:pre:2p; +rattachions rattacher ver 2.13 12.03 0.00 0.07 ind:imp:1p; +rattachons rattacher ver 2.13 12.03 0.00 0.07 ind:pre:1p; +rattachât rattacher ver 2.13 12.03 0.00 0.07 sub:imp:3s; +rattaché rattacher ver m s 2.13 12.03 0.45 1.35 par:pas; +rattachée rattacher ver f s 2.13 12.03 0.08 1.08 par:pas; +rattachées rattacher ver f p 2.13 12.03 0.06 0.34 par:pas; +rattachés rattacher ver m p 2.13 12.03 0.17 1.22 par:pas; +ratte ratte nom f s 0.01 0.00 0.01 0.00 +ratèrent rater ver 80.45 22.70 0.00 0.14 ind:pas:3p; +rattrapa rattraper ver 38.32 39.39 0.05 3.99 ind:pas:3s; +rattrapage rattrapage nom m s 0.88 0.68 0.84 0.61 +rattrapages rattrapage nom m p 0.88 0.68 0.04 0.07 +rattrapai rattraper ver 38.32 39.39 0.00 0.41 ind:pas:1s; +rattrapaient rattraper ver 38.32 39.39 0.03 0.34 ind:imp:3p; +rattrapais rattraper ver 38.32 39.39 0.06 0.41 ind:imp:1s; +rattrapait rattraper ver 38.32 39.39 0.19 1.82 ind:imp:3s; +rattrapant rattraper ver 38.32 39.39 0.05 1.42 par:pre; +rattrape rattraper ver 38.32 39.39 7.35 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rattrapent rattraper ver 38.32 39.39 0.91 0.47 ind:pre:3p; +rattraper rattraper ver 38.32 39.39 16.35 16.49 inf; +rattrapera rattraper ver 38.32 39.39 1.67 0.54 ind:fut:3s; +rattraperai rattraper ver 38.32 39.39 1.41 0.34 ind:fut:1s; +rattraperaient rattraper ver 38.32 39.39 0.04 0.00 cnd:pre:3p; +rattraperais rattraper ver 38.32 39.39 0.23 0.20 cnd:pre:1s;cnd:pre:2s; +rattraperait rattraper ver 38.32 39.39 0.15 0.54 cnd:pre:3s; +rattraperas rattraper ver 38.32 39.39 0.53 0.27 ind:fut:2s; +rattraperez rattraper ver 38.32 39.39 0.34 0.14 ind:fut:2p; +rattraperons rattraper ver 38.32 39.39 0.42 0.14 ind:fut:1p; +rattraperont rattraper ver 38.32 39.39 0.50 0.07 ind:fut:3p; +rattrapes rattraper ver 38.32 39.39 0.37 0.07 ind:pre:2s; +rattrapez rattraper ver 38.32 39.39 3.11 0.07 imp:pre:2p;ind:pre:2p; +rattrapiez rattraper ver 38.32 39.39 0.01 0.00 ind:imp:2p; +rattrapions rattraper ver 38.32 39.39 0.00 0.41 ind:imp:1p; +rattrapons rattraper ver 38.32 39.39 0.82 0.07 imp:pre:1p;ind:pre:1p; +rattrapât rattraper ver 38.32 39.39 0.00 0.07 sub:imp:3s; +rattrapèrent rattraper ver 38.32 39.39 0.02 0.41 ind:pas:3p; +rattrapé rattraper ver m s 38.32 39.39 2.30 3.85 par:pas; +rattrapée rattraper ver f s 38.32 39.39 0.92 1.55 par:pas; +rattrapées rattraper ver f p 38.32 39.39 0.00 0.27 par:pas; +rattrapés rattraper ver m p 38.32 39.39 0.49 0.74 par:pas; +raté rater ver m s 80.45 22.70 34.33 7.70 par:pas; +ratée rater ver f s 80.45 22.70 1.59 1.08 par:pas; +ratées raté adj f p 4.52 4.05 0.44 0.34 +ratura raturer ver 0.04 2.09 0.00 0.14 ind:pas:3s; +raturai raturer ver 0.04 2.09 0.00 0.07 ind:pas:1s; +raturais raturer ver 0.04 2.09 0.00 0.07 ind:imp:1s; +raturait raturer ver 0.04 2.09 0.00 0.14 ind:imp:3s; +rature raturer ver 0.04 2.09 0.02 0.07 ind:pre:3s; +raturer raturer ver 0.04 2.09 0.00 0.41 inf; +ratures rature nom f p 0.13 1.96 0.11 1.49 +raturé raturer ver m s 0.04 2.09 0.02 0.54 par:pas; +raturée raturer ver f s 0.04 2.09 0.00 0.41 par:pas; +raturées raturer ver f p 0.04 2.09 0.00 0.14 par:pas; +raturés raturer ver m p 0.04 2.09 0.00 0.14 par:pas; +ratés raté nom m p 8.45 4.93 1.27 1.96 +raucité raucité nom f s 0.00 0.61 0.00 0.61 +rauqua rauquer ver 0.00 0.20 0.00 0.07 ind:pas:3s; +rauque rauque adj s 0.44 18.85 0.30 14.80 +rauquement rauquement nom m s 0.00 0.20 0.00 0.20 +rauques rauque adj p 0.44 18.85 0.14 4.05 +ravage ravager ver 3.65 9.26 0.34 0.54 ind:pre:3s; +ravagea ravager ver 3.65 9.26 0.14 0.34 ind:pas:3s; +ravageaient ravager ver 3.65 9.26 0.16 0.68 ind:imp:3p; +ravageais ravager ver 3.65 9.26 0.01 0.00 ind:imp:2s; +ravageait ravager ver 3.65 9.26 0.02 1.22 ind:imp:3s; +ravageant ravageant adj m s 0.05 0.27 0.05 0.20 +ravageante ravageant adj f s 0.05 0.27 0.00 0.07 +ravagent ravager ver 3.65 9.26 0.76 0.41 ind:pre:3p; +ravager ravager ver 3.65 9.26 0.28 1.22 inf; +ravagera ravager ver 3.65 9.26 0.02 0.00 ind:fut:3s; +ravagerai ravager ver 3.65 9.26 0.00 0.07 ind:fut:1s; +ravageraient ravager ver 3.65 9.26 0.00 0.07 cnd:pre:3p; +ravages ravage nom m p 2.16 5.54 2.04 5.14 +ravageur ravageur adj m s 0.12 1.42 0.07 1.01 +ravageurs ravageur adj m p 0.12 1.42 0.02 0.14 +ravageuse ravageuse nom f s 0.03 0.00 0.03 0.00 +ravageuses ravageur adj f p 0.12 1.42 0.01 0.00 +ravagez ravager ver 3.65 9.26 0.14 0.00 ind:pre:2p; +ravagèrent ravager ver 3.65 9.26 0.00 0.14 ind:pas:3p; +ravagé ravager ver m s 3.65 9.26 1.03 2.64 par:pas; +ravagée ravager ver f s 3.65 9.26 0.21 0.74 par:pas; +ravagées ravager ver f p 3.65 9.26 0.06 0.27 par:pas; +ravagés ravager ver m p 3.65 9.26 0.36 0.95 par:pas; +raval raval nom m s 0.20 0.00 0.20 0.00 +ravala ravaler ver 1.42 8.99 0.00 0.88 ind:pas:3s; +ravalai ravaler ver 1.42 8.99 0.01 0.20 ind:pas:1s; +ravalaient ravaler ver 1.42 8.99 0.00 0.14 ind:imp:3p; +ravalais ravaler ver 1.42 8.99 0.00 0.14 ind:imp:1s; +ravalait ravaler ver 1.42 8.99 0.00 0.81 ind:imp:3s; +ravalant ravaler ver 1.42 8.99 0.11 0.95 par:pre; +ravale ravaler ver 1.42 8.99 0.46 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ravalement ravalement nom m s 0.19 0.41 0.19 0.41 +ravalent ravaler ver 1.42 8.99 0.10 0.14 ind:pre:3p; +ravaler ravaler ver 1.42 8.99 0.47 2.09 inf; +ravalera ravaler ver 1.42 8.99 0.01 0.00 ind:fut:3s; +ravaleront ravaler ver 1.42 8.99 0.00 0.07 ind:fut:3p; +ravales ravaler ver 1.42 8.99 0.04 0.07 ind:pre:2s; +ravaleur ravaleur nom m s 0.00 0.07 0.00 0.07 +ravalez ravaler ver 1.42 8.99 0.01 0.00 imp:pre:2p; +ravalons ravaler ver 1.42 8.99 0.02 0.00 imp:pre:1p; +ravalât ravaler ver 1.42 8.99 0.00 0.07 sub:imp:3s; +ravalé ravaler ver m s 1.42 8.99 0.07 1.01 par:pas; +ravalée ravaler ver f s 1.42 8.99 0.02 0.34 par:pas; +ravalées ravaler ver f p 1.42 8.99 0.10 0.34 par:pas; +ravalés ravaler ver m p 1.42 8.99 0.00 0.41 par:pas; +ravaudage ravaudage nom m s 0.01 0.20 0.01 0.20 +ravaudait ravauder ver 0.00 1.08 0.00 0.34 ind:imp:3s; +ravaudant ravauder ver 0.00 1.08 0.00 0.14 par:pre; +ravaude ravauder ver 0.00 1.08 0.00 0.14 ind:pre:3s; +ravauder ravauder ver 0.00 1.08 0.00 0.27 inf; +ravaudé ravauder ver m s 0.00 1.08 0.00 0.07 par:pas; +ravaudées ravauder ver f p 0.00 1.08 0.00 0.07 par:pas; +ravaudés ravauder ver m p 0.00 1.08 0.00 0.07 par:pas; +rave rave nom f s 1.57 1.01 1.27 0.00 +ravenelles ravenelle nom f p 0.00 0.14 0.00 0.14 +ravennate ravennate adj s 0.00 0.07 0.00 0.07 +raves rave nom f p 1.57 1.01 0.30 1.01 +ravi ravir ver m s 72.67 27.91 40.64 11.42 par:pas; +ravie ravir ver f s 72.67 27.91 23.25 5.20 par:pas; +ravier ravier nom m s 0.00 1.01 0.00 0.61 +raviers ravier nom m p 0.00 1.01 0.00 0.41 +ravies ravir ver f p 72.67 27.91 0.82 0.47 par:pas; +ravigotait ravigoter ver 0.02 0.07 0.00 0.07 ind:imp:3s; +ravigotant ravigotant adj m s 0.02 0.14 0.02 0.07 +ravigotants ravigotant adj m p 0.02 0.14 0.00 0.07 +ravigote ravigote nom f s 0.00 0.14 0.00 0.14 +ravigoter ravigoter ver 0.02 0.07 0.02 0.00 inf; +ravin ravin nom m s 4.93 11.35 4.30 9.12 +ravina raviner ver 0.08 2.57 0.04 0.07 ind:pas:3s; +ravinaient raviner ver 0.08 2.57 0.00 0.14 ind:imp:3p; +ravinant raviner ver 0.08 2.57 0.00 0.14 par:pre; +ravine ravine nom f s 0.30 0.95 0.25 0.54 +ravinement ravinement nom m s 0.00 0.14 0.00 0.07 +ravinements ravinement nom m p 0.00 0.14 0.00 0.07 +ravinent raviner ver 0.08 2.57 0.00 0.07 ind:pre:3p; +raviner raviner ver 0.08 2.57 0.00 0.14 inf; +ravines ravine nom f p 0.30 0.95 0.05 0.41 +ravins ravin nom m p 4.93 11.35 0.63 2.23 +raviné raviner ver m s 0.08 2.57 0.00 0.61 par:pas; +ravinée raviner ver f s 0.08 2.57 0.01 0.54 par:pas; +ravinées raviner ver f p 0.08 2.57 0.01 0.27 par:pas; +ravinés raviner ver m p 0.08 2.57 0.01 0.54 par:pas; +ravioli ravioli nom m 2.71 1.22 0.95 0.88 +raviolis ravioli nom m p 2.71 1.22 1.76 0.34 +ravir ravir ver 72.67 27.91 2.08 3.45 inf; +ravirait ravir ver 72.67 27.91 0.13 0.20 cnd:pre:3s; +ravirent ravir ver 72.67 27.91 0.00 0.20 ind:pas:3p; +raviront ravir ver 72.67 27.91 0.11 0.00 ind:fut:3p; +ravis ravir ver m p 72.67 27.91 3.81 2.50 imp:pre:2s;par:pas; +ravisa raviser ver 0.99 5.95 0.02 2.57 ind:pas:3s; +ravisais raviser ver 0.99 5.95 0.04 0.00 ind:imp:1s;ind:imp:2s; +ravisait raviser ver 0.99 5.95 0.02 0.34 ind:imp:3s; +ravisant raviser ver 0.99 5.95 0.10 1.08 par:pre; +ravise raviser ver 0.99 5.95 0.22 0.81 ind:pre:1s;ind:pre:3s; +ravisent raviser ver 0.99 5.95 0.02 0.00 ind:pre:3p; +raviser raviser ver 0.99 5.95 0.07 0.61 inf; +ravisera raviser ver 0.99 5.95 0.03 0.00 ind:fut:3s; +raviserais raviser ver 0.99 5.95 0.04 0.00 cnd:pre:2s; +ravises raviser ver 0.99 5.95 0.02 0.00 ind:pre:2s; +ravisez raviser ver 0.99 5.95 0.02 0.00 imp:pre:2p;ind:pre:2p; +ravissaient ravir ver 72.67 27.91 0.02 0.34 ind:imp:3p; +ravissait ravir ver 72.67 27.91 0.02 2.43 ind:imp:3s; +ravissant ravissant adj m s 15.85 13.51 4.62 4.59 +ravissante ravissant adj f s 15.85 13.51 9.22 5.88 +ravissantes ravissant adj f p 15.85 13.51 1.47 1.62 +ravissants ravissant adj m p 15.85 13.51 0.54 1.42 +ravisse ravir ver 72.67 27.91 0.27 0.00 sub:pre:3s; +ravissement ravissement nom m s 1.34 6.55 1.34 6.49 +ravissements ravissement nom m p 1.34 6.55 0.00 0.07 +ravissent ravir ver 72.67 27.91 0.11 0.54 ind:pre:3p; +ravisseur ravisseur nom m s 5.75 1.69 2.21 1.01 +ravisseurs ravisseur nom m p 5.75 1.69 3.52 0.68 +ravisseuse ravisseur nom f s 5.75 1.69 0.03 0.00 +ravisé raviser ver m s 0.99 5.95 0.32 0.34 par:pas; +ravisée raviser ver f s 0.99 5.95 0.07 0.20 par:pas; +ravit ravir ver 72.67 27.91 1.15 1.01 ind:pre:3s;ind:pas:3s; +ravitaillaient ravitailler ver 1.49 3.85 0.00 0.34 ind:imp:3p; +ravitaillait ravitailler ver 1.49 3.85 0.00 0.27 ind:imp:3s; +ravitaille ravitailler ver 1.49 3.85 0.36 0.34 imp:pre:2s;ind:pre:3s; +ravitaillement ravitaillement nom m s 2.83 12.57 2.66 11.42 +ravitaillements ravitaillement nom m p 2.83 12.57 0.17 1.15 +ravitaillent ravitailler ver 1.49 3.85 0.05 0.14 ind:pre:3p; +ravitailler ravitailler ver 1.49 3.85 0.82 1.69 inf; +ravitaillera ravitailler ver 1.49 3.85 0.05 0.00 ind:fut:3s; +ravitaillerait ravitailler ver 1.49 3.85 0.01 0.14 cnd:pre:3s; +ravitailleras ravitailler ver 1.49 3.85 0.00 0.07 ind:fut:2s; +ravitaillerez ravitailler ver 1.49 3.85 0.01 0.00 ind:fut:2p; +ravitailleur ravitailleur nom m s 0.85 0.20 0.75 0.14 +ravitailleurs ravitailleur nom m p 0.85 0.20 0.09 0.07 +ravitailleuse ravitailleur nom f s 0.85 0.20 0.01 0.00 +ravitaillons ravitailler ver 1.49 3.85 0.01 0.00 ind:pre:1p; +ravitaillé ravitailler ver m s 1.49 3.85 0.08 0.41 par:pas; +ravitaillée ravitailler ver f s 1.49 3.85 0.01 0.27 par:pas; +ravitaillées ravitailler ver f p 1.49 3.85 0.01 0.20 par:pas; +ravitaillés ravitailler ver m p 1.49 3.85 0.08 0.00 par:pas; +raviva raviver ver 2.17 4.46 0.01 0.47 ind:pas:3s; +ravivaient raviver ver 2.17 4.46 0.00 0.07 ind:imp:3p; +ravivait raviver ver 2.17 4.46 0.00 0.61 ind:imp:3s; +ravivant raviver ver 2.17 4.46 0.11 0.14 par:pre; +ravive raviver ver 2.17 4.46 0.70 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ravivement ravivement nom m s 0.00 0.07 0.00 0.07 +ravivent raviver ver 2.17 4.46 0.12 0.27 ind:pre:3p; +raviver raviver ver 2.17 4.46 0.79 1.62 inf; +ravivez raviver ver 2.17 4.46 0.16 0.00 imp:pre:2p;ind:pre:2p; +ravivât raviver ver 2.17 4.46 0.00 0.07 sub:imp:3s; +ravivé raviver ver m s 2.17 4.46 0.12 0.47 par:pas; +ravivée raviver ver f s 2.17 4.46 0.14 0.47 par:pas; +ravoir ravoir ver 1.16 1.08 1.16 1.08 inf; +ray_grass ray_grass nom m 0.00 0.14 0.00 0.14 +raya rayer ver 7.42 11.22 0.02 0.54 ind:pas:3s; +rayables rayable adj p 0.00 0.07 0.00 0.07 +rayaient rayer ver 7.42 11.22 0.00 0.27 ind:imp:3p; +rayait rayer ver 7.42 11.22 0.02 0.61 ind:imp:3s; +rayant rayer ver 7.42 11.22 0.14 0.41 par:pre; +raye rayer ver 7.42 11.22 0.83 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +rayent rayer ver 7.42 11.22 0.09 0.07 ind:pre:3p; +rayer rayer ver 7.42 11.22 2.26 1.76 inf; +rayera rayer ver 7.42 11.22 0.02 0.00 ind:fut:3s; +rayerai rayer ver 7.42 11.22 0.02 0.00 ind:fut:1s; +rayerais rayer ver 7.42 11.22 0.00 0.07 cnd:pre:1s; +rayeras rayer ver 7.42 11.22 0.10 0.00 ind:fut:2s; +rayeront rayer ver 7.42 11.22 0.01 0.00 ind:fut:3p; +rayez rayer ver 7.42 11.22 0.60 0.14 imp:pre:2p;ind:pre:2p; +rayions rayer ver 7.42 11.22 0.00 0.07 ind:imp:1p; +rayon_éclair rayon_éclair nom m s 0.00 0.07 0.00 0.07 +rayon rayon nom m s 27.00 55.74 19.32 27.03 +rayonna rayonner ver 2.28 10.34 0.00 0.14 ind:pas:3s; +rayonnage rayonnage nom m s 0.06 4.73 0.01 0.88 +rayonnages rayonnage nom m p 0.06 4.73 0.05 3.85 +rayonnaient rayonner ver 2.28 10.34 0.00 1.01 ind:imp:3p; +rayonnais rayonner ver 2.28 10.34 0.03 0.07 ind:imp:1s; +rayonnait rayonner ver 2.28 10.34 0.32 3.85 ind:imp:3s; +rayonnant rayonnant adj m s 1.65 4.80 0.50 1.22 +rayonnante rayonnant adj f s 1.65 4.80 1.00 2.70 +rayonnantes rayonnant adj f p 1.65 4.80 0.03 0.41 +rayonnants rayonnant adj m p 1.65 4.80 0.12 0.47 +rayonne rayonner ver 2.28 10.34 1.00 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rayonnement rayonnement nom m s 1.07 6.69 1.02 6.55 +rayonnements rayonnement nom m p 1.07 6.69 0.05 0.14 +rayonnent rayonner ver 2.28 10.34 0.05 0.47 ind:pre:3p; +rayonner rayonner ver 2.28 10.34 0.21 0.81 inf; +rayonnera rayonner ver 2.28 10.34 0.01 0.07 ind:fut:3s; +rayonnerait rayonner ver 2.28 10.34 0.00 0.20 cnd:pre:3s; +rayonnes rayonner ver 2.28 10.34 0.25 0.07 ind:pre:2s; +rayonneur rayonneur nom m s 0.03 0.00 0.03 0.00 +rayonnez rayonner ver 2.28 10.34 0.06 0.00 imp:pre:2p;ind:pre:2p; +rayonné rayonner ver m s 2.28 10.34 0.05 0.07 par:pas; +rayons rayon nom m p 27.00 55.74 7.62 28.04 +rayât rayer ver 7.42 11.22 0.00 0.07 sub:imp:3s; +rayé rayer ver m s 7.42 11.22 2.09 3.04 par:pas; +rayée rayé adj f s 2.02 6.82 0.98 1.15 +rayées rayer ver f p 7.42 11.22 0.20 0.47 par:pas; +rayure rayure nom f s 2.82 7.36 0.36 0.61 +rayures rayure nom f p 2.82 7.36 2.46 6.76 +rayés rayer ver m p 7.42 11.22 0.30 1.01 par:pas; +raz_de_marée raz_de_marée nom m 0.57 0.20 0.57 0.20 +raz raz nom m 0.23 1.28 0.23 1.28 +razzia razzia nom f s 0.55 1.28 0.45 0.95 +razziais razzier ver 0.00 0.27 0.00 0.07 ind:imp:1s; +razzias razzia nom f p 0.55 1.28 0.10 0.34 +razzier razzier ver 0.00 0.27 0.00 0.20 inf; +reaboyer reaboyer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +rebalbutiant rebalbutiant adj m s 0.00 0.07 0.00 0.07 +rebaptême rebaptême nom m s 0.00 0.07 0.00 0.07 +re_belote re_belote ono 0.01 0.00 0.01 0.00 +rebiberonner rebiberonner ver 0.00 0.07 0.00 0.07 inf; +rebide rebide nom m s 0.00 0.07 0.00 0.07 +reblinder reblinder ver 0.00 0.07 0.00 0.07 inf; +rebombardon rebombardon nom m p 0.01 0.00 0.01 0.00 +reboucler reboucler ver 0.14 1.01 0.01 0.00 inf; +recabosser recabosser ver m s 0.00 0.07 0.00 0.07 par:pas; +recafé recafé adj 0.00 0.07 0.00 0.07 +recailloux recailloux nom m p 0.00 0.07 0.00 0.07 +recalibrer recalibrer ver 0.01 0.00 0.01 0.00 ind:imp:1s; +recasser recasser ver f s 0.24 0.07 0.01 0.00 par:pas; +rechanteur rechanteur nom m s 0.01 0.00 0.01 0.00 +rechiader rechiader ver 0.00 0.07 0.00 0.07 inf; +reciseler reciseler ver 0.00 0.07 0.00 0.07 ind:pre:3s; +reclasser reclasser ver 0.09 0.20 0.00 0.07 ind:pre:3s; +reclasser reclasser ver 0.09 0.20 0.00 0.07 inf; +reconnaître reconnaître ver 140.73 229.19 0.00 0.07 inf; +recontacter recontacter ver 0.38 0.07 0.03 0.00 ind:pre:1s; +recontacter recontacter ver 0.38 0.07 0.01 0.00 ind:pre:3p; +recontacter recontacter ver 0.38 0.07 0.01 0.00 inf; +recontacter recontacter ver 0.38 0.07 0.06 0.00 ind:fut:1s; +reconvaincre reconvaincre ver 0.00 0.07 0.00 0.07 ind:fut:3s; +recoup recoup nom m s 0.00 0.07 0.00 0.07 +recrac recrac nom m s 0.00 0.07 0.00 0.07 +recreuser recreuser ver m p 0.14 0.20 0.00 0.07 par:pas; +recroquis recroquis nom m 0.00 0.07 0.00 0.07 +recréation recréation nom f s 0.04 0.27 0.03 0.07 +recréer recréer ver f s 2.23 4.39 0.00 0.07 par:pas; +recul recul nom m s 3.59 15.61 0.00 0.07 +rediffuser rediffuser ver 0.20 0.07 0.01 0.00 ind:pre:2s; +redose redose nom f s 0.00 0.07 0.00 0.07 +redrapeau redrapeau nom m s 0.00 0.07 0.00 0.07 +redéchirer redéchirer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +redéclic redéclic nom m s 0.00 0.07 0.00 0.07 +redécorer redécorer ver 0.08 0.00 0.01 0.00 ind:pre:1s; +redécorer redécorer ver 0.08 0.00 0.07 0.00 inf; +redéménager redéménager ver 0.00 0.07 0.00 0.07 inf; +reexpliquer reexpliquer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +refaim refaim nom f s 0.14 0.00 0.14 0.00 +refrapper refrapper ver 0.07 0.14 0.00 0.07 ind:pre:3s; +refrapper refrapper ver m s 0.07 0.14 0.01 0.07 par:pas; +refuser refuser ver 143.96 152.77 0.00 0.07 ind:pre:1s; +regomme regomme nom f s 0.00 0.07 0.00 0.07 +rehistoire rehistoire nom f p 0.00 0.07 0.00 0.07 +rehygiène rehygiène nom f s 0.00 0.07 0.00 0.07 +re_inter re_inter nom m s 0.00 0.07 0.00 0.07 +rekidnapper rekidnapper ver 0.01 0.00 0.01 0.00 ind:imp:1s; +relettre relettre nom f s 0.00 0.07 0.00 0.07 +remain remain nom f s 0.00 0.07 0.00 0.07 +rematérialisation rematérialisation nom f s 0.01 0.00 0.01 0.00 +remorphine remorphine nom f s 0.00 0.07 0.00 0.07 +rené rené adj m p 0.01 0.00 0.01 0.00 +repayer repayer ver 0.23 0.41 0.00 0.07 imp:pre:2s; +repenser repenser ver 9.68 12.16 0.01 0.00 inf; +repotasser repotasser ver m s 0.00 0.07 0.00 0.07 par:pas; +reprogrammation reprogrammation nom f s 0.01 0.00 0.01 0.00 +reprogrammer reprogrammer ver f s 1.11 0.00 0.01 0.00 par:pas; +reraconter reraconter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +reraconter reraconter ver f p 0.00 0.14 0.00 0.07 par:pas; +reremplir reremplir ver 0.01 0.07 0.01 0.07 inf; +rerentrer rerentrer ver 0.05 0.07 0.05 0.07 inf; +rerespirer rerespirer ver 0.00 0.07 0.00 0.07 inf; +reressortir reressortir ver 0.00 0.07 0.00 0.07 ind:imp:3s; +reretirer reretirer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +rerigole rerigole nom f s 0.00 0.07 0.00 0.07 +rerécurer rerécurer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +reréparer reréparer ver 0.01 0.00 0.01 0.00 inf; +rerêvé rerêvé adj m s 0.00 0.07 0.00 0.07 +resaluer resaluer ver m s 0.00 0.07 0.00 0.07 par:pas; +resavater resavater ver m s 0.01 0.00 0.01 0.00 par:pas; +resculpter resculpter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +resevrage resevrage nom m s 0.00 0.07 0.00 0.07 +resigner resigner ver 0.02 0.00 0.02 0.00 inf; +resommeil resommeil nom m s 0.00 0.07 0.00 0.07 +resonner resonner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +restructuration restructuration nom f s 0.91 0.34 0.00 0.07 +reséparé reséparé adj m p 0.00 0.07 0.00 0.07 +retaloche retaloche nom f s 0.00 0.14 0.00 0.14 +retitiller retitiller ver 0.00 0.14 0.00 0.14 ind:pre:3s; +retraité retraité adj f s 0.68 1.15 0.00 0.07 +retravail retravail nom m s 0.00 0.07 0.00 0.07 +retuage retuage nom m s 0.04 0.00 0.04 0.00 +retuer retuer ver 0.08 0.07 0.07 0.07 inf; +retu retu adj f p 0.01 0.00 0.01 0.00 +reébranler reébranler ver m p 0.00 0.07 0.00 0.07 par:pas; +reéchanger reéchanger ver 0.01 0.00 0.01 0.00 inf; +revouloir revouloir ver 0.45 0.41 0.04 0.00 ind:pre:2s; +revie revie nom f s 0.00 0.07 0.00 0.07 +revisiter revisiter ver 0.21 0.61 0.00 0.07 ind:pre:3s; +revivre revivre ver 10.37 20.68 0.00 0.07 ind:pre:3s; +revérifier revérifier ver 0.67 0.00 0.10 0.00 inf; +revérifié revérifié adj m s 0.34 0.07 0.10 0.00 +re r adv 21.43 7.50 21.43 7.50 +reître reître nom m s 0.00 1.62 0.00 0.68 +reîtres reître nom m p 0.00 1.62 0.00 0.95 +reader reader nom m s 0.11 0.07 0.11 0.07 +ready_made ready_made nom m s 0.00 0.07 0.00 0.07 +rebab rebab nom m s 0.00 0.07 0.00 0.07 +rebaise rebaiser ver 0.12 0.27 0.12 0.00 ind:pre:1s;ind:pre:3s; +rebaisent rebaiser ver 0.12 0.27 0.00 0.07 ind:pre:3p; +rebaiser rebaiser ver 0.12 0.27 0.00 0.07 inf; +rebaissa rebaisser ver 0.01 0.74 0.00 0.27 ind:pas:3s; +rebaissait rebaisser ver 0.01 0.74 0.00 0.07 ind:imp:3s; +rebaisse rebaisser ver 0.01 0.74 0.01 0.27 imp:pre:2s;ind:pre:3s; +rebaissé rebaisser ver m s 0.01 0.74 0.00 0.14 par:pas; +rebaisé rebaiser ver m s 0.12 0.27 0.00 0.14 par:pas; +rebander rebander ver 0.01 0.14 0.01 0.14 inf; +rebaptisa rebaptiser ver 0.71 0.88 0.03 0.07 ind:pas:3s; +rebaptise rebaptiser ver 0.71 0.88 0.04 0.00 ind:pre:1s;ind:pre:3s; +rebaptiser rebaptiser ver 0.71 0.88 0.23 0.14 inf; +rebaptisé rebaptiser ver m s 0.71 0.88 0.18 0.34 par:pas; +rebaptisée rebaptiser ver f s 0.71 0.88 0.22 0.27 par:pas; +rebaptisées rebaptiser ver f p 0.71 0.88 0.00 0.07 par:pas; +rebarré rebarré adj m s 0.00 0.20 0.00 0.20 +rebasculait rebasculer ver 0.01 0.20 0.00 0.07 ind:imp:3s; +rebascule rebasculer ver 0.01 0.20 0.01 0.07 ind:pre:1s;ind:pre:3s; +rebasculera rebasculer ver 0.01 0.20 0.00 0.07 ind:fut:3s; +rebat rebattre ver 0.22 1.49 0.11 0.20 ind:pre:3s; +rebats rebattre ver 0.22 1.49 0.02 0.00 ind:pre:1s;ind:pre:2s; +rebattait rebattre ver 0.22 1.49 0.00 0.27 ind:imp:3s; +rebattent rebattre ver 0.22 1.49 0.01 0.07 ind:pre:3p; +rebattez rebattre ver 0.22 1.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +rebattit rebattre ver 0.22 1.49 0.00 0.07 ind:pas:3s; +rebattre rebattre ver 0.22 1.49 0.04 0.34 inf; +rebattu rebattu adj m s 0.02 0.34 0.02 0.00 +rebattue rebattu adj f s 0.02 0.34 0.00 0.20 +rebattues rebattre ver f p 0.22 1.49 0.00 0.07 par:pas; +rebattus rebattu adj m p 0.02 0.34 0.00 0.07 +rebec rebec nom m s 0.01 0.00 0.01 0.00 +rebecter rebecter ver 0.00 0.41 0.00 0.20 inf; +rebecté rebecter ver m s 0.00 0.41 0.00 0.20 par:pas; +rebella rebeller ver 3.77 1.62 0.02 0.07 ind:pas:3s; +rebellaient rebeller ver 3.77 1.62 0.03 0.07 ind:imp:3p; +rebellais rebeller ver 3.77 1.62 0.04 0.07 ind:imp:1s;ind:imp:2s; +rebellait rebeller ver 3.77 1.62 0.03 0.07 ind:imp:3s; +rebellant rebeller ver 3.77 1.62 0.01 0.00 par:pre; +rebelle rebelle adj s 5.95 4.32 3.73 2.77 +rebellent rebeller ver 3.77 1.62 0.76 0.00 ind:pre:3p; +rebeller rebeller ver 3.77 1.62 0.82 0.41 inf; +rebelles rebelle nom p 8.66 6.08 6.41 4.26 +rebellez rebeller ver 3.77 1.62 0.03 0.07 imp:pre:2p;ind:pre:2p; +rebellât rebeller ver 3.77 1.62 0.00 0.07 sub:imp:3s; +rebellèrent rebeller ver 3.77 1.62 0.04 0.00 ind:pas:3p; +rebellé rebeller ver m s 3.77 1.62 0.47 0.20 par:pas; +rebellée rebeller ver f s 3.77 1.62 0.15 0.27 par:pas; +rebellés rebeller ver m p 3.77 1.62 0.19 0.00 par:pas; +rebelote rebelote ono 0.27 0.68 0.27 0.68 +rebiffa rebiffer ver 0.29 3.58 0.01 0.20 ind:pas:3s; +rebiffai rebiffer ver 0.29 3.58 0.00 0.07 ind:pas:1s; +rebiffaient rebiffer ver 0.29 3.58 0.00 0.20 ind:imp:3p; +rebiffais rebiffer ver 0.29 3.58 0.01 0.00 ind:imp:2s; +rebiffait rebiffer ver 0.29 3.58 0.00 0.20 ind:imp:3s; +rebiffant rebiffer ver 0.29 3.58 0.00 0.07 par:pre; +rebiffe rebiffer ver 0.29 3.58 0.14 1.49 ind:pre:1s;ind:pre:3s; +rebiffent rebiffer ver 0.29 3.58 0.03 0.20 ind:pre:3p; +rebiffer rebiffer ver 0.29 3.58 0.04 0.88 inf; +rebifferai rebiffer ver 0.29 3.58 0.01 0.00 ind:fut:1s; +rebiffes rebiffer ver 0.29 3.58 0.03 0.00 ind:pre:2s; +rebiffèrent rebiffer ver 0.29 3.58 0.00 0.07 ind:pas:3p; +rebiffé rebiffer ver m s 0.29 3.58 0.02 0.00 par:pas; +rebiffée rebiffer ver f s 0.29 3.58 0.01 0.20 par:pas; +rebiquaient rebiquer ver 0.00 0.74 0.00 0.34 ind:imp:3p; +rebiquait rebiquer ver 0.00 0.74 0.00 0.07 ind:imp:3s; +rebique rebiquer ver 0.00 0.74 0.00 0.20 imp:pre:2s;ind:pre:3s; +rebiquer rebiquer ver 0.00 0.74 0.00 0.07 inf; +rebiquée rebiquer ver f s 0.00 0.74 0.00 0.07 par:pas; +reblanchir reblanchir ver 0.00 0.07 0.00 0.07 inf; +reblochon reblochon nom m s 0.02 0.41 0.02 0.14 +reblochons reblochon nom m p 0.02 0.41 0.00 0.27 +rebloquer rebloquer ver 0.14 0.00 0.14 0.00 inf; +rebobiner rebobiner ver 0.01 0.00 0.01 0.00 inf; +reboire reboire ver 0.40 0.47 0.17 0.14 inf; +rebois reboire ver 0.40 0.47 0.00 0.07 ind:pre:1s; +reboise reboiser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +reboisement reboisement nom m s 0.10 0.14 0.10 0.14 +reboisées reboiser ver f p 0.00 0.14 0.00 0.07 par:pas; +reboit reboire ver 0.40 0.47 0.04 0.00 ind:pre:3s; +rebond rebond nom m s 0.62 0.74 0.55 0.68 +rebondi rebondir ver m s 3.42 10.68 0.47 0.81 par:pas; +rebondie rebondi adj f s 0.25 2.30 0.03 0.47 +rebondies rebondi adj f p 0.25 2.30 0.04 0.81 +rebondir rebondir ver 3.42 10.68 1.56 2.84 inf; +rebondira rebondir ver 3.42 10.68 0.05 0.00 ind:fut:3s; +rebondiraient rebondir ver 3.42 10.68 0.00 0.07 cnd:pre:3p; +rebondirait rebondir ver 3.42 10.68 0.01 0.07 cnd:pre:3s; +rebondirent rebondir ver 3.42 10.68 0.00 0.27 ind:pas:3p; +rebondis rebondi adj m p 0.25 2.30 0.14 0.34 +rebondissaient rebondir ver 3.42 10.68 0.27 0.74 ind:imp:3p; +rebondissais rebondir ver 3.42 10.68 0.00 0.14 ind:imp:1s; +rebondissait rebondir ver 3.42 10.68 0.03 1.55 ind:imp:3s; +rebondissant rebondissant adj m s 0.06 2.09 0.04 1.82 +rebondissante rebondissant adj f s 0.06 2.09 0.01 0.07 +rebondissantes rebondissant adj f p 0.06 2.09 0.01 0.07 +rebondissants rebondissant adj m p 0.06 2.09 0.00 0.14 +rebondisse rebondir ver 3.42 10.68 0.11 0.00 sub:pre:3s; +rebondissement rebondissement nom m s 0.50 1.89 0.27 0.68 +rebondissements rebondissement nom m p 0.50 1.89 0.22 1.22 +rebondissent rebondir ver 3.42 10.68 0.17 0.54 ind:pre:3p; +rebondit rebondir ver 3.42 10.68 0.65 3.31 ind:pre:3s;ind:pas:3s; +rebonds rebond nom m p 0.62 0.74 0.07 0.07 +rebonjour rebonjour nom m s 0.02 0.00 0.02 0.00 +rebooter rebooter ver 0.04 0.00 0.04 0.00 inf; +rebord rebord nom m s 2.69 18.65 2.66 17.30 +reborder reborder ver 0.01 0.07 0.01 0.00 inf; +rebords rebord nom m p 2.69 18.65 0.04 1.35 +rebordée reborder ver f s 0.01 0.07 0.00 0.07 par:pas; +rebâti rebâtir ver m s 0.97 2.36 0.04 0.41 par:pas; +rebâtie rebâtir ver f s 0.97 2.36 0.01 0.14 par:pas; +rebâties rebâtir ver f p 0.97 2.36 0.01 0.27 par:pas; +rebâtir rebâtir ver 0.97 2.36 0.82 0.88 inf; +rebâtirai rebâtir ver 0.97 2.36 0.01 0.00 ind:fut:1s; +rebâtirent rebâtir ver 0.97 2.36 0.00 0.07 ind:pas:3p; +rebâtirons rebâtir ver 0.97 2.36 0.01 0.00 ind:fut:1p; +rebâtis rebâtir ver m p 0.97 2.36 0.01 0.20 ind:pre:1s;par:pas; +rebâtissaient rebâtir ver 0.97 2.36 0.00 0.07 ind:imp:3p; +rebâtissant rebâtir ver 0.97 2.36 0.00 0.07 par:pre; +rebâtissent rebâtir ver 0.97 2.36 0.02 0.00 ind:pre:3p; +rebâtissons rebâtir ver 0.97 2.36 0.00 0.07 imp:pre:1p; +rebâtit rebâtir ver 0.97 2.36 0.05 0.20 ind:pre:3s;ind:pas:3s; +reboucha reboucher ver 0.80 1.42 0.00 0.20 ind:pas:3s; +rebouchait reboucher ver 0.80 1.42 0.00 0.07 ind:imp:3s; +rebouchant reboucher ver 0.80 1.42 0.00 0.07 par:pre; +rebouche reboucher ver 0.80 1.42 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebouchent reboucher ver 0.80 1.42 0.01 0.07 ind:pre:3p; +reboucher reboucher ver 0.80 1.42 0.36 0.47 inf; +reboucheront reboucher ver 0.80 1.42 0.10 0.00 ind:fut:3p; +rebouchez reboucher ver 0.80 1.42 0.04 0.00 imp:pre:2p; +rebouchèrent reboucher ver 0.80 1.42 0.00 0.07 ind:pas:3p; +rebouché reboucher ver m s 0.80 1.42 0.18 0.14 par:pas; +rebouchée reboucher ver f s 0.80 1.42 0.02 0.07 par:pas; +rebouchées reboucher ver f p 0.80 1.42 0.00 0.07 par:pas; +rebouchés reboucher ver m p 0.80 1.42 0.01 0.14 par:pas; +reboucla reboucler ver 0.14 1.01 0.00 0.07 ind:pas:3s; +reboucle reboucler ver 0.14 1.01 0.12 0.27 imp:pre:2s;ind:pre:3s; +reboucler reboucler ver 0.14 1.01 0.01 0.47 inf; +rebouclé reboucler ver m s 0.14 1.01 0.00 0.14 par:pas; +rebouclée reboucler ver f s 0.14 1.01 0.00 0.07 par:pas; +reboule reboule nom f s 0.27 0.00 0.27 0.00 +rebourrer rebourrer ver 0.00 0.07 0.00 0.07 inf; +rebours rebours adv 3.52 2.91 3.52 2.91 +reboute rebouter ver 0.14 0.34 0.00 0.20 ind:pre:1s; +rebouter rebouter ver 0.14 0.34 0.14 0.07 inf; +rebouteuse rebouteur nom f s 0.14 0.00 0.14 0.00 +rebouteux rebouteux nom m 0.26 0.54 0.26 0.54 +reboutez rebouter ver 0.14 0.34 0.00 0.07 ind:pre:2p; +reboutonna reboutonner ver 0.38 1.49 0.00 0.34 ind:pas:3s; +reboutonnaient reboutonner ver 0.38 1.49 0.00 0.07 ind:imp:3p; +reboutonnais reboutonner ver 0.38 1.49 0.00 0.07 ind:imp:1s; +reboutonnant reboutonner ver 0.38 1.49 0.00 0.20 par:pre; +reboutonne reboutonner ver 0.38 1.49 0.06 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reboutonner reboutonner ver 0.38 1.49 0.01 0.20 inf; +reboutonnerait reboutonner ver 0.38 1.49 0.00 0.07 cnd:pre:3s; +reboutonnez reboutonner ver 0.38 1.49 0.17 0.00 imp:pre:2p;ind:pre:2p; +reboutonnèrent reboutonner ver 0.38 1.49 0.00 0.07 ind:pas:3p; +reboutonné reboutonner ver m s 0.38 1.49 0.00 0.20 par:pas; +reboutonnée reboutonner ver f s 0.38 1.49 0.14 0.00 par:pas; +reboutonnés reboutonner ver m p 0.38 1.49 0.00 0.07 par:pas; +rebrûlé rebrûler ver m s 0.00 0.07 0.00 0.07 par:pas; +rebraguetter rebraguetter ver 0.00 0.14 0.00 0.07 inf; +rebraguetté rebraguetter ver m s 0.00 0.14 0.00 0.07 par:pas; +rebrancha rebrancher ver 0.73 0.81 0.00 0.07 ind:pas:3s; +rebranche rebrancher ver 0.73 0.81 0.22 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebrancher rebrancher ver 0.73 0.81 0.23 0.07 inf; +rebranchez rebrancher ver 0.73 0.81 0.12 0.00 imp:pre:2p; +rebranché rebrancher ver m s 0.73 0.81 0.16 0.34 par:pas; +rebranchée rebrancher ver f s 0.73 0.81 0.01 0.00 par:pas; +rebrodait rebroder ver 0.00 0.20 0.00 0.07 ind:imp:3s; +rebrodée rebroder ver f s 0.00 0.20 0.00 0.07 par:pas; +rebrodés rebroder ver m p 0.00 0.20 0.00 0.07 par:pas; +rebrosser rebrosser ver 0.02 0.00 0.02 0.00 inf; +rebroussa rebrousser ver 1.52 6.76 0.01 1.08 ind:pas:3s; +rebroussai rebrousser ver 1.52 6.76 0.01 0.07 ind:pas:1s; +rebroussaient rebrousser ver 1.52 6.76 0.01 0.14 ind:imp:3p; +rebroussait rebrousser ver 1.52 6.76 0.00 0.20 ind:imp:3s; +rebroussant rebrousser ver 1.52 6.76 0.14 0.27 par:pre; +rebrousse rebrousser ver 1.52 6.76 0.17 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebroussement rebroussement nom m s 0.00 0.07 0.00 0.07 +rebroussent rebrousser ver 1.52 6.76 0.03 0.20 ind:pre:3p; +rebrousser rebrousser ver 1.52 6.76 0.69 1.89 inf; +rebrousserai rebrousser ver 1.52 6.76 0.01 0.00 ind:fut:1s; +rebrousserez rebrousser ver 1.52 6.76 0.00 0.07 ind:fut:2p; +rebroussez rebrousser ver 1.52 6.76 0.14 0.00 imp:pre:2p;ind:pre:2p; +rebroussâmes rebrousser ver 1.52 6.76 0.00 0.07 ind:pas:1p; +rebroussons rebrousser ver 1.52 6.76 0.11 0.14 imp:pre:1p;ind:pre:1p; +rebroussât rebrousser ver 1.52 6.76 0.00 0.07 sub:imp:3s; +rebroussèrent rebrousser ver 1.52 6.76 0.00 0.27 ind:pas:3p; +rebroussé rebrousser ver m s 1.52 6.76 0.20 0.88 par:pas; +rebroussée rebrousser ver f s 1.52 6.76 0.00 0.07 par:pas; +rebroussées rebrousser ver f p 1.52 6.76 0.00 0.07 par:pas; +rebroussés rebrousser ver m p 1.52 6.76 0.00 0.14 par:pas; +rebu reboire ver m s 0.40 0.47 0.00 0.14 par:pas; +rebuffade rebuffade nom f s 0.07 1.35 0.03 0.27 +rebuffades rebuffade nom f p 0.07 1.35 0.04 1.08 +rebéquer rebéquer ver 0.00 0.07 0.00 0.07 inf; +rebus reboire ver m p 0.40 0.47 0.16 0.00 par:pas; +rebut rebut nom m s 2.15 4.26 1.43 2.97 +rebuta rebuter ver 0.71 5.34 0.00 0.07 ind:pas:3s; +rebutaient rebuter ver 0.71 5.34 0.01 0.20 ind:imp:3p; +rebutait rebuter ver 0.71 5.34 0.00 1.08 ind:imp:3s; +rebutant rebutant adj m s 0.17 1.62 0.02 0.68 +rebutante rebutant adj f s 0.17 1.62 0.00 0.41 +rebutantes rebutant adj f p 0.17 1.62 0.01 0.27 +rebutants rebutant adj m p 0.17 1.62 0.14 0.27 +rebute rebuter ver 0.71 5.34 0.45 0.95 ind:pre:3s; +rebutent rebuter ver 0.71 5.34 0.01 0.27 ind:pre:3p; +rebuter rebuter ver 0.71 5.34 0.02 0.61 inf; +rebutera rebuter ver 0.71 5.34 0.00 0.07 ind:fut:3s; +rebuterait rebuter ver 0.71 5.34 0.00 0.07 cnd:pre:3s; +rebuts rebut nom m p 2.15 4.26 0.72 1.28 +rebutèrent rebuter ver 0.71 5.34 0.00 0.07 ind:pas:3p; +rebuté rebuter ver m s 0.71 5.34 0.06 1.01 par:pas; +rebutée rebuter ver f s 0.71 5.34 0.03 0.47 par:pas; +rebutées rebuter ver f p 0.71 5.34 0.01 0.07 par:pas; +rebutés rebuter ver m p 0.71 5.34 0.12 0.20 par:pas; +rebuvait reboire ver 0.40 0.47 0.00 0.07 ind:imp:3s; +recache recacher ver 0.02 0.07 0.01 0.00 ind:pre:1s; +recacher recacher ver 0.02 0.07 0.01 0.07 inf; +recacheter recacheter ver 0.00 0.14 0.00 0.07 inf; +recachetée recacheter ver f s 0.00 0.14 0.00 0.07 par:pas; +recadre recadrer ver 0.23 0.14 0.02 0.00 imp:pre:2s;ind:pre:1s; +recadrer recadrer ver 0.23 0.14 0.20 0.14 inf; +recadrez recadrer ver 0.23 0.14 0.01 0.00 imp:pre:2p; +recala recaler ver 1.72 1.01 0.00 0.07 ind:pas:3s; +recalage recalage nom m s 0.01 0.00 0.01 0.00 +recalculant recalculer ver 0.10 0.07 0.00 0.07 par:pre; +recalcule recalculer ver 0.10 0.07 0.01 0.00 ind:pre:3s; +recalculer recalculer ver 0.10 0.07 0.06 0.00 inf; +recalculez recalculer ver 0.10 0.07 0.01 0.00 imp:pre:2p; +recalculé recalculer ver m s 0.10 0.07 0.02 0.00 par:pas; +recaler recaler ver 1.72 1.01 0.32 0.07 inf; +recalez recaler ver 1.72 1.01 0.03 0.00 imp:pre:2p;ind:pre:2p; +recalé recaler ver m s 1.72 1.01 1.03 0.41 par:pas; +recalée recaler ver f s 1.72 1.01 0.28 0.34 par:pas; +recalés recaler ver m p 1.72 1.01 0.07 0.14 par:pas; +recarreler recarreler ver 0.01 0.00 0.01 0.00 inf; +recasa recaser ver 0.23 0.34 0.00 0.07 ind:pas:3s; +recasable recasable adj s 0.00 0.07 0.00 0.07 +recaser recaser ver 0.23 0.34 0.20 0.14 inf; +recaserai recaser ver 0.23 0.34 0.01 0.00 ind:fut:1s; +recasser recasser ver 0.24 0.07 0.14 0.00 inf; +recasses recasser ver 0.24 0.07 0.02 0.00 ind:pre:2s; +recassé recasser ver m s 0.24 0.07 0.05 0.00 par:pas; +recassée recasser ver f s 0.24 0.07 0.01 0.07 par:pas; +recasé recaser ver m s 0.23 0.34 0.01 0.14 par:pas; +recel recel nom m s 0.77 1.01 0.77 1.01 +recelaient receler ver 1.02 3.72 0.00 0.20 ind:imp:3p; +recelait receler ver 1.02 3.72 0.04 0.95 ind:imp:3s; +recelant receler ver 1.02 3.72 0.00 0.27 par:pre; +receler receler ver 1.02 3.72 0.06 0.47 inf; +receleur_miracle receleur_miracle nom m s 0.00 0.07 0.00 0.07 +receleur receleur nom m s 0.45 1.28 0.34 0.68 +receleurs receleur nom m p 0.45 1.28 0.10 0.47 +receleuse receleur nom f s 0.45 1.28 0.01 0.07 +receleuses receleur nom f p 0.45 1.28 0.00 0.07 +recelons receler ver 1.02 3.72 0.02 0.00 ind:pre:1p; +recelé receler ver m s 1.02 3.72 0.00 0.07 par:pas; +recelée receler ver f s 1.02 3.72 0.00 0.07 par:pas; +recelées receler ver f p 1.02 3.72 0.01 0.00 par:pas; +recelés receler ver m p 1.02 3.72 0.00 0.07 par:pas; +recensa recenser ver 1.29 1.96 0.00 0.20 ind:pas:3s; +recensais recenser ver 1.29 1.96 0.00 0.07 ind:imp:1s; +recensait recenser ver 1.29 1.96 0.00 0.07 ind:imp:3s; +recensant recenser ver 1.29 1.96 0.01 0.00 par:pre; +recense recenser ver 1.29 1.96 0.22 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recensement recensement nom m s 1.17 1.08 1.14 0.95 +recensements recensement nom m p 1.17 1.08 0.03 0.14 +recensent recenser ver 1.29 1.96 0.04 0.00 ind:pre:3p; +recenser recenser ver 1.29 1.96 0.20 0.54 inf; +recenseur recenseur nom m s 0.03 0.00 0.03 0.00 +recension recension nom f s 0.00 0.27 0.00 0.27 +recensâmes recenser ver 1.29 1.96 0.00 0.07 ind:pas:1p; +recensèrent recenser ver 1.29 1.96 0.00 0.07 ind:pas:3p; +recensé recenser ver m s 1.29 1.96 0.55 0.20 par:pas; +recensées recenser ver f p 1.29 1.96 0.04 0.14 par:pas; +recensés recenser ver m p 1.29 1.96 0.25 0.27 par:pas; +recentrage recentrage nom m s 0.14 0.07 0.14 0.07 +recentre recentrer ver 0.44 0.20 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recentrer recentrer ver 0.44 0.20 0.17 0.07 inf; +recentrons recentrer ver 0.44 0.20 0.01 0.00 ind:pre:1p; +recentré recentrer ver m s 0.44 0.20 0.03 0.00 par:pas; +recentrée recentrer ver f s 0.44 0.20 0.00 0.07 par:pas; +recette recette nom f s 12.56 13.38 9.56 6.89 +recettes recette nom f p 12.56 13.38 3.00 6.49 +recevabilité recevabilité nom f s 0.01 0.00 0.01 0.00 +recevable recevable adj s 0.87 0.27 0.78 0.14 +recevables recevable adj f p 0.87 0.27 0.09 0.14 +recevaient recevoir ver 192.73 224.46 0.32 4.93 ind:imp:3p; +recevais recevoir ver 192.73 224.46 0.87 2.77 ind:imp:1s;ind:imp:2s; +recevait recevoir ver 192.73 224.46 2.16 21.42 ind:imp:3s; +recevant recevoir ver 192.73 224.46 0.55 5.68 par:pre; +receveur receveur nom m s 1.90 1.62 1.61 1.42 +receveurs receveur nom m p 1.90 1.62 0.27 0.07 +receveuse receveur nom f s 1.90 1.62 0.02 0.07 +receveuses receveur nom f p 1.90 1.62 0.00 0.07 +recevez recevoir ver 192.73 224.46 11.20 1.15 imp:pre:2p;ind:pre:2p; +receviez recevoir ver 192.73 224.46 0.41 0.34 ind:imp:2p; +recevions recevoir ver 192.73 224.46 0.38 0.81 ind:imp:1p; +recevoir recevoir ver 192.73 224.46 37.20 49.12 inf; +recevons recevoir ver 192.73 224.46 3.02 1.15 imp:pre:1p;ind:pre:1p; +recevra recevoir ver 192.73 224.46 4.69 1.22 ind:fut:3s; +recevrai recevoir ver 192.73 224.46 1.29 0.54 ind:fut:1s; +recevraient recevoir ver 192.73 224.46 0.07 0.47 cnd:pre:3p; +recevrais recevoir ver 192.73 224.46 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +recevrait recevoir ver 192.73 224.46 0.39 2.70 cnd:pre:3s; +recevras recevoir ver 192.73 224.46 1.77 0.61 ind:fut:2s; +recevrez recevoir ver 192.73 224.46 2.50 0.47 ind:fut:2p; +recevriez recevoir ver 192.73 224.46 0.06 0.07 cnd:pre:2p; +recevrions recevoir ver 192.73 224.46 0.11 0.07 cnd:pre:1p; +recevrons recevoir ver 192.73 224.46 0.41 0.27 ind:fut:1p; +recevront recevoir ver 192.73 224.46 1.03 0.47 ind:fut:3p; +rechampi rechampi nom m s 0.00 0.07 0.00 0.07 +rechampis rechampir ver m p 0.00 0.14 0.00 0.07 par:pas; +rechampit rechampir ver 0.00 0.14 0.00 0.07 ind:pre:3s; +rechange rechange nom m s 4.73 2.77 4.71 2.70 +rechanger rechanger ver 0.17 0.07 0.10 0.00 inf; +rechanges rechange nom m p 4.73 2.77 0.02 0.07 +rechangé rechanger ver m s 0.17 0.07 0.07 0.07 par:pas; +rechanta rechanter ver 0.05 0.14 0.00 0.07 ind:pas:3s; +rechanter rechanter ver 0.05 0.14 0.04 0.00 inf; +rechanté rechanter ver m s 0.05 0.14 0.01 0.07 par:pas; +rechaper rechaper ver 0.12 0.07 0.12 0.07 inf; +recharge recharger ver 4.07 3.99 0.81 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rechargea recharger ver 4.07 3.99 0.00 0.07 ind:pas:3s; +rechargeable rechargeable adj m s 0.02 0.00 0.02 0.00 +rechargeaient recharger ver 4.07 3.99 0.01 0.20 ind:imp:3p; +rechargeais recharger ver 4.07 3.99 0.01 0.00 ind:imp:1s; +rechargeait recharger ver 4.07 3.99 0.01 0.41 ind:imp:3s; +rechargeant recharger ver 4.07 3.99 0.00 0.20 par:pre; +rechargement rechargement nom m s 0.04 0.00 0.04 0.00 +rechargent recharger ver 4.07 3.99 0.02 0.07 ind:pre:3p; +recharger recharger ver 4.07 3.99 1.76 1.89 inf; +rechargerai recharger ver 4.07 3.99 0.01 0.07 ind:fut:1s; +rechargerait recharger ver 4.07 3.99 0.00 0.07 cnd:pre:3s; +rechargerons recharger ver 4.07 3.99 0.01 0.00 ind:fut:1p; +recharges recharge nom f p 0.83 0.34 0.27 0.07 +rechargez recharger ver 4.07 3.99 0.95 0.07 imp:pre:2p;ind:pre:2p; +rechargé recharger ver m s 4.07 3.99 0.32 0.41 par:pas; +rechargée recharger ver f s 4.07 3.99 0.03 0.00 par:pas; +rechargées recharger ver f p 4.07 3.99 0.05 0.07 par:pas; +rechargés recharger ver m p 4.07 3.99 0.04 0.00 par:pas; +rechasser rechasser ver 0.02 0.00 0.02 0.00 inf; +rechaussaient rechausser ver 0.01 0.68 0.00 0.07 ind:imp:3p; +rechaussant rechausser ver 0.01 0.68 0.00 0.07 par:pre; +rechausser rechausser ver 0.01 0.68 0.01 0.41 inf; +rechausserait rechausser ver 0.01 0.68 0.00 0.07 cnd:pre:3s; +rechaussée rechausser ver f s 0.01 0.68 0.00 0.07 par:pas; +rechercha rechercher ver 45.51 22.43 0.16 0.34 ind:pas:3s; +recherchai rechercher ver 45.51 22.43 0.01 0.07 ind:pas:1s; +recherchaient rechercher ver 45.51 22.43 0.36 1.01 ind:imp:3p; +recherchais rechercher ver 45.51 22.43 0.80 0.88 ind:imp:1s;ind:imp:2s; +recherchait rechercher ver 45.51 22.43 1.59 2.77 ind:imp:3s; +recherchant rechercher ver 45.51 22.43 0.39 0.47 par:pre; +recherche recherche nom f s 77.30 54.80 48.70 39.93 +recherchent rechercher ver 45.51 22.43 4.25 1.35 ind:pre:3p; +rechercher rechercher ver 45.51 22.43 5.88 7.23 inf; +recherchera rechercher ver 45.51 22.43 0.05 0.07 ind:fut:3s; +rechercherai rechercher ver 45.51 22.43 0.03 0.14 ind:fut:1s; +rechercherais rechercher ver 45.51 22.43 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +rechercherait rechercher ver 45.51 22.43 0.15 0.14 cnd:pre:3s; +rechercherions rechercher ver 45.51 22.43 0.01 0.00 cnd:pre:1p; +rechercherons rechercher ver 45.51 22.43 0.04 0.00 ind:fut:1p; +rechercheront rechercher ver 45.51 22.43 0.07 0.00 ind:fut:3p; +recherches recherche nom f p 77.30 54.80 28.60 14.86 +recherchez rechercher ver 45.51 22.43 2.86 0.27 imp:pre:2p;ind:pre:2p; +recherchiez rechercher ver 45.51 22.43 0.60 0.00 ind:imp:2p; +recherchions rechercher ver 45.51 22.43 0.12 0.14 ind:imp:1p; +recherchiste recherchiste nom s 0.01 0.00 0.01 0.00 +recherchons rechercher ver 45.51 22.43 3.89 0.27 imp:pre:1p;ind:pre:1p; +recherché rechercher ver m s 45.51 22.43 5.39 2.77 par:pas; +recherchée rechercher ver f s 45.51 22.43 1.62 0.61 par:pas; +recherchées recherché adj f p 3.54 2.09 0.38 0.27 +recherchés recherché adj m p 3.54 2.09 0.97 0.41 +rechigna rechigner ver 0.71 3.92 0.00 0.14 ind:pas:3s; +rechignaient rechigner ver 0.71 3.92 0.01 0.14 ind:imp:3p; +rechignais rechigner ver 0.71 3.92 0.01 0.14 ind:imp:1s;ind:imp:2s; +rechignait rechigner ver 0.71 3.92 0.00 0.61 ind:imp:3s; +rechignant rechigner ver 0.71 3.92 0.00 0.41 par:pre; +rechigne rechigner ver 0.71 3.92 0.49 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rechignent rechigner ver 0.71 3.92 0.06 0.07 ind:pre:3p; +rechigner rechigner ver 0.71 3.92 0.08 1.49 inf; +rechignerais rechigner ver 0.71 3.92 0.01 0.00 cnd:pre:1s; +rechignes rechigner ver 0.71 3.92 0.03 0.00 ind:pre:2s; +rechigné rechigner ver m s 0.71 3.92 0.01 0.34 par:pas; +rechignée rechigner ver f s 0.71 3.92 0.00 0.07 par:pas; +rechignées rechigner ver f p 0.71 3.92 0.00 0.07 par:pas; +rechuta rechuter ver 0.69 0.74 0.00 0.07 ind:pas:3s; +rechutant rechuter ver 0.69 0.74 0.00 0.07 par:pre; +rechute rechute nom f s 1.26 1.89 1.19 1.28 +rechuter rechuter ver 0.69 0.74 0.36 0.14 inf; +rechutera rechuter ver 0.69 0.74 0.01 0.00 ind:fut:3s; +rechuterait rechuter ver 0.69 0.74 0.00 0.07 cnd:pre:3s; +rechuteront rechuter ver 0.69 0.74 0.01 0.00 ind:fut:3p; +rechutes rechute nom f p 1.26 1.89 0.07 0.61 +rechuté rechuter ver m s 0.69 0.74 0.10 0.34 par:pas; +reclassement reclassement nom m s 0.14 0.27 0.14 0.27 +reclasser reclasser ver 0.09 0.20 0.04 0.07 inf; +reclassé reclasser ver m s 0.09 0.20 0.03 0.00 par:pas; +reclassée reclasser ver f s 0.09 0.20 0.02 0.00 par:pas; +reclouer reclouer ver 0.01 0.00 0.01 0.00 inf; +reclure reclure ver 0.00 0.07 0.00 0.07 inf; +reclus reclus adj m 0.56 1.76 0.37 0.81 +recluse reclus nom f s 0.70 0.95 0.35 0.14 +recluses reclus nom f p 0.70 0.95 0.01 0.14 +recâbler recâbler ver 0.03 0.00 0.03 0.00 inf; +recodage recodage nom m s 0.01 0.00 0.01 0.00 +recogner recogner ver 0.00 0.07 0.00 0.07 inf; +recognition recognition nom f s 0.00 0.07 0.00 0.07 +recoiffa recoiffer ver 0.25 2.09 0.00 0.07 ind:pas:3s; +recoiffai recoiffer ver 0.25 2.09 0.00 0.07 ind:pas:1s; +recoiffaient recoiffer ver 0.25 2.09 0.00 0.07 ind:imp:3p; +recoiffait recoiffer ver 0.25 2.09 0.01 0.20 ind:imp:3s; +recoiffant recoiffer ver 0.25 2.09 0.01 0.14 par:pre; +recoiffe recoiffer ver 0.25 2.09 0.07 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoiffent recoiffer ver 0.25 2.09 0.01 0.07 ind:pre:3p; +recoiffer recoiffer ver 0.25 2.09 0.12 0.54 inf; +recoiffez recoiffer ver 0.25 2.09 0.02 0.00 imp:pre:2p;ind:pre:2p; +recoiffèrent recoiffer ver 0.25 2.09 0.00 0.07 ind:pas:3p; +recoiffé recoiffer ver m s 0.25 2.09 0.00 0.20 par:pas; +recoiffée recoiffer ver f s 0.25 2.09 0.00 0.41 par:pas; +recoiffés recoiffer ver m p 0.25 2.09 0.00 0.07 par:pas; +recoin recoin nom m s 2.27 12.36 0.83 5.14 +recoins recoin nom m p 2.27 12.36 1.44 7.23 +recolla recoller ver 2.84 2.70 0.00 0.20 ind:pas:3s; +recollage recollage nom m s 0.00 0.14 0.00 0.14 +recollait recoller ver 2.84 2.70 0.00 0.34 ind:imp:3s; +recolle recoller ver 2.84 2.70 0.53 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recollent recoller ver 2.84 2.70 0.03 0.00 ind:pre:3p; +recoller recoller ver 2.84 2.70 1.94 1.15 inf; +recollera recoller ver 2.84 2.70 0.05 0.00 ind:fut:3s; +recollé recoller ver m s 2.84 2.70 0.13 0.27 par:pas; +recollée recoller ver f s 2.84 2.70 0.16 0.20 par:pas; +recollés recoller ver m p 2.84 2.70 0.00 0.20 par:pas; +recoloration recoloration nom f s 0.08 0.00 0.08 0.00 +recombinaison recombinaison nom f s 0.06 0.00 0.06 0.00 +recombinant recombinant adj m s 0.01 0.00 0.01 0.00 +recombinant recombiner ver 0.10 0.00 0.01 0.00 par:pre; +recombiner recombiner ver 0.10 0.00 0.04 0.00 inf; +recombiné recombiner ver m s 0.10 0.00 0.05 0.00 par:pas; +recommanda recommander ver 16.86 21.35 0.00 2.30 ind:pas:3s; +recommandable recommandable adj s 0.42 0.68 0.32 0.68 +recommandables recommandable adj p 0.42 0.68 0.11 0.00 +recommandai recommander ver 16.86 21.35 0.00 0.14 ind:pas:1s; +recommandaient recommander ver 16.86 21.35 0.04 0.34 ind:imp:3p; +recommandais recommander ver 16.86 21.35 0.01 0.27 ind:imp:1s; +recommandait recommander ver 16.86 21.35 0.19 2.03 ind:imp:3s; +recommandant recommander ver 16.86 21.35 0.21 1.82 par:pre; +recommandation recommandation nom f s 5.20 8.85 2.89 3.92 +recommandations recommandation nom f p 5.20 8.85 2.30 4.93 +recommande recommander ver 16.86 21.35 6.13 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recommandent recommander ver 16.86 21.35 0.31 0.27 ind:pre:3p; +recommander recommander ver 16.86 21.35 2.58 2.91 inf; +recommandera recommander ver 16.86 21.35 0.10 0.14 ind:fut:3s; +recommanderai recommander ver 16.86 21.35 0.32 0.14 ind:fut:1s; +recommanderais recommander ver 16.86 21.35 0.25 0.00 cnd:pre:1s;cnd:pre:2s; +recommanderait recommander ver 16.86 21.35 0.12 0.07 cnd:pre:3s; +recommanderiez recommander ver 16.86 21.35 0.09 0.00 cnd:pre:2p; +recommandes recommander ver 16.86 21.35 0.24 0.07 ind:pre:2s;sub:pre:2s; +recommandez recommander ver 16.86 21.35 0.73 0.27 imp:pre:2p;ind:pre:2p; +recommandiez recommander ver 16.86 21.35 0.07 0.07 ind:imp:2p; +recommandons recommander ver 16.86 21.35 0.28 0.07 imp:pre:1p;ind:pre:1p; +recommandât recommander ver 16.86 21.35 0.00 0.07 sub:imp:3s; +recommandèrent recommander ver 16.86 21.35 0.11 0.14 ind:pas:3p; +recommandé recommander ver m s 16.86 21.35 4.07 5.68 par:pas; +recommandée recommander ver f s 16.86 21.35 0.80 0.95 par:pas; +recommandées recommander ver f p 16.86 21.35 0.03 0.54 par:pas; +recommandés recommander ver m p 16.86 21.35 0.21 0.27 par:pas; +recommence recommencer ver 84.69 83.31 31.98 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +recommencement recommencement nom m s 0.08 0.81 0.07 0.47 +recommencements recommencement nom m p 0.08 0.81 0.01 0.34 +recommencent recommencer ver 84.69 83.31 1.72 2.36 ind:pre:3p; +recommencer recommencer ver 84.69 83.31 26.90 22.50 inf; +recommencera recommencer ver 84.69 83.31 2.52 1.42 ind:fut:3s; +recommencerai recommencer ver 84.69 83.31 1.65 1.01 ind:fut:1s; +recommenceraient recommencer ver 84.69 83.31 0.02 0.20 cnd:pre:3p; +recommencerais recommencer ver 84.69 83.31 0.25 0.54 cnd:pre:1s;cnd:pre:2s; +recommencerait recommencer ver 84.69 83.31 0.70 1.42 cnd:pre:3s; +recommenceras recommencer ver 84.69 83.31 0.78 0.14 ind:fut:2s; +recommencerez recommencer ver 84.69 83.31 0.21 0.14 ind:fut:2p; +recommenceriez recommencer ver 84.69 83.31 0.06 0.00 cnd:pre:2p; +recommencerions recommencer ver 84.69 83.31 0.01 0.07 cnd:pre:1p; +recommencerons recommencer ver 84.69 83.31 0.54 0.14 ind:fut:1p; +recommenceront recommencer ver 84.69 83.31 0.42 0.07 ind:fut:3p; +recommences recommencer ver 84.69 83.31 4.02 0.95 ind:pre:2s; +recommencez recommencer ver 84.69 83.31 4.88 0.68 imp:pre:2p;ind:pre:2p; +recommenciez recommencer ver 84.69 83.31 0.19 0.07 ind:imp:2p; +recommencions recommencer ver 84.69 83.31 0.02 0.41 ind:imp:1p; +recommencèrent recommencer ver 84.69 83.31 0.00 1.55 ind:pas:3p; +recommencé recommencer ver m s 84.69 83.31 3.84 6.82 par:pas; +recommencée recommencer ver f s 84.69 83.31 0.12 0.81 par:pas; +recommencées recommencer ver f p 84.69 83.31 0.00 0.47 par:pas; +recommencés recommencer ver m p 84.69 83.31 0.00 0.41 par:pas; +recommença recommencer ver 84.69 83.31 0.06 7.77 ind:pas:3s; +recommençai recommencer ver 84.69 83.31 0.00 0.74 ind:pas:1s; +recommençaient recommencer ver 84.69 83.31 0.02 1.76 ind:imp:3p; +recommençais recommencer ver 84.69 83.31 0.11 1.22 ind:imp:1s;ind:imp:2s; +recommençait recommencer ver 84.69 83.31 1.22 10.41 ind:imp:3s; +recommençant recommencer ver 84.69 83.31 0.03 0.95 par:pre; +recommençâmes recommencer ver 84.69 83.31 0.02 0.20 ind:pas:1p; +recommençons recommencer ver 84.69 83.31 2.39 0.74 imp:pre:1p;ind:pre:1p; +recommençât recommencer ver 84.69 83.31 0.00 0.14 sub:imp:3s; +recommercer recommercer ver 0.00 0.07 0.00 0.07 inf; +recompléter recompléter ver 0.00 0.14 0.00 0.07 inf; +recomplété recompléter ver m s 0.00 0.14 0.00 0.07 par:pas; +recomposa recomposer ver 0.52 3.18 0.00 0.34 ind:pas:3s; +recomposaient recomposer ver 0.52 3.18 0.00 0.14 ind:imp:3p; +recomposais recomposer ver 0.52 3.18 0.00 0.07 ind:imp:1s; +recomposait recomposer ver 0.52 3.18 0.00 0.34 ind:imp:3s; +recompose recomposer ver 0.52 3.18 0.18 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recomposent recomposer ver 0.52 3.18 0.00 0.14 ind:pre:3p; +recomposer recomposer ver 0.52 3.18 0.28 1.01 inf; +recomposera recomposer ver 0.52 3.18 0.00 0.07 ind:fut:3s; +recomposition recomposition nom f s 0.00 0.07 0.00 0.07 +recomposèrent recomposer ver 0.52 3.18 0.00 0.14 ind:pas:3p; +recomposé recomposer ver m s 0.52 3.18 0.03 0.20 par:pas; +recomposée recomposer ver f s 0.52 3.18 0.01 0.00 par:pas; +recomposés recomposer ver m p 0.52 3.18 0.01 0.14 par:pas; +recompta recompter ver 1.67 1.82 0.00 0.20 ind:pas:3s; +recomptaient recompter ver 1.67 1.82 0.00 0.07 ind:imp:3p; +recomptais recompter ver 1.67 1.82 0.00 0.20 ind:imp:1s; +recomptait recompter ver 1.67 1.82 0.01 0.27 ind:imp:3s; +recomptant recompter ver 1.67 1.82 0.00 0.07 par:pre; +recompte recompter ver 1.67 1.82 0.75 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recompter recompter ver 1.67 1.82 0.55 0.47 inf; +recomptez recompter ver 1.67 1.82 0.05 0.00 imp:pre:2p;ind:pre:2p; +recomptons recompter ver 1.67 1.82 0.11 0.00 ind:pre:1p; +recompté recompter ver m s 1.67 1.82 0.20 0.20 par:pas; +recomptées recompter ver f p 1.67 1.82 0.00 0.07 par:pas; +reconditionne reconditionner ver 0.03 0.07 0.01 0.00 ind:pre:3s; +reconditionnement reconditionnement nom m s 0.05 0.00 0.05 0.00 +reconditionnons reconditionner ver 0.03 0.07 0.01 0.00 imp:pre:1p; +reconditionné reconditionner ver m s 0.03 0.07 0.01 0.00 par:pas; +reconditionnée reconditionner ver f s 0.03 0.07 0.00 0.07 par:pas; +reconductible reconductible adj s 0.01 0.07 0.01 0.07 +reconduction reconduction nom f s 0.01 0.00 0.01 0.00 +reconduirai reconduire ver 5.83 7.23 0.03 0.07 ind:fut:1s; +reconduirais reconduire ver 5.83 7.23 0.01 0.00 cnd:pre:1s; +reconduirait reconduire ver 5.83 7.23 0.00 0.07 cnd:pre:3s; +reconduire reconduire ver 5.83 7.23 2.97 2.84 inf; +reconduirez reconduire ver 5.83 7.23 0.01 0.00 ind:fut:2p; +reconduirons reconduire ver 5.83 7.23 0.01 0.07 ind:fut:1p; +reconduis reconduire ver 5.83 7.23 1.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconduisît reconduire ver 5.83 7.23 0.00 0.07 sub:imp:3s; +reconduisaient reconduire ver 5.83 7.23 0.00 0.07 ind:imp:3p; +reconduisais reconduire ver 5.83 7.23 0.00 0.14 ind:imp:1s; +reconduisait reconduire ver 5.83 7.23 0.02 0.27 ind:imp:3s; +reconduisant reconduire ver 5.83 7.23 0.00 0.14 par:pre; +reconduise reconduire ver 5.83 7.23 0.33 0.07 sub:pre:1s;sub:pre:3s; +reconduisent reconduire ver 5.83 7.23 0.01 0.07 ind:pre:3p; +reconduisez reconduire ver 5.83 7.23 0.76 0.07 imp:pre:2p;ind:pre:2p; +reconduisions reconduire ver 5.83 7.23 0.00 0.07 ind:imp:1p; +reconduisirent reconduire ver 5.83 7.23 0.00 0.07 ind:pas:3p; +reconduisit reconduire ver 5.83 7.23 0.00 1.15 ind:pas:3s; +reconduit reconduire ver m s 5.83 7.23 0.43 1.22 ind:pre:3s;par:pas; +reconduite reconduire ver f s 5.83 7.23 0.16 0.27 par:pas; +reconduits reconduire ver m p 5.83 7.23 0.04 0.20 par:pas; +reconfiguration reconfiguration nom f s 0.02 0.00 0.02 0.00 +reconfigure reconfigurer ver 0.39 0.00 0.05 0.00 ind:pre:1s;ind:pre:3s; +reconfigurer reconfigurer ver 0.39 0.00 0.18 0.00 inf; +reconfigurez reconfigurer ver 0.39 0.00 0.05 0.00 imp:pre:2p; +reconfiguré reconfigurer ver m s 0.39 0.00 0.09 0.00 par:pas; +reconfigurés reconfigurer ver m p 0.39 0.00 0.03 0.00 par:pas; +recongeler recongeler ver 0.01 0.00 0.01 0.00 inf; +reconnûmes reconnaître ver 140.73 229.19 0.01 0.34 ind:pas:1p; +reconnût reconnaître ver 140.73 229.19 0.00 1.22 sub:imp:3s; +reconnaît reconnaître ver 140.73 229.19 10.73 15.61 ind:pre:3s; +reconnaîtra reconnaître ver 140.73 229.19 2.80 1.49 ind:fut:3s; +reconnaîtrai reconnaître ver 140.73 229.19 0.66 0.68 ind:fut:1s; +reconnaîtraient reconnaître ver 140.73 229.19 0.10 0.41 cnd:pre:3p; +reconnaîtrais reconnaître ver 140.73 229.19 2.06 0.95 cnd:pre:1s;cnd:pre:2s; +reconnaîtrait reconnaître ver 140.73 229.19 0.56 2.09 cnd:pre:3s; +reconnaîtras reconnaître ver 140.73 229.19 1.54 0.54 ind:fut:2s; +reconnaître reconnaître ver 140.73 229.19 25.24 62.30 inf; +reconnaîtrez reconnaître ver 140.73 229.19 0.72 0.81 ind:fut:2p; +reconnaîtriez reconnaître ver 140.73 229.19 0.31 0.14 cnd:pre:2p; +reconnaîtrions reconnaître ver 140.73 229.19 0.00 0.07 cnd:pre:1p; +reconnaîtrons reconnaître ver 140.73 229.19 0.49 0.07 ind:fut:1p; +reconnaîtront reconnaître ver 140.73 229.19 1.01 0.34 ind:fut:3p; +reconnais reconnaître ver 140.73 229.19 37.36 24.12 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconnaissable reconnaissable adj s 0.56 4.66 0.50 3.45 +reconnaissables reconnaissable adj p 0.56 4.66 0.06 1.22 +reconnaissaient reconnaître ver 140.73 229.19 0.18 2.50 ind:imp:3p; +reconnaissais reconnaître ver 140.73 229.19 1.41 7.30 ind:imp:1s;ind:imp:2s; +reconnaissait reconnaître ver 140.73 229.19 0.65 17.50 ind:imp:3s; +reconnaissance reconnaissance nom f s 15.28 22.77 15.08 21.49 +reconnaissances reconnaissance nom f p 15.28 22.77 0.20 1.28 +reconnaissant reconnaissant adj m s 20.59 9.19 10.32 5.41 +reconnaissante reconnaissant adj f s 20.59 9.19 6.41 2.70 +reconnaissantes reconnaissant adj f p 20.59 9.19 0.17 0.27 +reconnaissants reconnaissant adj m p 20.59 9.19 3.69 0.81 +reconnaisse reconnaître ver 140.73 229.19 2.09 1.15 sub:pre:1s;sub:pre:3s; +reconnaissent reconnaître ver 140.73 229.19 2.10 3.65 ind:pre:3p; +reconnaisses reconnaître ver 140.73 229.19 0.13 0.07 sub:pre:2s; +reconnaissez reconnaître ver 140.73 229.19 13.49 2.97 imp:pre:2p;ind:pre:2p; +reconnaissiez reconnaître ver 140.73 229.19 0.22 0.27 ind:imp:2p; +reconnaissions reconnaître ver 140.73 229.19 0.11 1.08 ind:imp:1p; +reconnaissons reconnaître ver 140.73 229.19 0.69 1.08 imp:pre:1p;ind:pre:1p; +reconnecte reconnecter ver 0.52 0.00 0.07 0.00 imp:pre:2s;ind:pre:3s; +reconnecter reconnecter ver 0.52 0.00 0.29 0.00 inf; +reconnectez reconnecter ver 0.52 0.00 0.03 0.00 imp:pre:2p; +reconnecté reconnecter ver m s 0.52 0.00 0.06 0.00 par:pas; +reconnectés reconnecter ver m p 0.52 0.00 0.07 0.00 par:pas; +reconnu reconnaître ver m s 140.73 229.19 25.93 32.09 par:pas; +reconnue reconnaître ver f s 140.73 229.19 6.86 5.95 par:pas; +reconnues reconnaître ver f p 140.73 229.19 0.39 0.61 par:pas; +reconnurent reconnaître ver 140.73 229.19 0.03 1.42 ind:pas:3p; +reconnus reconnaître ver m p 140.73 229.19 1.34 8.72 ind:pas:1s;par:pas; +reconnusse reconnaître ver 140.73 229.19 0.00 0.07 sub:imp:1s; +reconnussent reconnaître ver 140.73 229.19 0.01 0.07 sub:imp:3p; +reconnut reconnaître ver 140.73 229.19 0.44 25.74 ind:pas:3s; +reconquerra reconquérir ver 1.54 3.18 0.01 0.07 ind:fut:3s; +reconquerrait reconquérir ver 1.54 3.18 0.00 0.07 cnd:pre:3s; +reconquerrons reconquérir ver 1.54 3.18 0.01 0.07 ind:fut:1p; +reconquiert reconquérir ver 1.54 3.18 0.01 0.07 ind:pre:3s; +reconquirent reconquérir ver 1.54 3.18 0.00 0.07 ind:pas:3p; +reconquis reconquérir ver m 1.54 3.18 0.07 0.68 par:pas; +reconquise reconquis adj f s 0.10 0.47 0.10 0.20 +reconquises reconquis adj f p 0.10 0.47 0.00 0.14 +reconquista reconquista nom f s 0.00 0.07 0.00 0.07 +reconquit reconquérir ver 1.54 3.18 0.00 0.07 ind:pas:3s; +reconquière reconquérir ver 1.54 3.18 0.01 0.07 sub:pre:3s; +reconquérais reconquérir ver 1.54 3.18 0.00 0.07 ind:imp:1s; +reconquérait reconquérir ver 1.54 3.18 0.00 0.07 ind:imp:3s; +reconquérir reconquérir ver 1.54 3.18 1.41 1.55 inf; +reconquérons reconquérir ver 1.54 3.18 0.01 0.00 imp:pre:1p; +reconquête reconquête nom f s 0.06 1.15 0.06 1.15 +reconsidère reconsidérer ver 1.51 1.55 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reconsidèrent reconsidérer ver 1.51 1.55 0.01 0.00 ind:pre:3p; +reconsidéra reconsidérer ver 1.51 1.55 0.00 0.27 ind:pas:3s; +reconsidérant reconsidérer ver 1.51 1.55 0.01 0.00 par:pre; +reconsidérer reconsidérer ver 1.51 1.55 1.06 1.01 inf; +reconsidérez reconsidérer ver 1.51 1.55 0.17 0.00 imp:pre:2p;ind:pre:2p; +reconsidéré reconsidérer ver m s 1.51 1.55 0.16 0.14 par:pas; +reconsidérée reconsidérer ver f s 1.51 1.55 0.01 0.07 par:pas; +reconstitua reconstituer ver 4.05 16.28 0.00 0.07 ind:pas:3s; +reconstituaient reconstituer ver 4.05 16.28 0.01 0.34 ind:imp:3p; +reconstituais reconstituer ver 4.05 16.28 0.04 0.14 ind:imp:1s;ind:imp:2s; +reconstituait reconstituer ver 4.05 16.28 0.01 1.01 ind:imp:3s; +reconstituant reconstituant nom m s 0.15 0.27 0.15 0.20 +reconstituante reconstituant adj f s 0.02 0.27 0.00 0.14 +reconstituantes reconstituant adj f p 0.02 0.27 0.01 0.07 +reconstituants reconstituant adj m p 0.02 0.27 0.00 0.07 +reconstituants reconstituant nom m p 0.15 0.27 0.00 0.07 +reconstitue reconstituer ver 4.05 16.28 0.42 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reconstituent reconstituer ver 4.05 16.28 0.03 0.47 ind:pre:3p; +reconstituer reconstituer ver 4.05 16.28 2.12 7.84 inf; +reconstitueraient reconstituer ver 4.05 16.28 0.00 0.07 cnd:pre:3p; +reconstituerais reconstituer ver 4.05 16.28 0.01 0.00 cnd:pre:1s; +reconstituerait reconstituer ver 4.05 16.28 0.00 0.20 cnd:pre:3s; +reconstituerons reconstituer ver 4.05 16.28 0.00 0.07 ind:fut:1p; +reconstitues reconstituer ver 4.05 16.28 0.02 0.07 ind:pre:2s; +reconstituâmes reconstituer ver 4.05 16.28 0.00 0.07 ind:pas:1p; +reconstituons reconstituer ver 4.05 16.28 0.08 0.00 imp:pre:1p;ind:pre:1p; +reconstituât reconstituer ver 4.05 16.28 0.00 0.14 sub:imp:3s; +reconstitution reconstitution nom f s 2.23 2.57 2.12 2.23 +reconstitutions reconstitution nom f p 2.23 2.57 0.11 0.34 +reconstitué reconstituer ver m s 4.05 16.28 1.05 1.69 par:pas; +reconstituée reconstituer ver f s 4.05 16.28 0.05 1.01 par:pas; +reconstituées reconstituer ver f p 4.05 16.28 0.16 0.14 par:pas; +reconstitués reconstituer ver m p 4.05 16.28 0.02 0.81 par:pas; +reconstructeur reconstructeur nom m s 0.01 0.00 0.01 0.00 +reconstruction reconstruction nom f s 2.25 4.19 2.07 4.12 +reconstructions reconstruction nom f p 2.25 4.19 0.17 0.07 +reconstructrice reconstructeur adj f s 0.04 0.00 0.04 0.00 +reconstruira reconstruire ver 7.24 7.84 0.02 0.07 ind:fut:3s; +reconstruirai reconstruire ver 7.24 7.84 0.02 0.00 ind:fut:1s; +reconstruirais reconstruire ver 7.24 7.84 0.01 0.00 cnd:pre:1s; +reconstruirait reconstruire ver 7.24 7.84 0.02 0.07 cnd:pre:3s; +reconstruiras reconstruire ver 7.24 7.84 0.01 0.00 ind:fut:2s; +reconstruire reconstruire ver 7.24 7.84 4.59 3.24 inf; +reconstruirons reconstruire ver 7.24 7.84 0.36 0.07 ind:fut:1p; +reconstruiront reconstruire ver 7.24 7.84 0.04 0.00 ind:fut:3p; +reconstruis reconstruire ver 7.24 7.84 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconstruisaient reconstruire ver 7.24 7.84 0.01 0.27 ind:imp:3p; +reconstruisait reconstruire ver 7.24 7.84 0.01 0.41 ind:imp:3s; +reconstruisant reconstruire ver 7.24 7.84 0.00 0.14 par:pre; +reconstruisent reconstruire ver 7.24 7.84 0.14 0.07 ind:pre:3p; +reconstruisez reconstruire ver 7.24 7.84 0.04 0.00 imp:pre:2p;ind:pre:2p; +reconstruisirent reconstruire ver 7.24 7.84 0.00 0.14 ind:pas:3p; +reconstruisons reconstruire ver 7.24 7.84 0.04 0.00 imp:pre:1p;ind:pre:1p; +reconstruit reconstruire ver m s 7.24 7.84 1.39 1.76 ind:pre:3s;par:pas; +reconstruite reconstruire ver f s 7.24 7.84 0.29 1.15 par:pas; +reconstruites reconstruire ver f p 7.24 7.84 0.06 0.27 par:pas; +reconstruits reconstruire ver m p 7.24 7.84 0.06 0.14 par:pas; +reconsulter reconsulter ver 0.01 0.00 0.01 0.00 inf; +recontacter recontacter ver 0.38 0.07 0.27 0.07 inf; +reconter reconter ver 0.00 0.07 0.00 0.07 inf; +recontrer recontrer ver 0.20 0.00 0.20 0.00 inf; +reconventionnelle reconventionnel adj f s 0.01 0.00 0.01 0.00 +reconversion reconversion nom f s 0.36 0.74 0.36 0.74 +reconverti reconvertir ver m s 0.40 2.30 0.13 0.68 par:pas; +reconvertie reconvertir ver f s 0.40 2.30 0.10 0.20 par:pas; +reconvertir reconvertir ver 0.40 2.30 0.12 0.81 inf; +reconvertirent reconvertir ver 0.40 2.30 0.00 0.07 ind:pas:3p; +reconvertis reconvertir ver m p 0.40 2.30 0.02 0.27 imp:pre:2s;ind:pre:2s;ind:pas:2s;par:pas; +reconvertissant reconvertir ver 0.40 2.30 0.00 0.07 par:pre; +reconvertisse reconvertir ver 0.40 2.30 0.00 0.07 sub:pre:1s; +reconvertit reconvertir ver 0.40 2.30 0.02 0.14 ind:pre:3s;ind:pas:3s; +reconvoquer reconvoquer ver 0.02 0.00 0.02 0.00 inf; +recopia recopier ver 2.41 7.30 0.00 0.27 ind:pas:3s; +recopiage recopiage nom m s 0.00 0.07 0.00 0.07 +recopiai recopier ver 2.41 7.30 0.00 0.14 ind:pas:1s; +recopiaient recopier ver 2.41 7.30 0.00 0.07 ind:imp:3p; +recopiais recopier ver 2.41 7.30 0.00 0.41 ind:imp:1s; +recopiait recopier ver 2.41 7.30 0.00 0.54 ind:imp:3s; +recopiant recopier ver 2.41 7.30 0.16 0.47 par:pre; +recopie recopier ver 2.41 7.30 0.50 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recopient recopier ver 2.41 7.30 0.00 0.07 ind:pre:3p; +recopier recopier ver 2.41 7.30 0.82 2.23 inf; +recopierai recopier ver 2.41 7.30 0.25 0.00 ind:fut:1s; +recopierait recopier ver 2.41 7.30 0.00 0.07 cnd:pre:3s; +recopies recopier ver 2.41 7.30 0.01 0.07 ind:pre:2s; +recopiez recopier ver 2.41 7.30 0.16 0.00 imp:pre:2p;ind:pre:2p; +recopiât recopier ver 2.41 7.30 0.00 0.07 sub:imp:3s; +recopié recopier ver m s 2.41 7.30 0.23 1.01 par:pas; +recopiée recopier ver f s 2.41 7.30 0.02 0.20 par:pas; +recopiées recopier ver f p 2.41 7.30 0.23 0.41 par:pas; +recopiés recopier ver m p 2.41 7.30 0.03 0.47 par:pas; +record record nom m s 13.34 5.95 10.14 3.11 +recorder recorder ver 0.03 0.00 0.03 0.00 inf; +recordman recordman nom m s 0.04 0.20 0.04 0.14 +recordmen recordman nom m p 0.04 0.20 0.00 0.07 +records record nom m p 13.34 5.95 3.20 2.84 +recors recors nom m 0.01 0.00 0.01 0.00 +recoucha recoucher ver 3.69 8.11 0.00 1.69 ind:pas:3s; +recouchai recoucher ver 3.69 8.11 0.00 0.41 ind:pas:1s; +recouchais recoucher ver 3.69 8.11 0.00 0.07 ind:imp:1s; +recouchait recoucher ver 3.69 8.11 0.00 0.74 ind:imp:3s; +recouchant recoucher ver 3.69 8.11 0.00 0.20 par:pre; +recouche recoucher ver 3.69 8.11 1.54 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoucher recoucher ver 3.69 8.11 1.79 2.23 inf; +recoucherais recoucher ver 3.69 8.11 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +recoucheriez recoucher ver 3.69 8.11 0.01 0.00 cnd:pre:2p; +recouchez recoucher ver 3.69 8.11 0.08 0.07 imp:pre:2p; +recouchèrent recoucher ver 3.69 8.11 0.00 0.07 ind:pas:3p; +recouché recoucher ver m s 3.69 8.11 0.20 0.47 par:pas; +recouchée recoucher ver f s 3.69 8.11 0.03 0.61 par:pas; +recouchées recoucher ver f p 3.69 8.11 0.01 0.07 par:pas; +recouchés recoucher ver m p 3.69 8.11 0.00 0.07 par:pas; +recoud recoudre ver 5.80 3.92 0.11 0.41 ind:pre:3s; +recoudra recoudre ver 5.80 3.92 0.25 0.07 ind:fut:3s; +recoudrai recoudre ver 5.80 3.92 0.16 0.07 ind:fut:1s; +recoudras recoudre ver 5.80 3.92 0.01 0.07 ind:fut:2s; +recoudre recoudre ver 5.80 3.92 2.96 1.28 inf; +recouds recoudre ver 5.80 3.92 0.53 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +recouler recouler ver 0.01 0.07 0.01 0.07 inf; +recoupa recouper ver 0.81 1.96 0.00 0.07 ind:pas:3s; +recoupaient recouper ver 0.81 1.96 0.00 0.14 ind:imp:3p; +recoupait recouper ver 0.81 1.96 0.02 0.27 ind:imp:3s; +recoupant recouper ver 0.81 1.96 0.01 0.20 par:pre; +recoupe recouper ver 0.81 1.96 0.25 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoupement recoupement nom m s 0.24 1.42 0.08 0.27 +recoupements recoupement nom m p 0.24 1.42 0.17 1.15 +recoupent recouper ver 0.81 1.96 0.10 0.41 ind:pre:3p; +recouper recouper ver 0.81 1.96 0.25 0.27 inf; +recouperait recouper ver 0.81 1.96 0.00 0.07 cnd:pre:3s; +recouperont recouper ver 0.81 1.96 0.01 0.00 ind:fut:3p; +recoupez recouper ver 0.81 1.96 0.04 0.00 imp:pre:2p; +recoupions recouper ver 0.81 1.96 0.00 0.07 ind:imp:1p; +recoupé recouper ver m s 0.81 1.96 0.10 0.14 par:pas; +recoupés recouper ver m p 0.81 1.96 0.02 0.00 par:pas; +recourait recourir ver 1.92 4.73 0.10 0.47 ind:imp:3s; +recourant recourir ver 1.92 4.73 0.04 0.07 par:pre; +recourba recourber ver 0.06 2.09 0.00 0.07 ind:pas:3s; +recourbaient recourber ver 0.06 2.09 0.00 0.07 ind:imp:3p; +recourbait recourber ver 0.06 2.09 0.00 0.14 ind:imp:3s; +recourbant recourber ver 0.06 2.09 0.00 0.14 par:pre; +recourbe recourber ver 0.06 2.09 0.03 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recourber recourber ver 0.06 2.09 0.01 0.14 inf; +recourbé recourbé adj m s 0.07 2.97 0.03 1.15 +recourbée recourber ver f s 0.06 2.09 0.01 0.47 par:pas; +recourbées recourbé adj f p 0.07 2.97 0.01 0.34 +recourbés recourbé adj m p 0.07 2.97 0.01 1.22 +recoure recourir ver 1.92 4.73 0.01 0.00 sub:pre:3s; +recourent recourir ver 1.92 4.73 0.10 0.20 ind:pre:3p; +recourez recourir ver 1.92 4.73 0.04 0.00 imp:pre:2p; +recourir recourir ver 1.92 4.73 1.25 2.77 inf; +recourons recourir ver 1.92 4.73 0.01 0.07 ind:pre:1p; +recourrait recourir ver 1.92 4.73 0.00 0.07 cnd:pre:3s; +recours recours nom m 6.45 15.34 6.45 15.34 +recourt recourir ver 1.92 4.73 0.08 0.27 ind:pre:3s; +recouru recourir ver m s 1.92 4.73 0.11 0.20 par:pas; +recoururent recourir ver 1.92 4.73 0.00 0.14 ind:pas:3p; +recourus recourir ver 1.92 4.73 0.00 0.07 ind:pas:1s; +recourut recourir ver 1.92 4.73 0.01 0.20 ind:pas:3s; +recousais recoudre ver 5.80 3.92 0.02 0.00 ind:imp:1s; +recousait recoudre ver 5.80 3.92 0.13 0.27 ind:imp:3s; +recousant recoudre ver 5.80 3.92 0.02 0.27 par:pre; +recouse recoudre ver 5.80 3.92 0.07 0.07 sub:pre:1s;sub:pre:3s; +recousez recoudre ver 5.80 3.92 0.13 0.00 imp:pre:2p; +recousu recoudre ver m s 5.80 3.92 0.78 0.81 par:pas; +recousue recoudre ver f s 5.80 3.92 0.60 0.27 par:pas; +recousus recoudre ver m p 5.80 3.92 0.04 0.20 par:pas; +recouvert recouvrir ver m s 11.04 69.26 2.79 16.82 par:pas; +recouverte recouvrir ver f s 11.04 69.26 0.90 7.77 par:pas; +recouvertes recouvrir ver f p 11.04 69.26 0.14 3.65 par:pas; +recouverts recouvrir ver m p 11.04 69.26 0.88 9.59 par:pas; +recouvrît recouvrir ver 11.04 69.26 0.00 0.14 sub:imp:3s; +recouvra recouvrer ver 2.02 5.27 0.02 0.41 ind:pas:3s; +recouvrables recouvrable adj f p 0.00 0.07 0.00 0.07 +recouvrai recouvrer ver 2.02 5.27 0.00 0.07 ind:pas:1s; +recouvraient recouvrir ver 11.04 69.26 0.23 2.30 ind:imp:3p; +recouvrais recouvrir ver 11.04 69.26 0.00 0.34 ind:imp:1s; +recouvrait recouvrir ver 11.04 69.26 0.46 7.91 ind:imp:3s; +recouvrance recouvrance nom f s 0.00 0.27 0.00 0.27 +recouvrant recouvrir ver 11.04 69.26 0.47 2.91 par:pre; +recouvre recouvrir ver 11.04 69.26 2.28 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recouvrement recouvrement nom m s 0.28 0.14 0.28 0.14 +recouvrent recouvrir ver 11.04 69.26 0.25 1.62 ind:pre:3p;sub:pre:3p; +recouvrer recouvrer ver 2.02 5.27 0.46 2.30 inf; +recouvrerai recouvrer ver 2.02 5.27 0.01 0.00 ind:fut:1s; +recouvrerait recouvrer ver 2.02 5.27 0.03 0.14 cnd:pre:3s; +recouvrerez recouvrer ver 2.02 5.27 0.02 0.00 ind:fut:2p; +recouvreront recouvrer ver 2.02 5.27 0.00 0.07 ind:fut:3p; +recouvrez recouvrir ver 11.04 69.26 0.71 0.07 imp:pre:2p;imp:pre:2p;ind:pre:2p; +recouvriez recouvrir ver 11.04 69.26 0.02 0.00 ind:imp:2p; +recouvrir recouvrir ver 11.04 69.26 1.74 5.27 inf; +recouvrira recouvrir ver 11.04 69.26 0.06 0.34 ind:fut:3s; +recouvrirai recouvrir ver 11.04 69.26 0.02 0.07 ind:fut:1s; +recouvriraient recouvrir ver 11.04 69.26 0.00 0.07 cnd:pre:3p; +recouvrirait recouvrir ver 11.04 69.26 0.02 0.27 cnd:pre:3s; +recouvrirent recouvrir ver 11.04 69.26 0.00 0.34 ind:pas:3p; +recouvris recouvrir ver 11.04 69.26 0.01 0.07 ind:pas:1s; +recouvrissent recouvrir ver 11.04 69.26 0.00 0.07 sub:imp:3p; +recouvrit recouvrir ver 11.04 69.26 0.04 1.55 ind:pas:3s; +recouvrons recouvrir ver 11.04 69.26 0.03 0.07 imp:pre:1p;ind:pre:1p; +recouvrât recouvrer ver 2.02 5.27 0.00 0.07 sub:imp:3s; +recouvré recouvrer ver m s 2.02 5.27 0.66 1.62 par:pas; +recouvrée recouvrer ver f s 2.02 5.27 0.02 0.47 par:pas; +recouvrées recouvrer ver f p 2.02 5.27 0.21 0.07 par:pas; +recouvrés recouvrer ver m p 2.02 5.27 0.01 0.07 par:pas; +recracha recracher ver 2.26 2.36 0.00 0.74 ind:pas:3s; +recrachaient recracher ver 2.26 2.36 0.01 0.14 ind:imp:3p; +recrachais recracher ver 2.26 2.36 0.01 0.07 ind:imp:1s; +recrachait recracher ver 2.26 2.36 0.03 0.20 ind:imp:3s; +recrachant recracher ver 2.26 2.36 0.01 0.00 par:pre; +recrache recracher ver 2.26 2.36 0.61 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recrachent recracher ver 2.26 2.36 0.06 0.07 ind:pre:3p; +recracher recracher ver 2.26 2.36 0.66 0.34 inf; +recrachera recracher ver 2.26 2.36 0.02 0.07 ind:fut:3s; +recraches recracher ver 2.26 2.36 0.15 0.00 ind:pre:2s; +recrachez recracher ver 2.26 2.36 0.17 0.00 imp:pre:2p;ind:pre:2p; +recraché recracher ver m s 2.26 2.36 0.47 0.27 par:pas; +recrachée recracher ver f s 2.26 2.36 0.05 0.07 par:pas; +recreuse recreuser ver 0.14 0.20 0.00 0.07 ind:pre:3s; +recreuser recreuser ver 0.14 0.20 0.14 0.07 inf; +recroisait recroiser ver 0.17 0.88 0.00 0.07 ind:imp:3s; +recroisant recroiser ver 0.17 0.88 0.00 0.14 par:pre; +recroise recroiser ver 0.17 0.88 0.03 0.34 ind:pre:1s;ind:pre:3s; +recroiser recroiser ver 0.17 0.88 0.05 0.07 inf; +recroiseras recroiser ver 0.17 0.88 0.03 0.00 ind:fut:2s; +recroiserons recroiser ver 0.17 0.88 0.01 0.00 ind:fut:1p; +recroisé recroiser ver m s 0.17 0.88 0.04 0.14 par:pas; +recroisés recroiser ver m p 0.17 0.88 0.01 0.14 par:pas; +recroquevilla recroqueviller ver 0.29 14.05 0.00 0.95 ind:pas:3s; +recroquevillai recroqueviller ver 0.29 14.05 0.01 0.14 ind:pas:1s; +recroquevillaient recroqueviller ver 0.29 14.05 0.00 0.41 ind:imp:3p; +recroquevillais recroqueviller ver 0.29 14.05 0.00 0.27 ind:imp:1s; +recroquevillait recroqueviller ver 0.29 14.05 0.00 0.74 ind:imp:3s; +recroquevillant recroqueviller ver 0.29 14.05 0.00 0.20 par:pre; +recroqueville recroqueviller ver 0.29 14.05 0.03 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recroquevillement recroquevillement nom m s 0.00 0.14 0.00 0.14 +recroquevillent recroqueviller ver 0.29 14.05 0.01 0.61 ind:pre:3p; +recroqueviller recroqueviller ver 0.29 14.05 0.03 1.22 inf; +recroquevillions recroqueviller ver 0.29 14.05 0.00 0.14 ind:imp:1p; +recroquevillé recroqueviller ver m s 0.29 14.05 0.12 4.59 par:pas; +recroquevillée recroqueviller ver f s 0.29 14.05 0.09 1.96 par:pas; +recroquevillées recroquevillé adj f p 0.12 3.72 0.00 0.61 +recroquevillés recroquevillé adj m p 0.12 3.72 0.10 0.41 +recru recroître ver m s 0.00 0.47 0.00 0.34 par:pas; +recréa recréer ver 2.23 4.39 0.00 0.14 ind:pas:3s; +recréaient recréer ver 2.23 4.39 0.01 0.14 ind:imp:3p; +recréais recréer ver 2.23 4.39 0.01 0.07 ind:imp:1s; +recréait recréer ver 2.23 4.39 0.00 0.07 ind:imp:3s; +recréant recréer ver 2.23 4.39 0.04 0.27 par:pre; +recréation recréation nom f s 0.04 0.27 0.01 0.20 +recrudescence recrudescence nom f s 0.21 0.81 0.21 0.81 +recrudescente recrudescent adj f s 0.01 0.00 0.01 0.00 +recrée recréer ver 2.23 4.39 0.28 0.34 ind:pre:1s;ind:pre:3s; +recrue recrue nom f s 4.61 3.85 1.73 1.35 +recréent recréer ver 2.23 4.39 0.00 0.14 ind:pre:3p; +recréer recréer ver 2.23 4.39 1.61 2.16 inf; +recréerait recréer ver 2.23 4.39 0.01 0.14 cnd:pre:3s; +recrues recrue nom f p 4.61 3.85 2.87 2.50 +recrépi recrépir ver m s 0.00 0.34 0.00 0.07 par:pas; +recrépie recrépir ver f s 0.00 0.34 0.00 0.07 par:pas; +recrépir recrépir ver 0.00 0.34 0.00 0.07 inf; +recrépis recrépir ver m p 0.00 0.34 0.00 0.07 par:pas; +recrépit recrépir ver 0.00 0.34 0.00 0.07 ind:pre:3s; +recrus recroître ver m p 0.00 0.47 0.00 0.14 par:pas; +recruta recruter ver 7.45 6.15 0.01 0.20 ind:pas:3s; +recrutaient recruter ver 7.45 6.15 0.03 0.27 ind:imp:3p; +recrutais recruter ver 7.45 6.15 0.02 0.00 ind:imp:1s;ind:imp:2s; +recrutait recruter ver 7.45 6.15 0.24 0.54 ind:imp:3s; +recrutant recruter ver 7.45 6.15 0.08 0.07 par:pre; +recrute recruter ver 7.45 6.15 1.01 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recrutement recrutement nom m s 1.66 3.51 1.66 3.51 +recrutent recruter ver 7.45 6.15 0.24 0.27 ind:pre:3p; +recruter recruter ver 7.45 6.15 2.59 1.76 inf; +recrutera recruter ver 7.45 6.15 0.04 0.00 ind:fut:3s; +recruterai recruter ver 7.45 6.15 0.04 0.00 ind:fut:1s; +recruterez recruter ver 7.45 6.15 0.00 0.07 ind:fut:2p; +recruteur recruteur nom m s 1.34 0.20 0.87 0.14 +recruteurs recruteur nom m p 1.34 0.20 0.47 0.07 +recrutez recruter ver 7.45 6.15 0.13 0.00 imp:pre:2p;ind:pre:2p; +recrutiez recruter ver 7.45 6.15 0.02 0.00 ind:imp:2p; +recrutions recruter ver 7.45 6.15 0.01 0.07 ind:imp:1p; +recrutons recruter ver 7.45 6.15 0.07 0.00 imp:pre:1p;ind:pre:1p; +recruté recruter ver m s 7.45 6.15 2.27 1.08 par:pas; +recrutée recruter ver f s 7.45 6.15 0.29 0.34 par:pas; +recrutées recruter ver f p 7.45 6.15 0.02 0.20 par:pas; +recrutés recruter ver m p 7.45 6.15 0.34 0.88 par:pas; +recréé recréer ver m s 2.23 4.39 0.16 0.61 par:pas; +recréée recréer ver f s 2.23 4.39 0.02 0.20 par:pas; +recréées recréer ver f p 2.23 4.39 0.01 0.07 par:pas; +recréés recréer ver m p 2.23 4.39 0.07 0.00 par:pas; +recta recta adv_sup 0.08 1.08 0.08 1.08 +rectal rectal adj m s 0.66 0.14 0.33 0.00 +rectale rectal adj f s 0.66 0.14 0.29 0.14 +rectangle rectangle nom m s 0.47 16.69 0.38 12.91 +rectangles rectangle nom m p 0.47 16.69 0.09 3.78 +rectangulaire rectangulaire adj s 0.25 8.18 0.09 5.14 +rectangulaires rectangulaire adj p 0.25 8.18 0.16 3.04 +rectaux rectal adj m p 0.66 0.14 0.03 0.00 +recteur recteur nom m s 2.17 1.55 2.13 1.42 +recteurs recteur nom m p 2.17 1.55 0.04 0.07 +recèle receler ver 1.02 3.72 0.58 0.95 ind:pre:1s;ind:pre:3s; +recèlent receler ver 1.02 3.72 0.31 0.68 ind:pre:3p; +recèles receler ver 1.02 3.72 0.01 0.00 ind:pre:2s; +recès recès nom m 0.00 0.07 0.00 0.07 +rectifia rectifier ver 2.04 10.68 0.00 2.64 ind:pas:3s; +rectifiai rectifier ver 2.04 10.68 0.00 0.20 ind:pas:1s; +rectifiait rectifier ver 2.04 10.68 0.01 0.81 ind:imp:3s; +rectifiant rectifier ver 2.04 10.68 0.00 0.34 par:pre; +rectificatif rectificatif nom m s 0.05 0.07 0.05 0.07 +rectification rectification nom f s 0.93 0.61 0.91 0.34 +rectifications rectification nom f p 0.93 0.61 0.02 0.27 +rectifie rectifier ver 2.04 10.68 0.26 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rectifient rectifier ver 2.04 10.68 0.01 0.14 ind:pre:3p; +rectifier rectifier ver 2.04 10.68 0.92 2.50 inf; +rectifiera rectifier ver 2.04 10.68 0.02 0.00 ind:fut:3s; +rectifierai rectifier ver 2.04 10.68 0.00 0.07 ind:fut:1s; +rectifierez rectifier ver 2.04 10.68 0.00 0.07 ind:fut:2p; +rectifies rectifier ver 2.04 10.68 0.01 0.07 ind:pre:2s; +rectifiez rectifier ver 2.04 10.68 0.34 0.14 imp:pre:2p;ind:pre:2p; +rectifions rectifier ver 2.04 10.68 0.03 0.07 imp:pre:1p; +rectifièrent rectifier ver 2.04 10.68 0.00 0.14 ind:pas:3p; +rectifié rectifier ver m s 2.04 10.68 0.36 1.22 par:pas; +rectifiée rectifier ver f s 2.04 10.68 0.06 0.47 par:pas; +rectifiées rectifier ver f p 2.04 10.68 0.00 0.34 par:pas; +rectifiés rectifier ver m p 2.04 10.68 0.01 0.14 par:pas; +rectiligne rectiligne adj s 0.16 6.08 0.16 4.46 +rectilignes rectiligne adj p 0.16 6.08 0.00 1.62 +rectilinéaire rectilinéaire adj m s 0.01 0.00 0.01 0.00 +rectitude rectitude nom f s 0.05 0.68 0.05 0.68 +recto_tono recto_tono adv 0.00 0.20 0.00 0.20 +recto recto nom m s 0.30 0.95 0.30 0.88 +rectorat rectorat nom m s 0.18 0.00 0.18 0.00 +rectos recto nom m p 0.30 0.95 0.00 0.07 +rectrices recteur nom f p 2.17 1.55 0.00 0.07 +rectum rectum nom m s 0.50 0.81 0.50 0.81 +recueil recueil nom m s 1.52 3.78 1.33 2.97 +recueillît recueillir ver 8.54 31.42 0.00 0.34 sub:imp:3s; +recueillaient recueillir ver 8.54 31.42 0.02 0.34 ind:imp:3p; +recueillais recueillir ver 8.54 31.42 0.04 0.20 ind:imp:1s; +recueillait recueillir ver 8.54 31.42 0.05 1.96 ind:imp:3s; +recueillant recueillir ver 8.54 31.42 0.05 1.01 par:pre; +recueille recueillir ver 8.54 31.42 1.12 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recueillement recueillement nom m s 0.20 3.04 0.20 2.97 +recueillements recueillement nom m p 0.20 3.04 0.00 0.07 +recueillent recueillir ver 8.54 31.42 0.21 0.81 ind:pre:3p; +recueillera recueillir ver 8.54 31.42 0.05 0.47 ind:fut:3s; +recueillerai recueillir ver 8.54 31.42 0.02 0.07 ind:fut:1s; +recueilleraient recueillir ver 8.54 31.42 0.00 0.07 cnd:pre:3p; +recueillerait recueillir ver 8.54 31.42 0.01 0.27 cnd:pre:3s; +recueilleront recueillir ver 8.54 31.42 0.00 0.07 ind:fut:3p; +recueillez recueillir ver 8.54 31.42 0.22 0.00 imp:pre:2p;ind:pre:2p; +recueilli recueillir ver m s 8.54 31.42 2.20 5.88 par:pas; +recueillie recueillir ver f s 8.54 31.42 0.42 1.15 par:pas; +recueillies recueillir ver f p 8.54 31.42 0.29 0.74 par:pas; +recueillions recueillir ver 8.54 31.42 0.00 0.07 ind:imp:1p; +recueillir recueillir ver 8.54 31.42 2.59 9.46 inf; +recueillirent recueillir ver 8.54 31.42 0.11 0.41 ind:pas:3p; +recueillis recueillir ver m p 8.54 31.42 0.58 2.09 ind:pas:1s;par:pas; +recueillit recueillir ver 8.54 31.42 0.18 2.57 ind:pas:3s; +recueillons recueillir ver 8.54 31.42 0.38 0.07 imp:pre:1p;ind:pre:1p; +recueils recueil nom m p 1.52 3.78 0.19 0.81 +recuire recuire ver 0.02 0.68 0.02 0.07 inf; +recuisson recuisson nom f s 0.00 0.07 0.00 0.07 +recuit recuit adj m s 0.03 1.55 0.03 0.54 +recuite recuit adj f s 0.03 1.55 0.00 0.54 +recuites recuire ver f p 0.02 0.68 0.00 0.27 par:pas; +recuits recuit adj m p 0.03 1.55 0.00 0.34 +recul recul nom m s 3.59 15.61 3.59 14.73 +recula reculer ver 52.15 69.05 0.02 13.31 ind:pas:3s; +reculade reculade nom f s 0.00 0.54 0.00 0.47 +reculades reculade nom f p 0.00 0.54 0.00 0.07 +reculai reculer ver 52.15 69.05 0.03 0.68 ind:pas:1s; +reculaient reculer ver 52.15 69.05 0.01 1.62 ind:imp:3p; +reculais reculer ver 52.15 69.05 0.04 0.54 ind:imp:1s;ind:imp:2s; +reculait reculer ver 52.15 69.05 0.20 4.86 ind:imp:3s; +recélait recéler ver 0.02 0.54 0.02 0.34 ind:imp:3s; +reculant reculer ver 52.15 69.05 0.25 3.78 par:pre; +recélant recéler ver 0.02 0.54 0.00 0.07 par:pre; +recule reculer ver 52.15 69.05 15.11 11.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reculent reculer ver 52.15 69.05 1.31 1.49 ind:pre:3p; +reculer reculer ver 52.15 69.05 6.83 15.41 inf; +recéler recéler ver 0.02 0.54 0.00 0.14 inf; +reculera reculer ver 52.15 69.05 0.14 0.14 ind:fut:3s; +reculerai reculer ver 52.15 69.05 0.24 0.00 ind:fut:1s; +reculeraient reculer ver 52.15 69.05 0.01 0.07 cnd:pre:3p; +reculerais reculer ver 52.15 69.05 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +reculerait reculer ver 52.15 69.05 0.01 0.14 cnd:pre:3s; +reculeras reculer ver 52.15 69.05 0.26 0.00 ind:fut:2s; +reculerons reculer ver 52.15 69.05 0.02 0.00 ind:fut:1p; +reculeront reculer ver 52.15 69.05 0.20 0.00 ind:fut:3p; +recules reculer ver 52.15 69.05 1.00 0.07 ind:pre:2s;sub:pre:2s; +reculez reculer ver 52.15 69.05 22.91 0.20 imp:pre:2p;ind:pre:2p; +reculons reculer ver 52.15 69.05 1.67 6.62 imp:pre:1p;ind:pre:1p; +reculât reculer ver 52.15 69.05 0.00 0.07 sub:imp:3s; +reculotta reculotter ver 0.02 0.47 0.00 0.20 ind:pas:3s; +reculotte reculotter ver 0.02 0.47 0.02 0.07 imp:pre:2s;ind:pre:3s; +reculotter reculotter ver 0.02 0.47 0.00 0.07 inf; +reculotté reculotter ver m s 0.02 0.47 0.00 0.07 par:pas; +reculottée reculotter ver f s 0.02 0.47 0.00 0.07 par:pas; +reculs recul nom m p 3.59 15.61 0.00 0.81 +reculèrent reculer ver 52.15 69.05 0.01 1.22 ind:pas:3p; +reculé reculer ver m s 52.15 69.05 1.71 6.96 par:pas; +reculée reculé adj f s 0.71 3.78 0.14 0.54 +reculées reculer ver f p 52.15 69.05 0.02 0.00 par:pas; +reculés reculé adj m p 0.71 3.78 0.18 1.15 +recépages recépage nom m p 0.00 0.07 0.00 0.07 +recyclable recyclable adj s 0.14 0.00 0.06 0.00 +recyclables recyclable adj p 0.14 0.00 0.09 0.00 +recyclage recyclage nom m s 0.78 0.47 0.78 0.47 +recyclaient recycler ver 1.77 1.15 0.02 0.00 ind:imp:3p; +recyclait recycler ver 1.77 1.15 0.01 0.00 ind:imp:3s; +recycle recycler ver 1.77 1.15 0.46 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recyclent recycler ver 1.77 1.15 0.06 0.07 ind:pre:3p; +recycler recycler ver 1.77 1.15 0.56 0.41 inf; +recyclerai recycler ver 1.77 1.15 0.01 0.00 ind:fut:1s; +recycleur recycleur nom m s 0.01 0.00 0.01 0.00 +recyclez recycler ver 1.77 1.15 0.07 0.00 imp:pre:2p;ind:pre:2p; +recycliez recycler ver 1.77 1.15 0.00 0.07 ind:imp:2p; +recyclé recycler ver m s 1.77 1.15 0.39 0.41 par:pas; +recyclée recycler ver f s 1.77 1.15 0.10 0.14 par:pas; +recyclées recycler ver f p 1.77 1.15 0.03 0.00 par:pas; +recyclés recycler ver m p 1.77 1.15 0.06 0.07 par:pas; +red_river red_river nom s 0.00 0.14 0.00 0.14 +redan redan nom m s 0.00 0.27 0.00 0.27 +reddition reddition nom f s 2.21 3.24 2.21 3.24 +redemanda redemander ver 3.72 4.19 0.00 0.61 ind:pas:3s; +redemandai redemander ver 3.72 4.19 0.14 0.00 ind:pas:1s; +redemandaient redemander ver 3.72 4.19 0.00 0.27 ind:imp:3p; +redemandais redemander ver 3.72 4.19 0.13 0.00 ind:imp:1s;ind:imp:2s; +redemandait redemander ver 3.72 4.19 0.16 0.68 ind:imp:3s; +redemandant redemander ver 3.72 4.19 0.00 0.07 par:pre; +redemande redemander ver 3.72 4.19 1.16 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redemandent redemander ver 3.72 4.19 0.23 0.14 ind:pre:3p; +redemander redemander ver 3.72 4.19 0.54 0.41 inf; +redemanderai redemander ver 3.72 4.19 0.36 0.00 ind:fut:1s; +redemanderait redemander ver 3.72 4.19 0.01 0.00 cnd:pre:3s; +redemanderas redemander ver 3.72 4.19 0.20 0.00 ind:fut:2s; +redemanderez redemander ver 3.72 4.19 0.03 0.00 ind:fut:2p; +redemanderont redemander ver 3.72 4.19 0.00 0.07 ind:fut:3p; +redemandes redemander ver 3.72 4.19 0.28 0.00 ind:pre:2s; +redemandez redemander ver 3.72 4.19 0.20 0.00 imp:pre:2p;ind:pre:2p; +redemandions redemander ver 3.72 4.19 0.00 0.07 ind:imp:1p; +redemandé redemander ver m s 3.72 4.19 0.29 0.95 par:pas; +redents redent nom m p 0.00 0.07 0.00 0.07 +redescend redescendre ver 11.61 28.38 1.82 2.84 ind:pre:3s; +redescendît redescendre ver 11.61 28.38 0.00 0.07 sub:imp:3s; +redescendaient redescendre ver 11.61 28.38 0.00 0.88 ind:imp:3p; +redescendais redescendre ver 11.61 28.38 0.01 0.41 ind:imp:1s; +redescendait redescendre ver 11.61 28.38 0.12 2.30 ind:imp:3s; +redescendant redescendre ver 11.61 28.38 0.29 1.55 par:pre; +redescende redescendre ver 11.61 28.38 0.50 0.41 sub:pre:1s;sub:pre:3s; +redescendent redescendre ver 11.61 28.38 0.33 0.41 ind:pre:3p; +redescendes redescendre ver 11.61 28.38 0.12 0.00 sub:pre:2s; +redescendez redescendre ver 11.61 28.38 0.92 0.14 imp:pre:2p;ind:pre:2p; +redescendiez redescendre ver 11.61 28.38 0.01 0.00 ind:imp:2p; +redescendions redescendre ver 11.61 28.38 0.00 0.14 ind:imp:1p; +redescendirent redescendre ver 11.61 28.38 0.00 1.01 ind:pas:3p; +redescendis redescendre ver 11.61 28.38 0.00 0.47 ind:pas:1s;ind:pas:2s; +redescendit redescendre ver 11.61 28.38 0.01 4.19 ind:pas:3s; +redescendons redescendre ver 11.61 28.38 0.14 0.41 imp:pre:1p;ind:pre:1p; +redescendra redescendre ver 11.61 28.38 0.06 0.14 ind:fut:3s; +redescendrai redescendre ver 11.61 28.38 0.19 0.20 ind:fut:1s; +redescendrais redescendre ver 11.61 28.38 0.01 0.00 cnd:pre:1s; +redescendrait redescendre ver 11.61 28.38 0.00 0.20 cnd:pre:3s; +redescendre redescendre ver 11.61 28.38 3.08 5.88 inf; +redescendrons redescendre ver 11.61 28.38 0.01 0.07 ind:fut:1p; +redescendront redescendre ver 11.61 28.38 0.02 0.00 ind:fut:3p; +redescends redescendre ver 11.61 28.38 3.05 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redescendu redescendre ver m s 11.61 28.38 0.51 3.04 par:pas; +redescendue redescendre ver f s 11.61 28.38 0.25 0.41 par:pas; +redescendues redescendre ver f p 11.61 28.38 0.00 0.14 par:pas; +redescendus redescendre ver m p 11.61 28.38 0.16 1.42 par:pas; +redescente redescente nom f s 0.01 0.14 0.01 0.14 +redessina redessiner ver 0.13 1.08 0.00 0.14 ind:pas:3s; +redessinaient redessiner ver 0.13 1.08 0.00 0.07 ind:imp:3p; +redessinait redessiner ver 0.13 1.08 0.00 0.14 ind:imp:3s; +redessine redessiner ver 0.13 1.08 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redessinent redessiner ver 0.13 1.08 0.00 0.07 ind:pre:3p; +redessiner redessiner ver 0.13 1.08 0.04 0.34 inf; +redessiné redessiner ver m s 0.13 1.08 0.00 0.20 par:pas; +redessinée redessiner ver f s 0.13 1.08 0.00 0.07 par:pas; +redevînt redevenir ver 17.88 37.57 0.00 0.20 sub:imp:3s; +redevable redevable adj s 3.76 0.81 3.46 0.74 +redevables redevable adj p 3.76 0.81 0.30 0.07 +redevais redevoir ver 0.03 0.20 0.00 0.07 ind:imp:1s; +redevait redevoir ver 0.03 0.20 0.00 0.07 ind:imp:3s; +redevance redevance nom f s 0.04 0.47 0.03 0.27 +redevances redevance nom f p 0.04 0.47 0.01 0.20 +redevenaient redevenir ver 17.88 37.57 0.01 0.74 ind:imp:3p; +redevenais redevenir ver 17.88 37.57 0.17 0.47 ind:imp:1s; +redevenait redevenir ver 17.88 37.57 0.11 4.73 ind:imp:3s; +redevenant redevenir ver 17.88 37.57 0.05 0.47 par:pre; +redevenez redevenir ver 17.88 37.57 0.39 0.14 imp:pre:2p;ind:pre:2p; +redeveniez redevenir ver 17.88 37.57 0.09 0.14 ind:imp:2p; +redevenir redevenir ver 17.88 37.57 5.52 5.88 inf; +redevenons redevenir ver 17.88 37.57 0.04 0.07 imp:pre:1p;ind:pre:1p; +redevenu redevenir ver m s 17.88 37.57 1.65 6.35 par:pas; +redevenue redevenir ver f s 17.88 37.57 0.56 4.53 par:pas; +redevenues redevenir ver f p 17.88 37.57 0.08 0.61 par:pas; +redevenus redevenir ver m p 17.88 37.57 0.40 1.42 par:pas; +redeviendra redevenir ver 17.88 37.57 1.50 0.54 ind:fut:3s; +redeviendrai redevenir ver 17.88 37.57 0.25 0.07 ind:fut:1s; +redeviendraient redevenir ver 17.88 37.57 0.01 0.14 cnd:pre:3p; +redeviendrais redevenir ver 17.88 37.57 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +redeviendrait redevenir ver 17.88 37.57 0.15 0.61 cnd:pre:3s; +redeviendras redevenir ver 17.88 37.57 0.37 0.00 ind:fut:2s; +redeviendrez redevenir ver 17.88 37.57 0.13 0.00 ind:fut:2p; +redeviendriez redevenir ver 17.88 37.57 0.14 0.00 cnd:pre:2p; +redeviendrons redevenir ver 17.88 37.57 0.03 0.07 ind:fut:1p; +redeviendront redevenir ver 17.88 37.57 0.28 0.07 ind:fut:3p; +redevienne redevenir ver 17.88 37.57 1.65 0.34 sub:pre:1s;sub:pre:3s; +redeviennent redevenir ver 17.88 37.57 0.44 0.61 ind:pre:3p; +redeviennes redevenir ver 17.88 37.57 0.17 0.00 sub:pre:2s; +redeviens redevenir ver 17.88 37.57 1.88 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redevient redevenir ver 17.88 37.57 1.21 4.05 ind:pre:3s; +redevinrent redevenir ver 17.88 37.57 0.01 0.20 ind:pas:3p; +redevins redevenir ver 17.88 37.57 0.00 0.20 ind:pas:1s; +redevint redevenir ver 17.88 37.57 0.23 3.65 ind:pas:3s; +redevoir redevoir ver 0.03 0.20 0.01 0.00 inf; +redevra redevoir ver 0.03 0.20 0.00 0.07 ind:fut:3s; +redevrez redevoir ver 0.03 0.20 0.01 0.00 ind:fut:2p; +rediffusent rediffuser ver 0.20 0.07 0.02 0.00 ind:pre:3p; +rediffuser rediffuser ver 0.20 0.07 0.05 0.00 inf; +rediffuserons rediffuser ver 0.20 0.07 0.02 0.00 ind:fut:1p; +rediffusez rediffuser ver 0.20 0.07 0.01 0.00 imp:pre:2p; +rediffusion rediffusion nom f s 0.64 0.00 0.44 0.00 +rediffusions rediffusion nom f p 0.64 0.00 0.20 0.00 +rediffusé rediffuser ver m s 0.20 0.07 0.05 0.00 par:pas; +rediffusés rediffuser ver m p 0.20 0.07 0.03 0.07 par:pas; +redimensionner redimensionner ver 0.03 0.00 0.01 0.00 inf; +redimensionnées redimensionner ver f p 0.03 0.00 0.01 0.00 par:pas; +redingote redingote nom f s 0.81 5.07 0.54 4.66 +redingotes redingote nom f p 0.81 5.07 0.27 0.41 +redirai redire ver 8.61 10.20 0.47 0.07 ind:fut:1s; +redirais redire ver 8.61 10.20 0.03 0.00 cnd:pre:1s; +redirait redire ver 8.61 10.20 0.01 0.07 cnd:pre:3s; +redire redire ver 8.61 10.20 3.04 5.07 inf; +redirez redire ver 8.61 10.20 0.01 0.07 ind:fut:2p; +rediriez redire ver 8.61 10.20 0.01 0.00 cnd:pre:2p; +redirige rediriger ver 0.37 0.00 0.08 0.00 ind:pre:1s;ind:pre:3s; +rediriger rediriger ver 0.37 0.00 0.15 0.00 inf; +redirigé rediriger ver m s 0.37 0.00 0.14 0.00 par:pas; +redis redire ver 8.61 10.20 3.46 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redisais redire ver 8.61 10.20 0.01 0.20 ind:imp:1s; +redisait redire ver 8.61 10.20 0.00 0.34 ind:imp:3s; +redisant redire ver 8.61 10.20 0.01 0.20 par:pre; +rediscuter rediscuter ver 0.20 0.07 0.10 0.07 inf; +rediscutera rediscuter ver 0.20 0.07 0.05 0.00 ind:fut:3s; +rediscuterons rediscuter ver 0.20 0.07 0.05 0.00 ind:fut:1p; +redise redire ver 8.61 10.20 0.02 0.20 sub:pre:1s;sub:pre:3s; +redisent redire ver 8.61 10.20 0.01 0.07 ind:pre:3p; +redises redire ver 8.61 10.20 0.27 0.00 sub:pre:2s; +redisposer redisposer ver 0.16 0.14 0.16 0.14 inf; +redistribua redistribuer ver 0.34 0.61 0.01 0.00 ind:pas:3s; +redistribuais redistribuer ver 0.34 0.61 0.02 0.07 ind:imp:1s;ind:imp:2s; +redistribuait redistribuer ver 0.34 0.61 0.00 0.20 ind:imp:3s; +redistribue redistribuer ver 0.34 0.61 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redistribuent redistribuer ver 0.34 0.61 0.01 0.00 ind:pre:3p; +redistribuer redistribuer ver 0.34 0.61 0.13 0.14 inf; +redistribueras redistribuer ver 0.34 0.61 0.01 0.00 ind:fut:2s; +redistribuons redistribuer ver 0.34 0.61 0.01 0.00 imp:pre:1p; +redistribution redistribution nom f s 0.10 0.41 0.10 0.34 +redistributions redistribution nom f p 0.10 0.41 0.00 0.07 +redistribué redistribuer ver m s 0.34 0.61 0.04 0.07 par:pas; +redistribués redistribuer ver m p 0.34 0.61 0.03 0.07 par:pas; +redit redire ver m s 8.61 10.20 0.39 1.96 ind:pre:3s;par:pas; +redite redire ver f s 8.61 10.20 0.01 0.00 par:pas; +redites redire ver f p 8.61 10.20 0.85 0.20 par:pas; +redits redire ver m p 8.61 10.20 0.00 0.14 par:pas; +redondance redondance nom f s 0.07 0.34 0.04 0.07 +redondances redondance nom f p 0.07 0.34 0.04 0.27 +redondant redondant adj m s 0.39 0.27 0.32 0.14 +redondante redondant adj f s 0.39 0.27 0.03 0.07 +redondantes redondant adj f p 0.39 0.27 0.01 0.07 +redondants redondant adj m p 0.39 0.27 0.04 0.00 +redonna redonner ver 9.43 11.49 0.03 0.54 ind:pas:3s; +redonnai redonner ver 9.43 11.49 0.00 0.07 ind:pas:1s; +redonnaient redonner ver 9.43 11.49 0.00 0.20 ind:imp:3p; +redonnais redonner ver 9.43 11.49 0.01 0.07 ind:imp:1s; +redonnait redonner ver 9.43 11.49 0.05 1.55 ind:imp:3s; +redonnant redonner ver 9.43 11.49 0.03 0.47 par:pre; +redonne redonner ver 9.43 11.49 2.77 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redonnent redonner ver 9.43 11.49 0.25 0.20 ind:pre:3p; +redonner redonner ver 9.43 11.49 2.87 4.73 inf; +redonnera redonner ver 9.43 11.49 0.27 0.20 ind:fut:3s; +redonnerai redonner ver 9.43 11.49 0.11 0.00 ind:fut:1s; +redonneraient redonner ver 9.43 11.49 0.01 0.07 cnd:pre:3p; +redonnerais redonner ver 9.43 11.49 0.00 0.07 cnd:pre:1s; +redonnerait redonner ver 9.43 11.49 0.04 0.14 cnd:pre:3s; +redonneras redonner ver 9.43 11.49 0.14 0.00 ind:fut:2s; +redonnerons redonner ver 9.43 11.49 0.01 0.00 ind:fut:1p; +redonneront redonner ver 9.43 11.49 0.02 0.00 ind:fut:3p; +redonnes redonner ver 9.43 11.49 0.56 0.00 ind:pre:2s; +redonnez redonner ver 9.43 11.49 0.54 0.07 imp:pre:2p;ind:pre:2p; +redonniez redonner ver 9.43 11.49 0.01 0.00 ind:imp:2p; +redonnons redonner ver 9.43 11.49 0.42 0.00 imp:pre:1p;ind:pre:1p; +redonnât redonner ver 9.43 11.49 0.00 0.07 sub:imp:3s; +redonné redonner ver m s 9.43 11.49 1.28 1.42 par:pas; +redorer redorer ver 0.18 0.41 0.18 0.27 inf; +redormir redormir ver 0.01 0.27 0.01 0.14 inf; +redors redormir ver 0.01 0.27 0.00 0.07 ind:pre:1s; +redort redormir ver 0.01 0.27 0.00 0.07 ind:pre:3s; +redoré redorer ver m s 0.18 0.41 0.00 0.07 par:pas; +redorées redorer ver f p 0.18 0.41 0.00 0.07 par:pas; +redoubla redoubler ver 2.73 11.01 0.00 1.08 ind:pas:3s; +redoublai redoubler ver 2.73 11.01 0.01 0.20 ind:pas:1s; +redoublaient redoubler ver 2.73 11.01 0.00 0.74 ind:imp:3p; +redoublais redoubler ver 2.73 11.01 0.01 0.07 ind:imp:1s; +redoublait redoubler ver 2.73 11.01 0.02 1.96 ind:imp:3s; +redoublant redoubler ver 2.73 11.01 0.01 0.20 par:pre; +redoublants redoublant nom m p 0.00 0.07 0.00 0.07 +redouble redoubler ver 2.73 11.01 0.57 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redoublement redoublement nom m s 0.03 0.47 0.03 0.47 +redoublent redoubler ver 2.73 11.01 0.17 0.74 ind:pre:3p; +redoubler redoubler ver 2.73 11.01 1.16 1.96 inf; +redoublera redoubler ver 2.73 11.01 0.11 0.07 ind:fut:3s; +redoublerai redoubler ver 2.73 11.01 0.12 0.07 ind:fut:1s; +redoublerait redoubler ver 2.73 11.01 0.00 0.14 cnd:pre:3s; +redoubleront redoubler ver 2.73 11.01 0.01 0.07 ind:fut:3p; +redoublez redoubler ver 2.73 11.01 0.04 0.00 imp:pre:2p;ind:pre:2p; +redoublions redoubler ver 2.73 11.01 0.00 0.07 ind:imp:1p; +redoublons redoubler ver 2.73 11.01 0.00 0.07 imp:pre:1p; +redoublèrent redoubler ver 2.73 11.01 0.00 0.27 ind:pas:3p; +redoublé redoubler ver m s 2.73 11.01 0.35 0.61 par:pas; +redoublée redoubler ver f s 2.73 11.01 0.00 0.20 par:pas; +redoublées redoublé adj f p 0.05 1.28 0.00 0.14 +redoublés redoubler ver m p 2.73 11.01 0.14 0.27 par:pas; +redouta redouter ver 6.58 38.58 0.00 0.54 ind:pas:3s; +redoutable redoutable adj s 6.61 23.18 5.94 17.77 +redoutablement redoutablement adv 0.01 0.41 0.01 0.41 +redoutables redoutable adj p 6.61 23.18 0.67 5.41 +redoutaient redouter ver 6.58 38.58 0.08 0.74 ind:imp:3p; +redoutais redouter ver 6.58 38.58 0.66 3.65 ind:imp:1s;ind:imp:2s; +redoutait redouter ver 6.58 38.58 0.73 11.49 ind:imp:3s; +redoutant redouter ver 6.58 38.58 0.12 3.18 par:pre; +redoutasse redouter ver 6.58 38.58 0.00 0.07 sub:imp:1s; +redoute redouter ver 6.58 38.58 1.51 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redoutent redouter ver 6.58 38.58 0.40 1.15 ind:pre:3p;sub:pre:3p; +redouter redouter ver 6.58 38.58 1.03 4.80 inf; +redouterait redouter ver 6.58 38.58 0.00 0.07 cnd:pre:3s; +redouteras redouter ver 6.58 38.58 0.00 0.07 ind:fut:2s; +redoutes redouter ver 6.58 38.58 0.15 0.07 ind:pre:2s; +redoutez redouter ver 6.58 38.58 0.44 0.07 imp:pre:2p;ind:pre:2p; +redoutiez redouter ver 6.58 38.58 0.37 0.00 ind:imp:2p; +redoutions redouter ver 6.58 38.58 0.04 0.54 ind:imp:1p;sub:pre:1p; +redoutons redouter ver 6.58 38.58 0.04 0.14 imp:pre:1p;ind:pre:1p; +redoutât redouter ver 6.58 38.58 0.00 0.20 sub:imp:3s; +redoutèrent redouter ver 6.58 38.58 0.00 0.07 ind:pas:3p; +redouté redouter ver m s 6.58 38.58 0.79 4.05 par:pas; +redoutée redouter ver f s 6.58 38.58 0.20 1.69 par:pas; +redoutées redouter ver f p 6.58 38.58 0.00 0.47 par:pas; +redoutés redouter ver m p 6.58 38.58 0.02 0.68 par:pas; +redoux redoux nom m 0.01 0.88 0.01 0.88 +redressa redresser ver 8.93 64.39 0.03 22.16 ind:pas:3s; +redressai redresser ver 8.93 64.39 0.00 1.08 ind:pas:1s; +redressaient redresser ver 8.93 64.39 0.00 0.74 ind:imp:3p; +redressais redresser ver 8.93 64.39 0.00 0.34 ind:imp:1s; +redressait redresser ver 8.93 64.39 0.01 4.26 ind:imp:3s; +redressant redresser ver 8.93 64.39 0.04 5.47 par:pre; +redresse redresser ver 8.93 64.39 3.91 10.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redressement redressement nom m s 1.63 6.62 1.63 6.55 +redressements redressement nom m p 1.63 6.62 0.00 0.07 +redressent redresser ver 8.93 64.39 0.17 0.68 ind:pre:3p; +redresser redresser ver 8.93 64.39 2.28 8.24 inf; +redressera redresser ver 8.93 64.39 0.12 0.07 ind:fut:3s; +redresserai redresser ver 8.93 64.39 0.13 0.00 ind:fut:1s; +redresserait redresser ver 8.93 64.39 0.01 0.27 cnd:pre:3s; +redresserons redresser ver 8.93 64.39 0.00 0.07 ind:fut:1p; +redresses redresser ver 8.93 64.39 0.23 0.00 ind:pre:2s;sub:pre:2s; +redresseur redresseur nom m s 0.32 0.34 0.27 0.20 +redresseurs redresseur nom m p 0.32 0.34 0.03 0.14 +redresseuse redresseur nom f s 0.32 0.34 0.02 0.00 +redressez redresser ver 8.93 64.39 1.40 0.14 imp:pre:2p;ind:pre:2p; +redressons redresser ver 8.93 64.39 0.13 0.07 imp:pre:1p;ind:pre:1p; +redressât redresser ver 8.93 64.39 0.00 0.20 sub:imp:3s; +redressèrent redresser ver 8.93 64.39 0.00 0.47 ind:pas:3p; +redressé redresser ver m s 8.93 64.39 0.30 5.61 par:pas; +redressée redresser ver f s 8.93 64.39 0.15 2.77 par:pas; +redressées redresser ver f p 8.93 64.39 0.00 0.34 par:pas; +redressés redresser ver m p 8.93 64.39 0.01 0.54 par:pas; +redéconner redéconner ver 0.01 0.00 0.01 0.00 inf; +redécoré redécoré adj m s 0.26 0.14 0.26 0.14 +redécoupage redécoupage nom m s 0.01 0.00 0.01 0.00 +redécouvert redécouvrir ver m s 0.70 3.18 0.13 0.41 par:pas; +redécouverte redécouverte nom f s 0.03 0.14 0.03 0.14 +redécouvertes redécouvrir ver f p 0.70 3.18 0.00 0.07 par:pas; +redécouverts redécouvert adj m p 0.00 0.07 0.00 0.07 +redécouvrît redécouvrir ver 0.70 3.18 0.00 0.07 sub:imp:3s; +redécouvraient redécouvrir ver 0.70 3.18 0.01 0.07 ind:imp:3p; +redécouvrait redécouvrir ver 0.70 3.18 0.00 0.34 ind:imp:3s; +redécouvrant redécouvrir ver 0.70 3.18 0.10 0.14 par:pre; +redécouvre redécouvrir ver 0.70 3.18 0.01 0.41 ind:pre:1s;ind:pre:3s; +redécouvrent redécouvrir ver 0.70 3.18 0.10 0.07 ind:pre:3p; +redécouvrions redécouvrir ver 0.70 3.18 0.00 0.14 ind:imp:1p; +redécouvrir redécouvrir ver 0.70 3.18 0.29 1.22 inf; +redécouvrira redécouvrir ver 0.70 3.18 0.00 0.07 ind:fut:3s; +redécouvriront redécouvrir ver 0.70 3.18 0.00 0.07 ind:fut:3p; +redécouvris redécouvrir ver 0.70 3.18 0.00 0.07 ind:pas:1s; +redécouvrit redécouvrir ver 0.70 3.18 0.02 0.07 ind:pas:3s; +redécouvrons redécouvrir ver 0.70 3.18 0.04 0.00 ind:pre:1p; +redéfini redéfinir ver m s 0.29 0.07 0.03 0.00 par:pas; +redéfinir redéfinir ver 0.29 0.07 0.13 0.00 inf; +redéfinis redéfinir ver m p 0.29 0.07 0.03 0.07 ind:pre:1s;par:pas; +redéfinissons redéfinir ver 0.29 0.07 0.11 0.00 imp:pre:1p;ind:pre:1p; +redéfinition redéfinition nom f s 0.01 0.00 0.01 0.00 +redégringoler redégringoler ver 0.00 0.07 0.00 0.07 inf; +redémarra redémarrer ver 1.90 2.16 0.00 0.14 ind:pas:3s; +redémarrage redémarrage nom m s 0.13 0.00 0.13 0.00 +redémarraient redémarrer ver 1.90 2.16 0.00 0.07 ind:imp:3p; +redémarrais redémarrer ver 1.90 2.16 0.01 0.07 ind:imp:1s; +redémarrait redémarrer ver 1.90 2.16 0.00 0.14 ind:imp:3s; +redémarrant redémarrer ver 1.90 2.16 0.01 0.07 par:pre; +redémarre redémarrer ver 1.90 2.16 0.40 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redémarrent redémarrer ver 1.90 2.16 0.00 0.07 ind:pre:3p; +redémarrer redémarrer ver 1.90 2.16 1.00 0.47 inf; +redémarrera redémarrer ver 1.90 2.16 0.01 0.07 ind:fut:3s; +redémarrerait redémarrer ver 1.90 2.16 0.01 0.00 cnd:pre:3s; +redémarrez redémarrer ver 1.90 2.16 0.18 0.00 imp:pre:2p;ind:pre:2p; +redémarrons redémarrer ver 1.90 2.16 0.02 0.00 imp:pre:1p; +redémarré redémarrer ver m s 1.90 2.16 0.25 0.07 par:pas; +redémolir redémolir ver 0.01 0.00 0.01 0.00 inf; +redéploie redéployer ver 0.14 0.00 0.03 0.00 ind:pre:3s; +redéploiement redéploiement nom m s 0.04 0.07 0.04 0.07 +redéployer redéployer ver 0.14 0.00 0.09 0.00 inf; +redéployez redéployer ver 0.14 0.00 0.04 0.00 imp:pre:2p;ind:pre:2p; +redéposer redéposer ver 0.08 0.07 0.01 0.00 inf; +redéposé redéposer ver m s 0.08 0.07 0.07 0.07 par:pas; +refîmes refaire ver 58.27 40.81 0.00 0.07 ind:pas:1p; +refît refaire ver 58.27 40.81 0.00 0.14 sub:imp:3s; +refabriquer refabriquer ver 0.01 0.00 0.01 0.00 inf; +refaire refaire ver 58.27 40.81 26.29 18.24 inf; +refais refaire ver 58.27 40.81 8.71 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +refaisaient refaire ver 58.27 40.81 0.01 0.41 ind:imp:3p; +refaisais refaire ver 58.27 40.81 0.11 0.41 ind:imp:1s;ind:imp:2s; +refaisait refaire ver 58.27 40.81 0.18 1.89 ind:imp:3s; +refaisant refaire ver 58.27 40.81 0.03 1.28 par:pre; +refaisions refaire ver 58.27 40.81 0.01 0.54 ind:imp:1p; +refaisons refaire ver 58.27 40.81 0.79 0.00 imp:pre:1p;ind:pre:1p; +refait refaire ver m s 58.27 40.81 11.23 8.58 ind:pre:3s;par:pas;par:pas; +refaite refaire ver f s 58.27 40.81 0.44 0.88 par:pas; +refaites refaire ver f p 58.27 40.81 2.55 0.54 imp:pre:2p;ind:pre:2p;par:pas; +refaits refaire ver m p 58.27 40.81 0.19 0.14 par:pas; +refamiliariser refamiliariser ver 0.01 0.00 0.01 0.00 inf; +refasse refaire ver 58.27 40.81 1.18 0.41 sub:pre:1s;sub:pre:3s; +refassent refaire ver 58.27 40.81 0.02 0.07 sub:pre:3p; +refasses refaire ver 58.27 40.81 0.41 0.00 sub:pre:2s; +refassiez refaire ver 58.27 40.81 0.04 0.00 sub:pre:2p; +refaçonner refaçonner ver 0.01 0.00 0.01 0.00 inf; +refaufile refaufiler ver 0.00 0.07 0.00 0.07 ind:pre:3s; +refendre refendre ver 0.00 0.27 0.00 0.14 inf; +refendu refendre ver m s 0.00 0.27 0.00 0.14 par:pas; +refera refaire ver 58.27 40.81 1.28 0.27 ind:fut:3s; +referai refaire ver 58.27 40.81 1.49 0.34 ind:fut:1s; +referais refaire ver 58.27 40.81 1.56 0.54 cnd:pre:1s;cnd:pre:2s; +referait refaire ver 58.27 40.81 0.21 0.47 cnd:pre:3s; +referas refaire ver 58.27 40.81 0.49 0.00 ind:fut:2s; +referendum referendum nom m s 0.13 0.00 0.13 0.00 +referions refaire ver 58.27 40.81 0.01 0.00 cnd:pre:1p; +referma refermer ver 11.97 91.76 0.33 20.34 ind:pas:3s; +refermai refermer ver 11.97 91.76 0.00 1.35 ind:pas:1s; +refermaient refermer ver 11.97 91.76 0.03 1.42 ind:imp:3p; +refermais refermer ver 11.97 91.76 0.00 0.68 ind:imp:1s; +refermait refermer ver 11.97 91.76 0.05 7.09 ind:imp:3s; +refermant refermer ver 11.97 91.76 0.05 4.80 par:pre; +refermassent refermer ver 11.97 91.76 0.00 0.07 sub:imp:3p; +referme refermer ver 11.97 91.76 3.50 14.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +referment refermer ver 11.97 91.76 0.35 1.82 ind:pre:3p; +refermer refermer ver 11.97 91.76 3.26 13.11 inf; +refermera refermer ver 11.97 91.76 0.36 0.20 ind:fut:3s; +refermeraient refermer ver 11.97 91.76 0.00 0.27 cnd:pre:3p; +refermerais refermer ver 11.97 91.76 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +refermerait refermer ver 11.97 91.76 0.11 0.27 cnd:pre:3s; +refermeront refermer ver 11.97 91.76 0.15 0.00 ind:fut:3p; +refermes refermer ver 11.97 91.76 0.21 0.00 ind:pre:2s; +refermez refermer ver 11.97 91.76 0.73 0.20 imp:pre:2p;ind:pre:2p; +refermâmes refermer ver 11.97 91.76 0.00 0.07 ind:pas:1p; +refermons refermer ver 11.97 91.76 0.26 0.14 imp:pre:1p;ind:pre:1p; +refermât refermer ver 11.97 91.76 0.00 0.47 sub:imp:3s; +refermèrent refermer ver 11.97 91.76 0.00 1.08 ind:pas:3p; +refermé refermer ver m s 11.97 91.76 0.98 11.15 par:pas; +refermée refermer ver f s 11.97 91.76 1.19 9.59 par:pas; +refermées refermer ver f p 11.97 91.76 0.17 1.49 par:pas; +refermés refermer ver m p 11.97 91.76 0.20 1.22 par:pas; +referons refaire ver 58.27 40.81 0.14 0.41 ind:fut:1p; +referont refaire ver 58.27 40.81 0.30 0.07 ind:fut:3p; +refeuilleter refeuilleter ver 0.00 0.07 0.00 0.07 inf; +reficelai reficeler ver 0.00 0.14 0.00 0.07 ind:pas:1s; +reficelle reficeler ver 0.00 0.14 0.00 0.07 ind:pre:1s; +refil refil nom m s 0.00 0.14 0.00 0.14 +refila refiler ver 9.70 12.09 0.14 0.14 ind:pas:3s; +refilai refiler ver 9.70 12.09 0.00 0.07 ind:pas:1s; +refilaient refiler ver 9.70 12.09 0.01 0.14 ind:imp:3p; +refilais refiler ver 9.70 12.09 0.00 0.14 ind:imp:1s; +refilait refiler ver 9.70 12.09 0.33 0.81 ind:imp:3s; +refilant refiler ver 9.70 12.09 0.15 0.47 par:pre; +refile refiler ver 9.70 12.09 2.00 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refilent refiler ver 9.70 12.09 0.17 0.41 ind:pre:3p; +refiler refiler ver 9.70 12.09 2.58 3.99 inf; +refilera refiler ver 9.70 12.09 0.03 0.14 ind:fut:3s; +refilerait refiler ver 9.70 12.09 0.04 0.07 cnd:pre:3s; +refiles refiler ver 9.70 12.09 0.37 0.07 ind:pre:2s; +refilez refiler ver 9.70 12.09 0.25 0.00 imp:pre:2p;ind:pre:2p; +refilé refiler ver m s 9.70 12.09 3.13 2.43 par:pas; +refilée refiler ver f s 9.70 12.09 0.37 0.41 par:pas; +refilées refiler ver f p 9.70 12.09 0.02 0.07 par:pas; +refilés refiler ver m p 9.70 12.09 0.13 0.14 par:pas; +refinancement refinancement nom m s 0.04 0.00 0.04 0.00 +refinancée refinancer ver f s 0.01 0.00 0.01 0.00 par:pas; +refirent refaire ver 58.27 40.81 0.01 0.47 ind:pas:3p; +refis refaire ver 58.27 40.81 0.14 0.34 ind:pas:1s; +refit refaire ver 58.27 40.81 0.03 2.77 ind:pas:3s; +reflet reflet nom m s 6.41 50.74 5.63 27.36 +reflets reflet nom m p 6.41 50.74 0.77 23.38 +refleurir refleurir ver 0.28 0.88 0.14 0.34 inf; +refleurira refleurir ver 0.28 0.88 0.11 0.07 ind:fut:3s; +refleurissaient refleurir ver 0.28 0.88 0.00 0.14 ind:imp:3p; +refleurissait refleurir ver 0.28 0.88 0.00 0.14 ind:imp:3s; +refleurissent refleurir ver 0.28 0.88 0.01 0.07 ind:pre:3p; +refleurit refleurir ver 0.28 0.88 0.02 0.14 ind:pre:3s;ind:pas:3s; +reflex reflex nom m 0.14 0.00 0.14 0.00 +reflète refléter ver 5.57 22.23 2.89 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reflètent refléter ver 5.57 22.23 0.68 2.16 ind:pre:3p; +reflua refluer ver 0.40 8.04 0.00 0.88 ind:pas:3s; +refluaient refluer ver 0.40 8.04 0.01 0.68 ind:imp:3p; +refluait refluer ver 0.40 8.04 0.00 1.28 ind:imp:3s; +refluant refluer ver 0.40 8.04 0.00 0.81 par:pre; +reflue refluer ver 0.40 8.04 0.00 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refluent refluer ver 0.40 8.04 0.10 0.61 ind:pre:3p; +refluer refluer ver 0.40 8.04 0.13 1.28 inf; +refluera refluer ver 0.40 8.04 0.00 0.07 ind:fut:3s; +refléta refléter ver 5.57 22.23 0.00 0.20 ind:pas:3s; +reflétaient refléter ver 5.57 22.23 0.19 4.26 ind:imp:3p; +reflétait refléter ver 5.57 22.23 0.35 6.15 ind:imp:3s; +reflétant refléter ver 5.57 22.23 0.08 1.22 par:pre; +refléter refléter ver 5.57 22.23 0.80 1.42 inf; +reflétera refléter ver 5.57 22.23 0.08 0.14 ind:fut:3s; +refléteraient refléter ver 5.57 22.23 0.00 0.07 cnd:pre:3p; +refléterait refléter ver 5.57 22.23 0.02 0.07 cnd:pre:3s; +refluèrent refluer ver 0.40 8.04 0.00 0.54 ind:pas:3p; +reflétons refléter ver 5.57 22.23 0.00 0.07 ind:pre:1p; +reflétèrent refléter ver 5.57 22.23 0.00 0.07 ind:pas:3p; +reflété refléter ver m s 5.57 22.23 0.22 1.76 par:pas; +reflétée refléter ver f s 5.57 22.23 0.12 1.28 par:pas; +reflétées refléter ver f p 5.57 22.23 0.14 0.34 par:pas; +reflétés refléter ver m p 5.57 22.23 0.00 0.14 par:pas; +reflué refluer ver m s 0.40 8.04 0.16 0.47 par:pas; +refluée refluer ver f s 0.40 8.04 0.00 0.07 par:pas; +reflux reflux nom m 0.47 3.45 0.47 3.45 +refoncer refoncer ver 0.01 0.00 0.01 0.00 inf; +refondant refonder ver 0.00 0.20 0.00 0.07 par:pre; +refonde refonder ver 0.00 0.20 0.00 0.14 ind:pre:3s; +refondre refondre ver 0.17 0.68 0.14 0.34 inf; +refonds refondre ver 0.17 0.68 0.01 0.00 imp:pre:2s; +refondu refondre ver m s 0.17 0.68 0.01 0.07 par:pas; +refondus refondre ver m p 0.17 0.68 0.00 0.27 par:pas; +refont refaire ver 58.27 40.81 0.42 0.41 ind:pre:3p; +refonte refonte nom f s 0.28 0.47 0.28 0.47 +reforger reforger ver 0.54 0.14 0.14 0.14 inf; +reforgé reforger ver m s 0.54 0.14 0.14 0.00 par:pas; +reforgée reforger ver f s 0.54 0.14 0.27 0.00 par:pas; +reforma reformer ver 0.71 6.49 0.04 0.61 ind:pas:3s; +reformaient reformer ver 0.71 6.49 0.00 0.88 ind:imp:3p; +reformait reformer ver 0.71 6.49 0.00 1.01 ind:imp:3s; +reformant reformer ver 0.71 6.49 0.00 0.20 par:pre; +reformassent reformer ver 0.71 6.49 0.00 0.07 sub:imp:3p; +reformater reformater ver 0.01 0.00 0.01 0.00 inf; +reformation reformation nom f s 0.02 0.07 0.02 0.07 +reforme reformer ver 0.71 6.49 0.16 1.08 ind:pre:1s;ind:pre:3s; +reforment reformer ver 0.71 6.49 0.03 0.27 ind:pre:3p; +reformer reformer ver 0.71 6.49 0.29 1.01 inf; +reformerons reformer ver 0.71 6.49 0.00 0.07 ind:fut:1p; +reformeront reformer ver 0.71 6.49 0.02 0.14 ind:fut:3p; +reformez reformer ver 0.71 6.49 0.08 0.00 imp:pre:2p; +reformèrent reformer ver 0.71 6.49 0.00 0.07 ind:pas:3p; +reformé reformer ver m s 0.71 6.49 0.05 0.47 par:pas; +reformée reformer ver f s 0.71 6.49 0.04 0.27 par:pas; +reformulation reformulation nom f s 0.01 0.00 0.01 0.00 +reformuler reformuler ver 0.55 0.14 0.50 0.00 inf; +reformulé reformuler ver m s 0.55 0.14 0.04 0.00 par:pas; +reformulée reformuler ver f s 0.55 0.14 0.00 0.14 par:pas; +reformés reformer ver m p 0.71 6.49 0.01 0.34 par:pas; +refouiller refouiller ver 0.03 0.07 0.01 0.00 inf; +refouillé refouiller ver m s 0.03 0.07 0.01 0.07 par:pas; +refoula refouler ver 1.88 7.36 0.00 0.41 ind:pas:3s; +refoulai refouler ver 1.88 7.36 0.00 0.07 ind:pas:1s; +refoulaient refouler ver 1.88 7.36 0.00 0.14 ind:imp:3p; +refoulais refouler ver 1.88 7.36 0.03 0.07 ind:imp:1s;ind:imp:2s; +refoulait refouler ver 1.88 7.36 0.03 0.41 ind:imp:3s; +refoulant refouler ver 1.88 7.36 0.01 0.27 par:pre; +refoulante refoulant adj f s 0.00 0.27 0.00 0.20 +refoule refouler ver 1.88 7.36 0.30 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refoulement refoulement nom m s 0.17 1.08 0.15 0.88 +refoulements refoulement nom m p 0.17 1.08 0.02 0.20 +refoulent refouler ver 1.88 7.36 0.03 0.14 ind:pre:3p; +refouler refouler ver 1.88 7.36 0.72 2.30 inf; +refoulerait refouler ver 1.88 7.36 0.00 0.07 cnd:pre:3s; +refoulez refouler ver 1.88 7.36 0.05 0.07 imp:pre:2p;ind:pre:2p; +refouloir refouloir nom m s 0.01 0.00 0.01 0.00 +refoulé refouler ver m s 1.88 7.36 0.53 1.35 par:pas; +refoulée refoulé adj f s 1.24 1.69 0.34 0.47 +refoulées refoulé adj f p 1.24 1.69 0.27 0.27 +refoulés refoulé adj m p 1.24 1.69 0.27 0.47 +refourgua refourguer ver 0.95 1.82 0.00 0.07 ind:pas:3s; +refourgue refourguer ver 0.95 1.82 0.12 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refourguer refourguer ver 0.95 1.82 0.44 0.88 inf; +refourguera refourguer ver 0.95 1.82 0.01 0.00 ind:fut:3s; +refourguerait refourguer ver 0.95 1.82 0.00 0.07 cnd:pre:3s; +refourguions refourguer ver 0.95 1.82 0.01 0.00 ind:imp:1p; +refourgué refourguer ver m s 0.95 1.82 0.36 0.00 par:pas; +refourguées refourguer ver f p 0.95 1.82 0.00 0.07 par:pas; +refourgués refourguer ver m p 0.95 1.82 0.01 0.20 par:pas; +refourrait refourrer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +refous refoutre ver 0.11 0.95 0.06 0.07 ind:pre:1s;ind:pre:2s; +refout refoutre ver 0.11 0.95 0.00 0.14 ind:pre:3s; +refoutait refoutre ver 0.11 0.95 0.00 0.14 ind:imp:3s; +refoute refoutre ver 0.11 0.95 0.01 0.00 sub:pre:3s; +refoutent refoutre ver 0.11 0.95 0.01 0.00 ind:pre:3p; +refoutes refoutre ver 0.11 0.95 0.00 0.07 sub:pre:2s; +refoutez refoutre ver 0.11 0.95 0.00 0.07 imp:pre:2p; +refoutre refoutre ver 0.11 0.95 0.03 0.41 inf; +refoutu refoutre ver m s 0.11 0.95 0.00 0.07 par:pas; +refrain refrain nom m s 2.39 10.68 1.98 8.24 +refrains refrain nom m p 2.39 10.68 0.41 2.43 +refranchies refranchir ver f p 0.01 0.07 0.00 0.07 par:pas; +refranchir refranchir ver 0.01 0.07 0.01 0.00 inf; +refrappe refrapper ver 0.07 0.14 0.04 0.00 imp:pre:2s;ind:pre:3s; +refrapper refrapper ver 0.07 0.14 0.01 0.00 inf; +refroidi refroidir ver m s 10.57 8.58 1.32 0.88 par:pas; +refroidie refroidir ver f s 10.57 8.58 0.17 0.34 par:pas; +refroidies refroidir ver f p 10.57 8.58 0.17 0.14 par:pas; +refroidir refroidir ver 10.57 8.58 3.17 3.11 inf; +refroidira refroidir ver 10.57 8.58 0.06 0.14 ind:fut:3s; +refroidiraient refroidir ver 10.57 8.58 0.00 0.14 cnd:pre:3p; +refroidirais refroidir ver 10.57 8.58 0.01 0.00 cnd:pre:2s; +refroidirait refroidir ver 10.57 8.58 0.05 0.14 cnd:pre:3s; +refroidis refroidir ver m p 10.57 8.58 0.80 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +refroidissaient refroidir ver 10.57 8.58 0.01 0.14 ind:imp:3p; +refroidissais refroidir ver 10.57 8.58 0.00 0.07 ind:imp:1s; +refroidissait refroidir ver 10.57 8.58 0.06 1.01 ind:imp:3s; +refroidissant refroidir ver 10.57 8.58 0.06 0.07 par:pre; +refroidisse refroidir ver 10.57 8.58 1.43 0.41 sub:pre:1s;sub:pre:3s; +refroidissement refroidissement nom m s 1.56 1.01 1.56 1.01 +refroidissent refroidir ver 10.57 8.58 0.22 0.20 ind:pre:3p; +refroidisseur refroidisseur nom m s 0.10 0.00 0.10 0.00 +refroidissiez refroidir ver 10.57 8.58 0.00 0.07 ind:imp:2p; +refroidit refroidir ver 10.57 8.58 3.03 1.35 ind:pre:3s;ind:pas:3s; +refrène refréner ver 0.01 1.82 0.00 0.14 ind:pre:3s; +refréna refréner ver 0.01 1.82 0.00 0.07 ind:pas:3s; +refrénai refréner ver 0.01 1.82 0.00 0.14 ind:pas:1s; +refrénait refréner ver 0.01 1.82 0.00 0.07 ind:imp:3s; +refrénant refréner ver 0.01 1.82 0.00 0.27 par:pre; +refréner refréner ver 0.01 1.82 0.01 0.88 inf; +refrénerait refréner ver 0.01 1.82 0.00 0.07 cnd:pre:3s; +refréné refréner ver m s 0.01 1.82 0.00 0.14 par:pas; +refrénés refréner ver m p 0.01 1.82 0.00 0.07 par:pas; +refuge refuge nom m s 8.38 18.65 8.02 16.89 +refuges refuge nom m p 8.38 18.65 0.36 1.76 +refuites refuite nom f p 0.00 0.07 0.00 0.07 +refumer refumer ver 0.03 0.07 0.03 0.07 inf; +refus refus nom m 9.02 27.03 9.02 27.03 +refusa refuser ver 143.96 152.77 1.82 14.59 ind:pas:3s; +refusai refuser ver 143.96 152.77 0.13 3.24 ind:pas:1s; +refusaient refuser ver 143.96 152.77 0.85 4.53 ind:imp:3p; +refusais refuser ver 143.96 152.77 2.15 4.59 ind:imp:1s;ind:imp:2s; +refusait refuser ver 143.96 152.77 4.17 21.82 ind:imp:3s; +refusant refuser ver 143.96 152.77 1.90 6.89 par:pre; +refuse refuser ver 143.96 152.77 49.29 24.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +refusent refuser ver 143.96 152.77 7.76 4.26 ind:pre:3p; +refuser refuser ver 143.96 152.77 21.34 27.84 inf;; +refusera refuser ver 143.96 152.77 2.03 0.81 ind:fut:3s; +refuserai refuser ver 143.96 152.77 0.85 0.47 ind:fut:1s; +refuseraient refuser ver 143.96 152.77 0.09 0.41 cnd:pre:3p; +refuserais refuser ver 143.96 152.77 1.08 0.61 cnd:pre:1s;cnd:pre:2s; +refuserait refuser ver 143.96 152.77 1.43 2.03 cnd:pre:3s; +refuseras refuser ver 143.96 152.77 0.15 0.27 ind:fut:2s; +refuserez refuser ver 143.96 152.77 0.58 0.27 ind:fut:2p; +refuseriez refuser ver 143.96 152.77 0.17 0.20 cnd:pre:2p; +refuserions refuser ver 143.96 152.77 0.02 0.07 cnd:pre:1p; +refuseront refuser ver 143.96 152.77 0.58 0.14 ind:fut:3p; +refuses refuser ver 143.96 152.77 8.60 1.28 ind:pre:2s; +refusez refuser ver 143.96 152.77 8.29 2.43 imp:pre:2p;ind:pre:2p; +refusiez refuser ver 143.96 152.77 0.59 0.20 ind:imp:2p; +refusions refuser ver 143.96 152.77 0.12 0.61 ind:imp:1p; +refusons refuser ver 143.96 152.77 1.29 1.01 imp:pre:1p;ind:pre:1p; +refusât refuser ver 143.96 152.77 0.00 0.88 sub:imp:3s; +refusèrent refuser ver 143.96 152.77 0.05 1.76 ind:pas:3p; +refusé refuser ver m s 143.96 152.77 26.03 22.70 par:pas; +refusée refuser ver f s 143.96 152.77 2.12 3.31 par:pas; +refusées refuser ver f p 143.96 152.77 0.23 0.54 par:pas; +refusés refuser ver m p 143.96 152.77 0.27 0.74 par:pas; +reg reg nom m s 1.52 0.14 1.52 0.14 +regagna regagner ver 9.54 49.80 0.02 9.05 ind:pas:3s; +regagnai regagner ver 9.54 49.80 0.01 1.96 ind:pas:1s; +regagnaient regagner ver 9.54 49.80 0.02 1.01 ind:imp:3p; +regagnais regagner ver 9.54 49.80 0.03 0.74 ind:imp:1s; +regagnait regagner ver 9.54 49.80 0.13 4.05 ind:imp:3s; +regagnant regagner ver 9.54 49.80 0.06 2.70 par:pre; +regagne regagner ver 9.54 49.80 1.30 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regagnent regagner ver 9.54 49.80 0.22 0.68 ind:pre:3p; +regagner regagner ver 9.54 49.80 3.90 16.49 inf; +regagnera regagner ver 9.54 49.80 0.24 0.07 ind:fut:3s; +regagnerai regagner ver 9.54 49.80 0.15 0.00 ind:fut:1s; +regagneraient regagner ver 9.54 49.80 0.00 0.07 cnd:pre:3p; +regagnerais regagner ver 9.54 49.80 0.10 0.07 cnd:pre:1s; +regagnerait regagner ver 9.54 49.80 0.00 0.34 cnd:pre:3s; +regagneras regagner ver 9.54 49.80 0.06 0.00 ind:fut:2s; +regagnerez regagner ver 9.54 49.80 0.04 0.07 ind:fut:2p; +regagnerons regagner ver 9.54 49.80 0.02 0.27 ind:fut:1p; +regagneront regagner ver 9.54 49.80 0.00 0.07 ind:fut:3p; +regagnez regagner ver 9.54 49.80 1.84 0.07 imp:pre:2p;ind:pre:2p; +regagniez regagner ver 9.54 49.80 0.02 0.07 ind:imp:2p; +regagnions regagner ver 9.54 49.80 0.01 0.41 ind:imp:1p; +regagnâmes regagner ver 9.54 49.80 0.14 0.47 ind:pas:1p; +regagnons regagner ver 9.54 49.80 0.50 0.95 imp:pre:1p;ind:pre:1p; +regagnât regagner ver 9.54 49.80 0.00 0.07 sub:imp:3s; +regagnèrent regagner ver 9.54 49.80 0.01 1.55 ind:pas:3p; +regagné regagner ver m s 9.54 49.80 0.71 5.07 par:pas; +regagnée regagner ver f s 9.54 49.80 0.01 0.20 par:pas; +regagnés regagner ver m p 9.54 49.80 0.00 0.07 par:pas; +regain regain nom m s 0.14 3.24 0.14 3.18 +regains regain nom m p 0.14 3.24 0.00 0.07 +regard regard nom m s 61.35 423.18 52.39 354.93 +regarda regarder ver 1197.37 997.91 2.18 149.05 ind:pas:3s; +regardable regardable adj s 0.10 0.74 0.09 0.47 +regardables regardable adj p 0.10 0.74 0.01 0.27 +regardai regarder ver 1197.37 997.91 0.82 14.73 ind:pas:1s; +regardaient regarder ver 1197.37 997.91 3.49 33.51 ind:imp:3p; +regardais regarder ver 1197.37 997.91 16.18 36.01 ind:imp:1s;ind:imp:2s; +regardait regarder ver 1197.37 997.91 16.30 160.81 ind:imp:3s; +regardant regarder ver 1197.37 997.91 13.99 73.78 par:pre; +regardante regardant adj f s 0.65 6.15 0.04 0.41 +regardants regardant adj m p 0.65 6.15 0.04 0.27 +regarde regarder ver 1197.37 997.91 613.45 203.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +regardent regarder ver 1197.37 997.91 14.68 22.30 ind:pre:3p; +regarder regarder ver 1197.37 997.91 138.28 163.51 inf;;inf;;inf;; +regardera regarder ver 1197.37 997.91 3.55 1.49 ind:fut:3s; +regarderai regarder ver 1197.37 997.91 3.30 1.08 ind:fut:1s; +regarderaient regarder ver 1197.37 997.91 0.09 0.68 cnd:pre:3p; +regarderais regarder ver 1197.37 997.91 0.82 0.68 cnd:pre:1s;cnd:pre:2s; +regarderait regarder ver 1197.37 997.91 0.95 1.76 cnd:pre:3s; +regarderas regarder ver 1197.37 997.91 1.30 0.47 ind:fut:2s; +regarderez regarder ver 1197.37 997.91 0.53 0.34 ind:fut:2p; +regarderiez regarder ver 1197.37 997.91 0.26 0.07 cnd:pre:2p; +regarderions regarder ver 1197.37 997.91 0.01 0.20 cnd:pre:1p; +regarderons regarder ver 1197.37 997.91 0.14 0.61 ind:fut:1p; +regarderont regarder ver 1197.37 997.91 0.87 0.88 ind:fut:3p; +regardes regarder ver 1197.37 997.91 43.64 5.34 ind:pre:2s;sub:pre:2s; +regardeur regardeur nom m s 0.01 0.07 0.01 0.07 +regardez regarder ver 1197.37 997.91 261.81 30.95 imp:pre:2p;ind:pre:2p; +regardiez regarder ver 1197.37 997.91 2.53 0.54 ind:imp:2p; +regardions regarder ver 1197.37 997.91 0.56 4.39 ind:imp:1p; +regardâmes regarder ver 1197.37 997.91 0.00 1.28 ind:pas:1p; +regardons regarder ver 1197.37 997.91 6.65 4.86 imp:pre:1p;ind:pre:1p; +regardât regarder ver 1197.37 997.91 0.00 0.34 sub:imp:3s; +regards regard nom m p 61.35 423.18 8.96 68.24 +regardèrent regarder ver 1197.37 997.91 0.32 15.68 ind:pas:3p; +regardé regarder ver m s 1197.37 997.91 41.29 51.55 par:pas; +regardée regarder ver f s 1197.37 997.91 7.61 11.01 ind:imp:3s;par:pas; +regardées regarder ver f p 1197.37 997.91 0.20 1.15 par:pas; +regardés regarder ver m p 1197.37 997.91 1.47 5.20 par:pas; +regarni regarnir ver m s 0.16 0.81 0.01 0.00 par:pas; +regarnies regarnir ver f p 0.16 0.81 0.00 0.07 par:pas; +regarnir regarnir ver 0.16 0.81 0.14 0.41 inf; +regarnirez regarnir ver 0.16 0.81 0.00 0.14 ind:fut:2p; +regarnis regarnir ver 0.16 0.81 0.00 0.14 ind:pre:1s; +regarnissez regarnir ver 0.16 0.81 0.00 0.07 imp:pre:2p; +regelés regeler ver m p 0.00 0.07 0.00 0.07 par:pas; +regency regency nom m 0.09 0.41 0.09 0.41 +reggae reggae nom m s 1.79 0.20 1.79 0.14 +reggaes reggae nom m p 1.79 0.20 0.00 0.07 +regimba regimber ver 0.23 0.88 0.01 0.14 ind:pas:3s; +regimbais regimber ver 0.23 0.88 0.00 0.14 ind:imp:1s; +regimbait regimber ver 0.23 0.88 0.00 0.14 ind:imp:3s; +regimbe regimber ver 0.23 0.88 0.11 0.27 imp:pre:2s;ind:pre:3s; +regimbements regimbement nom m p 0.00 0.07 0.00 0.07 +regimber regimber ver 0.23 0.88 0.11 0.14 inf; +regimbé regimber ver m s 0.23 0.88 0.00 0.07 par:pas; +registre registre nom m s 8.62 12.84 6.39 8.11 +registres registre nom m p 8.62 12.84 2.23 4.73 +reglissé reglisser ver m s 0.14 0.20 0.14 0.20 par:pas; +regoûter regoûter ver 0.03 0.14 0.03 0.07 inf; +regoûté regoûter ver m s 0.03 0.14 0.00 0.07 par:pas; +regonflage regonflage nom m s 0.01 0.00 0.01 0.00 +regonflait regonfler ver 0.39 1.42 0.00 0.20 ind:imp:3s; +regonfle regonfler ver 0.39 1.42 0.06 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regonfler regonfler ver 0.39 1.42 0.29 0.41 inf; +regonflera regonfler ver 0.39 1.42 0.01 0.00 ind:fut:3s; +regonflerais regonfler ver 0.39 1.42 0.01 0.00 cnd:pre:1s; +regonflerait regonfler ver 0.39 1.42 0.00 0.07 cnd:pre:3s; +regonflé regonfler ver m s 0.39 1.42 0.01 0.47 par:pas; +regonflés regonfler ver m p 0.39 1.42 0.01 0.07 par:pas; +regorge regorger ver 1.75 3.92 1.34 0.68 ind:pre:3s; +regorgea regorger ver 1.75 3.92 0.01 0.00 ind:pas:3s; +regorgeaient regorger ver 1.75 3.92 0.00 0.81 ind:imp:3p; +regorgeais regorger ver 1.75 3.92 0.00 0.07 ind:imp:1s; +regorgeait regorger ver 1.75 3.92 0.11 1.35 ind:imp:3s; +regorgeant regorger ver 1.75 3.92 0.02 0.47 par:pre; +regorgent regorger ver 1.75 3.92 0.23 0.47 ind:pre:3p; +regorger regorger ver 1.75 3.92 0.03 0.07 inf; +regorges regorger ver 1.75 3.92 0.01 0.00 ind:pre:2s; +regrattières regrattier nom f p 0.00 0.07 0.00 0.07 +regreffe regreffer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +regret regret nom m s 13.77 40.00 7.25 29.32 +regrets regret nom m p 13.77 40.00 6.53 10.68 +regretta regretter ver 89.11 75.88 0.15 4.53 ind:pas:3s; +regrettable regrettable adj s 3.41 3.51 3.27 3.04 +regrettablement regrettablement adv 0.02 0.07 0.02 0.07 +regrettables regrettable adj p 3.41 3.51 0.14 0.47 +regrettai regretter ver 89.11 75.88 0.00 1.22 ind:pas:1s; +regrettaient regretter ver 89.11 75.88 0.01 0.81 ind:imp:3p; +regrettais regretter ver 89.11 75.88 0.38 4.86 ind:imp:1s;ind:imp:2s; +regrettait regretter ver 89.11 75.88 0.32 9.12 ind:imp:3s; +regrettant regretter ver 89.11 75.88 0.21 3.11 par:pre; +regrette regretter ver 89.11 75.88 51.99 21.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +regrettent regretter ver 89.11 75.88 0.88 0.88 ind:pre:3p; +regretter regretter ver 89.11 75.88 12.05 12.57 inf; +regrettera regretter ver 89.11 75.88 1.50 0.74 ind:fut:3s; +regretterai regretter ver 89.11 75.88 0.78 1.49 ind:fut:1s; +regretteraient regretter ver 89.11 75.88 0.03 0.34 cnd:pre:3p; +regretterais regretter ver 89.11 75.88 0.65 0.68 cnd:pre:1s;cnd:pre:2s; +regretterait regretter ver 89.11 75.88 0.13 0.68 cnd:pre:3s; +regretteras regretter ver 89.11 75.88 5.58 1.49 ind:fut:2s; +regretterez regretter ver 89.11 75.88 4.47 0.74 ind:fut:2p; +regretteriez regretter ver 89.11 75.88 0.13 0.07 cnd:pre:2p; +regretterons regretter ver 89.11 75.88 0.10 0.07 ind:fut:1p; +regretteront regretter ver 89.11 75.88 0.46 0.14 ind:fut:3p; +regrettes regretter ver 89.11 75.88 4.46 1.28 ind:pre:2s; +regrettez regretter ver 89.11 75.88 1.31 1.28 imp:pre:2p;ind:pre:2p; +regrettiez regretter ver 89.11 75.88 0.14 0.27 ind:imp:2p; +regrettions regretter ver 89.11 75.88 0.02 0.20 ind:imp:1p; +regrettons regretter ver 89.11 75.88 0.76 0.20 imp:pre:1p;ind:pre:1p; +regrettât regretter ver 89.11 75.88 0.00 0.27 sub:imp:3s; +regrettèrent regretter ver 89.11 75.88 0.00 0.27 ind:pas:3p; +regretté regretter ver m s 89.11 75.88 2.43 6.22 par:pas; +regrettée regretter ver f s 89.11 75.88 0.15 0.54 par:pas; +regrettées regretter ver f p 89.11 75.88 0.02 0.07 par:pas; +regrettés regretter ver m p 89.11 75.88 0.01 0.20 par:pas; +regrimpa regrimper ver 0.17 1.15 0.00 0.07 ind:pas:3s; +regrimpaient regrimper ver 0.17 1.15 0.00 0.07 ind:imp:3p; +regrimpait regrimper ver 0.17 1.15 0.00 0.07 ind:imp:3s; +regrimpe regrimper ver 0.17 1.15 0.01 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regrimpent regrimper ver 0.17 1.15 0.00 0.07 ind:pre:3p; +regrimper regrimper ver 0.17 1.15 0.12 0.27 inf; +regrimperas regrimper ver 0.17 1.15 0.01 0.00 ind:fut:2s; +regrimperons regrimper ver 0.17 1.15 0.01 0.00 ind:fut:1p; +regrimpez regrimper ver 0.17 1.15 0.01 0.00 imp:pre:2p; +regrimpé regrimper ver m s 0.17 1.15 0.01 0.34 par:pas; +regrossir regrossir ver 0.01 0.00 0.01 0.00 inf; +regroupa regrouper ver 3.09 6.42 0.00 0.07 ind:pas:3s; +regroupaient regrouper ver 3.09 6.42 0.03 0.54 ind:imp:3p; +regroupait regrouper ver 3.09 6.42 0.26 0.41 ind:imp:3s; +regroupant regrouper ver 3.09 6.42 0.06 0.74 par:pre; +regroupe regrouper ver 3.09 6.42 0.76 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regroupement regroupement nom m s 0.65 1.76 0.52 1.55 +regroupements regroupement nom m p 0.65 1.76 0.14 0.20 +regroupent regrouper ver 3.09 6.42 0.37 0.34 ind:pre:3p; +regrouper regrouper ver 3.09 6.42 0.59 1.69 inf; +regrouperaient regrouper ver 3.09 6.42 0.02 0.07 cnd:pre:3p; +regrouperions regrouper ver 3.09 6.42 0.01 0.00 cnd:pre:1p; +regroupez regrouper ver 3.09 6.42 0.40 0.00 imp:pre:2p;ind:pre:2p; +regroupèrent regrouper ver 3.09 6.42 0.02 0.20 ind:pas:3p; +regroupé regrouper ver m s 3.09 6.42 0.12 0.34 par:pas; +regroupée regrouper ver f s 3.09 6.42 0.02 0.20 par:pas; +regroupées regrouper ver f p 3.09 6.42 0.02 0.20 par:pas; +regroupés regrouper ver m p 3.09 6.42 0.41 1.01 par:pas; +regréaient regréer ver 0.00 0.34 0.00 0.07 ind:imp:3p; +regréer regréer ver 0.00 0.34 0.00 0.07 inf; +regréé regréer ver m s 0.00 0.34 0.00 0.20 par:pas; +rehaussaient rehausser ver 0.77 5.81 0.00 0.20 ind:imp:3p; +rehaussait rehausser ver 0.77 5.81 0.01 1.01 ind:imp:3s; +rehaussant rehausser ver 0.77 5.81 0.00 0.47 par:pre; +rehausse rehausser ver 0.77 5.81 0.20 0.41 ind:pre:3s; +rehaussement rehaussement nom m s 0.01 0.00 0.01 0.00 +rehaussent rehausser ver 0.77 5.81 0.00 0.34 ind:pre:3p; +rehausser rehausser ver 0.77 5.81 0.34 0.88 inf; +rehaussera rehausser ver 0.77 5.81 0.01 0.14 ind:fut:3s; +rehausses rehausse nom f p 0.00 0.14 0.00 0.07 +rehausseur rehausseur nom m s 0.11 0.00 0.11 0.00 +rehaussez rehausser ver 0.77 5.81 0.01 0.00 imp:pre:2p; +rehaussé rehausser ver m s 0.77 5.81 0.03 1.15 par:pas; +rehaussée rehausser ver f s 0.77 5.81 0.03 0.68 par:pas; +rehaussées rehausser ver f p 0.77 5.81 0.14 0.20 par:pas; +rehaussés rehausser ver m p 0.77 5.81 0.00 0.34 par:pas; +rehaut rehaut nom m s 0.00 0.20 0.00 0.07 +rehauts rehaut nom m p 0.00 0.20 0.00 0.14 +reich reich nom m s 0.03 4.26 0.03 4.26 +reichsmark reichsmark nom m 0.01 0.00 0.01 0.00 +reichstag reichstag nom m s 0.85 0.68 0.85 0.68 +reichswehr reichswehr nom f s 0.00 0.14 0.00 0.14 +rein rein nom m s 13.96 34.05 4.53 1.76 +reine_claude reine_claude nom f s 0.01 0.41 0.00 0.14 +reine_mère reine_mère nom f s 0.00 0.34 0.00 0.34 +reine reine nom f s 59.05 33.78 56.26 30.00 +reine_claude reine_claude nom f p 0.01 0.41 0.01 0.27 +reine_marguerite reine_marguerite nom f p 0.00 0.27 0.00 0.27 +reines reine nom f p 59.05 33.78 2.79 3.78 +reinette reinette nom f s 0.30 0.95 0.01 0.34 +reinettes reinette nom f p 0.30 0.95 0.29 0.61 +reins rein nom m p 13.96 34.05 9.43 32.30 +reis reis nom m 0.52 0.20 0.52 0.20 +rejailli rejaillir ver m s 1.05 2.64 0.14 0.27 par:pas; +rejaillir rejaillir ver 1.05 2.64 0.24 0.54 inf; +rejailliraient rejaillir ver 1.05 2.64 0.00 0.07 cnd:pre:3p; +rejaillirait rejaillir ver 1.05 2.64 0.11 0.20 cnd:pre:3s; +rejaillissaient rejaillir ver 1.05 2.64 0.00 0.07 ind:imp:3p; +rejaillissait rejaillir ver 1.05 2.64 0.00 0.61 ind:imp:3s; +rejaillissant rejaillir ver 1.05 2.64 0.00 0.14 par:pre; +rejaillissements rejaillissement nom m p 0.00 0.07 0.00 0.07 +rejaillissent rejaillir ver 1.05 2.64 0.02 0.07 ind:pre:3p; +rejaillit rejaillir ver 1.05 2.64 0.54 0.68 ind:pre:3s;ind:pas:3s; +rejet rejet nom m s 2.94 3.31 2.71 3.04 +rejeta rejeter ver 23.16 47.84 0.18 5.74 ind:pas:3s; +rejetable rejetable adj s 0.00 0.07 0.00 0.07 +rejetai rejeter ver 23.16 47.84 0.00 0.68 ind:pas:1s; +rejetaient rejeter ver 23.16 47.84 0.17 0.95 ind:imp:3p; +rejetais rejeter ver 23.16 47.84 0.22 0.74 ind:imp:1s;ind:imp:2s; +rejetait rejeter ver 23.16 47.84 0.00 5.74 ind:imp:3s; +rejetant rejeter ver 23.16 47.84 0.44 4.12 par:pre; +rejeter rejeter ver 23.16 47.84 3.94 6.82 inf; +rejetez rejeter ver 23.16 47.84 1.24 0.07 imp:pre:2p;ind:pre:2p; +rejetiez rejeter ver 23.16 47.84 0.11 0.07 ind:imp:2p; +rejetions rejeter ver 23.16 47.84 0.01 0.20 ind:imp:1p; +rejeton rejeton nom m s 1.25 3.92 0.61 2.30 +rejetons rejeton nom m p 1.25 3.92 0.64 1.62 +rejetât rejeter ver 23.16 47.84 0.00 0.07 sub:imp:3s; +rejets rejet nom m p 2.94 3.31 0.23 0.27 +rejette rejeter ver 23.16 47.84 4.43 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rejettent rejeter ver 23.16 47.84 0.93 1.22 ind:pre:3p; +rejettera rejeter ver 23.16 47.84 0.57 0.27 ind:fut:3s; +rejetterai rejeter ver 23.16 47.84 0.29 0.07 ind:fut:1s; +rejetteraient rejeter ver 23.16 47.84 0.02 0.00 cnd:pre:3p; +rejetterais rejeter ver 23.16 47.84 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +rejetterait rejeter ver 23.16 47.84 0.06 0.20 cnd:pre:3s; +rejetteras rejeter ver 23.16 47.84 0.00 0.07 ind:fut:2s; +rejetteront rejeter ver 23.16 47.84 0.17 0.14 ind:fut:3p; +rejettes rejeter ver 23.16 47.84 0.77 0.00 ind:pre:2s;sub:pre:2s; +rejetèrent rejeter ver 23.16 47.84 0.00 0.07 ind:pas:3p; +rejeté rejeter ver m s 23.16 47.84 5.65 7.84 par:pas; +rejetée rejeté adj f s 4.03 1.62 2.18 0.47 +rejetées rejeter ver f p 23.16 47.84 0.37 1.28 par:pas; +rejetés rejeter ver m p 23.16 47.84 0.98 2.16 par:pas; +rejoignîmes rejoindre ver 96.98 134.80 0.01 0.41 ind:pas:1p; +rejoignît rejoindre ver 96.98 134.80 0.00 0.27 sub:imp:3s; +rejoignaient rejoindre ver 96.98 134.80 0.15 4.80 ind:imp:3p; +rejoignais rejoindre ver 96.98 134.80 0.35 0.34 ind:imp:1s;ind:imp:2s; +rejoignait rejoindre ver 96.98 134.80 0.16 6.35 ind:imp:3s; +rejoignant rejoindre ver 96.98 134.80 0.31 2.91 par:pre; +rejoigne rejoindre ver 96.98 134.80 1.96 1.15 sub:pre:1s;sub:pre:3s; +rejoignent rejoindre ver 96.98 134.80 1.69 5.07 ind:pre:3p; +rejoignes rejoindre ver 96.98 134.80 0.47 0.00 sub:pre:2s; +rejoignez rejoindre ver 96.98 134.80 6.00 0.61 imp:pre:2p;ind:pre:2p; +rejoigniez rejoindre ver 96.98 134.80 0.15 0.07 ind:imp:2p;sub:pre:2p; +rejoignions rejoindre ver 96.98 134.80 0.13 0.20 ind:imp:1p; +rejoignirent rejoindre ver 96.98 134.80 0.15 2.84 ind:pas:3p; +rejoignis rejoindre ver 96.98 134.80 0.01 1.69 ind:pas:1s; +rejoignisse rejoindre ver 96.98 134.80 0.00 0.07 sub:imp:1s; +rejoignissent rejoindre ver 96.98 134.80 0.00 0.07 sub:imp:3p; +rejoignit rejoindre ver 96.98 134.80 0.37 13.58 ind:pas:3s; +rejoignons rejoindre ver 96.98 134.80 1.52 0.54 imp:pre:1p;ind:pre:1p; +rejoindra rejoindre ver 96.98 134.80 2.42 0.81 ind:fut:3s; +rejoindrai rejoindre ver 96.98 134.80 3.25 0.54 ind:fut:1s; +rejoindraient rejoindre ver 96.98 134.80 0.04 0.47 cnd:pre:3p; +rejoindrais rejoindre ver 96.98 134.80 0.50 0.47 cnd:pre:1s;cnd:pre:2s; +rejoindrait rejoindre ver 96.98 134.80 0.14 1.15 cnd:pre:3s; +rejoindras rejoindre ver 96.98 134.80 0.55 0.07 ind:fut:2s; +rejoindre rejoindre ver 96.98 134.80 41.59 59.66 ind:pre:2p;inf; +rejoindrez rejoindre ver 96.98 134.80 0.93 0.14 ind:fut:2p; +rejoindrions rejoindre ver 96.98 134.80 0.00 0.20 cnd:pre:1p; +rejoindrons rejoindre ver 96.98 134.80 0.76 0.34 ind:fut:1p; +rejoindront rejoindre ver 96.98 134.80 0.58 0.41 ind:fut:3p; +rejoins rejoindre ver 96.98 134.80 20.16 3.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rejoint rejoindre ver m s 96.98 134.80 11.16 20.27 ind:pre:3s;par:pas; +rejointe rejoindre ver f s 96.98 134.80 0.31 1.35 par:pas; +rejointes rejoindre ver f p 96.98 134.80 0.01 0.54 par:pas; +rejointoyer rejointoyer ver 0.00 0.27 0.00 0.07 inf; +rejointoyé rejointoyer ver m s 0.00 0.27 0.00 0.07 par:pas; +rejointoyés rejointoyer ver m p 0.00 0.27 0.00 0.14 par:pas; +rejoints rejoindre ver m p 96.98 134.80 1.19 3.78 par:pas; +rejoua rejouer ver 3.51 1.69 0.00 0.20 ind:pas:3s; +rejouaient rejouer ver 3.51 1.69 0.02 0.00 ind:imp:3p; +rejouais rejouer ver 3.51 1.69 0.02 0.07 ind:imp:1s; +rejouant rejouer ver 3.51 1.69 0.02 0.14 par:pre; +rejoue rejouer ver 3.51 1.69 1.18 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rejouent rejouer ver 3.51 1.69 0.21 0.07 ind:pre:3p; +rejouer rejouer ver 3.51 1.69 1.48 0.88 inf; +rejouerait rejouer ver 3.51 1.69 0.02 0.07 cnd:pre:3s; +rejoueras rejouer ver 3.51 1.69 0.03 0.00 ind:fut:2s; +rejouerez rejouer ver 3.51 1.69 0.16 0.07 ind:fut:2p; +rejouerons rejouer ver 3.51 1.69 0.00 0.07 ind:fut:1p; +rejoues rejouer ver 3.51 1.69 0.04 0.00 ind:pre:2s; +rejouez rejouer ver 3.51 1.69 0.10 0.00 imp:pre:2p;ind:pre:2p; +rejouons rejouer ver 3.51 1.69 0.03 0.00 imp:pre:1p; +rejoué rejouer ver m s 3.51 1.69 0.19 0.14 par:pas; +rejuger rejuger ver 0.34 0.14 0.07 0.07 inf; +rejugez rejuger ver 0.34 0.14 0.02 0.00 imp:pre:2p; +rejugé rejuger ver m s 0.34 0.14 0.22 0.07 par:pas; +rejugés rejuger ver m p 0.34 0.14 0.02 0.00 par:pas; +relacent relacer ver 0.01 0.41 0.00 0.07 ind:pre:3p; +relacer relacer ver 0.01 0.41 0.00 0.07 inf; +relaie relayer ver 2.63 5.81 0.27 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaient relayer ver 2.63 5.81 0.52 0.27 ind:pre:3p; +relaiera relayer ver 2.63 5.81 0.07 0.14 ind:fut:3s; +relaieraient relayer ver 2.63 5.81 0.00 0.07 cnd:pre:3p; +relaierait relayer ver 2.63 5.81 0.00 0.07 cnd:pre:3s; +relaieront relayer ver 2.63 5.81 0.17 0.00 ind:fut:3p; +relais relais nom m 7.09 8.51 7.09 8.51 +relaisser relaisser ver 0.00 0.07 0.00 0.07 inf; +relance relancer ver 4.95 7.43 1.87 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relancement relancement nom m s 0.03 0.00 0.03 0.00 +relancent relancer ver 4.95 7.43 0.01 0.07 ind:pre:3p; +relancer relancer ver 4.95 7.43 1.96 2.77 inf; +relancera relancer ver 4.95 7.43 0.02 0.00 ind:fut:3s; +relancerait relancer ver 4.95 7.43 0.04 0.00 cnd:pre:3s; +relanceront relancer ver 4.95 7.43 0.01 0.00 ind:fut:3p; +relances relancer ver 4.95 7.43 0.05 0.00 ind:pre:2s; +relanceur relanceur nom m s 0.01 0.00 0.01 0.00 +relancez relancer ver 4.95 7.43 0.27 0.00 imp:pre:2p;ind:pre:2p; +relancèrent relancer ver 4.95 7.43 0.00 0.07 ind:pas:3p; +relancé relancer ver m s 4.95 7.43 0.48 1.22 par:pas; +relancée relancer ver f s 4.95 7.43 0.16 0.20 par:pas; +relancées relancer ver f p 4.95 7.43 0.01 0.07 par:pas; +relancés relancer ver m p 4.95 7.43 0.01 0.07 par:pas; +relança relancer ver 4.95 7.43 0.01 0.41 ind:pas:3s; +relançai relancer ver 4.95 7.43 0.00 0.07 ind:pas:1s; +relançaient relancer ver 4.95 7.43 0.00 0.41 ind:imp:3p; +relançais relancer ver 4.95 7.43 0.00 0.07 ind:imp:1s; +relançait relancer ver 4.95 7.43 0.01 0.81 ind:imp:3s; +relançant relancer ver 4.95 7.43 0.00 0.41 par:pre; +relançons relancer ver 4.95 7.43 0.05 0.00 imp:pre:1p; +relançât relancer ver 4.95 7.43 0.00 0.14 sub:imp:3s; +relaps relaps nom m 0.01 0.34 0.00 0.34 +relapse relaps adj f s 0.00 0.34 0.00 0.07 +relapses relaps nom f p 0.01 0.34 0.01 0.00 +relargué relargué adj m s 0.00 0.14 0.00 0.14 +relata relater ver 1.18 5.61 0.03 0.47 ind:pas:3s; +relatai relater ver 1.18 5.61 0.00 0.07 ind:pas:1s; +relataient relater ver 1.18 5.61 0.01 0.27 ind:imp:3p; +relatais relater ver 1.18 5.61 0.00 0.20 ind:imp:1s; +relatait relater ver 1.18 5.61 0.02 0.81 ind:imp:3s; +relatant relater ver 1.18 5.61 0.05 0.95 par:pre; +relate relater ver 1.18 5.61 0.19 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relatent relater ver 1.18 5.61 0.06 0.14 ind:pre:3p; +relater relater ver 1.18 5.61 0.39 0.54 inf; +relateraient relater ver 1.18 5.61 0.00 0.07 cnd:pre:3p; +relateront relater ver 1.18 5.61 0.01 0.00 ind:fut:3p; +relaça relacer ver 0.01 0.41 0.00 0.07 ind:pas:3s; +relaçaient relacer ver 0.01 0.41 0.00 0.07 ind:imp:3p; +relaçait relacer ver 0.01 0.41 0.01 0.14 ind:imp:3s; +relatif relatif adj m s 3.12 14.05 1.05 3.78 +relatifs relatif adj m p 3.12 14.05 0.56 1.22 +relation relation nom f s 74.95 52.36 44.03 10.20 +relationnel relationnel adj m s 0.38 0.00 0.14 0.00 +relationnelle relationnel adj f s 0.38 0.00 0.01 0.00 +relationnelles relationnel adj f p 0.38 0.00 0.09 0.00 +relationnels relationnel adj m p 0.38 0.00 0.14 0.00 +relations relation nom f p 74.95 52.36 30.92 42.16 +relative relatif adj f s 3.12 14.05 0.93 7.09 +relativement relativement adv 4.48 8.65 4.48 8.65 +relatives relatif adj f p 3.12 14.05 0.57 1.96 +relativisant relativiser ver 0.39 0.20 0.00 0.07 par:pre; +relativisation relativisation nom f s 0.00 0.14 0.00 0.14 +relativise relativiser ver 0.39 0.20 0.14 0.00 imp:pre:2s;ind:pre:3s; +relativisent relativiser ver 0.39 0.20 0.00 0.07 ind:pre:3p; +relativiser relativiser ver 0.39 0.20 0.23 0.07 inf; +relativisme relativisme nom m s 0.05 0.00 0.05 0.00 +relativiste relativiste adj f s 0.02 0.00 0.02 0.00 +relativisé relativiser ver m s 0.39 0.20 0.02 0.00 par:pas; +relativité relativité nom f s 0.50 1.22 0.50 1.22 +relaté relater ver m s 1.18 5.61 0.13 0.68 par:pas; +relatée relater ver f s 1.18 5.61 0.02 0.07 par:pas; +relatées relater ver f p 1.18 5.61 0.01 0.14 par:pas; +relatés relater ver m p 1.18 5.61 0.25 0.14 par:pas; +relavait relaver ver 0.13 0.47 0.00 0.07 ind:imp:3s; +relave relaver ver 0.13 0.47 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaver relaver ver 0.13 0.47 0.06 0.27 inf; +relavés relaver ver m p 0.13 0.47 0.00 0.07 par:pas; +relax relax adj 8.16 0.88 8.16 0.88 +relaxais relaxer ver 5.46 0.74 0.00 0.07 ind:imp:1s; +relaxant relaxant adj m s 0.72 0.07 0.61 0.00 +relaxante relaxant adj f s 0.72 0.07 0.08 0.00 +relaxantes relaxant adj f p 0.72 0.07 0.01 0.07 +relaxants relaxant adj m p 0.72 0.07 0.03 0.00 +relaxation relaxation nom f s 0.63 0.68 0.63 0.68 +relaxe relaxer ver 5.46 0.74 1.47 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaxer relaxer ver 5.46 0.74 2.64 0.20 ind:pre:2p;inf; +relaxes relaxe nom f p 1.63 0.61 0.21 0.07 +relaxez relaxer ver 5.46 0.74 0.77 0.14 imp:pre:2p;ind:pre:2p; +relaxons relaxer ver 5.46 0.74 0.03 0.00 imp:pre:1p;ind:pre:1p; +relaxé relaxer ver m s 5.46 0.74 0.27 0.27 par:pas; +relaxée relaxer ver f s 5.46 0.74 0.07 0.07 par:pas; +relaya relayer ver 2.63 5.81 0.00 0.14 ind:pas:3s; +relayaient relayer ver 2.63 5.81 0.25 1.22 ind:imp:3p; +relayait relayer ver 2.63 5.81 0.01 0.47 ind:imp:3s; +relayant relayer ver 2.63 5.81 0.01 0.54 par:pre; +relaye relayer ver 2.63 5.81 0.01 0.07 ind:pre:1s;ind:pre:3s; +relayent relayer ver 2.63 5.81 0.00 0.14 ind:pre:3p; +relayer relayer ver 2.63 5.81 0.93 1.01 inf; +relayera relayer ver 2.63 5.81 0.01 0.07 ind:fut:3s; +relayerai relayer ver 2.63 5.81 0.10 0.00 ind:fut:1s; +relayeur relayeur nom m s 0.02 0.00 0.02 0.00 +relayez relayer ver 2.63 5.81 0.05 0.00 imp:pre:2p; +relayions relayer ver 2.63 5.81 0.00 0.07 ind:imp:1p; +relayâmes relayer ver 2.63 5.81 0.00 0.14 ind:pas:1p; +relayons relayer ver 2.63 5.81 0.02 0.07 imp:pre:1p;ind:pre:1p; +relayèrent relayer ver 2.63 5.81 0.00 0.20 ind:pas:3p; +relayé relayer ver m s 2.63 5.81 0.14 0.61 par:pas; +relayée relayer ver f s 2.63 5.81 0.02 0.14 par:pas; +relayées relayer ver f p 2.63 5.81 0.01 0.07 par:pas; +relayés relayer ver m p 2.63 5.81 0.03 0.20 par:pas; +relecture relecture nom f s 0.80 0.47 0.80 0.47 +relent relent nom m s 0.32 9.12 0.10 2.64 +relents relent nom m p 0.32 9.12 0.23 6.49 +releva relever ver 39.49 124.93 0.05 25.74 ind:pas:3s; +relevable relevable adj m s 0.00 0.07 0.00 0.07 +relevai relever ver 39.49 124.93 0.14 1.82 ind:pas:1s; +relevaient relever ver 39.49 124.93 0.06 3.51 ind:imp:3p; +relevailles relevailles nom f p 0.00 0.07 0.00 0.07 +relevais relever ver 39.49 124.93 0.06 0.95 ind:imp:1s;ind:imp:2s; +relevait relever ver 39.49 124.93 0.53 9.80 ind:imp:3s; +relevant relever ver 39.49 124.93 0.53 10.68 par:pre; +relever relever ver 39.49 124.93 10.46 24.39 inf; +releveur releveur adj m s 0.03 0.07 0.03 0.00 +releveurs releveur nom m p 0.02 0.00 0.01 0.00 +relevez relever ver 39.49 124.93 5.95 0.34 imp:pre:2p;ind:pre:2p; +releviez relever ver 39.49 124.93 0.14 0.07 ind:imp:2p; +relevions relever ver 39.49 124.93 0.00 0.27 ind:imp:1p; +relevâmes relever ver 39.49 124.93 0.00 0.07 ind:pas:1p; +relevons relever ver 39.49 124.93 0.33 0.27 imp:pre:1p;ind:pre:1p; +relevât relever ver 39.49 124.93 0.00 0.54 sub:imp:3s; +relevèrent relever ver 39.49 124.93 0.01 1.28 ind:pas:3p; +relevé relever ver m s 39.49 124.93 6.04 13.72 par:pas; +relevée relevé adj f s 2.30 10.14 0.64 2.03 +relevées relever ver f p 39.49 124.93 0.30 1.35 par:pas; +relevés relevé nom m p 5.00 2.36 3.12 0.81 +reliage reliage nom m s 0.01 0.00 0.01 0.00 +reliaient relier ver 12.83 20.47 0.22 0.88 ind:imp:3p; +reliait relier ver 12.83 20.47 0.20 2.64 ind:imp:3s; +reliant relier ver 12.83 20.47 0.78 1.55 par:pre; +relie relier ver 12.83 20.47 1.95 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relief relief nom m s 1.25 19.32 1.11 13.51 +reliefs relief nom m p 1.25 19.32 0.14 5.81 +relient relier ver 12.83 20.47 0.30 1.01 ind:pre:3p; +relier relier ver 12.83 20.47 2.34 2.64 inf; +reliera relier ver 12.83 20.47 0.29 0.14 ind:fut:3s; +relieur relieur nom m s 0.33 0.41 0.33 0.27 +relieurs relieur nom m p 0.33 0.41 0.00 0.14 +reliez relier ver 12.83 20.47 0.11 0.00 imp:pre:2p; +religieuse religieux adj f s 15.52 24.26 4.85 11.42 +religieusement religieusement adv 0.80 3.04 0.80 3.04 +religieuses religieux adj f p 15.52 24.26 2.17 3.78 +religieux religieux adj m 15.52 24.26 8.51 9.05 +religion religion nom f s 24.68 35.07 22.86 30.88 +religionnaires religionnaire nom p 0.00 0.07 0.00 0.07 +religions religion nom f p 24.68 35.07 1.81 4.19 +religiosité religiosité nom f s 0.01 0.41 0.01 0.41 +reliât relier ver 12.83 20.47 0.00 0.14 sub:imp:3s; +reliquaire reliquaire nom s 0.28 0.95 0.28 0.68 +reliquaires reliquaire nom p 0.28 0.95 0.00 0.27 +reliquat reliquat nom m s 0.04 1.76 0.04 1.35 +reliquats reliquat nom m p 0.04 1.76 0.00 0.41 +relique relique nom f s 2.59 5.95 1.41 2.23 +reliques relique nom f p 2.59 5.95 1.19 3.72 +relirai relire ver 6.31 25.81 0.04 0.07 ind:fut:1s; +relirais relire ver 6.31 25.81 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +relirait relire ver 6.31 25.81 0.00 0.27 cnd:pre:3s; +reliras relire ver 6.31 25.81 0.00 0.07 ind:fut:2s; +relire relire ver 6.31 25.81 1.84 6.42 inf; +relirez relire ver 6.31 25.81 0.01 0.07 ind:fut:2p; +relirons relire ver 6.31 25.81 0.01 0.07 ind:fut:1p; +relis relire ver 6.31 25.81 1.78 2.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +relisaient relire ver 6.31 25.81 0.00 0.07 ind:imp:3p; +relisais relire ver 6.31 25.81 0.12 1.55 ind:imp:1s;ind:imp:2s; +relisait relire ver 6.31 25.81 0.01 2.03 ind:imp:3s; +relisant relire ver 6.31 25.81 0.07 1.69 par:pre; +relise relire ver 6.31 25.81 0.07 0.27 sub:pre:1s;sub:pre:3s; +relisez relire ver 6.31 25.81 0.70 0.54 imp:pre:2p;ind:pre:2p; +relisions relire ver 6.31 25.81 0.00 0.07 ind:imp:1p; +relit relire ver 6.31 25.81 0.22 1.49 ind:pre:3s; +relié relier ver m s 12.83 20.47 3.03 2.77 par:pas; +reliée relier ver f s 12.83 20.47 0.95 1.08 par:pas; +reliées relier ver f p 12.83 20.47 0.53 2.09 par:pas; +reliure reliure nom f s 0.67 4.12 0.61 2.23 +reliures reliure nom f p 0.67 4.12 0.06 1.89 +reliés relier ver m p 12.83 20.47 2.12 2.77 par:pas; +relâcha relâcher ver 21.40 13.45 0.13 1.69 ind:pas:3s; +relâchai relâcher ver 21.40 13.45 0.00 0.20 ind:pas:1s; +relâchaient relâcher ver 21.40 13.45 0.01 0.41 ind:imp:3p; +relâchais relâcher ver 21.40 13.45 0.01 0.07 ind:imp:1s; +relâchait relâcher ver 21.40 13.45 0.02 1.89 ind:imp:3s; +relâchant relâcher ver 21.40 13.45 0.04 0.68 par:pre; +relâche relâcher ver 21.40 13.45 4.25 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +relâchement relâchement nom m s 0.47 2.70 0.44 2.36 +relâchements relâchement nom m p 0.47 2.70 0.02 0.34 +relâchent relâcher ver 21.40 13.45 0.35 0.61 ind:pre:3p; +relâcher relâcher ver 21.40 13.45 4.09 3.24 imp:pre:2p;inf; +relâchera relâcher ver 21.40 13.45 0.41 0.07 ind:fut:3s; +relâcherai relâcher ver 21.40 13.45 0.54 0.00 ind:fut:1s; +relâcheraient relâcher ver 21.40 13.45 0.04 0.00 cnd:pre:3p; +relâcherait relâcher ver 21.40 13.45 0.02 0.07 cnd:pre:3s; +relâcheras relâcher ver 21.40 13.45 0.01 0.00 ind:fut:2s; +relâcherez relâcher ver 21.40 13.45 0.06 0.00 ind:fut:2p; +relâcherons relâcher ver 21.40 13.45 0.04 0.00 ind:fut:1p; +relâcheront relâcher ver 21.40 13.45 0.44 0.20 ind:fut:3p; +relâchez relâcher ver 21.40 13.45 4.77 0.00 imp:pre:2p;ind:pre:2p; +relâchiez relâcher ver 21.40 13.45 0.11 0.00 ind:imp:2p; +relâchons relâcher ver 21.40 13.45 0.27 0.07 imp:pre:1p;ind:pre:1p; +relâchèrent relâcher ver 21.40 13.45 0.01 0.54 ind:pas:3p; +relâché relâcher ver m s 21.40 13.45 4.08 1.76 par:pas; +relâchée relâcher ver f s 21.40 13.45 0.92 0.41 par:pas; +relâchées relâcher ver f p 21.40 13.45 0.07 0.20 par:pas; +relâchés relâcher ver m p 21.40 13.45 0.72 0.07 par:pas; +reloge reloger ver 0.52 0.34 0.14 0.14 ind:pre:3s; +relogement relogement nom m s 0.08 0.14 0.07 0.07 +relogements relogement nom m p 0.08 0.14 0.01 0.07 +reloger reloger ver 0.52 0.34 0.23 0.14 ind:pre:2p;inf; +relogerais reloger ver 0.52 0.34 0.00 0.07 cnd:pre:1s; +relogé reloger ver m s 0.52 0.34 0.15 0.00 par:pas; +relooker relooker ver 0.18 0.00 0.07 0.00 inf; +relookerai relooker ver 0.18 0.00 0.01 0.00 ind:fut:1s; +relooké relooker ver m s 0.18 0.00 0.06 0.00 par:pas; +relookée relooker ver f s 0.18 0.00 0.03 0.00 par:pas; +reloquer reloquer ver 0.00 0.07 0.00 0.07 inf; +relouer relouer ver 0.14 0.07 0.04 0.00 inf; +relouerons relouer ver 0.14 0.07 0.00 0.07 ind:fut:1p; +relourde relourder ver 0.00 0.20 0.00 0.07 ind:pre:3s; +relourder relourder ver 0.00 0.20 0.00 0.07 inf; +relourdé relourder ver m s 0.00 0.20 0.00 0.07 par:pas; +reloué relouer ver m s 0.14 0.07 0.10 0.00 par:pas; +relègue reléguer ver 0.54 4.53 0.06 0.47 ind:pre:1s;ind:pre:3s; +relèguent reléguer ver 0.54 4.53 0.00 0.07 ind:pre:3p; +relève relever ver 39.49 124.93 11.74 19.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +relèvement relèvement nom m s 0.45 0.95 0.43 0.88 +relèvements relèvement nom m p 0.45 0.95 0.02 0.07 +relèvent relever ver 39.49 124.93 0.68 2.57 ind:pre:3p; +relèvera relever ver 39.49 124.93 0.51 0.41 ind:fut:3s; +relèverai relever ver 39.49 124.93 0.19 0.00 ind:fut:1s; +relèveraient relever ver 39.49 124.93 0.04 0.34 cnd:pre:3p; +relèverais relever ver 39.49 124.93 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +relèverait relever ver 39.49 124.93 0.09 0.81 cnd:pre:3s; +relèveras relever ver 39.49 124.93 0.12 0.07 ind:fut:2s; +relèverez relever ver 39.49 124.93 0.01 0.14 ind:fut:2p; +relèverions relever ver 39.49 124.93 0.00 0.07 cnd:pre:1p; +relèverons relever ver 39.49 124.93 0.17 0.00 ind:fut:1p; +relèveront relever ver 39.49 124.93 0.09 0.07 ind:fut:3p; +relèves relever ver 39.49 124.93 0.15 0.20 ind:pre:2s;sub:pre:2s; +relu relire ver m s 6.31 25.81 1.35 3.65 par:pas; +relue relire ver f s 6.31 25.81 0.02 0.20 par:pas; +relues relire ver f p 6.31 25.81 0.01 0.14 par:pas; +relégation relégation nom f s 0.10 0.68 0.10 0.68 +relégua reléguer ver 0.54 4.53 0.00 0.14 ind:pas:3s; +reléguai reléguer ver 0.54 4.53 0.00 0.07 ind:pas:1s; +reléguaient reléguer ver 0.54 4.53 0.00 0.14 ind:imp:3p; +reléguait reléguer ver 0.54 4.53 0.00 0.34 ind:imp:3s; +reléguant reléguer ver 0.54 4.53 0.00 0.27 par:pre; +reléguer reléguer ver 0.54 4.53 0.06 0.68 inf; +reléguera reléguer ver 0.54 4.53 0.00 0.07 ind:fut:3s; +relégueraient reléguer ver 0.54 4.53 0.00 0.07 cnd:pre:3p; +reléguerait reléguer ver 0.54 4.53 0.00 0.07 cnd:pre:3s; +reléguons reléguer ver 0.54 4.53 0.00 0.07 ind:pre:1p; +reléguèrent reléguer ver 0.54 4.53 0.00 0.07 ind:pas:3p; +relégué reléguer ver m s 0.54 4.53 0.31 0.95 par:pas; +reléguée reléguer ver f s 0.54 4.53 0.05 0.61 par:pas; +reléguées reléguer ver f p 0.54 4.53 0.00 0.27 par:pas; +relégués relégué adj m p 0.13 0.74 0.10 0.20 +relui reluire ver m s 0.54 4.05 0.02 0.07 par:pas; +reluire reluire ver 0.54 4.05 0.34 2.77 inf; +reluiront reluire ver 0.54 4.05 0.00 0.07 ind:fut:3p; +reluis reluire ver 0.54 4.05 0.00 0.07 ind:pre:2s; +reluisaient reluire ver 0.54 4.05 0.00 0.14 ind:imp:3p; +reluisais reluire ver 0.54 4.05 0.00 0.07 ind:imp:1s; +reluisant reluisant adj m s 0.27 1.96 0.14 0.81 +reluisante reluisant adj f s 0.27 1.96 0.06 0.34 +reluisantes reluisant adj f p 0.27 1.96 0.01 0.34 +reluisants reluisant adj m p 0.27 1.96 0.06 0.47 +reluise reluire ver 0.54 4.05 0.16 0.07 sub:pre:3s; +reluisent reluire ver 0.54 4.05 0.01 0.20 ind:pre:3p; +reluit reluire ver 0.54 4.05 0.00 0.41 ind:pre:3s; +reluqua reluquer ver 2.16 5.47 0.00 0.07 ind:pas:3s; +reluquaient reluquer ver 2.16 5.47 0.05 0.47 ind:imp:3p; +reluquais reluquer ver 2.16 5.47 0.12 0.20 ind:imp:1s;ind:imp:2s; +reluquait reluquer ver 2.16 5.47 0.10 0.41 ind:imp:3s; +reluquant reluquer ver 2.16 5.47 0.01 0.68 par:pre; +reluque reluquer ver 2.16 5.47 0.36 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reluquent reluquer ver 2.16 5.47 0.13 0.07 ind:pre:3p; +reluquer reluquer ver 2.16 5.47 1.09 1.49 inf; +reluques reluquer ver 2.16 5.47 0.12 0.07 ind:pre:2s; +reluquiez reluquer ver 2.16 5.47 0.01 0.00 ind:imp:2p; +reluqué reluquer ver m s 2.16 5.47 0.04 0.14 par:pas; +reluquée reluquer ver f s 2.16 5.47 0.09 0.14 par:pas; +reluqués reluquer ver m p 2.16 5.47 0.04 0.07 par:pas; +relus relire ver m p 6.31 25.81 0.04 0.95 ind:pas:1s;par:pas; +relut relire ver 6.31 25.81 0.01 3.58 ind:pas:3s; +remîmes remettre ver 144.94 202.50 0.01 0.20 ind:pas:1p; +remît remettre ver 144.94 202.50 0.01 1.22 sub:imp:3s; +remaigrir remaigrir ver 0.01 0.00 0.01 0.00 inf; +remaillage remaillage nom m s 0.00 0.20 0.00 0.20 +remaillaient remailler ver 0.00 0.27 0.00 0.07 ind:imp:3p; +remaillant remailler ver 0.00 0.27 0.00 0.07 par:pre; +remailler remailler ver 0.00 0.27 0.00 0.07 inf; +remailleuse mailleur nom f s 0.00 0.07 0.00 0.07 +remaillés remailler ver m p 0.00 0.27 0.00 0.07 par:pas; +remake remake nom m s 0.66 0.54 0.66 0.54 +remange remanger ver 0.07 0.07 0.03 0.00 ind:pre:1s; +remanger remanger ver 0.07 0.07 0.04 0.00 inf; +remangerait remanger ver 0.07 0.07 0.00 0.07 cnd:pre:3s; +remania remanier ver 0.79 0.88 0.00 0.07 ind:pas:3s; +remaniait remanier ver 0.79 0.88 0.00 0.07 ind:imp:3s; +remaniant remanier ver 0.79 0.88 0.00 0.14 par:pre; +remanie remanier ver 0.79 0.88 0.16 0.00 ind:pre:1s;ind:pre:3s; +remaniement remaniement nom m s 0.16 1.08 0.09 0.95 +remaniements remaniement nom m p 0.16 1.08 0.07 0.14 +remanier remanier ver 0.79 0.88 0.12 0.27 inf; +remanié remanier ver m s 0.79 0.88 0.48 0.20 par:pas; +remaniée remanier ver f s 0.79 0.88 0.01 0.14 par:pas; +remaniés remanier ver m p 0.79 0.88 0.02 0.00 par:pas; +remaquilla remaquiller ver 0.28 0.81 0.00 0.27 ind:pas:3s; +remaquillait remaquiller ver 0.28 0.81 0.00 0.14 ind:imp:3s; +remaquille remaquiller ver 0.28 0.81 0.02 0.00 ind:pre:1s;ind:pre:3s; +remaquiller remaquiller ver 0.28 0.81 0.26 0.20 inf; +remaquillé remaquiller ver m s 0.28 0.81 0.01 0.00 par:pas; +remaquillée remaquiller ver f s 0.28 0.81 0.00 0.20 par:pas; +remarchait remarcher ver 1.32 0.41 0.00 0.14 ind:imp:3s; +remarche remarcher ver 1.32 0.41 0.47 0.07 ind:pre:3s; +remarchent remarcher ver 1.32 0.41 0.02 0.00 ind:pre:3p; +remarcher remarcher ver 1.32 0.41 0.67 0.20 inf; +remarchera remarcher ver 1.32 0.41 0.13 0.00 ind:fut:3s; +remarcheras remarcher ver 1.32 0.41 0.02 0.00 ind:fut:2s; +remaria remarier ver 6.14 4.32 0.08 0.14 ind:pas:3s; +remariage remariage nom m s 0.10 0.54 0.10 0.54 +remariaient remarier ver 6.14 4.32 0.01 0.00 ind:imp:3p; +remariait remarier ver 6.14 4.32 0.05 0.07 ind:imp:3s; +remariant remarier ver 6.14 4.32 0.01 0.07 par:pre; +remarie remarier ver 6.14 4.32 0.72 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remarient remarier ver 6.14 4.32 0.04 0.14 ind:pre:3p; +remarier remarier ver 6.14 4.32 2.48 1.28 inf;; +remariera remarier ver 6.14 4.32 0.07 0.20 ind:fut:3s; +remarierai remarier ver 6.14 4.32 0.14 0.00 ind:fut:1s; +remarierais remarier ver 6.14 4.32 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +remarierait remarier ver 6.14 4.32 0.02 0.07 cnd:pre:3s; +remarieras remarier ver 6.14 4.32 0.04 0.00 ind:fut:2s; +remarierez remarier ver 6.14 4.32 0.01 0.00 ind:fut:2p; +remarieront remarier ver 6.14 4.32 0.00 0.07 ind:fut:3p; +remaries remarier ver 6.14 4.32 0.06 0.07 ind:pre:2s; +remariez remarier ver 6.14 4.32 0.18 0.07 imp:pre:2p;ind:pre:2p; +remariions remarier ver 6.14 4.32 0.00 0.07 ind:imp:1p; +remarié remarier ver m s 6.14 4.32 0.81 1.15 par:pas; +remariée remarier ver f s 6.14 4.32 1.20 0.74 par:pas; +remariés remarier ver m p 6.14 4.32 0.17 0.00 par:pas; +remarqua remarquer ver 80.56 142.16 0.88 22.36 ind:pas:3s; +remarquable remarquable adj s 13.22 13.24 12.20 10.74 +remarquablement remarquablement adv 0.99 1.89 0.99 1.89 +remarquables remarquable adj p 13.22 13.24 1.02 2.50 +remarquai remarquer ver 80.56 142.16 0.31 6.35 ind:pas:1s; +remarquaient remarquer ver 80.56 142.16 0.10 0.54 ind:imp:3p; +remarquais remarquer ver 80.56 142.16 0.07 1.76 ind:imp:1s;ind:imp:2s; +remarquait remarquer ver 80.56 142.16 0.41 5.20 ind:imp:3s; +remarquant remarquer ver 80.56 142.16 0.01 1.42 par:pre; +remarquas remarquer ver 80.56 142.16 0.00 0.07 ind:pas:2s; +remarque remarquer ver 80.56 142.16 7.76 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +remarquent remarquer ver 80.56 142.16 1.01 1.01 ind:pre:3p; +remarquer remarquer ver 80.56 142.16 11.32 32.70 inf; +remarquera remarquer ver 80.56 142.16 1.05 0.68 ind:fut:3s; +remarquerai remarquer ver 80.56 142.16 0.04 0.00 ind:fut:1s; +remarqueraient remarquer ver 80.56 142.16 0.08 0.00 cnd:pre:3p; +remarquerais remarquer ver 80.56 142.16 0.41 0.20 cnd:pre:1s;cnd:pre:2s; +remarquerait remarquer ver 80.56 142.16 0.66 0.68 cnd:pre:3s; +remarqueras remarquer ver 80.56 142.16 0.37 0.20 ind:fut:2s; +remarquerez remarquer ver 80.56 142.16 0.92 0.61 ind:fut:2p; +remarqueriez remarquer ver 80.56 142.16 0.19 0.00 cnd:pre:2p; +remarqueront remarquer ver 80.56 142.16 0.53 0.07 ind:fut:3p; +remarques remarque nom f p 11.24 21.28 3.59 5.07 +remarquez remarquer ver 80.56 142.16 4.07 6.35 imp:pre:2p;ind:pre:2p; +remarquiez remarquer ver 80.56 142.16 0.14 0.14 ind:imp:2p;sub:pre:2p; +remarquions remarquer ver 80.56 142.16 0.03 0.20 ind:imp:1p; +remarquâmes remarquer ver 80.56 142.16 0.00 0.34 ind:pas:1p; +remarquons remarquer ver 80.56 142.16 0.05 0.00 imp:pre:1p;ind:pre:1p; +remarquât remarquer ver 80.56 142.16 0.00 0.54 sub:imp:3s; +remarquèrent remarquer ver 80.56 142.16 0.01 0.34 ind:pas:3p; +remarqué remarquer ver m s 80.56 142.16 47.20 39.86 par:pas; +remarquée remarquer ver f s 80.56 142.16 1.30 5.47 par:pas; +remarquées remarquer ver f p 80.56 142.16 0.08 0.68 par:pas; +remarqués remarquer ver m p 80.56 142.16 0.36 1.08 par:pas; +remballa remballer ver 3.06 1.96 0.00 0.20 ind:pas:3s; +remballage remballage nom m s 0.01 0.07 0.01 0.07 +remballaient remballer ver 3.06 1.96 0.00 0.07 ind:imp:3p; +remballait remballer ver 3.06 1.96 0.00 0.07 ind:imp:3s; +remballant remballer ver 3.06 1.96 0.00 0.20 par:pre; +remballe remballer ver 3.06 1.96 1.68 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remballent remballer ver 3.06 1.96 0.01 0.14 ind:pre:3p; +remballer remballer ver 3.06 1.96 0.66 0.34 inf; +remballez remballer ver 3.06 1.96 0.58 0.00 imp:pre:2p;ind:pre:2p; +remballé remballer ver m s 3.06 1.96 0.13 0.34 par:pas; +remballés remballer ver m p 3.06 1.96 0.01 0.14 par:pas; +rembarqua rembarquer ver 0.21 0.95 0.00 0.07 ind:pas:3s; +rembarquaient rembarquer ver 0.21 0.95 0.00 0.07 ind:imp:3p; +rembarque rembarquer ver 0.21 0.95 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembarquement rembarquement nom m s 0.00 0.47 0.00 0.41 +rembarquements rembarquement nom m p 0.00 0.47 0.00 0.07 +rembarquer rembarquer ver 0.21 0.95 0.04 0.41 inf; +rembarquez rembarquer ver 0.21 0.95 0.12 0.00 imp:pre:2p;ind:pre:2p; +rembarquèrent rembarquer ver 0.21 0.95 0.00 0.20 ind:pas:3p; +rembarqué rembarquer ver m s 0.21 0.95 0.01 0.00 par:pas; +rembarquées rembarquer ver f p 0.21 0.95 0.00 0.14 par:pas; +rembarra rembarrer ver 0.68 0.88 0.00 0.07 ind:pas:3s; +rembarrais rembarrer ver 0.68 0.88 0.01 0.14 ind:imp:1s; +rembarrait rembarrer ver 0.68 0.88 0.01 0.07 ind:imp:3s; +rembarre rembarrer ver 0.68 0.88 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembarrer rembarrer ver 0.68 0.88 0.25 0.34 inf; +rembarres rembarrer ver 0.68 0.88 0.05 0.00 ind:pre:2s; +rembarré rembarrer ver m s 0.68 0.88 0.11 0.07 par:pas; +rembarrée rembarrer ver f s 0.68 0.88 0.03 0.07 par:pas; +rembauche rembaucher ver 0.00 0.14 0.00 0.07 ind:pre:3s; +rembauchés rembaucher ver m p 0.00 0.14 0.00 0.07 par:pas; +remblai remblai nom m s 0.09 5.34 0.07 4.66 +remblaiement remblaiement nom m s 0.00 0.14 0.00 0.14 +remblais remblai nom m p 0.09 5.34 0.02 0.68 +remblaya remblayer ver 0.01 0.34 0.00 0.07 ind:pas:3s; +remblayer remblayer ver 0.01 0.34 0.01 0.14 inf; +remblayé remblayer ver m s 0.01 0.34 0.00 0.07 par:pas; +remblayée remblayer ver f s 0.01 0.34 0.00 0.07 par:pas; +remboîter remboîter ver 0.00 0.07 0.00 0.07 inf; +rembobinage rembobinage nom m s 0.23 0.00 0.23 0.00 +rembobine rembobiner ver 1.59 0.20 1.10 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembobiner rembobiner ver 1.59 0.20 0.33 0.07 inf; +rembobinez rembobiner ver 1.59 0.20 0.16 0.00 imp:pre:2p; +rembour rembour nom m s 0.00 0.07 0.00 0.07 +rembourrage rembourrage nom m s 0.52 0.47 0.51 0.34 +rembourrages rembourrage nom m p 0.52 0.47 0.01 0.14 +rembourraient rembourrer ver 0.74 2.36 0.01 0.07 ind:imp:3p; +rembourrait rembourrer ver 0.74 2.36 0.01 0.14 ind:imp:3s; +rembourrant rembourrer ver 0.74 2.36 0.00 0.07 par:pre; +rembourre rembourrer ver 0.74 2.36 0.06 0.07 ind:pre:3s; +rembourrer rembourrer ver 0.74 2.36 0.06 0.00 inf; +rembourré rembourrer ver m s 0.74 2.36 0.35 0.81 par:pas; +rembourrée rembourrer ver f s 0.74 2.36 0.19 0.27 par:pas; +rembourrées rembourrer ver f p 0.74 2.36 0.03 0.34 par:pas; +rembourrés rembourrer ver m p 0.74 2.36 0.02 0.61 par:pas; +remboursa rembourser ver 27.71 9.26 0.01 0.00 ind:pas:3s; +remboursable remboursable adj s 0.38 0.00 0.38 0.00 +remboursaient rembourser ver 27.71 9.26 0.00 0.07 ind:imp:3p; +remboursais rembourser ver 27.71 9.26 0.03 0.00 ind:imp:1s;ind:imp:2s; +remboursait rembourser ver 27.71 9.26 0.17 0.14 ind:imp:3s; +remboursant rembourser ver 27.71 9.26 0.01 0.07 par:pre; +rembourse rembourser ver 27.71 9.26 3.81 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remboursement remboursement nom m s 2.09 1.15 1.89 1.01 +remboursements remboursement nom m p 2.09 1.15 0.20 0.14 +remboursent rembourser ver 27.71 9.26 0.16 0.14 ind:pre:3p; +rembourser rembourser ver 27.71 9.26 11.77 4.39 inf;; +remboursera rembourser ver 27.71 9.26 1.31 0.34 ind:fut:3s; +rembourserai rembourser ver 27.71 9.26 4.24 0.34 ind:fut:1s; +rembourserais rembourser ver 27.71 9.26 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +rembourserait rembourser ver 27.71 9.26 0.08 0.07 cnd:pre:3s; +rembourseras rembourser ver 27.71 9.26 0.74 0.34 ind:fut:2s; +rembourserez rembourser ver 27.71 9.26 0.12 0.14 ind:fut:2p; +rembourserons rembourser ver 27.71 9.26 0.06 0.14 ind:fut:1p; +rembourseront rembourser ver 27.71 9.26 0.05 0.14 ind:fut:3p; +rembourses rembourser ver 27.71 9.26 0.56 0.07 ind:pre:2s; +remboursez rembourser ver 27.71 9.26 0.72 0.34 imp:pre:2p;ind:pre:2p; +remboursons rembourser ver 27.71 9.26 0.15 0.07 imp:pre:1p;ind:pre:1p; +remboursât rembourser ver 27.71 9.26 0.00 0.14 sub:imp:3s; +remboursèrent rembourser ver 27.71 9.26 0.00 0.07 ind:pas:3p; +remboursé rembourser ver m s 27.71 9.26 2.71 0.88 par:pas; +remboursée rembourser ver f s 27.71 9.26 0.48 0.27 par:pas; +remboursées rembourser ver f p 27.71 9.26 0.06 0.14 par:pas; +remboursés rembourser ver m p 27.71 9.26 0.34 0.20 par:pas; +rembruni rembrunir ver m s 0.01 2.36 0.00 0.14 par:pas; +rembrunir rembrunir ver 0.01 2.36 0.00 0.20 inf; +rembrunis rembrunir ver m p 0.01 2.36 0.00 0.07 par:pas; +rembrunissait rembrunir ver 0.01 2.36 0.00 0.27 ind:imp:3s; +rembrunissent rembrunir ver 0.01 2.36 0.00 0.07 ind:pre:3p; +rembrunit rembrunir ver 0.01 2.36 0.01 1.62 ind:pre:3s;ind:pas:3s; +remembrance remembrance nom f s 0.01 0.14 0.01 0.14 +remembrement remembrement nom m s 0.01 0.14 0.01 0.14 +remembrés remembrer ver m p 0.00 0.07 0.00 0.07 par:pas; +remercia remercier ver 113.70 54.46 0.04 8.31 ind:pas:3s; +remerciai remercier ver 113.70 54.46 0.01 1.15 ind:pas:1s; +remerciaient remercier ver 113.70 54.46 0.11 0.54 ind:imp:3p; +remerciais remercier ver 113.70 54.46 0.14 0.54 ind:imp:1s; +remerciait remercier ver 113.70 54.46 0.06 2.50 ind:imp:3s; +remerciant remercier ver 113.70 54.46 0.40 1.76 par:pre; +remercie remercier ver 113.70 54.46 51.61 17.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +remerciement remerciement nom m s 5.52 6.22 2.53 2.64 +remerciements remerciement nom m p 5.52 6.22 2.99 3.58 +remercient remercier ver 113.70 54.46 0.98 0.27 ind:pre:3p; +remercier remercier ver 113.70 54.46 38.60 15.47 inf;; +remerciera remercier ver 113.70 54.46 0.47 0.14 ind:fut:3s; +remercierai remercier ver 113.70 54.46 0.84 0.20 ind:fut:1s; +remercierais remercier ver 113.70 54.46 0.12 0.07 cnd:pre:1s;cnd:pre:2s; +remercierait remercier ver 113.70 54.46 0.06 0.20 cnd:pre:3s; +remercieras remercier ver 113.70 54.46 1.39 0.20 ind:fut:2s; +remercierez remercier ver 113.70 54.46 1.00 0.14 ind:fut:2p; +remercierons remercier ver 113.70 54.46 0.02 0.00 ind:fut:1p; +remercieront remercier ver 113.70 54.46 0.30 0.00 ind:fut:3p; +remercies remercier ver 113.70 54.46 1.37 0.07 ind:pre:2s; +remerciez remercier ver 113.70 54.46 6.25 0.88 imp:pre:2p;ind:pre:2p; +remerciâmes remercier ver 113.70 54.46 0.00 0.07 ind:pas:1p; +remercions remercier ver 113.70 54.46 5.00 0.68 imp:pre:1p;ind:pre:1p; +remercièrent remercier ver 113.70 54.46 0.00 0.54 ind:pas:3p; +remercié remercier ver m s 113.70 54.46 3.59 2.91 par:pas; +remerciée remercier ver f s 113.70 54.46 0.94 0.54 par:pas; +remerciés remercier ver m p 113.70 54.46 0.38 0.20 par:pas; +remet remettre ver 144.94 202.50 12.56 15.74 ind:pre:3s; +remets remettre ver 144.94 202.50 24.72 6.76 imp:pre:2s;ind:pre:1s;ind:pre:2s; +remettaient remettre ver 144.94 202.50 0.06 2.30 ind:imp:3p; +remettais remettre ver 144.94 202.50 0.56 1.69 ind:imp:1s;ind:imp:2s; +remettait remettre ver 144.94 202.50 0.63 12.84 ind:imp:3s; +remettant remettre ver 144.94 202.50 0.31 5.61 par:pre; +remette remettre ver 144.94 202.50 2.94 2.64 sub:pre:1s;sub:pre:3s; +remettent remettre ver 144.94 202.50 2.26 2.91 ind:pre:3p; +remettes remettre ver 144.94 202.50 0.33 0.07 sub:pre:2s; +remettez remettre ver 144.94 202.50 10.44 2.03 imp:pre:2p;ind:pre:2p; +remettiez remettre ver 144.94 202.50 0.52 0.14 ind:imp:2p; +remettions remettre ver 144.94 202.50 0.07 0.07 ind:imp:1p; +remettons remettre ver 144.94 202.50 2.10 0.47 imp:pre:1p;ind:pre:1p; +remettra remettre ver 144.94 202.50 5.79 2.23 ind:fut:3s; +remettrai remettre ver 144.94 202.50 3.32 0.81 ind:fut:1s; +remettraient remettre ver 144.94 202.50 0.04 0.07 cnd:pre:3p; +remettrais remettre ver 144.94 202.50 0.45 0.34 cnd:pre:1s;cnd:pre:2s; +remettrait remettre ver 144.94 202.50 0.67 2.43 cnd:pre:3s; +remettras remettre ver 144.94 202.50 1.54 0.61 ind:fut:2s; +remettre remettre ver 144.94 202.50 46.99 56.08 inf; +remettrez remettre ver 144.94 202.50 1.09 0.27 ind:fut:2p; +remettriez remettre ver 144.94 202.50 0.07 0.07 cnd:pre:2p; +remettrions remettre ver 144.94 202.50 0.00 0.07 cnd:pre:1p; +remettrons remettre ver 144.94 202.50 0.25 0.00 ind:fut:1p; +remettront remettre ver 144.94 202.50 0.27 0.14 ind:fut:3p; +remeublé remeubler ver m s 0.01 0.00 0.01 0.00 par:pas; +remirent remettre ver 144.94 202.50 0.04 2.97 ind:pas:3p; +remis remettre ver m 144.94 202.50 20.27 39.12 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas;par:pas; +remisa remiser ver 1.43 4.19 0.00 0.20 ind:pas:3s; +remisai remiser ver 1.43 4.19 0.00 0.14 ind:pas:1s; +remisaient remiser ver 1.43 4.19 0.01 0.07 ind:imp:3p; +remisait remiser ver 1.43 4.19 0.00 0.27 ind:imp:3s; +remise remise nom f s 9.77 12.09 8.81 10.95 +remisent remiser ver 1.43 4.19 0.00 0.07 ind:pre:3p; +remiser remiser ver 1.43 4.19 0.18 0.47 inf; +remises remise nom f p 9.77 12.09 0.96 1.15 +remisez remiser ver 1.43 4.19 0.11 0.00 imp:pre:2p; +remisons remiser ver 1.43 4.19 0.00 0.07 ind:pre:1p; +remisse remettre ver 144.94 202.50 0.00 0.07 sub:imp:1s; +remisèrent remiser ver 1.43 4.19 0.00 0.20 ind:pas:3p; +remisé remiser ver m s 1.43 4.19 0.12 0.74 par:pas; +remisée remiser ver f s 1.43 4.19 0.00 0.27 par:pas; +remisés remiser ver m p 1.43 4.19 0.01 0.34 par:pas; +remit remettre ver 144.94 202.50 0.66 32.16 ind:pas:3s; +remix remix nom m 0.15 0.00 0.15 0.00 +remixer remixer ver 0.02 0.00 0.02 0.00 inf; +remmailleuses remmailleuse nom f p 0.00 0.14 0.00 0.14 +remmenaient remmener ver 0.41 0.14 0.00 0.07 ind:imp:3p; +remmener remmener ver 0.41 0.14 0.16 0.07 inf; +remmenez remmener ver 0.41 0.14 0.14 0.00 imp:pre:2p;ind:pre:2p; +remmenée remmener ver f s 0.41 0.14 0.01 0.00 par:pas; +remmène remmener ver 0.41 0.14 0.09 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remmènes remmener ver 0.41 0.14 0.01 0.00 ind:pre:2s; +remobilisés remobiliser ver m p 0.00 0.07 0.00 0.07 par:pas; +remâcha remâcher ver 0.03 2.16 0.00 0.14 ind:pas:3s; +remâchaient remâcher ver 0.03 2.16 0.00 0.14 ind:imp:3p; +remâchais remâcher ver 0.03 2.16 0.00 0.14 ind:imp:1s; +remâchait remâcher ver 0.03 2.16 0.00 0.27 ind:imp:3s; +remâchant remâcher ver 0.03 2.16 0.00 0.34 par:pre; +remâche remâcher ver 0.03 2.16 0.01 0.27 ind:pre:1s;ind:pre:3s; +remâchent remâcher ver 0.03 2.16 0.00 0.14 ind:pre:3p; +remâcher remâcher ver 0.03 2.16 0.01 0.41 inf; +remâchez remâcher ver 0.03 2.16 0.00 0.07 ind:pre:2p; +remâché remâcher ver m s 0.03 2.16 0.00 0.07 par:pas; +remâchée remâcher ver f s 0.03 2.16 0.01 0.14 par:pas; +remâchées remâcher ver f p 0.03 2.16 0.00 0.07 par:pas; +remodela remodeler ver 0.35 0.88 0.00 0.14 ind:pas:3s; +remodelage remodelage nom m s 0.03 0.14 0.03 0.14 +remodelant remodeler ver 0.35 0.88 0.01 0.07 par:pre; +remodeler remodeler ver 0.35 0.88 0.20 0.07 inf; +remodelé remodeler ver m s 0.35 0.88 0.10 0.27 par:pas; +remodelée remodeler ver f s 0.35 0.88 0.04 0.07 par:pas; +remodelées remodeler ver f p 0.35 0.88 0.00 0.07 par:pas; +remodèle remodeler ver 0.35 0.88 0.00 0.14 ind:pre:3s; +remodèles remodeler ver 0.35 0.88 0.00 0.07 ind:pre:2s; +remonta remonter ver 71.33 160.14 0.32 16.22 ind:pas:3s; +remontage remontage nom m s 0.03 0.07 0.03 0.07 +remontai remonter ver 71.33 160.14 0.01 1.76 ind:pas:1s; +remontaient remonter ver 71.33 160.14 0.38 6.15 ind:imp:3p; +remontais remonter ver 71.33 160.14 0.33 2.36 ind:imp:1s;ind:imp:2s; +remontait remonter ver 71.33 160.14 0.65 17.84 ind:imp:3s; +remontant remontant nom m s 2.61 1.01 2.30 0.81 +remontantes remontant adj f p 0.11 0.61 0.00 0.07 +remontants remontant nom m p 2.61 1.01 0.31 0.20 +remonte_pente remonte_pente nom m s 0.02 0.07 0.02 0.07 +remonte_pentes remonte_pentes nom m 0.00 0.07 0.00 0.07 +remonte remonter ver 71.33 160.14 25.55 26.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remontent remonter ver 71.33 160.14 2.78 5.61 ind:pre:3p; +remonter remonter ver 71.33 160.14 19.13 38.51 inf; +remontera remonter ver 71.33 160.14 1.83 0.88 ind:fut:3s; +remonterai remonter ver 71.33 160.14 0.40 0.14 ind:fut:1s; +remonteraient remonter ver 71.33 160.14 0.04 0.14 cnd:pre:3p; +remonterait remonter ver 71.33 160.14 0.35 0.74 cnd:pre:3s; +remonteras remonter ver 71.33 160.14 0.06 0.20 ind:fut:2s; +remonterez remonter ver 71.33 160.14 0.08 0.07 ind:fut:2p; +remonteriez remonter ver 71.33 160.14 0.01 0.00 cnd:pre:2p; +remonterons remonter ver 71.33 160.14 0.14 0.27 ind:fut:1p; +remonteront remonter ver 71.33 160.14 0.30 0.14 ind:fut:3p; +remontes remonter ver 71.33 160.14 1.02 0.54 ind:pre:2s; +remontez remonter ver 71.33 160.14 6.73 0.81 imp:pre:2p;ind:pre:2p; +remontiez remonter ver 71.33 160.14 0.06 0.07 ind:imp:2p; +remontions remonter ver 71.33 160.14 0.30 0.74 ind:imp:1p; +remontoir remontoir nom m s 0.12 0.27 0.12 0.27 +remontâmes remonter ver 71.33 160.14 0.00 0.27 ind:pas:1p; +remontons remonter ver 71.33 160.14 1.21 2.16 imp:pre:1p;ind:pre:1p; +remontât remonter ver 71.33 160.14 0.00 0.41 sub:imp:3s; +remontrait remontrer ver 0.55 1.42 0.06 0.20 ind:imp:3s; +remontrance remontrance nom f s 0.87 1.69 0.16 0.20 +remontrances remontrance nom f p 0.87 1.69 0.71 1.49 +remontrassent remontrer ver 0.55 1.42 0.00 0.07 sub:imp:3p; +remontre remontrer ver 0.55 1.42 0.19 0.14 imp:pre:2s;ind:pre:3s; +remontrer remontrer ver 0.55 1.42 0.19 0.14 inf; +remontrera remontrer ver 0.55 1.42 0.00 0.07 ind:fut:3s; +remontrerai remontrer ver 0.55 1.42 0.01 0.07 ind:fut:1s; +remontrerais remontrer ver 0.55 1.42 0.00 0.07 cnd:pre:1s; +remontrerait remontrer ver 0.55 1.42 0.00 0.27 cnd:pre:3s; +remontreras remontrer ver 0.55 1.42 0.00 0.07 ind:fut:2s; +remontres remontrer ver 0.55 1.42 0.01 0.07 ind:pre:2s; +remontrez remontrer ver 0.55 1.42 0.08 0.00 imp:pre:2p; +remontré remontrer ver m s 0.55 1.42 0.01 0.27 par:pas; +remontèrent remonter ver 71.33 160.14 0.01 3.85 ind:pas:3p; +remonté remonter ver m s 71.33 160.14 5.83 14.39 par:pas; +remontée remonter ver f s 71.33 160.14 1.25 3.31 par:pas; +remontées remontée nom f p 0.38 1.76 0.16 0.27 +remontés remonter ver m p 71.33 160.14 1.04 3.11 par:pas; +remord remordre ver 0.61 0.41 0.43 0.20 ind:pre:3s; +remordait remordre ver 0.61 0.41 0.00 0.14 ind:imp:3s; +remords remords nom m 10.67 27.64 10.67 27.64 +remordu remordre ver m s 0.61 0.41 0.01 0.00 par:pas; +remorqua remorquer ver 1.60 1.35 0.00 0.20 ind:pas:3s; +remorquage remorquage nom m s 0.49 0.07 0.49 0.07 +remorquaient remorquer ver 1.60 1.35 0.00 0.07 ind:imp:3p; +remorquait remorquer ver 1.60 1.35 0.01 0.14 ind:imp:3s; +remorquant remorquer ver 1.60 1.35 0.02 0.34 par:pre; +remorque remorque nom f s 1.31 5.54 1.16 5.14 +remorquer remorquer ver 1.60 1.35 0.85 0.41 inf; +remorquera remorquer ver 1.60 1.35 0.00 0.07 ind:fut:3s; +remorquerai remorquer ver 1.60 1.35 0.02 0.00 ind:fut:1s; +remorques remorque nom f p 1.31 5.54 0.15 0.41 +remorqueur remorqueur nom m s 0.36 1.55 0.28 0.27 +remorqueurs remorqueur nom m p 0.36 1.55 0.08 1.28 +remorqueuse remorqueur adj f s 0.12 0.34 0.09 0.00 +remorquez remorquer ver 1.60 1.35 0.02 0.00 imp:pre:2p; +remorquions remorquer ver 1.60 1.35 0.01 0.00 ind:imp:1p; +remorquons remorquer ver 1.60 1.35 0.03 0.00 imp:pre:1p;ind:pre:1p; +remorqué remorquer ver m s 1.60 1.35 0.37 0.14 par:pas; +remorquée remorquer ver f s 1.60 1.35 0.08 0.00 par:pas; +remoucha remoucher ver 0.00 0.07 0.00 0.07 ind:pas:3s; +remouillaient remouiller ver 0.02 0.20 0.00 0.07 ind:imp:3p; +remouiller remouiller ver 0.02 0.20 0.02 0.14 inf; +remous remous nom m 1.49 14.66 1.49 14.66 +rempaillaient rempailler ver 0.01 0.20 0.00 0.07 ind:imp:3p; +rempailler rempailler ver 0.01 0.20 0.01 0.07 inf; +rempailleur rempailleur nom m s 0.00 0.34 0.00 0.20 +rempailleurs rempailleur nom m p 0.00 0.34 0.00 0.07 +rempailleuses rempailleur nom f p 0.00 0.34 0.00 0.07 +rempaillée rempailler ver f s 0.01 0.20 0.00 0.07 par:pas; +rempaquette rempaqueter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +rempaqueté rempaqueter ver m s 0.00 0.14 0.00 0.07 par:pas; +rempart rempart nom m s 2.95 20.00 1.56 8.31 +remparts rempart nom m p 2.95 20.00 1.39 11.69 +rempilait rempiler ver 0.75 1.15 0.00 0.07 ind:imp:3s; +rempile rempiler ver 0.75 1.15 0.17 0.14 ind:pre:1s;ind:pre:3s; +rempilent rempiler ver 0.75 1.15 0.00 0.07 ind:pre:3p; +rempiler rempiler ver 0.75 1.15 0.20 0.54 inf; +rempilerai rempiler ver 0.75 1.15 0.01 0.07 ind:fut:1s; +rempilerais rempiler ver 0.75 1.15 0.00 0.07 cnd:pre:1s; +rempilerez rempiler ver 0.75 1.15 0.00 0.07 ind:fut:2p; +rempiles rempiler ver 0.75 1.15 0.03 0.00 ind:pre:2s; +rempilez rempiler ver 0.75 1.15 0.04 0.07 imp:pre:2p;ind:pre:2p; +rempilé rempiler ver m s 0.75 1.15 0.29 0.07 par:pas; +remplît remplir ver 61.21 81.42 0.00 0.20 sub:imp:3s; +remplace remplacer ver 52.84 60.61 11.59 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remplacement remplacement nom m s 2.03 4.59 1.86 3.92 +remplacements remplacement nom m p 2.03 4.59 0.17 0.68 +remplacent remplacer ver 52.84 60.61 0.84 1.08 ind:pre:3p; +remplacer remplacer ver 52.84 60.61 22.95 18.38 inf;;inf;;inf;; +remplacera remplacer ver 52.84 60.61 2.13 1.22 ind:fut:3s; +remplacerai remplacer ver 52.84 60.61 0.56 0.07 ind:fut:1s; +remplaceraient remplacer ver 52.84 60.61 0.02 0.20 cnd:pre:3p; +remplacerais remplacer ver 52.84 60.61 0.22 0.20 cnd:pre:1s;cnd:pre:2s; +remplacerait remplacer ver 52.84 60.61 0.20 1.22 cnd:pre:3s; +remplaceras remplacer ver 52.84 60.61 0.33 0.07 ind:fut:2s; +remplacerez remplacer ver 52.84 60.61 0.26 0.41 ind:fut:2p; +remplaceriez remplacer ver 52.84 60.61 0.01 0.00 cnd:pre:2p; +remplacerons remplacer ver 52.84 60.61 0.27 0.14 ind:fut:1p; +remplaceront remplacer ver 52.84 60.61 0.30 0.00 ind:fut:3p; +remplaces remplacer ver 52.84 60.61 0.84 0.14 ind:pre:2s; +remplacez remplacer ver 52.84 60.61 1.81 0.07 imp:pre:2p;ind:pre:2p; +remplaciez remplacer ver 52.84 60.61 0.30 0.00 ind:imp:2p; +remplacèrent remplacer ver 52.84 60.61 0.01 0.47 ind:pas:3p; +remplacé remplacer ver m s 52.84 60.61 6.47 11.96 par:pas; +remplacée remplacer ver f s 52.84 60.61 0.92 2.84 par:pas; +remplacées remplacer ver f p 52.84 60.61 0.54 1.42 par:pas; +remplacés remplacer ver m p 52.84 60.61 0.81 3.11 par:pas; +remplaça remplacer ver 52.84 60.61 0.07 1.82 ind:pas:3s; +remplaçable remplaçable adj s 0.41 0.20 0.28 0.07 +remplaçables remplaçable adj m p 0.41 0.20 0.13 0.14 +remplaçai remplacer ver 52.84 60.61 0.02 0.14 ind:pas:1s; +remplaçaient remplacer ver 52.84 60.61 0.05 2.43 ind:imp:3p; +remplaçais remplacer ver 52.84 60.61 0.06 0.47 ind:imp:1s;ind:imp:2s; +remplaçait remplacer ver 52.84 60.61 0.53 5.41 ind:imp:3s; +remplaçant remplaçant nom m s 7.92 2.03 5.20 1.28 +remplaçante remplaçant nom f s 7.92 2.03 1.72 0.47 +remplaçantes remplaçant nom f p 7.92 2.03 0.09 0.00 +remplaçants remplaçant nom m p 7.92 2.03 0.91 0.27 +remplaçons remplacer ver 52.84 60.61 0.10 0.07 imp:pre:1p;ind:pre:1p; +remplaçât remplacer ver 52.84 60.61 0.00 0.07 sub:imp:3s; +rempli remplir ver m s 61.21 81.42 16.17 16.82 par:pas; +remplie rempli adj f s 12.74 20.74 6.64 9.93 +remplies rempli adj f p 12.74 20.74 1.82 4.59 +remplir remplir ver 61.21 81.42 18.92 22.50 inf; +remplira remplir ver 61.21 81.42 1.00 0.74 ind:fut:3s; +remplirai remplir ver 61.21 81.42 0.90 0.27 ind:fut:1s; +rempliraient remplir ver 61.21 81.42 0.01 0.20 cnd:pre:3p; +remplirais remplir ver 61.21 81.42 0.24 0.00 cnd:pre:1s; +remplirait remplir ver 61.21 81.42 0.20 0.74 cnd:pre:3s; +rempliras remplir ver 61.21 81.42 0.16 0.00 ind:fut:2s; +remplirent remplir ver 61.21 81.42 0.25 1.69 ind:pas:3p; +remplirez remplir ver 61.21 81.42 0.17 0.00 ind:fut:2p; +remplirons remplir ver 61.21 81.42 0.28 0.07 ind:fut:1p; +rempliront remplir ver 61.21 81.42 0.21 0.14 ind:fut:3p; +remplis remplir ver m p 61.21 81.42 7.08 3.78 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +remplissage remplissage nom m s 0.37 0.27 0.37 0.27 +remplissaient remplir ver 61.21 81.42 0.07 3.45 ind:imp:3p; +remplissais remplir ver 61.21 81.42 0.28 0.61 ind:imp:1s;ind:imp:2s; +remplissait remplir ver 61.21 81.42 1.15 9.59 ind:imp:3s; +remplissant remplir ver 61.21 81.42 0.48 2.43 par:pre; +remplisse remplir ver 61.21 81.42 1.09 0.61 sub:pre:1s;sub:pre:3s; +remplissent remplir ver 61.21 81.42 2.17 2.50 ind:pre:3p; +remplisses remplir ver 61.21 81.42 0.17 0.20 sub:pre:2s; +remplisseur remplisseur nom m s 0.00 0.07 0.00 0.07 +remplissez remplir ver 61.21 81.42 4.65 0.41 imp:pre:2p;ind:pre:2p; +remplissiez remplir ver 61.21 81.42 0.17 0.00 ind:imp:2p; +remplissions remplir ver 61.21 81.42 0.01 0.07 ind:imp:1p; +remplissons remplir ver 61.21 81.42 0.18 0.14 imp:pre:1p;ind:pre:1p; +remplit remplir ver 61.21 81.42 5.20 14.26 ind:pre:3s;ind:pas:3s; +remploi remploi nom m s 0.00 0.20 0.00 0.20 +remployée remployer ver f s 0.00 0.07 0.00 0.07 par:pas; +remplumer remplumer ver 0.09 0.34 0.04 0.27 inf; +remplumez remplumer ver 0.09 0.34 0.02 0.00 imp:pre:2p;ind:pre:2p; +remplumé remplumer ver m s 0.09 0.34 0.03 0.07 par:pas; +rempochait rempocher ver 0.00 0.20 0.00 0.07 ind:imp:3s; +rempoche rempocher ver 0.00 0.20 0.00 0.14 ind:pre:1s;ind:pre:3s; +remporta remporter ver 9.27 10.61 0.27 0.27 ind:pas:3s; +remportai remporter ver 9.27 10.61 0.00 0.14 ind:pas:1s; +remportaient remporter ver 9.27 10.61 0.01 0.20 ind:imp:3p; +remportais remporter ver 9.27 10.61 0.00 0.07 ind:imp:2s; +remportait remporter ver 9.27 10.61 0.17 0.74 ind:imp:3s; +remportant remporter ver 9.27 10.61 0.07 0.41 par:pre; +remportassent remporter ver 9.27 10.61 0.00 0.07 sub:imp:3p; +remporte remporter ver 9.27 10.61 1.93 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remportent remporter ver 9.27 10.61 0.24 0.20 ind:pre:3p; +remporter remporter ver 9.27 10.61 3.06 2.09 inf; +remportera remporter ver 9.27 10.61 0.22 0.07 ind:fut:3s; +remporterai remporter ver 9.27 10.61 0.04 0.00 ind:fut:1s; +remporterait remporter ver 9.27 10.61 0.04 0.34 cnd:pre:3s; +remporterez remporter ver 9.27 10.61 0.02 0.00 ind:fut:2p; +remporterons remporter ver 9.27 10.61 0.10 0.00 ind:fut:1p; +remportez remporter ver 9.27 10.61 0.71 0.14 imp:pre:2p;ind:pre:2p; +remportiez remporter ver 9.27 10.61 0.01 0.00 ind:imp:2p; +remportions remporter ver 9.27 10.61 0.00 0.07 ind:imp:1p; +remportât remporter ver 9.27 10.61 0.00 0.07 sub:imp:3s; +remportèrent remporter ver 9.27 10.61 0.00 0.14 ind:pas:3p; +remporté remporter ver m s 9.27 10.61 2.11 2.84 par:pas; +remportée remporter ver f s 9.27 10.61 0.22 1.35 par:pas; +remportées remporter ver f p 9.27 10.61 0.01 0.07 par:pas; +remportés remporter ver m p 9.27 10.61 0.04 0.47 par:pas; +rempoter rempoter ver 0.01 0.00 0.01 0.00 inf; +remprunter remprunter ver 0.03 0.00 0.03 0.00 inf; +remède_miracle remède_miracle nom m s 0.01 0.00 0.01 0.00 +remède remède nom m s 16.14 13.45 14.09 10.07 +remèdes remède nom m p 16.14 13.45 2.05 3.38 +remua remuer ver 24.42 62.84 0.03 3.99 ind:pas:3s; +remuage remuage nom m s 0.01 0.00 0.01 0.00 +remuai remuer ver 24.42 62.84 0.02 0.27 ind:pas:1s; +remuaient remuer ver 24.42 62.84 0.08 3.78 ind:imp:3p; +remuais remuer ver 24.42 62.84 0.01 0.41 ind:imp:1s;ind:imp:2s; +remuait remuer ver 24.42 62.84 0.59 9.93 ind:imp:3s; +remuant remuer ver 24.42 62.84 0.42 5.81 par:pre; +remuante remuant adj f s 0.32 3.24 0.05 1.35 +remuantes remuant adj f p 0.32 3.24 0.00 0.41 +remuants remuant adj m p 0.32 3.24 0.01 0.27 +remédia remédier ver 3.80 3.18 0.01 0.07 ind:pas:3s; +remédiable remédiable adj m s 0.01 0.00 0.01 0.00 +remédiait remédier ver 3.80 3.18 0.01 0.07 ind:imp:3s; +remédie remédier ver 3.80 3.18 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remédier remédier ver 3.80 3.18 3.21 2.50 inf; +remédiera remédier ver 3.80 3.18 0.05 0.07 ind:fut:3s; +remédierait remédier ver 3.80 3.18 0.00 0.07 cnd:pre:3s; +remédierons remédier ver 3.80 3.18 0.10 0.00 ind:fut:1p; +remédiez remédier ver 3.80 3.18 0.04 0.00 imp:pre:2p;ind:pre:2p; +remédions remédier ver 3.80 3.18 0.10 0.00 ind:pre:1p; +remédié remédier ver m s 3.80 3.18 0.20 0.34 par:pas; +remue_ménage remue_ménage nom m 0.78 4.80 0.78 4.80 +remue_méninges remue_méninges nom m 0.05 0.07 0.05 0.07 +remue remuer ver 24.42 62.84 8.30 8.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remuement remuement nom m s 0.00 2.03 0.00 1.49 +remuements remuement nom m p 0.00 2.03 0.00 0.54 +remuent remuer ver 24.42 62.84 0.41 1.96 ind:pre:3p; +remuer remuer ver 24.42 62.84 6.38 15.34 inf; +remuera remuer ver 24.42 62.84 0.32 0.20 ind:fut:3s; +remuerai remuer ver 24.42 62.84 0.19 0.14 ind:fut:1s; +remueraient remuer ver 24.42 62.84 0.00 0.07 cnd:pre:3p; +remuerais remuer ver 24.42 62.84 0.02 0.14 cnd:pre:1s; +remuerait remuer ver 24.42 62.84 0.04 0.27 cnd:pre:3s; +remueront remuer ver 24.42 62.84 0.02 0.00 ind:fut:3p; +remues remuer ver 24.42 62.84 1.14 0.27 ind:pre:2s; +remueur remueur nom m s 0.04 0.14 0.04 0.00 +remueurs remueur nom m p 0.04 0.14 0.00 0.14 +remuez remuer ver 24.42 62.84 4.06 0.34 imp:pre:2p;ind:pre:2p; +remugle remugle nom m s 0.01 2.36 0.00 0.81 +remugles remugle nom m p 0.01 2.36 0.01 1.55 +remuions remuer ver 24.42 62.84 0.00 0.07 ind:imp:1p; +remémora remémorer ver 1.28 4.12 0.00 0.47 ind:pas:3s; +remémorais remémorer ver 1.28 4.12 0.03 0.27 ind:imp:1s; +remémorait remémorer ver 1.28 4.12 0.00 0.27 ind:imp:3s; +remémorant remémorer ver 1.28 4.12 0.02 0.34 par:pre; +remémoration remémoration nom f s 0.02 0.00 0.02 0.00 +remémorative remémoratif adj f s 0.00 0.07 0.00 0.07 +remémore remémorer ver 1.28 4.12 0.34 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remémorent remémorer ver 1.28 4.12 0.01 0.00 ind:pre:3p; +remémorer remémorer ver 1.28 4.12 0.74 1.55 inf; +remémoré remémorer ver m s 1.28 4.12 0.14 0.41 par:pas; +remuâmes remuer ver 24.42 62.84 0.00 0.07 ind:pas:1p; +remuons remuer ver 24.42 62.84 0.20 0.00 imp:pre:1p;ind:pre:1p; +remuât remuer ver 24.42 62.84 0.00 0.20 sub:imp:3s; +remuscle remuscler ver 0.17 0.00 0.01 0.00 imp:pre:2s; +remuscler remuscler ver 0.17 0.00 0.16 0.00 inf; +remuèrent remuer ver 24.42 62.84 0.00 1.15 ind:pas:3p; +remué remuer ver m s 24.42 62.84 1.68 5.47 par:pas; +remuée remuer ver f s 24.42 62.84 0.44 2.97 par:pas; +remuées remuer ver f p 24.42 62.84 0.01 0.81 par:pas; +remués remuer ver m p 24.42 62.84 0.06 0.95 par:pas; +renaît renaître ver 7.45 13.04 0.96 1.96 ind:pre:3s; +renaîtra renaître ver 7.45 13.04 0.44 0.74 ind:fut:3s; +renaîtrai renaître ver 7.45 13.04 0.01 0.00 ind:fut:1s; +renaîtraient renaître ver 7.45 13.04 0.00 0.07 cnd:pre:3p; +renaîtrais renaître ver 7.45 13.04 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +renaîtrait renaître ver 7.45 13.04 0.01 0.20 cnd:pre:3s; +renaîtras renaître ver 7.45 13.04 0.29 0.00 ind:fut:2s; +renaître renaître ver 7.45 13.04 3.07 4.86 inf; +renaîtrez renaître ver 7.45 13.04 0.04 0.00 ind:fut:2p; +renaîtrons renaître ver 7.45 13.04 0.03 0.00 ind:fut:1p; +renaîtront renaître ver 7.45 13.04 0.03 0.14 ind:fut:3p; +renais renaître ver 7.45 13.04 0.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +renaissaient renaître ver 7.45 13.04 0.00 0.41 ind:imp:3p; +renaissais renaître ver 7.45 13.04 0.16 0.00 ind:imp:1s; +renaissait renaître ver 7.45 13.04 0.00 1.15 ind:imp:3s; +renaissance renaissance nom f s 2.77 10.61 2.75 10.34 +renaissances renaissance nom f p 2.77 10.61 0.02 0.27 +renaissant renaître ver 7.45 13.04 0.04 0.68 par:pre; +renaissante renaissant adj f s 0.39 2.43 0.34 0.74 +renaissantes renaissant adj f p 0.39 2.43 0.00 0.88 +renaissants renaissant adj m p 0.39 2.43 0.00 0.27 +renaisse renaître ver 7.45 13.04 0.10 0.54 sub:pre:3s; +renaissent renaître ver 7.45 13.04 0.11 0.41 ind:pre:3p; +renaisses renaître ver 7.45 13.04 0.02 0.00 sub:pre:2s; +renaissons renaître ver 7.45 13.04 0.03 0.00 ind:pre:1p; +renaquit renaître ver 7.45 13.04 0.02 0.00 ind:pas:3s; +renard renard nom m s 6.66 11.96 4.69 8.58 +renarde renard nom f s 6.66 11.96 0.22 0.20 +renardeau renardeau nom m s 0.01 0.54 0.01 0.41 +renardeaux renardeau nom m p 0.01 0.54 0.00 0.14 +renardes renard nom f p 6.66 11.96 0.01 0.00 +renards renard nom m p 6.66 11.96 1.74 3.18 +renaud renaud nom s 0.00 0.68 0.00 0.68 +renaudais renauder ver 0.00 2.64 0.00 0.07 ind:imp:1s; +renaudait renauder ver 0.00 2.64 0.00 0.47 ind:imp:3s; +renaudant renauder ver 0.00 2.64 0.00 0.20 par:pre; +renaude renauder ver 0.00 2.64 0.00 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renaudent renauder ver 0.00 2.64 0.00 0.07 ind:pre:3p; +renauder renauder ver 0.00 2.64 0.00 1.08 inf; +renaudeur renaudeur nom m s 0.00 0.07 0.00 0.07 +renaudé renauder ver m s 0.00 2.64 0.00 0.14 par:pas; +rencard rencard nom m s 10.76 1.42 9.62 1.08 +rencardaient rencarder ver 1.07 2.30 0.00 0.14 ind:imp:3p; +rencardait rencarder ver 1.07 2.30 0.01 0.14 ind:imp:3s; +rencarde rencarder ver 1.07 2.30 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rencarder rencarder ver 1.07 2.30 0.17 0.68 inf; +rencards rencard nom m p 10.76 1.42 1.14 0.34 +rencardé rencarder ver m s 1.07 2.30 0.38 0.68 par:pas; +rencardée rencarder ver f s 1.07 2.30 0.04 0.07 par:pas; +rencardées rencarder ver f p 1.07 2.30 0.00 0.07 par:pas; +rencardés rencarder ver m p 1.07 2.30 0.12 0.27 par:pas; +renchéri renchérir ver m s 0.18 3.58 0.05 0.14 par:pas; +renchérir renchérir ver 0.18 3.58 0.06 0.68 inf; +renchériront renchérir ver 0.18 3.58 0.00 0.14 ind:fut:3p; +renchéris renchérir ver 0.18 3.58 0.05 0.14 ind:pre:1s;ind:pre:2s; +renchérissais renchérir ver 0.18 3.58 0.00 0.07 ind:imp:1s; +renchérissait renchérir ver 0.18 3.58 0.00 0.41 ind:imp:3s; +renchérissant renchérir ver 0.18 3.58 0.00 0.14 par:pre; +renchérissent renchérir ver 0.18 3.58 0.00 0.07 ind:pre:3p; +renchérit renchérir ver 0.18 3.58 0.02 1.82 ind:pre:3s;ind:pas:3s; +rencogna rencogner ver 0.00 1.49 0.00 0.34 ind:pas:3s; +rencognait rencogner ver 0.00 1.49 0.00 0.14 ind:imp:3s; +rencognant rencogner ver 0.00 1.49 0.00 0.07 par:pre; +rencogne rencogner ver 0.00 1.49 0.00 0.07 ind:pre:3s; +rencogner rencogner ver 0.00 1.49 0.00 0.27 inf; +rencognerait rencogner ver 0.00 1.49 0.00 0.07 cnd:pre:3s; +rencogné rencogner ver m s 0.00 1.49 0.00 0.47 par:pas; +rencognés rencogner ver m p 0.00 1.49 0.00 0.07 par:pas; +rencontra rencontrer ver 241.04 188.51 1.64 11.49 ind:pas:3s; +rencontrai rencontrer ver 241.04 188.51 0.25 4.73 ind:pas:1s; +rencontraient rencontrer ver 241.04 188.51 0.49 3.24 ind:imp:3p; +rencontrais rencontrer ver 241.04 188.51 1.12 4.05 ind:imp:1s;ind:imp:2s; +rencontrait rencontrer ver 241.04 188.51 1.11 11.08 ind:imp:3s; +rencontrant rencontrer ver 241.04 188.51 0.82 3.18 par:pre; +rencontrasse rencontrer ver 241.04 188.51 0.00 0.07 sub:imp:1s; +rencontre rencontre nom f s 35.68 81.76 30.61 63.24 +rencontrent rencontrer ver 241.04 188.51 2.76 3.92 ind:pre:3p; +rencontrer rencontrer ver 241.04 188.51 82.72 43.92 inf;; +rencontrera rencontrer ver 241.04 188.51 1.10 0.95 ind:fut:3s; +rencontrerai rencontrer ver 241.04 188.51 0.67 0.68 ind:fut:1s; +rencontreraient rencontrer ver 241.04 188.51 0.05 0.27 cnd:pre:3p; +rencontrerais rencontrer ver 241.04 188.51 0.97 0.47 cnd:pre:1s;cnd:pre:2s; +rencontrerait rencontrer ver 241.04 188.51 0.48 1.69 cnd:pre:3s; +rencontreras rencontrer ver 241.04 188.51 1.55 0.54 ind:fut:2s; +rencontrerez rencontrer ver 241.04 188.51 1.18 0.54 ind:fut:2p; +rencontreriez rencontrer ver 241.04 188.51 0.05 0.00 cnd:pre:2p; +rencontrerions rencontrer ver 241.04 188.51 0.04 0.34 cnd:pre:1p; +rencontrerons rencontrer ver 241.04 188.51 0.37 0.34 ind:fut:1p; +rencontreront rencontrer ver 241.04 188.51 0.22 0.34 ind:fut:3p; +rencontres rencontre nom f p 35.68 81.76 5.07 18.51 +rencontrez rencontrer ver 241.04 188.51 1.80 0.88 imp:pre:2p;ind:pre:2p; +rencontriez rencontrer ver 241.04 188.51 0.92 0.27 ind:imp:2p; +rencontrions rencontrer ver 241.04 188.51 0.23 0.95 ind:imp:1p; +rencontrâmes rencontrer ver 241.04 188.51 0.01 0.68 ind:pas:1p; +rencontrons rencontrer ver 241.04 188.51 1.21 1.42 imp:pre:1p;ind:pre:1p; +rencontrât rencontrer ver 241.04 188.51 0.00 0.47 sub:imp:3s; +rencontrèrent rencontrer ver 241.04 188.51 0.83 4.19 ind:pas:3p; +rencontré rencontrer ver m s 241.04 188.51 77.82 45.00 par:pas; +rencontrée rencontrer ver f s 241.04 188.51 12.09 7.23 par:pas; +rencontrées rencontrer ver f p 241.04 188.51 2.61 1.35 par:pas; +rencontrés rencontrer ver m p 241.04 188.51 18.45 10.27 par:pas; +rend rendre ver 508.81 468.11 82.91 40.00 ind:pre:3s; +rendîmes rendre ver 508.81 468.11 0.00 0.68 ind:pas:1p; +rendît rendre ver 508.81 468.11 0.00 2.43 sub:imp:3s; +rendaient rendre ver 508.81 468.11 1.40 14.59 ind:imp:3p; +rendais rendre ver 508.81 468.11 3.25 8.92 ind:imp:1s;ind:imp:2s; +rendait rendre ver 508.81 468.11 9.17 58.24 ind:imp:3s; +rendant rendre ver 508.81 468.11 1.96 9.80 par:pre; +rende rendre ver 508.81 468.11 9.30 5.54 sub:pre:1s;sub:pre:3s; +rendement rendement nom m s 1.37 2.97 1.34 2.84 +rendements rendement nom m p 1.37 2.97 0.02 0.14 +rendent rendre ver 508.81 468.11 13.16 9.73 ind:pre:3p;sub:pre:3p; +rendes rendre ver 508.81 468.11 2.06 0.61 sub:pre:2s; +rendez_vous rendez_vous nom m 91.95 53.72 91.95 53.72 +rendez rendre ver 508.81 468.11 46.77 14.19 imp:pre:2p;ind:pre:2p; +rendiez rendre ver 508.81 468.11 1.12 0.47 ind:imp:2p; +rendions rendre ver 508.81 468.11 0.10 1.35 ind:imp:1p;sub:pre:1p; +rendirent rendre ver 508.81 468.11 0.57 3.92 ind:pas:3p; +rendis rendre ver 508.81 468.11 0.37 9.39 ind:pas:1s; +rendisse rendre ver 508.81 468.11 0.00 0.14 sub:imp:1s; +rendissent rendre ver 508.81 468.11 0.00 0.20 sub:imp:3p; +rendit rendre ver 508.81 468.11 2.13 27.23 ind:pas:3s; +rendons rendre ver 508.81 468.11 4.93 0.95 imp:pre:1p;ind:pre:1p; +rendormît rendormir ver 5.36 8.31 0.00 0.07 sub:imp:3s; +rendormais rendormir ver 5.36 8.31 0.12 0.14 ind:imp:1s; +rendormait rendormir ver 5.36 8.31 0.01 0.20 ind:imp:3s; +rendormant rendormir ver 5.36 8.31 0.00 0.07 par:pre; +rendorme rendormir ver 5.36 8.31 0.02 0.00 sub:pre:3s; +rendorment rendormir ver 5.36 8.31 0.01 0.20 ind:pre:3p; +rendormez rendormir ver 5.36 8.31 0.34 0.00 imp:pre:2p;ind:pre:2p; +rendormi rendormir ver m s 5.36 8.31 0.64 0.81 par:pas; +rendormiez rendormir ver 5.36 8.31 0.00 0.07 ind:imp:2p; +rendormir rendormir ver 5.36 8.31 1.62 3.58 inf; +rendormira rendormir ver 5.36 8.31 0.14 0.14 ind:fut:3s; +rendormirai rendormir ver 5.36 8.31 0.22 0.00 ind:fut:1s; +rendormirait rendormir ver 5.36 8.31 0.00 0.07 cnd:pre:3s; +rendormis rendormir ver m p 5.36 8.31 0.01 0.54 ind:pas:1s;par:pas; +rendormit rendormir ver 5.36 8.31 0.00 1.82 ind:pas:3s; +rendors rendormir ver 5.36 8.31 2.04 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rendort rendormir ver 5.36 8.31 0.20 0.34 ind:pre:3s; +rendra rendre ver 508.81 468.11 13.01 3.78 ind:fut:3s; +rendrai rendre ver 508.81 468.11 10.69 2.50 ind:fut:1s; +rendraient rendre ver 508.81 468.11 0.59 0.27 cnd:pre:3p; +rendrais rendre ver 508.81 468.11 2.17 1.22 cnd:pre:1s;cnd:pre:2s; +rendrait rendre ver 508.81 468.11 6.09 5.95 cnd:pre:3s; +rendras rendre ver 508.81 468.11 2.54 1.42 ind:fut:2s; +rendre rendre ver 508.81 468.11 141.31 150.07 inf;;inf;;inf;;inf;; +rendrez rendre ver 508.81 468.11 2.68 1.08 ind:fut:2p; +rendriez rendre ver 508.81 468.11 0.85 0.14 cnd:pre:2p; +rendrons rendre ver 508.81 468.11 1.18 0.27 ind:fut:1p; +rendront rendre ver 508.81 468.11 2.16 1.08 ind:fut:3p; +rends rendre ver 508.81 468.11 84.13 27.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rendu rendre ver m s 508.81 468.11 48.31 46.08 par:pas; +rendue rendre ver f s 508.81 468.11 8.88 9.46 par:pas; +rendues rendre ver f p 508.81 468.11 1.01 1.82 par:pas; +rendus rendre ver m p 508.81 468.11 4.00 7.43 par:pas; +reneige reneiger ver 0.01 0.07 0.00 0.07 ind:pre:3s; +reneiger reneiger ver 0.01 0.07 0.01 0.00 inf; +renettoyer renettoyer ver 0.01 0.00 0.01 0.00 inf; +renferma renfermer ver 3.25 4.59 0.10 0.14 ind:pas:3s; +renfermaient renfermer ver 3.25 4.59 0.00 0.34 ind:imp:3p; +renfermait renfermer ver 3.25 4.59 0.17 0.88 ind:imp:3s; +renfermant renfermer ver 3.25 4.59 0.16 0.14 par:pre; +renferme renfermer ver 3.25 4.59 1.08 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renfermement renfermement nom m s 0.00 0.14 0.00 0.14 +renferment renfermer ver 3.25 4.59 0.23 0.34 ind:pre:3p; +renfermer renfermer ver 3.25 4.59 0.57 0.41 inf; +renfermerait renfermer ver 3.25 4.59 0.00 0.07 cnd:pre:3s; +renfermez renfermer ver 3.25 4.59 0.03 0.07 imp:pre:2p; +renfermé renfermé adj m s 1.42 1.01 1.22 0.74 +renfermée renfermé adj f s 1.42 1.01 0.19 0.20 +renfermées renfermé nom f p 0.48 2.03 0.01 0.00 +renfermés renfermer ver m p 3.25 4.59 0.05 0.07 par:pas; +renfila renfiler ver 0.10 0.88 0.00 0.07 ind:pas:3s; +renfilait renfiler ver 0.10 0.88 0.00 0.07 ind:imp:3s; +renfilant renfiler ver 0.10 0.88 0.00 0.07 par:pre; +renfile renfiler ver 0.10 0.88 0.10 0.20 imp:pre:2s;ind:pre:3s; +renfiler renfiler ver 0.10 0.88 0.00 0.14 inf; +renfilé renfiler ver m s 0.10 0.88 0.00 0.34 par:pas; +renflait renfler ver 0.00 1.15 0.00 0.14 ind:imp:3s; +renflant renfler ver 0.00 1.15 0.00 0.07 par:pre; +renflement renflement nom m s 0.17 1.49 0.17 1.22 +renflements renflement nom m p 0.17 1.49 0.00 0.27 +renflent renfler ver 0.00 1.15 0.00 0.07 ind:pre:3p; +renfloua renflouer ver 0.48 1.15 0.00 0.14 ind:pas:3s; +renflouage renflouage nom m s 0.01 0.14 0.01 0.14 +renflouait renflouer ver 0.48 1.15 0.00 0.07 ind:imp:3s; +renflouant renflouer ver 0.48 1.15 0.00 0.07 par:pre; +renfloue renflouer ver 0.48 1.15 0.17 0.00 ind:pre:1s;ind:pre:3s; +renflouement renflouement nom m s 0.01 0.07 0.01 0.07 +renflouent renflouer ver 0.48 1.15 0.02 0.00 ind:pre:3p; +renflouer renflouer ver 0.48 1.15 0.23 0.54 inf; +renfloué renflouer ver m s 0.48 1.15 0.03 0.14 par:pas; +renflouée renflouer ver f s 0.48 1.15 0.01 0.07 par:pas; +renfloués renflouer ver m p 0.48 1.15 0.02 0.14 par:pas; +renflé renflé adj m s 0.00 0.74 0.00 0.41 +renflée renfler ver f s 0.00 1.15 0.00 0.34 par:pas; +renflées renfler ver f p 0.00 1.15 0.00 0.07 par:pas; +renflés renfler ver m p 0.00 1.15 0.00 0.14 par:pas; +renfonce renfoncer ver 0.07 1.35 0.02 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renfoncement renfoncement nom m s 0.04 3.51 0.03 3.11 +renfoncements renfoncement nom m p 0.04 3.51 0.01 0.41 +renfoncer renfoncer ver 0.07 1.35 0.00 0.14 inf; +renfoncé renfoncer ver m s 0.07 1.35 0.02 0.54 par:pas; +renfoncée renfoncer ver f s 0.07 1.35 0.02 0.14 par:pas; +renfoncées renfoncer ver f p 0.07 1.35 0.01 0.00 par:pas; +renfoncés renfoncer ver m p 0.07 1.35 0.00 0.14 par:pas; +renfonça renfoncer ver 0.07 1.35 0.00 0.14 ind:pas:3s; +renfonçait renfoncer ver 0.07 1.35 0.00 0.07 ind:imp:3s; +renforce renforcer ver 10.34 17.84 2.05 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renforcement renforcement nom m s 0.19 0.74 0.16 0.74 +renforcements renforcement nom m p 0.19 0.74 0.03 0.00 +renforcent renforcer ver 10.34 17.84 0.51 0.74 ind:pre:3p; +renforcer renforcer ver 10.34 17.84 4.29 6.35 inf; +renforcera renforcer ver 10.34 17.84 0.35 0.14 ind:fut:3s; +renforcerai renforcer ver 10.34 17.84 0.04 0.00 ind:fut:1s; +renforceraient renforcer ver 10.34 17.84 0.01 0.07 cnd:pre:3p; +renforcerait renforcer ver 10.34 17.84 0.14 0.07 cnd:pre:3s; +renforcerez renforcer ver 10.34 17.84 0.15 0.00 ind:fut:2p; +renforcerons renforcer ver 10.34 17.84 0.01 0.07 ind:fut:1p; +renforcez renforcer ver 10.34 17.84 0.48 0.07 imp:pre:2p;ind:pre:2p; +renforciez renforcer ver 10.34 17.84 0.04 0.00 ind:imp:2p; +renforcèrent renforcer ver 10.34 17.84 0.00 0.20 ind:pas:3p; +renforcé renforcer ver m s 10.34 17.84 0.90 1.89 par:pas; +renforcée renforcer ver f s 10.34 17.84 0.76 2.09 par:pas; +renforcées renforcer ver f p 10.34 17.84 0.10 1.01 par:pas; +renforcés renforcer ver m p 10.34 17.84 0.26 0.34 par:pas; +renfort renfort nom m s 21.41 13.45 7.50 7.50 +renforça renforcer ver 10.34 17.84 0.01 0.47 ind:pas:3s; +renforçaient renforcer ver 10.34 17.84 0.00 0.47 ind:imp:3p; +renforçait renforcer ver 10.34 17.84 0.17 1.49 ind:imp:3s; +renforçant renforcer ver 10.34 17.84 0.03 0.61 par:pre; +renforçons renforcer ver 10.34 17.84 0.05 0.07 imp:pre:1p;ind:pre:1p; +renforçât renforcer ver 10.34 17.84 0.00 0.07 sub:imp:3s; +renforts renfort nom m p 21.41 13.45 13.91 5.95 +renfourché renfourcher ver m s 0.00 0.07 0.00 0.07 par:pas; +renfournait renfourner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +renfrogna renfrogner ver 0.27 2.57 0.01 0.74 ind:pas:3s; +renfrognait renfrogner ver 0.27 2.57 0.00 0.27 ind:imp:3s; +renfrognant renfrogner ver 0.27 2.57 0.00 0.07 par:pre; +renfrogne renfrogner ver 0.27 2.57 0.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renfrognement renfrognement nom m s 0.01 0.14 0.01 0.14 +renfrogner renfrogner ver 0.27 2.57 0.01 0.14 inf; +renfrognerait renfrogner ver 0.27 2.57 0.00 0.07 cnd:pre:3s; +renfrogné renfrogner ver m s 0.27 2.57 0.21 0.47 par:pas; +renfrognée renfrogné adj f s 0.30 2.36 0.16 0.54 +renfrognés renfrogner ver m p 0.27 2.57 0.02 0.07 par:pas; +rengageait rengager ver 0.12 0.61 0.00 0.07 ind:imp:3s; +rengagement rengagement nom m s 0.01 0.07 0.01 0.07 +rengager rengager ver 0.12 0.61 0.09 0.34 inf; +rengagerais rengager ver 0.12 0.61 0.01 0.00 cnd:pre:1s; +rengagez rengager ver 0.12 0.61 0.02 0.07 imp:pre:2p;ind:pre:2p; +rengagés rengager ver m p 0.12 0.61 0.00 0.14 par:pas; +rengaina rengainer ver 0.60 1.42 0.00 0.27 ind:pas:3s; +rengainait rengainer ver 0.60 1.42 0.00 0.07 ind:imp:3s; +rengainant rengainer ver 0.60 1.42 0.01 0.07 par:pre; +rengaine rengaine nom f s 1.48 4.59 1.41 3.31 +rengainer rengainer ver 0.60 1.42 0.05 0.20 inf; +rengaines rengaine nom f p 1.48 4.59 0.06 1.28 +rengainez rengainer ver 0.60 1.42 0.35 0.07 imp:pre:2p; +rengainèrent rengainer ver 0.60 1.42 0.00 0.07 ind:pas:3p; +rengainé rengainer ver m s 0.60 1.42 0.01 0.47 par:pas; +rengainés rengainer ver m p 0.60 1.42 0.01 0.00 par:pas; +rengorge rengorger ver 0.04 2.97 0.03 0.61 ind:pre:3s; +rengorgea rengorger ver 0.04 2.97 0.00 0.88 ind:pas:3s; +rengorgeai rengorger ver 0.04 2.97 0.00 0.07 ind:pas:1s; +rengorgeaient rengorger ver 0.04 2.97 0.00 0.07 ind:imp:3p; +rengorgeais rengorger ver 0.04 2.97 0.00 0.14 ind:imp:1s; +rengorgeait rengorger ver 0.04 2.97 0.00 0.27 ind:imp:3s; +rengorgeant rengorger ver 0.04 2.97 0.00 0.34 par:pre; +rengorgement rengorgement nom m s 0.00 0.14 0.00 0.07 +rengorgements rengorgement nom m p 0.00 0.14 0.00 0.07 +rengorgent rengorger ver 0.04 2.97 0.01 0.14 ind:pre:3p; +rengorger rengorger ver 0.04 2.97 0.00 0.27 inf; +rengorges rengorger ver 0.04 2.97 0.00 0.07 ind:pre:2s; +rengorgé rengorger ver m s 0.04 2.97 0.00 0.07 par:pas; +rengorgés rengorger ver m p 0.04 2.97 0.00 0.07 par:pas; +rengracie rengracier ver 0.00 0.20 0.00 0.14 ind:pre:3s; +rengracié rengracier ver m s 0.00 0.20 0.00 0.07 par:pas; +renia renier ver 6.88 13.85 0.20 0.20 ind:pas:3s; +reniai renier ver 6.88 13.85 0.00 0.20 ind:pas:1s; +reniaient renier ver 6.88 13.85 0.00 0.41 ind:imp:3p; +reniais renier ver 6.88 13.85 0.11 0.54 ind:imp:1s;ind:imp:2s; +reniait renier ver 6.88 13.85 0.01 0.95 ind:imp:3s; +reniant renier ver 6.88 13.85 0.18 0.61 par:pre; +renie renier ver 6.88 13.85 1.65 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reniement reniement nom m s 0.02 2.09 0.02 1.42 +reniements reniement nom m p 0.02 2.09 0.00 0.68 +renient renier ver 6.88 13.85 0.07 0.20 ind:pre:3p; +renier renier ver 6.88 13.85 1.93 4.80 inf; +renierai renier ver 6.88 13.85 0.33 0.14 ind:fut:1s; +renierais renier ver 6.88 13.85 0.02 0.07 cnd:pre:1s; +renierait renier ver 6.88 13.85 0.33 0.27 cnd:pre:3s; +renieras renier ver 6.88 13.85 0.28 0.00 ind:fut:2s; +renieront renier ver 6.88 13.85 0.10 0.00 ind:fut:3p; +renies renier ver 6.88 13.85 0.25 0.27 ind:pre:2s; +reniez renier ver 6.88 13.85 0.03 0.14 imp:pre:2p;ind:pre:2p; +renifla renifler ver 5.56 24.39 0.00 3.31 ind:pas:3s; +reniflage reniflage nom m s 0.05 0.00 0.05 0.00 +reniflai renifler ver 5.56 24.39 0.00 0.20 ind:pas:1s; +reniflaient renifler ver 5.56 24.39 0.00 0.88 ind:imp:3p; +reniflais renifler ver 5.56 24.39 0.04 0.34 ind:imp:1s;ind:imp:2s; +reniflait renifler ver 5.56 24.39 0.07 3.58 ind:imp:3s; +reniflant renifler ver 5.56 24.39 0.05 3.38 par:pre; +renifle renifler ver 5.56 24.39 2.67 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reniflement reniflement nom m s 0.04 1.28 0.01 0.47 +reniflements reniflement nom m p 0.04 1.28 0.02 0.81 +reniflent renifler ver 5.56 24.39 0.11 0.68 ind:pre:3p; +renifler renifler ver 5.56 24.39 1.64 5.20 inf; +reniflera renifler ver 5.56 24.39 0.02 0.00 ind:fut:3s; +reniflerait renifler ver 5.56 24.39 0.01 0.07 cnd:pre:3s; +renifleries reniflerie nom f p 0.00 0.14 0.00 0.14 +reniflette reniflette nom f s 0.00 0.07 0.00 0.07 +renifleur renifleur nom m s 0.25 0.14 0.20 0.07 +renifleurs renifleur nom m p 0.25 0.14 0.05 0.07 +renifleuse renifleur adj f s 0.12 0.07 0.01 0.00 +reniflez renifler ver 5.56 24.39 0.17 0.27 imp:pre:2p;ind:pre:2p; +reniflé renifler ver m s 5.56 24.39 0.63 1.69 par:pas; +reniflée renifler ver f s 5.56 24.39 0.15 0.41 par:pas; +reniflées renifler ver f p 5.56 24.39 0.01 0.00 par:pas; +renions renier ver 6.88 13.85 0.03 0.00 imp:pre:1p;ind:pre:1p; +renièrent renier ver 6.88 13.85 0.00 0.07 ind:pas:3p; +renié renier ver m s 6.88 13.85 1.01 1.76 par:pas; +reniée renier ver f s 6.88 13.85 0.30 0.81 par:pas; +reniées renier ver f p 6.88 13.85 0.00 0.14 par:pas; +reniés renier ver m p 6.88 13.85 0.03 0.14 par:pas; +rennais rennais adj m 0.00 0.20 0.00 0.07 +rennaises rennais adj f p 0.00 0.20 0.00 0.14 +renne renne nom m s 1.79 1.15 0.81 0.47 +rennes renne nom m p 1.79 1.15 0.98 0.68 +renâcla renâcler ver 0.09 2.36 0.00 0.07 ind:pas:3s; +renâclaient renâcler ver 0.09 2.36 0.00 0.07 ind:imp:3p; +renâclais renâcler ver 0.09 2.36 0.00 0.20 ind:imp:1s; +renâclait renâcler ver 0.09 2.36 0.01 0.20 ind:imp:3s; +renâclant renâcler ver 0.09 2.36 0.00 0.54 par:pre; +renâcle renâcler ver 0.09 2.36 0.06 0.34 ind:pre:1s;ind:pre:3s; +renâclent renâcler ver 0.09 2.36 0.00 0.07 ind:pre:3p; +renâcler renâcler ver 0.09 2.36 0.01 0.54 inf; +renâcles renâcler ver 0.09 2.36 0.00 0.07 ind:pre:2s; +renâclez renâcler ver 0.09 2.36 0.01 0.00 ind:pre:2p; +renâclions renâcler ver 0.09 2.36 0.00 0.07 ind:imp:1p; +renâclé renâcler ver m s 0.09 2.36 0.00 0.20 par:pas; +renom renom nom m s 1.15 2.43 1.15 2.43 +renommait renommer ver 0.77 1.22 0.00 0.07 ind:imp:3s; +renommer renommer ver 0.77 1.22 0.22 0.00 inf; +renommera renommer ver 0.77 1.22 0.01 0.00 ind:fut:3s; +renommez renommer ver 0.77 1.22 0.00 0.27 imp:pre:2p;ind:pre:2p; +renommé renommé adj m s 0.97 1.08 0.45 0.47 +renommée renommée nom f s 1.89 3.11 1.89 3.11 +renommées renommé adj f p 0.97 1.08 0.01 0.07 +renommés renommé adj m p 0.97 1.08 0.15 0.27 +renonce renoncer ver 41.65 64.46 9.28 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renoncement renoncement nom m s 0.70 6.82 0.69 5.95 +renoncements renoncement nom m p 0.70 6.82 0.02 0.88 +renoncent renoncer ver 41.65 64.46 0.75 1.28 ind:pre:3p; +renoncer renoncer ver 41.65 64.46 15.23 21.55 inf; +renoncera renoncer ver 41.65 64.46 0.50 0.27 ind:fut:3s; +renoncerai renoncer ver 41.65 64.46 1.06 0.27 ind:fut:1s; +renonceraient renoncer ver 41.65 64.46 0.01 0.00 cnd:pre:3p; +renoncerais renoncer ver 41.65 64.46 0.99 0.34 cnd:pre:1s;cnd:pre:2s; +renoncerait renoncer ver 41.65 64.46 0.14 0.34 cnd:pre:3s; +renonceras renoncer ver 41.65 64.46 0.06 0.00 ind:fut:2s; +renoncerez renoncer ver 41.65 64.46 0.07 0.07 ind:fut:2p; +renonceriez renoncer ver 41.65 64.46 0.05 0.00 cnd:pre:2p; +renoncerions renoncer ver 41.65 64.46 0.14 0.00 cnd:pre:1p; +renoncerons renoncer ver 41.65 64.46 0.16 0.00 ind:fut:1p; +renonceront renoncer ver 41.65 64.46 0.19 0.07 ind:fut:3p; +renonces renoncer ver 41.65 64.46 1.50 0.07 ind:pre:2s;sub:pre:2s; +renoncez renoncer ver 41.65 64.46 2.91 0.68 imp:pre:2p;ind:pre:2p; +renonciateur renonciateur nom m s 0.00 0.07 0.00 0.07 +renonciation renonciation nom f s 0.38 0.41 0.35 0.34 +renonciations renonciation nom f p 0.38 0.41 0.03 0.07 +renonciez renoncer ver 41.65 64.46 0.23 0.14 ind:imp:2p; +renoncions renoncer ver 41.65 64.46 0.04 0.47 ind:imp:1p; +renoncèrent renoncer ver 41.65 64.46 0.03 0.47 ind:pas:3p; +renoncé renoncer ver m s 41.65 64.46 6.43 17.30 par:pas; +renoncée renoncer ver f s 41.65 64.46 0.00 0.07 par:pas; +renonculacées renonculacée nom f p 0.01 0.00 0.01 0.00 +renoncule renoncule nom f s 0.07 0.54 0.01 0.07 +renoncules renoncule nom f p 0.07 0.54 0.05 0.47 +renonça renoncer ver 41.65 64.46 0.16 4.19 ind:pas:3s; +renonçai renoncer ver 41.65 64.46 0.14 1.69 ind:pas:1s; +renonçaient renoncer ver 41.65 64.46 0.00 0.68 ind:imp:3p; +renonçais renoncer ver 41.65 64.46 0.20 0.54 ind:imp:1s; +renonçait renoncer ver 41.65 64.46 0.18 3.18 ind:imp:3s; +renonçant renoncer ver 41.65 64.46 0.71 4.46 par:pre; +renonçons renoncer ver 41.65 64.46 0.47 0.47 imp:pre:1p;ind:pre:1p; +renonçât renoncer ver 41.65 64.46 0.01 0.27 sub:imp:3s; +renoter renoter ver 0.01 0.00 0.01 0.00 inf; +renoua renouer ver 1.56 7.91 0.00 0.27 ind:pas:3s; +renouai renouer ver 1.56 7.91 0.00 0.20 ind:pas:1s; +renouaient renouer ver 1.56 7.91 0.00 0.20 ind:imp:3p; +renouais renouer ver 1.56 7.91 0.01 0.07 ind:imp:1s; +renouait renouer ver 1.56 7.91 0.01 0.81 ind:imp:3s; +renouant renouer ver 1.56 7.91 0.01 0.47 par:pre; +renoue renouer ver 1.56 7.91 0.40 0.81 ind:pre:1s;ind:pre:3s; +renouent renouer ver 1.56 7.91 0.10 0.07 ind:pre:3p; +renouer renouer ver 1.56 7.91 0.70 3.18 inf; +renouerait renouer ver 1.56 7.91 0.00 0.07 cnd:pre:3s; +renoueront renouer ver 1.56 7.91 0.00 0.14 ind:fut:3p; +renouons renouer ver 1.56 7.91 0.01 0.14 imp:pre:1p;ind:pre:1p; +renouèrent renouer ver 1.56 7.91 0.00 0.14 ind:pas:3p; +renoué renouer ver m s 1.56 7.91 0.32 1.08 par:pas; +renouée renouée nom f s 0.00 0.34 0.00 0.34 +renoués renouer ver m p 1.56 7.91 0.00 0.07 par:pas; +renouveau renouveau nom m s 1.38 3.85 1.38 3.72 +renouveaux renouveau nom m p 1.38 3.85 0.00 0.14 +renouvela renouveler ver 4.71 19.39 0.12 0.61 ind:pas:3s; +renouvelable renouvelable adj s 0.09 0.07 0.09 0.07 +renouvelai renouveler ver 4.71 19.39 0.00 0.34 ind:pas:1s; +renouvelaient renouveler ver 4.71 19.39 0.00 0.20 ind:imp:3p; +renouvelais renouveler ver 4.71 19.39 0.00 0.14 ind:imp:1s; +renouvelait renouveler ver 4.71 19.39 0.02 1.62 ind:imp:3s; +renouvelant renouveler ver 4.71 19.39 0.00 0.68 par:pre; +renouveler renouveler ver 4.71 19.39 1.98 5.81 inf; +renouvelez renouveler ver 4.71 19.39 0.08 0.00 imp:pre:2p;ind:pre:2p; +renouvelions renouveler ver 4.71 19.39 0.00 0.07 ind:imp:1p; +renouvelle renouveler ver 4.71 19.39 1.06 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renouvellement renouvellement nom m s 0.94 2.43 0.89 2.30 +renouvellements renouvellement nom m p 0.94 2.43 0.05 0.14 +renouvellent renouveler ver 4.71 19.39 0.34 0.27 ind:pre:3p; +renouvellera renouveler ver 4.71 19.39 0.10 0.14 ind:fut:3s; +renouvellerai renouveler ver 4.71 19.39 0.01 0.07 ind:fut:1s; +renouvellerait renouveler ver 4.71 19.39 0.00 0.41 cnd:pre:3s; +renouvellerons renouveler ver 4.71 19.39 0.01 0.00 ind:fut:1p; +renouvelleront renouveler ver 4.71 19.39 0.04 0.07 ind:fut:3p; +renouvelles renouveler ver 4.71 19.39 0.03 0.00 ind:pre:2s; +renouvelâmes renouveler ver 4.71 19.39 0.00 0.07 ind:pas:1p; +renouvelons renouveler ver 4.71 19.39 0.04 0.07 imp:pre:1p;ind:pre:1p; +renouvelât renouveler ver 4.71 19.39 0.00 0.14 sub:imp:3s; +renouvelèrent renouveler ver 4.71 19.39 0.00 0.07 ind:pas:3p; +renouvelé renouveler ver m s 4.71 19.39 0.52 2.70 par:pas; +renouvelée renouveler ver f s 4.71 19.39 0.15 2.36 par:pas; +renouvelées renouveler ver f p 4.71 19.39 0.03 1.15 par:pas; +renouvelés renouveler ver m p 4.71 19.39 0.18 0.81 par:pas; +renquillait renquiller ver 0.00 0.34 0.00 0.07 ind:imp:3s; +renquille renquiller ver 0.00 0.34 0.00 0.07 ind:pre:3s; +renquillé renquiller ver m s 0.00 0.34 0.00 0.20 par:pas; +renseigna renseigner ver 20.46 24.26 0.00 1.01 ind:pas:3s; +renseignai renseigner ver 20.46 24.26 0.00 0.20 ind:pas:1s; +renseignaient renseigner ver 20.46 24.26 0.00 0.34 ind:imp:3p; +renseignais renseigner ver 20.46 24.26 0.26 0.00 ind:imp:1s;ind:imp:2s; +renseignait renseigner ver 20.46 24.26 0.08 1.01 ind:imp:3s; +renseignant renseigner ver 20.46 24.26 0.02 0.14 par:pre; +renseigne renseigner ver 20.46 24.26 3.44 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renseignement renseignement nom m s 18.98 22.91 5.07 5.68 +renseignements renseignement nom m p 18.98 22.91 13.91 17.23 +renseignent renseigner ver 20.46 24.26 0.14 0.47 ind:pre:3p; +renseigner renseigner ver 20.46 24.26 9.07 7.03 inf; +renseignera renseigner ver 20.46 24.26 0.59 0.27 ind:fut:3s; +renseignerai renseigner ver 20.46 24.26 0.19 0.20 ind:fut:1s; +renseigneraient renseigner ver 20.46 24.26 0.01 0.14 cnd:pre:3p; +renseignerais renseigner ver 20.46 24.26 0.22 0.00 cnd:pre:1s;cnd:pre:2s; +renseignerait renseigner ver 20.46 24.26 0.17 0.27 cnd:pre:3s; +renseigneras renseigner ver 20.46 24.26 0.01 0.07 ind:fut:2s; +renseigneriez renseigner ver 20.46 24.26 0.02 0.00 cnd:pre:2p; +renseignerons renseigner ver 20.46 24.26 0.16 0.00 ind:fut:1p; +renseigneront renseigner ver 20.46 24.26 0.00 0.20 ind:fut:3p; +renseignez renseigner ver 20.46 24.26 0.86 0.34 imp:pre:2p;ind:pre:2p; +renseignât renseigner ver 20.46 24.26 0.00 0.07 sub:imp:3s; +renseignèrent renseigner ver 20.46 24.26 0.00 0.07 ind:pas:3p; +renseigné renseigner ver m s 20.46 24.26 3.04 5.81 par:pas; +renseignée renseigner ver f s 20.46 24.26 1.23 1.62 par:pas; +renseignées renseigner ver f p 20.46 24.26 0.03 0.14 par:pas; +renseignés renseigner ver m p 20.46 24.26 0.93 2.16 par:pas; +renta renter ver 0.47 0.00 0.11 0.00 ind:pas:3s; +rentabilisation rentabilisation nom f s 0.00 0.07 0.00 0.07 +rentabilise rentabiliser ver 0.47 0.14 0.07 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rentabiliser rentabiliser ver 0.47 0.14 0.37 0.07 inf; +rentabilisé rentabiliser ver m s 0.47 0.14 0.04 0.00 par:pas; +rentabilisée rentabiliser ver f s 0.47 0.14 0.00 0.07 par:pas; +rentabilité rentabilité nom f s 0.27 0.61 0.27 0.61 +rentable rentable adj s 2.58 1.69 2.21 1.42 +rentables rentable adj p 2.58 1.69 0.36 0.27 +rentamer rentamer ver 0.01 0.00 0.01 0.00 inf; +rente rente nom f s 1.61 3.78 1.17 1.96 +renter renter ver 0.47 0.00 0.34 0.00 inf; +rentes rente nom f p 1.61 3.78 0.44 1.82 +rentier rentier nom m s 0.17 3.11 0.12 1.08 +rentiers rentier nom m p 0.17 3.11 0.05 1.42 +rentière rentier nom f s 0.17 3.11 0.00 0.47 +rentières rentier nom f p 0.17 3.11 0.00 0.14 +rentoilages rentoilage nom m p 0.00 0.07 0.00 0.07 +rentoilée rentoiler ver f s 0.00 0.07 0.00 0.07 par:pas; +rentra rentrer ver 532.51 279.93 1.11 18.51 ind:pas:3s; +rentrai rentrer ver 532.51 279.93 0.39 5.20 ind:pas:1s; +rentraient rentrer ver 532.51 279.93 1.29 6.49 ind:imp:3p;ind:pre:3p; +rentrais rentrer ver 532.51 279.93 5.36 5.95 ind:imp:1s;ind:imp:2s;ind:pre:2s; +rentrait rentrer ver 532.51 279.93 6.21 17.57 ind:imp:3s;ind:pre:3s; +rentrant rentrer ver 532.51 279.93 9.50 21.49 par:pre; +rentrante rentrant adj f s 0.04 1.01 0.01 0.00 +rentrantes rentrant adj f p 0.04 1.01 0.00 0.20 +rentrants rentrant adj m p 0.04 1.01 0.00 0.07 +rentre_dedans rentre_dedans nom m 0.47 0.07 0.47 0.07 +rentre rentrer ver 532.51 279.93 151.42 41.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rentrent rentrer ver 532.51 279.93 6.04 5.07 ind:pre:3p; +rentrer rentrer ver 532.51 279.93 166.36 77.23 inf; +rentrera rentrer ver 532.51 279.93 9.64 2.70 ind:fut:3s; +rentrerai rentrer ver 532.51 279.93 9.91 2.23 ind:fut:1s; +rentreraient rentrer ver 532.51 279.93 0.07 0.88 cnd:pre:3p; +rentrerais rentrer ver 532.51 279.93 1.09 0.74 cnd:pre:1s;cnd:pre:2s; +rentrerait rentrer ver 532.51 279.93 1.45 3.24 cnd:pre:3s; +rentreras rentrer ver 532.51 279.93 3.16 0.74 ind:fut:2s; +rentrerez rentrer ver 532.51 279.93 1.12 0.34 ind:fut:2p; +rentreriez rentrer ver 532.51 279.93 0.23 0.07 cnd:pre:2p; +rentrerions rentrer ver 532.51 279.93 0.07 0.41 cnd:pre:1p; +rentrerons rentrer ver 532.51 279.93 1.05 0.74 ind:fut:1p; +rentreront rentrer ver 532.51 279.93 0.98 0.68 ind:fut:3p; +rentres rentrer ver 532.51 279.93 24.90 2.36 ind:pre:2s;sub:pre:2s; +rentrez rentrer ver 532.51 279.93 31.60 2.57 imp:pre:2p;ind:pre:2p; +rentriez rentrer ver 532.51 279.93 0.61 0.68 ind:imp:2p;sub:pre:2p; +rentrions rentrer ver 532.51 279.93 0.48 2.36 ind:imp:1p; +rentrâmes rentrer ver 532.51 279.93 0.01 1.01 ind:pas:1p; +rentrons rentrer ver 532.51 279.93 19.04 5.54 imp:pre:1p;ind:pre:1p; +rentrât rentrer ver 532.51 279.93 0.00 0.47 sub:imp:3s; +rentrèrent rentrer ver 532.51 279.93 0.09 2.36 ind:pas:3p; +rentré rentrer ver m s 532.51 279.93 44.27 24.05 par:pas; +rentrée rentrer ver f s 532.51 279.93 25.00 14.66 par:pas; +rentrées rentrer ver f p 532.51 279.93 0.78 3.11 par:pas; +rentrés rentrer ver m p 532.51 279.93 9.29 8.72 par:pas; +rentée renter ver f s 0.47 0.00 0.02 0.00 par:pas; +rené renaître ver m s 7.45 13.04 1.46 1.42 par:pas; +renée renaître ver f s 7.45 13.04 0.25 0.14 par:pas; +renégat renégat nom m s 1.60 1.96 0.89 1.15 +renégate renégat nom f s 1.60 1.96 0.15 0.14 +renégats renégat nom m p 1.60 1.96 0.56 0.68 +renégociation renégociation nom f s 0.05 0.00 0.05 0.00 +renégocie renégocier ver 0.36 0.00 0.03 0.00 ind:pre:1s;ind:pre:3s; +renégocier renégocier ver 0.36 0.00 0.30 0.00 inf; +renégociées renégocier ver f p 0.36 0.00 0.01 0.00 par:pas; +renégociés renégocier ver m p 0.36 0.00 0.02 0.00 par:pas; +renverra renvoyer ver 59.22 42.70 1.40 0.14 ind:fut:3s; +renverrai renvoyer ver 59.22 42.70 0.98 0.14 ind:fut:1s; +renverraient renvoyer ver 59.22 42.70 0.10 0.07 cnd:pre:3p; +renverrais renvoyer ver 59.22 42.70 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +renverrait renvoyer ver 59.22 42.70 0.27 0.20 cnd:pre:3s; +renverras renvoyer ver 59.22 42.70 0.16 0.00 ind:fut:2s; +renverrez renvoyer ver 59.22 42.70 0.09 0.00 ind:fut:2p; +renverrions renvoyer ver 59.22 42.70 0.01 0.07 cnd:pre:1p; +renverrons renvoyer ver 59.22 42.70 0.12 0.07 ind:fut:1p; +renverront renvoyer ver 59.22 42.70 0.54 0.07 ind:fut:3p; +renversa renverser ver 24.02 39.46 0.27 5.34 ind:pas:3s; +renversai renverser ver 24.02 39.46 0.01 0.07 ind:pas:1s; +renversaient renverser ver 24.02 39.46 0.02 1.01 ind:imp:3p; +renversais renverser ver 24.02 39.46 0.02 0.07 ind:imp:1s; +renversait renverser ver 24.02 39.46 0.12 2.97 ind:imp:3s; +renversant renversant adj m s 1.31 0.95 0.87 0.68 +renversante renversant adj f s 1.31 0.95 0.40 0.07 +renversantes renversant adj f p 1.31 0.95 0.04 0.20 +renverse renverser ver 24.02 39.46 1.93 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renversement renversement nom m s 0.27 2.23 0.25 1.96 +renversements renversement nom m p 0.27 2.23 0.03 0.27 +renversent renverser ver 24.02 39.46 0.10 0.54 ind:pre:3p; +renverser renverser ver 24.02 39.46 7.00 7.64 inf; +renversera renverser ver 24.02 39.46 0.15 0.00 ind:fut:3s; +renverserai renverser ver 24.02 39.46 0.16 0.00 ind:fut:1s; +renverserais renverser ver 24.02 39.46 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +renverserait renverser ver 24.02 39.46 0.07 0.41 cnd:pre:3s; +renverseras renverser ver 24.02 39.46 0.02 0.00 ind:fut:2s; +renverseront renverser ver 24.02 39.46 0.01 0.14 ind:fut:3p; +renverses renverser ver 24.02 39.46 0.48 0.20 ind:pre:2s; +renverseur renverseur nom m s 0.00 0.07 0.00 0.07 +renversez renverser ver 24.02 39.46 0.35 0.07 imp:pre:2p;ind:pre:2p; +renversons renverser ver 24.02 39.46 0.04 0.07 imp:pre:1p;ind:pre:1p; +renversât renverser ver 24.02 39.46 0.00 0.07 sub:imp:3s; +renversèrent renverser ver 24.02 39.46 0.01 0.20 ind:pas:3p; +renversé renverser ver m s 24.02 39.46 10.41 6.62 par:pas; +renversée renverser ver f s 24.02 39.46 2.04 4.26 par:pas; +renversées renversé adj f p 1.33 10.47 0.08 1.69 +renversés renverser ver m p 24.02 39.46 0.50 1.42 par:pas; +renvoi renvoi nom m s 3.50 4.80 3.19 3.38 +renvoie renvoyer ver 59.22 42.70 11.56 6.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +renvoient renvoyer ver 59.22 42.70 1.62 1.89 ind:pre:3p; +renvoies renvoyer ver 59.22 42.70 0.67 0.14 ind:pre:2s; +renvois renvoi nom m p 3.50 4.80 0.31 1.42 +renvoya renvoyer ver 59.22 42.70 0.17 3.58 ind:pas:3s; +renvoyai renvoyer ver 59.22 42.70 0.01 0.14 ind:pas:1s; +renvoyaient renvoyer ver 59.22 42.70 0.07 1.69 ind:imp:3p; +renvoyais renvoyer ver 59.22 42.70 0.12 0.20 ind:imp:1s;ind:imp:2s; +renvoyait renvoyer ver 59.22 42.70 0.53 5.61 ind:imp:3s; +renvoyant renvoyer ver 59.22 42.70 0.09 1.28 par:pre; +renvoyer renvoyer ver 59.22 42.70 16.45 8.45 inf; +renvoyez renvoyer ver 59.22 42.70 5.48 0.20 imp:pre:2p;ind:pre:2p; +renvoyiez renvoyer ver 59.22 42.70 0.05 0.00 ind:imp:2p;sub:pre:2p; +renvoyions renvoyer ver 59.22 42.70 0.02 0.00 ind:imp:1p; +renvoyons renvoyer ver 59.22 42.70 0.22 0.00 imp:pre:1p;ind:pre:1p; +renvoyât renvoyer ver 59.22 42.70 0.00 0.20 sub:imp:3s; +renvoyèrent renvoyer ver 59.22 42.70 0.02 0.54 ind:pas:3p; +renvoyé renvoyer ver m s 59.22 42.70 11.06 7.36 par:pas; +renvoyée renvoyer ver f s 59.22 42.70 4.71 1.96 par:pas; +renvoyées renvoyer ver f p 59.22 42.70 0.50 0.81 par:pas; +renvoyés renvoyer ver m p 59.22 42.70 2.04 1.69 par:pas; +rep rep nom m s 0.00 0.07 0.00 0.07 +repaît repaître ver 0.48 2.57 0.12 0.07 ind:pre:3s; +repaître repaître ver 0.48 2.57 0.20 1.42 inf; +repaie repayer ver 0.23 0.41 0.01 0.07 ind:pre:3s; +repaies repayer ver 0.23 0.41 0.01 0.00 ind:pre:2s; +repaire repaire nom m s 3.19 3.31 3.02 2.43 +repaires repaire nom m p 3.19 3.31 0.17 0.88 +repais repaître ver 0.48 2.57 0.01 0.41 imp:pre:2s;ind:pre:1s; +repaissaient repaître ver 0.48 2.57 0.01 0.07 ind:imp:3p; +repaissais repaître ver 0.48 2.57 0.00 0.07 ind:imp:1s; +repaissait repaître ver 0.48 2.57 0.00 0.47 ind:imp:3s; +repaissant repaître ver 0.48 2.57 0.01 0.00 par:pre; +repaissent repaître ver 0.48 2.57 0.14 0.07 ind:pre:3p; +reparût reparaître ver 0.80 15.68 0.00 0.20 sub:imp:3s; +reparaît reparaître ver 0.80 15.68 0.16 2.23 ind:pre:3s; +reparaîtra reparaître ver 0.80 15.68 0.01 0.27 ind:fut:3s; +reparaîtrait reparaître ver 0.80 15.68 0.00 0.07 cnd:pre:3s; +reparaître reparaître ver 0.80 15.68 0.06 3.38 inf; +reparais reparaître ver 0.80 15.68 0.14 0.00 ind:pre:2s; +reparaissaient reparaître ver 0.80 15.68 0.01 0.74 ind:imp:3p; +reparaissait reparaître ver 0.80 15.68 0.00 1.28 ind:imp:3s; +reparaissant reparaître ver 0.80 15.68 0.00 0.41 par:pre; +reparaisse reparaître ver 0.80 15.68 0.01 0.41 sub:pre:3s; +reparaissent reparaître ver 0.80 15.68 0.00 0.34 ind:pre:3p; +reparaissez reparaître ver 0.80 15.68 0.00 0.07 ind:pre:2p; +reparaissons reparaître ver 0.80 15.68 0.00 0.07 ind:pre:1p; +reparcourant reparcourir ver 0.14 0.34 0.00 0.20 par:pre; +reparcourir reparcourir ver 0.14 0.34 0.13 0.07 inf; +reparcouru reparcourir ver m s 0.14 0.34 0.01 0.07 par:pas; +reparla reparler ver 19.93 8.65 0.03 0.95 ind:pas:3s; +reparlaient reparler ver 19.93 8.65 0.00 0.14 ind:imp:3p; +reparlais reparler ver 19.93 8.65 0.04 0.07 ind:imp:1s;ind:imp:2s; +reparlait reparler ver 19.93 8.65 0.09 0.20 ind:imp:3s; +reparlant reparler ver 19.93 8.65 0.00 0.07 par:pre; +reparle reparler ver 19.93 8.65 3.02 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reparlent reparler ver 19.93 8.65 0.03 0.07 ind:pre:3p; +reparler reparler ver 19.93 8.65 2.88 1.28 inf; +reparlera reparler ver 19.93 8.65 8.40 0.88 ind:fut:3s; +reparlerai reparler ver 19.93 8.65 0.33 0.41 ind:fut:1s; +reparlerez reparler ver 19.93 8.65 0.01 0.00 ind:fut:2p; +reparlerions reparler ver 19.93 8.65 0.03 0.07 cnd:pre:1p; +reparlerons reparler ver 19.93 8.65 2.58 1.96 ind:fut:1p; +reparles reparler ver 19.93 8.65 0.45 0.07 ind:pre:2s; +reparlez reparler ver 19.93 8.65 0.12 0.07 imp:pre:2p;ind:pre:2p; +reparliez reparler ver 19.93 8.65 0.03 0.07 ind:imp:2p; +reparlâmes reparler ver 19.93 8.65 0.00 0.20 ind:pas:1p; +reparlons reparler ver 19.93 8.65 0.56 0.14 imp:pre:1p;ind:pre:1p; +reparlé reparler ver m s 19.93 8.65 1.36 1.42 par:pas; +repars repartir ver 58.84 87.57 6.61 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repart repartir ver 58.84 87.57 8.08 8.11 ind:pre:3s; +repartîmes repartir ver 58.84 87.57 0.01 0.41 ind:pas:1p; +repartît repartir ver 58.84 87.57 0.01 0.20 sub:imp:3s; +repartaient repartir ver 58.84 87.57 0.16 2.57 ind:imp:3p; +repartais repartir ver 58.84 87.57 0.46 1.22 ind:imp:1s;ind:imp:2s; +repartait repartir ver 58.84 87.57 0.83 10.20 ind:imp:3s; +repartant repartir ver 58.84 87.57 0.16 1.62 par:pre; +reparte repartir ver 58.84 87.57 1.09 0.81 sub:pre:1s;sub:pre:3s; +repartent repartir ver 58.84 87.57 1.53 1.89 ind:pre:3p; +repartes repartir ver 58.84 87.57 0.24 0.20 sub:pre:2s; +repartez repartir ver 58.84 87.57 1.58 0.68 imp:pre:2p;ind:pre:2p; +reparti repartir ver m s 58.84 87.57 9.19 9.05 par:pas; +repartie repartir ver f s 58.84 87.57 2.54 3.72 par:pas; +reparties repartir ver f p 58.84 87.57 0.07 0.41 par:pas; +repartiez repartir ver 58.84 87.57 0.13 0.07 ind:imp:2p; +repartions repartir ver 58.84 87.57 0.05 0.74 ind:imp:1p; +repartir repartir ver 58.84 87.57 19.56 22.91 inf; +repartira repartir ver 58.84 87.57 0.89 0.54 ind:fut:3s; +repartirai repartir ver 58.84 87.57 0.66 0.41 ind:fut:1s; +repartiraient repartir ver 58.84 87.57 0.03 0.07 cnd:pre:3p; +repartirais repartir ver 58.84 87.57 0.19 0.41 cnd:pre:1s;cnd:pre:2s; +repartirait repartir ver 58.84 87.57 0.06 0.41 cnd:pre:3s; +repartiras repartir ver 58.84 87.57 0.55 0.47 ind:fut:2s; +repartirent repartir ver 58.84 87.57 0.01 1.55 ind:pas:3p; +repartirez repartir ver 58.84 87.57 0.46 0.20 ind:fut:2p; +repartirons repartir ver 58.84 87.57 0.21 0.41 ind:fut:1p; +repartiront repartir ver 58.84 87.57 0.20 0.14 ind:fut:3p; +repartis repartir ver m p 58.84 87.57 1.52 3.65 ind:pas:1s;par:pas; +repartisse repartir ver 58.84 87.57 0.00 0.07 sub:imp:1s; +repartit repartir ver 58.84 87.57 0.36 10.14 ind:pas:3s; +repartons repartir ver 58.84 87.57 1.40 1.89 imp:pre:1p;ind:pre:1p; +reparu reparaître ver m s 0.80 15.68 0.32 2.64 par:pas; +reparue reparaître ver f s 0.80 15.68 0.00 0.14 par:pas; +reparurent reparaître ver 0.80 15.68 0.00 0.27 ind:pas:3p; +reparut reparaître ver 0.80 15.68 0.10 3.18 ind:pas:3s; +repas repas nom m 48.53 76.62 48.53 76.62 +repassa repasser ver 26.91 34.19 0.00 1.49 ind:pas:3s; +repassage repassage nom m s 1.06 2.03 1.05 1.82 +repassages repassage nom m p 1.06 2.03 0.01 0.20 +repassai repasser ver 26.91 34.19 0.00 0.61 ind:pas:1s; +repassaient repasser ver 26.91 34.19 0.02 1.15 ind:imp:3p; +repassais repasser ver 26.91 34.19 0.13 0.47 ind:imp:1s;ind:imp:2s; +repassait repasser ver 26.91 34.19 0.21 3.45 ind:imp:3s; +repassant repasser ver 26.91 34.19 0.31 1.96 par:pre; +repasse repasser ver 26.91 34.19 6.34 4.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repassent repasser ver 26.91 34.19 0.37 1.15 ind:pre:3p; +repasser repasser ver 26.91 34.19 7.27 9.39 inf; +repassera repasser ver 26.91 34.19 0.73 0.81 ind:fut:3s; +repasserai repasser ver 26.91 34.19 4.89 1.01 ind:fut:1s; +repasseraient repasser ver 26.91 34.19 0.01 0.14 cnd:pre:3p; +repasserais repasser ver 26.91 34.19 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +repasserait repasser ver 26.91 34.19 0.03 0.47 cnd:pre:3s; +repasseras repasser ver 26.91 34.19 0.11 0.41 ind:fut:2s; +repasserez repasser ver 26.91 34.19 0.25 0.47 ind:fut:2p; +repasserons repasser ver 26.91 34.19 0.07 0.00 ind:fut:1p; +repasseront repasser ver 26.91 34.19 0.12 0.14 ind:fut:3p; +repasses repasser ver 26.91 34.19 0.60 0.07 ind:pre:2s; +repasseur repasseur nom m s 0.00 0.68 0.00 0.41 +repasseuse repasseur nom f s 0.00 0.68 0.00 0.20 +repasseuses repasseur nom f p 0.00 0.68 0.00 0.07 +repassez repasser ver 26.91 34.19 1.85 0.41 imp:pre:2p;ind:pre:2p; +repassiez repasser ver 26.91 34.19 0.03 0.00 ind:imp:2p; +repassions repasser ver 26.91 34.19 0.03 0.14 ind:imp:1p; +repassons repasser ver 26.91 34.19 0.22 0.07 imp:pre:1p;ind:pre:1p; +repassé repasser ver m s 26.91 34.19 1.79 3.51 par:pas; +repassée repasser ver f s 26.91 34.19 0.52 1.15 par:pas; +repassées repasser ver f p 26.91 34.19 0.14 0.34 par:pas; +repassés repasser ver m p 26.91 34.19 0.70 0.95 par:pas; +repavage repavage nom m s 0.04 0.00 0.04 0.00 +repaver repaver ver 0.01 0.07 0.01 0.00 inf; +repavé repaver ver m s 0.01 0.07 0.00 0.07 par:pas; +repayais repayer ver 0.23 0.41 0.00 0.07 ind:imp:1s; +repayait repayer ver 0.23 0.41 0.00 0.07 ind:imp:3s; +repaye repayer ver 0.23 0.41 0.00 0.07 ind:pre:1s; +repayer repayer ver 0.23 0.41 0.21 0.00 inf;; +repayé repayer ver m s 0.23 0.41 0.00 0.07 par:pas; +repeigna repeigner ver 0.35 1.35 0.00 0.07 ind:pas:3s; +repeignais repeigner ver 0.35 1.35 0.01 0.14 ind:imp:1s; +repeignait repeigner ver 0.35 1.35 0.01 0.41 ind:imp:3s; +repeignant repeigner ver 0.35 1.35 0.02 0.00 par:pre; +repeigne repeigner ver 0.35 1.35 0.06 0.14 ind:pre:1s;ind:pre:3s; +repeignent repeigner ver 0.35 1.35 0.19 0.27 ind:pre:3p; +repeignez repeigner ver 0.35 1.35 0.06 0.00 imp:pre:2p;ind:pre:2p; +repeignit repeindre ver 5.05 6.96 0.00 0.07 ind:pas:3s; +repeigné repeigner ver m s 0.35 1.35 0.00 0.07 par:pas; +repeignée repeigner ver f s 0.35 1.35 0.00 0.20 par:pas; +repeignées repeigner ver f p 0.35 1.35 0.00 0.07 par:pas; +repeindra repeindre ver 5.05 6.96 0.03 0.00 ind:fut:3s; +repeindrai repeindre ver 5.05 6.96 0.01 0.00 ind:fut:1s; +repeindrait repeindre ver 5.05 6.96 0.25 0.00 cnd:pre:3s; +repeindre repeindre ver 5.05 6.96 2.79 2.70 inf; +repeins repeindre ver 5.05 6.96 0.29 0.00 imp:pre:2s;ind:pre:1s; +repeint repeindre ver m s 5.05 6.96 1.46 1.35 ind:pre:3s;par:pas; +repeinte repeindre ver f s 5.05 6.96 0.20 1.69 par:pas; +repeintes repeindre ver f p 5.05 6.96 0.02 0.61 par:pas; +repeints repeindre ver m p 5.05 6.96 0.01 0.54 par:pas; +rependra rependre ver 0.38 0.14 0.00 0.07 ind:fut:3s; +rependre rependre ver 0.38 0.14 0.22 0.00 inf; +repends rependre ver 0.38 0.14 0.15 0.00 imp:pre:2s;ind:pre:1s; +rependu rependre ver m s 0.38 0.14 0.01 0.00 par:pas; +rependus rependre ver m p 0.38 0.14 0.00 0.07 par:pas; +repens repentir ver 9.49 6.28 1.47 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repensa repenser ver 9.68 12.16 0.01 0.95 ind:pas:3s; +repensai repenser ver 9.68 12.16 0.02 0.74 ind:pas:1s; +repensais repenser ver 9.68 12.16 0.56 0.81 ind:imp:1s; +repensait repenser ver 9.68 12.16 0.26 0.88 ind:imp:3s; +repensant repenser ver 9.68 12.16 0.98 1.01 par:pre; +repense repenser ver 9.68 12.16 2.91 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +repensent repenser ver 9.68 12.16 0.01 0.07 ind:pre:3p; +repenser repenser ver 9.68 12.16 1.74 2.36 inf; +repensera repenser ver 9.68 12.16 0.13 0.07 ind:fut:3s; +repenserai repenser ver 9.68 12.16 0.02 0.00 ind:fut:1s; +repenserais repenser ver 9.68 12.16 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +repenserez repenser ver 9.68 12.16 0.03 0.14 ind:fut:2p; +repenses repenser ver 9.68 12.16 0.55 0.07 ind:pre:2s;sub:pre:2s; +repensez repenser ver 9.68 12.16 0.22 0.00 imp:pre:2p;ind:pre:2p; +repensons repenser ver 9.68 12.16 0.02 0.00 imp:pre:1p; +repensé repenser ver m s 9.68 12.16 2.12 1.55 par:pas; +repensée repenser ver f s 9.68 12.16 0.01 0.00 par:pas; +repent repentir ver 9.49 6.28 0.96 0.34 ind:pre:3s; +repentaient repentir ver 9.49 6.28 0.00 0.07 ind:imp:3p; +repentait repentir ver 9.49 6.28 0.00 0.61 ind:imp:3s; +repentance repentance nom f s 0.15 0.20 0.15 0.20 +repentant repentir ver 9.49 6.28 0.13 0.07 par:pre; +repentante repentant adj f s 0.17 0.74 0.02 0.41 +repentantes repentant adj f p 0.17 0.74 0.00 0.07 +repentants repentant adj m p 0.17 0.74 0.12 0.07 +repentent repentir ver 9.49 6.28 0.02 0.14 ind:pre:3p; +repentez repentir ver 9.49 6.28 0.80 0.34 imp:pre:2p;ind:pre:2p; +repenti repenti adj m s 0.84 1.15 0.76 0.61 +repentie repentir ver f s 9.49 6.28 0.05 0.20 par:pas; +repenties repenti adj f p 0.84 1.15 0.00 0.14 +repentir repentir ver 9.49 6.28 3.59 2.50 inf; +repentira repentir ver 9.49 6.28 0.34 0.07 ind:fut:3s; +repentirai repentir ver 9.49 6.28 0.25 0.14 ind:fut:1s; +repentirais repentir ver 9.49 6.28 0.00 0.07 cnd:pre:2s; +repentiras repentir ver 9.49 6.28 0.76 0.00 ind:fut:2s; +repentirez repentir ver 9.49 6.28 0.56 0.14 ind:fut:2p; +repentirs repentir nom m p 2.59 5.20 0.00 0.61 +repentis repenti adj m p 0.84 1.15 0.07 0.27 +repentisse repentir ver 9.49 6.28 0.01 0.00 sub:imp:1s; +repentissent repentir ver 9.49 6.28 0.01 0.07 sub:imp:3p; +repentit repentir ver 9.49 6.28 0.02 0.20 ind:pas:3s; +repentons repentir ver 9.49 6.28 0.02 0.00 imp:pre:1p;ind:pre:1p; +reperdaient reperdre ver 0.32 0.88 0.00 0.07 ind:imp:3p; +reperdais reperdre ver 0.32 0.88 0.00 0.07 ind:imp:1s; +reperdons reperdre ver 0.32 0.88 0.00 0.07 imp:pre:1p; +reperdre reperdre ver 0.32 0.88 0.16 0.14 inf; +reperds reperdre ver 0.32 0.88 0.01 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reperdu reperdre ver m s 0.32 0.88 0.15 0.20 par:pas; +reperdue reperdre ver f s 0.32 0.88 0.00 0.14 par:pas; +reperdues reperdre ver f p 0.32 0.88 0.00 0.07 par:pas; +repeuplaient repeupler ver 0.62 0.74 0.00 0.07 ind:imp:3p; +repeuplait repeupler ver 0.62 0.74 0.00 0.07 ind:imp:3s; +repeuple repeupler ver 0.62 0.74 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repeuplement repeuplement nom m s 0.01 0.00 0.01 0.00 +repeupler repeupler ver 0.62 0.74 0.32 0.07 inf; +repeuplée repeupler ver f s 0.62 0.74 0.01 0.27 par:pas; +repeuplées repeupler ver f p 0.62 0.74 0.00 0.07 par:pas; +repincer repincer ver 0.15 0.27 0.15 0.07 inf; +repincé repincer ver m s 0.15 0.27 0.00 0.20 par:pas; +repiqua repiquer ver 0.53 2.09 0.00 0.27 ind:pas:3s; +repiquage repiquage nom m s 0.10 0.61 0.10 0.61 +repiquaient repiquer ver 0.53 2.09 0.00 0.07 ind:imp:3p; +repiquait repiquer ver 0.53 2.09 0.00 0.20 ind:imp:3s; +repique repiquer ver 0.53 2.09 0.16 0.68 ind:pre:1s;ind:pre:3s; +repiquer repiquer ver 0.53 2.09 0.07 0.47 inf; +repiquerai repiquer ver 0.53 2.09 0.00 0.07 ind:fut:1s; +repiqué repiquer ver m s 0.53 2.09 0.30 0.27 par:pas; +repiquées repiquer ver f p 0.53 2.09 0.00 0.07 par:pas; +replace replacer ver 1.54 7.70 0.32 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +replacement replacement nom m s 0.02 0.00 0.02 0.00 +replacent replacer ver 1.54 7.70 0.02 0.00 ind:pre:3p; +replacer replacer ver 1.54 7.70 0.41 2.36 inf; +replacerai replacer ver 1.54 7.70 0.02 0.00 ind:fut:1s; +replacerez replacer ver 1.54 7.70 0.01 0.00 ind:fut:2p; +replacez replacer ver 1.54 7.70 0.26 0.07 imp:pre:2p; +replacèrent replacer ver 1.54 7.70 0.00 0.07 ind:pas:3p; +replacé replacer ver m s 1.54 7.70 0.39 1.01 par:pas; +replacée replacer ver f s 1.54 7.70 0.05 0.07 par:pas; +replacés replacer ver m p 1.54 7.70 0.02 0.20 par:pas; +replanta replanter ver 0.25 1.69 0.00 0.07 ind:pas:3s; +replantait replanter ver 0.25 1.69 0.00 0.20 ind:imp:3s; +replantation replantation nom f s 0.00 0.07 0.00 0.07 +replante replanter ver 0.25 1.69 0.00 0.14 ind:pre:3s; +replantent replanter ver 0.25 1.69 0.00 0.07 ind:pre:3p; +replanter replanter ver 0.25 1.69 0.21 0.47 inf; +replantez replanter ver 0.25 1.69 0.00 0.07 imp:pre:2p; +replanté replanter ver m s 0.25 1.69 0.00 0.14 par:pas; +replantée replanter ver f s 0.25 1.69 0.01 0.27 par:pas; +replantées replanter ver f p 0.25 1.69 0.01 0.20 par:pas; +replantés replanter ver m p 0.25 1.69 0.02 0.07 par:pas; +replat replat nom m s 0.16 0.61 0.16 0.54 +replaça replacer ver 1.54 7.70 0.01 1.22 ind:pas:3s; +replaçaient replacer ver 1.54 7.70 0.00 0.14 ind:imp:3p; +replaçais replacer ver 1.54 7.70 0.00 0.14 ind:imp:1s; +replaçait replacer ver 1.54 7.70 0.02 0.61 ind:imp:3s; +replaçant replacer ver 1.54 7.70 0.00 0.74 par:pre; +replaçons replacer ver 1.54 7.70 0.01 0.14 imp:pre:1p;ind:pre:1p; +replats replat nom m p 0.16 0.61 0.00 0.07 +replet replet adj m s 0.14 1.62 0.03 0.74 +replets replet adj m p 0.14 1.62 0.00 0.14 +repli repli nom m s 1.40 10.14 1.12 5.88 +replia replier ver 6.78 33.18 0.00 3.31 ind:pas:3s; +repliai replier ver 6.78 33.18 0.00 0.14 ind:pas:1s; +repliaient replier ver 6.78 33.18 0.01 0.47 ind:imp:3p; +repliais replier ver 6.78 33.18 0.10 0.14 ind:imp:1s; +repliait replier ver 6.78 33.18 0.12 2.23 ind:imp:3s; +repliant replier ver 6.78 33.18 0.11 0.95 par:pre; +replie replier ver 6.78 33.18 1.42 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repliement repliement nom m s 0.01 0.54 0.01 0.54 +replient replier ver 6.78 33.18 0.28 0.47 ind:pre:3p; +replier replier ver 6.78 33.18 1.56 3.31 inf; +repliera replier ver 6.78 33.18 0.02 0.00 ind:fut:3s; +replierai replier ver 6.78 33.18 0.02 0.00 ind:fut:1s; +replierez replier ver 6.78 33.18 0.00 0.07 ind:fut:2p; +replierons replier ver 6.78 33.18 0.04 0.00 ind:fut:1p; +replieront replier ver 6.78 33.18 0.01 0.00 ind:fut:3p; +replies replier ver 6.78 33.18 0.02 0.14 ind:pre:2s; +repliez replier ver 6.78 33.18 1.81 0.07 imp:pre:2p;ind:pre:2p; +replions replier ver 6.78 33.18 0.13 0.14 imp:pre:1p;ind:pre:1p; +repliât replier ver 6.78 33.18 0.00 0.14 sub:imp:3s; +replis repli nom m p 1.40 10.14 0.28 4.26 +replièrent replier ver 6.78 33.18 0.01 0.34 ind:pas:3p; +replié replier ver m s 6.78 33.18 0.37 7.91 par:pas; +repliée replier ver f s 6.78 33.18 0.23 3.04 par:pas; +repliées replier ver f p 6.78 33.18 0.21 3.65 par:pas; +repliés replier ver m p 6.78 33.18 0.29 4.12 par:pas; +replonge replonger ver 2.14 11.08 0.50 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +replongea replonger ver 2.14 11.08 0.01 1.42 ind:pas:3s; +replongeai replonger ver 2.14 11.08 0.01 0.20 ind:pas:1s; +replongeaient replonger ver 2.14 11.08 0.00 0.07 ind:imp:3p; +replongeais replonger ver 2.14 11.08 0.16 0.68 ind:imp:1s;ind:imp:2s; +replongeait replonger ver 2.14 11.08 0.02 0.81 ind:imp:3s; +replongeant replonger ver 2.14 11.08 0.00 0.68 par:pre; +replongent replonger ver 2.14 11.08 0.02 0.41 ind:pre:3p; +replonger replonger ver 2.14 11.08 0.86 2.97 inf; +replongera replonger ver 2.14 11.08 0.01 0.07 ind:fut:3s; +replongerai replonger ver 2.14 11.08 0.02 0.07 ind:fut:1s; +replongerais replonger ver 2.14 11.08 0.01 0.00 cnd:pre:2s; +replongerait replonger ver 2.14 11.08 0.02 0.20 cnd:pre:3s; +replonges replonger ver 2.14 11.08 0.06 0.20 ind:pre:2s;sub:pre:2s; +replongiez replonger ver 2.14 11.08 0.01 0.00 ind:imp:2p; +replongé replonger ver m s 2.14 11.08 0.42 1.35 par:pas; +replongée replonger ver f s 2.14 11.08 0.00 0.54 par:pas; +replongées replonger ver f p 2.14 11.08 0.00 0.07 par:pas; +replongés replonger ver m p 2.14 11.08 0.00 0.07 par:pas; +replâtra replâtrer ver 0.03 0.81 0.00 0.14 ind:pas:3s; +replâtrage replâtrage nom m s 0.00 0.34 0.00 0.34 +replâtraient replâtrer ver 0.03 0.81 0.00 0.07 ind:imp:3p; +replâtrer replâtrer ver 0.03 0.81 0.01 0.14 inf; +replâtrerait replâtrer ver 0.03 0.81 0.00 0.07 cnd:pre:3s; +replâtré replâtrer ver m s 0.03 0.81 0.00 0.14 par:pas; +replâtrée replâtrer ver f s 0.03 0.81 0.01 0.20 par:pas; +replâtrées replâtrer ver f p 0.03 0.81 0.00 0.07 par:pas; +reployait reployer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +replète replet adj f s 0.14 1.62 0.11 0.68 +replètes replet adj f p 0.14 1.62 0.00 0.07 +report report nom m s 1.03 0.27 0.61 0.14 +reporta reporter ver 5.32 7.70 0.03 0.88 ind:pas:3s; +reportage_vérité reportage_vérité nom m s 0.00 0.14 0.00 0.14 +reportage reportage nom m s 11.16 7.16 10.07 5.07 +reportages reportage nom m p 11.16 7.16 1.09 2.09 +reportait reporter ver 5.32 7.70 0.03 0.81 ind:imp:3s; +reportant reporter ver 5.32 7.70 0.01 0.61 par:pre; +reporte reporter ver 5.32 7.70 0.57 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reportent reporter ver 5.32 7.70 0.09 0.07 ind:pre:3p; +reporter reporter nom m s 5.12 3.04 3.01 1.49 +reportera reporter ver 5.32 7.70 0.04 0.00 ind:fut:3s; +reporterai reporter ver 5.32 7.70 0.02 0.00 ind:fut:1s; +reporterait reporter ver 5.32 7.70 0.01 0.07 cnd:pre:3s; +reporters reporter nom m p 5.12 3.04 2.11 1.55 +reportez reporter ver 5.32 7.70 0.38 0.07 imp:pre:2p;ind:pre:2p; +reportons reporter ver 5.32 7.70 0.07 0.07 imp:pre:1p;ind:pre:1p; +reports report nom m p 1.03 0.27 0.43 0.14 +reportèrent reporter ver 5.32 7.70 0.00 0.14 ind:pas:3p; +reporté reporter ver m s 5.32 7.70 0.90 1.69 par:pas; +reportée reporter ver f s 5.32 7.70 0.74 0.47 par:pas; +reportées reporter ver f p 5.32 7.70 0.03 0.14 par:pas; +reportés reporter ver m p 5.32 7.70 0.05 0.14 par:pas; +repos repos nom m 42.29 43.58 42.29 43.58 +reposa reposer ver 95.19 83.92 0.03 7.16 ind:pas:3s; +reposai reposer ver 95.19 83.92 0.00 0.41 ind:pas:1s; +reposaient reposer ver 95.19 83.92 0.07 5.00 ind:imp:3p; +reposais reposer ver 95.19 83.92 0.58 0.41 ind:imp:1s;ind:imp:2s; +reposait reposer ver 95.19 83.92 1.05 15.41 ind:imp:3s; +reposant reposant adj m s 1.14 3.58 0.84 1.96 +reposante reposant adj f s 1.14 3.58 0.25 1.28 +reposantes reposant adj f p 1.14 3.58 0.04 0.27 +reposants reposant adj m p 1.14 3.58 0.02 0.07 +repose_pied repose_pied nom m s 0.02 0.07 0.01 0.00 +repose_pied repose_pied nom m p 0.02 0.07 0.01 0.07 +repose reposer ver 95.19 83.92 33.27 14.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +reposent reposer ver 95.19 83.92 3.26 4.39 ind:pre:3p; +reposer reposer ver 95.19 83.92 39.81 20.95 inf;; +reposera reposer ver 95.19 83.92 1.06 0.47 ind:fut:3s; +reposerai reposer ver 95.19 83.92 0.24 0.14 ind:fut:1s; +reposeraient reposer ver 95.19 83.92 0.00 0.07 cnd:pre:3p; +reposerais reposer ver 95.19 83.92 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +reposerait reposer ver 95.19 83.92 0.01 0.54 cnd:pre:3s; +reposeras reposer ver 95.19 83.92 0.55 0.27 ind:fut:2s; +reposerez reposer ver 95.19 83.92 0.28 0.00 ind:fut:2p; +reposerions reposer ver 95.19 83.92 0.00 0.07 cnd:pre:1p; +reposerons reposer ver 95.19 83.92 0.37 0.14 ind:fut:1p; +reposeront reposer ver 95.19 83.92 0.18 0.07 ind:fut:3p; +reposes reposer ver 95.19 83.92 2.45 0.34 ind:pre:2s;sub:pre:2s; +reposez reposer ver 95.19 83.92 7.81 0.74 imp:pre:2p;ind:pre:2p; +reposiez reposer ver 95.19 83.92 0.39 0.00 ind:imp:2p; +reposions reposer ver 95.19 83.92 0.05 0.20 ind:imp:1p; +repositionnent repositionner ver 0.20 0.00 0.03 0.00 ind:pre:3p; +repositionner repositionner ver 0.20 0.00 0.17 0.00 inf; +repositionnez repositionner ver 0.20 0.00 0.01 0.00 imp:pre:2p; +reposoir reposoir nom m s 0.17 1.01 0.17 0.81 +reposoirs reposoir nom m p 0.17 1.01 0.00 0.20 +reposons reposer ver 95.19 83.92 1.04 0.27 imp:pre:1p;ind:pre:1p; +reposât reposer ver 95.19 83.92 0.00 0.14 sub:imp:3s; +reposséder reposséder ver 0.03 0.00 0.03 0.00 inf; +repostait reposter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +reposèrent reposer ver 95.19 83.92 0.00 0.41 ind:pas:3p; +reposé reposer ver m s 95.19 83.92 0.76 3.38 par:pas; +reposée reposer ver f s 95.19 83.92 1.16 1.62 par:pas; +reposées reposer ver f p 95.19 83.92 0.03 0.27 par:pas; +reposés reposer ver m p 95.19 83.92 0.29 0.61 par:pas; +repoudraient repoudrer ver 0.43 0.41 0.00 0.07 ind:imp:3p; +repoudrait repoudrer ver 0.43 0.41 0.00 0.14 ind:imp:3s; +repoudrant repoudrer ver 0.43 0.41 0.00 0.14 par:pre; +repoudre repoudrer ver 0.43 0.41 0.04 0.00 imp:pre:2s;ind:pre:1s; +repoudrer repoudrer ver 0.43 0.41 0.37 0.00 inf; +repoudré repoudrer ver m s 0.43 0.41 0.02 0.00 par:pas; +repoudrée repoudrer ver f s 0.43 0.41 0.00 0.07 par:pas; +repoussa repousser ver 22.62 63.45 0.03 11.15 ind:pas:3s; +repoussage repoussage nom m s 0.02 0.00 0.02 0.00 +repoussai repousser ver 22.62 63.45 0.01 1.01 ind:pas:1s; +repoussaient repousser ver 22.62 63.45 0.06 1.49 ind:imp:3p; +repoussais repousser ver 22.62 63.45 0.13 0.74 ind:imp:1s;ind:imp:2s; +repoussait repousser ver 22.62 63.45 0.22 6.22 ind:imp:3s; +repoussant repoussant adj m s 2.29 2.57 1.33 1.22 +repoussante repoussant adj f s 2.29 2.57 0.87 0.81 +repoussantes repoussant adj f p 2.29 2.57 0.03 0.14 +repoussants repoussant adj m p 2.29 2.57 0.07 0.41 +repousse repousser ver 22.62 63.45 6.53 9.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repoussent repousser ver 22.62 63.45 0.59 0.95 ind:pre:3p; +repousser repousser ver 22.62 63.45 6.14 12.03 inf; +repoussera repousser ver 22.62 63.45 0.79 0.07 ind:fut:3s; +repousserai repousser ver 22.62 63.45 0.04 0.07 ind:fut:1s; +repousseraient repousser ver 22.62 63.45 0.01 0.41 cnd:pre:3p; +repousserais repousser ver 22.62 63.45 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +repousserait repousser ver 22.62 63.45 0.17 0.14 cnd:pre:3s; +repousserons repousser ver 22.62 63.45 0.14 0.07 ind:fut:1p; +repousseront repousser ver 22.62 63.45 0.42 0.27 ind:fut:3p; +repousses repousser ver 22.62 63.45 0.51 0.07 ind:pre:2s; +repoussez repousser ver 22.62 63.45 0.96 0.07 imp:pre:2p;ind:pre:2p; +repoussions repousser ver 22.62 63.45 0.03 0.07 ind:imp:1p; +repoussoir repoussoir nom m s 0.01 0.68 0.00 0.47 +repoussoirs repoussoir nom m p 0.01 0.68 0.01 0.20 +repoussâmes repousser ver 22.62 63.45 0.00 0.14 ind:pas:1p; +repoussons repousser ver 22.62 63.45 0.15 0.07 imp:pre:1p;ind:pre:1p; +repoussât repousser ver 22.62 63.45 0.00 0.07 sub:imp:3s; +repoussèrent repousser ver 22.62 63.45 0.05 0.41 ind:pas:3p; +repoussé repousser ver m s 22.62 63.45 3.31 7.36 par:pas; +repoussée repousser ver f s 22.62 63.45 1.01 2.30 par:pas; +repoussées repousser ver f p 22.62 63.45 0.13 0.68 par:pas; +repoussés repousser ver m p 22.62 63.45 0.62 1.42 par:pas; +reprîmes reprendre ver 126.91 340.14 0.00 0.61 ind:pas:1p; +reprît reprendre ver 126.91 340.14 0.00 0.81 sub:imp:3s; +reprenaient reprendre ver 126.91 340.14 0.14 5.88 ind:imp:3p; +reprenais reprendre ver 126.91 340.14 0.40 3.18 ind:imp:1s;ind:imp:2s; +reprenait reprendre ver 126.91 340.14 0.75 27.36 ind:imp:3s; +reprenant reprendre ver 126.91 340.14 0.35 13.92 par:pre; +reprend reprendre ver 126.91 340.14 14.24 31.35 ind:pre:3s; +reprendra reprendre ver 126.91 340.14 4.04 2.03 ind:fut:3s; +reprendrai reprendre ver 126.91 340.14 1.86 1.01 ind:fut:1s; +reprendraient reprendre ver 126.91 340.14 0.32 0.68 cnd:pre:3p; +reprendrais reprendre ver 126.91 340.14 0.67 0.47 cnd:pre:1s;cnd:pre:2s; +reprendrait reprendre ver 126.91 340.14 0.17 2.36 cnd:pre:3s; +reprendras reprendre ver 126.91 340.14 0.49 0.07 ind:fut:2s; +reprendre reprendre ver 126.91 340.14 36.98 67.70 inf; +reprendrez reprendre ver 126.91 340.14 0.72 0.47 ind:fut:2p; +reprendriez reprendre ver 126.91 340.14 0.02 0.07 cnd:pre:2p; +reprendrions reprendre ver 126.91 340.14 0.01 0.14 cnd:pre:1p; +reprendrons reprendre ver 126.91 340.14 1.88 0.88 ind:fut:1p; +reprendront reprendre ver 126.91 340.14 0.89 0.34 ind:fut:3p; +reprends reprendre ver 126.91 340.14 20.08 7.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repreneur repreneur nom m s 0.04 0.07 0.03 0.00 +repreneurs repreneur nom m p 0.04 0.07 0.01 0.07 +reprenez reprendre ver 126.91 340.14 9.97 1.15 imp:pre:2p;ind:pre:2p; +repreniez reprendre ver 126.91 340.14 0.53 0.14 ind:imp:2p; +reprenions reprendre ver 126.91 340.14 0.20 0.68 ind:imp:1p; +reprenne reprendre ver 126.91 340.14 3.42 4.12 sub:pre:1s;sub:pre:3s; +reprennent reprendre ver 126.91 340.14 3.13 5.54 ind:pre:3p; +reprennes reprendre ver 126.91 340.14 0.93 0.27 sub:pre:2s; +reprenons reprendre ver 126.91 340.14 5.59 2.09 imp:pre:1p;ind:pre:1p; +reprirent reprendre ver 126.91 340.14 0.12 6.49 ind:pas:3p; +repris reprendre ver m 126.91 340.14 16.65 51.55 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +reprisaient repriser ver 0.64 4.66 0.00 0.07 ind:imp:3p; +reprisait repriser ver 0.64 4.66 0.01 0.74 ind:imp:3s; +reprisant repriser ver 0.64 4.66 0.01 0.14 par:pre; +reprise reprise nom f s 6.23 36.42 2.27 8.38 +reprisent repriser ver 0.64 4.66 0.01 0.07 ind:pre:3p; +repriser repriser ver 0.64 4.66 0.25 1.76 inf; +reprises reprise nom f p 6.23 36.42 3.96 28.04 +reprisse reprendre ver 126.91 340.14 0.00 0.07 sub:imp:1s; +reprissent reprendre ver 126.91 340.14 0.00 0.14 sub:imp:3p; +reprisé repriser ver m s 0.64 4.66 0.01 0.74 par:pas; +reprisée repriser ver f s 0.64 4.66 0.01 0.20 par:pas; +reprisées repriser ver f p 0.64 4.66 0.00 0.27 par:pas; +reprisés repriser ver m p 0.64 4.66 0.00 0.41 par:pas; +reprit reprendre ver 126.91 340.14 0.52 96.01 ind:pas:3s; +reprocha reprocher ver 19.85 44.73 0.04 2.30 ind:pas:3s; +reprochai reprocher ver 19.85 44.73 0.00 0.61 ind:pas:1s; +reprochaient reprocher ver 19.85 44.73 0.01 1.01 ind:imp:3p; +reprochais reprocher ver 19.85 44.73 0.17 1.69 ind:imp:1s;ind:imp:2s; +reprochait reprocher ver 19.85 44.73 0.54 10.27 ind:imp:3s; +reprochant reprocher ver 19.85 44.73 0.01 1.01 par:pre; +reproche reprocher ver 19.85 44.73 5.05 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +reprochent reprocher ver 19.85 44.73 0.20 0.54 ind:pre:3p; +reprocher reprocher ver 19.85 44.73 7.53 11.76 inf; +reprochera reprocher ver 19.85 44.73 0.48 0.34 ind:fut:3s; +reprocherai reprocher ver 19.85 44.73 0.39 0.00 ind:fut:1s; +reprocherais reprocher ver 19.85 44.73 0.05 0.27 cnd:pre:1s; +reprocherait reprocher ver 19.85 44.73 0.20 0.47 cnd:pre:3s; +reprocheras reprocher ver 19.85 44.73 0.13 0.14 ind:fut:2s; +reprocheriez reprocher ver 19.85 44.73 0.01 0.14 cnd:pre:2p; +reprocherons reprocher ver 19.85 44.73 0.00 0.07 ind:fut:1p; +reprocheront reprocher ver 19.85 44.73 0.03 0.07 ind:fut:3p; +reproches reproche nom m p 6.01 30.68 3.13 13.31 +reprochez reprocher ver 19.85 44.73 1.21 1.08 imp:pre:2p;ind:pre:2p; +reprochiez reprocher ver 19.85 44.73 0.05 0.00 ind:imp:2p; +reprochions reprocher ver 19.85 44.73 0.00 0.34 ind:imp:1p; +reprochons reprocher ver 19.85 44.73 0.10 0.07 ind:pre:1p; +reprochât reprocher ver 19.85 44.73 0.00 0.20 sub:imp:3s; +reprochèrent reprocher ver 19.85 44.73 0.00 0.07 ind:pas:3p; +reproché reprocher ver m s 19.85 44.73 1.26 3.58 par:pas; +reprochée reprocher ver f s 19.85 44.73 0.07 0.20 par:pas; +reprochées reprocher ver f p 19.85 44.73 0.01 0.20 par:pas; +reprochés reprocher ver m p 19.85 44.73 0.24 0.68 par:pas; +reproducteur reproducteur nom m s 0.53 0.27 0.29 0.14 +reproducteurs reproducteur nom m p 0.53 0.27 0.23 0.00 +reproductible reproductible adj m s 0.00 0.07 0.00 0.07 +reproductif reproductif adj m s 0.15 0.20 0.12 0.20 +reproductifs reproductif adj m p 0.15 0.20 0.02 0.00 +reproduction reproduction nom f s 4.24 7.97 4.08 5.34 +reproductions reproduction nom f p 4.24 7.97 0.16 2.64 +reproductive reproductif adj f s 0.15 0.20 0.01 0.00 +reproductrice reproducteur adj f s 0.20 0.27 0.03 0.07 +reproductrices reproductrice nom f p 0.10 0.00 0.10 0.00 +reproduira reproduire ver 16.31 16.01 4.27 0.41 ind:fut:3s; +reproduirai reproduire ver 16.31 16.01 0.05 0.14 ind:fut:1s; +reproduiraient reproduire ver 16.31 16.01 0.00 0.07 cnd:pre:3p; +reproduirait reproduire ver 16.31 16.01 0.23 0.14 cnd:pre:3s; +reproduire reproduire ver 16.31 16.01 4.68 4.73 inf; +reproduirons reproduire ver 16.31 16.01 0.02 0.00 ind:fut:1p; +reproduiront reproduire ver 16.31 16.01 0.20 0.14 ind:fut:3p; +reproduis reproduire ver 16.31 16.01 0.39 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reproduisît reproduire ver 16.31 16.01 0.00 0.14 sub:imp:3s; +reproduisaient reproduire ver 16.31 16.01 0.04 0.34 ind:imp:3p; +reproduisait reproduire ver 16.31 16.01 0.11 1.55 ind:imp:3s; +reproduisant reproduire ver 16.31 16.01 0.13 1.49 par:pre; +reproduise reproduire ver 16.31 16.01 1.70 0.27 sub:pre:1s;sub:pre:3s; +reproduisent reproduire ver 16.31 16.01 1.03 0.95 ind:pre:3p; +reproduisez reproduire ver 16.31 16.01 0.02 0.00 imp:pre:2p; +reproduisirent reproduire ver 16.31 16.01 0.00 0.07 ind:pas:3p; +reproduisit reproduire ver 16.31 16.01 0.01 0.20 ind:pas:3s; +reproduisons reproduire ver 16.31 16.01 0.02 0.07 ind:pre:1p; +reproduit reproduire ver m s 16.31 16.01 2.98 3.11 ind:pre:3s;par:pas; +reproduite reproduire ver f s 16.31 16.01 0.12 0.68 par:pas; +reproduites reproduire ver f p 16.31 16.01 0.15 0.61 par:pas; +reproduits reproduire ver m p 16.31 16.01 0.15 0.61 par:pas; +reprogrammant reprogrammer ver 1.11 0.00 0.01 0.00 par:pre; +reprogramme reprogrammer ver 1.11 0.00 0.14 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reprogramment reprogrammer ver 1.11 0.00 0.03 0.00 ind:pre:3p; +reprogrammer reprogrammer ver 1.11 0.00 0.70 0.00 inf; +reprogrammera reprogrammer ver 1.11 0.00 0.02 0.00 ind:fut:3s; +reprogrammé reprogrammer ver m s 1.11 0.00 0.15 0.00 par:pas; +reprogrammée reprogrammer ver f s 1.11 0.00 0.04 0.00 par:pas; +reprogrammés reprogrammer ver m p 1.11 0.00 0.01 0.00 par:pas; +reprographie reprographie nom f s 0.08 0.07 0.08 0.07 +reproposer reproposer ver 0.01 0.00 0.01 0.00 inf; +représaille représailles nom f s 3.08 4.93 0.01 0.07 +représailles représailles nom f p 3.08 4.93 3.07 4.86 +représenta représenter ver 48.78 85.54 0.16 0.95 ind:pas:3s; +représentai représenter ver 48.78 85.54 0.00 0.27 ind:pas:1s; +représentaient représenter ver 48.78 85.54 0.56 5.47 ind:imp:3p; +représentais représenter ver 48.78 85.54 0.32 1.15 ind:imp:1s;ind:imp:2s; +représentait représenter ver 48.78 85.54 2.57 19.12 ind:imp:3s; +représentant représentant nom m s 10.81 25.88 6.28 12.30 +représentante représentant nom f s 10.81 25.88 0.80 0.41 +représentantes représentant nom f p 10.81 25.88 0.13 0.07 +représentants représentant nom m p 10.81 25.88 3.59 13.11 +représentatif représentatif adj m s 1.06 2.16 0.46 0.61 +représentatifs représentatif adj m p 1.06 2.16 0.09 0.61 +représentation représentation nom f s 8.67 18.99 7.61 16.08 +représentations représentation nom f p 8.67 18.99 1.07 2.91 +représentative représentatif adj f s 1.06 2.16 0.48 0.54 +représentatives représentatif adj f p 1.06 2.16 0.04 0.41 +représente représenter ver 48.78 85.54 23.52 17.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +représentent représenter ver 48.78 85.54 3.63 3.78 ind:pre:3p;sub:pre:3p; +représenter représenter ver 48.78 85.54 5.38 11.08 inf; +représentera représenter ver 48.78 85.54 0.71 0.61 ind:fut:3s; +représenterai représenter ver 48.78 85.54 0.10 0.00 ind:fut:1s; +représenteraient représenter ver 48.78 85.54 0.02 0.07 cnd:pre:3p; +représenterais représenter ver 48.78 85.54 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +représenterait représenter ver 48.78 85.54 0.14 0.41 cnd:pre:3s; +représenteras représenter ver 48.78 85.54 0.05 0.00 ind:fut:2s; +représenterez représenter ver 48.78 85.54 0.06 0.00 ind:fut:2p; +représenteront représenter ver 48.78 85.54 0.11 0.07 ind:fut:3p; +représentes représenter ver 48.78 85.54 1.76 0.34 ind:pre:2s; +représentez représenter ver 48.78 85.54 2.12 0.34 imp:pre:2p;ind:pre:2p; +représentiez représenter ver 48.78 85.54 0.11 0.07 ind:imp:2p; +représentions représenter ver 48.78 85.54 0.04 0.20 ind:imp:1p; +représentons représenter ver 48.78 85.54 1.09 0.47 imp:pre:1p;ind:pre:1p; +représentât représenter ver 48.78 85.54 0.00 0.14 sub:imp:3s; +représentèrent représenter ver 48.78 85.54 0.00 0.07 ind:pas:3p; +représenté représenter ver m s 48.78 85.54 1.58 3.38 par:pas; +représentée représenter ver f s 48.78 85.54 1.42 1.49 par:pas; +représentées représenter ver f p 48.78 85.54 0.18 0.47 par:pas; +représentés représenter ver m p 48.78 85.54 0.81 1.49 par:pas; +reps reps nom m 0.01 1.49 0.01 1.49 +reptation reptation nom f s 0.00 0.88 0.00 0.74 +reptations reptation nom f p 0.00 0.88 0.00 0.14 +repère repère nom m s 3.52 9.59 2.44 5.34 +repèrent repérer ver 27.23 31.15 0.71 0.27 ind:pre:3p; +repères repère nom m p 3.52 9.59 1.09 4.26 +reptile reptile nom m s 3.46 2.36 1.90 1.01 +reptiles reptile nom m p 3.46 2.36 1.56 1.35 +reptilien reptilien adj m s 0.16 0.47 0.07 0.07 +reptilienne reptilien adj f s 0.16 0.47 0.07 0.20 +reptiliennes reptilien adj f p 0.16 0.47 0.01 0.07 +reptiliens reptilien adj m p 0.16 0.47 0.00 0.14 +repu repu adj m s 1.10 3.18 0.54 1.49 +republication republication nom f s 0.01 0.00 0.01 0.00 +republier republier ver 0.01 0.07 0.00 0.07 inf; +republions republier ver 0.01 0.07 0.01 0.00 imp:pre:1p; +repêcha repêcher ver 3.27 4.05 0.00 0.20 ind:pas:3s; +repêchage repêchage nom m s 0.16 0.27 0.15 0.20 +repêchages repêchage nom m p 0.16 0.27 0.01 0.07 +repêchai repêcher ver 3.27 4.05 0.00 0.14 ind:pas:1s; +repêchait repêcher ver 3.27 4.05 0.01 0.34 ind:imp:3s; +repêchant repêcher ver 3.27 4.05 0.01 0.00 par:pre; +repêche repêcher ver 3.27 4.05 0.39 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repêcher repêcher ver 3.27 4.05 0.91 1.08 inf; +repêchera repêcher ver 3.27 4.05 0.11 0.07 ind:fut:3s; +repêcherait repêcher ver 3.27 4.05 0.02 0.07 cnd:pre:3s; +repêches repêcher ver 3.27 4.05 0.00 0.07 ind:pre:2s; +repêchèrent repêcher ver 3.27 4.05 0.00 0.07 ind:pas:3p; +repêché repêcher ver m s 3.27 4.05 1.27 0.81 par:pas; +repêchée repêcher ver f s 3.27 4.05 0.36 0.27 par:pas; +repêchées repêcher ver f p 3.27 4.05 0.00 0.07 par:pas; +repêchés repêcher ver m p 3.27 4.05 0.20 0.07 par:pas; +repue repu adj f s 1.10 3.18 0.17 0.47 +repues repu adj f p 1.10 3.18 0.14 0.27 +repuiser repuiser ver 0.00 0.07 0.00 0.07 inf; +repéra repérer ver 27.23 31.15 0.02 1.35 ind:pas:3s; +repérable repérable adj s 0.21 1.22 0.16 0.95 +repérables repérable adj f p 0.21 1.22 0.05 0.27 +repérage repérage nom m s 1.75 1.15 1.62 0.88 +repérages repérage nom m p 1.75 1.15 0.14 0.27 +repéraient repérer ver 27.23 31.15 0.00 0.20 ind:imp:3p; +repérais repérer ver 27.23 31.15 0.05 0.14 ind:imp:1s; +repérait repérer ver 27.23 31.15 0.08 1.22 ind:imp:3s; +repérant repérer ver 27.23 31.15 0.02 0.47 par:pre; +repérer repérer ver 27.23 31.15 7.92 9.93 inf; +repérera repérer ver 27.23 31.15 0.14 0.00 ind:fut:3s; +repérerai repérer ver 27.23 31.15 0.02 0.00 ind:fut:1s; +repéreraient repérer ver 27.23 31.15 0.01 0.07 cnd:pre:3p; +repérerais repérer ver 27.23 31.15 0.01 0.00 cnd:pre:2s; +repérerait repérer ver 27.23 31.15 0.01 0.07 cnd:pre:3s; +repérerons repérer ver 27.23 31.15 0.01 0.00 ind:fut:1p; +repéreront repérer ver 27.23 31.15 0.07 0.07 ind:fut:3p; +repéreur repéreur nom m s 0.05 0.00 0.05 0.00 +repérez repérer ver 27.23 31.15 0.75 0.00 imp:pre:2p;ind:pre:2p; +repériez repérer ver 27.23 31.15 0.03 0.00 ind:imp:2p; +repérions repérer ver 27.23 31.15 0.00 0.20 ind:imp:1p; +repérèrent repérer ver 27.23 31.15 0.00 0.20 ind:pas:3p; +repéré repérer ver m s 27.23 31.15 9.98 10.27 par:pas; +repérée repérer ver f s 27.23 31.15 1.44 1.49 par:pas; +repérées repérer ver f p 27.23 31.15 0.11 0.34 par:pas; +repérés repérer ver m p 27.23 31.15 3.52 2.30 par:pas; +repus repu adj m p 1.10 3.18 0.25 0.95 +repétrir repétrir ver 0.00 0.20 0.00 0.07 inf; +repétrissait repétrir ver 0.00 0.20 0.00 0.07 ind:imp:3s; +repétrit repétrir ver 0.00 0.20 0.00 0.07 ind:pas:3s; +requalifier requalifier ver 0.01 0.00 0.01 0.00 inf; +requiem requiem nom m s 2.76 0.68 2.76 0.61 +requiems requiem nom m p 2.76 0.68 0.00 0.07 +requiers requérir ver 6.24 6.35 0.76 0.00 ind:pre:1s; +requiert requérir ver 6.24 6.35 2.33 0.95 ind:pre:3s; +requiescat_in_pace requiescat_in_pace nom m s 0.00 0.07 0.00 0.07 +requin_baleine requin_baleine nom m s 0.01 0.00 0.01 0.00 +requin_tigre requin_tigre nom m s 0.04 0.00 0.04 0.00 +requin requin nom m s 12.24 4.80 8.15 1.62 +requinqua requinquer ver 1.30 1.89 0.00 0.20 ind:pas:3s; +requinquait requinquer ver 1.30 1.89 0.00 0.07 ind:imp:3s; +requinque requinquer ver 1.30 1.89 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +requinquent requinquer ver 1.30 1.89 0.01 0.07 ind:pre:3p; +requinquer requinquer ver 1.30 1.89 0.66 0.27 inf; +requinquera requinquer ver 1.30 1.89 0.19 0.00 ind:fut:3s; +requinquerait requinquer ver 1.30 1.89 0.02 0.00 cnd:pre:3s; +requinqué requinquer ver m s 1.30 1.89 0.04 0.81 par:pas; +requinquée requinquer ver f s 1.30 1.89 0.03 0.20 par:pas; +requinqués requinquer ver m p 1.30 1.89 0.14 0.00 par:pas; +requin_marteau requin_marteau nom m p 0.00 0.07 0.00 0.07 +requins requin nom m p 12.24 4.80 4.09 3.18 +requis requérir ver m 6.24 6.35 1.63 2.57 par:pas; +requise requis adj f s 1.17 0.68 0.61 0.20 +requises requis adj f p 1.17 0.68 0.45 0.27 +requière requérir ver 6.24 6.35 0.10 0.00 sub:pre:3s; +requièrent requérir ver 6.24 6.35 0.20 0.41 ind:pre:3p; +requéraient requérir ver 6.24 6.35 0.00 0.14 ind:imp:3p; +requérais requérir ver 6.24 6.35 0.00 0.07 ind:imp:1s; +requérait requérir ver 6.24 6.35 0.03 0.47 ind:imp:3s; +requérant requérir ver 6.24 6.35 0.13 0.20 par:pre; +requérante requérant nom f s 0.16 0.00 0.02 0.00 +requérants requérant nom m p 0.16 0.00 0.01 0.00 +requérir requérir ver 6.24 6.35 0.14 0.41 inf; +requérons requérir ver 6.24 6.35 0.04 0.07 imp:pre:1p;ind:pre:1p; +requête requête nom f s 8.82 1.96 7.75 1.69 +requêtes requête nom f p 8.82 1.96 1.07 0.27 +resalir resalir ver 0.01 0.00 0.01 0.00 inf; +resape resaper ver 0.00 0.34 0.00 0.07 ind:pre:1s; +resapent resaper ver 0.00 0.34 0.00 0.07 ind:pre:3p; +resapée resaper ver f s 0.00 0.34 0.00 0.14 par:pas; +resapés resaper ver m p 0.00 0.34 0.00 0.07 par:pas; +rescaper rescaper ver 0.34 1.82 0.00 0.07 inf; +rescapes rescaper ver 0.34 1.82 0.03 0.00 ind:pre:2s; +rescapé rescapé nom m s 1.70 4.93 0.89 1.69 +rescapée rescapé nom f s 1.70 4.93 0.18 0.47 +rescapées rescapé adj f p 0.12 1.89 0.00 0.27 +rescapés rescapé nom m p 1.70 4.93 0.63 2.70 +rescision rescision nom f s 0.00 0.07 0.00 0.07 +rescousse rescousse nom f s 1.43 3.18 1.43 3.18 +rescrit rescrit nom m s 0.00 0.14 0.00 0.14 +reservir reservir ver 0.04 0.00 0.04 0.00 inf; +reset reset nom m s 0.05 0.00 0.05 0.00 +resocialisation resocialisation nom f s 0.01 0.00 0.01 0.00 +resongeait resonger ver 0.00 0.27 0.00 0.14 ind:imp:3s; +resonger resonger ver 0.00 0.27 0.00 0.14 inf; +respect respect nom m s 54.78 43.85 50.47 42.43 +respecta respecter ver 65.41 33.58 0.01 0.20 ind:pas:3s; +respectabilité respectabilité nom f s 1.22 2.30 1.22 2.30 +respectable respectable adj s 7.03 6.82 5.73 5.20 +respectables respectable adj p 7.03 6.82 1.30 1.62 +respectai respecter ver 65.41 33.58 0.00 0.07 ind:pas:1s; +respectaient respecter ver 65.41 33.58 0.34 1.49 ind:imp:3p; +respectais respecter ver 65.41 33.58 0.75 0.88 ind:imp:1s;ind:imp:2s; +respectait respecter ver 65.41 33.58 1.49 3.45 ind:imp:3s; +respectant respecter ver 65.41 33.58 0.66 1.89 par:pre; +respecte respecter ver 65.41 33.58 21.80 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +respectent respecter ver 65.41 33.58 4.49 1.69 ind:pre:3p; +respecter respecter ver 65.41 33.58 17.54 10.14 inf; +respectera respecter ver 65.41 33.58 0.67 0.41 ind:fut:3s; +respecterai respecter ver 65.41 33.58 0.58 0.00 ind:fut:1s; +respecteraient respecter ver 65.41 33.58 0.01 0.07 cnd:pre:3p; +respecterais respecter ver 65.41 33.58 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +respecterait respecter ver 65.41 33.58 0.14 0.20 cnd:pre:3s; +respecteras respecter ver 65.41 33.58 0.68 0.00 ind:fut:2s; +respecterez respecter ver 65.41 33.58 0.16 0.00 ind:fut:2p; +respecterons respecter ver 65.41 33.58 0.31 0.07 ind:fut:1p; +respecteront respecter ver 65.41 33.58 0.53 0.07 ind:fut:3p; +respectes respecter ver 65.41 33.58 2.68 0.27 ind:pre:2s; +respectez respecter ver 65.41 33.58 3.22 0.95 imp:pre:2p;ind:pre:2p; +respectiez respecter ver 65.41 33.58 0.33 0.07 ind:imp:2p; +respectif respectif adj m s 1.17 7.70 0.02 0.41 +respectifs respectif adj m p 1.17 7.70 0.63 3.92 +respections respecter ver 65.41 33.58 0.06 0.34 ind:imp:1p; +respective respectif adj f s 1.17 7.70 0.03 0.54 +respectivement respectivement adv 0.16 4.26 0.16 4.26 +respectives respectif adj f p 1.17 7.70 0.49 2.84 +respectons respecter ver 65.41 33.58 1.75 0.34 imp:pre:1p;ind:pre:1p; +respectât respecter ver 65.41 33.58 0.00 0.20 sub:imp:3s; +respects respect nom m p 54.78 43.85 4.32 1.42 +respecté respecter ver m s 65.41 33.58 4.79 2.84 par:pas; +respectée respecter ver f s 65.41 33.58 1.10 0.81 par:pas; +respectées respecter ver f p 65.41 33.58 0.68 0.41 par:pas; +respectueuse respectueux adj f s 4.17 8.92 0.52 3.18 +respectueusement respectueusement adv 0.79 3.85 0.79 3.85 +respectueuses respectueux adj f p 4.17 8.92 0.17 0.34 +respectueux respectueux adj m 4.17 8.92 3.47 5.41 +respectés respecté adj m p 3.58 3.45 0.65 0.74 +respir respir nom m s 0.00 0.14 0.00 0.14 +respira respirer ver 76.08 102.43 0.11 8.78 ind:pas:3s; +respirable respirable adj s 0.45 0.88 0.44 0.81 +respirables respirable adj m p 0.45 0.88 0.01 0.07 +respirai respirer ver 76.08 102.43 0.02 1.01 ind:pas:1s; +respiraient respirer ver 76.08 102.43 0.03 1.28 ind:imp:3p; +respirais respirer ver 76.08 102.43 0.86 4.32 ind:imp:1s;ind:imp:2s; +respirait respirer ver 76.08 102.43 2.40 17.43 ind:imp:3s; +respirant respirer ver 76.08 102.43 0.69 7.57 par:pre; +respirateur respirateur nom m s 1.68 0.34 1.64 0.34 +respirateurs respirateur nom m p 1.68 0.34 0.04 0.00 +respiration respiration nom f s 9.56 31.82 9.19 28.65 +respirations respiration nom f p 9.56 31.82 0.38 3.18 +respiratoire respiratoire adj s 3.73 1.49 2.26 0.88 +respiratoires respiratoire adj p 3.73 1.49 1.48 0.61 +respire respirer ver 76.08 102.43 29.20 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +respirent respirer ver 76.08 102.43 1.17 2.09 ind:pre:3p; +respirer respirer ver 76.08 102.43 27.58 33.51 inf; +respirera respirer ver 76.08 102.43 0.11 0.20 ind:fut:3s; +respirerai respirer ver 76.08 102.43 0.08 0.34 ind:fut:1s; +respirerais respirer ver 76.08 102.43 0.04 0.14 cnd:pre:1s; +respirerait respirer ver 76.08 102.43 0.11 0.27 cnd:pre:3s; +respireras respirer ver 76.08 102.43 0.16 0.00 ind:fut:2s; +respirerez respirer ver 76.08 102.43 0.02 0.00 ind:fut:2p; +respirerons respirer ver 76.08 102.43 0.00 0.07 ind:fut:1p; +respireront respirer ver 76.08 102.43 0.05 0.07 ind:fut:3p; +respires respirer ver 76.08 102.43 1.88 0.54 ind:pre:2s; +respirez respirer ver 76.08 102.43 9.23 0.68 imp:pre:2p;ind:pre:2p; +respiriez respirer ver 76.08 102.43 0.11 0.00 ind:imp:2p; +respirions respirer ver 76.08 102.43 0.14 0.34 ind:imp:1p; +respirons respirer ver 76.08 102.43 0.96 1.15 imp:pre:1p;ind:pre:1p; +respirât respirer ver 76.08 102.43 0.00 0.07 sub:imp:3s; +respirèrent respirer ver 76.08 102.43 0.01 0.07 ind:pas:3p; +respiré respirer ver m s 76.08 102.43 1.07 4.12 par:pas; +respirée respirer ver f s 76.08 102.43 0.02 0.41 par:pas; +respirées respirer ver f p 76.08 102.43 0.01 0.07 par:pas; +respirés respirer ver m p 76.08 102.43 0.03 0.14 par:pas; +resplendi resplendir ver m s 2.42 4.66 0.00 0.14 par:pas; +resplendir resplendir ver 2.42 4.66 0.32 0.61 inf; +resplendira resplendir ver 2.42 4.66 0.58 0.00 ind:fut:3s; +resplendiraient resplendir ver 2.42 4.66 0.00 0.07 cnd:pre:3p; +resplendirent resplendir ver 2.42 4.66 0.00 0.07 ind:pas:3p; +resplendis resplendir ver 2.42 4.66 0.11 0.07 ind:pre:1s;ind:pre:2s; +resplendissaient resplendir ver 2.42 4.66 0.00 0.27 ind:imp:3p; +resplendissait resplendir ver 2.42 4.66 0.49 1.49 ind:imp:3s; +resplendissant resplendissant adj m s 1.85 1.89 0.30 0.41 +resplendissante resplendissant adj f s 1.85 1.89 1.12 0.95 +resplendissantes resplendissant adj f p 1.85 1.89 0.07 0.27 +resplendissants resplendissant adj m p 1.85 1.89 0.35 0.27 +resplendisse resplendir ver 2.42 4.66 0.16 0.07 sub:pre:3s; +resplendissement resplendissement nom m s 0.00 0.07 0.00 0.07 +resplendissent resplendir ver 2.42 4.66 0.00 0.27 ind:pre:3p; +resplendissez resplendir ver 2.42 4.66 0.21 0.00 ind:pre:2p; +resplendit resplendir ver 2.42 4.66 0.52 1.22 ind:pre:3s;ind:pas:3s; +responsabilisation responsabilisation nom f s 0.01 0.00 0.01 0.00 +responsabilise responsabiliser ver 0.30 0.07 0.00 0.07 ind:pre:1s; +responsabiliser responsabiliser ver 0.30 0.07 0.30 0.00 inf; +responsabilité responsabilité nom f s 37.46 28.72 26.04 18.11 +responsabilités responsabilité nom f p 37.46 28.72 11.42 10.61 +responsable responsable adj s 46.01 21.82 40.66 17.43 +responsables responsable adj p 46.01 21.82 5.35 4.39 +resquillaient resquiller ver 0.45 0.68 0.00 0.07 ind:imp:3p; +resquillant resquiller ver 0.45 0.68 0.03 0.14 par:pre; +resquille resquiller ver 0.45 0.68 0.23 0.14 ind:pre:1s;ind:pre:3s; +resquiller resquiller ver 0.45 0.68 0.14 0.34 inf; +resquillera resquiller ver 0.45 0.68 0.01 0.00 ind:fut:3s; +resquilles resquiller ver 0.45 0.68 0.01 0.00 ind:pre:2s; +resquilleur resquilleur adj m s 0.10 0.07 0.10 0.07 +resquilleurs resquilleur nom m p 0.24 0.61 0.17 0.41 +resquilleuse resquilleur nom f s 0.24 0.61 0.01 0.00 +resquilleuses resquilleur nom f p 0.24 0.61 0.00 0.07 +resquillé resquiller ver m s 0.45 0.68 0.03 0.00 par:pas; +ressac ressac nom m s 0.14 4.39 0.14 4.32 +ressacs ressac nom m p 0.14 4.39 0.00 0.07 +ressaie ressayer ver 0.17 0.00 0.05 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressaisît ressaisir ver 5.87 7.77 0.00 0.07 sub:imp:3s; +ressaisi ressaisir ver m s 5.87 7.77 0.22 0.81 par:pas; +ressaisie ressaisir ver f s 5.87 7.77 0.06 0.47 par:pas; +ressaisir ressaisir ver 5.87 7.77 1.26 2.57 inf; +ressaisira ressaisir ver 5.87 7.77 0.10 0.14 ind:fut:3s; +ressaisirais ressaisir ver 5.87 7.77 0.01 0.00 cnd:pre:1s; +ressaisis ressaisir ver m p 5.87 7.77 3.06 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +ressaisissaient ressaisir ver 5.87 7.77 0.00 0.07 ind:imp:3p; +ressaisissais ressaisir ver 5.87 7.77 0.01 0.07 ind:imp:1s; +ressaisissait ressaisir ver 5.87 7.77 0.01 0.14 ind:imp:3s; +ressaisissant ressaisir ver 5.87 7.77 0.00 0.20 par:pre; +ressaisisse ressaisir ver 5.87 7.77 0.02 0.34 sub:pre:1s;sub:pre:3s; +ressaisissement ressaisissement nom m s 0.00 0.07 0.00 0.07 +ressaisisses ressaisir ver 5.87 7.77 0.05 0.00 sub:pre:2s; +ressaisissez ressaisir ver 5.87 7.77 0.86 0.20 imp:pre:2p;ind:pre:2p; +ressaisissions ressaisir ver 5.87 7.77 0.00 0.07 ind:imp:1p; +ressaisissons ressaisir ver 5.87 7.77 0.03 0.07 imp:pre:1p; +ressaisit ressaisir ver 5.87 7.77 0.17 1.96 ind:pre:3s;ind:pas:3s; +ressassaient ressasser ver 1.31 5.27 0.00 0.14 ind:imp:3p; +ressassais ressasser ver 1.31 5.27 0.01 0.14 ind:imp:1s;ind:imp:2s; +ressassait ressasser ver 1.31 5.27 0.01 1.28 ind:imp:3s; +ressassant ressasser ver 1.31 5.27 0.05 0.54 par:pre; +ressasse ressasser ver 1.31 5.27 0.27 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressassement ressassement nom m s 0.00 0.47 0.00 0.47 +ressassent ressasser ver 1.31 5.27 0.01 0.20 ind:pre:3p; +ressasser ressasser ver 1.31 5.27 0.77 1.28 inf; +ressasseur ressasseur nom m s 0.00 0.07 0.00 0.07 +ressassez ressasser ver 1.31 5.27 0.00 0.07 ind:pre:2p; +ressassions ressasser ver 1.31 5.27 0.00 0.07 ind:imp:1p; +ressassèrent ressasser ver 1.31 5.27 0.01 0.00 ind:pas:3p; +ressassé ressasser ver m s 1.31 5.27 0.16 0.41 par:pas; +ressassée ressasser ver f s 1.31 5.27 0.00 0.14 par:pas; +ressassées ressasser ver f p 1.31 5.27 0.01 0.14 par:pas; +ressassés ressasser ver m p 1.31 5.27 0.02 0.54 par:pas; +ressaut ressaut nom m s 0.01 1.15 0.01 0.74 +ressauter ressauter ver 0.09 0.00 0.07 0.00 inf; +ressauts ressaut nom m p 0.01 1.15 0.00 0.41 +ressauté ressauter ver m s 0.09 0.00 0.01 0.00 par:pas; +ressayer ressayer ver 0.17 0.00 0.12 0.00 inf; +ressembla ressembler ver 148.60 157.50 0.00 1.01 ind:pas:3s; +ressemblaient ressembler ver 148.60 157.50 2.17 15.54 ind:imp:3p; +ressemblais ressembler ver 148.60 157.50 2.23 1.15 ind:imp:1s;ind:imp:2s; +ressemblait ressembler ver 148.60 157.50 13.41 54.26 ind:imp:3s; +ressemblance ressemblance nom f s 5.02 10.54 4.46 9.26 +ressemblances ressemblance nom f p 5.02 10.54 0.56 1.28 +ressemblant ressemblant adj m s 2.07 2.77 1.57 1.49 +ressemblante ressemblant adj f s 2.07 2.77 0.29 0.61 +ressemblantes ressemblant adj f p 2.07 2.77 0.14 0.20 +ressemblants ressemblant adj m p 2.07 2.77 0.06 0.47 +ressemblassent ressembler ver 148.60 157.50 0.00 0.14 sub:imp:3p; +ressemble ressembler ver 148.60 157.50 83.47 40.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +ressemblent ressembler ver 148.60 157.50 11.21 13.18 ind:pre:3p; +ressembler ressembler ver 148.60 157.50 11.44 18.72 inf; +ressemblera ressembler ver 148.60 157.50 1.14 0.68 ind:fut:3s; +ressemblerai ressembler ver 148.60 157.50 0.09 0.14 ind:fut:1s; +ressembleraient ressembler ver 148.60 157.50 0.05 0.27 cnd:pre:3p; +ressemblerais ressembler ver 148.60 157.50 0.53 0.00 cnd:pre:1s;cnd:pre:2s; +ressemblerait ressembler ver 148.60 157.50 1.12 2.16 cnd:pre:3s; +ressembleras ressembler ver 148.60 157.50 0.21 0.07 ind:fut:2s; +ressemblerez ressembler ver 148.60 157.50 0.05 0.07 ind:fut:2p; +ressembleront ressembler ver 148.60 157.50 0.28 0.14 ind:fut:3p; +ressembles ressembler ver 148.60 157.50 11.93 1.01 ind:pre:2s;sub:pre:2s; +ressemblez ressembler ver 148.60 157.50 6.92 1.35 imp:pre:2p;ind:pre:2p; +ressembliez ressembler ver 148.60 157.50 0.26 0.14 ind:imp:2p; +ressemblions ressembler ver 148.60 157.50 0.03 0.61 ind:imp:1p; +ressemblons ressembler ver 148.60 157.50 0.89 0.74 ind:pre:1p; +ressemblât ressembler ver 148.60 157.50 0.01 1.28 sub:imp:3s; +ressemblèrent ressembler ver 148.60 157.50 0.00 0.20 ind:pas:3p; +ressemblé ressembler ver m s 148.60 157.50 0.17 1.49 par:pas; +ressemelage ressemelage nom m s 0.00 0.41 0.00 0.27 +ressemelages ressemelage nom m p 0.00 0.41 0.00 0.14 +ressemelait ressemeler ver 0.02 0.34 0.00 0.07 ind:imp:3s; +ressemeler ressemeler ver 0.02 0.34 0.02 0.14 inf; +ressemellent ressemeler ver 0.02 0.34 0.00 0.07 ind:pre:3p; +ressemelée ressemeler ver f s 0.02 0.34 0.00 0.07 par:pas; +ressemer ressemer ver 0.01 0.00 0.01 0.00 inf; +ressens ressentir ver 78.78 70.14 27.91 5.68 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressent ressentir ver 78.78 70.14 10.23 7.23 ind:pre:3s; +ressentîmes ressentir ver 78.78 70.14 0.00 0.07 ind:pas:1p; +ressentît ressentir ver 78.78 70.14 0.00 0.34 sub:imp:3s; +ressentaient ressentir ver 78.78 70.14 0.12 1.28 ind:imp:3p; +ressentais ressentir ver 78.78 70.14 2.72 5.81 ind:imp:1s;ind:imp:2s; +ressentait ressentir ver 78.78 70.14 1.66 12.77 ind:imp:3s; +ressentant ressentir ver 78.78 70.14 0.08 0.61 par:pre; +ressente ressentir ver 78.78 70.14 0.72 0.47 sub:pre:1s;sub:pre:3s; +ressentent ressentir ver 78.78 70.14 2.49 1.28 ind:pre:3p; +ressentes ressentir ver 78.78 70.14 0.41 0.00 sub:pre:2s; +ressentez ressentir ver 78.78 70.14 6.70 0.27 imp:pre:2p;ind:pre:2p; +ressenti ressentir ver m s 78.78 70.14 11.36 10.68 par:pas; +ressentie ressentir ver f s 78.78 70.14 0.60 2.64 par:pas; +ressenties ressentir ver f p 78.78 70.14 0.07 0.34 par:pas; +ressentiez ressentir ver 78.78 70.14 0.50 0.00 ind:imp:2p; +ressentiment ressentiment nom m s 1.83 5.00 1.56 4.59 +ressentiments ressentiment nom m p 1.83 5.00 0.27 0.41 +ressentions ressentir ver 78.78 70.14 0.04 0.34 ind:imp:1p; +ressentir ressentir ver 78.78 70.14 9.76 10.54 inf; +ressentira ressentir ver 78.78 70.14 0.26 0.00 ind:fut:3s; +ressentirai ressentir ver 78.78 70.14 0.11 0.00 ind:fut:1s; +ressentirais ressentir ver 78.78 70.14 0.42 0.14 cnd:pre:1s;cnd:pre:2s; +ressentirait ressentir ver 78.78 70.14 0.16 0.14 cnd:pre:3s; +ressentiras ressentir ver 78.78 70.14 0.06 0.07 ind:fut:2s; +ressentirent ressentir ver 78.78 70.14 0.00 0.27 ind:pas:3p; +ressentirez ressentir ver 78.78 70.14 0.16 0.00 ind:fut:2p; +ressentiriez ressentir ver 78.78 70.14 0.17 0.00 cnd:pre:2p; +ressentirions ressentir ver 78.78 70.14 0.01 0.00 cnd:pre:1p; +ressentiront ressentir ver 78.78 70.14 0.04 0.07 ind:fut:3p; +ressentis ressentir ver m p 78.78 70.14 0.66 3.24 ind:pas:1s;par:pas; +ressentit ressentir ver 78.78 70.14 0.45 5.74 ind:pas:3s; +ressentons ressentir ver 78.78 70.14 0.90 0.14 imp:pre:1p;ind:pre:1p; +resserra resserrer ver 3.74 11.08 0.00 1.01 ind:pas:3s; +resserrage resserrage nom m s 0.10 0.00 0.10 0.00 +resserraient resserrer ver 3.74 11.08 0.02 0.34 ind:imp:3p; +resserrait resserrer ver 3.74 11.08 0.02 1.82 ind:imp:3s; +resserrant resserrer ver 3.74 11.08 0.00 0.61 par:pre; +resserre resserrer ver 3.74 11.08 1.15 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +resserrement resserrement nom m s 0.00 1.15 0.00 1.15 +resserrent resserrer ver 3.74 11.08 0.35 0.95 ind:pre:3p; +resserrer resserrer ver 3.74 11.08 1.19 2.23 inf; +resserrera resserrer ver 3.74 11.08 0.04 0.07 ind:fut:3s; +resserrerai resserrer ver 3.74 11.08 0.01 0.14 ind:fut:1s; +resserrerait resserrer ver 3.74 11.08 0.02 0.07 cnd:pre:3s; +resserres resserrer ver 3.74 11.08 0.02 0.00 ind:pre:2s; +resserrez resserrer ver 3.74 11.08 0.45 0.00 imp:pre:2p;ind:pre:2p; +resserrions resserrer ver 3.74 11.08 0.00 0.07 ind:imp:1p; +resserrons resserrer ver 3.74 11.08 0.02 0.07 imp:pre:1p;ind:pre:1p; +resserrèrent resserrer ver 3.74 11.08 0.00 0.20 ind:pas:3p; +resserré resserrer ver m s 3.74 11.08 0.42 0.95 par:pas; +resserrée resserrer ver f s 3.74 11.08 0.01 0.34 par:pas; +resserrées resserrer ver f p 3.74 11.08 0.01 0.41 par:pas; +resserrés resserré adj m p 0.06 1.69 0.04 0.54 +ressers resservir ver 2.25 3.04 1.13 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressert resservir ver 2.25 3.04 0.07 0.27 ind:pre:3s; +resservais resservir ver 2.25 3.04 0.01 0.00 ind:imp:2s; +resservait resservir ver 2.25 3.04 0.01 0.47 ind:imp:3s; +resservez resservir ver 2.25 3.04 0.17 0.00 imp:pre:2p;ind:pre:2p; +resservi resservir ver m s 2.25 3.04 0.06 0.68 par:pas; +resservir resservir ver 2.25 3.04 0.58 0.81 inf; +resservirai resservir ver 2.25 3.04 0.02 0.00 ind:fut:1s; +resservirais resservir ver 2.25 3.04 0.10 0.00 cnd:pre:1s; +resservirait resservir ver 2.25 3.04 0.00 0.14 cnd:pre:3s; +resservis resservir ver m p 2.25 3.04 0.10 0.07 par:pas; +resservit resservir ver 2.25 3.04 0.00 0.34 ind:pas:3s; +ressors ressortir ver 15.23 31.69 1.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressort ressort nom m s 6.95 20.54 5.69 13.65 +ressortîmes ressortir ver 15.23 31.69 0.00 0.14 ind:pas:1p; +ressortaient ressortir ver 15.23 31.69 0.05 1.35 ind:imp:3p; +ressortais ressortir ver 15.23 31.69 0.04 0.20 ind:imp:1s;ind:imp:2s; +ressortait ressortir ver 15.23 31.69 0.12 4.19 ind:imp:3s; +ressortant ressortir ver 15.23 31.69 0.08 0.95 par:pre; +ressorte ressortir ver 15.23 31.69 0.41 0.20 sub:pre:1s;sub:pre:3s; +ressortent ressortir ver 15.23 31.69 0.79 1.22 ind:pre:3p; +ressortes ressortir ver 15.23 31.69 0.03 0.00 sub:pre:2s; +ressortez ressortir ver 15.23 31.69 0.22 0.20 imp:pre:2p;ind:pre:2p; +ressorti ressortir ver m s 15.23 31.69 1.91 2.84 par:pas; +ressortie ressortir ver f s 15.23 31.69 1.27 1.22 par:pas; +ressorties ressortir ver f p 15.23 31.69 0.04 0.14 par:pas; +ressortions ressortir ver 15.23 31.69 0.02 0.20 ind:imp:1p; +ressortir ressortir ver 15.23 31.69 4.64 7.91 inf; +ressortira ressortir ver 15.23 31.69 0.26 0.41 ind:fut:3s; +ressortirai ressortir ver 15.23 31.69 0.37 0.00 ind:fut:1s; +ressortiraient ressortir ver 15.23 31.69 0.00 0.07 cnd:pre:3p; +ressortirais ressortir ver 15.23 31.69 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +ressortirait ressortir ver 15.23 31.69 0.09 0.14 cnd:pre:3s; +ressortiras ressortir ver 15.23 31.69 0.17 0.14 ind:fut:2s; +ressortirent ressortir ver 15.23 31.69 0.01 0.54 ind:pas:3p; +ressortirez ressortir ver 15.23 31.69 0.03 0.00 ind:fut:2p; +ressortiront ressortir ver 15.23 31.69 0.05 0.07 ind:fut:3p; +ressortis ressortir ver m p 15.23 31.69 0.43 1.01 ind:pas:1s;par:pas; +ressortissant ressortissant nom m s 0.46 1.49 0.11 0.47 +ressortissante ressortissant nom f s 0.46 1.49 0.01 0.14 +ressortissants ressortissant nom m p 0.46 1.49 0.34 0.88 +ressortit ressortir ver 15.23 31.69 0.26 4.05 ind:pas:3s; +ressortons ressortir ver 15.23 31.69 0.04 0.00 imp:pre:1p;ind:pre:1p; +ressorts ressort nom m p 6.95 20.54 1.27 6.89 +ressoudant ressouder ver 0.39 1.01 0.00 0.07 par:pre; +ressoude ressouder ver 0.39 1.01 0.01 0.07 ind:pre:3s; +ressouder ressouder ver 0.39 1.01 0.20 0.41 inf; +ressoudé ressouder ver m s 0.39 1.01 0.01 0.27 par:pas; +ressoudée ressouder ver f s 0.39 1.01 0.12 0.14 par:pas; +ressoudés ressouder ver m p 0.39 1.01 0.04 0.07 par:pas; +ressource ressource nom f s 8.81 22.50 1.13 5.95 +ressourcement ressourcement nom m s 0.01 0.07 0.01 0.07 +ressourcer ressourcer ver 0.40 0.47 0.40 0.27 ind:pre:2p;inf; +ressources ressource nom f p 8.81 22.50 7.68 16.55 +ressourcé ressourcer ver m s 0.40 0.47 0.00 0.07 par:pas; +ressourçais ressourcer ver 0.40 0.47 0.00 0.07 ind:imp:1s; +ressourçait ressourcer ver 0.40 0.47 0.00 0.07 ind:imp:3s; +ressouvenait ressouvenir ver 0.68 0.88 0.00 0.14 ind:imp:3s; +ressouvenant ressouvenir ver 0.68 0.88 0.00 0.07 par:pre; +ressouvenir ressouvenir ver 0.68 0.88 0.68 0.47 inf; +ressouvenue ressouvenir ver f s 0.68 0.88 0.00 0.07 par:pas; +ressouviens ressouvenir ver 0.68 0.88 0.00 0.07 ind:pre:1s; +ressouvint ressouvenir ver 0.68 0.88 0.00 0.07 ind:pas:3s; +ressui ressui nom m s 0.00 0.07 0.00 0.07 +ressuiement ressuiement nom m s 0.00 0.07 0.00 0.07 +ressurgi ressurgir ver m s 0.70 1.55 0.04 0.34 par:pas; +ressurgie ressurgir ver f s 0.70 1.55 0.00 0.14 par:pas; +ressurgir ressurgir ver 0.70 1.55 0.36 0.41 inf; +ressurgirait ressurgir ver 0.70 1.55 0.00 0.07 cnd:pre:3s; +ressurgirent ressurgir ver 0.70 1.55 0.00 0.07 ind:pas:3p; +ressurgiront ressurgir ver 0.70 1.55 0.02 0.00 ind:fut:3p; +ressurgissait ressurgir ver 0.70 1.55 0.01 0.14 ind:imp:3s; +ressurgissant ressurgir ver 0.70 1.55 0.00 0.20 par:pre; +ressurgissent ressurgir ver 0.70 1.55 0.09 0.00 ind:pre:3p; +ressurgit ressurgir ver 0.70 1.55 0.18 0.20 ind:pre:3s; +ressuscita ressusciter ver 11.44 17.91 0.06 0.27 ind:pas:3s; +ressuscitai ressusciter ver 11.44 17.91 0.00 0.14 ind:pas:1s; +ressuscitaient ressusciter ver 11.44 17.91 0.02 0.95 ind:imp:3p; +ressuscitais ressusciter ver 11.44 17.91 0.01 0.20 ind:imp:1s; +ressuscitait ressusciter ver 11.44 17.91 0.11 1.35 ind:imp:3s; +ressuscitant ressusciter ver 11.44 17.91 0.03 0.68 par:pre; +ressuscite ressusciter ver 11.44 17.91 0.82 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressuscitent ressusciter ver 11.44 17.91 0.51 1.08 ind:pre:3p; +ressusciter ressusciter ver 11.44 17.91 2.94 4.80 inf; +ressuscitera ressusciter ver 11.44 17.91 1.03 0.27 ind:fut:3s; +ressusciterai ressusciter ver 11.44 17.91 0.11 0.07 ind:fut:1s; +ressusciteraient ressusciter ver 11.44 17.91 0.01 0.20 cnd:pre:3p; +ressusciterait ressusciter ver 11.44 17.91 0.29 0.47 cnd:pre:3s; +ressusciteras ressusciter ver 11.44 17.91 0.00 0.07 ind:fut:2s; +ressusciterez ressusciter ver 11.44 17.91 0.01 0.07 ind:fut:2p; +ressusciterons ressusciter ver 11.44 17.91 0.27 0.14 ind:fut:1p; +ressusciteront ressusciter ver 11.44 17.91 0.06 0.14 ind:fut:3p; +ressuscites ressusciter ver 11.44 17.91 0.22 0.07 ind:pre:2s; +ressuscitez ressusciter ver 11.44 17.91 0.27 0.00 imp:pre:2p;ind:pre:2p; +ressuscitons ressusciter ver 11.44 17.91 0.01 0.00 imp:pre:1p; +ressuscitât ressusciter ver 11.44 17.91 0.00 0.07 sub:imp:3s; +ressuscité ressusciter ver m s 11.44 17.91 3.86 3.72 par:pas; +ressuscitée ressusciter ver f s 11.44 17.91 0.56 0.81 par:pas; +ressuscitées ressusciter ver f p 11.44 17.91 0.01 0.20 par:pas; +ressuscités ressusciter ver m p 11.44 17.91 0.23 0.74 par:pas; +ressué ressuer ver m s 0.00 0.07 0.00 0.07 par:pas; +ressuyé ressuyer ver m s 0.00 0.34 0.00 0.20 par:pas; +ressuyée ressuyer ver f s 0.00 0.34 0.00 0.14 par:pas; +resta rester ver 1003.57 793.78 3.53 52.70 ind:pas:3s; +restai rester ver 1003.57 793.78 1.27 13.92 ind:pas:1s; +restaient rester ver 1003.57 793.78 2.81 32.23 ind:imp:3p; +restais rester ver 1003.57 793.78 4.84 13.58 ind:imp:1s;ind:imp:2s; +restait rester ver 1003.57 793.78 18.34 152.64 ind:imp:3s; +restant restant nom m s 5.74 5.68 5.54 5.41 +restante restant adj f s 2.42 3.24 0.83 1.35 +restantes restant adj f p 2.42 3.24 0.28 0.47 +restants restant adj m p 2.42 3.24 0.81 0.14 +restassent rester ver 1003.57 793.78 0.00 0.27 sub:imp:3p; +restau restau nom m s 3.65 2.50 3.31 2.09 +restaura restaurer ver 6.31 9.26 0.00 0.07 ind:pas:3s; +restaurait restaurer ver 6.31 9.26 0.04 0.34 ind:imp:3s; +restaurant restaurant nom m s 50.04 48.99 44.29 38.85 +restaurants restaurant nom m p 50.04 48.99 5.75 10.14 +restaurateur restaurateur nom m s 1.25 2.57 1.09 1.62 +restaurateurs restaurateur nom m p 1.25 2.57 0.09 0.61 +restauration restauration nom f s 2.96 5.27 2.90 5.07 +restaurations restauration nom f p 2.96 5.27 0.06 0.20 +restauratrice restaurateur nom f s 1.25 2.57 0.07 0.34 +restaure restaurer ver 6.31 9.26 1.24 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +restaurent restaurer ver 6.31 9.26 0.23 0.14 ind:pre:3p; +restaurer restaurer ver 6.31 9.26 2.20 4.32 inf;; +restaurera restaurer ver 6.31 9.26 0.01 0.00 ind:fut:3s; +restaurerai restaurer ver 6.31 9.26 0.01 0.00 ind:fut:1s; +restaureraient restaurer ver 6.31 9.26 0.00 0.07 cnd:pre:3p; +restaurerait restaurer ver 6.31 9.26 0.01 0.07 cnd:pre:3s; +restaurez restaurer ver 6.31 9.26 0.22 0.00 imp:pre:2p;ind:pre:2p; +restaurons restaurer ver 6.31 9.26 0.03 0.00 imp:pre:1p; +restauroute restauroute nom m s 0.00 0.41 0.00 0.41 +restauré restaurer ver m s 6.31 9.26 0.93 1.49 par:pas; +restaurée restaurer ver f s 6.31 9.26 0.49 0.81 par:pas; +restaurées restaurer ver f p 6.31 9.26 0.14 0.47 par:pas; +restaurés restaurer ver m p 6.31 9.26 0.05 0.14 par:pas; +restaus restau nom m p 3.65 2.50 0.34 0.41 +reste rester ver 1003.57 793.78 320.44 153.99 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +restent rester ver 1003.57 793.78 21.75 25.20 ind:pre:3p; +rester rester ver 1003.57 793.78 310.37 123.78 inf;;inf;;inf;; +restera rester ver 1003.57 793.78 25.73 15.68 ind:fut:3s; +resterai rester ver 1003.57 793.78 11.80 3.85 ind:fut:1s; +resteraient rester ver 1003.57 793.78 0.43 3.04 cnd:pre:3p; +resterais rester ver 1003.57 793.78 4.68 2.50 cnd:pre:1s;cnd:pre:2s; +resterait rester ver 1003.57 793.78 5.30 12.09 cnd:pre:3s; +resteras rester ver 1003.57 793.78 6.32 1.82 ind:fut:2s; +resterez rester ver 1003.57 793.78 5.75 1.35 ind:fut:2p; +resteriez rester ver 1003.57 793.78 1.00 0.20 cnd:pre:2p; +resterions rester ver 1003.57 793.78 0.05 0.61 cnd:pre:1p; +resterons rester ver 1003.57 793.78 3.63 1.49 ind:fut:1p; +resteront rester ver 1003.57 793.78 3.98 2.23 ind:fut:3p; +restes rester ver 1003.57 793.78 44.15 6.28 ind:pre:2s;sub:pre:2s; +restez rester ver 1003.57 793.78 105.52 10.81 imp:pre:2p;ind:pre:2p; +restiez rester ver 1003.57 793.78 4.42 1.01 ind:imp:2p; +restions rester ver 1003.57 793.78 0.94 4.86 ind:imp:1p; +restituaient restituer ver 2.44 9.39 0.00 0.14 ind:imp:3p; +restituait restituer ver 2.44 9.39 0.00 1.49 ind:imp:3s; +restituant restituer ver 2.44 9.39 0.00 0.61 par:pre; +restitue restituer ver 2.44 9.39 0.43 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +restituent restituer ver 2.44 9.39 0.02 0.27 ind:pre:3p; +restituer restituer ver 2.44 9.39 1.10 2.84 inf; +restituera restituer ver 2.44 9.39 0.02 0.14 ind:fut:3s; +restituerai restituer ver 2.44 9.39 0.03 0.00 ind:fut:1s; +restituerait restituer ver 2.44 9.39 0.00 0.20 cnd:pre:3s; +restituerons restituer ver 2.44 9.39 0.14 0.07 ind:fut:1p; +restituez restituer ver 2.44 9.39 0.04 0.00 imp:pre:2p; +restituiez restituer ver 2.44 9.39 0.00 0.07 ind:imp:2p; +restitution restitution nom f s 0.28 0.88 0.28 0.88 +restitué restituer ver m s 2.44 9.39 0.38 0.81 par:pas; +restituée restituer ver f s 2.44 9.39 0.20 0.61 par:pas; +restituées restituer ver f p 2.44 9.39 0.04 0.27 par:pas; +restitués restituer ver m p 2.44 9.39 0.03 0.34 par:pas; +resto resto nom m s 10.47 1.62 9.36 1.42 +restâmes rester ver 1003.57 793.78 0.04 3.04 ind:pas:1p; +restons rester ver 1003.57 793.78 16.36 6.82 imp:pre:1p;ind:pre:1p; +restoroute restoroute nom m s 0.16 0.14 0.16 0.14 +restos resto nom m p 10.47 1.62 1.10 0.20 +restât rester ver 1003.57 793.78 0.03 4.19 sub:imp:3s; +restreignait restreindre ver 1.14 2.30 0.00 0.07 ind:imp:3s; +restreignant restreindre ver 1.14 2.30 0.02 0.07 par:pre; +restreignent restreindre ver 1.14 2.30 0.00 0.07 ind:pre:3p; +restreignez restreindre ver 1.14 2.30 0.01 0.00 ind:pre:2p; +restreignit restreindre ver 1.14 2.30 0.00 0.07 ind:pas:3s; +restreindre restreindre ver 1.14 2.30 0.30 0.41 inf; +restreins restreindre ver 1.14 2.30 0.04 0.00 imp:pre:2s;ind:pre:1s; +restreint restreindre ver m s 1.14 2.30 0.58 0.68 ind:pre:3s;par:pas; +restreinte restreint adj f s 0.54 5.41 0.20 1.42 +restreintes restreint adj f p 0.54 5.41 0.03 0.34 +restreints restreint adj m p 0.54 5.41 0.01 0.74 +restrictif restrictif adj m s 0.80 0.20 0.20 0.07 +restriction restriction nom f s 1.94 6.69 1.07 2.36 +restrictions restriction nom f p 1.94 6.69 0.88 4.32 +restrictive restrictif adj f s 0.80 0.20 0.58 0.07 +restrictives restrictif adj f p 0.80 0.20 0.02 0.07 +restructurant restructurer ver 0.94 0.07 0.01 0.00 par:pre; +restructuration restructuration nom f s 0.91 0.34 0.91 0.20 +restructurations restructuration nom f p 0.91 0.34 0.00 0.07 +restructurer restructurer ver 0.94 0.07 0.45 0.00 inf; +restructureront restructurer ver 0.94 0.07 0.01 0.00 ind:fut:3p; +restructurons restructurer ver 0.94 0.07 0.00 0.07 ind:pre:1p; +restructuré restructurer ver m s 0.94 0.07 0.34 0.00 par:pas; +restructurée restructurer ver f s 0.94 0.07 0.13 0.00 par:pas; +restèrent rester ver 1003.57 793.78 0.45 14.19 ind:pas:3p; +resté rester ver m s 1003.57 793.78 43.45 62.09 par:pas; +restée rester ver f s 1003.57 793.78 19.08 31.08 ind:imp:3p;par:pas; +restées rester ver f p 1003.57 793.78 1.62 6.01 par:pas; +restés rester ver m p 1003.57 793.78 10.74 21.08 par:pas; +resucée resucée nom f s 0.03 0.14 0.03 0.14 +resurgît resurgir ver 0.85 3.92 0.00 0.07 sub:imp:3s; +resurgi resurgir ver m s 0.85 3.92 0.04 0.20 par:pas; +resurgies resurgir ver f p 0.85 3.92 0.00 0.14 par:pas; +resurgir resurgir ver 0.85 3.92 0.39 1.42 inf; +resurgira resurgir ver 0.85 3.92 0.05 0.07 ind:fut:3s; +resurgirai resurgir ver 0.85 3.92 0.01 0.00 ind:fut:1s; +resurgirait resurgir ver 0.85 3.92 0.01 0.07 cnd:pre:3s; +resurgirent resurgir ver 0.85 3.92 0.00 0.07 ind:pas:3p; +resurgiront resurgir ver 0.85 3.92 0.00 0.07 ind:fut:3p; +resurgis resurgir ver m p 0.85 3.92 0.00 0.07 par:pas; +resurgissaient resurgir ver 0.85 3.92 0.00 0.20 ind:imp:3p; +resurgissait resurgir ver 0.85 3.92 0.01 0.41 ind:imp:3s; +resurgissant resurgir ver 0.85 3.92 0.01 0.14 par:pre; +resurgisse resurgir ver 0.85 3.92 0.03 0.07 sub:pre:3s; +resurgissent resurgir ver 0.85 3.92 0.02 0.34 ind:pre:3p; +resurgit resurgir ver 0.85 3.92 0.28 0.61 ind:pre:3s;ind:pas:3s; +retînmes retenir ver 71.58 143.92 0.00 0.14 ind:pas:1p; +retînt retenir ver 71.58 143.92 0.00 0.34 sub:imp:3s; +retable retable nom m s 0.34 1.15 0.24 0.81 +retables retable nom m p 0.34 1.15 0.10 0.34 +retaillaient retailler ver 0.05 1.01 0.00 0.07 ind:imp:3p; +retaillait retailler ver 0.05 1.01 0.00 0.07 ind:imp:3s; +retaille retailler ver 0.05 1.01 0.00 0.14 ind:pre:1s;ind:pre:3s; +retailler retailler ver 0.05 1.01 0.02 0.27 inf; +retaillé retailler ver m s 0.05 1.01 0.01 0.27 par:pas; +retaillée retailler ver f s 0.05 1.01 0.00 0.07 par:pas; +retaillées retailler ver f p 0.05 1.01 0.01 0.07 par:pas; +retaillés retailler ver m p 0.05 1.01 0.00 0.07 par:pas; +retapa retaper ver 3.50 4.05 0.00 0.14 ind:pas:3s; +retapaient retaper ver 3.50 4.05 0.00 0.07 ind:imp:3p; +retapait retaper ver 3.50 4.05 0.01 0.14 ind:imp:3s; +retapant retaper ver 3.50 4.05 0.00 0.14 par:pre; +retape retaper ver 3.50 4.05 0.36 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retapent retaper ver 3.50 4.05 0.01 0.07 ind:pre:3p; +retaper retaper ver 3.50 4.05 1.60 1.28 inf; +retaperait retaper ver 3.50 4.05 0.00 0.07 cnd:pre:3s; +retapeur retapeur nom m s 0.01 0.00 0.01 0.00 +retapez retaper ver 3.50 4.05 0.08 0.00 imp:pre:2p;ind:pre:2p; +retapissant retapisser ver 0.32 3.31 0.00 0.07 par:pre; +retapisse retapisser ver 0.32 3.31 0.25 0.95 ind:pre:1s;ind:pre:3s; +retapissent retapisser ver 0.32 3.31 0.00 0.27 ind:pre:3p; +retapisser retapisser ver 0.32 3.31 0.05 0.88 inf; +retapisserait retapisser ver 0.32 3.31 0.00 0.07 cnd:pre:3s; +retapisses retapisser ver 0.32 3.31 0.00 0.07 ind:pre:2s; +retapissé retapisser ver m s 0.32 3.31 0.03 0.61 par:pas; +retapissée retapisser ver f s 0.32 3.31 0.00 0.34 par:pas; +retapissées retapisser ver f p 0.32 3.31 0.00 0.07 par:pas; +retapé retaper ver m s 3.50 4.05 1.14 1.01 par:pas; +retapée retaper ver f s 3.50 4.05 0.28 0.47 par:pas; +retapées retaper ver f p 3.50 4.05 0.00 0.14 par:pas; +retapés retaper ver m p 3.50 4.05 0.01 0.07 par:pas; +retard retard nom m s 126.45 46.62 125.65 43.45 +retarda retarder ver 11.89 14.53 0.00 0.47 ind:pas:3s; +retardaient retarder ver 11.89 14.53 0.01 0.54 ind:imp:3p; +retardais retarder ver 11.89 14.53 0.17 0.27 ind:imp:1s;ind:imp:2s; +retardait retarder ver 11.89 14.53 0.21 1.08 ind:imp:3s; +retardant retarder ver 11.89 14.53 0.03 0.88 par:pre; +retardataire retardataire adj s 0.33 0.68 0.32 0.47 +retardataires retardataire nom p 0.70 1.01 0.52 0.88 +retardateur retardateur nom m s 0.14 0.00 0.14 0.00 +retarde retarder ver 11.89 14.53 1.95 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retardement retardement nom m s 1.61 2.03 1.61 2.03 +retardent retarder ver 11.89 14.53 0.36 0.47 ind:pre:3p; +retarder retarder ver 11.89 14.53 3.09 4.46 inf;; +retardera retarder ver 11.89 14.53 0.24 0.00 ind:fut:3s; +retarderai retarder ver 11.89 14.53 0.04 0.14 ind:fut:1s; +retarderaient retarder ver 11.89 14.53 0.02 0.07 cnd:pre:3p; +retarderait retarder ver 11.89 14.53 0.10 0.41 cnd:pre:3s; +retarderez retarder ver 11.89 14.53 0.01 0.00 ind:fut:2p; +retarderiez retarder ver 11.89 14.53 0.01 0.00 cnd:pre:2p; +retardes retarder ver 11.89 14.53 0.87 0.14 ind:pre:2s; +retardez retarder ver 11.89 14.53 0.56 0.20 imp:pre:2p;ind:pre:2p; +retardions retarder ver 11.89 14.53 0.00 0.07 ind:imp:1p; +retardons retarder ver 11.89 14.53 0.20 0.14 imp:pre:1p;ind:pre:1p; +retardât retarder ver 11.89 14.53 0.00 0.07 sub:imp:3s; +retards retard nom m p 126.45 46.62 0.81 3.18 +retardèrent retarder ver 11.89 14.53 0.00 0.07 ind:pas:3p; +retardé retarder ver m s 11.89 14.53 2.90 2.36 par:pas; +retardée retarder ver f s 11.89 14.53 0.67 1.01 par:pas; +retardées retarder ver f p 11.89 14.53 0.06 0.07 par:pas; +retardés retarder ver m p 11.89 14.53 0.39 0.07 par:pas; +reteindre reteindre ver 0.12 0.20 0.11 0.07 inf; +reteints reteindre ver m p 0.12 0.20 0.01 0.14 par:pas; +retenaient retenir ver 71.58 143.92 0.42 4.66 ind:imp:3p; +retenais retenir ver 71.58 143.92 0.34 2.23 ind:imp:1s;ind:imp:2s; +retenait retenir ver 71.58 143.92 1.10 15.34 ind:imp:3s; +retenant retenir ver 71.58 143.92 0.70 8.78 par:pre; +retendait retendre ver 0.16 0.61 0.00 0.20 ind:imp:3s; +retendre retendre ver 0.16 0.61 0.01 0.20 inf; +retends retendre ver 0.16 0.61 0.00 0.07 ind:pre:2s; +retendu retendre ver m s 0.16 0.61 0.15 0.07 par:pas; +retendues retendre ver f p 0.16 0.61 0.00 0.07 par:pas; +retenez retenir ver 71.58 143.92 6.15 0.88 imp:pre:2p;ind:pre:2p; +reteniez retenir ver 71.58 143.92 0.05 0.07 ind:imp:2p; +retenions retenir ver 71.58 143.92 0.02 0.34 ind:imp:1p; +retenir retenir ver 71.58 143.92 19.63 38.65 inf; +retenons retenir ver 71.58 143.92 0.19 0.14 imp:pre:1p;ind:pre:1p; +retente retenter ver 0.70 0.00 0.23 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retenter retenter ver 0.70 0.00 0.44 0.00 inf; +retentes retenter ver 0.70 0.00 0.04 0.00 ind:pre:2s; +retenti retentir ver m s 2.86 25.34 0.48 2.16 par:pas; +retentir retentir ver 2.86 25.34 0.27 3.58 inf; +retentira retentir ver 2.86 25.34 0.15 0.20 ind:fut:3s; +retentirait retentir ver 2.86 25.34 0.00 0.34 cnd:pre:3s; +retentirent retentir ver 2.86 25.34 0.00 1.62 ind:pas:3p; +retentiront retentir ver 2.86 25.34 0.04 0.07 ind:fut:3p; +retentissaient retentir ver 2.86 25.34 0.00 1.76 ind:imp:3p; +retentissait retentir ver 2.86 25.34 0.04 2.43 ind:imp:3s; +retentissant retentissant adj m s 0.20 2.50 0.14 1.01 +retentissante retentissant adj f s 0.20 2.50 0.03 0.68 +retentissantes retentissant adj f p 0.20 2.50 0.00 0.20 +retentissants retentissant adj m p 0.20 2.50 0.03 0.61 +retentisse retentir ver 2.86 25.34 0.03 0.14 sub:pre:3s; +retentissement retentissement nom m s 0.02 1.55 0.02 1.55 +retentissent retentir ver 2.86 25.34 0.19 1.22 ind:pre:3p; +retentit retentir ver 2.86 25.34 1.62 11.01 ind:pre:3s;ind:pas:3s; +retenu retenir ver m s 71.58 143.92 10.20 21.22 par:pas; +retenue retenue nom f s 3.74 8.04 3.47 7.64 +retenues retenir ver f p 71.58 143.92 0.59 1.55 par:pas; +retenus retenir ver m p 71.58 143.92 0.98 4.12 par:pas; +reçûmes recevoir ver 192.73 224.46 0.01 0.54 ind:pas:1p; +reçût recevoir ver 192.73 224.46 0.01 0.54 sub:imp:3s; +reçois recevoir ver 192.73 224.46 17.48 7.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reçoit recevoir ver 192.73 224.46 14.90 14.19 ind:pre:3s; +reçoive recevoir ver 192.73 224.46 2.11 1.55 sub:pre:1s;sub:pre:3s; +reçoivent recevoir ver 192.73 224.46 3.08 4.19 ind:pre:3p;sub:pre:3p; +reçoives recevoir ver 192.73 224.46 0.20 0.00 sub:pre:2s; +reçu recevoir ver m s 192.73 224.46 76.46 56.15 par:pas; +reçue recevoir ver f s 192.73 224.46 4.55 7.03 par:pas; +reçues recevoir ver f p 192.73 224.46 1.29 3.18 par:pas; +reçurent recevoir ver 192.73 224.46 0.23 2.64 ind:pas:3p; +reçus recevoir ver m p 192.73 224.46 1.85 10.88 ind:pas:1s;ind:pas:2s;par:pas; +reçut recevoir ver 192.73 224.46 1.87 21.82 ind:pas:3s; +retiendra retenir ver 71.58 143.92 0.68 0.54 ind:fut:3s; +retiendrai retenir ver 71.58 143.92 1.05 0.54 ind:fut:1s; +retiendraient retenir ver 71.58 143.92 0.01 0.20 cnd:pre:3p; +retiendrais retenir ver 71.58 143.92 0.20 0.14 cnd:pre:1s;cnd:pre:2s; +retiendrait retenir ver 71.58 143.92 0.11 1.08 cnd:pre:3s; +retiendras retenir ver 71.58 143.92 0.20 0.00 ind:fut:2s; +retiendrez retenir ver 71.58 143.92 0.14 0.00 ind:fut:2p; +retiendrions retenir ver 71.58 143.92 0.00 0.07 cnd:pre:1p; +retiendrons retenir ver 71.58 143.92 0.08 0.07 ind:fut:1p; +retiendront retenir ver 71.58 143.92 0.14 0.07 ind:fut:3p; +retienne retenir ver 71.58 143.92 0.89 0.61 sub:pre:1s;sub:pre:3s; +retiennent retenir ver 71.58 143.92 1.69 3.58 ind:pre:3p; +retiennes retenir ver 71.58 143.92 0.22 0.00 sub:pre:2s; +retiens retenir ver 71.58 143.92 12.91 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +retient retenir ver 71.58 143.92 9.17 13.11 ind:pre:3s; +retinrent retenir ver 71.58 143.92 0.14 1.01 ind:pas:3p; +retins retenir ver 71.58 143.92 0.02 1.82 ind:pas:1s; +retint retenir ver 71.58 143.92 0.35 11.22 ind:pas:3s; +retira retirer ver 80.26 98.31 0.45 15.81 ind:pas:3s; +retirable retirable adj f s 0.01 0.00 0.01 0.00 +retirai retirer ver 80.26 98.31 0.01 1.76 ind:pas:1s; +retiraient retirer ver 80.26 98.31 0.14 1.69 ind:imp:3p; +retirais retirer ver 80.26 98.31 0.23 0.68 ind:imp:1s;ind:imp:2s; +retirait retirer ver 80.26 98.31 0.45 7.16 ind:imp:3s; +retirant retirer ver 80.26 98.31 0.38 3.58 par:pre; +retire retirer ver 80.26 98.31 21.56 14.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +retirement retirement nom m s 0.14 0.00 0.14 0.00 +retirent retirer ver 80.26 98.31 1.19 1.42 ind:pre:3p; +retirer retirer ver 80.26 98.31 27.39 21.96 ind:pre:2p;inf; +retirera retirer ver 80.26 98.31 0.72 0.68 ind:fut:3s; +retirerai retirer ver 80.26 98.31 0.38 0.54 ind:fut:1s; +retireraient retirer ver 80.26 98.31 0.28 0.34 cnd:pre:3p; +retirerais retirer ver 80.26 98.31 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +retirerait retirer ver 80.26 98.31 0.32 0.61 cnd:pre:3s; +retireras retirer ver 80.26 98.31 0.14 0.07 ind:fut:2s; +retirerez retirer ver 80.26 98.31 0.09 0.00 ind:fut:2p; +retireriez retirer ver 80.26 98.31 0.00 0.07 cnd:pre:2p; +retirerions retirer ver 80.26 98.31 0.00 0.07 cnd:pre:1p; +retirerons retirer ver 80.26 98.31 0.23 0.07 ind:fut:1p; +retireront retirer ver 80.26 98.31 0.32 0.14 ind:fut:3p; +retires retirer ver 80.26 98.31 1.45 0.27 ind:pre:2s; +retirez retirer ver 80.26 98.31 6.20 0.95 imp:pre:2p;ind:pre:2p; +retiriez retirer ver 80.26 98.31 0.24 0.07 ind:imp:2p; +retirions retirer ver 80.26 98.31 0.15 0.27 ind:imp:1p; +retiro retiro nom m s 0.10 0.07 0.10 0.07 +retirâmes retirer ver 80.26 98.31 0.01 0.07 ind:pas:1p; +retirons retirer ver 80.26 98.31 0.83 0.14 imp:pre:1p;ind:pre:1p; +retirât retirer ver 80.26 98.31 0.00 0.20 sub:imp:3s; +retirèrent retirer ver 80.26 98.31 0.21 1.55 ind:pas:3p; +retiré retirer ver m s 80.26 98.31 12.70 15.07 par:pas; +retirée retirer ver f s 80.26 98.31 2.02 4.73 par:pas; +retirées retirer ver f p 80.26 98.31 0.68 0.74 par:pas; +retirés retirer ver m p 80.26 98.31 1.36 2.77 par:pas; +retissaient retisser ver 0.00 0.34 0.00 0.07 ind:imp:3p; +retissait retisser ver 0.00 0.34 0.00 0.07 ind:imp:3s; +retisser retisser ver 0.00 0.34 0.00 0.20 inf; +retomba retomber ver 11.04 58.58 0.28 7.23 ind:pas:3s; +retombai retomber ver 11.04 58.58 0.00 0.27 ind:pas:1s; +retombaient retomber ver 11.04 58.58 0.15 3.45 ind:imp:3p; +retombais retomber ver 11.04 58.58 0.26 0.68 ind:imp:1s;ind:imp:2s; +retombait retomber ver 11.04 58.58 0.15 6.35 ind:imp:3s; +retombant retomber ver 11.04 58.58 0.02 2.84 par:pre; +retombante retombant adj f s 0.02 0.61 0.00 0.14 +retombantes retombant adj f p 0.02 0.61 0.00 0.14 +retombe retomber ver 11.04 58.58 3.89 9.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retombement retombement nom m s 0.00 0.14 0.00 0.14 +retombent retomber ver 11.04 58.58 0.70 2.70 ind:pre:3p; +retomber retomber ver 11.04 58.58 2.74 15.95 inf; +retombera retomber ver 11.04 58.58 0.69 0.68 ind:fut:3s; +retomberai retomber ver 11.04 58.58 0.06 0.00 ind:fut:1s; +retomberaient retomber ver 11.04 58.58 0.01 0.27 cnd:pre:3p; +retomberais retomber ver 11.04 58.58 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +retomberait retomber ver 11.04 58.58 0.27 0.47 cnd:pre:3s; +retomberas retomber ver 11.04 58.58 0.05 0.07 ind:fut:2s; +retomberez retomber ver 11.04 58.58 0.03 0.00 ind:fut:2p; +retomberont retomber ver 11.04 58.58 0.00 0.07 ind:fut:3p; +retombes retomber ver 11.04 58.58 0.25 0.14 ind:pre:2s; +retombez retomber ver 11.04 58.58 0.17 0.07 imp:pre:2p;ind:pre:2p; +retombions retomber ver 11.04 58.58 0.00 0.27 ind:imp:1p; +retombâmes retomber ver 11.04 58.58 0.00 0.14 ind:pas:1p; +retombons retomber ver 11.04 58.58 0.12 0.41 imp:pre:1p;ind:pre:1p; +retombât retomber ver 11.04 58.58 0.00 0.14 sub:imp:3s; +retombèrent retomber ver 11.04 58.58 0.00 0.81 ind:pas:3p; +retombé retomber ver m s 11.04 58.58 0.71 3.65 par:pas; +retombée retomber ver f s 11.04 58.58 0.28 1.96 par:pas; +retombées retombée nom f p 0.79 2.36 0.73 1.01 +retombés retomber ver m p 11.04 58.58 0.19 0.34 par:pas; +retordre retordre ver 1.29 0.61 1.29 0.61 inf; +retors retors adj m 0.53 1.69 0.48 1.28 +retorse retors adj f s 0.53 1.69 0.03 0.41 +retorses retors adj f p 0.53 1.69 0.02 0.00 +retâté retâter ver m s 0.00 0.07 0.00 0.07 par:pas; +retoucha retoucher ver 1.98 2.09 0.00 0.14 ind:pas:3s; +retouchai retoucher ver 1.98 2.09 0.00 0.14 ind:pas:1s; +retouchait retoucher ver 1.98 2.09 0.01 0.20 ind:imp:3s; +retouchant retoucher ver 1.98 2.09 0.00 0.14 par:pre; +retouche retouche nom f s 1.30 2.30 0.61 0.74 +retouchent retoucher ver 1.98 2.09 0.01 0.07 ind:pre:3p; +retoucher retoucher ver 1.98 2.09 1.10 0.54 inf; +retouchera retoucher ver 1.98 2.09 0.03 0.00 ind:fut:3s; +retoucherais retoucher ver 1.98 2.09 0.00 0.07 cnd:pre:1s; +retoucherait retoucher ver 1.98 2.09 0.00 0.14 cnd:pre:3s; +retouches retouche nom f p 1.30 2.30 0.69 1.55 +retoucheur retoucheur nom m s 0.01 0.00 0.01 0.00 +retouchez retoucher ver 1.98 2.09 0.07 0.00 imp:pre:2p;ind:pre:2p; +retouché retoucher ver m s 1.98 2.09 0.20 0.20 par:pas; +retouchée retoucher ver f s 1.98 2.09 0.22 0.14 par:pas; +retouchées retoucher ver f p 1.98 2.09 0.02 0.07 par:pas; +retouchés retoucher ver m p 1.98 2.09 0.02 0.20 par:pas; +retour retour nom m s 138.94 158.65 138.02 153.31 +retourna retourner ver 245.33 290.88 1.14 61.62 ind:pas:3s; +retournai retourner ver 245.33 290.88 0.22 6.55 ind:pas:1s; +retournaient retourner ver 245.33 290.88 0.15 4.80 ind:imp:3p; +retournais retourner ver 245.33 290.88 0.96 3.85 ind:imp:1s;ind:imp:2s; +retournait retourner ver 245.33 290.88 0.93 18.51 ind:imp:3s; +retournant retourner ver 245.33 290.88 0.69 16.89 par:pre; +retourne retourner ver 245.33 290.88 77.27 50.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +retournement retournement nom m s 0.86 2.91 0.82 2.30 +retournements retournement nom m p 0.86 2.91 0.04 0.61 +retournent retourner ver 245.33 290.88 2.29 5.00 ind:pre:3p; +retourner retourner ver 245.33 290.88 76.94 57.16 imp:pre:2p;inf; +retournera retourner ver 245.33 290.88 3.56 1.08 ind:fut:3s; +retournerai retourner ver 245.33 290.88 5.58 1.89 ind:fut:1s; +retourneraient retourner ver 245.33 290.88 0.14 0.68 cnd:pre:3p; +retournerais retourner ver 245.33 290.88 0.60 1.01 cnd:pre:1s;cnd:pre:2s; +retournerait retourner ver 245.33 290.88 0.77 1.96 cnd:pre:3s; +retourneras retourner ver 245.33 290.88 1.86 0.20 ind:fut:2s; +retournerez retourner ver 245.33 290.88 0.79 0.34 ind:fut:2p; +retourneriez retourner ver 245.33 290.88 0.13 0.00 cnd:pre:2p; +retournerions retourner ver 245.33 290.88 0.02 0.14 cnd:pre:1p; +retournerons retourner ver 245.33 290.88 0.98 0.68 ind:fut:1p; +retourneront retourner ver 245.33 290.88 0.73 0.41 ind:fut:3p; +retournes retourner ver 245.33 290.88 10.40 1.42 ind:pre:2s;sub:pre:2s; +retournez retourner ver 245.33 290.88 23.55 2.36 imp:pre:2p;ind:pre:2p; +retourniez retourner ver 245.33 290.88 0.80 0.20 ind:imp:2p; +retournions retourner ver 245.33 290.88 0.13 0.95 ind:imp:1p; +retournâmes retourner ver 245.33 290.88 0.00 0.81 ind:pas:1p; +retournons retourner ver 245.33 290.88 9.53 1.22 imp:pre:1p;ind:pre:1p; +retournât retourner ver 245.33 290.88 0.00 0.54 sub:imp:3s; +retournèrent retourner ver 245.33 290.88 0.17 4.39 ind:pas:3p; +retourné retourner ver m s 245.33 290.88 15.05 26.69 par:pas; +retournée retourner ver f s 245.33 290.88 7.81 11.82 par:pas; +retournées retourner ver f p 245.33 290.88 0.34 1.89 par:pas; +retournés retourner ver m p 245.33 290.88 1.79 5.27 par:pas; +retours retour nom m p 138.94 158.65 0.92 5.34 +retrace retracer ver 1.50 3.58 0.16 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retracent retracer ver 1.50 3.58 0.04 0.14 ind:pre:3p; +retracer retracer ver 1.50 3.58 1.03 1.55 inf; +retracera retracer ver 1.50 3.58 0.01 0.07 ind:fut:3s; +retracerais retracer ver 1.50 3.58 0.00 0.07 cnd:pre:1s; +retracerait retracer ver 1.50 3.58 0.01 0.07 cnd:pre:3s; +retraceront retracer ver 1.50 3.58 0.01 0.00 ind:fut:3p; +retracez retracer ver 1.50 3.58 0.05 0.00 imp:pre:2p; +retracions retracer ver 1.50 3.58 0.01 0.07 ind:imp:1p; +retracé retracer ver m s 1.50 3.58 0.13 0.14 par:pas; +retracée retracer ver f s 1.50 3.58 0.00 0.07 par:pas; +retraduction retraduction nom f s 0.01 0.00 0.01 0.00 +retraduit retraduire ver m s 0.01 0.14 0.01 0.14 ind:pre:3s;par:pas; +retraire retraire ver 0.12 0.07 0.01 0.00 inf; +retrait retrait nom m s 4.87 13.72 4.63 13.04 +retraitait retraiter ver 0.79 0.61 0.00 0.14 ind:imp:3s; +retraite retraite nom f s 39.45 40.14 38.30 38.78 +retraitement retraitement nom m s 0.06 0.07 0.06 0.07 +retraites retraite nom f p 39.45 40.14 1.16 1.35 +retraitions retraiter ver 0.79 0.61 0.00 0.07 ind:imp:1p; +retraits retrait nom m p 4.87 13.72 0.24 0.68 +retraité retraité nom m s 2.25 5.95 1.17 3.31 +retraitée retraité nom f s 2.25 5.95 0.11 0.14 +retraitées retraité nom f p 2.25 5.95 0.10 0.07 +retraités retraité nom m p 2.25 5.95 0.86 2.43 +retranchai retrancher ver 1.00 7.64 0.00 0.07 ind:pas:1s; +retranchaient retrancher ver 1.00 7.64 0.01 0.14 ind:imp:3p; +retranchait retrancher ver 1.00 7.64 0.00 0.68 ind:imp:3s; +retranchant retrancher ver 1.00 7.64 0.02 0.14 par:pre; +retranche retrancher ver 1.00 7.64 0.04 0.47 ind:pre:3s; +retranchement retranchement nom m s 0.20 1.69 0.03 0.41 +retranchements retranchement nom m p 0.20 1.69 0.17 1.28 +retranchent retrancher ver 1.00 7.64 0.04 0.34 ind:pre:3p; +retrancher retrancher ver 1.00 7.64 0.29 1.01 inf; +retranchera retrancher ver 1.00 7.64 0.01 0.07 ind:fut:3s; +retranchez retrancher ver 1.00 7.64 0.01 0.07 imp:pre:2p;ind:pre:2p; +retranchions retrancher ver 1.00 7.64 0.00 0.07 ind:imp:1p; +retranché retrancher ver m s 1.00 7.64 0.47 2.23 par:pas; +retranchée retrancher ver f s 1.00 7.64 0.02 1.08 par:pas; +retranchées retrancher ver f p 1.00 7.64 0.00 0.14 par:pas; +retranchés retrancher ver m p 1.00 7.64 0.09 1.15 par:pas; +retranscription retranscription nom f s 0.03 0.00 0.03 0.00 +retranscrire retranscrire ver 0.26 0.34 0.21 0.07 inf; +retranscris retranscrire ver 0.26 0.34 0.01 0.14 ind:pre:1s; +retranscrit retranscrire ver m s 0.26 0.34 0.04 0.07 ind:pre:3s;par:pas; +retranscrits retranscrire ver m p 0.26 0.34 0.00 0.07 par:pas; +retransforme retransformer ver 0.20 0.07 0.02 0.07 ind:pre:1s; +retransformer retransformer ver 0.20 0.07 0.16 0.00 inf; +retransformera retransformer ver 0.20 0.07 0.02 0.00 ind:fut:3s; +retransférer retransférer ver 0.01 0.00 0.01 0.00 inf; +retransmet retransmettre ver 1.03 0.74 0.05 0.07 ind:pre:3s; +retransmettait retransmettre ver 1.03 0.74 0.01 0.00 ind:imp:3s; +retransmettant retransmettre ver 1.03 0.74 0.01 0.00 par:pre; +retransmettez retransmettre ver 1.03 0.74 0.02 0.00 imp:pre:2p;ind:pre:2p; +retransmettra retransmettre ver 1.03 0.74 0.02 0.00 ind:fut:3s; +retransmettre retransmettre ver 1.03 0.74 0.25 0.00 inf; +retransmettrons retransmettre ver 1.03 0.74 0.11 0.00 ind:fut:1p; +retransmis retransmettre ver m 1.03 0.74 0.39 0.34 ind:pas:1s;par:pas;par:pas; +retransmise retransmettre ver f s 1.03 0.74 0.16 0.27 par:pas; +retransmission retransmission nom f s 0.47 0.47 0.36 0.34 +retransmissions retransmission nom f p 0.47 0.47 0.11 0.14 +retransmit retransmettre ver 1.03 0.74 0.01 0.07 ind:pas:3s; +retraçaient retracer ver 1.50 3.58 0.00 0.20 ind:imp:3p; +retraçais retracer ver 1.50 3.58 0.00 0.07 ind:imp:1s; +retraçait retracer ver 1.50 3.58 0.01 0.68 ind:imp:3s; +retraçant retracer ver 1.50 3.58 0.04 0.27 par:pre; +retravaillait retravailler ver 3.12 0.20 0.03 0.00 ind:imp:3s; +retravaille retravailler ver 3.12 0.20 0.65 0.00 ind:pre:1s;ind:pre:3s; +retravaillent retravailler ver 3.12 0.20 0.01 0.00 ind:pre:3p; +retravailler retravailler ver 3.12 0.20 1.89 0.14 inf; +retravaillera retravailler ver 3.12 0.20 0.05 0.00 ind:fut:3s; +retravaillerai retravailler ver 3.12 0.20 0.04 0.00 ind:fut:1s; +retravaillerait retravailler ver 3.12 0.20 0.03 0.00 cnd:pre:3s; +retravaillerez retravailler ver 3.12 0.20 0.01 0.00 ind:fut:2p; +retravailles retravailler ver 3.12 0.20 0.17 0.00 ind:pre:2s; +retravaillez retravailler ver 3.12 0.20 0.13 0.00 imp:pre:2p;ind:pre:2p; +retravaillé retravailler ver m s 3.12 0.20 0.09 0.07 par:pas; +retravaillée retravailler ver f s 3.12 0.20 0.02 0.00 par:pas; +retraversa retraverser ver 0.17 3.04 0.00 0.41 ind:pas:3s; +retraversai retraverser ver 0.17 3.04 0.00 0.20 ind:pas:1s; +retraversaient retraverser ver 0.17 3.04 0.00 0.07 ind:imp:3p; +retraversais retraverser ver 0.17 3.04 0.00 0.07 ind:imp:1s; +retraversait retraverser ver 0.17 3.04 0.00 0.07 ind:imp:3s; +retraversant retraverser ver 0.17 3.04 0.00 0.27 par:pre; +retraverse retraverser ver 0.17 3.04 0.03 0.27 ind:pre:1s;ind:pre:3s; +retraversent retraverser ver 0.17 3.04 0.00 0.07 ind:pre:3p; +retraverser retraverser ver 0.17 3.04 0.12 0.81 inf; +retraverserait retraverser ver 0.17 3.04 0.00 0.07 cnd:pre:3s; +retraversions retraverser ver 0.17 3.04 0.00 0.07 ind:imp:1p; +retraversons retraverser ver 0.17 3.04 0.01 0.20 imp:pre:1p;ind:pre:1p; +retraversé retraverser ver m s 0.17 3.04 0.01 0.27 par:pas; +retraversée retraverser ver f s 0.17 3.04 0.00 0.20 par:pas; +retreinte retreinte nom f s 0.01 0.00 0.01 0.00 +retrempai retremper ver 0.01 0.95 0.00 0.07 ind:pas:1s; +retrempaient retremper ver 0.01 0.95 0.01 0.14 ind:imp:3p; +retrempait retremper ver 0.01 0.95 0.00 0.07 ind:imp:3s; +retremper retremper ver 0.01 0.95 0.00 0.54 inf; +retrempé retremper ver m s 0.01 0.95 0.00 0.14 par:pas; +retriever retriever nom m s 0.17 0.00 0.17 0.00 +retroussa retrousser ver 0.92 9.46 0.01 0.54 ind:pas:3s; +retroussage retroussage nom m s 0.00 0.07 0.00 0.07 +retroussaient retrousser ver 0.92 9.46 0.00 0.20 ind:imp:3p; +retroussais retrousser ver 0.92 9.46 0.00 0.07 ind:imp:1s; +retroussait retrousser ver 0.92 9.46 0.00 1.28 ind:imp:3s; +retroussant retrousser ver 0.92 9.46 0.00 1.55 par:pre; +retrousse retrousser ver 0.92 9.46 0.39 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retroussent retrousser ver 0.92 9.46 0.00 0.27 ind:pre:3p; +retrousser retrousser ver 0.92 9.46 0.21 0.95 inf; +retroussette retroussette nom f s 0.00 0.27 0.00 0.27 +retroussez retrousser ver 0.92 9.46 0.14 0.00 imp:pre:2p; +retroussis retroussis nom m 0.00 0.41 0.00 0.41 +retroussé retroussé adj m s 0.35 6.49 0.20 1.89 +retroussée retroussé adj f s 0.35 6.49 0.01 1.08 +retroussées retroussé adj f p 0.35 6.49 0.03 3.11 +retroussés retroussé adj m p 0.35 6.49 0.11 0.41 +retrouva retrouver ver 295.09 416.22 1.60 28.24 ind:pas:3s; +retrouvai retrouver ver 295.09 416.22 0.32 13.85 ind:pas:1s; +retrouvaient retrouver ver 295.09 416.22 0.48 9.05 ind:imp:3p; +retrouvaille retrouvaille nom f s 2.46 6.82 0.03 0.47 +retrouvailles retrouvaille nom f p 2.46 6.82 2.43 6.35 +retrouvais retrouver ver 295.09 416.22 1.42 12.77 ind:imp:1s;ind:imp:2s; +retrouvait retrouver ver 295.09 416.22 1.89 31.01 ind:imp:3s; +retrouvant retrouver ver 295.09 416.22 0.47 9.86 par:pre; +retrouvas retrouver ver 295.09 416.22 0.00 0.07 ind:pas:2s; +retrouve retrouver ver 295.09 416.22 61.54 47.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +retrouvent retrouver ver 295.09 416.22 4.47 7.23 ind:pre:3p; +retrouver retrouver ver 295.09 416.22 100.83 125.20 inf;; +retrouvera retrouver ver 295.09 416.22 11.55 5.07 ind:fut:3s; +retrouverai retrouver ver 295.09 416.22 8.23 3.04 ind:fut:1s; +retrouveraient retrouver ver 295.09 416.22 0.26 2.43 cnd:pre:3p; +retrouverais retrouver ver 295.09 416.22 1.24 3.11 cnd:pre:1s;cnd:pre:2s; +retrouverait retrouver ver 295.09 416.22 1.17 6.62 cnd:pre:3s; +retrouveras retrouver ver 295.09 416.22 3.36 0.95 ind:fut:2s; +retrouverez retrouver ver 295.09 416.22 3.13 0.95 ind:fut:2p; +retrouveriez retrouver ver 295.09 416.22 0.09 0.27 cnd:pre:2p; +retrouverions retrouver ver 295.09 416.22 0.06 0.81 cnd:pre:1p; +retrouverons retrouver ver 295.09 416.22 2.52 2.30 ind:fut:1p; +retrouveront retrouver ver 295.09 416.22 2.21 1.42 ind:fut:3p; +retrouves retrouver ver 295.09 416.22 5.05 1.28 ind:pre:2s;sub:pre:2s; +retrouvez retrouver ver 295.09 416.22 5.79 0.81 imp:pre:2p;ind:pre:2p; +retrouviez retrouver ver 295.09 416.22 0.72 0.34 ind:imp:2p;sub:pre:2p; +retrouvions retrouver ver 295.09 416.22 0.47 5.41 ind:imp:1p; +retrouvâmes retrouver ver 295.09 416.22 0.04 2.16 ind:pas:1p; +retrouvons retrouver ver 295.09 416.22 3.60 3.85 imp:pre:1p;ind:pre:1p; +retrouvât retrouver ver 295.09 416.22 0.00 0.68 sub:imp:3s; +retrouvèrent retrouver ver 295.09 416.22 0.36 6.42 ind:pas:3p; +retrouvé retrouver ver m s 295.09 416.22 50.38 55.00 par:pas;par:pas;par:pas; +retrouvée retrouver ver f s 295.09 416.22 13.51 15.20 par:pas; +retrouvées retrouver ver f p 295.09 416.22 1.90 2.64 par:pas; +retrouvés retrouver ver m p 295.09 416.22 6.44 10.61 par:pas; +rets rets nom m 0.12 0.27 0.12 0.27 +retsina retsina nom m s 0.13 0.00 0.13 0.00 +retuber retuber ver 0.03 0.00 0.03 0.00 inf; +retuer retuer ver 0.08 0.07 0.01 0.00 inf; +retéléphone retéléphoner ver 0.29 0.07 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retéléphoner retéléphoner ver 0.29 0.07 0.15 0.00 inf; +reubeu reubeu nom m s 0.01 0.61 0.01 0.47 +reubeus reubeu nom m p 0.01 0.61 0.00 0.14 +revîmes revoir ver 162.83 139.46 0.10 0.20 ind:pas:1p; +revînt revenir ver 618.61 490.54 0.00 1.69 sub:imp:3s; +revalidation revalidation nom f s 0.01 0.00 0.01 0.00 +revalider revalider ver 0.02 0.00 0.02 0.00 inf; +revaloir revaloir ver 3.46 0.74 0.11 0.07 inf; +revalorisait revaloriser ver 0.03 0.34 0.00 0.14 ind:imp:3s; +revalorisation revalorisation nom f s 0.00 0.14 0.00 0.14 +revalorisent revaloriser ver 0.03 0.34 0.00 0.07 ind:pre:3p; +revaloriser revaloriser ver 0.03 0.34 0.02 0.00 inf; +revalorisé revaloriser ver m s 0.03 0.34 0.01 0.14 par:pas; +revancha revancher ver 0.00 0.34 0.00 0.07 ind:pas:3s; +revanchaient revancher ver 0.00 0.34 0.00 0.07 ind:imp:3p; +revanchard revanchard adj m s 0.06 0.34 0.04 0.14 +revancharde revanchard adj f s 0.06 0.34 0.02 0.07 +revanchardes revanchard adj f p 0.06 0.34 0.00 0.14 +revanchards revanchard nom m p 0.03 0.27 0.00 0.27 +revanche revanche nom f s 13.81 41.62 13.73 41.01 +revanchent revancher ver 0.00 0.34 0.00 0.07 ind:pre:3p; +revancher revancher ver 0.00 0.34 0.00 0.14 inf; +revanches revanche nom f p 13.81 41.62 0.08 0.61 +revaudra revaloir ver 3.46 0.74 0.25 0.07 ind:fut:3s; +revaudrai revaloir ver 3.46 0.74 2.80 0.54 ind:fut:1s; +revaudraient revaloir ver 3.46 0.74 0.01 0.00 cnd:pre:3p; +revaudrais revaloir ver 3.46 0.74 0.13 0.00 cnd:pre:1s;cnd:pre:2s; +revaudrait revaloir ver 3.46 0.74 0.02 0.07 cnd:pre:3s; +revaudras revaloir ver 3.46 0.74 0.13 0.00 ind:fut:2s; +revenaient revenir ver 618.61 490.54 1.27 17.64 ind:imp:3p; +revenais revenir ver 618.61 490.54 3.95 8.24 ind:imp:1s;ind:imp:2s; +revenait revenir ver 618.61 490.54 7.47 56.76 ind:imp:3s; +revenant revenir ver 618.61 490.54 4.49 17.23 par:pre; +revenante revenant adj f s 0.35 1.69 0.23 0.27 +revenants revenant nom m p 1.82 3.99 0.95 1.55 +revend revendre ver 6.76 6.89 0.51 0.14 ind:pre:3s; +revendable revendable adj s 0.01 0.07 0.01 0.07 +revendaient revendre ver 6.76 6.89 0.01 0.34 ind:imp:3p; +revendais revendre ver 6.76 6.89 0.02 0.00 ind:imp:1s; +revendait revendre ver 6.76 6.89 0.39 0.54 ind:imp:3s; +revendant revendre ver 6.76 6.89 0.09 0.07 par:pre; +revendent revendre ver 6.76 6.89 0.29 0.34 ind:pre:3p; +revendes revendre ver 6.76 6.89 0.00 0.07 sub:pre:2s; +revendeur revendeur nom m s 1.23 0.88 0.86 0.47 +revendeurs revendeur nom m p 1.23 0.88 0.34 0.34 +revendeuse revendeur nom f s 1.23 0.88 0.03 0.07 +revendez revendre ver 6.76 6.89 0.14 0.00 imp:pre:2p;ind:pre:2p; +revendicateur revendicateur adj m s 0.00 0.27 0.00 0.07 +revendicateurs revendicateur nom m p 0.00 0.07 0.00 0.07 +revendicatif revendicatif adj m s 0.00 0.27 0.00 0.07 +revendicatifs revendicatif adj m p 0.00 0.27 0.00 0.07 +revendication revendication nom f s 1.98 3.78 0.94 1.42 +revendications revendication nom f p 1.98 3.78 1.04 2.36 +revendicative revendicatif adj f s 0.00 0.27 0.00 0.07 +revendicatives revendicatif adj f p 0.00 0.27 0.00 0.07 +revendicatrice revendicateur adj f s 0.00 0.27 0.00 0.14 +revendicatrices revendicateur adj f p 0.00 0.27 0.00 0.07 +revendiqua revendiquer ver 2.89 5.07 0.01 0.07 ind:pas:3s; +revendiquai revendiquer ver 2.89 5.07 0.00 0.07 ind:pas:1s; +revendiquaient revendiquer ver 2.89 5.07 0.00 0.34 ind:imp:3p; +revendiquais revendiquer ver 2.89 5.07 0.02 0.20 ind:imp:1s;ind:imp:2s; +revendiquait revendiquer ver 2.89 5.07 0.03 0.61 ind:imp:3s; +revendiquant revendiquer ver 2.89 5.07 0.17 0.47 par:pre; +revendique revendiquer ver 2.89 5.07 0.73 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +revendiquent revendiquer ver 2.89 5.07 0.12 0.34 ind:pre:3p; +revendiquer revendiquer ver 2.89 5.07 0.82 1.42 inf; +revendiquera revendiquer ver 2.89 5.07 0.04 0.07 ind:fut:3s; +revendiquerais revendiquer ver 2.89 5.07 0.01 0.00 cnd:pre:2s; +revendiquerait revendiquer ver 2.89 5.07 0.00 0.07 cnd:pre:3s; +revendiquez revendiquer ver 2.89 5.07 0.02 0.14 imp:pre:2p;ind:pre:2p; +revendiquons revendiquer ver 2.89 5.07 0.02 0.14 imp:pre:1p;ind:pre:1p; +revendiquât revendiquer ver 2.89 5.07 0.00 0.07 sub:imp:3s; +revendiqué revendiquer ver m s 2.89 5.07 0.69 0.27 par:pas; +revendiquée revendiquer ver f s 2.89 5.07 0.20 0.07 par:pas; +revendis revendre ver 6.76 6.89 0.00 0.07 ind:pas:1s; +revendit revendre ver 6.76 6.89 0.00 0.47 ind:pas:3s; +revendra revendre ver 6.76 6.89 0.13 0.00 ind:fut:3s; +revendrai revendre ver 6.76 6.89 0.29 0.14 ind:fut:1s; +revendraient revendre ver 6.76 6.89 0.00 0.07 cnd:pre:3p; +revendrais revendre ver 6.76 6.89 0.13 0.00 cnd:pre:1s; +revendrait revendre ver 6.76 6.89 0.01 0.14 cnd:pre:3s; +revendre revendre ver 6.76 6.89 3.25 2.91 inf; +revendrons revendre ver 6.76 6.89 0.03 0.00 ind:fut:1p; +revendront revendre ver 6.76 6.89 0.03 0.00 ind:fut:3p; +revends revendre ver 6.76 6.89 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revendu revendre ver m s 6.76 6.89 0.55 0.95 par:pas; +revendue revendre ver f s 6.76 6.89 0.12 0.14 par:pas; +revendues revendre ver f p 6.76 6.89 0.28 0.00 par:pas; +revendus revendre ver m p 6.76 6.89 0.14 0.27 par:pas; +revenez revenir ver 618.61 490.54 33.64 6.49 imp:pre:2p;ind:pre:2p; +reveniez revenir ver 618.61 490.54 1.13 0.54 ind:imp:2p;sub:pre:2p; +revenions revenir ver 618.61 490.54 0.80 2.03 ind:imp:1p; +revenir revenir ver 618.61 490.54 105.46 76.28 inf; +revenons revenir ver 618.61 490.54 8.01 4.59 imp:pre:1p;ind:pre:1p; +revente revente nom f s 0.28 0.34 0.27 0.20 +reventes revente nom f p 0.28 0.34 0.01 0.14 +revenu revenir ver m s 618.61 490.54 57.30 42.43 par:pas; +revenue revenir ver f s 618.61 490.54 23.46 19.32 par:pas; +revenues revenir ver f p 618.61 490.54 1.50 2.03 par:pas; +revenus revenir ver m p 618.61 490.54 8.69 9.46 par:pas; +reverdi reverdir ver m s 0.17 1.08 0.14 0.20 par:pas; +reverdie reverdir ver f s 0.17 1.08 0.00 0.20 par:pas; +reverdies reverdir ver f p 0.17 1.08 0.00 0.14 par:pas; +reverdir reverdir ver 0.17 1.08 0.02 0.20 inf; +reverdiront reverdir ver 0.17 1.08 0.00 0.07 ind:fut:3p; +reverdissaient reverdir ver 0.17 1.08 0.00 0.14 ind:imp:3p; +reverdit reverdir ver 0.17 1.08 0.02 0.14 ind:pre:3s; +reverni revernir ver m s 0.03 0.00 0.01 0.00 par:pas; +revernie reverni ver f s 0.01 0.07 0.01 0.07 par:pas; +revernir revernir ver 0.03 0.00 0.01 0.00 inf; +reverra revoir ver 162.83 139.46 14.31 3.24 ind:fut:3s; +reverrai revoir ver 162.83 139.46 9.07 4.05 ind:fut:1s; +reverraient revoir ver 162.83 139.46 0.03 0.88 cnd:pre:3p; +reverrais revoir ver 162.83 139.46 1.15 1.76 cnd:pre:1s;cnd:pre:2s; +reverrait revoir ver 162.83 139.46 1.09 3.38 cnd:pre:3s; +reverras revoir ver 162.83 139.46 5.30 0.95 ind:fut:2s; +reverrez revoir ver 162.83 139.46 2.74 0.47 ind:fut:2p; +reverrions revoir ver 162.83 139.46 0.40 0.27 cnd:pre:1p; +reverrons revoir ver 162.83 139.46 5.41 2.77 ind:fut:1p; +reverront revoir ver 162.83 139.46 0.55 0.74 ind:fut:3p; +revers revers nom m 3.60 25.00 3.60 25.00 +reversa reverser ver 0.48 1.22 0.00 0.27 ind:pas:3s; +reversaient reverser ver 0.48 1.22 0.01 0.00 ind:imp:3p; +reversait reverser ver 0.48 1.22 0.02 0.07 ind:imp:3s; +reversant reverser ver 0.48 1.22 0.00 0.07 par:pre; +reverse reverser ver 0.48 1.22 0.08 0.34 imp:pre:2s;ind:pre:3s; +reverser reverser ver 0.48 1.22 0.09 0.14 inf; +reverserait reverser ver 0.48 1.22 0.00 0.07 cnd:pre:3s; +reversez reverser ver 0.48 1.22 0.11 0.00 imp:pre:2p; +reversé reverser ver m s 0.48 1.22 0.17 0.27 par:pas; +reveuille revouloir ver 0.45 0.41 0.00 0.07 sub:pre:1s; +reveulent revouloir ver 0.45 0.41 0.02 0.07 ind:pre:3p; +reveux revouloir ver 0.45 0.41 0.24 0.07 ind:pre:1s;ind:pre:2s; +revida revider ver 0.00 0.14 0.00 0.07 ind:pas:3s; +revidèrent revider ver 0.00 0.14 0.00 0.07 ind:pas:3p; +reviendra revenir ver 618.61 490.54 34.48 11.62 ind:fut:3s; +reviendrai revenir ver 618.61 490.54 29.57 8.65 ind:fut:1s; +reviendraient revenir ver 618.61 490.54 0.99 1.96 cnd:pre:3p; +reviendrais revenir ver 618.61 490.54 5.80 1.76 cnd:pre:1s;cnd:pre:2s; +reviendrait revenir ver 618.61 490.54 5.18 11.76 cnd:pre:3s; +reviendras revenir ver 618.61 490.54 7.64 2.09 ind:fut:2s; +reviendrez revenir ver 618.61 490.54 4.05 2.64 ind:fut:2p; +reviendriez revenir ver 618.61 490.54 0.70 0.34 cnd:pre:2p; +reviendrions revenir ver 618.61 490.54 0.11 0.27 cnd:pre:1p; +reviendrons revenir ver 618.61 490.54 4.21 1.82 ind:fut:1p; +reviendront revenir ver 618.61 490.54 5.40 3.45 ind:fut:3p; +revienne revenir ver 618.61 490.54 14.99 7.57 sub:pre:1s;sub:pre:3s; +reviennent revenir ver 618.61 490.54 15.50 14.86 ind:pre:3p;sub:pre:3p; +reviennes revenir ver 618.61 490.54 3.25 0.95 sub:pre:2s; +reviens revenir ver 618.61 490.54 163.19 22.36 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revient revenir ver 618.61 490.54 63.17 51.49 ind:pre:3s; +revigoraient revigorer ver 0.29 0.54 0.00 0.07 ind:imp:3p; +revigorant revigorant adj m s 0.28 0.74 0.28 0.20 +revigorante revigorant adj f s 0.28 0.74 0.01 0.41 +revigorantes revigorant adj f p 0.28 0.74 0.00 0.14 +revigore revigorer ver 0.29 0.54 0.04 0.07 ind:pre:3s; +revigorent revigorer ver 0.29 0.54 0.00 0.07 ind:pre:3p; +revigorer revigorer ver 0.29 0.54 0.11 0.07 inf; +revigoré revigorer ver m s 0.29 0.54 0.07 0.07 par:pas; +revigorée revigorer ver f s 0.29 0.54 0.01 0.07 par:pas; +revigorées revigorer ver f p 0.29 0.54 0.01 0.00 par:pas; +revinrent revenir ver 618.61 490.54 0.47 7.64 ind:pas:3p; +revins revenir ver 618.61 490.54 0.50 4.12 ind:pas:1s;ind:pas:2s; +revinssent revenir ver 618.61 490.54 0.00 0.07 sub:imp:3p; +revint revenir ver 618.61 490.54 2.24 70.41 ind:pas:3s; +revirement revirement nom m s 0.66 1.62 0.57 1.35 +revirements revirement nom m p 0.66 1.62 0.09 0.27 +revirent revoir ver 162.83 139.46 0.01 0.34 ind:pas:3p; +revirer revirer ver 0.01 0.34 0.01 0.00 inf; +revis revivre ver 10.37 20.68 1.16 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revisita revisiter ver 0.21 0.61 0.00 0.07 ind:pas:3s; +revisite revisiter ver 0.21 0.61 0.02 0.00 ind:pre:3s; +revisitent revisiter ver 0.21 0.61 0.00 0.07 ind:pre:3p; +revisiter revisiter ver 0.21 0.61 0.16 0.14 inf; +revisité revisiter ver m s 0.21 0.61 0.02 0.14 par:pas; +revisitée revisiter ver f s 0.21 0.61 0.01 0.14 par:pas; +revissa revisser ver 0.15 0.27 0.00 0.07 ind:pas:3s; +revisse revisser ver 0.15 0.27 0.01 0.07 ind:pre:1s; +revisser revisser ver 0.15 0.27 0.00 0.07 inf; +revissé revisser ver m s 0.15 0.27 0.14 0.00 par:pas; +revissées revisser ver f p 0.15 0.27 0.00 0.07 par:pas; +revit revivre ver 10.37 20.68 0.70 1.01 ind:pre:3s; +revitalisant revitalisant adj m s 0.04 0.00 0.04 0.00 +revitalisation revitalisation nom f s 0.04 0.07 0.04 0.07 +revitalise revitaliser ver 0.19 0.00 0.03 0.00 imp:pre:2s;ind:pre:3s; +revitaliser revitaliser ver 0.19 0.00 0.15 0.00 inf; +revitalisera revitaliser ver 0.19 0.00 0.01 0.00 ind:fut:3s; +revivaient revivre ver 10.37 20.68 0.01 0.47 ind:imp:3p; +revivais revivre ver 10.37 20.68 0.03 0.47 ind:imp:1s;ind:imp:2s; +revivait revivre ver 10.37 20.68 0.28 2.23 ind:imp:3s; +revival revival nom m s 0.14 0.00 0.14 0.00 +revivant revivre ver 10.37 20.68 0.12 0.95 par:pre; +revive revivre ver 10.37 20.68 0.47 0.07 sub:pre:1s;sub:pre:3s; +revivent revivre ver 10.37 20.68 0.57 0.34 ind:pre:3p; +revivez revivre ver 10.37 20.68 0.14 0.00 imp:pre:2p;ind:pre:2p; +revivifiant revivifier ver 0.06 0.20 0.04 0.00 par:pre; +revivifie revivifier ver 0.06 0.20 0.01 0.07 ind:pre:1s;ind:pre:3s; +revivifier revivifier ver 0.06 0.20 0.01 0.00 inf; +revivifié revivifié adj m s 0.00 0.07 0.00 0.07 +revivifiée revivifier ver f s 0.06 0.20 0.00 0.07 par:pas; +revivifiées revivifier ver f p 0.06 0.20 0.00 0.07 par:pas; +revivions revivre ver 10.37 20.68 0.01 0.07 ind:imp:1p; +reviviscence reviviscence nom f s 0.00 0.07 0.00 0.07 +revivons revivre ver 10.37 20.68 0.02 0.00 ind:pre:1p; +revivra revivre ver 10.37 20.68 0.13 0.20 ind:fut:3s; +revivrai revivre ver 10.37 20.68 0.14 0.14 ind:fut:1s; +revivraient revivre ver 10.37 20.68 0.01 0.14 cnd:pre:3p; +revivrais revivre ver 10.37 20.68 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +revivrait revivre ver 10.37 20.68 0.02 0.34 cnd:pre:3s; +revivras revivre ver 10.37 20.68 0.03 0.00 ind:fut:2s; +revivre revivre ver 10.37 20.68 6.04 8.45 inf; +revivrez revivre ver 10.37 20.68 0.05 0.00 ind:fut:2p; +revivrons revivre ver 10.37 20.68 0.14 0.07 ind:fut:1p; +revoici revoici pre 0.67 1.62 0.67 1.62 +revoie revoir ver 162.83 139.46 3.92 2.16 sub:pre:1s;sub:pre:3s; +revoient revoir ver 162.83 139.46 0.10 0.41 ind:pre:3p;sub:pre:3p; +revoies revoir ver 162.83 139.46 0.15 0.00 sub:pre:2s; +revoilà revoilà pre 7.56 3.04 7.56 3.04 +revoir revoir nom m s 262.05 36.01 262.05 36.01 +revois revoir ver 162.83 139.46 10.32 17.77 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revoit revoir ver 162.83 139.46 5.92 5.81 ind:pre:3s; +revolait revoler ver 0.08 0.20 0.00 0.07 ind:imp:3s; +revole revoler ver 0.08 0.20 0.01 0.07 ind:pre:3s; +revolent revoler ver 0.08 0.20 0.00 0.07 ind:pre:3p; +revoler revoler ver 0.08 0.20 0.03 0.00 inf; +revolera revoler ver 0.08 0.20 0.02 0.00 ind:fut:3s; +revolé revoler ver m s 0.08 0.20 0.02 0.00 par:pas; +revolver revolver nom m s 30.74 25.20 28.05 23.31 +revolvers revolver nom m p 30.74 25.20 2.69 1.89 +revomir revomir ver 0.01 0.07 0.01 0.00 inf; +revomissant revomir ver 0.01 0.07 0.00 0.07 par:pre; +revoter revoter ver 0.03 0.00 0.03 0.00 inf; +revoulait revouloir ver 0.45 0.41 0.01 0.14 ind:imp:3s; +revoulez revouloir ver 0.45 0.41 0.14 0.00 ind:pre:2p; +revouloir revouloir ver 0.45 0.41 0.00 0.07 inf; +revoyaient revoir ver 162.83 139.46 0.00 0.34 ind:imp:3p; +revoyais revoir ver 162.83 139.46 0.96 4.73 ind:imp:1s;ind:imp:2s; +revoyait revoir ver 162.83 139.46 0.40 9.73 ind:imp:3s; +revoyant revoir ver 162.83 139.46 0.39 1.82 par:pre; +revoyez revoir ver 162.83 139.46 0.95 0.14 imp:pre:2p;ind:pre:2p; +revoyiez revoir ver 162.83 139.46 0.11 0.00 ind:imp:2p;sub:pre:2p; +revoyions revoir ver 162.83 139.46 0.18 0.14 ind:imp:1p; +revoyons revoir ver 162.83 139.46 1.44 0.41 imp:pre:1p;ind:pre:1p; +revoyure revoyure nom f s 0.28 0.47 0.28 0.47 +revu revoir ver m s 162.83 139.46 14.38 14.80 par:pas; +revêche revêche adj s 0.28 1.76 0.23 1.35 +revêches revêche adj p 0.28 1.76 0.05 0.41 +revécu revivre ver m s 10.37 20.68 0.27 0.27 par:pas; +revécue revivre ver f s 10.37 20.68 0.00 0.07 par:pas; +revécues revécu adj f p 0.00 0.07 0.00 0.07 +revécurent revivre ver 10.37 20.68 0.00 0.07 ind:pas:3p; +revécut revivre ver 10.37 20.68 0.00 0.41 ind:pas:3s; +revue revue nom f s 10.10 33.92 7.79 25.14 +revues revue nom f p 10.10 33.92 2.31 8.78 +revuistes revuiste nom p 0.01 0.00 0.01 0.00 +revérifier revérifier ver 0.67 0.00 0.57 0.00 inf; +revérifié revérifié adj m s 0.34 0.07 0.25 0.07 +revus revoir ver m p 162.83 139.46 2.02 3.31 par:pas; +revêt revêtir ver 2.68 26.08 0.25 2.09 ind:pre:3s; +revêtît revêtir ver 2.68 26.08 0.00 0.07 sub:imp:3s; +revêtaient revêtir ver 2.68 26.08 0.04 0.68 ind:imp:3p; +revêtais revêtir ver 2.68 26.08 0.00 0.20 ind:imp:1s; +revêtait revêtir ver 2.68 26.08 0.02 2.97 ind:imp:3s; +revêtant revêtir ver 2.68 26.08 0.01 0.88 par:pre; +revêtement revêtement nom m s 1.11 0.74 0.99 0.68 +revêtements revêtement nom m p 1.11 0.74 0.12 0.07 +revêtent revêtir ver 2.68 26.08 0.11 0.61 ind:pre:3p; +revêtez revêtir ver 2.68 26.08 0.32 0.07 imp:pre:2p; +revêtir revêtir ver 2.68 26.08 0.60 3.11 inf; +revêtira revêtir ver 2.68 26.08 0.02 0.14 ind:fut:3s; +revêtirait revêtir ver 2.68 26.08 0.00 0.41 cnd:pre:3s; +revêtirent revêtir ver 2.68 26.08 0.00 0.14 ind:pas:3p; +revêtiront revêtir ver 2.68 26.08 0.00 0.07 ind:fut:3p; +revêtis revêtir ver 2.68 26.08 0.01 0.20 ind:pas:1s; +revêtit revêtir ver 2.68 26.08 0.01 1.15 ind:pas:3s; +revêts revêtir ver 2.68 26.08 0.03 0.07 ind:pre:1s;ind:pre:2s; +revêtu revêtir ver m s 2.68 26.08 1.16 8.45 par:pas; +revêtue revêtir ver f s 2.68 26.08 0.02 2.36 par:pas; +revêtues revêtir ver f p 2.68 26.08 0.00 0.41 par:pas; +revêtus revêtir ver m p 2.68 26.08 0.07 2.03 par:pas; +rewrité rewriter ver m s 0.00 0.07 0.00 0.07 par:pas; +rex rex nom m 10.57 1.28 10.57 1.28 +rexiste rexiste adj f s 0.01 0.00 0.01 0.00 +rexistes rexiste nom p 0.00 0.07 0.00 0.07 +rez_de_chaussée rez_de_chaussée nom m 2.34 16.96 2.34 16.96 +rez_de_jardin rez_de_jardin nom m 0.01 0.00 0.01 0.00 +rez rez pre 0.36 0.34 0.36 0.34 +rezzou rezzou nom m s 0.00 0.20 0.00 0.07 +rezzous rezzou nom m p 0.00 0.20 0.00 0.14 +rhô rhô nom m 0.01 0.00 0.01 0.00 +rhabilla rhabiller ver 5.50 9.53 0.00 0.95 ind:pas:3s; +rhabillage rhabillage nom m s 0.01 0.00 0.01 0.00 +rhabillaient rhabiller ver 5.50 9.53 0.00 0.14 ind:imp:3p; +rhabillais rhabiller ver 5.50 9.53 0.03 0.00 ind:imp:1s;ind:imp:2s; +rhabillait rhabiller ver 5.50 9.53 0.01 0.20 ind:imp:3s; +rhabillant rhabiller ver 5.50 9.53 0.14 0.68 par:pre; +rhabille rhabiller ver 5.50 9.53 0.79 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +rhabillent rhabiller ver 5.50 9.53 0.00 0.20 ind:pre:3p; +rhabiller rhabiller ver 5.50 9.53 2.22 3.45 inf; +rhabilles rhabiller ver 5.50 9.53 0.28 0.14 ind:pre:2s; +rhabilleur rhabilleur nom m s 0.00 0.07 0.00 0.07 +rhabillez rhabiller ver 5.50 9.53 1.42 0.14 imp:pre:2p;ind:pre:2p; +rhabilliez rhabiller ver 5.50 9.53 0.01 0.00 ind:imp:2p; +rhabillons rhabiller ver 5.50 9.53 0.02 0.00 imp:pre:1p; +rhabillèrent rhabiller ver 5.50 9.53 0.00 0.20 ind:pas:3p; +rhabillé rhabiller ver m s 5.50 9.53 0.41 0.68 par:pas; +rhabillée rhabiller ver f s 5.50 9.53 0.17 0.74 par:pas; +rhabillées rhabiller ver f p 5.50 9.53 0.01 0.07 par:pas; +rhabillés rhabiller ver m p 5.50 9.53 0.00 0.54 par:pas; +rhapsodie rhapsodie nom f s 0.07 0.41 0.07 0.34 +rhapsodies rhapsodie nom f p 0.07 0.41 0.00 0.07 +rhingraves rhingrave nom m p 0.00 0.07 0.00 0.07 +rhinite rhinite nom f s 0.03 0.14 0.03 0.07 +rhinites rhinite nom f p 0.03 0.14 0.00 0.07 +rhino rhino nom m s 0.90 0.61 0.83 0.54 +rhinocéros rhinocéros nom m 2.51 2.50 2.51 2.50 +rhinoplastie rhinoplastie nom f s 0.23 0.00 0.23 0.00 +rhinos rhino nom m p 0.90 0.61 0.07 0.07 +rhinoscopie rhinoscopie nom f s 0.10 0.00 0.10 0.00 +rhizome rhizome nom m s 0.01 0.00 0.01 0.00 +rhizopus rhizopus nom m 0.04 0.00 0.04 0.00 +rho rho nom m s 0.06 0.00 0.06 0.00 +rhodamine rhodamine nom f s 0.01 0.00 0.01 0.00 +rhodanien rhodanien adj m s 0.00 0.14 0.00 0.14 +rhodia rhodia nom m s 0.00 0.07 0.00 0.07 +rhodium rhodium nom m s 0.04 0.00 0.04 0.00 +rhodo rhodo nom m s 0.00 0.07 0.00 0.07 +rhodoïd rhodoïd nom m s 0.00 0.14 0.00 0.14 +rhododendron rhododendron nom m s 0.06 0.81 0.02 0.07 +rhododendrons rhododendron nom m p 0.06 0.81 0.04 0.74 +rhombe rhombe nom m s 0.00 0.07 0.00 0.07 +rhomboïdal rhomboïdal adj m s 0.00 0.14 0.00 0.14 +rhomboïdes rhomboïde nom m p 0.00 0.07 0.00 0.07 +rhovyl rhovyl nom m s 0.00 0.07 0.00 0.07 +rhubarbe rhubarbe nom f s 0.26 6.55 0.26 6.49 +rhubarbes rhubarbe nom f p 0.26 6.55 0.00 0.07 +rhum rhum nom m s 6.29 12.70 6.29 12.70 +rhumatisant rhumatisant adj m s 0.14 0.61 0.00 0.34 +rhumatisante rhumatisant adj f s 0.14 0.61 0.14 0.07 +rhumatisants rhumatisant adj m p 0.14 0.61 0.00 0.20 +rhumatismal rhumatismal adj m s 0.03 0.20 0.00 0.07 +rhumatismale rhumatismal adj f s 0.03 0.20 0.03 0.07 +rhumatismales rhumatismal adj f p 0.03 0.20 0.00 0.07 +rhumatisme rhumatisme nom m s 2.31 3.78 0.96 0.95 +rhumatismes rhumatisme nom m p 2.31 3.78 1.35 2.84 +rhumatoïde rhumatoïde adj f s 0.01 0.00 0.01 0.00 +rhumatologie rhumatologie nom f s 0.16 0.00 0.16 0.00 +rhumatologue rhumatologue nom s 0.04 0.00 0.04 0.00 +rhumbs rhumb nom m p 0.00 0.14 0.00 0.14 +rhume rhume nom m s 8.17 5.61 7.72 4.93 +rhumerie rhumerie nom f s 0.03 0.14 0.03 0.14 +rhumes rhume nom m p 8.17 5.61 0.45 0.68 +rhénan rhénan adj m s 0.00 1.69 0.00 0.20 +rhénane rhénan adj f s 0.00 1.69 0.00 0.41 +rhénans rhénan adj m p 0.00 1.69 0.00 1.08 +rhéostat rhéostat nom m s 0.00 0.34 0.00 0.34 +rhésus rhésus nom m 0.37 0.14 0.37 0.14 +rhéteur rhéteur nom m s 0.00 0.47 0.00 0.20 +rhéteurs rhéteur nom m p 0.00 0.47 0.00 0.27 +rhétoricien rhétoricien adj m s 0.01 0.00 0.01 0.00 +rhétorique rhétorique nom f s 0.89 2.03 0.88 2.03 +rhétoriques rhétorique adj f p 0.48 0.47 0.04 0.20 +rhynchites rhynchite nom m p 0.00 0.07 0.00 0.07 +rhyolite rhyolite nom f s 0.02 0.00 0.02 0.00 +rhythm_n_blues rhythm_n_blues nom m 0.02 0.00 0.02 0.00 +rhythm_and_blues rhythm_and_blues nom m 0.08 0.00 0.08 0.00 +ri rire ver m s 140.25 320.54 8.22 15.00 par:pas; +ria ria nom f s 2.21 0.00 2.21 0.00 +riaient rire ver 140.25 320.54 1.60 12.70 ind:imp:3p; +riais rire ver 140.25 320.54 1.32 3.85 ind:imp:1s;ind:imp:2s; +riait rire ver 140.25 320.54 3.34 37.97 ind:imp:3s; +rial rial nom m s 0.04 0.00 0.01 0.00 +rials rial nom m p 0.04 0.00 0.03 0.00 +riant rire ver 140.25 320.54 1.89 41.96 par:pre; +riante riant adj f s 0.53 3.04 0.28 1.01 +riantes riant adj f p 0.53 3.04 0.10 0.34 +riants riant adj m p 0.53 3.04 0.00 0.34 +ribambelle ribambelle nom f s 0.82 2.36 0.81 1.82 +ribambelles ribambelle nom f p 0.82 2.36 0.01 0.54 +ribaud ribaud nom m s 0.15 0.47 0.14 0.07 +ribaude ribaud adj f s 1.06 0.27 0.68 0.14 +ribaudes ribaud adj f p 1.06 0.27 0.38 0.14 +ribauds ribaud nom m p 0.15 0.47 0.01 0.41 +ribes ribes nom m 0.14 0.00 0.14 0.00 +rible ribler ver 0.00 0.07 0.00 0.07 ind:pre:3s; +ribleur ribleur nom m s 0.00 0.07 0.00 0.07 +riboflavine riboflavine nom f s 0.05 0.00 0.05 0.00 +ribosomes ribosome nom m p 0.19 0.00 0.19 0.00 +ribot ribot nom m s 0.00 0.20 0.00 0.07 +ribote ribot nom f s 0.00 0.20 0.00 0.14 +riboter riboter ver 0.00 0.07 0.00 0.07 inf; +riboteur riboteur nom m s 0.01 0.00 0.01 0.00 +ribouis ribouis nom m 0.00 0.20 0.00 0.20 +riboulait ribouler ver 0.01 0.27 0.01 0.07 ind:imp:3s; +riboulant ribouler ver 0.01 0.27 0.00 0.14 par:pre; +riboulants riboulant adj m p 0.00 0.07 0.00 0.07 +ribouldingue ribouldingue nom f s 0.02 0.41 0.02 0.41 +ribouler ribouler ver 0.01 0.27 0.00 0.07 inf; +ric_à_rac ric_à_rac adv 0.00 0.20 0.00 0.20 +ric_rac ric_rac adv 0.04 0.47 0.04 0.47 +ric_et_rac ric_et_rac adv 0.00 0.61 0.00 0.61 +ricain ricain nom m s 2.55 1.08 0.33 0.14 +ricaine ricain adj f s 0.36 0.41 0.14 0.00 +ricaines ricain adj f p 0.36 0.41 0.01 0.00 +ricains ricain nom m p 2.55 1.08 2.22 0.88 +ricana ricaner ver 2.04 30.61 0.02 7.50 ind:pas:3s; +ricanai ricaner ver 2.04 30.61 0.00 0.14 ind:pas:1s; +ricanaient ricaner ver 2.04 30.61 0.02 0.68 ind:imp:3p; +ricanais ricaner ver 2.04 30.61 0.02 0.61 ind:imp:1s;ind:imp:2s; +ricanait ricaner ver 2.04 30.61 0.04 3.85 ind:imp:3s; +ricanant ricaner ver 2.04 30.61 0.03 4.12 par:pre; +ricanante ricanant adj f s 0.11 1.89 0.00 0.54 +ricanantes ricanant adj f p 0.11 1.89 0.10 0.47 +ricanants ricanant adj m p 0.11 1.89 0.00 0.27 +ricane ricaner ver 2.04 30.61 1.17 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ricanement ricanement nom m s 0.39 10.14 0.27 6.96 +ricanements ricanement nom m p 0.39 10.14 0.12 3.18 +ricanent ricaner ver 2.04 30.61 0.08 0.81 ind:pre:3p; +ricaner ricaner ver 2.04 30.61 0.33 4.59 inf; +ricaneraient ricaner ver 2.04 30.61 0.00 0.07 cnd:pre:3p; +ricaneront ricaner ver 2.04 30.61 0.01 0.00 ind:fut:3p; +ricanes ricaner ver 2.04 30.61 0.20 0.20 ind:pre:2s; +ricaneur ricaneur nom m s 0.03 0.27 0.03 0.14 +ricaneurs ricaneur adj m p 0.00 0.68 0.00 0.34 +ricaneuse ricaneur adj f s 0.00 0.68 0.00 0.14 +ricanions ricaner ver 2.04 30.61 0.00 0.14 ind:imp:1p; +ricanèrent ricaner ver 2.04 30.61 0.00 0.47 ind:pas:3p; +ricané ricaner ver m s 2.04 30.61 0.12 2.09 par:pas;par:pas;par:pas; +ricassant ricasser ver 0.00 0.14 0.00 0.07 par:pre; +ricasser ricasser ver 0.00 0.14 0.00 0.07 inf; +richard richard adj m s 3.57 0.81 2.01 0.20 +richarde richard nom f s 2.05 1.08 0.01 0.00 +richards richard adj m p 3.57 0.81 1.56 0.61 +riche riche adj s 73.85 65.47 54.28 42.57 +richelieu richelieu nom m s 0.05 0.14 0.02 0.00 +richelieus richelieu nom m p 0.05 0.14 0.03 0.14 +richement richement adv 0.22 1.76 0.22 1.76 +riches riche adj p 73.85 65.47 19.57 22.91 +richesse richesse nom f s 13.21 22.16 8.44 14.66 +richesses richesse nom f p 13.21 22.16 4.76 7.50 +richissime richissime adj s 0.39 1.08 0.35 0.74 +richissimes richissime adj f p 0.39 1.08 0.04 0.34 +richomme richomme nom m s 0.00 0.74 0.00 0.74 +ricin ricin nom m s 0.28 0.47 0.28 0.47 +ricocha ricocher ver 0.70 2.16 0.00 0.27 ind:pas:3s; +ricochaient ricocher ver 0.70 2.16 0.20 0.14 ind:imp:3p; +ricochait ricocher ver 0.70 2.16 0.00 0.14 ind:imp:3s; +ricochant ricocher ver 0.70 2.16 0.00 0.41 par:pre; +ricoche ricocher ver 0.70 2.16 0.10 0.14 ind:pre:3s; +ricochent ricocher ver 0.70 2.16 0.04 0.41 ind:pre:3p; +ricocher ricocher ver 0.70 2.16 0.08 0.54 inf; +ricochet ricochet nom m s 1.03 2.09 0.44 0.74 +ricochets ricochet nom m p 1.03 2.09 0.59 1.35 +ricoché ricocher ver m s 0.70 2.16 0.27 0.14 par:pas; +ricotta ricotta nom f s 0.45 0.00 0.45 0.00 +rictus rictus nom m 0.25 6.35 0.25 6.35 +rida rider ver 2.06 3.99 0.00 0.34 ind:pas:3s; +ridaient rider ver 2.06 3.99 0.00 0.07 ind:imp:3p; +ridait rider ver 2.06 3.99 0.01 0.41 ind:imp:3s; +ridant rider ver 2.06 3.99 0.01 0.14 par:pre; +ride ride nom f s 4.20 24.26 1.18 3.51 +rideau rideau nom m s 19.11 84.53 10.81 43.65 +rideaux rideau nom m p 19.11 84.53 8.29 37.97 +ridelle rideau nom f s 19.11 84.53 0.01 0.81 +ridelles rideau nom f p 19.11 84.53 0.00 2.09 +rident rider ver 2.06 3.99 0.01 0.00 ind:pre:3p; +rider rider ver 2.06 3.99 1.05 0.47 inf; +rides ride nom f p 4.20 24.26 3.02 20.74 +ridicule ridicule adj s 61.57 45.54 57.05 36.49 +ridiculement ridiculement adv 0.30 2.57 0.30 2.57 +ridicules ridicule adj p 61.57 45.54 4.53 9.05 +ridiculisa ridiculiser ver 7.54 4.32 0.00 0.07 ind:pas:3s; +ridiculisaient ridiculiser ver 7.54 4.32 0.00 0.20 ind:imp:3p; +ridiculisais ridiculiser ver 7.54 4.32 0.01 0.14 ind:imp:1s; +ridiculisait ridiculiser ver 7.54 4.32 0.03 0.34 ind:imp:3s; +ridiculisant ridiculiser ver 7.54 4.32 0.02 0.34 par:pre; +ridiculisation ridiculisation nom f s 0.01 0.00 0.01 0.00 +ridiculise ridiculiser ver 7.54 4.32 1.16 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ridiculisent ridiculiser ver 7.54 4.32 0.33 0.14 ind:pre:3p; +ridiculiser ridiculiser ver 7.54 4.32 3.02 1.69 inf; +ridiculisera ridiculiser ver 7.54 4.32 0.03 0.07 ind:fut:3s; +ridiculiserai ridiculiser ver 7.54 4.32 0.16 0.00 ind:fut:1s; +ridiculiserais ridiculiser ver 7.54 4.32 0.02 0.00 cnd:pre:1s; +ridiculiserait ridiculiser ver 7.54 4.32 0.01 0.07 cnd:pre:3s; +ridiculiseras ridiculiser ver 7.54 4.32 0.03 0.00 ind:fut:2s; +ridiculises ridiculiser ver 7.54 4.32 0.54 0.07 ind:pre:2s;sub:pre:2s; +ridiculisez ridiculiser ver 7.54 4.32 0.38 0.00 imp:pre:2p;ind:pre:2p; +ridiculisiez ridiculiser ver 7.54 4.32 0.01 0.00 ind:imp:2p; +ridiculisé ridiculiser ver m s 7.54 4.32 1.09 0.61 par:pas; +ridiculisée ridiculiser ver f s 7.54 4.32 0.51 0.07 par:pas; +ridiculisées ridiculiser ver f p 7.54 4.32 0.10 0.07 par:pas; +ridiculisés ridiculiser ver m p 7.54 4.32 0.10 0.14 par:pas; +ridiculités ridiculité nom f p 0.14 0.00 0.14 0.00 +ridé ridé adj m s 1.04 7.16 0.45 2.77 +ridée ridé adj f s 1.04 7.16 0.30 2.16 +ridées ridé adj f p 1.04 7.16 0.14 1.49 +ridule ridule nom f s 0.16 0.07 0.01 0.00 +ridules ridule nom f p 0.16 0.07 0.15 0.07 +ridés ridé adj m p 1.04 7.16 0.16 0.74 +rie rire ver 140.25 320.54 1.09 0.81 sub:pre:1s;sub:pre:3s; +riel riel nom m s 0.16 0.00 0.16 0.00 +rien rien pro_ind s 2374.91 1522.91 2374.91 1522.91 +riens rien nom_sup m p 7.26 24.19 0.62 3.38 +rient rire ver 140.25 320.54 5.17 5.54 ind:pre:3p; +ries rire ver 140.25 320.54 0.10 0.20 sub:pre:2s; +riesling riesling nom m s 0.71 0.20 0.71 0.20 +rieur rieur adj m s 0.45 4.93 0.41 2.84 +rieurs rieur adj m p 0.45 4.93 0.04 2.09 +rieuse rieux adj f s 0.07 4.12 0.06 3.24 +rieuses rieux adj f p 0.07 4.12 0.01 0.88 +riez rire ver 140.25 320.54 8.51 3.04 imp:pre:2p;ind:pre:2p; +rif rif nom m s 0.07 1.42 0.07 1.42 +rifain rifain nom m s 0.03 0.00 0.01 0.00 +rifains rifain nom m p 0.03 0.00 0.02 0.00 +riff riff nom m s 0.53 0.27 0.43 0.20 +riffaude riffauder ver 0.00 0.20 0.00 0.07 ind:pre:1s; +riffauder riffauder ver 0.00 0.20 0.00 0.07 inf; +riffaudé riffauder ver m s 0.00 0.20 0.00 0.07 par:pas; +riffs riff nom m p 0.53 0.27 0.10 0.07 +rififi rififi nom m s 0.09 0.47 0.09 0.47 +riflard riflard nom m s 0.01 0.41 0.01 0.41 +rifle rifle nom m s 0.12 0.74 0.02 0.74 +rifles rifle nom m p 0.12 0.74 0.10 0.00 +riflette riflette nom f s 0.00 0.61 0.00 0.61 +rift rift nom m s 0.03 0.20 0.03 0.20 +rigaudon rigaudon nom m s 0.01 0.07 0.01 0.00 +rigaudons rigaudon nom m p 0.01 0.07 0.00 0.07 +rigide rigide adj s 3.27 9.93 2.96 6.42 +rigidement rigidement adv 0.00 0.14 0.00 0.14 +rigides rigide adj p 3.27 9.93 0.32 3.51 +rigidifier rigidifier ver 0.01 0.00 0.01 0.00 inf; +rigidité rigidité nom f s 0.88 1.89 0.88 1.82 +rigidités rigidité nom f p 0.88 1.89 0.00 0.07 +rigodon rigodon nom m s 0.00 0.61 0.00 0.61 +rigola rigoler ver 47.56 33.85 0.02 1.42 ind:pas:3s; +rigolade rigolade nom f s 2.43 9.19 2.41 8.38 +rigolades rigolade nom f p 2.43 9.19 0.02 0.81 +rigolage rigolage nom m s 0.00 0.07 0.00 0.07 +rigolaient rigoler ver 47.56 33.85 0.47 0.74 ind:imp:3p; +rigolais rigoler ver 47.56 33.85 1.32 0.47 ind:imp:1s;ind:imp:2s; +rigolait rigoler ver 47.56 33.85 1.00 3.11 ind:imp:3s; +rigolant rigoler ver 47.56 33.85 0.23 2.64 par:pre; +rigolard rigolard adj m s 0.01 2.70 0.01 1.69 +rigolarde rigolard nom f s 0.01 0.34 0.01 0.00 +rigolardes rigolard adj f p 0.01 2.70 0.00 0.20 +rigolards rigolard adj m p 0.01 2.70 0.00 0.41 +rigole rigoler ver 47.56 33.85 12.08 6.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rigolent rigoler ver 47.56 33.85 1.46 0.95 ind:pre:3p; +rigoler rigoler ver 47.56 33.85 10.48 9.80 inf; +rigolera rigoler ver 47.56 33.85 0.19 0.54 ind:fut:3s; +rigolerai rigoler ver 47.56 33.85 0.17 0.00 ind:fut:1s; +rigoleraient rigoler ver 47.56 33.85 0.03 0.07 cnd:pre:3p; +rigolerais rigoler ver 47.56 33.85 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +rigolerait rigoler ver 47.56 33.85 0.07 0.27 cnd:pre:3s; +rigoleras rigoler ver 47.56 33.85 0.24 0.07 ind:fut:2s; +rigolerez rigoler ver 47.56 33.85 0.03 0.00 ind:fut:2p; +rigoleront rigoler ver 47.56 33.85 0.02 0.00 ind:fut:3p; +rigoles rigoler ver 47.56 33.85 13.56 3.31 ind:pre:2s;sub:pre:2s; +rigoleur rigoleur adj m s 0.00 0.07 0.00 0.07 +rigolez rigoler ver 47.56 33.85 3.90 0.68 imp:pre:2p;ind:pre:2p; +rigoliez rigoler ver 47.56 33.85 0.07 0.07 ind:imp:2p; +rigolions rigoler ver 47.56 33.85 0.01 0.07 ind:imp:1p; +rigollot rigollot nom m s 0.00 0.07 0.00 0.07 +rigolo rigolo adj m s 6.25 3.85 5.00 2.64 +rigolons rigoler ver 47.56 33.85 0.11 0.07 imp:pre:1p;ind:pre:1p; +rigolos rigolo nom m p 3.99 2.30 1.17 0.88 +rigolote rigolo adj f s 6.25 3.85 0.73 0.27 +rigolotes rigolo adj f p 6.25 3.85 0.23 0.14 +rigolèrent rigoler ver 47.56 33.85 0.00 0.34 ind:pas:3p; +rigolé rigoler ver m s 47.56 33.85 1.82 2.77 par:pas; +rigorisme rigorisme nom m s 0.00 0.20 0.00 0.20 +rigoriste rigoriste adj f s 0.14 0.20 0.14 0.20 +rigoristes rigoriste nom p 0.00 0.07 0.00 0.07 +rigoureuse rigoureux adj f s 1.94 8.31 0.27 3.38 +rigoureusement rigoureusement adv 0.23 4.73 0.23 4.73 +rigoureuses rigoureux adj f p 1.94 8.31 0.17 1.55 +rigoureux rigoureux adj m 1.94 8.31 1.50 3.38 +rigueur rigueur nom f s 4.87 40.34 4.72 37.77 +rigueurs rigueur nom f p 4.87 40.34 0.15 2.57 +riiez rire ver 140.25 320.54 0.00 0.14 ind:imp:2p; +riions rire ver 140.25 320.54 0.00 1.15 ind:imp:1p; +rikiki rikiki adj m s 0.09 2.97 0.09 2.97 +rillettes rillettes nom f p 0.17 2.43 0.17 2.43 +rillons rillons nom m p 0.00 0.41 0.00 0.41 +rima rimer ver 6.89 5.27 0.00 0.34 ind:pas:3s; +rimaient rimer ver 6.89 5.27 0.02 0.20 ind:imp:3p; +rimaillerie rimaillerie nom f s 0.00 0.07 0.00 0.07 +rimailles rimailler ver 0.01 0.07 0.01 0.07 ind:pre:2s; +rimailleur rimailleur nom m s 0.01 0.07 0.01 0.00 +rimailleurs rimailleur nom m p 0.01 0.07 0.00 0.07 +rimait rimer ver 6.89 5.27 0.28 1.08 ind:imp:3s; +rimante rimant adj f s 0.00 0.07 0.00 0.07 +rimaye rimaye nom f s 0.01 0.00 0.01 0.00 +rimbaldien rimbaldien adj m s 0.00 0.07 0.00 0.07 +rime rimer ver 6.89 5.27 5.66 2.36 imp:pre:2s;ind:pre:3s; +riment rimer ver 6.89 5.27 0.50 0.20 ind:pre:3p; +rimer rimer ver 6.89 5.27 0.15 0.27 inf; +rimes rime nom f p 3.08 2.16 1.75 1.22 +rimeur rimeur nom m s 0.04 0.00 0.02 0.00 +rimeurs rimeur nom m p 0.04 0.00 0.01 0.00 +rimeuse rimeur nom f s 0.04 0.00 0.01 0.00 +rimez rimer ver 6.89 5.27 0.03 0.07 imp:pre:2p;ind:pre:2p; +rimions rimer ver 6.89 5.27 0.00 0.07 ind:imp:1p; +rimmel rimmel nom m s 0.16 3.04 0.16 3.04 +rimé rimer ver m s 6.89 5.27 0.22 0.27 par:pas; +rimée rimer ver f s 6.89 5.27 0.00 0.20 par:pas; +rimés rimer ver m p 6.89 5.27 0.01 0.20 par:pas; +rince_bouche rince_bouche nom m 0.03 0.00 0.03 0.00 +rince_doigts rince_doigts nom m 0.08 0.27 0.08 0.27 +rince rincer ver 4.46 11.15 1.29 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rinceau rinceau nom m s 0.00 0.68 0.00 0.07 +rinceaux rinceau nom m p 0.00 0.68 0.00 0.61 +rincent rincer ver 4.46 11.15 0.16 0.34 ind:pre:3p; +rincer rincer ver 4.46 11.15 1.86 3.18 inf; +rincera rincer ver 4.46 11.15 0.01 0.00 ind:fut:3s; +rincerai rincer ver 4.46 11.15 0.10 0.07 ind:fut:1s; +rinceraient rincer ver 4.46 11.15 0.00 0.07 cnd:pre:3p; +rinces rincer ver 4.46 11.15 0.28 0.07 ind:pre:2s; +rincette rincette nom f s 0.00 0.27 0.00 0.27 +rinceur rinceur nom m s 0.00 0.07 0.00 0.07 +rincez rincer ver 4.46 11.15 0.27 0.07 imp:pre:2p;ind:pre:2p; +rincèrent rincer ver 4.46 11.15 0.00 0.07 ind:pas:3p; +rincé rincer ver m s 4.46 11.15 0.18 1.28 par:pas; +rincée rincer ver f s 4.46 11.15 0.02 0.20 par:pas; +rincées rincer ver f p 4.46 11.15 0.02 0.07 par:pas; +rincés rincer ver m p 4.46 11.15 0.14 0.68 par:pas; +rinforzando rinforzando adv 0.00 0.07 0.00 0.07 +ring ring nom m s 6.49 4.66 6.19 4.39 +ringard ringard adj m s 2.94 1.42 1.99 0.88 +ringarde ringard adj f s 2.94 1.42 0.27 0.27 +ringardes ringard adj f p 2.94 1.42 0.39 0.00 +ringardise ringardise nom f s 0.06 0.14 0.04 0.14 +ringardises ringardise nom f p 0.06 0.14 0.01 0.00 +ringards ringard nom m p 2.54 0.95 0.64 0.20 +rings ring nom m p 6.49 4.66 0.29 0.27 +rink rink nom m s 0.14 2.84 0.14 2.84 +rinker rinker ver 0.02 0.00 0.02 0.00 inf; +rinça rincer ver 4.46 11.15 0.00 1.15 ind:pas:3s; +rinçage rinçage nom m s 0.43 0.74 0.28 0.68 +rinçages rinçage nom m p 0.43 0.74 0.14 0.07 +rinçaient rincer ver 4.46 11.15 0.00 0.07 ind:imp:3p; +rinçais rincer ver 4.46 11.15 0.01 0.14 ind:imp:1s;ind:imp:2s; +rinçait rincer ver 4.46 11.15 0.01 1.42 ind:imp:3s; +rinçant rincer ver 4.46 11.15 0.11 0.27 par:pre; +rioja rioja nom m s 0.01 0.00 0.01 0.00 +rions rire ver 140.25 320.54 0.63 1.49 imp:pre:1p;ind:pre:1p; +ripa riper ver 0.35 0.81 0.00 0.07 ind:pas:3s; +ripaillait ripailler ver 0.14 0.81 0.00 0.07 ind:imp:3s; +ripaille ripailler ver 0.14 0.81 0.14 0.20 ind:pre:3s; +ripailler ripailler ver 0.14 0.81 0.00 0.20 inf; +ripailles ripaille nom f p 0.20 1.62 0.14 0.54 +ripaillons ripailler ver 0.14 0.81 0.00 0.07 ind:pre:1p; +ripaillé ripailler ver m s 0.14 0.81 0.00 0.27 par:pas; +ripant riper ver 0.35 0.81 0.00 0.14 par:pre; +ripaton ripaton nom m s 0.01 0.20 0.00 0.07 +ripatons ripaton nom m p 0.01 0.20 0.01 0.14 +ripe ripe nom f s 0.18 0.27 0.18 0.27 +riper riper ver 0.35 0.81 0.03 0.34 inf; +ripes riper ver 0.35 0.81 0.14 0.00 ind:pre:2s; +ripeur ripeur nom m s 0.00 0.07 0.00 0.07 +ripolin ripolin nom m s 0.00 0.41 0.00 0.41 +ripoliner ripoliner ver 0.00 1.55 0.00 0.07 inf; +ripolines ripoliner ver 0.00 1.55 0.00 0.07 ind:pre:2s; +ripoliné ripoliner ver m s 0.00 1.55 0.00 0.41 par:pas; +ripolinée ripoliner ver f s 0.00 1.55 0.00 0.54 par:pas; +ripolinées ripoliner ver f p 0.00 1.55 0.00 0.27 par:pas; +ripolinés ripoliner ver m p 0.00 1.55 0.00 0.20 par:pas; +riposta riposter ver 3.61 5.34 0.01 1.55 ind:pas:3s; +ripostai riposter ver 3.61 5.34 0.00 0.20 ind:pas:1s; +ripostaient riposter ver 3.61 5.34 0.01 0.07 ind:imp:3p; +ripostais riposter ver 3.61 5.34 0.01 0.07 ind:imp:1s; +ripostait riposter ver 3.61 5.34 0.00 0.41 ind:imp:3s; +ripostant riposter ver 3.61 5.34 0.03 0.14 par:pre; +riposte riposte nom f s 1.75 2.97 1.70 2.64 +ripostent riposter ver 3.61 5.34 0.21 0.07 ind:pre:3p; +riposter riposter ver 3.61 5.34 1.41 1.28 inf; +ripostera riposter ver 3.61 5.34 0.05 0.00 ind:fut:3s; +riposterai riposter ver 3.61 5.34 0.19 0.00 ind:fut:1s; +riposterez riposter ver 3.61 5.34 0.02 0.00 ind:fut:2p; +riposterons riposter ver 3.61 5.34 0.05 0.00 ind:fut:1p; +riposteront riposter ver 3.61 5.34 0.08 0.00 ind:fut:3p; +ripostes riposte nom f p 1.75 2.97 0.05 0.34 +ripostez riposter ver 3.61 5.34 0.14 0.00 imp:pre:2p;ind:pre:2p; +ripostions riposter ver 3.61 5.34 0.01 0.00 ind:imp:1p; +ripostons riposter ver 3.61 5.34 0.05 0.00 imp:pre:1p;ind:pre:1p; +riposté riposter ver m s 3.61 5.34 0.60 1.01 par:pas; +ripou ripou adj s 0.66 0.27 0.66 0.27 +ripoux ripoux nom m p 1.54 0.00 1.54 0.00 +ripper ripper nom m s 0.31 0.00 0.31 0.00 +ripé riper ver m s 0.35 0.81 0.19 0.27 par:pas; +ripuaire ripuaire adj s 0.00 0.07 0.00 0.07 +riquiqui riquiqui adj 0.50 0.68 0.50 0.68 +rira rire ver 140.25 320.54 2.99 0.74 ind:fut:3s; +rirai rire ver 140.25 320.54 0.88 0.47 ind:fut:1s; +riraient rire ver 140.25 320.54 0.07 0.27 cnd:pre:3p; +rirais rire ver 140.25 320.54 0.66 0.34 cnd:pre:1s;cnd:pre:2s; +rirait rire ver 140.25 320.54 0.20 0.81 cnd:pre:3s; +riras rire ver 140.25 320.54 0.80 0.07 ind:fut:2s; +rire rire ver 140.25 320.54 63.29 144.19 inf; +rirent rire ver 140.25 320.54 0.01 2.57 ind:pas:3p; +rires rire nom m p 38.88 155.47 16.09 42.91 +rirez rire ver 140.25 320.54 0.60 0.14 ind:fut:2p; +rirons rire ver 140.25 320.54 0.23 0.34 ind:fut:1p; +riront rire ver 140.25 320.54 0.30 0.14 ind:fut:3p; +ris rire ver 140.25 320.54 20.86 8.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rise ris nom f s 1.74 0.34 0.24 0.00 +riser riser nom m s 0.06 0.00 0.06 0.00 +risette risette nom f s 0.75 1.08 0.70 0.81 +risettes risette nom f p 0.75 1.08 0.05 0.27 +risibilité risibilité nom f s 0.01 0.14 0.01 0.14 +risible risible adj s 1.05 3.45 0.88 2.70 +risiblement risiblement adv 0.00 0.07 0.00 0.07 +risibles risible adj p 1.05 3.45 0.17 0.74 +risorius risorius nom m 0.01 0.14 0.01 0.14 +risotto risotto nom m s 0.54 0.07 0.54 0.07 +risqua risquer ver 100.40 99.32 0.45 3.58 ind:pas:3s; +risquai risquer ver 100.40 99.32 0.00 0.81 ind:pas:1s; +risquaient risquer ver 100.40 99.32 0.68 4.66 ind:imp:3p; +risquais risquer ver 100.40 99.32 0.92 3.51 ind:imp:1s;ind:imp:2s; +risquait risquer ver 100.40 99.32 2.59 21.62 ind:imp:3s; +risquant risquer ver 100.40 99.32 0.99 1.82 par:pre; +risque_tout risque_tout adj 0.00 0.07 0.00 0.07 +risque risque nom m s 69.33 50.27 45.98 30.27 +risquent risquer ver 100.40 99.32 4.59 3.85 ind:pre:3p; +risquer risquer ver 100.40 99.32 13.06 14.19 inf; +risquera risquer ver 100.40 99.32 0.38 0.54 ind:fut:3s; +risquerai risquer ver 100.40 99.32 0.30 0.14 ind:fut:1s; +risqueraient risquer ver 100.40 99.32 0.45 0.81 cnd:pre:3p; +risquerais risquer ver 100.40 99.32 1.47 0.88 cnd:pre:1s;cnd:pre:2s; +risquerait risquer ver 100.40 99.32 1.59 3.11 cnd:pre:3s; +risqueras risquer ver 100.40 99.32 0.03 0.07 ind:fut:2s; +risquerez risquer ver 100.40 99.32 0.17 0.07 ind:fut:2p; +risqueriez risquer ver 100.40 99.32 0.32 0.41 cnd:pre:2p; +risquerions risquer ver 100.40 99.32 0.09 0.14 cnd:pre:1p; +risquerons risquer ver 100.40 99.32 0.00 0.07 ind:fut:1p; +risqueront risquer ver 100.40 99.32 0.12 0.20 ind:fut:3p; +risques risque nom m p 69.33 50.27 23.36 20.00 +risquez risquer ver 100.40 99.32 7.54 1.96 imp:pre:2p;ind:pre:2p; +risquiez risquer ver 100.40 99.32 0.20 0.61 ind:imp:2p; +risquions risquer ver 100.40 99.32 0.06 0.74 ind:imp:1p; +risquons risquer ver 100.40 99.32 1.80 0.95 imp:pre:1p;ind:pre:1p; +risquât risquer ver 100.40 99.32 0.00 0.54 sub:imp:3s; +risqué risquer ver m s 100.40 99.32 10.77 5.00 par:pas; +risquée risqué adj f s 8.29 2.70 0.47 0.68 +risquées risqué adj f p 8.29 2.70 0.13 0.27 +risqués risqué adj m p 8.29 2.70 0.08 0.20 +rissolaient rissoler ver 0.01 0.74 0.00 0.14 ind:imp:3p; +rissolait rissoler ver 0.01 0.74 0.00 0.07 ind:imp:3s; +rissole rissole nom f s 0.02 0.34 0.00 0.14 +rissolent rissoler ver 0.01 0.74 0.00 0.14 ind:pre:3p; +rissoler rissoler ver 0.01 0.74 0.01 0.27 inf; +rissoles rissole nom f p 0.02 0.34 0.02 0.20 +rissolé rissoler ver m s 0.01 0.74 0.00 0.07 par:pas; +rissolée rissolé adj f s 0.03 0.34 0.00 0.07 +rissolées rissolé adj f p 0.03 0.34 0.03 0.20 +rissolés rissolé adj m p 0.03 0.34 0.00 0.07 +ristournait ristourner ver 0.14 0.07 0.00 0.07 ind:imp:3s; +ristourne ristourne nom f s 0.54 0.54 0.50 0.54 +ristournes ristourne nom f p 0.54 0.54 0.04 0.00 +risée risée nom f s 2.22 2.50 2.12 1.76 +risées risée nom f p 2.22 2.50 0.10 0.74 +rit rire ver 140.25 320.54 17.47 37.70 ind:pre:3s;ind:pas:3s; +rital rital nom m s 2.66 3.51 1.36 2.09 +ritale rital nom f s 2.66 3.51 0.14 0.34 +ritales rital nom f p 2.66 3.51 0.00 0.14 +ritals rital nom m p 2.66 3.51 1.16 0.95 +rite rite nom m s 5.43 17.84 3.77 8.45 +rites rite nom m p 5.43 17.84 1.66 9.39 +ritournelle ritournelle nom f s 0.03 2.03 0.01 1.28 +ritournelles ritournelle nom f p 0.03 2.03 0.02 0.74 +rittes rittes nom f p 0.00 0.07 0.00 0.07 +ritualisa ritualiser ver 0.01 0.14 0.00 0.07 ind:pas:3s; +ritualisation ritualisation nom f s 0.00 0.07 0.00 0.07 +ritualiste ritualiste adj m s 0.16 0.00 0.01 0.00 +ritualistes ritualiste adj m p 0.16 0.00 0.15 0.00 +ritualisé ritualiser ver m s 0.01 0.14 0.01 0.00 par:pas; +ritualisés ritualiser ver m p 0.01 0.14 0.00 0.07 par:pas; +rituel rituel nom m s 8.82 6.22 7.03 5.54 +rituelle rituel adj f s 3.29 12.97 0.45 4.73 +rituellement rituellement adv 0.14 1.76 0.14 1.76 +rituelles rituel adj f p 3.29 12.97 0.39 2.23 +rituels rituel nom m p 8.82 6.22 1.79 0.68 +riva river ver 3.47 10.88 0.02 0.47 ind:pas:3s; +rivage rivage nom m s 5.46 17.23 4.38 12.36 +rivages rivage nom m p 5.46 17.23 1.08 4.86 +rivaient river ver 3.47 10.88 0.00 0.20 ind:imp:3p; +rivais river ver 3.47 10.88 0.00 0.07 ind:imp:1s; +rivait river ver 3.47 10.88 0.00 0.61 ind:imp:3s; +rival rival nom m s 4.75 10.20 2.68 4.80 +rivale rival nom f s 4.75 10.20 1.23 2.97 +rivales rival adj f p 1.34 4.05 0.44 1.96 +rivalisaient rivaliser ver 1.99 4.39 0.04 1.15 ind:imp:3p; +rivalisait rivaliser ver 1.99 4.39 0.12 0.54 ind:imp:3s; +rivalisant rivaliser ver 1.99 4.39 0.08 0.20 par:pre; +rivalise rivaliser ver 1.99 4.39 0.20 0.20 ind:pre:1s;ind:pre:3s; +rivalisent rivaliser ver 1.99 4.39 0.10 0.41 ind:pre:3p; +rivaliser rivaliser ver 1.99 4.39 1.40 1.55 inf; +rivalisera rivaliser ver 1.99 4.39 0.03 0.00 ind:fut:3s; +rivaliserait rivaliser ver 1.99 4.39 0.01 0.00 cnd:pre:3s; +rivalisèrent rivaliser ver 1.99 4.39 0.00 0.27 ind:pas:3p; +rivalisé rivaliser ver m s 1.99 4.39 0.01 0.07 par:pas; +rivalité rivalité nom f s 2.25 4.93 1.58 2.97 +rivalités rivalité nom f p 2.25 4.93 0.67 1.96 +rivant river ver 3.47 10.88 0.00 0.20 par:pre; +rivaux rival nom m p 4.75 10.20 0.69 1.76 +rive rive nom f s 7.92 46.15 6.03 35.14 +river river ver 3.47 10.88 2.70 1.15 inf; +riverain riverain nom m s 0.36 0.81 0.00 0.07 +riveraines riverain adj f p 0.00 0.47 0.00 0.27 +riverains riverain nom m p 0.36 0.81 0.36 0.74 +riverait river ver 3.47 10.88 0.00 0.07 cnd:pre:3s; +rives rive nom f p 7.92 46.15 1.89 11.01 +rivet rivet nom m s 0.56 1.08 0.35 0.14 +rivetage rivetage nom m s 0.01 0.20 0.01 0.20 +riveteuse riveteur nom f s 0.01 0.00 0.01 0.00 +riveteuse riveteuse nom f s 0.01 0.00 0.01 0.00 +rivets rivet nom m p 0.56 1.08 0.22 0.95 +rivette riveter ver 0.16 0.27 0.14 0.00 imp:pre:2s; +riveté riveter ver m s 0.16 0.27 0.00 0.07 par:pas; +rivetées riveter ver f p 0.16 0.27 0.03 0.20 par:pas; +riviera riviera nom f s 0.00 0.14 0.00 0.07 +rivieras riviera nom f p 0.00 0.14 0.00 0.07 +rivière rivière nom f s 32.73 43.72 28.17 36.49 +rivières rivière nom f p 32.73 43.72 4.56 7.23 +rivoir rivoir nom m s 0.01 0.27 0.01 0.27 +rivé river ver m s 3.47 10.88 0.22 3.24 par:pas; +rivée river ver f s 3.47 10.88 0.02 1.08 par:pas; +rivées river ver f p 3.47 10.88 0.00 0.47 par:pas; +rivés river ver m p 3.47 10.88 0.49 2.64 par:pas; +rixdales rixdale nom f p 0.00 0.07 0.00 0.07 +rixe rixe nom f s 0.84 2.16 0.80 1.28 +rixes rixe nom f p 0.84 2.16 0.04 0.88 +riz_minute riz_minute nom m 0.00 0.07 0.00 0.07 +riz_pain_sel riz_pain_sel nom m s 0.00 0.07 0.00 0.07 +riz riz nom m 18.49 17.70 18.49 17.70 +rizière rizière nom f s 6.45 3.78 5.30 1.15 +rizières rizière nom f p 6.45 3.78 1.15 2.64 +roadster roadster nom m s 0.03 0.27 0.03 0.27 +roast_beef roast_beef nom m s 0.16 0.00 0.14 0.00 +roast_beef roast_beef nom m s 0.16 0.00 0.02 0.00 +robe robe nom f s 84.43 148.18 72.72 111.96 +rober rober ver 0.02 0.00 0.02 0.00 inf; +robert robert nom m s 1.51 1.49 1.44 0.27 +roberts robert nom m p 1.51 1.49 0.07 1.22 +robes robe nom f p 84.43 148.18 11.71 36.22 +robette robette nom f s 0.00 0.07 0.00 0.07 +robin robin nom m s 0.41 0.34 0.03 0.07 +robinet robinet nom m s 5.89 18.24 5.12 13.65 +robinets robinet nom m p 5.89 18.24 0.77 4.59 +robinetterie robinetterie nom f s 0.03 0.27 0.03 0.27 +robiniers robinier nom m p 0.00 0.07 0.00 0.07 +robins robin nom m p 0.41 0.34 0.38 0.27 +robinsonnade robinsonnade nom m s 0.00 0.07 0.00 0.07 +robinsons robinson nom m p 0.00 0.20 0.00 0.20 +râble râble nom m s 0.01 1.96 0.01 1.96 +roblot roblot nom m s 0.00 1.15 0.00 1.15 +râblé râblé adj m s 0.01 1.82 0.01 1.28 +râblée râblé adj f s 0.01 1.82 0.00 0.07 +râblés râblé adj m p 0.01 1.82 0.00 0.47 +roboratif roboratif adj m s 0.00 0.54 0.00 0.34 +roborative roboratif adj f s 0.00 0.54 0.00 0.07 +roboratives roboratif adj f p 0.00 0.54 0.00 0.14 +robot robot nom m s 22.89 3.18 14.97 1.69 +robotique robotique nom f s 0.72 0.00 0.69 0.00 +robotiques robotique nom f p 0.72 0.00 0.04 0.00 +robotisé robotiser ver m s 0.10 0.20 0.07 0.07 par:pas; +robotisée robotiser ver f s 0.10 0.20 0.01 0.07 par:pas; +robotisées robotiser ver f p 0.10 0.20 0.01 0.07 par:pas; +robots robot nom m p 22.89 3.18 7.92 1.49 +roburite roburite nom f s 0.00 0.07 0.00 0.07 +robuste robuste adj s 2.90 10.07 2.14 7.03 +robustement robustement adv 0.00 0.14 0.00 0.14 +robustes robuste adj p 2.90 10.07 0.76 3.04 +robustesse robustesse nom f s 0.17 0.81 0.17 0.81 +roc roc nom m s 3.58 11.76 3.37 7.50 +rocade rocade nom f s 0.27 0.27 0.27 0.20 +rocades rocade nom f p 0.27 0.27 0.00 0.07 +rocaille rocaille nom f s 0.16 2.16 0.16 1.28 +rocailles rocaille nom f p 0.16 2.16 0.00 0.88 +rocailleuse rocailleux adj f s 0.17 3.18 0.07 1.22 +rocailleuses rocailleux adj f p 0.17 3.18 0.00 0.07 +rocailleux rocailleux adj m 0.17 3.18 0.10 1.89 +rocaillé rocailler ver m s 0.00 0.07 0.00 0.07 par:pas; +rocambole rocambole nom f s 0.00 0.41 0.00 0.41 +rocambolesque rocambolesque adj s 0.18 0.41 0.18 0.27 +rocambolesques rocambolesque adj p 0.18 0.41 0.00 0.14 +rochas rocher ver 0.08 0.47 0.00 0.34 ind:pas:2s; +rochassier rochassier nom m s 0.00 0.07 0.00 0.07 +roche roche nom f s 5.81 23.38 3.68 14.12 +rochelle rochelle nom f s 0.74 0.00 0.74 0.00 +rocher rocher nom m s 16.97 39.53 10.37 17.50 +rochers rocher nom m p 16.97 39.53 6.61 22.03 +roches roche nom f p 5.81 23.38 2.13 9.26 +rochet rochet nom m s 0.01 0.14 0.01 0.14 +rocheuse rocheux adj f s 1.06 10.00 0.17 2.64 +rocheuses rocheux adj f p 1.06 10.00 0.73 2.70 +rocheux rocheux adj m 1.06 10.00 0.16 4.66 +rochiers rochier nom m p 0.00 0.07 0.00 0.07 +roché rocher ver m s 0.08 0.47 0.01 0.00 par:pas; +rock_n_roll rock_n_roll nom m 0.19 0.14 0.19 0.14 +rock_n_roll rock_n_roll nom m s 0.01 0.00 0.01 0.00 +rock rock nom m s 22.11 20.00 21.47 19.59 +rocker rocker nom s 1.52 2.91 0.86 1.15 +rockers rocker nom p 1.52 2.91 0.66 1.76 +rocket rocket nom m s 1.40 0.07 1.04 0.07 +rockets rocket nom m p 1.40 0.07 0.35 0.00 +rockeur rockeur nom m s 0.30 0.14 0.11 0.07 +rockeurs rockeur nom m p 0.30 0.14 0.05 0.00 +rockeuse rockeur nom f s 0.30 0.14 0.14 0.07 +rocking_chair rocking_chair nom m s 0.36 1.15 0.28 0.95 +rocking_chair rocking_chair nom m p 0.36 1.15 0.01 0.20 +rocking_chair rocking_chair nom m s 0.36 1.15 0.06 0.00 +rocks rock nom m p 22.11 20.00 0.64 0.41 +rococo rococo nom m s 0.14 0.20 0.13 0.07 +rococos rococo nom m p 0.14 0.20 0.01 0.14 +rocs roc nom m p 3.58 11.76 0.21 4.26 +rodage rodage nom m s 0.32 0.41 0.32 0.34 +rodages rodage nom m p 0.32 0.41 0.00 0.07 +rodait roder ver 1.35 1.76 0.17 0.07 ind:imp:3s; +rode roder ver 1.35 1.76 0.40 0.00 ind:pre:1s;ind:pre:3s; +rodeo rodeo nom m s 0.23 0.00 0.23 0.00 +roder roder ver 1.35 1.76 0.30 0.34 inf; +roderait roder ver 1.35 1.76 0.00 0.07 cnd:pre:3s; +rodomontades rodomontade nom f p 0.01 0.47 0.01 0.47 +rodé roder ver m s 1.35 1.76 0.13 0.47 par:pas; +rodée roder ver f s 1.35 1.76 0.05 0.61 par:pas; +rodées roder ver f p 1.35 1.76 0.00 0.14 par:pas; +rodéo rodéo nom m s 2.01 0.74 1.92 0.74 +rodéos rodéo nom m p 2.01 0.74 0.09 0.00 +rodés roder ver m p 1.35 1.76 0.30 0.07 par:pas; +roentgens roentgen nom m p 0.02 0.00 0.02 0.00 +rogations rogation nom f p 0.00 0.34 0.00 0.34 +rogatoire rogatoire adj f s 0.16 0.81 0.16 0.47 +rogatoires rogatoire adj f p 0.16 0.81 0.00 0.34 +rogaton rogaton nom m s 0.11 1.15 0.11 0.14 +rogatons rogaton nom m p 0.11 1.15 0.00 1.01 +rogna rogner ver 0.39 2.97 0.00 0.07 ind:pas:3s; +rognais rogner ver 0.39 2.97 0.00 0.07 ind:imp:1s; +rognait rogner ver 0.39 2.97 0.00 0.07 ind:imp:3s; +rognant rogner ver 0.39 2.97 0.00 0.14 par:pre; +rogne_pied rogne_pied nom m s 0.00 0.07 0.00 0.07 +rogne rogne nom f s 3.68 2.43 3.67 2.23 +rognent rogner ver 0.39 2.97 0.00 0.07 ind:pre:3p; +rogner rogner ver 0.39 2.97 0.09 0.74 inf; +rognes rogne nom f p 3.68 2.43 0.01 0.20 +rogneux rogneux adj m p 0.00 0.14 0.00 0.14 +rognez rogner ver 0.39 2.97 0.01 0.00 imp:pre:2p; +rognon rognon nom m s 1.12 1.28 0.06 0.74 +rognonnait rognonner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +rognons rognon nom m p 1.12 1.28 1.06 0.54 +rogné rogner ver m s 0.39 2.97 0.04 0.47 par:pas; +rognée rogner ver f s 0.39 2.97 0.00 0.27 par:pas; +rognées rogner ver f p 0.39 2.97 0.16 0.41 par:pas; +rognure rognure nom f s 0.35 0.74 0.16 0.20 +rognures rognure nom f p 0.35 0.74 0.20 0.54 +rognés rogner ver m p 0.39 2.97 0.00 0.47 par:pas; +rogomme rogomme nom m s 0.00 0.54 0.00 0.41 +rogommes rogomme nom m p 0.00 0.54 0.00 0.14 +rogue rogue adj s 0.66 1.96 0.65 1.69 +rogues rogue adj m p 0.66 1.96 0.01 0.27 +roi_roi roi_roi nom m s 0.01 0.00 0.01 0.00 +roi_soleil roi_soleil nom m s 0.00 0.14 0.00 0.14 +roi roi nom m s 177.53 98.92 166.34 85.95 +roide roide adj s 0.04 2.57 0.03 1.49 +roidement roidement adv 0.00 0.34 0.00 0.34 +roides roide adj p 0.04 2.57 0.01 1.08 +roideur roideur nom f s 0.00 0.20 0.00 0.20 +roidi roidir ver m s 0.02 0.27 0.01 0.14 par:pas; +roidie roidir ver f s 0.02 0.27 0.00 0.07 par:pas; +roidir roidir ver 0.02 0.27 0.01 0.00 inf; +roidissait roidir ver 0.02 0.27 0.00 0.07 ind:imp:3s; +rois roi nom m p 177.53 98.92 11.19 12.97 +roitelet roitelet nom m s 0.22 0.41 0.19 0.27 +roitelets roitelet nom m p 0.22 0.41 0.03 0.14 +râla râler ver 6.61 10.41 0.00 0.54 ind:pas:3s; +râlai râler ver 6.61 10.41 0.00 0.07 ind:pas:1s; +râlaient râler ver 6.61 10.41 0.00 0.47 ind:imp:3p; +râlais râler ver 6.61 10.41 0.19 0.07 ind:imp:1s;ind:imp:2s; +râlait râler ver 6.61 10.41 0.15 2.36 ind:imp:3s; +râlant râler ver 6.61 10.41 0.16 0.54 par:pre; +râlante râlant adj f s 0.02 0.47 0.02 0.14 +râle râler ver 6.61 10.41 1.70 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +râlement râlement nom m s 0.00 0.07 0.00 0.07 +râlent râler ver 6.61 10.41 0.37 0.20 ind:pre:3p; +râler râler ver 6.61 10.41 3.05 2.77 inf; +râlera râler ver 6.61 10.41 0.01 0.14 ind:fut:3s; +râlerai râler ver 6.61 10.41 0.02 0.00 ind:fut:1s; +râlerait râler ver 6.61 10.41 0.01 0.34 cnd:pre:3s; +râles râle nom m p 1.89 9.46 0.84 3.58 +râleur râleur nom m s 0.48 0.47 0.34 0.14 +râleurs râleur adj m p 0.33 0.47 0.21 0.27 +râleuse râleur nom f s 0.48 0.47 0.03 0.14 +râleuses râleur nom f p 0.48 0.47 0.00 0.07 +râleux râleux nom m 0.00 0.14 0.00 0.14 +râlez râler ver 6.61 10.41 0.21 0.14 imp:pre:2p;ind:pre:2p; +roll roll nom m s 5.67 1.35 5.67 1.35 +rolle rolle nom m s 0.01 0.00 0.01 0.00 +roller roller nom m s 1.41 0.00 0.88 0.00 +rollers roller nom m p 1.41 0.00 0.53 0.00 +rollmops rollmops nom m 0.03 0.20 0.03 0.20 +râlé râler ver m s 6.61 10.41 0.15 0.54 par:pas; +rom rom nom s 0.16 0.14 0.01 0.07 +romain romain adj m s 11.02 21.55 5.28 8.04 +romaine romain adj f s 11.02 21.55 3.77 6.55 +romaines romain adj f p 11.02 21.55 0.75 3.58 +romains romain adj m p 11.02 21.55 1.23 3.38 +roman_feuilleton roman_feuilleton nom m s 0.13 0.41 0.03 0.27 +roman_fleuve roman_fleuve nom m s 0.00 0.07 0.00 0.07 +roman_photo roman_photo nom m s 0.28 0.41 0.14 0.20 +roman roman nom m s 23.73 74.80 17.79 51.28 +romance romance nom s 3.12 3.99 2.98 2.91 +romancer romancer ver 0.17 0.27 0.08 0.07 inf; +romancero romancero nom m s 0.00 0.07 0.00 0.07 +romances romance nom p 3.12 3.99 0.14 1.08 +romanche romanche nom m s 0.00 0.07 0.00 0.07 +romancier romancier nom m s 0.93 11.89 0.68 8.18 +romanciers romancier nom m p 0.93 11.89 0.09 2.97 +romancière romancier nom f s 0.93 11.89 0.16 0.61 +romancières romancier nom f p 0.93 11.89 0.00 0.14 +romancé romancé adj m s 0.07 0.34 0.03 0.00 +romancée romancé adj f s 0.07 0.34 0.04 0.20 +romancées romancé adj f p 0.07 0.34 0.01 0.14 +romande romand adj f s 0.00 0.07 0.00 0.07 +romane roman adj f s 2.09 13.11 0.02 1.76 +romanes roman adj f p 2.09 13.11 0.02 1.69 +romanesque romanesque adj s 1.03 10.07 0.95 8.11 +romanesques romanesque adj p 1.03 10.07 0.09 1.96 +romani romani nom m s 0.11 0.07 0.11 0.07 +romanichel romanichel nom m s 0.17 1.35 0.01 0.34 +romanichelle romanichel nom f s 0.17 1.35 0.14 0.14 +romanichelles romanichel nom f p 0.17 1.35 0.00 0.07 +romanichels romanichel nom m p 0.17 1.35 0.02 0.81 +romanisation romanisation nom f s 0.00 0.07 0.00 0.07 +romanistes romaniste nom p 0.01 0.07 0.01 0.07 +romanité romanité nom f s 0.00 0.14 0.00 0.14 +romano romano nom s 0.28 0.54 0.22 0.20 +romanos romano nom p 0.28 0.54 0.06 0.34 +roman_feuilleton roman_feuilleton nom m p 0.13 0.41 0.10 0.14 +roman_photo roman_photo nom m p 0.28 0.41 0.14 0.20 +romans roman nom m p 23.73 74.80 5.94 23.51 +romanticisme romanticisme nom m s 0.01 0.00 0.01 0.00 +romantique romantique adj s 22.48 10.27 20.58 7.64 +romantiquement romantiquement adv 0.09 0.27 0.09 0.27 +romantiques romantique adj p 22.48 10.27 1.89 2.64 +romantisme romantisme nom m s 1.48 3.85 1.48 3.72 +romantismes romantisme nom m p 1.48 3.85 0.00 0.14 +romarin romarin nom m s 1.47 1.01 1.47 1.01 +rombière rombière nom f s 0.18 2.70 0.05 1.96 +rombières rombière nom f p 0.18 2.70 0.13 0.74 +rompît rompre ver 41.37 52.64 0.01 0.61 sub:imp:3s; +rompaient rompre ver 41.37 52.64 0.13 0.61 ind:imp:3p; +rompais rompre ver 41.37 52.64 0.18 0.14 ind:imp:1s;ind:imp:2s; +rompait rompre ver 41.37 52.64 0.06 1.82 ind:imp:3s; +rompant rompre ver 41.37 52.64 0.20 2.36 par:pre; +rompe rompre ver 41.37 52.64 0.72 0.61 sub:pre:1s;sub:pre:3s; +rompent rompre ver 41.37 52.64 0.29 0.47 ind:pre:3p; +rompez rompre ver 41.37 52.64 6.20 1.15 imp:pre:2p;ind:pre:2p; +rompiez rompre ver 41.37 52.64 0.01 0.00 ind:imp:2p; +rompirent rompre ver 41.37 52.64 0.00 0.34 ind:pas:3p; +rompis rompre ver 41.37 52.64 0.00 0.14 ind:pas:1s; +rompissent rompre ver 41.37 52.64 0.00 0.07 sub:imp:3p; +rompit rompre ver 41.37 52.64 0.28 3.24 ind:pas:3s; +rompons rompre ver 41.37 52.64 0.02 0.14 imp:pre:1p;ind:pre:1p; +rompra rompre ver 41.37 52.64 0.20 0.27 ind:fut:3s; +romprai rompre ver 41.37 52.64 0.15 0.00 ind:fut:1s; +rompraient rompre ver 41.37 52.64 0.00 0.14 cnd:pre:3p; +romprais rompre ver 41.37 52.64 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +romprait rompre ver 41.37 52.64 0.05 0.27 cnd:pre:3s; +rompre rompre ver 41.37 52.64 12.61 21.82 inf; +romprez rompre ver 41.37 52.64 0.04 0.07 ind:fut:2p; +romprions rompre ver 41.37 52.64 0.00 0.07 cnd:pre:1p; +romprons rompre ver 41.37 52.64 0.01 0.00 ind:fut:1p; +romps rompre ver 41.37 52.64 2.01 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rompt rompre ver 41.37 52.64 1.66 2.57 ind:pre:3s; +rompu rompre ver m s 41.37 52.64 15.16 10.68 par:pas; +rompue rompre ver f s 41.37 52.64 0.84 2.03 par:pas; +rompues rompre ver f p 41.37 52.64 0.15 0.61 par:pas; +rompus rompu adj m p 1.13 5.07 0.33 1.62 +roms rom nom p 0.16 0.14 0.14 0.07 +ron ron nom m s 0.23 0.34 0.23 0.34 +ronce ronce nom f s 1.10 13.78 0.14 1.28 +ronces ronce nom f p 1.10 13.78 0.95 12.50 +roncet roncet nom m s 0.00 0.07 0.00 0.07 +ronceux ronceux adj m 0.00 0.07 0.00 0.07 +ronchon ronchon adj m s 0.45 0.14 0.41 0.14 +ronchonna ronchonner ver 0.41 4.32 0.00 0.95 ind:pas:3s; +ronchonnaient ronchonner ver 0.41 4.32 0.00 0.07 ind:imp:3p; +ronchonnais ronchonner ver 0.41 4.32 0.00 0.14 ind:imp:1s; +ronchonnait ronchonner ver 0.41 4.32 0.00 0.74 ind:imp:3s; +ronchonnant ronchonner ver 0.41 4.32 0.11 0.47 par:pre; +ronchonne ronchonner ver 0.41 4.32 0.09 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronchonnent ronchonner ver 0.41 4.32 0.01 0.14 ind:pre:3p; +ronchonner ronchonner ver 0.41 4.32 0.16 0.95 inf; +ronchonnes ronchonner ver 0.41 4.32 0.02 0.00 ind:pre:2s; +ronchonneur ronchonneur nom m s 0.02 0.20 0.02 0.07 +ronchonneuse ronchonneur nom f s 0.02 0.20 0.00 0.14 +ronchonnot ronchonnot nom m s 0.00 0.14 0.00 0.14 +ronchonné ronchonner ver m s 0.41 4.32 0.02 0.14 par:pas; +roncier roncier nom m s 0.00 2.64 0.00 1.76 +ronciers roncier nom m p 0.00 2.64 0.00 0.88 +rond_de_cuir rond_de_cuir nom m s 0.26 0.34 0.23 0.27 +rond_point rond_point nom m s 0.44 2.50 0.44 2.43 +rond rond nom m s 16.84 33.65 15.11 24.46 +rondache rondache nom f s 0.02 0.07 0.02 0.07 +ronde_bosse ronde_bosse nom f s 0.00 0.61 0.00 0.61 +ronde ronde nom f s 9.54 20.81 7.93 17.97 +rondeau rondeau nom m s 0.02 0.07 0.02 0.07 +rondelet rondelet adj m s 0.34 1.22 0.06 0.54 +rondelette rondelet adj f s 0.34 1.22 0.28 0.54 +rondelettes rondelet adj f p 0.34 1.22 0.00 0.14 +rondelle rondelle nom f s 1.16 5.34 0.42 2.23 +rondelles rondelle nom f p 1.16 5.34 0.73 3.11 +rondement rondement adv 0.22 1.28 0.22 1.28 +rondes ronde nom f p 9.54 20.81 1.61 2.84 +rondeur rondeur nom f s 0.41 6.49 0.19 3.99 +rondeurs rondeur nom f p 0.41 6.49 0.23 2.50 +rondin rondin nom m s 0.76 8.78 0.23 1.08 +rondins rondin nom m p 0.76 8.78 0.53 7.70 +rondo rondo nom m s 0.34 0.68 0.34 0.61 +rondos rondo nom m p 0.34 0.68 0.00 0.07 +rondouillard rondouillard adj m s 0.04 1.55 0.03 1.01 +rondouillarde rondouillard adj f s 0.04 1.55 0.01 0.41 +rondouillards rondouillard adj m p 0.04 1.55 0.00 0.14 +rond_de_cuir rond_de_cuir nom m p 0.26 0.34 0.03 0.07 +rond_point rond_point nom m p 0.44 2.50 0.00 0.07 +ronds rond nom m p 16.84 33.65 1.73 9.19 +ronfla ronfler ver 6.62 18.24 0.00 0.47 ind:pas:3s; +ronflaient ronfler ver 6.62 18.24 0.01 0.81 ind:imp:3p; +ronflais ronfler ver 6.62 18.24 0.25 0.20 ind:imp:1s;ind:imp:2s; +ronflait ronfler ver 6.62 18.24 0.19 4.80 ind:imp:3s; +ronflant ronflant adj m s 0.33 2.16 0.27 0.68 +ronflante ronflant adj f s 0.33 2.16 0.00 0.47 +ronflantes ronflant adj f p 0.33 2.16 0.01 0.27 +ronflants ronflant adj m p 0.33 2.16 0.05 0.74 +ronfle ronfler ver 6.62 18.24 2.52 3.65 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronflement ronflement nom m s 1.39 10.41 0.67 6.49 +ronflements ronflement nom m p 1.39 10.41 0.72 3.92 +ronflent ronfler ver 6.62 18.24 0.30 1.22 ind:pre:3p; +ronfler ronfler ver 6.62 18.24 1.14 5.47 inf; +ronflerais ronfler ver 6.62 18.24 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +ronfleras ronfler ver 6.62 18.24 0.11 0.00 ind:fut:2s; +ronfles ronfler ver 6.62 18.24 0.78 0.14 ind:pre:2s; +ronflette ronflette nom f s 0.14 0.81 0.14 0.81 +ronfleur ronfleur nom m s 0.00 0.68 0.00 0.54 +ronfleurs ronfleur nom m p 0.00 0.68 0.00 0.07 +ronfleuse ronfleur nom f s 0.00 0.68 0.00 0.07 +ronflez ronfler ver 6.62 18.24 0.32 0.00 imp:pre:2p;ind:pre:2p; +ronfliez ronfler ver 6.62 18.24 0.01 0.00 ind:imp:2p; +ronflotait ronfloter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +ronflotant ronfloter ver 0.00 0.20 0.00 0.07 par:pre; +ronflote ronfloter ver 0.00 0.20 0.00 0.07 ind:pre:3s; +ronflèrent ronfler ver 6.62 18.24 0.00 0.07 ind:pas:3p; +ronflé ronfler ver m s 6.62 18.24 0.90 0.27 par:pas; +ronge ronger ver 11.68 28.38 4.23 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rongea ronger ver 11.68 28.38 0.00 0.14 ind:pas:3s; +rongeai ronger ver 11.68 28.38 0.00 0.20 ind:pas:1s; +rongeaient ronger ver 11.68 28.38 0.18 0.88 ind:imp:3p; +rongeais ronger ver 11.68 28.38 0.02 0.27 ind:imp:1s;ind:imp:2s; +rongeait ronger ver 11.68 28.38 0.88 3.85 ind:imp:3s; +rongeant ronger ver 11.68 28.38 0.16 1.01 par:pre; +rongeante rongeant adj f s 0.00 0.27 0.00 0.14 +rongeantes rongeant adj f p 0.00 0.27 0.00 0.07 +rongement rongement nom m s 0.00 0.14 0.00 0.14 +rongent ronger ver 11.68 28.38 0.53 1.08 ind:pre:3p; +rongeât ronger ver 11.68 28.38 0.00 0.14 sub:imp:3s; +ronger ronger ver 11.68 28.38 1.54 2.84 inf; +rongera ronger ver 11.68 28.38 0.36 0.07 ind:fut:3s; +rongerait ronger ver 11.68 28.38 0.05 0.07 cnd:pre:3s; +ronges ronger ver 11.68 28.38 0.38 0.14 ind:pre:2s; +rongeur rongeur nom m s 1.43 2.91 0.52 1.01 +rongeurs rongeur nom m p 1.43 2.91 0.91 1.89 +rongeuse rongeuse adj f s 0.01 0.00 0.01 0.00 +rongeuses rongeur adj f p 0.27 0.95 0.10 0.07 +rongez ronger ver 11.68 28.38 0.21 0.00 imp:pre:2p;ind:pre:2p; +rongicide rongicide adj s 0.00 0.07 0.00 0.07 +rongèrent ronger ver 11.68 28.38 0.00 0.07 ind:pas:3p; +rongé ronger ver m s 11.68 28.38 2.10 4.66 par:pas; +rongée ronger ver f s 11.68 28.38 0.68 3.38 par:pas; +rongées ronger ver f p 11.68 28.38 0.17 1.96 par:pas; +rongés ronger ver m p 11.68 28.38 0.19 3.51 par:pas; +ronin ronin nom m s 0.30 0.07 0.30 0.07 +ronron ronron nom m s 0.16 3.51 0.16 2.70 +ronronna ronronner ver 0.76 11.08 0.00 0.47 ind:pas:3s; +ronronnaient ronronner ver 0.76 11.08 0.00 0.68 ind:imp:3p; +ronronnais ronronner ver 0.76 11.08 0.01 0.20 ind:imp:1s;ind:imp:2s; +ronronnait ronronner ver 0.76 11.08 0.03 2.50 ind:imp:3s; +ronronnant ronronner ver 0.76 11.08 0.02 1.42 par:pre; +ronronnante ronronnant adj f s 0.01 0.81 0.01 0.34 +ronronnantes ronronnant adj f p 0.01 0.81 0.00 0.14 +ronronnants ronronnant adj m p 0.01 0.81 0.00 0.07 +ronronne ronronner ver 0.76 11.08 0.48 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronronnement ronronnement nom m s 0.04 5.27 0.04 4.93 +ronronnements ronronnement nom m p 0.04 5.27 0.00 0.34 +ronronnent ronronner ver 0.76 11.08 0.00 0.41 ind:pre:3p; +ronronner ronronner ver 0.76 11.08 0.17 2.03 inf; +ronronnerait ronronner ver 0.76 11.08 0.00 0.07 cnd:pre:3s; +ronronnons ronronner ver 0.76 11.08 0.00 0.07 imp:pre:1p; +ronronnèrent ronronner ver 0.76 11.08 0.00 0.07 ind:pas:3p; +ronronné ronronner ver m s 0.76 11.08 0.04 0.41 par:pas; +ronrons ronron nom m p 0.16 3.51 0.00 0.81 +ronéo ronéo nom f s 0.02 0.14 0.02 0.14 +ronéotions ronéoter ver 0.00 0.14 0.00 0.07 ind:imp:1p; +ronéoté ronéoter ver m s 0.00 0.14 0.00 0.07 par:pas; +ronéotyper ronéotyper ver 0.00 0.34 0.00 0.07 inf; +ronéotypé ronéotyper ver m s 0.00 0.34 0.00 0.14 par:pas; +ronéotypés ronéotyper ver m p 0.00 0.34 0.00 0.14 par:pas; +roof roof nom m s 0.03 0.20 0.03 0.20 +râpa râper ver 1.22 4.39 0.00 0.07 ind:pas:3s; +râpaient râper ver 1.22 4.39 0.00 0.27 ind:imp:3p; +râpait râper ver 1.22 4.39 0.00 0.34 ind:imp:3s; +râpant râper ver 1.22 4.39 0.00 0.14 par:pre; +râpe râpe nom f s 1.25 1.55 1.02 1.35 +râpent râper ver 1.22 4.39 0.00 0.20 ind:pre:3p; +râper râper ver 1.22 4.39 0.07 0.47 inf; +râperait râper ver 1.22 4.39 0.00 0.07 cnd:pre:3s; +râperas râper ver 1.22 4.39 0.00 0.07 ind:fut:2s; +râpes râpe nom f p 1.25 1.55 0.23 0.20 +râpeuse râpeux adj f s 0.30 3.85 0.01 1.69 +râpeuses râpeux adj f p 0.30 3.85 0.00 0.68 +râpeux râpeux adj m 0.30 3.85 0.29 1.49 +roploplos roploplo nom m p 0.01 0.07 0.01 0.07 +râpé râper ver m s 1.22 4.39 0.96 1.76 par:pas; +râpée râpé adj f s 0.49 3.51 0.30 0.54 +râpées râpé adj f p 0.49 3.51 0.03 0.88 +râpés râpé adj m p 0.49 3.51 0.02 0.47 +roque roque nom m s 1.14 0.74 1.14 0.34 +roquefort roquefort nom m s 0.07 0.61 0.07 0.61 +roquentin roquentin nom m s 0.00 0.14 0.00 0.14 +roquer roquer ver 0.20 0.07 0.00 0.07 inf; +roques roque nom m p 1.14 0.74 0.00 0.41 +roquet roquet nom m s 0.25 1.89 0.23 1.35 +roquets roquet nom m p 0.25 1.89 0.02 0.54 +roquette roquette nom f s 1.68 1.01 0.91 0.74 +roquettes roquette nom f p 1.68 1.01 0.76 0.27 +rorqual rorqual nom m s 0.00 0.20 0.00 0.14 +rorquals rorqual nom m p 0.00 0.20 0.00 0.07 +rosa roser ver 0.51 3.31 0.01 0.14 ind:pas:3s; +rosace rosace nom f s 0.00 2.16 0.00 1.08 +rosaces rosace nom f p 0.00 2.16 0.00 1.08 +rosages rosage nom m p 0.00 0.07 0.00 0.07 +rosaire rosaire nom m s 1.54 0.74 1.33 0.61 +rosaires rosaire nom m p 1.54 0.74 0.21 0.14 +rosales rosales nom f p 0.36 0.00 0.36 0.00 +rosat rosat adj f s 0.00 0.20 0.00 0.20 +rosbif rosbif nom m s 1.81 0.54 1.38 0.47 +rosbifs rosbif nom m p 1.81 0.54 0.43 0.07 +rose_croix rose_croix nom m 0.00 0.07 0.00 0.07 +rose_thé rose_thé adj m s 0.00 0.07 0.00 0.07 +rose_thé rose_thé nom s 0.00 0.07 0.00 0.07 +rose rose adj s 23.72 96.08 18.43 66.62 +roseau roseau nom m s 1.13 16.55 0.63 2.97 +roseaux roseau nom m p 1.13 16.55 0.50 13.58 +roselière roselier nom f s 0.00 0.61 0.00 0.14 +roselières roselier nom f p 0.00 0.61 0.00 0.47 +roser roser ver 0.51 3.31 0.00 0.07 inf; +roseraie roseraie nom f s 0.31 0.20 0.30 0.14 +roseraies roseraie nom f p 0.31 0.20 0.01 0.07 +roses rose nom p 24.67 57.30 13.56 26.96 +rosette rosette nom f s 0.10 2.03 0.07 1.76 +rosettes rosette nom f p 0.10 2.03 0.03 0.27 +roseur roseur nom f s 0.00 0.68 0.00 0.54 +roseurs roseur nom f p 0.00 0.68 0.00 0.14 +rosi rosir ver m s 1.44 3.51 0.10 0.20 par:pas; +rosicrucien rosicrucien adj m s 0.01 0.07 0.01 0.00 +rosicrucienne rosicrucien nom f s 0.02 0.00 0.01 0.00 +rosicrucienne rosicrucienne adj f s 0.01 0.00 0.01 0.00 +rosicruciens rosicrucien nom m p 0.02 0.00 0.01 0.00 +rosie rosir ver f s 1.44 3.51 1.24 0.00 par:pas; +rosier rosier nom m s 0.85 5.41 0.24 1.22 +rosiers rosier nom m p 0.85 5.41 0.61 4.19 +rosies rosir ver f p 1.44 3.51 0.00 0.14 par:pas; +rosir rosir ver 1.44 3.51 0.04 0.74 inf; +rosis rosir ver m p 1.44 3.51 0.00 0.14 ind:pas:1s;par:pas; +rosissaient rosir ver 1.44 3.51 0.00 0.27 ind:imp:3p; +rosissait rosir ver 1.44 3.51 0.00 0.54 ind:imp:3s; +rosissant rosir ver 1.44 3.51 0.00 0.34 par:pre; +rosissent rosir ver 1.44 3.51 0.00 0.14 ind:pre:3p; +rosit rosir ver 1.44 3.51 0.06 1.01 ind:pre:3s;ind:pas:3s; +rosière rosière nom f s 0.00 0.14 0.00 0.14 +rosâtre rosâtre adj s 0.04 2.16 0.04 1.55 +rosâtres rosâtre adj p 0.04 2.16 0.00 0.61 +rossa rosser ver 2.49 2.43 0.02 0.07 ind:pas:3s; +rossaient rosser ver 2.49 2.43 0.01 0.07 ind:imp:3p; +rossait rosser ver 2.49 2.43 0.01 0.07 ind:imp:3s; +rossant rosser ver 2.49 2.43 0.00 0.07 par:pre; +rossard rossard nom m s 0.00 0.20 0.00 0.07 +rossards rossard nom m p 0.00 0.20 0.00 0.14 +rosse rosser ver 2.49 2.43 0.45 0.14 ind:pre:1s;ind:pre:3s; +rossent rosser ver 2.49 2.43 0.01 0.07 ind:pre:3p; +rosser rosser ver 2.49 2.43 0.79 0.74 inf; +rosserai rosser ver 2.49 2.43 0.12 0.07 ind:fut:1s; +rosserie rosserie nom f s 0.02 0.47 0.00 0.14 +rosseries rosserie nom f p 0.02 0.47 0.02 0.34 +rosses rosse adj f p 0.61 0.41 0.20 0.14 +rossez rosser ver 2.49 2.43 0.16 0.00 imp:pre:2p;ind:pre:2p; +rossignol rossignol nom m s 2.56 3.51 2.06 1.76 +rossignols rossignol nom m p 2.56 3.51 0.50 1.76 +rossinante rossinante nom f s 0.09 0.07 0.09 0.00 +rossinantes rossinante nom f p 0.09 0.07 0.00 0.07 +rossé rosser ver m s 2.49 2.43 0.52 0.81 par:pas; +rossée rosser ver f s 2.49 2.43 0.14 0.20 par:pas; +rossés rosser ver m p 2.49 2.43 0.26 0.14 par:pas; +rostre rostre nom m s 0.03 0.14 0.02 0.00 +rostres rostre nom m p 0.03 0.14 0.01 0.14 +rosé rosé nom m s 0.86 2.70 0.86 2.43 +rosée rosée nom f s 3.19 9.46 3.19 9.26 +rosées roser ver f p 0.51 3.31 0.02 0.41 par:pas; +roséole roséole nom f s 0.01 0.07 0.01 0.07 +rosés rosé adj m p 0.50 2.64 0.27 0.34 +rot rot nom m s 1.85 1.69 1.76 1.08 +rota roter ver 1.30 3.45 0.23 0.47 ind:pas:3s; +rotaient roter ver 1.30 3.45 0.01 0.27 ind:imp:3p; +rotais roter ver 1.30 3.45 0.00 0.07 ind:imp:1s; +rotait roter ver 1.30 3.45 0.01 0.41 ind:imp:3s; +rotant roter ver 1.30 3.45 0.04 0.00 par:pre; +rotariens rotarien adj m p 0.01 0.00 0.01 0.00 +rotary rotary nom m s 0.76 0.34 0.76 0.34 +rotateur rotateur adj m s 0.02 0.00 0.02 0.00 +rotatif rotatif adj m s 0.17 0.81 0.07 0.47 +rotatifs rotatif adj m p 0.17 0.81 0.04 0.00 +rotation rotation nom f s 2.30 3.58 2.08 3.38 +rotationnel rotationnel adj m s 0.01 0.00 0.01 0.00 +rotations rotation nom f p 2.30 3.58 0.22 0.20 +rotative rotatif adj f s 0.17 0.81 0.03 0.27 +rotatives rotative nom f p 0.07 1.08 0.07 0.95 +rotativistes rotativiste nom p 0.00 0.07 0.00 0.07 +rotatoire rotatoire adj m s 0.01 0.07 0.01 0.07 +rote roter ver 1.30 3.45 0.43 0.88 ind:pre:1s;ind:pre:3s; +râteau râteau nom m s 0.83 2.50 0.77 1.62 +râteaux râteau nom m p 0.83 2.50 0.07 0.88 +râtelait râteler ver 0.01 0.14 0.00 0.07 ind:imp:3s; +râteler râteler ver 0.01 0.14 0.01 0.00 inf; +râtelier râtelier nom m s 0.39 2.77 0.36 2.43 +râteliers râtelier nom m p 0.39 2.77 0.03 0.34 +râtelées râteler ver f p 0.01 0.14 0.00 0.07 par:pas; +rotengles rotengle nom m p 0.00 0.07 0.00 0.07 +rotent roter ver 1.30 3.45 0.04 0.14 ind:pre:3p; +roter roter ver 1.30 3.45 0.45 0.81 inf; +rotera roter ver 1.30 3.45 0.00 0.07 ind:fut:3s; +rotes roter ver 1.30 3.45 0.02 0.00 ind:pre:2s; +roteur roteur nom m s 0.01 0.68 0.01 0.00 +roteuse roteuse nom f s 0.01 0.00 0.01 0.00 +roteuses roteur nom f p 0.01 0.68 0.00 0.07 +rotez roter ver 1.30 3.45 0.00 0.07 ind:pre:2p; +rotin rotin nom m s 0.13 3.38 0.13 3.38 +roto roto nom f s 0.04 0.07 0.03 0.07 +rotonde rotonde nom f s 0.21 1.69 0.21 1.62 +rotondes rotonde nom f p 0.21 1.69 0.00 0.07 +rotondité rotondité nom f s 0.01 0.54 0.01 0.27 +rotondités rotondité nom f p 0.01 0.54 0.00 0.27 +rotoplos rotoplos nom m p 0.01 0.27 0.01 0.27 +rotoplots rotoplots nom m p 0.01 0.07 0.01 0.07 +rotor rotor nom m s 0.37 0.41 0.31 0.41 +rotors rotor nom m p 0.37 0.41 0.06 0.00 +rotos roto nom f p 0.04 0.07 0.01 0.00 +rototo rototo nom m s 0.03 0.07 0.02 0.00 +rototos rototo nom m p 0.03 0.07 0.01 0.07 +rots rot nom m p 1.85 1.69 0.09 0.61 +roté roter ver m s 1.30 3.45 0.06 0.20 par:pas; +rotées roter ver f p 1.30 3.45 0.00 0.07 par:pas; +rotule rotule nom f s 1.29 1.76 0.57 0.61 +rotules rotule nom f p 1.29 1.76 0.72 1.15 +rotulien rotulien adj m s 0.03 0.00 0.03 0.00 +roténone roténone nom f s 0.09 0.00 0.09 0.00 +roture roture nom f s 0.14 0.47 0.14 0.47 +roturier roturier nom m s 0.17 0.54 0.06 0.27 +roturiers roturier nom m p 0.17 0.54 0.05 0.14 +roturière roturier nom f s 0.17 0.54 0.06 0.14 +roua rouer ver 2.20 2.57 0.00 0.07 ind:pas:3s; +rouage rouage nom m s 1.18 4.05 0.30 0.47 +rouages rouage nom m p 1.18 4.05 0.88 3.58 +rouaient rouer ver 2.20 2.57 0.01 0.07 ind:imp:3p; +rouais rouer ver 2.20 2.57 0.02 0.00 ind:imp:2s; +rouait rouer ver 2.20 2.57 0.13 0.14 ind:imp:3s; +rouan rouan nom m s 0.16 0.20 0.16 0.20 +rouant rouer ver 2.20 2.57 0.01 0.14 par:pre; +roubaisienne roubaisien nom f s 0.00 0.07 0.00 0.07 +roubignoles roubignoles nom f p 0.06 0.27 0.06 0.27 +roublard roublard nom m s 0.33 0.27 0.32 0.27 +roublarde roublard adj f s 0.10 0.74 0.01 0.14 +roublarder roublarder ver 0.00 0.07 0.00 0.07 inf; +roublardes roublard adj f p 0.10 0.74 0.01 0.07 +roublardise roublardise nom f s 0.00 0.20 0.00 0.14 +roublardises roublardise nom f p 0.00 0.20 0.00 0.07 +rouble rouble nom m s 7.88 0.68 1.22 0.14 +roubles rouble nom m p 7.88 0.68 6.66 0.54 +roucoula roucouler ver 0.70 3.45 0.00 0.47 ind:pas:3s; +roucoulade roucoulade nom f s 0.16 0.68 0.16 0.14 +roucoulades roucoulade nom f p 0.16 0.68 0.00 0.54 +roucoulaient roucouler ver 0.70 3.45 0.00 0.20 ind:imp:3p; +roucoulais roucouler ver 0.70 3.45 0.01 0.00 ind:imp:2s; +roucoulait roucouler ver 0.70 3.45 0.03 0.68 ind:imp:3s; +roucoulant roucouler ver 0.70 3.45 0.00 0.47 par:pre; +roucoulante roucoulant adj f s 0.02 0.61 0.02 0.27 +roucoulantes roucoulant adj f p 0.02 0.61 0.00 0.14 +roucoulants roucoulant adj m p 0.02 0.61 0.00 0.14 +roucoule roucouler ver 0.70 3.45 0.38 0.34 ind:pre:1s;ind:pre:3s; +roucoulement roucoulement nom m s 0.33 1.42 0.16 0.61 +roucoulements roucoulement nom m p 0.33 1.42 0.16 0.81 +roucoulent roucouler ver 0.70 3.45 0.03 0.20 ind:pre:3p; +roucouler roucouler ver 0.70 3.45 0.23 0.81 inf; +roucoulerez roucouler ver 0.70 3.45 0.01 0.00 ind:fut:2p; +roucouleur roucouleur nom m s 0.02 0.07 0.02 0.07 +roucoulé roucouler ver m s 0.70 3.45 0.01 0.20 par:pas; +roucoulés roucouler ver m p 0.70 3.45 0.00 0.07 par:pas; +roudoudou roudoudou nom m s 0.28 0.68 0.28 0.54 +roudoudous roudoudou nom m p 0.28 0.68 0.00 0.14 +roue roue nom f s 21.87 42.43 13.49 17.77 +rouelle rouelle nom f s 0.00 0.14 0.00 0.14 +rouennaise rouennais nom f s 0.27 0.00 0.27 0.00 +rouenneries rouennerie nom f p 0.00 0.07 0.00 0.07 +rouent rouer ver 2.20 2.57 0.12 0.00 ind:pre:3p; +rouer rouer ver 2.20 2.57 0.46 0.34 inf; +rouerai rouer ver 2.20 2.57 0.20 0.00 ind:fut:1s; +rouergat rouergat adj m s 0.00 0.07 0.00 0.07 +rouerie rouerie nom f s 0.01 0.95 0.01 0.74 +roueries rouerie nom f p 0.01 0.95 0.00 0.20 +roueront rouer ver 2.20 2.57 0.14 0.00 ind:fut:3p; +roues roue nom f p 21.87 42.43 8.38 24.66 +rouet rouet nom m s 0.15 0.54 0.15 0.54 +rouf rouf nom m s 0.00 0.27 0.00 0.27 +rouflaquettes rouflaquette nom f p 0.13 0.81 0.13 0.81 +rougît rougir ver 9.01 42.09 0.00 0.07 sub:imp:3s; +rouge_brun rouge_brun adj m s 0.00 0.20 0.00 0.20 +rouge_feu rouge_feu adj m s 0.00 0.07 0.00 0.07 +rouge_gorge rouge_gorge nom m s 0.44 1.08 0.30 0.68 +rouge_queue rouge_queue nom m s 0.00 0.07 0.00 0.07 +rouge_sang rouge_sang nom s 0.00 0.07 0.00 0.07 +rouge rouge adj s 102.93 273.24 79.70 195.27 +rougeaud rougeaud nom m s 0.10 0.74 0.10 0.68 +rougeaude rougeaud adj f s 0.04 3.78 0.00 0.61 +rougeaudes rougeaud adj f p 0.04 3.78 0.00 0.27 +rougeauds rougeaud adj m p 0.04 3.78 0.00 0.81 +rougeoie rougeoyer ver 0.38 3.51 0.14 0.68 imp:pre:2s;ind:pre:3s; +rougeoiement rougeoiement nom m s 0.03 1.42 0.03 1.15 +rougeoiements rougeoiement nom m p 0.03 1.42 0.00 0.27 +rougeoient rougeoyer ver 0.38 3.51 0.00 0.27 ind:pre:3p; +rougeole rougeole nom f s 1.27 1.69 1.27 1.69 +rougeâtre rougeâtre adj s 0.17 6.08 0.15 3.85 +rougeâtres rougeâtre adj p 0.17 6.08 0.02 2.23 +rougeoya rougeoyer ver 0.38 3.51 0.00 0.07 ind:pas:3s; +rougeoyaient rougeoyer ver 0.38 3.51 0.00 0.41 ind:imp:3p; +rougeoyait rougeoyer ver 0.38 3.51 0.00 1.35 ind:imp:3s; +rougeoyant rougeoyant adj m s 0.28 2.03 0.15 0.54 +rougeoyante rougeoyant adj f s 0.28 2.03 0.11 0.61 +rougeoyantes rougeoyant adj f p 0.28 2.03 0.00 0.54 +rougeoyants rougeoyant adj m p 0.28 2.03 0.01 0.34 +rougeoyer rougeoyer ver 0.38 3.51 0.22 0.61 inf; +rougeoyé rougeoyer ver m s 0.38 3.51 0.00 0.07 par:pas; +rouge_gorge rouge_gorge nom m p 0.44 1.08 0.13 0.41 +rouges rouge adj p 102.93 273.24 23.23 77.97 +rouget rouget nom m s 0.35 1.49 0.35 0.54 +rougets rouget nom m p 0.35 1.49 0.00 0.95 +rougeur rougeur nom f s 1.16 3.04 0.63 1.89 +rougeurs rougeur nom f p 1.16 3.04 0.53 1.15 +rough rough nom m s 0.20 0.00 0.20 0.00 +rougi rougir ver m s 9.01 42.09 0.72 4.19 par:pas; +rougie rougir ver f s 9.01 42.09 0.17 1.62 par:pas; +rougies rougir ver f p 9.01 42.09 0.10 1.22 par:pas; +rougir rougir ver 9.01 42.09 2.51 10.68 inf; +rougira rougir ver 9.01 42.09 0.01 0.07 ind:fut:3s; +rougiraient rougir ver 9.01 42.09 0.00 0.07 cnd:pre:3p; +rougirais rougir ver 9.01 42.09 0.13 0.14 cnd:pre:1s; +rougirait rougir ver 9.01 42.09 0.29 0.00 cnd:pre:3s; +rougirent rougir ver 9.01 42.09 0.00 0.20 ind:pas:3p; +rougirez rougir ver 9.01 42.09 0.27 0.00 ind:fut:2p; +rougis rougir ver m p 9.01 42.09 1.75 4.32 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rougissaient rougir ver 9.01 42.09 0.02 0.54 ind:imp:3p; +rougissais rougir ver 9.01 42.09 0.19 0.68 ind:imp:1s;ind:imp:2s; +rougissait rougir ver 9.01 42.09 0.03 2.36 ind:imp:3s; +rougissant rougir ver 9.01 42.09 0.02 3.78 par:pre; +rougissante rougissant adj f s 0.20 2.16 0.15 1.28 +rougissantes rougissant adj f p 0.20 2.16 0.02 0.14 +rougissants rougissant adj m p 0.20 2.16 0.01 0.07 +rougisse rougir ver 9.01 42.09 0.01 0.07 sub:pre:1s;sub:pre:3s; +rougissement rougissement nom m s 0.06 0.07 0.03 0.07 +rougissements rougissement nom m p 0.06 0.07 0.04 0.00 +rougissent rougir ver 9.01 42.09 0.68 0.27 ind:pre:3p; +rougissez rougir ver 9.01 42.09 0.46 0.34 imp:pre:2p;ind:pre:2p; +rougit rougir ver 9.01 42.09 1.65 11.49 ind:pre:3s;ind:pas:3s; +roui rouir ver m s 0.00 0.27 0.00 0.07 par:pas; +rouies rouir ver f p 0.00 0.27 0.00 0.07 par:pas; +rouillaient rouiller ver 6.75 19.46 0.00 0.47 ind:imp:3p; +rouillait rouiller ver 6.75 19.46 0.00 0.54 ind:imp:3s; +rouillant rouiller ver 6.75 19.46 0.00 0.14 par:pre; +rouillarde rouillarde nom f s 0.00 0.07 0.00 0.07 +rouille rouille nom f s 1.97 8.85 1.96 8.72 +rouillent rouiller ver 6.75 19.46 0.75 0.20 ind:pre:3p; +rouiller rouiller ver 6.75 19.46 0.90 0.54 inf; +rouillerait rouiller ver 6.75 19.46 0.02 0.14 cnd:pre:3s; +rouilleront rouiller ver 6.75 19.46 0.01 0.00 ind:fut:3p; +rouilles rouille nom f p 1.97 8.85 0.01 0.14 +rouilleux rouilleux adj m 0.00 0.14 0.00 0.14 +rouillé rouiller ver m s 6.75 19.46 2.26 5.41 par:pas; +rouillée rouiller ver f s 6.75 19.46 1.46 2.91 par:pas; +rouillées rouiller ver f p 6.75 19.46 0.49 3.65 par:pas; +rouillures rouillure nom f p 0.00 0.07 0.00 0.07 +rouillés rouiller ver m p 6.75 19.46 0.42 4.26 par:pas; +rouissant rouir ver 0.00 0.27 0.00 0.07 par:pre; +rouissent rouir ver 0.00 0.27 0.00 0.07 ind:pre:3p; +roula rouler ver 61.82 163.45 0.16 12.43 ind:pas:3s; +roulade roulade nom f s 0.20 1.28 0.14 0.47 +roulades roulade nom f p 0.20 1.28 0.06 0.81 +roulage roulage nom m s 0.02 0.20 0.02 0.14 +roulages roulage nom m p 0.02 0.20 0.00 0.07 +roulai rouler ver 61.82 163.45 0.02 0.41 ind:pas:1s; +roulaient rouler ver 61.82 163.45 0.34 10.41 ind:imp:3p; +roulais rouler ver 61.82 163.45 1.21 2.43 ind:imp:1s;ind:imp:2s; +roulait rouler ver 61.82 163.45 2.43 22.91 ind:imp:3s; +roulant roulant adj m s 7.03 10.54 4.84 6.69 +roulante roulant adj f s 7.03 10.54 1.75 2.16 +roulantes roulant adj f p 7.03 10.54 0.17 0.88 +roulants roulant adj m p 7.03 10.54 0.27 0.81 +roule rouler ver 61.82 163.45 22.86 24.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rouleau rouleau nom m s 5.93 19.19 3.87 10.88 +rouleaux rouleau nom m p 5.93 19.19 2.06 8.31 +roulement roulement nom m s 2.94 10.41 2.17 7.97 +roulements roulement nom m p 2.94 10.41 0.77 2.43 +roulent rouler ver 61.82 163.45 2.02 6.28 ind:pre:3p; +rouler rouler ver 61.82 163.45 14.41 33.78 ind:pre:2p;inf; +roulera rouler ver 61.82 163.45 0.62 0.34 ind:fut:3s; +roulerai rouler ver 61.82 163.45 0.09 0.14 ind:fut:1s; +rouleraient rouler ver 61.82 163.45 0.01 0.34 cnd:pre:3p; +roulerais rouler ver 61.82 163.45 0.24 0.00 cnd:pre:1s;cnd:pre:2s; +roulerait rouler ver 61.82 163.45 0.27 0.81 cnd:pre:3s; +rouleras rouler ver 61.82 163.45 0.07 0.00 ind:fut:2s; +roulerez rouler ver 61.82 163.45 0.29 0.00 ind:fut:2p; +rouleriez rouler ver 61.82 163.45 0.02 0.00 cnd:pre:2p; +roulerons rouler ver 61.82 163.45 0.08 0.07 ind:fut:1p; +rouleront rouler ver 61.82 163.45 0.17 0.27 ind:fut:3p; +roules rouler ver 61.82 163.45 1.89 0.61 ind:pre:2s; +roulette roulette nom f s 5.55 8.78 2.50 2.77 +roulettes roulette nom f p 5.55 8.78 3.05 6.01 +rouleur rouleur adj m s 0.03 0.41 0.03 0.20 +rouleurs rouleur nom m p 0.06 0.41 0.03 0.27 +rouleuse rouleur adj f s 0.03 0.41 0.00 0.14 +rouleuses rouleur adj f p 0.03 0.41 0.00 0.07 +roulez rouler ver 61.82 163.45 3.83 0.95 imp:pre:2p;ind:pre:2p; +roulier roulier nom m s 0.30 1.01 0.16 0.61 +rouliers roulier nom m p 0.30 1.01 0.14 0.41 +rouliez rouler ver 61.82 163.45 0.75 0.07 ind:imp:2p; +roulions rouler ver 61.82 163.45 0.09 2.09 ind:imp:1p; +roulis roulis nom m 0.56 3.04 0.56 3.04 +roulâmes rouler ver 61.82 163.45 0.00 0.54 ind:pas:1p; +roulons rouler ver 61.82 163.45 0.44 2.91 imp:pre:1p;ind:pre:1p;;imp:pre:1p;ind:pre:1p; +roulât rouler ver 61.82 163.45 0.00 0.07 sub:imp:3s; +roulottait roulotter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +roulotte roulotte nom f s 1.59 4.80 1.32 3.58 +roulottent roulotter ver 0.00 0.20 0.00 0.14 ind:pre:3p; +roulottes roulotte nom f p 1.59 4.80 0.27 1.22 +roulottiers roulottier nom m p 0.00 0.20 0.00 0.14 +roulottière roulottier nom f s 0.00 0.20 0.00 0.07 +roulèrent rouler ver 61.82 163.45 0.28 4.26 ind:pas:3p; +roulé_boulé roulé_boulé nom m s 0.00 0.27 0.00 0.14 +roulé rouler ver m s 61.82 163.45 6.25 16.28 par:pas; +roulée roulé adj f s 2.15 8.99 1.18 2.23 +roulées rouler ver f p 61.82 163.45 0.17 1.08 par:pas; +roulure roulure nom f s 0.86 0.88 0.71 0.68 +roulures roulure nom f p 0.86 0.88 0.14 0.20 +roulé_boulé roulé_boulé nom m p 0.00 0.27 0.00 0.14 +roulés rouler ver m p 61.82 163.45 1.00 3.65 par:pas; +roumain roumain adj m s 3.11 1.42 2.23 0.41 +roumaine roumain adj f s 3.11 1.42 0.78 0.68 +roumaines roumain nom f p 2.58 1.76 0.14 0.00 +roumains roumain nom m p 2.58 1.76 0.87 0.88 +roumi roumi nom m s 0.14 0.47 0.14 0.00 +roumis roumi nom m p 0.14 0.47 0.00 0.47 +round round nom m s 7.59 2.84 5.75 2.30 +rounds round nom m p 7.59 2.84 1.84 0.54 +roupane roupane nom f s 0.00 0.27 0.00 0.27 +roupette roupette nom f s 0.15 0.00 0.15 0.00 +roupettes roupettes nom f p 0.56 0.20 0.56 0.20 +roupie roupie nom f s 1.30 0.95 0.29 0.41 +roupies roupie nom f p 1.30 0.95 1.01 0.54 +roupillaient roupiller ver 2.47 6.82 0.00 0.07 ind:imp:3p; +roupillais roupiller ver 2.47 6.82 0.06 0.14 ind:imp:1s;ind:imp:2s; +roupillait roupiller ver 2.47 6.82 0.04 0.54 ind:imp:3s; +roupille roupiller ver 2.47 6.82 0.64 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +roupillent roupiller ver 2.47 6.82 0.12 0.81 ind:pre:3p; +roupiller roupiller ver 2.47 6.82 1.22 2.43 inf; +roupillerai roupiller ver 2.47 6.82 0.00 0.07 ind:fut:1s; +roupillerais roupiller ver 2.47 6.82 0.01 0.00 cnd:pre:1s; +roupillerait roupiller ver 2.47 6.82 0.00 0.07 cnd:pre:3s; +roupilles roupiller ver 2.47 6.82 0.06 0.27 ind:pre:2s; +roupillez roupiller ver 2.47 6.82 0.19 0.07 imp:pre:2p;ind:pre:2p; +roupillon roupillon nom m s 0.56 1.08 0.42 1.01 +roupillons roupillon nom m p 0.56 1.08 0.14 0.07 +roupillé roupiller ver m s 2.47 6.82 0.14 0.68 par:pas; +rouquemoute rouquemoute nom s 0.00 3.85 0.00 3.85 +rouquette rouquette nom f s 0.00 0.07 0.00 0.07 +rouquin rouquin nom m s 2.84 10.07 1.33 8.31 +rouquine rouquin nom f s 2.84 10.07 1.06 1.35 +rouquines rouquin nom f p 2.84 10.07 0.05 0.07 +rouquins rouquin nom m p 2.84 10.07 0.39 0.34 +rouscaillait rouscailler ver 0.04 0.54 0.00 0.07 ind:imp:3s; +rouscaillant rouscailler ver 0.04 0.54 0.00 0.07 par:pre; +rouscaille rouscailler ver 0.04 0.54 0.04 0.14 imp:pre:2s;ind:pre:3s; +rouscaillent rouscailler ver 0.04 0.54 0.00 0.07 ind:pre:3p; +rouscailler rouscailler ver 0.04 0.54 0.00 0.20 inf; +rouspète rouspéter ver 1.02 1.69 0.16 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rouspètent rouspéter ver 1.02 1.69 0.05 0.07 ind:pre:3p; +rouspètes rouspéter ver 1.02 1.69 0.13 0.00 ind:pre:2s; +rouspéta rouspéter ver 1.02 1.69 0.01 0.20 ind:pas:3s; +rouspétage rouspétage nom m s 0.00 0.07 0.00 0.07 +rouspétaient rouspéter ver 1.02 1.69 0.00 0.07 ind:imp:3p; +rouspétais rouspéter ver 1.02 1.69 0.01 0.00 ind:imp:1s; +rouspétait rouspéter ver 1.02 1.69 0.03 0.34 ind:imp:3s; +rouspétance rouspétance nom f s 0.01 0.27 0.01 0.27 +rouspétant rouspéter ver 1.02 1.69 0.17 0.14 par:pre; +rouspéter rouspéter ver 1.02 1.69 0.46 0.27 inf; +rouspétera rouspéter ver 1.02 1.69 0.00 0.07 ind:fut:3s; +rouspéteur rouspéteur nom m s 0.04 0.00 0.01 0.00 +rouspéteurs rouspéteur nom m p 0.04 0.00 0.02 0.00 +rouspétez rouspéter ver 1.02 1.69 0.01 0.14 imp:pre:2p;ind:pre:2p; +rousse roux nom f s 4.50 11.08 3.69 5.61 +rousseau rousseau nom m s 0.00 0.20 0.00 0.14 +rousseauiste rousseauiste adj f s 0.01 0.07 0.01 0.07 +rousseaux rousseau nom m p 0.00 0.20 0.00 0.07 +rousselée rousseler ver f s 0.10 0.00 0.10 0.00 par:pas; +rousserolle rousserolle nom f s 0.00 0.07 0.00 0.07 +rousses rousse nom f p 0.53 0.00 0.53 0.00 +roussette roussette nom f s 0.01 1.69 0.01 1.55 +roussettes roussette nom f p 0.01 1.69 0.00 0.14 +rousseur rousseur nom f s 1.45 5.54 1.40 5.14 +rousseurs rousseur nom f p 1.45 5.54 0.05 0.41 +roussi roussi nom m s 1.00 1.22 1.00 1.15 +roussie roussi adj f s 0.04 2.23 0.01 0.61 +roussies roussir ver f p 0.23 1.76 0.10 0.14 par:pas; +roussin roussin nom m s 0.00 0.68 0.00 0.34 +roussins roussin nom m p 0.00 0.68 0.00 0.34 +roussir roussir ver 0.23 1.76 0.02 0.27 inf; +roussis roussi adj m p 0.04 2.23 0.01 0.61 +roussissaient roussir ver 0.23 1.76 0.00 0.07 ind:imp:3p; +roussissait roussir ver 0.23 1.76 0.00 0.14 ind:imp:3s; +roussissant roussir ver 0.23 1.76 0.00 0.07 par:pre; +roussissures roussissure nom f p 0.00 0.07 0.00 0.07 +roussit roussir ver 0.23 1.76 0.01 0.20 ind:pre:3s;ind:pas:3s; +roussâtre roussâtre adj s 0.00 1.22 0.00 0.81 +roussâtres roussâtre adj p 0.00 1.22 0.00 0.41 +roussé rousser ver m s 0.00 0.07 0.00 0.07 par:pas; +rouste rouste nom f s 0.34 0.41 0.32 0.34 +roustes rouste nom f p 0.34 0.41 0.02 0.07 +rousti roustir ver m s 0.01 0.34 0.01 0.14 par:pas; +rousties roustir ver f p 0.01 0.34 0.00 0.07 par:pas; +roustis roustir ver m p 0.01 0.34 0.00 0.14 par:pas; +rouston rouston nom m s 0.01 0.00 0.01 0.00 +roustons roustons nom m p 0.24 0.20 0.24 0.20 +routage routage nom m s 0.16 0.07 0.16 0.07 +routard routard nom m s 0.32 0.07 0.26 0.00 +routarde routard adj f s 0.01 0.07 0.00 0.07 +routards routard nom m p 0.32 0.07 0.06 0.07 +route route nom f s 166.72 288.04 152.83 251.35 +router router ver 0.05 0.00 0.03 0.00 inf; +routes route nom f p 166.72 288.04 13.89 36.69 +routeur routeur nom m s 0.17 0.00 0.11 0.00 +routeurs routeur nom m p 0.17 0.00 0.06 0.00 +routier routier adj m s 4.63 4.26 1.41 0.74 +routiers routier nom m p 2.00 5.54 0.98 2.97 +routin routin nom m s 0.00 0.47 0.00 0.47 +routine routine nom f s 12.14 12.77 11.67 9.53 +routines routine nom f p 12.14 12.77 0.47 3.24 +routinier routinier adj m s 0.15 1.62 0.09 0.41 +routiniers routinier adj m p 0.15 1.62 0.00 0.47 +routinière routinier adj f s 0.15 1.62 0.05 0.47 +routinières routinier adj f p 0.15 1.62 0.01 0.27 +routière routier adj f s 4.63 4.26 2.34 2.30 +routières routier adj f p 4.63 4.26 0.39 0.54 +routé router ver m s 0.05 0.00 0.02 0.00 par:pas; +roué rouer ver m s 2.20 2.57 0.53 1.22 par:pas; +rouée rouer ver f s 2.20 2.57 0.36 0.41 par:pas; +roués roué adj m p 0.02 0.54 0.01 0.20 +rouvert rouvrir ver m s 6.76 18.45 0.62 1.89 par:pas; +rouverte rouvrir ver f s 6.76 18.45 0.19 0.81 par:pas; +rouvertes rouvrir ver f p 6.76 18.45 0.14 0.41 par:pas; +rouverts rouvrir ver m p 6.76 18.45 0.02 0.27 par:pas; +rouvrît rouvrir ver 6.76 18.45 0.00 0.14 sub:imp:3s; +rouvraient rouvrir ver 6.76 18.45 0.01 0.20 ind:imp:3p; +rouvrais rouvrir ver 6.76 18.45 0.02 0.47 ind:imp:1s;ind:imp:2s; +rouvrait rouvrir ver 6.76 18.45 0.01 1.01 ind:imp:3s; +rouvrant rouvrir ver 6.76 18.45 0.01 0.61 par:pre; +rouvre rouvrir ver 6.76 18.45 0.94 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rouvrent rouvrir ver 6.76 18.45 0.35 0.41 ind:pre:3p; +rouvres rouvrir ver 6.76 18.45 0.02 0.27 ind:pre:2s;sub:pre:2s; +rouvrez rouvrir ver 6.76 18.45 0.25 0.00 imp:pre:2p;ind:pre:2p; +rouvriez rouvrir ver 6.76 18.45 0.01 0.00 ind:imp:2p; +rouvrir rouvrir ver 6.76 18.45 3.46 3.65 inf; +rouvrira rouvrir ver 6.76 18.45 0.28 0.07 ind:fut:3s; +rouvrirai rouvrir ver 6.76 18.45 0.09 0.20 ind:fut:1s; +rouvriraient rouvrir ver 6.76 18.45 0.00 0.14 cnd:pre:3p; +rouvrirais rouvrir ver 6.76 18.45 0.00 0.14 cnd:pre:1s;cnd:pre:2s; +rouvrirait rouvrir ver 6.76 18.45 0.01 0.14 cnd:pre:3s; +rouvrirent rouvrir ver 6.76 18.45 0.00 0.41 ind:pas:3p; +rouvrirez rouvrir ver 6.76 18.45 0.04 0.07 ind:fut:2p; +rouvriront rouvrir ver 6.76 18.45 0.14 0.00 ind:fut:3p; +rouvris rouvrir ver 6.76 18.45 0.01 0.34 ind:pas:1s; +rouvrit rouvrir ver 6.76 18.45 0.12 3.92 ind:pas:3s; +rouvrons rouvrir ver 6.76 18.45 0.03 0.00 imp:pre:1p;ind:pre:1p; +roux roux adj m 3.66 20.68 3.66 20.68 +roy roy nom m s 0.17 0.27 0.17 0.27 +royal royal adj m s 22.65 29.26 10.51 16.49 +royale royal adj f s 22.65 29.26 9.64 9.59 +royalement royalement adv 0.83 1.82 0.83 1.82 +royales royal adj f p 22.65 29.26 1.50 1.69 +royaliste royaliste adj s 0.35 0.68 0.20 0.47 +royalistes royaliste nom p 0.28 0.34 0.16 0.27 +royalties royalties nom f p 0.54 0.14 0.54 0.14 +royalty royalty nom f s 0.01 0.07 0.01 0.07 +royaume royaume nom m s 27.79 20.68 24.16 18.78 +royaumes royaume nom m p 27.79 20.68 3.62 1.89 +royauté royauté nom f s 0.59 1.28 0.58 1.15 +royautés royauté nom f p 0.59 1.28 0.01 0.14 +royaux royal adj m p 22.65 29.26 1.00 1.49 +règle règle nom f s 79.51 49.93 33.17 27.91 +règlement règlement nom m s 21.27 17.16 19.40 12.16 +règlements règlement nom m p 21.27 17.16 1.87 5.00 +règlent régler ver 85.81 54.19 0.76 0.47 ind:pre:3p; +règles règle nom f p 79.51 49.93 46.34 22.03 +règne régner ver 22.75 47.43 8.06 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +règnent régner ver 22.75 47.43 1.52 1.89 ind:pre:3p; +règnes régner ver 22.75 47.43 0.16 0.07 ind:pre:2s; +ré ré nom m 3.06 0.54 3.06 0.54 +ru ru nom m s 0.26 0.88 0.14 0.61 +rua ruer ver 3.27 20.81 0.03 3.11 ind:pas:3s; +réa réa nom m s 0.88 0.00 0.88 0.00 +réabonnement réabonnement nom m s 0.03 0.07 0.03 0.07 +réabonner réabonner ver 0.03 0.00 0.03 0.00 inf; +réabsorption réabsorption nom f s 0.03 0.00 0.03 0.00 +réac réac adj m s 0.59 0.47 0.42 0.41 +réaccoutumer réaccoutumer ver 0.00 0.20 0.00 0.14 inf; +réaccoutumerait réaccoutumer ver 0.00 0.20 0.00 0.07 cnd:pre:3s; +réacheminer réacheminer ver 0.01 0.00 0.01 0.00 inf; +réacs réac adj m p 0.59 0.47 0.17 0.07 +réactant réactant nom m s 0.01 0.00 0.01 0.00 +réacteur réacteur nom m s 5.24 0.81 3.62 0.14 +réacteurs réacteur nom m p 5.24 0.81 1.62 0.68 +réactif réactif nom m s 0.38 0.20 0.27 0.20 +réactifs réactif nom m p 0.38 0.20 0.11 0.00 +réaction réaction nom f s 26.41 30.68 21.23 20.00 +réactionnaire réactionnaire adj s 1.55 2.43 0.54 1.76 +réactionnaires réactionnaire adj p 1.55 2.43 1.01 0.68 +réactionnel réactionnel adj m s 0.01 0.00 0.01 0.00 +réactions réaction nom f p 26.41 30.68 5.17 10.68 +réactiva réactiver ver 1.21 0.34 0.00 0.07 ind:pas:3s; +réactivait réactiver ver 1.21 0.34 0.00 0.07 ind:imp:3s; +réactivation réactivation nom f s 0.03 0.07 0.03 0.07 +réactive réactiver ver 1.21 0.34 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réactiver réactiver ver 1.21 0.34 0.49 0.00 inf; +réactiveront réactiver ver 1.21 0.34 0.01 0.00 ind:fut:3p; +réactives réactif adj f p 0.63 0.07 0.24 0.00 +réactivez réactiver ver 1.21 0.34 0.13 0.00 imp:pre:2p; +réactiviez réactiver ver 1.21 0.34 0.01 0.00 ind:imp:2p; +réactivité réactivité nom f s 0.20 0.00 0.20 0.00 +réactivé réactiver ver m s 1.21 0.34 0.37 0.14 par:pas; +réactivée réactiver ver f s 1.21 0.34 0.09 0.00 par:pas; +réactivées réactiver ver f p 1.21 0.34 0.01 0.00 par:pas; +réactualisation réactualisation nom f s 0.01 0.00 0.01 0.00 +réactualise réactualiser ver 0.05 0.14 0.00 0.07 ind:pre:3s; +réactualiser réactualiser ver 0.05 0.14 0.03 0.07 inf; +réactualisé réactualiser ver m s 0.05 0.14 0.03 0.00 par:pas; +réadaptait réadapter ver 0.09 0.27 0.00 0.07 ind:imp:3s; +réadaptant réadapter ver 0.09 0.27 0.00 0.07 par:pre; +réadaptation réadaptation nom f s 0.24 0.14 0.24 0.14 +réadapte réadapter ver 0.09 0.27 0.01 0.00 ind:pre:3s; +réadapter réadapter ver 0.09 0.27 0.08 0.14 inf; +ruade ruade nom f s 0.28 2.09 0.28 0.95 +ruades ruade nom f p 0.28 2.09 0.01 1.15 +réadmis réadmettre ver m s 0.06 0.00 0.04 0.00 par:pas; +réadmise réadmettre ver f s 0.06 0.00 0.01 0.00 par:pas; +réadmission réadmission nom f s 0.04 0.00 0.04 0.00 +réadopter réadopter ver 0.00 0.07 0.00 0.07 inf; +réaffûtée réaffûter ver f s 0.00 0.07 0.00 0.07 par:pas; +réaffectait réaffecter ver 0.51 0.00 0.01 0.00 ind:imp:3s; +réaffectation réaffectation nom f s 0.16 0.00 0.16 0.00 +réaffecter réaffecter ver 0.51 0.00 0.11 0.00 inf; +réaffectons réaffecter ver 0.51 0.00 0.01 0.00 imp:pre:1p; +réaffecté réaffecter ver m s 0.51 0.00 0.28 0.00 par:pas; +réaffectée réaffecter ver f s 0.51 0.00 0.07 0.00 par:pas; +réaffectés réaffecter ver m p 0.51 0.00 0.03 0.00 par:pas; +réaffichées réafficher ver f p 0.00 0.07 0.00 0.07 par:pas; +réaffirmai réaffirmer ver 0.46 0.47 0.00 0.07 ind:pas:1s; +réaffirmaient réaffirmer ver 0.46 0.47 0.00 0.07 ind:imp:3p; +réaffirmait réaffirmer ver 0.46 0.47 0.01 0.00 ind:imp:3s; +réaffirmation réaffirmation nom f s 0.01 0.00 0.01 0.00 +réaffirme réaffirmer ver 0.46 0.47 0.22 0.00 ind:pre:1s;ind:pre:3s; +réaffirmer réaffirmer ver 0.46 0.47 0.13 0.27 inf; +réaffirmé réaffirmer ver m s 0.46 0.47 0.07 0.00 par:pas; +réaffirmée réaffirmer ver f s 0.46 0.47 0.03 0.07 par:pas; +réagît réagir ver 33.19 23.45 0.00 0.20 sub:imp:3s; +réagencement réagencement nom m s 0.00 0.07 0.00 0.07 +réagi réagir ver m s 33.19 23.45 5.95 3.85 par:pas; +réagir réagir ver 33.19 23.45 9.92 7.97 inf; +réagira réagir ver 33.19 23.45 0.93 0.00 ind:fut:3s; +réagirai réagir ver 33.19 23.45 0.06 0.07 ind:fut:1s; +réagiraient réagir ver 33.19 23.45 0.34 0.00 cnd:pre:3p; +réagirais réagir ver 33.19 23.45 1.19 0.00 cnd:pre:1s;cnd:pre:2s; +réagirait réagir ver 33.19 23.45 0.40 0.47 cnd:pre:3s; +réagiras réagir ver 33.19 23.45 0.02 0.00 ind:fut:2s; +réagirent réagir ver 33.19 23.45 0.00 0.34 ind:pas:3p; +réagirez réagir ver 33.19 23.45 0.08 0.00 ind:fut:2p; +réagiriez réagir ver 33.19 23.45 0.12 0.07 cnd:pre:2p; +réagirons réagir ver 33.19 23.45 0.15 0.00 ind:fut:1p; +réagiront réagir ver 33.19 23.45 0.15 0.00 ind:fut:3p; +réagis réagir ver m p 33.19 23.45 4.01 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réagissaient réagir ver 33.19 23.45 0.03 0.41 ind:imp:3p; +réagissais réagir ver 33.19 23.45 0.01 0.61 ind:imp:1s; +réagissait réagir ver 33.19 23.45 0.17 1.49 ind:imp:3s; +réagissant réagir ver 33.19 23.45 0.07 0.20 par:pre; +réagissante réagissant adj f s 0.00 0.07 0.00 0.07 +réagisse réagir ver 33.19 23.45 0.84 0.41 sub:pre:1s;sub:pre:3s; +réagissent réagir ver 33.19 23.45 2.06 0.81 ind:pre:3p; +réagisses réagir ver 33.19 23.45 0.07 0.00 sub:pre:2s; +réagissez réagir ver 33.19 23.45 1.39 0.27 imp:pre:2p;ind:pre:2p; +réagissiez réagir ver 33.19 23.45 0.12 0.07 ind:imp:2p; +réagissions réagir ver 33.19 23.45 0.00 0.20 ind:imp:1p; +réagissons réagir ver 33.19 23.45 0.04 0.07 imp:pre:1p;ind:pre:1p; +réagit réagir ver 33.19 23.45 5.09 4.39 ind:pre:3s;ind:pas:3s; +ruai ruer ver 3.27 20.81 0.01 0.47 ind:pas:1s; +ruaient ruer ver 3.27 20.81 0.01 0.74 ind:imp:3p; +ruais ruer ver 3.27 20.81 0.01 0.34 ind:imp:1s; +ruait ruer ver 3.27 20.81 0.13 1.42 ind:imp:3s; +réait réer ver 0.09 0.07 0.00 0.07 ind:imp:3s; +réajusta réajuster ver 0.38 1.22 0.00 0.14 ind:pas:3s; +réajustaient réajuster ver 0.38 1.22 0.00 0.07 ind:imp:3p; +réajustait réajuster ver 0.38 1.22 0.00 0.07 ind:imp:3s; +réajustant réajuster ver 0.38 1.22 0.00 0.34 par:pre; +réajuste réajuster ver 0.38 1.22 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réajustement réajustement nom m s 0.18 0.07 0.15 0.00 +réajustements réajustement nom m p 0.18 0.07 0.03 0.07 +réajuster réajuster ver 0.38 1.22 0.26 0.41 inf; +réajusté réajuster ver m s 0.38 1.22 0.03 0.07 par:pas; +réajustées réajuster ver f p 0.38 1.22 0.00 0.07 par:pas; +réajustés réajuster ver m p 0.38 1.22 0.02 0.00 par:pas; +réal réal nom m s 0.16 0.00 0.16 0.00 +réaligne réaligner ver 0.11 0.00 0.06 0.00 ind:pre:1s;ind:pre:3s; +réalignement réalignement nom m s 0.07 0.00 0.07 0.00 +réaligner réaligner ver 0.11 0.00 0.05 0.00 inf; +réalimenter réalimenter ver 0.01 0.00 0.01 0.00 inf; +réalisa réaliser ver 71.27 35.95 1.44 2.03 ind:pas:3s; +réalisable réalisable adj s 0.63 0.68 0.61 0.68 +réalisables réalisable adj p 0.63 0.68 0.02 0.00 +réalisai réaliser ver 71.27 35.95 0.13 1.82 ind:pas:1s; +réalisaient réaliser ver 71.27 35.95 0.47 0.68 ind:imp:3p; +réalisais réaliser ver 71.27 35.95 0.69 0.41 ind:imp:1s;ind:imp:2s; +réalisait réaliser ver 71.27 35.95 0.59 1.28 ind:imp:3s; +réalisant réaliser ver 71.27 35.95 0.72 1.08 par:pre; +réalisateur réalisateur nom m s 17.06 1.08 13.96 0.74 +réalisateurs réalisateur nom m p 17.06 1.08 2.50 0.27 +réalisation réalisation nom f s 3.31 4.19 2.86 3.24 +réalisations réalisation nom f p 3.31 4.19 0.45 0.95 +réalisatrice réalisateur nom f s 17.06 1.08 0.60 0.00 +réalisatrices réalisatrice nom f p 0.02 0.00 0.02 0.00 +réalise réaliser ver 71.27 35.95 9.95 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +réalisent réaliser ver 71.27 35.95 2.74 1.15 ind:pre:3p; +réaliser réaliser ver 71.27 35.95 16.95 12.97 inf; +réalisera réaliser ver 71.27 35.95 1.39 0.14 ind:fut:3s; +réaliserai réaliser ver 71.27 35.95 0.12 0.00 ind:fut:1s; +réaliseraient réaliser ver 71.27 35.95 0.03 0.07 cnd:pre:3p; +réaliserais réaliser ver 71.27 35.95 0.20 0.07 cnd:pre:1s;cnd:pre:2s; +réaliserait réaliser ver 71.27 35.95 0.17 0.27 cnd:pre:3s; +réaliseras réaliser ver 71.27 35.95 0.35 0.00 ind:fut:2s; +réaliserez réaliser ver 71.27 35.95 0.19 0.00 ind:fut:2p; +réaliserions réaliser ver 71.27 35.95 0.00 0.07 cnd:pre:1p; +réaliseront réaliser ver 71.27 35.95 0.81 0.20 ind:fut:3p; +réalises réaliser ver 71.27 35.95 5.29 0.34 ind:pre:2p;ind:pre:2s; +réalisez réaliser ver 71.27 35.95 4.33 0.07 imp:pre:2p;ind:pre:2p; +réalisiez réaliser ver 71.27 35.95 0.14 0.07 ind:imp:2p; +réalisions réaliser ver 71.27 35.95 0.04 0.07 ind:imp:1p; +réalisme réalisme nom m s 1.19 5.41 1.19 5.41 +réalisâmes réaliser ver 71.27 35.95 0.14 0.07 ind:pas:1p; +réalisons réaliser ver 71.27 35.95 0.39 0.07 imp:pre:1p;ind:pre:1p; +réalisât réaliser ver 71.27 35.95 0.00 0.07 sub:imp:3s; +réaliste réaliste adj s 7.05 5.81 5.54 3.92 +réalistes réaliste adj p 7.05 5.81 1.52 1.89 +réalisèrent réaliser ver 71.27 35.95 0.14 0.07 ind:pas:3p; +réalisé réaliser ver m s 71.27 35.95 21.23 6.22 par:pas; +réalisée réaliser ver f s 71.27 35.95 0.71 1.69 par:pas; +réalisées réaliser ver f p 71.27 35.95 0.74 0.81 par:pas; +réalisés réaliser ver m p 71.27 35.95 1.23 0.68 par:pas; +réalité réalité nom f s 53.77 82.77 52.15 75.95 +réalités réalité nom f p 53.77 82.77 1.62 6.82 +réamorce réamorcer ver 0.07 0.27 0.01 0.07 ind:pre:1s;ind:pre:3s; +réamorcent réamorcer ver 0.07 0.27 0.00 0.07 ind:pre:3p; +réamorcer réamorcer ver 0.07 0.27 0.06 0.07 inf; +réamorçage réamorçage nom m s 0.01 0.00 0.01 0.00 +réamorçait réamorcer ver 0.07 0.27 0.00 0.07 ind:imp:3s; +réaménageait réaménager ver 0.19 0.27 0.00 0.07 ind:imp:3s; +réaménagement réaménagement nom m s 0.19 0.14 0.19 0.07 +réaménagements réaménagement nom m p 0.19 0.14 0.00 0.07 +réaménager réaménager ver 0.19 0.27 0.12 0.07 inf; +réaménagé réaménager ver m s 0.19 0.27 0.06 0.14 par:pas; +réanimait réanimer ver 1.65 0.20 0.01 0.00 ind:imp:3s; +réanimateur réanimateur nom m s 0.04 0.00 0.04 0.00 +réanimation réanimation nom f s 2.16 1.35 2.16 1.35 +réanime réanimer ver 1.65 0.20 0.09 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réanimer réanimer ver 1.65 0.20 1.08 0.00 inf; +réanimeraient réanimer ver 1.65 0.20 0.00 0.07 cnd:pre:3p; +réanimez réanimer ver 1.65 0.20 0.04 0.00 imp:pre:2p; +réanimions réanimer ver 1.65 0.20 0.01 0.00 ind:imp:1p; +réanimé réanimer ver m s 1.65 0.20 0.35 0.00 par:pas; +réanimée réanimer ver f s 1.65 0.20 0.07 0.00 par:pas; +ruant ruer ver 3.27 20.81 0.05 1.49 par:pre; +réapercevoir réapercevoir ver 0.00 0.07 0.00 0.07 inf; +réapparût réapparaître ver 4.81 12.23 0.00 0.07 sub:imp:3s; +réapparaît réapparaître ver 4.81 12.23 0.52 1.35 ind:pre:3s; +réapparaîtra réapparaître ver 4.81 12.23 0.47 0.14 ind:fut:3s; +réapparaîtrai réapparaître ver 4.81 12.23 0.00 0.14 ind:fut:1s; +réapparaîtraient réapparaître ver 4.81 12.23 0.01 0.07 cnd:pre:3p; +réapparaîtrait réapparaître ver 4.81 12.23 0.07 0.20 cnd:pre:3s; +réapparaître réapparaître ver 4.81 12.23 0.83 1.96 inf; +réapparaîtront réapparaître ver 4.81 12.23 0.01 0.00 ind:fut:3p; +réapparais réapparaître ver 4.81 12.23 0.21 0.07 ind:pre:1s;ind:pre:2s; +réapparaissaient réapparaître ver 4.81 12.23 0.01 0.34 ind:imp:3p; +réapparaissais réapparaître ver 4.81 12.23 0.01 0.14 ind:imp:1s;ind:imp:2s; +réapparaissait réapparaître ver 4.81 12.23 0.05 1.76 ind:imp:3s; +réapparaissant réapparaître ver 4.81 12.23 0.01 0.27 par:pre; +réapparaisse réapparaître ver 4.81 12.23 0.26 0.20 sub:pre:1s;sub:pre:3s; +réapparaissent réapparaître ver 4.81 12.23 0.58 0.54 ind:pre:3p; +réapparaisses réapparaître ver 4.81 12.23 0.02 0.00 sub:pre:2s; +réapparition réapparition nom f s 0.17 1.69 0.16 1.55 +réapparitions réapparition nom f p 0.17 1.69 0.01 0.14 +réapparu réapparaître ver m s 4.81 12.23 1.19 0.74 par:pas; +réapparue réapparaître ver f s 4.81 12.23 0.11 0.54 par:pas; +réapparues réapparaître ver f p 4.81 12.23 0.01 0.00 par:pas; +réapparurent réapparaître ver 4.81 12.23 0.04 0.41 ind:pas:3p; +réapparus réapparaître ver m p 4.81 12.23 0.32 0.27 par:pas; +réapparut réapparaître ver 4.81 12.23 0.07 3.04 ind:pas:3s; +réappeler réappeler ver 0.01 0.00 0.01 0.00 inf; +réapprenaient réapprendre ver 0.91 1.89 0.00 0.14 ind:imp:3p; +réapprenais réapprendre ver 0.91 1.89 0.00 0.07 ind:imp:1s; +réapprenait réapprendre ver 0.91 1.89 0.01 0.27 ind:imp:3s; +réapprend réapprendre ver 0.91 1.89 0.01 0.14 ind:pre:3s; +réapprendraient réapprendre ver 0.91 1.89 0.00 0.07 cnd:pre:3p; +réapprendre réapprendre ver 0.91 1.89 0.70 0.81 inf; +réapprendrez réapprendre ver 0.91 1.89 0.01 0.00 ind:fut:2p; +réapprends réapprendre ver 0.91 1.89 0.01 0.07 ind:pre:1s; +réapprenne réapprendre ver 0.91 1.89 0.01 0.20 sub:pre:1s; +réappris réapprendre ver m s 0.91 1.89 0.14 0.00 par:pas; +réapprises réapprendre ver f p 0.91 1.89 0.00 0.07 par:pas; +réapprit réapprendre ver 0.91 1.89 0.01 0.07 ind:pas:3s; +réapprovisionne réapprovisionner ver 0.47 0.47 0.04 0.00 ind:pre:3s; +réapprovisionnement réapprovisionnement nom m s 0.21 0.14 0.21 0.14 +réapprovisionner réapprovisionner ver 0.47 0.47 0.38 0.34 inf; +réapprovisionnerait réapprovisionner ver 0.47 0.47 0.00 0.07 cnd:pre:3s; +réapprovisionné réapprovisionner ver m s 0.47 0.47 0.04 0.00 par:pas; +réapprovisionnée réapprovisionner ver f s 0.47 0.47 0.01 0.07 par:pas; +réargenter réargenter ver 0.01 0.00 0.01 0.00 inf; +réarma réarmer ver 0.10 0.47 0.00 0.07 ind:pas:3s; +réarmant réarmer ver 0.10 0.47 0.01 0.00 par:pre; +réarme réarmer ver 0.10 0.47 0.00 0.07 ind:pre:3s; +réarmement réarmement nom m s 0.09 0.34 0.09 0.34 +réarmer réarmer ver 0.10 0.47 0.05 0.14 inf; +réarmé réarmer ver m s 0.10 0.47 0.03 0.07 par:pas; +réarmées réarmer ver f p 0.10 0.47 0.00 0.14 par:pas; +réarrange réarranger ver 0.23 0.27 0.06 0.00 ind:pre:1s;ind:pre:3s; +réarrangeait réarranger ver 0.23 0.27 0.00 0.07 ind:imp:3s; +réarrangeant réarranger ver 0.23 0.27 0.01 0.00 par:pre; +réarrangement réarrangement nom m s 0.03 0.00 0.03 0.00 +réarrangent réarranger ver 0.23 0.27 0.01 0.07 ind:pre:3p; +réarranger réarranger ver 0.23 0.27 0.14 0.14 inf; +réarrangé réarranger ver m s 0.23 0.27 0.01 0.00 par:pas; +réassembler réassembler ver 0.14 0.00 0.14 0.00 inf; +réassignation réassignation nom f s 0.03 0.00 0.03 0.00 +réassigner réassigner ver 0.14 0.07 0.07 0.00 inf; +réassigneront réassigner ver 0.14 0.07 0.00 0.07 ind:fut:3p; +réassigné réassigner ver m s 0.14 0.07 0.07 0.00 par:pas; +réassimilé réassimiler ver m s 0.02 0.00 0.02 0.00 par:pas; +réassorties réassortir ver f p 0.00 0.20 0.00 0.07 par:pas; +réassortir réassortir ver 0.00 0.20 0.00 0.14 inf; +réassumer réassumer ver 0.00 0.14 0.00 0.14 inf; +réassurer réassurer ver 0.02 0.07 0.02 0.07 inf; +réattaquai réattaquer ver 0.03 0.41 0.00 0.07 ind:pas:1s; +réattaquait réattaquer ver 0.03 0.41 0.00 0.14 ind:imp:3s; +réattaque réattaquer ver 0.03 0.41 0.02 0.07 ind:pre:3s; +réattaquer réattaquer ver 0.03 0.41 0.01 0.00 inf; +réattaqué réattaquer ver m s 0.03 0.41 0.00 0.14 par:pas; +réaux réal adj m p 0.40 0.54 0.40 0.54 +ruban ruban nom m s 8.49 23.18 6.56 15.20 +rubans ruban nom m p 8.49 23.18 1.93 7.97 +rébarbatif rébarbatif adj m s 0.17 1.35 0.16 0.61 +rébarbatifs rébarbatif adj m p 0.17 1.35 0.00 0.27 +rébarbative rébarbatif adj f s 0.17 1.35 0.00 0.27 +rébarbatives rébarbatif adj f p 0.17 1.35 0.01 0.20 +rubato rubato adv 0.00 0.07 0.00 0.07 +rébecca rébecca nom f s 0.00 0.07 0.00 0.07 +rébellion rébellion nom f s 4.04 3.85 4.00 3.65 +rébellions rébellion nom f p 4.04 3.85 0.04 0.20 +rubia rubia nom m s 0.01 0.00 0.01 0.00 +rubican rubican adj m s 0.00 0.07 0.00 0.07 +rubicond rubicond adj m s 0.00 1.49 0.00 0.88 +rubiconde rubicond adj f s 0.00 1.49 0.00 0.34 +rubicondes rubicond adj f p 0.00 1.49 0.00 0.14 +rubiconds rubicond adj m p 0.00 1.49 0.00 0.14 +rubis rubis nom m 2.22 3.11 2.22 3.11 +rubricard rubricard nom m s 0.00 0.07 0.00 0.07 +rubrique rubrique nom f s 3.06 6.69 2.90 5.00 +rubriques rubrique nom f p 3.06 6.69 0.16 1.69 +rubénienne rubénien adj f s 0.00 0.07 0.00 0.07 +rubéole rubéole nom f s 0.14 0.14 0.14 0.14 +rébus rébus nom m p 0.10 1.28 0.10 1.28 +récalcitrant récalcitrant adj m s 0.48 1.08 0.21 0.61 +récalcitrante récalcitrant adj f s 0.48 1.08 0.03 0.07 +récalcitrantes récalcitrant adj f p 0.48 1.08 0.10 0.00 +récalcitrants récalcitrant adj m p 0.48 1.08 0.14 0.41 +récapitula récapituler ver 2.65 1.62 0.00 0.07 ind:pas:3s; +récapitulai récapituler ver 2.65 1.62 0.00 0.07 ind:pas:1s; +récapitulais récapituler ver 2.65 1.62 0.02 0.07 ind:imp:1s; +récapitulait récapituler ver 2.65 1.62 0.00 0.27 ind:imp:3s; +récapitulant récapituler ver 2.65 1.62 0.01 0.20 par:pre; +récapitulatif récapitulatif nom m s 0.06 0.20 0.06 0.20 +récapitulation récapitulation nom f s 0.20 0.47 0.20 0.47 +récapitule récapituler ver 2.65 1.62 0.61 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récapitulent récapituler ver 2.65 1.62 0.00 0.07 ind:pre:3p; +récapituler récapituler ver 2.65 1.62 0.40 0.34 inf; +récapitulez récapituler ver 2.65 1.62 0.04 0.00 imp:pre:2p; +récapitulions récapituler ver 2.65 1.62 0.01 0.00 ind:imp:1p; +récapitulons récapituler ver 2.65 1.62 1.51 0.07 imp:pre:1p; +récapitulé récapituler ver m s 2.65 1.62 0.04 0.14 par:pas; +récapitulée récapituler ver f s 2.65 1.62 0.00 0.07 par:pas; +récemment récemment adv 21.07 15.07 21.07 15.07 +récent récent adj m s 12.42 23.45 3.96 5.61 +récente récent adj f s 12.42 23.45 3.72 8.72 +récentes récent adj f p 12.42 23.45 2.09 4.39 +récents récent adj m p 12.42 23.45 2.65 4.73 +réceptacle réceptacle nom m s 0.70 0.54 0.64 0.47 +réceptacles réceptacle nom m p 0.70 0.54 0.06 0.07 +récepteur récepteur nom m s 0.85 3.58 0.56 3.24 +récepteurs récepteur nom m p 0.85 3.58 0.29 0.34 +réceptif réceptif adj m s 1.44 0.68 0.88 0.41 +réceptifs réceptif adj m p 1.44 0.68 0.14 0.07 +réception réception nom f s 17.47 16.82 16.60 12.70 +réceptionna réceptionner ver 0.69 0.88 0.00 0.07 ind:pas:3s; +réceptionnant réceptionner ver 0.69 0.88 0.00 0.07 par:pre; +réceptionne réceptionner ver 0.69 0.88 0.32 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réceptionnent réceptionner ver 0.69 0.88 0.01 0.00 ind:pre:3p; +réceptionner réceptionner ver 0.69 0.88 0.13 0.14 inf; +réceptionnera réceptionner ver 0.69 0.88 0.01 0.00 ind:fut:3s; +réceptionniste réceptionniste nom s 1.69 1.96 1.64 1.76 +réceptionnistes réceptionniste nom p 1.69 1.96 0.04 0.20 +réceptionné réceptionner ver m s 0.69 0.88 0.23 0.20 par:pas; +réceptionnées réceptionner ver f p 0.69 0.88 0.00 0.07 par:pas; +réceptions réception nom f p 17.47 16.82 0.86 4.12 +réceptive réceptif adj f s 1.44 0.68 0.38 0.14 +réceptives réceptif adj f p 1.44 0.68 0.04 0.07 +réceptivité réceptivité nom f s 0.04 0.20 0.04 0.20 +réceptrice récepteur adj f s 0.27 0.27 0.02 0.14 +récessif récessif adj m s 0.12 0.00 0.09 0.00 +récessifs récessif adj m p 0.12 0.00 0.02 0.00 +récession récession nom f s 0.96 0.20 0.96 0.20 +récessive récessif adj f s 0.12 0.00 0.01 0.00 +réchappai réchapper ver 2.42 1.55 0.01 0.00 ind:pas:1s; +réchappais réchapper ver 2.42 1.55 0.03 0.07 ind:imp:1s;ind:imp:2s; +réchappait réchapper ver 2.42 1.55 0.00 0.07 ind:imp:3s; +réchappe réchapper ver 2.42 1.55 0.92 0.27 ind:pre:1s;ind:pre:3s; +réchappent réchapper ver 2.42 1.55 0.02 0.07 ind:pre:3p; +réchapper réchapper ver 2.42 1.55 0.64 0.14 inf; +réchappera réchapper ver 2.42 1.55 0.05 0.00 ind:fut:3s; +réchapperaient réchapper ver 2.42 1.55 0.00 0.07 cnd:pre:3p; +réchapperais réchapper ver 2.42 1.55 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +réchapperait réchapper ver 2.42 1.55 0.00 0.27 cnd:pre:3s; +réchappes réchapper ver 2.42 1.55 0.12 0.07 ind:pre:2s; +réchappez réchapper ver 2.42 1.55 0.01 0.00 ind:pre:2p; +réchappons réchapper ver 2.42 1.55 0.11 0.00 ind:pre:1p; +réchappé réchapper ver m s 2.42 1.55 0.50 0.47 par:pas; +réchappés réchapper ver m p 2.42 1.55 0.01 0.00 par:pas; +réchaud réchaud nom m s 1.00 6.82 0.83 6.22 +réchauds réchaud nom m p 1.00 6.82 0.17 0.61 +réchauffa réchauffer ver 16.27 22.16 0.01 0.95 ind:pas:3s; +réchauffage réchauffage nom m s 0.01 0.00 0.01 0.00 +réchauffai réchauffer ver 16.27 22.16 0.00 0.14 ind:pas:1s; +réchauffaient réchauffer ver 16.27 22.16 0.03 0.34 ind:imp:3p; +réchauffais réchauffer ver 16.27 22.16 0.03 0.00 ind:imp:1s;ind:imp:2s; +réchauffait réchauffer ver 16.27 22.16 0.08 2.23 ind:imp:3s; +réchauffant réchauffer ver 16.27 22.16 0.03 0.41 par:pre; +réchauffante réchauffant adj f s 0.00 0.27 0.00 0.07 +réchauffantes réchauffant adj f p 0.00 0.27 0.00 0.14 +réchauffants réchauffant adj m p 0.00 0.27 0.00 0.07 +réchauffe réchauffer ver 16.27 22.16 5.06 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réchauffement réchauffement nom m s 1.02 0.07 1.02 0.07 +réchauffent réchauffer ver 16.27 22.16 0.34 0.68 ind:pre:3p; +réchauffer réchauffer ver 16.27 22.16 7.64 11.62 inf; +réchauffera réchauffer ver 16.27 22.16 0.79 0.47 ind:fut:3s; +réchaufferai réchauffer ver 16.27 22.16 0.07 0.07 ind:fut:1s; +réchaufferait réchauffer ver 16.27 22.16 0.04 0.07 cnd:pre:3s; +réchaufferas réchauffer ver 16.27 22.16 0.10 0.00 ind:fut:2s; +réchaufferez réchauffer ver 16.27 22.16 0.12 0.00 ind:fut:2p; +réchaufferont réchauffer ver 16.27 22.16 0.02 0.07 ind:fut:3p; +réchauffeur réchauffeur nom m s 0.03 0.00 0.03 0.00 +réchauffez réchauffer ver 16.27 22.16 0.81 0.00 imp:pre:2p;ind:pre:2p; +réchauffions réchauffer ver 16.27 22.16 0.00 0.07 ind:imp:1p; +réchauffons réchauffer ver 16.27 22.16 0.03 0.00 imp:pre:1p;ind:pre:1p; +réchauffât réchauffer ver 16.27 22.16 0.00 0.07 sub:imp:3s; +réchauffèrent réchauffer ver 16.27 22.16 0.00 0.07 ind:pas:3p; +réchauffé réchauffer ver m s 16.27 22.16 0.79 0.81 par:pas; +réchauffée réchauffer ver f s 16.27 22.16 0.28 0.47 par:pas; +réchauffées réchauffé adj f p 1.04 1.15 0.01 0.07 +réchauffés réchauffé adj m p 1.04 1.15 0.15 0.14 +rêche rêche adj s 0.51 8.11 0.47 6.08 +ruche ruche nom f s 3.57 3.51 2.64 2.03 +rucher rucher nom m s 0.11 0.20 0.11 0.14 +ruchers rucher nom m p 0.11 0.20 0.00 0.07 +rêches rêche adj p 0.51 8.11 0.04 2.03 +ruches ruche nom f p 3.57 3.51 0.93 1.49 +ruché ruché nom m s 0.00 0.14 0.00 0.07 +ruchée ruché nom f s 0.00 0.14 0.00 0.07 +récidivai récidiver ver 0.48 0.68 0.00 0.07 ind:pas:1s; +récidivaient récidiver ver 0.48 0.68 0.00 0.07 ind:imp:3p; +récidivant récidivant adj m s 0.03 0.00 0.01 0.00 +récidivante récidivant adj f s 0.03 0.00 0.01 0.00 +récidive récidive nom f s 0.61 0.81 0.57 0.61 +récidiver récidiver ver 0.48 0.68 0.12 0.14 inf; +récidiveras récidiver ver 0.48 0.68 0.01 0.00 ind:fut:2s; +récidives récidive nom f p 0.61 0.81 0.04 0.20 +récidivez récidiver ver 0.48 0.68 0.01 0.00 ind:pre:2p; +récidiviste récidiviste nom s 0.79 0.27 0.65 0.20 +récidivistes récidiviste nom p 0.79 0.27 0.14 0.07 +récidivé récidiver ver m s 0.48 0.68 0.07 0.07 par:pas; +récif récif nom m s 1.44 2.03 0.75 0.54 +récifale récifal adj f s 0.01 0.00 0.01 0.00 +récifs récif nom m p 1.44 2.03 0.69 1.49 +récipiendaire récipiendaire nom s 0.03 0.41 0.01 0.20 +récipiendaires récipiendaire nom p 0.03 0.41 0.02 0.20 +récipient récipient nom m s 1.64 4.12 1.36 2.77 +récipients récipient nom m p 1.64 4.12 0.27 1.35 +réciprocité réciprocité nom f s 0.28 1.55 0.28 1.55 +réciproque réciproque adj s 3.91 8.24 3.59 5.68 +réciproquement réciproquement adv 0.26 3.45 0.26 3.45 +réciproques réciproque adj p 3.91 8.24 0.32 2.57 +récit récit nom m s 9.89 56.15 7.12 37.84 +récita réciter ver 11.89 28.51 0.01 3.24 ind:pas:3s; +récitai réciter ver 11.89 28.51 0.00 0.41 ind:pas:1s; +récitaient réciter ver 11.89 28.51 0.00 1.08 ind:imp:3p; +récitais réciter ver 11.89 28.51 0.12 1.15 ind:imp:1s;ind:imp:2s; +récitait réciter ver 11.89 28.51 0.39 4.86 ind:imp:3s; +récital récital nom m s 1.41 1.89 1.33 1.28 +récitals récital nom m p 1.41 1.89 0.08 0.61 +récitant réciter ver 11.89 28.51 0.04 1.89 par:pre; +récitante récitant nom f s 0.02 1.28 0.00 0.07 +récitants récitant nom m p 0.02 1.28 0.00 0.20 +récitassent réciter ver 11.89 28.51 0.00 0.07 sub:imp:3p; +récitatif récitatif adj m s 0.01 0.00 0.01 0.00 +récitatifs récitatif nom m p 0.00 0.20 0.00 0.07 +récitation récitation nom f s 0.19 2.91 0.17 2.03 +récitations récitation nom f p 0.19 2.91 0.02 0.88 +récite réciter ver 11.89 28.51 3.44 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récitent réciter ver 11.89 28.51 0.47 0.27 ind:pre:3p; +réciter réciter ver 11.89 28.51 4.21 7.97 inf; +récitera réciter ver 11.89 28.51 0.23 0.07 ind:fut:3s; +réciterai réciter ver 11.89 28.51 0.27 0.07 ind:fut:1s; +réciteraient réciter ver 11.89 28.51 0.00 0.07 cnd:pre:3p; +réciterait réciter ver 11.89 28.51 0.01 0.34 cnd:pre:3s; +réciteras réciter ver 11.89 28.51 0.04 0.00 ind:fut:2s; +réciterez réciter ver 11.89 28.51 0.16 0.00 ind:fut:2p; +réciterons réciter ver 11.89 28.51 0.14 0.07 ind:fut:1p; +réciteront réciter ver 11.89 28.51 0.00 0.07 ind:fut:3p; +récites réciter ver 11.89 28.51 0.45 0.14 ind:pre:2s; +récitez réciter ver 11.89 28.51 0.83 0.27 imp:pre:2p;ind:pre:2p; +récitions réciter ver 11.89 28.51 0.01 0.27 ind:imp:1p; +récitons réciter ver 11.89 28.51 0.28 0.20 imp:pre:1p;ind:pre:1p; +récits récit nom m p 9.89 56.15 2.77 18.31 +récitèrent réciter ver 11.89 28.51 0.00 0.14 ind:pas:3p; +récité réciter ver m s 11.89 28.51 0.69 1.35 par:pas; +récitée réciter ver f s 11.89 28.51 0.00 0.41 par:pas; +récitées réciter ver f p 11.89 28.51 0.00 0.20 par:pas; +récités réciter ver m p 11.89 28.51 0.12 0.20 par:pas; +rucksack rucksack nom m s 0.00 0.07 0.00 0.07 +réclama réclamer ver 21.00 49.26 0.12 4.32 ind:pas:3s; +réclamai réclamer ver 21.00 49.26 0.00 0.20 ind:pas:1s; +réclamaient réclamer ver 21.00 49.26 0.26 4.05 ind:imp:3p; +réclamais réclamer ver 21.00 49.26 0.07 0.68 ind:imp:1s;ind:imp:2s; +réclamait réclamer ver 21.00 49.26 0.91 8.51 ind:imp:3s; +réclamant réclamer ver 21.00 49.26 0.52 2.43 par:pre; +réclamantes réclamant nom f p 0.00 0.07 0.00 0.07 +réclamation réclamation nom f s 2.15 1.42 1.02 0.68 +réclamations réclamation nom f p 2.15 1.42 1.13 0.74 +réclame réclamer ver 21.00 49.26 8.98 7.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réclament réclamer ver 21.00 49.26 2.20 2.50 ind:pre:3p; +réclamer réclamer ver 21.00 49.26 3.18 11.76 inf; +réclamera réclamer ver 21.00 49.26 0.31 0.14 ind:fut:3s; +réclamerai réclamer ver 21.00 49.26 0.04 0.07 ind:fut:1s; +réclameraient réclamer ver 21.00 49.26 0.04 0.00 cnd:pre:3p; +réclamerais réclamer ver 21.00 49.26 0.00 0.14 cnd:pre:1s; +réclamerait réclamer ver 21.00 49.26 0.06 0.41 cnd:pre:3s; +réclameras réclamer ver 21.00 49.26 0.02 0.07 ind:fut:2s; +réclamerez réclamer ver 21.00 49.26 0.05 0.14 ind:fut:2p; +réclameriez réclamer ver 21.00 49.26 0.01 0.00 cnd:pre:2p; +réclamerons réclamer ver 21.00 49.26 0.01 0.07 ind:fut:1p; +réclameront réclamer ver 21.00 49.26 0.08 0.07 ind:fut:3p; +réclames réclame nom f p 1.43 6.15 0.28 2.91 +réclamez réclamer ver 21.00 49.26 0.55 0.20 imp:pre:2p;ind:pre:2p; +réclamiez réclamer ver 21.00 49.26 0.04 0.20 ind:imp:2p; +réclamions réclamer ver 21.00 49.26 0.01 0.14 ind:imp:1p; +réclamons réclamer ver 21.00 49.26 0.40 0.41 imp:pre:1p;ind:pre:1p; +réclamèrent réclamer ver 21.00 49.26 0.01 0.61 ind:pas:3p; +réclamé réclamer ver m s 21.00 49.26 1.85 2.64 par:pas; +réclamée réclamer ver f s 21.00 49.26 0.60 1.15 par:pas; +réclamées réclamer ver f p 21.00 49.26 0.39 0.14 par:pas; +réclamés réclamer ver m p 21.00 49.26 0.13 0.27 par:pas; +réclusion réclusion nom f s 1.10 3.04 1.09 3.04 +réclusionnaires réclusionnaire nom p 0.00 0.07 0.00 0.07 +réclusions réclusion nom f p 1.10 3.04 0.01 0.00 +récollet récollet nom m s 0.00 0.81 0.00 0.07 +récollets récollet nom m p 0.00 0.81 0.00 0.74 +récolta récolter ver 10.65 7.36 0.00 0.07 ind:pas:3s; +récoltable récoltable adj s 0.01 0.00 0.01 0.00 +récoltai récolter ver 10.65 7.36 0.00 0.07 ind:pas:1s; +récoltaient récolter ver 10.65 7.36 0.06 0.07 ind:imp:3p; +récoltais récolter ver 10.65 7.36 0.05 0.14 ind:imp:1s;ind:imp:2s; +récoltait récolter ver 10.65 7.36 0.07 0.81 ind:imp:3s; +récoltant récolter ver 10.65 7.36 0.08 0.14 par:pre; +récolte récolte nom f s 9.83 8.99 7.93 5.54 +récoltent récolter ver 10.65 7.36 0.45 0.34 ind:pre:3p; +récolter récolter ver 10.65 7.36 3.66 2.43 inf; +récoltera récolter ver 10.65 7.36 0.07 0.00 ind:fut:3s; +récolterai récolter ver 10.65 7.36 0.03 0.00 ind:fut:1s; +récolteraient récolter ver 10.65 7.36 0.01 0.07 cnd:pre:3p; +récolterais récolter ver 10.65 7.36 0.10 0.00 cnd:pre:2s; +récolterait récolter ver 10.65 7.36 0.02 0.14 cnd:pre:3s; +récolteras récolter ver 10.65 7.36 0.07 0.00 ind:fut:2s; +récolterons récolter ver 10.65 7.36 0.16 0.07 ind:fut:1p; +récolteront récolter ver 10.65 7.36 0.02 0.00 ind:fut:3p; +récoltes récolte nom f p 9.83 8.99 1.90 3.45 +récolteurs récolteur nom m p 0.03 0.07 0.02 0.07 +récolteuse récolteur nom f s 0.03 0.07 0.01 0.00 +récoltez récolter ver 10.65 7.36 0.14 0.00 imp:pre:2p;ind:pre:2p; +récoltions récolter ver 10.65 7.36 0.00 0.14 ind:imp:1p; +récoltons récolter ver 10.65 7.36 0.29 0.00 imp:pre:1p;ind:pre:1p; +récolté récolter ver m s 10.65 7.36 1.42 1.42 par:pas; +récoltée récolter ver f s 10.65 7.36 0.09 0.07 par:pas; +récoltées récolter ver f p 10.65 7.36 0.20 0.20 par:pas; +récoltés récolter ver m p 10.65 7.36 0.22 0.41 par:pas; +récompensa récompenser ver 9.96 8.38 0.01 0.14 ind:pas:3s; +récompensaient récompenser ver 9.96 8.38 0.00 0.20 ind:imp:3p; +récompensait récompenser ver 9.96 8.38 0.17 1.22 ind:imp:3s; +récompensant récompenser ver 9.96 8.38 0.04 0.14 par:pre; +récompense récompense nom f s 19.66 9.73 18.39 8.31 +récompensent récompenser ver 9.96 8.38 0.23 0.00 ind:pre:3p; +récompenser récompenser ver 9.96 8.38 2.29 2.77 inf;;inf;;inf;; +récompensera récompenser ver 9.96 8.38 0.76 0.00 ind:fut:3s; +récompenserai récompenser ver 9.96 8.38 0.37 0.14 ind:fut:1s; +récompenserais récompenser ver 9.96 8.38 0.00 0.07 cnd:pre:1s; +récompenserons récompenser ver 9.96 8.38 0.06 0.00 ind:fut:1p; +récompenseront récompenser ver 9.96 8.38 0.04 0.00 ind:fut:3p; +récompenses récompense nom f p 19.66 9.73 1.27 1.42 +récompensez récompenser ver 9.96 8.38 0.13 0.14 imp:pre:2p;ind:pre:2p; +récompensons récompenser ver 9.96 8.38 0.03 0.00 imp:pre:1p;ind:pre:1p; +récompensèrent récompenser ver 9.96 8.38 0.00 0.07 ind:pas:3p; +récompensé récompenser ver m s 9.96 8.38 2.39 1.28 par:pas; +récompensée récompenser ver f s 9.96 8.38 1.15 0.47 par:pas; +récompensées récompenser ver f p 9.96 8.38 0.21 0.14 par:pas; +récompensés récompenser ver m p 9.96 8.38 0.69 0.61 par:pas; +réconcilia réconcilier ver 9.04 10.61 0.01 0.07 ind:pas:3s; +réconciliaient réconcilier ver 9.04 10.61 0.01 0.34 ind:imp:3p; +réconciliait réconcilier ver 9.04 10.61 0.04 0.74 ind:imp:3s; +réconciliant réconcilier ver 9.04 10.61 0.03 0.14 par:pre; +réconciliateur réconciliateur nom m s 0.02 0.07 0.02 0.07 +réconciliation réconciliation nom f s 2.62 5.47 2.38 4.73 +réconciliations réconciliation nom f p 2.62 5.47 0.23 0.74 +réconciliatrice réconciliateur adj f s 0.00 0.07 0.00 0.07 +réconcilie réconcilier ver 9.04 10.61 0.90 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réconcilient réconcilier ver 9.04 10.61 0.25 0.20 ind:pre:3p; +réconcilier réconcilier ver 9.04 10.61 3.61 3.38 inf; +réconciliera réconcilier ver 9.04 10.61 0.15 0.00 ind:fut:3s; +réconcilierai réconcilier ver 9.04 10.61 0.02 0.07 ind:fut:1s; +réconcilieraient réconcilier ver 9.04 10.61 0.00 0.07 cnd:pre:3p; +réconcilierait réconcilier ver 9.04 10.61 0.00 0.20 cnd:pre:3s; +réconcilierez réconcilier ver 9.04 10.61 0.04 0.00 ind:fut:2p; +réconciliez réconcilier ver 9.04 10.61 0.23 0.00 imp:pre:2p;ind:pre:2p; +réconciliions réconcilier ver 9.04 10.61 0.00 0.14 ind:imp:1p; +réconciliâmes réconcilier ver 9.04 10.61 0.00 0.07 ind:pas:1p; +réconcilions réconcilier ver 9.04 10.61 0.30 0.07 imp:pre:1p;ind:pre:1p; +réconcilié réconcilier ver m s 9.04 10.61 0.59 2.03 par:pas; +réconciliée réconcilier ver f s 9.04 10.61 0.42 0.61 par:pas; +réconciliées réconcilier ver f p 9.04 10.61 0.65 0.07 par:pas; +réconciliés réconcilier ver m p 9.04 10.61 1.78 1.76 par:pas; +réconfort réconfort nom m s 4.75 6.42 4.71 6.35 +réconforta réconforter ver 6.86 9.19 0.02 0.95 ind:pas:3s; +réconfortaient réconforter ver 6.86 9.19 0.01 0.27 ind:imp:3p; +réconfortait réconforter ver 6.86 9.19 0.02 1.08 ind:imp:3s; +réconfortant réconfortant adj m s 2.00 6.08 1.62 2.91 +réconfortante réconfortant adj f s 2.00 6.08 0.20 2.36 +réconfortantes réconfortant adj f p 2.00 6.08 0.11 0.68 +réconfortants réconfortant adj m p 2.00 6.08 0.07 0.14 +réconforte réconforter ver 6.86 9.19 1.73 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réconfortent réconforter ver 6.86 9.19 0.41 0.41 ind:pre:3p; +réconforter réconforter ver 6.86 9.19 3.21 2.77 ind:pre:2p;inf; +réconfortera réconforter ver 6.86 9.19 0.16 0.00 ind:fut:3s; +réconforterai réconforter ver 6.86 9.19 0.01 0.00 ind:fut:1s; +réconforterait réconforter ver 6.86 9.19 0.02 0.07 cnd:pre:3s; +réconforteras réconforter ver 6.86 9.19 0.01 0.00 ind:fut:2s; +réconforterez réconforter ver 6.86 9.19 0.01 0.00 ind:fut:2p; +réconfortez réconforter ver 6.86 9.19 0.30 0.00 imp:pre:2p; +réconforts réconfort nom m p 4.75 6.42 0.04 0.07 +réconforté réconforter ver m s 6.86 9.19 0.48 1.62 par:pas; +réconfortée réconforter ver f s 6.86 9.19 0.19 0.34 par:pas; +réconfortés réconforter ver m p 6.86 9.19 0.18 0.27 par:pas; +récri récri nom m s 0.02 0.14 0.00 0.14 +récria récrier ver 0.00 2.91 0.00 0.68 ind:pas:3s; +récriai récrier ver 0.00 2.91 0.00 0.14 ind:pas:1s; +récriaient récrier ver 0.00 2.91 0.00 0.14 ind:imp:3p; +récriait récrier ver 0.00 2.91 0.00 0.34 ind:imp:3s; +récrie récrier ver 0.00 2.91 0.00 0.54 ind:pre:1s;ind:pre:3s; +récrient récrier ver 0.00 2.91 0.00 0.07 ind:pre:3p; +récrier récrier ver 0.00 2.91 0.00 0.14 inf; +récriminait récriminer ver 0.16 0.68 0.00 0.27 ind:imp:3s; +récrimination récrimination nom f s 0.64 3.11 0.03 0.61 +récriminations récrimination nom f p 0.64 3.11 0.61 2.50 +récriminer récriminer ver 0.16 0.68 0.16 0.41 inf; +récrirai récrire ver 0.46 0.95 0.03 0.07 ind:fut:1s; +récrire récrire ver 0.46 0.95 0.29 0.61 inf; +récris récrire ver 0.46 0.95 0.02 0.00 imp:pre:2s; +récrit récrire ver m s 0.46 0.95 0.11 0.14 ind:pre:3s;par:pas; +récrites récrire ver f p 0.46 0.95 0.00 0.07 par:pas; +récrièrent récrier ver 0.00 2.91 0.00 0.27 ind:pas:3p; +récrié récrier ver m s 0.00 2.91 0.00 0.20 par:pas; +récriée récrier ver f s 0.00 2.91 0.00 0.20 par:pas; +récriées récrier ver f p 0.00 2.91 0.00 0.07 par:pas; +récriés récrier ver m p 0.00 2.91 0.00 0.14 par:pas; +récrivent récrire ver 0.46 0.95 0.01 0.00 ind:pre:3p; +récrivit récrire ver 0.46 0.95 0.00 0.07 ind:pas:3s; +récré récré nom f s 2.29 2.70 2.25 2.16 +récréatif récréatif adj m s 0.38 0.47 0.06 0.00 +récréation récréation nom f s 2.88 11.28 2.43 9.26 +récréations récréation nom f p 2.88 11.28 0.45 2.03 +récréative récréatif adj f s 0.38 0.47 0.24 0.41 +récréatives récréatif adj f p 0.38 0.47 0.07 0.07 +récrée récréer ver 0.06 0.00 0.04 0.00 ind:pre:3s; +récréer récréer ver 0.06 0.00 0.01 0.00 inf; +récrés récré nom f p 2.29 2.70 0.05 0.54 +récréé récréer ver m s 0.06 0.00 0.01 0.00 par:pas; +récup récup nom m s 0.13 0.14 0.13 0.00 +récupe récup nom f s 0.13 0.14 0.00 0.14 +récépissé récépissé nom m s 0.09 0.34 0.09 0.34 +récupère récupérer ver 75.93 31.82 9.77 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +récupèrent récupérer ver 75.93 31.82 0.61 0.20 ind:pre:3p; +récupères récupérer ver 75.93 31.82 1.28 0.20 ind:pre:2s; +récupéra récupérer ver 75.93 31.82 0.06 1.82 ind:pas:3s; +récupérable récupérable adj m s 0.43 0.88 0.14 0.61 +récupérables récupérable adj p 0.43 0.88 0.28 0.27 +récupérai récupérer ver 75.93 31.82 0.00 0.54 ind:pas:1s; +récupéraient récupérer ver 75.93 31.82 0.01 0.14 ind:imp:3p; +récupérais récupérer ver 75.93 31.82 0.16 0.20 ind:imp:1s;ind:imp:2s; +récupérait récupérer ver 75.93 31.82 0.32 1.49 ind:imp:3s; +récupérant récupérer ver 75.93 31.82 0.19 1.22 par:pre; +récupérateur récupérateur nom m s 0.27 0.07 0.12 0.07 +récupérateurs récupérateur nom m p 0.27 0.07 0.15 0.00 +récupération récupération nom f s 2.04 1.89 2.01 1.82 +récupérations récupération nom f p 2.04 1.89 0.04 0.07 +récupérer récupérer ver 75.93 31.82 44.59 14.19 inf; +récupérera récupérer ver 75.93 31.82 0.72 0.07 ind:fut:3s; +récupérerai récupérer ver 75.93 31.82 0.84 0.07 ind:fut:1s; +récupérerais récupérer ver 75.93 31.82 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +récupérerait récupérer ver 75.93 31.82 0.09 0.20 cnd:pre:3s; +récupéreras récupérer ver 75.93 31.82 0.45 0.07 ind:fut:2s; +récupérerez récupérer ver 75.93 31.82 0.49 0.00 ind:fut:2p; +récupérerons récupérer ver 75.93 31.82 0.32 0.00 ind:fut:1p; +récupéreront récupérer ver 75.93 31.82 0.06 0.00 ind:fut:3p; +récupérez récupérer ver 75.93 31.82 1.80 0.20 imp:pre:2p;ind:pre:2p; +récupériez récupérer ver 75.93 31.82 0.04 0.00 ind:imp:2p; +récupérions récupérer ver 75.93 31.82 0.07 0.07 ind:imp:1p; +récupérâmes récupérer ver 75.93 31.82 0.02 0.07 ind:pas:1p; +récupérons récupérer ver 75.93 31.82 0.65 0.07 imp:pre:1p;ind:pre:1p; +récupérèrent récupérer ver 75.93 31.82 0.00 0.14 ind:pas:3p; +récupéré récupérer ver m s 75.93 31.82 10.33 5.41 par:pas; +récupérée récupérer ver f s 75.93 31.82 1.26 0.95 par:pas; +récupérées récupérer ver f p 75.93 31.82 0.80 0.74 par:pas; +récupérés récupérer ver m p 75.93 31.82 0.90 0.95 par:pas; +récurage récurage nom m s 0.03 0.27 0.03 0.27 +récuraient récurer ver 0.54 2.84 0.00 0.14 ind:imp:3p; +récurais récurer ver 0.54 2.84 0.00 0.14 ind:imp:1s; +récurait récurer ver 0.54 2.84 0.01 0.14 ind:imp:3s; +récurant récurer ver 0.54 2.84 0.00 0.20 par:pre; +récure récurer ver 0.54 2.84 0.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récurent récurer ver 0.54 2.84 0.01 0.20 ind:pre:3p; +récurer récurer ver 0.54 2.84 0.35 0.74 inf; +récurerai récurer ver 0.54 2.84 0.00 0.07 ind:fut:1s; +récurrence récurrence nom f s 0.19 0.14 0.17 0.14 +récurrences récurrence nom f p 0.19 0.14 0.01 0.00 +récurrent récurrent adj m s 1.38 0.41 0.56 0.07 +récurrente récurrent adj f s 1.38 0.41 0.28 0.14 +récurrentes récurrent adj f p 1.38 0.41 0.21 0.07 +récurrents récurrent adj m p 1.38 0.41 0.33 0.14 +récursif récursif adj m s 0.03 0.00 0.03 0.00 +récuré récurer ver m s 0.54 2.84 0.08 0.34 par:pas; +récurée récurer ver f s 0.54 2.84 0.00 0.20 par:pas; +récurées récurer ver f p 0.54 2.84 0.01 0.14 par:pas; +récurés récurer ver m p 0.54 2.84 0.01 0.27 par:pas; +récusa récuser ver 0.78 3.04 0.00 0.14 ind:pas:3s; +récusable récusable adj m s 0.00 0.14 0.00 0.07 +récusables récusable adj p 0.00 0.14 0.00 0.07 +récusaient récuser ver 0.78 3.04 0.00 0.14 ind:imp:3p; +récusais récuser ver 0.78 3.04 0.00 0.27 ind:imp:1s; +récusait récuser ver 0.78 3.04 0.01 0.41 ind:imp:3s; +récusant récuser ver 0.78 3.04 0.03 0.14 par:pre; +récusation récusation nom f s 0.09 0.07 0.07 0.07 +récusations récusation nom f p 0.09 0.07 0.02 0.00 +récuse récuser ver 0.78 3.04 0.19 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récuser récuser ver 0.78 3.04 0.31 1.08 inf; +récuserait récuser ver 0.78 3.04 0.00 0.07 cnd:pre:3s; +récuserons récuser ver 0.78 3.04 0.01 0.00 ind:fut:1p; +récusons récuser ver 0.78 3.04 0.07 0.00 imp:pre:1p;ind:pre:1p; +récusèrent récuser ver 0.78 3.04 0.00 0.14 ind:pas:3p; +récusé récuser ver m s 0.78 3.04 0.14 0.34 par:pas; +récusée récuser ver f s 0.78 3.04 0.01 0.20 par:pas; +rédacteur rédacteur nom m s 4.93 5.68 3.32 3.85 +rédacteurs rédacteur nom m p 4.93 5.68 0.67 1.35 +rédaction rédaction nom f s 2.93 12.23 2.82 11.22 +rédactionnel rédactionnel adj m s 0.02 0.07 0.01 0.00 +rédactionnelle rédactionnel adj f s 0.02 0.07 0.01 0.07 +rédactions rédaction nom f p 2.93 12.23 0.11 1.01 +rédactrice rédacteur nom f s 4.93 5.68 0.94 0.27 +rédactrices rédactrice nom f p 0.02 0.00 0.02 0.00 +rude rude adj s 6.85 29.80 5.68 22.64 +rudement rudement adv 2.42 10.07 2.42 10.07 +rédempteur rédempteur nom m s 0.78 0.27 0.78 0.20 +rédemption rédemption nom f s 2.35 1.35 2.35 1.22 +rédemptions rédemption nom f p 2.35 1.35 0.00 0.14 +rédemptoriste rédemptoriste nom s 0.10 0.00 0.10 0.00 +rédemptrice rédempteur adj f s 0.40 0.34 0.00 0.07 +rudes rude adj p 6.85 29.80 1.17 7.16 +rudesse rudesse nom f s 0.42 3.65 0.42 3.38 +rudesses rudesse nom f p 0.42 3.65 0.00 0.27 +rédhibition rédhibition nom f s 0.00 0.07 0.00 0.07 +rédhibitoire rédhibitoire adj s 0.06 0.47 0.06 0.34 +rédhibitoires rédhibitoire adj p 0.06 0.47 0.00 0.14 +rédige rédiger ver 8.49 22.16 0.72 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rédigea rédiger ver 8.49 22.16 0.02 1.35 ind:pas:3s; +rédigeai rédiger ver 8.49 22.16 0.00 0.47 ind:pas:1s; +rédigeaient rédiger ver 8.49 22.16 0.01 0.27 ind:imp:3p; +rédigeais rédiger ver 8.49 22.16 0.05 0.20 ind:imp:1s; +rédigeait rédiger ver 8.49 22.16 0.05 1.01 ind:imp:3s; +rédigeant rédiger ver 8.49 22.16 0.04 0.41 par:pre; +rédigent rédiger ver 8.49 22.16 0.06 0.07 ind:pre:3p; +rédigeons rédiger ver 8.49 22.16 0.05 0.34 imp:pre:1p;ind:pre:1p; +rédiger rédiger ver 8.49 22.16 2.27 6.96 inf; +rédigera rédiger ver 8.49 22.16 0.02 0.00 ind:fut:3s; +rédigerai rédiger ver 8.49 22.16 0.05 0.14 ind:fut:1s; +rédigerais rédiger ver 8.49 22.16 0.01 0.00 cnd:pre:1s; +rédigeras rédiger ver 8.49 22.16 0.03 0.07 ind:fut:2s; +rédigerez rédiger ver 8.49 22.16 0.03 0.14 ind:fut:2p; +rédiges rédiger ver 8.49 22.16 0.06 0.20 ind:pre:2s; +rédigez rédiger ver 8.49 22.16 0.83 0.00 imp:pre:2p;ind:pre:2p; +rédigiez rédiger ver 8.49 22.16 0.04 0.07 ind:imp:2p; +rédigions rédiger ver 8.49 22.16 0.00 0.14 ind:imp:1p; +rédigèrent rédiger ver 8.49 22.16 0.00 0.14 ind:pas:3p; +rédigé rédiger ver m s 8.49 22.16 2.55 4.19 par:pas; +rédigée rédiger ver f s 8.49 22.16 1.31 2.16 par:pas; +rédigées rédiger ver f p 8.49 22.16 0.03 1.08 par:pas; +rédigés rédiger ver m p 8.49 22.16 0.26 1.28 par:pas; +rédimaient rédimer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +rudiment rudiment nom m s 0.24 1.89 0.01 0.27 +rudimentaire rudimentaire adj s 0.87 3.11 0.73 2.09 +rudimentaires rudimentaire adj p 0.87 3.11 0.14 1.01 +rudiments rudiment nom m p 0.24 1.89 0.23 1.62 +rudoie rudoyer ver 0.45 1.22 0.01 0.00 ind:pre:3s; +rudoiement rudoiement nom m s 0.00 0.14 0.00 0.07 +rudoiements rudoiement nom m p 0.00 0.14 0.00 0.07 +rudoient rudoyer ver 0.45 1.22 0.00 0.07 ind:pre:3p; +rudoies rudoyer ver 0.45 1.22 0.01 0.00 ind:pre:2s; +rudoya rudoyer ver 0.45 1.22 0.00 0.07 ind:pas:3s; +rudoyais rudoyer ver 0.45 1.22 0.00 0.07 ind:imp:1s; +rudoyait rudoyer ver 0.45 1.22 0.02 0.41 ind:imp:3s; +rudoyant rudoyer ver 0.45 1.22 0.00 0.07 par:pre; +rudoyer rudoyer ver 0.45 1.22 0.32 0.20 inf; +rudoyèrent rudoyer ver 0.45 1.22 0.00 0.07 ind:pas:3p; +rudoyé rudoyer ver m s 0.45 1.22 0.08 0.20 par:pas; +rudoyés rudoyer ver m p 0.45 1.22 0.01 0.07 par:pas; +réducteur réducteur adj m s 0.12 0.07 0.12 0.07 +réducteurs réducteur nom m p 0.26 0.14 0.23 0.07 +réduction réduction nom f s 4.51 3.18 3.37 2.91 +réductionnisme réductionnisme nom m s 0.03 0.00 0.03 0.00 +réductionniste réductionniste adj s 0.01 0.00 0.01 0.00 +réductions réduction nom f p 4.51 3.18 1.14 0.27 +réduira réduire ver 27.88 50.61 0.53 0.34 ind:fut:3s; +réduirai réduire ver 27.88 50.61 0.26 0.20 ind:fut:1s; +réduiraient réduire ver 27.88 50.61 0.02 0.07 cnd:pre:3p; +réduirait réduire ver 27.88 50.61 0.44 0.34 cnd:pre:3s; +réduire réduire ver 27.88 50.61 8.85 13.04 ind:pre:2p;inf; +réduirons réduire ver 27.88 50.61 0.05 0.07 ind:fut:1p; +réduiront réduire ver 27.88 50.61 0.22 0.07 ind:fut:3p; +réduis réduire ver 27.88 50.61 1.35 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +réduisît réduire ver 27.88 50.61 0.00 0.14 sub:imp:3s; +réduisaient réduire ver 27.88 50.61 0.01 0.88 ind:imp:3p; +réduisais réduire ver 27.88 50.61 0.04 0.20 ind:imp:1s;ind:imp:2s; +réduisait réduire ver 27.88 50.61 0.13 4.46 ind:imp:3s; +réduisant réduire ver 27.88 50.61 0.24 1.55 par:pre; +réduise réduire ver 27.88 50.61 0.32 0.68 sub:pre:1s;sub:pre:3s; +réduisent réduire ver 27.88 50.61 1.03 1.01 ind:pre:3p; +réduises réduire ver 27.88 50.61 0.04 0.00 sub:pre:2s; +réduisez réduire ver 27.88 50.61 0.56 0.14 imp:pre:2p;ind:pre:2p; +réduisions réduire ver 27.88 50.61 0.01 0.07 ind:imp:1p; +réduisirent réduire ver 27.88 50.61 0.00 0.27 ind:pas:3p; +réduisis réduire ver 27.88 50.61 0.00 0.07 ind:pas:1s; +réduisit réduire ver 27.88 50.61 0.01 0.74 ind:pas:3s; +réduisons réduire ver 27.88 50.61 0.27 0.14 imp:pre:1p;ind:pre:1p; +réduit réduire ver m s 27.88 50.61 8.48 13.51 ind:pre:3s;par:pas; +réduite réduire ver f s 27.88 50.61 2.82 6.55 par:pas; +réduites réduire ver f p 27.88 50.61 0.43 2.03 par:pas; +réduits réduire ver m p 27.88 50.61 1.78 3.85 par:pas; +réduplication réduplication nom f s 0.00 0.07 0.00 0.07 +rue rue nom f s 157.81 562.97 127.35 449.53 +réel réel adj m s 38.70 40.95 23.97 15.20 +ruelle ruelle nom f s 6.25 30.47 4.04 13.51 +réelle réel adj f s 38.70 40.95 8.88 17.50 +réellement réellement adv 18.27 26.62 18.27 26.62 +ruelles ruelle nom f p 6.25 30.47 2.21 16.96 +réelles réel adj f p 38.70 40.95 2.35 4.12 +réels réel adj m p 38.70 40.95 3.50 4.12 +réemballer réemballer ver 0.01 0.00 0.01 0.00 inf; +réembarque réembarquer ver 0.00 0.27 0.00 0.07 ind:pre:3s; +réembarquement réembarquement nom m s 0.00 0.07 0.00 0.07 +réembarquer réembarquer ver 0.00 0.27 0.00 0.20 inf; +réembauche réembaucher ver 0.22 0.00 0.09 0.00 ind:pre:1s;ind:pre:3s; +réembaucher réembaucher ver 0.22 0.00 0.08 0.00 inf; +réembauché réembaucher ver m s 0.22 0.00 0.05 0.00 par:pas; +réemploi réemploi nom m s 0.00 0.14 0.00 0.14 +réemployant réemployer ver 0.00 0.20 0.00 0.07 par:pre; +réemployer réemployer ver 0.00 0.20 0.00 0.14 inf; +réemprunter réemprunter ver 0.00 0.07 0.00 0.07 inf; +réencadrer réencadrer ver 0.00 0.07 0.00 0.07 inf; +réenclenches réenclencher ver 0.01 0.00 0.01 0.00 ind:pre:2s; +réendossant réendosser ver 0.02 0.14 0.00 0.07 par:pre; +réendosser réendosser ver 0.02 0.14 0.02 0.07 inf; +réengage réengager ver 0.24 0.07 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réengagement réengagement nom m s 0.00 0.07 0.00 0.07 +réengager réengager ver 0.24 0.07 0.10 0.00 inf; +réengagé réengager ver m s 0.24 0.07 0.10 0.00 par:pas; +réengagées réengager ver f p 0.24 0.07 0.00 0.07 par:pas; +réenregistrer réenregistrer ver 0.12 0.00 0.11 0.00 inf; +réenregistré réenregistrer ver m s 0.12 0.00 0.01 0.00 par:pas; +ruent ruer ver 3.27 20.81 0.38 1.08 ind:pre:3p; +réentendaient réentendre ver 0.26 1.01 0.00 0.07 ind:imp:3p; +réentendais réentendre ver 0.26 1.01 0.00 0.07 ind:imp:1s; +réentendons réentendre ver 0.26 1.01 0.00 0.07 ind:pre:1p; +réentendre réentendre ver 0.26 1.01 0.25 0.61 inf; +réentends réentendre ver 0.26 1.01 0.00 0.20 ind:pre:1s; +réentendu réentendre ver m s 0.26 1.01 0.01 0.00 par:pas; +réenterrer réenterrer ver 0.01 0.00 0.01 0.00 inf; +réentraîner réentraîner ver 0.01 0.00 0.01 0.00 inf; +réenvahir réenvahir ver 0.01 0.00 0.01 0.00 inf; +réenvisager réenvisager ver 0.15 0.00 0.15 0.00 inf; +ruer ruer ver 3.27 20.81 0.59 3.18 inf; +rueront ruer ver 3.27 20.81 0.00 0.07 ind:fut:3p; +rues rue nom p 157.81 562.97 30.46 113.45 +réessaie réessayer ver 5.30 0.14 0.75 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réessaient réessayer ver 5.30 0.14 0.07 0.00 ind:pre:3p; +réessaiera réessayer ver 5.30 0.14 0.22 0.00 ind:fut:3s; +réessaierai réessayer ver 5.30 0.14 0.33 0.00 ind:fut:1s; +réessaieras réessayer ver 5.30 0.14 0.03 0.00 ind:fut:2s; +réessaieront réessayer ver 5.30 0.14 0.03 0.00 ind:fut:3p; +réessayant réessayer ver 5.30 0.14 0.00 0.07 par:pre; +réessaye réessayer ver 5.30 0.14 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réessayer réessayer ver 5.30 0.14 2.40 0.07 inf; +réessayez réessayer ver 5.30 0.14 0.61 0.00 imp:pre:2p;ind:pre:2p; +réessayiez réessayer ver 5.30 0.14 0.01 0.00 ind:imp:2p; +réessayons réessayer ver 5.30 0.14 0.31 0.00 imp:pre:1p;ind:pre:1p; +réessayé réessayer ver m s 5.30 0.14 0.16 0.00 par:pas; +réexamen réexamen nom m s 0.07 0.00 0.07 0.00 +réexaminant réexaminer ver 0.89 0.20 0.00 0.07 par:pre; +réexamine réexaminer ver 0.89 0.20 0.08 0.00 ind:pre:1s;ind:pre:3s; +réexaminer réexaminer ver 0.89 0.20 0.44 0.00 inf; +réexaminerons réexaminer ver 0.89 0.20 0.03 0.00 ind:fut:1p; +réexamines réexaminer ver 0.89 0.20 0.02 0.00 ind:pre:2s; +réexaminez réexaminer ver 0.89 0.20 0.04 0.00 imp:pre:2p;ind:pre:2p; +réexaminiez réexaminer ver 0.89 0.20 0.04 0.00 ind:imp:2p; +réexaminions réexaminer ver 0.89 0.20 0.01 0.07 ind:imp:1p; +réexaminé réexaminer ver m s 0.89 0.20 0.21 0.00 par:pas; +réexaminée réexaminer ver f s 0.89 0.20 0.01 0.00 par:pas; +réexaminées réexaminer ver f p 0.89 0.20 0.00 0.07 par:pas; +réexpédia réexpédier ver 0.37 0.68 0.00 0.07 ind:pas:3s; +réexpédiait réexpédier ver 0.37 0.68 0.01 0.14 ind:imp:3s; +réexpédiant réexpédier ver 0.37 0.68 0.01 0.00 par:pre; +réexpédier réexpédier ver 0.37 0.68 0.07 0.07 inf; +réexpédiez réexpédier ver 0.37 0.68 0.02 0.00 imp:pre:2p; +réexpédions réexpédier ver 0.37 0.68 0.01 0.00 imp:pre:1p; +réexpédition réexpédition nom f s 0.05 0.00 0.05 0.00 +réexpédié réexpédier ver m s 0.37 0.68 0.24 0.27 par:pas; +réexpédiés réexpédier ver m p 0.37 0.68 0.01 0.14 par:pas; +réf réf nom f s 0.02 0.00 0.02 0.00 +réfection réfection nom f s 0.23 1.96 0.23 1.69 +réfections réfection nom f p 0.23 1.96 0.00 0.27 +réfectoire réfectoire nom m s 1.13 9.66 1.11 9.59 +réfectoires réfectoire nom m p 1.13 9.66 0.01 0.07 +ruffian ruffian nom m s 0.55 0.81 0.48 0.41 +ruffians ruffian nom m p 0.55 0.81 0.07 0.41 +rufian rufian nom m s 0.01 0.00 0.01 0.00 +réflecteur réflecteur nom m s 0.32 0.54 0.20 0.27 +réflecteurs réflecteur nom m p 0.32 0.54 0.13 0.27 +réflexe réflexe nom m s 6.13 18.85 2.55 11.89 +réflexes réflexe nom m p 6.13 18.85 3.57 6.96 +réflexif réflexif adj m s 0.10 0.14 0.00 0.07 +réflexion réflexion nom f s 7.47 37.03 6.29 23.38 +réflexions réflexion nom f p 7.47 37.03 1.18 13.65 +réflexive réflexif adj f s 0.10 0.14 0.10 0.07 +réflexologie réflexologie nom f s 0.02 0.00 0.02 0.00 +réfléchît réfléchir ver 116.71 89.05 0.00 0.14 sub:imp:3s; +réfléchi réfléchir ver m s 116.71 89.05 27.23 11.01 par:pas; +réfléchie réfléchi adj f s 20.28 6.69 0.36 1.22 +réfléchies réfléchi adj f p 20.28 6.69 0.01 0.07 +réfléchir réfléchir ver 116.71 89.05 47.59 36.55 inf; +réfléchira réfléchir ver 116.71 89.05 0.31 0.27 ind:fut:3s; +réfléchirai réfléchir ver 116.71 89.05 1.30 0.34 ind:fut:1s; +réfléchirais réfléchir ver 116.71 89.05 0.31 0.07 cnd:pre:1s;cnd:pre:2s; +réfléchirait réfléchir ver 116.71 89.05 0.09 0.14 cnd:pre:3s; +réfléchiras réfléchir ver 116.71 89.05 0.13 0.27 ind:fut:2s; +réfléchirent réfléchir ver 116.71 89.05 0.01 0.34 ind:pas:3p; +réfléchirez réfléchir ver 116.71 89.05 0.14 0.07 ind:fut:2p; +réfléchiriez réfléchir ver 116.71 89.05 0.03 0.00 cnd:pre:2p; +réfléchirons réfléchir ver 116.71 89.05 0.28 0.07 ind:fut:1p; +réfléchiront réfléchir ver 116.71 89.05 0.07 0.00 ind:fut:3p; +réfléchis réfléchi adj m p 20.28 6.69 18.86 2.77 +réfléchissaient réfléchir ver 116.71 89.05 0.16 0.27 ind:imp:3p; +réfléchissais réfléchir ver 116.71 89.05 2.10 1.96 ind:imp:1s;ind:imp:2s; +réfléchissait réfléchir ver 116.71 89.05 0.48 5.14 ind:imp:3s; +réfléchissant réfléchir ver 116.71 89.05 1.09 2.64 par:pre; +réfléchissante réfléchissant adj f s 0.73 0.68 0.04 0.07 +réfléchissantes réfléchissant adj f p 0.73 0.68 0.06 0.00 +réfléchissants réfléchissant adj m p 0.73 0.68 0.00 0.07 +réfléchisse réfléchir ver 116.71 89.05 2.28 0.95 sub:pre:1s;sub:pre:3s; +réfléchissent réfléchir ver 116.71 89.05 0.54 0.54 ind:pre:3p; +réfléchisses réfléchir ver 116.71 89.05 0.63 0.07 sub:pre:2s; +réfléchissez réfléchir ver 116.71 89.05 10.10 2.50 imp:pre:2p;ind:pre:2p; +réfléchissiez réfléchir ver 116.71 89.05 0.35 0.07 ind:imp:2p;sub:pre:2p; +réfléchissons réfléchir ver 116.71 89.05 1.71 0.34 imp:pre:1p;ind:pre:1p; +réfléchit réfléchir ver 116.71 89.05 3.81 19.39 ind:pre:3s;ind:pas:3s; +réforma réformer ver 1.52 2.70 0.00 0.07 ind:pas:3s; +réformateur réformateur nom m s 0.16 1.49 0.09 0.61 +réformateurs réformateur nom m p 0.16 1.49 0.08 0.88 +réformation réformation nom f s 0.00 0.07 0.00 0.07 +réforme réforme nom f s 3.10 11.35 2.24 4.93 +réformer réformer ver 1.52 2.70 0.75 1.35 inf; +réformera réformer ver 1.52 2.70 0.14 0.00 ind:fut:3s; +réformes réforme nom f p 3.10 11.35 0.86 6.42 +réformisme réformisme nom m s 0.01 0.00 0.01 0.00 +réformiste réformiste adj m s 0.44 0.41 0.38 0.14 +réformistes réformiste adj m p 0.44 0.41 0.06 0.27 +réformons réformer ver 1.52 2.70 0.01 0.00 ind:pre:1p; +réformé réformer ver m s 1.52 2.70 0.40 1.01 par:pas; +réformée réformé adj f s 0.26 1.28 0.03 0.41 +réformées réformé adj f p 0.26 1.28 0.00 0.07 +réformés réformé nom m p 0.14 0.54 0.07 0.27 +réfractaire réfractaire adj s 0.17 1.89 0.15 1.28 +réfractaires réfractaire nom p 0.07 1.22 0.05 0.95 +réfractant réfracter ver 0.01 0.27 0.00 0.07 par:pre; +réfractera réfracter ver 0.01 0.27 0.00 0.07 ind:fut:3s; +réfracterait réfracter ver 0.01 0.27 0.00 0.07 cnd:pre:3s; +réfraction réfraction nom f s 0.27 0.41 0.27 0.41 +réfractionniste réfractionniste nom s 0.01 0.00 0.01 0.00 +réfracté réfracter ver m s 0.01 0.27 0.01 0.07 par:pas; +réfrigèrent réfrigérer ver 0.20 0.34 0.01 0.00 ind:pre:3p; +réfrigérant réfrigérant adj m s 0.18 0.27 0.09 0.14 +réfrigérante réfrigérant adj f s 0.18 0.27 0.04 0.07 +réfrigérantes réfrigérant adj f p 0.18 0.27 0.01 0.07 +réfrigérants réfrigérant adj m p 0.18 0.27 0.04 0.00 +réfrigérateur réfrigérateur nom m s 3.58 2.77 2.94 2.43 +réfrigérateurs réfrigérateur nom m p 3.58 2.77 0.64 0.34 +réfrigération réfrigération nom f s 0.23 0.00 0.23 0.00 +réfrigérer réfrigérer ver 0.20 0.34 0.06 0.00 inf; +réfrigéré réfrigérer ver m s 0.20 0.34 0.09 0.14 par:pas; +réfrigérée réfrigéré adj f s 0.16 0.34 0.09 0.07 +réfrigérées réfrigérer ver f p 0.20 0.34 0.00 0.14 par:pas; +réfrigérés réfrigérer ver m p 0.20 0.34 0.02 0.00 par:pas; +réfrène réfréner ver 0.45 0.27 0.22 0.00 imp:pre:2s;ind:pre:1s; +réfréna réfréner ver 0.45 0.27 0.00 0.07 ind:pas:3s; +réfréner réfréner ver 0.45 0.27 0.20 0.07 inf; +réfrénez réfréner ver 0.45 0.27 0.02 0.00 imp:pre:2p; +réfrénée réfréner ver f s 0.45 0.27 0.01 0.14 par:pas; +réfère référer ver 3.02 3.78 1.00 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réfèrent référer ver 3.02 3.78 0.09 0.07 ind:pre:3p; +réfugia réfugier ver 6.72 25.20 0.05 1.01 ind:pas:3s; +réfugiai réfugier ver 6.72 25.20 0.01 0.68 ind:pas:1s; +réfugiaient réfugier ver 6.72 25.20 0.05 0.74 ind:imp:3p; +réfugiais réfugier ver 6.72 25.20 0.30 0.74 ind:imp:1s;ind:imp:2s; +réfugiait réfugier ver 6.72 25.20 0.16 1.49 ind:imp:3s; +réfugiant réfugier ver 6.72 25.20 0.01 0.47 par:pre; +réfugie réfugier ver 6.72 25.20 1.31 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +réfugient réfugier ver 6.72 25.20 0.11 0.74 ind:pre:3p; +réfugier réfugier ver 6.72 25.20 1.86 6.49 inf; +réfugiera réfugier ver 6.72 25.20 0.03 0.14 ind:fut:3s; +réfugierais réfugier ver 6.72 25.20 0.01 0.07 cnd:pre:1s; +réfugies réfugier ver 6.72 25.20 0.04 0.14 ind:pre:2s; +réfugiez réfugier ver 6.72 25.20 0.05 0.00 imp:pre:2p;ind:pre:2p; +réfugiions réfugier ver 6.72 25.20 0.00 0.41 ind:imp:1p; +réfugions réfugier ver 6.72 25.20 0.03 0.14 imp:pre:1p;ind:pre:1p; +réfugièrent réfugier ver 6.72 25.20 0.04 0.34 ind:pas:3p; +réfugié réfugier ver m s 6.72 25.20 1.49 4.12 par:pas; +réfugiée réfugier ver f s 6.72 25.20 0.34 2.16 par:pas; +réfugiées réfugier ver f p 6.72 25.20 0.02 0.61 par:pas; +réfugiés réfugié nom m p 6.02 10.20 4.96 8.18 +référaient référer ver 3.02 3.78 0.01 0.14 ind:imp:3p; +référait référer ver 3.02 3.78 0.32 0.34 ind:imp:3s; +référant référer ver 3.02 3.78 0.11 0.68 par:pre; +référence référence nom f s 10.45 7.23 6.54 3.58 +référencement référencement nom m s 0.01 0.00 0.01 0.00 +référencer référencer ver 0.17 0.00 0.05 0.00 inf; +références référence nom f p 10.45 7.23 3.91 3.65 +référencé référencer ver m s 0.17 0.00 0.09 0.00 par:pas; +référencée référencer ver f s 0.17 0.00 0.04 0.00 par:pas; +référendaire référendaire adj m s 0.00 0.20 0.00 0.20 +référendum référendum nom m s 0.65 2.57 0.65 2.50 +référendums référendum nom m p 0.65 2.57 0.00 0.07 +référent référent nom m s 0.02 0.00 0.02 0.00 +référer référer ver 3.02 3.78 0.88 1.42 inf; +référera référer ver 3.02 3.78 0.01 0.00 ind:fut:3s; +référerai référer ver 3.02 3.78 0.29 0.00 ind:fut:1s; +référerez référer ver 3.02 3.78 0.01 0.14 ind:fut:2p; +référez référer ver 3.02 3.78 0.19 0.07 imp:pre:2p;ind:pre:2p; +référiez référer ver 3.02 3.78 0.00 0.07 ind:imp:2p; +référèrent référer ver 3.02 3.78 0.00 0.07 ind:pas:3p; +référé référé nom m s 0.14 0.07 0.13 0.07 +référée référer ver f s 3.02 3.78 0.04 0.00 par:pas; +référés référé nom m p 0.14 0.07 0.01 0.00 +réfuta réfuter ver 1.46 1.69 0.10 0.07 ind:pas:3s; +réfutable réfutable adj s 0.01 0.00 0.01 0.00 +réfutaient réfuter ver 1.46 1.69 0.00 0.07 ind:imp:3p; +réfutant réfuter ver 1.46 1.69 0.01 0.00 par:pre; +réfutation réfutation nom f s 0.22 0.41 0.22 0.34 +réfutations réfutation nom f p 0.22 0.41 0.00 0.07 +réfute réfuter ver 1.46 1.69 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réfutent réfuter ver 1.46 1.69 0.01 0.07 ind:pre:3p; +réfuter réfuter ver 1.46 1.69 0.89 0.81 inf; +réfutons réfuter ver 1.46 1.69 0.14 0.00 ind:pre:1p; +réfutèrent réfuter ver 1.46 1.69 0.00 0.07 ind:pas:3p; +réfuté réfuter ver m s 1.46 1.69 0.05 0.20 par:pas; +réfutée réfuter ver f s 1.46 1.69 0.03 0.07 par:pas; +réfutées réfuter ver f p 1.46 1.69 0.02 0.07 par:pas; +régal régal nom m s 2.19 2.97 2.18 2.91 +régala régaler ver 7.54 11.76 0.00 0.20 ind:pas:3s; +régalade régalade nom f s 0.00 0.81 0.00 0.81 +régalai régaler ver 7.54 11.76 0.00 0.07 ind:pas:1s; +régalaient régaler ver 7.54 11.76 0.02 0.47 ind:imp:3p; +régalais régaler ver 7.54 11.76 0.06 0.41 ind:imp:1s;ind:imp:2s; +régalait régaler ver 7.54 11.76 0.19 1.96 ind:imp:3s; +régalant régaler ver 7.54 11.76 0.02 0.47 par:pre; +régale régaler ver 7.54 11.76 3.02 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +régalent régaler ver 7.54 11.76 0.14 0.41 ind:pre:3p; +régaler régaler ver 7.54 11.76 2.57 2.91 inf;; +régalera régaler ver 7.54 11.76 0.02 0.14 ind:fut:3s; +régaleraient régaler ver 7.54 11.76 0.00 0.14 cnd:pre:3p; +régalerais régaler ver 7.54 11.76 0.01 0.07 cnd:pre:1s; +régalerait régaler ver 7.54 11.76 0.00 0.20 cnd:pre:3s; +régaleras régaler ver 7.54 11.76 0.12 0.07 ind:fut:2s; +régalerez régaler ver 7.54 11.76 0.02 0.00 ind:fut:2p; +régaleront régaler ver 7.54 11.76 0.16 0.20 ind:fut:3p; +régaleur régaleur nom m s 0.00 0.07 0.00 0.07 +régalez régaler ver 7.54 11.76 0.60 0.07 imp:pre:2p;ind:pre:2p; +régalien régalien adj m s 0.01 0.07 0.01 0.07 +régalions régaler ver 7.54 11.76 0.00 0.07 ind:imp:1p; +régalât régaler ver 7.54 11.76 0.00 0.07 sub:imp:3s; +régals régal nom m p 2.19 2.97 0.01 0.07 +régalèrent régaler ver 7.54 11.76 0.00 0.27 ind:pas:3p; +régalé régaler ver m s 7.54 11.76 0.24 0.95 par:pas; +régalée régaler ver f s 7.54 11.76 0.06 0.27 par:pas; +régalés régaler ver m p 7.54 11.76 0.28 0.47 par:pas; +régate régate nom f s 1.13 0.81 0.93 0.41 +régates régate nom f p 1.13 0.81 0.19 0.41 +rugby rugby nom m s 1.14 3.11 1.14 3.11 +rugbyman rugbyman nom m s 0.03 1.28 0.03 0.34 +rugbymen rugbyman nom m p 0.03 1.28 0.00 0.95 +régence régence nom f s 0.07 1.69 0.07 1.69 +régent régent nom m s 1.14 2.30 0.77 1.08 +régentaient régenter ver 0.32 1.22 0.00 0.07 ind:imp:3p; +régentait régenter ver 0.32 1.22 0.00 0.27 ind:imp:3s; +régentant régenter ver 0.32 1.22 0.10 0.07 par:pre; +régente régent nom f s 1.14 2.30 0.37 1.15 +régentent régenter ver 0.32 1.22 0.01 0.00 ind:pre:3p; +régenter régenter ver 0.32 1.22 0.16 0.47 inf; +régenteraient régenter ver 0.32 1.22 0.00 0.07 cnd:pre:3p; +régentes régenter ver 0.32 1.22 0.01 0.00 ind:pre:2s; +régenté régenter ver m s 0.32 1.22 0.01 0.07 par:pas; +régentée régenter ver f s 0.32 1.22 0.00 0.14 par:pas; +régi régir ver m s 3.10 8.45 0.50 0.68 par:pas; +rugi rugir ver m s 1.73 7.50 0.00 0.61 par:pas; +régicide régicide nom s 0.20 1.01 0.20 0.88 +régicides régicide nom p 0.20 1.01 0.00 0.14 +régie régie nom f s 0.92 0.54 0.92 0.47 +régies régir ver f p 3.10 8.45 0.00 0.07 par:pas; +régime régime nom m s 19.43 39.73 18.52 36.69 +régiment régiment nom m s 12.30 25.54 11.48 19.86 +régimentaire régimentaire adj s 0.10 0.41 0.10 0.20 +régimentaires régimentaire adj f p 0.10 0.41 0.00 0.20 +régiments régiment nom m p 12.30 25.54 0.82 5.68 +régimes régime nom m p 19.43 39.73 0.92 3.04 +région région nom f s 28.16 53.31 25.80 39.05 +régional régional adj m s 2.63 2.70 1.23 1.69 +régionale régional adj f s 2.63 2.70 1.01 0.54 +régionales régional adj f p 2.63 2.70 0.39 0.47 +régionaliser régionaliser ver 0.00 0.07 0.00 0.07 inf; +régionalisme régionalisme nom m s 0.00 0.14 0.00 0.14 +régionaliste régionaliste adj m s 0.00 0.14 0.00 0.07 +régionalistes régionaliste adj p 0.00 0.14 0.00 0.07 +régionaux régional nom m p 0.32 1.22 0.20 1.08 +régions région nom f p 28.16 53.31 2.36 14.26 +régir régir ver 3.10 8.45 0.36 0.07 inf; +rugir rugir ver 1.73 7.50 0.52 0.88 inf; +régira régir ver 3.10 8.45 0.05 0.00 ind:fut:3s; +régiraient régir ver 3.10 8.45 0.00 0.07 cnd:pre:3p; +rugiraient rugir ver 1.73 7.50 0.00 0.07 cnd:pre:3p; +régirait régir ver 3.10 8.45 0.01 0.00 cnd:pre:3s; +rugirent rugir ver 1.73 7.50 0.00 0.07 ind:pas:3p; +régiront régir ver 3.10 8.45 0.14 0.00 ind:fut:3p; +rugiront rugir ver 1.73 7.50 0.01 0.00 ind:fut:3p; +régis régir ver m p 3.10 8.45 0.50 6.08 imp:pre:2s;par:pas; +rugis rugir ver m p 1.73 7.50 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +régissaient régir ver 3.10 8.45 0.02 0.07 ind:imp:3p; +rugissaient rugir ver 1.73 7.50 0.02 0.34 ind:imp:3p; +régissait régir ver 3.10 8.45 0.00 0.41 ind:imp:3s; +rugissait rugir ver 1.73 7.50 0.05 1.22 ind:imp:3s; +régissant régir ver 3.10 8.45 0.05 0.14 par:pre; +rugissant rugissant adj m s 0.12 1.22 0.09 0.61 +rugissante rugissant adj f s 0.12 1.22 0.01 0.27 +rugissantes rugissant adj f p 0.12 1.22 0.00 0.07 +rugissants rugissant adj m p 0.12 1.22 0.02 0.27 +rugisse rugir ver 1.73 7.50 0.02 0.00 sub:pre:3s; +rugissement rugissement nom m s 0.66 4.93 0.61 2.91 +rugissements rugissement nom m p 0.66 4.93 0.05 2.03 +régissent régir ver 3.10 8.45 0.39 0.41 ind:pre:3p; +rugissent rugir ver 1.73 7.50 0.05 0.07 ind:pre:3p; +régisseur régisseur nom m s 1.40 4.26 1.28 3.65 +régisseurs régisseur nom m p 1.40 4.26 0.11 0.61 +régisseuse régisseur nom f s 1.40 4.26 0.01 0.00 +rugissez rugir ver 1.73 7.50 0.03 0.00 imp:pre:2p; +régit régir ver 3.10 8.45 0.72 0.41 ind:pre:3s;ind:pas:3s; +rugit rugir ver 1.73 7.50 0.95 3.51 ind:pre:3s;ind:pas:3s; +régla régler ver 85.81 54.19 0.25 1.42 ind:pas:3s; +réglable réglable adj s 0.20 0.54 0.18 0.41 +réglables réglable adj m p 0.20 0.54 0.02 0.14 +réglage réglage nom m s 0.90 1.15 0.59 1.01 +réglages réglage nom m p 0.90 1.15 0.30 0.14 +réglai régler ver 85.81 54.19 0.00 0.41 ind:pas:1s; +réglaient régler ver 85.81 54.19 0.20 0.74 ind:imp:3p; +réglais régler ver 85.81 54.19 0.19 0.00 ind:imp:1s;ind:imp:2s; +réglait régler ver 85.81 54.19 0.41 3.31 ind:imp:3s; +réglant régler ver 85.81 54.19 0.14 1.15 par:pre; +réglasse régler ver 85.81 54.19 0.00 0.07 sub:imp:1s; +réglementaire réglementaire adj s 0.90 6.96 0.73 4.46 +réglementairement réglementairement adv 0.15 0.61 0.15 0.61 +réglementaires réglementaire adj p 0.90 6.96 0.17 2.50 +réglementait réglementer ver 0.22 0.81 0.00 0.07 ind:imp:3s; +réglementant réglementer ver 0.22 0.81 0.02 0.27 par:pre; +réglementation réglementation nom f s 0.56 0.47 0.31 0.41 +réglementations réglementation nom f p 0.56 0.47 0.25 0.07 +réglemente réglementer ver 0.22 0.81 0.00 0.07 ind:pre:3s; +réglementer réglementer ver 0.22 0.81 0.04 0.07 inf; +réglementé réglementer ver m s 0.22 0.81 0.05 0.07 par:pas; +réglementée réglementer ver f s 0.22 0.81 0.07 0.07 par:pas; +réglementées réglementer ver f p 0.22 0.81 0.00 0.20 par:pas; +réglementés réglementer ver m p 0.22 0.81 0.04 0.00 par:pas; +régler régler ver 85.81 54.19 42.27 22.36 ind:pre:2p;inf; +réglera régler ver 85.81 54.19 2.02 0.74 ind:fut:3s; +réglerai régler ver 85.81 54.19 0.73 0.07 ind:fut:1s; +réglerais régler ver 85.81 54.19 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +réglerait régler ver 85.81 54.19 0.16 0.68 cnd:pre:3s; +régleras régler ver 85.81 54.19 0.26 0.07 ind:fut:2s; +réglerez régler ver 85.81 54.19 0.37 0.14 ind:fut:2p; +réglerions régler ver 85.81 54.19 0.01 0.00 cnd:pre:1p; +réglerons régler ver 85.81 54.19 0.56 0.27 ind:fut:1p; +régleront régler ver 85.81 54.19 0.04 0.34 ind:fut:3p; +réglette réglette nom f s 0.01 0.20 0.01 0.20 +régleur régleur nom m s 0.10 1.82 0.10 1.82 +réglez régler ver 85.81 54.19 3.06 0.00 imp:pre:2p;ind:pre:2p; +régliez régler ver 85.81 54.19 0.06 0.00 ind:imp:2p; +réglions régler ver 85.81 54.19 0.00 0.07 ind:imp:1p; +réglisse réglisse nom f s 0.77 2.57 0.71 2.43 +réglisses réglisse nom f p 0.77 2.57 0.06 0.14 +réglo réglo adj s 6.61 1.22 5.99 1.08 +réglons régler ver 85.81 54.19 1.19 0.41 imp:pre:1p;ind:pre:1p; +réglos réglo adj m p 6.61 1.22 0.62 0.14 +réglât régler ver 85.81 54.19 0.00 0.14 sub:imp:3s; +réglèrent régler ver 85.81 54.19 0.00 0.34 ind:pas:3p; +réglé régler ver m s 85.81 54.19 21.02 10.47 par:pas; +réglée régler ver f s 85.81 54.19 2.37 4.26 par:pas; +réglées régler ver f p 85.81 54.19 0.88 1.49 par:pas; +réglure réglure nom f s 0.00 0.20 0.00 0.20 +réglés régler ver m p 85.81 54.19 0.39 0.88 par:pas; +régna régner ver 22.75 47.43 0.08 0.74 ind:pas:3s; +régnaient régner ver 22.75 47.43 0.29 2.30 ind:imp:3p; +régnais régner ver 22.75 47.43 0.02 0.47 ind:imp:1s;ind:imp:2s; +régnait régner ver 22.75 47.43 2.63 20.47 ind:imp:3s; +régnant régner ver 22.75 47.43 0.28 1.01 par:pre; +régnante régnant adj f s 0.17 1.15 0.05 0.41 +régnants régnant adj m p 0.17 1.15 0.10 0.14 +régnas régner ver 22.75 47.43 0.00 0.07 ind:pas:2s; +régner régner ver 22.75 47.43 5.52 7.64 inf; +régnera régner ver 22.75 47.43 1.33 0.61 ind:fut:3s; +régnerai régner ver 22.75 47.43 0.13 0.07 ind:fut:1s; +régneraient régner ver 22.75 47.43 0.11 0.14 cnd:pre:3p; +régnerais régner ver 22.75 47.43 0.01 0.00 cnd:pre:2s; +régnerait régner ver 22.75 47.43 0.18 0.27 cnd:pre:3s; +régneras régner ver 22.75 47.43 0.14 0.07 ind:fut:2s; +régnerez régner ver 22.75 47.43 0.03 0.00 ind:fut:2p; +régnerons régner ver 22.75 47.43 0.32 0.00 ind:fut:1p; +régneront régner ver 22.75 47.43 0.27 0.07 ind:fut:3p; +régnez régner ver 22.75 47.43 1.04 0.07 imp:pre:2p;ind:pre:2p; +régnions régner ver 22.75 47.43 0.00 0.07 ind:imp:1p; +régnons régner ver 22.75 47.43 0.20 0.00 ind:pre:1p; +régnèrent régner ver 22.75 47.43 0.02 0.00 ind:pas:3p; +régné régner ver m s 22.75 47.43 0.40 1.28 par:pas; +rugosité rugosité nom f s 0.00 0.81 0.00 0.47 +rugosités rugosité nom f p 0.00 0.81 0.00 0.34 +régressait régresser ver 0.85 0.88 0.00 0.07 ind:imp:3s; +régressant régresser ver 0.85 0.88 0.00 0.07 par:pre; +régresse régresser ver 0.85 0.88 0.23 0.14 ind:pre:1s;ind:pre:3s; +régresser régresser ver 0.85 0.88 0.39 0.34 inf; +régressera régresser ver 0.85 0.88 0.05 0.00 ind:fut:3s; +régressif régressif adj m s 0.07 0.00 0.03 0.00 +régression régression nom f s 0.52 1.55 0.51 1.35 +régressions régression nom f p 0.52 1.55 0.01 0.20 +régressive régressif adj f s 0.07 0.00 0.04 0.00 +régressé régresser ver m s 0.85 0.88 0.19 0.27 par:pas; +rugueuse rugueux adj f s 1.08 8.78 0.45 3.31 +rugueuses rugueux adj f p 1.08 8.78 0.13 0.88 +rugueux rugueux adj m 1.08 8.78 0.50 4.59 +régul régul adj m s 0.04 0.34 0.04 0.34 +régulant réguler ver 0.61 0.14 0.03 0.00 par:pre; +régularisa régulariser ver 0.38 0.88 0.00 0.07 ind:pas:3s; +régularisation régularisation nom f s 0.11 0.14 0.01 0.14 +régularisations régularisation nom f p 0.11 0.14 0.10 0.00 +régulariser régulariser ver 0.38 0.88 0.33 0.61 inf; +régularisera régulariser ver 0.38 0.88 0.02 0.00 ind:fut:3s; +régularisé régulariser ver m s 0.38 0.88 0.03 0.20 par:pas; +régularité régularité nom f s 0.55 6.96 0.55 6.96 +régulateur régulateur nom m s 1.05 0.27 0.65 0.07 +régulateurs régulateur nom m p 1.05 0.27 0.41 0.20 +régulation régulation nom f s 0.46 0.34 0.46 0.34 +régulatrice régulateur adj f s 0.14 0.27 0.01 0.00 +régulatrices régulateur adj f p 0.14 0.27 0.01 0.00 +régule régule nom m s 0.28 0.20 0.28 0.20 +régulent réguler ver 0.61 0.14 0.20 0.00 ind:pre:3p; +réguler réguler ver 0.61 0.14 0.28 0.14 inf; +régulera réguler ver 0.61 0.14 0.01 0.00 ind:fut:3s; +régulier régulier adj m s 8.29 41.35 4.48 16.42 +réguliers régulier adj m p 8.29 41.35 1.48 9.59 +régulière régulier adj f s 8.29 41.35 1.55 9.66 +régulièrement régulièrement adv 5.72 27.77 5.72 27.77 +régulières régulier adj f p 8.29 41.35 0.79 5.68 +régulé réguler ver m s 0.61 0.14 0.03 0.00 par:pas; +régulée réguler ver f s 0.61 0.14 0.04 0.00 par:pas; +régulées réguler ver f p 0.61 0.14 0.01 0.00 par:pas; +régulés réguler ver m p 0.61 0.14 0.02 0.00 par:pas; +régénère régénérer ver 1.83 1.55 0.60 0.07 ind:pre:3s; +régénèrent régénérer ver 1.83 1.55 0.06 0.00 ind:pre:3p; +régénérait régénérer ver 1.83 1.55 0.00 0.07 ind:imp:3s; +régénérant régénérer ver 1.83 1.55 0.07 0.14 par:pre; +régénérateur régénérateur nom m s 0.19 0.07 0.17 0.07 +régénérateurs régénérateur adj m p 0.05 0.41 0.01 0.00 +régénération régénération nom f s 0.67 0.14 0.67 0.14 +régénératrice régénérateur adj f s 0.05 0.41 0.01 0.27 +régénérer régénérer ver 1.83 1.55 0.72 0.68 inf; +régénérera régénérer ver 1.83 1.55 0.02 0.00 ind:fut:3s; +régénérerait régénérer ver 1.83 1.55 0.00 0.07 cnd:pre:3s; +régénérescence régénérescence nom f s 0.02 0.27 0.02 0.27 +régénéré régénérer ver m s 1.83 1.55 0.17 0.27 par:pas; +régénérée régénérer ver f s 1.83 1.55 0.03 0.14 par:pas; +régénérées régénéré adj f p 0.15 0.41 0.01 0.00 +régénérés régénérer ver m p 1.83 1.55 0.17 0.14 par:pas; +régurgitaient régurgiter ver 0.21 0.20 0.00 0.07 ind:imp:3p; +régurgitant régurgiter ver 0.21 0.20 0.01 0.07 par:pre; +régurgitation régurgitation nom f s 0.09 0.07 0.04 0.07 +régurgitations régurgitation nom f p 0.09 0.07 0.05 0.00 +régurgite régurgiter ver 0.21 0.20 0.07 0.00 ind:pre:3s; +régurgiter régurgiter ver 0.21 0.20 0.09 0.07 inf; +régurgiteras régurgiter ver 0.21 0.20 0.01 0.00 ind:fut:2s; +régurgité régurgiter ver m s 0.21 0.20 0.02 0.00 par:pas; +réhabilitaient réhabiliter ver 1.14 2.23 0.00 0.07 ind:imp:3p; +réhabilitait réhabiliter ver 1.14 2.23 0.00 0.14 ind:imp:3s; +réhabilitant réhabiliter ver 1.14 2.23 0.14 0.00 par:pre; +réhabilitation réhabilitation nom f s 1.55 0.68 1.55 0.68 +réhabilite réhabiliter ver 1.14 2.23 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réhabilitent réhabiliter ver 1.14 2.23 0.02 0.07 ind:pre:3p; +réhabiliter réhabiliter ver 1.14 2.23 0.28 1.01 inf; +réhabilitera réhabiliter ver 1.14 2.23 0.01 0.00 ind:fut:3s; +réhabiliterait réhabiliter ver 1.14 2.23 0.02 0.07 cnd:pre:3s; +réhabilité réhabiliter ver m s 1.14 2.23 0.46 0.47 par:pas; +réhabilitée réhabiliter ver f s 1.14 2.23 0.03 0.14 par:pas; +réhabilitées réhabiliter ver f p 1.14 2.23 0.01 0.00 par:pas; +réhabilités réhabiliter ver m p 1.14 2.23 0.12 0.14 par:pas; +réhabituais réhabituer ver 0.20 0.81 0.00 0.14 ind:imp:1s; +réhabituait réhabituer ver 0.20 0.81 0.00 0.07 ind:imp:3s; +réhabitue réhabituer ver 0.20 0.81 0.14 0.20 ind:pre:1s;ind:pre:3s; +réhabituer réhabituer ver 0.20 0.81 0.07 0.41 inf; +réhydratation réhydratation nom f s 0.03 0.00 0.03 0.00 +réhydrater réhydrater ver 0.09 0.07 0.08 0.07 inf; +réhydraté réhydrater ver m s 0.09 0.07 0.01 0.00 par:pas; +réifiés réifier ver m p 0.00 0.07 0.00 0.07 par:pas; +réimplantation réimplantation nom f s 0.09 0.00 0.09 0.00 +réimplanter réimplanter ver 0.11 0.00 0.06 0.00 inf; +réimplanté réimplanter ver m s 0.11 0.00 0.02 0.00 par:pas; +réimplantée réimplanter ver f s 0.11 0.00 0.02 0.00 par:pas; +réimpression réimpression nom f s 0.02 0.14 0.02 0.14 +réimprima réimprimer ver 0.04 0.27 0.00 0.07 ind:pas:3s; +réimprimer réimprimer ver 0.04 0.27 0.04 0.14 inf; +réimprimé réimprimer ver m s 0.04 0.27 0.00 0.07 par:pas; +ruina ruiner ver 20.39 12.09 0.03 0.20 ind:pas:3s; +ruinaient ruiner ver 20.39 12.09 0.01 0.47 ind:imp:3p; +ruinais ruiner ver 20.39 12.09 0.02 0.00 ind:imp:1s;ind:imp:2s; +ruinait ruiner ver 20.39 12.09 0.37 0.47 ind:imp:3s; +ruinant ruiner ver 20.39 12.09 0.11 0.27 par:pre; +réincarcérer réincarcérer ver 0.01 0.00 0.01 0.00 inf; +réincarnait réincarner ver 1.25 0.88 0.00 0.07 ind:imp:3s; +réincarnation réincarnation nom f s 1.75 1.55 1.68 1.49 +réincarnations réincarnation nom f p 1.75 1.55 0.07 0.07 +réincarne réincarner ver 1.25 0.88 0.12 0.07 ind:pre:1s;ind:pre:3s; +réincarnent réincarner ver 1.25 0.88 0.10 0.07 ind:pre:3p; +réincarner réincarner ver 1.25 0.88 0.30 0.07 inf; +réincarnera réincarner ver 1.25 0.88 0.01 0.00 ind:fut:3s; +réincarnerait réincarner ver 1.25 0.88 0.00 0.07 cnd:pre:3s; +réincarneront réincarner ver 1.25 0.88 0.01 0.00 ind:fut:3p; +réincarnons réincarner ver 1.25 0.88 0.01 0.00 ind:pre:1p; +réincarnèrent réincarner ver 1.25 0.88 0.01 0.00 ind:pas:3p; +réincarné réincarner ver m s 1.25 0.88 0.47 0.27 par:pas; +réincarnée réincarner ver f s 1.25 0.88 0.15 0.14 par:pas; +réincarnés réincarner ver m p 1.25 0.88 0.06 0.14 par:pas; +réincorpora réincorporer ver 0.04 0.07 0.00 0.07 ind:pas:3s; +réincorporé réincorporer ver m s 0.04 0.07 0.02 0.00 par:pas; +réincorporés réincorporer ver m p 0.04 0.07 0.02 0.00 par:pas; +ruine ruine nom f s 17.93 39.39 9.23 15.47 +ruinent ruiner ver 20.39 12.09 0.67 0.47 ind:pre:3p; +ruiner ruiner ver 20.39 12.09 7.21 2.91 inf; +ruinera ruiner ver 20.39 12.09 0.54 0.20 ind:fut:3s; +ruinerai ruiner ver 20.39 12.09 0.26 0.00 ind:fut:1s; +ruinerais ruiner ver 20.39 12.09 0.27 0.07 cnd:pre:1s;cnd:pre:2s; +ruinerait ruiner ver 20.39 12.09 0.40 0.00 cnd:pre:3s; +ruineras ruiner ver 20.39 12.09 0.03 0.14 ind:fut:2s; +ruinerez ruiner ver 20.39 12.09 0.03 0.00 ind:fut:2p; +ruinerons ruiner ver 20.39 12.09 0.02 0.00 ind:fut:1p; +ruineront ruiner ver 20.39 12.09 0.01 0.07 ind:fut:3p; +ruines ruine nom f p 17.93 39.39 8.70 23.92 +ruineuse ruineux adj f s 0.30 1.82 0.06 0.61 +ruineuses ruineux adj f p 0.30 1.82 0.02 0.41 +ruineux ruineux adj m 0.30 1.82 0.22 0.81 +ruinez ruiner ver 20.39 12.09 0.35 0.07 imp:pre:2p;ind:pre:2p; +réinfecter réinfecter ver 0.05 0.00 0.01 0.00 inf; +réinfecté réinfecter ver m s 0.05 0.00 0.04 0.00 par:pas; +ruiniez ruiner ver 20.39 12.09 0.02 0.00 ind:imp:2p; +réinitialisation réinitialisation nom f s 0.13 0.00 0.13 0.00 +réinitialiser réinitialiser ver 0.23 0.00 0.17 0.00 inf; +réinitialisez réinitialiser ver 0.23 0.00 0.03 0.00 imp:pre:2p; +réinitialisé réinitialiser ver m s 0.23 0.00 0.03 0.00 par:pas; +réinjecter réinjecter ver 0.02 0.00 0.02 0.00 inf; +réinjection réinjection nom f s 0.00 0.14 0.00 0.14 +ruinât ruiner ver 20.39 12.09 0.00 0.14 sub:imp:3s; +réinscrire réinscrire ver 0.08 0.00 0.04 0.00 inf; +réinscrit réinscrire ver m s 0.08 0.00 0.04 0.00 par:pas; +réinsertion réinsertion nom f s 1.51 0.88 1.51 0.88 +réinstalla réinstaller ver 0.28 1.89 0.01 0.07 ind:pas:3s; +réinstallaient réinstaller ver 0.28 1.89 0.00 0.07 ind:imp:3p; +réinstallait réinstaller ver 0.28 1.89 0.00 0.27 ind:imp:3s; +réinstallant réinstaller ver 0.28 1.89 0.00 0.14 par:pre; +réinstallation réinstallation nom f s 0.03 0.14 0.03 0.14 +réinstalle réinstaller ver 0.28 1.89 0.04 0.14 ind:pre:1s;ind:pre:3s; +réinstallent réinstaller ver 0.28 1.89 0.01 0.07 ind:pre:3p; +réinstaller réinstaller ver 0.28 1.89 0.13 0.54 inf; +réinstallez réinstaller ver 0.28 1.89 0.01 0.00 imp:pre:2p; +réinstallons réinstaller ver 0.28 1.89 0.00 0.07 ind:pre:1p; +réinstallé réinstaller ver m s 0.28 1.89 0.04 0.27 par:pas; +réinstallée réinstaller ver f s 0.28 1.89 0.02 0.14 par:pas; +réinstallées réinstaller ver f p 0.28 1.89 0.00 0.07 par:pas; +réinstallés réinstaller ver m p 0.28 1.89 0.01 0.07 par:pas; +réinstaurer réinstaurer ver 0.02 0.00 0.02 0.00 inf; +réinsérer réinsérer ver 0.41 0.47 0.23 0.41 inf; +réinséré réinsérer ver m s 0.41 0.47 0.17 0.07 par:pas; +réinterprète réinterpréter ver 0.03 0.14 0.00 0.07 ind:pre:3s; +réinterprétation réinterprétation nom f s 0.10 0.07 0.10 0.07 +réinterpréter réinterpréter ver 0.03 0.14 0.03 0.07 inf; +réinterroge réinterroger ver 0.22 0.00 0.05 0.00 ind:pre:3s; +réinterroger réinterroger ver 0.22 0.00 0.17 0.00 inf; +réintroduire réintroduire ver 0.23 0.27 0.18 0.07 inf; +réintroduisait réintroduire ver 0.23 0.27 0.00 0.07 ind:imp:3s; +réintroduisit réintroduire ver 0.23 0.27 0.00 0.07 ind:pas:3s; +réintroduit réintroduire ver m s 0.23 0.27 0.05 0.00 ind:pre:3s;par:pas; +réintroduite réintroduire ver f s 0.23 0.27 0.00 0.07 par:pas; +réintègre réintégrer ver 2.94 5.20 0.32 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réintègrent réintégrer ver 2.94 5.20 0.00 0.14 ind:pre:3p; +réintégra réintégrer ver 2.94 5.20 0.00 0.41 ind:pas:3s; +réintégrai réintégrer ver 2.94 5.20 0.00 0.14 ind:pas:1s; +réintégraient réintégrer ver 2.94 5.20 0.00 0.20 ind:imp:3p; +réintégrais réintégrer ver 2.94 5.20 0.00 0.07 ind:imp:1s; +réintégrait réintégrer ver 2.94 5.20 0.01 0.34 ind:imp:3s; +réintégrant réintégrer ver 2.94 5.20 0.01 0.20 par:pre; +réintégration réintégration nom f s 0.26 0.34 0.26 0.27 +réintégrations réintégration nom f p 0.26 0.34 0.00 0.07 +réintégrer réintégrer ver 2.94 5.20 1.38 2.16 inf; +réintégrerait réintégrer ver 2.94 5.20 0.00 0.07 cnd:pre:3s; +réintégrez réintégrer ver 2.94 5.20 0.22 0.00 imp:pre:2p;ind:pre:2p; +réintégrions réintégrer ver 2.94 5.20 0.00 0.07 ind:imp:1p; +réintégrons réintégrer ver 2.94 5.20 0.02 0.00 imp:pre:1p;ind:pre:1p; +réintégrèrent réintégrer ver 2.94 5.20 0.00 0.20 ind:pas:3p; +réintégré réintégrer ver m s 2.94 5.20 0.53 1.01 par:pas; +réintégrée réintégrer ver f s 2.94 5.20 0.21 0.00 par:pas; +réintégrés réintégrer ver m p 2.94 5.20 0.24 0.07 par:pas; +ruiné ruiner ver m s 20.39 12.09 5.81 3.92 par:pas; +ruinée ruiner ver f s 20.39 12.09 1.09 0.68 par:pas; +ruinées ruiner ver f p 20.39 12.09 0.15 0.14 par:pas; +ruinés ruiner ver m p 20.39 12.09 1.02 1.01 par:pas; +réinventa réinventer ver 0.73 2.43 0.01 0.07 ind:pas:3s; +réinventaient réinventer ver 0.73 2.43 0.01 0.14 ind:imp:3p; +réinventait réinventer ver 0.73 2.43 0.00 0.20 ind:imp:3s; +réinventant réinventer ver 0.73 2.43 0.00 0.14 par:pre; +réinvente réinventer ver 0.73 2.43 0.19 0.41 imp:pre:2s;ind:pre:3s; +réinventent réinventer ver 0.73 2.43 0.00 0.07 ind:pre:3p; +réinventer réinventer ver 0.73 2.43 0.41 1.01 inf; +réinventeraient réinventer ver 0.73 2.43 0.00 0.14 cnd:pre:3p; +réinvention réinvention nom f s 0.01 0.07 0.01 0.07 +réinventé réinventer ver m s 0.73 2.43 0.11 0.20 par:pas; +réinventées réinventer ver f p 0.73 2.43 0.00 0.07 par:pas; +réinvesti réinvestir ver m s 0.33 0.81 0.04 0.34 par:pas; +réinvestir réinvestir ver 0.33 0.81 0.10 0.14 inf; +réinvestirent réinvestir ver 0.33 0.81 0.00 0.07 ind:pas:3p; +réinvestis réinvestir ver 0.33 0.81 0.16 0.00 imp:pre:2s;ind:pre:1s; +réinvestissait réinvestir ver 0.33 0.81 0.00 0.14 ind:imp:3s; +réinvestissement réinvestissement nom m s 0.01 0.00 0.01 0.00 +réinvestissent réinvestir ver 0.33 0.81 0.00 0.14 ind:pre:3p; +réinvestit réinvestir ver 0.33 0.81 0.03 0.00 ind:pre:3s; +réinvita réinviter ver 0.05 0.07 0.00 0.07 ind:pas:3s; +réinvite réinviter ver 0.05 0.07 0.02 0.00 ind:pre:1s; +réinviter réinviter ver 0.05 0.07 0.01 0.00 inf; +réinviterai réinviter ver 0.05 0.07 0.02 0.00 ind:fut:1s; +ruisseau ruisseau nom m s 7.50 24.59 6.10 18.72 +ruisseaux ruisseau nom m p 7.50 24.59 1.40 5.88 +ruissela ruisseler ver 0.81 19.12 0.00 0.27 ind:pas:3s; +ruisselaient ruisseler ver 0.81 19.12 0.00 1.96 ind:imp:3p; +ruisselait ruisseler ver 0.81 19.12 0.02 4.80 ind:imp:3s; +ruisselant ruisseler ver 0.81 19.12 0.16 4.05 par:pre; +ruisselante ruisselant adj f s 0.33 6.82 0.03 3.11 +ruisselantes ruisselant adj f p 0.33 6.82 0.02 0.68 +ruisselants ruisselant adj m p 0.33 6.82 0.14 1.69 +ruisseler ruisseler ver 0.81 19.12 0.03 2.30 inf; +ruisselet ruisselet nom m s 0.01 1.01 0.01 0.54 +ruisselets ruisselet nom m p 0.01 1.01 0.00 0.47 +ruisselle ruisseler ver 0.81 19.12 0.50 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ruissellement ruissellement nom m s 0.01 4.53 0.01 4.12 +ruissellements ruissellement nom m p 0.01 4.53 0.00 0.41 +ruissellent ruisseler ver 0.81 19.12 0.10 1.22 ind:pre:3p; +ruissellerait ruisseler ver 0.81 19.12 0.00 0.07 cnd:pre:3s; +ruisselât ruisseler ver 0.81 19.12 0.00 0.07 sub:imp:3s; +ruisselèrent ruisseler ver 0.81 19.12 0.00 0.14 ind:pas:3p; +ruisselé ruisseler ver m s 0.81 19.12 0.00 0.47 par:pas; +ruisson ruisson nom m s 0.00 0.07 0.00 0.07 +réitère réitérer ver 1.13 2.77 0.34 0.41 ind:pre:1s;ind:pre:3s; +réitéra réitérer ver 1.13 2.77 0.00 0.54 ind:pas:3s; +réitérait réitérer ver 1.13 2.77 0.00 0.07 ind:imp:3s; +réitérant réitérer ver 1.13 2.77 0.00 0.07 par:pre; +réitération réitération nom f s 0.00 0.14 0.00 0.07 +réitérations réitération nom f p 0.00 0.14 0.00 0.07 +réitérer réitérer ver 1.13 2.77 0.35 0.41 inf; +réitérera réitérer ver 1.13 2.77 0.01 0.00 ind:fut:3s; +réitérèrent réitérer ver 1.13 2.77 0.00 0.07 ind:pas:3p; +réitéré réitérer ver m s 1.13 2.77 0.15 0.27 par:pas; +réitérée réitérer ver f s 1.13 2.77 0.14 0.27 par:pas; +réitérées réitérer ver f p 1.13 2.77 0.01 0.47 par:pas; +réitérés réitérer ver m p 1.13 2.77 0.14 0.20 par:pas; +réjouît réjouir ver 21.02 25.61 0.00 0.07 sub:imp:3s; +réjoui réjouir ver m s 21.02 25.61 0.50 1.89 par:pas; +réjouie réjouir ver f s 21.02 25.61 0.33 1.08 par:pas; +réjouies réjoui adj f p 0.45 2.43 0.02 0.20 +réjouir réjouir ver 21.02 25.61 3.96 6.15 inf; +réjouira réjouir ver 21.02 25.61 0.38 0.07 ind:fut:3s; +réjouirai réjouir ver 21.02 25.61 0.05 0.00 ind:fut:1s; +réjouirais réjouir ver 21.02 25.61 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +réjouirait réjouir ver 21.02 25.61 0.10 0.34 cnd:pre:3s; +réjouirent réjouir ver 21.02 25.61 0.01 0.14 ind:pas:3p; +réjouirez réjouir ver 21.02 25.61 0.00 0.07 ind:fut:2p; +réjouirons réjouir ver 21.02 25.61 0.04 0.00 ind:fut:1p; +réjouiront réjouir ver 21.02 25.61 0.64 0.14 ind:fut:3p; +réjouis réjouir ver m p 21.02 25.61 8.42 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réjouissaient réjouir ver 21.02 25.61 0.01 0.61 ind:imp:3p; +réjouissais réjouir ver 21.02 25.61 0.33 1.28 ind:imp:1s;ind:imp:2s; +réjouissait réjouir ver 21.02 25.61 0.44 4.73 ind:imp:3s; +réjouissance réjouissance nom f s 0.72 2.91 0.22 1.22 +réjouissances réjouissance nom f p 0.72 2.91 0.50 1.69 +réjouissant réjouissant adj m s 1.06 1.76 0.95 0.81 +réjouissante réjouissant adj f s 1.06 1.76 0.11 0.54 +réjouissantes réjouissant adj f p 1.06 1.76 0.00 0.27 +réjouissants réjouissant adj m p 1.06 1.76 0.00 0.14 +réjouisse réjouir ver 21.02 25.61 0.37 0.41 sub:pre:1s;sub:pre:3s; +réjouissent réjouir ver 21.02 25.61 0.74 0.61 ind:pre:3p; +réjouissez réjouir ver 21.02 25.61 1.15 0.27 imp:pre:2p;ind:pre:2p; +réjouissiez réjouir ver 21.02 25.61 0.01 0.00 ind:imp:2p; +réjouissions réjouir ver 21.02 25.61 0.01 0.07 ind:imp:1p; +réjouissons réjouir ver 21.02 25.61 0.65 0.27 imp:pre:1p;ind:pre:1p; +réjouit réjouir ver 21.02 25.61 2.75 4.32 ind:pre:3s;ind:pas:3s; +rémanence rémanence nom f s 0.01 0.20 0.01 0.20 +rémanent rémanent adj m s 0.02 0.14 0.02 0.00 +rémanente rémanent adj f s 0.02 0.14 0.00 0.14 +rumba rumba nom f s 0.68 0.68 0.68 0.61 +rumbas rumba nom f p 0.68 0.68 0.00 0.07 +rumeur rumeur nom f s 22.11 37.97 10.15 27.03 +rumeurs rumeur nom f p 22.11 37.97 11.96 10.95 +rémiges rémige nom f p 0.00 0.68 0.00 0.68 +rumina ruminer ver 1.65 8.85 0.01 0.34 ind:pas:3s; +ruminaient ruminer ver 1.65 8.85 0.00 0.27 ind:imp:3p; +ruminais ruminer ver 1.65 8.85 0.20 0.20 ind:imp:1s; +ruminait ruminer ver 1.65 8.85 0.16 1.62 ind:imp:3s; +ruminant ruminant nom m s 0.11 1.08 0.01 0.47 +ruminante ruminant adj f s 0.03 0.27 0.01 0.07 +ruminants ruminant nom m p 0.11 1.08 0.10 0.61 +rumination rumination nom f s 0.14 2.16 0.00 1.35 +ruminations rumination nom f p 0.14 2.16 0.14 0.81 +rumine ruminer ver 1.65 8.85 0.36 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ruminement ruminement nom m s 0.00 0.27 0.00 0.20 +ruminements ruminement nom m p 0.00 0.27 0.00 0.07 +ruminent ruminer ver 1.65 8.85 0.03 0.41 ind:pre:3p; +ruminer ruminer ver 1.65 8.85 0.82 2.77 inf; +ruminerez ruminer ver 1.65 8.85 0.00 0.07 ind:fut:2p; +rumineront ruminer ver 1.65 8.85 0.01 0.00 ind:fut:3p; +réminiscence réminiscence nom f s 0.12 3.92 0.04 1.49 +réminiscences réminiscence nom f p 0.12 3.92 0.07 2.43 +ruminé ruminer ver m s 1.65 8.85 0.04 0.61 par:pas; +ruminée ruminer ver f s 1.65 8.85 0.00 0.14 par:pas; +ruminées ruminer ver f p 1.65 8.85 0.00 0.07 par:pas; +ruminés ruminer ver m p 1.65 8.85 0.01 0.14 par:pas; +rémission rémission nom f s 1.71 2.77 1.69 2.36 +rémissions rémission nom f p 1.71 2.77 0.02 0.41 +rémiz rémiz nom f 0.00 0.07 0.00 0.07 +rémora rémora nom m s 0.02 0.00 0.02 0.00 +rémoulade rémoulade nom f s 0.02 0.20 0.02 0.20 +rémouleur rémouleur nom m s 0.02 0.95 0.02 0.68 +rémouleurs rémouleur nom m p 0.02 0.95 0.00 0.27 +rumsteck rumsteck nom m s 0.03 0.07 0.03 0.07 +rémunère rémunérer ver 1.20 0.54 0.12 0.00 ind:pre:1s;ind:pre:3s; +rémunéraient rémunérer ver 1.20 0.54 0.00 0.07 ind:imp:3p; +rémunérateur rémunérateur adj m s 0.18 0.34 0.07 0.27 +rémunérateurs rémunérateur adj m p 0.18 0.34 0.01 0.07 +rémunération rémunération nom f s 0.22 0.81 0.22 0.61 +rémunérations rémunération nom f p 0.22 0.81 0.00 0.20 +rémunératoires rémunératoire adj p 0.00 0.07 0.00 0.07 +rémunératrice rémunérateur adj f s 0.18 0.34 0.10 0.00 +rémunérer rémunérer ver 1.20 0.54 0.04 0.00 inf; +rémunéré rémunérer ver m s 1.20 0.54 0.68 0.27 par:pas; +rémunérées rémunérer ver f p 1.20 0.54 0.01 0.07 par:pas; +rémunérés rémunérer ver m p 1.20 0.54 0.36 0.14 par:pas; +run rune nom m s 4.75 0.14 2.36 0.00 +rénal rénal adj m s 1.57 0.47 0.32 0.14 +rénale rénal adj f s 1.57 0.47 0.82 0.27 +rénales rénal adj f p 1.57 0.47 0.12 0.07 +rénaux rénal adj m p 1.57 0.47 0.32 0.00 +rêne rêne nom f s 2.23 5.74 0.02 0.14 +rune rune nom f s 4.75 0.14 1.08 0.00 +rênes rêne nom f p 2.23 5.74 2.21 5.61 +runes rune nom f p 4.75 0.14 1.32 0.14 +rénettes rénette nom f p 0.00 0.07 0.00 0.07 +rénine rénine nom f s 0.01 0.00 0.01 0.00 +runique runique adj f s 0.20 0.00 0.16 0.00 +runiques runique adj m p 0.20 0.00 0.04 0.00 +running running nom m s 0.66 0.00 0.66 0.00 +rénovait rénover ver 2.33 2.50 0.01 0.07 ind:imp:3s; +rénovant rénover ver 2.33 2.50 0.10 0.07 par:pre; +rénovateur rénovateur nom m s 0.01 0.20 0.01 0.07 +rénovateurs rénovateur adj m p 0.02 0.07 0.01 0.07 +rénovation rénovation nom f s 1.11 3.65 0.51 3.58 +rénovations rénovation nom f p 1.11 3.65 0.60 0.07 +rénovatrice rénovateur adj f s 0.02 0.07 0.01 0.00 +rénove rénover ver 2.33 2.50 0.24 0.27 ind:pre:1s;ind:pre:3s; +rénover rénover ver 2.33 2.50 1.12 1.08 inf; +rénové rénover ver m s 2.33 2.50 0.53 0.54 par:pas; +rénovée rénover ver f s 2.33 2.50 0.31 0.20 par:pas; +rénovées rénover ver f p 2.33 2.50 0.02 0.14 par:pas; +rénovés rénover ver m p 2.33 2.50 0.00 0.14 par:pas; +réoccupait réoccuper ver 0.01 0.41 0.00 0.07 ind:imp:3s; +réoccuper réoccuper ver 0.01 0.41 0.01 0.27 inf; +réoccupons réoccuper ver 0.01 0.41 0.00 0.07 ind:pre:1p; +ruâmes ruer ver 3.27 20.81 0.00 0.07 ind:pas:1p; +ruons ruer ver 3.27 20.81 0.01 0.07 imp:pre:1p;ind:pre:1p; +réopère réopérer ver 0.20 0.20 0.04 0.00 ind:pre:3s; +réopérer réopérer ver 0.20 0.20 0.16 0.20 inf; +réordonnant réordonner ver 0.00 0.20 0.00 0.07 par:pre; +réordonner réordonner ver 0.00 0.20 0.00 0.14 inf; +réorganisa réorganiser ver 1.29 1.42 0.01 0.07 ind:pas:3s; +réorganisait réorganiser ver 1.29 1.42 0.01 0.14 ind:imp:3s; +réorganisant réorganiser ver 1.29 1.42 0.01 0.00 par:pre; +réorganisation réorganisation nom f s 0.36 1.42 0.36 1.35 +réorganisations réorganisation nom f p 0.36 1.42 0.00 0.07 +réorganise réorganiser ver 1.29 1.42 0.42 0.20 ind:pre:1s;ind:pre:3s; +réorganiser réorganiser ver 1.29 1.42 0.70 0.68 inf; +réorganisez réorganiser ver 1.29 1.42 0.02 0.00 imp:pre:2p;ind:pre:2p; +réorganisé réorganiser ver m s 1.29 1.42 0.12 0.20 par:pas; +réorganisées réorganiser ver f p 1.29 1.42 0.00 0.07 par:pas; +réorganisés réorganiser ver m p 1.29 1.42 0.00 0.07 par:pas; +réorientation réorientation nom f s 0.08 0.00 0.08 0.00 +réorienter réorienter ver 0.09 0.00 0.07 0.00 inf; +réorienté réorienter ver m s 0.09 0.00 0.01 0.00 par:pas; +ruât ruer ver 3.27 20.81 0.00 0.14 sub:imp:3s; +réouverture réouverture nom f s 0.48 0.61 0.48 0.54 +réouvertures réouverture nom f p 0.48 0.61 0.00 0.07 +répand répandre ver 20.39 44.32 4.14 4.73 ind:pre:3s; +répandît répandre ver 20.39 44.32 0.14 0.14 sub:imp:3s; +répandaient répandre ver 20.39 44.32 0.15 3.38 ind:imp:3p; +répandais répandre ver 20.39 44.32 0.01 0.07 ind:imp:1s; +répandait répandre ver 20.39 44.32 0.13 8.04 ind:imp:3s; +répandant répandre ver 20.39 44.32 0.41 2.23 par:pre; +répande répandre ver 20.39 44.32 0.59 0.20 sub:pre:1s;sub:pre:3s; +répandent répandre ver 20.39 44.32 1.75 1.42 ind:pre:3p; +répandeur répandeur nom m s 0.00 0.07 0.00 0.07 +répandez répandre ver 20.39 44.32 0.23 0.20 imp:pre:2p;ind:pre:2p; +répandirent répandre ver 20.39 44.32 0.15 0.68 ind:pas:3p; +répandit répandre ver 20.39 44.32 0.54 4.32 ind:pas:3s; +répandons répandre ver 20.39 44.32 0.06 0.00 imp:pre:1p;ind:pre:1p; +répandra répandre ver 20.39 44.32 0.35 0.00 ind:fut:3s; +répandrai répandre ver 20.39 44.32 0.19 0.14 ind:fut:1s; +répandraient répandre ver 20.39 44.32 0.01 0.20 cnd:pre:3p; +répandrait répandre ver 20.39 44.32 0.04 0.20 cnd:pre:3s; +répandras répandre ver 20.39 44.32 0.14 0.00 ind:fut:2s; +répandre répandre ver 20.39 44.32 5.53 6.82 inf; +répandrez répandre ver 20.39 44.32 0.04 0.00 ind:fut:2p; +répandrons répandre ver 20.39 44.32 0.15 0.00 ind:fut:1p; +répandront répandre ver 20.39 44.32 0.07 0.07 ind:fut:3p; +répands répandre ver 20.39 44.32 1.24 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +répandu répandre ver m s 20.39 44.32 2.67 4.53 par:pas; +répandue répandre ver f s 20.39 44.32 1.38 3.38 par:pas; +répandues répandre ver f p 20.39 44.32 0.16 1.49 par:pas; +répandus répandre ver m p 20.39 44.32 0.14 1.76 par:pas; +répara réparer ver 67.70 25.14 0.01 0.41 ind:pas:3s; +réparable réparable adj s 0.85 0.41 0.80 0.07 +réparables réparable adj f p 0.85 0.41 0.05 0.34 +réparaient réparer ver 67.70 25.14 0.08 0.41 ind:imp:3p; +réparais réparer ver 67.70 25.14 0.52 0.27 ind:imp:1s;ind:imp:2s; +réparait réparer ver 67.70 25.14 0.41 1.49 ind:imp:3s; +réparant réparer ver 67.70 25.14 0.14 0.54 par:pre; +réparateur réparateur nom m s 1.04 0.54 0.95 0.34 +réparateurs réparateur nom m p 1.04 0.54 0.06 0.20 +réparation réparation nom f s 8.35 7.97 5.07 4.80 +réparations réparation nom f p 8.35 7.97 3.28 3.18 +réparatrice réparateur adj f s 0.76 1.69 0.09 0.20 +réparatrices réparateur adj f p 0.76 1.69 0.02 0.00 +répare réparer ver 67.70 25.14 7.29 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réparent réparer ver 67.70 25.14 2.34 0.68 ind:pre:3p;sub:pre:3p; +réparer réparer ver 67.70 25.14 39.13 13.92 inf; +réparera réparer ver 67.70 25.14 0.64 0.07 ind:fut:3s; +réparerai réparer ver 67.70 25.14 1.26 0.14 ind:fut:1s; +répareraient réparer ver 67.70 25.14 0.00 0.07 cnd:pre:3p; +réparerait réparer ver 67.70 25.14 0.07 0.07 cnd:pre:3s; +répareras réparer ver 67.70 25.14 0.16 0.00 ind:fut:2s; +réparerez réparer ver 67.70 25.14 0.01 0.00 ind:fut:2p; +réparerons réparer ver 67.70 25.14 0.04 0.07 ind:fut:1p; +répareront réparer ver 67.70 25.14 0.02 0.00 ind:fut:3p; +réparez réparer ver 67.70 25.14 2.71 0.00 imp:pre:2p;ind:pre:2p; +répariez réparer ver 67.70 25.14 0.17 0.00 ind:imp:2p; +réparions réparer ver 67.70 25.14 0.00 0.07 ind:imp:1p; +réparons réparer ver 67.70 25.14 0.21 0.07 imp:pre:1p;ind:pre:1p; +répartîmes répartir ver 2.87 9.93 0.00 0.07 ind:pas:1p; +réparèrent réparer ver 67.70 25.14 0.00 0.07 ind:pas:3p; +réparti répartir ver m s 2.87 9.93 0.39 0.88 par:pas; +répartie répartie nom f s 0.88 0.14 0.79 0.07 +réparties répartie nom f p 0.88 0.14 0.09 0.07 +répartir répartir ver 2.87 9.93 1.23 1.82 inf; +répartirent répartir ver 2.87 9.93 0.01 0.07 ind:pas:3p; +répartiront répartir ver 2.87 9.93 0.02 0.00 ind:fut:3p; +répartis répartir ver m p 2.87 9.93 0.59 2.30 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +répartissaient répartir ver 2.87 9.93 0.00 0.54 ind:imp:3p; +répartissait répartir ver 2.87 9.93 0.01 0.41 ind:imp:3s; +répartissant répartir ver 2.87 9.93 0.04 0.27 par:pre; +répartissent répartir ver 2.87 9.93 0.01 0.41 ind:pre:3p; +répartissez répartir ver 2.87 9.93 0.10 0.00 imp:pre:2p; +répartissons répartir ver 2.87 9.93 0.01 0.00 imp:pre:1p; +répartit répartir ver 2.87 9.93 0.22 0.95 ind:pre:3s;ind:pas:3s; +répartiteur répartiteur nom m s 0.07 0.00 0.07 0.00 +répartition répartition nom f s 1.65 3.11 1.62 2.97 +répartitions répartition nom f p 1.65 3.11 0.03 0.14 +réparé réparer ver m s 67.70 25.14 9.35 2.97 par:pas; +réparée réparer ver f s 67.70 25.14 2.38 1.08 par:pas; +réparées réparer ver f p 67.70 25.14 0.42 0.88 par:pas; +réparés réparer ver m p 67.70 25.14 0.34 0.34 par:pas; +répercussion répercussion nom f s 1.05 1.69 0.11 0.68 +répercussions répercussion nom f p 1.05 1.69 0.94 1.01 +répercuta répercuter ver 0.35 7.91 0.00 0.34 ind:pas:3s; +répercutaient répercuter ver 0.35 7.91 0.00 0.74 ind:imp:3p; +répercutait répercuter ver 0.35 7.91 0.01 1.08 ind:imp:3s; +répercutant répercuter ver 0.35 7.91 0.00 0.74 par:pre; +répercute répercuter ver 0.35 7.91 0.25 1.22 ind:pre:3s; +répercutent répercuter ver 0.35 7.91 0.03 0.47 ind:pre:3p; +répercuter répercuter ver 0.35 7.91 0.04 0.74 inf; +répercuterait répercuter ver 0.35 7.91 0.00 0.14 cnd:pre:3s; +répercuteront répercuter ver 0.35 7.91 0.01 0.00 ind:fut:3p; +répercutons répercuter ver 0.35 7.91 0.00 0.07 ind:pre:1p; +répercutèrent répercuter ver 0.35 7.91 0.00 0.07 ind:pas:3p; +répercuté répercuter ver m s 0.35 7.91 0.00 1.42 par:pas; +répercutée répercuter ver f s 0.35 7.91 0.00 0.41 par:pas; +répercutées répercuter ver f p 0.35 7.91 0.00 0.20 par:pas; +répercutés répercuter ver m p 0.35 7.91 0.00 0.27 par:pas; +répertoire répertoire nom m s 2.17 5.68 2.04 5.34 +répertoires répertoire nom m p 2.17 5.68 0.14 0.34 +répertoriant répertorier ver 1.73 2.43 0.03 0.00 par:pre; +répertorier répertorier ver 1.73 2.43 0.14 0.34 inf; +répertorié répertorier ver m s 1.73 2.43 0.50 0.41 par:pas; +répertoriée répertorier ver f s 1.73 2.43 0.21 0.41 par:pas; +répertoriées répertorier ver f p 1.73 2.43 0.52 0.41 par:pas; +répertoriés répertorier ver m p 1.73 2.43 0.34 0.88 par:pas; +rupestre rupestre adj s 0.20 0.47 0.14 0.20 +rupestres rupestre adj p 0.20 0.47 0.06 0.27 +rupin rupin adj m s 0.34 1.28 0.32 0.54 +rupinasse rupiner ver 0.00 0.14 0.00 0.07 sub:imp:1s; +rupine rupin adj f s 0.34 1.28 0.00 0.27 +rupines rupin nom f p 0.68 1.69 0.00 0.07 +rupiniez rupiner ver 0.00 0.14 0.00 0.07 ind:imp:2p; +rupins rupin nom m p 0.68 1.69 0.43 1.22 +répit répit nom m s 3.87 11.76 3.86 11.01 +répits répit nom m p 3.87 11.76 0.01 0.74 +réplication réplication nom f s 0.23 0.00 0.23 0.00 +répliqua répliquer ver 1.53 17.91 0.19 7.50 ind:pas:3s; +répliquai répliquer ver 1.53 17.91 0.00 1.42 ind:pas:1s; +répliquaient répliquer ver 1.53 17.91 0.00 0.41 ind:imp:3p; +répliquais répliquer ver 1.53 17.91 0.01 0.14 ind:imp:1s;ind:imp:2s; +répliquait répliquer ver 1.53 17.91 0.02 1.62 ind:imp:3s; +répliquant répliquer ver 1.53 17.91 0.04 0.07 par:pre; +réplique réplique nom f s 8.94 16.82 6.16 12.77 +répliquent répliquer ver 1.53 17.91 0.07 0.07 ind:pre:3p; +répliquer répliquer ver 1.53 17.91 0.42 1.15 inf; +répliquera répliquer ver 1.53 17.91 0.01 0.07 ind:fut:3s; +répliquerons répliquer ver 1.53 17.91 0.02 0.00 ind:fut:1p; +répliqueront répliquer ver 1.53 17.91 0.01 0.00 ind:fut:3p; +répliques réplique nom f p 8.94 16.82 2.78 4.05 +répliquât répliquer ver 1.53 17.91 0.00 0.14 sub:imp:3s; +répliquèrent répliquer ver 1.53 17.91 0.01 0.07 ind:pas:3p; +répliqué répliquer ver m s 1.53 17.91 0.37 3.38 par:pas; +répond répondre ver 251.57 466.76 27.42 51.55 ind:pre:3s; +répondîmes répondre ver 251.57 466.76 0.10 0.07 ind:pas:1p; +répondît répondre ver 251.57 466.76 0.00 1.15 sub:imp:3s; +répondaient répondre ver 251.57 466.76 0.65 5.95 ind:imp:3p; +répondais répondre ver 251.57 466.76 1.93 7.70 ind:imp:1s;ind:imp:2s; +répondait répondre ver 251.57 466.76 4.18 45.14 ind:imp:3s; +répondant répondre ver 251.57 466.76 0.99 9.59 par:pre; +répondants répondant nom m p 0.25 1.82 0.03 0.27 +réponde répondre ver 251.57 466.76 2.96 4.39 sub:pre:1s;sub:pre:3s; +répondent répondre ver 251.57 466.76 5.96 6.82 ind:pre:3p; +répondes répondre ver 251.57 466.76 1.20 0.34 sub:pre:2s; +répondeur répondeur nom m s 7.95 1.55 7.76 1.49 +répondeurs répondeur nom m p 7.95 1.55 0.18 0.07 +répondeuse répondeur adj f s 0.20 0.07 0.01 0.00 +répondez répondre ver 251.57 466.76 31.77 3.65 imp:pre:2p;ind:pre:2p; +répondiez répondre ver 251.57 466.76 0.93 0.41 ind:imp:2p; +répondions répondre ver 251.57 466.76 0.04 0.41 ind:imp:1p;sub:pre:1p; +répondirent répondre ver 251.57 466.76 0.16 2.91 ind:pas:3p; +répondis répondre ver 251.57 466.76 0.73 20.74 ind:pas:1s; +répondit répondre ver 251.57 466.76 2.94 107.30 ind:pas:3s; +répondons répondre ver 251.57 466.76 0.51 0.95 imp:pre:1p;ind:pre:1p; +répondra répondre ver 251.57 466.76 3.42 2.23 ind:fut:3s; +répondrai répondre ver 251.57 466.76 4.30 2.23 ind:fut:1s; +répondraient répondre ver 251.57 466.76 0.28 0.27 cnd:pre:3p; +répondrais répondre ver 251.57 466.76 1.06 0.95 cnd:pre:1s;cnd:pre:2s; +répondrait répondre ver 251.57 466.76 0.77 3.04 cnd:pre:3s; +répondras répondre ver 251.57 466.76 0.67 0.27 ind:fut:2s; +répondre répondre ver 251.57 466.76 57.76 98.58 inf;; +répondrez répondre ver 251.57 466.76 0.94 0.61 ind:fut:2p; +répondriez répondre ver 251.57 466.76 0.24 0.34 cnd:pre:2p; +répondrons répondre ver 251.57 466.76 0.77 0.07 ind:fut:1p; +répondront répondre ver 251.57 466.76 0.37 0.27 ind:fut:3p; +réponds répondre ver 251.57 466.76 63.59 28.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +répondu répondre ver m s 251.57 466.76 34.90 60.14 par:pas; +répondues répondre ver f p 251.57 466.76 0.02 0.07 par:pas; +répons répons nom m 0.04 0.68 0.04 0.68 +réponse réponse nom f s 97.06 99.93 79.19 83.72 +réponses réponse nom f p 97.06 99.93 17.87 16.22 +répresseur répresseur nom m s 0.01 0.00 0.01 0.00 +répressif répressif adj m s 0.60 0.47 0.32 0.20 +répression répression nom f s 2.49 4.05 2.49 3.72 +répressions répression nom f p 2.49 4.05 0.00 0.34 +répressive répressif adj f s 0.60 0.47 0.24 0.27 +répressives répressif adj f p 0.60 0.47 0.05 0.00 +réprima réprimer ver 2.71 11.08 0.00 1.69 ind:pas:3s; +réprimai réprimer ver 2.71 11.08 0.00 0.07 ind:pas:1s; +réprimaient réprimer ver 2.71 11.08 0.01 0.07 ind:imp:3p; +réprimais réprimer ver 2.71 11.08 0.00 0.14 ind:imp:1s; +réprimait réprimer ver 2.71 11.08 0.01 0.20 ind:imp:3s; +réprimanda réprimander ver 1.08 1.49 0.00 0.14 ind:pas:3s; +réprimandait réprimander ver 1.08 1.49 0.00 0.14 ind:imp:3s; +réprimande réprimande nom f s 0.34 1.96 0.23 0.81 +réprimander réprimander ver 1.08 1.49 0.55 0.68 inf; +réprimandes réprimande nom f p 0.34 1.96 0.11 1.15 +réprimandiez réprimander ver 1.08 1.49 0.01 0.00 ind:imp:2p; +réprimandé réprimander ver m s 1.08 1.49 0.35 0.14 par:pas; +réprimandée réprimander ver f s 1.08 1.49 0.02 0.07 par:pas; +réprimant réprimer ver 2.71 11.08 0.03 0.88 par:pre; +réprime réprimer ver 2.71 11.08 0.39 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réprimer réprimer ver 2.71 11.08 0.94 4.26 inf; +réprimerai réprimer ver 2.71 11.08 0.01 0.00 ind:fut:1s; +réprimerait réprimer ver 2.71 11.08 0.00 0.07 cnd:pre:3s; +réprimerez réprimer ver 2.71 11.08 0.01 0.00 ind:fut:2p; +réprimâmes réprimer ver 2.71 11.08 0.00 0.14 ind:pas:1p; +réprimèrent réprimer ver 2.71 11.08 0.00 0.14 ind:pas:3p; +réprimé réprimer ver m s 2.71 11.08 0.28 1.35 par:pas; +réprimée réprimer ver f s 2.71 11.08 0.47 0.47 par:pas; +réprimées réprimer ver f p 2.71 11.08 0.38 0.20 par:pas; +réprimés réprimer ver m p 2.71 11.08 0.18 0.41 par:pas; +réprobateur réprobateur adj m s 0.01 2.43 0.00 1.82 +réprobateurs réprobateur adj m p 0.01 2.43 0.00 0.27 +réprobation réprobation nom f s 0.04 5.27 0.04 5.27 +réprobatrice réprobateur adj f s 0.01 2.43 0.01 0.34 +réprouvais réprouver ver 1.25 2.64 0.00 0.07 ind:imp:1s; +réprouvait réprouver ver 1.25 2.64 0.12 0.74 ind:imp:3s; +réprouvant réprouver ver 1.25 2.64 0.00 0.14 par:pre; +réprouve réprouver ver 1.25 2.64 0.49 0.54 ind:pre:1s;ind:pre:3s; +réprouvent réprouver ver 1.25 2.64 0.23 0.07 ind:pre:3p; +réprouver réprouver ver 1.25 2.64 0.05 0.27 inf; +réprouverait réprouver ver 1.25 2.64 0.00 0.07 cnd:pre:3s; +réprouveront réprouver ver 1.25 2.64 0.01 0.00 ind:fut:3p; +réprouves réprouver ver 1.25 2.64 0.01 0.20 ind:pre:2s; +réprouvez réprouver ver 1.25 2.64 0.19 0.07 imp:pre:2p;ind:pre:2p; +réprouvons réprouver ver 1.25 2.64 0.02 0.00 ind:pre:1p; +réprouvât réprouver ver 1.25 2.64 0.00 0.14 sub:imp:3s; +réprouvé réprouvé nom m s 0.00 1.42 0.00 0.41 +réprouvées réprouver ver f p 1.25 2.64 0.14 0.07 par:pas; +réprouvés réprouvé nom m p 0.00 1.42 0.00 0.95 +répréhensible répréhensible adj s 0.69 1.55 0.65 1.22 +répréhensibles répréhensible adj p 0.69 1.55 0.04 0.34 +rupteur rupteur nom m s 0.02 0.00 0.02 0.00 +répète répéter ver 98.30 200.14 45.14 37.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +répètent répéter ver 98.30 200.14 1.58 3.51 ind:pre:3p; +répètes répéter ver 98.30 200.14 2.91 0.81 ind:pre:2s;sub:pre:2s; +rupture rupture nom f s 8.39 21.49 7.87 19.73 +ruptures rupture nom f p 8.39 21.49 0.52 1.76 +républicain républicain adj m s 4.14 8.85 1.92 2.84 +républicaine républicain adj f s 4.14 8.85 1.22 3.18 +républicaines républicain adj f p 4.14 8.85 0.09 1.42 +républicains républicain nom m p 4.19 3.38 3.67 2.77 +république république nom f s 3.69 21.96 3.44 20.41 +républiques république nom f p 3.69 21.96 0.25 1.55 +répudiant répudier ver 1.33 1.82 0.00 0.07 par:pre; +répudiation répudiation nom f s 0.02 0.34 0.02 0.34 +répudie répudier ver 1.33 1.82 0.33 0.34 ind:pre:1s;ind:pre:3s; +répudier répudier ver 1.33 1.82 0.05 0.47 inf; +répudiera répudier ver 1.33 1.82 0.14 0.00 ind:fut:3s; +répudierai répudier ver 1.33 1.82 0.14 0.00 ind:fut:1s; +répudies répudier ver 1.33 1.82 0.00 0.07 ind:pre:2s; +répudié répudier ver m s 1.33 1.82 0.14 0.27 par:pas; +répudiée répudier ver f s 1.33 1.82 0.54 0.47 par:pas; +répudiées répudier ver f p 1.33 1.82 0.00 0.07 par:pas; +répudiés répudier ver m p 1.33 1.82 0.00 0.07 par:pas; +répugna répugner ver 4.55 10.34 0.00 0.07 ind:pas:3s; +répugnai répugner ver 4.55 10.34 0.00 0.07 ind:pas:1s; +répugnaient répugner ver 4.55 10.34 0.01 0.88 ind:imp:3p; +répugnais répugner ver 4.55 10.34 0.10 0.74 ind:imp:1s; +répugnait répugner ver 4.55 10.34 0.24 3.51 ind:imp:3s; +répugnance répugnance nom f s 0.56 7.91 0.56 6.96 +répugnances répugnance nom f p 0.56 7.91 0.00 0.95 +répugnant répugnant adj m s 11.59 8.58 7.47 3.04 +répugnante répugnant adj f s 11.59 8.58 2.46 3.31 +répugnantes répugnant adj f p 11.59 8.58 0.57 1.35 +répugnants répugnant adj m p 11.59 8.58 1.09 0.88 +répugne répugner ver 4.55 10.34 2.59 2.70 ind:pre:1s;ind:pre:3s; +répugnent répugner ver 4.55 10.34 0.30 0.34 ind:pre:3p; +répugner répugner ver 4.55 10.34 0.01 0.20 inf; +répugnerait répugner ver 4.55 10.34 0.01 0.07 cnd:pre:3s; +répugneront répugner ver 4.55 10.34 0.00 0.07 ind:fut:3p; +répugnes répugner ver 4.55 10.34 0.22 0.00 ind:pre:2s; +répugnez répugner ver 4.55 10.34 0.32 0.07 imp:pre:2p;ind:pre:2p; +répugniez répugner ver 4.55 10.34 0.02 0.07 ind:imp:2p; +répugnons répugner ver 4.55 10.34 0.10 0.07 ind:pre:1p; +répugnât répugner ver 4.55 10.34 0.00 0.27 sub:imp:3s; +répugné répugner ver m s 4.55 10.34 0.01 0.47 par:pas; +répugnée répugner ver f s 4.55 10.34 0.01 0.07 par:pas; +répulsif répulsif adj m s 0.08 0.00 0.03 0.00 +répulsion répulsion nom f s 0.56 5.27 0.56 4.66 +répulsions répulsion nom f p 0.56 5.27 0.00 0.61 +répulsive répulsif adj f s 0.08 0.00 0.04 0.00 +répéta répéter ver 98.30 200.14 0.15 41.62 ind:pas:3s; +répétai répéter ver 98.30 200.14 0.02 2.91 ind:pas:1s; +répétaient répéter ver 98.30 200.14 0.47 4.46 ind:imp:3p; +réputaient réputer ver 2.10 3.65 0.00 0.07 ind:imp:3p; +répétais répéter ver 98.30 200.14 1.02 4.12 ind:imp:1s;ind:imp:2s; +répétait répéter ver 98.30 200.14 3.01 33.18 ind:imp:3s; +réputait réputer ver 2.10 3.65 0.00 0.14 ind:imp:3s; +répétant répéter ver 98.30 200.14 0.85 16.55 par:pre; +réputation réputation nom f s 21.40 22.50 21.14 22.16 +réputations réputation nom f p 21.40 22.50 0.26 0.34 +répute réputer ver 2.10 3.65 0.00 0.07 ind:pre:3s; +réputent réputer ver 2.10 3.65 0.00 0.14 ind:pre:3p; +répéter répéter ver 98.30 200.14 22.20 30.88 ind:pre:2p;inf; +réputer réputer ver 2.10 3.65 0.00 0.14 inf; +répétera répéter ver 98.30 200.14 0.59 0.74 ind:fut:3s; +répéterai répéter ver 98.30 200.14 2.63 0.95 ind:fut:1s; +répéteraient répéter ver 98.30 200.14 0.00 0.34 cnd:pre:3p; +répéterais répéter ver 98.30 200.14 0.16 0.34 cnd:pre:1s;cnd:pre:2s; +répéterait répéter ver 98.30 200.14 0.02 0.34 cnd:pre:3s; +répéteras répéter ver 98.30 200.14 0.36 0.20 ind:fut:2s; +répéterez répéter ver 98.30 200.14 0.11 0.20 ind:fut:2p; +répéteriez répéter ver 98.30 200.14 0.03 0.00 cnd:pre:2p; +répétez répéter ver 98.30 200.14 7.95 1.01 imp:pre:2p;ind:pre:2p; +répétiez répéter ver 98.30 200.14 0.67 0.20 ind:imp:2p; +répétions répéter ver 98.30 200.14 0.16 0.81 ind:imp:1p; +répétiteur répétiteur nom m s 0.07 1.15 0.05 0.88 +répétiteurs répétiteur nom m p 0.07 1.15 0.00 0.14 +répétitif répétitif adj m s 0.90 0.88 0.52 0.27 +répétitifs répétitif adj m p 0.90 0.88 0.03 0.14 +répétition répétition nom f s 15.06 12.97 11.31 9.80 +répétitions répétition nom f p 15.06 12.97 3.75 3.18 +répétitive répétitif adj f s 0.90 0.88 0.27 0.14 +répétitives répétitif adj f p 0.90 0.88 0.08 0.34 +répétitrice répétiteur nom f s 0.07 1.15 0.03 0.14 +répétons répéter ver 98.30 200.14 1.78 0.34 imp:pre:1p;ind:pre:1p; +répétât répéter ver 98.30 200.14 0.00 0.27 sub:imp:3s; +répétèrent répéter ver 98.30 200.14 0.00 0.81 ind:pas:3p; +répété répéter ver m s 98.30 200.14 5.35 13.45 par:pas; +réputé réputer ver m s 2.10 3.65 1.21 1.42 par:pas; +répétée répéter ver f s 98.30 200.14 0.44 1.62 par:pas; +réputée réputer ver f s 2.10 3.65 0.54 0.95 par:pas; +répétées répéter ver f p 98.30 200.14 0.33 1.55 par:pas; +réputées réputer ver f p 2.10 3.65 0.08 0.20 par:pas; +répétés répéter ver m p 98.30 200.14 0.36 1.62 par:pas; +réputés réputer ver m p 2.10 3.65 0.27 0.54 par:pas; +réquisition réquisition nom f s 0.52 2.77 0.48 1.82 +réquisitionnais réquisitionner ver 2.12 4.59 0.00 0.07 ind:imp:1s; +réquisitionnait réquisitionner ver 2.12 4.59 0.00 0.34 ind:imp:3s; +réquisitionnant réquisitionner ver 2.12 4.59 0.00 0.27 par:pre; +réquisitionne réquisitionner ver 2.12 4.59 0.38 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réquisitionner réquisitionner ver 2.12 4.59 0.53 0.68 inf; +réquisitionnez réquisitionner ver 2.12 4.59 0.17 0.07 imp:pre:2p; +réquisitionnons réquisitionner ver 2.12 4.59 0.03 0.00 imp:pre:1p;ind:pre:1p; +réquisitionné réquisitionner ver m s 2.12 4.59 0.80 1.42 par:pas; +réquisitionnée réquisitionner ver f s 2.12 4.59 0.04 0.34 par:pas; +réquisitionnées réquisitionner ver f p 2.12 4.59 0.01 0.61 par:pas; +réquisitionnés réquisitionner ver m p 2.12 4.59 0.16 0.61 par:pas; +réquisitions réquisition nom f p 0.52 2.77 0.04 0.95 +réquisitoire réquisitoire nom m s 0.40 2.50 0.39 2.03 +réquisitoires réquisitoire nom m p 0.40 2.50 0.01 0.47 +rural rural adj m s 1.19 3.51 0.66 1.15 +rurale rural adj f s 1.19 3.51 0.23 0.88 +rurales rural adj f p 1.19 3.51 0.25 0.34 +ruraux rural adj m p 1.19 3.51 0.05 1.15 +rus ru nom m p 0.26 0.88 0.11 0.27 +rusa ruser ver 3.12 4.66 0.03 0.14 ind:pas:3s; +rusais ruser ver 3.12 4.66 0.01 0.07 ind:imp:1s; +rusait ruser ver 3.12 4.66 0.02 0.14 ind:imp:3s; +rusant ruser ver 3.12 4.66 0.02 0.07 par:pre; +ruse ruse nom f s 9.98 19.93 8.09 13.31 +réseau réseau nom m s 14.41 18.92 13.23 14.66 +réseaux réseau nom m p 14.41 18.92 1.18 4.26 +résection résection nom f s 0.18 0.14 0.18 0.14 +rusent ruser ver 3.12 4.66 0.01 0.07 ind:pre:3p; +ruser ruser ver 3.12 4.66 0.61 2.03 inf; +rusera ruser ver 3.12 4.66 0.00 0.07 ind:fut:3s; +ruserai ruser ver 3.12 4.66 0.00 0.14 ind:fut:1s; +ruserais ruser ver 3.12 4.66 0.00 0.07 cnd:pre:1s; +réserva réserver ver 34.33 47.57 0.01 0.88 ind:pas:3s; +réservai réserver ver 34.33 47.57 0.00 0.14 ind:pas:1s; +réservaient réserver ver 34.33 47.57 0.04 1.42 ind:imp:3p; +réservais réserver ver 34.33 47.57 0.32 0.61 ind:imp:1s;ind:imp:2s; +réservait réserver ver 34.33 47.57 0.37 5.95 ind:imp:3s; +réservant réserver ver 34.33 47.57 0.01 2.03 par:pre; +réservataire réservataire adj s 0.00 0.07 0.00 0.07 +réservation réservation nom f s 4.99 0.41 3.69 0.27 +réservations réservation nom f p 4.99 0.41 1.29 0.14 +réserve réserve nom f s 21.11 51.55 14.47 38.99 +réservent réserver ver 34.33 47.57 0.32 0.95 ind:pre:3p; +réserver réserver ver 34.33 47.57 4.40 4.26 inf; +réservera réserver ver 34.33 47.57 0.07 0.07 ind:fut:3s; +réserverai réserver ver 34.33 47.57 0.12 0.07 ind:fut:1s; +réserverait réserver ver 34.33 47.57 0.02 0.20 cnd:pre:3s; +réserveriez réserver ver 34.33 47.57 0.01 0.00 cnd:pre:2p; +réserveront réserver ver 34.33 47.57 0.00 0.07 ind:fut:3p; +réserves réserve nom f p 21.11 51.55 6.64 12.57 +réservez réserver ver 34.33 47.57 1.05 0.20 imp:pre:2p;ind:pre:2p; +réserviez réserver ver 34.33 47.57 0.05 0.00 ind:imp:2p; +réservions réserver ver 34.33 47.57 0.00 0.27 ind:imp:1p; +réserviste réserviste nom s 0.48 1.42 0.16 0.54 +réservistes réserviste nom p 0.48 1.42 0.33 0.88 +réservoir réservoir nom m s 8.53 5.95 6.83 4.59 +réservoirs réservoir nom m p 8.53 5.95 1.70 1.35 +réservons réserver ver 34.33 47.57 0.47 0.34 imp:pre:1p;ind:pre:1p; +réservât réserver ver 34.33 47.57 0.00 0.07 sub:imp:3s; +réservèrent réserver ver 34.33 47.57 0.00 0.07 ind:pas:3p; +réservé réserver ver m s 34.33 47.57 14.65 11.55 par:pas; +réservée réserver ver f s 34.33 47.57 2.69 6.96 par:pas; +réservées réserver ver f p 34.33 47.57 0.85 2.77 par:pas; +réservés réserver ver m p 34.33 47.57 0.95 3.45 par:pas; +ruses ruse nom f p 9.98 19.93 1.89 6.62 +rush rush nom m s 2.02 0.88 1.04 0.54 +rushes rush nom m p 2.02 0.88 0.98 0.34 +résidaient résider ver 4.95 6.82 0.04 0.41 ind:imp:3p; +résidais résider ver 4.95 6.82 0.06 0.07 ind:imp:1s;ind:imp:2s; +résidait résider ver 4.95 6.82 0.29 1.96 ind:imp:3s; +résidant résider ver 4.95 6.82 0.15 0.95 par:pre; +réside résider ver 4.95 6.82 3.51 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résidence résidence nom f s 8.04 10.95 7.56 8.85 +résidences résidence nom f p 8.04 10.95 0.48 2.09 +résident résident nom m s 1.66 1.49 0.48 0.54 +résidente résident nom f s 1.66 1.49 0.11 0.00 +résidentiel résidentiel adj m s 1.91 1.35 0.70 0.61 +résidentielle résidentiel adj f s 1.91 1.35 0.33 0.34 +résidentielles résidentiel adj f p 1.91 1.35 0.69 0.20 +résidentiels résidentiel adj m p 1.91 1.35 0.19 0.20 +résidents résident nom m p 1.66 1.49 1.08 0.95 +résider résider ver 4.95 6.82 0.35 1.08 inf; +résidera résider ver 4.95 6.82 0.02 0.00 ind:fut:3s; +résiderez résider ver 4.95 6.82 0.01 0.00 ind:fut:2p; +résides résider ver 4.95 6.82 0.05 0.00 ind:pre:2s; +résidez résider ver 4.95 6.82 0.11 0.00 ind:pre:2p; +résidons résider ver 4.95 6.82 0.00 0.07 ind:pre:1p; +résidé résider ver m s 4.95 6.82 0.04 0.20 par:pas; +résidu résidu nom m s 2.72 2.70 0.89 1.76 +résiduel résiduel adj m s 0.55 0.27 0.11 0.07 +résiduelle résiduel adj f s 0.55 0.27 0.26 0.14 +résiduelles résiduel adj f p 0.55 0.27 0.07 0.00 +résiduels résiduel adj m p 0.55 0.27 0.12 0.07 +résidus résidu nom m p 2.72 2.70 1.83 0.95 +résigna résigner ver 3.84 20.34 0.00 1.28 ind:pas:3s; +résignai résigner ver 3.84 20.34 0.00 0.81 ind:pas:1s; +résignaient résigner ver 3.84 20.34 0.00 0.41 ind:imp:3p; +résignais résigner ver 3.84 20.34 0.00 0.74 ind:imp:1s; +résignait résigner ver 3.84 20.34 0.01 1.76 ind:imp:3s; +résignant résigner ver 3.84 20.34 0.00 0.41 par:pre; +résignassent résigner ver 3.84 20.34 0.00 0.07 sub:imp:3p; +résignation résignation nom f s 0.98 9.93 0.98 9.86 +résignations résignation nom f p 0.98 9.93 0.00 0.07 +résigne résigner ver 3.84 20.34 1.07 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résignent résigner ver 3.84 20.34 0.03 0.27 ind:pre:3p; +résigner résigner ver 3.84 20.34 1.50 5.68 inf; +résignera résigner ver 3.84 20.34 0.00 0.07 ind:fut:3s; +résignerais résigner ver 3.84 20.34 0.00 0.07 cnd:pre:1s; +résignerait résigner ver 3.84 20.34 0.00 0.20 cnd:pre:3s; +résigneront résigner ver 3.84 20.34 0.01 0.00 ind:fut:3p; +résignez résigner ver 3.84 20.34 0.22 0.07 imp:pre:2p;ind:pre:2p; +résignions résigner ver 3.84 20.34 0.00 0.14 ind:imp:1p; +résignâmes résigner ver 3.84 20.34 0.00 0.14 ind:pas:1p; +résignât résigner ver 3.84 20.34 0.00 0.20 sub:imp:3s; +résignèrent résigner ver 3.84 20.34 0.00 0.14 ind:pas:3p; +résigné résigner ver m s 3.84 20.34 0.67 3.31 par:pas; +résignée résigner ver f s 3.84 20.34 0.16 1.89 par:pas; +résignées résigner ver f p 3.84 20.34 0.01 0.34 par:pas; +résignés résigner ver m p 3.84 20.34 0.15 0.74 par:pas; +résilia résilier ver 0.72 0.27 0.00 0.07 ind:pas:3s; +résiliable résiliable adj s 0.01 0.07 0.01 0.07 +résiliation résiliation nom f s 0.07 0.00 0.07 0.00 +résilie résilier ver 0.72 0.27 0.06 0.00 ind:pre:1s;ind:pre:3s; +résilience résilience nom f s 0.02 0.00 0.02 0.00 +résilier résilier ver 0.72 0.27 0.20 0.07 inf; +résilierait résilier ver 0.72 0.27 0.01 0.00 cnd:pre:3s; +résilié résilier ver m s 0.72 0.27 0.40 0.07 par:pas; +résiliée résilier ver f s 0.72 0.27 0.04 0.00 par:pas; +résiliées résilier ver f p 0.72 0.27 0.01 0.07 par:pas; +résille résille nom f s 0.36 1.96 0.27 1.89 +résilles résille nom f p 0.36 1.96 0.09 0.07 +résine résine nom f s 0.84 5.54 0.83 5.20 +résines résine nom f p 0.84 5.54 0.01 0.34 +résineuse résineux adj f s 0.13 1.01 0.01 0.61 +résineuses résineux adj f p 0.13 1.01 0.00 0.27 +résineux résineux adj m s 0.13 1.01 0.11 0.14 +résiné résiné nom m s 0.00 2.43 0.00 2.43 +résinée résiner ver f s 0.00 0.07 0.00 0.07 par:pas; +résipiscence résipiscence nom f s 0.00 0.47 0.00 0.47 +résista résister ver 38.91 52.16 0.17 2.16 ind:pas:3s; +résistai résister ver 38.91 52.16 0.00 0.47 ind:pas:1s; +résistaient résister ver 38.91 52.16 0.07 1.15 ind:imp:3p; +résistais résister ver 38.91 52.16 0.23 0.20 ind:imp:1s;ind:imp:2s; +résistait résister ver 38.91 52.16 0.38 5.68 ind:imp:3s; +résistance résistance nom f s 13.23 56.49 12.99 54.32 +résistances résistance nom f p 13.23 56.49 0.23 2.16 +résistant résistant adj m s 3.63 3.58 1.77 1.15 +résistante résistant adj f s 3.63 3.58 0.78 0.81 +résistantes résistant adj f p 3.63 3.58 0.42 0.20 +résistants résistant nom m p 1.38 6.15 0.86 4.59 +résiste résister ver 38.91 52.16 8.18 9.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résistent résister ver 38.91 52.16 1.35 1.89 ind:pre:3p;sub:pre:3p; +résister résister ver 38.91 52.16 17.54 19.93 inf; +résistera résister ver 38.91 52.16 1.93 0.54 ind:fut:3s; +résisterai résister ver 38.91 52.16 0.28 0.47 ind:fut:1s; +résisteraient résister ver 38.91 52.16 0.18 0.61 cnd:pre:3p; +résisterais résister ver 38.91 52.16 0.08 0.14 cnd:pre:1s;cnd:pre:2s; +résisterait résister ver 38.91 52.16 0.23 1.22 cnd:pre:3s; +résisteras résister ver 38.91 52.16 0.05 0.00 ind:fut:2s; +résisterez résister ver 38.91 52.16 0.06 0.00 ind:fut:2p; +résisteriez résister ver 38.91 52.16 0.04 0.00 cnd:pre:2p; +résisterions résister ver 38.91 52.16 0.01 0.00 cnd:pre:1p; +résisterons résister ver 38.91 52.16 0.16 0.00 ind:fut:1p; +résisteront résister ver 38.91 52.16 0.22 0.20 ind:fut:3p; +résistes résister ver 38.91 52.16 0.83 0.07 ind:pre:2s;sub:pre:2s; +résistez résister ver 38.91 52.16 1.43 0.20 imp:pre:2p;ind:pre:2p; +résistible résistible adj s 0.01 0.00 0.01 0.00 +résistiez résister ver 38.91 52.16 0.00 0.07 ind:imp:2p; +résistions résister ver 38.91 52.16 0.02 0.07 ind:imp:1p; +résistons résister ver 38.91 52.16 0.04 0.07 ind:pre:1p; +résistât résister ver 38.91 52.16 0.00 0.41 sub:imp:3s; +résistèrent résister ver 38.91 52.16 0.01 0.47 ind:pas:3p; +résisté résister ver m s 38.91 52.16 5.16 5.74 par:pas; +résolu résoudre ver m s 40.95 36.96 9.28 11.82 par:pas; +résoluble résoluble adj m s 0.03 0.00 0.03 0.00 +résolue résolu adj f s 6.05 11.28 2.63 4.59 +résolues résolu adj f p 6.05 11.28 0.90 0.61 +résolument résolument adv 0.39 5.34 0.39 5.34 +résolurent résoudre ver 40.95 36.96 0.00 0.07 ind:pas:3p; +résolus résoudre ver m p 40.95 36.96 1.23 3.04 ind:pas:1s;ind:pas:2s;par:pas; +résolut résoudre ver 40.95 36.96 0.13 3.11 ind:pas:3s; +résolution résolution nom f s 4.51 14.39 3.24 10.47 +résolutions résolution nom f p 4.51 14.39 1.27 3.92 +résolvaient résoudre ver 40.95 36.96 0.03 0.34 ind:imp:3p; +résolvais résoudre ver 40.95 36.96 0.02 0.07 ind:imp:1s;ind:imp:2s; +résolvait résoudre ver 40.95 36.96 0.13 1.15 ind:imp:3s; +résolvant résoudre ver 40.95 36.96 0.01 0.20 par:pre; +résolve résoudre ver 40.95 36.96 0.58 0.14 sub:pre:1s;sub:pre:3s; +résolvent résoudre ver 40.95 36.96 0.55 0.27 ind:pre:3p; +résolves résoudre ver 40.95 36.96 0.05 0.00 sub:pre:2s; +résolvez résoudre ver 40.95 36.96 0.36 0.00 imp:pre:2p;ind:pre:2p; +résolviez résoudre ver 40.95 36.96 0.04 0.07 ind:imp:2p; +résolvons résoudre ver 40.95 36.96 0.08 0.00 imp:pre:1p;ind:pre:1p; +rusâmes ruser ver 3.12 4.66 0.00 0.07 ind:pas:1p; +résonance résonance nom f s 0.71 5.27 0.69 3.72 +résonances résonance nom f p 0.71 5.27 0.03 1.55 +résonateur résonateur nom m s 0.13 0.00 0.13 0.00 +résonna résonner ver 5.07 31.96 0.24 4.26 ind:pas:3s; +résonnaient résonner ver 5.07 31.96 0.16 4.53 ind:imp:3p; +résonnait résonner ver 5.07 31.96 0.64 7.09 ind:imp:3s; +résonnant résonner ver 5.07 31.96 0.14 0.74 par:pre; +résonnante résonnant adj f s 0.12 0.47 0.03 0.07 +résonnants résonnant adj m p 0.12 0.47 0.00 0.07 +résonne résonner ver 5.07 31.96 1.38 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résonnent résonner ver 5.07 31.96 1.11 2.70 ind:pre:3p; +résonner résonner ver 5.07 31.96 0.81 5.47 inf; +résonnera résonner ver 5.07 31.96 0.17 0.07 ind:fut:3s; +résonneraient résonner ver 5.07 31.96 0.02 0.07 cnd:pre:3p; +résonneront résonner ver 5.07 31.96 0.11 0.07 ind:fut:3p; +résonnez résonner ver 5.07 31.96 0.02 0.20 imp:pre:2p; +résonnèrent résonner ver 5.07 31.96 0.01 1.28 ind:pas:3p; +résonné résonner ver m s 5.07 31.96 0.27 0.88 par:pas; +résorba résorber ver 0.26 2.97 0.00 0.07 ind:pas:3s; +résorbable résorbable adj s 0.01 0.00 0.01 0.00 +résorbaient résorber ver 0.26 2.97 0.00 0.20 ind:imp:3p; +résorbait résorber ver 0.26 2.97 0.00 0.14 ind:imp:3s; +résorbant résorber ver 0.26 2.97 0.00 0.07 par:pre; +résorbe résorber ver 0.26 2.97 0.04 0.74 ind:pre:3s; +résorbent résorber ver 0.26 2.97 0.00 0.14 ind:pre:3p; +résorber résorber ver 0.26 2.97 0.06 0.54 inf; +résorberait résorber ver 0.26 2.97 0.00 0.07 cnd:pre:3s; +résorberons résorber ver 0.26 2.97 0.01 0.00 ind:fut:1p; +résorbé résorber ver m s 0.26 2.97 0.14 0.54 par:pas; +résorbée résorber ver f s 0.26 2.97 0.01 0.34 par:pas; +résorbés résorber ver m p 0.26 2.97 0.00 0.14 par:pas; +résorption résorption nom f s 0.00 0.20 0.00 0.14 +résorptions résorption nom f p 0.00 0.20 0.00 0.07 +résoudra résoudre ver 40.95 36.96 1.67 0.41 ind:fut:3s; +résoudrai résoudre ver 40.95 36.96 0.12 0.00 ind:fut:1s; +résoudraient résoudre ver 40.95 36.96 0.00 0.07 cnd:pre:3p; +résoudrais résoudre ver 40.95 36.96 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +résoudrait résoudre ver 40.95 36.96 0.32 0.41 cnd:pre:3s; +résoudras résoudre ver 40.95 36.96 0.05 0.00 ind:fut:2s; +résoudre résoudre ver 40.95 36.96 20.89 13.58 inf; +résoudrez résoudre ver 40.95 36.96 0.10 0.00 ind:fut:2p; +résoudrons résoudre ver 40.95 36.96 0.07 0.00 ind:fut:1p; +résoudront résoudre ver 40.95 36.96 0.47 0.00 ind:fut:3p; +résous résoudre ver 40.95 36.96 1.04 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +résout résoudre ver 40.95 36.96 3.38 1.82 ind:pre:3s; +russe russe adj s 32.27 48.51 24.85 35.34 +russes russe nom p 35.44 40.27 19.76 24.73 +russifiant russifier ver 0.00 0.27 0.00 0.07 par:pre; +russification russification nom f s 0.00 0.14 0.00 0.14 +russifié russifier ver m s 0.00 0.27 0.00 0.14 par:pas; +russifiée russifier ver f s 0.00 0.27 0.00 0.07 par:pas; +russo_allemand russo_allemand adj m s 0.00 0.14 0.00 0.07 +russo_allemand russo_allemand adj f s 0.00 0.14 0.00 0.07 +russo_américain russo_américain adj m s 0.00 0.07 0.00 0.07 +russo_japonais russo_japonais adj f s 0.00 0.20 0.00 0.20 +russo_polonais russo_polonais adj m 0.00 0.14 0.00 0.07 +russo_polonais russo_polonais adj f s 0.00 0.14 0.00 0.07 +russo_turque russo_turque adj f s 0.00 0.14 0.00 0.14 +russophone russophone adj m s 0.01 0.00 0.01 0.00 +russules russule nom f p 0.00 0.14 0.00 0.14 +rustaud rustaud nom m s 0.39 0.20 0.33 0.14 +rustaude rustaud adj f s 0.12 0.68 0.02 0.27 +rustaudes rustaud nom f p 0.39 0.20 0.01 0.00 +rustauds rustaud nom m p 0.39 0.20 0.05 0.07 +rusticité rusticité nom f s 0.02 1.08 0.02 1.08 +rustine rustine nom f s 0.10 1.69 0.08 0.95 +rustines rustine nom f p 0.10 1.69 0.02 0.74 +rustique rustique adj s 1.29 6.22 0.95 4.26 +rustiques rustique adj p 1.29 6.22 0.34 1.96 +rustre rustre nom s 2.26 1.28 1.63 0.74 +rustres rustre nom p 2.26 1.28 0.63 0.54 +rusé rusé adj m s 3.27 4.80 2.46 2.77 +réséda réséda nom m s 0.10 0.41 0.10 0.34 +résédas réséda nom m p 0.10 0.41 0.00 0.07 +rusée rusé adj f s 3.27 4.80 0.52 0.95 +rusées ruser ver f p 3.12 4.66 0.13 0.00 par:pas; +résulta résulter ver 2.58 9.46 0.11 0.47 ind:pas:3s; +résultaient résulter ver 2.58 9.46 0.00 0.27 ind:imp:3p; +résultais résulter ver 2.58 9.46 0.00 0.07 ind:imp:1s; +résultait résulter ver 2.58 9.46 0.15 1.62 ind:imp:3s; +résultant résulter ver 2.58 9.46 0.42 0.74 par:pre; +résultante résultant adj f s 0.07 0.07 0.06 0.00 +résultantes résultante nom f p 0.01 0.54 0.00 0.14 +résultat résultat nom m s 59.47 38.38 25.15 27.43 +résultats résultat nom m p 59.47 38.38 34.31 10.95 +résulte résulter ver 2.58 9.46 1.19 3.38 imp:pre:2s;ind:pre:3s; +résultent résulter ver 2.58 9.46 0.23 0.54 ind:pre:3p; +résulter résulter ver 2.58 9.46 0.26 0.81 inf; +résulteraient résulter ver 2.58 9.46 0.00 0.34 cnd:pre:3p; +résulterait résulter ver 2.58 9.46 0.13 0.47 cnd:pre:3s; +résulteront résulter ver 2.58 9.46 0.00 0.07 ind:fut:3p; +résulté résulter ver m s 2.58 9.46 0.09 0.54 par:pas; +résultées résulter ver f p 2.58 9.46 0.00 0.14 par:pas; +résuma résumer ver 7.48 14.53 0.01 0.68 ind:pas:3s; +résumai résumer ver 7.48 14.53 0.00 0.07 ind:pas:1s; +résumaient résumer ver 7.48 14.53 0.04 0.61 ind:imp:3p; +résumais résumer ver 7.48 14.53 0.00 0.27 ind:imp:1s; +résumait résumer ver 7.48 14.53 0.26 2.03 ind:imp:3s; +résumant résumer ver 7.48 14.53 0.00 0.68 par:pre; +résume résumer ver 7.48 14.53 3.50 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résument résumer ver 7.48 14.53 0.18 0.68 ind:pre:3p; +résumer résumer ver 7.48 14.53 2.31 3.31 inf; +résumera résumer ver 7.48 14.53 0.04 0.14 ind:fut:3s; +résumerai résumer ver 7.48 14.53 0.02 0.27 ind:fut:1s; +résumerait résumer ver 7.48 14.53 0.04 0.07 cnd:pre:3s; +résumeriez résumer ver 7.48 14.53 0.00 0.07 cnd:pre:2p; +résumez résumer ver 7.48 14.53 0.08 0.00 imp:pre:2p;ind:pre:2p; +résumons résumer ver 7.48 14.53 0.38 0.54 imp:pre:1p;ind:pre:1p; +résumé résumé nom m s 3.95 3.72 3.86 3.24 +résumée résumer ver f s 7.48 14.53 0.07 0.61 par:pas; +résumées résumer ver f p 7.48 14.53 0.02 0.27 par:pas; +résumés résumé nom m p 3.95 3.72 0.09 0.47 +réséquer réséquer ver 0.01 0.07 0.01 0.07 inf; +résurgence résurgence nom f s 0.46 1.08 0.46 0.88 +résurgences résurgence nom f p 0.46 1.08 0.00 0.20 +résurgente résurgent adj f s 0.00 0.07 0.00 0.07 +résurrection résurrection nom f s 4.29 8.11 4.15 7.50 +résurrections résurrection nom f p 4.29 8.11 0.14 0.61 +rusés ruser ver m p 3.12 4.66 0.24 0.14 par:pas; +rut rut nom m s 2.00 2.09 2.00 2.09 +rutabaga rutabaga nom m s 0.26 1.49 0.24 0.74 +rutabagas rutabaga nom m p 0.26 1.49 0.03 0.74 +rétabli rétablir ver m s 12.38 22.36 2.78 3.65 par:pas; +rétablie rétablir ver f s 12.38 22.36 1.55 1.42 par:pas; +rétablies rétablir ver f p 12.38 22.36 0.18 0.41 par:pas; +rétablir rétablir ver 12.38 22.36 5.19 11.15 inf; +rétablira rétablir ver 12.38 22.36 0.49 0.20 ind:fut:3s; +rétablirai rétablir ver 12.38 22.36 0.01 0.07 ind:fut:1s; +rétablirait rétablir ver 12.38 22.36 0.04 0.34 cnd:pre:3s; +rétabliras rétablir ver 12.38 22.36 0.15 0.00 ind:fut:2s; +rétablirent rétablir ver 12.38 22.36 0.00 0.07 ind:pas:3p; +rétablirez rétablir ver 12.38 22.36 0.02 0.00 ind:fut:2p; +rétablirons rétablir ver 12.38 22.36 0.06 0.07 ind:fut:1p; +rétabliront rétablir ver 12.38 22.36 0.01 0.07 ind:fut:3p; +rétablis rétablir ver m p 12.38 22.36 0.52 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rétablissaient rétablir ver 12.38 22.36 0.00 0.34 ind:imp:3p; +rétablissais rétablir ver 12.38 22.36 0.00 0.07 ind:imp:1s; +rétablissait rétablir ver 12.38 22.36 0.01 0.88 ind:imp:3s; +rétablissant rétablir ver 12.38 22.36 0.03 0.54 par:pre; +rétablisse rétablir ver 12.38 22.36 0.26 0.07 sub:pre:1s;sub:pre:3s; +rétablissement rétablissement nom m s 2.08 3.85 2.08 3.65 +rétablissements rétablissement nom m p 2.08 3.85 0.00 0.20 +rétablissent rétablir ver 12.38 22.36 0.06 0.14 ind:pre:3p; +rétablisses rétablir ver 12.38 22.36 0.01 0.00 sub:pre:2s; +rétablissez rétablir ver 12.38 22.36 0.26 0.00 imp:pre:2p;ind:pre:2p; +rétablissons rétablir ver 12.38 22.36 0.16 0.34 imp:pre:1p;ind:pre:1p; +rétablit rétablir ver 12.38 22.36 0.60 1.82 ind:pre:3s;ind:pas:3s; +rétamai rétamer ver 0.56 1.55 0.00 0.07 ind:pas:1s; +rétamait rétamer ver 0.56 1.55 0.00 0.07 ind:imp:3s; +rétame rétamer ver 0.56 1.55 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétamer rétamer ver 0.56 1.55 0.23 0.47 inf; +rétameras rétamer ver 0.56 1.55 0.01 0.00 ind:fut:2s; +rétameur rétameur nom m s 0.05 0.14 0.05 0.14 +rétamé rétamer ver m s 0.56 1.55 0.25 0.68 par:pas; +rétamées rétamer ver f p 0.56 1.55 0.00 0.07 par:pas; +rétamés rétamer ver m p 0.56 1.55 0.03 0.07 par:pas; +rétention rétention nom f s 0.48 0.47 0.48 0.47 +rutherford rutherford nom m s 0.04 0.00 0.04 0.00 +ruèrent ruer ver 3.27 20.81 0.03 1.15 ind:pas:3p; +réticence réticence nom f s 1.10 7.64 0.69 3.24 +réticences réticence nom f p 1.10 7.64 0.41 4.39 +réticent réticent adj m s 1.49 3.92 0.90 1.62 +réticente réticent adj f s 1.49 3.92 0.17 1.35 +réticentes réticent adj f p 1.49 3.92 0.12 0.14 +réticents réticent adj m p 1.49 3.92 0.29 0.81 +réticulaire réticulaire adj m s 0.06 0.00 0.02 0.00 +réticulaires réticulaire adj p 0.06 0.00 0.03 0.00 +réticulation réticulation nom f s 0.00 0.07 0.00 0.07 +réticule réticule nom m s 0.02 0.81 0.02 0.81 +réticulé réticulé adj m s 0.04 0.00 0.01 0.00 +réticulée réticuler ver f s 0.03 0.00 0.03 0.00 par:pas; +réticulée réticulé adj f s 0.04 0.00 0.03 0.00 +réticulum réticulum nom m s 0.04 0.00 0.04 0.00 +rétif rétif adj m s 0.21 4.26 0.04 1.62 +rétifs rétif adj m p 0.21 4.26 0.14 0.41 +rutilaient rutiler ver 0.02 1.76 0.00 0.14 ind:imp:3p; +rutilait rutiler ver 0.02 1.76 0.00 0.47 ind:imp:3s; +rutilances rutilance nom f p 0.00 0.07 0.00 0.07 +rutilant rutilant adj m s 0.42 3.11 0.15 0.95 +rutilante rutilant adj f s 0.42 3.11 0.23 0.81 +rutilantes rutilant adj f p 0.42 3.11 0.04 0.61 +rutilants rutilant adj m p 0.42 3.11 0.01 0.74 +rutile rutiler ver 0.02 1.76 0.01 0.54 ind:pre:3s; +rutilent rutiler ver 0.02 1.76 0.00 0.14 ind:pre:3p; +rutiler rutiler ver 0.02 1.76 0.00 0.14 inf; +rétinal rétinal nom m s 0.01 0.00 0.01 0.00 +rétine rétine nom f s 0.80 2.97 0.69 2.36 +rétines rétine nom f p 0.80 2.97 0.11 0.61 +rétinien rétinien adj m s 0.26 0.14 0.10 0.00 +rétinienne rétinien adj f s 0.26 0.14 0.14 0.07 +rétiniennes rétinien adj f p 0.26 0.14 0.02 0.07 +rétinite rétinite nom f s 0.02 0.07 0.02 0.07 +rétinopathie rétinopathie nom f s 0.02 0.00 0.02 0.00 +rétive rétif adj f s 0.21 4.26 0.02 2.03 +rétives rétif adj f p 0.21 4.26 0.01 0.20 +rétorqua rétorquer ver 0.20 9.32 0.02 2.77 ind:pas:3s; +rétorquai rétorquer ver 0.20 9.32 0.00 0.81 ind:pas:1s; +rétorquais rétorquer ver 0.20 9.32 0.00 0.27 ind:imp:1s; +rétorquait rétorquer ver 0.20 9.32 0.01 1.35 ind:imp:3s; +rétorquant rétorquer ver 0.20 9.32 0.00 0.07 par:pre; +rétorque rétorquer ver 0.20 9.32 0.11 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétorquer rétorquer ver 0.20 9.32 0.01 0.74 inf; +rétorquera rétorquer ver 0.20 9.32 0.01 0.07 ind:fut:3s; +rétorquèrent rétorquer ver 0.20 9.32 0.00 0.07 ind:pas:3p; +rétorqué rétorquer ver m s 0.20 9.32 0.04 0.81 par:pas; +rétorsion rétorsion nom f s 0.03 0.07 0.03 0.07 +rétracta rétracter ver 1.71 5.14 0.01 0.34 ind:pas:3s; +rétractable rétractable adj s 0.07 0.07 0.07 0.07 +rétractais rétracter ver 1.71 5.14 0.00 0.07 ind:imp:1s; +rétractait rétracter ver 1.71 5.14 0.01 0.47 ind:imp:3s; +rétractant rétracter ver 1.71 5.14 0.01 0.47 par:pre; +rétractation rétractation nom f s 0.18 0.34 0.17 0.27 +rétractations rétractation nom f p 0.18 0.34 0.01 0.07 +rétracte rétracter ver 1.71 5.14 0.36 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétractent rétracter ver 1.71 5.14 0.04 0.14 ind:pre:3p; +rétracter rétracter ver 1.71 5.14 0.50 1.15 inf; +rétractera rétracter ver 1.71 5.14 0.04 0.00 ind:fut:3s; +rétracterait rétracter ver 1.71 5.14 0.10 0.00 cnd:pre:3s; +rétracteur rétracteur nom m s 0.08 0.00 0.07 0.00 +rétracteurs rétracteur nom m p 0.08 0.00 0.01 0.00 +rétractez rétracter ver 1.71 5.14 0.06 0.14 imp:pre:2p;ind:pre:2p; +rétractile rétractile adj f s 0.02 0.20 0.01 0.07 +rétractiles rétractile adj f p 0.02 0.20 0.01 0.14 +rétraction rétraction nom f s 0.06 0.20 0.06 0.20 +rétractèrent rétracter ver 1.71 5.14 0.00 0.14 ind:pas:3p; +rétracté rétracter ver m s 1.71 5.14 0.39 0.54 par:pas; +rétractée rétracter ver f s 1.71 5.14 0.13 0.20 par:pas; +rétractées rétracter ver f p 1.71 5.14 0.02 0.00 par:pas; +rétractés rétracter ver m p 1.71 5.14 0.04 0.14 par:pas; +rétreint rétreindre ver 0.01 0.00 0.01 0.00 ind:pre:3s; +rétribuant rétribuer ver 0.35 0.68 0.00 0.14 par:pre; +rétribue rétribuer ver 0.35 0.68 0.02 0.07 ind:pre:1s;ind:pre:3s; +rétribuer rétribuer ver 0.35 0.68 0.14 0.14 inf; +rétribution rétribution nom f s 0.60 0.41 0.60 0.34 +rétributions rétribution nom f p 0.60 0.41 0.00 0.07 +rétribué rétribué adj m s 0.12 0.20 0.12 0.07 +rétribuée rétribuer ver f s 0.35 0.68 0.15 0.14 par:pas; +rétribués rétribuer ver m p 0.35 0.68 0.01 0.07 par:pas; +rétro rétro adj 1.12 0.81 1.12 0.81 +rétroactif rétroactif adj m s 0.29 0.14 0.22 0.14 +rétroaction rétroaction nom f s 0.13 0.07 0.13 0.07 +rétroactive rétroactif adj f s 0.29 0.14 0.07 0.00 +rétroactivement rétroactivement adv 0.05 0.14 0.05 0.14 +rétrocession rétrocession nom f s 0.00 0.07 0.00 0.07 +rétrocède rétrocéder ver 0.01 0.27 0.01 0.07 ind:pre:3s; +rétrocédait rétrocéder ver 0.01 0.27 0.00 0.07 ind:imp:3s; +rétrocéder rétrocéder ver 0.01 0.27 0.00 0.14 inf; +rétrofusée rétrofusée nom f s 0.25 0.00 0.02 0.00 +rétrofusées rétrofusée nom f p 0.25 0.00 0.23 0.00 +rétrograda rétrograder ver 0.97 0.74 0.00 0.07 ind:pas:3s; +rétrogradation rétrogradation nom f s 0.09 0.20 0.07 0.14 +rétrogradations rétrogradation nom f p 0.09 0.20 0.01 0.07 +rétrograde rétrograde adj s 0.57 0.95 0.50 0.81 +rétrogradent rétrograder ver 0.97 0.74 0.00 0.07 ind:pre:3p; +rétrograder rétrograder ver 0.97 0.74 0.16 0.34 inf; +rétrogrades rétrograde adj p 0.57 0.95 0.07 0.14 +rétrogradez rétrograder ver 0.97 0.74 0.03 0.00 imp:pre:2p;ind:pre:2p; +rétrogradé rétrograder ver m s 0.97 0.74 0.55 0.07 par:pas; +rétrogradée rétrograder ver f s 0.97 0.74 0.06 0.00 par:pas; +rétrogradés rétrograder ver m p 0.97 0.74 0.01 0.07 par:pas; +rétrogression rétrogression nom f s 0.01 0.00 0.01 0.00 +rétroprojecteur rétroprojecteur nom m s 0.11 0.07 0.11 0.07 +rétropropulsion rétropropulsion nom f s 0.03 0.00 0.03 0.00 +rétros rétro nom m p 0.92 3.65 0.12 0.27 +rétrospectif rétrospectif adj m s 0.15 2.91 0.00 0.88 +rétrospectifs rétrospectif adj m p 0.15 2.91 0.00 0.14 +rétrospection rétrospection nom f s 0.03 0.00 0.03 0.00 +rétrospective rétrospective nom f s 0.36 0.61 0.36 0.54 +rétrospectivement rétrospectivement adv 0.36 1.08 0.36 1.08 +rétrospectives rétrospectif adj f p 0.15 2.91 0.00 0.27 +rétroversion rétroversion nom f s 0.00 0.07 0.00 0.07 +rétrovirale rétroviral adj f s 0.01 0.00 0.01 0.00 +rétrovirus rétrovirus nom m 1.11 0.14 1.11 0.14 +rétroviseur rétroviseur nom m s 0.93 5.20 0.86 5.07 +rétroviseurs rétroviseur nom m p 0.93 5.20 0.07 0.14 +rétréci rétrécir ver m s 3.51 7.57 1.06 1.22 par:pas; +rétrécie rétrécir ver f s 3.51 7.57 0.13 0.47 par:pas; +rétrécies rétrécir ver f p 3.51 7.57 0.01 0.07 par:pas; +rétrécir rétrécir ver 3.51 7.57 0.53 1.42 inf; +rétrécirent rétrécir ver 3.51 7.57 0.00 0.27 ind:pas:3p; +rétrécis rétrécir ver m p 3.51 7.57 0.06 0.00 imp:pre:2s;par:pas; +rétrécissaient rétrécir ver 3.51 7.57 0.00 0.27 ind:imp:3p; +rétrécissait rétrécir ver 3.51 7.57 0.02 1.08 ind:imp:3s; +rétrécissant rétrécir ver 3.51 7.57 0.02 0.81 par:pre; +rétrécisse rétrécir ver 3.51 7.57 0.04 0.00 sub:pre:3s; +rétrécissement rétrécissement nom m s 0.15 0.88 0.14 0.81 +rétrécissements rétrécissement nom m p 0.15 0.88 0.01 0.07 +rétrécissent rétrécir ver 3.51 7.57 0.31 0.34 ind:pre:3p; +rétrécissez rétrécir ver 3.51 7.57 0.03 0.00 imp:pre:2p; +rétrécit rétrécir ver 3.51 7.57 1.31 1.62 ind:pre:3s;ind:pas:3s; +rué ruer ver m s 3.27 20.81 0.67 1.69 par:pas; +rééchelonnement rééchelonnement nom m s 0.00 0.07 0.00 0.07 +réécoutais réécouter ver 0.63 0.68 0.00 0.14 ind:imp:1s; +réécoutait réécouter ver 0.63 0.68 0.00 0.07 ind:imp:3s; +réécoute réécouter ver 0.63 0.68 0.03 0.07 imp:pre:2s;ind:pre:1s; +réécoutent réécouter ver 0.63 0.68 0.00 0.07 ind:pre:3p; +réécouter réécouter ver 0.63 0.68 0.57 0.34 inf; +réécouterez réécouter ver 0.63 0.68 0.01 0.00 ind:fut:2p; +réécouté réécouter ver m s 0.63 0.68 0.02 0.00 par:pas; +réécrira réécrire ver 2.64 0.81 0.04 0.00 ind:fut:3s; +réécrirai réécrire ver 2.64 0.81 0.01 0.00 ind:fut:1s; +réécrire réécrire ver 2.64 0.81 1.27 0.07 inf; +réécris réécrire ver 2.64 0.81 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +réécrit réécrire ver m s 2.64 0.81 0.67 0.47 ind:pre:3s;par:pas; +réécrite réécrire ver f s 2.64 0.81 0.11 0.07 par:pas; +réécrits réécrire ver m p 2.64 0.81 0.08 0.07 par:pas; +réécriture réécriture nom f s 0.13 0.00 0.11 0.00 +réécritures réécriture nom f p 0.13 0.00 0.02 0.00 +réécrivaient réécrire ver 2.64 0.81 0.01 0.00 ind:imp:3p; +réécrive réécrire ver 2.64 0.81 0.02 0.07 sub:pre:1s;sub:pre:3s; +réécrivez réécrire ver 2.64 0.81 0.05 0.00 imp:pre:2p;ind:pre:2p; +réédifier réédifier ver 0.01 0.14 0.01 0.07 inf; +réédifieras réédifier ver 0.01 0.14 0.00 0.07 ind:fut:2s; +rééditait rééditer ver 0.05 0.95 0.00 0.20 ind:imp:3s; +rééditant rééditer ver 0.05 0.95 0.00 0.07 par:pre; +rééditer rééditer ver 0.05 0.95 0.01 0.34 inf; +réédition réédition nom f s 0.19 0.68 0.18 0.47 +rééditions réédition nom f p 0.19 0.68 0.01 0.20 +réédité rééditer ver m s 0.05 0.95 0.04 0.20 par:pas; +rééditées rééditer ver f p 0.05 0.95 0.00 0.07 par:pas; +réédités rééditer ver m p 0.05 0.95 0.00 0.07 par:pas; +rééducateur rééducateur nom m s 0.00 0.07 0.00 0.07 +rééducation rééducation nom f s 2.48 0.68 2.48 0.68 +rééduquais rééduquer ver 1.66 0.68 0.00 0.07 ind:imp:1s; +rééduquait rééduquer ver 1.66 0.68 0.00 0.07 ind:imp:3s; +rééduque rééduquer ver 1.66 0.68 0.01 0.07 ind:pre:3s; +rééduquer rééduquer ver 1.66 0.68 0.42 0.34 inf;; +rééduqué rééduquer ver m s 1.66 0.68 0.41 0.07 par:pas; +rééduqués rééduquer ver m p 1.66 0.68 0.81 0.07 par:pas; +ruée ruée nom f s 0.86 4.73 0.85 4.66 +ruées ruer ver f p 3.27 20.81 0.01 0.14 par:pas; +réélection réélection nom f s 0.56 0.07 0.56 0.07 +rééligible rééligible adj s 0.03 0.00 0.03 0.00 +réélira réélire ver 0.94 0.27 0.10 0.00 ind:fut:3s; +réélire réélire ver 0.94 0.27 0.17 0.00 inf; +réélisent réélire ver 0.94 0.27 0.02 0.00 ind:pre:3p; +réélisez réélire ver 0.94 0.27 0.06 0.00 imp:pre:2p; +réélu réélire ver m s 0.94 0.27 0.56 0.20 par:pas; +réélus réélire ver m p 0.94 0.27 0.03 0.00 par:pas; +réélut réélire ver 0.94 0.27 0.00 0.07 ind:pas:3s; +réunîmes réunir ver 41.93 56.69 0.00 0.07 ind:pas:1p; +réuni réunir ver m s 41.93 56.69 3.95 4.32 par:pas; +réunie réunir ver f s 41.93 56.69 1.61 3.18 par:pas; +réunies réunir ver f p 41.93 56.69 2.35 4.93 par:pas; +réunification réunification nom f s 1.30 0.14 1.30 0.14 +réunifier réunifier ver 0.17 0.27 0.04 0.00 inf; +réunifié réunifier ver m s 0.17 0.27 0.03 0.00 par:pas; +réunifiée réunifier ver f s 0.17 0.27 0.10 0.20 par:pas; +réunifiées réunifier ver f p 0.17 0.27 0.00 0.07 par:pas; +réunion réunion nom f s 56.82 28.18 49.17 19.12 +réunionnais réunionnais nom m 0.00 0.07 0.00 0.07 +réunionnite réunionnite nom f s 0.01 0.00 0.01 0.00 +réunions réunion nom f p 56.82 28.18 7.66 9.05 +réunir réunir ver 41.93 56.69 9.11 8.45 inf; +réunira réunir ver 41.93 56.69 0.52 0.47 ind:fut:3s; +réunirai réunir ver 41.93 56.69 0.06 0.00 ind:fut:1s; +réuniraient réunir ver 41.93 56.69 0.05 0.27 cnd:pre:3p; +réunirais réunir ver 41.93 56.69 0.12 0.00 cnd:pre:1s;cnd:pre:2s; +réunirait réunir ver 41.93 56.69 0.09 0.41 cnd:pre:3s; +réuniras réunir ver 41.93 56.69 0.00 0.07 ind:fut:2s; +réunirent réunir ver 41.93 56.69 0.06 0.88 ind:pas:3p; +réunirons réunir ver 41.93 56.69 0.14 0.07 ind:fut:1p; +réuniront réunir ver 41.93 56.69 0.15 0.07 ind:fut:3p; +réunis réunir ver m p 41.93 56.69 15.85 18.18 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réunissaient réunir ver 41.93 56.69 0.24 2.91 ind:imp:3p; +réunissais réunir ver 41.93 56.69 0.14 0.07 ind:imp:1s; +réunissait réunir ver 41.93 56.69 0.69 3.72 ind:imp:3s; +réunissant réunir ver 41.93 56.69 0.34 1.62 par:pre; +réunisse réunir ver 41.93 56.69 0.81 0.14 sub:pre:1s;sub:pre:3s; +réunissent réunir ver 41.93 56.69 1.26 1.42 ind:pre:3p; +réunisses réunir ver 41.93 56.69 0.02 0.00 sub:pre:2s; +réunissez réunir ver 41.93 56.69 0.37 0.20 imp:pre:2p;ind:pre:2p; +réunissions réunir ver 41.93 56.69 0.19 0.20 ind:imp:1p; +réunissons réunir ver 41.93 56.69 0.42 0.07 imp:pre:1p;ind:pre:1p; +réunit réunir ver 41.93 56.69 3.39 5.00 ind:pre:3s;ind:pas:3s; +rééquilibrage rééquilibrage nom m s 0.01 0.07 0.01 0.07 +rééquilibrait rééquilibrer ver 0.13 0.20 0.00 0.07 ind:imp:3s; +rééquilibrant rééquilibrer ver 0.13 0.20 0.01 0.00 par:pre; +rééquilibre rééquilibrer ver 0.13 0.20 0.04 0.00 ind:pre:3s; +rééquilibrer rééquilibrer ver 0.13 0.20 0.08 0.07 inf; +rééquilibrera rééquilibrer ver 0.13 0.20 0.00 0.07 ind:fut:3s; +rééquipent rééquiper ver 0.02 0.27 0.01 0.07 ind:pre:3p; +rééquiper rééquiper ver 0.02 0.27 0.01 0.00 inf; +rééquipé rééquiper ver m s 0.02 0.27 0.00 0.07 par:pas; +rééquipée rééquiper ver f s 0.02 0.27 0.00 0.14 par:pas; +rués ruer ver m p 3.27 20.81 0.06 0.54 par:pas; +réussîmes réussir ver 131.88 122.16 0.00 0.20 ind:pas:1p; +réussît réussir ver 131.88 122.16 0.01 0.34 sub:imp:3s; +réussi réussir ver m s 131.88 122.16 78.63 55.74 par:pas; +réussie réussi adj f s 6.11 7.70 2.17 2.77 +réussies réussi adj f p 6.11 7.70 0.61 0.81 +réussir réussir ver 131.88 122.16 20.99 16.55 inf; +réussira réussir ver 131.88 122.16 2.27 0.81 ind:fut:3s; +réussirai réussir ver 131.88 122.16 1.50 0.34 ind:fut:1s; +réussiraient réussir ver 131.88 122.16 0.02 0.14 cnd:pre:3p; +réussirais réussir ver 131.88 122.16 0.64 0.95 cnd:pre:1s;cnd:pre:2s; +réussirait réussir ver 131.88 122.16 0.50 0.74 cnd:pre:3s; +réussiras réussir ver 131.88 122.16 1.51 0.41 ind:fut:2s; +réussirent réussir ver 131.88 122.16 0.04 1.55 ind:pas:3p; +réussirez réussir ver 131.88 122.16 1.37 0.20 ind:fut:2p; +réussiriez réussir ver 131.88 122.16 0.22 0.00 cnd:pre:2p; +réussirions réussir ver 131.88 122.16 0.04 0.14 cnd:pre:1p; +réussirons réussir ver 131.88 122.16 0.93 0.34 ind:fut:1p; +réussiront réussir ver 131.88 122.16 0.57 0.27 ind:fut:3p; +réussis réussir ver m p 131.88 122.16 4.48 5.00 ind:pre:1s;ind:pre:2s;par:pas; +réussissaient réussir ver 131.88 122.16 0.12 1.76 ind:imp:3p; +réussissais réussir ver 131.88 122.16 0.24 2.30 ind:imp:1s;ind:imp:2s; +réussissait réussir ver 131.88 122.16 0.41 6.69 ind:imp:3s; +réussissant réussir ver 131.88 122.16 0.10 1.89 par:pre; +réussisse réussir ver 131.88 122.16 1.88 1.55 sub:pre:1s;sub:pre:3s; +réussissent réussir ver 131.88 122.16 1.85 1.82 ind:pre:3p; +réussisses réussir ver 131.88 122.16 0.47 0.00 sub:pre:2s; +réussissez réussir ver 131.88 122.16 1.25 0.47 imp:pre:2p;ind:pre:2p; +réussissiez réussir ver 131.88 122.16 0.39 0.27 ind:imp:2p; +réussissions réussir ver 131.88 122.16 0.05 0.34 ind:imp:1p; +réussissons réussir ver 131.88 122.16 0.59 0.20 imp:pre:1p;ind:pre:1p; +réussit réussir ver 131.88 122.16 9.70 19.39 ind:pre:3s;ind:pas:3s; +réussite réussite nom f s 9.46 20.74 8.80 18.18 +réussites réussite nom f p 9.46 20.74 0.66 2.57 +réutilisables réutilisable adj p 0.03 0.00 0.03 0.00 +réutilisait réutiliser ver 0.38 0.27 0.02 0.14 ind:imp:3s; +réutilisation réutilisation nom f s 0.15 0.00 0.15 0.00 +réutilise réutiliser ver 0.38 0.27 0.10 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réutiliser réutiliser ver 0.38 0.27 0.20 0.07 inf; +réutilisé réutiliser ver m s 0.38 0.27 0.04 0.00 par:pas; +réutilisés réutiliser ver m p 0.38 0.27 0.01 0.07 par:pas; +réétudier réétudier ver 0.02 0.07 0.02 0.00 inf; +réétudiez réétudier ver 0.02 0.07 0.00 0.07 ind:pre:2p; +réévaluation réévaluation nom f s 0.07 0.07 0.07 0.07 +réévalue réévaluer ver 0.72 0.34 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réévaluer réévaluer ver 0.72 0.34 0.31 0.14 inf; +réévaluera réévaluer ver 0.72 0.34 0.06 0.00 ind:fut:3s; +réévaluez réévaluer ver 0.72 0.34 0.01 0.00 imp:pre:2p; +réévalué réévaluer ver m s 0.72 0.34 0.02 0.00 par:pas; +réévaluée réévaluer ver f s 0.72 0.34 0.01 0.00 par:pas; +réévaluées réévaluer ver f p 0.72 0.34 0.02 0.00 par:pas; +réévalués réévaluer ver m p 0.72 0.34 0.00 0.07 par:pas; +rêva rêver ver 122.96 128.18 0.03 3.04 ind:pas:3s; +rêvai rêver ver 122.96 128.18 0.31 0.54 ind:pas:1s; +rêvaient rêver ver 122.96 128.18 0.52 4.53 ind:imp:3p; +rêvais rêver ver 122.96 128.18 11.00 11.28 ind:imp:1s;ind:imp:2s; +rêvait rêver ver 122.96 128.18 3.59 18.65 ind:imp:3s; +rêvant rêver ver 122.96 128.18 1.26 6.28 par:pre; +rêvassa rêvasser ver 0.92 6.01 0.00 0.27 ind:pas:3s; +rêvassai rêvasser ver 0.92 6.01 0.00 0.07 ind:pas:1s; +rêvassaient rêvasser ver 0.92 6.01 0.00 0.20 ind:imp:3p; +rêvassais rêvasser ver 0.92 6.01 0.20 0.61 ind:imp:1s;ind:imp:2s; +rêvassait rêvasser ver 0.92 6.01 0.02 1.22 ind:imp:3s; +rêvassant rêvasser ver 0.92 6.01 0.04 0.54 par:pre; +rêvasse rêvasser ver 0.92 6.01 0.14 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rêvassent rêvasser ver 0.92 6.01 0.00 0.14 ind:pre:3p; +rêvasser rêvasser ver 0.92 6.01 0.51 1.89 inf; +rêvasserie rêvasserie nom f s 0.02 0.41 0.01 0.07 +rêvasseries rêvasserie nom f p 0.02 0.41 0.01 0.34 +rêvassé rêvasser ver m s 0.92 6.01 0.01 0.00 par:pas; +rêve rêve nom m s 158.75 128.58 99.39 80.20 +réveil réveil nom m s 18.43 28.58 18.16 26.22 +réveilla réveiller ver 175.94 125.41 0.46 11.89 ind:pas:3s; +réveillai réveiller ver 175.94 125.41 0.27 2.70 ind:pas:1s; +réveillaient réveiller ver 175.94 125.41 0.07 2.09 ind:imp:3p; +réveillais réveiller ver 175.94 125.41 0.96 1.89 ind:imp:1s;ind:imp:2s; +réveillait réveiller ver 175.94 125.41 1.21 10.74 ind:imp:3s; +réveillant réveiller ver 175.94 125.41 0.89 3.85 par:pre; +réveille_matin réveille_matin nom m 0.19 0.88 0.19 0.88 +réveille réveiller ver 175.94 125.41 59.67 17.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +réveillent réveiller ver 175.94 125.41 1.75 2.30 ind:pre:3p; +réveiller réveiller ver 175.94 125.41 36.66 28.92 ind:pre:2p;inf; +réveillera réveiller ver 175.94 125.41 4.42 1.35 ind:fut:3s; +réveillerai réveiller ver 175.94 125.41 1.54 0.41 ind:fut:1s; +réveilleraient réveiller ver 175.94 125.41 0.17 0.20 cnd:pre:3p; +réveillerais réveiller ver 175.94 125.41 0.61 0.41 cnd:pre:1s;cnd:pre:2s; +réveillerait réveiller ver 175.94 125.41 0.56 1.22 cnd:pre:3s; +réveilleras réveiller ver 175.94 125.41 1.44 0.47 ind:fut:2s; +réveillerez réveiller ver 175.94 125.41 0.33 0.14 ind:fut:2p; +réveilleriez réveiller ver 175.94 125.41 0.07 0.00 cnd:pre:2p; +réveillerons réveiller ver 175.94 125.41 0.20 0.07 ind:fut:1p; +réveilleront réveiller ver 175.94 125.41 0.38 0.27 ind:fut:3p; +réveilles réveiller ver 175.94 125.41 4.27 0.68 ind:pre:2s;sub:pre:2s; +réveilleurs réveilleur nom m p 0.00 0.07 0.00 0.07 +réveillez réveiller ver 175.94 125.41 11.33 0.95 imp:pre:2p;ind:pre:2p; +réveilliez réveiller ver 175.94 125.41 0.07 0.00 ind:imp:2p; +réveillions réveiller ver 175.94 125.41 0.03 0.27 ind:imp:1p; +réveillâmes réveiller ver 175.94 125.41 0.00 0.07 ind:pas:1p; +réveillon réveillon nom m s 4.64 5.07 4.46 4.73 +réveillonnaient réveillonner ver 0.34 1.22 0.00 0.07 ind:imp:3p; +réveillonnait réveillonner ver 0.34 1.22 0.00 0.14 ind:imp:3s; +réveillonne réveillonner ver 0.34 1.22 0.30 0.07 ind:pre:3s; +réveillonner réveillonner ver 0.34 1.22 0.03 0.68 inf; +réveillonnerons réveillonner ver 0.34 1.22 0.00 0.07 ind:fut:1p; +réveillonneurs réveillonneur nom m p 0.00 0.20 0.00 0.20 +réveillonnâmes réveillonner ver 0.34 1.22 0.00 0.07 ind:pas:1p; +réveillonnons réveillonner ver 0.34 1.22 0.00 0.07 imp:pre:1p; +réveillonnèrent réveillonner ver 0.34 1.22 0.00 0.07 ind:pas:3p; +réveillonné réveillonner ver m s 0.34 1.22 0.01 0.00 par:pas; +réveillons réveiller ver 175.94 125.41 0.38 0.47 imp:pre:1p;ind:pre:1p; +réveillât réveiller ver 175.94 125.41 0.00 0.27 sub:imp:3s; +réveillèrent réveiller ver 175.94 125.41 0.17 1.62 ind:pas:3p; +réveillé réveiller ver m s 175.94 125.41 30.63 18.78 par:pas; +réveillée réveiller ver f s 175.94 125.41 15.63 10.88 par:pas; +réveillées réveiller ver f p 175.94 125.41 0.18 0.68 par:pas; +réveillés réveiller ver m p 175.94 125.41 1.61 4.26 par:pas; +réveils réveil nom m p 18.43 28.58 0.27 2.36 +rêvent rêver ver 122.96 128.18 3.63 4.19 ind:pre:3p; +rêver rêver ver 122.96 128.18 20.80 29.39 inf; +rêvera rêver ver 122.96 128.18 0.08 0.20 ind:fut:3s; +rêverai rêver ver 122.96 128.18 0.12 0.41 ind:fut:1s; +rêveraient rêver ver 122.96 128.18 0.05 0.14 cnd:pre:3p; +rêverait rêver ver 122.96 128.18 0.07 0.20 cnd:pre:3s; +réverbère réverbère nom m s 0.53 10.81 0.42 4.86 +réverbèrent réverbérer ver 0.02 1.28 0.00 0.07 ind:pre:3p; +réverbères réverbère nom m p 0.53 10.81 0.11 5.95 +réverbéra réverbérer ver 0.02 1.28 0.00 0.07 ind:pas:3s; +réverbéraient réverbérer ver 0.02 1.28 0.00 0.27 ind:imp:3p; +réverbérait réverbérer ver 0.02 1.28 0.01 0.20 ind:imp:3s; +réverbérant réverbérer ver 0.02 1.28 0.00 0.14 par:pre; +réverbération réverbération nom f s 0.06 1.69 0.05 1.55 +réverbérations réverbération nom f p 0.06 1.69 0.01 0.14 +réverbérer réverbérer ver 0.02 1.28 0.00 0.20 inf; +réverbéré réverbérer ver m s 0.02 1.28 0.00 0.07 par:pas; +réverbérée réverbérer ver f s 0.02 1.28 0.00 0.20 par:pas; +rêverie rêverie nom f s 0.65 19.46 0.26 12.36 +rêveries rêverie nom f p 0.65 19.46 0.40 7.09 +rêveront rêver ver 122.96 128.18 0.00 0.27 ind:fut:3p; +réversibilité réversibilité nom f s 0.01 0.61 0.01 0.61 +réversible réversible adj s 0.21 0.54 0.17 0.47 +réversibles réversible adj f p 0.21 0.54 0.04 0.07 +réversion réversion nom f s 0.07 0.14 0.07 0.14 +rêves rêve nom m p 158.75 128.58 59.35 48.38 +rêveur rêveur nom m s 2.50 4.66 1.48 3.31 +rêveurs rêveur nom m p 2.50 4.66 0.90 0.88 +rêveuse rêveur adj f s 1.77 15.34 0.61 4.66 +rêveusement rêveusement adv 0.10 3.45 0.10 3.45 +rêveuses rêveur adj f p 1.77 15.34 0.03 0.81 +rêvez rêver ver 122.96 128.18 4.31 0.81 imp:pre:2p;ind:pre:2p; +rêviez rêver ver 122.96 128.18 0.58 0.34 ind:imp:2p; +rêvions rêver ver 122.96 128.18 0.28 1.01 ind:imp:1p; +révisa réviser ver 8.21 3.72 0.00 0.07 ind:pas:3s; +révisai réviser ver 8.21 3.72 0.00 0.14 ind:pas:1s; +révisaient réviser ver 8.21 3.72 0.00 0.14 ind:imp:3p; +révisais réviser ver 8.21 3.72 0.12 0.34 ind:imp:1s;ind:imp:2s; +révisait réviser ver 8.21 3.72 0.06 0.20 ind:imp:3s; +révisant réviser ver 8.21 3.72 0.03 0.14 par:pre; +révise réviser ver 8.21 3.72 1.65 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révisent réviser ver 8.21 3.72 0.02 0.00 ind:pre:3p; +réviser réviser ver 8.21 3.72 4.35 2.03 inf; +réviserais réviser ver 8.21 3.72 0.01 0.00 cnd:pre:1s; +réviserait réviser ver 8.21 3.72 0.01 0.00 cnd:pre:3s; +révises réviser ver 8.21 3.72 0.21 0.07 ind:pre:2s; +réviseur réviseur nom m s 0.01 0.00 0.01 0.00 +révisez réviser ver 8.21 3.72 0.08 0.00 imp:pre:2p; +révisiez réviser ver 8.21 3.72 0.01 0.00 ind:imp:2p; +révision révision nom f s 3.99 3.78 3.09 3.11 +révisionnisme révisionnisme nom m s 0.00 0.07 0.00 0.07 +révisionniste révisionniste adj s 0.09 0.34 0.07 0.27 +révisionnistes révisionniste nom p 0.29 0.20 0.28 0.20 +révisions révision nom f p 3.99 3.78 0.90 0.68 +réviso réviso nom s 0.00 0.07 0.00 0.07 +révisons réviser ver 8.21 3.72 0.19 0.00 imp:pre:1p;ind:pre:1p; +révisé réviser ver m s 8.21 3.72 1.10 0.14 par:pas; +révisée réviser ver f s 8.21 3.72 0.29 0.07 par:pas; +révisées réviser ver f p 8.21 3.72 0.02 0.14 par:pas; +révisés réviser ver m p 8.21 3.72 0.06 0.07 par:pas; +révocable révocable adj f s 0.03 0.41 0.03 0.20 +révocables révocable adj m p 0.03 0.41 0.00 0.20 +révocation révocation nom f s 0.32 0.61 0.32 0.54 +révocations révocation nom f p 0.32 0.61 0.00 0.07 +révolta révolter ver 4.65 10.81 0.10 1.08 ind:pas:3s; +révoltai révolter ver 4.65 10.81 0.00 0.07 ind:pas:1s; +révoltaient révolter ver 4.65 10.81 0.03 0.41 ind:imp:3p; +révoltais révolter ver 4.65 10.81 0.00 0.20 ind:imp:1s; +révoltait révolter ver 4.65 10.81 0.02 2.36 ind:imp:3s; +révoltant révoltant adj m s 0.92 1.96 0.60 0.88 +révoltante révoltant adj f s 0.92 1.96 0.14 0.61 +révoltantes révoltant adj f p 0.92 1.96 0.16 0.34 +révoltants révoltant adj m p 0.92 1.96 0.02 0.14 +révolte révolte nom f s 6.66 25.07 6.35 21.82 +révoltent révolter ver 4.65 10.81 0.44 0.54 ind:pre:3p; +révolter révolter ver 4.65 10.81 1.19 1.08 inf; +révolteront révolter ver 4.65 10.81 0.15 0.00 ind:fut:3p; +révoltes révolte nom f p 6.66 25.07 0.31 3.24 +révoltez révolter ver 4.65 10.81 0.04 0.00 imp:pre:2p;ind:pre:2p; +révoltions révolter ver 4.65 10.81 0.00 0.07 ind:imp:1p; +révoltons révolter ver 4.65 10.81 0.14 0.07 imp:pre:1p;ind:pre:1p; +révoltât révolter ver 4.65 10.81 0.00 0.14 sub:imp:3s; +révoltèrent révolter ver 4.65 10.81 0.24 0.27 ind:pas:3p; +révolté révolter ver m s 4.65 10.81 0.36 1.01 par:pas; +révoltée révolter ver f s 4.65 10.81 0.05 0.88 par:pas; +révoltées révolté adj f p 0.17 2.97 0.01 0.20 +révoltés révolté nom m p 1.08 2.43 0.87 1.35 +révolu révolu adj m s 2.25 5.34 0.60 2.09 +révolue révolu adj f s 2.25 5.34 1.20 1.35 +révolues révolu adj f p 2.25 5.34 0.06 0.27 +révolus révolu adj m p 2.25 5.34 0.40 1.62 +révolution révolution nom f s 25.00 46.08 23.07 41.08 +révolutionna révolutionner ver 0.97 0.88 0.01 0.14 ind:pas:3s; +révolutionnaient révolutionner ver 0.97 0.88 0.00 0.07 ind:imp:3p; +révolutionnaire révolutionnaire adj s 7.30 12.09 4.76 8.78 +révolutionnairement révolutionnairement adv 0.01 0.00 0.01 0.00 +révolutionnaires révolutionnaire adj p 7.30 12.09 2.54 3.31 +révolutionnait révolutionner ver 0.97 0.88 0.00 0.07 ind:imp:3s; +révolutionner révolutionner ver 0.97 0.88 0.55 0.20 inf; +révolutionnera révolutionner ver 0.97 0.88 0.12 0.00 ind:fut:3s; +révolutionnerait révolutionner ver 0.97 0.88 0.02 0.00 cnd:pre:3s; +révolutionneront révolutionner ver 0.97 0.88 0.01 0.00 ind:fut:3p; +révolutionné révolutionner ver m s 0.97 0.88 0.27 0.34 par:pas; +révolutionnées révolutionner ver f p 0.97 0.88 0.00 0.07 par:pas; +révolutions révolution nom f p 25.00 46.08 1.94 5.00 +rêvons rêver ver 122.96 128.18 0.68 0.68 imp:pre:1p;ind:pre:1p; +révoquais révoquer ver 0.82 0.88 0.01 0.00 ind:imp:1s; +révoque révoquer ver 0.82 0.88 0.20 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révoquer révoquer ver 0.82 0.88 0.25 0.14 inf; +révoqué révoquer ver m s 0.82 0.88 0.23 0.20 par:pas; +révoquée révoquer ver f s 0.82 0.88 0.05 0.07 par:pas; +révoquées révoquer ver f p 0.82 0.88 0.00 0.07 par:pas; +révoqués révoquer ver m p 0.82 0.88 0.08 0.27 par:pas; +rêvât rêver ver 122.96 128.18 0.00 0.14 sub:imp:3s; +révèle révéler ver 32.70 60.34 6.32 8.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révèlent révéler ver 32.70 60.34 1.62 2.50 ind:pre:3p; +révèles révéler ver 32.70 60.34 0.14 0.07 ind:pre:2s; +révère révérer ver 0.96 0.95 0.21 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rêvèrent rêver ver 122.96 128.18 0.00 0.34 ind:pas:3p; +révèrent révérer ver 0.96 0.95 0.33 0.07 ind:pre:3p; +rêvé rêver ver m s 122.96 128.18 32.08 20.88 par:pas; +rêvée rêvé adj f s 2.61 3.38 1.62 1.55 +rêvées rêver ver f p 122.96 128.18 0.05 0.07 par:pas; +révéla révéler ver 32.70 60.34 0.66 5.14 ind:pas:3s; +révélai révéler ver 32.70 60.34 0.01 0.41 ind:pas:1s; +révélaient révéler ver 32.70 60.34 0.20 3.18 ind:imp:3p; +révélais révéler ver 32.70 60.34 0.11 0.20 ind:imp:1s;ind:imp:2s; +révélait révéler ver 32.70 60.34 0.65 9.39 ind:imp:3s; +révélant révéler ver 32.70 60.34 0.38 3.11 par:pre; +révélateur révélateur adj m s 1.04 2.91 0.66 1.15 +révélateurs révélateur adj m p 1.04 2.91 0.28 0.41 +révélation révélation nom f s 7.33 20.61 4.66 14.86 +révélations révélation nom f p 7.33 20.61 2.67 5.74 +révélatrice révélateur adj f s 1.04 2.91 0.06 0.95 +révélatrices révélateur adj f p 1.04 2.91 0.04 0.41 +révéler révéler ver 32.70 60.34 10.33 13.31 inf;; +révélera révéler ver 32.70 60.34 0.46 0.34 ind:fut:3s; +révélerai révéler ver 32.70 60.34 0.37 0.07 ind:fut:1s; +révéleraient révéler ver 32.70 60.34 0.06 0.20 cnd:pre:3p; +révélerais révéler ver 32.70 60.34 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +révélerait révéler ver 32.70 60.34 0.14 0.95 cnd:pre:3s; +révéleras révéler ver 32.70 60.34 0.10 0.00 ind:fut:2s; +révélerez révéler ver 32.70 60.34 0.05 0.14 ind:fut:2p; +révélerons révéler ver 32.70 60.34 0.17 0.00 ind:fut:1p; +révéleront révéler ver 32.70 60.34 0.34 0.14 ind:fut:3p; +révélez révéler ver 32.70 60.34 0.38 0.07 imp:pre:2p;ind:pre:2p; +révéliez révéler ver 32.70 60.34 0.06 0.00 ind:imp:2p; +révélons révéler ver 32.70 60.34 0.05 0.00 ind:pre:1p; +révélât révéler ver 32.70 60.34 0.00 0.20 sub:imp:3s; +révulsaient révulser ver 0.44 2.57 0.00 0.27 ind:imp:3p; +révulsait révulser ver 0.44 2.57 0.01 0.41 ind:imp:3s; +révulsant révulser ver 0.44 2.57 0.00 0.07 par:pre; +révulse révulser ver 0.44 2.57 0.35 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révulser révulser ver 0.44 2.57 0.02 0.00 inf; +révulserait révulser ver 0.44 2.57 0.00 0.07 cnd:pre:3s; +révulsif révulsif nom m s 0.00 0.34 0.00 0.34 +révulsifs révulsif adj m p 0.00 0.27 0.00 0.07 +révulsion révulsion nom f s 0.02 0.20 0.02 0.20 +révulsive révulsif adj f s 0.00 0.27 0.00 0.07 +révulsèrent révulser ver 0.44 2.57 0.00 0.14 ind:pas:3p; +révulsé révulser ver m s 0.44 2.57 0.02 0.41 par:pas; +révulsée révulser ver f s 0.44 2.57 0.02 0.20 par:pas; +révulsés révulsé adj m p 0.01 1.08 0.01 0.74 +révélèrent révéler ver 32.70 60.34 0.23 1.22 ind:pas:3p; +révélé révéler ver m s 32.70 60.34 7.86 8.45 par:pas; +révélée révéler ver f s 32.70 60.34 1.22 1.69 par:pas; +révélées révéler ver f p 32.70 60.34 0.38 0.74 par:pas; +révélés révéler ver m p 32.70 60.34 0.36 0.47 par:pas; +révérait révérer ver 0.96 0.95 0.01 0.14 ind:imp:3s; +révérant révérer ver 0.96 0.95 0.09 0.00 par:pre; +révérence révérence nom f s 2.69 6.49 2.45 6.01 +révérences révérence nom f p 2.69 6.49 0.23 0.47 +révérenciel révérenciel adj m s 0.01 0.00 0.01 0.00 +révérencieuse révérencieux adj f s 0.00 0.41 0.00 0.34 +révérencieusement révérencieusement adv 0.00 0.27 0.00 0.27 +révérencieux révérencieux adj m p 0.00 0.41 0.00 0.07 +révérend révérend nom m s 7.64 1.01 7.51 0.95 +révérende révérend adj f s 5.24 0.74 0.90 0.14 +révérendissime révérendissime adj m s 0.00 0.41 0.00 0.41 +révérends révérend nom m p 7.64 1.01 0.14 0.07 +révérer révérer ver 0.96 0.95 0.12 0.07 inf; +révérerait révérer ver 0.96 0.95 0.00 0.07 cnd:pre:3s; +révérons révérer ver 0.96 0.95 0.00 0.07 ind:pre:1p; +révéré révérer ver m s 0.96 0.95 0.07 0.34 par:pas; +révérée révérer ver f s 0.96 0.95 0.14 0.07 par:pas; +rêvés rêver ver m p 122.96 128.18 0.17 0.20 par:pas; +rythmaient rythmer ver 0.47 6.76 0.00 0.34 ind:imp:3p; +rythmait rythmer ver 0.47 6.76 0.00 0.88 ind:imp:3s; +rythmant rythmer ver 0.47 6.76 0.00 0.34 par:pre; +rythme rythme nom m s 20.43 45.95 19.15 42.57 +rythment rythmer ver 0.47 6.76 0.00 0.41 ind:pre:3p; +rythmer rythmer ver 0.47 6.76 0.11 0.81 inf; +rythmera rythmer ver 0.47 6.76 0.00 0.07 ind:fut:3s; +rythmes rythme nom m p 20.43 45.95 1.28 3.38 +rythmique rythmique nom f s 0.26 0.54 0.25 0.47 +rythmiquement rythmiquement adv 0.02 0.20 0.02 0.20 +rythmiques rythmique adj p 0.52 1.15 0.31 0.41 +rythmé rythmé adj m s 0.91 1.96 0.30 0.68 +rythmée rythmé adj f s 0.91 1.96 0.57 0.68 +rythmées rythmé adj f p 0.91 1.96 0.01 0.20 +rythmés rythmé adj m p 0.91 1.96 0.03 0.41 +s_ s_ pro_per 2418.95 5391.62 2418.95 5391.62 +s s pro_per 40.59 13.99 40.59 13.99 +sûmes savoir ver_sup 4516.72 2003.58 0.00 0.61 ind:pas:1p; +sûr sûr adj m s 943.56 412.97 801.64 343.51 +sûre sûr adj f s 943.56 412.97 122.03 56.55 +sûrement sûrement adv 133.67 74.12 133.67 74.12 +sûres sûr adj f p 943.56 412.97 2.47 2.91 +sûreté sûreté nom f s 7.04 10.07 7.01 9.86 +sûretés sûreté nom f p 7.04 10.07 0.03 0.20 +sûrs sûr adj m p 943.56 412.97 17.43 10.00 +sût savoir ver_sup 4516.72 2003.58 0.08 6.62 sub:imp:3s; +sa sa adj_pos 1276.29 3732.43 1276.29 3732.43 +saï saï nom m s 0.01 0.47 0.01 0.47 +sabayon sabayon nom m s 0.30 0.27 0.30 0.07 +sabayons sabayon nom m p 0.30 0.27 0.00 0.20 +sabbat sabbat nom m s 3.28 2.77 3.14 2.77 +sabbatique sabbatique adj s 0.78 0.47 0.76 0.41 +sabbatiques sabbatique adj f p 0.78 0.47 0.02 0.07 +sabbats sabbat nom m p 3.28 2.77 0.14 0.00 +sabelles sabelle nom f p 0.00 0.07 0.00 0.07 +sabin sabin adj s 0.00 0.41 0.00 0.27 +sabines sabine nom f p 0.00 0.14 0.00 0.14 +sabins sabin adj m p 0.00 0.41 0.00 0.14 +sabir sabir nom m s 0.00 0.74 0.00 0.74 +sabla sabler ver 0.28 1.42 0.00 0.20 ind:pas:3s; +sablaient sabler ver 0.28 1.42 0.00 0.07 ind:imp:3p; +sablait sabler ver 0.28 1.42 0.00 0.14 ind:imp:3s; +sablant sabler ver 0.28 1.42 0.01 0.14 par:pre; +sable sable nom m s 25.23 96.55 23.14 87.91 +sabler sabler ver 0.28 1.42 0.16 0.27 inf; +sablera sabler ver 0.28 1.42 0.01 0.07 ind:fut:3s; +sablerais sabler ver 0.28 1.42 0.00 0.07 cnd:pre:1s; +sables sable nom m p 25.23 96.55 2.09 8.65 +sableuse sableux adj f s 0.23 1.01 0.21 0.41 +sableuses sableux adj f p 0.23 1.01 0.00 0.14 +sableux sableux adj m 0.23 1.01 0.03 0.47 +sablez sabler ver 0.28 1.42 0.02 0.07 imp:pre:2p;ind:pre:2p; +sablier sablier nom m s 1.18 3.11 1.03 2.64 +sabliers sablier nom m p 1.18 3.11 0.14 0.47 +sablière sablière nom f s 0.01 0.47 0.01 0.27 +sablières sablière nom f p 0.01 0.47 0.00 0.20 +sablonneuse sablonneux adj f s 0.06 3.92 0.00 1.76 +sablonneuses sablonneux adj f p 0.06 3.92 0.03 0.41 +sablonneux sablonneux adj m 0.06 3.92 0.03 1.76 +sablons sablon nom m p 0.00 0.20 0.00 0.20 +sablé sablé adj m s 0.40 0.68 0.14 0.14 +sablée sabler ver f s 0.28 1.42 0.01 0.14 par:pas; +sablées sablé adj f p 0.40 0.68 0.00 0.07 +sablés sablé adj m p 0.40 0.68 0.25 0.34 +sabord sabord nom m s 0.17 1.89 0.03 1.28 +sabordage sabordage nom m s 0.02 0.20 0.02 0.20 +sabordait saborder ver 0.74 1.42 0.01 0.07 ind:imp:3s; +saborde saborder ver 0.74 1.42 0.07 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sabordent saborder ver 0.74 1.42 0.02 0.00 ind:pre:3p; +saborder saborder ver 0.74 1.42 0.45 0.47 inf; +sabordez saborder ver 0.74 1.42 0.04 0.00 imp:pre:2p;ind:pre:2p; +sabords sabord nom m p 0.17 1.89 0.14 0.61 +sabordé saborder ver m s 0.74 1.42 0.14 0.34 par:pas; +sabordée saborder ver f s 0.74 1.42 0.01 0.07 par:pas; +sabordés saborder ver m p 0.74 1.42 0.01 0.27 par:pas; +sabot sabot nom m s 4.95 24.66 1.79 5.74 +sabotage sabotage nom m s 4.69 2.97 4.32 2.30 +sabotages sabotage nom m p 4.69 2.97 0.37 0.68 +sabotais saboter ver 6.25 2.77 0.02 0.07 ind:imp:1s; +sabotait saboter ver 6.25 2.77 0.04 0.34 ind:imp:3s; +sabotant saboter ver 6.25 2.77 0.03 0.00 par:pre; +sabote saboter ver 6.25 2.77 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sabotent saboter ver 6.25 2.77 0.14 0.14 ind:pre:3p; +saboter saboter ver 6.25 2.77 2.84 1.22 inf; +saboterai saboter ver 6.25 2.77 0.02 0.00 ind:fut:1s; +saboterait saboter ver 6.25 2.77 0.01 0.07 cnd:pre:3s; +saboterie saboterie nom f s 0.00 0.07 0.00 0.07 +saboteront saboter ver 6.25 2.77 0.01 0.00 ind:fut:3p; +saboteur saboteur nom m s 1.15 0.54 0.66 0.14 +saboteurs saboteur nom m p 1.15 0.54 0.48 0.41 +saboteuse saboteur nom f s 1.15 0.54 0.01 0.00 +sabotez saboter ver 6.25 2.77 0.38 0.00 ind:pre:2p; +sabotier sabotier nom m s 0.00 0.61 0.00 0.41 +sabotiers sabotier nom m p 0.00 0.61 0.00 0.20 +sabotons saboter ver 6.25 2.77 0.02 0.07 imp:pre:1p;ind:pre:1p; +sabots sabot nom m p 4.95 24.66 3.16 18.92 +saboté saboter ver m s 6.25 2.77 2.05 0.41 par:pas; +sabotée saboter ver f s 6.25 2.77 0.13 0.14 par:pas; +sabotées saboter ver f p 6.25 2.77 0.01 0.14 par:pas; +sabotés saboter ver m p 6.25 2.77 0.22 0.07 par:pas; +saboule sabouler ver 0.00 0.41 0.00 0.07 ind:pre:3s; +saboulent sabouler ver 0.00 0.41 0.00 0.07 ind:pre:3p; +sabouler sabouler ver 0.00 0.41 0.00 0.07 inf; +saboulé sabouler ver m s 0.00 0.41 0.00 0.07 par:pas; +saboulés sabouler ver m p 0.00 0.41 0.00 0.14 par:pas; +sabra sabra nom m s 0.12 0.00 0.12 0.00 +sabrait sabrer ver 0.39 3.04 0.00 0.54 ind:imp:3s; +sabrant sabrer ver 0.39 3.04 0.01 0.14 par:pre; +sabre sabre nom m s 6.95 17.03 5.44 13.85 +sabrent sabrer ver 0.39 3.04 0.00 0.07 ind:pre:3p; +sabrer sabrer ver 0.39 3.04 0.11 0.41 inf; +sabrerai sabrer ver 0.39 3.04 0.00 0.07 ind:fut:1s; +sabreraient sabrer ver 0.39 3.04 0.00 0.07 cnd:pre:3p; +sabrerais sabrer ver 0.39 3.04 0.01 0.00 cnd:pre:2s; +sabreras sabrer ver 0.39 3.04 0.00 0.07 ind:fut:2s; +sabrerons sabrer ver 0.39 3.04 0.00 0.07 ind:fut:1p; +sabres sabre nom m p 6.95 17.03 1.50 3.18 +sabretache sabretache nom f s 0.00 0.27 0.00 0.20 +sabretaches sabretache nom f p 0.00 0.27 0.00 0.07 +sabreur sabreur nom m s 0.14 0.47 0.00 0.27 +sabreurs sabreur nom m p 0.14 0.47 0.14 0.20 +sabrez sabrer ver 0.39 3.04 0.03 0.00 imp:pre:2p; +sabré sabrer ver m s 0.39 3.04 0.17 0.34 par:pas; +sabrée sabrer ver f s 0.39 3.04 0.00 0.07 par:pas; +sabrées sabrer ver f p 0.39 3.04 0.00 0.20 par:pas; +sabrés sabrer ver m p 0.39 3.04 0.01 0.07 par:pas; +sabéen sabéen adj m s 0.01 0.00 0.01 0.00 +sabéenne sabéenne adj f s 0.05 0.00 0.05 0.00 +sac_poubelle sac_poubelle nom m s 0.24 0.41 0.19 0.34 +sac sac nom m s 124.60 174.26 105.96 125.47 +saccade saccader ver 0.04 1.96 0.01 0.07 ind:pre:3s; +saccader saccader ver 0.04 1.96 0.00 0.07 inf; +saccades saccade nom f p 0.01 6.15 0.01 5.68 +saccadé saccadé adj m s 1.17 5.20 0.21 1.69 +saccadée saccadé adj f s 1.17 5.20 0.44 1.82 +saccadées saccadé adj f p 1.17 5.20 0.01 0.47 +saccadés saccadé adj m p 1.17 5.20 0.51 1.22 +saccage saccager ver 4.00 6.69 0.29 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saccagea saccager ver 4.00 6.69 0.10 0.27 ind:pas:3s; +saccageaient saccager ver 4.00 6.69 0.00 0.14 ind:imp:3p; +saccageais saccager ver 4.00 6.69 0.00 0.07 ind:imp:1s; +saccageait saccager ver 4.00 6.69 0.01 0.27 ind:imp:3s; +saccageant saccager ver 4.00 6.69 0.13 0.27 par:pre; +saccagent saccager ver 4.00 6.69 0.15 0.07 ind:pre:3p; +saccageons saccager ver 4.00 6.69 0.02 0.00 imp:pre:1p; +saccager saccager ver 4.00 6.69 0.82 1.69 inf; +saccageraient saccager ver 4.00 6.69 0.01 0.00 cnd:pre:3p; +saccages saccager ver 4.00 6.69 0.02 0.00 ind:pre:2s; +saccageurs saccageur nom m p 0.00 0.07 0.00 0.07 +saccagez saccager ver 4.00 6.69 0.04 0.00 imp:pre:2p;ind:pre:2p; +saccagiez saccager ver 4.00 6.69 0.01 0.07 ind:imp:2p; +saccagne saccagne nom f s 0.00 0.68 0.00 0.68 +saccagèrent saccager ver 4.00 6.69 0.00 0.14 ind:pas:3p; +saccagé saccager ver m s 4.00 6.69 1.81 1.96 par:pas; +saccagée saccager ver f s 4.00 6.69 0.58 0.68 par:pas; +saccagées saccager ver f p 4.00 6.69 0.00 0.27 par:pas; +saccagés saccager ver m p 4.00 6.69 0.00 0.61 par:pas; +saccharine saccharine nom f s 0.09 0.54 0.09 0.54 +saccharomyces saccharomyces nom m p 0.01 0.00 0.01 0.00 +saccharose saccharose nom m s 0.04 0.00 0.04 0.00 +sacculine sacculine nom f s 0.03 0.00 0.02 0.00 +sacculines sacculine nom f p 0.03 0.00 0.01 0.00 +sacerdoce sacerdoce nom m s 0.77 0.74 0.76 0.74 +sacerdoces sacerdoce nom m p 0.77 0.74 0.01 0.00 +sacerdotal sacerdotal adj m s 0.31 0.81 0.03 0.27 +sacerdotale sacerdotal adj f s 0.31 0.81 0.01 0.27 +sacerdotales sacerdotal adj f p 0.31 0.81 0.14 0.20 +sacerdotaux sacerdotal adj m p 0.31 0.81 0.14 0.07 +sachant savoir ver_sup 4516.72 2003.58 14.39 34.59 par:pre; +sache savoir ver_sup 4516.72 2003.58 54.06 27.09 imp:pre:2s;sub:pre:1s;sub:pre:3s; +sachem sachem nom m s 0.05 0.07 0.05 0.07 +sachent savoir ver_sup 4516.72 2003.58 6.46 3.04 sub:pre:3p; +saches savoir ver_sup 4516.72 2003.58 17.03 3.04 sub:pre:2s; +sachet sachet nom m s 4.38 5.41 2.84 2.09 +sachets sachet nom m p 4.38 5.41 1.53 3.31 +sachez savoir ver_sup 4516.72 2003.58 13.07 5.20 imp:pre:2p; +sachiez savoir ver_sup 4516.72 2003.58 8.97 2.30 sub:pre:2p; +sachions savoir ver_sup 4516.72 2003.58 0.94 0.88 sub:pre:1p; +sachons savoir ver_sup 4516.72 2003.58 0.14 0.27 imp:pre:1p; +sacoche sacoche nom f s 3.16 6.82 2.79 4.80 +sacoches sacoche nom f p 3.16 6.82 0.37 2.03 +sacqua sacquer ver 0.20 0.34 0.00 0.07 ind:pas:3s; +sacquais sacquer ver 0.20 0.34 0.00 0.07 ind:imp:1s; +sacquant sacquer ver 0.20 0.34 0.00 0.07 par:pre; +sacque sacquer ver 0.20 0.34 0.03 0.00 imp:pre:2s;ind:pre:3s; +sacquer sacquer ver 0.20 0.34 0.12 0.14 inf; +sacqué sacquer ver m s 0.20 0.34 0.05 0.00 par:pas; +sacra sacrer ver 25.16 16.82 0.14 0.34 ind:pas:3s; +sacrait sacrer ver 25.16 16.82 0.00 0.20 ind:imp:3s; +sacralisation sacralisation nom f s 0.00 0.07 0.00 0.07 +sacralisés sacraliser ver m p 0.00 0.07 0.00 0.07 par:pas; +sacramentel sacramentel adj m s 0.00 0.47 0.00 0.20 +sacramentelle sacramentel adj f s 0.00 0.47 0.00 0.20 +sacramentelles sacramentel adj f p 0.00 0.47 0.00 0.07 +sacrant sacrer ver 25.16 16.82 0.00 0.41 par:pre; +sacre sacre nom m s 0.75 0.74 0.73 0.61 +sacrebleu sacrebleu ono 0.94 0.61 0.94 0.61 +sacredieu sacredieu ono 0.33 0.00 0.33 0.00 +sacrement sacrement nom m s 2.45 4.93 1.58 2.57 +sacrements sacrement nom m p 2.45 4.93 0.88 2.36 +sacrer sacrer ver 25.16 16.82 0.06 0.00 inf; +sacrera sacrer ver 25.16 16.82 0.01 0.00 ind:fut:3s; +sacrerai sacrer ver 25.16 16.82 0.00 0.07 ind:fut:1s; +sacres sacrer ver 25.16 16.82 0.03 0.00 ind:pre:2s;sub:pre:2s; +sacret sacret nom m s 0.03 0.00 0.03 0.00 +sacrifia sacrifier ver 25.67 20.20 0.30 0.47 ind:pas:3s; +sacrifiaient sacrifier ver 25.67 20.20 0.06 0.61 ind:imp:3p; +sacrifiais sacrifier ver 25.67 20.20 0.04 0.07 ind:imp:1s;ind:imp:2s; +sacrifiait sacrifier ver 25.67 20.20 0.28 1.15 ind:imp:3s; +sacrifiant sacrifier ver 25.67 20.20 0.66 1.01 par:pre; +sacrificateur sacrificateur nom m s 0.02 1.22 0.00 0.88 +sacrificateurs sacrificateur nom m p 0.02 1.22 0.02 0.34 +sacrifice sacrifice nom m s 23.11 26.08 15.90 16.96 +sacrifices sacrifice nom m p 23.11 26.08 7.21 9.12 +sacrificiel sacrificiel adj m s 0.25 0.74 0.21 0.41 +sacrificielle sacrificiel adj f s 0.25 0.74 0.04 0.27 +sacrificiels sacrificiel adj m p 0.25 0.74 0.00 0.07 +sacrifie sacrifier ver 25.67 20.20 2.49 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sacrifient sacrifier ver 25.67 20.20 0.22 0.14 ind:pre:3p; +sacrifier sacrifier ver 25.67 20.20 9.05 7.36 inf; +sacrifiera sacrifier ver 25.67 20.20 0.17 0.27 ind:fut:3s; +sacrifierai sacrifier ver 25.67 20.20 0.43 0.00 ind:fut:1s; +sacrifieraient sacrifier ver 25.67 20.20 0.05 0.00 cnd:pre:3p; +sacrifierais sacrifier ver 25.67 20.20 0.56 0.00 cnd:pre:1s;cnd:pre:2s; +sacrifierait sacrifier ver 25.67 20.20 0.13 0.07 cnd:pre:3s; +sacrifieras sacrifier ver 25.67 20.20 0.02 0.00 ind:fut:2s; +sacrifierez sacrifier ver 25.67 20.20 0.04 0.00 ind:fut:2p; +sacrifieriez sacrifier ver 25.67 20.20 0.07 0.07 cnd:pre:2p; +sacrifierions sacrifier ver 25.67 20.20 0.10 0.00 cnd:pre:1p; +sacrifierons sacrifier ver 25.67 20.20 0.16 0.00 ind:fut:1p; +sacrifies sacrifier ver 25.67 20.20 0.55 0.07 ind:pre:2s; +sacrifiez sacrifier ver 25.67 20.20 0.55 0.14 imp:pre:2p;ind:pre:2p; +sacrifiiez sacrifier ver 25.67 20.20 0.00 0.07 ind:imp:2p; +sacrifions sacrifier ver 25.67 20.20 0.55 0.07 imp:pre:1p;ind:pre:1p; +sacrifiât sacrifier ver 25.67 20.20 0.00 0.07 sub:imp:3s; +sacrifièrent sacrifier ver 25.67 20.20 0.04 0.14 ind:pas:3p; +sacrifié sacrifier ver m s 25.67 20.20 5.98 4.26 par:pas; +sacrifiée sacrifier ver f s 25.67 20.20 1.94 1.22 par:pas; +sacrifiées sacrifier ver f p 25.67 20.20 0.34 0.34 par:pas; +sacrifiés sacrifier ver m p 25.67 20.20 0.89 0.68 par:pas; +sacrilège sacrilège nom m s 1.93 3.24 1.69 2.64 +sacrilèges sacrilège nom m p 1.93 3.24 0.25 0.61 +sacripant sacripant nom m s 0.47 0.47 0.47 0.27 +sacripants sacripant nom m p 0.47 0.47 0.00 0.20 +sacristain sacristain nom m s 1.38 3.92 1.25 3.72 +sacristaine sacristain nom f s 1.38 3.92 0.00 0.07 +sacristaines sacristaine nom f p 0.14 0.00 0.14 0.00 +sacristains sacristain nom m p 1.38 3.92 0.14 0.14 +sacristie sacristie nom f s 1.23 4.39 1.13 3.65 +sacristies sacristie nom f p 1.23 4.39 0.10 0.74 +sacristine sacristine nom f s 0.10 0.07 0.10 0.07 +sacro_iliaque sacro_iliaque adj s 0.03 0.00 0.02 0.00 +sacro_iliaque sacro_iliaque adj f p 0.03 0.00 0.01 0.00 +sacro_saint sacro_saint adj m s 0.65 1.35 0.21 0.68 +sacro_saint sacro_saint adj f s 0.65 1.35 0.41 0.47 +sacro_saint sacro_saint adj f p 0.65 1.35 0.00 0.14 +sacro_saint sacro_saint adj m p 0.65 1.35 0.02 0.07 +sacro sacro adv 0.11 0.68 0.11 0.68 +sacré_coeur sacré_coeur nom m s 0.00 0.20 0.00 0.20 +sacré sacré adj m s 56.88 45.20 29.19 20.47 +sacrédié sacrédié ono 0.00 0.07 0.00 0.07 +sacrée sacré adj f s 56.88 45.20 20.68 16.55 +sacrées sacré adj f p 56.88 45.20 2.11 2.43 +sacrum sacrum nom m s 0.04 0.07 0.04 0.07 +sacrément sacrément adv 6.01 2.16 6.01 2.16 +sacrés sacré adj m p 56.88 45.20 4.90 5.74 +sac_poubelle sac_poubelle nom m p 0.24 0.41 0.06 0.07 +sacs sac nom m p 124.60 174.26 18.64 48.78 +sadducéen sadducéen nom m s 0.00 0.07 0.00 0.07 +sadienne sadien adj f s 0.00 0.07 0.00 0.07 +sadique sadique nom s 2.89 2.30 2.23 1.49 +sadiquement sadiquement adv 0.01 0.20 0.01 0.20 +sadiques sadique nom p 2.89 2.30 0.66 0.81 +sadisme sadisme nom m s 0.36 1.96 0.36 1.89 +sadismes sadisme nom m p 0.36 1.96 0.00 0.07 +sado sado adj m s 0.37 0.00 0.37 0.00 +sadomasochisme sadomasochisme nom m s 0.02 0.00 0.02 0.00 +sadomasochiste sadomasochiste adj s 0.13 0.07 0.13 0.07 +sados sado nom p 0.00 0.07 0.00 0.07 +saducéen saducéen nom m s 0.02 0.14 0.02 0.14 +safari_photo safari_photo nom m s 0.01 0.00 0.01 0.00 +safari safari nom m s 1.77 1.28 1.58 0.88 +safaris safari nom m p 1.77 1.28 0.20 0.41 +safran safran nom m s 0.38 1.89 0.38 1.89 +safrane safraner ver 0.14 0.00 0.14 0.00 ind:pre:3s; +safrané safrané adj m s 0.00 0.14 0.00 0.14 +saga saga nom f s 0.95 1.01 0.73 0.81 +sagace sagace adj s 0.11 1.55 0.09 0.95 +sagaces sagace adj p 0.11 1.55 0.02 0.61 +sagacité sagacité nom f s 0.09 1.42 0.09 1.42 +sagaie sagaie nom f s 0.14 0.41 0.01 0.07 +sagaies sagaie nom f p 0.14 0.41 0.13 0.34 +sagard sagard nom m s 0.00 0.07 0.00 0.07 +sagas saga nom f p 0.95 1.01 0.22 0.20 +sage_femme sage_femme nom f s 1.52 1.22 1.35 1.22 +sage sage adj s 39.09 31.15 31.93 23.45 +sagement sagement adv 2.39 9.46 2.39 9.46 +sage_femme sage_femme nom f p 1.52 1.22 0.17 0.00 +sages sage adj p 39.09 31.15 7.17 7.70 +sagesse sagesse nom f s 13.58 21.55 13.56 21.42 +sagesses sagesse nom f p 13.58 21.55 0.02 0.14 +sagettes sagette nom f p 0.00 0.07 0.00 0.07 +sagittaire sagittaire nom s 0.16 0.14 0.14 0.00 +sagittaires sagittaire nom p 0.16 0.14 0.02 0.14 +sagittal sagittal adj m s 0.07 0.00 0.04 0.00 +sagittale sagittal adj f s 0.07 0.00 0.03 0.00 +sagouin sagouin nom m s 0.35 1.22 0.34 1.08 +sagouins sagouin nom m p 0.35 1.22 0.01 0.14 +sagoutier sagoutier nom m s 0.00 0.14 0.00 0.14 +sagum sagum nom m s 0.00 0.07 0.00 0.07 +saharien saharien adj m s 0.02 1.55 0.01 0.41 +saharienne saharien nom f s 0.62 0.74 0.61 0.41 +sahariennes saharien adj f p 0.02 1.55 0.01 0.41 +sahariens saharien adj m p 0.02 1.55 0.00 0.34 +sahib sahib nom m s 1.63 0.07 1.61 0.07 +sahibs sahib nom m p 1.63 0.07 0.02 0.00 +saie saie nom f s 0.04 0.00 0.04 0.00 +saigna saigner ver 34.86 21.82 0.00 0.27 ind:pas:3s; +saignaient saigner ver 34.86 21.82 0.16 1.08 ind:imp:3p; +saignais saigner ver 34.86 21.82 0.45 0.20 ind:imp:1s;ind:imp:2s; +saignait saigner ver 34.86 21.82 1.66 3.31 ind:imp:3s; +saignant saignant adj m s 1.94 4.32 1.25 1.55 +saignante saignant adj f s 1.94 4.32 0.26 1.08 +saignantes saignant adj f p 1.94 4.32 0.04 0.81 +saignants saignant adj m p 1.94 4.32 0.39 0.88 +saignasse saigner ver 34.86 21.82 0.00 0.07 sub:imp:1s; +saigne saigner ver 34.86 21.82 14.30 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saignement saignement nom m s 2.67 0.54 1.81 0.34 +saignements saignement nom m p 2.67 0.54 0.86 0.20 +saignent saigner ver 34.86 21.82 1.30 0.74 ind:pre:3p; +saigner saigner ver 34.86 21.82 7.63 6.01 inf; +saignera saigner ver 34.86 21.82 0.28 0.14 ind:fut:3s; +saignerai saigner ver 34.86 21.82 0.09 0.00 ind:fut:1s; +saignerais saigner ver 34.86 21.82 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +saignerait saigner ver 34.86 21.82 0.02 0.20 cnd:pre:3s; +saigneras saigner ver 34.86 21.82 0.03 0.00 ind:fut:2s; +saignerez saigner ver 34.86 21.82 0.02 0.00 ind:fut:2p; +saigneront saigner ver 34.86 21.82 0.03 0.07 ind:fut:3p; +saignes saigner ver 34.86 21.82 3.23 0.34 ind:pre:2s; +saigneur saigneur nom m s 0.02 0.07 0.02 0.07 +saignez saigner ver 34.86 21.82 1.50 0.07 imp:pre:2p;ind:pre:2p; +saigniez saigner ver 34.86 21.82 0.07 0.00 ind:imp:2p; +saignons saigner ver 34.86 21.82 0.07 0.00 imp:pre:1p;ind:pre:1p; +saigné saigner ver m s 34.86 21.82 2.87 2.09 par:pas; +saignée saignée nom f s 0.59 2.84 0.56 2.36 +saignées saigner ver f p 34.86 21.82 0.14 0.00 par:pas; +saignés saigner ver m p 34.86 21.82 0.35 0.41 par:pas; +saillaient saillir ver 0.04 6.82 0.00 1.35 ind:imp:3p; +saillait saillir ver 0.04 6.82 0.00 0.81 ind:imp:3s; +saillant saillant adj m s 0.18 10.07 0.07 1.76 +saillante saillant adj f s 0.18 10.07 0.02 0.95 +saillantes saillant adj f p 0.18 10.07 0.05 4.59 +saillants saillant adj m p 0.18 10.07 0.04 2.77 +saille saillir ver 0.04 6.82 0.00 0.14 ind:pre:3s; +saillent saillir ver 0.04 6.82 0.01 0.27 ind:pre:3p; +sailli saillir ver m s 0.04 6.82 0.00 0.27 par:pas; +saillie saillie nom f s 0.68 5.54 0.61 3.24 +saillies saillie nom f p 0.68 5.54 0.06 2.30 +saillir saillir ver 0.04 6.82 0.01 2.64 inf; +saillissent saillir ver 0.04 6.82 0.02 0.07 sub:imp:3p; +saillit saillir ver 0.04 6.82 0.00 0.07 ind:pas:3s; +sain sain adj m s 26.61 18.65 13.89 8.58 +saindoux saindoux nom m 0.68 9.80 0.68 9.80 +saine sain adj f s 26.61 18.65 6.96 6.15 +sainement sainement adv 0.47 0.47 0.47 0.47 +saines sain adj f p 26.61 18.65 1.35 2.09 +sainfoin sainfoin nom m s 0.00 0.81 0.00 0.74 +sainfoins sainfoin nom m p 0.00 0.81 0.00 0.07 +sains sain adj m p 26.61 18.65 4.42 1.82 +saint_bernard saint_bernard nom m 0.17 0.68 0.17 0.68 +saint_crépin saint_crépin nom m 0.05 0.00 0.05 0.00 +saint_cyrien saint_cyrien nom m s 0.00 1.01 0.00 0.68 +saint_cyrien saint_cyrien nom m p 0.00 1.01 0.00 0.34 +saint_esprit saint_esprit nom m 0.20 0.47 0.20 0.47 +saint_frusquin saint_frusquin nom m 0.17 0.74 0.17 0.74 +saint_germain saint_germain nom m 0.00 0.34 0.00 0.34 +saint_glinglin saint_glinglin nom f s 0.01 0.07 0.01 0.07 +saint_guy saint_guy nom m 0.03 0.00 0.03 0.00 +saint_honoré saint_honoré nom m 0.14 0.20 0.14 0.20 +saint_hubert saint_hubert nom f s 0.00 0.07 0.00 0.07 +saint_michel saint_michel nom s 0.00 0.07 0.00 0.07 +saint_nectaire saint_nectaire nom m 0.00 0.14 0.00 0.14 +saint_paulin saint_paulin nom m 0.00 0.34 0.00 0.34 +saint_pierre saint_pierre nom m 0.16 0.20 0.16 0.20 +saint_père saint_père nom m s 0.14 2.16 0.14 0.20 +saint_siège saint_siège nom m s 0.30 1.28 0.30 1.28 +saint_synode saint_synode nom m s 0.00 0.07 0.00 0.07 +saint_émilion saint_émilion nom m 0.00 0.41 0.00 0.41 +saint saint nom s 39.23 63.31 12.37 35.88 +sainte_nitouche sainte_nitouche nom f s 0.46 0.20 0.35 0.20 +sainte_nitouche sainte_nitouche nom f s 0.51 0.14 0.51 0.14 +sainte saint nom f s 39.23 63.31 17.17 11.89 +saintement saintement adv 0.00 0.20 0.00 0.20 +sainte_nitouche sainte_nitouche nom f p 0.46 0.20 0.11 0.00 +saintes saint adj f p 23.22 42.77 2.30 4.39 +sainteté sainteté nom f s 4.74 5.54 4.64 5.41 +saintetés sainteté nom f p 4.74 5.54 0.10 0.14 +saint_père saint_père nom m p 0.14 2.16 0.00 1.96 +saints saint nom m p 39.23 63.31 9.69 14.46 +sais savoir ver_sup 4516.72 2003.58 2492.92 615.27 ind:pre:1s;ind:pre:2s; +saisît saisir ver 36.81 135.74 0.00 0.41 sub:imp:3s; +saisi saisir ver m s 36.81 135.74 10.15 25.54 par:pas; +saisie_arrêt saisie_arrêt nom f s 0.00 0.20 0.00 0.20 +saisie saisie nom f s 2.75 1.62 1.73 1.42 +saisies saisie nom f p 2.75 1.62 1.02 0.20 +saisir saisir ver 36.81 135.74 9.40 33.78 inf; +saisira saisir ver 36.81 135.74 0.40 0.34 ind:fut:3s; +saisirai saisir ver 36.81 135.74 0.17 0.07 ind:fut:1s; +saisirais saisir ver 36.81 135.74 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +saisirait saisir ver 36.81 135.74 0.03 0.47 cnd:pre:3s; +saisiras saisir ver 36.81 135.74 0.03 0.20 ind:fut:2s; +saisirent saisir ver 36.81 135.74 0.14 1.15 ind:pas:3p; +saisirez saisir ver 36.81 135.74 0.03 0.00 ind:fut:2p; +saisirions saisir ver 36.81 135.74 0.00 0.07 cnd:pre:1p; +saisirons saisir ver 36.81 135.74 0.04 0.20 ind:fut:1p; +saisiront saisir ver 36.81 135.74 0.04 0.07 ind:fut:3p; +saisis saisir ver m p 36.81 135.74 8.34 10.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +saisissable saisissable adj s 0.00 0.20 0.00 0.14 +saisissables saisissable adj p 0.00 0.20 0.00 0.07 +saisissaient saisir ver 36.81 135.74 0.01 1.42 ind:imp:3p; +saisissais saisir ver 36.81 135.74 0.16 0.81 ind:imp:1s;ind:imp:2s; +saisissait saisir ver 36.81 135.74 0.05 7.09 ind:imp:3s; +saisissant saisissant adj m s 0.61 5.00 0.33 2.23 +saisissante saisissant adj f s 0.61 5.00 0.11 2.43 +saisissantes saisissant adj f p 0.61 5.00 0.04 0.20 +saisissants saisissant adj m p 0.61 5.00 0.13 0.14 +saisisse saisir ver 36.81 135.74 0.19 0.47 sub:pre:1s;sub:pre:3s; +saisissement saisissement nom m s 0.14 1.96 0.14 1.89 +saisissements saisissement nom m p 0.14 1.96 0.00 0.07 +saisissent saisir ver 36.81 135.74 0.20 1.49 ind:pre:3p; +saisisses saisir ver 36.81 135.74 0.09 0.07 sub:pre:2s; +saisissez saisir ver 36.81 135.74 2.84 0.47 imp:pre:2p;ind:pre:2p; +saisissiez saisir ver 36.81 135.74 0.13 0.00 ind:imp:2p; +saisissions saisir ver 36.81 135.74 0.01 0.20 ind:imp:1p; +saisissons saisir ver 36.81 135.74 0.25 0.14 imp:pre:1p;ind:pre:1p; +saisit saisir ver 36.81 135.74 2.39 36.69 ind:pre:3s;ind:pas:3s; +saison saison nom f s 31.95 49.59 28.72 35.54 +saisonnier saisonnier adj m s 0.55 1.42 0.17 0.54 +saisonniers saisonnier nom m p 0.44 0.27 0.43 0.07 +saisonnière saisonnier adj f s 0.55 1.42 0.16 0.07 +saisonnières saisonnier adj f p 0.55 1.42 0.04 0.41 +saisons saison nom f p 31.95 49.59 3.23 14.05 +sait savoir ver_sup 4516.72 2003.58 401.46 245.00 ind:pre:3s; +saki saki nom m s 0.05 0.00 0.05 0.00 +saké saké nom m s 2.55 0.61 2.55 0.54 +sakés saké nom m p 2.55 0.61 0.00 0.07 +sala saler ver 7.65 6.35 0.10 0.20 ind:pas:3s; +salace salace adj s 0.55 1.28 0.33 0.47 +salaces salace adj p 0.55 1.28 0.21 0.81 +salacité salacité nom f s 0.00 0.20 0.00 0.14 +salacités salacité nom f p 0.00 0.20 0.00 0.07 +salade salade nom f s 21.80 24.26 15.88 15.41 +salader salader ver 0.00 0.07 0.00 0.07 inf; +salades salade nom f p 21.80 24.26 5.92 8.85 +saladier saladier nom m s 0.77 2.43 0.68 2.30 +saladiers saladier nom m p 0.77 2.43 0.09 0.14 +salaient saler ver 7.65 6.35 0.01 0.07 ind:imp:3p; +salaire salaire nom m s 26.43 12.50 22.99 8.92 +salaires salaire nom m p 26.43 12.50 3.44 3.58 +salaison salaison nom f s 0.14 1.22 0.14 0.27 +salaisons salaison nom f p 0.14 1.22 0.00 0.95 +salait saler ver 7.65 6.35 0.01 0.14 ind:imp:3s; +salam salam nom m s 0.03 0.00 0.03 0.00 +salamalec salamalec nom m s 0.32 1.49 0.00 0.41 +salamalecs salamalec nom m p 0.32 1.49 0.32 1.08 +salamandre salamandre nom f s 0.50 1.62 0.48 1.35 +salamandres salamandre nom f p 0.50 1.62 0.01 0.27 +salami salami nom m s 2.06 0.47 2.04 0.34 +salamis salami nom m p 2.06 0.47 0.02 0.14 +salanque salanque nom f s 0.00 0.07 0.00 0.07 +salant salant adj m s 0.07 1.01 0.02 0.20 +salants salant adj m p 0.07 1.01 0.05 0.81 +salariait salarier ver 0.38 0.07 0.00 0.07 ind:imp:3s; +salariale salarial adj f s 0.18 0.00 0.17 0.00 +salariat salariat nom m s 0.00 0.27 0.00 0.27 +salariaux salarial adj m p 0.18 0.00 0.01 0.00 +salarier salarier ver 0.38 0.07 0.14 0.00 inf; +salarié salarié adj m s 0.39 0.20 0.20 0.14 +salariée salarié nom f s 0.52 0.95 0.12 0.07 +salariés salarié nom m p 0.52 0.95 0.28 0.20 +salas saler ver 7.65 6.35 1.37 0.00 ind:pas:2s; +salat salat nom f s 0.03 0.00 0.03 0.00 +salaud salaud nom m s 87.40 37.84 66.74 24.86 +salauds salaud nom m p 87.40 37.84 20.66 12.97 +salazariste salazariste adj s 0.00 0.07 0.00 0.07 +sale sale adj s 146.86 102.03 120.13 74.86 +salement salement adv 2.28 6.01 2.28 6.01 +saler saler ver 7.65 6.35 0.30 0.41 inf; +salera saler ver 7.65 6.35 0.00 0.07 ind:fut:3s; +sales sale adj p 146.86 102.03 26.73 27.16 +saleté saleté nom f s 17.55 12.91 11.96 9.66 +saletés saleté nom f p 17.55 12.91 5.59 3.24 +saleur saleur nom m s 0.00 0.07 0.00 0.07 +salez saler ver 7.65 6.35 0.11 0.14 imp:pre:2p;ind:pre:2p; +sali salir ver m s 17.51 15.95 2.66 2.36 par:pas; +salicaires salicaire nom f p 0.00 0.07 0.00 0.07 +salicine salicine nom f s 0.10 0.00 0.10 0.00 +salicole salicole adj s 0.00 0.07 0.00 0.07 +salicorne salicorne nom f s 0.00 0.07 0.00 0.07 +salie salir ver f s 17.51 15.95 2.12 1.42 par:pas; +salies salir ver f p 17.51 15.95 0.10 0.74 par:pas; +saligaud saligaud nom m s 3.36 1.01 2.46 0.95 +saligauds saligaud nom m p 3.36 1.01 0.90 0.07 +salin salin adj m s 0.31 1.01 0.01 0.61 +saline salin adj f s 0.31 1.01 0.28 0.14 +salines salin nom f p 0.02 2.16 0.02 2.09 +salingue salingue adj m s 0.00 2.03 0.00 1.55 +salingues salingue adj p 0.00 2.03 0.00 0.47 +salinité salinité nom f s 0.06 0.07 0.06 0.07 +salins salin nom m p 0.02 2.16 0.00 0.07 +salique salique adj f s 0.06 0.14 0.06 0.14 +salir salir ver 17.51 15.95 6.81 6.08 inf; +salira salir ver 17.51 15.95 0.06 0.00 ind:fut:3s; +salirai salir ver 17.51 15.95 0.09 0.07 ind:fut:1s; +saliraient salir ver 17.51 15.95 0.14 0.00 cnd:pre:3p; +salirais salir ver 17.51 15.95 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +salirait salir ver 17.51 15.95 0.05 0.07 cnd:pre:3s; +salirez salir ver 17.51 15.95 0.02 0.00 ind:fut:2p; +salis salir ver m p 17.51 15.95 2.59 1.89 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +salissaient salir ver 17.51 15.95 0.03 0.54 ind:imp:3p; +salissait salir ver 17.51 15.95 0.26 0.68 ind:imp:3s; +salissant salissant adj m s 0.65 0.81 0.62 0.54 +salissante salissant adj f s 0.65 0.81 0.03 0.00 +salissantes salissant adj f p 0.65 0.81 0.00 0.14 +salissants salissant adj m p 0.65 0.81 0.00 0.14 +salisse salir ver 17.51 15.95 0.23 0.27 sub:pre:1s;sub:pre:3s; +salissent salir ver 17.51 15.95 0.56 0.41 ind:pre:3p; +salisses salir ver 17.51 15.95 0.01 0.00 sub:pre:2s; +salisseur salisseur adj m s 0.01 0.00 0.01 0.00 +salissez salir ver 17.51 15.95 0.44 0.00 imp:pre:2p;ind:pre:2p; +salissiez salir ver 17.51 15.95 0.10 0.00 ind:imp:2p; +salissure salissure nom f s 0.02 0.74 0.02 0.61 +salissures salissure nom f p 0.02 0.74 0.00 0.14 +salit salir ver 17.51 15.95 1.10 1.01 ind:pre:3s;ind:pas:3s; +salière salière nom f s 0.28 2.03 0.20 1.28 +salières salière nom f p 0.28 2.03 0.09 0.74 +saliva saliver ver 0.61 2.70 0.00 0.14 ind:pas:3s; +salivaient saliver ver 0.61 2.70 0.00 0.14 ind:imp:3p; +salivaire salivaire adj s 0.22 0.07 0.04 0.00 +salivaires salivaire adj f p 0.22 0.07 0.19 0.07 +salivais saliver ver 0.61 2.70 0.00 0.07 ind:imp:1s; +salivait saliver ver 0.61 2.70 0.01 0.47 ind:imp:3s; +salivant saliver ver 0.61 2.70 0.01 0.34 par:pre; +salivation salivation nom f s 0.01 0.07 0.01 0.07 +salive salive nom f s 4.94 18.65 4.91 18.51 +salivent saliver ver 0.61 2.70 0.02 0.07 ind:pre:3p; +saliver saliver ver 0.61 2.70 0.36 1.49 inf; +salives salive nom f p 4.94 18.65 0.03 0.14 +saliveur saliveur nom m s 0.00 0.07 0.00 0.07 +saliveuse saliveux adj f s 0.00 0.34 0.00 0.27 +saliveuses saliveux adj f p 0.00 0.34 0.00 0.07 +salivez saliver ver 0.61 2.70 0.01 0.00 ind:pre:2p; +salivé saliver ver m s 0.61 2.70 0.01 0.00 par:pas; +salle salle nom f s 116.91 215.81 111.10 197.64 +salles salle nom f p 116.91 215.81 5.81 18.18 +salmigondis salmigondis nom m 0.00 0.34 0.00 0.34 +salmis salmis nom m 0.00 0.47 0.00 0.47 +salmonelle salmonelle nom f s 0.45 0.00 0.45 0.00 +salmonellose salmonellose nom f s 0.02 0.00 0.02 0.00 +salmonidé salmonidé nom m s 0.01 0.00 0.01 0.00 +saloir saloir nom m s 0.10 0.74 0.10 0.68 +saloirs saloir nom m p 0.10 0.74 0.00 0.07 +salon salon nom m s 39.24 101.22 37.06 84.12 +salonnard salonnard nom m s 0.00 0.07 0.00 0.07 +salonniers salonnier nom m p 0.00 0.07 0.00 0.07 +salonnières salonnière nom f p 0.14 0.00 0.14 0.00 +salons salon nom m p 39.24 101.22 2.19 17.09 +saloon saloon nom m s 5.08 0.47 4.65 0.34 +saloons saloon nom m p 5.08 0.47 0.42 0.14 +salop salop nom m s 0.82 0.54 0.73 0.41 +salopard salopard nom m s 21.80 4.80 16.41 2.77 +salopards salopard nom m p 21.80 4.80 5.38 2.03 +salope salope nom f s 66.97 20.54 62.54 17.97 +salopent saloper ver 0.66 1.01 0.01 0.14 ind:pre:3p; +saloper saloper ver 0.66 1.01 0.16 0.47 inf; +saloperie saloperie nom f s 25.27 19.46 19.38 13.04 +saloperies saloperie nom f p 25.27 19.46 5.89 6.42 +salopes salope nom f p 66.97 20.54 4.42 2.57 +salopette salopette nom f s 0.59 5.61 0.53 4.73 +salopettes salopette nom f p 0.59 5.61 0.07 0.88 +salopez saloper ver 0.66 1.01 0.01 0.00 ind:pre:2p; +salopiaud salopiaud nom m s 0.16 0.14 0.16 0.00 +salopiauds salopiaud nom m p 0.16 0.14 0.00 0.14 +salopiaux salopiau nom m p 0.00 0.07 0.00 0.07 +salopiot salopiot nom m s 0.11 0.74 0.09 0.20 +salopiots salopiot nom m p 0.11 0.74 0.02 0.54 +salops salop nom m p 0.82 0.54 0.09 0.14 +salopé saloper ver m s 0.66 1.01 0.45 0.20 par:pas; +salopée saloper ver f s 0.66 1.01 0.00 0.14 par:pas; +salopées saloper ver f p 0.66 1.01 0.01 0.07 par:pas; +salopés saloper ver m p 0.66 1.01 0.02 0.00 par:pas; +salpicon salpicon nom m s 0.00 0.14 0.00 0.14 +salpingite salpingite nom f s 0.01 0.00 0.01 0.00 +salpêtre salpêtre nom m s 0.72 2.16 0.72 2.16 +salpêtreux salpêtreux adj m p 0.00 0.07 0.00 0.07 +salpêtrière salpêtrière nom f s 0.00 0.07 0.00 0.07 +salpêtrées salpêtrer ver f p 0.00 0.14 0.00 0.07 par:pas; +salpêtrés salpêtrer ver m p 0.00 0.14 0.00 0.07 par:pas; +sals sal nom m p 0.06 0.00 0.06 0.00 +salsa salsa nom f s 1.43 0.14 1.43 0.14 +salsepareille salsepareille nom f s 0.19 0.00 0.19 0.00 +salsifis salsifis nom m 0.00 1.01 0.00 1.01 +saltimbanque saltimbanque nom s 0.51 2.16 0.33 1.96 +saltimbanques saltimbanque nom p 0.51 2.16 0.17 0.20 +salto salto nom m s 0.08 0.00 0.08 0.00 +salé saler ver m s 7.65 6.35 1.33 0.95 par:pas; +salua saluer ver 45.09 67.64 0.48 10.27 ind:pas:3s; +saluai saluer ver 45.09 67.64 0.10 1.08 ind:pas:1s; +saluaient saluer ver 45.09 67.64 0.13 3.24 ind:imp:3p; +saluais saluer ver 45.09 67.64 0.08 0.41 ind:imp:1s;ind:imp:2s; +saluait saluer ver 45.09 67.64 0.69 5.34 ind:imp:3s; +saluant saluer ver 45.09 67.64 0.41 3.72 par:pre; +salubre salubre adj s 0.29 1.22 0.01 1.22 +salubres salubre adj p 0.29 1.22 0.28 0.00 +salubrité salubrité nom f s 0.04 0.34 0.04 0.34 +salée salé adj f s 4.47 11.01 2.30 4.26 +salue saluer ver 45.09 67.64 17.53 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saluent saluer ver 45.09 67.64 1.56 2.43 ind:pre:3p; +saluer saluer ver 45.09 67.64 11.85 16.49 ind:pre:2p;inf; +saluera saluer ver 45.09 67.64 0.57 0.20 ind:fut:3s; +saluerai saluer ver 45.09 67.64 0.23 0.07 ind:fut:1s; +salueraient saluer ver 45.09 67.64 0.00 0.07 cnd:pre:3p; +saluerais saluer ver 45.09 67.64 0.03 0.00 cnd:pre:1s; +saluerait saluer ver 45.09 67.64 0.03 0.07 cnd:pre:3s; +salueras saluer ver 45.09 67.64 0.30 0.07 ind:fut:2s; +saluerons saluer ver 45.09 67.64 0.02 0.07 ind:fut:1p; +salueront saluer ver 45.09 67.64 0.06 0.07 ind:fut:3p; +salées salé adj f p 4.47 11.01 0.40 1.55 +salues saluer ver 45.09 67.64 0.99 0.07 ind:pre:2s; +salueur salueur nom m s 0.01 0.00 0.01 0.00 +saluez saluer ver 45.09 67.64 4.48 0.68 imp:pre:2p;ind:pre:2p; +saluiez saluer ver 45.09 67.64 0.01 0.07 ind:imp:2p; +saluions saluer ver 45.09 67.64 0.00 0.14 ind:imp:1p; +saluâmes saluer ver 45.09 67.64 0.00 0.20 ind:pas:1p; +saluons saluer ver 45.09 67.64 2.09 0.61 imp:pre:1p;ind:pre:1p; +saluât saluer ver 45.09 67.64 0.00 0.14 sub:imp:3s; +salés salé adj m p 4.47 11.01 0.49 1.82 +salésienne salésien adj f s 0.00 0.07 0.00 0.07 +salut salut ono 203.10 6.55 203.10 6.55 +salutaire salutaire adj s 1.29 2.50 1.28 2.16 +salutairement salutairement adv 0.00 0.07 0.00 0.07 +salutaires salutaire adj p 1.29 2.50 0.01 0.34 +salutation salutation nom f s 5.79 2.36 0.24 0.81 +salutations salutation nom f p 5.79 2.36 5.55 1.55 +saluèrent saluer ver 45.09 67.64 0.00 2.84 ind:pas:3p; +salutiste salutiste nom s 0.01 0.34 0.00 0.07 +salutistes salutiste nom p 0.01 0.34 0.01 0.27 +saluts salut nom m p 277.42 61.82 0.07 2.84 +salué saluer ver m s 45.09 67.64 2.36 5.61 par:pas; +saluée saluer ver f s 45.09 67.64 0.69 1.76 par:pas; +saluées saluer ver f p 45.09 67.64 0.14 0.07 par:pas; +salués saluer ver m p 45.09 67.64 0.25 0.88 par:pas; +salvadorien salvadorien nom m s 0.78 0.00 0.14 0.00 +salvadorienne salvadorien adj f s 0.18 0.00 0.02 0.00 +salvadoriens salvadorien nom m p 0.78 0.00 0.64 0.00 +salvateur salvateur adj m s 0.19 0.95 0.02 0.74 +salvateurs salvateur adj m p 0.19 0.95 0.01 0.00 +salvation salvation nom f s 0.04 0.00 0.04 0.00 +salvatrice salvateur adj f s 0.19 0.95 0.16 0.20 +salve salve nom f s 1.69 7.43 1.29 4.53 +salves salve nom f p 1.69 7.43 0.40 2.91 +salvifique salvifique adj s 0.00 0.07 0.00 0.07 +salzbourgeoises salzbourgeois adj f p 0.00 0.07 0.00 0.07 +samaras samara nom m p 0.00 0.07 0.00 0.07 +samaritain samaritain nom m s 0.50 0.41 0.28 0.07 +samaritaine samaritaine nom f s 0.27 1.08 0.27 1.08 +samaritains samaritain nom m p 0.50 0.41 0.22 0.34 +samba samba nom f s 2.91 7.50 2.91 7.50 +sambenito sambenito nom m s 0.00 0.14 0.00 0.14 +sambo sambo nom m s 0.20 0.00 0.20 0.00 +samedi samedi nom m s 46.53 37.43 44.51 34.26 +samedis samedi nom m p 46.53 37.43 2.03 3.18 +samizdats samizdat nom m p 0.00 0.07 0.00 0.07 +sammy sammy nom m s 0.13 0.00 0.13 0.00 +samoan samoan adj m s 0.15 0.00 0.13 0.00 +samoans samoan adj m p 0.15 0.00 0.02 0.00 +samouraï samouraï nom m s 1.66 2.77 1.30 1.69 +samouraïs samouraï nom m p 1.66 2.77 0.36 1.08 +samovar samovar nom m s 0.45 3.78 0.45 2.23 +samovars samovar nom m p 0.45 3.78 0.00 1.55 +samoyède samoyède nom m s 0.00 0.07 0.00 0.07 +sampan sampan nom m s 0.09 0.07 0.09 0.07 +sampang sampang nom m s 0.14 0.34 0.14 0.27 +sampangs sampang nom m p 0.14 0.34 0.00 0.07 +sample sample nom m s 0.07 0.00 0.07 0.00 +sampler sampler nom m s 0.10 0.00 0.10 0.00 +samurai samurai nom m s 0.68 0.00 0.68 0.00 +san_francisco san_francisco nom s 0.02 0.07 0.02 0.07 +sana sana nom m s 0.53 2.43 0.53 2.30 +sanas sana nom m p 0.53 2.43 0.00 0.14 +sanatorium sanatorium nom m s 1.69 4.39 1.59 4.19 +sanatoriums sanatorium nom m p 1.69 4.39 0.10 0.20 +sancerre sancerre nom m s 0.00 0.20 0.00 0.20 +sanctifiai sanctifier ver 3.82 1.69 0.00 0.07 ind:pas:1s; +sanctifiait sanctifier ver 3.82 1.69 0.00 0.07 ind:imp:3s; +sanctifiante sanctifiant adj f s 0.00 0.14 0.00 0.14 +sanctification sanctification nom f s 0.01 0.07 0.01 0.07 +sanctificatrice sanctificateur adj f s 0.00 0.07 0.00 0.07 +sanctifie sanctifier ver 3.82 1.69 0.25 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +sanctifier sanctifier ver 3.82 1.69 0.48 0.20 inf; +sanctifiez sanctifier ver 3.82 1.69 0.00 0.07 imp:pre:2p; +sanctifié sanctifier ver m s 3.82 1.69 2.87 0.81 par:pas; +sanctifiée sanctifier ver f s 3.82 1.69 0.06 0.14 par:pas; +sanctifiées sanctifier ver f p 3.82 1.69 0.01 0.07 par:pas; +sanctifiés sanctifier ver m p 3.82 1.69 0.14 0.07 par:pas; +sanction sanction nom f s 2.35 4.86 1.23 2.30 +sanctionnaient sanctionner ver 1.01 2.91 0.00 0.14 ind:imp:3p; +sanctionnait sanctionner ver 1.01 2.91 0.00 0.14 ind:imp:3s; +sanctionnant sanctionner ver 1.01 2.91 0.01 0.07 par:pre; +sanctionne sanctionner ver 1.01 2.91 0.13 0.14 ind:pre:3s; +sanctionner sanctionner ver 1.01 2.91 0.15 0.74 inf; +sanctionnera sanctionner ver 1.01 2.91 0.03 0.00 ind:fut:3s; +sanctionnerait sanctionner ver 1.01 2.91 0.00 0.14 cnd:pre:3s; +sanctionnez sanctionner ver 1.01 2.91 0.01 0.00 ind:pre:2p; +sanctionnions sanctionner ver 1.01 2.91 0.00 0.07 ind:imp:1p; +sanctionnèrent sanctionner ver 1.01 2.91 0.00 0.07 ind:pas:3p; +sanctionné sanctionner ver m s 1.01 2.91 0.35 0.34 par:pas; +sanctionnée sanctionner ver f s 1.01 2.91 0.15 0.68 par:pas; +sanctionnées sanctionner ver f p 1.01 2.91 0.15 0.20 par:pas; +sanctionnés sanctionner ver m p 1.01 2.91 0.04 0.20 par:pas; +sanctions sanction nom f p 2.35 4.86 1.12 2.57 +sanctuaire sanctuaire nom m s 4.34 6.42 4.26 5.20 +sanctuaires sanctuaire nom m p 4.34 6.42 0.08 1.22 +sanctus sanctus nom m 0.23 0.68 0.23 0.68 +sandale sandale nom f s 3.21 8.72 0.22 0.74 +sandales sandale nom f p 3.21 8.72 2.99 7.97 +sandalettes sandalette nom f p 0.01 0.61 0.01 0.61 +sandalier sandalier nom m s 0.00 0.07 0.00 0.07 +sanderling sanderling nom m s 0.03 0.00 0.03 0.00 +sandiniste sandiniste adj m s 0.02 0.00 0.02 0.00 +sandinistes sandiniste nom p 0.11 0.00 0.11 0.00 +sandjak sandjak nom m s 0.00 0.20 0.00 0.20 +sandow sandow nom m s 0.00 0.27 0.00 0.07 +sandows sandow nom m p 0.00 0.27 0.00 0.20 +sandre sandre nom m s 0.02 0.07 0.01 0.00 +sandres sandre nom m p 0.02 0.07 0.01 0.07 +sandwich sandwich nom m s 0.00 9.93 0.00 8.18 +sandwiches sandwiche nom m p 0.00 4.93 0.00 4.93 +sandwichs sandwich nom m p 0.00 9.93 0.00 1.76 +sang_froid sang_froid nom m 5.41 9.26 5.41 9.26 +sang sang nom m s 304.75 207.30 304.30 205.20 +sangla sangler ver 0.86 6.49 0.00 0.07 ind:pas:3s; +sanglai sangler ver 0.86 6.49 0.00 0.07 ind:pas:1s; +sanglait sangler ver 0.86 6.49 0.00 0.20 ind:imp:3s; +sanglant sanglant adj m s 6.69 20.00 3.23 6.01 +sanglante sanglant adj f s 6.69 20.00 1.69 6.22 +sanglantes sanglant adj f p 6.69 20.00 0.86 3.58 +sanglants sanglant adj m p 6.69 20.00 0.91 4.19 +sangle sangle nom f s 1.68 3.78 1.08 1.55 +sanglent sangler ver 0.86 6.49 0.00 0.07 ind:pre:3p; +sangler sangler ver 0.86 6.49 0.07 0.07 inf; +sangles sangle nom f p 1.68 3.78 0.59 2.23 +sanglez sangler ver 0.86 6.49 0.04 0.00 imp:pre:2p; +sanglier sanglier nom m s 6.05 8.78 4.59 5.34 +sangliers sanglier nom m p 6.05 8.78 1.47 3.45 +sanglot sanglot nom m s 3.79 29.12 0.30 9.59 +sanglota sangloter ver 2.27 14.66 0.04 1.69 ind:pas:3s; +sanglotai sangloter ver 2.27 14.66 0.00 0.34 ind:pas:1s; +sanglotaient sangloter ver 2.27 14.66 0.00 0.14 ind:imp:3p; +sanglotais sangloter ver 2.27 14.66 0.05 0.27 ind:imp:1s;ind:imp:2s; +sanglotait sangloter ver 2.27 14.66 0.28 3.45 ind:imp:3s; +sanglotant sangloter ver 2.27 14.66 0.05 2.03 par:pre; +sanglotante sanglotant adj f s 0.01 0.95 0.00 0.47 +sanglotants sanglotant adj m p 0.01 0.95 0.00 0.07 +sanglote sangloter ver 2.27 14.66 1.06 2.09 ind:pre:1s;ind:pre:3s; +sanglotent sangloter ver 2.27 14.66 0.32 0.27 ind:pre:3p; +sangloter sangloter ver 2.27 14.66 0.31 3.45 inf; +sanglotez sangloter ver 2.27 14.66 0.05 0.00 imp:pre:2p;ind:pre:2p; +sanglotâmes sangloter ver 2.27 14.66 0.00 0.07 ind:pas:1p; +sanglots sanglot nom m p 3.79 29.12 3.49 19.53 +sangloté sangloter ver m s 2.27 14.66 0.11 0.81 par:pas; +sanglotés sangloter ver m p 2.27 14.66 0.00 0.07 par:pas; +sanglé sangler ver m s 0.86 6.49 0.04 2.43 par:pas; +sanglée sangler ver f s 0.86 6.49 0.04 0.81 par:pas; +sanglées sangler ver f p 0.86 6.49 0.00 0.20 par:pas; +sanglés sangler ver m p 0.86 6.49 0.00 1.35 par:pas; +sangria sangria nom f s 0.72 0.34 0.72 0.34 +sangs sang nom m p 304.75 207.30 0.45 2.09 +sangsue sangsue nom f s 2.90 1.28 1.05 0.54 +sangsues sangsue nom f p 2.90 1.28 1.85 0.74 +sanguin sanguin adj m s 8.84 3.78 4.33 2.30 +sanguinaire sanguinaire adj s 3.06 2.30 2.14 1.82 +sanguinaires sanguinaire adj p 3.06 2.30 0.91 0.47 +sanguine sanguin adj f s 8.84 3.78 1.81 0.95 +sanguines sanguin adj f p 8.84 3.78 0.27 0.00 +sanguinolent sanguinolent adj m s 0.28 3.18 0.05 0.95 +sanguinolente sanguinolent adj f s 0.28 3.18 0.07 1.22 +sanguinolentes sanguinolent adj f p 0.28 3.18 0.01 0.54 +sanguinolents sanguinolent adj m p 0.28 3.18 0.15 0.47 +sanguins sanguin adj m p 8.84 3.78 2.44 0.54 +sanhédrin sanhédrin nom m s 0.00 0.41 0.00 0.41 +sanie sanie nom f s 0.01 1.08 0.00 0.61 +sanies sanie nom f p 0.01 1.08 0.01 0.47 +sanieuses sanieux adj f p 0.00 0.14 0.00 0.07 +sanieux sanieux adj m 0.00 0.14 0.00 0.07 +sanitaire sanitaire adj s 3.52 1.55 2.42 1.08 +sanitaires sanitaire adj p 3.52 1.55 1.11 0.47 +sans_coeur sans_coeur adj 0.01 0.07 0.01 0.07 +sans_culotte sans_culotte nom m s 0.16 0.41 0.16 0.00 +sans_culotte sans_culotte nom m p 0.16 0.41 0.00 0.41 +sans_culottide sans_culottide nom f p 0.00 0.07 0.00 0.07 +sans_façon sans_façon nom m 0.10 0.14 0.10 0.14 +sans_faute sans_faute nom m 0.05 0.00 0.05 0.00 +sans_fil sans_fil nom m 0.21 0.20 0.21 0.20 +sans_filiste sans_filiste nom m s 0.00 0.74 0.00 0.61 +sans_filiste sans_filiste nom m p 0.00 0.74 0.00 0.14 +sans_grade sans_grade nom m 0.05 0.14 0.05 0.14 +sans_pareil sans_pareil nom m 0.00 5.20 0.00 5.20 +sans sans pre 1003.44 2224.12 1003.44 2224.12 +sanscrit sanscrit adj m s 0.05 0.20 0.04 0.14 +sanscrite sanscrit adj f s 0.05 0.20 0.01 0.00 +sanscrits sanscrit adj m p 0.05 0.20 0.00 0.07 +sanskrit sanskrit nom m s 0.11 0.14 0.11 0.14 +sansonnet sansonnet nom m s 0.32 0.47 0.32 0.41 +sansonnets sansonnet nom m p 0.32 0.47 0.00 0.07 +santal santal nom m s 0.15 1.08 0.15 0.81 +santals santal nom m p 0.15 1.08 0.00 0.27 +santiag santiag nom f s 0.08 1.49 0.01 0.07 +santiags santiag nom m p 0.08 1.49 0.07 1.42 +santoche santoche nom f s 0.00 0.07 0.00 0.07 +santon santon nom m s 0.03 0.34 0.03 0.00 +santons santon nom m p 0.03 0.34 0.00 0.34 +santé santé nom f s 88.69 52.70 88.58 52.43 +santés santé nom f p 88.69 52.70 0.11 0.27 +saoudien saoudien adj m s 0.60 0.14 0.37 0.00 +saoudienne saoudien adj f s 0.60 0.14 0.07 0.00 +saoudiennes saoudienne nom f p 0.05 0.00 0.03 0.00 +saoudiens saoudien nom m p 0.47 0.00 0.45 0.00 +saoudite saoudite adj f s 0.05 0.07 0.05 0.07 +saoul saoul adj m s 11.97 13.18 7.81 9.46 +saoula saouler ver 6.84 8.38 0.01 0.07 ind:pas:3s; +saoulaient saouler ver 6.84 8.38 0.01 0.27 ind:imp:3p; +saoulais saouler ver 6.84 8.38 0.01 0.14 ind:imp:1s; +saoulait saouler ver 6.84 8.38 0.11 0.88 ind:imp:3s; +saoulant saouler ver 6.84 8.38 0.04 0.07 par:pre; +saoulard saoulard nom m s 0.17 0.07 0.17 0.07 +saoule saoul adj f s 11.97 13.18 2.87 2.09 +saoulent saouler ver 6.84 8.38 0.30 0.07 ind:pre:3p; +saouler saouler ver 6.84 8.38 2.21 1.82 inf; +saoulerait saouler ver 6.84 8.38 0.01 0.14 cnd:pre:3s; +saouleras saouler ver 6.84 8.38 0.00 0.07 ind:fut:2s; +saoulerez saouler ver 6.84 8.38 0.02 0.00 ind:fut:2p; +saoulerie saoulerie nom f s 0.03 0.47 0.03 0.27 +saouleries saoulerie nom f p 0.03 0.47 0.00 0.20 +saoules saouler ver 6.84 8.38 0.83 0.07 ind:pre:2s; +saoulez saouler ver 6.84 8.38 0.14 0.20 imp:pre:2p;ind:pre:2p; +saoulions saouler ver 6.84 8.38 0.00 0.07 ind:imp:1p; +saouls saoul adj m p 11.97 13.18 1.24 1.55 +saoulé saouler ver m s 6.84 8.38 0.89 1.89 par:pas; +saoulée saouler ver f s 6.84 8.38 0.30 0.41 par:pas; +saoulées saouler ver f p 6.84 8.38 0.01 0.00 par:pas; +saoulés saouler ver m p 6.84 8.38 0.07 0.68 par:pas; +sapaient saper ver 3.23 7.91 0.00 0.20 ind:imp:3p; +sapait saper ver 3.23 7.91 0.03 0.41 ind:imp:3s; +sapajou sapajou nom m s 0.01 0.47 0.01 0.41 +sapajous sapajou nom m p 0.01 0.47 0.00 0.07 +sape saper ver 3.23 7.91 0.35 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sapement sapement nom m s 0.00 0.95 0.00 0.61 +sapements sapement nom m p 0.00 0.95 0.00 0.34 +sapent saper ver 3.23 7.91 0.08 0.27 ind:pre:3p; +saper saper ver 3.23 7.91 1.13 1.22 inf; +saperai saper ver 3.23 7.91 0.02 0.00 ind:fut:1s; +saperlipopette saperlipopette ono 0.62 0.07 0.62 0.07 +saperlotte saperlotte nom m s 0.07 0.14 0.07 0.14 +sapes sape nom f p 0.59 5.95 0.48 1.82 +sapeur_pompier sapeur_pompier nom m s 0.11 0.61 0.07 0.00 +sapeur sapeur nom m s 0.78 4.80 0.56 1.69 +sapeur_pompier sapeur_pompier nom m p 0.11 0.61 0.04 0.61 +sapeurs sapeur nom m p 0.78 4.80 0.21 3.11 +sapez saper ver 3.23 7.91 0.08 0.00 ind:pre:2p; +saphir saphir nom m s 0.64 1.96 0.34 1.22 +saphirs saphir nom m p 0.64 1.96 0.30 0.74 +saphisme saphisme nom m s 0.00 0.07 0.00 0.07 +saphène saphène adj f s 0.07 0.00 0.07 0.00 +sapide sapide adj m s 0.00 0.20 0.00 0.14 +sapides sapide adj p 0.00 0.20 0.00 0.07 +sapidité sapidité nom f s 0.00 0.07 0.00 0.07 +sapien sapiens adj m s 0.64 0.68 0.09 0.00 +sapience sapience nom f s 0.00 0.07 0.00 0.07 +sapiens sapiens adj m p 0.64 0.68 0.56 0.68 +sapin sapin nom m s 6.91 26.28 5.95 9.86 +sapines sapine nom f p 0.00 0.27 0.00 0.27 +sapinette sapinette nom f s 0.00 0.20 0.00 0.07 +sapinettes sapinette nom f p 0.00 0.20 0.00 0.14 +sapinière sapinière nom f s 0.00 1.42 0.00 0.81 +sapinières sapinière nom f p 0.00 1.42 0.00 0.61 +sapins sapin nom m p 6.91 26.28 0.95 16.42 +saponaires saponaire nom f p 0.00 0.07 0.00 0.07 +saponification saponification nom f s 0.03 0.14 0.03 0.14 +saponifiées saponifier ver f p 0.00 0.07 0.00 0.07 par:pas; +saponite saponite nom f s 0.02 0.27 0.02 0.27 +sapotille sapotille nom f s 0.10 0.00 0.10 0.00 +sapotillier sapotillier nom m s 0.00 0.27 0.00 0.27 +sapristi sapristi ono 1.69 0.68 1.69 0.68 +sapé saper ver m s 3.23 7.91 0.99 2.84 par:pas; +sapée saper ver f s 3.23 7.91 0.20 1.55 par:pas; +sapées saper ver f p 3.23 7.91 0.02 0.14 par:pas; +sapés saper ver m p 3.23 7.91 0.10 0.61 par:pas; +saque saquer ver 1.37 1.08 0.03 0.07 ind:pre:1s; +saquent saquer ver 1.37 1.08 0.14 0.00 ind:pre:3p; +saquer saquer ver 1.37 1.08 0.87 0.68 inf; +saqué saquer ver m s 1.37 1.08 0.20 0.14 par:pas; +saquée saquer ver f s 1.37 1.08 0.01 0.07 par:pas; +saqués saquer ver m p 1.37 1.08 0.12 0.14 par:pas; +sar sar nom m s 0.00 0.07 0.00 0.07 +sara sara nom f s 0.10 0.00 0.10 0.00 +sarabande sarabande nom f s 0.31 1.89 0.21 1.69 +sarabandes sarabande nom f p 0.31 1.89 0.10 0.20 +sarbacane sarbacane nom f s 0.21 0.95 0.14 0.47 +sarbacanes sarbacane nom f p 0.21 0.95 0.07 0.47 +sarcasme sarcasme nom m s 2.37 4.66 1.13 1.35 +sarcasmes sarcasme nom m p 2.37 4.66 1.24 3.31 +sarcastique sarcastique adj s 2.23 2.84 2.05 2.43 +sarcastiquement sarcastiquement adv 0.00 0.20 0.00 0.20 +sarcastiques sarcastique adj p 2.23 2.84 0.18 0.41 +sarcelle sarcelle nom f s 0.16 0.81 0.16 0.27 +sarcelles sarcelle nom f p 0.16 0.81 0.00 0.54 +sarcine sarcine nom f s 0.01 0.00 0.01 0.00 +sarclage sarclage nom m s 0.00 0.07 0.00 0.07 +sarclait sarcler ver 0.13 1.89 0.01 0.47 ind:imp:3s; +sarclant sarcler ver 0.13 1.89 0.00 0.27 par:pre; +sarcle sarcler ver 0.13 1.89 0.01 0.07 ind:pre:3s; +sarclent sarcler ver 0.13 1.89 0.00 0.07 ind:pre:3p; +sarcler sarcler ver 0.13 1.89 0.10 0.95 inf; +sarclette sarclette nom f s 0.01 0.00 0.01 0.00 +sarcleuse sarcleur nom f s 0.06 0.00 0.06 0.00 +sarcloir sarcloir nom m s 0.00 0.14 0.00 0.14 +sarclées sarcler ver f p 0.13 1.89 0.01 0.07 par:pas; +sarcoïdose sarcoïdose nom f s 0.10 0.00 0.10 0.00 +sarcome sarcome nom m s 0.34 0.00 0.34 0.00 +sarcophage sarcophage nom m s 2.43 1.28 2.34 0.95 +sarcophages sarcophage nom m p 2.43 1.28 0.09 0.34 +sardanapalesques sardanapalesque adj m p 0.00 0.07 0.00 0.07 +sardanes sardane nom f p 0.00 0.07 0.00 0.07 +sarde sarde adj m s 0.31 0.00 0.31 0.00 +sardinaient sardiner ver 0.00 0.07 0.00 0.07 ind:imp:3p; +sardine sardine nom f s 3.88 8.38 0.84 1.28 +sardines sardine nom f p 3.88 8.38 3.04 7.09 +sardiniers sardinier nom m p 0.01 0.07 0.01 0.07 +sardoine sardoine nom f s 0.00 0.07 0.00 0.07 +sardonique sardonique adj s 0.10 1.01 0.10 0.95 +sardoniquement sardoniquement adv 0.00 0.07 0.00 0.07 +sardoniques sardonique adj m p 0.10 1.01 0.00 0.07 +sargasse sargasse nom f s 0.00 0.14 0.00 0.07 +sargasses sargasse nom f p 0.00 0.14 0.00 0.07 +sari sari nom m s 0.98 0.20 0.72 0.14 +sarigue sarigue nom f s 0.00 0.07 0.00 0.07 +sarin sarin adj f s 0.25 0.00 0.25 0.00 +saris sari nom m p 0.98 0.20 0.26 0.07 +sarment sarment nom m s 0.11 1.28 0.11 0.27 +sarments sarment nom m p 0.11 1.28 0.00 1.01 +sarong sarong nom m s 0.19 0.00 0.19 0.00 +saroual saroual nom m s 0.01 0.07 0.01 0.07 +sarouel sarouel nom m s 0.00 0.14 0.00 0.14 +sarracénie sarracénie nom f s 0.01 0.00 0.01 0.00 +sarrasin sarrasin nom m s 0.20 0.68 0.20 0.41 +sarrasine sarrasin adj f s 0.30 0.74 0.16 0.20 +sarrasines sarrasin adj f p 0.30 0.74 0.00 0.07 +sarrasins sarrasin adj m p 0.30 0.74 0.00 0.20 +sarrau sarrau nom m s 0.14 1.42 0.04 1.28 +sarraus sarrau nom m p 0.14 1.42 0.10 0.14 +sarreau sarreau nom m s 0.00 0.20 0.00 0.20 +sarriette sarriette nom f s 0.01 0.07 0.01 0.07 +sarrois sarrois adj m 0.00 0.20 0.00 0.14 +sarroise sarrois adj f s 0.00 0.20 0.00 0.07 +sarrussophone sarrussophone nom m s 0.00 0.07 0.00 0.07 +sas sas nom m 3.26 0.74 3.26 0.74 +sashimi sashimi nom m s 0.23 0.00 0.23 0.00 +sassafras sassafras nom m 0.07 0.00 0.07 0.00 +sassanide sassanide adj f s 0.00 0.20 0.00 0.14 +sassanides sassanide adj p 0.00 0.20 0.00 0.07 +sasse sasser ver 0.14 0.07 0.14 0.07 ind:pre:3s; +sasseur sasseur nom m s 0.54 0.00 0.54 0.00 +satan satan nom m s 0.42 0.14 0.42 0.14 +satana sataner ver 1.12 0.81 0.01 0.34 ind:pas:3s; +satanaient sataner ver 1.12 0.81 0.00 0.07 ind:imp:3p; +satanas sataner ver 1.12 0.81 0.64 0.14 ind:pas:2s; +sataner sataner ver 1.12 0.81 0.00 0.20 inf; +satanique satanique adj s 3.11 1.49 1.80 0.95 +sataniques satanique adj p 3.11 1.49 1.31 0.54 +sataniser sataniser ver 0.12 0.00 0.12 0.00 inf; +satanisme satanisme nom m s 0.31 0.34 0.31 0.34 +sataniste sataniste adj s 0.21 0.07 0.21 0.07 +satané satané adj m s 6.89 2.36 3.16 0.81 +satanée satané adj f s 6.89 2.36 2.08 0.74 +satanées satané adj f p 6.89 2.36 0.53 0.41 +satanés satané adj m p 6.89 2.36 1.12 0.41 +satelliser satelliser ver 0.02 0.07 0.02 0.00 inf; +satellisée satelliser ver f s 0.02 0.07 0.00 0.07 par:pas; +satellitaire satellitaire adj s 0.02 0.00 0.02 0.00 +satellite satellite nom m s 13.41 1.96 10.63 0.81 +satellites_espion satellites_espion nom m p 0.02 0.00 0.02 0.00 +satellites satellite nom m p 13.41 1.96 2.79 1.15 +sati sati nom m s 0.02 0.00 0.02 0.00 +satiation satiation nom f s 0.00 0.07 0.00 0.07 +satin satin nom m s 2.65 8.58 2.65 8.11 +satinait satiner ver 0.07 0.41 0.00 0.07 ind:imp:3s; +satine satiner ver 0.07 0.41 0.06 0.00 imp:pre:2s; +satinette satinette nom f s 0.00 0.41 0.00 0.41 +satins satin nom m p 2.65 8.58 0.00 0.47 +satiné satiné adj m s 0.11 1.35 0.03 0.20 +satinée satiné adj f s 0.11 1.35 0.05 0.68 +satinées satiné adj f p 0.11 1.35 0.02 0.27 +satinés satiné adj m p 0.11 1.35 0.01 0.20 +satire satire nom f s 0.35 0.47 0.27 0.41 +satires satire nom f p 0.35 0.47 0.08 0.07 +satirique satirique adj s 0.24 0.68 0.22 0.41 +satiriques satirique adj p 0.24 0.68 0.02 0.27 +satirisaient satiriser ver 0.00 0.07 0.00 0.07 ind:imp:3p; +satiriste satiriste nom s 0.12 0.07 0.12 0.07 +satisfaction satisfaction nom f s 7.37 41.22 7.03 37.09 +satisfactions satisfaction nom f p 7.37 41.22 0.34 4.12 +satisfaire satisfaire ver 25.10 38.11 9.60 12.36 ind:pre:2p;inf; +satisfais satisfaire ver 25.10 38.11 0.33 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +satisfaisaient satisfaire ver 25.10 38.11 0.04 0.07 ind:imp:3p; +satisfaisais satisfaire ver 25.10 38.11 0.18 0.20 ind:imp:1s;ind:imp:2s; +satisfaisait satisfaire ver 25.10 38.11 0.13 2.43 ind:imp:3s; +satisfaisant satisfaisant adj m s 2.64 8.18 1.35 2.64 +satisfaisante satisfaisant adj f s 2.64 8.18 0.78 3.92 +satisfaisantes satisfaisant adj f p 2.64 8.18 0.23 1.15 +satisfaisants satisfaisant adj m p 2.64 8.18 0.29 0.47 +satisfait satisfaire ver m s 25.10 38.11 7.89 13.45 ind:pre:3s;par:pas;par:pas; +satisfaite satisfaire ver f s 25.10 38.11 2.29 4.53 par:pas; +satisfaites satisfaire ver f p 25.10 38.11 0.29 0.27 ind:pre:2p;par:pas; +satisfaits satisfaire ver m p 25.10 38.11 2.30 1.96 par:pas; +satisfasse satisfaire ver 25.10 38.11 0.07 0.14 sub:pre:3s; +satisfassent satisfaire ver 25.10 38.11 0.01 0.07 sub:pre:3p; +satisfecit satisfecit nom m 0.02 0.34 0.02 0.34 +satisfera satisfaire ver 25.10 38.11 0.52 0.07 ind:fut:3s; +satisferai satisfaire ver 25.10 38.11 0.15 0.00 ind:fut:1s; +satisferaient satisfaire ver 25.10 38.11 0.04 0.00 cnd:pre:3p; +satisferais satisfaire ver 25.10 38.11 0.14 0.00 cnd:pre:1s; +satisferait satisfaire ver 25.10 38.11 0.28 0.20 cnd:pre:3s; +satisferiez satisfaire ver 25.10 38.11 0.03 0.00 cnd:pre:2p; +satisferons satisfaire ver 25.10 38.11 0.23 0.00 ind:fut:1p; +satisferont satisfaire ver 25.10 38.11 0.02 0.07 ind:fut:3p; +satisfirent satisfaire ver 25.10 38.11 0.00 0.14 ind:pas:3p; +satisfis satisfaire ver 25.10 38.11 0.00 0.07 ind:pas:1s; +satisfit satisfaire ver 25.10 38.11 0.01 0.47 ind:pas:3s; +satisfont satisfaire ver 25.10 38.11 0.43 0.20 ind:pre:3p; +satiété satiété nom f s 0.43 1.42 0.43 1.42 +satonne satonner ver 0.00 0.54 0.00 0.07 ind:pre:3s; +satonner satonner ver 0.00 0.54 0.00 0.34 inf; +satonné satonner ver m s 0.00 0.54 0.00 0.14 par:pas; +satrape satrape nom m s 0.02 0.88 0.02 0.34 +satrapes satrape nom m p 0.02 0.88 0.00 0.54 +satrapie satrapie nom f s 0.01 0.00 0.01 0.00 +saturait saturer ver 1.81 4.32 0.01 0.27 ind:imp:3s; +saturant saturer ver 1.81 4.32 0.00 0.14 par:pre; +saturation saturation nom f s 1.08 1.08 1.08 1.08 +sature saturer ver 1.81 4.32 0.47 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saturent saturer ver 1.81 4.32 0.01 0.00 ind:pre:3p; +saturer saturer ver 1.81 4.32 0.29 0.27 inf; +saturnales saturnales nom f p 0.14 0.34 0.14 0.34 +saturnien saturnien adj m s 0.00 0.20 0.00 0.07 +saturniennes saturnienne nom f p 0.00 0.07 0.00 0.07 +saturniens saturnien adj m p 0.00 0.20 0.00 0.14 +saturnisme saturnisme nom m s 0.00 0.07 0.00 0.07 +saturons saturer ver 1.81 4.32 0.01 0.00 ind:pre:1p; +saturé saturer ver m s 1.81 4.32 0.50 1.82 par:pas; +saturée saturer ver f s 1.81 4.32 0.06 1.42 par:pas; +saturées saturer ver f p 1.81 4.32 0.30 0.14 par:pas; +saturés saturer ver m p 1.81 4.32 0.16 0.20 par:pas; +satyre satyre nom m s 0.99 5.54 0.42 3.85 +satyres satyre nom m p 0.99 5.54 0.57 1.69 +satyrique satyrique adj s 0.01 0.00 0.01 0.00 +sauce sauce nom f s 19.24 13.72 18.33 11.76 +saucent saucer ver 0.69 2.30 0.00 0.07 ind:pre:3p; +saucer saucer ver 0.69 2.30 0.06 0.34 inf; +sauces sauce nom f p 19.24 13.72 0.91 1.96 +saucier saucier nom m s 0.14 0.00 0.14 0.00 +sauciflard sauciflard nom m s 0.00 0.34 0.00 0.34 +saucisse saucisse nom f s 15.89 8.78 7.37 3.18 +saucisses saucisse nom f p 15.89 8.78 8.53 5.61 +saucisson saucisson nom m s 2.09 8.04 2.08 6.08 +saucissonnage saucissonnage nom m s 0.00 0.14 0.00 0.07 +saucissonnages saucissonnage nom m p 0.00 0.14 0.00 0.07 +saucissonnant saucissonner ver 0.03 0.95 0.00 0.07 par:pre; +saucissonne saucissonner ver 0.03 0.95 0.00 0.14 ind:pre:3s; +saucissonner saucissonner ver 0.03 0.95 0.01 0.20 inf; +saucissonné saucissonner ver m s 0.03 0.95 0.01 0.20 par:pas; +saucissonnée saucissonner ver f s 0.03 0.95 0.00 0.20 par:pas; +saucissonnés saucissonner ver m p 0.03 0.95 0.01 0.14 par:pas; +saucissons saucisson nom m p 2.09 8.04 0.01 1.96 +saucière saucière nom f s 0.27 0.47 0.24 0.34 +saucières saucière nom f p 0.27 0.47 0.03 0.14 +saucée saucée nom f s 0.13 0.00 0.13 0.00 +sauf_conduit sauf_conduit nom m s 1.14 1.01 0.77 0.88 +sauf_conduit sauf_conduit nom m p 1.14 1.01 0.37 0.14 +sauf sauf pre 108.54 83.99 108.54 83.99 +saufs sauf adj_sup m p 12.52 6.69 2.38 0.74 +sauge sauge nom f s 0.81 0.74 0.81 0.74 +saugrenu saugrenu adj m s 0.62 7.23 0.20 2.09 +saugrenue saugrenu adj f s 0.62 7.23 0.32 2.84 +saugrenues saugrenu adj f p 0.62 7.23 0.09 1.42 +saugrenus saugrenu adj m p 0.62 7.23 0.01 0.88 +saulaie saulaie nom f s 0.00 0.20 0.00 0.07 +saulaies saulaie nom f p 0.00 0.20 0.00 0.14 +saule saule nom m s 1.90 8.65 1.27 1.96 +saules saule nom m p 1.90 8.65 0.63 6.69 +saulnier saulnier nom m s 0.00 0.07 0.00 0.07 +saumon saumon nom m s 5.92 4.73 5.28 3.65 +saumoneau saumoneau nom m s 0.00 0.07 0.00 0.07 +saumonette saumonette nom f s 0.00 0.14 0.00 0.14 +saumons saumon nom m p 5.92 4.73 0.64 1.08 +saumoné saumoné adj m s 0.00 0.47 0.00 0.07 +saumonée saumoné adj f s 0.00 0.47 0.00 0.20 +saumonées saumoné adj f p 0.00 0.47 0.00 0.20 +saumâtre saumâtre adj s 0.41 2.03 0.20 1.49 +saumâtres saumâtre adj p 0.41 2.03 0.21 0.54 +saumurage saumurage nom m s 0.01 0.00 0.01 0.00 +saumure saumure nom f s 0.42 1.76 0.42 1.76 +saumurer saumurer ver 0.01 0.00 0.01 0.00 inf; +saumurées saumuré adj f p 0.14 0.00 0.14 0.00 +sauna sauna nom m s 3.85 1.08 3.45 0.61 +saunas sauna nom m p 3.85 1.08 0.40 0.47 +saunier saunier nom m s 0.00 0.68 0.00 0.34 +sauniers saunier nom m p 0.00 0.68 0.00 0.34 +saunières saunière nom f p 0.00 0.07 0.00 0.07 +saupoudra saupoudrer ver 0.57 4.80 0.00 0.41 ind:pas:3s; +saupoudrage saupoudrage nom m s 0.02 0.00 0.02 0.00 +saupoudrai saupoudrer ver 0.57 4.80 0.00 0.07 ind:pas:1s; +saupoudraient saupoudrer ver 0.57 4.80 0.00 0.14 ind:imp:3p; +saupoudrait saupoudrer ver 0.57 4.80 0.00 0.34 ind:imp:3s; +saupoudrant saupoudrer ver 0.57 4.80 0.03 0.47 par:pre; +saupoudre saupoudrer ver 0.57 4.80 0.16 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saupoudrer saupoudrer ver 0.57 4.80 0.10 0.27 inf; +saupoudreur saupoudreur nom m s 0.02 0.00 0.02 0.00 +saupoudrez saupoudrer ver 0.57 4.80 0.03 0.14 imp:pre:2p;ind:pre:2p; +saupoudriez saupoudrer ver 0.57 4.80 0.00 0.07 ind:imp:2p; +saupoudrons saupoudrer ver 0.57 4.80 0.02 0.00 imp:pre:1p; +saupoudré saupoudrer ver m s 0.57 4.80 0.12 0.74 par:pas; +saupoudrée saupoudrer ver f s 0.57 4.80 0.04 0.81 par:pas; +saupoudrées saupoudrer ver f p 0.57 4.80 0.01 0.34 par:pas; +saupoudrés saupoudrer ver m p 0.57 4.80 0.06 0.61 par:pas; +saur saur adj m s 0.09 0.88 0.08 0.34 +saura savoir ver_sup 4516.72 2003.58 34.23 14.93 ind:fut:3s;ind:pas:3s; +saurai savoir ver_sup 4516.72 2003.58 18.40 8.85 ind:fut:1s; +sauraient savoir ver_sup 4516.72 2003.58 1.48 5.47 cnd:pre:3p; +saurais savoir ver_sup 4516.72 2003.58 13.01 10.14 cnd:pre:1s;cnd:pre:2s; +saurait savoir ver_sup 4516.72 2003.58 11.90 33.92 cnd:pre:3s; +sauras savoir ver_sup 4516.72 2003.58 15.22 4.59 ind:fut:2s;ind:pas:2s; +saurer saurer ver 22.06 10.27 0.00 0.41 inf; +sauret sauret adj m s 0.00 0.47 0.00 0.27 +saurets sauret adj m p 0.00 0.47 0.00 0.20 +saurez saurer ver 22.06 10.27 4.76 2.23 ind:pre:2p; +sauri saurir ver m s 0.01 0.00 0.01 0.00 par:pas; +saurien saurien nom m s 0.01 0.47 0.01 0.20 +sauriens saurien nom m p 0.01 0.47 0.00 0.27 +sauriez saurer ver 22.06 10.27 3.29 0.74 ind:imp:2p;sub:pre:2p; +saurin saurin nom m s 0.00 0.07 0.00 0.07 +saurions saurer ver 22.06 10.27 0.56 0.74 ind:imp:1p; +saurons saurer ver 22.06 10.27 3.17 1.76 imp:pre:1p;ind:pre:1p; +sauront savoir ver_sup 4516.72 2003.58 7.72 2.77 ind:fut:3p; +saurs saur adj m p 0.09 0.88 0.01 0.54 +saussaies saussaie nom f p 0.00 1.22 0.00 1.22 +saut_de_lit saut_de_lit nom m s 0.00 0.20 0.00 0.14 +saut saut nom m s 14.77 17.03 13.53 14.26 +sauta sauter ver 123.04 134.59 0.84 15.27 ind:pas:3s; +sautai sauter ver 123.04 134.59 0.04 2.50 ind:pas:1s; +sautaient sauter ver 123.04 134.59 0.15 4.12 ind:imp:3p; +sautais sauter ver 123.04 134.59 1.00 0.88 ind:imp:1s;ind:imp:2s; +sautait sauter ver 123.04 134.59 1.81 9.39 ind:imp:3s; +sautant sauter ver 123.04 134.59 1.60 8.92 par:pre; +sautante sautant adj f s 0.04 0.14 0.01 0.14 +saute_mouton saute_mouton nom m 0.14 0.54 0.14 0.54 +saute_ruisseau saute_ruisseau nom m s 0.00 0.07 0.00 0.07 +saute sauter ver 123.04 134.59 22.66 19.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +sautelant sauteler ver 0.00 0.07 0.00 0.07 par:pre; +sautelle sautelle nom f s 0.01 0.00 0.01 0.00 +sautent sauter ver 123.04 134.59 2.09 4.59 ind:pre:3p; +sauter sauter ver 123.04 134.59 57.89 43.31 inf; +sautera sauter ver 123.04 134.59 0.90 0.41 ind:fut:3s; +sauterai sauter ver 123.04 134.59 1.05 0.20 ind:fut:1s; +sauteraient sauter ver 123.04 134.59 0.06 0.14 cnd:pre:3p; +sauterais sauter ver 123.04 134.59 0.59 0.14 cnd:pre:1s;cnd:pre:2s; +sauterait sauter ver 123.04 134.59 0.39 0.74 cnd:pre:3s; +sauteras sauter ver 123.04 134.59 0.60 0.00 ind:fut:2s; +sauterelle sauterelle nom f s 3.29 1.62 1.63 1.62 +sauterelles sauterelle nom f p 3.29 1.62 1.67 0.00 +sauterez sauter ver 123.04 134.59 0.23 0.00 ind:fut:2p; +sauterie sauterie nom f s 0.63 0.41 0.51 0.14 +sauteries sauterie nom f p 0.63 0.41 0.12 0.27 +sauteriez sauter ver 123.04 134.59 0.04 0.00 cnd:pre:2p; +sauternes sauternes nom m 0.67 1.08 0.67 1.08 +sauterons sauter ver 123.04 134.59 0.19 0.07 ind:fut:1p; +sauteront sauter ver 123.04 134.59 0.33 0.47 ind:fut:3p; +sautes sauter ver 123.04 134.59 3.25 0.61 ind:pre:2s; +sauteur sauteur nom m s 1.12 1.89 0.66 0.61 +sauteurs sauteur nom m p 1.12 1.89 0.10 0.20 +sauteuse sauteur nom f s 1.12 1.89 0.33 0.95 +sauteuses sauteur nom f p 1.12 1.89 0.03 0.14 +sautez sauter ver 123.04 134.59 5.62 0.54 imp:pre:2p;ind:pre:2p; +sauça saucer ver 0.69 2.30 0.00 0.20 ind:pas:3s; +sauçant saucer ver 0.69 2.30 0.00 0.14 par:pre; +sauçons saucer ver 0.69 2.30 0.00 0.07 ind:pre:1p; +sautiez sauter ver 123.04 134.59 0.36 0.00 ind:imp:2p; +sautilla sautiller ver 1.48 7.97 0.00 0.41 ind:pas:3s; +sautillaient sautiller ver 1.48 7.97 0.11 0.54 ind:imp:3p; +sautillais sautiller ver 1.48 7.97 0.04 0.07 ind:imp:1s; +sautillait sautiller ver 1.48 7.97 0.01 1.69 ind:imp:3s; +sautillant sautiller ver 1.48 7.97 0.16 2.64 par:pre; +sautillante sautillant adj f s 0.11 2.57 0.06 1.15 +sautillantes sautillant adj f p 0.11 2.57 0.00 0.41 +sautillants sautillant adj m p 0.11 2.57 0.02 0.20 +sautille sautiller ver 1.48 7.97 0.73 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sautillement sautillement nom m s 0.03 0.74 0.00 0.34 +sautillements sautillement nom m p 0.03 0.74 0.03 0.41 +sautillent sautiller ver 1.48 7.97 0.02 0.34 ind:pre:3p; +sautiller sautiller ver 1.48 7.97 0.30 0.81 inf; +sautilles sautiller ver 1.48 7.97 0.05 0.00 ind:pre:2s; +sautillez sautiller ver 1.48 7.97 0.04 0.00 imp:pre:2p;ind:pre:2p; +sautillèrent sautiller ver 1.48 7.97 0.01 0.14 ind:pas:3p; +sautillé sautiller ver m s 1.48 7.97 0.01 0.07 par:pas; +sautions sauter ver 123.04 134.59 0.13 0.27 ind:imp:1p; +sautoir sautoir nom m s 0.18 2.70 0.18 2.50 +sautoirs sautoir nom m p 0.18 2.70 0.00 0.20 +sautâmes sauter ver 123.04 134.59 0.00 0.14 ind:pas:1p; +sauton sauton nom m s 0.14 0.20 0.09 0.00 +sautons sauter ver 123.04 134.59 0.54 0.47 imp:pre:1p;ind:pre:1p; +sautât sauter ver 123.04 134.59 0.00 0.07 sub:imp:3s; +saut_de_lit saut_de_lit nom m p 0.00 0.20 0.00 0.07 +sauts saut nom m p 14.77 17.03 1.23 2.77 +sautèrent sauter ver 123.04 134.59 0.01 2.43 ind:pas:3p; +sauté sauter ver m s 123.04 134.59 18.77 18.78 par:pas; +sautée sauter ver f s 123.04 134.59 1.46 0.41 par:pas; +sautées sauté adj f p 0.80 0.95 0.46 0.27 +sautés sauter ver m p 123.04 134.59 0.22 0.34 par:pas; +sauva sauver ver 246.51 99.05 0.61 2.97 ind:pas:3s; +sauvage sauvage adj s 24.68 54.66 16.67 34.46 +sauvagement sauvagement adv 1.48 6.28 1.48 6.28 +sauvageon sauvageon nom m s 0.65 0.41 0.01 0.00 +sauvageonne sauvageon nom f s 0.65 0.41 0.60 0.27 +sauvageonnes sauvageon nom f p 0.65 0.41 0.00 0.07 +sauvageons sauvageon nom m p 0.65 0.41 0.03 0.07 +sauvagerie sauvagerie nom f s 0.95 7.70 0.95 7.36 +sauvageries sauvagerie nom f p 0.95 7.70 0.00 0.34 +sauvages sauvage adj p 24.68 54.66 8.01 20.20 +sauvagesse sauvagesse nom f s 0.02 0.14 0.02 0.07 +sauvagesses sauvagesse nom f p 0.02 0.14 0.00 0.07 +sauvagin sauvagin nom m s 0.00 1.28 0.00 0.20 +sauvagine sauvagin nom f s 0.00 1.28 0.00 0.68 +sauvagines sauvagin nom f p 0.00 1.28 0.00 0.41 +sauvai sauver ver 246.51 99.05 0.01 0.27 ind:pas:1s; +sauvaient sauver ver 246.51 99.05 0.04 0.88 ind:imp:3p; +sauvais sauver ver 246.51 99.05 0.58 0.54 ind:imp:1s;ind:imp:2s; +sauvait sauver ver 246.51 99.05 0.57 2.43 ind:imp:3s; +sauvant sauver ver 246.51 99.05 1.62 1.15 par:pre; +sauve_qui_peut sauve_qui_peut nom m 0.10 0.68 0.10 0.68 +sauve sauver ver 246.51 99.05 24.34 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sauvegardaient sauvegarder ver 2.77 3.65 0.00 0.07 ind:imp:3p; +sauvegardait sauvegarder ver 2.77 3.65 0.00 0.14 ind:imp:3s; +sauvegardant sauvegarder ver 2.77 3.65 0.00 0.20 par:pre; +sauvegarde sauvegarde nom f s 1.19 2.57 1.03 2.50 +sauvegarder sauvegarder ver 2.77 3.65 1.36 2.03 inf; +sauvegarderaient sauvegarder ver 2.77 3.65 0.00 0.07 cnd:pre:3p; +sauvegarderait sauvegarder ver 2.77 3.65 0.00 0.07 cnd:pre:3s; +sauvegardes sauvegarde nom f p 1.19 2.57 0.16 0.07 +sauvegardât sauvegarder ver 2.77 3.65 0.00 0.07 sub:imp:3s; +sauvegardé sauvegarder ver m s 2.77 3.65 0.94 0.41 par:pas; +sauvegardée sauvegarder ver f s 2.77 3.65 0.14 0.07 par:pas; +sauvegardées sauvegarder ver f p 2.77 3.65 0.07 0.14 par:pas; +sauvegardés sauvegarder ver m p 2.77 3.65 0.07 0.20 par:pas; +sauvent sauver ver 246.51 99.05 1.02 1.28 ind:pre:3p; +sauver sauver ver 246.51 99.05 103.06 36.89 inf;;inf;;inf;; +sauvera sauver ver 246.51 99.05 4.17 1.49 ind:fut:3s; +sauverai sauver ver 246.51 99.05 2.21 0.20 ind:fut:1s; +sauveraient sauver ver 246.51 99.05 0.07 0.20 cnd:pre:3p; +sauverais sauver ver 246.51 99.05 1.21 0.14 cnd:pre:1s;cnd:pre:2s; +sauverait sauver ver 246.51 99.05 1.31 1.55 cnd:pre:3s; +sauveras sauver ver 246.51 99.05 1.18 0.00 ind:fut:2s; +sauverez sauver ver 246.51 99.05 0.68 0.07 ind:fut:2p; +sauverons sauver ver 246.51 99.05 0.42 0.14 ind:fut:1p; +sauveront sauver ver 246.51 99.05 0.39 0.14 ind:fut:3p; +sauves sauver ver 246.51 99.05 3.51 0.47 ind:pre:2s; +sauvetage sauvetage nom m s 8.32 3.72 8.20 3.45 +sauvetages sauvetage nom m p 8.32 3.72 0.12 0.27 +sauveteur sauveteur nom m s 1.38 1.35 0.75 0.27 +sauveteurs sauveteur nom m p 1.38 1.35 0.64 1.08 +sauvette sauveter ver 0.25 3.38 0.25 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sauveté sauveté nom f s 0.00 0.27 0.00 0.27 +sauveur sauveur nom m s 6.93 3.31 5.87 2.77 +sauveurs sauveur nom m p 6.93 3.31 0.82 0.47 +sauveuse sauveur nom f s 6.93 3.31 0.12 0.07 +sauvez sauver ver 246.51 99.05 12.63 1.08 imp:pre:2p;ind:pre:2p; +sauviez sauver ver 246.51 99.05 0.23 0.00 ind:imp:2p; +sauvignon sauvignon nom m s 0.04 0.20 0.04 0.20 +sauvions sauver ver 246.51 99.05 0.17 0.07 ind:imp:1p; +sauvâmes sauver ver 246.51 99.05 0.00 0.07 ind:pas:1p; +sauvons sauver ver 246.51 99.05 1.48 0.27 imp:pre:1p;ind:pre:1p; +sauvât sauver ver 246.51 99.05 0.00 0.20 sub:imp:3s; +sauvèrent sauver ver 246.51 99.05 0.18 0.41 ind:pas:3p; +sauvé sauver ver m s 246.51 99.05 61.62 23.18 par:pas;par:pas;par:pas; +sauvée sauver ver f s 246.51 99.05 12.58 6.35 par:pas; +sauvées sauver ver f p 246.51 99.05 1.35 1.22 par:pas; +sauvés sauver ver m p 246.51 99.05 9.28 5.00 par:pas; +savaient savoir ver_sup 4516.72 2003.58 14.72 30.20 ind:imp:3p; +savais savoir ver_sup 4516.72 2003.58 236.66 132.09 ind:imp:1s;ind:imp:2s; +savait savoir ver_sup 4516.72 2003.58 80.85 237.84 ind:imp:3s; +savamment savamment adv 0.03 4.80 0.03 4.80 +savane savane nom f s 0.34 2.57 0.34 1.76 +savanes savane nom f p 0.34 2.57 0.00 0.81 +savant savant nom m s 5.66 12.03 3.16 5.54 +savantasses savantasse nom m p 0.00 0.07 0.00 0.07 +savante savant adj f s 3.99 17.30 0.44 3.72 +savantes savant adj f p 3.99 17.30 0.24 3.18 +savantissimes savantissime adj p 0.00 0.07 0.00 0.07 +savants savant nom m p 5.66 12.03 2.42 6.42 +savarin savarin nom m s 0.20 0.07 0.20 0.07 +savata savater ver 0.05 0.27 0.00 0.07 ind:pas:3s; +savatait savater ver 0.05 0.27 0.00 0.07 ind:imp:3s; +savate savate nom f s 0.44 3.99 0.30 1.76 +savater savater ver 0.05 0.27 0.02 0.07 inf; +savates savate nom f p 0.44 3.99 0.13 2.23 +savent savoir ver_sup 4516.72 2003.58 64.32 44.53 ind:pre:3p; +savetier savetier nom m s 0.39 0.34 0.39 0.20 +savetiers savetier nom m p 0.39 0.34 0.00 0.14 +saveur saveur nom f s 3.52 12.36 3.11 10.41 +saveurs saveur nom f p 3.52 12.36 0.42 1.96 +savez savoir ver_sup 4516.72 2003.58 407.94 132.91 ind:pre:2p; +saviez savoir ver_sup 4516.72 2003.58 32.68 8.24 ind:imp:2p; +savions savoir ver_sup 4516.72 2003.58 5.30 12.30 ind:imp:1p; +savoir_faire savoir_faire nom m 1.23 2.03 1.23 2.03 +savoir_vivre savoir_vivre nom m 1.67 1.76 1.67 1.76 +savoir savoir ver_sup 4516.72 2003.58 421.10 250.00 inf; +savoirs savoir nom_sup m p 37.32 41.42 0.05 0.47 +savon savon nom m s 16.68 18.04 15.65 16.55 +savonna savonner ver 0.79 4.19 0.00 0.41 ind:pas:3s; +savonnage savonnage nom m s 0.10 0.07 0.10 0.00 +savonnages savonnage nom m p 0.10 0.07 0.00 0.07 +savonnai savonner ver 0.79 4.19 0.00 0.07 ind:pas:1s; +savonnaient savonner ver 0.79 4.19 0.00 0.07 ind:imp:3p; +savonnais savonner ver 0.79 4.19 0.02 0.14 ind:imp:1s;ind:imp:2s; +savonnait savonner ver 0.79 4.19 0.01 0.54 ind:imp:3s; +savonnant savonner ver 0.79 4.19 0.03 0.41 par:pre; +savonne savonner ver 0.79 4.19 0.38 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +savonnent savonner ver 0.79 4.19 0.02 0.14 ind:pre:3p; +savonner savonner ver 0.79 4.19 0.26 1.22 inf; +savonnera savonner ver 0.79 4.19 0.01 0.00 ind:fut:3s; +savonneries savonnerie nom f p 0.00 0.14 0.00 0.14 +savonnette savonnette nom f s 0.72 3.92 0.62 2.84 +savonnettes savonnette nom f p 0.72 3.92 0.10 1.08 +savonneuse savonneux adj f s 0.29 2.23 0.27 1.76 +savonneuses savonneux adj f p 0.29 2.23 0.00 0.34 +savonneux savonneux adj m 0.29 2.23 0.02 0.14 +savonnier savonnier adj m s 0.00 0.07 0.00 0.07 +savonné savonner ver m s 0.79 4.19 0.02 0.47 par:pas; +savonnée savonner ver f s 0.79 4.19 0.04 0.20 par:pas; +savonnées savonner ver f p 0.79 4.19 0.00 0.14 par:pas; +savons savoir ver_sup 4516.72 2003.58 47.84 19.05 ind:pre:1p; +savoura savourer ver 4.24 14.26 0.01 0.47 ind:pas:3s; +savourai savourer ver 4.24 14.26 0.00 0.27 ind:pas:1s; +savouraient savourer ver 4.24 14.26 0.01 0.54 ind:imp:3p; +savourais savourer ver 4.24 14.26 0.14 0.61 ind:imp:1s; +savourait savourer ver 4.24 14.26 0.06 1.69 ind:imp:3s; +savourant savourer ver 4.24 14.26 0.03 2.36 par:pre; +savoure savourer ver 4.24 14.26 1.28 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +savourent savourer ver 4.24 14.26 0.03 0.41 ind:pre:3p; +savourer savourer ver 4.24 14.26 1.71 4.12 inf; +savourera savourer ver 4.24 14.26 0.15 0.07 ind:fut:3s; +savourerai savourer ver 4.24 14.26 0.03 0.00 ind:fut:1s; +savourerait savourer ver 4.24 14.26 0.01 0.07 cnd:pre:3s; +savourerons savourer ver 4.24 14.26 0.01 0.00 ind:fut:1p; +savoureuse savoureux adj f s 1.34 6.89 0.15 1.82 +savoureusement savoureusement adv 0.00 0.14 0.00 0.14 +savoureuses savoureux adj f p 1.34 6.89 0.11 0.68 +savoureux savoureux adj m 1.34 6.89 1.08 4.39 +savourez savourer ver 4.24 14.26 0.46 0.07 imp:pre:2p;ind:pre:2p; +savourions savourer ver 4.24 14.26 0.01 0.14 ind:imp:1p; +savourons savourer ver 4.24 14.26 0.19 0.00 imp:pre:1p;ind:pre:1p; +savourèrent savourer ver 4.24 14.26 0.00 0.07 ind:pas:3p; +savouré savourer ver m s 4.24 14.26 0.10 0.68 par:pas; +savourée savourer ver f s 4.24 14.26 0.01 0.41 par:pas; +savourés savourer ver m p 4.24 14.26 0.01 0.20 par:pas; +savoyard savoyard nom m s 0.50 3.24 0.10 2.91 +savoyarde savoyard nom f s 0.50 3.24 0.14 0.27 +savoyardes savoyard adj f p 0.00 1.42 0.00 0.07 +savoyards savoyard nom m p 0.50 3.24 0.27 0.07 +sax sax nom m 0.36 0.14 0.36 0.14 +saxes saxe nom m p 0.00 0.14 0.00 0.14 +saxhorn saxhorn nom m s 0.40 0.00 0.40 0.00 +saxifragacées saxifragacée nom f p 0.00 0.07 0.00 0.07 +saxifrage saxifrage nom f s 0.00 0.14 0.00 0.07 +saxifrages saxifrage nom f p 0.00 0.14 0.00 0.07 +saxo saxo nom m s 0.73 1.01 0.72 0.81 +saxon saxon adj m s 0.39 0.81 0.19 0.27 +saxonne saxon adj f s 0.39 0.81 0.11 0.20 +saxonnes saxonne nom f p 0.10 0.00 0.10 0.00 +saxons saxon adj m p 0.39 0.81 0.04 0.27 +saxophone saxophone nom m s 1.32 1.28 1.30 1.22 +saxophones saxophone nom m p 1.32 1.28 0.02 0.07 +saxophoniste saxophoniste nom s 0.45 0.14 0.41 0.14 +saxophonistes saxophoniste nom p 0.45 0.14 0.04 0.00 +saxos saxo nom m p 0.73 1.01 0.01 0.20 +saynète saynète nom f s 0.10 0.74 0.06 0.47 +saynètes saynète nom f p 0.10 0.74 0.04 0.27 +sayon sayon nom m s 0.00 0.14 0.00 0.14 +sbire sbire nom m s 1.35 1.62 0.43 0.07 +sbires sbire nom m p 1.35 1.62 0.92 1.55 +scabieuse scabieux adj f s 0.00 0.14 0.00 0.14 +scabreuse scabreux adj f s 0.55 1.49 0.03 0.27 +scabreuses scabreux adj f p 0.55 1.49 0.24 0.14 +scabreux scabreux adj m 0.55 1.49 0.28 1.08 +scaferlati scaferlati nom m s 0.00 0.14 0.00 0.14 +scalaire scalaire nom m s 0.03 0.00 0.03 0.00 +scalp scalp nom m s 1.44 0.74 1.02 0.54 +scalpa scalper ver 1.45 0.47 0.01 0.07 ind:pas:3s; +scalpaient scalper ver 1.45 0.47 0.02 0.07 ind:imp:3p; +scalpait scalper ver 1.45 0.47 0.01 0.00 ind:imp:3s; +scalpe scalper ver 1.45 0.47 0.43 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scalpel scalpel nom m s 2.45 1.01 2.26 0.88 +scalpels scalpel nom m p 2.45 1.01 0.19 0.14 +scalpent scalper ver 1.45 0.47 0.12 0.00 ind:pre:3p; +scalper scalper ver 1.45 0.47 0.35 0.14 inf; +scalpera scalper ver 1.45 0.47 0.01 0.07 ind:fut:3s; +scalpeur scalpeur nom m s 0.01 0.00 0.01 0.00 +scalpez scalper ver 1.45 0.47 0.03 0.00 imp:pre:2p; +scalps scalp nom m p 1.44 0.74 0.42 0.20 +scalpé scalper ver m s 1.45 0.47 0.33 0.14 par:pas; +scalpés scalper ver m p 1.45 0.47 0.14 0.00 par:pas; +scalène scalène adj m s 0.04 0.00 0.04 0.00 +scampi scampi nom m p 0.09 0.07 0.09 0.07 +scanda scander ver 0.36 7.30 0.00 0.34 ind:pas:3s; +scandaient scander ver 0.36 7.30 0.00 0.61 ind:imp:3p; +scandait scander ver 0.36 7.30 0.00 1.01 ind:imp:3s; +scandale scandale nom m s 20.92 24.05 19.09 21.49 +scandales scandale nom m p 20.92 24.05 1.84 2.57 +scandaleuse scandaleux adj f s 4.83 8.31 1.10 3.04 +scandaleusement scandaleusement adv 0.26 0.41 0.26 0.41 +scandaleuses scandaleux adj f p 4.83 8.31 0.28 0.74 +scandaleux scandaleux adj m 4.83 8.31 3.45 4.53 +scandalisa scandaliser ver 1.28 7.30 0.00 0.61 ind:pas:3s; +scandalisai scandaliser ver 1.28 7.30 0.00 0.14 ind:pas:1s; +scandalisaient scandaliser ver 1.28 7.30 0.00 0.34 ind:imp:3p; +scandalisais scandaliser ver 1.28 7.30 0.00 0.20 ind:imp:1s; +scandalisait scandaliser ver 1.28 7.30 0.01 1.08 ind:imp:3s; +scandalisant scandaliser ver 1.28 7.30 0.00 0.20 par:pre; +scandalise scandaliser ver 1.28 7.30 0.18 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scandalisent scandaliser ver 1.28 7.30 0.00 0.34 ind:pre:3p; +scandaliser scandaliser ver 1.28 7.30 0.05 0.74 inf; +scandalisera scandaliser ver 1.28 7.30 0.14 0.00 ind:fut:3s; +scandaliserait scandaliser ver 1.28 7.30 0.00 0.07 cnd:pre:3s; +scandalisons scandaliser ver 1.28 7.30 0.00 0.07 imp:pre:1p; +scandalisèrent scandaliser ver 1.28 7.30 0.00 0.07 ind:pas:3p; +scandalisé scandaliser ver m s 1.28 7.30 0.56 1.69 par:pas; +scandalisée scandaliser ver f s 1.28 7.30 0.29 0.74 par:pas; +scandalisées scandalisé adj f p 0.39 3.04 0.00 0.20 +scandalisés scandalisé adj m p 0.39 3.04 0.32 0.47 +scandant scander ver 0.36 7.30 0.03 1.28 par:pre; +scande scander ver 0.36 7.30 0.01 0.41 imp:pre:2s;ind:pre:3s; +scandent scander ver 0.36 7.30 0.16 0.61 ind:pre:3p; +scander scander ver 0.36 7.30 0.05 0.61 inf; +scandera scander ver 0.36 7.30 0.00 0.07 ind:fut:3s; +scandinave scandinave adj s 0.39 2.43 0.29 1.49 +scandinaves scandinave nom p 0.37 1.28 0.36 0.95 +scandé scander ver m s 0.36 7.30 0.01 0.81 par:pas; +scandée scander ver f s 0.36 7.30 0.00 0.61 par:pas; +scandées scander ver f p 0.36 7.30 0.00 0.34 par:pas; +scandés scander ver m p 0.36 7.30 0.10 0.61 par:pas; +scannage scannage nom m s 0.10 0.00 0.10 0.00 +scannais scanner ver 2.90 0.00 0.01 0.00 ind:imp:1s; +scanne scanner ver 2.90 0.00 0.58 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scannent scanner ver 2.90 0.00 0.13 0.00 ind:pre:3p; +scanner scanner nom m s 8.56 0.14 6.90 0.14 +scannera scanner ver 2.90 0.00 0.02 0.00 ind:fut:3s; +scanneront scanner ver 2.90 0.00 0.01 0.00 ind:fut:3p; +scanners scanner nom m p 8.56 0.14 1.66 0.00 +scannes scanner ver 2.90 0.00 0.06 0.00 ind:pre:2s; +scanneur scanneur nom m s 0.04 0.00 0.04 0.00 +scannez scanner ver 2.90 0.00 0.16 0.00 imp:pre:2p;ind:pre:2p; +scanning scanning nom m s 0.17 0.00 0.17 0.00 +scannons scanner ver 2.90 0.00 0.02 0.00 imp:pre:1p;ind:pre:1p; +scanné scanner ver m s 2.90 0.00 0.54 0.00 par:pas; +scannée scanner ver f s 2.90 0.00 0.10 0.00 par:pas; +scannés scanner ver m p 2.90 0.00 0.11 0.00 par:pas; +scanographie scanographie nom f s 0.08 0.00 0.08 0.00 +scansion scansion nom f s 0.00 0.34 0.00 0.27 +scansions scansion nom f p 0.00 0.34 0.00 0.07 +scaphandre scaphandre nom m s 0.79 0.61 0.49 0.61 +scaphandres scaphandre nom m p 0.79 0.61 0.30 0.00 +scaphandrier scaphandrier nom m s 0.04 0.34 0.03 0.27 +scaphandriers scaphandrier nom m p 0.04 0.34 0.01 0.07 +scaphoïde scaphoïde adj s 0.08 0.00 0.08 0.00 +scapin scapin nom m s 0.00 0.07 0.00 0.07 +scapulaire scapulaire nom m s 0.04 0.68 0.03 0.54 +scapulaires scapulaire nom m p 0.04 0.68 0.01 0.14 +scarabée scarabée nom m s 1.33 1.42 0.60 0.95 +scarabées scarabée nom m p 1.33 1.42 0.73 0.47 +scare scare nom m s 0.06 0.00 0.06 0.00 +scarifiant scarifier ver 0.02 0.14 0.00 0.14 par:pre; +scarification scarification nom f s 0.14 0.07 0.14 0.00 +scarifications scarification nom f p 0.14 0.07 0.00 0.07 +scarifié scarifier ver m s 0.02 0.14 0.02 0.00 par:pas; +scarlatin scarlatine adj m s 0.01 0.00 0.01 0.00 +scarlatine scarlatine nom f s 0.35 1.08 0.35 1.01 +scarlatines scarlatine nom f p 0.35 1.08 0.00 0.07 +scarole scarole nom f s 0.12 0.14 0.12 0.07 +scaroles scarole nom f p 0.12 0.14 0.00 0.07 +scat scat nom m s 0.06 0.00 0.06 0.00 +scato scato adj f s 0.04 0.07 0.04 0.00 +scatologie scatologie nom f s 0.01 0.00 0.01 0.00 +scatologique scatologique adj s 0.03 0.54 0.01 0.20 +scatologiques scatologique adj p 0.03 0.54 0.01 0.34 +scatologue scatologue nom m s 0.00 0.07 0.00 0.07 +scatophiles scatophile adj m p 0.01 0.07 0.01 0.07 +scatos scato adj f p 0.04 0.07 0.00 0.07 +scatter scatter nom m s 0.14 0.00 0.14 0.00 +scazons scazon nom m p 0.00 0.14 0.00 0.14 +sceau sceau nom m s 3.72 4.93 3.54 3.45 +sceaux sceau nom m p 3.72 4.93 0.18 1.49 +scella sceller ver 5.62 7.30 0.02 0.14 ind:pas:3s; +scellage scellage nom m s 0.01 0.00 0.01 0.00 +scellaient sceller ver 5.62 7.30 0.23 0.00 ind:imp:3p; +scellait sceller ver 5.62 7.30 0.11 0.47 ind:imp:3s; +scellant sceller ver 5.62 7.30 0.18 0.41 par:pre; +scelle sceller ver 5.62 7.30 0.63 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scellement scellement nom m s 0.01 0.27 0.01 0.14 +scellements scellement nom m p 0.01 0.27 0.00 0.14 +scellent sceller ver 5.62 7.30 0.23 0.00 ind:pre:3p; +sceller sceller ver 5.62 7.30 0.90 1.08 inf; +scellera sceller ver 5.62 7.30 0.03 0.00 ind:fut:3s; +scellerait sceller ver 5.62 7.30 0.00 0.07 cnd:pre:3s; +scelleront sceller ver 5.62 7.30 0.01 0.14 ind:fut:3p; +scellez sceller ver 5.62 7.30 0.53 0.00 imp:pre:2p; +scellons sceller ver 5.62 7.30 0.16 0.00 imp:pre:1p;ind:pre:1p; +scellèrent sceller ver 5.62 7.30 0.01 0.00 ind:pas:3p; +scellé sceller ver m s 5.62 7.30 1.23 2.16 par:pas; +scellée sceller ver f s 5.62 7.30 0.69 1.42 par:pas; +scellées sceller ver f p 5.62 7.30 0.44 0.61 par:pas; +scellés scellé nom m p 1.91 1.62 1.58 1.55 +scenarii scenarii nom m p 0.00 0.07 0.00 0.07 +scenic_railway scenic_railway nom m s 0.00 0.20 0.00 0.20 +scepticisme scepticisme nom m s 0.62 5.00 0.62 5.00 +sceptique sceptique adj s 2.52 5.81 2.21 4.59 +sceptiques sceptique nom p 0.87 1.22 0.43 0.68 +sceptre sceptre nom m s 1.62 1.69 1.61 1.42 +sceptres sceptre nom m p 1.62 1.69 0.01 0.27 +schah schah nom m s 0.02 0.00 0.02 0.00 +schako schako nom m s 0.00 0.07 0.00 0.07 +schampooing schampooing nom m s 0.00 0.07 0.00 0.07 +schbeb schbeb nom m s 0.00 0.41 0.00 0.41 +scheik scheik nom m s 0.01 0.00 0.01 0.00 +schilling schilling nom m s 1.42 0.00 0.13 0.00 +schillings schilling nom m p 1.42 0.00 1.29 0.00 +schismatique schismatique adj m s 0.00 0.20 0.00 0.14 +schismatiques schismatique adj p 0.00 0.20 0.00 0.07 +schisme schisme nom m s 0.32 0.81 0.09 0.61 +schismes schisme nom m p 0.32 0.81 0.23 0.20 +schiste schiste nom m s 0.07 1.28 0.05 1.01 +schistes schiste nom m p 0.07 1.28 0.02 0.27 +schisteuses schisteux adj f p 0.00 0.07 0.00 0.07 +schizoïde schizoïde adj s 0.14 0.14 0.14 0.07 +schizoïdes schizoïde adj m p 0.14 0.14 0.00 0.07 +schizophasie schizophasie nom f s 0.01 0.00 0.01 0.00 +schizophrène schizophrène adj s 1.09 0.41 1.03 0.27 +schizophrènes schizophrène nom p 0.93 0.88 0.49 0.34 +schizophrénie schizophrénie nom f s 1.83 0.95 1.83 0.95 +schizophrénique schizophrénique adj s 0.14 0.14 0.13 0.07 +schizophréniques schizophrénique adj p 0.14 0.14 0.01 0.07 +schlague schlague nom f s 0.00 0.20 0.00 0.20 +schlass schlass nom m 0.14 0.07 0.14 0.07 +schlem schlem nom m s 0.06 0.07 0.06 0.07 +schleu schleu adj m s 0.03 0.07 0.03 0.07 +schlinguait schlinguer ver 0.32 1.01 0.02 0.20 ind:imp:3s; +schlinguant schlinguer ver 0.32 1.01 0.00 0.07 par:pre; +schlingue schlinguer ver 0.32 1.01 0.23 0.54 imp:pre:2s;ind:pre:3s; +schlinguer schlinguer ver 0.32 1.01 0.02 0.14 inf; +schlingues schlinguer ver 0.32 1.01 0.05 0.07 ind:pre:2s; +schlitte schlitte nom f s 0.00 0.07 0.00 0.07 +schmecte schmecter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +schnaps schnaps nom m 1.86 1.08 1.86 1.08 +schnauzer schnauzer nom m s 0.04 0.00 0.04 0.00 +schnick schnick nom m s 0.00 0.14 0.00 0.14 +schnitzel schnitzel nom m s 0.46 0.00 0.46 0.00 +schnock schnock nom s 1.06 0.81 0.93 0.81 +schnocks schnock nom p 1.06 0.81 0.14 0.00 +schnoque schnoque nom s 0.26 0.47 0.25 0.34 +schnoques schnoque nom p 0.26 0.47 0.01 0.14 +schnouf schnouf nom f s 0.01 0.00 0.01 0.00 +schnouff schnouff nom f s 0.01 0.00 0.01 0.00 +schnouffe schnouffer ver 0.01 0.07 0.01 0.07 ind:pre:3s; +schooner schooner nom m s 0.04 0.00 0.03 0.00 +schooners schooner nom m p 0.04 0.00 0.01 0.00 +schpile schpile nom m s 0.00 1.28 0.00 1.28 +schproum schproum nom m s 0.00 0.41 0.00 0.41 +schème schème nom m s 0.00 0.14 0.00 0.07 +schèmes schème nom m p 0.00 0.14 0.00 0.07 +schtroumf schtroumf nom m s 0.02 0.00 0.02 0.00 +schtroumpf schtroumpf nom m s 0.55 0.14 0.19 0.07 +schtroumpfs schtroumpf nom m p 0.55 0.14 0.37 0.07 +schéma schéma nom m s 4.03 2.64 3.02 1.82 +schémas schéma nom m p 4.03 2.64 1.01 0.81 +schématique schématique adj s 0.12 0.68 0.12 0.41 +schématiquement schématiquement adv 0.01 0.61 0.01 0.61 +schématiques schématique adj f p 0.12 0.68 0.00 0.27 +schématise schématiser ver 0.05 0.14 0.02 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +schématiser schématiser ver 0.05 0.14 0.03 0.00 inf; +schématisme schématisme nom m s 0.00 0.07 0.00 0.07 +schématisée schématiser ver f s 0.05 0.14 0.00 0.07 par:pas; +schupo schupo nom m s 0.00 0.54 0.00 0.41 +schupos schupo nom m p 0.00 0.54 0.00 0.14 +schuss schuss nom m 0.14 0.41 0.14 0.41 +scia scier ver 5.01 9.86 0.01 0.14 ind:pas:3s; +sciage sciage nom m s 0.06 0.14 0.06 0.14 +sciaient scier ver 5.01 9.86 0.00 0.20 ind:imp:3p; +sciais scier ver 5.01 9.86 0.02 0.07 ind:imp:1s;ind:imp:2s; +sciait scier ver 5.01 9.86 0.01 1.69 ind:imp:3s; +scialytique scialytique adj m s 0.00 0.27 0.00 0.27 +sciant scier ver 5.01 9.86 0.01 0.20 par:pre; +sciatique sciatique nom s 0.57 0.20 0.57 0.20 +scie scie nom f s 5.36 10.07 5.21 8.11 +sciemment sciemment adv 0.48 1.49 0.48 1.49 +science_fiction science_fiction nom f s 2.36 1.22 2.36 1.22 +science science nom f s 32.97 31.08 25.28 24.93 +sciences science nom f p 32.97 31.08 7.69 6.15 +scient scier ver 5.01 9.86 0.05 0.14 ind:pre:3p; +scientificité scientificité nom f s 0.01 0.00 0.01 0.00 +scientifique scientifique adj s 17.07 6.55 13.62 4.46 +scientifiquement scientifiquement adv 2.22 1.08 2.22 1.08 +scientifiques scientifique nom p 14.59 1.42 6.40 0.74 +scientisme scientisme nom m s 0.02 0.00 0.02 0.00 +scientiste scientiste adj s 0.15 0.14 0.15 0.14 +scientologie scientologie nom f s 0.30 0.00 0.30 0.00 +scientologue scientologue nom s 0.20 0.00 0.07 0.00 +scientologues scientologue nom p 0.20 0.00 0.13 0.00 +scier scier ver 5.01 9.86 1.12 2.43 inf; +sciera scier ver 5.01 9.86 0.01 0.07 ind:fut:3s; +scierait scier ver 5.01 9.86 0.02 0.00 cnd:pre:3s; +scierie scierie nom f s 0.92 2.30 0.76 1.96 +scieries scierie nom f p 0.92 2.30 0.16 0.34 +scieront scier ver 5.01 9.86 0.01 0.00 ind:fut:3p; +scies scier ver 5.01 9.86 0.28 0.07 ind:pre:2s; +scieur scieur nom m s 0.01 0.54 0.00 0.47 +scieurs scieur nom m p 0.01 0.54 0.01 0.07 +sciez scier ver 5.01 9.86 0.12 0.07 imp:pre:2p;ind:pre:2p; +scindaient scinder ver 0.52 1.49 0.00 0.07 ind:imp:3p; +scindait scinder ver 0.52 1.49 0.00 0.34 ind:imp:3s; +scindant scinder ver 0.52 1.49 0.00 0.07 par:pre; +scinde scinder ver 0.52 1.49 0.41 0.34 ind:pre:3s; +scinder scinder ver 0.52 1.49 0.05 0.14 inf; +scinderas scinder ver 0.52 1.49 0.01 0.00 ind:fut:2s; +scindez scinder ver 0.52 1.49 0.01 0.00 imp:pre:2p; +scindèrent scinder ver 0.52 1.49 0.00 0.07 ind:pas:3p; +scindé scinder ver m s 0.52 1.49 0.02 0.20 par:pas; +scindée scinder ver f s 0.52 1.49 0.01 0.20 par:pas; +scindés scinder ver m p 0.52 1.49 0.00 0.07 par:pas; +scintigraphie scintigraphie nom f s 0.36 0.00 0.36 0.00 +scintillaient scintiller ver 1.77 12.36 0.01 2.64 ind:imp:3p; +scintillait scintiller ver 1.77 12.36 0.19 2.84 ind:imp:3s; +scintillant scintillant adj m s 1.10 6.01 0.35 1.28 +scintillante scintillant adj f s 1.10 6.01 0.24 2.91 +scintillantes scintillant adj f p 1.10 6.01 0.40 1.15 +scintillants scintillant adj m p 1.10 6.01 0.11 0.68 +scintillation scintillation nom f s 0.00 0.41 0.00 0.07 +scintillations scintillation nom f p 0.00 0.41 0.00 0.34 +scintille scintiller ver 1.77 12.36 0.88 1.89 imp:pre:2s;ind:pre:3s; +scintillement scintillement nom m s 0.23 4.53 0.17 3.24 +scintillements scintillement nom m p 0.23 4.53 0.05 1.28 +scintillent scintiller ver 1.77 12.36 0.32 1.35 ind:pre:3p; +scintiller scintiller ver 1.77 12.36 0.24 1.49 inf; +scintilleraient scintiller ver 1.77 12.36 0.01 0.07 cnd:pre:3p; +scintillerais scintiller ver 1.77 12.36 0.00 0.07 cnd:pre:1s; +scintilleront scintiller ver 1.77 12.36 0.00 0.07 ind:fut:3p; +scintilles scintiller ver 1.77 12.36 0.02 0.07 ind:pre:2s; +scintillons scintiller ver 1.77 12.36 0.02 0.00 ind:pre:1p; +scintillèrent scintiller ver 1.77 12.36 0.00 0.14 ind:pas:3p; +scintillé scintiller ver m s 1.77 12.36 0.00 0.14 par:pas; +scion scion nom m s 0.28 0.61 0.27 0.47 +scions scion nom m p 0.28 0.61 0.01 0.14 +scirpe scirpe nom m s 0.01 0.07 0.01 0.00 +scirpes scirpe nom m p 0.01 0.07 0.00 0.07 +scission scission nom f s 0.03 0.68 0.03 0.68 +scissionniste scissionniste adj m s 0.00 0.07 0.00 0.07 +scissiparité scissiparité nom f s 0.01 0.00 0.01 0.00 +scissures scissure nom f p 0.00 0.07 0.00 0.07 +sciène sciène nom f s 0.14 0.00 0.14 0.00 +scièrent scier ver 5.01 9.86 0.01 0.00 ind:pas:3p; +scié scier ver m s 5.01 9.86 1.25 2.30 par:pas; +sciée scier ver f s 5.01 9.86 0.45 0.54 par:pas; +sciées scier ver f p 5.01 9.86 0.01 0.41 par:pas; +sciure sciure nom f s 0.69 6.08 0.69 6.01 +sciures sciure nom f p 0.69 6.08 0.00 0.07 +sciés scier ver m p 5.01 9.86 0.50 0.47 par:pas; +scléreux scléreux adj m 0.01 0.00 0.01 0.00 +sclérodermie sclérodermie nom f s 0.03 0.00 0.03 0.00 +sclérosante sclérosant adj f s 0.01 0.00 0.01 0.00 +sclérose sclérose nom f s 0.79 0.88 0.79 0.81 +scléroserai scléroser ver 0.16 0.34 0.01 0.00 ind:fut:1s; +scléroses sclérose nom f p 0.79 0.88 0.00 0.07 +sclérosé scléroser ver m s 0.16 0.34 0.14 0.20 par:pas; +sclérosée scléroser ver f s 0.16 0.34 0.00 0.14 par:pas; +sclérosés sclérosé adj m p 0.02 0.20 0.00 0.07 +sclérotique sclérotique nom f s 0.00 0.54 0.00 0.41 +sclérotiques sclérotique nom f p 0.00 0.54 0.00 0.14 +scolaire scolaire adj s 7.00 14.12 5.61 9.66 +scolairement scolairement adv 0.01 0.07 0.01 0.07 +scolaires scolaire adj p 7.00 14.12 1.39 4.46 +scolarisation scolarisation nom f s 0.01 0.07 0.01 0.07 +scolariser scolariser ver 0.01 0.00 0.01 0.00 inf; +scolarité scolarité nom f s 1.63 0.81 1.61 0.81 +scolarités scolarité nom f p 1.63 0.81 0.02 0.00 +scolastique scolastique adj m s 0.01 0.20 0.01 0.14 +scolastiques scolastique adj f p 0.01 0.20 0.00 0.07 +scolie scolie nom s 0.00 0.47 0.00 0.47 +scoliose scoliose nom f s 0.24 0.34 0.23 0.27 +scolioses scoliose nom f p 0.24 0.34 0.01 0.07 +scolopendre scolopendre nom f s 0.00 0.34 0.00 0.07 +scolopendres scolopendre nom f p 0.00 0.34 0.00 0.27 +scolyte scolyte nom m s 0.01 0.00 0.01 0.00 +scone scone nom m s 0.45 0.20 0.11 0.00 +scones scone nom m p 0.45 0.20 0.34 0.20 +sconse sconse nom m s 0.04 0.00 0.04 0.00 +scoop scoop nom m s 5.29 1.22 5.12 1.08 +scoops scoop nom m p 5.29 1.22 0.17 0.14 +scooter scooter nom m s 3.62 2.77 3.41 2.30 +scooters scooter nom m p 3.62 2.77 0.20 0.47 +scope scope nom m s 0.41 0.07 0.36 0.07 +scopes scope nom m p 0.41 0.07 0.04 0.00 +scopie scopie nom f s 0.01 0.00 0.01 0.00 +scopitones scopitone nom m p 0.00 0.07 0.00 0.07 +scopolamine scopolamine nom f s 0.02 0.00 0.02 0.00 +scorbut scorbut nom m s 0.46 0.95 0.46 0.95 +score score nom m s 5.92 0.74 5.29 0.61 +scores score nom m p 5.92 0.74 0.64 0.14 +scories scorie nom f p 0.17 0.74 0.17 0.74 +scorpion scorpion nom m s 3.54 2.64 1.78 0.88 +scorpions scorpion nom m p 3.54 2.64 1.75 1.76 +scotch_terrier scotch_terrier nom m s 0.01 0.00 0.01 0.00 +scotch scotch nom m s 9.45 6.35 9.30 6.28 +scotchais scotcher ver 1.63 0.74 0.01 0.00 ind:imp:1s; +scotcher scotcher ver 1.63 0.74 0.17 0.00 inf; +scotches scotcher ver 1.63 0.74 0.10 0.20 ind:pre:2s; +scotchons scotcher ver 1.63 0.74 0.00 0.07 ind:pre:1p; +scotchs scotch nom m p 9.45 6.35 0.15 0.07 +scotché scotcher ver m s 1.63 0.74 0.85 0.20 par:pas; +scotchée scotcher ver f s 1.63 0.74 0.26 0.07 par:pas; +scotchées scotcher ver f p 1.63 0.74 0.04 0.00 par:pas; +scotchés scotcher ver m p 1.63 0.74 0.20 0.20 par:pas; +scotomisant scotomiser ver 0.00 0.14 0.00 0.07 par:pre; +scotomiser scotomiser ver 0.00 0.14 0.00 0.07 inf; +scottish scottish nom f s 0.14 0.14 0.14 0.14 +scoubidou scoubidou nom m s 0.23 0.34 0.20 0.27 +scoubidous scoubidou nom m p 0.23 0.34 0.03 0.07 +scoumoune scoumoune nom f s 0.10 0.20 0.10 0.20 +scout scout adj m s 1.94 2.50 1.63 1.62 +scoute scout adj f s 1.94 2.50 0.07 0.41 +scoutisme scoutisme nom m s 0.05 0.54 0.05 0.54 +scouts scout nom m p 3.73 2.09 2.48 1.08 +scrabble scrabble nom m s 1.39 0.20 1.39 0.20 +scratch scratch nom m s 0.41 0.07 0.41 0.07 +scratcher scratcher ver 0.02 0.00 0.02 0.00 inf; +scratching scratching nom m s 0.17 0.00 0.17 0.00 +scriban scriban nom m s 0.00 0.07 0.00 0.07 +scribe scribe nom m s 2.05 3.18 0.65 1.55 +scribes scribe nom m p 2.05 3.18 1.40 1.62 +scribouillages scribouillage nom m p 0.00 0.07 0.00 0.07 +scribouillard scribouillard nom m s 0.17 1.01 0.06 0.88 +scribouillards scribouillard nom m p 0.17 1.01 0.11 0.14 +scribouille scribouiller ver 0.03 0.20 0.02 0.07 ind:pre:1s;ind:pre:3s; +scribouiller scribouiller ver 0.03 0.20 0.01 0.14 inf; +script_girl script_girl nom f s 0.00 0.20 0.00 0.20 +script script nom m s 6.45 0.41 5.73 0.41 +scripte scripte nom s 1.23 0.00 1.23 0.00 +scripteur scripteur nom m s 0.00 0.14 0.00 0.07 +scripteurs scripteur nom m p 0.00 0.14 0.00 0.07 +scripts script nom m p 6.45 0.41 0.72 0.00 +scrofulaire scrofulaire nom f s 0.01 0.00 0.01 0.00 +scrofule scrofule nom f s 0.03 0.14 0.02 0.07 +scrofules scrofule nom f p 0.03 0.14 0.01 0.07 +scrofuleux scrofuleux adj m s 0.02 0.34 0.02 0.34 +scrogneugneu scrogneugneu ono 0.00 0.20 0.00 0.20 +scrotal scrotal adj m s 0.01 0.00 0.01 0.00 +scrotum scrotum nom m s 0.77 0.07 0.77 0.07 +scrub scrub nom m s 2.72 0.07 0.07 0.00 +scrubs scrub nom m p 2.72 0.07 2.66 0.07 +scrupule scrupule nom m s 6.66 16.42 0.94 6.28 +scrupules scrupule nom m p 6.66 16.42 5.71 10.14 +scrupuleuse scrupuleux adj f s 0.76 3.78 0.11 1.28 +scrupuleusement scrupuleusement adv 0.56 3.04 0.56 3.04 +scrupuleuses scrupuleux adj f p 0.76 3.78 0.01 0.07 +scrupuleux scrupuleux adj m 0.76 3.78 0.64 2.43 +scrupulosité scrupulosité nom f s 0.01 0.00 0.01 0.00 +scruta scruter ver 2.30 15.54 0.00 1.89 ind:pas:3s; +scrutai scruter ver 2.30 15.54 0.00 0.20 ind:pas:1s; +scrutaient scruter ver 2.30 15.54 0.10 0.41 ind:imp:3p; +scrutais scruter ver 2.30 15.54 0.03 0.41 ind:imp:1s; +scrutait scruter ver 2.30 15.54 0.16 2.36 ind:imp:3s; +scrutant scruter ver 2.30 15.54 0.26 2.70 par:pre; +scrutateur scrutateur adj m s 0.39 0.41 0.39 0.20 +scrutateurs scrutateur adj m p 0.39 0.41 0.00 0.14 +scrutation scrutation nom f s 0.04 0.00 0.04 0.00 +scrutatrices scrutateur adj f p 0.39 0.41 0.00 0.07 +scrute scruter ver 2.30 15.54 0.59 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scrutent scruter ver 2.30 15.54 0.17 0.47 ind:pre:3p; +scruter scruter ver 2.30 15.54 0.47 2.91 inf; +scrutera scruter ver 2.30 15.54 0.01 0.07 ind:fut:3s; +scruterai scruter ver 2.30 15.54 0.01 0.00 ind:fut:1s; +scruterait scruter ver 2.30 15.54 0.00 0.07 cnd:pre:3s; +scruteront scruter ver 2.30 15.54 0.01 0.00 ind:fut:3p; +scrutez scruter ver 2.30 15.54 0.06 0.00 imp:pre:2p;ind:pre:2p; +scrutin scrutin nom m s 0.71 1.49 0.62 1.28 +scrutins scrutin nom m p 0.71 1.49 0.09 0.20 +scrutions scruter ver 2.30 15.54 0.00 0.20 ind:imp:1p; +scrutâmes scruter ver 2.30 15.54 0.00 0.14 ind:pas:1p; +scrutons scruter ver 2.30 15.54 0.02 0.00 imp:pre:1p;ind:pre:1p; +scrutèrent scruter ver 2.30 15.54 0.00 0.07 ind:pas:3p; +scruté scruter ver m s 2.30 15.54 0.38 0.74 par:pas; +scrutée scruter ver f s 2.30 15.54 0.02 0.07 par:pas; +scrutés scruter ver m p 2.30 15.54 0.01 0.20 par:pas; +scène_clé scène_clé nom f s 0.01 0.00 0.01 0.00 +scène scène nom f s 107.96 114.93 96.66 95.27 +scènes_clé scènes_clé nom f p 0.01 0.00 0.01 0.00 +scènes scène nom f p 107.96 114.93 11.30 19.66 +sculpta sculpter ver 2.92 13.72 0.04 0.34 ind:pas:3s; +sculptaient sculpter ver 2.92 13.72 0.00 0.07 ind:imp:3p; +sculptais sculpter ver 2.92 13.72 0.11 0.07 ind:imp:1s; +sculptait sculpter ver 2.92 13.72 0.02 1.15 ind:imp:3s; +sculptant sculpter ver 2.92 13.72 0.10 0.41 par:pre; +sculpte sculpter ver 2.92 13.72 0.63 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sculptent sculpter ver 2.92 13.72 0.03 0.14 ind:pre:3p; +sculpter sculpter ver 2.92 13.72 0.87 2.16 inf; +sculptera sculpter ver 2.92 13.72 0.01 0.14 ind:fut:3s; +sculpterai sculpter ver 2.92 13.72 0.02 0.00 ind:fut:1s; +sculpterait sculpter ver 2.92 13.72 0.00 0.07 cnd:pre:3s; +sculpteras sculpter ver 2.92 13.72 0.01 0.07 ind:fut:2s; +sculpterez sculpter ver 2.92 13.72 0.01 0.07 ind:fut:2p; +sculptes sculpter ver 2.92 13.72 0.14 0.20 ind:pre:2s; +sculpteur sculpteur nom m s 3.63 7.50 3.31 4.93 +sculpteurs sculpteur nom m p 3.63 7.50 0.29 2.57 +sculptez sculpter ver 2.92 13.72 0.04 0.07 imp:pre:2p;ind:pre:2p; +sculptiez sculpter ver 2.92 13.72 0.00 0.07 ind:imp:2p; +sculptâtes sculpter ver 2.92 13.72 0.00 0.07 ind:pas:2p; +sculptrice sculpteur nom f s 3.63 7.50 0.02 0.00 +sculpté sculpter ver m s 2.92 13.72 0.56 3.38 par:pas; +sculptée sculpté adj f s 0.50 7.23 0.15 1.28 +sculptées sculpter ver f p 2.92 13.72 0.17 0.74 par:pas; +sculptural sculptural adj m s 0.02 0.68 0.00 0.20 +sculpturale sculptural adj f s 0.02 0.68 0.02 0.34 +sculpturales sculptural adj f p 0.02 0.68 0.00 0.07 +sculpturaux sculptural adj m p 0.02 0.68 0.00 0.07 +sculpture sculpture nom f s 7.12 7.91 5.48 3.78 +sculptures sculpture nom f p 7.12 7.91 1.64 4.12 +sculptés sculpter ver m p 2.92 13.72 0.06 1.76 par:pas; +scélérat scélérat nom m s 2.87 0.74 2.19 0.27 +scélérate scélérat adj f s 1.05 0.27 0.12 0.00 +scélérates scélérat adj f p 1.05 0.27 0.01 0.07 +scélératesse scélératesse nom f s 0.00 0.14 0.00 0.07 +scélératesses scélératesse nom f p 0.00 0.14 0.00 0.07 +scélérats scélérat nom m p 2.87 0.74 0.66 0.47 +scénar scénar nom m s 0.51 0.34 0.46 0.34 +scénarii scénario nom m p 19.14 9.26 0.00 0.07 +scénarimage scénarimage nom m s 0.01 0.00 0.01 0.00 +scénario scénario nom m s 19.14 9.26 16.70 8.18 +scénarios scénario nom m p 19.14 9.26 2.44 1.01 +scénariste scénariste nom s 2.70 0.68 1.98 0.41 +scénaristes scénariste nom p 2.70 0.68 0.72 0.27 +scénaristique scénaristique adj f s 0.01 0.14 0.01 0.14 +scénars scénar nom m p 0.51 0.34 0.04 0.00 +scénique scénique adj f s 0.12 0.20 0.11 0.00 +scéniques scénique adj p 0.12 0.20 0.01 0.20 +scénographe scénographe nom s 0.03 0.00 0.03 0.00 +scénographie scénographie nom f s 0.35 0.07 0.35 0.07 +scénographique scénographique adj m s 0.01 0.00 0.01 0.00 +scutigère scutigère nom f s 0.00 0.61 0.00 0.54 +scutigères scutigère nom f p 0.00 0.61 0.00 0.07 +scythe scythe adj s 0.04 0.34 0.04 0.20 +scythes scythe adj m p 0.04 0.34 0.00 0.14 +se se pro_per 2813.77 6587.77 2813.77 6587.77 +señor señor nom m s 9.75 0.00 9.75 0.00 +seaborgium seaborgium nom m s 0.10 0.00 0.10 0.00 +seau seau nom m s 9.01 24.05 7.02 14.73 +seaux seau nom m p 9.01 24.05 2.00 9.32 +sec sec adj m s 43.02 142.84 27.40 72.30 +secco secco nom m s 0.00 0.61 0.00 0.34 +seccos secco nom m p 0.00 0.61 0.00 0.27 +seccotine seccotine nom f s 0.00 0.34 0.00 0.34 +second_maître second_maître nom m s 0.05 0.07 0.05 0.07 +second second adj m s 52.50 88.58 15.32 32.30 +secondaient seconder ver 1.76 5.00 0.00 0.07 ind:imp:3p; +secondaire secondaire adj s 8.06 8.65 4.16 5.07 +secondairement secondairement adv 0.00 0.27 0.00 0.27 +secondaires secondaire adj p 8.06 8.65 3.91 3.58 +secondais seconder ver 1.76 5.00 0.03 0.00 ind:imp:1s; +secondait seconder ver 1.76 5.00 0.10 0.41 ind:imp:3s; +secondant seconder ver 1.76 5.00 0.00 0.07 par:pre; +seconde seconde nom f s 124.54 121.49 72.34 66.22 +secondement secondement adv 0.00 0.14 0.00 0.14 +secondent seconder ver 1.76 5.00 0.01 0.27 ind:pre:3p; +seconder seconder ver 1.76 5.00 0.37 1.96 inf; +secondera seconder ver 1.76 5.00 0.07 0.00 ind:fut:3s; +seconderai seconder ver 1.76 5.00 0.03 0.00 ind:fut:1s; +seconderas seconder ver 1.76 5.00 0.02 0.00 ind:fut:2s; +seconderez seconder ver 1.76 5.00 0.02 0.00 ind:fut:2p; +seconderont seconder ver 1.76 5.00 0.02 0.00 ind:fut:3p; +secondes seconde nom f p 124.54 121.49 52.20 55.27 +secondo secondo nom m s 0.20 0.07 0.20 0.07 +seconds second adj m p 52.50 88.58 0.28 0.34 +secondé seconder ver m s 1.76 5.00 0.24 1.01 par:pas; +secondée seconder ver f s 1.76 5.00 0.01 0.34 par:pas; +secondés seconder ver m p 1.76 5.00 0.04 0.20 par:pas; +secoua secouer ver 19.00 116.35 0.26 25.68 ind:pas:3s; +secouai secouer ver 19.00 116.35 0.01 1.82 ind:pas:1s; +secouaient secouer ver 19.00 116.35 0.01 3.24 ind:imp:3p; +secouais secouer ver 19.00 116.35 0.04 0.47 ind:imp:1s;ind:imp:2s; +secouait secouer ver 19.00 116.35 0.67 12.84 ind:imp:3s; +secouant secouer ver 19.00 116.35 0.39 11.49 par:pre; +secouassent secouer ver 19.00 116.35 0.00 0.07 sub:imp:3p; +secoue secouer ver 19.00 116.35 4.77 17.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +secouement secouement nom m s 0.00 0.07 0.00 0.07 +secouent secouer ver 19.00 116.35 0.29 1.76 ind:pre:3p; +secouer secouer ver 19.00 116.35 4.50 14.19 ind:pre:2p;inf; +secouera secouer ver 19.00 116.35 0.04 0.14 ind:fut:3s; +secouerai secouer ver 19.00 116.35 0.02 0.14 ind:fut:1s; +secoueraient secouer ver 19.00 116.35 0.01 0.14 cnd:pre:3p; +secouerais secouer ver 19.00 116.35 0.01 0.14 cnd:pre:1s; +secouerait secouer ver 19.00 116.35 0.04 0.41 cnd:pre:3s; +secouerez secouer ver 19.00 116.35 0.01 0.00 ind:fut:2p; +secoueront secouer ver 19.00 116.35 0.01 0.07 ind:fut:3p; +secoues secouer ver 19.00 116.35 0.56 0.20 ind:pre:2s; +secoueur secoueur nom m s 0.09 0.07 0.02 0.07 +secoueurs secoueur nom m p 0.09 0.07 0.06 0.00 +secouez secouer ver 19.00 116.35 1.24 0.61 imp:pre:2p;ind:pre:2p; +secouions secouer ver 19.00 116.35 0.00 0.14 ind:imp:1p; +secouâmes secouer ver 19.00 116.35 0.00 0.27 ind:pas:1p; +secouons secouer ver 19.00 116.35 0.04 0.14 imp:pre:1p;ind:pre:1p; +secourût secourir ver 6.05 4.93 0.00 0.14 sub:imp:3s; +secourable secourable adj s 0.69 1.42 0.66 1.22 +secourables secourable adj p 0.69 1.42 0.03 0.20 +secouraient secourir ver 6.05 4.93 0.00 0.07 ind:imp:3p; +secourait secourir ver 6.05 4.93 0.02 0.07 ind:imp:3s; +secourant secourir ver 6.05 4.93 0.12 0.00 par:pre; +secoures secourir ver 6.05 4.93 0.11 0.00 sub:pre:2s; +secourez secourir ver 6.05 4.93 0.74 0.00 imp:pre:2p;ind:pre:2p; +secourions secourir ver 6.05 4.93 0.03 0.07 ind:imp:1p; +secourir secourir ver 6.05 4.93 2.97 2.64 inf; +secourisme secourisme nom m s 0.26 0.07 0.26 0.07 +secouriste secouriste nom s 0.94 0.34 0.43 0.20 +secouristes secouriste nom p 0.94 0.34 0.51 0.14 +secourra secourir ver 6.05 4.93 0.01 0.00 ind:fut:3s; +secours secours nom m 70.36 40.47 70.36 40.47 +secourt secourir ver 6.05 4.93 0.06 0.00 ind:pre:3s; +secouru secourir ver m s 6.05 4.93 1.10 0.88 par:pas; +secourue secourir ver f s 6.05 4.93 0.30 0.54 par:pas; +secourues secourir ver f p 6.05 4.93 0.02 0.14 par:pas; +secourus secourir ver m p 6.05 4.93 0.31 0.00 par:pas; +secourut secourir ver 6.05 4.93 0.00 0.20 ind:pas:3s; +secousse secousse nom f s 2.59 16.28 1.44 8.72 +secousses secousse nom f p 2.59 16.28 1.15 7.57 +secouèrent secouer ver 19.00 116.35 0.01 0.81 ind:pas:3p; +secoué secouer ver m s 19.00 116.35 3.96 13.99 par:pas; +secouée secouer ver f s 19.00 116.35 1.49 6.35 par:pas; +secouées secouer ver f p 19.00 116.35 0.04 0.81 par:pas; +secoués secouer ver m p 19.00 116.35 0.59 2.84 par:pas; +secret secret nom m s 103.49 96.01 81.34 70.81 +secrets secret nom m p 103.49 96.01 22.15 25.20 +secrète secret adj f s 62.68 83.11 14.43 28.51 +secrètement secrètement adv 3.20 13.04 3.20 13.04 +secrètent secréter ver 0.52 0.74 0.04 0.00 ind:pre:3p; +secrètes secret adj f p 62.68 83.11 3.79 10.47 +secrétaient secréter ver 0.52 0.74 0.00 0.07 ind:imp:3p; +secrétaire secrétaire nom s 31.22 43.78 29.43 38.58 +secrétairerie secrétairerie nom f s 0.00 0.07 0.00 0.07 +secrétaires secrétaire nom p 31.22 43.78 1.79 5.20 +secrétariat secrétariat nom m s 1.43 3.31 1.43 3.24 +secrétariats secrétariat nom m p 1.43 3.31 0.00 0.07 +secréter secréter ver 0.52 0.74 0.01 0.07 inf; +secrété secréter ver m s 0.52 0.74 0.01 0.14 par:pas; +secrétée secréter ver f s 0.52 0.74 0.01 0.07 par:pas; +secs sec adj m p 43.02 142.84 4.91 17.09 +sectaire sectaire adj s 0.35 0.68 0.22 0.34 +sectaires sectaire adj p 0.35 0.68 0.13 0.34 +sectarisme sectarisme nom m s 0.06 0.34 0.06 0.34 +sectateur sectateur nom m s 0.01 0.34 0.00 0.14 +sectateurs sectateur nom m p 0.01 0.34 0.01 0.20 +secte secte nom f s 5.02 4.19 4.15 3.11 +sectes secte nom f p 5.02 4.19 0.87 1.08 +secteur secteur nom m s 26.50 20.34 24.57 18.45 +secteurs secteur nom m p 26.50 20.34 1.93 1.89 +section section nom f s 20.34 22.23 18.03 16.35 +sectionna sectionner ver 1.75 1.89 0.00 0.14 ind:pas:3s; +sectionnaient sectionner ver 1.75 1.89 0.00 0.07 ind:imp:3p; +sectionnant sectionner ver 1.75 1.89 0.04 0.00 par:pre; +sectionne sectionner ver 1.75 1.89 0.27 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sectionnement sectionnement nom m s 0.01 0.07 0.01 0.07 +sectionnent sectionner ver 1.75 1.89 0.00 0.14 ind:pre:3p; +sectionner sectionner ver 1.75 1.89 0.33 0.07 inf; +sectionnera sectionner ver 1.75 1.89 0.02 0.00 ind:fut:3s; +sectionnez sectionner ver 1.75 1.89 0.06 0.00 imp:pre:2p; +sectionné sectionner ver m s 1.75 1.89 0.53 0.54 par:pas; +sectionnée sectionner ver f s 1.75 1.89 0.34 0.41 par:pas; +sectionnées sectionner ver f p 1.75 1.89 0.06 0.20 par:pas; +sectionnés sectionner ver m p 1.75 1.89 0.09 0.14 par:pas; +sections section nom f p 20.34 22.23 2.31 5.88 +sectorielles sectoriel adj f p 0.00 0.14 0.00 0.07 +sectoriels sectoriel adj m p 0.00 0.14 0.00 0.07 +sectorisation sectorisation nom f s 0.01 0.00 0.01 0.00 +secundo secundo adv_sup 1.64 0.88 1.64 0.88 +sedan sedan nom m s 0.04 0.07 0.04 0.07 +sedia_gestatoria sedia_gestatoria nom f 0.00 0.20 0.00 0.20 +sedums sedum nom m p 0.00 0.07 0.00 0.07 +seersucker seersucker nom m s 0.02 0.00 0.02 0.00 +segment segment nom m s 0.69 1.42 0.36 0.88 +segmentaire segmentaire adj s 0.03 0.00 0.03 0.00 +segmentale segmental adj f s 0.01 0.00 0.01 0.00 +segmentez segmenter ver 0.03 0.00 0.01 0.00 imp:pre:2p; +segments segment nom m p 0.69 1.42 0.33 0.54 +segmenté segmenter ver m s 0.03 0.00 0.01 0.00 par:pas; +seguedilla seguedilla nom f s 0.00 0.20 0.00 0.07 +seguedillas seguedilla nom f p 0.00 0.20 0.00 0.14 +seiche seiche nom f s 0.23 0.88 0.23 0.61 +seiches seiche nom f p 0.23 0.88 0.00 0.27 +seigle seigle nom m s 0.69 2.36 0.69 2.09 +seigles seigle nom m p 0.69 2.36 0.00 0.27 +seigneur seigneur nom m s 153.82 60.14 147.72 51.82 +seigneurial seigneurial adj m s 0.02 1.01 0.01 0.34 +seigneuriale seigneurial adj f s 0.02 1.01 0.00 0.41 +seigneuriales seigneurial adj f p 0.02 1.01 0.01 0.20 +seigneuriaux seigneurial adj m p 0.02 1.01 0.00 0.07 +seigneurie seigneurie nom f s 3.00 4.86 2.81 4.59 +seigneuries seigneurie nom f p 3.00 4.86 0.19 0.27 +seigneurs seigneur nom m p 153.82 60.14 6.10 8.31 +seille seille nom f s 0.00 0.27 0.00 0.07 +seilles seille nom f p 0.00 0.27 0.00 0.20 +seillon seillon nom m s 0.00 0.07 0.00 0.07 +sein sein nom m s 44.90 84.05 16.93 32.23 +seine seine nom f s 0.14 0.47 0.14 0.27 +seing seing nom m s 0.01 0.07 0.01 0.07 +seins sein nom m p 44.90 84.05 27.97 51.82 +seize seize adj_num 7.71 31.42 7.71 31.42 +seizième seizième nom s 0.68 1.08 0.68 1.08 +sel sel nom m s 21.83 33.24 20.93 31.01 +seldjoukide seldjoukide adj m s 0.00 0.14 0.00 0.14 +seldjoukides seldjoukide nom p 0.00 0.07 0.00 0.07 +select select adj m s 0.14 0.34 0.12 0.27 +selects select adj m p 0.14 0.34 0.02 0.07 +self_contrôle self_contrôle nom m s 0.19 0.07 0.19 0.07 +self_control self_control nom m s 0.16 0.34 0.16 0.34 +self_défense self_défense nom f s 0.18 0.00 0.18 0.00 +self_made_man self_made_man nom m s 0.02 0.07 0.02 0.07 +self_made_men self_made_men nom m p 0.01 0.07 0.01 0.07 +self_made_man self_made_man nom m s 0.14 0.07 0.14 0.07 +self_service self_service nom m s 0.37 0.47 0.36 0.47 +self_service self_service nom m p 0.37 0.47 0.01 0.00 +self self nom m s 0.67 0.34 0.67 0.27 +selfs self nom m p 0.67 0.34 0.00 0.07 +sellait seller ver 1.81 1.96 0.00 0.07 ind:imp:3s; +selle selle nom f s 10.26 19.05 8.90 16.08 +seller seller ver 1.81 1.96 0.52 0.68 inf; +sellerie sellerie nom f s 0.05 0.27 0.05 0.20 +selleries sellerie nom f p 0.05 0.27 0.00 0.07 +selles selle nom f p 10.26 19.05 1.36 2.97 +sellette sellette nom f s 0.36 0.88 0.36 0.88 +sellez seller ver 1.81 1.96 0.42 0.00 imp:pre:2p;ind:pre:2p; +sellier sellier nom m s 0.02 0.47 0.02 0.47 +sellé seller ver m s 1.81 1.96 0.28 0.54 par:pas; +sellée seller ver f s 1.81 1.96 0.02 0.00 par:pas; +sellées seller ver f p 1.81 1.96 0.00 0.14 par:pas; +sellés seller ver m p 1.81 1.96 0.05 0.41 par:pas; +selon selon pre 81.40 110.88 81.40 110.88 +sels sel nom m p 21.83 33.24 0.90 2.23 +seltz seltz nom m 0.17 0.00 0.17 0.00 +selva selva nom f s 0.44 0.00 0.44 0.00 +sema semer ver 19.80 25.41 0.20 0.34 ind:pas:3s; +semaient semer ver 19.80 25.41 0.03 0.54 ind:imp:3p; +semailles semailles nom f p 0.19 0.81 0.19 0.81 +semaine semaine nom f s 290.85 197.50 186.01 111.89 +semaines semaine nom f p 290.85 197.50 104.84 85.61 +semainier semainier nom m s 0.00 0.34 0.00 0.34 +semait semer ver 19.80 25.41 0.03 1.49 ind:imp:3s; +semant semer ver 19.80 25.41 0.62 1.35 par:pre; +sembla sembler ver 229.25 572.84 0.87 32.43 ind:pas:3s; +semblable semblable adj s 8.93 52.91 5.99 31.42 +semblablement semblablement adv 0.01 0.81 0.01 0.81 +semblables semblable nom p 5.35 13.31 3.17 9.53 +semblaient sembler ver 229.25 572.84 2.99 55.81 ind:imp:3p; +semblais sembler ver 229.25 572.84 1.31 0.88 ind:imp:1s;ind:imp:2s; +semblait sembler ver 229.25 572.84 26.84 260.54 ind:imp:3s; +semblance semblance nom f s 0.02 0.27 0.02 0.27 +semblant semblant nom m s 25.63 32.09 25.55 31.89 +semblants semblant nom m p 25.63 32.09 0.08 0.20 +semble sembler ver 229.25 572.84 128.91 154.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +semblent sembler ver 229.25 572.84 14.09 22.23 ind:pre:3p;sub:pre:3p; +sembler sembler ver 229.25 572.84 6.01 4.53 inf;; +semblera sembler ver 229.25 572.84 2.15 1.42 ind:fut:3s; +sembleraient sembler ver 229.25 572.84 0.05 0.20 cnd:pre:3p; +semblerait sembler ver 229.25 572.84 10.04 2.57 cnd:pre:3s; +sembleront sembler ver 229.25 572.84 0.20 0.20 ind:fut:3p; +sembles sembler ver 229.25 572.84 5.11 1.22 ind:pre:2s; +semblez sembler ver 229.25 572.84 14.02 1.96 imp:pre:2p;ind:pre:2p; +sembliez sembler ver 229.25 572.84 0.94 0.34 ind:imp:2p; +semblions sembler ver 229.25 572.84 0.05 0.34 ind:imp:1p; +semblons sembler ver 229.25 572.84 0.53 0.00 imp:pre:1p;ind:pre:1p; +semblât sembler ver 229.25 572.84 0.00 0.74 sub:imp:3s; +semblèrent sembler ver 229.25 572.84 0.01 1.69 ind:pas:3p; +semblé sembler ver m s 229.25 572.84 7.21 16.96 par:pas; +semelle semelle nom f s 4.10 21.96 2.83 7.43 +semelles semelle nom f p 4.10 21.96 1.27 14.53 +semen_contra semen_contra nom m s 0.00 0.07 0.00 0.07 +semence semence nom f s 4.80 5.27 4.20 4.05 +semences semence nom f p 4.80 5.27 0.60 1.22 +semer semer ver 19.80 25.41 6.09 5.07 inf; +semestre semestre nom m s 3.53 1.49 3.24 1.49 +semestres semestre nom m p 3.53 1.49 0.29 0.00 +semestriel semestriel adj m s 0.05 0.07 0.01 0.07 +semestrielle semestriel adj f s 0.05 0.07 0.04 0.00 +semestriellement semestriellement adv 0.01 0.00 0.01 0.00 +semeur semeur nom m s 0.44 0.74 0.40 0.34 +semeurs semeur nom m p 0.44 0.74 0.04 0.27 +semeuse semeuse nom f s 0.11 0.47 0.11 0.47 +semeuses semeur nom f p 0.44 0.74 0.00 0.14 +semez semer ver 19.80 25.41 0.46 0.07 imp:pre:2p;ind:pre:2p; +semi_aride semi_aride adj f p 0.01 0.00 0.01 0.00 +semi_automatique semi_automatique adj s 0.71 0.07 0.59 0.07 +semi_automatique semi_automatique adj f p 0.71 0.07 0.12 0.00 +semi_circulaire semi_circulaire adj s 0.01 0.14 0.01 0.14 +semi_conducteur semi_conducteur nom m s 0.08 0.00 0.02 0.00 +semi_conducteur semi_conducteur nom m p 0.08 0.00 0.06 0.00 +semi_liberté semi_liberté nom f s 0.26 0.07 0.26 0.07 +semi_lunaire semi_lunaire adj f s 0.02 0.00 0.02 0.00 +semi_nomade semi_nomade adj m p 0.00 0.07 0.00 0.07 +semi_officiel semi_officiel adj m s 0.01 0.14 0.01 0.07 +semi_officiel semi_officiel adj f s 0.01 0.14 0.00 0.07 +semi_ouvert semi_ouvert adj m s 0.01 0.00 0.01 0.00 +semi_perméable semi_perméable adj f s 0.01 0.00 0.01 0.00 +semi_phonétique semi_phonétique adj f s 0.00 0.07 0.00 0.07 +semi_précieuse semi_précieuse adj f s 0.01 0.00 0.01 0.00 +semi_précieux semi_précieux adj f p 0.00 0.14 0.00 0.07 +semi_public semi_public adj m s 0.01 0.00 0.01 0.00 +semi_remorque semi_remorque nom m s 0.48 0.61 0.45 0.54 +semi_remorque semi_remorque nom m p 0.48 0.61 0.04 0.07 +semi_rigide semi_rigide adj f s 0.01 0.07 0.01 0.07 +semi semi nom m s 0.52 1.28 0.52 1.28 +semis semis nom m 0.04 2.84 0.04 2.84 +semoir semoir nom m s 0.04 0.34 0.04 0.20 +semoirs semoir nom m p 0.04 0.34 0.00 0.14 +semonce semonce nom f s 0.30 1.49 0.29 1.35 +semoncer semoncer ver 0.00 0.41 0.00 0.14 inf; +semonces semonce nom f p 0.30 1.49 0.01 0.14 +semoncé semoncer ver m s 0.00 0.41 0.00 0.07 par:pas; +semons semer ver 19.80 25.41 0.34 0.00 imp:pre:1p;ind:pre:1p; +semonça semoncer ver 0.00 0.41 0.00 0.07 ind:pas:3s; +semonçait semoncer ver 0.00 0.41 0.00 0.07 ind:imp:3s; +semonçant semoncer ver 0.00 0.41 0.00 0.07 par:pre; +semât semer ver 19.80 25.41 0.00 0.07 sub:imp:3s; +semoule semoule nom f s 0.89 1.35 0.89 1.35 +sempiternel sempiternel adj m s 0.07 2.77 0.00 0.88 +sempiternelle sempiternel adj f s 0.07 2.77 0.03 0.47 +sempiternellement sempiternellement adv 0.01 0.07 0.01 0.07 +sempiternelles sempiternel adj f p 0.07 2.77 0.01 0.88 +sempiternels sempiternel adj m p 0.07 2.77 0.03 0.54 +semtex semtex nom m 0.10 0.00 0.10 0.00 +semé semer ver m s 19.80 25.41 4.10 6.08 par:pas; +semée semer ver f s 19.80 25.41 0.40 3.99 par:pas; +semées semer ver f p 19.80 25.41 0.17 1.76 par:pas; +semés semer ver m p 19.80 25.41 1.44 1.69 par:pas; +sen sen nom m s 0.48 0.07 0.48 0.07 +senestre senestre adj f s 0.00 0.27 0.00 0.27 +senior senior adj m s 0.99 0.20 0.71 0.14 +seniors senior nom m p 0.64 0.07 0.30 0.07 +senne seine nom f s 0.14 0.47 0.00 0.20 +sens sentir ver 535.41 718.78 240.85 82.91 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sensas sensas adj s 0.44 0.00 0.44 0.00 +sensass sensass adj s 2.05 0.20 2.05 0.20 +sensation sensation nom f s 17.26 46.89 13.20 37.09 +sensationnalisme sensationnalisme nom m s 0.07 0.00 0.07 0.00 +sensationnel sensationnel adj m s 4.36 3.45 2.69 1.55 +sensationnelle sensationnel adj f s 4.36 3.45 1.37 1.35 +sensationnellement sensationnellement adv 0.00 0.07 0.00 0.07 +sensationnelles sensationnel adj f p 4.36 3.45 0.18 0.27 +sensationnels sensationnel adj m p 4.36 3.45 0.12 0.27 +sensations sensation nom f p 17.26 46.89 4.06 9.80 +senseur senseur nom m s 0.42 0.07 0.04 0.07 +senseurs senseur nom m p 0.42 0.07 0.38 0.00 +sensibilisait sensibiliser ver 0.27 0.68 0.00 0.07 ind:imp:3s; +sensibilisation sensibilisation nom f s 0.09 0.07 0.09 0.07 +sensibilise sensibiliser ver 0.27 0.68 0.02 0.14 imp:pre:2s;ind:pre:3s; +sensibiliser sensibiliser ver 0.27 0.68 0.16 0.07 inf; +sensibilisé sensibiliser ver m s 0.27 0.68 0.05 0.07 par:pas; +sensibilisée sensibiliser ver f s 0.27 0.68 0.01 0.27 par:pas; +sensibilisés sensibiliser ver m p 0.27 0.68 0.02 0.07 par:pas; +sensibilité sensibilité nom f s 5.95 12.36 5.72 12.03 +sensibilités sensibilité nom f p 5.95 12.36 0.23 0.34 +sensible sensible adj s 26.79 38.85 21.11 30.88 +sensiblement sensiblement adv 0.13 3.58 0.13 3.58 +sensiblerie sensiblerie nom f s 0.50 1.15 0.48 1.08 +sensibleries sensiblerie nom f p 0.50 1.15 0.02 0.07 +sensibles sensible adj p 26.79 38.85 5.67 7.97 +sensitif sensitif adj m s 0.21 0.54 0.00 0.20 +sensitifs sensitif adj m p 0.21 0.54 0.03 0.00 +sensitive sensitif adj f s 0.21 0.54 0.19 0.27 +sensitives sensitif adj f p 0.21 0.54 0.00 0.07 +sensorialité sensorialité nom f s 0.00 0.07 0.00 0.07 +sensoriel sensoriel adj m s 0.86 0.54 0.22 0.07 +sensorielle sensoriel adj f s 0.86 0.54 0.23 0.34 +sensorielles sensoriel adj f p 0.86 0.54 0.10 0.14 +sensoriels sensoriel adj m p 0.86 0.54 0.32 0.00 +sensé sensé adj m s 10.50 2.64 6.47 1.28 +sensualiste sensualiste nom s 0.00 0.07 0.00 0.07 +sensualité sensualité nom f s 1.14 6.76 1.14 6.69 +sensualités sensualité nom f p 1.14 6.76 0.00 0.07 +sensée sensé adj f s 10.50 2.64 2.86 0.88 +sensuel sensuel adj m s 4.10 10.68 1.28 4.05 +sensuelle sensuel adj f s 4.10 10.68 1.82 5.07 +sensuellement sensuellement adv 0.28 0.54 0.28 0.54 +sensuelles sensuel adj f p 4.10 10.68 0.33 0.95 +sensuels sensuel adj m p 4.10 10.68 0.67 0.61 +sensées sensé adj f p 10.50 2.64 0.37 0.07 +sensément sensément adv 0.00 0.07 0.00 0.07 +sensés sensé adj m p 10.50 2.64 0.80 0.41 +sent_bon sent_bon nom m s 0.00 0.54 0.00 0.54 +sent sentir ver 535.41 718.78 74.27 84.73 ind:pre:3s; +sentîmes sentir ver 535.41 718.78 0.00 0.41 ind:pas:1p; +sentît sentir ver 535.41 718.78 0.00 1.76 sub:imp:3s; +sentaient sentir ver 535.41 718.78 0.80 13.99 ind:imp:3p; +sentais sentir ver 535.41 718.78 23.21 84.59 ind:imp:1s;ind:imp:2s; +sentait sentir ver 535.41 718.78 13.37 170.47 ind:imp:3s; +sentant sentir ver 535.41 718.78 1.93 14.39 par:pre; +sente sentir ver 535.41 718.78 4.89 4.46 sub:pre:1s;sub:pre:3s; +sentence sentence nom f s 7.70 5.68 7.17 4.19 +sentences sentence nom f p 7.70 5.68 0.52 1.49 +sentencieuse sentencieux adj f s 0.06 2.70 0.01 0.54 +sentencieusement sentencieusement adv 0.00 1.22 0.00 1.22 +sentencieuses sentencieux adj f p 0.06 2.70 0.00 0.20 +sentencieux sentencieux adj m 0.06 2.70 0.05 1.96 +sentent sentir ver 535.41 718.78 11.21 11.08 ind:pre:3p;sub:pre:3p; +sentes sentir ver 535.41 718.78 2.60 0.41 sub:pre:2s; +senteur senteur nom f s 0.71 11.69 0.51 6.01 +senteurs senteur nom f p 0.71 11.69 0.20 5.68 +sentez sentir ver 535.41 718.78 32.56 5.34 imp:pre:2p;ind:pre:2p; +senti sentir ver m s 535.41 718.78 34.33 49.05 par:pas; +sentie sentir ver f s 535.41 718.78 7.30 7.91 par:pas; +sentier sentier nom m s 5.72 36.62 3.88 28.45 +sentiers sentier nom m p 5.72 36.62 1.85 8.18 +senties sentir ver f p 535.41 718.78 0.06 0.61 par:pas; +sentiez sentir ver 535.41 718.78 1.86 1.01 ind:imp:2p;sub:pre:2p; +sentiment sentiment nom m s 75.72 157.30 36.87 106.42 +sentimental sentimental adj m s 8.69 17.16 4.40 6.01 +sentimentale sentimental adj f s 8.69 17.16 2.30 5.81 +sentimentalement sentimentalement adv 0.82 0.54 0.82 0.54 +sentimentales sentimental adj f p 8.69 17.16 1.35 3.24 +sentimentaliser sentimentaliser ver 0.01 0.00 0.01 0.00 inf; +sentimentalisme sentimentalisme nom m s 0.75 0.27 0.75 0.27 +sentimentalité sentimentalité nom f s 0.18 1.22 0.18 1.15 +sentimentalités sentimentalité nom f p 0.18 1.22 0.00 0.07 +sentimentaux sentimental adj m p 8.69 17.16 0.64 2.09 +sentiments sentiment nom m p 75.72 157.30 38.86 50.88 +sentine sentine nom f s 0.00 0.54 0.00 0.34 +sentinelle sentinelle nom f s 4.50 12.57 2.91 7.64 +sentinelles sentinelle nom f p 4.50 12.57 1.59 4.93 +sentines sentine nom f p 0.00 0.54 0.00 0.20 +sentions sentir ver 535.41 718.78 0.59 3.11 ind:imp:1p;sub:pre:1p; +sentir sentir ver 535.41 718.78 58.48 74.19 inf; +sentira sentir ver 535.41 718.78 2.50 1.08 ind:fut:3s; +sentirai sentir ver 535.41 718.78 2.08 1.42 ind:fut:1s; +sentiraient sentir ver 535.41 718.78 0.09 0.47 cnd:pre:3p; +sentirais sentir ver 535.41 718.78 3.82 1.28 cnd:pre:1s;cnd:pre:2s; +sentirait sentir ver 535.41 718.78 1.20 2.91 cnd:pre:3s; +sentiras sentir ver 535.41 718.78 7.07 0.47 ind:fut:2s; +sentirent sentir ver 535.41 718.78 0.05 2.09 ind:pas:3p; +sentirez sentir ver 535.41 718.78 3.74 0.74 ind:fut:2p; +sentiriez sentir ver 535.41 718.78 0.37 0.14 cnd:pre:2p; +sentirons sentir ver 535.41 718.78 0.08 0.07 ind:fut:1p; +sentiront sentir ver 535.41 718.78 0.51 0.61 ind:fut:3p; +sentis sentir ver m p 535.41 718.78 2.60 24.12 ind:pas:1s;par:pas; +sentisse sentir ver 535.41 718.78 0.00 0.34 sub:imp:1s; +sentissent sentir ver 535.41 718.78 0.00 0.20 sub:imp:3p; +sentit sentir ver 535.41 718.78 1.98 69.66 ind:pas:3s; +sentons sentir ver 535.41 718.78 1.03 2.77 imp:pre:1p;ind:pre:1p; +seppuku seppuku nom m s 0.07 0.00 0.07 0.00 +seps seps nom m 0.00 0.07 0.00 0.07 +sept sept adj_num 66.07 75.61 66.07 75.61 +septale septal adj f s 0.04 0.00 0.03 0.00 +septante_cinq septante_cinq adj_num 0.00 0.07 0.00 0.07 +septante_sept septante_sept adj_num 0.20 0.07 0.20 0.07 +septante septante adj_num 0.11 0.07 0.11 0.07 +septaux septal adj m p 0.04 0.00 0.01 0.00 +septembre septembre nom m 16.01 43.58 16.01 43.58 +septembriseur septembriseur nom m s 0.00 0.07 0.00 0.07 +septennat septennat nom m s 0.00 0.14 0.00 0.14 +septentrion septentrion nom m s 0.16 0.07 0.16 0.07 +septentrional septentrional adj m s 0.02 0.74 0.01 0.14 +septentrionale septentrional adj f s 0.02 0.74 0.01 0.41 +septentrionales septentrional adj f p 0.02 0.74 0.00 0.20 +septicité septicité nom f s 0.03 0.00 0.03 0.00 +septicémie septicémie nom f s 0.23 0.20 0.23 0.20 +septicémique septicémique adj f s 0.04 0.00 0.04 0.00 +septidi septidi nom m s 0.00 0.07 0.00 0.07 +septime septime nom f s 0.81 0.00 0.81 0.00 +septique septique adj s 0.58 0.41 0.58 0.41 +septième septième adj 4.25 5.61 4.25 5.61 +septièmes septième nom p 2.81 3.18 0.01 0.00 +septuagénaire septuagénaire nom s 0.05 0.88 0.04 0.74 +septuagénaires septuagénaire nom p 0.05 0.88 0.01 0.14 +septum septum nom m s 0.09 0.00 0.09 0.00 +septuor septuor nom m s 0.01 0.00 0.01 0.00 +septuple septuple nom m s 0.03 0.00 0.03 0.00 +sepuku sepuku nom m s 0.00 0.07 0.00 0.07 +sequin sequin nom m s 0.29 0.27 0.01 0.07 +sequins sequin nom m p 0.29 0.27 0.28 0.20 +sera être aux 8074.24 6501.82 159.41 66.69 ind:fut:3s; +serai être aux 8074.24 6501.82 28.15 10.20 ind:fut:1s; +seraient être aux 8074.24 6501.82 10.47 30.81 cnd:pre:3p; +serais être aux 8074.24 6501.82 45.02 36.42 cnd:pre:2s; +serait être aux 8074.24 6501.82 59.74 111.35 cnd:pre:3s; +seras être aux 8074.24 6501.82 25.57 4.39 ind:fut:2s; +serbe serbe adj s 3.48 0.88 2.44 0.54 +serbes serbe nom p 2.85 0.95 2.31 0.74 +serbo_croate serbo_croate nom s 0.14 0.20 0.14 0.20 +serein serein adj m s 5.22 10.61 3.38 3.72 +sereine serein adj f s 5.22 10.61 1.04 5.81 +sereinement sereinement adv 0.43 0.74 0.43 0.74 +sereines serein adj f p 5.22 10.61 0.31 0.41 +sereins serein adj m p 5.22 10.61 0.50 0.68 +serez être aux 8074.24 6501.82 26.65 6.76 ind:fut:2p; +serf serf nom m s 0.56 1.08 0.23 0.27 +serfouette serfouette nom f s 0.00 0.07 0.00 0.07 +serfs serf nom m p 0.56 1.08 0.33 0.81 +serge serge nom f s 1.10 2.64 1.10 2.50 +sergent_chef sergent_chef nom m s 1.52 1.49 1.38 1.42 +sergent_major sergent_major nom m s 0.71 1.35 0.71 1.28 +sergent_pilote sergent_pilote nom m s 0.00 0.07 0.00 0.07 +sergent sergent nom m s 27.36 23.65 26.48 20.88 +sergent_chef sergent_chef nom m p 1.52 1.49 0.14 0.07 +sergent_major sergent_major nom m p 0.71 1.35 0.00 0.07 +sergents sergent nom m p 27.36 23.65 0.88 2.77 +serges serge nom f p 1.10 2.64 0.00 0.14 +sergot sergot nom m s 0.01 0.14 0.01 0.07 +sergots sergot nom m p 0.01 0.14 0.00 0.07 +sergé sergé nom m s 0.00 0.20 0.00 0.20 +serial serial nom m s 0.69 0.07 0.69 0.07 +seriez être aux 8074.24 6501.82 6.69 3.24 cnd:pre:2p; +serin serin nom m s 0.07 3.24 0.05 1.49 +serinais seriner ver 0.25 2.03 0.01 0.07 ind:imp:1s;ind:imp:2s; +serinait seriner ver 0.25 2.03 0.01 0.54 ind:imp:3s; +serine seriner ver 0.25 2.03 0.01 0.47 ind:pre:1s;ind:pre:3s; +seriner seriner ver 0.25 2.03 0.19 0.47 inf; +serinera seriner ver 0.25 2.03 0.00 0.07 ind:fut:3s; +serines seriner ver 0.25 2.03 0.03 0.07 ind:pre:2s; +seringa seringa nom m s 0.14 0.81 0.14 0.54 +seringas seringa nom m p 0.14 0.81 0.00 0.27 +seringuaient seringuer ver 0.00 0.34 0.00 0.07 ind:imp:3p; +seringuait seringuer ver 0.00 0.34 0.00 0.07 ind:imp:3s; +seringue seringue nom f s 6.15 5.00 4.39 4.39 +seringueiros seringueiro nom m p 0.00 0.07 0.00 0.07 +seringuer seringuer ver 0.00 0.34 0.00 0.14 inf; +seringues seringue nom f p 6.15 5.00 1.76 0.61 +seringuée seringuer ver f s 0.00 0.34 0.00 0.07 par:pas; +serinions seriner ver 0.25 2.03 0.00 0.07 ind:imp:1p; +serins serin nom m p 0.07 3.24 0.01 1.49 +seriné seriner ver m s 0.25 2.03 0.00 0.20 par:pas; +serinées seriner ver f p 0.25 2.03 0.00 0.07 par:pas; +serions être aux 8074.24 6501.82 2.56 3.99 cnd:pre:1p; +serment serment nom m s 21.19 12.23 18.18 8.85 +serments serment nom m p 21.19 12.23 3.01 3.38 +sermon sermon nom m s 7.61 6.42 4.38 3.85 +sermonna sermonner ver 1.40 1.89 0.00 0.34 ind:pas:3s; +sermonnaient sermonner ver 1.40 1.89 0.00 0.14 ind:imp:3p; +sermonnait sermonner ver 1.40 1.89 0.00 0.20 ind:imp:3s; +sermonnant sermonner ver 1.40 1.89 0.04 0.07 par:pre; +sermonne sermonner ver 1.40 1.89 0.14 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sermonner sermonner ver 1.40 1.89 0.78 0.47 inf; +sermonnerai sermonner ver 1.40 1.89 0.01 0.00 ind:fut:1s; +sermonnes sermonner ver 1.40 1.89 0.02 0.00 ind:pre:2s; +sermonneur sermonneur nom m s 0.28 0.00 0.27 0.00 +sermonneurs sermonneur nom m p 0.28 0.00 0.01 0.00 +sermonnez sermonner ver 1.40 1.89 0.33 0.00 imp:pre:2p;ind:pre:2p; +sermonné sermonner ver m s 1.40 1.89 0.05 0.34 par:pas; +sermonnée sermonner ver f s 1.40 1.89 0.03 0.07 par:pas; +sermons sermon nom m p 7.61 6.42 3.22 2.57 +serons être aux 8074.24 6501.82 8.50 5.41 ind:fut:1p; +seront être aux 8074.24 6501.82 39.61 23.65 ind:fut:3p; +serpe serpe nom f s 0.01 4.32 0.01 4.12 +serpent serpent nom m s 32.20 21.08 20.91 13.24 +serpentaient serpenter ver 0.09 5.88 0.00 0.61 ind:imp:3p; +serpentaire serpentaire nom s 0.00 0.07 0.00 0.07 +serpentait serpenter ver 0.09 5.88 0.02 1.89 ind:imp:3s; +serpentant serpenter ver 0.09 5.88 0.04 0.74 par:pre; +serpente serpenter ver 0.09 5.88 0.01 1.62 ind:pre:1s;ind:pre:3s; +serpenteau serpenteau nom m s 0.01 0.00 0.01 0.00 +serpentement serpentement nom m s 0.00 0.14 0.00 0.07 +serpentements serpentement nom m p 0.00 0.14 0.00 0.07 +serpentent serpenter ver 0.09 5.88 0.01 0.27 ind:pre:3p; +serpenter serpenter ver 0.09 5.88 0.00 0.61 inf; +serpentiforme serpentiforme adj m s 0.00 0.07 0.00 0.07 +serpentin serpentin adj m s 0.22 0.47 0.03 0.07 +serpentine serpentin adj f s 0.22 0.47 0.04 0.20 +serpentines serpentin adj f p 0.22 0.47 0.15 0.14 +serpentins serpentin nom m p 0.22 1.49 0.20 1.08 +serpentons serpenter ver 0.09 5.88 0.00 0.07 ind:pre:1p; +serpents serpent nom m p 32.20 21.08 11.29 7.84 +serpenté serpenter ver m s 0.09 5.88 0.00 0.07 par:pas; +serpes serpe nom f p 0.01 4.32 0.00 0.20 +serpette serpette nom f s 0.00 0.47 0.00 0.47 +serpillière serpillière nom f s 1.85 4.46 1.65 3.11 +serpillières serpillière nom f p 1.85 4.46 0.21 1.35 +serpolet serpolet nom m s 0.00 0.14 0.00 0.14 +serra serra nom f s 0.82 2.09 0.82 2.09 +serrage serrage nom m s 0.01 0.47 0.01 0.47 +serrai serrer ver 50.99 207.50 0.01 2.84 ind:pas:1s; +serraient serrer ver 50.99 207.50 0.04 5.81 ind:imp:3p; +serrais serrer ver 50.99 207.50 0.68 2.77 ind:imp:1s;ind:imp:2s; +serrait serrer ver 50.99 207.50 1.29 26.96 ind:imp:3s; +serrant serrer ver 50.99 207.50 1.08 22.84 par:pre; +serrante serrante nom f s 0.00 0.20 0.00 0.20 +serre_file serre_file nom m s 0.04 0.34 0.04 0.34 +serre_joint serre_joint nom m s 0.04 0.14 0.01 0.00 +serre_joint serre_joint nom m p 0.04 0.14 0.03 0.14 +serre_livres serre_livres nom m 0.03 0.07 0.03 0.07 +serre_tête serre_tête nom m s 0.22 0.74 0.21 0.74 +serre_tête serre_tête nom m p 0.22 0.74 0.01 0.00 +serre serrer ver 50.99 207.50 11.84 27.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +serrement serrement nom m s 0.03 1.76 0.03 1.55 +serrements serrement nom m p 0.03 1.76 0.00 0.20 +serrent serrer ver 50.99 207.50 1.78 3.38 ind:pre:3p;sub:pre:3p; +serrer serrer ver 50.99 207.50 13.68 23.24 inf; +serrera serrer ver 50.99 207.50 0.69 0.20 ind:fut:3s; +serrerai serrer ver 50.99 207.50 0.32 0.34 ind:fut:1s; +serreraient serrer ver 50.99 207.50 0.00 0.34 cnd:pre:3p; +serrerais serrer ver 50.99 207.50 0.12 0.41 cnd:pre:1s; +serrerait serrer ver 50.99 207.50 0.13 0.47 cnd:pre:3s; +serrerez serrer ver 50.99 207.50 0.06 0.07 ind:fut:2p; +serrerons serrer ver 50.99 207.50 0.00 0.07 ind:fut:1p; +serreront serrer ver 50.99 207.50 0.01 0.20 ind:fut:3p; +serres serrer ver 50.99 207.50 1.60 0.34 ind:pre:2s;sub:pre:2s; +serrez serrer ver 50.99 207.50 5.34 1.28 imp:pre:2p;ind:pre:2p; +serriez serrer ver 50.99 207.50 0.06 0.07 ind:imp:2p; +serrions serrer ver 50.99 207.50 0.12 0.47 ind:imp:1p; +serrâmes serrer ver 50.99 207.50 0.00 0.41 ind:pas:1p; +serrons serrer ver 50.99 207.50 0.97 1.22 imp:pre:1p;ind:pre:1p; +serrât serrer ver 50.99 207.50 0.00 0.07 sub:imp:3s; +serrèrent serrer ver 50.99 207.50 0.00 3.78 ind:pas:3p; +serré serré adj m s 12.00 41.28 7.31 9.53 +serrée serré adj f s 12.00 41.28 1.68 8.72 +serrées serré adj f p 12.00 41.28 0.78 13.31 +serrure serrure nom f s 10.07 19.26 7.40 16.08 +serrurerie serrurerie nom f s 0.22 0.54 0.22 0.54 +serrures serrure nom f p 10.07 19.26 2.67 3.18 +serrurier serrurier nom m s 2.25 2.23 2.20 1.96 +serruriers serrurier nom m p 2.25 2.23 0.04 0.27 +serrurière serrurier nom f s 2.25 2.23 0.01 0.00 +serrés serré adj m p 12.00 41.28 2.23 9.73 +sers servir ver 309.81 286.22 44.58 5.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sert servir ver 309.81 286.22 73.13 45.47 ind:pre:3s; +sertao sertao nom m s 0.10 0.07 0.10 0.07 +serti sertir ver m s 0.52 3.04 0.19 0.95 par:pas; +sertie sertir ver f s 0.52 3.04 0.17 0.95 par:pas; +serties sertir ver f p 0.52 3.04 0.01 0.34 par:pas; +sertir sertir ver 0.52 3.04 0.01 0.07 inf; +sertirait sertir ver 0.52 3.04 0.00 0.07 cnd:pre:3s; +sertis sertir ver m p 0.52 3.04 0.14 0.41 par:pas; +sertissage sertissage nom m s 0.00 0.07 0.00 0.07 +sertissaient sertir ver 0.52 3.04 0.00 0.07 ind:imp:3p; +sertissait sertir ver 0.52 3.04 0.00 0.07 ind:imp:3s; +sertissant sertir ver 0.52 3.04 0.00 0.07 par:pre; +sertissent sertir ver 0.52 3.04 0.00 0.07 ind:pre:3p; +sertisseur sertisseur nom m s 0.00 0.07 0.00 0.07 +sertão sertão nom m s 2.00 0.00 2.00 0.00 +servîmes servir ver 309.81 286.22 0.00 0.07 ind:pas:1p; +servît servir ver 309.81 286.22 0.00 0.74 sub:imp:3s; +servage servage nom m s 0.03 0.54 0.03 0.54 +servaient servir ver 309.81 286.22 1.98 12.30 ind:imp:3p; +servais servir ver 309.81 286.22 1.19 1.69 ind:imp:1s;ind:imp:2s; +servait servir ver 309.81 286.22 6.41 42.43 ind:imp:3s; +serval serval nom m s 0.01 0.00 0.01 0.00 +servant servir ver 309.81 286.22 2.20 7.64 par:pre; +servante servant nom f s 7.41 18.65 6.36 12.30 +servantes servant nom f p 7.41 18.65 0.77 4.46 +servants servant adj m p 1.09 1.15 0.26 0.27 +serve servir ver 309.81 286.22 5.83 4.12 sub:pre:1s;sub:pre:3s; +servent servir ver 309.81 286.22 14.43 11.82 ind:pre:3p; +serves servir ver 309.81 286.22 0.62 0.00 sub:pre:2s; +serveur serveur nom m s 21.57 16.42 9.21 5.27 +serveurs serveur nom m p 21.57 16.42 2.41 2.84 +serveuse serveur nom f s 21.57 16.42 9.96 6.62 +serveuses serveuse nom f p 1.64 0.00 1.64 0.00 +servez servir ver 309.81 286.22 13.39 1.89 imp:pre:2p;ind:pre:2p; +servi servir ver m s 309.81 286.22 36.58 38.72 par:pas; +serviabilité serviabilité nom f s 0.01 0.00 0.01 0.00 +serviable serviable adj s 1.88 2.23 1.48 2.03 +serviables serviable adj m p 1.88 2.23 0.39 0.20 +service service nom m s 187.67 142.77 156.00 106.28 +services service nom m p 187.67 142.77 31.67 36.49 +servie servir ver f s 309.81 286.22 3.04 3.45 par:pas; +servies servir ver f p 309.81 286.22 0.44 0.88 par:pas; +serviette_éponge serviette_éponge nom f s 0.00 1.49 0.00 1.22 +serviette serviette nom f s 25.64 35.07 17.16 26.62 +serviette_éponge serviette_éponge nom f p 0.00 1.49 0.00 0.27 +serviettes serviette nom f p 25.64 35.07 8.48 8.45 +serviez servir ver 309.81 286.22 0.19 0.34 ind:imp:2p; +servile servile adj s 1.14 3.65 0.89 2.77 +servilement servilement adv 0.02 0.47 0.02 0.47 +serviles servile adj p 1.14 3.65 0.25 0.88 +servilité servilité nom f s 0.01 1.22 0.01 1.15 +servilités servilité nom f p 0.01 1.22 0.00 0.07 +servions servir ver 309.81 286.22 0.19 0.61 ind:imp:1p; +servir servir ver 309.81 286.22 73.55 74.59 inf; +servira servir ver 309.81 286.22 12.20 3.58 ind:fut:3s; +servirai servir ver 309.81 286.22 3.13 0.68 ind:fut:1s; +serviraient servir ver 309.81 286.22 0.23 1.49 cnd:pre:3p; +servirais servir ver 309.81 286.22 0.77 0.41 cnd:pre:1s;cnd:pre:2s; +servirait servir ver 309.81 286.22 6.40 7.09 cnd:pre:3s; +serviras servir ver 309.81 286.22 0.88 0.27 ind:fut:2s; +servirent servir ver 309.81 286.22 0.04 1.15 ind:pas:3p; +servirez servir ver 309.81 286.22 1.14 0.07 ind:fut:2p; +serviriez servir ver 309.81 286.22 0.07 0.07 cnd:pre:2p; +servirions servir ver 309.81 286.22 0.02 0.07 cnd:pre:1p; +servirons servir ver 309.81 286.22 0.64 0.14 ind:fut:1p; +serviront servir ver 309.81 286.22 2.02 2.03 ind:fut:3p; +servis servir ver m p 309.81 286.22 2.71 4.05 ind:pas:1s;par:pas; +servissent servir ver 309.81 286.22 0.00 0.27 sub:imp:3p; +servit servir ver 309.81 286.22 0.46 12.23 ind:pas:3s; +serviteur serviteur nom m s 16.43 17.77 10.63 7.16 +serviteurs serviteur nom m p 16.43 17.77 5.80 10.61 +servitude servitude nom f s 0.57 7.43 0.42 4.73 +servitudes servitude nom f p 0.57 7.43 0.16 2.70 +servofrein servofrein nom m s 0.03 0.00 0.03 0.00 +servomoteur servomoteur nom m s 0.02 0.00 0.01 0.00 +servomoteurs servomoteur nom m p 0.02 0.00 0.01 0.00 +servomécanisme servomécanisme nom m s 0.01 0.00 0.01 0.00 +servons servir ver 309.81 286.22 1.36 0.47 imp:pre:1p;ind:pre:1p; +ses ses adj_pos 757.68 3105.41 757.68 3105.41 +session session nom f s 3.29 2.30 2.36 1.89 +sessions session nom f p 3.29 2.30 0.93 0.41 +sesterces sesterce nom m p 0.85 0.34 0.85 0.34 +set set nom m s 3.76 0.61 3.05 0.34 +sets set nom m p 3.76 0.61 0.71 0.27 +setter setter nom m s 0.07 0.61 0.07 0.41 +setters setter nom m p 0.07 0.61 0.00 0.20 +seuil seuil nom m s 5.49 49.86 5.45 48.85 +seuils seuil nom m p 5.49 49.86 0.04 1.01 +seul seul adj m s 891.45 915.27 461.20 478.58 +seulabre seulabre adj m s 0.00 0.88 0.00 0.81 +seulabres seulabre adj p 0.00 0.88 0.00 0.07 +seule seul adj f s 891.45 915.27 349.74 318.85 +seulement seulement adv 279.25 397.97 279.25 397.97 +seules seul adj f p 891.45 915.27 17.22 30.27 +seulet seulet adj m s 0.51 1.22 0.20 0.00 +seulette seulet adj f s 0.51 1.22 0.31 1.15 +seulettes seulet adj f p 0.51 1.22 0.00 0.07 +seuls seul adj m p 891.45 915.27 63.29 87.57 +seventies seventies nom p 0.07 0.07 0.07 0.07 +sevrage sevrage nom m s 0.51 1.08 0.51 1.01 +sevrages sevrage nom m p 0.51 1.08 0.00 0.07 +sevrait sevrer ver 0.42 2.36 0.00 0.07 ind:imp:3s; +sevrer sevrer ver 0.42 2.36 0.12 0.27 inf; +sevré sevrer ver m s 0.42 2.36 0.07 0.95 par:pas; +sevrée sevrer ver f s 0.42 2.36 0.05 0.81 par:pas; +sevrées sevrer ver f p 0.42 2.36 0.01 0.00 par:pas; +sevrés sevrer ver m p 0.42 2.36 0.17 0.27 par:pas; +sex_appeal sex_appeal nom m s 0.44 0.74 0.38 0.68 +sex_shop sex_shop nom m s 0.57 0.54 0.41 0.34 +sex_shop sex_shop nom m p 0.57 0.54 0.07 0.20 +sex_symbol sex_symbol nom m s 0.08 0.07 0.08 0.07 +sex_appeal sex_appeal nom m s 0.44 0.74 0.06 0.07 +sex_shop sex_shop nom m s 0.57 0.54 0.08 0.00 +sex_shop sex_shop nom m p 0.57 0.54 0.01 0.00 +sexagénaire sexagénaire nom s 0.17 0.74 0.15 0.61 +sexagénaires sexagénaire nom p 0.17 0.74 0.02 0.14 +sexe sexe nom m s 52.09 52.70 50.44 46.49 +sexes sexe nom m p 52.09 52.70 1.65 6.22 +sexisme sexisme nom m s 0.39 0.20 0.39 0.20 +sexiste sexiste adj s 1.09 0.07 0.96 0.07 +sexistes sexiste adj p 1.09 0.07 0.13 0.00 +sexologie sexologie nom f s 0.21 0.27 0.21 0.27 +sexologique sexologique adj s 0.00 0.07 0.00 0.07 +sexologue sexologue nom s 0.07 0.20 0.07 0.00 +sexologues sexologue nom p 0.07 0.20 0.00 0.20 +sextant sextant nom m s 0.22 0.54 0.22 0.54 +sextidi sextidi nom m s 0.00 0.07 0.00 0.07 +sextile sextil adj f s 0.00 0.07 0.00 0.07 +sexto sexto adv 0.01 0.00 0.01 0.00 +sextuor sextuor nom m s 0.07 0.14 0.07 0.14 +sextuple sextuple adj m s 0.01 0.07 0.01 0.07 +sexualiser sexualiser ver 0.02 0.00 0.01 0.00 inf; +sexualisé sexualiser ver m s 0.02 0.00 0.01 0.00 par:pas; +sexualité sexualité nom f s 6.02 5.14 6.02 5.14 +sexuel sexuel adj m s 46.15 20.54 15.97 6.62 +sexuelle sexuel adj f s 46.15 20.54 14.74 8.31 +sexuellement sexuellement adv 4.61 0.88 4.61 0.88 +sexuelles sexuel adj f p 46.15 20.54 6.37 2.57 +sexuels sexuel adj m p 46.15 20.54 9.07 3.04 +sexué sexué adj m s 0.01 0.20 0.00 0.14 +sexués sexué adj m p 0.01 0.20 0.01 0.07 +sexy sexy adj 26.83 1.49 26.83 1.49 +seyait seoir ver 1.75 3.78 0.00 0.74 ind:imp:3s; +seyant seyant adj m s 0.67 1.15 0.54 0.88 +seyante seyant adj f s 0.67 1.15 0.07 0.00 +seyantes seyant adj f p 0.67 1.15 0.02 0.14 +seyants seyant adj m p 0.67 1.15 0.03 0.14 +shôgun shôgun nom m s 0.00 0.07 0.00 0.07 +shabbat shabbat nom m s 4.25 0.74 4.25 0.74 +shah shah nom m s 1.13 0.61 1.13 0.54 +shahs shah nom m p 1.13 0.61 0.00 0.07 +shake_hand shake_hand nom m s 0.00 0.14 0.00 0.14 +shaker shaker nom m s 0.50 0.81 0.50 0.81 +shakespearien shakespearien adj m s 0.21 0.41 0.15 0.27 +shakespearienne shakespearien adj f s 0.21 0.41 0.05 0.14 +shakespeariens shakespearien adj m p 0.21 0.41 0.01 0.00 +shako shako nom m s 0.01 1.22 0.01 0.81 +shakos shako nom m p 0.01 1.22 0.00 0.41 +shale shale nom m s 0.17 0.00 0.17 0.00 +shaman shaman nom m s 0.92 0.07 0.81 0.07 +shamans shaman nom m p 0.92 0.07 0.11 0.00 +shamisen shamisen nom m s 0.01 0.07 0.01 0.07 +shampoing shampoing nom m s 1.57 0.07 1.38 0.07 +shampoings shampoing nom m p 1.57 0.07 0.19 0.00 +shampooiner shampooiner ver 0.03 0.00 0.03 0.00 inf; +shampooing shampooing nom m s 2.61 2.30 2.35 1.69 +shampooings shampooing nom m p 2.61 2.30 0.25 0.61 +shampouine shampouiner ver 0.14 0.14 0.01 0.07 ind:pre:3s; +shampouiner shampouiner ver 0.14 0.14 0.12 0.00 inf; +shampouineur shampouineur nom m s 0.24 1.62 0.11 0.00 +shampouineuse shampouineur nom f s 0.24 1.62 0.13 1.42 +shampouineuses shampouineur nom f p 0.24 1.62 0.00 0.20 +shampouiné shampouiner ver m s 0.14 0.14 0.00 0.07 par:pas; +shanghaien shanghaien adj m s 0.01 0.00 0.01 0.00 +shanghaien shanghaien nom m s 0.02 0.00 0.01 0.00 +shanghaiens shanghaien nom m p 0.02 0.00 0.01 0.00 +shantung shantung nom m s 0.00 1.08 0.00 1.08 +shed shed nom m s 0.17 0.00 0.17 0.00 +shekels shekel nom m p 1.03 0.00 1.03 0.00 +sheriff sheriff nom m s 2.61 0.14 2.61 0.14 +sherpa sherpa nom m s 0.18 0.07 0.14 0.00 +sherpas sherpa nom m p 0.18 0.07 0.04 0.07 +sherry sherry nom m s 2.75 0.27 2.75 0.27 +shetland shetland nom m s 0.00 0.74 0.00 0.61 +shetlands shetland nom m p 0.00 0.74 0.00 0.14 +shiatsu shiatsu nom m s 0.28 0.00 0.28 0.00 +shift shift adj s 0.19 0.00 0.19 0.00 +shilling shilling nom m s 2.28 0.20 0.55 0.00 +shillings shilling nom m p 2.28 0.20 1.73 0.20 +shilom shilom nom m s 0.01 0.00 0.01 0.00 +shimmy shimmy nom m s 0.11 0.20 0.11 0.20 +shingle shingle nom m s 0.01 0.00 0.01 0.00 +shintô shintô nom m s 0.01 0.00 0.01 0.00 +shintoïsme shintoïsme nom m s 0.00 0.07 0.00 0.07 +shintoïste shintoïste adj m s 0.02 0.07 0.02 0.07 +shipchandler shipchandler nom m s 0.00 0.07 0.00 0.07 +shipping shipping nom m s 0.04 0.07 0.04 0.07 +shirting shirting nom m s 0.00 0.07 0.00 0.07 +shit shit nom m s 3.00 1.35 3.00 1.35 +shocking shocking adj m s 0.03 0.07 0.03 0.07 +shogoun shogoun nom m s 0.10 0.00 0.10 0.00 +shogun shogun nom m s 0.32 0.00 0.32 0.00 +shogunal shogunal adj m s 0.03 0.00 0.01 0.00 +shogunale shogunal adj f s 0.03 0.00 0.02 0.00 +shogunat shogunat nom m s 0.06 0.00 0.06 0.00 +shoot shoot nom m s 1.29 2.50 1.21 2.23 +shoota shooter ver 6.84 5.14 0.00 0.14 ind:pas:3s; +shootai shooter ver 6.84 5.14 0.00 0.07 ind:pas:1s; +shootais shooter ver 6.84 5.14 0.05 0.14 ind:imp:1s;ind:imp:2s; +shootait shooter ver 6.84 5.14 0.16 0.27 ind:imp:3s; +shootant shooter ver 6.84 5.14 0.04 0.14 par:pre; +shoote shooter ver 6.84 5.14 2.67 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +shootent shooter ver 6.84 5.14 0.14 0.20 ind:pre:3p; +shooter shooter ver 6.84 5.14 1.88 1.22 inf;; +shootera shooter ver 6.84 5.14 0.04 0.00 ind:fut:3s; +shooterai shooter ver 6.84 5.14 0.02 0.07 ind:fut:1s; +shooteraient shooter ver 6.84 5.14 0.01 0.00 cnd:pre:3p; +shooteras shooter ver 6.84 5.14 0.01 0.07 ind:fut:2s; +shootes shooter ver 6.84 5.14 0.22 0.20 ind:pre:2s; +shooteuse shooteur nom f s 0.03 0.27 0.03 0.27 +shootiez shooter ver 6.84 5.14 0.01 0.00 ind:imp:2p; +shootions shooter ver 6.84 5.14 0.00 0.07 ind:imp:1p; +shootons shooter ver 6.84 5.14 0.01 0.00 imp:pre:1p; +shoots shoot nom m p 1.29 2.50 0.08 0.27 +shooté shooter ver m s 6.84 5.14 0.96 1.01 par:pas; +shootée shooter ver f s 6.84 5.14 0.45 0.14 par:pas; +shootés shooter ver m p 6.84 5.14 0.19 0.00 par:pas; +shopping shopping nom m s 5.75 0.54 5.64 0.47 +shoppings shopping nom m p 5.75 0.54 0.10 0.07 +short short nom m s 4.42 8.24 3.79 6.55 +shorts short nom m p 4.42 8.24 0.62 1.69 +shoshones shoshone nom p 0.07 0.00 0.07 0.00 +show_business show_business nom m 0.00 0.27 0.00 0.27 +show show nom m s 0.09 2.64 0.09 2.57 +showbiz showbiz nom m 0.00 0.68 0.00 0.68 +shows show nom m p 0.09 2.64 0.00 0.07 +shrapnel shrapnel nom m s 0.10 0.34 0.09 0.00 +shrapnell shrapnell nom m s 0.01 1.42 0.01 0.54 +shrapnells shrapnell nom m p 0.01 1.42 0.00 0.88 +shrapnels shrapnel nom m p 0.10 0.34 0.01 0.34 +shunt shunt nom m s 0.16 0.00 0.16 0.00 +shunte shunter ver 0.03 0.07 0.01 0.07 ind:pre:1s;ind:pre:3s; +shunter shunter ver 0.03 0.07 0.02 0.00 inf; +shéol shéol nom m s 0.00 0.07 0.00 0.07 +shérif shérif nom m s 46.65 1.28 45.75 1.08 +shérifs shérif nom m p 46.65 1.28 0.90 0.20 +si si con 1374.43 933.99 1374.43 933.99 +siam siam nom m s 0.01 0.00 0.01 0.00 +siamois siamois nom m 1.57 2.36 1.48 2.23 +siamoise siamois adj f s 0.85 1.62 0.01 0.20 +siamoises siamois nom f p 1.57 2.36 0.08 0.00 +sibilant sibilant adj m s 0.00 0.07 0.00 0.07 +sibérien sibérien adj m s 0.71 3.99 0.22 0.74 +sibérienne sibérien adj f s 0.71 3.99 0.05 2.77 +sibériennes sibérien adj f p 0.71 3.99 0.20 0.34 +sibériens sibérien adj m p 0.71 3.99 0.24 0.14 +sibylle sibylle nom f s 0.37 0.61 0.34 0.34 +sibylles sibylle nom f p 0.37 0.61 0.04 0.27 +sibyllin sibyllin adj m s 0.07 2.36 0.02 0.95 +sibylline sibyllin adj f s 0.07 2.36 0.03 0.68 +sibyllines sibyllin adj f p 0.07 2.36 0.01 0.47 +sibyllins sibyllin adj m p 0.07 2.36 0.01 0.27 +sic_transit_gloria_mundi sic_transit_gloria_mundi adv 0.03 0.07 0.03 0.07 +sic sic adv_sup 0.20 1.35 0.20 1.35 +sicaire sicaire nom m s 0.00 0.14 0.00 0.07 +sicaires sicaire nom m p 0.00 0.14 0.00 0.07 +sicilien sicilien nom m s 3.27 1.96 1.03 1.69 +sicilienne sicilien adj f s 2.61 1.22 0.84 0.20 +siciliennes sicilien adj f p 2.61 1.22 0.25 0.34 +siciliens sicilien nom m p 3.27 1.96 2.21 0.27 +sicle sicle nom m s 0.02 0.00 0.02 0.00 +sida sida nom m s 5.02 5.20 5.02 5.14 +sidaïque sidaïque adj m s 0.02 0.00 0.02 0.00 +sidas sida nom m p 5.02 5.20 0.00 0.07 +side_car side_car nom m s 0.23 1.08 0.23 0.81 +side_car side_car nom m p 0.23 1.08 0.00 0.27 +sidi sidi nom m s 0.00 0.81 0.00 0.68 +sidis sidi nom m p 0.00 0.81 0.00 0.14 +sidère sidérer ver 1.03 2.16 0.29 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sidéenne sidéen adj f s 0.03 0.00 0.01 0.00 +sidéens sidéen nom m p 0.18 0.00 0.18 0.00 +sidérais sidérer ver 1.03 2.16 0.00 0.07 ind:imp:1s; +sidérait sidérer ver 1.03 2.16 0.01 0.20 ind:imp:3s; +sidéral sidéral adj m s 0.11 0.88 0.04 0.41 +sidérale sidéral adj f s 0.11 0.88 0.07 0.27 +sidérales sidéral adj f p 0.11 0.88 0.00 0.14 +sidérant sidérant adj m s 0.20 0.27 0.17 0.14 +sidérante sidérant adj f s 0.20 0.27 0.03 0.14 +sidération sidération nom f s 0.03 0.00 0.03 0.00 +sidéraux sidéral adj m p 0.11 0.88 0.00 0.07 +sidérer sidérer ver 1.03 2.16 0.02 0.00 inf; +sidérite sidérite nom f s 0.01 0.00 0.01 0.00 +sidéré sidérer ver m s 1.03 2.16 0.42 1.15 par:pas; +sidérée sidérer ver f s 1.03 2.16 0.22 0.34 par:pas; +sidérées sidérer ver f p 1.03 2.16 0.00 0.07 par:pas; +sidérurgie sidérurgie nom f s 0.12 0.27 0.12 0.27 +sidérurgique sidérurgique adj f s 0.03 0.27 0.03 0.20 +sidérurgiques sidérurgique adj p 0.03 0.27 0.00 0.07 +sidérurgistes sidérurgiste nom p 0.02 0.00 0.02 0.00 +sidérés sidérer ver m p 1.03 2.16 0.06 0.27 par:pas; +sied seoir ver 1.75 3.78 1.67 2.84 ind:pre:3s; +sien sien pro_pos m s 13.40 36.08 13.40 36.08 +sienne sienne pro_pos f s 14.21 40.68 14.21 40.68 +siennes siennes pro_pos f p 2.74 9.73 2.74 9.73 +siennois siennois nom m 0.00 0.20 0.00 0.20 +siennoise siennois adj f s 0.00 0.41 0.00 0.20 +siennoises siennois adj f p 0.00 0.41 0.00 0.14 +siens siens pro_pos m p 7.54 29.80 7.54 29.80 +sierra sierra nom f s 4.27 3.51 4.00 2.77 +sierras sierra nom f p 4.27 3.51 0.27 0.74 +siesta siester ver 0.06 0.07 0.06 0.00 ind:pas:3s; +siestant siester ver 0.06 0.07 0.00 0.07 par:pre; +sieste sieste nom f s 9.58 14.86 9.23 13.38 +siestes sieste nom f p 9.58 14.86 0.34 1.49 +sieur sieur nom m s 8.06 21.35 7.66 20.81 +sieurs sieur nom m p 8.06 21.35 0.41 0.54 +siffla siffler ver 13.04 40.20 0.06 5.47 ind:pas:3s; +sifflai siffler ver 13.04 40.20 0.00 0.14 ind:pas:1s; +sifflaient siffler ver 13.04 40.20 0.22 2.57 ind:imp:3p; +sifflais siffler ver 13.04 40.20 0.19 0.14 ind:imp:1s;ind:imp:2s; +sifflait siffler ver 13.04 40.20 0.65 5.88 ind:imp:3s; +sifflant siffler ver 13.04 40.20 0.41 3.45 par:pre; +sifflante sifflante adj f s 0.24 3.58 0.06 3.11 +sifflantes sifflante adj f p 0.24 3.58 0.17 0.47 +sifflants sifflant adj m p 0.05 1.76 0.01 0.47 +sifflard sifflard nom m s 0.00 0.34 0.00 0.34 +siffle siffler ver 13.04 40.20 4.62 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sifflement sifflement nom m s 4.83 13.78 4.45 10.47 +sifflements sifflement nom m p 4.83 13.78 0.38 3.31 +sifflent siffler ver 13.04 40.20 0.96 2.64 ind:pre:3p; +siffler siffler ver 13.04 40.20 3.02 8.24 inf; +sifflera siffler ver 13.04 40.20 0.63 0.14 ind:fut:3s; +sifflerai siffler ver 13.04 40.20 0.12 0.00 ind:fut:1s; +siffleraient siffler ver 13.04 40.20 0.00 0.14 cnd:pre:3p; +sifflerait siffler ver 13.04 40.20 0.16 0.07 cnd:pre:3s; +siffleras siffler ver 13.04 40.20 0.03 0.00 ind:fut:2s; +siffles siffler ver 13.04 40.20 0.65 0.07 ind:pre:2s; +sifflet sifflet nom m s 4.61 17.91 3.76 13.31 +sifflets sifflet nom m p 4.61 17.91 0.84 4.59 +siffleur siffleur adj m s 0.05 0.07 0.05 0.07 +sifflez siffler ver 13.04 40.20 0.38 0.14 imp:pre:2p;ind:pre:2p; +siffliez siffler ver 13.04 40.20 0.04 0.00 ind:imp:2p; +sifflota siffloter ver 0.28 10.81 0.00 1.15 ind:pas:3s; +sifflotais siffloter ver 0.28 10.81 0.00 0.14 ind:imp:1s; +sifflotait siffloter ver 0.28 10.81 0.00 1.82 ind:imp:3s; +sifflotant siffloter ver 0.28 10.81 0.06 3.85 par:pre; +sifflote siffloter ver 0.28 10.81 0.16 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sifflotement sifflotement nom m s 0.01 0.34 0.01 0.34 +siffloter siffloter ver 0.28 10.81 0.05 2.16 inf; +siffloterai siffloter ver 0.28 10.81 0.01 0.00 ind:fut:1s; +sifflotiez siffloter ver 0.28 10.81 0.00 0.07 ind:imp:2p; +sifflotis sifflotis nom m 0.00 0.14 0.00 0.14 +sifflotèrent siffloter ver 0.28 10.81 0.00 0.07 ind:pas:3p; +siffloté siffloter ver m s 0.28 10.81 0.00 0.27 par:pas; +sifflèrent siffler ver 13.04 40.20 0.00 0.61 ind:pas:3p; +sifflé siffler ver m s 13.04 40.20 0.86 2.97 par:pas; +sifflée siffler ver f s 13.04 40.20 0.06 0.20 par:pas; +sifflées siffler ver f p 13.04 40.20 0.00 0.07 par:pas; +sifflés siffler ver m p 13.04 40.20 0.00 0.07 par:pas; +sigillaire sigillaire adj m s 0.04 0.07 0.04 0.07 +sigillé sigillé adj m s 0.00 0.27 0.00 0.07 +sigillée sigillé adj f s 0.00 0.27 0.00 0.20 +sigisbée sigisbée nom m s 0.00 0.20 0.00 0.14 +sigisbées sigisbée nom m p 0.00 0.20 0.00 0.07 +sigle sigle nom m s 0.70 1.62 0.56 1.01 +sigles sigle nom m p 0.70 1.62 0.14 0.61 +sigmoïde sigmoïde adj s 0.01 0.07 0.01 0.07 +signa signer ver 98.19 55.81 0.29 3.38 ind:pas:3s; +signai signer ver 98.19 55.81 0.42 0.34 ind:pas:1s; +signaient signer ver 98.19 55.81 0.04 0.68 ind:imp:3p; +signais signer ver 98.19 55.81 0.25 0.47 ind:imp:1s;ind:imp:2s; +signait signer ver 98.19 55.81 0.44 3.31 ind:imp:3s; +signal signal nom m s 37.74 23.11 33.98 18.72 +signala signaler ver 27.92 27.50 0.00 1.42 ind:pas:3s; +signalai signaler ver 27.92 27.50 0.00 0.14 ind:pas:1s; +signalaient signaler ver 27.92 27.50 0.02 0.74 ind:imp:3p; +signalais signaler ver 27.92 27.50 0.01 0.07 ind:imp:1s; +signalait signaler ver 27.92 27.50 0.08 3.04 ind:imp:3s; +signalant signaler ver 27.92 27.50 0.18 1.82 par:pre; +signale signaler ver 27.92 27.50 7.26 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +signalement signalement nom m s 3.43 2.70 3.38 2.30 +signalements signalement nom m p 3.43 2.70 0.05 0.41 +signalent signaler ver 27.92 27.50 0.81 1.01 ind:pre:3p; +signaler signaler ver 27.92 27.50 9.51 6.62 inf; +signalera signaler ver 27.92 27.50 0.38 0.07 ind:fut:3s; +signalerai signaler ver 27.92 27.50 0.26 0.07 ind:fut:1s; +signalerait signaler ver 27.92 27.50 0.01 0.34 cnd:pre:3s; +signaleront signaler ver 27.92 27.50 0.04 0.00 ind:fut:3p; +signales signaler ver 27.92 27.50 0.24 0.00 ind:pre:2s; +signaleur signaleur nom m s 0.83 0.20 0.83 0.07 +signaleurs signaleur nom m p 0.83 0.20 0.00 0.14 +signalez signaler ver 27.92 27.50 1.20 0.14 imp:pre:2p;ind:pre:2p; +signalisation signalisation nom f s 0.52 1.08 0.41 1.08 +signalisations signalisation nom f p 0.52 1.08 0.11 0.00 +signaliser signaliser ver 0.01 0.00 0.01 0.00 inf; +signalons signaler ver 27.92 27.50 0.22 0.27 imp:pre:1p;ind:pre:1p; +signalât signaler ver 27.92 27.50 0.00 0.14 sub:imp:3s; +signalé signaler ver m s 27.92 27.50 6.82 3.78 par:pas; +signalée signaler ver f s 27.92 27.50 0.57 0.95 par:pas; +signalées signaler ver f p 27.92 27.50 0.10 0.41 par:pas; +signalés signaler ver m p 27.92 27.50 0.23 0.61 par:pas; +signalétique signalétique adj s 0.15 0.41 0.04 0.34 +signalétiques signalétique adj m p 0.15 0.41 0.11 0.07 +signant signer ver 98.19 55.81 0.39 1.35 par:pre; +signasse signer ver 98.19 55.81 0.00 0.07 sub:imp:1s; +signataire signataire nom s 0.26 0.95 0.17 0.68 +signataires signataire nom p 0.26 0.95 0.09 0.27 +signature signature nom f s 18.47 15.20 16.55 13.45 +signatures signature nom f p 18.47 15.20 1.92 1.76 +signaux signal nom m p 37.74 23.11 3.76 4.39 +signe signe nom m s 82.73 161.28 67.74 119.19 +signent signer ver 98.19 55.81 0.62 0.54 ind:pre:3p; +signer signer ver 98.19 55.81 29.25 13.51 ind:pre:2p;inf; +signera signer ver 98.19 55.81 1.20 0.41 ind:fut:3s; +signerai signer ver 98.19 55.81 1.64 0.27 ind:fut:1s; +signeraient signer ver 98.19 55.81 0.11 0.14 cnd:pre:3p; +signerais signer ver 98.19 55.81 0.27 0.27 cnd:pre:1s;cnd:pre:2s; +signerait signer ver 98.19 55.81 0.06 0.34 cnd:pre:3s; +signeras signer ver 98.19 55.81 0.13 0.00 ind:fut:2s; +signerez signer ver 98.19 55.81 0.39 0.14 ind:fut:2p; +signeriez signer ver 98.19 55.81 0.17 0.00 cnd:pre:2p; +signerions signer ver 98.19 55.81 0.00 0.07 cnd:pre:1p; +signerons signer ver 98.19 55.81 0.04 0.07 ind:fut:1p; +signeront signer ver 98.19 55.81 0.33 0.14 ind:fut:3p; +signes signe nom m p 82.73 161.28 15.00 42.09 +signet signet nom m s 0.16 0.74 0.13 0.47 +signets signet nom m p 0.16 0.74 0.02 0.27 +signez signer ver 98.19 55.81 13.62 0.68 imp:pre:2p;ind:pre:2p; +signiez signer ver 98.19 55.81 0.34 0.14 ind:imp:2p; +signifia signifier ver 67.72 47.23 0.12 1.08 ind:pas:3s; +signifiaient signifier ver 67.72 47.23 0.08 2.70 ind:imp:3p; +signifiais signifier ver 67.72 47.23 0.04 0.07 ind:imp:1s;ind:imp:2s; +signifiait signifier ver 67.72 47.23 3.59 15.34 ind:imp:3s; +signifiance signifiance nom f s 0.14 0.07 0.14 0.07 +signifiant signifiant adj m s 0.31 0.81 0.27 0.61 +signifiante signifiant adj f s 0.31 0.81 0.04 0.07 +signifiantes signifiant adj f p 0.31 0.81 0.00 0.07 +signifiants signifiant adj m p 0.31 0.81 0.00 0.07 +significatif significatif adj m s 1.81 4.46 1.02 2.16 +significatifs significatif adj m p 1.81 4.46 0.17 0.81 +signification signification nom f s 5.77 16.76 5.62 15.61 +significations signification nom f p 5.77 16.76 0.16 1.15 +significative significatif adj f s 1.81 4.46 0.46 1.15 +significativement significativement adv 0.14 0.07 0.14 0.07 +significatives significatif adj f p 1.81 4.46 0.16 0.34 +signifie signifier ver 67.72 47.23 56.66 15.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +signifient signifier ver 67.72 47.23 2.62 2.23 ind:pre:3p; +signifier signifier ver 67.72 47.23 2.08 6.62 inf; +signifiera signifier ver 67.72 47.23 0.27 0.41 ind:fut:3s; +signifierai signifier ver 67.72 47.23 0.07 0.00 ind:fut:1s; +signifierait signifier ver 67.72 47.23 1.36 0.54 cnd:pre:3s; +signifiât signifier ver 67.72 47.23 0.00 0.14 sub:imp:3s; +signifièrent signifier ver 67.72 47.23 0.00 0.07 ind:pas:3p; +signifié signifier ver m s 67.72 47.23 0.64 1.28 par:pas; +signifiée signifier ver f s 67.72 47.23 0.00 0.27 par:pas; +signifiées signifier ver f p 67.72 47.23 0.00 0.07 par:pas; +signâmes signer ver 98.19 55.81 0.00 0.07 ind:pas:1p; +signons signer ver 98.19 55.81 0.48 0.41 imp:pre:1p;ind:pre:1p; +signor signor nom m s 5.36 2.64 3.39 0.88 +signora signor nom f s 5.36 2.64 1.96 1.76 +signorina signorina nom f s 0.64 0.34 0.64 0.34 +signât signer ver 98.19 55.81 0.00 0.07 sub:imp:3s; +signèrent signer ver 98.19 55.81 0.00 0.41 ind:pas:3p; +signé signer ver m s 98.19 55.81 24.19 14.66 par:pas; +signée signer ver f s 98.19 55.81 3.58 3.92 par:pas; +signées signer ver f p 98.19 55.81 0.48 0.68 par:pas; +signés signer ver m p 98.19 55.81 1.28 1.42 par:pas; +sikh sikh nom s 0.17 1.49 0.03 0.20 +sikhs sikh nom p 0.17 1.49 0.14 1.28 +sil sil nom m s 2.65 0.00 2.29 0.00 +silence silence nom m s 106.43 325.54 105.53 313.24 +silences silence nom m p 106.43 325.54 0.90 12.30 +silencieuse silencieux adj f s 10.98 74.05 1.86 25.68 +silencieusement silencieusement adv 0.99 17.16 0.99 17.16 +silencieuses silencieux adj f p 10.98 74.05 0.82 5.74 +silencieux silencieux adj m 10.98 74.05 8.30 42.64 +silex silex nom m 0.33 5.14 0.33 5.14 +silhouettait silhouetter ver 0.00 1.08 0.00 0.20 ind:imp:3s; +silhouettant silhouetter ver 0.00 1.08 0.00 0.07 par:pre; +silhouette silhouette nom f s 4.11 73.31 3.44 52.57 +silhouettent silhouetter ver 0.00 1.08 0.00 0.14 ind:pre:3p; +silhouetter silhouetter ver 0.00 1.08 0.00 0.07 inf; +silhouettes silhouette nom f p 4.11 73.31 0.67 20.74 +silhouetté silhouetter ver m s 0.00 1.08 0.00 0.14 par:pas; +silhouettée silhouetter ver f s 0.00 1.08 0.00 0.14 par:pas; +silicate silicate nom m s 0.07 0.00 0.07 0.00 +silice silice nom f s 0.18 0.34 0.18 0.20 +silices silice nom f p 0.18 0.34 0.00 0.14 +siliceuse siliceux adj f s 0.01 0.07 0.01 0.00 +siliceux siliceux adj m 0.01 0.07 0.00 0.07 +silicium silicium nom m s 0.24 0.00 0.24 0.00 +silicone silicone nom f s 2.42 0.00 2.42 0.00 +siliconer siliconer ver 0.20 0.07 0.01 0.00 inf; +siliconé siliconer ver m s 0.20 0.07 0.02 0.00 par:pas; +siliconée siliconer ver f s 0.20 0.07 0.03 0.00 par:pas; +siliconées siliconer ver f p 0.20 0.07 0.14 0.07 par:pas; +silicose silicose nom f s 0.19 0.34 0.19 0.34 +silicosé silicosé adj m s 0.00 0.27 0.00 0.20 +silicosée silicosé adj f s 0.00 0.27 0.00 0.07 +silionne silionne nom f s 0.01 0.00 0.01 0.00 +sillage sillage nom m s 1.43 10.88 1.27 10.07 +sillages sillage nom m p 1.43 10.88 0.16 0.81 +sillet sillet nom m s 0.01 0.00 0.01 0.00 +sillon sillon nom m s 0.72 12.30 0.46 7.30 +sillonna sillonner ver 2.00 8.58 0.00 0.14 ind:pas:3s; +sillonnaient sillonner ver 2.00 8.58 0.05 0.95 ind:imp:3p; +sillonnais sillonner ver 2.00 8.58 0.03 0.07 ind:imp:1s;ind:imp:2s; +sillonnait sillonner ver 2.00 8.58 0.04 0.95 ind:imp:3s; +sillonnant sillonner ver 2.00 8.58 0.17 0.54 par:pre; +sillonne sillonner ver 2.00 8.58 0.20 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sillonnent sillonner ver 2.00 8.58 0.29 1.22 ind:pre:3p; +sillonner sillonner ver 2.00 8.58 0.58 1.15 inf; +sillonnes sillonner ver 2.00 8.58 0.00 0.07 ind:pre:2s; +sillonnez sillonner ver 2.00 8.58 0.02 0.00 ind:pre:2p; +sillonnons sillonner ver 2.00 8.58 0.00 0.07 ind:pre:1p; +sillonnèrent sillonner ver 2.00 8.58 0.00 0.07 ind:pas:3p; +sillonné sillonner ver m s 2.00 8.58 0.61 1.49 par:pas; +sillonnée sillonner ver f s 2.00 8.58 0.01 0.81 par:pas; +sillonnées sillonner ver f p 2.00 8.58 0.00 0.61 par:pas; +sillonnés sillonner ver m p 2.00 8.58 0.00 0.07 par:pas; +sillons sillon nom m p 0.72 12.30 0.27 5.00 +silo silo nom m s 1.23 1.69 0.66 0.27 +silos silo nom m p 1.23 1.69 0.56 1.42 +sils sil nom m p 2.65 0.00 0.37 0.00 +silène silène nom m s 0.00 0.14 0.00 0.07 +silènes silène nom m p 0.00 0.14 0.00 0.07 +silésien silésien adj m s 0.00 0.07 0.00 0.07 +silvaner silvaner nom m s 0.00 0.14 0.00 0.14 +sima sima nom m s 0.37 0.00 0.37 0.00 +simagrée simagrée nom f s 1.03 3.18 0.14 0.20 +simagrées simagrée nom f p 1.03 3.18 0.90 2.97 +simarre simarre nom f s 0.00 0.14 0.00 0.14 +simien simien adj m s 0.08 0.00 0.02 0.00 +simienne simien adj f s 0.08 0.00 0.03 0.00 +simiens simien nom m p 0.05 0.07 0.04 0.07 +simiesque simiesque adj s 0.17 1.15 0.15 0.88 +simiesques simiesque adj p 0.17 1.15 0.02 0.27 +similaire similaire adj s 6.03 1.35 2.43 0.95 +similairement similairement adv 0.00 0.07 0.00 0.07 +similaires similaire adj p 6.03 1.35 3.60 0.41 +similarité similarité nom f s 0.31 0.00 0.15 0.00 +similarités similarité nom f p 0.31 0.00 0.16 0.00 +simili simili nom m s 0.04 1.01 0.04 1.01 +similicuir similicuir nom m s 0.01 0.00 0.01 0.00 +similitude similitude nom f s 0.87 1.55 0.34 0.95 +similitudes similitude nom f p 0.87 1.55 0.54 0.61 +similor similor nom m s 0.01 0.07 0.01 0.00 +similors similor nom m p 0.01 0.07 0.00 0.07 +simoniaque simoniaque adj s 0.00 0.07 0.00 0.07 +simoun simoun nom m s 0.01 0.54 0.01 0.54 +simple simple adj s 137.69 148.58 124.57 124.26 +simplement simplement adv 84.76 134.32 84.76 134.32 +simples simple adj p 137.69 148.58 13.12 24.32 +simplesse simplesse nom f s 0.00 0.20 0.00 0.20 +simplet simplet nom m s 0.78 0.34 0.63 0.20 +simplets simplet nom m p 0.78 0.34 0.15 0.14 +simplette simplette nom f s 0.17 0.14 0.17 0.14 +simplettes simplet adj f p 0.44 1.35 0.00 0.20 +simplicité simplicité nom f s 2.75 21.69 2.75 21.69 +simplifiaient simplifier ver 2.80 7.84 0.00 0.41 ind:imp:3p; +simplifiais simplifier ver 2.80 7.84 0.01 0.00 ind:imp:1s; +simplifiait simplifier ver 2.80 7.84 0.02 0.61 ind:imp:3s; +simplifiant simplifier ver 2.80 7.84 0.00 0.14 par:pre; +simplification simplification nom f s 0.15 0.61 0.15 0.54 +simplifications simplification nom f p 0.15 0.61 0.00 0.07 +simplifie simplifier ver 2.80 7.84 0.60 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +simplifient simplifier ver 2.80 7.84 0.01 0.20 ind:pre:3p; +simplifier simplifier ver 2.80 7.84 1.32 1.89 inf; +simplifiera simplifier ver 2.80 7.84 0.14 0.14 ind:fut:3s; +simplifierait simplifier ver 2.80 7.84 0.10 0.14 cnd:pre:3s; +simplifiez simplifier ver 2.80 7.84 0.19 0.07 imp:pre:2p;ind:pre:2p; +simplifions simplifier ver 2.80 7.84 0.08 0.27 imp:pre:1p;ind:pre:1p; +simplifié simplifier ver m s 2.80 7.84 0.15 1.35 par:pas; +simplifiée simplifier ver f s 2.80 7.84 0.18 0.74 par:pas; +simplifiées simplifier ver f p 2.80 7.84 0.00 0.41 par:pas; +simplifiés simplifier ver m p 2.80 7.84 0.00 0.20 par:pas; +simplissime simplissime adj f s 0.04 0.07 0.04 0.07 +simpliste simpliste adj s 0.58 1.28 0.45 0.95 +simplistes simpliste adj p 0.58 1.28 0.13 0.34 +simula simuler ver 5.46 6.22 0.14 0.34 ind:pas:3s; +simulacre simulacre nom m s 0.84 6.22 0.69 4.59 +simulacres simulacre nom m p 0.84 6.22 0.16 1.62 +simulaient simuler ver 5.46 6.22 0.14 0.14 ind:imp:3p; +simulais simuler ver 5.46 6.22 0.12 0.07 ind:imp:1s;ind:imp:2s; +simulait simuler ver 5.46 6.22 0.26 0.68 ind:imp:3s; +simulant simuler ver 5.46 6.22 0.07 1.55 par:pre; +simulateur simulateur nom m s 1.05 0.68 0.80 0.20 +simulateurs simulateur nom m p 1.05 0.68 0.20 0.07 +simulation simulation nom f s 3.69 0.61 3.11 0.54 +simulations simulation nom f p 3.69 0.61 0.58 0.07 +simulatrice simulateur nom f s 1.05 0.68 0.04 0.41 +simule simuler ver 5.46 6.22 1.08 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +simulent simuler ver 5.46 6.22 0.12 0.14 ind:pre:3p; +simuler simuler ver 5.46 6.22 1.76 1.89 inf; +simulera simuler ver 5.46 6.22 0.02 0.00 ind:fut:3s; +simulerai simuler ver 5.46 6.22 0.01 0.00 ind:fut:1s; +simulerez simuler ver 5.46 6.22 0.01 0.00 ind:fut:2p; +simules simuler ver 5.46 6.22 0.28 0.07 ind:pre:2s; +simulez simuler ver 5.46 6.22 0.15 0.00 imp:pre:2p;ind:pre:2p; +simuliez simuler ver 5.46 6.22 0.01 0.00 ind:imp:2p; +simulons simuler ver 5.46 6.22 0.09 0.07 imp:pre:1p;ind:pre:1p; +simultané simultané adj m s 0.57 3.11 0.25 0.61 +simultanée simultané adj f s 0.57 3.11 0.19 1.15 +simultanées simultané adj f p 0.57 3.11 0.09 0.68 +simultanéité simultanéité nom f s 0.00 1.15 0.00 1.15 +simultanément simultanément adv 1.29 5.81 1.29 5.81 +simultanés simultané adj m p 0.57 3.11 0.05 0.68 +simulèrent simuler ver 5.46 6.22 0.00 0.07 ind:pas:3p; +simulé simuler ver m s 5.46 6.22 0.86 0.27 par:pas; +simulée simulé adj f s 0.62 0.61 0.18 0.34 +simulées simuler ver f p 5.46 6.22 0.16 0.00 par:pas; +simulés simulé adj m p 0.62 0.61 0.11 0.07 +sinapisme sinapisme nom m s 0.00 0.20 0.00 0.14 +sinapismes sinapisme nom m p 0.00 0.20 0.00 0.07 +sinciput sinciput nom m s 0.00 0.20 0.00 0.20 +sincère sincère adj s 19.51 22.50 15.20 18.65 +sincèrement sincèrement adv 13.58 13.11 13.58 13.11 +sincères sincère adj p 19.51 22.50 4.31 3.85 +sincérité sincérité nom f s 3.77 9.66 3.77 9.66 +sindon sindon nom m s 0.00 0.27 0.00 0.27 +sine_die sine_die adv 0.00 0.34 0.00 0.34 +sine_qua_non sine_qua_non adv 0.16 0.47 0.16 0.47 +singe_araignée singe_araignée nom m s 0.01 0.00 0.01 0.00 +singe singe nom m s 35.48 22.57 21.59 15.00 +singea singer ver 0.45 3.92 0.00 0.61 ind:pas:3s; +singeaient singer ver 0.45 3.92 0.01 0.34 ind:imp:3p; +singeait singer ver 0.45 3.92 0.00 0.61 ind:imp:3s; +singeant singer ver 0.45 3.92 0.05 0.54 par:pre; +singent singer ver 0.45 3.92 0.00 0.14 ind:pre:3p; +singer singer ver 0.45 3.92 0.15 1.28 inf; +singerie singerie nom f s 0.90 2.23 0.01 0.41 +singeries singerie nom f p 0.90 2.23 0.89 1.82 +singes singe nom m p 35.48 22.57 13.90 7.57 +singiez singer ver 0.45 3.92 0.01 0.00 ind:imp:2p; +single single nom m s 1.10 0.14 0.67 0.14 +singles single nom m p 1.10 0.14 0.43 0.00 +singleton singleton nom m s 0.17 0.00 0.17 0.00 +singé singer ver m s 0.45 3.92 0.00 0.20 par:pas; +singées singer ver f p 0.45 3.92 0.00 0.07 par:pas; +singularisait singulariser ver 0.05 1.08 0.00 0.07 ind:imp:3s; +singularise singulariser ver 0.05 1.08 0.01 0.27 imp:pre:2s;ind:pre:3s; +singulariser singulariser ver 0.05 1.08 0.04 0.68 inf; +singularises singulariser ver 0.05 1.08 0.00 0.07 ind:pre:2s; +singularité singularité nom f s 0.89 3.11 0.86 2.43 +singularités singularité nom f p 0.89 3.11 0.03 0.68 +singulier singulier adj m s 2.31 21.42 1.20 9.80 +singuliers singulier adj m p 2.31 21.42 0.05 2.03 +singulière singulier adj f s 2.31 21.42 1.00 8.31 +singulièrement singulièrement adv 0.13 8.58 0.13 8.58 +singulières singulier adj f p 2.31 21.42 0.07 1.28 +sinistre sinistre adj s 8.27 25.88 7.39 19.86 +sinistrement sinistrement adv 0.01 1.28 0.01 1.28 +sinistres sinistre adj p 8.27 25.88 0.88 6.01 +sinistrose sinistrose nom f s 0.00 0.07 0.00 0.07 +sinistré sinistré adj m s 0.28 0.81 0.02 0.20 +sinistrée sinistré adj f s 0.28 0.81 0.25 0.27 +sinistrées sinistré adj f p 0.28 0.81 0.02 0.20 +sinistrés sinistré nom m p 0.26 0.61 0.25 0.54 +sino_américain sino_américain nom m s 0.02 0.00 0.02 0.00 +sino_arabe sino_arabe adj f s 0.01 0.00 0.01 0.00 +sino_japonais sino_japonais adj f s 0.00 0.14 0.00 0.14 +sino sino adv 0.12 0.00 0.12 0.00 +sinologie sinologie nom f s 0.00 0.07 0.00 0.07 +sinon sinon con 164.85 89.26 164.85 89.26 +sinople sinople nom m s 0.00 0.14 0.00 0.14 +sinoque sinoque adj s 0.01 0.34 0.00 0.27 +sinoques sinoque adj p 0.01 0.34 0.01 0.07 +sinoquet sinoquet nom m s 0.00 0.88 0.00 0.88 +sinuaient sinuer ver 0.01 1.76 0.00 0.20 ind:imp:3p; +sinuait sinuer ver 0.01 1.76 0.00 0.74 ind:imp:3s; +sinuant sinuer ver 0.01 1.76 0.01 0.07 par:pre; +sinécure sinécure nom f s 0.52 0.88 0.52 0.81 +sinécures sinécure nom f p 0.52 0.88 0.00 0.07 +sinue sinuer ver 0.01 1.76 0.00 0.34 ind:pre:3s; +sinuent sinuer ver 0.01 1.76 0.00 0.20 ind:pre:3p; +sinuer sinuer ver 0.01 1.76 0.00 0.14 inf; +sinueuse sinueux adj f s 0.97 5.61 0.07 2.23 +sinueusement sinueusement adv 0.00 0.07 0.00 0.07 +sinueuses sinueux adj f p 0.97 5.61 0.32 0.95 +sinueux sinueux adj m 0.97 5.61 0.58 2.43 +sinuosité sinuosité nom f s 0.00 0.68 0.00 0.14 +sinuosités sinuosité nom f p 0.00 0.68 0.00 0.54 +sinus sinus nom m 1.30 1.01 1.30 1.01 +sinusal sinusal adj m s 0.46 0.00 0.29 0.00 +sinusale sinusal adj f s 0.46 0.00 0.17 0.00 +sinusite sinusite nom f s 0.33 0.14 0.32 0.14 +sinusites sinusite nom f p 0.33 0.14 0.01 0.00 +sinusoïdal sinusoïdal adj m s 0.07 0.14 0.04 0.07 +sinusoïdale sinusoïdal adj f s 0.07 0.14 0.03 0.00 +sinusoïdaux sinusoïdal adj m p 0.07 0.14 0.00 0.07 +sinusoïdes sinusoïde nom f p 0.00 0.14 0.00 0.14 +sinué sinuer ver m s 0.01 1.76 0.00 0.07 par:pas; +sionisme sionisme nom m s 0.04 0.27 0.04 0.27 +sioniste sioniste adj s 0.49 0.14 0.39 0.14 +sionistes sioniste nom p 0.32 0.07 0.28 0.07 +sioux sioux adj 0.36 0.34 0.36 0.34 +siphon siphon nom m s 0.83 2.23 0.43 1.96 +siphonnage siphonnage nom m s 0.00 0.07 0.00 0.07 +siphonnait siphonner ver 0.35 0.68 0.04 0.07 ind:imp:3s; +siphonne siphonner ver 0.35 0.68 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +siphonner siphonner ver 0.35 0.68 0.10 0.20 inf; +siphonné siphonné adj m s 0.18 0.20 0.17 0.14 +siphonnée siphonner ver f s 0.35 0.68 0.01 0.14 par:pas; +siphonnés siphonné adj m p 0.18 0.20 0.01 0.00 +siphons siphon nom m p 0.83 2.23 0.40 0.27 +sipo sipo nom m s 0.03 0.00 0.03 0.00 +sir sir nom m s 10.48 2.57 10.48 2.57 +sirdar sirdar nom m s 0.00 0.41 0.00 0.41 +sire sire nom m s 3.37 0.74 3.37 0.47 +sires sire nom m p 3.37 0.74 0.00 0.27 +sirocco sirocco nom m s 1.52 0.68 1.52 0.68 +sirop sirop nom m s 5.75 8.18 5.70 7.64 +sirops sirop nom m p 5.75 8.18 0.05 0.54 +sirota siroter ver 1.59 5.74 0.00 0.14 ind:pas:3s; +sirotaient siroter ver 1.59 5.74 0.01 0.27 ind:imp:3p; +sirotais siroter ver 1.59 5.74 0.05 0.14 ind:imp:1s;ind:imp:2s; +sirotait siroter ver 1.59 5.74 0.04 1.01 ind:imp:3s; +sirotant siroter ver 1.59 5.74 0.28 1.08 par:pre; +sirote siroter ver 1.59 5.74 0.12 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sirotent siroter ver 1.59 5.74 0.06 0.20 ind:pre:3p; +siroter siroter ver 1.59 5.74 0.99 1.35 inf; +siroterais siroter ver 1.59 5.74 0.01 0.00 cnd:pre:1s; +sirotiez siroter ver 1.59 5.74 0.01 0.00 ind:imp:2p; +sirotions siroter ver 1.59 5.74 0.00 0.07 ind:imp:1p; +siroté siroter ver m s 1.59 5.74 0.02 0.61 par:pas; +sirène sirène nom f s 11.35 17.50 8.06 10.34 +sirènes sirène nom f p 11.35 17.50 3.28 7.16 +sirupeuse sirupeux adj f s 0.19 1.55 0.13 0.54 +sirupeuses sirupeux adj f p 0.19 1.55 0.01 0.20 +sirupeux sirupeux adj m 0.19 1.55 0.06 0.81 +sirventès sirventès nom m 0.00 0.14 0.00 0.14 +sis sis adj m s 1.77 1.55 1.77 0.74 +sisal sisal nom m s 0.03 0.34 0.03 0.34 +sise sis adj f s 1.77 1.55 0.00 0.74 +sises sis adj f p 1.77 1.55 0.00 0.07 +sismique sismique adj s 0.75 0.41 0.56 0.34 +sismiques sismique adj p 0.75 0.41 0.19 0.07 +sismographe sismographe nom s 0.10 0.14 0.04 0.00 +sismographes sismographe nom p 0.10 0.14 0.07 0.14 +sismologie sismologie nom f s 0.02 0.00 0.02 0.00 +sismologique sismologique adj f s 0.01 0.00 0.01 0.00 +sismologue sismologue nom s 0.14 0.07 0.07 0.00 +sismologues sismologue nom p 0.14 0.07 0.06 0.07 +sismomètre sismomètre nom m s 0.01 0.00 0.01 0.00 +sismothérapie sismothérapie nom f s 0.01 0.00 0.01 0.00 +sisymbre sisymbre nom m s 0.00 0.07 0.00 0.07 +sit_in sit_in nom m 0.30 0.00 0.30 0.00 +sitôt sitôt adv 3.59 19.12 3.59 19.12 +sitar sitar nom m s 0.16 0.00 0.16 0.00 +sitariste sitariste nom s 0.01 0.00 0.01 0.00 +sitcom sitcom nom f s 0.85 0.00 0.63 0.00 +sitcoms sitcom nom f p 0.85 0.00 0.23 0.00 +site site nom m s 17.17 4.46 13.91 3.58 +sites site nom m p 17.17 4.46 3.26 0.88 +siècle siècle nom m s 45.77 132.91 27.29 79.05 +siècles siècle nom m p 45.77 132.91 18.48 53.85 +siège siège nom m s 29.44 57.91 23.69 46.08 +siègent siéger ver 2.87 5.34 0.31 0.27 ind:pre:3p; +sièges siège nom m p 29.44 57.91 5.75 11.82 +sittelle sittelle nom f s 0.03 0.00 0.03 0.00 +situ situ nom m s 0.95 0.00 0.95 0.00 +situa situer ver 10.44 37.84 0.00 0.47 ind:pas:3s; +situable situable adj f s 0.00 0.14 0.00 0.14 +situaient situer ver 10.44 37.84 0.01 1.15 ind:imp:3p; +situais situer ver 10.44 37.84 0.02 0.07 ind:imp:1s; +situait situer ver 10.44 37.84 0.26 3.72 ind:imp:3s; +situant situer ver 10.44 37.84 0.01 0.41 par:pre; +situasse situer ver 10.44 37.84 0.00 0.95 sub:imp:1s; +situation situation nom f s 108.99 104.86 101.39 96.62 +situationnel situationnel adj m s 0.01 0.00 0.01 0.00 +situationnisme situationnisme nom m s 0.01 0.00 0.01 0.00 +situationnistes situationniste adj p 0.00 0.14 0.00 0.14 +situations situation nom f p 108.99 104.86 7.60 8.24 +situe situer ver 10.44 37.84 2.34 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +situent situer ver 10.44 37.84 0.44 0.54 ind:pre:3p; +situer situer ver 10.44 37.84 1.16 6.55 inf; +situera situer ver 10.44 37.84 0.03 0.14 ind:fut:3s; +situerai situer ver 10.44 37.84 0.01 0.00 ind:fut:1s; +situeraient situer ver 10.44 37.84 0.01 0.00 cnd:pre:3p; +situerais situer ver 10.44 37.84 0.01 0.14 cnd:pre:1s; +situerait situer ver 10.44 37.84 0.22 0.07 cnd:pre:3s; +situes situer ver 10.44 37.84 0.04 0.07 ind:pre:2s;sub:pre:2s; +situez situer ver 10.44 37.84 0.10 0.27 ind:pre:2p; +situions situer ver 10.44 37.84 0.00 0.14 ind:imp:1p; +situons situer ver 10.44 37.84 0.13 0.20 imp:pre:1p;ind:pre:1p; +situât situer ver 10.44 37.84 0.00 0.07 sub:imp:3s; +situèrent situer ver 10.44 37.84 0.00 0.07 ind:pas:3p; +situé situer ver m s 10.44 37.84 2.70 7.84 par:pas; +située situer ver f s 10.44 37.84 2.15 7.23 par:pas; +situées situer ver f p 10.44 37.84 0.14 1.49 par:pas; +situés situer ver m p 10.44 37.84 0.64 1.42 par:pas; +siéent seoir ver 1.75 3.78 0.01 0.14 ind:pre:3p; +siégeaient siéger ver 2.87 5.34 0.00 0.61 ind:imp:3p; +siégeais siéger ver 2.87 5.34 0.01 0.07 ind:imp:1s; +siégeait siéger ver 2.87 5.34 0.11 1.35 ind:imp:3s; +siégeant siéger ver 2.87 5.34 0.03 0.54 par:pre; +siégeons siéger ver 2.87 5.34 0.06 0.07 imp:pre:1p;ind:pre:1p; +siéger siéger ver 2.87 5.34 0.60 0.68 inf; +siégera siéger ver 2.87 5.34 0.41 0.00 ind:fut:3s; +siégerai siéger ver 2.87 5.34 0.02 0.07 ind:fut:1s; +siégeraient siéger ver 2.87 5.34 0.00 0.14 cnd:pre:3p; +siégerait siéger ver 2.87 5.34 0.00 0.14 cnd:pre:3s; +siégeras siéger ver 2.87 5.34 0.03 0.00 ind:fut:2s; +siégerons siéger ver 2.87 5.34 0.01 0.00 ind:fut:1p; +siégeront siéger ver 2.87 5.34 0.00 0.07 ind:fut:3p; +siégez siéger ver 2.87 5.34 0.03 0.00 ind:pre:2p; +siégiez siéger ver 2.87 5.34 0.02 0.00 ind:imp:2p; +siégions siéger ver 2.87 5.34 0.00 0.14 ind:imp:1p; +siégé siéger ver m s 2.87 5.34 0.13 0.27 par:pas; +siéra seoir ver 1.75 3.78 0.05 0.00 ind:fut:3s; +siérait seoir ver 1.75 3.78 0.02 0.07 cnd:pre:3s; +six_quatre six_quatre nom m 0.00 0.07 0.00 0.07 +six six adj_num 117.37 156.22 117.37 156.22 +sixain sixain nom m s 0.00 0.20 0.00 0.20 +sixième sixième adj m 3.77 7.23 3.76 7.16 +sixièmement sixièmement adv 0.01 0.00 0.01 0.00 +sixièmes sixième nom p 2.11 6.01 0.23 0.27 +sixte sixte nom f s 0.02 0.14 0.02 0.14 +sixties sixties nom p 0.40 0.20 0.40 0.20 +sixtus sixtus nom m 0.01 0.00 0.01 0.00 +sizain sizain nom m s 0.00 0.14 0.00 0.14 +ska ska nom m s 0.35 0.00 0.35 0.00 +skaï skaï nom m s 0.12 1.82 0.12 1.82 +skaal skaal ono 0.00 0.07 0.00 0.07 +skate_board skate_board nom m s 0.57 0.07 0.57 0.07 +skate skate nom m s 2.50 0.07 2.14 0.07 +skateboard skateboard nom m s 1.13 0.00 1.06 0.00 +skateboards skateboard nom m p 1.13 0.00 0.07 0.00 +skates skate nom m p 2.50 0.07 0.36 0.00 +skating skating nom m s 0.00 0.07 0.00 0.07 +skeet skeet nom m s 0.04 0.00 0.02 0.00 +skeets skeet nom m p 0.04 0.00 0.02 0.00 +sketch sketch nom m s 2.54 1.28 1.50 0.74 +sketches sketch nom m p 2.54 1.28 0.69 0.54 +sketchs sketch nom m p 2.54 1.28 0.34 0.00 +ski ski nom m s 16.57 6.49 13.84 5.00 +skiable skiable adj m s 0.01 0.00 0.01 0.00 +skiais skier ver 3.81 0.81 0.12 0.07 ind:imp:1s;ind:imp:2s; +skiait skier ver 3.81 0.81 0.14 0.14 ind:imp:3s; +skiant skier ver 3.81 0.81 0.06 0.00 par:pre; +skie skier ver 3.81 0.81 0.30 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +skient skier ver 3.81 0.81 0.04 0.00 ind:pre:3p; +skier skier ver 3.81 0.81 2.52 0.27 inf; +skierai skier ver 3.81 0.81 0.01 0.00 ind:fut:1s; +skierait skier ver 3.81 0.81 0.00 0.07 cnd:pre:3s; +skies skier ver 3.81 0.81 0.22 0.00 ind:pre:2s; +skieur skieur nom m s 1.11 1.28 0.20 0.61 +skieurs skieur nom m p 1.11 1.28 0.74 0.20 +skieuse skieur nom f s 1.11 1.28 0.17 0.41 +skieuses skieuse nom f p 0.02 0.00 0.02 0.00 +skiez skier ver 3.81 0.81 0.05 0.07 imp:pre:2p;ind:pre:2p; +skiff skiff nom m s 0.14 0.27 0.14 0.20 +skiffs skiff nom m p 0.14 0.27 0.00 0.07 +skin skin nom m s 0.93 0.14 0.44 0.14 +skinhead skinhead nom m s 1.59 0.20 0.38 0.14 +skinheads skinhead nom m p 1.59 0.20 1.22 0.07 +skins skin nom m p 0.93 0.14 0.48 0.00 +skip skip nom m s 2.27 0.14 2.27 0.14 +skipper skipper nom m s 1.32 0.07 1.32 0.07 +skis ski nom m p 16.57 6.49 2.73 1.49 +skié skier ver m s 3.81 0.81 0.37 0.14 par:pas; +skunks skunks nom m 0.00 1.55 0.00 1.55 +skydome skydome nom m s 0.01 0.00 0.01 0.00 +slalom slalom nom m s 0.20 0.95 0.20 0.81 +slalomant slalomer ver 0.07 0.41 0.00 0.14 par:pre; +slalomer slalomer ver 0.07 0.41 0.05 0.20 inf; +slaloms slalom nom m p 0.20 0.95 0.00 0.14 +slalomé slalomer ver m s 0.07 0.41 0.03 0.07 par:pas; +slang slang nom m 0.00 0.07 0.00 0.07 +slash slash nom m s 0.07 0.00 0.07 0.00 +slave slave adj s 0.22 3.38 0.19 2.36 +slaves slave adj p 0.22 3.38 0.03 1.01 +slavisant slaviser ver 0.00 0.07 0.00 0.07 par:pre; +slavisme slavisme nom m s 0.00 0.07 0.00 0.07 +slavon slavon adj m s 0.00 0.07 0.00 0.07 +slavon slavon nom m s 0.00 0.07 0.00 0.07 +slavophiles slavophile adj p 0.00 0.07 0.00 0.07 +sleeping sleeping nom m s 0.37 0.34 0.37 0.27 +sleepings sleeping nom m p 0.37 0.34 0.00 0.07 +slibard slibard nom m s 0.11 0.47 0.11 0.47 +slice slice nom m s 0.19 0.00 0.19 0.00 +slip slip nom m s 11.35 12.77 9.29 10.07 +slips slip nom m p 11.35 12.77 2.06 2.70 +slogan slogan nom m s 4.96 6.96 3.96 2.36 +slogans slogan nom m p 4.96 6.96 1.00 4.59 +sloop sloop nom m s 0.06 0.07 0.06 0.07 +sloughi sloughi nom m s 0.00 0.07 0.00 0.07 +slovaque slovaque adj s 0.01 0.00 0.01 0.00 +slovaques slovaque nom p 0.03 0.07 0.03 0.07 +slovène slovène adj f s 0.00 0.20 0.00 0.20 +slow slow nom m s 0.10 2.16 0.10 1.82 +slows slow nom m p 0.10 2.16 0.00 0.34 +slug slug nom m s 0.10 0.00 0.10 0.00 +slush slush nom s 0.01 0.07 0.01 0.07 +smack smack nom m s 0.15 0.14 0.14 0.14 +smacks smack nom m p 0.15 0.14 0.01 0.00 +smala smala nom f s 0.20 0.61 0.20 0.61 +smalah smalah nom f s 0.00 0.20 0.00 0.20 +smaragdin smaragdin adj m s 0.00 0.07 0.00 0.07 +smart smart adj s 0.20 0.27 0.20 0.27 +smash smash nom m s 0.40 0.20 0.40 0.20 +smashe smasher ver 0.41 0.00 0.25 0.00 imp:pre:2s;ind:pre:3s; +smasher smasher ver 0.41 0.00 0.15 0.00 inf; +smegma smegma nom m s 0.04 0.00 0.04 0.00 +smicard smicard nom m s 0.03 0.14 0.03 0.07 +smicards smicard nom m p 0.03 0.14 0.00 0.07 +smigard smigard nom m s 0.00 0.07 0.00 0.07 +smiley smiley nom m s 0.78 0.00 0.78 0.00 +smocks smocks nom m p 0.01 0.34 0.01 0.34 +smog smog nom m s 0.29 0.07 0.29 0.07 +smoking smoking nom m s 4.90 4.53 4.74 3.92 +smokings smoking nom m p 4.90 4.53 0.16 0.61 +smorrebrod smorrebrod nom m s 0.00 0.07 0.00 0.07 +smurf smurf nom m s 0.03 0.00 0.03 0.00 +smyrniote smyrniote nom s 0.00 0.07 0.00 0.07 +snack_bar snack_bar nom m s 0.23 0.61 0.23 0.54 +snack_bar snack_bar nom m p 0.23 0.61 0.00 0.07 +snack snack nom m s 1.21 0.95 1.06 0.74 +snacks snack nom m p 1.21 0.95 0.15 0.20 +snif snif ono 0.26 0.20 0.26 0.20 +snifer snifer ver 0.03 0.00 0.03 0.00 inf; +sniff sniff ono 0.12 0.34 0.12 0.34 +sniffaient sniffer ver 3.28 2.70 0.00 0.07 ind:imp:3p; +sniffais sniffer ver 3.28 2.70 0.08 0.07 ind:imp:1s;ind:imp:2s; +sniffait sniffer ver 3.28 2.70 0.14 0.20 ind:imp:3s; +sniffant sniffer ver 3.28 2.70 0.02 0.14 par:pre; +sniffe sniffer ver 3.28 2.70 0.77 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sniffent sniffer ver 3.28 2.70 0.03 0.07 ind:pre:3p; +sniffer sniffer ver 3.28 2.70 1.25 0.74 inf; +snifferai sniffer ver 3.28 2.70 0.01 0.07 ind:fut:1s; +sniffes sniffer ver 3.28 2.70 0.24 0.07 ind:pre:2s; +sniffette sniffette nom f s 0.00 0.07 0.00 0.07 +sniffez sniffer ver 3.28 2.70 0.08 0.00 imp:pre:2p;ind:pre:2p; +sniffé sniffer ver m s 3.28 2.70 0.66 0.14 par:pas; +sniffée sniffer ver f s 3.28 2.70 0.01 0.14 par:pas; +sniffées sniffer ver f p 3.28 2.70 0.00 0.07 par:pas; +snipe snipe nom m s 0.07 0.00 0.07 0.00 +sniper sniper nom m s 4.50 0.00 2.46 0.00 +snipers sniper nom m p 4.50 0.00 2.03 0.00 +snob snob adj s 1.75 3.31 1.61 2.64 +snobaient snober ver 0.67 0.68 0.00 0.20 ind:imp:3p; +snobais snober ver 0.67 0.68 0.01 0.00 ind:imp:2s; +snobe snober ver 0.67 0.68 0.10 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +snobent snober ver 0.67 0.68 0.02 0.00 ind:pre:3p; +snober snober ver 0.67 0.68 0.21 0.20 inf; +snoberez snober ver 0.67 0.68 0.01 0.00 ind:fut:2p; +snobez snober ver 0.67 0.68 0.07 0.00 imp:pre:2p;ind:pre:2p; +snobinard snobinard nom m s 0.46 0.07 0.22 0.00 +snobinarde snobinard nom f s 0.46 0.07 0.02 0.00 +snobinardes snobinard nom f p 0.46 0.07 0.01 0.00 +snobinards snobinard nom m p 0.46 0.07 0.22 0.07 +snobisme snobisme nom m s 0.79 3.45 0.79 3.38 +snobismes snobisme nom m p 0.79 3.45 0.00 0.07 +snobs snob nom p 1.35 1.82 0.39 0.68 +snobé snober ver m s 0.67 0.68 0.23 0.14 par:pas; +snobée snober ver f s 0.67 0.68 0.00 0.07 par:pas; +snobés snober ver m p 0.67 0.68 0.03 0.07 par:pas; +snow_boot snow_boot nom m p 0.00 0.07 0.00 0.07 +soûl soûl adj m s 12.96 2.77 10.22 2.03 +soûlait soûler ver 6.13 2.43 0.14 0.14 ind:imp:3s; +soûlant soûler ver 6.13 2.43 0.02 0.00 par:pre; +soûlante soûlant adj f s 0.01 0.07 0.00 0.07 +soûlard soûlard nom m s 1.19 0.14 0.82 0.14 +soûlarde soûlard nom f s 1.19 0.14 0.23 0.00 +soûlards soûlard nom m p 1.19 0.14 0.14 0.00 +soûlaud soûlaud adj m s 0.01 0.20 0.01 0.14 +soûlauds soûlaud adj m p 0.01 0.20 0.00 0.07 +soûle soûl adj f s 12.96 2.77 1.96 0.68 +soûlent soûler ver 6.13 2.43 0.30 0.27 ind:pre:3p; +soûler soûler ver 6.13 2.43 2.54 0.81 inf; +soûlerais soûler ver 6.13 2.43 0.16 0.00 cnd:pre:1s; +soûlerait soûler ver 6.13 2.43 0.00 0.07 cnd:pre:3s; +soûlerie soûlerie nom f s 0.08 0.20 0.08 0.20 +soûlez soûler ver 6.13 2.43 0.22 0.00 imp:pre:2p;ind:pre:2p; +soûlographe soûlographe nom s 0.00 0.14 0.00 0.14 +soûlographie soûlographie nom f s 0.00 0.14 0.00 0.14 +soûlons soûler ver 6.13 2.43 0.01 0.00 imp:pre:1p; +soûlot soûlot nom m s 0.29 0.27 0.28 0.20 +soûlots soûlot nom m p 0.29 0.27 0.01 0.07 +soûls soûl adj m p 12.96 2.77 0.78 0.07 +soûlèrent soûler ver 6.13 2.43 0.01 0.00 ind:pas:3p; +soûlé soûler ver m s 6.13 2.43 0.85 0.27 par:pas; +soûlée soûler ver f s 6.13 2.43 0.43 0.07 par:pas; +soûlées soûler ver f p 6.13 2.43 0.03 0.00 par:pas; +soûlés soûler ver m p 6.13 2.43 0.14 0.34 par:pas; +soap_opéra soap_opéra nom m s 0.17 0.00 0.15 0.00 +soap_opéra soap_opéra nom m s 0.17 0.00 0.02 0.00 +sobre sobre adj s 6.18 4.66 5.80 3.24 +sobrement sobrement adv 0.06 1.28 0.06 1.28 +sobres sobre adj p 6.18 4.66 0.37 1.42 +sobriquet sobriquet nom m s 0.52 4.86 0.48 3.45 +sobriquets sobriquet nom m p 0.52 4.86 0.04 1.42 +sobriété sobriété nom f s 0.70 1.62 0.70 1.62 +soc soc nom m s 0.57 1.89 0.31 1.62 +soccer soccer nom m s 0.64 0.00 0.64 0.00 +sociabiliser sociabiliser ver 0.01 0.00 0.01 0.00 inf; +sociabilité sociabilité nom f s 0.09 0.41 0.09 0.41 +sociable sociable adj s 2.08 0.81 1.79 0.54 +sociables sociable adj p 2.08 0.81 0.29 0.27 +social_démocrate social_démocrate adj m s 0.21 0.14 0.21 0.14 +social_démocratie social_démocratie nom f s 0.02 0.34 0.02 0.34 +social_traître social_traître nom m s 0.00 0.27 0.00 0.27 +social social adj m s 34.40 49.80 9.16 12.30 +sociale social adj f s 34.40 49.80 16.06 24.80 +socialement socialement adv 1.04 0.95 1.04 0.95 +sociales social adj f p 34.40 49.80 4.59 8.85 +socialisation socialisation nom f s 0.10 0.00 0.10 0.00 +socialise socialiser ver 0.16 0.00 0.02 0.00 ind:pre:1s;ind:pre:3s; +socialiser socialiser ver 0.16 0.00 0.13 0.00 inf; +socialisez socialiser ver 0.16 0.00 0.01 0.00 ind:pre:2p; +socialisme socialisme nom m s 4.90 6.76 4.90 6.69 +socialismes socialisme nom m p 4.90 6.76 0.00 0.07 +socialiste socialiste adj s 6.68 10.41 5.00 7.97 +socialistes socialiste adj p 6.68 10.41 1.68 2.43 +socialo socialo nom s 0.03 0.14 0.01 0.00 +socialos socialo nom p 0.03 0.14 0.02 0.14 +sociaux_démocrates sociaux_démocrates adj m 0.23 0.00 0.23 0.00 +sociaux social adj m p 34.40 49.80 4.59 3.85 +sociniens socinien nom m p 0.00 0.07 0.00 0.07 +socio_culturel socio_culturel adj f p 0.01 0.14 0.00 0.07 +socio_culturel socio_culturel adj m p 0.01 0.14 0.01 0.07 +socio_économique socio_économique adj m s 0.08 0.07 0.06 0.00 +socio_économique socio_économique adj m p 0.08 0.07 0.02 0.07 +socio socio adv 0.09 0.14 0.09 0.14 +sociobiologie sociobiologie nom f s 0.01 0.00 0.01 0.00 +socioculturel socioculturel adj m s 0.01 0.14 0.00 0.07 +socioculturelles socioculturel adj f p 0.01 0.14 0.01 0.07 +sociologie sociologie nom f s 1.09 1.28 1.09 1.28 +sociologique sociologique adj s 0.64 0.68 0.39 0.47 +sociologiquement sociologiquement adv 0.00 0.07 0.00 0.07 +sociologiques sociologique adj f p 0.64 0.68 0.25 0.20 +sociologue sociologue nom s 0.93 1.55 0.48 0.54 +sociologues sociologue nom p 0.93 1.55 0.45 1.01 +sociopathe sociopathe adj s 0.88 0.00 0.67 0.00 +sociopathes sociopathe adj p 0.88 0.00 0.21 0.00 +sociopathie sociopathie nom f s 0.04 0.00 0.04 0.00 +sociopolitique sociopolitique adj f s 0.01 0.00 0.01 0.00 +socius socius nom m 0.00 0.07 0.00 0.07 +sociétaire sociétaire adj f s 0.01 0.07 0.01 0.07 +sociétaires sociétaire nom p 0.00 0.34 0.00 0.20 +sociétal sociétal adj m s 0.05 0.00 0.03 0.00 +sociétale sociétal adj f s 0.05 0.00 0.03 0.00 +société société nom f s 75.46 62.23 69.38 56.55 +sociétés société nom f p 75.46 62.23 6.08 5.68 +socket socket nom m s 0.03 0.00 0.03 0.00 +socle socle nom m s 0.72 8.45 0.70 7.91 +socles socle nom m p 0.72 8.45 0.02 0.54 +socque socque nom m s 0.00 0.47 0.00 0.07 +socques socque nom m p 0.00 0.47 0.00 0.41 +socquette socquette nom f s 0.38 2.16 0.02 0.41 +socquettes socquette nom f p 0.38 2.16 0.36 1.76 +socratique socratique adj s 0.07 0.20 0.07 0.14 +socratiques socratique adj p 0.07 0.20 0.00 0.07 +socs soc nom m p 0.57 1.89 0.27 0.27 +soda soda nom m s 10.23 1.55 9.12 1.01 +sodas soda nom m p 10.23 1.55 1.11 0.54 +sodique sodique adj s 0.02 0.00 0.02 0.00 +sodium sodium nom m s 1.13 0.00 1.13 0.00 +sodomie sodomie nom f s 1.44 0.47 1.44 0.47 +sodomisa sodomiser ver 1.33 1.49 0.00 0.07 ind:pas:3s; +sodomisait sodomiser ver 1.33 1.49 0.00 0.14 ind:imp:3s; +sodomisant sodomiser ver 1.33 1.49 0.10 0.14 par:pre; +sodomisation sodomisation nom f s 0.00 0.34 0.00 0.34 +sodomise sodomiser ver 1.33 1.49 0.17 0.41 ind:pre:1s;ind:pre:3s; +sodomiser sodomiser ver 1.33 1.49 0.59 0.27 inf; +sodomiseront sodomiser ver 1.33 1.49 0.14 0.00 ind:fut:3p; +sodomisez sodomiser ver 1.33 1.49 0.00 0.07 ind:pre:2p; +sodomisé sodomiser ver m s 1.33 1.49 0.23 0.27 par:pas; +sodomisée sodomiser ver f s 1.33 1.49 0.10 0.07 par:pas; +sodomisés sodomiser ver m p 1.33 1.49 0.00 0.07 par:pas; +sodomite sodomite nom m s 0.86 0.47 0.68 0.27 +sodomites sodomite nom m p 0.86 0.47 0.19 0.20 +sodomitiques sodomitique adj p 0.00 0.07 0.00 0.07 +soeur soeur nom f s 184.99 161.01 155.22 116.55 +soeurette soeurette nom f s 2.12 0.95 2.12 0.95 +soeurs soeur nom f p 184.99 161.01 29.76 44.46 +sofa sofa nom m s 4.77 5.68 4.43 4.73 +sofas sofa nom m p 4.77 5.68 0.33 0.95 +soft soft adj s 0.79 0.20 0.79 0.20 +softball softball nom m s 0.69 0.00 0.69 0.00 +soi_disant soi_disant adj 9.46 13.11 9.46 13.11 +soi_même soi_même pro_per s 6.86 24.86 6.86 24.86 +soi soi pro_per s 28.23 83.65 28.23 83.65 +soie soie nom f s 10.38 51.62 9.95 50.00 +soient être aux 8074.24 6501.82 17.35 21.89 sub:pre:3p; +soierie soierie nom f s 0.32 1.96 0.27 0.54 +soieries soierie nom f p 0.32 1.96 0.05 1.42 +soies soie nom f p 10.38 51.62 0.42 1.62 +soif soif nom f s 31.82 35.54 31.28 35.27 +soiffard soiffard adj m s 0.03 0.27 0.03 0.14 +soiffarde soiffard nom f s 0.33 0.54 0.02 0.07 +soiffards soiffard nom m p 0.33 0.54 0.29 0.41 +soifs soif nom f p 31.82 35.54 0.54 0.27 +soigna soigner ver 47.77 42.84 0.26 0.81 ind:pas:3s; +soignable soignable adj f s 0.16 0.00 0.16 0.00 +soignai soigner ver 47.77 42.84 0.00 0.07 ind:pas:1s; +soignaient soigner ver 47.77 42.84 0.02 0.68 ind:imp:3p; +soignais soigner ver 47.77 42.84 0.40 0.41 ind:imp:1s;ind:imp:2s; +soignait soigner ver 47.77 42.84 0.57 4.66 ind:imp:3s; +soignant soignant adj m s 0.17 0.07 0.12 0.07 +soignante soignant adj f s 0.17 0.07 0.03 0.00 +soignantes soignant adj f p 0.17 0.07 0.01 0.00 +soignants soignant nom m p 0.10 0.27 0.06 0.00 +soigne soigner ver 47.77 42.84 9.23 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soignent soigner ver 47.77 42.84 1.01 0.88 ind:pre:3p; +soigner soigner ver 47.77 42.84 22.82 17.64 ind:imp:3s;inf; +soignera soigner ver 47.77 42.84 1.19 0.54 ind:fut:3s; +soignerai soigner ver 47.77 42.84 0.50 0.61 ind:fut:1s; +soigneraient soigner ver 47.77 42.84 0.17 0.00 cnd:pre:3p; +soignerais soigner ver 47.77 42.84 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +soignerait soigner ver 47.77 42.84 0.08 0.47 cnd:pre:3s; +soigneras soigner ver 47.77 42.84 0.04 0.00 ind:fut:2s; +soignerez soigner ver 47.77 42.84 0.17 0.00 ind:fut:2p; +soignerons soigner ver 47.77 42.84 0.17 0.00 ind:fut:1p; +soigneront soigner ver 47.77 42.84 0.34 0.14 ind:fut:3p; +soignes soigner ver 47.77 42.84 1.06 0.54 ind:pre:2s; +soigneur soigneur nom m s 0.16 0.95 0.09 0.34 +soigneurs soigneur nom m p 0.16 0.95 0.07 0.61 +soigneuse soigneux adj f s 0.78 3.78 0.22 1.28 +soigneusement soigneusement adv 3.52 34.39 3.52 34.39 +soigneuses soigneux adj f p 0.78 3.78 0.00 0.20 +soigneux soigneux adj m 0.78 3.78 0.56 2.30 +soignez soigner ver 47.77 42.84 2.04 0.41 imp:pre:2p;ind:pre:2p; +soigniez soigner ver 47.77 42.84 0.08 0.00 ind:imp:2p;sub:pre:2p; +soignons soigner ver 47.77 42.84 0.18 0.00 imp:pre:1p;ind:pre:1p; +soignèrent soigner ver 47.77 42.84 0.00 0.27 ind:pas:3p; +soigné soigner ver m s 47.77 42.84 5.42 6.35 par:pas; +soignée soigner ver f s 47.77 42.84 1.10 1.76 par:pas; +soignées soigné adj f p 1.91 9.80 0.19 1.35 +soignés soigner ver m p 47.77 42.84 0.47 0.81 par:pas; +soin soin nom m s 71.99 68.24 54.45 45.41 +soins soin nom m p 71.99 68.24 17.55 22.84 +soir soir nom m s 575.70 562.64 555.85 527.23 +soirs soir nom m p 575.70 562.64 19.86 35.41 +soirée soirée nom f s 102.37 76.69 94.36 58.24 +soirées soirée nom f p 102.37 76.69 8.02 18.45 +sois être aux 8074.24 6501.82 49.52 14.19 sub:pre:2s; +soissonnais soissonnais nom m 0.00 0.14 0.00 0.14 +soit être aux 8074.24 6501.82 100.79 76.01 sub:pre:3s; +soixantaine soixantaine nom f s 0.42 4.53 0.42 4.53 +soixante_cinq soixante_cinq adj_num 0.12 3.58 0.12 3.58 +soixante_deux soixante_deux adj_num 0.15 0.34 0.15 0.34 +soixante_deuxième soixante_deuxième adj 0.00 0.07 0.00 0.07 +soixante_dix_huit soixante_dix_huit adj_num 0.16 0.47 0.16 0.47 +soixante_dix_neuf soixante_dix_neuf adj_num 0.01 0.20 0.01 0.20 +soixante_dix_neuvième soixante_dix_neuvième adj 0.00 0.07 0.00 0.07 +soixante_dix_sept soixante_dix_sept adj_num 0.21 0.74 0.21 0.74 +soixante_dix soixante_dix adj_num 1.12 8.85 1.12 8.85 +soixante_dixième soixante_dixième nom s 0.00 0.47 0.00 0.47 +soixante_douze soixante_douze adj_num 0.23 1.15 0.23 1.15 +soixante_huit soixante_huit adj_num 0.16 0.81 0.16 0.81 +soixante_huitard soixante_huitard nom m s 0.01 0.14 0.01 0.00 +soixante_huitard soixante_huitard adj f s 0.00 0.07 0.00 0.07 +soixante_huitard soixante_huitard nom m p 0.01 0.14 0.00 0.14 +soixante_neuf soixante_neuf adj_num 0.16 0.41 0.16 0.41 +soixante_quatorze soixante_quatorze adj_num 0.03 0.61 0.03 0.61 +soixante_quatre soixante_quatre adj_num 0.04 0.61 0.04 0.61 +soixante_quinze soixante_quinze adj_num 0.27 3.85 0.27 3.85 +soixante_seize soixante_seize adj_num 0.07 0.68 0.07 0.68 +soixante_sept soixante_sept adj_num 0.20 0.81 0.20 0.81 +soixante_six soixante_six adj_num 0.08 0.81 0.08 0.81 +soixante_treize soixante_treize adj_num 0.01 1.08 0.01 1.08 +soixante_trois soixante_trois adj_num 0.15 0.20 0.15 0.20 +soixante soixante adj_num 3.92 22.70 3.92 22.70 +soixantième soixantième nom s 0.01 0.20 0.01 0.20 +soja soja nom m s 2.28 0.61 2.28 0.61 +sol_air sol_air adj 0.32 0.00 0.32 0.00 +sol sol nom m s 47.17 150.34 45.83 148.31 +solaire solaire adj s 8.53 7.43 7.04 6.49 +solaires solaire adj p 8.53 7.43 1.49 0.95 +solanacée solanacée nom f s 0.03 0.07 0.01 0.07 +solanacées solanacée nom f p 0.03 0.07 0.02 0.00 +solarium solarium nom m s 0.36 0.74 0.36 0.68 +solariums solarium nom m p 0.36 0.74 0.00 0.07 +solda solder ver 1.52 3.72 0.01 0.07 ind:pas:3s; +soldaient solder ver 1.52 3.72 0.00 0.07 ind:imp:3p; +soldait solder ver 1.52 3.72 0.01 0.20 ind:imp:3s; +soldat soldat nom m s 107.92 128.92 52.78 46.22 +soldate soldat nom f s 107.92 128.92 0.18 0.20 +soldatesque soldatesque nom f s 0.00 0.81 0.00 0.81 +soldats soldat nom m p 107.92 128.92 54.96 82.50 +solde solde nom s 6.76 9.05 5.09 6.89 +soldent solder ver 1.52 3.72 0.01 0.20 ind:pre:3p; +solder solder ver 1.52 3.72 0.33 0.74 inf; +soldera solder ver 1.52 3.72 0.15 0.07 ind:fut:3s; +solderais solder ver 1.52 3.72 0.01 0.00 cnd:pre:1s; +solderait solder ver 1.52 3.72 0.00 0.27 cnd:pre:3s; +solderie solderie nom f s 0.05 0.00 0.05 0.00 +soldes solde nom p 6.76 9.05 1.67 2.16 +soldeur soldeur nom m s 0.01 0.20 0.01 0.07 +soldeurs soldeur nom m p 0.01 0.20 0.00 0.14 +soldez solder ver 1.52 3.72 0.02 0.00 imp:pre:2p;ind:pre:2p; +soldât solder ver 1.52 3.72 0.00 0.14 sub:imp:3s; +soldèrent solder ver 1.52 3.72 0.01 0.07 ind:pas:3p; +soldé solder ver m s 1.52 3.72 0.28 0.47 par:pas; +soldée solder ver f s 1.52 3.72 0.19 0.47 par:pas; +soldées solder ver f p 1.52 3.72 0.05 0.14 par:pas; +soldés solder ver m p 1.52 3.72 0.17 0.41 par:pas; +sole sole nom f s 1.35 2.50 1.29 1.89 +soleil_roi soleil_roi nom m s 0.00 0.07 0.00 0.07 +soleil soleil nom m s 123.34 334.39 120.72 328.78 +soleilleux soleilleux adj m s 0.00 0.07 0.00 0.07 +soleils soleil nom m p 123.34 334.39 2.61 5.61 +solen solen nom m s 0.03 0.07 0.03 0.07 +solennel solennel adj m s 4.58 19.66 2.30 8.11 +solennelle solennel adj f s 4.58 19.66 1.85 8.24 +solennellement solennellement adv 1.77 6.15 1.77 6.15 +solennelles solennel adj f p 4.58 19.66 0.19 1.35 +solennels solennel adj m p 4.58 19.66 0.25 1.96 +solenniser solenniser ver 0.01 0.07 0.01 0.00 inf; +solennisèrent solenniser ver 0.01 0.07 0.00 0.07 ind:pas:3p; +solennité solennité nom f s 0.15 8.11 0.15 7.77 +solennités solennité nom f p 0.15 8.11 0.00 0.34 +soles sole nom f p 1.35 2.50 0.06 0.61 +solex solex nom m 0.25 3.38 0.25 3.38 +solfatares solfatare nom f p 0.00 0.14 0.00 0.14 +solfège solfège nom m s 0.16 0.95 0.16 0.95 +soli solo nom m p 5.22 3.38 0.00 0.20 +solicitor solicitor nom m s 0.00 0.14 0.00 0.07 +solicitors solicitor nom m p 0.00 0.14 0.00 0.07 +solidaire solidaire adj s 2.17 4.80 0.91 2.50 +solidairement solidairement adv 0.00 0.20 0.00 0.20 +solidaires solidaire adj p 2.17 4.80 1.26 2.30 +solidariser solidariser ver 0.00 0.27 0.00 0.20 inf; +solidarisez solidariser ver 0.00 0.27 0.00 0.07 ind:pre:2p; +solidarité solidarité nom f s 2.87 9.05 2.87 8.99 +solidarités solidarité nom f p 2.87 9.05 0.00 0.07 +solide solide adj s 21.71 42.77 17.31 31.49 +solidement solidement adv 0.81 10.00 0.81 10.00 +solides solide adj p 21.71 42.77 4.40 11.28 +solidifia solidifier ver 0.45 1.42 0.00 0.27 ind:pas:3s; +solidifiait solidifier ver 0.45 1.42 0.00 0.07 ind:imp:3s; +solidification solidification nom f s 0.01 0.00 0.01 0.00 +solidifie solidifier ver 0.45 1.42 0.17 0.14 ind:pre:1s;ind:pre:3s; +solidifient solidifier ver 0.45 1.42 0.10 0.00 ind:pre:3p; +solidifier solidifier ver 0.45 1.42 0.08 0.20 inf; +solidifié solidifier ver m s 0.45 1.42 0.06 0.27 par:pas; +solidifiée solidifier ver f s 0.45 1.42 0.02 0.27 par:pas; +solidifiées solidifier ver f p 0.45 1.42 0.00 0.14 par:pas; +solidifiés solidifier ver m p 0.45 1.42 0.01 0.07 par:pas; +solidité solidité nom f s 0.65 4.66 0.65 4.66 +solidus solidus nom m 0.00 0.07 0.00 0.07 +soliflore soliflore nom m s 0.00 0.20 0.00 0.20 +soliloqua soliloquer ver 0.01 0.95 0.00 0.14 ind:pas:3s; +soliloquait soliloquer ver 0.01 0.95 0.00 0.34 ind:imp:3s; +soliloque soliloque nom m s 0.02 1.22 0.01 0.81 +soliloquer soliloquer ver 0.01 0.95 0.00 0.14 inf; +soliloques soliloque nom m p 0.02 1.22 0.01 0.41 +solipsisme solipsisme nom m s 0.01 0.00 0.01 0.00 +solipsiste solipsiste adj s 0.04 0.00 0.04 0.00 +soliste soliste nom s 0.95 1.08 0.94 0.61 +solistes soliste nom p 0.95 1.08 0.01 0.47 +solitaire solitaire adj s 13.19 26.96 11.04 20.88 +solitairement solitairement adv 0.01 1.22 0.01 1.22 +solitaires solitaire adj p 13.19 26.96 2.15 6.08 +solitude solitude nom f s 19.64 69.73 19.48 66.96 +solitudes solitude nom f p 19.64 69.73 0.16 2.77 +solive solive nom f s 0.22 0.95 0.04 0.27 +soliveau soliveau nom m s 0.00 0.14 0.00 0.14 +solives solive nom f p 0.22 0.95 0.18 0.68 +sollicita solliciter ver 4.44 11.82 0.01 0.47 ind:pas:3s; +sollicitai solliciter ver 4.44 11.82 0.00 0.34 ind:pas:1s; +sollicitaient solliciter ver 4.44 11.82 0.00 0.54 ind:imp:3p; +sollicitais solliciter ver 4.44 11.82 0.00 0.27 ind:imp:1s; +sollicitait solliciter ver 4.44 11.82 0.01 0.88 ind:imp:3s; +sollicitant solliciter ver 4.44 11.82 0.06 0.47 par:pre; +sollicitation sollicitation nom f s 0.24 2.30 0.23 0.61 +sollicitations sollicitation nom f p 0.24 2.30 0.01 1.69 +sollicite solliciter ver 4.44 11.82 1.00 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sollicitent solliciter ver 4.44 11.82 0.09 0.34 ind:pre:3p;sub:pre:3p; +solliciter solliciter ver 4.44 11.82 0.74 3.11 inf; +sollicitera solliciter ver 4.44 11.82 0.17 0.00 ind:fut:3s; +solliciteraient solliciter ver 4.44 11.82 0.00 0.07 cnd:pre:3p; +solliciteur solliciteur nom m s 0.40 0.68 0.13 0.14 +solliciteurs solliciteur nom m p 0.40 0.68 0.27 0.47 +solliciteuse solliciteur nom f s 0.40 0.68 0.00 0.07 +sollicitez solliciter ver 4.44 11.82 0.43 0.07 imp:pre:2p;ind:pre:2p; +sollicitons solliciter ver 4.44 11.82 0.12 0.00 imp:pre:1p;ind:pre:1p; +sollicitât solliciter ver 4.44 11.82 0.00 0.14 sub:imp:3s; +sollicitèrent solliciter ver 4.44 11.82 0.00 0.07 ind:pas:3p; +sollicité solliciter ver m s 4.44 11.82 1.28 2.30 par:pas; +sollicitude sollicitude nom f s 1.85 9.46 1.84 8.99 +sollicitudes sollicitude nom f p 1.85 9.46 0.01 0.47 +sollicitée solliciter ver f s 4.44 11.82 0.22 0.61 par:pas; +sollicitées solliciter ver f p 4.44 11.82 0.11 0.27 par:pas; +sollicités solliciter ver m p 4.44 11.82 0.22 0.54 par:pas; +solo solo nom m s 5.22 3.38 4.81 2.57 +solognot solognot adj m s 0.00 0.54 0.00 0.27 +solognote solognot adj f s 0.00 0.54 0.00 0.07 +solognots solognot adj m p 0.00 0.54 0.00 0.20 +solos solo nom m p 5.22 3.38 0.41 0.61 +sols sol nom m p 47.17 150.34 1.34 2.03 +solstice solstice nom m s 0.54 1.42 0.54 1.28 +solstices solstice nom m p 0.54 1.42 0.00 0.14 +solubilité solubilité nom f s 0.01 0.00 0.01 0.00 +soluble soluble adj s 0.41 0.34 0.39 0.20 +solubles soluble adj p 0.41 0.34 0.02 0.14 +solucamphre solucamphre nom m s 0.00 0.07 0.00 0.07 +solécismes solécisme nom m p 0.00 0.14 0.00 0.14 +solénoïde solénoïde nom m s 0.11 0.00 0.09 0.00 +solénoïdes solénoïde nom m p 0.11 0.00 0.02 0.00 +solution solution nom f s 61.96 43.51 56.46 36.89 +solutionnait solutionner ver 0.13 0.14 0.00 0.07 ind:imp:3s; +solutionner solutionner ver 0.13 0.14 0.12 0.07 inf; +solutionneur solutionneur nom m s 0.03 0.00 0.03 0.00 +solutionnons solutionner ver 0.13 0.14 0.01 0.00 imp:pre:1p; +solutions solution nom f p 61.96 43.51 5.50 6.62 +soluté soluté nom m s 0.17 0.07 0.15 0.07 +solutés soluté nom m p 0.17 0.07 0.01 0.00 +solvabilité solvabilité nom f s 0.15 0.14 0.15 0.14 +solvable solvable adj m s 0.36 0.00 0.36 0.00 +solvant solvant nom m s 0.24 0.27 0.18 0.20 +solvants solvant nom m p 0.24 0.27 0.06 0.07 +soma soma nom m s 0.48 0.00 0.48 0.00 +somalien somalien adj m s 0.07 0.00 0.04 0.00 +somalienne somalien adj f s 0.07 0.00 0.01 0.00 +somaliens somalien nom m p 0.32 0.14 0.32 0.14 +somalis somali adj m p 0.00 0.07 0.00 0.07 +somatique somatique adj m s 0.20 0.14 0.04 0.14 +somatiques somatique adj p 0.20 0.14 0.16 0.00 +somatisant somatiser ver 0.01 0.47 0.00 0.07 par:pre; +somatise somatiser ver 0.01 0.47 0.01 0.14 ind:pre:3s; +somatiser somatiser ver 0.01 0.47 0.00 0.14 inf; +somatiserez somatiser ver 0.01 0.47 0.00 0.07 ind:fut:2p; +somatisée somatiser ver f s 0.01 0.47 0.00 0.07 par:pas; +sombra sombrer ver 5.51 19.32 0.53 1.62 ind:pas:3s; +sombrai sombrer ver 5.51 19.32 0.01 0.41 ind:pas:1s; +sombraient sombrer ver 5.51 19.32 0.01 0.88 ind:imp:3p; +sombrais sombrer ver 5.51 19.32 0.01 0.68 ind:imp:1s;ind:imp:2s; +sombrait sombrer ver 5.51 19.32 0.19 1.76 ind:imp:3s; +sombrant sombrer ver 5.51 19.32 0.04 0.41 par:pre; +sombre sombre adj s 31.86 125.74 24.66 93.72 +sombrement sombrement adv 0.12 2.03 0.12 2.03 +sombrent sombrer ver 5.51 19.32 0.33 0.41 ind:pre:3p; +sombrer sombrer ver 5.51 19.32 2.22 6.49 inf; +sombrera sombrer ver 5.51 19.32 0.21 0.41 ind:fut:3s; +sombreraient sombrer ver 5.51 19.32 0.00 0.07 cnd:pre:3p; +sombrerais sombrer ver 5.51 19.32 0.01 0.00 cnd:pre:2s; +sombrerait sombrer ver 5.51 19.32 0.03 0.07 cnd:pre:3s; +sombrerez sombrer ver 5.51 19.32 0.01 0.00 ind:fut:2p; +sombrero sombrero nom m s 0.57 0.68 0.44 0.34 +sombrerons sombrer ver 5.51 19.32 0.02 0.07 ind:fut:1p; +sombreros sombrero nom m p 0.57 0.68 0.13 0.34 +sombres sombre adj p 31.86 125.74 7.21 32.03 +sombrez sombrer ver 5.51 19.32 0.03 0.00 ind:pre:2p; +sombrions sombrer ver 5.51 19.32 0.00 0.27 ind:imp:1p; +sombrons sombrer ver 5.51 19.32 0.02 0.14 imp:pre:1p;ind:pre:1p; +sombrèrent sombrer ver 5.51 19.32 0.00 0.14 ind:pas:3p; +sombré sombrer ver m s 5.51 19.32 1.22 2.70 par:pas; +sombrée sombrer ver f s 5.51 19.32 0.00 0.20 par:pas; +sombrées sombrer ver f p 5.51 19.32 0.00 0.14 par:pas; +sombrés sombrer ver m p 5.51 19.32 0.01 0.07 par:pas; +somma sommer ver 3.17 6.01 0.00 0.47 ind:pas:3s; +sommai sommer ver 3.17 6.01 0.00 0.20 ind:pas:1s; +sommaire sommaire adj s 0.56 4.80 0.46 3.45 +sommairement sommairement adv 0.13 2.16 0.13 2.16 +sommaires sommaire adj p 0.56 4.80 0.10 1.35 +sommais sommer ver 3.17 6.01 0.00 0.07 ind:imp:1s; +sommait sommer ver 3.17 6.01 0.01 0.47 ind:imp:3s; +sommant sommer ver 3.17 6.01 0.00 0.27 par:pre; +sommation sommation nom f s 1.00 3.24 0.94 1.69 +sommations sommation nom f p 1.00 3.24 0.07 1.55 +somme somme nom s 32.89 79.26 28.27 72.70 +sommeil sommeil nom m s 44.53 114.80 44.51 112.03 +sommeilla sommeiller ver 1.67 6.89 0.00 0.14 ind:pas:3s; +sommeillaient sommeiller ver 1.67 6.89 0.02 0.81 ind:imp:3p; +sommeillais sommeiller ver 1.67 6.89 0.03 0.07 ind:imp:1s; +sommeillait sommeiller ver 1.67 6.89 0.05 1.89 ind:imp:3s; +sommeillant sommeillant adj m s 0.00 1.08 0.00 0.61 +sommeillante sommeillant adj f s 0.00 1.08 0.00 0.27 +sommeillants sommeillant adj m p 0.00 1.08 0.00 0.20 +sommeille sommeiller ver 1.67 6.89 0.89 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sommeillent sommeiller ver 1.67 6.89 0.17 0.61 ind:pre:3p; +sommeiller sommeiller ver 1.67 6.89 0.50 1.08 inf; +sommeilleux sommeilleux adj m p 0.00 0.34 0.00 0.34 +sommeillèrent sommeiller ver 1.67 6.89 0.00 0.07 ind:pas:3p; +sommeillé sommeiller ver m s 1.67 6.89 0.01 0.41 par:pas; +sommeils sommeil nom m p 44.53 114.80 0.02 2.77 +sommelier sommelier nom m s 0.34 1.15 0.34 1.15 +somment sommer ver 3.17 6.01 0.14 0.07 ind:pre:3p; +sommer sommer ver 3.17 6.01 0.36 0.27 inf; +sommes être aux 8074.24 6501.82 109.26 99.46 ind:pre:1p; +sommet sommet nom m s 17.44 47.50 15.15 38.85 +sommets sommet nom m p 17.44 47.50 2.29 8.65 +sommier sommier nom m s 0.30 7.97 0.28 6.82 +sommiers sommier nom m p 0.30 7.97 0.02 1.15 +sommiez sommer ver 3.17 6.01 0.01 0.00 ind:imp:2p; +sommitales sommital adj f p 0.00 0.07 0.00 0.07 +sommité sommité nom f s 0.50 2.64 0.24 2.03 +sommités sommité nom f p 0.50 2.64 0.26 0.61 +sommons sommer ver 3.17 6.01 0.02 0.07 ind:pre:1p; +sommèrent sommer ver 3.17 6.01 0.00 0.07 ind:pas:3p; +sommé sommer ver m s 3.17 6.01 0.14 1.42 par:pas; +sommée sommer ver f s 3.17 6.01 0.01 0.68 par:pas; +sommés sommer ver m p 3.17 6.01 0.02 0.27 par:pas; +somnambulant somnambuler ver 0.00 0.14 0.00 0.14 par:pre; +somnambule somnambule nom s 2.71 4.73 2.33 4.05 +somnambules somnambule nom p 2.71 4.73 0.38 0.68 +somnambulique somnambulique adj s 0.02 1.62 0.02 1.28 +somnambuliquement somnambuliquement adv 0.00 0.07 0.00 0.07 +somnambuliques somnambulique adj p 0.02 1.62 0.00 0.34 +somnambulisme somnambulisme nom m s 0.27 0.74 0.27 0.74 +somnifère somnifère nom m s 5.73 2.97 2.01 1.55 +somnifères somnifère nom m p 5.73 2.97 3.72 1.42 +somno somno nom m s 0.00 0.07 0.00 0.07 +somnola somnoler ver 0.50 10.47 0.00 0.14 ind:pas:3s; +somnolai somnoler ver 0.50 10.47 0.00 0.07 ind:pas:1s; +somnolaient somnoler ver 0.50 10.47 0.00 0.88 ind:imp:3p; +somnolais somnoler ver 0.50 10.47 0.05 0.54 ind:imp:1s; +somnolait somnoler ver 0.50 10.47 0.02 3.45 ind:imp:3s; +somnolant somnoler ver 0.50 10.47 0.03 1.01 par:pre; +somnole somnoler ver 0.50 10.47 0.17 1.89 ind:pre:1s;ind:pre:3s; +somnolence somnolence nom f s 0.37 3.58 0.36 3.18 +somnolences somnolence nom f p 0.37 3.58 0.01 0.41 +somnolent somnolent adj m s 0.18 4.05 0.08 1.69 +somnolente somnolent adj f s 0.18 4.05 0.08 1.01 +somnolentes somnolent adj f p 0.18 4.05 0.01 0.54 +somnolents somnolent adj m p 0.18 4.05 0.01 0.81 +somnoler somnoler ver 0.50 10.47 0.11 1.35 inf; +somnolerais somnoler ver 0.50 10.47 0.00 0.07 cnd:pre:1s; +somnolez somnoler ver 0.50 10.47 0.00 0.07 ind:pre:2p; +somnolé somnoler ver m s 0.50 10.47 0.11 0.34 par:pas; +somozistes somoziste nom p 0.01 0.00 0.01 0.00 +somptuaire somptuaire adj s 0.02 0.41 0.00 0.14 +somptuaires somptuaire adj f p 0.02 0.41 0.02 0.27 +somptueuse somptueux adj f s 3.06 13.18 0.68 3.78 +somptueusement somptueusement adv 0.50 0.95 0.50 0.95 +somptueuses somptueux adj f p 3.06 13.18 0.19 1.96 +somptueux somptueux adj m 3.06 13.18 2.20 7.43 +somptuosité somptuosité nom f s 0.03 1.08 0.03 0.81 +somptuosités somptuosité nom f p 0.03 1.08 0.00 0.27 +son son adj_pos 1740.43 4696.15 1740.43 4696.15 +sonagramme sonagramme nom m s 0.01 0.00 0.01 0.00 +sonar sonar nom m s 1.71 0.07 1.54 0.07 +sonars sonar nom m p 1.71 0.07 0.17 0.00 +sonate sonate nom f s 2.98 1.69 2.95 1.15 +sonates sonate nom f p 2.98 1.69 0.03 0.54 +sonatine sonatine nom f s 0.14 1.62 0.14 1.62 +sonda sonder ver 3.31 5.07 0.00 0.61 ind:pas:3s; +sondage sondage nom m s 4.64 2.16 2.33 0.74 +sondages sondage nom m p 4.64 2.16 2.32 1.42 +sondaient sonder ver 3.31 5.07 0.00 0.07 ind:imp:3p; +sondait sonder ver 3.31 5.07 0.01 0.27 ind:imp:3s; +sondant sonder ver 3.31 5.07 0.19 0.34 par:pre; +sondas sonder ver 3.31 5.07 0.00 0.07 ind:pas:2s; +sonde sonde nom f s 6.31 0.95 5.30 0.81 +sondent sonder ver 3.31 5.07 0.08 0.14 ind:pre:3p; +sonder sonder ver 3.31 5.07 1.69 2.23 inf; +sonderai sonder ver 3.31 5.07 0.00 0.07 ind:fut:1s; +sondes sonde nom f p 6.31 0.95 1.01 0.14 +sondeur sondeur nom m s 0.13 0.20 0.07 0.07 +sondeurs sondeur nom m p 0.13 0.20 0.04 0.14 +sondeuse sondeur nom f s 0.13 0.20 0.01 0.00 +sondez sonder ver 3.31 5.07 0.20 0.07 imp:pre:2p;ind:pre:2p; +sondions sonder ver 3.31 5.07 0.01 0.00 ind:imp:1p; +sondons sonder ver 3.31 5.07 0.04 0.00 imp:pre:1p;ind:pre:1p; +sondèrent sonder ver 3.31 5.07 0.00 0.14 ind:pas:3p; +sondé sonder ver m s 3.31 5.07 0.46 0.41 par:pas; +sondée sonder ver f s 3.31 5.07 0.05 0.00 par:pas; +sondés sonder ver m p 3.31 5.07 0.03 0.00 par:pas; +song song nom m 0.40 0.14 0.40 0.14 +songe_creux songe_creux nom m 0.01 0.41 0.01 0.41 +songe songer ver 24.59 104.86 4.28 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +songea songer ver 24.59 104.86 0.24 14.80 ind:pas:3s; +songeai songer ver 24.59 104.86 0.15 2.77 ind:pas:1s; +songeaient songer ver 24.59 104.86 0.01 1.69 ind:imp:3p; +songeais songer ver 24.59 104.86 0.92 6.08 ind:imp:1s;ind:imp:2s; +songeait songer ver 24.59 104.86 0.34 17.30 ind:imp:3s; +songeant songer ver 24.59 104.86 0.61 8.11 par:pre; +songeasse songer ver 24.59 104.86 0.00 0.14 sub:imp:1s; +songent songer ver 24.59 104.86 0.58 0.74 ind:pre:3p; +songeons songer ver 24.59 104.86 0.35 0.34 imp:pre:1p;ind:pre:1p; +songeât songer ver 24.59 104.86 0.00 0.41 sub:imp:3s; +songer songer ver 24.59 104.86 5.56 18.31 inf; +songera songer ver 24.59 104.86 0.03 0.41 ind:fut:3s; +songerai songer ver 24.59 104.86 0.26 0.27 ind:fut:1s; +songeraient songer ver 24.59 104.86 0.02 0.07 cnd:pre:3p; +songerais songer ver 24.59 104.86 0.19 0.27 cnd:pre:1s;cnd:pre:2s; +songerait songer ver 24.59 104.86 0.05 0.61 cnd:pre:3s; +songerie songerie nom f s 0.16 1.69 0.14 0.81 +songeries songerie nom f p 0.16 1.69 0.02 0.88 +songeriez songer ver 24.59 104.86 0.04 0.07 cnd:pre:2p; +songerons songer ver 24.59 104.86 0.28 0.07 ind:fut:1p; +songes songer ver 24.59 104.86 0.86 0.68 ind:pre:2s;sub:pre:2s; +songeur songeur adj m s 0.26 6.08 0.25 3.45 +songeurs songeur adj m p 0.26 6.08 0.00 0.34 +songeuse songeur adj f s 0.26 6.08 0.01 1.96 +songeusement songeusement adv 0.00 0.20 0.00 0.20 +songeuses songeur adj f p 0.26 6.08 0.00 0.34 +songez songer ver 24.59 104.86 5.00 3.45 imp:pre:2p;ind:pre:2p; +songiez songer ver 24.59 104.86 0.14 0.00 ind:imp:2p; +songions songer ver 24.59 104.86 0.00 0.14 ind:imp:1p; +songèrent songer ver 24.59 104.86 0.00 0.27 ind:pas:3p; +songé songer ver m s 24.59 104.86 4.69 10.88 par:pas; +sonique sonique adj s 0.45 0.07 0.35 0.07 +soniques sonique adj p 0.45 0.07 0.09 0.00 +sonna sonner ver 73.67 92.57 0.67 12.23 ind:pas:3s; +sonnai sonner ver 73.67 92.57 0.01 0.81 ind:pas:1s; +sonnaient sonner ver 73.67 92.57 0.59 6.22 ind:imp:3p; +sonnaillaient sonnailler ver 0.00 0.20 0.00 0.14 ind:imp:3p; +sonnaille sonnaille nom f s 0.00 1.15 0.00 0.20 +sonnailler sonnailler ver 0.00 0.20 0.00 0.07 inf; +sonnailles sonnaille nom f p 0.00 1.15 0.00 0.95 +sonnais sonner ver 73.67 92.57 0.33 0.41 ind:imp:1s;ind:imp:2s; +sonnait sonner ver 73.67 92.57 2.78 12.84 ind:imp:3s; +sonnant sonner ver 73.67 92.57 0.32 1.96 par:pre; +sonnante sonnant adj f s 0.20 6.89 0.00 0.34 +sonnantes sonnant adj f p 0.20 6.89 0.14 5.54 +sonnants sonnant adj m p 0.20 6.89 0.01 0.14 +sonne sonner ver 73.67 92.57 31.69 16.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sonnent sonner ver 73.67 92.57 2.92 3.85 ind:pre:3p;sub:pre:3p; +sonner sonner ver 73.67 92.57 11.77 18.04 inf; +sonnera sonner ver 73.67 92.57 1.69 1.15 ind:fut:3s; +sonnerai sonner ver 73.67 92.57 0.25 0.27 ind:fut:1s; +sonnerais sonner ver 73.67 92.57 0.13 0.20 cnd:pre:1s;cnd:pre:2s; +sonnerait sonner ver 73.67 92.57 0.50 1.08 cnd:pre:3s; +sonneras sonner ver 73.67 92.57 0.02 0.07 ind:fut:2s; +sonnerez sonner ver 73.67 92.57 0.01 0.14 ind:fut:2p; +sonnerie sonnerie nom f s 6.65 18.31 6.03 15.68 +sonneries sonnerie nom f p 6.65 18.31 0.63 2.64 +sonneront sonner ver 73.67 92.57 0.37 0.20 ind:fut:3p; +sonnes sonner ver 73.67 92.57 0.48 0.14 ind:pre:2s; +sonnet sonnet nom m s 1.21 2.09 0.72 1.35 +sonnets sonnet nom m p 1.21 2.09 0.49 0.74 +sonnette sonnette nom f s 9.55 16.15 8.47 14.12 +sonnettes sonnette nom f p 9.55 16.15 1.08 2.03 +sonneur sonneur nom m s 1.34 0.61 1.31 0.34 +sonneurs sonneur nom m p 1.34 0.61 0.03 0.27 +sonnez sonner ver 73.67 92.57 2.09 0.14 imp:pre:2p;ind:pre:2p; +sonniez sonner ver 73.67 92.57 0.04 0.00 ind:imp:2p; +sonnons sonner ver 73.67 92.57 0.04 0.14 imp:pre:1p;ind:pre:1p; +sonnât sonner ver 73.67 92.57 0.01 0.34 sub:imp:3s; +sonnèrent sonner ver 73.67 92.57 0.13 1.76 ind:pas:3p; +sonné sonner ver m s 73.67 92.57 16.04 12.23 par:pas; +sonnée sonner ver f s 73.67 92.57 0.71 0.81 par:pas; +sonnées sonné adj f p 0.66 3.58 0.01 0.14 +sonnés sonner ver m p 73.67 92.57 0.07 0.54 par:pas; +sono sono nom f s 1.23 1.89 1.18 1.89 +sonoluminescence sonoluminescence nom f s 0.01 0.00 0.01 0.00 +sonomètres sonomètre nom m p 0.01 0.00 0.01 0.00 +sonore sonore adj s 4.17 27.30 3.26 19.80 +sonorement sonorement adv 0.00 0.07 0.00 0.07 +sonores sonore adj p 4.17 27.30 0.91 7.50 +sonorisateurs sonorisateur nom m p 0.00 0.07 0.00 0.07 +sonorisation sonorisation nom f s 0.03 0.27 0.03 0.27 +sonorise sonoriser ver 0.06 0.27 0.01 0.07 ind:pre:3s; +sonoriser sonoriser ver 0.06 0.27 0.03 0.14 inf; +sonorisé sonoriser ver m s 0.06 0.27 0.02 0.00 par:pas; +sonorisées sonoriser ver f p 0.06 0.27 0.00 0.07 par:pas; +sonorité sonorité nom f s 0.29 6.15 0.26 4.53 +sonorités sonorité nom f p 0.29 6.15 0.04 1.62 +sonos sono nom f p 1.23 1.89 0.05 0.00 +sonothèque sonothèque nom f s 0.01 0.00 0.01 0.00 +sonotone sonotone nom m s 0.17 0.07 0.16 0.00 +sonotones sonotone nom m p 0.17 0.07 0.01 0.07 +sons son nom_sup m p 47.51 67.84 7.83 18.51 +sont être aux 8074.24 6501.82 511.66 386.35 ind:pre:3p; +sopha sopha nom m s 0.00 0.27 0.00 0.27 +sophie sophie nom f s 1.23 0.00 1.23 0.00 +sophisme sophisme nom m s 0.29 0.54 0.29 0.20 +sophismes sophisme nom m p 0.29 0.54 0.00 0.34 +sophiste sophiste nom s 0.10 0.47 0.10 0.27 +sophistes sophiste nom p 0.10 0.47 0.00 0.20 +sophistication sophistication nom f s 0.22 0.68 0.22 0.61 +sophistications sophistication nom f p 0.22 0.68 0.00 0.07 +sophistique sophistique adj s 0.11 0.00 0.11 0.00 +sophistiqué sophistiqué adj m s 3.57 2.23 1.79 0.34 +sophistiquée sophistiqué adj f s 3.57 2.23 0.94 0.95 +sophistiquées sophistiqué adj f p 3.57 2.23 0.32 0.41 +sophistiqués sophistiqué adj m p 3.57 2.23 0.53 0.54 +sophora sophora nom m s 0.14 0.00 0.14 0.00 +sopor sopor nom m s 0.00 0.07 0.00 0.07 +soporifique soporifique adj s 0.62 0.20 0.59 0.20 +soporifiques soporifique adj f p 0.62 0.20 0.04 0.00 +soprano soprano nom s 5.21 2.03 4.80 1.76 +sopranos soprano nom p 5.21 2.03 0.41 0.27 +sorbes sorbe nom f p 0.00 0.07 0.00 0.07 +sorbet sorbet nom m s 0.55 1.55 0.37 0.81 +sorbetière sorbetière nom f s 0.09 0.27 0.09 0.07 +sorbetières sorbetière nom f p 0.09 0.27 0.00 0.20 +sorbets sorbet nom m p 0.55 1.55 0.19 0.74 +sorbier sorbier nom m s 1.18 0.47 1.18 0.34 +sorbiers sorbier nom m p 1.18 0.47 0.00 0.14 +sorbitol sorbitol nom m s 0.03 0.00 0.03 0.00 +sorbonnarde sorbonnard nom f s 0.00 0.07 0.00 0.07 +sorbonne sorbon nom f s 0.00 0.20 0.00 0.20 +sorcellerie sorcellerie nom f s 5.24 1.35 5.21 1.22 +sorcelleries sorcellerie nom f p 5.24 1.35 0.04 0.14 +sorcier sorcier nom m s 54.09 14.66 4.49 4.32 +sorciers sorcier nom m p 54.09 14.66 2.42 1.62 +sorcière sorcier nom f s 54.09 14.66 33.84 6.42 +sorcières sorcier nom f p 54.09 14.66 13.34 2.30 +sordide sordide adj s 6.37 10.95 4.39 7.57 +sordidement sordidement adv 0.14 0.20 0.14 0.20 +sordides sordide adj p 6.37 10.95 1.98 3.38 +sordidité sordidité nom f s 0.03 0.14 0.03 0.14 +sorgho sorgho nom m s 0.03 0.07 0.03 0.07 +sorite sorite nom m s 0.01 0.00 0.01 0.00 +sornette sornette nom f s 1.83 1.69 0.11 0.07 +sornettes sornette nom f p 1.83 1.69 1.72 1.62 +sororal sororal adj m s 0.01 0.27 0.01 0.07 +sororale sororal adj f s 0.01 0.27 0.00 0.14 +sororales sororal adj f p 0.01 0.27 0.00 0.07 +sororité sororité nom f s 0.11 0.14 0.11 0.14 +sors sortir ver 884.26 627.57 156.13 25.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sort sortir ver 884.26 627.57 82.41 58.51 ind:pre:3s; +sortîmes sortir ver 884.26 627.57 0.16 1.35 ind:pas:1p; +sortît sortir ver 884.26 627.57 0.00 0.61 sub:imp:3s; +sortable sortable adj s 0.29 0.07 0.28 0.07 +sortables sortable adj p 0.29 0.07 0.01 0.00 +sortaient sortir ver 884.26 627.57 2.76 21.42 ind:imp:3p; +sortais sortir ver 884.26 627.57 6.38 6.28 ind:imp:1s;ind:imp:2s; +sortait sortir ver 884.26 627.57 12.62 50.81 ind:imp:3s; +sortant sortir ver 884.26 627.57 10.57 34.66 par:pre; +sortante sortant adj f s 1.17 1.49 0.09 0.00 +sortantes sortant adj f p 1.17 1.49 0.02 0.07 +sortants sortant adj m p 1.17 1.49 0.27 0.14 +sorte sorte nom f s 114.73 307.16 98.33 273.38 +sortent sortir ver 884.26 627.57 18.97 17.43 ind:pre:3p; +sortes sorte nom f p 114.73 307.16 16.41 33.78 +sortez sortir ver 884.26 627.57 87.79 5.27 imp:pre:2p;ind:pre:2p; +sorti sortir ver m s 884.26 627.57 81.08 67.97 par:pas; +sortie sortie nom f s 47.81 75.27 42.58 66.01 +sorties sortie nom f p 47.81 75.27 5.23 9.26 +sortiez sortir ver 884.26 627.57 2.87 0.54 ind:imp:2p; +sortilège sortilège nom m s 3.19 3.18 2.46 1.62 +sortilèges sortilège nom m p 3.19 3.18 0.72 1.55 +sortions sortir ver 884.26 627.57 0.67 3.38 ind:imp:1p; +sortir sortir ver 884.26 627.57 285.45 145.34 inf; +sortira sortir ver 884.26 627.57 18.31 6.55 ind:fut:3s; +sortirai sortir ver 884.26 627.57 7.69 1.89 ind:fut:1s; +sortiraient sortir ver 884.26 627.57 0.38 2.03 cnd:pre:3p; +sortirais sortir ver 884.26 627.57 3.06 0.81 cnd:pre:1s;cnd:pre:2s; +sortirait sortir ver 884.26 627.57 3.02 5.47 cnd:pre:3s; +sortiras sortir ver 884.26 627.57 9.37 1.42 ind:fut:2s; +sortirent sortir ver 884.26 627.57 0.39 12.91 ind:pas:3p; +sortirez sortir ver 884.26 627.57 3.12 0.61 ind:fut:2p; +sortiriez sortir ver 884.26 627.57 0.40 0.07 cnd:pre:2p; +sortirions sortir ver 884.26 627.57 0.21 0.14 cnd:pre:1p; +sortirons sortir ver 884.26 627.57 2.50 0.88 ind:fut:1p; +sortiront sortir ver 884.26 627.57 2.61 0.95 ind:fut:3p; +sortis sortir ver m p 884.26 627.57 15.65 26.76 ind:pas:1s;ind:pas:2s;par:pas; +sortit sortir ver 884.26 627.57 2.31 86.96 ind:pas:3s; +sortons sortir ver 884.26 627.57 13.57 4.19 imp:pre:1p;ind:pre:1p; +sorts sort nom m p 44.80 58.92 1.88 1.42 +sosie sosie nom m s 1.89 1.22 1.54 0.88 +sosies sosie nom m p 1.89 1.22 0.34 0.34 +sostenuto sostenuto adv 0.00 0.07 0.00 0.07 +sot sot nom m s 5.61 3.99 2.38 1.01 +sotie sotie nom f s 0.00 0.07 0.00 0.07 +sots sot nom m p 5.61 3.99 1.27 0.88 +sotte sot adj f s 6.34 8.11 2.73 3.78 +sottement sottement adv 0.33 2.30 0.33 2.30 +sottes sot adj f p 6.34 8.11 0.99 0.88 +sottise sottise nom f s 6.97 11.82 2.44 6.96 +sottises sottise nom f p 6.97 11.82 4.54 4.86 +sou sou nom m s 35.92 41.22 14.43 12.57 +souabe souabe adj s 0.14 0.07 0.14 0.00 +souabes souabe nom p 0.20 0.34 0.20 0.34 +soubassement soubassement nom m s 0.13 2.23 0.02 1.82 +soubassements soubassement nom m p 0.13 2.23 0.11 0.41 +soubise soubise nom f s 0.00 0.07 0.00 0.07 +soubresaut soubresaut nom m s 0.53 6.96 0.26 1.49 +soubresautaient soubresauter ver 0.00 0.14 0.00 0.07 ind:imp:3p; +soubresautait soubresauter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +soubresauts soubresaut nom m p 0.53 6.96 0.27 5.47 +soubrette soubrette nom f s 1.11 3.11 0.95 2.36 +soubrettes soubrette nom f p 1.11 3.11 0.16 0.74 +souche souche nom f s 4.93 10.54 3.45 7.36 +souches souche nom f p 4.93 10.54 1.48 3.18 +souchet souchet nom m s 0.01 0.07 0.01 0.07 +souchette souchette nom f s 0.00 0.07 0.00 0.07 +souci souci nom m s 49.47 61.22 26.73 39.80 +soucia soucier ver 22.45 26.62 0.00 0.41 ind:pas:3s; +souciai soucier ver 22.45 26.62 0.01 0.20 ind:pas:1s; +souciaient soucier ver 22.45 26.62 0.28 1.22 ind:imp:3p; +souciais soucier ver 22.45 26.62 0.63 1.49 ind:imp:1s;ind:imp:2s; +souciait soucier ver 22.45 26.62 0.88 5.54 ind:imp:3s; +souciant soucier ver 22.45 26.62 0.05 0.41 par:pre; +soucie soucier ver 22.45 26.62 7.01 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soucient soucier ver 22.45 26.62 0.95 0.47 ind:pre:3p; +soucier soucier ver 22.45 26.62 5.62 8.92 inf; +souciera soucier ver 22.45 26.62 0.27 0.14 ind:fut:3s; +soucierai soucier ver 22.45 26.62 0.12 0.14 ind:fut:1s; +soucieraient soucier ver 22.45 26.62 0.04 0.14 cnd:pre:3p; +soucierais soucier ver 22.45 26.62 0.13 0.00 cnd:pre:1s;cnd:pre:2s; +soucierait soucier ver 22.45 26.62 0.22 0.27 cnd:pre:3s; +soucierez soucier ver 22.45 26.62 0.02 0.00 ind:fut:2p; +soucies soucier ver 22.45 26.62 2.19 0.20 ind:pre:2s; +soucieuse soucieux adj f s 2.28 16.62 0.37 3.45 +soucieuses soucieux adj f p 2.28 16.62 0.11 0.34 +soucieux soucieux adj m 2.28 16.62 1.79 12.84 +souciez soucier ver 22.45 26.62 1.86 0.41 imp:pre:2p;ind:pre:2p; +soucions soucier ver 22.45 26.62 0.16 0.07 imp:pre:1p;ind:pre:1p; +souciât soucier ver 22.45 26.62 0.00 0.34 sub:imp:3s; +soucis souci nom m p 49.47 61.22 22.73 21.42 +soucièrent soucier ver 22.45 26.62 0.00 0.07 ind:pas:3p; +soucié soucier ver m s 22.45 26.62 1.39 1.62 par:pas; +souciée soucier ver f s 22.45 26.62 0.36 0.20 par:pas; +souciées soucier ver f p 22.45 26.62 0.00 0.07 par:pas; +souciés soucier ver m p 22.45 26.62 0.28 0.20 par:pas; +soucoupe soucoupe nom f s 4.14 8.85 2.92 5.95 +soucoupes soucoupe nom f p 4.14 8.85 1.23 2.91 +soudage soudage nom m s 0.04 0.00 0.04 0.00 +soudaient souder ver 3.20 8.04 0.00 0.68 ind:imp:3p; +soudain soudain adv_sup 21.16 207.30 21.16 207.30 +soudaine soudain adj_sup f s 13.62 65.27 3.42 17.16 +soudainement soudainement adv 6.98 5.54 6.98 5.54 +soudaines soudain adj_sup f p 13.62 65.27 0.28 1.69 +soudaineté soudaineté nom f s 0.05 1.28 0.05 1.28 +soudains soudain adj_sup m p 13.62 65.27 0.15 1.62 +soudait souder ver 3.20 8.04 0.01 0.47 ind:imp:3s; +soudanais soudanais nom m 0.24 0.07 0.24 0.07 +soudanaise soudanais adj f s 0.20 0.20 0.00 0.07 +soudant souder ver 3.20 8.04 0.00 0.20 par:pre; +soudard soudard nom m s 0.16 2.23 0.01 1.08 +soudards soudard nom m p 0.16 2.23 0.15 1.15 +soude soude nom f s 0.88 0.88 0.88 0.88 +soudent souder ver 3.20 8.04 0.04 0.34 ind:pre:3p; +souder souder ver 3.20 8.04 1.10 1.08 inf; +souderait souder ver 3.20 8.04 0.01 0.07 cnd:pre:3s; +soudeur soudeur nom m s 1.42 0.27 1.29 0.20 +soudeurs soudeur nom m p 1.42 0.27 0.08 0.07 +soudeuse soudeur nom f s 1.42 0.27 0.05 0.00 +soudez souder ver 3.20 8.04 0.03 0.00 imp:pre:2p;ind:pre:2p; +soudoie soudoyer ver 1.92 1.01 0.04 0.00 ind:pre:1s;ind:pre:3s; +soudoya soudoyer ver 1.92 1.01 0.00 0.07 ind:pas:3s; +soudoyaient soudoyer ver 1.92 1.01 0.01 0.07 ind:imp:3p; +soudoyait soudoyer ver 1.92 1.01 0.02 0.07 ind:imp:3s; +soudoyant soudoyer ver 1.92 1.01 0.21 0.14 par:pre; +soudoyer soudoyer ver 1.92 1.01 0.60 0.34 inf; +soudoyez soudoyer ver 1.92 1.01 0.09 0.00 imp:pre:2p;ind:pre:2p; +soudoyé soudoyer ver m s 1.92 1.01 0.75 0.20 par:pas; +soudoyée soudoyer ver f s 1.92 1.01 0.04 0.07 par:pas; +soudoyés soudoyer ver m p 1.92 1.01 0.16 0.07 par:pas; +soudèrent souder ver 3.20 8.04 0.00 0.07 ind:pas:3p; +soudé souder ver m s 3.20 8.04 0.57 1.35 par:pas; +soudée souder ver f s 3.20 8.04 0.19 0.95 par:pas; +soudées souder ver f p 3.20 8.04 0.17 1.22 par:pas; +soudure soudure nom f s 1.35 1.08 1.09 0.95 +soudures soudure nom f p 1.35 1.08 0.26 0.14 +soudés souder ver m p 3.20 8.04 0.92 1.35 par:pas; +soue soue nom f s 0.11 0.34 0.11 0.34 +souffert souffrir ver m s 113.83 119.26 18.45 18.78 par:pas; +soufferte souffrir ver f s 113.83 119.26 0.00 0.07 par:pas; +souffertes souffrir ver f p 113.83 119.26 0.00 0.14 par:pas; +soufferts souffrir ver m p 113.83 119.26 0.03 0.00 par:pas; +souffla souffler ver 28.33 83.65 0.30 14.80 ind:pas:3s; +soufflages soufflage nom m p 0.00 0.07 0.00 0.07 +soufflai souffler ver 28.33 83.65 0.00 0.54 ind:pas:1s; +soufflaient souffler ver 28.33 83.65 0.06 1.49 ind:imp:3p; +soufflais souffler ver 28.33 83.65 0.05 0.54 ind:imp:1s;ind:imp:2s; +soufflait souffler ver 28.33 83.65 0.86 15.34 ind:imp:3s; +soufflant souffler ver 28.33 83.65 0.38 8.72 par:pre; +soufflante soufflant adj f s 0.03 1.08 0.01 0.34 +soufflants soufflant nom m p 0.02 0.34 0.00 0.14 +souffle souffle nom m s 26.98 100.20 26.55 93.18 +soufflement soufflement nom m s 0.01 0.27 0.01 0.20 +soufflements soufflement nom m p 0.01 0.27 0.00 0.07 +soufflent souffler ver 28.33 83.65 0.81 1.49 ind:pre:3p; +souffler souffler ver 28.33 83.65 6.26 13.65 inf; +soufflera souffler ver 28.33 83.65 0.39 0.14 ind:fut:3s; +soufflerai souffler ver 28.33 83.65 0.28 0.07 ind:fut:1s; +soufflerais souffler ver 28.33 83.65 0.02 0.07 cnd:pre:1s; +soufflerait souffler ver 28.33 83.65 0.14 0.54 cnd:pre:3s; +soufflerez souffler ver 28.33 83.65 0.01 0.00 ind:fut:2p; +soufflerie soufflerie nom f s 0.98 0.88 0.98 0.88 +souffleront souffler ver 28.33 83.65 0.02 0.00 ind:fut:3p; +souffles souffler ver 28.33 83.65 0.60 0.27 ind:pre:2s; +soufflet soufflet nom m s 0.47 6.22 0.43 4.26 +souffletai souffleter ver 0.02 2.09 0.00 0.07 ind:pas:1s; +souffletaient souffleter ver 0.02 2.09 0.00 0.07 ind:imp:3p; +souffletait souffleter ver 0.02 2.09 0.00 0.20 ind:imp:3s; +souffletant souffleter ver 0.02 2.09 0.00 0.07 par:pre; +souffleter souffleter ver 0.02 2.09 0.00 0.41 inf; +soufflets soufflet nom m p 0.47 6.22 0.04 1.96 +soufflette souffleter ver 0.02 2.09 0.02 0.14 imp:pre:2s;ind:pre:3s; +soufflettent souffleter ver 0.02 2.09 0.00 0.14 ind:pre:3p; +soufflettes souffleter ver 0.02 2.09 0.00 0.07 ind:pre:2s; +souffleté souffleter ver m s 0.02 2.09 0.00 0.47 par:pas; +souffletée souffleter ver f s 0.02 2.09 0.00 0.20 par:pas; +souffletés souffleter ver m p 0.02 2.09 0.00 0.27 par:pas; +souffleur souffleur nom m s 1.35 1.22 0.92 1.01 +souffleurs souffleur nom m p 1.35 1.22 0.32 0.20 +souffleuse souffleur nom f s 1.35 1.22 0.11 0.00 +soufflez souffler ver 28.33 83.65 2.60 0.07 imp:pre:2p;ind:pre:2p; +soufflons souffler ver 28.33 83.65 0.26 0.34 imp:pre:1p;ind:pre:1p; +soufflât souffler ver 28.33 83.65 0.00 0.20 sub:imp:3s; +soufflèrent souffler ver 28.33 83.65 0.00 0.47 ind:pas:3p; +soufflé souffler ver m s 28.33 83.65 3.40 7.64 par:pas; +soufflée souffler ver f s 28.33 83.65 0.43 0.95 par:pas; +soufflées souffler ver f p 28.33 83.65 0.11 0.54 par:pas; +soufflure soufflure nom f s 0.00 0.20 0.00 0.14 +soufflures soufflure nom f p 0.00 0.20 0.00 0.07 +soufflés soufflé nom m p 1.33 1.22 0.47 0.00 +souffrît souffrir ver 113.83 119.26 0.00 0.74 sub:imp:3s; +souffraient souffrir ver 113.83 119.26 0.25 2.43 ind:imp:3p; +souffrais souffrir ver 113.83 119.26 0.86 4.26 ind:imp:1s;ind:imp:2s; +souffrait souffrir ver 113.83 119.26 4.14 18.18 ind:imp:3s; +souffrance souffrance nom f s 30.02 47.16 20.05 33.58 +souffrances souffrance nom f p 30.02 47.16 9.97 13.58 +souffrant souffrant adj m s 6.47 5.14 2.88 1.96 +souffrante souffrant adj f s 6.47 5.14 3.12 2.84 +souffrantes souffrant adj f p 6.47 5.14 0.03 0.00 +souffrants souffrant adj m p 6.47 5.14 0.44 0.34 +souffre_douleur souffre_douleur nom m 0.27 1.22 0.27 1.22 +souffre souffrir ver 113.83 119.26 31.52 16.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +souffrent souffrir ver 113.83 119.26 5.25 4.86 ind:pre:3p; +souffres souffrir ver 113.83 119.26 5.27 1.15 ind:pre:2s; +souffreteuse souffreteux adj f s 0.24 2.50 0.22 0.68 +souffreteuses souffreteux adj f p 0.24 2.50 0.00 0.14 +souffreteux souffreteux adj m 0.24 2.50 0.02 1.69 +souffrez souffrir ver 113.83 119.26 4.97 1.01 imp:pre:2p;ind:pre:2p; +souffriez souffrir ver 113.83 119.26 0.37 0.07 ind:imp:2p; +souffrions souffrir ver 113.83 119.26 0.12 0.20 ind:imp:1p; +souffrir souffrir ver 113.83 119.26 34.26 40.41 inf; +souffrira souffrir ver 113.83 119.26 1.77 0.74 ind:fut:3s; +souffrirai souffrir ver 113.83 119.26 0.79 0.47 ind:fut:1s; +souffriraient souffrir ver 113.83 119.26 0.04 0.14 cnd:pre:3p; +souffrirais souffrir ver 113.83 119.26 0.41 0.68 cnd:pre:1s;cnd:pre:2s; +souffrirait souffrir ver 113.83 119.26 0.34 1.42 cnd:pre:3s; +souffriras souffrir ver 113.83 119.26 1.56 0.41 ind:fut:2s; +souffrirent souffrir ver 113.83 119.26 0.04 0.61 ind:pas:3p; +souffrirez souffrir ver 113.83 119.26 0.25 0.14 ind:fut:2p; +souffririez souffrir ver 113.83 119.26 0.03 0.07 cnd:pre:2p; +souffririons souffrir ver 113.83 119.26 0.00 0.14 cnd:pre:1p; +souffrirons souffrir ver 113.83 119.26 0.44 0.07 ind:fut:1p; +souffriront souffrir ver 113.83 119.26 0.27 0.07 ind:fut:3p; +souffris souffrir ver 113.83 119.26 0.03 0.68 ind:pas:1s;ind:pas:2s; +souffrisse souffrir ver 113.83 119.26 0.00 0.14 sub:imp:1s; +souffrissent souffrir ver 113.83 119.26 0.00 0.14 sub:imp:3p; +souffrit souffrir ver 113.83 119.26 0.29 1.49 ind:pas:3s; +souffrons souffrir ver 113.83 119.26 1.06 0.74 imp:pre:1p;ind:pre:1p; +soufi soufi adj m s 0.02 0.07 0.02 0.00 +soufis soufi nom m p 0.44 0.00 0.44 0.00 +soufrages soufrage nom m p 0.00 0.07 0.00 0.07 +soufre soufre nom m s 2.37 4.53 2.37 4.53 +soufré soufré adj m s 0.01 0.47 0.01 0.07 +soufrée soufré adj f s 0.01 0.47 0.00 0.20 +soufrées soufré adj f p 0.01 0.47 0.00 0.14 +soufrés soufré adj m p 0.01 0.47 0.00 0.07 +souhait souhait nom m s 10.41 8.65 5.69 6.22 +souhaita souhaiter ver 85.59 82.16 0.16 2.84 ind:pas:3s; +souhaitable souhaitable adj s 1.40 3.72 1.23 3.24 +souhaitables souhaitable adj p 1.40 3.72 0.17 0.47 +souhaitai souhaiter ver 85.59 82.16 0.02 0.74 ind:pas:1s; +souhaitaient souhaiter ver 85.59 82.16 0.63 2.03 ind:imp:3p; +souhaitais souhaiter ver 85.59 82.16 1.72 6.76 ind:imp:1s;ind:imp:2s; +souhaitait souhaiter ver 85.59 82.16 1.96 13.72 ind:imp:3s; +souhaitant souhaiter ver 85.59 82.16 0.72 2.84 par:pre; +souhaite souhaiter ver 85.59 82.16 39.98 17.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +souhaitent souhaiter ver 85.59 82.16 2.87 0.95 ind:pre:3p; +souhaiter souhaiter ver 85.59 82.16 8.87 10.41 inf;; +souhaitera souhaiter ver 85.59 82.16 0.10 0.14 ind:fut:3s; +souhaiterai souhaiter ver 85.59 82.16 0.40 0.00 ind:fut:1s; +souhaiteraient souhaiter ver 85.59 82.16 0.27 0.14 cnd:pre:3p; +souhaiterais souhaiter ver 85.59 82.16 3.11 1.55 cnd:pre:1s;cnd:pre:2s; +souhaiterait souhaiter ver 85.59 82.16 1.49 1.28 cnd:pre:3s; +souhaiteras souhaiter ver 85.59 82.16 0.11 0.00 ind:fut:2s; +souhaiterez souhaiter ver 85.59 82.16 0.22 0.20 ind:fut:2p; +souhaiteriez souhaiter ver 85.59 82.16 0.57 0.14 cnd:pre:2p; +souhaiterions souhaiter ver 85.59 82.16 0.34 0.07 cnd:pre:1p; +souhaiterons souhaiter ver 85.59 82.16 0.16 0.00 ind:fut:1p; +souhaiteront souhaiter ver 85.59 82.16 0.00 0.14 ind:fut:3p; +souhaites souhaiter ver 85.59 82.16 3.14 0.81 ind:pre:2s; +souhaitez souhaiter ver 85.59 82.16 7.19 1.55 imp:pre:2p;ind:pre:2p; +souhaitiez souhaiter ver 85.59 82.16 0.85 0.47 ind:imp:2p;sub:pre:2p; +souhaitions souhaiter ver 85.59 82.16 0.10 0.74 ind:imp:1p; +souhaitâmes souhaiter ver 85.59 82.16 0.00 0.14 ind:pas:1p; +souhaitons souhaiter ver 85.59 82.16 4.28 1.96 imp:pre:1p;ind:pre:1p; +souhaitât souhaiter ver 85.59 82.16 0.00 0.20 sub:imp:3s; +souhaits souhait nom m p 10.41 8.65 4.72 2.43 +souhaitèrent souhaiter ver 85.59 82.16 0.02 0.27 ind:pas:3p; +souhaité souhaiter ver m s 85.59 82.16 5.91 12.50 par:pas; +souhaitée souhaiter ver f s 85.59 82.16 0.07 1.55 par:pas; +souhaitées souhaiter ver f p 85.59 82.16 0.04 0.27 par:pas; +souhaités souhaiter ver m p 85.59 82.16 0.31 0.47 par:pas; +souilla souiller ver 6.52 15.81 0.10 0.07 ind:pas:3s; +souillage souillage nom m s 0.00 0.07 0.00 0.07 +souillaient souiller ver 6.52 15.81 0.01 0.20 ind:imp:3p; +souillait souiller ver 6.52 15.81 0.02 1.01 ind:imp:3s; +souillant souiller ver 6.52 15.81 0.04 0.20 par:pre; +souillarde souillard nom f s 0.00 2.03 0.00 2.03 +souille souiller ver 6.52 15.81 0.38 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +souillent souiller ver 6.52 15.81 0.07 0.54 ind:pre:3p; +souiller souiller ver 6.52 15.81 1.57 1.62 inf; +souillerai souiller ver 6.52 15.81 0.05 0.07 ind:fut:1s; +souilleraient souiller ver 6.52 15.81 0.01 0.00 cnd:pre:3p; +souillerait souiller ver 6.52 15.81 0.03 0.07 cnd:pre:3s; +souilleras souiller ver 6.52 15.81 0.16 0.00 ind:fut:2s; +souilleront souiller ver 6.52 15.81 0.00 0.07 ind:fut:3p; +souilles souiller ver 6.52 15.81 0.02 0.00 ind:pre:2s; +souillez souiller ver 6.52 15.81 0.16 0.00 imp:pre:2p;ind:pre:2p; +souillon souillon nom s 0.99 1.08 0.82 0.88 +souillonnes souillonner ver 0.00 0.07 0.00 0.07 ind:pre:2s; +souillons souillon nom p 0.99 1.08 0.17 0.20 +souillé souiller ver m s 6.52 15.81 2.29 4.19 par:pas; +souillée souiller ver f s 6.52 15.81 1.10 3.45 par:pas; +souillées souiller ver f p 6.52 15.81 0.06 1.76 par:pas; +souillure souillure nom f s 0.79 2.91 0.45 1.49 +souillures souillure nom f p 0.79 2.91 0.35 1.42 +souillés souiller ver m p 6.52 15.81 0.45 1.76 par:pas; +souk souk nom m s 0.81 2.64 0.81 1.49 +souks souk nom m p 0.81 2.64 0.00 1.15 +soul soul nom f s 1.71 0.20 1.71 0.20 +soulage soulager ver 21.57 29.12 4.10 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +soulagea soulager ver 21.57 29.12 0.01 0.68 ind:pas:3s; +soulageai soulager ver 21.57 29.12 0.00 0.14 ind:pas:1s; +soulageaient soulager ver 21.57 29.12 0.03 0.14 ind:imp:3p; +soulageait soulager ver 21.57 29.12 0.17 1.28 ind:imp:3s; +soulageant soulager ver 21.57 29.12 0.11 0.20 par:pre; +soulagement soulagement nom m s 4.94 21.22 4.84 21.22 +soulagements soulagement nom m p 4.94 21.22 0.10 0.00 +soulagent soulager ver 21.57 29.12 0.34 0.34 ind:pre:3p; +soulageâmes soulager ver 21.57 29.12 0.00 0.07 ind:pas:1p; +soulageons soulager ver 21.57 29.12 0.01 0.07 ind:pre:1p; +soulager soulager ver 21.57 29.12 6.62 6.49 inf; +soulagera soulager ver 21.57 29.12 0.59 0.41 ind:fut:3s; +soulagerai soulager ver 21.57 29.12 0.06 0.00 ind:fut:1s; +soulageraient soulager ver 21.57 29.12 0.00 0.07 cnd:pre:3p; +soulagerait soulager ver 21.57 29.12 0.78 0.54 cnd:pre:3s; +soulagerez soulager ver 21.57 29.12 0.15 0.00 ind:fut:2p; +soulages soulager ver 21.57 29.12 0.24 0.00 ind:pre:2s; +soulagez soulager ver 21.57 29.12 0.15 0.00 imp:pre:2p;ind:pre:2p; +soulagèrent soulager ver 21.57 29.12 0.00 0.20 ind:pas:3p; +soulagé soulager ver m s 21.57 29.12 4.67 10.00 par:pas; +soulagée soulager ver f s 21.57 29.12 2.98 4.53 par:pas; +soulagées soulager ver f p 21.57 29.12 0.04 0.14 par:pas; +soulagés soulager ver m p 21.57 29.12 0.53 1.22 par:pas; +soule soule adj m s 0.30 0.00 0.30 0.00 +souleva soulever ver 24.26 113.38 0.60 19.39 ind:pas:3s; +soulevai soulever ver 24.26 113.38 0.00 1.15 ind:pas:1s; +soulevaient soulever ver 24.26 113.38 0.23 4.80 ind:imp:3p; +soulevais soulever ver 24.26 113.38 0.10 0.34 ind:imp:1s;ind:imp:2s; +soulevait soulever ver 24.26 113.38 0.26 14.80 ind:imp:3s; +soulevant soulever ver 24.26 113.38 0.50 10.20 par:pre; +soulever soulever ver 24.26 113.38 5.92 17.16 inf; +soulevez soulever ver 24.26 113.38 2.44 0.54 imp:pre:2p;ind:pre:2p; +soulevions soulever ver 24.26 113.38 0.00 0.07 ind:imp:1p; +soulevons soulever ver 24.26 113.38 0.35 0.14 imp:pre:1p;ind:pre:1p; +soulevât soulever ver 24.26 113.38 0.00 0.14 sub:imp:3s; +soulevèrent soulever ver 24.26 113.38 0.02 1.96 ind:pas:3p; +soulevé soulever ver m s 24.26 113.38 3.04 11.08 par:pas; +soulevée soulever ver f s 24.26 113.38 0.56 5.54 par:pas; +soulevées soulever ver f p 24.26 113.38 0.02 1.08 par:pas; +soulevés soulever ver m p 24.26 113.38 0.54 2.16 par:pas; +soulier soulier nom m s 9.76 35.68 2.53 4.80 +souliers soulier nom m p 9.76 35.68 7.23 30.88 +souligna souligner ver 4.72 22.57 0.00 0.95 ind:pas:3s; +soulignai souligner ver 4.72 22.57 0.00 0.41 ind:pas:1s; +soulignaient souligner ver 4.72 22.57 0.10 1.28 ind:imp:3p; +soulignais souligner ver 4.72 22.57 0.00 0.20 ind:imp:1s; +soulignait souligner ver 4.72 22.57 0.04 2.84 ind:imp:3s; +soulignant souligner ver 4.72 22.57 0.27 2.30 par:pre; +souligne souligner ver 4.72 22.57 0.73 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soulignent souligner ver 4.72 22.57 0.14 0.74 ind:pre:3p; +souligner souligner ver 4.72 22.57 1.65 4.86 inf; +soulignera souligner ver 4.72 22.57 0.00 0.07 ind:fut:3s; +souligneraient souligner ver 4.72 22.57 0.00 0.07 cnd:pre:3p; +soulignerait souligner ver 4.72 22.57 0.00 0.07 cnd:pre:3s; +soulignez souligner ver 4.72 22.57 0.04 0.07 imp:pre:2p; +souligniez souligner ver 4.72 22.57 0.01 0.00 ind:imp:2p; +soulignions souligner ver 4.72 22.57 0.00 0.07 ind:imp:1p; +souligné souligner ver m s 4.72 22.57 1.41 2.91 par:pas; +soulignée souligner ver f s 4.72 22.57 0.01 1.08 par:pas; +soulignées souligner ver f p 4.72 22.57 0.02 0.81 par:pas; +soulignés souligner ver m p 4.72 22.57 0.29 1.22 par:pas; +soulève soulever ver 24.26 113.38 7.72 17.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soulèvement soulèvement nom m s 1.04 2.36 0.77 2.23 +soulèvements soulèvement nom m p 1.04 2.36 0.28 0.14 +soulèvent soulever ver 24.26 113.38 0.47 4.26 ind:pre:3p; +soulèvera soulever ver 24.26 113.38 0.22 0.20 ind:fut:3s; +soulèverai soulever ver 24.26 113.38 0.27 0.14 ind:fut:1s; +soulèveraient soulever ver 24.26 113.38 0.00 0.27 cnd:pre:3p; +soulèverais soulever ver 24.26 113.38 0.03 0.07 cnd:pre:1s; +soulèverait soulever ver 24.26 113.38 0.04 0.34 cnd:pre:3s; +soulèverez soulever ver 24.26 113.38 0.01 0.00 ind:fut:2p; +soulèveriez soulever ver 24.26 113.38 0.01 0.00 cnd:pre:2p; +soulèverons soulever ver 24.26 113.38 0.04 0.00 ind:fut:1p; +soulèveront soulever ver 24.26 113.38 0.28 0.00 ind:fut:3p; +soulèves soulever ver 24.26 113.38 0.57 0.07 ind:pre:2s; +soumît soumettre ver 17.51 37.57 0.00 0.07 sub:imp:3s; +soumet soumettre ver 17.51 37.57 0.88 1.49 ind:pre:3s; +soumets soumettre ver 17.51 37.57 1.89 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +soumettaient soumettre ver 17.51 37.57 0.00 0.41 ind:imp:3p; +soumettais soumettre ver 17.51 37.57 0.01 0.41 ind:imp:1s; +soumettait soumettre ver 17.51 37.57 0.00 1.96 ind:imp:3s; +soumettant soumettre ver 17.51 37.57 0.07 0.34 par:pre; +soumette soumettre ver 17.51 37.57 0.23 0.41 sub:pre:1s;sub:pre:3s; +soumettent soumettre ver 17.51 37.57 0.06 0.54 ind:pre:3p; +soumettez soumettre ver 17.51 37.57 0.25 0.20 imp:pre:2p;ind:pre:2p; +soumettions soumettre ver 17.51 37.57 0.01 0.14 ind:imp:1p; +soumettons soumettre ver 17.51 37.57 0.12 0.00 imp:pre:1p;ind:pre:1p; +soumettra soumettre ver 17.51 37.57 0.27 0.20 ind:fut:3s; +soumettrai soumettre ver 17.51 37.57 0.47 0.14 ind:fut:1s; +soumettraient soumettre ver 17.51 37.57 0.00 0.07 cnd:pre:3p; +soumettrais soumettre ver 17.51 37.57 0.02 0.20 cnd:pre:1s; +soumettrait soumettre ver 17.51 37.57 0.01 0.20 cnd:pre:3s; +soumettras soumettre ver 17.51 37.57 0.03 0.00 ind:fut:2s; +soumettre soumettre ver 17.51 37.57 5.84 9.26 inf; +soumettrez soumettre ver 17.51 37.57 0.05 0.07 ind:fut:2p; +soumettront soumettre ver 17.51 37.57 0.04 0.07 ind:fut:3p; +soumirent soumettre ver 17.51 37.57 0.21 0.20 ind:pas:3p; +soumis soumettre ver m 17.51 37.57 5.22 13.65 ind:pas:1s;par:pas;par:pas; +soumise soumettre ver f s 17.51 37.57 1.21 3.78 par:pas; +soumises soumettre ver f p 17.51 37.57 0.58 1.69 par:pas; +soumission soumission nom f s 1.63 10.95 1.63 10.27 +soumissionner soumissionner ver 0.01 0.00 0.01 0.00 inf; +soumissions soumission nom f p 1.63 10.95 0.00 0.68 +soumit soumettre ver 17.51 37.57 0.02 1.55 ind:pas:3s; +soupa souper ver 8.81 6.96 0.00 0.20 ind:pas:3s; +soupaient souper ver 8.81 6.96 0.00 0.20 ind:imp:3p; +soupais souper ver 8.81 6.96 0.11 0.14 ind:imp:1s; +soupait souper ver 8.81 6.96 0.23 0.20 ind:imp:3s; +soupant souper ver 8.81 6.96 0.00 0.14 par:pre; +soupape soupape nom f s 0.92 1.28 0.39 0.61 +soupapes soupape nom f p 0.92 1.28 0.54 0.68 +soupasse souper ver 8.81 6.96 0.10 0.07 sub:imp:1s; +soupe soupe nom f s 32.26 38.04 31.72 35.74 +soupent souper ver 8.81 6.96 0.00 0.07 ind:pre:3p; +soupente soupente nom f s 0.19 3.11 0.19 2.70 +soupentes soupente nom f p 0.19 3.11 0.00 0.41 +souper souper nom m s 6.48 7.70 6.39 6.82 +soupera souper ver 8.81 6.96 0.03 0.20 ind:fut:3s; +souperaient souper ver 8.81 6.96 0.00 0.07 cnd:pre:3p; +souperait souper ver 8.81 6.96 0.00 0.07 cnd:pre:3s; +souperons souper ver 8.81 6.96 0.04 0.07 ind:fut:1p; +soupers souper nom m p 6.48 7.70 0.09 0.88 +soupes soupe nom f p 32.26 38.04 0.54 2.30 +soupesa soupeser ver 0.34 5.14 0.00 0.81 ind:pas:3s; +soupesait soupeser ver 0.34 5.14 0.00 0.88 ind:imp:3s; +soupesant soupeser ver 0.34 5.14 0.02 0.34 par:pre; +soupeser soupeser ver 0.34 5.14 0.05 1.55 inf; +soupesez soupeser ver 0.34 5.14 0.06 0.07 imp:pre:2p;ind:pre:2p; +soupesé soupeser ver m s 0.34 5.14 0.02 0.07 par:pas; +soupesée soupeser ver f s 0.34 5.14 0.00 0.14 par:pas; +soupesés soupeser ver m p 0.34 5.14 0.00 0.07 par:pas; +soupeur soupeur nom m s 0.00 0.20 0.00 0.07 +soupeurs soupeur nom m p 0.00 0.20 0.00 0.14 +soupez souper ver 8.81 6.96 0.06 0.00 imp:pre:2p;ind:pre:2p; +soupier soupier adj m s 0.00 2.57 0.00 2.57 +soupir soupir nom m s 7.85 35.95 4.75 26.82 +soupira soupirer ver 9.81 65.47 0.03 30.74 ind:pas:3s; +soupirai soupirer ver 9.81 65.47 0.00 1.15 ind:pas:1s; +soupiraient soupirer ver 9.81 65.47 0.00 0.41 ind:imp:3p; +soupirail soupirail nom m s 0.16 3.24 0.16 2.84 +soupirais soupirer ver 9.81 65.47 0.01 0.47 ind:imp:1s;ind:imp:2s; +soupirait soupirer ver 9.81 65.47 0.13 6.96 ind:imp:3s; +soupirant soupirant nom m s 0.96 2.23 0.61 1.55 +soupirants soupirant nom m p 0.96 2.23 0.35 0.68 +soupiraux soupirail nom m p 0.16 3.24 0.00 0.41 +soupire soupirer ver 9.81 65.47 6.71 10.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupirent soupirer ver 9.81 65.47 0.19 0.27 ind:pre:3p; +soupirer soupirer ver 9.81 65.47 0.99 2.91 inf; +soupirerait soupirer ver 9.81 65.47 0.00 0.07 cnd:pre:3s; +soupires soupirer ver 9.81 65.47 0.36 0.34 ind:pre:2s; +soupirez soupirer ver 9.81 65.47 0.38 0.20 imp:pre:2p;ind:pre:2p; +soupirions soupirer ver 9.81 65.47 0.00 0.07 ind:imp:1p; +soupirons soupirer ver 9.81 65.47 0.00 0.14 ind:pre:1p; +soupirât soupirer ver 9.81 65.47 0.00 0.20 sub:imp:3s; +soupirs soupir nom m p 7.85 35.95 3.10 9.12 +soupirèrent soupirer ver 9.81 65.47 0.00 0.20 ind:pas:3p; +soupiré soupirer ver m s 9.81 65.47 0.69 5.47 par:pas; +soupière soupière nom f s 0.10 2.43 0.07 2.23 +soupières soupière nom f p 0.10 2.43 0.02 0.20 +souple souple adj s 4.22 27.23 3.21 20.00 +souplement souplement adv 0.00 1.55 0.00 1.55 +souples souple adj p 4.22 27.23 1.02 7.23 +souplesse souplesse nom f s 1.28 9.86 1.28 9.73 +souplesses souplesse nom f p 1.28 9.86 0.00 0.14 +soupâmes souper ver 8.81 6.96 0.00 0.07 ind:pas:1p; +soupons souper ver 8.81 6.96 0.13 0.14 imp:pre:1p;ind:pre:1p; +soupçon soupçon nom m s 15.53 23.58 5.75 15.61 +soupçonna soupçonner ver 19.88 34.59 0.04 0.54 ind:pas:3s; +soupçonnable soupçonnable adj s 0.00 0.07 0.00 0.07 +soupçonnai soupçonner ver 19.88 34.59 0.00 0.27 ind:pas:1s; +soupçonnaient soupçonner ver 19.88 34.59 0.34 1.08 ind:imp:3p; +soupçonnais soupçonner ver 19.88 34.59 0.83 3.11 ind:imp:1s;ind:imp:2s; +soupçonnait soupçonner ver 19.88 34.59 0.65 5.14 ind:imp:3s; +soupçonnant soupçonner ver 19.88 34.59 0.12 0.74 par:pre; +soupçonne soupçonner ver 19.88 34.59 6.25 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupçonnent soupçonner ver 19.88 34.59 0.79 0.61 ind:pre:3p; +soupçonner soupçonner ver 19.88 34.59 2.82 7.84 inf; +soupçonnera soupçonner ver 19.88 34.59 0.58 0.14 ind:fut:3s; +soupçonnerais soupçonner ver 19.88 34.59 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +soupçonnerait soupçonner ver 19.88 34.59 0.32 0.41 cnd:pre:3s; +soupçonneriez soupçonner ver 19.88 34.59 0.01 0.07 cnd:pre:2p; +soupçonneront soupçonner ver 19.88 34.59 0.19 0.07 ind:fut:3p; +soupçonnes soupçonner ver 19.88 34.59 0.48 0.34 ind:pre:2s; +soupçonneuse soupçonneux adj f s 1.25 6.22 0.30 1.08 +soupçonneuses soupçonneux adj f p 1.25 6.22 0.00 0.20 +soupçonneux soupçonneux adj m 1.25 6.22 0.95 4.93 +soupçonnez soupçonner ver 19.88 34.59 1.32 0.20 imp:pre:2p;ind:pre:2p; +soupçonniez soupçonner ver 19.88 34.59 0.41 0.20 ind:imp:2p; +soupçonnions soupçonner ver 19.88 34.59 0.16 0.14 ind:imp:1p; +soupçonnons soupçonner ver 19.88 34.59 0.15 0.27 ind:pre:1p; +soupçonnât soupçonner ver 19.88 34.59 0.00 0.20 sub:imp:3s; +soupçonnèrent soupçonner ver 19.88 34.59 0.01 0.14 ind:pas:3p; +soupçonné soupçonner ver m s 19.88 34.59 3.49 4.86 par:pas; +soupçonnée soupçonner ver f s 19.88 34.59 0.64 1.28 par:pas; +soupçonnées soupçonner ver f p 19.88 34.59 0.03 0.27 par:pas; +soupçonnés soupçonner ver m p 19.88 34.59 0.22 0.47 par:pas; +soupçons soupçon nom m p 15.53 23.58 9.78 7.97 +soupèrent souper ver 8.81 6.96 0.01 0.20 ind:pas:3p; +soupèse soupeser ver 0.34 5.14 0.19 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupèserait soupeser ver 0.34 5.14 0.00 0.07 cnd:pre:3s; +soupé souper ver m s 8.81 6.96 1.73 0.95 par:pas; +souquaient souquer ver 0.43 0.20 0.00 0.07 ind:imp:3p; +souque souquer ver 0.43 0.20 0.01 0.07 imp:pre:2s;ind:pre:3s; +souquenille souquenille nom f s 0.00 0.41 0.00 0.27 +souquenilles souquenille nom f p 0.00 0.41 0.00 0.14 +souquer souquer ver 0.43 0.20 0.01 0.00 inf; +souquez souquer ver 0.43 0.20 0.40 0.00 imp:pre:2p; +souqué souquer ver m s 0.43 0.20 0.01 0.07 par:pas; +sourîmes sourire ver 53.97 262.91 0.00 0.07 ind:pas:1p; +sourît sourire ver 53.97 262.91 0.00 0.20 sub:imp:3s; +sourate sourate nom f s 0.14 0.20 0.14 0.14 +sourates sourate nom f p 0.14 0.20 0.00 0.07 +source source nom f s 46.44 49.19 37.34 35.41 +sources source nom f p 46.44 49.19 9.11 13.78 +sourcier sourcier nom m s 0.40 0.81 0.40 0.74 +sourciers sourcier nom m p 0.40 0.81 0.00 0.07 +sourcil sourcil nom m s 5.85 47.64 1.42 8.65 +sourcilière sourcilier adj f s 0.20 1.62 0.20 0.95 +sourcilières sourcilier adj f p 0.20 1.62 0.00 0.68 +sourcilla sourciller ver 0.61 2.09 0.00 0.34 ind:pas:3s; +sourcillai sourciller ver 0.61 2.09 0.00 0.07 ind:pas:1s; +sourcille sourciller ver 0.61 2.09 0.00 0.07 ind:pre:3s; +sourciller sourciller ver 0.61 2.09 0.54 1.49 inf; +sourcilleuse sourcilleux adj f s 0.01 1.96 0.00 0.61 +sourcilleuses sourcilleux adj f p 0.01 1.96 0.00 0.20 +sourcilleux sourcilleux adj m 0.01 1.96 0.01 1.15 +sourcillé sourciller ver m s 0.61 2.09 0.07 0.14 par:pas; +sourcils sourcil nom m p 5.85 47.64 4.43 38.99 +sourd_muet sourd_muet adj m s 0.78 0.20 0.77 0.20 +sourd sourd adj m s 25.69 50.68 16.96 19.73 +sourdaient sourdaient ver 0.00 0.20 0.00 0.20 inf; +sourdait sourdait ver 0.00 1.08 0.00 1.08 inf; +sourdant sourdre ver 0.42 5.47 0.00 0.20 par:pre; +sourde_muette sourde_muette nom f s 0.24 0.07 0.24 0.07 +sourde sourd adj f s 25.69 50.68 5.58 21.76 +sourdement sourdement adv 0.00 6.55 0.00 6.55 +sourdes sourd adj f p 25.69 50.68 0.48 2.91 +sourdine sourdine nom f s 0.73 6.49 0.73 6.49 +sourdingue sourdingue adj s 0.10 1.42 0.10 1.28 +sourdingues sourdingue adj m p 0.10 1.42 0.00 0.14 +sourdre sourdre ver 0.42 5.47 0.00 3.45 inf; +sourdront sourdre ver 0.42 5.47 0.00 0.07 ind:fut:3p; +sourd_muet sourd_muet nom m p 1.48 1.01 0.88 0.68 +sourds sourd adj m p 25.69 50.68 2.66 6.28 +souri sourire ver m s 53.97 262.91 3.19 12.97 par:pas; +souriaient sourire ver 53.97 262.91 0.39 5.34 ind:imp:3p; +souriais sourire ver 53.97 262.91 0.67 3.31 ind:imp:1s;ind:imp:2s; +souriait sourire ver 53.97 262.91 2.00 44.26 ind:imp:3s; +souriant souriant adj m s 4.02 23.45 2.22 9.46 +souriante souriant adj f s 4.02 23.45 1.07 10.95 +souriantes souriant adj f p 4.02 23.45 0.25 1.28 +souriants souriant adj m p 4.02 23.45 0.47 1.76 +souriceau souriceau nom m s 0.35 0.41 0.35 0.34 +souriceaux souriceau nom m p 0.35 0.41 0.00 0.07 +souricière souricière nom f s 0.27 0.34 0.23 0.34 +souricières souricière nom f p 0.27 0.34 0.04 0.00 +sourie sourire ver 53.97 262.91 0.50 0.14 sub:pre:1s;sub:pre:3s; +sourient sourire ver 53.97 262.91 1.49 3.38 ind:pre:3p; +souries sourire ver 53.97 262.91 0.09 0.00 sub:pre:2s; +souriez sourire ver 53.97 262.91 10.00 0.88 imp:pre:2p;ind:pre:2p; +souriions sourire ver 53.97 262.91 0.00 0.20 ind:imp:1p; +sourions sourire ver 53.97 262.91 0.08 0.34 imp:pre:1p;ind:pre:1p; +sourira sourire ver 53.97 262.91 0.46 0.41 ind:fut:3s; +sourirai sourire ver 53.97 262.91 0.35 0.07 ind:fut:1s; +souriraient sourire ver 53.97 262.91 0.01 0.14 cnd:pre:3p; +sourirais sourire ver 53.97 262.91 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +sourirait sourire ver 53.97 262.91 0.04 0.88 cnd:pre:3s; +souriras sourire ver 53.97 262.91 0.20 0.00 ind:fut:2s; +sourire sourire nom m s 36.08 215.34 33.79 196.55 +sourirent sourire ver 53.97 262.91 0.00 2.03 ind:pas:3p; +sourires sourire nom m p 36.08 215.34 2.29 18.78 +sourirons sourire ver 53.97 262.91 0.02 0.00 ind:fut:1p; +souriront sourire ver 53.97 262.91 0.02 0.00 ind:fut:3p; +souris souris nom 21.94 22.57 21.94 22.57 +sourit sourire ver 53.97 262.91 11.70 95.74 ind:pre:3s;ind:pas:3s; +sournois sournois adj m 2.64 16.89 1.87 8.92 +sournoise sournois adj f s 2.64 16.89 0.72 6.28 +sournoisement sournoisement adv 0.12 4.80 0.12 4.80 +sournoiserie sournoiserie nom f s 0.04 0.95 0.04 0.61 +sournoiseries sournoiserie nom f p 0.04 0.95 0.00 0.34 +sournoises sournois adj f p 2.64 16.89 0.04 1.69 +sous_alimentation sous_alimentation nom f s 0.03 0.27 0.03 0.27 +sous_alimenter sous_alimenter ver m s 0.04 0.00 0.02 0.00 par:pas; +sous_alimenté sous_alimenté adj f s 0.04 0.20 0.04 0.07 +sous_alimenté sous_alimenté nom m p 0.01 0.27 0.01 0.14 +sous_bibliothécaire sous_bibliothécaire nom s 0.00 0.47 0.00 0.47 +sous_bois sous_bois nom m 0.49 7.57 0.49 7.57 +sous_chef sous_chef nom m s 0.73 0.88 0.69 0.74 +sous_chef sous_chef nom m p 0.73 0.88 0.04 0.14 +sous_classe sous_classe nom f s 0.01 0.00 0.01 0.00 +sous_clavier sous_clavier adj f s 0.28 0.00 0.28 0.00 +sous_comité sous_comité nom m s 0.26 0.07 0.26 0.07 +sous_commission sous_commission nom f s 0.18 0.07 0.18 0.07 +sous_continent sous_continent nom m s 0.06 0.07 0.05 0.07 +sous_continent sous_continent nom m p 0.06 0.07 0.01 0.00 +sous_couche sous_couche nom f s 0.03 0.00 0.03 0.00 +sous_cul sous_cul nom m s 0.00 0.07 0.00 0.07 +sous_cutané sous_cutané adj m s 0.28 0.07 0.10 0.00 +sous_cutané sous_cutané adj f s 0.28 0.07 0.10 0.00 +sous_cutané sous_cutané adj f p 0.28 0.07 0.05 0.07 +sous_cutané sous_cutané adj m p 0.28 0.07 0.03 0.00 +sous_diacre sous_diacre nom m s 0.00 0.07 0.00 0.07 +sous_directeur sous_directeur nom m s 0.66 1.96 0.63 1.82 +sous_directeur sous_directeur nom m p 0.66 1.96 0.00 0.07 +sous_directeur sous_directeur nom f s 0.66 1.96 0.03 0.07 +sous_division sous_division nom f s 0.04 0.00 0.04 0.00 +sous_dominante sous_dominante nom f s 0.01 0.07 0.01 0.07 +sous_développement sous_développement nom m s 0.30 0.27 0.30 0.27 +sous_développé sous_développé adj m s 0.31 0.68 0.09 0.27 +sous_développé sous_développé adj f s 0.31 0.68 0.02 0.00 +sous_développé sous_développé adj f p 0.31 0.68 0.02 0.07 +sous_développé sous_développé adj m p 0.31 0.68 0.19 0.34 +sous_effectif sous_effectif nom m s 0.11 0.00 0.10 0.00 +sous_effectif sous_effectif nom m p 0.11 0.00 0.01 0.00 +sous_emploi sous_emploi nom m s 0.00 0.07 0.00 0.07 +sous_ensemble sous_ensemble nom m s 0.08 0.14 0.08 0.14 +sous_entendre sous_entendre ver 2.03 1.82 0.39 0.20 ind:pre:3s; +sous_entendre sous_entendre ver 2.03 1.82 0.17 0.00 ind:imp:1s; +sous_entendre sous_entendre ver 2.03 1.82 0.03 0.54 ind:imp:3s; +sous_entendre sous_entendre ver 2.03 1.82 0.01 0.47 par:pre; +sous_entendre sous_entendre ver 2.03 1.82 0.01 0.00 ind:pre:3p; +sous_entendre sous_entendre ver 2.03 1.82 0.42 0.00 ind:pre:2p; +sous_entendre sous_entendre ver 2.03 1.82 0.10 0.00 ind:imp:2p; +sous_entendre sous_entendre ver 2.03 1.82 0.01 0.00 cnd:pre:3s; +sous_entendre sous_entendre ver 2.03 1.82 0.11 0.27 inf; +sous_entendre sous_entendre ver 2.03 1.82 0.39 0.00 ind:pre:1s;ind:pre:2s; +sous_entendre sous_entendre ver m s 2.03 1.82 0.38 0.14 par:pas; +sous_entendu sous_entendu adj f s 0.06 0.68 0.01 0.07 +sous_entendu sous_entendu nom m p 0.77 5.34 0.45 3.38 +sous_espace sous_espace nom m s 0.22 0.00 0.22 0.00 +sous_espèce sous_espèce nom f s 0.11 0.00 0.11 0.00 +sous_estimer sous_estimer ver 7.27 1.08 0.05 0.00 ind:imp:1s; +sous_estimer sous_estimer ver 7.27 1.08 0.03 0.34 ind:imp:3s; +sous_estimation sous_estimation nom f s 0.06 0.07 0.06 0.07 +sous_estimer sous_estimer ver 7.27 1.08 1.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sous_estimer sous_estimer ver 7.27 1.08 0.22 0.00 ind:pre:3p; +sous_estimer sous_estimer ver 7.27 1.08 1.05 0.54 inf; +sous_estimer sous_estimer ver 7.27 1.08 0.03 0.00 ind:fut:1s; +sous_estimer sous_estimer ver 7.27 1.08 0.72 0.00 ind:pre:2s; +sous_estimer sous_estimer ver 7.27 1.08 1.53 0.00 imp:pre:2p;ind:pre:2p; +sous_estimer sous_estimer ver 7.27 1.08 0.11 0.00 imp:pre:1p;ind:pre:1p; +sous_estimer sous_estimer ver m s 7.27 1.08 1.71 0.14 par:pas; +sous_estimer sous_estimer ver f s 7.27 1.08 0.14 0.00 par:pas; +sous_estimer sous_estimer ver f p 7.27 1.08 0.07 0.00 par:pas; +sous_estimer sous_estimer ver m p 7.27 1.08 0.09 0.00 par:pas; +sous_exposer sous_exposer ver m s 0.02 0.00 0.01 0.00 par:pas; +sous_exposer sous_exposer ver f p 0.02 0.00 0.01 0.00 par:pas; +sous_fifre sous_fifre nom m s 0.72 0.41 0.45 0.20 +sous_fifre sous_fifre nom m p 0.72 0.41 0.27 0.20 +sous_garde sous_garde nom f s 0.01 0.07 0.01 0.07 +sous_genre sous_genre nom m s 0.02 0.00 0.02 0.00 +sous_gorge sous_gorge nom f 0.00 0.07 0.00 0.07 +sous_groupe sous_groupe nom m s 0.01 0.00 0.01 0.00 +sous_homme sous_homme nom m s 0.20 0.61 0.16 0.00 +sous_homme sous_homme nom m p 0.20 0.61 0.05 0.61 +sous_humanité sous_humanité nom f s 0.01 0.20 0.01 0.20 +sous_intendant sous_intendant nom m s 0.30 0.00 0.10 0.00 +sous_intendant sous_intendant nom m p 0.30 0.00 0.20 0.00 +sous_jacent sous_jacent adj m s 0.81 0.34 0.19 0.20 +sous_jacent sous_jacent adj f s 0.81 0.34 0.22 0.07 +sous_jacent sous_jacent adj f p 0.81 0.34 0.01 0.07 +sous_jacent sous_jacent adj m p 0.81 0.34 0.39 0.00 +sous_lieutenant sous_lieutenant nom m s 0.81 5.61 0.76 4.93 +sous_lieutenant sous_lieutenant nom m p 0.81 5.61 0.05 0.68 +sous_locataire sous_locataire nom s 0.02 0.14 0.02 0.00 +sous_locataire sous_locataire nom p 0.02 0.14 0.00 0.14 +sous_location sous_location nom f s 0.09 0.07 0.06 0.07 +sous_location sous_location nom f p 0.09 0.07 0.03 0.00 +sous_louer sous_louer ver 0.63 0.47 0.00 0.07 ind:pas:3s; +sous_louer sous_louer ver 0.63 0.47 0.03 0.00 ind:imp:3s; +sous_louer sous_louer ver 0.63 0.47 0.21 0.00 ind:pre:1s;ind:pre:3s; +sous_louer sous_louer ver 0.63 0.47 0.17 0.14 inf; +sous_louer sous_louer ver 0.63 0.47 0.11 0.00 ind:fut:1s; +sous_louer sous_louer ver 0.63 0.47 0.02 0.00 ind:pre:2p; +sous_louer sous_louer ver 0.63 0.47 0.00 0.07 ind:pas:3p; +sous_louer sous_louer ver m s 0.63 0.47 0.08 0.20 par:pas; +sous_maîtresse sous_maîtresse nom f s 0.07 0.20 0.07 0.20 +sous_main sous_main nom m s 0.28 1.96 0.28 1.96 +sous_marin sous_marin nom m s 11.14 6.42 9.07 2.70 +sous_marin sous_marin adj f s 4.47 5.00 1.06 1.89 +sous_marin sous_marin adj f p 4.47 5.00 0.41 0.88 +sous_marinier sous_marinier nom m s 0.26 0.00 0.04 0.00 +sous_marinier sous_marinier nom m p 0.26 0.00 0.22 0.00 +sous_marin sous_marin nom m p 11.14 6.42 2.07 3.72 +sous_marque sous_marque nom f s 0.01 0.14 0.01 0.07 +sous_marque sous_marque nom f p 0.01 0.14 0.00 0.07 +sous_merde sous_merde nom f s 0.59 0.14 0.54 0.14 +sous_merde sous_merde nom f p 0.59 0.14 0.05 0.00 +sous_ministre sous_ministre nom m s 0.17 0.07 0.17 0.07 +sous_off sous_off nom m s 0.14 4.26 0.11 2.16 +sous_officier sous_officier nom m s 0.65 9.53 0.28 4.80 +sous_officier sous_officier nom m p 0.65 9.53 0.36 4.73 +sous_off sous_off nom m p 0.14 4.26 0.03 2.09 +sous_ordre sous_ordre nom m s 0.01 0.61 0.01 0.54 +sous_ordre sous_ordre nom m p 0.01 0.61 0.00 0.07 +sous_payer sous_payer ver 0.28 0.07 0.04 0.00 inf; +sous_payer sous_payer ver m s 0.28 0.07 0.14 0.07 par:pas; +sous_payer sous_payer ver m p 0.28 0.07 0.10 0.00 par:pas; +sous_pied sous_pied nom m s 0.00 0.20 0.00 0.07 +sous_pied sous_pied nom m p 0.00 0.20 0.00 0.14 +sous_plat sous_plat nom m s 0.00 0.07 0.00 0.07 +sous_prieur sous_prieur pre 0.00 0.47 0.00 0.47 +sous_produit sous_produit nom m s 0.48 0.54 0.42 0.27 +sous_produit sous_produit nom m p 0.48 0.54 0.06 0.27 +sous_programme sous_programme nom m s 0.12 0.00 0.09 0.00 +sous_programme sous_programme nom m p 0.12 0.00 0.03 0.00 +sous_prolétaire sous_prolétaire nom s 0.11 0.07 0.11 0.07 +sous_prolétariat sous_prolétariat nom m s 0.34 0.27 0.34 0.27 +sous_préfecture sous_préfecture nom f s 0.17 1.62 0.03 1.35 +sous_préfecture sous_préfecture nom f p 0.17 1.62 0.14 0.27 +sous_préfet sous_préfet nom m s 0.02 1.01 0.02 0.95 +sous_préfet sous_préfet nom m p 0.02 1.01 0.00 0.07 +sous_pull sous_pull nom m p 0.01 0.00 0.01 0.00 +sous_qualifié sous_qualifié adj m s 0.04 0.00 0.03 0.00 +sous_qualifié sous_qualifié adj f s 0.04 0.00 0.01 0.00 +sous_secrétaire sous_secrétaire nom m s 0.65 1.15 0.65 0.74 +sous_secrétaire sous_secrétaire nom m p 0.65 1.15 0.00 0.41 +sous_secrétariat sous_secrétariat nom m s 0.10 0.00 0.10 0.00 +sous_secteur sous_secteur nom m s 0.02 0.27 0.02 0.27 +sous_section sous_section nom f s 0.09 0.00 0.09 0.00 +sous_sol sous_sol nom m s 13.50 10.54 12.80 8.31 +sous_sol sous_sol nom m p 13.50 10.54 0.70 2.23 +sous_station sous_station nom f s 0.17 0.07 0.17 0.07 +sous_système sous_système nom m s 0.04 0.00 0.04 0.00 +sous_tasse sous_tasse nom f s 0.11 0.20 0.11 0.14 +sous_tasse sous_tasse nom f p 0.11 0.20 0.00 0.07 +sous_tendre sous_tendre ver 0.07 0.54 0.02 0.00 ind:pre:3s; +sous_tendre sous_tendre ver 0.07 0.54 0.00 0.07 ind:imp:3p; +sous_tendre sous_tendre ver 0.07 0.54 0.01 0.20 ind:imp:3s; +sous_tendre sous_tendre ver 0.07 0.54 0.01 0.14 ind:pre:3p; +sous_tendre sous_tendre ver m s 0.07 0.54 0.03 0.07 par:pas; +sous_tendre sous_tendre ver f s 0.07 0.54 0.00 0.07 par:pas; +sous_tension sous_tension nom f s 0.03 0.00 0.03 0.00 +sous_titrage sous_titrage nom m s 54.64 0.00 54.64 0.00 +sous_titre sous_titre nom m s 23.09 0.95 0.83 0.68 +sous_titrer sous_titrer ver 5.81 0.14 0.01 0.00 inf; +sous_titre sous_titre nom m p 23.09 0.95 22.26 0.27 +sous_titrer sous_titrer ver m s 5.81 0.14 5.72 0.00 par:pas; +sous_titrer sous_titrer ver f s 5.81 0.14 0.00 0.07 par:pas; +sous_titrer sous_titrer ver m p 5.81 0.14 0.09 0.07 par:pas; +sous_traitance sous_traitance nom f s 0.04 0.00 0.04 0.00 +sous_traitant sous_traitant nom m s 0.23 0.00 0.10 0.00 +sous_traitant sous_traitant nom m p 0.23 0.00 0.13 0.00 +sous_traiter sous_traiter ver 0.13 0.14 0.04 0.00 ind:pre:3s; +sous_traiter sous_traiter ver 0.13 0.14 0.01 0.00 ind:pre:3p; +sous_traiter sous_traiter ver 0.13 0.14 0.06 0.07 inf; +sous_traiter sous_traiter ver m p 0.13 0.14 0.00 0.07 par:pas; +sous_équipé sous_équipé adj m p 0.07 0.00 0.07 0.00 +sous_évaluer sous_évaluer ver 0.10 0.00 0.01 0.00 ind:imp:3s; +sous_évaluer sous_évaluer ver m s 0.10 0.00 0.06 0.00 par:pas; +sous_évaluer sous_évaluer ver f p 0.10 0.00 0.02 0.00 par:pas; +sous_ventrière sous_ventrière nom f s 0.03 0.47 0.03 0.47 +sous_verge sous_verge nom m 0.00 0.54 0.00 0.54 +sous_verre sous_verre nom m 0.06 0.20 0.06 0.20 +sous_vêtement sous_vêtement nom m s 6.57 2.77 0.33 0.41 +sous_vêtement sous_vêtement nom m p 6.57 2.77 6.24 2.36 +sous sous pre 315.49 1032.70 315.49 1032.70 +souscripteur souscripteur nom m s 0.02 0.20 0.01 0.00 +souscripteurs souscripteur nom m p 0.02 0.20 0.01 0.20 +souscription souscription nom f s 0.16 0.41 0.14 0.27 +souscriptions souscription nom f p 0.16 0.41 0.03 0.14 +souscrira souscrire ver 0.95 3.11 0.04 0.00 ind:fut:3s; +souscrirai souscrire ver 0.95 3.11 0.00 0.07 ind:fut:1s; +souscrirait souscrire ver 0.95 3.11 0.00 0.07 cnd:pre:3s; +souscrire souscrire ver 0.95 3.11 0.20 0.88 inf; +souscris souscrire ver 0.95 3.11 0.27 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +souscrit souscrire ver m s 0.95 3.11 0.22 1.15 ind:pre:3s;par:pas; +souscrite souscrire ver f s 0.95 3.11 0.03 0.14 par:pas; +souscrites souscrire ver f p 0.95 3.11 0.01 0.14 par:pas; +souscrits souscrire ver m p 0.95 3.11 0.00 0.20 par:pas; +souscrivais souscrire ver 0.95 3.11 0.01 0.07 ind:imp:1s; +souscrivait souscrire ver 0.95 3.11 0.00 0.14 ind:imp:3s; +souscrivez souscrire ver 0.95 3.11 0.17 0.00 imp:pre:2p;ind:pre:2p; +souscrivons souscrire ver 0.95 3.11 0.00 0.07 ind:pre:1p; +soussigner sous-signer ver 0.00 0.07 0.00 0.07 inf; +soussigné soussigné adj m s 1.83 0.61 1.44 0.61 +soussignée soussigné adj f s 1.83 0.61 0.03 0.00 +soussignés soussigné adj m p 1.83 0.61 0.36 0.00 +soussou soussou nom s 0.00 0.54 0.00 0.47 +soussous soussou nom p 0.00 0.54 0.00 0.07 +soustraction soustraction nom f s 0.15 1.08 0.11 0.68 +soustractions soustraction nom f p 0.15 1.08 0.04 0.41 +soustrairait soustraire ver 2.17 7.84 0.00 0.07 cnd:pre:3s; +soustraire soustraire ver 2.17 7.84 1.72 4.73 inf; +soustrais soustraire ver 2.17 7.84 0.02 0.00 imp:pre:2s;ind:pre:1s; +soustrait soustraire ver m s 2.17 7.84 0.36 1.15 ind:pre:3s;par:pas; +soustraite soustraire ver f s 2.17 7.84 0.00 0.20 par:pas; +soustraites soustraire ver f p 2.17 7.84 0.00 0.07 par:pas; +soustraits soustraire ver m p 2.17 7.84 0.04 1.08 par:pas; +soustrayaient soustraire ver 2.17 7.84 0.00 0.07 ind:imp:3p; +soustrayait soustraire ver 2.17 7.84 0.00 0.27 ind:imp:3s; +soustrayant soustraire ver 2.17 7.84 0.00 0.20 par:pre; +soustrayez soustraire ver 2.17 7.84 0.03 0.00 imp:pre:2p; +soutînt soutenir ver 35.56 61.22 0.01 0.07 sub:imp:3s; +soutachait soutacher ver 0.00 0.81 0.00 0.07 ind:imp:3s; +soutache soutache nom f s 0.00 0.14 0.00 0.07 +soutaches soutache nom f p 0.00 0.14 0.00 0.07 +soutaché soutacher ver m s 0.00 0.81 0.00 0.20 par:pas; +soutachée soutacher ver f s 0.00 0.81 0.00 0.27 par:pas; +soutachées soutacher ver f p 0.00 0.81 0.00 0.07 par:pas; +soutachés soutacher ver m p 0.00 0.81 0.00 0.20 par:pas; +soutane soutane nom f s 1.75 6.89 1.49 6.08 +soutanelle soutanelle nom f s 0.00 0.07 0.00 0.07 +soutanes soutane nom f p 1.75 6.89 0.26 0.81 +soute soute nom f s 2.62 2.16 2.33 0.95 +soutenable soutenable adj s 0.00 0.14 0.00 0.14 +soutenaient soutenir ver 35.56 61.22 0.34 2.77 ind:imp:3p; +soutenais soutenir ver 35.56 61.22 0.34 0.68 ind:imp:1s;ind:imp:2s; +soutenait soutenir ver 35.56 61.22 0.96 7.23 ind:imp:3s; +soutenance soutenance nom f s 0.03 0.14 0.03 0.14 +soutenant soutenir ver 35.56 61.22 0.27 3.31 par:pre; +souteneur souteneur nom m s 1.36 1.89 0.75 1.08 +souteneurs souteneur nom m p 1.36 1.89 0.61 0.81 +soutenez soutenir ver 35.56 61.22 1.70 0.27 imp:pre:2p;ind:pre:2p; +souteniez soutenir ver 35.56 61.22 0.14 0.07 ind:imp:2p; +soutenions soutenir ver 35.56 61.22 0.14 0.34 ind:imp:1p; +soutenir soutenir ver 35.56 61.22 10.17 18.45 inf; +soutenons soutenir ver 35.56 61.22 0.92 0.00 imp:pre:1p;ind:pre:1p; +soutenu soutenir ver m s 35.56 61.22 5.46 8.92 par:pas; +soutenue soutenir ver f s 35.56 61.22 1.36 3.45 par:pas; +soutenues soutenir ver f p 35.56 61.22 0.07 0.95 par:pas; +soutenus soutenir ver m p 35.56 61.22 0.45 1.69 par:pas; +souter souter ver 0.03 0.00 0.03 0.00 inf; +souterrain souterrain adj m s 4.88 13.04 2.63 4.86 +souterraine souterrain adj f s 4.88 13.04 0.98 3.72 +souterrainement souterrainement adv 0.00 0.27 0.00 0.27 +souterraines souterrain adj f p 4.88 13.04 0.40 2.23 +souterrains souterrain nom m p 2.90 5.07 1.60 1.82 +soutes soute nom f p 2.62 2.16 0.29 1.22 +soutien_gorge soutien_gorge nom m s 5.86 8.65 4.89 7.91 +soutien soutien nom m s 18.87 9.53 18.21 8.92 +soutiendra soutenir ver 35.56 61.22 0.58 0.34 ind:fut:3s; +soutiendrai soutenir ver 35.56 61.22 0.70 0.07 ind:fut:1s; +soutiendraient soutenir ver 35.56 61.22 0.07 0.20 cnd:pre:3p; +soutiendrais soutenir ver 35.56 61.22 0.09 0.27 cnd:pre:1s;cnd:pre:2s; +soutiendrait soutenir ver 35.56 61.22 0.10 0.54 cnd:pre:3s; +soutiendras soutenir ver 35.56 61.22 0.05 0.00 ind:fut:2s; +soutiendrez soutenir ver 35.56 61.22 0.07 0.00 ind:fut:2p; +soutiendriez soutenir ver 35.56 61.22 0.02 0.00 cnd:pre:2p; +soutiendrons soutenir ver 35.56 61.22 0.08 0.07 ind:fut:1p; +soutiendront soutenir ver 35.56 61.22 0.39 0.34 ind:fut:3p; +soutienne soutenir ver 35.56 61.22 0.43 0.41 sub:pre:1s;sub:pre:3s; +soutiennent soutenir ver 35.56 61.22 1.85 2.84 ind:pre:3p; +soutiennes soutenir ver 35.56 61.22 0.16 0.00 sub:pre:2s; +soutien_gorge soutien_gorge nom m p 5.86 8.65 0.96 0.74 +soutiens soutenir ver 35.56 61.22 3.34 1.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +soutient soutenir ver 35.56 61.22 5.14 4.59 ind:pre:3s; +soutier soutier nom m s 0.03 0.54 0.03 0.47 +soutiers soutier nom m p 0.03 0.54 0.00 0.07 +soutif soutif nom m s 2.11 0.20 1.81 0.14 +soutifs soutif nom m p 2.11 0.20 0.29 0.07 +soutinrent soutenir ver 35.56 61.22 0.14 0.27 ind:pas:3p; +soutins soutenir ver 35.56 61.22 0.00 0.07 ind:pas:1s; +soutint soutenir ver 35.56 61.22 0.02 1.76 ind:pas:3s; +soutirage soutirage nom m s 0.00 0.07 0.00 0.07 +soutiraient soutirer ver 2.32 1.82 0.00 0.07 ind:imp:3p; +soutire soutirer ver 2.32 1.82 0.14 0.14 ind:pre:1s;ind:pre:3s; +soutirent soutirer ver 2.32 1.82 0.03 0.00 ind:pre:3p; +soutirer soutirer ver 2.32 1.82 1.88 1.42 inf; +soutirerai soutirer ver 2.32 1.82 0.03 0.00 ind:fut:1s; +soutirez soutirer ver 2.32 1.82 0.02 0.00 ind:pre:2p; +soutiré soutirer ver m s 2.32 1.82 0.21 0.14 par:pas; +soutirée soutirer ver f s 2.32 1.82 0.01 0.00 par:pas; +soutirées soutirer ver f p 2.32 1.82 0.00 0.07 par:pas; +soutra soutra nom m s 0.20 0.00 0.20 0.00 +soutènement soutènement nom m s 0.04 0.54 0.04 0.54 +souvînt souvenir ver 315.05 215.41 0.00 0.81 sub:imp:3s; +souvenaient souvenir ver 315.05 215.41 0.10 2.16 ind:imp:3p; +souvenais souvenir ver 315.05 215.41 1.76 8.99 ind:imp:1s;ind:imp:2s; +souvenait souvenir ver 315.05 215.41 1.23 24.12 ind:imp:3s; +souvenance souvenance nom f s 0.03 0.81 0.03 0.47 +souvenances souvenance nom f p 0.03 0.81 0.00 0.34 +souvenant souvenir ver 315.05 215.41 0.26 3.72 par:pre; +souvenez souvenir ver 315.05 215.41 36.70 10.88 imp:pre:2p;ind:pre:2p; +souveniez souvenir ver 315.05 215.41 0.54 0.54 ind:imp:2p;sub:pre:2p; +souvenions souvenir ver 315.05 215.41 0.01 0.27 ind:imp:1p; +souvenir souvenir ver 315.05 215.41 31.36 38.65 inf; +souvenirs souvenir nom m p 63.24 197.03 32.79 90.34 +souvenons souvenir ver 315.05 215.41 0.97 0.27 imp:pre:1p;ind:pre:1p; +souvent souvent adv_sup 135.54 286.96 135.54 286.96 +souventefois souventefois adv 0.00 0.14 0.00 0.14 +souventes_fois souventes_fois adv 0.00 0.27 0.00 0.27 +souvenu souvenir ver m s 315.05 215.41 3.71 3.38 par:pas; +souvenue souvenir ver f s 315.05 215.41 0.89 1.35 par:pas; +souvenus souvenir ver m p 315.05 215.41 0.20 0.00 par:pas; +souverain souverain nom m s 5.33 8.18 3.97 4.19 +souveraine souverain adj f s 3.36 10.00 1.54 5.14 +souverainement souverainement adv 0.16 2.09 0.16 2.09 +souveraines souverain adj f p 3.36 10.00 0.02 0.27 +souveraineté souveraineté nom f s 0.63 10.81 0.63 10.74 +souverainetés souveraineté nom f p 0.63 10.81 0.00 0.07 +souverains souverain nom m p 5.33 8.18 0.43 2.03 +souviendra souvenir ver 315.05 215.41 3.56 1.76 ind:fut:3s; +souviendrai souvenir ver 315.05 215.41 5.67 1.69 ind:fut:1s; +souviendraient souvenir ver 315.05 215.41 0.05 0.54 cnd:pre:3p; +souviendrais souvenir ver 315.05 215.41 1.44 0.68 cnd:pre:1s;cnd:pre:2s; +souviendrait souvenir ver 315.05 215.41 0.60 1.76 cnd:pre:3s; +souviendras souvenir ver 315.05 215.41 2.79 0.68 ind:fut:2s; +souviendrez souvenir ver 315.05 215.41 0.73 0.34 ind:fut:2p; +souviendriez souvenir ver 315.05 215.41 0.14 0.00 cnd:pre:2p; +souviendrons souvenir ver 315.05 215.41 0.22 0.07 ind:fut:1p; +souviendront souvenir ver 315.05 215.41 0.73 0.68 ind:fut:3p; +souvienne souvenir ver 315.05 215.41 5.55 3.38 sub:pre:1s;sub:pre:3s; +souviennent souvenir ver 315.05 215.41 2.83 3.04 ind:pre:3p; +souviennes souvenir ver 315.05 215.41 1.58 0.27 sub:pre:2s; +souviens souvenir ver 315.05 215.41 198.30 72.84 imp:pre:2s;ind:pre:1s;ind:pre:2s; +souvient souvenir ver 315.05 215.41 12.60 15.68 ind:pre:3s; +souvinrent souvenir ver 315.05 215.41 0.01 0.20 ind:pas:3p; +souvins souvenir ver 315.05 215.41 0.31 2.91 ind:pas:1s; +souvinssent souvenir ver 315.05 215.41 0.00 0.07 sub:imp:3p; +souvint souvenir ver 315.05 215.41 0.23 13.72 ind:pas:3s; +souvlaki souvlaki nom m s 0.02 0.14 0.02 0.14 +soviet soviet nom m s 2.54 7.70 0.73 2.43 +soviets soviet nom m p 2.54 7.70 1.81 5.27 +soviétique soviétique adj s 10.68 24.59 8.89 20.47 +soviétiques soviétique adj p 10.68 24.59 1.79 4.12 +soviétisation soviétisation nom f s 0.00 0.14 0.00 0.14 +soviétisme soviétisme nom m s 0.00 0.34 0.00 0.34 +soviétologues soviétologue nom p 0.00 0.07 0.00 0.07 +sovkhoze sovkhoze nom m s 0.01 0.07 0.01 0.00 +sovkhozes sovkhoze nom m p 0.01 0.07 0.00 0.07 +soya soya nom m s 0.09 0.00 0.09 0.00 +soyeuse soyeux adj f s 0.61 13.04 0.10 4.12 +soyeusement soyeusement adv 0.00 0.07 0.00 0.07 +soyeuses soyeux adj f p 0.61 13.04 0.04 1.76 +soyeux soyeux adj m 0.61 13.04 0.47 7.16 +soyez être aux 8074.24 6501.82 24.16 5.34 sub:pre:2p; +soyons être aux 8074.24 6501.82 4.79 3.11 sub:pre:1p; +spa spa nom m s 1.05 0.00 0.79 0.00 +spacieuse spacieux adj f s 2.00 4.26 0.68 1.62 +spacieuses spacieux adj f p 2.00 4.26 0.20 0.54 +spacieux spacieux adj m 2.00 4.26 1.12 2.09 +spadassin spadassin nom m s 0.02 1.15 0.02 0.68 +spadassins spadassin nom m p 0.02 1.15 0.00 0.47 +spadille spadille nom m s 0.00 0.07 0.00 0.07 +spaghetti spaghetti nom m s 7.02 2.97 3.73 1.89 +spaghettis spaghetti nom m p 7.02 2.97 3.29 1.08 +spahi spahi nom m s 0.00 2.30 0.00 0.41 +spahis spahi nom m p 0.00 2.30 0.00 1.89 +spamming spamming nom m s 0.01 0.00 0.01 0.00 +sparadrap sparadrap nom m s 1.78 1.96 1.66 1.89 +sparadraps sparadrap nom m p 1.78 1.96 0.12 0.07 +sparring_partner sparring_partner nom m s 0.00 0.07 0.00 0.07 +spartakistes spartakiste adj p 0.01 0.00 0.01 0.00 +sparte sparte nom f s 0.00 0.14 0.00 0.14 +sparterie sparterie nom f s 0.00 0.34 0.00 0.34 +spartiate spartiate adj s 0.60 0.41 0.50 0.34 +spartiates spartiate nom p 0.36 0.34 0.26 0.14 +spartéine spartéine nom f s 0.01 0.00 0.01 0.00 +spas spa nom m p 1.05 0.00 0.26 0.00 +spasme spasme nom m s 2.13 6.76 0.47 3.38 +spasmes spasme nom m p 2.13 6.76 1.66 3.38 +spasmodique spasmodique adj s 0.34 0.81 0.15 0.41 +spasmodiquement spasmodiquement adv 0.01 0.88 0.01 0.88 +spasmodiques spasmodique adj p 0.34 0.81 0.20 0.41 +spasmophile spasmophile adj m s 0.02 0.07 0.02 0.07 +spasmophilie spasmophilie nom f s 0.01 0.20 0.01 0.20 +spasticité spasticité nom f s 0.03 0.00 0.03 0.00 +spastique spastique adj f s 0.01 0.00 0.01 0.00 +spath spath nom m s 0.07 0.00 0.07 0.00 +spatial spatial adj m s 10.94 1.35 5.90 0.61 +spatiale spatial adj f s 10.94 1.35 3.42 0.41 +spatialement spatialement adv 0.01 0.00 0.01 0.00 +spatiales spatial adj f p 10.94 1.35 0.57 0.14 +spatiaux spatial adj m p 10.94 1.35 1.05 0.20 +spatio_temporel spatio_temporel adj m s 0.21 0.20 0.09 0.07 +spatio_temporel spatio_temporel adj f s 0.21 0.20 0.13 0.14 +spationaute spationaute nom s 0.09 0.00 0.09 0.00 +spatiotemporel spatiotemporel adj m s 0.05 0.00 0.05 0.00 +spatule spatule nom f s 0.45 1.82 0.44 1.62 +spatuler spatuler ver 0.01 0.00 0.01 0.00 inf; +spatules spatule nom f p 0.45 1.82 0.01 0.20 +spatulée spatulé adj f s 0.15 0.14 0.01 0.00 +spatulées spatulé adj f p 0.15 0.14 0.14 0.07 +spatulés spatulé adj m p 0.15 0.14 0.00 0.07 +speakeasy speakeasy nom m s 0.05 0.07 0.05 0.07 +speaker speaker nom m s 1.12 3.99 0.95 2.70 +speakerine speaker nom f s 1.12 3.99 0.15 0.34 +speakerines speakerine nom f p 0.14 0.00 0.14 0.00 +speakers speaker nom m p 1.12 3.99 0.02 0.68 +species species nom m 0.10 0.07 0.10 0.07 +spectacle spectacle nom m s 55.19 73.78 51.14 66.76 +spectacles spectacle nom m p 55.19 73.78 4.05 7.03 +spectaculaire spectaculaire adj s 3.88 6.22 3.50 4.59 +spectaculairement spectaculairement adv 0.04 0.34 0.04 0.34 +spectaculaires spectaculaire adj p 3.88 6.22 0.37 1.62 +spectateur spectateur nom m s 8.41 21.69 2.50 6.49 +spectateurs spectateur nom m p 8.41 21.69 5.48 13.45 +spectatrice spectateur nom f s 8.41 21.69 0.43 1.08 +spectatrices spectatrice nom f p 0.01 0.00 0.01 0.00 +spectral spectral adj m s 0.94 0.81 0.17 0.34 +spectrale spectral adj f s 0.94 0.81 0.58 0.14 +spectrales spectral adj f p 0.94 0.81 0.13 0.34 +spectraux spectral adj m p 0.94 0.81 0.05 0.00 +spectre spectre nom m s 4.25 6.96 3.87 4.73 +spectres spectre nom m p 4.25 6.96 0.37 2.23 +spectrogramme spectrogramme nom m s 0.03 0.00 0.03 0.00 +spectrographe spectrographe nom m s 0.05 0.00 0.05 0.00 +spectrographie spectrographie nom f s 0.14 0.00 0.14 0.00 +spectrographique spectrographique adj s 0.09 0.00 0.09 0.00 +spectrohéliographe spectrohéliographe nom m s 0.01 0.00 0.01 0.00 +spectromètre spectromètre nom m s 0.34 0.00 0.34 0.00 +spectrométrie spectrométrie nom f s 0.09 0.00 0.09 0.00 +spectrométrique spectrométrique adj f s 0.01 0.00 0.01 0.00 +spectrophotomètre spectrophotomètre nom m s 0.01 0.00 0.01 0.00 +spectroscope spectroscope nom m s 0.07 0.00 0.07 0.00 +spectroscopie spectroscopie nom f s 0.01 0.00 0.01 0.00 +speech speech nom m s 1.88 0.74 1.88 0.74 +speed speed nom m s 3.45 1.49 3.45 1.49 +speede speeder ver 0.33 0.54 0.01 0.07 ind:pre:1s;ind:pre:3s; +speeder speeder ver 0.33 0.54 0.20 0.07 inf; +speedes speeder ver 0.33 0.54 0.10 0.07 ind:pre:2s; +speedé speedé adj m s 0.21 0.61 0.04 0.07 +speedée speedé adj f s 0.21 0.61 0.01 0.14 +speedés speedé adj m p 0.21 0.61 0.16 0.41 +spencer spencer nom m s 0.04 0.27 0.03 0.20 +spencers spencer nom m p 0.04 0.27 0.02 0.07 +spenglérienne spenglérienne nom f s 0.00 0.07 0.00 0.07 +spermaceti spermaceti nom m s 0.08 0.00 0.08 0.00 +spermatique spermatique adj s 0.01 0.27 0.01 0.27 +spermato spermato nom m s 0.03 0.41 0.01 0.14 +spermatogenèse spermatogenèse nom f s 0.04 0.00 0.04 0.00 +spermatos spermato nom m p 0.03 0.41 0.02 0.27 +spermatozoïde spermatozoïde nom m s 0.51 0.74 0.23 0.14 +spermatozoïdes spermatozoïde nom m p 0.51 0.74 0.28 0.61 +sperme sperme nom m s 8.47 5.07 8.31 4.93 +spermes sperme nom m p 8.47 5.07 0.15 0.14 +spermicide spermicide nom m s 0.07 0.07 0.07 0.07 +spermogramme spermogramme nom m s 0.01 0.00 0.01 0.00 +spermophiles spermophile nom m p 0.01 0.00 0.01 0.00 +spetsnaz spetsnaz nom f p 0.02 0.00 0.02 0.00 +sphaigne sphaigne nom f s 0.01 0.07 0.01 0.00 +sphaignes sphaigne nom f p 0.01 0.07 0.00 0.07 +sphincter sphincter nom m s 0.34 1.01 0.31 0.14 +sphincters sphincter nom m p 0.34 1.01 0.02 0.88 +sphinge sphinge nom f s 0.00 0.20 0.00 0.07 +sphinges sphinge nom f p 0.00 0.20 0.00 0.14 +sphinx sphinx nom m 1.27 3.04 1.27 3.04 +sphère sphère nom f s 3.90 9.19 2.48 5.74 +sphères sphère nom f p 3.90 9.19 1.42 3.45 +sphénoïde sphénoïde adj s 0.01 0.00 0.01 0.00 +sphéricité sphéricité nom f s 0.00 0.07 0.00 0.07 +sphérique sphérique adj s 0.26 1.62 0.23 1.01 +sphériquement sphériquement adv 0.01 0.00 0.01 0.00 +sphériques sphérique adj p 0.26 1.62 0.02 0.61 +sphéroïde sphéroïde nom m s 0.01 0.14 0.00 0.14 +sphéroïdes sphéroïde nom m p 0.01 0.14 0.01 0.00 +sphygmomanomètre sphygmomanomètre nom m s 0.02 0.00 0.02 0.00 +spi spi nom m s 0.01 0.00 0.01 0.00 +spic spic nom m s 0.14 0.00 0.05 0.00 +spica spica nom m s 0.08 0.14 0.08 0.14 +spics spic nom m p 0.14 0.00 0.09 0.00 +spicules spicule nom m p 0.01 0.00 0.01 0.00 +spider spider nom m s 3.27 0.41 3.27 0.41 +spin spin nom m s 0.14 0.00 0.14 0.00 +spina_bifida spina_bifida nom m s 0.04 0.00 0.04 0.00 +spina_ventosa spina_ventosa nom m s 0.00 0.07 0.00 0.07 +spina spina nom f s 0.05 0.00 0.05 0.00 +spinal spinal adj m s 0.64 0.00 0.50 0.00 +spinale spinal adj f s 0.64 0.00 0.13 0.00 +spinaux spinal adj m p 0.64 0.00 0.01 0.00 +spinnaker spinnaker nom m s 0.02 0.14 0.02 0.07 +spinnakers spinnaker nom m p 0.02 0.14 0.00 0.07 +spinozisme spinozisme nom m s 0.00 0.07 0.00 0.07 +spirale spirale nom f s 1.31 6.08 1.20 3.45 +spiraler spiraler ver 0.00 0.07 0.00 0.07 inf; +spirales spirale nom f p 1.31 6.08 0.11 2.64 +spiralé spiralé adj m s 0.01 0.20 0.01 0.07 +spiralées spiralé adj f p 0.01 0.20 0.00 0.07 +spiralés spiralé adj m p 0.01 0.20 0.00 0.07 +spire spire nom f s 0.23 0.81 0.06 0.14 +spires spire nom f p 0.23 0.81 0.17 0.68 +spirite spirite adj f s 0.03 0.07 0.02 0.00 +spirites spirite nom p 0.04 0.07 0.04 0.00 +spiritisme spiritisme nom m s 1.81 0.20 1.81 0.20 +spiritualisaient spiritualiser ver 0.10 0.74 0.00 0.07 ind:imp:3p; +spiritualise spiritualiser ver 0.10 0.74 0.00 0.20 ind:pre:3s; +spiritualiser spiritualiser ver 0.10 0.74 0.00 0.07 inf; +spiritualisme spiritualisme nom m s 0.14 0.00 0.14 0.00 +spiritualiste spiritualiste adj s 0.02 0.41 0.01 0.34 +spiritualistes spiritualiste nom p 0.02 0.00 0.02 0.00 +spiritualisé spiritualiser ver m s 0.10 0.74 0.10 0.41 par:pas; +spiritualité spiritualité nom f s 0.79 1.15 0.79 1.08 +spiritualités spiritualité nom f p 0.79 1.15 0.00 0.07 +spirituel spirituel adj m s 12.10 14.53 6.83 4.93 +spirituelle spirituel adj f s 12.10 14.53 3.89 6.15 +spirituellement spirituellement adv 0.78 0.81 0.78 0.81 +spirituelles spirituel adj f p 12.10 14.53 0.58 1.76 +spirituels spirituel adj m p 12.10 14.53 0.80 1.69 +spiritueux spiritueux nom m 0.41 0.61 0.41 0.61 +spirochète spirochète nom m s 0.02 0.00 0.02 0.00 +spirographe spirographe nom m s 0.03 0.00 0.03 0.00 +spiromètres spiromètre nom m p 0.00 0.07 0.00 0.07 +spirées spirée nom f p 0.00 0.07 0.00 0.07 +spiruline spiruline nom f s 0.01 0.00 0.01 0.00 +spitz spitz nom m s 0.01 0.00 0.01 0.00 +splash splash ono 0.27 0.27 0.27 0.27 +spleen spleen nom m s 0.11 1.55 0.11 1.35 +spleens spleen nom m p 0.11 1.55 0.00 0.20 +splendeur splendeur nom f s 5.02 14.59 4.67 10.95 +splendeurs splendeur nom f p 5.02 14.59 0.35 3.65 +splendide splendide adj s 16.73 10.14 15.45 7.30 +splendidement splendidement adv 0.21 0.07 0.21 0.07 +splendides splendide adj p 16.73 10.14 1.28 2.84 +splittaient splitter ver 0.01 0.07 0.00 0.07 ind:imp:3p; +splitter splitter ver 0.01 0.07 0.01 0.00 inf; +splénectomie splénectomie nom f s 0.09 0.00 0.09 0.00 +splénique splénique nom m s 0.05 0.00 0.05 0.00 +spoiler spoiler nom m s 0.01 0.00 0.01 0.00 +spoliait spolier ver 0.59 0.54 0.00 0.07 ind:imp:3s; +spoliation spoliation nom f s 0.00 0.61 0.00 0.47 +spoliations spoliation nom f p 0.00 0.61 0.00 0.14 +spolie spolier ver 0.59 0.54 0.14 0.00 ind:pre:3s; +spolier spolier ver 0.59 0.54 0.04 0.00 inf; +spolié spolier ver m s 0.59 0.54 0.29 0.14 par:pas; +spoliée spolier ver f s 0.59 0.54 0.00 0.07 par:pas; +spoliées spolié nom f p 0.01 0.07 0.00 0.07 +spoliés spolier ver m p 0.59 0.54 0.11 0.27 par:pas; +spondées spondée nom m p 0.00 0.07 0.00 0.07 +spondylarthrose spondylarthrose nom f s 0.01 0.00 0.01 0.00 +spondylite spondylite nom f s 0.01 0.00 0.01 0.00 +spongieuse spongieux adj f s 0.20 4.26 0.04 1.82 +spongieuses spongieux adj f p 0.20 4.26 0.00 0.34 +spongieux spongieux adj m 0.20 4.26 0.16 2.09 +spongiforme spongiforme adj f s 0.03 0.00 0.03 0.00 +sponsor sponsor nom m s 2.72 0.20 1.72 0.14 +sponsoring sponsoring nom m s 0.09 0.07 0.09 0.07 +sponsorisait sponsoriser ver 1.19 0.00 0.04 0.00 ind:imp:3s; +sponsorise sponsoriser ver 1.19 0.00 0.16 0.00 ind:pre:1s;ind:pre:3s; +sponsoriser sponsoriser ver 1.19 0.00 0.33 0.00 inf; +sponsorisera sponsoriser ver 1.19 0.00 0.03 0.00 ind:fut:3s; +sponsorisé sponsoriser ver m s 1.19 0.00 0.22 0.00 par:pas; +sponsorisée sponsoriser ver f s 1.19 0.00 0.37 0.00 par:pas; +sponsorisés sponsoriser ver m p 1.19 0.00 0.04 0.00 par:pas; +sponsors sponsor nom m p 2.72 0.20 1.00 0.07 +spontané spontané adj m s 4.14 7.97 2.02 2.77 +spontanée spontané adj f s 4.14 7.97 1.67 3.51 +spontanées spontané adj f p 4.14 7.97 0.31 0.81 +spontanéistes spontanéiste adj p 0.00 0.07 0.00 0.07 +spontanéité spontanéité nom f s 0.91 2.50 0.91 2.50 +spontanément spontanément adv 1.35 8.11 1.35 8.11 +spontanés spontané adj m p 4.14 7.97 0.15 0.88 +spoon spoon nom m s 0.31 0.00 0.31 0.00 +sporadique sporadique adj s 0.31 1.62 0.11 0.54 +sporadiquement sporadiquement adv 0.17 0.54 0.17 0.54 +sporadiques sporadique adj p 0.31 1.62 0.20 1.08 +spore spore nom f s 0.91 0.14 0.01 0.00 +spores spore nom f p 0.91 0.14 0.90 0.14 +sport sport nom m s 30.04 20.81 24.61 15.54 +sportif sportif adj m s 7.72 9.39 4.58 3.45 +sportifs sportif nom m p 2.98 4.80 1.46 2.16 +sportive sportif adj f s 7.72 9.39 1.40 2.91 +sportivement sportivement adv 0.00 0.20 0.00 0.20 +sportives sportif adj f p 7.72 9.39 0.49 0.88 +sportivité sportivité nom f s 0.02 0.00 0.02 0.00 +sports sport nom m p 30.04 20.81 5.42 5.27 +sportsman sportsman nom m s 0.00 0.61 0.00 0.41 +sportsmen sportsman nom m p 0.00 0.61 0.00 0.20 +sportswear sportswear nom m s 0.00 0.07 0.00 0.07 +spot spot nom m s 3.50 1.49 2.50 0.47 +spots spot nom m p 3.50 1.49 1.00 1.01 +spoutnik spoutnik nom m s 0.24 0.07 0.13 0.07 +spoutniks spoutnik nom m p 0.24 0.07 0.11 0.00 +sprat sprat nom m s 0.40 0.14 0.18 0.00 +sprats sprat nom m p 0.40 0.14 0.22 0.14 +spray spray nom m s 2.71 0.27 2.65 0.27 +sprays spray nom m p 2.71 0.27 0.06 0.00 +sprechgesang sprechgesang nom m s 0.00 0.07 0.00 0.07 +spring spring nom m s 0.83 0.68 0.83 0.68 +springer springer nom m s 0.59 0.00 0.59 0.00 +sprinkler sprinkler nom m s 0.05 0.00 0.02 0.00 +sprinklers sprinkler nom m p 0.05 0.00 0.03 0.00 +sprint sprint nom m s 0.89 2.23 0.85 1.82 +sprinta sprinter ver 0.41 0.68 0.00 0.07 ind:pas:3s; +sprintait sprinter ver 0.41 0.68 0.00 0.07 ind:imp:3s; +sprintant sprinter ver 0.41 0.68 0.06 0.07 par:pre; +sprinte sprinter ver 0.41 0.68 0.14 0.20 ind:pre:1s;ind:pre:3s; +sprinter sprinter nom m s 0.34 0.27 0.23 0.14 +sprinters sprinter nom m p 0.34 0.27 0.11 0.14 +sprinteur sprinteur nom m s 0.03 0.00 0.01 0.00 +sprinteurs sprinteur nom m p 0.03 0.00 0.02 0.00 +sprints sprint nom m p 0.89 2.23 0.04 0.41 +spruce spruce nom m s 0.04 0.00 0.04 0.00 +spécial spécial adj m s 83.73 31.22 48.12 14.46 +spéciale spécial adj f s 83.73 31.22 22.77 7.09 +spécialement spécialement adv 9.60 14.80 9.60 14.80 +spéciales spécial adj f p 83.73 31.22 6.48 5.00 +spécialisa spécialiser ver 4.05 5.68 0.00 0.14 ind:pas:3s; +spécialisaient spécialiser ver 4.05 5.68 0.10 0.00 ind:imp:3p; +spécialisait spécialiser ver 4.05 5.68 0.00 0.14 ind:imp:3s; +spécialisant spécialiser ver 4.05 5.68 0.02 0.07 par:pre; +spécialisation spécialisation nom f s 0.43 0.41 0.43 0.41 +spécialise spécialiser ver 4.05 5.68 0.44 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +spécialiser spécialiser ver 4.05 5.68 0.21 0.27 inf; +spécialiste spécialiste nom s 16.69 16.96 11.91 10.07 +spécialistes spécialiste nom p 16.69 16.96 4.79 6.89 +spécialisé spécialiser ver m s 4.05 5.68 1.80 2.43 par:pas; +spécialisée spécialiser ver f s 4.05 5.68 0.89 1.22 par:pas; +spécialisées spécialisé adj f p 1.60 5.41 0.14 1.08 +spécialisés spécialiser ver m p 4.05 5.68 0.51 0.95 par:pas; +spécialité spécialité nom f s 10.06 9.73 8.70 7.91 +spécialités spécialité nom f p 10.06 9.73 1.36 1.82 +spéciaux spécial adj m p 83.73 31.22 6.36 4.66 +spécieuse spécieux adj f s 0.11 0.41 0.04 0.07 +spécieusement spécieusement adv 0.00 0.07 0.00 0.07 +spécieuses spécieux adj f p 0.11 0.41 0.01 0.20 +spécieux spécieux adj m 0.11 0.41 0.06 0.14 +spécifiais spécifier ver 1.19 2.16 0.00 0.07 ind:imp:1s; +spécifiait spécifier ver 1.19 2.16 0.04 0.41 ind:imp:3s; +spécifiant spécifier ver 1.19 2.16 0.00 0.20 par:pre; +spécification spécification nom f s 0.48 0.07 0.02 0.00 +spécifications spécification nom f p 0.48 0.07 0.46 0.07 +spécificité spécificité nom f s 0.25 0.34 0.07 0.34 +spécificités spécificité nom f p 0.25 0.34 0.17 0.00 +spécifie spécifier ver 1.19 2.16 0.37 0.27 imp:pre:2s;ind:pre:3s; +spécifient spécifier ver 1.19 2.16 0.00 0.07 ind:pre:3p; +spécifier spécifier ver 1.19 2.16 0.19 0.27 inf; +spécifiera spécifier ver 1.19 2.16 0.03 0.00 ind:fut:3s; +spécifiez spécifier ver 1.19 2.16 0.02 0.00 imp:pre:2p; +spécifique spécifique adj s 4.80 1.96 3.59 1.42 +spécifiquement spécifiquement adv 1.18 1.22 1.18 1.22 +spécifiques spécifique adj p 4.80 1.96 1.22 0.54 +spécifié spécifier ver m s 1.19 2.16 0.53 0.88 par:pas; +spécifiée spécifié adj f s 0.15 0.07 0.03 0.00 +spécifiées spécifié adj f p 0.15 0.07 0.04 0.00 +spécifiés spécifié adj m p 0.15 0.07 0.02 0.00 +spécimen spécimen nom m s 5.26 3.31 3.46 1.49 +spécimens spécimen nom m p 5.26 3.31 1.80 1.82 +spéculaient spéculer ver 1.86 1.62 0.01 0.07 ind:imp:3p; +spéculaire spéculaire adj s 0.00 0.14 0.00 0.14 +spéculait spéculer ver 1.86 1.62 0.00 0.07 ind:imp:3s; +spéculant spéculer ver 1.86 1.62 0.03 0.34 par:pre; +spéculateur spéculateur nom m s 0.88 0.68 0.13 0.54 +spéculateurs spéculateur nom m p 0.88 0.68 0.64 0.07 +spéculatif spéculatif adj m s 0.08 0.61 0.02 0.14 +spéculatifs spéculatif adj m p 0.08 0.61 0.04 0.14 +spéculation spéculation nom f s 2.13 3.92 1.08 1.35 +spéculations spéculation nom f p 2.13 3.92 1.04 2.57 +spéculative spéculatif adj f s 0.08 0.61 0.02 0.27 +spéculatives spéculatif adj f p 0.08 0.61 0.00 0.07 +spéculatrice spéculateur nom f s 0.88 0.68 0.10 0.00 +spéculatrices spéculateur nom f p 0.88 0.68 0.00 0.07 +spécule spéculer ver 1.86 1.62 0.51 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +spéculent spéculer ver 1.86 1.62 0.15 0.14 ind:pre:3p; +spéculer spéculer ver 1.86 1.62 0.77 0.47 inf; +spéculeraient spéculer ver 1.86 1.62 0.00 0.07 cnd:pre:3p; +spéculez spéculer ver 1.86 1.62 0.34 0.00 imp:pre:2p;ind:pre:2p; +spéculoos spéculoos nom m 0.14 0.00 0.14 0.00 +spéculé spéculer ver m s 1.86 1.62 0.05 0.07 par:pas; +spéculum spéculum nom m s 0.13 0.14 0.13 0.14 +spéléo spéléo nom f s 0.27 0.00 0.27 0.00 +spéléologie spéléologie nom f s 0.02 0.07 0.02 0.07 +spéléologue spéléologue nom s 0.29 0.27 0.12 0.07 +spéléologues spéléologue nom p 0.29 0.27 0.17 0.20 +spéléotomie spéléotomie nom f s 0.00 0.14 0.00 0.14 +spumescent spumescent adj m s 0.00 0.07 0.00 0.07 +spumosité spumosité nom f s 0.00 0.07 0.00 0.07 +squale squale nom m s 0.47 0.20 0.23 0.00 +squales squale nom m p 0.47 0.20 0.24 0.20 +squames squame nom f p 0.01 0.14 0.01 0.14 +squameuse squameux adj f s 0.05 0.41 0.01 0.34 +squameux squameux adj m s 0.05 0.41 0.04 0.07 +square square nom m s 5.89 16.69 5.51 14.39 +squares square nom m p 5.89 16.69 0.38 2.30 +squash squash nom m s 0.73 0.07 0.73 0.07 +squat squat nom m s 1.23 0.00 1.20 0.00 +squats squat nom m p 1.23 0.00 0.03 0.00 +squattait squatter ver 1.28 0.41 0.04 0.00 ind:imp:3s; +squatte squatter ver 1.28 0.41 0.50 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +squatter squatter ver 1.28 0.41 0.43 0.07 inf; +squatteras squatter ver 1.28 0.41 0.01 0.00 ind:fut:2s; +squatters squatter nom m p 0.46 0.27 0.30 0.14 +squatteur squatteur nom m s 0.17 0.00 0.05 0.00 +squatteurs squatteur nom m p 0.17 0.00 0.12 0.00 +squattez squatter ver 1.28 0.41 0.03 0.00 ind:pre:2p; +squatté squatter ver m s 1.28 0.41 0.28 0.00 par:pas; +squattée squatter ver f s 1.28 0.41 0.00 0.07 par:pas; +squattées squatter ver f p 1.28 0.41 0.00 0.07 par:pas; +squattérisé squattériser ver m s 0.00 0.07 0.00 0.07 par:pas; +squattés squatter ver m p 1.28 0.41 0.00 0.07 par:pas; +squaw squaw nom f s 0.00 6.08 0.00 6.01 +squaws squaw nom f p 0.00 6.08 0.00 0.07 +squeeze squeeze nom m s 0.10 0.07 0.10 0.07 +squeezent squeezer ver 0.02 0.00 0.01 0.00 ind:pre:3p; +squeezer squeezer ver 0.02 0.00 0.01 0.00 inf; +squelette squelette nom m s 6.75 11.69 5.09 8.58 +squelettes squelette nom m p 6.75 11.69 1.65 3.11 +squelettique squelettique adj s 0.39 3.45 0.29 2.09 +squelettiques squelettique adj p 0.39 3.45 0.10 1.35 +squire squire nom m s 0.04 0.07 0.01 0.07 +squires squire nom m p 0.04 0.07 0.03 0.00 +sri_lankais sri_lankais adj m 0.01 0.00 0.01 0.00 +sri_lankais sri_lankais nom m 0.01 0.00 0.01 0.00 +stabat_mater stabat_mater nom m 0.00 0.07 0.00 0.07 +stabilisa stabiliser ver 4.84 1.42 0.01 0.00 ind:pas:3s; +stabilisait stabiliser ver 4.84 1.42 0.00 0.14 ind:imp:3s; +stabilisant stabilisant nom m s 0.02 0.00 0.02 0.00 +stabilisante stabilisant adj f s 0.03 0.00 0.03 0.00 +stabilisateur stabilisateur nom m s 0.84 0.00 0.41 0.00 +stabilisateurs stabilisateur nom m p 0.84 0.00 0.43 0.00 +stabilisation stabilisation nom f s 0.36 0.41 0.36 0.41 +stabilisatrice stabilisateur adj f s 0.35 0.00 0.03 0.00 +stabilise stabiliser ver 4.84 1.42 1.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stabilisent stabiliser ver 4.84 1.42 0.09 0.07 ind:pre:3p; +stabiliser stabiliser ver 4.84 1.42 1.65 0.61 inf; +stabilisez stabiliser ver 4.84 1.42 0.37 0.00 imp:pre:2p; +stabilisons stabiliser ver 4.84 1.42 0.02 0.00 imp:pre:1p;ind:pre:1p; +stabilisèrent stabiliser ver 4.84 1.42 0.00 0.07 ind:pas:3p; +stabilisé stabiliser ver m s 4.84 1.42 1.20 0.20 par:pas; +stabilisée stabiliser ver f s 4.84 1.42 0.45 0.00 par:pas; +stabilisées stabilisé adj f p 0.56 0.41 0.01 0.14 +stabilisés stabiliser ver m p 4.84 1.42 0.04 0.00 par:pas; +stabilité stabilité nom f s 1.81 3.18 1.81 3.18 +stable stable adj s 10.09 4.53 8.67 3.78 +stablement stablement adv 0.00 0.07 0.00 0.07 +stables stable adj p 10.09 4.53 1.42 0.74 +stabulation stabulation nom f s 0.00 0.14 0.00 0.14 +staccato staccato nom m s 0.02 0.41 0.02 0.41 +stade stade nom m s 15.14 14.80 14.34 13.18 +stades stade nom m p 15.14 14.80 0.80 1.62 +stadium stadium nom m s 0.22 0.07 0.22 0.07 +staff staff nom m s 1.39 0.54 1.36 0.47 +staffs staff nom m p 1.39 0.54 0.03 0.07 +stage stage nom m s 6.16 5.54 4.87 4.80 +stages stage nom m p 6.16 5.54 1.28 0.74 +stagflation stagflation nom f s 0.01 0.00 0.01 0.00 +stagiaire stagiaire nom s 2.47 1.55 1.79 1.22 +stagiaires stagiaire nom p 2.47 1.55 0.69 0.34 +stagna stagner ver 0.59 5.41 0.00 0.20 ind:pas:3s; +stagnaient stagner ver 0.59 5.41 0.00 0.27 ind:imp:3p; +stagnait stagner ver 0.59 5.41 0.04 1.69 ind:imp:3s; +stagnant stagnant adj m s 0.41 2.97 0.04 0.61 +stagnante stagnant adj f s 0.41 2.97 0.26 1.69 +stagnantes stagnant adj f p 0.41 2.97 0.11 0.68 +stagnation stagnation nom f s 0.19 0.61 0.19 0.61 +stagne stagner ver 0.59 5.41 0.24 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stagnent stagner ver 0.59 5.41 0.06 0.20 ind:pre:3p; +stagner stagner ver 0.59 5.41 0.21 0.74 inf; +stagnez stagner ver 0.59 5.41 0.02 0.00 ind:pre:2p; +stagné stagner ver m s 0.59 5.41 0.02 0.27 par:pas; +stakhanoviste stakhanoviste nom s 0.27 0.07 0.27 0.07 +stalactite stalactite nom f s 0.15 0.61 0.11 0.07 +stalactites stalactite nom f p 0.15 0.61 0.04 0.54 +stalag stalag nom m s 0.37 0.74 0.37 0.61 +stalagmite stalagmite nom f s 0.12 0.34 0.11 0.07 +stalagmites stalagmite nom f p 0.12 0.34 0.01 0.27 +stalags stalag nom m p 0.37 0.74 0.00 0.14 +stalinien stalinien adj m s 0.48 3.72 0.02 1.42 +stalinienne stalinien adj f s 0.48 3.72 0.42 1.35 +staliniennes stalinien adj f p 0.48 3.72 0.03 0.54 +staliniens stalinien nom m p 0.05 1.69 0.04 1.28 +stalinisme stalinisme nom m s 0.14 1.01 0.14 1.01 +stalinisée staliniser ver f s 0.00 0.07 0.00 0.07 par:pas; +stalino stalino adv 0.00 0.07 0.00 0.07 +stalle stalle nom f s 0.32 2.43 0.19 0.74 +stalles stalle nom f p 0.32 2.43 0.13 1.69 +stals stal nom p 0.00 0.20 0.00 0.20 +stance stance nom f s 0.25 0.41 0.25 0.00 +stances stance nom f p 0.25 0.41 0.00 0.41 +stand_by stand_by nom m 0.83 0.07 0.83 0.07 +stand stand nom m s 7.02 3.72 5.66 2.64 +standard standard adj 4.17 1.01 4.17 1.01 +standardisation standardisation nom f s 0.00 0.07 0.00 0.07 +standardiste standardiste nom s 0.56 1.55 0.53 1.28 +standardistes standardiste nom p 0.56 1.55 0.03 0.27 +standardisé standardiser ver m s 0.03 0.00 0.01 0.00 par:pas; +standardisée standardisé adj f s 0.13 0.14 0.11 0.00 +standardisées standardiser ver f p 0.03 0.00 0.01 0.00 par:pas; +standardisés standardisé adj m p 0.13 0.14 0.01 0.00 +standards standard nom m p 3.24 2.30 0.72 0.27 +standing standing nom m s 1.00 2.03 1.00 2.03 +stands stand nom m p 7.02 3.72 1.36 1.08 +staphylococcie staphylococcie nom f s 0.01 0.00 0.01 0.00 +staphylococcique staphylococcique adj m s 0.01 0.00 0.01 0.00 +staphylocoque staphylocoque nom m s 0.11 0.00 0.09 0.00 +staphylocoques staphylocoque nom m p 0.11 0.00 0.02 0.00 +star_system star_system nom m s 0.01 0.00 0.01 0.00 +star star nom f s 39.34 9.86 28.91 6.35 +starking starking nom f s 0.00 0.14 0.00 0.14 +starlette starlette nom f s 0.39 1.22 0.21 0.54 +starlettes starlette nom f p 0.39 1.22 0.18 0.68 +staroste staroste nom m s 0.60 0.14 0.60 0.14 +stars star nom f p 39.34 9.86 10.44 3.51 +start_up start_up nom f 0.35 0.00 0.35 0.00 +starter starter nom m s 1.00 0.34 1.00 0.34 +starting_gate starting_gate nom f s 0.04 0.14 0.04 0.14 +stase stase nom f s 1.23 0.07 1.23 0.07 +stat stat nom s 0.05 0.00 0.05 0.00 +state stater ver 0.58 1.69 0.57 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stater stater ver 0.58 1.69 0.01 0.00 inf; +statices statice nom m p 0.00 0.07 0.00 0.07 +station_service station_service nom f s 4.22 3.58 3.95 3.24 +station_éclair station_éclair nom f s 0.00 0.07 0.00 0.07 +station station nom f s 29.71 24.26 26.73 17.97 +stationna stationner ver 1.67 8.85 0.00 0.07 ind:pas:3s; +stationnaient stationner ver 1.67 8.85 0.00 2.03 ind:imp:3p; +stationnaire stationnaire adj s 0.64 0.41 0.64 0.41 +stationnait stationner ver 1.67 8.85 0.00 1.89 ind:imp:3s; +stationnant stationner ver 1.67 8.85 0.01 0.41 par:pre; +stationne stationner ver 1.67 8.85 0.30 0.61 imp:pre:2s;ind:pre:3s; +stationnement stationnement nom m s 1.83 2.64 1.79 2.64 +stationnements stationnement nom m p 1.83 2.64 0.04 0.00 +stationnent stationner ver 1.67 8.85 0.10 0.41 ind:pre:3p; +stationner stationner ver 1.67 8.85 0.47 0.81 inf; +stationnera stationner ver 1.67 8.85 0.01 0.07 ind:fut:3s; +stationnez stationner ver 1.67 8.85 0.07 0.00 imp:pre:2p;ind:pre:2p; +stationnions stationner ver 1.67 8.85 0.00 0.07 ind:imp:1p; +stationnèrent stationner ver 1.67 8.85 0.00 0.07 ind:pas:3p; +stationné stationner ver m s 1.67 8.85 0.41 0.68 par:pas; +stationnée stationner ver f s 1.67 8.85 0.09 0.81 par:pas; +stationnées stationner ver f p 1.67 8.85 0.14 0.61 par:pas; +stationnés stationner ver m p 1.67 8.85 0.06 0.34 par:pas; +station_service station_service nom f p 4.22 3.58 0.27 0.34 +stations station nom f p 29.71 24.26 2.98 6.28 +statique statique adj s 0.65 1.42 0.61 1.28 +statiques statique adj p 0.65 1.42 0.03 0.14 +statisticien statisticien nom m s 0.10 0.00 0.09 0.00 +statisticienne statisticien nom f s 0.10 0.00 0.01 0.00 +statistique statistique adj s 1.13 0.88 0.61 0.47 +statistiquement statistiquement adv 0.91 0.07 0.91 0.07 +statistiquer statistiquer ver 0.00 0.07 0.00 0.07 inf; +statistiques statistique nom f p 5.11 3.45 4.59 3.31 +statère statère nom m s 0.00 0.74 0.00 0.68 +statères statère nom m p 0.00 0.74 0.00 0.07 +statu_quo statu_quo nom m s 0.94 1.08 0.94 1.08 +statuaient statuer ver 0.71 1.01 0.00 0.07 ind:imp:3p; +statuaire statuaire nom s 0.00 0.88 0.00 0.88 +statuant statuer ver 0.71 1.01 0.01 0.07 par:pre; +statue statue nom f s 19.50 42.84 15.42 25.54 +statuer statuer ver 0.71 1.01 0.27 0.34 inf; +statuera statuer ver 0.71 1.01 0.02 0.07 ind:fut:3s; +statuerai statuer ver 0.71 1.01 0.01 0.00 ind:fut:1s; +statuerait statuer ver 0.71 1.01 0.00 0.07 cnd:pre:3s; +statues statue nom f p 19.50 42.84 4.08 17.30 +statuette statuette nom f s 0.54 4.93 0.37 3.45 +statuettes statuette nom f p 0.54 4.93 0.17 1.49 +statufia statufier ver 0.06 1.28 0.00 0.07 ind:pas:3s; +statufiais statufier ver 0.06 1.28 0.00 0.07 ind:imp:1s; +statufiait statufier ver 0.06 1.28 0.00 0.07 ind:imp:3s; +statufiant statufier ver 0.06 1.28 0.00 0.14 par:pre; +statufier statufier ver 0.06 1.28 0.01 0.14 inf; +statufièrent statufier ver 0.06 1.28 0.01 0.00 ind:pas:3p; +statufié statufier ver m s 0.06 1.28 0.03 0.27 par:pas; +statufiée statufier ver f s 0.06 1.28 0.00 0.41 par:pas; +statufiées statufier ver f p 0.06 1.28 0.00 0.07 par:pas; +statufiés statufier ver m p 0.06 1.28 0.01 0.07 par:pas; +stature stature nom f s 0.75 4.05 0.75 3.92 +statures stature nom f p 0.75 4.05 0.00 0.14 +staturo_pondéral staturo_pondéral adj m s 0.01 0.00 0.01 0.00 +status status nom m 0.22 0.14 0.22 0.14 +statut statut nom m s 6.13 5.74 5.66 4.66 +statutaire statutaire adj f s 0.11 0.00 0.11 0.00 +statuts statut nom m p 6.13 5.74 0.48 1.08 +statué statuer ver m s 0.71 1.01 0.19 0.00 par:pas; +stayer stayer nom m s 0.00 0.47 0.00 0.47 +steak steak nom m s 10.76 2.57 8.15 1.69 +steaks steak nom m p 10.76 2.57 2.61 0.88 +steamboat steamboat nom m s 0.04 0.00 0.04 0.00 +steamer steamer nom m s 0.06 0.27 0.05 0.20 +steamers steamer nom m p 0.06 0.27 0.01 0.07 +steeple_chase steeple_chase nom m s 0.02 0.07 0.02 0.07 +steeple steeple nom m s 0.09 0.07 0.08 0.07 +steeples steeple nom m p 0.09 0.07 0.01 0.00 +stegomya stegomya nom f s 0.00 0.07 0.00 0.07 +stellaire stellaire adj s 1.76 0.88 1.55 0.54 +stellaires stellaire adj p 1.76 0.88 0.21 0.34 +stem stem nom m s 0.00 0.07 0.00 0.07 +stencil stencil nom m s 0.01 0.07 0.01 0.07 +stendhalien stendhalien adj m s 0.00 0.07 0.00 0.07 +stendhalien stendhalien nom m s 0.00 0.07 0.00 0.07 +stentor stentor nom m s 0.04 0.88 0.04 0.81 +stentors stentor nom m p 0.04 0.88 0.00 0.07 +steppe steppe nom f s 2.78 18.65 1.57 12.97 +stepper stepper nom m s 0.09 0.00 0.07 0.00 +steppers stepper nom m p 0.09 0.00 0.01 0.00 +steppes steppe nom f p 2.78 18.65 1.21 5.68 +stercoraire stercoraire adj m s 0.00 0.07 0.00 0.07 +stercoraires stercoraire nom m p 0.00 0.07 0.00 0.07 +sterling sterling adj 0.93 0.61 0.93 0.61 +sternal sternal adj m s 0.26 0.14 0.04 0.14 +sternale sternal adj f s 0.26 0.14 0.22 0.00 +sterne sterne nom f s 0.01 0.14 0.00 0.07 +sternes sterne nom f p 0.01 0.14 0.01 0.07 +sterno_cléido_mastoïdien sterno_cléido_mastoïdien adj m s 0.01 0.00 0.01 0.00 +sternum sternum nom m s 0.97 0.81 0.97 0.81 +stetson stetson nom m s 0.21 0.07 0.21 0.07 +steward steward nom m s 0.00 1.35 0.00 1.35 +sèche_cheveux sèche_cheveux nom m 0.97 0.00 0.97 0.00 +sèche_linge sèche_linge nom m 0.74 0.00 0.74 0.00 +sèche_mains sèche_mains nom m 0.04 0.00 0.04 0.00 +sèche sec adj f s 43.02 142.84 8.72 35.00 +sèchement sèchement adv 0.35 11.55 0.35 11.55 +sèchent sécher ver 19.49 40.41 0.57 2.57 ind:pre:3p; +sèches sec adj f p 43.02 142.84 2.00 18.45 +sème semer ver 19.80 25.41 4.35 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sèment semer ver 19.80 25.41 0.94 0.54 ind:pre:3p; +sèmera semer ver 19.80 25.41 0.18 0.00 ind:fut:3s; +sèmerai semer ver 19.80 25.41 0.01 0.07 ind:fut:1s; +sèmerais semer ver 19.80 25.41 0.01 0.00 cnd:pre:2s; +sèmerait semer ver 19.80 25.41 0.06 0.14 cnd:pre:3s; +sèmeras semer ver 19.80 25.41 0.01 0.00 ind:fut:2s; +sèmerez semer ver 19.80 25.41 0.01 0.00 ind:fut:2p; +sèmerions semer ver 19.80 25.41 0.00 0.07 cnd:pre:1p; +sèmerons semer ver 19.80 25.41 0.01 0.07 ind:fut:1p; +sèmeront semer ver 19.80 25.41 0.01 0.07 ind:fut:3p; +sèmes semer ver 19.80 25.41 0.32 0.14 ind:pre:2s; +sève sève nom f s 3.19 7.91 3.19 7.03 +sèves sève nom f p 3.19 7.91 0.00 0.88 +sèvres sèvres nom m 0.01 0.07 0.01 0.07 +stick stick nom m s 0.78 0.95 0.54 0.95 +sticker sticker nom m s 0.04 0.00 0.04 0.00 +sticks stick nom m p 0.78 0.95 0.23 0.00 +stigma stigma nom m s 0.00 0.07 0.00 0.07 +stigmate stigmate nom m s 0.99 3.11 0.16 0.27 +stigmates stigmate nom m p 0.99 3.11 0.83 2.84 +stigmatisaient stigmatiser ver 0.18 0.74 0.00 0.07 ind:imp:3p; +stigmatisait stigmatiser ver 0.18 0.74 0.00 0.14 ind:imp:3s; +stigmatisant stigmatiser ver 0.18 0.74 0.01 0.20 par:pre; +stigmatiser stigmatiser ver 0.18 0.74 0.01 0.14 inf; +stigmatisé stigmatiser ver m s 0.18 0.74 0.02 0.00 par:pas; +stigmatisée stigmatiser ver f s 0.18 0.74 0.14 0.14 par:pas; +stigmatisés stigmatisé adj m p 0.06 0.07 0.05 0.00 +stilton stilton nom m s 0.04 0.20 0.04 0.20 +stimula stimuler ver 4.60 4.05 0.00 0.14 ind:pas:3s; +stimulaient stimuler ver 4.60 4.05 0.01 0.07 ind:imp:3p; +stimulait stimuler ver 4.60 4.05 0.03 0.41 ind:imp:3s; +stimulant stimulant nom m s 1.81 0.47 1.47 0.27 +stimulante stimulant adj f s 1.97 1.55 0.33 0.41 +stimulantes stimulant adj f p 1.97 1.55 0.04 0.07 +stimulants stimulant nom m p 1.81 0.47 0.35 0.20 +stimulateur stimulateur nom m s 0.42 0.00 0.42 0.00 +stimulation stimulation nom f s 1.29 0.27 1.23 0.27 +stimulations stimulation nom f p 1.29 0.27 0.05 0.00 +stimule stimuler ver 4.60 4.05 1.58 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stimulent stimuler ver 4.60 4.05 0.08 0.20 ind:pre:3p; +stimuler stimuler ver 4.60 4.05 1.45 1.22 inf; +stimulera stimuler ver 4.60 4.05 0.09 0.00 ind:fut:3s; +stimulerait stimuler ver 4.60 4.05 0.12 0.07 cnd:pre:3s; +stimuleront stimuler ver 4.60 4.05 0.02 0.00 ind:fut:3p; +stimulez stimuler ver 4.60 4.05 0.01 0.00 imp:pre:2p; +stimuli stimulus nom m p 0.84 0.14 0.45 0.00 +stimulons stimuler ver 4.60 4.05 0.02 0.00 imp:pre:1p;ind:pre:1p; +stimulé stimuler ver m s 4.60 4.05 0.66 0.41 par:pas; +stimulée stimuler ver f s 4.60 4.05 0.09 0.27 par:pas; +stimulées stimuler ver f p 4.60 4.05 0.03 0.07 par:pas; +stimulus_réponse stimulus_réponse nom m 0.00 0.14 0.00 0.14 +stimulés stimuler ver m p 4.60 4.05 0.16 0.20 par:pas; +stimulus stimulus nom m 0.84 0.14 0.39 0.14 +stipendiés stipendier ver m p 0.00 0.14 0.00 0.14 par:pas; +stipes stipe nom m p 0.01 0.07 0.01 0.07 +stipulait stipuler ver 1.81 0.54 0.21 0.00 ind:imp:3s; +stipulant stipuler ver 1.81 0.54 0.10 0.27 par:pre; +stipulation stipulation nom f s 0.02 0.20 0.01 0.00 +stipulations stipulation nom f p 0.02 0.20 0.01 0.20 +stipule stipuler ver 1.81 0.54 0.98 0.20 imp:pre:2s;ind:pre:3s; +stipulent stipuler ver 1.81 0.54 0.14 0.00 ind:pre:3p; +stipuler stipuler ver 1.81 0.54 0.03 0.00 inf; +stipulé stipuler ver m s 1.81 0.54 0.29 0.07 par:pas; +stipulée stipuler ver f s 1.81 0.54 0.01 0.00 par:pas; +stipulées stipuler ver f p 1.81 0.54 0.03 0.00 par:pas; +stipulés stipuler ver m p 1.81 0.54 0.01 0.00 par:pas; +stoïcien stoïcien adj m s 0.01 0.34 0.01 0.34 +stoïciens stoïcien nom m p 0.01 0.61 0.01 0.41 +stoïcisme stoïcisme nom m s 0.07 0.61 0.07 0.61 +stoïque stoïque adj s 0.39 0.95 0.35 0.88 +stoïquement stoïquement adv 0.00 0.27 0.00 0.27 +stoïques stoïque adj p 0.39 0.95 0.03 0.07 +stochastique stochastique adj m s 0.01 0.00 0.01 0.00 +stock_car stock_car nom m s 0.19 0.14 0.16 0.14 +stock_car stock_car nom m p 0.19 0.14 0.03 0.00 +stock_option stock_option nom f p 0.18 0.00 0.18 0.00 +stock stock nom m s 5.66 7.91 4.23 4.80 +stockage stockage nom m s 1.33 0.47 1.32 0.41 +stockages stockage nom m p 1.33 0.47 0.01 0.07 +stockaient stocker ver 3.54 1.15 0.07 0.07 ind:imp:3p; +stockait stocker ver 3.54 1.15 0.06 0.20 ind:imp:3s; +stocke stocker ver 3.54 1.15 0.48 0.00 ind:pre:1s;ind:pre:3s; +stockent stocker ver 3.54 1.15 0.20 0.14 ind:pre:3p; +stocker stocker ver 3.54 1.15 1.22 0.14 inf; +stockez stocker ver 3.54 1.15 0.17 0.00 imp:pre:2p;ind:pre:2p; +stockons stocker ver 3.54 1.15 0.04 0.00 imp:pre:1p;ind:pre:1p; +stocks stock nom m p 5.66 7.91 1.44 3.11 +stocké stocker ver m s 3.54 1.15 0.31 0.27 par:pas; +stockée stocker ver f s 3.54 1.15 0.24 0.00 par:pas; +stockées stocker ver f p 3.54 1.15 0.50 0.14 par:pas; +stockés stocker ver m p 3.54 1.15 0.24 0.20 par:pas; +stoker stoker nom m s 0.65 0.00 0.65 0.00 +stokes stokes nom m 0.10 0.00 0.10 0.00 +stomacal stomacal adj m s 0.06 0.61 0.03 0.27 +stomacale stomacal adj f s 0.06 0.61 0.03 0.14 +stomacales stomacal adj f p 0.06 0.61 0.00 0.14 +stomacaux stomacal adj m p 0.06 0.61 0.00 0.07 +stomates stomate nom m p 0.01 0.00 0.01 0.00 +stomie stomie nom f s 0.02 0.00 0.02 0.00 +stomoxys stomoxys nom m 0.27 0.00 0.27 0.00 +stone stone adj s 2.06 2.16 1.11 0.34 +stones stone adj p 2.06 2.16 0.94 1.82 +stop stop nom m s 44.50 6.76 44.36 6.49 +stoppa stopper ver 9.46 15.61 0.11 2.36 ind:pas:3s; +stoppage stoppage nom m s 0.00 0.14 0.00 0.14 +stoppai stopper ver 9.46 15.61 0.00 0.07 ind:pas:1s; +stoppaient stopper ver 9.46 15.61 0.00 0.20 ind:imp:3p; +stoppais stopper ver 9.46 15.61 0.00 0.07 ind:imp:1s; +stoppait stopper ver 9.46 15.61 0.01 0.68 ind:imp:3s; +stoppant stopper ver 9.46 15.61 0.01 0.34 par:pre; +stoppe stopper ver 9.46 15.61 0.54 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stoppent stopper ver 9.46 15.61 0.06 0.14 ind:pre:3p; +stopper stopper ver 9.46 15.61 4.88 3.11 inf; +stoppera stopper ver 9.46 15.61 0.09 0.00 ind:fut:3s; +stopperai stopper ver 9.46 15.61 0.02 0.00 ind:fut:1s; +stopperiez stopper ver 9.46 15.61 0.01 0.00 cnd:pre:2p; +stoppes stopper ver 9.46 15.61 0.01 0.14 ind:pre:2s; +stoppeur stoppeur nom m s 0.07 0.14 0.04 0.07 +stoppeurs stoppeur nom m p 0.07 0.14 0.02 0.00 +stoppeuse stoppeur nom f s 0.07 0.14 0.00 0.07 +stoppez stopper ver 9.46 15.61 1.33 0.00 imp:pre:2p;ind:pre:2p; +stoppions stopper ver 9.46 15.61 0.01 0.07 ind:imp:1p; +stoppons stopper ver 9.46 15.61 0.08 0.00 imp:pre:1p;ind:pre:1p; +stoppât stopper ver 9.46 15.61 0.00 0.07 sub:imp:3s; +stoppèrent stopper ver 9.46 15.61 0.10 0.61 ind:pas:3p; +stoppé stopper ver m s 9.46 15.61 1.60 3.38 par:pas; +stoppée stopper ver f s 9.46 15.61 0.44 0.74 par:pas; +stoppées stopper ver f p 9.46 15.61 0.03 0.20 par:pas; +stoppés stopper ver m p 9.46 15.61 0.13 0.54 par:pas; +stops stop nom m p 44.50 6.76 0.14 0.27 +storage storage nom m s 0.01 0.00 0.01 0.00 +store store nom m s 3.59 7.09 1.35 4.12 +stores store nom m p 3.59 7.09 2.23 2.97 +story_board story_board nom m s 0.28 0.07 0.23 0.00 +story_board story_board nom m p 0.28 0.07 0.03 0.00 +story_board story_board nom m s 0.28 0.07 0.03 0.07 +stout stout nom m s 0.45 0.14 0.45 0.14 +strabisme strabisme nom m s 0.02 0.95 0.02 0.88 +strabismes strabisme nom m p 0.02 0.95 0.00 0.07 +stradivarius stradivarius nom m 0.04 0.07 0.04 0.07 +straight straight adj s 0.40 0.14 0.40 0.14 +stramoine stramoine nom f s 0.01 0.00 0.01 0.00 +stramonium stramonium nom m s 0.04 0.00 0.04 0.00 +strangula stranguler ver 0.02 0.47 0.01 0.07 ind:pas:3s; +strangulant stranguler ver 0.02 0.47 0.00 0.14 par:pre; +strangulation strangulation nom f s 1.28 0.68 1.28 0.68 +stranguler stranguler ver 0.02 0.47 0.00 0.07 inf; +strangulé stranguler ver m s 0.02 0.47 0.00 0.20 par:pas; +strangulées stranguler ver f p 0.02 0.47 0.01 0.00 par:pas; +strapontin strapontin nom m s 0.18 1.89 0.16 1.35 +strapontins strapontin nom m p 0.18 1.89 0.03 0.54 +strasbourgeois strasbourgeois adj m s 0.14 0.54 0.14 0.47 +strasbourgeoise strasbourgeois adj f s 0.14 0.54 0.00 0.07 +strass strass nom m 0.21 1.69 0.21 1.69 +strasse strasse nom f s 0.39 0.20 0.39 0.20 +stratagème stratagème nom m s 1.89 1.76 1.54 1.35 +stratagèmes stratagème nom m p 1.89 1.76 0.34 0.41 +strate strate nom f s 0.34 0.47 0.17 0.00 +strates strate nom f p 0.34 0.47 0.17 0.47 +stratification stratification nom f s 0.01 0.41 0.01 0.14 +stratifications stratification nom f p 0.01 0.41 0.00 0.27 +stratifié stratifié adj m s 0.04 0.54 0.04 0.41 +stratifiée stratifier ver f s 0.01 0.00 0.01 0.00 par:pas; +stratifiées stratifié adj f p 0.04 0.54 0.00 0.07 +stratigraphique stratigraphique adj s 0.00 0.07 0.00 0.07 +stratosphère stratosphère nom f s 0.62 0.68 0.62 0.68 +stratosphérique stratosphérique adj m s 0.02 0.14 0.02 0.07 +stratosphériques stratosphérique adj f p 0.02 0.14 0.00 0.07 +stratège stratège nom m s 1.31 1.62 1.11 1.01 +stratèges stratège nom m p 1.31 1.62 0.20 0.61 +stratégie stratégie nom f s 9.80 7.23 8.96 6.89 +stratégies stratégie nom f p 9.80 7.23 0.84 0.34 +stratégique stratégique adj s 3.21 10.14 2.26 6.96 +stratégiquement stratégiquement adv 0.30 0.54 0.30 0.54 +stratégiques stratégique adj p 3.21 10.14 0.95 3.18 +stratégiste stratégiste nom s 0.01 0.00 0.01 0.00 +stratus stratus nom m 0.01 0.00 0.01 0.00 +strelitzia strelitzia nom m s 0.01 0.00 0.01 0.00 +streptococcie streptococcie nom f s 0.01 0.00 0.01 0.00 +streptococcique streptococcique adj f s 0.01 0.00 0.01 0.00 +streptocoque streptocoque nom m s 0.18 0.07 0.18 0.07 +streptokinase streptokinase nom f s 0.01 0.00 0.01 0.00 +streptomycine streptomycine nom f s 0.04 0.14 0.04 0.14 +stress stress nom m 10.85 0.41 10.85 0.41 +stressais stresser ver 7.34 0.34 0.11 0.00 ind:imp:1s; +stressait stresser ver 7.34 0.34 0.02 0.00 ind:imp:3s; +stressant stressant adj m s 1.81 0.00 1.16 0.00 +stressante stressant adj f s 1.81 0.00 0.45 0.00 +stressantes stressant adj f p 1.81 0.00 0.13 0.00 +stressants stressant adj m p 1.81 0.00 0.07 0.00 +stresse stresser ver 7.34 0.34 1.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stressent stresser ver 7.34 0.34 0.13 0.00 ind:pre:3p; +stresser stresser ver 7.34 0.34 0.75 0.00 inf; +stressera stresser ver 7.34 0.34 0.01 0.00 ind:fut:3s; +stresserai stresser ver 7.34 0.34 0.01 0.00 ind:fut:1s; +stressé stresser ver m s 7.34 0.34 2.94 0.14 par:pas; +stressée stresser ver f s 7.34 0.34 1.81 0.14 par:pas; +stressées stresser ver f p 7.34 0.34 0.07 0.00 par:pas; +stressés stresser ver m p 7.34 0.34 0.35 0.07 par:pas; +stretch stretch nom m s 0.29 0.20 0.29 0.20 +stretching stretching nom m s 0.28 0.00 0.28 0.00 +striaient strier ver 0.03 4.26 0.01 0.20 ind:imp:3p; +striait strier ver 0.03 4.26 0.00 0.27 ind:imp:3s; +striations striation nom f p 0.09 0.00 0.09 0.00 +strict strict adj m s 7.66 14.39 3.36 7.03 +stricte strict adj f s 7.66 14.39 2.58 5.27 +strictement strictement adv 4.95 7.91 4.95 7.91 +strictes strict adj f p 7.66 14.39 1.18 1.22 +stricto_sensu stricto_sensu adv 0.01 0.00 0.01 0.00 +stricts strict adj m p 7.66 14.39 0.54 0.88 +stridence stridence nom f s 0.01 1.96 0.01 0.95 +stridences stridence nom f p 0.01 1.96 0.00 1.01 +strident strident adj m s 0.74 7.30 0.40 3.04 +stridente strident adj f s 0.74 7.30 0.14 1.15 +stridentes strident adj f p 0.74 7.30 0.02 1.01 +stridents strident adj m p 0.74 7.30 0.19 2.09 +strider strider ver 0.12 0.00 0.12 0.00 inf; +stridor stridor nom m s 0.04 0.00 0.04 0.00 +stridulait striduler ver 0.00 0.20 0.00 0.07 ind:imp:3s; +stridulation stridulation nom f s 0.16 0.27 0.02 0.14 +stridulations stridulation nom f p 0.16 0.27 0.14 0.14 +stridule striduler ver 0.00 0.20 0.00 0.07 ind:pre:3s; +striduler striduler ver 0.00 0.20 0.00 0.07 inf; +striduleuse striduleux adj f s 0.00 0.07 0.00 0.07 +strie strie nom f s 0.73 1.82 0.05 0.07 +strient strier ver 0.03 4.26 0.00 0.07 ind:pre:3p; +strier strier ver 0.03 4.26 0.00 0.14 inf; +stries strie nom f p 0.73 1.82 0.68 1.76 +string string nom m s 3.90 0.34 2.59 0.34 +strings string nom m p 3.90 0.34 1.31 0.00 +strip_poker strip_poker nom m s 0.08 0.07 0.08 0.07 +strip_tease strip_tease nom m s 4.04 1.01 3.63 0.95 +strip_tease strip_tease nom m p 4.04 1.01 0.41 0.07 +strip_teaseur strip_teaseur nom m s 3.23 0.47 0.11 0.00 +strip_teaseur strip_teaseur nom m p 3.23 0.47 0.14 0.00 +strip_teaseur strip_teaseur nom f s 3.23 0.47 2.98 0.27 +strip_teaseuse strip_teaseuse nom f p 0.79 0.00 0.79 0.00 +strip strip nom m s 2.44 0.27 2.44 0.27 +stripper stripper ver 0.01 0.00 0.01 0.00 inf; +striptease striptease nom m s 0.60 0.00 0.60 0.00 +stripteaseuse stripteaseur nom f s 0.26 0.20 0.26 0.14 +stripteaseuses stripteaseuse nom f p 0.19 0.00 0.19 0.00 +strié strié adj m s 0.06 0.74 0.03 0.14 +striée strier ver f s 0.03 4.26 0.01 0.81 par:pas; +striées strié adj f p 0.06 0.74 0.01 0.14 +striures striure nom f p 0.05 0.41 0.05 0.41 +striés strié adj m p 0.06 0.74 0.01 0.20 +stroboscope stroboscope nom m s 0.05 0.00 0.05 0.00 +stroboscopique stroboscopique adj m s 0.10 0.00 0.10 0.00 +strontiane strontiane nom f s 0.00 0.07 0.00 0.07 +strontium strontium nom m s 0.06 0.07 0.06 0.07 +strophe strophe nom f s 0.30 2.16 0.26 0.81 +strophes strophe nom f p 0.30 2.16 0.04 1.35 +stropiats stropiat nom m p 0.00 0.68 0.00 0.68 +structura structurer ver 0.51 1.22 0.00 0.47 ind:pas:3s; +structuraient structurer ver 0.51 1.22 0.00 0.07 ind:imp:3p; +structurait structurer ver 0.51 1.22 0.00 0.14 ind:imp:3s; +structural structural adj m s 0.06 0.27 0.00 0.20 +structurale structural adj f s 0.06 0.27 0.04 0.07 +structuralement structuralement adv 0.00 0.07 0.00 0.07 +structurales structural adj f p 0.06 0.27 0.01 0.00 +structuralisme structuralisme nom m s 0.00 0.14 0.00 0.14 +structuraliste structuraliste adj s 0.01 0.07 0.01 0.00 +structuralistes structuraliste adj m p 0.01 0.07 0.00 0.07 +structurant structurer ver 0.51 1.22 0.01 0.00 par:pre; +structurations structuration nom f p 0.00 0.07 0.00 0.07 +structuraux structural adj m p 0.06 0.27 0.01 0.00 +structure structure nom f s 8.74 7.70 7.81 5.88 +structurel structurel adj m s 0.59 0.00 0.12 0.00 +structurelle structurel adj f s 0.59 0.00 0.27 0.00 +structurellement structurellement adv 0.05 0.00 0.05 0.00 +structurels structurel adj m p 0.59 0.00 0.20 0.00 +structurent structurer ver 0.51 1.22 0.00 0.14 ind:pre:3p; +structurer structurer ver 0.51 1.22 0.14 0.00 inf; +structures structure nom f p 8.74 7.70 0.93 1.82 +structuré structurer ver m s 0.51 1.22 0.29 0.27 par:pas; +structurée structuré adj f s 0.25 0.54 0.07 0.07 +structurés structuré adj m p 0.25 0.54 0.14 0.00 +strudel strudel nom m s 0.46 0.41 0.37 0.07 +strudels strudel nom m p 0.46 0.41 0.09 0.34 +struggle_for_life struggle_for_life nom m 0.00 0.07 0.00 0.07 +strychnine strychnine nom f s 0.74 0.20 0.74 0.20 +strychnos strychnos nom m 0.01 0.00 0.01 0.00 +stryges stryge nom f p 0.00 0.07 0.00 0.07 +stèle stèle nom f s 0.35 2.57 0.31 1.49 +stèles stèle nom f p 0.35 2.57 0.04 1.08 +stère stère nom m s 0.04 0.61 0.01 0.14 +stères stère nom m p 0.04 0.61 0.03 0.47 +stéarate stéarate nom m s 0.01 0.00 0.01 0.00 +stéarique stéarique adj s 0.01 0.00 0.01 0.00 +stéatopyges stéatopyge adj m p 0.00 0.07 0.00 0.07 +stuc stuc nom m s 0.16 1.89 0.15 1.55 +stucs stuc nom m p 0.16 1.89 0.01 0.34 +studette studette nom f s 0.00 0.07 0.00 0.07 +studieuse studieux adj f s 0.67 4.05 0.09 1.42 +studieusement studieusement adv 0.00 0.27 0.00 0.27 +studieuses studieux adj f p 0.67 4.05 0.04 0.81 +studieux studieux adj m 0.67 4.05 0.54 1.82 +studio studio nom m s 27.77 22.09 20.95 18.85 +studiolo studiolo nom m s 0.01 0.00 0.01 0.00 +studios studio nom m p 27.77 22.09 6.82 3.24 +stégosaure stégosaure nom m s 0.06 0.00 0.06 0.00 +stuka stuka nom m s 0.05 1.15 0.02 0.34 +stukas stuka nom m p 0.05 1.15 0.03 0.81 +sténo sténo nom s 0.86 0.61 0.80 0.54 +sténodactylo sténodactylo nom s 0.02 0.14 0.02 0.14 +sténodactylographie sténodactylographie nom f s 0.00 0.07 0.00 0.07 +sténographe sténographe nom s 0.08 0.00 0.08 0.00 +sténographiai sténographier ver 0.00 0.07 0.00 0.07 ind:pas:1s; +sténographie sténographie nom f s 0.32 0.14 0.32 0.14 +sténographique sténographique adj m s 0.02 0.07 0.02 0.00 +sténographiques sténographique adj m p 0.02 0.07 0.00 0.07 +sténopé sténopé nom m s 0.07 0.14 0.07 0.07 +sténopés sténopé nom m p 0.07 0.14 0.00 0.07 +sténos sténo nom p 0.86 0.61 0.06 0.07 +sténose sténose nom f s 0.07 0.00 0.07 0.00 +sténotype sténotype nom f s 0.01 0.00 0.01 0.00 +sténotypiste sténotypiste nom s 0.02 0.07 0.02 0.00 +sténotypistes sténotypiste nom p 0.02 0.07 0.00 0.07 +stup stups nom m s 2.47 0.20 0.20 0.00 +stupas stupa nom m p 0.00 0.07 0.00 0.07 +stupeur stupeur nom f s 1.57 24.05 1.57 24.05 +stéphanois stéphanois nom m 0.27 0.14 0.27 0.14 +stupide stupide adj s 71.75 27.50 60.06 21.76 +stupidement stupidement adv 0.82 5.07 0.82 5.07 +stupides stupide adj p 71.75 27.50 11.70 5.74 +stupidité stupidité nom f s 3.63 3.31 2.98 2.77 +stupidités stupidité nom f p 3.63 3.31 0.65 0.54 +stuporeuse stuporeux adj f s 0.00 0.07 0.00 0.07 +stupre stupre nom m s 0.14 0.81 0.14 0.81 +stups stups nom m p 2.47 0.20 2.26 0.20 +stupéfaction stupéfaction nom f s 0.36 8.04 0.36 8.04 +stupéfait stupéfait adj m s 2.25 14.73 1.43 8.24 +stupéfaite stupéfait adj f s 2.25 14.73 0.48 4.05 +stupéfaites stupéfait adj f p 2.25 14.73 0.00 0.14 +stupéfaits stupéfait adj m p 2.25 14.73 0.34 2.30 +stupéfia stupéfier ver 0.98 5.07 0.02 0.54 ind:pas:3s; +stupéfiaient stupéfier ver 0.98 5.07 0.00 0.07 ind:imp:3p; +stupéfiait stupéfier ver 0.98 5.07 0.00 1.08 ind:imp:3s; +stupéfiant stupéfiant adj m s 2.80 6.49 1.77 2.36 +stupéfiante stupéfiant adj f s 2.80 6.49 0.60 3.58 +stupéfiantes stupéfiant adj f p 2.80 6.49 0.09 0.34 +stupéfiants stupéfiant nom m p 2.69 0.88 1.54 0.47 +stupéfie stupéfier ver 0.98 5.07 0.22 0.68 ind:pre:3s; +stupéfient stupéfier ver 0.98 5.07 0.04 0.14 ind:pre:3p; +stupéfier stupéfier ver 0.98 5.07 0.15 0.20 inf; +stupéfierait stupéfier ver 0.98 5.07 0.00 0.07 cnd:pre:3s; +stupéfiez stupéfier ver 0.98 5.07 0.04 0.00 ind:pre:2p; +stupéfié stupéfier ver m s 0.98 5.07 0.26 1.55 par:pas; +stupéfiée stupéfier ver f s 0.98 5.07 0.11 0.54 par:pas; +stupéfiées stupéfier ver f p 0.98 5.07 0.10 0.07 par:pas; +stupéfiés stupéfier ver m p 0.98 5.07 0.01 0.07 par:pas; +stérile stérile adj s 7.07 11.69 5.59 9.59 +stérilement stérilement adv 0.00 0.20 0.00 0.20 +stériles stérile adj p 7.07 11.69 1.48 2.09 +stérilet stérilet nom m s 0.11 0.61 0.11 0.61 +stérilisa stériliser ver 1.49 0.81 0.00 0.07 ind:pas:3s; +stérilisait stériliser ver 1.49 0.81 0.00 0.07 ind:imp:3s; +stérilisant stériliser ver 1.49 0.81 0.02 0.00 par:pre; +stérilisante stérilisant adj f s 0.01 0.14 0.00 0.07 +stérilisantes stérilisant adj f p 0.01 0.14 0.00 0.07 +stérilisateur stérilisateur nom m s 0.18 0.00 0.18 0.00 +stérilisation stérilisation nom f s 0.37 0.07 0.37 0.00 +stérilisations stérilisation nom f p 0.37 0.07 0.00 0.07 +stérilise stériliser ver 1.49 0.81 0.22 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stérilisent stériliser ver 1.49 0.81 0.04 0.00 ind:pre:3p; +stériliser stériliser ver 1.49 0.81 0.76 0.27 inf; +stérilisez stériliser ver 1.49 0.81 0.17 0.00 imp:pre:2p;ind:pre:2p; +stérilisé stériliser ver m s 1.49 0.81 0.17 0.20 par:pas; +stérilisée stérilisé adj f s 0.23 0.41 0.06 0.34 +stérilisées stériliser ver f p 1.49 0.81 0.02 0.07 par:pas; +stérilisés stériliser ver m p 1.49 0.81 0.06 0.00 par:pas; +stérilité stérilité nom f s 1.09 2.91 1.09 2.91 +stéroïde stéroïde adj m s 2.00 0.00 0.13 0.00 +stéroïdes stéroïde adj p 2.00 0.00 1.88 0.00 +stéréo stéréo nom f s 2.51 1.15 2.47 1.15 +stéréophonie stéréophonie nom f s 0.01 0.27 0.01 0.27 +stéréophonique stéréophonique adj m s 0.04 0.14 0.04 0.14 +stéréos stéréo nom f p 2.51 1.15 0.04 0.00 +stéréoscope stéréoscope nom m s 0.01 0.27 0.01 0.27 +stéréoscopie stéréoscopie nom f s 0.00 0.07 0.00 0.07 +stéréoscopique stéréoscopique adj s 0.02 0.20 0.02 0.20 +stéréotype stéréotype nom m s 0.54 1.22 0.23 0.54 +stéréotyper stéréotyper ver 0.05 0.61 0.01 0.00 inf; +stéréotypes stéréotype nom m p 0.54 1.22 0.31 0.68 +stéréotypie stéréotypie nom f s 0.00 0.07 0.00 0.07 +stéréotypé stéréotypé adj m s 0.16 0.68 0.03 0.20 +stéréotypée stéréotypé adj f s 0.16 0.68 0.01 0.20 +stéréotypées stéréotyper ver f p 0.05 0.61 0.02 0.07 par:pas; +stéréotypés stéréotypé adj m p 0.16 0.68 0.11 0.14 +stéthoscope stéthoscope nom m s 0.50 0.68 0.48 0.54 +stéthoscopes stéthoscope nom m p 0.50 0.68 0.02 0.14 +stygien stygien adj m s 0.01 0.00 0.01 0.00 +style style nom m s 32.34 46.62 31.08 45.14 +styler styler ver 0.29 1.55 0.04 0.00 inf; +styles style nom m p 32.34 46.62 1.26 1.49 +stylet stylet nom m s 0.07 0.74 0.07 0.61 +stylets stylet nom m p 0.07 0.74 0.00 0.14 +stylisa styliser ver 0.44 1.96 0.00 0.07 ind:pas:3s; +stylisation stylisation nom f s 0.01 0.00 0.01 0.00 +stylise styliser ver 0.44 1.96 0.02 0.07 ind:pre:1s;ind:pre:3s; +stylisme stylisme nom m s 0.23 0.07 0.23 0.07 +styliste styliste nom s 1.34 0.54 1.17 0.34 +stylistes styliste nom p 1.34 0.54 0.17 0.20 +stylistique stylistique adj m s 0.11 0.20 0.11 0.14 +stylistiques stylistique adj p 0.11 0.20 0.00 0.07 +stylisé styliser ver m s 0.44 1.96 0.30 0.74 par:pas; +stylisée styliser ver f s 0.44 1.96 0.12 0.41 par:pas; +stylisées styliser ver f p 0.44 1.96 0.00 0.34 par:pas; +stylisés styliser ver m p 0.44 1.96 0.00 0.34 par:pas; +stylite stylite nom m s 0.00 0.27 0.00 0.27 +stylo_bille stylo_bille nom m s 0.17 0.14 0.17 0.14 +stylo_feutre stylo_feutre nom m s 0.00 0.27 0.00 0.14 +stylo stylo nom m s 17.73 12.77 15.34 10.61 +styloïde styloïde adj s 0.01 0.00 0.01 0.00 +stylobille stylobille nom m s 0.00 0.27 0.00 0.27 +stylographe stylographe nom m s 0.01 0.47 0.01 0.41 +stylographes stylographe nom m p 0.01 0.47 0.00 0.07 +stylomine stylomine nom m s 0.00 0.54 0.00 0.54 +stylo_feutre stylo_feutre nom m p 0.00 0.27 0.00 0.14 +stylos stylo nom m p 17.73 12.77 2.39 2.16 +stylé stylé adj m s 0.20 0.88 0.11 0.54 +stylée stylé adj f s 0.20 0.88 0.05 0.27 +stylées stylé adj f p 0.20 0.88 0.01 0.07 +stylés stylé adj m p 0.20 0.88 0.03 0.00 +styrax styrax nom m 0.00 0.07 0.00 0.07 +styrène styrène nom m s 0.04 0.00 0.04 0.00 +su savoir ver_sup m s 4516.72 2003.58 83.37 77.64 par:pas; +sua suer ver 7.28 10.34 0.00 0.47 ind:pas:3s; +suaient suer ver 7.28 10.34 0.00 0.41 ind:imp:3p; +suaire suaire nom m s 0.30 2.64 0.28 1.82 +suaires suaire nom m p 0.30 2.64 0.02 0.81 +suais suer ver 7.28 10.34 0.07 0.54 ind:imp:1s; +suait suer ver 7.28 10.34 0.04 2.09 ind:imp:3s; +séance séance nom f s 22.91 32.36 18.49 22.30 +séances séance nom f p 22.91 32.36 4.43 10.07 +suant suant adj m s 0.25 2.43 0.20 1.15 +séant séant nom m s 0.04 1.42 0.04 1.42 +suante suant adj f s 0.25 2.43 0.02 0.34 +séante séant adj f s 0.04 0.27 0.01 0.00 +suantes suant adj f p 0.25 2.43 0.01 0.20 +suants suant adj m p 0.25 2.43 0.02 0.74 +suave suave adj s 1.11 7.43 0.94 5.47 +suavement suavement adv 0.01 0.61 0.01 0.61 +suaves suave adj p 1.11 7.43 0.17 1.96 +suavité suavité nom f s 0.02 1.55 0.02 1.55 +sub_aquatique sub_aquatique adj f s 0.00 0.07 0.00 0.07 +sub_atomique sub_atomique adj s 0.07 0.00 0.04 0.00 +sub_atomique sub_atomique adj p 0.07 0.00 0.04 0.00 +sub_claquant sub_claquant adj m s 0.01 0.00 0.01 0.00 +sub_espace sub_espace nom m s 0.08 0.00 0.08 0.00 +sub_normaux sub_normaux adj m p 0.14 0.00 0.14 0.00 +sub_nucléaire sub_nucléaire adj f p 0.01 0.00 0.01 0.00 +sub_vocal sub_vocal adj m s 0.01 0.07 0.01 0.07 +sub_véhiculaire sub_véhiculaire adj s 0.01 0.00 0.01 0.00 +sub_zéro sub_zéro nom m s 0.01 0.00 0.01 0.00 +sub sub adv 0.22 0.20 0.22 0.20 +subît subir ver 30.13 53.72 0.00 0.07 sub:imp:3s; +subîtes subir ver 30.13 53.72 0.00 0.07 ind:pas:2p; +sébacé sébacé adj m s 0.10 0.14 0.05 0.00 +sébacée sébacé adj f s 0.10 0.14 0.01 0.00 +sébacées sébacé adj f p 0.10 0.14 0.04 0.14 +subaiguë subaigu adj f s 0.01 0.00 0.01 0.00 +subalterne subalterne nom s 0.42 1.49 0.28 0.47 +subalternes subalterne adj p 0.58 2.36 0.46 1.42 +subaquatique subaquatique adj s 0.03 0.00 0.03 0.00 +sébaste sébaste nom m s 0.01 0.00 0.01 0.00 +subatomique subatomique adj s 0.33 0.00 0.13 0.00 +subatomiques subatomique adj p 0.33 0.00 0.19 0.00 +subcarpatique subcarpatique adj f s 0.00 0.07 0.00 0.07 +subcellulaire subcellulaire adj s 0.02 0.00 0.02 0.00 +subconsciemment subconsciemment adv 0.04 0.00 0.04 0.00 +subconscient subconscient nom m s 2.17 1.28 2.16 1.28 +subconsciente subconscient adj f s 0.27 0.34 0.04 0.00 +subconscientes subconscient adj f p 0.27 0.34 0.00 0.14 +subconscients subconscient nom m p 2.17 1.28 0.01 0.00 +subculture subculture nom f s 0.02 0.00 0.02 0.00 +subdivisa subdiviser ver 0.02 0.41 0.00 0.07 ind:pas:3s; +subdivisaient subdiviser ver 0.02 0.41 0.00 0.07 ind:imp:3p; +subdivisait subdiviser ver 0.02 0.41 0.00 0.14 ind:imp:3s; +subdivisent subdiviser ver 0.02 0.41 0.00 0.07 ind:pre:3p; +subdivision subdivision nom f s 0.16 0.47 0.06 0.34 +subdivisions subdivision nom f p 0.16 0.47 0.10 0.14 +subdivisé subdiviser ver m s 0.02 0.41 0.01 0.00 par:pas; +subdivisée subdiviser ver f s 0.02 0.41 0.01 0.00 par:pas; +subdivisés subdiviser ver m p 0.02 0.41 0.00 0.07 par:pas; +subduction subduction nom f s 0.04 0.00 0.04 0.00 +suber suber nom m s 0.01 0.00 0.01 0.00 +subi subir ver m s 30.13 53.72 10.22 10.81 par:pas; +subie subir ver f s 30.13 53.72 0.10 1.28 par:pas; +subies subir ver f p 30.13 53.72 0.40 2.50 par:pas; +sébile sébile nom f s 0.04 0.47 0.04 0.41 +sébiles sébile nom f p 0.04 0.47 0.01 0.07 +subir subir ver 30.13 53.72 10.64 21.28 inf; +subira subir ver 30.13 53.72 0.68 0.34 ind:fut:3s; +subirai subir ver 30.13 53.72 0.12 0.07 ind:fut:1s; +subiraient subir ver 30.13 53.72 0.04 0.14 cnd:pre:3p; +subirais subir ver 30.13 53.72 0.02 0.07 cnd:pre:1s; +subirait subir ver 30.13 53.72 0.04 0.14 cnd:pre:3s; +subiras subir ver 30.13 53.72 0.17 0.00 ind:fut:2s; +subirent subir ver 30.13 53.72 0.12 0.20 ind:pas:3p; +subirez subir ver 30.13 53.72 0.67 0.14 ind:fut:2p; +subirions subir ver 30.13 53.72 0.00 0.07 cnd:pre:1p; +subirons subir ver 30.13 53.72 0.16 0.20 ind:fut:1p; +subiront subir ver 30.13 53.72 0.26 0.27 ind:fut:3p; +subis subir ver m p 30.13 53.72 1.59 2.09 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +subissaient subir ver 30.13 53.72 0.01 1.35 ind:imp:3p; +subissais subir ver 30.13 53.72 0.04 1.01 ind:imp:1s;ind:imp:2s; +subissait subir ver 30.13 53.72 0.54 4.46 ind:imp:3s; +subissant subir ver 30.13 53.72 0.10 1.01 par:pre; +subisse subir ver 30.13 53.72 0.31 0.41 sub:pre:1s;sub:pre:3s; +subissent subir ver 30.13 53.72 1.13 1.82 ind:pre:3p; +subisses subir ver 30.13 53.72 0.05 0.00 sub:pre:2s; +subissez subir ver 30.13 53.72 0.25 0.20 imp:pre:2p;ind:pre:2p; +subissiez subir ver 30.13 53.72 0.04 0.00 ind:imp:2p; +subissions subir ver 30.13 53.72 0.10 0.07 ind:imp:1p; +subissons subir ver 30.13 53.72 0.26 0.27 imp:pre:1p;ind:pre:1p; +subit subir ver 30.13 53.72 2.07 3.38 ind:pre:3s; +subite subit adj f s 3.06 16.49 1.45 9.19 +subitement subitement adv 4.39 15.54 4.39 15.54 +subites subit adj f p 3.06 16.49 0.15 1.28 +subito subito adv_sup 0.05 1.15 0.05 1.15 +subits subit adj m p 3.06 16.49 0.12 1.01 +subjectif subjectif adj m s 1.25 1.49 0.65 0.54 +subjectifs subjectif adj m p 1.25 1.49 0.03 0.07 +subjective subjectif adj f s 1.25 1.49 0.43 0.61 +subjectivement subjectivement adv 0.01 0.00 0.01 0.00 +subjectives subjectif adj f p 1.25 1.49 0.14 0.27 +subjectivisme subjectivisme nom m s 0.00 0.20 0.00 0.20 +subjectiviste subjectiviste adj m s 0.00 0.07 0.00 0.07 +subjectivité subjectivité nom f s 0.44 0.20 0.44 0.20 +subjonctif subjonctif nom m s 0.22 1.55 0.22 1.35 +subjonctifs subjonctif nom m p 0.22 1.55 0.00 0.20 +subjugation subjugation nom f s 0.01 0.00 0.01 0.00 +subjugua subjuguer ver 0.88 5.27 0.01 0.34 ind:pas:3s; +subjuguaient subjuguer ver 0.88 5.27 0.00 0.07 ind:imp:3p; +subjuguait subjuguer ver 0.88 5.27 0.00 0.27 ind:imp:3s; +subjuguant subjuguer ver 0.88 5.27 0.00 0.07 par:pre; +subjugue subjuguer ver 0.88 5.27 0.04 0.47 imp:pre:2s;ind:pre:3s; +subjuguer subjuguer ver 0.88 5.27 0.28 0.81 inf; +subjuguerais subjuguer ver 0.88 5.27 0.00 0.07 cnd:pre:1s; +subjuguerait subjuguer ver 0.88 5.27 0.00 0.07 cnd:pre:3s; +subjugues subjuguer ver 0.88 5.27 0.01 0.07 ind:pre:2s; +subjugué subjuguer ver m s 0.88 5.27 0.35 1.55 par:pas; +subjuguée subjuguer ver f s 0.88 5.27 0.17 1.01 par:pas; +subjuguées subjuguer ver f p 0.88 5.27 0.00 0.20 par:pas; +subjugués subjuguer ver m p 0.88 5.27 0.03 0.27 par:pas; +sublimable sublimable adj f s 0.00 0.07 0.00 0.07 +sublimais sublimer ver 0.67 1.42 0.02 0.07 ind:imp:1s; +sublimait sublimer ver 0.67 1.42 0.00 0.14 ind:imp:3s; +sublimant sublimer ver 0.67 1.42 0.01 0.07 par:pre; +sublimation sublimation nom f s 0.04 0.41 0.03 0.27 +sublimations sublimation nom f p 0.04 0.41 0.01 0.14 +sublime sublime adj s 11.74 12.91 9.51 9.39 +sublimement sublimement adv 0.02 0.14 0.02 0.14 +subliment sublimer ver 0.67 1.42 0.00 0.07 ind:pre:3p; +sublimer sublimer ver 0.67 1.42 0.11 0.14 inf; +sublimes sublime adj p 11.74 12.91 2.23 3.51 +subliminal subliminal adj m s 0.53 0.07 0.14 0.00 +subliminale subliminal adj f s 0.53 0.07 0.05 0.07 +subliminales subliminal adj f p 0.53 0.07 0.06 0.00 +subliminaux subliminal adj m p 0.53 0.07 0.27 0.00 +sublimissime sublimissime adj f s 0.00 0.07 0.00 0.07 +sublimité sublimité nom f s 0.01 0.20 0.01 0.07 +sublimités sublimité nom f p 0.01 0.20 0.00 0.14 +sublimé sublimer ver m s 0.67 1.42 0.03 0.00 par:pas; +sublimée sublimer ver f s 0.67 1.42 0.03 0.27 par:pas; +sublimées sublimer ver f p 0.67 1.42 0.01 0.07 par:pas; +sublimés sublimer ver m p 0.67 1.42 0.01 0.07 par:pas; +sublingual sublingual adj m s 0.04 0.07 0.04 0.00 +sublinguaux sublingual adj m p 0.04 0.07 0.00 0.07 +sublunaire sublunaire adj s 0.00 0.20 0.00 0.14 +sublunaires sublunaire adj p 0.00 0.20 0.00 0.07 +submerge submerger ver 3.57 12.91 0.44 2.03 ind:pre:1s;ind:pre:3s; +submergea submerger ver 3.57 12.91 0.02 1.01 ind:pas:3s; +submergeaient submerger ver 3.57 12.91 0.01 0.14 ind:imp:3p; +submergeait submerger ver 3.57 12.91 0.14 1.15 ind:imp:3s; +submergeant submerger ver 3.57 12.91 0.01 0.34 par:pre; +submergent submerger ver 3.57 12.91 0.16 0.54 ind:pre:3p; +submergeât submerger ver 3.57 12.91 0.00 0.14 sub:imp:3s; +submerger submerger ver 3.57 12.91 0.53 1.22 inf; +submergera submerger ver 3.57 12.91 0.04 0.07 ind:fut:3s; +submergerait submerger ver 3.57 12.91 0.00 0.20 cnd:pre:3s; +submergèrent submerger ver 3.57 12.91 0.01 0.00 ind:pas:3p; +submergé submerger ver m s 3.57 12.91 1.23 2.97 par:pas; +submergée submerger ver f s 3.57 12.91 0.39 1.49 par:pas; +submergées submerger ver f p 3.57 12.91 0.14 0.47 par:pas; +submergés submerger ver m p 3.57 12.91 0.46 1.15 par:pas; +submersible submersible nom m s 0.19 0.27 0.17 0.00 +submersibles submersible nom m p 0.19 0.27 0.02 0.27 +submersion submersion nom f s 0.05 0.00 0.05 0.00 +subodora subodorer ver 0.30 2.50 0.00 0.07 ind:pas:3s; +subodorais subodorer ver 0.30 2.50 0.00 0.27 ind:imp:1s; +subodorait subodorer ver 0.30 2.50 0.01 0.41 ind:imp:3s; +subodorant subodorer ver 0.30 2.50 0.01 0.07 par:pre; +subodore subodorer ver 0.30 2.50 0.16 0.88 ind:pre:1s;ind:pre:3s; +subodorent subodorer ver 0.30 2.50 0.00 0.07 ind:pre:3p; +subodorer subodorer ver 0.30 2.50 0.11 0.14 inf; +subodorèrent subodorer ver 0.30 2.50 0.00 0.07 ind:pas:3p; +subodoré subodorer ver m s 0.30 2.50 0.01 0.47 par:pas; +subodorés subodorer ver m p 0.30 2.50 0.00 0.07 par:pas; +suborbitale suborbital adj f s 0.01 0.00 0.01 0.00 +subordination subordination nom f s 0.01 1.55 0.01 1.55 +subordonnaient subordonner ver 0.31 2.23 0.00 0.07 ind:imp:3p; +subordonnais subordonner ver 0.31 2.23 0.00 0.07 ind:imp:1s; +subordonnant subordonner ver 0.31 2.23 0.00 0.07 par:pre; +subordonne subordonner ver 0.31 2.23 0.00 0.14 ind:pre:3s;sub:pre:1s; +subordonner subordonner ver 0.31 2.23 0.14 0.68 inf; +subordonné subordonné nom m s 0.81 2.77 0.14 1.01 +subordonnée subordonné adj f s 0.24 0.47 0.16 0.00 +subordonnées subordonner ver f p 0.31 2.23 0.00 0.34 par:pas; +subordonnés subordonné nom m p 0.81 2.77 0.67 1.76 +subornation subornation nom f s 0.09 0.07 0.09 0.07 +suborner suborner ver 0.21 0.07 0.04 0.00 inf; +suborneur suborneur nom m s 0.01 0.41 0.01 0.34 +suborneurs suborneur nom m p 0.01 0.41 0.00 0.07 +suborné suborner ver m s 0.21 0.07 0.03 0.00 par:pas; +subornée suborner ver f s 0.21 0.07 0.00 0.07 par:pas; +subornés suborner ver m p 0.21 0.07 0.14 0.00 par:pas; +séborrhée séborrhée nom f s 0.00 0.07 0.00 0.07 +séborrhéique séborrhéique adj f s 0.01 0.00 0.01 0.00 +subreptice subreptice adj s 0.02 0.61 0.02 0.41 +subrepticement subrepticement adv 0.15 2.64 0.15 2.64 +subreptices subreptice adj m p 0.02 0.61 0.00 0.20 +subrogation subrogation nom f s 0.02 0.00 0.02 0.00 +subrogé subroger ver m s 0.00 0.07 0.00 0.07 par:pas; +subrécargue subrécargue nom m s 0.01 0.07 0.01 0.07 +subsaharienne subsaharien adj f s 0.00 0.07 0.00 0.07 +subside subside nom m s 0.51 0.88 0.28 0.00 +subsides subside nom m p 0.51 0.88 0.23 0.88 +subsidiaire subsidiaire adj s 0.11 0.20 0.06 0.14 +subsidiairement subsidiairement adv 0.00 0.07 0.00 0.07 +subsidiaires subsidiaire adj p 0.11 0.20 0.04 0.07 +subsista subsister ver 2.08 17.09 0.01 0.34 ind:pas:3s; +subsistaient subsister ver 2.08 17.09 0.12 1.62 ind:imp:3p; +subsistait subsister ver 2.08 17.09 0.04 3.78 ind:imp:3s; +subsistance subsistance nom f s 0.67 1.55 0.64 1.42 +subsistances subsistance nom f p 0.67 1.55 0.02 0.14 +subsistant subsistant adj m s 0.01 0.20 0.01 0.07 +subsistantes subsistant adj f p 0.01 0.20 0.00 0.07 +subsistants subsistant adj m p 0.01 0.20 0.00 0.07 +subsiste subsister ver 2.08 17.09 1.17 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +subsistent subsister ver 2.08 17.09 0.05 1.82 ind:pre:3p; +subsister subsister ver 2.08 17.09 0.45 3.92 inf; +subsistera subsister ver 2.08 17.09 0.04 0.07 ind:fut:3s; +subsisteraient subsister ver 2.08 17.09 0.00 0.07 cnd:pre:3p; +subsisterait subsister ver 2.08 17.09 0.00 0.34 cnd:pre:3s; +subsisteront subsister ver 2.08 17.09 0.03 0.07 ind:fut:3p; +subsistions subsister ver 2.08 17.09 0.00 0.07 ind:imp:1p; +subsistâmes subsister ver 2.08 17.09 0.01 0.00 ind:pas:1p; +subsistons subsister ver 2.08 17.09 0.01 0.00 ind:pre:1p; +subsistât subsister ver 2.08 17.09 0.00 0.20 sub:imp:3s; +subsistèrent subsister ver 2.08 17.09 0.00 0.07 ind:pas:3p; +subsisté subsister ver m s 2.08 17.09 0.14 0.20 par:pas; +subsonique subsonique adj s 0.19 0.00 0.19 0.00 +substance substance nom f s 8.87 14.39 6.60 12.84 +substances substance nom f p 8.87 14.39 2.27 1.55 +substantiel substantiel adj m s 1.08 2.43 0.46 0.41 +substantielle substantiel adj f s 1.08 2.43 0.45 0.81 +substantiellement substantiellement adv 0.04 0.27 0.04 0.27 +substantielles substantiel adj f p 1.08 2.43 0.08 0.68 +substantiels substantiel adj m p 1.08 2.43 0.10 0.54 +substantif substantif nom m s 0.01 0.34 0.01 0.20 +substantifique substantifique adj f s 0.00 0.20 0.00 0.20 +substantifs substantif nom m p 0.01 0.34 0.00 0.14 +substitua substituer ver 1.23 8.11 0.00 0.61 ind:pas:3s; +substituai substituer ver 1.23 8.11 0.01 0.07 ind:pas:1s; +substituaient substituer ver 1.23 8.11 0.01 0.41 ind:imp:3p; +substituait substituer ver 1.23 8.11 0.11 0.81 ind:imp:3s; +substituant substituer ver 1.23 8.11 0.05 0.41 par:pre; +substitue substituer ver 1.23 8.11 0.03 0.88 ind:pre:3s; +substituent substituer ver 1.23 8.11 0.01 0.07 ind:pre:3p; +substituer substituer ver 1.23 8.11 0.58 3.45 inf; +substituerait substituer ver 1.23 8.11 0.00 0.07 cnd:pre:3s; +substituerez substituer ver 1.23 8.11 0.01 0.00 ind:fut:2p; +substituez substituer ver 1.23 8.11 0.06 0.07 imp:pre:2p;ind:pre:2p; +substituons substituer ver 1.23 8.11 0.00 0.14 imp:pre:1p; +substitut substitut nom m s 2.37 2.70 2.05 2.09 +substitution substitution nom f s 0.69 2.30 0.67 2.03 +substitutions substitution nom f p 0.69 2.30 0.02 0.27 +substituts substitut nom m p 2.37 2.70 0.32 0.61 +substitué substituer ver m s 1.23 8.11 0.34 0.68 par:pas; +substituées substituer ver f p 1.23 8.11 0.00 0.14 par:pas; +substitués substituer ver m p 1.23 8.11 0.00 0.34 par:pas; +substrat substrat nom m s 0.09 0.00 0.09 0.00 +substratum substratum nom m s 0.00 0.27 0.00 0.27 +substruction substruction nom f s 0.00 0.07 0.00 0.07 +subséquemment subséquemment adv 0.23 0.20 0.23 0.20 +subséquent subséquent adj m s 0.09 0.34 0.02 0.00 +subséquente subséquent adj f s 0.09 0.34 0.04 0.14 +subséquentes subséquent adj f p 0.09 0.34 0.01 0.14 +subséquents subséquent adj m p 0.09 0.34 0.02 0.07 +subterfuge subterfuge nom m s 0.80 1.35 0.48 0.88 +subterfuges subterfuge nom m p 0.80 1.35 0.32 0.47 +subtil subtil adj m s 7.54 22.91 4.54 10.88 +subtile subtil adj f s 7.54 22.91 2.12 5.68 +subtilement subtilement adv 0.44 2.30 0.44 2.30 +subtiles subtil adj f p 7.54 22.91 0.37 3.11 +subtilisa subtiliser ver 0.52 2.16 0.00 0.27 ind:pas:3s; +subtilisait subtiliser ver 0.52 2.16 0.00 0.07 ind:imp:3s; +subtilisant subtiliser ver 0.52 2.16 0.02 0.07 par:pre; +subtilisassent subtiliser ver 0.52 2.16 0.00 0.07 sub:imp:3p; +subtilise subtiliser ver 0.52 2.16 0.00 0.14 ind:pre:1s;ind:pre:3s; +subtiliser subtiliser ver 0.52 2.16 0.16 0.41 inf; +subtilisera subtiliser ver 0.52 2.16 0.00 0.07 ind:fut:3s; +subtilisé subtiliser ver m s 0.52 2.16 0.28 0.54 par:pas; +subtilisée subtiliser ver f s 0.52 2.16 0.02 0.20 par:pas; +subtilisées subtiliser ver f p 0.52 2.16 0.04 0.07 par:pas; +subtilisés subtiliser ver m p 0.52 2.16 0.00 0.27 par:pas; +subtilité subtilité nom f s 0.97 5.20 0.55 3.45 +subtilités subtilité nom f p 0.97 5.20 0.41 1.76 +subtils subtil adj m p 7.54 22.91 0.52 3.24 +subtropical subtropical adj m s 0.04 0.14 0.00 0.07 +subtropicale subtropical adj f s 0.04 0.14 0.03 0.00 +subtropicales subtropical adj f p 0.04 0.14 0.01 0.07 +sébum sébum nom m s 0.00 0.07 0.00 0.07 +suburbain suburbain adj m s 0.05 0.34 0.01 0.07 +suburbaine suburbain adj f s 0.05 0.34 0.01 0.00 +suburbaines suburbain adj f p 0.05 0.34 0.02 0.14 +suburbains suburbain adj m p 0.05 0.34 0.00 0.14 +subvenant subvenir ver 1.52 1.08 0.03 0.00 par:pre; +subvenez subvenir ver 1.52 1.08 0.02 0.00 ind:pre:2p; +subvenir subvenir ver 1.52 1.08 1.30 1.01 inf; +subvention subvention nom f s 3.00 0.88 1.66 0.54 +subventionnant subventionner ver 0.79 0.68 0.01 0.07 par:pre; +subventionne subventionner ver 0.79 0.68 0.30 0.00 imp:pre:2s;ind:pre:3s; +subventionnent subventionner ver 0.79 0.68 0.05 0.00 ind:pre:3p; +subventionner subventionner ver 0.79 0.68 0.24 0.20 inf; +subventionnera subventionner ver 0.79 0.68 0.00 0.07 ind:fut:3s; +subventionné subventionner ver m s 0.79 0.68 0.11 0.20 par:pas; +subventionnée subventionné adj f s 0.10 0.14 0.07 0.00 +subventionnées subventionné adj f p 0.10 0.14 0.00 0.07 +subventionnés subventionner ver m p 0.79 0.68 0.04 0.14 par:pas; +subventions subvention nom f p 3.00 0.88 1.34 0.34 +subvenu subvenir ver m s 1.52 1.08 0.07 0.00 par:pas; +subversif subversif adj m s 3.61 2.43 1.30 0.54 +subversifs subversif adj m p 3.61 2.43 0.97 0.47 +subversion subversion nom f s 0.66 0.95 0.56 0.95 +subversions subversion nom f p 0.66 0.95 0.10 0.00 +subversive subversif adj f s 3.61 2.43 0.41 0.54 +subversives subversif adj f p 3.61 2.43 0.94 0.88 +subvertir subvertir ver 0.00 0.07 0.00 0.07 inf; +subviendra subvenir ver 1.52 1.08 0.00 0.07 ind:fut:3s; +subviendrait subvenir ver 1.52 1.08 0.01 0.00 cnd:pre:3s; +subviens subvenir ver 1.52 1.08 0.03 0.00 ind:pre:1s; +subvient subvenir ver 1.52 1.08 0.06 0.00 ind:pre:3s; +suc suc nom m s 0.61 3.18 0.53 1.89 +sécateur sécateur nom m s 0.17 1.49 0.15 1.35 +sécateurs sécateur nom m p 0.17 1.49 0.03 0.14 +successeur successeur nom m s 2.80 6.96 2.59 5.47 +successeurs successeur nom m p 2.80 6.96 0.21 1.49 +successibles successible adj p 0.00 0.07 0.00 0.07 +successif successif adj m s 0.69 18.99 0.00 0.20 +successifs successif adj m p 0.69 18.99 0.26 8.78 +succession succession nom f s 2.92 11.35 2.72 11.01 +successions succession nom f p 2.92 11.35 0.20 0.34 +successive successif adj f s 0.69 18.99 0.00 0.41 +successivement successivement adv 0.32 12.57 0.32 12.57 +successives successif adj f p 0.69 18.99 0.43 9.59 +successoral successoral adj m s 0.03 0.00 0.02 0.00 +successorale successoral adj f s 0.03 0.00 0.01 0.00 +succinct succinct adj m s 0.20 0.88 0.12 0.54 +succincte succinct adj f s 0.20 0.88 0.06 0.14 +succinctement succinctement adv 0.07 0.41 0.07 0.41 +succinctes succinct adj f p 0.20 0.88 0.02 0.20 +succion succion nom f s 0.33 1.69 0.33 1.49 +succions succion nom f p 0.33 1.69 0.00 0.20 +succomba succomber ver 4.79 9.66 0.14 0.88 ind:pas:3s; +succombai succomber ver 4.79 9.66 0.00 0.20 ind:pas:1s; +succombaient succomber ver 4.79 9.66 0.00 0.34 ind:imp:3p; +succombais succomber ver 4.79 9.66 0.00 0.14 ind:imp:1s; +succombait succomber ver 4.79 9.66 0.02 0.61 ind:imp:3s; +succombant succomber ver 4.79 9.66 0.17 0.34 par:pre; +succombe succomber ver 4.79 9.66 1.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +succombent succomber ver 4.79 9.66 0.32 0.68 ind:pre:3p; +succomber succomber ver 4.79 9.66 1.15 2.43 inf; +succombera succomber ver 4.79 9.66 0.13 0.20 ind:fut:3s; +succomberai succomber ver 4.79 9.66 0.01 0.07 ind:fut:1s; +succomberaient succomber ver 4.79 9.66 0.00 0.07 cnd:pre:3p; +succomberais succomber ver 4.79 9.66 0.01 0.00 cnd:pre:1s; +succomberait succomber ver 4.79 9.66 0.03 0.07 cnd:pre:3s; +succomberont succomber ver 4.79 9.66 0.31 0.07 ind:fut:3p; +succombes succomber ver 4.79 9.66 0.01 0.00 ind:pre:2s; +succombez succomber ver 4.79 9.66 0.03 0.00 imp:pre:2p;ind:pre:2p; +succombions succomber ver 4.79 9.66 0.00 0.07 ind:imp:1p; +succombèrent succomber ver 4.79 9.66 0.00 0.14 ind:pas:3p; +succombé succomber ver m s 4.79 9.66 1.24 2.43 par:pas; +succède succéder ver 4.25 33.78 0.60 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +succèdent succéder ver 4.25 33.78 0.32 5.07 ind:pre:3p; +succès succès nom m 39.58 53.72 39.58 53.72 +succube succube nom m s 0.46 0.34 0.39 0.27 +succubes succube nom m p 0.46 0.34 0.07 0.07 +succéda succéder ver 4.25 33.78 0.16 1.82 ind:pas:3s; +succédaient succéder ver 4.25 33.78 0.06 5.74 ind:imp:3p; +succédait succéder ver 4.25 33.78 0.10 2.64 ind:imp:3s; +succédant succéder ver 4.25 33.78 0.00 2.77 par:pre; +succédané succédané nom m s 0.04 0.95 0.03 0.68 +succédanés succédané nom m p 0.04 0.95 0.01 0.27 +succédassent succéder ver 4.25 33.78 0.00 0.07 sub:imp:3p; +succéder succéder ver 4.25 33.78 1.78 4.53 inf; +succédera succéder ver 4.25 33.78 0.36 0.54 ind:fut:3s; +succéderai succéder ver 4.25 33.78 0.01 0.00 ind:fut:1s; +succéderaient succéder ver 4.25 33.78 0.00 0.07 cnd:pre:3p; +succéderait succéder ver 4.25 33.78 0.16 0.47 cnd:pre:3s; +succéderas succéder ver 4.25 33.78 0.01 0.00 ind:fut:2s; +succéderez succéder ver 4.25 33.78 0.02 0.00 ind:fut:2p; +succéderiez succéder ver 4.25 33.78 0.01 0.00 cnd:pre:2p; +succéderont succéder ver 4.25 33.78 0.21 0.20 ind:fut:3p; +succédions succéder ver 4.25 33.78 0.00 0.07 ind:imp:1p; +succédâmes succéder ver 4.25 33.78 0.00 0.07 ind:pas:1p; +succédât succéder ver 4.25 33.78 0.00 0.07 sub:imp:3s; +succédèrent succéder ver 4.25 33.78 0.02 2.50 ind:pas:3p; +succédé succéder ver m s 4.25 33.78 0.41 4.73 par:pas; +succédées succéder ver f p 4.25 33.78 0.02 0.07 par:pas; +succulence succulence nom f s 0.01 0.68 0.01 0.68 +succulent succulent adj m s 1.46 2.77 0.71 1.15 +succulente succulent adj f s 1.46 2.77 0.51 0.61 +succulentes succulent adj f p 1.46 2.77 0.14 0.47 +succulents succulent adj m p 1.46 2.77 0.09 0.54 +succursale succursale nom f s 1.17 1.42 1.05 1.15 +succursales succursale nom f p 1.17 1.42 0.12 0.27 +suce sucer ver 23.45 18.51 7.84 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +sucent sucer ver 23.45 18.51 0.51 0.27 ind:pre:3p; +sucer sucer ver 23.45 18.51 9.68 4.86 ind:imp:3s;ind:pre:2p;inf; +sucera sucer ver 23.45 18.51 0.22 0.07 ind:fut:3s; +sucerai sucer ver 23.45 18.51 0.10 0.27 ind:fut:1s; +suceraient sucer ver 23.45 18.51 0.02 0.07 cnd:pre:3p; +sucerais sucer ver 23.45 18.51 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +sucerait sucer ver 23.45 18.51 0.07 0.14 cnd:pre:3s; +suces sucer ver 23.45 18.51 0.94 0.07 ind:pre:2s;sub:pre:2s; +sécession sécession nom f s 0.26 0.74 0.26 0.74 +sécessionniste sécessionniste nom s 0.06 0.00 0.02 0.00 +sécessionnistes sécessionniste nom p 0.06 0.00 0.04 0.00 +sucette sucette nom f s 2.29 2.64 1.27 1.49 +sucettes sucette nom f p 2.29 2.64 1.02 1.15 +suceur suceur nom m s 2.15 0.54 0.96 0.07 +suceurs suceur nom m p 2.15 0.54 0.65 0.14 +suceuse suceur nom f s 2.15 0.54 0.55 0.34 +suceuses suceuse nom f p 0.73 0.00 0.73 0.00 +sucez sucer ver 23.45 18.51 0.39 0.07 imp:pre:2p;ind:pre:2p; +sécha sécher ver 19.49 40.41 0.01 0.61 ind:pas:3s; +séchage séchage nom m s 0.17 0.41 0.17 0.41 +séchai sécher ver 19.49 40.41 0.00 0.14 ind:pas:1s; +séchaient sécher ver 19.49 40.41 0.05 3.24 ind:imp:3p; +séchais sécher ver 19.49 40.41 0.35 0.20 ind:imp:1s;ind:imp:2s; +séchait sécher ver 19.49 40.41 0.54 2.57 ind:imp:3s; +séchant sécher ver 19.49 40.41 0.15 1.42 par:pre; +séchard séchard nom m s 0.01 0.14 0.01 0.14 +sécher sécher ver 19.49 40.41 5.84 10.27 inf; +séchera sécher ver 19.49 40.41 0.05 0.41 ind:fut:3s; +sécherai sécher ver 19.49 40.41 0.13 0.00 ind:fut:1s; +sécheraient sécher ver 19.49 40.41 0.00 0.07 cnd:pre:3p; +sécherais sécher ver 19.49 40.41 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +sécherait sécher ver 19.49 40.41 0.02 0.20 cnd:pre:3s; +sécheresse sécheresse nom f s 2.63 11.15 2.30 10.81 +sécheresses sécheresse nom f p 2.63 11.15 0.33 0.34 +sécherez sécher ver 19.49 40.41 0.01 0.00 ind:fut:2p; +sécherie sécherie nom f s 0.03 0.20 0.01 0.14 +sécheries sécherie nom f p 0.03 0.20 0.01 0.07 +sécheront sécher ver 19.49 40.41 0.01 0.07 ind:fut:3p; +sécheuse sécheur nom f s 0.05 0.00 0.05 0.00 +séchez sécher ver 19.49 40.41 0.79 0.20 imp:pre:2p;ind:pre:2p; +séchiez sécher ver 19.49 40.41 0.03 0.00 ind:imp:2p; +séchions sécher ver 19.49 40.41 0.01 0.07 ind:imp:1p; +séchoir séchoir nom m s 0.95 1.28 0.91 1.08 +séchoirs séchoir nom m p 0.95 1.28 0.04 0.20 +séchons sécher ver 19.49 40.41 0.11 0.00 imp:pre:1p;ind:pre:1p; +séchât sécher ver 19.49 40.41 0.00 0.07 sub:imp:3s; +séchèrent sécher ver 19.49 40.41 0.00 0.47 ind:pas:3p; +séché sécher ver m s 19.49 40.41 3.68 5.34 par:pas; +séchée sécher ver f s 19.49 40.41 1.09 3.11 par:pas; +séchées sécher ver f p 19.49 40.41 0.56 2.23 par:pas; +séchés sécher ver m p 19.49 40.41 0.16 1.42 par:pas; +sécolle sécolle pro_per 0.00 0.14 0.00 0.14 +sécot sécot nom m s 0.00 0.07 0.00 0.07 +sucra sucrer ver 1.90 4.73 0.00 0.14 ind:pas:3s; +sucrait sucrer ver 1.90 4.73 0.05 0.07 ind:imp:3s; +sucrant sucrer ver 1.90 4.73 0.00 0.07 par:pre; +sucre sucre nom m s 32.01 32.77 30.57 30.54 +sucrent sucrer ver 1.90 4.73 0.05 0.07 ind:pre:3p; +sucrer sucrer ver 1.90 4.73 0.38 0.74 inf; +sucrerait sucrer ver 1.90 4.73 0.00 0.14 cnd:pre:3s; +sucrerie sucrerie nom f s 2.82 3.58 0.25 0.88 +sucreries sucrerie nom f p 2.82 3.58 2.57 2.70 +sucres sucre nom m p 32.01 32.77 1.44 2.23 +sucrette sucrette nom f s 0.52 0.14 0.04 0.00 +sucrettes sucrette nom f p 0.52 0.14 0.48 0.14 +sucrier sucrier nom m s 0.58 1.08 0.51 0.95 +sucriers sucrier nom m p 0.58 1.08 0.05 0.14 +sucrins sucrin adj m p 0.00 0.07 0.00 0.07 +sucrière sucrier adj f s 1.79 0.20 1.47 0.07 +sucrières sucrier adj f p 1.79 0.20 0.32 0.00 +sécrète sécréter ver 0.85 3.24 0.41 0.68 ind:pre:3s; +sécrètent sécréter ver 0.85 3.24 0.12 0.27 ind:pre:3p; +sécrètes sécréter ver 0.85 3.24 0.01 0.00 ind:pre:2s; +sucré sucré adj m s 3.69 9.05 2.19 4.39 +sucrée sucré adj f s 3.69 9.05 0.96 2.77 +sucrées sucré adj f p 3.69 9.05 0.42 0.88 +sucrés sucré adj m p 3.69 9.05 0.13 1.01 +sécrétaient sécréter ver 0.85 3.24 0.00 0.07 ind:imp:3p; +sécrétais sécréter ver 0.85 3.24 0.00 0.07 ind:imp:1s; +sécrétait sécréter ver 0.85 3.24 0.00 0.47 ind:imp:3s; +sécrétant sécréter ver 0.85 3.24 0.00 0.27 par:pre; +sécréter sécréter ver 0.85 3.24 0.02 0.47 inf; +sécréteur sécréteur nom m s 0.02 0.00 0.01 0.00 +sécréteurs sécréteur nom m p 0.02 0.00 0.01 0.00 +sécrétez sécréter ver 0.85 3.24 0.00 0.07 ind:pre:2p; +sécrétine sécrétine nom f s 0.01 0.00 0.01 0.00 +sécrétion sécrétion nom f s 0.83 1.49 0.17 0.41 +sécrétions sécrétion nom f p 0.83 1.49 0.66 1.08 +sécrétât sécréter ver 0.85 3.24 0.00 0.07 sub:imp:3s; +sécrété sécréter ver m s 0.85 3.24 0.15 0.41 par:pas; +sécrétée sécréter ver f s 0.85 3.24 0.14 0.27 par:pas; +sécrétés sécréter ver m p 0.85 3.24 0.00 0.14 par:pas; +sucs suc nom m p 0.61 3.18 0.08 1.28 +sucèrent sucer ver 23.45 18.51 0.00 0.07 ind:pas:3p; +sécu sécu nom f s 1.50 0.74 1.50 0.74 +sucé sucer ver m s 23.45 18.51 2.34 1.76 par:pas; +sucée sucer ver f s 23.45 18.51 0.12 0.27 par:pas; +sucées sucer ver f p 23.45 18.51 0.04 0.07 par:pas; +séculaire séculaire adj s 0.26 4.73 0.12 3.04 +séculairement séculairement adv 0.00 0.14 0.00 0.14 +séculaires séculaire adj p 0.26 4.73 0.14 1.69 +séculariser séculariser ver 0.01 0.07 0.01 0.00 inf; +sécularisées séculariser ver f p 0.01 0.07 0.00 0.07 par:pas; +séculier séculier adj m s 0.02 1.49 0.00 1.15 +séculiers séculier adj m p 0.02 1.49 0.00 0.07 +séculière séculier adj f s 0.02 1.49 0.02 0.27 +sécurisait sécuriser ver 6.48 0.34 0.00 0.07 ind:imp:3s; +sécurisant sécurisant adj m s 0.37 0.20 0.34 0.00 +sécurisante sécurisant adj f s 0.37 0.20 0.04 0.20 +sécurisation sécurisation nom f s 0.01 0.00 0.01 0.00 +sécuriser sécuriser ver 6.48 0.34 1.09 0.00 inf; +sécurisez sécuriser ver 6.48 0.34 0.79 0.00 imp:pre:2p;ind:pre:2p; +sécurisé sécuriser ver m s 6.48 0.34 2.16 0.07 par:pas; +sécurisée sécuriser ver f s 6.48 0.34 1.94 0.07 par:pas; +sécurisées sécuriser ver f p 6.48 0.34 0.20 0.00 par:pas; +sécurisés sécuriser ver m p 6.48 0.34 0.28 0.07 par:pas; +sécurit sécurit nom m s 0.15 0.14 0.15 0.14 +sécuritaire sécuritaire adj s 0.23 0.00 0.23 0.00 +sécurité sécurité nom f s 113.17 39.12 112.69 38.92 +sécurités sécurité nom f p 113.17 39.12 0.48 0.20 +sucés sucer ver m p 23.45 18.51 0.06 0.07 par:pas; +sud_africain sud_africain nom m s 0.28 0.07 0.15 0.00 +sud_africain sud_africain adj f s 0.29 0.47 0.07 0.34 +sud_africain sud_africain adj f p 0.29 0.47 0.04 0.00 +sud_africain sud_africain nom m p 0.28 0.07 0.10 0.07 +sud_américain sud_américain adj m s 0.77 1.55 0.29 0.41 +sud_américain sud_américain adj f s 0.77 1.55 0.35 0.54 +sud_américain sud_américain adj f p 0.77 1.55 0.01 0.20 +sud_américain sud_américain adj m p 0.77 1.55 0.11 0.41 +sud_coréen sud_coréen adj m s 0.21 0.00 0.01 0.00 +sud_coréen sud_coréen nom m s 0.01 0.00 0.01 0.00 +sud_coréen sud_coréen adj f s 0.21 0.00 0.15 0.00 +sud_coréen sud_coréen adj f p 0.21 0.00 0.02 0.00 +sud_coréen sud_coréen adj m p 0.21 0.00 0.02 0.00 +sud_est sud_est nom m 3.30 2.30 3.30 2.30 +sud_ouest sud_ouest nom m 2.10 3.51 2.10 3.51 +sud_sud_est sud_sud_est nom m s 0.03 0.00 0.03 0.00 +sud_vietnamien sud_vietnamien adj m s 0.10 0.07 0.05 0.00 +sud_vietnamien sud_vietnamien adj f s 0.10 0.07 0.03 0.00 +sud_vietnamien sud_vietnamien nom m p 0.12 0.20 0.11 0.20 +sud sud nom m s 23.95 28.38 23.95 28.38 +sédatif sédatif nom m s 3.93 0.27 2.80 0.00 +sédatifs sédatif nom m p 3.93 0.27 1.13 0.27 +sédation sédation nom f s 0.08 0.00 0.08 0.00 +sudation sudation nom f s 0.14 0.07 0.14 0.07 +sédative sédatif adj f s 0.27 0.34 0.00 0.20 +sédatives sédatif adj f p 0.27 0.34 0.02 0.07 +sudatoires sudatoire adj f p 0.00 0.07 0.00 0.07 +sédentaire sédentaire adj s 0.23 2.30 0.21 1.76 +sédentaires sédentaire nom p 0.05 1.55 0.05 0.81 +sédentarisaient sédentariser ver 0.01 0.14 0.00 0.07 ind:imp:3p; +sédentarisation sédentarisation nom f s 0.00 0.07 0.00 0.07 +sédentarise sédentariser ver 0.01 0.14 0.01 0.00 ind:pre:3s; +sédentariser sédentariser ver 0.01 0.14 0.00 0.07 inf; +sédentarisme sédentarisme nom m s 0.00 0.07 0.00 0.07 +sédentarité sédentarité nom f s 0.00 0.27 0.00 0.27 +sédiment sédiment nom m s 0.14 0.61 0.03 0.14 +sédimentaire sédimentaire adj s 0.05 0.20 0.05 0.07 +sédimentaires sédimentaire adj f p 0.05 0.20 0.00 0.14 +sédimentation sédimentation nom f s 0.09 0.20 0.09 0.14 +sédimentations sédimentation nom f p 0.09 0.20 0.00 0.07 +sédimente sédimenter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +sédiments sédiment nom m p 0.14 0.61 0.11 0.47 +sédimentée sédimenter ver f s 0.00 0.14 0.00 0.07 par:pas; +sudiste sudiste nom s 2.82 0.68 1.94 0.47 +sudistes sudiste nom p 2.82 0.68 0.88 0.20 +séditieuse séditieux adj f s 0.35 0.74 0.03 0.14 +séditieuses séditieux adj f p 0.35 0.74 0.00 0.07 +séditieux séditieux adj m 0.35 0.74 0.32 0.54 +sédition sédition nom f s 1.28 0.54 1.28 0.54 +sudoripare sudoripare adj s 0.14 0.14 0.02 0.07 +sudoripares sudoripare adj f p 0.14 0.14 0.13 0.07 +sudète sudète adj s 0.00 0.14 0.00 0.07 +sudètes sudète adj m p 0.00 0.14 0.00 0.07 +séducteur séducteur nom m s 2.34 4.86 1.97 3.72 +séducteurs séducteur nom m p 2.34 4.86 0.20 0.68 +séduction séduction nom f s 2.54 9.39 2.50 7.97 +séductions séduction nom f p 2.54 9.39 0.04 1.42 +séductrice séducteur nom f s 2.34 4.86 0.16 0.41 +séductrices séducteur adj f p 0.31 2.36 0.01 0.34 +séduira séduire ver 16.48 22.23 0.16 0.07 ind:fut:3s; +séduirait séduire ver 16.48 22.23 0.16 0.00 cnd:pre:3s; +séduiras séduire ver 16.48 22.23 0.12 0.00 ind:fut:2s; +séduire séduire ver 16.48 22.23 7.64 9.59 inf; +séduis séduire ver 16.48 22.23 0.70 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +séduisaient séduire ver 16.48 22.23 0.00 0.14 ind:imp:3p; +séduisait séduire ver 16.48 22.23 0.19 1.42 ind:imp:3s; +séduisant séduisant adj m s 9.13 8.18 4.68 3.85 +séduisante séduisant adj f s 9.13 8.18 3.71 2.91 +séduisantes séduisant adj f p 9.13 8.18 0.39 0.54 +séduisants séduisant adj m p 9.13 8.18 0.35 0.88 +séduise séduire ver 16.48 22.23 0.17 0.20 sub:pre:1s;sub:pre:3s; +séduisent séduire ver 16.48 22.23 0.10 0.41 ind:pre:3p; +séduises séduire ver 16.48 22.23 0.02 0.07 sub:pre:2s; +séduisez séduire ver 16.48 22.23 0.16 0.00 imp:pre:2p;ind:pre:2p; +séduisirent séduire ver 16.48 22.23 0.10 0.14 ind:pas:3p; +séduisit séduire ver 16.48 22.23 0.03 0.41 ind:pas:3s; +séduit séduire ver m s 16.48 22.23 5.09 5.95 ind:pre:3s;par:pas; +séduite séduire ver f s 16.48 22.23 1.09 2.30 par:pas; +séduites séduit adj f p 1.08 1.89 0.27 0.14 +séduits séduire ver m p 16.48 22.23 0.08 0.41 par:pas; +sue suer ver 7.28 10.34 0.85 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +suent suer ver 7.28 10.34 0.23 0.34 ind:pre:3p; +suer suer ver 7.28 10.34 2.72 2.77 inf; +suerai suer ver 7.28 10.34 0.03 0.00 ind:fut:1s; +suerais suer ver 7.28 10.34 0.01 0.00 cnd:pre:2s; +suerait suer ver 7.28 10.34 0.00 0.07 cnd:pre:3s; +suerte suerte nom f s 0.22 0.00 0.22 0.00 +sues suer ver 7.28 10.34 0.41 0.07 ind:pre:2s; +sueur sueur nom f s 11.71 60.34 10.27 57.30 +sueurs sueur nom f p 11.71 60.34 1.45 3.04 +suez suer ver 7.28 10.34 0.35 0.07 imp:pre:2p;ind:pre:2p; +séfarade séfarade adj m s 0.01 0.00 0.01 0.00 +séfarade séfarade nom s 0.01 0.00 0.01 0.00 +suffît suffire ver 232.08 159.39 0.64 0.14 sub:imp:3s; +suffi suffire ver m s 232.08 159.39 4.52 17.97 par:pas; +sufficit sufficit adv 0.00 0.07 0.00 0.07 +suffira suffire ver 232.08 159.39 13.85 4.39 ind:fut:3s; +suffirai suffire ver 232.08 159.39 0.02 0.00 ind:fut:1s; +suffiraient suffire ver 232.08 159.39 0.63 1.82 cnd:pre:3p; +suffirais suffire ver 232.08 159.39 0.02 0.00 cnd:pre:1s; +suffirait suffire ver 232.08 159.39 4.81 11.89 cnd:pre:3s; +suffire suffire ver 232.08 159.39 5.24 4.86 inf; +suffirent suffire ver 232.08 159.39 0.05 0.95 ind:pas:3p; +suffiront suffire ver 232.08 159.39 2.23 0.68 ind:fut:3p; +suffis suffire ver 232.08 159.39 0.53 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +suffisaient suffire ver 232.08 159.39 0.73 4.93 ind:imp:3p; +suffisais suffire ver 232.08 159.39 0.01 0.27 ind:imp:1s; +suffisait suffire ver 232.08 159.39 6.56 44.66 ind:imp:3s; +suffisamment suffisamment adv 18.30 20.07 18.30 20.07 +suffisance suffisance nom f s 0.90 3.99 0.90 3.92 +suffisances suffisance nom f p 0.90 3.99 0.00 0.07 +suffisant suffisant adj m s 17.56 18.99 12.95 10.00 +suffisante suffisant adj f s 17.56 18.99 2.98 5.61 +suffisantes suffisant adj f p 17.56 18.99 0.93 2.03 +suffisants suffisant adj m p 17.56 18.99 0.70 1.35 +suffise suffire ver 232.08 159.39 0.80 1.15 sub:pre:3s; +suffisent suffire ver 232.08 159.39 2.91 4.32 ind:pre:3p; +suffisez suffire ver 232.08 159.39 0.01 0.14 ind:pre:2p; +suffisions suffire ver 232.08 159.39 0.11 0.14 ind:imp:1p; +suffisons suffire ver 232.08 159.39 0.02 0.00 ind:pre:1p; +suffit suffire ver 232.08 159.39 188.10 59.66 ind:pre:3s;ind:pas:3s; +suffixes suffixe nom m p 0.00 0.14 0.00 0.14 +suffocant suffocant adj m s 0.33 3.78 0.24 1.28 +suffocante suffocant adj f s 0.33 3.78 0.06 1.76 +suffocantes suffocant adj f p 0.33 3.78 0.01 0.27 +suffocants suffocant adj m p 0.33 3.78 0.01 0.47 +suffocation suffocation nom f s 0.42 1.35 0.42 1.01 +suffocations suffocation nom f p 0.42 1.35 0.00 0.34 +suffoqua suffoquer ver 2.48 11.76 0.00 0.47 ind:pas:3s; +suffoquai suffoquer ver 2.48 11.76 0.00 0.07 ind:pas:1s; +suffoquaient suffoquer ver 2.48 11.76 0.00 0.27 ind:imp:3p; +suffoquais suffoquer ver 2.48 11.76 0.15 0.47 ind:imp:1s; +suffoquait suffoquer ver 2.48 11.76 0.07 1.89 ind:imp:3s; +suffoquant suffoquer ver 2.48 11.76 0.01 1.55 par:pre; +suffoque suffoquer ver 2.48 11.76 0.93 1.69 ind:pre:1s;ind:pre:3s; +suffoquent suffoquer ver 2.48 11.76 0.02 0.14 ind:pre:3p; +suffoquer suffoquer ver 2.48 11.76 0.91 0.81 inf; +suffoquera suffoquer ver 2.48 11.76 0.03 0.00 ind:fut:3s; +suffoquerait suffoquer ver 2.48 11.76 0.01 0.00 cnd:pre:3s; +suffoqueront suffoquer ver 2.48 11.76 0.01 0.07 ind:fut:3p; +suffoquez suffoquer ver 2.48 11.76 0.03 0.07 imp:pre:2p;ind:pre:2p; +suffoquions suffoquer ver 2.48 11.76 0.00 0.20 ind:imp:1p; +suffoquons suffoquer ver 2.48 11.76 0.00 0.14 imp:pre:1p;ind:pre:1p; +suffoquèrent suffoquer ver 2.48 11.76 0.00 0.07 ind:pas:3p; +suffoqué suffoquer ver m s 2.48 11.76 0.13 2.23 par:pas; +suffoquée suffoquer ver f s 2.48 11.76 0.15 1.28 par:pas; +suffoqués suffoquer ver m p 2.48 11.76 0.04 0.34 par:pas; +suffrage suffrage nom m s 0.60 3.99 0.33 2.50 +suffrages suffrage nom m p 0.60 3.99 0.27 1.49 +suffragette suffragette nom f s 0.20 0.27 0.12 0.27 +suffragettes suffragette nom f p 0.20 0.27 0.08 0.00 +suffète suffète nom m s 0.00 0.07 0.00 0.07 +suggestibilité suggestibilité nom f s 0.02 0.00 0.02 0.00 +suggestif suggestif adj m s 0.58 1.22 0.27 0.27 +suggestifs suggestif adj m p 0.58 1.22 0.01 0.14 +suggestion suggestion nom f s 8.35 7.77 5.63 3.51 +suggestionner suggestionner ver 0.02 0.14 0.01 0.07 inf; +suggestionné suggestionner ver m s 0.02 0.14 0.01 0.07 par:pas; +suggestions suggestion nom f p 8.35 7.77 2.71 4.26 +suggestive suggestif adj f s 0.58 1.22 0.16 0.74 +suggestives suggestif adj f p 0.58 1.22 0.14 0.07 +suggestivité suggestivité nom f s 0.01 0.00 0.01 0.00 +suggère suggérer ver 28.99 25.34 11.47 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +suggèrent suggérer ver 28.99 25.34 0.82 0.54 ind:pre:3p; +suggères suggérer ver 28.99 25.34 1.54 0.00 ind:pre:2s; +suggéra suggérer ver 28.99 25.34 0.11 4.46 ind:pas:3s; +suggérai suggérer ver 28.99 25.34 0.01 1.01 ind:pas:1s; +suggéraient suggérer ver 28.99 25.34 0.04 0.27 ind:imp:3p; +suggérais suggérer ver 28.99 25.34 0.47 0.54 ind:imp:1s;ind:imp:2s; +suggérait suggérer ver 28.99 25.34 0.23 3.24 ind:imp:3s; +suggérant suggérer ver 28.99 25.34 0.89 0.95 par:pre; +suggérer suggérer ver 28.99 25.34 4.18 3.45 ind:pre:2p;inf; +suggérera suggérer ver 28.99 25.34 0.01 0.07 ind:fut:3s; +suggérerai suggérer ver 28.99 25.34 0.01 0.07 ind:fut:1s; +suggérerais suggérer ver 28.99 25.34 0.32 0.00 cnd:pre:1s;cnd:pre:2s; +suggérerait suggérer ver 28.99 25.34 0.16 0.27 cnd:pre:3s; +suggérez suggérer ver 28.99 25.34 3.29 0.07 imp:pre:2p;ind:pre:2p; +suggériez suggérer ver 28.99 25.34 0.17 0.00 ind:imp:2p; +suggérions suggérer ver 28.99 25.34 0.01 0.07 ind:imp:1p; +suggérons suggérer ver 28.99 25.34 0.18 0.07 imp:pre:1p;ind:pre:1p; +suggérât suggérer ver 28.99 25.34 0.00 0.14 sub:imp:3s; +suggérèrent suggérer ver 28.99 25.34 0.00 0.07 ind:pas:3p; +suggéré suggérer ver m s 28.99 25.34 4.76 3.99 par:pas; +suggérée suggérer ver f s 28.99 25.34 0.14 0.95 par:pas; +suggérées suggérer ver f p 28.99 25.34 0.15 0.41 par:pas; +suggérés suggérer ver m p 28.99 25.34 0.02 0.14 par:pas; +ségrégation ségrégation nom f s 0.40 0.74 0.40 0.74 +ségrégationniste ségrégationniste adj m s 0.11 0.00 0.11 0.00 +séguedille séguedille nom f s 0.00 0.14 0.00 0.14 +sui_generis sui_generis adj m p 0.23 0.07 0.23 0.07 +sui sui nom m s 0.55 0.27 0.55 0.27 +suicida suicider ver 30.09 11.35 0.30 0.47 ind:pas:3s; +suicidaient suicider ver 30.09 11.35 0.01 0.14 ind:imp:3p; +suicidaire suicidaire adj s 2.63 1.22 2.63 1.22 +suicidaires suicidaire nom p 1.79 1.35 1.23 0.68 +suicidait suicider ver 30.09 11.35 0.09 0.27 ind:imp:3s; +suicidant suicidant nom m s 0.08 0.20 0.08 0.14 +suicidants suicidant nom m p 0.08 0.20 0.00 0.07 +suicide suicide nom m s 27.33 18.92 25.34 17.50 +suicident suicider ver 30.09 11.35 0.62 0.41 ind:pre:3p; +suicider suicider ver 30.09 11.35 10.49 4.19 inf; +suicidera suicider ver 30.09 11.35 0.09 0.27 ind:fut:3s; +suiciderai suicider ver 30.09 11.35 0.48 0.07 ind:fut:1s; +suiciderais suicider ver 30.09 11.35 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +suiciderait suicider ver 30.09 11.35 0.33 0.14 cnd:pre:3s; +suiciderez suicider ver 30.09 11.35 0.00 0.14 ind:fut:2p; +suicideriez suicider ver 30.09 11.35 0.01 0.00 cnd:pre:2p; +suicides suicide nom m p 27.33 18.92 1.98 1.42 +suicidez suicider ver 30.09 11.35 0.27 0.00 ind:pre:2p; +suicidiez suicider ver 30.09 11.35 0.04 0.00 ind:imp:2p; +suicidons suicider ver 30.09 11.35 0.11 0.07 imp:pre:1p;ind:pre:1p; +suicidât suicider ver 30.09 11.35 0.00 0.07 sub:imp:3s; +suicidèrent suicider ver 30.09 11.35 0.00 0.07 ind:pas:3p; +suicidé suicider ver m s 30.09 11.35 8.38 1.82 par:pas; +suicidée suicider ver f s 30.09 11.35 2.75 1.35 par:pas; +suicidées suicider ver f p 30.09 11.35 0.15 0.00 par:pas; +suicidés suicider ver m p 30.09 11.35 1.25 0.34 par:pas; +séide séide nom m s 0.02 0.20 0.01 0.00 +séides séide nom m p 0.02 0.20 0.01 0.20 +suie suie nom f s 0.72 7.43 0.72 7.30 +suies suie nom f p 0.72 7.43 0.00 0.14 +suif suif nom m s 0.96 2.03 0.96 2.03 +suifer suifer ver 0.00 0.14 0.00 0.07 inf; +suiffard suiffard nom m s 0.00 0.07 0.00 0.07 +suiffeuses suiffeux adj f p 0.00 0.14 0.00 0.07 +suiffeux suiffeux adj m 0.00 0.14 0.00 0.07 +suiffé suiffer ver m s 0.00 0.27 0.00 0.14 par:pas; +suiffée suiffer ver f s 0.00 0.27 0.00 0.07 par:pas; +suiffés suiffer ver m p 0.00 0.27 0.00 0.07 par:pas; +suifés suifer ver m p 0.00 0.14 0.00 0.07 par:pas; +suint suint nom m s 0.00 0.88 0.00 0.88 +suinta suinter ver 0.96 5.95 0.00 0.14 ind:pas:3s; +suintaient suinter ver 0.96 5.95 0.02 0.54 ind:imp:3p; +suintait suinter ver 0.96 5.95 0.02 1.96 ind:imp:3s; +suintant suinter ver 0.96 5.95 0.10 0.41 par:pre; +suintante suintant adj f s 0.17 2.70 0.05 0.34 +suintantes suintant adj f p 0.17 2.70 0.01 0.68 +suintants suintant adj m p 0.17 2.70 0.06 0.88 +suinte suinter ver 0.96 5.95 0.43 1.55 imp:pre:2s;ind:pre:3s; +suintement suintement nom m s 0.12 0.81 0.11 0.54 +suintements suintement nom m p 0.12 0.81 0.01 0.27 +suintent suinter ver 0.96 5.95 0.06 0.47 ind:pre:3p; +suinter suinter ver 0.96 5.95 0.20 0.74 inf; +suinté suinter ver m s 0.96 5.95 0.13 0.14 par:pas; +suis être aux 8074.24 6501.82 1272.28 560.47 ind:pre:1s; +séisme séisme nom m s 3.31 1.22 2.60 1.01 +séismes séisme nom m p 3.31 1.22 0.71 0.20 +suisse suisse adj s 5.01 10.27 3.91 6.62 +suisses suisse adj p 5.01 10.27 1.10 3.58 +suissesse suisse nom f s 1.42 3.38 0.11 0.47 +suissesses suisse nom f p 1.42 3.38 0.00 0.07 +suit suivre ver 2090.53 949.12 32.57 29.39 ind:pre:3s; +suite suite nom f s 275.90 275.81 274.18 270.88 +suites suite nom f p 275.90 275.81 1.72 4.93 +suitée suitée adj f s 0.00 0.07 0.00 0.07 +suiv suiv adj 0.01 0.00 0.01 0.00 +suivîmes suivre ver 2090.53 949.12 0.02 0.74 ind:pas:1p; +suivît suivre ver 2090.53 949.12 0.00 0.41 sub:imp:3s; +suivaient suivre ver 2090.53 949.12 1.11 15.54 ind:imp:3p; +suivais suivre ver 2090.53 949.12 3.46 8.11 ind:imp:1s;ind:imp:2s; +suivait suivre ver 2090.53 949.12 6.09 40.54 ind:imp:3s; +suivant suivant pre 2.61 15.47 2.61 15.47 +suivante suivant adj f s 28.81 51.08 11.20 19.46 +suivantes suivant adj f p 28.81 51.08 2.55 5.61 +suivants suivant adj m p 28.81 51.08 4.26 9.19 +suive suivre ver 2090.53 949.12 4.09 1.62 sub:pre:1s;sub:pre:3s; +suivent suivre ver 2090.53 949.12 11.14 12.64 ind:pre:3p;sub:pre:3p; +suives suivre ver 2090.53 949.12 0.98 0.00 sub:pre:2s; +suiveur suiveur nom m s 0.27 0.88 0.07 0.27 +suiveurs suiveur nom m p 0.27 0.88 0.17 0.54 +suiveuse suiveur nom f s 0.27 0.88 0.03 0.07 +suiveuses suiveur adj f p 0.02 0.27 0.00 0.14 +suivez_moi_jeune_homme suivez_moi_jeune_homme nom m s 0.00 0.07 0.00 0.07 +suivez suivre ver 2090.53 949.12 57.03 6.35 imp:pre:2p;ind:pre:2p; +suivi suivre ver m s 2090.53 949.12 34.99 48.04 par:pas; +suivie suivre ver f s 2090.53 949.12 9.18 15.54 par:pas; +suivies suivre ver f p 2090.53 949.12 1.21 3.51 par:pas; +suiviez suivre ver 2090.53 949.12 1.27 0.14 ind:imp:2p;sub:pre:2p; +suivions suivre ver 2090.53 949.12 0.24 2.70 ind:imp:1p; +suivirent suivre ver 2090.53 949.12 0.69 15.27 ind:pas:3p; +suivis suivre ver m p 2090.53 949.12 4.80 11.42 ind:pas:1s;par:pas;par:pas; +suivissent suivre ver 2090.53 949.12 0.00 0.20 sub:imp:3p; +suivistes suiviste nom p 0.00 0.07 0.00 0.07 +suivit suivre ver 2090.53 949.12 0.70 35.47 ind:pas:3s; +suivons suivre ver 2090.53 949.12 4.45 3.11 imp:pre:1p;ind:pre:1p; +suivra suivre ver 2090.53 949.12 5.27 2.70 ind:fut:3s; +suivrai suivre ver 2090.53 949.12 4.21 1.15 ind:fut:1s; +suivraient suivre ver 2090.53 949.12 0.58 1.42 cnd:pre:3p; +suivrais suivre ver 2090.53 949.12 1.62 0.95 cnd:pre:1s;cnd:pre:2s; +suivrait suivre ver 2090.53 949.12 0.96 3.18 cnd:pre:3s; +suivras suivre ver 2090.53 949.12 0.64 0.20 ind:fut:2s; +suivre suivre ver 2090.53 949.12 73.91 80.14 inf;; +suivrez suivre ver 2090.53 949.12 1.18 0.20 ind:fut:2p; +suivriez suivre ver 2090.53 949.12 0.06 0.00 cnd:pre:2p; +suivrions suivre ver 2090.53 949.12 0.00 0.14 cnd:pre:1p; +suivrons suivre ver 2090.53 949.12 1.94 0.34 ind:fut:1p; +suivront suivre ver 2090.53 949.12 2.46 2.16 ind:fut:3p; +sujet sujet nom m s 120.42 105.74 107.92 88.04 +sujets sujet nom m p 120.42 105.74 12.51 17.70 +sujette sujet adj f s 3.90 6.62 0.70 1.42 +sujettes sujet adj f p 3.90 6.62 0.09 0.20 +séjour séjour nom m s 16.60 43.58 15.70 36.82 +séjourna séjourner ver 2.48 6.96 0.00 0.34 ind:pas:3s; +séjournaient séjourner ver 2.48 6.96 0.02 0.34 ind:imp:3p; +séjournais séjourner ver 2.48 6.96 0.00 0.07 ind:imp:1s; +séjournait séjourner ver 2.48 6.96 0.27 1.22 ind:imp:3s; +séjournant séjourner ver 2.48 6.96 0.00 0.27 par:pre; +séjourne séjourner ver 2.48 6.96 0.83 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +séjournent séjourner ver 2.48 6.96 0.14 0.07 ind:pre:3p; +séjourner séjourner ver 2.48 6.96 0.39 1.35 inf; +séjourneraient séjourner ver 2.48 6.96 0.00 0.07 cnd:pre:3p; +séjournerez séjourner ver 2.48 6.96 0.12 0.07 ind:fut:2p; +séjourneriez séjourner ver 2.48 6.96 0.01 0.00 cnd:pre:2p; +séjournerons séjourner ver 2.48 6.96 0.01 0.00 ind:fut:1p; +séjournes séjourner ver 2.48 6.96 0.01 0.00 ind:pre:2s; +séjournez séjourner ver 2.48 6.96 0.10 0.00 imp:pre:2p;ind:pre:2p; +séjourniez séjourner ver 2.48 6.96 0.01 0.07 ind:imp:2p; +séjournions séjourner ver 2.48 6.96 0.00 0.20 ind:imp:1p; +séjournâmes séjourner ver 2.48 6.96 0.00 0.07 ind:pas:1p; +séjourné séjourner ver m s 2.48 6.96 0.56 2.36 par:pas; +séjours séjour nom m p 16.60 43.58 0.90 6.76 +sujétion sujétion nom f s 0.03 1.15 0.03 0.81 +sujétions sujétion nom f p 0.03 1.15 0.00 0.34 +sélect sélect adj m s 0.13 0.54 0.08 0.41 +sélecte sélect adj f s 0.13 0.54 0.02 0.00 +sélecteur sélecteur nom m s 0.05 0.27 0.03 0.07 +sélecteurs sélecteur nom m p 0.05 0.27 0.03 0.20 +sélectif sélectif adj m s 1.18 1.22 0.21 0.47 +sélectifs sélectif adj m p 1.18 1.22 0.08 0.14 +sélection sélection nom f s 4.69 2.64 4.45 2.36 +sélectionna sélectionner ver 4.08 1.76 0.00 0.07 ind:pas:3s; +sélectionnaient sélectionner ver 4.08 1.76 0.00 0.07 ind:imp:3p; +sélectionnait sélectionner ver 4.08 1.76 0.03 0.14 ind:imp:3s; +sélectionnant sélectionner ver 4.08 1.76 0.16 0.00 par:pre; +sélectionne sélectionner ver 4.08 1.76 0.38 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sélectionner sélectionner ver 4.08 1.76 1.13 0.61 inf; +sélectionnera sélectionner ver 4.08 1.76 0.11 0.00 ind:fut:3s; +sélectionnerai sélectionner ver 4.08 1.76 0.02 0.00 ind:fut:1s; +sélectionnerais sélectionner ver 4.08 1.76 0.01 0.00 cnd:pre:1s; +sélectionneur sélectionneur nom m s 0.00 0.07 0.00 0.07 +sélectionneuse sélectionneuse nom f s 0.01 0.00 0.01 0.00 +sélectionnez sélectionner ver 4.08 1.76 0.11 0.00 imp:pre:2p;ind:pre:2p; +sélectionné sélectionner ver m s 4.08 1.76 1.09 0.27 par:pas; +sélectionnée sélectionner ver f s 4.08 1.76 0.13 0.27 par:pas; +sélectionnées sélectionner ver f p 4.08 1.76 0.17 0.07 par:pas; +sélectionnés sélectionner ver m p 4.08 1.76 0.75 0.27 par:pas; +sélections sélection nom f p 4.69 2.64 0.24 0.27 +sélective sélectif adj f s 1.18 1.22 0.83 0.61 +sélectivement sélectivement adv 0.05 0.00 0.05 0.00 +sélectives sélectif adj f p 1.18 1.22 0.05 0.00 +sélectivité sélectivité nom f s 0.01 0.07 0.01 0.07 +sélects sélect adj m p 0.13 0.54 0.02 0.14 +sulfamide sulfamide nom m s 0.19 0.14 0.02 0.00 +sulfamides sulfamide nom m p 0.19 0.14 0.17 0.14 +sulfatages sulfatage nom m p 0.00 0.07 0.00 0.07 +sulfatant sulfater ver 0.04 0.27 0.00 0.07 par:pre; +sulfate sulfate nom m s 0.46 0.68 0.45 0.47 +sulfater sulfater ver 0.04 0.27 0.01 0.20 inf; +sulfates sulfate nom m p 0.46 0.68 0.01 0.20 +sulfateuse sulfateur nom f s 0.06 0.27 0.06 0.14 +sulfateuses sulfateur nom f p 0.06 0.27 0.00 0.14 +sulfaté sulfaté adj m s 0.10 0.07 0.10 0.00 +sulfatées sulfaté adj f p 0.10 0.07 0.00 0.07 +sulfhydrique sulfhydrique adj m s 0.01 0.07 0.01 0.07 +sulfite sulfite nom m s 0.03 0.07 0.03 0.07 +sulfonate sulfonate nom m s 0.03 0.00 0.03 0.00 +sulfonique sulfonique adj s 0.01 0.00 0.01 0.00 +sulfonée sulfoner ver f s 0.00 0.14 0.00 0.07 par:pas; +sulfonés sulfoner ver m p 0.00 0.14 0.00 0.07 par:pas; +sulfure sulfure nom m s 0.15 0.68 0.14 0.34 +sulfures sulfure nom m p 0.15 0.68 0.01 0.34 +sulfureuse sulfureux adj f s 0.50 1.89 0.27 0.95 +sulfureuses sulfureux adj f p 0.50 1.89 0.16 0.47 +sulfureux sulfureux adj m 0.50 1.89 0.07 0.47 +sulfurique sulfurique adj m s 0.82 0.41 0.82 0.41 +sulfurisé sulfurisé adj m s 0.04 0.20 0.04 0.20 +sulfuré sulfuré adj m s 0.03 0.00 0.02 0.00 +sulfurée sulfuré adj f s 0.03 0.00 0.01 0.00 +sulky sulky nom m s 0.14 0.41 0.14 0.41 +sulpicien sulpicien adj m s 0.00 0.61 0.00 0.20 +sulpicienne sulpicien adj f s 0.00 0.61 0.00 0.27 +sulpiciennes sulpicien adj f p 0.00 0.61 0.00 0.14 +sultan sultan nom m s 1.75 7.09 1.68 4.86 +sultanat sultanat nom m s 0.02 0.20 0.02 0.20 +sultane sultane nom f s 0.05 3.78 0.05 3.78 +sultanes sultan nom f p 1.75 7.09 0.00 0.07 +sultans sultan nom m p 1.75 7.09 0.07 2.16 +sélénite sélénite nom s 0.20 0.00 0.02 0.00 +sélénites sélénite nom p 0.20 0.00 0.17 0.00 +sélénium sélénium nom m s 0.19 0.00 0.19 0.00 +séléniure séléniure nom m s 0.03 0.00 0.03 0.00 +sélénographie sélénographie nom f s 0.00 0.07 0.00 0.07 +sumac sumac nom m s 0.13 0.14 0.13 0.14 +sémantique sémantique nom f s 0.29 0.34 0.29 0.34 +sémantiques sémantique adj p 0.05 0.14 0.00 0.07 +sémaphore sémaphore nom m s 0.15 1.01 0.12 0.61 +sémaphores sémaphore nom m p 0.15 1.01 0.03 0.41 +sémaphoriques sémaphorique adj m p 0.00 0.07 0.00 0.07 +sémillant sémillant adj m s 0.19 0.61 0.19 0.41 +sémillante sémillant adj f s 0.19 0.61 0.00 0.20 +sémillon sémillon nom m s 0.00 0.07 0.00 0.07 +séminaire séminaire nom m s 3.58 4.59 2.73 3.58 +séminaires séminaire nom m p 3.58 4.59 0.86 1.01 +séminal séminal adj m s 0.21 1.08 0.17 0.07 +séminale séminal adj f s 0.21 1.08 0.03 0.74 +séminales séminal adj f p 0.21 1.08 0.01 0.07 +séminariste séminariste nom s 0.21 3.72 0.20 2.97 +séminaristes séminariste nom p 0.21 3.72 0.01 0.74 +séminaux séminal adj m p 0.21 1.08 0.00 0.20 +séminole séminole nom s 0.08 0.07 0.03 0.00 +séminoles séminole nom p 0.08 0.07 0.05 0.07 +séminome séminome nom m s 0.01 0.00 0.01 0.00 +sémiologie sémiologie nom f s 0.01 0.07 0.01 0.07 +sémiologue sémiologue nom s 0.00 0.07 0.00 0.07 +sémiotique sémiotique nom f s 0.04 0.00 0.04 0.00 +sémiotiques sémiotique nom f p 0.04 0.00 0.01 0.00 +sémite sémite nom s 0.36 0.34 0.12 0.20 +sémites sémite nom p 0.36 0.34 0.23 0.14 +sémitique sémitique adj s 0.02 0.20 0.02 0.07 +sémitiques sémitique adj f p 0.02 0.20 0.00 0.14 +summum summum nom m s 0.56 0.47 0.56 0.47 +sumo sumo nom m s 0.88 0.07 0.88 0.07 +sumérien sumérien nom m s 0.04 0.00 0.04 0.00 +sénat sénat nom m s 1.38 1.82 1.38 1.82 +sénateur sénateur nom m s 19.77 3.31 14.85 2.03 +sénateurs sénateur nom m p 19.77 3.31 4.48 1.28 +sénatorial sénatorial adj m s 0.25 0.47 0.07 0.20 +sénatoriale sénatorial adj f s 0.25 0.47 0.17 0.20 +sénatoriales sénatorial nom f p 0.03 0.00 0.03 0.00 +sénatrice sénateur nom f s 19.77 3.31 0.44 0.00 +sénatus_consulte sénatus_consulte nom m s 0.00 0.07 0.00 0.07 +sénescence sénescence nom f s 0.01 0.14 0.01 0.14 +sénevé sénevé nom m s 0.00 0.14 0.00 0.14 +sénile sénile adj s 2.18 1.82 1.94 1.49 +sénilement sénilement adv 0.00 0.07 0.00 0.07 +séniles sénile adj p 2.18 1.82 0.23 0.34 +sénilité sénilité nom f s 0.23 0.81 0.23 0.81 +sunlight sunlight nom m s 0.16 0.41 0.16 0.00 +sunlights sunlight nom m p 0.16 0.41 0.00 0.41 +sunna sunna nom f s 0.02 0.07 0.02 0.07 +sunnites sunnite nom p 0.02 0.00 0.02 0.00 +séné séné nom m s 0.16 0.14 0.16 0.07 +sénéchal sénéchal nom m s 0.01 5.81 0.01 5.20 +sénéchaux sénéchal nom m p 0.01 5.81 0.00 0.61 +sénégalais sénégalais nom m 0.14 2.09 0.14 1.82 +sénégalaise sénégalais adj f s 0.11 3.24 0.01 0.00 +sénégalaises sénégalais adj f p 0.11 3.24 0.01 0.00 +sénés séné nom m p 0.16 0.14 0.00 0.07 +suons suer ver 7.28 10.34 0.02 0.00 ind:pre:1p; +suât suer ver 7.28 10.34 0.00 0.07 sub:imp:3s; +séoudite séoudite adj f s 0.00 0.27 0.00 0.27 +sépale sépale nom m s 0.03 0.00 0.01 0.00 +sépales sépale nom m p 0.03 0.00 0.02 0.00 +sépara séparer ver 66.22 109.80 0.27 2.77 ind:pas:3s; +séparable séparable adj s 0.00 0.14 0.00 0.14 +séparai séparer ver 66.22 109.80 0.01 0.14 ind:pas:1s; +séparaient séparer ver 66.22 109.80 0.30 7.70 ind:imp:3p; +séparais séparer ver 66.22 109.80 0.01 0.34 ind:imp:1s; +séparait séparer ver 66.22 109.80 1.23 18.04 ind:imp:3s; +séparant séparer ver 66.22 109.80 0.56 4.26 par:pre; +séparateur séparateur nom m s 0.07 0.00 0.07 0.00 +séparation séparation nom f s 10.15 14.39 9.88 13.45 +séparations séparation nom f p 10.15 14.39 0.27 0.95 +séparatiste séparatiste adj m s 0.45 0.20 0.09 0.20 +séparatistes séparatiste nom p 0.45 0.00 0.40 0.00 +séparatrice séparateur adj f s 0.01 0.20 0.01 0.00 +sépare séparer ver 66.22 109.80 12.77 14.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +séparent séparer ver 66.22 109.80 3.41 6.42 ind:pre:3p; +séparer séparer ver 66.22 109.80 20.34 18.38 ind:pre:2p;inf; +séparera séparer ver 66.22 109.80 1.39 0.34 ind:fut:3s; +séparerai séparer ver 66.22 109.80 0.32 0.34 ind:fut:1s; +sépareraient séparer ver 66.22 109.80 0.17 0.14 cnd:pre:3p; +séparerais séparer ver 66.22 109.80 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +séparerait séparer ver 66.22 109.80 0.22 0.54 cnd:pre:3s; +sépareras séparer ver 66.22 109.80 0.02 0.00 ind:fut:2s; +séparerez séparer ver 66.22 109.80 0.16 0.14 ind:fut:2p; +séparerons séparer ver 66.22 109.80 0.25 0.20 ind:fut:1p; +sépareront séparer ver 66.22 109.80 0.09 0.00 ind:fut:3p; +séparez séparer ver 66.22 109.80 2.59 0.14 imp:pre:2p;ind:pre:2p; +sépariez séparer ver 66.22 109.80 0.32 0.07 ind:imp:2p; +séparions séparer ver 66.22 109.80 0.08 0.68 ind:imp:1p; +séparâmes séparer ver 66.22 109.80 0.01 0.34 ind:pas:1p; +séparons séparer ver 66.22 109.80 2.17 0.47 imp:pre:1p;ind:pre:1p; +séparât séparer ver 66.22 109.80 0.00 0.27 sub:imp:3s; +séparèrent séparer ver 66.22 109.80 0.30 3.11 ind:pas:3p; +séparé séparer ver m s 66.22 109.80 4.11 8.78 par:pas; +séparée séparer ver f s 66.22 109.80 2.11 6.49 par:pas; +séparées séparé adj f p 5.41 7.30 1.11 1.28 +séparément séparément adv 4.01 3.78 4.01 3.78 +séparés séparer ver m p 66.22 109.80 11.81 12.43 par:pas; +super_espion super_espion nom m s 0.02 0.00 0.02 0.00 +super_grand super_grand nom m p 0.00 0.07 0.00 0.07 +super_pilote super_pilote adj s 0.01 0.00 0.01 0.00 +super_puissance super_puissance nom f p 0.03 0.00 0.03 0.00 +super super adj 154.83 7.09 154.83 7.09 +superbe superbe adj s 53.42 23.85 45.32 19.05 +superbement superbement adv 0.30 2.64 0.30 2.64 +superbes superbe adj p 53.42 23.85 8.10 4.80 +supercalculateur supercalculateur nom m s 0.06 0.00 0.06 0.00 +supercarburant supercarburant nom m s 0.02 0.00 0.02 0.00 +superchampion superchampion nom m s 0.01 0.07 0.00 0.07 +superchampions superchampion nom m p 0.01 0.07 0.01 0.00 +supercherie supercherie nom f s 1.60 1.76 1.55 1.69 +supercheries supercherie nom f p 1.60 1.76 0.04 0.07 +superfamille superfamille nom f s 0.01 0.00 0.01 0.00 +superficialité superficialité nom f s 0.27 0.34 0.26 0.34 +superficialités superficialité nom f p 0.27 0.34 0.01 0.00 +superficie superficie nom f s 0.35 1.01 0.35 1.01 +superficiel superficiel adj m s 5.71 5.61 2.12 1.96 +superficielle superficiel adj f s 5.71 5.61 1.93 2.23 +superficiellement superficiellement adv 0.06 0.41 0.06 0.41 +superficielles superficiel adj f p 5.71 5.61 1.00 0.68 +superficiels superficiel adj m p 5.71 5.61 0.67 0.74 +superfin superfin adj m s 0.00 0.07 0.00 0.07 +superflu superflu adj m s 2.94 4.46 1.41 2.16 +superflue superflu adj f s 2.94 4.46 0.16 1.08 +superflues superflu adj f p 2.94 4.46 0.35 0.68 +superfluité superfluité nom f s 0.00 0.20 0.00 0.07 +superfluités superfluité nom f p 0.00 0.20 0.00 0.14 +superflus superflu adj m p 2.94 4.46 1.01 0.54 +superforteresses superforteresse adj f p 0.00 0.07 0.00 0.07 +superfétatoire superfétatoire adj s 0.03 0.54 0.03 0.27 +superfétatoires superfétatoire adj f p 0.03 0.54 0.00 0.27 +supergrand supergrand nom m s 0.00 0.07 0.00 0.07 +superintendant superintendant nom m s 0.10 0.14 0.10 0.07 +superintendante superintendante nom f s 0.00 0.07 0.00 0.07 +superintendants superintendant nom m p 0.10 0.14 0.00 0.07 +superlatif superlatif adj m s 0.03 0.07 0.02 0.07 +superlatifs superlatif nom m p 0.02 0.27 0.02 0.27 +superlative superlatif adj f s 0.03 0.07 0.01 0.00 +superlativement superlativement adv 0.00 0.07 0.00 0.07 +superman superman nom m 1.52 0.20 1.12 0.14 +supermarché supermarché nom m s 12.19 5.68 10.68 5.34 +supermarchés supermarché nom m p 12.19 5.68 1.51 0.34 +supermen superman nom m p 1.52 0.20 0.40 0.07 +supernova supernova nom f s 0.58 0.07 0.55 0.07 +supernovas supernova nom f p 0.58 0.07 0.04 0.00 +superordinateur superordinateur nom m s 0.03 0.00 0.03 0.00 +superphosphates superphosphate nom m p 0.00 0.07 0.00 0.07 +superposa superposer ver 0.56 7.50 0.00 0.07 ind:pas:3s; +superposable superposable adj s 0.00 0.20 0.00 0.07 +superposables superposable adj m p 0.00 0.20 0.00 0.14 +superposaient superposer ver 0.56 7.50 0.00 1.01 ind:imp:3p; +superposait superposer ver 0.56 7.50 0.00 0.34 ind:imp:3s; +superposant superposer ver 0.56 7.50 0.02 0.74 par:pre; +superpose superposer ver 0.56 7.50 0.04 0.81 ind:pre:1s;ind:pre:3s; +superposent superposer ver 0.56 7.50 0.26 1.35 ind:pre:3p; +superposer superposer ver 0.56 7.50 0.03 0.88 inf; +superposez superposer ver 0.56 7.50 0.01 0.00 ind:pre:2p; +superposition superposition nom f s 0.03 0.95 0.02 0.61 +superpositions superposition nom f p 0.03 0.95 0.01 0.34 +superposé superposé adj m s 0.37 5.00 0.10 0.14 +superposée superposer ver f s 0.56 7.50 0.01 0.27 par:pas; +superposées superposé adj f p 0.37 5.00 0.04 1.96 +superposés superposé adj m p 0.37 5.00 0.23 2.84 +superpouvoirs superpouvoir nom m p 0.20 0.00 0.20 0.00 +superproduction superproduction nom f s 0.08 0.27 0.06 0.20 +superproductions superproduction nom f p 0.08 0.27 0.02 0.07 +superpuissance superpuissance nom f s 0.34 0.00 0.22 0.00 +superpuissances superpuissance nom f p 0.34 0.00 0.12 0.00 +superpuissant superpuissant adj m s 0.04 0.07 0.01 0.00 +superpuissante superpuissant adj f s 0.04 0.07 0.01 0.00 +superpuissants superpuissant adj m p 0.04 0.07 0.01 0.07 +supers super nom m p 73.26 2.77 1.78 0.07 +supersonique supersonique adj s 0.33 0.20 0.11 0.07 +supersoniques supersonique adj p 0.33 0.20 0.23 0.14 +superstar superstar nom f s 1.82 0.41 1.67 0.34 +superstars superstar nom f p 1.82 0.41 0.15 0.07 +superstitieuse superstitieux adj f s 2.54 3.92 0.30 1.82 +superstitieusement superstitieusement adv 0.00 0.34 0.00 0.34 +superstitieuses superstitieux adj f p 2.54 3.92 0.17 0.14 +superstitieux superstitieux adj m 2.54 3.92 2.08 1.96 +superstition superstition nom f s 6.11 5.95 3.61 4.19 +superstitions superstition nom f p 6.11 5.95 2.50 1.76 +superstructure superstructure nom f s 0.11 1.35 0.11 0.20 +superstructures superstructure nom f p 0.11 1.35 0.00 1.15 +supertanker supertanker nom m s 0.03 0.00 0.03 0.00 +supervisa superviser ver 3.61 0.74 0.02 0.00 ind:pas:3s; +supervisais superviser ver 3.61 0.74 0.03 0.00 ind:imp:1s; +supervisait superviser ver 3.61 0.74 0.14 0.27 ind:imp:3s; +supervisant superviser ver 3.61 0.74 0.03 0.00 par:pre; +supervise superviser ver 3.61 0.74 1.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supervisent superviser ver 3.61 0.74 0.05 0.00 ind:pre:3p; +superviser superviser ver 3.61 0.74 1.03 0.20 inf; +supervisera superviser ver 3.61 0.74 0.11 0.00 ind:fut:3s; +superviserai superviser ver 3.61 0.74 0.09 0.00 ind:fut:1s; +superviserais superviser ver 3.61 0.74 0.01 0.00 cnd:pre:1s; +superviserait superviser ver 3.61 0.74 0.04 0.00 cnd:pre:3s; +superviseras superviser ver 3.61 0.74 0.02 0.00 ind:fut:2s; +superviserez superviser ver 3.61 0.74 0.04 0.00 ind:fut:2p; +superviserons superviser ver 3.61 0.74 0.01 0.00 ind:fut:1p; +superviseront superviser ver 3.61 0.74 0.01 0.07 ind:fut:3p; +superviseur superviseur nom m s 1.99 0.07 1.66 0.00 +superviseurs superviseur nom m p 1.99 0.07 0.33 0.07 +supervisez superviser ver 3.61 0.74 0.04 0.00 ind:pre:2p; +supervisiez superviser ver 3.61 0.74 0.05 0.00 ind:imp:2p; +supervision supervision nom f s 0.68 0.27 0.68 0.20 +supervisions supervision nom f p 0.68 0.27 0.00 0.07 +supervisons superviser ver 3.61 0.74 0.05 0.00 ind:pre:1p; +supervisé superviser ver m s 3.61 0.74 0.62 0.07 par:pas; +supervisée superviser ver f s 3.61 0.74 0.11 0.00 par:pas; +supervisées superviser ver f p 3.61 0.74 0.04 0.00 par:pas; +supervisés superviser ver m p 3.61 0.74 0.03 0.07 par:pas; +sépharade sépharade adj f s 0.01 0.20 0.01 0.07 +sépharades sépharade nom p 0.00 0.41 0.00 0.14 +sépia sépia nom f s 0.02 1.15 0.02 1.08 +sépias sépia nom f p 0.02 1.15 0.00 0.07 +supin supin nom m s 0.00 0.07 0.00 0.07 +supination supination nom f s 0.05 0.14 0.05 0.14 +suppôt suppôt nom m s 0.39 0.95 0.17 0.54 +suppôts suppôt nom m p 0.39 0.95 0.22 0.41 +supplanta supplanter ver 0.60 1.62 0.00 0.07 ind:pas:3s; +supplantait supplanter ver 0.60 1.62 0.03 0.20 ind:imp:3s; +supplantant supplanter ver 0.60 1.62 0.01 0.07 par:pre; +supplante supplanter ver 0.60 1.62 0.07 0.00 ind:pre:3s; +supplantent supplanter ver 0.60 1.62 0.04 0.07 ind:pre:3p; +supplanter supplanter ver 0.60 1.62 0.20 0.34 inf; +supplanté supplanter ver m s 0.60 1.62 0.26 0.54 par:pas; +supplantée supplanter ver f s 0.60 1.62 0.00 0.34 par:pas; +supplia supplier ver 53.65 34.46 0.55 3.65 ind:pas:3s; +suppliai supplier ver 53.65 34.46 0.01 0.81 ind:pas:1s; +suppliaient supplier ver 53.65 34.46 0.08 0.95 ind:imp:3p; +suppliais supplier ver 53.65 34.46 0.27 0.88 ind:imp:1s;ind:imp:2s; +suppliait supplier ver 53.65 34.46 0.95 5.07 ind:imp:3s; +suppliant supplier ver 53.65 34.46 0.57 3.11 par:pre; +suppliante suppliant adj f s 1.20 7.09 0.50 2.70 +suppliantes suppliant adj f p 1.20 7.09 0.00 0.47 +suppliants suppliant adj m p 1.20 7.09 0.50 1.15 +supplication supplication nom f s 0.33 4.80 0.11 2.03 +supplications supplication nom f p 0.33 4.80 0.22 2.77 +supplice supplice nom m s 3.77 13.38 3.13 11.35 +supplices supplice nom m p 3.77 13.38 0.64 2.03 +supplicia supplicier ver 0.48 0.88 0.00 0.07 ind:pas:3s; +suppliciant suppliciant adj m s 0.00 0.27 0.00 0.14 +suppliciantes suppliciant adj f p 0.00 0.27 0.00 0.14 +supplicient supplicier ver 0.48 0.88 0.00 0.14 ind:pre:3p; +supplicier supplicier ver 0.48 0.88 0.14 0.41 inf; +supplicierez supplicier ver 0.48 0.88 0.14 0.00 ind:fut:2p; +supplicié supplicier ver m s 0.48 0.88 0.10 0.14 par:pas; +suppliciée supplicié nom f s 0.01 2.64 0.01 0.20 +suppliciées supplicié nom f p 0.01 2.64 0.00 0.14 +suppliciés supplicier ver m p 0.48 0.88 0.11 0.07 par:pas; +supplie supplier ver 53.65 34.46 37.38 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +supplient supplier ver 53.65 34.46 0.12 0.74 ind:pre:3p; +supplier supplier ver 53.65 34.46 4.96 4.19 inf; +suppliera supplier ver 53.65 34.46 0.10 0.00 ind:fut:3s; +supplierai supplier ver 53.65 34.46 0.39 0.07 ind:fut:1s; +supplieraient supplier ver 53.65 34.46 0.02 0.00 cnd:pre:3p; +supplierais supplier ver 53.65 34.46 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +supplierait supplier ver 53.65 34.46 0.05 0.07 cnd:pre:3s; +supplieras supplier ver 53.65 34.46 0.44 0.00 ind:fut:2s; +supplierez supplier ver 53.65 34.46 0.06 0.00 ind:fut:2p; +supplieriez supplier ver 53.65 34.46 0.01 0.00 cnd:pre:2p; +supplieront supplier ver 53.65 34.46 0.17 0.00 ind:fut:3p; +supplies supplier ver 53.65 34.46 0.42 0.14 ind:pre:2s; +suppliez supplier ver 53.65 34.46 0.17 0.00 imp:pre:2p;ind:pre:2p; +supplions supplier ver 53.65 34.46 0.27 0.20 ind:pre:1p; +suppliât supplier ver 53.65 34.46 0.00 0.07 sub:imp:3s; +supplique supplique nom f s 0.28 1.08 0.21 0.68 +suppliques supplique nom f p 0.28 1.08 0.07 0.41 +supplié supplier ver m s 53.65 34.46 4.33 2.97 par:pas; +suppliée supplier ver f s 53.65 34.46 1.89 0.41 par:pas; +suppliés supplier ver m p 53.65 34.46 0.42 0.14 par:pas; +suppléaient suppléer ver 0.19 2.30 0.00 0.20 ind:imp:3p; +suppléait suppléer ver 0.19 2.30 0.01 0.34 ind:imp:3s; +suppléance suppléance nom f s 0.14 0.00 0.14 0.00 +suppléant suppléant nom m s 0.50 0.54 0.34 0.41 +suppléante suppléant adj f s 0.20 0.20 0.03 0.00 +suppléants suppléant nom m p 0.50 0.54 0.14 0.14 +supplée suppléer ver 0.19 2.30 0.00 0.47 ind:pre:3s; +suppléent suppléer ver 0.19 2.30 0.00 0.07 ind:pre:3p; +suppléer suppléer ver 0.19 2.30 0.14 0.68 inf; +suppléeraient suppléer ver 0.19 2.30 0.00 0.07 cnd:pre:3p; +suppléerait suppléer ver 0.19 2.30 0.00 0.14 cnd:pre:3s; +suppléerez suppléer ver 0.19 2.30 0.00 0.07 ind:fut:2p; +supplément supplément nom m s 2.80 7.50 2.60 6.42 +supplémentaire supplémentaire adj s 8.97 15.68 4.19 10.20 +supplémentaires supplémentaire adj p 8.97 15.68 4.79 5.47 +supplémenter supplémenter ver 0.00 0.14 0.00 0.07 inf; +suppléments supplément nom m p 2.80 7.50 0.20 1.08 +supplémentées supplémenter ver f p 0.00 0.14 0.00 0.07 par:pas; +supplétifs supplétif nom m p 0.00 0.14 0.00 0.14 +supplétive supplétif adj f s 0.00 0.14 0.00 0.14 +suppléé suppléer ver m s 0.19 2.30 0.00 0.07 par:pas; +support support nom m s 2.94 6.42 2.71 5.20 +supporta supporter ver 86.04 81.22 0.05 1.01 ind:pas:3s; +supportable supportable adj s 1.73 6.22 1.60 5.00 +supportables supportable adj p 1.73 6.22 0.13 1.22 +supportai supporter ver 86.04 81.22 0.01 0.14 ind:pas:1s; +supportaient supporter ver 86.04 81.22 0.14 1.49 ind:imp:3p; +supportais supporter ver 86.04 81.22 2.29 2.30 ind:imp:1s;ind:imp:2s; +supportait supporter ver 86.04 81.22 2.38 10.47 ind:imp:3s; +supportant supporter ver 86.04 81.22 0.14 2.43 par:pre; +supporte supporter ver 86.04 81.22 29.14 12.43 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +supportent supporter ver 86.04 81.22 2.14 2.23 ind:pre:3p;sub:pre:3p; +supporter supporter ver 86.04 81.22 30.04 33.45 inf; +supportera supporter ver 86.04 81.22 1.46 0.47 ind:fut:3s; +supporterai supporter ver 86.04 81.22 2.27 0.95 ind:fut:1s; +supporteraient supporter ver 86.04 81.22 0.23 0.20 cnd:pre:3p; +supporterais supporter ver 86.04 81.22 2.58 1.01 cnd:pre:1s;cnd:pre:2s; +supporterait supporter ver 86.04 81.22 1.18 3.38 cnd:pre:3s; +supporteras supporter ver 86.04 81.22 0.52 0.07 ind:fut:2s; +supporterez supporter ver 86.04 81.22 0.25 0.14 ind:fut:2p; +supporteriez supporter ver 86.04 81.22 0.05 0.20 cnd:pre:2p; +supporterons supporter ver 86.04 81.22 0.22 0.07 ind:fut:1p; +supporteront supporter ver 86.04 81.22 0.13 0.07 ind:fut:3p; +supporters supporter nom m p 6.07 5.54 1.75 2.91 +supportes supporter ver 86.04 81.22 3.86 0.34 ind:pre:2s; +supporteur supporteur nom m s 0.08 0.07 0.02 0.00 +supportez supporter ver 86.04 81.22 1.37 0.54 imp:pre:2p;ind:pre:2p; +supportiez supporter ver 86.04 81.22 0.18 0.00 ind:imp:2p; +supportions supporter ver 86.04 81.22 0.00 0.41 ind:imp:1p; +supportons supporter ver 86.04 81.22 0.44 0.27 imp:pre:1p;ind:pre:1p; +supportât supporter ver 86.04 81.22 0.00 0.27 sub:imp:3s; +supportrice supporteur nom f s 0.08 0.07 0.06 0.00 +supportrices supportrice nom f p 0.13 0.00 0.13 0.00 +support_chaussette support_chaussette nom m p 0.00 0.07 0.00 0.07 +supports support nom m p 2.94 6.42 0.22 1.22 +supportèrent supporter ver 86.04 81.22 0.00 0.07 ind:pas:3p; +supporté supporter ver m s 86.04 81.22 4.56 5.00 par:pas; +supportée supporter ver f s 86.04 81.22 0.20 0.81 par:pas; +supportées supporter ver f p 86.04 81.22 0.01 0.54 par:pas; +supportés supporter ver m p 86.04 81.22 0.21 0.47 par:pas; +supposa supposer ver 120.31 62.50 0.02 0.95 ind:pas:3s; +supposable supposable adj s 0.00 0.07 0.00 0.07 +supposai supposer ver 120.31 62.50 0.00 0.61 ind:pas:1s; +supposaient supposer ver 120.31 62.50 0.03 0.41 ind:imp:3p; +supposais supposer ver 120.31 62.50 0.50 2.30 ind:imp:1s;ind:imp:2s; +supposait supposer ver 120.31 62.50 0.11 3.18 ind:imp:3s; +supposant supposer ver 120.31 62.50 1.62 1.89 par:pre; +suppose supposer ver 120.31 62.50 89.07 29.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supposent supposer ver 120.31 62.50 0.16 0.88 ind:pre:3p; +supposer supposer ver 120.31 62.50 3.92 14.46 inf; +supposera supposer ver 120.31 62.50 0.05 0.00 ind:fut:3s; +supposerai supposer ver 120.31 62.50 0.14 0.00 ind:fut:1s; +supposerait supposer ver 120.31 62.50 0.22 0.34 cnd:pre:3s; +supposeront supposer ver 120.31 62.50 0.04 0.07 ind:fut:3p; +supposes supposer ver 120.31 62.50 0.88 0.07 ind:pre:2s; +supposez supposer ver 120.31 62.50 1.43 1.28 imp:pre:2p;ind:pre:2p; +supposiez supposer ver 120.31 62.50 0.07 0.07 ind:imp:2p; +supposions supposer ver 120.31 62.50 0.06 0.07 ind:imp:1p; +supposition supposition nom f s 4.10 5.34 2.74 2.50 +suppositions supposition nom f p 4.10 5.34 1.36 2.84 +suppositoire suppositoire nom m s 0.56 0.88 0.27 0.54 +suppositoires suppositoire nom m p 0.56 0.88 0.29 0.34 +supposâmes supposer ver 120.31 62.50 0.00 0.07 ind:pas:1p; +supposons supposer ver 120.31 62.50 4.54 1.62 imp:pre:1p;ind:pre:1p; +supposèrent supposer ver 120.31 62.50 0.01 0.07 ind:pas:3p; +supposé supposer ver m s 120.31 62.50 12.07 3.24 par:pas; +supposée supposer ver f s 120.31 62.50 2.71 0.95 par:pas; +supposées supposer ver f p 120.31 62.50 0.36 0.07 par:pas; +supposément supposément adv 0.04 0.00 0.04 0.00 +supposés supposer ver m p 120.31 62.50 2.30 0.41 par:pas; +suppresseur suppresseur adj m s 0.03 0.00 0.03 0.00 +suppresseur suppresseur nom m s 0.03 0.00 0.03 0.00 +suppression suppression nom f s 0.80 2.09 0.74 1.96 +suppressions suppression nom f p 0.80 2.09 0.06 0.14 +supprima supprimer ver 13.45 15.07 0.00 0.41 ind:pas:3s; +supprimai supprimer ver 13.45 15.07 0.00 0.07 ind:pas:1s; +supprimaient supprimer ver 13.45 15.07 0.10 0.07 ind:imp:3p; +supprimais supprimer ver 13.45 15.07 0.07 0.07 ind:imp:1s; +supprimait supprimer ver 13.45 15.07 0.17 0.88 ind:imp:3s; +supprimant supprimer ver 13.45 15.07 0.21 1.28 par:pre; +supprime supprimer ver 13.45 15.07 1.99 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +suppriment supprimer ver 13.45 15.07 0.21 0.14 ind:pre:3p; +supprimer supprimer ver 13.45 15.07 5.86 5.74 inf; +supprimera supprimer ver 13.45 15.07 0.05 0.07 ind:fut:3s; +supprimerai supprimer ver 13.45 15.07 0.15 0.07 ind:fut:1s; +supprimeraient supprimer ver 13.45 15.07 0.03 0.07 cnd:pre:3p; +supprimerait supprimer ver 13.45 15.07 0.07 0.14 cnd:pre:3s; +supprimerons supprimer ver 13.45 15.07 0.00 0.07 ind:fut:1p; +supprimez supprimer ver 13.45 15.07 0.62 0.07 imp:pre:2p;ind:pre:2p; +supprimons supprimer ver 13.45 15.07 0.54 0.14 imp:pre:1p;ind:pre:1p; +supprimât supprimer ver 13.45 15.07 0.00 0.14 sub:imp:3s; +supprimé supprimer ver m s 13.45 15.07 2.19 2.57 par:pas; +supprimée supprimer ver f s 13.45 15.07 0.35 0.61 par:pas; +supprimées supprimer ver f p 13.45 15.07 0.23 0.34 par:pas; +supprimés supprimer ver m p 13.45 15.07 0.60 0.54 par:pas; +suppuraient suppurer ver 0.23 0.68 0.00 0.07 ind:imp:3p; +suppurait suppurer ver 0.23 0.68 0.00 0.14 ind:imp:3s; +suppurant suppurer ver 0.23 0.68 0.01 0.07 par:pre; +suppurante suppurant adj f s 0.03 0.07 0.01 0.00 +suppurantes suppurant adj f p 0.03 0.07 0.01 0.07 +suppuration suppuration nom f s 0.01 0.14 0.01 0.07 +suppurations suppuration nom f p 0.01 0.14 0.00 0.07 +suppure suppurer ver 0.23 0.68 0.17 0.20 ind:pre:3s; +suppurent suppurer ver 0.23 0.68 0.02 0.00 ind:pre:3p; +suppurer suppurer ver 0.23 0.68 0.02 0.14 inf; +suppurerait suppurer ver 0.23 0.68 0.00 0.07 cnd:pre:3s; +supputa supputer ver 0.16 4.19 0.00 0.14 ind:pas:3s; +supputai supputer ver 0.16 4.19 0.00 0.07 ind:pas:1s; +supputaient supputer ver 0.16 4.19 0.00 0.27 ind:imp:3p; +supputais supputer ver 0.16 4.19 0.00 0.07 ind:imp:1s; +supputait supputer ver 0.16 4.19 0.01 0.88 ind:imp:3s; +supputant supputer ver 0.16 4.19 0.00 0.54 par:pre; +supputation supputation nom f s 0.03 0.95 0.00 0.14 +supputations supputation nom f p 0.03 0.95 0.03 0.81 +suppute supputer ver 0.16 4.19 0.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supputent supputer ver 0.16 4.19 0.00 0.14 ind:pre:3p; +supputer supputer ver 0.16 4.19 0.01 0.95 inf; +supputé supputer ver m s 0.16 4.19 0.00 0.20 par:pas; +supputées supputer ver f p 0.16 4.19 0.00 0.07 par:pas; +supra_humain supra_humain adj m s 0.00 0.07 0.00 0.07 +supra supra adv 0.26 0.34 0.26 0.34 +supraconducteur supraconducteur nom m s 0.16 0.00 0.09 0.00 +supraconducteurs supraconducteur nom m p 0.16 0.00 0.07 0.00 +supraconductivité supraconductivité nom f s 0.01 0.00 0.01 0.00 +supraconductrice supraconducteur adj f s 0.01 0.00 0.01 0.00 +supranational supranational adj m s 0.00 0.14 0.00 0.07 +supranationales supranational adj f p 0.00 0.14 0.00 0.07 +supranaturel supranaturel adj m s 0.01 0.00 0.01 0.00 +supraterrestre supraterrestre adj s 0.01 0.14 0.01 0.14 +suprématie suprématie nom f s 0.47 1.08 0.47 1.08 +suprême suprême adj s 15.26 22.97 14.98 21.76 +suprêmement suprêmement adv 0.09 0.81 0.09 0.81 +suprêmes suprême adj p 15.26 22.97 0.28 1.22 +sépulcral sépulcral adj m s 0.03 1.08 0.01 0.34 +sépulcrale sépulcral adj f s 0.03 1.08 0.01 0.68 +sépulcrales sépulcral adj f p 0.03 1.08 0.01 0.07 +sépulcre sépulcre nom m s 0.48 1.08 0.08 1.01 +sépulcres sépulcre nom m p 0.48 1.08 0.40 0.07 +sépulture sépulture nom f s 1.51 2.97 1.44 2.16 +sépultures sépulture nom f p 1.51 2.97 0.07 0.81 +supérette supérette nom f s 0.56 0.07 0.56 0.07 +supérieur supérieur adj m s 25.72 46.69 8.74 17.70 +supérieure supérieur adj f s 25.72 46.69 10.70 18.65 +supérieurement supérieurement adv 0.07 1.01 0.07 1.01 +supérieures supérieur adj f p 25.72 46.69 2.82 3.51 +supérieurs supérieur nom m p 13.63 8.11 6.04 2.77 +supériorité supériorité nom f s 2.00 9.26 2.00 8.72 +supériorités supériorité nom f p 2.00 9.26 0.00 0.54 +séquanaise séquanais nom f s 0.00 0.20 0.00 0.20 +séquelle séquelle nom f s 1.31 2.36 0.11 0.41 +séquelles séquelle nom f p 1.31 2.36 1.21 1.96 +séquence séquence nom f s 7.61 4.73 6.02 2.97 +séquencer séquencer ver 0.20 0.00 0.20 0.00 inf; +séquences séquence nom f p 7.61 4.73 1.59 1.76 +séquenceur séquenceur nom m s 0.11 0.00 0.11 0.00 +séquençage séquençage nom m s 0.27 0.00 0.27 0.00 +séquentiel séquentiel adj m s 0.13 0.00 0.02 0.00 +séquentielle séquentiel adj f s 0.13 0.00 0.11 0.00 +séquentiellement séquentiellement adv 0.01 0.00 0.01 0.00 +séquestraient séquestrer ver 2.05 2.03 0.01 0.07 ind:imp:3p; +séquestrait séquestrer ver 2.05 2.03 0.14 0.20 ind:imp:3s; +séquestration séquestration nom f s 0.50 0.47 0.30 0.34 +séquestrations séquestration nom f p 0.50 0.47 0.20 0.14 +séquestre séquestre nom m s 0.33 0.95 0.31 0.81 +séquestrer séquestrer ver 2.05 2.03 0.44 0.47 inf; +séquestres séquestre nom m p 0.33 0.95 0.02 0.14 +séquestrez séquestrer ver 2.05 2.03 0.12 0.00 ind:pre:2p; +séquestré séquestrer ver m s 2.05 2.03 0.37 0.54 par:pas; +séquestrée séquestrer ver f s 2.05 2.03 0.83 0.47 par:pas; +séquestrés séquestrer ver m p 2.05 2.03 0.08 0.14 par:pas; +séquoia séquoia nom m s 0.41 1.49 0.30 1.22 +séquoias séquoia nom m p 0.41 1.49 0.11 0.27 +sur_le_champ sur_le_champ adv 6.79 10.95 6.79 10.95 +sur_mesure sur_mesure nom m s 0.03 0.00 0.03 0.00 +sur_place sur_place nom m s 0.20 0.27 0.20 0.27 +sur sur pre 2520.11 5320.47 2520.11 5320.47 +surabondaient surabonder ver 0.00 0.14 0.00 0.07 ind:imp:3p; +surabondamment surabondamment adv 0.00 0.20 0.00 0.20 +surabondance surabondance nom f s 0.08 1.35 0.08 1.08 +surabondances surabondance nom f p 0.08 1.35 0.00 0.27 +surabondant surabondant adj m s 0.00 0.61 0.00 0.27 +surabondante surabondant adj f s 0.00 0.61 0.00 0.27 +surabondantes surabondant adj f p 0.00 0.61 0.00 0.07 +surabondent surabonder ver 0.00 0.14 0.00 0.07 ind:pre:3p; +sérac sérac nom m s 0.21 0.07 0.21 0.00 +séracs sérac nom m p 0.21 0.07 0.00 0.07 +suractiver suractiver ver 0.01 0.00 0.01 0.00 inf; +suractivité suractivité nom f s 0.00 0.07 0.00 0.07 +suractivé suractivé adj m s 0.03 0.14 0.03 0.07 +suractivée suractivé adj f s 0.03 0.14 0.00 0.07 +suradaptation suradaptation nom f s 0.00 0.14 0.00 0.14 +suradapté antiadapter ver m s 0.00 0.20 0.00 0.20 par:pas; +surah surah nom m s 0.00 0.20 0.00 0.20 +suraigu suraigu adj m s 0.03 3.38 0.01 1.28 +suraigus suraigu adj m p 0.03 3.38 0.01 0.61 +suraiguë suraigu adj f s 0.03 3.38 0.01 1.22 +suraiguës suraigu adj f p 0.03 3.38 0.00 0.27 +sérail sérail nom m s 0.47 13.31 0.47 13.31 +surajoute surajouter ver 0.00 0.41 0.00 0.07 ind:pre:3s; +surajouter surajouter ver 0.00 0.41 0.00 0.07 inf; +surajouté surajouter ver m s 0.00 0.41 0.00 0.07 par:pas; +surajoutée surajouter ver f s 0.00 0.41 0.00 0.07 par:pas; +surajoutés surajouter ver m p 0.00 0.41 0.00 0.14 par:pas; +suralimentation suralimentation nom f s 0.00 0.07 0.00 0.07 +suralimenter suralimenter ver 0.04 0.20 0.02 0.07 inf; +suralimentes suralimenter ver 0.04 0.20 0.01 0.07 ind:pre:2s; +suralimentée suralimenté adj f s 0.14 0.14 0.00 0.14 +suralimentés suralimenté adj m p 0.14 0.14 0.14 0.00 +suranné suranné adj m s 0.04 1.96 0.02 0.61 +surannée suranné adj f s 0.04 1.96 0.01 0.47 +surannées suranné adj f p 0.04 1.96 0.00 0.41 +surannés suranné adj m p 0.04 1.96 0.01 0.47 +séraphin séraphin nom m s 0.20 0.41 0.06 0.20 +séraphins séraphin nom m p 0.20 0.41 0.14 0.20 +séraphique séraphique adj s 0.00 0.54 0.00 0.34 +séraphiques séraphique adj p 0.00 0.54 0.00 0.20 +surard surard nom m s 0.00 0.07 0.00 0.07 +surarmement surarmement nom m s 0.01 0.00 0.01 0.00 +surarmé surarmer ver m s 0.07 0.00 0.02 0.00 par:pas; +surarmée surarmer ver f s 0.07 0.00 0.01 0.00 par:pas; +surarmés surarmer ver m p 0.07 0.00 0.04 0.00 par:pas; +surbaissé surbaissé adj m s 0.01 0.68 0.00 0.14 +surbaissée surbaissé adj f s 0.01 0.68 0.01 0.27 +surbaissées surbaissé adj f p 0.01 0.68 0.00 0.14 +surbaissés surbaissé adj m p 0.01 0.68 0.00 0.14 +surbooké surbooké adj m s 0.23 0.00 0.18 0.00 +surbookée surbooké adj f s 0.23 0.00 0.03 0.00 +surbookées surbooké adj f p 0.23 0.00 0.02 0.00 +surboum surboum nom f s 0.23 0.88 0.20 0.41 +surboums surboum nom f p 0.23 0.88 0.03 0.47 +surbrillance surbrillance nom f s 0.01 0.00 0.01 0.00 +surbrodé surbrodé adj m s 0.00 0.07 0.00 0.07 +surcapacité surcapacité nom f s 0.03 0.00 0.03 0.00 +surcharge surcharge nom f s 1.57 0.88 1.55 0.61 +surchargeaient surcharger ver 2.52 7.30 0.00 0.20 ind:imp:3p; +surchargeait surcharger ver 2.52 7.30 0.12 0.00 ind:imp:3s; +surchargeant surcharger ver 2.52 7.30 0.00 0.14 par:pre; +surcharger surcharger ver 2.52 7.30 0.44 0.27 inf; +surcharges surcharge nom f p 1.57 0.88 0.02 0.27 +surchargé surcharger ver m s 2.52 7.30 1.07 1.76 par:pas; +surchargée surcharger ver f s 2.52 7.30 0.28 1.69 par:pas; +surchargées surcharger ver f p 2.52 7.30 0.03 1.15 par:pas; +surchargés surcharger ver m p 2.52 7.30 0.32 1.76 par:pas; +surchauffait surchauffer ver 0.67 3.31 0.01 0.07 ind:imp:3s; +surchauffe surchauffe nom f s 0.48 0.27 0.48 0.27 +surchauffer surchauffer ver 0.67 3.31 0.13 0.00 inf; +surchauffez surchauffer ver 0.67 3.31 0.01 0.00 ind:pre:2p; +surchauffé surchauffer ver m s 0.67 3.31 0.29 1.08 par:pas; +surchauffée surchauffer ver f s 0.67 3.31 0.03 1.28 par:pas; +surchauffées surchauffer ver f p 0.67 3.31 0.00 0.27 par:pas; +surchauffés surchauffer ver m p 0.67 3.31 0.00 0.54 par:pas; +surchoix surchoix nom m 0.01 0.20 0.01 0.20 +surclassait surclasser ver 0.28 0.47 0.01 0.07 ind:imp:3s; +surclassant surclasser ver 0.28 0.47 0.00 0.07 par:pre; +surclasse surclasser ver 0.28 0.47 0.08 0.00 ind:pre:1s;ind:pre:3s; +surclassent surclasser ver 0.28 0.47 0.00 0.07 ind:pre:3p; +surclasser surclasser ver 0.28 0.47 0.02 0.07 inf; +surclasserais surclasser ver 0.28 0.47 0.00 0.07 cnd:pre:1s; +surclasserait surclasser ver 0.28 0.47 0.02 0.00 cnd:pre:3s; +surclasseras surclasser ver 0.28 0.47 0.00 0.07 ind:fut:2s; +surclassé surclasser ver m s 0.28 0.47 0.11 0.00 par:pas; +surclassés surclasser ver m p 0.28 0.47 0.04 0.07 par:pas; +surcoût surcoût nom m s 0.02 0.00 0.02 0.00 +surcompensation surcompensation nom f s 0.01 0.07 0.01 0.07 +surcompenser surcompenser ver 0.03 0.07 0.00 0.07 inf; +surcompensé surcompenser ver m s 0.03 0.07 0.03 0.00 par:pas; +surcomprimée surcomprimer ver f s 0.01 0.00 0.01 0.00 par:pas; +surconsommation surconsommation nom f s 0.02 0.00 0.02 0.00 +surconsomme surconsommer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +surcontre surcontre nom m s 0.03 0.00 0.03 0.00 +surcot surcot nom m s 0.00 0.14 0.00 0.07 +surcots surcot nom m p 0.00 0.14 0.00 0.07 +surcoupé surcouper ver m s 0.01 0.00 0.01 0.00 par:pas; +surcroît surcroît nom m s 1.21 17.03 1.21 16.96 +surcroîts surcroît nom m p 1.21 17.03 0.00 0.07 +surdimensionné surdimensionné adj m s 0.13 0.00 0.09 0.00 +surdimensionnée surdimensionné adj f s 0.13 0.00 0.04 0.00 +surdité surdité nom f s 0.41 2.16 0.41 2.16 +surdoré surdorer ver m s 0.00 0.14 0.00 0.07 par:pas; +surdorée surdorer ver f s 0.00 0.14 0.00 0.07 par:pas; +surdosage surdosage nom m s 0.01 0.00 0.01 0.00 +surdose surdose nom f s 0.27 0.00 0.27 0.00 +surdoué surdoué nom m s 1.00 1.08 0.23 0.47 +surdouée surdoué nom f s 1.00 1.08 0.04 0.00 +surdoués surdoué nom m p 1.00 1.08 0.72 0.61 +surdéterminé surdéterminer ver m s 0.00 0.07 0.00 0.07 par:pas; +surdévelopper surdévelopper ver 0.01 0.00 0.01 0.00 inf; +surdéveloppé surdéveloppé adj m s 0.06 0.07 0.04 0.00 +surdéveloppée surdéveloppé adj f s 0.06 0.07 0.01 0.00 +surdéveloppées surdéveloppé adj f p 0.06 0.07 0.00 0.07 +surdéveloppés surdéveloppé adj m p 0.06 0.07 0.01 0.00 +sure sur adj_sup f s 65.92 16.22 12.38 0.41 +sureau sureau nom m s 0.15 1.89 0.05 1.42 +sureaux sureau nom m p 0.15 1.89 0.10 0.47 +sureffectif sureffectif nom m s 0.10 0.00 0.10 0.00 +suremploi suremploi nom m s 0.01 0.00 0.01 0.00 +surenchère surenchère nom f s 0.65 2.91 0.64 1.76 +surenchères surenchère nom f p 0.65 2.91 0.01 1.15 +surenchéri surenchérir ver m s 0.30 1.08 0.11 0.00 par:pas; +surenchérir surenchérir ver 0.30 1.08 0.16 0.34 inf; +surenchérissant surenchérir ver 0.30 1.08 0.00 0.07 par:pre; +surenchérissent surenchérir ver 0.30 1.08 0.00 0.07 ind:pre:3p; +surenchérit surenchérir ver 0.30 1.08 0.04 0.61 ind:pre:3s;ind:pas:3s; +surencombrée surencombré adj f s 0.00 0.07 0.00 0.07 +surendettés surendetté adj m p 0.04 0.00 0.04 0.00 +surent savoir ver_sup 4516.72 2003.58 0.07 1.42 ind:pas:3p; +surentraînement surentraînement nom m s 0.10 0.00 0.10 0.00 +surentraîné surentraîné adj m s 0.09 0.00 0.02 0.00 +surentraînées surentraîné adj f p 0.09 0.00 0.02 0.00 +surentraînés surentraîné adj m p 0.09 0.00 0.05 0.00 +sures sur adj_sup f p 65.92 16.22 0.25 0.20 +surestimation surestimation nom f s 0.01 0.00 0.01 0.00 +surestime surestimer ver 1.83 0.54 0.34 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surestimer surestimer ver 1.83 0.54 0.16 0.07 inf; +surestimerais surestimer ver 1.83 0.54 0.00 0.07 cnd:pre:2s; +surestimez surestimer ver 1.83 0.54 0.58 0.07 imp:pre:2p;ind:pre:2p; +surestimé surestimer ver m s 1.83 0.54 0.44 0.07 par:pas; +surestimée surestimer ver f s 1.83 0.54 0.28 0.14 par:pas; +surestimés surestimer ver m p 1.83 0.54 0.04 0.07 par:pas; +suret suret adj m s 0.10 0.27 0.00 0.07 +surets suret adj m p 0.10 0.27 0.10 0.00 +surette suret adj f s 0.10 0.27 0.00 0.20 +séreux séreux adj m s 0.00 0.07 0.00 0.07 +surexcitait surexciter ver 1.48 1.69 0.00 0.07 ind:imp:3s; +surexcitant surexciter ver 1.48 1.69 0.01 0.00 par:pre; +surexcitation surexcitation nom f s 0.04 0.81 0.04 0.81 +surexcite surexciter ver 1.48 1.69 0.02 0.00 ind:pre:3s; +surexciter surexciter ver 1.48 1.69 0.00 0.14 inf; +surexcité surexciter ver m s 1.48 1.69 0.92 0.54 par:pas; +surexcitée surexciter ver f s 1.48 1.69 0.18 0.27 par:pas; +surexcitées surexciter ver f p 1.48 1.69 0.14 0.14 par:pas; +surexcités surexciter ver m p 1.48 1.69 0.20 0.54 par:pas; +surexploité surexploiter ver m s 0.03 0.00 0.03 0.00 par:pas; +surexposition surexposition nom f s 0.02 0.00 0.02 0.00 +surexposé surexposer ver m s 0.07 0.14 0.02 0.07 par:pas; +surexposée surexposer ver f s 0.07 0.14 0.01 0.00 par:pas; +surexposées surexposer ver f p 0.07 0.14 0.02 0.00 par:pas; +surexposés surexposer ver m p 0.07 0.14 0.02 0.07 par:pas; +surf surf nom m s 5.57 0.34 5.57 0.34 +surface surface nom f s 22.70 57.23 21.85 51.49 +surfacer surfacer ver 0.01 0.00 0.01 0.00 inf; +surfaces surface nom f p 22.70 57.23 0.84 5.74 +surfactant surfactant nom m s 0.08 0.00 0.08 0.00 +surfacturation surfacturation nom f s 0.04 0.00 0.04 0.00 +surfacture surfacturer ver 0.15 0.00 0.04 0.00 ind:pre:1s;ind:pre:3s; +surfacturer surfacturer ver 0.15 0.00 0.05 0.00 inf; +surfacturé surfacturer ver m s 0.15 0.00 0.03 0.00 par:pas; +surfacturés surfacturer ver m p 0.15 0.00 0.02 0.00 par:pas; +surfaire surfaire ver 0.09 0.20 0.00 0.07 inf; +surfais surfer ver 9.38 0.34 0.09 0.00 ind:imp:1s; +surfaisait surfaire ver 0.09 0.20 0.00 0.07 ind:imp:3s; +surfait surfait adj m s 0.46 0.34 0.38 0.14 +surfaite surfaire ver f s 0.09 0.20 0.07 0.07 par:pas; +surfaites surfait adj f p 0.46 0.34 0.03 0.00 +surfaits surfaire ver m p 0.09 0.20 0.02 0.00 par:pas; +surfant surfer ver 9.38 0.34 0.16 0.00 par:pre; +surfaçage surfaçage nom m s 0.00 0.07 0.00 0.07 +surfe surfer ver 9.38 0.34 3.15 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surfent surfer ver 9.38 0.34 0.09 0.00 ind:pre:3p; +surfer surfer ver 9.38 0.34 5.28 0.20 inf; +surferas surfer ver 9.38 0.34 0.01 0.00 ind:fut:2s; +surfes surfer ver 9.38 0.34 0.10 0.00 ind:pre:2s; +surfeur surfeur nom m s 1.95 0.00 0.65 0.00 +surfeurs surfeur nom m p 1.95 0.00 1.06 0.00 +surfeuse surfeur nom f s 1.95 0.00 0.24 0.00 +surfeuses surfeuse nom f p 0.01 0.00 0.01 0.00 +surfez surfer ver 9.38 0.34 0.09 0.00 imp:pre:2p;ind:pre:2p; +surfilage surfilage nom m s 0.00 0.07 0.00 0.07 +surfin surfin adj m s 0.14 0.07 0.14 0.00 +surfine surfin adj f s 0.14 0.07 0.00 0.07 +surfons surfer ver 9.38 0.34 0.02 0.00 imp:pre:1p; +surfé surfer ver m s 9.38 0.34 0.28 0.00 par:pas; +surgît surgir ver 10.95 73.18 0.00 0.07 sub:imp:3s; +surgeler surgeler ver 0.09 0.34 0.01 0.00 inf; +surgelé surgelé nom m s 1.11 0.47 0.22 0.27 +surgelée surgelé adj f s 0.64 0.54 0.19 0.14 +surgelées surgelé adj f p 0.64 0.54 0.17 0.00 +surgelés surgelé nom m p 1.11 0.47 0.88 0.20 +surgeon surgeon nom m s 0.02 0.54 0.02 0.34 +surgeonnent surgeonner ver 0.00 0.07 0.00 0.07 ind:pre:3p; +surgeons surgeon nom m p 0.02 0.54 0.00 0.20 +surgi surgir ver m s 10.95 73.18 2.79 7.70 par:pas; +surgie surgir ver f s 10.95 73.18 0.04 2.23 par:pas; +surgies surgir ver f p 10.95 73.18 0.02 0.95 par:pas; +surgir surgir ver 10.95 73.18 2.26 17.84 inf; +surgira surgir ver 10.95 73.18 0.19 0.34 ind:fut:3s; +surgiraient surgir ver 10.95 73.18 0.00 0.14 cnd:pre:3p; +surgirait surgir ver 10.95 73.18 0.02 0.54 cnd:pre:3s; +surgirent surgir ver 10.95 73.18 0.17 1.55 ind:pas:3p; +surgiront surgir ver 10.95 73.18 0.04 0.41 ind:fut:3p; +surgis surgir ver m p 10.95 73.18 0.09 1.96 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +surgissaient surgir ver 10.95 73.18 0.28 5.20 ind:imp:3p; +surgissais surgir ver 10.95 73.18 0.10 0.07 ind:imp:1s;ind:imp:2s; +surgissait surgir ver 10.95 73.18 0.30 8.04 ind:imp:3s; +surgissant surgir ver 10.95 73.18 0.20 3.85 par:pre; +surgisse surgir ver 10.95 73.18 0.04 0.81 sub:pre:3s; +surgissement surgissement nom m s 0.00 1.01 0.00 0.95 +surgissements surgissement nom m p 0.00 1.01 0.00 0.07 +surgissent surgir ver 10.95 73.18 1.31 4.39 ind:pre:3p; +surgissez surgir ver 10.95 73.18 0.14 0.14 imp:pre:2p;ind:pre:2p; +surgit surgir ver 10.95 73.18 2.96 16.96 ind:pre:3s;ind:pas:3s; +surgèle surgeler ver 0.09 0.34 0.00 0.14 ind:pre:3s; +surgé surgé nom s 0.01 1.08 0.01 1.08 +surgénérateur surgénérateur nom m s 0.03 0.00 0.03 0.00 +surhomme surhomme nom m s 1.11 1.08 0.86 0.81 +surhommes surhomme nom m p 1.11 1.08 0.25 0.27 +surhumain surhumain adj m s 1.71 4.19 0.40 2.50 +surhumaine surhumain adj f s 1.71 4.19 1.00 1.15 +surhumaines surhumain adj f p 1.71 4.19 0.04 0.27 +surhumains surhumain adj m p 1.71 4.19 0.28 0.27 +surhumanité surhumanité nom f s 0.00 0.07 0.00 0.07 +suri suri adj m s 0.07 0.54 0.06 0.20 +sérial sérial nom m s 0.03 0.00 0.03 0.00 +sériant sérier ver 0.00 0.14 0.00 0.07 par:pre; +suricate suricate nom m s 0.05 0.00 0.05 0.00 +série série nom f s 36.53 39.59 33.34 35.41 +surie suri adj f s 0.07 0.54 0.01 0.27 +sériel sériel adj m s 0.01 0.41 0.01 0.14 +sérielle sériel adj f s 0.01 0.41 0.00 0.27 +sérier sérier ver 0.00 0.14 0.00 0.07 inf; +séries série nom f p 36.53 39.59 3.19 4.19 +suries suri adj f p 0.07 0.54 0.00 0.07 +sérieuse sérieux adj f s 110.48 66.01 23.64 13.65 +sérieusement sérieusement adv 39.34 21.76 39.34 21.76 +sérieuses sérieux adj f p 110.48 66.01 5.85 9.53 +sérieux sérieux adj m 110.48 66.01 80.99 42.84 +surimi surimi nom m s 0.01 0.00 0.01 0.00 +surimpression surimpression nom f s 0.05 0.81 0.05 0.68 +surimpressions surimpression nom f p 0.05 0.81 0.00 0.14 +surin surin nom m s 0.66 3.99 0.66 3.85 +surinait suriner ver 0.15 0.54 0.01 0.00 ind:imp:3s; +surine suriner ver 0.15 0.54 0.00 0.07 ind:pre:3s; +surinent suriner ver 0.15 0.54 0.00 0.07 ind:pre:3p; +suriner suriner ver 0.15 0.54 0.02 0.34 inf; +surinerais suriner ver 0.15 0.54 0.00 0.07 cnd:pre:2s; +surinfections surinfection nom f p 0.00 0.07 0.00 0.07 +surinformation surinformation nom f s 0.00 0.07 0.00 0.07 +surinformé surinformer ver m s 0.00 0.88 0.00 0.88 par:pas; +surins surin nom m p 0.66 3.99 0.00 0.14 +surintendance surintendance nom f s 0.00 0.07 0.00 0.07 +surintendant surintendant nom m s 0.43 0.27 0.43 0.07 +surintendante surintendant nom f s 0.43 0.27 0.00 0.20 +surintensité surintensité nom f s 0.04 0.00 0.04 0.00 +suriné suriner ver m s 0.15 0.54 0.12 0.00 par:pas; +surinvestissement surinvestissement nom m s 0.01 0.07 0.01 0.07 +sérique sérique adj m s 0.01 0.00 0.01 0.00 +surir surir ver 0.01 0.20 0.00 0.14 inf; +surit surir ver 0.01 0.20 0.00 0.07 ind:pre:3s; +surjet surjet nom m s 0.04 0.14 0.04 0.07 +surjeteuse jeteur nom f s 0.23 0.47 0.02 0.00 +surjets surjet nom m p 0.04 0.14 0.00 0.07 +surlendemain surlendemain nom m s 0.35 7.57 0.35 7.57 +surligner surligner ver 0.24 0.00 0.07 0.00 inf; +surligneur surligneur nom m s 0.03 0.00 0.03 0.00 +surligné surligner ver m s 0.24 0.00 0.17 0.00 par:pas; +surmenage surmenage nom m s 0.63 0.61 0.63 0.61 +surmenait surmener ver 1.33 0.88 0.01 0.14 ind:imp:3s; +surmenant surmener ver 1.33 0.88 0.01 0.00 par:pre; +surmener surmener ver 1.33 0.88 0.08 0.07 ind:pre:2p;inf; +surmenez surmener ver 1.33 0.88 0.15 0.00 imp:pre:2p;ind:pre:2p; +surmené surmener ver m s 1.33 0.88 0.69 0.20 par:pas; +surmenée surmené adj f s 0.69 1.01 0.20 0.20 +surmenées surmené adj f p 0.69 1.01 0.03 0.14 +surmenés surmener ver m p 1.33 0.88 0.15 0.20 par:pas; +surmoi surmoi nom m 0.12 0.68 0.12 0.68 +surmâle surmâle nom m s 0.00 0.14 0.00 0.14 +surmonta surmonter ver 9.31 28.11 0.10 0.47 ind:pas:3s; +surmontai surmonter ver 9.31 28.11 0.00 0.14 ind:pas:1s; +surmontaient surmonter ver 9.31 28.11 0.01 0.47 ind:imp:3p; +surmontais surmonter ver 9.31 28.11 0.00 0.07 ind:imp:1s; +surmontait surmonter ver 9.31 28.11 0.00 1.62 ind:imp:3s; +surmontant surmonter ver 9.31 28.11 0.00 1.96 par:pre; +surmonte surmonter ver 9.31 28.11 0.51 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surmontent surmonter ver 9.31 28.11 0.06 0.47 ind:pre:3p; +surmonter surmonter ver 9.31 28.11 5.85 5.00 inf; +surmontera surmonter ver 9.31 28.11 0.17 0.14 ind:fut:3s; +surmonterai surmonter ver 9.31 28.11 0.04 0.00 ind:fut:1s; +surmonteraient surmonter ver 9.31 28.11 0.00 0.07 cnd:pre:3p; +surmonterait surmonter ver 9.31 28.11 0.00 0.20 cnd:pre:3s; +surmonteras surmonter ver 9.31 28.11 0.32 0.00 ind:fut:2s; +surmonterez surmonter ver 9.31 28.11 0.03 0.07 ind:fut:2p; +surmonterons surmonter ver 9.31 28.11 0.23 0.00 ind:fut:1p; +surmontez surmonter ver 9.31 28.11 0.04 0.00 imp:pre:2p;ind:pre:2p; +surmontions surmonter ver 9.31 28.11 0.00 0.07 ind:imp:1p; +surmontèrent surmonter ver 9.31 28.11 0.01 0.07 ind:pas:3p; +surmonté surmonter ver m s 9.31 28.11 1.46 6.49 par:pas; +surmontée surmonter ver f s 9.31 28.11 0.28 5.27 par:pas; +surmontées surmonter ver f p 9.31 28.11 0.03 1.82 par:pas; +surmontés surmonter ver m p 9.31 28.11 0.14 2.30 par:pas; +surmène surmener ver 1.33 0.88 0.08 0.07 imp:pre:2s;ind:pre:3s; +surmédicalisation surmédicalisation nom f s 0.01 0.00 0.01 0.00 +surmulot surmulot nom m s 0.00 0.34 0.00 0.07 +surmulots surmulot nom m p 0.00 0.34 0.00 0.27 +surmultipliée surmultiplié adj f s 0.04 0.14 0.04 0.07 +surmultipliées surmultiplié adj f p 0.04 0.14 0.00 0.07 +surnage surnager ver 0.09 2.64 0.05 0.41 imp:pre:2s;ind:pre:3s; +surnagea surnager ver 0.09 2.64 0.00 0.14 ind:pas:3s; +surnageaient surnager ver 0.09 2.64 0.00 0.34 ind:imp:3p; +surnageait surnager ver 0.09 2.64 0.00 0.61 ind:imp:3s; +surnageant surnager ver 0.09 2.64 0.00 0.14 par:pre; +surnageants surnageant adj m p 0.00 0.20 0.00 0.07 +surnagent surnager ver 0.09 2.64 0.01 0.27 ind:pre:3p; +surnageons surnager ver 0.09 2.64 0.01 0.00 ind:pre:1p; +surnager surnager ver 0.09 2.64 0.01 0.54 inf; +surnagera surnager ver 0.09 2.64 0.00 0.07 ind:fut:3s; +surnages surnager ver 0.09 2.64 0.00 0.07 ind:pre:2s; +surnagèrent surnager ver 0.09 2.64 0.00 0.07 ind:pas:3p; +surnagé surnager ver m s 0.09 2.64 0.01 0.00 par:pas; +surnaturel surnaturel nom m s 2.71 0.54 2.71 0.54 +surnaturelle surnaturel adj f s 3.38 6.22 0.88 2.30 +surnaturelles surnaturel adj f p 3.38 6.22 0.39 1.01 +surnaturels surnaturel adj m p 3.38 6.22 0.75 0.34 +surnom surnom nom m s 7.79 6.49 6.20 5.61 +surnombre surnombre nom_sup m s 0.30 0.68 0.30 0.68 +surnomma surnommer ver 4.93 6.55 0.03 0.14 ind:pas:3s; +surnommaient surnommer ver 4.93 6.55 0.01 0.14 ind:imp:3p; +surnommais surnommer ver 4.93 6.55 0.02 0.00 ind:imp:1s;ind:imp:2s; +surnommait surnommer ver 4.93 6.55 0.48 1.08 ind:imp:3s; +surnommant surnommer ver 4.93 6.55 0.01 0.07 par:pre; +surnomme surnommer ver 4.93 6.55 1.27 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surnomment surnommer ver 4.93 6.55 0.44 0.07 ind:pre:3p; +surnommer surnommer ver 4.93 6.55 0.04 0.74 inf;; +surnommera surnommer ver 4.93 6.55 0.01 0.00 ind:fut:3s; +surnommerais surnommer ver 4.93 6.55 0.00 0.07 cnd:pre:1s; +surnommions surnommer ver 4.93 6.55 0.00 0.07 ind:imp:1p; +surnommèrent surnommer ver 4.93 6.55 0.01 0.00 ind:pas:3p; +surnommé surnommer ver m s 4.93 6.55 2.28 2.77 par:pas; +surnommée surnommé adj f s 0.84 1.69 0.26 0.20 +surnommés surnommer ver m p 4.93 6.55 0.08 0.07 par:pas; +surnoms surnom nom m p 7.79 6.49 1.59 0.88 +surnuméraire surnuméraire nom s 0.07 0.14 0.07 0.00 +surnuméraires surnuméraire adj m p 0.04 0.14 0.03 0.00 +suroît suroît nom m s 0.03 0.61 0.03 0.47 +suroîts suroît nom m p 0.03 0.61 0.00 0.14 +sérologie sérologie nom f s 0.09 0.00 0.09 0.00 +séronégatif séronégatif adj m s 0.23 0.14 0.19 0.14 +séronégatifs séronégatif nom m p 0.03 0.34 0.03 0.27 +séronégative séronégatif adj f s 0.23 0.14 0.03 0.00 +séropo séropo nom s 0.17 0.14 0.17 0.14 +séropositif séropositif adj m s 2.04 1.15 0.99 0.81 +séropositifs séropositif adj m p 2.04 1.15 0.17 0.27 +séropositive séropositif adj f s 2.04 1.15 0.81 0.00 +séropositives séropositif adj f p 2.04 1.15 0.09 0.07 +séropositivité séropositivité nom f s 0.09 0.27 0.09 0.27 +sérosité sérosité nom f s 0.02 0.07 0.02 0.07 +sérotonine sérotonine nom f s 0.61 0.00 0.61 0.00 +suroxygéner suroxygéner ver 0.01 0.00 0.01 0.00 inf; +suroxygéné suroxygéné adj m s 0.00 0.07 0.00 0.07 +surpassa surpasser ver 6.64 3.45 0.12 0.27 ind:pas:3s; +surpassaient surpasser ver 6.64 3.45 0.01 0.07 ind:imp:3p; +surpassais surpasser ver 6.64 3.45 0.10 0.20 ind:imp:1s; +surpassait surpasser ver 6.64 3.45 0.05 0.41 ind:imp:3s; +surpassant surpasser ver 6.64 3.45 0.14 0.14 par:pre; +surpasse surpasser ver 6.64 3.45 1.36 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surpassent surpasser ver 6.64 3.45 0.35 0.14 ind:pre:3p; +surpasser surpasser ver 6.64 3.45 1.46 0.74 inf; +surpassera surpasser ver 6.64 3.45 0.54 0.00 ind:fut:3s; +surpasserai surpasser ver 6.64 3.45 0.02 0.00 ind:fut:1s; +surpasseraient surpasser ver 6.64 3.45 0.01 0.00 cnd:pre:3p; +surpasserait surpasser ver 6.64 3.45 0.02 0.14 cnd:pre:3s; +surpasseras surpasser ver 6.64 3.45 0.01 0.00 ind:fut:2s; +surpasses surpasser ver 6.64 3.45 0.21 0.00 ind:pre:2s; +surpassez surpasser ver 6.64 3.45 0.04 0.00 imp:pre:2p;ind:pre:2p; +surpassons surpasser ver 6.64 3.45 0.16 0.00 imp:pre:1p;ind:pre:1p; +surpassât surpasser ver 6.64 3.45 0.01 0.07 sub:imp:3s; +surpassé surpasser ver m s 6.64 3.45 1.50 0.41 par:pas; +surpassée surpasser ver f s 6.64 3.45 0.36 0.20 par:pas; +surpassées surpasser ver f p 6.64 3.45 0.00 0.07 par:pas; +surpassés surpasser ver m p 6.64 3.45 0.20 0.20 par:pas; +surpatte surpatte nom f s 0.00 0.20 0.00 0.14 +surpattes surpatte nom f p 0.00 0.20 0.00 0.07 +surpaye surpayer ver 0.21 0.00 0.01 0.00 ind:pre:3s; +surpayé surpayer ver m s 0.21 0.00 0.13 0.00 par:pas; +surpayés surpayer ver m p 0.21 0.00 0.08 0.00 par:pas; +surpeuplement surpeuplement nom m s 0.03 0.07 0.03 0.07 +surpeupler surpeupler ver 0.01 0.00 0.01 0.00 inf; +surpeuplé surpeuplé adj m s 0.80 1.62 0.27 0.74 +surpeuplée surpeuplé adj f s 0.80 1.62 0.33 0.20 +surpeuplées surpeuplé adj f p 0.80 1.62 0.06 0.14 +surpeuplés surpeuplé adj m p 0.80 1.62 0.13 0.54 +surpiqûres surpiqûre nom f p 0.00 0.07 0.00 0.07 +surplace surplace nom m s 0.30 0.34 0.30 0.34 +surplis surplis nom m 0.07 1.69 0.07 1.69 +surplomb surplomb nom m s 0.09 2.23 0.09 2.03 +surplomba surplomber ver 0.69 8.85 0.00 0.07 ind:pas:3s; +surplombaient surplomber ver 0.69 8.85 0.00 0.88 ind:imp:3p; +surplombait surplomber ver 0.69 8.85 0.03 2.30 ind:imp:3s; +surplombant surplomber ver 0.69 8.85 0.24 1.28 par:pre; +surplombante surplombant adj f s 0.02 0.41 0.00 0.07 +surplombe surplomber ver 0.69 8.85 0.37 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surplombent surplomber ver 0.69 8.85 0.03 0.54 ind:pre:3p; +surplomber surplomber ver 0.69 8.85 0.01 0.14 inf; +surplomberait surplomber ver 0.69 8.85 0.00 0.07 cnd:pre:3s; +surplombions surplomber ver 0.69 8.85 0.00 0.14 ind:imp:1p; +surplombs surplomb nom m p 0.09 2.23 0.00 0.20 +surplombé surplomber ver m s 0.69 8.85 0.01 0.34 par:pas; +surplombée surplomber ver f s 0.69 8.85 0.00 0.20 par:pas; +surplombés surplomber ver m p 0.69 8.85 0.00 0.07 par:pas; +surplus surplus nom m 1.25 10.95 1.25 10.95 +surpoids surpoids nom m 0.23 0.00 0.23 0.00 +surpopulation surpopulation nom f s 0.45 0.14 0.45 0.14 +surprît surprendre ver 56.80 116.62 0.01 0.47 sub:imp:3s; +surprenaient surprendre ver 56.80 116.62 0.11 0.74 ind:imp:3p; +surprenais surprendre ver 56.80 116.62 0.07 1.76 ind:imp:1s;ind:imp:2s; +surprenait surprendre ver 56.80 116.62 0.45 7.30 ind:imp:3s; +surprenant surprenant adj m s 8.03 19.73 4.89 8.78 +surprenante surprenant adj f s 8.03 19.73 2.67 7.84 +surprenantes surprenant adj f p 8.03 19.73 0.34 1.76 +surprenants surprenant adj m p 8.03 19.73 0.14 1.35 +surprend surprendre ver 56.80 116.62 5.74 7.09 ind:pre:3s; +surprendra surprendre ver 56.80 116.62 0.75 0.61 ind:fut:3s; +surprendrai surprendre ver 56.80 116.62 0.20 0.14 ind:fut:1s; +surprendraient surprendre ver 56.80 116.62 0.05 0.07 cnd:pre:3p; +surprendrais surprendre ver 56.80 116.62 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +surprendrait surprendre ver 56.80 116.62 0.33 0.88 cnd:pre:3s; +surprendras surprendre ver 56.80 116.62 0.07 0.00 ind:fut:2s; +surprendre surprendre ver 56.80 116.62 8.00 17.43 inf; +surprendrez surprendre ver 56.80 116.62 0.02 0.00 ind:fut:2p; +surprendrons surprendre ver 56.80 116.62 0.01 0.07 ind:fut:1p; +surprendront surprendre ver 56.80 116.62 0.19 0.07 ind:fut:3p; +surprends surprendre ver 56.80 116.62 1.59 2.03 imp:pre:2s;ind:pre:1s;ind:pre:2s; +surprenez surprendre ver 56.80 116.62 1.06 0.27 imp:pre:2p;ind:pre:2p; +surpreniez surprendre ver 56.80 116.62 0.11 0.00 ind:imp:2p; +surprenions surprendre ver 56.80 116.62 0.00 0.14 ind:imp:1p; +surprenne surprendre ver 56.80 116.62 0.98 0.61 sub:pre:1s;sub:pre:3s; +surprennent surprendre ver 56.80 116.62 0.33 0.88 ind:pre:3p; +surprenons surprendre ver 56.80 116.62 0.04 0.14 imp:pre:1p;ind:pre:1p; +surpresseur surpresseur nom m s 0.01 0.00 0.01 0.00 +surpression surpression nom f s 0.09 0.14 0.09 0.14 +surprime surprime nom f s 0.14 0.00 0.14 0.00 +surprirent surprendre ver 56.80 116.62 0.11 0.68 ind:pas:3p; +surpris surprendre ver m 56.80 116.62 24.64 50.00 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +surprise_partie surprise_partie nom f s 0.20 0.61 0.18 0.27 +surprise_party surprise_party nom f s 0.10 0.07 0.10 0.07 +surprise surprise nom f s 82.94 77.16 75.62 68.51 +surprise_partie surprise_partie nom f p 0.20 0.61 0.02 0.34 +surprises surprise nom f p 82.94 77.16 7.32 8.65 +surprit surprendre ver 56.80 116.62 0.39 10.61 ind:pas:3s; +surproduction surproduction nom f s 0.05 0.14 0.05 0.14 +surprotecteur surprotecteur adj m s 0.06 0.00 0.06 0.00 +surprotectrice surprotecteur nom f s 0.10 0.00 0.10 0.00 +surprotège surprotéger ver 0.17 0.00 0.04 0.00 ind:pre:1s; +surprotégeais surprotéger ver 0.17 0.00 0.01 0.00 ind:imp:1s; +surprotéger surprotéger ver 0.17 0.00 0.10 0.00 inf; +surprotégé surprotéger ver m s 0.17 0.00 0.02 0.00 par:pas; +surpuissance surpuissance nom f s 0.01 0.07 0.01 0.07 +surpuissant surpuissant adj m s 0.16 0.41 0.09 0.27 +surpuissante surpuissant adj f s 0.16 0.41 0.04 0.07 +surpuissants surpuissant adj m p 0.16 0.41 0.03 0.07 +surqualifié surqualifié adj m s 0.11 0.00 0.08 0.00 +surqualifiée surqualifié adj f s 0.11 0.00 0.03 0.00 +surréalisme surréalisme nom m s 0.10 1.96 0.10 1.96 +surréaliste surréaliste adj s 0.98 2.64 0.95 1.96 +surréalistes surréaliste adj p 0.98 2.64 0.03 0.68 +surréalité surréalité nom f s 0.00 0.14 0.00 0.14 +surréel surréel adj m s 0.06 0.41 0.03 0.07 +surréelle surréel adj f s 0.06 0.41 0.02 0.20 +surréelles surréel adj f p 0.06 0.41 0.00 0.14 +surrégime surrégime nom m s 0.03 0.07 0.03 0.07 +surrénal surrénal adj m s 0.23 0.07 0.01 0.00 +surrénale surrénal adj f s 0.23 0.07 0.05 0.00 +surrénales surrénal adj f p 0.23 0.07 0.17 0.07 +surrénalien surrénalien adj m s 0.01 0.00 0.01 0.00 +surréservation surréservation nom f s 0.01 0.00 0.01 0.00 +surs sur adj_sup m p 65.92 16.22 1.11 0.07 +sursaturé sursaturer ver m s 0.01 0.20 0.01 0.20 par:pas; +sursaturée sursaturé adj f s 0.00 0.14 0.00 0.07 +sursaturées sursaturé adj f p 0.00 0.14 0.00 0.07 +sursaut sursaut nom m s 0.77 21.28 0.71 17.57 +sursauta sursauter ver 1.66 28.11 0.22 8.78 ind:pas:3s; +sursautai sursauter ver 1.66 28.11 0.10 1.15 ind:pas:1s; +sursautaient sursauter ver 1.66 28.11 0.01 0.54 ind:imp:3p; +sursautais sursauter ver 1.66 28.11 0.00 0.20 ind:imp:1s;ind:imp:2s; +sursautait sursauter ver 1.66 28.11 0.00 1.15 ind:imp:3s; +sursautant sursauter ver 1.66 28.11 0.00 1.89 par:pre; +sursaute sursauter ver 1.66 28.11 0.14 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sursautent sursauter ver 1.66 28.11 0.02 0.34 ind:pre:3p; +sursauter sursauter ver 1.66 28.11 0.69 5.95 inf; +sursauteraient sursauter ver 1.66 28.11 0.00 0.07 cnd:pre:3p; +sursauterais sursauter ver 1.66 28.11 0.00 0.07 cnd:pre:1s; +sursautez sursauter ver 1.66 28.11 0.01 0.14 imp:pre:2p;ind:pre:2p; +sursautons sursauter ver 1.66 28.11 0.00 0.14 ind:pre:1p; +sursautât sursauter ver 1.66 28.11 0.00 0.07 sub:imp:3s; +sursauts sursaut nom m p 0.77 21.28 0.06 3.72 +sursautèrent sursauter ver 1.66 28.11 0.00 0.14 ind:pas:3p; +sursauté sursauter ver m s 1.66 28.11 0.47 2.84 par:pas; +surseoir surseoir ver 0.12 0.74 0.10 0.47 inf; +sursis sursis nom m 3.60 7.36 3.60 7.36 +sursitaire sursitaire adj s 0.01 0.00 0.01 0.00 +sursitaires sursitaire nom p 0.00 0.07 0.00 0.07 +sursum_corda sursum_corda adv 0.00 0.20 0.00 0.20 +surtaxe surtaxe nom f s 0.13 0.14 0.13 0.07 +surtaxer surtaxer ver 0.04 0.00 0.01 0.00 inf; +surtaxes surtaxe nom f p 0.13 0.14 0.00 0.07 +surtaxés surtaxer ver m p 0.04 0.00 0.02 0.00 par:pas; +surtendu surtendu adj m s 0.00 0.07 0.00 0.07 +surtension surtension nom f s 0.37 0.00 0.37 0.00 +surtout surtout adv_sup 148.66 291.49 148.66 291.49 +surtouts surtout nom_sup m p 0.54 2.84 0.00 0.14 +surélevait surélever ver 0.34 2.50 0.00 0.07 ind:imp:3s; +surélever surélever ver 0.34 2.50 0.06 0.14 inf; +surélevez surélever ver 0.34 2.50 0.02 0.00 imp:pre:2p; +surélevé surélever ver m s 0.34 2.50 0.10 1.15 par:pas; +surélevée surélever ver f s 0.34 2.50 0.08 0.47 par:pas; +surélevées surélever ver f p 0.34 2.50 0.02 0.41 par:pas; +surélevés surélever ver m p 0.34 2.50 0.04 0.14 par:pas; +surélève surélever ver 0.34 2.50 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surélévation surélévation nom f s 0.03 0.00 0.03 0.00 +sérum sérum nom m s 4.16 0.81 4.00 0.74 +suréminente suréminent adj f s 0.00 0.07 0.00 0.07 +sérums sérum nom m p 4.16 0.81 0.15 0.07 +sérénade sérénade nom f s 1.13 1.08 1.02 0.81 +sérénades sérénade nom f p 1.13 1.08 0.11 0.27 +sérénissime sérénissime adj s 0.07 1.62 0.07 1.62 +sérénité sérénité nom f s 4.71 12.91 4.71 12.91 +suréquipée suréquiper ver f s 0.01 0.07 0.01 0.07 par:pas; +surévaluation surévaluation nom f s 0.01 0.07 0.01 0.07 +surévalué surévaluer ver m s 0.03 0.07 0.03 0.07 par:pas; +survînt survenir ver 4.86 15.54 0.00 0.20 sub:imp:3s; +surveilla surveiller ver 84.82 54.39 0.01 0.41 ind:pas:3s; +surveillaient surveiller ver 84.82 54.39 0.46 1.96 ind:imp:3p; +surveillais surveiller ver 84.82 54.39 0.98 1.89 ind:imp:1s;ind:imp:2s; +surveillait surveiller ver 84.82 54.39 1.61 8.92 ind:imp:3s; +surveillance surveillance nom f s 19.16 12.23 19.05 12.16 +surveillances surveillance nom f p 19.16 12.23 0.11 0.07 +surveillant surveillant nom m s 2.58 6.55 1.65 3.58 +surveillante surveillant nom f s 2.58 6.55 0.45 0.74 +surveillantes surveillant nom f p 2.58 6.55 0.03 0.68 +surveillants surveillant nom m p 2.58 6.55 0.45 1.55 +surveille surveiller ver 84.82 54.39 26.27 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +surveillent surveiller ver 84.82 54.39 3.72 1.69 ind:pre:3p; +surveiller surveiller ver 84.82 54.39 26.94 18.11 inf;; +surveillera surveiller ver 84.82 54.39 1.13 0.07 ind:fut:3s; +surveillerai surveiller ver 84.82 54.39 0.90 0.27 ind:fut:1s; +surveilleraient surveiller ver 84.82 54.39 0.02 0.07 cnd:pre:3p; +surveillerais surveiller ver 84.82 54.39 0.23 0.00 cnd:pre:1s;cnd:pre:2s; +surveillerait surveiller ver 84.82 54.39 0.08 0.41 cnd:pre:3s; +surveilleras surveiller ver 84.82 54.39 0.25 0.14 ind:fut:2s; +surveillerez surveiller ver 84.82 54.39 0.09 0.00 ind:fut:2p; +surveillerons surveiller ver 84.82 54.39 0.23 0.00 ind:fut:1p; +surveilleront surveiller ver 84.82 54.39 0.27 0.00 ind:fut:3p; +surveilles surveiller ver 84.82 54.39 2.09 0.34 ind:pre:2s; +surveillez surveiller ver 84.82 54.39 9.71 0.68 imp:pre:2p;ind:pre:2p; +surveilliez surveiller ver 84.82 54.39 0.41 0.00 ind:imp:2p; +surveillions surveiller ver 84.82 54.39 0.02 0.14 ind:imp:1p; +surveillons surveiller ver 84.82 54.39 0.90 0.20 imp:pre:1p;ind:pre:1p; +surveillât surveiller ver 84.82 54.39 0.00 0.07 sub:imp:3s; +surveillé surveiller ver m s 84.82 54.39 3.77 3.11 par:pas; +surveillée surveiller ver f s 84.82 54.39 2.46 2.09 par:pas; +surveillées surveiller ver f p 84.82 54.39 0.58 0.68 par:pas; +surveillés surveiller ver m p 84.82 54.39 1.33 1.49 par:pas; +survenaient survenir ver 4.86 15.54 0.00 0.41 ind:imp:3p; +survenais survenir ver 4.86 15.54 0.00 0.07 ind:imp:1s; +survenait survenir ver 4.86 15.54 0.12 1.49 ind:imp:3s; +survenant survenir ver 4.86 15.54 0.02 0.81 par:pre; +survenants survenant nom m p 0.00 0.14 0.00 0.14 +survenir survenir ver 4.86 15.54 0.80 1.69 inf; +survenu survenir ver m s 4.86 15.54 0.61 1.96 par:pas; +survenue survenir ver f s 4.86 15.54 0.32 0.95 par:pas; +survenues survenue nom f p 0.17 1.62 0.14 0.00 +survenus survenir ver m p 4.86 15.54 0.72 0.95 par:pas; +survie survie nom f s 11.64 6.08 11.64 6.08 +surviendra survenir ver 4.86 15.54 0.17 0.14 ind:fut:3s; +surviendraient survenir ver 4.86 15.54 0.00 0.14 cnd:pre:3p; +surviendrait survenir ver 4.86 15.54 0.01 0.34 cnd:pre:3s; +surviendront survenir ver 4.86 15.54 0.00 0.20 ind:fut:3p; +survienne survenir ver 4.86 15.54 0.20 0.27 sub:pre:3s; +surviennent survenir ver 4.86 15.54 0.36 0.47 ind:pre:3p; +survient survenir ver 4.86 15.54 1.01 1.96 ind:pre:3s; +survinrent survenir ver 4.86 15.54 0.14 0.34 ind:pas:3p; +survint survenir ver 4.86 15.54 0.30 2.84 ind:pas:3s; +survire survirer ver 0.01 0.00 0.01 0.00 ind:pre:3s; +survis survivre ver 63.65 27.77 1.33 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +survit survivre ver 63.65 27.77 3.88 2.23 ind:pre:3s; +survitesse survitesse nom f s 0.00 0.14 0.00 0.14 +survivaient survivre ver 63.65 27.77 0.16 0.81 ind:imp:3p; +survivais survivre ver 63.65 27.77 0.04 0.14 ind:imp:1s;ind:imp:2s; +survivait survivre ver 63.65 27.77 0.28 1.76 ind:imp:3s; +survivaliste survivaliste nom s 0.01 0.00 0.01 0.00 +survivance survivance nom f s 0.05 1.08 0.04 0.88 +survivances survivance nom f p 0.05 1.08 0.01 0.20 +survivant survivant nom m s 12.80 7.77 3.57 2.03 +survivante survivant nom f s 12.80 7.77 0.39 0.14 +survivantes survivant nom f p 12.80 7.77 0.03 0.20 +survivants survivant nom m p 12.80 7.77 8.81 5.41 +survive survivre ver 63.65 27.77 1.42 0.54 sub:pre:1s;sub:pre:3s; +survivent survivre ver 63.65 27.77 1.79 1.22 ind:pre:3p; +survives survivre ver 63.65 27.77 0.24 0.00 sub:pre:2s; +survivez survivre ver 63.65 27.77 0.30 0.00 imp:pre:2p;ind:pre:2p; +surviviez survivre ver 63.65 27.77 0.06 0.00 ind:imp:2p; +survivions survivre ver 63.65 27.77 0.06 0.00 ind:imp:1p; +survivons survivre ver 63.65 27.77 0.20 0.14 imp:pre:1p;ind:pre:1p; +survivra survivre ver 63.65 27.77 3.92 0.54 ind:fut:3s; +survivrai survivre ver 63.65 27.77 2.99 0.14 ind:fut:1s; +survivraient survivre ver 63.65 27.77 0.25 0.27 cnd:pre:3p; +survivrais survivre ver 63.65 27.77 0.46 0.07 cnd:pre:1s;cnd:pre:2s; +survivrait survivre ver 63.65 27.77 0.80 1.28 cnd:pre:3s; +survivras survivre ver 63.65 27.77 0.61 0.00 ind:fut:2s; +survivre survivre ver 63.65 27.77 22.44 11.42 inf; +survivrez survivre ver 63.65 27.77 0.61 0.00 ind:fut:2p; +survivriez survivre ver 63.65 27.77 0.06 0.00 cnd:pre:2p; +survivrons survivre ver 63.65 27.77 0.33 0.07 ind:fut:1p; +survivront survivre ver 63.65 27.77 0.94 0.54 ind:fut:3p; +survol survol nom m s 0.83 0.27 0.80 0.27 +survola survoler ver 5.38 6.22 0.01 0.14 ind:pas:3s; +survolaient survoler ver 5.38 6.22 0.04 0.41 ind:imp:3p; +survolais survoler ver 5.38 6.22 0.06 0.07 ind:imp:1s; +survolait survoler ver 5.38 6.22 0.38 0.61 ind:imp:3s; +survolant survoler ver 5.38 6.22 0.19 0.54 par:pre; +survole survoler ver 5.38 6.22 1.04 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +survolent survoler ver 5.38 6.22 0.90 0.27 ind:pre:3p; +survoler survoler ver 5.38 6.22 1.27 1.76 inf; +survolera survoler ver 5.38 6.22 0.10 0.00 ind:fut:3s; +survolerai survoler ver 5.38 6.22 0.04 0.00 ind:fut:1s; +survolerez survoler ver 5.38 6.22 0.16 0.00 ind:fut:2p; +survolerons survoler ver 5.38 6.22 0.07 0.00 ind:fut:1p; +survolez survoler ver 5.38 6.22 0.22 0.00 imp:pre:2p;ind:pre:2p; +survolions survoler ver 5.38 6.22 0.01 0.14 ind:imp:1p; +survolâmes survoler ver 5.38 6.22 0.00 0.07 ind:pas:1p; +survolons survoler ver 5.38 6.22 0.22 0.07 imp:pre:1p;ind:pre:1p; +survols survol nom m p 0.83 0.27 0.03 0.00 +survoltage survoltage nom m s 0.05 0.20 0.05 0.20 +survoltait survolter ver 0.25 0.68 0.00 0.07 ind:imp:3s; +survolteur survolteur nom m s 0.02 0.00 0.02 0.00 +survolté survolté adj m s 0.28 1.42 0.10 0.34 +survoltée survolté adj f s 0.28 1.42 0.16 0.54 +survoltées survolté adj f p 0.28 1.42 0.02 0.07 +survoltés survolter ver m p 0.25 0.68 0.05 0.14 par:pas; +survolé survoler ver m s 5.38 6.22 0.65 1.08 par:pas; +survolée survoler ver f s 5.38 6.22 0.03 0.27 par:pas; +survolées survoler ver f p 5.38 6.22 0.00 0.20 par:pas; +survécûmes survivre ver 63.65 27.77 0.01 0.00 ind:pas:1p; +survécût survivre ver 63.65 27.77 0.00 0.14 sub:imp:3s; +survécu survivre ver m s 63.65 27.77 18.74 4.53 par:pas; +survécurent survivre ver 63.65 27.77 0.27 0.00 ind:pas:3p; +survécus survivre ver 63.65 27.77 0.07 0.14 ind:pas:1s; +survécut survivre ver 63.65 27.77 0.21 0.81 ind:pas:3s; +survêt survêt nom m s 0.00 0.47 0.00 0.27 +survêtement survêtement nom m s 0.65 2.77 0.63 2.23 +survêtements survêtement nom m p 0.65 2.77 0.02 0.54 +survêts survêt nom m p 0.00 0.47 0.00 0.20 +sus_orbitaire sus_orbitaire adj m s 0.01 0.00 0.01 0.00 +sus sus adv_sup 2.57 3.65 2.57 3.65 +sésame sésame nom m s 1.26 1.35 1.26 1.35 +sésamoïdes sésamoïde adj p 0.01 0.00 0.01 0.00 +susceptibilité susceptibilité nom f s 0.09 2.57 0.09 1.49 +susceptibilités susceptibilité nom f p 0.09 2.57 0.00 1.08 +susceptible susceptible adj s 5.18 11.89 3.87 7.77 +susceptibles susceptible adj p 5.18 11.89 1.30 4.12 +suscita susciter ver 3.94 23.31 0.12 1.15 ind:pas:3s; +suscitaient susciter ver 3.94 23.31 0.01 1.49 ind:imp:3p; +suscitais susciter ver 3.94 23.31 0.10 0.14 ind:imp:1s;ind:imp:2s; +suscitait susciter ver 3.94 23.31 0.10 2.97 ind:imp:3s; +suscitant susciter ver 3.94 23.31 0.14 1.42 par:pre; +suscite susciter ver 3.94 23.31 1.08 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +suscitent susciter ver 3.94 23.31 0.16 1.01 ind:pre:3p; +susciter susciter ver 3.94 23.31 1.23 7.16 inf; +susciteraient susciter ver 3.94 23.31 0.10 0.07 cnd:pre:3p; +susciterait susciter ver 3.94 23.31 0.01 0.20 cnd:pre:3s; +susciteront susciter ver 3.94 23.31 0.00 0.07 ind:fut:3p; +suscites susciter ver 3.94 23.31 0.02 0.07 ind:pre:2s; +suscité susciter ver m s 3.94 23.31 0.59 2.23 par:pas; +suscitée susciter ver f s 3.94 23.31 0.21 1.42 par:pas; +suscitées susciter ver f p 3.94 23.31 0.02 0.47 par:pas; +suscités susciter ver m p 3.94 23.31 0.04 0.61 par:pas; +suscription suscription nom f s 0.00 0.14 0.00 0.14 +susdit susdit adj m s 0.14 0.47 0.12 0.27 +susdite susdit nom f s 0.31 0.07 0.20 0.00 +susdites susdit adj f p 0.14 0.47 0.00 0.14 +sushi sushi nom m 2.03 0.00 2.03 0.00 +susmentionné susmentionné adj m s 0.30 0.07 0.19 0.00 +susmentionnée susmentionné adj f s 0.30 0.07 0.11 0.07 +susnommé susnommé adj m s 0.05 0.27 0.04 0.07 +susnommée susnommé adj f s 0.05 0.27 0.01 0.14 +susnommés susnommé adj m p 0.05 0.27 0.00 0.07 +suspect suspect nom m s 32.45 3.65 22.86 1.55 +suspectaient suspecter ver 6.13 3.38 0.00 0.14 ind:imp:3p; +suspectais suspecter ver 6.13 3.38 0.10 0.07 ind:imp:1s;ind:imp:2s; +suspectait suspecter ver 6.13 3.38 0.29 0.20 ind:imp:3s; +suspectant suspecter ver 6.13 3.38 0.11 0.07 par:pre; +suspecte suspect adj f s 12.95 16.82 2.34 4.93 +suspectent suspecter ver 6.13 3.38 0.25 0.00 ind:pre:3p; +suspecter suspecter ver 6.13 3.38 0.95 0.88 inf; +suspectera suspecter ver 6.13 3.38 0.07 0.00 ind:fut:3s; +suspecteraient suspecter ver 6.13 3.38 0.00 0.07 cnd:pre:3p; +suspecterait suspecter ver 6.13 3.38 0.05 0.00 cnd:pre:3s; +suspecteront suspecter ver 6.13 3.38 0.03 0.00 ind:fut:3p; +suspectes suspect adj f p 12.95 16.82 0.69 1.49 +suspectez suspecter ver 6.13 3.38 0.34 0.00 imp:pre:2p;ind:pre:2p; +suspectiez suspecter ver 6.13 3.38 0.11 0.00 ind:imp:2p; +suspectons suspecter ver 6.13 3.38 0.12 0.07 imp:pre:1p;ind:pre:1p; +suspects suspect nom m p 32.45 3.65 8.81 1.76 +suspecté suspecter ver m s 6.13 3.38 1.48 0.88 par:pas; +suspectée suspecter ver f s 6.13 3.38 0.38 0.14 par:pas; +suspectées suspecter ver f p 6.13 3.38 0.04 0.00 par:pas; +suspectés suspecter ver m p 6.13 3.38 0.16 0.41 par:pas; +suspend suspendre ver 13.99 39.32 0.53 1.55 ind:pre:3s; +suspendît suspendre ver 13.99 39.32 0.00 0.07 sub:imp:3s; +suspendaient suspendre ver 13.99 39.32 0.02 0.27 ind:imp:3p; +suspendais suspendre ver 13.99 39.32 0.01 0.07 ind:imp:1s; +suspendait suspendre ver 13.99 39.32 0.03 1.28 ind:imp:3s; +suspendant suspendre ver 13.99 39.32 0.04 0.74 par:pre; +suspende suspendre ver 13.99 39.32 0.13 0.00 sub:pre:1s;sub:pre:3s; +suspendent suspendre ver 13.99 39.32 0.04 0.27 ind:pre:3p; +suspendez suspendre ver 13.99 39.32 0.54 0.07 imp:pre:2p;ind:pre:2p; +suspendirent suspendre ver 13.99 39.32 0.00 0.20 ind:pas:3p; +suspendit suspendre ver 13.99 39.32 0.01 1.96 ind:pas:3s; +suspendons suspendre ver 13.99 39.32 0.06 0.20 imp:pre:1p;ind:pre:1p; +suspendra suspendre ver 13.99 39.32 0.08 0.07 ind:fut:3s; +suspendrai suspendre ver 13.99 39.32 0.06 0.00 ind:fut:1s; +suspendrait suspendre ver 13.99 39.32 0.10 0.27 cnd:pre:3s; +suspendre suspendre ver 13.99 39.32 2.42 4.19 inf;; +suspendrez suspendre ver 13.99 39.32 0.01 0.00 ind:fut:2p; +suspendrons suspendre ver 13.99 39.32 0.04 0.00 ind:fut:1p; +suspendront suspendre ver 13.99 39.32 0.03 0.07 ind:fut:3p; +suspends suspendre ver 13.99 39.32 0.98 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +suspendu suspendre ver m s 13.99 39.32 4.41 12.77 par:pas; +suspendue suspendre ver f s 13.99 39.32 2.59 7.50 par:pas; +suspendues suspendre ver f p 13.99 39.32 0.75 3.11 par:pas; +suspendus suspendre ver m p 13.99 39.32 1.13 4.39 par:pas; +suspens suspens nom m 1.44 7.43 1.44 7.43 +suspense suspense nom s 4.09 1.76 4.08 1.62 +suspenses suspense nom p 4.09 1.76 0.01 0.14 +suspenseur suspenseur adj m s 0.01 0.07 0.01 0.00 +suspenseurs suspenseur adj m p 0.01 0.07 0.00 0.07 +suspensif suspensif adj m s 0.01 0.07 0.00 0.07 +suspension suspension nom f s 4.06 7.91 3.92 7.23 +suspensions suspension nom f p 4.06 7.91 0.14 0.68 +suspensive suspensif adj f s 0.01 0.07 0.01 0.00 +suspensoir suspensoir nom m s 0.11 0.14 0.09 0.14 +suspensoirs suspensoir nom m p 0.11 0.14 0.02 0.00 +suspente suspente nom f s 0.01 0.14 0.00 0.07 +suspentes suspente nom f p 0.01 0.14 0.01 0.07 +suspicieuse suspicieux adj f s 1.10 0.88 0.33 0.34 +suspicieusement suspicieusement adv 0.04 0.14 0.04 0.14 +suspicieuses suspicieux adj f p 1.10 0.88 0.12 0.00 +suspicieux suspicieux adj m 1.10 0.88 0.65 0.54 +suspicion suspicion nom f s 1.44 2.57 1.21 2.23 +suspicions suspicion nom f p 1.44 2.57 0.23 0.34 +susse savoir ver_sup 4516.72 2003.58 0.00 0.20 sub:imp:1s; +sussent savoir ver_sup 4516.72 2003.58 0.00 0.14 sub:imp:3p; +sustentation sustentation nom f s 0.01 0.14 0.01 0.14 +sustente sustenter ver 0.11 0.68 0.04 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +sustenter sustenter ver 0.11 0.68 0.08 0.54 inf; +sustentés sustenter ver m p 0.11 0.68 0.00 0.07 par:pas; +susu susu adj s 0.00 0.07 0.00 0.07 +susucre susucre nom m s 0.00 0.20 0.00 0.20 +susurra susurrer ver 0.22 4.86 0.00 1.08 ind:pas:3s; +susurrai susurrer ver 0.22 4.86 0.00 0.07 ind:pas:1s; +susurraient susurrer ver 0.22 4.86 0.00 0.14 ind:imp:3p; +susurrait susurrer ver 0.22 4.86 0.01 0.74 ind:imp:3s; +susurrant susurrer ver 0.22 4.86 0.13 0.14 par:pre; +susurre susurrer ver 0.22 4.86 0.01 1.01 imp:pre:2s;ind:pre:3s; +susurrement susurrement nom m s 0.00 0.47 0.00 0.14 +susurrements susurrement nom m p 0.00 0.47 0.00 0.34 +susurrent susurrer ver 0.22 4.86 0.02 0.34 ind:pre:3p; +susurrer susurrer ver 0.22 4.86 0.01 0.54 inf; +susurrerai susurrer ver 0.22 4.86 0.01 0.00 ind:fut:1s; +susurré susurrer ver m s 0.22 4.86 0.01 0.54 par:pas; +susurrée susurrer ver f s 0.22 4.86 0.00 0.14 par:pas; +susurrées susurrer ver f p 0.22 4.86 0.01 0.07 par:pas; +susurrés susurrer ver m p 0.22 4.86 0.00 0.07 par:pas; +susvisée susvisé adj f s 0.00 0.07 0.00 0.07 +sut savoir ver_sup 4516.72 2003.58 1.68 20.41 ind:pas:3s; +suça sucer ver 23.45 18.51 0.14 0.54 ind:pas:3s; +suçage suçage nom m s 0.01 0.07 0.01 0.00 +suçages suçage nom m p 0.01 0.07 0.00 0.07 +suçaient sucer ver 23.45 18.51 0.02 0.81 ind:imp:3p; +suçais sucer ver 23.45 18.51 0.32 0.20 ind:imp:1s;ind:imp:2s; +suçait sucer ver 23.45 18.51 0.21 2.36 ind:imp:3s; +suçant sucer ver 23.45 18.51 0.39 1.96 par:pre; +suède suède nom m s 0.00 0.07 0.00 0.07 +suçoir suçoir nom m s 0.00 0.27 0.00 0.14 +suçoirs suçoir nom m p 0.00 0.27 0.00 0.14 +suçon suçon nom m s 1.05 0.14 0.89 0.00 +suçons suçon nom m p 1.05 0.14 0.17 0.14 +suçota suçoter ver 0.01 1.35 0.00 0.07 ind:pas:3s; +suçotait suçoter ver 0.01 1.35 0.00 0.27 ind:imp:3s; +suçotant suçoter ver 0.01 1.35 0.00 0.07 par:pre; +suçote suçoter ver 0.01 1.35 0.00 0.34 ind:pre:1s;ind:pre:3s; +suçotements suçotement nom m p 0.00 0.07 0.00 0.07 +suçotent suçoter ver 0.01 1.35 0.00 0.07 ind:pre:3p; +suçoter suçoter ver 0.01 1.35 0.01 0.41 inf; +suçoté suçoter ver m s 0.01 1.35 0.00 0.14 par:pas; +séton séton nom m s 0.00 0.07 0.00 0.07 +sutra sutra nom m s 0.20 0.20 0.20 0.20 +sutémi sutémi nom m s 0.00 0.14 0.00 0.14 +suturant suturer ver 0.45 0.27 0.00 0.07 par:pre; +suture suture nom f s 4.54 0.68 3.77 0.47 +suturer suturer ver 0.45 0.27 0.38 0.07 inf; +sutures suture nom f p 4.54 0.68 0.77 0.20 +suturé suturer ver m s 0.45 0.27 0.06 0.07 par:pas; +suturée suturer ver f s 0.45 0.27 0.01 0.07 par:pas; +sué suer ver m s 7.28 10.34 2.50 0.41 par:pas; +suédine suédine nom f s 0.00 0.54 0.00 0.54 +suédois suédois nom m 4.76 2.64 3.21 1.49 +suédoise suédois adj f s 3.67 6.89 1.41 2.77 +suédoises suédois nom f p 4.76 2.64 0.69 0.34 +suée suée nom f s 0.35 1.96 0.33 0.81 +suées suée nom f p 0.35 1.96 0.02 1.15 +sévît sévir ver 3.23 5.61 0.00 0.07 sub:imp:3s; +sévi sévir ver m s 3.23 5.61 0.14 0.68 par:pas; +sévice sévices nom m s 1.25 2.50 0.12 0.34 +sévices sévices nom m p 1.25 2.50 1.13 2.16 +sévillan sévillan nom m s 0.00 0.27 0.00 0.07 +sévillane sévillan nom f s 0.00 0.27 0.00 0.20 +sévir sévir ver 3.23 5.61 0.75 1.62 inf; +sévira sévir ver 3.23 5.61 0.04 0.00 ind:fut:3s; +sévirai sévir ver 3.23 5.61 0.14 0.07 ind:fut:1s; +sévissaient sévir ver 3.23 5.61 0.10 0.34 ind:imp:3p; +sévissais sévir ver 3.23 5.61 0.00 0.07 ind:imp:1s; +sévissait sévir ver 3.23 5.61 0.50 1.01 ind:imp:3s; +sévissant sévir ver 3.23 5.61 0.01 0.00 par:pre; +sévisse sévir ver 3.23 5.61 0.03 0.07 sub:pre:3s; +sévissent sévir ver 3.23 5.61 0.18 0.34 ind:pre:3p; +sévit sévir ver 3.23 5.61 1.33 1.35 ind:pre:3s;ind:pas:3s; +sévrienne sévrienne nom f s 0.00 0.14 0.00 0.07 +sévriennes sévrienne nom f p 0.00 0.14 0.00 0.07 +sévère sévère adj s 9.47 29.73 8.28 22.91 +sévèrement sévèrement adv 2.46 6.08 2.46 6.08 +sévères sévère adj p 9.47 29.73 1.20 6.82 +sévérité sévérité nom f s 0.96 7.16 0.95 6.89 +sévérités sévérité nom f p 0.96 7.16 0.01 0.27 +suzerain suzerain nom m s 0.20 0.68 0.20 0.47 +suzeraine suzerain nom f s 0.20 0.68 0.00 0.14 +suzeraineté suzeraineté nom f s 0.01 0.14 0.01 0.14 +suzerains suzerain nom m p 0.20 0.68 0.00 0.07 +sézigue sézigue pro_per s 0.00 0.27 0.00 0.27 +svastika svastika nom m s 0.09 0.20 0.09 0.14 +svastikas svastika nom m p 0.09 0.20 0.00 0.07 +svelte svelte adj s 0.43 2.77 0.39 2.43 +sveltes svelte adj p 0.43 2.77 0.04 0.34 +sveltesse sveltesse nom f s 0.00 0.61 0.00 0.61 +svp svp adv 6.36 0.07 6.36 0.07 +swahili swahili nom m s 0.00 0.54 0.00 0.54 +sweat_shirt sweat_shirt nom m s 0.00 0.20 0.00 0.20 +sweater sweater nom m s 0.00 1.01 0.00 0.74 +sweaters sweater nom m p 0.00 1.01 0.00 0.27 +sweepstake sweepstake nom m s 0.00 0.07 0.00 0.07 +swiftiennes swiftien adj f p 0.00 0.07 0.00 0.07 +swing swing nom m s 0.00 0.88 0.00 0.74 +swings swing nom m p 0.00 0.88 0.00 0.14 +swinguaient swinguer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +sybarites sybarite adj p 0.01 0.00 0.01 0.00 +sybaritisme sybaritisme nom m s 0.00 0.07 0.00 0.07 +sycomore sycomore nom m s 0.14 1.08 0.11 0.34 +sycomores sycomore nom m p 0.14 1.08 0.04 0.74 +sycophante sycophante nom m s 0.03 0.07 0.03 0.00 +sycophantes sycophante nom m p 0.03 0.07 0.00 0.07 +syllabe syllabe nom f s 1.52 11.28 0.65 2.30 +syllabes syllabe nom f p 1.52 11.28 0.88 8.99 +syllabus syllabus nom m 0.01 0.00 0.01 0.00 +syllepse syllepse nom f s 0.00 0.07 0.00 0.07 +syllogisme syllogisme nom m s 0.13 0.54 0.13 0.14 +syllogismes syllogisme nom m p 0.13 0.54 0.00 0.41 +syllogistique syllogistique adj f s 0.01 0.07 0.01 0.00 +syllogistiques syllogistique adj p 0.01 0.07 0.00 0.07 +sylphes sylphe nom m p 0.02 0.07 0.02 0.07 +sylphide sylphide nom f s 0.01 0.27 0.00 0.07 +sylphides sylphide nom f p 0.01 0.27 0.01 0.20 +sylvain sylvain nom m s 0.20 0.07 0.20 0.00 +sylvains sylvain nom m p 0.20 0.07 0.00 0.07 +sylvaner sylvaner nom m s 0.00 0.14 0.00 0.14 +sylve sylve nom f s 0.00 0.14 0.00 0.14 +sylvestre sylvestre adj s 0.35 1.22 0.23 0.81 +sylvestres sylvestre adj p 0.35 1.22 0.12 0.41 +sylviculture sylviculture nom f s 0.01 0.14 0.01 0.14 +sylvie sylvie nom f s 0.00 2.09 0.00 2.09 +symbionte symbionte nom m s 0.01 0.00 0.01 0.00 +symbiose symbiose nom f s 0.68 0.41 0.68 0.41 +symbiote symbiote nom m s 4.04 0.00 3.38 0.00 +symbiotes symbiote nom m p 4.04 0.00 0.66 0.00 +symbiotique symbiotique adj s 0.36 0.00 0.36 0.00 +symbole symbole nom m s 14.95 18.92 10.74 12.57 +symboles symbole nom m p 14.95 18.92 4.20 6.35 +symbolique symbolique adj s 2.35 9.53 2.23 7.91 +symboliquement symboliquement adv 0.21 0.88 0.21 0.88 +symboliques symbolique adj p 2.35 9.53 0.12 1.62 +symbolisa symboliser ver 2.65 5.07 0.00 0.07 ind:pas:3s; +symbolisaient symboliser ver 2.65 5.07 0.04 0.20 ind:imp:3p; +symbolisait symboliser ver 2.65 5.07 0.18 1.28 ind:imp:3s; +symbolisant symboliser ver 2.65 5.07 0.20 0.47 par:pre; +symbolisation symbolisation nom f s 0.00 0.14 0.00 0.14 +symbolise symboliser ver 2.65 5.07 1.17 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +symbolisent symboliser ver 2.65 5.07 0.30 0.54 ind:pre:3p; +symboliser symboliser ver 2.65 5.07 0.28 0.61 inf; +symbolisera symboliser ver 2.65 5.07 0.03 0.07 ind:fut:3s; +symboliserai symboliser ver 2.65 5.07 0.01 0.00 ind:fut:1s; +symboliserait symboliser ver 2.65 5.07 0.01 0.00 cnd:pre:3s; +symbolisme symbolisme nom m s 0.19 0.81 0.19 0.81 +symbolisât symboliser ver 2.65 5.07 0.00 0.07 sub:imp:3s; +symboliste symboliste adj s 0.01 0.20 0.01 0.20 +symbolisé symboliser ver m s 2.65 5.07 0.14 0.27 par:pas; +symbolisée symboliser ver f s 2.65 5.07 0.04 0.34 par:pas; +symbolisés symboliser ver m p 2.65 5.07 0.23 0.07 par:pas; +sympa sympa adj s 83.39 7.77 77.46 7.16 +sympas sympa adj p 83.39 7.77 5.92 0.61 +sympathectomie sympathectomie nom f s 0.01 0.07 0.01 0.07 +sympathie sympathie nom f s 7.68 26.15 6.87 24.05 +sympathies sympathie nom f p 7.68 26.15 0.81 2.09 +sympathique sympathique adj s 16.23 15.54 12.79 13.11 +sympathiques sympathique adj p 16.23 15.54 3.45 2.43 +sympathisai sympathiser ver 2.12 1.96 0.00 0.07 ind:pas:1s; +sympathisaient sympathiser ver 2.12 1.96 0.01 0.00 ind:imp:3p; +sympathisait sympathiser ver 2.12 1.96 0.02 0.41 ind:imp:3s; +sympathisant sympathisant nom m s 0.75 1.62 0.33 0.20 +sympathisante sympathisant nom f s 0.75 1.62 0.03 0.00 +sympathisantes sympathisant adj f p 0.41 0.20 0.02 0.07 +sympathisants sympathisant nom m p 0.75 1.62 0.36 1.42 +sympathise sympathiser ver 2.12 1.96 0.40 0.20 ind:pre:1s;ind:pre:3s; +sympathiser sympathiser ver 2.12 1.96 0.42 0.47 inf; +sympathisera sympathiser ver 2.12 1.96 0.00 0.07 ind:fut:3s; +sympathiserez sympathiser ver 2.12 1.96 0.01 0.00 ind:fut:2p; +sympathisez sympathiser ver 2.12 1.96 0.04 0.00 ind:pre:2p; +sympathisions sympathiser ver 2.12 1.96 0.00 0.07 ind:imp:1p; +sympathisons sympathiser ver 2.12 1.96 0.00 0.14 ind:pre:1p; +sympathisé sympathiser ver m s 2.12 1.96 1.21 0.54 par:pas; +sympathomimétique sympathomimétique adj s 0.01 0.00 0.01 0.00 +symphonie symphonie nom f s 1.63 5.54 1.30 4.86 +symphonies symphonie nom f p 1.63 5.54 0.32 0.68 +symphonique symphonique adj s 1.02 0.14 1.01 0.14 +symphoniques symphonique adj m p 1.02 0.14 0.01 0.00 +symphorines symphorine nom f p 0.00 0.07 0.00 0.07 +symphyse symphyse nom f s 0.05 0.00 0.05 0.00 +symposium symposium nom m s 0.15 0.81 0.14 0.68 +symposiums symposium nom m p 0.15 0.81 0.01 0.14 +symptôme symptôme nom m s 11.64 4.39 2.03 1.22 +symptômes symptôme nom m p 11.64 4.39 9.61 3.18 +symptomatique symptomatique adj m s 0.25 0.41 0.11 0.34 +symptomatiques symptomatique adj m p 0.25 0.41 0.14 0.07 +symptomatologie symptomatologie nom f s 0.11 0.00 0.11 0.00 +symétrie symétrie nom f s 1.20 2.97 1.20 2.70 +symétries symétrie nom f p 1.20 2.97 0.00 0.27 +symétrique symétrique adj s 1.03 3.92 0.46 2.16 +symétriquement symétriquement adv 0.03 0.95 0.03 0.95 +symétriques symétrique adj p 1.03 3.92 0.57 1.76 +synagogale synagogal adj f s 0.00 0.14 0.00 0.07 +synagogaux synagogal adj m p 0.00 0.14 0.00 0.07 +synagogue synagogue nom f s 2.88 3.65 2.31 3.11 +synagogues synagogue nom f p 2.88 3.65 0.57 0.54 +synapse synapse nom f s 0.70 0.34 0.32 0.07 +synapses synapse nom f p 0.70 0.34 0.38 0.27 +synaptique synaptique adj s 0.23 0.00 0.16 0.00 +synaptiques synaptique adj m p 0.23 0.00 0.07 0.00 +synchro synchro adj s 1.97 0.14 1.93 0.14 +synchrone synchrone adj s 0.16 0.54 0.10 0.07 +synchrones synchrone adj p 0.16 0.54 0.06 0.47 +synchronie synchronie nom f s 0.00 0.07 0.00 0.07 +synchronique synchronique adj s 0.02 0.07 0.02 0.07 +synchronisaient synchroniser ver 2.09 0.54 0.01 0.00 ind:imp:3p; +synchronisation synchronisation nom f s 1.87 0.27 1.87 0.27 +synchronise synchroniser ver 2.09 0.54 0.22 0.00 imp:pre:2s;ind:pre:3s; +synchroniser synchroniser ver 2.09 0.54 0.27 0.07 inf; +synchronisera synchroniser ver 2.09 0.54 0.04 0.00 ind:fut:3s; +synchroniseur synchroniseur nom m s 0.05 0.00 0.05 0.00 +synchronisez synchroniser ver 2.09 0.54 0.26 0.00 imp:pre:2p; +synchronisme synchronisme nom m s 0.08 0.54 0.08 0.54 +synchronisons synchroniser ver 2.09 0.54 0.34 0.00 imp:pre:1p;ind:pre:1p; +synchronisé synchroniser ver m s 2.09 0.54 0.44 0.34 par:pas; +synchronisée synchroniser ver f s 2.09 0.54 0.14 0.07 par:pas; +synchronisées synchroniser ver f p 2.09 0.54 0.08 0.07 par:pas; +synchronisés synchroniser ver m p 2.09 0.54 0.29 0.00 par:pas; +synchros synchro adj p 1.97 0.14 0.04 0.00 +synchrotron synchrotron nom m s 0.01 0.00 0.01 0.00 +syncopal syncopal adj m s 0.01 0.07 0.01 0.07 +syncope syncope nom f s 0.76 1.76 0.73 1.35 +syncoper syncoper ver 0.02 0.54 0.01 0.00 inf; +syncopes syncope nom f p 0.76 1.76 0.02 0.41 +syncopé syncopé adj m s 0.05 0.95 0.03 0.34 +syncopée syncopé adj f s 0.05 0.95 0.01 0.14 +syncopées syncopé adj f p 0.05 0.95 0.01 0.14 +syncopés syncoper ver m p 0.02 0.54 0.01 0.07 par:pas; +syncrétisme syncrétisme nom m s 0.00 0.14 0.00 0.14 +syncrétiste syncrétiste adj s 0.00 0.07 0.00 0.07 +syncytial syncytial adj m s 0.01 0.00 0.01 0.00 +syndic syndic nom m s 0.61 1.08 0.48 0.95 +syndical syndical adj m s 1.50 2.23 0.65 0.47 +syndicale syndical adj f s 1.50 2.23 0.38 0.95 +syndicales syndical adj f p 1.50 2.23 0.33 0.41 +syndicalisation syndicalisation nom f s 0.04 0.00 0.04 0.00 +syndicaliser syndicaliser ver 0.02 0.00 0.02 0.00 inf; +syndicalisme syndicalisme nom m s 0.04 0.95 0.04 0.95 +syndicaliste syndicaliste nom s 0.53 0.74 0.30 0.41 +syndicalistes syndicaliste nom p 0.53 0.74 0.23 0.34 +syndicat syndicat nom m s 14.25 8.45 9.93 5.20 +syndication syndication nom f s 0.05 0.00 0.05 0.00 +syndicats syndicat nom m p 14.25 8.45 4.33 3.24 +syndicaux syndical adj m p 1.50 2.23 0.15 0.41 +syndics syndic nom m p 0.61 1.08 0.14 0.14 +syndique syndiquer ver 0.63 0.68 0.03 0.07 ind:pre:1s;ind:pre:3s; +syndiquer syndiquer ver 0.63 0.68 0.23 0.07 inf; +syndiquez syndiquer ver 0.63 0.68 0.05 0.00 imp:pre:2p; +syndiqué syndiqué adj m s 0.45 0.61 0.24 0.14 +syndiquée syndiquer ver f s 0.63 0.68 0.04 0.00 par:pas; +syndiquées syndiqué adj f p 0.45 0.61 0.02 0.07 +syndiqués syndiqué adj m p 0.45 0.61 0.15 0.41 +syndrome syndrome nom m s 5.47 0.81 5.26 0.68 +syndromes syndrome nom m p 5.47 0.81 0.21 0.14 +synecdoque synecdoque nom f s 0.00 0.14 0.00 0.14 +synergie synergie nom f s 0.15 0.00 0.14 0.00 +synergies synergie nom f p 0.15 0.00 0.01 0.00 +synergique synergique adj f s 0.02 0.00 0.02 0.00 +synergétique synergétique adj m s 0.03 0.00 0.03 0.00 +synesthésie synesthésie nom f s 0.01 0.00 0.01 0.00 +synode synode nom m s 0.20 0.07 0.20 0.07 +synonyme synonyme adj s 0.97 1.49 0.84 1.08 +synonymes synonyme adj f p 0.97 1.49 0.13 0.41 +synopsie synopsie nom f s 0.01 0.00 0.01 0.00 +synopsis synopsis nom m 0.17 0.47 0.17 0.47 +synoptique synoptique adj s 0.01 0.07 0.01 0.07 +synoviales synovial adj f p 0.01 0.00 0.01 0.00 +synovite synovite nom f s 0.04 0.00 0.04 0.00 +syntagme syntagme nom m s 0.00 0.07 0.00 0.07 +syntaxe syntaxe nom f s 0.27 2.03 0.27 1.96 +syntaxes syntaxe nom f p 0.27 2.03 0.00 0.07 +syntaxique syntaxique adj m s 0.01 0.00 0.01 0.00 +synthèse synthèse nom f s 1.63 1.96 1.62 1.82 +synthèses synthèse nom f p 1.63 1.96 0.01 0.14 +synthé synthé nom m s 0.61 0.27 0.60 0.20 +synthés synthé nom m p 0.61 0.27 0.01 0.07 +synthétique synthétique adj s 3.05 2.64 1.58 1.96 +synthétiquement synthétiquement adv 0.01 0.00 0.01 0.00 +synthétiques synthétique adj p 3.05 2.64 1.47 0.68 +synthétise synthétiser ver 0.61 0.20 0.04 0.20 ind:pre:1s;ind:pre:3s; +synthétisent synthétiser ver 0.61 0.20 0.01 0.00 ind:pre:3p; +synthétiser synthétiser ver 0.61 0.20 0.32 0.00 inf; +synthétisera synthétiser ver 0.61 0.20 0.01 0.00 ind:fut:3s; +synthétiseur synthétiseur nom m s 0.39 0.41 0.36 0.34 +synthétiseurs synthétiseur nom m p 0.39 0.41 0.03 0.07 +synthétisé synthétiser ver m s 0.61 0.20 0.16 0.00 par:pas; +synthétisée synthétiser ver f s 0.61 0.20 0.05 0.00 par:pas; +synthétisés synthétiser ver m p 0.61 0.20 0.02 0.00 par:pas; +synérèses synérèse nom f p 0.00 0.07 0.00 0.07 +syphilis syphilis nom f 1.53 1.01 1.53 1.01 +syphilitique syphilitique adj s 0.86 0.61 0.71 0.41 +syphilitiques syphilitique adj p 0.86 0.61 0.15 0.20 +syrah syrah nom f s 0.09 0.00 0.09 0.00 +syriaque syriaque nom s 0.00 0.07 0.00 0.07 +syriaques syriaque adj p 0.00 0.07 0.00 0.07 +syrien syrien adj m s 1.79 6.82 0.81 2.30 +syrienne syrien adj f s 1.79 6.82 0.58 1.76 +syriennes syrienne adj f p 0.03 0.00 0.03 0.00 +syriens syrien nom m p 1.40 1.42 1.38 0.88 +syringomyélie syringomyélie nom f s 0.01 0.00 0.01 0.00 +syrinx syrinx nom f 0.00 0.07 0.00 0.07 +syro syro adv 0.03 0.20 0.03 0.20 +syrtes syrte nom f p 0.00 5.47 0.00 5.47 +systole systole nom f s 0.01 0.20 0.01 0.20 +systolique systolique adj s 0.77 0.07 0.76 0.00 +systoliques systolique adj p 0.77 0.07 0.01 0.07 +système système nom m s 76.92 46.96 66.12 42.23 +systèmes_clé systèmes_clé nom m p 0.03 0.00 0.03 0.00 +systèmes système nom m p 76.92 46.96 10.80 4.73 +systématique systématique adj s 0.86 3.85 0.67 3.45 +systématiquement systématiquement adv 1.25 4.19 1.25 4.19 +systématiques systématique adj p 0.86 3.85 0.19 0.41 +systématisation systématisation nom f s 0.00 0.07 0.00 0.07 +systématiser systématiser ver 0.00 0.07 0.00 0.07 inf; +systématisé systématisé adj m s 0.00 0.27 0.00 0.07 +systématisée systématisé adj f s 0.00 0.27 0.00 0.14 +systématisés systématisé adj m p 0.00 0.27 0.00 0.07 +systémique systémique adj s 0.14 0.00 0.14 0.00 +syénite syénite nom f s 0.01 0.00 0.01 0.00 +syzygie syzygie nom m s 0.00 0.20 0.00 0.14 +syzygies syzygie nom m p 0.00 0.20 0.00 0.07 +t_ t_ pro_per s 4344.23 779.93 4344.23 779.93 +t_shirt t_shirt nom m s 10.87 0.54 7.59 0.20 +t_shirt t_shirt nom m p 10.87 0.54 3.28 0.34 +t t pro_per s 88.47 4.53 88.47 4.53 +tînmes tenir ver 504.69 741.22 0.00 0.20 ind:pas:1p; +tînt tenir ver 504.69 741.22 0.00 2.57 sub:imp:3s; +tôlarde tôlard nom f s 0.01 0.00 0.01 0.00 +tôle tôle nom f s 3.58 15.41 3.29 12.50 +tôlerie tôlerie nom f s 0.00 0.20 0.00 0.20 +tôles tôle nom f p 3.58 15.41 0.29 2.91 +tôlier tôlier nom m s 0.02 0.27 0.01 0.14 +tôliers tôlier nom m p 0.02 0.27 0.00 0.07 +tôlière tôlier nom f s 0.02 0.27 0.01 0.07 +tôt_fait tôt_fait nom m s 0.00 0.07 0.00 0.07 +tôt tôt adv 129.98 126.76 129.98 126.76 +tûmes taire ver 154.47 139.80 0.00 0.20 ind:pas:1p; +tût taire ver 154.47 139.80 0.03 0.41 sub:imp:3s; +ta ta adj_pos 1265.97 251.69 1265.97 251.69 +taï_chi taï_chi nom m s 0.16 0.00 0.16 0.00 +taïaut taïaut ono 0.20 0.74 0.20 0.74 +taïga taïga nom f s 1.50 0.95 1.50 0.88 +taïgas taïga nom f p 1.50 0.95 0.00 0.07 +tab tab adj m s 0.23 0.00 0.23 0.00 +tabac tabac nom m s 16.00 41.89 15.70 41.28 +tabacs tabac nom m p 16.00 41.89 0.30 0.61 +tabagie tabagie nom f s 0.15 0.41 0.15 0.27 +tabagies tabagie nom f p 0.15 0.41 0.00 0.14 +tabagisme tabagisme nom m s 0.26 0.00 0.26 0.00 +tabard tabard nom m s 0.13 0.00 0.13 0.00 +tabaski tabaski nom f s 0.00 0.07 0.00 0.07 +tabassage tabassage nom m s 0.07 0.27 0.07 0.14 +tabassages tabassage nom m p 0.07 0.27 0.00 0.14 +tabassaient tabasser ver 12.71 2.30 0.04 0.00 ind:imp:3p; +tabassais tabasser ver 12.71 2.30 0.14 0.00 ind:imp:1s;ind:imp:2s; +tabassait tabasser ver 12.71 2.30 0.33 0.14 ind:imp:3s; +tabassant tabasser ver 12.71 2.30 0.01 0.00 par:pre; +tabasse tabasser ver 12.71 2.30 1.96 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tabassent tabasser ver 12.71 2.30 0.38 0.07 ind:pre:3p; +tabasser tabasser ver 12.71 2.30 4.91 1.01 inf; +tabassera tabasser ver 12.71 2.30 0.08 0.00 ind:fut:3s; +tabasseraient tabasser ver 12.71 2.30 0.01 0.00 cnd:pre:3p; +tabasserais tabasser ver 12.71 2.30 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +tabasses tabasser ver 12.71 2.30 0.25 0.07 ind:pre:2s; +tabassez tabasser ver 12.71 2.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +tabassons tabasser ver 12.71 2.30 0.01 0.07 imp:pre:1p;ind:pre:1p; +tabassèrent tabasser ver 12.71 2.30 0.01 0.00 ind:pas:3p; +tabassé tabasser ver m s 12.71 2.30 3.59 0.34 par:pas; +tabassée tabasser ver f s 12.71 2.30 0.48 0.14 par:pas; +tabassés tabasser ver m p 12.71 2.30 0.26 0.20 par:pas; +tabatière tabatière nom f s 0.46 2.57 0.35 2.16 +tabatières tabatière nom f p 0.46 2.57 0.11 0.41 +tabellion tabellion nom m s 0.00 0.20 0.00 0.14 +tabellions tabellion nom m p 0.00 0.20 0.00 0.07 +tabernacle tabernacle nom m s 0.69 2.16 0.69 2.03 +tabernacles tabernacle nom m p 0.69 2.16 0.00 0.14 +tabla tabler ver 0.95 1.62 0.01 0.00 ind:pas:3s; +tablais tabler ver 0.95 1.62 0.01 0.00 ind:imp:2s; +tablant tabler ver 0.95 1.62 0.01 0.14 par:pre; +tablature tablature nom f s 0.00 0.07 0.00 0.07 +table_bureau table_bureau nom f s 0.00 0.07 0.00 0.07 +table_coiffeuse table_coiffeuse nom f s 0.00 0.27 0.00 0.27 +table table nom f s 118.37 379.80 111.44 341.08 +tableau tableau nom m s 50.11 90.00 37.80 57.84 +tableautin tableautin nom m s 0.00 0.27 0.00 0.07 +tableautins tableautin nom m p 0.00 0.27 0.00 0.20 +tableaux tableau nom m p 50.11 90.00 12.31 32.16 +tabler tabler ver 0.95 1.62 0.04 0.54 inf; +tablerez tabler ver 0.95 1.62 0.01 0.00 ind:fut:2p; +tables table nom f p 118.37 379.80 6.92 38.72 +tablette tablette nom f s 2.70 9.86 2.08 6.76 +tabletterie tabletterie nom f s 0.00 0.07 0.00 0.07 +tablettes tablette nom f p 2.70 9.86 0.63 3.11 +tableur tableur nom m s 0.05 0.00 0.05 0.00 +tablier tablier nom m s 4.98 30.34 4.13 27.16 +tabliers tablier nom m p 4.98 30.34 0.86 3.18 +tabloïd tabloïd nom m s 0.45 0.00 0.17 0.00 +tabloïde tabloïde nom s 0.11 0.07 0.04 0.07 +tabloïdes tabloïde nom p 0.11 0.07 0.07 0.00 +tabloïds tabloïd nom m p 0.45 0.00 0.27 0.00 +tablons tabler ver 0.95 1.62 0.02 0.00 imp:pre:1p;ind:pre:1p; +tablé tabler ver m s 0.95 1.62 0.00 0.07 par:pas; +tablée tablée nom f s 0.02 1.49 0.02 1.15 +tablées tablée nom f p 0.02 1.49 0.00 0.34 +tabor tabor nom m s 0.00 1.15 0.00 0.07 +taborites taborite nom m p 0.00 0.07 0.00 0.07 +tabors tabor nom m p 0.00 1.15 0.00 1.08 +tabou tabou adj m s 1.11 1.35 0.78 0.95 +taboue tabou adj f s 1.11 1.35 0.11 0.07 +taboues tabou adj f p 1.11 1.35 0.01 0.00 +taboulé taboulé nom m s 0.18 0.00 0.18 0.00 +tabouret tabouret nom m s 3.19 18.38 2.79 15.47 +tabourets tabouret nom m p 3.19 18.38 0.41 2.91 +tabous tabou nom m p 1.18 3.11 0.64 1.42 +tabès tabès nom m 0.00 0.07 0.00 0.07 +tabula tabuler ver 0.04 0.00 0.04 0.00 ind:pas:3s; +tabulaire tabulaire adj f s 0.00 0.20 0.00 0.20 +tabulateur tabulateur nom m s 0.01 0.07 0.01 0.07 +tabulations tabulation nom f p 0.01 0.00 0.01 0.00 +tac tac nom m s 3.21 4.66 3.16 4.59 +tacatac tacatac ono 0.00 0.07 0.00 0.07 +tacatacatac tacatacatac ono 0.00 0.07 0.00 0.07 +tacauds tacaud nom m p 0.00 0.07 0.00 0.07 +tachaient tacher ver 6.53 16.49 0.00 0.27 ind:imp:3p; +tachait tacher ver 6.53 16.49 0.00 0.88 ind:imp:3s; +tachant tacher ver 6.53 16.49 0.00 0.41 par:pre; +tache tache nom f s 21.04 71.28 12.61 33.92 +tachent tacher ver 6.53 16.49 0.05 0.07 ind:pre:3p; +tacher tacher ver 6.53 16.49 1.10 1.01 inf; +tachera tacher ver 6.53 16.49 0.16 0.07 ind:fut:3s; +tacherai tacher ver 6.53 16.49 0.03 0.14 ind:fut:1s; +tacherais tacher ver 6.53 16.49 0.00 0.07 cnd:pre:2s; +tacherait tacher ver 6.53 16.49 0.10 0.07 cnd:pre:3s; +taches tache nom f p 21.04 71.28 8.44 37.36 +tachetaient tacheter ver 0.29 3.11 0.00 0.07 ind:imp:3p; +tachetant tacheter ver 0.29 3.11 0.00 0.07 par:pre; +tacheter tacheter ver 0.29 3.11 0.00 0.07 inf; +tacheté tacheter ver m s 0.29 3.11 0.16 0.81 par:pas; +tachetée tacheter ver f s 0.29 3.11 0.10 1.08 par:pas; +tachetées tacheter ver f p 0.29 3.11 0.02 0.54 par:pas; +tachetures tacheture nom f p 0.00 0.07 0.00 0.07 +tachetés tacheter ver m p 0.29 3.11 0.01 0.47 par:pas; +tachez tacher ver 6.53 16.49 0.19 0.07 imp:pre:2p;ind:pre:2p; +tachiste tachiste adj f s 0.00 0.07 0.00 0.07 +tachons tacher ver 6.53 16.49 0.04 0.00 imp:pre:1p; +taché tacher ver m s 6.53 16.49 1.70 4.32 par:pas; +tachée tacher ver f s 6.53 16.49 1.05 3.92 par:pas; +tachées tacher ver f p 6.53 16.49 0.69 1.42 par:pas; +tachéomètre tachéomètre nom m s 0.02 0.00 0.02 0.00 +tachés tacher ver m p 6.53 16.49 0.39 2.36 par:pas; +tachyarythmie tachyarythmie nom f s 0.04 0.00 0.04 0.00 +tachycarde tachycarder ver 0.53 0.07 0.53 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tachycardie tachycardie nom f s 0.82 0.61 0.82 0.47 +tachycardies tachycardie nom f p 0.82 0.61 0.00 0.14 +tachymètre tachymètre nom m s 0.00 0.14 0.00 0.14 +tachyon tachyon nom m s 0.24 0.00 0.07 0.00 +tachyons tachyon nom m p 0.24 0.00 0.16 0.00 +tacite tacite adj s 0.58 4.66 0.57 4.26 +tacitement tacitement adv 0.01 1.62 0.01 1.62 +tacites tacite adj p 0.58 4.66 0.01 0.41 +taciturne taciturne adj s 1.03 6.55 0.93 5.41 +taciturnes taciturne adj p 1.03 6.55 0.10 1.15 +taciturnité taciturnité nom f s 0.00 0.20 0.00 0.20 +tacle tacle nom m s 0.38 0.07 0.38 0.07 +tacler tacler ver 0.04 0.00 0.04 0.00 inf; +taco taco nom m s 2.00 0.27 0.99 0.00 +tacon tacon nom m s 0.00 0.14 0.00 0.14 +taconnet taconnet nom m s 0.00 0.34 0.00 0.34 +tacos taco nom m p 2.00 0.27 1.01 0.27 +tacot tacot nom m s 1.31 0.74 1.25 0.74 +tacots tacot nom m p 1.31 0.74 0.06 0.00 +tacs tac nom m p 3.21 4.66 0.05 0.07 +tact tact nom m s 2.68 4.80 2.68 4.80 +tacticien tacticien nom m s 0.36 0.41 0.25 0.41 +tacticienne tacticien nom f s 0.36 0.41 0.10 0.00 +tacticiens tacticien nom m p 0.36 0.41 0.01 0.00 +tactile tactile adj s 0.21 0.88 0.14 0.61 +tactilement tactilement adv 0.00 0.14 0.00 0.14 +tactiles tactile adj p 0.21 0.88 0.07 0.27 +tactique tactique nom f s 5.31 6.69 4.46 6.42 +tactiquement tactiquement adv 0.25 0.07 0.25 0.07 +tactiques tactique nom f p 5.31 6.69 0.85 0.27 +tadjik tadjik nom m s 0.00 0.14 0.00 0.14 +tadorne tadorne nom m s 0.00 0.41 0.00 0.20 +tadornes tadorne nom m p 0.00 0.41 0.00 0.20 +taenia taenia nom m s 0.00 0.68 0.00 0.68 +taf taf nom m s 1.05 0.54 1.04 0.54 +tafanard tafanard nom m s 0.00 0.20 0.00 0.20 +taffe taffe nom f s 2.06 0.14 2.02 0.14 +taffes taffe nom f p 2.06 0.14 0.03 0.00 +taffetas taffetas nom m 0.17 1.76 0.17 1.76 +tafia tafia nom m s 0.01 0.07 0.01 0.07 +tafs taf nom m p 1.05 0.54 0.01 0.00 +tag tag nom m s 0.79 0.41 0.79 0.41 +tagada tagada ono 0.99 0.34 0.99 0.34 +tagalog tagalog nom m s 0.04 0.14 0.04 0.14 +tagger tagger nom m s 0.13 0.00 0.13 0.00 +tagliatelle tagliatelle nom f s 0.38 0.47 0.01 0.34 +tagliatelles tagliatelle nom f p 0.38 0.47 0.37 0.14 +taguais taguer ver 0.28 0.00 0.01 0.00 ind:imp:2s; +tague taguer ver 0.28 0.00 0.06 0.00 imp:pre:2s;ind:pre:3s; +taguer taguer ver 0.28 0.00 0.21 0.00 inf; +tagueur tagueur nom m s 0.06 0.00 0.03 0.00 +tagueurs tagueur nom m p 0.06 0.00 0.04 0.00 +tahitien tahitien nom m s 0.06 0.34 0.04 0.00 +tahitienne tahitien adj f s 0.16 0.00 0.11 0.00 +tahitiennes tahitien nom f p 0.06 0.34 0.02 0.20 +tahitiens tahitien nom m p 0.06 0.34 0.00 0.07 +tai_chi tai_chi nom m s 0.12 0.00 0.12 0.00 +taie taie nom f s 0.51 2.57 0.35 1.96 +taies taie nom f p 0.51 2.57 0.16 0.61 +taifas taifa nom m p 0.00 0.07 0.00 0.07 +tailla tailler ver 13.28 37.64 0.01 1.01 ind:pas:3s; +taillable taillable adj m s 0.00 0.14 0.00 0.07 +taillables taillable adj p 0.00 0.14 0.00 0.07 +taillada taillader ver 1.57 1.82 0.00 0.07 ind:pas:3s; +tailladait taillader ver 1.57 1.82 0.03 0.20 ind:imp:3s; +tailladant taillader ver 1.57 1.82 0.12 0.20 par:pre; +taillade taillade nom f s 0.30 0.00 0.30 0.00 +tailladent taillader ver 1.57 1.82 0.01 0.07 ind:pre:3p; +taillader taillader ver 1.57 1.82 0.47 0.34 inf; +tailladez taillader ver 1.57 1.82 0.00 0.07 imp:pre:2p; +tailladé taillader ver m s 1.57 1.82 0.48 0.34 par:pas; +tailladée taillader ver f s 1.57 1.82 0.25 0.14 par:pas; +tailladées taillader ver f p 1.57 1.82 0.00 0.14 par:pas; +tailladés taillader ver m p 1.57 1.82 0.06 0.27 par:pas; +taillaient tailler ver 13.28 37.64 0.03 0.68 ind:imp:3p; +taillais tailler ver 13.28 37.64 0.19 0.41 ind:imp:1s;ind:imp:2s; +taillait tailler ver 13.28 37.64 0.25 3.11 ind:imp:3s; +taillandier taillandier nom m s 0.00 0.07 0.00 0.07 +taillant tailler ver 13.28 37.64 0.14 1.42 par:pre; +taillants taillant nom m p 0.00 0.07 0.00 0.07 +taille_crayon taille_crayon nom m s 0.07 0.68 0.04 0.54 +taille_crayon taille_crayon nom m p 0.07 0.68 0.03 0.14 +taille_douce taille_douce nom f s 0.00 0.20 0.00 0.14 +taille_haie taille_haie nom m s 0.07 0.07 0.06 0.00 +taille_haie taille_haie nom m p 0.07 0.07 0.01 0.07 +taille taille nom f s 43.17 76.49 41.32 72.84 +taillent tailler ver 13.28 37.64 0.56 1.15 ind:pre:3p; +tailler tailler ver 13.28 37.64 2.93 6.89 inf; +taillera tailler ver 13.28 37.64 0.06 0.14 ind:fut:3s; +taillerai tailler ver 13.28 37.64 0.18 0.27 ind:fut:1s; +taillerais tailler ver 13.28 37.64 0.30 0.00 cnd:pre:1s;cnd:pre:2s; +taillerait tailler ver 13.28 37.64 0.02 0.27 cnd:pre:3s; +taillerez tailler ver 13.28 37.64 0.00 0.07 ind:fut:2p; +tailleront tailler ver 13.28 37.64 0.04 0.00 ind:fut:3p; +taille_douce taille_douce nom f p 0.00 0.20 0.00 0.07 +tailles taille nom f p 43.17 76.49 1.85 3.65 +tailleur_pantalon tailleur_pantalon nom m s 0.01 0.07 0.01 0.07 +tailleur tailleur nom m s 8.03 25.20 7.00 22.64 +tailleurs tailleur nom m p 8.03 25.20 1.03 2.57 +tailleuse tailleuse nom f s 2.29 0.07 2.29 0.07 +taillez tailler ver 13.28 37.64 0.27 0.27 imp:pre:2p;ind:pre:2p; +taillis taillis nom m 0.34 15.00 0.34 15.00 +tailloir tailloir nom m s 0.00 0.20 0.00 0.14 +tailloirs tailloir nom m p 0.00 0.20 0.00 0.07 +taillons taillon nom m p 0.12 0.14 0.12 0.14 +taillèrent tailler ver 13.28 37.64 0.01 0.07 ind:pas:3p; +taillé tailler ver m s 13.28 37.64 2.38 7.70 par:pas; +taillée tailler ver f s 13.28 37.64 0.48 4.32 par:pas; +taillées tailler ver f p 13.28 37.64 0.28 2.30 par:pas; +taillés tailler ver m p 13.28 37.64 0.27 3.85 par:pas; +tain tain nom m s 0.83 1.55 0.83 1.55 +taira taire ver 154.47 139.80 0.22 0.74 ind:fut:3s; +tairai taire ver 154.47 139.80 1.74 0.34 ind:fut:1s; +tairaient taire ver 154.47 139.80 0.01 0.07 cnd:pre:3p; +tairais taire ver 154.47 139.80 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +tairait taire ver 154.47 139.80 0.01 0.88 cnd:pre:3s; +tairas taire ver 154.47 139.80 0.29 0.00 ind:fut:2s; +taire taire ver 154.47 139.80 31.81 31.69 inf; +tairez taire ver 154.47 139.80 0.06 0.07 ind:fut:2p; +tairions taire ver 154.47 139.80 0.00 0.14 cnd:pre:1p; +tairons taire ver 154.47 139.80 0.06 0.20 ind:fut:1p; +tairont taire ver 154.47 139.80 0.51 0.14 ind:fut:3p; +tais taire ver 154.47 139.80 77.46 17.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +taisaient taire ver 154.47 139.80 0.30 4.53 ind:imp:3p; +taisais taire ver 154.47 139.80 0.53 2.50 ind:imp:1s;ind:imp:2s; +taisait taire ver 154.47 139.80 0.63 12.36 ind:imp:3s; +taisant taire ver 154.47 139.80 0.24 2.03 par:pre; +taise taire ver 154.47 139.80 1.51 1.49 sub:pre:1s;sub:pre:3s; +taisent taire ver 154.47 139.80 1.28 5.00 ind:pre:3p; +taises taire ver 154.47 139.80 0.16 0.14 sub:pre:2s; +taiseux taiseux adj m s 0.02 0.14 0.02 0.14 +taisez taire ver 154.47 139.80 24.30 4.39 imp:pre:2p;ind:pre:2p; +taisiez taire ver 154.47 139.80 0.10 0.07 ind:imp:2p; +taisions taire ver 154.47 139.80 0.02 1.08 ind:imp:1p; +taisons taire ver 154.47 139.80 0.23 1.82 imp:pre:1p;ind:pre:1p; +tait taire ver 154.47 139.80 7.42 11.62 ind:pre:3s; +tajine tajine nom m s 0.00 0.41 0.00 0.20 +tajines tajine nom m p 0.00 0.41 0.00 0.20 +take_off take_off nom m 0.08 0.00 0.08 0.00 +tala tala nom m s 0.34 0.27 0.34 0.07 +talait taler ver 0.12 0.54 0.00 0.14 ind:imp:3s; +talas tala nom m p 0.34 0.27 0.00 0.20 +talavera_de_la_reina talavera_de_la_reina nom s 0.00 0.07 0.00 0.07 +talbin talbin nom m s 0.05 1.49 0.01 0.47 +talbins talbin nom m p 0.05 1.49 0.04 1.01 +talc talc nom m s 1.40 1.49 1.40 1.49 +tale taler ver 0.12 0.54 0.02 0.14 ind:pre:3s; +talent talent nom m s 44.17 38.11 33.28 31.08 +talents talent nom m p 44.17 38.11 10.89 7.03 +talentueuse talentueux adj f s 4.39 0.95 0.93 0.14 +talentueusement talentueusement adv 0.00 0.07 0.00 0.07 +talentueuses talentueux adj f p 4.39 0.95 0.12 0.00 +talentueux talentueux adj m 4.39 0.95 3.35 0.81 +taler taler ver 0.12 0.54 0.00 0.07 inf; +taleth taleth nom m s 0.03 0.27 0.03 0.20 +taleths taleth nom m p 0.03 0.27 0.00 0.07 +taliban taliban nom m s 1.81 0.00 0.23 0.00 +talibans taliban nom m p 1.81 0.00 1.58 0.00 +talion talion nom m s 0.05 3.18 0.05 3.18 +talisman talisman nom m s 1.79 2.97 1.38 2.64 +talismans talisman nom m p 1.79 2.97 0.41 0.34 +talkie_walkie talkie_walkie nom m s 1.37 0.20 0.89 0.07 +talkie talkie nom m s 0.32 0.00 0.17 0.00 +talkie_walkie talkie_walkie nom m p 1.37 0.20 0.48 0.14 +talkies talkie nom m p 0.32 0.00 0.16 0.00 +talle talle nom f s 0.00 0.07 0.00 0.07 +taller taller ver 0.02 0.00 0.01 0.00 inf; +tallipot tallipot nom m s 0.00 0.07 0.00 0.07 +tallons taller ver 0.02 0.00 0.01 0.00 ind:pre:1p; +talmouse talmouse nom f s 0.00 0.07 0.00 0.07 +talmudique talmudique adj s 0.94 0.07 0.94 0.00 +talmudiques talmudique adj p 0.94 0.07 0.00 0.07 +talmudiste talmudiste nom s 0.14 0.34 0.14 0.27 +talmudistes talmudiste nom p 0.14 0.34 0.00 0.07 +talochaient talocher ver 0.01 0.27 0.00 0.07 ind:imp:3p; +talochait talocher ver 0.01 0.27 0.00 0.07 ind:imp:3s; +taloche taloche nom f s 0.25 1.22 0.14 0.47 +talocher talocher ver 0.01 0.27 0.01 0.07 inf; +taloches taloche nom f p 0.25 1.22 0.11 0.74 +talon talon nom m s 11.72 49.26 4.03 12.36 +talonna talonner ver 0.37 2.57 0.00 0.14 ind:pas:3s; +talonnades talonnade nom f p 0.00 0.07 0.00 0.07 +talonnait talonner ver 0.37 2.57 0.01 0.47 ind:imp:3s; +talonnant talonner ver 0.37 2.57 0.01 0.27 par:pre; +talonne talonner ver 0.37 2.57 0.20 0.41 ind:pre:1s;ind:pre:3s; +talonnent talonner ver 0.37 2.57 0.05 0.07 ind:pre:3p; +talonner talonner ver 0.37 2.57 0.06 0.20 inf; +talonnette talonnette nom f s 0.06 0.74 0.00 0.27 +talonnettes talonnette nom f p 0.06 0.74 0.06 0.47 +talonneur talonneur nom m s 0.00 0.07 0.00 0.07 +talonnons talonner ver 0.37 2.57 0.01 0.00 ind:pre:1p; +talonné talonner ver m s 0.37 2.57 0.03 0.61 par:pas; +talonnée talonner ver f s 0.37 2.57 0.01 0.20 par:pas; +talonnés talonner ver m p 0.37 2.57 0.00 0.20 par:pas; +talons talon nom m p 11.72 49.26 7.70 36.89 +talqua talquer ver 0.04 0.54 0.00 0.07 ind:pas:3s; +talquer talquer ver 0.04 0.54 0.02 0.20 inf; +talquât talquer ver 0.04 0.54 0.00 0.07 sub:imp:3s; +talqué talquer ver m s 0.04 0.54 0.01 0.14 par:pas; +talquées talquer ver f p 0.04 0.54 0.00 0.07 par:pas; +talée taler ver f s 0.12 0.54 0.00 0.07 par:pas; +talées talé adj f p 0.14 0.27 0.00 0.14 +talures talure nom f p 0.00 0.07 0.00 0.07 +talés talé adj m p 0.14 0.27 0.14 0.07 +talus talus nom m 0.69 19.53 0.69 19.53 +tam_tam tam_tam nom m s 1.06 3.45 0.37 2.77 +tam_tam tam_tam nom m p 1.06 3.45 0.69 0.68 +tamagotchi tamagotchi nom m s 0.08 0.00 0.08 0.00 +tamanoir tamanoir nom m s 0.00 0.07 0.00 0.07 +tamarin tamarin nom m s 0.14 0.07 0.14 0.07 +tamarinier tamarinier nom m s 0.01 0.14 0.01 0.00 +tamariniers tamarinier nom m p 0.01 0.14 0.00 0.14 +tamaris tamaris nom m 0.01 0.61 0.01 0.61 +tambouille tambouille nom f s 0.71 1.96 0.71 1.69 +tambouilles tambouille nom f p 0.71 1.96 0.00 0.27 +tambour_major tambour_major nom m s 0.26 0.74 0.26 0.74 +tambour tambour nom m s 10.20 19.32 7.80 10.54 +tambourin tambourin nom m s 0.56 1.08 0.49 0.47 +tambourina tambouriner ver 0.66 5.54 0.00 0.47 ind:pas:3s; +tambourinade tambourinade nom f s 0.00 0.07 0.00 0.07 +tambourinaient tambouriner ver 0.66 5.54 0.00 0.20 ind:imp:3p; +tambourinaire tambourinaire nom m s 0.00 0.27 0.00 0.07 +tambourinaires tambourinaire nom m p 0.00 0.27 0.00 0.20 +tambourinais tambouriner ver 0.66 5.54 0.01 0.07 ind:imp:1s; +tambourinait tambouriner ver 0.66 5.54 0.02 1.08 ind:imp:3s; +tambourinant tambouriner ver 0.66 5.54 0.04 0.74 par:pre; +tambourine tambouriner ver 0.66 5.54 0.08 1.08 ind:pre:1s;ind:pre:3s; +tambourinement tambourinement nom m s 0.00 0.95 0.00 0.95 +tambourinent tambouriner ver 0.66 5.54 0.28 0.07 ind:pre:3p; +tambouriner tambouriner ver 0.66 5.54 0.09 1.42 inf; +tambourineur tambourineur nom m s 0.00 0.07 0.00 0.07 +tambourins tambourin nom m p 0.56 1.08 0.07 0.61 +tambourinèrent tambouriner ver 0.66 5.54 0.00 0.07 ind:pas:3p; +tambouriné tambouriner ver m s 0.66 5.54 0.01 0.27 par:pas; +tambourinée tambouriner ver f s 0.66 5.54 0.14 0.07 par:pas; +tambours tambour nom m p 10.20 19.32 2.40 8.78 +tamia tamia nom m s 0.04 0.00 0.04 0.00 +tamis tamis nom m 0.53 1.82 0.53 1.82 +tamisage tamisage nom m s 0.01 0.00 0.01 0.00 +tamisaient tamiser ver 0.38 2.30 0.00 0.14 ind:imp:3p; +tamisais tamiser ver 0.38 2.30 0.00 0.07 ind:imp:1s; +tamisait tamiser ver 0.38 2.30 0.00 0.20 ind:imp:3s; +tamisant tamiser ver 0.38 2.30 0.00 0.20 par:pre; +tamise tamiser ver 0.38 2.30 0.16 0.07 imp:pre:2s;ind:pre:3s; +tamisent tamiser ver 0.38 2.30 0.00 0.07 ind:pre:3p; +tamiser tamiser ver 0.38 2.30 0.17 0.27 inf; +tamiseur tamiseur nom m s 0.14 0.00 0.14 0.00 +tamisez tamiser ver 0.38 2.30 0.02 0.00 imp:pre:2p; +tamisé tamisé adj m s 0.76 1.96 0.02 0.34 +tamisée tamisé adj f s 0.76 1.96 0.68 1.01 +tamisées tamisé adj f p 0.76 1.96 0.07 0.54 +tamisés tamiser ver m p 0.38 2.30 0.00 0.14 par:pas; +tamoul tamoul nom m s 0.00 0.14 0.00 0.14 +tamouré tamouré nom m s 0.02 0.07 0.02 0.07 +tampax tampax nom m 0.29 0.27 0.29 0.27 +tampon_buvard tampon_buvard nom m s 0.00 0.20 0.00 0.20 +tampon tampon nom m s 4.28 8.72 2.96 5.14 +tamponna tamponner ver 1.66 6.35 0.00 0.61 ind:pas:3s; +tamponnade tamponnade nom f s 0.17 0.00 0.17 0.00 +tamponnage tamponnage nom m s 0.02 0.07 0.02 0.00 +tamponnages tamponnage nom m p 0.02 0.07 0.00 0.07 +tamponnai tamponner ver 1.66 6.35 0.00 0.07 ind:pas:1s; +tamponnaient tamponner ver 1.66 6.35 0.00 0.20 ind:imp:3p; +tamponnais tamponner ver 1.66 6.35 0.11 0.07 ind:imp:1s;ind:imp:2s; +tamponnait tamponner ver 1.66 6.35 0.01 0.95 ind:imp:3s; +tamponnant tamponner ver 1.66 6.35 0.00 0.41 par:pre; +tamponne tamponner ver 1.66 6.35 0.52 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tamponnement tamponnement nom m s 0.00 0.20 0.00 0.20 +tamponnent tamponner ver 1.66 6.35 0.03 0.14 ind:pre:3p; +tamponner tamponner ver 1.66 6.35 0.27 0.81 inf; +tamponnera tamponner ver 1.66 6.35 0.01 0.00 ind:fut:3s; +tamponneur tamponneur adj m s 0.26 0.54 0.02 0.00 +tamponneuse tamponneur adj f s 0.26 0.54 0.10 0.00 +tamponneuses tamponneur adj f p 0.26 0.54 0.14 0.54 +tamponnez tamponner ver 1.66 6.35 0.15 0.07 imp:pre:2p;ind:pre:2p; +tamponnoir tamponnoir nom m s 0.00 0.14 0.00 0.07 +tamponnoirs tamponnoir nom m p 0.00 0.14 0.00 0.07 +tamponné tamponner ver m s 1.66 6.35 0.40 0.41 par:pas; +tamponnée tamponner ver f s 1.66 6.35 0.15 0.00 par:pas; +tamponnés tamponner ver m p 1.66 6.35 0.02 0.14 par:pas; +tampons tampon nom m p 4.28 8.72 1.32 3.58 +tamtam tamtam nom m s 0.13 0.07 0.13 0.07 +tan_sad tan_sad nom m s 0.00 0.20 0.00 0.20 +tan tan nom m s 0.66 0.20 0.50 0.20 +tanaisie tanaisie nom f s 0.01 0.00 0.01 0.00 +tance tancer ver 0.03 1.01 0.00 0.14 ind:pre:3s; +tancer tancer ver 0.03 1.01 0.01 0.47 inf; +tanche tanche nom f s 0.06 0.74 0.04 0.41 +tanches tanche nom f p 0.06 0.74 0.01 0.34 +tancé tancer ver m s 0.03 1.01 0.00 0.07 par:pas; +tancée tancer ver f s 0.03 1.01 0.00 0.07 par:pas; +tancés tancer ver m p 0.03 1.01 0.01 0.07 par:pas; +tandem tandem nom m s 0.60 2.03 0.60 1.82 +tandems tandem nom m p 0.60 2.03 0.00 0.20 +tandis_qu tandis_qu con 0.01 0.07 0.01 0.07 +tandis_que tandis_que con 15.04 136.15 15.04 136.15 +tandoori tandoori nom m s 0.06 0.00 0.06 0.00 +tangage tangage nom m s 0.24 1.08 0.24 1.08 +tangara tangara nom m s 0.08 0.00 0.06 0.00 +tangaras tangara nom m p 0.08 0.00 0.02 0.00 +tangence tangence nom f s 0.00 0.14 0.00 0.14 +tangent tangent adj m s 0.03 0.61 0.03 0.07 +tangente tangente nom f s 0.35 1.15 0.35 0.88 +tangentes tangente nom f p 0.35 1.15 0.00 0.27 +tangentiel tangentiel adj m s 0.00 0.07 0.00 0.07 +tangents tangent adj m p 0.03 0.61 0.00 0.14 +tangerine tangerine nom f s 0.00 0.14 0.00 0.14 +tangibilité tangibilité nom f s 0.01 0.00 0.01 0.00 +tangible tangible adj s 1.53 2.09 0.90 1.55 +tangibles tangible adj p 1.53 2.09 0.63 0.54 +tango tango nom m s 5.74 6.28 5.58 4.53 +tangon tangon nom m s 0.02 0.00 0.02 0.00 +tangos tango nom m p 5.74 6.28 0.16 1.76 +tangua tanguer ver 0.69 7.91 0.00 0.74 ind:pas:3s; +tanguaient tanguer ver 0.69 7.91 0.00 0.20 ind:imp:3p; +tanguait tanguer ver 0.69 7.91 0.02 2.64 ind:imp:3s; +tanguant tanguer ver 0.69 7.91 0.01 0.54 par:pre; +tangue tanguer ver 0.69 7.91 0.38 1.69 ind:pre:1s;ind:pre:3s; +tanguent tanguer ver 0.69 7.91 0.11 0.27 ind:pre:3p; +tanguer tanguer ver 0.69 7.91 0.17 1.55 inf; +tangueraient tanguer ver 0.69 7.91 0.00 0.07 cnd:pre:3p; +tangérois tangérois adj m s 0.00 0.07 0.00 0.07 +tangué tanguer ver m s 0.69 7.91 0.00 0.20 par:pas; +tanin tanin nom m s 0.05 0.34 0.05 0.34 +tanière tanière nom f s 2.06 4.80 2.00 3.92 +tanières tanière nom f p 2.06 4.80 0.06 0.88 +tank tank nom m s 8.41 4.86 3.80 1.89 +tanka tanka nom m s 0.00 0.54 0.00 0.54 +tanker tanker nom m s 0.78 0.07 0.49 0.07 +tankers tanker nom m p 0.78 0.07 0.29 0.00 +tankiste tankiste nom s 0.00 0.27 0.00 0.07 +tankistes tankiste nom p 0.00 0.27 0.00 0.20 +tanks tank nom m p 8.41 4.86 4.62 2.97 +tanna tanner ver 2.71 2.70 0.45 0.00 ind:pas:3s; +tannage tannage nom m s 0.01 0.00 0.01 0.00 +tannaient tanner ver 2.71 2.70 0.00 0.07 ind:imp:3p; +tannait tanner ver 2.71 2.70 0.02 0.27 ind:imp:3s; +tannant tanner ver 2.71 2.70 0.01 0.00 par:pre; +tannante tannant adj f s 0.00 0.27 0.00 0.07 +tannantes tannant adj f p 0.00 0.27 0.00 0.07 +tanne tanner ver 2.71 2.70 0.44 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tannent tanner ver 2.71 2.70 0.06 0.14 ind:pre:3p;sub:pre:3p; +tanner tanner ver 2.71 2.70 0.73 0.41 inf; +tannerai tanner ver 2.71 2.70 0.03 0.07 ind:fut:1s; +tannerie tannerie nom f s 0.04 0.34 0.04 0.34 +tannes tanner ver 2.71 2.70 0.04 0.00 ind:pre:2s; +tanneur tanneur nom m s 0.31 1.15 0.31 0.27 +tanneurs tanneur nom m p 0.31 1.15 0.00 0.88 +tannin tannin nom m s 0.01 0.00 0.01 0.00 +tanné tanner ver m s 2.71 2.70 0.70 0.74 par:pas; +tannée tanner ver f s 2.71 2.70 0.17 0.61 par:pas; +tannées tannée nom f p 0.18 0.27 0.01 0.00 +tannés tanner ver m p 2.71 2.70 0.04 0.20 par:pas; +tanrec tanrec nom m s 0.00 0.07 0.00 0.07 +tans tan nom m p 0.66 0.20 0.13 0.00 +tansad tansad nom m s 0.00 0.07 0.00 0.07 +tant tant adv_sup 380.34 436.42 380.34 436.42 +tantôt tantôt adv 5.62 66.76 5.62 66.76 +tante tante nom f s 76.62 118.38 70.69 110.95 +tantes tante nom f p 76.62 118.38 5.93 7.43 +tançai tancer ver 0.03 1.01 0.00 0.07 ind:pas:1s; +tançait tancer ver 0.03 1.01 0.00 0.07 ind:imp:3s; +tançant tancer ver 0.03 1.01 0.00 0.07 par:pre; +tantine tantine nom f s 1.08 0.20 1.08 0.14 +tantines tantine nom f p 1.08 0.20 0.00 0.07 +tantinet tantinet nom m s 1.02 1.55 1.02 1.55 +tantièmes tantième nom m p 0.00 0.07 0.00 0.07 +tantouse tantouse nom f s 0.69 0.74 0.63 0.14 +tantouses tantouse nom f p 0.69 0.74 0.06 0.61 +tantouze tantouze nom f s 1.14 0.27 0.85 0.14 +tantouzes tantouze nom f p 1.14 0.27 0.28 0.14 +tantra tantra nom m s 0.11 0.00 0.11 0.00 +tantrique tantrique adj m s 0.19 0.14 0.18 0.07 +tantriques tantrique adj m p 0.19 0.14 0.01 0.07 +tantrisme tantrisme nom m s 0.17 0.34 0.17 0.34 +tao tao nom m s 0.05 0.61 0.05 0.61 +taoïsme taoïsme nom m s 0.06 0.07 0.06 0.07 +taoïste taoïste adj s 0.03 0.47 0.03 0.34 +taoïstes taoïste nom p 0.03 0.61 0.02 0.20 +taon taon nom m s 0.73 0.61 0.01 0.14 +taons taon nom m p 0.73 0.61 0.72 0.47 +tap tap ono 0.53 2.50 0.53 2.50 +tapa taper ver 61.06 67.91 0.03 4.93 ind:pas:3s;;ind:pas:3s; +tapage tapage nom m s 1.53 6.08 1.52 6.01 +tapageait tapager ver 0.00 0.14 0.00 0.14 ind:imp:3s; +tapages tapage nom m p 1.53 6.08 0.01 0.07 +tapageur tapageur adj m s 0.23 2.97 0.10 1.28 +tapageurs tapageur nom m p 0.11 0.07 0.05 0.07 +tapageuse tapageur adj f s 0.23 2.97 0.10 1.01 +tapageuses tapageur adj f p 0.23 2.97 0.01 0.20 +tapai taper ver 61.06 67.91 0.00 0.14 ind:pas:1s; +tapaient taper ver 61.06 67.91 0.32 2.57 ind:imp:3p; +tapais taper ver 61.06 67.91 0.68 1.08 ind:imp:1s;ind:imp:2s; +tapait taper ver 61.06 67.91 1.78 9.05 ind:imp:3s; +tapant taper ver 61.06 67.91 0.72 5.81 par:pre; +tapante tapant adj f s 0.57 0.68 0.02 0.00 +tapantes tapant adj f p 0.57 0.68 0.49 0.27 +tapas tapa nom m p 0.15 0.00 0.15 0.00 +tape_cul tape_cul nom m s 0.04 0.41 0.04 0.41 +tape_à_l_oeil tape_à_l_oeil adj 0.00 0.41 0.00 0.41 +tape taper ver 61.06 67.91 18.45 11.89 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tapecul tapecul nom m s 0.00 0.07 0.00 0.07 +tapement tapement nom m s 0.01 0.14 0.01 0.00 +tapements tapement nom m p 0.01 0.14 0.00 0.14 +tapenade tapenade nom f s 0.02 0.00 0.02 0.00 +tapent taper ver 61.06 67.91 1.60 1.76 ind:pre:3p; +taper taper ver 61.06 67.91 19.14 20.07 inf; +tapera taper ver 61.06 67.91 0.19 0.34 ind:fut:3s; +taperai taper ver 61.06 67.91 0.59 0.14 ind:fut:1s; +taperaient taper ver 61.06 67.91 0.01 0.07 cnd:pre:3p; +taperais taper ver 61.06 67.91 0.65 0.20 cnd:pre:1s;cnd:pre:2s; +taperait taper ver 61.06 67.91 0.07 0.34 cnd:pre:3s; +taperas taper ver 61.06 67.91 0.13 0.00 ind:fut:2s; +taperez taper ver 61.06 67.91 0.01 0.14 ind:fut:2p; +taperiez taper ver 61.06 67.91 0.01 0.00 cnd:pre:2p; +taperont taper ver 61.06 67.91 0.04 0.00 ind:fut:3p; +tapes taper ver 61.06 67.91 3.17 0.54 ind:pre:2s;sub:pre:2s; +tapette tapette nom f s 7.16 1.15 4.77 0.61 +tapettes tapette nom f p 7.16 1.15 2.39 0.54 +tapeur tapeur nom m s 0.20 0.27 0.19 0.07 +tapeurs tapeur nom m p 0.20 0.27 0.02 0.14 +tapeuses tapeur nom f p 0.20 0.27 0.00 0.07 +tapez taper ver 61.06 67.91 2.83 0.14 imp:pre:2p;ind:pre:2p; +tapi tapir ver m s 0.92 11.82 0.19 4.39 par:pas; +tapie tapir ver f s 0.92 11.82 0.22 2.84 par:pas; +tapies tapir ver f p 0.92 11.82 0.02 0.61 par:pas; +tapiez taper ver 61.06 67.91 0.06 0.07 ind:imp:2p; +tapin tapin nom m s 2.31 5.41 2.25 3.58 +tapinage tapinage nom m s 0.16 0.00 0.16 0.00 +tapinaient tapiner ver 1.76 2.70 0.01 0.07 ind:imp:3p; +tapinais tapiner ver 1.76 2.70 0.02 0.14 ind:imp:1s;ind:imp:2s; +tapinait tapiner ver 1.76 2.70 0.09 0.47 ind:imp:3s; +tapinant tapiner ver 1.76 2.70 0.01 0.00 par:pre; +tapine tapiner ver 1.76 2.70 0.97 0.68 ind:pre:1s;ind:pre:3s; +tapinent tapiner ver 1.76 2.70 0.14 0.41 ind:pre:3p; +tapiner tapiner ver 1.76 2.70 0.39 0.68 inf; +tapinera tapiner ver 1.76 2.70 0.01 0.07 ind:fut:3s; +tapinerai tapiner ver 1.76 2.70 0.00 0.07 ind:fut:1s; +tapinerais tapiner ver 1.76 2.70 0.01 0.00 cnd:pre:1s; +tapines tapiner ver 1.76 2.70 0.11 0.00 ind:pre:2s; +tapineuse tapineur nom f s 0.06 0.54 0.06 0.20 +tapineuses tapineuse nom f p 0.02 0.00 0.02 0.00 +tapins tapin nom m p 2.31 5.41 0.06 1.82 +tapiné tapiner ver m s 1.76 2.70 0.00 0.07 par:pas; +tapinée tapiner ver f s 1.76 2.70 0.00 0.07 par:pas; +tapioca tapioca nom m s 0.33 1.69 0.33 1.69 +tapir tapir nom m s 0.16 0.34 0.13 0.34 +tapira tapir ver 0.92 11.82 0.01 0.07 ind:fut:3s; +tapirs tapir nom m p 0.16 0.34 0.02 0.00 +tapis_brosse tapis_brosse nom m s 0.01 0.14 0.01 0.14 +tapis tapis nom m 20.13 60.88 20.13 60.88 +tapissa tapisser ver 1.12 10.95 0.00 0.14 ind:pas:3s; +tapissaient tapisser ver 1.12 10.95 0.01 0.88 ind:imp:3p; +tapissais tapisser ver 1.12 10.95 0.00 0.07 ind:imp:1s; +tapissait tapisser ver 1.12 10.95 0.00 1.28 ind:imp:3s; +tapissant tapisser ver 1.12 10.95 0.01 0.27 par:pre; +tapisse tapisser ver 1.12 10.95 0.06 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tapissent tapir ver 0.92 11.82 0.10 0.00 sub:imp:3p; +tapisser tapisser ver 1.12 10.95 0.14 0.54 inf; +tapisserai tapisser ver 1.12 10.95 0.01 0.00 ind:fut:1s; +tapisserie tapisserie nom f s 1.34 12.57 0.89 9.73 +tapisseries tapisserie nom f p 1.34 12.57 0.45 2.84 +tapissier tapissier nom m s 0.32 1.69 0.17 1.22 +tapissiers tapissier nom m p 0.32 1.69 0.05 0.34 +tapissière tapissier nom f s 0.32 1.69 0.10 0.14 +tapissé tapisser ver m s 1.12 10.95 0.33 1.82 par:pas; +tapissée tapisser ver f s 1.12 10.95 0.27 2.57 par:pas; +tapissées tapisser ver f p 1.12 10.95 0.01 0.81 par:pas; +tapissés tapisser ver m p 1.12 10.95 0.20 1.76 par:pas; +tapit tapir ver 0.92 11.82 0.06 0.54 ind:pre:3s;ind:pas:3s; +tapâmes taper ver 61.06 67.91 0.00 0.14 ind:pas:1p; +tapons taper ver 61.06 67.91 0.06 0.14 imp:pre:1p;ind:pre:1p; +tapota tapoter ver 1.16 16.55 0.11 3.18 ind:pas:3s; +tapotai tapoter ver 1.16 16.55 0.00 0.07 ind:pas:1s; +tapotaient tapoter ver 1.16 16.55 0.00 0.27 ind:imp:3p; +tapotais tapoter ver 1.16 16.55 0.00 0.07 ind:imp:1s; +tapotait tapoter ver 1.16 16.55 0.04 3.38 ind:imp:3s; +tapotant tapoter ver 1.16 16.55 0.04 3.31 par:pre; +tapote tapoter ver 1.16 16.55 0.36 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tapotement tapotement nom m s 0.07 1.22 0.06 0.47 +tapotements tapotement nom m p 0.07 1.22 0.01 0.74 +tapotent tapoter ver 1.16 16.55 0.01 0.47 ind:pre:3p; +tapoter tapoter ver 1.16 16.55 0.29 1.76 inf; +tapotez tapoter ver 1.16 16.55 0.20 0.00 imp:pre:2p;ind:pre:2p; +tapotis tapotis nom m 0.00 0.07 0.00 0.07 +tapotons tapoter ver 1.16 16.55 0.00 0.07 imp:pre:1p; +tapotèrent tapoter ver 1.16 16.55 0.00 0.20 ind:pas:3p; +tapoté tapoter ver m s 1.16 16.55 0.11 0.68 par:pas; +tapèrent taper ver 61.06 67.91 0.00 0.47 ind:pas:3p; +tapé taper ver m s 61.06 67.91 9.43 6.55 par:pas; +tapée taper ver f s 61.06 67.91 0.92 0.81 par:pas; +tapées tapé adj f p 0.37 0.61 0.16 0.14 +tapés tapé adj m p 0.37 0.61 0.14 0.07 +taquet taquet nom m s 0.14 0.27 0.10 0.27 +taquets taquet nom m p 0.14 0.27 0.04 0.00 +taquin taquin adj m s 0.46 1.35 0.34 0.88 +taquina taquiner ver 5.24 5.74 0.00 0.34 ind:pas:3s; +taquinaient taquiner ver 5.24 5.74 0.04 0.20 ind:imp:3p; +taquinais taquiner ver 5.24 5.74 0.28 0.20 ind:imp:1s;ind:imp:2s; +taquinait taquiner ver 5.24 5.74 0.27 1.15 ind:imp:3s; +taquinant taquiner ver 5.24 5.74 0.01 0.20 par:pre; +taquine taquiner ver 5.24 5.74 1.91 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +taquinent taquiner ver 5.24 5.74 0.06 0.27 ind:pre:3p; +taquiner taquiner ver 5.24 5.74 1.48 2.03 inf; +taquinerait taquiner ver 5.24 5.74 0.21 0.00 cnd:pre:3s; +taquinerie taquinerie nom f s 0.27 0.74 0.03 0.20 +taquineries taquinerie nom f p 0.27 0.74 0.23 0.54 +taquines taquiner ver 5.24 5.74 0.29 0.00 ind:pre:2s; +taquinez taquiner ver 5.24 5.74 0.16 0.00 imp:pre:2p;ind:pre:2p; +taquins taquin adj m p 0.46 1.35 0.02 0.07 +taquiné taquiner ver m s 5.24 5.74 0.41 0.27 par:pas; +taquinée taquiner ver f s 5.24 5.74 0.11 0.00 par:pas; +taquoir taquoir nom m s 0.00 0.14 0.00 0.14 +tar tare nom m s 1.79 5.20 0.23 0.00 +tara tarer ver 6.08 0.54 0.57 0.00 ind:pas:3s;;ind:pas:3s;;ind:pas:3s; +tarabiscot tarabiscot nom m s 0.00 0.07 0.00 0.07 +tarabiscotages tarabiscotage nom m p 0.00 0.14 0.00 0.14 +tarabiscoté tarabiscoté adj m s 0.16 1.01 0.01 0.34 +tarabiscotée tarabiscoté adj f s 0.16 1.01 0.14 0.27 +tarabiscotées tarabiscoté adj f p 0.16 1.01 0.01 0.20 +tarabiscotés tarabiscoté adj m p 0.16 1.01 0.00 0.20 +tarabustait tarabuster ver 0.19 1.55 0.00 0.54 ind:imp:3s; +tarabuste tarabuster ver 0.19 1.55 0.01 0.47 ind:pre:1s;ind:pre:3s; +tarabustent tarabuster ver 0.19 1.55 0.01 0.07 ind:pre:3p; +tarabuster tarabuster ver 0.19 1.55 0.16 0.14 inf; +tarabustes tarabuster ver 0.19 1.55 0.00 0.07 ind:pre:2s; +tarabustèrent tarabuster ver 0.19 1.55 0.00 0.07 ind:pas:3p; +tarabusté tarabuster ver m s 0.19 1.55 0.01 0.14 par:pas; +tarabustés tarabuster ver m p 0.19 1.55 0.00 0.07 par:pas; +tarama tarama nom m s 0.28 0.00 0.28 0.00 +tarare tarare nom m s 0.00 0.20 0.00 0.20 +taratata taratata ono 0.29 0.34 0.29 0.34 +taraud taraud nom m s 0.00 0.34 0.00 0.20 +taraudaient tarauder ver 0.77 2.64 0.00 0.07 ind:imp:3p; +taraudait tarauder ver 0.77 2.64 0.00 0.34 ind:imp:3s; +taraudant taraudant adj m s 0.00 0.14 0.00 0.14 +taraude tarauder ver 0.77 2.64 0.73 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +taraudent tarauder ver 0.77 2.64 0.01 0.27 ind:pre:3p; +tarauder tarauder ver 0.77 2.64 0.02 0.41 inf; +tarauds taraud nom m p 0.00 0.34 0.00 0.14 +taraudèrent tarauder ver 0.77 2.64 0.00 0.07 ind:pas:3p; +taraudé tarauder ver m s 0.77 2.64 0.00 0.34 par:pas; +taraudée tarauder ver f s 0.77 2.64 0.00 0.14 par:pas; +taraudées tarauder ver f p 0.77 2.64 0.00 0.07 par:pas; +taraudés tarauder ver m p 0.77 2.64 0.00 0.14 par:pas; +tarbais tarbais adj m 0.00 0.20 0.00 0.20 +tarbouche tarbouche nom m s 0.00 0.07 0.00 0.07 +tarbouif tarbouif nom m s 0.00 0.14 0.00 0.14 +tard_venu tard_venu adj m s 0.00 0.07 0.00 0.07 +tard tard adv_sup 350.38 344.26 350.38 344.26 +tarda tarder ver 28.36 34.46 0.17 3.51 ind:pas:3s; +tardai tarder ver 28.36 34.46 0.01 0.34 ind:pas:1s; +tardaient tarder ver 28.36 34.46 0.00 0.68 ind:imp:3p; +tardais tarder ver 28.36 34.46 0.47 0.20 ind:imp:1s;ind:imp:2s; +tardait tarder ver 28.36 34.46 0.35 4.46 ind:imp:3s; +tardant tarder ver 28.36 34.46 0.01 0.20 par:pre; +tarde tarder ver 28.36 34.46 4.63 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tardent tarder ver 28.36 34.46 0.52 0.27 ind:pre:3p; +tarder tarder ver 28.36 34.46 15.01 12.09 inf; +tardera tarder ver 28.36 34.46 1.69 0.47 ind:fut:3s; +tarderai tarder ver 28.36 34.46 0.51 0.07 ind:fut:1s; +tarderaient tarder ver 28.36 34.46 0.03 0.54 cnd:pre:3p; +tarderais tarder ver 28.36 34.46 0.11 0.27 cnd:pre:1s; +tarderait tarder ver 28.36 34.46 0.03 1.82 cnd:pre:3s; +tarderas tarder ver 28.36 34.46 0.33 0.00 ind:fut:2s; +tarderez tarder ver 28.36 34.46 0.05 0.00 ind:fut:2p; +tarderie tarderie nom f s 0.00 0.20 0.00 0.14 +tarderies tarderie nom f p 0.00 0.20 0.00 0.07 +tarderiez tarder ver 28.36 34.46 0.01 0.00 cnd:pre:2p; +tarderions tarder ver 28.36 34.46 0.00 0.14 cnd:pre:1p; +tarderons tarder ver 28.36 34.46 0.02 0.07 ind:fut:1p; +tarderont tarder ver 28.36 34.46 0.32 0.14 ind:fut:3p; +tardes tarder ver 28.36 34.46 0.65 0.00 ind:pre:2s; +tardez tarder ver 28.36 34.46 1.14 0.27 imp:pre:2p;ind:pre:2p; +tardiez tarder ver 28.36 34.46 0.01 0.07 ind:imp:2p; +tardif tardif adj m s 2.62 10.00 0.65 2.23 +tardifs tardif adj m p 2.62 10.00 0.34 0.68 +tardigrade tardigrade nom m s 0.01 0.00 0.01 0.00 +tardillon tardillon nom m s 0.00 0.14 0.00 0.14 +tardions tarder ver 28.36 34.46 0.00 0.07 ind:imp:1p; +tardive tardif adj f s 2.62 10.00 1.36 5.74 +tardivement tardivement adv 0.46 1.35 0.46 1.35 +tardives tardif adj f p 2.62 10.00 0.28 1.35 +tardâmes tarder ver 28.36 34.46 0.00 0.07 ind:pas:1p; +tardons tarder ver 28.36 34.46 0.07 0.14 imp:pre:1p;ind:pre:1p; +tardèrent tarder ver 28.36 34.46 0.15 0.81 ind:pas:3p; +tardé tarder ver m s 28.36 34.46 2.08 3.92 par:pas; +tardée tarder ver f s 28.36 34.46 0.00 0.07 par:pas; +tare tare nom f s 1.79 5.20 1.06 3.04 +tarentelle tarentelle nom f s 0.12 0.14 0.12 0.07 +tarentelles tarentelle nom f p 0.12 0.14 0.00 0.07 +tarentule tarentule nom f s 0.32 0.41 0.23 0.34 +tarentules tarentule nom f p 0.32 0.41 0.08 0.07 +tares tare nom f p 1.79 5.20 0.49 2.16 +taret taret nom m s 0.00 0.20 0.00 0.14 +tarets taret nom m p 0.00 0.20 0.00 0.07 +targe targe nom f s 0.40 0.00 0.40 0.00 +targette targette nom f s 0.00 1.01 0.00 0.68 +targettes targette nom f p 0.00 1.01 0.00 0.34 +targua targuer ver 0.27 1.69 0.00 0.07 ind:pas:3s; +targuaient targuer ver 0.27 1.69 0.00 0.14 ind:imp:3p; +targuais targuer ver 0.27 1.69 0.00 0.07 ind:imp:1s; +targuait targuer ver 0.27 1.69 0.00 0.41 ind:imp:3s; +targuant targuer ver 0.27 1.69 0.00 0.14 par:pre; +targue targuer ver 0.27 1.69 0.22 0.27 ind:pre:1s;ind:pre:3s; +targuent targuer ver 0.27 1.69 0.00 0.14 ind:pre:3p; +targuer targuer ver 0.27 1.69 0.04 0.34 inf; +targuez targuer ver 0.27 1.69 0.01 0.00 ind:pre:2p; +targui targui adj m s 0.00 0.07 0.00 0.07 +targui targui nom m s 0.00 0.07 0.00 0.07 +targuât targuer ver 0.27 1.69 0.00 0.07 sub:imp:3s; +targué targuer ver m s 0.27 1.69 0.00 0.07 par:pas; +tari tarir ver m s 1.83 4.93 0.28 0.61 par:pas; +taride taride nom f s 0.00 0.20 0.00 0.20 +tarie tarir ver f s 1.83 4.93 0.69 0.74 par:pas; +taries tarir ver f p 1.83 4.93 0.01 0.34 par:pas; +tarif tarif nom m s 6.26 4.80 4.58 2.84 +tarification tarification nom f s 0.02 0.00 0.01 0.00 +tarifications tarification nom f p 0.02 0.00 0.01 0.00 +tarifié tarifier ver m s 0.00 0.07 0.00 0.07 par:pas; +tarifs tarif nom m p 6.26 4.80 1.69 1.96 +tarifée tarifer ver f s 0.01 0.27 0.00 0.14 par:pas; +tarifées tarifer ver f p 0.01 0.27 0.01 0.07 par:pas; +tarifés tarifer ver m p 0.01 0.27 0.00 0.07 par:pas; +tarin tarin nom m s 0.10 2.91 0.10 2.91 +tarir tarir ver 1.83 4.93 0.05 1.22 inf; +tarira tarir ver 1.83 4.93 0.02 0.00 ind:fut:3s; +tarirent tarir ver 1.83 4.93 0.14 0.20 ind:pas:3p; +taris tarir ver m p 1.83 4.93 0.01 0.07 ind:pre:2s;par:pas; +tarissaient tarir ver 1.83 4.93 0.00 0.14 ind:imp:3p; +tarissait tarir ver 1.83 4.93 0.00 0.27 ind:imp:3s; +tarissant tarir ver 1.83 4.93 0.00 0.20 par:pre; +tarisse tarir ver 1.83 4.93 0.00 0.07 sub:pre:1s; +tarissement tarissement nom m s 0.00 0.27 0.00 0.27 +tarissent tarir ver 1.83 4.93 0.01 0.14 ind:pre:3p; +tarissez tarir ver 1.83 4.93 0.00 0.07 imp:pre:2p; +tarit tarir ver 1.83 4.93 0.62 0.88 ind:pre:3s;ind:pas:3s; +tarière tarière nom f s 0.00 0.20 0.00 0.07 +tarières tarière nom f p 0.00 0.20 0.00 0.14 +tarlatane tarlatane nom f s 0.00 0.07 0.00 0.07 +tarmac tarmac nom m s 0.28 0.07 0.28 0.07 +taro taro nom m s 4.21 0.00 4.21 0.00 +tarot tarot nom m s 0.65 2.09 0.37 0.74 +tarots tarot nom m p 0.65 2.09 0.28 1.35 +tarpan tarpan nom m s 0.00 0.20 0.00 0.14 +tarpans tarpan nom m p 0.00 0.20 0.00 0.07 +tarpon tarpon nom m s 0.08 0.00 0.08 0.00 +tarpé tarpé nom m s 0.32 0.07 0.32 0.07 +tarpéienne tarpéienne nom s 0.01 0.00 0.01 0.00 +tarse tarse nom m s 0.02 0.14 0.02 0.07 +tarses tarse nom m p 0.02 0.14 0.00 0.07 +tarsienne tarsien adj f s 0.01 0.14 0.01 0.00 +tarsiens tarsien adj m p 0.01 0.14 0.00 0.14 +tarsier tarsier nom m s 0.01 0.00 0.01 0.00 +tartan tartan nom m s 0.51 0.27 0.07 0.20 +tartane tartan nom f s 0.51 0.27 0.44 0.07 +tartare tartare adj s 0.46 1.15 0.45 0.61 +tartares tartare nom p 0.94 1.76 0.52 1.15 +tartarin tartarin nom m s 0.00 0.47 0.00 0.41 +tartarinades tartarinade nom f p 0.00 0.14 0.00 0.14 +tartarins tartarin nom m p 0.00 0.47 0.00 0.07 +tarte_minute tarte_minute adj f s 0.01 0.00 0.01 0.00 +tarte tarte nom f s 13.04 10.34 10.41 8.31 +tartelette tartelette nom f s 0.68 0.81 0.04 0.34 +tartelettes tartelette nom f p 0.68 0.81 0.64 0.47 +tartempion tartempion nom m s 0.04 0.00 0.04 0.00 +tartes tarte nom f p 13.04 10.34 2.62 2.03 +tartignolle tartignolle adj s 0.00 0.20 0.00 0.14 +tartignolles tartignolle adj p 0.00 0.20 0.00 0.07 +tartina tartiner ver 0.65 3.18 0.00 0.14 ind:pas:3s; +tartinaient tartiner ver 0.65 3.18 0.00 0.07 ind:imp:3p; +tartinais tartiner ver 0.65 3.18 0.00 0.07 ind:imp:1s; +tartinait tartiner ver 0.65 3.18 0.00 0.34 ind:imp:3s; +tartinant tartiner ver 0.65 3.18 0.01 0.14 par:pre; +tartine tartine nom f s 2.23 16.89 1.41 8.38 +tartinent tartiner ver 0.65 3.18 0.02 0.27 ind:pre:3p; +tartiner tartiner ver 0.65 3.18 0.41 0.88 inf;; +tartinerait tartiner ver 0.65 3.18 0.00 0.07 cnd:pre:3s; +tartines tartine nom f p 2.23 16.89 0.82 8.51 +tartinez tartiner ver 0.65 3.18 0.03 0.00 imp:pre:2p;ind:pre:2p; +tartiné tartiner ver m s 0.65 3.18 0.03 0.27 par:pas; +tartinée tartiner ver f s 0.65 3.18 0.00 0.34 par:pas; +tartinées tartiner ver f p 0.65 3.18 0.00 0.20 par:pas; +tartir tartir ver 0.00 1.89 0.00 1.28 inf; +tartiss tartiss nom m 0.00 0.41 0.00 0.41 +tartissent tartir ver 0.00 1.89 0.00 0.07 ind:pre:3p; +tartisses tartir ver 0.00 1.89 0.00 0.54 sub:pre:2s; +tartouille tartouille nom f s 0.00 0.20 0.00 0.07 +tartouilles tartouille nom f p 0.00 0.20 0.00 0.14 +tartre tartre nom m s 0.03 0.54 0.03 0.54 +tartufe tartufe nom m s 0.01 0.14 0.01 0.14 +tartuferie tartuferie nom f s 0.00 0.14 0.00 0.07 +tartuferies tartuferie nom f p 0.00 0.14 0.00 0.07 +tartufferie tartufferie nom f s 0.00 0.07 0.00 0.07 +tartuffes tartuffe nom m p 0.00 0.07 0.00 0.07 +taré taré nom m s 10.48 2.09 6.96 1.01 +tarée taré adj f s 4.44 1.08 1.45 0.20 +tarées tarer ver f p 6.08 0.54 0.17 0.00 par:pas; +tarés taré nom m p 10.48 2.09 3.53 1.08 +tarzan tarzan nom m s 0.16 0.20 0.14 0.14 +tarzans tarzan nom m p 0.16 0.20 0.01 0.07 +tas tas nom m 65.28 83.78 65.28 83.78 +tasmanien tasmanien adj m s 0.01 0.07 0.01 0.07 +tassa tasser ver 2.21 19.19 0.00 1.08 ind:pas:3s; +tassai tasser ver 2.21 19.19 0.00 0.20 ind:pas:1s; +tassaient tasser ver 2.21 19.19 0.01 0.54 ind:imp:3p; +tassais tasser ver 2.21 19.19 0.00 0.07 ind:imp:1s; +tassait tasser ver 2.21 19.19 0.01 2.03 ind:imp:3s; +tassant tasser ver 2.21 19.19 0.00 0.88 par:pre; +tasse tasse nom f s 21.89 34.12 18.52 25.07 +tasseau tasseau nom m s 0.01 0.00 0.01 0.00 +tassement tassement nom m s 0.06 0.68 0.04 0.61 +tassements tassement nom m p 0.06 0.68 0.01 0.07 +tassent tasser ver 2.21 19.19 0.10 0.81 ind:pre:3p; +tasser tasser ver 2.21 19.19 0.45 1.76 inf; +tassera tasser ver 2.21 19.19 0.25 0.27 ind:fut:3s; +tasserai tasser ver 2.21 19.19 0.00 0.07 ind:fut:1s; +tasserait tasser ver 2.21 19.19 0.03 0.07 cnd:pre:3s; +tasses tasse nom f p 21.89 34.12 3.37 9.05 +tassez tasser ver 2.21 19.19 0.17 0.07 imp:pre:2p; +tassiez tasser ver 2.21 19.19 0.00 0.07 ind:imp:2p; +tassili tassili nom m s 0.00 0.34 0.00 0.34 +tassons tasser ver 2.21 19.19 0.00 0.07 ind:pre:1p; +tassèrent tasser ver 2.21 19.19 0.00 0.34 ind:pas:3p; +tassé tasser ver m s 2.21 19.19 0.41 3.78 par:pas; +tassée tasser ver f s 2.21 19.19 0.06 2.57 par:pas; +tassées tasser ver f p 2.21 19.19 0.04 0.41 par:pas; +tassés tassé adj m p 0.26 4.32 0.06 0.81 +taste_vin taste_vin nom m 0.01 0.14 0.01 0.14 +tata tata nom f s 3.00 0.68 2.96 0.47 +tatami tatami nom m s 0.02 0.20 0.02 0.14 +tatamis tatami nom m p 0.02 0.20 0.00 0.07 +tatane tatane nom f s 0.02 2.64 0.01 1.01 +tatanes tatane nom f p 0.02 2.64 0.01 1.62 +tatar tatar nom m s 0.01 0.07 0.01 0.07 +tatars tatar adj m p 0.00 0.20 0.00 0.07 +tatas tata nom f p 3.00 0.68 0.04 0.20 +tatillon tatillon adj m s 0.47 1.76 0.22 1.01 +tatillonne tatillon adj f s 0.47 1.76 0.09 0.34 +tatillonner tatillonner ver 0.00 0.07 0.00 0.07 inf; +tatillonnes tatillon adj f p 0.47 1.76 0.00 0.07 +tatillons tatillon adj m p 0.47 1.76 0.16 0.34 +tatin tatin nom f s 0.03 0.14 0.03 0.14 +tatou tatou nom m s 0.51 0.27 0.46 0.20 +tatouage tatouage nom m s 12.06 3.38 8.28 1.55 +tatouages tatouage nom m p 12.06 3.38 3.77 1.82 +tatouaient tatouer ver 4.22 3.72 0.00 0.07 ind:imp:3p; +tatouait tatouer ver 4.22 3.72 0.01 0.14 ind:imp:3s; +tatoue tatouer ver 4.22 3.72 0.08 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tatouent tatouer ver 4.22 3.72 0.02 0.00 ind:pre:3p; +tatouer tatouer ver 4.22 3.72 1.91 0.81 inf; +tatoueur tatoueur nom m s 0.37 1.01 0.14 1.01 +tatoueurs tatoueur nom m p 0.37 1.01 0.09 0.00 +tatoueuse tatoueur nom f s 0.37 1.01 0.14 0.00 +tatouez tatouer ver 4.22 3.72 0.02 0.00 imp:pre:2p;ind:pre:2p; +tatous tatou nom m p 0.51 0.27 0.04 0.07 +tatoué tatouer ver m s 4.22 3.72 1.23 1.15 par:pas; +tatouée tatouer ver f s 4.22 3.72 0.52 0.61 par:pas; +tatouées tatoué adj f p 1.61 2.16 0.11 0.07 +tatoués tatouer ver m p 4.22 3.72 0.36 0.54 par:pas; +tau tau nom m s 0.88 0.07 0.88 0.07 +taube taube nom m s 0.07 0.27 0.07 0.27 +taudis taudis nom m 4.17 3.24 4.17 3.24 +taulard taulard nom m s 1.78 2.03 0.82 0.61 +taularde taulard nom f s 1.78 2.03 0.17 0.14 +taulardes taulard nom f p 1.78 2.03 0.02 0.07 +taulards taulard nom m p 1.78 2.03 0.77 1.22 +taule taule nom f s 27.00 14.73 26.92 13.85 +taules taule nom f p 27.00 14.73 0.08 0.88 +taulier taulier nom m s 0.95 5.41 0.67 3.31 +tauliers taulier nom m p 0.95 5.41 0.14 0.54 +taulière taulier nom f s 0.95 5.41 0.15 1.49 +taulières taulier nom f p 0.95 5.41 0.00 0.07 +taupe taupe nom f s 6.60 4.39 5.42 2.84 +taupes taupe nom f p 6.60 4.39 1.17 1.55 +taupicide taupicide nom m s 0.00 0.07 0.00 0.07 +taupin taupin nom m s 0.40 0.07 0.40 0.07 +taupinière taupinière nom f s 0.07 1.22 0.05 0.88 +taupinières taupinière nom f p 0.07 1.22 0.02 0.34 +taupinées taupinée nom f p 0.00 0.07 0.00 0.07 +taupé taupé adj m s 0.01 0.14 0.01 0.07 +taupés taupé adj m p 0.01 0.14 0.00 0.07 +taure taure nom f s 0.00 0.07 0.00 0.07 +taureau taureau nom m s 10.82 13.38 8.37 10.00 +taureaux taureau nom m p 10.82 13.38 2.46 3.38 +taurillon taurillon nom m s 0.00 0.27 0.00 0.20 +taurillons taurillon nom m p 0.00 0.27 0.00 0.07 +taurin taurin adj m s 0.00 0.20 0.00 0.07 +taurine taurin adj f s 0.00 0.20 0.00 0.07 +taurins taurin adj m p 0.00 0.20 0.00 0.07 +taurobole taurobole nom m s 0.00 0.14 0.00 0.14 +tauromachie tauromachie nom f s 0.22 0.34 0.22 0.34 +tauromachique tauromachique adj s 0.00 0.14 0.00 0.14 +tautologie tautologie nom f s 0.01 0.14 0.01 0.14 +taux taux nom m 11.22 2.64 11.22 2.64 +tavel tavel nom m s 0.03 0.14 0.03 0.14 +tavelant taveler ver 0.00 0.74 0.00 0.14 par:pre; +tavelé taveler ver m s 0.00 0.74 0.00 0.14 par:pas; +tavelée taveler ver f s 0.00 0.74 0.00 0.27 par:pas; +tavelées taveler ver f p 0.00 0.74 0.00 0.20 par:pas; +tavelures tavelure nom f p 0.01 0.34 0.01 0.34 +taverne taverne nom f s 3.02 8.51 2.63 6.01 +tavernes taverne nom f p 3.02 8.51 0.39 2.50 +tavernier tavernier nom m s 0.06 0.88 0.06 0.68 +taverniers tavernier nom m p 0.06 0.88 0.00 0.20 +taxa taxer ver 2.19 3.04 0.00 0.14 ind:pas:3s; +taxables taxable adj f p 0.01 0.00 0.01 0.00 +taxaient taxer ver 2.19 3.04 0.00 0.14 ind:imp:3p; +taxait taxer ver 2.19 3.04 0.02 0.14 ind:imp:3s; +taxant taxer ver 2.19 3.04 0.05 0.07 par:pre; +taxation taxation nom f s 0.02 0.07 0.02 0.07 +taxaudier taxaudier nom m s 0.00 0.20 0.00 0.20 +taxe taxe nom f s 4.34 1.82 1.86 1.15 +taxent taxer ver 2.19 3.04 0.16 0.20 ind:pre:3p; +taxer taxer ver 2.19 3.04 0.83 1.15 inf; +taxerait taxer ver 2.19 3.04 0.01 0.14 cnd:pre:3s; +taxes taxe nom f p 4.34 1.82 2.49 0.68 +taxez taxer ver 2.19 3.04 0.01 0.00 ind:pre:2p; +taxi_auto taxi_auto nom m s 0.00 0.07 0.00 0.07 +taxi_brousse taxi_brousse nom m s 0.14 0.14 0.14 0.14 +taxi_girl taxi_girl nom f s 0.00 0.27 0.00 0.07 +taxi_girl taxi_girl nom f p 0.00 0.27 0.00 0.20 +taxi taxi nom m s 63.77 46.82 59.42 41.22 +taxidermie taxidermie nom f s 0.07 0.07 0.07 0.07 +taxidermiste taxidermiste nom s 0.17 0.14 0.16 0.14 +taxidermistes taxidermiste nom p 0.17 0.14 0.01 0.00 +taximan taximan nom m s 0.34 0.27 0.23 0.14 +taximen taximan nom m p 0.34 0.27 0.10 0.14 +taximètre taximètre nom m s 0.01 0.00 0.01 0.00 +taxinomie taxinomie nom f s 0.10 0.14 0.10 0.14 +taxinomique taxinomique adj m s 0.00 0.07 0.00 0.07 +taxinomiste taxinomiste nom s 0.01 0.00 0.01 0.00 +taxiphone taxiphone nom m s 0.02 0.07 0.01 0.07 +taxiphones taxiphone nom m p 0.02 0.07 0.01 0.00 +taxis taxi nom m p 63.77 46.82 4.35 5.61 +taxonomie taxonomie nom f s 0.01 0.00 0.01 0.00 +taxonomique taxonomique adj m s 0.01 0.00 0.01 0.00 +taxé taxer ver m s 2.19 3.04 0.45 0.61 par:pas; +taxée taxer ver f s 2.19 3.04 0.10 0.14 par:pas; +taxés taxé adj m p 0.07 0.14 0.05 0.00 +taylorisme taylorisme nom m s 0.00 0.07 0.00 0.07 +taylorisé tayloriser ver m s 0.00 0.07 0.00 0.07 par:pas; +tchadiens tchadien nom m p 0.00 0.07 0.00 0.07 +tchador tchador nom m s 0.23 0.07 0.23 0.07 +tchao tchao ono 2.25 2.03 2.25 2.03 +tchatchant tchatcher ver 0.68 0.14 0.00 0.07 par:pre; +tchatche tchatche nom f s 0.79 0.27 0.79 0.27 +tchatchent tchatcher ver 0.68 0.14 0.14 0.07 ind:pre:3p; +tchatcher tchatcher ver 0.68 0.14 0.47 0.00 inf; +tchatches tchatcher ver 0.68 0.14 0.01 0.00 ind:pre:2s; +tchatché tchatcher ver m s 0.68 0.14 0.04 0.00 par:pas; +tcherkesse tcherkesse nom m s 0.00 0.07 0.00 0.07 +tchernoziom tchernoziom nom m s 0.00 0.14 0.00 0.14 +tchetnik tchetnik nom m s 0.83 0.00 0.81 0.00 +tchetniks tchetnik nom m p 0.83 0.00 0.02 0.00 +tchin_tchin tchin_tchin ono 0.11 0.14 0.11 0.14 +tchin_tchin tchin_tchin ono 0.01 0.47 0.01 0.47 +tchèque tchèque adj s 2.00 1.55 1.83 0.68 +tchèques tchèque nom p 0.81 1.42 0.33 0.68 +tchécoslovaque tchécoslovaque adj s 0.37 1.82 0.35 1.35 +tchécoslovaques tchécoslovaque nom p 0.16 0.20 0.09 0.20 +tchékhoviennes tchékhovien adj f p 0.10 0.00 0.10 0.00 +tchékiste tchékiste nom s 0.00 0.14 0.00 0.14 +tchétchène tchétchène nom s 1.08 0.00 0.63 0.00 +tchétchènes tchétchène nom p 1.08 0.00 0.45 0.00 +te_deum te_deum nom m 0.00 0.14 0.00 0.14 +te te pro_per s 4006.10 774.32 4006.10 774.32 +tea_room tea_room nom m s 0.00 0.20 0.00 0.20 +team team nom m s 13.84 0.27 13.68 0.20 +teams team nom m p 13.84 0.27 0.16 0.07 +teaser teaser nom m s 0.04 0.00 0.04 0.00 +tec tec nom m 0.01 0.00 0.01 0.00 +technicien technicien nom m s 5.03 4.32 1.99 1.01 +technicienne technicien adj f s 1.73 0.74 0.34 0.07 +techniciens technicien nom m p 5.03 4.32 3.01 3.24 +technicité technicité nom f s 0.14 0.07 0.14 0.07 +technico_commerciaux technico_commerciaux nom m p 0.00 0.07 0.00 0.07 +technicolor technicolor nom m s 0.41 0.88 0.41 0.88 +technique technique adj s 14.90 13.04 11.72 8.31 +techniquement techniquement adv 6.42 0.61 6.42 0.61 +techniques technique nom p 11.39 14.05 3.30 3.65 +techno techno adj s 0.52 0.00 0.52 0.00 +technocrate technocrate nom s 0.32 0.47 0.31 0.20 +technocrates technocrate nom p 0.32 0.47 0.01 0.27 +technocratique technocratique adj s 0.00 0.07 0.00 0.07 +technocratisme technocratisme nom m s 0.00 0.07 0.00 0.07 +technologie technologie nom f s 17.57 0.54 14.78 0.54 +technologies technologie nom f p 17.57 0.54 2.79 0.00 +technologique technologique adj s 1.62 0.27 1.27 0.27 +technologiquement technologiquement adv 0.15 0.00 0.15 0.00 +technologiques technologique adj p 1.62 0.27 0.35 0.00 +technétium technétium nom m s 0.01 0.00 0.01 0.00 +teck teck nom m s 0.11 0.34 0.11 0.34 +teckel teckel nom m s 0.23 1.01 0.21 0.81 +teckels teckel nom m p 0.23 1.01 0.02 0.20 +tectonique tectonique adj s 0.10 0.07 0.03 0.00 +tectoniques tectonique adj f p 0.10 0.07 0.08 0.07 +tee_shirt tee_shirt nom m s 3.19 5.27 2.94 3.99 +tee_shirt tee_shirt nom m p 3.19 5.27 0.25 1.28 +tee tee nom m s 0.93 0.34 0.90 0.34 +teen_ager teen_ager nom p 0.00 0.20 0.00 0.20 +teenager teenager nom s 0.06 0.27 0.02 0.14 +teenagers teenager nom p 0.06 0.27 0.03 0.14 +tees tee nom m p 0.93 0.34 0.03 0.00 +tefillin tefillin nom m s 0.02 0.14 0.02 0.14 +teignais teindre ver 3.71 4.32 0.14 0.00 ind:imp:1s; +teignait teindre ver 3.71 4.32 0.02 0.74 ind:imp:3s; +teignant teindre ver 3.71 4.32 0.00 0.07 par:pre; +teigne teigne nom f s 1.22 1.15 1.18 0.95 +teignent teindre ver 3.71 4.32 0.22 0.07 ind:pre:3p; +teignes teigne nom f p 1.22 1.15 0.04 0.20 +teigneuse teigneux adj f s 0.66 2.84 0.04 0.68 +teigneuses teigneux adj f p 0.66 2.84 0.00 0.14 +teigneux teigneux adj m 0.66 2.84 0.62 2.03 +teignit teindre ver 3.71 4.32 0.00 0.14 ind:pas:3s; +teille teiller ver 0.00 0.07 0.00 0.07 ind:pre:3s; +teindra teindre ver 3.71 4.32 0.02 0.00 ind:fut:3s; +teindrai teindre ver 3.71 4.32 0.12 0.00 ind:fut:1s; +teindrait teindre ver 3.71 4.32 0.01 0.07 cnd:pre:3s; +teindre teindre ver 3.71 4.32 1.28 1.22 inf; +teins teindre ver 3.71 4.32 0.74 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +teint teint nom m s 4.87 24.26 4.84 23.58 +teinta teinter ver 1.32 10.14 0.00 0.27 ind:pas:3s; +teintaient teinter ver 1.32 10.14 0.00 0.27 ind:imp:3p; +teintait teinter ver 1.32 10.14 0.00 0.95 ind:imp:3s; +teintant teinter ver 1.32 10.14 0.28 0.47 par:pre; +teinte teinte nom f s 0.77 12.91 0.60 7.43 +teintent teinter ver 1.32 10.14 0.03 0.14 ind:pre:3p; +teinter teinter ver 1.32 10.14 0.01 0.27 inf; +teinteraient teinter ver 1.32 10.14 0.00 0.07 cnd:pre:3p; +teintes teinte nom f p 0.77 12.91 0.17 5.47 +teints teint adj m p 0.99 3.85 0.25 1.62 +teinté teinter ver m s 1.32 10.14 0.35 2.43 par:pas; +teintée teinter ver f s 1.32 10.14 0.26 2.77 par:pas; +teintées teinter ver f p 1.32 10.14 0.37 1.15 par:pas; +teinture teinture nom f s 2.49 3.38 2.18 3.04 +teinturerie teinturerie nom f s 0.46 0.61 0.43 0.47 +teintureries teinturerie nom f p 0.46 0.61 0.03 0.14 +teintures teinture nom f p 2.49 3.38 0.31 0.34 +teinturier teinturier nom m s 1.06 1.55 0.99 1.08 +teinturiers teinturier nom m p 1.06 1.55 0.06 0.20 +teinturière teinturier nom f s 1.06 1.55 0.01 0.27 +teintés teinter ver m p 1.32 10.14 0.01 1.01 par:pas; +tek tek nom m s 0.12 0.00 0.12 0.00 +tel tel adj_ind m s 66.90 115.74 66.90 115.74 +tell tell nom m s 2.92 0.07 2.92 0.07 +telle telle adj_ind f s 48.77 118.58 48.77 118.58 +tellement tellement adv 183.70 168.51 183.70 168.51 +telles telles adj_ind f p 15.12 27.16 15.12 27.16 +tellure tellure nom m s 0.14 0.00 0.14 0.00 +tellurique tellurique adj s 0.00 1.62 0.00 1.42 +telluriques tellurique adj m p 0.00 1.62 0.00 0.20 +tels tels adj_ind m p 13.65 30.14 13.65 30.14 +telson telson nom m s 0.07 0.00 0.07 0.00 +tem tem nom m s 0.03 0.07 0.03 0.07 +tempe tempe nom f s 3.38 29.46 2.23 9.66 +tempera tempera nom f s 0.10 0.00 0.10 0.00 +tempes tempe nom f p 3.38 29.46 1.15 19.80 +tempi tempo nom m p 1.44 1.35 0.00 0.14 +temple temple nom m s 15.69 20.20 14.36 13.72 +temples temple nom m p 15.69 20.20 1.33 6.49 +templier templier nom m s 0.35 5.74 0.12 3.65 +templiers templier nom m p 0.35 5.74 0.23 2.09 +templière templier adj f s 0.23 0.14 0.23 0.14 +tempo tempo nom m s 1.44 1.35 1.38 1.22 +temporaire temporaire adj s 7.51 3.38 6.54 2.57 +temporairement temporairement adv 2.64 0.95 2.64 0.95 +temporaires temporaire adj p 7.51 3.38 0.96 0.81 +temporal temporal adj m s 0.76 0.34 0.65 0.00 +temporale temporal adj f s 0.76 0.34 0.02 0.14 +temporales temporal adj f p 0.76 0.34 0.01 0.14 +temporalité temporalité nom f s 0.00 0.34 0.00 0.27 +temporalités temporalité nom f p 0.00 0.34 0.00 0.07 +temporaux temporal adj m p 0.76 0.34 0.07 0.07 +temporel temporel adj m s 4.59 1.82 1.36 1.08 +temporelle temporel adj f s 4.59 1.82 2.61 0.54 +temporellement temporellement adv 0.00 0.14 0.00 0.14 +temporelles temporel adj f p 4.59 1.82 0.37 0.07 +temporels temporel adj m p 4.59 1.82 0.26 0.14 +temporisaient temporiser ver 0.49 0.74 0.00 0.07 ind:imp:3p; +temporisait temporiser ver 0.49 0.74 0.01 0.07 ind:imp:3s; +temporisateur temporisateur adj m s 0.00 0.07 0.00 0.07 +temporisation temporisation nom f s 0.02 0.20 0.02 0.20 +temporise temporiser ver 0.49 0.74 0.01 0.07 ind:pre:1s;ind:pre:3s; +temporisent temporiser ver 0.49 0.74 0.01 0.00 ind:pre:3p; +temporiser temporiser ver 0.49 0.74 0.41 0.34 inf; +temporiserai temporiser ver 0.49 0.74 0.01 0.00 ind:fut:1s; +temporisez temporiser ver 0.49 0.74 0.01 0.00 imp:pre:2p; +temporisons temporiser ver 0.49 0.74 0.00 0.07 imp:pre:1p; +temporisé temporiser ver m s 0.49 0.74 0.02 0.07 par:pas; +temporisée temporiser ver f s 0.49 0.74 0.01 0.07 par:pas; +tempos tempo nom m p 1.44 1.35 0.06 0.00 +temps temps nom m s 1031.05 1289.39 1031.05 1289.39 +tempère tempérer ver 0.25 3.85 0.03 0.34 imp:pre:2s;ind:pre:3s; +tempéra tempérer ver 0.25 3.85 0.00 0.34 ind:pas:3s; +tempura tempura nom f s 0.06 0.00 0.05 0.00 +tempéraient tempérer ver 0.25 3.85 0.00 0.14 ind:imp:3p; +tempérait tempérer ver 0.25 3.85 0.00 0.88 ind:imp:3s; +tempérament tempérament nom m s 4.74 9.93 4.69 9.05 +tempéraments tempérament nom m p 4.74 9.93 0.05 0.88 +tempérance tempérance nom f s 0.32 0.07 0.32 0.07 +tempuras tempura nom f p 0.06 0.00 0.01 0.00 +température température nom f s 15.68 10.95 14.42 10.41 +températures température nom f p 15.68 10.95 1.26 0.54 +tempérer tempérer ver 0.25 3.85 0.12 0.68 inf; +tempéreraient tempérer ver 0.25 3.85 0.00 0.07 cnd:pre:3p; +tempérerait tempérer ver 0.25 3.85 0.01 0.07 cnd:pre:3s; +tempéré tempéré adj m s 0.34 1.22 0.22 0.54 +tempérée tempéré adj f s 0.34 1.22 0.11 0.20 +tempérées tempéré adj f p 0.34 1.22 0.01 0.27 +tempérés tempérer ver m p 0.25 3.85 0.00 0.20 par:pas; +tempêta tempêter ver 0.57 3.51 0.00 0.34 ind:pas:3s; +tempêtaient tempêter ver 0.57 3.51 0.01 0.07 ind:imp:3p; +tempêtais tempêter ver 0.57 3.51 0.00 0.14 ind:imp:1s; +tempêtait tempêter ver 0.57 3.51 0.00 0.74 ind:imp:3s; +tempêtant tempêter ver 0.57 3.51 0.00 0.47 par:pre; +tempête tempête nom f s 19.73 31.28 15.72 24.26 +tempêtent tempêter ver 0.57 3.51 0.01 0.07 ind:pre:3p; +tempêter tempêter ver 0.57 3.51 0.11 0.61 inf; +tempêtes tempête nom f p 19.73 31.28 4.01 7.03 +tempêté tempêter ver m s 0.57 3.51 0.01 0.14 par:pas; +tempétueux tempétueux adj m s 0.02 0.14 0.02 0.14 +tenable tenable adj f s 0.03 0.68 0.03 0.68 +tenace tenace adj s 1.96 12.43 1.62 10.20 +tenacement tenacement adv 0.00 0.20 0.00 0.20 +tenaces tenace adj p 1.96 12.43 0.34 2.23 +tenaient tenir ver 504.69 741.22 3.56 35.68 ind:imp:3p; +tenaillaient tenailler ver 0.48 3.92 0.00 0.27 ind:imp:3p; +tenaillait tenailler ver 0.48 3.92 0.02 1.42 ind:imp:3s; +tenaillant tenailler ver 0.48 3.92 0.00 0.27 par:pre; +tenaille tenaille nom f s 1.83 2.43 0.48 1.22 +tenaillent tenailler ver 0.48 3.92 0.00 0.07 ind:pre:3p; +tenailler tenailler ver 0.48 3.92 0.10 0.14 inf; +tenailles tenaille nom f p 1.83 2.43 1.34 1.22 +tenaillé tenailler ver m s 0.48 3.92 0.01 0.88 par:pas; +tenaillée tenailler ver f s 0.48 3.92 0.02 0.14 par:pas; +tenais tenir ver 504.69 741.22 11.03 24.80 ind:imp:1s;ind:imp:2s; +tenait tenir ver 504.69 741.22 20.65 179.12 ind:imp:3s; +tenancier tenancier nom m s 0.48 2.43 0.18 0.95 +tenanciers tenancier nom m p 0.48 2.43 0.03 0.34 +tenancière tenancier nom f s 0.48 2.43 0.28 1.08 +tenancières tenancier nom f p 0.48 2.43 0.00 0.07 +tenant tenir ver 504.69 741.22 3.68 46.62 par:pre; +tenante tenant adj f s 0.88 4.73 0.47 1.69 +tenants tenant nom m p 0.69 4.46 0.39 2.16 +tend tendre ver 26.65 218.38 3.72 31.22 ind:pre:3s; +tendît tendre ver 26.65 218.38 0.00 0.27 sub:imp:3s; +tendaient tendre ver 26.65 218.38 0.10 6.15 ind:imp:3p; +tendais tendre ver 26.65 218.38 0.19 2.03 ind:imp:1s;ind:imp:2s; +tendait tendre ver 26.65 218.38 1.17 24.12 ind:imp:3s; +tendance tendance nom f s 12.98 20.88 10.95 14.26 +tendances tendance nom f p 12.98 20.88 2.03 6.62 +tendancieuse tendancieux adj f s 0.34 0.95 0.05 0.20 +tendancieusement tendancieusement adv 0.00 0.14 0.00 0.14 +tendancieuses tendancieux adj f p 0.34 0.95 0.01 0.47 +tendancieux tendancieux adj m p 0.34 0.95 0.28 0.27 +tendant tendre ver 26.65 218.38 0.93 16.01 par:pre; +tende tendre ver 26.65 218.38 0.42 0.54 sub:pre:1s;sub:pre:3s; +tendelet tendelet nom m s 0.00 0.20 0.00 0.20 +tendent tendre ver 26.65 218.38 0.54 5.20 ind:pre:3p; +tender tender nom m s 0.36 0.95 0.36 0.88 +tenders tender nom m p 0.36 0.95 0.00 0.07 +tendeur tendeur nom m s 0.23 0.74 0.19 0.41 +tendeurs tendeur nom m p 0.23 0.74 0.04 0.34 +tendez tendre ver 26.65 218.38 2.00 0.54 imp:pre:2p;ind:pre:2p; +tendiez tendre ver 26.65 218.38 0.03 0.00 ind:imp:2p; +tendineuses tendineux adj f p 0.00 0.07 0.00 0.07 +tendinite tendinite nom f s 0.24 0.00 0.24 0.00 +tendions tendre ver 26.65 218.38 0.00 0.20 ind:imp:1p; +tendirent tendre ver 26.65 218.38 0.00 1.49 ind:pas:3p; +tendis tendre ver 26.65 218.38 0.12 2.70 ind:pas:1s; +tendissent tendre ver 26.65 218.38 0.00 0.07 sub:imp:3p; +tendit tendre ver 26.65 218.38 0.05 51.22 ind:pas:3s; +tendon tendon nom m s 1.38 3.99 0.90 0.61 +tendons tendon nom m p 1.38 3.99 0.48 3.38 +tendra tendre ver 26.65 218.38 0.06 0.68 ind:fut:3s; +tendrai tendre ver 26.65 218.38 0.42 0.07 ind:fut:1s; +tendraient tendre ver 26.65 218.38 0.01 0.07 cnd:pre:3p; +tendrais tendre ver 26.65 218.38 0.08 0.14 cnd:pre:1s;cnd:pre:2s; +tendrait tendre ver 26.65 218.38 0.22 0.74 cnd:pre:3s; +tendre tendre adj s 21.66 61.15 18.34 45.54 +tendrement tendrement adv 3.42 12.84 3.42 12.84 +tendres tendre adj p 21.66 61.15 3.33 15.61 +tendresse tendresse nom f s 15.87 61.69 15.66 59.39 +tendresses tendresse nom f p 15.87 61.69 0.20 2.30 +tendreté tendreté nom f s 0.01 0.14 0.01 0.14 +tendron tendron nom m s 0.35 0.61 0.05 0.34 +tendrons tendron nom m p 0.35 0.61 0.30 0.27 +tendront tendre ver 26.65 218.38 0.00 0.07 ind:fut:3p; +tends tendre ver 26.65 218.38 3.46 6.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tendu tendre ver m s 26.65 218.38 6.24 25.68 par:pas; +tendue tendu adj f s 9.71 37.57 3.10 13.51 +tendues tendu adj f p 9.71 37.57 0.85 3.45 +tendus tendu adj m p 9.71 37.57 1.26 7.23 +teneur teneur nom s 0.90 1.35 0.90 1.35 +tenez tenir ver 504.69 741.22 99.49 30.61 imp:pre:2p;ind:pre:2p; +teniez tenir ver 504.69 741.22 2.34 0.95 ind:imp:2p; +tenions tenir ver 504.69 741.22 0.57 4.80 ind:imp:1p;sub:pre:1p; +tenir tenir ver 504.69 741.22 82.83 126.82 inf; +tennis_ballon tennis_ballon nom m 0.00 0.07 0.00 0.07 +tennis_club tennis_club nom m 0.00 0.34 0.00 0.34 +tennis tennis nom m 11.37 13.24 11.37 13.24 +tennisman tennisman nom m s 0.07 0.61 0.06 0.34 +tennismen tennisman nom m p 0.07 0.61 0.01 0.27 +tenon tenon nom m s 0.23 0.34 0.16 0.14 +tenons tenir ver 504.69 741.22 5.94 3.92 imp:pre:1p;ind:pre:1p; +tenseur tenseur nom m s 0.02 0.00 0.02 0.00 +tensiomètre tensiomètre nom m s 0.02 0.00 0.02 0.00 +tension tension nom f s 21.28 15.61 20.05 14.93 +tensions tension nom f p 21.28 15.61 1.23 0.68 +tenta tenter ver 79.74 126.96 1.00 14.19 ind:pas:3s; +tentaculaire tentaculaire adj s 0.01 0.61 0.01 0.47 +tentaculaires tentaculaire adj p 0.01 0.61 0.00 0.14 +tentacule tentacule nom m s 1.11 2.50 0.27 0.20 +tentacules tentacule nom m p 1.11 2.50 0.84 2.30 +tentai tenter ver 79.74 126.96 0.02 3.38 ind:pas:1s; +tentaient tenter ver 79.74 126.96 0.68 4.73 ind:imp:3p; +tentais tenter ver 79.74 126.96 0.42 2.16 ind:imp:1s;ind:imp:2s; +tentait tenter ver 79.74 126.96 1.98 15.41 ind:imp:3s; +tentant tentant adj m s 2.70 3.18 2.10 2.23 +tentante tentant adj f s 2.70 3.18 0.51 0.47 +tentantes tentant adj f p 2.70 3.18 0.01 0.27 +tentants tentant adj m p 2.70 3.18 0.09 0.20 +tentateur tentateur adj m s 0.48 1.01 0.34 0.54 +tentateurs tentateur adj m p 0.48 1.01 0.10 0.07 +tentation tentation nom f s 7.56 20.61 5.82 16.01 +tentations tentation nom f p 7.56 20.61 1.74 4.59 +tentative tentative nom f s 19.04 19.53 16.24 14.12 +tentatives tentative nom f p 19.04 19.53 2.81 5.41 +tentatrice tentateur nom f s 0.18 0.41 0.17 0.07 +tentatrices tentatrice nom f p 0.01 0.00 0.01 0.00 +tente tenter ver 79.74 126.96 16.94 13.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tentent tenter ver 79.74 126.96 2.28 1.76 ind:pre:3p; +tenter tenter ver 79.74 126.96 20.40 32.43 inf; +tentera tenter ver 79.74 126.96 1.30 0.34 ind:fut:3s; +tenterai tenter ver 79.74 126.96 0.56 0.14 ind:fut:1s; +tenteraient tenter ver 79.74 126.96 0.10 0.54 cnd:pre:3p; +tenterais tenter ver 79.74 126.96 0.20 0.34 cnd:pre:1s;cnd:pre:2s; +tenterait tenter ver 79.74 126.96 0.33 1.42 cnd:pre:3s; +tenteras tenter ver 79.74 126.96 0.19 0.14 ind:fut:2s; +tenterez tenter ver 79.74 126.96 0.17 0.00 ind:fut:2p; +tenteriez tenter ver 79.74 126.96 0.01 0.00 cnd:pre:2p; +tenterons tenter ver 79.74 126.96 0.74 0.00 ind:fut:1p; +tenteront tenter ver 79.74 126.96 0.48 0.20 ind:fut:3p; +tentes tente nom f p 16.65 26.22 2.25 7.09 +tentez tenter ver 79.74 126.96 3.31 0.54 imp:pre:2p;ind:pre:2p; +tentiaire tentiaire nom f s 0.00 0.41 0.00 0.41 +tentiez tenter ver 79.74 126.96 0.45 0.14 ind:imp:2p; +tentions tenter ver 79.74 126.96 0.12 0.68 ind:imp:1p; +tentâmes tenter ver 79.74 126.96 0.00 0.14 ind:pas:1p; +tentons tenter ver 79.74 126.96 2.03 0.20 imp:pre:1p;ind:pre:1p; +tentât tenter ver 79.74 126.96 0.00 0.61 sub:imp:3s; +tentèrent tenter ver 79.74 126.96 0.22 1.96 ind:pas:3p; +tenté tenter ver m s 79.74 126.96 21.70 25.34 par:pas; +tentée tenter ver f s 79.74 126.96 1.29 2.50 par:pas; +tentées tenter ver f p 79.74 126.96 0.24 0.34 par:pas; +tenture tenture nom f s 0.66 8.18 0.20 3.24 +tentures tenture nom f p 0.66 8.18 0.45 4.93 +tentés tenter ver m p 79.74 126.96 0.30 1.49 par:pas; +tenu tenir ver m s 504.69 741.22 27.10 54.12 par:pas; +tenue tenue nom f s 21.96 31.89 19.64 27.97 +tenues tenue nom f p 21.96 31.89 2.32 3.92 +tenure tenure nom f s 0.01 0.00 0.01 0.00 +tenus tenir ver m p 504.69 741.22 1.39 6.89 par:pas; +tepidarium tepidarium nom m s 0.01 0.00 0.01 0.00 +tequila tequila nom f s 3.81 0.20 3.52 0.20 +tequilas tequila nom f p 3.81 0.20 0.29 0.00 +ter ter adv 0.72 9.46 0.72 9.46 +terce tercer ver 0.10 0.07 0.00 0.07 ind:pre:3s; +tercer tercer ver 0.10 0.07 0.10 0.00 inf; +tercets tercet nom m p 0.00 0.07 0.00 0.07 +tercio tercio nom m s 0.01 0.14 0.01 0.14 +tergal tergal nom m s 0.16 0.41 0.16 0.41 +tergiversaient tergiverser ver 0.81 1.35 0.00 0.07 ind:imp:3p; +tergiversais tergiverser ver 0.81 1.35 0.00 0.07 ind:imp:1s; +tergiversant tergiverser ver 0.81 1.35 0.00 0.07 par:pre; +tergiversation tergiversation nom f s 0.09 1.28 0.03 0.00 +tergiversations tergiversation nom f p 0.09 1.28 0.06 1.28 +tergiverse tergiverser ver 0.81 1.35 0.23 0.20 imp:pre:2s;ind:pre:3s; +tergiverser tergiverser ver 0.81 1.35 0.40 0.81 inf; +tergiverses tergiverser ver 0.81 1.35 0.03 0.00 ind:pre:2s; +tergiversez tergiverser ver 0.81 1.35 0.04 0.00 imp:pre:2p;ind:pre:2p; +tergiversons tergiverser ver 0.81 1.35 0.03 0.07 imp:pre:1p;ind:pre:1p; +tergiversé tergiverser ver m s 0.81 1.35 0.09 0.07 par:pas; +terme terme nom m s 37.67 59.73 25.72 34.86 +termes terme nom m p 37.67 59.73 11.96 24.86 +termina terminer ver 142.38 100.00 0.28 5.20 ind:pas:3s; +terminai terminer ver 142.38 100.00 0.05 0.68 ind:pas:1s; +terminaient terminer ver 142.38 100.00 0.05 2.09 ind:imp:3p; +terminais terminer ver 142.38 100.00 0.56 0.27 ind:imp:1s; +terminaison terminaison nom f s 0.36 0.41 0.17 0.00 +terminaisons terminaison nom f p 0.36 0.41 0.20 0.41 +terminait terminer ver 142.38 100.00 0.41 7.91 ind:imp:3s; +terminal terminal nom m s 5.61 0.88 2.08 0.14 +terminale terminal nom f s 5.61 0.88 2.94 0.61 +terminales terminal nom f p 5.61 0.88 0.36 0.14 +terminant terminer ver 142.38 100.00 0.14 2.43 par:pre; +terminateur terminateur nom m s 0.02 0.00 0.02 0.00 +terminatrice terminateur adj f s 0.01 0.00 0.01 0.00 +terminaux terminal nom m p 5.61 0.88 0.23 0.00 +termine terminer ver 142.38 100.00 14.90 9.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +terminent terminer ver 142.38 100.00 1.14 1.49 ind:pre:3p; +terminer terminer ver 142.38 100.00 18.04 13.18 inf; +terminera terminer ver 142.38 100.00 1.35 0.34 ind:fut:3s; +terminerai terminer ver 142.38 100.00 0.88 0.34 ind:fut:1s; +termineraient terminer ver 142.38 100.00 0.03 0.20 cnd:pre:3p; +terminerait terminer ver 142.38 100.00 0.41 1.28 cnd:pre:3s; +termineras terminer ver 142.38 100.00 0.08 0.07 ind:fut:2s; +terminerez terminer ver 142.38 100.00 0.15 0.14 ind:fut:2p; +terminerons terminer ver 142.38 100.00 0.24 0.00 ind:fut:1p; +termineront terminer ver 142.38 100.00 0.04 0.14 ind:fut:3p; +termines terminer ver 142.38 100.00 0.82 0.07 ind:pre:2s; +terminez terminer ver 142.38 100.00 0.85 0.00 imp:pre:2p;ind:pre:2p; +terminiez terminer ver 142.38 100.00 0.03 0.00 ind:imp:2p; +terminions terminer ver 142.38 100.00 0.02 0.20 ind:imp:1p; +terminologie terminologie nom f s 0.46 0.27 0.46 0.27 +terminologique terminologique adj s 0.00 0.07 0.00 0.07 +terminons terminer ver 142.38 100.00 0.57 0.14 imp:pre:1p;ind:pre:1p; +terminât terminer ver 142.38 100.00 0.00 0.34 sub:imp:3s; +terminèrent terminer ver 142.38 100.00 0.01 0.47 ind:pas:3p; +terminé terminer ver m s 142.38 100.00 78.47 34.93 par:pas; +terminée terminer ver f s 142.38 100.00 18.61 12.70 par:pas; +terminées terminer ver f p 142.38 100.00 2.34 2.91 par:pas; +terminés terminer ver m p 142.38 100.00 1.92 2.64 par:pas; +terminus terminus nom m 3.30 5.00 3.30 5.00 +termite termite nom m s 2.23 1.96 0.35 0.00 +termites termite nom m p 2.23 1.96 1.88 1.96 +termitière termitière nom f s 0.00 0.81 0.00 0.61 +termitières termitière nom f p 0.00 0.81 0.00 0.20 +ternaire ternaire adj s 0.00 0.14 0.00 0.14 +terne terne adj s 2.00 16.15 1.36 9.73 +ternes terne adj p 2.00 16.15 0.64 6.42 +terni ternir ver m s 1.32 6.28 0.35 1.01 par:pas; +ternie ternir ver f s 1.32 6.28 0.20 0.34 par:pas; +ternies ternir ver f p 1.32 6.28 0.01 0.34 par:pas; +ternir ternir ver 1.32 6.28 0.35 1.49 inf; +ternirai ternir ver 1.32 6.28 0.01 0.00 ind:fut:1s; +ternirait ternir ver 1.32 6.28 0.06 0.07 cnd:pre:3s; +ternis ternir ver m p 1.32 6.28 0.04 0.34 ind:pre:2s;par:pas; +ternissaient ternir ver 1.32 6.28 0.00 0.14 ind:imp:3p; +ternissait ternir ver 1.32 6.28 0.00 1.22 ind:imp:3s; +ternissant ternir ver 1.32 6.28 0.00 0.07 par:pre; +ternisse ternir ver 1.32 6.28 0.15 0.14 sub:pre:3s; +ternissent ternir ver 1.32 6.28 0.05 0.14 ind:pre:3p; +ternit ternir ver 1.32 6.28 0.10 1.01 ind:pre:3s;ind:pas:3s; +terra_incognita terra_incognita nom f s 0.02 0.34 0.02 0.34 +terra terrer ver 2.62 7.70 0.90 0.41 ind:pas:3s;;ind:pas:3s; +terrage terrage nom m s 0.00 0.54 0.00 0.54 +terrai terrer ver 2.62 7.70 0.00 0.07 ind:pas:1s; +terraient terrer ver 2.62 7.70 0.03 0.20 ind:imp:3p; +terrain terrain nom m s 52.58 74.73 49.12 64.86 +terrains terrain nom m p 52.58 74.73 3.46 9.86 +terrait terrer ver 2.62 7.70 0.05 0.54 ind:imp:3s; +terramycine terramycine nom f s 0.14 0.00 0.14 0.00 +terrant terrer ver 2.62 7.70 0.00 0.20 par:pre; +terraplane terraplane nom m s 0.02 0.00 0.02 0.00 +terrarium terrarium nom m s 0.06 0.00 0.06 0.00 +terrassa terrasser ver 2.48 5.00 0.23 0.34 ind:pas:3s; +terrassai terrasser ver 2.48 5.00 0.00 0.14 ind:pas:1s; +terrassaient terrasser ver 2.48 5.00 0.00 0.14 ind:imp:3p; +terrassait terrasser ver 2.48 5.00 0.00 0.27 ind:imp:3s; +terrassant terrasser ver 2.48 5.00 0.00 0.27 par:pre; +terrasse terrasse nom f s 10.57 74.05 9.66 61.15 +terrassement terrassement nom m s 0.02 0.95 0.01 0.68 +terrassements terrassement nom m p 0.02 0.95 0.01 0.27 +terrasser terrasser ver 2.48 5.00 0.37 0.34 inf; +terrasserait terrasser ver 2.48 5.00 0.00 0.20 cnd:pre:3s; +terrasses terrasse nom f p 10.57 74.05 0.92 12.91 +terrassier terrassier nom m s 0.36 2.97 0.15 1.15 +terrassiers terrassier nom m p 0.36 2.97 0.22 1.82 +terrasson terrasson nom m s 0.00 0.14 0.00 0.14 +terrassât terrasser ver 2.48 5.00 0.00 0.07 sub:imp:3s; +terrassèrent terrasser ver 2.48 5.00 0.00 0.07 ind:pas:3p; +terrassé terrasser ver m s 2.48 5.00 1.29 1.76 par:pas; +terrassée terrasser ver f s 2.48 5.00 0.18 0.81 par:pas; +terrassées terrasser ver f p 2.48 5.00 0.02 0.00 par:pas; +terrassés terrasser ver m p 2.48 5.00 0.07 0.14 par:pas; +terre_neuvas terre_neuvas nom m 0.00 0.34 0.00 0.34 +terre_neuve terre_neuve nom m 0.03 0.27 0.03 0.27 +terre_neuvien terre_neuvien adj m s 0.01 0.00 0.01 0.00 +terre_neuvien terre_neuvien nom m s 0.01 0.00 0.01 0.00 +terre_à_terre terre_à_terre adj f s 0.00 0.20 0.00 0.20 +terre_plein terre_plein nom m s 0.20 5.81 0.20 5.74 +terre_plein terre_plein nom m p 0.20 5.81 0.00 0.07 +terre terre nom f s 294.45 452.91 276.29 420.88 +terreau terreau nom m s 0.19 3.78 0.18 3.72 +terreaux terreau nom m p 0.19 3.78 0.01 0.07 +terrent terrer ver 2.62 7.70 0.26 0.34 ind:pre:3p; +terrer terrer ver 2.62 7.70 0.46 1.96 inf; +terrerait terrer ver 2.62 7.70 0.02 0.00 cnd:pre:3s; +terreront terrer ver 2.62 7.70 0.01 0.07 ind:fut:3p; +terres terre nom f p 294.45 452.91 18.16 32.03 +terrestre terrestre adj s 6.96 12.57 4.92 7.36 +terrestres terrestre adj p 6.96 12.57 2.04 5.20 +terreur terreur nom f s 15.18 27.09 13.87 23.78 +terreurs terreur nom f p 15.18 27.09 1.30 3.31 +terreuse terreuse adj f s 0.06 0.00 0.06 0.00 +terreuses terreux adj f p 0.47 5.88 0.12 1.01 +terreux terreux adj m 0.47 5.88 0.35 2.50 +terrez terrer ver 2.62 7.70 0.02 0.00 ind:pre:2p; +terri terri nom m s 0.43 0.00 0.43 0.00 +terrible terrible adj s 87.66 88.11 76.56 73.24 +terriblement terriblement adv 11.88 14.53 11.88 14.53 +terribles terrible adj p 87.66 88.11 11.10 14.86 +terrien terrien adj m s 4.20 1.82 1.35 0.88 +terrienne terrien adj f s 4.20 1.82 1.59 0.20 +terriennes terrien adj f p 4.20 1.82 0.63 0.34 +terriens terrien nom m p 3.59 1.01 1.85 0.54 +terrier terrier nom m s 1.15 2.91 0.90 2.23 +terriers terrier nom m p 1.15 2.91 0.25 0.68 +terrifia terrifier ver 8.49 4.86 0.02 0.14 ind:pas:3s; +terrifiaient terrifier ver 8.49 4.86 0.25 0.27 ind:imp:3p; +terrifiait terrifier ver 8.49 4.86 0.39 0.54 ind:imp:3s; +terrifiant terrifiant adj m s 8.33 10.34 5.20 4.39 +terrifiante terrifiant adj f s 8.33 10.34 2.19 3.31 +terrifiantes terrifiant adj f p 8.33 10.34 0.45 1.28 +terrifiants terrifiant adj m p 8.33 10.34 0.48 1.35 +terrifie terrifier ver 8.49 4.86 1.15 0.41 ind:pre:1s;ind:pre:3s; +terrifient terrifier ver 8.49 4.86 0.14 0.27 ind:pre:3p; +terrifier terrifier ver 8.49 4.86 0.19 0.14 inf; +terrifierait terrifier ver 8.49 4.86 0.11 0.00 cnd:pre:3s; +terrifiez terrifier ver 8.49 4.86 0.08 0.00 imp:pre:2p;ind:pre:2p; +terrifions terrifier ver 8.49 4.86 0.01 0.00 ind:pre:1p; +terrifique terrifique adj m s 0.00 0.14 0.00 0.14 +terrifié terrifier ver m s 8.49 4.86 2.61 1.76 par:pas; +terrifiée terrifier ver f s 8.49 4.86 1.88 0.68 par:pas; +terrifiées terrifier ver f p 8.49 4.86 0.07 0.07 par:pas; +terrifiés terrifier ver m p 8.49 4.86 1.07 0.14 par:pas; +terril terril nom m s 0.03 0.68 0.02 0.27 +terrils terril nom m p 0.03 0.68 0.01 0.41 +terrine terrine nom f s 0.21 3.31 0.20 2.23 +terrines terrine nom f p 0.21 3.31 0.01 1.08 +territoire territoire nom m s 19.09 58.24 15.34 36.08 +territoires territoire nom m p 19.09 58.24 3.75 22.16 +territorial territorial adj m s 0.67 3.24 0.08 0.61 +territoriale territorial adj f s 0.67 3.24 0.15 1.22 +territorialement territorialement adv 0.00 0.07 0.00 0.07 +territoriales territorial adj f p 0.67 3.24 0.20 1.08 +territorialité territorialité nom f s 0.05 0.00 0.05 0.00 +territoriaux territorial adj m p 0.67 3.24 0.24 0.34 +terroir terroir nom m s 0.17 1.82 0.17 1.82 +terrons terrer ver 2.62 7.70 0.00 0.07 ind:pre:1p; +terrorisa terroriser ver 7.82 4.59 0.14 0.14 ind:pas:3s; +terrorisaient terroriser ver 7.82 4.59 0.03 0.27 ind:imp:3p; +terrorisait terroriser ver 7.82 4.59 0.30 0.74 ind:imp:3s; +terrorisant terroriser ver 7.82 4.59 0.06 0.34 par:pre; +terrorisante terrorisant adj f s 0.03 0.34 0.00 0.07 +terrorisants terrorisant adj m p 0.03 0.34 0.01 0.07 +terrorise terroriser ver 7.82 4.59 1.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +terrorisent terroriser ver 7.82 4.59 0.55 0.20 ind:pre:3p; +terroriser terroriser ver 7.82 4.59 1.56 0.88 inf; +terroriseront terroriser ver 7.82 4.59 0.01 0.00 ind:fut:3p; +terrorises terroriser ver 7.82 4.59 0.16 0.07 ind:pre:2s; +terrorisez terroriser ver 7.82 4.59 0.05 0.00 ind:pre:2p; +terrorisme terrorisme nom m s 5.59 1.22 5.59 1.15 +terrorismes terrorisme nom m p 5.59 1.22 0.00 0.07 +terroriste terroriste nom s 16.62 2.50 5.87 0.74 +terroristes terroriste nom p 16.62 2.50 10.75 1.76 +terrorisé terroriser ver m s 7.82 4.59 1.06 0.81 par:pas; +terrorisée terroriser ver f s 7.82 4.59 1.74 0.47 par:pas; +terrorisées terrorisé adj f p 1.43 2.97 0.14 0.20 +terrorisés terroriser ver m p 7.82 4.59 0.69 0.34 par:pas; +terré terrer ver m s 2.62 7.70 0.42 0.74 par:pas; +terrée terrer ver f s 2.62 7.70 0.04 0.88 par:pas; +terrées terrer ver f p 2.62 7.70 0.00 0.20 par:pas; +terrés terrer ver m p 2.62 7.70 0.12 0.74 par:pas; +tertiaire tertiaire adj s 0.09 0.14 0.06 0.14 +tertiaires tertiaire adj m p 0.09 0.14 0.03 0.00 +tertio tertio adv_sup 1.08 0.81 1.08 0.81 +tertre tertre nom m s 0.17 2.50 0.16 2.23 +tertres tertre nom m p 0.17 2.50 0.01 0.27 +tes tes adj_pos 690.24 145.00 690.24 145.00 +tesla tesla nom m s 0.02 0.00 0.02 0.00 +tessiture tessiture nom f s 0.00 0.41 0.00 0.41 +tesson tesson nom m s 0.76 2.43 0.48 0.27 +tessons tesson nom m p 0.76 2.43 0.28 2.16 +test_match test_match nom m s 0.01 0.00 0.01 0.00 +test test nom m s 55.38 5.61 34.87 2.91 +testa tester ver 20.66 2.43 0.21 0.54 ind:pas:3s; +testais tester ver 20.66 2.43 0.29 0.00 ind:imp:1s;ind:imp:2s; +testait tester ver 20.66 2.43 0.28 0.14 ind:imp:3s; +testament testament nom m s 10.90 8.24 10.70 7.70 +testamentaire testamentaire adj s 0.47 0.27 0.44 0.07 +testamentaires testamentaire adj f p 0.47 0.27 0.04 0.20 +testaments testament nom m p 10.90 8.24 0.20 0.54 +testant tester ver 20.66 2.43 0.23 0.14 par:pre; +teste tester ver 20.66 2.43 2.76 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +testent tester ver 20.66 2.43 0.53 0.00 ind:pre:3p; +tester tester ver 20.66 2.43 8.73 0.81 inf; +testera tester ver 20.66 2.43 0.03 0.00 ind:fut:3s; +testeras tester ver 20.66 2.43 0.01 0.00 ind:fut:2s; +testerons tester ver 20.66 2.43 0.18 0.00 ind:fut:1p; +testeront tester ver 20.66 2.43 0.01 0.00 ind:fut:3p; +testes tester ver 20.66 2.43 0.37 0.07 ind:pre:2s; +testeur testeur nom m s 0.17 0.00 0.16 0.00 +testeuse testeur nom f s 0.17 0.00 0.01 0.00 +testez tester ver 20.66 2.43 1.18 0.00 imp:pre:2p;ind:pre:2p; +testiculaire testiculaire adj s 0.07 0.07 0.07 0.07 +testicule testicule nom m s 2.46 1.89 0.44 0.27 +testicules testicule nom m p 2.46 1.89 2.02 1.62 +testiez tester ver 20.66 2.43 0.11 0.00 ind:imp:2p; +testions tester ver 20.66 2.43 0.03 0.07 ind:imp:1p; +testons tester ver 20.66 2.43 0.39 0.00 imp:pre:1p;ind:pre:1p; +testostérone testostérone nom f s 1.18 0.00 1.15 0.00 +testostérones testostérone nom f p 1.18 0.00 0.03 0.00 +tests test nom m p 55.38 5.61 20.50 2.70 +testèrent tester ver 20.66 2.43 0.00 0.07 ind:pas:3p; +testé tester ver m s 20.66 2.43 3.88 0.14 par:pas; +testu testu nom m s 0.00 0.07 0.00 0.07 +testée tester ver f s 20.66 2.43 0.71 0.07 par:pas; +testées tester ver f p 20.66 2.43 0.23 0.00 par:pas; +testés tester ver m p 20.66 2.43 0.48 0.07 par:pas; +tette tette nom f s 0.14 0.00 0.14 0.00 +teuf_teuf teuf_teuf nom m s 0.04 0.41 0.04 0.41 +teuton teuton nom m s 0.14 0.34 0.13 0.14 +teutonique teutonique adj s 0.11 0.88 0.00 0.34 +teutoniques teutonique adj m p 0.11 0.88 0.11 0.54 +teutonne teuton adj f s 0.25 0.74 0.12 0.54 +teutonnes teuton adj f p 0.25 0.74 0.00 0.14 +teutons teuton nom m p 0.14 0.34 0.01 0.20 +tex tex nom m 1.70 0.14 1.70 0.14 +texan texan nom m s 0.95 0.61 0.47 0.41 +texane texan adj f s 0.79 0.61 0.21 0.07 +texanes texan adj f p 0.79 0.61 0.03 0.20 +texans texan nom m p 0.95 0.61 0.39 0.20 +texte texte nom m s 20.42 43.24 16.22 31.42 +textes texte nom m p 20.42 43.24 4.20 11.82 +textile textile adj s 0.65 0.88 0.62 0.47 +textiles textile nom m p 0.72 1.22 0.15 0.20 +texto texto adv 0.45 0.61 0.45 0.61 +textologie textologie nom f s 0.00 0.07 0.00 0.07 +textuel textuel adj m s 0.03 0.41 0.00 0.27 +textuelle textuel adj f s 0.03 0.41 0.01 0.07 +textuellement textuellement adv 0.03 1.08 0.03 1.08 +textuelles textuel adj f p 0.03 0.41 0.01 0.07 +texture texture nom f s 1.57 1.69 1.33 1.69 +textures texture nom f p 1.57 1.69 0.25 0.00 +ça ça pro_dem s 8933.66 2477.64 8933.66 2477.64 +thaï thaï adj m s 0.97 0.34 0.52 0.20 +thaïe thaï adj f s 0.97 0.34 0.16 0.07 +thaïlandais thaïlandais adj m 0.56 0.41 0.40 0.27 +thaïlandaise thaïlandais adj f s 0.56 0.41 0.13 0.00 +thaïlandaises thaïlandais adj f p 0.56 0.41 0.04 0.14 +thaïs thaï adj m p 0.97 0.34 0.29 0.07 +thalamique thalamique adj f s 0.01 0.00 0.01 0.00 +thalamus thalamus nom m 0.13 0.00 0.13 0.00 +thalasso thalasso nom f s 0.45 0.00 0.45 0.00 +thalassothérapeutes thalassothérapeute nom p 0.00 0.07 0.00 0.07 +thalassothérapie thalassothérapie nom f s 0.01 0.20 0.01 0.20 +thalassémie thalassémie nom f s 0.01 0.00 0.01 0.00 +thaler thaler nom m s 0.10 0.07 0.05 0.00 +thalers thaler nom m p 0.10 0.07 0.05 0.07 +thalidomide thalidomide nom f s 0.05 0.00 0.05 0.00 +thallium thallium nom m s 0.14 0.00 0.14 0.00 +thalweg thalweg nom m s 0.00 0.07 0.00 0.07 +thanatologie thanatologie nom f s 0.01 0.00 0.01 0.00 +thanatologique thanatologique adj m s 0.00 0.07 0.00 0.07 +thanatopraxie thanatopraxie nom f s 0.01 0.00 0.01 0.00 +thanatos thanatos nom m 0.04 0.00 0.04 0.00 +thanksgiving thanksgiving nom m s 6.89 0.00 6.89 0.00 +thatchériennes thatchérien adj f p 0.00 0.07 0.00 0.07 +thaumaturge thaumaturge nom s 0.00 0.47 0.00 0.34 +thaumaturges thaumaturge nom p 0.00 0.47 0.00 0.14 +thaumaturgie thaumaturgie nom f s 0.00 0.07 0.00 0.07 +thermal thermal adj m s 0.83 1.69 0.21 0.54 +thermale thermal adj f s 0.83 1.69 0.38 0.74 +thermales thermal adj f p 0.83 1.69 0.11 0.41 +thermaux thermal adj m p 0.83 1.69 0.14 0.00 +thermes thermes nom m p 0.55 0.41 0.55 0.41 +thermidor thermidor nom m s 0.07 0.20 0.07 0.20 +thermidorienne thermidorien adj f s 0.00 0.07 0.00 0.07 +thermique thermique adj s 2.37 0.47 1.58 0.34 +thermiques thermique adj p 2.37 0.47 0.79 0.14 +thermite thermite nom f s 0.04 0.00 0.04 0.00 +thermo thermo nom m s 0.10 0.00 0.10 0.00 +thermocollants thermocollant adj m p 0.00 0.07 0.00 0.07 +thermodynamique thermodynamique nom f s 0.09 0.20 0.09 0.20 +thermoformage thermoformage nom m s 0.00 0.07 0.00 0.07 +thermographe thermographe nom m s 0.04 0.00 0.04 0.00 +thermographie thermographie nom f s 0.04 0.00 0.04 0.00 +thermogène thermogène adj s 0.00 0.54 0.00 0.54 +thermoluminescence thermoluminescence nom f s 0.01 0.00 0.01 0.00 +thermomètre thermomètre nom m s 1.43 5.27 1.37 5.07 +thermomètres thermomètre nom m p 1.43 5.27 0.06 0.20 +thermonucléaire thermonucléaire adj s 0.66 0.14 0.42 0.07 +thermonucléaires thermonucléaire adj p 0.66 0.14 0.23 0.07 +thermorégulateur thermorégulateur adj m s 0.01 0.00 0.01 0.00 +thermos thermos adj s 0.91 2.36 0.91 2.36 +thermosensible thermosensible adj m s 0.03 0.00 0.03 0.00 +thermostat thermostat nom m s 1.31 0.54 1.21 0.54 +thermostats thermostat nom m p 1.31 0.54 0.10 0.00 +thermoélectriques thermoélectrique adj m p 0.01 0.00 0.01 0.00 +thesaurus thesaurus nom m 0.01 0.00 0.01 0.00 +thessalien thessalien adj m s 0.03 0.00 0.02 0.00 +thessaliens thessalien adj m p 0.03 0.00 0.01 0.00 +thiamine thiamine nom f s 0.04 0.00 0.04 0.00 +thibaude thibaude nom f s 0.00 0.14 0.00 0.14 +çà çà adv 7.78 21.15 7.78 21.15 +thomas thomas nom m 4.83 25.81 4.83 25.81 +thomisme thomisme nom m s 0.00 0.14 0.00 0.14 +thomiste thomiste adj m s 0.00 0.14 0.00 0.14 +thon thon nom m s 5.88 2.16 5.66 1.89 +thonier thonier nom m s 0.03 0.34 0.03 0.14 +thoniers thonier nom m p 0.03 0.34 0.00 0.20 +thons thon nom m p 5.88 2.16 0.23 0.27 +thoracentèse thoracentèse nom f s 0.04 0.00 0.04 0.00 +thoracique thoracique adj s 2.12 1.82 1.89 1.42 +thoraciques thoracique adj p 2.12 1.82 0.23 0.41 +thoracotomie thoracotomie nom f s 0.31 0.00 0.31 0.00 +thorax thorax nom m 3.62 2.03 3.62 2.03 +thorine thorine nom f s 0.13 0.00 0.13 0.00 +thoron thoron nom m s 0.01 0.00 0.01 0.00 +thrace thrace adj s 0.14 0.41 0.13 0.20 +thraces thrace adj f p 0.14 0.41 0.01 0.20 +ère ère nom f s 13.23 7.84 12.91 7.64 +ères ère nom f p 13.23 7.84 0.32 0.20 +thrill thrill nom m s 0.07 0.00 0.07 0.00 +thriller thriller nom m s 0.58 0.07 0.55 0.00 +thrillers thriller nom m p 0.58 0.07 0.03 0.07 +thrombolyse thrombolyse nom f s 0.01 0.00 0.01 0.00 +thrombolytique thrombolytique adj f s 0.01 0.00 0.01 0.00 +thrombose thrombose nom f s 0.56 0.00 0.56 0.00 +thrombosé thrombosé adj m s 0.03 0.00 0.03 0.00 +thrombotique thrombotique adj s 0.07 0.00 0.07 0.00 +thrène thrène nom m s 0.10 0.00 0.10 0.00 +çruti çruti nom m s 0.00 0.07 0.00 0.07 +ès ès pre 0.00 1.08 0.00 1.08 +thème thème nom m s 17.32 14.26 15.49 10.54 +thèmes thème nom m p 17.32 14.26 1.83 3.72 +thèse thèse nom f s 10.67 9.32 10.22 7.77 +thèses thèse nom f p 10.67 9.32 0.46 1.55 +thé thé nom m s 69.01 44.86 67.84 44.19 +thébaïde thébaïde nom f s 0.00 0.34 0.00 0.27 +thébaïdes thébaïde nom f p 0.00 0.34 0.00 0.07 +thébaïne thébaïne nom f s 0.00 0.07 0.00 0.07 +thug thug nom m s 0.33 0.14 0.01 0.00 +thugs thug nom m p 0.33 0.14 0.32 0.14 +théier théier nom m s 0.01 0.00 0.01 0.00 +théine théine nom f s 0.01 0.00 0.01 0.00 +théiste théiste adj f s 0.02 0.00 0.02 0.00 +théière théière nom f s 1.00 2.91 0.80 2.43 +théières théière nom f p 1.00 2.91 0.20 0.47 +thématique thématique nom f s 0.14 0.07 0.12 0.00 +thématiquement thématiquement adv 0.00 0.07 0.00 0.07 +thématiques thématique adj m p 0.06 0.20 0.03 0.00 +thune thune nom f s 4.63 5.68 3.52 5.00 +thunes thune nom f p 4.63 5.68 1.11 0.68 +théo théo nom s 0.14 0.00 0.14 0.00 +théocratique théocratique adj f s 0.00 0.14 0.00 0.14 +théodolite théodolite nom m s 0.01 0.00 0.01 0.00 +théologales théologal adj f p 0.00 0.20 0.00 0.20 +théologie théologie nom f s 1.97 4.19 1.96 4.19 +théologien théologien nom m s 0.46 2.09 0.35 0.81 +théologiennes théologien nom f p 0.46 2.09 0.00 0.07 +théologiens théologien nom m p 0.46 2.09 0.11 1.22 +théologies théologie nom f p 1.97 4.19 0.01 0.00 +théologique théologique adj s 0.39 1.35 0.29 0.88 +théologiquement théologiquement adv 0.03 0.00 0.03 0.00 +théologiques théologique adj f p 0.39 1.35 0.10 0.47 +théophylline théophylline nom f s 0.04 0.00 0.04 0.00 +théorbe théorbe nom m s 0.00 0.34 0.00 0.20 +théorbes théorbe nom m p 0.00 0.34 0.00 0.14 +théoricien théoricien nom m s 0.40 1.15 0.25 0.47 +théoricienne théoricien nom f s 0.40 1.15 0.13 0.00 +théoriciens théoricien nom m p 0.40 1.15 0.03 0.68 +théorie théorie nom f s 32.38 15.27 27.29 8.04 +théories théorie nom f p 32.38 15.27 5.09 7.23 +théorique théorique adj s 2.11 3.58 1.76 2.43 +théoriquement théoriquement adv 2.58 2.70 2.58 2.70 +théoriques théorique adj p 2.11 3.58 0.35 1.15 +théorise théoriser ver 0.07 0.00 0.02 0.00 ind:pre:1s;ind:pre:3s; +théoriser théoriser ver 0.07 0.00 0.04 0.00 inf; +théorème théorème nom m s 0.41 0.81 0.36 0.41 +théorèmes théorème nom m p 0.41 0.81 0.05 0.41 +théosophes théosophe nom p 0.00 0.07 0.00 0.07 +théosophie théosophie nom f s 0.03 0.00 0.03 0.00 +théosophique théosophique adj m s 0.00 0.07 0.00 0.07 +théâtral théâtral adj m s 1.78 7.97 0.80 3.51 +théâtrale théâtral adj f s 1.78 7.97 0.76 3.45 +théâtralement théâtralement adv 0.02 0.47 0.02 0.47 +théâtrales théâtral adj f p 1.78 7.97 0.17 0.88 +théâtralisant théâtraliser ver 0.00 0.20 0.00 0.07 par:pre; +théâtralisé théâtraliser ver m s 0.00 0.20 0.00 0.07 par:pas; +théâtralisée théâtraliser ver f s 0.00 0.20 0.00 0.07 par:pas; +théâtralité théâtralité nom f s 0.04 0.07 0.04 0.07 +théâtraux théâtral adj m p 1.78 7.97 0.05 0.14 +théâtre théâtre nom m s 41.49 68.18 40.51 64.32 +théâtres théâtre nom m p 41.49 68.18 0.98 3.85 +théâtreuse théâtreux nom f s 0.18 0.20 0.02 0.07 +théâtreux théâtreux nom m 0.18 0.20 0.16 0.14 +thérapeute thérapeute nom s 3.67 0.07 3.44 0.07 +thérapeutes thérapeute nom p 3.67 0.07 0.23 0.00 +thérapeutique thérapeutique adj s 1.68 0.54 1.30 0.34 +thérapeutiques thérapeutique adj p 1.68 0.54 0.38 0.20 +thérapie thérapie nom f s 13.63 0.07 12.98 0.07 +thérapies thérapie nom f p 13.63 0.07 0.65 0.00 +thuriféraire thuriféraire nom m s 0.00 0.34 0.00 0.14 +thuriféraires thuriféraire nom m p 0.00 0.34 0.00 0.20 +thés thé nom m p 69.01 44.86 1.17 0.68 +thésard thésard nom m s 0.08 0.00 0.04 0.00 +thésards thésard nom m p 0.08 0.00 0.04 0.00 +thésaurise thésauriser ver 0.25 0.41 0.11 0.14 ind:pre:3s; +thésauriser thésauriser ver 0.25 0.41 0.14 0.14 inf; +thésaurisés thésauriser ver m p 0.25 0.41 0.00 0.14 par:pas; +thésaurus thésaurus nom m 0.01 0.00 0.01 0.00 +thêta thêta nom m 0.21 0.00 0.21 0.00 +théurgiques théurgique adj p 0.00 0.07 0.00 0.07 +thuya thuya nom m s 0.00 0.27 0.00 0.20 +thuyas thuya nom m p 0.00 0.27 0.00 0.07 +ève pas adv_sup 18189.04 8795.20 0.01 0.00 +thym thym nom m s 1.17 2.09 1.17 2.09 +thymectomie thymectomie nom f s 0.03 0.00 0.03 0.00 +thymine thymine nom f s 0.04 0.00 0.04 0.00 +thymus thymus nom m 0.05 0.00 0.05 0.00 +thyroïde thyroïde nom f s 0.27 0.14 0.27 0.14 +thyroïdectomie thyroïdectomie nom f s 0.03 0.00 0.03 0.00 +thyroïdien thyroïdien adj m s 0.04 0.00 0.03 0.00 +thyroïdienne thyroïdien adj f s 0.04 0.00 0.01 0.00 +thyroxine thyroxine nom f s 0.02 0.00 0.02 0.00 +thyrses thyrse nom m p 0.00 0.07 0.00 0.07 +thyréotoxicose thyréotoxicose nom f s 0.01 0.00 0.01 0.00 +tiama tiama nom m s 0.17 0.00 0.17 0.00 +tian tian nom m s 0.18 0.20 0.18 0.20 +tiare tiare nom f s 0.51 0.88 0.50 0.81 +tiares tiare nom f p 0.51 0.88 0.01 0.07 +tiaré tiaré nom m s 0.00 0.07 0.00 0.07 +tibia tibia nom m s 2.33 3.04 2.02 1.01 +tibial tibial adj m s 0.09 0.14 0.04 0.00 +tibiale tibial adj f s 0.09 0.14 0.05 0.14 +tibias tibia nom m p 2.33 3.04 0.30 2.03 +tibétain tibétain adj m s 0.53 0.68 0.29 0.27 +tibétaine tibétain adj f s 0.53 0.68 0.11 0.07 +tibétaines tibétain adj f p 0.53 0.68 0.02 0.07 +tibétains tibétain adj m p 0.53 0.68 0.11 0.27 +tic_tac tic_tac nom m 2.52 2.91 2.52 2.91 +tic tic nom m s 3.00 9.86 2.47 4.86 +ticheurte ticheurte nom m s 0.00 0.07 0.00 0.07 +ticket ticket nom m s 24.25 15.81 13.62 6.15 +tickets ticket nom m p 24.25 15.81 10.63 9.66 +tics tic nom m p 3.00 9.86 0.53 5.00 +ticsons ticson nom m p 0.00 0.14 0.00 0.14 +tictaquer tictaquer ver 0.03 0.00 0.03 0.00 inf; +tie_break tie_break nom m s 0.02 0.00 0.02 0.00 +tien tien pro_pos m s 26.21 5.54 26.21 5.54 +tiendra tenir ver 504.69 741.22 12.15 4.59 ind:fut:3s; +tiendrai tenir ver 504.69 741.22 8.61 1.89 ind:fut:1s; +tiendraient tenir ver 504.69 741.22 0.28 1.28 cnd:pre:3p; +tiendrais tenir ver 504.69 741.22 1.36 1.89 cnd:pre:1s;cnd:pre:2s; +tiendrait tenir ver 504.69 741.22 2.39 6.49 cnd:pre:3s; +tiendras tenir ver 504.69 741.22 2.76 0.61 ind:fut:2s; +tiendrez tenir ver 504.69 741.22 1.42 0.74 ind:fut:2p; +tiendriez tenir ver 504.69 741.22 0.28 0.14 cnd:pre:2p; +tiendrons tenir ver 504.69 741.22 1.94 0.74 ind:fut:1p; +tiendront tenir ver 504.69 741.22 1.86 0.68 ind:fut:3p; +tienne tienne pro_pos f s 25.41 5.81 25.41 5.81 +tiennent tenir ver 504.69 741.22 11.43 24.26 ind:pre:3p; +tiennes tiennes pro_pos f p 4.09 0.95 4.09 0.95 +tiens_la_moi tiens_la_moi adj_pos m s 0.14 0.00 0.14 0.00 +tiens tiens ono 212.99 81.89 212.99 81.89 +tient tenir ver 504.69 741.22 78.32 96.69 ind:pre:3s; +tierce tiers adj f s 0.78 2.97 0.32 0.41 +tiercefeuille tiercefeuille nom f s 0.00 0.07 0.00 0.07 +tiercelet tiercelet nom m s 0.00 0.14 0.00 0.07 +tiercelets tiercelet nom m p 0.00 0.14 0.00 0.07 +tierces tiers adj f p 0.78 2.97 0.00 0.14 +tiercé tiercé nom m s 1.32 2.03 1.32 1.89 +tiercés tiercé nom m p 1.32 2.03 0.00 0.14 +tiers_monde tiers_monde nom m s 1.96 0.20 1.96 0.14 +tiers_monde tiers_monde nom m p 1.96 0.20 0.00 0.07 +tiers_mondisme tiers_mondisme nom m s 0.00 0.07 0.00 0.07 +tiers_mondiste tiers_mondiste adj f s 0.15 0.20 0.15 0.00 +tiers_mondiste tiers_mondiste adj m p 0.15 0.20 0.00 0.20 +tiers_ordre tiers_ordre nom m 0.00 0.07 0.00 0.07 +tiers_point tiers_point nom m s 0.00 0.14 0.00 0.14 +tiers_état tiers_état nom m s 0.03 0.00 0.03 0.00 +tiers tiers nom m 6.24 14.93 6.18 13.85 +tif tif nom m s 1.71 6.01 0.84 0.27 +tifs tif nom m p 1.71 6.01 0.86 5.74 +tige tige nom f s 3.73 22.23 2.39 11.15 +tigelles tigelle nom f p 0.00 0.20 0.00 0.20 +tiges tige nom f p 3.73 22.23 1.34 11.08 +tignasse tignasse nom f s 0.89 4.80 0.87 4.46 +tignasses tignasse nom f p 0.89 4.80 0.02 0.34 +tigre tigre nom m s 14.90 8.65 11.14 4.86 +tigres tigre nom m p 14.90 8.65 2.66 2.50 +tigresse tigre nom f s 14.90 8.65 1.10 1.08 +tigresses tigresse nom f p 0.29 0.00 0.29 0.00 +tigré tigrer ver m s 0.02 0.47 0.02 0.27 par:pas; +tigrée tigré adj f s 0.01 1.69 0.00 0.41 +tigrées tigré adj f p 0.01 1.69 0.00 0.14 +tigrure tigrure nom f s 0.00 0.07 0.00 0.07 +tigrés tigré adj m p 0.01 1.69 0.00 0.54 +tiki tiki nom m s 0.16 0.00 0.16 0.00 +tilbury tilbury nom m s 0.00 0.81 0.00 0.74 +tilburys tilbury nom m p 0.00 0.81 0.00 0.07 +till till nom m s 0.35 0.00 0.35 0.00 +tillac tillac nom m s 0.00 0.14 0.00 0.07 +tillacs tillac nom m p 0.00 0.14 0.00 0.07 +tille tille nom f s 0.18 0.00 0.12 0.00 +tiller tiller ver 0.01 0.00 0.01 0.00 inf; +tilles tille nom f p 0.18 0.00 0.07 0.00 +tilleul tilleul nom m s 1.59 11.01 1.03 5.00 +tilleuls tilleul nom m p 1.59 11.01 0.56 6.01 +tilt tilt nom m s 1.11 1.55 1.11 1.49 +tilts tilt nom m p 1.11 1.55 0.00 0.07 +timbale timbale nom f s 0.97 2.43 0.60 1.76 +timbales timbale nom f p 0.97 2.43 0.37 0.68 +timbalier timbalier nom m s 0.00 0.14 0.00 0.07 +timbaliers timbalier nom m p 0.00 0.14 0.00 0.07 +timbrage timbrage nom m s 0.00 0.07 0.00 0.07 +timbrait timbrer ver 1.38 1.22 0.00 0.07 ind:imp:3s; +timbre_poste timbre_poste nom m s 0.12 1.28 0.11 0.68 +timbre timbre nom m s 7.86 20.81 1.82 13.18 +timbrer timbrer ver 1.38 1.22 0.05 0.00 inf; +timbre_poste timbre_poste nom m p 0.12 1.28 0.01 0.61 +timbres timbre nom m p 7.86 20.81 6.04 7.64 +timbrât timbrer ver 1.38 1.22 0.00 0.07 sub:imp:3s; +timbré timbrer ver m s 1.38 1.22 1.03 0.27 par:pas; +timbrée timbré adj f s 1.57 2.36 0.25 1.08 +timbrées timbré adj f p 1.57 2.36 0.01 0.14 +timbrés timbré adj m p 1.57 2.36 0.48 0.27 +time_sharing time_sharing nom m s 0.01 0.00 0.01 0.00 +timide timide adj s 16.36 25.14 14.18 19.53 +timidement timidement adv 0.10 11.22 0.10 11.22 +timides timide adj p 16.36 25.14 2.18 5.61 +timidité timidité nom f s 1.75 11.55 1.75 11.15 +timidités timidité nom f p 1.75 11.55 0.00 0.41 +timing timing nom m s 3.59 0.14 3.58 0.07 +timings timing nom m p 3.59 0.14 0.01 0.07 +timon timon nom m s 0.10 2.09 0.10 2.03 +timonerie timonerie nom f s 0.09 0.54 0.09 0.54 +timonier timonier nom m s 1.05 0.68 1.03 0.68 +timoniers timonier nom m p 1.05 0.68 0.02 0.00 +timons timon nom m p 0.10 2.09 0.00 0.07 +timoré timoré adj m s 0.70 2.09 0.44 0.68 +timorée timoré adj f s 0.70 2.09 0.05 0.41 +timorées timoré adj f p 0.70 2.09 0.00 0.07 +timorés timoré adj m p 0.70 2.09 0.21 0.95 +tin tin nom m s 0.52 0.20 0.45 0.00 +tine tine nom f s 0.16 0.00 0.16 0.00 +tinette tinette nom f s 0.12 1.55 0.12 0.68 +tinettes tinette nom f p 0.12 1.55 0.00 0.88 +tinrent tenir ver 504.69 741.22 0.01 1.55 ind:pas:3p; +tins tenir ver 504.69 741.22 0.16 2.57 ind:pas:1s;ind:pas:2s; +tinssent tenir ver 504.69 741.22 0.00 0.27 sub:imp:3p; +tint tenir ver 504.69 741.22 0.84 15.20 ind:pas:3s; +tinta tinter ver 0.95 11.76 0.00 0.88 ind:pas:3s; +tintaient tinter ver 0.95 11.76 0.02 0.47 ind:imp:3p; +tintait tinter ver 0.95 11.76 0.17 1.08 ind:imp:3s; +tintamarre tintamarre nom m s 0.04 3.51 0.04 3.31 +tintamarrent tintamarrer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +tintamarres tintamarre nom m p 0.04 3.51 0.00 0.20 +tintamarresque tintamarresque adj s 0.00 0.41 0.00 0.34 +tintamarresques tintamarresque adj p 0.00 0.41 0.00 0.07 +tintant tinter ver 0.95 11.76 0.00 1.15 par:pre; +tinte tinter ver 0.95 11.76 0.39 1.55 imp:pre:2s;ind:pre:3s; +tintement tintement nom m s 0.95 8.78 0.68 6.82 +tintements tintement nom m p 0.95 8.78 0.28 1.96 +tintent tinter ver 0.95 11.76 0.07 1.82 ind:pre:3p; +tinter tinter ver 0.95 11.76 0.31 3.92 inf; +tintin tintin ono 1.08 1.69 1.08 1.69 +tintinnabula tintinnabuler ver 0.01 0.74 0.00 0.07 ind:pas:3s; +tintinnabulaient tintinnabuler ver 0.01 0.74 0.00 0.07 ind:imp:3p; +tintinnabulant tintinnabuler ver 0.01 0.74 0.01 0.07 par:pre; +tintinnabulante tintinnabulant adj f s 0.00 0.41 0.00 0.14 +tintinnabulantes tintinnabulant adj f p 0.00 0.41 0.00 0.07 +tintinnabulants tintinnabulant adj m p 0.00 0.41 0.00 0.07 +tintinnabule tintinnabuler ver 0.01 0.74 0.00 0.14 ind:pre:3s; +tintinnabulement tintinnabulement nom m s 0.00 0.14 0.00 0.07 +tintinnabulements tintinnabulement nom m p 0.00 0.14 0.00 0.07 +tintinnabulent tintinnabuler ver 0.01 0.74 0.00 0.34 ind:pre:3p; +tintinnabuler tintinnabuler ver 0.01 0.74 0.00 0.07 inf; +tintouin tintouin nom m s 0.39 2.09 0.39 1.89 +tintouins tintouin nom m p 0.39 2.09 0.00 0.20 +tintèrent tinter ver 0.95 11.76 0.00 0.41 ind:pas:3p; +tinté tinter ver m s 0.95 11.76 0.00 0.41 par:pas; +tintés tinter ver m p 0.95 11.76 0.00 0.07 par:pas; +tinée tinée nom f s 0.00 0.14 0.00 0.14 +tipe tiper ver 0.02 0.00 0.02 0.00 ind:pre:3s; +tipi tipi nom m s 0.36 0.00 0.32 0.00 +tipis tipi nom m p 0.36 0.00 0.04 0.00 +tipper tipper ver 0.05 0.00 0.05 0.00 inf; +tipule tipule nom f s 0.00 0.07 0.00 0.07 +tiqua tiquer ver 0.28 2.91 0.00 0.20 ind:pas:3s; +tiquai tiquer ver 0.28 2.91 0.00 0.07 ind:pas:1s; +tiquaient tiquer ver 0.28 2.91 0.00 0.07 ind:imp:3p; +tiquais tiquer ver 0.28 2.91 0.00 0.14 ind:imp:1s; +tiquait tiquer ver 0.28 2.91 0.01 0.34 ind:imp:3s; +tiquant tiquer ver 0.28 2.91 0.00 0.14 par:pre; +tique tique nom f s 1.95 0.81 0.72 0.54 +tiquent tiquer ver 0.28 2.91 0.01 0.07 ind:pre:3p; +tiquer tiquer ver 0.28 2.91 0.13 0.47 inf; +tiquerais tiquer ver 0.28 2.91 0.01 0.00 cnd:pre:2s; +tiques tique nom f p 1.95 0.81 1.23 0.27 +tiqueté tiqueté adj m s 0.00 0.07 0.00 0.07 +tiqué tiquer ver m s 0.28 2.91 0.08 0.88 par:pas; +tir tir nom m s 32.11 18.85 24.54 16.01 +tira tirer ver 415.14 383.24 1.39 39.59 ind:pas:3s; +tirade tirade nom f s 1.55 4.05 1.25 3.18 +tirades tirade nom f p 1.55 4.05 0.30 0.88 +tirage tirage nom m s 3.76 6.01 3.01 5.07 +tirages tirage nom m p 3.76 6.01 0.75 0.95 +tirai tirer ver 415.14 383.24 0.23 2.43 ind:pas:1s; +tiraient tirer ver 415.14 383.24 1.76 10.47 ind:imp:3p; +tirailla tirailler ver 0.68 3.85 0.00 0.20 ind:pas:3s; +tiraillaient tirailler ver 0.68 3.85 0.00 0.20 ind:imp:3p; +tiraillait tirailler ver 0.68 3.85 0.15 0.68 ind:imp:3s; +tiraillant tirailler ver 0.68 3.85 0.01 0.41 par:pre; +tiraille tirailler ver 0.68 3.85 0.00 0.20 ind:pre:3s; +tiraillement tiraillement nom m s 0.13 0.95 0.10 0.34 +tiraillements tiraillement nom m p 0.13 0.95 0.03 0.61 +tiraillent tirailler ver 0.68 3.85 0.01 0.07 ind:pre:3p; +tirailler tirailler ver 0.68 3.85 0.16 0.61 inf; +tiraillerait tirailler ver 0.68 3.85 0.00 0.14 cnd:pre:3s; +tirailleries tiraillerie nom f p 0.00 0.07 0.00 0.07 +tirailleur tirailleur nom m s 0.12 6.49 0.04 0.88 +tirailleurs tirailleur nom m p 0.12 6.49 0.08 5.61 +tiraillez tirailler ver 0.68 3.85 0.01 0.00 imp:pre:2p; +tiraillons tirailler ver 0.68 3.85 0.00 0.07 ind:pre:1p; +tiraillé tirailler ver m s 0.68 3.85 0.26 0.95 par:pas; +tiraillée tirailler ver f s 0.68 3.85 0.07 0.07 par:pas; +tiraillées tirailler ver f p 0.68 3.85 0.00 0.07 par:pas; +tiraillés tirailler ver m p 0.68 3.85 0.01 0.20 par:pas; +tirais tirer ver 415.14 383.24 1.71 3.24 ind:imp:1s;ind:imp:2s; +tirait tirer ver 415.14 383.24 3.97 34.86 ind:imp:3s; +tiramisu tiramisu nom m s 0.24 0.00 0.24 0.00 +tirant tirer ver 415.14 383.24 2.66 25.95 par:pre; +tirants tirant nom m p 0.33 1.89 0.02 0.20 +tiras tirer ver 415.14 383.24 0.00 0.07 ind:pas:2s; +tirassent tirasser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +tire_au_cul tire_au_cul nom m 0.02 0.00 0.02 0.00 +tire_au_flanc tire_au_flanc nom m 0.51 0.34 0.51 0.34 +tire_botte tire_botte nom m s 0.01 0.07 0.01 0.07 +tire_bouchon tire_bouchon nom m s 0.93 2.43 0.90 2.16 +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.00 0.14 ind:imp:3p; +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.00 0.07 par:pre; +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.01 0.27 ind:pre:3s; +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.01 0.07 ind:pre:3p; +tire_bouchonner tire_bouchonner ver m s 0.02 0.88 0.00 0.27 par:pas; +tire_bouchonner tire_bouchonner ver m p 0.02 0.88 0.00 0.07 par:pas; +tire_bouchon tire_bouchon nom m p 0.93 2.43 0.03 0.27 +tire_bouton tire_bouton nom m s 0.00 0.07 0.00 0.07 +tire_d_aile tire_d_aile nom f s 0.02 0.00 0.02 0.00 +tire_fesse tire_fesse nom f s 0.01 0.00 0.01 0.00 +tire_jus tire_jus nom m 0.00 0.20 0.00 0.20 +tire_laine tire_laine nom m 0.02 0.07 0.02 0.07 +tire_lait tire_lait nom m 0.07 0.00 0.07 0.00 +tire_larigot tire_larigot nom f s 0.00 0.07 0.00 0.07 +tire_ligne tire_ligne nom m s 0.00 0.34 0.00 0.20 +tire_ligne tire_ligne nom m p 0.00 0.34 0.00 0.14 +tire_lire tire_lire nom m 0.00 0.14 0.00 0.14 +tire tirer ver 415.14 383.24 107.25 55.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tirebouchonner tirebouchonner ver 0.00 0.34 0.00 0.14 inf; +tirebouchonné tirebouchonner ver m s 0.00 0.34 0.00 0.14 par:pas; +tirebouchonnée tirebouchonner ver f s 0.00 0.34 0.00 0.07 par:pas; +tirelire tirelire nom f s 1.43 2.16 1.39 2.09 +tirelirent tirelirer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +tirelires tirelire nom f p 1.43 2.16 0.03 0.07 +tirent tirer ver 415.14 383.24 10.30 10.95 ind:pre:3p;sub:pre:3p; +tirer tirer ver 415.14 383.24 113.71 99.73 inf;;inf;;inf;;inf;; +tirera tirer ver 415.14 383.24 5.81 2.16 ind:fut:3s; +tirerai tirer ver 415.14 383.24 2.57 1.08 ind:fut:1s; +tireraient tirer ver 415.14 383.24 0.21 0.88 cnd:pre:3p; +tirerais tirer ver 415.14 383.24 1.54 0.61 cnd:pre:1s;cnd:pre:2s; +tirerait tirer ver 415.14 383.24 0.76 3.24 cnd:pre:3s; +tireras tirer ver 415.14 383.24 2.94 0.54 ind:fut:2s; +tirerez tirer ver 415.14 383.24 2.13 0.54 ind:fut:2p; +tireriez tirer ver 415.14 383.24 0.27 0.07 cnd:pre:2p; +tirerions tirer ver 415.14 383.24 0.00 0.07 cnd:pre:1p; +tirerons tirer ver 415.14 383.24 1.02 0.47 ind:fut:1p; +tireront tirer ver 415.14 383.24 1.75 0.61 ind:fut:3p; +tires tirer ver 415.14 383.24 11.70 2.09 ind:pre:2s;sub:pre:2s; +tiret tiret nom m s 0.20 0.54 0.20 0.27 +tirets tiret nom m p 0.20 0.54 0.00 0.27 +tirette tirette nom f s 0.04 1.22 0.03 0.41 +tirettes tirette nom f p 0.04 1.22 0.01 0.81 +tireur tireur nom m s 18.07 8.72 12.83 5.41 +tireurs tireur nom m p 18.07 8.72 5.08 2.64 +tireuse tireur nom f s 18.07 8.72 0.16 0.54 +tireuses tireuse nom f p 0.02 0.00 0.02 0.00 +tirez tirer ver 415.14 383.24 45.90 3.51 imp:pre:2p;ind:pre:2p; +tiriez tirer ver 415.14 383.24 0.42 0.20 ind:imp:2p; +tirions tirer ver 415.14 383.24 0.05 0.81 ind:imp:1p;sub:pre:1p; +tiroir_caisse tiroir_caisse nom m s 0.49 2.16 0.48 2.03 +tiroir tiroir nom m s 14.65 37.09 12.18 26.22 +tiroir_caisse tiroir_caisse nom m p 0.49 2.16 0.01 0.14 +tiroirs tiroir nom m p 14.65 37.09 2.47 10.88 +tirâmes tirer ver 415.14 383.24 0.00 0.07 ind:pas:1p; +tirons tirer ver 415.14 383.24 6.13 1.82 imp:pre:1p;ind:pre:1p; +tirât tirer ver 415.14 383.24 0.00 0.34 sub:imp:3s; +tirs tir nom m p 32.11 18.85 7.57 2.84 +tirèrent tirer ver 415.14 383.24 0.48 2.03 ind:pas:3p; +tiré tirer ver m s 415.14 383.24 76.78 53.04 par:pas; +tirée tirer ver f s 415.14 383.24 6.45 10.20 par:pas; +tirées tirer ver f p 415.14 383.24 1.16 2.77 par:pas; +tirés tirer ver m p 415.14 383.24 4.11 13.65 par:pas; +tisa tiser ver 0.28 0.14 0.00 0.14 ind:pas:3s; +tisane tisane nom f s 2.86 4.80 2.15 3.78 +tisanes tisane nom f p 2.86 4.80 0.72 1.01 +tisanière tisanière nom f s 0.00 0.14 0.00 0.14 +tisané tisaner ver m s 0.00 0.20 0.00 0.20 par:pas; +tiser tiser ver 0.28 0.14 0.28 0.00 inf; +tison tison nom m s 0.23 2.16 0.13 0.74 +tisonna tisonner ver 0.02 1.22 0.00 0.41 ind:pas:3s; +tisonnait tisonner ver 0.02 1.22 0.01 0.14 ind:imp:3s; +tisonnant tisonner ver 0.02 1.22 0.00 0.27 par:pre; +tisonne tisonner ver 0.02 1.22 0.00 0.07 ind:pre:3s; +tisonnent tisonner ver 0.02 1.22 0.00 0.14 ind:pre:3p; +tisonner tisonner ver 0.02 1.22 0.01 0.14 inf; +tisonnier tisonnier nom m s 1.01 0.95 0.98 0.88 +tisonniers tisonnier nom m p 1.01 0.95 0.04 0.07 +tisonné tisonner ver m s 0.02 1.22 0.00 0.07 par:pas; +tisonnés tisonné adj m p 0.00 0.14 0.00 0.07 +tisons tison nom m p 0.23 2.16 0.10 1.42 +tissa tisser ver 2.97 11.15 0.06 0.00 ind:pas:3s; +tissage tissage nom m s 0.26 1.55 0.25 1.49 +tissages tissage nom m p 0.26 1.55 0.01 0.07 +tissaient tisser ver 2.97 11.15 0.00 0.61 ind:imp:3p; +tissais tisser ver 2.97 11.15 0.01 0.00 ind:imp:2s; +tissait tisser ver 2.97 11.15 0.03 1.22 ind:imp:3s; +tissant tisser ver 2.97 11.15 0.01 0.61 par:pre; +tisse tisser ver 2.97 11.15 0.87 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tissent tisser ver 2.97 11.15 0.14 0.74 ind:pre:3p; +tisser tisser ver 2.97 11.15 0.58 2.36 inf; +tisserai tisser ver 2.97 11.15 0.02 0.00 ind:fut:1s; +tisserais tisser ver 2.97 11.15 0.01 0.00 cnd:pre:1s; +tisserait tisser ver 2.97 11.15 0.01 0.07 cnd:pre:3s; +tisserand tisserand nom m s 0.34 1.08 0.11 0.34 +tisserande tisserand nom f s 0.34 1.08 0.21 0.07 +tisserands tisserand nom m p 0.34 1.08 0.02 0.68 +tisserons tisser ver 2.97 11.15 0.01 0.07 ind:fut:1p; +tisseur tisseur nom m s 0.44 0.47 0.00 0.34 +tisseuse tisseur nom f s 0.44 0.47 0.44 0.14 +tissez tisser ver 2.97 11.15 0.29 0.00 imp:pre:2p;ind:pre:2p; +tissons tisser ver 2.97 11.15 0.01 0.07 ind:pre:1p; +tissât tisser ver 2.97 11.15 0.00 0.07 sub:imp:3s; +tissèrent tisser ver 2.97 11.15 0.00 0.07 ind:pas:3p; +tissu_éponge tissu_éponge nom m s 0.00 0.41 0.00 0.41 +tissé tisser ver m s 2.97 11.15 0.73 1.55 par:pas; +tissu tissu nom m s 15.69 34.66 9.21 25.95 +tissée tisser ver f s 2.97 11.15 0.13 1.55 par:pas; +tissue tissu adj f s 0.98 1.69 0.07 0.00 +tissées tissé adj f p 0.04 0.74 0.01 0.00 +tissues tissu adj f p 0.98 1.69 0.00 0.14 +tissulaire tissulaire adj s 0.33 0.07 0.28 0.00 +tissulaires tissulaire adj p 0.33 0.07 0.05 0.07 +tissés tisser ver m p 2.97 11.15 0.05 0.88 par:pas; +tissus tissu nom m p 15.69 34.66 6.48 8.72 +tissuterie tissuterie nom f s 0.00 0.14 0.00 0.14 +tissutier tissutier nom m s 0.00 0.07 0.00 0.07 +titan titan nom m s 1.33 0.88 1.06 0.68 +titane titane nom m s 1.69 0.20 1.69 0.20 +titanesque titanesque adj s 0.25 0.88 0.21 0.74 +titanesques titanesque adj p 0.25 0.88 0.03 0.14 +titanique titanique adj m s 0.01 0.00 0.01 0.00 +titans titan nom m p 1.33 0.88 0.27 0.20 +tiède tiède adj s 3.85 44.73 3.35 36.69 +tièdement tièdement adv 0.00 0.14 0.00 0.14 +tièdes tiède adj p 3.85 44.73 0.50 8.04 +titi titi nom m s 4.79 6.28 4.79 6.15 +titilla titiller ver 1.10 1.69 0.00 0.07 ind:pas:3s; +titillaient titiller ver 1.10 1.69 0.03 0.07 ind:imp:3p; +titillais titiller ver 1.10 1.69 0.02 0.07 ind:imp:1s;ind:imp:2s; +titillait titiller ver 1.10 1.69 0.04 0.41 ind:imp:3s; +titillant titiller ver 1.10 1.69 0.03 0.07 par:pre; +titillation titillation nom f s 0.00 0.27 0.00 0.20 +titillations titillation nom f p 0.00 0.27 0.00 0.07 +titille titiller ver 1.10 1.69 0.48 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +titillement titillement nom m s 0.02 0.20 0.00 0.14 +titillements titillement nom m p 0.02 0.20 0.02 0.07 +titillent titiller ver 1.10 1.69 0.04 0.00 ind:pre:3p; +titiller titiller ver 1.10 1.69 0.36 0.34 inf; +titillera titiller ver 1.10 1.69 0.01 0.00 ind:fut:3s; +titillé titiller ver m s 1.10 1.69 0.09 0.00 par:pas; +titillées titiller ver f p 1.10 1.69 0.00 0.14 par:pas; +titillés titiller ver m p 1.10 1.69 0.00 0.14 par:pas; +titis titi nom m p 4.79 6.28 0.00 0.14 +titisme titisme nom m s 0.00 0.14 0.00 0.14 +titra titrer ver 1.75 1.08 1.10 0.07 ind:pas:3s; +titrage titrage nom m s 0.31 0.00 0.31 0.00 +titrait titrer ver 1.75 1.08 0.00 0.27 ind:imp:3s; +titre titre nom m s 41.35 71.22 32.40 53.04 +titrer titrer ver 1.75 1.08 0.03 0.34 inf; +titres titre nom m p 41.35 71.22 8.95 18.18 +titré titré adj m s 0.46 0.61 0.28 0.20 +titrée titrer ver f s 1.75 1.08 0.01 0.00 par:pas; +titrées titré adj f p 0.46 0.61 0.15 0.07 +titrés titré adj m p 0.46 0.61 0.01 0.34 +tituba tituber ver 1.34 13.31 0.01 0.74 ind:pas:3s; +titubai tituber ver 1.34 13.31 0.00 0.07 ind:pas:1s; +titubaient tituber ver 1.34 13.31 0.00 0.47 ind:imp:3p; +titubais tituber ver 1.34 13.31 0.13 0.20 ind:imp:1s;ind:imp:2s; +titubait tituber ver 1.34 13.31 0.06 1.96 ind:imp:3s; +titubant tituber ver 1.34 13.31 0.28 5.61 par:pre; +titubante titubant adj f s 0.24 3.78 0.02 1.49 +titubantes titubant adj f p 0.24 3.78 0.01 0.20 +titubants titubant adj m p 0.24 3.78 0.20 0.81 +titubation titubation nom f s 0.00 0.20 0.00 0.14 +titubations titubation nom f p 0.00 0.20 0.00 0.07 +titube tituber ver 1.34 13.31 0.31 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +titubement titubement nom m s 0.00 0.07 0.00 0.07 +titubent tituber ver 1.34 13.31 0.24 0.14 ind:pre:3p; +tituber tituber ver 1.34 13.31 0.13 1.35 inf; +titubez tituber ver 1.34 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +titubiez tituber ver 1.34 13.31 0.02 0.00 ind:imp:2p; +titubions tituber ver 1.34 13.31 0.00 0.07 ind:imp:1p; +titubèrent tituber ver 1.34 13.31 0.01 0.07 ind:pas:3p; +titubé tituber ver m s 1.34 13.31 0.11 0.34 par:pas; +titulaire titulaire nom s 1.80 0.95 1.27 0.61 +titulaires titulaire nom p 1.80 0.95 0.53 0.34 +titularisation titularisation nom f s 0.13 0.00 0.13 0.00 +titulariser titulariser ver 0.22 0.07 0.03 0.00 inf; +titularisé titulariser ver m s 0.22 0.07 0.06 0.00 par:pas; +titularisée titulariser ver f s 0.22 0.07 0.13 0.07 par:pas; +tiédasse tiédasse adj s 0.01 0.61 0.00 0.54 +tiédasses tiédasse adj p 0.01 0.61 0.01 0.07 +tiédeur tiédeur nom f s 0.28 10.27 0.28 10.00 +tiédeurs tiédeur nom f p 0.28 10.27 0.00 0.27 +tiédi tiédir ver m s 0.17 2.16 0.00 0.20 par:pas; +tiédie tiédir ver f s 0.17 2.16 0.00 0.34 par:pas; +tiédies tiédir ver f p 0.17 2.16 0.00 0.07 par:pas; +tiédir tiédir ver 0.17 2.16 0.01 0.61 inf; +tiédirait tiédir ver 0.17 2.16 0.00 0.07 cnd:pre:3s; +tiédis tiédir ver m p 0.17 2.16 0.00 0.07 par:pas; +tiédissaient tiédir ver 0.17 2.16 0.00 0.14 ind:imp:3p; +tiédissait tiédir ver 0.17 2.16 0.00 0.27 ind:imp:3s; +tiédissant tiédir ver 0.17 2.16 0.00 0.14 par:pre; +tiédissent tiédir ver 0.17 2.16 0.00 0.07 ind:pre:3p; +tiédit tiédir ver 0.17 2.16 0.16 0.20 ind:pre:3s;ind:pas:3s; +to to pro_per f s 0.01 0.00 0.01 0.00 +toast toast nom m s 16.30 4.39 13.73 1.96 +toaster toaster nom m s 0.45 0.00 0.45 0.00 +toasteur toasteur nom m s 0.17 0.00 0.17 0.00 +toasts toast nom m p 16.30 4.39 2.56 2.43 +toasté toaster ver m s 0.09 0.00 0.07 0.00 par:pas; +toboggan toboggan nom m s 0.86 1.69 0.59 1.22 +toboggans toboggan nom m p 0.86 1.69 0.28 0.47 +toc toc adj 4.83 7.09 4.83 7.09 +tocade tocade nom f s 0.30 0.00 0.30 0.00 +tocante tocante nom f s 0.06 0.54 0.06 0.54 +tocard tocard nom m s 1.27 1.08 0.94 0.74 +tocarde tocard adj f s 0.39 1.15 0.09 0.27 +tocardes tocard adj f p 0.39 1.15 0.00 0.07 +tocards tocard nom m p 1.27 1.08 0.33 0.34 +toccata toccata nom f s 0.04 0.07 0.04 0.07 +tâcha tâcher ver 11.41 27.50 0.00 1.35 ind:pas:3s; +tâchai tâcher ver 11.41 27.50 0.00 0.81 ind:pas:1s; +tâchaient tâcher ver 11.41 27.50 0.00 0.74 ind:imp:3p; +tâchais tâcher ver 11.41 27.50 0.02 1.35 ind:imp:1s; +tâchait tâcher ver 11.41 27.50 0.13 2.77 ind:imp:3s; +tâchant tâcher ver 11.41 27.50 0.15 2.43 par:pre; +tâche tâche nom f s 31.01 44.53 25.20 35.95 +tâchent tâcher ver 11.41 27.50 0.00 0.61 ind:pre:3p; +tâcher tâcher ver 11.41 27.50 2.31 6.35 inf; +tâchera tâcher ver 11.41 27.50 0.34 0.41 ind:fut:3s; +tâcherai tâcher ver 11.41 27.50 1.10 1.62 ind:fut:1s; +tâcheraient tâcher ver 11.41 27.50 0.00 0.07 cnd:pre:3p; +tâcherait tâcher ver 11.41 27.50 0.00 0.54 cnd:pre:3s; +tâcheras tâcher ver 11.41 27.50 0.02 0.00 ind:fut:2s; +tâcherez tâcher ver 11.41 27.50 0.00 0.27 ind:fut:2p; +tâcheron tâcheron nom m s 0.05 0.81 0.01 0.20 +tâcherons tâcher ver 11.41 27.50 0.13 0.14 ind:fut:1p; +tâcheront tâcher ver 11.41 27.50 0.01 0.07 ind:fut:3p; +tâches tâche nom f p 31.01 44.53 5.81 8.58 +tâchez tâcher ver 11.41 27.50 4.41 1.96 imp:pre:2p;ind:pre:2p; +tâchions tâcher ver 11.41 27.50 0.00 0.68 ind:imp:1p; +tâchons tâcher ver 11.41 27.50 1.31 0.47 imp:pre:1p;ind:pre:1p; +tâchât tâcher ver 11.41 27.50 0.00 0.07 sub:imp:3s; +tâchèrent tâcher ver 11.41 27.50 0.00 0.07 ind:pas:3p; +tâché tâcher ver m s 11.41 27.50 0.33 1.08 par:pas; +tâchée tâcher ver f s 11.41 27.50 0.08 0.07 par:pas; +tâchés tâcher ver m p 11.41 27.50 0.04 0.00 par:pas; +tocs toc nom m p 2.26 4.05 0.00 0.54 +tocsin tocsin nom m s 0.48 1.42 0.48 1.28 +tocsins tocsin nom m p 0.48 1.42 0.00 0.14 +toffee toffee nom m s 0.01 0.00 0.01 0.00 +tofu tofu nom m s 1.56 0.00 1.56 0.00 +toge toge nom f s 0.77 1.55 0.60 1.35 +toges toge nom f p 0.77 1.55 0.16 0.20 +togolais togolais adj m 0.00 0.41 0.00 0.14 +togolaise togolais adj f s 0.00 0.41 0.00 0.20 +togolaises togolais adj f p 0.00 0.41 0.00 0.07 +tohu_bohu tohu_bohu nom m 0.18 1.42 0.18 1.42 +toi_même toi_même pro_per s 45.83 11.89 45.83 11.89 +toi toi pro_per s 2519.50 450.34 2519.50 450.34 +toilasses toiler ver 0.00 0.27 0.00 0.07 sub:imp:2s; +toile toile nom f s 17.99 106.62 11.75 81.35 +toiles toile nom f p 17.99 106.62 6.24 25.27 +toiletta toiletter ver 0.03 0.68 0.00 0.07 ind:pas:3s; +toilettage toilettage nom m s 0.13 0.00 0.13 0.00 +toilettait toiletter ver 0.03 0.68 0.00 0.14 ind:imp:3s; +toilette toilette nom f s 62.84 45.68 9.76 32.30 +toiletter toiletter ver 0.03 0.68 0.01 0.20 inf; +toilettes toilette nom f p 62.84 45.68 53.08 13.38 +toiletteur toiletteur nom m s 0.04 0.00 0.04 0.00 +toiletté toiletter ver m s 0.03 0.68 0.02 0.14 par:pas; +toilettées toiletter ver f p 0.03 0.68 0.00 0.07 par:pas; +toilettés toiletter ver m p 0.03 0.68 0.00 0.07 par:pas; +toilé toiler ver m s 0.00 0.27 0.00 0.07 par:pas; +toilée toiler ver f s 0.00 0.27 0.00 0.07 par:pas; +toilés toiler ver m p 0.00 0.27 0.00 0.07 par:pas; +toisa toiser ver 0.14 8.38 0.01 3.04 ind:pas:3s; +toisaient toiser ver 0.14 8.38 0.01 0.20 ind:imp:3p; +toisait toiser ver 0.14 8.38 0.00 0.81 ind:imp:3s; +toisant toiser ver 0.14 8.38 0.00 0.95 par:pre; +toise toiser ver 0.14 8.38 0.04 1.35 ind:pre:3s; +toisent toiser ver 0.14 8.38 0.02 0.07 ind:pre:3p; +toiser toiser ver 0.14 8.38 0.03 0.81 inf; +toises toise nom f p 0.29 1.01 0.27 0.47 +toisez toiser ver 0.14 8.38 0.00 0.07 ind:pre:2p; +toison toison nom f s 0.69 6.35 0.68 5.74 +toisons toison nom f p 0.69 6.35 0.01 0.61 +toisèrent toiser ver 0.14 8.38 0.00 0.54 ind:pas:3p; +toisé toiser ver m s 0.14 8.38 0.01 0.14 par:pas; +toisée toiser ver f s 0.14 8.38 0.03 0.20 par:pas; +toisés toiser ver m p 0.14 8.38 0.00 0.20 par:pas; +toit toit nom m s 49.01 91.76 42.63 54.59 +toits toit nom m p 49.01 91.76 6.37 37.16 +toiture toiture nom f s 0.50 7.57 0.28 5.95 +toitures toiture nom f p 0.50 7.57 0.22 1.62 +tokamak tokamak nom m s 0.04 0.00 0.04 0.00 +tokay tokay nom m s 0.00 0.07 0.00 0.07 +tokharien tokharien nom m s 0.00 0.07 0.00 0.07 +tolar tolar nom m s 0.08 0.00 0.08 0.00 +tolet tolet nom m s 0.02 0.27 0.01 0.07 +tolets tolet nom m p 0.02 0.27 0.01 0.20 +tollé tollé nom m s 0.19 0.47 0.19 0.47 +tolstoïen tolstoïen adj m s 0.00 0.07 0.00 0.07 +tolère tolérer ver 13.05 13.45 2.58 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tolèrent tolérer ver 13.05 13.45 0.28 0.47 ind:pre:3p; +toltèque toltèque adj s 0.03 0.14 0.02 0.07 +toltèques toltèque adj m p 0.03 0.14 0.01 0.07 +tolu tolu nom m s 0.00 0.14 0.00 0.14 +toluidine toluidine nom f s 0.01 0.00 0.01 0.00 +toléra tolérer ver 13.05 13.45 0.02 0.00 ind:pas:3s; +tolérable tolérable adj s 0.47 1.49 0.29 1.01 +tolérables tolérable adj p 0.47 1.49 0.18 0.47 +toléraient tolérer ver 13.05 13.45 0.11 0.54 ind:imp:3p; +tolérais tolérer ver 13.05 13.45 0.04 0.41 ind:imp:1s; +tolérait tolérer ver 13.05 13.45 0.58 2.30 ind:imp:3s; +tolérance tolérance nom f s 3.03 4.39 3.03 4.39 +tolérant tolérant adj m s 2.44 1.49 1.30 0.74 +tolérante tolérant adj f s 2.44 1.49 0.45 0.34 +tolérantes tolérant adj f p 2.44 1.49 0.16 0.07 +tolérants tolérant adj m p 2.44 1.49 0.54 0.34 +tolérer tolérer ver 13.05 13.45 2.96 2.97 inf; +tolérera tolérer ver 13.05 13.45 0.31 0.14 ind:fut:3s; +tolérerai tolérer ver 13.05 13.45 2.31 0.20 ind:fut:1s; +tolérerais tolérer ver 13.05 13.45 0.15 0.07 cnd:pre:1s; +tolérerait tolérer ver 13.05 13.45 0.07 0.34 cnd:pre:3s; +tolérerions tolérer ver 13.05 13.45 0.00 0.07 cnd:pre:1p; +tolérerons tolérer ver 13.05 13.45 0.24 0.00 ind:fut:1p; +toléreront tolérer ver 13.05 13.45 0.14 0.00 ind:fut:3p; +tolérez tolérer ver 13.05 13.45 0.24 0.07 imp:pre:2p;ind:pre:2p; +tolériez tolérer ver 13.05 13.45 0.01 0.00 ind:imp:2p; +tolérions tolérer ver 13.05 13.45 0.00 0.07 ind:imp:1p; +tolérons tolérer ver 13.05 13.45 0.37 0.07 ind:pre:1p; +tolérât tolérer ver 13.05 13.45 0.00 0.14 sub:imp:3s; +toléré tolérer ver m s 13.05 13.45 1.50 2.30 par:pas; +tolérée tolérer ver f s 13.05 13.45 0.25 0.74 par:pas; +tolérées tolérer ver f p 13.05 13.45 0.06 0.47 par:pas; +tolérés tolérer ver m p 13.05 13.45 0.10 0.20 par:pas; +toluène toluène nom m s 0.04 0.00 0.04 0.00 +tom_pouce tom_pouce nom m 0.00 0.54 0.00 0.54 +tom_tom tom_tom nom m 0.04 0.00 0.04 0.00 +tom tom nom m s 2.51 0.14 2.51 0.14 +toma tomer ver 0.14 0.00 0.14 0.00 ind:pas:3s; +tomahawk tomahawk nom m s 0.00 0.27 0.00 0.20 +tomahawks tomahawk nom m p 0.00 0.27 0.00 0.07 +toman toman nom m s 0.27 0.00 0.27 0.00 +tomate tomate nom f s 20.77 13.31 7.88 5.74 +tomates tomate nom f p 20.77 13.31 12.89 7.57 +tomba tomber ver 407.82 441.42 4.17 31.08 ind:pas:3s; +tombai tomber ver 407.82 441.42 0.23 3.58 ind:pas:1s; +tombaient tomber ver 407.82 441.42 1.49 18.65 ind:imp:3p; +tombais tomber ver 407.82 441.42 1.36 2.43 ind:imp:1s;ind:imp:2s; +tombait tomber ver 407.82 441.42 4.01 49.05 ind:imp:3s; +tombal tombal adj m s 2.71 2.70 0.14 0.00 +tombale tombal adj f s 2.71 2.70 1.99 1.49 +tombales tombal adj f p 2.71 2.70 0.58 1.22 +tombant tomber ver 407.82 441.42 3.26 12.97 par:pre; +tombante tombant adj f s 0.88 9.12 0.34 5.00 +tombantes tombant adj f p 0.88 9.12 0.10 1.15 +tombants tombant adj m p 0.88 9.12 0.05 0.41 +tombe tomber ver 407.82 441.42 66.39 60.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tombeau tombeau nom m s 10.22 11.96 9.51 8.92 +tombeaux tombeau nom m p 10.22 11.96 0.71 3.04 +tombent tomber ver 407.82 441.42 13.08 17.97 ind:pre:3p; +tomber tomber ver 407.82 441.42 180.25 133.18 inf; +tombera tomber ver 407.82 441.42 6.26 2.16 ind:fut:3s; +tomberai tomber ver 407.82 441.42 0.88 0.74 ind:fut:1s; +tomberaient tomber ver 407.82 441.42 0.28 0.74 cnd:pre:3p; +tomberais tomber ver 407.82 441.42 0.45 0.81 cnd:pre:1s;cnd:pre:2s; +tomberait tomber ver 407.82 441.42 1.56 3.18 cnd:pre:3s; +tomberas tomber ver 407.82 441.42 1.52 0.07 ind:fut:2s; +tombereau tombereau nom m s 0.01 2.50 0.01 1.15 +tombereaux tombereau nom m p 0.01 2.50 0.00 1.35 +tomberez tomber ver 407.82 441.42 0.90 0.27 ind:fut:2p; +tomberiez tomber ver 407.82 441.42 0.26 0.07 cnd:pre:2p; +tomberions tomber ver 407.82 441.42 0.16 0.07 cnd:pre:1p; +tomberons tomber ver 407.82 441.42 0.16 0.14 ind:fut:1p; +tomberont tomber ver 407.82 441.42 1.54 0.95 ind:fut:3p; +tombes tombe nom f p 49.67 34.86 8.34 10.68 +tombeur tombeur nom m s 2.12 1.01 1.94 0.74 +tombeurs tombeur nom m p 2.12 1.01 0.17 0.20 +tombeuse tombeur nom f s 2.12 1.01 0.01 0.07 +tombeuses tombeuse nom f p 0.01 0.00 0.01 0.00 +tombez tomber ver 407.82 441.42 4.88 1.96 imp:pre:2p;ind:pre:2p; +tombiez tomber ver 407.82 441.42 0.45 0.34 ind:imp:2p; +tombions tomber ver 407.82 441.42 0.17 0.54 ind:imp:1p; +tombola tombola nom f s 1.23 0.68 1.21 0.61 +tombolas tombola nom f p 1.23 0.68 0.02 0.07 +tombâmes tomber ver 407.82 441.42 0.01 0.68 ind:pas:1p; +tombons tomber ver 407.82 441.42 0.91 1.08 imp:pre:1p;ind:pre:1p; +tombât tomber ver 407.82 441.42 0.02 1.55 sub:imp:3s; +tombèrent tomber ver 407.82 441.42 0.27 6.08 ind:pas:3p; +tombé tomber ver m s 407.82 441.42 62.89 47.97 par:pas; +tombée tomber ver f s 407.82 441.42 30.49 25.20 par:pas; +tombées tomber ver f p 407.82 441.42 2.15 3.38 par:pas; +tombés tomber ver m p 407.82 441.42 9.63 12.70 par:pas; +tome tome nom m s 0.88 7.09 0.67 4.66 +tomes tome nom m p 0.88 7.09 0.21 2.43 +tomettes tomette nom f p 0.00 0.47 0.00 0.47 +tomme tomme nom f s 0.07 0.14 0.07 0.07 +tommes tomme nom f p 0.07 0.14 0.00 0.07 +tommette tommette nom f s 0.00 0.88 0.00 0.14 +tommettes tommette nom f p 0.00 0.88 0.00 0.74 +tommies tommies nom m p 0.12 0.07 0.12 0.07 +tommy tommy nom m s 0.11 0.00 0.11 0.00 +tomodensitomètre tomodensitomètre nom m s 0.03 0.00 0.03 0.00 +tomodensitométrie tomodensitométrie nom f s 0.04 0.00 0.04 0.00 +tomographe tomographe nom m s 0.03 0.00 0.03 0.00 +tomographie tomographie nom f s 0.56 0.00 0.56 0.00 +ton ton nom_sup m s 53.24 146.35 51.73 138.45 +tonal tonal adj m s 0.12 0.07 0.02 0.00 +tonale tonal adj f s 0.12 0.07 0.10 0.07 +tonalité tonalité nom f s 1.78 3.04 1.26 2.50 +tonalités tonalité nom f p 1.78 3.04 0.52 0.54 +tond tondre ver 2.77 4.26 0.48 0.20 ind:pre:3s; +tondais tondre ver 2.77 4.26 0.02 0.00 ind:imp:1s; +tondait tondre ver 2.77 4.26 0.05 0.34 ind:imp:3s; +tondant tondre ver 2.77 4.26 0.04 0.00 par:pre; +tonde tondre ver 2.77 4.26 0.03 0.07 sub:pre:1s;sub:pre:3s; +tondent tondre ver 2.77 4.26 0.05 0.14 ind:pre:3p; +tondes tondre ver 2.77 4.26 0.01 0.00 sub:pre:2s; +tondeur tondeur nom m s 1.76 2.30 0.04 0.61 +tondeuse tondeur nom f s 1.76 2.30 1.72 1.49 +tondeuses tondeuse nom f p 0.28 0.00 0.28 0.00 +tondit tondre ver 2.77 4.26 0.01 0.07 ind:pas:3s; +tondons tondre ver 2.77 4.26 0.02 0.00 imp:pre:1p;ind:pre:1p; +tondrai tondre ver 2.77 4.26 0.02 0.00 ind:fut:1s; +tondrais tondre ver 2.77 4.26 0.16 0.00 cnd:pre:1s; +tondre tondre ver 2.77 4.26 1.38 1.01 inf; +tonds tondre ver 2.77 4.26 0.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tondu tondu adj m s 0.74 3.65 0.51 1.89 +tondue tondre ver f s 2.77 4.26 0.06 0.54 par:pas; +tondues tondu adj f p 0.74 3.65 0.00 0.41 +tondus tondu adj m p 0.74 3.65 0.20 0.81 +toner toner nom m s 0.07 0.00 0.07 0.00 +tong tong nom f s 1.73 0.20 1.12 0.07 +tongs tong nom f p 1.73 0.20 0.61 0.14 +tonic tonic nom m s 2.04 0.20 1.93 0.20 +tonicardiaque tonicardiaque nom m s 0.14 0.00 0.14 0.00 +tonicité tonicité nom f s 0.07 0.00 0.07 0.00 +tonics tonic nom m p 2.04 0.20 0.11 0.00 +tonie tonie nom f s 0.02 0.00 0.02 0.00 +tonifiaient tonifier ver 0.06 0.34 0.00 0.07 ind:imp:3p; +tonifiant tonifiant adj m s 0.04 0.14 0.03 0.00 +tonifiante tonifiant adj f s 0.04 0.14 0.00 0.07 +tonifiants tonifiant adj m p 0.04 0.14 0.01 0.07 +tonifie tonifier ver 0.06 0.34 0.03 0.07 ind:pre:3s; +tonifient tonifier ver 0.06 0.34 0.01 0.07 ind:pre:3p; +tonifier tonifier ver 0.06 0.34 0.01 0.07 inf; +tonique tonique adj s 0.40 1.82 0.35 1.55 +toniques tonique adj p 0.40 1.82 0.05 0.27 +tonitrua tonitruer ver 0.01 1.89 0.00 0.68 ind:pas:3s; +tonitruaient tonitruer ver 0.01 1.89 0.00 0.07 ind:imp:3p; +tonitruais tonitruer ver 0.01 1.89 0.00 0.07 ind:imp:1s; +tonitruait tonitruer ver 0.01 1.89 0.00 0.27 ind:imp:3s; +tonitruance tonitruance nom f s 0.00 0.14 0.00 0.07 +tonitruances tonitruance nom f p 0.00 0.14 0.00 0.07 +tonitruant tonitruant adj m s 0.29 3.04 0.05 0.95 +tonitruante tonitruant adj f s 0.29 3.04 0.24 1.28 +tonitruantes tonitruant adj f p 0.29 3.04 0.00 0.34 +tonitruants tonitruant adj m p 0.29 3.04 0.00 0.47 +tonitrue tonitruer ver 0.01 1.89 0.01 0.14 imp:pre:2s;ind:pre:3s; +tonitruent tonitruer ver 0.01 1.89 0.00 0.07 ind:pre:3p; +tonitruer tonitruer ver 0.01 1.89 0.00 0.20 inf; +tonitrué tonitruer ver m s 0.01 1.89 0.00 0.07 par:pas; +tonka tonka nom f s 0.03 0.00 0.03 0.00 +tonkinois tonkinois nom m 0.02 0.20 0.01 0.07 +tonkinoise tonkinois nom f s 0.02 0.20 0.01 0.14 +tonna tonner ver 1.94 5.14 0.14 0.74 ind:pas:3s; +tonnage tonnage nom m s 0.07 1.55 0.07 1.42 +tonnages tonnage nom m p 0.07 1.55 0.00 0.14 +tonnaient tonner ver 1.94 5.14 0.01 0.41 ind:imp:3p; +tonnais tonner ver 1.94 5.14 0.01 0.00 ind:imp:2s; +tonnait tonner ver 1.94 5.14 0.01 0.68 ind:imp:3s; +tonnant tonnant adj m s 0.14 1.08 0.14 0.14 +tonnante tonnant adj f s 0.14 1.08 0.00 0.74 +tonnantes tonnant adj f p 0.14 1.08 0.00 0.07 +tonnants tonnant adj m p 0.14 1.08 0.00 0.14 +tonne tonne nom f s 16.29 14.19 4.48 2.64 +tonneau tonneau nom m s 4.37 12.16 2.94 6.89 +tonneaux tonneau nom m p 4.37 12.16 1.43 5.27 +tonnelet tonnelet nom m s 0.43 1.55 0.40 1.15 +tonnelets tonnelet nom m p 0.43 1.55 0.03 0.41 +tonnelier tonnelier nom m s 0.06 0.61 0.06 0.47 +tonneliers tonnelier nom m p 0.06 0.61 0.00 0.14 +tonnelle tonnelle nom f s 0.62 3.51 0.61 2.84 +tonnellerie tonnellerie nom f s 0.07 0.88 0.07 0.81 +tonnelleries tonnellerie nom f p 0.07 0.88 0.00 0.07 +tonnelles tonnelle nom f p 0.62 3.51 0.01 0.68 +tonnent tonner ver 1.94 5.14 0.02 0.74 ind:pre:3p; +tonner tonner ver 1.94 5.14 0.12 1.28 inf; +tonnerait tonner ver 1.94 5.14 0.00 0.07 cnd:pre:3s; +tonnerre tonnerre nom m s 11.40 19.39 10.90 18.65 +tonnerres tonnerre nom m p 11.40 19.39 0.50 0.74 +tonnes tonne nom f p 16.29 14.19 11.80 11.55 +tonnez tonner ver 1.94 5.14 0.00 0.07 imp:pre:2p; +tonné tonner ver m s 1.94 5.14 0.20 0.20 par:pas; +tons ton nom_sup m p 53.24 146.35 1.51 7.91 +tonsure tonsure nom f s 0.85 0.88 0.85 0.81 +tonsures tonsure nom f p 0.85 0.88 0.00 0.07 +tonsuré tonsurer ver m s 0.00 0.07 0.00 0.07 par:pas; +tonte tonte nom f s 0.17 0.74 0.17 0.74 +tonton tonton nom m s 14.02 12.43 13.94 11.89 +tontons tonton nom m p 14.02 12.43 0.08 0.54 +tonus tonus nom m 0.34 0.61 0.34 0.61 +too_much too_much adj m s 0.19 0.47 0.19 0.47 +top_modèle top_modèle nom f s 0.22 0.00 0.21 0.00 +top_modèle top_modèle nom f p 0.22 0.00 0.01 0.00 +top_model top_model nom f p 0.12 0.07 0.12 0.07 +top top nom m s 19.35 2.09 19.18 2.09 +topa toper ver 2.59 0.68 0.00 0.07 ind:pas:3s; +topaze topaze nom f s 0.37 0.88 0.36 0.81 +topazes topaze nom f p 0.37 0.88 0.01 0.07 +tope toper ver 2.59 0.68 2.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +toper toper ver 2.59 0.68 0.04 0.07 inf; +topette topette nom f s 0.00 0.20 0.00 0.14 +topettes topette nom f p 0.00 0.20 0.00 0.07 +topez toper ver 2.59 0.68 0.18 0.07 imp:pre:2p; +tophus tophus nom m 0.00 0.07 0.00 0.07 +topinambour topinambour nom m s 0.16 1.35 0.02 0.41 +topinambours topinambour nom m p 0.16 1.35 0.14 0.95 +topions toper ver 2.59 0.68 0.01 0.00 ind:imp:1p; +topique topique adj m s 0.03 0.07 0.03 0.07 +topless topless adj f 0.26 0.00 0.26 0.00 +topo topo nom m s 3.17 2.43 3.16 2.36 +topographie topographie nom f s 0.33 1.35 0.33 1.35 +topographique topographique adj s 0.23 0.54 0.17 0.34 +topographiquement topographiquement adv 0.00 0.14 0.00 0.14 +topographiques topographique adj p 0.23 0.54 0.06 0.20 +topologie topologie nom f s 0.04 0.07 0.04 0.07 +topologique topologique adj f s 0.01 0.00 0.01 0.00 +topons toper ver 2.59 0.68 0.03 0.14 imp:pre:1p; +toponymie toponymie nom f s 0.00 0.07 0.00 0.07 +topos topo nom m p 3.17 2.43 0.01 0.07 +tops top nom m p 19.35 2.09 0.17 0.00 +topé toper ver m s 2.59 0.68 0.28 0.00 par:pas; +topés toper ver m p 2.59 0.68 0.01 0.00 par:pas; +toqua toquer ver 1.33 2.03 0.10 0.34 ind:pas:3s; +toquade toquade nom f s 0.13 0.41 0.13 0.14 +toquades toquade nom f p 0.13 0.41 0.00 0.27 +toquais toquer ver 1.33 2.03 0.00 0.07 ind:imp:1s; +toquait toquer ver 1.33 2.03 0.00 0.14 ind:imp:3s; +toquant toquer ver 1.33 2.03 0.00 0.07 par:pre; +toquante toquante nom f s 0.03 0.27 0.01 0.20 +toquantes toquante nom f p 0.03 0.27 0.02 0.07 +toquard toquard nom m s 0.11 0.41 0.07 0.27 +toquarde toquard adj f s 0.13 0.41 0.10 0.07 +toquardes toquard adj f p 0.13 0.41 0.00 0.07 +toquards toquard nom m p 0.11 0.41 0.04 0.14 +toque toque nom f s 0.82 7.57 0.65 6.55 +toquer toquer ver 1.33 2.03 0.07 0.41 inf; +toques toque nom f p 0.82 7.57 0.17 1.01 +toquez toquer ver 1.33 2.03 0.01 0.00 imp:pre:2p; +toqué toquer ver m s 1.33 2.03 0.72 0.20 par:pas; +toquée toqué adj f s 0.89 0.34 0.36 0.07 +toquées toquer ver f p 1.33 2.03 0.10 0.07 par:pas; +toqués toqué adj m p 0.89 0.34 0.11 0.00 +torana torana nom m s 0.01 0.00 0.01 0.00 +torcha torcher ver 3.20 5.54 0.00 0.34 ind:pas:3s; +torchaient torcher ver 3.20 5.54 0.00 0.07 ind:imp:3p; +torchais torcher ver 3.20 5.54 0.01 0.07 ind:imp:1s;ind:imp:2s; +torchait torcher ver 3.20 5.54 0.03 0.20 ind:imp:3s; +torchant torcher ver 3.20 5.54 0.02 0.20 par:pre; +torchassions torcher ver 3.20 5.54 0.00 0.07 sub:imp:1p; +torche_cul torche_cul nom m s 0.06 0.00 0.06 0.00 +torche torche nom f s 8.09 11.96 6.71 7.16 +torchent torcher ver 3.20 5.54 0.01 0.27 ind:pre:3p; +torcher torcher ver 3.20 5.54 1.23 1.89 inf; +torcherais torcher ver 3.20 5.54 0.04 0.07 cnd:pre:1s; +torcheras torcher ver 3.20 5.54 0.01 0.07 ind:fut:2s; +torches torche nom f p 8.09 11.96 1.38 4.80 +torchez torcher ver 3.20 5.54 0.03 0.00 imp:pre:2p;ind:pre:2p; +torchis torchis nom m 0.03 2.23 0.03 2.23 +torchon torchon nom m s 3.48 10.14 2.95 7.23 +torchonnait torchonner ver 0.00 0.68 0.00 0.34 ind:imp:3s; +torchonne torchonner ver 0.00 0.68 0.00 0.14 ind:pre:3s; +torchonner torchonner ver 0.00 0.68 0.00 0.20 inf; +torchons torchon nom m p 3.48 10.14 0.54 2.91 +torchère torchère nom f s 0.01 1.42 0.00 0.47 +torchères torchère nom f p 0.01 1.42 0.01 0.95 +torché torcher ver m s 3.20 5.54 0.38 0.41 par:pas; +torchée torcher ver f s 3.20 5.54 0.01 0.14 par:pas; +torchées torchée nom f p 0.00 0.07 0.00 0.07 +torchés torcher ver m p 3.20 5.54 0.16 0.07 par:pas; +tord_boyaux tord_boyaux nom m 0.27 0.47 0.27 0.47 +tord_nez tord_nez nom m s 0.00 0.14 0.00 0.14 +tord tordre ver 12.24 38.38 2.08 4.80 ind:pre:3s; +tordît tordre ver 12.24 38.38 0.00 0.07 sub:imp:3s; +tordage tordage nom m s 0.07 0.00 0.07 0.00 +tordaient tordre ver 12.24 38.38 0.17 1.89 ind:imp:3p; +tordais tordre ver 12.24 38.38 0.17 0.34 ind:imp:1s;ind:imp:2s; +tordait tordre ver 12.24 38.38 0.14 6.89 ind:imp:3s; +tordant tordant adj m s 1.65 0.88 1.25 0.61 +tordante tordant adj f s 1.65 0.88 0.33 0.00 +tordantes tordant adj f p 1.65 0.88 0.02 0.07 +tordants tordant adj m p 1.65 0.88 0.05 0.20 +torde tordre ver 12.24 38.38 0.26 0.14 sub:pre:1s;sub:pre:3s; +tordent tordre ver 12.24 38.38 0.36 1.28 ind:pre:3p; +tordeur tordeur nom m s 0.13 0.00 0.12 0.00 +tordeurs tordeur nom m p 0.13 0.00 0.01 0.00 +tordez tordre ver 12.24 38.38 0.10 0.14 imp:pre:2p;ind:pre:2p; +tordiez tordre ver 12.24 38.38 0.01 0.00 ind:imp:2p; +tordion tordion nom m s 0.00 0.14 0.00 0.07 +tordions tordion nom m p 0.00 0.14 0.00 0.07 +tordirent tordre ver 12.24 38.38 0.01 0.34 ind:pas:3p; +tordis tordre ver 12.24 38.38 0.00 0.14 ind:pas:1s; +tordit tordre ver 12.24 38.38 0.01 2.64 ind:pas:3s; +tordra tordre ver 12.24 38.38 0.01 0.07 ind:fut:3s; +tordrai tordre ver 12.24 38.38 0.18 0.07 ind:fut:1s; +tordraient tordre ver 12.24 38.38 0.00 0.07 cnd:pre:3p; +tordrais tordre ver 12.24 38.38 0.20 0.07 cnd:pre:1s;cnd:pre:2s; +tordrait tordre ver 12.24 38.38 0.06 0.20 cnd:pre:3s; +tordras tordre ver 12.24 38.38 0.02 0.00 ind:fut:2s; +tordre tordre ver 12.24 38.38 2.77 5.27 inf; +tordrez tordre ver 12.24 38.38 0.01 0.07 ind:fut:2p; +tordront tordre ver 12.24 38.38 0.01 0.14 ind:fut:3p; +tords tordre ver 12.24 38.38 1.17 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tordu tordu adj m s 7.76 14.80 4.10 4.46 +tordue tordu adj f s 7.76 14.80 1.75 4.12 +tordues tordu adj f p 7.76 14.80 0.66 2.30 +tordus tordu adj m p 7.76 14.80 1.25 3.92 +tore tore nom m s 0.14 0.07 0.04 0.00 +torera torera nom f s 0.20 0.00 0.20 0.00 +torero torero nom m s 1.17 2.43 0.94 1.35 +toreros torero nom m p 1.17 2.43 0.23 1.08 +tores tore nom m p 0.14 0.07 0.10 0.07 +torgnole torgnole nom f s 0.31 1.08 0.14 0.47 +torgnoles torgnole nom f p 0.31 1.08 0.17 0.61 +tories tories nom m p 0.12 0.00 0.12 0.00 +toril toril nom m s 0.00 0.41 0.00 0.41 +tornade tornade nom f s 2.66 4.12 2.13 3.11 +tornades tornade nom f p 2.66 4.12 0.52 1.01 +toro toro nom m s 0.91 0.74 0.91 0.74 +torons toron nom m p 0.00 0.07 0.00 0.07 +torpeur torpeur nom f s 0.78 13.38 0.78 13.24 +torpeurs torpeur nom f p 0.78 13.38 0.00 0.14 +torpide torpide adj f s 0.00 0.27 0.00 0.27 +torpillage torpillage nom m s 0.13 0.20 0.13 0.14 +torpillages torpillage nom m p 0.13 0.20 0.00 0.07 +torpillaient torpiller ver 1.21 1.08 0.00 0.07 ind:imp:3p; +torpillait torpiller ver 1.21 1.08 0.00 0.07 ind:imp:3s; +torpille torpille nom f s 5.28 1.62 2.42 0.61 +torpiller torpiller ver 1.21 1.08 0.28 0.34 inf; +torpillera torpiller ver 1.21 1.08 0.01 0.00 ind:fut:3s; +torpilles torpille nom f p 5.28 1.62 2.86 1.01 +torpilleur torpilleur nom m s 0.39 1.62 0.28 0.68 +torpilleurs torpilleur nom m p 0.39 1.62 0.11 0.95 +torpillé torpiller ver m s 1.21 1.08 0.32 0.34 par:pas; +torpillée torpiller ver f s 1.21 1.08 0.03 0.07 par:pas; +torpillés torpiller ver m p 1.21 1.08 0.03 0.00 par:pas; +torpédo torpédo nom f s 0.03 2.91 0.03 2.70 +torpédos torpédo nom f p 0.03 2.91 0.00 0.20 +torque torque nom m s 0.05 0.00 0.05 0.00 +torrent torrent nom m s 2.46 16.35 1.60 11.96 +torrentiel torrentiel adj m s 0.23 1.01 0.02 0.14 +torrentielle torrentiel adj f s 0.23 1.01 0.20 0.27 +torrentielles torrentiel adj f p 0.23 1.01 0.01 0.47 +torrentiels torrentiel adj m p 0.23 1.01 0.00 0.14 +torrents torrent nom m p 2.46 16.35 0.86 4.39 +torrentueuses torrentueux adj f p 0.00 0.20 0.00 0.14 +torrentueux torrentueux adj m s 0.00 0.20 0.00 0.07 +torride torride adj s 1.96 4.32 1.70 3.18 +torrides torride adj p 1.96 4.32 0.26 1.15 +torréfaction torréfaction nom f s 0.02 0.07 0.02 0.07 +torréfiait torréfier ver 0.01 0.41 0.00 0.14 ind:imp:3s; +torréfiant torréfier ver 0.01 0.41 0.00 0.07 par:pre; +torréfie torréfier ver 0.01 0.41 0.00 0.07 ind:pre:3s; +torréfient torréfier ver 0.01 0.41 0.00 0.07 ind:pre:3p; +torréfié torréfié adj m s 0.12 0.47 0.12 0.14 +torréfiée torréfié adj f s 0.12 0.47 0.00 0.27 +torréfiées torréfié adj f p 0.12 0.47 0.00 0.07 +tors tors adj m s 0.67 4.73 0.27 0.34 +torsada torsader ver 0.12 2.57 0.00 0.07 ind:pas:3s; +torsade torsade nom f s 0.17 2.91 0.00 1.01 +torsades torsade nom f p 0.17 2.91 0.17 1.89 +torsadé torsader ver m s 0.12 2.57 0.00 0.54 par:pas; +torsadée torsader ver f s 0.12 2.57 0.03 0.61 par:pas; +torsadées torsader ver f p 0.12 2.57 0.01 0.88 par:pas; +torsadés torsader ver m p 0.12 2.57 0.08 0.47 par:pas; +torse torse nom m s 3.82 21.08 3.75 19.39 +torses torse nom m p 3.82 21.08 0.07 1.69 +torsion torsion nom f s 0.37 3.11 0.36 2.23 +torsions torsion nom f p 0.37 3.11 0.01 0.88 +tort tort nom m s 67.97 55.00 64.89 51.55 +tortellini tortellini nom m s 0.34 0.00 0.23 0.00 +tortellinis tortellini nom m p 0.34 0.00 0.11 0.00 +torticolis torticolis nom m 0.92 0.74 0.92 0.74 +tortil tortil nom m s 0.00 0.14 0.00 0.07 +tortilla tortilla nom f s 1.73 0.41 1.40 0.07 +tortillaient tortiller ver 1.96 9.66 0.02 0.20 ind:imp:3p; +tortillais tortiller ver 1.96 9.66 0.02 0.20 ind:imp:1s; +tortillait tortiller ver 1.96 9.66 0.14 2.09 ind:imp:3s; +tortillant tortiller ver 1.96 9.66 0.06 1.49 par:pre; +tortillard tortillard nom m s 0.16 1.69 0.16 1.62 +tortillards tortillard nom m p 0.16 1.69 0.00 0.07 +tortillas tortilla nom f p 1.73 0.41 0.34 0.34 +tortille tortiller ver 1.96 9.66 0.72 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tortillement tortillement nom m s 0.03 0.20 0.02 0.00 +tortillements tortillement nom m p 0.03 0.20 0.01 0.20 +tortillent tortiller ver 1.96 9.66 0.06 0.20 ind:pre:3p; +tortiller tortiller ver 1.96 9.66 0.76 1.82 inf; +tortillez tortiller ver 1.96 9.66 0.12 0.00 imp:pre:2p;ind:pre:2p; +tortillon tortillon nom m s 0.06 1.28 0.06 0.81 +tortillons tortillon nom m p 0.06 1.28 0.00 0.47 +tortillé tortiller ver m s 1.96 9.66 0.03 0.41 par:pas; +tortillée tortiller ver f s 1.96 9.66 0.02 0.34 par:pas; +tortillées tortiller ver f p 1.96 9.66 0.00 0.14 par:pas; +tortillés tortiller ver m p 1.96 9.66 0.00 0.27 par:pas; +tortils tortil nom m p 0.00 0.14 0.00 0.07 +tortionnaire tortionnaire nom s 0.50 2.43 0.24 1.28 +tortionnaires tortionnaire nom p 0.50 2.43 0.26 1.15 +tortora tortorer ver 0.00 0.81 0.00 0.14 ind:pas:3s; +tortorait tortorer ver 0.00 0.81 0.00 0.14 ind:imp:3s; +tortorant tortorer ver 0.00 0.81 0.00 0.07 par:pre; +tortore tortore nom f s 0.00 1.82 0.00 1.82 +tortorent tortorer ver 0.00 0.81 0.00 0.07 ind:pre:3p; +tortorer tortorer ver 0.00 0.81 0.00 0.27 inf; +tortoré tortorer ver m s 0.00 0.81 0.00 0.14 par:pas; +torts tort nom m p 67.97 55.00 3.08 3.45 +tortu tortu adj m s 0.69 0.68 0.00 0.07 +tortue tortue nom f s 5.34 6.22 4.00 4.66 +tortues tortue nom f p 5.34 6.22 1.33 1.55 +tortueuse tortueux adj f s 0.86 3.11 0.39 0.68 +tortueuses tortueux adj f p 0.86 3.11 0.04 0.95 +tortueux tortueux adj m 0.86 3.11 0.44 1.49 +tortura torturer ver 24.63 15.41 0.03 0.07 ind:pas:3s; +torturai torturer ver 24.63 15.41 0.01 0.07 ind:pas:1s; +torturaient torturer ver 24.63 15.41 0.25 0.61 ind:imp:3p; +torturais torturer ver 24.63 15.41 0.07 0.14 ind:imp:1s;ind:imp:2s; +torturait torturer ver 24.63 15.41 0.59 2.36 ind:imp:3s; +torturant torturer ver 24.63 15.41 0.13 0.54 par:pre; +torturante torturant adj f s 0.12 1.28 0.10 0.41 +torturantes torturant adj f p 0.12 1.28 0.00 0.20 +torturants torturant adj m p 0.12 1.28 0.01 0.14 +torture torture nom f s 12.94 17.03 10.13 11.96 +torturent torturer ver 24.63 15.41 0.96 0.68 ind:pre:3p;sub:pre:3p; +torturer torturer ver 24.63 15.41 8.28 3.78 inf;;inf;;inf;; +torturera torturer ver 24.63 15.41 0.10 0.07 ind:fut:3s; +torturerai torturer ver 24.63 15.41 0.06 0.00 ind:fut:1s; +tortureraient torturer ver 24.63 15.41 0.01 0.00 cnd:pre:3p; +torturerez torturer ver 24.63 15.41 0.00 0.07 ind:fut:2p; +tortureront torturer ver 24.63 15.41 0.05 0.00 ind:fut:3p; +tortures torture nom f p 12.94 17.03 2.81 5.07 +tortureurs tortureur nom m p 0.00 0.07 0.00 0.07 +torturez torturer ver 24.63 15.41 1.24 0.20 imp:pre:2p;ind:pre:2p; +torturions torturer ver 24.63 15.41 0.00 0.07 ind:imp:1p; +torturons torturer ver 24.63 15.41 0.30 0.00 imp:pre:1p;ind:pre:1p; +torturèrent torturer ver 24.63 15.41 0.00 0.07 ind:pas:3p; +torturé torturer ver m s 24.63 15.41 5.56 3.11 par:pas; +torturée torturer ver f s 24.63 15.41 1.27 1.01 par:pas; +torturées torturé adj f p 2.44 4.26 0.33 0.41 +torturés torturé ver m p 0.92 0.00 0.92 0.00 par:pas; +tortus tortu adj m p 0.69 0.68 0.00 0.07 +toréador_vedette toréador_vedette nom m s 0.00 0.07 0.00 0.07 +toréador toréador nom m s 0.31 0.61 0.29 0.47 +toréadors toréador nom m p 0.31 0.61 0.02 0.14 +torée toréer ver 0.43 0.07 0.01 0.00 ind:pre:3s; +toréer toréer ver 0.43 0.07 0.42 0.07 inf; +torve torve adj s 0.12 2.36 0.02 1.96 +torves torve adj p 0.12 2.36 0.10 0.41 +tos to nom m p 55.51 3.78 0.02 0.00 +toscan toscan adj m s 0.46 1.22 0.21 0.41 +toscane toscan adj f s 0.46 1.22 0.05 0.68 +toscanes toscan adj f p 0.46 1.22 0.20 0.07 +toscans toscan nom m p 0.04 0.20 0.03 0.00 +toss toss nom m 0.02 0.07 0.02 0.07 +tossé tosser ver m s 0.00 0.07 0.00 0.07 par:pas; +tâta tâter ver 3.95 21.55 0.00 2.91 ind:pas:3s; +tâtai tâter ver 3.95 21.55 0.00 0.34 ind:pas:1s; +tâtaient tâter ver 3.95 21.55 0.00 0.68 ind:imp:3p; +tâtais tâter ver 3.95 21.55 0.01 0.54 ind:imp:1s; +tâtait tâter ver 3.95 21.55 0.03 2.03 ind:imp:3s; +total total adj m s 24.59 41.62 9.29 16.35 +totale total adj f s 24.59 41.62 15.26 24.86 +totalement totalement adv 28.62 22.16 28.62 22.16 +totales total adj f p 24.59 41.62 0.02 0.41 +totalisait totaliser ver 0.13 0.95 0.02 0.20 ind:imp:3s; +totalisant totalisant adj m s 0.01 0.27 0.01 0.27 +totalisateur totalisateur nom m s 0.01 0.00 0.01 0.00 +totalisation totalisation nom f s 0.00 0.07 0.00 0.07 +totalise totaliser ver 0.13 0.95 0.03 0.20 ind:pre:1s;ind:pre:3s; +totalisent totaliser ver 0.13 0.95 0.03 0.07 ind:pre:3p; +totaliser totaliser ver 0.13 0.95 0.03 0.20 inf; +totalisé totaliser ver m s 0.13 0.95 0.01 0.07 par:pas; +totalitaire totalitaire adj s 0.09 1.42 0.05 1.08 +totalitaires totalitaire adj p 0.09 1.42 0.04 0.34 +totalitarisme totalitarisme nom m s 0.03 0.95 0.03 0.88 +totalitarismes totalitarisme nom m p 0.03 0.95 0.00 0.07 +totalité totalité nom f s 3.11 9.39 3.11 9.26 +totalités totalité nom f p 3.11 9.39 0.00 0.14 +tâtant tâter ver 3.95 21.55 0.04 2.03 par:pre; +totaux total nom m p 3.86 9.66 0.20 0.14 +tâte tâter ver 3.95 21.55 1.02 4.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +totem totem nom m s 1.42 1.35 1.27 0.81 +totems totem nom m p 1.42 1.35 0.15 0.54 +tâtent tâter ver 3.95 21.55 0.04 0.20 ind:pre:3p; +tâter tâter ver 3.95 21.55 1.94 5.74 inf; +tâtera tâter ver 3.95 21.55 0.01 0.07 ind:fut:3s; +tâterai tâter ver 3.95 21.55 0.06 0.00 ind:fut:1s; +tâteras tâter ver 3.95 21.55 0.01 0.00 ind:fut:2s; +tâterez tâter ver 3.95 21.55 0.05 0.00 ind:fut:2p; +tâtez tâter ver 3.95 21.55 0.41 0.14 imp:pre:2p;ind:pre:2p; +tâtiez tâter ver 3.95 21.55 0.00 0.14 ind:imp:2p; +toto toto nom m s 0.30 0.20 0.26 0.00 +totoche totoche nom s 0.00 0.41 0.00 0.27 +totoches totoche nom p 0.00 0.41 0.00 0.14 +toton toton nom m s 0.15 0.41 0.14 0.27 +tâtonna tâtonner ver 0.70 10.54 0.00 1.28 ind:pas:3s; +tâtonnai tâtonner ver 0.70 10.54 0.00 0.14 ind:pas:1s; +tâtonnaient tâtonner ver 0.70 10.54 0.00 0.27 ind:imp:3p; +tâtonnais tâtonner ver 0.70 10.54 0.01 0.07 ind:imp:1s; +tâtonnait tâtonner ver 0.70 10.54 0.10 0.81 ind:imp:3s; +tâtonnant tâtonner ver 0.70 10.54 0.00 3.38 par:pre; +tâtonnante tâtonnant adj f s 0.00 1.28 0.00 0.41 +tâtonnantes tâtonnant adj f p 0.00 1.28 0.00 0.41 +tâtonnants tâtonnant adj m p 0.00 1.28 0.00 0.07 +tâtonne tâtonner ver 0.70 10.54 0.47 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tâtonnement tâtonnement nom m s 0.12 2.03 0.00 0.47 +tâtonnements tâtonnement nom m p 0.12 2.03 0.12 1.55 +tâtonnent tâtonner ver 0.70 10.54 0.01 0.34 ind:pre:3p; +tâtonner tâtonner ver 0.70 10.54 0.08 0.81 inf; +tâtonnera tâtonner ver 0.70 10.54 0.01 0.07 ind:fut:3s; +tâtonnerais tâtonner ver 0.70 10.54 0.00 0.07 cnd:pre:1s; +tâtonnions tâtonner ver 0.70 10.54 0.00 0.20 ind:imp:1p; +tâtonnâmes tâtonner ver 0.70 10.54 0.00 0.07 ind:pas:1p; +tâtonnât tâtonner ver 0.70 10.54 0.00 0.07 sub:imp:3s; +tâtonnèrent tâtonner ver 0.70 10.54 0.00 0.14 ind:pas:3p; +tâtonné tâtonner ver m s 0.70 10.54 0.01 0.41 par:pas; +tâtonnée tâtonner ver f s 0.70 10.54 0.00 0.07 par:pas; +tâtons tâter ver 3.95 21.55 0.03 0.07 imp:pre:1p; +totons toton nom m p 0.15 0.41 0.01 0.14 +totos toto nom m p 0.30 0.20 0.04 0.20 +tâtèrent tâter ver 3.95 21.55 0.00 0.14 ind:pas:3p; +tâté tâter ver m s 3.95 21.55 0.29 2.03 par:pas; +totémique totémique adj m s 0.01 0.27 0.00 0.14 +totémiques totémique adj m p 0.01 0.27 0.01 0.14 +totémisme totémisme nom m s 0.01 0.00 0.01 0.00 +tâtés tâter ver m p 3.95 21.55 0.01 0.07 par:pas; +touareg touareg adj m s 0.06 0.00 0.03 0.00 +touaregs touareg adj m p 0.06 0.00 0.03 0.00 +toubab toubab nom m s 0.30 0.61 0.10 0.54 +toubabs toubab nom m p 0.30 0.61 0.20 0.07 +toubib toubib nom m s 6.62 13.72 5.71 11.35 +toubibs toubib nom m p 6.62 13.72 0.91 2.36 +toucan toucan nom m s 0.03 0.14 0.03 0.14 +toucha toucher ver 270.26 190.27 0.32 10.95 ind:pas:3s; +touchai toucher ver 270.26 190.27 0.01 1.82 ind:pas:1s; +touchaient toucher ver 270.26 190.27 0.44 6.15 ind:imp:3p; +touchais toucher ver 270.26 190.27 1.87 3.04 ind:imp:1s;ind:imp:2s; +touchait toucher ver 270.26 190.27 2.99 18.58 ind:imp:3s; +touchant touchant adj m s 7.42 9.73 6.02 5.34 +touchante touchant adj f s 7.42 9.73 1.04 2.70 +touchantes touchant adj f p 7.42 9.73 0.03 1.01 +touchants touchant adj m p 7.42 9.73 0.33 0.68 +touche_pipi touche_pipi nom m 0.35 0.61 0.35 0.61 +touche_touche touche_touche nom f s 0.01 0.00 0.01 0.00 +touche toucher ver 270.26 190.27 91.91 29.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +touchent toucher ver 270.26 190.27 4.96 6.69 ind:pre:3p;sub:pre:3p; +toucher toucher ver 270.26 190.27 49.41 56.15 inf;;inf;;inf;; +touchera toucher ver 270.26 190.27 4.35 1.35 ind:fut:3s; +toucherai toucher ver 270.26 190.27 2.73 0.61 ind:fut:1s; +toucheraient toucher ver 270.26 190.27 0.08 0.27 cnd:pre:3p; +toucherais toucher ver 270.26 190.27 1.12 0.47 cnd:pre:1s;cnd:pre:2s; +toucherait toucher ver 270.26 190.27 1.05 1.62 cnd:pre:3s; +toucheras toucher ver 270.26 190.27 1.27 0.14 ind:fut:2s; +toucherez toucher ver 270.26 190.27 0.98 0.41 ind:fut:2p; +toucherions toucher ver 270.26 190.27 0.02 0.07 cnd:pre:1p; +toucherons toucher ver 270.26 190.27 0.06 0.14 ind:fut:1p; +toucheront toucher ver 270.26 190.27 0.56 0.20 ind:fut:3p; +touchers toucher nom m p 7.41 10.14 0.00 0.20 +touches toucher ver 270.26 190.27 10.35 1.55 ind:pre:2s; +touchette touchette nom f s 0.01 0.00 0.01 0.00 +touchez toucher ver 270.26 190.27 26.76 2.84 imp:pre:2p;ind:pre:2p; +touchiez toucher ver 270.26 190.27 0.27 0.07 ind:imp:2p; +touchions toucher ver 270.26 190.27 0.13 1.08 ind:imp:1p; +touchons toucher ver 270.26 190.27 0.66 0.81 imp:pre:1p;ind:pre:1p; +touchât toucher ver 270.26 190.27 0.01 0.74 sub:imp:3s; +touchotter touchotter nom m s 0.00 0.07 0.00 0.07 +touchèrent toucher ver 270.26 190.27 0.26 1.22 ind:pas:3p; +touché toucher ver m s 270.26 190.27 50.97 27.77 par:pas; +touchée toucher ver f s 270.26 190.27 11.29 4.93 par:pas; +touchées toucher ver f p 270.26 190.27 0.74 0.68 par:pas; +touchés toucher ver m p 270.26 190.27 3.34 2.36 par:pas; +toue toue nom f s 0.02 0.68 0.02 0.61 +touer touer ver 0.02 0.14 0.02 0.00 inf; +toues toue nom f p 0.02 0.68 0.00 0.07 +touffe touffe nom f s 2.20 16.69 1.60 6.69 +touffes touffe nom f p 2.20 16.69 0.60 10.00 +touffeur touffeur nom f s 0.00 1.35 0.00 1.28 +touffeurs touffeur nom f p 0.00 1.35 0.00 0.07 +touffu touffu adj m s 1.01 4.80 0.42 1.49 +touffue touffu adj f s 1.01 4.80 0.14 0.88 +touffues touffu adj f p 1.01 4.80 0.01 0.34 +touffus touffu adj m p 1.01 4.80 0.43 2.09 +touillais touiller ver 0.29 2.30 0.00 0.07 ind:imp:1s; +touillait touiller ver 0.29 2.30 0.14 0.27 ind:imp:3s; +touillant touiller ver 0.29 2.30 0.00 0.47 par:pre; +touille touiller ver 0.29 2.30 0.01 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +touillent touiller ver 0.29 2.30 0.00 0.14 ind:pre:3p; +touiller touiller ver 0.29 2.30 0.10 0.54 inf; +touillé touillé adj m s 0.10 0.20 0.10 0.07 +touillée touillé adj f s 0.10 0.20 0.00 0.07 +touillées touiller ver f p 0.29 2.30 0.00 0.07 par:pas; +touillés touiller ver m p 0.29 2.30 0.01 0.07 par:pas; +toujours toujours adv_sup 1072.36 1093.78 1072.36 1093.78 +toulonnais toulonnais nom m 0.00 0.41 0.00 0.41 +touloupes touloupe nom f p 0.00 0.14 0.00 0.14 +toulousain toulousain nom m s 0.00 2.57 0.00 1.01 +toulousaine toulousain adj f s 0.00 1.49 0.00 0.14 +toulousaines toulousain adj f p 0.00 1.49 0.00 0.14 +toulousains toulousain nom m p 0.00 2.57 0.00 1.49 +toundra toundra nom f s 0.29 0.47 0.19 0.41 +toundras toundra nom f p 0.29 0.47 0.10 0.07 +toungouse toungouse adj f s 0.00 0.14 0.00 0.14 +toupet toupet nom m s 2.23 2.30 2.08 2.23 +toupets toupet nom m p 2.23 2.30 0.15 0.07 +toupie toupie nom f s 1.79 3.92 1.50 3.04 +toupies toupie nom f p 1.79 3.92 0.29 0.88 +toupilleur toupilleur nom m s 0.00 0.07 0.00 0.07 +toupinant toupiner ver 0.00 0.14 0.00 0.14 par:pre; +touque touque nom f s 0.02 0.14 0.02 0.07 +touques touque nom f p 0.02 0.14 0.00 0.07 +tour tour nom s 193.82 308.72 175.56 280.27 +tourangeau tourangeau adj m s 0.00 0.41 0.00 0.20 +tourangeaux tourangeau adj m p 0.00 0.41 0.00 0.20 +tourangelle tourangelle adj f s 0.00 0.14 0.00 0.07 +tourangelles tourangelle adj f p 0.00 0.14 0.00 0.07 +tourbe tourbe nom f s 0.44 2.03 0.44 1.96 +tourbes tourbe nom f p 0.44 2.03 0.00 0.07 +tourbeuse tourbeux adj f s 0.00 0.20 0.00 0.14 +tourbeux tourbeux adj m p 0.00 0.20 0.00 0.07 +tourbiers tourbier nom m p 0.06 0.95 0.00 0.07 +tourbillon tourbillon nom m s 2.88 17.77 2.34 11.01 +tourbillonna tourbillonner ver 1.16 5.88 0.00 0.20 ind:pas:3s; +tourbillonnaient tourbillonner ver 1.16 5.88 0.04 0.74 ind:imp:3p; +tourbillonnaire tourbillonnaire adj f s 0.00 0.14 0.00 0.14 +tourbillonnais tourbillonner ver 1.16 5.88 0.00 0.07 ind:imp:1s; +tourbillonnait tourbillonner ver 1.16 5.88 0.02 1.08 ind:imp:3s; +tourbillonnant tourbillonner ver 1.16 5.88 0.01 1.15 par:pre; +tourbillonnante tourbillonnant adj f s 0.06 1.62 0.03 0.54 +tourbillonnantes tourbillonnant adj f p 0.06 1.62 0.03 0.34 +tourbillonnants tourbillonnant adj m p 0.06 1.62 0.00 0.27 +tourbillonne tourbillonner ver 1.16 5.88 0.26 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tourbillonnement tourbillonnement nom m s 0.00 0.20 0.00 0.14 +tourbillonnements tourbillonnement nom m p 0.00 0.20 0.00 0.07 +tourbillonnent tourbillonner ver 1.16 5.88 0.68 0.81 ind:pre:3p; +tourbillonner tourbillonner ver 1.16 5.88 0.12 0.74 inf; +tourbillonnez tourbillonner ver 1.16 5.88 0.02 0.00 imp:pre:2p; +tourbillonnèrent tourbillonner ver 1.16 5.88 0.00 0.07 ind:pas:3p; +tourbillonné tourbillonner ver m s 1.16 5.88 0.02 0.00 par:pas; +tourbillons tourbillon nom m p 2.88 17.77 0.54 6.76 +tourbière tourbier nom f s 0.06 0.95 0.06 0.20 +tourbières tourbière nom f p 0.04 0.00 0.04 0.00 +tourde tourd nom f s 0.10 0.00 0.10 0.00 +tourelle tourelle nom f s 1.71 3.92 1.53 1.69 +tourelles tourelle nom f p 1.71 3.92 0.18 2.23 +touret touret nom m s 0.00 0.07 0.00 0.07 +tourillon tourillon nom m s 0.00 0.07 0.00 0.07 +tourisme tourisme nom m s 2.98 4.66 2.98 4.66 +touriste touriste nom s 14.36 24.19 4.05 6.28 +touristes touriste nom p 14.36 24.19 10.31 17.91 +touristique touristique adj s 2.54 3.51 1.95 2.16 +touristiques touristique adj p 2.54 3.51 0.59 1.35 +tourière tourier adj f s 0.00 0.41 0.00 0.41 +tourlourou tourlourou nom m s 0.01 0.07 0.01 0.07 +tourlousine tourlousine nom f s 0.00 0.07 0.00 0.07 +tourmalines tourmaline nom f p 0.01 0.20 0.01 0.20 +tourment tourment nom m s 7.30 12.30 2.94 5.41 +tourmenta tourmenter ver 10.50 16.28 0.01 0.41 ind:pas:3s; +tourmentai tourmenter ver 10.50 16.28 0.00 0.07 ind:pas:1s; +tourmentaient tourmenter ver 10.50 16.28 0.03 0.95 ind:imp:3p; +tourmentais tourmenter ver 10.50 16.28 0.01 0.41 ind:imp:1s; +tourmentait tourmenter ver 10.50 16.28 0.36 2.64 ind:imp:3s; +tourmentant tourmenter ver 10.50 16.28 0.03 0.14 par:pre; +tourmentante tourmentant adj f s 0.00 0.20 0.00 0.07 +tourmentantes tourmentant adj f p 0.00 0.20 0.00 0.07 +tourmente tourmenter ver 10.50 16.28 3.48 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tourmentent tourmenter ver 10.50 16.28 0.52 0.54 ind:pre:3p; +tourmenter tourmenter ver 10.50 16.28 2.59 3.58 inf; +tourmentera tourmenter ver 10.50 16.28 0.21 0.07 ind:fut:3s; +tourmenterai tourmenter ver 10.50 16.28 0.01 0.07 ind:fut:1s; +tourmenteraient tourmenter ver 10.50 16.28 0.00 0.07 cnd:pre:3p; +tourmenteront tourmenter ver 10.50 16.28 0.02 0.07 ind:fut:3p; +tourmentes tourmente nom f p 1.48 2.84 0.28 0.54 +tourmenteur tourmenteur nom m s 0.03 0.47 0.02 0.14 +tourmenteurs tourmenteur nom m p 0.03 0.47 0.01 0.34 +tourmentez tourmenter ver 10.50 16.28 0.49 0.47 imp:pre:2p;ind:pre:2p; +tourmentiez tourmenter ver 10.50 16.28 0.00 0.07 ind:imp:2p; +tourmentin tourmentin nom m s 0.03 0.07 0.03 0.00 +tourmentins tourmentin nom m p 0.03 0.07 0.00 0.07 +tourmentât tourmenter ver 10.50 16.28 0.00 0.27 sub:imp:3s; +tourments tourment nom m p 7.30 12.30 4.36 6.89 +tourmentèrent tourmenter ver 10.50 16.28 0.00 0.07 ind:pas:3p; +tourmenté tourmenter ver m s 10.50 16.28 1.48 2.64 par:pas; +tourmentée tourmenter ver f s 10.50 16.28 0.78 1.01 par:pas; +tourmentées tourmenté adj f p 2.31 5.41 0.19 0.20 +tourmentés tourmenté adj m p 2.31 5.41 0.40 0.95 +tourna tourner ver 204.13 377.09 0.43 58.72 ind:pas:3s; +tournage tournage nom m s 16.59 2.70 15.75 2.36 +tournages tournage nom m p 16.59 2.70 0.84 0.34 +tournai tourner ver 204.13 377.09 0.14 5.07 ind:pas:1s; +tournaient tourner ver 204.13 377.09 0.98 16.42 ind:imp:3p; +tournaillaient tournailler ver 0.14 0.20 0.00 0.07 ind:imp:3p; +tournailler tournailler ver 0.14 0.20 0.14 0.07 inf; +tournaillé tournailler ver m s 0.14 0.20 0.00 0.07 par:pas; +tournais tourner ver 204.13 377.09 1.23 3.58 ind:imp:1s;ind:imp:2s; +tournait tourner ver 204.13 377.09 5.65 50.41 ind:imp:3s; +tournant tournant nom m s 3.44 20.34 3.38 18.31 +tournante tournant adj f s 1.42 7.09 0.59 1.35 +tournantes tournant adj f p 1.42 7.09 0.20 0.68 +tournants tournant nom m p 3.44 20.34 0.06 2.03 +tournas tourner ver 204.13 377.09 0.00 0.07 ind:pas:2s; +tourne_disque tourne_disque nom m s 0.74 1.35 0.50 0.95 +tourne_disque tourne_disque nom m p 0.74 1.35 0.24 0.41 +tourne tourner ver 204.13 377.09 80.72 60.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tourneboulant tournebouler ver 0.40 0.88 0.00 0.07 par:pre; +tourneboule tournebouler ver 0.40 0.88 0.05 0.20 ind:pre:3s; +tourneboulé tournebouler ver m s 0.40 0.88 0.32 0.34 par:pas; +tourneboulée tournebouler ver f s 0.40 0.88 0.03 0.20 par:pas; +tourneboulés tournebouler ver m p 0.40 0.88 0.00 0.07 par:pas; +tournebroche tournebroche nom m s 0.02 0.07 0.02 0.07 +tournedos tournedos nom m 0.25 0.20 0.25 0.20 +tournelle tournelle nom f s 0.00 1.15 0.00 1.15 +tournemain tournemain nom m s 0.06 0.74 0.06 0.74 +tournements tournement nom m p 0.00 0.07 0.00 0.07 +tournent tourner ver 204.13 377.09 5.97 11.35 ind:pre:3p;sub:pre:3p; +tourner tourner ver 204.13 377.09 51.03 68.78 inf; +tournera tourner ver 204.13 377.09 1.71 0.68 ind:fut:3s; +tournerai tourner ver 204.13 377.09 0.70 0.34 ind:fut:1s; +tourneraient tourner ver 204.13 377.09 0.06 0.34 cnd:pre:3p; +tournerais tourner ver 204.13 377.09 0.11 0.34 cnd:pre:1s;cnd:pre:2s; +tournerait tourner ver 204.13 377.09 1.08 1.82 cnd:pre:3s; +tourneras tourner ver 204.13 377.09 0.21 0.14 ind:fut:2s; +tournerez tourner ver 204.13 377.09 0.44 0.14 ind:fut:2p; +tourneries tournerie nom f p 0.00 0.07 0.00 0.07 +tourneriez tourner ver 204.13 377.09 0.03 0.00 cnd:pre:2p; +tournerions tourner ver 204.13 377.09 0.01 0.00 cnd:pre:1p; +tournerons tourner ver 204.13 377.09 0.18 0.07 ind:fut:1p; +tourneront tourner ver 204.13 377.09 0.36 0.20 ind:fut:3p; +tournes tourner ver 204.13 377.09 4.85 0.95 ind:pre:2s; +tournesol tournesol nom m s 1.43 1.22 0.86 0.61 +tournesols tournesol nom m p 1.43 1.22 0.57 0.61 +tournette tournette nom f s 0.01 0.00 0.01 0.00 +tourneur tourneur nom m s 0.57 1.08 0.35 0.61 +tourneurs tourneur nom m p 0.57 1.08 0.22 0.41 +tourneuses tourneur nom f p 0.57 1.08 0.00 0.07 +tournevis tournevis nom m 3.46 3.24 3.46 3.24 +tournez tourner ver 204.13 377.09 15.82 1.55 imp:pre:2p;ind:pre:2p; +tournicota tournicoter ver 0.03 1.01 0.01 0.00 ind:pas:3s; +tournicotais tournicoter ver 0.03 1.01 0.00 0.07 ind:imp:1s; +tournicotait tournicoter ver 0.03 1.01 0.00 0.20 ind:imp:3s; +tournicotant tournicoter ver 0.03 1.01 0.00 0.07 par:pre; +tournicote tournicoter ver 0.03 1.01 0.01 0.20 imp:pre:2s;ind:pre:3s; +tournicotent tournicoter ver 0.03 1.01 0.00 0.07 ind:pre:3p; +tournicoter tournicoter ver 0.03 1.01 0.01 0.20 inf; +tournicoterais tournicoter ver 0.03 1.01 0.00 0.07 cnd:pre:1s; +tournicoté tournicoter ver m s 0.03 1.01 0.00 0.07 par:pas; +tournicotés tournicoter ver m p 0.03 1.01 0.00 0.07 par:pas; +tournillant tourniller ver 0.00 0.07 0.00 0.07 par:pre; +tournions tourner ver 204.13 377.09 0.06 0.68 ind:imp:1p; +tourniquant tourniquer ver 0.20 0.20 0.00 0.14 par:pre; +tournique tourniquer ver 0.20 0.20 0.00 0.07 ind:pre:3s; +tourniquer tourniquer ver 0.20 0.20 0.20 0.00 inf; +tourniquet tourniquet nom m s 0.68 2.77 0.65 2.30 +tourniquets tourniquet nom m p 0.68 2.77 0.03 0.47 +tournis tournis nom m 0.58 1.62 0.58 1.62 +tournoi tournoi nom m s 6.86 3.38 5.84 2.16 +tournoie tournoyer ver 1.26 14.80 0.19 1.28 ind:pre:3s; +tournoiement tournoiement nom m s 0.04 1.49 0.04 1.15 +tournoiements tournoiement nom m p 0.04 1.49 0.00 0.34 +tournoient tournoyer ver 1.26 14.80 0.19 2.30 ind:pre:3p; +tournoieraient tournoyer ver 1.26 14.80 0.11 0.07 cnd:pre:3p; +tournoieront tournoyer ver 1.26 14.80 0.00 0.07 ind:fut:3p; +tournois tournoi nom m p 6.86 3.38 1.02 1.22 +tournâmes tourner ver 204.13 377.09 0.00 0.41 ind:pas:1p; +tournons tourner ver 204.13 377.09 1.88 1.82 imp:pre:1p;ind:pre:1p; +tournât tourner ver 204.13 377.09 0.01 0.54 sub:imp:3s; +tournoya tournoyer ver 1.26 14.80 0.00 0.47 ind:pas:3s; +tournoyaient tournoyer ver 1.26 14.80 0.03 2.50 ind:imp:3p; +tournoyais tournoyer ver 1.26 14.80 0.00 0.07 ind:imp:1s; +tournoyait tournoyer ver 1.26 14.80 0.19 1.96 ind:imp:3s; +tournoyant tournoyer ver 1.26 14.80 0.26 2.16 par:pre; +tournoyante tournoyant adj f s 0.04 2.36 0.01 0.68 +tournoyantes tournoyant adj f p 0.04 2.36 0.01 0.34 +tournoyants tournoyant adj m p 0.04 2.36 0.00 0.54 +tournoyer tournoyer ver 1.26 14.80 0.27 3.65 inf; +tournoyèrent tournoyer ver 1.26 14.80 0.00 0.14 ind:pas:3p; +tournoyé tournoyer ver m s 1.26 14.80 0.02 0.14 par:pas; +tournèrent tourner ver 204.13 377.09 0.08 4.59 ind:pas:3p; +tourné tourner ver m s 204.13 377.09 24.84 38.78 par:pas; +tournée tournée nom f s 20.57 23.85 18.64 18.72 +tournées tournée nom f p 20.57 23.85 1.93 5.14 +tournure tournure nom f s 3.00 8.24 2.82 6.42 +tournures tournure nom f p 3.00 8.24 0.18 1.82 +tournés tourner ver m p 204.13 377.09 1.17 4.46 par:pas; +tours_minute tours_minute nom p 0.00 0.07 0.00 0.07 +tours tour nom p 193.82 308.72 18.26 28.45 +tourte tourte nom f s 1.15 0.74 1.03 0.54 +tourteau tourteau nom m s 0.01 0.81 0.00 0.27 +tourteaux tourteau nom m p 0.01 0.81 0.01 0.54 +tourtereau tourtereau nom m s 2.00 2.50 0.13 0.00 +tourtereaux tourtereau nom m p 2.00 2.50 1.59 0.61 +tourterelle tourtereau nom f s 2.00 2.50 0.28 1.01 +tourterelles tourterelle nom f p 0.39 0.00 0.39 0.00 +tourtes tourte nom f p 1.15 0.74 0.12 0.20 +tourtière tourtière nom f s 0.03 0.07 0.02 0.00 +tourtières tourtière nom f p 0.03 0.07 0.01 0.07 +tous_terrains tous_terrains adj m p 0.00 0.07 0.00 0.07 +tous tous pro_ind m p 376.64 238.72 376.64 238.72 +toussa tousser ver 9.28 23.18 0.00 5.34 ind:pas:3s; +toussai tousser ver 9.28 23.18 0.00 0.07 ind:pas:1s; +toussaient tousser ver 9.28 23.18 0.11 0.34 ind:imp:3p; +toussaint toussaint nom f s 0.54 0.27 0.54 0.27 +toussais tousser ver 9.28 23.18 0.16 0.07 ind:imp:1s;ind:imp:2s; +toussait tousser ver 9.28 23.18 0.35 3.65 ind:imp:3s; +toussant tousser ver 9.28 23.18 0.08 0.95 par:pre; +tousse tousser ver 9.28 23.18 4.89 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +toussent tousser ver 9.28 23.18 0.33 0.20 ind:pre:3p; +tousser tousser ver 9.28 23.18 1.84 5.81 inf; +toussera tousser ver 9.28 23.18 0.03 0.07 ind:fut:3s; +tousserait tousser ver 9.28 23.18 0.00 0.27 cnd:pre:3s; +tousses tousser ver 9.28 23.18 0.27 0.14 ind:pre:2s; +tousseur tousseur adj m s 0.01 0.20 0.00 0.14 +tousseurs tousseur adj m p 0.01 0.20 0.01 0.07 +tousseux tousseux adj m 0.00 0.07 0.00 0.07 +toussez tousser ver 9.28 23.18 0.51 0.20 imp:pre:2p;ind:pre:2p; +toussions tousser ver 9.28 23.18 0.00 0.07 ind:imp:1p; +toussons tousser ver 9.28 23.18 0.01 0.14 imp:pre:1p;ind:pre:1p; +toussota toussoter ver 0.14 5.14 0.00 2.43 ind:pas:3s; +toussotai toussoter ver 0.14 5.14 0.00 0.07 ind:pas:1s; +toussotaient toussoter ver 0.14 5.14 0.00 0.07 ind:imp:3p; +toussotait toussoter ver 0.14 5.14 0.00 0.54 ind:imp:3s; +toussotant toussoter ver 0.14 5.14 0.00 0.47 par:pre; +toussote toussoter ver 0.14 5.14 0.00 0.95 ind:pre:1s;ind:pre:3s; +toussotement toussotement nom m s 0.01 0.68 0.01 0.41 +toussotements toussotement nom m p 0.01 0.68 0.00 0.27 +toussotent toussoter ver 0.14 5.14 0.00 0.07 ind:pre:3p; +toussoter toussoter ver 0.14 5.14 0.01 0.34 inf; +toussoteux toussoteux adj m p 0.00 0.07 0.00 0.07 +toussotiez toussoter ver 0.14 5.14 0.00 0.07 ind:imp:2p; +toussoté toussoter ver m s 0.14 5.14 0.14 0.14 par:pas; +toussé tousser ver m s 9.28 23.18 0.70 1.15 par:pas; +tout_fait tout_fait adj_ind m s 0.14 0.00 0.11 0.00 +tout_fou tout_fou adj m s 0.01 0.00 0.01 0.00 +tout_à_l_égout tout_à_l_égout nom m 0.00 0.47 0.00 0.47 +tout_paris tout_paris nom m 0.16 1.01 0.16 1.01 +tout_petit tout_petit nom m s 0.20 0.74 0.03 0.34 +tout_petit tout_petit nom m p 0.20 0.74 0.17 0.41 +tout_puissant tout_puissant adj m s 7.22 3.65 5.70 2.09 +tout_puissant tout_puissant adj m p 7.22 3.65 0.17 0.41 +tout_terrain tout_terrain nom m s 0.28 0.00 0.28 0.00 +tout_étoile tout_étoile nom m s 0.01 0.00 0.01 0.00 +tout_venant tout_venant nom m 0.05 0.74 0.05 0.74 +tout tout pro_ind m s 1366.45 838.04 1366.45 838.04 +toute_puissance toute_puissance nom f 0.08 2.03 0.08 2.03 +tout_puissant tout_puissant adj f s 7.22 3.65 1.35 1.15 +toute toute adj_ind f s 118.32 194.26 118.32 194.26 +toutefois toutefois adv_sup 5.37 35.47 5.37 35.47 +toute_puissante toute_puissante adj f p 0.01 0.14 0.01 0.14 +toutes toutes pro_ind f p 20.86 24.19 20.86 24.19 +toutim toutim nom m s 0.31 0.88 0.31 0.88 +toutime toutime nom m s 0.00 0.74 0.00 0.74 +toutou toutou nom m s 6.06 1.89 5.65 1.55 +toutous toutou nom m p 6.06 1.89 0.41 0.34 +touts tout nom_sup m p 330.70 281.01 0.10 0.00 +toué touer ver m s 0.02 0.14 0.00 0.07 par:pas; +toux toux nom f 4.94 12.23 4.94 12.23 +toxicité toxicité nom f s 0.34 0.20 0.34 0.20 +toxico toxico nom s 1.33 0.88 1.14 0.20 +toxicologie toxicologie nom f s 0.61 0.00 0.61 0.00 +toxicologique toxicologique adj s 0.93 0.00 0.93 0.00 +toxicologue toxicologue nom s 0.06 0.00 0.04 0.00 +toxicologues toxicologue nom p 0.06 0.00 0.01 0.00 +toxicomane toxicomane nom s 1.67 0.54 1.16 0.07 +toxicomanes toxicomane nom p 1.67 0.54 0.51 0.47 +toxicomanie toxicomanie nom f s 0.21 0.00 0.21 0.00 +toxicos toxico nom p 1.33 0.88 0.19 0.68 +toxine toxine nom f s 2.29 0.07 0.90 0.00 +toxines toxine nom f p 2.29 0.07 1.39 0.07 +toxique toxique adj s 5.20 0.74 3.00 0.34 +toxiques toxique adj p 5.20 0.74 2.20 0.41 +toxoplasmose toxoplasmose nom f s 0.07 0.20 0.07 0.20 +trôler trôler ver 0.01 0.00 0.01 0.00 inf; +trôna trôner ver 0.34 10.20 0.00 0.07 ind:pas:3s; +trônaient trôner ver 0.34 10.20 0.00 0.81 ind:imp:3p; +trônais trôner ver 0.34 10.20 0.00 0.07 ind:imp:1s; +trônait trôner ver 0.34 10.20 0.11 5.34 ind:imp:3s; +trônant trôner ver 0.34 10.20 0.11 1.49 par:pre; +trône trône nom m s 14.32 12.03 13.99 11.49 +trônent trôner ver 0.34 10.20 0.01 0.34 ind:pre:3p; +trôner trôner ver 0.34 10.20 0.03 0.34 inf; +trônerait trôner ver 0.34 10.20 0.00 0.07 cnd:pre:3s; +trônes trône nom m p 14.32 12.03 0.33 0.54 +trôné trôner ver m s 0.34 10.20 0.00 0.07 par:pas; +traîna traîner ver 65.49 122.77 0.05 4.05 ind:pas:3s; +traînage traînage nom m s 0.01 0.00 0.01 0.00 +traînai traîner ver 65.49 122.77 0.01 1.08 ind:pas:1s; +traînaient traîner ver 65.49 122.77 0.45 11.15 ind:imp:3p; +traînaillait traînailler ver 0.03 0.74 0.00 0.07 ind:imp:3s; +traînaillant traînailler ver 0.03 0.74 0.01 0.14 par:pre; +traînaille traînailler ver 0.03 0.74 0.00 0.07 ind:pre:3s; +traînailler traînailler ver 0.03 0.74 0.02 0.27 inf; +traînaillons traînailler ver 0.03 0.74 0.00 0.07 imp:pre:1p; +traînaillé traînailler ver m s 0.03 0.74 0.00 0.14 par:pas; +traînais traîner ver 65.49 122.77 1.94 2.16 ind:imp:1s;ind:imp:2s; +traînait traîner ver 65.49 122.77 3.66 19.59 ind:imp:3s; +traînant traîner ver 65.49 122.77 1.41 13.18 par:pre; +traînante traînant adj f s 0.05 5.88 0.00 1.96 +traînantes traînant adj f p 0.05 5.88 0.00 0.61 +traînants traînant adj m p 0.05 5.88 0.01 0.27 +traînard traînard nom m s 0.35 1.35 0.16 0.27 +traînarde traînard adj f s 0.07 0.88 0.01 0.07 +traînards traînard nom m p 0.35 1.35 0.19 1.01 +traînassaient traînasser ver 0.49 1.28 0.01 0.07 ind:imp:3p; +traînassais traînasser ver 0.49 1.28 0.02 0.00 ind:imp:1s; +traînassait traînasser ver 0.49 1.28 0.00 0.07 ind:imp:3s; +traînassant traînasser ver 0.49 1.28 0.00 0.07 par:pre; +traînasse traînasser ver 0.49 1.28 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +traînassent traînasser ver 0.49 1.28 0.00 0.14 ind:pre:3p; +traînasser traînasser ver 0.49 1.28 0.34 0.41 inf; +traînasserai traînasser ver 0.49 1.28 0.01 0.00 ind:fut:1s; +traînasses traînasser ver 0.49 1.28 0.03 0.00 ind:pre:2s; +traînassez traînasser ver 0.49 1.28 0.01 0.00 imp:pre:2p; +traînassons traînasser ver 0.49 1.28 0.00 0.07 ind:pre:1p; +traînassé traînasser ver m s 0.49 1.28 0.00 0.14 par:pas; +traîne_misère traîne_misère nom m 0.01 0.07 0.01 0.07 +traîne_patins traîne_patins nom m 0.00 0.47 0.00 0.47 +traîne_savate traîne_savate nom m s 0.01 0.07 0.01 0.07 +traîne_savates traîne_savates nom m 0.22 0.54 0.22 0.54 +traîne_semelle traîne_semelle nom s 0.00 0.07 0.00 0.07 +traîne_semelles traîne_semelles nom m 0.01 0.07 0.01 0.07 +traîne traîner ver 65.49 122.77 14.63 16.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +traîneau traîneau nom m s 2.27 3.45 2.27 3.45 +traîneaux traineaux nom m p 0.10 1.08 0.10 1.08 +traînement traînement nom m s 0.03 0.00 0.03 0.00 +traînent traîner ver 65.49 122.77 3.42 7.03 ind:pre:3p; +traîner traîner ver 65.49 122.77 21.48 28.04 inf;; +traînera traîner ver 65.49 122.77 0.31 0.47 ind:fut:3s; +traînerai traîner ver 65.49 122.77 0.54 0.07 ind:fut:1s; +traîneraient traîner ver 65.49 122.77 0.02 0.07 cnd:pre:3p; +traînerais traîner ver 65.49 122.77 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +traînerait traîner ver 65.49 122.77 0.10 0.34 cnd:pre:3s; +traîneras traîner ver 65.49 122.77 0.09 0.00 ind:fut:2s; +traînerez traîner ver 65.49 122.77 0.19 0.00 ind:fut:2p; +traînerons traîner ver 65.49 122.77 0.17 0.00 ind:fut:1p; +traîneront traîner ver 65.49 122.77 0.04 0.20 ind:fut:3p; +traînes traîner ver 65.49 122.77 4.29 0.68 ind:pre:2s; +traîneur traîneur nom m s 0.01 0.41 0.00 0.27 +traîneurs traîneur nom m p 0.01 0.41 0.01 0.07 +traîneuses traîneuse nom f p 0.01 0.00 0.01 0.00 +traînez traîner ver 65.49 122.77 2.95 0.47 imp:pre:2p;ind:pre:2p; +traînier traînier nom m s 0.00 0.20 0.00 0.20 +traîniez traîner ver 65.49 122.77 0.12 0.07 ind:imp:2p; +traînions traîner ver 65.49 122.77 0.04 0.41 ind:imp:1p; +traînâmes traîner ver 65.49 122.77 0.00 0.07 ind:pas:1p; +traînons traîner ver 65.49 122.77 0.29 0.47 imp:pre:1p;ind:pre:1p; +traînât traîner ver 65.49 122.77 0.00 0.20 sub:imp:3s; +traînèrent traîner ver 65.49 122.77 0.12 0.88 ind:pas:3p; +traîné traîner ver m s 65.49 122.77 6.80 11.89 par:pas; +traînée traînée nom f s 7.35 13.24 6.49 6.28 +traînées traînée nom f p 7.35 13.24 0.86 6.96 +traînés traîner ver m p 65.49 122.77 0.73 1.35 par:pas; +traître traître nom m s 26.36 13.24 19.18 7.30 +traîtres traître nom m p 26.36 13.24 7.18 5.95 +traîtresse traîtresse nom f s 1.54 0.41 1.14 0.34 +traîtresses traîtresse nom f p 1.54 0.41 0.41 0.07 +traîtreusement traîtreusement adv 0.01 1.01 0.01 1.01 +traîtrise traîtrise nom f s 1.27 1.96 1.27 1.82 +traîtrises traîtrise nom f p 1.27 1.96 0.00 0.14 +trabans traban nom m p 0.00 0.07 0.00 0.07 +traboules traboule nom f p 0.14 0.07 0.14 0.07 +trabuco trabuco nom m s 0.02 0.14 0.02 0.14 +trac trac nom m s 5.17 8.38 4.91 8.24 +tracas tracas nom m 1.43 4.46 1.43 4.46 +tracassa tracasser ver 10.37 5.88 0.00 0.07 ind:pas:3s; +tracassaient tracasser ver 10.37 5.88 0.03 0.14 ind:imp:3p; +tracassait tracasser ver 10.37 5.88 0.47 1.42 ind:imp:3s; +tracassant tracasser ver 10.37 5.88 0.00 0.14 par:pre; +tracasse tracasser ver 10.37 5.88 7.15 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tracassent tracasser ver 10.37 5.88 0.27 0.20 ind:pre:3p; +tracasser tracasser ver 10.37 5.88 0.56 0.68 inf; +tracassera tracasser ver 10.37 5.88 0.02 0.00 ind:fut:3s; +tracasserais tracasser ver 10.37 5.88 0.02 0.00 cnd:pre:1s; +tracasserait tracasser ver 10.37 5.88 0.03 0.07 cnd:pre:3s; +tracasserie tracasserie nom f s 0.34 0.95 0.01 0.07 +tracasseries tracasserie nom f p 0.34 0.95 0.33 0.88 +tracasserons tracasser ver 10.37 5.88 0.01 0.00 ind:fut:1p; +tracasses tracasser ver 10.37 5.88 0.47 0.07 ind:pre:2s; +tracassez tracasser ver 10.37 5.88 0.83 0.61 imp:pre:2p;ind:pre:2p; +tracassier tracassier adj m s 0.10 0.27 0.10 0.20 +tracassin tracassin nom m s 0.00 0.27 0.00 0.27 +tracassière tracassier nom f s 0.00 0.07 0.00 0.07 +tracassières tracassier adj f p 0.10 0.27 0.00 0.07 +tracassé tracasser ver m s 10.37 5.88 0.45 0.41 par:pas; +tracassée tracasser ver f s 10.37 5.88 0.06 0.27 par:pas; +tracassées tracasser ver f p 10.37 5.88 0.00 0.07 par:pas; +trace trace nom f s 60.18 80.27 29.20 39.32 +tracent tracer ver 10.49 42.36 0.30 1.42 ind:pre:3p; +tracer tracer ver 10.49 42.36 2.08 7.23 inf; +tracera tracer ver 10.49 42.36 0.01 0.07 ind:fut:3s; +tracerez tracer ver 10.49 42.36 0.01 0.00 ind:fut:2p; +tracerons tracer ver 10.49 42.36 0.01 0.00 ind:fut:1p; +traces trace nom f p 60.18 80.27 30.98 40.95 +traceur traceur nom m s 0.59 0.00 0.52 0.00 +traceurs traceur nom m p 0.59 0.00 0.08 0.00 +traceuse traceur adj f s 0.11 0.20 0.01 0.00 +traceuses traceur adj f p 0.11 0.20 0.00 0.20 +tracez tracer ver 10.49 42.36 0.26 0.14 imp:pre:2p;ind:pre:2p; +trachome trachome nom m s 0.02 0.07 0.02 0.07 +trachéal trachéal adj m s 0.09 0.00 0.05 0.00 +trachéale trachéal adj f s 0.09 0.00 0.04 0.00 +trachée_artère trachée_artère nom f s 0.02 0.20 0.02 0.20 +trachée trachée nom f s 0.97 0.41 0.97 0.34 +trachées trachée nom f p 0.97 0.41 0.00 0.07 +trachéite trachéite nom f s 0.00 0.07 0.00 0.07 +trachéotomie trachéotomie nom f s 0.35 0.14 0.35 0.14 +tracions tracer ver 10.49 42.36 0.00 0.07 ind:imp:1p; +tracs trac nom m p 5.17 8.38 0.26 0.14 +tract tract nom m s 3.67 9.39 0.41 2.50 +tractage tractage nom m s 0.01 0.00 0.01 0.00 +tractait tracter ver 0.27 0.41 0.01 0.07 ind:imp:3s; +tractant tracter ver 0.27 0.41 0.01 0.07 par:pre; +tractation tractation nom f s 0.12 1.96 0.01 0.27 +tractations tractation nom f p 0.12 1.96 0.11 1.69 +tracter tracter ver 0.27 0.41 0.23 0.14 inf; +tracteur tracteur nom m s 3.86 6.82 2.87 5.27 +tracteurs tracteur nom m p 3.86 6.82 0.99 1.55 +tracèrent tracer ver 10.49 42.36 0.00 0.14 ind:pas:3p; +traction_avant traction_avant nom f s 0.00 0.07 0.00 0.07 +traction traction nom f s 1.19 8.31 1.06 7.43 +tractions traction nom f p 1.19 8.31 0.13 0.88 +tractopelle tractopelle nom f s 0.24 0.00 0.24 0.00 +tractoriste tractoriste nom s 0.10 0.20 0.10 0.07 +tractoristes tractoriste nom p 0.10 0.20 0.00 0.14 +tracts tract nom m p 3.67 9.39 3.26 6.89 +tracté tracté adj m s 0.04 0.20 0.04 0.14 +tractée tracter ver f s 0.27 0.41 0.00 0.07 par:pas; +tractés tracté adj m p 0.04 0.20 0.00 0.07 +tractus tractus nom m 0.12 0.20 0.12 0.20 +tracé tracer ver m s 10.49 42.36 2.22 7.30 par:pas; +tracée tracer ver f s 10.49 42.36 1.13 3.24 par:pas; +tracées tracer ver f p 10.49 42.36 0.28 3.31 par:pas; +tracés tracer ver m p 10.49 42.36 0.40 3.51 par:pas; +trader trader nom m s 0.33 0.00 0.33 0.00 +tradition tradition nom f s 20.56 33.92 15.68 23.38 +traditionalisme traditionalisme nom m s 0.11 0.54 0.11 0.54 +traditionaliste traditionaliste adj s 0.07 0.41 0.07 0.41 +traditionalistes traditionaliste nom p 0.09 0.61 0.04 0.41 +traditionnel traditionnel adj m s 6.85 15.20 2.66 5.47 +traditionnelle traditionnel adj f s 6.85 15.20 2.72 5.14 +traditionnellement traditionnellement adv 0.34 3.24 0.34 3.24 +traditionnelles traditionnel adj f p 6.85 15.20 0.75 2.43 +traditionnels traditionnel adj m p 6.85 15.20 0.71 2.16 +traditions tradition nom f p 20.56 33.92 4.87 10.54 +traduc traduc nom f s 0.17 0.00 0.17 0.00 +traducteur traducteur nom m s 4.41 3.51 2.95 2.09 +traducteurs traducteur nom m p 4.41 3.51 0.85 0.88 +traduction traduction nom f s 5.24 11.15 4.70 8.45 +traductions traduction nom f p 5.24 11.15 0.55 2.70 +traductrice traducteur nom f s 4.41 3.51 0.60 0.41 +traductrices traductrice nom f p 0.01 0.00 0.01 0.00 +traduira traduire ver 15.41 34.32 0.25 0.14 ind:fut:3s; +traduirai traduire ver 15.41 34.32 0.09 0.07 ind:fut:1s; +traduiraient traduire ver 15.41 34.32 0.00 0.14 cnd:pre:3p; +traduirais traduire ver 15.41 34.32 0.25 0.00 cnd:pre:1s; +traduirait traduire ver 15.41 34.32 0.01 0.14 cnd:pre:3s; +traduire traduire ver 15.41 34.32 5.27 11.01 inf; +traduirez traduire ver 15.41 34.32 0.23 0.07 ind:fut:2p; +traduis traduire ver 15.41 34.32 2.17 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s; +traduisît traduire ver 15.41 34.32 0.00 0.07 sub:imp:3s; +traduisaient traduire ver 15.41 34.32 0.01 0.74 ind:imp:3p; +traduisais traduire ver 15.41 34.32 0.16 0.47 ind:imp:1s;ind:imp:2s; +traduisait traduire ver 15.41 34.32 0.15 4.86 ind:imp:3s; +traduisant traduire ver 15.41 34.32 0.14 1.08 par:pre; +traduise traduire ver 15.41 34.32 0.21 0.14 sub:pre:1s;sub:pre:3s; +traduisent traduire ver 15.41 34.32 0.23 0.95 ind:pre:3p; +traduises traduire ver 15.41 34.32 0.03 0.00 sub:pre:2s; +traduisez traduire ver 15.41 34.32 0.99 0.20 imp:pre:2p;ind:pre:2p; +traduisibles traduisible adj f p 0.01 0.14 0.01 0.14 +traduisions traduire ver 15.41 34.32 0.01 0.00 ind:imp:1p; +traduisis traduire ver 15.41 34.32 0.00 0.47 ind:pas:1s; +traduisit traduire ver 15.41 34.32 0.01 1.69 ind:pas:3s; +traduisons traduire ver 15.41 34.32 0.00 0.07 imp:pre:1p; +traduit traduire ver m s 15.41 34.32 4.30 8.24 ind:pre:3s;par:pas; +traduite traduire ver f s 15.41 34.32 0.25 0.81 par:pas; +traduites traduire ver f p 15.41 34.32 0.06 0.68 par:pas; +traduits traduire ver m p 15.41 34.32 0.59 1.08 par:pas; +trafalgar trafalgar nom s 0.00 0.20 0.00 0.20 +trafic trafic nom m s 14.02 10.27 13.24 8.65 +traficotaient traficoter ver 0.49 0.47 0.00 0.07 ind:imp:3p; +traficotait traficoter ver 0.49 0.47 0.16 0.14 ind:imp:3s; +traficote traficoter ver 0.49 0.47 0.13 0.07 ind:pre:3s; +traficoter traficoter ver 0.49 0.47 0.11 0.14 inf; +traficotes traficoter ver 0.49 0.47 0.06 0.00 ind:pre:2s; +traficoteurs traficoteur nom m p 0.00 0.07 0.00 0.07 +traficotez traficoter ver 0.49 0.47 0.01 0.00 ind:pre:2p; +traficoté traficoter ver m s 0.49 0.47 0.02 0.07 par:pas; +trafics trafic nom m p 14.02 10.27 0.78 1.62 +trafiquaient trafiquer ver 7.25 3.78 0.07 0.20 ind:imp:3p; +trafiquais trafiquer ver 7.25 3.78 0.31 0.00 ind:imp:1s;ind:imp:2s; +trafiquait trafiquer ver 7.25 3.78 0.29 0.27 ind:imp:3s; +trafiquant_espion trafiquant_espion nom m s 0.00 0.07 0.00 0.07 +trafiquant trafiquant nom m s 5.41 3.38 2.65 1.28 +trafiquante trafiquant nom f s 5.41 3.38 0.04 0.00 +trafiquants trafiquant nom m p 5.41 3.38 2.72 2.09 +trafique trafiquer ver 7.25 3.78 1.06 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trafiquent trafiquer ver 7.25 3.78 0.13 0.34 ind:pre:3p; +trafiquer trafiquer ver 7.25 3.78 1.08 1.01 inf; +trafiquerais trafiquer ver 7.25 3.78 0.01 0.00 cnd:pre:1s; +trafiques trafiquer ver 7.25 3.78 0.34 0.07 ind:pre:2s; +trafiquez trafiquer ver 7.25 3.78 0.31 0.07 imp:pre:2p;ind:pre:2p; +trafiquions trafiquer ver 7.25 3.78 0.00 0.07 ind:imp:1p; +trafiqué trafiquer ver m s 7.25 3.78 1.83 0.54 par:pas; +trafiquée trafiquer ver f s 7.25 3.78 0.46 0.34 par:pas; +trafiquées trafiquer ver f p 7.25 3.78 0.53 0.07 par:pas; +trafiqués trafiquer ver m p 7.25 3.78 0.25 0.07 par:pas; +tragi_comique tragi_comique adj f s 0.00 0.47 0.00 0.34 +tragi_comique tragi_comique adj m p 0.00 0.47 0.00 0.14 +tragi_comédie tragi_comédie nom f s 0.00 0.27 0.00 0.14 +tragi_comédie tragi_comédie nom f p 0.00 0.27 0.00 0.14 +tragicomédies tragicomédie nom f p 0.01 0.00 0.01 0.00 +tragique tragique adj s 12.13 22.50 10.55 17.97 +tragiquement tragiquement adv 0.58 1.96 0.58 1.96 +tragiques tragique adj p 12.13 22.50 1.59 4.53 +tragédie tragédie nom f s 15.59 14.46 14.23 10.88 +tragédien tragédien nom m s 0.52 1.15 0.07 0.20 +tragédienne tragédien nom f s 0.52 1.15 0.25 0.54 +tragédiennes tragédienne nom f p 0.01 0.00 0.01 0.00 +tragédiens tragédien nom m p 0.52 1.15 0.20 0.34 +tragédies tragédie nom f p 15.59 14.46 1.36 3.58 +trahi trahir ver m s 46.83 41.55 16.18 8.11 par:pas; +trahie trahir ver f s 46.83 41.55 2.35 2.97 par:pas; +trahies trahir ver f p 46.83 41.55 0.17 0.14 par:pas; +trahir trahir ver 46.83 41.55 10.16 11.01 inf; +trahira trahir ver 46.83 41.55 1.38 0.34 ind:fut:3s; +trahirai trahir ver 46.83 41.55 0.97 0.07 ind:fut:1s; +trahiraient trahir ver 46.83 41.55 0.07 0.20 cnd:pre:3p; +trahirais trahir ver 46.83 41.55 0.40 0.07 cnd:pre:1s;cnd:pre:2s; +trahirait trahir ver 46.83 41.55 0.77 0.34 cnd:pre:3s; +trahiras trahir ver 46.83 41.55 0.09 0.07 ind:fut:2s; +trahirent trahir ver 46.83 41.55 0.00 0.20 ind:pas:3p; +trahirez trahir ver 46.83 41.55 0.07 0.14 ind:fut:2p; +trahiriez trahir ver 46.83 41.55 0.05 0.00 cnd:pre:2p; +trahirons trahir ver 46.83 41.55 0.01 0.00 ind:fut:1p; +trahiront trahir ver 46.83 41.55 0.10 0.41 ind:fut:3p; +trahis trahir ver m p 46.83 41.55 5.92 2.91 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +trahison trahison nom f s 18.61 18.51 16.74 15.27 +trahisons trahison nom f p 18.61 18.51 1.88 3.24 +trahissaient trahir ver 46.83 41.55 0.26 1.55 ind:imp:3p; +trahissais trahir ver 46.83 41.55 0.06 0.34 ind:imp:1s;ind:imp:2s; +trahissait trahir ver 46.83 41.55 0.16 4.59 ind:imp:3s; +trahissant trahir ver 46.83 41.55 0.50 0.95 par:pre; +trahisse trahir ver 46.83 41.55 0.45 0.74 sub:pre:1s;sub:pre:3s; +trahissent trahir ver 46.83 41.55 1.50 1.62 ind:pre:3p; +trahissez trahir ver 46.83 41.55 1.07 0.27 imp:pre:2p;ind:pre:2p; +trahissiez trahir ver 46.83 41.55 0.28 0.00 ind:imp:2p; +trahissions trahir ver 46.83 41.55 0.01 0.00 ind:imp:1p; +trahissons trahir ver 46.83 41.55 0.01 0.00 imp:pre:1p; +trahit trahir ver 46.83 41.55 3.85 4.53 ind:pre:3s;ind:pas:3s; +traie traire ver 3.69 4.59 0.27 0.00 sub:pre:1s; +train_train train_train nom m 0.69 1.62 0.69 1.62 +train train nom m s 255.28 288.65 244.40 271.28 +trainglots trainglot nom m p 0.00 0.07 0.00 0.07 +training training nom m s 0.02 0.07 0.02 0.07 +trains train nom m p 255.28 288.65 10.88 17.36 +traintrain traintrain nom m 0.00 0.14 0.00 0.14 +traira traire ver 3.69 4.59 0.01 0.00 ind:fut:3s; +trairait traire ver 3.69 4.59 0.01 0.07 cnd:pre:3s; +traire traire ver 3.69 4.59 1.80 1.82 inf; +trais traire ver 3.69 4.59 0.35 0.00 ind:pre:1s;ind:pre:2s; +trait trait nom m s 15.86 97.30 7.83 37.91 +traita traiter ver 104.05 69.93 0.38 2.43 ind:pas:3s; +traitable traitable adj m s 0.05 0.14 0.05 0.07 +traitables traitable adj p 0.05 0.14 0.00 0.07 +traitai traiter ver 104.05 69.93 0.00 0.47 ind:pas:1s; +traitaient traiter ver 104.05 69.93 0.67 2.91 ind:imp:3p; +traitais traiter ver 104.05 69.93 0.81 0.47 ind:imp:1s;ind:imp:2s; +traitait traiter ver 104.05 69.93 2.74 10.34 ind:imp:3s; +traitant traiter ver 104.05 69.93 1.30 3.18 par:pre; +traitante traitant adj f s 0.34 0.41 0.00 0.07 +traitants traitant adj m p 0.34 0.41 0.01 0.07 +traitassent traiter ver 104.05 69.93 0.00 0.07 sub:imp:3p; +traite traiter ver 104.05 69.93 24.08 8.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +traitement traitement nom m s 29.23 14.66 25.44 11.08 +traitements traitement nom m p 29.23 14.66 3.79 3.58 +traitent traiter ver 104.05 69.93 3.95 1.15 ind:pre:3p;sub:pre:3p; +traiter traiter ver 104.05 69.93 25.23 20.27 ind:pre:2p;inf; +traitera traiter ver 104.05 69.93 1.15 0.27 ind:fut:3s; +traiterai traiter ver 104.05 69.93 0.51 0.14 ind:fut:1s; +traiteraient traiter ver 104.05 69.93 0.09 0.14 cnd:pre:3p; +traiterais traiter ver 104.05 69.93 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +traiterait traiter ver 104.05 69.93 0.39 0.81 cnd:pre:3s; +traiteras traiter ver 104.05 69.93 0.25 0.00 ind:fut:2s; +traiterez traiter ver 104.05 69.93 0.32 0.00 ind:fut:2p; +traiteriez traiter ver 104.05 69.93 0.10 0.00 cnd:pre:2p; +traiterons traiter ver 104.05 69.93 0.20 0.00 ind:fut:1p; +traiteront traiter ver 104.05 69.93 0.49 0.27 ind:fut:3p; +traites traiter ver 104.05 69.93 6.84 0.14 ind:pre:2s;sub:pre:2s; +traiteur traiteur nom m s 4.07 1.62 3.45 1.35 +traiteurs traiteur nom m p 4.07 1.62 0.62 0.27 +traitez traiter ver 104.05 69.93 6.09 0.74 imp:pre:2p;ind:pre:2p; +traitiez traiter ver 104.05 69.93 0.40 0.07 ind:imp:2p;sub:pre:2p; +traitions traiter ver 104.05 69.93 0.05 0.54 ind:imp:1p; +traitons traiter ver 104.05 69.93 1.16 0.14 imp:pre:1p;ind:pre:1p; +traitât traiter ver 104.05 69.93 0.00 0.54 sub:imp:3s; +traits trait nom m p 15.86 97.30 8.03 59.39 +traitèrent traiter ver 104.05 69.93 0.10 0.20 ind:pas:3p; +traité traiter ver m s 104.05 69.93 15.51 7.84 par:pas; +traitée traiter ver f s 104.05 69.93 6.87 3.99 par:pas; +traitées traiter ver f p 104.05 69.93 0.78 0.74 par:pas; +traités traiter ver m p 104.05 69.93 3.41 3.92 par:pas; +trajectographie trajectographie nom f s 0.02 0.00 0.02 0.00 +trajectoire trajectoire nom f s 5.90 6.42 5.53 5.54 +trajectoires trajectoire nom f p 5.90 6.42 0.37 0.88 +trajet trajet nom m s 7.74 16.69 7.23 14.66 +trajets trajet nom m p 7.74 16.69 0.51 2.03 +tralala tralala nom m s 1.10 1.55 1.09 1.28 +tralalas tralala nom m p 1.10 1.55 0.01 0.27 +tram tram nom m s 5.73 2.30 5.51 1.69 +tramaient tramer ver 3.06 3.31 0.01 0.54 ind:imp:3p; +tramail tramail nom m s 0.00 0.27 0.00 0.20 +tramails tramail nom m p 0.00 0.27 0.00 0.07 +tramait tramer ver 3.06 3.31 0.16 0.88 ind:imp:3s; +tramant tramer ver 3.06 3.31 0.00 0.27 par:pre; +trame tramer ver 3.06 3.31 2.36 1.08 ind:pre:1s;ind:pre:3s; +trament tramer ver 3.06 3.31 0.10 0.00 ind:pre:3p; +tramer tramer ver 3.06 3.31 0.32 0.07 inf; +trames trame nom f p 0.75 5.41 0.32 0.14 +tramez tramer ver 3.06 3.31 0.03 0.00 imp:pre:2p;ind:pre:2p; +tramontane tramontane nom f s 0.14 0.34 0.14 0.27 +tramontanes tramontane nom f p 0.14 0.34 0.00 0.07 +tramp tramp nom m s 0.04 0.00 0.04 0.00 +trampoline trampoline nom s 1.17 0.14 1.17 0.14 +trams tram nom m p 5.73 2.30 0.22 0.61 +tramé tramer ver m s 3.06 3.31 0.06 0.41 par:pas; +tramés tramer ver m p 3.06 3.31 0.00 0.07 par:pas; +tramway tramway nom m s 0.17 7.64 0.17 5.54 +tramways tramway nom m p 0.17 7.64 0.00 2.09 +trancha trancher ver 11.97 24.73 0.02 4.39 ind:pas:3s; +tranchage tranchage nom m s 0.01 0.07 0.01 0.07 +tranchai trancher ver 11.97 24.73 0.01 0.07 ind:pas:1s; +tranchaient trancher ver 11.97 24.73 0.01 0.95 ind:imp:3p; +tranchais trancher ver 11.97 24.73 0.23 0.00 ind:imp:1s; +tranchait trancher ver 11.97 24.73 0.05 2.43 ind:imp:3s; +tranchant tranchant adj m s 2.54 5.27 1.49 2.43 +tranchante tranchant adj f s 2.54 5.27 0.62 1.96 +tranchantes tranchant adj f p 2.54 5.27 0.23 0.41 +tranchants tranchant adj m p 2.54 5.27 0.20 0.47 +tranche_montagne tranche_montagne nom m s 0.28 0.07 0.28 0.07 +tranche tranche nom f s 6.95 21.82 5.28 11.08 +tranchecaille tranchecaille nom f s 0.00 0.07 0.00 0.07 +tranchelards tranchelard nom m p 0.00 0.07 0.00 0.07 +tranchent trancher ver 11.97 24.73 0.18 0.81 ind:pre:3p; +trancher trancher ver 11.97 24.73 3.88 5.07 inf; +tranchera trancher ver 11.97 24.73 0.26 0.14 ind:fut:3s; +trancherai trancher ver 11.97 24.73 0.23 0.20 ind:fut:1s; +trancherais trancher ver 11.97 24.73 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +trancherait trancher ver 11.97 24.73 0.17 0.27 cnd:pre:3s; +trancheras trancher ver 11.97 24.73 0.16 0.00 ind:fut:2s; +trancheront trancher ver 11.97 24.73 0.06 0.00 ind:fut:3p; +tranches tranche nom f p 6.95 21.82 1.68 10.74 +tranchet tranchet nom m s 0.00 0.27 0.00 0.20 +tranchets tranchet nom m p 0.00 0.27 0.00 0.07 +trancheur trancheur nom m s 0.19 0.00 0.15 0.00 +trancheuse trancheur nom f s 0.19 0.00 0.04 0.00 +tranchez trancher ver 11.97 24.73 0.24 0.00 imp:pre:2p; +tranchiez trancher ver 11.97 24.73 0.01 0.00 ind:imp:2p; +tranchoir tranchoir nom m s 0.03 0.34 0.01 0.14 +tranchoirs tranchoir nom m p 0.03 0.34 0.01 0.20 +tranchons trancher ver 11.97 24.73 0.06 0.14 imp:pre:1p;ind:pre:1p; +tranchât trancher ver 11.97 24.73 0.00 0.14 sub:imp:3s; +tranchèrent trancher ver 11.97 24.73 0.03 0.00 ind:pas:3p; +tranché trancher ver m s 11.97 24.73 2.51 2.91 par:pas; +tranchée_abri tranchée_abri nom f s 0.00 0.81 0.00 0.74 +tranchée tranchée nom f s 6.22 33.72 3.70 21.55 +tranchée_abri tranchée_abri nom f p 0.00 0.81 0.00 0.07 +tranchées tranchée nom f p 6.22 33.72 2.52 12.16 +tranchés tranché adj m p 2.13 3.72 0.05 0.34 +tranquille tranquille adj s 119.69 91.96 103.28 77.50 +tranquillement tranquillement adv 13.26 26.82 13.26 26.82 +tranquilles tranquille adj p 119.69 91.96 16.41 14.46 +tranquillisa tranquilliser ver 1.22 2.09 0.00 0.07 ind:pas:3s; +tranquillisai tranquilliser ver 1.22 2.09 0.01 0.07 ind:pas:1s; +tranquillisaient tranquilliser ver 1.22 2.09 0.00 0.07 ind:imp:3p; +tranquillisait tranquilliser ver 1.22 2.09 0.01 0.34 ind:imp:3s; +tranquillisant tranquillisant nom m s 2.33 1.01 0.86 0.14 +tranquillisante tranquillisant adj f s 0.51 0.20 0.17 0.07 +tranquillisantes tranquillisant adj f p 0.51 0.20 0.06 0.00 +tranquillisants tranquillisant nom m p 2.33 1.01 1.46 0.88 +tranquillise tranquilliser ver 1.22 2.09 0.31 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tranquillisent tranquilliser ver 1.22 2.09 0.01 0.07 ind:pre:3p; +tranquilliser tranquilliser ver 1.22 2.09 0.65 0.20 inf; +tranquillisera tranquilliser ver 1.22 2.09 0.11 0.00 ind:fut:3s; +tranquilliserait tranquilliser ver 1.22 2.09 0.01 0.07 cnd:pre:3s; +tranquillises tranquilliser ver 1.22 2.09 0.01 0.07 ind:pre:2s; +tranquillisez tranquilliser ver 1.22 2.09 0.01 0.14 imp:pre:2p;ind:pre:2p; +tranquillisé tranquilliser ver m s 1.22 2.09 0.03 0.14 par:pas; +tranquillisée tranquilliser ver f s 1.22 2.09 0.03 0.47 par:pas; +tranquillisés tranquilliser ver m p 1.22 2.09 0.00 0.14 par:pas; +tranquillité tranquillité nom f s 4.68 11.01 4.68 10.81 +tranquillités tranquillité nom f p 4.68 11.01 0.00 0.20 +tranquillos tranquillos adv 0.00 0.81 0.00 0.81 +trans trans adv 0.16 0.00 0.16 0.00 +transaction transaction nom f s 4.47 1.28 3.26 0.34 +transactionnelle transactionnel adj f s 0.00 0.07 0.00 0.07 +transactions transaction nom f p 4.47 1.28 1.21 0.95 +transafricain transafricain adj m s 0.00 0.07 0.00 0.07 +transalpines transalpin adj f p 0.00 0.07 0.00 0.07 +transamazonienne transamazonien adj f s 0.00 0.14 0.00 0.14 +transaminase transaminase nom f s 0.03 0.07 0.01 0.00 +transaminases transaminase nom f p 0.03 0.07 0.01 0.07 +transat transat nom s 0.31 1.49 0.16 0.88 +transatlantique transatlantique nom m s 0.19 2.50 0.19 2.09 +transatlantiques transatlantique adj p 0.12 1.01 0.05 0.34 +transats transat nom p 0.31 1.49 0.15 0.61 +transbahutaient transbahuter ver 0.04 1.42 0.00 0.07 ind:imp:3p; +transbahutant transbahuter ver 0.04 1.42 0.01 0.34 par:pre; +transbahute transbahuter ver 0.04 1.42 0.00 0.14 ind:pre:3s; +transbahutent transbahuter ver 0.04 1.42 0.00 0.07 ind:pre:3p; +transbahuter transbahuter ver 0.04 1.42 0.03 0.27 inf; +transbahutez transbahuter ver 0.04 1.42 0.00 0.07 ind:pre:2p; +transbahuté transbahuter ver m s 0.04 1.42 0.00 0.34 par:pas; +transbahutée transbahuter ver f s 0.04 1.42 0.00 0.07 par:pas; +transbahutés transbahuter ver m p 0.04 1.42 0.00 0.07 par:pas; +transbordement transbordement nom m s 0.06 0.61 0.06 0.41 +transbordements transbordement nom m p 0.06 0.61 0.00 0.20 +transborder transborder ver 0.02 0.14 0.01 0.07 inf; +transbordeur transbordeur nom m s 0.04 0.20 0.04 0.20 +transbordé transborder ver m s 0.02 0.14 0.01 0.07 par:pas; +transcanadienne transcanadienne adj f s 0.03 0.00 0.03 0.00 +transcaspien transcaspien adj m s 0.00 0.07 0.00 0.07 +transcendance transcendance nom f s 0.04 0.61 0.04 0.61 +transcendant transcendant adj m s 0.33 0.68 0.13 0.41 +transcendantal transcendantal adj m s 0.08 0.95 0.00 0.54 +transcendantale transcendantal adj f s 0.08 0.95 0.08 0.34 +transcendantales transcendantal adj f p 0.08 0.95 0.00 0.07 +transcendantalistes transcendantaliste nom p 0.01 0.07 0.01 0.07 +transcendante transcendant adj f s 0.33 0.68 0.15 0.27 +transcendantes transcendant adj f p 0.33 0.68 0.03 0.00 +transcendants transcendant adj m p 0.33 0.68 0.02 0.00 +transcende transcender ver 2.83 0.61 0.46 0.14 imp:pre:2s;ind:pre:3s; +transcendent transcender ver 2.83 0.61 1.84 0.00 ind:pre:3p; +transcender transcender ver 2.83 0.61 0.29 0.20 inf; +transcendons transcender ver 2.83 0.61 0.01 0.00 imp:pre:1p; +transcendé transcender ver m s 2.83 0.61 0.18 0.14 par:pas; +transcendée transcender ver f s 2.83 0.61 0.01 0.07 par:pas; +transcontinental transcontinental adj m s 0.13 0.07 0.09 0.07 +transcontinentale transcontinental adj f s 0.13 0.07 0.05 0.00 +transcriptase transcriptase nom f s 0.12 0.00 0.12 0.00 +transcripteur transcripteur nom m s 0.01 0.00 0.01 0.00 +transcription transcription nom f s 1.24 1.15 0.84 1.08 +transcriptions transcription nom f p 1.24 1.15 0.40 0.07 +transcrire transcrire ver 0.71 3.51 0.35 0.88 inf; +transcris transcrire ver 0.71 3.51 0.01 0.41 imp:pre:2s;ind:pre:1s; +transcrit transcrire ver m s 0.71 3.51 0.24 0.61 ind:pre:3s;par:pas; +transcrite transcrire ver f s 0.71 3.51 0.02 0.20 par:pas; +transcrites transcrire ver f p 0.71 3.51 0.01 0.14 par:pas; +transcrits transcrire ver m p 0.71 3.51 0.01 0.27 par:pas; +transcrivaient transcrire ver 0.71 3.51 0.00 0.07 ind:imp:3p; +transcrivais transcrire ver 0.71 3.51 0.02 0.07 ind:imp:1s; +transcrivait transcrire ver 0.71 3.51 0.00 0.47 ind:imp:3s; +transcrivant transcrire ver 0.71 3.51 0.00 0.20 par:pre; +transcrive transcrire ver 0.71 3.51 0.01 0.07 sub:pre:1s; +transcrivez transcrire ver 0.71 3.51 0.03 0.00 imp:pre:2p;ind:pre:2p; +transcrivis transcrire ver 0.71 3.51 0.00 0.07 ind:pas:1s; +transcrivit transcrire ver 0.71 3.51 0.00 0.07 ind:pas:3s; +transcutané transcutané adj m s 0.03 0.00 0.03 0.00 +transdermique transdermique adj f s 0.01 0.00 0.01 0.00 +transducteur transducteur nom m s 0.06 0.00 0.04 0.00 +transducteurs transducteur nom m p 0.06 0.00 0.02 0.00 +transduction transduction nom f s 0.03 0.00 0.03 0.00 +transe transe nom f s 2.49 5.14 2.41 3.51 +transept transept nom m s 0.01 1.01 0.00 0.88 +transepts transept nom m p 0.01 1.01 0.01 0.14 +transes transe nom f p 2.49 5.14 0.08 1.62 +transfert transfert nom m s 11.07 3.85 10.14 3.31 +transferts transfert nom m p 11.07 3.85 0.94 0.54 +transfigura transfigurer ver 0.28 5.07 0.00 0.14 ind:pas:3s; +transfiguraient transfigurer ver 0.28 5.07 0.00 0.14 ind:imp:3p; +transfigurait transfigurer ver 0.28 5.07 0.00 1.01 ind:imp:3s; +transfigurant transfigurer ver 0.28 5.07 0.10 0.14 par:pre; +transfiguration transfiguration nom f s 0.25 0.88 0.25 0.81 +transfigurations transfiguration nom f p 0.25 0.88 0.00 0.07 +transfiguratrice transfigurateur nom f s 0.00 0.07 0.00 0.07 +transfigure transfigurer ver 0.28 5.07 0.01 0.47 imp:pre:2s;ind:pre:3s; +transfigurent transfigurer ver 0.28 5.07 0.00 0.27 ind:pre:3p; +transfigurer transfigurer ver 0.28 5.07 0.00 0.47 inf; +transfigurerait transfigurer ver 0.28 5.07 0.00 0.07 cnd:pre:3s; +transfigurez transfigurer ver 0.28 5.07 0.14 0.00 imp:pre:2p; +transfiguré transfigurer ver m s 0.28 5.07 0.01 1.35 par:pas; +transfigurée transfigurer ver f s 0.28 5.07 0.01 0.61 par:pas; +transfigurées transfigurer ver f p 0.28 5.07 0.00 0.14 par:pas; +transfigurés transfigurer ver m p 0.28 5.07 0.02 0.27 par:pas; +transfilaient transfiler ver 0.00 0.14 0.00 0.07 ind:imp:3p; +transfilée transfiler ver f s 0.00 0.14 0.00 0.07 par:pas; +transfo transfo nom m s 0.34 0.00 0.24 0.00 +transforma transformer ver 42.14 60.68 0.50 3.11 ind:pas:3s; +transformable transformable adj s 0.01 0.14 0.01 0.14 +transformai transformer ver 42.14 60.68 0.01 0.34 ind:pas:1s; +transformaient transformer ver 42.14 60.68 0.35 2.77 ind:imp:3p; +transformais transformer ver 42.14 60.68 0.13 0.14 ind:imp:1s;ind:imp:2s; +transformait transformer ver 42.14 60.68 0.67 7.36 ind:imp:3s; +transformant transformer ver 42.14 60.68 0.77 1.89 par:pre; +transformas transformer ver 42.14 60.68 0.00 0.07 ind:pas:2s; +transformateur transformateur nom m s 0.64 0.47 0.43 0.34 +transformateurs transformateur nom m p 0.64 0.47 0.22 0.14 +transformation transformation nom f s 4.48 6.22 3.12 4.39 +transformations transformation nom f p 4.48 6.22 1.36 1.82 +transformatrice transformateur adj f s 0.11 0.14 0.01 0.00 +transforme transformer ver 42.14 60.68 9.38 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +transforment transformer ver 42.14 60.68 1.76 1.82 ind:pre:3p; +transformer transformer ver 42.14 60.68 11.79 13.99 inf; +transformera transformer ver 42.14 60.68 0.66 0.34 ind:fut:3s; +transformerai transformer ver 42.14 60.68 0.42 0.00 ind:fut:1s; +transformeraient transformer ver 42.14 60.68 0.05 0.14 cnd:pre:3p; +transformerais transformer ver 42.14 60.68 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +transformerait transformer ver 42.14 60.68 0.15 0.54 cnd:pre:3s; +transformeras transformer ver 42.14 60.68 0.05 0.07 ind:fut:2s; +transformeriez transformer ver 42.14 60.68 0.04 0.00 cnd:pre:2p; +transformerons transformer ver 42.14 60.68 0.04 0.00 ind:fut:1p; +transformeront transformer ver 42.14 60.68 0.34 0.14 ind:fut:3p; +transformes transformer ver 42.14 60.68 0.70 0.14 ind:pre:2s; +transformez transformer ver 42.14 60.68 0.99 0.14 imp:pre:2p;ind:pre:2p; +transformiez transformer ver 42.14 60.68 0.04 0.00 ind:imp:2p; +transformiste transformiste nom s 0.19 0.00 0.19 0.00 +transformons transformer ver 42.14 60.68 0.23 0.07 imp:pre:1p;ind:pre:1p; +transformât transformer ver 42.14 60.68 0.00 0.34 sub:imp:3s; +transformèrent transformer ver 42.14 60.68 0.03 0.27 ind:pas:3p; +transformé transformer ver m s 42.14 60.68 8.41 10.20 par:pas; +transformée transformer ver f s 42.14 60.68 2.50 6.69 par:pas; +transformées transformer ver f p 42.14 60.68 0.36 1.49 par:pas; +transformés transformer ver m p 42.14 60.68 1.74 1.89 par:pas; +transfos transfo nom m p 0.34 0.00 0.10 0.00 +transfère transférer ver 18.40 5.20 2.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transfèrement transfèrement nom m s 0.00 0.27 0.00 0.14 +transfèrements transfèrement nom m p 0.00 0.27 0.00 0.14 +transfèrent transférer ver 18.40 5.20 0.34 0.00 ind:pre:3p; +transfuge transfuge nom m s 0.60 1.15 0.41 0.47 +transfuges transfuge nom m p 0.60 1.15 0.20 0.68 +transféra transférer ver 18.40 5.20 0.02 0.00 ind:pas:3s; +transférable transférable adj s 0.02 0.00 0.02 0.00 +transféraient transférer ver 18.40 5.20 0.01 0.07 ind:imp:3p; +transférais transférer ver 18.40 5.20 0.01 0.07 ind:imp:1s;ind:imp:2s; +transférait transférer ver 18.40 5.20 0.09 0.27 ind:imp:3s; +transférant transférer ver 18.40 5.20 0.09 0.07 par:pre; +transférer transférer ver 18.40 5.20 4.67 0.88 inf; +transférera transférer ver 18.40 5.20 0.05 0.00 ind:fut:3s; +transférerai transférer ver 18.40 5.20 0.30 0.00 ind:fut:1s; +transférerait transférer ver 18.40 5.20 0.02 0.00 cnd:pre:3s; +transféreras transférer ver 18.40 5.20 0.01 0.00 ind:fut:2s; +transférerez transférer ver 18.40 5.20 0.01 0.00 ind:fut:2p; +transférerons transférer ver 18.40 5.20 0.11 0.00 ind:fut:1p; +transféreront transférer ver 18.40 5.20 0.05 0.00 ind:fut:3p; +transférez transférer ver 18.40 5.20 0.80 0.00 imp:pre:2p;ind:pre:2p; +transfériez transférer ver 18.40 5.20 0.03 0.00 ind:imp:2p; +transférâmes transférer ver 18.40 5.20 0.00 0.07 ind:pas:1p; +transférons transférer ver 18.40 5.20 0.20 0.00 imp:pre:1p;ind:pre:1p; +transférèrent transférer ver 18.40 5.20 0.01 0.07 ind:pas:3p; +transféré transférer ver m s 18.40 5.20 6.51 2.09 par:pas; +transférée transférer ver f s 18.40 5.20 1.69 0.88 par:pas; +transférées transférer ver f p 18.40 5.20 0.28 0.07 par:pas; +transférés transférer ver m p 18.40 5.20 1.03 0.41 par:pas; +transfusait transfuser ver 0.33 0.54 0.01 0.14 ind:imp:3s; +transfuse transfuser ver 0.33 0.54 0.06 0.00 imp:pre:2s;ind:pre:3s; +transfuser transfuser ver 0.33 0.54 0.23 0.34 inf; +transfuseur transfuseur nom m s 0.01 0.00 0.01 0.00 +transfusion transfusion nom f s 2.37 1.82 2.02 1.42 +transfusions transfusion nom f p 2.37 1.82 0.35 0.41 +transfusé transfuser ver m s 0.33 0.54 0.03 0.00 par:pas; +transfusée transfusé nom f s 0.01 0.00 0.01 0.00 +transfusés transfuser ver m p 0.33 0.54 0.00 0.07 par:pas; +transgressait transgresser ver 1.58 1.28 0.00 0.14 ind:imp:3s; +transgresse transgresser ver 1.58 1.28 0.12 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transgressent transgresser ver 1.58 1.28 0.04 0.00 ind:pre:3p; +transgresser transgresser ver 1.58 1.28 0.87 0.61 inf; +transgresseur transgresseur nom m s 0.04 0.00 0.04 0.00 +transgressez transgresser ver 1.58 1.28 0.14 0.00 ind:pre:2p; +transgression transgression nom f s 0.95 1.28 0.56 1.08 +transgressions transgression nom f p 0.95 1.28 0.39 0.20 +transgressons transgresser ver 1.58 1.28 0.01 0.07 imp:pre:1p;ind:pre:1p; +transgressé transgresser ver m s 1.58 1.28 0.28 0.27 par:pas; +transgressée transgresser ver f s 1.58 1.28 0.04 0.07 par:pas; +transgressées transgresser ver f p 1.58 1.28 0.07 0.07 par:pas; +transgénique transgénique adj s 0.37 0.00 0.20 0.00 +transgéniques transgénique adj p 0.37 0.00 0.17 0.00 +transhistorique transhistorique adj s 0.00 0.07 0.00 0.07 +transhumait transhumer ver 0.01 0.07 0.00 0.07 ind:imp:3s; +transhumance transhumance nom f s 0.01 0.14 0.01 0.07 +transhumances transhumance nom f p 0.01 0.14 0.00 0.07 +transhumant transhumant adj m s 0.00 0.20 0.00 0.07 +transhumantes transhumant adj f p 0.00 0.20 0.00 0.07 +transhumants transhumant adj m p 0.00 0.20 0.00 0.07 +transhumés transhumer ver m p 0.01 0.07 0.01 0.00 par:pas; +transi transi adj m s 0.53 3.85 0.40 2.43 +transie transi adj f s 0.53 3.85 0.10 0.27 +transies transir ver f p 0.17 2.43 0.02 0.27 par:pas; +transige transiger ver 0.64 1.42 0.08 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transigeait transiger ver 0.64 1.42 0.00 0.20 ind:imp:3s; +transigeant transiger ver 0.64 1.42 0.00 0.07 par:pre; +transigent transiger ver 0.64 1.42 0.00 0.07 ind:pre:3p; +transigeons transiger ver 0.64 1.42 0.02 0.00 imp:pre:1p; +transiger transiger ver 0.64 1.42 0.46 0.74 inf; +transigera transiger ver 0.64 1.42 0.01 0.07 ind:fut:3s; +transigerai transiger ver 0.64 1.42 0.00 0.07 ind:fut:1s; +transigé transiger ver m s 0.64 1.42 0.07 0.20 par:pas; +transillumination transillumination nom f s 0.01 0.00 0.01 0.00 +transir transir ver 0.17 2.43 0.00 0.14 inf; +transis transi adj m p 0.53 3.85 0.02 1.01 +transistor transistor nom m s 1.00 5.07 0.62 3.99 +transistorisées transistorisé adj f p 0.01 0.07 0.00 0.07 +transistorisés transistorisé adj m p 0.01 0.07 0.01 0.00 +transistors transistor nom m p 1.00 5.07 0.38 1.08 +transit transit nom m s 1.64 2.64 1.62 2.50 +transitaient transiter ver 0.44 1.35 0.00 0.14 ind:imp:3p; +transitaire transitaire adj f s 0.04 0.07 0.04 0.00 +transitaires transitaire adj p 0.04 0.07 0.00 0.07 +transitaires transitaire nom p 0.00 0.07 0.00 0.07 +transitais transiter ver 0.44 1.35 0.00 0.07 ind:imp:1s; +transitait transiter ver 0.44 1.35 0.00 0.20 ind:imp:3s; +transitant transiter ver 0.44 1.35 0.00 0.14 par:pre; +transite transiter ver 0.44 1.35 0.08 0.07 imp:pre:2s;ind:pre:3s; +transitent transiter ver 0.44 1.35 0.04 0.00 ind:pre:3p; +transiter transiter ver 0.44 1.35 0.22 0.41 inf; +transitif transitif adj m s 0.04 0.14 0.01 0.14 +transitifs transitif adj m p 0.04 0.14 0.02 0.00 +transition transition nom f s 3.68 8.78 3.45 7.57 +transitionnel transitionnel adj m s 0.04 0.00 0.03 0.00 +transitionnelle transitionnel adj f s 0.04 0.00 0.01 0.00 +transitions transition nom f p 3.68 8.78 0.23 1.22 +transitoire transitoire adj s 0.41 1.42 0.39 1.01 +transitoirement transitoirement adv 0.01 0.00 0.01 0.00 +transitoires transitoire adj f p 0.41 1.42 0.02 0.41 +transits transit nom m p 1.64 2.64 0.03 0.14 +transité transiter ver m s 0.44 1.35 0.10 0.34 par:pas; +translater translater ver 0.01 0.07 0.01 0.00 inf; +translates translater ver 0.01 0.07 0.00 0.07 ind:pre:2s; +translation translation nom f s 0.60 0.47 0.60 0.41 +translations translation nom f p 0.60 0.47 0.00 0.07 +translocation translocation nom f s 0.01 0.00 0.01 0.00 +translucide translucide adj s 0.84 5.88 0.81 4.26 +translucides translucide adj p 0.84 5.88 0.03 1.62 +translucidité translucidité nom f s 0.00 0.14 0.00 0.14 +transmet transmettre ver 25.09 24.39 3.00 2.09 ind:pre:3s; +transmets transmettre ver 25.09 24.39 1.75 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +transmettaient transmettre ver 25.09 24.39 0.03 0.95 ind:imp:3p; +transmettais transmettre ver 25.09 24.39 0.03 0.14 ind:imp:1s; +transmettait transmettre ver 25.09 24.39 0.05 1.89 ind:imp:3s; +transmettant transmettre ver 25.09 24.39 0.32 0.54 par:pre; +transmette transmettre ver 25.09 24.39 0.31 0.27 sub:pre:1s;sub:pre:3s; +transmettent transmettre ver 25.09 24.39 0.75 0.88 ind:pre:3p; +transmetteur transmetteur nom m s 1.83 0.00 1.62 0.00 +transmetteurs transmetteur nom m p 1.83 0.00 0.21 0.00 +transmettez transmettre ver 25.09 24.39 1.61 0.20 imp:pre:2p;ind:pre:2p; +transmettions transmettre ver 25.09 24.39 0.00 0.07 ind:imp:1p; +transmettons transmettre ver 25.09 24.39 0.43 0.00 imp:pre:1p;ind:pre:1p; +transmettra transmettre ver 25.09 24.39 0.74 0.07 ind:fut:3s; +transmettrai transmettre ver 25.09 24.39 1.53 0.20 ind:fut:1s; +transmettrait transmettre ver 25.09 24.39 0.04 0.14 cnd:pre:3s; +transmettras transmettre ver 25.09 24.39 0.07 0.07 ind:fut:2s; +transmettre transmettre ver 25.09 24.39 7.79 7.70 inf; +transmettrez transmettre ver 25.09 24.39 0.12 0.07 ind:fut:2p; +transmettrons transmettre ver 25.09 24.39 0.21 0.00 ind:fut:1p; +transmettront transmettre ver 25.09 24.39 0.08 0.07 ind:fut:3p; +transmigrait transmigrer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +transmigration transmigration nom f s 0.05 0.14 0.05 0.14 +transmigrent transmigrer ver 0.00 0.14 0.00 0.07 ind:pre:3p; +transmirent transmettre ver 25.09 24.39 0.00 0.14 ind:pas:3p; +transmis transmettre ver m 25.09 24.39 5.25 5.27 par:pas; +transmise transmettre ver f s 25.09 24.39 0.61 1.49 par:pas; +transmises transmettre ver f p 25.09 24.39 0.34 1.22 par:pas; +transmissible transmissible adj s 0.39 0.41 0.19 0.34 +transmissibles transmissible adj f p 0.39 0.41 0.20 0.07 +transmission transmission nom f s 9.63 6.55 7.63 3.24 +transmissions transmission nom f p 9.63 6.55 1.99 3.31 +transmit transmettre ver 25.09 24.39 0.04 0.88 ind:pas:3s; +transmuait transmuer ver 0.11 0.54 0.00 0.07 ind:imp:3s; +transmuer transmuer ver 0.11 0.54 0.11 0.00 inf; +transmutait transmuter ver 0.16 0.41 0.01 0.14 ind:imp:3s; +transmutant transmuter ver 0.16 0.41 0.01 0.00 par:pre; +transmutation transmutation nom f s 0.15 1.35 0.10 1.22 +transmutations transmutation nom f p 0.15 1.35 0.05 0.14 +transmute transmuter ver 0.16 0.41 0.01 0.14 ind:pre:1s;ind:pre:3s; +transmutent transmuter ver 0.16 0.41 0.00 0.07 ind:pre:3p; +transmuter transmuter ver 0.16 0.41 0.01 0.00 inf; +transmuté transmuter ver m s 0.16 0.41 0.11 0.07 par:pas; +transmué transmuer ver m s 0.11 0.54 0.00 0.07 par:pas; +transmuée transmuer ver f s 0.11 0.54 0.00 0.20 par:pas; +transmuées transmuer ver f p 0.11 0.54 0.00 0.07 par:pas; +transmués transmuer ver m p 0.11 0.54 0.00 0.14 par:pas; +transnational transnational adj m s 0.02 0.00 0.01 0.00 +transnationaux transnational adj m p 0.02 0.00 0.01 0.00 +transocéanique transocéanique adj s 0.01 0.07 0.01 0.00 +transocéaniques transocéanique adj m p 0.01 0.07 0.00 0.07 +transparaît transparaître ver 0.44 3.72 0.13 0.68 ind:pre:3s; +transparaître transparaître ver 0.44 3.72 0.19 1.15 inf; +transparaissaient transparaître ver 0.44 3.72 0.00 0.07 ind:imp:3p; +transparaissait transparaître ver 0.44 3.72 0.01 1.42 ind:imp:3s; +transparaisse transparaître ver 0.44 3.72 0.11 0.07 sub:pre:3s; +transparaissent transparaître ver 0.44 3.72 0.00 0.34 ind:pre:3p; +transparence transparence nom f s 1.64 11.35 1.59 10.68 +transparences transparence nom f p 1.64 11.35 0.05 0.68 +transparent transparent adj m s 5.48 30.81 2.66 11.89 +transparente transparent adj f s 5.48 30.81 1.69 12.23 +transparentes transparent adj f p 5.48 30.81 0.69 3.92 +transparents transparent adj m p 5.48 30.81 0.45 2.77 +transperce transpercer ver 4.42 8.11 0.82 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transpercent transpercer ver 4.42 8.11 0.05 0.41 ind:pre:3p; +transpercer transpercer ver 4.42 8.11 0.73 0.95 inf; +transpercerai transpercer ver 4.42 8.11 0.13 0.00 ind:fut:1s; +transpercerait transpercer ver 4.42 8.11 0.03 0.07 cnd:pre:3s; +transpercez transpercer ver 4.42 8.11 0.15 0.00 imp:pre:2p;ind:pre:2p; +transpercèrent transpercer ver 4.42 8.11 0.00 0.07 ind:pas:3p; +transpercé transpercer ver m s 4.42 8.11 1.63 2.09 par:pas; +transpercée transpercer ver f s 4.42 8.11 0.32 1.08 par:pas; +transpercées transpercer ver f p 4.42 8.11 0.01 0.14 par:pas; +transpercés transpercer ver m p 4.42 8.11 0.06 0.27 par:pas; +transperça transpercer ver 4.42 8.11 0.35 0.54 ind:pas:3s; +transperçaient transpercer ver 4.42 8.11 0.01 0.41 ind:imp:3p; +transperçait transpercer ver 4.42 8.11 0.02 0.61 ind:imp:3s; +transperçant transpercer ver 4.42 8.11 0.10 0.07 par:pre; +transpira transpirer ver 7.75 10.74 0.00 0.27 ind:pas:3s; +transpiraient transpirer ver 7.75 10.74 0.12 0.47 ind:imp:3p; +transpirais transpirer ver 7.75 10.74 0.10 0.34 ind:imp:1s;ind:imp:2s; +transpirait transpirer ver 7.75 10.74 0.10 3.51 ind:imp:3s; +transpirant transpirer ver 7.75 10.74 0.10 1.01 par:pre; +transpirante transpirant adj f s 0.07 0.61 0.00 0.07 +transpirants transpirant adj m p 0.07 0.61 0.02 0.07 +transpiration transpiration nom f s 0.75 3.24 0.75 3.24 +transpire transpirer ver 7.75 10.74 2.52 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transpirent transpirer ver 7.75 10.74 0.25 0.27 ind:pre:3p; +transpirer transpirer ver 7.75 10.74 1.94 1.96 inf; +transpirera transpirer ver 7.75 10.74 0.18 0.00 ind:fut:3s; +transpirerait transpirer ver 7.75 10.74 0.00 0.07 cnd:pre:3s; +transpires transpirer ver 7.75 10.74 0.84 0.14 ind:pre:2s; +transpirez transpirer ver 7.75 10.74 0.80 0.07 imp:pre:2p;ind:pre:2p; +transpiré transpirer ver m s 7.75 10.74 0.79 0.20 par:pas; +transplantable transplantable adj m s 0.00 0.07 0.00 0.07 +transplantait transplanter ver 0.20 1.08 0.01 0.07 ind:imp:3s; +transplantation transplantation nom f s 2.85 0.20 2.04 0.14 +transplantations transplantation nom f p 2.85 0.20 0.81 0.07 +transplante transplanter ver 0.20 1.08 0.03 0.07 ind:pre:3s; +transplanter transplanter ver 0.20 1.08 0.05 0.34 inf; +transplantons transplanter ver 0.20 1.08 0.01 0.00 ind:pre:1p; +transplants transplant nom m p 0.02 0.00 0.02 0.00 +transplanté transplanter ver m s 0.20 1.08 0.04 0.27 par:pas; +transplantée transplanter ver f s 0.20 1.08 0.03 0.27 par:pas; +transplantées transplanté adj f p 0.07 0.34 0.00 0.07 +transplantés transplanter ver m p 0.20 1.08 0.04 0.07 par:pas; +transpondeur transpondeur nom m s 0.97 0.00 0.97 0.00 +transport transport nom m s 20.34 22.16 13.06 14.12 +transporta transporter ver 22.06 40.88 0.22 1.96 ind:pas:3s; +transportable transportable adj s 0.52 0.61 0.41 0.47 +transportables transportable adj m p 0.52 0.61 0.11 0.14 +transportai transporter ver 22.06 40.88 0.00 0.20 ind:pas:1s; +transportaient transporter ver 22.06 40.88 0.43 1.76 ind:imp:3p; +transportais transporter ver 22.06 40.88 0.21 0.68 ind:imp:1s;ind:imp:2s; +transportait transporter ver 22.06 40.88 1.28 4.86 ind:imp:3s; +transportant transporter ver 22.06 40.88 1.18 1.69 par:pre; +transportation transportation nom f s 0.07 0.00 0.07 0.00 +transporte transporter ver 22.06 40.88 3.56 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +transportent transporter ver 22.06 40.88 0.59 1.28 ind:pre:3p;sub:pre:3p; +transporter transporter ver 22.06 40.88 7.31 10.34 inf; +transportera transporter ver 22.06 40.88 0.16 0.34 ind:fut:3s; +transporteraient transporter ver 22.06 40.88 0.00 0.20 cnd:pre:3p; +transporterais transporter ver 22.06 40.88 0.02 0.07 cnd:pre:1s; +transporterait transporter ver 22.06 40.88 0.01 0.20 cnd:pre:3s; +transporterons transporter ver 22.06 40.88 0.00 0.07 ind:fut:1p; +transporteur transporteur nom m s 2.46 0.74 2.20 0.41 +transporteurs transporteur nom m p 2.46 0.74 0.26 0.34 +transporteuse transporteur adj f s 0.50 0.20 0.01 0.00 +transportez transporter ver 22.06 40.88 1.43 0.54 imp:pre:2p;ind:pre:2p; +transportiez transporter ver 22.06 40.88 0.06 0.07 ind:imp:2p; +transportions transporter ver 22.06 40.88 0.04 0.20 ind:imp:1p; +transportâmes transporter ver 22.06 40.88 0.00 0.14 ind:pas:1p; +transportons transporter ver 22.06 40.88 0.44 0.00 imp:pre:1p;ind:pre:1p; +transportât transporter ver 22.06 40.88 0.00 0.14 sub:imp:3s; +transports transport nom m p 20.34 22.16 7.28 8.04 +transportèrent transporter ver 22.06 40.88 0.00 0.47 ind:pas:3p; +transporté transporter ver m s 22.06 40.88 3.59 6.62 par:pas; +transportée transporter ver f s 22.06 40.88 0.91 3.24 par:pas; +transportées transporter ver f p 22.06 40.88 0.24 1.15 par:pas; +transportés transporter ver m p 22.06 40.88 0.37 1.49 par:pas; +transposable transposable adj m s 0.00 0.14 0.00 0.07 +transposables transposable adj m p 0.00 0.14 0.00 0.07 +transposaient transposer ver 0.36 3.31 0.00 0.27 ind:imp:3p; +transposait transposer ver 0.36 3.31 0.00 0.41 ind:imp:3s; +transposant transposer ver 0.36 3.31 0.01 0.20 par:pre; +transpose transposer ver 0.36 3.31 0.00 0.41 imp:pre:2s;ind:pre:3s; +transposent transposer ver 0.36 3.31 0.00 0.07 ind:pre:3p; +transposer transposer ver 0.36 3.31 0.10 0.81 inf; +transposez transposer ver 0.36 3.31 0.02 0.07 imp:pre:2p;ind:pre:2p; +transposition transposition nom f s 0.41 0.61 0.31 0.34 +transpositions transposition nom f p 0.41 0.61 0.10 0.27 +transposon transposon nom m s 0.04 0.00 0.04 0.00 +transposons transposer ver 0.36 3.31 0.02 0.14 imp:pre:1p;ind:pre:1p;; +transposé transposer ver m s 0.36 3.31 0.08 0.41 par:pas; +transposée transposer ver f s 0.36 3.31 0.12 0.27 par:pas; +transposés transposer ver m p 0.36 3.31 0.01 0.27 par:pas; +transsaharienne transsaharien adj f s 0.00 0.07 0.00 0.07 +transsaharienne transsaharien nom f s 0.00 0.07 0.00 0.07 +transsexualisme transsexualisme nom m s 0.01 0.00 0.01 0.00 +transsexualité transsexualité nom f s 0.01 0.00 0.01 0.00 +transsexuel transsexuel adj m s 0.69 0.14 0.32 0.07 +transsexuelle transsexuel adj f s 0.69 0.14 0.12 0.00 +transsexuels transsexuel adj m p 0.69 0.14 0.26 0.07 +transsibérien transsibérien nom m s 0.11 0.07 0.11 0.07 +transsibérienne transsibérien adj f s 0.02 0.07 0.02 0.07 +transsubstantiation transsubstantiation nom f s 0.03 0.34 0.03 0.34 +transsudait transsuder ver 0.00 0.14 0.00 0.07 ind:imp:3s; +transsudant transsuder ver 0.00 0.14 0.00 0.07 par:pre; +transsudat transsudat nom m s 0.03 0.00 0.03 0.00 +transuranienne transuranien adj f s 0.01 0.00 0.01 0.00 +transvasait transvaser ver 0.31 0.61 0.00 0.20 ind:imp:3s; +transvase transvaser ver 0.31 0.61 0.14 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transvaser transvaser ver 0.31 0.61 0.06 0.14 inf; +transvasons transvaser ver 0.31 0.61 0.10 0.00 ind:pre:1p; +transvasèrent transvaser ver 0.31 0.61 0.00 0.07 ind:pas:3p; +transvasées transvaser ver f p 0.31 0.61 0.00 0.07 par:pas; +transversal transversal adj m s 0.28 2.70 0.06 0.20 +transversale transversal adj f s 0.28 2.70 0.13 1.62 +transversalement transversalement adv 0.01 0.07 0.01 0.07 +transversales transversal adj f p 0.28 2.70 0.08 0.81 +transversaux transversal adj m p 0.28 2.70 0.00 0.07 +transverse transverse adj f s 0.08 0.00 0.08 0.00 +transvestisme transvestisme nom m s 0.02 0.00 0.02 0.00 +transylvain transylvain adj m s 0.00 0.07 0.00 0.07 +transylvanienne transylvanien adj f s 0.01 0.00 0.01 0.00 +trappe trappe nom f s 5.18 6.49 4.86 5.41 +trappes trappe nom f p 5.18 6.49 0.32 1.08 +trappeur trappeur nom m s 1.65 2.03 1.00 1.35 +trappeurs trappeur nom m p 1.65 2.03 0.65 0.68 +trappiste trappiste nom m s 0.12 0.47 0.05 0.27 +trappistes trappiste nom m p 0.12 0.47 0.07 0.20 +trappon trappon nom m s 0.00 0.41 0.00 0.41 +trapèze trapèze nom m s 1.14 3.78 1.10 3.04 +trapèzes trapèze nom m p 1.14 3.78 0.04 0.74 +trapu trapu adj m s 0.42 9.05 0.39 4.86 +trapue trapu adj f s 0.42 9.05 0.02 1.76 +trapues trapu adj f p 0.42 9.05 0.01 0.81 +trapus trapu adj m p 0.42 9.05 0.00 1.62 +trapéziste trapéziste nom s 1.03 1.01 0.95 0.81 +trapézistes trapéziste nom p 1.03 1.01 0.08 0.20 +trapézoïdal trapézoïdal adj m s 0.02 0.68 0.02 0.14 +trapézoïdale trapézoïdal adj f s 0.02 0.68 0.00 0.27 +trapézoïdales trapézoïdal adj f p 0.02 0.68 0.00 0.20 +trapézoïdaux trapézoïdal adj m p 0.02 0.68 0.00 0.07 +trapézoïde trapézoïde adj s 0.08 0.00 0.08 0.00 +traqua traquer ver 13.97 14.39 0.01 0.07 ind:pas:3s; +traquaient traquer ver 13.97 14.39 0.38 0.68 ind:imp:3p; +traquais traquer ver 13.97 14.39 0.19 0.41 ind:imp:1s;ind:imp:2s; +traquait traquer ver 13.97 14.39 0.59 1.22 ind:imp:3s; +traquant traquer ver 13.97 14.39 0.28 0.47 par:pre; +traque traquer ver 13.97 14.39 2.53 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +traquenard traquenard nom m s 1.14 1.89 0.98 1.35 +traquenards traquenard nom m p 1.14 1.89 0.16 0.54 +traquent traquer ver 13.97 14.39 1.22 0.47 ind:pre:3p; +traquer traquer ver 13.97 14.39 3.04 1.96 inf; +traquera traquer ver 13.97 14.39 0.23 0.07 ind:fut:3s; +traquerai traquer ver 13.97 14.39 0.32 0.00 ind:fut:1s; +traquerais traquer ver 13.97 14.39 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +traquerait traquer ver 13.97 14.39 0.04 0.00 cnd:pre:3s; +traquerons traquer ver 13.97 14.39 0.04 0.00 ind:fut:1p; +traqueront traquer ver 13.97 14.39 0.17 0.00 ind:fut:3p; +traques traquer ver 13.97 14.39 0.67 0.00 ind:pre:2s; +traquet traquet nom m s 0.06 0.34 0.06 0.20 +traquets traquet nom m p 0.06 0.34 0.00 0.14 +traqueur traqueur nom m s 0.78 0.68 0.49 0.34 +traqueurs traqueur nom m p 0.78 0.68 0.29 0.27 +traqueuse traqueur nom f s 0.78 0.68 0.00 0.07 +traquez traquer ver 13.97 14.39 0.18 0.00 imp:pre:2p;ind:pre:2p; +traquiez traquer ver 13.97 14.39 0.04 0.00 ind:imp:2p; +traquions traquer ver 13.97 14.39 0.04 0.07 ind:imp:1p; +traquons traquer ver 13.97 14.39 0.12 0.00 imp:pre:1p;ind:pre:1p; +traquèrent traquer ver 13.97 14.39 0.02 0.00 ind:pas:3p; +traqué traquer ver m s 13.97 14.39 2.64 4.53 par:pas; +traquée traquer ver f s 13.97 14.39 0.34 1.49 par:pas; +traquées traquer ver f p 13.97 14.39 0.03 0.07 par:pas; +traqués traquer ver m p 13.97 14.39 0.67 1.82 par:pas; +traça tracer ver 10.49 42.36 0.00 2.36 ind:pas:3s; +traçabilité traçabilité nom f s 0.02 0.00 0.02 0.00 +traçage traçage nom m s 0.29 0.00 0.29 0.00 +traçai tracer ver 10.49 42.36 0.00 0.14 ind:pas:1s; +traçaient tracer ver 10.49 42.36 0.02 1.82 ind:imp:3p; +traçais tracer ver 10.49 42.36 0.03 0.41 ind:imp:1s; +traçait tracer ver 10.49 42.36 0.14 3.24 ind:imp:3s; +traçant tracer ver 10.49 42.36 0.15 2.30 par:pre; +traçante traçant adj f s 0.17 0.41 0.02 0.20 +traçantes traçant adj f p 0.17 0.41 0.15 0.20 +traçons tracer ver 10.49 42.36 0.11 0.00 ind:pre:1p; +traçât tracer ver 10.49 42.36 0.00 0.14 sub:imp:3s; +trattoria trattoria nom f s 0.19 0.41 0.19 0.34 +trattorias trattoria nom f p 0.19 0.41 0.00 0.07 +trauma trauma nom m s 4.69 0.47 4.44 0.47 +traumas trauma nom m p 4.69 0.47 0.25 0.00 +traumatique traumatique adj s 0.65 0.07 0.56 0.07 +traumatiques traumatique adj p 0.65 0.07 0.09 0.00 +traumatisant traumatisant adj m s 1.48 0.14 0.85 0.07 +traumatisante traumatisant adj f s 1.48 0.14 0.42 0.00 +traumatisantes traumatisant adj f p 1.48 0.14 0.14 0.07 +traumatisants traumatisant adj m p 1.48 0.14 0.07 0.00 +traumatise traumatiser ver 2.94 1.55 0.20 0.14 ind:pre:3s; +traumatiser traumatiser ver 2.94 1.55 0.24 0.14 inf; +traumatisme traumatisme nom m s 6.69 1.08 6.10 0.88 +traumatismes traumatisme nom m p 6.69 1.08 0.59 0.20 +traumatisé traumatiser ver m s 2.94 1.55 1.20 0.54 par:pas; +traumatisée traumatiser ver f s 2.94 1.55 0.78 0.47 par:pas; +traumatisées traumatiser ver f p 2.94 1.55 0.04 0.00 par:pas; +traumatisés traumatiser ver m p 2.94 1.55 0.43 0.27 par:pas; +traumatologie traumatologie nom f s 0.09 0.00 0.09 0.00 +traumatologique traumatologique adj m s 0.01 0.00 0.01 0.00 +traumatologue traumatologue nom s 0.02 0.00 0.02 0.00 +travail travail nom m s 389.83 263.45 367.43 223.99 +travailla travailler ver 479.48 202.70 0.56 2.09 ind:pas:3s; +travaillai travailler ver 479.48 202.70 0.08 0.27 ind:pas:1s; +travaillaient travailler ver 479.48 202.70 3.02 9.12 ind:imp:3p; +travaillais travailler ver 479.48 202.70 13.68 7.03 ind:imp:1s;ind:imp:2s; +travaillait travailler ver 479.48 202.70 24.57 27.84 ind:imp:3s; +travaillant travailler ver 479.48 202.70 5.39 6.42 par:pre; +travaillassent travailler ver 479.48 202.70 0.00 0.14 sub:imp:3p; +travaille travailler ver 479.48 202.70 149.22 35.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +travaillent travailler ver 479.48 202.70 18.51 8.18 ind:pre:3p; +travailler travailler ver 479.48 202.70 147.83 67.77 ind:pre:2p;inf; +travaillera travailler ver 479.48 202.70 2.11 0.74 ind:fut:3s; +travaillerai travailler ver 479.48 202.70 4.07 1.01 ind:fut:1s; +travailleraient travailler ver 479.48 202.70 0.05 0.20 cnd:pre:3p; +travaillerais travailler ver 479.48 202.70 1.06 0.41 cnd:pre:1s;cnd:pre:2s; +travaillerait travailler ver 479.48 202.70 0.64 1.28 cnd:pre:3s; +travailleras travailler ver 479.48 202.70 1.78 0.81 ind:fut:2s; +travaillerez travailler ver 479.48 202.70 1.12 0.14 ind:fut:2p; +travailleriez travailler ver 479.48 202.70 0.24 0.07 cnd:pre:2p; +travaillerions travailler ver 479.48 202.70 0.05 0.07 cnd:pre:1p; +travaillerons travailler ver 479.48 202.70 1.47 0.41 ind:fut:1p; +travailleront travailler ver 479.48 202.70 0.66 0.14 ind:fut:3p; +travailles travailler ver 479.48 202.70 20.96 3.18 ind:pre:2s; +travailleur travailleur nom m s 10.60 12.57 3.34 2.64 +travailleurs travailleur nom m p 10.60 12.57 7.09 9.46 +travailleuse travailleur adj f s 4.19 3.72 0.32 0.81 +travailleuses travailleur adj f p 4.19 3.72 0.26 0.14 +travaillez travailler ver 479.48 202.70 22.73 3.58 imp:pre:2p;ind:pre:2p; +travailliez travailler ver 479.48 202.70 2.68 0.27 ind:imp:2p; +travaillions travailler ver 479.48 202.70 0.93 1.08 ind:imp:1p; +travailliste travailliste adj m s 0.30 0.41 0.28 0.27 +travaillistes travailliste nom p 0.06 0.54 0.05 0.41 +travaillâmes travailler ver 479.48 202.70 0.00 0.27 ind:pas:1p; +travaillons travailler ver 479.48 202.70 5.99 1.62 imp:pre:1p;ind:pre:1p; +travaillât travailler ver 479.48 202.70 0.00 0.41 sub:imp:3s; +travaillèrent travailler ver 479.48 202.70 0.07 0.54 ind:pas:3p; +travaillé travailler ver m s 479.48 202.70 49.81 20.00 par:pas;par:pas;par:pas; +travaillée travailler ver f s 479.48 202.70 0.20 0.88 par:pas; +travaillées travaillé adj f p 0.79 1.82 0.02 0.34 +travaillés travaillé adj m p 0.79 1.82 0.05 0.41 +travaux travail nom m p 389.83 263.45 22.40 39.46 +trave trave nom f s 0.02 0.07 0.02 0.07 +traveller_s_chèque traveller_s_chèque nom m p 0.04 0.00 0.04 0.00 +traveller traveller nom m s 0.21 0.00 0.12 0.00 +travellers traveller nom m p 0.21 0.00 0.09 0.00 +travelling travelling nom m s 0.71 0.81 0.70 0.61 +travellings travelling nom m p 0.71 0.81 0.01 0.20 +travelo travelo nom m s 1.20 1.08 0.96 0.88 +travelos travelo nom m p 1.20 1.08 0.25 0.20 +travers travers nom m 65.60 247.64 65.60 247.64 +traversa traverser ver 72.26 200.81 0.63 25.00 ind:pas:3s; +traversable traversable adj m s 0.01 0.14 0.01 0.07 +traversables traversable adj p 0.01 0.14 0.00 0.07 +traversai traverser ver 72.26 200.81 0.13 2.77 ind:pas:1s; +traversaient traverser ver 72.26 200.81 0.34 7.91 ind:imp:3p; +traversais traverser ver 72.26 200.81 0.73 2.43 ind:imp:1s;ind:imp:2s; +traversait traverser ver 72.26 200.81 1.73 19.86 ind:imp:3s; +traversant traverser ver 72.26 200.81 2.39 15.07 par:pre; +traverse traverser ver 72.26 200.81 13.53 25.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +traversent traverser ver 72.26 200.81 3.32 7.57 ind:pre:3p; +traverser traverser ver 72.26 200.81 22.74 37.57 inf; +traversera traverser ver 72.26 200.81 0.89 0.68 ind:fut:3s; +traverserai traverser ver 72.26 200.81 0.22 0.27 ind:fut:1s; +traverseraient traverser ver 72.26 200.81 0.07 0.34 cnd:pre:3p; +traverserais traverser ver 72.26 200.81 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +traverserait traverser ver 72.26 200.81 0.18 0.61 cnd:pre:3s; +traverseras traverser ver 72.26 200.81 0.11 0.07 ind:fut:2s; +traverserez traverser ver 72.26 200.81 0.26 0.14 ind:fut:2p; +traverserons traverser ver 72.26 200.81 0.41 0.14 ind:fut:1p; +traverseront traverser ver 72.26 200.81 0.28 0.20 ind:fut:3p; +traverses traverser ver 72.26 200.81 1.69 0.27 ind:pre:2s; +traversez traverser ver 72.26 200.81 2.08 0.54 imp:pre:2p;ind:pre:2p; +traversier traversier nom m s 0.16 0.00 0.16 0.00 +traversiez traverser ver 72.26 200.81 0.16 0.00 ind:imp:2p; +traversin traversin nom m s 0.44 2.57 0.44 2.30 +traversine traversine nom f s 0.00 0.07 0.00 0.07 +traversins traversin nom m p 0.44 2.57 0.00 0.27 +traversions traverser ver 72.26 200.81 0.11 2.36 ind:imp:1p; +traversière traversier adj f s 0.01 0.20 0.01 0.07 +traversières traversier adj f p 0.01 0.20 0.00 0.07 +traversâmes traverser ver 72.26 200.81 0.14 1.42 ind:pas:1p; +traversons traverser ver 72.26 200.81 1.33 2.84 imp:pre:1p;ind:pre:1p; +traversèrent traverser ver 72.26 200.81 0.22 7.30 ind:pas:3p; +traversé traverser ver m s 72.26 200.81 17.34 29.93 par:pas; +traversée traversée nom f s 3.82 14.80 3.75 13.58 +traversées traversée nom f p 3.82 14.80 0.07 1.22 +traversés traverser ver m p 72.26 200.81 0.37 1.76 par:pas; +travertin travertin nom m s 0.09 0.00 0.09 0.00 +travesti travesti nom m s 2.75 1.89 1.63 1.15 +travestie travesti adj f s 0.26 1.01 0.03 0.27 +travesties travestir ver f p 0.39 2.57 0.00 0.14 par:pas; +travestir travestir ver 0.39 2.57 0.22 0.88 inf; +travestis travesti nom m p 2.75 1.89 1.12 0.74 +travestisme travestisme nom m s 0.14 0.00 0.14 0.00 +travestissais travestir ver 0.39 2.57 0.01 0.07 ind:imp:1s; +travestissant travestir ver 0.39 2.57 0.00 0.07 par:pre; +travestissement travestissement nom m s 0.13 0.88 0.13 0.68 +travestissements travestissement nom m p 0.13 0.88 0.00 0.20 +travestissez travestir ver 0.39 2.57 0.01 0.07 ind:pre:2p; +travestit travestir ver 0.39 2.57 0.02 0.14 ind:pre:3s; +travois travois nom m 0.01 0.00 0.01 0.00 +travée travée nom f s 0.11 3.65 0.11 1.55 +travées travée nom f p 0.11 3.65 0.00 2.09 +trax trax nom m 0.01 0.00 0.01 0.00 +trayait traire ver 3.69 4.59 0.00 0.81 ind:imp:3s; +trayant traire ver 3.69 4.59 0.00 0.07 par:pre; +trayeuse trayeur nom f s 0.08 0.14 0.08 0.07 +trayeuses trayeuse nom f p 0.15 0.00 0.15 0.00 +trayon trayon nom m s 0.00 0.27 0.00 0.07 +trayons trayon nom m p 0.00 0.27 0.00 0.20 +trecento trecento nom m s 0.20 0.00 0.20 0.00 +treillage treillage nom m s 0.05 1.22 0.05 1.01 +treillages treillage nom m p 0.05 1.22 0.00 0.20 +treillard treillard nom m s 0.02 0.00 0.02 0.00 +treille treille nom f s 1.66 2.70 1.32 2.03 +treilles treille nom f p 1.66 2.70 0.34 0.68 +treillis treillis nom m 0.45 4.12 0.45 4.12 +treillissé treillisser ver m s 0.00 0.14 0.00 0.07 par:pas; +treillissée treillisser ver f s 0.00 0.14 0.00 0.07 par:pas; +treizaine treizaine nom f s 0.00 0.07 0.00 0.07 +treize treize adj_num 7.00 20.95 7.00 20.95 +treizième treizième adj 0.31 1.01 0.31 1.01 +trek trek nom m s 0.03 0.00 0.03 0.00 +trekkeur trekkeur nom m s 0.01 0.00 0.01 0.00 +trekking trekking nom m s 0.03 0.00 0.03 0.00 +trembla trembler ver 34.13 94.05 0.30 1.55 ind:pas:3s; +tremblai trembler ver 34.13 94.05 0.02 0.20 ind:pas:1s; +tremblaient trembler ver 34.13 94.05 1.00 12.57 ind:imp:3p; +tremblais trembler ver 34.13 94.05 1.44 2.97 ind:imp:1s;ind:imp:2s; +tremblait trembler ver 34.13 94.05 2.00 22.64 ind:imp:3s; +tremblant trembler ver 34.13 94.05 1.30 7.57 par:pre; +tremblante tremblant adj f s 2.91 21.08 1.69 10.47 +tremblantes tremblant adj f p 2.91 21.08 0.19 4.53 +tremblants tremblant adj m p 2.91 21.08 0.31 2.23 +tremble trembler ver 34.13 94.05 10.60 14.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tremblement tremblement nom m s 8.24 20.41 6.39 15.95 +tremblements tremblement nom m p 8.24 20.41 1.85 4.46 +tremblent trembler ver 34.13 94.05 2.65 5.68 ind:pre:3p; +trembler trembler ver 34.13 94.05 6.37 21.96 inf; +tremblera trembler ver 34.13 94.05 0.67 0.00 ind:fut:3s; +tremblerai trembler ver 34.13 94.05 0.01 0.07 ind:fut:1s; +trembleraient trembler ver 34.13 94.05 0.01 0.14 cnd:pre:3p; +tremblerais trembler ver 34.13 94.05 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +tremblerait trembler ver 34.13 94.05 0.05 0.00 cnd:pre:3s; +tremblerons trembler ver 34.13 94.05 0.02 0.00 ind:fut:1p; +trembleront trembler ver 34.13 94.05 0.16 0.07 ind:fut:3p; +trembles trembler ver 34.13 94.05 3.66 0.34 ind:pre:2s; +trembleur trembleur nom m s 0.14 0.00 0.14 0.00 +trembleurs trembleur adj m p 0.01 0.07 0.00 0.07 +tremblez trembler ver 34.13 94.05 2.42 0.27 imp:pre:2p;ind:pre:2p; +trembliez trembler ver 34.13 94.05 0.01 0.00 ind:imp:2p; +tremblions trembler ver 34.13 94.05 0.02 0.07 ind:imp:1p; +tremblochant tremblocher ver 0.00 0.07 0.00 0.07 par:pre; +tremblons trembler ver 34.13 94.05 0.05 0.14 imp:pre:1p;ind:pre:1p; +tremblât trembler ver 34.13 94.05 0.00 0.07 sub:imp:3s; +tremblota trembloter ver 0.09 5.61 0.00 0.14 ind:pas:3s; +tremblotaient trembloter ver 0.09 5.61 0.00 0.47 ind:imp:3p; +tremblotait trembloter ver 0.09 5.61 0.01 1.55 ind:imp:3s; +tremblotant tremblotant adj m s 0.07 3.11 0.06 0.54 +tremblotante tremblotant adj f s 0.07 3.11 0.00 1.35 +tremblotantes tremblotant adj f p 0.07 3.11 0.01 0.61 +tremblotants tremblotant adj m p 0.07 3.11 0.00 0.61 +tremblote tremblote nom f s 0.45 0.95 0.45 0.95 +tremblotement tremblotement nom m s 0.00 0.20 0.00 0.07 +tremblotements tremblotement nom m p 0.00 0.20 0.00 0.14 +tremblotent trembloter ver 0.09 5.61 0.01 0.41 ind:pre:3p; +trembloter trembloter ver 0.09 5.61 0.02 0.47 inf; +trembloté trembloter ver m s 0.09 5.61 0.00 0.07 par:pas; +tremblèrent trembler ver 34.13 94.05 0.10 0.34 ind:pas:3p; +tremblé trembler ver m s 34.13 94.05 1.03 2.30 par:pas; +tremblée tremblé adj f s 0.03 1.49 0.00 0.61 +tremblées tremblé adj f p 0.03 1.49 0.01 0.14 +tremblés trembler ver m p 34.13 94.05 0.14 0.00 par:pas; +tremolos tremolo nom m p 0.00 0.07 0.00 0.07 +trempa tremper ver 15.88 32.16 0.00 1.82 ind:pas:3s; +trempage trempage nom m s 0.21 0.07 0.21 0.00 +trempages trempage nom m p 0.21 0.07 0.00 0.07 +trempai tremper ver 15.88 32.16 0.00 0.14 ind:pas:1s; +trempaient tremper ver 15.88 32.16 0.04 1.08 ind:imp:3p; +trempais tremper ver 15.88 32.16 0.06 0.27 ind:imp:1s;ind:imp:2s; +trempait tremper ver 15.88 32.16 0.40 2.09 ind:imp:3s; +trempant tremper ver 15.88 32.16 0.06 1.76 par:pre; +trempe trempe nom f s 2.26 3.31 2.13 2.70 +trempent tremper ver 15.88 32.16 0.11 0.61 ind:pre:3p; +tremper tremper ver 15.88 32.16 2.98 5.07 inf; +trempera tremper ver 15.88 32.16 0.01 0.00 ind:fut:3s; +tremperaient tremper ver 15.88 32.16 0.00 0.07 cnd:pre:3p; +tremperais tremper ver 15.88 32.16 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +tremperait tremper ver 15.88 32.16 0.01 0.14 cnd:pre:3s; +trempes tremper ver 15.88 32.16 0.45 0.14 ind:pre:2s; +trempette trempette nom f s 0.95 0.41 0.95 0.41 +trempeur trempeur nom m s 0.16 0.00 0.16 0.00 +trempez tremper ver 15.88 32.16 0.22 0.00 imp:pre:2p;ind:pre:2p; +trempions tremper ver 15.88 32.16 0.00 0.07 ind:imp:1p; +tremplin tremplin nom m s 0.36 1.28 0.36 1.28 +trempoline trempoline nom m s 0.00 0.07 0.00 0.07 +trempons tremper ver 15.88 32.16 0.04 0.07 imp:pre:1p;ind:pre:1p; +trempèrent tremper ver 15.88 32.16 0.01 0.20 ind:pas:3p; +trempé tremper ver m s 15.88 32.16 5.37 8.11 par:pas; +trempée tremper ver f s 15.88 32.16 2.59 3.18 par:pas; +trempées tremper ver f p 15.88 32.16 0.41 1.22 par:pas; +trempés tremper ver m p 15.88 32.16 1.28 3.11 par:pas; +trench_coat trench_coat nom m s 0.04 1.55 0.04 1.49 +trench_coat trench_coat nom m p 0.04 1.55 0.00 0.07 +trench trench nom m s 0.41 0.20 0.41 0.20 +trentaine trentaine nom f s 3.23 13.45 3.23 13.45 +trente_cinq trente_cinq adj_num 1.33 11.55 1.33 11.55 +trente_cinquième trente_cinquième adj 0.00 0.14 0.00 0.14 +trente_deux trente_deux adj_num 0.82 3.58 0.82 3.58 +trente_et_quarante trente_et_quarante nom m 0.00 0.07 0.00 0.07 +trente_et_un trente_et_un nom m 0.39 0.07 0.39 0.07 +trente_et_unième trente_et_unième adj 0.00 0.07 0.00 0.07 +trente_huit trente_huit adj_num 0.64 2.64 0.64 2.64 +trente_huitième trente_huitième adj 0.00 0.20 0.00 0.20 +trente_neuf trente_neuf adj_num 0.55 2.16 0.55 2.16 +trente_neuvième trente_neuvième adj 0.01 0.14 0.01 0.14 +trente_quatre trente_quatre adj_num 0.43 1.08 0.43 1.08 +trente_quatrième trente_quatrième adj 0.00 0.07 0.00 0.07 +trente_sept trente_sept adj_num 0.71 2.23 0.71 2.23 +trente_septième trente_septième adj 0.20 0.14 0.20 0.14 +trente_six trente_six adj_num 0.55 6.82 0.55 6.82 +trente_sixième trente_sixième adj 0.02 0.61 0.02 0.61 +trente_trois trente_trois adj_num 0.78 2.36 0.78 2.36 +trente_troisième trente_troisième adj 0.00 0.20 0.00 0.20 +trente trente adj_num 18.91 79.12 18.91 79.12 +trentenaire trentenaire adj s 0.10 0.14 0.08 0.14 +trentenaires trentenaire adj p 0.10 0.14 0.01 0.00 +trentième trentième adj 0.69 0.88 0.69 0.88 +tressa tresser ver 1.15 8.85 0.00 0.07 ind:pas:3s; +tressaient tresser ver 1.15 8.85 0.00 0.41 ind:imp:3p; +tressaillaient tressaillir ver 1.30 13.72 0.00 0.20 ind:imp:3p; +tressaillais tressaillir ver 1.30 13.72 0.00 0.07 ind:imp:1s; +tressaillait tressaillir ver 1.30 13.72 0.00 1.55 ind:imp:3s; +tressaillant tressaillir ver 1.30 13.72 0.01 0.88 par:pre; +tressaille tressaillir ver 1.30 13.72 0.19 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tressaillement tressaillement nom m s 0.36 3.85 0.13 2.36 +tressaillements tressaillement nom m p 0.36 3.85 0.23 1.49 +tressaillent tressaillir ver 1.30 13.72 0.02 0.54 ind:pre:3p; +tressaillez tressaillir ver 1.30 13.72 0.11 0.00 ind:pre:2p; +tressailli tressaillir ver m s 1.30 13.72 0.23 1.22 par:pas; +tressaillir tressaillir ver 1.30 13.72 0.38 4.12 inf; +tressaillira tressaillir ver 1.30 13.72 0.00 0.07 ind:fut:3s; +tressaillirait tressaillir ver 1.30 13.72 0.00 0.07 cnd:pre:3s; +tressaillirent tressaillir ver 1.30 13.72 0.10 0.14 ind:pas:3p; +tressaillis tressaillir ver 1.30 13.72 0.02 0.14 ind:pas:1s;ind:pas:2s; +tressaillit tressaillir ver 1.30 13.72 0.25 3.65 ind:pas:3s; +tressait tresser ver 1.15 8.85 0.00 0.47 ind:imp:3s; +tressant tresser ver 1.15 8.85 0.00 0.41 par:pre; +tressauta tressauter ver 0.03 4.53 0.00 0.27 ind:pas:3s; +tressautaient tressauter ver 0.03 4.53 0.00 0.27 ind:imp:3p; +tressautait tressauter ver 0.03 4.53 0.01 0.95 ind:imp:3s; +tressautant tressauter ver 0.03 4.53 0.00 0.41 par:pre; +tressautante tressautant adj f s 0.00 0.61 0.00 0.27 +tressaute tressauter ver 0.03 4.53 0.01 0.95 ind:pre:1s;ind:pre:3s; +tressautement tressautement nom m s 0.00 0.74 0.00 0.27 +tressautements tressautement nom m p 0.00 0.74 0.00 0.47 +tressautent tressauter ver 0.03 4.53 0.00 0.88 ind:pre:3p; +tressauter tressauter ver 0.03 4.53 0.01 0.68 inf; +tressautera tressauter ver 0.03 4.53 0.00 0.07 ind:fut:3s; +tressautés tressauter ver m p 0.03 4.53 0.00 0.07 par:pas; +tresse tresse nom f s 1.83 4.73 0.77 1.08 +tressent tresser ver 1.15 8.85 0.10 0.14 ind:pre:3p; +tresser tresser ver 1.15 8.85 0.34 1.69 inf; +tresseraient tresser ver 1.15 8.85 0.00 0.07 cnd:pre:3p; +tresseras tresser ver 1.15 8.85 0.01 0.00 ind:fut:2s; +tresses tresse nom f p 1.83 4.73 1.06 3.65 +tresseurs tresseur nom m p 0.00 0.07 0.00 0.07 +tressons tresser ver 1.15 8.85 0.14 0.07 imp:pre:1p;ind:pre:1p; +tressèrent tresser ver 1.15 8.85 0.00 0.07 ind:pas:3p; +tressé tresser ver m s 1.15 8.85 0.13 1.96 par:pas; +tressée tresser ver f s 1.15 8.85 0.17 1.89 par:pas; +tressées tresser ver f p 1.15 8.85 0.00 1.01 par:pas; +tressés tresser ver m p 1.15 8.85 0.20 0.47 par:pas; +treuil treuil nom m s 1.48 2.16 1.34 1.69 +treuiller treuiller ver 0.14 0.00 0.14 0.00 inf; +treuils treuil nom m p 1.48 2.16 0.14 0.47 +tri tri nom m s 1.60 3.04 1.58 2.84 +tria trier ver 3.68 7.84 0.02 0.27 ind:pas:3s; +triade triade nom f s 1.18 0.14 1.05 0.07 +triades triade nom f p 1.18 0.14 0.14 0.07 +triage triage nom m s 1.42 1.55 1.42 1.55 +triaient trier ver 3.68 7.84 0.03 0.14 ind:imp:3p; +triais trier ver 3.68 7.84 0.07 0.41 ind:imp:1s;ind:imp:2s; +triait trier ver 3.68 7.84 0.04 1.28 ind:imp:3s; +trial trial nom m s 0.04 0.47 0.04 0.47 +triangle triangle nom m s 3.83 13.24 3.42 10.68 +triangles triangle nom m p 3.83 13.24 0.41 2.57 +triangulaire triangulaire adj s 0.17 6.62 0.16 4.73 +triangulairement triangulairement adv 0.00 0.07 0.00 0.07 +triangulaires triangulaire adj p 0.17 6.62 0.01 1.89 +triangulation triangulation nom f s 0.20 0.07 0.20 0.07 +trianguler trianguler ver 0.26 0.00 0.23 0.00 inf; +triangulez trianguler ver 0.26 0.00 0.02 0.00 imp:pre:2p; +trianon trianon nom m s 0.00 0.07 0.00 0.07 +triant trier ver 3.68 7.84 0.12 0.07 par:pre; +trias trias nom m 0.01 0.00 0.01 0.00 +triasique triasique adj f s 0.02 0.00 0.02 0.00 +triathlon triathlon nom m s 0.18 0.00 0.18 0.00 +triathlète triathlète nom s 0.03 0.00 0.03 0.00 +tribal tribal adj m s 1.00 1.01 0.28 0.47 +tribale tribal adj f s 1.00 1.01 0.34 0.27 +tribales tribal adj f p 1.00 1.01 0.26 0.14 +tribart tribart nom m s 0.00 0.07 0.00 0.07 +tribaux tribal adj m p 1.00 1.01 0.12 0.14 +tribord tribord nom m s 3.79 1.28 3.79 1.28 +tribu tribu nom f s 11.57 18.24 7.96 13.58 +tribulation tribulation nom f s 0.14 1.69 0.01 0.54 +tribulations tribulation nom f p 0.14 1.69 0.13 1.15 +tribun tribun nom m s 0.37 1.96 0.36 1.49 +tribunal tribunal nom m s 37.98 18.04 35.35 15.00 +tribunat tribunat nom m s 0.34 0.00 0.34 0.00 +tribunaux tribunal nom m p 37.98 18.04 2.62 3.04 +tribune tribune nom f s 2.87 8.99 1.75 6.96 +tribunes tribune nom f p 2.87 8.99 1.12 2.03 +tribuns tribun nom m p 0.37 1.96 0.01 0.47 +tribus tribu nom f p 11.57 18.24 3.62 4.66 +tribut tribut nom m s 0.87 2.16 0.69 2.16 +tributaire tributaire adj f s 0.34 0.61 0.32 0.34 +tributaires tributaire adj p 0.34 0.61 0.02 0.27 +tributs tribut nom m p 0.87 2.16 0.19 0.00 +tric tric nom m s 0.07 0.00 0.07 0.00 +tricard tricard adj m s 0.61 0.61 0.46 0.41 +tricarde tricard adj f s 0.61 0.61 0.01 0.14 +tricards tricard adj m p 0.61 0.61 0.14 0.07 +tricentenaire tricentenaire nom m s 0.05 0.07 0.05 0.07 +triceps triceps nom m 0.34 0.07 0.34 0.07 +tricha tricher ver 16.16 9.73 0.00 0.14 ind:pas:3s; +trichaient tricher ver 16.16 9.73 0.14 0.34 ind:imp:3p; +trichais tricher ver 16.16 9.73 0.20 0.20 ind:imp:1s;ind:imp:2s; +trichait tricher ver 16.16 9.73 0.41 0.81 ind:imp:3s; +trichant tricher ver 16.16 9.73 0.21 0.68 par:pre; +triche tricher ver 16.16 9.73 3.71 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trichent tricher ver 16.16 9.73 0.31 0.14 ind:pre:3p; +tricher tricher ver 16.16 9.73 4.70 4.05 inf; +trichera tricher ver 16.16 9.73 0.16 0.07 ind:fut:3s; +tricherai tricher ver 16.16 9.73 0.18 0.00 ind:fut:1s; +tricherais tricher ver 16.16 9.73 0.01 0.14 cnd:pre:1s;cnd:pre:2s; +tricherait tricher ver 16.16 9.73 0.03 0.00 cnd:pre:3s; +tricherie tricherie nom f s 1.13 1.28 0.76 1.15 +tricheries tricherie nom f p 1.13 1.28 0.37 0.14 +tricheront tricher ver 16.16 9.73 0.00 0.07 ind:fut:3p; +triches tricher ver 16.16 9.73 1.56 0.20 ind:pre:2s; +tricheur tricheur nom m s 3.45 1.01 2.73 0.34 +tricheurs tricheur nom m p 3.45 1.01 0.36 0.61 +tricheuse tricheur nom f s 3.45 1.01 0.35 0.00 +tricheuses tricheur adj f p 0.90 0.27 0.02 0.00 +trichez tricher ver 16.16 9.73 0.65 0.07 imp:pre:2p;ind:pre:2p; +trichiez tricher ver 16.16 9.73 0.06 0.07 ind:imp:2p; +trichinose trichinose nom f s 0.04 0.07 0.04 0.07 +trichloracétique trichloracétique adj m s 0.01 0.00 0.01 0.00 +trichlorure trichlorure nom m s 0.01 0.00 0.01 0.00 +trichloréthylène trichloréthylène nom m s 0.02 0.00 0.02 0.00 +trichons tricher ver 16.16 9.73 0.02 0.20 ind:pre:1p; +trichophyties trichophytie nom f p 0.01 0.00 0.01 0.00 +triché tricher ver m s 16.16 9.73 3.81 0.95 par:pas; +trichée tricher ver f s 16.16 9.73 0.00 0.07 par:pas; +trichées tricher ver f p 16.16 9.73 0.00 0.07 par:pas; +trick trick nom m s 0.35 0.00 0.35 0.00 +tricoises tricoises nom f p 0.00 0.07 0.00 0.07 +tricolore tricolore adj s 0.40 7.50 0.30 6.08 +tricolores tricolore adj p 0.40 7.50 0.10 1.42 +tricorne tricorne nom m s 0.02 0.88 0.01 0.74 +tricornes tricorne nom m p 0.02 0.88 0.01 0.14 +tricot tricot nom m s 1.44 14.19 1.25 11.96 +tricota tricoter ver 3.19 13.04 0.00 0.27 ind:pas:3s; +tricotage tricotage nom m s 0.04 0.41 0.04 0.34 +tricotages tricotage nom m p 0.04 0.41 0.00 0.07 +tricotai tricoter ver 3.19 13.04 0.00 0.07 ind:pas:1s; +tricotaient tricoter ver 3.19 13.04 0.01 0.88 ind:imp:3p; +tricotais tricoter ver 3.19 13.04 0.21 0.07 ind:imp:1s;ind:imp:2s; +tricotait tricoter ver 3.19 13.04 0.23 3.04 ind:imp:3s; +tricotant tricoter ver 3.19 13.04 0.00 1.15 par:pre; +tricote tricoter ver 3.19 13.04 0.65 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tricotent tricoter ver 3.19 13.04 0.04 0.41 ind:pre:3p; +tricoter tricoter ver 3.19 13.04 1.37 3.11 inf; +tricotera tricoter ver 3.19 13.04 0.11 0.00 ind:fut:3s; +tricoterai tricoter ver 3.19 13.04 0.03 0.07 ind:fut:1s; +tricoterait tricoter ver 3.19 13.04 0.01 0.07 cnd:pre:3s; +tricoteras tricoter ver 3.19 13.04 0.00 0.07 ind:fut:2s; +tricoterons tricoter ver 3.19 13.04 0.10 0.00 ind:fut:1p; +tricoteur tricoteur nom m s 0.14 0.68 0.00 0.07 +tricoteuse tricoteur nom f s 0.14 0.68 0.14 0.41 +tricoteuses tricoteur nom f p 0.14 0.68 0.00 0.20 +tricotez tricoter ver 3.19 13.04 0.04 0.00 imp:pre:2p;ind:pre:2p; +tricots tricot nom m p 1.44 14.19 0.19 2.23 +tricoté tricoter ver m s 3.19 13.04 0.35 1.22 par:pas; +tricotée tricoter ver f s 3.19 13.04 0.00 0.41 par:pas; +tricotées tricoter ver f p 3.19 13.04 0.02 0.34 par:pas; +tricotés tricoter ver m p 3.19 13.04 0.01 0.47 par:pas; +trictrac trictrac nom m s 0.14 0.14 0.14 0.14 +tricéphale tricéphale adj f s 0.00 0.27 0.00 0.27 +tricératops tricératops nom m 0.02 0.00 0.02 0.00 +tricuspide tricuspide adj f s 0.07 0.00 0.07 0.00 +tricycle tricycle nom m s 0.52 0.95 0.50 0.61 +tricycles tricycle nom m p 0.52 0.95 0.02 0.34 +tricycliste tricycliste nom s 0.00 0.20 0.00 0.20 +trident trident nom m s 0.13 0.68 0.12 0.68 +tridents trident nom m p 0.13 0.68 0.01 0.00 +tridi tridi nom m s 0.00 0.07 0.00 0.07 +tridimensionnel tridimensionnel adj m s 0.24 0.00 0.17 0.00 +tridimensionnelle tridimensionnel adj f s 0.24 0.00 0.07 0.00 +trie trier ver 3.68 7.84 1.01 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +triennale triennal adj f s 0.00 0.20 0.00 0.14 +triennales triennal adj f p 0.00 0.20 0.00 0.07 +trient trier ver 3.68 7.84 0.05 0.07 ind:pre:3p; +trier trier ver 3.68 7.84 1.08 3.38 inf; +triera trier ver 3.68 7.84 0.01 0.07 ind:fut:3s; +trierait trier ver 3.68 7.84 0.00 0.07 cnd:pre:3s; +trieur trieur nom m s 0.18 0.14 0.05 0.00 +trieurs trieur nom m p 0.18 0.14 0.02 0.00 +trieuse trieur nom f s 0.18 0.14 0.11 0.00 +trieuses trieuse nom f p 0.02 0.00 0.02 0.00 +triez trier ver 3.68 7.84 0.18 0.07 imp:pre:2p;ind:pre:2p; +trifolium trifolium nom m s 0.01 0.07 0.01 0.07 +triforium triforium nom m s 0.00 0.07 0.00 0.07 +trifouillaient trifouiller ver 0.30 1.35 0.00 0.14 ind:imp:3p; +trifouillait trifouiller ver 0.30 1.35 0.00 0.07 ind:imp:3s; +trifouille trifouiller ver 0.30 1.35 0.02 0.41 imp:pre:2s;ind:pre:3s; +trifouiller trifouiller ver 0.30 1.35 0.13 0.41 inf; +trifouillez trifouiller ver 0.30 1.35 0.01 0.00 ind:pre:2p; +trifouillé trifouiller ver m s 0.30 1.35 0.14 0.34 par:pas; +trigger trigger nom m s 0.09 0.00 0.09 0.00 +trigles trigle nom m p 0.00 0.07 0.00 0.07 +triglycéride triglycéride nom m s 0.07 0.07 0.03 0.00 +triglycérides triglycéride nom m p 0.07 0.07 0.05 0.07 +trigonométrie trigonométrie nom f s 0.28 0.20 0.28 0.20 +trigrammes trigramme nom m p 0.01 0.00 0.01 0.00 +trilatérale trilatéral adj f s 0.04 0.07 0.04 0.07 +trilingue trilingue adj s 0.01 0.07 0.01 0.00 +trilingues trilingue adj f p 0.01 0.07 0.00 0.07 +trillant triller ver 0.01 0.14 0.00 0.07 par:pre; +trille trille nom m s 0.30 2.64 0.03 1.01 +trilles trille nom m p 0.30 2.64 0.28 1.62 +trillion trillion nom m s 0.22 0.14 0.06 0.00 +trillions trillion nom m p 0.22 0.14 0.16 0.14 +trillé triller ver m s 0.01 0.14 0.00 0.07 par:pas; +trilobite trilobite nom m s 0.02 0.00 0.02 0.00 +trilobée trilobé adj f s 0.00 0.14 0.00 0.07 +trilobés trilobé adj m p 0.00 0.14 0.00 0.07 +trilogie trilogie nom f s 0.36 0.07 0.36 0.07 +trimait trimer ver 4.38 3.31 0.02 0.34 ind:imp:3s; +trimant trimer ver 4.38 3.31 0.00 0.07 par:pre; +trimard trimard nom m s 0.02 1.76 0.00 0.61 +trimarde trimarder ver 0.00 0.14 0.00 0.07 ind:pre:1s; +trimarder trimarder ver 0.00 0.14 0.00 0.07 inf; +trimardeur trimardeur nom m s 0.03 0.81 0.03 0.61 +trimardeurs trimardeur nom m p 0.03 0.81 0.00 0.20 +trimards trimard nom m p 0.02 1.76 0.02 1.15 +trimbala trimbaler ver 1.62 7.09 0.00 0.07 ind:pas:3s; +trimbalaient trimbaler ver 1.62 7.09 0.00 0.07 ind:imp:3p; +trimbalais trimbaler ver 1.62 7.09 0.00 0.34 ind:imp:1s;ind:imp:2s; +trimbalait trimbaler ver 1.62 7.09 0.06 1.15 ind:imp:3s; +trimbalant trimbaler ver 1.62 7.09 0.11 0.41 par:pre; +trimbale trimbaler ver 1.62 7.09 0.50 1.82 ind:pre:1s;ind:pre:3s;sub:pre:3s; +trimbalent trimbaler ver 1.62 7.09 0.23 0.47 ind:pre:3p; +trimbaler trimbaler ver 1.62 7.09 0.42 1.82 inf; +trimbalerai trimbaler ver 1.62 7.09 0.00 0.07 ind:fut:1s; +trimbalerait trimbaler ver 1.62 7.09 0.01 0.00 cnd:pre:3s; +trimbalerez trimbaler ver 1.62 7.09 0.01 0.00 ind:fut:2p; +trimbales trimbaler ver 1.62 7.09 0.13 0.20 ind:pre:2s; +trimbalez trimbaler ver 1.62 7.09 0.02 0.00 ind:pre:2p; +trimballage trimballage nom m s 0.01 0.00 0.01 0.00 +trimballaient trimballer ver 3.34 3.11 0.00 0.20 ind:imp:3p; +trimballais trimballer ver 3.34 3.11 0.04 0.34 ind:imp:1s;ind:imp:2s; +trimballait trimballer ver 3.34 3.11 0.09 0.41 ind:imp:3s; +trimballe trimballer ver 3.34 3.11 0.67 0.61 ind:pre:1s;ind:pre:3s; +trimballent trimballer ver 3.34 3.11 0.19 0.14 ind:pre:3p; +trimballer trimballer ver 3.34 3.11 1.16 0.81 inf; +trimballera trimballer ver 3.34 3.11 0.00 0.07 ind:fut:3s; +trimballes trimballer ver 3.34 3.11 0.64 0.00 ind:pre:2s; +trimballez trimballer ver 3.34 3.11 0.05 0.00 ind:pre:2p; +trimballât trimballer ver 3.34 3.11 0.00 0.07 sub:imp:3s; +trimballé trimballer ver m s 3.34 3.11 0.45 0.27 par:pas; +trimballée trimballer ver f s 3.34 3.11 0.04 0.20 par:pas; +trimballés trimballer ver m p 3.34 3.11 0.01 0.00 par:pas; +trimbalons trimbaler ver 1.62 7.09 0.00 0.07 ind:pre:1p; +trimbalé trimbaler ver m s 1.62 7.09 0.12 0.34 par:pas; +trimbalée trimbaler ver f s 1.62 7.09 0.00 0.14 par:pas; +trimbalés trimbaler ver m p 1.62 7.09 0.00 0.14 par:pas; +trime trimer ver 4.38 3.31 1.17 0.74 ind:pre:1s;ind:pre:3s; +triment trimer ver 4.38 3.31 0.23 0.27 ind:pre:3p; +trimer trimer ver 4.38 3.31 1.73 1.28 inf; +trimes trimer ver 4.38 3.31 0.21 0.00 ind:pre:2s; +trimestre trimestre nom m s 2.50 5.54 2.44 4.80 +trimestres trimestre nom m p 2.50 5.54 0.06 0.74 +trimestriel trimestriel adj m s 0.39 0.81 0.26 0.34 +trimestrielle trimestriel adj f s 0.39 0.81 0.02 0.14 +trimestriellement trimestriellement adv 0.04 0.00 0.04 0.00 +trimestrielles trimestriel adj f p 0.39 0.81 0.04 0.14 +trimestriels trimestriel adj m p 0.39 0.81 0.08 0.20 +trimeur trimeur nom m s 0.11 0.14 0.11 0.07 +trimeurs trimeur nom m p 0.11 0.14 0.00 0.07 +trimmer trimmer nom m s 0.02 0.00 0.02 0.00 +trimons trimer ver 4.38 3.31 0.02 0.07 imp:pre:1p;ind:pre:1p; +trimé trimer ver m s 4.38 3.31 1.00 0.54 par:pas; +trinôme trinôme nom m s 0.01 0.00 0.01 0.00 +trinacrie trinacrie nom f s 0.00 0.07 0.00 0.07 +trine trin adj f s 0.04 0.00 0.04 0.00 +tringlaient tringler ver 0.90 1.62 0.00 0.07 ind:imp:3p; +tringlais tringler ver 0.90 1.62 0.02 0.00 ind:imp:1s;ind:imp:2s; +tringlait tringler ver 0.90 1.62 0.02 0.07 ind:imp:3s; +tringle tringle nom f s 0.30 3.18 0.10 1.49 +tringler tringler ver 0.90 1.62 0.66 1.01 inf; +tringlerais tringler ver 0.90 1.62 0.01 0.07 cnd:pre:1s; +tringles tringle nom f p 0.30 3.18 0.20 1.69 +tringlette tringlette nom f s 0.01 0.14 0.01 0.14 +tringlot tringlot nom m s 0.00 0.34 0.00 0.27 +tringlots tringlot nom m p 0.00 0.34 0.00 0.07 +tringlé tringler ver m s 0.90 1.62 0.04 0.14 par:pas; +tringlée tringler ver f s 0.90 1.62 0.07 0.07 par:pas; +trinidadienne trinidadienne adj f s 0.01 0.00 0.01 0.00 +trinidadienne trinidadienne nom f s 0.01 0.00 0.01 0.00 +trinitaire trinitaire adj m s 0.03 0.20 0.03 0.20 +trinitrine trinitrine nom f s 0.13 0.00 0.13 0.00 +trinité trinité nom f s 0.45 0.41 0.45 0.41 +trinqua trinquer ver 12.21 9.19 0.01 0.74 ind:pas:3s; +trinquaient trinquer ver 12.21 9.19 0.01 0.47 ind:imp:3p; +trinquais trinquer ver 12.21 9.19 0.01 0.14 ind:imp:1s;ind:imp:2s; +trinquait trinquer ver 12.21 9.19 0.11 0.54 ind:imp:3s; +trinquant trinquer ver 12.21 9.19 0.00 0.47 par:pre; +trinque trinquer ver 12.21 9.19 2.69 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trinquent trinquer ver 12.21 9.19 0.60 0.61 ind:pre:3p; +trinquer trinquer ver 12.21 9.19 2.95 2.50 inf; +trinquera trinquer ver 12.21 9.19 0.11 0.07 ind:fut:3s; +trinquerai trinquer ver 12.21 9.19 0.05 0.07 ind:fut:1s; +trinquerais trinquer ver 12.21 9.19 0.00 0.07 cnd:pre:1s; +trinquerait trinquer ver 12.21 9.19 0.00 0.07 cnd:pre:3s; +trinqueras trinquer ver 12.21 9.19 0.00 0.07 ind:fut:2s; +trinquerez trinquer ver 12.21 9.19 0.01 0.00 ind:fut:2p; +trinquerons trinquer ver 12.21 9.19 0.16 0.00 ind:fut:1p; +trinques trinquer ver 12.21 9.19 0.19 0.00 ind:pre:2s; +trinquette trinquette nom f s 0.03 0.07 0.03 0.07 +trinquez trinquer ver 12.21 9.19 1.97 0.00 imp:pre:2p;ind:pre:2p; +trinquions trinquer ver 12.21 9.19 0.00 0.20 ind:imp:1p; +trinquâmes trinquer ver 12.21 9.19 0.00 0.07 ind:pas:1p; +trinquons trinquer ver 12.21 9.19 3.04 0.27 imp:pre:1p;ind:pre:1p; +trinquèrent trinquer ver 12.21 9.19 0.00 0.95 ind:pas:3p; +trinqué trinquer ver m s 12.21 9.19 0.30 0.95 par:pas; +trio trio nom m s 2.74 5.47 2.30 5.34 +triode triode nom f s 0.00 0.07 0.00 0.07 +triolet triolet nom m s 0.25 0.27 0.14 0.00 +triolets triolet nom m p 0.25 0.27 0.10 0.27 +triolisme triolisme nom m s 0.01 0.00 0.01 0.00 +triompha triompher ver 7.67 19.19 0.28 1.28 ind:pas:3s; +triomphai triompher ver 7.67 19.19 0.14 0.14 ind:pas:1s; +triomphaient triompher ver 7.67 19.19 0.05 0.54 ind:imp:3p; +triomphais triompher ver 7.67 19.19 0.00 0.14 ind:imp:1s; +triomphait triompher ver 7.67 19.19 0.11 3.65 ind:imp:3s; +triomphal triomphal adj m s 0.79 8.58 0.12 3.51 +triomphale triomphal adj f s 0.79 8.58 0.64 4.26 +triomphalement triomphalement adv 0.03 3.38 0.03 3.38 +triomphales triomphal adj f p 0.79 8.58 0.03 0.74 +triomphalisme triomphalisme nom m s 0.01 0.00 0.01 0.00 +triomphaliste triomphaliste adj s 0.00 0.14 0.00 0.07 +triomphalistes triomphaliste adj p 0.00 0.14 0.00 0.07 +triomphant triomphant adj m s 0.64 12.77 0.14 5.47 +triomphante triomphant adj f s 0.64 12.77 0.43 5.41 +triomphantes triomphant adj f p 0.64 12.77 0.00 0.47 +triomphants triomphant adj m p 0.64 12.77 0.07 1.42 +triomphateur triomphateur nom m s 0.14 0.81 0.13 0.54 +triomphateurs triomphateur nom m p 0.14 0.81 0.01 0.07 +triomphatrice triomphateur nom f s 0.14 0.81 0.00 0.14 +triomphatrices triomphateur nom f p 0.14 0.81 0.00 0.07 +triomphaux triomphal adj m p 0.79 8.58 0.00 0.07 +triomphe triomphe nom m s 9.44 29.19 8.83 27.30 +triomphent triompher ver 7.67 19.19 0.21 0.61 ind:pre:3p; +triompher triompher ver 7.67 19.19 2.75 4.46 inf; +triomphera triompher ver 7.67 19.19 0.20 0.20 ind:fut:3s; +triompherai triompher ver 7.67 19.19 0.04 0.14 ind:fut:1s; +triompherais triompher ver 7.67 19.19 0.01 0.07 cnd:pre:1s; +triompherait triompher ver 7.67 19.19 0.02 0.20 cnd:pre:3s; +triompheras triompher ver 7.67 19.19 0.01 0.07 ind:fut:2s; +triompherez triompher ver 7.67 19.19 0.01 0.00 ind:fut:2p; +triompherions triompher ver 7.67 19.19 0.14 0.00 cnd:pre:1p; +triompherons triompher ver 7.67 19.19 0.13 0.00 ind:fut:1p; +triompheront triompher ver 7.67 19.19 0.03 0.00 ind:fut:3p; +triomphes triomphe nom m p 9.44 29.19 0.61 1.89 +triomphez triompher ver 7.67 19.19 0.04 0.00 ind:pre:2p; +triomphions triompher ver 7.67 19.19 0.03 0.00 ind:imp:1p; +triomphâmes triompher ver 7.67 19.19 0.00 0.07 ind:pas:1p; +triomphons triompher ver 7.67 19.19 0.25 0.27 ind:pre:1p; +triomphât triompher ver 7.67 19.19 0.00 0.07 sub:imp:3s; +triomphèrent triompher ver 7.67 19.19 0.01 0.07 ind:pas:3p; +triomphé triompher ver m s 7.67 19.19 1.13 2.43 par:pas; +trional trional nom m s 0.01 0.00 0.01 0.00 +trionix trionix nom m 0.00 0.07 0.00 0.07 +trios trio nom m p 2.74 5.47 0.44 0.14 +trip trip nom m s 4.62 1.22 4.37 1.22 +tripaille tripaille nom f s 0.17 0.88 0.16 0.68 +tripailles tripaille nom f p 0.17 0.88 0.01 0.20 +tripang tripang nom m s 0.02 0.00 0.01 0.00 +tripangs tripang nom m p 0.02 0.00 0.01 0.00 +tripant tripant adj m s 0.03 0.00 0.03 0.00 +tripartite tripartite adj s 0.01 0.74 0.01 0.61 +tripartites tripartite adj f p 0.01 0.74 0.00 0.14 +tripatouillage tripatouillage nom m s 0.00 0.14 0.00 0.07 +tripatouillages tripatouillage nom m p 0.00 0.14 0.00 0.07 +tripatouillant tripatouiller ver 0.07 0.54 0.00 0.07 par:pre; +tripatouillent tripatouiller ver 0.07 0.54 0.00 0.07 ind:pre:3p; +tripatouiller tripatouiller ver 0.07 0.54 0.03 0.27 inf; +tripatouillez tripatouiller ver 0.07 0.54 0.01 0.07 imp:pre:2p;ind:pre:2p; +tripatouillé tripatouiller ver m s 0.07 0.54 0.02 0.00 par:pas; +tripatouillée tripatouiller ver f s 0.07 0.54 0.00 0.07 par:pas; +tripe tripe nom f s 8.75 13.58 0.36 1.42 +triper triper ver 0.05 0.00 0.05 0.00 inf; +triperie triperie nom f s 0.00 0.20 0.00 0.14 +triperies triperie nom f p 0.00 0.20 0.00 0.07 +tripes tripe nom f p 8.75 13.58 8.39 12.16 +tripette tripette nom f s 0.26 0.54 0.26 0.54 +triphasé triphasé adj m s 0.14 0.00 0.14 0.00 +triphosphate triphosphate nom m s 0.01 0.00 0.01 0.00 +tripier tripier nom m s 0.00 0.27 0.00 0.07 +tripiers tripier nom m p 0.00 0.27 0.00 0.07 +tripière tripier nom f s 0.00 0.27 0.00 0.14 +tripla tripler ver 2.08 1.76 0.00 0.20 ind:pas:3s; +triplace triplace adj s 0.00 0.07 0.00 0.07 +triplai tripler ver 2.08 1.76 0.00 0.07 ind:pas:1s; +triplaient tripler ver 2.08 1.76 0.00 0.07 ind:imp:3p; +triplait tripler ver 2.08 1.76 0.01 0.07 ind:imp:3s; +triplant tripler ver 2.08 1.76 0.01 0.07 par:pre; +triple triple adj s 4.94 9.12 4.81 7.77 +triplement triplement adv 0.01 0.00 0.01 0.00 +triplent tripler ver 2.08 1.76 0.01 0.07 ind:pre:3p; +tripler tripler ver 2.08 1.76 0.47 0.27 inf; +triplerais tripler ver 2.08 1.76 0.01 0.07 cnd:pre:1s; +triplerait tripler ver 2.08 1.76 0.03 0.00 cnd:pre:3s; +triples triple adj p 4.94 9.12 0.12 1.35 +triplets triplet nom m p 0.06 0.00 0.06 0.00 +triplette triplette nom f s 0.16 0.00 0.16 0.00 +triplex triplex nom m 0.04 0.00 0.04 0.00 +triplice triplice nom f s 0.14 0.00 0.14 0.00 +triplions tripler ver 2.08 1.76 0.01 0.00 ind:imp:1p; +triploïde triploïde adj f s 0.01 0.00 0.01 0.00 +triplons tripler ver 2.08 1.76 0.01 0.00 ind:pre:1p; +triplèrent tripler ver 2.08 1.76 0.00 0.07 ind:pas:3p; +triplé tripler ver m s 2.08 1.76 1.02 0.54 par:pas; +triplée tripler ver f s 2.08 1.76 0.05 0.07 par:pas; +triplées triplé nom f p 1.54 0.47 0.29 0.20 +triplés triplé nom m p 1.54 0.47 1.15 0.20 +tripode tripode nom m s 0.02 0.00 0.02 0.00 +tripoli tripoli nom m s 0.14 0.07 0.14 0.07 +triporteur triporteur nom m s 0.12 5.61 0.10 5.27 +triporteurs triporteur nom m p 0.12 5.61 0.02 0.34 +tripot tripot nom m s 1.57 1.22 1.09 0.81 +tripota tripoter ver 7.80 7.97 0.00 0.27 ind:pas:3s; +tripotage tripotage nom m s 0.16 0.27 0.03 0.27 +tripotages tripotage nom m p 0.16 0.27 0.14 0.00 +tripotaient tripoter ver 7.80 7.97 0.03 0.34 ind:imp:3p; +tripotais tripoter ver 7.80 7.97 0.04 0.34 ind:imp:1s;ind:imp:2s; +tripotait tripoter ver 7.80 7.97 0.36 0.95 ind:imp:3s; +tripotant tripoter ver 7.80 7.97 0.22 0.74 par:pre; +tripote tripoter ver 7.80 7.97 1.76 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tripotent tripoter ver 7.80 7.97 0.60 0.34 ind:pre:3p;sub:pre:3p; +tripoter tripoter ver 7.80 7.97 3.09 2.30 inf; +tripoterai tripoter ver 7.80 7.97 0.01 0.00 ind:fut:1s; +tripotes tripoter ver 7.80 7.97 0.33 0.07 ind:pre:2s; +tripoteur tripoteur nom m s 0.04 0.00 0.02 0.00 +tripoteuse tripoteur nom f s 0.04 0.00 0.02 0.00 +tripotez tripoter ver 7.80 7.97 0.10 0.07 ind:pre:2p; +tripotiez tripoter ver 7.80 7.97 0.15 0.07 ind:imp:2p; +tripots tripot nom m p 1.57 1.22 0.48 0.41 +tripotèrent tripoter ver 7.80 7.97 0.00 0.07 ind:pas:3p; +tripoté tripoter ver m s 7.80 7.97 0.85 0.54 par:pas; +tripotée tripotée nom f s 0.26 0.27 0.26 0.27 +tripotées tripoter ver f p 7.80 7.97 0.00 0.07 par:pas; +tripotés tripoter ver m p 7.80 7.97 0.03 0.20 par:pas; +tripoux tripoux nom m p 0.00 0.20 0.00 0.20 +trips trip nom m p 4.62 1.22 0.26 0.00 +triptyque triptyque nom m s 0.06 0.74 0.04 0.61 +triptyques triptyque nom m p 0.06 0.74 0.01 0.14 +triquais triquer ver 0.27 0.68 0.00 0.14 ind:imp:1s; +triquait triquer ver 0.27 0.68 0.00 0.07 ind:imp:3s; +trique trique nom f s 2.73 4.46 2.69 4.05 +triqueballe triqueballe nom m s 0.00 0.14 0.00 0.14 +triquer triquer ver 0.27 0.68 0.16 0.41 inf; +triques trique nom f p 2.73 4.46 0.03 0.41 +trirème trirème nom f s 0.00 0.20 0.00 0.14 +trirèmes trirème nom f p 0.00 0.20 0.00 0.07 +tris tri nom m p 1.60 3.04 0.03 0.20 +trisaïeul trisaïeul nom m s 0.14 0.34 0.01 0.20 +trisaïeule trisaïeul nom f s 0.14 0.34 0.00 0.07 +trisaïeuls trisaïeul nom m p 0.14 0.34 0.14 0.07 +trismique trismique adj f s 0.00 0.07 0.00 0.07 +trismégiste trismégiste adj s 0.06 0.07 0.06 0.07 +trismus trismus nom m 0.00 0.07 0.00 0.07 +trisomie trisomie nom f s 0.01 0.00 0.01 0.00 +trisomique trisomique adj s 0.32 0.00 0.32 0.00 +trissait trisser ver 0.02 1.15 0.00 0.14 ind:imp:3s; +trisse trisser ver 0.02 1.15 0.02 0.41 ind:pre:1s;ind:pre:3s; +trissent trisser ver 0.02 1.15 0.00 0.14 ind:pre:3p; +trisser trisser ver 0.02 1.15 0.00 0.41 inf; +trissés trisser ver m p 0.02 1.15 0.00 0.07 par:pas; +triste triste adj s 103.44 105.61 93.03 86.89 +tristement tristement adv 1.67 11.82 1.67 11.82 +tristes triste adj p 103.44 105.61 10.41 18.72 +tristesse tristesse nom f s 13.39 48.72 12.91 46.96 +tristesses tristesse nom f p 13.39 48.72 0.48 1.76 +tristouillard tristouillard adj m s 0.00 0.14 0.00 0.07 +tristouillarde tristouillard adj f s 0.00 0.14 0.00 0.07 +tristouille tristouille adj m s 0.16 0.27 0.16 0.20 +tristouilles tristouille adj p 0.16 0.27 0.00 0.07 +tristounet tristounet adj m s 0.13 0.34 0.09 0.07 +tristounette tristounet adj f s 0.13 0.34 0.02 0.14 +tristounettes tristounet adj f p 0.13 0.34 0.02 0.14 +trièrent trier ver 3.68 7.84 0.00 0.07 ind:pas:3p; +trithéisme trithéisme nom m s 0.00 0.07 0.00 0.07 +trithérapie trithérapie nom f s 0.17 0.00 0.17 0.00 +tritium tritium nom m s 0.11 0.00 0.11 0.00 +triton triton nom m s 0.81 0.27 0.35 0.07 +tritons triton nom m p 0.81 0.27 0.46 0.20 +tritura triturer ver 0.25 5.07 0.00 0.27 ind:pas:3s; +trituraient triturer ver 0.25 5.07 0.01 0.27 ind:imp:3p; +triturais triturer ver 0.25 5.07 0.01 0.14 ind:imp:1s; +triturait triturer ver 0.25 5.07 0.01 1.08 ind:imp:3s; +triturant triturer ver 0.25 5.07 0.00 0.68 par:pre; +trituration trituration nom f s 0.00 0.20 0.00 0.14 +triturations trituration nom f p 0.00 0.20 0.00 0.07 +triture triturer ver 0.25 5.07 0.02 0.47 ind:pre:1s;ind:pre:3s; +triturent triturer ver 0.25 5.07 0.01 0.20 ind:pre:3p; +triturer triturer ver 0.25 5.07 0.14 1.22 inf; +triturera triturer ver 0.25 5.07 0.00 0.07 ind:fut:3s; +triturons triturer ver 0.25 5.07 0.00 0.07 imp:pre:1p; +trituré triturer ver m s 0.25 5.07 0.02 0.20 par:pas; +triturée triturer ver f s 0.25 5.07 0.02 0.14 par:pas; +triturées triturer ver f p 0.25 5.07 0.00 0.14 par:pas; +triturés triturer ver m p 0.25 5.07 0.00 0.14 par:pas; +trié trier ver m s 3.68 7.84 0.39 0.54 par:pas; +triée trier ver f s 3.68 7.84 0.11 0.27 par:pas; +triées trier ver f p 3.68 7.84 0.23 0.07 par:pas; +triumvir triumvir nom m s 0.09 0.00 0.09 0.00 +triumvirat triumvirat nom m s 0.57 0.14 0.57 0.14 +triés trier ver m p 3.68 7.84 0.33 0.81 par:pas; +trivial trivial adj m s 0.61 3.51 0.47 1.28 +triviale trivial adj f s 0.61 3.51 0.09 0.81 +trivialement trivialement adv 0.01 0.07 0.01 0.07 +triviales trivial adj f p 0.61 3.51 0.04 0.81 +trivialiser trivialiser ver 0.03 0.00 0.03 0.00 inf; +trivialité trivialité nom f s 0.03 0.34 0.03 0.27 +trivialités trivialité nom f p 0.03 0.34 0.00 0.07 +triviaux trivial adj m p 0.61 3.51 0.02 0.61 +trivium trivium nom m s 0.04 0.07 0.04 0.07 +troïka troïka nom f s 0.00 0.81 0.00 0.54 +troïkas troïka nom f p 0.00 0.81 0.00 0.27 +trobriandais trobriandais nom m 0.00 0.07 0.00 0.07 +troc troc nom m s 1.08 2.03 1.08 1.76 +trocart trocart nom m s 0.01 0.14 0.01 0.14 +trochaïque trochaïque adj m s 0.00 0.07 0.00 0.07 +trochanter trochanter nom m s 0.02 0.00 0.02 0.00 +troche troche nom f s 0.00 0.14 0.00 0.14 +trochée trochée nom s 0.00 0.14 0.00 0.14 +trochures trochure nom f p 0.00 0.07 0.00 0.07 +trocs troc nom m p 1.08 2.03 0.00 0.27 +troglodyte troglodyte nom m s 0.20 0.68 0.10 0.27 +troglodytes troglodyte nom m p 0.20 0.68 0.10 0.41 +troglodytique troglodytique adj m s 0.01 0.07 0.01 0.00 +troglodytiques troglodytique adj p 0.01 0.07 0.00 0.07 +trogne trogne nom f s 0.07 3.85 0.07 3.18 +trognes trogne nom f p 0.07 3.85 0.00 0.68 +trognon trognon nom m s 0.84 3.38 0.75 2.30 +trognons trognon nom m p 0.84 3.38 0.09 1.08 +trois_deux trois_deux nom m 0.01 0.00 0.01 0.00 +trois_huit trois_huit nom m 0.17 0.00 0.17 0.00 +trois_mâts trois_mâts nom m 0.16 0.47 0.16 0.47 +trois_points trois_points nom m 0.01 0.00 0.01 0.00 +trois_quarts trois_quarts nom m 0.59 0.34 0.59 0.34 +trois_quatre trois_quatre nom m 0.02 0.47 0.02 0.47 +trois_six trois_six nom m 0.01 0.07 0.01 0.07 +trois trois adj_num 380.80 660.34 380.80 660.34 +troisième troisième adj 30.50 57.43 30.47 57.23 +troisièmement troisièmement adv 1.38 0.54 1.38 0.54 +troisièmes troisième nom p 14.60 31.55 0.05 0.20 +troll troll nom m s 2.07 0.27 0.96 0.20 +trolle trolle nom f s 0.00 0.07 0.00 0.07 +trolley trolley nom m s 0.48 0.61 0.48 0.47 +trolleybus trolleybus nom m 0.00 1.08 0.00 1.08 +trolleys trolley nom m p 0.48 0.61 0.00 0.14 +trolls troll nom m p 2.07 0.27 1.11 0.07 +trâlée trâlée nom f s 0.00 0.07 0.00 0.07 +trombe trombe nom f s 0.82 9.32 0.61 7.23 +trombes trombe nom f p 0.82 9.32 0.20 2.09 +trombine trombine nom f s 0.02 1.28 0.01 1.01 +trombines trombine nom f p 0.02 1.28 0.01 0.27 +trombinoscope trombinoscope nom m s 0.07 0.14 0.07 0.14 +tromblon tromblon nom m s 0.06 0.68 0.05 0.20 +tromblons tromblon nom m p 0.06 0.68 0.01 0.47 +trombone trombone nom m s 2.96 1.42 1.78 0.54 +trombones trombone nom m p 2.96 1.42 1.17 0.88 +tromboniste tromboniste nom s 0.01 0.00 0.01 0.00 +trommel trommel nom m s 0.00 0.14 0.00 0.14 +trompa tromper ver 149.09 97.30 0.16 0.61 ind:pas:3s; +trompai tromper ver 149.09 97.30 0.00 0.20 ind:pas:1s; +trompaient tromper ver 149.09 97.30 0.39 1.96 ind:imp:3p; +trompais tromper ver 149.09 97.30 3.19 4.12 ind:imp:1s;ind:imp:2s; +trompait tromper ver 149.09 97.30 3.34 9.39 ind:imp:3s; +trompant tromper ver 149.09 97.30 0.28 1.62 par:pre; +trompe_l_oeil trompe_l_oeil nom m 0.33 2.43 0.33 2.43 +trompe tromper ver 149.09 97.30 27.72 15.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +trompent tromper ver 149.09 97.30 3.43 3.11 ind:pre:3p; +tromper tromper ver 149.09 97.30 27.42 22.16 inf;;inf;;inf;; +trompera tromper ver 149.09 97.30 0.24 0.27 ind:fut:3s; +tromperai tromper ver 149.09 97.30 0.19 0.41 ind:fut:1s; +tromperaient tromper ver 149.09 97.30 0.01 0.14 cnd:pre:3p; +tromperais tromper ver 149.09 97.30 0.36 0.07 cnd:pre:1s;cnd:pre:2s; +tromperait tromper ver 149.09 97.30 0.39 0.61 cnd:pre:3s; +tromperas tromper ver 149.09 97.30 0.39 0.14 ind:fut:2s; +tromperez tromper ver 149.09 97.30 0.06 0.07 ind:fut:2p; +tromperie tromperie nom f s 1.56 2.16 1.17 1.69 +tromperies tromperie nom f p 1.56 2.16 0.39 0.47 +tromperiez tromper ver 149.09 97.30 0.01 0.14 cnd:pre:2p; +tromperons tromper ver 149.09 97.30 0.01 0.00 ind:fut:1p; +tromperont tromper ver 149.09 97.30 0.21 0.14 ind:fut:3p; +trompes tromper ver 149.09 97.30 17.21 3.45 ind:pre:2s;sub:pre:2s; +trompeter trompeter ver 0.10 0.00 0.10 0.00 inf; +trompette trompette nom s 8.02 11.49 5.71 5.61 +trompettes trompette nom p 8.02 11.49 2.31 5.88 +trompettiste trompettiste nom s 0.77 0.68 0.73 0.68 +trompettistes trompettiste nom p 0.77 0.68 0.04 0.00 +trompeur trompeur adj m s 3.10 5.00 0.71 1.28 +trompeurs trompeur adj m p 3.10 5.00 0.59 0.61 +trompeuse trompeur adj f s 3.10 5.00 0.22 2.43 +trompeusement trompeusement adv 0.01 0.27 0.01 0.27 +trompeuses trompeur adj f p 3.10 5.00 1.58 0.68 +trompez tromper ver 149.09 97.30 12.82 2.43 imp:pre:2p;ind:pre:2p; +trompiez tromper ver 149.09 97.30 0.52 0.07 ind:imp:2p; +trompions tromper ver 149.09 97.30 0.14 0.34 ind:imp:1p; +trompâmes tromper ver 149.09 97.30 0.00 0.07 ind:pas:1p; +trompons tromper ver 149.09 97.30 0.25 0.34 imp:pre:1p;ind:pre:1p; +trompât tromper ver 149.09 97.30 0.00 0.54 sub:imp:3s; +trompèrent tromper ver 149.09 97.30 0.00 0.27 ind:pas:3p; +trompé tromper ver m s 149.09 97.30 29.98 17.70 par:pas;par:pas;par:pas; +trompée tromper ver f s 149.09 97.30 12.98 8.11 par:pas; +trompées tromper ver f p 149.09 97.30 0.39 0.41 par:pas; +trompés tromper ver m p 149.09 97.30 7.03 3.04 par:pas; +tronc tronc nom m s 5.81 36.62 4.84 20.74 +tronchais troncher ver 0.09 0.14 0.02 0.00 ind:imp:1s; +tronche tronche nom f s 8.92 25.68 8.25 22.57 +troncher troncher ver 0.09 0.14 0.03 0.07 inf; +tronches tronche nom f p 8.92 25.68 0.67 3.11 +tronché troncher ver m s 0.09 0.14 0.01 0.00 par:pas; +tronchée troncher ver f s 0.09 0.14 0.03 0.07 par:pas; +tronconique tronconique adj s 0.01 0.27 0.01 0.27 +troncs tronc nom m p 5.81 36.62 0.97 15.88 +tronquer tronquer ver 0.06 0.61 0.01 0.07 inf; +tronqué tronqué adj m s 0.08 1.08 0.04 0.34 +tronquée tronquer ver f s 0.06 0.61 0.03 0.27 par:pas; +tronquées tronqué adj f p 0.08 1.08 0.01 0.47 +tronqués tronqué adj m p 0.08 1.08 0.01 0.00 +tronçon tronçon nom m s 0.31 3.99 0.17 2.03 +tronçonnaient tronçonner ver 0.17 0.81 0.00 0.07 ind:imp:3p; +tronçonnait tronçonner ver 0.17 0.81 0.00 0.07 ind:imp:3s; +tronçonne tronçonner ver 0.17 0.81 0.01 0.14 imp:pre:2s;ind:pre:3s; +tronçonner tronçonner ver 0.17 0.81 0.00 0.14 inf; +tronçonneuse tronçonneur nom f s 1.63 1.08 1.63 0.95 +tronçonneuses tronçonneuse nom f p 0.22 0.00 0.22 0.00 +tronçonné tronçonner ver m s 0.17 0.81 0.16 0.07 par:pas; +tronçonnée tronçonner ver f s 0.17 0.81 0.00 0.14 par:pas; +tronçonnées tronçonner ver f p 0.17 0.81 0.00 0.14 par:pas; +tronçonnés tronçonner ver m p 0.17 0.81 0.00 0.07 par:pas; +tronçons tronçon nom m p 0.31 3.99 0.14 1.96 +trop_perçu trop_perçu nom m s 0.01 0.00 0.01 0.00 +trop_plein trop_plein nom m s 0.30 2.64 0.30 2.50 +trop_plein trop_plein nom m p 0.30 2.64 0.00 0.14 +trop trop adv_sup 859.54 790.00 859.54 790.00 +trope trope nom m s 0.00 0.07 0.00 0.07 +trophée trophée nom m s 7.02 4.93 4.85 2.57 +trophées trophée nom m p 7.02 4.93 2.17 2.36 +tropical tropical adj m s 3.28 6.62 1.56 1.28 +tropicale tropical adj f s 3.28 6.62 0.96 2.77 +tropicales tropical adj f p 3.28 6.62 0.45 1.42 +tropicaux tropical adj m p 3.28 6.62 0.30 1.15 +tropique tropique nom m s 1.37 2.43 0.38 0.20 +tropiques tropique nom m p 1.37 2.43 0.99 2.23 +tropisme tropisme nom m s 0.00 0.61 0.00 0.54 +tropismes tropisme nom m p 0.00 0.61 0.00 0.07 +troposphère troposphère nom f s 0.01 0.20 0.01 0.20 +troposphérique troposphérique adj f s 0.00 0.20 0.00 0.14 +troposphériques troposphérique adj p 0.00 0.20 0.00 0.07 +tropézienne tropézien nom f s 0.00 0.14 0.00 0.14 +tropéziens tropézien adj m p 0.00 0.07 0.00 0.07 +troqua troquer ver 1.64 4.73 0.03 0.41 ind:pas:3s; +troquaient troquer ver 1.64 4.73 0.00 0.27 ind:imp:3p; +troquais troquer ver 1.64 4.73 0.00 0.07 ind:imp:1s; +troquait troquer ver 1.64 4.73 0.01 0.20 ind:imp:3s; +troquant troquer ver 1.64 4.73 0.04 0.07 par:pre; +troquas troquer ver 1.64 4.73 0.00 0.07 ind:pas:2s; +troque troquer ver 1.64 4.73 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +troquer troquer ver 1.64 4.73 0.56 2.36 inf; +troquera troquer ver 1.64 4.73 0.01 0.00 ind:fut:3s; +troquerai troquer ver 1.64 4.73 0.11 0.07 ind:fut:1s; +troquerais troquer ver 1.64 4.73 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +troquet troquet nom m s 0.34 6.82 0.33 4.66 +troquets troquet nom m p 0.34 6.82 0.01 2.16 +troquez troquer ver 1.64 4.73 0.17 0.07 imp:pre:2p;ind:pre:2p; +troquèrent troquer ver 1.64 4.73 0.10 0.07 ind:pas:3p; +troqué troquer ver m s 1.64 4.73 0.35 0.74 par:pas; +troquée troquer ver f s 1.64 4.73 0.06 0.07 par:pas; +troquées troquer ver f p 1.64 4.73 0.04 0.14 par:pas; +troqués troquer ver m p 1.64 4.73 0.01 0.07 par:pas; +trot trot nom m s 1.67 10.47 1.66 10.41 +troène troène nom m s 0.02 1.28 0.01 0.07 +troènes troène nom m p 0.02 1.28 0.01 1.22 +trots trot nom m p 1.67 10.47 0.01 0.07 +trotskisme trotskisme nom m s 0.00 0.14 0.00 0.14 +trotskiste trotskiste adj s 0.51 0.68 0.51 0.41 +trotskistes trotskiste nom p 0.03 0.47 0.02 0.41 +trotskystes trotskyste nom p 0.01 0.20 0.01 0.20 +trotta trotter ver 2.66 10.27 0.14 0.20 ind:pas:3s; +trottaient trotter ver 2.66 10.27 0.04 0.74 ind:imp:3p; +trottais trotter ver 2.66 10.27 0.00 0.07 ind:imp:1s; +trottait trotter ver 2.66 10.27 0.54 2.16 ind:imp:3s; +trottant trotter ver 2.66 10.27 0.00 1.08 par:pre; +trotte_menu trotte_menu adj m s 0.00 0.41 0.00 0.41 +trotte trotter ver 2.66 10.27 0.75 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trottent trotter ver 2.66 10.27 0.17 0.81 ind:pre:3p; +trotter trotter ver 2.66 10.27 0.90 2.64 inf; +trottera trotter ver 2.66 10.27 0.01 0.07 ind:fut:3s; +trotterions trotter ver 2.66 10.27 0.00 0.07 cnd:pre:1p; +trottes trotter ver 2.66 10.27 0.01 0.00 ind:pre:2s; +trotteur trotteur nom m s 0.09 0.88 0.01 0.00 +trotteurs trotteur nom m p 0.09 0.88 0.02 0.27 +trotteuse trotteur nom f s 0.09 0.88 0.06 0.54 +trotteuses trotteuse nom f p 0.01 0.00 0.01 0.00 +trottez trotter ver 2.66 10.27 0.03 0.07 imp:pre:2p;ind:pre:2p; +trottignolles trottignolle nom m p 0.00 0.07 0.00 0.07 +trottin trottin nom m s 0.00 0.14 0.00 0.07 +trottina trottiner ver 0.22 7.50 0.00 0.20 ind:pas:3s; +trottinais trottiner ver 0.22 7.50 0.00 0.07 ind:imp:1s; +trottinait trottiner ver 0.22 7.50 0.01 1.55 ind:imp:3s; +trottinant trottiner ver 0.22 7.50 0.01 2.64 par:pre; +trottine trottiner ver 0.22 7.50 0.01 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trottinement trottinement nom m s 0.01 0.81 0.01 0.74 +trottinements trottinement nom m p 0.01 0.81 0.00 0.07 +trottinent trottiner ver 0.22 7.50 0.00 0.20 ind:pre:3p; +trottiner trottiner ver 0.22 7.50 0.03 1.62 inf; +trottinerait trottiner ver 0.22 7.50 0.00 0.07 cnd:pre:3s; +trottinette trottinette nom f s 0.35 0.81 0.32 0.68 +trottinettes trottinette nom f p 0.35 0.81 0.04 0.14 +trottinez trottiner ver 0.22 7.50 0.14 0.00 imp:pre:2p;ind:pre:2p; +trottinions trottiner ver 0.22 7.50 0.00 0.07 ind:imp:1p; +trottins trottin nom m p 0.00 0.14 0.00 0.07 +trottiné trottiner ver m s 0.22 7.50 0.01 0.14 par:pas; +trottions trotter ver 2.66 10.27 0.00 0.14 ind:imp:1p; +trottoir trottoir nom m s 10.87 87.36 9.93 70.54 +trottoirs trottoir nom m p 10.87 87.36 0.94 16.82 +trottons trotter ver 2.66 10.27 0.00 0.14 ind:pre:1p; +trotté trotter ver m s 2.66 10.27 0.09 0.41 par:pas; +trou_du_cul trou_du_cul nom m s 0.43 0.14 0.29 0.14 +trou_trou trou_trou nom m s 0.00 0.34 0.00 0.14 +trou_trou trou_trou nom m p 0.00 0.34 0.00 0.20 +trou trou nom m s 90.72 108.38 75.32 76.08 +troua trouer ver 4.27 11.76 0.00 0.34 ind:pas:3s; +trouai trouer ver 4.27 11.76 0.00 0.07 ind:pas:1s; +trouaient trouer ver 4.27 11.76 0.00 0.81 ind:imp:3p; +trouais trouer ver 4.27 11.76 0.00 0.07 ind:imp:1s; +trouait trouer ver 4.27 11.76 0.01 1.22 ind:imp:3s; +trouant trouer ver 4.27 11.76 0.01 0.74 par:pre; +troubades troubade nom m p 0.00 0.07 0.00 0.07 +troubadour troubadour nom m s 0.84 1.62 0.50 0.68 +troubadours troubadour nom m p 0.84 1.62 0.34 0.95 +troubla troubler ver 16.33 37.97 0.03 3.51 ind:pas:3s; +troublai troubler ver 16.33 37.97 0.00 0.07 ind:pas:1s; +troublaient troubler ver 16.33 37.97 0.01 2.03 ind:imp:3p; +troublais troubler ver 16.33 37.97 0.00 0.14 ind:imp:1s; +troublait troubler ver 16.33 37.97 0.76 4.59 ind:imp:3s; +troublant troublant adj m s 2.74 8.99 1.25 4.19 +troublante troublant adj f s 2.74 8.99 0.93 2.84 +troublantes troublant adj f p 2.74 8.99 0.42 1.08 +troublants troublant adj m p 2.74 8.99 0.14 0.88 +trouble_fête trouble_fête nom p 0.28 0.00 0.28 0.00 +trouble trouble nom m s 12.84 25.68 5.76 18.31 +troublent troubler ver 16.33 37.97 0.53 0.95 ind:pre:3p; +troubler troubler ver 16.33 37.97 2.94 8.45 inf; +troublera troubler ver 16.33 37.97 0.15 0.14 ind:fut:3s; +troublerais troubler ver 16.33 37.97 0.00 0.07 cnd:pre:2s; +troublerait troubler ver 16.33 37.97 0.42 0.41 cnd:pre:3s; +troubleront troubler ver 16.33 37.97 0.01 0.07 ind:fut:3p; +troubles trouble nom m p 12.84 25.68 7.08 7.36 +troublez troubler ver 16.33 37.97 0.50 0.14 imp:pre:2p;ind:pre:2p; +troublât troubler ver 16.33 37.97 0.01 0.14 sub:imp:3s; +troublèrent troubler ver 16.33 37.97 0.00 0.61 ind:pas:3p; +troublé troubler ver m s 16.33 37.97 4.58 7.50 par:pas; +troublée troubler ver f s 16.33 37.97 1.72 3.45 par:pas; +troublées troubler ver f p 16.33 37.97 0.04 0.41 par:pas; +troublés troublé adj m p 3.32 7.97 0.57 1.08 +trouduc trouduc nom m s 3.68 0.41 3.68 0.41 +trouducuteries trouducuterie nom f p 0.00 0.07 0.00 0.07 +troue trouer ver 4.27 11.76 1.30 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trouent trouer ver 4.27 11.76 0.04 0.95 ind:pre:3p; +trouer trouer ver 4.27 11.76 1.32 1.35 inf; +trouerai trouer ver 4.27 11.76 0.02 0.00 ind:fut:1s; +trouerais trouer ver 4.27 11.76 0.03 0.00 cnd:pre:1s; +trouez trouer ver 4.27 11.76 0.30 0.00 imp:pre:2p;ind:pre:2p; +troufignard troufignard nom m s 0.00 0.07 0.00 0.07 +troufignon troufignon nom m s 0.03 0.14 0.02 0.14 +troufignons troufignon nom m p 0.03 0.14 0.01 0.00 +troufion troufion nom m s 1.13 1.76 0.78 0.68 +troufions troufion nom m p 1.13 1.76 0.34 1.08 +trouillait trouiller ver 0.00 0.07 0.00 0.07 ind:imp:3s; +trouillard trouillard nom m s 3.76 1.01 3.34 0.54 +trouillarde trouillard adj f s 1.66 0.54 0.26 0.00 +trouillards trouillard nom m p 3.76 1.01 0.27 0.47 +trouille trouille nom f s 17.43 15.74 16.90 14.46 +trouilles trouille nom f p 17.43 15.74 0.53 1.28 +trouillomètre trouillomètre nom m s 0.14 0.20 0.14 0.20 +troupe troupe nom f s 30.93 105.41 10.30 32.30 +troupeau troupeau nom m s 11.48 25.54 9.73 16.28 +troupeaux troupeau nom m p 11.48 25.54 1.76 9.26 +troupes troupe nom f p 30.93 105.41 20.64 73.11 +troupier troupier nom m s 0.20 1.22 0.06 0.47 +troupiers troupier nom m p 0.20 1.22 0.14 0.74 +trou_du_cul trou_du_cul nom m p 0.43 0.14 0.14 0.00 +trous trou nom m p 90.72 108.38 15.40 32.30 +troussa trousser ver 0.39 2.30 0.00 0.07 ind:pas:3s; +troussaient trousser ver 0.39 2.30 0.00 0.07 ind:imp:3p; +troussait trousser ver 0.39 2.30 0.00 0.34 ind:imp:3s; +troussant trousser ver 0.39 2.30 0.00 0.27 par:pre; +trousse trousse nom f s 8.79 8.92 3.77 4.59 +trousseau trousseau nom m s 2.14 5.95 2.13 5.41 +trousseaux trousseau nom m p 2.14 5.95 0.01 0.54 +troussequin troussequin nom m s 0.00 0.07 0.00 0.07 +trousser trousser ver 0.39 2.30 0.01 0.47 inf; +trousses trousse nom f p 8.79 8.92 5.03 4.32 +trousseur trousseur nom m s 0.00 0.14 0.00 0.14 +troussèrent trousser ver 0.39 2.30 0.00 0.07 ind:pas:3p; +troussé trousser ver m s 0.39 2.30 0.14 0.27 par:pas; +troussée trousser ver f s 0.39 2.30 0.11 0.27 par:pas; +troussées troussé adj f p 0.00 1.01 0.00 0.34 +troussés troussé adj m p 0.00 1.01 0.00 0.14 +trouèrent trouer ver 4.27 11.76 0.00 0.07 ind:pas:3p; +troué trouer ver m s 4.27 11.76 0.89 1.96 imp:pre:2s;par:pas; +trouée trouée nom f s 0.30 5.81 0.27 5.00 +trouées troué adj f p 0.96 5.27 0.43 1.01 +troués troué adj m p 0.96 5.27 0.20 0.74 +trouva trouver ver 1335.49 972.50 4.37 59.53 ind:pas:3s; +trouvable trouvable adj s 0.04 0.07 0.04 0.07 +trouvai trouver ver 1335.49 972.50 1.00 18.51 ind:pas:1s; +trouvaient trouver ver 1335.49 972.50 3.38 36.35 ind:imp:3p; +trouvaille trouvaille nom f s 1.90 7.84 1.38 5.14 +trouvailles trouvaille nom f p 1.90 7.84 0.52 2.70 +trouvais trouver ver 1335.49 972.50 13.84 37.84 ind:imp:1s;ind:imp:2s; +trouvait trouver ver 1335.49 972.50 17.91 149.19 ind:imp:3s; +trouvant trouver ver 1335.49 972.50 2.57 15.14 par:pre; +trouvas trouver ver 1335.49 972.50 0.00 0.14 ind:pas:2s; +trouvasse trouver ver 1335.49 972.50 0.00 0.14 sub:imp:1s; +trouvassent trouver ver 1335.49 972.50 0.00 0.34 sub:imp:3p; +trouve trouver ver 1335.49 972.50 284.45 163.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +trouvent trouver ver 1335.49 972.50 22.04 22.50 ind:pre:3p;sub:pre:3p; +trouver trouver ver 1335.49 972.50 324.94 192.70 inf;;inf;;inf;;inf;; +trouvera trouver ver 1335.49 972.50 29.30 11.42 ind:fut:3s; +trouverai trouver ver 1335.49 972.50 26.27 4.12 ind:fut:1s; +trouveraient trouver ver 1335.49 972.50 0.75 3.58 cnd:pre:3p; +trouverais trouver ver 1335.49 972.50 6.35 4.93 cnd:pre:1s;cnd:pre:2s; +trouverait trouver ver 1335.49 972.50 4.24 15.34 cnd:pre:3s; +trouveras trouver ver 1335.49 972.50 19.10 3.78 ind:fut:2s; +trouverez trouver ver 1335.49 972.50 18.23 5.61 ind:fut:2p; +trouveriez trouver ver 1335.49 972.50 1.05 0.41 cnd:pre:2p; +trouverions trouver ver 1335.49 972.50 0.28 1.08 cnd:pre:1p; +trouverons trouver ver 1335.49 972.50 8.06 1.55 ind:fut:1p; +trouveront trouver ver 1335.49 972.50 6.99 3.45 ind:fut:3p; +trouves trouver ver 1335.49 972.50 70.05 17.91 ind:pre:2s;sub:pre:1p;sub:pre:2s; +trouveur trouveur nom m s 0.03 0.07 0.02 0.00 +trouveurs trouveur nom m p 0.03 0.07 0.01 0.07 +trouvez trouver ver 1335.49 972.50 62.69 14.12 imp:pre:2p;ind:pre:2p; +trouviez trouver ver 1335.49 972.50 2.98 1.01 ind:imp:2p; +trouvions trouver ver 1335.49 972.50 1.39 6.28 ind:imp:1p;sub:pre:1p; +trouvâmes trouver ver 1335.49 972.50 0.28 2.70 ind:pas:1p; +trouvons trouver ver 1335.49 972.50 10.25 4.32 imp:pre:1p;ind:pre:1p; +trouvât trouver ver 1335.49 972.50 0.00 3.85 sub:imp:3s; +trouvère trouvère nom m s 0.20 0.20 0.20 0.07 +trouvèrent trouver ver 1335.49 972.50 0.88 8.31 ind:pas:3p; +trouvères trouvère nom m p 0.20 0.20 0.00 0.14 +trouvé trouver ver m s 1335.49 972.50 339.29 135.74 par:pas;par:pas;par:pas; +trouvée trouver ver f s 1335.49 972.50 36.28 16.42 par:pas; +trouvées trouver ver f p 1335.49 972.50 5.44 2.77 par:pas; +trouvés trouver ver m p 1335.49 972.50 10.85 7.64 par:pas;par:pas;par:pas; +troyen troyen adj m s 0.24 0.14 0.23 0.07 +troyenne troyen adj f s 0.24 0.14 0.01 0.07 +trèfle trèfle nom m s 3.52 5.00 2.75 4.19 +trèfles trèfle nom m p 3.52 5.00 0.78 0.81 +trèpe trèpe nom m s 0.00 1.49 0.00 1.49 +très très adv 1589.92 1120.81 1589.92 1120.81 +truand truand nom m s 5.82 6.49 2.52 2.57 +truandage truandage nom m s 0.00 0.68 0.00 0.54 +truandages truandage nom m p 0.00 0.68 0.00 0.14 +truandaille truandaille nom f s 0.00 0.27 0.00 0.27 +truande truand nom f s 5.82 6.49 0.03 0.14 +truander truander ver 0.35 0.14 0.13 0.00 inf; +truanderie truanderie nom f s 0.00 0.54 0.00 0.54 +truandes truander ver 0.35 0.14 0.02 0.00 ind:pre:2s; +truands truand nom m p 5.82 6.49 3.27 3.72 +truandé truander ver m s 0.35 0.14 0.17 0.07 par:pas; +trublion trublion nom m s 0.09 0.34 0.08 0.14 +trublions trublion nom m p 0.09 0.34 0.01 0.20 +trébucha trébucher ver 4.91 12.64 0.01 1.82 ind:pas:3s; +trébuchai trébucher ver 4.91 12.64 0.01 0.27 ind:pas:1s; +trébuchaient trébucher ver 4.91 12.64 0.00 0.20 ind:imp:3p; +trébuchais trébucher ver 4.91 12.64 0.05 0.27 ind:imp:1s; +trébuchait trébucher ver 4.91 12.64 0.04 1.49 ind:imp:3s; +trébuchant trébucher ver 4.91 12.64 0.23 3.31 par:pre; +trébuchante trébuchant adj f s 0.07 1.55 0.00 0.47 +trébuchantes trébuchant adj f p 0.07 1.55 0.04 0.34 +trébuchants trébuchant adj m p 0.07 1.55 0.00 0.20 +trébuche trébucher ver 4.91 12.64 0.88 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trébuchement trébuchement nom m s 0.02 0.20 0.01 0.07 +trébuchements trébuchement nom m p 0.02 0.20 0.01 0.14 +trébuchent trébucher ver 4.91 12.64 0.13 0.47 ind:pre:3p; +trébucher trébucher ver 4.91 12.64 1.14 1.89 inf; +trébuches trébucher ver 4.91 12.64 0.17 0.00 ind:pre:2s; +trébuchet trébuchet nom m s 0.01 0.27 0.01 0.27 +trébuchez trébucher ver 4.91 12.64 0.05 0.00 imp:pre:2p;ind:pre:2p; +trébuchons trébucher ver 4.91 12.64 0.00 0.34 imp:pre:1p;ind:pre:1p; +trébuché trébucher ver m s 4.91 12.64 2.21 0.74 par:pas; +truc truc nom m s 381.34 87.77 274.94 51.15 +trucage trucage nom m s 0.69 0.41 0.25 0.41 +trucages trucage nom m p 0.69 0.41 0.44 0.00 +truchement truchement nom m s 0.14 2.57 0.14 2.43 +truchements truchement nom m p 0.14 2.57 0.00 0.14 +trucida trucider ver 1.01 1.22 0.00 0.34 ind:pas:3s; +trucidais trucider ver 1.01 1.22 0.00 0.07 ind:imp:1s; +trucidant trucider ver 1.01 1.22 0.00 0.07 par:pre; +trucident trucider ver 1.01 1.22 0.01 0.00 ind:pre:3p; +trucider trucider ver 1.01 1.22 0.43 0.47 inf; +truciderai trucider ver 1.01 1.22 0.03 0.00 ind:fut:1s; +trucides trucider ver 1.01 1.22 0.01 0.00 ind:pre:2s; +trucidons trucider ver 1.01 1.22 0.01 0.00 imp:pre:1p; +trucidé trucider ver m s 1.01 1.22 0.39 0.14 par:pas; +trucidée trucider ver f s 1.01 1.22 0.01 0.14 par:pas; +trucidés trucider ver m p 1.01 1.22 0.12 0.00 par:pas; +truck truck nom m s 0.39 0.07 0.35 0.00 +trucks truck nom m p 0.39 0.07 0.04 0.07 +trucmuche trucmuche nom m s 0.11 0.14 0.11 0.14 +trucs truc nom m p 381.34 87.77 106.41 36.62 +truculence truculence nom f s 0.00 0.27 0.00 0.27 +truculent truculent adj m s 0.02 0.54 0.02 0.27 +truculente truculent adj f s 0.02 0.54 0.00 0.27 +truelle truelle nom f s 0.73 2.43 0.73 2.30 +truelles truelle nom f p 0.73 2.43 0.00 0.14 +truffaient truffer ver 1.29 3.85 0.00 0.14 ind:imp:3p; +truffait truffer ver 1.29 3.85 0.00 0.14 ind:imp:3s; +truffant truffer ver 1.29 3.85 0.03 0.20 par:pre; +truffe truffe nom f s 2.65 4.73 0.82 3.38 +truffer truffer ver 1.29 3.85 0.08 0.14 inf; +truffes truffe nom f p 2.65 4.73 1.83 1.35 +truffier truffier nom m s 0.01 0.34 0.00 0.14 +truffiers truffier nom m p 0.01 0.34 0.01 0.20 +truffons truffer ver 1.29 3.85 0.01 0.00 imp:pre:1p; +truffé truffer ver m s 1.29 3.85 0.69 0.74 par:pas; +truffée truffer ver f s 1.29 3.85 0.27 0.81 par:pas; +truffées truffer ver f p 1.29 3.85 0.02 0.41 par:pas; +truffés truffer ver m p 1.29 3.85 0.12 1.15 par:pas; +tréfilés tréfiler ver m p 0.00 0.07 0.00 0.07 par:pas; +tréflières tréflière nom f p 0.00 0.07 0.00 0.07 +tréfonds tréfonds nom m 0.62 2.91 0.62 2.91 +truie truie nom f s 3.35 2.36 3.16 2.16 +truies truie nom f p 3.35 2.36 0.19 0.20 +truisme truisme nom m s 0.03 0.20 0.02 0.14 +truismes truisme nom m p 0.03 0.20 0.01 0.07 +truite truite nom f s 3.65 7.91 2.35 3.38 +truitelle truitelle nom f s 0.00 0.07 0.00 0.07 +truites truite nom f p 3.65 7.91 1.30 4.53 +tréma tréma nom m s 0.04 0.14 0.02 0.14 +trémail trémail nom m s 0.00 0.14 0.00 0.14 +trémas tréma nom m p 0.04 0.14 0.01 0.00 +trumeau trumeau nom m s 0.01 0.61 0.01 0.34 +trumeaux trumeau nom m p 0.01 0.61 0.00 0.27 +trémie trémie nom f s 0.10 0.41 0.10 0.00 +trémies trémie nom f p 0.10 0.41 0.00 0.41 +trémière trémière adj f s 0.01 1.89 0.00 0.54 +trémières trémière adj f p 0.01 1.89 0.01 1.35 +trémois trémois nom m 0.00 0.07 0.00 0.07 +trémolo trémolo nom m s 0.19 1.15 0.16 0.74 +trémolos trémolo nom m p 0.19 1.15 0.02 0.41 +trémoussa trémousser ver 0.93 2.23 0.00 0.14 ind:pas:3s; +trémoussaient trémousser ver 0.93 2.23 0.00 0.47 ind:imp:3p; +trémoussait trémousser ver 0.93 2.23 0.03 0.27 ind:imp:3s; +trémoussant trémousser ver 0.93 2.23 0.02 0.34 par:pre; +trémousse trémousser ver 0.93 2.23 0.36 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trémoussement trémoussement nom m s 0.00 0.34 0.00 0.14 +trémoussements trémoussement nom m p 0.00 0.34 0.00 0.20 +trémoussent trémousser ver 0.93 2.23 0.06 0.07 ind:pre:3p; +trémousser trémousser ver 0.93 2.23 0.45 0.41 inf; +trémousses trémousser ver 0.93 2.23 0.02 0.00 ind:pre:2s; +trémoussât trémousser ver 0.93 2.23 0.00 0.07 sub:imp:3s; +trémoussèrent trémousser ver 0.93 2.23 0.00 0.07 ind:pas:3p; +trémulant trémuler ver 0.00 0.27 0.00 0.20 par:pre; +trémulante trémulant adj f s 0.00 0.14 0.00 0.07 +trémulation trémulation nom f s 0.00 0.34 0.00 0.34 +trémuler trémuler ver 0.00 0.27 0.00 0.07 inf; +trépan trépan nom m s 0.05 0.14 0.05 0.14 +trépanation trépanation nom f s 0.20 0.00 0.20 0.00 +trépaner trépaner ver 0.17 0.34 0.03 0.34 inf; +trépané trépaner ver m s 0.17 0.34 0.14 0.00 par:pas; +trépanée trépané nom f s 0.00 0.20 0.00 0.14 +trépas trépas nom m 0.38 1.55 0.38 1.55 +trépassaient trépasser ver 0.39 1.08 0.00 0.07 ind:imp:3p; +trépassait trépasser ver 0.39 1.08 0.00 0.14 ind:imp:3s; +trépassant trépasser ver 0.39 1.08 0.00 0.07 par:pre; +trépasse trépasser ver 0.39 1.08 0.23 0.14 ind:pre:3s; +trépassent trépasser ver 0.39 1.08 0.01 0.14 ind:pre:3p; +trépasser trépasser ver 0.39 1.08 0.01 0.34 inf; +trépasserait trépasser ver 0.39 1.08 0.00 0.07 cnd:pre:3s; +trépasseront trépasser ver 0.39 1.08 0.02 0.00 ind:fut:3p; +trépassé trépasser ver m s 0.39 1.08 0.12 0.07 par:pas; +trépassée trépassé adj f s 0.02 0.20 0.01 0.07 +trépassées trépassé nom f p 0.16 0.47 0.01 0.00 +trépassés trépassé nom m p 0.16 0.47 0.03 0.34 +trépidant trépidant adj m s 0.33 1.28 0.03 0.34 +trépidante trépidant adj f s 0.33 1.28 0.18 0.61 +trépidantes trépidant adj f p 0.33 1.28 0.12 0.14 +trépidants trépidant adj m p 0.33 1.28 0.00 0.20 +trépidation trépidation nom f s 0.10 1.96 0.10 1.22 +trépidations trépidation nom f p 0.10 1.96 0.00 0.74 +trépide trépider ver 0.01 0.68 0.01 0.20 ind:pre:3s; +trépident trépider ver 0.01 0.68 0.00 0.07 ind:pre:3p; +trépider trépider ver 0.01 0.68 0.00 0.27 inf; +trépied trépied nom m s 1.15 2.70 1.14 2.30 +trépieds trépied nom m p 1.15 2.70 0.01 0.41 +trépigna trépigner ver 0.32 3.85 0.01 0.20 ind:pas:3s; +trépignaient trépigner ver 0.32 3.85 0.14 0.20 ind:imp:3p; +trépignais trépigner ver 0.32 3.85 0.00 0.27 ind:imp:1s; +trépignait trépigner ver 0.32 3.85 0.01 1.15 ind:imp:3s; +trépignant trépignant adj m s 0.01 1.08 0.01 0.95 +trépignante trépignant adj f s 0.01 1.08 0.00 0.07 +trépignants trépignant adj m p 0.01 1.08 0.00 0.07 +trépigne trépigner ver 0.32 3.85 0.06 0.74 ind:pre:1s;ind:pre:3s; +trépignement trépignement nom m s 0.02 0.61 0.01 0.07 +trépignements trépignement nom m p 0.02 0.61 0.01 0.54 +trépignent trépigner ver 0.32 3.85 0.05 0.20 ind:pre:3p; +trépigner trépigner ver 0.32 3.85 0.02 0.81 inf; +trépignerai trépigner ver 0.32 3.85 0.00 0.07 ind:fut:1s; +trépignez trépigner ver 0.32 3.85 0.01 0.07 imp:pre:2p;ind:pre:2p; +trépigné trépigner ver m s 0.32 3.85 0.01 0.07 par:pas; +trépignée trépigner ver f s 0.32 3.85 0.00 0.07 par:pas; +tréponème tréponème nom m s 0.00 0.27 0.00 0.07 +tréponèmes tréponème nom m p 0.00 0.27 0.00 0.20 +truqua truquer ver 4.62 3.45 0.00 0.07 ind:pas:3s; +truquage truquage nom m s 0.45 1.15 0.34 0.54 +truquages truquage nom m p 0.45 1.15 0.11 0.61 +truquaient truquer ver 4.62 3.45 0.02 0.07 ind:imp:3p; +truquait truquer ver 4.62 3.45 0.05 0.00 ind:imp:3s; +truquant truquer ver 4.62 3.45 0.04 0.14 par:pre; +truque truquer ver 4.62 3.45 0.59 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +truquer truquer ver 4.62 3.45 0.85 0.95 inf; +truquerai truquer ver 4.62 3.45 0.03 0.07 ind:fut:1s; +truquerez truquer ver 4.62 3.45 0.02 0.00 ind:fut:2p; +truqueur truqueur nom m s 0.28 0.34 0.25 0.20 +truqueurs truqueur nom m p 0.28 0.34 0.01 0.07 +truqueuse truqueur nom f s 0.28 0.34 0.02 0.07 +truquez truquer ver 4.62 3.45 0.01 0.00 imp:pre:2p; +truquions truquer ver 4.62 3.45 0.00 0.07 ind:imp:1p; +truqué truquer ver m s 4.62 3.45 1.88 0.88 par:pas; +truquée truquer ver f s 4.62 3.45 0.71 0.34 par:pas; +truquées truqué adj f p 1.60 2.03 0.29 0.47 +truqués truquer ver m p 4.62 3.45 0.31 0.20 par:pas; +trésor trésor nom m s 49.92 34.66 44.86 20.14 +trésorerie trésorerie nom f s 0.40 0.81 0.40 0.81 +trésorier_payeur trésorier_payeur nom m s 0.02 0.07 0.02 0.07 +trésorier trésorier nom m s 1.83 1.82 1.55 1.62 +trésoriers trésorier nom m p 1.83 1.82 0.02 0.00 +trésorière trésorier nom f s 1.83 1.82 0.26 0.20 +trésors trésor nom m p 49.92 34.66 5.07 14.53 +trusquin trusquin nom m s 0.00 0.14 0.00 0.14 +trust trust nom m s 1.16 1.08 1.11 0.54 +trustais truster ver 0.02 0.34 0.00 0.07 ind:imp:1s; +trustait truster ver 0.02 0.34 0.00 0.07 ind:imp:3s; +truste truster ver 0.02 0.34 0.00 0.07 ind:pre:3s; +trustee trustee nom m s 0.00 0.27 0.00 0.07 +trustees trustee nom m p 0.00 0.27 0.00 0.20 +trusteeship trusteeship nom m s 0.00 0.41 0.00 0.34 +trusteeships trusteeship nom m p 0.00 0.41 0.00 0.07 +truster truster ver 0.02 0.34 0.02 0.07 inf; +trusterait truster ver 0.02 0.34 0.00 0.07 cnd:pre:3s; +trusts trust nom m p 1.16 1.08 0.05 0.54 +tréteau tréteau nom m s 0.64 3.99 0.37 0.81 +tréteaux tréteau nom m p 0.64 3.99 0.27 3.18 +trêve trêve nom f s 6.69 11.42 6.68 11.15 +trêves trêve nom f p 6.69 11.42 0.01 0.27 +trypanosome trypanosome nom m s 0.00 0.14 0.00 0.07 +trypanosomes trypanosome nom m p 0.00 0.14 0.00 0.07 +trypanosomiase trypanosomiase nom f s 0.13 0.00 0.13 0.00 +trypsine trypsine nom f s 0.01 0.00 0.01 0.00 +tryptophane tryptophane nom m s 0.02 0.00 0.02 0.00 +tsar tsar nom m s 14.30 8.85 11.65 6.82 +tsarine tsar nom f s 14.30 8.85 2.27 0.88 +tsarisme tsarisme nom m s 0.00 0.34 0.00 0.34 +tsariste tsariste adj m s 0.10 0.34 0.10 0.27 +tsaristes tsariste adj m p 0.10 0.34 0.00 0.07 +tsars tsar nom m p 14.30 8.85 0.38 1.15 +tsarévitch tsarévitch nom m s 2.90 0.00 2.90 0.00 +tsigane tsigane adj s 0.27 0.20 0.27 0.14 +tsiganes tsigane nom p 0.14 0.34 0.01 0.27 +tsoin_tsoin tsoin_tsoin nom m s 0.01 0.47 0.01 0.47 +tss_tss tss_tss nom m 0.01 0.14 0.01 0.07 +tss_tss tss_tss nom m 0.01 0.14 0.00 0.07 +tsé_tsé tsé_tsé nom f 0.00 0.07 0.00 0.07 +tsuica tsuica nom f s 0.14 0.00 0.14 0.00 +tsunami tsunami nom m s 0.53 0.00 0.53 0.00 +tète téter ver 1.71 5.88 0.64 1.35 imp:pre:2s;ind:pre:3s; +tètent téter ver 1.71 5.88 0.00 0.20 ind:pre:3p; +tu_autem tu_autem nom m s 0.00 0.07 0.00 0.07 +té té ono 0.80 0.47 0.80 0.47 +tu tu pro_per s 14661.76 2537.03 14661.76 2537.03 +tua tuer ver 928.05 171.15 2.00 2.03 ind:pas:3s; +tuai tuer ver 928.05 171.15 0.25 0.07 ind:pas:1s; +tuaient tuer ver 928.05 171.15 0.91 1.28 ind:imp:3p; +tuais tuer ver 928.05 171.15 1.89 0.54 ind:imp:1s;ind:imp:2s; +tuait tuer ver 928.05 171.15 4.77 5.68 ind:imp:3s; +tuant tuer ver 928.05 171.15 6.42 1.96 par:pre; +tuante tuant adj f s 0.76 1.08 0.01 0.27 +tuantes tuant adj f p 0.76 1.08 0.00 0.14 +tuants tuant adj m p 0.76 1.08 0.01 0.00 +tuas tuer ver 928.05 171.15 0.18 0.00 ind:pas:2s; +tub tub nom m s 0.08 1.15 0.07 1.15 +tuba tuba nom m s 1.44 0.54 1.38 0.47 +tubages tubage nom m p 0.00 0.07 0.00 0.07 +tubard tubard adj m s 0.20 1.28 0.08 0.88 +tubarde tubard adj f s 0.20 1.28 0.12 0.14 +tubardise tubardise nom f s 0.00 0.68 0.00 0.68 +tubards tubard nom m p 0.16 0.95 0.10 0.34 +tubas tuba nom m p 1.44 0.54 0.06 0.07 +tube tube nom m s 17.40 20.47 12.16 11.35 +tuber tuber ver 0.41 0.34 0.01 0.20 inf; +tubercule tubercule nom m s 0.17 0.61 0.02 0.34 +tubercules tubercule nom m p 0.17 0.61 0.15 0.27 +tuberculeuse tuberculeux adj f s 0.44 2.16 0.38 0.81 +tuberculeuses tuberculeux adj f p 0.44 2.16 0.01 0.27 +tuberculeux tuberculeux adj m 0.44 2.16 0.05 1.08 +tuberculine tuberculine nom f s 0.00 0.14 0.00 0.14 +tuberculose tuberculose nom f s 2.44 3.04 2.44 3.04 +tubes tube nom m p 17.40 20.47 5.24 9.12 +tubs tub nom m p 0.08 1.15 0.01 0.00 +tubé tuber ver m s 0.41 0.34 0.14 0.14 par:pas; +tubulaire tubulaire adj s 0.07 0.27 0.06 0.07 +tubulaires tubulaire adj m p 0.07 0.27 0.01 0.20 +tubule tubule nom m s 0.01 0.00 0.01 0.00 +tubuleuses tubuleux adj f p 0.00 0.07 0.00 0.07 +tubulure tubulure nom f s 0.00 1.22 0.00 0.14 +tubulures tubulure nom f p 0.00 1.22 0.00 1.08 +tubéreuse tubéreux adj f s 0.06 0.54 0.04 0.14 +tubéreuses tubéreux adj f p 0.06 0.54 0.02 0.34 +tubéreux tubéreux adj m p 0.06 0.54 0.00 0.07 +tubérosité tubérosité nom f s 0.01 0.00 0.01 0.00 +tudesque tudesque adj s 0.00 0.47 0.00 0.27 +tudesques tudesque adj m p 0.00 0.47 0.00 0.20 +tudieu tudieu ono 1.11 0.27 1.11 0.27 +tue_loup tue_loup nom m s 0.06 0.00 0.05 0.00 +tue_loup tue_loup nom m p 0.06 0.00 0.01 0.00 +tue_mouche tue_mouche adj m s 0.15 0.54 0.00 0.07 +tue_mouche tue_mouche adj p 0.15 0.54 0.15 0.47 +tue tuer ver 928.05 171.15 116.46 16.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tuent tuer ver 928.05 171.15 14.08 3.31 ind:pre:3p; +tuer tuer ver 928.05 171.15 346.17 65.54 inf;;inf;;inf;; +tuera tuer ver 928.05 171.15 19.27 1.42 ind:fut:3s; +tuerai tuer ver 928.05 171.15 18.55 2.97 ind:fut:1s; +tuerais tuer ver 928.05 171.15 6.70 1.15 cnd:pre:1s;cnd:pre:2s; +tuerait tuer ver 928.05 171.15 8.77 2.23 cnd:pre:3s; +tueras tuer ver 928.05 171.15 3.21 0.41 ind:fut:2s; +tuerez tuer ver 928.05 171.15 1.52 0.20 ind:fut:2p; +tuerie tuerie nom f s 3.17 2.77 2.22 1.35 +tueries tuerie nom f p 3.17 2.77 0.95 1.42 +tueriez tuer ver 928.05 171.15 1.11 0.07 cnd:pre:2p; +tuerions tuer ver 928.05 171.15 0.16 0.07 cnd:pre:1p; +tuerons tuer ver 928.05 171.15 1.69 0.07 ind:fut:1p; +tueront tuer ver 928.05 171.15 8.49 0.61 ind:fut:3p; +tues tuer ver 928.05 171.15 11.20 0.20 ind:pre:2s;sub:pre:2s; +tueur tueur nom m s 64.06 12.43 52.42 7.30 +tueurs tueur nom m p 64.06 12.43 10.32 4.93 +tueuse tueuse nom f s 6.26 0.27 6.26 0.27 +tueuses tueur nom f p 64.06 12.43 1.31 0.20 +tuez tuer ver 928.05 171.15 27.32 2.43 imp:pre:2p;ind:pre:2p; +tuf tuf nom m s 0.01 0.54 0.01 0.54 +tuffeau tuffeau nom m s 0.00 0.34 0.00 0.27 +tuffeaux tuffeau nom m p 0.00 0.34 0.00 0.07 +téflon téflon nom m s 0.17 0.00 0.17 0.00 +tégument tégument nom m s 0.00 0.14 0.00 0.14 +tégumentaire tégumentaire adj m s 0.01 0.00 0.01 0.00 +tégénaires tégénaire nom f p 0.00 0.07 0.00 0.07 +tuiez tuer ver 928.05 171.15 1.06 0.07 ind:imp:2p;sub:pre:2p; +tuile tuile nom f s 2.71 13.38 1.28 2.84 +tuilerie tuilerie nom f s 0.03 1.15 0.03 0.61 +tuileries tuilerie nom f p 0.03 1.15 0.00 0.54 +tuiles tuile nom f p 2.71 13.38 1.42 10.54 +tuions tuer ver 928.05 171.15 0.03 0.00 ind:imp:1p; +tél tél nom m s 0.04 0.00 0.04 0.00 +tél. tél. nom m s 0.14 0.14 0.14 0.14 +tularémie tularémie nom f s 0.18 0.00 0.18 0.00 +télencéphale télencéphale nom m s 1.20 0.00 1.20 0.00 +télescopage télescopage nom m s 0.02 0.41 0.02 0.41 +télescopait télescoper ver 0.05 1.08 0.01 0.07 ind:imp:3s; +télescope télescope nom m s 2.46 0.95 2.31 0.81 +télescopent télescoper ver 0.05 1.08 0.00 0.20 ind:pre:3p; +télescoper télescoper ver 0.05 1.08 0.01 0.07 inf; +télescopes télescope nom m p 2.46 0.95 0.14 0.14 +télescopique télescopique adj s 0.23 0.61 0.20 0.54 +télescopiques télescopique adj m p 0.23 0.61 0.03 0.07 +télescopèrent télescoper ver 0.05 1.08 0.00 0.07 ind:pas:3p; +télescopé télescoper ver m s 0.05 1.08 0.00 0.20 par:pas; +télescopée télescoper ver f s 0.05 1.08 0.00 0.07 par:pas; +télescopées télescoper ver f p 0.05 1.08 0.01 0.34 par:pas; +télescripteurs télescripteur nom m p 0.00 0.07 0.00 0.07 +télex télex nom m 1.18 1.49 1.18 1.49 +télexa télexer ver 0.02 0.41 0.00 0.07 ind:pas:3s; +télexer télexer ver 0.02 0.41 0.01 0.27 inf; +télexes télexer ver 0.02 0.41 0.00 0.07 ind:pre:2s; +télexé télexer ver m s 0.02 0.41 0.01 0.00 par:pas; +tulipe tulipe nom f s 2.63 2.91 1.53 0.54 +tulipes tulipe nom f p 2.63 2.91 1.10 2.36 +tulipier tulipier nom m s 0.01 0.14 0.01 0.00 +tulipiers tulipier nom m p 0.01 0.14 0.00 0.14 +tulle tulle nom m s 0.29 3.51 0.19 3.31 +tulles tulle nom m p 0.29 3.51 0.10 0.20 +téloche téloche nom f s 0.16 1.62 0.16 1.62 +télègue télègue nom f s 0.00 1.42 0.00 1.42 +télé télé nom f s 106.42 26.15 104.35 25.27 +téléachat téléachat nom m s 0.06 0.00 0.06 0.00 +téléavertisseur téléavertisseur nom m s 0.02 0.00 0.02 0.00 +télécabine télécabine nom f s 0.34 0.00 0.34 0.00 +télécartes télécarte nom f p 0.01 0.00 0.01 0.00 +télécharge télécharger ver 2.55 0.00 0.34 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +téléchargeables téléchargeable adj f p 0.01 0.00 0.01 0.00 +téléchargement téléchargement nom m s 0.32 0.00 0.32 0.00 +téléchargent télécharger ver 2.55 0.00 0.06 0.00 ind:pre:3p; +téléchargeons télécharger ver 2.55 0.00 0.02 0.00 ind:pre:1p; +télécharger télécharger ver 2.55 0.00 0.91 0.00 inf; +téléchargera télécharger ver 2.55 0.00 0.02 0.00 ind:fut:3s; +téléchargerai télécharger ver 2.55 0.00 0.01 0.00 ind:fut:1s; +téléchargerons télécharger ver 2.55 0.00 0.01 0.00 ind:fut:1p; +téléchargez télécharger ver 2.55 0.00 0.11 0.00 imp:pre:2p;ind:pre:2p; +téléchargé télécharger ver m s 2.55 0.00 0.75 0.00 par:pas; +téléchargée télécharger ver f s 2.55 0.00 0.15 0.00 par:pas; +téléchargées télécharger ver f p 2.55 0.00 0.11 0.00 par:pas; +téléchargés télécharger ver m p 2.55 0.00 0.05 0.00 par:pas; +télécinéma télécinéma nom m s 0.01 0.00 0.01 0.00 +télécommande télécommande nom f s 4.37 0.27 4.02 0.27 +télécommander télécommander ver 0.69 0.20 0.06 0.00 inf; +télécommandes télécommande nom f p 4.37 0.27 0.35 0.00 +télécommandé télécommander ver m s 0.69 0.20 0.24 0.00 par:pas; +télécommandée télécommander ver f s 0.69 0.20 0.10 0.07 par:pas; +télécommandées télécommander ver f p 0.69 0.20 0.08 0.00 par:pas; +télécommandés télécommander ver m p 0.69 0.20 0.05 0.14 par:pas; +télécommunication télécommunication nom f s 0.94 0.20 0.53 0.07 +télécommunications télécommunication nom f p 0.94 0.20 0.41 0.14 +télécoms télécom nom f p 0.30 0.00 0.30 0.00 +téléconférence téléconférence nom f s 0.41 0.00 0.41 0.00 +télécopieur télécopieur nom m s 0.03 0.00 0.03 0.00 +télécran télécran nom m s 0.05 0.00 0.03 0.00 +télécrans télécran nom m p 0.05 0.00 0.02 0.00 +télédiffuser télédiffuser ver 0.03 0.00 0.03 0.00 inf; +télédiffusion télédiffusion nom f s 0.01 0.00 0.01 0.00 +téléfax téléfax nom m 0.01 0.07 0.01 0.07 +téléfaxe téléfaxer ver 0.02 0.00 0.01 0.00 ind:pre:1s; +téléfaxez téléfaxer ver 0.02 0.00 0.01 0.00 ind:pre:2p; +téléfilm téléfilm nom m s 0.50 0.00 0.45 0.00 +téléfilms téléfilm nom m p 0.50 0.00 0.04 0.00 +téléfériques téléférique nom m p 0.00 0.07 0.00 0.07 +télégramme télégramme nom m s 11.44 38.78 10.53 34.59 +télégrammes télégramme nom m p 11.44 38.78 0.90 4.19 +télégraphe télégraphe nom m s 1.66 0.81 1.53 0.68 +télégraphes télégraphe nom m p 1.66 0.81 0.12 0.14 +télégraphia télégraphier ver 1.23 6.15 0.00 0.47 ind:pas:3s; +télégraphiai télégraphier ver 1.23 6.15 0.01 1.08 ind:pas:1s; +télégraphiait télégraphier ver 1.23 6.15 0.00 0.47 ind:imp:3s; +télégraphiant télégraphier ver 1.23 6.15 0.00 0.14 par:pre; +télégraphie télégraphie nom f s 0.06 0.14 0.06 0.14 +télégraphient télégraphier ver 1.23 6.15 0.00 0.07 ind:pre:3p; +télégraphier télégraphier ver 1.23 6.15 0.21 0.74 inf; +télégraphierai télégraphier ver 1.23 6.15 0.03 0.14 ind:fut:1s; +télégraphierais télégraphier ver 1.23 6.15 0.00 0.07 cnd:pre:1s; +télégraphierait télégraphier ver 1.23 6.15 0.00 0.07 cnd:pre:3s; +télégraphiez télégraphier ver 1.23 6.15 0.17 0.07 imp:pre:2p; +télégraphiâmes télégraphier ver 1.23 6.15 0.00 0.07 ind:pas:1p; +télégraphions télégraphier ver 1.23 6.15 0.01 0.00 imp:pre:1p; +télégraphique télégraphique adj s 0.50 2.97 0.20 1.42 +télégraphiques télégraphique adj p 0.50 2.97 0.29 1.55 +télégraphiste télégraphiste nom s 0.37 0.54 0.36 0.34 +télégraphistes télégraphiste nom p 0.37 0.54 0.01 0.20 +télégraphié télégraphier ver m s 1.23 6.15 0.75 1.82 par:pas; +télégraphiée télégraphier ver f s 1.23 6.15 0.00 0.07 par:pas; +télégraphiées télégraphier ver f p 1.23 6.15 0.00 0.14 par:pas; +télégraphiés télégraphier ver m p 1.23 6.15 0.00 0.07 par:pas; +téléguidage téléguidage nom m s 0.15 0.00 0.15 0.00 +téléguider téléguider ver 0.35 0.47 0.01 0.00 inf; +téléguidé téléguider ver m s 0.35 0.47 0.20 0.20 par:pas; +téléguidée téléguider ver f s 0.35 0.47 0.13 0.07 par:pas; +téléguidées téléguider ver f p 0.35 0.47 0.00 0.07 par:pas; +téléguidés téléguider ver m p 0.35 0.47 0.02 0.14 par:pas; +télégénie télégénie nom f s 0.01 0.00 0.01 0.00 +télégénique télégénique adj s 0.02 0.00 0.02 0.00 +télékinésie télékinésie nom f s 0.60 0.00 0.60 0.00 +télémark télémark nom m s 0.00 0.07 0.00 0.07 +télémarketing télémarketing nom m s 0.14 0.00 0.14 0.00 +télématique télématique adj s 0.01 0.07 0.01 0.07 +télémesure télémesure nom f s 0.07 0.00 0.03 0.00 +télémesures télémesure nom f p 0.07 0.00 0.04 0.00 +télémètre télémètre nom m s 0.03 0.20 0.02 0.14 +télémètres télémètre nom m p 0.03 0.20 0.01 0.07 +télémétrie télémétrie nom f s 0.85 0.00 0.85 0.00 +télémétrique télémétrique adj s 0.16 0.00 0.08 0.00 +télémétriques télémétrique adj p 0.16 0.00 0.07 0.00 +téléobjectif téléobjectif nom m s 0.72 0.54 0.62 0.27 +téléobjectifs téléobjectif nom m p 0.72 0.54 0.10 0.27 +téléologique téléologique adj s 0.01 0.00 0.01 0.00 +télépathe télépathe nom s 1.53 0.07 1.17 0.07 +télépathes télépathe nom p 1.53 0.07 0.36 0.00 +télépathie télépathie nom f s 1.94 0.47 1.94 0.47 +télépathique télépathique adj s 0.53 0.27 0.41 0.27 +télépathiquement télépathiquement adv 0.01 0.00 0.01 0.00 +télépathiques télépathique adj p 0.53 0.27 0.13 0.00 +téléphona téléphoner ver 60.49 67.03 0.02 4.53 ind:pas:3s; +téléphonage téléphonage nom m s 0.00 0.07 0.00 0.07 +téléphonai téléphoner ver 60.49 67.03 0.01 0.74 ind:pas:1s; +téléphonaient téléphoner ver 60.49 67.03 0.02 0.34 ind:imp:3p; +téléphonais téléphoner ver 60.49 67.03 0.63 0.34 ind:imp:1s;ind:imp:2s; +téléphonait téléphoner ver 60.49 67.03 0.87 3.31 ind:imp:3s; +téléphonant téléphoner ver 60.49 67.03 0.20 1.49 par:pre; +téléphone téléphone nom m s 160.80 96.82 155.68 93.99 +téléphonent téléphoner ver 60.49 67.03 0.36 0.61 ind:pre:3p; +téléphoner téléphoner ver 60.49 67.03 20.22 19.73 inf; +téléphonera téléphoner ver 60.49 67.03 0.61 0.68 ind:fut:3s; +téléphonerai téléphoner ver 60.49 67.03 2.07 1.35 ind:fut:1s; +téléphoneraient téléphoner ver 60.49 67.03 0.01 0.07 cnd:pre:3p; +téléphonerais téléphoner ver 60.49 67.03 0.12 0.27 cnd:pre:1s;cnd:pre:2s; +téléphonerait téléphoner ver 60.49 67.03 0.06 1.42 cnd:pre:3s; +téléphoneras téléphoner ver 60.49 67.03 0.17 0.14 ind:fut:2s; +téléphonerez téléphoner ver 60.49 67.03 0.27 0.20 ind:fut:2p; +téléphoneriez téléphoner ver 60.49 67.03 0.00 0.07 cnd:pre:2p; +téléphonerons téléphoner ver 60.49 67.03 0.03 0.07 ind:fut:1p; +téléphoneront téléphoner ver 60.49 67.03 0.14 0.07 ind:fut:3p; +téléphones téléphone nom m p 160.80 96.82 5.12 2.84 +téléphonez téléphoner ver 60.49 67.03 2.26 1.69 imp:pre:2p;ind:pre:2p; +téléphonie téléphonie nom f s 0.22 0.07 0.22 0.07 +téléphoniez téléphoner ver 60.49 67.03 0.05 0.14 ind:imp:2p; +téléphonions téléphoner ver 60.49 67.03 0.00 0.07 ind:imp:1p; +téléphonique téléphonique adj s 9.23 10.88 6.03 7.70 +téléphoniquement téléphoniquement adv 0.14 0.07 0.14 0.07 +téléphoniques téléphonique adj p 9.23 10.88 3.20 3.18 +téléphoniste téléphoniste nom s 0.27 1.22 0.10 0.68 +téléphonistes téléphoniste nom p 0.27 1.22 0.17 0.54 +téléphonons téléphoner ver 60.49 67.03 0.05 0.00 imp:pre:1p;ind:pre:1p; +téléphonât téléphoner ver 60.49 67.03 0.00 0.07 sub:imp:3s; +téléphoné téléphoner ver m s 60.49 67.03 20.80 18.11 par:pas; +téléphonée téléphoné adj f s 0.21 0.54 0.01 0.00 +téléphonées téléphoné adj f p 0.21 0.54 0.00 0.07 +téléphonés téléphoner ver m p 60.49 67.03 0.01 0.07 par:pas; +téléphérique téléphérique nom m s 0.36 0.54 0.36 0.54 +téléport téléport nom m s 0.01 0.00 0.01 0.00 +téléportation téléportation nom f s 1.00 0.00 1.00 0.00 +téléprompteur téléprompteur nom m s 0.08 0.00 0.08 0.00 +téléreportage téléreportage nom m s 0.01 0.00 0.01 0.00 +téléroman téléroman nom m s 0.05 0.00 0.05 0.00 +télés télé nom f p 106.42 26.15 2.06 0.88 +téléscripteur téléscripteur nom m s 0.05 1.08 0.04 0.14 +téléscripteurs téléscripteur nom m p 0.05 1.08 0.01 0.95 +télésiège télésiège nom m s 1.18 0.00 1.04 0.00 +télésièges télésiège nom m p 1.18 0.00 0.14 0.00 +téléski téléski nom m s 0.02 0.00 0.02 0.00 +téléspectateur téléspectateur nom m s 2.18 0.47 0.13 0.14 +téléspectateurs téléspectateur nom m p 2.18 0.47 2.03 0.27 +téléspectatrice téléspectateur nom f s 2.18 0.47 0.03 0.00 +téléspectatrices téléspectatrice nom f p 0.01 0.00 0.01 0.00 +télésurveillance télésurveillance nom f s 0.01 0.00 0.01 0.00 +télétexte télétexte nom m s 0.10 0.00 0.10 0.00 +télétravail télétravail nom m s 0.01 0.00 0.01 0.00 +télétravailleuse télétravailleur nom f s 0.01 0.00 0.01 0.00 +télétype télétype nom m s 0.10 0.07 0.08 0.00 +télétypes télétype nom m p 0.10 0.07 0.02 0.07 +télévangéliste télévangéliste nom s 0.06 0.00 0.05 0.00 +télévangélistes télévangéliste nom p 0.06 0.00 0.01 0.00 +télévendeur télévendeur nom m s 0.01 0.00 0.01 0.00 +télévente télévente nom f s 0.01 0.00 0.01 0.00 +télévise téléviser ver 0.37 1.42 0.01 0.47 ind:pre:1s;ind:pre:3s; +télévisera téléviser ver 0.37 1.42 0.00 0.14 ind:fut:3s; +télévises téléviser ver 0.37 1.42 0.00 0.20 ind:pre:2s; +téléviseur téléviseur nom m s 2.43 1.01 1.74 0.95 +téléviseurs téléviseur nom m p 2.43 1.01 0.69 0.07 +télévision télévision nom f s 26.38 24.32 25.45 23.51 +télévisions télévision nom f p 26.38 24.32 0.93 0.81 +télévisé télévisé adj m s 3.37 2.57 2.11 1.01 +télévisée télévisé adj f s 3.37 2.57 0.48 0.47 +télévisuel télévisuel adj m s 0.33 0.34 0.27 0.20 +télévisuelle télévisuel adj f s 0.33 0.34 0.05 0.07 +télévisuels télévisuel adj m p 0.33 0.34 0.00 0.07 +télévisées télévisé adj f p 3.37 2.57 0.14 0.74 +télévisés télévisé adj m p 3.37 2.57 0.64 0.34 +tumescence tumescence nom f s 0.04 0.00 0.04 0.00 +tumescent tumescent adj m s 0.01 0.00 0.01 0.00 +tumeur tumeur nom f s 7.96 1.89 6.70 1.28 +tumeurs tumeur nom f p 7.96 1.89 1.27 0.61 +témoigna témoigner ver 24.29 25.68 0.02 0.54 ind:pas:3s; +témoignage témoignage nom m s 16.12 19.73 12.28 10.95 +témoignages témoignage nom m p 16.12 19.73 3.84 8.78 +témoignaient témoigner ver 24.29 25.68 0.02 2.91 ind:imp:3p; +témoignais témoigner ver 24.29 25.68 0.04 0.07 ind:imp:1s;ind:imp:2s; +témoignait témoigner ver 24.29 25.68 0.32 5.27 ind:imp:3s; +témoignant témoigner ver 24.29 25.68 0.20 1.35 par:pre; +témoigne témoigner ver 24.29 25.68 3.10 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +témoignent témoigner ver 24.29 25.68 0.81 1.35 ind:pre:3p; +témoigner témoigner ver 24.29 25.68 13.36 7.64 ind:pre:2p;inf; +témoignera témoigner ver 24.29 25.68 1.09 0.07 ind:fut:3s; +témoignerai témoigner ver 24.29 25.68 0.88 0.07 ind:fut:1s; +témoigneraient témoigner ver 24.29 25.68 0.00 0.07 cnd:pre:3p; +témoignerais témoigner ver 24.29 25.68 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +témoignerait témoigner ver 24.29 25.68 0.13 0.07 cnd:pre:3s; +témoigneras témoigner ver 24.29 25.68 0.08 0.00 ind:fut:2s; +témoignerez témoigner ver 24.29 25.68 0.28 0.00 ind:fut:2p; +témoigneront témoigner ver 24.29 25.68 0.18 0.07 ind:fut:3p; +témoignes témoigner ver 24.29 25.68 0.29 0.07 ind:pre:2s; +témoignez témoigner ver 24.29 25.68 0.91 0.14 imp:pre:2p;ind:pre:2p; +témoigniez témoigner ver 24.29 25.68 0.11 0.00 ind:imp:2p; +témoignât témoigner ver 24.29 25.68 0.00 0.07 sub:imp:3s; +témoignèrent témoigner ver 24.29 25.68 0.00 0.27 ind:pas:3p; +témoigné témoigner ver m s 24.29 25.68 1.99 2.09 par:pas; +témoignée témoigner ver f s 24.29 25.68 0.31 0.20 par:pas; +témoignées témoigner ver f p 24.29 25.68 0.01 0.07 par:pas; +témoignés témoigner ver m p 24.29 25.68 0.11 0.07 par:pas; +témoin_clé témoin_clé nom m s 0.13 0.00 0.13 0.00 +témoin_vedette témoin_vedette nom m s 0.01 0.00 0.01 0.00 +témoin témoin nom m s 74.78 46.01 49.35 28.38 +témoins_clé témoins_clé nom m p 0.05 0.00 0.05 0.00 +témoins témoin nom m p 74.78 46.01 25.43 17.64 +tumorale tumoral adj f s 0.05 0.00 0.04 0.00 +tumoraux tumoral adj m p 0.05 0.00 0.01 0.00 +tuméfaction tuméfaction nom f s 0.07 0.07 0.07 0.07 +tuméfie tuméfier ver 0.00 1.08 0.00 0.07 ind:pre:3s; +tuméfier tuméfier ver 0.00 1.08 0.00 0.07 inf; +tuméfié tuméfié adj m s 0.44 2.36 0.36 1.08 +tuméfiée tuméfié adj f s 0.44 2.36 0.04 0.88 +tuméfiées tuméfié adj f p 0.44 2.36 0.02 0.34 +tuméfiés tuméfié adj m p 0.44 2.36 0.03 0.07 +tumuli tumulus nom m p 0.22 1.49 0.00 0.14 +tumulte tumulte nom m s 1.19 13.11 1.07 12.09 +tumultes tumulte nom m p 1.19 13.11 0.12 1.01 +tumultuaire tumultuaire adj s 0.00 0.07 0.00 0.07 +tumultueuse tumultueux adj f s 1.13 5.95 0.31 2.36 +tumultueusement tumultueusement adv 0.02 0.14 0.02 0.14 +tumultueuses tumultueux adj f p 1.13 5.95 0.04 0.88 +tumultueux tumultueux adj m 1.13 5.95 0.78 2.70 +tumulus tumulus nom m 0.22 1.49 0.22 1.35 +téméraire téméraire adj s 2.38 3.04 2.04 2.50 +témérairement témérairement adv 0.00 0.27 0.00 0.27 +téméraires téméraire adj p 2.38 3.04 0.34 0.54 +témérité témérité nom f s 0.87 1.35 0.87 1.22 +témérités témérité nom f p 0.87 1.35 0.00 0.14 +ténacité ténacité nom f s 0.89 2.30 0.89 2.30 +tune tune nom f s 1.23 2.16 0.85 0.20 +tuner tuner nom m s 0.06 0.07 0.06 0.07 +tunes tune nom f p 1.23 2.16 0.38 1.96 +tungstène tungstène nom m s 0.12 0.47 0.12 0.47 +ténia ténia nom m s 0.11 0.68 0.08 0.68 +ténias ténia nom m p 0.11 0.68 0.03 0.00 +tunique tunique nom f s 1.32 10.27 1.07 8.04 +tuniques tunique nom f p 1.32 10.27 0.25 2.23 +tunisien tunisien adj m s 0.30 3.51 0.15 1.28 +tunisienne tunisien adj f s 0.30 3.51 0.16 0.61 +tunisiennes tunisien adj f p 0.30 3.51 0.00 0.20 +tunisiens tunisien adj m p 0.30 3.51 0.00 1.42 +tunnel tunnel nom m s 19.24 14.59 15.88 12.30 +tunnels tunnel nom m p 19.24 14.59 3.36 2.30 +ténor ténor nom m s 1.38 2.70 1.01 2.03 +ténors ténor nom m p 1.38 2.70 0.36 0.68 +ténèbre ténèbre nom f s 12.70 26.76 0.01 0.61 +ténèbres ténèbre nom f p 12.70 26.76 12.68 26.15 +ténu ténu adj m s 0.40 5.95 0.30 2.84 +ténébreuse ténébreux adj f s 1.50 7.91 0.24 2.36 +ténébreuses ténébreux adj f p 1.50 7.91 0.15 0.88 +ténébreux ténébreux adj m 1.50 7.91 1.11 4.66 +ténébrionidé ténébrionidé nom m s 0.00 0.07 0.00 0.07 +ténue ténu adj f s 0.40 5.95 0.08 1.76 +ténues ténu adj f p 0.40 5.95 0.01 0.61 +ténuité ténuité nom f s 0.00 0.14 0.00 0.14 +ténus ténu adj m p 0.40 5.95 0.01 0.74 +tuons tuer ver 928.05 171.15 2.27 0.41 imp:pre:1p;ind:pre:1p; +tuât tuer ver 928.05 171.15 0.00 0.34 sub:imp:3s; +tuque tuque nom f s 0.00 0.07 0.00 0.07 +téraoctets téraoctet nom m p 0.01 0.00 0.01 0.00 +tératologique tératologique adj f s 0.00 0.34 0.00 0.27 +tératologiques tératologique adj f p 0.00 0.34 0.00 0.07 +tératome tératome nom m s 0.05 0.00 0.05 0.00 +turban turban nom m s 0.72 7.30 0.66 6.08 +turbans turban nom m p 0.72 7.30 0.07 1.22 +turbin turbin nom m s 0.41 4.19 0.41 3.92 +turbina turbiner ver 0.35 1.28 0.00 0.07 ind:pas:3s; +turbinaient turbiner ver 0.35 1.28 0.00 0.14 ind:imp:3p; +turbinait turbiner ver 0.35 1.28 0.00 0.07 ind:imp:3s; +turbine turbine nom f s 1.02 1.28 0.51 1.08 +turbiner turbiner ver 0.35 1.28 0.16 0.47 inf; +turbines turbine nom f p 1.02 1.28 0.51 0.20 +turbinez turbiner ver 0.35 1.28 0.00 0.07 ind:pre:2p; +turbins turbin nom m p 0.41 4.19 0.00 0.27 +turbiné turbiner ver m s 0.35 1.28 0.01 0.20 par:pas; +turbo turbo nom s 1.19 0.54 1.03 0.54 +turbocompresseur turbocompresseur nom m s 0.14 0.00 0.01 0.00 +turbocompresseurs turbocompresseur nom m p 0.14 0.00 0.14 0.00 +turbopropulseur turbopropulseur nom m s 0.28 0.00 0.28 0.00 +turboréacteur turboréacteur nom m s 0.01 0.00 0.01 0.00 +turbos turbo nom p 1.19 0.54 0.15 0.00 +turbot turbot nom m s 0.12 0.68 0.12 0.68 +turbotière turbotière nom f s 0.01 0.07 0.01 0.00 +turbotières turbotière nom f p 0.01 0.07 0.00 0.07 +turbé turbé nom m s 0.00 0.34 0.00 0.27 +turbulence turbulence nom f s 1.46 2.36 0.56 1.15 +turbulences turbulence nom f p 1.46 2.36 0.89 1.22 +turbulent turbulent adj m s 1.49 3.04 0.61 1.49 +turbulente turbulent adj f s 1.49 3.04 0.69 0.68 +turbulentes turbulent adj f p 1.49 3.04 0.01 0.20 +turbulents turbulent adj m p 1.49 3.04 0.19 0.68 +turbés turbé nom m p 0.00 0.34 0.00 0.07 +turc turc adj m s 4.25 10.54 2.12 4.26 +turco turco nom m s 0.61 0.07 0.61 0.00 +turcoman turcoman adj m s 0.00 0.14 0.00 0.14 +turcomans turcoman nom m p 0.00 0.34 0.00 0.27 +turcos turco nom m p 0.61 0.07 0.00 0.07 +turcs turc adj m p 4.25 10.54 0.56 2.09 +turdus turdus nom m 0.00 0.20 0.00 0.20 +turelure turelure nom f s 0.00 0.07 0.00 0.07 +turent taire ver 154.47 139.80 0.20 6.62 ind:pas:3p; +turf turf nom m s 0.43 1.82 0.43 1.76 +turfiste turfiste nom s 0.08 0.47 0.03 0.14 +turfistes turfiste nom p 0.08 0.47 0.05 0.34 +turfs turf nom m p 0.43 1.82 0.00 0.07 +turgescence turgescence nom f s 0.14 0.07 0.14 0.07 +turgescent turgescent adj m s 0.04 0.41 0.03 0.07 +turgescente turgescent adj f s 0.04 0.41 0.01 0.20 +turgescentes turgescent adj f p 0.04 0.41 0.00 0.07 +turgescents turgescent adj m p 0.04 0.41 0.00 0.07 +turgide turgide adj m s 0.04 0.00 0.04 0.00 +turgotine turgotine nom f s 0.00 0.07 0.00 0.07 +turinois turinois adj m 0.21 0.07 0.20 0.00 +turinoise turinois adj f s 0.21 0.07 0.01 0.07 +turista turista nom f s 0.06 0.54 0.05 0.00 +turistas turista nom f p 0.06 0.54 0.01 0.54 +turkmènes turkmène adj m p 0.00 0.14 0.00 0.14 +turlu turlu nom m s 0.01 0.34 0.01 0.34 +turlupinade turlupinade nom f s 0.00 0.14 0.00 0.07 +turlupinades turlupinade nom f p 0.00 0.14 0.00 0.07 +turlupinaient turlupiner ver 0.35 1.28 0.00 0.07 ind:imp:3p; +turlupinait turlupiner ver 0.35 1.28 0.02 0.47 ind:imp:3s; +turlupine turlupiner ver 0.35 1.28 0.30 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +turlupinent turlupiner ver 0.35 1.28 0.01 0.07 ind:pre:3p; +turlupiner turlupiner ver 0.35 1.28 0.01 0.14 inf; +turlupinera turlupiner ver 0.35 1.28 0.01 0.00 ind:fut:3s; +turlupins turlupin nom m p 0.00 0.14 0.00 0.14 +turlupiné turlupiner ver m s 0.35 1.28 0.00 0.14 par:pas; +turlupinée turlupiner ver f s 0.35 1.28 0.00 0.14 par:pas; +turlutaines turlutaine nom f p 0.00 0.07 0.00 0.07 +turlute turluter ver 0.25 0.27 0.05 0.07 ind:pre:1s;ind:pre:3s; +turlutent turluter ver 0.25 0.27 0.00 0.07 ind:pre:3p; +turluter turluter ver 0.25 0.27 0.00 0.07 inf; +turlutes turluter ver 0.25 0.27 0.20 0.07 ind:pre:2s; +turlutte turlutte nom f s 0.26 0.20 0.26 0.20 +turlututu turlututu ono 0.01 0.14 0.01 0.14 +turne turne nom f s 0.56 1.96 0.56 1.76 +turnes turne nom f p 0.56 1.96 0.00 0.20 +turnover turnover nom m s 0.03 0.00 0.03 0.00 +turpides turpide adj f p 0.00 0.07 0.00 0.07 +turpitude turpitude nom f s 0.54 2.36 0.18 0.41 +turpitudes turpitude nom f p 0.54 2.36 0.35 1.96 +turque turc adj f s 4.25 10.54 1.33 2.70 +turquerie turquerie nom f s 0.00 0.14 0.00 0.14 +turques turque nom f p 0.32 0.00 0.32 0.00 +turquin turquin adj m s 0.00 0.14 0.00 0.14 +turquoise turquoise nom f s 0.65 1.01 0.30 0.61 +turquoises turquoise nom f p 0.65 1.01 0.35 0.41 +térébenthine térébenthine nom f s 0.55 1.28 0.55 1.28 +térébinthe térébinthe nom m s 0.01 0.20 0.01 0.14 +térébinthes térébinthe nom m p 0.01 0.20 0.00 0.07 +térébrant térébrant adj m s 0.00 0.20 0.00 0.14 +térébrants térébrant adj m p 0.00 0.20 0.00 0.07 +tés té nom m p 2.35 1.08 0.19 0.00 +tus taire ver m p 154.47 139.80 0.40 4.39 ind:pas:1s;par:pas;par:pas; +tussent taire ver 154.47 139.80 0.00 0.07 sub:imp:3p; +tussilage tussilage nom m s 0.01 0.00 0.01 0.00 +tussor tussor nom m s 0.01 1.69 0.01 1.69 +têt têt nom m s 0.34 1.08 0.34 1.08 +tut taire ver 154.47 139.80 0.69 28.92 ind:pas:3s; +téta téter ver 1.71 5.88 0.01 0.14 ind:pas:3s; +tétaient téter ver 1.71 5.88 0.01 0.07 ind:imp:3p; +tétais téter ver 1.71 5.88 0.13 0.20 ind:imp:1s;ind:imp:2s; +tétait téter ver 1.71 5.88 0.06 0.34 ind:imp:3s; +tétanie tétanie nom f s 0.15 0.07 0.15 0.07 +tétanique tétanique adj s 0.00 0.34 0.00 0.27 +tétaniques tétanique adj f p 0.00 0.34 0.00 0.07 +tétanisait tétaniser ver 0.42 1.08 0.00 0.14 ind:imp:3s; +tétanisant tétaniser ver 0.42 1.08 0.00 0.07 par:pre; +tétanisation tétanisation nom f s 0.00 0.07 0.00 0.07 +tétanisent tétaniser ver 0.42 1.08 0.01 0.07 ind:pre:3p; +tétaniser tétaniser ver 0.42 1.08 0.00 0.07 inf; +tétanisé tétaniser ver m s 0.42 1.08 0.17 0.54 par:pas; +tétanisée tétaniser ver f s 0.42 1.08 0.25 0.20 par:pas; +tétanisées tétanisé adj f p 0.12 0.88 0.00 0.07 +tétanisés tétanisé adj m p 0.12 0.88 0.00 0.34 +tétanos tétanos nom m 0.64 0.95 0.64 0.95 +tétant téter ver 1.71 5.88 0.10 0.54 par:pre; +têtard têtard nom m s 0.86 1.89 0.68 0.34 +têtards têtard nom m p 0.86 1.89 0.17 1.55 +tétasses téter ver 1.71 5.88 0.00 0.07 sub:imp:2s; +tête_bêche tête_bêche nom m 0.03 0.47 0.03 0.47 +tête_de_mort tête_de_mort nom f 0.01 0.41 0.01 0.41 +tête_de_nègre tête_de_nègre adj 0.00 0.20 0.00 0.20 +tête_à_queue tête_à_queue nom m 0.00 0.20 0.00 0.20 +tête_à_tête tête_à_tête nom m 0.00 5.95 0.00 5.95 +tête tête nom f s 475.87 923.45 453.13 861.49 +tutelle tutelle nom f s 2.00 2.43 2.00 2.43 +téter téter ver 1.71 5.88 0.43 2.03 inf; +tête_de_loup tête_de_loup nom f p 0.00 0.27 0.00 0.27 +têtes tête nom f p 475.87 923.45 22.74 61.96 +téteur téteur nom m s 0.05 0.00 0.05 0.00 +tuteur tuteur nom m s 4.60 2.36 3.28 2.03 +tuteurs tuteur nom m p 4.60 2.36 0.46 0.27 +tuèrent tuer ver 928.05 171.15 0.41 0.41 ind:pas:3p; +tétiez téter ver 1.71 5.88 0.01 0.00 ind:imp:2p; +tétine tétine nom f s 0.81 1.15 0.43 0.68 +tétines tétine nom f p 0.81 1.15 0.38 0.47 +tétins tétin nom m p 0.00 0.20 0.00 0.20 +têtière têtière nom f s 0.00 0.27 0.00 0.14 +têtières têtière nom f p 0.00 0.27 0.00 0.14 +tutoie tutoyer ver 6.25 10.07 1.25 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tutoiement tutoiement nom m s 0.38 1.89 0.38 1.82 +tutoiements tutoiement nom m p 0.38 1.89 0.00 0.07 +tutoient tutoyer ver 6.25 10.07 0.13 0.41 ind:pre:3p; +tutoiera tutoyer ver 6.25 10.07 0.00 0.07 ind:fut:3s; +tutoierai tutoyer ver 6.25 10.07 0.00 0.07 ind:fut:1s; +tutoies tutoyer ver 6.25 10.07 0.41 0.14 ind:pre:2s; +téton téton nom m s 4.59 1.76 1.21 0.47 +tétons téton nom m p 4.59 1.76 3.39 1.28 +tutorat tutorat nom m s 0.33 0.00 0.33 0.00 +tutorial tutorial adj m s 0.04 0.14 0.03 0.14 +tutoriaux tutorial adj m p 0.04 0.14 0.01 0.00 +tutoya tutoyer ver 6.25 10.07 0.00 0.34 ind:pas:3s; +tutoyaient tutoyer ver 6.25 10.07 0.00 0.41 ind:imp:3p; +tutoyais tutoyer ver 6.25 10.07 0.00 0.14 ind:imp:1s; +tutoyait tutoyer ver 6.25 10.07 0.37 1.76 ind:imp:3s; +tutoyant tutoyer ver 6.25 10.07 0.00 0.54 par:pre; +tutoyer tutoyer ver 6.25 10.07 3.05 2.84 inf; +tutoyeuses tutoyeur adj f p 0.00 0.07 0.00 0.07 +tutoyez tutoyer ver 6.25 10.07 0.55 0.07 imp:pre:2p;ind:pre:2p; +tutoyions tutoyer ver 6.25 10.07 0.00 0.07 ind:imp:1p; +tutoyons tutoyer ver 6.25 10.07 0.34 0.14 imp:pre:1p;ind:pre:1p; +tutoyât tutoyer ver 6.25 10.07 0.00 0.07 sub:imp:3s; +tutoyèrent tutoyer ver 6.25 10.07 0.00 0.07 ind:pas:3p; +tutoyé tutoyer ver m s 6.25 10.07 0.01 0.41 par:pas; +tutoyée tutoyer ver f s 6.25 10.07 0.14 0.07 par:pas; +tutoyés tutoyer ver m p 6.25 10.07 0.01 0.14 par:pas; +tétra tétra nom m s 0.01 0.00 0.01 0.00 +tétrachlorure tétrachlorure nom m s 0.04 0.07 0.04 0.07 +tétracycline tétracycline nom f s 0.09 0.00 0.09 0.00 +tétradrachme tétradrachme nom m s 0.00 0.07 0.00 0.07 +tétragones tétragone nom f p 0.00 0.07 0.00 0.07 +tétragramme tétragramme nom m s 0.01 0.07 0.00 0.07 +tétragrammes tétragramme nom m p 0.01 0.07 0.01 0.00 +tétralogie tétralogie nom f s 0.01 0.07 0.01 0.07 +tétramère tétramère adj m s 0.00 0.07 0.00 0.07 +tétramètre tétramètre nom m s 0.03 0.00 0.03 0.00 +tétraplégie tétraplégie nom f s 0.14 0.00 0.14 0.00 +tétraplégique tétraplégique adj s 0.44 0.00 0.44 0.00 +tétrarque tétrarque nom m s 0.10 0.47 0.10 0.00 +tétrarques tétrarque nom m p 0.10 0.47 0.00 0.47 +tétras tétras nom m 0.16 0.00 0.16 0.00 +tutrice tuteur nom f s 4.60 2.36 0.86 0.07 +tétrodotoxine tétrodotoxine nom f s 0.02 0.00 0.02 0.00 +tétère téter nom f s 0.00 0.14 0.00 0.14 +tétèrent téter ver 1.71 5.88 0.00 0.07 ind:pas:3p; +tutti_frutti tutti_frutti adv 0.09 0.41 0.09 0.41 +tutti_quanti tutti_quanti adv 0.15 0.20 0.15 0.20 +tété téter ver m s 1.71 5.88 0.29 0.61 par:pas; +têtu têtu adj m s 9.78 9.19 6.17 5.14 +tutu tutu nom m s 0.92 3.51 0.83 2.77 +tétée tétée nom f s 0.63 1.01 0.51 0.68 +têtue têtu adj f s 9.78 9.19 2.97 2.77 +tétées tétée nom f p 0.63 1.01 0.11 0.34 +têtues têtu adj f p 9.78 9.19 0.09 0.34 +tutélaire tutélaire adj s 0.01 1.76 0.01 1.55 +tutélaires tutélaire adj p 0.01 1.76 0.00 0.20 +têtus têtu adj m p 9.78 9.19 0.55 0.95 +tutus tutu nom m p 0.92 3.51 0.09 0.74 +tutute tutut nom f s 0.00 0.34 0.00 0.34 +tué tuer ver m s 928.05 171.15 259.79 46.82 par:pas; +tuée tuer ver f s 928.05 171.15 39.56 5.88 par:pas; +tuées tuer ver f p 928.05 171.15 3.15 0.68 par:pas; +tués tuer ver m p 928.05 171.15 20.66 7.36 par:pas; +tévé tévé nom f s 0.00 0.34 0.00 0.34 +tuyau tuyau nom m s 26.73 20.61 17.51 11.96 +tuyautages tuyautage nom m p 0.00 0.07 0.00 0.07 +tuyautait tuyauter ver 0.54 0.61 0.01 0.07 ind:imp:3s; +tuyautent tuyauter ver 0.54 0.61 0.03 0.00 ind:pre:3p; +tuyauter tuyauter ver 0.54 0.61 0.07 0.20 inf; +tuyautera tuyauter ver 0.54 0.61 0.02 0.00 ind:fut:3s; +tuyauterie tuyauterie nom f s 1.11 1.69 1.10 0.68 +tuyauteries tuyauterie nom f p 1.11 1.69 0.01 1.01 +tuyauteur tuyauteur nom m s 0.00 0.27 0.00 0.14 +tuyauteurs tuyauteur nom m p 0.00 0.27 0.00 0.14 +tuyauté tuyauter ver m s 0.54 0.61 0.17 0.14 par:pas; +tuyautée tuyauter ver f s 0.54 0.61 0.01 0.07 par:pas; +tuyautées tuyauter ver f p 0.54 0.61 0.00 0.07 par:pas; +tuyautés tuyauter ver m p 0.54 0.61 0.23 0.07 par:pas; +tuyaux tuyau nom m p 26.73 20.61 9.22 8.65 +tuyère tuyère nom f s 0.04 0.07 0.03 0.00 +tuyères tuyère nom f p 0.04 0.07 0.01 0.07 +tézig tézig pro_per s 0.00 0.07 0.00 0.07 +tézigue tézigue pro_per s 0.00 0.34 0.00 0.34 +tweed tweed nom m s 0.00 5.34 0.00 5.14 +tweeds tweed nom m p 0.00 5.34 0.00 0.20 +twill twill nom m s 0.00 0.14 0.00 0.14 +twin_set twin_set nom m s 0.00 0.14 0.00 0.14 +twist twist nom m s 0.00 0.74 0.00 0.68 +twistant twister ver 0.00 0.20 0.00 0.07 par:pre; +twister twister ver 0.00 0.20 0.00 0.07 inf; +twists twist nom m p 0.00 0.74 0.00 0.07 +twistées twister ver f p 0.00 0.20 0.00 0.07 par:pas; +tympan tympan nom m s 1.25 6.01 0.36 2.50 +tympanique tympanique adj s 0.01 0.00 0.01 0.00 +tympanon tympanon nom m s 0.03 0.20 0.03 0.20 +tympans tympan nom m p 1.25 6.01 0.89 3.51 +type type nom m s 334.85 184.19 280.62 145.95 +typer typer ver 0.07 0.00 0.02 0.00 inf; +types type nom m p 334.85 184.19 54.23 38.24 +typhique typhique adj s 0.00 0.14 0.00 0.07 +typhiques typhique adj m p 0.00 0.14 0.00 0.07 +typhoïde typhoïde nom f s 0.36 1.01 0.36 1.01 +typhon typhon nom m s 0.78 1.89 0.72 1.28 +typhons typhon nom m p 0.78 1.89 0.06 0.61 +typhus typhus nom m 1.74 1.76 1.74 1.76 +typique typique adj s 9.34 2.84 8.62 2.30 +typiquement typiquement adv 1.86 1.96 1.86 1.96 +typiques typique adj p 9.34 2.84 0.72 0.54 +typo typo nom m s 0.07 1.49 0.04 1.01 +typographe typographe nom s 0.02 1.08 0.01 0.47 +typographes typographe nom p 0.02 1.08 0.01 0.61 +typographie typographie nom f s 0.34 0.47 0.34 0.47 +typographier typographier ver 0.00 0.07 0.00 0.07 inf; +typographique typographique adj f s 0.06 0.34 0.05 0.20 +typographiques typographique adj p 0.06 0.34 0.01 0.14 +typologie typologie nom f s 0.10 0.20 0.10 0.20 +typomètre typomètre nom m s 0.00 0.14 0.00 0.14 +typos typo nom m p 0.07 1.49 0.02 0.47 +typé typer ver m s 0.07 0.00 0.03 0.00 par:pas; +typée typé adj f s 0.01 0.14 0.01 0.00 +typés typer ver m p 0.07 0.00 0.01 0.00 par:pas; +tyran tyran nom m s 7.79 5.20 6.17 4.59 +tyranneau tyranneau nom m s 0.01 0.14 0.00 0.14 +tyranneaux tyranneau nom m p 0.01 0.14 0.01 0.00 +tyrannicide tyrannicide nom s 0.01 0.14 0.00 0.07 +tyrannicides tyrannicide nom p 0.01 0.14 0.01 0.07 +tyrannie tyrannie nom f s 2.63 2.50 2.50 2.43 +tyrannies tyrannie nom f p 2.63 2.50 0.14 0.07 +tyrannique tyrannique adj s 0.65 2.43 0.59 2.03 +tyranniquement tyranniquement adv 0.14 0.14 0.14 0.14 +tyranniques tyrannique adj p 0.65 2.43 0.06 0.41 +tyrannisais tyranniser ver 0.25 0.95 0.00 0.07 ind:imp:1s; +tyrannisait tyranniser ver 0.25 0.95 0.02 0.20 ind:imp:3s; +tyrannisant tyranniser ver 0.25 0.95 0.01 0.07 par:pre; +tyrannise tyranniser ver 0.25 0.95 0.03 0.14 ind:pre:1s;ind:pre:3s; +tyrannisent tyranniser ver 0.25 0.95 0.11 0.00 ind:pre:3p; +tyranniser tyranniser ver 0.25 0.95 0.05 0.20 inf; +tyrannisèrent tyranniser ver 0.25 0.95 0.00 0.07 ind:pas:3p; +tyrannisé tyranniser ver m s 0.25 0.95 0.02 0.20 par:pas; +tyrannisée tyranniser ver f s 0.25 0.95 0.01 0.00 par:pas; +tyrannosaure tyrannosaure nom m s 0.15 0.07 0.13 0.07 +tyrannosaures tyrannosaure nom m p 0.15 0.07 0.02 0.00 +tyrans tyran nom m p 7.79 5.20 1.62 0.61 +tyrienne tyrien adj f s 0.02 0.00 0.02 0.00 +tyrolien tyrolien adj m s 0.38 1.62 0.16 0.88 +tyrolienne tyrolien adj f s 0.38 1.62 0.08 0.27 +tyroliennes tyrolien adj f p 0.38 1.62 0.03 0.27 +tyroliens tyrolien nom m p 0.13 0.20 0.12 0.07 +tyrrhénienne tyrrhénienne adj f s 0.20 0.27 0.20 0.27 +tzar tzar nom m s 0.03 0.88 0.03 0.68 +tzarevitch tzarevitch nom m s 0.00 0.07 0.00 0.07 +tzarine tzar nom f s 0.03 0.88 0.00 0.14 +tzars tzar nom m p 0.03 0.88 0.00 0.07 +tzigane tzigane adj s 0.89 1.76 0.78 1.08 +tziganes tzigane nom p 1.49 0.61 1.10 0.54 +é é adv 0.05 0.00 0.05 0.00 +u u nom m 18.40 2.97 18.40 2.97 +ubac ubac nom m s 0.00 0.14 0.00 0.14 +ébahi ébahir ver m s 0.46 1.96 0.16 0.61 par:pas; +ébahie ébahir ver f s 0.46 1.96 0.15 0.27 par:pas; +ébahies ébahi adj f p 0.27 3.18 0.01 0.27 +ébahir ébahir ver 0.46 1.96 0.02 0.07 inf; +ébahirons ébahir ver 0.46 1.96 0.01 0.00 ind:fut:1p; +ébahis ébahir ver m p 0.46 1.96 0.09 0.41 ind:pre:2s;par:pas; +ébahissait ébahir ver 0.46 1.96 0.00 0.34 ind:imp:3s; +ébahissant ébahir ver 0.46 1.96 0.00 0.07 par:pre; +ébahissement ébahissement nom m s 0.00 1.15 0.00 1.15 +ébahissent ébahir ver 0.46 1.96 0.01 0.14 ind:pre:3p; +ébahissons ébahir ver 0.46 1.96 0.00 0.07 ind:pre:1p; +ébahit ébahir ver 0.46 1.96 0.02 0.00 ind:pre:3s; +ébarbage ébarbage nom m s 0.00 0.07 0.00 0.07 +ébarbait ébarber ver 0.00 0.20 0.00 0.07 ind:imp:3s; +ébarber ébarber ver 0.00 0.20 0.00 0.07 inf; +ébarbé ébarber ver m s 0.00 0.20 0.00 0.07 par:pas; +ébat ébattre ver 0.10 3.18 0.01 0.07 ind:pre:3s; +ébats ébat nom m p 0.41 2.30 0.41 2.30 +ébattît ébattre ver 0.10 3.18 0.00 0.07 sub:imp:3s; +ébattaient ébattre ver 0.10 3.18 0.00 0.74 ind:imp:3p; +ébattait ébattre ver 0.10 3.18 0.02 0.41 ind:imp:3s; +ébattant ébattre ver 0.10 3.18 0.01 0.20 par:pre; +ébattements ébattement nom m p 0.00 0.07 0.00 0.07 +ébattent ébattre ver 0.10 3.18 0.01 0.20 ind:pre:3p; +ébattit ébattre ver 0.10 3.18 0.00 0.07 ind:pas:3s; +ébattons ébattre ver 0.10 3.18 0.00 0.07 ind:pre:1p; +ébattre ébattre ver 0.10 3.18 0.05 1.35 inf; +ébaubi ébaubir ver m s 0.00 0.41 0.00 0.14 par:pas; +ébaubie ébaubir ver f s 0.00 0.41 0.00 0.07 par:pas; +ébaubis ébaubir ver m p 0.00 0.41 0.00 0.14 par:pas; +ébaubissaient ébaubir ver 0.00 0.41 0.00 0.07 ind:imp:3p; +ébaucha ébaucher ver 0.05 7.97 0.00 2.36 ind:pas:3s; +ébauchai ébaucher ver 0.05 7.97 0.00 0.14 ind:pas:1s; +ébauchaient ébaucher ver 0.05 7.97 0.00 0.34 ind:imp:3p; +ébauchais ébaucher ver 0.05 7.97 0.00 0.20 ind:imp:1s; +ébauchait ébaucher ver 0.05 7.97 0.00 0.88 ind:imp:3s; +ébauchant ébaucher ver 0.05 7.97 0.00 0.68 par:pre; +ébauche ébauche nom f s 1.33 5.47 1.17 4.46 +ébauchent ébaucher ver 0.05 7.97 0.00 0.34 ind:pre:3p; +ébaucher ébaucher ver 0.05 7.97 0.03 1.15 inf; +ébauches ébauche nom f p 1.33 5.47 0.16 1.01 +ébaucheurs ébaucheur nom m p 0.00 0.07 0.00 0.07 +ébauchons ébaucher ver 0.05 7.97 0.01 0.00 ind:pre:1p; +ébauchât ébaucher ver 0.05 7.97 0.00 0.07 sub:imp:3s; +ébauchèrent ébaucher ver 0.05 7.97 0.00 0.27 ind:pas:3p; +ébauché ébauché adj m s 0.14 1.69 0.00 0.74 +ébauchée ébaucher ver f s 0.05 7.97 0.00 0.34 par:pas; +ébauchées ébauché adj f p 0.14 1.69 0.00 0.34 +ébauchés ébauché adj m p 0.14 1.69 0.14 0.34 +ébaudi ébaudir ver m s 0.00 0.07 0.00 0.07 par:pas; +éberlua éberluer ver 0.02 1.89 0.00 0.07 ind:pas:3s; +éberluait éberluer ver 0.02 1.89 0.00 0.14 ind:imp:3s; +éberlue éberluer ver 0.02 1.89 0.00 0.07 ind:pre:3s; +éberluer éberluer ver 0.02 1.89 0.01 0.07 inf; +éberlué éberlué adj m s 0.01 2.70 0.01 1.28 +éberluée éberluer ver f s 0.02 1.89 0.01 0.27 par:pas; +éberluées éberlué adj f p 0.01 2.70 0.00 0.14 +éberlués éberlué adj m p 0.01 2.70 0.00 0.61 +ubique ubique adj s 0.00 0.07 0.00 0.07 +ubiquiste ubiquiste nom s 0.01 0.27 0.01 0.27 +ubiquitaire ubiquitaire adj m s 0.00 0.14 0.00 0.14 +ubiquité ubiquité nom f s 0.04 1.82 0.04 1.82 +ébloui éblouir ver m s 3.88 19.73 0.65 5.68 par:pas; +éblouie éblouir ver f s 3.88 19.73 0.28 2.09 par:pas; +éblouies éblouir ver f p 3.88 19.73 0.03 0.20 par:pas; +éblouir éblouir ver 3.88 19.73 0.92 2.30 inf; +éblouira éblouir ver 3.88 19.73 0.03 0.07 ind:fut:3s; +éblouirai éblouir ver 3.88 19.73 0.10 0.07 ind:fut:1s; +éblouirait éblouir ver 3.88 19.73 0.00 0.14 cnd:pre:3s; +éblouirent éblouir ver 3.88 19.73 0.00 0.14 ind:pas:3p; +éblouirez éblouir ver 3.88 19.73 0.00 0.07 ind:fut:2p; +éblouis éblouir ver m p 3.88 19.73 0.65 1.82 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +éblouissaient éblouir ver 3.88 19.73 0.00 0.54 ind:imp:3p; +éblouissait éblouir ver 3.88 19.73 0.12 1.82 ind:imp:3s; +éblouissant éblouissant adj m s 2.07 13.24 0.65 3.04 +éblouissante éblouissant adj f s 2.07 13.24 1.00 6.28 +éblouissantes éblouissant adj f p 2.07 13.24 0.14 2.36 +éblouissants éblouissant adj m p 2.07 13.24 0.27 1.55 +éblouisse éblouir ver 3.88 19.73 0.04 0.07 sub:pre:3s; +éblouissement éblouissement nom m s 0.29 5.95 0.29 5.14 +éblouissements éblouissement nom m p 0.29 5.95 0.00 0.81 +éblouissent éblouir ver 3.88 19.73 0.27 1.01 ind:pre:3p; +éblouisses éblouir ver 3.88 19.73 0.00 0.07 sub:pre:2s; +éblouissez éblouir ver 3.88 19.73 0.03 0.07 imp:pre:2p;ind:pre:2p; +éblouissions éblouir ver 3.88 19.73 0.00 0.07 ind:imp:1p; +éblouit éblouir ver 3.88 19.73 0.58 2.57 ind:pre:3s;ind:pas:3s; +ébonite ébonite nom f s 0.00 0.88 0.00 0.88 +éborgna éborgner ver 0.47 0.54 0.00 0.07 ind:pas:3s; +éborgne éborgner ver 0.47 0.54 0.02 0.14 ind:pre:1s;ind:pre:3s; +éborgner éborgner ver 0.47 0.54 0.41 0.20 inf; +éborgné éborgner ver m s 0.47 0.54 0.04 0.14 par:pas; +éboueur éboueur nom m s 1.93 2.70 0.97 0.61 +éboueurs éboueur nom m p 1.93 2.70 0.96 2.09 +ébouillanta ébouillanter ver 0.58 0.61 0.14 0.00 ind:pas:3s; +ébouillante ébouillanter ver 0.58 0.61 0.05 0.14 ind:pre:1s;ind:pre:3s; +ébouillanter ébouillanter ver 0.58 0.61 0.16 0.20 inf; +ébouillanté ébouillanter ver m s 0.58 0.61 0.22 0.14 par:pas; +ébouillantée ébouillanté adj f s 0.15 0.47 0.14 0.07 +ébouillantées ébouillanté adj f p 0.15 0.47 0.01 0.07 +ébouillantés ébouillanté adj m p 0.15 0.47 0.00 0.20 +éboula ébouler ver 0.03 1.82 0.00 0.07 ind:pas:3s; +éboulaient ébouler ver 0.03 1.82 0.00 0.14 ind:imp:3p; +éboulait ébouler ver 0.03 1.82 0.00 0.14 ind:imp:3s; +éboulant ébouler ver 0.03 1.82 0.00 0.14 par:pre; +éboule ébouler ver 0.03 1.82 0.00 0.41 ind:pre:3s; +éboulement éboulement nom m s 0.54 2.36 0.48 1.49 +éboulements éboulement nom m p 0.54 2.36 0.06 0.88 +éboulent ébouler ver 0.03 1.82 0.00 0.07 ind:pre:3p; +ébouler ébouler ver 0.03 1.82 0.01 0.07 inf; +ébouleuses ébouleux adj f p 0.00 0.07 0.00 0.07 +éboulis éboulis nom m 0.16 3.99 0.16 3.99 +éboulèrent ébouler ver 0.03 1.82 0.00 0.07 ind:pas:3p; +éboulé ébouler ver m s 0.03 1.82 0.01 0.14 par:pas; +éboulée ébouler ver f s 0.03 1.82 0.00 0.20 par:pas; +éboulées ébouler ver f p 0.03 1.82 0.00 0.20 par:pas; +éboulés ébouler ver m p 0.03 1.82 0.01 0.20 par:pas; +ébouriffa ébouriffer ver 0.08 2.97 0.00 0.74 ind:pas:3s; +ébouriffaient ébouriffer ver 0.08 2.97 0.00 0.14 ind:imp:3p; +ébouriffait ébouriffer ver 0.08 2.97 0.01 0.41 ind:imp:3s; +ébouriffant ébouriffant adj m s 0.03 0.07 0.01 0.07 +ébouriffante ébouriffant adj f s 0.03 0.07 0.02 0.00 +ébouriffe ébouriffer ver 0.08 2.97 0.02 0.14 imp:pre:2s;ind:pre:3s; +ébouriffent ébouriffer ver 0.08 2.97 0.00 0.20 ind:pre:3p; +ébouriffer ébouriffer ver 0.08 2.97 0.00 0.20 inf; +ébouriffé ébouriffé adj m s 0.22 3.45 0.05 1.01 +ébouriffée ébouriffé adj f s 0.22 3.45 0.12 0.74 +ébouriffées ébouriffé adj f p 0.22 3.45 0.00 0.20 +ébouriffés ébouriffé adj m p 0.22 3.45 0.05 1.49 +ébouser ébouser ver 0.00 0.07 0.00 0.07 inf; +éboué ébouer ver m s 0.00 1.82 0.00 1.82 par:pas; +ébouzer ébouzer ver 0.00 0.14 0.00 0.07 inf; +ébouzé ébouzer ver m s 0.00 0.14 0.00 0.07 par:pas; +ébrancha ébrancher ver 0.00 0.68 0.00 0.14 ind:pas:3s; +ébranchait ébrancher ver 0.00 0.68 0.00 0.14 ind:imp:3s; +ébranchant ébrancher ver 0.00 0.68 0.00 0.07 par:pre; +ébranchement ébranchement nom m s 0.00 0.07 0.00 0.07 +ébrancher ébrancher ver 0.00 0.68 0.00 0.14 inf; +ébrancherez ébrancher ver 0.00 0.68 0.00 0.07 ind:fut:2p; +ébranché ébranché adj m s 0.00 0.07 0.00 0.07 +ébranchés ébrancher ver m p 0.00 0.68 0.00 0.14 par:pas; +ébranla ébranler ver 3.37 23.45 0.15 3.85 ind:pas:3s; +ébranlaient ébranler ver 3.37 23.45 0.00 0.95 ind:imp:3p; +ébranlait ébranler ver 3.37 23.45 0.01 2.70 ind:imp:3s; +ébranlant ébranler ver 3.37 23.45 0.00 0.74 par:pre; +ébranle ébranler ver 3.37 23.45 0.22 2.97 imp:pre:2s;ind:pre:3s; +ébranlement ébranlement nom m s 0.01 1.55 0.01 1.08 +ébranlements ébranlement nom m p 0.01 1.55 0.00 0.47 +ébranlent ébranler ver 3.37 23.45 0.03 1.08 ind:pre:3p; +ébranler ébranler ver 3.37 23.45 1.35 3.78 inf; +ébranlera ébranler ver 3.37 23.45 0.03 0.07 ind:fut:3s; +ébranlerai ébranler ver 3.37 23.45 0.01 0.00 ind:fut:1s; +ébranleraient ébranler ver 3.37 23.45 0.01 0.07 cnd:pre:3p; +ébranlerais ébranler ver 3.37 23.45 0.00 0.07 cnd:pre:1s; +ébranlerait ébranler ver 3.37 23.45 0.00 0.07 cnd:pre:3s; +ébranlât ébranler ver 3.37 23.45 0.00 0.14 sub:imp:3s; +ébranlèrent ébranler ver 3.37 23.45 0.00 0.61 ind:pas:3p; +ébranlé ébranler ver m s 3.37 23.45 0.89 3.51 par:pas; +ébranlée ébranler ver f s 3.37 23.45 0.59 2.03 par:pas; +ébranlées ébranler ver f p 3.37 23.45 0.01 0.20 par:pas; +ébranlés ébranler ver m p 3.37 23.45 0.06 0.61 par:pas; +ébriété ébriété nom f s 0.73 1.15 0.73 1.15 +ébroua ébrouer ver 0.01 8.11 0.00 1.76 ind:pas:3s; +ébrouaient ébrouer ver 0.01 8.11 0.00 0.27 ind:imp:3p; +ébrouais ébrouer ver 0.01 8.11 0.00 0.07 ind:imp:1s; +ébrouait ébrouer ver 0.01 8.11 0.00 1.55 ind:imp:3s; +ébrouant ébrouer ver 0.01 8.11 0.00 1.22 par:pre; +ébroue ébrouer ver 0.01 8.11 0.00 1.35 ind:pre:1s;ind:pre:3s; +ébrouement ébrouement nom m s 0.00 0.14 0.00 0.14 +ébrouent ébrouer ver 0.01 8.11 0.00 0.61 ind:pre:3p; +ébrouer ébrouer ver 0.01 8.11 0.01 0.95 inf; +ébrouèrent ébrouer ver 0.01 8.11 0.00 0.14 ind:pas:3p; +ébroué ébrouer ver m s 0.01 8.11 0.00 0.20 par:pas; +ébrèche ébrécher ver 0.74 0.95 0.03 0.07 ind:pre:3s; +ébréchaient ébrécher ver 0.74 0.95 0.00 0.07 ind:imp:3p; +ébrécher ébrécher ver 0.74 0.95 0.00 0.14 inf; +ébréché ébrécher ver m s 0.74 0.95 0.39 0.14 par:pas; +ébréchée ébrécher ver f s 0.74 0.95 0.32 0.27 par:pas; +ébréchées ébréché adj f p 0.37 3.65 0.14 0.61 +ébréchure ébréchure nom f s 0.00 0.20 0.00 0.07 +ébréchures ébréchure nom f p 0.00 0.20 0.00 0.14 +ébréchés ébréché adj m p 0.37 3.65 0.00 0.81 +ébruita ébruiter ver 1.32 1.22 0.00 0.07 ind:pas:3s; +ébruite ébruiter ver 1.32 1.22 0.58 0.27 imp:pre:2s;ind:pre:3s; +ébruitent ébruiter ver 1.32 1.22 0.02 0.00 ind:pre:3p; +ébruiter ébruiter ver 1.32 1.22 0.37 0.54 inf; +ébruitera ébruiter ver 1.32 1.22 0.01 0.00 ind:fut:3s; +ébruiterait ébruiter ver 1.32 1.22 0.02 0.00 cnd:pre:3s; +ébruitez ébruiter ver 1.32 1.22 0.22 0.07 imp:pre:2p;ind:pre:2p; +ébruitons ébruiter ver 1.32 1.22 0.05 0.00 imp:pre:1p;ind:pre:1p; +ébruitât ébruiter ver 1.32 1.22 0.00 0.07 sub:imp:3s; +ébruité ébruiter ver m s 1.32 1.22 0.03 0.00 par:pas; +ébruitée ébruiter ver f s 1.32 1.22 0.01 0.20 par:pas; +ébène ébène nom f s 0.51 4.26 0.51 4.26 +ubuesque ubuesque adj f s 0.14 0.07 0.14 0.07 +ébullition ébullition nom f s 0.79 1.35 0.79 1.35 +ébéniste ébéniste nom s 0.24 1.55 0.11 1.35 +ébénisterie ébénisterie nom f s 0.00 0.41 0.00 0.34 +ébénisteries ébénisterie nom f p 0.00 0.41 0.00 0.07 +ébénistes ébéniste nom p 0.24 1.55 0.13 0.20 +écaillage écaillage nom m s 0.03 0.00 0.03 0.00 +écaillaient écailler ver 0.74 4.66 0.00 0.34 ind:imp:3p; +écaillait écailler ver 0.74 4.66 0.14 0.61 ind:imp:3s; +écaillant écailler ver 0.74 4.66 0.00 0.34 par:pre; +écaille écaille nom f s 1.42 11.35 0.57 6.15 +écaillent écailler ver 0.74 4.66 0.01 0.20 ind:pre:3p; +écailler écailler ver 0.74 4.66 0.28 0.61 inf; +écaillera écailler ver 0.74 4.66 0.01 0.00 ind:fut:3s; +écaillerai écailler ver 0.74 4.66 0.00 0.07 ind:fut:1s; +écaillers écailler nom m p 0.11 0.27 0.00 0.07 +écailles écaille nom f p 1.42 11.35 0.84 5.20 +écailleur écailleur nom m s 0.00 0.07 0.00 0.07 +écailleuse écailleux adj f s 0.00 0.74 0.00 0.34 +écailleuses écailleux adj f p 0.00 0.74 0.00 0.07 +écailleux écailleux adj m 0.00 0.74 0.00 0.34 +écaillère écailler nom f s 0.11 0.27 0.01 0.00 +écaillé écailler ver m s 0.74 4.66 0.04 0.27 par:pas; +écaillée écailler ver f s 0.74 4.66 0.06 0.81 par:pas; +écaillées écaillé adj f p 0.07 2.97 0.03 0.41 +écaillure écaillure nom f s 0.00 0.14 0.00 0.07 +écaillures écaillure nom f p 0.00 0.14 0.00 0.07 +écaillés écaillé adj m p 0.07 2.97 0.01 0.27 +écalait écaler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +écale écale nom f s 0.02 0.07 0.00 0.07 +écaler écaler ver 0.00 0.14 0.00 0.07 inf; +écales écale nom f p 0.02 0.07 0.02 0.00 +écarlate écarlate adj s 0.78 8.58 0.66 5.95 +écarlates écarlate adj p 0.78 8.58 0.12 2.64 +écarquilla écarquiller ver 0.76 8.85 0.00 0.95 ind:pas:3s; +écarquillai écarquiller ver 0.76 8.85 0.00 0.14 ind:pas:1s; +écarquillaient écarquiller ver 0.76 8.85 0.01 0.34 ind:imp:3p; +écarquillais écarquiller ver 0.76 8.85 0.10 0.07 ind:imp:1s; +écarquillait écarquiller ver 0.76 8.85 0.00 0.54 ind:imp:3s; +écarquillant écarquiller ver 0.76 8.85 0.00 0.95 par:pre; +écarquille écarquiller ver 0.76 8.85 0.11 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écarquillement écarquillement nom m s 0.00 0.20 0.00 0.20 +écarquillent écarquiller ver 0.76 8.85 0.00 0.20 ind:pre:3p; +écarquiller écarquiller ver 0.76 8.85 0.00 0.41 inf; +écarquillez écarquiller ver 0.76 8.85 0.02 0.00 imp:pre:2p;ind:pre:2p; +écarquillions écarquiller ver 0.76 8.85 0.00 0.14 ind:imp:1p; +écarquillèrent écarquiller ver 0.76 8.85 0.10 0.07 ind:pas:3p; +écarquillé écarquiller ver m s 0.76 8.85 0.00 0.34 par:pas; +écarquillée écarquiller ver f s 0.76 8.85 0.00 0.07 par:pas; +écarquillées écarquiller ver f p 0.76 8.85 0.00 0.20 par:pas; +écarquillés écarquiller ver m p 0.76 8.85 0.41 3.24 par:pas; +écart écart nom m s 14.71 34.53 14.36 32.30 +écarta écarter ver 24.83 92.36 0.51 13.72 ind:pas:3s; +écartai écarter ver 24.83 92.36 0.00 1.89 ind:pas:1s; +écartaient écarter ver 24.83 92.36 0.04 4.66 ind:imp:3p; +écartais écarter ver 24.83 92.36 0.06 0.68 ind:imp:1s;ind:imp:2s; +écartait écarter ver 24.83 92.36 0.51 7.23 ind:imp:3s; +écartant écarter ver 24.83 92.36 0.16 9.86 par:pre; +écarte écarter ver 24.83 92.36 5.95 13.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écartela écarteler ver 0.35 3.18 0.00 0.07 ind:pas:3s; +écartelaient écarteler ver 0.35 3.18 0.00 0.14 ind:imp:3p; +écartelait écarteler ver 0.35 3.18 0.00 0.20 ind:imp:3s; +écartelant écarteler ver 0.35 3.18 0.01 0.07 par:pre; +écarteler écarteler ver 0.35 3.18 0.06 0.34 inf; +écartelé écarteler ver m s 0.35 3.18 0.20 0.95 par:pas; +écartelée écarteler ver f s 0.35 3.18 0.02 0.20 par:pas; +écartelées écartelé adj f p 0.19 1.96 0.14 0.47 +écartelés écartelé adj m p 0.19 1.96 0.01 0.27 +écartement écartement nom m s 0.05 0.47 0.05 0.41 +écartements écartement nom m p 0.05 0.47 0.00 0.07 +écartent écarter ver 24.83 92.36 0.26 3.78 ind:pre:3p; +écarter écarter ver 24.83 92.36 4.77 16.89 ind:pre:2p;inf; +écartera écarter ver 24.83 92.36 0.05 0.14 ind:fut:3s; +écarteraient écarter ver 24.83 92.36 0.00 0.07 cnd:pre:3p; +écarterait écarter ver 24.83 92.36 0.04 0.07 cnd:pre:3s; +écarteras écarter ver 24.83 92.36 0.12 0.00 ind:fut:2s; +écarterez écarter ver 24.83 92.36 0.01 0.00 ind:fut:2p; +écarteront écarter ver 24.83 92.36 0.01 0.07 ind:fut:3p; +écartes écarter ver 24.83 92.36 0.72 0.20 ind:pre:2s; +écarteur écarteur nom m s 0.27 0.00 0.27 0.00 +écartez écarter ver 24.83 92.36 6.30 1.01 imp:pre:2p;ind:pre:2p; +écartions écarter ver 24.83 92.36 0.02 0.14 ind:imp:1p; +écartâmes écarter ver 24.83 92.36 0.00 0.07 ind:pas:1p; +écartons écarter ver 24.83 92.36 0.32 0.14 imp:pre:1p;ind:pre:1p; +écartât écarter ver 24.83 92.36 0.00 0.41 sub:imp:3s; +écarts écart nom m p 14.71 34.53 0.35 2.23 +écartèle écarteler ver 0.35 3.18 0.05 0.47 ind:pre:1s;ind:pre:3s; +écartèlement écartèlement nom m s 0.03 0.34 0.02 0.27 +écartèlements écartèlement nom m p 0.03 0.34 0.01 0.07 +écartèlent écarteler ver 0.35 3.18 0.00 0.27 ind:pre:3p; +écartèleront écarteler ver 0.35 3.18 0.01 0.00 ind:fut:3p; +écartèrent écarter ver 24.83 92.36 0.12 2.43 ind:pas:3p; +écarté écarter ver m s 24.83 92.36 2.69 8.04 par:pas; +écartée écarter ver f s 24.83 92.36 0.88 1.89 par:pas; +écartées écarté adj f p 3.36 16.76 1.57 8.85 +écartés écarter ver m p 24.83 92.36 1.10 3.11 par:pas; +écervelé écervelé adj m s 0.81 0.61 0.46 0.14 +écervelée écervelé nom f s 0.91 0.88 0.34 0.27 +écervelées écervelé nom f p 0.91 0.88 0.17 0.07 +écervelés écervelé adj m p 0.81 0.61 0.17 0.14 +échût échoir ver 0.86 2.16 0.00 0.14 sub:imp:3s; +échafaud échafaud nom m s 0.85 2.43 0.85 2.23 +échafauda échafauder ver 0.44 3.24 0.00 0.07 ind:pas:3s; +échafaudage échafaudage nom m s 0.86 6.42 0.70 3.78 +échafaudages échafaudage nom m p 0.86 6.42 0.15 2.64 +échafaudaient échafauder ver 0.44 3.24 0.01 0.20 ind:imp:3p; +échafaudais échafauder ver 0.44 3.24 0.00 0.14 ind:imp:1s; +échafaudait échafauder ver 0.44 3.24 0.00 0.74 ind:imp:3s; +échafaudant échafauder ver 0.44 3.24 0.14 0.41 par:pre; +échafaude échafauder ver 0.44 3.24 0.02 0.20 ind:pre:3s; +échafaudent échafauder ver 0.44 3.24 0.00 0.14 ind:pre:3p; +échafauder échafauder ver 0.44 3.24 0.17 0.54 inf; +échafaudons échafauder ver 0.44 3.24 0.00 0.07 ind:pre:1p; +échafauds échafaud nom m p 0.85 2.43 0.00 0.20 +échafaudèrent échafauder ver 0.44 3.24 0.00 0.07 ind:pas:3p; +échafaudé échafauder ver m s 0.44 3.24 0.09 0.27 par:pas; +échafaudées échafauder ver f p 0.44 3.24 0.01 0.14 par:pas; +échafaudés échafauder ver m p 0.44 3.24 0.00 0.27 par:pas; +échalas échalas nom m 0.41 1.76 0.41 1.76 +échalier échalier nom m s 0.02 0.20 0.02 0.00 +échaliers échalier nom m p 0.02 0.20 0.00 0.20 +échalote échalote nom f s 1.30 1.28 0.80 0.81 +échalotes échalote nom f p 1.30 1.28 0.50 0.47 +échancraient échancrer ver 0.01 0.95 0.00 0.07 ind:imp:3p; +échancre échancrer ver 0.01 0.95 0.00 0.14 ind:pre:3s; +échancrer échancrer ver 0.01 0.95 0.00 0.20 inf; +échancré échancré adj m s 0.06 1.15 0.03 0.47 +échancrée échancré adj f s 0.06 1.15 0.02 0.27 +échancrées échancré adj f p 0.06 1.15 0.00 0.20 +échancrure échancrure nom f s 0.00 3.31 0.00 3.04 +échancrures échancrure nom f p 0.00 3.31 0.00 0.27 +échancrés échancré adj m p 0.06 1.15 0.01 0.20 +échange échange nom m s 32.77 32.43 29.97 23.99 +échangea échanger ver 27.38 58.18 0.02 2.03 ind:pas:3s; +échangeables échangeable adj m p 0.01 0.07 0.01 0.07 +échangeai échanger ver 27.38 58.18 0.03 0.61 ind:pas:1s; +échangeaient échanger ver 27.38 58.18 0.07 5.41 ind:imp:3p; +échangeais échanger ver 27.38 58.18 0.06 0.34 ind:imp:1s;ind:imp:2s; +échangeait échanger ver 27.38 58.18 0.27 2.91 ind:imp:3s; +échangeant échanger ver 27.38 58.18 0.16 3.11 par:pre; +échangent échanger ver 27.38 58.18 0.81 3.72 ind:pre:3p; +échangeâmes échanger ver 27.38 58.18 0.02 1.49 ind:pas:1p; +échangeons échanger ver 27.38 58.18 0.17 0.68 imp:pre:1p;ind:pre:1p; +échanger échanger ver 27.38 58.18 9.86 12.03 inf; +échangera échanger ver 27.38 58.18 0.36 0.07 ind:fut:3s; +échangerai échanger ver 27.38 58.18 0.31 0.07 ind:fut:1s; +échangeraient échanger ver 27.38 58.18 0.04 0.20 cnd:pre:3p; +échangerais échanger ver 27.38 58.18 0.92 0.07 cnd:pre:1s;cnd:pre:2s; +échangerait échanger ver 27.38 58.18 0.25 0.41 cnd:pre:3s; +échangeras échanger ver 27.38 58.18 0.16 0.00 ind:fut:2s; +échangerez échanger ver 27.38 58.18 0.14 0.00 ind:fut:2p; +échangeriez échanger ver 27.38 58.18 0.06 0.00 cnd:pre:2p; +échangerions échanger ver 27.38 58.18 0.00 0.07 cnd:pre:1p; +échangerons échanger ver 27.38 58.18 0.09 0.07 ind:fut:1p; +échangeront échanger ver 27.38 58.18 0.06 0.07 ind:fut:3p; +échanges échange nom m p 32.77 32.43 2.81 8.45 +échangeur échangeur nom m s 0.30 0.47 0.30 0.20 +échangeurs échangeur nom m p 0.30 0.47 0.00 0.27 +échangez échanger ver 27.38 58.18 0.44 0.27 imp:pre:2p;ind:pre:2p; +échangiez échanger ver 27.38 58.18 0.04 0.07 ind:imp:2p; +échangions échanger ver 27.38 58.18 0.19 1.35 ind:imp:1p; +échangisme échangisme nom m s 0.16 0.00 0.16 0.00 +échangiste échangiste nom s 0.29 0.07 0.14 0.00 +échangistes échangiste nom p 0.29 0.07 0.16 0.07 +échangèrent échanger ver 27.38 58.18 0.02 5.27 ind:pas:3p; +échangé échanger ver m s 27.38 58.18 5.79 8.58 par:pas; +échangée échanger ver f s 27.38 58.18 0.41 0.41 par:pas; +échangées échanger ver f p 27.38 58.18 0.46 2.09 par:pas; +échangés échanger ver m p 27.38 58.18 0.81 3.65 par:pas; +échanson échanson nom m s 0.00 0.34 0.00 0.27 +échansons échanson nom m p 0.00 0.34 0.00 0.07 +échantillon échantillon nom m s 16.87 6.96 10.36 2.43 +échantillonnage échantillonnage nom m s 0.41 0.74 0.41 0.74 +échantillonne échantillonner ver 0.02 0.00 0.02 0.00 ind:pre:1s; +échantillons échantillon nom m p 16.87 6.96 6.51 4.53 +échappa échapper ver 95.05 132.64 0.28 4.05 ind:pas:3s; +échappai échapper ver 95.05 132.64 0.12 0.14 ind:pas:1s; +échappaient échapper ver 95.05 132.64 0.48 6.96 ind:imp:3p; +échappais échapper ver 95.05 132.64 0.28 1.08 ind:imp:1s;ind:imp:2s; +échappait échapper ver 95.05 132.64 0.94 15.41 ind:imp:3s; +échappant échapper ver 95.05 132.64 0.29 3.78 par:pre; +échappatoire échappatoire nom f s 1.96 0.95 1.46 0.61 +échappatoires échappatoire nom f p 1.96 0.95 0.50 0.34 +échappe échapper ver 95.05 132.64 16.76 18.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +échappement échappement nom m s 2.03 1.69 1.93 1.55 +échappements échappement nom m p 2.03 1.69 0.10 0.14 +échappent échapper ver 95.05 132.64 3.84 6.69 ind:pre:3p;sub:pre:3p; +échapper échapper ver 95.05 132.64 39.70 48.04 inf; +échappera échapper ver 95.05 132.64 2.76 1.28 ind:fut:3s; +échapperai échapper ver 95.05 132.64 0.38 0.07 ind:fut:1s; +échapperaient échapper ver 95.05 132.64 0.02 0.41 cnd:pre:3p; +échapperais échapper ver 95.05 132.64 0.17 0.20 cnd:pre:1s;cnd:pre:2s; +échapperait échapper ver 95.05 132.64 0.28 1.96 cnd:pre:3s; +échapperas échapper ver 95.05 132.64 1.81 0.27 ind:fut:2s; +échapperez échapper ver 95.05 132.64 0.81 0.34 ind:fut:2p; +échapperiez échapper ver 95.05 132.64 0.02 0.00 cnd:pre:2p; +échapperions échapper ver 95.05 132.64 0.01 0.07 cnd:pre:1p; +échapperons échapper ver 95.05 132.64 0.05 0.07 ind:fut:1p; +échapperont échapper ver 95.05 132.64 0.14 0.27 ind:fut:3p; +échappes échapper ver 95.05 132.64 0.51 0.20 ind:pre:2s; +échappez échapper ver 95.05 132.64 0.13 0.14 imp:pre:2p;ind:pre:2p; +échappiez échapper ver 95.05 132.64 0.09 0.07 ind:imp:2p;sub:pre:2p; +échappions échapper ver 95.05 132.64 0.13 0.34 ind:imp:1p; +échappâmes échapper ver 95.05 132.64 0.00 0.07 ind:pas:1p; +échappons échapper ver 95.05 132.64 0.26 0.27 imp:pre:1p;ind:pre:1p; +échappât échapper ver 95.05 132.64 0.00 0.61 sub:imp:3s; +échappèrent échapper ver 95.05 132.64 0.05 1.15 ind:pas:3p; +échappé échapper ver m s 95.05 132.64 19.84 17.64 par:pas; +échappée échapper ver f s 95.05 132.64 2.17 1.08 par:pas; +échappées échapper ver f p 95.05 132.64 0.22 0.34 par:pas; +échappés échapper ver m p 95.05 132.64 2.50 1.01 par:pas; +écharde écharde nom f s 0.62 2.91 0.37 1.42 +échardes écharde nom f p 0.62 2.91 0.25 1.49 +écharnait écharner ver 0.00 0.27 0.00 0.07 ind:imp:3s; +écharner écharner ver 0.00 0.27 0.00 0.20 inf; +écharpe écharpe nom f s 5.14 13.92 4.68 11.22 +écharpent écharper ver 0.07 1.08 0.01 0.00 ind:pre:3p; +écharper écharper ver 0.07 1.08 0.04 0.47 inf; +écharperaient écharper ver 0.07 1.08 0.00 0.07 cnd:pre:3p; +écharpes écharpe nom f p 5.14 13.92 0.46 2.70 +écharpé écharper ver m s 0.07 1.08 0.00 0.07 par:pas; +écharpée écharper ver f s 0.07 1.08 0.00 0.20 par:pas; +échasse échasse nom f s 0.42 1.15 0.04 0.00 +échasses échasse nom f p 0.42 1.15 0.38 1.15 +échassier échassier nom m s 0.02 3.51 0.01 2.57 +échassiers échassier nom m p 0.02 3.51 0.01 0.95 +échassière échassier adj f s 0.00 0.61 0.00 0.20 +échassières échassier adj f p 0.00 0.61 0.00 0.41 +échauder échauder ver 0.05 0.34 0.00 0.07 inf; +échauderont échauder ver 0.05 0.34 0.00 0.07 ind:fut:3p; +échaudé échaudé adj m s 0.05 0.34 0.05 0.27 +échaudée échaudé adj f s 0.05 0.34 0.00 0.07 +échaudés échauder ver m p 0.05 0.34 0.04 0.00 par:pas; +échauffa échauffer ver 3.25 6.76 0.01 0.20 ind:pas:3s; +échauffaient échauffer ver 3.25 6.76 0.00 0.27 ind:imp:3p; +échauffais échauffer ver 3.25 6.76 0.04 0.20 ind:imp:1s; +échauffait échauffer ver 3.25 6.76 0.06 0.81 ind:imp:3s; +échauffant échauffer ver 3.25 6.76 0.02 0.27 par:pre; +échauffe échauffer ver 3.25 6.76 0.59 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +échauffement échauffement nom m s 0.66 0.88 0.62 0.74 +échauffements échauffement nom m p 0.66 0.88 0.04 0.14 +échauffent échauffer ver 3.25 6.76 0.11 0.27 ind:pre:3p;sub:pre:3p; +échauffer échauffer ver 3.25 6.76 1.39 0.88 inf; +échauffez échauffer ver 3.25 6.76 0.26 0.14 imp:pre:2p;ind:pre:2p; +échauffons échauffer ver 3.25 6.76 0.11 0.00 imp:pre:1p;ind:pre:1p; +échauffourée échauffourée nom f s 0.32 1.35 0.08 0.95 +échauffourées échauffourée nom f p 0.32 1.35 0.24 0.41 +échauffé échauffer ver m s 3.25 6.76 0.43 1.62 par:pas; +échauffée échauffer ver f s 3.25 6.76 0.17 0.61 par:pas; +échauffées échauffer ver f p 3.25 6.76 0.01 0.20 par:pas; +échauffés échauffer ver m p 3.25 6.76 0.06 0.41 par:pas; +échauguette échauguette nom f s 0.00 0.27 0.00 0.07 +échauguettes échauguette nom f p 0.00 0.27 0.00 0.20 +échec échec nom m s 24.31 33.72 15.47 21.76 +échecs échec nom m p 24.31 33.72 8.84 11.96 +échelle échelle nom f s 14.09 31.76 13.46 28.04 +échelles échelle nom f p 14.09 31.76 0.64 3.72 +échelon échelon nom m s 1.48 6.08 0.77 2.91 +échelonnaient échelonner ver 0.13 1.49 0.00 0.14 ind:imp:3p; +échelonnait échelonner ver 0.13 1.49 0.00 0.07 ind:imp:3s; +échelonnant échelonner ver 0.13 1.49 0.00 0.20 par:pre; +échelonne échelonner ver 0.13 1.49 0.00 0.07 ind:pre:3s; +échelonnent échelonner ver 0.13 1.49 0.01 0.14 ind:pre:3p; +échelonner échelonner ver 0.13 1.49 0.04 0.20 inf; +échelonnerons échelonner ver 0.13 1.49 0.00 0.07 ind:fut:1p; +échelonné échelonner ver m s 0.13 1.49 0.07 0.07 par:pas; +échelonnée échelonner ver f s 0.13 1.49 0.00 0.07 par:pas; +échelonnées échelonner ver f p 0.13 1.49 0.01 0.14 par:pas; +échelonnés échelonner ver m p 0.13 1.49 0.01 0.34 par:pas; +échelons échelon nom m p 1.48 6.08 0.71 3.18 +écher écher ver 0.01 0.00 0.01 0.00 inf; +écheveau écheveau nom m s 0.17 3.72 0.15 2.64 +écheveaux écheveau nom m p 0.17 3.72 0.02 1.08 +échevelait écheveler ver 0.03 1.42 0.00 0.27 ind:imp:3s; +échevelant écheveler ver 0.03 1.42 0.00 0.07 par:pre; +écheveler écheveler ver 0.03 1.42 0.00 0.07 inf; +échevellement échevellement nom m s 0.00 0.07 0.00 0.07 +échevelé échevelé adj m s 0.03 3.65 0.01 0.74 +échevelée échevelé adj f s 0.03 3.65 0.01 2.09 +échevelées échevelé adj f p 0.03 3.65 0.00 0.34 +échevelés échevelé adj m p 0.03 3.65 0.01 0.47 +échevin échevin nom m s 0.48 0.34 0.48 0.27 +échevins échevin nom m p 0.48 0.34 0.00 0.07 +échina échiner ver 0.61 1.22 0.01 0.00 ind:pas:3s; +échinaient échiner ver 0.61 1.22 0.01 0.07 ind:imp:3p; +échinais échiner ver 0.61 1.22 0.01 0.07 ind:imp:1s; +échinait échiner ver 0.61 1.22 0.10 0.20 ind:imp:3s; +échinant échiner ver 0.61 1.22 0.00 0.14 par:pre; +échine échine nom f s 1.18 8.85 1.18 8.18 +échinent échiner ver 0.61 1.22 0.02 0.07 ind:pre:3p; +échiner échiner ver 0.61 1.22 0.05 0.27 inf; +échines échiner ver 0.61 1.22 0.01 0.00 ind:pre:2s; +échinodermes échinoderme nom m p 0.01 0.00 0.01 0.00 +échiné échiner ver m s 0.61 1.22 0.16 0.07 par:pas; +échinée échiner ver f s 0.61 1.22 0.02 0.00 par:pas; +échiquier échiquier nom m s 0.75 2.84 0.70 2.77 +échiquiers échiquier nom m p 0.75 2.84 0.05 0.07 +écho écho nom m s 6.65 45.95 5.83 32.50 +échocardiogramme échocardiogramme nom m s 0.07 0.00 0.07 0.00 +échocardiographie échocardiographie nom f s 0.01 0.00 0.01 0.00 +échographie échographie nom f s 1.39 0.07 1.39 0.07 +échographier échographier ver 0.01 0.00 0.01 0.00 inf; +échographiste échographiste nom s 0.01 0.00 0.01 0.00 +échoir échoir ver 0.86 2.16 0.20 0.14 inf; +échoirait échoir ver 0.86 2.16 0.00 0.07 cnd:pre:3s; +échoit échoir ver 0.86 2.16 0.23 0.47 ind:pre:3s; +écholocalisation écholocalisation nom f s 0.05 0.00 0.05 0.00 +écholocation écholocation nom f s 0.01 0.00 0.01 0.00 +échoppe échoppe nom f s 0.20 3.31 0.19 2.03 +échoppes échoppe nom f p 0.20 3.31 0.01 1.28 +échos_radar échos_radar nom m p 0.01 0.00 0.01 0.00 +échos écho nom m p 6.65 45.95 0.82 13.45 +échotier échotier nom m s 0.04 0.61 0.00 0.07 +échotiers échotier nom m p 0.04 0.61 0.03 0.47 +échotière échotier nom f s 0.04 0.61 0.01 0.07 +échoua échouer ver 30.62 20.61 0.19 0.88 ind:pas:3s; +échouage échouage nom m s 0.02 0.34 0.01 0.20 +échouages échouage nom m p 0.02 0.34 0.01 0.14 +échouai échouer ver 30.62 20.61 0.02 0.27 ind:pas:1s; +échouaient échouer ver 30.62 20.61 0.02 0.41 ind:imp:3p; +échouais échouer ver 30.62 20.61 0.07 0.54 ind:imp:1s;ind:imp:2s; +échouait échouer ver 30.62 20.61 0.31 0.68 ind:imp:3s; +échouant échouer ver 30.62 20.61 0.14 0.07 par:pre; +échoue échouer ver 30.62 20.61 4.62 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +échouement échouement nom m s 0.00 0.07 0.00 0.07 +échouent échouer ver 30.62 20.61 0.86 0.47 ind:pre:3p; +échouer échouer ver 30.62 20.61 5.41 3.99 inf; +échouera échouer ver 30.62 20.61 0.51 0.20 ind:fut:3s; +échouerai échouer ver 30.62 20.61 0.33 0.00 ind:fut:1s; +échoueraient échouer ver 30.62 20.61 0.10 0.00 cnd:pre:3p; +échouerais échouer ver 30.62 20.61 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +échouerait échouer ver 30.62 20.61 0.13 0.20 cnd:pre:3s; +échoueras échouer ver 30.62 20.61 0.22 0.00 ind:fut:2s; +échouerez échouer ver 30.62 20.61 0.21 0.00 ind:fut:2p; +échouerons échouer ver 30.62 20.61 0.17 0.00 ind:fut:1p; +échoueront échouer ver 30.62 20.61 0.13 0.07 ind:fut:3p; +échouez échouer ver 30.62 20.61 0.48 0.00 imp:pre:2p;ind:pre:2p; +échouiez échouer ver 30.62 20.61 0.02 0.00 ind:imp:2p; +échouions échouer ver 30.62 20.61 0.02 0.07 ind:imp:1p; +échouâmes échouer ver 30.62 20.61 0.00 0.14 ind:pas:1p; +échouons échouer ver 30.62 20.61 0.38 0.27 ind:pre:1p; +échouât échouer ver 30.62 20.61 0.00 0.07 sub:imp:3s; +échouèrent échouer ver 30.62 20.61 0.02 0.34 ind:pas:3p; +échoué échouer ver m s 30.62 20.61 15.44 7.50 par:pas; +échouée échouer ver f s 30.62 20.61 0.41 1.01 par:pas; +échouées échouer ver f p 30.62 20.61 0.04 0.95 par:pas; +échoués échouer ver m p 30.62 20.61 0.29 1.01 par:pas; +échu échoir ver m s 0.86 2.16 0.29 0.54 par:pas; +échéance échéance nom f s 2.47 6.69 2.13 5.68 +échéances échéance nom f p 2.47 6.69 0.34 1.01 +échéancier échéancier nom m s 0.03 0.14 0.03 0.14 +échéant échéant adj m s 0.47 3.85 0.47 3.85 +échue échoir ver f s 0.86 2.16 0.00 0.47 par:pas; +échues échoir ver f p 0.86 2.16 0.02 0.14 par:pas; +échut échoir ver 0.86 2.16 0.11 0.20 ind:pas:3s; +éclaboussa éclabousser ver 1.98 9.80 0.00 0.34 ind:pas:3s; +éclaboussaient éclabousser ver 1.98 9.80 0.00 0.81 ind:imp:3p; +éclaboussait éclabousser ver 1.98 9.80 0.02 1.76 ind:imp:3s; +éclaboussant éclabousser ver 1.98 9.80 0.02 1.01 par:pre; +éclaboussante éclaboussant adj f s 0.01 0.54 0.00 0.14 +éclaboussantes éclaboussant adj f p 0.01 0.54 0.01 0.07 +éclaboussants éclaboussant adj m p 0.01 0.54 0.00 0.07 +éclabousse éclabousser ver 1.98 9.80 0.54 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éclaboussement éclaboussement nom m s 0.04 1.01 0.01 0.61 +éclaboussements éclaboussement nom m p 0.04 1.01 0.03 0.41 +éclaboussent éclabousser ver 1.98 9.80 0.05 0.61 ind:pre:3p; +éclabousser éclabousser ver 1.98 9.80 0.48 0.74 inf; +éclaboussera éclabousser ver 1.98 9.80 0.04 0.00 ind:fut:3s; +éclabousses éclabousser ver 1.98 9.80 0.03 0.07 ind:pre:2s; +éclaboussez éclabousser ver 1.98 9.80 0.02 0.00 imp:pre:2p;ind:pre:2p; +éclaboussèrent éclabousser ver 1.98 9.80 0.00 0.14 ind:pas:3p; +éclaboussé éclabousser ver m s 1.98 9.80 0.61 1.49 par:pas; +éclaboussée éclabousser ver f s 1.98 9.80 0.12 1.01 par:pas; +éclaboussées éclabousser ver f p 1.98 9.80 0.03 0.14 par:pas; +éclaboussure éclaboussure nom f s 1.98 3.51 0.59 0.54 +éclaboussures éclaboussure nom f p 1.98 3.51 1.39 2.97 +éclaboussés éclabousser ver m p 1.98 9.80 0.02 0.88 par:pas; +éclair éclair nom m s 11.25 35.00 7.86 21.08 +éclaira éclairer ver 18.03 85.95 0.19 6.62 ind:pas:3s; +éclairage éclairage nom m s 4.34 12.77 3.71 10.74 +éclairages éclairage nom m p 4.34 12.77 0.62 2.03 +éclairagiste éclairagiste nom s 0.14 0.14 0.13 0.07 +éclairagistes éclairagiste nom p 0.14 0.14 0.01 0.07 +éclairai éclairer ver 18.03 85.95 0.00 0.14 ind:pas:1s; +éclairaient éclairer ver 18.03 85.95 0.16 4.39 ind:imp:3p; +éclairais éclairer ver 18.03 85.95 0.00 0.07 ind:imp:1s; +éclairait éclairer ver 18.03 85.95 0.70 14.59 ind:imp:3s; +éclairant éclairer ver 18.03 85.95 0.15 3.24 par:pre; +éclairante éclairant adj f s 0.55 1.08 0.25 0.20 +éclairantes éclairant adj f p 0.55 1.08 0.21 0.47 +éclairants éclairant adj m p 0.55 1.08 0.04 0.00 +éclairci éclaircir ver m s 8.53 13.18 1.14 1.76 par:pas; +éclaircie éclaircir ver f s 8.53 13.18 0.14 1.15 par:pas; +éclaircies éclaircie nom f p 0.11 3.31 0.03 1.35 +éclaircir éclaircir ver 8.53 13.18 4.75 5.34 inf; +éclaircira éclaircir ver 8.53 13.18 0.38 0.34 ind:fut:3s; +éclaircirai éclaircir ver 8.53 13.18 0.19 0.00 ind:fut:1s; +éclaircirait éclaircir ver 8.53 13.18 0.08 0.14 cnd:pre:3s; +éclairciras éclaircir ver 8.53 13.18 0.01 0.00 ind:fut:2s; +éclaircirez éclaircir ver 8.53 13.18 0.01 0.00 ind:fut:2p; +éclaircirons éclaircir ver 8.53 13.18 0.04 0.00 ind:fut:1p; +éclairciront éclaircir ver 8.53 13.18 0.03 0.07 ind:fut:3p; +éclaircis éclaircir ver m p 8.53 13.18 0.14 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +éclaircissage éclaircissage nom m s 0.01 0.00 0.01 0.00 +éclaircissaient éclaircir ver 8.53 13.18 0.00 0.47 ind:imp:3p; +éclaircissait éclaircir ver 8.53 13.18 0.03 0.74 ind:imp:3s; +éclaircissant éclaircir ver 8.53 13.18 0.00 0.47 par:pre; +éclaircisse éclaircir ver 8.53 13.18 0.27 0.20 sub:pre:1s;sub:pre:3s; +éclaircissement éclaircissement nom m s 0.94 1.96 0.19 1.15 +éclaircissements éclaircissement nom m p 0.94 1.96 0.75 0.81 +éclaircissent éclaircir ver 8.53 13.18 0.12 0.07 ind:pre:3p; +éclaircissez éclaircir ver 8.53 13.18 0.07 0.00 imp:pre:2p;ind:pre:2p; +éclaircissons éclaircir ver 8.53 13.18 0.02 0.00 imp:pre:1p; +éclaircit éclaircir ver 8.53 13.18 1.10 1.76 ind:pre:3s;ind:pas:3s; +éclaire éclairer ver 18.03 85.95 6.53 12.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éclairement éclairement nom m s 0.14 0.20 0.14 0.20 +éclairent éclairer ver 18.03 85.95 0.23 2.36 ind:pre:3p; +éclairer éclairer ver 18.03 85.95 5.91 12.97 inf;;inf;;inf;; +éclairera éclairer ver 18.03 85.95 0.51 0.34 ind:fut:3s; +éclaireraient éclairer ver 18.03 85.95 0.01 0.07 cnd:pre:3p; +éclairerait éclairer ver 18.03 85.95 0.16 0.20 cnd:pre:3s; +éclaireront éclairer ver 18.03 85.95 0.16 0.20 ind:fut:3p; +éclaires éclairer ver 18.03 85.95 0.21 0.00 ind:pre:2s;sub:pre:2s; +éclaireur éclaireur nom m s 3.59 2.50 1.96 1.42 +éclaireurs éclaireur nom m p 3.59 2.50 1.54 1.01 +éclaireuse éclaireur nom f s 3.59 2.50 0.07 0.00 +éclaireuses éclaireuse nom f p 0.08 0.00 0.08 0.00 +éclairez éclairer ver 18.03 85.95 0.63 0.20 imp:pre:2p;ind:pre:2p; +éclairiez éclairer ver 18.03 85.95 0.01 0.14 ind:imp:2p; +éclairons éclairer ver 18.03 85.95 0.01 0.14 ind:pre:1p; +éclairât éclairer ver 18.03 85.95 0.00 0.14 sub:imp:3s; +éclairs éclair nom m p 11.25 35.00 3.39 13.92 +éclairèrent éclairer ver 18.03 85.95 0.01 0.54 ind:pas:3p; +éclairé éclairé adj m s 3.34 17.64 1.62 6.08 +éclairée éclairé adj f s 3.34 17.64 1.17 6.49 +éclairées éclairé adj f p 3.34 17.64 0.28 3.18 +éclairés éclairer ver m p 18.03 85.95 0.27 3.38 par:pas; +éclampsie éclampsie nom f s 0.10 0.00 0.10 0.00 +éclamptique éclamptique adj s 0.03 0.00 0.03 0.00 +éclat éclat nom m s 14.28 82.77 9.73 50.95 +éclata éclater ver 41.33 100.47 0.55 20.07 ind:pas:3s; +éclatage éclatage nom m s 0.00 0.07 0.00 0.07 +éclatai éclater ver 41.33 100.47 0.00 1.49 ind:pas:1s; +éclataient éclater ver 41.33 100.47 0.14 5.47 ind:imp:3p; +éclatais éclater ver 41.33 100.47 0.12 0.20 ind:imp:1s;ind:imp:2s; +éclatait éclater ver 41.33 100.47 0.39 8.24 ind:imp:3s; +éclatant éclatant adj m s 3.62 20.14 1.42 6.35 +éclatante éclatant adj f s 3.62 20.14 1.88 7.64 +éclatantes éclatant adj f p 3.62 20.14 0.12 3.72 +éclatants éclatant adj m p 3.62 20.14 0.20 2.43 +éclate éclater ver 41.33 100.47 11.69 16.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éclatement éclatement nom m s 0.41 7.03 0.40 4.19 +éclatements éclatement nom m p 0.41 7.03 0.01 2.84 +éclatent éclater ver 41.33 100.47 1.38 6.55 ind:pre:3p; +éclater éclater ver 41.33 100.47 15.52 19.59 imp:pre:2p;inf; +éclatera éclater ver 41.33 100.47 0.76 0.34 ind:fut:3s; +éclaterai éclater ver 41.33 100.47 0.18 0.07 ind:fut:1s; +éclateraient éclater ver 41.33 100.47 0.00 0.27 cnd:pre:3p; +éclaterais éclater ver 41.33 100.47 0.27 0.00 cnd:pre:1s;cnd:pre:2s; +éclaterait éclater ver 41.33 100.47 0.18 0.54 cnd:pre:3s; +éclateras éclater ver 41.33 100.47 0.03 0.07 ind:fut:2s; +éclateriez éclater ver 41.33 100.47 0.01 0.00 cnd:pre:2p; +éclateront éclater ver 41.33 100.47 0.07 0.14 ind:fut:3p; +éclates éclater ver 41.33 100.47 0.68 0.07 ind:pre:2s; +éclateurs éclateur nom m p 0.00 0.07 0.00 0.07 +éclatez éclater ver 41.33 100.47 0.90 0.00 imp:pre:2p;ind:pre:2p; +éclatiez éclater ver 41.33 100.47 0.05 0.00 ind:imp:2p; +éclatons éclater ver 41.33 100.47 0.05 0.20 imp:pre:1p;ind:pre:1p; +éclatât éclater ver 41.33 100.47 0.00 0.54 sub:imp:3s; +éclats éclat nom m p 14.28 82.77 4.55 31.82 +éclatèrent éclater ver 41.33 100.47 0.02 3.58 ind:pas:3p; +éclaté éclater ver m s 41.33 100.47 7.19 9.26 par:pas; +éclatée éclater ver f s 41.33 100.47 0.56 0.68 par:pas; +éclatées éclaté adj f p 1.13 3.99 0.02 1.08 +éclatés éclater ver m p 41.33 100.47 0.49 0.34 par:pas; +éclectique éclectique adj s 0.41 0.74 0.36 0.34 +éclectiques éclectique adj p 0.41 0.74 0.04 0.41 +éclectisme éclectisme nom m s 0.05 0.20 0.05 0.20 +éclipsa éclipser ver 2.92 10.07 0.02 1.08 ind:pas:3s; +éclipsai éclipser ver 2.92 10.07 0.00 0.07 ind:pas:1s; +éclipsaient éclipser ver 2.92 10.07 0.01 0.20 ind:imp:3p; +éclipsait éclipser ver 2.92 10.07 0.04 0.74 ind:imp:3s; +éclipsant éclipser ver 2.92 10.07 0.05 0.20 par:pre; +éclipse éclipse nom f s 1.70 2.64 1.60 1.89 +éclipsent éclipser ver 2.92 10.07 0.04 0.14 ind:pre:3p; +éclipser éclipser ver 2.92 10.07 1.50 2.23 inf; +éclipsera éclipser ver 2.92 10.07 0.10 0.07 ind:fut:3s; +éclipserais éclipser ver 2.92 10.07 0.01 0.07 cnd:pre:1s; +éclipserait éclipser ver 2.92 10.07 0.00 0.07 cnd:pre:3s; +éclipses éclipse nom f p 1.70 2.64 0.10 0.74 +éclipsez éclipser ver 2.92 10.07 0.07 0.00 imp:pre:2p;ind:pre:2p; +éclipsions éclipser ver 2.92 10.07 0.01 0.00 ind:imp:1p; +éclipsèrent éclipser ver 2.92 10.07 0.00 0.27 ind:pas:3p; +éclipsé éclipser ver m s 2.92 10.07 0.32 1.28 par:pas; +éclipsée éclipser ver f s 2.92 10.07 0.09 1.01 par:pas; +éclipsées éclipser ver f p 2.92 10.07 0.02 0.07 par:pas; +éclipsés éclipser ver m p 2.92 10.07 0.05 1.01 par:pas; +écliptique écliptique nom m s 0.01 0.14 0.01 0.14 +éclisse éclisse nom f s 0.02 0.47 0.02 0.07 +éclisses éclisse nom f p 0.02 0.47 0.00 0.41 +éclopait écloper ver 0.04 0.27 0.00 0.07 ind:imp:3s; +écloper écloper ver 0.04 0.27 0.03 0.00 inf; +éclopé éclopé nom m s 0.46 1.42 0.17 0.20 +éclopée éclopé adj f s 0.19 0.34 0.14 0.07 +éclopés éclopé nom m p 0.46 1.42 0.26 1.22 +éclore éclore ver 0.83 2.84 0.82 2.84 inf; +éclos éclos adj m 1.03 2.09 0.63 0.74 +éclose éclos adj f s 1.03 2.09 0.28 0.41 +écloses éclos adj f p 1.03 2.09 0.12 0.95 +éclosion éclosion nom f s 0.13 2.16 0.10 1.89 +éclosions éclosion nom f p 0.13 2.16 0.03 0.27 +éclusa écluser ver 0.09 3.11 0.00 0.07 ind:pas:3s; +éclusaient écluser ver 0.09 3.11 0.00 0.20 ind:imp:3p; +éclusais écluser ver 0.09 3.11 0.00 0.14 ind:imp:1s; +éclusait écluser ver 0.09 3.11 0.00 0.27 ind:imp:3s; +éclusant écluser ver 0.09 3.11 0.00 0.20 par:pre; +écluse écluse nom f s 0.60 3.31 0.39 1.69 +éclusent écluser ver 0.09 3.11 0.00 0.14 ind:pre:3p; +écluser écluser ver 0.09 3.11 0.07 0.88 inf; +écluses écluse nom f p 0.60 3.31 0.21 1.62 +éclusier éclusier nom m s 0.01 0.20 0.00 0.14 +éclusiers éclusier nom m p 0.01 0.20 0.01 0.07 +éclusé écluser ver m s 0.09 3.11 0.00 0.54 par:pas; +éclusée écluser ver f s 0.09 3.11 0.00 0.07 par:pas; +éclusées écluser ver f p 0.09 3.11 0.00 0.07 par:pas; +écoeura écoeurer ver 1.56 9.66 0.00 0.14 ind:pas:3s; +écoeuraient écoeurer ver 1.56 9.66 0.00 0.41 ind:imp:3p; +écoeurais écoeurer ver 1.56 9.66 0.00 0.14 ind:imp:1s; +écoeurait écoeurer ver 1.56 9.66 0.01 1.28 ind:imp:3s; +écoeurant écoeurant adj m s 2.02 7.23 1.64 2.30 +écoeurante écoeurant adj f s 2.02 7.23 0.16 3.99 +écoeurantes écoeurant adj f p 2.02 7.23 0.05 0.47 +écoeurants écoeurant adj m p 2.02 7.23 0.18 0.47 +écoeure écoeurer ver 1.56 9.66 0.66 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écoeurement écoeurement nom m s 0.14 3.18 0.14 3.11 +écoeurements écoeurement nom m p 0.14 3.18 0.00 0.07 +écoeurent écoeurer ver 1.56 9.66 0.04 0.20 ind:pre:3p; +écoeurer écoeurer ver 1.56 9.66 0.17 0.81 inf; +écoeurerais écoeurer ver 1.56 9.66 0.00 0.07 cnd:pre:1s; +écoeurez écoeurer ver 1.56 9.66 0.24 0.00 imp:pre:2p;ind:pre:2p; +écoeurèrent écoeurer ver 1.56 9.66 0.00 0.14 ind:pas:3p; +écoeuré écoeuré adj m s 0.33 3.72 0.30 2.64 +écoeurée écoeurer ver f s 1.56 9.66 0.13 1.22 par:pas; +écoeurées écoeurer ver f p 1.56 9.66 0.00 0.07 par:pas; +écoeurés écoeuré adj m p 0.33 3.72 0.01 0.27 +écoinçon écoinçon nom m s 0.00 0.07 0.00 0.07 +école école nom f s 206.88 143.99 197.04 128.51 +écoles école nom f p 206.88 143.99 9.84 15.47 +écolier écolier nom m s 3.00 21.22 0.79 10.54 +écoliers écolier nom m p 3.00 21.22 1.11 5.81 +écolière écolier nom f s 3.00 21.22 1.11 3.85 +écolières écolière nom f p 0.32 0.00 0.32 0.00 +écolo écolo nom s 0.80 0.74 0.40 0.47 +écologie écologie nom f s 0.41 0.20 0.41 0.20 +écologique écologique adj s 1.79 0.88 1.59 0.74 +écologiquement écologiquement adv 0.01 0.00 0.01 0.00 +écologiques écologique adj p 1.79 0.88 0.20 0.14 +écologiste écologiste adj s 0.61 0.20 0.49 0.07 +écologistes écologiste nom p 0.50 0.20 0.25 0.20 +écolos écolo nom p 0.80 0.74 0.40 0.27 +éconduira éconduire ver 0.66 1.82 0.01 0.00 ind:fut:3s; +éconduire éconduire ver 0.66 1.82 0.03 0.61 inf; +éconduis éconduire ver 0.66 1.82 0.01 0.00 imp:pre:2s; +éconduisirent éconduire ver 0.66 1.82 0.00 0.07 ind:pas:3p; +éconduisit éconduire ver 0.66 1.82 0.00 0.07 ind:pas:3s; +éconduit éconduire ver m s 0.66 1.82 0.54 0.88 ind:pre:3s;par:pas; +éconduite éconduire ver f s 0.66 1.82 0.03 0.14 par:pas; +éconduits éconduire ver m p 0.66 1.82 0.04 0.07 par:pas; +éconocroques éconocroques nom f p 0.00 0.74 0.00 0.74 +économat économat nom m s 0.03 0.54 0.03 0.54 +économe économe nom s 0.51 0.74 0.47 0.61 +économes économe adj p 0.52 2.30 0.21 0.54 +économie économie nom f s 16.97 23.78 9.20 15.74 +économies économie nom f p 16.97 23.78 7.77 8.04 +économique économique adj s 8.27 20.81 6.09 14.53 +économiquement économiquement adv 0.72 0.95 0.72 0.95 +économiques économique adj p 8.27 20.81 2.19 6.28 +économisaient économiser ver 12.50 6.62 0.02 0.14 ind:imp:3p; +économisais économiser ver 12.50 6.62 0.13 0.07 ind:imp:1s;ind:imp:2s; +économisait économiser ver 12.50 6.62 0.07 0.34 ind:imp:3s; +économisant économiser ver 12.50 6.62 0.10 0.41 par:pre; +économise économiser ver 12.50 6.62 3.15 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +économisent économiser ver 12.50 6.62 0.18 0.07 ind:pre:3p; +économiser économiser ver 12.50 6.62 5.73 3.58 inf; +économisera économiser ver 12.50 6.62 0.36 0.14 ind:fut:3s; +économiserai économiser ver 12.50 6.62 0.12 0.00 ind:fut:1s; +économiserais économiser ver 12.50 6.62 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +économiserait économiser ver 12.50 6.62 0.31 0.14 cnd:pre:3s; +économiserez économiser ver 12.50 6.62 0.07 0.07 ind:fut:2p; +économiserons économiser ver 12.50 6.62 0.02 0.00 ind:fut:1p; +économiseront économiser ver 12.50 6.62 0.01 0.00 ind:fut:3p; +économiseur économiseur nom m s 0.06 0.07 0.06 0.00 +économiseurs économiseur nom m p 0.06 0.07 0.00 0.07 +économisez économiser ver 12.50 6.62 0.37 0.14 imp:pre:2p;ind:pre:2p; +économisme économisme nom m s 0.00 0.07 0.00 0.07 +économisons économiser ver 12.50 6.62 0.06 0.00 imp:pre:1p;ind:pre:1p; +économiste économiste nom s 0.55 0.47 0.41 0.34 +économistes économiste nom p 0.55 0.47 0.14 0.14 +économisé économiser ver m s 12.50 6.62 1.62 0.41 par:pas; +économisée économiser ver f s 12.50 6.62 0.01 0.14 par:pas; +économisées économiser ver f p 12.50 6.62 0.00 0.20 par:pas; +économisés économiser ver m p 12.50 6.62 0.04 0.27 par:pas; +écopa écoper ver 2.47 2.57 0.02 0.20 ind:pas:3s; +écopai écoper ver 2.47 2.57 0.00 0.07 ind:pas:1s; +écopais écoper ver 2.47 2.57 0.01 0.07 ind:imp:1s; +écopait écoper ver 2.47 2.57 0.01 0.27 ind:imp:3s; +écope écoper ver 2.47 2.57 0.34 0.14 ind:pre:1s;ind:pre:3s; +écopent écoper ver 2.47 2.57 0.03 0.00 ind:pre:3p; +écoper écoper ver 2.47 2.57 0.72 0.61 inf; +écopera écoper ver 2.47 2.57 0.23 0.00 ind:fut:3s; +écoperai écoper ver 2.47 2.57 0.03 0.07 ind:fut:1s; +écoperait écoper ver 2.47 2.57 0.00 0.07 cnd:pre:3s; +écoperas écoper ver 2.47 2.57 0.14 0.00 ind:fut:2s; +écoperches écoperche nom f p 0.00 0.07 0.00 0.07 +écoperez écoper ver 2.47 2.57 0.04 0.00 ind:fut:2p; +écoperont écoper ver 2.47 2.57 0.01 0.07 ind:fut:3p; +écopes écoper ver 2.47 2.57 0.04 0.00 ind:pre:2s; +écopez écoper ver 2.47 2.57 0.04 0.07 imp:pre:2p;ind:pre:2p; +écopiez écoper ver 2.47 2.57 0.01 0.07 ind:imp:2p; +écopons écoper ver 2.47 2.57 0.00 0.07 ind:pre:1p; +écopé écoper ver m s 2.47 2.57 0.79 0.74 par:pas; +écopée écoper ver f s 2.47 2.57 0.00 0.07 par:pas; +écorce écorce nom f s 1.90 11.76 1.83 9.39 +écorcer écorcer ver 0.17 0.20 0.01 0.07 inf; +écorces écorce nom f p 1.90 11.76 0.07 2.36 +écorcha écorcher ver 4.02 7.03 0.00 0.41 ind:pas:3s; +écorchage écorchage nom m s 0.01 0.00 0.01 0.00 +écorchaient écorcher ver 4.02 7.03 0.02 0.47 ind:imp:3p; +écorchais écorcher ver 4.02 7.03 0.01 0.14 ind:imp:1s; +écorchait écorcher ver 4.02 7.03 0.11 0.95 ind:imp:3s; +écorchant écorcher ver 4.02 7.03 0.11 0.54 par:pre; +écorche écorcher ver 4.02 7.03 0.53 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écorchement écorchement nom m s 0.04 0.07 0.04 0.07 +écorchent écorcher ver 4.02 7.03 0.16 0.34 ind:pre:3p; +écorcher écorcher ver 4.02 7.03 1.20 1.28 inf; +écorchera écorcher ver 4.02 7.03 0.16 0.00 ind:fut:3s; +écorcherai écorcher ver 4.02 7.03 0.17 0.00 ind:fut:1s; +écorcherais écorcher ver 4.02 7.03 0.11 0.00 cnd:pre:1s; +écorcherait écorcher ver 4.02 7.03 0.07 0.14 cnd:pre:3s; +écorcherie écorcherie nom f s 0.10 0.07 0.10 0.07 +écorcheront écorcher ver 4.02 7.03 0.01 0.00 ind:fut:3p; +écorcheur écorcheur nom m s 0.06 0.27 0.03 0.07 +écorcheurs écorcheur nom m p 0.06 0.27 0.03 0.20 +écorchez écorcher ver 4.02 7.03 0.02 0.14 imp:pre:2p;ind:pre:2p; +écorchiez écorcher ver 4.02 7.03 0.00 0.07 ind:imp:2p; +écorchions écorcher ver 4.02 7.03 0.00 0.07 ind:imp:1p; +écorché écorcher ver m s 4.02 7.03 1.07 0.74 par:pas; +écorchée écorcher ver f s 4.02 7.03 0.25 0.27 par:pas; +écorchées écorché adj f p 0.61 3.58 0.11 0.27 +écorchure écorchure nom f s 1.02 1.55 0.61 0.81 +écorchures écorchure nom f p 1.02 1.55 0.41 0.74 +écorchés écorché adj m p 0.61 3.58 0.11 1.35 +écorcé écorcé adj m s 0.00 0.54 0.00 0.20 +écorcés écorcé adj m p 0.00 0.54 0.00 0.34 +écornait écorner ver 0.03 0.81 0.00 0.07 ind:imp:3s; +écornent écorner ver 0.03 0.81 0.00 0.07 ind:pre:3p; +écorner écorner ver 0.03 0.81 0.00 0.20 inf; +écornifler écornifler ver 0.00 0.07 0.00 0.07 inf; +écorné écorné adj m s 0.19 0.74 0.03 0.34 +écornée écorné adj f s 0.19 0.74 0.14 0.07 +écornées écorné adj f p 0.19 0.74 0.01 0.20 +écornés écorné adj m p 0.19 0.74 0.02 0.14 +écosphère écosphère nom f s 0.01 0.00 0.01 0.00 +écossa écosser ver 0.70 5.95 0.00 0.07 ind:pas:3s; +écossaient écosser ver 0.70 5.95 0.00 0.20 ind:imp:3p; +écossais écossais adj m 2.57 6.55 1.53 2.57 +écossaise écossais adj f s 2.57 6.55 0.89 3.18 +écossaises écossais adj f p 2.57 6.55 0.16 0.81 +écossait écosser ver 0.70 5.95 0.00 0.20 ind:imp:3s; +écossant écosser ver 0.70 5.95 0.00 0.07 par:pre; +écosse écosser ver 0.70 5.95 0.67 4.19 imp:pre:2s;ind:pre:3s; +écossent écosser ver 0.70 5.95 0.03 0.07 ind:pre:3p; +écosser écosser ver 0.70 5.95 0.00 0.95 inf; +écossé écosser ver m s 0.70 5.95 0.00 0.07 par:pas; +écossés écosser ver m p 0.70 5.95 0.00 0.07 par:pas; +écosystème écosystème nom m s 0.63 0.00 0.59 0.00 +écosystèmes écosystème nom m p 0.63 0.00 0.04 0.00 +écot écot nom m s 0.48 0.95 0.48 0.95 +écotone écotone nom m s 0.01 0.00 0.01 0.00 +écoula écouler ver 9.01 26.62 0.23 2.16 ind:pas:3s; +écoulaient écouler ver 9.01 26.62 0.08 1.35 ind:imp:3p; +écoulait écouler ver 9.01 26.62 0.30 3.18 ind:imp:3s; +écoulant écouler ver 9.01 26.62 0.15 0.47 par:pre; +écoule écouler ver 9.01 26.62 1.92 3.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +écoulement écoulement nom m s 0.79 4.46 0.77 4.12 +écoulements écoulement nom m p 0.79 4.46 0.02 0.34 +écoulent écouler ver 9.01 26.62 0.52 1.42 ind:pre:3p; +écouler écouler ver 9.01 26.62 1.09 4.93 inf; +écoulera écouler ver 9.01 26.62 0.22 0.07 ind:fut:3s; +écouleraient écouler ver 9.01 26.62 0.03 0.20 cnd:pre:3p; +écoulerait écouler ver 9.01 26.62 0.01 0.47 cnd:pre:3s; +écouleront écouler ver 9.01 26.62 0.01 0.00 ind:fut:3p; +écoulât écouler ver 9.01 26.62 0.00 0.14 sub:imp:3s; +écoulèrent écouler ver 9.01 26.62 0.04 1.89 ind:pas:3p; +écoulé écouler ver m s 9.01 26.62 3.06 2.16 par:pas; +écoulée écoulé adj f s 1.10 2.97 0.27 1.08 +écoulées écouler ver f p 9.01 26.62 0.69 1.62 par:pas; +écoulés écouler ver m p 9.01 26.62 0.44 1.82 par:pas; +écourta écourter ver 1.54 2.09 0.00 0.20 ind:pas:3s; +écourtaient écourter ver 1.54 2.09 0.00 0.07 ind:imp:3p; +écourtais écourter ver 1.54 2.09 0.01 0.14 ind:imp:1s; +écourtant écourter ver 1.54 2.09 0.00 0.07 par:pre; +écourte écourter ver 1.54 2.09 0.06 0.20 ind:pre:1s;ind:pre:3s; +écourter écourter ver 1.54 2.09 0.91 0.81 inf; +écourtera écourter ver 1.54 2.09 0.03 0.00 ind:fut:3s; +écourteraient écourter ver 1.54 2.09 0.00 0.07 cnd:pre:3p; +écourté écourter ver m s 1.54 2.09 0.38 0.27 par:pas; +écourtée écourter ver f s 1.54 2.09 0.05 0.14 par:pas; +écourtées écourté adj f p 0.04 0.34 0.01 0.07 +écourtés écourter ver m p 1.54 2.09 0.11 0.07 par:pas; +écouta écouter ver 470.93 314.05 0.06 14.53 ind:pas:3s; +écoutai écouter ver 470.93 314.05 0.17 2.36 ind:pas:1s; +écoutaient écouter ver 470.93 314.05 1.21 7.30 ind:imp:3p; +écoutais écouter ver 470.93 314.05 5.74 16.62 ind:imp:1s;ind:imp:2s; +écoutait écouter ver 470.93 314.05 4.65 45.61 ind:imp:3s; +écoutant écouter ver 470.93 314.05 3.00 22.16 par:pre; +écoute écouter ver 470.93 314.05 214.67 83.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +écoutent écouter ver 470.93 314.05 6.05 5.00 ind:pre:3p; +écouter écouter ver 470.93 314.05 73.13 56.15 ind:pre:2p;inf; +écoutera écouter ver 470.93 314.05 4.14 0.81 ind:fut:3s; +écouterai écouter ver 470.93 314.05 1.89 0.54 ind:fut:1s; +écouteraient écouter ver 470.93 314.05 0.14 0.14 cnd:pre:3p; +écouterais écouter ver 470.93 314.05 0.55 0.41 cnd:pre:1s;cnd:pre:2s; +écouterait écouter ver 470.93 314.05 0.96 0.47 cnd:pre:3s; +écouteras écouter ver 470.93 314.05 1.06 0.27 ind:fut:2s; +écouterez écouter ver 470.93 314.05 0.24 0.07 ind:fut:2p; +écouteriez écouter ver 470.93 314.05 0.15 0.00 cnd:pre:2p; +écouterons écouter ver 470.93 314.05 0.69 0.20 ind:fut:1p; +écouteront écouter ver 470.93 314.05 1.36 0.34 ind:fut:3p; +écoutes écouter ver 470.93 314.05 26.59 4.19 ind:pre:2s;sub:pre:2s; +écouteur écouteur nom m s 1.34 4.19 0.37 3.65 +écouteurs écouteur nom m p 1.34 4.19 0.97 0.47 +écouteuse écouteur nom f s 1.34 4.19 0.00 0.07 +écoutez écouter ver 470.93 314.05 92.46 24.80 imp:pre:2p;ind:pre:2p; +écoutiez écouter ver 470.93 314.05 2.20 0.20 ind:imp:2p;sub:pre:2p; +écoutille écoutille nom f s 2.22 0.88 1.79 0.47 +écoutilles écoutille nom f p 2.22 0.88 0.43 0.41 +écoutions écouter ver 470.93 314.05 0.18 2.84 ind:imp:1p; +écoutâmes écouter ver 470.93 314.05 0.00 0.14 ind:pas:1p; +écoutons écouter ver 470.93 314.05 3.95 2.30 imp:pre:1p;ind:pre:1p; +écoutât écouter ver 470.93 314.05 0.00 0.54 sub:imp:3s; +écoutèrent écouter ver 470.93 314.05 0.03 1.76 ind:pas:3p; +écouté écouter ver m s 470.93 314.05 21.06 16.01 par:pas; +écoutée écouter ver f s 470.93 314.05 3.45 3.11 par:pas; +écoutées écouter ver f p 470.93 314.05 0.27 0.68 par:pas; +écoutés écouter ver m p 470.93 314.05 0.88 0.95 par:pas; +écouvillon écouvillon nom m s 0.26 0.20 0.01 0.20 +écouvillonne écouvillonner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +écouvillons écouvillon nom m p 0.26 0.20 0.25 0.00 +écrabouilla écrabouiller ver 2.22 2.91 0.00 0.07 ind:pas:3s; +écrabouillage écrabouillage nom m s 0.01 0.14 0.01 0.14 +écrabouillait écrabouiller ver 2.22 2.91 0.00 0.07 ind:imp:3s; +écrabouillant écrabouiller ver 2.22 2.91 0.00 0.14 par:pre; +écrabouille écrabouiller ver 2.22 2.91 0.30 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écrabouillement écrabouillement nom m s 0.00 0.27 0.00 0.20 +écrabouillements écrabouillement nom m p 0.00 0.27 0.00 0.07 +écrabouiller écrabouiller ver 2.22 2.91 0.86 0.74 inf; +écrabouillera écrabouiller ver 2.22 2.91 0.03 0.00 ind:fut:3s; +écrabouillons écrabouiller ver 2.22 2.91 0.00 0.07 ind:pre:1p; +écrabouillèrent écrabouiller ver 2.22 2.91 0.00 0.07 ind:pas:3p; +écrabouillé écrabouiller ver m s 2.22 2.91 0.72 0.68 par:pas; +écrabouillée écrabouiller ver f s 2.22 2.91 0.24 0.41 par:pas; +écrabouillées écrabouiller ver f p 2.22 2.91 0.01 0.07 par:pas; +écrabouillés écrabouiller ver m p 2.22 2.91 0.07 0.34 par:pas; +écran écran nom m s 23.68 23.31 19.78 21.15 +écrans écran nom m p 23.68 23.31 3.91 2.16 +écrasa écraser ver 54.42 90.81 0.07 5.74 ind:pas:3s; +écrasage écrasage nom m s 0.00 0.07 0.00 0.07 +écrasai écraser ver 54.42 90.81 0.00 0.68 ind:pas:1s; +écrasaient écraser ver 54.42 90.81 0.06 3.65 ind:imp:3p; +écrasais écraser ver 54.42 90.81 0.23 1.01 ind:imp:1s;ind:imp:2s; +écrasait écraser ver 54.42 90.81 0.46 8.51 ind:imp:3s; +écrasant écraser ver 54.42 90.81 0.47 5.34 par:pre; +écrasante écrasant adj f s 0.96 7.03 0.52 3.24 +écrasantes écrasant adj f p 0.96 7.03 0.04 0.47 +écrasants écrasant adj m p 0.96 7.03 0.00 0.34 +écrase_merde écrase_merde nom m s 0.00 0.41 0.00 0.20 +écrase_merde écrase_merde nom m p 0.00 0.41 0.00 0.20 +écrase écraser ver 54.42 90.81 11.11 13.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +écrasement écrasement nom m s 0.19 3.72 0.14 3.51 +écrasements écrasement nom m p 0.19 3.72 0.04 0.20 +écrasent écraser ver 54.42 90.81 0.78 2.16 ind:pre:3p; +écraser écraser ver 54.42 90.81 16.75 20.47 inf; +écrasera écraser ver 54.42 90.81 0.73 0.74 ind:fut:3s; +écraserai écraser ver 54.42 90.81 1.17 0.20 ind:fut:1s; +écraseraient écraser ver 54.42 90.81 0.16 0.34 cnd:pre:3p; +écraserais écraser ver 54.42 90.81 0.39 0.20 cnd:pre:1s;cnd:pre:2s; +écraserait écraser ver 54.42 90.81 0.53 0.47 cnd:pre:3s; +écraseras écraser ver 54.42 90.81 0.02 0.14 ind:fut:2s; +écraserez écraser ver 54.42 90.81 0.05 0.00 ind:fut:2p; +écraserons écraser ver 54.42 90.81 0.47 0.00 ind:fut:1p; +écraseront écraser ver 54.42 90.81 0.33 0.14 ind:fut:3p; +écrases écraser ver 54.42 90.81 1.79 0.20 ind:pre:2s; +écraseur écraseur nom m s 0.19 0.07 0.19 0.07 +écrasez écraser ver 54.42 90.81 2.15 0.20 imp:pre:2p;ind:pre:2p; +écrasiez écraser ver 54.42 90.81 0.03 0.07 ind:imp:2p; +écrasions écraser ver 54.42 90.81 0.00 0.34 ind:imp:1p; +écrasons écraser ver 54.42 90.81 0.26 0.07 imp:pre:1p;ind:pre:1p; +écrasât écraser ver 54.42 90.81 0.00 0.14 sub:imp:3s; +écrasèrent écraser ver 54.42 90.81 0.02 0.61 ind:pas:3p; +écrasé écraser ver m s 54.42 90.81 10.97 13.24 par:pas; +écrasée écraser ver f s 54.42 90.81 2.48 6.22 par:pas; +écrasées écraser ver f p 54.42 90.81 0.31 1.96 par:pas; +écrasure écrasure nom f s 0.00 0.07 0.00 0.07 +écrasés écraser ver m p 54.42 90.81 2.66 4.39 par:pas; +écrevisse écrevisse nom f s 1.06 5.47 0.54 1.62 +écrevisses écrevisse nom f p 1.06 5.47 0.52 3.85 +écria écrier ver 1.75 47.43 0.35 25.68 ind:pas:3s; +écriai écrier ver 1.75 47.43 0.00 2.70 ind:pas:1s; +écriaient écrier ver 1.75 47.43 0.01 0.07 ind:imp:3p; +écriais écrier ver 1.75 47.43 0.01 0.14 ind:imp:1s; +écriait écrier ver 1.75 47.43 0.02 2.97 ind:imp:3s; +écriant écrier ver 1.75 47.43 0.00 0.95 par:pre; +écrie écrier ver 1.75 47.43 0.47 8.24 ind:pre:1s;ind:pre:3s; +écrient écrier ver 1.75 47.43 0.06 0.61 ind:pre:3p; +écrier écrier ver 1.75 47.43 0.30 1.76 inf; +écriera écrier ver 1.75 47.43 0.00 0.14 ind:fut:3s; +écrierait écrier ver 1.75 47.43 0.01 0.07 cnd:pre:3s; +écries écrier ver 1.75 47.43 0.00 0.07 ind:pre:2s; +écrin écrin nom m s 0.37 3.78 0.36 3.38 +écrins écrin nom m p 0.37 3.78 0.01 0.41 +écrions écrier ver 1.75 47.43 0.00 0.07 ind:pre:1p; +écriât écrier ver 1.75 47.43 0.00 0.20 sub:imp:3s; +écrira écrire ver 305.92 341.82 1.77 1.69 ind:fut:3s; +écrirai écrire ver 305.92 341.82 6.40 4.05 ind:fut:1s; +écriraient écrire ver 305.92 341.82 0.11 0.34 cnd:pre:3p; +écrirais écrire ver 305.92 341.82 0.83 1.82 cnd:pre:1s;cnd:pre:2s; +écrirait écrire ver 305.92 341.82 0.83 2.43 cnd:pre:3s; +écriras écrire ver 305.92 341.82 1.67 1.01 ind:fut:2s; +écrire écrire ver 305.92 341.82 84.14 116.15 inf; +écrirez écrire ver 305.92 341.82 0.42 0.41 ind:fut:2p; +écririez écrire ver 305.92 341.82 0.04 0.00 cnd:pre:2p; +écrirons écrire ver 305.92 341.82 0.21 0.00 ind:fut:1p; +écriront écrire ver 305.92 341.82 0.09 0.20 ind:fut:3p; +écris écrire ver 305.92 341.82 38.24 24.80 imp:pre:2s;ind:pre:1s;ind:pre:2s; +écrit écrire ver m s 305.92 341.82 128.35 95.07 ind:pre:3s;par:pas; +écrite écrire ver f s 305.92 341.82 7.51 6.35 par:pas; +écriteau écriteau nom m s 2.25 3.65 2.20 3.04 +écriteaux écriteau nom m p 2.25 3.65 0.06 0.61 +écrites écrire ver f p 305.92 341.82 2.00 4.53 par:pas; +écrièrent écrier ver 1.75 47.43 0.12 0.41 ind:pas:3p; +écritoire écritoire nom f s 0.41 2.09 0.40 1.82 +écritoires écritoire nom f p 0.41 2.09 0.01 0.27 +écrits écrire ver m p 305.92 341.82 2.96 5.07 par:pas; +écriture écriture nom f s 13.65 36.35 11.99 32.03 +écritures écriture nom f p 13.65 36.35 1.66 4.32 +écrié écrier ver m s 1.75 47.43 0.36 2.50 par:pas; +écriée écrier ver f s 1.75 47.43 0.03 0.74 par:pas; +écriés écrier ver m p 1.75 47.43 0.00 0.14 par:pas; +écrivîmes écrire ver 305.92 341.82 0.00 0.07 ind:pas:1p; +écrivît écrire ver 305.92 341.82 0.00 0.34 sub:imp:3s; +écrivaient écrire ver 305.92 341.82 0.26 2.36 ind:imp:3p; +écrivailler écrivailler ver 0.00 0.14 0.00 0.07 inf; +écrivailleur écrivailleur nom m s 0.01 0.00 0.01 0.00 +écrivaillon écrivaillon nom m s 0.03 0.27 0.03 0.14 +écrivaillons écrivaillon nom m p 0.03 0.27 0.00 0.14 +écrivaillé écrivailler ver m s 0.00 0.14 0.00 0.07 par:pas; +écrivain écrivain nom m s 24.57 48.99 20.70 32.43 +écrivaine écrivain nom f s 24.57 48.99 0.06 0.20 +écrivaines écrivain nom f p 24.57 48.99 0.00 0.14 +écrivains écrivain nom m p 24.57 48.99 3.81 16.22 +écrivais écrire ver 305.92 341.82 5.20 9.12 ind:imp:1s;ind:imp:2s; +écrivait écrire ver 305.92 341.82 6.04 25.68 ind:imp:3s; +écrivant écrire ver 305.92 341.82 1.34 6.42 par:pre; +écrivassiers écrivassier nom m p 0.00 0.14 0.00 0.14 +écrive écrire ver 305.92 341.82 2.67 3.11 sub:pre:1s;sub:pre:3s; +écrivent écrire ver 305.92 341.82 2.46 6.01 ind:pre:3p; +écrives écrire ver 305.92 341.82 0.82 0.27 sub:pre:2s; +écriveur écriveur nom m s 0.14 0.00 0.14 0.00 +écrivez écrire ver 305.92 341.82 9.04 5.20 imp:pre:2p;ind:pre:2p; +écriviez écrire ver 305.92 341.82 0.97 0.41 ind:imp:2p; +écrivions écrire ver 305.92 341.82 0.10 0.61 ind:imp:1p; +écrivirent écrire ver 305.92 341.82 0.02 0.20 ind:pas:3p; +écrivis écrire ver 305.92 341.82 0.07 4.66 ind:pas:1s; +écrivisse écrire ver 305.92 341.82 0.00 0.20 sub:imp:1s; +écrivit écrire ver 305.92 341.82 1.00 12.36 ind:pas:3s; +écrivons écrire ver 305.92 341.82 0.37 0.88 imp:pre:1p;ind:pre:1p; +écrou écrou nom m s 0.72 3.24 0.34 2.43 +écrouelles écrouelles nom f p 0.00 0.07 0.00 0.07 +écrouer écrouer ver 0.54 0.34 0.19 0.14 inf; +écroueront écrouer ver 0.54 0.34 0.00 0.07 ind:fut:3p; +écroula écrouler ver 13.98 36.08 0.19 4.32 ind:pas:3s; +écroulai écrouler ver 13.98 36.08 0.00 0.34 ind:pas:1s; +écroulaient écrouler ver 13.98 36.08 0.22 1.49 ind:imp:3p; +écroulais écrouler ver 13.98 36.08 0.01 0.41 ind:imp:1s; +écroulait écrouler ver 13.98 36.08 0.33 3.65 ind:imp:3s; +écroulant écrouler ver 13.98 36.08 0.02 0.81 par:pre; +écroule écrouler ver 13.98 36.08 4.47 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écroulement écroulement nom m s 0.32 5.07 0.32 4.39 +écroulements écroulement nom m p 0.32 5.07 0.00 0.68 +écroulent écrouler ver 13.98 36.08 0.60 1.49 ind:pre:3p; +écrouler écrouler ver 13.98 36.08 3.42 6.49 inf; +écroulera écrouler ver 13.98 36.08 0.53 0.20 ind:fut:3s; +écroulerai écrouler ver 13.98 36.08 0.02 0.00 ind:fut:1s; +écrouleraient écrouler ver 13.98 36.08 0.01 0.14 cnd:pre:3p; +écroulerais écrouler ver 13.98 36.08 0.05 0.07 cnd:pre:1s; +écroulerait écrouler ver 13.98 36.08 0.28 0.34 cnd:pre:3s; +écrouleras écrouler ver 13.98 36.08 0.13 0.07 ind:fut:2s; +écroulerions écrouler ver 13.98 36.08 0.01 0.00 cnd:pre:1p; +écrouleront écrouler ver 13.98 36.08 0.05 0.07 ind:fut:3p; +écroulions écrouler ver 13.98 36.08 0.00 0.07 ind:imp:1p; +écroulons écrouler ver 13.98 36.08 0.02 0.07 ind:pre:1p; +écroulât écrouler ver 13.98 36.08 0.00 0.27 sub:imp:3s; +écroulèrent écrouler ver 13.98 36.08 0.01 0.34 ind:pas:3p; +écroulé écrouler ver m s 13.98 36.08 2.47 5.00 par:pas; +écroulée écrouler ver f s 13.98 36.08 0.70 1.82 par:pas; +écroulées écrouler ver f p 13.98 36.08 0.12 0.74 par:pas; +écroulés écrouler ver m p 13.98 36.08 0.29 1.55 par:pas; +écrous écrou nom m p 0.72 3.24 0.39 0.81 +écroué écrouer ver m s 0.54 0.34 0.32 0.07 par:pas; +écrouée écrouer ver f s 0.54 0.34 0.03 0.07 par:pas; +écrème écrémer ver 0.70 0.34 0.04 0.14 ind:pre:1s;ind:pre:3s; +écru écru adj m s 0.07 1.08 0.06 0.34 +écrue écru adj f s 0.07 1.08 0.01 0.74 +écrémage écrémage nom m s 0.03 0.07 0.03 0.07 +écrémer écrémer ver 0.70 0.34 0.08 0.07 inf; +écrémeuse écrémeur nom f s 0.00 0.07 0.00 0.07 +écrémé écrémer ver m s 0.70 0.34 0.58 0.07 par:pas; +écrémées écrémer ver f p 0.70 0.34 0.00 0.07 par:pas; +écrêtait écrêter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +écrêter écrêter ver 0.00 0.20 0.00 0.07 inf; +écrêtée écrêter ver f s 0.00 0.20 0.00 0.07 par:pas; +écu écu nom m s 1.75 4.59 0.65 1.49 +écubier écubier nom m s 0.00 0.20 0.00 0.20 +écueil écueil nom m s 0.26 2.09 0.18 0.88 +écueils écueil nom m p 0.26 2.09 0.08 1.22 +écuelle écuelle nom f s 1.09 2.97 0.98 2.36 +écuelles écuelle nom f p 1.09 2.97 0.11 0.61 +écuellée écuellée nom f s 0.00 0.14 0.00 0.07 +écuellées écuellée nom f p 0.00 0.14 0.00 0.07 +écuissé écuisser ver m s 0.00 0.14 0.00 0.07 par:pas; +écuissées écuisser ver f p 0.00 0.14 0.00 0.07 par:pas; +éculer éculer ver 0.23 0.54 0.00 0.07 inf; +éculé éculé adj m s 0.19 1.55 0.14 0.14 +éculée éculé adj f s 0.19 1.55 0.01 0.20 +éculées éculé adj f p 0.19 1.55 0.01 0.81 +éculés éculer ver m p 0.23 0.54 0.10 0.27 par:pas; +écuma écumer ver 0.94 3.92 0.00 0.07 ind:pas:3s; +écumai écumer ver 0.94 3.92 0.00 0.07 ind:pas:1s; +écumaient écumer ver 0.94 3.92 0.02 0.34 ind:imp:3p; +écumais écumer ver 0.94 3.92 0.02 0.14 ind:imp:1s; +écumait écumer ver 0.94 3.92 0.01 0.61 ind:imp:3s; +écumant écumer ver 0.94 3.92 0.01 0.68 par:pre; +écumante écumant adj f s 0.03 0.95 0.01 0.34 +écumantes écumant adj f p 0.03 0.95 0.00 0.20 +écumants écumant adj m p 0.03 0.95 0.01 0.20 +écume écume nom f s 2.31 16.15 2.31 16.08 +écument écumer ver 0.94 3.92 0.04 0.20 ind:pre:3p; +écumer écumer ver 0.94 3.92 0.31 0.61 inf; +écumera écumer ver 0.94 3.92 0.01 0.00 ind:fut:3s; +écumeront écumer ver 0.94 3.92 0.01 0.00 ind:fut:3p; +écumes écume nom f p 2.31 16.15 0.00 0.07 +écumeur écumeur nom m s 0.27 0.47 0.27 0.20 +écumeurs écumeur nom m p 0.27 0.47 0.00 0.20 +écumeuse écumeux adj f s 0.00 1.22 0.00 0.54 +écumeuses écumeux adj f p 0.00 1.22 0.00 0.07 +écumeux écumeux adj m 0.00 1.22 0.00 0.61 +écumez écumer ver 0.94 3.92 0.01 0.00 ind:pre:2p; +écumiez écumer ver 0.94 3.92 0.02 0.00 ind:imp:2p; +écumoire écumoire nom f s 0.30 0.88 0.30 0.68 +écumoires écumoire nom f p 0.30 0.88 0.00 0.20 +écumâmes écumer ver 0.94 3.92 0.00 0.07 ind:pas:1p; +écumèrent écumer ver 0.94 3.92 0.01 0.00 ind:pas:3p; +écumé écumer ver m s 0.94 3.92 0.33 0.41 par:pas; +écumée écumer ver f s 0.94 3.92 0.00 0.07 par:pas; +écureuil écureuil nom m s 7.22 10.41 5.71 8.85 +écureuils écureuil nom m p 7.22 10.41 1.51 1.55 +écurie écurie nom f s 6.88 12.84 5.08 8.85 +écuries écurie nom f p 6.88 12.84 1.80 3.99 +écus écu nom m p 1.75 4.59 1.11 3.11 +écusson écusson nom m s 0.37 3.78 0.32 2.23 +écussonné écussonner ver m s 0.00 0.61 0.00 0.27 par:pas; +écussonnées écussonner ver f p 0.00 0.61 0.00 0.07 par:pas; +écussonnés écussonner ver m p 0.00 0.61 0.00 0.27 par:pas; +écussons écusson nom m p 0.37 3.78 0.05 1.55 +écuyer écuyer nom m s 1.56 5.27 1.18 3.04 +écuyers écuyer nom m p 1.56 5.27 0.12 1.49 +écuyère écuyer nom f s 1.56 5.27 0.26 0.54 +écuyères écuyer nom f p 1.56 5.27 0.00 0.20 +édam édam nom m s 0.03 0.34 0.03 0.34 +éden éden nom s 0.42 2.36 0.42 2.30 +édens éden nom m p 0.42 2.36 0.00 0.07 +édenté édenté adj m s 0.43 3.58 0.23 0.74 +édentée édenté adj f s 0.43 3.58 0.15 1.69 +édentées édenté adj f p 0.43 3.58 0.01 0.81 +édentés édenté adj m p 0.43 3.58 0.04 0.34 +édicte édicter ver 0.28 0.61 0.10 0.07 imp:pre:2s;ind:pre:3s; +édicter édicter ver 0.28 0.61 0.01 0.14 inf; +édicté édicter ver m s 0.28 0.61 0.15 0.07 par:pas; +édictée édicter ver f s 0.28 0.61 0.00 0.20 par:pas; +édictées édicter ver f p 0.28 0.61 0.02 0.14 par:pas; +édicule édicule nom m s 0.40 0.20 0.40 0.14 +édicules édicule nom m p 0.40 0.20 0.00 0.07 +édifia édifier ver 0.90 11.96 0.12 0.27 ind:pas:3s; +édifiaient édifier ver 0.90 11.96 0.02 0.61 ind:imp:3p; +édifiait édifier ver 0.90 11.96 0.14 0.88 ind:imp:3s; +édifiant édifiant adj m s 0.76 4.12 0.51 1.28 +édifiante édifiant adj f s 0.76 4.12 0.16 1.28 +édifiantes édifiant adj f p 0.76 4.12 0.03 1.08 +édifiants édifiant adj m p 0.76 4.12 0.05 0.47 +édification édification nom f s 0.38 1.28 0.38 1.28 +édifice édifice nom m s 3.25 13.99 2.71 10.95 +édifices édifice nom m p 3.25 13.99 0.53 3.04 +édifie édifier ver 0.90 11.96 0.02 1.08 ind:pre:1s;ind:pre:3s; +édifient édifier ver 0.90 11.96 0.01 0.27 ind:pre:3p; +édifier édifier ver 0.90 11.96 0.31 3.04 inf; +édifierait édifier ver 0.90 11.96 0.00 0.07 cnd:pre:3s; +édifierons édifier ver 0.90 11.96 0.01 0.00 ind:fut:1p; +édifions édifier ver 0.90 11.96 0.16 0.07 ind:pre:1p; +édifièrent édifier ver 0.90 11.96 0.00 0.14 ind:pas:3p; +édifié édifier ver m s 0.90 11.96 0.06 2.84 par:pas; +édifiée édifier ver f s 0.90 11.96 0.03 1.35 par:pas; +édifiées édifier ver f p 0.90 11.96 0.00 0.34 par:pas; +édifiés édifier ver m p 0.90 11.96 0.01 0.68 par:pas; +édiles édile nom m p 0.08 0.14 0.08 0.14 +édilitaire édilitaire adj f s 0.00 0.20 0.00 0.07 +édilitaires édilitaire adj m p 0.00 0.20 0.00 0.14 +édit édit nom m s 0.35 0.74 0.32 0.61 +éditait éditer ver 0.69 2.36 0.01 0.14 ind:imp:3s; +édite éditer ver 0.69 2.36 0.08 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éditer éditer ver 0.69 2.36 0.31 0.54 inf; +éditera éditer ver 0.69 2.36 0.02 0.07 ind:fut:3s; +éditerais éditer ver 0.69 2.36 0.00 0.07 cnd:pre:1s; +éditeur éditeur nom m s 8.46 12.30 6.84 8.78 +éditeurs éditeur nom m p 8.46 12.30 1.37 3.45 +édition édition nom f s 9.61 16.62 7.83 10.61 +éditions édition nom f p 9.61 16.62 1.78 6.01 +édito édito nom m s 0.16 0.14 0.12 0.07 +éditons éditer ver 0.69 2.36 0.01 0.07 ind:pre:1p; +éditorial éditorial nom m s 0.57 2.16 0.40 1.42 +éditoriale éditorial adj f s 0.19 0.34 0.08 0.14 +éditorialiste éditorialiste nom s 0.06 0.68 0.03 0.34 +éditorialistes éditorialiste nom p 0.06 0.68 0.02 0.34 +éditoriaux éditorial nom m p 0.57 2.16 0.17 0.74 +éditos édito nom m p 0.16 0.14 0.04 0.07 +éditrice éditeur nom f s 8.46 12.30 0.26 0.07 +éditrices éditrice nom f p 0.04 0.00 0.04 0.00 +édits édit nom m p 0.35 0.74 0.04 0.14 +édité éditer ver m s 0.69 2.36 0.16 0.54 par:pas; +éditée éditer ver f s 0.69 2.36 0.05 0.20 par:pas; +éditées éditer ver f p 0.69 2.36 0.01 0.07 par:pas; +édités éditer ver m p 0.69 2.36 0.01 0.54 par:pas; +édouardienne édouardien adj f s 0.02 0.07 0.02 0.07 +édredon édredon nom m s 0.59 6.22 0.39 5.00 +édredons édredon nom m p 0.59 6.22 0.20 1.22 +éducable éducable adj s 0.01 0.20 0.00 0.14 +éducables éducable adj p 0.01 0.20 0.01 0.07 +éducateur éducateur nom m s 1.05 2.84 0.52 0.81 +éducateurs éducateur nom m p 1.05 2.84 0.27 0.74 +éducatif éducatif adj m s 2.04 1.08 1.18 0.34 +éducatifs éducatif adj m p 2.04 1.08 0.27 0.20 +éducation éducation nom f s 20.48 27.23 20.45 27.09 +éducationnel éducationnel adj m s 0.02 0.00 0.01 0.00 +éducationnelle éducationnel adj f s 0.02 0.00 0.01 0.00 +éducations éducation nom f p 20.48 27.23 0.04 0.14 +éducative éducatif adj f s 2.04 1.08 0.34 0.14 +éducatives éducatif adj f p 2.04 1.08 0.25 0.41 +éducatrice éducateur nom f s 1.05 2.84 0.27 0.88 +éducatrices éducateur nom f p 1.05 2.84 0.00 0.41 +éduen éduen adj m s 0.00 0.41 0.00 0.07 +éduennes éduen adj f p 0.00 0.41 0.00 0.07 +éduens éduen adj m p 0.00 0.41 0.00 0.27 +édulcorais édulcorer ver 0.12 0.54 0.00 0.07 ind:imp:1s; +édulcorant édulcorant nom m s 0.08 0.00 0.08 0.00 +édulcorer édulcorer ver 0.12 0.54 0.02 0.00 inf; +édulcoré édulcorer ver m s 0.12 0.54 0.05 0.07 par:pas; +édulcorée édulcorer ver f s 0.12 0.54 0.05 0.20 par:pas; +édulcorées édulcorer ver f p 0.12 0.54 0.00 0.20 par:pas; +édénique édénique adj s 0.11 0.34 0.01 0.20 +édéniques édénique adj m p 0.11 0.34 0.10 0.14 +éduquais éduquer ver 8.07 3.78 0.00 0.07 ind:imp:1s; +éduquant éduquer ver 8.07 3.78 0.11 0.00 par:pre; +éduque éduquer ver 8.07 3.78 0.41 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éduquer éduquer ver 8.07 3.78 3.96 1.69 inf; +éduquera éduquer ver 8.07 3.78 0.03 0.07 ind:fut:3s; +éduquez éduquer ver 8.07 3.78 0.03 0.00 imp:pre:2p;ind:pre:2p; +éduquons éduquer ver 8.07 3.78 0.02 0.00 ind:pre:1p; +éduqué éduquer ver m s 8.07 3.78 1.95 0.68 par:pas; +éduquée éduquer ver f s 8.07 3.78 0.48 0.27 par:pas; +éduquées éduquer ver f p 8.07 3.78 0.29 0.00 par:pas; +éduqués éduquer ver m p 8.07 3.78 0.79 0.74 par:pas; +ufologie ufologie nom f s 0.04 0.00 0.04 0.00 +égaie égayer ver 1.39 5.68 0.02 0.20 ind:pre:3s; +égaieraient égayer ver 1.39 5.68 0.01 0.14 cnd:pre:3p; +égaierait égayer ver 1.39 5.68 0.00 0.07 cnd:pre:3s; +égaieront égayer ver 1.39 5.68 0.20 0.00 ind:fut:3p; +égailla égailler ver 0.00 2.16 0.00 0.14 ind:pas:3s; +égaillaient égailler ver 0.00 2.16 0.00 0.27 ind:imp:3p; +égaillait égailler ver 0.00 2.16 0.00 0.07 ind:imp:3s; +égaillant égailler ver 0.00 2.16 0.00 0.20 par:pre; +égaillent égailler ver 0.00 2.16 0.00 0.41 ind:pre:3p; +égailler égailler ver 0.00 2.16 0.00 0.47 inf; +égaillèrent égailler ver 0.00 2.16 0.00 0.27 ind:pas:3p; +égaillée égailler ver f s 0.00 2.16 0.00 0.14 par:pas; +égaillées égailler ver f p 0.00 2.16 0.00 0.07 par:pas; +égaillés égailler ver m p 0.00 2.16 0.00 0.14 par:pas; +égal égal adj m s 38.08 39.32 27.40 20.27 +égala égaler ver 4.96 4.39 0.02 0.07 ind:pas:3s; +égalable égalable adj f s 0.01 0.00 0.01 0.00 +égalaient égaler ver 4.96 4.39 0.00 0.07 ind:imp:3p; +égalais égaler ver 4.96 4.39 0.00 0.07 ind:imp:1s; +égalait égaler ver 4.96 4.39 0.06 0.54 ind:imp:3s; +égalant égaler ver 4.96 4.39 0.01 0.20 par:pre; +égale égal adj f s 38.08 39.32 4.51 12.91 +également également adv 32.19 71.01 32.19 71.01 +égalent égaler ver 4.96 4.39 0.79 0.34 ind:pre:3p; +égaler égaler ver 4.96 4.39 1.12 1.35 inf; +égalera égaler ver 4.96 4.39 0.09 0.07 ind:fut:3s; +égalerai égaler ver 4.96 4.39 0.01 0.00 ind:fut:1s; +égalerais égaler ver 4.96 4.39 0.01 0.00 cnd:pre:1s; +égalerait égaler ver 4.96 4.39 0.02 0.14 cnd:pre:3s; +égaleras égaler ver 4.96 4.39 0.01 0.00 ind:fut:2s; +égaleront égaler ver 4.96 4.39 0.01 0.07 ind:fut:3p; +égales égal adj f p 38.08 39.32 2.98 3.31 +égalisa égaliser ver 1.76 3.04 0.00 0.20 ind:pas:3s; +égalisais égaliser ver 1.76 3.04 0.00 0.07 ind:imp:1s; +égalisait égaliser ver 1.76 3.04 0.01 0.88 ind:imp:3s; +égalisant égaliser ver 1.76 3.04 0.00 0.14 par:pre; +égalisateur égalisateur adj m s 0.02 0.20 0.01 0.14 +égalisateurs égalisateur adj m p 0.02 0.20 0.00 0.07 +égalisation égalisation nom f s 0.04 0.27 0.04 0.27 +égalisatrice égalisateur adj f s 0.02 0.20 0.01 0.00 +égalise égaliser ver 1.76 3.04 0.19 0.54 ind:pre:1s;ind:pre:3s; +égalisent égaliser ver 1.76 3.04 0.02 0.07 ind:pre:3p; +égaliser égaliser ver 1.76 3.04 0.87 0.74 inf; +égaliseur égaliseur nom m s 0.05 0.00 0.05 0.00 +égalisez égaliser ver 1.76 3.04 0.03 0.00 imp:pre:2p;ind:pre:2p; +égalisèrent égaliser ver 1.76 3.04 0.00 0.07 ind:pas:3p; +égalisé égaliser ver m s 1.76 3.04 0.62 0.27 par:pas; +égalisées égaliser ver f p 1.76 3.04 0.01 0.00 par:pas; +égalisés égaliser ver m p 1.76 3.04 0.01 0.07 par:pas; +égalitaire égalitaire adj s 0.09 0.34 0.09 0.34 +égalitarisme égalitarisme nom m s 0.00 0.07 0.00 0.07 +égalité égalité nom f s 6.99 8.18 6.96 8.11 +égalités égalité nom f p 6.99 8.18 0.02 0.07 +égalât égaler ver 4.96 4.39 0.14 0.07 sub:imp:3s; +égalé égaler ver m s 4.96 4.39 0.33 0.14 par:pas; +égalée égaler ver f s 4.96 4.39 0.07 0.00 par:pas; +égalées égaler ver f p 4.96 4.39 0.00 0.07 par:pas; +égara égarer ver 10.55 22.77 0.00 0.14 ind:pas:3s; +égarai égarer ver 10.55 22.77 0.00 0.14 ind:pas:1s; +égaraient égarer ver 10.55 22.77 0.00 0.61 ind:imp:3p; +égarais égarer ver 10.55 22.77 0.00 0.20 ind:imp:1s; +égarait égarer ver 10.55 22.77 0.04 1.42 ind:imp:3s; +égarant égarer ver 10.55 22.77 0.02 0.34 par:pre; +égard égard nom m s 9.19 65.61 6.77 58.31 +égards égard nom m p 9.19 65.61 2.42 7.30 +égare égarer ver 10.55 22.77 2.25 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +égarement égarement nom m s 1.04 3.65 0.44 2.50 +égarements égarement nom m p 1.04 3.65 0.61 1.15 +égarent égarer ver 10.55 22.77 0.34 0.81 ind:pre:3p; +égarer égarer ver 10.55 22.77 1.51 3.11 inf; +égareraient égarer ver 10.55 22.77 0.00 0.07 cnd:pre:3p; +égarerais égarer ver 10.55 22.77 0.00 0.07 cnd:pre:1s; +égarerait égarer ver 10.55 22.77 0.01 0.20 cnd:pre:3s; +égarerions égarer ver 10.55 22.77 0.00 0.07 cnd:pre:1p; +égares égarer ver 10.55 22.77 0.27 0.07 ind:pre:2s; +égarez égarer ver 10.55 22.77 0.34 0.07 imp:pre:2p;ind:pre:2p; +égarons égarer ver 10.55 22.77 0.18 0.14 imp:pre:1p;ind:pre:1p; +égarât égarer ver 10.55 22.77 0.00 0.07 sub:imp:3s; +égarèrent égarer ver 10.55 22.77 0.00 0.20 ind:pas:3p; +égaré égarer ver m s 10.55 22.77 3.27 5.81 par:pas; +égarée égaré adj f s 3.43 11.89 0.91 2.77 +égarées égaré adj f p 3.43 11.89 0.37 0.68 +égarés égarer ver m p 10.55 22.77 1.21 2.91 par:pas; +égaux égal adj m p 38.08 39.32 3.18 2.84 +égaya égayer ver 1.39 5.68 0.00 0.27 ind:pas:3s; +égayaient égayer ver 1.39 5.68 0.00 0.20 ind:imp:3p; +égayait égayer ver 1.39 5.68 0.00 0.88 ind:imp:3s; +égayant égayer ver 1.39 5.68 0.00 0.14 par:pre; +égayante égayant adj f s 0.00 0.07 0.00 0.07 +égaye égayer ver 1.39 5.68 0.07 0.54 imp:pre:2s;ind:pre:3s; +égayer égayer ver 1.39 5.68 1.00 1.42 inf; +égayerais égayer ver 1.39 5.68 0.01 0.00 cnd:pre:1s; +égayez égayer ver 1.39 5.68 0.01 0.00 imp:pre:2p; +égayât égayer ver 1.39 5.68 0.00 0.07 sub:imp:3s; +égayèrent égayer ver 1.39 5.68 0.00 0.07 ind:pas:3p; +égayé égayer ver m s 1.39 5.68 0.06 0.95 par:pas; +égayée égayer ver f s 1.39 5.68 0.01 0.54 par:pas; +égayées égayer ver f p 1.39 5.68 0.00 0.07 par:pas; +égayés égayer ver m p 1.39 5.68 0.00 0.14 par:pas; +égide égide nom f s 0.20 0.95 0.20 0.95 +égipan égipan nom m s 0.00 0.14 0.00 0.07 +égipans égipan nom m p 0.00 0.14 0.00 0.07 +églantier églantier nom m s 0.00 0.61 0.00 0.07 +églantiers églantier nom m p 0.00 0.61 0.00 0.54 +églantine églantine nom f s 0.96 2.03 0.95 1.76 +églantines églantine nom f p 0.96 2.03 0.01 0.27 +église église nom f s 64.75 145.07 60.20 123.58 +églises église nom f p 64.75 145.07 4.55 21.49 +églogue églogue nom f s 0.10 0.34 0.00 0.27 +églogues églogue nom f p 0.10 0.34 0.10 0.07 +égoïne égoïne nom f s 0.00 0.47 0.00 0.47 +égoïsme égoïsme nom m s 2.15 9.53 2.15 9.39 +égoïsmes égoïsme nom m p 2.15 9.53 0.00 0.14 +égoïste égoïste adj s 8.13 7.91 7.27 6.82 +égoïstement égoïstement adv 0.24 0.41 0.24 0.41 +égoïstes égoïste adj p 8.13 7.91 0.86 1.08 +égocentrique égocentrique adj s 1.49 0.34 1.21 0.34 +égocentriques égocentrique adj p 1.49 0.34 0.28 0.00 +égocentrisme égocentrisme nom m s 0.23 0.27 0.23 0.20 +égocentrismes égocentrisme nom m p 0.23 0.27 0.00 0.07 +égocentriste égocentriste nom s 0.03 0.07 0.03 0.00 +égocentristes égocentriste nom p 0.03 0.07 0.00 0.07 +égorge égorger ver 9.04 9.66 2.74 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égorgea égorger ver 9.04 9.66 0.14 0.07 ind:pas:3s; +égorgeaient égorger ver 9.04 9.66 0.00 0.14 ind:imp:3p; +égorgeais égorger ver 9.04 9.66 0.01 0.00 ind:imp:1s; +égorgeait égorger ver 9.04 9.66 0.16 0.74 ind:imp:3s; +égorgeant égorger ver 9.04 9.66 0.14 0.14 par:pre; +égorgement égorgement nom m s 0.05 0.74 0.05 0.34 +égorgements égorgement nom m p 0.05 0.74 0.00 0.41 +égorgent égorger ver 9.04 9.66 0.35 0.34 ind:pre:3p; +égorgeoir égorgeoir nom m s 0.00 0.14 0.00 0.14 +égorger égorger ver 9.04 9.66 2.96 2.84 inf;; +égorgerai égorger ver 9.04 9.66 0.04 0.00 ind:fut:1s; +égorgeraient égorger ver 9.04 9.66 0.02 0.00 cnd:pre:3p; +égorgerais égorger ver 9.04 9.66 0.15 0.00 cnd:pre:1s; +égorgeras égorger ver 9.04 9.66 0.01 0.00 ind:fut:2s; +égorgeront égorger ver 9.04 9.66 0.04 0.00 ind:fut:3p; +égorgeur égorgeur nom m s 0.20 0.95 0.19 0.34 +égorgeurs égorgeur nom m p 0.20 0.95 0.01 0.54 +égorgeuses égorgeur nom f p 0.20 0.95 0.00 0.07 +égorgez égorger ver 9.04 9.66 0.00 0.07 imp:pre:2p; +égorgèrent égorger ver 9.04 9.66 0.00 0.07 ind:pas:3p; +égorgé égorger ver m s 9.04 9.66 1.14 1.89 par:pas; +égorgée égorger ver f s 9.04 9.66 0.65 0.54 par:pas; +égorgées égorger ver f p 9.04 9.66 0.16 0.27 par:pas; +égorgés égorger ver m p 9.04 9.66 0.35 1.22 par:pas; +égosilla égosiller ver 0.20 2.03 0.00 0.14 ind:pas:3s; +égosillaient égosiller ver 0.20 2.03 0.00 0.14 ind:imp:3p; +égosillait égosiller ver 0.20 2.03 0.10 0.54 ind:imp:3s; +égosillant égosiller ver 0.20 2.03 0.00 0.20 par:pre; +égosille égosiller ver 0.20 2.03 0.02 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égosillent égosiller ver 0.20 2.03 0.01 0.14 ind:pre:3p; +égosiller égosiller ver 0.20 2.03 0.07 0.47 inf; +égotisme égotisme nom m s 0.16 0.20 0.16 0.20 +égotiste égotiste adj s 0.05 0.07 0.05 0.00 +égotistes égotiste nom p 0.03 0.07 0.02 0.00 +égout égout nom m s 7.01 8.45 3.23 6.22 +égoutier égoutier nom m s 0.06 1.76 0.01 1.62 +égoutiers égoutier nom m p 0.06 1.76 0.05 0.14 +égouts égout nom m p 7.01 8.45 3.78 2.23 +égoutta égoutter ver 0.34 4.39 0.00 0.34 ind:pas:3s; +égouttaient égoutter ver 0.34 4.39 0.01 0.54 ind:imp:3p; +égouttait égoutter ver 0.34 4.39 0.10 1.28 ind:imp:3s; +égouttant égoutter ver 0.34 4.39 0.00 0.54 par:pre; +égoutte égoutter ver 0.34 4.39 0.01 0.14 ind:pre:3s; +égouttement égouttement nom m s 0.00 0.34 0.00 0.34 +égouttent égoutter ver 0.34 4.39 0.01 0.34 ind:pre:3p; +égoutter égoutter ver 0.34 4.39 0.18 0.68 inf; +égoutterait égoutter ver 0.34 4.39 0.00 0.07 cnd:pre:3s; +égouttez égoutter ver 0.34 4.39 0.00 0.14 imp:pre:2p; +égouttis égouttis nom m 0.00 0.07 0.00 0.07 +égouttoir égouttoir nom m s 0.14 0.54 0.14 0.54 +égouttèrent égoutter ver 0.34 4.39 0.00 0.07 ind:pas:3p; +égoutté égoutter ver m s 0.34 4.39 0.02 0.27 par:pas; +égrainer égrainer ver 0.00 0.07 0.00 0.07 inf; +égrappait égrapper ver 0.00 0.07 0.00 0.07 ind:imp:3s; +égratigna égratigner ver 0.57 1.62 0.00 0.14 ind:pas:3s; +égratignaient égratigner ver 0.57 1.62 0.00 0.14 ind:imp:3p; +égratignait égratigner ver 0.57 1.62 0.00 0.14 ind:imp:3s; +égratignant égratigner ver 0.57 1.62 0.00 0.14 par:pre; +égratigne égratigner ver 0.57 1.62 0.07 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égratignent égratigner ver 0.57 1.62 0.03 0.07 ind:pre:3p; +égratigner égratigner ver 0.57 1.62 0.15 0.14 inf; +égratignes égratigner ver 0.57 1.62 0.01 0.07 ind:pre:2s; +égratigné égratigner ver m s 0.57 1.62 0.25 0.34 par:pas; +égratignée égratigner ver f s 0.57 1.62 0.05 0.27 par:pas; +égratignure égratignure nom f s 4.86 2.23 3.97 1.35 +égratignures égratignure nom f p 4.86 2.23 0.89 0.88 +égratignés égratigner ver m p 0.57 1.62 0.02 0.07 par:pas; +égrena égrener ver 0.32 7.70 0.01 0.20 ind:pas:3s; +égrenage égrenage nom m s 0.01 0.00 0.01 0.00 +égrenaient égrener ver 0.32 7.70 0.01 0.74 ind:imp:3p; +égrenais égrener ver 0.32 7.70 0.00 0.27 ind:imp:1s;ind:imp:2s; +égrenait égrener ver 0.32 7.70 0.00 0.61 ind:imp:3s; +égrenant égrener ver 0.32 7.70 0.00 1.22 par:pre; +égrener égrener ver 0.32 7.70 0.02 1.35 inf; +égreneuse égreneur nom f s 0.44 0.00 0.44 0.00 +égrenèrent égrener ver 0.32 7.70 0.00 0.27 ind:pas:3p; +égrené égrener ver m s 0.32 7.70 0.10 0.34 par:pas; +égrenée égrener ver f s 0.32 7.70 0.00 0.14 par:pas; +égrenées égrener ver f p 0.32 7.70 0.00 0.54 par:pas; +égrenés égrener ver m p 0.32 7.70 0.01 0.34 par:pas; +égrillard égrillard adj m s 0.00 1.55 0.00 0.74 +égrillarde égrillard adj f s 0.00 1.55 0.00 0.27 +égrillardes égrillard adj f p 0.00 1.55 0.00 0.27 +égrillards égrillard adj m p 0.00 1.55 0.00 0.27 +égrotant égrotant adj m s 0.00 0.34 0.00 0.20 +égrotantes égrotant adj f p 0.00 0.34 0.00 0.07 +égrotants égrotant adj m p 0.00 0.34 0.00 0.07 +égrène égrener ver 0.32 7.70 0.16 1.22 imp:pre:2s;ind:pre:3s; +égrènements égrènement nom m p 0.00 0.07 0.00 0.07 +égrènent égrener ver 0.32 7.70 0.01 0.47 ind:pre:3p; +égéenne égéen adj f s 0.00 0.07 0.00 0.07 +égérie égérie nom f s 0.46 0.27 0.46 0.27 +égyptien égyptien adj m s 7.48 4.73 2.60 1.96 +égyptienne égyptien adj f s 7.48 4.73 1.31 1.15 +égyptiennes égyptien adj f p 7.48 4.73 0.41 0.54 +égyptiens égyptien adj m p 7.48 4.73 3.16 1.08 +égyptologie égyptologie nom f s 0.06 0.14 0.06 0.14 +égyptologue égyptologue nom s 0.17 0.14 0.04 0.00 +égyptologues égyptologue nom p 0.17 0.14 0.14 0.14 +uhlan uhlan nom m s 0.19 1.15 0.14 0.14 +uhlans uhlan nom m p 0.19 1.15 0.05 1.01 +éhonté éhonté adj m s 1.07 1.28 0.40 0.20 +éhontée éhonté adj f s 1.07 1.28 0.60 0.61 +éhontées éhonté adj f p 1.07 1.28 0.01 0.07 +éhontés éhonté adj m p 1.07 1.28 0.06 0.41 +uht uht adj m s 0.01 0.00 0.01 0.00 +éjacula éjaculer ver 1.98 1.42 0.27 0.14 ind:pas:3s; +éjaculait éjaculer ver 1.98 1.42 0.01 0.07 ind:imp:3s; +éjaculant éjaculer ver 1.98 1.42 0.16 0.07 par:pre; +éjaculat éjaculat nom m s 0.01 0.20 0.01 0.20 +éjaculateur éjaculateur nom m s 0.16 0.14 0.15 0.14 +éjaculateurs éjaculateur nom m p 0.16 0.14 0.01 0.00 +éjaculation éjaculation nom f s 1.40 1.42 1.11 1.22 +éjaculations éjaculation nom f p 1.40 1.42 0.29 0.20 +éjacule éjaculer ver 1.98 1.42 0.44 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éjaculent éjaculer ver 1.98 1.42 0.04 0.14 ind:pre:3p; +éjaculer éjaculer ver 1.98 1.42 0.33 0.34 inf; +éjaculé éjaculer ver m s 1.98 1.42 0.73 0.27 par:pas; +éjaculés éjaculer ver m p 1.98 1.42 0.00 0.07 par:pas; +éjecta éjecter ver 4.46 3.18 0.02 0.07 ind:pas:3s; +éjectable éjectable adj m s 0.38 0.07 0.38 0.00 +éjectables éjectable adj f p 0.38 0.07 0.00 0.07 +éjectaient éjecter ver 4.46 3.18 0.00 0.20 ind:imp:3p; +éjectait éjecter ver 4.46 3.18 0.02 0.20 ind:imp:3s; +éjectant éjecter ver 4.46 3.18 0.06 0.14 par:pre; +éjectas éjecter ver 4.46 3.18 0.01 0.00 ind:pas:2s; +éjecte éjecter ver 4.46 3.18 0.56 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éjectent éjecter ver 4.46 3.18 0.02 0.00 ind:pre:3p; +éjecter éjecter ver 4.46 3.18 1.18 0.54 inf; +éjectera éjecter ver 4.46 3.18 0.03 0.00 ind:fut:3s; +éjecterais éjecter ver 4.46 3.18 0.12 0.00 cnd:pre:1s;cnd:pre:2s; +éjecteur éjecteur nom m s 0.10 0.00 0.05 0.00 +éjecteurs éjecteur nom m p 0.10 0.00 0.05 0.00 +éjectez éjecter ver 4.46 3.18 0.08 0.00 imp:pre:2p;ind:pre:2p; +éjection éjection nom f s 0.44 0.14 0.42 0.14 +éjections éjection nom f p 0.44 0.14 0.02 0.00 +éjectons éjecter ver 4.46 3.18 0.02 0.00 imp:pre:1p;ind:pre:1p; +éjectèrent éjecter ver 4.46 3.18 0.00 0.07 ind:pas:3p; +éjecté éjecter ver m s 4.46 3.18 1.40 0.74 par:pas; +éjectée éjecter ver f s 4.46 3.18 0.61 0.41 par:pas; +éjectées éjecter ver f p 4.46 3.18 0.09 0.20 par:pas; +éjectés éjecter ver m p 4.46 3.18 0.23 0.20 par:pas; +ukase ukase nom m s 0.20 0.07 0.20 0.00 +ukases ukase nom m p 0.20 0.07 0.00 0.07 +ukrainien ukrainien nom m s 0.69 0.61 0.39 0.07 +ukrainienne ukrainien adj f s 0.61 0.88 0.28 0.14 +ukrainiennes ukrainien adj f p 0.61 0.88 0.01 0.14 +ukrainiens ukrainien nom m p 0.69 0.61 0.30 0.41 +ukulélé ukulélé nom m s 0.16 0.07 0.16 0.07 +élabora élaborer ver 2.08 5.20 0.00 0.07 ind:pas:3s; +élaborai élaborer ver 2.08 5.20 0.01 0.07 ind:pas:1s; +élaboraient élaborer ver 2.08 5.20 0.00 0.20 ind:imp:3p; +élaborait élaborer ver 2.08 5.20 0.06 0.68 ind:imp:3s; +élaborant élaborer ver 2.08 5.20 0.00 0.20 par:pre; +élaboration élaboration nom f s 0.23 1.76 0.23 1.62 +élaborations élaboration nom f p 0.23 1.76 0.00 0.14 +élabore élaborer ver 2.08 5.20 0.25 0.14 ind:pre:1s;ind:pre:3s; +élaborent élaborer ver 2.08 5.20 0.10 0.14 ind:pre:3p; +élaborer élaborer ver 2.08 5.20 0.63 1.55 inf; +élaboreraient élaborer ver 2.08 5.20 0.00 0.07 cnd:pre:3p; +élaboriez élaborer ver 2.08 5.20 0.01 0.00 ind:imp:2p; +élaborions élaborer ver 2.08 5.20 0.00 0.07 ind:imp:1p; +élaborons élaborer ver 2.08 5.20 0.01 0.00 ind:pre:1p; +élaborèrent élaborer ver 2.08 5.20 0.02 0.07 ind:pas:3p; +élaboré élaborer ver m s 2.08 5.20 0.68 0.61 par:pas; +élaborée élaboré adj f s 1.22 0.68 0.27 0.34 +élaborées élaboré adj f p 1.22 0.68 0.18 0.00 +élaborés élaboré adj m p 1.22 0.68 0.36 0.07 +élagage élagage nom m s 0.03 0.34 0.03 0.34 +élaguais élaguer ver 0.18 0.88 0.01 0.00 ind:imp:1s; +élaguait élaguer ver 0.18 0.88 0.00 0.14 ind:imp:3s; +élague élaguer ver 0.18 0.88 0.01 0.07 imp:pre:2s;ind:pre:1s; +élaguer élaguer ver 0.18 0.88 0.09 0.34 inf; +élagueur élagueur nom m s 0.04 0.14 0.03 0.00 +élagueurs élagueur nom m p 0.04 0.14 0.01 0.14 +élaguez élaguer ver 0.18 0.88 0.01 0.07 imp:pre:2p;ind:pre:2p; +élaguons élaguer ver 0.18 0.88 0.01 0.00 ind:pre:1p; +élagué élaguer ver m s 0.18 0.88 0.05 0.07 par:pas; +élagués élaguer ver m p 0.18 0.88 0.00 0.20 par:pas; +élan élan nom m s 5.66 44.73 4.61 37.57 +élance élancer ver 2.25 20.27 0.94 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +élancement élancement nom m s 0.13 2.30 0.04 1.22 +élancements élancement nom m p 0.13 2.30 0.08 1.08 +élancent élancer ver 2.25 20.27 0.20 1.15 ind:pre:3p; +élancer élancer ver 2.25 20.27 0.61 3.85 inf; +élancera élancer ver 2.25 20.27 0.01 0.14 ind:fut:3s; +élanceraient élancer ver 2.25 20.27 0.00 0.07 cnd:pre:3p; +élancerait élancer ver 2.25 20.27 0.01 0.07 cnd:pre:3s; +élancerions élancer ver 2.25 20.27 0.00 0.07 cnd:pre:1p; +élanceront élancer ver 2.25 20.27 0.00 0.07 ind:fut:3p; +élancions élancer ver 2.25 20.27 0.00 0.27 ind:imp:1p; +élancèrent élancer ver 2.25 20.27 0.00 0.47 ind:pas:3p; +élancé élancer ver m s 2.25 20.27 0.21 0.68 par:pas; +élancée élancé adj f s 0.13 3.51 0.03 1.49 +élancées élancé adj f p 0.13 3.51 0.00 0.47 +élancés élancer ver m p 2.25 20.27 0.02 0.27 par:pas; +élans élan nom m p 5.66 44.73 1.05 7.16 +élança élancer ver 2.25 20.27 0.03 4.46 ind:pas:3s; +élançai élancer ver 2.25 20.27 0.14 0.34 ind:pas:1s; +élançaient élancer ver 2.25 20.27 0.03 0.74 ind:imp:3p; +élançais élancer ver 2.25 20.27 0.00 0.41 ind:imp:1s; +élançait élancer ver 2.25 20.27 0.02 1.55 ind:imp:3s; +élançant élancer ver 2.25 20.27 0.00 1.28 par:pre; +élargît élargir ver 4.85 19.32 0.00 0.07 sub:imp:3s; +élargi élargir ver m s 4.85 19.32 0.72 2.36 par:pas; +élargie élargir ver f s 4.85 19.32 0.31 1.55 par:pas; +élargies élargir ver f p 4.85 19.32 0.04 0.61 par:pas; +élargir élargir ver 4.85 19.32 2.07 4.12 inf; +élargira élargir ver 4.85 19.32 0.12 0.07 ind:fut:3s; +élargirait élargir ver 4.85 19.32 0.01 0.14 cnd:pre:3s; +élargirent élargir ver 4.85 19.32 0.00 0.34 ind:pas:3p; +élargirez élargir ver 4.85 19.32 0.00 0.07 ind:fut:2p; +élargirons élargir ver 4.85 19.32 0.01 0.00 ind:fut:1p; +élargis élargir ver m p 4.85 19.32 0.26 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +élargissaient élargir ver 4.85 19.32 0.01 1.01 ind:imp:3p; +élargissait élargir ver 4.85 19.32 0.10 3.18 ind:imp:3s; +élargissant élargir ver 4.85 19.32 0.17 1.89 par:pre; +élargissement élargissement nom m s 0.17 1.22 0.17 1.22 +élargissent élargir ver 4.85 19.32 0.09 0.47 ind:pre:3p; +élargissez élargir ver 4.85 19.32 0.07 0.00 imp:pre:2p; +élargissions élargir ver 4.85 19.32 0.00 0.07 ind:imp:1p; +élargit élargir ver 4.85 19.32 0.86 2.57 ind:pre:3s;ind:pas:3s; +élasticimétrie élasticimétrie nom f s 0.01 0.00 0.01 0.00 +élasticité élasticité nom f s 0.30 1.76 0.30 1.76 +élastique élastique nom m s 2.12 6.35 1.73 4.26 +élastiques élastique nom m p 2.12 6.35 0.39 2.09 +élastomère élastomère nom m s 0.01 0.14 0.01 0.14 +ulcère ulcère nom m s 4.69 2.50 3.98 1.76 +ulcères ulcère nom m p 4.69 2.50 0.71 0.74 +ulcéra ulcérer ver 0.66 1.49 0.00 0.07 ind:pas:3s; +ulcérait ulcérer ver 0.66 1.49 0.00 0.07 ind:imp:3s; +ulcérant ulcérer ver 0.66 1.49 0.00 0.07 par:pre; +ulcérations ulcération nom f p 0.01 0.20 0.01 0.20 +ulcérative ulcératif adj f s 0.01 0.00 0.01 0.00 +ulcéreuse ulcéreux adj f s 0.03 0.20 0.01 0.14 +ulcéreuses ulcéreux adj f p 0.03 0.20 0.00 0.07 +ulcéreux ulcéreux adj m s 0.03 0.20 0.01 0.00 +ulcéré ulcérer ver m s 0.66 1.49 0.48 0.68 par:pas; +ulcérée ulcéré adj f s 0.01 1.62 0.00 0.68 +ulcérées ulcéré adj f p 0.01 1.62 0.00 0.07 +ulcérés ulcérer ver m p 0.66 1.49 0.15 0.00 par:pas; +électeur électeur nom m s 3.47 3.11 0.48 0.47 +électeurs électeur nom m p 3.47 3.11 2.96 2.23 +électif électif adj m s 0.03 0.27 0.01 0.20 +élection élection nom f s 17.17 14.12 5.95 4.32 +élections élection nom f p 17.17 14.12 11.22 9.80 +élective électif adj f s 0.03 0.27 0.01 0.00 +électivement électivement adv 0.00 0.14 0.00 0.14 +électives électif adj f p 0.03 0.27 0.00 0.07 +électoral électoral adj m s 3.01 4.39 0.32 1.55 +électorale électoral adj f s 3.01 4.39 2.23 1.55 +électoralement électoralement adv 0.00 0.07 0.00 0.07 +électorales électoral adj f p 3.01 4.39 0.28 0.88 +électorat électorat nom m s 0.24 0.07 0.24 0.07 +électoraux électoral adj m p 3.01 4.39 0.19 0.41 +électrice électeur nom f s 3.47 3.11 0.02 0.20 +électrices électrice nom f p 0.07 0.00 0.07 0.00 +électricien électricien nom m s 2.79 2.64 2.62 1.82 +électricienne électricien nom f s 2.79 2.64 0.00 0.07 +électriciennes électricien nom f p 2.79 2.64 0.00 0.07 +électriciens électricien nom m p 2.79 2.64 0.17 0.68 +électricité électricité nom f s 15.76 12.97 15.76 12.97 +électrifia électrifier ver 1.22 0.54 0.01 0.00 ind:pas:3s; +électrifiait électrifier ver 1.22 0.54 0.00 0.07 ind:imp:3s; +électrifiant électrifier ver 1.22 0.54 0.02 0.00 par:pre; +électrification électrification nom f s 0.02 0.27 0.02 0.27 +électrifier électrifier ver 1.22 0.54 0.03 0.00 inf; +électrifié électrifier ver m s 1.22 0.54 0.29 0.27 par:pas; +électrifiée électrifier ver f s 1.22 0.54 0.37 0.14 par:pas; +électrifiées électrifier ver f p 1.22 0.54 0.04 0.00 par:pas; +électrifiés électrifier ver m p 1.22 0.54 0.44 0.07 par:pas; +électrique électrique adj s 20.36 35.81 15.95 27.50 +électriquement électriquement adv 0.21 0.47 0.21 0.47 +électriques électrique adj p 20.36 35.81 4.41 8.31 +électrisa électriser ver 0.25 2.03 0.00 0.20 ind:pas:3s; +électrisaient électriser ver 0.25 2.03 0.00 0.07 ind:imp:3p; +électrisais électriser ver 0.25 2.03 0.01 0.00 ind:imp:1s; +électrisait électriser ver 0.25 2.03 0.02 0.14 ind:imp:3s; +électrisant électrisant adj m s 0.23 0.27 0.18 0.14 +électrisante électrisant adj f s 0.23 0.27 0.05 0.14 +électrisation électrisation nom f s 0.00 0.07 0.00 0.07 +électrise électriser ver 0.25 2.03 0.07 0.34 ind:pre:1s;ind:pre:3s; +électrisent électriser ver 0.25 2.03 0.01 0.07 ind:pre:3p; +électriser électriser ver 0.25 2.03 0.03 0.07 inf; +électrisèrent électriser ver 0.25 2.03 0.00 0.07 ind:pas:3p; +électrisé électriser ver m s 0.25 2.03 0.04 0.68 par:pas; +électrisée électriser ver f s 0.25 2.03 0.01 0.07 par:pas; +électrisées électriser ver f p 0.25 2.03 0.00 0.14 par:pas; +électro_acoustique électro_acoustique nom f s 0.00 0.14 0.00 0.14 +électro_aimant électro_aimant nom m s 0.02 0.00 0.02 0.00 +électro_encéphalogramme électro_encéphalogramme nom m s 0.16 0.07 0.16 0.07 +électroacoustique électroacoustique nom f s 0.01 0.00 0.01 0.00 +électroaimant électroaimant nom m s 0.06 0.00 0.03 0.00 +électroaimants électroaimant nom m p 0.06 0.00 0.03 0.00 +électrobiologie électrobiologie nom f s 0.01 0.00 0.01 0.00 +électrocardiogramme électrocardiogramme nom m s 0.25 0.34 0.25 0.34 +électrochimie électrochimie nom f s 0.02 0.00 0.02 0.00 +électrochimique électrochimique adj f s 0.07 0.00 0.02 0.00 +électrochimiques électrochimique adj p 0.07 0.00 0.05 0.00 +électrochoc électrochoc nom m s 3.14 0.74 0.28 0.54 +électrochocs électrochoc nom m p 3.14 0.74 2.86 0.20 +électrocutant électrocuter ver 2.08 0.54 0.03 0.00 par:pre; +électrocute électrocuter ver 2.08 0.54 0.11 0.07 ind:pre:1s;ind:pre:3s; +électrocutent électrocuter ver 2.08 0.54 0.02 0.00 ind:pre:3p; +électrocuter électrocuter ver 2.08 0.54 0.47 0.07 inf; +électrocutera électrocuter ver 2.08 0.54 0.11 0.00 ind:fut:3s; +électrocutes électrocuter ver 2.08 0.54 0.02 0.00 ind:pre:2s; +électrocutez électrocuter ver 2.08 0.54 0.01 0.00 imp:pre:2p; +électrocution électrocution nom f s 0.40 0.20 0.40 0.20 +électrocuté électrocuter ver m s 2.08 0.54 1.16 0.27 par:pas; +électrocutée électrocuter ver f s 2.08 0.54 0.14 0.14 par:pas; +électrocutés électrocuter ver m p 2.08 0.54 0.01 0.00 par:pas; +électrode électrode nom f s 0.87 0.07 0.25 0.00 +électrodes électrode nom f p 0.87 0.07 0.62 0.07 +électrodynamique électrodynamique nom f s 0.00 0.07 0.00 0.07 +électroencéphalogramme électroencéphalogramme nom m s 0.09 0.00 0.09 0.00 +électroencéphalographie électroencéphalographie nom f s 0.02 0.00 0.02 0.00 +électrogène électrogène adj m s 1.10 0.34 1.10 0.34 +électrologie électrologie nom f s 0.01 0.00 0.01 0.00 +électrolyse électrolyse nom f s 0.05 0.20 0.05 0.20 +électrolyte électrolyte nom m s 0.35 0.00 0.10 0.00 +électrolytes électrolyte nom m p 0.35 0.00 0.25 0.00 +électrolytique électrolytique adj m s 0.05 0.07 0.05 0.07 +électromagnétique électromagnétique adj s 1.92 0.07 1.29 0.00 +électromagnétiques électromagnétique adj p 1.92 0.07 0.62 0.07 +électromagnétisme électromagnétisme nom m s 0.11 0.00 0.11 0.00 +électromètre électromètre nom m s 0.07 0.00 0.07 0.00 +électroménager électroménager nom m s 0.26 0.34 0.26 0.34 +électron électron nom m s 1.28 0.20 0.45 0.07 +électronicien électronicien nom m s 0.06 0.07 0.04 0.00 +électroniciens électronicien nom m p 0.06 0.07 0.02 0.07 +électronique électronique adj s 6.70 3.51 5.00 1.96 +électroniquement électroniquement adv 0.21 0.00 0.21 0.00 +électroniques électronique adj p 6.70 3.51 1.69 1.55 +électrons électron nom m p 1.28 0.20 0.83 0.14 +électronucléaire électronucléaire adj f s 0.01 0.00 0.01 0.00 +électronvolts électronvolt nom m p 0.02 0.00 0.02 0.00 +électrophone électrophone nom m s 0.28 3.04 0.28 2.97 +électrophones électrophone nom m p 0.28 3.04 0.00 0.07 +électrophorèse électrophorèse nom f s 0.01 0.00 0.01 0.00 +électrostatique électrostatique adj s 0.28 0.07 0.25 0.07 +électrostatiques électrostatique adj p 0.28 0.07 0.04 0.00 +électrum électrum nom m s 0.27 0.07 0.27 0.07 +électuaires électuaire nom m p 0.00 0.14 0.00 0.14 +éleusinienne éleusinien adj f s 0.00 0.07 0.00 0.07 +éleva élever ver 52.03 103.85 0.28 12.91 ind:pas:3s; +élevage élevage nom m s 3.15 3.38 2.88 2.91 +élevages élevage nom m p 3.15 3.38 0.28 0.47 +élevai élever ver 52.03 103.85 0.23 0.41 ind:pas:1s; +élevaient élever ver 52.03 103.85 0.17 4.73 ind:imp:3p; +élevais élever ver 52.03 103.85 0.26 0.61 ind:imp:1s;ind:imp:2s; +élevait élever ver 52.03 103.85 1.00 15.34 ind:imp:3s; +élevant élever ver 52.03 103.85 0.36 8.38 par:pre; +élever élever ver 52.03 103.85 15.57 20.20 ind:pre:2p;inf; +éleveur éleveur nom m s 1.82 1.76 0.98 1.01 +éleveurs éleveur nom m p 1.82 1.76 0.80 0.74 +éleveuse éleveur nom f s 1.82 1.76 0.04 0.00 +élevez élever ver 52.03 103.85 0.69 0.27 imp:pre:2p;ind:pre:2p; +éleviez élever ver 52.03 103.85 0.23 0.00 ind:imp:2p; +élevions élever ver 52.03 103.85 0.02 0.07 ind:imp:1p; +élevons élever ver 52.03 103.85 0.34 0.14 imp:pre:1p;ind:pre:1p; +élevât élever ver 52.03 103.85 0.00 0.20 sub:imp:3s; +élevèrent élever ver 52.03 103.85 0.07 1.76 ind:pas:3p; +élevé élevé adj m s 25.02 30.68 14.37 15.20 +élevée élevé adj f s 25.02 30.68 5.82 7.50 +élevées élevé adj f p 25.02 30.68 1.06 1.76 +élevures élevure nom f p 0.00 0.07 0.00 0.07 +élevés élevé adj m p 25.02 30.68 3.78 6.22 +élia élier ver 0.05 8.99 0.00 1.35 ind:pas:3s; +élias élier ver 0.05 8.99 0.04 0.00 ind:pas:2s; +éliciter éliciter ver 0.01 0.00 0.01 0.00 inf; +élie élier ver 0.05 8.99 0.01 7.64 imp:pre:2s;ind:pre:3s; +éligibilité éligibilité nom f s 0.04 0.14 0.04 0.14 +éligible éligible adj s 0.11 0.20 0.10 0.07 +éligibles éligible adj p 0.11 0.20 0.01 0.14 +élime élimer ver 0.04 1.01 0.00 0.07 ind:pre:3s; +élimer élimer ver 0.04 1.01 0.01 0.00 inf; +élimina éliminer ver 30.28 8.04 0.01 0.20 ind:pas:3s; +éliminais éliminer ver 30.28 8.04 0.02 0.00 ind:imp:1s; +éliminait éliminer ver 30.28 8.04 0.17 0.61 ind:imp:3s; +éliminant éliminer ver 30.28 8.04 0.67 0.14 par:pre; +éliminateur éliminateur adj m s 0.03 0.00 0.01 0.00 +éliminateurs éliminateur adj m p 0.03 0.00 0.02 0.00 +élimination élimination nom f s 1.55 1.96 1.47 1.89 +éliminations élimination nom f p 1.55 1.96 0.08 0.07 +éliminatoire éliminatoire adj s 0.12 0.20 0.08 0.20 +éliminatoires éliminatoire nom f p 0.32 0.34 0.29 0.34 +élimine éliminer ver 30.28 8.04 4.00 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éliminent éliminer ver 30.28 8.04 0.30 0.14 ind:pre:3p; +éliminer éliminer ver 30.28 8.04 14.66 3.58 inf; +éliminera éliminer ver 30.28 8.04 0.40 0.00 ind:fut:3s; +éliminerai éliminer ver 30.28 8.04 0.11 0.07 ind:fut:1s; +élimineraient éliminer ver 30.28 8.04 0.06 0.00 cnd:pre:3p; +éliminerais éliminer ver 30.28 8.04 0.04 0.07 cnd:pre:1s; +éliminerait éliminer ver 30.28 8.04 0.13 0.07 cnd:pre:3s; +élimineras éliminer ver 30.28 8.04 0.01 0.00 ind:fut:2s; +éliminerez éliminer ver 30.28 8.04 0.34 0.00 ind:fut:2p; +éliminerons éliminer ver 30.28 8.04 0.11 0.20 ind:fut:1p; +élimineront éliminer ver 30.28 8.04 0.06 0.07 ind:fut:3p; +élimines éliminer ver 30.28 8.04 0.47 0.07 ind:pre:2s; +éliminez éliminer ver 30.28 8.04 0.47 0.00 imp:pre:2p;ind:pre:2p; +éliminiez éliminer ver 30.28 8.04 0.03 0.00 ind:imp:2p; +éliminons éliminer ver 30.28 8.04 0.19 0.00 imp:pre:1p;ind:pre:1p; +éliminèrent éliminer ver 30.28 8.04 0.00 0.07 ind:pas:3p; +éliminé éliminer ver m s 30.28 8.04 5.47 0.95 par:pas; +éliminée éliminer ver f s 30.28 8.04 0.65 0.20 par:pas; +éliminées éliminer ver f p 30.28 8.04 0.25 0.14 par:pas; +éliminés éliminer ver m p 30.28 8.04 1.67 0.47 par:pas; +élimâmes élimer ver 0.04 1.01 0.00 0.07 ind:pas:1p; +élimé élimé adj m s 0.04 2.64 0.01 1.01 +élimée élimé adj f s 0.04 2.64 0.03 0.27 +élimées élimer ver f p 0.04 1.01 0.01 0.07 par:pas; +élimés élimer ver m p 0.04 1.01 0.02 0.14 par:pas; +élingue élingue nom f s 0.02 0.00 0.02 0.00 +élirait élire ver 11.24 13.51 0.01 0.07 cnd:pre:3s; +élire élire ver 11.24 13.51 2.15 2.03 inf; +élirez élire ver 11.24 13.51 0.02 0.07 ind:fut:2p; +éliront élire ver 11.24 13.51 0.03 0.14 ind:fut:3p; +élis élire ver 11.24 13.51 2.00 0.07 imp:pre:2s;ind:pre:1s; +élisabéthain élisabéthain adj m s 0.05 0.27 0.02 0.07 +élisabéthaine élisabéthain adj f s 0.05 0.27 0.03 0.20 +élisaient élire ver 11.24 13.51 0.00 0.14 ind:imp:3p; +élisais élire ver 11.24 13.51 0.00 0.07 ind:imp:1s; +élisait élire ver 11.24 13.51 0.01 0.07 ind:imp:3s; +élisant élire ver 11.24 13.51 0.12 0.14 par:pre; +élise élire ver 11.24 13.51 0.27 4.86 sub:pre:1s;sub:pre:3s; +élisent élire ver 11.24 13.51 0.16 0.27 ind:pre:3p; +élisez élire ver 11.24 13.51 0.08 0.07 imp:pre:2p;ind:pre:2p; +élit élire ver 11.24 13.51 0.12 0.14 ind:pre:3s; +élite élite nom f s 7.38 10.27 7.24 8.65 +élites élite nom f p 7.38 10.27 0.14 1.62 +élitisme élitisme nom m s 0.16 0.00 0.16 0.00 +élitiste élitiste adj s 0.28 0.34 0.25 0.20 +élitistes élitiste adj f p 0.28 0.34 0.03 0.14 +élixir élixir nom m s 1.56 1.42 1.52 1.28 +élixirs élixir nom m p 1.56 1.42 0.04 0.14 +ulna ulna nom f s 0.01 0.00 0.01 0.00 +ulnaire ulnaire adj m s 0.01 0.00 0.01 0.00 +élocution élocution nom f s 0.84 1.62 0.84 1.62 +éloge éloge nom m s 2.62 8.85 1.31 5.47 +éloges éloge nom m p 2.62 8.85 1.31 3.38 +élogieuse élogieux adj f s 0.42 0.81 0.06 0.34 +élogieuses élogieux adj f p 0.42 0.81 0.05 0.14 +élogieux élogieux adj m 0.42 0.81 0.30 0.34 +éloigna éloigner ver 41.15 133.11 0.10 19.19 ind:pas:3s; +éloignai éloigner ver 41.15 133.11 0.02 0.74 ind:pas:1s; +éloignaient éloigner ver 41.15 133.11 0.16 4.73 ind:imp:3p; +éloignais éloigner ver 41.15 133.11 0.28 0.41 ind:imp:1s;ind:imp:2s; +éloignait éloigner ver 41.15 133.11 0.45 16.82 ind:imp:3s; +éloignant éloigner ver 41.15 133.11 0.65 7.64 par:pre; +éloigne éloigner ver 41.15 133.11 9.77 19.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éloignement éloignement nom m s 1.12 7.50 1.12 7.50 +éloignent éloigner ver 41.15 133.11 1.64 5.54 ind:pre:3p; +éloigner éloigner ver 41.15 133.11 14.51 28.45 ind:pre:2p;inf; +éloignera éloigner ver 41.15 133.11 0.43 0.47 ind:fut:3s; +éloignerai éloigner ver 41.15 133.11 0.11 0.07 ind:fut:1s; +éloigneraient éloigner ver 41.15 133.11 0.15 0.27 cnd:pre:3p; +éloignerais éloigner ver 41.15 133.11 0.09 0.00 cnd:pre:1s; +éloignerait éloigner ver 41.15 133.11 0.11 0.41 cnd:pre:3s; +éloigneras éloigner ver 41.15 133.11 0.14 0.07 ind:fut:2s; +éloignerez éloigner ver 41.15 133.11 0.04 0.00 ind:fut:2p; +éloignerons éloigner ver 41.15 133.11 0.04 0.14 ind:fut:1p; +éloigneront éloigner ver 41.15 133.11 0.04 0.00 ind:fut:3p; +éloignes éloigner ver 41.15 133.11 1.00 0.27 ind:pre:2s;sub:pre:2s; +éloignez éloigner ver 41.15 133.11 3.36 0.68 imp:pre:2p;ind:pre:2p; +éloignions éloigner ver 41.15 133.11 0.20 0.68 ind:imp:1p; +éloignâmes éloigner ver 41.15 133.11 0.00 0.20 ind:pas:1p; +éloignons éloigner ver 41.15 133.11 0.43 0.54 imp:pre:1p;ind:pre:1p; +éloignât éloigner ver 41.15 133.11 0.10 0.41 sub:imp:3s; +éloignèrent éloigner ver 41.15 133.11 0.01 3.51 ind:pas:3p; +éloigné éloigner ver m s 41.15 133.11 4.25 11.82 par:pas; +éloignée éloigner ver f s 41.15 133.11 1.48 5.07 par:pas; +éloignées éloigné adj f p 4.14 12.16 0.37 1.82 +éloignés éloigner ver m p 41.15 133.11 1.38 3.99 par:pas; +élongation élongation nom f s 0.08 0.34 0.08 0.27 +élongations élongation nom f p 0.08 0.34 0.00 0.07 +éloquemment éloquemment adv 0.05 0.34 0.05 0.34 +éloquence éloquence nom f s 1.30 4.46 1.30 4.46 +éloquent éloquent adj m s 0.98 5.34 0.81 2.30 +éloquente éloquent adj f s 0.98 5.34 0.08 1.62 +éloquentes éloquent adj f p 0.98 5.34 0.02 0.54 +éloquents éloquent adj m p 0.98 5.34 0.07 0.88 +élève élève nom s 36.84 57.77 15.83 21.69 +élèvent élever ver 52.03 103.85 1.87 5.27 ind:pre:3p; +élèvera élever ver 52.03 103.85 1.23 0.34 ind:fut:3s; +élèverai élever ver 52.03 103.85 0.55 0.41 ind:fut:1s; +élèveraient élever ver 52.03 103.85 0.11 0.07 cnd:pre:3p; +élèverais élever ver 52.03 103.85 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +élèverait élever ver 52.03 103.85 0.21 0.81 cnd:pre:3s; +élèveras élever ver 52.03 103.85 0.20 0.00 ind:fut:2s; +élèveriez élever ver 52.03 103.85 0.00 0.07 cnd:pre:2p; +élèverons élever ver 52.03 103.85 0.22 0.07 ind:fut:1p; +élèveront élever ver 52.03 103.85 0.19 0.14 ind:fut:3p; +élèves élève nom p 36.84 57.77 21.01 36.08 +ultima_ratio ultima_ratio nom f s 0.00 0.07 0.00 0.07 +ultimatum ultimatum nom m s 1.32 1.55 1.23 1.55 +ultimatums ultimatum nom m p 1.32 1.55 0.09 0.00 +ultime ultime adj s 8.56 25.74 8.01 21.49 +ultimement ultimement adv 0.01 0.07 0.01 0.07 +ultimes ultime adj p 8.56 25.74 0.55 4.26 +ultimo ultimo adv 0.00 0.07 0.00 0.07 +ultra_catholique ultra_catholique adj m s 0.10 0.00 0.10 0.00 +ultra_chic ultra_chic adj s 0.03 0.20 0.03 0.14 +ultra_chic ultra_chic adj f p 0.03 0.20 0.00 0.07 +ultra_court ultra_court adj f p 0.16 0.07 0.02 0.00 +ultra_court ultra_court adj m p 0.16 0.07 0.14 0.07 +ultra_gauche ultra_gauche nom f s 0.00 0.07 0.00 0.07 +ultra_rapide ultra_rapide adj s 0.20 0.27 0.20 0.27 +ultra_secret ultra_secret adj m s 0.20 0.07 0.20 0.07 +ultra_sensible ultra_sensible adj m s 0.01 0.14 0.01 0.14 +ultra_son ultra_son nom m p 0.03 0.14 0.03 0.14 +ultra_violet ultra_violet adj 0.04 0.07 0.01 0.00 +ultra_violet ultra_violet nom s 0.04 0.07 0.04 0.07 +ultra ultra adj 1.59 1.49 1.59 1.49 +ultrafin ultrafin adj m s 0.00 0.07 0.00 0.07 +ultragauche ultragauche nom f s 0.00 0.07 0.00 0.07 +ultraléger ultraléger adj m s 0.01 0.00 0.01 0.00 +ultramarine ultramarin adj f s 0.00 0.14 0.00 0.14 +ultramoderne ultramoderne adj s 0.49 0.14 0.34 0.07 +ultramodernes ultramoderne adj p 0.49 0.14 0.14 0.07 +ultramontain ultramontain adj m s 0.00 0.20 0.00 0.07 +ultramontains ultramontain adj m p 0.00 0.20 0.00 0.14 +ultraperformant ultraperformant adj m s 0.00 0.07 0.00 0.07 +ultrarapide ultrarapide adj s 0.06 0.07 0.03 0.07 +ultrarapides ultrarapide adj m p 0.06 0.07 0.02 0.00 +ultras ultra nom p 0.49 0.81 0.00 0.34 +ultrasecret ultrasecret adj m s 0.10 0.07 0.06 0.00 +ultrasecrète ultrasecret adj f s 0.10 0.07 0.04 0.07 +ultrasensible ultrasensible adj s 0.25 0.07 0.23 0.00 +ultrasensibles ultrasensible adj m p 0.25 0.07 0.01 0.07 +ultrason ultrason nom m s 0.87 0.00 0.34 0.00 +ultrasonique ultrasonique adj s 0.25 0.00 0.25 0.00 +ultrasons ultrason nom m p 0.87 0.00 0.53 0.00 +ultraviolet ultraviolet adj m s 0.32 0.07 0.16 0.00 +ultraviolets ultraviolet nom m p 0.33 0.07 0.27 0.07 +ultraviolette ultraviolet adj f s 0.32 0.07 0.07 0.00 +ultraviolettes ultraviolet adj f p 0.32 0.07 0.01 0.00 +ultravirus ultravirus nom m 0.01 0.00 0.01 0.00 +ultérieur ultérieur adj m s 0.71 2.36 0.27 0.41 +ultérieure ultérieur adj f s 0.71 2.36 0.28 0.95 +ultérieurement ultérieurement adv 0.37 2.03 0.37 2.03 +ultérieures ultérieur adj f p 0.71 2.36 0.09 0.81 +ultérieurs ultérieur adj m p 0.71 2.36 0.07 0.20 +élu élire ver m s 11.24 13.51 5.85 4.46 par:pas; +éléates éléate nom p 0.00 0.07 0.00 0.07 +élucida élucider ver 2.43 2.64 0.00 0.07 ind:pas:3s; +élucidai élucider ver 2.43 2.64 0.00 0.07 ind:pas:1s; +élucidation élucidation nom f s 0.05 0.61 0.05 0.61 +élucide élucider ver 2.43 2.64 0.10 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +élucider élucider ver 2.43 2.64 1.31 1.69 inf; +élucideraient élucider ver 2.43 2.64 0.00 0.07 cnd:pre:3p; +éluciderait élucider ver 2.43 2.64 0.01 0.00 cnd:pre:3s; +élucidé élucider ver m s 2.43 2.64 0.60 0.20 par:pas; +élucidée élucider ver f s 2.43 2.64 0.09 0.07 par:pas; +élucidées élucider ver f p 2.43 2.64 0.20 0.20 par:pas; +élucidés élucider ver m p 2.43 2.64 0.13 0.07 par:pas; +élucubration élucubration nom f s 0.18 1.15 0.00 0.07 +élucubrations élucubration nom f p 0.18 1.15 0.18 1.08 +élucubre élucubrer ver 0.01 0.27 0.00 0.07 ind:pre:3s; +élucubrent élucubrer ver 0.01 0.27 0.00 0.07 ind:pre:3p; +élucubrer élucubrer ver 0.01 0.27 0.01 0.14 inf; +éluda éluder ver 0.69 5.00 0.00 0.74 ind:pas:3s; +éludai éluder ver 0.69 5.00 0.00 0.07 ind:pas:1s; +éludaient éluder ver 0.69 5.00 0.00 0.14 ind:imp:3p; +éludais éluder ver 0.69 5.00 0.01 0.07 ind:imp:1s; +éludait éluder ver 0.69 5.00 0.00 0.41 ind:imp:3s; +éludant éluder ver 0.69 5.00 0.00 0.07 par:pre; +élude éluder ver 0.69 5.00 0.07 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éludent éluder ver 0.69 5.00 0.01 0.07 ind:pre:3p; +éluder éluder ver 0.69 5.00 0.33 1.89 inf; +éludes éluder ver 0.69 5.00 0.04 0.07 ind:pre:2s; +éludez éluder ver 0.69 5.00 0.13 0.00 imp:pre:2p;ind:pre:2p; +éludât éluder ver 0.69 5.00 0.00 0.14 sub:imp:3s; +éludé éluder ver m s 0.69 5.00 0.07 0.61 par:pas; +éludée éluder ver f s 0.69 5.00 0.01 0.07 par:pas; +éludées éluder ver f p 0.69 5.00 0.02 0.20 par:pas; +élue élu adj f s 5.49 4.73 3.62 2.16 +élues élu adj f p 5.49 4.73 0.14 0.68 +élégamment élégamment adv 0.23 1.89 0.23 1.89 +élégance élégance nom f s 4.17 23.51 4.12 22.77 +élégances élégance nom f p 4.17 23.51 0.06 0.74 +élégant élégant adj m s 10.13 28.85 4.74 11.35 +élégante élégant adj f s 10.13 28.85 3.86 9.46 +élégantes élégant adj f p 10.13 28.85 0.86 3.38 +élégants élégant adj m p 10.13 28.85 0.68 4.66 +élégiaque élégiaque adj s 0.10 0.27 0.10 0.20 +élégiaques élégiaque nom p 0.00 0.34 0.00 0.20 +élégie élégie nom f s 0.15 0.41 0.11 0.27 +élégies élégie nom f p 0.15 0.41 0.04 0.14 +ulula ululer ver 0.01 0.47 0.00 0.07 ind:pas:3s; +ululait ululer ver 0.01 0.47 0.00 0.14 ind:imp:3s; +ululant ululer ver 0.01 0.47 0.00 0.07 par:pre; +ulule ululer ver 0.01 0.47 0.01 0.07 ind:pre:3s; +ululement ululement nom m s 0.00 0.47 0.00 0.41 +ululements ululement nom m p 0.00 0.47 0.00 0.07 +ululer ululer ver 0.01 0.47 0.00 0.14 inf; +élément_clé élément_clé nom m s 0.09 0.00 0.09 0.00 +élément élément nom m s 24.03 63.04 10.20 16.15 +élémentaire élémentaire adj s 3.09 14.05 2.26 10.20 +élémentaires élémentaire adj p 3.09 14.05 0.82 3.85 +élémentarité élémentarité nom f s 0.00 0.07 0.00 0.07 +éléments_clé éléments_clé nom m p 0.02 0.00 0.02 0.00 +éléments élément nom m p 24.03 63.04 13.83 46.89 +éléphant éléphant nom m s 15.36 15.20 10.17 8.92 +éléphante éléphant nom f s 15.36 15.20 0.02 0.20 +éléphanteau éléphanteau nom m s 0.02 0.20 0.02 0.20 +éléphantes éléphant nom f p 15.36 15.20 0.00 0.07 +éléphantesque éléphantesque adj s 0.02 0.27 0.02 0.07 +éléphantesques éléphantesque adj p 0.02 0.27 0.00 0.20 +éléphantiasique éléphantiasique adj s 0.01 0.00 0.01 0.00 +éléphantiasis éléphantiasis nom m 0.04 0.27 0.04 0.27 +éléphantine éléphantin adj f s 0.01 0.34 0.01 0.07 +éléphantines éléphantin adj f p 0.01 0.34 0.00 0.27 +éléphants éléphant nom m p 15.36 15.20 5.17 6.01 +élus élu nom m p 4.41 5.81 1.59 4.12 +élusifs élusif adj m p 0.01 0.07 0.00 0.07 +élusive élusif adj f s 0.01 0.07 0.01 0.00 +élut élire ver 11.24 13.51 0.00 0.14 ind:pas:3s; +élévateur élévateur nom m s 0.28 0.00 0.25 0.00 +élévateurs élévateur nom m p 0.28 0.00 0.03 0.00 +élévation élévation nom f s 0.33 3.11 0.30 2.97 +élévations élévation nom f p 0.33 3.11 0.04 0.14 +élévatrice élévateur adj f s 0.23 0.27 0.01 0.00 +élévatrices élévateur adj f p 0.23 0.27 0.01 0.00 +élysée élysée nom m s 0.16 3.72 0.16 3.72 +élyséen élyséen adj m s 0.00 0.14 0.00 0.07 +élyséenne élyséen adj f s 0.00 0.14 0.00 0.07 +élytre élytre nom m s 0.01 1.76 0.01 0.00 +élytres élytre nom m p 0.01 1.76 0.00 1.76 +émût émouvoir ver 9.46 37.43 0.00 0.07 sub:imp:3s; +émaciait émacier ver 0.17 1.01 0.00 0.14 ind:imp:3s; +émacie émacier ver 0.17 1.01 0.00 0.14 ind:pre:3s; +émacié émacier ver m s 0.17 1.01 0.14 0.41 par:pas; +émaciée émacié adj f s 0.05 2.57 0.00 0.34 +émaciées émacier ver f p 0.17 1.01 0.01 0.00 par:pas; +émaciés émacié adj m p 0.05 2.57 0.02 0.07 +émail émail nom m s 0.57 6.42 0.56 5.74 +émailla émailler ver 0.24 2.84 0.00 0.07 ind:pas:3s; +émaillaient émailler ver 0.24 2.84 0.00 0.47 ind:imp:3p; +émaillait émailler ver 0.24 2.84 0.00 0.07 ind:imp:3s; +émaillant émailler ver 0.24 2.84 0.01 0.00 par:pre; +émaille émailler ver 0.24 2.84 0.01 0.07 ind:pre:1s;ind:pre:3s; +émaillent émailler ver 0.24 2.84 0.00 0.20 ind:pre:3p; +émailler émailler ver 0.24 2.84 0.01 0.34 inf; +émaillé émailler ver m s 0.24 2.84 0.03 0.74 par:pas; +émaillée émailler ver f s 0.24 2.84 0.17 0.47 par:pas; +émaillées émailler ver f p 0.24 2.84 0.01 0.27 par:pas; +émaillés émaillé adj m p 0.01 2.64 0.00 0.27 +émanaient émaner ver 2.77 9.93 0.06 0.54 ind:imp:3p; +émanait émaner ver 2.77 9.93 0.15 4.66 ind:imp:3s; +émanant émaner ver 2.77 9.93 0.72 1.22 par:pre; +émanation émanation nom f s 0.78 3.11 0.07 1.08 +émanations émanation nom f p 0.78 3.11 0.70 2.03 +émancipait émanciper ver 0.41 0.74 0.00 0.07 ind:imp:3s; +émancipateur émancipateur adj m s 0.02 0.07 0.02 0.00 +émancipation émancipation nom f s 1.12 1.15 1.12 1.15 +émancipatrice émancipateur adj f s 0.02 0.07 0.00 0.07 +émancipe émanciper ver 0.41 0.74 0.05 0.00 ind:pre:3s; +émancipent émanciper ver 0.41 0.74 0.00 0.14 ind:pre:3p; +émanciper émanciper ver 0.41 0.74 0.11 0.27 inf; +émancipé émanciper ver m s 0.41 0.74 0.14 0.07 par:pas; +émancipée émancipé adj f s 0.25 0.41 0.12 0.20 +émancipées émanciper ver f p 0.41 0.74 0.00 0.14 par:pas; +émancipés émanciper ver m p 0.41 0.74 0.02 0.00 par:pas; +émane émaner ver 2.77 9.93 1.31 2.09 imp:pre:2s;ind:pre:3s; +émanent émaner ver 2.77 9.93 0.34 0.47 ind:pre:3p; +émaner émaner ver 2.77 9.93 0.10 0.54 inf; +émanera émaner ver 2.77 9.93 0.01 0.00 ind:fut:3s; +émanerait émaner ver 2.77 9.93 0.02 0.07 cnd:pre:3s; +émané émaner ver m s 2.77 9.93 0.04 0.00 par:pas; +émanée émaner ver f s 2.77 9.93 0.00 0.20 par:pas; +émanées émaner ver f p 2.77 9.93 0.00 0.07 par:pas; +émanés émaner ver m p 2.77 9.93 0.00 0.07 par:pas; +émarge émarger ver 0.02 0.41 0.02 0.07 ind:pre:1s;ind:pre:3s; +émargeaient émarger ver 0.02 0.41 0.00 0.07 ind:imp:3p; +émargeait émarger ver 0.02 0.41 0.00 0.07 ind:imp:3s; +émargeant émarger ver 0.02 0.41 0.00 0.07 par:pre; +émargement émargement nom m s 0.01 0.00 0.01 0.00 +émarger émarger ver 0.02 0.41 0.00 0.14 inf; +émasculaient émasculer ver 0.31 0.68 0.00 0.07 ind:imp:3p; +émasculation émasculation nom f s 0.02 0.14 0.02 0.14 +émascule émasculer ver 0.31 0.68 0.03 0.14 ind:pre:1s;ind:pre:3s; +émasculer émasculer ver 0.31 0.68 0.22 0.14 inf; +émasculé émasculer ver m s 0.31 0.68 0.04 0.07 par:pas; +émasculée émasculer ver f s 0.31 0.68 0.00 0.07 par:pas; +émasculées émasculer ver f p 0.31 0.68 0.00 0.07 par:pas; +émasculés émasculer ver m p 0.31 0.68 0.03 0.14 par:pas; +émaux émail nom m p 0.57 6.42 0.01 0.68 +umbanda umbanda nom m s 0.10 0.00 0.10 0.00 +émeraude émeraude nom f s 2.77 6.42 0.88 3.58 +émeraudes émeraude nom p 2.77 6.42 1.88 2.84 +émerge émerger ver 3.73 30.20 1.14 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émergea émerger ver 3.73 30.20 0.04 2.64 ind:pas:3s; +émergeai émerger ver 3.73 30.20 0.04 0.20 ind:pas:1s; +émergeaient émerger ver 3.73 30.20 0.10 2.50 ind:imp:3p; +émergeais émerger ver 3.73 30.20 0.21 0.27 ind:imp:1s; +émergeait émerger ver 3.73 30.20 0.03 5.41 ind:imp:3s; +émergeant émerger ver 3.73 30.20 0.28 4.53 par:pre; +émergence émergence nom f s 0.49 0.54 0.49 0.41 +émergences émergence nom f p 0.49 0.54 0.00 0.14 +émergent émerger ver 3.73 30.20 0.22 2.64 ind:pre:3p;sub:pre:3p; +émergente émergent adj f s 0.11 0.41 0.01 0.00 +émergeons émerger ver 3.73 30.20 0.00 0.27 ind:pre:1p; +émergeât émerger ver 3.73 30.20 0.00 0.07 sub:imp:3s; +émerger émerger ver 3.73 30.20 0.70 4.46 inf; +émergera émerger ver 3.73 30.20 0.34 0.07 ind:fut:3s; +émergerait émerger ver 3.73 30.20 0.00 0.14 cnd:pre:3s; +émergeras émerger ver 3.73 30.20 0.00 0.07 ind:fut:2s; +émergerons émerger ver 3.73 30.20 0.03 0.00 ind:fut:1p; +émergeront émerger ver 3.73 30.20 0.01 0.00 ind:fut:3p; +émerges émerger ver 3.73 30.20 0.06 0.14 ind:pre:2s; +émergions émerger ver 3.73 30.20 0.00 0.20 ind:imp:1p; +émergèrent émerger ver 3.73 30.20 0.11 0.27 ind:pas:3p; +émergé émerger ver m s 3.73 30.20 0.38 1.01 par:pas; +émergée émerger ver f s 3.73 30.20 0.05 0.20 par:pas; +émergées émergé adj f p 0.00 0.34 0.00 0.07 +émergés émerger ver m p 3.73 30.20 0.00 0.07 par:pas; +émeri émeri nom m s 0.16 0.95 0.16 0.95 +émerillon émerillon nom m s 0.00 0.20 0.00 0.20 +émerillonné émerillonné adj m s 0.00 0.07 0.00 0.07 +émerisé émeriser ver m s 0.00 0.14 0.00 0.07 par:pas; +émerisées émeriser ver f p 0.00 0.14 0.00 0.07 par:pas; +émersion émersion nom f s 0.00 0.07 0.00 0.07 +émerveilla émerveiller ver 1.40 20.81 0.00 0.47 ind:pas:3s; +émerveillai émerveiller ver 1.40 20.81 0.00 0.14 ind:pas:1s; +émerveillaient émerveiller ver 1.40 20.81 0.00 0.88 ind:imp:3p; +émerveillais émerveiller ver 1.40 20.81 0.01 0.34 ind:imp:1s; +émerveillait émerveiller ver 1.40 20.81 0.01 3.38 ind:imp:3s; +émerveillant émerveiller ver 1.40 20.81 0.01 0.81 par:pre; +émerveille émerveiller ver 1.40 20.81 0.43 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émerveillement émerveillement nom m s 0.58 8.24 0.56 7.36 +émerveillements émerveillement nom m p 0.58 8.24 0.02 0.88 +émerveillent émerveiller ver 1.40 20.81 0.00 0.74 ind:pre:3p; +émerveiller émerveiller ver 1.40 20.81 0.12 1.15 inf; +émerveillerait émerveiller ver 1.40 20.81 0.00 0.07 cnd:pre:3s; +émerveillèrent émerveiller ver 1.40 20.81 0.00 0.07 ind:pas:3p; +émerveillé émerveiller ver m s 1.40 20.81 0.36 5.81 par:pas; +émerveillée émerveiller ver f s 1.40 20.81 0.38 3.11 par:pas; +émerveillées émerveiller ver f p 1.40 20.81 0.01 0.34 par:pas; +émerveillés émerveiller ver m p 1.40 20.81 0.08 1.89 par:pas; +émet émettre ver 9.45 17.23 1.85 2.57 ind:pre:3s; +émets émettre ver 9.45 17.23 0.48 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +émettaient émettre ver 9.45 17.23 0.01 0.74 ind:imp:3p; +émettait émettre ver 9.45 17.23 0.09 1.55 ind:imp:3s; +émettant émettre ver 9.45 17.23 0.14 1.08 par:pre; +émette émettre ver 9.45 17.23 0.20 0.00 sub:pre:1s;sub:pre:3s; +émettent émettre ver 9.45 17.23 0.91 0.34 ind:pre:3p; +émetteur_récepteur émetteur_récepteur nom m s 0.05 0.00 0.05 0.00 +émetteur émetteur nom m s 3.35 0.54 3.06 0.34 +émetteurs émetteur nom m p 3.35 0.54 0.29 0.20 +émettez émettre ver 9.45 17.23 0.10 0.07 imp:pre:2p;ind:pre:2p; +émettons émettre ver 9.45 17.23 0.14 0.07 imp:pre:1p;ind:pre:1p; +émettra émettre ver 9.45 17.23 0.28 0.07 ind:fut:3s; +émettrai émettre ver 9.45 17.23 0.04 0.00 ind:fut:1s; +émettre émettre ver 9.45 17.23 2.96 3.04 inf; +émettrice émetteur adj f s 1.01 0.47 0.01 0.07 +émettrons émettre ver 9.45 17.23 0.05 0.00 ind:fut:1p; +émettront émettre ver 9.45 17.23 0.00 0.07 ind:fut:3p; +émeu émeu nom m s 0.09 0.07 0.09 0.00 +émeus émouvoir ver 9.46 37.43 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +émeut émouvoir ver 9.46 37.43 1.22 4.73 ind:pre:3s; +émeute émeute nom f s 6.75 5.81 4.03 3.65 +émeutes émeute nom f p 6.75 5.81 2.71 2.16 +émeutier émeutier nom m s 0.26 0.81 0.01 0.00 +émeutiers émeutier nom m p 0.26 0.81 0.25 0.81 +émeuve émouvoir ver 9.46 37.43 0.01 0.54 sub:pre:1s;sub:pre:3s; +émeuvent émouvoir ver 9.46 37.43 0.14 1.01 ind:pre:3p;sub:pre:3p; +émietta émietter ver 0.09 3.31 0.00 0.47 ind:pas:3s; +émiettaient émietter ver 0.09 3.31 0.00 0.41 ind:imp:3p; +émiettait émietter ver 0.09 3.31 0.00 0.54 ind:imp:3s; +émiette émietter ver 0.09 3.31 0.02 0.47 ind:pre:1s;ind:pre:3s; +émiettement émiettement nom m s 0.00 0.47 0.00 0.27 +émiettements émiettement nom m p 0.00 0.47 0.00 0.20 +émiettent émietter ver 0.09 3.31 0.01 0.07 ind:pre:3p; +émietter émietter ver 0.09 3.31 0.05 0.47 inf; +émietterait émietter ver 0.09 3.31 0.00 0.07 cnd:pre:3s; +émiettez émietter ver 0.09 3.31 0.01 0.00 ind:pre:2p; +émiettèrent émietter ver 0.09 3.31 0.00 0.07 ind:pas:3p; +émietté émietter ver m s 0.09 3.31 0.00 0.61 par:pas; +émiettée émietter ver f s 0.09 3.31 0.00 0.07 par:pas; +émiettés émietter ver m p 0.09 3.31 0.00 0.07 par:pas; +émigra émigrer ver 3.15 3.31 0.02 0.07 ind:pas:3s; +émigrai émigrer ver 3.15 3.31 0.01 0.07 ind:pas:1s; +émigraient émigrer ver 3.15 3.31 0.01 0.00 ind:imp:3p; +émigrais émigrer ver 3.15 3.31 0.01 0.07 ind:imp:1s; +émigrait émigrer ver 3.15 3.31 0.00 0.07 ind:imp:3s; +émigrant émigrant nom m s 0.50 0.81 0.20 0.20 +émigrante émigrant nom f s 0.50 0.81 0.10 0.00 +émigrants émigrant nom m p 0.50 0.81 0.20 0.61 +émigration émigration nom f s 0.60 1.15 0.60 1.15 +émigre émigrer ver 3.15 3.31 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émigrent émigrer ver 3.15 3.31 0.14 0.00 ind:pre:3p; +émigrer émigrer ver 3.15 3.31 1.02 0.47 inf; +émigrèrent émigrer ver 3.15 3.31 0.01 0.07 ind:pas:3p; +émigré émigrer ver m s 3.15 3.31 1.63 1.55 par:pas; +émigrée émigrer ver f s 3.15 3.31 0.01 0.27 par:pas; +émigrés émigré nom m p 0.91 3.45 0.62 2.30 +émilien émilien nom m s 0.00 3.38 0.00 0.07 +émilienne émilien nom f s 0.00 3.38 0.00 3.31 +émincer émincer ver 0.38 0.47 0.12 0.07 inf; +émincez émincer ver 0.38 0.47 0.12 0.00 imp:pre:2p;ind:pre:2p; +émincé émincer ver m s 0.38 0.47 0.11 0.20 par:pas; +émincée émincer ver f s 0.38 0.47 0.01 0.00 par:pas; +émincées émincer ver f p 0.38 0.47 0.01 0.14 par:pas; +émincés émincé nom m p 0.15 0.14 0.11 0.00 +éminemment éminemment adv 0.13 1.49 0.13 1.49 +éminence éminence nom f s 1.19 3.85 1.18 3.04 +éminences éminence nom f p 1.19 3.85 0.01 0.81 +éminent éminent adj m s 2.37 5.00 1.66 2.03 +éminente éminent adj f s 2.37 5.00 0.07 1.15 +éminentes éminent adj f p 2.37 5.00 0.03 0.47 +éminentissimes éminentissime adj m p 0.00 0.07 0.00 0.07 +éminents éminent adj m p 2.37 5.00 0.61 1.35 +émir émir nom m s 0.86 0.81 0.75 0.68 +émirat émirat nom m s 0.01 0.27 0.00 0.07 +émirats émirat nom m p 0.01 0.27 0.01 0.20 +émirs émir nom m p 0.86 0.81 0.11 0.14 +émis émettre ver m 9.45 17.23 1.57 2.30 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +émise émettre ver f s 9.45 17.23 0.23 0.20 par:pas; +émises émettre ver f p 9.45 17.23 0.32 0.47 par:pas; +émissaire émissaire adj m s 2.02 1.22 1.87 1.01 +émissaires émissaire nom m p 2.03 3.72 0.33 2.57 +émission émission nom f s 32.31 10.95 27.75 7.36 +émissions émission nom f p 32.31 10.95 4.56 3.58 +émit émettre ver 9.45 17.23 0.10 4.19 ind:pas:3s; +émoi émoi nom m s 1.71 7.77 1.41 5.88 +émois émoi nom m p 1.71 7.77 0.30 1.89 +émollient émollient adj m s 0.00 0.41 0.00 0.07 +émolliente émollient adj f s 0.00 0.41 0.00 0.34 +émoluments émolument nom m p 0.01 0.20 0.01 0.20 +émondait émonder ver 0.02 0.68 0.00 0.07 ind:imp:3s; +émonder émonder ver 0.02 0.68 0.01 0.27 inf; +émondera émonder ver 0.02 0.68 0.00 0.07 ind:fut:3s; +émondeur émondeur nom m s 0.00 0.14 0.00 0.14 +émondons émonder ver 0.02 0.68 0.00 0.07 imp:pre:1p; +émondé émonder ver m s 0.02 0.68 0.01 0.07 par:pas; +émondée émonder ver f s 0.02 0.68 0.00 0.07 par:pas; +émondées émonder ver f p 0.02 0.68 0.00 0.07 par:pas; +émotif émotif adj m s 2.65 1.15 1.16 0.61 +émotifs émotif adj m p 2.65 1.15 0.10 0.27 +émotion émotion nom f s 26.33 59.59 14.03 47.97 +émotionnante émotionnant adj f s 0.00 0.07 0.00 0.07 +émotionne émotionner ver 0.54 0.14 0.14 0.07 ind:pre:3s; +émotionnel émotionnel adj m s 5.57 0.41 3.14 0.27 +émotionnelle émotionnel adj f s 5.57 0.41 1.58 0.07 +émotionnellement émotionnellement adv 1.53 0.00 1.53 0.00 +émotionnelles émotionnel adj f p 5.57 0.41 0.17 0.00 +émotionnels émotionnel adj m p 5.57 0.41 0.68 0.07 +émotionné émotionner ver m s 0.54 0.14 0.40 0.07 par:pas; +émotions émotion nom f p 26.33 59.59 12.30 11.62 +émotive émotif adj f s 2.65 1.15 1.22 0.27 +émotives émotif adj f p 2.65 1.15 0.16 0.00 +émotivité émotivité nom f s 0.15 0.47 0.15 0.47 +émouchets émouchet nom m p 0.00 0.07 0.00 0.07 +émoulu émoudre ver m s 0.02 0.61 0.02 0.47 par:pas; +émoulue émoulu adj f s 0.02 0.14 0.01 0.00 +émoulus émoudre ver m p 0.02 0.61 0.00 0.07 par:pas; +émoussa émousser ver 0.61 2.64 0.00 0.07 ind:pas:3s; +émoussai émousser ver 0.61 2.64 0.00 0.07 ind:pas:1s; +émoussaient émousser ver 0.61 2.64 0.00 0.07 ind:imp:3p; +émoussait émousser ver 0.61 2.64 0.01 0.07 ind:imp:3s; +émoussant émousser ver 0.61 2.64 0.13 0.07 par:pre; +émousse émousser ver 0.61 2.64 0.17 0.41 imp:pre:2s;ind:pre:3s; +émoussement émoussement nom m s 0.00 0.07 0.00 0.07 +émoussent émousser ver 0.61 2.64 0.01 0.20 ind:pre:3p; +émousser émousser ver 0.61 2.64 0.05 0.47 inf; +émousseront émousser ver 0.61 2.64 0.00 0.07 ind:fut:3p; +émoussèrent émousser ver 0.61 2.64 0.00 0.07 ind:pas:3p; +émoussé émousser ver m s 0.61 2.64 0.19 0.07 par:pas; +émoussée émoussé adj f s 0.59 0.81 0.34 0.14 +émoussées émoussé adj f p 0.59 0.81 0.04 0.27 +émoussés émoussé adj m p 0.59 0.81 0.14 0.14 +émoustilla émoustiller ver 0.38 2.36 0.00 0.14 ind:pas:3s; +émoustillait émoustiller ver 0.38 2.36 0.01 0.27 ind:imp:3s; +émoustillant émoustillant adj m s 0.23 0.14 0.11 0.00 +émoustillante émoustillant adj f s 0.23 0.14 0.12 0.14 +émoustiller émoustiller ver 0.38 2.36 0.16 0.41 inf; +émoustillera émoustiller ver 0.38 2.36 0.00 0.07 ind:fut:3s; +émoustillé émoustiller ver m s 0.38 2.36 0.07 0.68 par:pas; +émoustillée émoustiller ver f s 0.38 2.36 0.06 0.41 par:pas; +émoustillées émoustiller ver f p 0.38 2.36 0.00 0.07 par:pas; +émoustillés émoustiller ver m p 0.38 2.36 0.04 0.34 par:pas; +émouvaient émouvoir ver 9.46 37.43 0.01 0.27 ind:imp:3p; +émouvais émouvoir ver 9.46 37.43 0.10 0.34 ind:imp:1s;ind:imp:2s; +émouvait émouvoir ver 9.46 37.43 0.03 2.64 ind:imp:3s; +émouvant émouvant adj m s 5.21 14.05 3.51 4.80 +émouvante émouvant adj f s 5.21 14.05 1.16 6.08 +émouvantes émouvant adj f p 5.21 14.05 0.28 1.55 +émouvants émouvant adj m p 5.21 14.05 0.26 1.62 +émouvez émouvoir ver 9.46 37.43 0.00 0.07 imp:pre:2p; +émouvoir émouvoir ver 9.46 37.43 1.29 6.08 inf; +émouvrait émouvoir ver 9.46 37.43 0.01 0.14 cnd:pre:3s; +émèchent émécher ver 0.40 0.27 0.00 0.07 ind:pre:3p; +ému émouvoir ver m s 9.46 37.43 3.69 10.47 par:pas; +éméché émécher ver m s 0.40 0.27 0.26 0.00 par:pas; +éméchée émécher ver f s 0.40 0.27 0.05 0.07 par:pas; +éméchées émécher ver f p 0.40 0.27 0.02 0.07 par:pas; +éméchés éméché adj m p 0.27 1.82 0.09 0.95 +émue ému adj f s 4.89 12.09 1.92 3.78 +émues ému adj f p 4.89 12.09 0.14 0.54 +émulation émulation nom f s 0.07 2.30 0.07 2.23 +émulations émulation nom f p 0.07 2.30 0.00 0.07 +émule émule nom s 0.24 0.95 0.17 0.88 +émuler émuler ver 0.01 0.00 0.01 0.00 inf; +émules émule nom p 0.24 0.95 0.07 0.07 +émulsifiant émulsifiant adj m s 0.01 0.00 0.01 0.00 +émulsifier émulsifier ver 0.01 0.00 0.01 0.00 inf; +émulsion émulsion nom f s 0.24 0.07 0.24 0.07 +émulsionné émulsionner ver m s 0.00 0.07 0.00 0.07 par:pas; +émulsive émulsif adj f s 0.01 0.00 0.01 0.00 +émurent émouvoir ver 9.46 37.43 0.00 0.34 ind:pas:3p; +émérite émérite adj s 0.92 0.20 0.80 0.14 +émérites émérite adj p 0.92 0.20 0.12 0.07 +émus ému adj m p 4.89 12.09 0.52 0.88 +émussent émouvoir ver 9.46 37.43 0.00 0.07 sub:imp:3p; +émut émouvoir ver 9.46 37.43 0.40 3.24 ind:pas:3s; +émétine émétine nom f s 0.01 0.00 0.01 0.00 +émétique émétique adj m s 0.27 0.00 0.27 0.00 +un un art_ind m s 12087.62 13550.68 12087.62 13550.68 +unît unir ver 25.15 32.16 0.00 0.07 sub:imp:3s; +énamourant énamourer ver 0.00 0.41 0.00 0.07 par:pre; +énamouré énamouré adj m s 0.06 0.54 0.04 0.14 +énamourée énamouré adj f s 0.06 0.54 0.00 0.14 +énamourées énamouré adj f p 0.06 0.54 0.01 0.00 +énamourés énamouré adj m p 0.06 0.54 0.01 0.27 +unanime unanime adj s 2.18 6.08 1.77 4.66 +unanimement unanimement adv 0.06 1.35 0.06 1.35 +unanimes unanime adj p 2.18 6.08 0.41 1.42 +unanimisme unanimisme nom m s 0.00 0.07 0.00 0.07 +unanimité unanimité nom f s 2.63 3.78 2.63 3.78 +énarque énarque nom s 0.15 0.34 0.15 0.20 +énarques énarque nom p 0.15 0.34 0.00 0.14 +unau unau nom m s 0.01 0.00 0.01 0.00 +underground underground adj 0.89 0.34 0.89 0.34 +une une art_ind f s 7907.85 9587.97 7907.85 9587.97 +énergie énergie nom f s 43.06 29.66 42.18 27.64 +énergies énergie nom f p 43.06 29.66 0.88 2.03 +énergique énergique adj s 1.77 5.47 1.37 3.99 +énergiquement énergiquement adv 0.35 3.65 0.35 3.65 +énergiques énergique adj p 1.77 5.47 0.40 1.49 +énergisant énergisant adj m s 0.08 0.00 0.01 0.00 +énergisant énergisant nom m s 0.01 0.00 0.01 0.00 +énergisante énergisant adj f s 0.08 0.00 0.07 0.00 +énergisée énergisé adj f s 0.01 0.00 0.01 0.00 +énergumène énergumène nom s 0.68 1.49 0.51 0.95 +énergumènes énergumène nom p 0.68 1.49 0.18 0.54 +énergétique énergétique adj s 2.50 0.61 1.75 0.27 +énergétiques énergétique adj p 2.50 0.61 0.74 0.34 +énerva énerver ver 53.83 23.72 0.10 2.16 ind:pas:3s; +énervai énerver ver 53.83 23.72 0.00 0.07 ind:pas:1s; +énervaient énerver ver 53.83 23.72 0.03 0.81 ind:imp:3p; +énervais énerver ver 53.83 23.72 0.16 0.14 ind:imp:1s;ind:imp:2s; +énervait énerver ver 53.83 23.72 0.98 4.53 ind:imp:3s; +énervant énervant adj m s 1.98 1.89 1.27 0.74 +énervante énervant adj f s 1.98 1.89 0.57 0.88 +énervantes énervant adj f p 1.98 1.89 0.04 0.20 +énervants énervant adj m p 1.98 1.89 0.11 0.07 +énerve énerver ver 53.83 23.72 21.70 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +énervement énervement nom m s 0.34 3.58 0.34 3.38 +énervements énervement nom m p 0.34 3.58 0.00 0.20 +énervent énerver ver 53.83 23.72 1.27 0.61 ind:pre:3p; +énerver énerver ver 53.83 23.72 10.36 3.38 inf; +énervera énerver ver 53.83 23.72 0.09 0.00 ind:fut:3s; +énerverai énerver ver 53.83 23.72 0.05 0.00 ind:fut:1s; +énerveraient énerver ver 53.83 23.72 0.01 0.00 cnd:pre:3p; +énerverait énerver ver 53.83 23.72 0.70 0.00 cnd:pre:3s; +énerveront énerver ver 53.83 23.72 0.01 0.00 ind:fut:3p; +énerves énerver ver 53.83 23.72 4.36 0.74 ind:pre:2s; +énervez énerver ver 53.83 23.72 2.83 0.68 imp:pre:2p;ind:pre:2p; +énerviez énerver ver 53.83 23.72 0.07 0.00 ind:imp:2p; +énervions énerver ver 53.83 23.72 0.01 0.00 ind:imp:1p; +énervâmes énerver ver 53.83 23.72 0.00 0.07 ind:pas:1p; +énervons énerver ver 53.83 23.72 0.17 0.00 imp:pre:1p;ind:pre:1p; +énervé énerver ver m s 53.83 23.72 7.03 1.69 par:pas; +énervée énerver ver f s 53.83 23.72 3.00 1.08 par:pas; +énervées énerver ver f p 53.83 23.72 0.10 0.14 par:pas; +énervés énerver ver m p 53.83 23.72 0.55 0.68 par:pas; +unes unes pro_ind f p 3.42 19.59 3.42 19.59 +unetelle unetelle nom m s 0.01 0.61 0.01 0.61 +unguéal unguéal adj m s 0.01 0.00 0.01 0.00 +uni unir ver m s 25.15 32.16 1.57 2.77 par:pas; +uniate uniate adj m s 0.00 0.07 0.00 0.07 +unicellulaire unicellulaire adj m s 0.05 0.00 0.05 0.00 +unicité unicité nom f s 0.19 0.41 0.19 0.41 +unicorne unicorne adj s 0.01 0.00 0.01 0.00 +unidimensionnel unidimensionnel adj m s 0.16 0.07 0.14 0.07 +unidimensionnelle unidimensionnel adj f s 0.16 0.07 0.01 0.00 +unidirectionnel unidirectionnel adj m s 0.06 0.14 0.03 0.14 +unidirectionnelle unidirectionnel adj f s 0.06 0.14 0.02 0.00 +unidirectionnels unidirectionnel adj m p 0.06 0.14 0.01 0.00 +unie uni adj f s 10.08 13.78 1.17 2.57 +unies uni adj f p 10.08 13.78 3.46 4.73 +unification unification nom f s 1.50 0.34 1.50 0.34 +unificatrice unificateur adj f s 0.03 0.00 0.03 0.00 +unifie unifier ver 1.51 1.42 0.00 0.14 ind:pre:3s; +unifient unifier ver 1.51 1.42 0.04 0.00 ind:pre:3p; +unifier unifier ver 1.51 1.42 0.56 0.54 inf; +unifiez unifier ver 1.51 1.42 0.02 0.00 imp:pre:2p; +unifié unifier ver m s 1.51 1.42 0.40 0.41 par:pas; +unifiée unifier ver f s 1.51 1.42 0.20 0.14 par:pas; +unifiées unifier ver f p 1.51 1.42 0.00 0.14 par:pas; +unifiés unifier ver m p 1.51 1.42 0.30 0.07 par:pas; +uniforme uniforme nom m s 31.01 50.14 24.92 38.72 +uniformes uniforme nom m p 31.01 50.14 6.09 11.42 +uniformisait uniformiser ver 0.10 0.54 0.00 0.14 ind:imp:3s; +uniformisation uniformisation nom f s 0.01 0.27 0.01 0.27 +uniformise uniformiser ver 0.10 0.54 0.10 0.20 ind:pre:3s; +uniformiser uniformiser ver 0.10 0.54 0.00 0.07 inf; +uniformisée uniformiser ver f s 0.10 0.54 0.00 0.07 par:pas; +uniformisés uniformiser ver m p 0.10 0.54 0.00 0.07 par:pas; +uniformité uniformité nom f s 0.07 1.35 0.07 1.35 +uniformément uniformément adv 0.06 4.05 0.06 4.05 +énigmatique énigmatique adj s 0.82 8.11 0.80 5.88 +énigmatiquement énigmatiquement adv 0.00 0.47 0.00 0.47 +énigmatiques énigmatique adj p 0.82 8.11 0.02 2.23 +énigme énigme nom f s 7.29 10.88 5.45 8.58 +énigmes énigme nom f p 7.29 10.88 1.85 2.30 +unijambiste unijambiste adj s 0.54 0.20 0.53 0.20 +unijambistes unijambiste nom p 0.22 0.20 0.01 0.07 +unilatéral unilatéral adj m s 0.43 0.68 0.22 0.20 +unilatérale unilatéral adj f s 0.43 0.68 0.16 0.27 +unilatéralement unilatéralement adv 0.10 0.41 0.10 0.41 +unilatérales unilatéral adj f p 0.43 0.68 0.04 0.20 +unilatéralité unilatéralité nom f s 0.03 0.00 0.03 0.00 +unilatéraux unilatéral adj m p 0.43 0.68 0.01 0.00 +uniment uniment adv 0.00 0.47 0.00 0.47 +uninominal uninominal adj m s 0.00 0.27 0.00 0.20 +uninominales uninominal adj f p 0.00 0.27 0.00 0.07 +union union nom f s 19.14 30.07 18.10 29.19 +unioniste unioniste adj s 0.07 0.07 0.07 0.07 +unionistes unioniste nom p 0.01 0.07 0.00 0.07 +unions union nom f p 19.14 30.07 1.04 0.88 +uniprix uniprix nom m 0.00 0.61 0.00 0.61 +unique unique adj s 45.43 70.14 43.12 66.76 +uniquement uniquement adv 21.86 24.66 21.86 24.66 +uniques unique adj p 45.43 70.14 2.31 3.38 +unir unir ver 25.15 32.16 5.84 5.14 inf; +unira unir ver 25.15 32.16 0.45 0.20 ind:fut:3s; +unirai unir ver 25.15 32.16 0.16 0.00 ind:fut:1s; +uniraient unir ver 25.15 32.16 0.00 0.14 cnd:pre:3p; +unirait unir ver 25.15 32.16 0.06 0.20 cnd:pre:3s; +unirent unir ver 25.15 32.16 0.17 0.34 ind:pas:3p; +unirez unir ver 25.15 32.16 0.01 0.00 ind:fut:2p; +unirions unir ver 25.15 32.16 0.14 0.00 cnd:pre:1p; +unirons unir ver 25.15 32.16 0.27 0.00 ind:fut:1p; +uniront unir ver 25.15 32.16 0.21 0.00 ind:fut:3p; +unis unir ver m p 25.15 32.16 6.63 4.53 imp:pre:2s;ind:pre:1s;par:pas; +unisexe unisexe adj s 0.12 0.14 0.10 0.14 +unisexes unisexe adj f p 0.12 0.14 0.01 0.00 +unissaient unir ver 25.15 32.16 0.29 2.57 ind:imp:3p; +unissais unir ver 25.15 32.16 0.00 0.07 ind:imp:1s; +unissait unir ver 25.15 32.16 0.34 5.20 ind:imp:3s; +unissant unir ver 25.15 32.16 0.14 1.28 par:pre; +unisse unir ver 25.15 32.16 1.04 0.07 sub:pre:1s;sub:pre:3s; +unissent unir ver 25.15 32.16 1.23 2.09 ind:pre:3p; +unisses unir ver 25.15 32.16 0.00 0.07 sub:pre:2s; +unissez unir ver 25.15 32.16 1.43 0.47 imp:pre:2p;ind:pre:2p; +unissiez unir ver 25.15 32.16 0.00 0.07 ind:imp:2p; +unissions unir ver 25.15 32.16 0.02 0.14 ind:imp:1p; +unisson unisson nom m s 0.81 4.53 0.81 4.53 +unissons unir ver 25.15 32.16 0.81 0.20 imp:pre:1p;ind:pre:1p; +unit unir ver 25.15 32.16 2.72 3.51 ind:pre:3s;ind:pas:3s; +unitaire unitaire adj s 0.04 0.14 0.04 0.14 +unitarien unitarien adj m s 0.04 0.00 0.02 0.00 +unitarienne unitarien adj f s 0.04 0.00 0.02 0.00 +énième énième adj s 0.56 1.55 0.56 1.55 +unième unième adj s 0.17 0.81 0.17 0.81 +unité unité nom f s 43.46 40.41 29.29 25.07 +unités unité nom f p 43.46 40.41 14.18 15.34 +univalves univalve adj p 0.00 0.07 0.00 0.07 +univers univers nom m 34.21 58.45 34.21 58.45 +universal universal nom m s 1.24 0.00 1.24 0.00 +universalisais universaliser ver 0.01 0.07 0.00 0.07 ind:imp:1s; +universalise universaliser ver 0.01 0.07 0.01 0.00 ind:pre:3s; +universalisme universalisme nom m s 0.00 0.14 0.00 0.14 +universaliste universaliste nom s 0.01 0.00 0.01 0.00 +universalité universalité nom f s 0.00 0.27 0.00 0.27 +universel universel adj m s 5.09 15.14 2.51 5.95 +universelle universel adj f s 5.09 15.14 2.34 8.51 +universellement universellement adv 0.26 0.41 0.26 0.41 +universelles universel adj f p 5.09 15.14 0.18 0.54 +universels universel adj m p 5.09 15.14 0.06 0.14 +universitaire universitaire adj s 3.58 3.92 2.72 2.50 +universitaires universitaire adj p 3.58 3.92 0.85 1.42 +université université nom f s 40.64 15.00 38.22 13.24 +universités université nom f p 40.64 15.00 2.42 1.76 +univoque univoque adj m s 0.25 0.20 0.25 0.20 +énonce énoncer ver 1.52 4.86 0.48 0.34 ind:pre:1s;ind:pre:3s; +énoncent énoncer ver 1.52 4.86 0.01 0.14 ind:pre:3p; +énoncer énoncer ver 1.52 4.86 0.30 1.49 inf; +énonceront énoncer ver 1.52 4.86 0.34 0.00 ind:fut:3p; +énonciateurs énonciateur nom m p 0.00 0.07 0.00 0.07 +énonciation énonciation nom f s 0.04 0.07 0.04 0.07 +énoncé énoncé nom m s 0.64 1.76 0.49 1.55 +énoncée énoncer ver f s 1.52 4.86 0.12 0.14 par:pas; +énoncées énoncer ver f p 1.52 4.86 0.14 0.14 par:pas; +énoncés énoncé nom m p 0.64 1.76 0.14 0.20 +énonça énoncer ver 1.52 4.86 0.00 0.74 ind:pas:3s; +énonçai énoncer ver 1.52 4.86 0.00 0.20 ind:pas:1s; +énonçaient énoncer ver 1.52 4.86 0.00 0.07 ind:imp:3p; +énonçais énoncer ver 1.52 4.86 0.00 0.07 ind:imp:1s; +énonçait énoncer ver 1.52 4.86 0.01 0.74 ind:imp:3s; +énonçant énoncer ver 1.52 4.86 0.00 0.34 par:pre; +énorme énorme adj s 49.27 120.00 39.73 81.22 +énormes énorme adj p 49.27 120.00 9.55 38.78 +énormité énormité nom f s 0.38 3.04 0.16 2.43 +énormités énormité nom f p 0.38 3.04 0.22 0.61 +énormément énormément adv 12.27 8.38 12.27 8.38 +uns uns pro_ind m p 15.74 62.91 15.74 62.91 +untel untel nom m s 1.03 2.77 1.03 2.77 +énucléation énucléation nom f s 0.01 0.07 0.01 0.07 +énucléer énucléer ver 0.16 0.07 0.11 0.00 inf; +énucléé énucléer ver m s 0.16 0.07 0.03 0.00 par:pas; +énucléés énucléer ver m p 0.16 0.07 0.02 0.07 par:pas; +énumère énumérer ver 1.32 7.30 0.51 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +énumèrent énumérer ver 1.32 7.30 0.04 0.14 ind:pre:3p; +énumères énumérer ver 1.32 7.30 0.14 0.07 ind:pre:2s; +énuméra énumérer ver 1.32 7.30 0.01 0.81 ind:pas:3s; +énumérai énumérer ver 1.32 7.30 0.00 0.14 ind:pas:1s; +énuméraient énumérer ver 1.32 7.30 0.00 0.14 ind:imp:3p; +énumérais énumérer ver 1.32 7.30 0.00 0.27 ind:imp:1s; +énumérait énumérer ver 1.32 7.30 0.03 1.08 ind:imp:3s; +énumérant énumérer ver 1.32 7.30 0.02 0.68 par:pre; +énumération énumération nom f s 0.20 2.16 0.20 1.96 +énumérations énumération nom f p 0.20 2.16 0.00 0.20 +énumérative énumératif adj f s 0.00 0.07 0.00 0.07 +énumérer énumérer ver 1.32 7.30 0.46 2.43 inf; +énumérerai énumérer ver 1.32 7.30 0.00 0.07 ind:fut:1s; +énumérerais énumérer ver 1.32 7.30 0.00 0.07 cnd:pre:1s; +énumérez énumérer ver 1.32 7.30 0.01 0.07 imp:pre:2p;ind:pre:2p; +énumérons énumérer ver 1.32 7.30 0.01 0.00 ind:pre:1p; +énuméré énumérer ver m s 1.32 7.30 0.07 0.41 par:pas; +énumérées énumérer ver f p 1.32 7.30 0.02 0.27 par:pas; +énurésie énurésie nom f s 0.02 0.07 0.02 0.07 +énurétique énurétique nom s 0.01 0.00 0.01 0.00 +éocène éocène nom m s 0.01 0.00 0.01 0.00 +éolien éolien nom m s 0.04 1.76 0.00 1.15 +éolienne éolien nom f s 0.04 1.76 0.04 0.47 +éoliennes éolienne nom f p 0.10 0.00 0.10 0.00 +éoliens éolien adj m p 0.00 1.15 0.00 0.07 +éon éon nom m s 0.07 0.00 0.07 0.00 +éonisme éonisme nom m s 0.00 0.07 0.00 0.07 +éosine éosine nom f s 0.01 0.00 0.01 0.00 +épître épître nom f s 0.40 1.22 0.18 0.88 +épîtres épître nom f p 0.40 1.22 0.21 0.34 +épagneul épagneul nom m s 0.27 1.55 0.26 1.49 +épagneule épagneul nom f s 0.27 1.55 0.01 0.07 +épagomènes épagomène adj m p 0.00 0.14 0.00 0.14 +épais épais adj m 10.19 90.61 6.08 41.01 +épaisse épais adj f s 10.19 90.61 3.28 35.88 +épaissement épaissement adv 0.00 0.61 0.00 0.61 +épaisses épais adj f p 10.19 90.61 0.82 13.72 +épaisseur épaisseur nom f s 2.16 25.34 1.89 21.89 +épaisseurs épaisseur nom f p 2.16 25.34 0.27 3.45 +épaissi épaissir ver m s 1.13 9.53 0.16 1.35 par:pas; +épaissie épaissir ver f s 1.13 9.53 0.04 1.15 par:pas; +épaissies épaissir ver f p 1.13 9.53 0.00 0.14 par:pas; +épaissir épaissir ver 1.13 9.53 0.28 1.49 inf; +épaissirais épaissir ver 1.13 9.53 0.00 0.07 cnd:pre:1s; +épaissirent épaissir ver 1.13 9.53 0.00 0.07 ind:pas:3p; +épaissis épaissir ver m p 1.13 9.53 0.02 0.27 imp:pre:2s;par:pas; +épaississaient épaissir ver 1.13 9.53 0.00 0.54 ind:imp:3p; +épaississait épaissir ver 1.13 9.53 0.02 2.09 ind:imp:3s; +épaississant épaissir ver 1.13 9.53 0.00 0.47 par:pre; +épaississe épaissir ver 1.13 9.53 0.00 0.07 sub:pre:3s; +épaississement épaississement nom m s 0.00 0.20 0.00 0.20 +épaississent épaissir ver 1.13 9.53 0.02 0.41 ind:pre:3p; +épaissit épaissir ver 1.13 9.53 0.59 1.42 ind:pre:3s;ind:pas:3s; +épancha épancher ver 0.49 1.89 0.00 0.14 ind:pas:3s; +épanchaient épancher ver 0.49 1.89 0.00 0.07 ind:imp:3p; +épanchais épancher ver 0.49 1.89 0.01 0.07 ind:imp:1s; +épanchait épancher ver 0.49 1.89 0.00 0.20 ind:imp:3s; +épanchant épancher ver 0.49 1.89 0.00 0.14 par:pre; +épanche épancher ver 0.49 1.89 0.02 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épanchement épanchement nom m s 0.14 1.82 0.10 1.08 +épanchements épanchement nom m p 0.14 1.82 0.04 0.74 +épanchent épancher ver 0.49 1.89 0.01 0.20 ind:pre:3p; +épancher épancher ver 0.49 1.89 0.37 0.68 inf; +épancherait épancher ver 0.49 1.89 0.00 0.07 cnd:pre:3s; +épanché épancher ver m s 0.49 1.89 0.07 0.14 par:pas; +épand épandre ver 0.01 1.96 0.00 0.54 ind:pre:3s; +épandage épandage nom m s 0.11 0.47 0.11 0.27 +épandages épandage nom m p 0.11 0.47 0.00 0.20 +épandaient épandre ver 0.01 1.96 0.00 0.07 ind:imp:3p; +épandait épandre ver 0.01 1.96 0.00 0.27 ind:imp:3s; +épandant épandre ver 0.01 1.96 0.00 0.20 par:pre; +épandent épandre ver 0.01 1.96 0.00 0.07 ind:pre:3p; +épandeur épandeur nom m s 0.02 0.00 0.02 0.00 +épandez épandre ver 0.01 1.96 0.01 0.00 imp:pre:2p; +épandre épandre ver 0.01 1.96 0.00 0.41 inf; +épands épandre ver 0.01 1.96 0.00 0.07 imp:pre:2s; +épandu épandre ver m s 0.01 1.96 0.00 0.14 par:pas; +épandue épandre ver f s 0.01 1.96 0.00 0.07 par:pas; +épandues épandre ver f p 0.01 1.96 0.00 0.14 par:pas; +upanisads upanisad nom f p 0.00 0.07 0.00 0.07 +upanishad upanishad nom m 0.02 0.07 0.02 0.07 +épanouît épanouir ver 4.51 14.66 0.00 0.07 sub:imp:3s; +épanoui épanouir ver m s 4.51 14.66 0.26 1.28 par:pas; +épanouie épanouir ver f s 4.51 14.66 0.65 1.42 par:pas; +épanouies épanoui adj f p 0.86 5.54 0.03 1.01 +épanouir épanouir ver 4.51 14.66 1.48 3.72 inf; +épanouira épanouir ver 4.51 14.66 0.41 0.07 ind:fut:3s; +épanouirait épanouir ver 4.51 14.66 0.03 0.14 cnd:pre:3s; +épanouirent épanouir ver 4.51 14.66 0.12 0.20 ind:pas:3p; +épanouis épanoui adj m p 0.86 5.54 0.18 0.41 +épanouissaient épanouir ver 4.51 14.66 0.00 1.01 ind:imp:3p; +épanouissais épanouir ver 4.51 14.66 0.01 0.07 ind:imp:1s; +épanouissait épanouir ver 4.51 14.66 0.03 1.69 ind:imp:3s; +épanouissant épanouir ver 4.51 14.66 0.14 0.41 par:pre; +épanouissante épanouissant adj f s 0.38 0.07 0.35 0.00 +épanouissantes épanouissant adj f p 0.38 0.07 0.00 0.07 +épanouisse épanouir ver 4.51 14.66 0.04 0.00 sub:pre:3s; +épanouissement épanouissement nom m s 0.62 3.72 0.62 3.65 +épanouissements épanouissement nom m p 0.62 3.72 0.00 0.07 +épanouissent épanouir ver 4.51 14.66 0.28 1.01 ind:pre:3p; +épanouisses épanouir ver 4.51 14.66 0.15 0.00 sub:pre:2s; +épanouit épanouir ver 4.51 14.66 0.75 3.11 ind:pre:3s;ind:pas:3s; +épargna épargner ver 26.39 25.95 0.12 1.35 ind:pas:3s; +épargnaient épargner ver 26.39 25.95 0.01 0.74 ind:imp:3p; +épargnais épargner ver 26.39 25.95 0.04 0.20 ind:imp:1s;ind:imp:2s; +épargnait épargner ver 26.39 25.95 0.17 0.81 ind:imp:3s; +épargnant épargner ver 26.39 25.95 0.10 0.95 par:pre; +épargnantes épargnant adj f p 0.02 0.00 0.01 0.00 +épargnants épargnant nom m p 0.17 0.61 0.14 0.14 +épargne épargner ver 26.39 25.95 6.17 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épargnent épargner ver 26.39 25.95 0.09 0.27 ind:pre:3p; +épargner épargner ver 26.39 25.95 6.90 7.64 ind:pre:2p;inf; +épargnera épargner ver 26.39 25.95 1.07 0.41 ind:fut:3s; +épargnerai épargner ver 26.39 25.95 0.55 0.00 ind:fut:1s; +épargnerais épargner ver 26.39 25.95 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +épargnerait épargner ver 26.39 25.95 0.16 0.41 cnd:pre:3s; +épargneras épargner ver 26.39 25.95 0.04 0.00 ind:fut:2s; +épargnerez épargner ver 26.39 25.95 0.19 0.07 ind:fut:2p; +épargneriez épargner ver 26.39 25.95 0.02 0.00 cnd:pre:2p; +épargnerons épargner ver 26.39 25.95 0.07 0.07 ind:fut:1p; +épargneront épargner ver 26.39 25.95 0.23 0.00 ind:fut:3p; +épargnes épargner ver 26.39 25.95 0.10 0.07 ind:pre:2s; +épargnez épargner ver 26.39 25.95 2.78 0.74 imp:pre:2p;ind:pre:2p; +épargniez épargner ver 26.39 25.95 0.04 0.00 ind:imp:2p; +épargnions épargner ver 26.39 25.95 0.00 0.14 ind:imp:1p; +épargnons épargner ver 26.39 25.95 0.02 0.00 imp:pre:1p; +épargnât épargner ver 26.39 25.95 0.00 0.27 sub:imp:3s; +épargnèrent épargner ver 26.39 25.95 0.02 0.14 ind:pas:3p; +épargné épargner ver m s 26.39 25.95 5.04 5.34 par:pas; +épargnée épargner ver f s 26.39 25.95 1.63 1.76 par:pas; +épargnées épargner ver f p 26.39 25.95 0.11 0.81 par:pas; +épargnés épargner ver m p 26.39 25.95 0.63 1.08 par:pas; +éparpilla éparpiller ver 2.16 13.51 0.00 0.68 ind:pas:3s; +éparpillaient éparpiller ver 2.16 13.51 0.00 0.68 ind:imp:3p; +éparpillait éparpiller ver 2.16 13.51 0.01 1.08 ind:imp:3s; +éparpillant éparpiller ver 2.16 13.51 0.11 0.81 par:pre; +éparpille éparpiller ver 2.16 13.51 0.25 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éparpillement éparpillement nom m s 0.01 0.88 0.01 0.88 +éparpillent éparpiller ver 2.16 13.51 0.01 0.74 ind:pre:3p; +éparpiller éparpiller ver 2.16 13.51 0.34 1.55 inf; +éparpillera éparpiller ver 2.16 13.51 0.02 0.00 ind:fut:3s; +éparpilleraient éparpiller ver 2.16 13.51 0.00 0.07 cnd:pre:3p; +éparpillez éparpiller ver 2.16 13.51 0.06 0.00 imp:pre:2p;ind:pre:2p; +éparpillons éparpiller ver 2.16 13.51 0.03 0.00 ind:pre:1p; +éparpillèrent éparpiller ver 2.16 13.51 0.00 0.74 ind:pas:3p; +éparpillé éparpiller ver m s 2.16 13.51 0.40 0.81 par:pas; +éparpillée éparpillé adj f s 0.40 2.77 0.14 0.41 +éparpillées éparpiller ver f p 2.16 13.51 0.26 1.42 par:pas; +éparpillés éparpiller ver m p 2.16 13.51 0.57 2.57 par:pas; +épars épars adj m 0.46 11.15 0.32 7.23 +éparse épars adj f s 0.46 11.15 0.00 0.95 +éparses épars adj f p 0.46 11.15 0.14 2.97 +épart épart nom m s 0.01 0.00 0.01 0.00 +upas upas adv 0.01 0.00 0.01 0.00 +épastrouillant épastrouillant adj m s 0.00 0.07 0.00 0.07 +épastrouillera épastrouiller ver 0.00 0.07 0.00 0.07 ind:fut:3s; +épata épater ver 4.96 8.78 0.00 0.34 ind:pas:3s; +épataient épater ver 4.96 8.78 0.01 0.07 ind:imp:3p; +épatais épater ver 4.96 8.78 0.01 0.14 ind:imp:1s; +épatait épater ver 4.96 8.78 0.00 0.95 ind:imp:3s; +épatamment épatamment adv 0.00 0.27 0.00 0.27 +épatant épatant adj m s 5.99 6.82 4.11 4.86 +épatante épatant adj f s 5.99 6.82 1.31 1.28 +épatantes épatant adj f p 5.99 6.82 0.04 0.34 +épatants épatant adj m p 5.99 6.82 0.53 0.34 +épate épater ver 4.96 8.78 1.49 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épatement épatement nom m s 0.00 0.07 0.00 0.07 +épatent épater ver 4.96 8.78 0.02 0.00 ind:pre:3p; +épater épater ver 4.96 8.78 1.48 3.58 inf; +épatera épater ver 4.96 8.78 0.04 0.07 ind:fut:3s; +épaterait épater ver 4.96 8.78 0.00 0.34 cnd:pre:3s; +épateras épater ver 4.96 8.78 0.02 0.00 ind:fut:2s; +épates épater ver 4.96 8.78 0.27 0.00 ind:pre:2s; +épateur épateur adj m s 0.00 0.20 0.00 0.14 +épateurs épateur adj m p 0.00 0.20 0.00 0.07 +épatez épater ver 4.96 8.78 0.19 0.00 imp:pre:2p;ind:pre:2p; +épaté épater ver m s 4.96 8.78 0.43 1.01 par:pas; +épatée épater ver f s 4.96 8.78 0.23 0.41 par:pas; +épatés épater ver m p 4.96 8.78 0.13 0.14 par:pas; +épaula épauler ver 1.93 3.85 0.01 0.61 ind:pas:3s; +épaulaient épauler ver 1.93 3.85 0.01 0.07 ind:imp:3p; +épaulait épauler ver 1.93 3.85 0.00 0.61 ind:imp:3s; +épaulant épauler ver 1.93 3.85 0.00 0.07 par:pre; +épaulard épaulard nom m s 0.28 0.00 0.25 0.00 +épaulards épaulard nom m p 0.28 0.00 0.03 0.00 +épaule épaule nom f s 32.41 288.72 17.91 116.96 +épaulement épaulement nom m s 0.00 0.47 0.00 0.34 +épaulements épaulement nom m p 0.00 0.47 0.00 0.14 +épaulent épauler ver 1.93 3.85 0.11 0.14 ind:pre:3p; +épauler épauler ver 1.93 3.85 0.48 0.95 inf; +épauleras épauler ver 1.93 3.85 0.02 0.00 ind:fut:2s; +épaules épaule nom f p 32.41 288.72 14.50 171.76 +épaulette épaulette nom f s 0.81 2.97 0.02 0.61 +épaulettes épaulette nom f p 0.81 2.97 0.79 2.36 +épaulez épauler ver 1.93 3.85 0.31 0.00 imp:pre:2p;ind:pre:2p; +épaulière épaulière nom f s 0.01 0.20 0.00 0.07 +épaulières épaulière nom f p 0.01 0.20 0.01 0.14 +épaulèrent épauler ver 1.93 3.85 0.00 0.07 ind:pas:3p; +épaulé épauler ver m s 1.93 3.85 0.11 0.14 par:pas; +épaulée épauler ver f s 1.93 3.85 0.00 0.20 par:pas; +épaulées épauler ver f p 1.93 3.85 0.00 0.07 par:pas; +épaulés épauler ver m p 1.93 3.85 0.13 0.00 par:pas; +épave épave nom f s 7.50 12.23 6.52 6.28 +épaves épave nom f p 7.50 12.23 0.97 5.95 +update update nom f s 0.04 0.00 0.04 0.00 +updater updater ver 0.01 0.00 0.01 0.00 inf; +épeautre épeautre nom m s 0.00 0.07 0.00 0.07 +épectase épectase nom f s 0.00 0.07 0.00 0.07 +épeichette épeichette nom f s 0.00 0.07 0.00 0.07 +épeire épeire nom f s 0.00 0.07 0.00 0.07 +épela épeler ver 3.00 2.23 0.00 0.27 ind:pas:3s; +épelais épeler ver 3.00 2.23 0.01 0.00 ind:imp:1s; +épelait épeler ver 3.00 2.23 0.04 0.27 ind:imp:3s; +épelant épeler ver 3.00 2.23 0.03 0.27 par:pre; +épeler épeler ver 3.00 2.23 1.75 0.88 inf; +épelez épeler ver 3.00 2.23 0.17 0.00 imp:pre:2p;ind:pre:2p; +épeliez épeler ver 3.00 2.23 0.01 0.00 ind:imp:2p; +épelions épeler ver 3.00 2.23 0.00 0.07 ind:imp:1p; +épellation épellation nom f s 0.04 0.00 0.04 0.00 +épelle épeler ver 3.00 2.23 0.45 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épellent épeler ver 3.00 2.23 0.02 0.14 ind:pre:3p; +épellerais épeler ver 3.00 2.23 0.03 0.00 cnd:pre:1s; +épelles épeler ver 3.00 2.23 0.16 0.00 ind:pre:2s; +épelé épeler ver m s 3.00 2.23 0.32 0.14 par:pas; +épelés épeler ver m p 3.00 2.23 0.01 0.07 par:pas; +épendyme épendyme nom m s 0.01 0.00 0.01 0.00 +éperdu éperdre ver m s 0.20 3.92 0.16 2.09 par:pas; +éperdue éperdu adj f s 0.37 7.57 0.13 2.57 +éperdues éperdu adj f p 0.37 7.57 0.00 0.61 +éperdument éperdument adv 1.01 5.68 1.01 5.68 +éperdus éperdu adj m p 0.37 7.57 0.16 0.95 +éperlan éperlan nom m s 0.03 0.00 0.02 0.00 +éperlans éperlan nom m p 0.03 0.00 0.01 0.00 +éperon éperon nom m s 1.07 8.18 0.20 3.04 +éperonna éperonner ver 0.36 1.35 0.00 0.14 ind:pas:3s; +éperonnant éperonner ver 0.36 1.35 0.00 0.14 par:pre; +éperonne éperonner ver 0.36 1.35 0.12 0.07 ind:pre:3s; +éperonner éperonner ver 0.36 1.35 0.04 0.27 inf; +éperonnera éperonner ver 0.36 1.35 0.01 0.00 ind:fut:3s; +éperonnez éperonner ver 0.36 1.35 0.01 0.00 ind:pre:2p; +éperonnèrent éperonner ver 0.36 1.35 0.00 0.07 ind:pas:3p; +éperonné éperonner ver m s 0.36 1.35 0.16 0.47 par:pas; +éperonnée éperonner ver f s 0.36 1.35 0.00 0.07 par:pas; +éperonnés éperonner ver m p 0.36 1.35 0.02 0.14 par:pas; +éperons éperon nom m p 1.07 8.18 0.87 5.14 +épervier épervier nom m s 0.27 1.49 0.27 1.15 +éperviers épervier nom m p 0.27 1.49 0.00 0.34 +épervière épervière nom f s 0.00 0.14 0.00 0.07 +épervières épervière nom f p 0.00 0.14 0.00 0.07 +épeurant épeurer ver 0.02 0.47 0.02 0.00 par:pre; +épeurer épeurer ver 0.02 0.47 0.00 0.07 inf; +épeuré épeurer ver m s 0.02 0.47 0.00 0.20 par:pas; +épeurée épeurer ver f s 0.02 0.47 0.00 0.20 par:pas; +upgradée upgrader ver f s 0.14 0.00 0.14 0.00 par:pas; +éphèbe éphèbe nom m s 0.21 2.23 0.06 1.82 +éphèbes éphèbe nom m p 0.21 2.23 0.14 0.41 +éphébie éphébie nom f s 0.00 0.07 0.00 0.07 +éphédrine éphédrine nom f s 0.08 0.00 0.08 0.00 +éphélides éphélide nom f p 0.00 0.27 0.00 0.27 +éphémère éphémère adj s 1.73 9.19 1.33 5.74 +éphémèrement éphémèrement adv 0.00 0.20 0.00 0.20 +éphémères éphémère adj p 1.73 9.19 0.41 3.45 +éphéméride éphéméride nom f s 0.01 0.81 0.01 0.54 +éphémérides éphéméride nom f p 0.01 0.81 0.00 0.27 +éphésiens éphésien adj m p 0.01 0.07 0.01 0.07 +épi épi nom m s 1.61 5.81 1.09 1.82 +épia épier ver 4.92 15.88 0.00 0.20 ind:pas:3s; +épiai épier ver 4.92 15.88 0.00 0.07 ind:pas:1s; +épiaient épier ver 4.92 15.88 0.21 1.22 ind:imp:3p; +épiais épier ver 4.92 15.88 0.47 1.08 ind:imp:1s;ind:imp:2s; +épiait épier ver 4.92 15.88 0.20 2.50 ind:imp:3s; +épiant épier ver 4.92 15.88 0.14 1.96 par:pre; +épicanthus épicanthus nom m 0.01 0.00 0.01 0.00 +épice épice nom f s 3.06 6.76 1.46 1.69 +épicemard épicemard nom m s 0.00 0.41 0.00 0.14 +épicemards épicemard nom m p 0.00 0.41 0.00 0.27 +épicentre épicentre nom m s 0.53 0.34 0.53 0.34 +épicer épicer ver 1.04 1.01 0.27 0.14 inf; +épicerie épicerie nom f s 6.79 9.46 6.52 8.31 +épiceries épicerie nom f p 6.79 9.46 0.27 1.15 +épices épice nom f p 3.06 6.76 1.61 5.07 +épicier épicier nom m s 2.81 10.27 2.73 7.70 +épiciers épicier nom m p 2.81 10.27 0.08 0.61 +épicière épicier nom f s 2.81 10.27 0.01 1.89 +épicières épicier nom f p 2.81 10.27 0.00 0.07 +épicondyle épicondyle nom m s 0.01 0.00 0.01 0.00 +épicrânienne épicrânien adj f s 0.02 0.00 0.02 0.00 +épicé épicé adj m s 1.75 0.95 0.81 0.14 +épicéa épicéa nom m s 0.05 0.07 0.05 0.07 +épicée épicé adj f s 1.75 0.95 0.57 0.41 +épicées épicé adj f p 1.75 0.95 0.09 0.20 +épicurien épicurien adj m s 0.14 0.47 0.14 0.34 +épicurienne épicurien adj f s 0.14 0.47 0.00 0.14 +épicuriens épicurien adj m p 0.14 0.47 0.01 0.00 +épicurisme épicurisme nom m s 0.00 0.27 0.00 0.27 +épicés épicé adj m p 1.75 0.95 0.27 0.20 +épiderme épiderme nom m s 0.46 2.97 0.45 2.70 +épidermes épiderme nom m p 0.46 2.97 0.01 0.27 +épidermique épidermique adj s 0.20 0.54 0.17 0.41 +épidermiques épidermique adj p 0.20 0.54 0.03 0.14 +épidiascopes épidiascope nom m p 0.00 0.07 0.00 0.07 +épididyme épididyme nom m s 0.02 0.14 0.02 0.07 +épididymes épididyme nom m p 0.02 0.14 0.00 0.07 +épidémie épidémie nom f s 9.05 5.07 7.91 3.24 +épidémies épidémie nom f p 9.05 5.07 1.14 1.82 +épidémiologie épidémiologie nom f s 0.14 0.14 0.14 0.14 +épidémiologique épidémiologique adj m s 0.04 0.00 0.04 0.00 +épidémiologiste épidémiologiste nom s 0.01 0.07 0.01 0.07 +épidémique épidémique adj s 0.44 0.14 0.40 0.07 +épidémiques épidémique adj p 0.44 0.14 0.03 0.07 +épidural épidural adj m s 0.15 0.00 0.03 0.00 +épidurale épidural adj f s 0.15 0.00 0.13 0.00 +épie épier ver 4.92 15.88 1.30 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +épient épier ver 4.92 15.88 0.16 0.47 ind:pre:3p; +épier épier ver 4.92 15.88 1.52 3.85 inf; +épierais épier ver 4.92 15.88 0.00 0.20 cnd:pre:1s; +épierait épier ver 4.92 15.88 0.00 0.07 cnd:pre:3s; +épierrer épierrer ver 0.00 0.07 0.00 0.07 inf; +épies épier ver 4.92 15.88 0.03 0.07 ind:pre:2s; +épieu épieu nom m s 0.44 0.20 0.44 0.20 +épieux épieux nom m p 0.02 0.27 0.02 0.27 +épiez épier ver 4.92 15.88 0.08 0.00 imp:pre:2p;ind:pre:2p; +épigastre épigastre nom m s 0.00 0.20 0.00 0.20 +épigastrique épigastrique adj f s 0.01 0.00 0.01 0.00 +épiglotte épiglotte nom f s 0.06 0.00 0.06 0.00 +épigone épigone nom m s 0.20 0.41 0.20 0.20 +épigones épigone nom m p 0.20 0.41 0.00 0.20 +épigramme épigramme nom f s 0.01 0.41 0.01 0.20 +épigrammes épigramme nom f p 0.01 0.41 0.00 0.20 +épigraphe épigraphe nom f s 0.01 0.61 0.01 0.61 +épigraphie épigraphie nom f s 0.00 0.14 0.00 0.14 +épigraphistes épigraphiste nom p 0.00 0.07 0.00 0.07 +épilais épiler ver 2.04 2.77 0.00 0.07 ind:imp:1s; +épilait épiler ver 2.04 2.77 0.02 0.07 ind:imp:3s; +épilant épiler ver 2.04 2.77 0.02 0.07 par:pre; +épilateur épilateur nom m s 0.04 0.00 0.04 0.00 +épilation épilation nom f s 0.53 0.20 0.53 0.20 +épilatoire épilatoire adj s 0.03 0.00 0.03 0.00 +épile épiler ver 2.04 2.77 0.18 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épilent épiler ver 2.04 2.77 0.02 0.07 ind:pre:3p; +épilepsie épilepsie nom f s 1.89 1.55 1.89 1.55 +épileptiforme épileptiforme adj f s 0.01 0.00 0.01 0.00 +épileptique épileptique adj s 1.80 0.61 1.63 0.47 +épileptiques épileptique adj p 1.80 0.61 0.17 0.14 +épiler épiler ver 2.04 2.77 1.13 1.22 inf;; +épileuse épileur nom f s 0.00 0.07 0.00 0.07 +épilez épiler ver 2.04 2.77 0.05 0.00 ind:pre:2p; +épiloguaient épiloguer ver 0.06 1.15 0.00 0.07 ind:imp:3p; +épilogue épilogue nom m s 0.29 1.76 0.29 1.62 +épiloguer épiloguer ver 0.06 1.15 0.06 0.74 inf; +épilogues épilogue nom m p 0.29 1.76 0.00 0.14 +épiloguions épiloguer ver 0.06 1.15 0.00 0.14 ind:imp:1p; +épiloguèrent épiloguer ver 0.06 1.15 0.00 0.07 ind:pas:3p; +épilogué épiloguer ver m s 0.06 1.15 0.00 0.14 par:pas; +épilé épiler ver m s 2.04 2.77 0.20 0.27 par:pas; +épilée épiler ver f s 2.04 2.77 0.36 0.07 par:pas; +épilées épiler ver f p 2.04 2.77 0.03 0.27 par:pas; +épilés épiler ver m p 2.04 2.77 0.03 0.27 par:pas; +épinaie épinaie nom f s 0.01 0.00 0.01 0.00 +épinard épinard nom m s 1.91 2.23 0.12 0.41 +épinards épinard nom m p 1.91 2.23 1.79 1.82 +épine_vinette épine_vinette nom f s 0.00 0.07 0.00 0.07 +épine épine nom f s 5.81 12.43 2.52 3.92 +épines épine nom f p 5.81 12.43 3.29 8.51 +épinette épinette nom f s 0.01 0.20 0.01 0.14 +épinettes épinette nom f p 0.01 0.20 0.00 0.07 +épineuse épineux adj f s 1.01 4.39 0.50 1.28 +épineuses épineux adj f p 1.01 4.39 0.02 0.81 +épineux épineux adj m 1.01 4.39 0.50 2.30 +épingla épingler ver 2.76 6.82 0.00 0.41 ind:pas:3s; +épinglage épinglage nom m s 0.01 0.07 0.01 0.07 +épinglai épingler ver 2.76 6.82 0.00 0.07 ind:pas:1s; +épinglaient épingler ver 2.76 6.82 0.01 0.00 ind:imp:3p; +épinglait épingler ver 2.76 6.82 0.00 0.27 ind:imp:3s; +épingle épingle nom f s 5.57 18.24 3.29 8.92 +épinglent épingler ver 2.76 6.82 0.04 0.07 ind:pre:3p; +épingler épingler ver 2.76 6.82 1.35 0.88 inf; +épinglera épingler ver 2.76 6.82 0.07 0.07 ind:fut:3s; +épinglerai épingler ver 2.76 6.82 0.04 0.00 ind:fut:1s; +épingleront épingler ver 2.76 6.82 0.00 0.07 ind:fut:3p; +épingles épingle nom f p 5.57 18.24 2.28 9.32 +épinglette épinglette nom f s 0.01 0.00 0.01 0.00 +épinglez épingler ver 2.76 6.82 0.03 0.07 imp:pre:2p; +épinglons épingler ver 2.76 6.82 0.01 0.00 ind:pre:1p; +épinglèrent épingler ver 2.76 6.82 0.00 0.07 ind:pas:3p; +épinglé épingler ver m s 2.76 6.82 0.65 1.96 par:pas; +épinglée épingler ver f s 2.76 6.82 0.04 1.62 par:pas; +épinglées épingler ver f p 2.76 6.82 0.04 0.54 par:pas; +épinglés épingler ver m p 2.76 6.82 0.04 0.47 par:pas; +épiniers épinier nom m p 0.00 0.07 0.00 0.07 +épinière épinier adj f s 1.39 1.49 1.39 1.49 +épinoches épinoche nom f p 0.00 0.07 0.00 0.07 +épions épier ver 4.92 15.88 0.01 0.07 ind:pre:1p; +épiphane épiphane adj m s 0.00 0.07 0.00 0.07 +épiphanie épiphanie nom f s 0.23 0.74 0.23 0.74 +épiphénomène épiphénomène nom m s 0.00 0.07 0.00 0.07 +épiphylle épiphylle nom m s 0.00 0.14 0.00 0.07 +épiphylles épiphylle nom m p 0.00 0.14 0.00 0.07 +épiphysaire épiphysaire adj f s 0.01 0.00 0.01 0.00 +épiphyse épiphyse nom f s 0.16 0.00 0.16 0.00 +épiphyte épiphyte nom m s 0.05 0.00 0.01 0.00 +épiphytes épiphyte nom m p 0.05 0.00 0.04 0.00 +épiploon épiploon nom m s 0.00 0.14 0.00 0.07 +épiploons épiploon nom m p 0.00 0.14 0.00 0.07 +épique épique adj s 0.75 2.50 0.68 1.76 +épiques épique adj p 0.75 2.50 0.06 0.74 +épis épi nom m p 1.61 5.81 0.52 3.99 +épiscopal épiscopal adj m s 0.10 1.15 0.01 0.54 +épiscopale épiscopal adj f s 0.10 1.15 0.07 0.47 +épiscopales épiscopal adj f p 0.10 1.15 0.00 0.07 +épiscopalien épiscopalien adj m s 0.11 0.00 0.05 0.00 +épiscopalienne épiscopalien adj f s 0.11 0.00 0.06 0.00 +épiscopat épiscopat nom m s 0.00 0.27 0.00 0.27 +épiscopaux épiscopal adj m p 0.10 1.15 0.01 0.07 +épisiotomie épisiotomie nom f s 0.05 0.00 0.05 0.00 +épisode épisode nom m s 17.32 18.51 13.63 12.50 +épisodes épisode nom m p 17.32 18.51 3.69 6.01 +épisodique épisodique adj s 0.01 2.16 0.01 1.15 +épisodiquement épisodiquement adv 0.01 1.01 0.01 1.01 +épisodiques épisodique adj p 0.01 2.16 0.00 1.01 +épisser épisser ver 0.03 0.07 0.02 0.00 inf; +épissoirs épissoir nom m p 0.02 0.07 0.02 0.07 +épissé épisser ver m s 0.03 0.07 0.01 0.07 par:pas; +épissures épissure nom f p 0.01 0.14 0.01 0.14 +épistolaire épistolaire adj s 0.00 0.95 0.00 0.54 +épistolaires épistolaire adj p 0.00 0.95 0.00 0.41 +épistolier épistolier nom m s 0.01 0.27 0.01 0.20 +épistolière épistolier nom f s 0.01 0.27 0.00 0.07 +épistémologie épistémologie nom f s 0.04 0.07 0.04 0.07 +épistémologique épistémologique adj m s 0.00 0.07 0.00 0.07 +épistémologues épistémologue nom p 0.00 0.07 0.00 0.07 +épitaphe épitaphe nom f s 0.72 1.69 0.72 1.35 +épitaphes épitaphe nom f p 0.72 1.69 0.00 0.34 +épithalame épithalame nom m s 0.00 0.20 0.00 0.07 +épithalames épithalame nom m p 0.00 0.20 0.00 0.14 +épièrent épier ver 4.92 15.88 0.00 0.20 ind:pas:3p; +épithète épithète nom f s 0.17 1.96 0.04 1.08 +épithètes épithète nom f p 0.17 1.96 0.12 0.88 +épithélial épithélial adj m s 0.04 0.00 0.04 0.00 +épithéliale épithélial adj f s 0.04 0.00 0.01 0.00 +épithélioma épithélioma nom m s 0.01 0.00 0.01 0.00 +épithélium épithélium nom m s 0.19 0.00 0.19 0.00 +épitoge épitoge nom f s 0.00 0.14 0.00 0.14 +épitomé épitomé nom m s 0.00 0.07 0.00 0.07 +épié épier ver m s 4.92 15.88 0.37 1.69 par:pas; +épiée épier ver f s 4.92 15.88 0.37 0.54 par:pas; +épiées épier ver f p 4.92 15.88 0.00 0.14 par:pas; +épiés épier ver m p 4.92 15.88 0.05 0.27 par:pas; +éploie éployer ver 0.00 1.01 0.00 0.41 ind:pre:3s; +éploient éployer ver 0.00 1.01 0.00 0.07 ind:pre:3p; +éploré éploré adj m s 0.67 2.23 0.20 0.54 +éplorée éploré adj f s 0.67 2.23 0.39 0.88 +éplorées éploré adj f p 0.67 2.23 0.05 0.41 +éplorés éploré adj m p 0.67 2.23 0.03 0.41 +éployai éployer ver 0.00 1.01 0.00 0.07 ind:pas:1s; +éployait éployer ver 0.00 1.01 0.00 0.14 ind:imp:3s; +éployer éployer ver 0.00 1.01 0.00 0.07 inf; +éployé éployer ver m s 0.00 1.01 0.00 0.07 par:pas; +éployée éployer ver f s 0.00 1.01 0.00 0.07 par:pas; +éployées éployer ver f p 0.00 1.01 0.00 0.07 par:pas; +éployés éployer ver m p 0.00 1.01 0.00 0.07 par:pas; +éplucha éplucher ver 3.27 9.19 0.00 0.34 ind:pas:3s; +épluchage épluchage nom m s 0.04 0.68 0.04 0.41 +épluchages épluchage nom m p 0.04 0.68 0.00 0.27 +épluchaient éplucher ver 3.27 9.19 0.01 0.34 ind:imp:3p; +épluchais éplucher ver 3.27 9.19 0.02 0.14 ind:imp:1s; +épluchait éplucher ver 3.27 9.19 0.01 1.55 ind:imp:3s; +épluchant éplucher ver 3.27 9.19 0.05 0.81 par:pre; +épluche_légumes épluche_légumes nom m 0.01 0.00 0.01 0.00 +épluche éplucher ver 3.27 9.19 0.70 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épluchent éplucher ver 3.27 9.19 0.09 0.14 ind:pre:3p; +éplucher éplucher ver 3.27 9.19 1.32 3.04 inf; +épluchera éplucher ver 3.27 9.19 0.14 0.00 ind:fut:3s; +éplucherai éplucher ver 3.27 9.19 0.02 0.07 ind:fut:1s; +éplucherons éplucher ver 3.27 9.19 0.00 0.07 ind:fut:1p; +épluches éplucher ver 3.27 9.19 0.26 0.07 ind:pre:2s; +éplucheur éplucheur nom m s 0.09 0.20 0.09 0.07 +éplucheurs éplucheur nom m p 0.09 0.20 0.00 0.07 +éplucheuses éplucheur nom f p 0.09 0.20 0.00 0.07 +épluchez éplucher ver 3.27 9.19 0.03 0.07 imp:pre:2p;ind:pre:2p; +épluchions éplucher ver 3.27 9.19 0.00 0.07 ind:imp:1p; +épluchons éplucher ver 3.27 9.19 0.04 0.14 imp:pre:1p;ind:pre:1p; +épluchât éplucher ver 3.27 9.19 0.00 0.07 sub:imp:3s; +épluché éplucher ver m s 3.27 9.19 0.45 0.81 par:pas; +épluchée éplucher ver f s 3.27 9.19 0.01 0.14 par:pas; +épluchées éplucher ver f p 3.27 9.19 0.11 0.14 par:pas; +épluchure épluchure nom f s 0.23 3.18 0.12 0.41 +épluchures épluchure nom f p 0.23 3.18 0.10 2.77 +épluchés éplucher ver m p 3.27 9.19 0.01 0.34 par:pas; +épointé épointer ver m s 0.11 0.20 0.10 0.07 par:pas; +épointées épointer ver f p 0.11 0.20 0.00 0.07 par:pas; +épointés épointer ver m p 0.11 0.20 0.01 0.07 par:pas; +éponge éponge nom f s 7.11 14.53 6.14 10.14 +épongea éponger ver 0.97 10.20 0.00 1.62 ind:pas:3s; +épongeage épongeage nom m s 0.00 0.07 0.00 0.07 +épongeaient éponger ver 0.97 10.20 0.00 0.14 ind:imp:3p; +épongeais éponger ver 0.97 10.20 0.00 0.07 ind:imp:1s; +épongeait éponger ver 0.97 10.20 0.00 1.35 ind:imp:3s; +épongeant éponger ver 0.97 10.20 0.00 1.01 par:pre; +épongent éponger ver 0.97 10.20 0.00 0.14 ind:pre:3p; +épongeons éponger ver 0.97 10.20 0.00 0.07 imp:pre:1p; +éponger éponger ver 0.97 10.20 0.51 2.97 inf; +éponges éponge nom f p 7.11 14.53 0.97 4.39 +épongez éponger ver 0.97 10.20 0.01 0.00 ind:pre:2p; +épongiez éponger ver 0.97 10.20 0.00 0.07 ind:imp:2p; +épongèrent éponger ver 0.97 10.20 0.00 0.07 ind:pas:3p; +épongé éponger ver m s 0.97 10.20 0.07 0.34 par:pas; +épongée éponger ver f s 0.97 10.20 0.02 0.27 par:pas; +épongés éponger ver m p 0.97 10.20 0.00 0.14 par:pas; +éponyme éponyme adj s 0.00 0.07 0.00 0.07 +épopée épopée nom f s 1.20 4.73 1.13 4.19 +épopées épopée nom f p 1.20 4.73 0.07 0.54 +époque époque nom f s 68.44 138.51 67.23 132.70 +époques époque nom f p 68.44 138.51 1.21 5.81 +épouillage épouillage nom m s 0.01 0.07 0.01 0.07 +épouillaient épouiller ver 0.50 1.08 0.00 0.14 ind:imp:3p; +épouillait épouiller ver 0.50 1.08 0.03 0.34 ind:imp:3s; +épouille épouiller ver 0.50 1.08 0.14 0.07 ind:pre:1s;ind:pre:3s; +épouillent épouiller ver 0.50 1.08 0.03 0.00 ind:pre:3p; +épouiller épouiller ver 0.50 1.08 0.29 0.41 inf; +épouillé épouiller ver m s 0.50 1.08 0.00 0.07 par:pas; +épouillés épouiller ver m p 0.50 1.08 0.02 0.07 par:pas; +époumonaient époumoner ver 0.09 0.88 0.01 0.00 ind:imp:3p; +époumonait époumoner ver 0.09 0.88 0.00 0.20 ind:imp:3s; +époumonant époumoner ver 0.09 0.88 0.02 0.14 par:pre; +époumone époumoner ver 0.09 0.88 0.02 0.20 imp:pre:2s;ind:pre:3s; +époumoner époumoner ver 0.09 0.88 0.04 0.14 inf; +époumonèrent époumoner ver 0.09 0.88 0.00 0.07 ind:pas:3p; +époumonés époumoner ver m p 0.09 0.88 0.00 0.14 par:pas; +épousa épouser ver 118.78 59.26 0.88 2.09 ind:pas:3s; +épousable épousable adj s 0.00 0.07 0.00 0.07 +épousai épouser ver 118.78 59.26 0.02 0.14 ind:pas:1s; +épousaient épouser ver 118.78 59.26 0.14 0.68 ind:imp:3p; +épousailles épousailles nom f p 0.29 0.61 0.29 0.61 +épousais épouser ver 118.78 59.26 1.01 0.20 ind:imp:1s;ind:imp:2s; +épousait épouser ver 118.78 59.26 0.65 4.46 ind:imp:3s; +épousant épouser ver 118.78 59.26 0.87 3.18 par:pre; +épouse époux nom f s 61.54 46.62 41.98 24.26 +épousent épouser ver 118.78 59.26 0.52 0.47 ind:pre:3p; +épouser épouser ver 118.78 59.26 57.87 20.20 inf;; +épousera épouser ver 118.78 59.26 1.75 1.01 ind:fut:3s; +épouserai épouser ver 118.78 59.26 4.25 0.68 ind:fut:1s; +épouseraient épouser ver 118.78 59.26 0.01 0.34 cnd:pre:3p; +épouserais épouser ver 118.78 59.26 1.81 0.74 cnd:pre:1s;cnd:pre:2s; +épouserait épouser ver 118.78 59.26 1.78 0.88 cnd:pre:3s; +épouseras épouser ver 118.78 59.26 1.75 0.34 ind:fut:2s; +épouserez épouser ver 118.78 59.26 0.54 0.07 ind:fut:2p; +épouseriez épouser ver 118.78 59.26 0.17 0.14 cnd:pre:2p; +épouserons épouser ver 118.78 59.26 0.12 0.00 ind:fut:1p; +épouseront épouser ver 118.78 59.26 0.03 0.14 ind:fut:3p; +épouses épouse nom f p 3.80 0.00 3.80 0.00 +épouseur épouseur nom m s 0.40 0.07 0.40 0.00 +épouseurs épouseur nom m p 0.40 0.07 0.00 0.07 +épousez épouser ver 118.78 59.26 1.31 0.27 imp:pre:2p;ind:pre:2p; +épousiez épouser ver 118.78 59.26 0.25 0.14 ind:imp:2p; +épousions épouser ver 118.78 59.26 0.00 0.34 ind:imp:1p; +épousons épouser ver 118.78 59.26 0.03 0.07 ind:pre:1p; +épousât épouser ver 118.78 59.26 0.00 0.54 sub:imp:3s; +épousseta épousseter ver 0.54 4.32 0.00 0.74 ind:pas:3s; +époussetage époussetage nom m s 0.00 0.07 0.00 0.07 +époussetaient épousseter ver 0.54 4.32 0.00 0.20 ind:imp:3p; +époussetais épousseter ver 0.54 4.32 0.03 0.07 ind:imp:1s; +époussetait épousseter ver 0.54 4.32 0.00 0.41 ind:imp:3s; +époussetant épousseter ver 0.54 4.32 0.02 0.34 par:pre; +épousseter épousseter ver 0.54 4.32 0.26 0.54 inf; +époussetez épousseter ver 0.54 4.32 0.03 0.00 imp:pre:2p; +époussette épousseter ver 0.54 4.32 0.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +époussettent épousseter ver 0.54 4.32 0.01 0.07 ind:pre:3p; +époussetèrent épousseter ver 0.54 4.32 0.00 0.07 ind:pas:3p; +épousseté épousseter ver m s 0.54 4.32 0.09 0.81 par:pas; +époussetée épousseter ver f s 0.54 4.32 0.02 0.14 par:pas; +époussetés épousseter ver m p 0.54 4.32 0.00 0.20 par:pas; +épousèrent épouser ver 118.78 59.26 0.16 0.14 ind:pas:3p; +époustouflait époustoufler ver 0.27 0.41 0.02 0.00 ind:imp:3s; +époustouflant époustouflant adj m s 0.90 1.35 0.67 0.14 +époustouflante époustouflant adj f s 0.90 1.35 0.20 0.74 +époustouflantes époustouflant adj f p 0.90 1.35 0.02 0.34 +époustouflants époustouflant adj m p 0.90 1.35 0.01 0.14 +époustoufle époustoufler ver 0.27 0.41 0.00 0.14 ind:pre:1s;ind:pre:3s; +époustoufler époustoufler ver 0.27 0.41 0.05 0.00 inf; +époustouflé époustoufler ver m s 0.27 0.41 0.07 0.14 par:pas; +époustouflée époustoufler ver f s 0.27 0.41 0.04 0.07 par:pas; +époustouflés époustoufler ver m p 0.27 0.41 0.04 0.07 par:pas; +épousé épouser ver m s 118.78 59.26 18.09 10.88 par:pas; +épousée épouser ver f s 118.78 59.26 5.85 2.84 par:pas; +épousées épouser ver f p 118.78 59.26 0.27 0.14 par:pas; +épousés épouser ver m p 118.78 59.26 0.06 0.20 par:pas; +épouvanta épouvanter ver 1.81 7.97 0.00 0.68 ind:pas:3s; +épouvantable épouvantable adj s 10.82 9.53 9.53 7.43 +épouvantablement épouvantablement adv 0.34 0.95 0.34 0.95 +épouvantables épouvantable adj p 10.82 9.53 1.29 2.09 +épouvantaient épouvanter ver 1.81 7.97 0.00 0.68 ind:imp:3p; +épouvantail épouvantail nom m s 2.31 3.51 2.00 2.77 +épouvantails épouvantail nom m p 2.31 3.51 0.32 0.74 +épouvantait épouvanter ver 1.81 7.97 0.34 1.08 ind:imp:3s; +épouvante épouvante nom f s 1.93 9.80 1.79 9.59 +épouvantement épouvantement nom m s 0.00 0.27 0.00 0.20 +épouvantements épouvantement nom m p 0.00 0.27 0.00 0.07 +épouvantent épouvanter ver 1.81 7.97 0.02 0.41 ind:pre:3p; +épouvanter épouvanter ver 1.81 7.97 0.16 0.47 inf; +épouvanteraient épouvanter ver 1.81 7.97 0.00 0.07 cnd:pre:3p; +épouvantes épouvanter ver 1.81 7.97 0.17 0.00 ind:pre:2s; +épouvantez épouvanter ver 1.81 7.97 0.01 0.00 ind:pre:2p; +épouvantèrent épouvanter ver 1.81 7.97 0.00 0.07 ind:pas:3p; +épouvanté épouvanter ver m s 1.81 7.97 0.20 1.96 par:pas; +épouvantée épouvanté adj f s 0.29 3.85 0.11 1.01 +épouvantées épouvanter ver f p 1.81 7.97 0.01 0.14 par:pas; +épouvantés épouvanté adj m p 0.29 3.85 0.01 1.01 +époux époux nom m 61.54 46.62 19.57 16.42 +époxy époxy adj f s 0.04 0.00 0.04 0.00 +époxyde époxyde nom m s 0.01 0.00 0.01 0.00 +uppercut uppercut nom m s 0.33 1.28 0.28 0.95 +uppercuts uppercut nom m p 0.33 1.28 0.04 0.34 +éprenait éprendre ver 2.95 5.95 0.00 0.14 ind:imp:3s; +éprenant éprendre ver 2.95 5.95 0.00 0.14 par:pre; +éprend éprendre ver 2.95 5.95 0.04 0.27 ind:pre:3s; +éprendre éprendre ver 2.95 5.95 0.32 0.68 inf; +éprends éprendre ver 2.95 5.95 0.05 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +éprenne éprendre ver 2.95 5.95 0.00 0.07 sub:pre:3s; +éprennent éprendre ver 2.95 5.95 0.03 0.07 ind:pre:3p; +épreuve épreuve nom f s 23.43 46.28 16.88 27.91 +épreuves épreuve nom f p 23.43 46.28 6.55 18.38 +épris éprendre ver m 2.95 5.95 1.56 3.04 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +éprise éprendre ver f s 2.95 5.95 0.83 1.01 par:pas; +éprises éprendre ver f p 2.95 5.95 0.01 0.14 par:pas; +éprit éprendre ver 2.95 5.95 0.13 0.41 ind:pas:3s; +éprouva éprouver ver 23.35 127.09 0.01 9.39 ind:pas:3s; +éprouvai éprouver ver 23.35 127.09 0.03 5.27 ind:pas:1s; +éprouvaient éprouver ver 23.35 127.09 0.03 3.51 ind:imp:3p; +éprouvais éprouver ver 23.35 127.09 1.18 13.04 ind:imp:1s;ind:imp:2s; +éprouvait éprouver ver 23.35 127.09 0.88 26.35 ind:imp:3s; +éprouvant éprouvant adj m s 1.42 2.77 0.61 1.01 +éprouvante éprouvant adj f s 1.42 2.77 0.46 1.08 +éprouvantes éprouvant adj f p 1.42 2.77 0.16 0.54 +éprouvants éprouvant adj m p 1.42 2.77 0.19 0.14 +éprouve éprouver ver 23.35 127.09 6.74 19.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éprouvent éprouver ver 23.35 127.09 0.87 1.96 ind:pre:3p; +éprouver éprouver ver 23.35 127.09 3.97 19.05 inf; +éprouvera éprouver ver 23.35 127.09 0.06 0.07 ind:fut:3s; +éprouverai éprouver ver 23.35 127.09 0.42 0.07 ind:fut:1s; +éprouveraient éprouver ver 23.35 127.09 0.01 0.07 cnd:pre:3p; +éprouverais éprouver ver 23.35 127.09 0.03 0.27 cnd:pre:1s;cnd:pre:2s; +éprouverait éprouver ver 23.35 127.09 0.16 0.74 cnd:pre:3s; +éprouveras éprouver ver 23.35 127.09 0.36 0.00 ind:fut:2s; +éprouverez éprouver ver 23.35 127.09 0.05 0.34 ind:fut:2p; +éprouveront éprouver ver 23.35 127.09 0.03 0.14 ind:fut:3p; +éprouves éprouver ver 23.35 127.09 1.91 0.34 ind:pre:2s; +éprouvette éprouvette nom f s 0.59 1.22 0.44 0.88 +éprouvettes éprouvette nom f p 0.59 1.22 0.16 0.34 +éprouvez éprouver ver 23.35 127.09 1.20 0.34 imp:pre:2p;ind:pre:2p; +éprouviez éprouver ver 23.35 127.09 0.21 0.07 ind:imp:2p; +éprouvions éprouver ver 23.35 127.09 0.02 0.74 ind:imp:1p; +éprouvâmes éprouver ver 23.35 127.09 0.00 0.07 ind:pas:1p; +éprouvons éprouver ver 23.35 127.09 0.28 1.01 ind:pre:1p; +éprouvât éprouver ver 23.35 127.09 0.00 0.54 sub:imp:3s; +éprouvèrent éprouver ver 23.35 127.09 0.02 0.41 ind:pas:3p; +éprouvé éprouver ver m s 23.35 127.09 3.96 16.22 par:pas; +éprouvée éprouver ver f s 23.35 127.09 0.37 2.64 par:pas; +éprouvées éprouvé adj f p 0.59 4.19 0.11 0.47 +éprouvés éprouvé adj m p 0.59 4.19 0.25 1.22 +épucer épucer ver 0.01 0.07 0.01 0.00 inf; +épée épée nom f s 32.81 25.20 29.34 19.12 +épées épée nom f p 32.81 25.20 3.48 6.08 +épuisa épuiser ver 25.41 33.11 0.00 0.47 ind:pas:3s; +épuisai épuiser ver 25.41 33.11 0.00 0.14 ind:pas:1s; +épuisaient épuiser ver 25.41 33.11 0.05 1.08 ind:imp:3p; +épuisais épuiser ver 25.41 33.11 0.01 0.34 ind:imp:1s; +épuisait épuiser ver 25.41 33.11 0.03 1.89 ind:imp:3s; +épuisant épuisant adj m s 2.24 5.81 1.40 2.30 +épuisante épuisant adj f s 2.24 5.81 0.59 2.03 +épuisantes épuisant adj f p 2.24 5.81 0.17 0.68 +épuisants épuisant adj m p 2.24 5.81 0.09 0.81 +épuise épuiser ver 25.41 33.11 1.79 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épuisement épuisement nom m s 1.94 7.91 1.93 7.84 +épuisements épuisement nom m p 1.94 7.91 0.01 0.07 +épuisent épuiser ver 25.41 33.11 0.78 1.08 ind:pre:3p; +épuiser épuiser ver 25.41 33.11 1.91 4.53 inf; +épuisera épuiser ver 25.41 33.11 0.17 0.14 ind:fut:3s; +épuiseraient épuiser ver 25.41 33.11 0.01 0.07 cnd:pre:3p; +épuiserait épuiser ver 25.41 33.11 0.14 0.14 cnd:pre:3s; +épuiseras épuiser ver 25.41 33.11 0.04 0.00 ind:fut:2s; +épuiserons épuiser ver 25.41 33.11 0.01 0.07 ind:fut:1p; +épuiseront épuiser ver 25.41 33.11 0.02 0.00 ind:fut:3p; +épuises épuiser ver 25.41 33.11 0.26 0.14 ind:pre:2s; +épuisette épuisette nom f s 0.51 1.49 0.51 1.15 +épuisettes épuisette nom f p 0.51 1.49 0.00 0.34 +épuisez épuiser ver 25.41 33.11 0.41 0.00 imp:pre:2p;ind:pre:2p; +épuisiez épuiser ver 25.41 33.11 0.00 0.07 ind:imp:2p; +épuisons épuiser ver 25.41 33.11 0.16 0.14 ind:pre:1p; +épuisât épuiser ver 25.41 33.11 0.00 0.07 sub:imp:3s; +épéiste épéiste nom s 0.08 0.00 0.06 0.00 +épéistes épéiste nom p 0.08 0.00 0.02 0.00 +épuisèrent épuiser ver 25.41 33.11 0.00 0.20 ind:pas:3p; +épuisé épuiser ver m s 25.41 33.11 11.11 10.47 par:pas; +épuisée épuiser ver f s 25.41 33.11 6.04 4.93 par:pas; +épuisées épuiser ver f p 25.41 33.11 0.67 0.27 par:pas; +épuisés épuiser ver m p 25.41 33.11 1.77 2.70 par:pas; +épulie épulie nom f s 0.00 0.07 0.00 0.07 +épépine épépiner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +épurait épurer ver 0.62 1.96 0.00 0.20 ind:imp:3s; +épurant épurer ver 0.62 1.96 0.00 0.14 par:pre; +épurateur épurateur nom m s 0.15 0.07 0.15 0.07 +épuration épuration nom f s 0.46 1.69 0.44 1.49 +épurations épuration nom f p 0.46 1.69 0.01 0.20 +épurative épuratif adj f s 0.01 0.00 0.01 0.00 +épure épure nom f s 0.28 1.28 0.14 0.74 +épurer épurer ver 0.62 1.96 0.03 0.34 inf; +épures épure nom f p 0.28 1.28 0.14 0.54 +épuré épurer ver m s 0.62 1.96 0.05 0.41 par:pas; +épurée épurer ver f s 0.62 1.96 0.50 0.34 par:pas; +épurées épurer ver f p 0.62 1.96 0.01 0.14 par:pas; +épurés épurer ver m p 0.62 1.96 0.01 0.20 par:pas; +épuçât épucer ver 0.01 0.07 0.00 0.07 sub:imp:3s; +équanimité équanimité nom f s 0.00 0.14 0.00 0.14 +équarisseur équarisseur nom m s 0.01 0.27 0.00 0.14 +équarisseurs équarisseur nom m p 0.01 0.27 0.01 0.14 +équarri équarri adj m s 0.01 0.95 0.01 0.20 +équarrie équarri adj f s 0.01 0.95 0.00 0.07 +équarries équarri adj f p 0.01 0.95 0.00 0.54 +équarrir équarrir ver 0.01 0.54 0.01 0.14 inf; +équarris équarri adj m p 0.01 0.95 0.00 0.14 +équarrissage équarrissage nom m s 0.03 0.14 0.03 0.14 +équarrissait équarrir ver 0.01 0.54 0.00 0.14 ind:imp:3s; +équarrisseur équarrisseur nom m s 0.00 0.47 0.00 0.41 +équarrisseurs équarrisseur nom m p 0.00 0.47 0.00 0.07 +équateur équateur nom m s 0.38 1.55 0.38 1.55 +équation équation nom f s 3.50 2.84 2.49 1.35 +équations équation nom f p 3.50 2.84 1.00 1.49 +équatorial équatorial adj m s 0.38 4.59 0.01 0.74 +équatoriale équatorial adj f s 0.38 4.59 0.37 3.45 +équatoriaux équatorial adj m p 0.38 4.59 0.00 0.41 +équatorien équatorien nom m s 0.01 0.07 0.01 0.07 +équatoriennes équatorien adj f p 0.01 0.00 0.01 0.00 +équerrage équerrage nom m s 0.00 0.07 0.00 0.07 +équerre équerre nom f s 0.20 1.55 0.19 1.49 +équerres équerre nom f p 0.20 1.55 0.01 0.07 +équestre équestre adj s 0.29 2.09 0.28 1.35 +équestres équestre adj p 0.29 2.09 0.01 0.74 +équeuter équeuter ver 0.01 0.00 0.01 0.00 inf; +équeutées équeuté adj f p 0.00 0.07 0.00 0.07 +équidistance équidistance nom f s 0.11 0.00 0.11 0.00 +équidistant équidistant adj m s 0.15 0.54 0.14 0.14 +équidistante équidistant adj f s 0.15 0.54 0.00 0.14 +équidistantes équidistant adj f p 0.15 0.54 0.00 0.07 +équidistants équidistant adj m p 0.15 0.54 0.01 0.20 +équidés équidé nom m p 0.01 0.00 0.01 0.00 +équilatéral équilatéral adj m s 0.04 0.34 0.04 0.27 +équilatéraux équilatéral adj m p 0.04 0.34 0.00 0.07 +équilibra équilibrer ver 1.97 5.34 0.00 0.14 ind:pas:3s; +équilibrage équilibrage nom m s 0.17 0.00 0.17 0.00 +équilibraient équilibrer ver 1.97 5.34 0.00 0.47 ind:imp:3p; +équilibrais équilibrer ver 1.97 5.34 0.00 0.07 ind:imp:1s; +équilibrait équilibrer ver 1.97 5.34 0.01 0.34 ind:imp:3s; +équilibrant équilibrer ver 1.97 5.34 0.00 0.20 par:pre; +équilibrante équilibrant adj f s 0.00 0.14 0.00 0.14 +équilibre équilibre nom m s 10.66 39.73 10.53 39.05 +équilibrent équilibrer ver 1.97 5.34 0.04 0.41 ind:pre:3p; +équilibrer équilibrer ver 1.97 5.34 0.84 1.69 inf; +équilibres équilibre nom m p 10.66 39.73 0.13 0.68 +équilibreur équilibreur nom m s 0.03 0.00 0.03 0.00 +équilibrisme équilibrisme nom m s 0.00 0.07 0.00 0.07 +équilibriste équilibriste nom s 0.70 0.88 0.45 0.54 +équilibristes équilibriste nom p 0.70 0.88 0.26 0.34 +équilibrèrent équilibrer ver 1.97 5.34 0.00 0.14 ind:pas:3p; +équilibré équilibré adj m s 2.23 2.57 1.37 1.28 +équilibrée équilibré adj f s 2.23 2.57 0.64 0.74 +équilibrées équilibré adj f p 2.23 2.57 0.02 0.34 +équilibrés équilibré adj m p 2.23 2.57 0.21 0.20 +équin équin adj m s 0.05 0.07 0.00 0.07 +équine équin adj f s 0.05 0.07 0.05 0.00 +équinoxe équinoxe nom m s 0.44 3.18 0.44 2.50 +équinoxes équinoxe nom m p 0.44 3.18 0.00 0.68 +équipa équiper ver 6.27 9.46 0.01 0.07 ind:pas:3s; +équipage équipage nom m s 19.91 17.16 18.48 11.28 +équipages équipage nom m p 19.91 17.16 1.42 5.88 +équipai équiper ver 6.27 9.46 0.01 0.00 ind:pas:1s; +équipait équiper ver 6.27 9.46 0.00 0.20 ind:imp:3s; +équipant équiper ver 6.27 9.46 0.01 0.27 par:pre; +équipe équipe nom f s 129.97 34.32 118.00 26.28 +équipement équipement nom m s 12.82 8.51 10.71 6.42 +équipements équipement nom m p 12.82 8.51 2.11 2.09 +équipent équiper ver 6.27 9.46 0.15 0.14 ind:pre:3p; +équiper équiper ver 6.27 9.46 0.89 1.89 inf; +équipera équiper ver 6.27 9.46 0.05 0.00 ind:fut:3s; +équiperai équiper ver 6.27 9.46 0.01 0.00 ind:fut:1s; +équiperais équiper ver 6.27 9.46 0.02 0.00 cnd:pre:1s; +équipes équipe nom f p 129.97 34.32 11.97 8.04 +équipez équiper ver 6.27 9.46 0.01 0.07 imp:pre:2p;ind:pre:2p; +équipier équipier nom m s 4.34 1.08 3.07 0.81 +équipiers équipier nom m p 4.34 1.08 0.71 0.27 +équipière équipier nom f s 4.34 1.08 0.56 0.00 +équipons équiper ver 6.27 9.46 0.02 0.00 imp:pre:1p;ind:pre:1p; +équipèrent équiper ver 6.27 9.46 0.00 0.07 ind:pas:3p; +équipé équiper ver m s 6.27 9.46 1.65 2.09 par:pas; +équipée équiper ver f s 6.27 9.46 1.46 1.69 par:pas; +équipées équiper ver f p 6.27 9.46 0.20 0.81 par:pas; +équipés équiper ver m p 6.27 9.46 0.93 1.35 par:pas; +équitable équitable adj s 3.41 2.97 3.30 2.77 +équitablement équitablement adv 0.46 1.35 0.46 1.35 +équitables équitable adj p 3.41 2.97 0.10 0.20 +équitation équitation nom f s 1.14 1.42 1.14 1.42 +équité équité nom f s 0.79 1.49 0.79 1.49 +équivalût équivaloir ver 2.23 3.72 0.00 0.07 sub:imp:3s; +équivalaient équivaloir ver 2.23 3.72 0.01 0.07 ind:imp:3p; +équivalait équivaloir ver 2.23 3.72 0.16 1.42 ind:imp:3s; +équivalant équivaloir ver 2.23 3.72 0.12 0.41 par:pre; +équivalence équivalence nom f s 0.22 0.81 0.19 0.61 +équivalences équivalence nom f p 0.22 0.81 0.04 0.20 +équivalent équivalent nom m s 2.45 5.74 2.43 4.93 +équivalente équivalent adj f s 0.99 1.69 0.25 0.27 +équivalentes équivalent adj f p 0.99 1.69 0.03 0.20 +équivalents équivalent adj m p 0.99 1.69 0.12 0.34 +équivaloir équivaloir ver 2.23 3.72 0.00 0.07 inf; +équivalu équivaloir ver m s 2.23 3.72 0.00 0.14 par:pas; +équivaudra équivaloir ver 2.23 3.72 0.16 0.07 ind:fut:3s; +équivaudrait équivaloir ver 2.23 3.72 0.10 0.27 cnd:pre:3s; +équivaut équivaloir ver 2.23 3.72 1.41 1.08 ind:pre:3s; +équivoque équivoque nom f s 0.78 3.78 0.64 3.38 +équivoquer équivoquer ver 0.01 0.00 0.01 0.00 inf; +équivoques équivoque adj p 0.88 5.14 0.34 1.22 +érable érable nom m s 1.15 2.03 1.11 1.15 +érables érable nom m p 1.15 2.03 0.04 0.88 +érablières érablière nom f p 0.00 0.07 0.00 0.07 +éradicateur éradicateur nom m s 0.02 0.00 0.02 0.00 +éradication éradication nom f s 0.31 0.00 0.31 0.00 +éradiquer éradiquer ver 1.34 0.07 0.97 0.07 inf; +éradiquerai éradiquer ver 1.34 0.07 0.02 0.00 ind:fut:1s; +éradiqueront éradiquer ver 1.34 0.07 0.02 0.00 ind:fut:3p; +éradiquons éradiquer ver 1.34 0.07 0.03 0.00 imp:pre:1p;ind:pre:1p; +éradiqué éradiquer ver m s 1.34 0.07 0.22 0.00 par:pas; +éradiquée éradiquer ver f s 1.34 0.07 0.08 0.00 par:pas; +érafla érafler ver 0.91 2.03 0.00 0.20 ind:pas:3s; +éraflait érafler ver 0.91 2.03 0.00 0.14 ind:imp:3s; +érafle érafler ver 0.91 2.03 0.05 0.20 ind:pre:1s;ind:pre:3s; +érafler érafler ver 0.91 2.03 0.15 0.20 inf; +éraflez érafler ver 0.91 2.03 0.02 0.00 imp:pre:2p;ind:pre:2p; +éraflé érafler ver m s 0.91 2.03 0.55 0.81 par:pas; +éraflée érafler ver f s 0.91 2.03 0.05 0.34 par:pas; +éraflées érafler ver f p 0.91 2.03 0.06 0.07 par:pas; +éraflure éraflure nom f s 1.75 1.76 1.00 0.81 +éraflures éraflure nom f p 1.75 1.76 0.75 0.95 +éraflés érafler ver m p 0.91 2.03 0.04 0.07 par:pas; +érailla érailler ver 0.04 1.42 0.00 0.07 ind:pas:3s; +éraillaient érailler ver 0.04 1.42 0.00 0.07 ind:imp:3p; +éraillait érailler ver 0.04 1.42 0.00 0.07 ind:imp:3s; +éraillant érailler ver 0.04 1.42 0.00 0.07 par:pre; +éraille érailler ver 0.04 1.42 0.00 0.14 ind:pre:3s; +éraillent érailler ver 0.04 1.42 0.00 0.07 ind:pre:3p; +érailler érailler ver 0.04 1.42 0.02 0.00 inf; +éraillé éraillé adj m s 0.03 2.16 0.00 0.27 +éraillée éraillé adj f s 0.03 2.16 0.03 1.69 +éraillées érailler ver f p 0.04 1.42 0.00 0.27 par:pas; +éraillures éraillure nom f p 0.00 0.07 0.00 0.07 +éraillés éraillé adj m p 0.03 2.16 0.00 0.14 +urane urane nom m s 0.00 0.07 0.00 0.07 +uraniens uranien adj m p 0.01 0.00 0.01 0.00 +uranisme uranisme nom m s 0.00 0.07 0.00 0.07 +uraniste uraniste nom m s 0.02 0.00 0.02 0.00 +uranium uranium nom m s 1.60 0.47 1.60 0.47 +urbain urbain adj m s 3.06 4.39 0.96 1.89 +urbaine urbain adj f s 3.06 4.39 1.28 1.35 +urbaines urbain adj f p 3.06 4.39 0.42 0.34 +urbains urbain adj m p 3.06 4.39 0.41 0.81 +urbanisation urbanisation nom f s 0.14 0.00 0.14 0.00 +urbanisme urbanisme nom m s 1.48 0.14 1.48 0.14 +urbaniste urbaniste adj s 0.01 0.07 0.01 0.00 +urbanistes urbaniste nom p 0.29 0.41 0.29 0.27 +urbanisé urbaniser ver m s 0.02 0.07 0.00 0.07 par:pas; +urbanisée urbaniser ver f s 0.02 0.07 0.02 0.00 par:pas; +urbanité urbanité nom f s 0.00 0.41 0.00 0.41 +urbi_et_orbi urbi_et_orbi adv 0.01 0.27 0.01 0.27 +urdu urdu nom m s 0.02 0.00 0.02 0.00 +ure ure nom m s 0.07 0.07 0.06 0.00 +érectile érectile adj s 0.13 0.14 0.02 0.14 +érectiles érectile adj m p 0.13 0.14 0.11 0.00 +érection érection nom f s 3.56 4.05 3.27 3.31 +érections érection nom f p 3.56 4.05 0.30 0.74 +éreintait éreinter ver 0.88 0.95 0.00 0.07 ind:imp:3s; +éreintant éreintant adj m s 0.54 0.14 0.21 0.14 +éreintante éreintant adj f s 0.54 0.14 0.31 0.00 +éreintants éreintant adj m p 0.54 0.14 0.02 0.00 +éreinte éreinter ver 0.88 0.95 0.09 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +éreintement éreintement nom m s 0.00 0.27 0.00 0.27 +éreintent éreinter ver 0.88 0.95 0.07 0.00 ind:pre:3p; +éreinter éreinter ver 0.88 0.95 0.14 0.20 inf; +éreinteur éreinteur nom m s 0.01 0.00 0.01 0.00 +éreinté éreinter ver m s 0.88 0.95 0.23 0.41 par:pas; +éreintée éreinter ver f s 0.88 0.95 0.23 0.00 par:pas; +éreintées éreinter ver f p 0.88 0.95 0.01 0.07 par:pas; +éreintés éreinter ver m p 0.88 0.95 0.09 0.07 par:pas; +ures ure nom m p 0.07 0.07 0.01 0.07 +uretère uretère nom m s 0.04 0.00 0.04 0.00 +urf urf adj m s 0.00 0.07 0.00 0.07 +urge urger ver 0.81 1.08 0.77 0.61 imp:pre:2s;ind:pre:3s;sub:pre:3s; +urgeait urger ver 0.81 1.08 0.01 0.34 ind:imp:3s; +urgemment urgemment adv 0.01 0.14 0.01 0.14 +urgence urgence nom f s 53.03 23.11 38.78 21.35 +urgences urgence nom f p 53.03 23.11 14.24 1.76 +urgent urgent adj m s 31.56 16.96 26.75 11.62 +urgente urgent adj f s 31.56 16.96 3.18 2.91 +urgentes urgent adj f p 31.56 16.96 0.84 1.49 +urgentissime urgentissime adj s 0.02 0.00 0.02 0.00 +urgentiste urgentiste nom s 0.25 0.00 0.25 0.00 +urgents urgent adj m p 31.56 16.96 0.79 0.95 +urger urger ver 0.81 1.08 0.01 0.07 inf; +érige ériger ver 1.91 5.20 0.10 0.88 ind:pre:1s;ind:pre:3s;sub:pre:1s; +érigea ériger ver 1.91 5.20 0.02 0.07 ind:pas:3s; +érigeaient ériger ver 1.91 5.20 0.14 0.27 ind:imp:3p; +érigeait ériger ver 1.91 5.20 0.00 0.14 ind:imp:3s; +érigeant ériger ver 1.91 5.20 0.02 0.34 par:pre; +érigent ériger ver 1.91 5.20 0.01 0.27 ind:pre:3p; +érigeât ériger ver 1.91 5.20 0.00 0.07 sub:imp:3s; +ériger ériger ver 1.91 5.20 0.79 1.15 inf; +érigé ériger ver m s 1.91 5.20 0.45 0.95 par:pas; +érigée ériger ver f s 1.91 5.20 0.23 0.68 par:pas; +érigées ériger ver f p 1.91 5.20 0.14 0.20 par:pas; +érigés ériger ver m p 1.91 5.20 0.01 0.20 par:pas; +urina uriner ver 2.00 2.70 0.00 0.34 ind:pas:3s; +urinaient uriner ver 2.00 2.70 0.12 0.07 ind:imp:3p; +urinaire urinaire adj s 1.27 0.34 0.98 0.14 +urinaires urinaire adj p 1.27 0.34 0.28 0.20 +urinais uriner ver 2.00 2.70 0.00 0.07 ind:imp:1s; +urinait uriner ver 2.00 2.70 0.01 0.27 ind:imp:3s; +urinal urinal nom m s 0.03 0.20 0.03 0.20 +urinant uriner ver 2.00 2.70 0.06 0.07 par:pre; +urine urine nom f s 5.72 6.62 4.63 6.28 +urinent uriner ver 2.00 2.70 0.08 0.07 ind:pre:3p; +uriner uriner ver 2.00 2.70 0.86 1.35 inf; +urinera uriner ver 2.00 2.70 0.01 0.00 ind:fut:3s; +urines urine nom f p 5.72 6.62 1.08 0.34 +urineuse urineux adj f s 0.00 0.07 0.00 0.07 +urinez uriner ver 2.00 2.70 0.10 0.00 imp:pre:2p;ind:pre:2p; +urinoir urinoir nom m s 0.69 1.35 0.37 0.61 +urinoirs urinoir nom m p 0.69 1.35 0.32 0.74 +urinons uriner ver 2.00 2.70 0.00 0.14 imp:pre:1p; +uriné uriner ver m s 2.00 2.70 0.25 0.14 par:pas; +urique urique adj m s 0.06 0.07 0.06 0.07 +urne urne nom f s 2.69 3.38 1.94 1.96 +urnes urne nom f p 2.69 3.38 0.74 1.42 +érode éroder ver 0.16 0.68 0.10 0.20 ind:pre:3s; +érodent éroder ver 0.16 0.68 0.01 0.00 ind:pre:3p; +éroder éroder ver 0.16 0.68 0.00 0.07 inf; +érodé éroder ver m s 0.16 0.68 0.03 0.14 par:pas; +érodée érodé adj f s 0.03 0.27 0.02 0.07 +érodées éroder ver f p 0.16 0.68 0.00 0.07 par:pas; +érodés éroder ver m p 0.16 0.68 0.00 0.14 par:pas; +urographie urographie nom f s 0.00 0.07 0.00 0.07 +érogène érogène adj f s 0.14 0.61 0.04 0.20 +érogènes érogène adj p 0.14 0.61 0.10 0.41 +urokinase urokinase nom f s 0.01 0.00 0.01 0.00 +urologie urologie nom f s 0.23 0.07 0.23 0.07 +urologique urologique adj m s 0.01 0.00 0.01 0.00 +urologue urologue nom s 0.29 0.20 0.29 0.20 +éros éros nom m 0.33 0.54 0.33 0.54 +uroscopie uroscopie nom f s 0.00 0.07 0.00 0.07 +érosion érosion nom f s 0.34 1.49 0.32 1.28 +érosions érosion nom f p 0.34 1.49 0.02 0.20 +érotique érotique adj s 5.06 8.85 3.04 5.95 +érotiquement érotiquement adj s 0.01 0.34 0.01 0.34 +érotiques érotique adj p 5.06 8.85 2.02 2.91 +érotise érotiser ver 0.01 0.20 0.00 0.07 ind:pre:3s; +érotiser érotiser ver 0.01 0.20 0.01 0.00 inf; +érotisme érotisme nom m s 1.64 3.38 1.64 3.38 +érotisé érotiser ver m s 0.01 0.20 0.00 0.07 par:pas; +érotisée érotiser ver f s 0.01 0.20 0.00 0.07 par:pas; +érotomane érotomane adj m s 0.00 0.14 0.00 0.14 +érotomane érotomane nom s 0.00 0.14 0.00 0.14 +érotomanie érotomanie nom f s 0.04 0.14 0.04 0.14 +ursuline ursuline nom f s 0.23 1.01 0.00 0.07 +ursulines ursuline nom f p 0.23 1.01 0.23 0.95 +urètre urètre nom m s 0.16 0.47 0.16 0.47 +urticaire urticaire nom f s 1.22 0.61 1.22 0.61 +urticante urticant adj f s 0.02 0.20 0.01 0.00 +urticantes urticant adj f p 0.02 0.20 0.01 0.14 +urticants urticant adj m p 0.02 0.20 0.00 0.07 +urubu urubu nom m s 0.00 0.34 0.00 0.07 +urubus urubu nom m p 0.00 0.34 0.00 0.27 +éructa éructer ver 0.21 2.50 0.00 0.27 ind:pas:3s; +éructait éructer ver 0.21 2.50 0.00 0.41 ind:imp:3s; +éructant éructer ver 0.21 2.50 0.02 0.27 par:pre; +éructation éructation nom f s 0.02 0.20 0.01 0.00 +éructations éructation nom f p 0.02 0.20 0.01 0.20 +éructe éructer ver 0.21 2.50 0.14 1.01 ind:pre:1s;ind:pre:3s; +éructer éructer ver 0.21 2.50 0.04 0.27 inf; +éructes éructer ver 0.21 2.50 0.01 0.00 ind:pre:2s; +éructé éructer ver m s 0.21 2.50 0.00 0.20 par:pas; +éructées éructer ver f p 0.21 2.50 0.00 0.07 par:pas; +érudit érudit nom m s 1.43 1.69 1.09 0.61 +érudite érudit adj f s 0.56 1.01 0.11 0.00 +érudites érudit adj f p 0.56 1.01 0.01 0.14 +érudition érudition nom f s 0.40 2.84 0.40 2.84 +érudits érudit nom m p 1.43 1.69 0.30 1.08 +urée urée nom f s 0.20 0.14 0.20 0.14 +uruguayen uruguayen nom m s 0.57 0.00 0.57 0.00 +urémie urémie nom f s 0.31 0.27 0.31 0.27 +urémique urémique adj s 0.02 0.00 0.02 0.00 +éruption éruption nom f s 3.73 2.09 3.32 1.55 +éruptions éruption nom f p 3.73 2.09 0.41 0.54 +éruptive éruptif adj f s 0.01 0.07 0.01 0.00 +éruptives éruptif adj f p 0.01 0.07 0.00 0.07 +urus urus nom m 0.00 0.20 0.00 0.20 +uréthane uréthane nom m s 0.08 0.00 0.08 0.00 +urétrite urétrite nom f s 0.04 0.00 0.04 0.00 +érythromycine érythromycine nom f s 0.04 0.00 0.04 0.00 +érythrophobie érythrophobie nom f s 0.05 0.00 0.05 0.00 +érythréenne érythréen nom f s 0.01 0.00 0.01 0.00 +érythème érythème nom m s 0.17 0.14 0.16 0.00 +érythèmes érythème nom m p 0.17 0.14 0.01 0.14 +érythémateux érythémateux adj m 0.03 0.00 0.03 0.00 +us us nom m p 9.10 1.55 9.10 1.55 +usa user ver 13.58 45.00 0.15 0.61 ind:pas:3s; +usage usage nom m s 14.45 47.97 13.26 42.30 +usager usager nom m s 0.07 1.55 0.02 0.54 +usagers usager nom m p 0.07 1.55 0.05 0.95 +usages usage nom m p 14.45 47.97 1.19 5.68 +usagères usager nom f p 0.07 1.55 0.00 0.07 +usagé usagé adj m s 1.37 3.11 0.22 1.01 +usagée usagé adj f s 1.37 3.11 0.39 0.68 +usagées usagé adj f p 1.37 3.11 0.31 0.74 +usagés usagé adj m p 1.37 3.11 0.45 0.68 +usai user ver 13.58 45.00 0.00 0.41 ind:pas:1s; +usaient user ver 13.58 45.00 0.14 1.49 ind:imp:3p; +usais user ver 13.58 45.00 0.02 0.61 ind:imp:1s;ind:imp:2s; +usait user ver 13.58 45.00 0.08 4.26 ind:imp:3s; +usant user ver 13.58 45.00 0.59 2.36 par:pre; +usante usant adj f s 0.40 0.14 0.01 0.00 +use user ver 13.58 45.00 3.19 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +usent user ver 13.58 45.00 0.17 2.23 ind:pre:3p; +user user ver 13.58 45.00 3.48 9.73 inf; +usera user ver 13.58 45.00 0.34 0.00 ind:fut:3s; +userai user ver 13.58 45.00 0.22 0.20 ind:fut:1s; +userais user ver 13.58 45.00 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +userait user ver 13.58 45.00 0.04 0.61 cnd:pre:3s; +useriez user ver 13.58 45.00 0.02 0.00 cnd:pre:2p; +userons user ver 13.58 45.00 0.01 0.07 ind:fut:1p; +useront user ver 13.58 45.00 0.02 0.07 ind:fut:3p; +uses user ver 13.58 45.00 0.19 0.00 ind:pre:2s; +usez user ver 13.58 45.00 0.46 0.27 imp:pre:2p;ind:pre:2p; +usinage usinage nom m s 0.05 0.00 0.05 0.00 +usinaient usiner ver 0.05 0.95 0.00 0.07 ind:imp:3p; +usinant usiner ver 0.05 0.95 0.00 0.07 par:pre; +usine_pilote usine_pilote nom f s 0.00 0.07 0.00 0.07 +usine usine nom f s 51.59 42.97 43.51 28.04 +usiner usiner ver 0.05 0.95 0.01 0.00 inf; +usines usine nom f p 51.59 42.97 8.08 14.93 +usinier usinier adj m s 0.00 0.14 0.00 0.07 +usiniers usinier nom m p 0.00 0.07 0.00 0.07 +usinière usinier adj f s 0.00 0.14 0.00 0.07 +usiné usiner ver m s 0.05 0.95 0.00 0.07 par:pas; +usinée usiner ver f s 0.05 0.95 0.00 0.07 par:pas; +usinées usiner ver f p 0.05 0.95 0.00 0.07 par:pas; +usinés usiner ver m p 0.05 0.95 0.00 0.07 par:pas; +usions user ver 13.58 45.00 0.02 0.20 ind:imp:1p; +usité usité adj m s 0.01 0.27 0.00 0.20 +usités usité adj m p 0.01 0.27 0.01 0.07 +usons user ver 13.58 45.00 0.14 0.27 imp:pre:1p;ind:pre:1p; +usât user ver 13.58 45.00 0.00 0.20 sub:imp:3s; +ésotérique ésotérique adj s 0.53 1.08 0.18 0.68 +ésotériques ésotérique adj p 0.53 1.08 0.35 0.41 +ésotérisme ésotérisme nom m s 0.23 0.54 0.23 0.54 +ésotéristes ésotériste nom p 0.00 0.07 0.00 0.07 +ustensile ustensile nom m s 1.32 5.27 0.27 1.35 +ustensiles ustensile nom m p 1.32 5.27 1.06 3.92 +usèrent user ver 13.58 45.00 0.00 0.07 ind:pas:3p; +ustion ustion nom f s 0.00 0.14 0.00 0.14 +usé user ver m s 13.58 45.00 2.02 8.92 par:pas; +usée user ver f s 13.58 45.00 0.80 3.72 par:pas; +usuel usuel adj m s 0.19 1.28 0.04 0.41 +usuelle usuel adj f s 0.19 1.28 0.04 0.20 +usuellement usuellement adv 0.10 0.00 0.10 0.00 +usuelles usuel adj f p 0.19 1.28 0.00 0.20 +usuels usuel adj m p 0.19 1.28 0.10 0.47 +usées usé adj f p 2.49 17.09 0.50 2.70 +usufruit usufruit nom m s 0.15 0.47 0.15 0.47 +usufruitier usufruitier nom m s 0.00 0.14 0.00 0.14 +usuraire usuraire adj m s 0.04 0.14 0.01 0.14 +usuraires usuraire adj m p 0.04 0.14 0.02 0.00 +usure usure nom f s 1.78 10.20 1.77 10.00 +usures usure nom f p 1.78 10.20 0.01 0.20 +usurier usurier nom m s 2.17 1.28 1.20 0.61 +usuriers usurier nom m p 2.17 1.28 0.86 0.61 +usurière usurier nom f s 2.17 1.28 0.11 0.07 +usurpaient usurper ver 1.09 2.03 0.00 0.14 ind:imp:3p; +usurpait usurper ver 1.09 2.03 0.00 0.07 ind:imp:3s; +usurpant usurper ver 1.09 2.03 0.01 0.20 par:pre; +usurpateur usurpateur nom m s 0.43 1.62 0.21 0.68 +usurpateurs usurpateur nom m p 0.43 1.62 0.05 0.61 +usurpation usurpation nom f s 0.59 1.35 0.59 1.35 +usurpatrice usurpateur nom f s 0.43 1.62 0.17 0.34 +usurpent usurper ver 1.09 2.03 0.01 0.07 ind:pre:3p; +usurper usurper ver 1.09 2.03 0.51 0.34 inf; +usurperont usurper ver 1.09 2.03 0.01 0.00 ind:fut:3p; +usurpé usurper ver m s 1.09 2.03 0.54 0.74 par:pas; +usurpée usurper ver f s 1.09 2.03 0.00 0.27 par:pas; +usurpées usurper ver f p 1.09 2.03 0.00 0.14 par:pas; +usurpés usurper ver m p 1.09 2.03 0.01 0.07 par:pas; +usés user ver m p 13.58 45.00 1.05 2.09 par:pas; +ut ut nom m 1.02 0.54 1.02 0.54 +établît établir ver 26.38 57.77 0.00 0.27 sub:imp:3s; +étable étable nom f s 5.37 9.46 4.85 7.50 +étables étable nom f p 5.37 9.46 0.52 1.96 +établi établir ver m s 26.38 57.77 7.41 11.01 par:pas; +établie établir ver f s 26.38 57.77 1.89 4.66 par:pas; +établies établir ver f p 26.38 57.77 0.58 1.96 par:pas; +établir établir ver 26.38 57.77 10.52 20.68 inf; +établira établir ver 26.38 57.77 0.34 0.27 ind:fut:3s; +établirai établir ver 26.38 57.77 0.07 0.14 ind:fut:1s; +établiraient établir ver 26.38 57.77 0.01 0.07 cnd:pre:3p; +établirais établir ver 26.38 57.77 0.14 0.07 cnd:pre:1s; +établirait établir ver 26.38 57.77 0.04 0.88 cnd:pre:3s; +établirent établir ver 26.38 57.77 0.04 1.01 ind:pas:3p; +établirez établir ver 26.38 57.77 0.01 0.14 ind:fut:2p; +établirions établir ver 26.38 57.77 0.01 0.00 cnd:pre:1p; +établirons établir ver 26.38 57.77 0.07 0.07 ind:fut:1p; +établiront établir ver 26.38 57.77 0.05 0.14 ind:fut:3p; +établis établir ver m p 26.38 57.77 1.29 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +établissaient établir ver 26.38 57.77 0.02 1.08 ind:imp:3p; +établissais établir ver 26.38 57.77 0.03 0.27 ind:imp:1s;ind:imp:2s; +établissait établir ver 26.38 57.77 0.17 3.78 ind:imp:3s; +établissant établir ver 26.38 57.77 0.55 1.01 par:pre; +établisse établir ver 26.38 57.77 0.26 0.81 sub:pre:1s;sub:pre:3s; +établissement établissement nom m s 7.59 22.23 6.11 17.36 +établissements établissement nom m p 7.59 22.23 1.48 4.86 +établissent établir ver 26.38 57.77 0.28 1.22 ind:pre:3p; +établisses établir ver 26.38 57.77 0.01 0.00 sub:pre:2s; +établissez établir ver 26.38 57.77 0.50 0.14 imp:pre:2p;ind:pre:2p; +établissions établir ver 26.38 57.77 0.05 0.14 ind:imp:1p; +établissons établir ver 26.38 57.77 0.29 0.20 imp:pre:1p;ind:pre:1p; +établit établir ver 26.38 57.77 1.74 5.07 ind:pre:3s;ind:pas:3s; +étage étage nom m s 46.45 96.55 39.47 69.19 +étagea étager ver 0.73 3.58 0.00 0.07 ind:pas:3s; +étageaient étager ver 0.73 3.58 0.00 0.81 ind:imp:3p; +étageait étager ver 0.73 3.58 0.00 0.27 ind:imp:3s; +étageant étager ver 0.73 3.58 0.00 0.41 par:pre; +étagent étager ver 0.73 3.58 0.00 0.74 ind:pre:3p; +étages étage nom m p 46.45 96.55 6.98 27.36 +étagère étagère nom f s 5.06 16.69 3.29 9.59 +étagères étagère nom f p 5.06 16.69 1.77 7.09 +étagé étagé adj m s 0.00 0.54 0.00 0.07 +étagée étager ver f s 0.73 3.58 0.00 0.20 par:pas; +étagées étager ver f p 0.73 3.58 0.00 0.41 par:pas; +étagés étager ver m p 0.73 3.58 0.00 0.27 par:pas; +étai étai nom m s 0.28 0.88 0.19 0.54 +étaie étayer ver 0.72 4.05 0.04 0.14 ind:pre:1s;ind:pre:3s; +étaient être aux 8074.24 6501.82 55.30 393.85 ind:imp:3p; +étain étain nom m s 1.19 4.66 1.08 4.39 +étains étain nom m p 1.19 4.66 0.11 0.27 +étais être aux 8074.24 6501.82 184.97 224.66 ind:imp:2s; +était être aux 8074.24 6501.82 350.91 1497.84 ind:imp:3s; +étal étal nom m s 0.56 5.54 0.33 3.38 +étala étaler ver 6.36 63.11 0.00 4.05 ind:pas:3s; +étalage étalage nom m s 2.22 11.42 1.95 7.64 +étalages étalage nom m p 2.22 11.42 0.27 3.78 +étalagiste étalagiste nom s 0.00 0.20 0.00 0.20 +étalai étaler ver 6.36 63.11 0.00 0.27 ind:pas:1s; +étalaient étaler ver 6.36 63.11 0.03 6.15 ind:imp:3p; +étalais étaler ver 6.36 63.11 0.18 0.20 ind:imp:1s; +étalait étaler ver 6.36 63.11 0.08 10.00 ind:imp:3s; +étalant étaler ver 6.36 63.11 0.13 2.30 par:pre; +étale étaler ver 6.36 63.11 0.93 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +étalement étalement nom m s 0.14 0.47 0.14 0.41 +étalements étalement nom m p 0.14 0.47 0.00 0.07 +étalent étaler ver 6.36 63.11 0.32 2.57 ind:pre:3p; +étaler étaler ver 6.36 63.11 2.42 7.16 inf; +étalera étaler ver 6.36 63.11 0.00 0.14 ind:fut:3s; +étalerai étaler ver 6.36 63.11 0.01 0.00 ind:fut:1s; +étaleraient étaler ver 6.36 63.11 0.00 0.14 cnd:pre:3p; +étalerait étaler ver 6.36 63.11 0.01 0.14 cnd:pre:3s; +étaleras étaler ver 6.36 63.11 0.00 0.07 ind:fut:2s; +étaleront étaler ver 6.36 63.11 0.01 0.07 ind:fut:3p; +étales étaler ver 6.36 63.11 0.28 0.00 ind:pre:2s; +étalez étaler ver 6.36 63.11 0.04 0.14 imp:pre:2p;ind:pre:2p; +étalions étaler ver 6.36 63.11 0.00 0.14 ind:imp:1p; +étalon étalon nom m s 6.20 5.41 5.13 4.39 +étalonnage étalonnage nom m s 0.45 0.07 0.45 0.00 +étalonnages étalonnage nom m p 0.45 0.07 0.00 0.07 +étalonne étalonner ver 0.02 0.14 0.00 0.07 ind:pre:1s; +étalonner étalonner ver 0.02 0.14 0.01 0.07 inf; +étalonné étalonner ver m s 0.02 0.14 0.01 0.00 par:pas; +étalonnés étalonné adj m p 0.01 0.00 0.01 0.00 +étalons étalon nom m p 6.20 5.41 1.07 1.01 +étalât étaler ver 6.36 63.11 0.00 0.14 sub:imp:3s; +étals étal nom m p 0.56 5.54 0.23 2.16 +étalèrent étaler ver 6.36 63.11 0.00 0.54 ind:pas:3p; +étalé étaler ver m s 6.36 63.11 0.94 6.55 par:pas; +étalée étaler ver f s 6.36 63.11 0.41 4.73 par:pas; +étalées étaler ver f p 6.36 63.11 0.14 3.18 par:pas; +étalés étaler ver m p 6.36 63.11 0.30 3.99 par:pas; +étamaient étamer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +étambot étambot nom m s 0.01 0.14 0.01 0.14 +étameur étameur nom m s 0.03 0.07 0.03 0.00 +étameurs étameur nom m p 0.03 0.07 0.00 0.07 +étamine étamine nom f s 0.06 1.22 0.05 0.61 +étamines étamine nom f p 0.06 1.22 0.01 0.61 +étampes étampe nom f p 0.00 1.01 0.00 1.01 +étampures étampure nom f p 0.00 0.07 0.00 0.07 +étamé étamé adj m s 0.00 0.27 0.00 0.27 +étanchaient étancher ver 0.48 1.89 0.00 0.07 ind:imp:3p; +étanchait étancher ver 0.48 1.89 0.00 0.20 ind:imp:3s; +étanche étanche adj s 1.87 1.96 1.40 1.15 +étanchement étanchement nom m s 0.20 0.00 0.20 0.00 +étanchent étancher ver 0.48 1.89 0.00 0.07 ind:pre:3p; +étancher étancher ver 0.48 1.89 0.16 1.35 inf; +étancherait étancher ver 0.48 1.89 0.00 0.07 cnd:pre:3s; +étanches étanche adj p 1.87 1.96 0.47 0.81 +étanché étancher ver m s 0.48 1.89 0.26 0.07 par:pas; +étanchée étancher ver f s 0.48 1.89 0.02 0.00 par:pas; +étanchéité étanchéité nom f s 0.13 0.34 0.13 0.34 +étang étang nom m s 7.10 15.47 6.57 10.47 +étangs étang nom m p 7.10 15.47 0.53 5.00 +étant être aux 8074.24 6501.82 30.94 76.82 par:pre; +étançon étançon nom m s 0.00 0.20 0.00 0.20 +étape étape nom f s 15.77 23.65 12.44 14.46 +étapes étape nom f p 15.77 23.65 3.34 9.19 +état_civil état_civil nom m s 0.03 0.54 0.03 0.47 +état_major état_major nom m s 5.24 22.43 5.16 18.31 +état état nom m s 145.72 218.18 136.81 192.03 +étatique étatique adj s 0.07 0.20 0.07 0.07 +étatiques étatique adj p 0.07 0.20 0.00 0.14 +étatisation étatisation nom f s 0.03 0.00 0.03 0.00 +étatisme étatisme nom m s 0.01 0.07 0.01 0.07 +état_civil état_civil nom m p 0.03 0.54 0.00 0.07 +état_major état_major nom m p 5.24 22.43 0.09 4.12 +états état nom m p 145.72 218.18 8.91 26.15 +étau étau nom m s 0.75 4.86 0.61 4.39 +étaux étau nom m p 0.75 4.86 0.14 0.47 +étayage étayage nom m s 0.01 0.07 0.01 0.07 +étayaient étayer ver 0.72 4.05 0.00 0.20 ind:imp:3p; +étayait étayer ver 0.72 4.05 0.00 0.41 ind:imp:3s; +étayant étayer ver 0.72 4.05 0.01 0.34 par:pre; +étaye étayer ver 0.72 4.05 0.08 0.00 ind:pre:3s; +étayer étayer ver 0.72 4.05 0.47 1.15 inf; +étayez étayer ver 0.72 4.05 0.03 0.07 imp:pre:2p;ind:pre:2p; +étayé étayer ver m s 0.72 4.05 0.02 0.54 par:pas; +étayée étayer ver f s 0.72 4.05 0.02 0.47 par:pas; +étayées étayer ver f p 0.72 4.05 0.05 0.14 par:pas; +étayés étayer ver m p 0.72 4.05 0.00 0.61 par:pas; +éteignît éteindre ver 57.32 76.82 0.00 0.54 sub:imp:3s; +éteignaient éteindre ver 57.32 76.82 0.18 2.23 ind:imp:3p; +éteignais éteindre ver 57.32 76.82 0.10 0.34 ind:imp:1s;ind:imp:2s; +éteignait éteindre ver 57.32 76.82 0.22 4.46 ind:imp:3s; +éteignant éteindre ver 57.32 76.82 0.34 2.84 par:pre; +éteigne éteindre ver 57.32 76.82 1.16 0.81 sub:pre:1s;sub:pre:3s; +éteignent éteindre ver 57.32 76.82 1.36 2.64 ind:pre:3p; +éteignes éteindre ver 57.32 76.82 0.08 0.00 sub:pre:2s; +éteignez éteindre ver 57.32 76.82 3.98 0.54 imp:pre:2p;ind:pre:2p; +éteignions éteindre ver 57.32 76.82 0.00 0.07 ind:imp:1p; +éteignirent éteindre ver 57.32 76.82 0.04 1.69 ind:pas:3p; +éteignis éteindre ver 57.32 76.82 0.10 0.47 ind:pas:1s; +éteignit éteindre ver 57.32 76.82 0.39 11.15 ind:pas:3s; +éteignoir éteignoir nom m s 0.16 0.14 0.16 0.14 +éteignons éteindre ver 57.32 76.82 0.10 0.00 imp:pre:1p;ind:pre:1p; +éteindra éteindre ver 57.32 76.82 1.69 0.54 ind:fut:3s; +éteindrai éteindre ver 57.32 76.82 0.92 0.00 ind:fut:1s; +éteindraient éteindre ver 57.32 76.82 0.01 0.07 cnd:pre:3p; +éteindrais éteindre ver 57.32 76.82 0.04 0.07 cnd:pre:1s; +éteindrait éteindre ver 57.32 76.82 0.19 0.47 cnd:pre:3s; +éteindras éteindre ver 57.32 76.82 0.18 0.00 ind:fut:2s; +éteindre éteindre ver 57.32 76.82 14.48 16.62 inf; +éteindrez éteindre ver 57.32 76.82 0.14 0.14 ind:fut:2p; +éteindrons éteindre ver 57.32 76.82 0.23 0.41 ind:fut:1p; +éteindront éteindre ver 57.32 76.82 0.21 0.34 ind:fut:3p; +éteins éteindre ver 57.32 76.82 10.44 2.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +éteint éteindre ver m s 57.32 76.82 16.42 19.12 ind:pre:3s;par:pas; +éteinte éteindre ver f s 57.32 76.82 2.98 4.53 par:pas; +éteintes éteindre ver f p 57.32 76.82 0.77 1.69 par:pas; +éteints éteint adj m p 2.79 17.91 0.80 4.32 +étend étendre ver 21.90 111.89 4.98 11.28 ind:pre:3s; +étendîmes étendre ver 21.90 111.89 0.00 0.07 ind:pas:1p; +étendît étendre ver 21.90 111.89 0.00 0.34 sub:imp:3s; +étendage étendage nom m s 0.02 0.20 0.02 0.20 +étendaient étendre ver 21.90 111.89 0.14 3.45 ind:imp:3p; +étendais étendre ver 21.90 111.89 0.03 0.88 ind:imp:1s; +étendait étendre ver 21.90 111.89 1.01 13.99 ind:imp:3s; +étendant étendre ver 21.90 111.89 0.07 3.24 par:pre; +étendard étendard nom m s 0.77 4.80 0.65 2.23 +étendards étendard nom m p 0.77 4.80 0.12 2.57 +étende étendre ver 21.90 111.89 0.27 0.47 sub:pre:1s;sub:pre:3s; +étendent étendre ver 21.90 111.89 0.81 2.30 ind:pre:3p; +étendez étendre ver 21.90 111.89 0.27 0.20 imp:pre:2p;ind:pre:2p; +étendions étendre ver 21.90 111.89 0.00 0.14 ind:imp:1p; +étendirent étendre ver 21.90 111.89 0.00 1.01 ind:pas:3p; +étendis étendre ver 21.90 111.89 0.02 1.22 ind:pas:1s; +étendit étendre ver 21.90 111.89 0.28 12.09 ind:pas:3s; +étendoir étendoir nom m s 0.02 0.14 0.02 0.14 +étendons étendre ver 21.90 111.89 0.04 0.20 imp:pre:1p;ind:pre:1p; +étendra étendre ver 21.90 111.89 0.21 0.14 ind:fut:3s; +étendrai étendre ver 21.90 111.89 0.08 0.27 ind:fut:1s; +étendraient étendre ver 21.90 111.89 0.00 0.07 cnd:pre:3p; +étendrais étendre ver 21.90 111.89 0.01 0.14 cnd:pre:1s; +étendrait étendre ver 21.90 111.89 0.06 0.61 cnd:pre:3s; +étendre étendre ver 21.90 111.89 5.87 19.59 inf;; +étendrez étendre ver 21.90 111.89 0.00 0.07 ind:fut:2p; +étendrions étendre ver 21.90 111.89 0.00 0.07 cnd:pre:1p; +étendrons étendre ver 21.90 111.89 0.05 0.00 ind:fut:1p; +étendront étendre ver 21.90 111.89 0.05 0.00 ind:fut:3p; +étends étendre ver 21.90 111.89 1.42 2.23 imp:pre:2s;ind:pre:1s;ind:pre:2s; +étendu étendre ver m s 21.90 111.89 3.56 20.54 par:pas; +étendue étendue nom f s 3.96 24.46 3.52 18.85 +étendues étendue nom f p 3.96 24.46 0.45 5.61 +étendus étendre ver m p 21.90 111.89 0.51 3.38 par:pas; +éternel éternel adj m s 30.53 45.88 14.06 19.86 +éternelle éternel adj f s 30.53 45.88 12.85 18.18 +éternellement éternellement adv 8.01 9.93 8.01 9.93 +éternelles éternel adj f p 30.53 45.88 1.52 3.78 +éternels éternel adj m p 30.53 45.88 2.10 4.05 +éternisa éterniser ver 1.31 4.32 0.00 0.34 ind:pas:3s; +éternisaient éterniser ver 1.31 4.32 0.00 0.14 ind:imp:3p; +éternisais éterniser ver 1.31 4.32 0.00 0.07 ind:imp:1s; +éternisait éterniser ver 1.31 4.32 0.00 0.95 ind:imp:3s; +éternise éterniser ver 1.31 4.32 0.41 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éternisent éterniser ver 1.31 4.32 0.02 0.20 ind:pre:3p; +éterniser éterniser ver 1.31 4.32 0.65 1.35 inf; +éterniserai éterniser ver 1.31 4.32 0.02 0.00 ind:fut:1s; +éterniserait éterniser ver 1.31 4.32 0.00 0.07 cnd:pre:3s; +éterniserons éterniser ver 1.31 4.32 0.01 0.00 ind:fut:1p; +éternisez éterniser ver 1.31 4.32 0.13 0.00 imp:pre:2p;ind:pre:2p; +éternisons éterniser ver 1.31 4.32 0.00 0.07 imp:pre:1p; +éternisât éterniser ver 1.31 4.32 0.00 0.07 sub:imp:3s; +éternisé éterniser ver m s 1.31 4.32 0.04 0.20 par:pas; +éternisée éterniser ver f s 1.31 4.32 0.02 0.00 par:pas; +éternisés éterniser ver m p 1.31 4.32 0.01 0.14 par:pas; +éternité éternité nom f s 18.20 31.62 18.00 30.95 +éternités éternité nom f p 18.20 31.62 0.20 0.68 +éternua éternuer ver 3.48 4.26 0.00 1.28 ind:pas:3s; +éternuaient éternuer ver 3.48 4.26 0.00 0.07 ind:imp:3p; +éternuais éternuer ver 3.48 4.26 0.03 0.07 ind:imp:1s; +éternuait éternuer ver 3.48 4.26 0.02 0.20 ind:imp:3s; +éternuant éternuer ver 3.48 4.26 0.20 0.20 par:pre; +éternue éternuer ver 3.48 4.26 1.25 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éternuement éternuement nom m s 1.00 1.55 0.65 1.01 +éternuements éternuement nom m p 1.00 1.55 0.36 0.54 +éternuent éternuer ver 3.48 4.26 0.04 0.00 ind:pre:3p; +éternuer éternuer ver 3.48 4.26 1.02 1.62 inf; +éternuerait éternuer ver 3.48 4.26 0.00 0.07 cnd:pre:3s; +éternues éternuer ver 3.48 4.26 0.23 0.00 ind:pre:2s; +éternuez éternuer ver 3.48 4.26 0.06 0.07 imp:pre:2p;ind:pre:2p; +éternué éternuer ver m s 3.48 4.26 0.63 0.27 par:pas; +êtes être aux 8074.24 6501.82 260.22 51.89 ind:pre:2p; +éteule éteule nom f s 0.00 0.54 0.00 0.07 +éteules éteule nom f p 0.00 0.54 0.00 0.47 +éthane éthane nom m s 0.01 0.00 0.01 0.00 +éthanol éthanol nom m s 0.29 0.00 0.29 0.00 +éther éther nom m s 1.43 4.05 1.43 3.92 +éthers éther nom m p 1.43 4.05 0.00 0.14 +éthiopien éthiopien adj m s 0.59 0.47 0.31 0.07 +éthiopienne éthiopien adj f s 0.59 0.47 0.14 0.27 +éthiopiennes éthiopien adj f p 0.59 0.47 0.01 0.00 +éthiopiens éthiopien adj m p 0.59 0.47 0.14 0.14 +éthique éthique nom f s 4.56 1.08 4.55 1.01 +éthiquement éthiquement adv 0.09 0.00 0.09 0.00 +éthiques éthique adj p 1.22 0.41 0.28 0.27 +éthologie éthologie nom f s 0.11 0.07 0.11 0.07 +éthologue éthologue nom s 0.01 0.00 0.01 0.00 +éthérique éthérique adj f s 0.01 0.00 0.01 0.00 +éthéré éthéré adj m s 0.40 0.95 0.23 0.27 +éthérée éthéré adj f s 0.40 0.95 0.00 0.41 +éthérées éthéré adj f p 0.40 0.95 0.16 0.20 +éthérés éthéré adj m p 0.40 0.95 0.01 0.07 +éthyle éthyle nom m s 0.07 0.00 0.07 0.00 +éthylique éthylique adj s 0.26 0.61 0.26 0.34 +éthyliques éthylique adj p 0.26 0.61 0.00 0.27 +éthylisme éthylisme nom m s 0.10 0.20 0.10 0.20 +éthylotest éthylotest nom m s 0.05 0.00 0.05 0.00 +éthylène éthylène nom m s 0.09 0.00 0.09 0.00 +étiage étiage nom m s 0.00 0.34 0.00 0.34 +étier étier nom m s 0.00 0.34 0.00 0.07 +étiers étier nom m p 0.00 0.34 0.00 0.27 +étiez être aux 8074.24 6501.82 23.15 7.30 ind:imp:2p; +utile utile adj s 44.99 32.70 36.47 23.99 +utilement utilement adv 0.03 1.49 0.03 1.49 +utiles utile adj p 44.99 32.70 8.52 8.72 +utilisa utiliser ver 182.44 43.51 0.23 0.68 ind:pas:3s; +utilisable utilisable adj s 1.62 1.69 1.30 1.15 +utilisables utilisable adj p 1.62 1.69 0.32 0.54 +utilisai utiliser ver 182.44 43.51 0.00 0.14 ind:pas:1s; +utilisaient utiliser ver 182.44 43.51 1.68 1.96 ind:imp:3p; +utilisais utiliser ver 182.44 43.51 1.15 0.47 ind:imp:1s;ind:imp:2s; +utilisait utiliser ver 182.44 43.51 3.84 5.41 ind:imp:3s; +utilisant utiliser ver 182.44 43.51 5.73 3.72 par:pre; +utilisateur utilisateur nom m s 1.24 0.20 0.79 0.00 +utilisateurs utilisateur nom m p 1.24 0.20 0.44 0.20 +utilisation utilisation nom f s 4.67 4.26 4.47 4.12 +utilisations utilisation nom f p 4.67 4.26 0.20 0.14 +utilisatrice utilisateur nom f s 1.24 0.20 0.01 0.00 +utilise utiliser ver 182.44 43.51 31.68 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +utilisent utiliser ver 182.44 43.51 8.00 1.49 ind:pre:3p; +utiliser utiliser ver 182.44 43.51 61.97 15.61 ind:pre:2p;inf; +utilisera utiliser ver 182.44 43.51 1.62 0.14 ind:fut:3s; +utiliserai utiliser ver 182.44 43.51 1.82 0.20 ind:fut:1s; +utiliseraient utiliser ver 182.44 43.51 0.20 0.34 cnd:pre:3p; +utiliserais utiliser ver 182.44 43.51 1.17 0.14 cnd:pre:1s;cnd:pre:2s; +utiliserait utiliser ver 182.44 43.51 0.80 0.34 cnd:pre:3s; +utiliseras utiliser ver 182.44 43.51 0.58 0.00 ind:fut:2s; +utiliserez utiliser ver 182.44 43.51 0.36 0.00 ind:fut:2p; +utiliseriez utiliser ver 182.44 43.51 0.17 0.00 cnd:pre:2p; +utiliserions utiliser ver 182.44 43.51 0.03 0.00 cnd:pre:1p; +utiliserons utiliser ver 182.44 43.51 1.02 0.00 ind:fut:1p; +utiliseront utiliser ver 182.44 43.51 0.49 0.07 ind:fut:3p; +utilises utiliser ver 182.44 43.51 3.80 0.20 ind:pre:2s;sub:pre:2s; +utilisez utiliser ver 182.44 43.51 11.86 0.34 imp:pre:2p;ind:pre:2p; +utilisiez utiliser ver 182.44 43.51 0.66 0.41 ind:imp:2p;sub:pre:2p; +utilisions utiliser ver 182.44 43.51 0.37 0.14 ind:imp:1p; +utilisons utiliser ver 182.44 43.51 3.04 0.07 imp:pre:1p;ind:pre:1p; +utilisât utiliser ver 182.44 43.51 0.00 0.07 sub:imp:3s; +utilisèrent utiliser ver 182.44 43.51 0.06 0.07 ind:pas:3p; +utilisé utiliser ver m s 182.44 43.51 30.65 4.19 par:pas; +utilisée utiliser ver f s 182.44 43.51 5.59 1.62 par:pas; +utilisées utiliser ver f p 182.44 43.51 1.43 0.88 par:pas; +utilisés utiliser ver m p 182.44 43.51 2.44 1.89 par:pas; +utilitaire utilitaire nom s 0.16 0.34 0.15 0.14 +utilitaires utilitaire adj p 0.12 1.35 0.01 0.27 +utilitarisme utilitarisme nom m s 0.00 0.07 0.00 0.07 +utilité utilité nom f s 4.28 7.09 4.15 6.49 +utilités utilité nom f p 4.28 7.09 0.13 0.61 +étincela étinceler ver 1.29 10.81 0.00 0.41 ind:pas:3s; +étincelaient étinceler ver 1.29 10.81 0.05 2.36 ind:imp:3p; +étincelait étinceler ver 1.29 10.81 0.02 3.11 ind:imp:3s; +étincelant étincelant adj m s 1.29 13.18 0.34 3.24 +étincelante étincelant adj f s 1.29 13.18 0.58 4.53 +étincelantes étincelant adj f p 1.29 13.18 0.25 2.70 +étincelants étincelant adj m p 1.29 13.18 0.12 2.70 +étinceler étinceler ver 1.29 10.81 0.07 0.88 inf; +étincelle étincelle nom f s 6.30 12.97 3.59 5.07 +étincellement étincellement nom m s 0.14 0.81 0.14 0.74 +étincellements étincellement nom m p 0.14 0.81 0.00 0.07 +étincellent étinceler ver 1.29 10.81 0.16 0.61 ind:pre:3p; +étincellera étinceler ver 1.29 10.81 0.03 0.00 ind:fut:3s; +étincelles étincelle nom f p 6.30 12.97 2.71 7.91 +étincelèrent étinceler ver 1.29 10.81 0.00 0.34 ind:pas:3p; +étincelé étinceler ver m s 1.29 10.81 0.00 0.20 par:pas; +étiolaient étioler ver 0.45 2.09 0.00 0.07 ind:imp:3p; +étiolais étioler ver 0.45 2.09 0.00 0.07 ind:imp:1s; +étiolait étioler ver 0.45 2.09 0.00 0.14 ind:imp:3s; +étiolant étioler ver 0.45 2.09 0.00 0.07 par:pre; +étiole étioler ver 0.45 2.09 0.16 0.41 ind:pre:1s;ind:pre:3s; +étiolement étiolement nom m s 0.00 0.07 0.00 0.07 +étiolent étioler ver 0.45 2.09 0.01 0.54 ind:pre:3p; +étioler étioler ver 0.45 2.09 0.26 0.54 inf; +étiologie étiologie nom f s 0.03 0.00 0.03 0.00 +étiologique étiologique adj m s 0.02 0.07 0.01 0.00 +étiologiques étiologique adj p 0.02 0.07 0.01 0.07 +étiolé étioler ver m s 0.45 2.09 0.00 0.07 par:pas; +étiolée étioler ver f s 0.45 2.09 0.03 0.14 par:pas; +étiolées étioler ver f p 0.45 2.09 0.00 0.07 par:pas; +étions être aux 8074.24 6501.82 9.63 47.77 ind:imp:1p; +étique étique adj s 0.11 0.68 0.09 0.34 +étiques étique adj p 0.11 0.68 0.02 0.34 +étiquetage étiquetage nom m s 0.12 0.00 0.12 0.00 +étiquetaient étiqueter ver 1.13 2.03 0.00 0.07 ind:imp:3p; +étiqueter étiqueter ver 1.13 2.03 0.35 0.27 inf; +étiqueteuse étiqueteur nom f s 0.04 0.00 0.04 0.00 +étiquetez étiqueter ver 1.13 2.03 0.09 0.00 imp:pre:2p;ind:pre:2p; +étiquette étiquette nom f s 7.38 15.74 5.44 8.65 +étiquettent étiqueter ver 1.13 2.03 0.01 0.07 ind:pre:3p; +étiquettes étiquette nom f p 7.38 15.74 1.94 7.09 +étiqueté étiqueter ver m s 1.13 2.03 0.31 0.47 par:pas; +étiquetée étiqueter ver f s 1.13 2.03 0.09 0.14 par:pas; +étiquetées étiqueter ver f p 1.13 2.03 0.05 0.34 par:pas; +étiquetés étiqueter ver m p 1.13 2.03 0.15 0.54 par:pas; +étira étirer ver 3.28 40.27 0.00 7.09 ind:pas:3s; +étirable étirable adj m s 0.01 0.00 0.01 0.00 +étirage étirage nom m s 0.14 0.00 0.14 0.00 +étirai étirer ver 3.28 40.27 0.00 0.34 ind:pas:1s; +étiraient étirer ver 3.28 40.27 0.02 2.50 ind:imp:3p; +étirais étirer ver 3.28 40.27 0.11 0.27 ind:imp:1s;ind:imp:2s; +étirait étirer ver 3.28 40.27 0.06 5.07 ind:imp:3s; +étirant étirer ver 3.28 40.27 0.06 4.39 par:pre; +étire étirer ver 3.28 40.27 0.99 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +étirement étirement nom m s 0.33 1.01 0.09 0.54 +étirements étirement nom m p 0.33 1.01 0.24 0.47 +étirent étirer ver 3.28 40.27 0.35 1.96 ind:pre:3p; +étirer étirer ver 3.28 40.27 0.93 3.11 inf; +étirerait étirer ver 3.28 40.27 0.02 0.00 cnd:pre:3s; +étirez étirer ver 3.28 40.27 0.09 0.00 imp:pre:2p;ind:pre:2p; +étirèrent étirer ver 3.28 40.27 0.01 0.54 ind:pas:3p; +étiré étirer ver m s 3.28 40.27 0.29 2.03 par:pas; +étirée étirer ver f s 3.28 40.27 0.06 1.49 par:pas; +étirées étirer ver f p 3.28 40.27 0.12 1.69 par:pas; +étirés étirer ver m p 3.28 40.27 0.15 1.76 par:pas; +étisie étisie nom f s 0.00 0.07 0.00 0.07 +étoffaient étoffer ver 0.33 0.81 0.00 0.07 ind:imp:3p; +étoffait étoffer ver 0.33 0.81 0.00 0.14 ind:imp:3s; +étoffe étoffe nom f s 3.10 28.24 2.90 19.26 +étoffer étoffer ver 0.33 0.81 0.14 0.14 inf; +étoffes étoffe nom f p 3.10 28.24 0.20 8.99 +étoffé étoffer ver m s 0.33 0.81 0.11 0.27 par:pas; +étoffée étoffer ver f s 0.33 0.81 0.04 0.07 par:pas; +étoffées étoffé adj f p 0.07 0.34 0.00 0.07 +étoffés étoffer ver m p 0.33 0.81 0.00 0.07 par:pas; +étoila étoiler ver 0.95 3.78 0.00 0.07 ind:pas:3s; +étoilaient étoiler ver 0.95 3.78 0.00 0.20 ind:imp:3p; +étoilait étoiler ver 0.95 3.78 0.01 0.47 ind:imp:3s; +étoile étoile nom f s 54.63 81.82 21.65 29.80 +étoilent étoiler ver 0.95 3.78 0.00 0.07 ind:pre:3p; +étoiles étoile nom f p 54.63 81.82 32.98 52.03 +étoilé étoilé adj m s 1.35 3.18 0.59 1.28 +étoilée étoilé adj f s 1.35 3.18 0.71 0.88 +étoilées étoilé adj f p 1.35 3.18 0.03 0.68 +étoilés étoilé adj m p 1.35 3.18 0.02 0.34 +étole étole nom f s 0.29 2.09 0.29 1.69 +étoles étole nom f p 0.29 2.09 0.00 0.41 +étonna étonner ver 53.63 116.55 0.23 14.19 ind:pas:3s; +étonnai étonner ver 53.63 116.55 0.00 1.49 ind:pas:1s; +étonnaient étonner ver 53.63 116.55 0.02 2.64 ind:imp:3p; +étonnais étonner ver 53.63 116.55 0.23 3.58 ind:imp:1s;ind:imp:2s; +étonnait étonner ver 53.63 116.55 0.91 15.47 ind:imp:3s; +étonnamment étonnamment adv 1.01 3.99 1.01 3.99 +étonnant étonnant adj m s 19.85 30.00 15.52 16.15 +étonnante étonnant adj f s 19.85 30.00 2.95 10.47 +étonnantes étonnant adj f p 19.85 30.00 0.72 1.89 +étonnants étonnant adj m p 19.85 30.00 0.66 1.49 +étonne étonner ver 53.63 116.55 21.18 21.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +étonnement étonnement nom m s 1.28 31.96 1.28 30.74 +étonnements étonnement nom m p 1.28 31.96 0.00 1.22 +étonnent étonner ver 53.63 116.55 0.49 1.96 ind:pre:3p; +étonner étonner ver 53.63 116.55 3.40 12.23 inf; +étonnera étonner ver 53.63 116.55 0.62 1.08 ind:fut:3s; +étonnerai étonner ver 53.63 116.55 0.18 0.07 ind:fut:1s; +étonneraient étonner ver 53.63 116.55 0.03 0.41 cnd:pre:3p; +étonnerais étonner ver 53.63 116.55 0.02 0.14 cnd:pre:1s; +étonnerait étonner ver 53.63 116.55 10.62 7.84 cnd:pre:3s; +étonneras étonner ver 53.63 116.55 0.10 0.14 ind:fut:2s; +étonnerez étonner ver 53.63 116.55 0.06 0.07 ind:fut:2p; +étonneriez étonner ver 53.63 116.55 0.00 0.07 cnd:pre:2p; +étonnerons étonner ver 53.63 116.55 0.00 0.07 ind:fut:1p; +étonneront étonner ver 53.63 116.55 0.04 0.27 ind:fut:3p; +étonnes étonner ver 53.63 116.55 4.30 1.15 ind:pre:2s; +étonnez étonner ver 53.63 116.55 1.46 1.62 imp:pre:2p;ind:pre:2p; +étonniez étonner ver 53.63 116.55 0.02 0.07 ind:imp:2p; +étonnions étonner ver 53.63 116.55 0.00 0.27 ind:imp:1p; +étonnâmes étonner ver 53.63 116.55 0.00 0.14 ind:pas:1p; +étonnons étonner ver 53.63 116.55 0.01 0.20 imp:pre:1p;ind:pre:1p; +étonnât étonner ver 53.63 116.55 0.00 0.07 sub:imp:3s; +étonnèrent étonner ver 53.63 116.55 0.00 1.15 ind:pas:3p; +étonné étonner ver m s 53.63 116.55 3.21 15.07 par:pas; +étonnée étonner ver f s 53.63 116.55 2.39 6.76 par:pas; +étonnées étonné adj f p 3.37 23.31 0.10 0.61 +étonnés étonner ver m p 53.63 116.55 0.52 2.03 par:pas; +utopie utopie nom f s 1.48 1.28 1.16 0.88 +utopies utopie nom f p 1.48 1.28 0.32 0.41 +utopique utopique adj s 0.49 0.61 0.33 0.41 +utopiques utopique adj f p 0.49 0.61 0.16 0.20 +utopiste utopiste nom s 0.29 0.07 0.11 0.07 +utopistes utopiste nom p 0.29 0.07 0.18 0.00 +étouffa étouffer ver 28.50 59.46 0.11 2.50 ind:pas:3s; +étouffai étouffer ver 28.50 59.46 0.00 0.14 ind:pas:1s; +étouffaient étouffer ver 28.50 59.46 0.03 2.84 ind:imp:3p; +étouffais étouffer ver 28.50 59.46 0.32 1.96 ind:imp:1s;ind:imp:2s; +étouffait étouffer ver 28.50 59.46 0.34 8.92 ind:imp:3s; +étouffant étouffant adj m s 1.36 7.97 0.83 2.70 +étouffante étouffant adj f s 1.36 7.97 0.51 4.19 +étouffantes étouffant adj f p 1.36 7.97 0.01 0.54 +étouffants étouffant adj m p 1.36 7.97 0.01 0.54 +étouffassent étouffer ver 28.50 59.46 0.00 0.07 sub:imp:3p; +étouffe_chrétien étouffe_chrétien nom m 0.01 0.00 0.01 0.00 +étouffe étouffer ver 28.50 59.46 11.88 8.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +étouffement étouffement nom m s 0.64 3.92 0.64 3.45 +étouffements étouffement nom m p 0.64 3.92 0.00 0.47 +étouffent étouffer ver 28.50 59.46 0.98 1.49 ind:pre:3p; +étouffer étouffer ver 28.50 59.46 7.45 12.30 inf;; +étouffera étouffer ver 28.50 59.46 0.22 0.20 ind:fut:3s; +étoufferai étouffer ver 28.50 59.46 0.26 0.00 ind:fut:1s; +étoufferaient étouffer ver 28.50 59.46 0.10 0.07 cnd:pre:3p; +étoufferais étouffer ver 28.50 59.46 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +étoufferait étouffer ver 28.50 59.46 0.29 0.47 cnd:pre:3s; +étoufferez étouffer ver 28.50 59.46 0.04 0.00 ind:fut:2p; +étoufferiez étouffer ver 28.50 59.46 0.01 0.00 cnd:pre:2p; +étoufferons étouffer ver 28.50 59.46 0.03 0.07 ind:fut:1p; +étoufferont étouffer ver 28.50 59.46 0.03 0.07 ind:fut:3p; +étouffes étouffer ver 28.50 59.46 1.32 0.95 ind:pre:2s; +étouffeur étouffeur nom m s 0.03 0.07 0.03 0.00 +étouffeuses étouffeur nom f p 0.03 0.07 0.00 0.07 +étouffez étouffer ver 28.50 59.46 0.32 0.07 imp:pre:2p;ind:pre:2p; +étouffiez étouffer ver 28.50 59.46 0.02 0.00 ind:imp:2p; +étouffions étouffer ver 28.50 59.46 0.00 0.14 ind:imp:1p; +étouffoir étouffoir nom m s 0.00 0.20 0.00 0.14 +étouffoirs étouffoir nom m p 0.00 0.20 0.00 0.07 +étouffons étouffer ver 28.50 59.46 0.02 0.07 imp:pre:1p;ind:pre:1p; +étouffât étouffer ver 28.50 59.46 0.00 0.34 sub:imp:3s; +étouffèrent étouffer ver 28.50 59.46 0.20 0.34 ind:pas:3p; +étouffé étouffer ver m s 28.50 59.46 2.48 5.20 par:pas; +étouffée étouffer ver f s 28.50 59.46 1.36 5.27 par:pas; +étouffées étouffer ver f p 28.50 59.46 0.17 1.82 par:pas; +étouffés étouffé adj m p 0.74 8.11 0.46 3.78 +étoupe étoupe nom f s 0.07 1.28 0.07 1.28 +étourderie étourderie nom f s 0.30 1.69 0.30 1.49 +étourderies étourderie nom f p 0.30 1.69 0.00 0.20 +étourdi étourdi adj m s 1.00 3.58 0.56 2.30 +étourdie étourdi adj f s 1.00 3.58 0.44 0.88 +étourdies étourdi nom f p 0.73 2.16 0.01 0.00 +étourdiment étourdiment adv 0.01 0.95 0.01 0.95 +étourdir étourdir ver 1.13 7.64 0.17 1.22 inf; +étourdira étourdir ver 1.13 7.64 0.01 0.00 ind:fut:3s; +étourdirait étourdir ver 1.13 7.64 0.00 0.07 cnd:pre:3s; +étourdirent étourdir ver 1.13 7.64 0.00 0.07 ind:pas:3p; +étourdis étourdir ver m p 1.13 7.64 0.06 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +étourdissaient étourdir ver 1.13 7.64 0.00 0.41 ind:imp:3p; +étourdissait étourdir ver 1.13 7.64 0.00 1.22 ind:imp:3s; +étourdissant étourdissant adj m s 0.40 2.03 0.23 0.88 +étourdissante étourdissant adj f s 0.40 2.03 0.14 0.95 +étourdissantes étourdissant adj f p 0.40 2.03 0.03 0.14 +étourdissants étourdissant adj m p 0.40 2.03 0.00 0.07 +étourdissement étourdissement nom m s 0.81 1.82 0.62 1.42 +étourdissements étourdissement nom m p 0.81 1.82 0.20 0.41 +étourdissent étourdir ver 1.13 7.64 0.03 0.14 ind:pre:3p; +étourdissez étourdir ver 1.13 7.64 0.11 0.00 ind:pre:2p; +étourdissons étourdir ver 1.13 7.64 0.00 0.07 ind:pre:1p; +étourdit étourdir ver 1.13 7.64 0.20 0.88 ind:pre:3s;ind:pas:3s; +étourneau étourneau nom m s 0.41 1.22 0.33 0.27 +étourneaux étourneau nom m p 0.41 1.22 0.09 0.95 +étrange étrange adj s 85.61 103.58 70.99 83.65 +étrangement étrangement adv 3.85 14.86 3.85 14.86 +étranger étranger nom m s 58.84 66.62 35.72 33.85 +étrangers étranger nom m p 58.84 66.62 19.67 23.85 +étranges étrange adj p 85.61 103.58 14.61 19.93 +étrangeté étrangeté nom f s 0.39 5.68 0.35 4.93 +étrangetés étrangeté nom f p 0.39 5.68 0.04 0.74 +étrangla étrangler ver 18.53 22.09 0.00 2.30 ind:pas:3s; +étranglai étrangler ver 18.53 22.09 0.00 0.20 ind:pas:1s; +étranglaient étrangler ver 18.53 22.09 0.04 0.41 ind:imp:3p; +étranglais étrangler ver 18.53 22.09 0.04 0.14 ind:imp:1s;ind:imp:2s; +étranglait étrangler ver 18.53 22.09 0.21 2.70 ind:imp:3s; +étranglant étrangler ver 18.53 22.09 0.10 1.15 par:pre; +étrangle étrangler ver 18.53 22.09 4.04 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +étranglement étranglement nom m s 0.62 1.42 0.61 1.08 +étranglements étranglement nom m p 0.62 1.42 0.01 0.34 +étranglent étrangler ver 18.53 22.09 0.36 0.27 ind:pre:3p; +étrangler étrangler ver 18.53 22.09 6.87 6.49 ind:pre:2p;inf; +étranglera étrangler ver 18.53 22.09 0.16 0.14 ind:fut:3s; +étranglerai étrangler ver 18.53 22.09 0.16 0.20 ind:fut:1s; +étrangleraient étrangler ver 18.53 22.09 0.01 0.07 cnd:pre:3p; +étranglerais étrangler ver 18.53 22.09 0.46 0.00 cnd:pre:1s;cnd:pre:2s; +étranglerait étrangler ver 18.53 22.09 0.15 0.00 cnd:pre:3s; +étrangleront étrangler ver 18.53 22.09 0.17 0.00 ind:fut:3p; +étrangles étrangler ver 18.53 22.09 0.36 0.07 ind:pre:2s; +étrangleur étrangleur nom m s 0.66 0.88 0.62 0.74 +étrangleurs étrangleur nom m p 0.66 0.88 0.03 0.14 +étrangleuse étrangleur nom f s 0.66 0.88 0.01 0.00 +étrangleuses étrangleur adj f p 0.04 0.27 0.00 0.07 +étranglez étrangler ver 18.53 22.09 0.11 0.07 imp:pre:2p;ind:pre:2p; +étranglât étrangler ver 18.53 22.09 0.00 0.07 sub:imp:3s; +étranglé étrangler ver m s 18.53 22.09 3.44 2.23 par:pas; +étranglée étrangler ver f s 18.53 22.09 1.50 1.96 par:pas; +étranglées étrangler ver f p 18.53 22.09 0.14 0.14 par:pas; +étranglés étrangler ver m p 18.53 22.09 0.22 0.14 par:pas; +étrangère étranger adj f s 31.39 75.00 7.25 20.47 +étrangères étranger adj f p 31.39 75.00 4.46 16.82 +étrangéité étrangéité nom f s 0.00 0.07 0.00 0.07 +étrave étrave nom f s 0.07 3.31 0.07 3.11 +étraves étrave nom f p 0.07 3.31 0.00 0.20 +être_là être_là nom m 0.14 0.00 0.14 0.00 +être être aux 8074.24 6501.82 725.09 685.47 inf; +étreignîmes étreindre ver 3.05 16.96 0.00 0.07 ind:pas:1p; +étreignaient étreindre ver 3.05 16.96 0.11 0.81 ind:imp:3p; +étreignais étreindre ver 3.05 16.96 0.02 0.07 ind:imp:1s; +étreignait étreindre ver 3.05 16.96 0.14 3.45 ind:imp:3s; +étreignant étreindre ver 3.05 16.96 0.26 1.22 par:pre; +étreigne étreindre ver 3.05 16.96 0.14 0.07 sub:pre:1s;sub:pre:3s; +étreignent étreindre ver 3.05 16.96 0.06 1.08 ind:pre:3p;sub:pre:3p; +étreignions étreindre ver 3.05 16.96 0.00 0.27 ind:imp:1p; +étreignirent étreindre ver 3.05 16.96 0.00 0.41 ind:pas:3p; +étreignit étreindre ver 3.05 16.96 0.16 1.76 ind:pas:3s; +étreignons étreindre ver 3.05 16.96 0.01 0.07 imp:pre:1p;ind:pre:1p; +étreindrait étreindre ver 3.05 16.96 0.00 0.07 cnd:pre:3s; +étreindre étreindre ver 3.05 16.96 0.69 2.97 inf;; +étreindrons étreindre ver 3.05 16.96 0.00 0.07 ind:fut:1p; +étreindront étreindre ver 3.05 16.96 0.14 0.07 ind:fut:3p; +étreins étreindre ver 3.05 16.96 0.30 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +étreint étreindre ver m s 3.05 16.96 0.95 3.38 ind:pre:3s;par:pas; +étreinte étreinte nom f s 2.75 16.42 2.06 12.36 +étreintes étreinte nom f p 2.75 16.42 0.70 4.05 +étreints étreindre ver m p 3.05 16.96 0.01 0.68 par:pas; +étrenna étrenner ver 0.37 1.28 0.00 0.07 ind:pas:3s; +étrennait étrenner ver 0.37 1.28 0.01 0.20 ind:imp:3s; +étrennant étrenner ver 0.37 1.28 0.00 0.07 par:pre; +étrenne étrenner ver 0.37 1.28 0.14 0.07 ind:pre:3s; +étrennent étrenner ver 0.37 1.28 0.00 0.07 ind:pre:3p; +étrenner étrenner ver 0.37 1.28 0.07 0.47 inf; +étrennera étrenner ver 0.37 1.28 0.01 0.07 ind:fut:3s; +étrennerais étrenner ver 0.37 1.28 0.00 0.07 cnd:pre:1s; +étrennes étrenne nom f p 0.17 1.22 0.17 1.08 +étrenné étrenner ver m s 0.37 1.28 0.02 0.07 par:pas; +étrennée étrenner ver f s 0.37 1.28 0.01 0.14 par:pas; +êtres être nom m p 100.69 122.57 21.91 45.20 +étrier étrier nom m s 0.83 5.00 0.33 2.43 +étriers étrier nom m p 0.83 5.00 0.50 2.57 +étrilla étriller ver 0.11 1.15 0.00 0.14 ind:pas:3s; +étrillage étrillage nom m s 0.00 0.14 0.00 0.14 +étrillaient étriller ver 0.11 1.15 0.00 0.07 ind:imp:3p; +étrillait étriller ver 0.11 1.15 0.00 0.07 ind:imp:3s; +étrille étrille nom f s 0.01 0.41 0.01 0.20 +étriller étriller ver 0.11 1.15 0.06 0.41 inf; +étrillerez étriller ver 0.11 1.15 0.01 0.00 ind:fut:2p; +étrilles étrille nom f p 0.01 0.41 0.00 0.20 +étrillé étriller ver m s 0.11 1.15 0.02 0.27 par:pas; +étrillée étriller ver f s 0.11 1.15 0.01 0.07 par:pas; +étrillés étriller ver m p 0.11 1.15 0.00 0.14 par:pas; +étripage étripage nom m s 0.01 0.07 0.01 0.00 +étripages étripage nom m p 0.01 0.07 0.00 0.07 +étripaient étriper ver 3.07 1.76 0.00 0.07 ind:imp:3p; +étripe étriper ver 3.07 1.76 1.30 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +étripent étriper ver 3.07 1.76 0.06 0.07 ind:pre:3p; +étriper étriper ver 3.07 1.76 1.35 0.74 inf; +étripera étriper ver 3.07 1.76 0.03 0.00 ind:fut:3s; +étriperai étriper ver 3.07 1.76 0.03 0.00 ind:fut:1s; +étriperaient étriper ver 3.07 1.76 0.01 0.00 cnd:pre:3p; +étriperais étriper ver 3.07 1.76 0.01 0.00 cnd:pre:1s; +étripèrent étriper ver 3.07 1.76 0.00 0.07 ind:pas:3p; +étripé étriper ver m s 3.07 1.76 0.19 0.14 par:pas; +étripée étriper ver f s 3.07 1.76 0.01 0.07 par:pas; +étripés étriper ver m p 3.07 1.76 0.06 0.14 par:pas; +étriqua étriquer ver 0.19 1.15 0.00 0.07 ind:pas:3s; +étriquaient étriquer ver 0.19 1.15 0.00 0.07 ind:imp:3p; +étriquant étriquer ver 0.19 1.15 0.00 0.07 par:pre; +étriqué étriqué adj m s 0.23 3.78 0.13 1.96 +étriquée étriquer ver f s 0.19 1.15 0.16 0.20 par:pas; +étriquées étriqué adj f p 0.23 3.78 0.01 0.41 +étriqués étriqué adj m p 0.23 3.78 0.07 0.54 +étrivière étrivière nom f s 0.00 0.41 0.00 0.07 +étrivières étrivière nom f p 0.00 0.41 0.00 0.34 +étroit étroit adj m s 10.79 75.81 5.94 28.18 +étroite étroit adj f s 10.79 75.81 2.91 29.59 +étroitement étroitement adv 1.51 10.81 1.51 10.81 +étroites étroit adj f p 10.79 75.81 1.06 10.88 +étroitesse étroitesse nom f s 0.36 2.36 0.36 2.36 +étroits étroit adj m p 10.79 75.81 0.88 7.16 +étron étron nom m s 0.75 2.43 0.44 1.55 +étrons étron nom m p 0.75 2.43 0.31 0.88 +étréci étrécir ver m s 0.00 0.27 0.00 0.07 par:pas; +étrécie étrécir ver f s 0.00 0.27 0.00 0.07 par:pas; +étrécir étrécir ver 0.00 0.27 0.00 0.07 inf; +étrécissement étrécissement nom m s 0.00 0.07 0.00 0.07 +étrécit étrécir ver 0.00 0.27 0.00 0.07 ind:pas:3s; +étrésillon étrésillon nom m s 0.00 0.07 0.00 0.07 +étrusque étrusque adj m s 0.33 0.54 0.14 0.14 +étrusques étrusque adj p 0.33 0.54 0.19 0.41 +été être aux m s 8074.24 6501.82 24.71 40.20 par:pas; +étude étude nom f s 44.22 63.04 11.35 19.66 +études étude nom f p 44.22 63.04 32.87 43.38 +étudia étudier ver 70.77 30.41 0.21 1.15 ind:pas:3s; +étudiai étudier ver 70.77 30.41 0.02 0.34 ind:pas:1s; +étudiaient étudier ver 70.77 30.41 0.12 0.47 ind:imp:3p; +étudiais étudier ver 70.77 30.41 1.23 0.81 ind:imp:1s;ind:imp:2s; +étudiait étudier ver 70.77 30.41 1.86 2.50 ind:imp:3s; +étudiant étudiant nom m s 38.07 38.45 10.12 14.05 +étudiante étudiant nom f s 38.07 38.45 4.49 3.72 +étudiantes étudiant nom f p 38.07 38.45 2.24 1.89 +étudiants étudiant nom m p 38.07 38.45 21.22 18.78 +étudie étudier ver 70.77 30.41 11.42 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +étudient étudier ver 70.77 30.41 1.93 0.20 ind:pre:3p; +étudier étudier ver 70.77 30.41 26.86 11.42 inf; +étudiera étudier ver 70.77 30.41 0.51 0.34 ind:fut:3s; +étudierai étudier ver 70.77 30.41 0.62 0.20 ind:fut:1s; +étudierais étudier ver 70.77 30.41 0.14 0.14 cnd:pre:1s;cnd:pre:2s; +étudierait étudier ver 70.77 30.41 0.02 0.07 cnd:pre:3s; +étudieras étudier ver 70.77 30.41 0.39 0.00 ind:fut:2s; +étudierez étudier ver 70.77 30.41 0.13 0.07 ind:fut:2p; +étudierions étudier ver 70.77 30.41 0.00 0.07 cnd:pre:1p; +étudierons étudier ver 70.77 30.41 0.16 0.14 ind:fut:1p; +étudies étudier ver 70.77 30.41 2.58 0.20 ind:pre:2s; +étudiez étudier ver 70.77 30.41 2.12 0.14 imp:pre:2p;ind:pre:2p; +étudions étudier ver 70.77 30.41 0.77 0.14 imp:pre:1p;ind:pre:1p; +étudièrent étudier ver 70.77 30.41 0.01 0.20 ind:pas:3p; +étudié étudier ver m s 70.77 30.41 17.23 6.55 par:pas; +étudiée étudier ver f s 70.77 30.41 0.39 0.61 par:pas; +étudiées étudier ver f p 70.77 30.41 0.23 0.61 par:pas; +étudiés étudier ver m p 70.77 30.41 0.25 0.74 par:pas; +étui étui nom m s 2.54 7.97 2.37 7.09 +étuis étui nom m p 2.54 7.97 0.17 0.88 +utérin utérin adj m s 0.18 0.81 0.06 0.34 +utérine utérin adj f s 0.18 0.81 0.09 0.34 +utérines utérin adj f p 0.18 0.81 0.02 0.14 +utérins utérin adj m p 0.18 0.81 0.01 0.00 +utérus utérus nom m 2.88 0.68 2.88 0.68 +étés été nom m p 67.27 125.47 5.47 3.92 +étêta étêter ver 0.00 0.34 0.00 0.07 ind:pas:3s; +étêtait étêter ver 0.00 0.34 0.00 0.07 ind:imp:3s; +étêté étêter ver m s 0.00 0.34 0.00 0.07 par:pas; +étêtés étêter ver m p 0.00 0.34 0.00 0.14 par:pas; +étuve étuve nom f s 0.43 3.78 0.43 3.45 +étuver étuver ver 0.01 0.34 0.00 0.07 inf; +étuves étuve nom f p 0.43 3.78 0.00 0.34 +étuveuse étuveur nom f s 0.00 0.07 0.00 0.07 +étuvé étuver ver m s 0.01 0.34 0.01 0.27 par:pas; +étuvée étuvée nom f s 0.05 0.14 0.05 0.14 +étymologie étymologie nom f s 0.09 1.08 0.09 0.95 +étymologies étymologie nom f p 0.09 1.08 0.00 0.14 +étymologique étymologique adj s 0.00 0.54 0.00 0.47 +étymologiquement étymologiquement adv 0.01 0.14 0.01 0.14 +étymologiques étymologique adj p 0.00 0.54 0.00 0.07 +étymologiste étymologiste nom s 0.00 0.14 0.00 0.14 +évacua évacuer ver 17.61 9.80 0.00 0.14 ind:pas:3s; +évacuai évacuer ver 17.61 9.80 0.00 0.07 ind:pas:1s; +évacuaient évacuer ver 17.61 9.80 0.02 0.20 ind:imp:3p; +évacuais évacuer ver 17.61 9.80 0.00 0.07 ind:imp:1s; +évacuait évacuer ver 17.61 9.80 0.04 0.61 ind:imp:3s; +évacuant évacuer ver 17.61 9.80 0.04 0.07 par:pre; +évacuation évacuation nom f s 6.30 3.38 6.08 3.24 +évacuations évacuation nom f p 6.30 3.38 0.22 0.14 +évacue évacuer ver 17.61 9.80 1.97 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évacuent évacuer ver 17.61 9.80 0.33 0.27 ind:pre:3p; +évacuer évacuer ver 17.61 9.80 9.66 4.05 inf; +évacuera évacuer ver 17.61 9.80 0.08 0.00 ind:fut:3s; +évacuerai évacuer ver 17.61 9.80 0.00 0.07 ind:fut:1s; +évacueraient évacuer ver 17.61 9.80 0.00 0.20 cnd:pre:3p; +évacuerais évacuer ver 17.61 9.80 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +évacuerait évacuer ver 17.61 9.80 0.01 0.14 cnd:pre:3s; +évacuerez évacuer ver 17.61 9.80 0.04 0.00 ind:fut:2p; +évacuerions évacuer ver 17.61 9.80 0.00 0.07 cnd:pre:1p; +évacuerons évacuer ver 17.61 9.80 0.01 0.00 ind:fut:1p; +évacueront évacuer ver 17.61 9.80 0.17 0.00 ind:fut:3p; +évacuez évacuer ver 17.61 9.80 1.10 0.14 imp:pre:2p;ind:pre:2p; +évacuons évacuer ver 17.61 9.80 0.39 0.00 imp:pre:1p;ind:pre:1p; +évacuèrent évacuer ver 17.61 9.80 0.01 0.07 ind:pas:3p; +évacué évacuer ver m s 17.61 9.80 2.02 1.69 par:pas; +évacuée évacuer ver f s 17.61 9.80 0.47 0.20 par:pas; +évacuées évacuer ver f p 17.61 9.80 0.16 0.14 par:pas; +évacués évacuer ver m p 17.61 9.80 1.05 0.74 par:pas; +évada évader ver 12.80 13.38 0.02 0.07 ind:pas:3s; +évadaient évader ver 12.80 13.38 0.00 0.07 ind:imp:3p; +évadais évader ver 12.80 13.38 0.04 0.27 ind:imp:1s;ind:imp:2s; +évadait évader ver 12.80 13.38 0.02 0.74 ind:imp:3s; +évadant évader ver 12.80 13.38 0.04 0.27 par:pre; +évade évader ver 12.80 13.38 1.35 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +évadent évader ver 12.80 13.38 0.26 0.07 ind:pre:3p; +évader évader ver 12.80 13.38 5.95 6.69 inf; +évadera évader ver 12.80 13.38 0.19 0.00 ind:fut:3s; +évaderai évader ver 12.80 13.38 0.05 0.00 ind:fut:1s; +évaderaient évader ver 12.80 13.38 0.00 0.14 cnd:pre:3p; +évaderais évader ver 12.80 13.38 0.03 0.20 cnd:pre:1s;cnd:pre:2s; +évaderait évader ver 12.80 13.38 0.03 0.27 cnd:pre:3s; +évaderas évader ver 12.80 13.38 0.01 0.07 ind:fut:2s; +évaderont évader ver 12.80 13.38 0.13 0.00 ind:fut:3p; +évades évader ver 12.80 13.38 0.10 0.07 ind:pre:2s; +évadez évader ver 12.80 13.38 0.04 0.00 imp:pre:2p;ind:pre:2p; +évadèrent évader ver 12.80 13.38 0.17 0.07 ind:pas:3p; +évadé évader ver m s 12.80 13.38 3.79 2.30 par:pas; +évadée évader ver f s 12.80 13.38 0.17 0.54 par:pas; +évadées évadé nom f p 1.76 1.08 0.02 0.07 +évadés évadé nom m p 1.76 1.08 0.98 0.61 +évalua évaluer ver 5.75 9.73 0.00 1.08 ind:pas:3s; +évaluables évaluable adj p 0.00 0.07 0.00 0.07 +évaluaient évaluer ver 5.75 9.73 0.02 0.14 ind:imp:3p; +évaluais évaluer ver 5.75 9.73 0.04 0.07 ind:imp:1s; +évaluait évaluer ver 5.75 9.73 0.07 1.28 ind:imp:3s; +évaluant évaluer ver 5.75 9.73 0.09 0.74 par:pre; +évaluateur évaluateur nom m s 0.00 0.14 0.00 0.14 +évaluation évaluation nom f s 3.91 1.35 3.37 1.28 +évaluations évaluation nom f p 3.91 1.35 0.54 0.07 +évalue évaluer ver 5.75 9.73 0.75 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évaluent évaluer ver 5.75 9.73 0.07 0.14 ind:pre:3p; +évaluer évaluer ver 5.75 9.73 2.75 3.92 inf; +évaluerez évaluer ver 5.75 9.73 0.00 0.07 ind:fut:2p; +évalueront évaluer ver 5.75 9.73 0.02 0.00 ind:fut:3p; +évalues évaluer ver 5.75 9.73 0.14 0.07 ind:pre:2s; +évaluez évaluer ver 5.75 9.73 0.25 0.27 imp:pre:2p;ind:pre:2p; +évaluons évaluer ver 5.75 9.73 0.23 0.00 imp:pre:1p;ind:pre:1p; +évaluât évaluer ver 5.75 9.73 0.00 0.07 sub:imp:3s; +évaluèrent évaluer ver 5.75 9.73 0.01 0.07 ind:pas:3p; +évalué évaluer ver m s 5.75 9.73 1.03 0.68 par:pas; +évaluée évaluer ver f s 5.75 9.73 0.14 0.00 par:pas; +évaluées évaluer ver f p 5.75 9.73 0.07 0.07 par:pas; +évalués évaluer ver m p 5.75 9.73 0.04 0.14 par:pas; +évanescence évanescence nom f s 0.00 0.27 0.00 0.14 +évanescences évanescence nom f p 0.00 0.27 0.00 0.14 +évanescent évanescent adj m s 0.17 1.49 0.01 0.68 +évanescente évanescent adj f s 0.17 1.49 0.02 0.47 +évanescentes évanescent adj f p 0.17 1.49 0.14 0.20 +évanescents évanescent adj m p 0.17 1.49 0.00 0.14 +évangile évangile nom m s 1.34 8.24 1.17 6.69 +évangiles évangile nom m p 1.34 8.24 0.18 1.55 +évangéliaire évangéliaire nom m s 0.00 0.27 0.00 0.27 +évangélique évangélique adj s 0.22 2.23 0.20 1.69 +évangéliques évangélique adj p 0.22 2.23 0.02 0.54 +évangélisateur évangélisateur adj m s 0.01 0.07 0.01 0.00 +évangélisation évangélisation nom f s 0.01 0.00 0.01 0.00 +évangélisatrices évangélisateur adj f p 0.01 0.07 0.00 0.07 +évangéliser évangéliser ver 0.26 0.47 0.11 0.34 inf; +évangéliseront évangéliser ver 0.26 0.47 0.01 0.00 ind:fut:3p; +évangélisons évangéliser ver 0.26 0.47 0.00 0.07 ind:pre:1p; +évangéliste évangéliste nom m s 1.45 0.88 0.74 0.61 +évangélistes évangéliste nom m p 1.45 0.88 0.70 0.27 +évangélisé évangéliser ver m s 0.26 0.47 0.00 0.07 par:pas; +évangélisés évangéliser ver m p 0.26 0.47 0.14 0.00 par:pas; +évanouît évanouir ver 18.93 24.93 0.00 0.07 sub:imp:3s; +évanoui évanouir ver m s 18.93 24.93 5.21 2.77 par:pas; +évanouie évanouir ver f s 18.93 24.93 4.79 3.04 par:pas; +évanouies évanouir ver f p 18.93 24.93 0.16 0.27 par:pas; +évanouir évanouir ver 18.93 24.93 4.40 8.24 inf; +évanouira évanouir ver 18.93 24.93 0.11 0.07 ind:fut:3s; +évanouirai évanouir ver 18.93 24.93 0.04 0.07 ind:fut:1s; +évanouirait évanouir ver 18.93 24.93 0.05 0.27 cnd:pre:3s; +évanouirent évanouir ver 18.93 24.93 0.02 0.47 ind:pas:3p; +évanouirez évanouir ver 18.93 24.93 0.14 0.00 ind:fut:2p; +évanouiront évanouir ver 18.93 24.93 0.05 0.00 ind:fut:3p; +évanouis évanouir ver m p 18.93 24.93 1.30 1.42 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +évanouissaient évanouir ver 18.93 24.93 0.02 0.95 ind:imp:3p; +évanouissais évanouir ver 18.93 24.93 0.06 0.20 ind:imp:1s;ind:imp:2s; +évanouissait évanouir ver 18.93 24.93 0.09 1.82 ind:imp:3s; +évanouissant évanouir ver 18.93 24.93 0.09 0.34 par:pre; +évanouisse évanouir ver 18.93 24.93 0.18 0.14 sub:pre:1s;sub:pre:3s; +évanouissement évanouissement nom m s 0.83 3.31 0.62 2.91 +évanouissements évanouissement nom m p 0.83 3.31 0.21 0.41 +évanouissent évanouir ver 18.93 24.93 0.65 1.35 ind:pre:3p; +évanouisses évanouir ver 18.93 24.93 0.07 0.00 sub:pre:2s; +évanouissez évanouir ver 18.93 24.93 0.09 0.07 imp:pre:2p;ind:pre:2p; +évanouit évanouir ver 18.93 24.93 1.41 3.38 ind:pre:3s;ind:pas:3s; +évapora évaporer ver 2.52 3.85 0.00 0.14 ind:pas:3s; +évaporaient évaporer ver 2.52 3.85 0.01 0.27 ind:imp:3p; +évaporais évaporer ver 2.52 3.85 0.01 0.07 ind:imp:1s; +évaporait évaporer ver 2.52 3.85 0.01 0.54 ind:imp:3s; +évaporateur évaporateur nom m s 0.17 0.00 0.14 0.00 +évaporateurs évaporateur nom m p 0.17 0.00 0.02 0.00 +évaporation évaporation nom f s 0.38 0.88 0.38 0.88 +évapore évaporer ver 2.52 3.85 0.56 0.68 ind:pre:1s;ind:pre:3s; +évaporent évaporer ver 2.52 3.85 0.58 0.27 ind:pre:3p; +évaporer évaporer ver 2.52 3.85 0.64 0.74 inf; +évaporerait évaporer ver 2.52 3.85 0.00 0.07 cnd:pre:3s; +évaporeront évaporer ver 2.52 3.85 0.00 0.07 ind:fut:3p; +évaporé évaporer ver m s 2.52 3.85 0.54 0.68 par:pas; +évaporée évaporé adj f s 0.47 1.35 0.17 0.74 +évaporées évaporé adj f p 0.47 1.35 0.01 0.20 +évaporés évaporer ver m p 2.52 3.85 0.17 0.34 par:pas; +évasaient évaser ver 0.04 2.03 0.00 0.07 ind:imp:3p; +évasait évaser ver 0.04 2.03 0.00 0.14 ind:imp:3s; +évasant évaser ver 0.04 2.03 0.00 0.61 par:pre; +évase évaser ver 0.04 2.03 0.01 0.47 ind:pre:3s; +évasement évasement nom m s 0.00 0.07 0.00 0.07 +évasent évaser ver 0.04 2.03 0.00 0.14 ind:pre:3p; +évaser évaser ver 0.04 2.03 0.00 0.14 inf; +évasif évasif adj m s 0.85 5.14 0.35 3.31 +évasifs évasif adj m p 0.85 5.14 0.05 0.41 +évasion évasion nom f s 9.69 10.07 9.48 9.12 +évasions évasion nom f p 9.69 10.07 0.21 0.95 +évasive évasif adj f s 0.85 5.14 0.25 0.81 +évasivement évasivement adv 0.01 1.08 0.01 1.08 +évasives évasif adj f p 0.85 5.14 0.20 0.61 +évasé évasé adj m s 0.03 0.74 0.00 0.47 +évasée évaser ver f s 0.04 2.03 0.02 0.14 par:pas; +évasées évaser ver f p 0.04 2.03 0.00 0.14 par:pas; +évasés évasé adj m p 0.03 0.74 0.01 0.00 +éveil éveil nom m s 1.65 6.42 1.64 6.22 +éveilla éveiller ver 17.28 55.27 0.16 5.61 ind:pas:3s; +éveillai éveiller ver 17.28 55.27 0.01 1.01 ind:pas:1s; +éveillaient éveiller ver 17.28 55.27 0.01 1.76 ind:imp:3p; +éveillais éveiller ver 17.28 55.27 0.24 0.95 ind:imp:1s;ind:imp:2s; +éveillait éveiller ver 17.28 55.27 0.27 6.69 ind:imp:3s; +éveillant éveiller ver 17.28 55.27 0.07 2.97 par:pre; +éveille éveiller ver 17.28 55.27 2.49 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éveillent éveiller ver 17.28 55.27 0.33 1.96 ind:pre:3p; +éveiller éveiller ver 17.28 55.27 4.61 12.16 inf; +éveillera éveiller ver 17.28 55.27 0.39 0.07 ind:fut:3s; +éveillerai éveiller ver 17.28 55.27 0.13 0.34 ind:fut:1s; +éveilleraient éveiller ver 17.28 55.27 0.00 0.07 cnd:pre:3p; +éveillerait éveiller ver 17.28 55.27 0.24 0.27 cnd:pre:3s; +éveilleras éveiller ver 17.28 55.27 0.02 0.00 ind:fut:2s; +éveillerez éveiller ver 17.28 55.27 0.02 0.07 ind:fut:2p; +éveilleront éveiller ver 17.28 55.27 0.05 0.07 ind:fut:3p; +éveilles éveiller ver 17.28 55.27 0.07 0.00 ind:pre:2s; +éveilleur éveilleur nom m s 0.00 0.14 0.00 0.14 +éveillez éveiller ver 17.28 55.27 0.32 0.27 imp:pre:2p;ind:pre:2p; +éveillions éveiller ver 17.28 55.27 0.00 0.20 ind:imp:1p; +éveillons éveiller ver 17.28 55.27 0.02 0.07 imp:pre:1p;ind:pre:1p; +éveillât éveiller ver 17.28 55.27 0.00 0.20 sub:imp:3s; +éveillèrent éveiller ver 17.28 55.27 0.14 0.88 ind:pas:3p; +éveillé éveiller ver m s 17.28 55.27 4.70 7.84 par:pas; +éveillée éveiller ver f s 17.28 55.27 2.12 2.50 par:pas; +éveillées éveillé adj f p 2.78 8.92 0.12 0.54 +éveillés éveiller ver m p 17.28 55.27 0.81 1.15 par:pas; +éveils éveil nom m p 1.65 6.42 0.01 0.20 +éveinage éveinage nom m s 0.01 0.00 0.01 0.00 +évent évent nom m s 0.15 0.00 0.11 0.00 +éventa éventer ver 0.60 4.26 0.00 0.20 ind:pas:3s; +éventai éventer ver 0.60 4.26 0.00 0.07 ind:pas:1s; +éventaient éventer ver 0.60 4.26 0.01 0.07 ind:imp:3p; +éventail éventail nom m s 2.96 13.99 2.82 10.88 +éventails éventail nom m p 2.96 13.99 0.14 3.11 +éventaire éventaire nom m s 0.25 2.16 0.25 1.22 +éventaires éventaire nom m p 0.25 2.16 0.00 0.95 +éventait éventer ver 0.60 4.26 0.01 0.88 ind:imp:3s; +éventant éventer ver 0.60 4.26 0.00 0.54 par:pre; +évente éventer ver 0.60 4.26 0.01 0.74 ind:pre:1s;ind:pre:3s; +éventent éventer ver 0.60 4.26 0.01 0.07 ind:pre:3p; +éventer éventer ver 0.60 4.26 0.07 0.88 inf; +éventerai éventer ver 0.60 4.26 0.00 0.07 ind:fut:1s; +éventez éventer ver 0.60 4.26 0.01 0.00 imp:pre:2p; +éventons éventer ver 0.60 4.26 0.01 0.00 imp:pre:1p; +éventra éventrer ver 2.81 5.20 0.00 0.07 ind:pas:3s; +éventraient éventrer ver 2.81 5.20 0.01 0.14 ind:imp:3p; +éventrait éventrer ver 2.81 5.20 0.16 0.47 ind:imp:3s; +éventrant éventrer ver 2.81 5.20 0.01 0.41 par:pre; +éventration éventration nom f s 0.02 0.14 0.02 0.14 +éventre éventrer ver 2.81 5.20 0.47 0.47 ind:pre:1s;ind:pre:3s; +éventrement éventrement nom m s 0.00 0.07 0.00 0.07 +éventrent éventrer ver 2.81 5.20 0.01 0.14 ind:pre:3p; +éventrer éventrer ver 2.81 5.20 0.96 1.01 inf; +éventrerai éventrer ver 2.81 5.20 0.01 0.00 ind:fut:1s; +éventrerait éventrer ver 2.81 5.20 0.00 0.07 cnd:pre:3s; +éventrerez éventrer ver 2.81 5.20 0.01 0.00 ind:fut:2p; +éventres éventrer ver 2.81 5.20 0.00 0.07 ind:pre:2s; +éventreur éventreur nom m s 0.50 0.95 0.36 0.68 +éventreurs éventreur nom m p 0.50 0.95 0.14 0.27 +éventrez éventrer ver 2.81 5.20 0.14 0.00 imp:pre:2p; +éventrions éventrer ver 2.81 5.20 0.00 0.07 ind:imp:1p; +éventrât éventrer ver 2.81 5.20 0.14 0.00 sub:imp:3s; +éventré éventrer ver m s 2.81 5.20 0.58 1.69 par:pas; +éventrée éventrer ver f s 2.81 5.20 0.25 0.07 par:pas; +éventrées éventré adj f p 0.35 5.00 0.14 1.28 +éventrés éventrer ver m p 2.81 5.20 0.05 0.47 par:pas; +évents évent nom m p 0.15 0.00 0.04 0.00 +éventé éventé adj m s 0.35 1.35 0.18 0.41 +éventualité éventualité nom f s 2.47 6.15 2.00 5.20 +éventualités éventualité nom f p 2.47 6.15 0.47 0.95 +éventée éventer ver f s 0.60 4.26 0.28 0.27 par:pas; +éventuel éventuel adj m s 4.92 13.18 1.38 3.92 +éventuelle éventuel adj f s 4.92 13.18 1.30 5.07 +éventuellement éventuellement adv 2.49 5.81 2.49 5.81 +éventuelles éventuel adj f p 4.92 13.18 1.17 1.55 +éventuels éventuel adj m p 4.92 13.18 1.07 2.64 +éventées éventer ver f p 0.60 4.26 0.01 0.07 par:pas; +éventés éventé adj m p 0.35 1.35 0.14 0.20 +évergète évergète adj s 0.00 0.07 0.00 0.07 +éversé éversé adj m s 0.00 0.14 0.00 0.07 +éversées éversé adj f p 0.00 0.14 0.00 0.07 +évertua évertuer ver 0.22 2.97 0.00 0.07 ind:pas:3s; +évertuaient évertuer ver 0.22 2.97 0.01 0.41 ind:imp:3p; +évertuais évertuer ver 0.22 2.97 0.00 0.14 ind:imp:1s; +évertuait évertuer ver 0.22 2.97 0.00 1.15 ind:imp:3s; +évertuant évertuer ver 0.22 2.97 0.02 0.14 par:pre; +évertue évertuer ver 0.22 2.97 0.10 0.47 ind:pre:1s;ind:pre:3s; +évertuent évertuer ver 0.22 2.97 0.04 0.14 ind:pre:3p; +évertuer évertuer ver 0.22 2.97 0.01 0.14 inf; +évertué évertuer ver m s 0.22 2.97 0.04 0.34 par:pas; +éviction éviction nom f s 0.05 0.41 0.05 0.41 +évida évider ver 0.25 1.22 0.01 0.07 ind:pas:3s; +évidaient évider ver 0.25 1.22 0.00 0.07 ind:imp:3p; +évide évider ver 0.25 1.22 0.01 0.20 ind:pre:1s;ind:pre:3s; +évidement évidement nom m s 0.21 0.07 0.21 0.07 +évidemment évidemment adv 28.23 88.11 28.23 88.11 +évidence évidence nom f s 11.47 39.93 11.14 37.77 +évidences évidence nom f p 11.47 39.93 0.33 2.16 +évident évident adj m s 32.59 33.58 28.75 20.14 +évidente évident adj f s 32.59 33.58 2.27 9.32 +évidentes évident adj f p 32.59 33.58 0.84 2.43 +évidents évident adj m p 32.59 33.58 0.72 1.69 +évider évider ver 0.25 1.22 0.01 0.20 inf; +évidé évidé adj m s 0.04 0.47 0.02 0.34 +évidée évidé adj f s 0.04 0.47 0.02 0.14 +évidées évider ver f p 0.25 1.22 0.01 0.07 par:pas; +évidés évider ver m p 0.25 1.22 0.00 0.07 par:pas; +évier évier nom m s 3.87 12.16 3.81 11.35 +éviers évier nom m p 3.87 12.16 0.05 0.81 +évince évincer ver 1.28 0.61 0.03 0.07 ind:pre:1s;ind:pre:3s; +évincer évincer ver 1.28 0.61 0.58 0.27 inf; +évincerait évincer ver 1.28 0.61 0.00 0.07 cnd:pre:3s; +évincez évincer ver 1.28 0.61 0.01 0.00 ind:pre:2p; +évincé évincer ver m s 1.28 0.61 0.45 0.14 par:pas; +évincée évincer ver f s 1.28 0.61 0.04 0.00 par:pas; +évincés évincer ver m p 1.28 0.61 0.13 0.00 par:pas; +évinçai évincer ver 1.28 0.61 0.00 0.07 ind:pas:1s; +évinçant évincer ver 1.28 0.61 0.03 0.00 par:pre; +éviscère éviscérer ver 0.50 0.14 0.04 0.07 ind:pre:1s;ind:pre:3s; +éviscèrent éviscérer ver 0.50 0.14 0.02 0.00 ind:pre:3p; +éviscérant éviscérer ver 0.50 0.14 0.03 0.00 par:pre; +éviscération éviscération nom f s 0.22 0.00 0.22 0.00 +éviscérer éviscérer ver 0.50 0.14 0.26 0.00 inf;; +éviscérée éviscérer ver f s 0.50 0.14 0.04 0.07 par:pas; +éviscérés éviscérer ver m p 0.50 0.14 0.13 0.00 par:pas; +évita éviter ver 87.47 110.47 0.03 5.00 ind:pas:3s; +évitable évitable adj s 0.21 0.27 0.20 0.14 +évitables évitable adj f p 0.21 0.27 0.01 0.14 +évitai éviter ver 87.47 110.47 0.01 0.74 ind:pas:1s; +évitaient éviter ver 87.47 110.47 0.06 2.23 ind:imp:3p; +évitais éviter ver 87.47 110.47 0.70 2.03 ind:imp:1s;ind:imp:2s; +évitait éviter ver 87.47 110.47 0.74 7.57 ind:imp:3s; +évitant éviter ver 87.47 110.47 1.69 10.47 par:pre; +évite éviter ver 87.47 110.47 10.70 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évitement évitement nom m s 0.18 0.00 0.18 0.00 +évitent éviter ver 87.47 110.47 1.13 1.22 ind:pre:3p; +éviter éviter ver 87.47 110.47 53.71 60.07 ind:pre:2p;inf; +évitera éviter ver 87.47 110.47 2.09 0.95 ind:fut:3s; +éviterai éviter ver 87.47 110.47 0.24 0.34 ind:fut:1s; +éviteraient éviter ver 87.47 110.47 0.00 0.41 cnd:pre:3p; +éviterais éviter ver 87.47 110.47 0.97 0.41 cnd:pre:1s;cnd:pre:2s; +éviterait éviter ver 87.47 110.47 0.77 1.62 cnd:pre:3s; +éviteras éviter ver 87.47 110.47 0.45 0.00 ind:fut:2s; +éviterez éviter ver 87.47 110.47 0.37 0.20 ind:fut:2p; +éviteriez éviter ver 87.47 110.47 0.07 0.00 cnd:pre:2p; +éviterons éviter ver 87.47 110.47 0.24 0.34 ind:fut:1p; +éviteront éviter ver 87.47 110.47 0.22 0.14 ind:fut:3p; +évites éviter ver 87.47 110.47 2.48 0.07 ind:pre:2s; +évitez éviter ver 87.47 110.47 3.31 0.68 imp:pre:2p;ind:pre:2p; +évitiez éviter ver 87.47 110.47 0.25 0.14 ind:imp:2p; +évitions éviter ver 87.47 110.47 0.12 0.47 ind:imp:1p; +évitâmes éviter ver 87.47 110.47 0.00 0.20 ind:pas:1p; +évitons éviter ver 87.47 110.47 1.30 0.27 imp:pre:1p;ind:pre:1p; +évitât éviter ver 87.47 110.47 0.00 0.41 sub:imp:3s; +évitèrent éviter ver 87.47 110.47 0.02 0.88 ind:pas:3p; +évité éviter ver m s 87.47 110.47 4.80 5.88 par:pas; +évitée éviter ver f s 87.47 110.47 0.57 0.81 par:pas; +évitées éviter ver f p 87.47 110.47 0.24 0.07 par:pas; +évités éviter ver m p 87.47 110.47 0.18 0.54 par:pas; +évocateur évocateur adj m s 0.15 1.49 0.13 0.74 +évocateurs évocateur adj m p 0.15 1.49 0.01 0.27 +évocation évocation nom f s 0.55 8.72 0.55 7.30 +évocations évocation nom f p 0.55 8.72 0.00 1.42 +évocatrice évocateur adj f s 0.15 1.49 0.01 0.20 +évocatrices évocateur adj f p 0.15 1.49 0.00 0.27 +évolua évoluer ver 10.60 11.69 0.05 0.27 ind:pas:3s; +évoluaient évoluer ver 10.60 11.69 0.05 1.08 ind:imp:3p; +évoluais évoluer ver 10.60 11.69 0.01 0.07 ind:imp:1s; +évoluait évoluer ver 10.60 11.69 0.29 1.62 ind:imp:3s; +évoluant évoluer ver 10.60 11.69 0.25 0.41 par:pre; +évolue évoluer ver 10.60 11.69 1.73 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évoluent évoluer ver 10.60 11.69 1.13 0.81 ind:pre:3p; +évoluer évoluer ver 10.60 11.69 2.90 3.18 inf; +évoluera évoluer ver 10.60 11.69 0.05 0.00 ind:fut:3s; +évoluerait évoluer ver 10.60 11.69 0.04 0.14 cnd:pre:3s; +évolueront évoluer ver 10.60 11.69 0.02 0.14 ind:fut:3p; +évoluez évoluer ver 10.60 11.69 0.06 0.00 ind:pre:2p; +évoluons évoluer ver 10.60 11.69 0.21 0.00 imp:pre:1p;ind:pre:1p; +évoluèrent évoluer ver 10.60 11.69 0.28 0.07 ind:pas:3p; +évolutif évolutif adj m s 0.47 0.20 0.08 0.07 +évolution évolution nom f s 8.09 14.19 7.87 11.69 +évolutionniste évolutionniste adj f s 0.15 0.00 0.15 0.00 +évolutions évolution nom f p 8.09 14.19 0.23 2.50 +évolutive évolutif adj f s 0.47 0.20 0.38 0.07 +évolutives évolutif adj f p 0.47 0.20 0.01 0.07 +évolué évoluer ver m s 10.60 11.69 3.29 2.09 par:pas; +évoluée évolué adj f s 1.69 1.28 0.73 0.20 +évoluées évolué adj f p 1.69 1.28 0.09 0.20 +évolués évolué adj m p 1.69 1.28 0.38 0.41 +évoqua évoquer ver 11.57 73.51 0.02 3.51 ind:pas:3s; +évoquai évoquer ver 11.57 73.51 0.00 0.68 ind:pas:1s; +évoquaient évoquer ver 11.57 73.51 0.01 5.27 ind:imp:3p; +évoquais évoquer ver 11.57 73.51 0.14 2.03 ind:imp:1s;ind:imp:2s; +évoquait évoquer ver 11.57 73.51 0.34 13.51 ind:imp:3s; +évoquant évoquer ver 11.57 73.51 0.44 7.84 par:pre; +évoque évoquer ver 11.57 73.51 3.68 11.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évoquent évoquer ver 11.57 73.51 0.71 2.57 ind:pre:3p; +évoquer évoquer ver 11.57 73.51 2.15 15.88 inf; +évoquera évoquer ver 11.57 73.51 0.10 0.54 ind:fut:3s; +évoquerai évoquer ver 11.57 73.51 0.04 0.07 ind:fut:1s; +évoqueraient évoquer ver 11.57 73.51 0.00 0.07 cnd:pre:3p; +évoquerait évoquer ver 11.57 73.51 0.04 0.47 cnd:pre:3s; +évoquerez évoquer ver 11.57 73.51 0.01 0.00 ind:fut:2p; +évoquerons évoquer ver 11.57 73.51 0.02 0.07 ind:fut:1p; +évoqueront évoquer ver 11.57 73.51 0.01 0.14 ind:fut:3p; +évoques évoquer ver 11.57 73.51 0.04 0.14 ind:pre:2s; +évoquez évoquer ver 11.57 73.51 0.56 0.07 imp:pre:2p;ind:pre:2p; +évoquiez évoquer ver 11.57 73.51 0.28 0.00 ind:imp:2p; +évoquions évoquer ver 11.57 73.51 0.17 0.34 ind:imp:1p; +évoquâmes évoquer ver 11.57 73.51 0.00 0.14 ind:pas:1p; +évoquons évoquer ver 11.57 73.51 0.08 0.41 imp:pre:1p;ind:pre:1p; +évoquât évoquer ver 11.57 73.51 0.00 0.07 sub:imp:3s; +évoquèrent évoquer ver 11.57 73.51 0.10 0.61 ind:pas:3p; +évoqué évoquer ver m s 11.57 73.51 2.01 5.00 par:pas; +évoquée évoquer ver f s 11.57 73.51 0.52 0.54 par:pas; +évoquées évoquer ver f p 11.57 73.51 0.03 0.41 par:pas; +évoqués évoquer ver m p 11.57 73.51 0.06 1.28 par:pas; +évènement évènement nom m s 6.59 0.00 3.27 0.00 +évènementielle évènementiel adj f s 0.01 0.00 0.01 0.00 +évènements évènement nom m p 6.59 0.00 3.32 0.00 +évêché évêché nom m s 0.14 3.85 0.14 3.72 +évêchés évêché nom m p 0.14 3.85 0.00 0.14 +événement événement nom m s 28.57 84.59 13.61 26.35 +événementiel événementiel adj m s 0.04 0.00 0.04 0.00 +événements événement nom m p 28.57 84.59 14.96 58.24 +évêque évêque nom m s 5.70 19.32 4.70 14.53 +évêques évêque nom m p 5.70 19.32 1.00 4.80 +éwé éwé adj m s 0.00 0.20 0.00 0.07 +éwés éwé adj m p 0.00 0.20 0.00 0.14 +uxorilocal uxorilocal adj m s 0.00 0.07 0.00 0.07 +v v nom_sup m 26.54 5.00 26.54 5.00 +vîmes voir ver 4119.49 2401.76 0.66 4.73 ind:pas:1p; +vînt venir ver 2763.69 1514.53 0.30 6.62 sub:imp:3s; +vît voir ver 4119.49 2401.76 0.03 4.05 sub:imp:3s; +vôtre vôtre pro_pos s 33.05 11.69 33.05 11.69 +vôtres vôtres pro_pos p 12.14 4.39 12.14 4.39 +va_et_vient va_et_vient nom m 1.30 10.61 1.30 10.61 +va_tout va_tout nom m 0.05 0.41 0.05 0.41 +va aller ver 9992.78 2854.93 3382.55 694.59 imp:pre:2s;ind:pre:3s; +vacance vacance nom f s 67.90 82.57 0.29 0.88 +vacances vacance nom f p 67.90 82.57 67.60 81.69 +vacancier vacancier nom m s 0.23 2.23 0.02 0.14 +vacanciers vacancier nom m p 0.23 2.23 0.20 1.89 +vacancière vacancier nom f s 0.23 2.23 0.01 0.14 +vacancières vacancière nom f p 0.01 0.00 0.01 0.00 +vacant vacant adj m s 1.68 5.07 0.84 2.57 +vacante vacant adj f s 1.68 5.07 0.60 1.42 +vacantes vacant adj f p 1.68 5.07 0.01 0.41 +vacants vacant adj m p 1.68 5.07 0.22 0.68 +vacarme vacarme nom m s 3.46 15.61 3.46 15.20 +vacarmes vacarme nom m p 3.46 15.61 0.00 0.41 +vacataire vacataire nom s 0.05 0.00 0.05 0.00 +vacation vacation nom f s 0.05 0.54 0.05 0.14 +vacations vacation nom f p 0.05 0.54 0.00 0.41 +vaccin vaccin nom m s 6.54 4.93 5.01 4.12 +vaccinal vaccinal adj m s 0.01 0.00 0.01 0.00 +vaccinant vaccinant adj m s 0.00 0.07 0.00 0.07 +vaccination vaccination nom f s 0.50 0.54 0.20 0.47 +vaccinations vaccination nom f p 0.50 0.54 0.30 0.07 +vaccine vacciner ver 1.66 1.62 0.18 0.14 imp:pre:2s;ind:pre:3s; +vaccinent vacciner ver 1.66 1.62 0.00 0.07 ind:pre:3p; +vacciner vacciner ver 1.66 1.62 0.68 0.47 inf; +vaccins vaccin nom m p 6.54 4.93 1.54 0.81 +vacciné vacciner ver m s 1.66 1.62 0.53 0.47 par:pas; +vaccinée vacciner ver f s 1.66 1.62 0.14 0.20 par:pas; +vaccinées vacciner ver f p 1.66 1.62 0.01 0.07 par:pas; +vaccinés vacciner ver m p 1.66 1.62 0.11 0.20 par:pas; +vachard vachard adj m s 0.08 1.42 0.08 0.74 +vacharde vachard adj f s 0.08 1.42 0.00 0.34 +vachardes vachard adj f p 0.08 1.42 0.00 0.14 +vachardise vachardise nom f s 0.00 0.14 0.00 0.14 +vachards vachard adj m p 0.08 1.42 0.00 0.20 +vache vache nom f s 47.71 53.45 36.24 26.08 +vachement vachement adv 15.74 11.82 15.74 11.82 +vacher vacher nom m s 0.91 0.81 0.77 0.61 +vacherie vacherie nom f s 0.69 5.41 0.42 3.18 +vacheries vacherie nom f p 0.69 5.41 0.27 2.23 +vacherin vacherin nom m s 0.00 0.54 0.00 0.54 +vachers vacher nom m p 0.91 0.81 0.13 0.20 +vaches vache nom f p 47.71 53.45 11.46 27.36 +vachette vachette nom f s 0.02 0.41 0.02 0.34 +vachettes vachette nom f p 0.02 0.41 0.00 0.07 +vachère vachère nom f s 0.11 0.61 0.00 0.41 +vachères vachère nom f p 0.11 0.61 0.11 0.20 +vacilla vaciller ver 1.87 12.84 0.10 1.69 ind:pas:3s; +vacillai vaciller ver 1.87 12.84 0.00 0.07 ind:pas:1s; +vacillaient vaciller ver 1.87 12.84 0.00 0.54 ind:imp:3p; +vacillait vaciller ver 1.87 12.84 0.02 2.23 ind:imp:3s; +vacillant vaciller ver 1.87 12.84 0.27 1.28 par:pre; +vacillante vacillant adj f s 0.28 4.80 0.19 1.82 +vacillantes vacillant adj f p 0.28 4.80 0.01 0.81 +vacillants vacillant adj m p 0.28 4.80 0.01 0.41 +vacillations vacillation nom f p 0.00 0.07 0.00 0.07 +vacille vaciller ver 1.87 12.84 0.93 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vacillement vacillement nom m s 0.01 0.34 0.01 0.34 +vacillent vaciller ver 1.87 12.84 0.22 0.34 ind:pre:3p; +vaciller vaciller ver 1.87 12.84 0.29 3.45 inf; +vacillât vaciller ver 1.87 12.84 0.00 0.07 sub:imp:3s; +vacillèrent vaciller ver 1.87 12.84 0.00 0.27 ind:pas:3p; +vacillé vaciller ver m s 1.87 12.84 0.03 0.34 par:pas; +vacuité vacuité nom f s 0.27 1.42 0.27 1.42 +vacuole vacuole nom f s 0.01 0.00 0.01 0.00 +vacuolisation vacuolisation nom f s 0.01 0.00 0.01 0.00 +vacuum vacuum nom m s 0.13 0.20 0.13 0.20 +vade_retro vade_retro adv 0.26 0.68 0.26 0.68 +vadrouillais vadrouiller ver 0.35 1.35 0.01 0.07 ind:imp:2s; +vadrouillait vadrouiller ver 0.35 1.35 0.01 0.07 ind:imp:3s; +vadrouille vadrouille nom f s 0.95 1.89 0.80 1.69 +vadrouillent vadrouiller ver 0.35 1.35 0.00 0.07 ind:pre:3p; +vadrouiller vadrouiller ver 0.35 1.35 0.21 0.81 inf; +vadrouilles vadrouille nom f p 0.95 1.89 0.14 0.20 +vadrouilleur vadrouilleur nom m s 0.11 0.14 0.10 0.00 +vadrouilleurs vadrouilleur nom m p 0.11 0.14 0.01 0.00 +vadrouilleuse vadrouilleur nom f s 0.11 0.14 0.00 0.07 +vadrouilleuses vadrouilleur nom f p 0.11 0.14 0.00 0.07 +vadrouillez vadrouiller ver 0.35 1.35 0.01 0.00 ind:pre:2p; +vadrouillé vadrouiller ver m s 0.35 1.35 0.06 0.07 par:pas; +vae_soli vae_soli adv 0.00 0.07 0.00 0.07 +vae_victis vae_victis adv 0.02 0.07 0.02 0.07 +vagabond vagabond nom m s 5.72 6.22 3.10 3.38 +vagabonda vagabonder ver 2.42 2.64 0.00 0.07 ind:pas:3s; +vagabondage vagabondage nom m s 0.70 2.57 0.68 1.76 +vagabondages vagabondage nom m p 0.70 2.57 0.02 0.81 +vagabondaient vagabonder ver 2.42 2.64 0.00 0.14 ind:imp:3p; +vagabondais vagabonder ver 2.42 2.64 0.28 0.00 ind:imp:1s;ind:imp:2s; +vagabondait vagabonder ver 2.42 2.64 0.26 0.88 ind:imp:3s; +vagabondant vagabonder ver 2.42 2.64 0.04 0.00 par:pre; +vagabonde vagabonder ver 2.42 2.64 0.68 0.34 ind:pre:1s;ind:pre:3s; +vagabondent vagabonder ver 2.42 2.64 0.17 0.14 ind:pre:3p; +vagabonder vagabonder ver 2.42 2.64 0.78 0.81 inf; +vagabondes vagabonder ver 2.42 2.64 0.12 0.07 ind:pre:2s; +vagabondiez vagabonder ver 2.42 2.64 0.01 0.00 ind:imp:2p; +vagabonds vagabond nom m p 5.72 6.22 2.30 2.57 +vagabondèrent vagabonder ver 2.42 2.64 0.00 0.07 ind:pas:3p; +vagabondé vagabonder ver m s 2.42 2.64 0.08 0.14 par:pas; +vagal vagal adj m s 0.41 0.00 0.41 0.00 +vagi vagir ver m s 0.15 1.76 0.00 0.14 par:pas; +vagin vagin nom m s 4.40 2.16 4.11 2.09 +vaginal vaginal adj m s 1.80 0.54 0.45 0.14 +vaginale vaginal adj f s 1.80 0.54 0.90 0.34 +vaginales vaginal adj f p 1.80 0.54 0.38 0.07 +vaginaux vaginal adj m p 1.80 0.54 0.08 0.00 +vaginite vaginite nom f s 0.03 0.00 0.03 0.00 +vagins vagin nom m p 4.40 2.16 0.29 0.07 +vagir vagir ver 0.15 1.76 0.00 0.20 inf; +vagis vagir ver 0.15 1.76 0.00 0.07 ind:pre:1s; +vagissaient vagir ver 0.15 1.76 0.00 0.07 ind:imp:3p; +vagissais vagir ver 0.15 1.76 0.14 0.07 ind:imp:1s;ind:imp:2s; +vagissait vagir ver 0.15 1.76 0.00 0.81 ind:imp:3s; +vagissant vagissant adj m s 0.03 0.20 0.03 0.20 +vagissement vagissement nom m s 0.70 0.95 0.43 0.34 +vagissements vagissement nom m p 0.70 0.95 0.27 0.61 +vagissent vagir ver 0.15 1.76 0.01 0.07 ind:pre:3p; +vagissons vagir ver 0.15 1.76 0.00 0.07 ind:pre:1p; +vagit vagir ver 0.15 1.76 0.00 0.20 ind:pre:3s;ind:pas:3s; +vagotomie vagotomie nom f s 0.01 0.00 0.01 0.00 +vagua vaguer ver 0.21 1.89 0.00 0.07 ind:pas:3s; +vaguait vaguer ver 0.21 1.89 0.00 0.27 ind:imp:3s; +vaguant vaguer ver 0.21 1.89 0.00 0.07 par:pre; +vague vague nom s 21.59 73.58 12.80 38.18 +vaguelette vaguelette nom f s 0.04 2.84 0.02 0.61 +vaguelettes vaguelette nom f p 0.04 2.84 0.02 2.23 +vaguement vaguement adv 4.72 51.76 4.72 51.76 +vaguemestre vaguemestre nom s 0.14 0.68 0.14 0.68 +vaguent vaguer ver 0.21 1.89 0.00 0.14 ind:pre:3p; +vaguer vaguer ver 0.21 1.89 0.10 0.47 inf; +vagues vague nom p 21.59 73.58 8.79 35.41 +vahiné vahiné nom f s 0.13 0.54 0.09 0.27 +vahinés vahiné nom f p 0.13 0.54 0.03 0.27 +vaillamment vaillamment adv 0.60 2.64 0.60 2.64 +vaillance vaillance nom f s 1.20 2.03 1.20 2.03 +vaillant vaillant adj m s 5.45 8.58 3.75 3.31 +vaillante vaillant adj f s 5.45 8.58 0.65 2.43 +vaillantes vaillant adj f p 5.45 8.58 0.05 0.95 +vaillants vaillant adj m p 5.45 8.58 1.00 1.89 +vaille valoir ver 236.07 175.74 3.04 5.34 sub:pre:1s;sub:pre:3s; +vaillent valoir ver 236.07 175.74 0.21 0.20 sub:pre:3p; +vain vain adj m s 19.87 57.03 16.02 40.14 +vainc vaincre ver 27.84 25.68 0.14 0.27 ind:pre:3s; +vaincra vaincre ver 27.84 25.68 0.82 0.27 ind:fut:3s; +vaincrai vaincre ver 27.84 25.68 0.42 0.20 ind:fut:1s; +vaincraient vaincre ver 27.84 25.68 0.02 0.07 cnd:pre:3p; +vaincrais vaincre ver 27.84 25.68 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +vaincrait vaincre ver 27.84 25.68 0.27 0.07 cnd:pre:3s; +vaincras vaincre ver 27.84 25.68 0.19 0.00 ind:fut:2s; +vaincre vaincre ver 27.84 25.68 13.71 13.31 inf; +vaincrez vaincre ver 27.84 25.68 0.11 0.00 ind:fut:2p; +vaincrons vaincre ver 27.84 25.68 1.62 0.47 ind:fut:1p; +vaincront vaincre ver 27.84 25.68 0.09 0.14 ind:fut:3p; +vaincs vaincre ver 27.84 25.68 0.06 0.14 imp:pre:2s;ind:pre:2s; +vaincu vaincre ver m s 27.84 25.68 7.28 6.62 par:pas; +vaincue vaincre ver f s 27.84 25.68 1.10 2.23 par:pas; +vaincues vaincre ver f p 27.84 25.68 0.18 0.14 par:pas; +vaincus vaincre ver m p 27.84 25.68 1.42 1.55 par:pas; +vaine vain adj f s 19.87 57.03 1.04 8.18 +vainement vainement adv 0.55 12.09 0.55 12.09 +vaines vain adj f p 19.87 57.03 1.57 5.20 +vainquant vaincre ver 27.84 25.68 0.01 0.07 par:pre; +vainquent vaincre ver 27.84 25.68 0.01 0.00 ind:pre:3p; +vainqueur vainqueur nom m s 9.10 11.35 6.71 5.74 +vainqueurs vainqueur nom m p 9.10 11.35 2.38 5.61 +vainquez vaincre ver 27.84 25.68 0.03 0.00 imp:pre:2p; +vainquions vaincre ver 27.84 25.68 0.02 0.00 ind:imp:1p; +vainquirent vaincre ver 27.84 25.68 0.01 0.00 ind:pas:3p; +vainquit vaincre ver 27.84 25.68 0.18 0.14 ind:pas:3s; +vainquons vaincre ver 27.84 25.68 0.03 0.00 ind:pre:1p; +vains vain adj m p 19.87 57.03 1.23 3.51 +vair vair nom m s 0.09 0.27 0.09 0.27 +vairon vairon adj m s 0.00 0.54 0.00 0.20 +vairons vairon nom m p 0.04 0.54 0.04 0.41 +vais aller ver 9992.78 2854.93 1644.99 280.00 ind:pre:1s; +vaisseau_amiral vaisseau_amiral nom m s 0.05 0.00 0.05 0.00 +vaisseau vaisseau nom m s 83.39 12.43 67.11 7.23 +vaisseaux vaisseau nom m p 83.39 12.43 16.27 5.20 +vaisselier vaisselier nom m s 0.07 0.68 0.07 0.61 +vaisseliers vaisselier nom m p 0.07 0.68 0.00 0.07 +vaisselle vaisselle nom f s 12.11 25.95 12.10 24.93 +vaisselles vaisselle nom f p 12.11 25.95 0.01 1.01 +val val nom m s 3.61 4.93 2.12 3.04 +valût valoir ver 236.07 175.74 0.00 0.61 sub:imp:3s; +valable valable adj s 9.10 10.41 7.46 8.65 +valablement valablement adv 0.00 0.27 0.00 0.27 +valables valable adj p 9.10 10.41 1.63 1.76 +valaient valoir ver 236.07 175.74 1.03 5.27 ind:imp:3p; +valais valoir ver 236.07 175.74 0.46 0.47 ind:imp:1s;ind:imp:2s; +valait valoir ver 236.07 175.74 15.82 41.62 ind:imp:3s; +valant valoir ver 236.07 175.74 1.00 1.49 par:pre; +valaque valaque nom s 0.01 0.00 0.01 0.00 +valdôtains valdôtain nom m p 0.00 0.14 0.00 0.14 +valdingua valdinguer ver 0.05 1.76 0.00 0.07 ind:pas:3s; +valdingue valdinguer ver 0.05 1.76 0.00 1.01 ind:pre:3s; +valdinguer valdinguer ver 0.05 1.76 0.05 0.14 inf; +valdingues valdinguer ver 0.05 1.76 0.00 0.41 ind:pre:2s; +valdingué valdinguer ver m s 0.05 1.76 0.00 0.07 par:pas; +valdingués valdinguer ver m p 0.05 1.76 0.00 0.07 par:pas; +valence valence nom f s 0.28 0.07 0.28 0.07 +valencien valencien nom m s 0.00 0.14 0.00 0.07 +valencienne valencienne nom f s 0.14 0.00 0.14 0.00 +valent valoir ver 236.07 175.74 9.79 8.58 ind:pre:3p; +valentin valentin nom m s 0.27 0.00 0.11 0.00 +valentine valentin nom f s 0.27 0.00 0.16 0.00 +valentinien valentinien nom m s 0.02 0.00 0.02 0.00 +valet valet nom m s 11.40 19.80 9.23 13.65 +valetaille valetaille nom f s 0.01 1.01 0.01 1.01 +valeter valeter ver 0.14 0.00 0.14 0.00 inf; +valets valet nom m p 11.40 19.80 2.17 6.15 +valeur_refuge valeur_refuge nom f s 0.00 0.07 0.00 0.07 +valeur valeur nom f s 45.40 52.30 32.48 40.74 +valeureuse valeureux adj f s 2.45 2.36 0.00 0.07 +valeureusement valeureusement adv 0.01 0.00 0.01 0.00 +valeureuses valeureux adj f p 2.45 2.36 0.01 0.07 +valeureux valeureux adj m 2.45 2.36 2.44 2.23 +valeurs valeur nom f p 45.40 52.30 12.91 11.55 +valez valoir ver 236.07 175.74 2.49 0.54 imp:pre:2p;ind:pre:2p; +valgus valgus adj m 0.02 0.00 0.02 0.00 +valida valider ver 1.23 0.54 0.00 0.07 ind:pas:3s; +validait valider ver 1.23 0.54 0.00 0.07 ind:imp:3s; +validant valider ver 1.23 0.54 0.00 0.07 par:pre; +validation validation nom f s 0.14 0.07 0.14 0.07 +valide valide adj s 2.31 3.38 1.72 1.55 +valident valider ver 1.23 0.54 0.01 0.00 ind:pre:3p; +valider valider ver 1.23 0.54 0.72 0.14 inf; +valideront valider ver 1.23 0.54 0.03 0.00 ind:fut:3p; +valides valide adj p 2.31 3.38 0.59 1.82 +validité validité nom f s 0.35 0.41 0.35 0.41 +validé valider ver m s 1.23 0.54 0.18 0.07 par:pas; +validée validé adj f s 0.07 2.57 0.04 0.00 +valiez valoir ver 236.07 175.74 0.15 0.00 ind:imp:2p; +valions valoir ver 236.07 175.74 0.16 0.14 ind:imp:1p; +valise valise nom f s 50.99 70.34 33.21 47.43 +valises valise nom f p 50.99 70.34 17.79 22.91 +valisé valiser ver m s 0.00 0.14 0.00 0.14 par:pas; +valkyries valkyrie nom f p 0.02 0.00 0.02 0.00 +valleuse valleuse nom f s 0.00 0.07 0.00 0.07 +vallon vallon nom m s 2.50 6.89 2.11 5.74 +vallonnaient vallonner ver 0.00 0.27 0.00 0.07 ind:imp:3p; +vallonnait vallonner ver 0.00 0.27 0.00 0.07 ind:imp:3s; +vallonnement vallonnement nom m s 0.00 2.09 0.00 0.88 +vallonnements vallonnement nom m p 0.00 2.09 0.00 1.22 +vallonner vallonner ver 0.00 0.27 0.00 0.07 inf; +vallonné vallonné adj m s 0.06 0.74 0.03 0.27 +vallonnée vallonné adj f s 0.06 0.74 0.01 0.27 +vallonnées vallonné adj f p 0.06 0.74 0.01 0.14 +vallonnés vallonné adj m p 0.06 0.74 0.01 0.07 +vallons vallon nom m p 2.50 6.89 0.40 1.15 +vallée vallée nom f s 13.54 35.68 12.51 30.14 +vallées vallée nom f p 13.54 35.68 1.03 5.54 +valoche valoche nom f s 0.46 3.38 0.19 2.03 +valoches valoche nom f p 0.46 3.38 0.27 1.35 +valoir valoir ver 236.07 175.74 4.62 9.32 inf; +valons valoir ver 236.07 175.74 0.78 0.41 imp:pre:1p;ind:pre:1p; +valorisait valoriser ver 0.45 0.81 0.00 0.07 ind:imp:3s; +valorisant valorisant adj m s 0.37 0.14 0.35 0.14 +valorisante valorisant adj f s 0.37 0.14 0.02 0.00 +valorisation valorisation nom f s 0.01 0.00 0.01 0.00 +valorise valoriser ver 0.45 0.81 0.19 0.27 imp:pre:2s;ind:pre:3s; +valoriser valoriser ver 0.45 0.81 0.22 0.20 inf; +valorisez valoriser ver 0.45 0.81 0.01 0.00 ind:pre:2p; +valorisé valoriser ver m s 0.45 0.81 0.00 0.07 par:pas; +valorisée valoriser ver f s 0.45 0.81 0.02 0.07 par:pas; +valorisés valoriser ver m p 0.45 0.81 0.01 0.14 par:pas; +valpolicella valpolicella nom m s 0.01 0.14 0.01 0.14 +vals val nom m p 3.61 4.93 0.61 0.54 +valsa valser ver 1.93 5.14 0.00 0.20 ind:pas:3s; +valsaient valser ver 1.93 5.14 0.00 0.47 ind:imp:3p; +valsait valser ver 1.93 5.14 0.04 0.34 ind:imp:3s; +valsant valser ver 1.93 5.14 0.05 0.27 par:pre; +valse_hésitation valse_hésitation nom f s 0.00 0.27 0.00 0.20 +valse valse nom f s 5.55 9.32 5.45 7.91 +valsent valser ver 1.93 5.14 0.11 0.20 ind:pre:3p; +valser valser ver 1.93 5.14 1.33 2.43 inf; +valsera valser ver 1.93 5.14 0.01 0.00 ind:fut:3s; +valse_hésitation valse_hésitation nom f p 0.00 0.27 0.00 0.07 +valses valse nom f p 5.55 9.32 0.11 1.42 +valseur valseur nom m s 0.12 1.35 0.01 1.08 +valseurs valseur nom m p 0.12 1.35 0.00 0.14 +valseuse valseur nom f s 0.12 1.35 0.11 0.00 +valseuses valseuse nom f p 0.14 0.00 0.14 0.00 +valsez valser ver 1.93 5.14 0.04 0.07 ind:pre:2p; +valsons valser ver 1.93 5.14 0.02 0.00 imp:pre:1p;ind:pre:1p; +valsèrent valser ver 1.93 5.14 0.01 0.07 ind:pas:3p; +valsé valser ver m s 1.93 5.14 0.20 0.61 par:pas; +valu valoir ver m s 236.07 175.74 3.82 9.39 par:pas; +value valoir ver f s 236.07 175.74 0.12 0.07 par:pas; +values valoir ver f p 236.07 175.74 0.00 0.14 par:pas; +valurent valoir ver 236.07 175.74 0.03 0.81 ind:pas:3p; +valériane valériane nom f s 0.30 0.14 0.30 0.14 +valut valoir ver 236.07 175.74 0.56 3.45 ind:pas:3s; +valétudinaire valétudinaire adj m s 0.01 0.14 0.01 0.14 +valve valve nom f s 2.63 1.01 1.60 0.47 +valves valve nom f p 2.63 1.01 1.03 0.54 +valvulaires valvulaire adj p 0.00 0.07 0.00 0.07 +valvule valvule nom f s 0.22 0.07 0.22 0.07 +vamp_club vamp_club nom f s 0.01 0.00 0.01 0.00 +vamp vamp nom f s 0.48 1.42 0.33 1.22 +vampe vamper ver 0.24 0.07 0.01 0.00 imp:pre:2s; +vamper vamper ver 0.24 0.07 0.20 0.07 inf; +vampire vampire nom m s 27.27 3.24 15.29 1.82 +vampires vampire nom m p 27.27 3.24 11.98 1.42 +vampirique vampirique adj s 0.21 0.20 0.21 0.20 +vampirisant vampiriser ver 0.10 0.20 0.01 0.00 par:pre; +vampirise vampiriser ver 0.10 0.20 0.04 0.07 ind:pre:1s;ind:pre:3s; +vampirisme vampirisme nom m s 0.32 0.14 0.32 0.14 +vampirisé vampiriser ver m s 0.10 0.20 0.00 0.07 par:pas; +vampirisée vampiriser ver f s 0.10 0.20 0.05 0.00 par:pas; +vampirisées vampiriser ver f p 0.10 0.20 0.00 0.07 par:pas; +vamps vamp nom f p 0.48 1.42 0.16 0.20 +vampé vamper ver m s 0.24 0.07 0.03 0.00 par:pas; +van van nom_sup m s 8.90 3.24 8.78 3.24 +vanadium vanadium nom m s 0.00 0.74 0.00 0.74 +vandale vandale nom s 1.14 0.88 0.33 0.47 +vandales vandale nom p 1.14 0.88 0.81 0.41 +vandalisent vandaliser ver 0.33 0.14 0.01 0.07 ind:pre:3p; +vandaliser vandaliser ver 0.33 0.14 0.09 0.07 inf; +vandalisme vandalisme nom m s 1.53 1.55 1.53 1.55 +vandalisé vandaliser ver m s 0.33 0.14 0.23 0.00 par:pas; +vandoises vandoise nom f p 0.00 0.14 0.00 0.14 +vanille vanille nom f s 2.50 3.38 2.50 3.38 +vanillé vanillé adj m s 0.17 0.20 0.17 0.07 +vanillée vanillé adj f s 0.17 0.20 0.00 0.07 +vanillées vanillé adj f p 0.17 0.20 0.00 0.07 +vaniteuse vaniteux adj f s 2.23 2.50 0.49 0.68 +vaniteusement vaniteusement adv 0.00 0.07 0.00 0.07 +vaniteuses vaniteux adj f p 2.23 2.50 0.14 0.07 +vaniteux vaniteux adj m 2.23 2.50 1.60 1.76 +vanité vanité nom f s 5.75 17.97 5.16 16.49 +vanités vanité nom f p 5.75 17.97 0.59 1.49 +vanity_case vanity_case nom m s 0.11 0.14 0.11 0.14 +vanna vanner ver 1.32 4.39 0.04 1.96 ind:pas:3s; +vannais vanner ver 1.32 4.39 0.00 0.07 ind:imp:1s; +vannait vanner ver 1.32 4.39 0.00 0.07 ind:imp:3s; +vanne vanne nom f s 2.73 7.36 0.94 3.11 +vanneau vanneau nom m s 0.00 0.74 0.00 0.34 +vanneaux vanneau nom m p 0.00 0.74 0.00 0.41 +vannent vanner ver 1.32 4.39 0.02 0.00 ind:pre:3p; +vanner vanner ver 1.32 4.39 0.09 0.54 inf; +vannerie vannerie nom f s 0.14 0.74 0.14 0.68 +vanneries vannerie nom f p 0.14 0.74 0.00 0.07 +vannes vanne nom f p 2.73 7.36 1.79 4.26 +vanneur vanneur nom m s 0.00 0.20 0.00 0.14 +vanneurs vanneur nom m p 0.00 0.20 0.00 0.07 +vannier vannier nom m s 0.00 0.27 0.00 0.20 +vanniers vannier nom m p 0.00 0.27 0.00 0.07 +vannières vannière nom f p 0.00 0.07 0.00 0.07 +vannèrent vanner ver 1.32 4.39 0.00 0.07 ind:pas:3p; +vanné vanner ver m s 1.32 4.39 0.56 0.34 par:pas; +vannée vanner ver f s 1.32 4.39 0.36 0.27 par:pas; +vannés vanner ver m p 1.32 4.39 0.16 0.00 par:pas; +vans van nom_sup m p 8.90 3.24 0.13 0.00 +vanta vanter ver 10.73 23.24 0.03 0.68 ind:pas:3s; +vantai vanter ver 10.73 23.24 0.00 0.14 ind:pas:1s; +vantaient vanter ver 10.73 23.24 0.05 1.49 ind:imp:3p; +vantail vantail nom m s 0.00 3.85 0.00 2.23 +vantais vanter ver 10.73 23.24 0.25 0.41 ind:imp:1s;ind:imp:2s; +vantait vanter ver 10.73 23.24 0.49 4.46 ind:imp:3s; +vantant vanter ver 10.73 23.24 0.36 1.42 par:pre; +vantard vantard nom m s 1.60 0.14 1.06 0.07 +vantarde vantard adj f s 0.34 0.74 0.01 0.00 +vantardes vantard adj f p 0.34 0.74 0.01 0.07 +vantardise vantardise nom f s 0.19 1.69 0.16 0.74 +vantardises vantardise nom f p 0.19 1.69 0.03 0.95 +vantards vantard nom m p 1.60 0.14 0.53 0.07 +vantaux vantail nom m p 0.00 3.85 0.00 1.62 +vante vanter ver 10.73 23.24 1.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vantent vanter ver 10.73 23.24 0.39 1.15 ind:pre:3p; +vanter vanter ver 10.73 23.24 4.80 7.50 inf; +vantera vanter ver 10.73 23.24 0.01 0.20 ind:fut:3s; +vanterai vanter ver 10.73 23.24 0.16 0.07 ind:fut:1s; +vanterais vanter ver 10.73 23.24 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +vanterait vanter ver 10.73 23.24 0.01 0.00 cnd:pre:3s; +vanteras vanter ver 10.73 23.24 0.14 0.00 ind:fut:2s; +vanterie vanterie nom f s 0.01 0.20 0.00 0.07 +vanteries vanterie nom f p 0.01 0.20 0.01 0.14 +vanteront vanter ver 10.73 23.24 0.02 0.07 ind:fut:3p; +vantes vanter ver 10.73 23.24 0.46 0.20 ind:pre:2s; +vantez vanter ver 10.73 23.24 0.16 0.14 imp:pre:2p;ind:pre:2p; +vantiez vanter ver 10.73 23.24 0.01 0.00 ind:imp:2p; +vantions vanter ver 10.73 23.24 0.10 0.00 ind:imp:1p; +vantons vanter ver 10.73 23.24 0.03 0.00 imp:pre:1p;ind:pre:1p; +vantât vanter ver 10.73 23.24 0.00 0.07 sub:imp:3s; +vanté vanter ver m s 10.73 23.24 1.12 1.89 par:pas; +vantée vanter ver f s 10.73 23.24 0.22 0.34 par:pas; +vantées vanter ver f p 10.73 23.24 0.00 0.20 par:pas; +vantés vanter ver m p 10.73 23.24 0.01 0.20 par:pas; +vape vape nom f s 1.26 3.04 0.00 2.30 +vapes vape nom f p 1.26 3.04 1.26 0.74 +vapeur vapeur nom s 8.02 26.76 6.17 19.12 +vapeurs vapeur nom p 8.02 26.76 1.85 7.64 +vaporetto vaporetto nom m s 0.32 0.41 0.32 0.41 +vaporeuse vaporeux adj f s 0.21 4.53 0.17 1.76 +vaporeuses vaporeux adj f p 0.21 4.53 0.00 0.47 +vaporeux vaporeux adj m 0.21 4.53 0.04 2.30 +vaporisa vaporiser ver 1.47 1.82 0.00 0.34 ind:pas:3s; +vaporisais vaporiser ver 1.47 1.82 0.01 0.00 ind:imp:1s; +vaporisait vaporiser ver 1.47 1.82 0.14 0.41 ind:imp:3s; +vaporisant vaporiser ver 1.47 1.82 0.00 0.07 par:pre; +vaporisateur vaporisateur nom m s 0.30 1.08 0.28 0.74 +vaporisateurs vaporisateur nom m p 0.30 1.08 0.01 0.34 +vaporisation vaporisation nom f s 0.09 0.14 0.09 0.07 +vaporisations vaporisation nom f p 0.09 0.14 0.00 0.07 +vaporise vaporiser ver 1.47 1.82 0.20 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vaporiser vaporiser ver 1.47 1.82 0.51 0.34 inf; +vaporiserait vaporiser ver 1.47 1.82 0.03 0.07 cnd:pre:3s; +vaporises vaporiser ver 1.47 1.82 0.02 0.00 ind:pre:2s; +vaporisez vaporiser ver 1.47 1.82 0.08 0.00 imp:pre:2p;ind:pre:2p; +vaporisé vaporiser ver m s 1.47 1.82 0.42 0.00 par:pas; +vaporisée vaporiser ver f s 1.47 1.82 0.07 0.41 par:pas; +vaps vaps nom f p 0.24 0.00 0.24 0.00 +vaquai vaquer ver 0.67 3.18 0.00 0.07 ind:pas:1s; +vaquaient vaquer ver 0.67 3.18 0.04 0.27 ind:imp:3p; +vaquais vaquer ver 0.67 3.18 0.03 0.07 ind:imp:1s; +vaquait vaquer ver 0.67 3.18 0.01 1.28 ind:imp:3s; +vaquant vaquer ver 0.67 3.18 0.02 0.27 par:pre; +vaque vaquer ver 0.67 3.18 0.07 0.27 ind:pre:1s;ind:pre:3s; +vaquent vaquer ver 0.67 3.18 0.00 0.14 ind:pre:3p; +vaquer vaquer ver 0.67 3.18 0.37 0.61 inf; +vaquerait vaquer ver 0.67 3.18 0.00 0.07 cnd:pre:3s; +vaquero vaquero nom m s 0.11 0.07 0.06 0.07 +vaqueros vaquero nom m p 0.11 0.07 0.05 0.00 +vaquions vaquer ver 0.67 3.18 0.00 0.07 ind:imp:1p; +vaquons vaquer ver 0.67 3.18 0.10 0.07 imp:pre:1p;ind:pre:1p; +vaqué vaquer ver m s 0.67 3.18 0.02 0.00 par:pas; +var var nom m s 0.01 0.00 0.01 0.00 +vara vara adj f s 0.00 0.07 0.00 0.07 +varan varan nom m s 0.02 0.07 0.01 0.07 +varans varan nom m p 0.02 0.07 0.01 0.00 +varappe varappe nom f s 0.06 0.07 0.06 0.07 +varapper varapper ver 0.00 0.07 0.00 0.07 inf; +varappeur varappeur nom m s 0.00 0.07 0.00 0.07 +varech varech nom m s 0.25 2.70 0.25 2.43 +varechs varech nom m p 0.25 2.70 0.00 0.27 +varenne varenne nom f s 0.00 4.53 0.00 4.12 +varennes varenne nom f p 0.00 4.53 0.00 0.41 +vareuse vareuse nom f s 0.81 8.24 0.56 6.82 +vareuses vareuse nom f p 0.81 8.24 0.25 1.42 +varia varia nom m p 0.02 0.07 0.02 0.07 +variabilité variabilité nom f s 0.05 0.14 0.05 0.14 +variable variable adj s 0.98 2.64 0.81 1.76 +variables variable nom f p 1.05 0.14 0.74 0.00 +variaient varier ver 2.69 8.92 0.01 0.61 ind:imp:3p; +variais varier ver 2.69 8.92 0.00 0.14 ind:imp:1s; +variait varier ver 2.69 8.92 0.03 1.22 ind:imp:3s; +variance variance nom f s 0.03 0.00 0.03 0.00 +variant varier ver 2.69 8.92 0.03 0.81 par:pre; +variante variante nom f s 0.95 3.24 0.77 0.81 +variantes variante nom f p 0.95 3.24 0.18 2.43 +variateur variateur nom m s 0.02 0.14 0.02 0.14 +variation variation nom f s 1.83 6.28 0.50 1.08 +variations variation nom f p 1.83 6.28 1.33 5.20 +varice varice nom f s 0.67 1.76 0.01 0.00 +varicelle varicelle nom f s 1.03 0.74 1.03 0.74 +varices varice nom f p 0.67 1.76 0.66 1.76 +varie varier ver 2.69 8.92 0.91 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +varient varier ver 2.69 8.92 0.46 0.61 ind:pre:3p; +varier varier ver 2.69 8.92 0.66 1.76 inf; +varierai varier ver 2.69 8.92 0.01 0.07 ind:fut:1s; +varieraient varier ver 2.69 8.92 0.00 0.07 cnd:pre:3p; +varierait varier ver 2.69 8.92 0.00 0.14 cnd:pre:3s; +varieront varier ver 2.69 8.92 0.00 0.07 ind:fut:3p; +variole variole nom f s 2.42 0.34 2.42 0.34 +variorum variorum nom m s 0.00 0.07 0.00 0.07 +variât varier ver 2.69 8.92 0.00 0.07 sub:imp:3s; +variqueuses variqueux adj f p 0.00 0.47 0.00 0.14 +variqueux variqueux adj m 0.00 0.47 0.00 0.34 +varié varié adj m s 1.53 5.74 0.47 0.61 +variée varier ver f s 2.69 8.92 0.23 0.41 par:pas; +variées varié adj f p 1.53 5.74 0.43 1.69 +variés varié adj m p 1.53 5.74 0.41 2.70 +variétal variétal adj m s 0.01 0.00 0.01 0.00 +variété variété nom f s 3.42 9.73 2.17 6.42 +variétés variété nom f p 3.42 9.73 1.25 3.31 +varlet varlet nom m s 0.01 0.07 0.01 0.07 +varlope varlope nom f s 0.00 0.41 0.00 0.41 +varon varon nom m s 0.12 0.00 0.12 0.00 +varsovien varsovien nom m s 0.10 0.00 0.10 0.00 +vas aller ver 9992.78 2854.93 1009.22 136.35 imp:pre:2s;ind:pre:2s; +vasa vaser ver 0.02 0.41 0.02 0.20 ind:pas:3s; +vasais vasais nom m 0.00 0.20 0.00 0.20 +vasait vaser ver 0.02 0.41 0.00 0.07 ind:imp:3s; +vasards vasard adj m p 0.00 0.14 0.00 0.14 +vasculaire vasculaire adj s 1.26 0.27 1.01 0.07 +vasculaires vasculaire adj m p 1.26 0.27 0.25 0.20 +vascularisé vascularisé adj m s 0.02 0.00 0.02 0.00 +vasculo_nerveux vasculo_nerveux nom m 0.01 0.00 0.01 0.00 +vase vase nom s 10.74 32.97 9.83 26.76 +vasectomie vasectomie nom f s 0.38 0.00 0.38 0.00 +vaseline vaseline nom f s 0.94 1.28 0.94 1.28 +vaseliner vaseliner ver 0.02 0.07 0.01 0.00 inf; +vaselinez vaseliner ver 0.02 0.07 0.01 0.00 imp:pre:2p; +vaseliné vaseliner ver m s 0.02 0.07 0.00 0.07 par:pas; +vaser vaser ver 0.02 0.41 0.00 0.14 inf; +vases vase nom p 10.74 32.97 0.91 6.22 +vaseuse vaseux adj f s 0.43 2.43 0.14 0.54 +vaseuses vaseux adj f p 0.43 2.43 0.03 0.20 +vaseux vaseux adj m 0.43 2.43 0.25 1.69 +vasistas vasistas nom m 0.08 3.85 0.08 3.85 +vasière vasière nom f s 0.00 0.88 0.00 0.07 +vasières vasière nom f p 0.00 0.88 0.00 0.81 +vasoconstricteur vasoconstricteur adj m s 0.14 0.00 0.14 0.00 +vasoconstriction vasoconstriction nom f s 0.03 0.00 0.03 0.00 +vasodilatateur vasodilatateur adj m s 0.01 0.00 0.01 0.00 +vasodilatation vasodilatation nom f s 0.01 0.00 0.01 0.00 +vasomoteurs vasomoteur adj m p 0.02 0.00 0.02 0.00 +vasopressine vasopressine nom f s 0.01 0.00 0.01 0.00 +vasouillard vasouillard adj m s 0.00 0.34 0.00 0.27 +vasouillarde vasouillard adj f s 0.00 0.34 0.00 0.07 +vasouille vasouiller ver 0.12 0.20 0.01 0.07 ind:pre:3s; +vasouiller vasouiller ver 0.12 0.20 0.10 0.14 inf; +vasouilles vasouiller ver 0.12 0.20 0.01 0.00 ind:pre:2s; +vasque vasque nom f s 0.25 3.99 0.01 2.91 +vasques vasque nom f p 0.25 3.99 0.24 1.08 +vassal vassal nom m s 2.24 4.39 1.77 1.49 +vassale vassal nom f s 2.24 4.39 0.00 0.14 +vassalité vassalité nom f s 0.00 0.20 0.00 0.20 +vassaux vassal nom m p 2.24 4.39 0.47 2.77 +vaste vaste adj s 10.32 71.76 8.44 55.61 +vastes vaste adj p 10.32 71.76 1.88 16.15 +vastité vastité nom f s 0.00 0.07 0.00 0.07 +vastitude vastitude nom f s 0.00 0.27 0.00 0.20 +vastitudes vastitude nom f p 0.00 0.27 0.00 0.07 +vater vater nom m s 0.00 0.07 0.00 0.07 +vaticane vaticane adj f s 0.00 0.20 0.00 0.20 +vaticanesque vaticanesque adj s 0.00 0.07 0.00 0.07 +vaticinait vaticiner ver 0.00 0.61 0.00 0.14 ind:imp:3s; +vaticinant vaticiner ver 0.00 0.61 0.00 0.27 par:pre; +vaticination vaticination nom f s 0.00 0.47 0.00 0.07 +vaticinations vaticination nom f p 0.00 0.47 0.00 0.41 +vaticine vaticiner ver 0.00 0.61 0.00 0.07 ind:pre:3s; +vaticiner vaticiner ver 0.00 0.61 0.00 0.14 inf; +vatères vatère nom m p 0.00 0.14 0.00 0.14 +vau_l_eau vau_l_eau nom m s 0.00 0.14 0.00 0.14 +vau vau nom m s 0.01 0.20 0.01 0.20 +vauclusien vauclusien adj m s 0.14 0.07 0.14 0.00 +vauclusiennes vauclusien adj f p 0.14 0.07 0.00 0.07 +vaudeville vaudeville nom m s 0.41 1.82 0.35 1.55 +vaudevilles vaudeville nom m p 0.41 1.82 0.05 0.27 +vaudevillesque vaudevillesque adj s 0.03 0.14 0.03 0.07 +vaudevillesques vaudevillesque adj p 0.03 0.14 0.00 0.07 +vaudois vaudois adj m 0.00 0.74 0.00 0.68 +vaudoise vaudois adj f s 0.00 0.74 0.00 0.07 +vaudou vaudou nom m s 2.93 0.41 2.92 0.41 +vaudoue vaudou adj f s 1.48 0.68 0.03 0.07 +vaudoues vaudou adj f p 1.48 0.68 0.00 0.14 +vaudouisme vaudouisme nom m s 0.02 0.00 0.02 0.00 +vaudous vaudou adj m p 1.48 0.68 0.12 0.07 +vaudra valoir ver 236.07 175.74 4.34 3.51 ind:fut:3s; +vaudrai valoir ver 236.07 175.74 0.07 0.07 ind:fut:1s; +vaudraient valoir ver 236.07 175.74 0.29 0.14 cnd:pre:3p; +vaudrais valoir ver 236.07 175.74 0.07 0.14 cnd:pre:1s;cnd:pre:2s; +vaudrait valoir ver 236.07 175.74 14.23 11.08 cnd:pre:3s; +vaudras valoir ver 236.07 175.74 0.21 0.07 ind:fut:2s; +vaudrez valoir ver 236.07 175.74 0.03 0.00 ind:fut:2p; +vaudrions valoir ver 236.07 175.74 0.02 0.00 cnd:pre:1p; +vaudrons valoir ver 236.07 175.74 0.00 0.07 ind:fut:1p; +vaudront valoir ver 236.07 175.74 0.42 0.47 ind:fut:3p; +vaurien vaurien nom m s 10.22 2.36 7.06 1.89 +vaurienne vaurien nom f s 10.22 2.36 0.21 0.07 +vauriens vaurien nom m p 10.22 2.36 2.94 0.41 +vaut valoir ver 236.07 175.74 161.53 69.39 ind:pre:3s; +vautour vautour nom m s 5.89 4.39 2.41 2.57 +vautours vautour nom m p 5.89 4.39 3.48 1.82 +vautra vautrer ver 2.73 10.27 0.00 0.07 ind:pas:3s; +vautraient vautrer ver 2.73 10.27 0.00 0.27 ind:imp:3p; +vautrais vautrer ver 2.73 10.27 0.02 0.41 ind:imp:1s; +vautrait vautrer ver 2.73 10.27 0.03 0.54 ind:imp:3s; +vautrant vautrer ver 2.73 10.27 0.12 0.14 par:pre; +vautre vautrer ver 2.73 10.27 0.31 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vautrent vautrer ver 2.73 10.27 0.04 0.14 ind:pre:3p; +vautrer vautrer ver 2.73 10.27 1.07 1.62 inf; +vautreraient vautrer ver 2.73 10.27 0.00 0.14 cnd:pre:3p; +vautrerais vautrer ver 2.73 10.27 0.00 0.07 cnd:pre:1s; +vautrez vautrer ver 2.73 10.27 0.16 0.07 imp:pre:2p;ind:pre:2p; +vautrèrent vautrer ver 2.73 10.27 0.00 0.07 ind:pas:3p; +vautré vautrer ver m s 2.73 10.27 0.60 2.16 par:pas; +vautrée vautrer ver f s 2.73 10.27 0.22 1.28 par:pas; +vautrées vautrer ver f p 2.73 10.27 0.01 0.20 par:pas; +vautrés vautrer ver m p 2.73 10.27 0.16 1.96 par:pas; +vauvert vauvert nom s 0.00 0.14 0.00 0.14 +vaux valoir ver 236.07 175.74 10.79 2.97 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vauxhall vauxhall nom m s 0.06 0.07 0.06 0.07 +veau veau nom m s 8.66 16.96 7.69 13.92 +veaux veau nom m p 8.66 16.96 0.97 3.04 +vecteur vecteur nom m s 0.92 0.27 0.62 0.20 +vecteurs vecteur nom m p 0.92 0.27 0.30 0.07 +vectoriel vectoriel adj m s 0.24 0.07 0.03 0.00 +vectorielle vectoriel adj f s 0.24 0.07 0.21 0.07 +vedettariat vedettariat nom m s 0.07 0.14 0.07 0.14 +vedette vedette nom f s 13.55 20.88 11.18 13.92 +vedettes vedette nom f p 13.55 20.88 2.37 6.96 +veilla veiller ver 38.41 41.62 0.01 0.54 ind:pas:3s; +veillai veiller ver 38.41 41.62 0.10 0.07 ind:pas:1s; +veillaient veiller ver 38.41 41.62 0.18 2.70 ind:imp:3p; +veillais veiller ver 38.41 41.62 0.48 0.54 ind:imp:1s;ind:imp:2s; +veillait veiller ver 38.41 41.62 0.79 8.92 ind:imp:3s; +veillant veiller ver 38.41 41.62 0.25 1.76 par:pre; +veille veille nom f s 17.07 89.05 16.84 87.36 +veillent veiller ver 38.41 41.62 1.14 1.96 ind:pre:3p; +veiller veiller ver 38.41 41.62 10.18 12.91 inf; +veillera veiller ver 38.41 41.62 1.66 0.61 ind:fut:3s; +veillerai veiller ver 38.41 41.62 4.61 0.34 ind:fut:1s; +veillerais veiller ver 38.41 41.62 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +veillerait veiller ver 38.41 41.62 0.23 0.34 cnd:pre:3s; +veilleras veiller ver 38.41 41.62 0.27 0.07 ind:fut:2s; +veillerez veiller ver 38.41 41.62 0.27 0.07 ind:fut:2p; +veillerons veiller ver 38.41 41.62 0.30 0.14 ind:fut:1p; +veilleront veiller ver 38.41 41.62 0.23 0.20 ind:fut:3p; +veilles veiller ver 38.41 41.62 1.19 0.27 ind:pre:2s;sub:pre:2s; +veilleur veilleur nom m s 3.68 12.57 2.10 3.31 +veilleurs veilleur nom m p 3.68 12.57 0.05 0.68 +veilleuse veilleur nom f s 3.68 12.57 1.53 6.89 +veilleuses veilleuse nom f p 0.17 0.00 0.17 0.00 +veillez veiller ver 38.41 41.62 5.11 0.68 imp:pre:2p;ind:pre:2p; +veillions veiller ver 38.41 41.62 0.02 0.07 ind:imp:1p; +veillâmes veiller ver 38.41 41.62 0.00 0.07 ind:pas:1p; +veillons veiller ver 38.41 41.62 0.10 0.14 imp:pre:1p;ind:pre:1p; +veillât veiller ver 38.41 41.62 0.00 0.07 sub:imp:3s; +veillèrent veiller ver 38.41 41.62 0.01 0.07 ind:pas:3p; +veillé veiller ver m s 38.41 41.62 2.71 3.18 par:pas; +veillée veillée nom f s 2.56 8.31 2.34 4.73 +veillées veillée nom f p 2.56 8.31 0.22 3.58 +veillés veiller ver m p 38.41 41.62 0.00 0.20 par:pas; +veinaient veiner ver 0.01 1.55 0.00 0.14 ind:imp:3p; +veinait veiner ver 0.01 1.55 0.01 0.00 ind:imp:3s; +veinard veinard nom m s 5.79 1.89 4.33 0.88 +veinarde veinard nom f s 5.79 1.89 0.90 0.14 +veinardes veinard adj f p 1.75 1.22 0.04 0.00 +veinards veinard nom m p 5.79 1.89 0.53 0.88 +veine veine nom f s 19.74 35.41 10.75 15.27 +veinent veiner ver 0.01 1.55 0.00 0.07 ind:pre:3p; +veines veine nom f p 19.74 35.41 8.99 20.14 +veineuse veineux adj f s 0.20 0.27 0.06 0.20 +veineux veineux adj m s 0.20 0.27 0.14 0.07 +veiné veiné adj m s 0.11 1.01 0.00 0.88 +veinée veiné adj f s 0.11 1.01 0.11 0.00 +veinées veiner ver f p 0.01 1.55 0.00 0.27 par:pas; +veinule veinule nom f s 0.00 1.15 0.00 0.07 +veinules veinule nom f p 0.00 1.15 0.00 1.08 +veinulé veinulé adj m s 0.00 0.14 0.00 0.14 +veinures veinure nom f p 0.00 0.14 0.00 0.14 +veinés veiner ver m p 0.01 1.55 0.00 0.14 par:pas; +velcro velcro nom m s 0.39 0.00 0.39 0.00 +veld veld nom m s 0.01 0.00 0.01 0.00 +veldt veldt nom m s 0.04 0.00 0.04 0.00 +vellave vellave adj f s 0.00 0.07 0.00 0.07 +velléitaire velléitaire adj s 0.04 0.95 0.04 0.95 +velléité velléité nom f s 0.20 3.92 0.10 1.55 +velléités velléité nom f p 0.20 3.92 0.10 2.36 +velours velours nom m 4.31 35.88 4.31 35.88 +veloutaient velouter ver 0.03 1.08 0.00 0.07 ind:imp:3p; +veloutait velouter ver 0.03 1.08 0.00 0.07 ind:imp:3s; +veloute velouter ver 0.03 1.08 0.00 0.14 ind:pre:3s; +veloutent velouter ver 0.03 1.08 0.00 0.07 ind:pre:3p; +velouter velouter ver 0.03 1.08 0.00 0.07 inf; +velouteuse velouteux adj f s 0.01 0.07 0.01 0.00 +velouteux velouteux adj m s 0.01 0.07 0.00 0.07 +velouté velouté adj m s 0.36 4.93 0.30 2.36 +veloutée velouté adj f s 0.36 4.93 0.05 1.15 +veloutées velouter ver f p 0.03 1.08 0.01 0.20 par:pas; +veloutés velouté nom m p 0.27 1.76 0.14 0.07 +velte velte nom f s 0.01 0.00 0.01 0.00 +velu velu adj m s 1.03 7.43 0.47 2.43 +velue velu adj f s 1.03 7.43 0.25 2.50 +velues velu adj f p 1.03 7.43 0.22 1.76 +velum velum nom m s 0.03 0.00 0.03 0.00 +velus velu adj m p 1.03 7.43 0.10 0.74 +velux velux nom m s 0.01 0.00 0.01 0.00 +velvet velvet nom m s 0.15 0.27 0.15 0.27 +venaient venir ver 2763.69 1514.53 9.96 73.65 ind:imp:3p; +venais venir ver 2763.69 1514.53 23.32 29.86 ind:imp:1s;ind:imp:2s; +venaison venaison nom f s 0.08 0.54 0.08 0.41 +venaisons venaison nom f p 0.08 0.54 0.00 0.14 +venait venir ver 2763.69 1514.53 50.25 271.89 ind:imp:3s; +venant venir ver 2763.69 1514.53 17.66 32.36 par:pre; +vend vendre ver 206.95 92.64 22.75 8.65 ind:pre:3s; +vendît vendre ver 206.95 92.64 0.00 0.07 sub:imp:3s; +vendômois vendômois adj m 0.00 0.07 0.00 0.07 +vendable vendable adj s 0.04 0.14 0.02 0.07 +vendables vendable adj p 0.04 0.14 0.02 0.07 +vendaient vendre ver 206.95 92.64 0.56 2.23 ind:imp:3p; +vendais vendre ver 206.95 92.64 1.96 0.95 ind:imp:1s;ind:imp:2s; +vendait vendre ver 206.95 92.64 4.46 9.93 ind:imp:3s; +vendange vendange nom f s 1.54 3.38 0.17 0.95 +vendangeait vendanger ver 0.74 0.20 0.00 0.07 ind:imp:3s; +vendanger vendanger ver 0.74 0.20 0.47 0.00 inf; +vendanges vendange nom f p 1.54 3.38 1.37 2.43 +vendangeur vendangeur nom m s 0.00 0.54 0.00 0.14 +vendangeurs vendangeur nom m p 0.00 0.54 0.00 0.34 +vendangeuses vendangeur nom f p 0.00 0.54 0.00 0.07 +vendangé vendanger ver m s 0.74 0.20 0.00 0.07 par:pas; +vendant vendre ver 206.95 92.64 2.11 2.30 par:pre; +vende vendre ver 206.95 92.64 1.93 0.61 sub:pre:1s;sub:pre:3s; +vendent vendre ver 206.95 92.64 6.09 3.04 ind:pre:3p; +vendes vendre ver 206.95 92.64 0.29 0.00 sub:pre:2s; +vendetta vendetta nom f s 1.25 0.81 1.20 0.74 +vendettas vendetta nom f p 1.25 0.81 0.05 0.07 +vendeur vendeur nom m s 16.05 18.65 11.30 4.93 +vendeurs vendeur nom m p 16.05 18.65 2.71 4.59 +vendeuse vendeur nom f s 16.05 18.65 2.04 7.09 +vendeuses vendeuse nom f p 0.79 0.00 0.79 0.00 +vendez vendre ver 206.95 92.64 6.11 1.22 imp:pre:2p;ind:pre:2p; +vendiez vendre ver 206.95 92.64 0.34 0.07 ind:imp:2p; +vendions vendre ver 206.95 92.64 0.13 1.01 ind:imp:1p; +vendirent vendre ver 206.95 92.64 0.16 0.07 ind:pas:3p; +vendis vendre ver 206.95 92.64 0.31 0.20 ind:pas:1s; +vendisse vendre ver 206.95 92.64 0.00 0.07 sub:imp:1s; +vendit vendre ver 206.95 92.64 0.26 1.96 ind:pas:3s; +vendons vendre ver 206.95 92.64 1.34 0.20 imp:pre:1p;ind:pre:1p; +vendra vendre ver 206.95 92.64 3.03 0.61 ind:fut:3s; +vendrai vendre ver 206.95 92.64 3.15 0.54 ind:fut:1s; +vendraient vendre ver 206.95 92.64 0.23 0.27 cnd:pre:3p; +vendrais vendre ver 206.95 92.64 1.68 0.47 cnd:pre:1s;cnd:pre:2s; +vendrait vendre ver 206.95 92.64 1.34 1.08 cnd:pre:3s; +vendras vendre ver 206.95 92.64 0.48 0.07 ind:fut:2s; +vendre vendre ver 206.95 92.64 73.62 30.81 ind:pre:2p;inf; +vendredi vendredi nom m s 32.49 19.05 31.36 18.31 +vendredis vendredi nom m p 32.49 19.05 1.13 0.74 +vendrez vendre ver 206.95 92.64 0.65 0.41 ind:fut:2p; +vendriez vendre ver 206.95 92.64 0.30 0.00 cnd:pre:2p; +vendrons vendre ver 206.95 92.64 0.44 0.07 ind:fut:1p; +vendront vendre ver 206.95 92.64 0.53 0.27 ind:fut:3p; +vends vendre ver 206.95 92.64 23.35 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vendu vendre ver m s 206.95 92.64 37.62 14.73 par:pas; +vendue vendre ver f s 206.95 92.64 7.17 2.97 par:pas; +vendéen vendéen adj m s 0.00 0.34 0.00 0.14 +vendéenne vendéen adj f s 0.00 0.34 0.00 0.07 +vendéennes vendéen adj f p 0.00 0.34 0.00 0.07 +vendéens vendéen adj m p 0.00 0.34 0.00 0.07 +vendues vendre ver f p 206.95 92.64 1.09 1.08 par:pas; +vendémiaire vendémiaire nom m s 0.00 0.34 0.00 0.34 +vendus vendre ver m p 206.95 92.64 3.47 1.82 par:pas; +venelle venelle nom f s 0.21 3.58 0.21 1.82 +venelles venelle nom f p 0.21 3.58 0.00 1.76 +venette venette nom f s 0.01 0.07 0.01 0.07 +veneur veneur nom m s 0.00 2.91 0.00 2.57 +veneurs veneur nom m p 0.00 2.91 0.00 0.34 +venez venir ver 2763.69 1514.53 304.03 41.42 imp:pre:2p;ind:pre:2p; +venge venger ver 37.73 24.46 3.89 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +vengea venger ver 37.73 24.46 0.17 0.34 ind:pas:3s; +vengeai venger ver 37.73 24.46 0.00 0.07 ind:pas:1s; +vengeaient venger ver 37.73 24.46 0.00 0.41 ind:imp:3p; +vengeais venger ver 37.73 24.46 0.03 0.20 ind:imp:1s; +vengeait venger ver 37.73 24.46 0.16 2.30 ind:imp:3s; +vengeance vengeance nom f s 28.27 17.03 27.85 15.88 +vengeances vengeance nom f p 28.27 17.03 0.42 1.15 +vengeant venger ver 37.73 24.46 0.25 0.34 par:pre; +vengent venger ver 37.73 24.46 0.71 0.88 ind:pre:3p; +vengeons venger ver 37.73 24.46 0.32 0.07 imp:pre:1p;ind:pre:1p; +vengeât venger ver 37.73 24.46 0.00 0.07 sub:imp:3s; +venger venger ver 37.73 24.46 20.93 12.09 inf; +vengera venger ver 37.73 24.46 0.97 0.34 ind:fut:3s; +vengerai venger ver 37.73 24.46 1.88 0.41 ind:fut:1s; +vengerais venger ver 37.73 24.46 0.31 0.14 cnd:pre:1s;cnd:pre:2s; +vengerait venger ver 37.73 24.46 0.21 0.20 cnd:pre:3s; +vengeresse vengeur adj f s 1.54 3.85 0.35 0.81 +vengeresses vengeur adj f p 1.54 3.85 0.01 0.27 +vengerez venger ver 37.73 24.46 0.24 0.00 ind:fut:2p; +vengerons venger ver 37.73 24.46 0.44 0.07 ind:fut:1p; +vengeront venger ver 37.73 24.46 0.58 0.00 ind:fut:3p; +venges venger ver 37.73 24.46 0.59 0.14 ind:pre:2s;sub:pre:2s; +vengeur vengeur nom m s 1.27 1.08 1.15 0.68 +vengeurs vengeur adj m p 1.54 3.85 0.23 0.88 +vengez venger ver 37.73 24.46 0.77 0.20 imp:pre:2p;ind:pre:2p; +vengiez venger ver 37.73 24.46 0.11 0.00 ind:imp:2p; +vengèrent venger ver 37.73 24.46 0.00 0.20 ind:pas:3p; +vengé venger ver m s 37.73 24.46 3.19 2.03 par:pas; +vengée venger ver f s 37.73 24.46 1.23 0.68 par:pas; +vengées venger ver f p 37.73 24.46 0.15 0.07 par:pas; +vengés venger ver m p 37.73 24.46 0.60 0.54 par:pas; +veniez venir ver 2763.69 1514.53 9.37 3.24 ind:imp:2p; +venimeuse venimeux adj f s 2.67 2.77 0.77 0.74 +venimeusement venimeusement adv 0.00 0.07 0.00 0.07 +venimeuses venimeux adj f p 2.67 2.77 0.32 0.34 +venimeux venimeux adj m 2.67 2.77 1.58 1.69 +venin venin nom m s 3.59 3.11 3.57 2.97 +venins venin nom m p 3.59 3.11 0.02 0.14 +venions venir ver 2763.69 1514.53 2.07 5.88 ind:imp:1p; +venir venir ver 2763.69 1514.53 367.13 196.01 inf; +venise venise nom f s 0.03 0.07 0.03 0.07 +venons venir ver 2763.69 1514.53 17.22 8.18 imp:pre:1p;ind:pre:1p; +vent vent nom m s 77.34 220.27 71.50 207.64 +ventôse ventôse nom m s 0.14 0.88 0.14 0.88 +venta venter ver 0.74 0.81 0.26 0.41 ind:pas:3s; +ventail ventail nom m s 0.01 0.00 0.01 0.00 +ventas venter ver 0.74 0.81 0.00 0.14 ind:pas:2s; +vente vente nom f s 27.54 18.99 20.93 12.97 +venter venter ver 0.74 0.81 0.03 0.14 inf; +ventes vente nom f p 27.54 18.99 6.61 6.01 +venteuse venteux adj f s 0.14 0.95 0.03 0.20 +venteuses venteux adj f p 0.14 0.95 0.00 0.27 +venteux venteux adj m 0.14 0.95 0.11 0.47 +ventilant ventiler ver 0.73 0.68 0.00 0.14 par:pre; +ventilateur ventilateur nom m s 3.02 2.64 2.43 2.09 +ventilateurs ventilateur nom m p 3.02 2.64 0.59 0.54 +ventilation ventilation nom f s 2.90 0.47 2.84 0.47 +ventilations ventilation nom f p 2.90 0.47 0.05 0.00 +ventile ventiler ver 0.73 0.68 0.32 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ventiler ventiler ver 0.73 0.68 0.23 0.14 inf; +ventilez ventiler ver 0.73 0.68 0.07 0.00 imp:pre:2p; +ventilo ventilo nom m s 0.54 0.14 0.32 0.07 +ventilos ventilo nom m p 0.54 0.14 0.22 0.07 +ventilé ventilé adj m s 0.35 0.34 0.17 0.14 +ventilée ventiler ver f s 0.73 0.68 0.01 0.34 par:pas; +ventilées ventilé adj f p 0.35 0.34 0.14 0.20 +ventilés ventilé adj m p 0.35 0.34 0.02 0.00 +ventis ventis nom m 0.01 0.07 0.01 0.07 +ventouse ventouse nom f s 0.69 4.66 0.44 1.76 +ventousent ventouser ver 0.01 0.14 0.00 0.07 ind:pre:3p; +ventouses ventouse nom f p 0.69 4.66 0.25 2.91 +ventousé ventouser ver m s 0.01 0.14 0.00 0.07 par:pas; +ventousée ventouser ver f s 0.01 0.14 0.01 0.00 par:pas; +ventral ventral adj m s 0.17 1.28 0.09 0.27 +ventrale ventral adj f s 0.17 1.28 0.08 1.01 +ventre_saint_gris ventre_saint_gris ono 0.00 0.07 0.00 0.07 +ventre ventre nom m s 46.91 141.96 46.07 136.62 +ventrebleu ventrebleu ono 0.02 0.00 0.02 0.00 +ventres ventre nom m p 46.91 141.96 0.84 5.34 +ventriculaire ventriculaire adj s 0.61 0.00 0.61 0.00 +ventricule ventricule nom m s 0.78 0.07 0.55 0.00 +ventricules ventricule nom m p 0.78 0.07 0.23 0.07 +ventriloque ventriloque nom s 1.14 0.47 1.05 0.47 +ventriloques ventriloque nom p 1.14 0.47 0.08 0.00 +ventriloquie ventriloquie nom f s 0.04 0.00 0.04 0.00 +ventripotent ventripotent adj m s 0.01 0.88 0.01 0.74 +ventripotents ventripotent adj m p 0.01 0.88 0.00 0.14 +ventrière ventrière nom f s 0.01 0.14 0.01 0.14 +ventru ventru adj m s 0.12 3.51 0.08 1.82 +ventrée ventrée nom f s 0.11 0.54 0.01 0.41 +ventrue ventru adj f s 0.12 3.51 0.01 0.47 +ventrées ventrée nom f p 0.11 0.54 0.10 0.14 +ventrues ventru adj f p 0.12 3.51 0.00 0.34 +ventrus ventru adj m p 0.12 3.51 0.03 0.88 +vents vent nom m p 77.34 220.27 5.84 12.64 +venté venté adj m s 0.04 0.14 0.02 0.07 +ventée venté adj f s 0.04 0.14 0.03 0.00 +ventées venté adj f p 0.04 0.14 0.00 0.07 +ventés venter ver m p 0.74 0.81 0.00 0.07 par:pas; +venu venir ver m s 2763.69 1514.53 244.70 135.14 par:pas; +venue venir ver f s 2763.69 1514.53 93.14 60.47 par:pas; +venues venir ver f p 2763.69 1514.53 5.49 6.96 par:pas; +venus venir ver m p 2763.69 1514.53 53.34 40.41 par:pas; +ver ver nom m s 12.32 16.01 10.21 5.61 +verbal verbal adj m s 2.27 6.76 0.92 1.89 +verbale verbal adj f s 2.27 6.76 0.71 2.57 +verbalement verbalement adv 0.53 0.54 0.53 0.54 +verbales verbal adj f p 2.27 6.76 0.39 1.76 +verbalisation verbalisation nom f s 0.04 0.00 0.04 0.00 +verbalise verbaliser ver 0.79 0.14 0.27 0.00 ind:pre:1s;ind:pre:3s; +verbaliser verbaliser ver 0.79 0.14 0.42 0.14 inf; +verbalisez verbaliser ver 0.79 0.14 0.02 0.00 imp:pre:2p;ind:pre:2p; +verbalisme verbalisme nom m s 0.00 0.41 0.00 0.41 +verbaliste verbaliste nom s 0.00 0.07 0.00 0.07 +verbalisé verbaliser ver m s 0.79 0.14 0.08 0.00 par:pas; +verbalisée verbaliser ver f s 0.79 0.14 0.01 0.00 par:pas; +verbatim verbatim nom m s 0.01 0.00 0.01 0.00 +verbaux verbal adj m p 2.27 6.76 0.25 0.54 +verbe verbe nom m s 2.02 9.93 1.66 8.38 +verbes verbe nom m p 2.02 9.93 0.36 1.55 +verbeuse verbeux adj f s 0.18 0.47 0.01 0.07 +verbeuses verbeux adj f p 0.18 0.47 0.00 0.14 +verbeux verbeux adj m 0.18 0.47 0.17 0.27 +verbiage verbiage nom m s 0.18 0.74 0.18 0.74 +verbosité verbosité nom f s 0.00 0.27 0.00 0.20 +verbosités verbosité nom f p 0.00 0.27 0.00 0.07 +verdelet verdelet adj m s 0.00 0.07 0.00 0.07 +verdeur verdeur nom f s 0.00 1.08 0.00 1.01 +verdeurs verdeur nom f p 0.00 1.08 0.00 0.07 +verdi verdi adj m s 0.02 1.01 0.02 0.34 +verdict verdict nom m s 8.63 5.47 8.57 5.00 +verdicts verdict nom m p 8.63 5.47 0.07 0.47 +verdie verdir ver f s 0.21 2.97 0.00 0.41 par:pas; +verdier verdier nom m s 0.03 0.14 0.00 0.07 +verdiers verdier nom m p 0.03 0.14 0.03 0.07 +verdies verdi adj f p 0.02 1.01 0.00 0.20 +verdine verdin nom f s 0.00 0.07 0.00 0.07 +verdir verdir ver 0.21 2.97 0.16 0.20 inf; +verdis verdir ver m p 0.21 2.97 0.01 0.14 par:pas; +verdissaient verdir ver 0.21 2.97 0.00 0.27 ind:imp:3p; +verdissait verdir ver 0.21 2.97 0.00 0.41 ind:imp:3s; +verdissant verdissant adj m s 0.00 0.61 0.00 0.20 +verdissante verdissant adj f s 0.00 0.61 0.00 0.27 +verdissants verdissant adj m p 0.00 0.61 0.00 0.14 +verdissent verdir ver 0.21 2.97 0.02 0.20 ind:pre:3p; +verdit verdir ver 0.21 2.97 0.02 0.47 ind:pre:3s;ind:pas:3s; +verdoie verdoyer ver 0.13 0.68 0.11 0.20 ind:pre:3s; +verdoiement verdoiement nom m s 0.14 0.07 0.14 0.07 +verdoient verdoyer ver 0.13 0.68 0.02 0.14 ind:pre:3p; +verdâtre verdâtre adj s 0.11 9.73 0.08 6.62 +verdâtres verdâtre adj p 0.11 9.73 0.03 3.11 +verdoyant verdoyant adj m s 0.67 2.43 0.13 0.95 +verdoyante verdoyant adj f s 0.67 2.43 0.06 0.68 +verdoyantes verdoyant adj f p 0.67 2.43 0.46 0.47 +verdoyants verdoyant adj m p 0.67 2.43 0.02 0.34 +verdoyer verdoyer ver 0.13 0.68 0.00 0.20 inf; +verdure verdure nom f s 1.15 10.95 1.05 10.14 +verdures verdure nom f p 1.15 10.95 0.10 0.81 +verge verge nom f s 0.81 5.41 0.69 3.65 +vergence vergence nom f s 0.02 0.00 0.02 0.00 +verger verger nom m s 3.13 11.69 2.54 5.88 +vergers verger nom m p 3.13 11.69 0.59 5.81 +verges verge nom f p 0.81 5.41 0.13 1.76 +vergeture vergeture nom f s 0.42 0.41 0.01 0.00 +vergetures vergeture nom f p 0.42 0.41 0.41 0.41 +verglacé verglacer ver m s 0.06 0.14 0.03 0.00 par:pas; +verglacée verglacé adj f s 0.06 0.41 0.03 0.07 +verglacées verglacé adj f p 0.06 0.41 0.02 0.14 +verglas verglas nom m 0.94 1.62 0.94 1.62 +vergne vergne nom m s 0.00 0.34 0.00 0.27 +vergnes vergne nom m p 0.00 0.34 0.00 0.07 +vergogne vergogne nom f s 0.51 4.05 0.51 4.05 +vergogneux vergogneux adj m 0.00 0.27 0.00 0.27 +vergé vergé adj m s 0.01 0.34 0.00 0.27 +vergue vergue nom f s 0.41 0.47 0.38 0.27 +vergues vergue nom f p 0.41 0.47 0.03 0.20 +vergés vergé adj m p 0.01 0.34 0.01 0.07 +verjus verjus nom m 0.01 0.27 0.01 0.27 +verlan verlan nom m s 0.07 0.34 0.07 0.34 +vermeil vermeil adj m s 1.66 3.11 1.25 0.88 +vermeille vermeil adj f s 1.66 3.11 0.27 0.81 +vermeilles vermeil adj f p 1.66 3.11 0.03 1.08 +vermeils vermeil adj m p 1.66 3.11 0.10 0.34 +vermicelle vermicelle nom m s 0.29 0.81 0.15 0.54 +vermicelles vermicelle nom m p 0.29 0.81 0.14 0.27 +vermiculaire vermiculaire adj s 0.00 0.14 0.00 0.07 +vermiculaires vermiculaire adj p 0.00 0.14 0.00 0.07 +vermiculées vermiculé adj f p 0.00 0.07 0.00 0.07 +vermifuge vermifuge nom m s 0.03 0.14 0.03 0.14 +vermillon vermillon adj 0.02 1.15 0.02 1.15 +vermillonnait vermillonner ver 0.00 0.27 0.00 0.07 ind:imp:3s; +vermillonnée vermillonner ver f s 0.00 0.27 0.00 0.14 par:pas; +vermillonnés vermillonner ver m p 0.00 0.27 0.00 0.07 par:pas; +vermillons vermillon nom m p 0.02 1.08 0.00 0.14 +vermine vermine nom f s 7.31 4.93 6.77 4.46 +vermines vermine nom f p 7.31 4.93 0.54 0.47 +vermineux vermineux adj m 0.00 0.14 0.00 0.14 +vermisseau vermisseau nom m s 0.49 0.07 0.29 0.07 +vermisseaux vermisseau nom m p 0.49 0.07 0.20 0.00 +vermoulu vermoulu adj m s 0.17 3.31 0.01 1.15 +vermoulue vermoulu adj f s 0.17 3.31 0.02 1.22 +vermoulues vermoulu adj f p 0.17 3.31 0.01 0.47 +vermoulure vermoulure nom f s 0.00 0.34 0.00 0.20 +vermoulures vermoulure nom f p 0.00 0.34 0.00 0.14 +vermoulus vermoulu adj m p 0.17 3.31 0.14 0.47 +vermout vermout nom m s 0.01 0.00 0.01 0.00 +vermouth vermouth nom m s 1.19 1.49 1.18 1.28 +vermouths vermouth nom m p 1.19 1.49 0.01 0.20 +vernaculaire vernaculaire adj s 0.01 0.00 0.01 0.00 +vernal vernal adj m s 0.01 0.00 0.01 0.00 +verne verne nom m s 0.14 0.00 0.14 0.00 +verni vernir ver m s 1.77 8.51 0.66 1.96 par:pas; +vernie vernir ver f s 1.77 8.51 0.14 0.95 par:pas; +vernier vernier nom m s 0.00 0.07 0.00 0.07 +vernies verni adj f p 0.48 6.62 0.15 1.62 +vernir vernir ver 1.77 8.51 0.16 0.61 inf; +vernis vernis nom m 2.81 9.80 2.81 9.80 +vernissage vernissage nom m s 2.21 1.82 1.88 1.35 +vernissages vernissage nom m p 2.21 1.82 0.33 0.47 +vernissaient vernir ver 1.77 8.51 0.00 0.07 ind:imp:3p; +vernissait vernir ver 1.77 8.51 0.01 0.00 ind:imp:3s; +vernissant vernir ver 1.77 8.51 0.00 0.07 par:pre; +vernissent vernir ver 1.77 8.51 0.00 0.07 ind:pre:3p; +vernisser vernisser ver 0.00 1.49 0.00 0.07 inf; +vernisseur vernisseur nom m s 0.10 0.00 0.10 0.00 +vernissé vernissé adj m s 0.00 2.36 0.00 0.34 +vernissée vernisser ver f s 0.00 1.49 0.00 0.47 par:pas; +vernissées vernissé adj f p 0.00 2.36 0.00 1.08 +vernissés vernissé adj m p 0.00 2.36 0.00 0.54 +vernit vernir ver 1.77 8.51 0.13 0.41 ind:pre:3s;ind:pas:3s; +verra voir ver 4119.49 2401.76 78.66 26.28 ind:fut:3s; +verrai voir ver 4119.49 2401.76 31.76 10.54 ind:fut:1s; +verraient voir ver 4119.49 2401.76 1.01 2.23 cnd:pre:3p; +verrais voir ver 4119.49 2401.76 9.03 6.49 cnd:pre:1s;cnd:pre:2s; +verrait voir ver 4119.49 2401.76 6.58 16.76 cnd:pre:3s; +verras voir ver 4119.49 2401.76 51.34 23.78 ind:fut:2s; +verrat verrat nom m s 0.08 0.74 0.08 0.68 +verrats verrat nom m p 0.08 0.74 0.00 0.07 +verre verre nom m s 176.57 230.07 154.13 175.20 +verrerie verrerie nom f s 1.14 0.74 0.93 0.47 +verreries verrerie nom f p 1.14 0.74 0.21 0.27 +verres verre nom m p 176.57 230.07 22.45 54.86 +verrez voir ver 4119.49 2401.76 35.50 18.51 ind:fut:2p; +verrier verrier adj m s 0.00 0.27 0.00 0.07 +verriers verrier adj m p 0.00 0.27 0.00 0.07 +verriez voir ver 4119.49 2401.76 1.84 0.81 cnd:pre:2p; +verrions voir ver 4119.49 2401.76 0.12 1.01 cnd:pre:1p; +verrière verrière nom f s 0.42 5.95 0.42 4.53 +verrières verrière nom f p 0.42 5.95 0.00 1.42 +verrons voir ver 4119.49 2401.76 13.26 7.57 ind:fut:1p; +verront voir ver 4119.49 2401.76 6.54 2.70 ind:fut:3p; +verroterie verroterie nom f s 0.05 1.42 0.04 1.01 +verroteries verroterie nom f p 0.05 1.42 0.01 0.41 +verrou verrou nom m s 5.28 12.03 3.54 7.64 +verrouilla verrouiller ver 8.77 3.72 0.11 0.61 ind:pas:3s; +verrouillage verrouillage nom m s 1.23 0.54 1.23 0.54 +verrouillai verrouiller ver 8.77 3.72 0.00 0.07 ind:pas:1s; +verrouillait verrouiller ver 8.77 3.72 0.15 0.34 ind:imp:3s; +verrouillant verrouiller ver 8.77 3.72 0.00 0.20 par:pre; +verrouille verrouiller ver 8.77 3.72 1.98 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +verrouillent verrouiller ver 8.77 3.72 0.28 0.00 ind:pre:3p; +verrouiller verrouiller ver 8.77 3.72 1.36 0.47 inf; +verrouilles verrouiller ver 8.77 3.72 0.09 0.14 ind:pre:2s; +verrouillez verrouiller ver 8.77 3.72 1.27 0.00 imp:pre:2p;ind:pre:2p; +verrouillons verrouiller ver 8.77 3.72 0.02 0.00 ind:pre:1p; +verrouillèrent verrouiller ver 8.77 3.72 0.00 0.07 ind:pas:3p; +verrouillé verrouiller ver m s 8.77 3.72 1.85 0.61 par:pas; +verrouillée verrouiller ver f s 8.77 3.72 1.24 0.61 par:pas; +verrouillées verrouiller ver f p 8.77 3.72 0.33 0.14 par:pas; +verrouillés verrouiller ver m p 8.77 3.72 0.09 0.20 par:pas; +verrous verrou nom m p 5.28 12.03 1.74 4.39 +verrue verrue nom f s 1.20 3.11 0.66 1.76 +verrues verrue nom f p 1.20 3.11 0.54 1.35 +verruqueuse verruqueux adj f s 0.00 0.14 0.00 0.14 +vers vers pre 227.77 956.15 227.77 956.15 +versa verser ver 31.20 53.99 1.88 10.68 ind:pas:3s; +versai verser ver 31.20 53.99 0.01 1.08 ind:pas:1s; +versaient verser ver 31.20 53.99 0.06 1.55 ind:imp:3p; +versaillais versaillais nom m 0.00 0.54 0.00 0.54 +versaillaise versaillais adj f s 0.00 0.34 0.00 0.20 +versais verser ver 31.20 53.99 0.21 0.47 ind:imp:1s;ind:imp:2s; +versait verser ver 31.20 53.99 0.64 5.61 ind:imp:3s; +versant versant nom m s 0.59 10.68 0.53 8.92 +versants versant nom m p 0.59 10.68 0.06 1.76 +versatile versatile adj s 0.34 0.34 0.33 0.20 +versatiles versatile adj f p 0.34 0.34 0.01 0.14 +versatilité versatilité nom f s 0.02 0.34 0.02 0.34 +verse verser ver 31.20 53.99 7.50 7.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +verseau verseau nom m s 0.02 0.00 0.02 0.00 +versement versement nom m s 2.76 0.88 1.91 0.61 +versements versement nom m p 2.76 0.88 0.85 0.27 +versent verser ver 31.20 53.99 0.29 0.95 ind:pre:3p; +verser verser ver 31.20 53.99 4.62 9.86 ind:pre:2p;inf; +versera verser ver 31.20 53.99 0.60 0.41 ind:fut:3s; +verserai verser ver 31.20 53.99 0.62 0.00 ind:fut:1s; +verserais verser ver 31.20 53.99 0.08 0.07 cnd:pre:1s; +verserait verser ver 31.20 53.99 0.14 0.07 cnd:pre:3s; +verseras verser ver 31.20 53.99 0.16 0.07 ind:fut:2s; +verserez verser ver 31.20 53.99 0.04 0.07 ind:fut:2p; +verseriez verser ver 31.20 53.99 0.02 0.00 cnd:pre:2p; +verserons verser ver 31.20 53.99 0.18 0.00 ind:fut:1p; +verseront verser ver 31.20 53.99 0.04 0.14 ind:fut:3p; +verses verser ver 31.20 53.99 0.93 0.07 ind:pre:2s; +verset verset nom m s 2.46 4.39 1.43 2.03 +versets verset nom m p 2.46 4.39 1.03 2.36 +verseur verseur adj m s 0.03 0.07 0.03 0.00 +verseurs verseur adj m p 0.03 0.07 0.00 0.07 +verseuse verseur nom f s 0.04 0.27 0.04 0.20 +verseuses verseuse nom f p 0.04 0.00 0.04 0.00 +versez verser ver 31.20 53.99 3.60 0.27 imp:pre:2p;ind:pre:2p; +versicolores versicolore adj p 0.00 0.27 0.00 0.27 +versiculets versiculet nom m p 0.00 0.07 0.00 0.07 +versiez verser ver 31.20 53.99 0.02 0.00 ind:imp:2p; +versificateur versificateur nom m s 0.00 0.07 0.00 0.07 +versification versification nom f s 0.01 0.00 0.01 0.00 +versifier versifier ver 0.00 0.07 0.00 0.07 inf; +versifiées versifié adj f p 0.00 0.14 0.00 0.14 +version version nom f s 20.09 12.97 19.10 11.01 +versions version nom f p 20.09 12.97 0.98 1.96 +verso verso nom m s 0.62 1.96 0.61 1.82 +versâmes verser ver 31.20 53.99 0.00 0.07 ind:pas:1p; +versons verser ver 31.20 53.99 0.22 0.14 imp:pre:1p;ind:pre:1p; +versos verso nom m p 0.62 1.96 0.01 0.14 +versât verser ver 31.20 53.99 0.00 0.14 sub:imp:3s; +verstes verste nom f p 0.47 0.14 0.47 0.14 +versèrent verser ver 31.20 53.99 0.01 0.47 ind:pas:3p; +versé verser ver m s 31.20 53.99 7.50 7.70 par:pas; +versée verser ver f s 31.20 53.99 0.86 0.81 par:pas; +versées verser ver f p 31.20 53.99 0.36 0.54 par:pas; +versés verser ver m p 31.20 53.99 0.17 0.54 par:pas; +versus versus pre 0.07 0.07 0.07 0.07 +vert_de_gris vert_de_gris adj 0.02 0.81 0.02 0.81 +vert_de_grisé vert_de_grisé adj m s 0.00 0.34 0.00 0.07 +vert_de_grisé vert_de_grisé adj f s 0.00 0.34 0.00 0.07 +vert_de_grisé vert_de_grisé adj f p 0.00 0.34 0.00 0.14 +vert_de_grisé vert_de_grisé adj m p 0.00 0.34 0.00 0.07 +vert_galant vert_galant nom m s 0.00 0.20 0.00 0.20 +vert_jaune vert_jaune adj m s 0.02 0.07 0.02 0.07 +vert_jaune vert_jaune nom m s 0.02 0.07 0.02 0.07 +vert vert adj m s 52.59 145.14 24.74 59.12 +verte vert adj f s 52.59 145.14 14.24 38.45 +vertement vertement adv 0.14 1.08 0.14 1.08 +vertes vert adj f p 52.59 145.14 4.29 23.72 +vertex vertex nom m 0.00 1.22 0.00 1.22 +vertical vertical adj m s 1.54 15.41 0.61 3.85 +verticale verticale nom f s 1.85 5.07 1.44 4.46 +verticalement verticalement adv 0.17 3.31 0.17 3.31 +verticales verticale nom f p 1.85 5.07 0.41 0.61 +verticalité verticalité nom f s 0.00 0.20 0.00 0.20 +verticaux vertical adj m p 1.54 15.41 0.08 2.77 +verticille verticille nom m s 0.01 0.00 0.01 0.00 +vertige vertige nom m s 9.06 26.62 6.14 24.26 +vertiges vertige nom m p 9.06 26.62 2.91 2.36 +vertigineuse vertigineux adj f s 0.69 10.41 0.14 4.86 +vertigineusement vertigineusement adv 0.10 1.15 0.10 1.15 +vertigineuses vertigineux adj f p 0.69 10.41 0.11 1.35 +vertigineux vertigineux adj m 0.69 10.41 0.45 4.19 +vertigo vertigo nom m s 0.13 0.14 0.13 0.14 +verts vert adj m p 52.59 145.14 9.32 23.85 +vertèbre vertèbre nom f s 1.27 3.38 0.68 0.81 +vertèbres vertèbre nom f p 1.27 3.38 0.59 2.57 +vertu vertu nom f s 17.75 38.45 13.49 24.05 +vertubleu vertubleu ono 0.27 0.00 0.27 0.00 +vertébral vertébral adj m s 3.23 2.36 0.06 0.00 +vertébrale vertébral adj f s 3.23 2.36 3.09 2.36 +vertébrales vertébral adj f p 3.23 2.36 0.06 0.00 +vertébraux vertébral adj m p 3.23 2.36 0.01 0.00 +vertébré vertébré nom m s 0.36 0.14 0.13 0.07 +vertébrés vertébré nom m p 0.36 0.14 0.23 0.07 +vertueuse vertueux adj f s 5.08 3.78 1.92 1.42 +vertueusement vertueusement adv 0.00 0.27 0.00 0.27 +vertueuses vertueux adj f p 5.08 3.78 0.30 0.68 +vertueux vertueux adj m 5.08 3.78 2.85 1.69 +vertugadin vertugadin nom m s 0.01 0.14 0.01 0.14 +vertus vertu nom f p 17.75 38.45 4.26 14.39 +verve verve nom f s 0.40 3.04 0.40 3.04 +verveine verveine nom f s 0.72 1.76 0.72 1.76 +verveux verveux adj m 0.00 0.14 0.00 0.14 +vesce vesce nom f s 0.01 0.20 0.01 0.00 +vesces vesce nom f p 0.01 0.20 0.00 0.20 +vespa vespa nom f s 1.19 0.68 1.19 0.61 +vespas vespa nom f p 1.19 0.68 0.00 0.07 +vespasienne vespasien nom f s 0.12 0.41 0.02 0.00 +vespasiennes vespasien nom f p 0.12 0.41 0.10 0.41 +vesprée vesprée nom f s 0.00 0.07 0.00 0.07 +vespéral vespéral adj m s 0.01 0.88 0.00 0.07 +vespérale vespéral adj f s 0.01 0.88 0.00 0.61 +vespérales vespéral adj f p 0.01 0.88 0.01 0.14 +vespéraux vespéral adj m p 0.01 0.88 0.00 0.07 +vesse_de_loup vesse_de_loup nom f s 0.02 0.20 0.00 0.14 +vesse_de_loup vesse_de_loup nom f p 0.02 0.20 0.02 0.07 +vesses vesse nom f p 0.00 0.14 0.00 0.14 +vessie vessie nom f s 3.34 2.57 3.21 2.23 +vessies vessie nom f p 3.34 2.57 0.13 0.34 +vestalat vestalat nom m s 0.00 0.07 0.00 0.07 +vestale vestale nom f s 0.70 0.81 0.54 0.41 +vestales vestale nom f p 0.70 0.81 0.16 0.41 +veste veste nom f s 37.72 61.62 36.00 55.68 +vestes veste nom f p 37.72 61.62 1.71 5.95 +vestiaire vestiaire nom m s 5.71 12.43 4.04 9.86 +vestiaires vestiaire nom m p 5.71 12.43 1.67 2.57 +vestibule vestibule nom m s 0.96 12.77 0.96 12.43 +vestibules vestibule nom m p 0.96 12.77 0.00 0.34 +vestige vestige nom m s 1.48 7.77 0.54 1.62 +vestiges vestige nom m p 1.48 7.77 0.94 6.15 +vestimentaire vestimentaire adj s 0.90 2.84 0.63 1.76 +vestimentaires vestimentaire adj p 0.90 2.84 0.27 1.08 +veston veston nom m s 1.68 16.55 1.66 15.27 +vestons veston nom m p 1.68 16.55 0.02 1.28 +veto veto nom m 1.94 0.74 1.94 0.74 +veuf veuf adj m s 8.39 10.14 1.65 3.11 +veufs veuf nom m p 16.52 32.70 0.06 0.20 +veuille vouloir ver_sup 5249.31 1640.14 10.13 8.45 imp:pre:2s;sub:pre:1s;sub:pre:3s; +veuillent vouloir ver_sup 5249.31 1640.14 1.15 1.08 sub:pre:3p; +veuilles vouloir ver_sup 5249.31 1640.14 6.72 1.28 sub:pre:2s; +veuillez vouloir ver_sup 5249.31 1640.14 45.84 8.99 imp:pre:2p; +veule veule adj s 0.18 1.76 0.16 1.42 +veulent vouloir ver_sup 5249.31 1640.14 142.38 39.05 ind:pre:3p; +veulerie veulerie nom f s 0.21 2.50 0.21 2.36 +veuleries veulerie nom f p 0.21 2.50 0.00 0.14 +veules veule adj m p 0.18 1.76 0.02 0.34 +veut vouloir ver_sup 5249.31 1640.14 701.19 210.61 ind:pre:3s; +veuvage veuvage nom m s 0.78 2.84 0.78 2.50 +veuvages veuvage nom m p 0.78 2.84 0.00 0.34 +veuve veuf nom f s 16.52 32.70 15.64 26.89 +veuves veuve nom f p 1.89 0.00 1.89 0.00 +veux vouloir ver_sup 5249.31 1640.14 2486.93 377.97 ind:pre:1s;ind:pre:2s; +vexa vexer ver 15.56 11.76 0.00 0.34 ind:pas:3s; +vexai vexer ver 15.56 11.76 0.00 0.07 ind:pas:1s; +vexait vexer ver 15.56 11.76 0.02 0.54 ind:imp:3s; +vexant vexant adj m s 0.40 1.01 0.39 0.74 +vexante vexant adj f s 0.40 1.01 0.01 0.14 +vexantes vexant adj f p 0.40 1.01 0.00 0.07 +vexants vexant adj m p 0.40 1.01 0.00 0.07 +vexation vexation nom f s 0.17 1.82 0.12 0.68 +vexations vexation nom f p 0.17 1.82 0.05 1.15 +vexatoire vexatoire adj s 0.00 0.20 0.00 0.14 +vexatoires vexatoire adj f p 0.00 0.20 0.00 0.07 +vexe vexer ver 15.56 11.76 1.65 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vexent vexer ver 15.56 11.76 0.12 0.07 ind:pre:3p; +vexer vexer ver 15.56 11.76 4.30 2.57 inf;; +vexera vexer ver 15.56 11.76 0.26 0.00 ind:fut:3s; +vexerai vexer ver 15.56 11.76 0.30 0.00 ind:fut:1s; +vexerait vexer ver 15.56 11.76 0.02 0.41 cnd:pre:3s; +vexeras vexer ver 15.56 11.76 0.14 0.07 ind:fut:2s; +vexerez vexer ver 15.56 11.76 0.01 0.00 ind:fut:2p; +vexerions vexer ver 15.56 11.76 0.00 0.07 cnd:pre:1p; +vexes vexer ver 15.56 11.76 0.34 0.14 ind:pre:2s; +vexez vexer ver 15.56 11.76 0.41 0.00 imp:pre:2p;ind:pre:2p; +vexons vexer ver 15.56 11.76 0.04 0.00 imp:pre:1p;ind:pre:1p; +vexé vexer ver m s 15.56 11.76 5.21 4.19 par:pas; +vexée vexer ver f s 15.56 11.76 2.34 1.08 par:pas; +vexées vexer ver f p 15.56 11.76 0.01 0.00 par:pas; +vexés vexer ver m p 15.56 11.76 0.36 0.34 par:pas; +via via pre 6.53 5.41 6.53 5.41 +viabilité viabilité nom f s 0.10 0.07 0.10 0.07 +viable viable adj s 1.57 1.22 1.27 0.95 +viables viable adj p 1.57 1.22 0.29 0.27 +viaduc viaduc nom m s 0.17 0.88 0.17 0.88 +viager viager nom m s 0.14 0.27 0.14 0.27 +viagra viagra nom m s 0.45 0.00 0.45 0.00 +viagère viager adj f s 0.03 0.14 0.03 0.14 +viandard viandard nom m s 0.00 0.07 0.00 0.07 +viandasse viander ver 0.05 0.41 0.00 0.20 sub:imp:1s; +viande viande nom f s 44.43 45.00 43.78 41.35 +viander viander ver 0.05 0.41 0.01 0.14 inf; +viandes viande nom f p 44.43 45.00 0.65 3.65 +viandeuse viandeux adj f s 0.00 0.07 0.00 0.07 +viandox viandox nom m 0.02 0.68 0.02 0.68 +viandé viander ver m s 0.05 0.41 0.04 0.07 par:pas; +viatique viatique nom m s 0.01 1.28 0.01 1.28 +vibra vibrer ver 4.73 24.53 0.00 0.95 ind:pas:3s; +vibraient vibrer ver 4.73 24.53 0.06 0.68 ind:imp:3p; +vibrais vibrer ver 4.73 24.53 0.01 0.20 ind:imp:1s; +vibrait vibrer ver 4.73 24.53 0.22 6.22 ind:imp:3s; +vibrant vibrant adj m s 0.86 6.89 0.56 1.89 +vibrante vibrant adj f s 0.86 6.89 0.22 3.78 +vibrantes vibrant adj f p 0.86 6.89 0.03 0.88 +vibrants vibrant adj m p 0.86 6.89 0.05 0.34 +vibraphone vibraphone nom m s 0.03 0.14 0.03 0.07 +vibraphones vibraphone nom m p 0.03 0.14 0.00 0.07 +vibrateur vibrateur nom m s 0.14 0.07 0.14 0.00 +vibrateurs vibrateur nom m p 0.14 0.07 0.01 0.07 +vibratile vibratile adj f s 0.14 0.34 0.01 0.20 +vibratiles vibratile adj m p 0.14 0.34 0.14 0.14 +vibration vibration nom f s 4.49 12.64 1.28 8.58 +vibrations vibration nom f p 4.49 12.64 3.21 4.05 +vibrato vibrato nom m s 0.12 0.54 0.12 0.34 +vibratoire vibratoire adj s 0.11 0.47 0.10 0.34 +vibratoires vibratoire adj p 0.11 0.47 0.01 0.14 +vibratos vibrato nom m p 0.12 0.54 0.00 0.20 +vibre vibrer ver 4.73 24.53 1.79 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vibrent vibrer ver 4.73 24.53 0.23 0.68 ind:pre:3p; +vibrer vibrer ver 4.73 24.53 2.06 8.31 inf; +vibrera vibrer ver 4.73 24.53 0.03 0.00 ind:fut:3s; +vibreur vibreur nom m s 0.25 0.00 0.25 0.00 +vibrez vibrer ver 4.73 24.53 0.01 0.00 imp:pre:2p; +vibrionnaient vibrionner ver 0.00 0.34 0.00 0.07 ind:imp:3p; +vibrionnait vibrionner ver 0.00 0.34 0.00 0.14 ind:imp:3s; +vibrionnant vibrionner ver 0.00 0.34 0.00 0.07 par:pre; +vibrionne vibrionner ver 0.00 0.34 0.00 0.07 ind:pre:1s; +vibrions vibrion nom m p 0.14 0.20 0.14 0.20 +vibrisses vibrisse nom f p 0.00 0.14 0.00 0.14 +vibro_masseur vibro_masseur nom m s 0.08 0.07 0.08 0.07 +vibromasseur vibromasseur nom m s 0.93 0.00 0.85 0.00 +vibromasseurs vibromasseur nom m p 0.93 0.00 0.08 0.00 +vibré vibrer ver m s 4.73 24.53 0.04 0.95 par:pas; +vibrée vibrer ver f s 4.73 24.53 0.01 0.07 par:pas; +vibrées vibrer ver f p 4.73 24.53 0.00 0.07 par:pas; +vibura viburer ver 0.00 0.81 0.00 0.07 ind:pas:3s; +viburait viburer ver 0.00 0.81 0.00 0.07 ind:imp:3s; +vibure viburer ver 0.00 0.81 0.00 0.68 ind:pre:3s; +vicaire vicaire nom m s 0.71 2.57 0.68 2.23 +vicaires vicaire nom m p 0.71 2.57 0.04 0.34 +vice_amiral vice_amiral nom m s 0.10 0.61 0.10 0.61 +vice_chancelier vice_chancelier nom m s 0.07 0.00 0.07 0.00 +vice_consul vice_consul nom m s 0.18 0.54 0.18 0.54 +vice_ministre vice_ministre nom s 0.27 0.27 0.27 0.20 +vice_ministre vice_ministre nom p 0.27 0.27 0.00 0.07 +vice_premier vice_premier nom m s 0.01 0.00 0.01 0.00 +vice_présidence vice_présidence nom f s 0.57 0.00 0.57 0.00 +vice_président vice_président nom m s 8.63 0.61 7.91 0.54 +vice_président vice_président nom f s 8.63 0.61 0.60 0.00 +vice_président vice_président nom m p 8.63 0.61 0.12 0.07 +vice_recteur vice_recteur nom m s 0.10 0.00 0.10 0.00 +vice_roi vice_roi nom m s 0.94 0.54 0.84 0.54 +vice_roi vice_roi nom m p 0.94 0.54 0.10 0.00 +vice_versa vice_versa adv 0.85 0.27 0.85 0.27 +vice vice nom m s 12.29 18.45 7.78 13.45 +vicelard vicelard adj m s 0.89 3.38 0.60 1.49 +vicelarde vicelard adj f s 0.89 3.38 0.07 0.81 +vicelardes vicelard adj f p 0.89 3.38 0.01 0.27 +vicelardise vicelardise nom f s 0.00 0.20 0.00 0.14 +vicelardises vicelardise nom f p 0.00 0.20 0.00 0.07 +vicelards vicelard adj m p 0.89 3.38 0.20 0.81 +vices vice nom m p 12.29 18.45 4.52 5.00 +vichy vichy nom m s 0.69 1.22 0.69 1.22 +vichysme vichysme nom m s 0.00 0.07 0.00 0.07 +vichyssois vichyssois adj m 0.06 0.07 0.00 0.07 +vichyssois vichyssois nom m 0.00 0.07 0.00 0.07 +vichyssoise vichyssois adj f s 0.06 0.07 0.06 0.00 +vichyste vichyste adj s 0.03 0.27 0.01 0.14 +vichystes vichyste adj p 0.03 0.27 0.02 0.14 +vicier vicier ver 0.22 0.41 0.00 0.07 inf; +vicieuse vicieux adj f s 5.75 7.03 1.11 1.96 +vicieusement vicieusement adv 0.07 0.27 0.07 0.27 +vicieuses vicieux adj f p 5.75 7.03 0.45 0.27 +vicieux vicieux adj m 5.75 7.03 4.19 4.80 +vicinal vicinal adj m s 0.00 0.81 0.00 0.47 +vicinales vicinal adj f p 0.00 0.81 0.00 0.07 +vicinalité vicinalité nom f s 0.00 0.07 0.00 0.07 +vicinaux vicinal adj m p 0.00 0.81 0.00 0.27 +vicissitude vicissitude nom f s 0.06 2.16 0.02 0.14 +vicissitudes vicissitude nom f p 0.06 2.16 0.04 2.03 +vicié vicié adj m s 0.23 0.54 0.23 0.41 +viciée vicier ver f s 0.22 0.41 0.00 0.14 par:pas; +viciés vicié adj m p 0.23 0.54 0.00 0.14 +vicomte vicomte nom m s 0.43 6.28 0.41 5.61 +vicomtes vicomte nom m p 0.43 6.28 0.00 0.20 +vicomtesse vicomte nom f s 0.43 6.28 0.03 0.41 +vicomtesses vicomtesse nom f p 0.01 0.00 0.01 0.00 +vicomté vicomté nom f s 0.00 0.41 0.00 0.41 +victimaire victimaire nom m s 0.00 0.07 0.00 0.07 +victime victime nom f s 106.25 46.22 66.47 28.45 +victimes victime nom f p 106.25 46.22 39.78 17.77 +victimologie victimologie nom f s 0.04 0.00 0.04 0.00 +victoire victoire nom f s 34.96 63.24 31.31 57.23 +victoires victoire nom f p 34.96 63.24 3.65 6.01 +victoria victoria nom s 0.02 0.47 0.02 0.34 +victorias victoria nom p 0.02 0.47 0.00 0.14 +victorien victorien adj m s 0.49 1.35 0.12 0.41 +victorienne victorien adj f s 0.49 1.35 0.25 0.81 +victoriennes victorien adj f p 0.49 1.35 0.04 0.14 +victoriens victorien adj m p 0.49 1.35 0.08 0.00 +victorieuse victorieux adj f s 2.95 9.32 0.22 4.73 +victorieusement victorieusement adv 0.00 1.82 0.00 1.82 +victorieuses victorieux adj f p 2.95 9.32 0.19 1.35 +victorieux victorieux adj m 2.95 9.32 2.54 3.24 +victuaille victuaille nom f s 0.42 4.26 0.01 0.07 +victuailles victuaille nom f p 0.42 4.26 0.41 4.19 +vida vider ver 30.68 70.81 1.06 9.32 ind:pas:3s; +vidage vidage nom m s 0.04 0.14 0.04 0.14 +vidai vider ver 30.68 70.81 0.00 1.22 ind:pas:1s; +vidaient vider ver 30.68 70.81 0.08 1.76 ind:imp:3p; +vidais vider ver 30.68 70.81 0.47 0.34 ind:imp:1s; +vidait vider ver 30.68 70.81 0.43 5.95 ind:imp:3s; +vidame vidame nom m s 0.00 0.07 0.00 0.07 +vidange vidange nom f s 1.29 1.55 1.09 1.35 +vidanger vidanger ver 0.30 0.34 0.20 0.14 inf; +vidanges vidange nom f p 1.29 1.55 0.20 0.20 +vidangeur vidangeur nom m s 0.01 0.27 0.01 0.07 +vidangeurs vidangeur nom m p 0.01 0.27 0.00 0.20 +vidangez vidanger ver 0.30 0.34 0.02 0.07 imp:pre:2p;ind:pre:2p; +vidangé vidanger ver m s 0.30 0.34 0.02 0.07 par:pas; +vidangée vidanger ver f s 0.30 0.34 0.02 0.00 par:pas; +vidant vider ver 30.68 70.81 0.24 2.84 par:pre; +vidas vider ver 30.68 70.81 0.10 0.07 ind:pas:2s; +vide_gousset vide_gousset nom m s 0.27 0.00 0.27 0.00 +vide_greniers vide_greniers nom m 0.04 0.00 0.04 0.00 +vide_ordure vide_ordure nom m s 0.06 0.00 0.06 0.00 +vide_ordures vide_ordures nom m 0.55 1.22 0.55 1.22 +vide_poche vide_poche nom m s 0.04 0.14 0.04 0.14 +vide_poches vide_poches nom m 0.00 0.27 0.00 0.27 +vide vide adj s 60.33 147.50 48.53 102.84 +vident vider ver 30.68 70.81 0.81 1.49 ind:pre:3p; +vider vider ver 30.68 70.81 8.31 16.82 inf; +videra vider ver 30.68 70.81 0.16 0.14 ind:fut:3s; +viderai vider ver 30.68 70.81 0.11 0.14 ind:fut:1s; +viderais vider ver 30.68 70.81 0.15 0.07 cnd:pre:1s; +viderait vider ver 30.68 70.81 0.47 0.47 cnd:pre:3s; +videras vider ver 30.68 70.81 0.00 0.07 ind:fut:2s; +viderions vider ver 30.68 70.81 0.01 0.00 cnd:pre:1p; +videront vider ver 30.68 70.81 0.14 0.07 ind:fut:3p; +vides vide adj p 60.33 147.50 11.80 44.66 +videur videur nom m s 1.48 1.22 1.24 0.74 +videurs videur nom m p 1.48 1.22 0.24 0.47 +videz vider ver 30.68 70.81 2.71 0.27 imp:pre:2p;ind:pre:2p; +vidicon vidicon nom m s 0.01 0.00 0.01 0.00 +vidiez vider ver 30.68 70.81 0.12 0.00 ind:imp:2p; +vidons vider ver 30.68 70.81 0.09 0.14 imp:pre:1p;ind:pre:1p; +vidèrent vider ver 30.68 70.81 0.11 1.35 ind:pas:3p; +vidé vider ver m s 30.68 70.81 7.22 11.89 par:pas; +vidéaste vidéaste nom s 0.08 0.00 0.07 0.00 +vidéastes vidéaste nom p 0.08 0.00 0.01 0.00 +vidée vider ver f s 30.68 70.81 1.42 3.45 par:pas; +vidées vider ver f p 30.68 70.81 0.23 1.28 par:pas; +viduité viduité nom f s 0.01 0.00 0.01 0.00 +vidéo_clip vidéo_clip nom m s 0.19 0.27 0.14 0.20 +vidéo_clip vidéo_clip nom m p 0.19 0.27 0.04 0.07 +vidéo_club vidéo_club nom f s 0.44 0.00 0.44 0.00 +vidéo_espion vidéo_espion nom m s 0.00 0.07 0.00 0.07 +vidéo vidéo adj 23.61 0.74 23.61 0.74 +vidéocassette vidéocassette nom f s 0.10 0.00 0.06 0.00 +vidéocassettes vidéocassette nom f p 0.10 0.00 0.04 0.00 +vidéoclip vidéoclip nom m s 0.02 0.00 0.02 0.00 +vidéoclub vidéoclub nom m s 1.34 0.00 1.34 0.00 +vidéoconférence vidéoconférence nom f s 0.05 0.00 0.05 0.00 +vidéogramme vidéogramme nom m s 0.01 0.00 0.01 0.00 +vidéophone vidéophone nom m s 0.04 0.00 0.04 0.00 +vidéophonie vidéophonie nom f s 0.01 0.00 0.01 0.00 +vidéos vidéo nom f p 21.34 0.41 6.10 0.20 +vidéosurveillance vidéosurveillance nom f s 0.42 0.00 0.42 0.00 +vidéothèque vidéothèque nom f s 0.36 0.00 0.36 0.00 +vidures vidure nom f p 0.00 0.07 0.00 0.07 +vidés vider ver m p 30.68 70.81 0.46 2.23 par:pas; +vie vie nom f s 1021.22 853.31 986.59 835.47 +vieil vieil adj m s 34.69 51.22 34.69 51.22 +vieillard vieillard nom m s 11.75 55.14 7.62 37.77 +vieillarde vieillard nom f s 11.75 55.14 0.16 0.34 +vieillardes vieillard nom f p 11.75 55.14 0.00 0.34 +vieillards vieillard nom m p 11.75 55.14 3.96 16.69 +vieille vieux adj f s 282.20 512.91 84.59 184.12 +vieillerie vieillerie nom f s 1.91 2.30 0.54 0.68 +vieilleries vieillerie nom f p 1.91 2.30 1.37 1.62 +vieilles vieux adj f p 282.20 512.91 17.52 55.47 +vieillesse vieillesse nom f s 4.88 14.53 4.75 14.39 +vieillesses vieillesse nom f p 4.88 14.53 0.14 0.14 +vieilli vieillir ver m s 20.47 32.23 4.28 9.39 par:pas; +vieillie vieillir ver f s 20.47 32.23 0.30 0.61 par:pas; +vieillies vieillir ver f p 20.47 32.23 0.01 0.00 par:pas; +vieillir vieillir ver 20.47 32.23 5.49 8.58 inf; +vieillira vieillir ver 20.47 32.23 0.12 0.41 ind:fut:3s; +vieillirai vieillir ver 20.47 32.23 0.23 0.14 ind:fut:1s; +vieilliraient vieillir ver 20.47 32.23 0.01 0.07 cnd:pre:3p; +vieillirais vieillir ver 20.47 32.23 0.01 0.00 cnd:pre:1s; +vieillirait vieillir ver 20.47 32.23 0.07 0.41 cnd:pre:3s; +vieilliras vieillir ver 20.47 32.23 0.33 0.14 ind:fut:2s; +vieillirent vieillir ver 20.47 32.23 0.02 0.00 ind:pas:3p; +vieillirez vieillir ver 20.47 32.23 0.06 0.07 ind:fut:2p; +vieillirons vieillir ver 20.47 32.23 0.07 0.07 ind:fut:1p; +vieilliront vieillir ver 20.47 32.23 0.30 0.07 ind:fut:3p; +vieillis vieillir ver m p 20.47 32.23 2.74 1.89 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +vieillissaient vieillir ver 20.47 32.23 0.01 0.47 ind:imp:3p; +vieillissais vieillir ver 20.47 32.23 0.11 0.34 ind:imp:1s;ind:imp:2s; +vieillissait vieillir ver 20.47 32.23 0.48 2.50 ind:imp:3s; +vieillissant vieillir ver 20.47 32.23 1.38 2.23 par:pre; +vieillissante vieillissant adj f s 0.41 2.30 0.18 0.81 +vieillissantes vieillissant adj f p 0.41 2.30 0.12 0.20 +vieillissants vieillissant adj m p 0.41 2.30 0.04 0.41 +vieillisse vieillir ver 20.47 32.23 0.13 0.27 sub:pre:1s;sub:pre:3s; +vieillissement vieillissement nom m s 1.04 2.50 1.04 2.50 +vieillissent vieillir ver 20.47 32.23 0.76 0.88 ind:pre:3p; +vieillissez vieillir ver 20.47 32.23 0.29 0.14 imp:pre:2p;ind:pre:2p; +vieillissiez vieillir ver 20.47 32.23 0.00 0.07 ind:imp:2p; +vieillissions vieillir ver 20.47 32.23 0.00 0.07 ind:imp:1p; +vieillissons vieillir ver 20.47 32.23 0.08 0.00 imp:pre:1p;ind:pre:1p; +vieillit vieillir ver 20.47 32.23 3.19 3.45 ind:pre:3s;ind:pas:3s; +vieillot vieillot adj m s 0.34 2.57 0.25 1.28 +vieillots vieillot adj m p 0.34 2.57 0.01 0.27 +vieillotte vieillot adj f s 0.34 2.57 0.04 0.74 +vieillottes vieillot adj f p 0.34 2.57 0.03 0.27 +vielle vielle nom f s 2.01 0.68 1.49 0.47 +vielles vielle nom f p 2.01 0.68 0.52 0.20 +vielleux vielleux nom m 0.14 0.07 0.14 0.07 +viendra venir ver 2763.69 1514.53 52.92 23.11 ind:fut:3s; +viendrai venir ver 2763.69 1514.53 21.68 5.95 ind:fut:1s; +viendraient venir ver 2763.69 1514.53 1.68 6.35 cnd:pre:3p; +viendrais venir ver 2763.69 1514.53 11.80 2.70 cnd:pre:1s;cnd:pre:2s; +viendrait venir ver 2763.69 1514.53 9.89 20.27 cnd:pre:3s; +viendras venir ver 2763.69 1514.53 13.72 3.85 ind:fut:2s; +viendrez venir ver 2763.69 1514.53 5.73 4.05 ind:fut:2p; +viendriez venir ver 2763.69 1514.53 3.04 1.15 cnd:pre:2p; +viendrions venir ver 2763.69 1514.53 0.13 0.34 cnd:pre:1p; +viendrons venir ver 2763.69 1514.53 1.67 0.74 ind:fut:1p; +viendront venir ver 2763.69 1514.53 14.25 8.31 ind:fut:3p; +vienne venir ver 2763.69 1514.53 34.52 25.00 sub:pre:1s;sub:pre:3s; +viennent venir ver 2763.69 1514.53 76.48 62.77 ind:pre:3p;sub:pre:3p; +viennes venir ver 2763.69 1514.53 11.59 3.11 sub:pre:2s; +viennois viennois adj m 0.27 2.23 0.18 0.88 +viennoise viennois adj f s 0.27 2.23 0.08 0.81 +viennoiserie viennoiserie nom f s 0.66 0.00 0.52 0.00 +viennoiseries viennoiserie nom f p 0.66 0.00 0.14 0.00 +viennoises viennois adj f p 0.27 2.23 0.01 0.54 +viens venir ver 2763.69 1514.53 944.68 126.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vient venir ver 2763.69 1514.53 352.24 206.22 ind:pre:3s; +vierge vierge adj s 26.03 25.14 24.22 21.82 +vierges vierge nom f p 23.79 25.61 4.38 2.43 +vies vie nom f p 1021.22 853.31 34.63 17.84 +vietnamien vietnamien adj m s 1.04 0.68 0.45 0.41 +vietnamienne vietnamien adj f s 1.04 0.68 0.28 0.14 +vietnamiennes vietnamien adj f p 1.04 0.68 0.20 0.07 +vietnamiens vietnamien nom m p 1.19 0.74 0.81 0.14 +vieux_rose vieux_rose adj m 0.00 0.20 0.00 0.20 +vieux vieux adj m 282.20 512.91 180.08 273.31 +vif_argent vif_argent nom m s 0.21 0.20 0.21 0.20 +vif vif adj m s 22.95 95.07 9.27 41.62 +vifs vif adj m p 22.95 95.07 2.88 10.14 +vigie vigie nom f s 0.68 1.69 0.51 1.35 +vigies vigie nom f p 0.68 1.69 0.17 0.34 +vigil vigil adj m s 0.34 0.00 0.04 0.00 +vigilance vigilance nom f s 0.88 8.18 0.88 7.97 +vigilances vigilance nom f p 0.88 8.18 0.00 0.20 +vigilant vigilant adj m s 4.61 4.66 1.73 1.82 +vigilante vigilant adj f s 4.61 4.66 1.04 1.49 +vigilantes vigilant adj f p 4.61 4.66 0.03 0.41 +vigilants vigilant adj m p 4.61 4.66 1.80 0.95 +vigile vigile nom s 3.44 1.42 2.09 0.68 +vigiler vigiler ver 0.24 0.27 0.01 0.00 inf; +vigiles vigile nom p 3.44 1.42 1.35 0.74 +vigne vigne nom f s 6.87 20.41 4.97 10.61 +vigneaux vigneau nom m p 0.00 0.07 0.00 0.07 +vigneron vigneron nom m s 1.18 1.96 0.36 0.61 +vigneronne vigneron nom f s 1.18 1.96 0.14 0.00 +vigneronnes vigneron nom f p 1.18 1.96 0.00 0.07 +vignerons vigneron nom m p 1.18 1.96 0.68 1.28 +vignes vigne nom f p 6.87 20.41 1.90 9.80 +vignette vignette nom f s 0.26 1.76 0.19 0.41 +vignettes vignette nom f p 0.26 1.76 0.07 1.35 +vignoble vignoble nom m s 1.52 1.96 1.10 0.74 +vignobles vignoble nom m p 1.52 1.96 0.43 1.22 +vigogne vigogne nom f s 0.12 0.20 0.12 0.20 +vigoureuse vigoureux adj f s 2.62 10.54 0.56 3.18 +vigoureusement vigoureusement adv 0.55 3.92 0.55 3.92 +vigoureuses vigoureux adj f p 2.62 10.54 0.01 1.01 +vigoureux vigoureux adj m 2.62 10.54 2.05 6.35 +vigousse vigousse adj m s 0.00 0.07 0.00 0.07 +vigueur vigueur nom f s 3.61 15.61 3.61 15.54 +vigueurs vigueur nom f p 3.61 15.61 0.00 0.07 +viguier viguier nom m s 0.00 0.88 0.00 0.81 +viguiers viguier nom m p 0.00 0.88 0.00 0.07 +viking viking nom m s 0.43 0.20 0.25 0.00 +vikings viking nom m p 0.43 0.20 0.19 0.20 +vil vil adj m s 6.07 3.18 3.54 2.16 +vilain vilain adj m s 20.67 19.32 11.03 8.72 +vilaine vilain adj f s 20.67 19.32 6.23 6.22 +vilainement vilainement adv 0.04 0.47 0.04 0.47 +vilaines vilain adj f p 20.67 19.32 1.81 2.57 +vilains vilain adj m p 20.67 19.32 1.61 1.82 +vile vil adj f s 6.07 3.18 1.72 0.47 +vilebrequin vilebrequin nom m s 0.13 0.68 0.12 0.68 +vilebrequins vilebrequin nom m p 0.13 0.68 0.01 0.00 +vilement vilement adv 0.14 0.00 0.14 0.00 +vilenie vilenie nom f s 0.58 1.15 0.46 0.74 +vilenies vilenie nom f p 0.58 1.15 0.13 0.41 +viles vil adj f p 6.07 3.18 0.22 0.20 +vilipendaient vilipender ver 0.20 0.61 0.01 0.00 ind:imp:3p; +vilipendant vilipender ver 0.20 0.61 0.01 0.07 par:pre; +vilipender vilipender ver 0.20 0.61 0.15 0.07 inf; +vilipendé vilipender ver m s 0.20 0.61 0.03 0.27 par:pas; +vilipendées vilipender ver f p 0.20 0.61 0.00 0.07 par:pas; +vilipendés vilipender ver m p 0.20 0.61 0.00 0.14 par:pas; +villa villa nom f s 16.61 33.72 15.30 24.80 +village village nom m s 95.82 143.99 87.60 118.24 +villageois villageois nom m 4.83 2.91 4.59 2.36 +villageoise villageois nom f s 4.83 2.91 0.07 0.27 +villageoises villageois nom f p 4.83 2.91 0.17 0.27 +villages village nom m p 95.82 143.99 8.22 25.74 +villas villa nom f p 16.61 33.72 1.31 8.92 +ville_champignon ville_champignon nom f s 0.02 0.00 0.02 0.00 +ville_dortoir ville_dortoir nom f s 0.00 0.07 0.00 0.07 +ville ville nom f s 295.14 352.97 277.98 311.69 +villes_clé villes_clé nom f p 0.01 0.00 0.01 0.00 +villes ville nom f p 295.14 352.97 17.17 41.28 +villette villette nom f s 0.18 0.88 0.18 0.88 +villégiaturait villégiaturer ver 0.01 0.14 0.00 0.07 ind:imp:3s; +villégiature villégiature nom f s 0.10 2.70 0.10 2.16 +villégiaturer villégiaturer ver 0.01 0.14 0.01 0.00 inf; +villégiatures villégiature nom f p 0.10 2.70 0.00 0.54 +villégiaturé villégiaturer ver m s 0.01 0.14 0.00 0.07 par:pas; +vils vil adj m p 6.07 3.18 0.59 0.34 +vin vin nom m s 86.86 110.47 80.92 99.93 +vina vina nom f 0.11 0.00 0.11 0.00 +vinaigre vinaigre nom m s 2.91 5.61 2.91 5.54 +vinaigrer vinaigrer ver 0.01 0.47 0.00 0.14 inf; +vinaigres vinaigre nom m p 2.91 5.61 0.00 0.07 +vinaigrette vinaigrette nom f s 0.59 0.68 0.59 0.68 +vinaigré vinaigrer ver m s 0.01 0.47 0.01 0.00 par:pas; +vinaigrée vinaigrer ver f s 0.01 0.47 0.00 0.20 par:pas; +vinasse vinasse nom f s 0.21 1.62 0.21 1.62 +vindicatif vindicatif adj m s 1.10 2.23 0.79 1.28 +vindicatifs vindicatif adj m p 1.10 2.23 0.07 0.47 +vindicative vindicatif adj f s 1.10 2.23 0.12 0.41 +vindicativement vindicativement adv 0.00 0.07 0.00 0.07 +vindicatives vindicatif adj f p 1.10 2.23 0.12 0.07 +vindicte vindicte nom f s 0.19 1.15 0.19 1.15 +vine viner ver 0.06 0.20 0.04 0.00 imp:pre:2s; +viner viner ver 0.06 0.20 0.01 0.07 inf; +vines viner ver 0.06 0.20 0.00 0.07 ind:pre:2s; +vineuse vineux adj f s 0.00 1.76 0.00 0.88 +vineuses vineux adj f p 0.00 1.76 0.00 0.27 +vineux vineux adj m 0.00 1.76 0.00 0.61 +vinez viner ver 0.06 0.20 0.01 0.07 imp:pre:2p; +vingt_cinq vingt_cinq adj_num 3.53 28.18 3.53 28.18 +vingt_cinquième vingt_cinquième adj 0.01 0.34 0.01 0.34 +vingt_deux vingt_deux adj_num 1.25 8.99 1.25 8.99 +vingt_deuxième vingt_deuxième adj 0.03 0.27 0.03 0.27 +vingt_et_un vingt_et_un nom m 0.28 0.74 0.28 0.68 +vingt_et_un vingt_et_un nom f s 0.28 0.74 0.01 0.07 +vingt_et_unième vingt_et_unième adj 0.01 0.07 0.01 0.07 +vingt_huit vingt_huit adj_num 0.97 5.34 0.97 5.34 +vingt_huitième vingt_huitième adj 0.00 0.74 0.00 0.74 +vingt_neuf vingt_neuf adj_num 0.96 2.77 0.96 2.77 +vingt_neuvième vingt_neuvième adj 0.01 0.00 0.01 0.00 +vingt_quatre vingt_quatre adj_num 2.13 17.36 2.13 17.36 +vingt_quatrième vingt_quatrième adj 0.01 0.27 0.01 0.27 +vingt_sept vingt_sept adj_num 0.67 4.59 0.67 4.59 +vingt_septième vingt_septième adj 0.00 0.54 0.00 0.54 +vingt_six vingt_six adj_num 1.09 7.50 1.09 7.50 +vingt_sixième vingt_sixième adj 0.01 0.20 0.01 0.20 +vingt_trois vingt_trois adj_num 2.08 7.57 2.08 7.57 +vingt_troisième vingt_troisième adj 0.01 0.61 0.01 0.61 +vingt vingt adj_num 29.47 154.59 29.47 154.59 +vingtaine vingtaine nom f s 4.11 15.47 4.11 15.34 +vingtaines vingtaine nom f p 4.11 15.47 0.00 0.14 +vingtième vingtième adj 0.34 3.24 0.34 3.18 +vingtièmes vingtième adj 0.34 3.24 0.00 0.07 +vinicole vinicole adj s 0.04 0.00 0.04 0.00 +vinificatrice vinificateur nom f s 0.01 0.00 0.01 0.00 +vinrent venir ver 2763.69 1514.53 1.53 10.54 ind:pas:3p; +vins vin nom m p 86.86 110.47 5.95 10.54 +vinsse venir ver 2763.69 1514.53 0.00 0.20 sub:imp:1s; +vinssent venir ver 2763.69 1514.53 0.00 1.08 sub:imp:3p; +vint venir ver 2763.69 1514.53 7.58 88.72 ind:pas:3s; +vintage vintage nom m s 0.17 0.07 0.17 0.07 +vinyle vinyle nom m s 0.70 0.74 0.34 0.74 +vinyles vinyle nom m p 0.70 0.74 0.35 0.00 +vinylique vinylique adj m s 0.00 0.07 0.00 0.07 +vioc vioc nom m s 0.04 0.41 0.03 0.34 +viocard viocard nom m s 0.00 0.14 0.00 0.14 +viocque viocque nom s 0.00 0.07 0.00 0.07 +viocs vioc nom m p 0.04 0.41 0.01 0.07 +viol viol nom m s 15.33 8.51 13.43 7.23 +viola violer ver 39.43 19.19 1.49 0.54 ind:pas:3s; +violacer violacer ver 0.03 1.62 0.00 0.07 inf; +violacé violacé adj m s 0.04 5.88 0.01 1.89 +violacée violacé adj f s 0.04 5.88 0.02 1.55 +violacées violacer ver f p 0.03 1.62 0.02 0.47 par:pas; +violacés violacé adj m p 0.04 5.88 0.01 0.74 +violaient violer ver 39.43 19.19 0.19 0.27 ind:imp:3p; +violais violer ver 39.43 19.19 0.04 0.00 ind:imp:1s;ind:imp:2s; +violait violer ver 39.43 19.19 1.01 0.81 ind:imp:3s; +violant violer ver 39.43 19.19 0.68 0.61 par:pre; +violaçait violacer ver 0.03 1.62 0.00 0.07 ind:imp:3s; +violation violation nom f s 4.54 1.96 4.09 1.62 +violations violation nom f p 4.54 1.96 0.46 0.34 +viole violer ver 39.43 19.19 3.00 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +violemment violemment adv 2.80 20.88 2.80 20.88 +violence violence nom f s 41.45 56.49 39.66 53.11 +violences violence nom f p 41.45 56.49 1.79 3.38 +violent violent adj m s 24.99 51.49 12.84 19.39 +violentaient violenter ver 0.62 1.42 0.00 0.07 ind:imp:3p; +violentait violenter ver 0.62 1.42 0.01 0.20 ind:imp:3s; +violente violent adj f s 24.99 51.49 5.17 18.04 +violenter violenter ver 0.62 1.42 0.16 0.47 inf; +violentes violent adj f p 24.99 51.49 2.44 7.84 +violents violent adj m p 24.99 51.49 4.54 6.22 +violenté violenter ver m s 0.62 1.42 0.20 0.07 par:pas; +violentée violenter ver f s 0.62 1.42 0.07 0.14 par:pas; +violer violer ver 39.43 19.19 8.36 4.93 inf;; +violerai violer ver 39.43 19.19 0.03 0.07 ind:fut:1s; +violerais violer ver 39.43 19.19 0.10 0.00 cnd:pre:1s;cnd:pre:2s; +violerait violer ver 39.43 19.19 0.21 0.20 cnd:pre:3s; +violeras violer ver 39.43 19.19 0.02 0.00 ind:fut:2s; +violeront violer ver 39.43 19.19 0.05 0.07 ind:fut:3p; +violes violer ver 39.43 19.19 0.55 0.07 ind:pre:2s; +violet violet adj m s 4.38 26.28 2.29 7.91 +violeta violeter ver 0.44 0.00 0.44 0.00 ind:pas:3s; +violets violet adj m p 4.38 26.28 0.39 4.39 +violette violet adj f s 4.38 26.28 1.04 9.12 +violettes violette nom f p 1.94 6.89 1.17 4.39 +violeur violeur nom m s 6.41 2.30 4.52 1.35 +violeurs violeur nom m p 6.41 2.30 1.89 0.88 +violeuses violeur nom f p 6.41 2.30 0.00 0.07 +violez violer ver 39.43 19.19 0.60 0.00 imp:pre:2p;ind:pre:2p; +violine violine nom m s 0.00 0.20 0.00 0.20 +violines violine adj p 0.00 0.14 0.00 0.07 +violon violon nom m s 13.65 13.31 11.56 9.73 +violoncelle violoncelle nom m s 3.28 3.38 3.04 3.31 +violoncelles violoncelle nom m p 3.28 3.38 0.24 0.07 +violoncelliste violoncelliste nom s 0.81 0.14 0.79 0.07 +violoncellistes violoncelliste nom p 0.81 0.14 0.02 0.07 +violone violoner ver 0.00 0.07 0.00 0.07 ind:pre:1s; +violoneux violoneux nom m 0.00 0.41 0.00 0.41 +violoniste violoniste nom s 3.07 2.43 2.91 1.82 +violonistes violoniste nom p 3.07 2.43 0.16 0.61 +violons violon nom m p 13.65 13.31 2.09 3.58 +violâtre violâtre adj s 0.00 0.88 0.00 0.47 +violâtres violâtre adj p 0.00 0.88 0.00 0.41 +viols viol nom m p 15.33 8.51 1.90 1.28 +violé violer ver m s 39.43 19.19 9.36 2.97 par:pas; +violée violer ver f s 39.43 19.19 10.97 3.99 ind:imp:3p;par:pas; +violées violer ver f p 39.43 19.19 1.18 1.89 par:pas; +violés violer ver m p 39.43 19.19 0.70 0.41 par:pas; +vioque vioque nom f s 0.77 4.93 0.40 4.32 +vioques vioque nom f p 0.77 4.93 0.38 0.61 +viorne viorne nom f s 0.00 0.41 0.00 0.20 +viornes viorne nom f p 0.00 0.41 0.00 0.20 +vipère vipère nom f s 4.84 5.41 3.42 3.31 +vipères vipère nom f p 4.84 5.41 1.42 2.09 +vipéreau vipéreau nom m s 0.00 0.07 0.00 0.07 +vipérine vipérin adj f s 0.14 0.20 0.14 0.14 +vipérines vipérin adj f p 0.14 0.20 0.00 0.07 +vira virer ver 86.28 37.84 0.03 1.82 ind:pas:3s; +virage virage nom m s 6.75 12.91 5.98 8.72 +virages virage nom m p 6.75 12.91 0.77 4.19 +virago virago nom f s 0.02 0.20 0.01 0.07 +viragos virago nom f p 0.02 0.20 0.01 0.14 +virai virer ver 86.28 37.84 0.00 0.07 ind:pas:1s; +viraient virer ver 86.28 37.84 0.05 1.08 ind:imp:3p; +virais virer ver 86.28 37.84 0.19 0.07 ind:imp:1s;ind:imp:2s; +virait virer ver 86.28 37.84 0.21 2.30 ind:imp:3s; +viral viral adj m s 1.19 0.61 0.35 0.07 +virale viral adj f s 1.19 0.61 0.73 0.47 +virales viral adj f p 1.19 0.61 0.10 0.07 +virant virer ver 86.28 37.84 0.15 1.49 par:pre; +viraux viral adj m p 1.19 0.61 0.01 0.00 +vire virer ver 86.28 37.84 13.27 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +virement virement nom m s 1.75 0.34 1.48 0.14 +virements virement nom m p 1.75 0.34 0.27 0.20 +virent virer ver 86.28 37.84 2.04 11.62 ind:pre:3p; +virer virer ver 86.28 37.84 25.72 6.76 inf; +virera virer ver 86.28 37.84 0.44 0.07 ind:fut:3s; +virerai virer ver 86.28 37.84 0.20 0.00 ind:fut:1s; +virerais virer ver 86.28 37.84 0.21 0.00 cnd:pre:1s;cnd:pre:2s; +virerait virer ver 86.28 37.84 0.14 0.20 cnd:pre:3s; +vireras virer ver 86.28 37.84 0.05 0.00 ind:fut:2s; +virerez virer ver 86.28 37.84 0.09 0.00 ind:fut:2p; +vireront virer ver 86.28 37.84 0.11 0.00 ind:fut:3p; +vires virer ver 86.28 37.84 1.39 0.34 ind:pre:2s;sub:pre:2s; +vireuse vireux adj f s 0.00 0.07 0.00 0.07 +virevolta virevolter ver 0.48 2.97 0.00 0.14 ind:pas:3s; +virevoltaient virevolter ver 0.48 2.97 0.11 0.47 ind:imp:3p; +virevoltait virevolter ver 0.48 2.97 0.04 0.34 ind:imp:3s; +virevoltant virevolter ver 0.48 2.97 0.06 0.27 par:pre; +virevoltante virevoltant adj f s 0.01 0.41 0.01 0.20 +virevoltantes virevoltant adj f p 0.01 0.41 0.00 0.07 +virevolte virevolter ver 0.48 2.97 0.04 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +virevoltent virevolter ver 0.48 2.97 0.04 0.41 ind:pre:3p; +virevolter virevolter ver 0.48 2.97 0.18 0.41 inf; +virevoltes virevolter ver 0.48 2.97 0.01 0.00 ind:pre:2s; +virevolté virevolter ver m s 0.48 2.97 0.00 0.07 par:pas; +virez virer ver 86.28 37.84 6.47 0.00 imp:pre:2p;ind:pre:2p; +virgilien virgilien adj m s 0.00 0.41 0.00 0.14 +virgilienne virgilien adj f s 0.00 0.41 0.00 0.27 +virginal virginal adj m s 0.58 2.30 0.23 0.95 +virginale virginal adj f s 0.58 2.30 0.35 0.81 +virginalement virginalement adv 0.00 0.07 0.00 0.07 +virginales virginal adj f p 0.58 2.30 0.00 0.20 +virginaux virginal adj m p 0.58 2.30 0.00 0.34 +virginie virginie nom m s 0.11 31.28 0.11 31.28 +virginien virginien nom m s 0.07 0.34 0.04 0.07 +virginiens virginien nom m p 0.07 0.34 0.04 0.27 +virginité virginité nom f s 4.26 3.58 4.25 3.51 +virginités virginité nom f p 4.26 3.58 0.01 0.07 +virgule virgule nom f s 4.69 4.73 4.44 3.04 +virgules virgule nom f p 4.69 4.73 0.25 1.69 +viriez virer ver 86.28 37.84 0.07 0.00 ind:imp:2p; +viril viril adj m s 4.82 10.68 2.81 4.53 +virile viril adj f s 4.82 10.68 1.31 3.72 +virilement virilement adv 0.01 0.61 0.01 0.61 +viriles viril adj f p 4.82 10.68 0.25 1.15 +virilise viriliser ver 0.01 0.34 0.00 0.07 ind:pre:3s; +viriliser viriliser ver 0.01 0.34 0.01 0.07 inf; +virilisé viriliser ver m s 0.01 0.34 0.00 0.14 par:pas; +virilisés viriliser ver m p 0.01 0.34 0.00 0.07 par:pas; +virilité virilité nom f s 2.46 6.69 2.46 6.35 +virilités virilité nom f p 2.46 6.69 0.00 0.34 +virils viril adj m p 4.82 10.68 0.45 1.28 +viroles virole nom f p 0.00 0.07 0.00 0.07 +virolet virolet nom m s 0.00 0.07 0.00 0.07 +virologie virologie nom f s 0.28 0.00 0.28 0.00 +virologiste virologiste nom s 0.12 0.00 0.12 0.00 +virologue virologue nom s 0.14 0.00 0.13 0.00 +virologues virologue nom p 0.14 0.00 0.01 0.00 +virons virer ver 86.28 37.84 0.33 0.00 imp:pre:1p;ind:pre:1p; +virât virer ver 86.28 37.84 0.00 0.07 sub:imp:3s; +virèrent virer ver 86.28 37.84 0.00 0.07 ind:pas:3p; +virtualité virtualité nom f s 0.03 0.41 0.03 0.20 +virtualités virtualité nom f p 0.03 0.41 0.00 0.20 +virtuel virtuel adj m s 2.38 2.16 1.44 0.81 +virtuelle virtuel adj f s 2.38 2.16 0.77 0.54 +virtuellement virtuellement adv 0.60 1.15 0.60 1.15 +virtuelles virtuel adj f p 2.38 2.16 0.09 0.47 +virtuels virtuel adj m p 2.38 2.16 0.09 0.34 +virtuose virtuose nom s 0.80 2.23 0.52 1.55 +virtuoses virtuose nom p 0.80 2.23 0.28 0.68 +virtuosité virtuosité nom f s 0.20 1.82 0.20 1.82 +viré virer ver m s 86.28 37.84 25.59 6.28 par:pas;par:pas;par:pas; +virée virer ver f s 86.28 37.84 6.23 0.61 par:pas; +virées virée nom f p 4.13 3.92 0.70 1.28 +virulence virulence nom f s 0.12 0.95 0.12 0.95 +virulent virulent adj m s 0.96 1.62 0.23 0.41 +virulente virulent adj f s 0.96 1.62 0.55 0.81 +virulentes virulent adj f p 0.96 1.62 0.14 0.07 +virulents virulent adj m p 0.96 1.62 0.03 0.34 +virés virer ver m p 86.28 37.84 3.21 0.81 par:pas; +virus virus nom m 23.98 6.42 23.98 6.42 +vis_à_vis vis_à_vis pre 0.00 19.39 0.00 19.39 +vis voir ver 4119.49 2401.76 54.62 38.24 ind:pas:1s;ind:pas:2s; +visa visa nom m s 7.39 3.38 6.14 2.50 +visage visage nom m s 141.23 565.00 125.52 490.54 +visages visage nom m p 141.23 565.00 15.71 74.46 +visagiste visagiste nom s 0.01 0.14 0.01 0.14 +visai viser ver 38.03 27.57 0.00 0.20 ind:pas:1s; +visaient viser ver 38.03 27.57 0.48 2.03 ind:imp:3p; +visais viser ver 38.03 27.57 1.10 0.61 ind:imp:1s;ind:imp:2s; +visait viser ver 38.03 27.57 1.65 3.18 ind:imp:3s; +visant viser ver 38.03 27.57 1.23 3.38 par:pre; +visas visa nom m p 7.39 3.38 1.25 0.88 +viscose viscose nom f s 0.03 0.14 0.03 0.07 +viscoses viscose nom f p 0.03 0.14 0.00 0.07 +viscosité viscosité nom f s 0.06 0.74 0.06 0.68 +viscosités viscosité nom f p 0.06 0.74 0.00 0.07 +viscère viscère nom m s 0.43 2.97 0.03 0.20 +viscères viscère nom m p 0.43 2.97 0.40 2.77 +viscéral viscéral adj m s 0.37 1.96 0.23 0.61 +viscérale viscéral adj f s 0.37 1.96 0.11 1.22 +viscéralement viscéralement adv 0.07 0.00 0.07 0.00 +viscérales viscéral adj f p 0.37 1.96 0.01 0.07 +viscéraux viscéral adj m p 0.37 1.96 0.01 0.07 +vise viser ver 38.03 27.57 13.96 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visent viser ver 38.03 27.57 1.32 0.88 ind:pre:3p; +viser viser ver 38.03 27.57 5.87 4.05 inf; +visera viser ver 38.03 27.57 0.14 0.00 ind:fut:3s; +viserai viser ver 38.03 27.57 0.07 0.07 ind:fut:1s; +viseraient viser ver 38.03 27.57 0.01 0.14 cnd:pre:3p; +viserais viser ver 38.03 27.57 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +viserait viser ver 38.03 27.57 0.02 0.20 cnd:pre:3s; +viseront viser ver 38.03 27.57 0.05 0.07 ind:fut:3p; +vises viser ver 38.03 27.57 1.44 0.27 ind:pre:2s; +viseur viseur nom m s 1.93 1.22 1.48 1.08 +viseurs viseur nom m p 1.93 1.22 0.45 0.14 +visez viser ver 38.03 27.57 5.69 1.22 imp:pre:2p;ind:pre:2p; +vishnouisme vishnouisme nom m s 0.02 0.00 0.02 0.00 +visibilité visibilité nom f s 1.27 1.55 1.27 1.55 +visible visible adj s 8.98 30.61 7.41 24.05 +visiblement visiblement adv 6.94 23.99 6.94 23.99 +visibles visible adj p 8.98 30.61 1.57 6.55 +visiez viser ver 38.03 27.57 0.17 0.00 ind:imp:2p; +visioconférence visioconférence nom f s 0.01 0.00 0.01 0.00 +vision vision nom f s 35.48 41.82 25.81 33.78 +visionna visionner ver 1.56 0.88 0.01 0.00 ind:pas:3s; +visionnage visionnage nom m s 0.16 0.07 0.16 0.07 +visionnaire visionnaire nom m s 1.46 1.15 1.08 0.88 +visionnaires visionnaire nom m p 1.46 1.15 0.38 0.27 +visionnant visionner ver 1.56 0.88 0.04 0.00 par:pre; +visionne visionner ver 1.56 0.88 0.13 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visionnent visionner ver 1.56 0.88 0.01 0.00 ind:pre:3p; +visionner visionner ver 1.56 0.88 0.56 0.34 inf; +visionnera visionner ver 1.56 0.88 0.04 0.00 ind:fut:3s; +visionneront visionner ver 1.56 0.88 0.02 0.00 ind:fut:3p; +visionneuse visionneur nom f s 0.06 0.14 0.06 0.14 +visionnez visionner ver 1.56 0.88 0.20 0.00 imp:pre:2p;ind:pre:2p; +visionnons visionner ver 1.56 0.88 0.04 0.00 imp:pre:1p; +visionné visionner ver m s 1.56 0.88 0.51 0.00 par:pas; +visionnés visionner ver m p 1.56 0.88 0.00 0.07 par:pas; +visions vision nom f p 35.48 41.82 9.66 8.04 +visiophone visiophone nom m s 0.01 0.00 0.01 0.00 +visita visiter ver 34.92 52.16 0.26 2.16 ind:pas:3s; +visitai visiter ver 34.92 52.16 0.00 1.01 ind:pas:1s; +visitaient visiter ver 34.92 52.16 0.04 0.95 ind:imp:3p; +visitais visiter ver 34.92 52.16 0.46 0.54 ind:imp:1s;ind:imp:2s; +visitait visiter ver 34.92 52.16 0.33 2.77 ind:imp:3s; +visitandines visitandine nom f p 0.00 0.07 0.00 0.07 +visitant visiter ver 34.92 52.16 0.24 1.96 par:pre; +visitation visitation nom f s 0.15 0.95 0.15 0.95 +visite_éclair visite_éclair nom f s 0.00 0.07 0.00 0.07 +visite visite nom f s 99.95 99.32 86.34 80.61 +visitent visiter ver 34.92 52.16 0.52 0.54 ind:pre:3p; +visiter visiter ver 34.92 52.16 21.23 23.18 inf; +visitera visiter ver 34.92 52.16 0.05 0.00 ind:fut:3s; +visiterai visiter ver 34.92 52.16 0.33 0.07 ind:fut:1s; +visiteraient visiter ver 34.92 52.16 0.00 0.07 cnd:pre:3p; +visiterait visiter ver 34.92 52.16 0.02 0.27 cnd:pre:3s; +visiteras visiter ver 34.92 52.16 0.03 0.14 ind:fut:2s; +visiterez visiter ver 34.92 52.16 0.06 0.34 ind:fut:2p; +visiterons visiter ver 34.92 52.16 0.17 0.27 ind:fut:1p; +visites visite nom f p 99.95 99.32 13.60 18.72 +visiteur visiteur nom m s 12.46 35.54 4.74 15.07 +visiteurs visiteur nom m p 12.46 35.54 7.55 16.76 +visiteuse visiteur nom f s 12.46 35.54 0.16 2.97 +visiteuses visiteuse nom f p 0.16 0.00 0.16 0.00 +visitez visiter ver 34.92 52.16 1.14 0.74 imp:pre:2p;ind:pre:2p; +visière visière nom f s 0.37 10.14 0.33 9.19 +visières visière nom f p 0.37 10.14 0.04 0.95 +visitiez visiter ver 34.92 52.16 0.13 0.07 ind:imp:2p; +visitions visiter ver 34.92 52.16 0.02 0.61 ind:imp:1p; +visitâmes visiter ver 34.92 52.16 0.00 0.47 ind:pas:1p; +visitons visiter ver 34.92 52.16 0.40 0.34 imp:pre:1p;ind:pre:1p; +visitât visiter ver 34.92 52.16 0.00 0.27 sub:imp:3s; +visitèrent visiter ver 34.92 52.16 0.01 0.61 ind:pas:3p; +visité visiter ver m s 34.92 52.16 4.15 6.01 par:pas; +visitée visiter ver f s 34.92 52.16 0.32 1.42 par:pas; +visitées visiter ver f p 34.92 52.16 0.30 0.54 par:pas; +visités visiter ver m p 34.92 52.16 0.27 0.95 par:pas; +vison vison nom m s 1.65 2.97 1.56 2.30 +visons viser ver 38.03 27.57 0.16 0.00 imp:pre:1p;ind:pre:1p; +visqueuse visqueux adj f s 1.71 7.43 0.53 2.57 +visqueuses visqueux adj f p 1.71 7.43 0.24 0.74 +visqueux visqueux adj m 1.71 7.43 0.94 4.12 +vissa visser ver 2.90 8.24 0.00 0.61 ind:pas:3s; +vissaient visser ver 2.90 8.24 0.00 0.07 ind:imp:3p; +vissait visser ver 2.90 8.24 0.01 0.68 ind:imp:3s; +vissant visser ver 2.90 8.24 0.10 0.34 par:pre; +visse visser ver 2.90 8.24 0.33 0.54 ind:pre:1s;ind:pre:3s; +vissent visser ver 2.90 8.24 0.11 0.00 ind:pre:3p; +visser visser ver 2.90 8.24 1.45 0.88 inf; +visserait visser ver 2.90 8.24 0.00 0.07 cnd:pre:3s; +visserie visserie nom f s 0.02 0.00 0.02 0.00 +vissez visser ver 2.90 8.24 0.17 0.00 imp:pre:2p;ind:pre:2p; +vissèrent visser ver 2.90 8.24 0.00 0.07 ind:pas:3p; +vissé visser ver m s 2.90 8.24 0.42 2.84 par:pas; +vissée visser ver f s 2.90 8.24 0.17 0.81 par:pas; +vissées vissé adj f p 0.11 0.20 0.01 0.07 +vissés visser ver m p 2.90 8.24 0.14 0.74 par:pas; +vista vista nom f s 0.86 0.14 0.86 0.14 +visé viser ver m s 38.03 27.57 3.70 2.23 par:pas; +visualisaient visualiser ver 1.41 0.34 0.00 0.07 ind:imp:3p; +visualisais visualiser ver 1.41 0.34 0.05 0.00 ind:imp:1s;ind:imp:2s; +visualisant visualiser ver 1.41 0.34 0.01 0.00 par:pre; +visualisation visualisation nom f s 0.21 0.00 0.21 0.00 +visualise visualiser ver 1.41 0.34 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visualiser visualiser ver 1.41 0.34 0.48 0.00 inf; +visualiserai visualiser ver 1.41 0.34 0.01 0.00 ind:fut:1s; +visualises visualiser ver 1.41 0.34 0.29 0.07 ind:pre:2s; +visualisez visualiser ver 1.41 0.34 0.25 0.00 imp:pre:2p;ind:pre:2p; +visualisé visualiser ver m s 1.41 0.34 0.04 0.00 par:pas; +visualisée visualiser ver f s 1.41 0.34 0.00 0.07 par:pas; +visualisées visualiser ver f p 1.41 0.34 0.01 0.00 par:pas; +visualisés visualiser ver m p 1.41 0.34 0.01 0.00 par:pas; +visée visée nom f s 0.93 2.57 0.73 1.49 +visuel visuel adj m s 6.71 3.24 4.38 1.96 +visuelle visuel adj f s 6.71 3.24 1.34 0.68 +visuellement visuellement adv 0.32 0.14 0.32 0.14 +visuelles visuel adj f p 6.71 3.24 0.26 0.20 +visuels visuel adj m p 6.71 3.24 0.73 0.41 +visées visée nom f p 0.93 2.57 0.20 1.08 +visés visé adj m p 2.05 1.62 0.30 0.34 +vit vivre ver 510.05 460.34 74.42 39.80 ind:pre:3s; +vital vital adj m s 12.24 9.80 4.17 4.86 +vitale vital adj f s 12.24 9.80 4.11 3.11 +vitales vital adj f p 12.24 9.80 1.13 0.95 +vitaliser vitaliser ver 0.01 0.00 0.01 0.00 inf; +vitalité vitalité nom f s 1.08 6.49 1.08 6.49 +vitamine vitamine nom f s 5.77 2.30 1.31 0.34 +vitaminer vitaminer ver 0.00 0.07 0.00 0.07 inf; +vitamines vitamine nom f p 5.77 2.30 4.46 1.96 +vitaminé vitaminé adj m s 0.12 0.20 0.03 0.00 +vitaminée vitaminé adj f s 0.12 0.20 0.07 0.14 +vitaminées vitaminé adj f p 0.12 0.20 0.02 0.00 +vitaminés vitaminé adj m p 0.12 0.20 0.00 0.07 +vitaux vital adj m p 12.24 9.80 2.84 0.88 +vite vite adv_sup 491.64 351.89 491.64 351.89 +vitellin vitellin adj m s 0.01 0.00 0.01 0.00 +vitement vitement adv 0.00 0.07 0.00 0.07 +vitesse vitesse nom f s 40.12 57.84 37.89 54.59 +vitesses vitesse nom f p 40.12 57.84 2.23 3.24 +viticole viticole adj s 0.04 0.00 0.04 0.00 +viticulteur viticulteur nom m s 0.60 0.68 0.05 0.34 +viticulteurs viticulteur nom m p 0.60 0.68 0.16 0.34 +viticultrice viticulteur nom f s 0.60 0.68 0.40 0.00 +viticulture viticulture nom f s 0.03 0.00 0.03 0.00 +vitiligo vitiligo nom m s 0.01 0.00 0.01 0.00 +vitrage vitrage nom m s 0.24 0.81 0.14 0.54 +vitrages vitrage nom m p 0.24 0.81 0.10 0.27 +vitrail vitrail nom m s 1.77 7.77 1.38 3.58 +vitrauphanie vitrauphanie nom f s 0.00 0.07 0.00 0.07 +vitraux vitrail nom m p 1.77 7.77 0.40 4.19 +vitre vitre nom f s 16.35 76.22 10.21 41.28 +vitres vitre nom f p 16.35 76.22 6.14 34.93 +vitreuse vitreux adj f s 0.34 4.53 0.00 0.47 +vitreuses vitreux adj f p 0.34 4.53 0.01 0.14 +vitreux vitreux adj m 0.34 4.53 0.33 3.92 +vitrier vitrier nom m s 0.20 0.74 0.17 0.68 +vitriers vitrier nom m p 0.20 0.74 0.03 0.07 +vitrifia vitrifier ver 0.05 1.69 0.00 0.07 ind:pas:3s; +vitrifie vitrifier ver 0.05 1.69 0.01 0.07 ind:pre:1s;ind:pre:3s; +vitrifient vitrifier ver 0.05 1.69 0.00 0.07 ind:pre:3p; +vitrifier vitrifier ver 0.05 1.69 0.01 0.14 inf; +vitrifié vitrifier ver m s 0.05 1.69 0.01 0.88 par:pas; +vitrifiée vitrifier ver f s 0.05 1.69 0.01 0.20 par:pas; +vitrifiées vitrifier ver f p 0.05 1.69 0.00 0.07 par:pas; +vitrifiés vitrifier ver m p 0.05 1.69 0.01 0.20 par:pas; +vitrine vitrine nom f s 6.84 33.99 5.09 20.68 +vitrines vitrine nom f p 6.84 33.99 1.75 13.31 +vitriol vitriol nom m s 0.43 0.74 0.43 0.68 +vitrioler vitrioler ver 0.01 0.20 0.01 0.00 inf; +vitrioleurs vitrioleur nom m p 0.00 0.07 0.00 0.07 +vitriolique vitriolique adj f s 0.00 0.07 0.00 0.07 +vitriols vitriol nom m p 0.43 0.74 0.00 0.07 +vitriolé vitrioler ver m s 0.01 0.20 0.00 0.20 par:pas; +vitrophanie vitrophanie nom f s 0.00 0.07 0.00 0.07 +vitré vitré adj m s 0.57 15.61 0.06 1.62 +vitrée vitré adj f s 0.57 15.61 0.30 11.22 +vitrées vitré adj f p 0.57 15.61 0.21 2.36 +vitrés vitré adj m p 0.57 15.61 0.00 0.41 +vits vit nom m p 0.00 0.14 0.00 0.14 +vitupère vitupérer ver 0.02 1.08 0.00 0.07 imp:pre:2s; +vitupéraient vitupérer ver 0.02 1.08 0.00 0.07 ind:imp:3p; +vitupérait vitupérer ver 0.02 1.08 0.00 0.41 ind:imp:3s; +vitupérant vitupérer ver 0.02 1.08 0.00 0.27 par:pre; +vitupérations vitupération nom f p 0.00 0.07 0.00 0.07 +vitupérer vitupérer ver 0.02 1.08 0.02 0.27 inf; +vivable vivable adj s 0.41 1.35 0.40 1.08 +vivables vivable adj p 0.41 1.35 0.01 0.27 +vivace vivace adj s 0.52 4.66 0.35 3.58 +vivaces vivace adj p 0.52 4.66 0.17 1.08 +vivacité vivacité nom f s 0.74 8.58 0.74 8.51 +vivacités vivacité nom f p 0.74 8.58 0.00 0.07 +vivaient vivre ver 510.05 460.34 6.18 15.74 ind:imp:3p; +vivais vivre ver 510.05 460.34 8.91 10.81 ind:imp:1s;ind:imp:2s; +vivait vivre ver 510.05 460.34 20.50 53.18 ind:imp:3s; +vivandier vivandier nom m s 0.10 0.34 0.10 0.00 +vivandiers vivandier nom m p 0.10 0.34 0.00 0.14 +vivandière vivandier nom f s 0.10 0.34 0.00 0.14 +vivandières vivandière nom f p 0.01 0.00 0.01 0.00 +vivant vivant adj m s 124.97 92.23 76.38 41.15 +vivante vivant adj f s 124.97 92.23 28.12 29.32 +vivantes vivant adj f p 124.97 92.23 3.31 6.35 +vivants vivant adj m p 124.97 92.23 17.16 15.41 +vivarium vivarium nom m s 0.03 0.41 0.03 0.41 +vivat vivat nom_sup m s 0.84 0.00 0.84 0.00 +vivats vivats nom m p 0.06 1.82 0.06 1.82 +vive vive ono 35.95 12.09 35.95 12.09 +vivement vivement adv 5.85 29.86 5.85 29.86 +vivent vivre ver 510.05 460.34 30.50 19.39 ind:pre:3p;sub:pre:3p; +vives vif adj f p 22.95 95.07 1.71 12.70 +viveur viveur nom m s 0.03 0.41 0.03 0.34 +viveurs viveur nom m p 0.03 0.41 0.00 0.07 +vivez vivre ver 510.05 460.34 15.09 2.84 imp:pre:2p;ind:pre:2p; +vivier vivier nom m s 0.10 1.42 0.07 1.15 +viviers vivier nom m p 0.10 1.42 0.02 0.27 +viviez vivre ver 510.05 460.34 1.94 0.74 ind:imp:2p; +vivifiait vivifier ver 0.22 1.15 0.02 0.14 ind:imp:3s; +vivifiant vivifiant adj m s 0.58 1.28 0.29 0.81 +vivifiante vivifiant adj f s 0.58 1.28 0.17 0.47 +vivifiantes vivifiant adj f p 0.58 1.28 0.10 0.00 +vivifiants vivifiant adj m p 0.58 1.28 0.01 0.00 +vivification vivification nom f s 0.01 0.00 0.01 0.00 +vivifie vivifier ver 0.22 1.15 0.01 0.07 ind:pre:3s; +vivifier vivifier ver 0.22 1.15 0.01 0.07 inf; +vivifié vivifier ver m s 0.22 1.15 0.11 0.14 par:pas; +vivifiée vivifier ver f s 0.22 1.15 0.01 0.34 par:pas; +vivifiées vivifier ver f p 0.22 1.15 0.02 0.14 par:pas; +vivions vivre ver 510.05 460.34 2.69 7.64 ind:imp:1p; +vivisecteur vivisecteur nom m s 0.04 0.00 0.04 0.00 +vivisection vivisection nom f s 0.34 0.41 0.34 0.14 +vivisections vivisection nom f p 0.34 0.41 0.00 0.27 +vivons vivre ver 510.05 460.34 12.40 7.64 imp:pre:1p;ind:pre:1p; +vivota vivoter ver 0.47 1.28 0.00 0.07 ind:pas:3s; +vivotaient vivoter ver 0.47 1.28 0.00 0.07 ind:imp:3p; +vivotais vivoter ver 0.47 1.28 0.01 0.07 ind:imp:1s; +vivotait vivoter ver 0.47 1.28 0.14 0.47 ind:imp:3s; +vivotant vivoter ver 0.47 1.28 0.00 0.14 par:pre; +vivote vivoter ver 0.47 1.28 0.27 0.20 ind:pre:1s;ind:pre:3s; +vivotent vivoter ver 0.47 1.28 0.00 0.07 ind:pre:3p; +vivoter vivoter ver 0.47 1.28 0.02 0.14 inf; +vivotèrent vivoter ver 0.47 1.28 0.00 0.07 ind:pas:3p; +vivoté vivoter ver m s 0.47 1.28 0.03 0.00 par:pas; +vivra vivre ver 510.05 460.34 7.86 2.64 ind:fut:3s; +vivrai vivre ver 510.05 460.34 5.25 1.62 ind:fut:1s; +vivraient vivre ver 510.05 460.34 0.65 0.68 cnd:pre:3p; +vivrais vivre ver 510.05 460.34 1.58 1.49 cnd:pre:1s;cnd:pre:2s; +vivrait vivre ver 510.05 460.34 2.56 3.38 cnd:pre:3s; +vivras vivre ver 510.05 460.34 3.84 0.27 ind:fut:2s; +vivre vivre ver 510.05 460.34 218.39 186.82 inf; +vivres vivre nom m p 12.61 10.34 7.37 6.89 +vivrez vivre ver 510.05 460.34 3.24 0.41 ind:fut:2p; +vivriers vivrier adj m p 0.00 0.07 0.00 0.07 +vivriez vivre ver 510.05 460.34 0.05 0.07 cnd:pre:2p; +vivrions vivre ver 510.05 460.34 0.32 0.00 cnd:pre:1p; +vivrons vivre ver 510.05 460.34 3.28 1.42 ind:fut:1p; +vivront vivre ver 510.05 460.34 1.22 0.41 ind:fut:3p; +vizir vizir nom m s 0.15 7.97 0.15 7.03 +vizirs vizir nom m p 0.15 7.97 0.00 0.95 +vlan vlan ono 1.05 3.18 1.05 3.18 +vlouf vlouf ono 0.00 0.54 0.00 0.54 +voïvodie voïvodie nom f s 0.40 0.00 0.27 0.00 +voïvodies voïvodie nom f p 0.40 0.00 0.14 0.00 +voûta voûter ver 0.18 5.54 0.00 0.20 ind:pas:3s; +voûtaient voûter ver 0.18 5.54 0.00 0.14 ind:imp:3p; +voûtait voûter ver 0.18 5.54 0.00 0.54 ind:imp:3s; +voûtant voûter ver 0.18 5.54 0.00 0.14 par:pre; +voûte voûte nom f s 2.21 27.09 1.71 18.85 +voûtent voûter ver 0.18 5.54 0.00 0.14 ind:pre:3p; +voûter voûter ver 0.18 5.54 0.01 0.34 inf; +voûtes voûte nom f p 2.21 27.09 0.50 8.24 +voûtât voûter ver 0.18 5.54 0.00 0.07 sub:imp:3s; +voûtèrent voûter ver 0.18 5.54 0.00 0.14 ind:pas:3p; +voûté voûté adj m s 0.41 11.82 0.35 6.89 +voûtée voûté adj f s 0.41 11.82 0.01 2.50 +voûtées voûté adj f p 0.41 11.82 0.01 1.42 +voûtés voûté adj m p 0.41 11.82 0.04 1.01 +vocable vocable nom m s 0.22 2.16 0.02 1.08 +vocables vocable nom m p 0.22 2.16 0.20 1.08 +vocabulaire vocabulaire nom m s 3.02 10.41 3.02 10.27 +vocabulaires vocabulaire nom m p 3.02 10.41 0.00 0.14 +vocal vocal adj m s 4.63 3.72 1.13 0.68 +vocale vocal adj f s 4.63 3.72 2.45 0.68 +vocalement vocalement adv 0.01 0.07 0.01 0.07 +vocales vocal adj f p 4.63 3.72 0.84 2.23 +vocalique vocalique adj f s 0.00 0.07 0.00 0.07 +vocalisait vocaliser ver 0.02 0.34 0.00 0.14 ind:imp:3s; +vocalisant vocaliser ver 0.02 0.34 0.01 0.07 par:pre; +vocalisation vocalisation nom f s 0.02 0.27 0.02 0.14 +vocalisations vocalisation nom f p 0.02 0.27 0.00 0.14 +vocalise vocalise nom f s 0.05 1.28 0.00 0.27 +vocaliser vocaliser ver 0.02 0.34 0.01 0.00 inf; +vocalises vocalise nom f p 0.05 1.28 0.05 1.01 +vocaliste vocaliste nom s 0.02 0.07 0.02 0.07 +vocatif vocatif nom m s 0.01 0.14 0.01 0.00 +vocatifs vocatif nom m p 0.01 0.14 0.00 0.14 +vocation vocation nom f s 9.26 22.84 8.87 21.82 +vocations vocation nom f p 9.26 22.84 0.39 1.01 +vocaux vocal adj m p 4.63 3.72 0.21 0.14 +vocifère vociférer ver 0.49 3.92 0.16 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vocifèrent vociférer ver 0.49 3.92 0.00 0.14 ind:pre:3p; +vociféra vociférer ver 0.49 3.92 0.00 0.54 ind:pas:3s; +vociférai vociférer ver 0.49 3.92 0.00 0.07 ind:pas:1s; +vociféraient vociférer ver 0.49 3.92 0.00 0.14 ind:imp:3p; +vociférais vociférer ver 0.49 3.92 0.00 0.14 ind:imp:1s; +vociférait vociférer ver 0.49 3.92 0.01 0.68 ind:imp:3s; +vociférant vociférant adj m s 0.14 0.95 0.14 0.34 +vociférante vociférant adj f s 0.14 0.95 0.00 0.14 +vociférantes vociférant adj f p 0.14 0.95 0.00 0.34 +vociférants vociférant adj m p 0.14 0.95 0.00 0.14 +vocifération vocifération nom f s 0.02 2.03 0.00 0.14 +vociférations vocifération nom f p 0.02 2.03 0.02 1.89 +vociférer vociférer ver 0.49 3.92 0.29 0.54 inf; +vociférés vociférer ver m p 0.49 3.92 0.00 0.07 par:pas; +vocodeur vocodeur nom m s 0.01 0.00 0.01 0.00 +vodka vodka nom f s 17.07 8.31 16.93 8.24 +vodkas vodka nom f p 17.07 8.31 0.14 0.07 +vodou vodou nom m s 0.04 0.00 0.03 0.00 +vodous vodou nom m p 0.04 0.00 0.01 0.00 +voeu voeu nom m s 28.58 21.28 10.72 10.61 +voeux voeu nom m p 28.58 21.28 17.86 10.68 +vogua voguer ver 2.69 6.35 0.14 0.07 ind:pas:3s; +voguaient voguer ver 2.69 6.35 0.00 0.14 ind:imp:3p; +voguais voguer ver 2.69 6.35 0.02 0.00 ind:imp:1s;ind:imp:2s; +voguait voguer ver 2.69 6.35 0.28 1.35 ind:imp:3s; +voguant voguer ver 2.69 6.35 0.13 0.54 par:pre; +vogue vogue nom f s 2.43 3.58 2.43 3.51 +voguent voguer ver 2.69 6.35 0.26 0.61 ind:pre:3p;sub:pre:3p; +voguer voguer ver 2.69 6.35 1.18 1.15 inf; +voguera voguer ver 2.69 6.35 0.03 0.07 ind:fut:3s; +voguerai voguer ver 2.69 6.35 0.04 0.00 ind:fut:1s; +voguerait voguer ver 2.69 6.35 0.00 0.07 cnd:pre:3s; +voguerions voguer ver 2.69 6.35 0.00 0.07 cnd:pre:1p; +voguerons voguer ver 2.69 6.35 0.12 0.07 ind:fut:1p; +vogues voguer ver 2.69 6.35 0.01 0.07 ind:pre:2s; +voguions voguer ver 2.69 6.35 0.01 0.41 ind:imp:1p; +voguons voguer ver 2.69 6.35 0.09 0.14 imp:pre:1p;ind:pre:1p; +vogué voguer ver m s 2.69 6.35 0.02 0.34 par:pas; +voici voici pre 277.59 97.30 277.59 97.30 +voie voie nom f s 56.06 71.01 47.01 53.58 +voient voir ver 4119.49 2401.76 26.16 20.20 ind:pre:3p;sub:pre:3p; +voies voie nom f p 56.06 71.01 9.05 17.43 +voila voiler ver 39.65 14.73 35.54 1.35 ind:pas:3s; +voilage voilage nom m s 0.00 0.74 0.00 0.27 +voilages voilage nom m p 0.00 0.74 0.00 0.47 +voilaient voiler ver 39.65 14.73 0.00 0.88 ind:imp:3p; +voilais voiler ver 39.65 14.73 0.02 0.07 ind:imp:1s; +voilait voiler ver 39.65 14.73 0.02 1.69 ind:imp:3s; +voilant voiler ver 39.65 14.73 0.00 0.74 par:pre; +voile voile nom s 20.51 48.31 15.49 30.27 +voilent voiler ver 39.65 14.73 0.13 0.47 ind:pre:3p; +voiler voiler ver 39.65 14.73 0.68 1.42 inf; +voilera voiler ver 39.65 14.73 0.14 0.00 ind:fut:3s; +voileront voiler ver 39.65 14.73 0.01 0.00 ind:fut:3p; +voiles voile nom p 20.51 48.31 5.02 18.04 +voilette voilette nom f s 0.06 2.97 0.05 2.57 +voilettes voilette nom f p 0.06 2.97 0.01 0.41 +voilez voiler ver 39.65 14.73 0.08 0.07 imp:pre:2p;ind:pre:2p; +voilier voilier nom m s 1.94 4.86 1.67 2.77 +voiliers voilier nom m p 1.94 4.86 0.27 2.09 +voilà voilà pre 726.44 329.12 726.44 329.12 +voilons voiler ver 39.65 14.73 0.06 0.14 imp:pre:1p;ind:pre:1p; +voilèrent voiler ver 39.65 14.73 0.00 0.07 ind:pas:3p; +voilé voiler ver m s 39.65 14.73 0.30 2.09 par:pas; +voilée voilé adj f s 1.50 6.08 0.90 2.30 +voilées voilé adj f p 1.50 6.08 0.10 1.28 +voilure voilure nom f s 0.17 0.74 0.16 0.47 +voilures voilure nom f p 0.17 0.74 0.01 0.27 +voilés voilé adj m p 1.50 6.08 0.31 0.95 +voir voir ver 4119.49 2401.76 1401.10 716.55 ind:imp:3s;inf; +voire voire adv_sup 7.42 16.89 7.42 16.89 +voirie voirie nom f s 0.77 1.22 0.77 1.22 +vois voir ver 4119.49 2401.76 689.75 253.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +voisin voisin nom m s 56.00 81.82 19.55 28.85 +voisinage voisinage nom m s 5.17 10.41 5.16 10.34 +voisinages voisinage nom m p 5.17 10.41 0.01 0.07 +voisinaient voisiner ver 0.04 3.31 0.00 1.08 ind:imp:3p; +voisinait voisiner ver 0.04 3.31 0.00 0.47 ind:imp:3s; +voisinant voisiner ver 0.04 3.31 0.00 0.41 par:pre; +voisine voisin nom f s 56.00 81.82 10.92 15.07 +voisinent voisiner ver 0.04 3.31 0.01 0.61 ind:pre:3p; +voisiner voisiner ver 0.04 3.31 0.01 0.34 inf; +voisines voisin adj f p 14.31 49.73 1.67 5.54 +voisins voisin nom m p 56.00 81.82 24.33 33.31 +voisiné voisiner ver m s 0.04 3.31 0.01 0.00 par:pas; +voit voir ver 4119.49 2401.76 181.98 158.78 ind:pre:3s; +voituraient voiturer ver 2.05 0.88 0.00 0.07 ind:imp:3p; +voiturait voiturer ver 2.05 0.88 0.00 0.07 ind:imp:3s; +voiture_balai voiture_balai nom f s 0.23 0.07 0.23 0.00 +voiture_bar voiture_bar nom f s 0.01 0.00 0.01 0.00 +voiture_lit voiture_lit nom f s 0.01 0.00 0.01 0.00 +voiture_restaurant voiture_restaurant nom f s 0.05 0.00 0.05 0.00 +voiture voiture nom s 429.40 283.11 388.87 221.15 +voiturer voiturer ver 2.05 0.88 0.02 0.14 inf; +voitureront voiturer ver 2.05 0.88 0.00 0.07 ind:fut:3p; +voiture_balai voiture_balai nom f p 0.23 0.07 0.00 0.07 +voitures voiture nom f p 429.40 283.11 40.53 61.96 +voiturette voiturette nom f s 0.38 0.74 0.35 0.34 +voiturettes voiturette nom f p 0.38 0.74 0.02 0.41 +voiturier voiturier nom m s 0.86 0.47 0.70 0.47 +voituriers voiturier nom m p 0.86 0.47 0.16 0.00 +voiturin voiturin nom m s 0.00 0.07 0.00 0.07 +voituré voiturer ver m s 2.05 0.88 0.00 0.07 par:pas; +voix_off voix_off nom f 0.04 0.00 0.04 0.00 +voix voix nom f 130.83 612.70 130.83 612.70 +vol_au_vent vol_au_vent nom m 0.02 0.14 0.02 0.14 +vol vol nom m s 82.42 48.31 74.14 41.22 +vola voler ver 238.82 88.65 0.93 1.96 ind:pas:3s; +volage volage adj s 1.79 1.62 1.69 1.62 +volages volage adj p 1.79 1.62 0.10 0.00 +volai voler ver 238.82 88.65 0.14 0.27 ind:pas:1s; +volaient voler ver 238.82 88.65 1.14 5.20 ind:imp:3p; +volaille volaille nom f s 2.61 6.49 2.31 3.45 +volailler volailler nom m s 0.02 0.20 0.02 0.07 +volaillers volailler nom m p 0.02 0.20 0.00 0.14 +volailles volaille nom f p 2.61 6.49 0.30 3.04 +volais voler ver 238.82 88.65 2.02 1.08 ind:imp:1s;ind:imp:2s; +volait voler ver 238.82 88.65 4.45 5.95 ind:imp:3s; +volant volant nom m s 19.65 37.30 19.23 33.51 +volante volant adj f s 8.78 9.66 2.81 1.62 +volantes volant adj f p 8.78 9.66 1.24 1.96 +volants volant adj m p 8.78 9.66 2.47 2.03 +volanté volanter ver m s 0.05 0.14 0.00 0.07 par:pas; +volapük volapük nom m s 0.00 0.07 0.00 0.07 +volassent voler ver 238.82 88.65 0.00 0.07 sub:imp:3p; +volatil volatil adj m s 0.64 1.49 0.06 0.34 +volatile volatil adj f s 0.64 1.49 0.49 0.61 +volatiles volatile nom m p 0.47 2.57 0.30 1.22 +volatilisa volatiliser ver 2.00 2.97 0.00 0.14 ind:pas:3s; +volatilisaient volatiliser ver 2.00 2.97 0.00 0.14 ind:imp:3p; +volatilisait volatiliser ver 2.00 2.97 0.02 0.14 ind:imp:3s; +volatilisant volatiliser ver 2.00 2.97 0.00 0.07 par:pre; +volatilisation volatilisation nom f s 0.01 0.00 0.01 0.00 +volatilise volatiliser ver 2.00 2.97 0.07 0.14 imp:pre:2s;ind:pre:3s; +volatilisent volatiliser ver 2.00 2.97 0.05 0.14 ind:pre:3p; +volatiliser volatiliser ver 2.00 2.97 0.13 0.27 inf; +volatilisé volatiliser ver m s 2.00 2.97 0.95 0.68 par:pas; +volatilisée volatiliser ver f s 2.00 2.97 0.56 0.54 par:pas; +volatilisées volatiliser ver f p 2.00 2.97 0.02 0.20 par:pas; +volatilisés volatiliser ver m p 2.00 2.97 0.20 0.54 par:pas; +volatilité volatilité nom f s 0.04 0.00 0.04 0.00 +volatils volatil adj m p 0.64 1.49 0.01 0.20 +volcan volcan nom m s 5.50 5.34 4.52 3.85 +volcanique volcanique adj s 0.91 1.69 0.69 1.15 +volcaniques volcanique adj p 0.91 1.69 0.22 0.54 +volcanologique volcanologique adj m s 0.01 0.00 0.01 0.00 +volcanologue volcanologue nom s 0.02 0.00 0.02 0.00 +volcans volcan nom m p 5.50 5.34 0.98 1.49 +vole voler ver 238.82 88.65 35.31 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +volent voler ver 238.82 88.65 9.53 5.61 ind:pre:3p; +voler voler ver 238.82 88.65 67.88 26.01 inf; +volera voler ver 238.82 88.65 2.68 0.47 ind:fut:3s; +volerai voler ver 238.82 88.65 1.00 0.07 ind:fut:1s; +voleraient voler ver 238.82 88.65 0.07 0.07 cnd:pre:3p; +volerais voler ver 238.82 88.65 0.44 0.07 cnd:pre:1s;cnd:pre:2s; +volerait voler ver 238.82 88.65 0.94 0.68 cnd:pre:3s; +voleras voler ver 238.82 88.65 0.57 0.00 ind:fut:2s; +volerez voler ver 238.82 88.65 0.25 0.07 ind:fut:2p; +volerie volerie nom f s 0.01 0.00 0.01 0.00 +voleriez voler ver 238.82 88.65 0.05 0.00 cnd:pre:2p; +volerons voler ver 238.82 88.65 0.50 0.00 ind:fut:1p; +voleront voler ver 238.82 88.65 0.89 0.34 ind:fut:3p; +voles voler ver 238.82 88.65 4.82 0.68 ind:pre:2s;sub:pre:2s; +volet volet nom m s 5.93 41.55 2.21 6.89 +voleta voleter ver 0.45 7.23 0.00 0.20 ind:pas:3s; +voletaient voleter ver 0.45 7.23 0.01 1.82 ind:imp:3p; +voletait voleter ver 0.45 7.23 0.00 1.22 ind:imp:3s; +voletant voleter ver 0.45 7.23 0.03 1.42 par:pre; +voletante voletant adj f s 0.01 0.81 0.00 0.27 +voletantes voletant adj f p 0.01 0.81 0.00 0.20 +voleter voleter ver 0.45 7.23 0.14 1.35 inf; +voletez voleter ver 0.45 7.23 0.02 0.00 imp:pre:2p; +volets volet nom m p 5.93 41.55 3.72 34.66 +volette voleter ver 0.45 7.23 0.14 0.54 ind:pre:1s;ind:pre:3s; +volettent voleter ver 0.45 7.23 0.10 0.68 ind:pre:3p; +voleur voleur nom m s 68.01 22.70 41.39 11.15 +voleurs voleur nom m p 68.01 22.70 21.91 9.86 +voleuse voleur nom f s 68.01 22.70 4.71 1.55 +voleuses voleuse nom f p 0.17 0.00 0.17 0.00 +volez voler ver 238.82 88.65 3.59 0.27 imp:pre:2p;ind:pre:2p; +voliez voler ver 238.82 88.65 0.65 0.07 ind:imp:2p; +volige volige nom f s 0.01 0.54 0.00 0.14 +voliges volige nom f p 0.01 0.54 0.01 0.41 +volions voler ver 238.82 88.65 0.19 0.14 ind:imp:1p; +volière volière nom f s 0.36 3.24 0.34 2.97 +volières volière nom f p 0.36 3.24 0.02 0.27 +volition volition nom f s 0.00 0.27 0.00 0.14 +volitions volition nom f p 0.00 0.27 0.00 0.14 +volley_ball volley_ball nom m s 0.25 0.68 0.25 0.68 +volley volley nom m s 1.51 0.07 1.51 0.07 +volleyeur volleyeur nom m s 0.14 0.14 0.14 0.07 +volleyeurs volleyeur nom m p 0.14 0.14 0.00 0.07 +volons voler ver 238.82 88.65 0.79 0.20 imp:pre:1p;ind:pre:1p; +volontaire volontaire adj s 14.48 13.99 11.54 10.74 +volontairement volontairement adv 3.59 9.12 3.59 9.12 +volontaires volontaire nom p 8.03 6.28 5.05 5.27 +volontariat volontariat nom m s 0.60 0.20 0.60 0.20 +volontarisme volontarisme nom m s 0.00 0.14 0.00 0.14 +volontariste volontariste adj s 0.00 0.20 0.00 0.14 +volontaristes volontariste adj p 0.00 0.20 0.00 0.07 +volontiers volontiers adv_sup 19.41 40.61 19.41 40.61 +volonté volonté nom f s 47.08 74.93 44.41 70.54 +volontés volonté nom f p 47.08 74.93 2.67 4.39 +volât voler ver 238.82 88.65 0.00 0.14 sub:imp:3s; +vols vol nom m p 82.42 48.31 8.28 7.09 +volt volt nom m s 2.00 0.27 0.40 0.00 +voltaïque voltaïque adj f s 0.01 0.00 0.01 0.00 +voltage voltage nom m s 0.41 0.34 0.41 0.34 +voltaient volter ver 0.01 0.14 0.00 0.07 ind:imp:3p; +voltaire voltaire nom m s 0.00 0.14 0.00 0.07 +voltaires voltaire nom m p 0.00 0.14 0.00 0.07 +voltairien voltairien adj m s 0.01 0.00 0.01 0.00 +volte_face volte_face nom f 0.26 3.31 0.26 3.31 +volte volte nom f s 0.67 1.35 0.67 0.74 +volter volter ver 0.01 0.14 0.01 0.07 inf; +voltes volte nom f p 0.67 1.35 0.00 0.61 +volèrent voler ver 238.82 88.65 0.04 0.68 ind:pas:3p; +voltige voltige nom f s 0.45 2.09 0.45 1.96 +voltigea voltiger ver 1.40 4.46 0.00 0.27 ind:pas:3s; +voltigeaient voltiger ver 1.40 4.46 0.00 1.28 ind:imp:3p; +voltigeait voltiger ver 1.40 4.46 0.00 0.07 ind:imp:3s; +voltigeant voltiger ver 1.40 4.46 0.14 0.68 par:pre; +voltigement voltigement nom m s 0.00 0.07 0.00 0.07 +voltigent voltiger ver 1.40 4.46 0.81 0.47 ind:pre:3p; +voltiger voltiger ver 1.40 4.46 0.21 0.95 inf; +voltiges voltige nom f p 0.45 2.09 0.00 0.14 +voltigeur voltigeur nom m s 0.15 5.00 0.14 2.09 +voltigeurs voltigeur nom m p 0.15 5.00 0.01 2.91 +voltigèrent voltiger ver 1.40 4.46 0.00 0.34 ind:pas:3p; +voltigé voltiger ver m s 1.40 4.46 0.03 0.07 par:pas; +voltmètre voltmètre nom m s 0.23 0.07 0.23 0.07 +volts volt nom m p 2.00 0.27 1.60 0.27 +volé voler ver m s 238.82 88.65 79.01 19.26 par:pas; +volubile volubile adj s 0.07 4.73 0.05 3.72 +volubilement volubilement adv 0.00 0.74 0.00 0.74 +volubiles volubile adj p 0.07 4.73 0.02 1.01 +volubilis volubilis nom m 0.00 1.35 0.00 1.35 +volubilité volubilité nom f s 0.00 1.55 0.00 1.55 +volée voler ver f s 238.82 88.65 10.14 2.23 par:pas; +volées voler ver f p 238.82 88.65 2.24 0.81 par:pas; +volume volume nom m s 6.48 27.84 5.45 16.35 +volumes volume nom m p 6.48 27.84 1.03 11.49 +volémie volémie nom f s 0.01 0.00 0.01 0.00 +volumineuse volumineux adj f s 0.37 5.41 0.04 1.55 +volumineuses volumineux adj f p 0.37 5.41 0.10 0.47 +volumineux volumineux adj m 0.37 5.41 0.22 3.38 +volumique volumique adj f s 0.01 0.00 0.01 0.00 +volumétrique volumétrique adj s 0.02 0.00 0.02 0.00 +volupté volupté nom f s 3.27 11.42 3.27 10.20 +voluptueuse voluptueux adj f s 0.62 7.36 0.41 1.96 +voluptueusement voluptueusement adv 0.01 3.11 0.01 3.11 +voluptueuses voluptueux adj f p 0.62 7.36 0.11 0.95 +voluptueux voluptueux adj m 0.62 7.36 0.10 4.46 +voluptés volupté nom f p 3.27 11.42 0.00 1.22 +volés voler ver m p 238.82 88.65 4.93 2.09 par:pas; +volute volute nom f s 0.03 6.69 0.00 0.41 +volutes volute nom f p 0.03 6.69 0.03 6.28 +volvaires volvaire nom f p 0.00 0.07 0.00 0.07 +volve volve nom f s 0.01 0.07 0.01 0.07 +vomi vomir ver m s 26.12 23.31 5.19 2.70 par:pas; +vomie vomir ver f s 26.12 23.31 0.24 0.27 par:pas; +vomies vomir ver f p 26.12 23.31 0.14 0.14 par:pas; +vomique vomique adj m s 0.00 0.07 0.00 0.07 +vomir vomir ver 26.12 23.31 13.75 11.62 inf; +vomira vomir ver 26.12 23.31 0.09 0.14 ind:fut:3s; +vomirai vomir ver 26.12 23.31 0.05 0.00 ind:fut:1s; +vomirais vomir ver 26.12 23.31 0.18 0.07 cnd:pre:1s; +vomirait vomir ver 26.12 23.31 0.03 0.14 cnd:pre:3s; +vomiras vomir ver 26.12 23.31 0.03 0.07 ind:fut:2s; +vomirent vomir ver 26.12 23.31 0.00 0.07 ind:pas:3p; +vomirez vomir ver 26.12 23.31 0.04 0.00 ind:fut:2p; +vomiront vomir ver 26.12 23.31 0.01 0.07 ind:fut:3p; +vomis vomir ver m p 26.12 23.31 1.94 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +vomissaient vomir ver 26.12 23.31 0.28 0.41 ind:imp:3p; +vomissais vomir ver 26.12 23.31 0.06 0.27 ind:imp:1s;ind:imp:2s; +vomissait vomir ver 26.12 23.31 0.33 2.30 ind:imp:3s; +vomissant vomir ver 26.12 23.31 0.11 0.81 par:pre; +vomisse vomir ver 26.12 23.31 0.43 0.34 sub:pre:1s;sub:pre:3s; +vomissement vomissement nom m s 1.31 1.55 0.44 0.61 +vomissements vomissement nom m p 1.31 1.55 0.88 0.95 +vomissent vomir ver 26.12 23.31 0.61 0.20 ind:pre:3p; +vomisseur vomisseur adj m s 0.03 0.07 0.03 0.07 +vomissez vomir ver 26.12 23.31 0.16 0.07 imp:pre:2p;ind:pre:2p; +vomissions vomir ver 26.12 23.31 0.00 0.14 ind:imp:1p; +vomissure vomissure nom f s 0.53 1.15 0.20 0.34 +vomissures vomissure nom f p 0.53 1.15 0.33 0.81 +vomit vomir ver 26.12 23.31 2.45 2.64 ind:pre:3s;ind:pas:3s; +vomitif vomitif adj m s 0.05 0.27 0.05 0.07 +vomitifs vomitif adj m p 0.05 0.27 0.00 0.07 +vomitifs vomitif nom m p 0.04 0.27 0.00 0.07 +vomitives vomitif adj f p 0.05 0.27 0.00 0.14 +vomito_negro vomito_negro nom m s 0.01 0.00 0.01 0.00 +vomitoire vomitoire nom m s 0.03 0.07 0.02 0.00 +vomitoires vomitoire nom m p 0.03 0.07 0.01 0.07 +vont aller ver 9992.78 2854.93 281.35 116.62 ind:pre:3p; +vopo vopo nom m s 0.00 0.07 0.00 0.07 +vorace vorace adj s 0.95 4.19 0.56 2.64 +voracement voracement adv 0.03 0.81 0.03 0.81 +voraces vorace adj p 0.95 4.19 0.38 1.55 +voracité voracité nom f s 0.07 1.69 0.07 1.69 +vortex vortex nom m 6.14 0.14 6.14 0.14 +vos vos adj_pos 649.07 180.27 649.07 180.27 +vosgien vosgien nom m s 0.00 0.14 0.00 0.14 +vosgienne vosgien adj f s 0.00 0.14 0.00 0.14 +vota voter ver 29.61 8.51 0.00 0.27 ind:pas:3s; +votaient voter ver 29.61 8.51 0.10 0.41 ind:imp:3p; +votais voter ver 29.61 8.51 0.02 0.00 ind:imp:1s; +votait voter ver 29.61 8.51 0.28 0.34 ind:imp:3s; +votant voter ver 29.61 8.51 0.20 0.07 par:pre; +votants votant nom m p 0.17 0.20 0.15 0.20 +vote vote nom m s 15.04 4.46 11.62 3.72 +votent voter ver 29.61 8.51 1.48 0.41 ind:pre:3p; +voter voter ver 29.61 8.51 7.96 2.64 inf; +votera voter ver 29.61 8.51 0.67 0.14 ind:fut:3s; +voterai voter ver 29.61 8.51 0.43 0.00 ind:fut:1s; +voterais voter ver 29.61 8.51 0.20 0.00 cnd:pre:1s;cnd:pre:2s; +voterait voter ver 29.61 8.51 0.21 0.00 cnd:pre:3s; +voteras voter ver 29.61 8.51 0.02 0.00 ind:fut:2s; +voterez voter ver 29.61 8.51 0.12 0.14 ind:fut:2p; +voterons voter ver 29.61 8.51 0.17 0.07 ind:fut:1p; +voteront voter ver 29.61 8.51 0.34 0.00 ind:fut:3p; +votes vote nom m p 15.04 4.46 3.42 0.74 +votez voter ver 29.61 8.51 3.66 0.00 imp:pre:2p;ind:pre:2p; +votiez voter ver 29.61 8.51 0.02 0.00 ind:imp:2p; +votif votif adj m s 0.13 0.81 0.01 0.00 +votifs votif adj m p 0.13 0.81 0.00 0.07 +votions voter ver 29.61 8.51 0.03 0.07 ind:imp:1p; +votive votif adj f s 0.13 0.81 0.11 0.34 +votives votif adj f p 0.13 0.81 0.01 0.41 +votons voter ver 29.61 8.51 0.95 0.00 imp:pre:1p;ind:pre:1p; +votre votre pro_pos s 0.32 0.00 0.32 0.00 +votèrent voter ver 29.61 8.51 0.02 0.00 ind:pas:3p; +voté voter ver m s 29.61 8.51 7.11 1.76 par:pas; +votée voter ver f s 29.61 8.51 0.90 0.34 par:pas; +votées voter ver f p 29.61 8.51 0.03 0.07 par:pas; +votés voter ver m p 29.61 8.51 0.01 0.20 par:pas; +voua vouer ver 6.88 18.92 0.03 0.41 ind:pas:3s; +vouai vouer ver 6.88 18.92 0.00 0.07 ind:pas:1s; +vouaient vouer ver 6.88 18.92 0.17 0.41 ind:imp:3p; +vouais vouer ver 6.88 18.92 0.71 0.41 ind:imp:1s;ind:imp:2s; +vouait vouer ver 6.88 18.92 0.15 1.82 ind:imp:3s; +vouant vouer ver 6.88 18.92 0.01 0.14 par:pre; +voudra vouloir ver_sup 5249.31 1640.14 21.62 12.03 ind:fut:3s; +voudrai vouloir ver_sup 5249.31 1640.14 4.06 1.62 ind:fut:1s; +voudraient vouloir ver_sup 5249.31 1640.14 6.02 6.42 cnd:pre:3p; +voudrais vouloir ver_sup 5249.31 1640.14 194.56 92.09 cnd:pre:1s;cnd:pre:2s; +voudrait vouloir ver_sup 5249.31 1640.14 44.48 43.45 cnd:pre:3s; +voudras vouloir ver_sup 5249.31 1640.14 26.03 10.27 ind:fut:2s; +voudrez vouloir ver_sup 5249.31 1640.14 19.77 10.41 ind:fut:2p; +voudriez vouloir ver_sup 5249.31 1640.14 19.29 4.19 cnd:pre:2p; +voudrions vouloir ver_sup 5249.31 1640.14 5.14 1.82 cnd:pre:1p; +voudrons vouloir ver_sup 5249.31 1640.14 0.32 0.27 ind:fut:1p; +voudront vouloir ver_sup 5249.31 1640.14 6.93 3.38 ind:fut:3p; +voue vouer ver 6.88 18.92 0.51 0.95 ind:pre:1s;ind:pre:3s; +vouent vouer ver 6.88 18.92 0.25 0.07 ind:pre:3p; +vouer vouer ver 6.88 18.92 0.42 2.43 inf;;inf;;inf;; +vouera vouer ver 6.88 18.92 0.01 0.07 ind:fut:3s; +vouerait vouer ver 6.88 18.92 0.00 0.07 cnd:pre:3s; +vouge vouge nom f s 0.01 0.14 0.01 0.14 +vouivre vouivre nom f s 0.00 3.18 0.00 3.04 +vouivres vouivre nom f p 0.00 3.18 0.00 0.14 +voulûmes vouloir ver_sup 5249.31 1640.14 0.00 0.07 ind:pas:1p; +voulût vouloir ver_sup 5249.31 1640.14 0.00 3.72 sub:imp:3s; +voulaient vouloir ver_sup 5249.31 1640.14 28.88 30.20 ind:imp:3p; +voulais vouloir ver_sup 5249.31 1640.14 415.76 107.30 ind:imp:1s;ind:imp:2s; +voulait vouloir ver_sup 5249.31 1640.14 192.15 225.34 ind:imp:3s; +voulant vouloir ver_sup 5249.31 1640.14 4.28 18.45 par:pre; +voulez vouloir ver_sup 5249.31 1640.14 553.40 113.58 imp:pre:2p;ind:pre:2p; +vouliez vouloir ver_sup 5249.31 1640.14 43.78 5.81 ind:imp:2p;sub:pre:2p; +voulions vouloir ver_sup 5249.31 1640.14 9.07 6.08 ind:imp:1p;sub:pre:1p; +vouloir vouloir ver_sup 5249.31 1640.14 63.87 62.97 inf; +vouloirs vouloir nom_sup m p 1.28 2.57 0.00 0.14 +voulons vouloir ver_sup 5249.31 1640.14 40.38 9.53 imp:pre:1p;ind:pre:1p; +voulu vouloir ver_sup m s 5249.31 1640.14 151.04 174.19 par:pas; +voulue vouloir ver_sup f s 5249.31 1640.14 0.91 2.70 par:pas; +voulues voulu adj f p 4.42 9.12 0.18 0.68 +voulurent vouloir ver_sup 5249.31 1640.14 0.40 2.30 ind:pas:3p; +voulus vouloir ver_sup m p 5249.31 1640.14 0.36 6.22 ind:pas:1s;par:pas; +voulusse vouloir ver_sup 5249.31 1640.14 0.00 0.34 sub:imp:1s; +voulussent vouloir ver_sup 5249.31 1640.14 0.00 0.41 sub:imp:3p; +voulut vouloir ver_sup 5249.31 1640.14 2.42 36.89 ind:pas:3s; +vouons vouer ver 6.88 18.92 0.31 0.14 imp:pre:1p;ind:pre:1p; +vous_même vous_même pro_per p 28.20 17.84 28.20 17.84 +vous_mêmes vous_mêmes pro_per p 4.30 1.55 4.30 1.55 +vous vous pro_per p 13589.70 3507.16 13589.70 3507.16 +vousoyait vousoyer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +vousoyez vousoyer ver 0.00 0.14 0.00 0.07 ind:pre:2p; +voussoie voussoyer ver 0.02 0.47 0.00 0.07 ind:pre:3s; +voussoiement voussoiement nom m s 0.00 0.34 0.00 0.34 +voussoient voussoyer ver 0.02 0.47 0.00 0.07 ind:pre:3p; +voussoyait voussoyer ver 0.02 0.47 0.00 0.14 ind:imp:3s; +voussoyer voussoyer ver 0.02 0.47 0.00 0.20 inf; +voussoyez voussoyer ver 0.02 0.47 0.02 0.00 imp:pre:2p; +voussure voussure nom f s 0.00 0.81 0.00 0.54 +voussures voussure nom f p 0.00 0.81 0.00 0.27 +vouèrent vouer ver 6.88 18.92 0.00 0.07 ind:pas:3p; +voué vouer ver m s 6.88 18.92 2.47 5.14 par:pas; +vouée vouer ver f s 6.88 18.92 1.42 4.12 par:pas; +vouées vouer ver f p 6.88 18.92 0.14 0.81 par:pas; +voués vouer ver m p 6.88 18.92 0.27 1.82 par:pas; +vouvoie vouvoyer ver 0.79 1.35 0.27 0.14 imp:pre:2s;ind:pre:3s; +vouvoiement vouvoiement nom m s 0.00 0.47 0.00 0.41 +vouvoiements vouvoiement nom m p 0.00 0.47 0.00 0.07 +vouvoient vouvoyer ver 0.79 1.35 0.00 0.07 ind:pre:3p; +vouvoies vouvoyer ver 0.79 1.35 0.02 0.07 ind:pre:2s; +vouvoya vouvoyer ver 0.79 1.35 0.00 0.07 ind:pas:3s; +vouvoyait vouvoyer ver 0.79 1.35 0.01 0.81 ind:imp:3s; +vouvoyant vouvoyer ver 0.79 1.35 0.00 0.14 par:pre; +vouvoyer vouvoyer ver 0.79 1.35 0.49 0.07 inf; +vouvray vouvray nom m s 0.00 0.07 0.00 0.07 +vox_populi vox_populi nom f 0.05 0.27 0.05 0.27 +voyage voyage nom m s 123.17 140.07 112.19 110.54 +voyagea voyager ver 45.74 27.50 0.06 0.54 ind:pas:3s; +voyageaient voyager ver 45.74 27.50 0.30 1.49 ind:imp:3p; +voyageais voyager ver 45.74 27.50 0.62 0.47 ind:imp:1s;ind:imp:2s; +voyageait voyager ver 45.74 27.50 1.27 2.91 ind:imp:3s; +voyageant voyager ver 45.74 27.50 0.71 0.54 par:pre; +voyagent voyager ver 45.74 27.50 1.71 1.22 ind:pre:3p; +voyageons voyager ver 45.74 27.50 0.62 0.27 imp:pre:1p;ind:pre:1p; +voyager voyager ver 45.74 27.50 19.45 9.19 inf; +voyagera voyager ver 45.74 27.50 0.41 0.00 ind:fut:3s; +voyagerai voyager ver 45.74 27.50 0.16 0.07 ind:fut:1s; +voyagerais voyager ver 45.74 27.50 0.08 0.07 cnd:pre:1s; +voyagerait voyager ver 45.74 27.50 0.22 0.27 cnd:pre:3s; +voyageras voyager ver 45.74 27.50 0.28 0.07 ind:fut:2s; +voyagerez voyager ver 45.74 27.50 0.07 0.00 ind:fut:2p; +voyageriez voyager ver 45.74 27.50 0.02 0.00 cnd:pre:2p; +voyagerons voyager ver 45.74 27.50 0.24 0.07 ind:fut:1p; +voyageront voyager ver 45.74 27.50 0.02 0.00 ind:fut:3p; +voyage_éclair voyage_éclair nom m p 0.00 0.07 0.00 0.07 +voyages voyage nom m p 123.17 140.07 10.98 29.53 +voyageur voyageur nom m s 8.11 43.38 3.17 20.88 +voyageurs voyageur nom m p 8.11 43.38 4.68 20.74 +voyageuse voyageur nom f s 8.11 43.38 0.26 1.08 +voyageuses voyageur nom f p 8.11 43.38 0.00 0.68 +voyagez voyager ver 45.74 27.50 1.69 0.14 imp:pre:2p;ind:pre:2p; +voyagiez voyager ver 45.74 27.50 0.28 0.00 ind:imp:2p; +voyagions voyager ver 45.74 27.50 0.34 0.34 ind:imp:1p; +voyagèrent voyager ver 45.74 27.50 0.01 0.14 ind:pas:3p; +voyagé voyager ver m s 45.74 27.50 5.90 4.93 par:pas; +voyaient voir ver 4119.49 2401.76 3.03 21.35 ind:imp:3p; +voyais voir ver 4119.49 2401.76 31.14 90.27 ind:imp:1s;ind:imp:2s; +voyait voir ver 4119.49 2401.76 25.32 180.95 ind:imp:3s; +voyance voyance nom f s 0.71 0.74 0.71 0.68 +voyances voyance nom f p 0.71 0.74 0.00 0.07 +voyant voir ver 4119.49 2401.76 17.16 42.64 par:pre; +voyante voyant nom f s 4.25 8.65 1.60 2.57 +voyantes voyant adj f p 3.55 8.58 0.22 0.88 +voyants voyant nom m p 4.25 8.65 0.56 1.89 +voyelle voyelle nom f s 0.71 1.76 0.36 0.47 +voyelles voyelle nom f p 0.71 1.76 0.35 1.28 +voyer voyer nom m s 0.16 0.00 0.16 0.00 +voyeur voyeur nom m s 3.71 4.26 2.94 2.77 +voyeurisme voyeurisme nom m s 0.13 0.34 0.13 0.34 +voyeurs voyeur nom m p 3.71 4.26 0.76 1.35 +voyeuse voyeur nom f s 3.71 4.26 0.02 0.14 +voyez voir ver 4119.49 2401.76 191.63 83.65 imp:pre:2p;ind:pre:2p; +voyiez voir ver 4119.49 2401.76 4.47 1.96 ind:imp:2p;sub:pre:2p; +voyions voir ver 4119.49 2401.76 0.88 4.80 ind:imp:1p; +voyons voir ver 4119.49 2401.76 127.93 44.80 imp:pre:1p;ind:pre:1p; +voyou voyou nom m s 21.09 25.07 11.69 14.59 +voyoucratie voyoucratie nom f s 0.00 0.27 0.00 0.27 +voyous voyou nom m p 21.09 25.07 9.41 10.47 +voyoute voyoute adj f s 0.00 0.47 0.00 0.27 +voyouterie voyouterie nom f s 0.00 0.34 0.00 0.34 +voyoutes voyoute adj f p 0.00 0.47 0.00 0.20 +voyoutisme voyoutisme nom m s 0.00 0.07 0.00 0.07 +vrac vrac nom m s 1.17 5.20 1.17 5.20 +vrai_faux vrai_faux adj m s 0.00 0.07 0.00 0.07 +vrai vrai adj m s 807.03 430.07 678.47 311.89 +vraie vrai adj f s 807.03 430.07 83.64 77.57 +vraies vrai adj f p 807.03 430.07 13.91 16.76 +vraiment vraiment adv 968.57 274.32 968.57 274.32 +vrais vrai adj m p 807.03 430.07 31.01 23.85 +vraisemblable vraisemblable adj s 0.89 5.74 0.89 5.54 +vraisemblablement vraisemblablement adv 1.39 5.68 1.39 5.68 +vraisemblables vraisemblable adj m p 0.89 5.74 0.00 0.20 +vraisemblance vraisemblance nom f s 0.12 2.91 0.09 2.77 +vraisemblances vraisemblance nom f p 0.12 2.91 0.03 0.14 +vraquier vraquier nom m s 0.00 0.07 0.00 0.07 +vrilla vriller ver 0.13 3.18 0.00 0.41 ind:pas:3s; +vrillaient vriller ver 0.13 3.18 0.00 0.14 ind:imp:3p; +vrillait vriller ver 0.13 3.18 0.00 0.54 ind:imp:3s; +vrillant vriller ver 0.13 3.18 0.01 0.61 par:pre; +vrille vrille nom f s 0.72 2.57 0.65 1.82 +vrillement vrillement nom m s 0.00 0.07 0.00 0.07 +vrillent vriller ver 0.13 3.18 0.00 0.14 ind:pre:3p; +vriller vriller ver 0.13 3.18 0.00 0.14 inf; +vrilles vrille nom f p 0.72 2.57 0.07 0.74 +vrillette vrillette nom f s 0.01 0.07 0.01 0.00 +vrillettes vrillette nom f p 0.01 0.07 0.00 0.07 +vrillèrent vriller ver 0.13 3.18 0.00 0.07 ind:pas:3p; +vrillé vriller ver m s 0.13 3.18 0.09 0.20 par:pas; +vrillées vriller ver f p 0.13 3.18 0.00 0.14 par:pas; +vrillés vriller ver m p 0.13 3.18 0.00 0.14 par:pas; +vrombir vrombir ver 0.26 1.96 0.02 0.27 inf; +vrombis vrombir ver 0.26 1.96 0.00 0.07 ind:pre:1s; +vrombissaient vrombir ver 0.26 1.96 0.02 0.07 ind:imp:3p; +vrombissait vrombir ver 0.26 1.96 0.00 0.27 ind:imp:3s; +vrombissant vrombir ver 0.26 1.96 0.01 0.27 par:pre; +vrombissante vrombissant adj f s 0.01 0.68 0.00 0.27 +vrombissantes vrombissant adj f p 0.01 0.68 0.00 0.34 +vrombissement vrombissement nom m s 0.47 1.35 0.47 1.15 +vrombissements vrombissement nom m p 0.47 1.35 0.00 0.20 +vrombissent vrombir ver 0.26 1.96 0.00 0.14 ind:pre:3p; +vrombissions vrombir ver 0.26 1.96 0.00 0.07 ind:imp:1p; +vrombit vrombir ver 0.26 1.96 0.21 0.81 ind:pre:3s;ind:pas:3s; +vroom vroom ono 0.07 0.41 0.07 0.41 +vroum vroum ono 0.38 0.34 0.38 0.34 +vu voir ver m s 4119.49 2401.76 905.21 393.45 par:pas; +vécûmes vivre ver 510.05 460.34 0.04 0.41 ind:pas:1p; +vécût vivre ver 510.05 460.34 0.00 0.54 sub:imp:3s; +vécu vivre ver m s 510.05 460.34 51.14 56.62 par:pas; +vécue vivre ver f s 510.05 460.34 2.26 4.26 par:pas; +vécues vivre ver f p 510.05 460.34 0.79 1.62 par:pas; +vécurent vivre ver 510.05 460.34 1.65 1.15 ind:pas:3p; +vécus vivre ver m p 510.05 460.34 1.10 2.43 ind:pas:1s;ind:pas:2s;par:pas; +vécés vécés nom m p 0.01 1.08 0.01 1.08 +vécussent vivre ver 510.05 460.34 0.00 0.14 sub:imp:3p; +vécut vivre ver 510.05 460.34 1.43 4.19 ind:pas:3s; +vue voir ver f s 4119.49 2401.76 109.21 56.35 par:pas; +vues voir ver f p 4119.49 2401.76 9.31 8.11 par:pas; +végète végéter ver 0.57 2.91 0.16 0.34 ind:pre:1s;ind:pre:3s; +végètent végéter ver 0.57 2.91 0.10 0.14 ind:pre:3p; +végètes végéter ver 0.57 2.91 0.02 0.00 ind:pre:2s; +végéta végéter ver 0.57 2.91 0.01 0.00 ind:pas:3s; +végétaient végéter ver 0.57 2.91 0.00 0.41 ind:imp:3p; +végétais végéter ver 0.57 2.91 0.00 0.07 ind:imp:1s; +végétait végéter ver 0.57 2.91 0.00 0.74 ind:imp:3s; +végétal végétal adj m s 0.78 8.85 0.18 2.97 +végétale végétal adj f s 0.78 8.85 0.51 3.85 +végétales végétal adj f p 0.78 8.85 0.03 0.95 +végétalien végétalien adj m s 0.22 0.07 0.11 0.00 +végétalienne végétalien adj f s 0.22 0.07 0.11 0.07 +végétalisme végétalisme nom m s 0.01 0.00 0.01 0.00 +végétarien végétarien adj m s 3.94 1.82 2.31 0.88 +végétarienne végétarien adj f s 3.94 1.82 1.32 0.68 +végétariennes végétarien adj f p 3.94 1.82 0.07 0.00 +végétariens végétarien nom m p 0.90 0.27 0.47 0.07 +végétarisme végétarisme nom m s 0.03 0.00 0.03 0.00 +végétatif végétatif adj m s 0.47 1.55 0.40 0.41 +végétatifs végétatif adj m p 0.47 1.55 0.01 0.07 +végétation végétation nom f s 1.47 9.53 0.78 8.85 +végétations végétation nom f p 1.47 9.53 0.69 0.68 +végétative végétatif adj f s 0.47 1.55 0.04 1.01 +végétatives végétatif adj f p 0.47 1.55 0.02 0.07 +végétaux végétal nom m p 0.44 1.89 0.26 0.88 +végéter végéter ver 0.57 2.91 0.26 0.88 inf; +végéteras végéter ver 0.57 2.91 0.01 0.00 ind:fut:2s; +végéterez végéter ver 0.57 2.91 0.00 0.07 ind:fut:2p; +végétons végéter ver 0.57 2.91 0.00 0.07 ind:pre:1p; +végétât végéter ver 0.57 2.91 0.00 0.07 sub:imp:3s; +végété végéter ver m s 0.57 2.91 0.01 0.14 par:pas; +véhiculaient véhiculer ver 0.72 2.30 0.02 0.07 ind:imp:3p; +véhiculait véhiculer ver 0.72 2.30 0.03 0.20 ind:imp:3s; +véhiculant véhiculer ver 0.72 2.30 0.04 0.20 par:pre; +véhicule véhicule nom m s 22.08 22.09 17.04 14.86 +véhiculent véhiculer ver 0.72 2.30 0.14 0.07 ind:pre:3p; +véhiculer véhiculer ver 0.72 2.30 0.12 0.95 inf; +véhicules véhicule nom m p 22.08 22.09 5.04 7.23 +véhiculez véhiculer ver 0.72 2.30 0.01 0.00 imp:pre:2p; +véhiculé véhiculer ver m s 0.72 2.30 0.00 0.14 par:pas; +véhiculée véhiculer ver f s 0.72 2.30 0.04 0.20 par:pas; +véhémence véhémence nom f s 0.31 5.07 0.31 5.07 +véhément véhément adj m s 0.29 5.88 0.02 1.49 +véhémente véhément adj f s 0.29 5.88 0.28 1.89 +véhémentement véhémentement adv 0.01 0.34 0.01 0.34 +véhémentes véhément adj f p 0.29 5.88 0.00 1.22 +véhéments véhément adj m p 0.29 5.88 0.00 1.28 +vêlage vêlage nom m s 0.00 0.20 0.00 0.14 +vêlages vêlage nom m p 0.00 0.20 0.00 0.07 +vélaires vélaire nom f p 0.00 0.07 0.00 0.07 +vélar vélar nom m s 0.04 0.00 0.04 0.00 +vulcain vulcain nom m s 0.06 0.00 0.06 0.00 +vulcanienne vulcanienne adj f s 0.01 0.00 0.01 0.00 +vulcanisait vulcaniser ver 0.01 0.07 0.00 0.07 ind:imp:3s; +vulcanisation vulcanisation nom f s 0.00 0.07 0.00 0.07 +vulcaniser vulcaniser ver 0.01 0.07 0.01 0.00 inf; +vulcanisé vulcanisé adj m s 0.01 0.14 0.01 0.14 +vulcanologue vulcanologue nom s 0.00 0.07 0.00 0.07 +vêler vêler ver 0.02 0.54 0.01 0.47 inf; +vulgaire vulgaire adj s 10.36 16.76 8.48 12.84 +vulgairement vulgairement adv 0.40 1.22 0.40 1.22 +vulgaires vulgaire adj p 10.36 16.76 1.88 3.92 +vulgarisateurs vulgarisateur nom m p 0.00 0.07 0.00 0.07 +vulgarisation vulgarisation nom f s 0.01 0.41 0.01 0.34 +vulgarisations vulgarisation nom f p 0.01 0.41 0.00 0.07 +vulgariser vulgariser ver 0.01 0.14 0.01 0.14 inf; +vulgarisée vulgarisé adj f s 0.00 0.07 0.00 0.07 +vulgarité vulgarité nom f s 1.75 5.68 1.59 5.34 +vulgarités vulgarité nom f p 1.75 5.68 0.17 0.34 +vulgate vulgate nom f s 0.00 0.20 0.00 0.20 +vulgum_pecus vulgum_pecus nom m 0.01 0.07 0.01 0.07 +vélin vélin adj m s 0.02 0.07 0.02 0.07 +vélins vélin nom m p 0.00 0.68 0.00 0.07 +véliplanchiste véliplanchiste nom s 0.01 0.00 0.01 0.00 +vélique vélique adj f s 0.00 0.07 0.00 0.07 +vulnérabilité vulnérabilité nom f s 0.77 1.01 0.77 1.01 +vulnérable vulnérable adj s 7.76 7.97 6.00 6.35 +vulnérables vulnérable adj p 7.76 7.97 1.77 1.62 +vulnéraire vulnéraire nom s 0.00 0.20 0.00 0.14 +vulnéraires vulnéraire nom p 0.00 0.20 0.00 0.07 +vulnérant vulnérant adj m s 0.00 0.07 0.00 0.07 +vélo_cross vélo_cross nom m 0.00 0.07 0.00 0.07 +vélo_pousse vélo_pousse nom m s 0.01 0.00 0.01 0.00 +vélo vélo nom m s 35.58 28.45 32.95 24.32 +véloce véloce adj s 0.06 0.74 0.04 0.54 +vélocement vélocement adv 0.01 0.00 0.01 0.00 +véloces véloce adj f p 0.06 0.74 0.02 0.20 +vélocipède vélocipède nom m s 0.13 0.41 0.11 0.27 +vélocipèdes vélocipède nom m p 0.13 0.41 0.02 0.14 +vélocipédique vélocipédique adj s 0.00 0.20 0.00 0.14 +vélocipédiques vélocipédique adj f p 0.00 0.20 0.00 0.07 +vélocipédistes vélocipédiste nom p 0.00 0.07 0.00 0.07 +vélocité vélocité nom f s 0.25 1.08 0.25 1.08 +vélodrome vélodrome nom m s 0.00 0.88 0.00 0.68 +vélodromes vélodrome nom m p 0.00 0.88 0.00 0.20 +vélomoteur vélomoteur nom m s 0.23 1.49 0.23 1.22 +vélomoteurs vélomoteur nom m p 0.23 1.49 0.00 0.27 +vélos vélo nom m p 35.58 28.45 2.64 4.12 +vulpin vulpin nom m s 0.00 0.07 0.00 0.07 +vêlé vêler ver m s 0.02 0.54 0.01 0.07 par:pas; +vélum vélum nom m s 0.02 0.41 0.02 0.27 +vélums vélum nom m p 0.02 0.41 0.00 0.14 +vulvaire vulvaire nom f s 0.03 0.07 0.03 0.00 +vulvaires vulvaire nom f p 0.03 0.07 0.00 0.07 +vulve vulve nom f s 0.32 1.35 0.32 0.95 +vulves vulve nom f p 0.32 1.35 0.00 0.41 +vénal vénal adj m s 0.54 1.76 0.45 0.81 +vénale vénal adj f s 0.54 1.76 0.09 0.41 +vénales vénal adj f p 0.54 1.76 0.00 0.41 +vénalité vénalité nom f s 0.02 0.41 0.02 0.41 +vénaux vénal adj m p 0.54 1.76 0.00 0.14 +vénerie vénerie nom f s 0.00 0.61 0.00 0.61 +véniel véniel adj m s 0.32 0.81 0.30 0.20 +vénielle véniel adj f s 0.32 0.81 0.00 0.07 +vénielles véniel adj f p 0.32 0.81 0.00 0.14 +véniels véniel adj m p 0.32 0.81 0.01 0.41 +vénitien vénitien adj m s 0.95 6.96 0.86 2.43 +vénitienne vénitienne nom f s 0.14 0.54 0.14 0.34 +vénitiennes vénitien adj f p 0.95 6.96 0.03 1.28 +vénitiens vénitien nom m p 0.36 1.82 0.24 1.15 +vénère vénérer ver 5.86 4.66 1.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vénèrent vénérer ver 5.86 4.66 0.67 0.20 ind:pre:3p; +vénères vénérer ver 5.86 4.66 0.27 0.07 ind:pre:2s; +vénéneuse vénéneux adj f s 0.69 2.36 0.09 0.74 +vénéneuses vénéneux adj f p 0.69 2.36 0.06 0.41 +vénéneux vénéneux adj m 0.69 2.36 0.55 1.22 +vénérable vénérable adj s 2.56 6.35 2.20 4.80 +vénérables vénérable adj p 2.56 6.35 0.36 1.55 +vénérai vénérer ver 5.86 4.66 0.00 0.07 ind:pas:1s; +vénéraient vénérer ver 5.86 4.66 0.21 0.14 ind:imp:3p; +vénérais vénérer ver 5.86 4.66 0.19 0.27 ind:imp:1s;ind:imp:2s; +vénérait vénérer ver 5.86 4.66 0.47 1.35 ind:imp:3s; +vénérant vénérer ver 5.86 4.66 0.15 0.14 par:pre; +vénéras vénérer ver 5.86 4.66 0.01 0.00 ind:pas:2s; +vénération vénération nom f s 0.23 2.84 0.23 2.70 +vénérations vénération nom f p 0.23 2.84 0.00 0.14 +vénérer vénérer ver 5.86 4.66 0.94 0.88 inf; +vénérera vénérer ver 5.86 4.66 0.01 0.00 ind:fut:3s; +vénéreraient vénérer ver 5.86 4.66 0.00 0.07 cnd:pre:3p; +vénérerais vénérer ver 5.86 4.66 0.01 0.00 cnd:pre:1s; +vénérez vénérer ver 5.86 4.66 0.27 0.00 imp:pre:2p;ind:pre:2p; +vénérien vénérien adj m s 0.61 0.95 0.02 0.14 +vénérienne vénérien adj f s 0.61 0.95 0.28 0.20 +vénériennes vénérien adj f p 0.61 0.95 0.31 0.54 +vénériens vénérien adj m p 0.61 0.95 0.00 0.07 +vénérions vénérer ver 5.86 4.66 0.03 0.14 ind:imp:1p; +vénérons vénérer ver 5.86 4.66 0.32 0.00 ind:pre:1p; +vénéré vénéré adj m s 1.10 1.69 0.91 0.88 +vénérée vénéré adj f s 1.10 1.69 0.12 0.14 +vénérées vénérer ver f p 5.86 4.66 0.14 0.07 par:pas; +vénéréologie vénéréologie nom f s 0.01 0.00 0.01 0.00 +vénérés vénérer ver m p 5.86 4.66 0.06 0.20 par:pas; +vénus vénus nom f 0.56 0.41 0.56 0.41 +vénusien vénusien adj m s 0.11 0.20 0.01 0.14 +vénusienne vénusien adj f s 0.11 0.20 0.04 0.00 +vénusiens vénusien adj m p 0.11 0.20 0.06 0.07 +vénusté vénusté nom f s 0.00 0.34 0.00 0.34 +vénézuélien vénézuélien adj m s 0.48 0.27 0.07 0.20 +vénézuélienne vénézuélien adj f s 0.48 0.27 0.26 0.00 +vénézuéliens vénézuélien adj m p 0.48 0.27 0.16 0.07 +vêpre vêpres nom m s 0.64 2.43 0.00 0.07 +vêpres vêpres nom f p 0.64 2.43 0.64 2.36 +vérace vérace adj f s 0.00 0.14 0.00 0.07 +véraces vérace adj p 0.00 0.14 0.00 0.07 +véracité véracité nom f s 0.58 0.74 0.58 0.74 +véranda véranda nom f s 1.90 10.20 1.86 9.12 +vérandas véranda nom f p 1.90 10.20 0.03 1.08 +véreuse véreux adj f s 1.67 1.62 0.35 0.14 +véreuses véreux adj f p 1.67 1.62 0.10 0.27 +véreux véreux adj m 1.67 1.62 1.23 1.22 +véridique véridique adj s 0.82 2.23 0.66 1.69 +véridiquement véridiquement adv 0.01 0.14 0.01 0.14 +véridiques véridique adj p 0.82 2.23 0.16 0.54 +vérif vérif nom f s 0.10 0.27 0.10 0.27 +vérifia vérifier ver 110.87 40.27 0.04 2.91 ind:pas:3s; +vérifiable vérifiable adj s 0.21 0.20 0.18 0.14 +vérifiables vérifiable adj f p 0.21 0.20 0.03 0.07 +vérifiai vérifier ver 110.87 40.27 0.01 0.20 ind:pas:1s; +vérifiaient vérifier ver 110.87 40.27 0.05 0.27 ind:imp:3p; +vérifiais vérifier ver 110.87 40.27 1.33 0.68 ind:imp:1s;ind:imp:2s; +vérifiait vérifier ver 110.87 40.27 0.73 2.50 ind:imp:3s; +vérifiant vérifier ver 110.87 40.27 0.20 1.49 par:pre; +vérificateur vérificateur nom m s 0.42 0.07 0.33 0.00 +vérificateurs vérificateur nom m p 0.42 0.07 0.03 0.07 +vérification vérification nom f s 4.07 3.45 3.40 2.50 +vérifications vérification nom f p 4.07 3.45 0.68 0.95 +vérificatrice vérificateur nom f s 0.42 0.07 0.07 0.00 +vérifie vérifier ver 110.87 40.27 20.47 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +vérifient vérifier ver 110.87 40.27 1.27 0.27 ind:pre:3p; +vérifier vérifier ver 110.87 40.27 45.69 22.09 inf; +vérifiera vérifier ver 110.87 40.27 0.55 0.20 ind:fut:3s; +vérifierai vérifier ver 110.87 40.27 1.35 0.20 ind:fut:1s; +vérifierais vérifier ver 110.87 40.27 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +vérifierait vérifier ver 110.87 40.27 0.03 0.07 cnd:pre:3s; +vérifieras vérifier ver 110.87 40.27 0.17 0.07 ind:fut:2s; +vérifierons vérifier ver 110.87 40.27 0.32 0.07 ind:fut:1p; +vérifieront vérifier ver 110.87 40.27 0.22 0.00 ind:fut:3p; +vérifies vérifier ver 110.87 40.27 0.94 0.14 ind:pre:2s; +vérifieur vérifieur nom m s 0.02 0.00 0.02 0.00 +vérifiez vérifier ver 110.87 40.27 12.16 0.47 imp:pre:2p;ind:pre:2p; +vérifiions vérifier ver 110.87 40.27 0.00 0.07 ind:imp:1p; +vérifions vérifier ver 110.87 40.27 2.15 0.14 imp:pre:1p;ind:pre:1p; +vérifièrent vérifier ver 110.87 40.27 0.01 0.14 ind:pas:3p; +vérifié vérifier ver m s 110.87 40.27 21.64 4.19 par:pas; +vérifiée vérifier ver f s 110.87 40.27 0.50 0.14 par:pas; +vérifiées vérifier ver f p 110.87 40.27 0.37 0.00 par:pas; +vérifiés vérifier ver m p 110.87 40.27 0.57 0.00 par:pas; +vérin vérin nom m s 0.06 0.34 0.05 0.07 +vérins vérin nom m p 0.06 0.34 0.01 0.27 +vériste vériste adj m s 0.00 0.07 0.00 0.07 +véritable véritable adj s 29.36 56.08 26.78 48.51 +véritablement véritablement adv 2.03 5.88 2.03 5.88 +véritables véritable adj p 29.36 56.08 2.58 7.57 +vérité vérité nom f s 193.24 140.88 190.21 133.38 +vérités vérité nom f p 193.24 140.88 3.03 7.50 +vérole vérole nom f s 0.79 3.58 0.79 3.45 +véroles vérole nom f p 0.79 3.58 0.00 0.14 +vérolé vérolé adj m s 0.33 1.96 0.02 1.42 +vérolée vérolé adj f s 0.33 1.96 0.17 0.00 +vérolées vérolé adj f p 0.33 1.96 0.00 0.34 +vérolés vérolé adj m p 0.33 1.96 0.14 0.20 +véronaise véronais adj f s 0.00 0.07 0.00 0.07 +véronal véronal nom m s 0.04 0.00 0.04 0.00 +véronique véronique nom f s 0.10 0.74 0.10 0.54 +véroniques véronique nom f p 0.10 0.74 0.00 0.20 +vus voir ver m p 4119.49 2401.76 47.81 28.72 par:pas; +vésanie vésanie nom f s 0.00 0.27 0.00 0.20 +vésanies vésanie nom f p 0.00 0.27 0.00 0.07 +vésicale vésical adj f s 0.01 0.00 0.01 0.00 +vésicante vésicant adj f s 0.10 0.00 0.10 0.00 +vésicatoire vésicatoire adj s 0.10 0.07 0.10 0.00 +vésicatoires vésicatoire adj m p 0.10 0.07 0.00 0.07 +vésiculaire vésiculaire adj s 0.10 0.00 0.10 0.00 +vésicule vésicule nom f s 1.01 0.74 0.90 0.61 +vésicules vésicule nom f p 1.01 0.74 0.11 0.14 +vésuviennes vésuvien adj f p 0.00 0.07 0.00 0.07 +vêt vêtir ver 7.67 63.85 0.02 0.14 ind:pre:3s; +vêtaient vêtir ver 7.67 63.85 0.00 0.07 ind:imp:3p; +vêtait vêtir ver 7.67 63.85 0.14 0.41 ind:imp:3s; +vêtant vêtir ver 7.67 63.85 0.00 0.14 par:pre; +vête vêtir ver 7.67 63.85 0.00 0.07 sub:pre:3s; +vêtement vêtement nom m s 61.48 90.14 3.84 15.34 +vêtements vêtement nom m p 61.48 90.14 57.65 74.80 +vêtent vêtir ver 7.67 63.85 0.11 0.34 ind:pre:3p; +vêtez vêtir ver 7.67 63.85 0.01 0.34 imp:pre:2p;ind:pre:2p; +vétille vétille nom f s 0.39 1.22 0.22 0.20 +vétilles vétille nom f p 0.39 1.22 0.16 1.01 +vétilleuse vétilleux adj f s 0.00 0.68 0.00 0.27 +vétilleuses vétilleux adj f p 0.00 0.68 0.00 0.07 +vétilleux vétilleux adj m 0.00 0.68 0.00 0.34 +vêtir vêtir ver 7.67 63.85 1.55 3.18 inf; +vêtira vêtir ver 7.67 63.85 0.02 0.07 ind:fut:3s; +vêtirais vêtir ver 7.67 63.85 0.00 0.07 cnd:pre:1s; +vêtirait vêtir ver 7.67 63.85 0.00 0.07 cnd:pre:3s; +vêtirons vêtir ver 7.67 63.85 0.00 0.07 ind:fut:1p; +vêtis vêtir ver 7.67 63.85 0.00 0.07 ind:pas:1s; +vêtit vêtir ver 7.67 63.85 0.00 0.20 ind:pas:3s; +vétiver vétiver nom m s 0.00 0.27 0.00 0.27 +vêtons vêtir ver 7.67 63.85 0.00 0.07 ind:pre:1p; +vêts vêtir ver 7.67 63.85 0.00 0.54 ind:pre:1s;ind:pre:2s; +vêtu vêtir ver m s 7.67 63.85 3.47 26.96 par:pas; +vêtue vêtir ver f s 7.67 63.85 1.23 15.27 par:pas; +vêtues vêtir ver f p 7.67 63.85 0.28 4.73 par:pas; +vétéran vétéran nom m s 3.84 2.43 1.86 1.28 +vétérans vétéran nom m p 3.84 2.43 1.98 1.15 +vêture vêture nom f s 0.00 0.61 0.00 0.54 +vêtures vêture nom f p 0.00 0.61 0.00 0.07 +vétérinaire vétérinaire nom s 3.93 3.85 3.74 3.72 +vétérinaires vétérinaire nom p 3.93 3.85 0.19 0.14 +vêtus vêtir ver m p 7.67 63.85 0.83 11.08 par:pas; +vétuste vétuste adj s 0.25 3.18 0.05 2.03 +vétustes vétuste adj p 0.25 3.18 0.20 1.15 +vétusté vétusté nom f s 0.02 0.68 0.02 0.68 +vétyver vétyver nom m s 0.00 0.07 0.00 0.07 +w w nom m 3.54 2.70 3.54 2.70 +wagnérien wagnérien adj m s 0.04 0.47 0.01 0.34 +wagnérienne wagnérien adj f s 0.04 0.47 0.03 0.07 +wagnériennes wagnérien adj f p 0.04 0.47 0.00 0.07 +wagon_bar wagon_bar nom m s 0.03 0.00 0.03 0.00 +wagon_lit wagon_lit nom m s 1.79 1.89 0.70 0.81 +wagon_lits wagon_lits nom m 0.00 0.07 0.00 0.07 +wagon_restaurant wagon_restaurant nom m s 0.35 1.01 0.35 0.81 +wagon_salon wagon_salon nom m s 0.01 0.54 0.01 0.54 +wagon wagon nom m s 10.24 32.77 6.53 18.11 +wagonnet wagonnet nom m s 0.26 1.28 0.12 0.20 +wagonnets wagonnet nom m p 0.26 1.28 0.14 1.08 +wagon_citerne wagon_citerne nom m p 0.00 0.07 0.00 0.07 +wagon_lit wagon_lit nom m p 1.79 1.89 1.09 1.08 +wagon_restaurant wagon_restaurant nom m p 0.35 1.01 0.00 0.20 +wagons wagon nom m p 10.24 32.77 3.71 14.66 +wait_and_see wait_and_see nom m s 0.16 0.00 0.16 0.00 +wali wali nom m s 0.02 0.00 0.02 0.00 +walkie_talkie walkie_talkie nom m s 0.08 0.14 0.05 0.14 +walkie_talkie walkie_talkie nom m p 0.08 0.14 0.03 0.00 +walkman walkman nom m s 1.18 1.28 1.13 1.22 +walkmans walkman nom m p 1.18 1.28 0.05 0.07 +walkyrie walkyrie nom f s 0.00 0.27 0.00 0.27 +wall_street wall_street nom s 0.03 0.07 0.03 0.07 +wallaby wallaby nom m s 0.13 0.00 0.13 0.00 +wallace wallace nom f s 0.91 0.00 0.91 0.00 +wallon wallon adj m s 0.28 0.07 0.01 0.07 +wallonne wallon adj f s 0.28 0.07 0.27 0.00 +walter walter nom m s 0.27 0.00 0.27 0.00 +wapiti wapiti nom m s 0.03 0.20 0.02 0.07 +wapitis wapiti nom m p 0.03 0.20 0.01 0.14 +warning warning nom m s 0.34 0.07 0.07 0.00 +warnings warning nom m p 0.34 0.07 0.28 0.07 +warrants warrant nom m p 0.00 0.07 0.00 0.07 +wassingue wassingue nom f s 0.00 0.14 0.00 0.07 +wassingues wassingue nom f p 0.00 0.14 0.00 0.07 +water_closet water_closet nom m s 0.00 0.14 0.00 0.14 +water_polo water_polo nom m s 0.23 0.00 0.23 0.00 +water water nom m s 2.49 1.55 1.03 0.20 +waterman waterman nom m s 0.12 0.34 0.12 0.34 +waterproof waterproof adj m s 0.07 0.07 0.07 0.07 +waters water nom m p 2.49 1.55 1.46 1.35 +watt watt nom m s 1.78 0.81 0.03 0.00 +wattman wattman nom m s 0.00 0.20 0.00 0.20 +watts watt nom m p 1.78 0.81 1.75 0.81 +wax wax nom m 0.74 0.07 0.74 0.07 +way_of_life way_of_life nom m s 0.02 0.14 0.02 0.14 +web web nom m s 2.34 0.00 2.34 0.00 +webcam webcam nom f s 0.31 0.00 0.31 0.00 +week_end week_end nom m s 44.51 14.32 39.41 12.16 +week_end week_end nom m p 44.51 14.32 3.13 2.16 +week_end week_end nom m s 44.51 14.32 1.96 0.00 +weimarienne weimarien adj f s 0.00 0.07 0.00 0.07 +weltanschauung weltanschauung nom f s 0.02 0.07 0.02 0.07 +welter welter nom m s 0.14 0.00 0.10 0.00 +welters welter nom m p 0.14 0.00 0.04 0.00 +western_spaghetti western_spaghetti nom m 0.00 0.07 0.00 0.07 +western western nom m s 6.35 3.78 5.19 1.96 +westerns western nom m p 6.35 3.78 1.16 1.82 +westphalien westphalien adj m s 0.00 0.14 0.00 0.07 +westphaliennes westphalien adj f p 0.00 0.14 0.00 0.07 +wharf wharf nom m s 0.03 1.22 0.03 1.22 +whig whig nom m s 0.21 0.07 0.03 0.07 +whigs whig nom m p 0.21 0.07 0.18 0.00 +whipcord whipcord nom m s 0.00 0.07 0.00 0.07 +whiskey whiskey nom m s 1.20 0.27 1.20 0.27 +whiskies whiskies nom m p 0.53 1.89 0.53 1.89 +whisky_soda whisky_soda nom m s 0.13 0.07 0.13 0.07 +whisky whisky nom m s 30.20 25.47 29.89 25.14 +whiskys whisky nom m p 30.20 25.47 0.32 0.34 +whist whist nom m s 0.19 0.27 0.19 0.27 +white_spirit white_spirit nom m s 0.01 0.00 0.01 0.00 +wicket wicket nom m s 0.16 0.00 0.16 0.00 +wigwam wigwam nom m s 0.00 0.27 0.00 0.14 +wigwams wigwam nom m p 0.00 0.27 0.00 0.14 +wildcat wildcat nom m s 0.02 0.00 0.02 0.00 +wilhelmien wilhelmien adj m s 0.00 0.14 0.00 0.14 +willaya willaya nom f s 0.00 0.68 0.00 0.61 +willayas willaya nom f p 0.00 0.68 0.00 0.07 +william william nom m s 0.09 0.27 0.09 0.27 +williams williams nom f s 0.46 0.00 0.46 0.00 +winchester winchester nom m s 0.05 0.27 0.01 0.27 +winchesters winchester nom m p 0.05 0.27 0.04 0.00 +windsurf windsurf nom m s 0.05 0.00 0.05 0.00 +wintergreen wintergreen nom m s 0.01 0.00 0.01 0.00 +wishbone wishbone nom m s 0.01 0.00 0.01 0.00 +wisigothe wisigoth nom f s 0.00 0.14 0.00 0.07 +wisigothique wisigothique adj f s 0.00 0.14 0.00 0.07 +wisigothiques wisigothique adj f p 0.00 0.14 0.00 0.07 +wisigoths wisigoth nom m p 0.00 0.14 0.00 0.07 +witz witz nom m 0.01 0.00 0.01 0.00 +wombat wombat nom m s 0.04 0.00 0.04 0.00 +woofer woofer nom m s 0.04 0.00 0.01 0.00 +woofers woofer nom m p 0.04 0.00 0.03 0.00 +world_music world_music nom f 0.02 0.00 0.02 0.00 +wouah wouah ono 1.29 0.07 1.29 0.07 +wurtembergeois wurtembergeois adj m 0.00 0.14 0.00 0.07 +wurtembergeoise wurtembergeois adj f s 0.00 0.14 0.00 0.07 +x x adj_num 7.48 4.46 7.48 4.46 +xavier xavier nom m s 0.67 0.07 0.67 0.07 +xiang xiang nom m s 0.01 0.00 0.01 0.00 +xiphidion xiphidion nom m s 0.00 0.07 0.00 0.07 +xiphoïde xiphoïde adj m s 0.14 0.00 0.14 0.00 +xième xième adj m s 0.28 0.00 0.28 0.00 +xénogenèse xénogenèse nom f s 0.01 0.00 0.01 0.00 +xénogreffe xénogreffe nom f s 0.01 0.00 0.01 0.00 +xénon xénon nom m s 0.34 0.00 0.34 0.00 +xénophilie xénophilie nom f s 0.00 0.14 0.00 0.14 +xénophobe xénophobe adj s 0.07 0.14 0.04 0.00 +xénophobes xénophobe adj p 0.07 0.14 0.04 0.14 +xénophobie xénophobie nom f s 0.25 0.88 0.25 0.88 +xérographie xérographie nom f s 0.01 0.00 0.01 0.00 +xérographique xérographique adj m s 0.01 0.00 0.01 0.00 +xérès xérès nom m 0.41 0.54 0.41 0.54 +xylographie xylographie nom f s 0.20 0.00 0.20 0.00 +xylophone xylophone nom m s 0.28 0.34 0.28 0.27 +xylophones xylophone nom m p 0.28 0.34 0.00 0.07 +xylophoniste xylophoniste nom s 0.04 0.00 0.04 0.00 +xylène xylène nom m s 0.03 0.00 0.03 0.00 +y y pro_per 4346.55 3086.76 4346.55 3086.76 +ya ya nom m s 11.45 3.31 11.45 3.31 +yacht_club yacht_club nom m s 0.04 0.07 0.04 0.07 +yacht yacht nom m s 6.95 4.80 6.51 3.78 +yachting yachting nom m s 0.04 0.14 0.04 0.14 +yachtman yachtman nom m s 0.02 0.14 0.02 0.07 +yachtmen yachtman nom m p 0.02 0.14 0.00 0.07 +yachts yacht nom m p 6.95 4.80 0.44 1.01 +yachtwoman yachtwoman nom f s 0.00 0.07 0.00 0.07 +yack yack nom m s 3.15 1.76 0.46 1.42 +yacks yack nom m p 3.15 1.76 2.69 0.34 +yak yak nom m s 0.38 0.41 0.28 0.41 +yakitori yakitori nom m s 0.01 0.00 0.01 0.00 +yaks yak nom m p 0.38 0.41 0.10 0.00 +yakusa yakusa nom m s 0.15 0.00 0.15 0.00 +yakuza yakuza nom m s 0.86 0.00 0.79 0.00 +yakuzas yakuza nom m p 0.86 0.00 0.07 0.00 +yali yali nom m s 0.00 1.01 0.00 0.88 +yalis yali nom m p 0.00 1.01 0.00 0.14 +yama yama nom m s 0.24 0.07 0.24 0.07 +yang yang nom m s 3.25 0.81 3.25 0.81 +yankee yankee nom s 8.71 1.08 3.71 0.68 +yankees yankee nom p 8.71 1.08 5.00 0.41 +yanquis yanqui adj p 0.01 0.00 0.01 0.00 +yaourt yaourt nom m s 3.58 4.73 2.87 3.18 +yaourtières yaourtière nom f p 0.00 0.07 0.00 0.07 +yaourts yaourt nom m p 3.58 4.73 0.71 1.55 +yard yard nom m s 2.10 0.34 0.46 0.27 +yards yard nom m p 2.10 0.34 1.64 0.07 +yatagan yatagan nom m s 0.01 0.88 0.01 0.54 +yatagans yatagan nom m p 0.01 0.88 0.00 0.34 +yeah yeah ono 14.01 0.27 14.01 0.27 +yearling yearling nom m s 0.01 0.14 0.01 0.14 +yen yen nom m s 3.27 0.61 1.87 0.47 +yens yen nom m p 3.27 0.61 1.40 0.14 +yeshiva yeshiva nom f s 1.13 0.20 1.13 0.20 +yeti yeti nom m s 0.29 0.14 0.29 0.14 +yeuse yeuse nom f s 0.12 0.81 0.02 0.14 +yeuses yeuse nom f p 0.12 0.81 0.10 0.68 +oeil_radars oeil_radars nom m p 0.00 0.07 0.00 0.07 +yeux oeil nom m p 413.04 1234.59 315.89 955.68 +yiddish yiddish adj m s 0.70 0.74 0.70 0.74 +yin yin nom m s 2.17 0.81 2.17 0.81 +ylang_ylang ylang_ylang nom m s 0.01 0.00 0.01 0.00 +yo_yo yo_yo nom m 1.03 0.47 1.03 0.47 +yodlait yodler ver 0.03 0.07 0.00 0.07 ind:imp:3s; +yodler yodler ver 0.03 0.07 0.03 0.00 inf; +yoga yoga nom m s 3.17 1.08 3.17 1.08 +yoghourt yoghourt nom m s 0.00 0.34 0.00 0.34 +yogi yogi nom m s 0.57 0.47 0.52 0.41 +yogis yogi nom m p 0.57 0.47 0.05 0.07 +yogourt yogourt nom m s 0.31 0.07 0.31 0.07 +yole yole nom f s 0.04 0.47 0.04 0.47 +yom_kippour yom_kippour nom m 0.45 0.34 0.45 0.34 +yom_kippur yom_kippur nom m s 0.04 0.00 0.04 0.00 +york york nom m s 0.48 0.61 0.48 0.61 +yorkshire yorkshire nom m s 0.01 0.00 0.01 0.00 +you_you you_you nom m s 0.00 0.07 0.00 0.07 +yougoslave yougoslave adj s 0.69 1.42 0.55 0.81 +yougoslaves yougoslave adj p 0.69 1.42 0.14 0.61 +youp youp ono 0.17 0.68 0.17 0.68 +youpi youpi ono 1.12 0.54 1.12 0.54 +youpin youpin nom m s 1.08 1.62 1.05 1.42 +youpine youpin nom f s 1.08 1.62 0.03 0.20 +yourte yourte nom f s 0.56 2.91 0.56 1.28 +yourtes yourte nom f p 0.56 2.91 0.00 1.62 +youtre youtre nom s 0.01 0.00 0.01 0.00 +youyou youyou nom m s 0.00 1.62 0.00 1.42 +youyous youyou nom m p 0.00 1.62 0.00 0.20 +yoyo yoyo nom m s 0.64 0.54 0.59 0.34 +yoyos yoyo nom m p 0.64 0.54 0.05 0.20 +ypérite ypérite nom f s 0.00 0.14 0.00 0.14 +yèbles yèble nom f p 0.00 0.14 0.00 0.14 +yé_yé yé_yé nom m 0.00 0.14 0.00 0.14 +yu y nom_sup m s 33.20 26.62 2.94 0.00 +yuan yuan nom m s 4.69 0.00 0.50 0.00 +yuans yuan nom m p 4.69 0.00 4.19 0.00 +yucca yucca nom m s 0.31 0.07 0.24 0.00 +yuccas yucca nom m p 0.31 0.07 0.07 0.07 +yue yue nom m 0.43 0.00 0.43 0.00 +yéménites yéménite nom p 0.01 0.07 0.01 0.07 +yuppie yuppie nom s 1.04 0.07 0.45 0.00 +yuppies yuppie nom p 1.04 0.07 0.60 0.07 +yéti yéti nom m s 0.65 0.14 0.65 0.14 +yéyé yéyé nom s 0.41 0.34 0.41 0.20 +yéyés yéyé nom p 0.41 0.34 0.00 0.14 +z z nom m 5.39 5.07 5.39 5.07 +zaïrois zaïrois nom m 0.01 0.00 0.01 0.00 +zaïroise zaïrois adj f s 0.01 0.14 0.00 0.07 +zaïroises zaïrois adj f p 0.01 0.14 0.01 0.07 +zadé zader ver m s 0.00 0.47 0.00 0.47 par:pas; +zaibatsu zaibatsu nom m 0.01 0.00 0.01 0.00 +zain zain adj m s 0.00 0.07 0.00 0.07 +zakouski zakouski nom m 0.62 0.34 0.62 0.07 +zakouskis zakouski nom m p 0.62 0.34 0.00 0.27 +zani zani nom m s 0.04 0.00 0.04 0.00 +zanimaux zanimaux nom m p 0.00 0.07 0.00 0.07 +zanzi zanzi nom m s 0.02 8.04 0.02 8.04 +zanzibar zanzibar nom m s 0.01 0.00 0.01 0.00 +zappant zapper ver 2.73 0.14 0.01 0.00 par:pre; +zappe zapper ver 2.73 0.14 1.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zapper zapper ver 2.73 0.14 0.75 0.07 inf; +zapperai zapper ver 2.73 0.14 0.02 0.00 ind:fut:1s; +zapperait zapper ver 2.73 0.14 0.01 0.00 cnd:pre:3s; +zappes zapper ver 2.73 0.14 0.17 0.00 ind:pre:2s; +zappeur zappeur nom m s 0.14 0.00 0.14 0.00 +zappez zapper ver 2.73 0.14 0.09 0.00 imp:pre:2p;ind:pre:2p; +zapping zapping nom m s 0.02 0.00 0.02 0.00 +zappé zapper ver m s 2.73 0.14 0.64 0.07 par:pas; +zarabe zarabe nom s 0.10 0.00 0.10 0.00 +zarbi zarbi adj s 0.70 0.14 0.63 0.14 +zarbis zarbi adj m p 0.70 0.14 0.07 0.00 +zazou zazou adj m s 0.06 1.01 0.04 1.01 +zazous zazou nom m p 0.11 0.88 0.07 0.20 +zeb zeb nom m s 0.50 0.07 0.50 0.07 +zef zef nom m s 0.01 4.53 0.01 4.53 +zelle zelle nom m s 0.71 0.74 0.71 0.74 +zemstvo zemstvo nom m s 0.00 0.07 0.00 0.07 +zen zen adj m s 2.55 1.76 2.55 1.76 +zens zen nom m p 0.93 0.81 0.01 0.20 +zeppelin zeppelin nom m s 0.07 0.41 0.04 0.14 +zeppelins zeppelin nom m p 0.07 0.41 0.03 0.27 +zest zest nom m s 0.05 0.07 0.05 0.07 +zeste zeste nom m s 0.70 0.88 0.69 0.74 +zester zester ver 0.01 0.00 0.01 0.00 inf; +zestes zeste nom m p 0.70 0.88 0.01 0.14 +zibeline zibeline nom f s 1.48 1.08 0.86 0.81 +zibelines zibeline nom f p 1.48 1.08 0.61 0.27 +zicmu zicmu nom f s 0.14 0.00 0.14 0.00 +zieute zieuter ver 0.16 0.88 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zieutent zieuter ver 0.16 0.88 0.00 0.14 ind:pre:3p; +zieuter zieuter ver 0.16 0.88 0.06 0.34 inf; +zieutes zieuter ver 0.16 0.88 0.01 0.07 ind:pre:2s; +zieutez zieuter ver 0.16 0.88 0.02 0.00 imp:pre:2p; +zig_zig zig_zig adv 0.03 0.00 0.03 0.00 +zig zig nom m s 1.16 0.68 1.16 0.68 +ziggourat ziggourat nom f s 0.05 0.07 0.05 0.00 +ziggourats ziggourat nom f p 0.05 0.07 0.00 0.07 +zigomar zigomar nom m s 0.02 0.27 0.01 0.20 +zigomars zigomar nom m p 0.02 0.27 0.01 0.07 +zigoto zigoto nom m s 0.30 1.42 0.25 0.68 +zigotos zigoto nom m p 0.30 1.42 0.05 0.74 +zigouillais zigouiller ver 1.59 1.22 0.00 0.07 ind:imp:1s; +zigouillait zigouiller ver 1.59 1.22 0.00 0.07 ind:imp:3s; +zigouille zigouiller ver 1.59 1.22 0.45 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zigouillent zigouiller ver 1.59 1.22 0.01 0.00 ind:pre:3p; +zigouiller zigouiller ver 1.59 1.22 0.54 0.47 inf; +zigouillez zigouiller ver 1.59 1.22 0.03 0.07 imp:pre:2p;ind:pre:2p; +zigouillé zigouiller ver m s 1.59 1.22 0.46 0.27 par:pas; +zigouillées zigouiller ver f p 1.59 1.22 0.01 0.00 par:pas; +zigouillés zigouiller ver m p 1.59 1.22 0.10 0.07 par:pas; +zigounette zigounette nom f s 0.14 0.07 0.14 0.07 +zigue zigue nom m s 0.34 0.74 0.30 0.54 +zigues zigue nom m p 0.34 0.74 0.03 0.20 +zigzag zigzag nom m s 0.42 2.64 0.36 1.49 +zigzagant zigzagant adj m s 0.00 0.61 0.00 0.20 +zigzagante zigzagant adj f s 0.00 0.61 0.00 0.34 +zigzagantes zigzagant adj f p 0.00 0.61 0.00 0.07 +zigzags zigzag nom m p 0.42 2.64 0.05 1.15 +zigzagua zigzaguer ver 0.82 4.66 0.00 0.20 ind:pas:3s; +zigzaguai zigzaguer ver 0.82 4.66 0.00 0.07 ind:pas:1s; +zigzaguaient zigzaguer ver 0.82 4.66 0.00 0.41 ind:imp:3p; +zigzaguait zigzaguer ver 0.82 4.66 0.04 0.81 ind:imp:3s; +zigzaguant zigzaguer ver 0.82 4.66 0.14 1.42 par:pre; +zigzague zigzaguer ver 0.82 4.66 0.17 0.54 ind:pre:1s;ind:pre:3s; +zigzaguent zigzaguer ver 0.82 4.66 0.01 0.20 ind:pre:3p; +zigzaguer zigzaguer ver 0.82 4.66 0.41 0.68 inf; +zigzaguèrent zigzaguer ver 0.82 4.66 0.00 0.07 ind:pas:3p; +zigzagué zigzaguer ver m s 0.82 4.66 0.04 0.20 par:pas; +zigzaguée zigzaguer ver f s 0.82 4.66 0.00 0.07 par:pas; +zinc zinc nom m s 2.12 17.30 1.96 16.49 +zincs zinc nom m p 2.12 17.30 0.16 0.81 +zingage zingage nom m s 0.00 0.07 0.00 0.07 +zingaro zingaro nom m s 0.10 17.97 0.10 17.97 +zingué zinguer ver m s 0.00 0.14 0.00 0.07 par:pas; +zingués zinguer ver m p 0.00 0.14 0.00 0.07 par:pas; +zinnia zinnia nom m s 0.11 0.34 0.01 0.07 +zinnias zinnia nom m p 0.11 0.34 0.10 0.27 +zinzin zinzin adj m s 0.64 0.41 0.64 0.41 +zinzins zinzin nom m p 0.27 0.74 0.08 0.20 +zinzolin zinzolin adj m p 0.00 0.07 0.00 0.07 +zip zip nom m s 0.78 0.41 0.78 0.41 +zippa zipper ver 0.25 0.20 0.00 0.07 ind:pas:3s; +zippait zipper ver 0.25 0.20 0.00 0.07 ind:imp:3s; +zipper zipper ver 0.25 0.20 0.21 0.07 inf; +zippé zipper ver m s 0.25 0.20 0.04 0.00 par:pas; +zircon zircon nom m s 0.20 0.00 0.18 0.00 +zirconium zirconium nom m s 0.05 0.00 0.05 0.00 +zircons zircon nom m p 0.20 0.00 0.02 0.00 +zizanie zizanie nom f s 0.56 0.41 0.56 0.34 +zizanies zizanie nom f p 0.56 0.41 0.00 0.07 +zizi zizi nom m s 2.89 2.84 2.69 2.30 +zizique zizique nom f s 0.17 0.34 0.17 0.34 +zizis zizi nom m p 2.89 2.84 0.20 0.54 +zloty zloty nom m s 1.29 0.07 0.01 0.00 +zlotys zloty nom m p 1.29 0.07 1.28 0.07 +zob zob nom m s 1.57 1.35 1.54 1.35 +zobs zob nom m p 1.57 1.35 0.03 0.00 +zodiac zodiac nom m s 0.01 0.00 0.01 0.00 +zodiacal zodiacal adj m s 0.14 0.07 0.14 0.07 +zodiacale zodiacal adj f s 0.14 0.07 0.01 0.00 +zodiaque zodiaque nom m s 0.53 0.68 0.53 0.68 +zombi zombi nom m s 0.65 3.58 0.28 2.97 +zombie zombie nom m s 5.04 1.01 2.33 0.54 +zombies zombie nom m p 5.04 1.01 2.71 0.47 +zombification zombification nom f s 0.02 0.00 0.02 0.00 +zombis zombi nom m p 0.65 3.58 0.37 0.61 +zona zona nom m s 0.37 0.61 0.36 0.61 +zonage zonage nom m s 0.10 0.00 0.10 0.00 +zonait zoner ver 0.23 0.81 0.04 0.07 ind:imp:3s; +zonal zonal adj m s 0.00 0.07 0.00 0.07 +zonant zoner ver 0.23 0.81 0.01 0.07 par:pre; +zonard zonard nom m s 0.18 4.26 0.08 1.76 +zonarde zonard nom f s 0.18 4.26 0.00 0.27 +zonardes zonard nom f p 0.18 4.26 0.00 0.14 +zonards zonard nom m p 0.18 4.26 0.10 2.09 +zonas zona nom m p 0.37 0.61 0.01 0.00 +zone zone nom f s 53.94 42.50 46.97 34.39 +zoner zoner ver 0.23 0.81 0.03 0.54 inf; +zonera zoner ver 0.23 0.81 0.01 0.00 ind:fut:3s; +zones_clé zones_clé nom f p 0.00 0.07 0.00 0.07 +zones zone nom f p 53.94 42.50 6.98 8.11 +zoning zoning nom m s 0.01 0.00 0.01 0.00 +zoné zoner ver m s 0.23 0.81 0.13 0.14 par:pas; +zonzon zonzon nom m s 0.33 0.54 0.33 0.54 +zoo zoo nom m s 12.17 6.49 11.45 6.08 +zoologie zoologie nom f s 0.40 0.34 0.40 0.34 +zoologique zoologique adj s 0.36 1.22 0.35 1.01 +zoologiques zoologique adj m p 0.36 1.22 0.01 0.20 +zoologiste zoologiste nom s 0.25 0.00 0.25 0.00 +zoologue zoologue nom m s 0.02 0.00 0.02 0.00 +zoom zoom nom m s 2.40 0.41 2.27 0.34 +zoome zoomer ver 1.49 0.00 0.58 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zoomer zoomer ver 1.49 0.00 0.37 0.00 inf; +zoomes zoomer ver 1.49 0.00 0.28 0.00 ind:pre:2s; +zoomez zoomer ver 1.49 0.00 0.26 0.00 imp:pre:2p; +zooms zoom nom m p 2.40 0.41 0.12 0.07 +zoophile zoophile adj f s 0.03 0.14 0.01 0.14 +zoophiles zoophile adj f p 0.03 0.14 0.02 0.00 +zoophilie zoophilie nom f s 0.08 0.00 0.08 0.00 +zoos zoo nom m p 12.17 6.49 0.72 0.41 +zoreille zoreille nom m s 0.02 0.07 0.02 0.00 +zoreilles zoreille nom m p 0.02 0.07 0.00 0.07 +zorille zorille nom f s 0.00 0.07 0.00 0.07 +zoroastrien zoroastrien nom m s 0.02 0.00 0.01 0.00 +zoroastriens zoroastrien nom m p 0.02 0.00 0.01 0.00 +zoroastrisme zoroastrisme nom m s 0.01 0.00 0.01 0.00 +zou zou ono 1.86 0.54 1.86 0.54 +zouave zouave nom m s 0.46 2.70 0.46 1.76 +zouaves zouave nom m p 0.46 2.70 0.00 0.95 +zouk zouk nom m s 0.01 0.00 0.01 0.00 +zoulou zoulou adj m s 0.16 0.07 0.15 0.00 +zouloue zoulou adj f s 0.16 0.07 0.01 0.00 +zoulous zoulou nom m p 0.11 0.07 0.05 0.07 +zoziaux zoziaux nom m p 0.01 0.07 0.01 0.07 +zozo zozo nom m s 0.88 0.81 0.70 0.41 +zozos zozo nom m p 0.88 0.81 0.18 0.41 +zozotait zozoter ver 0.06 0.61 0.00 0.14 ind:imp:3s; +zozotant zozoter ver 0.06 0.61 0.00 0.34 par:pre; +zozote zozoter ver 0.06 0.61 0.05 0.07 ind:pre:3s; +zozotement zozotement nom m s 0.01 0.14 0.01 0.07 +zozotements zozotement nom m p 0.01 0.14 0.00 0.07 +zozotes zozoter ver 0.06 0.61 0.00 0.07 ind:pre:2s; +zozoteuse zozoteur nom f s 0.00 0.07 0.00 0.07 +zozotez zozoter ver 0.06 0.61 0.01 0.00 ind:pre:2p; +zèbre zèbre nom m s 3.80 5.14 2.65 3.04 +zèbrent zébrer ver 0.20 2.84 0.00 0.07 ind:pre:3p; +zèbres zèbre nom m p 3.80 5.14 1.15 2.09 +zèle zèle nom m s 4.92 10.68 4.92 10.61 +zèles zèle nom m p 4.92 10.68 0.00 0.07 +zébra zébrer ver 0.20 2.84 0.16 0.14 ind:pas:3s; +zébraient zébrer ver 0.20 2.84 0.00 0.54 ind:imp:3p; +zébrait zébrer ver 0.20 2.84 0.00 0.14 ind:imp:3s; +zébrant zébrer ver 0.20 2.84 0.00 0.41 par:pre; +zébrer zébrer ver 0.20 2.84 0.00 0.27 inf; +zébré zébré adj m s 0.04 0.68 0.03 0.14 +zébrée zébré adj f s 0.04 0.68 0.02 0.27 +zébrées zébrer ver f p 0.20 2.84 0.00 0.14 par:pas; +zébrure zébrure nom f s 0.03 1.49 0.00 0.47 +zébrures zébrure nom f p 0.03 1.49 0.03 1.01 +zébrés zébrer ver m p 0.20 2.84 0.01 0.14 par:pas; +zébu zébu nom m s 0.06 0.41 0.06 0.20 +zébus zébu nom m p 0.06 0.41 0.00 0.20 +zélateur zélateur nom m s 0.02 0.41 0.00 0.07 +zélateurs zélateur nom m p 0.02 0.41 0.00 0.34 +zélatrice zélateur nom f s 0.02 0.41 0.02 0.00 +zélote zélote nom m s 0.08 0.81 0.02 0.34 +zélotes zélote nom m p 0.08 0.81 0.06 0.47 +zélé zélé adj m s 1.19 2.97 0.69 1.42 +zélée zélé adj f s 1.19 2.97 0.11 0.47 +zélées zélé adj f p 1.19 2.97 0.00 0.20 +zélés zélé adj m p 1.19 2.97 0.39 0.88 +zénana zénana nom f s 0.00 0.07 0.00 0.07 +zénith zénith nom m s 0.63 3.38 0.63 3.38 +zénithale zénithal adj f s 0.00 0.14 0.00 0.07 +zénithales zénithal adj f p 0.00 0.14 0.00 0.07 +zéphire zéphire adj s 0.10 0.00 0.10 0.00 +zéphyr zéphyr nom m s 0.09 0.61 0.04 0.47 +zéphyrs zéphyr nom m p 0.09 0.61 0.05 0.14 +zurichois zurichois nom m 0.00 0.14 0.00 0.14 +zurichoise zurichois adj f s 0.00 0.14 0.00 0.07 +zéro zéro nom m s 32.85 18.24 30.44 16.49 +zéros zéro nom m p 32.85 18.24 2.41 1.76 +zut zut ono 13.69 7.16 13.69 7.16 +zézaie zézayer ver 0.02 0.74 0.01 0.27 ind:pre:3s; +zézaiement zézaiement nom m s 0.03 0.20 0.03 0.20 +zézaient zézayer ver 0.02 0.74 0.00 0.07 ind:pre:3p; +zézayaient zézayer ver 0.02 0.74 0.00 0.07 ind:imp:3p; +zézayant zézayer ver 0.02 0.74 0.01 0.20 par:pre; +zézaye zézayer ver 0.02 0.74 0.00 0.07 ind:pre:3s; +zézayer zézayer ver 0.02 0.74 0.00 0.07 inf; +zézette zézette nom f s 0.24 9.32 0.24 9.05 +zézettes zézette nom f p 0.24 9.32 0.00 0.27 +zydeco zydeco nom f s 0.01 0.00 0.01 0.00 +zyeuta zyeuter ver 0.16 2.77 0.00 0.07 ind:pas:3s; +zyeutais zyeuter ver 0.16 2.77 0.00 0.07 ind:imp:1s; +zyeutait zyeuter ver 0.16 2.77 0.00 0.14 ind:imp:3s; +zyeutant zyeuter ver 0.16 2.77 0.00 0.20 par:pre; +zyeute zyeuter ver 0.16 2.77 0.12 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zyeuter zyeuter ver 0.16 2.77 0.02 0.95 inf; +zyeutes zyeuter ver 0.16 2.77 0.01 0.00 ind:pre:2s; +zyeuté zyeuter ver m s 0.16 2.77 0.01 0.14 par:pas; +zygoma zygoma nom m s 0.00 0.07 0.00 0.07 +zygomatique zygomatique adj f s 0.16 0.34 0.11 0.14 +zygomatiques zygomatique adj f p 0.16 0.34 0.05 0.20 +zygote zygote nom m s 0.06 0.00 0.06 0.00 +zyklon zyklon nom m s 0.82 0.00 0.82 0.00 +zzz zzz ono 0.04 0.00 0.04 0.00 +zzzz zzzz ono 0.00 0.07 0.00 0.07 diff --git a/dictionnaires/lexique.txt.old b/dictionnaires/lexique.txt.old new file mode 100644 index 0000000..81421c6 --- /dev/null +++ b/dictionnaires/lexique.txt.old @@ -0,0 +1,125749 @@ +île île nom f s 58.35 108.24 50.20 83.58 +îles île nom f p 58.35 108.24 8.15 24.66 +îlette îlette nom f s 0.00 0.07 0.00 0.07 +îlot îlot nom m s 1.20 10.68 0.42 6.49 +îlotier îlotier nom m s 0.04 0.00 0.04 0.00 +îlots îlot nom m p 1.20 10.68 0.78 4.19 +œuvre œuvre nom s 12.04 0.00 12.04 0.00 +ô ô ono 16.08 33.11 16.08 33.11 +ôta ôter ver 16.81 42.03 0.46 8.04 ind:pas:3s; +ôtai ôter ver 16.81 42.03 0.00 0.68 ind:pas:1s; +ôtaient ôter ver 16.81 42.03 0.01 1.08 ind:imp:3p; +ôtais ôter ver 16.81 42.03 0.03 0.68 ind:imp:1s;ind:imp:2s; +ôtait ôter ver 16.81 42.03 0.16 4.53 ind:imp:3s; +ôtant ôter ver 16.81 42.03 0.43 2.50 par:pre; +ôte ôter ver 16.81 42.03 3.05 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ôtent ôter ver 16.81 42.03 0.29 0.41 ind:pre:3p; +ôter ôter ver 16.81 42.03 5.57 10.00 ind:pre:2p;inf; +ôtera ôter ver 16.81 42.03 0.26 0.34 ind:fut:3s; +ôterai ôter ver 16.81 42.03 0.09 0.07 ind:fut:1s; +ôterais ôter ver 16.81 42.03 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +ôterait ôter ver 16.81 42.03 0.03 0.54 cnd:pre:3s; +ôteras ôter ver 16.81 42.03 0.17 0.14 ind:fut:2s; +ôterez ôter ver 16.81 42.03 0.17 0.20 ind:fut:2p; +ôterions ôter ver 16.81 42.03 0.00 0.07 cnd:pre:1p; +ôtes ôter ver 16.81 42.03 0.65 0.00 ind:pre:2s; +ôtez ôter ver 16.81 42.03 1.30 0.81 imp:pre:2p;ind:pre:2p; +ôtiez ôter ver 16.81 42.03 0.17 0.00 ind:imp:2p; +ôtons ôter ver 16.81 42.03 0.02 0.07 ind:pre:1p; +ôtât ôter ver 16.81 42.03 0.00 0.14 sub:imp:3s; +ôtèrent ôter ver 16.81 42.03 0.00 0.27 ind:pas:3p; +ôté ôter ver m s 16.81 42.03 3.18 5.47 par:pas; +ôtée ôter ver f s 16.81 42.03 0.42 0.54 par:pas; +ôtées ôter ver f p 16.81 42.03 0.16 0.07 par:pas; +ôtés ôter ver m p 16.81 42.03 0.04 0.14 par:pas; +a_capella a_capella adv 0.04 0.07 0.04 0.07 +a_cappella a_cappella adv 0.04 0.07 0.04 0.07 +a_contrario a_contrario adv 0.00 0.27 0.00 0.27 +a_fortiori a_fortiori adv 0.04 0.88 0.04 0.88 +a_giorno a_giorno adv 0.00 0.27 0.00 0.27 +à_jeun à_jeun adv 1.45 3.85 0.18 0.00 +a_l_instar a_l_instar pre 0.26 0.00 0.26 0.00 +a_posteriori a_posteriori adv 0.05 0.20 0.01 0.14 +a_priori a_priori adv 1.04 3.85 0.63 2.57 +a avoir aux 18559.23 12800.81 6350.91 2926.69 ind:pre:3s; +aînesse aînesse nom f s 0.07 0.47 0.07 0.47 +aîné aîné adj m s 6.27 16.42 4.66 10.00 +aînée aîné nom f s 8.92 22.84 2.79 5.07 +aînées aîné nom f p 8.92 22.84 0.05 0.54 +aînés aîné nom m p 8.92 22.84 1.46 4.19 +aître aître nom m s 0.00 0.14 0.00 0.07 +aîtres aître nom m p 0.00 0.14 0.00 0.07 +aï aï nom m s 2.31 0.00 2.31 0.00 +aïd aïd nom m 0.54 0.34 0.54 0.34 +aïe aïe ono 18.25 8.38 18.25 8.38 +aïeul aïeul nom m s 3.13 10.61 1.08 4.46 +aïeule aïeul nom f s 3.13 10.61 0.14 3.24 +aïeules aïeul nom f p 3.13 10.61 0.03 0.54 +aïeuls aïeul nom m p 3.13 10.61 0.14 0.27 +aïeux aïeul nom m p 3.13 10.61 1.75 2.09 +aïkido aïkido nom m s 0.02 0.07 0.02 0.07 +aïoli aïoli nom m s 0.01 0.27 0.01 0.27 +aa aa nom m s 0.01 0.00 0.01 0.00 +ab_absurdo ab_absurdo adv 0.00 0.07 0.00 0.07 +ab_initio ab_initio adv 0.01 0.07 0.01 0.07 +ab_ovo ab_ovo adv 0.00 0.27 0.00 0.27 +abîma abîmer ver 15.83 21.69 0.10 0.74 ind:pas:3s; +abîmai abîmer ver 15.83 21.69 0.00 0.14 ind:pas:1s; +abîmaient abîmer ver 15.83 21.69 0.10 0.20 ind:imp:3p; +abîmait abîmer ver 15.83 21.69 0.01 1.22 ind:imp:3s; +abîmant abîmer ver 15.83 21.69 0.01 0.54 par:pre; +abîme abîme nom m s 6.01 20.61 5.03 14.59 +abîment abîmer ver 15.83 21.69 0.31 0.88 ind:pre:3p; +abîmer abîmer ver 15.83 21.69 5.40 5.95 inf; +abîmera abîmer ver 15.83 21.69 0.04 0.14 ind:fut:3s; +abîmerai abîmer ver 15.83 21.69 0.01 0.00 ind:fut:1s; +abîmerais abîmer ver 15.83 21.69 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +abîmerait abîmer ver 15.83 21.69 0.08 0.20 cnd:pre:3s; +abîmeras abîmer ver 15.83 21.69 0.00 0.14 ind:fut:2s; +abîmerez abîmer ver 15.83 21.69 0.01 0.00 ind:fut:2p; +abîmeront abîmer ver 15.83 21.69 0.02 0.14 ind:fut:3p; +abîmes abîme nom m p 6.01 20.61 0.98 6.01 +abîmez abîmer ver 15.83 21.69 0.30 0.20 imp:pre:2p;ind:pre:2p; +abîmions abîmer ver 15.83 21.69 0.00 0.14 ind:imp:1p; +abîmons abîmer ver 15.83 21.69 0.00 0.07 ind:pre:1p; +abîmé abîmer ver m s 15.83 21.69 3.57 4.73 par:pas; +abîmée abîmer ver f s 15.83 21.69 1.73 1.76 par:pas; +abîmées abîmer ver f p 15.83 21.69 0.56 0.74 par:pas; +abîmés abîmer ver m p 15.83 21.69 0.61 1.35 par:pas; +abaca abaca nom m s 0.01 0.00 0.01 0.00 +abaissa abaisser ver 4.93 18.04 0.00 2.64 ind:pas:3s; +abaissai abaisser ver 4.93 18.04 0.10 0.07 ind:pas:1s; +abaissaient abaisser ver 4.93 18.04 0.00 0.41 ind:imp:3p; +abaissait abaisser ver 4.93 18.04 0.02 2.50 ind:imp:3s; +abaissant abaissant adj m s 0.04 0.27 0.03 0.27 +abaissante abaissant adj f s 0.04 0.27 0.01 0.00 +abaisse_langue abaisse_langue nom m 0.04 0.14 0.04 0.14 +abaisse abaisser ver 4.93 18.04 1.28 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abaissement abaissement nom m s 0.31 2.16 0.31 2.16 +abaissent abaisser ver 4.93 18.04 0.05 0.95 ind:pre:3p; +abaisser abaisser ver 4.93 18.04 1.09 2.91 inf; +abaissera abaisser ver 4.93 18.04 0.19 0.07 ind:fut:3s; +abaisserai abaisser ver 4.93 18.04 0.10 0.07 ind:fut:1s; +abaisseraient abaisser ver 4.93 18.04 0.01 0.07 cnd:pre:3p; +abaisserais abaisser ver 4.93 18.04 0.13 0.00 cnd:pre:1s;cnd:pre:2s; +abaisserait abaisser ver 4.93 18.04 0.02 0.20 cnd:pre:3s; +abaisses abaisser ver 4.93 18.04 0.16 0.07 ind:pre:2s; +abaissez abaisser ver 4.93 18.04 0.53 0.07 imp:pre:2p;ind:pre:2p; +abaissons abaisser ver 4.93 18.04 0.02 0.00 imp:pre:1p; +abaissèrent abaisser ver 4.93 18.04 0.00 0.41 ind:pas:3p; +abaissé abaisser ver m s 4.93 18.04 0.74 1.35 par:pas; +abaissée abaisser ver f s 4.93 18.04 0.17 0.27 par:pas; +abaissées abaissée adj f p 0.02 0.00 0.02 0.00 +abaissés abaisser ver m p 4.93 18.04 0.30 0.07 par:pas; +abalone abalone nom m s 0.01 0.07 0.01 0.00 +abalones abalone nom m p 0.01 0.07 0.00 0.07 +abandon abandon nom m s 4.84 27.36 4.77 25.20 +abandonna abandonner ver 110.86 128.45 0.59 8.92 ind:pas:3s; +abandonnai abandonner ver 110.86 128.45 0.27 2.16 ind:pas:1s; +abandonnaient abandonner ver 110.86 128.45 0.07 1.55 ind:imp:3p; +abandonnais abandonner ver 110.86 128.45 0.35 1.49 ind:imp:1s;ind:imp:2s; +abandonnait abandonner ver 110.86 128.45 1.04 9.46 ind:imp:3s; +abandonnant abandonner ver 110.86 128.45 1.15 9.93 par:pre; +abandonnas abandonner ver 110.86 128.45 0.00 0.14 ind:pas:2s; +abandonne abandonner ver 110.86 128.45 24.04 15.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +abandonnent abandonner ver 110.86 128.45 2.44 2.64 ind:pre:3p;sub:pre:3p; +abandonner abandonner ver 110.86 128.45 28.36 27.70 inf; +abandonnera abandonner ver 110.86 128.45 1.52 0.81 ind:fut:3s; +abandonnerai abandonner ver 110.86 128.45 2.39 0.41 ind:fut:1s; +abandonneraient abandonner ver 110.86 128.45 0.02 0.14 cnd:pre:3p; +abandonnerais abandonner ver 110.86 128.45 0.93 0.27 cnd:pre:1s;cnd:pre:2s; +abandonnerait abandonner ver 110.86 128.45 0.23 0.88 cnd:pre:3s; +abandonneras abandonner ver 110.86 128.45 0.30 0.20 ind:fut:2s; +abandonnerez abandonner ver 110.86 128.45 0.14 0.00 ind:fut:2p; +abandonneriez abandonner ver 110.86 128.45 0.23 0.20 cnd:pre:2p; +abandonnerions abandonner ver 110.86 128.45 0.01 0.00 cnd:pre:1p; +abandonnerons abandonner ver 110.86 128.45 0.39 0.14 ind:fut:1p; +abandonneront abandonner ver 110.86 128.45 0.41 0.27 ind:fut:3p; +abandonnes abandonner ver 110.86 128.45 4.13 0.14 ind:pre:2s;sub:pre:2s; +abandonneurs abandonneur nom m p 0.00 0.07 0.00 0.07 +abandonnez abandonner ver 110.86 128.45 5.72 0.88 imp:pre:2p;ind:pre:2p; +abandonniez abandonner ver 110.86 128.45 0.14 0.14 ind:imp:2p; +abandonnions abandonner ver 110.86 128.45 0.06 0.54 ind:imp:1p; +abandonnique abandonnique adj s 0.00 0.07 0.00 0.07 +abandonnâmes abandonner ver 110.86 128.45 0.00 0.27 ind:pas:1p; +abandonnons abandonner ver 110.86 128.45 1.06 0.68 imp:pre:1p;ind:pre:1p; +abandonnât abandonner ver 110.86 128.45 0.00 0.34 sub:imp:3s; +abandonnèrent abandonner ver 110.86 128.45 0.16 1.42 ind:pas:3p; +abandonné abandonner ver m s 110.86 128.45 22.56 23.92 par:pas; +abandonnée abandonner ver f s 110.86 128.45 7.34 9.66 par:pas; +abandonnées abandonner ver f p 110.86 128.45 1.27 2.70 par:pas; +abandonnés abandonner ver m p 110.86 128.45 3.55 4.93 par:pas; +abandons abandon nom m p 4.84 27.36 0.07 2.16 +abaque abaque nom m s 0.00 0.07 0.00 0.07 +abasourdi abasourdir ver m s 0.55 2.97 0.35 2.09 par:pas; +abasourdie abasourdi adj f s 0.40 2.64 0.14 0.54 +abasourdir abasourdir ver 0.55 2.97 0.01 0.14 inf; +abasourdis abasourdir ver m p 0.55 2.97 0.07 0.20 par:pas; +abasourdissant abasourdissant adj m s 0.01 0.07 0.01 0.00 +abasourdissants abasourdissant adj m p 0.01 0.07 0.00 0.07 +abat_jour abat_jour nom m 0.51 8.24 0.51 8.24 +abat_son abat_son nom m 0.00 0.27 0.00 0.27 +abat abattre ver 43.47 50.61 2.15 4.93 ind:pre:3s; +abatage abatage nom m s 0.00 0.07 0.00 0.07 +abatis abatis nom m 0.00 0.88 0.00 0.88 +abats abattre ver 43.47 50.61 1.79 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +abattage abattage nom m s 0.65 1.28 0.63 1.15 +abattages abattage nom m p 0.65 1.28 0.02 0.14 +abattaient abattre ver 43.47 50.61 0.06 2.36 ind:imp:3p; +abattais abattre ver 43.47 50.61 0.02 0.27 ind:imp:1s; +abattait abattre ver 43.47 50.61 0.42 3.45 ind:imp:3s; +abattant abattre ver 43.47 50.61 0.31 1.96 par:pre; +abattants abattant nom m p 0.07 0.61 0.01 0.07 +abatte abattre ver 43.47 50.61 0.58 0.61 sub:pre:1s;sub:pre:3s; +abattement abattement nom m s 0.18 2.64 0.17 2.36 +abattements abattement nom m p 0.18 2.64 0.01 0.27 +abattent abattre ver 43.47 50.61 0.69 2.03 ind:pre:3p; +abattes abattre ver 43.47 50.61 0.11 0.00 sub:pre:2s; +abatteur abatteur nom m s 0.14 0.27 0.14 0.20 +abatteurs abatteur nom m p 0.14 0.27 0.00 0.07 +abattez abattre ver 43.47 50.61 2.21 0.00 imp:pre:2p;ind:pre:2p; +abattiez abattre ver 43.47 50.61 0.06 0.00 ind:imp:2p; +abattions abattre ver 43.47 50.61 0.00 0.07 ind:imp:1p; +abattirent abattre ver 43.47 50.61 0.03 0.95 ind:pas:3p; +abattis abattis nom m 0.14 1.08 0.14 1.08 +abattit abattre ver 43.47 50.61 0.34 5.07 ind:pas:3s; +abattoir abattoir nom m s 3.16 4.66 2.67 2.36 +abattoirs abattoir nom m p 3.16 4.66 0.48 2.30 +abattons abattre ver 43.47 50.61 0.33 0.00 imp:pre:1p;ind:pre:1p; +abattra abattre ver 43.47 50.61 1.51 0.61 ind:fut:3s; +abattrai abattre ver 43.47 50.61 0.39 0.00 ind:fut:1s; +abattraient abattre ver 43.47 50.61 0.03 0.07 cnd:pre:3p; +abattrais abattre ver 43.47 50.61 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +abattrait abattre ver 43.47 50.61 0.63 0.41 cnd:pre:3s; +abattras abattre ver 43.47 50.61 0.03 0.00 ind:fut:2s; +abattre abattre ver 43.47 50.61 14.43 14.32 inf; +abattrez abattre ver 43.47 50.61 0.26 0.00 ind:fut:2p; +abattriez abattre ver 43.47 50.61 0.02 0.00 cnd:pre:2p; +abattrons abattre ver 43.47 50.61 0.11 0.00 ind:fut:1p; +abattront abattre ver 43.47 50.61 0.34 0.07 ind:fut:3p; +abattu abattre ver m s 43.47 50.61 11.48 7.43 par:pas; +abattue abattre ver f s 43.47 50.61 2.19 2.43 par:pas; +abattues abattre ver f p 43.47 50.61 0.44 0.27 par:pas; +abattures abatture nom f p 0.00 0.14 0.00 0.14 +abattus abattre ver m p 43.47 50.61 2.42 2.43 par:pas; +abbatial abbatial adj m s 0.00 0.61 0.00 0.27 +abbatiale abbatial adj f s 0.00 0.61 0.00 0.27 +abbatiales abbatial adj f p 0.00 0.61 0.00 0.07 +abbaye abbaye nom f s 3.94 3.78 3.66 3.31 +abbayes abbaye nom f p 3.94 3.78 0.28 0.47 +abbesse abbé nom f s 4.46 33.51 0.26 0.41 +abbesses abbé nom f p 4.46 33.51 0.00 0.61 +abbé abbé nom m s 4.46 33.51 4.19 31.28 +abbés abbé nom m p 4.46 33.51 0.02 1.22 +abc abc nom m 0.04 0.00 0.04 0.00 +abcès abcès nom m 1.79 3.31 1.79 3.31 +abdication abdication nom f s 0.05 1.96 0.05 1.82 +abdications abdication nom f p 0.05 1.96 0.00 0.14 +abdiqua abdiquer ver 0.47 2.77 0.00 0.20 ind:pas:3s; +abdiquai abdiquer ver 0.47 2.77 0.00 0.07 ind:pas:1s; +abdiquaient abdiquer ver 0.47 2.77 0.00 0.07 ind:imp:3p; +abdiquais abdiquer ver 0.47 2.77 0.00 0.14 ind:imp:1s; +abdiquait abdiquer ver 0.47 2.77 0.00 0.20 ind:imp:3s; +abdiquant abdiquer ver 0.47 2.77 0.00 0.07 par:pre; +abdique abdiquer ver 0.47 2.77 0.23 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abdiquer abdiquer ver 0.47 2.77 0.08 0.41 inf; +abdiquera abdiquer ver 0.47 2.77 0.01 0.07 ind:fut:3s; +abdiquerais abdiquer ver 0.47 2.77 0.00 0.07 cnd:pre:1s; +abdiquerait abdiquer ver 0.47 2.77 0.00 0.07 cnd:pre:3s; +abdiquez abdiquer ver 0.47 2.77 0.03 0.00 imp:pre:2p;ind:pre:2p; +abdiqué abdiquer ver m s 0.47 2.77 0.11 0.95 par:pas; +abdiquée abdiquer ver f s 0.47 2.77 0.00 0.07 par:pas; +abdomen abdomen nom m s 2.76 1.55 2.76 1.55 +abdominal abdominal adj m s 2.56 0.74 0.50 0.00 +abdominale abdominal adj f s 2.56 0.74 1.30 0.61 +abdominales abdominal adj f p 2.56 0.74 0.70 0.00 +abdominaux abdominal nom m p 0.09 0.68 0.09 0.68 +abdos abdos nom m p 0.86 0.00 0.86 0.00 +abducteur abducteur adj m s 0.01 0.00 0.01 0.00 +abduction abduction nom f s 0.05 0.00 0.05 0.00 +abeille abeille nom f s 9.11 9.86 3.53 3.18 +abeilles abeille nom f p 9.11 9.86 5.59 6.69 +aber aber nom m s 0.25 0.00 0.25 0.00 +aberrant aberrant adj m s 0.84 2.50 0.58 1.08 +aberrante aberrant adj f s 0.84 2.50 0.04 0.61 +aberrantes aberrant adj f p 0.84 2.50 0.20 0.34 +aberrants aberrant adj m p 0.84 2.50 0.02 0.47 +aberration aberration nom f s 1.16 4.46 0.89 3.31 +aberrations aberration nom f p 1.16 4.46 0.27 1.15 +abhorrais abhorrer ver 0.27 1.35 0.01 0.07 ind:imp:1s; +abhorrait abhorrer ver 0.27 1.35 0.01 0.68 ind:imp:3s; +abhorrant abhorrer ver 0.27 1.35 0.01 0.07 par:pre; +abhorre abhorrer ver 0.27 1.35 0.20 0.00 ind:pre:1s;ind:pre:3s; +abhorrer abhorrer ver 0.27 1.35 0.00 0.14 inf; +abhorrez abhorrer ver 0.27 1.35 0.03 0.00 ind:pre:2p; +abhorré abhorrer ver m s 0.27 1.35 0.01 0.27 par:pas; +abhorrée abhorré adj f s 0.01 0.27 0.01 0.07 +abhorrés abhorrer ver m p 0.27 1.35 0.00 0.07 par:pas; +abject abject adj m s 2.19 3.92 1.40 1.69 +abjecte abject adj f s 2.19 3.92 0.69 1.49 +abjectement abjectement adv 0.10 0.07 0.10 0.07 +abjectes abject adj f p 2.19 3.92 0.05 0.20 +abjection abjection nom f s 0.51 2.30 0.37 2.16 +abjections abjection nom f p 0.51 2.30 0.14 0.14 +abjects abject adj m p 2.19 3.92 0.05 0.54 +abjurant abjurer ver 1.53 1.28 0.14 0.00 par:pre; +abjuration abjuration nom f s 0.00 0.47 0.00 0.41 +abjurations abjuration nom f p 0.00 0.47 0.00 0.07 +abjure abjurer ver 1.53 1.28 0.77 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abjurer abjurer ver 1.53 1.28 0.22 0.68 inf; +abjurez abjurer ver 1.53 1.28 0.40 0.00 imp:pre:2p;ind:pre:2p; +abjurons abjurer ver 1.53 1.28 0.00 0.07 ind:pre:1p; +abjuré abjurer ver m s 1.53 1.28 0.00 0.41 par:pas; +abkhaze abkhaze adj f s 0.00 0.07 0.00 0.07 +ablatif ablatif nom m s 0.00 0.14 0.00 0.14 +ablation ablation nom f s 0.45 1.35 0.43 1.28 +ablations ablation nom f p 0.45 1.35 0.03 0.07 +able able nom m s 0.68 0.14 0.68 0.14 +ablette ablette nom f s 0.14 0.95 0.00 0.41 +ablettes ablette nom f p 0.14 0.95 0.14 0.54 +ablution ablution nom f s 0.48 1.55 0.01 0.14 +ablutions ablution nom f p 0.48 1.55 0.47 1.42 +abnégation abnégation nom f s 0.91 3.58 0.91 3.58 +aboi aboi nom m s 0.78 3.58 0.00 0.88 +aboie aboyer ver 7.43 11.82 2.91 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aboiement aboiement nom m s 1.79 5.95 0.44 2.36 +aboiements aboiement nom m p 1.79 5.95 1.35 3.58 +aboient aboyer ver 7.43 11.82 0.54 0.81 ind:pre:3p; +aboiera aboyer ver 7.43 11.82 0.21 0.00 ind:fut:3s; +aboierait aboyer ver 7.43 11.82 0.01 0.07 cnd:pre:3s; +aboieront aboyer ver 7.43 11.82 0.01 0.07 ind:fut:3p; +aboies aboyer ver 7.43 11.82 0.42 0.00 ind:pre:2s; +abois aboi nom m p 0.78 3.58 0.78 2.70 +aboli abolir ver m s 3.08 9.32 1.10 1.42 par:pas; +abolie aboli adj f s 0.08 2.57 0.06 0.61 +abolies abolir ver f p 3.08 9.32 0.11 0.34 par:pas; +abolir abolir ver 3.08 9.32 1.08 2.97 inf; +abolira abolir ver 3.08 9.32 0.01 0.34 ind:fut:3s; +abolirait abolir ver 3.08 9.32 0.00 0.07 cnd:pre:3s; +aboliras abolir ver 3.08 9.32 0.01 0.00 ind:fut:2s; +abolis abolir ver m p 3.08 9.32 0.14 0.41 ind:pre:1s;par:pas; +abolissaient abolir ver 3.08 9.32 0.00 0.41 ind:imp:3p; +abolissais abolir ver 3.08 9.32 0.00 0.07 ind:imp:1s; +abolissait abolir ver 3.08 9.32 0.00 0.74 ind:imp:3s; +abolissant abolir ver 3.08 9.32 0.25 0.54 par:pre; +abolissent abolir ver 3.08 9.32 0.00 0.14 ind:pre:3p; +abolissions abolir ver 3.08 9.32 0.00 0.07 ind:imp:1p; +abolissons abolir ver 3.08 9.32 0.02 0.00 imp:pre:1p;ind:pre:1p; +abolit abolir ver 3.08 9.32 0.29 1.28 ind:pre:3s;ind:pas:3s; +abolition abolition nom f s 0.45 1.49 0.45 1.49 +abolitionniste abolitionniste nom s 0.17 0.07 0.07 0.00 +abolitionnistes abolitionniste nom p 0.17 0.07 0.10 0.07 +abominable abominable adj s 5.39 11.22 4.78 8.99 +abominablement abominablement adv 0.01 0.68 0.01 0.68 +abominables abominable adj p 5.39 11.22 0.62 2.23 +abominaient abominer ver 0.00 0.54 0.00 0.07 ind:imp:3p; +abomination abomination nom f s 1.94 4.53 1.24 3.04 +abominations abomination nom f p 1.94 4.53 0.69 1.49 +abomine abominer ver 0.00 0.54 0.00 0.41 ind:pre:1s;ind:pre:3s; +abominer abominer ver 0.00 0.54 0.00 0.07 inf; +abonda abonder ver 1.13 4.59 0.00 0.27 ind:pas:3s; +abondai abonder ver 1.13 4.59 0.00 0.07 ind:pas:1s; +abondaient abonder ver 1.13 4.59 0.12 1.42 ind:imp:3p; +abondais abonder ver 1.13 4.59 0.01 0.14 ind:imp:1s; +abondait abonder ver 1.13 4.59 0.02 0.47 ind:imp:3s; +abondamment abondamment adv 0.30 4.93 0.30 4.93 +abondance abondance nom f s 2.76 9.39 2.76 9.39 +abondant abondant adj m s 1.36 7.03 0.09 1.42 +abondante abondant adj f s 1.36 7.03 0.89 3.45 +abondantes abondant adj f p 1.36 7.03 0.33 1.22 +abondants abondant adj m p 1.36 7.03 0.05 0.95 +abondassent abonder ver 1.13 4.59 0.00 0.07 sub:imp:3p; +abonde abonder ver 1.13 4.59 0.28 0.81 ind:pre:1s;ind:pre:3s; +abondent abonder ver 1.13 4.59 0.63 0.47 ind:pre:3p; +abonder abonder ver 1.13 4.59 0.03 0.61 inf; +abondé abonder ver m s 1.13 4.59 0.01 0.20 par:pas; +abonnai abonner ver 1.10 2.09 0.00 0.07 ind:pas:1s; +abonnant abonner ver 1.10 2.09 0.01 0.00 par:pre; +abonne abonner ver 1.10 2.09 0.18 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abonnement abonnement nom m s 4.82 1.62 3.37 1.55 +abonnements abonnement nom m p 4.82 1.62 1.45 0.07 +abonner abonner ver 1.10 2.09 0.27 0.14 inf; +abonnez abonner ver 1.10 2.09 0.03 0.07 imp:pre:2p;ind:pre:2p; +abonnât abonner ver 1.10 2.09 0.00 0.07 sub:imp:3s; +abonné abonner ver m s 1.10 2.09 0.30 0.88 par:pas; +abonnée abonner ver f s 1.10 2.09 0.15 0.68 par:pas; +abonnées abonné nom f p 0.87 2.23 0.02 0.20 +abonnés abonné nom m p 0.87 2.23 0.52 1.55 +abord abord nom m s 2.22 19.05 0.89 7.30 +aborda aborder ver 12.55 33.18 0.16 3.99 ind:pas:3s; +abordable abordable adj s 0.47 0.20 0.34 0.20 +abordables abordable adj p 0.47 0.20 0.13 0.00 +abordage abordage nom m s 1.22 1.49 1.17 1.42 +abordages abordage nom m p 1.22 1.49 0.05 0.07 +abordai aborder ver 12.55 33.18 0.00 0.61 ind:pas:1s; +abordaient aborder ver 12.55 33.18 0.03 1.28 ind:imp:3p; +abordais aborder ver 12.55 33.18 0.00 0.54 ind:imp:1s; +abordait aborder ver 12.55 33.18 0.47 2.50 ind:imp:3s; +abordant aborder ver 12.55 33.18 0.03 1.42 par:pre; +aborde aborder ver 12.55 33.18 1.76 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abordent aborder ver 12.55 33.18 0.09 0.54 ind:pre:3p; +aborder aborder ver 12.55 33.18 5.65 12.91 inf; +abordera aborder ver 12.55 33.18 0.20 0.34 ind:fut:3s; +aborderai aborder ver 12.55 33.18 0.08 0.14 ind:fut:1s; +aborderaient aborder ver 12.55 33.18 0.00 0.07 cnd:pre:3p; +aborderais aborder ver 12.55 33.18 0.02 0.07 cnd:pre:1s; +aborderait aborder ver 12.55 33.18 0.02 0.14 cnd:pre:3s; +aborderiez aborder ver 12.55 33.18 0.01 0.00 cnd:pre:2p; +aborderions aborder ver 12.55 33.18 0.00 0.14 cnd:pre:1p; +aborderons aborder ver 12.55 33.18 0.09 0.07 ind:fut:1p; +aborderont aborder ver 12.55 33.18 0.04 0.14 ind:fut:3p; +abordes aborder ver 12.55 33.18 0.36 0.07 ind:pre:2s; +abordez aborder ver 12.55 33.18 0.75 0.00 imp:pre:2p;ind:pre:2p; +abordiez aborder ver 12.55 33.18 0.02 0.07 ind:imp:2p; +abordions aborder ver 12.55 33.18 0.04 0.34 ind:imp:1p; +abordâmes aborder ver 12.55 33.18 0.00 0.27 ind:pas:1p; +abordons aborder ver 12.55 33.18 0.72 0.41 imp:pre:1p;ind:pre:1p; +abords abord nom m p 2.22 19.05 1.33 11.76 +abordèrent aborder ver 12.55 33.18 0.01 0.68 ind:pas:3p; +abordé aborder ver m s 12.55 33.18 1.36 2.97 par:pas; +abordée aborder ver f s 12.55 33.18 0.34 0.54 par:pas; +abordées aborder ver f p 12.55 33.18 0.05 0.20 par:pas; +abordés aborder ver m p 12.55 33.18 0.26 0.41 par:pas; +aborigène aborigène nom s 0.60 0.14 0.21 0.00 +aborigènes aborigène nom p 0.60 0.14 0.39 0.14 +abornement abornement nom m s 0.00 0.07 0.00 0.07 +abortif abortif adj m s 0.04 0.34 0.01 0.00 +abortive abortif adj f s 0.04 0.34 0.01 0.14 +abortives abortif adj f p 0.04 0.34 0.02 0.20 +abâtardi abâtardir ver m s 0.14 0.41 0.00 0.20 par:pas; +abâtardie abâtardi adj f s 0.01 0.07 0.01 0.07 +abâtardies abâtardir ver f p 0.14 0.41 0.00 0.07 par:pas; +abâtardir abâtardir ver 0.14 0.41 0.00 0.07 inf; +abâtardirai abâtardir ver 0.14 0.41 0.00 0.07 ind:fut:1s; +abâtardissant abâtardir ver 0.14 0.41 0.14 0.00 par:pre; +abouchaient aboucher ver 0.00 0.81 0.00 0.07 ind:imp:3p; +abouchais aboucher ver 0.00 0.81 0.00 0.07 ind:imp:1s; +abouchait aboucher ver 0.00 0.81 0.00 0.07 ind:imp:3s; +abouchant aboucher ver 0.00 0.81 0.00 0.07 par:pre; +abouchements abouchement nom m p 0.00 0.07 0.00 0.07 +aboucher aboucher ver 0.00 0.81 0.00 0.34 inf; +abouché aboucher ver m s 0.00 0.81 0.00 0.07 par:pas; +abouchée aboucher ver f s 0.00 0.81 0.00 0.07 par:pas; +abouchés aboucher ver m p 0.00 0.81 0.00 0.07 par:pas; +aboule abouler ver 1.80 0.61 1.43 0.34 imp:pre:2s;ind:pre:3s; +abouler abouler ver 1.80 0.61 0.11 0.14 inf; +aboules abouler ver 1.80 0.61 0.01 0.00 ind:pre:2s; +aboulez abouler ver 1.80 0.61 0.25 0.14 imp:pre:2p; +aboulie aboulie nom f s 0.00 0.14 0.00 0.14 +aboulique aboulique nom s 0.00 0.07 0.00 0.07 +abouliques aboulique adj p 0.00 0.14 0.00 0.14 +abounas abouna nom m p 0.00 0.07 0.00 0.07 +about about nom m s 5.94 0.47 5.94 0.47 +aboutîmes aboutir ver 5.34 25.81 0.00 0.14 ind:pas:1p; +aboutait abouter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +abouti aboutir ver m s 5.34 25.81 1.24 2.84 par:pas; +aboutie abouti adj f s 0.11 0.20 0.04 0.07 +aboutir aboutir ver 5.34 25.81 1.34 9.80 inf; +aboutira aboutir ver 5.34 25.81 0.29 0.41 ind:fut:3s; +aboutirai aboutir ver 5.34 25.81 0.00 0.07 ind:fut:1s; +aboutiraient aboutir ver 5.34 25.81 0.01 0.14 cnd:pre:3p; +aboutirais aboutir ver 5.34 25.81 0.00 0.14 cnd:pre:1s; +aboutirait aboutir ver 5.34 25.81 0.05 0.61 cnd:pre:3s; +aboutiras aboutir ver 5.34 25.81 0.00 0.07 ind:fut:2s; +aboutirent aboutir ver 5.34 25.81 0.00 0.68 ind:pas:3p; +aboutirons aboutir ver 5.34 25.81 0.01 0.00 ind:fut:1p; +aboutiront aboutir ver 5.34 25.81 0.04 0.27 ind:fut:3p; +aboutis aboutir ver m p 5.34 25.81 0.07 0.34 ind:pre:1s;ind:pre:2s;par:pas; +aboutissaient aboutir ver 5.34 25.81 0.15 1.15 ind:imp:3p; +aboutissait aboutir ver 5.34 25.81 0.03 2.50 ind:imp:3s; +aboutissant aboutir ver 5.34 25.81 0.00 1.15 par:pre; +aboutissants aboutissant nom m p 0.09 0.95 0.09 0.81 +aboutisse aboutir ver 5.34 25.81 0.08 0.41 sub:pre:1s;sub:pre:3s; +aboutissement aboutissement nom m s 0.50 4.05 0.50 4.05 +aboutissent aboutir ver 5.34 25.81 0.47 1.49 ind:pre:3p; +aboutissez aboutir ver 5.34 25.81 0.02 0.07 ind:pre:2p; +aboutissiez aboutir ver 5.34 25.81 0.00 0.07 ind:imp:2p; +aboutissions aboutir ver 5.34 25.81 0.00 0.07 ind:imp:1p; +aboutit aboutir ver 5.34 25.81 1.50 3.45 ind:pre:3s;ind:pas:3s; +aboutonnai aboutonner ver 0.00 0.07 0.00 0.07 ind:pas:1s; +aboutons abouter ver 0.00 0.14 0.00 0.07 imp:pre:1p; +aboya aboyer ver 7.43 11.82 0.00 1.42 ind:pas:3s; +aboyaient aboyer ver 7.43 11.82 0.05 0.68 ind:imp:3p; +aboyait aboyer ver 7.43 11.82 0.33 1.55 ind:imp:3s; +aboyant aboyer ver 7.43 11.82 0.18 1.28 par:pre; +aboyante aboyant adj f s 0.01 0.20 0.00 0.07 +aboyer aboyer ver 7.43 11.82 2.39 3.04 inf; +aboyeur aboyeur nom m s 0.06 0.61 0.05 0.34 +aboyeurs aboyeur nom m p 0.06 0.61 0.01 0.27 +aboyons aboyer ver 7.43 11.82 0.10 0.07 ind:pre:1p; +aboyèrent aboyer ver 7.43 11.82 0.00 0.27 ind:pas:3p; +aboyé aboyer ver m s 7.43 11.82 0.28 0.54 par:pas; +abracadabra abracadabra nom m s 0.98 0.27 0.98 0.27 +abracadabrant abracadabrant adj m s 0.26 0.68 0.03 0.20 +abracadabrante abracadabrant adj f s 0.26 0.68 0.13 0.00 +abracadabrantes abracadabrant adj f p 0.26 0.68 0.10 0.34 +abracadabrants abracadabrant adj m p 0.26 0.68 0.00 0.14 +abracadabré abracadabrer ver m s 0.01 0.00 0.01 0.00 par:pas; +abrasif abrasif nom m s 0.15 0.41 0.13 0.34 +abrasifs abrasif nom m p 0.15 0.41 0.03 0.07 +abrasion abrasion nom f s 0.19 0.14 0.19 0.14 +abrasive abrasif adj f s 0.09 0.27 0.04 0.00 +abrasé abraser ver m s 0.00 0.07 0.00 0.07 par:pas; +abraxas abraxas nom m 0.29 0.00 0.29 0.00 +abreuva abreuver ver 1.13 6.22 0.00 0.27 ind:pas:3s; +abreuvage abreuvage nom m s 0.00 0.07 0.00 0.07 +abreuvaient abreuver ver 1.13 6.22 0.00 0.27 ind:imp:3p; +abreuvait abreuver ver 1.13 6.22 0.03 0.47 ind:imp:3s; +abreuvant abreuver ver 1.13 6.22 0.01 0.34 par:pre; +abreuve abreuver ver 1.13 6.22 0.23 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abreuvent abreuver ver 1.13 6.22 0.04 0.34 ind:pre:3p; +abreuver abreuver ver 1.13 6.22 0.48 2.09 inf; +abreuvera abreuver ver 1.13 6.22 0.11 0.00 ind:fut:3s; +abreuveraient abreuver ver 1.13 6.22 0.00 0.07 cnd:pre:3p; +abreuvez abreuver ver 1.13 6.22 0.03 0.00 imp:pre:2p;ind:pre:2p; +abreuvoir abreuvoir nom m s 0.35 3.92 0.34 3.24 +abreuvoirs abreuvoir nom m p 0.35 3.92 0.01 0.68 +abreuvons abreuver ver 1.13 6.22 0.01 0.07 imp:pre:1p; +abreuvé abreuver ver m s 1.13 6.22 0.04 0.68 par:pas; +abreuvée abreuver ver f s 1.13 6.22 0.10 0.27 par:pas; +abreuvés abreuver ver m p 1.13 6.22 0.04 0.27 par:pas; +abri_refuge abri_refuge nom m s 0.00 0.07 0.00 0.07 +abri abri nom m s 25.90 56.76 22.70 51.08 +abribus abribus nom m 0.04 0.14 0.04 0.14 +abricot abricot nom m s 1.24 2.50 0.50 1.15 +abricotez abricoter ver 0.01 0.00 0.01 0.00 imp:pre:2p; +abricotier abricotier nom m s 0.02 0.41 0.02 0.14 +abricotiers abricotier nom m p 0.02 0.41 0.00 0.27 +abricotine abricotine nom f s 0.00 0.07 0.00 0.07 +abricots abricot nom m p 1.24 2.50 0.74 1.35 +abris abri nom m p 25.90 56.76 3.20 5.68 +abrita abriter ver 7.91 26.22 0.02 0.68 ind:pas:3s; +abritai abriter ver 7.91 26.22 0.00 0.07 ind:pas:1s; +abritaient abriter ver 7.91 26.22 0.14 1.49 ind:imp:3p; +abritais abriter ver 7.91 26.22 0.01 0.14 ind:imp:1s; +abritait abriter ver 7.91 26.22 0.23 4.53 ind:imp:3s; +abritant abriter ver 7.91 26.22 0.25 1.82 par:pre; +abrite abriter ver 7.91 26.22 2.09 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abritent abriter ver 7.91 26.22 0.33 1.15 ind:pre:3p; +abriter abriter ver 7.91 26.22 2.36 6.96 ind:pre:2p;inf; +abritera abriter ver 7.91 26.22 0.10 0.07 ind:fut:3s; +abriterait abriter ver 7.91 26.22 0.04 0.20 cnd:pre:3s; +abriterons abriter ver 7.91 26.22 0.03 0.00 ind:fut:1p; +abriteront abriter ver 7.91 26.22 0.01 0.07 ind:fut:3p; +abrites abriter ver 7.91 26.22 0.14 0.07 ind:pre:2s; +abritez abriter ver 7.91 26.22 1.08 0.20 imp:pre:2p;ind:pre:2p; +abritiez abriter ver 7.91 26.22 0.01 0.00 ind:imp:2p; +abritions abriter ver 7.91 26.22 0.01 0.14 ind:imp:1p; +abritâmes abriter ver 7.91 26.22 0.01 0.00 ind:pas:1p; +abritons abriter ver 7.91 26.22 0.40 0.00 imp:pre:1p;ind:pre:1p; +abritèrent abriter ver 7.91 26.22 0.00 0.07 ind:pas:3p; +abrité abriter ver m s 7.91 26.22 0.35 3.11 par:pas; +abritée abriter ver f s 7.91 26.22 0.04 1.15 par:pas; +abritées abriter ver f p 7.91 26.22 0.24 0.54 par:pas; +abrités abrité adj m p 0.17 1.08 0.03 0.07 +abrogation abrogation nom f s 0.16 0.14 0.16 0.14 +abrogent abroger ver 0.71 0.34 0.23 0.00 ind:pre:3p; +abroger abroger ver 0.71 0.34 0.09 0.07 inf; +abrogé abroger ver m s 0.71 0.34 0.11 0.00 par:pas; +abrogée abroger ver f s 0.71 0.34 0.28 0.00 par:pas; +abrogées abroger ver f p 0.71 0.34 0.00 0.14 par:pas; +abrogés abroger ver m p 0.71 0.34 0.01 0.14 par:pas; +abrège abréger ver 4.21 4.86 1.25 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abrègent abréger ver 4.21 4.86 0.22 0.34 ind:pre:3p; +abrégea abréger ver 4.21 4.86 0.02 0.14 ind:pas:3s; +abrégeai abréger ver 4.21 4.86 0.00 0.07 ind:pas:1s; +abrégeaient abréger ver 4.21 4.86 0.00 0.07 ind:imp:3p; +abrégeait abréger ver 4.21 4.86 0.00 0.20 ind:imp:3s; +abrégeant abréger ver 4.21 4.86 0.00 0.07 par:pre; +abrégeons abréger ver 4.21 4.86 0.12 0.07 imp:pre:1p; +abrégeât abréger ver 4.21 4.86 0.00 0.07 sub:imp:3s; +abréger abréger ver 4.21 4.86 1.61 1.82 inf; +abrégera abréger ver 4.21 4.86 0.01 0.00 ind:fut:3s; +abrégerai abréger ver 4.21 4.86 0.01 0.00 ind:fut:1s; +abrégerait abréger ver 4.21 4.86 0.00 0.07 cnd:pre:3s; +abrégez abréger ver 4.21 4.86 0.73 0.07 imp:pre:2p; +abrégé abréger ver m s 4.21 4.86 0.19 0.41 par:pas; +abrégée abrégé adj f s 0.20 0.41 0.13 0.20 +abrégés abrégé nom m p 0.12 0.54 0.01 0.07 +abrupt abrupt adj m s 1.36 7.43 0.54 2.23 +abrupte abrupt adj f s 1.36 7.43 0.43 2.84 +abruptement abruptement adv 0.07 2.03 0.07 2.03 +abruptes abrupt adj f p 1.36 7.43 0.24 1.55 +abrupts abrupt adj m p 1.36 7.43 0.14 0.81 +abruti abruti nom m s 25.64 6.69 19.13 4.39 +abrutie abruti nom f s 25.64 6.69 0.38 0.47 +abruties abruti adj f p 6.13 4.66 0.03 0.07 +abrutir abrutir ver 2.56 6.01 0.11 0.95 inf; +abrutira abrutir ver 2.56 6.01 0.00 0.07 ind:fut:3s; +abrutis abruti nom m p 25.64 6.69 6.10 1.82 +abrutissaient abrutir ver 2.56 6.01 0.00 0.20 ind:imp:3p; +abrutissais abrutir ver 2.56 6.01 0.00 0.07 ind:imp:1s; +abrutissait abrutir ver 2.56 6.01 0.14 0.27 ind:imp:3s; +abrutissant abrutissant adj m s 0.19 0.41 0.14 0.14 +abrutissante abrutissant adj f s 0.19 0.41 0.00 0.27 +abrutissantes abrutissant adj f p 0.19 0.41 0.02 0.00 +abrutissants abrutissant adj m p 0.19 0.41 0.03 0.00 +abrutissement abrutissement nom m s 0.13 1.42 0.13 1.42 +abrutissent abrutir ver 2.56 6.01 0.16 0.00 ind:pre:3p; +abrutisseur abrutisseur nom m s 0.00 0.07 0.00 0.07 +abrutissions abrutir ver 2.56 6.01 0.00 0.07 ind:imp:1p; +abrutit abrutir ver 2.56 6.01 0.19 0.41 ind:pre:3s;ind:pas:3s; +abréviatif abréviatif adj m s 0.00 0.07 0.00 0.07 +abréviation abréviation nom f s 0.46 0.95 0.37 0.41 +abréviations abréviation nom f p 0.46 0.95 0.09 0.54 +abscisse abscisse nom f s 0.02 0.00 0.02 0.00 +abscission abscission nom f s 0.00 0.07 0.00 0.07 +abscons abscons adj m 0.12 0.68 0.12 0.54 +absconse abscons adj f s 0.12 0.68 0.00 0.07 +absconses abscons adj f p 0.12 0.68 0.00 0.07 +absence absence nom f s 22.86 76.28 22.02 72.50 +absences absence nom f p 22.86 76.28 0.84 3.78 +absent absent adj m s 14.91 29.80 9.46 18.18 +absenta absenter ver 6.14 6.01 0.00 0.34 ind:pas:3s; +absentai absenter ver 6.14 6.01 0.00 0.07 ind:pas:1s; +absentaient absenter ver 6.14 6.01 0.00 0.14 ind:imp:3p; +absentais absenter ver 6.14 6.01 0.04 0.14 ind:imp:1s;ind:imp:2s; +absentait absenter ver 6.14 6.01 0.16 1.15 ind:imp:3s; +absentant absenter ver 6.14 6.01 0.00 0.07 par:pre; +absente absent adj f s 14.91 29.80 3.49 6.22 +absenter absenter ver 6.14 6.01 2.90 1.49 inf; +absentera absenter ver 6.14 6.01 0.03 0.14 ind:fut:3s; +absenterai absenter ver 6.14 6.01 0.03 0.07 ind:fut:1s; +absenterait absenter ver 6.14 6.01 0.00 0.07 cnd:pre:3s; +absentes absenter ver 6.14 6.01 0.07 0.00 ind:pre:2s; +absents absent adj m p 14.91 29.80 1.91 4.80 +absentèrent absenter ver 6.14 6.01 0.00 0.07 ind:pas:3p; +absenté absenter ver m s 6.14 6.01 0.89 0.34 par:pas; +absentée absenter ver f s 6.14 6.01 0.42 0.20 par:pas; +absentéisme absentéisme nom m s 0.14 0.20 0.14 0.20 +absentéiste absentéiste adj m s 0.01 0.00 0.01 0.00 +absentéiste absentéiste nom s 0.01 0.00 0.01 0.00 +absentés absenter ver m p 6.14 6.01 0.15 0.07 par:pas; +abside abside nom f s 0.00 1.62 0.00 1.55 +absides abside nom f p 0.00 1.62 0.00 0.07 +absidiales absidial adj f p 0.00 0.14 0.00 0.14 +absidiole absidiole nom f s 0.00 0.07 0.00 0.07 +absinthant absinther ver 0.00 0.07 0.00 0.07 par:pre; +absinthe absinthe nom f s 1.28 2.91 1.28 2.91 +absolu absolu adj m s 17.25 34.39 8.55 16.42 +absolue absolu adj f s 17.25 34.39 8.44 16.15 +absolues absolu adj f p 17.25 34.39 0.20 1.01 +absolument absolument adv 89.79 63.45 89.79 63.45 +absolus absolu adj m p 17.25 34.39 0.06 0.81 +absolution absolution nom f s 1.06 2.50 1.06 2.50 +absolutisme absolutisme nom m s 0.12 0.68 0.12 0.68 +absolvaient absoudre ver 2.66 3.72 0.00 0.07 ind:imp:3p; +absolvait absoudre ver 2.66 3.72 0.00 0.27 ind:imp:3s; +absolvant absolvant adj m s 0.00 0.14 0.00 0.14 +absolve absoudre ver 2.66 3.72 0.16 0.00 sub:pre:3s; +absolvent absoudre ver 2.66 3.72 0.00 0.20 ind:pre:3p; +absolves absoudre ver 2.66 3.72 0.01 0.00 sub:pre:2s; +absorba absorber ver 6.66 28.65 0.11 2.03 ind:pas:3s; +absorbables absorbable adj m p 0.00 0.07 0.00 0.07 +absorbai absorber ver 6.66 28.65 0.00 0.07 ind:pas:1s; +absorbaient absorber ver 6.66 28.65 0.04 0.68 ind:imp:3p; +absorbais absorber ver 6.66 28.65 0.00 0.27 ind:imp:1s; +absorbait absorber ver 6.66 28.65 0.20 3.11 ind:imp:3s; +absorbant absorbant adj m s 0.14 1.35 0.08 0.81 +absorbante absorbant adj f s 0.14 1.35 0.04 0.27 +absorbantes absorbant adj f p 0.14 1.35 0.01 0.20 +absorbants absorbant adj m p 0.14 1.35 0.01 0.07 +absorbe absorber ver 6.66 28.65 1.61 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +absorbent absorber ver 6.66 28.65 0.33 0.61 ind:pre:3p; +absorber absorber ver 6.66 28.65 1.86 4.53 inf; +absorbera absorber ver 6.66 28.65 0.23 0.07 ind:fut:3s; +absorberai absorber ver 6.66 28.65 0.02 0.00 ind:fut:1s; +absorberaient absorber ver 6.66 28.65 0.11 0.07 cnd:pre:3p; +absorberait absorber ver 6.66 28.65 0.04 0.14 cnd:pre:3s; +absorbeur absorbeur nom m s 0.03 0.00 0.03 0.00 +absorbez absorber ver 6.66 28.65 0.06 0.00 imp:pre:2p;ind:pre:2p; +absorbions absorber ver 6.66 28.65 0.00 0.07 ind:imp:1p; +absorbons absorber ver 6.66 28.65 0.00 0.07 ind:pre:1p; +absorbèrent absorber ver 6.66 28.65 0.01 0.41 ind:pas:3p; +absorbé absorber ver m s 6.66 28.65 1.35 7.84 par:pas; +absorbée absorber ver f s 6.66 28.65 0.40 2.30 par:pas; +absorbées absorber ver f p 6.66 28.65 0.07 0.41 par:pas; +absorbés absorber ver m p 6.66 28.65 0.16 1.69 par:pas; +absorption absorption nom f s 0.58 2.03 0.58 1.89 +absorptions absorption nom f p 0.58 2.03 0.00 0.14 +absoudrai absoudre ver 2.66 3.72 0.01 0.00 ind:fut:1s; +absoudrait absoudre ver 2.66 3.72 0.14 0.14 cnd:pre:3s; +absoudre absoudre ver 2.66 3.72 1.08 1.55 inf; +absoudriez absoudre ver 2.66 3.72 0.01 0.07 cnd:pre:2p; +absous absoudre ver m 2.66 3.72 1.15 1.08 imp:pre:2s;ind:pre:1s;par:pas;par:pas;par:pas; +absout absoudre ver 2.66 3.72 0.11 0.20 ind:pre:3s; +absoute absoute nom f s 0.00 0.14 0.00 0.14 +absoutes absoudre ver f p 2.66 3.72 0.00 0.07 par:pas; +abstînt abstenir ver 4.52 8.78 0.00 0.27 sub:imp:3s; +abstenaient abstenir ver 4.52 8.78 0.00 0.07 ind:imp:3p; +abstenais abstenir ver 4.52 8.78 0.01 0.34 ind:imp:1s; +abstenait abstenir ver 4.52 8.78 0.00 0.81 ind:imp:3s; +abstenant abstenir ver 4.52 8.78 0.12 0.41 par:pre; +abstenez abstenir ver 4.52 8.78 0.57 0.07 imp:pre:2p;ind:pre:2p; +absteniez abstenir ver 4.52 8.78 0.01 0.00 ind:imp:2p; +abstenions abstenir ver 4.52 8.78 0.00 0.07 ind:imp:1p; +abstenir abstenir ver 4.52 8.78 1.80 2.77 inf; +abstenons abstenir ver 4.52 8.78 0.02 0.20 imp:pre:1p;ind:pre:1p; +abstention abstention nom f s 0.14 1.28 0.14 1.28 +abstentionniste abstentionniste nom s 0.01 0.14 0.01 0.00 +abstentionnistes abstentionniste nom p 0.01 0.14 0.00 0.14 +abstenu abstenir ver m s 4.52 8.78 0.17 0.81 par:pas; +abstenue abstenir ver f s 4.52 8.78 0.05 0.47 par:pas; +abstenues abstenir ver f p 4.52 8.78 0.14 0.00 par:pas; +abstenus abstenir ver m p 4.52 8.78 0.00 0.14 par:pas; +abstiendrai abstenir ver 4.52 8.78 0.04 0.00 ind:fut:1s; +abstiendraient abstenir ver 4.52 8.78 0.00 0.07 cnd:pre:3p; +abstiendrais abstenir ver 4.52 8.78 0.03 0.00 cnd:pre:1s; +abstiendrait abstenir ver 4.52 8.78 0.02 0.07 cnd:pre:3s; +abstiendras abstenir ver 4.52 8.78 0.01 0.07 ind:fut:2s; +abstiendrions abstenir ver 4.52 8.78 0.00 0.14 cnd:pre:1p; +abstiendrons abstenir ver 4.52 8.78 0.12 0.00 ind:fut:1p; +abstiendront abstenir ver 4.52 8.78 0.12 0.00 ind:fut:3p; +abstienne abstenir ver 4.52 8.78 0.02 0.07 sub:pre:1s;sub:pre:3s; +abstiennent abstenir ver 4.52 8.78 0.02 0.20 ind:pre:3p; +abstiennes abstenir ver 4.52 8.78 0.02 0.00 sub:pre:2s; +abstiens abstenir ver 4.52 8.78 0.84 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +abstient abstenir ver 4.52 8.78 0.17 0.34 ind:pre:3s; +abstinence abstinence nom f s 1.62 1.62 1.60 1.42 +abstinences abstinence nom f p 1.62 1.62 0.02 0.20 +abstinent abstinent adj m s 0.11 0.00 0.10 0.00 +abstinente abstinent adj f s 0.11 0.00 0.01 0.00 +abstinrent abstenir ver 4.52 8.78 0.01 0.07 ind:pas:3p; +abstins abstenir ver 4.52 8.78 0.00 0.41 ind:pas:1s; +abstint abstenir ver 4.52 8.78 0.20 0.81 ind:pas:3s; +abstraction abstraction nom f s 0.68 2.97 0.66 2.09 +abstractions abstraction nom f p 0.68 2.97 0.03 0.88 +abstraire abstraire ver 0.27 3.18 0.02 0.74 inf; +abstrais abstraire ver 0.27 3.18 0.00 0.07 ind:pre:1s; +abstrait abstrait adj m s 1.62 11.35 0.61 3.85 +abstraite abstrait adj f s 1.62 11.35 0.69 4.80 +abstraitement abstraitement adv 0.00 0.34 0.00 0.34 +abstraites abstraire ver f p 0.27 3.18 0.11 0.20 par:pas; +abstraits abstrait adj m p 1.62 11.35 0.25 1.15 +abstrus abstrus adj m p 0.00 0.54 0.00 0.34 +abstruse abstrus adj f s 0.00 0.54 0.00 0.14 +abstruses abstrus adj f p 0.00 0.54 0.00 0.07 +absurde absurde adj s 23.59 30.95 21.56 24.80 +absurdement absurdement adv 0.14 3.72 0.14 3.72 +absurdes absurde adj p 23.59 30.95 2.03 6.15 +absurdistes absurdiste nom p 0.00 0.07 0.00 0.07 +absurdité absurdité nom f s 2.34 6.28 1.44 5.54 +absurdités absurdité nom f p 2.34 6.28 0.90 0.74 +abécédaire abécédaire nom m s 0.18 0.07 0.18 0.07 +abus abus nom m 4.75 8.58 4.75 8.58 +abusa abuser ver 19.98 14.26 0.02 0.20 ind:pas:3s; +abusai abuser ver 19.98 14.26 0.00 0.07 ind:pas:1s; +abusaient abuser ver 19.98 14.26 0.04 0.27 ind:imp:3p; +abusais abuser ver 19.98 14.26 0.03 0.27 ind:imp:1s; +abusait abuser ver 19.98 14.26 0.53 1.82 ind:imp:3s; +abusant abuser ver 19.98 14.26 0.24 0.81 par:pre; +abuse abuser ver 19.98 14.26 4.08 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abusent abuser ver 19.98 14.26 1.02 0.88 ind:pre:3p; +abuser abuser ver 19.98 14.26 5.87 4.12 inf; +abusera abuser ver 19.98 14.26 0.04 0.00 ind:fut:3s; +abuserai abuser ver 19.98 14.26 0.03 0.07 ind:fut:1s; +abuserais abuser ver 19.98 14.26 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +abuserait abuser ver 19.98 14.26 0.02 0.07 cnd:pre:3s; +abuserez abuser ver 19.98 14.26 0.01 0.07 ind:fut:2p; +abuseriez abuser ver 19.98 14.26 0.02 0.00 cnd:pre:2p; +abuses abuser ver 19.98 14.26 0.50 0.07 ind:pre:2s; +abuseur abuseur nom m s 0.04 0.00 0.04 0.00 +abusez abuser ver 19.98 14.26 1.93 0.34 imp:pre:2p;ind:pre:2p; +abusiez abuser ver 19.98 14.26 0.02 0.00 ind:imp:2p; +abusif abusif adj m s 0.85 1.82 0.37 0.61 +abusifs abusif adj m p 0.85 1.82 0.05 0.14 +abusive abusif adj f s 0.85 1.82 0.39 0.74 +abusivement abusivement adv 0.16 1.15 0.16 1.15 +abusives abusif adj f p 0.85 1.82 0.03 0.34 +abusons abuser ver 19.98 14.26 0.37 0.00 imp:pre:1p;ind:pre:1p; +abusèrent abuser ver 19.98 14.26 0.00 0.07 ind:pas:3p; +abusé abuser ver m s 19.98 14.26 4.59 2.70 par:pas; +abusée abuser ver f s 19.98 14.26 0.29 0.27 par:pas; +abusées abusé adj f p 0.20 0.74 0.03 0.00 +abusés abuser ver m p 19.98 14.26 0.22 0.34 par:pas; +abêti abêtir ver m s 0.01 1.28 0.00 0.47 par:pas; +abêties abêti adj f p 0.00 0.27 0.00 0.07 +abêtir abêtir ver 0.01 1.28 0.01 0.54 inf; +abêtis abêtir ver 0.01 1.28 0.00 0.07 ind:pre:2s; +abêtissait abêtir ver 0.01 1.28 0.00 0.14 ind:imp:3s; +abêtissement abêtissement nom m s 0.00 0.54 0.00 0.54 +abêtit abêtir ver 0.01 1.28 0.00 0.07 ind:pas:3s; +abyme abyme nom m s 0.04 0.07 0.04 0.07 +abyssal abyssal adj m s 0.11 0.74 0.03 0.34 +abyssale abyssal adj f s 0.11 0.74 0.05 0.20 +abyssales abyssal adj f p 0.11 0.74 0.02 0.20 +abysse abysse nom m s 1.07 0.41 0.53 0.07 +abysses abysse nom m p 1.07 0.41 0.54 0.34 +abyssin abyssin nom m s 0.14 0.14 0.14 0.14 +abyssinien abyssinien adj m s 0.10 0.00 0.10 0.00 +abyssinienne abyssinien nom f s 0.01 0.00 0.01 0.00 +abyssins abyssin adj m p 0.00 0.20 0.00 0.07 +acabit acabit nom m s 0.17 1.62 0.17 1.55 +acabits acabit nom m p 0.17 1.62 0.00 0.07 +acacia acacia nom m s 0.26 6.35 0.05 3.24 +acacias acacia nom m p 0.26 6.35 0.21 3.11 +acadien acadien nom m s 0.16 0.07 0.14 0.00 +acadienne acadienne nom f s 0.03 0.00 0.03 0.00 +acadiens acadien nom m p 0.16 0.07 0.01 0.07 +académicien académicien nom m s 0.35 1.55 0.14 0.74 +académiciens académicien nom m p 0.35 1.55 0.21 0.81 +académie académie nom f s 10.03 9.46 9.91 8.31 +académies académie nom f p 10.03 9.46 0.12 1.15 +académique académique adj s 1.41 1.15 0.87 0.61 +académiquement académiquement adv 0.01 0.14 0.01 0.14 +académiques académique adj p 1.41 1.15 0.54 0.54 +académisme académisme nom m s 0.00 0.27 0.00 0.27 +académisé académiser ver m s 0.00 0.07 0.00 0.07 par:pas; +acagnardai acagnarder ver 0.00 0.74 0.00 0.07 ind:pas:1s; +acagnardait acagnarder ver 0.00 0.74 0.00 0.14 ind:imp:3s; +acagnarder acagnarder ver 0.00 0.74 0.00 0.14 inf; +acagnardé acagnarder ver m s 0.00 0.74 0.00 0.34 par:pas; +acagnardée acagnarder ver f s 0.00 0.74 0.00 0.07 par:pas; +acajou acajou nom m s 0.52 5.95 0.52 5.81 +acajous acajou nom m p 0.52 5.95 0.00 0.14 +acanthe acanthe nom f s 0.04 0.61 0.04 0.27 +acanthes acanthe nom f p 0.04 0.61 0.00 0.34 +acariens acarien nom m p 0.07 0.07 0.07 0.07 +acariâtre acariâtre adj s 0.14 1.55 0.13 1.22 +acariâtres acariâtre adj f p 0.14 1.55 0.01 0.34 +accabla accabler ver 5.55 21.28 0.14 0.95 ind:pas:3s; +accablai accabler ver 5.55 21.28 0.00 0.07 ind:pas:1s; +accablaient accabler ver 5.55 21.28 0.03 1.42 ind:imp:3p; +accablais accabler ver 5.55 21.28 0.00 0.27 ind:imp:1s; +accablait accabler ver 5.55 21.28 0.22 3.11 ind:imp:3s; +accablant accablant adj m s 1.41 5.41 0.37 1.42 +accablante accablant adj f s 1.41 5.41 0.71 2.43 +accablantes accablant adj f p 1.41 5.41 0.29 0.81 +accablants accablant adj m p 1.41 5.41 0.04 0.74 +accable accabler ver 5.55 21.28 2.01 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accablement accablement nom m s 0.23 3.72 0.21 3.58 +accablements accablement nom m p 0.23 3.72 0.01 0.14 +accablent accabler ver 5.55 21.28 0.28 0.74 ind:pre:3p; +accabler accabler ver 5.55 21.28 0.65 3.58 inf; +accableraient accabler ver 5.55 21.28 0.00 0.14 cnd:pre:3p; +accablez accabler ver 5.55 21.28 0.17 0.14 imp:pre:2p;ind:pre:2p; +accablions accabler ver 5.55 21.28 0.00 0.07 ind:imp:1p; +accablât accabler ver 5.55 21.28 0.00 0.07 sub:imp:3s; +accablèrent accabler ver 5.55 21.28 0.00 0.20 ind:pas:3p; +accablé accabler ver m s 5.55 21.28 0.92 4.05 par:pas; +accablée accabler ver f s 5.55 21.28 0.60 2.23 par:pas; +accablées accabler ver f p 5.55 21.28 0.02 0.34 par:pas; +accablés accabler ver m p 5.55 21.28 0.47 1.22 par:pas; +accalmie accalmie nom f s 0.50 3.72 0.46 2.97 +accalmies accalmie nom f p 0.50 3.72 0.04 0.74 +accalmit accalmir ver 0.00 0.07 0.00 0.07 ind:pas:3s; +accapara accaparer ver 0.97 3.99 0.01 0.07 ind:pas:3s; +accaparaient accaparer ver 0.97 3.99 0.00 0.34 ind:imp:3p; +accaparait accaparer ver 0.97 3.99 0.01 0.74 ind:imp:3s; +accaparant accaparer ver 0.97 3.99 0.03 0.20 par:pre; +accaparante accaparant adj f s 0.02 0.07 0.00 0.07 +accapare accaparer ver 0.97 3.99 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accaparer accaparer ver 0.97 3.99 0.20 0.68 inf; +accaparerait accaparer ver 0.97 3.99 0.00 0.07 cnd:pre:3s; +accapareur accapareur adj m s 0.02 0.00 0.02 0.00 +accaparez accaparer ver 0.97 3.99 0.02 0.00 ind:pre:2p; +accaparé accaparer ver m s 0.97 3.99 0.30 0.68 par:pas; +accaparée accaparer ver f s 0.97 3.99 0.06 0.34 par:pas; +accaparées accaparer ver f p 0.97 3.99 0.00 0.07 par:pas; +accaparés accaparer ver m p 0.97 3.99 0.00 0.20 par:pas; +accastillage accastillage nom m s 0.04 0.20 0.04 0.14 +accastillages accastillage nom m p 0.04 0.20 0.00 0.07 +accelerando accelerando adv 0.00 0.14 0.00 0.14 +accent accent nom m s 14.56 45.54 12.98 38.31 +accenteur accenteur nom m s 0.01 0.00 0.01 0.00 +accents accent nom m p 14.56 45.54 1.58 7.23 +accentua accentuer ver 1.28 16.15 0.00 1.96 ind:pas:3s; +accentuai accentuer ver 1.28 16.15 0.00 0.07 ind:pas:1s; +accentuaient accentuer ver 1.28 16.15 0.00 1.22 ind:imp:3p; +accentuais accentuer ver 1.28 16.15 0.00 0.07 ind:imp:1s; +accentuait accentuer ver 1.28 16.15 0.01 4.05 ind:imp:3s; +accentuant accentuer ver 1.28 16.15 0.03 1.76 par:pre; +accentuation accentuation nom f s 0.06 0.14 0.06 0.14 +accentue accentuer ver 1.28 16.15 0.11 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accentuent accentuer ver 1.28 16.15 0.07 0.54 ind:pre:3p; +accentuer accentuer ver 1.28 16.15 0.67 2.03 inf; +accentuerait accentuer ver 1.28 16.15 0.01 0.07 cnd:pre:3s; +accentuez accentuer ver 1.28 16.15 0.12 0.00 imp:pre:2p;ind:pre:2p; +accentuât accentuer ver 1.28 16.15 0.00 0.07 sub:imp:3s; +accentuèrent accentuer ver 1.28 16.15 0.00 0.20 ind:pas:3p; +accentué accentuer ver m s 1.28 16.15 0.21 0.81 par:pas; +accentuée accentuer ver f s 1.28 16.15 0.03 0.95 par:pas; +accentuées accentuer ver f p 1.28 16.15 0.02 0.27 par:pas; +accentués accentuer ver m p 1.28 16.15 0.01 0.34 par:pas; +accepta accepter ver 165.84 144.66 0.82 10.54 ind:pas:3s; +acceptable acceptable adj s 3.96 4.39 3.27 3.51 +acceptables acceptable adj p 3.96 4.39 0.70 0.88 +acceptai accepter ver 165.84 144.66 0.03 3.38 ind:pas:1s; +acceptaient accepter ver 165.84 144.66 0.34 2.91 ind:imp:3p; +acceptais accepter ver 165.84 144.66 0.94 3.99 ind:imp:1s;ind:imp:2s; +acceptait accepter ver 165.84 144.66 1.48 10.00 ind:imp:3s; +acceptant accepter ver 165.84 144.66 1.35 2.97 par:pre; +acceptassent accepter ver 165.84 144.66 0.00 0.07 sub:imp:3p; +acceptasses accepter ver 165.84 144.66 0.00 0.07 sub:imp:2s; +acceptation acceptation nom f s 1.24 4.39 1.24 4.19 +acceptations acceptation nom f p 1.24 4.39 0.00 0.20 +accepte accepter ver 165.84 144.66 38.41 18.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +acceptent accepter ver 165.84 144.66 4.45 3.24 ind:pre:3p; +accepter accepter ver 165.84 144.66 43.39 36.62 inf; +acceptera accepter ver 165.84 144.66 3.98 1.96 ind:fut:3s; +accepterai accepter ver 165.84 144.66 2.73 1.22 ind:fut:1s; +accepteraient accepter ver 165.84 144.66 0.57 0.95 cnd:pre:3p; +accepterais accepter ver 165.84 144.66 2.25 1.96 cnd:pre:1s;cnd:pre:2s; +accepterait accepter ver 165.84 144.66 1.54 4.05 cnd:pre:3s; +accepteras accepter ver 165.84 144.66 0.65 0.27 ind:fut:2s; +accepterez accepter ver 165.84 144.66 0.94 0.20 ind:fut:2p; +accepteriez accepter ver 165.84 144.66 2.01 0.54 cnd:pre:2p; +accepterions accepter ver 165.84 144.66 0.03 0.34 cnd:pre:1p; +accepterons accepter ver 165.84 144.66 0.31 0.14 ind:fut:1p; +accepteront accepter ver 165.84 144.66 1.34 0.20 ind:fut:3p; +acceptes accepter ver 165.84 144.66 6.79 1.28 ind:pre:2s; +acceptez accepter ver 165.84 144.66 12.53 2.16 imp:pre:2p;ind:pre:2p; +acceptiez accepter ver 165.84 144.66 1.00 0.54 ind:imp:2p; +acception acception nom f s 0.15 0.47 0.15 0.27 +acceptions accepter ver 165.84 144.66 0.21 1.35 ind:imp:1p; +acceptâmes accepter ver 165.84 144.66 0.00 0.14 ind:pas:1p; +acceptons accepter ver 165.84 144.66 2.72 0.95 imp:pre:1p;ind:pre:1p; +acceptât accepter ver 165.84 144.66 0.01 1.42 sub:imp:3s; +acceptèrent accepter ver 165.84 144.66 0.04 0.74 ind:pas:3p; +accepté accepter ver m s 165.84 144.66 28.46 27.16 par:pas; +acceptée accepter ver f s 165.84 144.66 4.30 3.24 par:pas; +acceptées accepter ver f p 165.84 144.66 0.93 0.68 par:pas; +acceptés accepter ver m p 165.84 144.66 1.29 0.74 par:pas; +accesseurs accesseur nom m p 0.00 0.07 0.00 0.07 +accessibilité accessibilité nom f s 0.03 0.00 0.03 0.00 +accessible accessible adj s 2.06 5.74 1.49 4.12 +accessibles accessible adj p 2.06 5.74 0.57 1.62 +accession accession nom f s 0.16 1.22 0.16 1.22 +accessit accessit nom m s 0.02 0.07 0.02 0.07 +accessoire accessoire nom m s 3.87 7.30 1.11 1.08 +accessoirement accessoirement adv 0.17 0.88 0.17 0.88 +accessoires accessoire nom m p 3.87 7.30 2.76 6.22 +accessoirise accessoiriser ver 0.07 0.00 0.01 0.00 ind:pre:1s; +accessoiriser accessoiriser ver 0.07 0.00 0.07 0.00 inf; +accessoiriste accessoiriste nom s 0.62 0.14 0.51 0.00 +accessoiristes accessoiriste nom p 0.62 0.14 0.11 0.14 +accident accident nom m s 108.21 44.80 100.11 36.62 +accidente accidenter ver 0.19 0.27 0.01 0.07 ind:pre:3s; +accidentel accidentel adj m s 2.78 3.45 1.09 1.42 +accidentelle accidentel adj f s 2.78 3.45 1.44 1.28 +accidentellement accidentellement adv 3.39 0.81 3.39 0.81 +accidentelles accidentel adj f p 2.78 3.45 0.17 0.34 +accidentels accidentel adj m p 2.78 3.45 0.08 0.41 +accidenter accidenter ver 0.19 0.27 0.02 0.00 inf; +accidents accident nom m p 108.21 44.80 8.10 8.18 +accidenté accidenté nom m s 0.57 0.61 0.28 0.34 +accidentée accidenté adj f s 0.30 1.42 0.08 0.34 +accidentées accidenté adj f p 0.30 1.42 0.02 0.20 +accidentés accidenté nom m p 0.57 0.61 0.28 0.00 +acclama acclamer ver 1.75 5.81 0.00 0.34 ind:pas:3s; +acclamaient acclamer ver 1.75 5.81 0.09 0.68 ind:imp:3p; +acclamait acclamer ver 1.75 5.81 0.04 0.54 ind:imp:3s; +acclamant acclamer ver 1.75 5.81 0.00 0.27 par:pre; +acclamation acclamation nom f s 2.84 4.66 0.20 0.27 +acclamations acclamation nom f p 2.84 4.66 2.65 4.39 +acclame acclamer ver 1.75 5.81 0.19 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acclament acclamer ver 1.75 5.81 0.18 0.14 ind:pre:3p; +acclamer acclamer ver 1.75 5.81 0.20 1.01 inf; +acclamera acclamer ver 1.75 5.81 0.04 0.00 ind:fut:3s; +acclamerait acclamer ver 1.75 5.81 0.01 0.07 cnd:pre:3s; +acclameront acclamer ver 1.75 5.81 0.03 0.00 ind:fut:3p; +acclamez acclamer ver 1.75 5.81 0.25 0.00 imp:pre:2p; +acclamiez acclamer ver 1.75 5.81 0.01 0.00 ind:imp:2p; +acclamons acclamer ver 1.75 5.81 0.05 0.07 imp:pre:1p;ind:pre:1p; +acclamé acclamer ver m s 1.75 5.81 0.44 1.28 par:pas; +acclamée acclamer ver f s 1.75 5.81 0.17 0.07 par:pas; +acclamées acclamer ver f p 1.75 5.81 0.02 0.07 par:pas; +acclamés acclamer ver m p 1.75 5.81 0.04 0.47 par:pas; +acclimata acclimater ver 0.52 1.96 0.00 0.07 ind:pas:3s; +acclimatai acclimater ver 0.52 1.96 0.00 0.07 ind:pas:1s; +acclimatation acclimatation nom f s 0.14 0.81 0.14 0.81 +acclimate acclimater ver 0.52 1.96 0.01 0.20 ind:pre:1s;ind:pre:3s; +acclimatement acclimatement nom m s 0.00 0.14 0.00 0.14 +acclimatent acclimater ver 0.52 1.96 0.01 0.00 ind:pre:3p; +acclimater acclimater ver 0.52 1.96 0.45 1.08 inf; +acclimaterait acclimater ver 0.52 1.96 0.00 0.07 cnd:pre:3s; +acclimates acclimater ver 0.52 1.96 0.00 0.07 ind:pre:2s; +acclimatez acclimater ver 0.52 1.96 0.02 0.00 imp:pre:2p;ind:pre:2p; +acclimaté acclimater ver m s 0.52 1.96 0.02 0.27 par:pas; +acclimatés acclimater ver m p 0.52 1.96 0.01 0.14 par:pas; +accointance accointance nom f s 0.14 0.88 0.14 0.20 +accointances accointance nom f p 0.14 0.88 0.00 0.68 +accointé accointer ver m s 0.00 0.14 0.00 0.07 par:pas; +accointés accointer ver m p 0.00 0.14 0.00 0.07 par:pas; +accola accoler ver 0.32 2.70 0.00 0.07 ind:pas:3s; +accolade accolade nom f s 0.96 2.23 0.84 1.69 +accolades accolade nom f p 0.96 2.23 0.12 0.54 +accolait accoler ver 0.32 2.70 0.00 0.14 ind:imp:3s; +accolant accoler ver 0.32 2.70 0.14 0.00 par:pre; +accole accoler ver 0.32 2.70 0.00 0.14 ind:pre:3s; +accolement accolement nom m s 0.00 0.07 0.00 0.07 +accolent accoler ver 0.32 2.70 0.00 0.07 ind:pre:3p; +accoler accoler ver 0.32 2.70 0.00 0.27 inf; +accolerais accoler ver 0.32 2.70 0.01 0.00 cnd:pre:1s; +accolé accoler ver m s 0.32 2.70 0.03 0.74 par:pas; +accolée accoler ver f s 0.32 2.70 0.14 0.41 par:pas; +accolées accoler ver f p 0.32 2.70 0.00 0.41 par:pas; +accolés accoler ver m p 0.32 2.70 0.00 0.47 par:pas; +accommoda accommoder ver 2.25 14.19 0.00 0.68 ind:pas:3s; +accommodai accommoder ver 2.25 14.19 0.00 0.07 ind:pas:1s; +accommodaient accommoder ver 2.25 14.19 0.00 1.15 ind:imp:3p; +accommodais accommoder ver 2.25 14.19 0.01 0.27 ind:imp:1s; +accommodait accommoder ver 2.25 14.19 0.01 2.23 ind:imp:3s; +accommodant accommodant adj m s 0.41 0.47 0.22 0.14 +accommodante accommodant adj f s 0.41 0.47 0.14 0.20 +accommodantes accommodant adj f p 0.41 0.47 0.00 0.07 +accommodants accommodant adj m p 0.41 0.47 0.04 0.07 +accommodation accommodation nom f s 0.04 0.41 0.04 0.41 +accommodatrices accommodateur adj f p 0.00 0.07 0.00 0.07 +accommode accommoder ver 2.25 14.19 0.78 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accommodement accommodement nom m s 0.11 1.01 0.11 0.61 +accommodements accommodement nom m p 0.11 1.01 0.00 0.41 +accommodent accommoder ver 2.25 14.19 0.13 0.34 ind:pre:3p; +accommoder accommoder ver 2.25 14.19 0.69 4.26 inf; +accommodera accommoder ver 2.25 14.19 0.01 0.07 ind:fut:3s; +accommoderai accommoder ver 2.25 14.19 0.06 0.14 ind:fut:1s; +accommoderaient accommoder ver 2.25 14.19 0.00 0.14 cnd:pre:3p; +accommoderais accommoder ver 2.25 14.19 0.16 0.20 cnd:pre:1s; +accommoderait accommoder ver 2.25 14.19 0.11 0.27 cnd:pre:3s; +accommoderez accommoder ver 2.25 14.19 0.02 0.00 ind:fut:2p; +accommoderions accommoder ver 2.25 14.19 0.00 0.07 cnd:pre:1p; +accommoderont accommoder ver 2.25 14.19 0.01 0.20 ind:fut:3p; +accommodions accommoder ver 2.25 14.19 0.00 0.07 ind:imp:1p; +accommodons accommoder ver 2.25 14.19 0.00 0.07 ind:pre:1p; +accommodât accommoder ver 2.25 14.19 0.00 0.14 sub:imp:3s; +accommodèrent accommoder ver 2.25 14.19 0.10 0.07 ind:pas:3p; +accommodé accommoder ver m s 2.25 14.19 0.13 0.54 par:pas; +accommodée accommoder ver f s 2.25 14.19 0.03 0.27 par:pas; +accommodés accommoder ver m p 2.25 14.19 0.00 0.41 par:pas; +accompagna accompagner ver 90.56 124.46 0.15 9.46 ind:pas:3s; +accompagnai accompagner ver 90.56 124.46 0.03 1.28 ind:pas:1s; +accompagnaient accompagner ver 90.56 124.46 0.43 4.73 ind:imp:3p; +accompagnais accompagner ver 90.56 124.46 0.40 1.76 ind:imp:1s;ind:imp:2s; +accompagnait accompagner ver 90.56 124.46 2.04 15.68 ind:imp:3s; +accompagnant accompagner ver 90.56 124.46 0.61 5.00 par:pre; +accompagnateur accompagnateur nom m s 0.78 1.01 0.40 0.27 +accompagnateurs accompagnateur nom m p 0.78 1.01 0.29 0.68 +accompagnatrice accompagnateur nom f s 0.78 1.01 0.09 0.07 +accompagnatrices accompagnatrice nom f p 0.02 0.00 0.02 0.00 +accompagne accompagner ver 90.56 124.46 33.28 15.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +accompagnement accompagnement nom m s 0.65 2.57 0.61 2.50 +accompagnements accompagnement nom m p 0.65 2.57 0.03 0.07 +accompagnent accompagner ver 90.56 124.46 2.08 4.05 ind:pre:3p; +accompagner accompagner ver 90.56 124.46 24.87 22.23 ind:pre:2p;inf; +accompagnera accompagner ver 90.56 124.46 1.81 0.61 ind:fut:3s; +accompagnerai accompagner ver 90.56 124.46 1.01 0.61 ind:fut:1s; +accompagneraient accompagner ver 90.56 124.46 0.00 0.27 cnd:pre:3p; +accompagnerais accompagner ver 90.56 124.46 0.16 0.27 cnd:pre:1s;cnd:pre:2s; +accompagnerait accompagner ver 90.56 124.46 0.09 1.22 cnd:pre:3s; +accompagneras accompagner ver 90.56 124.46 0.52 0.27 ind:fut:2s; +accompagnerez accompagner ver 90.56 124.46 0.65 0.27 ind:fut:2p; +accompagneriez accompagner ver 90.56 124.46 0.12 0.00 cnd:pre:2p; +accompagnerons accompagner ver 90.56 124.46 0.25 0.00 ind:fut:1p; +accompagneront accompagner ver 90.56 124.46 0.52 0.14 ind:fut:3p; +accompagnes accompagner ver 90.56 124.46 5.48 0.68 ind:pre:2s;sub:pre:2s; +accompagnez accompagner ver 90.56 124.46 4.41 0.95 imp:pre:2p;ind:pre:2p; +accompagniez accompagner ver 90.56 124.46 0.45 0.07 ind:imp:2p;sub:pre:2p; +accompagnions accompagner ver 90.56 124.46 0.02 0.00 ind:imp:1p; +accompagnâmes accompagner ver 90.56 124.46 0.00 0.14 ind:pas:1p; +accompagnons accompagner ver 90.56 124.46 0.73 0.27 imp:pre:1p;ind:pre:1p; +accompagnât accompagner ver 90.56 124.46 0.00 0.54 sub:imp:3s; +accompagnèrent accompagner ver 90.56 124.46 0.00 0.95 ind:pas:3p; +accompagné accompagner ver m s 90.56 124.46 5.67 21.49 par:pas; +accompagnée accompagner ver f s 90.56 124.46 3.67 9.93 par:pas; +accompagnées accompagner ver f p 90.56 124.46 0.10 2.03 par:pas; +accompagnés accompagner ver m p 90.56 124.46 1.00 4.46 par:pas; +accomplît accomplir ver 25.00 55.20 0.00 0.20 sub:imp:3s; +accompli accomplir ver m s 25.00 55.20 5.98 9.59 par:pas; +accomplie accompli adj f s 4.79 10.54 3.00 3.04 +accomplies accomplir ver f p 25.00 55.20 0.23 1.08 par:pas; +accomplir accomplir ver 25.00 55.20 9.31 22.23 inf; +accomplira accomplir ver 25.00 55.20 0.55 0.61 ind:fut:3s; +accomplirai accomplir ver 25.00 55.20 0.33 0.14 ind:fut:1s; +accompliraient accomplir ver 25.00 55.20 0.01 0.20 cnd:pre:3p; +accomplirais accomplir ver 25.00 55.20 0.00 0.14 cnd:pre:1s; +accomplirait accomplir ver 25.00 55.20 0.12 0.47 cnd:pre:3s; +accompliras accomplir ver 25.00 55.20 0.05 0.00 ind:fut:2s; +accomplirent accomplir ver 25.00 55.20 0.01 0.27 ind:pas:3p; +accomplirez accomplir ver 25.00 55.20 0.09 0.14 ind:fut:2p; +accomplirons accomplir ver 25.00 55.20 0.17 0.14 ind:fut:1p; +accompliront accomplir ver 25.00 55.20 0.04 0.07 ind:fut:3p; +accomplis accomplir ver m p 25.00 55.20 1.51 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +accomplissaient accomplir ver 25.00 55.20 0.00 0.68 ind:imp:3p; +accomplissais accomplir ver 25.00 55.20 0.02 0.74 ind:imp:1s; +accomplissait accomplir ver 25.00 55.20 0.05 3.78 ind:imp:3s; +accomplissant accomplir ver 25.00 55.20 0.17 2.36 par:pre; +accomplisse accomplir ver 25.00 55.20 1.04 0.95 sub:pre:1s;sub:pre:3s; +accomplissement accomplissement nom m s 1.50 4.46 1.27 4.26 +accomplissements accomplissement nom m p 1.50 4.46 0.22 0.20 +accomplissent accomplir ver 25.00 55.20 1.12 0.95 ind:pre:3p; +accomplissez accomplir ver 25.00 55.20 0.54 0.00 imp:pre:2p;ind:pre:2p; +accomplissiez accomplir ver 25.00 55.20 0.02 0.00 ind:imp:2p; +accomplissions accomplir ver 25.00 55.20 0.16 0.34 ind:imp:1p; +accomplissons accomplir ver 25.00 55.20 0.28 0.14 imp:pre:1p;ind:pre:1p; +accomplit accomplir ver 25.00 55.20 2.14 4.73 ind:pre:3s;ind:pas:3s; +accord accord nom m s 766.20 136.15 761.77 124.66 +accorda accorder ver 52.27 67.84 0.38 2.97 ind:pas:3s; +accordai accorder ver 52.27 67.84 0.00 0.54 ind:pas:1s; +accordaient accorder ver 52.27 67.84 0.17 2.43 ind:imp:3p; +accordailles accordailles nom f p 0.00 0.07 0.00 0.07 +accordais accorder ver 52.27 67.84 0.44 1.55 ind:imp:1s;ind:imp:2s; +accordait accorder ver 52.27 67.84 0.70 9.66 ind:imp:3s; +accordant accorder ver 52.27 67.84 0.24 1.76 par:pre; +accordas accorder ver 52.27 67.84 0.01 0.07 ind:pas:2s; +accordassent accorder ver 52.27 67.84 0.00 0.14 sub:imp:3p; +accorde accorder ver 52.27 67.84 17.04 11.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +accordement accordement nom m s 0.00 0.07 0.00 0.07 +accordent accorder ver 52.27 67.84 1.31 2.50 ind:pre:3p; +accorder accorder ver 52.27 67.84 10.59 14.73 inf; +accordera accorder ver 52.27 67.84 0.98 0.14 ind:fut:3s; +accorderai accorder ver 52.27 67.84 0.46 0.00 ind:fut:1s; +accorderaient accorder ver 52.27 67.84 0.00 0.20 cnd:pre:3p; +accorderais accorder ver 52.27 67.84 0.24 0.14 cnd:pre:1s;cnd:pre:2s; +accorderait accorder ver 52.27 67.84 0.08 0.74 cnd:pre:3s; +accorderas accorder ver 52.27 67.84 0.06 0.07 ind:fut:2s; +accorderez accorder ver 52.27 67.84 0.52 0.20 ind:fut:2p; +accorderiez accorder ver 52.27 67.84 0.14 0.07 cnd:pre:2p; +accorderons accorder ver 52.27 67.84 0.14 0.00 ind:fut:1p; +accorderont accorder ver 52.27 67.84 0.14 0.20 ind:fut:3p; +accordes accorder ver 52.27 67.84 1.23 0.07 ind:pre:2s; +accordeur accordeur nom m s 0.25 0.61 0.25 0.61 +accordez accorder ver 52.27 67.84 6.00 0.81 imp:pre:2p;ind:pre:2p; +accordiez accorder ver 52.27 67.84 0.30 0.00 ind:imp:2p;sub:pre:2p; +accordions accorder ver 52.27 67.84 0.05 0.20 ind:imp:1p; +accordo accordo nom m s 0.01 0.07 0.01 0.07 +accordons accorder ver 52.27 67.84 0.75 0.47 imp:pre:1p;ind:pre:1p; +accordât accorder ver 52.27 67.84 0.00 0.88 sub:imp:3s; +accords accord nom m p 766.20 136.15 4.42 11.49 +accordèrent accorder ver 52.27 67.84 0.01 0.54 ind:pas:3p; +accordé accorder ver m s 52.27 67.84 6.87 7.43 par:pas; +accordée accorder ver f s 52.27 67.84 2.23 4.93 par:pas; +accordées accorder ver f p 52.27 67.84 0.36 1.22 par:pas; +accordéon accordéon nom m s 3.24 5.47 3.02 4.80 +accordéoniste accordéoniste nom s 0.26 1.69 0.26 1.42 +accordéonistes accordéoniste nom p 0.26 1.69 0.00 0.27 +accordéons accordéon nom m p 3.24 5.47 0.22 0.68 +accordés accorder ver m p 52.27 67.84 0.85 1.42 par:pas; +accore accore adj f s 0.00 0.14 0.00 0.14 +accores accore nom m p 0.00 0.07 0.00 0.07 +accort accort adj m s 0.03 0.68 0.01 0.20 +accorte accort adj f s 0.03 0.68 0.02 0.27 +accortes accort adj f p 0.03 0.68 0.00 0.14 +accorts accort adj m p 0.03 0.68 0.00 0.07 +accosta accoster ver 1.86 4.19 0.11 0.54 ind:pas:3s; +accostage accostage nom m s 0.47 0.88 0.47 0.88 +accostaient accoster ver 1.86 4.19 0.00 0.14 ind:imp:3p; +accostais accoster ver 1.86 4.19 0.00 0.07 ind:imp:1s; +accostait accoster ver 1.86 4.19 0.11 0.47 ind:imp:3s; +accostant accoster ver 1.86 4.19 0.01 0.27 par:pre; +accoste accoster ver 1.86 4.19 0.27 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accostent accoster ver 1.86 4.19 0.13 0.27 ind:pre:3p; +accoster accoster ver 1.86 4.19 0.67 1.35 inf; +accosterez accoster ver 1.86 4.19 0.03 0.00 ind:fut:2p; +accosterons accoster ver 1.86 4.19 0.01 0.00 ind:fut:1p; +accostez accoster ver 1.86 4.19 0.14 0.00 imp:pre:2p;ind:pre:2p; +accostiez accoster ver 1.86 4.19 0.01 0.07 ind:imp:2p; +accostons accoster ver 1.86 4.19 0.01 0.00 imp:pre:1p; +accosté accoster ver m s 1.86 4.19 0.23 0.27 par:pas; +accostée accoster ver f s 1.86 4.19 0.15 0.14 par:pas; +accostées accoster ver f p 1.86 4.19 0.00 0.07 par:pas; +accota accoter ver 0.00 2.43 0.00 0.27 ind:pas:3s; +accotaient accoter ver 0.00 2.43 0.00 0.14 ind:imp:3p; +accotait accoter ver 0.00 2.43 0.00 0.14 ind:imp:3s; +accotant accoter ver 0.00 2.43 0.00 0.34 par:pre; +accote accoter ver 0.00 2.43 0.00 0.14 ind:pre:3s; +accotement accotement nom m s 0.01 1.42 0.01 1.08 +accotements accotement nom m p 0.01 1.42 0.00 0.34 +accotent accoter ver 0.00 2.43 0.00 0.07 ind:pre:3p; +accoter accoter ver 0.00 2.43 0.00 0.07 inf; +accotoirs accotoir nom m p 0.00 0.07 0.00 0.07 +accotons accoter ver 0.00 2.43 0.00 0.07 ind:pre:1p; +accotèrent accoter ver 0.00 2.43 0.00 0.07 ind:pas:3p; +accoté accoter ver m s 0.00 2.43 0.00 0.54 par:pas; +accotée accoter ver f s 0.00 2.43 0.00 0.27 par:pas; +accotées accoter ver f p 0.00 2.43 0.00 0.14 par:pas; +accotés accoter ver m p 0.00 2.43 0.00 0.20 par:pas; +accoucha accoucher ver 16.49 7.43 0.14 0.54 ind:pas:3s; +accouchaient accoucher ver 16.49 7.43 0.03 0.20 ind:imp:3p; +accouchais accoucher ver 16.49 7.43 0.05 0.00 ind:imp:1s; +accouchait accoucher ver 16.49 7.43 0.17 0.41 ind:imp:3s; +accouchant accoucher ver 16.49 7.43 0.58 0.00 par:pre; +accouche accoucher ver 16.49 7.43 4.54 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accouchement accouchement nom m s 5.96 3.92 5.47 3.24 +accouchements accouchement nom m p 5.96 3.92 0.48 0.68 +accouchent accoucher ver 16.49 7.43 0.08 0.14 ind:pre:3p; +accoucher accoucher ver 16.49 7.43 6.56 3.51 inf; +accouchera accoucher ver 16.49 7.43 0.04 0.00 ind:fut:3s; +accoucherait accoucher ver 16.49 7.43 0.16 0.07 cnd:pre:3s; +accoucheras accoucher ver 16.49 7.43 0.14 0.00 ind:fut:2s; +accouches accoucher ver 16.49 7.43 0.46 0.20 ind:pre:2s; +accoucheur accoucheur nom m s 0.19 0.81 0.06 0.47 +accoucheurs accoucheur nom m p 0.19 0.81 0.00 0.14 +accoucheuse accoucheur nom f s 0.19 0.81 0.13 0.20 +accouchez accoucher ver 16.49 7.43 0.29 0.00 imp:pre:2p;ind:pre:2p; +accouché accoucher ver m s 16.49 7.43 3.08 1.08 par:pas; +accouchée accoucher ver f s 16.49 7.43 0.16 0.00 par:pas; +accouchées accouchée nom f p 0.39 1.15 0.37 0.34 +accouchés accoucher ver m p 16.49 7.43 0.01 0.07 par:pas; +accouda accouder ver 0.34 17.70 0.00 2.97 ind:pas:3s; +accoudai accouder ver 0.34 17.70 0.00 0.47 ind:pas:1s; +accoudaient accouder ver 0.34 17.70 0.00 0.27 ind:imp:3p; +accoudais accouder ver 0.34 17.70 0.00 0.20 ind:imp:1s; +accoudait accouder ver 0.34 17.70 0.00 0.61 ind:imp:3s; +accoudant accouder ver 0.34 17.70 0.00 0.95 par:pre; +accoude accouder ver 0.34 17.70 0.02 1.22 ind:pre:3s; +accouder accouder ver 0.34 17.70 0.01 1.42 inf; +accoudions accouder ver 0.34 17.70 0.00 0.07 ind:imp:1p; +accoudoir accoudoir nom m s 0.46 5.20 0.40 2.23 +accoudoirs accoudoir nom m p 0.46 5.20 0.06 2.97 +accoudons accouder ver 0.34 17.70 0.00 0.07 ind:pre:1p; +accoudèrent accouder ver 0.34 17.70 0.00 0.27 ind:pas:3p; +accoudé accouder ver m s 0.34 17.70 0.25 5.00 par:pas; +accoudée accouder ver f s 0.34 17.70 0.03 2.50 par:pas; +accoudées accouder ver f p 0.34 17.70 0.00 0.14 par:pas; +accoudés accouder ver m p 0.34 17.70 0.03 1.55 par:pas; +accoupla accoupler ver 2.11 3.24 0.01 0.07 ind:pas:3s; +accouplaient accoupler ver 2.11 3.24 0.01 0.27 ind:imp:3p; +accouplais accoupler ver 2.11 3.24 0.00 0.07 ind:imp:1s; +accouplait accoupler ver 2.11 3.24 0.01 0.20 ind:imp:3s; +accouplant accoupler ver 2.11 3.24 0.06 0.07 par:pre; +accouple accoupler ver 2.11 3.24 0.34 0.07 ind:pre:1s;ind:pre:3s; +accouplement accouplement nom m s 0.78 2.50 0.72 1.69 +accouplements accouplement nom m p 0.78 2.50 0.05 0.81 +accouplent accoupler ver 2.11 3.24 0.49 0.34 ind:pre:3p; +accoupler accoupler ver 2.11 3.24 0.81 0.74 inf; +accouplera accoupler ver 2.11 3.24 0.05 0.00 ind:fut:3s; +accouplerait accoupler ver 2.11 3.24 0.00 0.07 cnd:pre:3s; +accoupleront accoupler ver 2.11 3.24 0.03 0.00 ind:fut:3p; +accouplèrent accoupler ver 2.11 3.24 0.00 0.07 ind:pas:3p; +accouplé accoupler ver m s 2.11 3.24 0.06 0.27 par:pas; +accouplée accoupler ver f s 2.11 3.24 0.01 0.07 par:pas; +accouplées accoupler ver f p 2.11 3.24 0.11 0.20 par:pas; +accouplés accoupler ver m p 2.11 3.24 0.12 0.74 par:pas; +accourût accourir ver 5.17 19.05 0.00 0.07 sub:imp:3s; +accouraient accourir ver 5.17 19.05 0.04 1.49 ind:imp:3p; +accourais accourir ver 5.17 19.05 0.01 0.14 ind:imp:1s; +accourait accourir ver 5.17 19.05 0.16 2.43 ind:imp:3s; +accourant accourir ver 5.17 19.05 0.02 0.34 par:pre; +accourcissant accourcir ver 0.00 0.07 0.00 0.07 par:pre; +accoure accourir ver 5.17 19.05 0.15 0.14 sub:pre:1s;sub:pre:3s; +accourent accourir ver 5.17 19.05 0.32 0.81 ind:pre:3p; +accoures accourir ver 5.17 19.05 0.01 0.00 sub:pre:2s; +accourez accourir ver 5.17 19.05 0.37 0.14 imp:pre:2p;ind:pre:2p; +accouriez accourir ver 5.17 19.05 0.01 0.00 ind:imp:2p; +accourir accourir ver 5.17 19.05 0.57 2.84 inf; +accourons accourir ver 5.17 19.05 0.29 0.07 ind:pre:1p; +accourra accourir ver 5.17 19.05 0.05 0.07 ind:fut:3s; +accourrai accourir ver 5.17 19.05 0.03 0.07 ind:fut:1s; +accourraient accourir ver 5.17 19.05 0.00 0.14 cnd:pre:3p; +accourrais accourir ver 5.17 19.05 0.02 0.00 cnd:pre:1s; +accourrait accourir ver 5.17 19.05 0.04 0.20 cnd:pre:3s; +accourront accourir ver 5.17 19.05 0.04 0.07 ind:fut:3p; +accours accourir ver 5.17 19.05 0.70 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +accourt accourir ver 5.17 19.05 0.91 2.57 ind:pre:3s; +accouru accourir ver m s 5.17 19.05 0.60 1.82 par:pas; +accourue accourir ver f s 5.17 19.05 0.01 0.47 par:pas; +accourues accourir ver f p 5.17 19.05 0.14 0.41 par:pas; +accoururent accourir ver 5.17 19.05 0.21 0.74 ind:pas:3p; +accourus accourir ver m p 5.17 19.05 0.34 1.69 ind:pas:1s;par:pas; +accourussent accourir ver 5.17 19.05 0.00 0.07 sub:imp:3p; +accourut accourir ver 5.17 19.05 0.14 1.96 ind:pas:3s; +accoutre accoutrer ver 0.06 0.54 0.00 0.07 ind:pre:3s; +accoutrement accoutrement nom m s 1.29 2.70 1.19 2.09 +accoutrements accoutrement nom m p 1.29 2.70 0.11 0.61 +accoutré accoutrer ver m s 0.06 0.54 0.04 0.27 par:pas; +accoutrée accoutré adj f s 0.02 0.41 0.00 0.20 +accoutrés accoutrer ver m p 0.06 0.54 0.02 0.14 par:pas; +accoutuma accoutumer ver 0.89 9.12 0.00 0.07 ind:pas:3s; +accoutumai accoutumer ver 0.89 9.12 0.00 0.07 ind:pas:1s; +accoutumaient accoutumer ver 0.89 9.12 0.00 0.20 ind:imp:3p; +accoutumais accoutumer ver 0.89 9.12 0.00 0.07 ind:imp:1s; +accoutumait accoutumer ver 0.89 9.12 0.00 0.20 ind:imp:3s; +accoutumance accoutumance nom f s 0.30 1.28 0.20 1.28 +accoutumances accoutumance nom f p 0.30 1.28 0.10 0.00 +accoutumant accoutumer ver 0.89 9.12 0.00 0.14 par:pre; +accoutume accoutumer ver 0.89 9.12 0.03 0.54 ind:pre:1s;ind:pre:3s; +accoutument accoutumer ver 0.89 9.12 0.00 0.20 ind:pre:3p; +accoutumer accoutumer ver 0.89 9.12 0.33 1.08 inf; +accoutumerait accoutumer ver 0.89 9.12 0.00 0.07 cnd:pre:3s; +accoutumé accoutumer ver m s 0.89 9.12 0.39 3.58 par:pas; +accoutumée accoutumer ver f s 0.89 9.12 0.11 1.35 par:pas; +accoutumées accoutumé adj f p 0.26 5.00 0.14 0.07 +accoutumés accoutumer ver m p 0.89 9.12 0.02 1.22 par:pas; +accouvée accouver ver f s 0.00 0.07 0.00 0.07 par:pas; +accrût accroître ver 3.51 11.15 0.00 0.07 sub:imp:3s; +accras accra nom m p 0.10 0.00 0.10 0.00 +accro accro adj m s 6.81 0.68 6.22 0.61 +accroît accroître ver 3.51 11.15 1.12 1.76 ind:pre:3s; +accroîtra accroître ver 3.51 11.15 0.12 0.00 ind:fut:3s; +accroîtrait accroître ver 3.51 11.15 0.01 0.00 cnd:pre:3s; +accroître accroître ver 3.51 11.15 1.46 3.99 inf; +accroîtront accroître ver 3.51 11.15 0.01 0.07 ind:fut:3p; +accroc accroc nom m s 1.90 3.11 1.67 2.57 +accrocha accrocher ver 51.56 99.93 0.02 5.68 ind:pas:3s; +accrochage accrochage nom m s 2.06 1.49 1.44 0.88 +accrochages accrochage nom m p 2.06 1.49 0.62 0.61 +accrochai accrocher ver 51.56 99.93 0.00 1.01 ind:pas:1s; +accrochaient accrocher ver 51.56 99.93 0.06 4.73 ind:imp:3p; +accrochais accrocher ver 51.56 99.93 0.47 1.01 ind:imp:1s;ind:imp:2s; +accrochait accrocher ver 51.56 99.93 0.56 10.34 ind:imp:3s; +accrochant accrocher ver 51.56 99.93 0.43 4.59 par:pre; +accroche_coeur accroche_coeur nom m s 0.00 0.74 0.00 0.34 +accroche_coeur accroche_coeur nom m p 0.00 0.74 0.00 0.41 +accroche accrocher ver 51.56 99.93 16.39 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accrochent accrocher ver 51.56 99.93 1.37 2.64 ind:pre:3p; +accrocher accrocher ver 51.56 99.93 10.46 14.32 inf; +accrochera accrocher ver 51.56 99.93 0.15 0.07 ind:fut:3s; +accrocherai accrocher ver 51.56 99.93 0.38 0.14 ind:fut:1s; +accrocheraient accrocher ver 51.56 99.93 0.00 0.07 cnd:pre:3p; +accrocherais accrocher ver 51.56 99.93 0.04 0.20 cnd:pre:1s; +accrocherait accrocher ver 51.56 99.93 0.04 0.07 cnd:pre:3s; +accrocherez accrocher ver 51.56 99.93 0.17 0.00 ind:fut:2p; +accrocheriez accrocher ver 51.56 99.93 0.00 0.07 cnd:pre:2p; +accrocheront accrocher ver 51.56 99.93 0.02 0.00 ind:fut:3p; +accroches accrocher ver 51.56 99.93 2.09 0.07 ind:pre:2s;sub:pre:2s; +accrocheur accrocheur adj m s 0.59 0.34 0.55 0.14 +accrocheurs accrocheur adj m p 0.59 0.34 0.03 0.14 +accrocheuse accrocheur adj f s 0.59 0.34 0.02 0.00 +accrocheuses accrocheur adj f p 0.59 0.34 0.00 0.07 +accrochez accrocher ver 51.56 99.93 8.03 0.27 imp:pre:2p;ind:pre:2p; +accrochiez accrocher ver 51.56 99.93 0.17 0.00 ind:imp:2p; +accrochions accrocher ver 51.56 99.93 0.02 0.47 ind:imp:1p; +accrochons accrocher ver 51.56 99.93 0.12 0.07 imp:pre:1p;ind:pre:1p; +accrochât accrocher ver 51.56 99.93 0.00 0.14 sub:imp:3s; +accrochèrent accrocher ver 51.56 99.93 0.02 0.61 ind:pas:3p; +accroché accrocher ver m s 51.56 99.93 6.13 15.95 par:pas; +accrochée accrocher ver f s 51.56 99.93 2.06 9.86 par:pas; +accrochées accrocher ver f p 51.56 99.93 0.80 5.81 par:pas; +accrochés accrocher ver m p 51.56 99.93 1.56 8.58 par:pas; +accrocs accroc nom m p 1.90 3.11 0.23 0.54 +accroire accroire ver 0.02 0.54 0.02 0.54 inf; +accrois accroître ver 3.51 11.15 0.01 0.07 ind:pre:1s; +accroissaient accroître ver 3.51 11.15 0.01 0.20 ind:imp:3p; +accroissait accroître ver 3.51 11.15 0.00 0.95 ind:imp:3s; +accroissant accroître ver 3.51 11.15 0.04 0.14 par:pre; +accroisse accroître ver 3.51 11.15 0.00 0.07 sub:pre:3s; +accroissement accroissement nom m s 0.41 1.28 0.41 1.28 +accroissent accroître ver 3.51 11.15 0.04 0.27 ind:pre:3p; +accroissez accroître ver 3.51 11.15 0.04 0.00 imp:pre:2p;ind:pre:2p; +accros accro nom m p 2.56 0.07 0.90 0.07 +accroupi accroupir ver m s 2.00 24.93 0.72 8.24 par:pas; +accroupie accroupir ver f s 2.00 24.93 0.47 3.31 par:pas; +accroupies accroupir ver f p 2.00 24.93 0.00 0.81 par:pas; +accroupir accroupir ver 2.00 24.93 0.09 2.70 inf; +accroupirent accroupir ver 2.00 24.93 0.00 0.47 ind:pas:3p; +accroupis accroupir ver m p 2.00 24.93 0.23 2.84 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +accroupissaient accroupir ver 2.00 24.93 0.00 0.27 ind:imp:3p; +accroupissais accroupir ver 2.00 24.93 0.01 0.07 ind:imp:1s; +accroupissait accroupir ver 2.00 24.93 0.15 0.07 ind:imp:3s; +accroupissant accroupir ver 2.00 24.93 0.00 0.34 par:pre; +accroupisse accroupir ver 2.00 24.93 0.01 0.07 sub:pre:1s;sub:pre:3s; +accroupissement accroupissement nom m s 0.00 0.20 0.00 0.20 +accroupissent accroupir ver 2.00 24.93 0.02 0.34 ind:pre:3p; +accroupissons accroupir ver 2.00 24.93 0.00 0.14 ind:pre:1p; +accroupit accroupir ver 2.00 24.93 0.29 5.27 ind:pre:3s;ind:pas:3s; +accru accroître ver m s 3.51 11.15 0.39 1.08 par:pas; +accrédita accréditer ver 0.36 1.55 0.00 0.07 ind:pas:3s; +accréditaient accréditer ver 0.36 1.55 0.01 0.07 ind:imp:3p; +accréditait accréditer ver 0.36 1.55 0.00 0.07 ind:imp:3s; +accréditant accréditer ver 0.36 1.55 0.00 0.07 par:pre; +accréditation accréditation nom f s 0.27 0.00 0.19 0.00 +accréditations accréditation nom f p 0.27 0.00 0.07 0.00 +accréditer accréditer ver 0.36 1.55 0.03 0.74 inf; +accréditif accréditif nom m s 0.00 0.07 0.00 0.07 +accrédité accrédité adj m s 0.14 0.27 0.07 0.20 +accréditée accréditer ver f s 0.36 1.55 0.04 0.14 par:pas; +accrédités accréditer ver m p 0.36 1.55 0.23 0.07 par:pas; +accrue accru adj f s 0.57 3.04 0.29 2.09 +accrues accroître ver f p 3.51 11.15 0.10 0.20 par:pas; +accrurent accroître ver 3.51 11.15 0.01 0.27 ind:pas:3p; +accrus accroître ver m p 3.51 11.15 0.04 0.14 par:pas; +accrut accroître ver 3.51 11.15 0.02 0.81 ind:pas:3s; +accrétion accrétion nom f s 0.03 0.00 0.03 0.00 +accède accéder ver 8.58 12.97 0.95 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +accèdent accéder ver 8.58 12.97 0.06 0.41 ind:pre:3p; +accèdes accéder ver 8.58 12.97 0.04 0.00 ind:pre:2s; +accès accès nom m 29.53 23.78 29.53 23.78 +accu accu nom m s 0.11 0.34 0.00 0.07 +accéda accéder ver 8.58 12.97 0.03 0.34 ind:pas:3s; +accédai accéder ver 8.58 12.97 0.00 0.14 ind:pas:1s; +accédaient accéder ver 8.58 12.97 0.00 0.34 ind:imp:3p; +accédais accéder ver 8.58 12.97 0.04 0.20 ind:imp:1s; +accédait accéder ver 8.58 12.97 0.22 2.70 ind:imp:3s; +accédant accéder ver 8.58 12.97 0.03 0.20 par:pre; +accéder accéder ver 8.58 12.97 6.29 5.81 inf; +accédera accéder ver 8.58 12.97 0.05 0.07 ind:fut:3s; +accéderai accéder ver 8.58 12.97 0.03 0.00 ind:fut:1s; +accéderaient accéder ver 8.58 12.97 0.00 0.14 cnd:pre:3p; +accéderais accéder ver 8.58 12.97 0.02 0.14 cnd:pre:1s; +accéderait accéder ver 8.58 12.97 0.01 0.07 cnd:pre:3s; +accéderas accéder ver 8.58 12.97 0.02 0.00 ind:fut:2s; +accédez accéder ver 8.58 12.97 0.11 0.00 imp:pre:2p;ind:pre:2p; +accédâmes accéder ver 8.58 12.97 0.00 0.07 ind:pas:1p; +accédons accéder ver 8.58 12.97 0.00 0.20 ind:pre:1p; +accédé accéder ver m s 8.58 12.97 0.68 0.74 par:pas; +accueil accueil nom m s 13.83 16.42 13.83 16.22 +accueillît accueillir ver 31.98 54.73 0.00 0.20 sub:imp:3s; +accueillaient accueillir ver 31.98 54.73 0.00 1.08 ind:imp:3p; +accueillais accueillir ver 31.98 54.73 0.26 0.34 ind:imp:1s;ind:imp:2s; +accueillait accueillir ver 31.98 54.73 0.42 5.88 ind:imp:3s; +accueillant accueillant adj m s 2.07 5.07 1.21 1.82 +accueillante accueillant adj f s 2.07 5.07 0.47 2.09 +accueillantes accueillant adj f p 2.07 5.07 0.14 0.27 +accueillants accueillant adj m p 2.07 5.07 0.25 0.88 +accueille accueillir ver 31.98 54.73 4.58 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accueillent accueillir ver 31.98 54.73 0.90 1.76 ind:pre:3p; +accueillera accueillir ver 31.98 54.73 1.07 0.47 ind:fut:3s; +accueillerai accueillir ver 31.98 54.73 0.25 0.07 ind:fut:1s; +accueilleraient accueillir ver 31.98 54.73 0.17 0.00 cnd:pre:3p; +accueillerait accueillir ver 31.98 54.73 0.16 0.74 cnd:pre:3s; +accueilleras accueillir ver 31.98 54.73 0.01 0.00 ind:fut:2s; +accueillerez accueillir ver 31.98 54.73 0.24 0.07 ind:fut:2p; +accueilleriez accueillir ver 31.98 54.73 0.02 0.00 cnd:pre:2p; +accueillerons accueillir ver 31.98 54.73 0.13 0.07 ind:fut:1p; +accueilleront accueillir ver 31.98 54.73 0.10 0.27 ind:fut:3p; +accueilles accueillir ver 31.98 54.73 0.22 0.07 ind:pre:2s; +accueillez accueillir ver 31.98 54.73 0.97 0.14 imp:pre:2p;ind:pre:2p; +accueilli accueillir ver m s 31.98 54.73 3.79 7.91 par:pas; +accueillie accueillir ver f s 31.98 54.73 0.65 2.23 par:pas; +accueillies accueillir ver f p 31.98 54.73 0.05 0.61 par:pas; +accueillir accueillir ver 31.98 54.73 14.39 13.99 inf; +accueillirent accueillir ver 31.98 54.73 0.03 1.49 ind:pas:3p; +accueillis accueillir ver m p 31.98 54.73 0.98 3.18 ind:pas:1s;par:pas; +accueillit accueillir ver 31.98 54.73 0.50 6.69 ind:pas:3s; +accueillons accueillir ver 31.98 54.73 1.88 0.07 imp:pre:1p;ind:pre:1p; +accueils accueil nom m p 13.83 16.42 0.00 0.20 +accula acculer ver 1.03 4.93 0.00 0.07 ind:pas:3s; +acculaient acculer ver 1.03 4.93 0.00 0.20 ind:imp:3p; +acculais acculer ver 1.03 4.93 0.00 0.14 ind:imp:1s; +acculait acculer ver 1.03 4.93 0.00 0.27 ind:imp:3s; +acculant acculer ver 1.03 4.93 0.00 0.14 par:pre; +accule acculer ver 1.03 4.93 0.29 0.14 ind:pre:1s;ind:pre:3s; +acculent acculer ver 1.03 4.93 0.01 0.14 ind:pre:3p; +acculer acculer ver 1.03 4.93 0.13 0.88 inf; +acculera acculer ver 1.03 4.93 0.01 0.00 ind:fut:3s; +acculeraient acculer ver 1.03 4.93 0.00 0.07 cnd:pre:3p; +acculez acculer ver 1.03 4.93 0.04 0.00 imp:pre:2p;ind:pre:2p; +acculât acculer ver 1.03 4.93 0.00 0.07 sub:imp:3s; +accélère accélérer ver 15.78 17.97 7.32 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accélèrent accélérer ver 15.78 17.97 0.23 0.54 ind:pre:3p; +acculèrent acculer ver 1.03 4.93 0.00 0.07 ind:pas:3p; +accélères accélérer ver 15.78 17.97 0.31 0.07 ind:pre:2s;sub:pre:2s; +acculturation acculturation nom f s 0.01 0.00 0.01 0.00 +acculé acculer ver m s 1.03 4.93 0.43 1.76 par:pas; +acculée acculer ver f s 1.03 4.93 0.04 0.34 par:pas; +acculées acculer ver f p 1.03 4.93 0.01 0.07 par:pas; +accéléra accélérer ver 15.78 17.97 0.14 1.96 ind:pas:3s; +accélérai accélérer ver 15.78 17.97 0.00 0.34 ind:pas:1s; +accéléraient accélérer ver 15.78 17.97 0.00 0.41 ind:imp:3p; +accélérais accélérer ver 15.78 17.97 0.11 0.27 ind:imp:1s; +accélérait accélérer ver 15.78 17.97 0.13 2.64 ind:imp:3s; +accélérant accélérer ver 15.78 17.97 0.22 1.08 par:pre; +accélérants accélérant adj m p 0.23 0.00 0.02 0.00 +accélérateur accélérateur nom m s 2.22 3.51 2.16 3.38 +accélérateurs accélérateur nom m p 2.22 3.51 0.06 0.14 +accélération accélération nom f s 1.50 3.11 1.46 2.64 +accélérations accélération nom f p 1.50 3.11 0.04 0.47 +accélératrice accélérateur adj f s 0.34 0.14 0.01 0.00 +accélérer accélérer ver 15.78 17.97 4.41 2.91 inf; +accélérera accélérer ver 15.78 17.97 0.02 0.00 ind:fut:3s; +accélérerait accélérer ver 15.78 17.97 0.08 0.07 cnd:pre:3s; +accéléreras accélérer ver 15.78 17.97 0.01 0.00 ind:fut:2s; +accélérez accélérer ver 15.78 17.97 1.39 0.00 imp:pre:2p;ind:pre:2p; +accélériez accélérer ver 15.78 17.97 0.01 0.00 ind:imp:2p; +accélérons accélérer ver 15.78 17.97 0.15 0.00 imp:pre:1p;ind:pre:1p; +accélérèrent accélérer ver 15.78 17.97 0.00 0.20 ind:pas:3p; +accéléré accélérer ver m s 15.78 17.97 0.95 0.95 par:pas; +accélérée accélérer ver f s 15.78 17.97 0.23 2.23 par:pas; +accélérées accélérer ver f p 15.78 17.97 0.05 0.20 par:pas; +accélérés accéléré adj m p 0.28 2.03 0.01 0.41 +acculés acculer ver m p 1.03 4.93 0.06 0.61 par:pas; +accumula accumuler ver 4.46 24.53 0.00 0.14 ind:pas:3s; +accumulai accumuler ver 4.46 24.53 0.00 0.07 ind:pas:1s; +accumulaient accumuler ver 4.46 24.53 0.04 1.76 ind:imp:3p; +accumulais accumuler ver 4.46 24.53 0.02 0.27 ind:imp:1s; +accumulait accumuler ver 4.46 24.53 0.04 2.57 ind:imp:3s; +accumulant accumuler ver 4.46 24.53 0.24 1.55 par:pre; +accumulateur accumulateur nom m s 0.03 0.14 0.03 0.07 +accumulateurs accumulateur nom m p 0.03 0.14 0.00 0.07 +accumulation accumulation nom f s 0.67 3.78 0.67 3.72 +accumulations accumulation nom f p 0.67 3.78 0.00 0.07 +accumule accumuler ver 4.46 24.53 1.01 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accumulent accumuler ver 4.46 24.53 0.77 0.95 ind:pre:3p; +accumuler accumuler ver 4.46 24.53 0.85 3.72 inf; +accumulerez accumuler ver 4.46 24.53 0.01 0.00 ind:fut:2p; +accumulez accumuler ver 4.46 24.53 0.23 0.00 imp:pre:2p;ind:pre:2p; +accumulèrent accumuler ver 4.46 24.53 0.00 0.14 ind:pas:3p; +accumulé accumuler ver m s 4.46 24.53 0.55 3.04 par:pas; +accumulée accumuler ver f s 4.46 24.53 0.09 3.31 par:pas; +accumulées accumuler ver f p 4.46 24.53 0.30 3.04 par:pas; +accumulés accumuler ver m p 4.46 24.53 0.30 2.50 par:pas; +accus accu nom m p 0.11 0.34 0.11 0.27 +accusa accuser ver 52.72 39.93 0.18 3.18 ind:pas:3s; +accusai accuser ver 52.72 39.93 0.03 0.47 ind:pas:1s; +accusaient accuser ver 52.72 39.93 0.09 2.09 ind:imp:3p; +accusais accuser ver 52.72 39.93 0.29 0.68 ind:imp:1s;ind:imp:2s; +accusait accuser ver 52.72 39.93 1.57 6.55 ind:imp:3s; +accusant accuser ver 52.72 39.93 0.68 2.64 par:pre; +accusateur accusateur nom m s 0.35 1.28 0.25 0.41 +accusateurs accusateur adj m p 0.32 1.42 0.12 0.47 +accusatif accusatif nom m s 0.11 0.07 0.11 0.07 +accusation accusation nom f s 19.72 8.85 12.62 5.74 +accusations accusation nom f p 19.72 8.85 7.11 3.11 +accusatoire accusatoire adj s 0.01 0.00 0.01 0.00 +accusatrice accusateur adj f s 0.32 1.42 0.00 0.14 +accusatrices accusateur nom f p 0.35 1.28 0.00 0.07 +accuse accuser ver 52.72 39.93 13.28 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +accusent accuser ver 52.72 39.93 1.77 1.22 ind:pre:3p; +accuser accuser ver 52.72 39.93 10.06 7.03 inf; +accusera accuser ver 52.72 39.93 0.65 0.34 ind:fut:3s; +accuseraient accuser ver 52.72 39.93 0.03 0.14 cnd:pre:3p; +accuserais accuser ver 52.72 39.93 0.42 0.07 cnd:pre:1s;cnd:pre:2s; +accuserait accuser ver 52.72 39.93 0.30 0.54 cnd:pre:3s; +accuserez accuser ver 52.72 39.93 0.04 0.00 ind:fut:2p; +accuseriez accuser ver 52.72 39.93 0.03 0.07 cnd:pre:2p; +accuserions accuser ver 52.72 39.93 0.00 0.07 cnd:pre:1p; +accuserons accuser ver 52.72 39.93 0.02 0.00 ind:fut:1p; +accuseront accuser ver 52.72 39.93 0.22 0.00 ind:fut:3p; +accuses accuser ver 52.72 39.93 2.72 0.07 ind:pre:2s; +accusez accuser ver 52.72 39.93 3.22 0.88 imp:pre:2p;ind:pre:2p; +accusiez accuser ver 52.72 39.93 0.13 0.00 ind:imp:2p; +accusions accuser ver 52.72 39.93 0.01 0.07 ind:imp:1p; +accusons accuser ver 52.72 39.93 0.16 0.14 imp:pre:1p;ind:pre:1p; +accusât accuser ver 52.72 39.93 0.00 0.20 sub:imp:3s; +accusèrent accuser ver 52.72 39.93 0.01 0.20 ind:pas:3p; +accusé accuser ver m s 52.72 39.93 11.73 5.20 par:pas; +accusée accuser ver f s 52.72 39.93 3.20 1.01 par:pas; +accusées accuser ver f p 52.72 39.93 0.33 0.14 par:pas; +accusés accusé nom m p 13.74 11.69 2.69 4.32 +ace ace nom m s 2.48 0.00 2.48 0.00 +acellulaire acellulaire adj m s 0.03 0.00 0.03 0.00 +acerbe acerbe adj s 0.16 1.22 0.13 1.08 +acerbes acerbe adj f p 0.16 1.22 0.03 0.14 +acerbité acerbité nom m s 0.02 0.07 0.02 0.07 +acetabulum acetabulum nom m s 0.01 0.00 0.01 0.00 +achalandage achalandage nom m s 0.00 0.07 0.00 0.07 +achalandaient achalander ver 0.01 0.07 0.00 0.07 ind:imp:3p; +achalandé achalandé adj m s 0.02 0.34 0.01 0.07 +achalandée achalandé adj f s 0.02 0.34 0.01 0.07 +achalandées achalandé adj f p 0.02 0.34 0.00 0.07 +achalandés achalander ver m p 0.01 0.07 0.01 0.00 par:pas; +achaler achaler ver 0.01 0.00 0.01 0.00 inf; +achards achards nom m p 0.03 0.00 0.03 0.00 +acharna acharner ver 2.99 22.64 0.01 1.22 ind:pas:3s; +acharnai acharner ver 2.99 22.64 0.00 0.07 ind:pas:1s; +acharnaient acharner ver 2.99 22.64 0.03 1.62 ind:imp:3p; +acharnais acharner ver 2.99 22.64 0.01 0.47 ind:imp:1s; +acharnait acharner ver 2.99 22.64 0.11 3.24 ind:imp:3s; +acharnant acharner ver 2.99 22.64 0.00 1.49 par:pre; +acharne acharner ver 2.99 22.64 0.86 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acharnement acharnement nom m s 0.60 8.24 0.60 8.11 +acharnements acharnement nom m p 0.60 8.24 0.00 0.14 +acharnent acharner ver 2.99 22.64 0.23 1.08 ind:pre:3p; +acharner acharner ver 2.99 22.64 0.35 1.62 inf; +acharnera acharner ver 2.99 22.64 0.01 0.14 ind:fut:3s; +acharnerai acharner ver 2.99 22.64 0.02 0.00 ind:fut:1s; +acharnerait acharner ver 2.99 22.64 0.01 0.00 cnd:pre:3s; +acharnes acharner ver 2.99 22.64 0.26 0.14 ind:pre:2s; +acharnez acharner ver 2.99 22.64 0.10 0.07 imp:pre:2p;ind:pre:2p; +acharnèrent acharner ver 2.99 22.64 0.00 0.34 ind:pas:3p; +acharné acharné adj m s 1.61 5.41 0.59 2.23 +acharnée acharné adj f s 1.61 5.41 0.66 1.69 +acharnées acharné adj f p 1.61 5.41 0.02 0.41 +acharnés acharné adj m p 1.61 5.41 0.34 1.08 +achat achat nom m s 9.75 16.96 5.20 10.95 +achats achat nom m p 9.75 16.96 4.55 6.01 +ache ache nom f s 0.00 0.20 0.00 0.14 +achemina acheminer ver 0.83 6.15 0.01 0.41 ind:pas:3s; +acheminai acheminer ver 0.83 6.15 0.00 0.14 ind:pas:1s; +acheminaient acheminer ver 0.83 6.15 0.00 0.27 ind:imp:3p; +acheminait acheminer ver 0.83 6.15 0.01 0.88 ind:imp:3s; +acheminant acheminer ver 0.83 6.15 0.02 0.27 par:pre; +achemine acheminer ver 0.83 6.15 0.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acheminement acheminement nom m s 0.20 0.47 0.20 0.47 +acheminent acheminer ver 0.83 6.15 0.01 0.61 ind:pre:3p; +acheminer acheminer ver 0.83 6.15 0.55 1.22 inf; +achemineront acheminer ver 0.83 6.15 0.00 0.07 ind:fut:3p; +acheminâmes acheminer ver 0.83 6.15 0.00 0.07 ind:pas:1p; +acheminons acheminer ver 0.83 6.15 0.00 0.27 ind:pre:1p; +acheminèrent acheminer ver 0.83 6.15 0.00 0.14 ind:pas:3p; +acheminé acheminer ver m s 0.83 6.15 0.04 0.41 par:pas; +acheminée acheminer ver f s 0.83 6.15 0.05 0.14 par:pas; +acheminées acheminer ver f p 0.83 6.15 0.03 0.27 par:pas; +acheminés acheminer ver m p 0.83 6.15 0.02 0.27 par:pas; +aches ache nom f p 0.00 0.20 0.00 0.07 +acheta acheter ver 290.69 148.38 0.37 7.09 ind:pas:3s; +achetable achetable adj s 0.00 0.14 0.00 0.14 +achetai acheter ver 290.69 148.38 0.28 2.23 ind:pas:1s; +achetaient acheter ver 290.69 148.38 0.64 2.16 ind:imp:3p; +achetais acheter ver 290.69 148.38 1.32 1.49 ind:imp:1s;ind:imp:2s; +achetait acheter ver 290.69 148.38 3.43 6.22 ind:imp:3s; +achetant acheter ver 290.69 148.38 1.23 1.42 par:pre; +achetassent acheter ver 290.69 148.38 0.00 0.07 sub:imp:3p; +acheter acheter ver 290.69 148.38 115.26 57.09 inf; +acheteur acheteur nom m s 6.55 5.47 3.89 2.97 +acheteurs acheteur nom m p 6.55 5.47 2.50 2.16 +acheteuse acheteur nom f s 6.55 5.47 0.16 0.14 +acheteuses acheteuse nom f p 0.02 0.00 0.02 0.00 +achetez acheter ver 290.69 148.38 10.51 1.22 imp:pre:2p;ind:pre:2p; +achetiez acheter ver 290.69 148.38 0.28 0.14 ind:imp:2p; +achetions acheter ver 290.69 148.38 0.06 0.74 ind:imp:1p; +achetâmes acheter ver 290.69 148.38 0.00 0.20 ind:pas:1p; +achetons acheter ver 290.69 148.38 1.38 0.47 imp:pre:1p;ind:pre:1p; +achetât acheter ver 290.69 148.38 0.00 0.20 sub:imp:3s; +achetèrent acheter ver 290.69 148.38 0.06 0.95 ind:pas:3p; +acheté acheter ver m s 290.69 148.38 72.38 28.72 par:pas;par:pas;par:pas; +achetée acheter ver f s 290.69 148.38 8.67 5.88 par:pas; +achetées acheter ver f p 290.69 148.38 1.90 2.84 ind:imp:3s;par:pas; +achetés acheter ver m p 290.69 148.38 3.52 3.85 par:pas; +acheva achever ver 22.97 81.42 0.23 11.69 ind:pas:3s; +achevai achever ver 22.97 81.42 0.01 0.54 ind:pas:1s; +achevaient achever ver 22.97 81.42 0.12 4.19 ind:imp:3p; +achevais achever ver 22.97 81.42 0.00 0.54 ind:imp:1s; +achevait achever ver 22.97 81.42 0.34 12.64 ind:imp:3s; +achevant achever ver 22.97 81.42 0.02 2.57 par:pre; +achever achever ver 22.97 81.42 6.49 15.00 inf; +achevez achever ver 22.97 81.42 1.00 0.07 imp:pre:2p;ind:pre:2p; +acheviez achever ver 22.97 81.42 0.01 0.00 ind:imp:2p; +achevions achever ver 22.97 81.42 0.00 0.41 ind:imp:1p; +achevâmes achever ver 22.97 81.42 0.00 0.07 ind:pas:1p; +achevons achever ver 22.97 81.42 0.07 0.41 imp:pre:1p;ind:pre:1p; +achevât achever ver 22.97 81.42 0.00 0.61 sub:imp:3s; +achevèrent achever ver 22.97 81.42 0.01 1.22 ind:pas:3p; +achevé achever ver m s 22.97 81.42 2.70 12.64 par:pas; +achevée achever ver f s 22.97 81.42 1.54 2.91 par:pas; +achevées achevé adj f p 1.61 6.69 0.19 0.81 +achevés achever ver m p 22.97 81.42 0.08 0.41 par:pas; +achillée achillée nom f s 0.01 0.00 0.01 0.00 +achondroplasie achondroplasie nom f s 0.04 0.00 0.03 0.00 +achondroplasies achondroplasie nom f p 0.04 0.00 0.01 0.00 +achoppa achopper ver 0.01 0.81 0.00 0.07 ind:pas:3s; +achoppai achopper ver 0.01 0.81 0.00 0.07 ind:pas:1s; +achoppaient achopper ver 0.01 0.81 0.00 0.07 ind:imp:3p; +achoppais achopper ver 0.01 0.81 0.00 0.20 ind:imp:1s; +achoppait achopper ver 0.01 0.81 0.00 0.07 ind:imp:3s; +achoppe achopper ver 0.01 0.81 0.00 0.14 ind:pre:1s;ind:pre:3s; +achoppement achoppement nom m s 0.01 0.14 0.01 0.14 +achopper achopper ver 0.01 0.81 0.01 0.00 inf; +achoppé achopper ver m s 0.01 0.81 0.00 0.14 par:pas; +achoppée achopper ver f s 0.01 0.81 0.00 0.07 par:pas; +achète acheter ver 290.69 148.38 39.82 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +achètent acheter ver 290.69 148.38 5.44 2.70 ind:pre:3p; +achètera acheter ver 290.69 148.38 3.98 0.74 ind:fut:3s; +achèterai acheter ver 290.69 148.38 7.09 2.30 ind:fut:1s; +achèteraient acheter ver 290.69 148.38 0.03 0.41 cnd:pre:3p; +achèterais acheter ver 290.69 148.38 1.75 0.74 cnd:pre:1s;cnd:pre:2s; +achèterait acheter ver 290.69 148.38 1.02 1.22 cnd:pre:3s; +achèteras acheter ver 290.69 148.38 1.55 0.61 ind:fut:2s; +achèterez acheter ver 290.69 148.38 0.48 0.20 ind:fut:2p; +achèteriez acheter ver 290.69 148.38 0.17 0.07 cnd:pre:2p; +achèterions acheter ver 290.69 148.38 0.00 0.07 cnd:pre:1p; +achèterons acheter ver 290.69 148.38 0.47 0.41 ind:fut:1p; +achèteront acheter ver 290.69 148.38 0.31 0.54 ind:fut:3p; +achètes acheter ver 290.69 148.38 7.28 0.88 ind:pre:2s;sub:pre:2s; +achève achever ver 22.97 81.42 8.31 11.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +achèvement achèvement nom m s 0.52 1.82 0.52 1.76 +achèvements achèvement nom m p 0.52 1.82 0.00 0.07 +achèvent achever ver 22.97 81.42 0.14 2.70 ind:pre:3p; +achèvera achever ver 22.97 81.42 1.00 0.27 ind:fut:3s; +achèverai achever ver 22.97 81.42 0.06 0.00 ind:fut:1s; +achèveraient achever ver 22.97 81.42 0.00 0.14 cnd:pre:3p; +achèverait achever ver 22.97 81.42 0.10 0.88 cnd:pre:3s; +achèverez achever ver 22.97 81.42 0.02 0.00 ind:fut:2p; +achèverons achever ver 22.97 81.42 0.06 0.00 ind:fut:1p; +achèveront achever ver 22.97 81.42 0.13 0.20 ind:fut:3p; +achèves achever ver 22.97 81.42 0.39 0.00 ind:pre:2s; +achélème achélème nom m s 0.00 1.69 0.00 0.95 +achélèmes achélème nom m p 0.00 1.69 0.00 0.74 +acid_jazz acid_jazz nom m s 0.03 0.00 0.03 0.00 +acide acide nom m s 9.46 4.80 8.44 3.85 +acides acide nom m p 9.46 4.80 1.02 0.95 +acidité acidité nom f s 0.29 0.95 0.27 0.81 +acidités acidité nom f p 0.29 0.95 0.02 0.14 +acidocétose acidocétose nom f s 0.08 0.00 0.08 0.00 +acidose acidose nom f s 0.22 0.00 0.22 0.00 +acidulé acidulé adj m s 0.15 1.55 0.02 0.47 +acidulée acidulé adj f s 0.15 1.55 0.04 0.27 +acidulées acidulé adj f p 0.15 1.55 0.01 0.27 +acidulés acidulé adj m p 0.15 1.55 0.08 0.54 +acier acier nom m s 13.88 34.46 13.85 33.38 +aciers acier nom m p 13.88 34.46 0.03 1.08 +aciérie aciérie nom f s 2.21 0.27 0.67 0.14 +aciéries aciérie nom f p 2.21 0.27 1.53 0.14 +acmé acmé nom f s 0.01 0.00 0.01 0.00 +acné acné nom f s 1.90 0.88 1.90 0.81 +acnéiques acnéique adj m p 0.00 0.14 0.00 0.14 +acnés acné nom f p 1.90 0.88 0.00 0.07 +acolyte acolyte nom m s 1.45 1.96 0.75 0.61 +acolytes acolyte nom m p 1.45 1.96 0.70 1.35 +acompte acompte nom m s 3.67 1.15 3.33 1.01 +acomptes acompte nom m p 3.67 1.15 0.34 0.14 +aconiers aconier nom m p 0.00 0.07 0.00 0.07 +aconit aconit nom m s 0.14 0.34 0.14 0.34 +acoquina acoquiner ver 0.23 1.01 0.01 0.07 ind:pas:3s; +acoquine acoquiner ver 0.23 1.01 0.04 0.07 ind:pre:1s;ind:pre:3s; +acoquiner acoquiner ver 0.23 1.01 0.12 0.41 inf; +acoquiné acoquiner ver m s 0.23 1.01 0.03 0.07 par:pas; +acoquinée acoquiner ver f s 0.23 1.01 0.02 0.14 par:pas; +acoquinés acoquiner ver m p 0.23 1.01 0.01 0.27 par:pas; +acouphène acouphène nom m s 0.18 0.00 0.18 0.00 +acoustique acoustique nom f s 0.57 0.34 0.55 0.34 +acoustiques acoustique adj p 0.56 0.81 0.07 0.07 +acqua_toffana acqua_toffana nom f s 0.00 0.07 0.00 0.07 +acquerra acquérir ver 8.30 29.66 0.01 0.00 ind:fut:3s; +acquerrai acquérir ver 8.30 29.66 0.01 0.07 ind:fut:1s; +acquerraient acquérir ver 8.30 29.66 0.00 0.14 cnd:pre:3p; +acquerront acquérir ver 8.30 29.66 0.01 0.07 ind:fut:3p; +acquiers acquérir ver 8.30 29.66 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +acquiert acquérir ver 8.30 29.66 0.68 1.42 ind:pre:3s; +acquiesce acquiescer ver 1.15 12.43 0.33 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acquiescement acquiescement nom m s 0.15 2.84 0.15 2.36 +acquiescements acquiescement nom m p 0.15 2.84 0.00 0.47 +acquiescent acquiescer ver 1.15 12.43 0.26 0.07 ind:pre:3p; +acquiescer acquiescer ver 1.15 12.43 0.18 1.49 inf; +acquiesceront acquiescer ver 1.15 12.43 0.00 0.07 ind:fut:3p; +acquiesces acquiescer ver 1.15 12.43 0.02 0.00 ind:pre:2s; +acquiescèrent acquiescer ver 1.15 12.43 0.00 0.14 ind:pas:3p; +acquiescé acquiescer ver m s 1.15 12.43 0.31 1.08 par:pas; +acquiesça acquiescer ver 1.15 12.43 0.01 4.59 ind:pas:3s; +acquiesçai acquiescer ver 1.15 12.43 0.00 0.74 ind:pas:1s; +acquiesçaient acquiescer ver 1.15 12.43 0.00 0.14 ind:imp:3p; +acquiesçais acquiescer ver 1.15 12.43 0.02 0.34 ind:imp:1s; +acquiesçait acquiescer ver 1.15 12.43 0.00 1.15 ind:imp:3s; +acquiesçant acquiescer ver 1.15 12.43 0.02 0.20 par:pre; +acquiesçons acquiescer ver 1.15 12.43 0.00 0.07 ind:pre:1p; +acquirent acquérir ver 8.30 29.66 0.00 0.14 ind:pas:3p; +acquis acquérir ver m 8.30 29.66 3.52 13.65 ind:pas:1s;par:pas;par:pas; +acquise acquérir ver f s 8.30 29.66 1.05 2.97 par:pas; +acquises acquérir ver f p 8.30 29.66 0.34 0.88 par:pas; +acquisition acquisition nom f s 2.15 3.78 1.35 2.84 +acquisitions acquisition nom f p 2.15 3.78 0.81 0.95 +acquit acquit nom m s 0.29 2.23 0.29 2.16 +acquière acquérir ver 8.30 29.66 0.04 0.20 sub:pre:1s;sub:pre:3s; +acquièrent acquérir ver 8.30 29.66 0.12 0.74 ind:pre:3p; +acquits acquit nom m p 0.29 2.23 0.00 0.07 +acquitta acquitter ver 5.29 6.82 0.00 0.47 ind:pas:3s; +acquittai acquitter ver 5.29 6.82 0.00 0.07 ind:pas:1s; +acquittaient acquitter ver 5.29 6.82 0.00 0.20 ind:imp:3p; +acquittais acquitter ver 5.29 6.82 0.00 0.34 ind:imp:1s; +acquittait acquitter ver 5.29 6.82 0.04 0.81 ind:imp:3s; +acquittant acquitter ver 5.29 6.82 0.01 0.20 par:pre; +acquitte acquitter ver 5.29 6.82 1.17 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +acquittement acquittement nom m s 0.60 0.34 0.60 0.34 +acquittent acquitter ver 5.29 6.82 0.07 0.00 ind:pre:3p; +acquitter acquitter ver 5.29 6.82 1.13 1.82 inf; +acquittera acquitter ver 5.29 6.82 0.04 0.07 ind:fut:3s; +acquitterai acquitter ver 5.29 6.82 0.01 0.07 ind:fut:1s; +acquitterais acquitter ver 5.29 6.82 0.01 0.00 cnd:pre:1s; +acquitterait acquitter ver 5.29 6.82 0.03 0.07 cnd:pre:3s; +acquitterez acquitter ver 5.29 6.82 0.03 0.07 ind:fut:2p; +acquittes acquitter ver 5.29 6.82 0.14 0.07 ind:pre:2s; +acquittez acquitter ver 5.29 6.82 0.16 0.00 imp:pre:2p;ind:pre:2p; +acquittions acquitter ver 5.29 6.82 0.01 0.07 ind:imp:1p; +acquittât acquitter ver 5.29 6.82 0.00 0.07 sub:imp:3s; +acquitté acquitter ver m s 5.29 6.82 1.92 1.28 par:pas; +acquittée acquitter ver f s 5.29 6.82 0.26 0.34 par:pas; +acquittés acquitter ver m p 5.29 6.82 0.27 0.07 par:pas; +acquéraient acquérir ver 8.30 29.66 0.10 0.20 ind:imp:3p; +acquérais acquérir ver 8.30 29.66 0.01 0.27 ind:imp:1s; +acquérait acquérir ver 8.30 29.66 0.11 0.95 ind:imp:3s; +acquérant acquérir ver 8.30 29.66 0.05 0.20 par:pre; +acquéreur acquéreur nom m s 0.58 1.08 0.23 0.88 +acquéreurs acquéreur nom m p 0.58 1.08 0.35 0.20 +acquérions acquérir ver 8.30 29.66 0.00 0.07 ind:imp:1p; +acquérir acquérir ver 8.30 29.66 2.15 7.43 inf; +acquérons acquérir ver 8.30 29.66 0.01 0.07 ind:pre:1p; +acquêt acquêt nom m s 0.14 0.20 0.00 0.07 +acquêts acquêt nom m p 0.14 0.20 0.14 0.14 +acra acra nom m s 0.27 0.14 0.27 0.14 +acre acre nom f s 0.83 0.41 0.27 0.07 +acres acre nom f p 0.83 0.41 0.56 0.34 +acrimonie acrimonie nom f s 0.06 0.81 0.06 0.81 +acrimonieuse acrimonieux adj f s 0.04 0.14 0.01 0.07 +acrimonieusement acrimonieusement adv 0.00 0.07 0.00 0.07 +acrimonieuses acrimonieux adj f p 0.04 0.14 0.00 0.07 +acrimonieux acrimonieux adj m s 0.04 0.14 0.02 0.00 +acrobate acrobate nom s 2.34 4.12 1.46 2.57 +acrobates acrobate nom p 2.34 4.12 0.89 1.55 +acrobatie acrobatie nom f s 0.81 2.57 0.32 0.81 +acrobaties acrobatie nom f p 0.81 2.57 0.50 1.76 +acrobatique acrobatique adj s 0.47 1.01 0.31 0.61 +acrobatiquement acrobatiquement adv 0.01 0.07 0.01 0.07 +acrobatiques acrobatique adj p 0.47 1.01 0.17 0.41 +acrocéphale acrocéphale adj s 0.00 0.07 0.00 0.07 +acromion acromion nom m s 0.01 0.14 0.01 0.14 +acronyme acronyme nom m s 0.19 0.07 0.19 0.07 +acrophobie acrophobie nom f s 0.08 0.00 0.08 0.00 +acropole acropole nom f s 0.00 0.81 0.00 0.81 +acrostiche acrostiche nom m s 0.02 0.00 0.02 0.00 +acrotère acrotère nom m s 0.00 0.07 0.00 0.07 +acré acré ono 0.00 0.20 0.00 0.20 +acrylique acrylique nom m s 0.50 0.14 0.40 0.07 +acryliques acrylique nom m p 0.50 0.14 0.10 0.07 +acrylonitrile acrylonitrile nom m s 0.01 0.00 0.01 0.00 +acta acter ver 0.29 0.07 0.00 0.07 ind:pas:3s; +acte acte nom m s 56.81 57.30 39.19 35.88 +actes acte nom m p 56.81 57.30 17.62 21.42 +acteur acteur nom m s 72.27 38.31 30.51 15.47 +acteurs acteur nom m p 72.27 38.31 17.92 12.30 +actif actif adj m s 10.15 13.65 4.12 3.58 +actifs actif adj m p 10.15 13.65 1.33 1.35 +actine actine nom f s 0.01 0.00 0.01 0.00 +actinies actinie nom f p 0.00 0.41 0.00 0.41 +action_painting action_painting nom f s 0.00 0.07 0.00 0.07 +action action nom f s 69.27 87.43 49.97 72.91 +actionna actionner ver 2.01 5.61 0.00 0.47 ind:pas:3s; +actionnai actionner ver 2.01 5.61 0.00 0.20 ind:pas:1s; +actionnaient actionner ver 2.01 5.61 0.14 0.41 ind:imp:3p; +actionnaire actionnaire nom s 3.72 0.74 1.21 0.27 +actionnaires actionnaire nom p 3.72 0.74 2.51 0.47 +actionnais actionner ver 2.01 5.61 0.01 0.07 ind:imp:1s; +actionnait actionner ver 2.01 5.61 0.00 0.81 ind:imp:3s; +actionnant actionner ver 2.01 5.61 0.02 0.61 par:pre; +actionnariat actionnariat nom m s 0.01 0.00 0.01 0.00 +actionne actionner ver 2.01 5.61 0.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +actionnement actionnement nom m s 0.01 0.07 0.01 0.07 +actionnent actionner ver 2.01 5.61 0.04 0.00 ind:pre:3p; +actionner actionner ver 2.01 5.61 0.43 1.22 inf; +actionneront actionner ver 2.01 5.61 0.00 0.07 ind:fut:3p; +actionneur actionneur nom m s 0.01 0.00 0.01 0.00 +actionnez actionner ver 2.01 5.61 0.34 0.00 imp:pre:2p;ind:pre:2p; +actionnât actionner ver 2.01 5.61 0.00 0.07 sub:imp:3s; +actionné actionner ver m s 2.01 5.61 0.20 0.81 par:pas; +actionnée actionner ver f s 2.01 5.61 0.05 0.07 par:pas; +actionnées actionner ver f p 2.01 5.61 0.00 0.07 par:pas; +actionnés actionner ver m p 2.01 5.61 0.14 0.00 par:pas; +actions action nom f p 69.27 87.43 19.30 14.53 +activa activer ver 12.58 6.62 0.00 0.27 ind:pas:3s; +activai activer ver 12.58 6.62 0.00 0.07 ind:pas:1s; +activaient activer ver 12.58 6.62 0.10 0.74 ind:imp:3p; +activait activer ver 12.58 6.62 0.05 1.08 ind:imp:3s; +activant activer ver 12.58 6.62 0.10 0.47 par:pre; +activateur activateur nom m s 0.10 0.00 0.10 0.00 +activation activation nom f s 2.27 0.07 2.21 0.07 +activations activation nom f p 2.27 0.07 0.07 0.00 +active actif adj f s 10.15 13.65 4.21 7.16 +activement activement adv 1.18 3.51 1.18 3.51 +activent activer ver 12.58 6.62 0.15 0.61 ind:pre:3p; +activer activer ver 12.58 6.62 2.98 1.35 inf; +activera activer ver 12.58 6.62 0.13 0.00 ind:fut:3s; +activerai activer ver 12.58 6.62 0.06 0.00 ind:fut:1s; +activerait activer ver 12.58 6.62 0.02 0.00 cnd:pre:3s; +activeras activer ver 12.58 6.62 0.01 0.00 ind:fut:2s; +actives actif adj f p 10.15 13.65 0.50 1.55 +activez activer ver 12.58 6.62 2.34 0.00 imp:pre:2p;ind:pre:2p; +activisme activisme nom m s 0.15 0.20 0.15 0.20 +activiste activiste nom s 0.88 0.54 0.23 0.07 +activistes activiste nom p 0.88 0.54 0.65 0.47 +activité activité nom f s 23.47 38.92 13.05 25.81 +activités activité nom f p 23.47 38.92 10.42 13.11 +activons activer ver 12.58 6.62 0.33 0.34 imp:pre:1p;ind:pre:1p; +activèrent activer ver 12.58 6.62 0.00 0.14 ind:pas:3p; +activé activer ver m s 12.58 6.62 2.13 0.14 par:pas; +activée activé adj f s 2.57 0.07 0.81 0.00 +activées activé adj f p 2.57 0.07 0.34 0.00 +activés activé adj m p 2.57 0.07 0.48 0.00 +actrice acteur nom f s 72.27 38.31 23.83 7.57 +actrices actrice nom f p 2.50 0.00 2.50 0.00 +actuaire actuaire nom s 0.03 0.00 0.03 0.00 +actualisation actualisation nom f s 0.03 0.07 0.03 0.07 +actualise actualiser ver 0.17 0.34 0.01 0.07 ind:pre:3s; +actualiser actualiser ver 0.17 0.34 0.06 0.07 inf; +actualisez actualiser ver 0.17 0.34 0.04 0.00 imp:pre:2p; +actualisé actualiser ver m s 0.17 0.34 0.02 0.07 par:pas; +actualisée actualiser ver f s 0.17 0.34 0.02 0.07 par:pas; +actualisées actualiser ver f p 0.17 0.34 0.01 0.07 par:pas; +actualité actualité nom f s 3.25 8.72 1.79 5.68 +actualités actualité nom f p 3.25 8.72 1.45 3.04 +actuariel actuariel adj m s 0.02 0.00 0.02 0.00 +actuation actuation nom f s 0.01 0.00 0.01 0.00 +actuel actuel adj m s 14.86 20.68 4.69 6.49 +actuelle actuel adj f s 14.86 20.68 7.80 8.58 +actuellement actuellement adv 11.39 16.69 11.39 16.69 +actuelles actuel adj f p 14.86 20.68 1.14 2.64 +actuels actuel adj m p 14.86 20.68 1.23 2.97 +acuité acuité nom f s 0.56 3.18 0.56 3.18 +acumen acumen nom m s 0.00 0.07 0.00 0.07 +acéphale acéphale nom m s 0.00 0.20 0.00 0.14 +acéphales acéphale nom m p 0.00 0.20 0.00 0.07 +acuponcteur acuponcteur nom m s 0.23 0.00 0.23 0.00 +acuponcture acuponcture nom f s 0.17 0.00 0.17 0.00 +acupuncteur acupuncteur nom m s 0.11 0.07 0.11 0.07 +acupuncture acupuncture nom f s 0.79 0.41 0.79 0.41 +acéré acéré adj m s 0.81 2.43 0.14 0.74 +acérée acéré adj f s 0.81 2.43 0.11 0.54 +acérées acéré adj f p 0.81 2.43 0.51 0.68 +acérés acéré adj m p 0.81 2.43 0.06 0.47 +acétate acétate nom m s 0.20 0.14 0.20 0.14 +acétique acétique adj m s 0.05 0.07 0.05 0.07 +acétone acétone nom f s 0.21 0.27 0.21 0.27 +acétylcholine acétylcholine nom f s 0.25 0.00 0.25 0.00 +acétylsalicylique acétylsalicylique adj m s 0.03 0.00 0.03 0.00 +acétylène acétylène nom m s 0.18 1.96 0.18 1.96 +ad_hoc ad_hoc adj 0.11 0.81 0.11 0.81 +ad_infinitum ad_infinitum adv 0.05 0.00 0.05 0.00 +ad_libitum ad_libitum adv 0.00 0.14 0.00 0.14 +ad_limina ad_limina adv 0.00 0.07 0.00 0.07 +ad_majorem_dei_gloriam ad_majorem_dei_gloriam adv 0.00 0.14 0.00 0.14 +ad_nutum ad_nutum adv 0.00 0.07 0.00 0.07 +ad_patres ad_patres adv 0.02 0.27 0.02 0.27 +ad_vitam_aeternam ad_vitam_aeternam adv 0.00 0.20 0.00 0.20 +ada ada nom m s 0.05 0.00 0.05 0.00 +adage adage nom m s 0.62 0.74 0.61 0.54 +adages adage nom m p 0.62 0.74 0.01 0.20 +adagio adagio nom m s 0.13 0.34 0.13 0.34 +adamantin adamantin adj m s 0.01 0.20 0.00 0.14 +adamantine adamantin adj f s 0.01 0.20 0.01 0.07 +adamique adamique adj m s 0.00 0.14 0.00 0.14 +adapta adapter ver 13.44 12.57 0.01 0.14 ind:pas:3s; +adaptabilité adaptabilité nom f s 0.16 0.00 0.16 0.00 +adaptable adaptable adj s 0.10 0.20 0.07 0.07 +adaptables adaptable adj m p 0.10 0.20 0.02 0.14 +adaptai adapter ver 13.44 12.57 0.00 0.07 ind:pas:1s; +adaptaient adapter ver 13.44 12.57 0.01 0.14 ind:imp:3p; +adaptais adapter ver 13.44 12.57 0.00 0.20 ind:imp:1s; +adaptait adapter ver 13.44 12.57 0.04 0.68 ind:imp:3s; +adaptant adapter ver 13.44 12.57 0.05 0.47 par:pre; +adaptateur adaptateur nom m s 0.15 0.41 0.12 0.41 +adaptateurs adaptateur nom m p 0.15 0.41 0.04 0.00 +adaptatif adaptatif adj m s 0.04 0.07 0.04 0.00 +adaptatifs adaptatif adj m p 0.04 0.07 0.00 0.07 +adaptation adaptation nom f s 2.48 4.66 2.46 4.46 +adaptations adaptation nom f p 2.48 4.66 0.03 0.20 +adapte adapter ver 13.44 12.57 1.75 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adaptent adapter ver 13.44 12.57 0.39 0.07 ind:pre:3p; +adapter adapter ver 13.44 12.57 5.63 3.72 inf; +adaptera adapter ver 13.44 12.57 0.18 0.07 ind:fut:3s; +adapterai adapter ver 13.44 12.57 0.05 0.07 ind:fut:1s; +adapterais adapter ver 13.44 12.57 0.00 0.07 cnd:pre:1s; +adapterait adapter ver 13.44 12.57 0.01 0.07 cnd:pre:3s; +adapteras adapter ver 13.44 12.57 0.04 0.00 ind:fut:2s; +adapterez adapter ver 13.44 12.57 0.05 0.00 ind:fut:2p; +adapterons adapter ver 13.44 12.57 0.05 0.07 ind:fut:1p; +adapteront adapter ver 13.44 12.57 0.01 0.07 ind:fut:3p; +adaptes adapter ver 13.44 12.57 0.16 0.07 ind:pre:2s; +adaptez adapter ver 13.44 12.57 0.07 0.07 imp:pre:2p;ind:pre:2p; +adaptât adapter ver 13.44 12.57 0.00 0.07 sub:imp:3s; +adaptèrent adapter ver 13.44 12.57 0.01 0.07 ind:pas:3p; +adapté adapter ver m s 13.44 12.57 3.16 2.36 imp:pre:2s;par:pas; +adaptée adapter ver f s 13.44 12.57 0.78 1.42 par:pas; +adaptées adapter ver f p 13.44 12.57 0.66 0.61 par:pas; +adaptés adapter ver m p 13.44 12.57 0.34 0.81 par:pas; +addenda addenda nom m 0.07 0.00 0.07 0.00 +addendum addendum nom m s 0.01 0.07 0.01 0.07 +addiction addiction nom f s 0.41 0.07 0.41 0.07 +additif additif nom m s 0.21 0.14 0.15 0.14 +additifs additif nom m p 0.21 0.14 0.06 0.00 +addition addition nom f s 8.61 9.53 8.24 7.36 +additionnaient additionner ver 1.25 2.64 0.00 0.07 ind:imp:3p; +additionnais additionner ver 1.25 2.64 0.00 0.07 ind:imp:1s; +additionnait additionner ver 1.25 2.64 0.00 0.07 ind:imp:3s; +additionnant additionner ver 1.25 2.64 0.19 0.34 par:pre; +additionne additionner ver 1.25 2.64 0.22 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +additionnel additionnel adj m s 0.25 0.34 0.04 0.20 +additionnelle additionnel adj f s 0.25 0.34 0.11 0.00 +additionnelles additionnel adj f p 0.25 0.34 0.05 0.14 +additionnels additionnel adj m p 0.25 0.34 0.05 0.00 +additionnent additionner ver 1.25 2.64 0.13 0.20 ind:pre:3p; +additionner additionner ver 1.25 2.64 0.33 0.41 inf; +additionneraient additionner ver 1.25 2.64 0.14 0.07 cnd:pre:3p; +additionnerait additionner ver 1.25 2.64 0.00 0.07 cnd:pre:3s; +additionnez additionner ver 1.25 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +additionné additionner ver m s 1.25 2.64 0.06 0.07 par:pas; +additionnée additionner ver f s 1.25 2.64 0.01 0.20 par:pas; +additionnées additionner ver f p 1.25 2.64 0.14 0.27 par:pas; +additionnés additionner ver m p 1.25 2.64 0.01 0.20 par:pas; +additions addition nom f p 8.61 9.53 0.37 2.16 +adducteur adducteur nom m s 0.02 0.00 0.01 0.00 +adducteurs adducteur nom m p 0.02 0.00 0.01 0.00 +adduction adduction nom f s 0.04 0.14 0.04 0.14 +adent adent nom m s 0.01 0.00 0.01 0.00 +adepte adepte nom s 2.73 2.84 0.88 0.88 +adeptes adepte nom p 2.73 2.84 1.85 1.96 +adhère adhérer ver 2.67 5.07 0.73 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adhèrent adhérer ver 2.67 5.07 0.21 0.34 ind:pre:3p; +adhéra adhérer ver 2.67 5.07 0.02 0.00 ind:pas:3s; +adhéraient adhérer ver 2.67 5.07 0.01 0.27 ind:imp:3p; +adhérais adhérer ver 2.67 5.07 0.03 0.07 ind:imp:1s; +adhérait adhérer ver 2.67 5.07 0.01 0.95 ind:imp:3s; +adhérant adhérer ver 2.67 5.07 0.03 0.41 par:pre; +adhérence adhérence nom f s 0.11 0.54 0.06 0.14 +adhérences adhérence nom f p 0.11 0.54 0.04 0.41 +adhérent adhérent nom m s 0.57 1.01 0.16 0.14 +adhérente adhérent adj f s 0.16 0.27 0.01 0.00 +adhérentes adhérent adj f p 0.16 0.27 0.00 0.14 +adhérents adhérent nom m p 0.57 1.01 0.42 0.88 +adhérer adhérer ver 2.67 5.07 0.82 1.82 inf; +adhérez adhérer ver 2.67 5.07 0.48 0.00 imp:pre:2p;ind:pre:2p; +adhéré adhérer ver m s 2.67 5.07 0.32 0.34 par:pas; +adhésif adhésif adj m s 1.05 0.81 0.73 0.47 +adhésifs adhésif adj m p 1.05 0.81 0.07 0.20 +adhésion adhésion nom f s 0.50 6.55 0.45 6.15 +adhésions adhésion nom f p 0.50 6.55 0.04 0.41 +adhésive adhésif adj f s 1.05 0.81 0.17 0.14 +adhésives adhésif adj f p 1.05 0.81 0.07 0.00 +adieu adieu ono 39.70 7.36 39.70 7.36 +adieux adieu nom m p 44.44 38.04 7.57 10.54 +adipeuse adipeux adj f s 0.22 1.28 0.01 0.27 +adipeuses adipeux adj f p 0.22 1.28 0.10 0.07 +adipeux adipeux adj m 0.22 1.28 0.11 0.95 +adipique adipique adj m s 0.03 0.00 0.03 0.00 +adiposité adiposité nom f s 0.00 0.07 0.00 0.07 +adira adire ver 0.16 0.00 0.16 0.00 ind:fut:3s; +adja adja nom m s 0.00 1.01 0.00 0.34 +adjacent adjacent adj m s 0.59 0.95 0.16 0.14 +adjacente adjacent adj f s 0.59 0.95 0.06 0.34 +adjacentes adjacent adj f p 0.59 0.95 0.15 0.47 +adjacents adjacent adj m p 0.59 0.95 0.22 0.00 +adjas adja nom m p 0.00 1.01 0.00 0.68 +adjectif adjectif nom m s 0.45 3.51 0.28 1.96 +adjectifs adjectif nom m p 0.45 3.51 0.17 1.55 +adjective adjectif adj f s 0.01 0.14 0.00 0.07 +adjoignît adjoindre ver 1.71 2.97 0.00 0.07 sub:imp:3s; +adjoignait adjoindre ver 1.71 2.97 0.00 0.07 ind:imp:3s; +adjoignant adjoindre ver 1.71 2.97 0.00 0.07 par:pre; +adjoigne adjoindre ver 1.71 2.97 0.00 0.07 sub:pre:1s; +adjoignit adjoindre ver 1.71 2.97 0.00 0.14 ind:pas:3s; +adjoindra adjoindre ver 1.71 2.97 0.02 0.00 ind:fut:3s; +adjoindre adjoindre ver 1.71 2.97 0.05 0.68 inf; +adjoindront adjoindre ver 1.71 2.97 0.00 0.07 ind:fut:3p; +adjoins adjoindre ver 1.71 2.97 0.14 0.07 ind:pre:1s; +adjoint adjoint nom m s 9.42 5.14 6.54 4.05 +adjointe adjoint adj f s 6.77 2.16 0.25 0.00 +adjointes adjoint nom f p 9.42 5.14 0.01 0.00 +adjoints adjoint nom m p 9.42 5.14 2.66 0.95 +adjonction adjonction nom f s 0.02 0.41 0.02 0.41 +adjudant_chef adjudant_chef nom m s 2.57 2.70 2.57 2.57 +adjudant_major adjudant_major nom m s 0.05 0.00 0.05 0.00 +adjudant adjudant nom m s 16.60 22.23 16.49 21.15 +adjudant_chef adjudant_chef nom m p 2.57 2.70 0.00 0.14 +adjudants adjudant nom m p 16.60 22.23 0.11 1.08 +adjudication adjudication nom f s 0.37 0.20 0.02 0.14 +adjudications adjudication nom f p 0.37 0.20 0.34 0.07 +adjuge adjuger ver 1.64 0.68 0.05 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adjugeait adjuger ver 1.64 0.68 0.00 0.14 ind:imp:3s; +adjugeant adjuger ver 1.64 0.68 0.00 0.07 par:pre; +adjuger adjuger ver 1.64 0.68 0.03 0.00 inf; +adjugez adjuger ver 1.64 0.68 0.01 0.00 imp:pre:2p; +adjugé adjuger ver m s 1.64 0.68 1.50 0.34 par:pas; +adjugée adjuger ver f s 1.64 0.68 0.04 0.00 par:pas; +adjugés adjuger ver m p 1.64 0.68 0.02 0.00 par:pas; +adjupète adjupète nom m s 0.00 0.14 0.00 0.07 +adjupètes adjupète nom m p 0.00 0.14 0.00 0.07 +adjura adjurer ver 0.32 2.97 0.00 0.14 ind:pas:3s; +adjurai adjurer ver 0.32 2.97 0.00 0.20 ind:pas:1s; +adjuraient adjurer ver 0.32 2.97 0.00 0.07 ind:imp:3p; +adjurais adjurer ver 0.32 2.97 0.00 0.14 ind:imp:1s; +adjurait adjurer ver 0.32 2.97 0.01 0.61 ind:imp:3s; +adjurant adjurer ver 0.32 2.97 0.00 0.54 par:pre; +adjuration adjuration nom f s 0.00 0.34 0.00 0.20 +adjurations adjuration nom f p 0.00 0.34 0.00 0.14 +adjure adjurer ver 0.32 2.97 0.29 0.41 ind:pre:1s;ind:pre:3s; +adjurer adjurer ver 0.32 2.97 0.00 0.47 inf; +adjurerai adjurer ver 0.32 2.97 0.01 0.00 ind:fut:1s; +adjurerait adjurer ver 0.32 2.97 0.00 0.07 cnd:pre:3s; +adjuré adjurer ver m s 0.32 2.97 0.01 0.34 par:pas; +adjutrice adjutrice nom f s 0.00 0.07 0.00 0.07 +adjuvants adjuvant nom m p 0.01 0.07 0.01 0.07 +admît admettre ver 50.05 59.46 0.00 0.34 sub:imp:3s; +admet admettre ver 50.05 59.46 2.83 3.45 ind:pre:3s; +admets admettre ver 50.05 59.46 10.14 3.92 imp:pre:2s;ind:pre:1s;ind:pre:2s; +admettaient admettre ver 50.05 59.46 0.04 1.01 ind:imp:3p; +admettais admettre ver 50.05 59.46 0.20 0.88 ind:imp:1s;ind:imp:2s; +admettait admettre ver 50.05 59.46 0.07 3.78 ind:imp:3s; +admettant admettre ver 50.05 59.46 0.55 3.31 par:pre; +admette admettre ver 50.05 59.46 0.44 0.34 sub:pre:1s;sub:pre:3s; +admettent admettre ver 50.05 59.46 0.37 0.47 ind:pre:3p; +admettes admettre ver 50.05 59.46 0.30 0.00 sub:pre:2s; +admettez admettre ver 50.05 59.46 2.22 0.47 imp:pre:2p;ind:pre:2p; +admettiez admettre ver 50.05 59.46 0.21 0.07 ind:imp:2p; +admettions admettre ver 50.05 59.46 0.03 0.20 ind:imp:1p; +admettons admettre ver 50.05 59.46 4.30 2.70 imp:pre:1p;ind:pre:1p; +admettra admettre ver 50.05 59.46 0.45 0.20 ind:fut:3s; +admettrai admettre ver 50.05 59.46 0.28 0.34 ind:fut:1s; +admettraient admettre ver 50.05 59.46 0.00 0.14 cnd:pre:3p; +admettrais admettre ver 50.05 59.46 0.06 0.20 cnd:pre:1s;cnd:pre:2s; +admettrait admettre ver 50.05 59.46 0.25 0.54 cnd:pre:3s; +admettras admettre ver 50.05 59.46 0.09 0.20 ind:fut:2s; +admettre admettre ver 50.05 59.46 17.92 19.73 inf; +admettrez admettre ver 50.05 59.46 0.22 0.20 ind:fut:2p; +admettriez admettre ver 50.05 59.46 0.03 0.00 cnd:pre:2p; +admettrons admettre ver 50.05 59.46 0.02 0.14 ind:fut:1p; +admettront admettre ver 50.05 59.46 0.09 0.00 ind:fut:3p; +administra administrer ver 3.53 8.04 0.00 0.47 ind:pas:3s; +administrai administrer ver 3.53 8.04 0.00 0.07 ind:pas:1s; +administraient administrer ver 3.53 8.04 0.01 0.34 ind:imp:3p; +administrais administrer ver 3.53 8.04 0.01 0.14 ind:imp:1s; +administrait administrer ver 3.53 8.04 0.04 0.74 ind:imp:3s; +administrant administrer ver 3.53 8.04 0.06 0.27 par:pre; +administrateur administrateur nom m s 4.95 4.73 4.05 3.78 +administrateurs administrateur nom m p 4.95 4.73 0.80 0.95 +administratif administratif adj m s 3.27 11.08 1.34 2.97 +administratifs administratif adj m p 3.27 11.08 0.63 1.62 +administration administration nom f s 13.40 26.42 13.24 23.85 +administrations administration nom f p 13.40 26.42 0.16 2.57 +administrative administratif adj f s 3.27 11.08 0.70 4.26 +administrativement administrativement adv 0.05 0.14 0.05 0.14 +administratives administratif adj f p 3.27 11.08 0.60 2.23 +administratrice administrateur nom f s 4.95 4.73 0.10 0.00 +administre administrer ver 3.53 8.04 0.92 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +administrent administrer ver 3.53 8.04 0.04 0.34 ind:pre:3p; +administrer administrer ver 3.53 8.04 1.12 2.84 inf; +administrera administrer ver 3.53 8.04 0.05 0.07 ind:fut:3s; +administrerai administrer ver 3.53 8.04 0.16 0.00 ind:fut:1s; +administrerons administrer ver 3.53 8.04 0.03 0.00 ind:fut:1p; +administres administrer ver 3.53 8.04 0.01 0.07 ind:pre:2s; +administrez administrer ver 3.53 8.04 0.10 0.07 imp:pre:2p;ind:pre:2p; +administrât administrer ver 3.53 8.04 0.00 0.07 sub:imp:3s; +administré administrer ver m s 3.53 8.04 0.63 1.08 par:pas; +administrée administrer ver f s 3.53 8.04 0.19 0.41 par:pas; +administrées administrer ver f p 3.53 8.04 0.01 0.14 par:pas; +administrés administré nom m p 0.47 0.61 0.27 0.34 +admira admirer ver 32.39 68.18 0.01 3.04 ind:pas:3s; +admirable admirable adj s 6.51 31.55 6.02 23.92 +admirablement admirablement adv 0.71 4.73 0.71 4.73 +admirables admirable adj p 6.51 31.55 0.49 7.64 +admirai admirer ver 32.39 68.18 0.14 0.81 ind:pas:1s; +admiraient admirer ver 32.39 68.18 0.06 1.82 ind:imp:3p; +admirais admirer ver 32.39 68.18 3.11 6.35 ind:imp:1s;ind:imp:2s; +admirait admirer ver 32.39 68.18 0.99 11.49 ind:imp:3s; +admirant admirer ver 32.39 68.18 0.08 1.82 par:pre; +admirateur admirateur nom m s 5.28 5.14 2.63 1.28 +admirateurs admirateur nom m p 5.28 5.14 2.33 2.91 +admiratif admiratif adj m s 0.41 6.96 0.26 2.57 +admiratifs admiratif adj m p 0.41 6.96 0.00 1.49 +admiration admiration nom f s 4.54 32.70 4.54 32.30 +admirations admiration nom f p 4.54 32.70 0.00 0.41 +admirative admiratif adj f s 0.41 6.96 0.02 2.30 +admirativement admirativement adv 0.00 0.20 0.00 0.20 +admiratives admiratif adj f p 0.41 6.96 0.14 0.61 +admiratrice admirateur nom f s 5.28 5.14 0.32 0.27 +admiratrices admiratrice nom f p 0.36 0.00 0.36 0.00 +admire admirer ver 32.39 68.18 13.85 13.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +admirent admirer ver 32.39 68.18 0.86 0.95 ind:pre:3p; +admirer admirer ver 32.39 68.18 6.50 17.64 inf;; +admirera admirer ver 32.39 68.18 0.05 0.07 ind:fut:3s; +admirerai admirer ver 32.39 68.18 0.04 0.07 ind:fut:1s; +admirerais admirer ver 32.39 68.18 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +admirerait admirer ver 32.39 68.18 0.03 0.27 cnd:pre:3s; +admirerez admirer ver 32.39 68.18 0.01 0.07 ind:fut:2p; +admireront admirer ver 32.39 68.18 0.04 0.14 ind:fut:3p; +admires admirer ver 32.39 68.18 0.82 0.41 ind:pre:2s; +admirez admirer ver 32.39 68.18 2.25 1.42 imp:pre:2p;ind:pre:2p; +admiriez admirer ver 32.39 68.18 0.22 0.00 ind:imp:2p; +admirions admirer ver 32.39 68.18 0.12 0.81 ind:imp:1p; +admirâmes admirer ver 32.39 68.18 0.00 0.07 ind:pas:1p; +admirons admirer ver 32.39 68.18 0.43 0.61 imp:pre:1p;ind:pre:1p; +admirèrent admirer ver 32.39 68.18 0.00 0.74 ind:pas:3p; +admiré admirer ver m s 32.39 68.18 2.00 4.12 par:pas; +admirée admirer ver f s 32.39 68.18 0.66 1.15 par:pas; +admirées admirer ver f p 32.39 68.18 0.04 0.27 par:pas; +admirés admirer ver m p 32.39 68.18 0.05 0.54 par:pas; +admis admettre ver m 50.05 59.46 6.74 11.35 ind:pas:1s;par:pas;par:pas; +admise admettre ver f s 50.05 59.46 1.75 2.03 par:pas; +admises admettre ver f p 50.05 59.46 0.20 0.54 par:pas; +admissibilité admissibilité nom f s 0.02 0.07 0.02 0.07 +admissible admissible adj m s 0.49 0.61 0.44 0.54 +admissibles admissible adj f p 0.49 0.61 0.05 0.07 +admission admission nom f s 3.42 1.82 2.34 1.82 +admissions admission nom f p 3.42 1.82 1.08 0.00 +admit admettre ver 50.05 59.46 0.24 2.84 ind:pas:3s; +admixtion admixtion nom f s 0.00 0.07 0.00 0.07 +admonesta admonester ver 0.03 0.61 0.00 0.07 ind:pas:3s; +admonestait admonester ver 0.03 0.61 0.00 0.07 ind:imp:3s; +admonestation admonestation nom f s 0.00 0.47 0.00 0.34 +admonestations admonestation nom f p 0.00 0.47 0.00 0.14 +admoneste admonester ver 0.03 0.61 0.02 0.20 ind:pre:3s; +admonester admonester ver 0.03 0.61 0.01 0.00 inf; +admonestât admonester ver 0.03 0.61 0.00 0.07 sub:imp:3s; +admonesté admonester ver m s 0.03 0.61 0.00 0.07 par:pas; +admonestés admonester ver m p 0.03 0.61 0.00 0.14 par:pas; +admonition admonition nom f s 0.12 0.20 0.01 0.14 +admonitions admonition nom f p 0.12 0.20 0.11 0.07 +ado ado nom s 3.40 0.20 3.40 0.20 +adobe adobe nom m s 0.08 0.00 0.08 0.00 +adolescence adolescence nom f s 2.88 13.78 2.88 13.72 +adolescences adolescence nom f p 2.88 13.78 0.00 0.07 +adolescent adolescent nom m s 6.84 25.20 2.38 9.66 +adolescente adolescent nom f s 6.84 25.20 1.59 7.57 +adolescentes adolescent nom f p 6.84 25.20 0.53 1.28 +adolescents adolescent nom m p 6.84 25.20 2.34 6.69 +adon adon nom m s 0.01 0.00 0.01 0.00 +adonc adonc adv 0.00 0.07 0.00 0.07 +adoncques adoncques adv 0.00 0.07 0.00 0.07 +adonies adonies nom f p 0.00 0.07 0.00 0.07 +adonis adonis nom m 0.28 0.00 0.28 0.00 +adonisant adoniser ver 0.00 0.07 0.00 0.07 par:pre; +adonna adonner ver 1.60 5.74 0.00 0.47 ind:pas:3s; +adonnai adonner ver 1.60 5.74 0.00 0.14 ind:pas:1s; +adonnaient adonner ver 1.60 5.74 0.16 0.61 ind:imp:3p; +adonnais adonner ver 1.60 5.74 0.01 0.14 ind:imp:1s; +adonnait adonner ver 1.60 5.74 0.09 0.81 ind:imp:3s; +adonnant adonner ver 1.60 5.74 0.02 0.07 par:pre; +adonne adonner ver 1.60 5.74 0.55 0.81 ind:pre:1s;ind:pre:3s; +adonnent adonner ver 1.60 5.74 0.20 0.34 ind:pre:3p; +adonner adonner ver 1.60 5.74 0.48 1.08 inf; +adonnerait adonner ver 1.60 5.74 0.00 0.07 cnd:pre:3s; +adonnez adonner ver 1.60 5.74 0.01 0.00 ind:pre:2p; +adonnions adonner ver 1.60 5.74 0.00 0.14 ind:imp:1p; +adonné adonner ver m s 1.60 5.74 0.04 0.61 par:pas; +adonnée adonner ver f s 1.60 5.74 0.02 0.00 par:pas; +adonnées adonner ver f p 1.60 5.74 0.00 0.07 par:pas; +adonnés adonner ver m p 1.60 5.74 0.01 0.41 par:pas; +adopta adopter ver 15.18 29.86 0.05 1.49 ind:pas:3s; +adoptable adoptable adj f s 0.00 0.07 0.00 0.07 +adoptai adopter ver 15.18 29.86 0.02 0.41 ind:pas:1s; +adoptaient adopter ver 15.18 29.86 0.01 0.14 ind:imp:3p; +adoptais adopter ver 15.18 29.86 0.00 0.14 ind:imp:1s; +adoptait adopter ver 15.18 29.86 0.13 1.89 ind:imp:3s; +adoptant adoptant adj m s 0.00 0.07 0.00 0.07 +adoptant adopter ver 15.18 29.86 0.06 0.81 par:pre; +adopte adopter ver 15.18 29.86 1.28 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adoptent adopter ver 15.18 29.86 0.11 0.41 ind:pre:3p; +adopter adopter ver 15.18 29.86 7.25 9.19 inf; +adoptera adopter ver 15.18 29.86 0.14 0.00 ind:fut:3s; +adopterai adopter ver 15.18 29.86 0.05 0.07 ind:fut:1s; +adopteraient adopter ver 15.18 29.86 0.00 0.14 cnd:pre:3p; +adopterait adopter ver 15.18 29.86 0.02 0.34 cnd:pre:3s; +adopterez adopter ver 15.18 29.86 0.02 0.14 ind:fut:2p; +adopterons adopter ver 15.18 29.86 0.02 0.00 ind:fut:1p; +adopteront adopter ver 15.18 29.86 0.04 0.14 ind:fut:3p; +adoptez adopter ver 15.18 29.86 0.23 0.07 imp:pre:2p;ind:pre:2p; +adoptif adoptif adj m s 3.98 3.38 2.15 1.96 +adoptifs adoptif adj m p 3.98 3.38 1.12 0.20 +adoption adoption nom f s 4.06 2.91 3.97 2.84 +adoptions adoption nom f p 4.06 2.91 0.09 0.07 +adoptive adoptif adj f s 3.98 3.38 0.70 1.15 +adoptives adoptif adj f p 3.98 3.38 0.01 0.07 +adoptons adopter ver 15.18 29.86 0.28 0.14 imp:pre:1p;ind:pre:1p; +adoptât adopter ver 15.18 29.86 0.00 0.41 sub:imp:3s; +adoptèrent adopter ver 15.18 29.86 0.02 0.47 ind:pas:3p; +adopté adopter ver m s 15.18 29.86 3.77 7.36 par:pas; +adoptée adopter ver f s 15.18 29.86 1.25 2.64 par:pas; +adoptées adopter ver f p 15.18 29.86 0.17 0.61 par:pas; +adoptés adopter ver m p 15.18 29.86 0.23 0.47 par:pas; +adora adorer ver 193.67 44.59 0.06 0.07 ind:pas:3s; +adorable adorable adj s 25.95 7.97 23.00 6.28 +adorablement adorablement adv 0.20 0.27 0.20 0.27 +adorables adorable adj p 25.95 7.97 2.94 1.69 +adorai adorer ver 193.67 44.59 0.03 0.14 ind:pas:1s; +adoraient adorer ver 193.67 44.59 1.29 2.09 ind:imp:3p; +adorais adorer ver 193.67 44.59 6.44 2.30 ind:imp:1s;ind:imp:2s; +adorait adorer ver 193.67 44.59 7.02 9.46 ind:imp:3s; +adorant adorer ver 193.67 44.59 0.14 0.14 par:pre; +adorante adorant adj f s 0.01 0.20 0.00 0.07 +adorants adorant adj m p 0.01 0.20 0.00 0.07 +adorateur adorateur nom m s 1.22 1.82 0.30 0.34 +adorateurs adorateur nom m p 1.22 1.82 0.71 1.42 +adoration adoration nom f s 0.88 5.07 0.88 4.86 +adorations adoration nom f p 0.88 5.07 0.00 0.20 +adoratrice adorateur nom f s 1.22 1.82 0.21 0.00 +adoratrices adoratrice nom f p 0.11 0.00 0.11 0.00 +adore adorer ver 193.67 44.59 121.69 16.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +adorent adorer ver 193.67 44.59 10.76 2.91 ind:pre:3p;sub:pre:3p; +adorer adorer ver 193.67 44.59 11.79 3.31 inf; +adorera adorer ver 193.67 44.59 0.75 0.14 ind:fut:3s; +adorerai adorer ver 193.67 44.59 0.36 0.00 ind:fut:1s; +adoreraient adorer ver 193.67 44.59 0.52 0.00 cnd:pre:3p; +adorerais adorer ver 193.67 44.59 7.39 0.07 cnd:pre:1s;cnd:pre:2s; +adorerait adorer ver 193.67 44.59 1.32 0.07 cnd:pre:3s; +adoreras adorer ver 193.67 44.59 0.60 0.00 ind:fut:2s; +adorerez adorer ver 193.67 44.59 0.51 0.00 ind:fut:2p; +adoreriez adorer ver 193.67 44.59 0.08 0.00 cnd:pre:2p; +adorerions adorer ver 193.67 44.59 0.12 0.00 cnd:pre:1p; +adorerons adorer ver 193.67 44.59 0.01 0.00 ind:fut:1p; +adoreront adorer ver 193.67 44.59 0.24 0.07 ind:fut:3p; +adores adorer ver 193.67 44.59 4.37 0.27 ind:pre:2s; +adorez adorer ver 193.67 44.59 1.11 0.14 imp:pre:2p;ind:pre:2p; +adoriez adorer ver 193.67 44.59 0.26 0.07 ind:imp:2p; +adorions adorer ver 193.67 44.59 0.09 0.20 ind:imp:1p; +adornaient adorner ver 0.01 0.47 0.00 0.20 ind:imp:3p; +adornait adorner ver 0.01 0.47 0.00 0.14 ind:imp:3s; +adorne adorner ver 0.01 0.47 0.01 0.07 imp:pre:2s;ind:pre:3s; +adorné adorner ver m s 0.01 0.47 0.00 0.07 par:pas; +adorons adorer ver 193.67 44.59 1.22 0.54 imp:pre:1p;ind:pre:1p; +adorèrent adorer ver 193.67 44.59 0.02 0.00 ind:pas:3p; +adoré adorer ver m s 193.67 44.59 12.81 3.11 par:pas; +adorée adorer ver f s 193.67 44.59 2.27 1.82 par:pas; +adorées adorer ver f p 193.67 44.59 0.19 0.27 par:pas; +adorés adorer ver m p 193.67 44.59 0.24 0.68 par:pas; +ados ados nom m 3.27 0.27 3.27 0.27 +adossa adosser ver 0.80 16.89 0.00 2.23 ind:pas:3s; +adossai adosser ver 0.80 16.89 0.10 0.07 ind:pas:1s; +adossaient adosser ver 0.80 16.89 0.00 0.27 ind:imp:3p; +adossais adosser ver 0.80 16.89 0.01 0.14 ind:imp:1s; +adossait adosser ver 0.80 16.89 0.00 0.68 ind:imp:3s; +adossant adosser ver 0.80 16.89 0.01 0.14 par:pre; +adosse adosser ver 0.80 16.89 0.28 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adossent adosser ver 0.80 16.89 0.00 0.07 ind:pre:3p; +adosser adosser ver 0.80 16.89 0.07 1.35 inf; +adossez adosser ver 0.80 16.89 0.04 0.00 imp:pre:2p;ind:pre:2p; +adossèrent adosser ver 0.80 16.89 0.00 0.14 ind:pas:3p; +adossé adosser ver m s 0.80 16.89 0.28 6.49 par:pas; +adossée adossé adj f s 0.13 0.34 0.10 0.14 +adossées adosser ver f p 0.80 16.89 0.01 0.34 par:pas; +adossés adosser ver m p 0.80 16.89 0.00 1.49 par:pas; +adouba adouber ver 0.04 0.34 0.00 0.07 ind:pas:3s; +adoubement adoubement nom m s 0.01 0.27 0.01 0.27 +adouber adouber ver 0.04 0.34 0.01 0.00 inf; +adoubé adouber ver m s 0.04 0.34 0.03 0.27 par:pas; +adoucît adoucir ver 3.27 11.01 0.00 0.07 sub:imp:3s; +adouci adoucir ver m s 3.27 11.01 0.44 1.01 par:pas; +adoucie adoucir ver f s 3.27 11.01 0.29 1.08 par:pas; +adoucies adoucir ver f p 3.27 11.01 0.02 0.27 par:pas; +adoucir adoucir ver 3.27 11.01 1.56 3.58 inf; +adoucira adoucir ver 3.27 11.01 0.09 0.14 ind:fut:3s; +adoucirait adoucir ver 3.27 11.01 0.02 0.14 cnd:pre:3s; +adoucirent adoucir ver 3.27 11.01 0.00 0.07 ind:pas:3p; +adoucis adoucir ver m p 3.27 11.01 0.20 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +adoucissaient adoucir ver 3.27 11.01 0.00 0.27 ind:imp:3p; +adoucissait adoucir ver 3.27 11.01 0.02 1.35 ind:imp:3s; +adoucissant adoucissant nom m s 0.06 0.00 0.06 0.00 +adoucissantes adoucissant adj f p 0.00 0.14 0.00 0.07 +adoucisse adoucir ver 3.27 11.01 0.01 0.07 sub:pre:1s;sub:pre:3s; +adoucissement adoucissement nom m s 0.01 0.61 0.01 0.54 +adoucissements adoucissement nom m p 0.01 0.61 0.00 0.07 +adoucissent adoucir ver 3.27 11.01 0.02 0.34 ind:pre:3p; +adoucisseur adoucisseur nom m s 0.04 0.14 0.03 0.00 +adoucisseurs adoucisseur nom m p 0.04 0.14 0.01 0.14 +adoucissez adoucir ver 3.27 11.01 0.13 0.00 imp:pre:2p; +adoucit adoucir ver 3.27 11.01 0.46 2.09 ind:pre:3s;ind:pas:3s; +adp adp nom m s 0.04 0.00 0.04 0.00 +adragante adragant adj f s 0.00 0.07 0.00 0.07 +adressa adresser ver 30.71 98.04 0.19 11.15 ind:pas:3s; +adressage adressage nom m s 0.01 0.00 0.01 0.00 +adressai adresser ver 30.71 98.04 0.00 2.57 ind:pas:1s; +adressaient adresser ver 30.71 98.04 0.06 3.04 ind:imp:3p; +adressais adresser ver 30.71 98.04 0.24 1.49 ind:imp:1s;ind:imp:2s; +adressait adresser ver 30.71 98.04 0.76 14.12 ind:imp:3s; +adressant adresser ver 30.71 98.04 0.41 9.39 par:pre; +adressassent adresser ver 30.71 98.04 0.00 0.07 sub:imp:3p; +adresse adresse nom f s 73.92 49.80 67.28 43.92 +adressent adresser ver 30.71 98.04 0.71 1.55 ind:pre:3p; +adresser adresser ver 30.71 98.04 7.95 17.91 inf; +adressera adresser ver 30.71 98.04 0.66 0.34 ind:fut:3s; +adresserai adresser ver 30.71 98.04 0.34 0.34 ind:fut:1s; +adresseraient adresser ver 30.71 98.04 0.00 0.14 cnd:pre:3p; +adresserais adresser ver 30.71 98.04 0.04 0.20 cnd:pre:1s;cnd:pre:2s; +adresserait adresser ver 30.71 98.04 0.02 0.81 cnd:pre:3s; +adresseras adresser ver 30.71 98.04 0.03 0.00 ind:fut:2s; +adresserez adresser ver 30.71 98.04 0.11 0.07 ind:fut:2p; +adresserons adresser ver 30.71 98.04 0.11 0.07 ind:fut:1p; +adresseront adresser ver 30.71 98.04 0.17 0.07 ind:fut:3p; +adresses adresse nom f p 73.92 49.80 6.65 5.88 +adressez adresser ver 30.71 98.04 2.77 0.47 imp:pre:2p;ind:pre:2p; +adressiez adresser ver 30.71 98.04 0.34 0.00 ind:imp:2p; +adressions adresser ver 30.71 98.04 0.00 0.41 ind:imp:1p; +adressâmes adresser ver 30.71 98.04 0.00 0.14 ind:pas:1p; +adressons adresser ver 30.71 98.04 0.20 0.47 imp:pre:1p;ind:pre:1p; +adressât adresser ver 30.71 98.04 0.00 0.68 sub:imp:3s; +adressèrent adresser ver 30.71 98.04 0.02 0.34 ind:pas:3p; +adressé adresser ver m s 30.71 98.04 2.66 9.73 par:pas; +adressée adresser ver f s 30.71 98.04 1.76 5.20 par:pas; +adressées adresser ver f p 30.71 98.04 0.41 2.09 par:pas; +adressés adresser ver m p 30.71 98.04 0.51 0.88 par:pas; +adret adret nom m s 0.00 0.07 0.00 0.07 +adriatique adriatique adj s 0.14 0.14 0.14 0.07 +adriatiques adriatique adj p 0.14 0.14 0.00 0.07 +adroit adroit adj m s 1.87 4.86 1.13 3.51 +adroite adroit adj f s 1.87 4.86 0.41 0.74 +adroitement adroitement adv 0.85 1.96 0.85 1.96 +adroites adroit adj f p 1.87 4.86 0.25 0.07 +adroits adroit adj m p 1.87 4.86 0.09 0.54 +adrénaline adrénaline nom f s 3.57 0.68 3.56 0.68 +adrénalines adrénaline nom f p 3.57 0.68 0.01 0.00 +adulaient aduler ver 0.51 1.62 0.00 0.07 ind:imp:3p; +adulais aduler ver 0.51 1.62 0.02 0.00 ind:imp:1s; +adulait aduler ver 0.51 1.62 0.02 0.07 ind:imp:3s; +adulateur adulateur nom m s 0.10 0.07 0.10 0.07 +adulation adulation nom f s 0.16 0.81 0.16 0.61 +adulations adulation nom f p 0.16 0.81 0.00 0.20 +adulent aduler ver 0.51 1.62 0.27 0.00 ind:pre:3p; +aduler aduler ver 0.51 1.62 0.04 0.07 inf; +adultat adultat nom m s 0.00 0.14 0.00 0.14 +adulte adulte nom s 23.34 27.64 9.78 10.41 +adultes adulte nom p 23.34 27.64 13.56 17.23 +adultère adultère nom m s 3.69 3.65 3.54 3.18 +adultères adultère nom m p 3.69 3.65 0.15 0.47 +adultéraient adultérer ver 0.01 0.14 0.00 0.07 ind:imp:3p; +adultération adultération nom f s 0.00 0.07 0.00 0.07 +adultérin adultérin adj m s 0.02 0.34 0.01 0.00 +adultérine adultérin adj f s 0.02 0.34 0.01 0.14 +adultérins adultérin adj m p 0.02 0.34 0.00 0.20 +adultéré adultérer ver m s 0.01 0.14 0.01 0.00 par:pas; +adultérées adultérer ver f p 0.01 0.14 0.00 0.07 par:pas; +adulé aduler ver m s 0.51 1.62 0.09 0.61 par:pas; +adulée aduler ver f s 0.51 1.62 0.03 0.47 par:pas; +adulés aduler ver m p 0.51 1.62 0.04 0.34 par:pas; +adénine adénine nom f s 0.01 0.00 0.01 0.00 +adénocarcinome adénocarcinome nom m s 0.04 0.00 0.04 0.00 +adénome adénome nom m s 0.05 0.07 0.05 0.07 +adénopathie adénopathie nom f s 0.01 0.00 0.01 0.00 +adénosine adénosine nom f s 0.07 0.00 0.07 0.00 +adénovirus adénovirus nom m 0.01 0.00 0.01 0.00 +adéquat adéquat adj m s 3.28 4.80 1.35 1.82 +adéquate adéquat adj f s 3.28 4.80 1.23 1.69 +adéquatement adéquatement adv 0.03 0.00 0.03 0.00 +adéquates adéquat adj f p 3.28 4.80 0.50 0.47 +adéquation adéquation nom f s 0.14 0.34 0.14 0.34 +adéquats adéquat adj m p 3.28 4.80 0.21 0.81 +advînt advenir ver 7.94 9.39 0.00 0.34 sub:imp:3s; +advenait advenir ver 7.94 9.39 0.11 0.74 ind:imp:3s; +advenir advenir ver 7.94 9.39 1.03 1.15 inf; +adventices adventice adj m p 0.00 0.20 0.00 0.20 +adventiste adventiste nom s 0.27 0.00 0.27 0.00 +advenu advenir ver m s 7.94 9.39 0.99 1.62 par:pas; +advenue advenir ver f s 7.94 9.39 0.00 0.20 par:pas; +advenues advenir ver f p 7.94 9.39 0.00 0.07 par:pas; +adverbe adverbe nom m s 0.11 0.61 0.09 0.27 +adverbes adverbe nom m p 0.11 0.61 0.02 0.34 +adversaire adversaire nom s 10.96 25.14 7.61 15.95 +adversaires adversaire nom p 10.96 25.14 3.36 9.19 +adverse adverse adj s 1.93 4.32 1.83 2.50 +adverses adverse adj p 1.93 4.32 0.10 1.82 +adversité adversité nom f s 1.30 2.16 1.27 2.09 +adversités adversité nom f p 1.30 2.16 0.02 0.07 +adviendra advenir ver 7.94 9.39 2.53 0.68 ind:fut:3s; +adviendrait advenir ver 7.94 9.39 0.25 0.68 cnd:pre:3s; +advienne advenir ver 7.94 9.39 1.24 1.01 sub:pre:1s;sub:pre:3s; +adviennent advenir ver 7.94 9.39 0.00 0.07 ind:pre:3p; +advient advenir ver 7.94 9.39 0.58 1.49 ind:pre:3s; +advint advenir ver 7.94 9.39 1.20 1.35 ind:pas:3s; +aegipans aegipan nom m p 0.00 0.07 0.00 0.07 +affût affût nom m s 1.42 11.35 1.36 10.81 +affûta affûter ver 0.77 3.65 0.00 0.14 ind:pas:3s; +affûtage affûtage nom m s 0.04 0.14 0.04 0.14 +affûtait affûter ver 0.77 3.65 0.00 0.14 ind:imp:3s; +affûtant affûter ver 0.77 3.65 0.00 0.20 par:pre; +affûte affûter ver 0.77 3.65 0.11 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affûter affûter ver 0.77 3.65 0.20 0.74 inf; +affûterai affûter ver 0.77 3.65 0.01 0.00 ind:fut:1s; +affûteur affûteur nom m s 0.01 0.07 0.01 0.07 +affûtez affûter ver 0.77 3.65 0.01 0.00 imp:pre:2p; +affûtât affûter ver 0.77 3.65 0.00 0.07 sub:imp:3s; +affûts affût nom m p 1.42 11.35 0.06 0.54 +affûté affûter ver m s 0.77 3.65 0.23 0.81 par:pas; +affûtée affûter ver f s 0.77 3.65 0.12 0.68 par:pas; +affûtées affûter ver f p 0.77 3.65 0.02 0.07 par:pas; +affûtés affûter ver m p 0.77 3.65 0.06 0.41 par:pas; +affabilité affabilité nom f s 0.13 1.28 0.13 1.22 +affabilités affabilité nom f p 0.13 1.28 0.00 0.07 +affable affable adj s 0.39 3.78 0.37 3.11 +affablement affablement adv 0.00 0.20 0.00 0.20 +affables affable adj p 0.39 3.78 0.02 0.68 +affabulation affabulation nom f s 0.22 1.22 0.20 1.01 +affabulations affabulation nom f p 0.22 1.22 0.02 0.20 +affabulatrice affabulateur nom f s 0.14 0.00 0.14 0.00 +affabule affabuler ver 0.28 0.27 0.15 0.14 ind:pre:1s;ind:pre:3s; +affabuler affabuler ver 0.28 0.27 0.00 0.07 inf; +affabules affabuler ver 0.28 0.27 0.14 0.00 ind:pre:2s; +affabulé affabuler ver m s 0.28 0.27 0.00 0.07 par:pas; +affacturage affacturage nom m s 0.01 0.00 0.01 0.00 +affadi affadir ver m s 0.01 1.35 0.00 0.20 par:pas; +affadie affadir ver f s 0.01 1.35 0.00 0.27 par:pas; +affadies affadir ver f p 0.01 1.35 0.00 0.07 par:pas; +affadir affadir ver 0.01 1.35 0.00 0.14 inf; +affadis affadir ver m p 0.01 1.35 0.00 0.07 par:pas; +affadissaient affadir ver 0.01 1.35 0.00 0.07 ind:imp:3p; +affadissait affadir ver 0.01 1.35 0.00 0.34 ind:imp:3s; +affadissant affadir ver 0.01 1.35 0.00 0.07 par:pre; +affadisse affadir ver 0.01 1.35 0.01 0.07 sub:pre:1s;sub:pre:3s; +affadissement affadissement nom m s 0.00 0.20 0.00 0.20 +affadit affadir ver 0.01 1.35 0.00 0.07 ind:pas:3s; +affaibli affaiblir ver m s 6.66 7.84 1.62 1.49 par:pas; +affaiblie affaiblir ver f s 6.66 7.84 0.38 0.61 par:pas; +affaiblies affaiblir ver f p 6.66 7.84 0.02 0.27 par:pas; +affaiblir affaiblir ver 6.66 7.84 1.13 1.35 inf; +affaiblira affaiblir ver 6.66 7.84 0.30 0.07 ind:fut:3s; +affaiblis affaiblir ver m p 6.66 7.84 0.84 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +affaiblissaient affaiblir ver 6.66 7.84 0.00 0.14 ind:imp:3p; +affaiblissais affaiblir ver 6.66 7.84 0.00 0.07 ind:imp:1s; +affaiblissait affaiblir ver 6.66 7.84 0.23 1.01 ind:imp:3s; +affaiblissant affaiblir ver 6.66 7.84 0.17 0.61 par:pre; +affaiblisse affaiblir ver 6.66 7.84 0.05 0.00 sub:pre:1s;sub:pre:3s; +affaiblissement affaiblissement nom m s 0.23 1.49 0.23 1.49 +affaiblissent affaiblir ver 6.66 7.84 0.30 0.41 ind:pre:3p; +affaiblissez affaiblir ver 6.66 7.84 0.04 0.00 ind:pre:2p; +affaiblissons affaiblir ver 6.66 7.84 0.02 0.00 ind:pre:1p; +affaiblit affaiblir ver 6.66 7.84 1.56 1.22 ind:pre:3s;ind:pas:3s; +affaira affairer ver 2.75 13.38 0.00 0.68 ind:pas:3s; +affairai affairer ver 2.75 13.38 0.00 0.07 ind:pas:1s; +affairaient affairer ver 2.75 13.38 0.01 2.43 ind:imp:3p; +affairais affairer ver 2.75 13.38 0.00 0.07 ind:imp:1s; +affairait affairer ver 2.75 13.38 0.01 2.70 ind:imp:3s; +affairant affairer ver 2.75 13.38 0.00 0.47 par:pre; +affaire affaire nom f s 393.83 253.38 207.50 150.54 +affairement affairement nom m s 0.00 0.54 0.00 0.34 +affairements affairement nom m p 0.00 0.54 0.00 0.20 +affairent affairer ver 2.75 13.38 0.44 1.42 ind:pre:3p; +affairer affairer ver 2.75 13.38 0.28 1.42 inf; +affaireraient affairer ver 2.75 13.38 0.00 0.07 cnd:pre:3p; +affaires affaire nom f p 393.83 253.38 186.32 102.84 +affairions affairer ver 2.75 13.38 0.00 0.07 ind:imp:1p; +affairisme affairisme nom m s 0.00 0.07 0.00 0.07 +affairiste affairiste adj m s 0.01 0.14 0.01 0.14 +affairistes affairiste nom p 0.14 0.14 0.14 0.07 +affairons affairer ver 2.75 13.38 0.00 0.07 ind:pre:1p; +affairèrent affairer ver 2.75 13.38 0.00 0.20 ind:pas:3p; +affairé affairer ver m s 2.75 13.38 0.16 0.41 par:pas; +affairée affairé adj f s 0.21 2.64 0.04 0.61 +affairées affairé adj f p 0.21 2.64 0.01 0.27 +affairés affairé adj m p 0.21 2.64 0.12 0.74 +affaissa affaisser ver 1.03 11.22 0.00 1.08 ind:pas:3s; +affaissaient affaisser ver 1.03 11.22 0.01 0.41 ind:imp:3p; +affaissait affaisser ver 1.03 11.22 0.03 0.74 ind:imp:3s; +affaissant affaisser ver 1.03 11.22 0.01 0.61 par:pre; +affaisse affaisser ver 1.03 11.22 0.31 1.49 imp:pre:2s;ind:pre:3s; +affaissement affaissement nom m s 0.08 1.55 0.07 1.35 +affaissements affaissement nom m p 0.08 1.55 0.01 0.20 +affaissent affaisser ver 1.03 11.22 0.34 1.08 ind:pre:3p; +affaisser affaisser ver 1.03 11.22 0.03 0.88 inf; +affaisseraient affaisser ver 1.03 11.22 0.00 0.14 cnd:pre:3p; +affaisserait affaisser ver 1.03 11.22 0.00 0.07 cnd:pre:3s; +affaissions affaisser ver 1.03 11.22 0.00 0.07 ind:imp:1p; +affaissèrent affaisser ver 1.03 11.22 0.00 0.14 ind:pas:3p; +affaissé affaisser ver m s 1.03 11.22 0.14 2.50 par:pas; +affaissée affaisser ver f s 1.03 11.22 0.05 1.15 par:pas; +affaissées affaisser ver f p 1.03 11.22 0.00 0.41 par:pas; +affaissés affaisser ver m p 1.03 11.22 0.11 0.47 par:pas; +affala affaler ver 1.01 14.05 0.00 2.09 ind:pas:3s; +affalai affaler ver 1.01 14.05 0.00 0.07 ind:pas:1s; +affalaient affaler ver 1.01 14.05 0.00 0.20 ind:imp:3p; +affalais affaler ver 1.01 14.05 0.00 0.14 ind:imp:1s; +affalait affaler ver 1.01 14.05 0.01 0.54 ind:imp:3s; +affalant affaler ver 1.01 14.05 0.01 0.74 par:pre; +affale affaler ver 1.01 14.05 0.10 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affalement affalement nom m s 0.01 0.14 0.01 0.14 +affalent affaler ver 1.01 14.05 0.01 0.27 ind:pre:3p; +affaler affaler ver 1.01 14.05 0.27 1.89 inf; +affalez affaler ver 1.01 14.05 0.05 0.00 imp:pre:2p; +affalons affaler ver 1.01 14.05 0.00 0.07 ind:pre:1p; +affalèrent affaler ver 1.01 14.05 0.00 0.14 ind:pas:3p; +affalé affaler ver m s 1.01 14.05 0.38 3.92 par:pas; +affalée affaler ver f s 1.01 14.05 0.04 1.01 par:pas; +affalées affaler ver f p 1.01 14.05 0.02 0.54 par:pas; +affalés affaler ver m p 1.01 14.05 0.13 1.08 par:pas; +affamaient affamer ver 6.01 3.72 0.01 0.07 ind:imp:3p; +affamait affamer ver 6.01 3.72 0.03 0.34 ind:imp:3s; +affamant affamer ver 6.01 3.72 0.17 0.07 par:pre; +affamantes affamant adj f p 0.00 0.07 0.00 0.07 +affame affamer ver 6.01 3.72 0.25 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affament affamer ver 6.01 3.72 0.18 0.00 ind:pre:3p; +affamer affamer ver 6.01 3.72 0.33 0.14 inf; +affamera affamer ver 6.01 3.72 0.01 0.00 ind:fut:3s; +affamez affamer ver 6.01 3.72 0.05 0.00 imp:pre:2p;ind:pre:2p; +affamé affamer ver m s 6.01 3.72 2.99 1.15 par:pas; +affamée affamé adj f s 5.67 6.08 0.73 1.35 +affamées affamé adj f p 5.67 6.08 0.59 0.68 +affamés affamé adj m p 5.67 6.08 1.92 2.50 +affect affect nom m s 0.26 0.00 0.26 0.00 +affecta affecter ver 16.08 25.34 0.03 1.28 ind:pas:3s; +affectai affecter ver 16.08 25.34 0.00 0.14 ind:pas:1s; +affectaient affecter ver 16.08 25.34 0.07 1.62 ind:imp:3p; +affectais affecter ver 16.08 25.34 0.01 0.34 ind:imp:1s; +affectait affecter ver 16.08 25.34 0.36 4.12 ind:imp:3s; +affectant affecter ver 16.08 25.34 0.27 2.36 par:pre; +affectassent affecter ver 16.08 25.34 0.00 0.07 sub:imp:3p; +affectation affectation nom f s 2.93 5.27 2.65 5.00 +affectations affectation nom f p 2.93 5.27 0.28 0.27 +affecte affecter ver 16.08 25.34 4.38 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affectent affecter ver 16.08 25.34 0.61 1.01 ind:pre:3p; +affecter affecter ver 16.08 25.34 2.33 2.23 inf; +affectera affecter ver 16.08 25.34 0.72 0.14 ind:fut:3s; +affecterai affecter ver 16.08 25.34 0.03 0.07 ind:fut:1s; +affecteraient affecter ver 16.08 25.34 0.02 0.00 cnd:pre:3p; +affecterait affecter ver 16.08 25.34 0.32 0.00 cnd:pre:3s; +affecteriez affecter ver 16.08 25.34 0.01 0.00 cnd:pre:2p; +affecteront affecter ver 16.08 25.34 0.04 0.00 ind:fut:3p; +affectez affecter ver 16.08 25.34 0.20 0.07 imp:pre:2p;ind:pre:2p; +affectiez affecter ver 16.08 25.34 0.01 0.07 ind:imp:2p; +affectif affectif adj m s 2.05 2.91 0.94 1.28 +affectifs affectif adj m p 2.05 2.91 0.27 0.34 +affection affection nom f s 13.06 31.22 12.68 29.53 +affectionnaient affectionner ver 0.40 4.12 0.00 0.20 ind:imp:3p; +affectionnais affectionner ver 0.40 4.12 0.00 0.14 ind:imp:1s; +affectionnait affectionner ver 0.40 4.12 0.07 1.49 ind:imp:3s; +affectionnant affectionner ver 0.40 4.12 0.00 0.14 par:pre; +affectionne affectionner ver 0.40 4.12 0.22 1.01 ind:pre:1s;ind:pre:3s; +affectionnent affectionner ver 0.40 4.12 0.00 0.74 ind:pre:3p; +affectionner affectionner ver 0.40 4.12 0.00 0.20 inf; +affectionnez affectionner ver 0.40 4.12 0.01 0.14 imp:pre:2p;ind:pre:2p; +affectionné affectionner ver m s 0.40 4.12 0.10 0.00 par:pas; +affectionnée affectionné adj f s 0.01 0.41 0.00 0.27 +affectionnés affectionné adj m p 0.01 0.41 0.00 0.07 +affections affection nom f p 13.06 31.22 0.38 1.69 +affective affectif adj f s 2.05 2.91 0.66 1.08 +affectivement affectivement adv 0.30 0.20 0.30 0.20 +affectives affectif adj f p 2.05 2.91 0.18 0.20 +affectivité affectivité nom f s 0.01 0.41 0.01 0.41 +affectâmes affecter ver 16.08 25.34 0.00 0.07 ind:pas:1p; +affectons affecter ver 16.08 25.34 0.03 0.20 imp:pre:1p;ind:pre:1p; +affectât affecter ver 16.08 25.34 0.00 0.14 sub:imp:3s; +affectèrent affecter ver 16.08 25.34 0.00 0.61 ind:pas:3p; +affecté affecter ver m s 16.08 25.34 4.43 4.93 par:pas; +affectée affecter ver f s 16.08 25.34 1.17 1.35 par:pas; +affectées affecter ver f p 16.08 25.34 0.29 0.74 par:pas; +affectueuse affectueux adj f s 5.20 14.59 1.56 5.41 +affectueusement affectueusement adv 1.11 3.38 1.11 3.38 +affectueuses affectueux adj f p 5.20 14.59 0.08 1.22 +affectueux affectueux adj m 5.20 14.59 3.56 7.97 +affectés affecter ver m p 16.08 25.34 0.73 1.22 par:pas; +affermi affermir ver m s 0.23 5.61 0.02 0.34 par:pas; +affermie affermir ver f s 0.23 5.61 0.01 0.54 par:pas; +affermir affermir ver 0.23 5.61 0.02 1.69 inf; +affermira affermir ver 0.23 5.61 0.02 0.00 ind:fut:3s; +affermis affermir ver m p 0.23 5.61 0.00 0.41 ind:pre:1s;par:pas; +affermissaient affermir ver 0.23 5.61 0.00 0.20 ind:imp:3p; +affermissait affermir ver 0.23 5.61 0.00 0.34 ind:imp:3s; +affermissant affermir ver 0.23 5.61 0.01 0.34 par:pre; +affermisse affermir ver 0.23 5.61 0.00 0.07 sub:pre:3s; +affermissement affermissement nom m s 0.00 0.14 0.00 0.14 +affermissent affermir ver 0.23 5.61 0.01 0.20 ind:pre:3p; +affermit affermir ver 0.23 5.61 0.14 1.49 ind:pre:3s;ind:pas:3s; +afficha afficher ver 8.35 19.26 0.00 0.47 ind:pas:3s; +affichage affichage nom m s 1.30 1.49 1.29 1.42 +affichages affichage nom m p 1.30 1.49 0.01 0.07 +affichaient afficher ver 8.35 19.26 0.01 1.35 ind:imp:3p; +affichais afficher ver 8.35 19.26 0.02 0.68 ind:imp:1s;ind:imp:2s; +affichait afficher ver 8.35 19.26 0.15 4.93 ind:imp:3s; +affichant afficher ver 8.35 19.26 0.19 1.49 par:pre; +affiche affiche nom f s 9.78 19.86 5.38 8.38 +affichent afficher ver 8.35 19.26 0.52 0.68 ind:pre:3p; +afficher afficher ver 8.35 19.26 2.06 3.78 ind:pre:2p;inf; +affichera afficher ver 8.35 19.26 0.04 0.07 ind:fut:3s; +afficherai afficher ver 8.35 19.26 0.07 0.00 ind:fut:1s; +afficherait afficher ver 8.35 19.26 0.01 0.14 cnd:pre:3s; +affiches affiche nom f p 9.78 19.86 4.39 11.49 +affichette affichette nom f s 0.26 1.35 0.19 1.08 +affichettes affichette nom f p 0.26 1.35 0.07 0.27 +afficheur afficheur nom m s 0.03 0.27 0.01 0.27 +afficheurs afficheur nom m p 0.03 0.27 0.01 0.00 +affichez afficher ver 8.35 19.26 0.41 0.07 imp:pre:2p;ind:pre:2p; +affichions afficher ver 8.35 19.26 0.00 0.14 ind:imp:1p; +affichiste affichiste nom s 0.00 0.20 0.00 0.14 +affichistes affichiste nom p 0.00 0.20 0.00 0.07 +affichons afficher ver 8.35 19.26 0.16 0.00 imp:pre:1p;ind:pre:1p; +affichât afficher ver 8.35 19.26 0.00 0.07 sub:imp:3s; +affichèrent afficher ver 8.35 19.26 0.00 0.20 ind:pas:3p; +affiché afficher ver m s 8.35 19.26 1.79 1.62 par:pas; +affichée afficher ver f s 8.35 19.26 0.29 0.88 par:pas; +affichées afficher ver f p 8.35 19.26 0.17 0.47 par:pas; +affichés afficher ver m p 8.35 19.26 0.11 0.74 par:pas; +affidavit affidavit nom m s 0.06 0.00 0.06 0.00 +affidé affidé nom m s 0.01 0.27 0.01 0.14 +affidée affidé adj f s 0.00 0.07 0.00 0.07 +affidés affidé nom m p 0.01 0.27 0.00 0.14 +affile affiler ver 0.04 0.07 0.00 0.07 ind:pre:3s; +affiler affiler ver 0.04 0.07 0.03 0.00 inf; +affilia affilier ver 0.36 0.74 0.00 0.07 ind:pas:3s; +affiliaient affilier ver 0.36 0.74 0.00 0.07 ind:imp:3p; +affiliant affilier ver 0.36 0.74 0.00 0.07 par:pre; +affiliation affiliation nom f s 0.33 0.14 0.26 0.14 +affiliations affiliation nom f p 0.33 0.14 0.07 0.00 +affilier affilier ver 0.36 0.74 0.01 0.27 inf; +affilié affilier ver m s 0.36 0.74 0.15 0.20 par:pas; +affiliée affilier ver f s 0.36 0.74 0.04 0.00 par:pas; +affiliées affilié nom f p 0.14 0.41 0.04 0.00 +affiliés affilier ver m p 0.36 0.74 0.17 0.07 par:pas; +affilé affilé adj m s 3.04 4.19 0.17 0.07 +affilée affilé adj f s 3.04 4.19 2.80 3.92 +affilées affilé adj f p 3.04 4.19 0.04 0.14 +affilés affilé adj m p 3.04 4.19 0.04 0.07 +affin affin adj m s 0.02 0.00 0.02 0.00 +affina affiner ver 0.76 3.38 0.00 0.07 ind:pas:3s; +affinage affinage nom m s 0.00 0.07 0.00 0.07 +affinaient affiner ver 0.76 3.38 0.00 0.07 ind:imp:3p; +affinait affiner ver 0.76 3.38 0.00 0.88 ind:imp:3s; +affinant affiner ver 0.76 3.38 0.00 0.41 par:pre; +affine affiner ver 0.76 3.38 0.18 0.34 ind:pre:1s;ind:pre:3s; +affinement affinement nom m s 0.01 0.20 0.01 0.20 +affinent affiner ver 0.76 3.38 0.01 0.20 ind:pre:3p; +affiner affiner ver 0.76 3.38 0.43 0.68 inf; +affinera affiner ver 0.76 3.38 0.02 0.00 ind:fut:3s; +affinerait affiner ver 0.76 3.38 0.01 0.07 cnd:pre:3s; +affinité affinité nom f s 1.23 4.46 0.60 2.16 +affinités affinité nom f p 1.23 4.46 0.62 2.30 +affinons affiner ver 0.76 3.38 0.01 0.00 ind:pre:1p; +affiné affiné adj m s 0.12 0.27 0.12 0.20 +affinée affiner ver f s 0.76 3.38 0.01 0.14 par:pas; +affinées affiner ver f p 0.76 3.38 0.02 0.20 par:pas; +affiquets affiquet nom m p 0.00 0.07 0.00 0.07 +affirma affirmer ver 15.61 63.51 0.06 10.07 ind:pas:3s; +affirmai affirmer ver 15.61 63.51 0.00 0.81 ind:pas:1s; +affirmaient affirmer ver 15.61 63.51 0.03 2.36 ind:imp:3p; +affirmais affirmer ver 15.61 63.51 0.03 1.22 ind:imp:1s;ind:imp:2s; +affirmait affirmer ver 15.61 63.51 0.53 11.08 ind:imp:3s; +affirmant affirmer ver 15.61 63.51 0.51 3.92 par:pre; +affirmatif affirmatif adj m s 4.91 1.89 4.82 1.35 +affirmatifs affirmatif adj m p 4.91 1.89 0.00 0.14 +affirmation affirmation nom f s 1.96 6.42 1.27 4.66 +affirmations affirmation nom f p 1.96 6.42 0.69 1.76 +affirmative affirmative nom f s 0.16 0.61 0.16 0.61 +affirmativement affirmativement adv 0.00 0.74 0.00 0.74 +affirme affirmer ver 15.61 63.51 5.46 9.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +affirment affirmer ver 15.61 63.51 1.67 2.70 ind:pre:3p; +affirmer affirmer ver 15.61 63.51 4.26 13.58 inf; +affirmerai affirmer ver 15.61 63.51 0.00 0.07 ind:fut:1s; +affirmerait affirmer ver 15.61 63.51 0.01 0.14 cnd:pre:3s; +affirmeras affirmer ver 15.61 63.51 0.01 0.07 ind:fut:2s; +affirmerez affirmer ver 15.61 63.51 0.01 0.00 ind:fut:2p; +affirmeriez affirmer ver 15.61 63.51 0.01 0.00 cnd:pre:2p; +affirmeront affirmer ver 15.61 63.51 0.03 0.07 ind:fut:3p; +affirmes affirmer ver 15.61 63.51 0.09 0.20 ind:pre:2s; +affirmez affirmer ver 15.61 63.51 0.87 0.41 imp:pre:2p;ind:pre:2p; +affirmiez affirmer ver 15.61 63.51 0.15 0.07 ind:imp:2p; +affirmions affirmer ver 15.61 63.51 0.00 0.14 ind:imp:1p; +affirmons affirmer ver 15.61 63.51 0.06 0.27 imp:pre:1p;ind:pre:1p; +affirmât affirmer ver 15.61 63.51 0.00 0.14 sub:imp:3s; +affirmèrent affirmer ver 15.61 63.51 0.01 0.81 ind:pas:3p; +affirmé affirmer ver m s 15.61 63.51 1.66 4.59 imp:pre:2s;par:pas;par:pas; +affirmée affirmer ver f s 15.61 63.51 0.04 0.41 par:pas; +affirmées affirmer ver f p 15.61 63.51 0.00 0.20 par:pas; +affirmés affirmer ver m p 15.61 63.51 0.10 0.27 par:pas; +affixé affixé adj m s 0.00 0.07 0.00 0.07 +afflanqué afflanquer ver m s 0.00 0.07 0.00 0.07 par:pas; +affleura affleurer ver 0.15 6.01 0.00 0.47 ind:pas:3s; +affleuraient affleurer ver 0.15 6.01 0.01 0.34 ind:imp:3p; +affleurait affleurer ver 0.15 6.01 0.11 1.08 ind:imp:3s; +affleurant affleurer ver 0.15 6.01 0.00 0.14 par:pre; +affleure affleurer ver 0.15 6.01 0.02 1.55 imp:pre:2s;ind:pre:3s; +affleurement affleurement nom m s 0.03 0.88 0.03 0.47 +affleurements affleurement nom m p 0.03 0.88 0.00 0.41 +affleurent affleurer ver 0.15 6.01 0.01 0.95 ind:pre:3p; +affleurer affleurer ver 0.15 6.01 0.00 1.08 inf; +affleurât affleurer ver 0.15 6.01 0.00 0.07 sub:imp:3s; +affleurèrent affleurer ver 0.15 6.01 0.00 0.14 ind:pas:3p; +affleuré affleurer ver m s 0.15 6.01 0.00 0.20 par:pas; +affliction affliction nom f s 1.27 2.77 1.09 2.50 +afflictions affliction nom f p 1.27 2.77 0.18 0.27 +afflige affliger ver 3.21 5.95 0.74 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affligea affliger ver 3.21 5.95 0.03 0.20 ind:pas:3s; +affligeaient affliger ver 3.21 5.95 0.01 0.07 ind:imp:3p; +affligeait affliger ver 3.21 5.95 0.01 0.20 ind:imp:3s; +affligeant affligeant adj m s 0.60 1.62 0.38 0.54 +affligeante affligeant adj f s 0.60 1.62 0.08 0.68 +affligeantes affligeant adj f p 0.60 1.62 0.02 0.27 +affligeants affligeant adj m p 0.60 1.62 0.12 0.14 +affligent affliger ver 3.21 5.95 0.20 0.14 ind:pre:3p; +affliger affliger ver 3.21 5.95 0.38 0.20 inf; +affligez affliger ver 3.21 5.95 0.03 0.07 imp:pre:2p; +affligèrent affliger ver 3.21 5.95 0.01 0.07 ind:pas:3p; +affligé affliger ver m s 3.21 5.95 1.11 2.30 par:pas; +affligée affliger ver f s 3.21 5.95 0.49 0.95 par:pas; +affligés affligé adj m p 1.66 1.49 0.60 0.34 +afflua affluer ver 1.51 7.50 0.00 0.27 ind:pas:3s; +affluaient affluer ver 1.51 7.50 0.04 1.69 ind:imp:3p; +affluait affluer ver 1.51 7.50 0.02 0.54 ind:imp:3s; +affluant affluer ver 1.51 7.50 0.11 0.27 par:pre; +afflue affluer ver 1.51 7.50 0.39 0.61 ind:pre:3s; +affluence affluence nom f s 0.51 2.64 0.51 2.64 +affluent affluer ver 1.51 7.50 0.61 1.49 ind:pre:3p; +affluentes affluent adj f p 0.16 0.41 0.00 0.07 +affluents affluent nom m p 0.39 0.95 0.34 0.41 +affluer affluer ver 1.51 7.50 0.21 1.35 inf; +afflueraient affluer ver 1.51 7.50 0.01 0.07 cnd:pre:3p; +affluèrent affluer ver 1.51 7.50 0.00 0.81 ind:pas:3p; +afflué affluer ver m s 1.51 7.50 0.12 0.41 par:pas; +afflux afflux nom m 0.25 2.30 0.25 2.30 +affola affoler ver 5.92 20.54 0.00 2.16 ind:pas:3s; +affolai affoler ver 5.92 20.54 0.00 0.14 ind:pas:1s; +affolaient affoler ver 5.92 20.54 0.01 0.54 ind:imp:3p; +affolais affoler ver 5.92 20.54 0.01 0.27 ind:imp:1s; +affolait affoler ver 5.92 20.54 0.02 2.70 ind:imp:3s; +affolant affolant adj m s 0.10 2.57 0.10 1.35 +affolante affolant adj f s 0.10 2.57 0.00 0.74 +affolantes affolant adj f p 0.10 2.57 0.00 0.20 +affolants affolant adj m p 0.10 2.57 0.00 0.27 +affole affoler ver 5.92 20.54 1.63 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affolement affolement nom m s 0.89 5.34 0.89 5.34 +affolent affoler ver 5.92 20.54 0.28 0.68 ind:pre:3p; +affoler affoler ver 5.92 20.54 1.00 2.50 inf;; +affolera affoler ver 5.92 20.54 0.14 0.07 ind:fut:3s; +affolerais affoler ver 5.92 20.54 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +affolerait affoler ver 5.92 20.54 0.14 0.07 cnd:pre:3s; +affoleront affoler ver 5.92 20.54 0.01 0.00 ind:fut:3p; +affoles affoler ver 5.92 20.54 0.23 0.20 ind:pre:2s; +affolez affoler ver 5.92 20.54 0.93 0.27 imp:pre:2p;ind:pre:2p; +affoliez affoler ver 5.92 20.54 0.01 0.00 ind:imp:2p; +affolons affoler ver 5.92 20.54 0.04 0.27 imp:pre:1p;ind:pre:1p; +affolât affoler ver 5.92 20.54 0.00 0.07 sub:imp:3s; +affolèrent affoler ver 5.92 20.54 0.00 0.14 ind:pas:3p; +affolé affoler ver m s 5.92 20.54 0.76 2.84 par:pas; +affolée affoler ver f s 5.92 20.54 0.51 1.22 par:pas; +affolées affolé adj f p 0.91 11.49 0.10 0.74 +affolés affolé adj m p 0.91 11.49 0.18 2.57 +affouage affouage nom m s 0.00 0.14 0.00 0.07 +affouages affouage nom m p 0.00 0.14 0.00 0.07 +affouillait affouiller ver 0.00 0.14 0.00 0.07 ind:imp:3s; +affouillement affouillement nom m s 0.00 0.14 0.00 0.07 +affouillements affouillement nom m p 0.00 0.14 0.00 0.07 +affouillé affouiller ver m s 0.00 0.14 0.00 0.07 par:pas; +affranchi affranchi nom m s 1.34 1.49 0.46 0.61 +affranchie affranchir ver f s 1.87 11.42 0.19 1.01 par:pas; +affranchies affranchi adj f p 0.24 1.82 0.00 0.34 +affranchir affranchir ver 1.87 11.42 0.55 5.20 inf; +affranchirait affranchir ver 1.87 11.42 0.00 0.14 cnd:pre:3s; +affranchis affranchi nom m p 1.34 1.49 0.76 0.61 +affranchissais affranchir ver 1.87 11.42 0.01 0.07 ind:imp:1s;ind:imp:2s; +affranchissait affranchir ver 1.87 11.42 0.00 0.27 ind:imp:3s; +affranchissant affranchir ver 1.87 11.42 0.00 0.27 par:pre; +affranchisse affranchir ver 1.87 11.42 0.01 0.47 sub:pre:1s;sub:pre:3s; +affranchissement affranchissement nom m s 0.05 0.47 0.05 0.47 +affranchit affranchir ver 1.87 11.42 0.29 1.15 ind:pre:3s;ind:pas:3s; +affres affre nom f p 1.23 2.36 1.23 2.36 +affreuse affreux adj f s 34.96 39.46 7.86 12.64 +affreusement affreusement adv 3.13 5.61 3.13 5.61 +affreuses affreux adj f p 34.96 39.46 1.77 4.59 +affreux affreux adj m 34.96 39.46 25.34 22.23 +affriandai affriander ver 0.00 0.27 0.00 0.07 ind:pas:1s; +affriander affriander ver 0.00 0.27 0.00 0.07 inf; +affriandé affriander ver m s 0.00 0.27 0.00 0.07 par:pas; +affriandés affriander ver m p 0.00 0.27 0.00 0.07 par:pas; +affriolait affrioler ver 0.02 0.27 0.00 0.07 ind:imp:3s; +affriolant affriolant adj m s 0.26 0.20 0.12 0.14 +affriolante affriolant adj f s 0.26 0.20 0.03 0.07 +affriolantes affriolant adj f p 0.26 0.20 0.04 0.00 +affriolants affriolant adj m p 0.26 0.20 0.07 0.00 +affriole affrioler ver 0.02 0.27 0.01 0.00 ind:pre:3s; +affrioler affrioler ver 0.02 0.27 0.00 0.07 inf; +affriolerait affrioler ver 0.02 0.27 0.01 0.00 cnd:pre:3s; +affriolés affrioler ver m p 0.02 0.27 0.00 0.07 par:pas; +affront affront nom m s 3.36 3.85 3.11 2.77 +affronta affronter ver 30.72 22.43 0.03 0.54 ind:pas:3s; +affrontai affronter ver 30.72 22.43 0.00 0.07 ind:pas:1s; +affrontaient affronter ver 30.72 22.43 0.20 1.62 ind:imp:3p; +affrontais affronter ver 30.72 22.43 0.17 0.27 ind:imp:1s;ind:imp:2s; +affrontait affronter ver 30.72 22.43 0.14 0.88 ind:imp:3s; +affrontant affronter ver 30.72 22.43 0.63 0.88 par:pre; +affronte affronter ver 30.72 22.43 2.96 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +affrontement affrontement nom m s 2.66 4.05 1.72 2.43 +affrontements affrontement nom m p 2.66 4.05 0.94 1.62 +affrontent affronter ver 30.72 22.43 0.74 1.49 ind:pre:3p; +affronter affronter ver 30.72 22.43 19.57 13.38 inf;; +affrontera affronter ver 30.72 22.43 0.63 0.07 ind:fut:3s; +affronterai affronter ver 30.72 22.43 0.56 0.00 ind:fut:1s; +affronteraient affronter ver 30.72 22.43 0.01 0.14 cnd:pre:3p; +affronterais affronter ver 30.72 22.43 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +affronterait affronter ver 30.72 22.43 0.08 0.41 cnd:pre:3s; +affronteras affronter ver 30.72 22.43 0.20 0.00 ind:fut:2s; +affronterez affronter ver 30.72 22.43 0.14 0.00 ind:fut:2p; +affronterons affronter ver 30.72 22.43 0.22 0.00 ind:fut:1p; +affronteront affronter ver 30.72 22.43 0.20 0.00 ind:fut:3p; +affrontes affronter ver 30.72 22.43 0.58 0.07 ind:pre:2s; +affrontez affronter ver 30.72 22.43 0.51 0.00 imp:pre:2p;ind:pre:2p; +affrontiez affronter ver 30.72 22.43 0.02 0.07 ind:imp:2p; +affrontions affronter ver 30.72 22.43 0.16 0.14 ind:imp:1p; +affrontons affronter ver 30.72 22.43 0.60 0.14 imp:pre:1p;ind:pre:1p; +affronts affront nom m p 3.36 3.85 0.25 1.08 +affrontèrent affronter ver 30.72 22.43 0.02 0.14 ind:pas:3p; +affronté affronter ver m s 30.72 22.43 1.92 0.81 par:pas; +affrontée affronter ver f s 30.72 22.43 0.11 0.14 par:pas; +affrontées affronter ver f p 30.72 22.43 0.04 0.14 par:pas; +affrontés affronter ver m p 30.72 22.43 0.23 0.20 par:pas; +affrète affréter ver 0.67 0.47 0.04 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +affrètement affrètement nom m s 0.03 0.00 0.03 0.00 +affréter affréter ver 0.67 0.47 0.28 0.27 inf; +affréterons affréter ver 0.67 0.47 0.00 0.07 ind:fut:1p; +affréteur affréteur nom m s 0.02 0.07 0.02 0.07 +affrétez affréter ver 0.67 0.47 0.18 0.00 imp:pre:2p;ind:pre:2p; +affrété affréter ver m s 0.67 0.47 0.18 0.07 par:pas; +affubla affubler ver 0.48 6.55 0.00 0.14 ind:pas:3s; +affublait affubler ver 0.48 6.55 0.00 0.41 ind:imp:3s; +affublant affubler ver 0.48 6.55 0.01 0.54 par:pre; +affuble affubler ver 0.48 6.55 0.03 0.47 ind:pre:1s;ind:pre:3s; +affublement affublement nom m s 0.00 0.14 0.00 0.14 +affublent affubler ver 0.48 6.55 0.02 0.34 ind:pre:3p; +affubler affubler ver 0.48 6.55 0.14 0.68 inf; +affublerais affubler ver 0.48 6.55 0.00 0.07 cnd:pre:1s; +affublerait affubler ver 0.48 6.55 0.00 0.14 cnd:pre:3s; +affublons affubler ver 0.48 6.55 0.00 0.07 ind:pre:1p; +affublé affubler ver m s 0.48 6.55 0.23 2.03 par:pas; +affublée affubler ver f s 0.48 6.55 0.03 0.34 par:pas; +affublées affubler ver f p 0.48 6.55 0.00 0.14 par:pas; +affublés affubler ver m p 0.48 6.55 0.02 1.22 par:pas; +affurait affurer ver 0.00 1.49 0.00 0.07 ind:imp:3s; +affure affurer ver 0.00 1.49 0.00 0.81 ind:pre:3s; +afférent afférent adj m s 0.06 0.34 0.04 0.00 +afférente afférent adj f s 0.06 0.34 0.01 0.00 +afférentes afférent adj f p 0.06 0.34 0.01 0.20 +afférents afférent adj m p 0.06 0.34 0.00 0.14 +affurer affurer ver 0.00 1.49 0.00 0.41 inf; +affures affurer ver 0.00 1.49 0.00 0.07 ind:pre:2s; +affuré affurer ver m s 0.00 1.49 0.00 0.07 par:pas; +affurée affurer ver f s 0.00 1.49 0.00 0.07 par:pas; +affusions affusion nom f p 0.00 0.07 0.00 0.07 +afféterie afféterie nom f s 0.00 0.41 0.00 0.20 +afféteries afféterie nom f p 0.00 0.41 0.00 0.20 +affétées affété adj f p 0.00 0.07 0.00 0.07 +afghan afghan adj m s 1.48 0.68 0.68 0.34 +afghane afghan adj f s 1.48 0.68 0.39 0.07 +afghanes afghan adj f p 1.48 0.68 0.16 0.14 +afghans afghan nom m p 1.12 0.20 0.47 0.07 +aficionado aficionado nom m s 0.21 0.68 0.04 0.20 +aficionados aficionado nom m p 0.21 0.68 0.17 0.47 +afin_d afin_d pre 0.04 0.07 0.04 0.07 +afin_de afin_de pre 15.64 43.18 15.64 43.18 +afin_qu afin_qu con 0.05 0.00 0.05 0.00 +afin_que afin_que con 9.63 14.93 9.63 14.93 +afin afin adv_sup 0.76 0.95 0.76 0.95 +africain africain adj m s 5.46 12.09 2.34 3.65 +africaine africain adj f s 5.46 12.09 1.40 4.32 +africaines africain adj f p 5.46 12.09 0.52 1.35 +africains africain nom m p 2.28 4.05 1.48 1.76 +africanisme africanisme nom m s 0.10 0.00 0.10 0.00 +afrikaans afrikaans nom m 0.05 0.00 0.05 0.00 +afrikaner afrikaner nom s 0.14 0.00 0.05 0.00 +afrikaners afrikaner nom p 0.14 0.00 0.09 0.00 +afro_américain afro_américain nom m s 0.95 0.00 0.48 0.00 +afro_américain afro_américain adj f s 0.67 0.00 0.23 0.00 +afro_américain afro_américain nom m p 0.95 0.00 0.39 0.00 +afro_asiatique afro_asiatique adj f s 0.01 0.00 0.01 0.00 +afro_brésilien afro_brésilien adj f s 0.01 0.00 0.01 0.00 +afro_cubain afro_cubain adj m s 0.03 0.07 0.01 0.00 +afro_cubain afro_cubain adj f s 0.03 0.07 0.02 0.00 +afro_cubain afro_cubain adj m p 0.03 0.07 0.00 0.07 +afro afro adj 1.21 0.27 1.21 0.27 +after_shave after_shave nom m 0.51 0.68 0.47 0.61 +after_shave after_shave nom m 0.51 0.68 0.03 0.07 +agît agir ver 195.94 219.73 0.07 1.08 sub:imp:3s; +aga aga nom m s 0.65 6.01 0.65 5.95 +agace agacer ver 6.34 30.68 2.30 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agacement agacement nom m s 0.21 7.57 0.21 7.30 +agacements agacement nom m p 0.21 7.57 0.00 0.27 +agacent agacer ver 6.34 30.68 0.44 1.08 ind:pre:3p; +agacer agacer ver 6.34 30.68 1.18 2.77 inf; +agacera agacer ver 6.34 30.68 0.01 0.14 ind:fut:3s; +agacerait agacer ver 6.34 30.68 0.01 0.14 cnd:pre:3s; +agaceras agacer ver 6.34 30.68 0.01 0.00 ind:fut:2s; +agacerie agacerie nom f s 0.01 0.54 0.00 0.07 +agaceries agacerie nom f p 0.01 0.54 0.01 0.47 +agaceront agacer ver 6.34 30.68 0.00 0.07 ind:fut:3p; +agaces agacer ver 6.34 30.68 0.46 0.27 ind:pre:2s; +agaceur agaceur nom m s 0.00 0.07 0.00 0.07 +agacez agacer ver 6.34 30.68 0.35 0.14 imp:pre:2p;ind:pre:2p; +agacèrent agacer ver 6.34 30.68 0.00 0.14 ind:pas:3p; +agacé agacer ver m s 6.34 30.68 0.74 8.45 par:pas; +agacée agacer ver f s 6.34 30.68 0.28 3.11 par:pas; +agacées agacer ver f p 6.34 30.68 0.00 0.34 par:pas; +agacés agacer ver m p 6.34 30.68 0.13 0.47 par:pas; +agames agame nom m p 0.01 0.00 0.01 0.00 +agami agami nom m s 0.00 0.07 0.00 0.07 +agapanthe agapanthe nom f s 0.01 0.07 0.01 0.00 +agapanthes agapanthe nom f p 0.01 0.07 0.00 0.07 +agape agape nom f s 0.04 0.68 0.00 0.07 +agapes agape nom f p 0.04 0.68 0.04 0.61 +agar_agar agar_agar nom m s 0.00 0.07 0.00 0.07 +agas aga nom m p 0.65 6.01 0.00 0.07 +agasses agasse nom f p 0.00 0.07 0.00 0.07 +agate agate nom f s 0.01 1.22 0.01 0.61 +agates agate nom f p 0.01 1.22 0.00 0.61 +agaça agacer ver 6.34 30.68 0.00 1.22 ind:pas:3s; +agaçaient agacer ver 6.34 30.68 0.01 1.96 ind:imp:3p; +agaçais agacer ver 6.34 30.68 0.00 0.27 ind:imp:1s; +agaçait agacer ver 6.34 30.68 0.35 6.42 ind:imp:3s; +agaçant agaçant adj m s 1.99 4.19 1.45 2.50 +agaçante agaçant adj f s 1.99 4.19 0.40 1.22 +agaçantes agaçant adj f p 1.99 4.19 0.07 0.14 +agaçants agaçant adj m p 1.99 4.19 0.07 0.34 +agathe agathe nom f s 0.00 0.14 0.00 0.14 +agave agave nom m s 0.01 0.47 0.00 0.07 +agaves agave nom m p 0.01 0.47 0.01 0.41 +age age nom m s 3.37 0.47 3.25 0.47 +agence agence nom f s 23.15 17.77 20.38 14.12 +agencement agencement nom m s 0.19 1.89 0.19 1.69 +agencements agencement nom m p 0.19 1.89 0.00 0.20 +agencer agencer ver 0.48 2.91 0.02 0.61 inf; +agences agence nom f p 23.15 17.77 2.77 3.65 +agencé agencer ver m s 0.48 2.91 0.16 0.61 par:pas; +agencée agencer ver f s 0.48 2.91 0.00 0.54 par:pas; +agencées agencer ver f p 0.48 2.91 0.01 0.27 par:pas; +agencés agencer ver m p 0.48 2.91 0.01 0.41 par:pas; +agenda agenda nom m s 5.84 6.08 5.69 5.41 +agendas agenda nom m p 5.84 6.08 0.16 0.68 +agenouilla agenouiller ver 5.20 23.31 0.03 5.54 ind:pas:3s; +agenouillai agenouiller ver 5.20 23.31 0.11 0.47 ind:pas:1s; +agenouillaient agenouiller ver 5.20 23.31 0.01 0.61 ind:imp:3p; +agenouillais agenouiller ver 5.20 23.31 0.00 0.27 ind:imp:1s; +agenouillait agenouiller ver 5.20 23.31 0.06 1.15 ind:imp:3s; +agenouillant agenouiller ver 5.20 23.31 0.01 0.88 par:pre; +agenouille agenouiller ver 5.20 23.31 1.52 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agenouillement agenouillement nom m s 0.27 0.27 0.27 0.27 +agenouillent agenouiller ver 5.20 23.31 0.14 0.61 ind:pre:3p; +agenouiller agenouiller ver 5.20 23.31 1.64 3.72 inf; +agenouillera agenouiller ver 5.20 23.31 0.06 0.00 ind:fut:3s; +agenouilleront agenouiller ver 5.20 23.31 0.01 0.00 ind:fut:3p; +agenouilles agenouiller ver 5.20 23.31 0.04 0.00 ind:pre:2s; +agenouillez agenouiller ver 5.20 23.31 0.33 0.00 imp:pre:2p;ind:pre:2p; +agenouillons agenouiller ver 5.20 23.31 0.12 0.07 imp:pre:1p;ind:pre:1p; +agenouillât agenouiller ver 5.20 23.31 0.00 0.07 sub:imp:3s; +agenouillèrent agenouiller ver 5.20 23.31 0.01 0.41 ind:pas:3p; +agenouillé agenouiller ver m s 5.20 23.31 1.04 3.72 par:pas; +agenouillée agenouiller ver f s 5.20 23.31 0.06 2.23 par:pas; +agenouillées agenouillé adj f p 0.15 2.36 0.00 0.41 +agenouillés agenouiller ver m p 5.20 23.31 0.02 1.08 par:pas; +agent agent nom m s 117.60 39.26 92.42 22.50 +agente agente nom f s 0.30 0.00 0.30 0.00 +agença agencer ver 0.48 2.91 0.00 0.07 ind:pas:3s; +agençaient agencer ver 0.48 2.91 0.01 0.07 ind:imp:3p; +agençait agencer ver 0.48 2.91 0.01 0.07 ind:imp:3s; +agençant agencer ver 0.48 2.91 0.00 0.07 par:pre; +agents agent nom m p 117.60 39.26 25.00 16.69 +ages age nom m p 3.37 0.47 0.13 0.00 +aggiornamento aggiornamento nom m s 0.04 0.07 0.04 0.07 +agglo agglo nom m s 0.00 0.07 0.00 0.07 +agglomère agglomérer ver 0.01 1.62 0.00 0.07 ind:pre:3s; +agglomèrent agglomérer ver 0.01 1.62 0.00 0.41 ind:pre:3p; +aggloméraient agglomérer ver 0.01 1.62 0.00 0.14 ind:imp:3p; +agglomérant agglomérer ver 0.01 1.62 0.00 0.07 par:pre; +agglomérat agglomérat nom m s 0.00 0.47 0.00 0.47 +agglomération agglomération nom f s 0.12 2.16 0.10 1.62 +agglomérations agglomération nom f p 0.12 2.16 0.02 0.54 +agglomérer agglomérer ver 0.01 1.62 0.00 0.20 inf; +agglomérera agglomérer ver 0.01 1.62 0.00 0.07 ind:fut:3s; +aggloméreront agglomérer ver 0.01 1.62 0.00 0.07 ind:fut:3p; +aggloméré aggloméré nom m s 0.06 0.34 0.06 0.27 +agglomérée agglomérer ver f s 0.01 1.62 0.00 0.14 par:pas; +agglomérées agglomérer ver f p 0.01 1.62 0.01 0.27 par:pas; +agglomérés aggloméré adj m p 0.00 0.47 0.00 0.41 +agglutina agglutiner ver 0.24 6.55 0.00 0.07 ind:pas:3s; +agglutinaient agglutiner ver 0.24 6.55 0.00 0.95 ind:imp:3p; +agglutinait agglutiner ver 0.24 6.55 0.00 0.34 ind:imp:3s; +agglutinant agglutiner ver 0.24 6.55 0.00 0.41 par:pre; +agglutinatif agglutinatif adj m s 0.00 0.07 0.00 0.07 +agglutination agglutination nom f s 0.01 0.14 0.01 0.14 +agglutine agglutiner ver 0.24 6.55 0.00 0.27 ind:pre:3s; +agglutinement agglutinement nom m s 0.00 0.07 0.00 0.07 +agglutinent agglutiner ver 0.24 6.55 0.04 1.01 ind:pre:3p; +agglutiner agglutiner ver 0.24 6.55 0.02 0.27 inf; +agglutinez agglutiner ver 0.24 6.55 0.01 0.00 imp:pre:2p; +agglutinogène agglutinogène nom m s 0.00 0.07 0.00 0.07 +agglutinèrent agglutiner ver 0.24 6.55 0.00 0.14 ind:pas:3p; +agglutiné agglutiner ver m s 0.24 6.55 0.01 0.20 par:pas; +agglutinée agglutiner ver f s 0.24 6.55 0.00 0.14 par:pas; +agglutinées agglutiner ver f p 0.24 6.55 0.01 0.88 par:pas; +agglutinés agglutiner ver m p 0.24 6.55 0.15 1.89 par:pas; +aggrava aggraver ver 7.61 10.54 0.02 0.68 ind:pas:3s; +aggravai aggraver ver 7.61 10.54 0.00 0.07 ind:pas:1s; +aggravaient aggraver ver 7.61 10.54 0.00 0.68 ind:imp:3p; +aggravait aggraver ver 7.61 10.54 0.06 2.43 ind:imp:3s; +aggravant aggraver ver 7.61 10.54 0.02 0.41 par:pre; +aggravante aggravant adj f s 0.26 0.54 0.02 0.34 +aggravantes aggravant adj f p 0.26 0.54 0.24 0.20 +aggravation aggravation nom f s 0.45 0.74 0.45 0.74 +aggrave aggraver ver 7.61 10.54 2.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aggravent aggraver ver 7.61 10.54 0.17 0.34 ind:pre:3p; +aggraver aggraver ver 7.61 10.54 2.32 2.43 inf; +aggravera aggraver ver 7.61 10.54 0.04 0.07 ind:fut:3s; +aggraverait aggraver ver 7.61 10.54 0.07 0.00 cnd:pre:3s; +aggraveriez aggraver ver 7.61 10.54 0.00 0.07 cnd:pre:2p; +aggravez aggraver ver 7.61 10.54 0.78 0.00 imp:pre:2p;ind:pre:2p; +aggraviez aggraver ver 7.61 10.54 0.00 0.07 ind:imp:2p; +aggravons aggraver ver 7.61 10.54 0.05 0.00 imp:pre:1p;ind:pre:1p; +aggravèrent aggraver ver 7.61 10.54 0.00 0.14 ind:pas:3p; +aggravé aggraver ver m s 7.61 10.54 1.36 0.88 par:pas; +aggravée aggraver ver f s 7.61 10.54 0.39 1.28 par:pas; +aggravées aggraver ver f p 7.61 10.54 0.04 0.07 par:pas; +aggravés aggraver ver m p 7.61 10.54 0.16 0.07 par:pas; +aghas agha nom m p 0.00 0.07 0.00 0.07 +agi agir ver m s 195.94 219.73 13.69 13.31 par:pas; +agie agir ver f s 195.94 219.73 0.14 0.00 par:pas; +agile agile adj s 2.17 5.00 1.69 3.31 +agiles agile adj p 2.17 5.00 0.47 1.69 +agilité agilité nom f s 1.00 3.38 1.00 3.31 +agilités agilité nom f p 1.00 3.38 0.00 0.07 +agios agio nom m p 0.17 0.07 0.17 0.07 +agioteur agioteur nom m s 0.01 0.07 0.01 0.07 +agir agir ver 195.94 219.73 37.48 29.66 inf; +agira agir ver 195.94 219.73 1.25 1.08 ind:fut:3s; +agirai agir ver 195.94 219.73 0.79 0.34 ind:fut:1s; +agiraient agir ver 195.94 219.73 0.03 0.14 cnd:pre:3p; +agirais agir ver 195.94 219.73 0.29 0.07 cnd:pre:1s;cnd:pre:2s; +agirait agir ver 195.94 219.73 2.08 3.85 cnd:pre:3s; +agiras agir ver 195.94 219.73 0.10 0.07 ind:fut:2s; +agirent agir ver 195.94 219.73 0.00 0.14 ind:pas:3p; +agirez agir ver 195.94 219.73 0.14 0.20 ind:fut:2p; +agiriez agir ver 195.94 219.73 0.09 0.00 cnd:pre:2p; +agirons agir ver 195.94 219.73 0.36 0.00 ind:fut:1p; +agiront agir ver 195.94 219.73 0.09 0.27 ind:fut:3p; +agis agir ver m p 195.94 219.73 6.61 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +agissaient agir ver 195.94 219.73 0.32 1.49 ind:imp:3p; +agissais agir ver 195.94 219.73 0.49 0.95 ind:imp:1s;ind:imp:2s; +agissait agir ver 195.94 219.73 12.30 80.47 ind:imp:3s; +agissant agir ver 195.94 219.73 1.26 4.32 par:pre; +agissante agissant adj f s 0.16 0.68 0.11 0.41 +agissantes agissant adj f p 0.16 0.68 0.00 0.14 +agisse agir ver 195.94 219.73 2.80 4.53 sub:pre:1s;sub:pre:3s; +agissement agissement nom m s 1.34 1.08 0.16 0.14 +agissements agissement nom m p 1.34 1.08 1.18 0.95 +agissent agir ver 195.94 219.73 3.61 1.69 ind:pre:3p; +agisses agir ver 195.94 219.73 0.27 0.00 sub:pre:2s; +agissez agir ver 195.94 219.73 4.20 0.74 imp:pre:2p;ind:pre:2p; +agissiez agir ver 195.94 219.73 0.23 0.14 ind:imp:2p; +agissions agir ver 195.94 219.73 0.12 0.07 ind:imp:1p; +agissons agir ver 195.94 219.73 2.14 0.61 imp:pre:1p;ind:pre:1p; +agit_prop agit_prop nom f 0.10 0.00 0.10 0.00 +agit agir ver 195.94 219.73 105.02 73.72 ind:pre:3s;ind:pas:3s; +agita agiter ver 14.62 89.19 0.06 6.76 ind:pas:3s; +agitai agiter ver 14.62 89.19 0.00 0.14 ind:pas:1s; +agitaient agiter ver 14.62 89.19 0.08 9.93 ind:imp:3p; +agitais agiter ver 14.62 89.19 0.20 0.41 ind:imp:1s;ind:imp:2s; +agitait agiter ver 14.62 89.19 0.47 17.09 ind:imp:3s; +agitant agiter ver 14.62 89.19 0.82 11.22 par:pre; +agitassent agiter ver 14.62 89.19 0.00 0.07 sub:imp:3p; +agitateur agitateur nom m s 1.72 1.89 0.86 0.68 +agitateurs agitateur nom m p 1.72 1.89 0.85 1.22 +agitation agitation nom f s 4.73 21.35 4.46 20.07 +agitations agitation nom f p 4.73 21.35 0.27 1.28 +agitato agitato adv 0.17 0.07 0.17 0.07 +agitatrice agitateur nom f s 1.72 1.89 0.01 0.00 +agite agiter ver 14.62 89.19 3.51 12.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agitent agiter ver 14.62 89.19 1.53 5.54 ind:pre:3p; +agiter agiter ver 14.62 89.19 2.72 11.89 inf; +agitera agiter ver 14.62 89.19 0.03 0.07 ind:fut:3s; +agiterai agiter ver 14.62 89.19 0.02 0.00 ind:fut:1s; +agiterait agiter ver 14.62 89.19 0.01 0.27 cnd:pre:3s; +agiteront agiter ver 14.62 89.19 0.06 0.14 ind:fut:3p; +agites agiter ver 14.62 89.19 0.84 0.07 ind:pre:2s; +agitez agiter ver 14.62 89.19 0.76 0.14 imp:pre:2p;ind:pre:2p; +agitiez agiter ver 14.62 89.19 0.04 0.00 ind:imp:2p; +agitions agiter ver 14.62 89.19 0.00 0.07 ind:imp:1p; +agitons agiter ver 14.62 89.19 0.01 0.14 ind:pre:1p; +agitât agiter ver 14.62 89.19 0.00 0.07 sub:imp:3s; +agitèrent agiter ver 14.62 89.19 0.01 1.22 ind:pas:3p; +agité agité adj m s 5.37 9.86 2.90 3.38 +agitée agité adj f s 5.37 9.86 1.76 3.38 +agitées agité adj f p 5.37 9.86 0.20 1.49 +agités agité adj m p 5.37 9.86 0.51 1.62 +aglagla aglagla adv 0.00 0.07 0.00 0.07 +agnat agnat nom m s 0.03 0.07 0.03 0.07 +agnathes agnathe nom m p 0.00 0.07 0.00 0.07 +agneau agneau nom m s 16.13 8.78 13.01 5.95 +agneaux agneau nom m p 16.13 8.78 3.12 2.84 +agnela agneler ver 0.00 0.47 0.00 0.47 ind:pas:3s; +agnelage agnelage nom m s 0.00 0.07 0.00 0.07 +agnelet agnelet nom m s 0.11 0.07 0.11 0.07 +agneline agneline nom f s 0.00 0.07 0.00 0.07 +agnelle agnel nom f s 0.14 0.41 0.14 0.14 +agnelles agnel nom f p 0.14 0.41 0.00 0.27 +agnosie agnosie nom f s 0.02 0.00 0.02 0.00 +agnostique agnostique adj f s 0.08 0.47 0.08 0.41 +agnostiques agnostique nom p 0.03 0.14 0.01 0.07 +agnus_dei agnus_dei nom m 0.00 0.07 0.00 0.07 +agnus_dei agnus_dei nom m 0.47 0.14 0.47 0.14 +agonie agonie nom f s 4.68 14.59 4.44 13.38 +agonies agonie nom f p 4.68 14.59 0.25 1.22 +agonique agonique adj f s 0.01 0.00 0.01 0.00 +agoniques agonique nom p 0.00 0.14 0.00 0.07 +agonir agonir ver 0.03 0.95 0.01 0.61 inf; +agonirent agonir ver 0.03 0.95 0.00 0.07 ind:pas:3p; +agonisa agoniser ver 1.36 5.34 0.00 0.14 ind:pas:3s; +agonisai agoniser ver 1.36 5.34 0.00 0.07 ind:pas:1s; +agonisaient agoniser ver 1.36 5.34 0.00 0.34 ind:imp:3p; +agonisais agoniser ver 1.36 5.34 0.03 0.07 ind:imp:1s; +agonisait agoniser ver 1.36 5.34 0.23 1.62 ind:imp:3s; +agonisant agonisant adj m s 0.52 2.30 0.41 1.08 +agonisante agonisant adj f s 0.52 2.30 0.07 0.88 +agonisantes agonisant adj f p 0.52 2.30 0.01 0.27 +agonisants agonisant nom m p 0.23 3.38 0.17 1.35 +agonise agoniser ver 1.36 5.34 0.45 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agonisent agoniser ver 1.36 5.34 0.14 0.34 ind:pre:3p; +agoniser agoniser ver 1.36 5.34 0.10 1.01 inf; +agonisez agoniser ver 1.36 5.34 0.02 0.07 imp:pre:2p; +agonisiez agoniser ver 1.36 5.34 0.02 0.07 ind:imp:2p; +agonissait agonir ver 0.03 0.95 0.00 0.07 ind:imp:3s; +agoniste agoniste adj s 0.00 0.07 0.00 0.07 +agonisé agoniser ver m s 1.36 5.34 0.26 0.00 par:pas; +agonit agonir ver 0.03 0.95 0.00 0.14 ind:pre:3s;ind:pas:3s; +agora agora nom f s 0.03 0.68 0.03 0.68 +agoraphobe agoraphobe adj m s 0.07 0.00 0.07 0.00 +agoraphobes agoraphobe nom p 0.01 0.07 0.00 0.07 +agoraphobie agoraphobie nom f s 0.23 0.07 0.23 0.07 +agouti agouti nom m s 0.01 0.41 0.01 0.34 +agoutis agouti nom m p 0.01 0.41 0.00 0.07 +agoyate agoyate nom m s 0.00 0.41 0.00 0.27 +agoyates agoyate nom m p 0.00 0.41 0.00 0.14 +agrafa agrafer ver 1.34 2.36 0.00 0.07 ind:pas:3s; +agrafage agrafage nom m s 0.03 0.00 0.03 0.00 +agrafait agrafer ver 1.34 2.36 0.00 0.47 ind:imp:3s; +agrafant agrafer ver 1.34 2.36 0.00 0.14 par:pre; +agrafe agrafe nom f s 0.86 2.43 0.34 0.88 +agrafent agrafer ver 1.34 2.36 0.01 0.07 ind:pre:3p; +agrafer agrafer ver 1.34 2.36 0.85 0.47 inf; +agraferai agrafer ver 1.34 2.36 0.01 0.00 ind:fut:1s; +agrafes agrafe nom f p 0.86 2.43 0.52 1.55 +agrafeur agrafeur nom m s 0.75 0.14 0.03 0.00 +agrafeuse agrafeur nom f s 0.75 0.14 0.73 0.07 +agrafeuses agrafeuse nom f p 0.06 0.00 0.06 0.00 +agrafez agrafer ver 1.34 2.36 0.06 0.00 imp:pre:2p;ind:pre:2p; +agrafons agrafer ver 1.34 2.36 0.02 0.00 imp:pre:1p; +agrafé agrafer ver m s 1.34 2.36 0.15 0.41 par:pas; +agrafée agrafer ver f s 1.34 2.36 0.04 0.41 par:pas; +agrafées agrafer ver f p 1.34 2.36 0.00 0.07 par:pas; +agrafés agrafer ver m p 1.34 2.36 0.03 0.07 par:pas; +agrainage agrainage nom m s 0.00 0.07 0.00 0.07 +agraire agraire adj s 0.35 0.54 0.31 0.41 +agraires agraire adj p 0.35 0.54 0.04 0.14 +agrandît agrandir ver 7.26 16.15 0.00 0.07 sub:imp:3s; +agrandi agrandir ver m s 7.26 16.15 0.53 1.96 par:pas; +agrandie agrandir ver f s 7.26 16.15 0.45 1.62 par:pas; +agrandies agrandir ver f p 7.26 16.15 0.00 0.68 par:pas; +agrandir agrandir ver 7.26 16.15 3.89 2.70 inf; +agrandira agrandir ver 7.26 16.15 0.14 0.14 ind:fut:3s; +agrandirai agrandir ver 7.26 16.15 0.01 0.00 ind:fut:1s; +agrandirait agrandir ver 7.26 16.15 0.28 0.00 cnd:pre:3s; +agrandirent agrandir ver 7.26 16.15 0.00 0.61 ind:pas:3p; +agrandiront agrandir ver 7.26 16.15 0.01 0.00 ind:fut:3p; +agrandis agrandir ver m p 7.26 16.15 0.41 3.85 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +agrandissaient agrandir ver 7.26 16.15 0.00 0.74 ind:imp:3p; +agrandissait agrandir ver 7.26 16.15 0.04 1.01 ind:imp:3s; +agrandissant agrandir ver 7.26 16.15 0.16 0.47 par:pre; +agrandissement agrandissement nom m s 0.90 1.69 0.68 1.28 +agrandissements agrandissement nom m p 0.90 1.69 0.21 0.41 +agrandissent agrandir ver 7.26 16.15 0.03 0.54 ind:pre:3p; +agrandisseur agrandisseur nom m s 0.13 0.27 0.13 0.20 +agrandisseurs agrandisseur nom m p 0.13 0.27 0.00 0.07 +agrandissez agrandir ver 7.26 16.15 0.44 0.14 imp:pre:2p;ind:pre:2p; +agrandissons agrandir ver 7.26 16.15 0.04 0.00 imp:pre:1p; +agrandit agrandir ver 7.26 16.15 0.86 1.62 ind:pre:3s;ind:pas:3s; +agranulocytose agranulocytose nom f s 0.01 0.00 0.01 0.00 +agrarien agrarien adj m s 0.00 0.14 0.00 0.14 +agressa agresser ver 13.39 2.97 0.01 0.07 ind:pas:3s; +agressaient agresser ver 13.39 2.97 0.02 0.07 ind:imp:3p; +agressais agresser ver 13.39 2.97 0.02 0.07 ind:imp:1s;ind:imp:2s; +agressait agresser ver 13.39 2.97 0.08 0.14 ind:imp:3s; +agressant agresser ver 13.39 2.97 0.05 0.07 par:pre; +agresse agresser ver 13.39 2.97 1.46 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agressent agresser ver 13.39 2.97 0.07 0.07 ind:pre:3p; +agresser agresser ver 13.39 2.97 2.42 0.34 inf; +agresseraient agresser ver 13.39 2.97 0.01 0.00 cnd:pre:3p; +agresserait agresser ver 13.39 2.97 0.01 0.00 cnd:pre:3s; +agresseur agresseur nom m s 6.87 3.78 5.03 2.43 +agresseurs agresseur nom m p 6.87 3.78 1.84 1.35 +agressez agresser ver 13.39 2.97 0.17 0.00 ind:pre:2p; +agressif agressif adj m s 9.83 15.88 5.76 6.82 +agressifs agressif adj m p 9.83 15.88 1.20 1.69 +agression agression nom f s 12.91 6.15 10.92 4.53 +agressions agression nom f p 12.91 6.15 1.99 1.62 +agressive agressif adj f s 9.83 15.88 2.48 6.22 +agressivement agressivement adv 0.11 1.01 0.11 1.01 +agressives agressif adj f p 9.83 15.88 0.39 1.15 +agressivité agressivité nom f s 2.54 5.00 2.54 4.86 +agressivités agressivité nom f p 2.54 5.00 0.00 0.14 +agressé agresser ver m s 13.39 2.97 5.33 0.81 par:pas; +agressée agresser ver f s 13.39 2.97 2.56 0.41 par:pas; +agressées agresser ver f p 13.39 2.97 0.25 0.07 par:pas; +agressés agresser ver m p 13.39 2.97 0.92 0.20 par:pas; +agreste agreste adj s 0.10 0.81 0.10 0.68 +agrestes agreste adj f p 0.10 0.81 0.00 0.14 +agriche agricher ver 0.00 0.14 0.00 0.07 ind:pre:3s; +agriches agricher ver 0.00 0.14 0.00 0.07 ind:pre:2s; +agricole agricole adj s 3.31 7.36 2.03 4.32 +agricoles agricole adj p 3.31 7.36 1.28 3.04 +agriculteur agriculteur nom m s 1.06 1.76 0.42 0.54 +agriculteurs agriculteur nom m p 1.06 1.76 0.63 1.08 +agricultrice agriculteur nom f s 1.06 1.76 0.01 0.00 +agricultrices agriculteur nom f p 1.06 1.76 0.00 0.14 +agriculture agriculture nom f s 3.39 2.77 3.39 2.77 +agrippa agripper ver 2.81 17.57 0.12 2.50 ind:pas:3s; +agrippai agripper ver 2.81 17.57 0.00 0.54 ind:pas:1s; +agrippaient agripper ver 2.81 17.57 0.00 1.08 ind:imp:3p; +agrippais agripper ver 2.81 17.57 0.01 0.07 ind:imp:1s;ind:imp:2s; +agrippait agripper ver 2.81 17.57 0.33 1.82 ind:imp:3s; +agrippant agripper ver 2.81 17.57 0.08 2.03 par:pre; +agrippants agrippant adj m p 0.00 0.14 0.00 0.07 +agrippe agripper ver 2.81 17.57 0.72 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agrippement agrippement nom m s 0.00 0.07 0.00 0.07 +agrippent agripper ver 2.81 17.57 0.09 1.08 ind:pre:3p; +agripper agripper ver 2.81 17.57 0.44 1.28 imp:pre:2p;inf; +agrippes agripper ver 2.81 17.57 0.09 0.07 ind:pre:2s; +agrippez agripper ver 2.81 17.57 0.11 0.00 imp:pre:2p;ind:pre:2p; +agrippions agripper ver 2.81 17.57 0.00 0.07 ind:imp:1p; +agrippèrent agripper ver 2.81 17.57 0.00 0.41 ind:pas:3p; +agrippé agripper ver m s 2.81 17.57 0.56 2.30 par:pas; +agrippée agripper ver f s 2.81 17.57 0.23 1.01 par:pas; +agrippées agripper ver f p 2.81 17.57 0.03 0.61 par:pas; +agrippés agripper ver m p 2.81 17.57 0.01 0.81 par:pas; +agro_alimentaire agro_alimentaire adj f s 0.15 0.00 0.15 0.00 +agro agro nom s 0.00 0.20 0.00 0.20 +agroalimentaire agroalimentaire nom m s 0.04 0.00 0.04 0.00 +agronome agronome nom s 0.40 0.34 0.40 0.20 +agronomes agronome nom p 0.40 0.34 0.00 0.14 +agronomie agronomie nom f s 0.07 0.07 0.07 0.07 +agronomique agronomique adj s 0.03 0.07 0.03 0.07 +agrovilles agroville nom f p 0.00 0.07 0.00 0.07 +agrège agréger ver 0.46 0.81 0.00 0.07 ind:pre:3s; +agrègent agréger ver 0.46 0.81 0.00 0.07 ind:pre:3p; +agrès agrès nom m 0.24 1.01 0.24 1.01 +agréa agréer ver 1.09 5.07 0.14 0.20 ind:pas:3s; +agréable agréable adj s 40.24 36.01 37.71 31.35 +agréablement agréablement adv 0.63 3.65 0.63 3.65 +agréables agréable adj p 40.24 36.01 2.54 4.66 +agréaient agréer ver 1.09 5.07 0.00 0.14 ind:imp:3p; +agréais agréer ver 1.09 5.07 0.00 0.14 ind:imp:1s; +agréait agréer ver 1.09 5.07 0.00 0.47 ind:imp:3s; +agrée agréer ver 1.09 5.07 0.07 0.20 ind:pre:1s;ind:pre:3s; +agréent agréer ver 1.09 5.07 0.02 0.00 ind:pre:3p; +agréer agréer ver 1.09 5.07 0.45 3.18 inf; +agréera agréer ver 1.09 5.07 0.01 0.00 ind:fut:3s; +agréerait agréer ver 1.09 5.07 0.00 0.07 cnd:pre:3s; +agrées agréer ver 1.09 5.07 0.00 0.07 ind:pre:2s; +agréez agréer ver 1.09 5.07 0.14 0.14 imp:pre:2p;ind:pre:2p; +agrég agrég nom f s 0.14 0.00 0.14 0.00 +agrégat agrégat nom m s 0.03 0.61 0.02 0.47 +agrégatif agrégatif nom m s 0.00 0.47 0.00 0.41 +agrégatifs agrégatif nom m p 0.00 0.47 0.00 0.07 +agrégation agrégation nom f s 0.29 2.97 0.29 2.97 +agrégative agrégative nom f s 0.00 0.07 0.00 0.07 +agrégats agrégat nom m p 0.03 0.61 0.01 0.14 +agrégeaient agréger ver 0.46 0.81 0.00 0.07 ind:imp:3p; +agrégeait agréger ver 0.46 0.81 0.00 0.07 ind:imp:3s; +agréger agréger ver 0.46 0.81 0.00 0.07 inf; +agrégé agréger ver m s 0.46 0.81 0.34 0.20 par:pas; +agrégée agréger ver f s 0.46 0.81 0.10 0.20 par:pas; +agrégées agréger ver f p 0.46 0.81 0.01 0.00 par:pas; +agrégés agrégé nom m p 0.32 1.15 0.20 0.41 +agréions agréer ver 1.09 5.07 0.00 0.07 ind:imp:1p; +agrume agrume nom m s 0.41 0.54 0.01 0.07 +agrément agrément nom m s 1.75 7.16 1.50 6.01 +agrémenta agrémenter ver 0.35 5.68 0.01 0.20 ind:pas:3s; +agrémentaient agrémenter ver 0.35 5.68 0.00 0.20 ind:imp:3p; +agrémentait agrémenter ver 0.35 5.68 0.01 0.61 ind:imp:3s; +agrémentant agrémenter ver 0.35 5.68 0.00 0.20 par:pre; +agrémente agrémenter ver 0.35 5.68 0.03 0.14 ind:pre:3s; +agrémentent agrémenter ver 0.35 5.68 0.00 0.14 ind:pre:3p; +agrémenter agrémenter ver 0.35 5.68 0.03 0.41 inf; +agréments agrément nom m p 1.75 7.16 0.25 1.15 +agrémenté agrémenté adj m s 0.14 0.14 0.14 0.00 +agrémentée agrémenter ver f s 0.35 5.68 0.06 0.88 par:pas; +agrémentées agrémenter ver f p 0.35 5.68 0.00 0.68 par:pas; +agrémentés agrémenter ver m p 0.35 5.68 0.10 0.68 par:pas; +agrumes agrume nom m p 0.41 0.54 0.40 0.47 +agréé agréer ver m s 1.09 5.07 0.22 0.14 par:pas; +agréée agréé adj f s 0.17 0.68 0.04 0.00 +agréées agréer ver f p 1.09 5.07 0.02 0.00 par:pas; +agréés agréé adj m p 0.17 0.68 0.00 0.20 +aguardiente aguardiente nom f s 0.03 0.00 0.03 0.00 +aguerri aguerri adj m s 0.66 1.01 0.59 0.41 +aguerrie aguerri adj f s 0.66 1.01 0.04 0.14 +aguerries aguerri adj f p 0.66 1.01 0.01 0.07 +aguerrir aguerrir ver 0.21 0.81 0.07 0.20 inf; +aguerrira aguerrir ver 0.21 0.81 0.01 0.00 ind:fut:3s; +aguerris aguerri adj m p 0.66 1.01 0.01 0.41 +aguerrissait aguerrir ver 0.21 0.81 0.00 0.07 ind:imp:3s; +aguerrit aguerrir ver 0.21 0.81 0.01 0.00 ind:pre:3s; +aguichage aguichage nom m s 0.01 0.00 0.01 0.00 +aguichait aguicher ver 0.30 0.88 0.03 0.20 ind:imp:3s; +aguichant aguichant adj m s 0.14 0.54 0.04 0.07 +aguichante aguichant adj f s 0.14 0.54 0.07 0.27 +aguichantes aguichant adj f p 0.14 0.54 0.03 0.20 +aguiche aguicher ver 0.30 0.88 0.04 0.14 ind:pre:3s; +aguichent aguicher ver 0.30 0.88 0.03 0.14 ind:pre:3p; +aguicher aguicher ver 0.30 0.88 0.21 0.41 inf; +aguicheur aguicheur adj m s 0.23 0.47 0.06 0.07 +aguicheurs aguicheur adj m p 0.23 0.47 0.00 0.07 +aguicheuse aguicheur nom f s 0.04 0.14 0.04 0.14 +aguicheuses aguicheur adj f p 0.23 0.47 0.17 0.14 +aguillera aguiller ver 0.01 0.00 0.01 0.00 ind:fut:3s; +ah ah ono 576.53 297.16 576.53 297.16 +ahan ahan nom m s 0.00 0.54 0.00 0.34 +ahana ahaner ver 0.01 2.16 0.00 0.20 ind:pas:3s; +ahanaient ahaner ver 0.01 2.16 0.00 0.14 ind:imp:3p; +ahanait ahaner ver 0.01 2.16 0.00 0.34 ind:imp:3s; +ahanant ahaner ver 0.01 2.16 0.00 0.61 par:pre; +ahanante ahanant adj f s 0.00 0.41 0.00 0.14 +ahane ahaner ver 0.01 2.16 0.01 0.34 ind:pre:1s;ind:pre:3s; +ahanement ahanement nom m s 0.00 0.34 0.00 0.07 +ahanements ahanement nom m p 0.00 0.34 0.00 0.27 +ahanent ahaner ver 0.01 2.16 0.00 0.14 ind:pre:3p; +ahaner ahaner ver 0.01 2.16 0.00 0.27 inf; +ahans ahan nom m p 0.00 0.54 0.00 0.20 +ahané ahaner ver m s 0.01 2.16 0.00 0.14 par:pas; +ahi ahi adv 0.06 0.27 0.06 0.27 +ahou ahou adv 0.01 0.00 0.01 0.00 +ahuri ahuri nom m s 0.41 3.04 0.37 1.76 +ahurie ahuri adj f s 0.39 7.70 0.04 2.03 +ahuries ahuri adj f p 0.39 7.70 0.00 0.27 +ahurir ahurir ver 0.34 3.38 0.00 0.41 inf; +ahuris ahuri nom m p 0.41 3.04 0.04 1.22 +ahurissait ahurir ver 0.34 3.38 0.00 0.27 ind:imp:3s; +ahurissant ahurissant adj m s 0.70 2.16 0.42 1.15 +ahurissante ahurissant adj f s 0.70 2.16 0.21 0.61 +ahurissantes ahurissant adj f p 0.70 2.16 0.05 0.14 +ahurissants ahurissant adj m p 0.70 2.16 0.03 0.27 +ahurissement ahurissement nom m s 0.00 1.82 0.00 1.76 +ahurissements ahurissement nom m p 0.00 1.82 0.00 0.07 +ahurit ahurir ver 0.34 3.38 0.00 0.41 ind:pre:3s;ind:pas:3s; +ai avoir aux 18559.23 12800.81 4902.10 2119.12 ind:pre:1s; +aicher aicher ver 0.10 0.00 0.10 0.00 inf; +aida aider ver 688.71 158.65 0.81 7.09 ind:pas:3s; +aidai aider ver 688.71 158.65 0.03 1.08 ind:pas:1s; +aidaient aider ver 688.71 158.65 1.04 3.31 ind:imp:3p; +aidais aider ver 688.71 158.65 3.18 1.49 ind:imp:1s;ind:imp:2s; +aidait aider ver 688.71 158.65 3.47 9.73 ind:imp:3s; +aidant aider ver 688.71 158.65 1.70 11.49 par:pre; +aidassent aider ver 688.71 158.65 0.00 0.14 sub:imp:3p; +aide_bourreau aide_bourreau nom s 0.00 0.14 0.00 0.14 +aide_comptable aide_comptable nom m s 0.04 0.07 0.04 0.07 +aide_cuisinier aide_cuisinier nom m s 0.02 0.14 0.02 0.14 +aide_infirmier aide_infirmier nom s 0.04 0.00 0.04 0.00 +aide_jardinier aide_jardinier nom m s 0.01 0.07 0.01 0.07 +aide_major aide_major nom m 0.00 0.14 0.00 0.14 +aide_mémoire aide_mémoire nom m 0.04 0.41 0.04 0.41 +aide_ménagère aide_ménagère nom f s 0.00 0.27 0.00 0.27 +aide_pharmacien aide_pharmacien nom s 0.00 0.07 0.00 0.07 +aide_soignant aide_soignant nom m s 0.40 0.27 0.20 0.00 +aide_soignant aide_soignant nom f s 0.40 0.27 0.12 0.14 +aide aide nom s 175.59 55.54 171.41 52.30 +aident aider ver 688.71 158.65 6.75 2.57 ind:pre:3p;sub:pre:3p; +aider aider ver 688.71 158.65 362.77 60.41 inf;;inf;;inf;;inf;; +aidera aider ver 688.71 158.65 19.59 2.97 ind:fut:3s; +aiderai aider ver 688.71 158.65 10.91 2.03 ind:fut:1s; +aideraient aider ver 688.71 158.65 0.41 0.41 cnd:pre:3p; +aiderais aider ver 688.71 158.65 2.60 0.20 cnd:pre:1s;cnd:pre:2s; +aiderait aider ver 688.71 158.65 7.82 3.58 cnd:pre:3s; +aideras aider ver 688.71 158.65 3.29 0.81 ind:fut:2s; +aiderez aider ver 688.71 158.65 2.18 0.54 ind:fut:2p; +aideriez aider ver 688.71 158.65 0.96 0.20 cnd:pre:2p; +aiderions aider ver 688.71 158.65 0.02 0.07 cnd:pre:1p; +aiderons aider ver 688.71 158.65 1.47 0.14 ind:fut:1p; +aideront aider ver 688.71 158.65 3.19 0.74 ind:fut:3p; +aide_soignant aide_soignant nom f p 0.40 0.27 0.00 0.14 +aide_soignant aide_soignant nom m p 0.40 0.27 0.08 0.00 +aides aider ver 688.71 158.65 19.22 1.49 ind:pre:2s;sub:pre:2s; +aidez aider ver 688.71 158.65 64.36 2.77 imp:pre:2p;ind:pre:2p; +aidiez aider ver 688.71 158.65 2.21 0.20 ind:imp:2p;sub:pre:2p; +aidions aider ver 688.71 158.65 0.14 0.27 ind:imp:1p; +aidons aider ver 688.71 158.65 1.75 0.47 imp:pre:1p;ind:pre:1p; +aidât aider ver 688.71 158.65 0.00 0.54 sub:imp:3s; +aidèrent aider ver 688.71 158.65 0.03 1.76 ind:pas:3p; +aidé aider ver m s 688.71 158.65 34.74 15.61 par:pas; +aidée aider ver f s 688.71 158.65 8.64 4.80 par:pas; +aidées aider ver f p 688.71 158.65 0.62 0.34 par:pas; +aidés aider ver m p 688.71 158.65 5.13 3.04 par:pas; +aie avoir aux 18559.23 12800.81 31.75 21.69 sub:pre:1s; +aient avoir aux 18559.23 12800.81 12.67 19.80 sub:pre:3p; +aies avoir aux 18559.23 12800.81 22.71 4.93 sub:pre:2s; +aigle aigle nom s 6.90 11.35 5.50 7.91 +aiglefin aiglefin nom m s 0.00 0.07 0.00 0.07 +aigles aigle nom p 6.90 11.35 1.40 3.45 +aiglon aiglon nom m s 0.47 0.95 0.42 0.68 +aiglons aiglon nom m p 0.47 0.95 0.05 0.27 +aigre_doux aigre_doux adj f s 0.29 1.08 0.08 0.54 +aigre_doux aigre_doux adj m 0.29 1.08 0.20 0.34 +aigre aigre adj s 0.55 10.47 0.42 8.38 +aigrelet aigrelet adj m s 0.14 3.58 0.00 1.35 +aigrelets aigrelet adj m p 0.14 3.58 0.14 0.20 +aigrelette aigrelet adj f s 0.14 3.58 0.01 1.76 +aigrelettes aigrelet adj f p 0.14 3.58 0.00 0.27 +aigrement aigrement adv 0.00 1.42 0.00 1.42 +aigre_douce aigre_douce adj f p 0.01 0.20 0.01 0.20 +aigre_doux aigre_doux adj m p 0.29 1.08 0.01 0.20 +aigres aigre adj p 0.55 10.47 0.13 2.09 +aigrette aigrette nom f s 0.72 2.64 0.02 1.22 +aigrettes aigrette nom f p 0.72 2.64 0.70 1.42 +aigreur aigreur nom f s 0.56 4.32 0.21 2.91 +aigreurs aigreur nom f p 0.56 4.32 0.35 1.42 +aigri aigri adj m s 1.06 1.08 0.79 0.54 +aigrie aigri adj f s 1.06 1.08 0.24 0.20 +aigries aigri adj f p 1.06 1.08 0.02 0.00 +aigrir aigrir ver 0.65 2.09 0.01 0.41 inf; +aigrirent aigrir ver 0.65 2.09 0.00 0.14 ind:pas:3p; +aigris aigri nom m p 0.40 0.54 0.17 0.20 +aigrissaient aigrir ver 0.65 2.09 0.00 0.14 ind:imp:3p; +aigrissait aigrir ver 0.65 2.09 0.00 0.14 ind:imp:3s; +aigrissent aigrir ver 0.65 2.09 0.00 0.07 ind:pre:3p; +aigrit aigrir ver 0.65 2.09 0.10 0.07 ind:pre:3s;ind:pas:3s; +aigu aigu adj m s 4.46 32.09 1.75 11.96 +aiguade aiguade nom f s 0.00 0.14 0.00 0.14 +aiguail aiguail nom m s 0.00 0.27 0.00 0.27 +aigue_marine aigue_marine nom f s 0.00 0.81 0.00 0.47 +aigue aiguer ver 0.17 0.00 0.17 0.00 ind:pre:3s; +aigue_marine aigue_marine nom f p 0.00 0.81 0.00 0.34 +aiguilla aiguiller ver 1.13 3.24 0.00 0.34 ind:pas:3s; +aiguillage aiguillage nom m s 0.60 2.16 0.48 1.42 +aiguillages aiguillage nom m p 0.60 2.16 0.12 0.74 +aiguillant aiguiller ver 1.13 3.24 0.00 0.20 par:pre; +aiguillat aiguillat nom m s 0.02 0.00 0.02 0.00 +aiguille aiguille nom f s 14.34 34.19 10.40 18.38 +aiguiller aiguiller ver 1.13 3.24 0.21 0.27 inf; +aiguilles aiguille nom f p 14.34 34.19 3.94 15.81 +aiguillettes aiguillette nom f p 0.07 0.20 0.07 0.20 +aiguilleur aiguilleur nom m s 0.35 0.41 0.29 0.34 +aiguilleurs aiguilleur nom m p 0.35 0.41 0.06 0.07 +aiguillon aiguillon nom m s 0.36 2.50 0.35 2.09 +aiguillonnaient aiguillonner ver 0.17 1.55 0.00 0.14 ind:imp:3p; +aiguillonnait aiguillonner ver 0.17 1.55 0.00 0.20 ind:imp:3s; +aiguillonnant aiguillonner ver 0.17 1.55 0.00 0.07 par:pre; +aiguillonnante aiguillonnant adj f s 0.00 0.07 0.00 0.07 +aiguillonne aiguillonner ver 0.17 1.55 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aiguillonnent aiguillonner ver 0.17 1.55 0.10 0.07 ind:pre:3p; +aiguillonner aiguillonner ver 0.17 1.55 0.03 0.27 inf; +aiguillonné aiguillonner ver m s 0.17 1.55 0.00 0.34 par:pas; +aiguillonnée aiguillonner ver f s 0.17 1.55 0.00 0.14 par:pas; +aiguillonnées aiguillonner ver f p 0.17 1.55 0.00 0.07 par:pas; +aiguillonnés aiguillonner ver m p 0.17 1.55 0.01 0.20 par:pas; +aiguillons aiguillon nom m p 0.36 2.50 0.01 0.41 +aiguillé aiguiller ver m s 1.13 3.24 0.22 0.20 par:pas; +aiguillée aiguiller ver f s 1.13 3.24 0.04 0.14 par:pas; +aiguillées aiguiller ver f p 1.13 3.24 0.00 0.14 par:pas; +aiguillés aiguiller ver m p 1.13 3.24 0.03 0.00 par:pas; +aiguisa aiguiser ver 2.62 7.36 0.00 0.20 ind:pas:3s; +aiguisai aiguiser ver 2.62 7.36 0.00 0.07 ind:pas:1s; +aiguisaient aiguiser ver 2.62 7.36 0.00 0.34 ind:imp:3p; +aiguisait aiguiser ver 2.62 7.36 0.01 1.01 ind:imp:3s; +aiguisant aiguiser ver 2.62 7.36 0.01 0.61 par:pre; +aiguisas aiguiser ver 2.62 7.36 0.00 0.07 ind:pas:2s; +aiguise aiguiser ver 2.62 7.36 0.53 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aiguisent aiguiser ver 2.62 7.36 0.23 0.41 ind:pre:3p; +aiguiser aiguiser ver 2.62 7.36 0.84 1.62 inf; +aiguisera aiguiser ver 2.62 7.36 0.01 0.00 ind:fut:3s; +aiguiserai aiguiser ver 2.62 7.36 0.00 0.07 ind:fut:1s; +aiguiseur aiguiseur nom m s 0.04 0.00 0.04 0.00 +aiguisez aiguiser ver 2.62 7.36 0.25 0.00 imp:pre:2p;ind:pre:2p; +aiguisoir aiguisoir nom m s 0.01 0.07 0.01 0.07 +aiguisons aiguiser ver 2.62 7.36 0.03 0.00 imp:pre:1p; +aiguisèrent aiguiser ver 2.62 7.36 0.00 0.20 ind:pas:3p; +aiguisé aiguisé adj m s 1.47 1.69 0.66 0.34 +aiguisée aiguisé adj f s 1.47 1.69 0.39 0.61 +aiguisées aiguisé adj f p 1.47 1.69 0.11 0.41 +aiguisés aiguisé adj m p 1.47 1.69 0.31 0.34 +aiguière aiguière nom f s 0.00 0.27 0.00 0.27 +aigus aigu adj m p 4.46 32.09 0.31 5.00 +aiguë aigu adj f s 4.46 32.09 2.13 11.49 +aiguës aigu adj f p 4.46 32.09 0.27 3.65 +ail ail nom m s 9.14 7.97 9.14 7.97 +aile aile nom f s 33.45 60.47 15.00 20.47 +aileron aileron nom m s 0.79 1.49 0.42 0.41 +ailerons aileron nom m p 0.79 1.49 0.37 1.08 +ailes aile nom f p 33.45 60.47 18.45 40.00 +ailette ailette nom f s 0.03 0.54 0.01 0.14 +ailettes ailette nom f p 0.03 0.54 0.02 0.41 +ailier ailier nom m s 1.40 1.35 1.35 1.22 +ailiers ailier nom m p 1.40 1.35 0.05 0.14 +aillais ailler ver 0.20 0.61 0.14 0.00 ind:imp:1s; +aille aller ver 9992.78 2854.93 89.81 36.55 sub:pre:1s;sub:pre:3s; +aillent aller ver 9992.78 2854.93 5.93 4.86 sub:pre:3p; +ailler ailler ver 0.20 0.61 0.01 0.00 inf; +ailles aller ver 9992.78 2854.93 14.98 2.43 sub:pre:2s; +ailleurs ailleurs adv_sup 128.74 346.35 128.74 346.35 +aillions ailler ver 0.20 0.61 0.03 0.00 ind:imp:1p; +aillons ailler ver 0.20 0.61 0.01 0.00 ind:pre:1p; +aillé ailler ver m s 0.20 0.61 0.01 0.27 par:pas; +aillée ailler ver f s 0.20 0.61 0.00 0.07 par:pas; +aillés ailler ver m p 0.20 0.61 0.00 0.27 par:pas; +ailé ailé adj m s 1.19 3.04 0.71 1.42 +ailée ailer ver f s 0.21 0.74 0.16 0.20 par:pas; +ailées ailé adj f p 1.19 3.04 0.07 0.27 +ailés ailé adj m p 1.19 3.04 0.29 0.54 +aima aimer ver 1655.04 795.61 0.41 1.69 ind:pas:3s; +aimable aimable adj s 23.41 29.26 21.98 24.59 +aimablement aimablement adv 0.52 3.85 0.52 3.85 +aimables aimable adj p 23.41 29.26 1.43 4.66 +aimai aimer ver 1655.04 795.61 0.20 0.81 ind:pas:1s; +aimaient aimer ver 1655.04 795.61 6.20 16.42 ind:imp:3p; +aimais aimer ver 1655.04 795.61 58.07 57.16 ind:imp:1s;ind:imp:2s; +aimait aimer ver 1655.04 795.61 49.57 128.72 ind:imp:3s; +aimant aimer ver 1655.04 795.61 2.60 3.92 par:pre; +aimantaient aimanter ver 0.35 2.30 0.00 0.14 ind:imp:3p; +aimantait aimanter ver 0.35 2.30 0.00 0.07 ind:imp:3s; +aimantation aimantation nom f s 0.00 0.47 0.00 0.47 +aimante aimant adj f s 2.86 2.70 1.37 1.42 +aimanter aimanter ver 0.35 2.30 0.02 0.14 inf; +aimantes aimant adj f p 2.86 2.70 0.07 0.14 +aimants aimant nom m p 2.31 2.97 0.61 0.27 +aimanté aimanter ver m s 0.35 2.30 0.14 0.34 par:pas; +aimantée aimanter ver f s 0.35 2.30 0.04 0.54 par:pas; +aimantées aimanter ver f p 0.35 2.30 0.12 0.20 par:pas; +aimantés aimanter ver m p 0.35 2.30 0.02 0.41 par:pas; +aimasse aimer ver 1655.04 795.61 0.02 0.00 sub:imp:1s; +aimassent aimer ver 1655.04 795.61 0.00 0.20 sub:imp:3p; +aimassions aimer ver 1655.04 795.61 0.00 0.07 sub:imp:1p; +aime aimer ver 1655.04 795.61 751.29 257.57 imp:pre:2s;ind:pre:1s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +aiment aimer ver 1655.04 795.61 48.46 26.96 ind:pre:3p;sub:pre:3p; +aimer aimer ver 1655.04 795.61 90.41 84.46 inf;;inf;;inf;;inf;;inf;; +aimera aimer ver 1655.04 795.61 8.10 2.57 ind:fut:3s; +aimerai aimer ver 1655.04 795.61 13.99 2.97 ind:fut:1s; +aimeraient aimer ver 1655.04 795.61 5.08 2.03 cnd:pre:3p; +aimerais aimer ver 1655.04 795.61 227.66 36.01 cnd:pre:1s;cnd:pre:2s; +aimerait aimer ver 1655.04 795.61 21.70 12.43 cnd:pre:3s; +aimeras aimer ver 1655.04 795.61 4.30 1.28 ind:fut:2s; +aimerez aimer ver 1655.04 795.61 2.71 1.01 ind:fut:2p; +aimeriez aimer ver 1655.04 795.61 8.88 0.88 cnd:pre:2p; +aimerions aimer ver 1655.04 795.61 7.21 1.01 cnd:pre:1p; +aimerons aimer ver 1655.04 795.61 0.46 0.27 ind:fut:1p; +aimeront aimer ver 1655.04 795.61 1.32 0.34 ind:fut:3p; +aimes aimer ver 1655.04 795.61 170.38 25.61 ind:pre:2s;sub:pre:2s; +aimeuse aimeur nom f s 0.00 0.07 0.00 0.07 +aimez aimer ver 1655.04 795.61 62.25 18.38 imp:pre:2p;ind:pre:2p; +aimiez aimer ver 1655.04 795.61 6.92 2.64 ind:imp:2p;sub:pre:2p; +aimions aimer ver 1655.04 795.61 2.03 6.55 ind:imp:1p;sub:pre:1p; +aimâmes aimer ver 1655.04 795.61 0.00 0.14 ind:pas:1p; +aimons aimer ver 1655.04 795.61 11.58 6.22 imp:pre:1p;ind:pre:1p; +aimât aimer ver 1655.04 795.61 0.10 2.03 sub:imp:3s; +aimâtes aimer ver 1655.04 795.61 0.03 0.00 ind:pas:2p; +aimèrent aimer ver 1655.04 795.61 0.16 0.47 ind:pas:3p; +aimé aimer ver m s 1655.04 795.61 75.92 71.96 par:pas; +aimée aimer ver f s 1655.04 795.61 12.66 14.80 par:pas; +aimées aimer ver f p 1655.04 795.61 0.43 1.62 par:pas; +aimés aimer ver m p 1655.04 795.61 3.94 6.42 par:pas; +aine aine nom f s 0.64 2.77 0.64 2.64 +aines aine nom f p 0.64 2.77 0.00 0.14 +ains ains con 0.02 0.00 0.02 0.00 +ainsi ainsi adv_sup 207.68 469.46 207.68 469.46 +air_air air_air adj m 0.09 0.00 0.09 0.00 +air_mer air_mer adj 0.02 0.00 0.02 0.00 +air_sol air_sol adj m p 0.13 0.00 0.13 0.00 +air_bag air_bag nom m s 0.02 0.00 0.02 0.00 +air air nom m s 485.18 690.81 473.50 661.01 +airain airain nom m s 0.17 1.69 0.17 1.69 +airbag airbag nom m s 1.11 0.00 0.44 0.00 +airbags airbag nom m p 1.11 0.00 0.67 0.00 +airbus airbus nom m 0.01 0.00 0.01 0.00 +aire aire nom f s 5.54 5.14 4.55 4.46 +airedale airedale nom m s 0.01 0.00 0.01 0.00 +airelle airelle nom f s 1.12 0.41 0.08 0.07 +airelles airelle nom f p 1.12 0.41 1.04 0.34 +aires aire nom f p 5.54 5.14 0.99 0.68 +airs air nom m p 485.18 690.81 11.68 29.80 +ais ais nom m 10.14 0.47 10.14 0.47 +aisance aisance nom f s 1.50 15.41 1.44 15.20 +aisances aisance nom f p 1.50 15.41 0.06 0.20 +aise aise nom f s 32.73 52.64 31.64 50.81 +aises aise nom f p 32.73 52.64 1.09 1.82 +aisseau aisseau nom m s 0.01 0.00 0.01 0.00 +aisselle aisselle nom f s 1.29 8.99 0.54 3.72 +aisselles aisselle nom f p 1.29 8.99 0.75 5.27 +aisé aisé adj m s 3.03 7.77 1.44 3.11 +aisée aisé adj f s 3.03 7.77 1.04 2.91 +aisées aisé adj f p 3.03 7.77 0.22 0.68 +aisément aisément adv 2.51 11.69 2.51 11.69 +aisés aisé adj m p 3.03 7.77 0.33 1.08 +ait avoir aux 18559.23 12800.81 95.36 99.53 sub:pre:3s; +aixois aixois nom m 0.00 0.14 0.00 0.14 +ajaccienne ajaccienne nom f s 0.00 0.07 0.00 0.07 +ajax ajax nom m s 0.00 0.07 0.00 0.07 +ajistes ajiste adj f p 0.00 0.07 0.00 0.07 +ajointer ajointer ver 0.00 0.20 0.00 0.07 inf; +ajointée ajointer ver f s 0.00 0.20 0.00 0.14 par:pas; +ajonc ajonc nom m s 0.00 1.69 0.00 0.20 +ajoncs ajonc nom m p 0.00 1.69 0.00 1.49 +ajouraient ajourer ver 0.00 1.42 0.00 0.07 ind:imp:3p; +ajourait ajourer ver 0.00 1.42 0.00 0.14 ind:imp:3s; +ajourant ajourer ver 0.00 1.42 0.00 0.14 par:pre; +ajourna ajourner ver 1.48 0.88 0.00 0.07 ind:pas:3s; +ajournait ajourner ver 1.48 0.88 0.00 0.07 ind:imp:3s; +ajourne ajourner ver 1.48 0.88 0.19 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ajournement ajournement nom m s 0.47 0.14 0.45 0.07 +ajournements ajournement nom m p 0.47 0.14 0.02 0.07 +ajourner ajourner ver 1.48 0.88 0.28 0.47 inf; +ajournez ajourner ver 1.48 0.88 0.01 0.00 imp:pre:2p; +ajourné ajourner ver m s 1.48 0.88 0.27 0.14 par:pas; +ajournée ajourner ver f s 1.48 0.88 0.71 0.14 par:pas; +ajournés ajourner ver m p 1.48 0.88 0.01 0.00 par:pas; +ajours ajour nom m p 0.00 0.14 0.00 0.14 +ajouré ajouré adj m s 0.02 2.70 0.00 0.81 +ajourée ajouré adj f s 0.02 2.70 0.00 0.81 +ajourées ajouré adj f p 0.02 2.70 0.02 0.68 +ajourés ajouré adj m p 0.02 2.70 0.00 0.41 +ajout ajout nom m s 0.94 0.47 0.73 0.20 +ajouta ajouter ver 38.88 224.66 0.39 85.00 ind:pas:3s; +ajoutai ajouter ver 38.88 224.66 0.04 5.34 ind:pas:1s; +ajoutaient ajouter ver 38.88 224.66 0.09 4.26 ind:imp:3p; +ajoutais ajouter ver 38.88 224.66 0.19 1.42 ind:imp:1s;ind:imp:2s; +ajoutait ajouter ver 38.88 224.66 0.35 22.57 ind:imp:3s; +ajoutant ajouter ver 38.88 224.66 0.63 11.08 par:pre; +ajoutassent ajouter ver 38.88 224.66 0.00 0.07 sub:imp:3p; +ajoute ajouter ver 38.88 224.66 8.34 29.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ajoutent ajouter ver 38.88 224.66 0.79 1.89 ind:pre:3p; +ajouter ajouter ver 38.88 224.66 15.45 33.85 imp:pre:2p;inf; +ajoutera ajouter ver 38.88 224.66 0.50 0.68 ind:fut:3s; +ajouterai ajouter ver 38.88 224.66 1.09 1.22 ind:fut:1s; +ajouteraient ajouter ver 38.88 224.66 0.00 0.27 cnd:pre:3p; +ajouterais ajouter ver 38.88 224.66 0.65 0.41 cnd:pre:1s;cnd:pre:2s; +ajouterait ajouter ver 38.88 224.66 0.27 0.74 cnd:pre:3s; +ajouteras ajouter ver 38.88 224.66 0.01 0.00 ind:fut:2s; +ajouterez ajouter ver 38.88 224.66 0.02 0.41 ind:fut:2p; +ajouterons ajouter ver 38.88 224.66 0.08 0.00 ind:fut:1p; +ajouteront ajouter ver 38.88 224.66 0.03 0.41 ind:fut:3p; +ajoutes ajouter ver 38.88 224.66 0.70 0.61 ind:pre:2s; +ajoutez ajouter ver 38.88 224.66 3.09 2.30 imp:pre:2p;ind:pre:2p; +ajoutiez ajouter ver 38.88 224.66 0.03 0.14 ind:imp:2p; +ajoutions ajouter ver 38.88 224.66 0.14 0.14 ind:imp:1p; +ajoutons ajouter ver 38.88 224.66 0.57 0.68 imp:pre:1p;ind:pre:1p; +ajoutât ajouter ver 38.88 224.66 0.00 0.27 sub:imp:3s; +ajouts ajout nom m p 0.94 0.47 0.21 0.27 +ajoutèrent ajouter ver 38.88 224.66 0.27 0.68 ind:pas:3p; +ajouté ajouter ver m s 38.88 224.66 4.42 18.99 imp:pre:2s;par:pas;par:pas; +ajoutée ajouter ver f s 38.88 224.66 0.43 0.95 par:pas; +ajoutées ajouter ver f p 38.88 224.66 0.15 0.74 par:pas; +ajoutés ajouter ver m p 38.88 224.66 0.17 0.41 par:pas; +ajusta ajuster ver 4.88 10.41 0.01 2.50 ind:pas:3s; +ajustable ajustable adj s 0.07 0.07 0.07 0.07 +ajustables ajustable adj p 0.07 0.07 0.01 0.00 +ajustage ajustage nom m s 0.01 0.14 0.01 0.14 +ajustaient ajuster ver 4.88 10.41 0.02 0.07 ind:imp:3p; +ajustais ajuster ver 4.88 10.41 0.02 0.00 ind:imp:1s;ind:imp:2s; +ajustait ajuster ver 4.88 10.41 0.02 0.81 ind:imp:3s; +ajustant ajuster ver 4.88 10.41 0.08 1.01 par:pre; +ajuste ajuster ver 4.88 10.41 1.68 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ajustement ajustement nom m s 0.85 0.88 0.40 0.61 +ajustements ajustement nom m p 0.85 0.88 0.46 0.27 +ajustent ajuster ver 4.88 10.41 0.10 0.27 ind:pre:3p; +ajuster ajuster ver 4.88 10.41 1.77 1.76 inf; +ajusterai ajuster ver 4.88 10.41 0.01 0.07 ind:fut:1s; +ajusteur ajusteur nom m s 0.62 0.61 0.62 0.54 +ajusteurs ajusteur nom m p 0.62 0.61 0.00 0.07 +ajustez ajuster ver 4.88 10.41 0.43 0.00 imp:pre:2p;ind:pre:2p; +ajustons ajuster ver 4.88 10.41 0.04 0.07 imp:pre:1p;ind:pre:1p; +ajustèrent ajuster ver 4.88 10.41 0.00 0.07 ind:pas:3p; +ajusté ajusté adj m s 0.42 3.24 0.28 1.22 +ajustée ajusté adj f s 0.42 3.24 0.04 1.08 +ajustées ajuster ver f p 4.88 10.41 0.15 0.34 par:pas; +ajusture ajusture nom f s 0.00 0.07 0.00 0.07 +ajustés ajuster ver m p 4.88 10.41 0.28 0.41 par:pas; +ajutage ajutage nom m s 0.10 0.00 0.10 0.00 +akkadien akkadien nom m s 0.03 0.00 0.03 0.00 +akkadienne akkadienne adj f s 0.01 0.00 0.01 0.00 +ako ako nom m s 0.08 0.00 0.08 0.00 +akvavit akvavit nom m s 0.01 0.20 0.01 0.20 +al_dente al_dente adv 0.40 0.14 0.40 0.14 +alabandines alabandine nom f p 0.00 0.07 0.00 0.07 +alacrité alacrité nom f s 0.01 0.61 0.01 0.61 +alain alain nom s 0.14 0.00 0.14 0.00 +alaire alaire adj s 0.14 0.00 0.14 0.00 +alaise alaise nom f s 0.02 0.07 0.02 0.07 +alambic alambic nom m s 0.70 1.22 0.65 1.08 +alambics alambic nom m p 0.70 1.22 0.05 0.14 +alambiqué alambiquer ver m s 0.04 0.00 0.02 0.00 par:pas; +alambiquée alambiqué adj f s 0.09 0.14 0.01 0.00 +alambiquées alambiqué adj f p 0.09 0.14 0.04 0.07 +alambiqués alambiqué adj m p 0.09 0.14 0.03 0.07 +alangui alangui adj m s 0.04 2.30 0.02 0.95 +alanguie alanguir ver f s 0.13 1.89 0.12 0.34 par:pas; +alanguies alangui adj f p 0.04 2.30 0.00 0.20 +alanguir alanguir ver 0.13 1.89 0.00 0.20 inf; +alanguis alangui adj m p 0.04 2.30 0.00 0.27 +alanguissaient alanguir ver 0.13 1.89 0.00 0.14 ind:imp:3p; +alanguissait alanguir ver 0.13 1.89 0.01 0.20 ind:imp:3s; +alanguissant alanguir ver 0.13 1.89 0.00 0.14 par:pre; +alanguissante alanguissant adj f s 0.00 0.07 0.00 0.07 +alanguissement alanguissement nom m s 0.00 0.47 0.00 0.34 +alanguissements alanguissement nom m p 0.00 0.47 0.00 0.14 +alanguissent alanguir ver 0.13 1.89 0.00 0.07 ind:pre:3p; +alanguit alanguir ver 0.13 1.89 0.00 0.34 ind:pre:3s;ind:pas:3s; +alarma alarmer ver 2.45 6.28 0.14 0.81 ind:pas:3s; +alarmai alarmer ver 2.45 6.28 0.00 0.07 ind:pas:1s; +alarmaient alarmer ver 2.45 6.28 0.00 0.07 ind:imp:3p; +alarmait alarmer ver 2.45 6.28 0.00 1.08 ind:imp:3s; +alarmant alarmant adj m s 1.54 2.84 1.12 0.81 +alarmante alarmant adj f s 1.54 2.84 0.22 0.68 +alarmantes alarmant adj f p 1.54 2.84 0.16 0.54 +alarmants alarmant adj m p 1.54 2.84 0.03 0.81 +alarme alarme nom f s 19.29 7.84 16.71 6.35 +alarmer alarmer ver 2.45 6.28 1.19 1.22 inf; +alarmeraient alarmer ver 2.45 6.28 0.01 0.00 cnd:pre:3p; +alarmerait alarmer ver 2.45 6.28 0.02 0.07 cnd:pre:3s; +alarmes alarme nom f p 19.29 7.84 2.58 1.49 +alarmez alarmer ver 2.45 6.28 0.41 0.07 imp:pre:2p;ind:pre:2p; +alarmisme alarmisme nom m s 0.00 0.07 0.00 0.07 +alarmiste alarmiste adj f s 0.24 0.27 0.19 0.00 +alarmistes alarmiste adj p 0.24 0.27 0.04 0.27 +alarmé alarmer ver m s 2.45 6.28 0.14 1.15 par:pas; +alarmée alarmer ver f s 2.45 6.28 0.13 0.54 par:pas; +alarmées alarmer ver f p 2.45 6.28 0.00 0.20 par:pas; +alarmés alarmer ver m p 2.45 6.28 0.03 0.41 par:pas; +alba alba nom f s 0.00 0.20 0.00 0.20 +albacore albacore nom m s 0.09 0.00 0.09 0.00 +albanais albanais adj m 0.68 1.28 0.39 0.74 +albanaise albanais adj f s 0.68 1.28 0.28 0.47 +albanaises albanais adj f p 0.68 1.28 0.00 0.07 +albanophone albanophone adj m s 0.01 0.00 0.01 0.00 +albatros albatros nom m 2.01 1.15 2.01 1.15 +albe albe nom m s 0.01 0.00 0.01 0.00 +albertine albertine nom f s 0.00 0.07 0.00 0.07 +albigeois albigeois adj m 0.00 0.14 0.00 0.14 +albigeois albigeois nom m 0.00 0.14 0.00 0.14 +albinisme albinisme nom m s 0.02 0.00 0.02 0.00 +albinos albinos adj 0.47 0.74 0.47 0.74 +alboche alboche nom s 0.00 0.07 0.00 0.07 +albâtre albâtre nom m s 0.57 3.11 0.57 2.97 +albâtres albâtre nom m p 0.57 3.11 0.00 0.14 +albène albène nom m s 0.00 0.07 0.00 0.07 +albugo albugo nom m s 0.00 0.07 0.00 0.07 +album album nom m s 11.29 18.38 9.36 13.31 +albumine albumine nom f s 0.19 0.14 0.17 0.14 +albumines albumine nom f p 0.19 0.14 0.02 0.00 +albumineuse albumineux adj f s 0.00 0.14 0.00 0.14 +albums album nom m p 11.29 18.38 1.93 5.07 +alcôve alcôve nom f s 0.84 4.59 0.79 4.32 +alcôves alcôve nom f p 0.84 4.59 0.05 0.27 +alcade alcade nom m s 0.30 0.20 0.30 0.20 +alcalde alcalde nom m s 0.05 0.00 0.05 0.00 +alcali alcali nom m s 0.11 0.27 0.08 0.27 +alcalin alcalin adj m s 0.24 0.14 0.09 0.07 +alcaline alcalin adj f s 0.24 0.14 0.08 0.00 +alcalines alcalin adj f p 0.24 0.14 0.03 0.00 +alcaliniser alcaliniser ver 0.02 0.00 0.02 0.00 inf; +alcalinité alcalinité nom f s 0.03 0.00 0.03 0.00 +alcalins alcalin adj m p 0.24 0.14 0.04 0.07 +alcalis alcali nom m p 0.11 0.27 0.03 0.00 +alcaloïde alcaloïde nom m s 0.16 0.00 0.16 0.00 +alcalose alcalose nom f s 0.02 0.00 0.02 0.00 +alcatraz alcatraz nom m 1.09 0.20 1.09 0.20 +alcazar alcazar nom m s 0.53 1.69 0.53 1.69 +alchimie alchimie nom f s 1.05 1.96 0.95 1.82 +alchimies alchimie nom f p 1.05 1.96 0.10 0.14 +alchimique alchimique adj s 0.02 1.15 0.02 0.81 +alchimiques alchimique adj f p 0.02 1.15 0.00 0.34 +alchimiste alchimiste nom s 2.87 2.84 2.65 2.16 +alchimistes alchimiste nom p 2.87 2.84 0.22 0.68 +alcibiade alcibiade nom m s 0.01 0.00 0.01 0.00 +alcool alcool nom m s 41.30 42.84 40.29 39.73 +alcoolique alcoolique adj s 3.73 2.16 3.54 1.55 +alcooliques alcoolique nom p 4.12 1.55 1.37 0.61 +alcoolise alcooliser ver 0.33 0.34 0.00 0.07 ind:pre:3s; +alcoolisme alcoolisme nom m s 1.84 0.95 1.84 0.95 +alcoolisé alcoolisé adj m s 0.60 1.55 0.31 0.47 +alcoolisée alcoolisé adj f s 0.60 1.55 0.04 0.20 +alcoolisées alcoolisé adj f p 0.60 1.55 0.23 0.68 +alcoolisés alcoolisé adj m p 0.60 1.55 0.01 0.20 +alcoolo alcoolo adj s 1.16 0.47 1.08 0.27 +alcoolos alcoolo nom p 1.40 0.88 0.41 0.20 +alcools alcool nom m p 41.30 42.84 1.00 3.11 +alcoolémie alcoolémie nom f s 0.58 0.20 0.58 0.20 +alcoomètre alcoomètre nom m s 0.00 0.07 0.00 0.07 +alcootest alcootest nom m s 0.31 0.20 0.31 0.20 +alcoran alcoran nom m s 0.00 0.07 0.00 0.07 +alcées alcée nom f p 0.00 0.07 0.00 0.07 +alcyon alcyon nom m s 0.13 0.74 0.13 0.61 +alcyons alcyon nom m p 0.13 0.74 0.00 0.14 +alde alde nom m s 0.22 0.00 0.22 0.00 +alderman alderman nom m s 0.14 0.00 0.14 0.00 +aldol aldol nom m s 0.05 0.00 0.05 0.00 +aldéhyde aldéhyde nom m s 0.01 0.07 0.01 0.07 +ale ale nom f s 2.10 0.14 2.10 0.14 +alea_jacta_est alea_jacta_est adv 0.30 0.07 0.30 0.07 +alençonnais alençonnais adj m s 0.00 0.27 0.00 0.07 +alençonnaise alençonnais adj f s 0.00 0.27 0.00 0.20 +alenti alentir ver m s 0.00 0.47 0.00 0.14 par:pas; +alentie alentir ver f s 0.00 0.47 0.00 0.07 par:pas; +alenties alentir ver f p 0.00 0.47 0.00 0.07 par:pas; +alentis alentir ver m p 0.00 0.47 0.00 0.20 ind:pre:1s;par:pas; +alentour alentour adv_sup 1.63 8.92 1.63 8.92 +alentours alentour nom_sup m p 4.77 9.12 4.77 9.12 +aleph aleph nom m 0.05 0.41 0.05 0.41 +alerta alerter ver 6.40 12.91 0.04 0.88 ind:pas:3s; +alertait alerter ver 6.40 12.91 0.03 0.61 ind:imp:3s; +alertant alerter ver 6.40 12.91 0.17 0.14 par:pre; +alerte alerte ono 5.41 0.81 5.41 0.81 +alertement alertement adv 0.00 0.27 0.00 0.27 +alertent alerter ver 6.40 12.91 0.06 0.00 ind:pre:3p; +alerter alerter ver 6.40 12.91 1.61 2.91 inf; +alertera alerter ver 6.40 12.91 0.12 0.00 ind:fut:3s; +alerterai alerter ver 6.40 12.91 0.20 0.00 ind:fut:1s; +alerterais alerter ver 6.40 12.91 0.02 0.00 cnd:pre:1s; +alerterait alerter ver 6.40 12.91 0.05 0.27 cnd:pre:3s; +alerterez alerter ver 6.40 12.91 0.01 0.00 ind:fut:2p; +alerteront alerter ver 6.40 12.91 0.14 0.00 ind:fut:3p; +alertes alerte nom f p 13.45 13.11 0.78 2.64 +alertez alerter ver 6.40 12.91 1.13 0.07 imp:pre:2p;ind:pre:2p; +alertions alerter ver 6.40 12.91 0.00 0.07 ind:imp:1p; +alertons alerter ver 6.40 12.91 0.09 0.00 imp:pre:1p;ind:pre:1p; +alertât alerter ver 6.40 12.91 0.00 0.07 sub:imp:3s; +alertèrent alerter ver 6.40 12.91 0.01 0.14 ind:pas:3p; +alerté alerter ver m s 6.40 12.91 0.90 3.65 par:pas; +alertée alerter ver f s 6.40 12.91 0.25 1.22 par:pas; +alertées alerter ver f p 6.40 12.91 0.01 0.14 par:pas; +alertés alerter ver m p 6.40 12.91 0.34 1.62 par:pas; +alevin alevin nom m s 0.02 0.68 0.01 0.07 +alevins alevin nom m p 0.02 0.68 0.01 0.61 +alexandra alexandra nom m s 0.51 0.47 0.51 0.47 +alexandrin alexandrin nom m s 0.82 1.89 0.54 0.41 +alexandrine alexandrin adj f s 0.37 0.14 0.00 0.07 +alexandrines alexandrin adj f p 0.37 0.14 0.10 0.00 +alexandrins alexandrin nom m p 0.82 1.89 0.29 1.49 +alexie alexie nom f s 0.01 0.00 0.01 0.00 +alexithymie alexithymie nom m s 0.03 0.00 0.03 0.00 +alezan alezan nom m s 0.12 1.35 0.11 1.01 +alezane alezan adj f s 0.04 2.36 0.02 1.82 +alezanes alezan adj f p 0.04 2.36 0.00 0.07 +alezans alezan nom m p 0.12 1.35 0.01 0.34 +alfa alfa nom m s 0.10 1.01 0.10 0.88 +alfas alfa nom m p 0.10 1.01 0.00 0.14 +alfénides alfénide nom m p 0.00 0.07 0.00 0.07 +algarade algarade nom f s 0.02 1.96 0.02 1.62 +algarades algarade nom f p 0.02 1.96 0.00 0.34 +algie algie nom f s 0.27 0.00 0.27 0.00 +algonquin algonquin nom m s 0.09 0.54 0.09 0.47 +algonquines algonquin nom f p 0.09 0.54 0.00 0.07 +algorithme algorithme nom m s 0.72 0.00 0.51 0.00 +algorithmes algorithme nom m p 0.72 0.00 0.21 0.00 +algorithmique algorithmique adj s 0.13 0.07 0.13 0.07 +algèbre algèbre nom f s 1.37 2.03 1.37 2.03 +algébrique algébrique adj s 0.14 0.54 0.11 0.27 +algébriquement algébriquement adv 0.00 0.07 0.00 0.07 +algébriques algébrique adj p 0.14 0.54 0.03 0.27 +algébriste algébriste nom s 0.00 0.14 0.00 0.07 +algébristes algébriste nom p 0.00 0.14 0.00 0.07 +algue algue nom f s 2.66 12.03 0.29 1.62 +algues algue nom f p 2.66 12.03 2.36 10.41 +algérien algérien adj m s 0.83 7.43 0.46 3.18 +algérienne algérien adj f s 0.83 7.43 0.25 2.03 +algériennes algérien adj f p 0.83 7.43 0.01 0.74 +algériens algérien nom m p 0.79 5.81 0.34 2.91 +algérois algérois adj m 0.00 0.74 0.00 0.61 +algéroise algérois adj f s 0.00 0.74 0.00 0.14 +alhambra alhambra nom f s 0.00 1.76 0.00 1.76 +alias alias adv_sup 5.45 3.85 5.45 3.85 +alibi alibi nom m s 11.13 6.82 10.28 5.47 +alibis alibi nom m p 11.13 6.82 0.85 1.35 +alidade alidade nom f s 0.00 0.07 0.00 0.07 +aligna aligner ver 7.80 26.69 0.00 0.61 ind:pas:3s; +alignaient aligner ver 7.80 26.69 0.05 5.07 ind:imp:3p; +alignais aligner ver 7.80 26.69 0.11 0.27 ind:imp:1s;ind:imp:2s; +alignait aligner ver 7.80 26.69 0.06 1.89 ind:imp:3s; +alignant aligner ver 7.80 26.69 0.08 0.41 par:pre; +aligne aligner ver 7.80 26.69 1.48 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alignement alignement nom m s 1.68 5.14 1.66 4.12 +alignements alignement nom m p 1.68 5.14 0.02 1.01 +alignent aligner ver 7.80 26.69 0.46 2.30 ind:pre:3p; +aligner aligner ver 7.80 26.69 1.61 3.78 inf; +alignera aligner ver 7.80 26.69 0.03 0.07 ind:fut:3s; +aligneraient aligner ver 7.80 26.69 0.02 0.07 cnd:pre:3p; +alignerez aligner ver 7.80 26.69 0.02 0.00 ind:fut:2p; +alignerons aligner ver 7.80 26.69 0.02 0.00 ind:fut:1p; +aligneront aligner ver 7.80 26.69 0.19 0.07 ind:fut:3p; +alignes aligner ver 7.80 26.69 0.19 0.20 ind:pre:2s; +alignez aligner ver 7.80 26.69 1.39 0.07 imp:pre:2p;ind:pre:2p; +alignons aligner ver 7.80 26.69 0.12 0.07 imp:pre:1p;ind:pre:1p; +alignèrent aligner ver 7.80 26.69 0.00 0.27 ind:pas:3p; +aligné aligner ver m s 7.80 26.69 0.47 0.88 par:pas; +alignée aligner ver f s 7.80 26.69 0.19 0.61 par:pas; +alignées aligner ver f p 7.80 26.69 0.48 3.58 par:pas; +alignés aligner ver m p 7.80 26.69 0.84 5.20 par:pas; +aligot aligot nom m s 0.03 0.00 0.03 0.00 +aligoté aligoté adj m s 0.00 0.20 0.00 0.20 +aligoté aligoté nom m s 0.00 0.20 0.00 0.20 +alim alim nom f s 0.21 0.00 0.21 0.00 +aliment aliment nom m s 4.67 6.62 1.11 1.76 +alimenta alimenter ver 6.24 8.92 0.00 0.20 ind:pas:3s; +alimentaient alimenter ver 6.24 8.92 0.02 0.95 ind:imp:3p; +alimentaire alimentaire adj s 5.85 4.80 4.50 2.57 +alimentaires alimentaire adj p 5.85 4.80 1.35 2.23 +alimentais alimenter ver 6.24 8.92 0.01 0.07 ind:imp:1s; +alimentait alimenter ver 6.24 8.92 0.31 1.01 ind:imp:3s; +alimentant alimenter ver 6.24 8.92 0.23 0.07 par:pre; +alimentation alimentation nom f s 5.64 4.19 5.59 4.19 +alimentations alimentation nom f p 5.64 4.19 0.05 0.00 +alimente alimenter ver 6.24 8.92 1.32 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alimentent alimenter ver 6.24 8.92 0.20 0.54 ind:pre:3p; +alimenter alimenter ver 6.24 8.92 2.62 3.85 inf; +alimentera alimenter ver 6.24 8.92 0.17 0.14 ind:fut:3s; +alimentez alimenter ver 6.24 8.92 0.08 0.00 imp:pre:2p;ind:pre:2p; +alimentons alimenter ver 6.24 8.92 0.04 0.00 imp:pre:1p;ind:pre:1p; +aliments aliment nom m p 4.67 6.62 3.56 4.86 +alimentèrent alimenter ver 6.24 8.92 0.00 0.07 ind:pas:3p; +alimenté alimenter ver m s 6.24 8.92 0.82 0.27 par:pas; +alimentée alimenter ver f s 6.24 8.92 0.20 0.81 par:pas; +alimentées alimenter ver f p 6.24 8.92 0.03 0.20 par:pas; +alimentés alimenter ver m p 6.24 8.92 0.19 0.20 par:pas; +alinéa alinéa nom m s 0.75 0.68 0.73 0.47 +alinéas alinéa nom m p 0.75 0.68 0.01 0.20 +alise alise nom f s 0.05 0.07 0.01 0.00 +alises alise nom f p 0.05 0.07 0.04 0.07 +alisier alisier nom m s 0.00 0.07 0.00 0.07 +alita aliter ver 0.90 1.49 0.01 0.27 ind:pas:3s; +alitai aliter ver 0.90 1.49 0.00 0.07 ind:pas:1s; +alitait aliter ver 0.90 1.49 0.00 0.07 ind:imp:3s; +alitement alitement nom m s 0.01 0.00 0.01 0.00 +aliter aliter ver 0.90 1.49 0.02 0.20 inf; +aliène aliéner ver 0.49 2.23 0.19 0.00 ind:pre:1s;ind:pre:3s; +alité aliter ver m s 0.90 1.49 0.55 0.41 par:pas; +alitée aliter ver f s 0.90 1.49 0.32 0.34 par:pas; +alitées aliter ver f p 0.90 1.49 0.00 0.14 par:pas; +aliéna aliéner ver 0.49 2.23 0.00 0.74 ind:pas:3s; +aliénant aliénant adj m s 0.14 1.22 0.14 0.14 +aliénante aliénant adj f s 0.14 1.22 0.00 1.08 +aliénation aliénation nom f s 1.19 1.49 1.19 1.49 +aliéner aliéner ver 0.49 2.23 0.12 0.54 inf; +aliénerait aliéner ver 0.49 2.23 0.00 0.07 cnd:pre:3s; +aliénerez aliéner ver 0.49 2.23 0.01 0.00 ind:fut:2p; +aliéniez aliéner ver 0.49 2.23 0.01 0.00 ind:imp:2p; +aliéniste aliéniste nom s 0.05 0.00 0.05 0.00 +aliénât aliéner ver 0.49 2.23 0.00 0.07 sub:imp:3s; +aliéné aliéné nom m s 2.28 0.61 0.54 0.14 +aliénée aliéné nom f s 2.28 0.61 0.19 0.00 +aliénées aliéner ver f p 0.49 2.23 0.00 0.07 par:pas; +aliénés aliéné nom m p 2.28 0.61 1.56 0.47 +alizé alizé nom m s 0.33 0.68 0.10 0.41 +alizés alizé nom m p 0.33 0.68 0.22 0.27 +alkali alkali nom m s 0.06 0.00 0.06 0.00 +all_right all_right adv 1.53 0.20 1.53 0.20 +allô allô ono 116.05 14.32 116.05 14.32 +alla aller ver 9992.78 2854.93 4.67 67.57 ind:pas:3s; +allai aller ver 9992.78 2854.93 1.12 18.92 ind:pas:1s; +allaient aller ver 9992.78 2854.93 16.55 80.88 ind:imp:3p; +allais aller ver 9992.78 2854.93 108.69 91.01 ind:imp:1s;ind:imp:2s; +allait aller ver 9992.78 2854.93 132.04 370.61 ind:imp:3s; +allaitais allaiter ver 1.73 1.55 0.14 0.00 ind:imp:1s; +allaitait allaiter ver 1.73 1.55 0.16 0.20 ind:imp:3s; +allaitant allaiter ver 1.73 1.55 0.01 0.14 par:pre; +allaitante allaitant adj f s 0.03 0.14 0.01 0.00 +allaitantes allaitant adj f p 0.03 0.14 0.01 0.07 +allaite allaiter ver 1.73 1.55 0.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allaitement allaitement nom m s 0.29 0.14 0.29 0.14 +allaitent allaiter ver 1.73 1.55 0.01 0.14 ind:pre:3p; +allaiter allaiter ver 1.73 1.55 0.60 0.61 inf; +allaiterait allaiter ver 1.73 1.55 0.00 0.07 cnd:pre:3s; +allaité allaiter ver m s 1.73 1.55 0.16 0.14 par:pas; +allaitée allaiter ver f s 1.73 1.55 0.12 0.00 par:pas; +allaités allaiter ver m p 1.73 1.55 0.00 0.20 par:pas; +allant aller ver 9992.78 2854.93 8.11 24.39 par:pre; +allante allant adj f s 0.86 4.19 0.10 0.00 +allas aller ver 9992.78 2854.93 0.00 0.07 ind:pas:2s; +allassent aller ver 9992.78 2854.93 0.00 0.20 sub:imp:3p; +allegretto allegretto adv 0.00 0.27 0.00 0.27 +allegro allegro adv 0.11 0.47 0.11 0.47 +allemagne allemagne nom f s 0.08 0.27 0.08 0.27 +allemand allemand adj m s 41.32 86.55 19.91 27.97 +allemande allemand adj f s 41.32 86.55 10.82 25.34 +allemandes allemand adj f p 41.32 86.55 2.69 12.97 +allemands allemand nom m p 49.08 91.55 30.66 61.42 +aller_retour aller_retour nom m s 2.33 2.43 1.83 2.36 +aller aller ver 9992.78 2854.93 816.76 368.04 inf;;inf;;inf;; +allergie allergie nom f s 5.00 0.61 3.12 0.61 +allergies allergie nom f p 5.00 0.61 1.88 0.00 +allergique allergique adj s 8.15 0.74 7.76 0.61 +allergiques allergique adj p 8.15 0.74 0.39 0.14 +allergologie allergologie nom f s 0.14 0.00 0.14 0.00 +allergologue allergologue nom s 0.03 0.00 0.03 0.00 +allergène allergène nom m s 0.08 0.00 0.04 0.00 +allergènes allergène nom m p 0.08 0.00 0.04 0.00 +aller_retour aller_retour nom m p 2.33 2.43 0.50 0.07 +allers aller nom m p 17.78 8.78 0.56 0.68 +allez aller ver 9992.78 2854.93 1414.85 155.54 imp:pre:2p;ind:pre:2p; +allia allier ver 4.62 7.97 0.01 0.14 ind:pas:3s; +alliacé alliacé adj m s 0.00 0.14 0.00 0.14 +alliage alliage nom m s 1.07 1.01 0.81 0.95 +alliages alliage nom m p 1.07 1.01 0.27 0.07 +alliait allier ver 4.62 7.97 0.01 0.81 ind:imp:3s; +alliance alliance nom f s 18.85 24.73 16.73 20.81 +alliances alliance nom f p 18.85 24.73 2.12 3.92 +alliant allier ver 4.62 7.97 0.25 0.27 par:pre; +allie allier ver 4.62 7.97 1.15 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allient allier ver 4.62 7.97 0.34 0.07 ind:pre:3p; +allier allier ver 4.62 7.97 1.14 0.88 inf; +alliera allier ver 4.62 7.97 0.02 0.00 ind:fut:3s; +allierait allier ver 4.62 7.97 0.02 0.00 cnd:pre:3s; +alliez aller ver 9992.78 2854.93 16.49 3.31 ind:imp:2p; +alligator alligator nom m s 2.80 0.47 1.63 0.20 +alligators alligator nom m p 2.80 0.47 1.17 0.27 +allions aller ver 9992.78 2854.93 8.62 23.65 ind:imp:1p; +alliât allier ver 4.62 7.97 0.00 0.07 sub:imp:3s; +allitératif allitératif adj m s 0.01 0.00 0.01 0.00 +allitération allitération nom f s 0.09 0.00 0.05 0.00 +allitérations allitération nom f p 0.09 0.00 0.03 0.00 +allié allié nom m s 11.64 55.34 2.40 4.05 +alliée allié nom f s 11.64 55.34 1.47 2.16 +alliées allié adj f p 2.66 25.68 0.64 9.53 +allium allium nom m s 0.02 0.00 0.02 0.00 +alliés allié nom m p 11.64 55.34 7.59 48.51 +allo allo ono 31.11 2.16 31.11 2.16 +allobarbital allobarbital nom m 0.00 0.07 0.00 0.07 +allobroges allobroge adj p 0.00 0.27 0.00 0.27 +alloc alloc nom f s 0.59 0.14 0.18 0.00 +allocataires allocataire nom p 0.03 0.00 0.03 0.00 +allocation allocation nom f s 3.16 1.55 1.35 0.41 +allocations allocation nom f p 3.16 1.55 1.81 1.15 +allochtone allochtone nom m s 0.01 0.00 0.01 0.00 +allocs alloc nom f p 0.59 0.14 0.41 0.14 +allocution allocution nom f s 0.33 4.12 0.31 3.11 +allocutions allocution nom f p 0.33 4.12 0.02 1.01 +allogreffe allogreffe nom f s 0.01 0.00 0.01 0.00 +allogènes allogène adj f p 0.00 0.07 0.00 0.07 +allâmes aller ver 9992.78 2854.93 0.06 3.45 ind:pas:1p; +allonge allonger ver 41.05 89.66 11.81 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +allongea allonger ver 41.05 89.66 0.12 8.99 ind:pas:3s; +allongeai allonger ver 41.05 89.66 0.02 0.88 ind:pas:1s; +allongeaient allonger ver 41.05 89.66 0.03 2.43 ind:imp:3p; +allongeais allonger ver 41.05 89.66 0.47 0.95 ind:imp:1s;ind:imp:2s; +allongeait allonger ver 41.05 89.66 0.32 6.35 ind:imp:3s; +allongeant allonger ver 41.05 89.66 0.40 3.58 par:pre; +allongement allongement nom m s 0.09 0.68 0.09 0.68 +allongent allonger ver 41.05 89.66 0.97 2.57 ind:pre:3p; +allongeâmes allonger ver 41.05 89.66 0.00 0.20 ind:pas:1p; +allongeons allonger ver 41.05 89.66 0.11 0.14 imp:pre:1p;ind:pre:1p; +allongeât allonger ver 41.05 89.66 0.00 0.07 sub:imp:3s; +allonger allonger ver 41.05 89.66 9.96 12.16 ind:pre:2p;inf; +allongera allonger ver 41.05 89.66 0.04 0.20 ind:fut:3s; +allongerai allonger ver 41.05 89.66 0.05 0.14 ind:fut:1s; +allongeraient allonger ver 41.05 89.66 0.01 0.07 cnd:pre:3p; +allongerais allonger ver 41.05 89.66 0.04 0.20 cnd:pre:1s;cnd:pre:2s; +allongerait allonger ver 41.05 89.66 0.00 0.47 cnd:pre:3s; +allongeras allonger ver 41.05 89.66 0.04 0.00 ind:fut:2s; +allonges allonger ver 41.05 89.66 1.02 0.07 ind:pre:2s; +allongez allonger ver 41.05 89.66 4.13 0.34 imp:pre:2p;ind:pre:2p; +allongiez allonger ver 41.05 89.66 0.10 0.07 ind:imp:2p; +allongions allonger ver 41.05 89.66 0.01 0.27 ind:imp:1p; +allongèrent allonger ver 41.05 89.66 0.00 0.88 ind:pas:3p; +allongé allonger ver m s 41.05 89.66 5.92 20.20 par:pas; +allongée allonger ver f s 41.05 89.66 4.04 10.88 par:pas; +allongées allongé adj f p 3.42 12.57 0.14 2.09 +allongés allonger ver m p 41.05 89.66 1.37 5.61 par:pas; +allons aller ver 9992.78 2854.93 500.21 129.80 imp:pre:1p;ind:pre:1p; +allopathie allopathie nom f s 0.14 0.00 0.14 0.00 +allostérique allostérique adj m s 0.01 0.00 0.01 0.00 +allât aller ver 9992.78 2854.93 0.01 2.97 sub:imp:3s; +alloua allouer ver 0.57 2.09 0.00 0.14 ind:pas:3s; +allouait allouer ver 0.57 2.09 0.00 0.54 ind:imp:3s; +allouant allouer ver 0.57 2.09 0.00 0.07 par:pre; +alloue allouer ver 0.57 2.09 0.04 0.00 ind:pre:1s;ind:pre:3s; +allouer allouer ver 0.57 2.09 0.09 0.34 inf; +allouerait allouer ver 0.57 2.09 0.00 0.14 cnd:pre:3s; +alloué allouer ver m s 0.57 2.09 0.21 0.41 par:pas; +allouée allouer ver f s 0.57 2.09 0.14 0.20 par:pas; +alloués allouer ver m p 0.57 2.09 0.09 0.27 par:pas; +allèche allécher ver 0.07 2.09 0.00 0.07 ind:pre:3s; +allège alléger ver 3.65 6.89 0.36 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allègement allègement nom m s 0.04 0.20 0.04 0.20 +allègent alléger ver 3.65 6.89 0.01 0.27 ind:pre:3p; +allègre allègre adj s 0.13 4.93 0.13 4.46 +allègrement allègrement adv 0.33 2.03 0.33 2.03 +allègres allègre adj p 0.13 4.93 0.00 0.47 +allègue alléguer ver 0.07 2.97 0.01 0.07 ind:pre:1s;ind:pre:3s; +allèle allèle nom m s 0.04 0.00 0.04 0.00 +allèrent aller ver 9992.78 2854.93 0.42 11.69 ind:pas:3p; +allé aller ver m s 9992.78 2854.93 123.26 57.30 par:pas; +allécha allécher ver 0.07 2.09 0.00 0.07 ind:pas:3s; +alléchait allécher ver 0.07 2.09 0.00 0.07 ind:imp:3s; +alléchant alléchant adj m s 0.60 2.09 0.25 0.68 +alléchante alléchant adj f s 0.60 2.09 0.29 0.61 +alléchantes alléchant adj f p 0.60 2.09 0.03 0.41 +alléchants alléchant adj m p 0.60 2.09 0.03 0.41 +allécher allécher ver 0.07 2.09 0.04 0.20 inf; +allécherait allécher ver 0.07 2.09 0.00 0.07 cnd:pre:3s; +alléché allécher ver m s 0.07 2.09 0.01 1.01 par:pas; +alléchée allécher ver f s 0.07 2.09 0.00 0.34 par:pas; +alléchés allécher ver m p 0.07 2.09 0.01 0.20 par:pas; +allée aller ver f s 9992.78 2854.93 52.93 25.00 par:pas; +allées aller ver f p 9992.78 2854.93 3.15 2.23 par:pas; +allégation allégation nom f s 1.87 0.54 0.28 0.07 +allégations allégation nom f p 1.87 0.54 1.59 0.47 +allégea alléger ver 3.65 6.89 0.10 0.07 ind:pas:3s; +allégeaient alléger ver 3.65 6.89 0.01 0.20 ind:imp:3p; +allégeais alléger ver 3.65 6.89 0.00 0.07 ind:imp:1s; +allégeait alléger ver 3.65 6.89 0.00 0.88 ind:imp:3s; +allégeance allégeance nom f s 1.64 1.42 1.61 1.35 +allégeances allégeance nom f p 1.64 1.42 0.04 0.07 +allégeant alléger ver 3.65 6.89 0.02 0.27 par:pre; +allégement allégement nom m s 0.03 0.54 0.03 0.47 +allégements allégement nom m p 0.03 0.54 0.00 0.07 +alléger alléger ver 3.65 6.89 1.40 1.69 inf; +allégera alléger ver 3.65 6.89 0.04 0.00 ind:fut:3s; +allégerait alléger ver 3.65 6.89 0.04 0.07 cnd:pre:3s; +allégez alléger ver 3.65 6.89 0.06 0.07 imp:pre:2p;ind:pre:2p; +allégorie allégorie nom f s 0.41 2.16 0.38 1.15 +allégories allégorie nom f p 0.41 2.16 0.04 1.01 +allégorique allégorique adj s 0.04 1.35 0.04 0.68 +allégoriquement allégoriquement adv 0.10 0.07 0.10 0.07 +allégoriques allégorique adj p 0.04 1.35 0.00 0.68 +allégorisé allégoriser ver m s 0.00 0.07 0.00 0.07 par:pas; +allégrement allégrement adv 0.03 2.77 0.03 2.77 +allégresse allégresse nom f s 2.36 11.89 2.36 11.82 +allégresses allégresse nom f p 2.36 11.89 0.00 0.07 +allégé alléger ver m s 3.65 6.89 1.16 1.08 par:pas; +allégua alléguer ver 0.07 2.97 0.00 0.20 ind:pas:3s; +alléguaient alléguer ver 0.07 2.97 0.00 0.20 ind:imp:3p; +alléguais alléguer ver 0.07 2.97 0.00 0.07 ind:imp:1s; +alléguait alléguer ver 0.07 2.97 0.00 0.27 ind:imp:3s; +alléguant alléguer ver 0.07 2.97 0.02 1.82 par:pre; +allégée alléger ver f s 3.65 6.89 0.18 1.08 par:pas; +alléguer alléguer ver 0.07 2.97 0.00 0.20 inf; +alléguera alléguer ver 0.07 2.97 0.00 0.07 ind:fut:3s; +allégées alléger ver f p 3.65 6.89 0.16 0.14 par:pas; +allégés alléger ver m p 3.65 6.89 0.10 0.07 par:pas; +allégué alléguer ver m s 0.07 2.97 0.03 0.07 par:pas; +alléguée alléguer ver f s 0.07 2.97 0.01 0.00 par:pas; +alléluia alléluia ono 2.62 0.41 2.62 0.41 +alléluias alléluia nom m p 0.99 0.34 0.28 0.14 +alluma allumer ver 54.80 116.28 0.33 23.78 ind:pas:3s; +allumage allumage nom m s 1.75 1.35 1.75 1.35 +allumai allumer ver 54.80 116.28 0.01 2.09 ind:pas:1s; +allumaient allumer ver 54.80 116.28 0.17 4.53 ind:imp:3p; +allumais allumer ver 54.80 116.28 0.40 1.22 ind:imp:1s;ind:imp:2s; +allumait allumer ver 54.80 116.28 0.78 8.11 ind:imp:3s; +allumant allumer ver 54.80 116.28 0.33 4.05 par:pre; +allume_cigare allume_cigare nom m s 0.19 0.14 0.19 0.14 +allume_cigares allume_cigares nom m 0.14 0.14 0.14 0.14 +allume_feu allume_feu nom m 0.04 0.27 0.04 0.27 +allume_gaz allume_gaz nom m 0.20 0.14 0.20 0.14 +allume allumer ver 54.80 116.28 19.22 18.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allument allumer ver 54.80 116.28 1.23 3.24 ind:pre:3p; +allumer allumer ver 54.80 116.28 11.98 20.74 inf; +allumera allumer ver 54.80 116.28 0.74 0.34 ind:fut:3s; +allumerai allumer ver 54.80 116.28 0.97 0.14 ind:fut:1s; +allumeraient allumer ver 54.80 116.28 0.00 0.34 cnd:pre:3p; +allumerais allumer ver 54.80 116.28 0.04 0.07 cnd:pre:1s; +allumerait allumer ver 54.80 116.28 0.03 0.34 cnd:pre:3s; +allumeras allumer ver 54.80 116.28 0.07 0.07 ind:fut:2s; +allumerons allumer ver 54.80 116.28 0.02 0.14 ind:fut:1p; +allumeront allumer ver 54.80 116.28 0.45 0.20 ind:fut:3p; +allumes allumer ver 54.80 116.28 1.69 0.27 ind:pre:2s;sub:pre:2s; +allumette allumette nom f s 15.65 20.88 4.43 9.73 +allumettes allumette nom f p 15.65 20.88 11.22 11.15 +allumeur allumeur nom m s 1.41 1.15 0.32 0.14 +allumeurs allumeur nom m p 1.41 1.15 0.07 0.07 +allumeuse allumeur nom f s 1.41 1.15 1.02 0.74 +allumeuses allumeuse nom f p 0.09 0.00 0.09 0.00 +allumez allumer ver 54.80 116.28 5.27 0.47 imp:pre:2p;ind:pre:2p; +allumiez allumer ver 54.80 116.28 0.25 0.00 ind:imp:2p; +allumions allumer ver 54.80 116.28 0.01 0.34 ind:imp:1p; +allumoir allumoir nom m s 0.00 0.07 0.00 0.07 +allumâmes allumer ver 54.80 116.28 0.00 0.14 ind:pas:1p; +allumons allumer ver 54.80 116.28 0.53 0.47 imp:pre:1p;ind:pre:1p; +allumât allumer ver 54.80 116.28 0.00 0.20 sub:imp:3s; +allumèrent allumer ver 54.80 116.28 0.02 2.50 ind:pas:3p; +allumé allumer ver m s 54.80 116.28 6.76 15.54 par:pas; +allumée allumé adj f s 5.76 14.59 3.59 5.74 +allumées allumer ver f p 54.80 116.28 0.80 1.89 par:pas; +allumés allumer ver m p 54.80 116.28 0.62 1.49 par:pas; +allure allure nom f s 10.57 65.88 10.00 57.09 +allures allure nom f p 10.57 65.88 0.56 8.78 +alluré alluré adj m s 0.00 0.07 0.00 0.07 +allés aller ver m p 9992.78 2854.93 26.37 17.23 par:pas; +allusif allusif adj m s 0.00 1.22 0.00 0.34 +allusifs allusif adj m p 0.00 1.22 0.00 0.20 +allusion allusion nom f s 4.72 31.15 3.88 23.18 +allusionne allusionner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +allusions allusion nom f p 4.72 31.15 0.84 7.97 +allusive allusif adj f s 0.00 1.22 0.00 0.41 +allusivement allusivement adv 0.10 0.14 0.10 0.14 +allusives allusif adj f p 0.00 1.22 0.00 0.27 +alluvion alluvion nom f s 0.16 0.95 0.01 0.14 +alluvions alluvion nom f p 0.16 0.95 0.14 0.81 +alma alma nom f s 0.86 0.14 0.86 0.14 +almanach almanach nom m s 1.00 1.89 0.89 1.22 +almanachs almanach nom m p 1.00 1.89 0.11 0.68 +almohade almohade nom s 0.10 0.14 0.10 0.07 +almohades almohade nom p 0.10 0.14 0.00 0.07 +almée almée nom f s 0.00 0.27 0.00 0.14 +almées almée nom f p 0.00 0.27 0.00 0.14 +aloi aloi nom m s 0.22 1.89 0.22 1.89 +alopécie alopécie nom f s 0.05 0.07 0.05 0.07 +alors alors adv_sup 1777.65 1033.78 1777.65 1033.78 +alose alose nom f s 0.04 0.47 0.04 0.20 +aloses alose nom f p 0.04 0.47 0.00 0.27 +aloès aloès nom m 0.23 1.15 0.23 1.15 +alouette alouette nom f s 1.41 4.32 1.32 1.82 +alouettes alouette nom f p 1.41 4.32 0.09 2.50 +alourdît alourdir ver 0.66 15.34 0.00 0.07 sub:imp:3s; +alourdi alourdir ver m s 0.66 15.34 0.07 2.50 par:pas; +alourdie alourdir ver f s 0.66 15.34 0.01 2.64 par:pas; +alourdies alourdir ver f p 0.66 15.34 0.00 1.28 par:pas; +alourdir alourdir ver 0.66 15.34 0.38 1.82 inf; +alourdirai alourdir ver 0.66 15.34 0.01 0.00 ind:fut:1s; +alourdiraient alourdir ver 0.66 15.34 0.00 0.07 cnd:pre:3p; +alourdirent alourdir ver 0.66 15.34 0.00 0.20 ind:pas:3p; +alourdis alourdir ver m p 0.66 15.34 0.13 1.55 imp:pre:2s;ind:pre:1s;par:pas; +alourdissaient alourdir ver 0.66 15.34 0.01 0.68 ind:imp:3p; +alourdissait alourdir ver 0.66 15.34 0.00 1.69 ind:imp:3s; +alourdissant alourdir ver 0.66 15.34 0.00 0.41 par:pre; +alourdissement alourdissement nom m s 0.00 0.14 0.00 0.14 +alourdissent alourdir ver 0.66 15.34 0.00 0.68 ind:pre:3p; +alourdit alourdir ver 0.66 15.34 0.04 1.76 ind:pre:3s;ind:pas:3s; +aloyau aloyau nom m s 0.27 0.27 0.27 0.27 +alpa alper ver 0.30 0.07 0.30 0.07 ind:pas:3s; +alpaga alpaga nom m s 0.12 1.28 0.12 1.28 +alpage alpage nom m s 0.01 0.81 0.00 0.34 +alpages alpage nom m p 0.01 0.81 0.01 0.47 +alpaguait alpaguer ver 0.34 2.16 0.01 0.07 ind:imp:3s; +alpague alpaguer ver 0.34 2.16 0.19 0.88 ind:pre:1s;ind:pre:3s; +alpaguent alpaguer ver 0.34 2.16 0.02 0.07 ind:pre:3p; +alpaguer alpaguer ver 0.34 2.16 0.09 0.74 inf; +alpaguerait alpaguer ver 0.34 2.16 0.00 0.07 cnd:pre:3s; +alpagué alpaguer ver m s 0.34 2.16 0.03 0.20 par:pas; +alpaguée alpaguer ver f s 0.34 2.16 0.00 0.07 par:pas; +alpagués alpaguer ver m p 0.34 2.16 0.00 0.07 par:pas; +alpe alpe nom f s 0.14 0.27 0.00 0.20 +alpenstock alpenstock nom m s 0.00 0.34 0.00 0.34 +alpes alpe nom f p 0.14 0.27 0.14 0.07 +alpestre alpestre adj s 0.10 0.47 0.10 0.27 +alpestres alpestre adj m p 0.10 0.47 0.00 0.20 +alpha alpha nom m 2.09 0.61 2.09 0.61 +alphabet alphabet nom m s 3.16 4.73 3.14 4.39 +alphabets alphabet nom m p 3.16 4.73 0.02 0.34 +alphabétique alphabétique adj s 1.00 1.69 1.00 1.69 +alphabétiquement alphabétiquement adv 0.14 0.07 0.14 0.07 +alphabétisation alphabétisation nom f s 0.30 0.07 0.30 0.07 +alphabétiser alphabétiser ver 0.02 0.00 0.02 0.00 inf; +alphabétisé alphabétisé adj m s 0.01 0.00 0.01 0.00 +alphanumérique alphanumérique adj m s 0.07 0.00 0.07 0.00 +alpin alpin adj m s 1.19 3.04 0.18 0.95 +alpine alpin adj f s 1.19 3.04 0.43 0.47 +alpines alpin adj f p 1.19 3.04 0.00 0.20 +alpinisme alpinisme nom m s 0.67 0.61 0.67 0.61 +alpiniste alpiniste nom s 1.96 1.49 0.95 1.15 +alpinistes alpiniste nom p 1.96 1.49 1.00 0.34 +alpins alpin adj m p 1.19 3.04 0.58 1.42 +alsacien alsacien adj m s 0.04 3.99 0.02 1.89 +alsacienne alsacien adj f s 0.04 3.99 0.00 1.55 +alsaciennes alsacien adj f p 0.04 3.99 0.00 0.20 +alsaciens alsacien adj m p 0.04 3.99 0.03 0.34 +alstonia alstonia nom f s 0.14 0.00 0.14 0.00 +alter_ego alter_ego nom m 0.30 0.54 0.30 0.54 +alter alter adv 0.00 0.07 0.00 0.07 +altercation altercation nom f s 1.20 1.49 1.12 1.42 +altercations altercation nom f p 1.20 1.49 0.09 0.07 +alterna alterner ver 1.49 6.82 0.00 0.07 ind:pas:3s; +alternaient alterner ver 1.49 6.82 0.02 1.76 ind:imp:3p; +alternait alterner ver 1.49 6.82 0.04 0.34 ind:imp:3s; +alternance alternance nom f s 0.20 3.78 0.20 2.84 +alternances alternance nom f p 0.20 3.78 0.00 0.95 +alternant alterner ver 1.49 6.82 0.26 1.62 par:pre; +alternateur alternateur nom m s 0.14 0.00 0.14 0.00 +alternatif alternatif adj m s 2.02 0.95 1.02 0.14 +alternatifs alternatif adj m p 2.02 0.95 0.23 0.07 +alternative alternative nom f s 5.89 2.23 4.96 1.89 +alternativement alternativement adv 0.16 5.88 0.16 5.88 +alternatives alternative nom f p 5.89 2.23 0.93 0.34 +alterne alterner ver 1.49 6.82 0.19 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alternent alterner ver 1.49 6.82 0.02 0.68 ind:pre:3p; +alterner alterner ver 1.49 6.82 0.70 0.74 inf; +alternera alterner ver 1.49 6.82 0.01 0.00 ind:fut:3s; +alternez alterner ver 1.49 6.82 0.06 0.00 imp:pre:2p;ind:pre:2p; +alternions alterner ver 1.49 6.82 0.01 0.00 ind:imp:1p; +alternèrent alterner ver 1.49 6.82 0.00 0.07 ind:pas:3p; +alterné alterner ver m s 1.49 6.82 0.16 0.14 par:pas; +alternée alterné adj f s 0.09 0.81 0.07 0.00 +alternées alterné adj f p 0.09 0.81 0.01 0.41 +alternés alterner ver m p 1.49 6.82 0.00 0.41 par:pas; +altesse altesse nom f s 12.93 4.05 12.72 1.08 +altesses altesse nom f p 12.93 4.05 0.20 2.97 +althaea althaea nom f s 0.01 0.00 0.01 0.00 +alène alène nom f s 0.24 0.34 0.24 0.34 +alèse alèse nom f s 0.01 0.61 0.01 0.61 +alèze alèze nom f s 0.00 0.07 0.00 0.07 +altier altier adj m s 0.56 2.91 0.14 0.88 +altiers altier adj m p 0.56 2.91 0.01 0.07 +altimètre altimètre nom m s 0.75 0.14 0.72 0.14 +altimètres altimètre nom m p 0.75 0.14 0.02 0.00 +altière altier adj f s 0.56 2.91 0.41 1.69 +altièrement altièrement adv 0.00 0.07 0.00 0.07 +altières altier adj f p 0.56 2.91 0.00 0.27 +altitude altitude nom f s 6.39 6.96 6.37 6.35 +altitudes altitude nom f p 6.39 6.96 0.03 0.61 +alto alto nom s 0.45 1.08 0.35 0.95 +altos alto nom p 0.45 1.08 0.10 0.14 +altruisme altruisme nom m s 0.31 0.74 0.31 0.74 +altruiste altruiste adj s 0.86 0.00 0.52 0.00 +altruistes altruiste adj p 0.86 0.00 0.34 0.00 +altère altérer ver 2.62 7.50 0.51 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +altèrent altérer ver 2.62 7.50 0.20 0.41 ind:pre:3p; +altuglas altuglas nom m 0.00 0.07 0.00 0.07 +altéra altérer ver 2.62 7.50 0.00 0.27 ind:pas:3s; +altérable altérable adj s 0.01 0.00 0.01 0.00 +altéraient altérer ver 2.62 7.50 0.00 0.41 ind:imp:3p; +altérait altérer ver 2.62 7.50 0.01 0.61 ind:imp:3s; +altérant altérer ver 2.62 7.50 0.06 0.07 par:pre; +altération altération nom f s 0.64 1.49 0.59 0.95 +altérations altération nom f p 0.64 1.49 0.05 0.54 +altérer altérer ver 2.62 7.50 0.83 1.89 inf; +altérera altérer ver 2.62 7.50 0.02 0.07 ind:fut:3s; +altéreront altérer ver 2.62 7.50 0.02 0.00 ind:fut:3p; +altérez altérer ver 2.62 7.50 0.01 0.00 ind:pre:2p; +altériez altérer ver 2.62 7.50 0.01 0.00 ind:imp:2p; +altérité altérité nom f s 0.02 0.20 0.02 0.20 +altérât altérer ver 2.62 7.50 0.01 0.20 sub:imp:3s; +altérèrent altérer ver 2.62 7.50 0.00 0.07 ind:pas:3p; +altéré altérer ver m s 2.62 7.50 0.69 1.35 par:pas; +altérée altérer ver f s 2.62 7.50 0.14 0.81 par:pas; +altérées altérer ver f p 2.62 7.50 0.07 0.20 par:pas; +altérés altérer ver m p 2.62 7.50 0.04 0.20 par:pas; +alu alu nom m 1.06 0.95 1.06 0.95 +aléa aléa nom m s 0.34 1.01 0.02 0.20 +aléas aléa nom m p 0.34 1.01 0.32 0.81 +aléatoire aléatoire adj s 2.04 2.16 1.36 1.96 +aléatoirement aléatoirement adv 0.09 0.00 0.09 0.00 +aléatoires aléatoire adj p 2.04 2.16 0.69 0.20 +aludes alude nom f p 0.14 0.00 0.14 0.00 +aluette aluette nom f s 0.01 0.00 0.01 0.00 +alémaniques alémanique adj p 0.00 0.07 0.00 0.07 +aluminium aluminium nom m s 2.38 4.32 2.38 4.32 +alun alun nom m s 0.00 0.74 0.00 0.74 +aluni alunir ver m s 0.43 0.07 0.06 0.00 par:pas; +alunir alunir ver 0.43 0.07 0.25 0.07 inf; +alunira alunir ver 0.43 0.07 0.13 0.00 ind:fut:3s; +alunissage alunissage nom m s 0.52 0.00 0.51 0.00 +alunissages alunissage nom m p 0.52 0.00 0.01 0.00 +aléoutien aléoutien adj m s 0.02 0.00 0.02 0.00 +alésait aléser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +aléser aléser ver 0.00 0.14 0.00 0.07 inf; +alvar alvar nom m s 0.05 0.00 0.05 0.00 +alvin alvin adj m s 0.12 0.00 0.12 0.00 +alvéolaire alvéolaire adj f s 0.04 0.00 0.04 0.00 +alvéole alvéole nom m s 0.20 3.18 0.11 1.62 +alvéoles alvéole nom m p 0.20 3.18 0.09 1.55 +alvéolé alvéolé adj m s 0.00 0.34 0.00 0.07 +alvéolée alvéolé adj f s 0.00 0.34 0.00 0.14 +alvéolées alvéolé adj f p 0.00 0.34 0.00 0.07 +alvéolés alvéolé adj m p 0.00 0.34 0.00 0.07 +alysse alysse nom m s 0.03 0.27 0.03 0.27 +am_stram_gram am_stram_gram ono 0.08 0.14 0.08 0.14 +amabilité amabilité nom f s 2.91 5.34 2.81 3.78 +amabilités amabilité nom f p 2.91 5.34 0.11 1.55 +amadou amadou nom m s 0.01 1.76 0.01 1.76 +amadoua amadouer ver 1.51 3.58 0.00 0.20 ind:pas:3s; +amadouaient amadouer ver 1.51 3.58 0.00 0.07 ind:imp:3p; +amadouait amadouer ver 1.51 3.58 0.01 0.14 ind:imp:3s; +amadouant amadouer ver 1.51 3.58 0.02 0.14 par:pre; +amadoue amadouer ver 1.51 3.58 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amadouer amadouer ver 1.51 3.58 1.01 2.70 inf; +amadoueras amadouer ver 1.51 3.58 0.01 0.00 ind:fut:2s; +amadouez amadouer ver 1.51 3.58 0.01 0.00 ind:pre:2p; +amadoué amadouer ver m s 1.51 3.58 0.23 0.27 par:pas; +amaigri amaigrir ver m s 0.04 1.01 0.03 0.54 par:pas; +amaigrie amaigri adj f s 0.02 2.16 0.00 0.54 +amaigries amaigri adj f p 0.02 2.16 0.00 0.14 +amaigris amaigri adj m p 0.02 2.16 0.00 0.41 +amaigrissait amaigrir ver 0.04 1.01 0.00 0.07 ind:imp:3s; +amaigrissant amaigrissant adj m s 0.09 0.14 0.03 0.07 +amaigrissante amaigrissant adj f s 0.09 0.14 0.01 0.00 +amaigrissantes amaigrissant adj f p 0.09 0.14 0.04 0.00 +amaigrissants amaigrissant adj m p 0.09 0.14 0.00 0.07 +amaigrissement amaigrissement nom m s 0.20 0.54 0.20 0.54 +amaigrit amaigrir ver 0.04 1.01 0.01 0.07 ind:pre:3s;ind:pas:3s; +amalfitaine amalfitain adj f s 0.00 0.07 0.00 0.07 +amalgamaient amalgamer ver 0.44 1.22 0.00 0.14 ind:imp:3p; +amalgamais amalgamer ver 0.44 1.22 0.00 0.07 ind:imp:1s; +amalgamait amalgamer ver 0.44 1.22 0.00 0.07 ind:imp:3s; +amalgamant amalgamer ver 0.44 1.22 0.10 0.00 par:pre; +amalgame amalgame nom m s 0.31 2.03 0.30 1.82 +amalgamer amalgamer ver 0.44 1.22 0.00 0.27 inf; +amalgames amalgame nom m p 0.31 2.03 0.01 0.20 +amalgamez amalgamer ver 0.44 1.22 0.00 0.07 ind:pre:2p; +amalgamé amalgamer ver m s 0.44 1.22 0.27 0.14 par:pas; +amalgamée amalgamer ver f s 0.44 1.22 0.04 0.00 par:pas; +amalgamées amalgamer ver f p 0.44 1.22 0.00 0.14 par:pas; +amalgamés amalgamer ver m p 0.44 1.22 0.02 0.34 par:pas; +aman aman nom m s 0.04 0.14 0.04 0.14 +amande amande nom f s 2.19 8.18 1.07 3.99 +amandes amande nom f p 2.19 8.18 1.13 4.19 +amandier amandier nom m s 0.40 2.23 0.14 0.34 +amandiers amandier nom m p 0.40 2.23 0.27 1.89 +amandine amandin nom f s 0.01 0.07 0.01 0.00 +amandines amandine nom f p 0.02 0.00 0.02 0.00 +amanite amanite nom f s 0.10 0.27 0.00 0.14 +amanites amanite nom f p 0.10 0.27 0.10 0.14 +amant amant nom m s 35.03 69.59 23.28 46.76 +amante amante nom f s 1.55 6.76 1.04 5.54 +amantes amante nom f p 1.55 6.76 0.52 1.22 +amants amant nom m p 35.03 69.59 11.75 22.84 +amarante amarante nom s 0.05 0.61 0.02 0.27 +amarantes amarante nom p 0.05 0.61 0.03 0.34 +amaro amaro nom m s 2.02 0.00 2.02 0.00 +amarra amarrer ver 1.44 6.69 0.08 0.34 ind:pas:3s; +amarrage amarrage nom m s 0.46 0.61 0.45 0.54 +amarrages amarrage nom m p 0.46 0.61 0.01 0.07 +amarrai amarrer ver 1.44 6.69 0.00 0.07 ind:pas:1s; +amarraient amarrer ver 1.44 6.69 0.00 0.27 ind:imp:3p; +amarrais amarrer ver 1.44 6.69 0.00 0.07 ind:imp:1s; +amarrait amarrer ver 1.44 6.69 0.04 0.20 ind:imp:3s; +amarrant amarrer ver 1.44 6.69 0.00 0.14 par:pre; +amarre amarre nom f s 1.66 4.66 0.58 1.42 +amarrent amarrer ver 1.44 6.69 0.00 0.07 ind:pre:3p; +amarrer amarrer ver 1.44 6.69 0.22 1.01 inf; +amarres amarre nom f p 1.66 4.66 1.08 3.24 +amarrez amarrer ver 1.44 6.69 0.16 0.00 imp:pre:2p; +amarré amarrer ver m s 1.44 6.69 0.49 1.89 par:pas; +amarrée amarrer ver f s 1.44 6.69 0.15 0.88 par:pas; +amarrées amarrer ver f p 1.44 6.69 0.00 0.68 par:pas; +amarrés amarrer ver m p 1.44 6.69 0.08 0.81 par:pas; +amaryllis amaryllis nom f 0.03 1.22 0.03 1.22 +amas amas nom m 1.56 9.32 1.56 9.32 +amassa amasser ver 3.46 8.24 0.02 0.34 ind:pas:3s; +amassai amasser ver 3.46 8.24 0.00 0.07 ind:pas:1s; +amassaient amasser ver 3.46 8.24 0.01 0.61 ind:imp:3p; +amassait amasser ver 3.46 8.24 0.02 0.68 ind:imp:3s; +amassant amasser ver 3.46 8.24 0.03 0.54 par:pre; +amasse amasser ver 3.46 8.24 0.71 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amassent amasser ver 3.46 8.24 0.19 0.27 ind:pre:3p; +amasser amasser ver 3.46 8.24 0.47 1.55 inf; +amassera amasser ver 3.46 8.24 0.14 0.00 ind:fut:3s; +amassez amasser ver 3.46 8.24 0.62 0.00 imp:pre:2p;ind:pre:2p; +amassons amasser ver 3.46 8.24 0.01 0.00 ind:pre:1p; +amassèrent amasser ver 3.46 8.24 0.00 0.07 ind:pas:3p; +amassé amasser ver m s 3.46 8.24 0.91 1.55 par:pas; +amassée amasser ver f s 3.46 8.24 0.03 0.61 par:pas; +amassées amasser ver f p 3.46 8.24 0.17 0.41 par:pas; +amassés amasser ver m p 3.46 8.24 0.12 0.95 par:pas; +amateur amateur nom s 11.66 16.15 5.53 7.16 +amateurisme amateurisme nom m s 0.12 0.34 0.12 0.34 +amateurs amateur nom p 11.66 16.15 6.04 8.99 +amati amatir ver m s 0.00 0.14 0.00 0.14 par:pas; +amatrice amateur nom f s 11.66 16.15 0.09 0.00 +amaurose amaurose nom f s 0.00 0.07 0.00 0.07 +amazone amazone nom f s 0.55 2.23 0.25 1.89 +amazones amazone nom f p 0.55 2.23 0.30 0.34 +amazonien amazonien adj m s 0.36 0.14 0.03 0.07 +amazonienne amazonien adj f s 0.36 0.14 0.30 0.00 +amazoniennes amazonien adj f p 0.36 0.14 0.04 0.07 +ambages ambages nom f p 0.29 0.88 0.29 0.88 +ambassade ambassade nom f s 9.49 15.34 8.85 13.38 +ambassades ambassade nom f p 9.49 15.34 0.65 1.96 +ambassadeur ambassadeur nom m s 13.85 33.72 11.57 26.15 +ambassadeurs ambassadeur nom m p 13.85 33.72 0.96 3.85 +ambassadrice ambassadeur nom f s 13.85 33.72 1.32 3.58 +ambassadrices ambassadeur nom f p 13.85 33.72 0.00 0.14 +ambiance ambiance nom f s 12.37 11.55 12.33 11.08 +ambiances ambiance nom f p 12.37 11.55 0.03 0.47 +ambiant ambiant adj m s 0.75 4.05 0.20 1.49 +ambiante ambiant adj f s 0.75 4.05 0.50 2.23 +ambiantes ambiant adj f p 0.75 4.05 0.01 0.34 +ambiants ambiant adj m p 0.75 4.05 0.04 0.00 +ambidextre ambidextre adj f s 0.32 0.00 0.32 0.00 +ambigu ambigu adj m s 2.58 8.99 1.77 4.05 +ambiguïté ambiguïté nom f s 0.52 3.04 0.39 2.84 +ambiguïtés ambiguïté nom f p 0.52 3.04 0.14 0.20 +ambigus ambigu adj m p 2.58 8.99 0.27 1.55 +ambiguë ambigu adj f s 2.58 8.99 0.51 2.57 +ambiguës ambigu adj f p 2.58 8.99 0.04 0.81 +ambitieuse ambitieux adj f s 6.08 4.73 1.09 0.81 +ambitieuses ambitieux adj f p 6.08 4.73 0.17 0.20 +ambitieux ambitieux adj m 6.08 4.73 4.82 3.72 +ambition ambition nom f s 11.15 30.34 7.98 19.32 +ambitionnais ambitionner ver 0.06 1.49 0.02 0.14 ind:imp:1s; +ambitionnait ambitionner ver 0.06 1.49 0.00 0.41 ind:imp:3s; +ambitionnant ambitionner ver 0.06 1.49 0.00 0.07 par:pre; +ambitionne ambitionner ver 0.06 1.49 0.03 0.41 ind:pre:1s;ind:pre:3s; +ambitionnent ambitionner ver 0.06 1.49 0.01 0.07 ind:pre:3p; +ambitionner ambitionner ver 0.06 1.49 0.00 0.14 inf; +ambitionnez ambitionner ver 0.06 1.49 0.00 0.07 ind:pre:2p; +ambitionné ambitionner ver m s 0.06 1.49 0.00 0.20 par:pas; +ambitions ambition nom f p 11.15 30.34 3.17 11.01 +ambivalence ambivalence nom f s 0.28 0.41 0.28 0.34 +ambivalences ambivalence nom f p 0.28 0.41 0.00 0.07 +ambivalent ambivalent adj m s 0.17 0.20 0.11 0.14 +ambivalente ambivalent adj f s 0.17 0.20 0.06 0.07 +amble amble nom m s 0.30 0.47 0.30 0.47 +ambler ambler ver 0.05 0.00 0.05 0.00 inf; +amboine amboine nom s 0.00 0.07 0.00 0.07 +ambon ambon nom m s 0.00 0.07 0.00 0.07 +ambras ambrer ver 0.04 0.54 0.00 0.07 ind:pas:2s; +ambre ambre nom m s 0.93 4.39 0.93 4.39 +ambrer ambrer ver 0.04 0.54 0.01 0.00 inf; +ambroisie ambroisie nom f s 0.51 0.14 0.51 0.14 +ambré ambré adj m s 0.19 2.16 0.01 0.74 +ambrée ambré adj f s 0.19 2.16 0.17 1.08 +ambrées ambrer ver f p 0.04 0.54 0.01 0.00 par:pas; +ambrés ambré adj m p 0.19 2.16 0.01 0.20 +ambulance ambulance nom f s 27.55 11.69 25.94 9.26 +ambulances ambulance nom f p 27.55 11.69 1.61 2.43 +ambulancier ambulancier nom m s 1.64 1.69 0.57 0.61 +ambulanciers ambulancier nom m p 1.64 1.69 1.01 0.88 +ambulancière ambulancier nom f s 1.64 1.69 0.04 0.14 +ambulancières ambulancier nom f p 1.64 1.69 0.00 0.07 +ambulant ambulant adj m s 3.08 5.41 1.82 3.04 +ambulante ambulant adj f s 3.08 5.41 0.98 1.15 +ambulantes ambulant adj f p 3.08 5.41 0.13 0.07 +ambulants ambulant adj m p 3.08 5.41 0.15 1.15 +ambulatoire ambulatoire adj s 0.14 0.07 0.14 0.07 +amen amen ono 19.70 2.23 19.70 2.23 +amena amener ver 190.32 93.92 0.74 5.27 ind:pas:3s; +amenai amener ver 190.32 93.92 0.02 0.34 ind:pas:1s; +amenaient amener ver 190.32 93.92 0.37 2.16 ind:imp:3p; +amenais amener ver 190.32 93.92 1.17 0.34 ind:imp:1s;ind:imp:2s; +amenait amener ver 190.32 93.92 1.87 9.46 ind:imp:3s; +amenant amener ver 190.32 93.92 0.66 2.43 par:pre; +amendai amender ver 1.49 1.08 0.00 0.07 ind:pas:1s; +amendait amender ver 1.49 1.08 0.00 0.07 ind:imp:3s; +amende amende nom f s 9.37 4.80 8.38 3.65 +amendement amendement nom m s 3.75 0.68 3.28 0.14 +amendements amendement nom m p 3.75 0.68 0.47 0.54 +amendent amender ver 1.49 1.08 0.01 0.14 ind:pre:3p; +amender amender ver 1.49 1.08 1.06 0.47 inf; +amenderez amender ver 1.49 1.08 0.00 0.07 ind:fut:2p; +amendes amende nom f p 9.37 4.80 0.99 1.15 +amendez amender ver 1.49 1.08 0.04 0.00 imp:pre:2p;ind:pre:2p; +amendât amender ver 1.49 1.08 0.00 0.07 sub:imp:3s; +amendé amender ver m s 1.49 1.08 0.05 0.07 par:pas; +amendée amender ver f s 1.49 1.08 0.05 0.00 par:pas; +amener amener ver 190.32 93.92 35.60 18.18 inf;; +amenez amener ver 190.32 93.92 21.53 1.28 imp:pre:2p;ind:pre:2p; +ameniez amener ver 190.32 93.92 0.25 0.07 ind:imp:2p; +amenions amener ver 190.32 93.92 0.25 0.14 ind:imp:1p; +amenons amener ver 190.32 93.92 1.02 0.00 imp:pre:1p;ind:pre:1p; +amenât amener ver 190.32 93.92 0.00 0.20 sub:imp:3s; +amenèrent amener ver 190.32 93.92 0.61 1.08 ind:pas:3p; +amené amener ver m s 190.32 93.92 38.14 20.00 par:pas; +amenée amener ver f s 190.32 93.92 7.87 5.81 par:pas; +amenées amener ver f p 190.32 93.92 0.73 0.88 par:pas; +amenuisaient amenuiser ver 0.42 4.19 0.00 0.14 ind:imp:3p; +amenuisait amenuiser ver 0.42 4.19 0.02 0.95 ind:imp:3s; +amenuisant amenuiser ver 0.42 4.19 0.00 0.88 par:pre; +amenuise amenuiser ver 0.42 4.19 0.14 0.61 ind:pre:3s; +amenuisement amenuisement nom m s 0.00 0.14 0.00 0.14 +amenuisent amenuiser ver 0.42 4.19 0.23 0.41 ind:pre:3p; +amenuiser amenuiser ver 0.42 4.19 0.01 0.47 inf; +amenuiserait amenuiser ver 0.42 4.19 0.03 0.14 cnd:pre:3s; +amenuisèrent amenuiser ver 0.42 4.19 0.00 0.14 ind:pas:3p; +amenuisé amenuiser ver m s 0.42 4.19 0.00 0.14 par:pas; +amenuisée amenuiser ver f s 0.42 4.19 0.00 0.27 par:pas; +amenuisés amenuiser ver m p 0.42 4.19 0.00 0.07 par:pas; +amenés amener ver m p 190.32 93.92 4.71 6.15 par:pas; +amer amer adj m s 11.94 30.07 5.82 11.69 +amerlo amerlo nom s 0.10 0.47 0.00 0.14 +amerloque amerloque nom s 1.05 1.76 0.61 1.01 +amerloques amerloque nom p 1.05 1.76 0.44 0.74 +amerlos amerlo nom p 0.10 0.47 0.10 0.34 +amerri amerrir ver m s 0.13 0.07 0.04 0.00 par:pas; +amerrir amerrir ver 0.13 0.07 0.06 0.07 inf; +amerrissage amerrissage nom m s 0.16 0.00 0.16 0.00 +amerrit amerrir ver 0.13 0.07 0.02 0.00 ind:pre:3s;ind:pas:3s; +amers amer adj m p 11.94 30.07 1.25 2.57 +amertume amertume nom f s 4.64 19.39 4.64 19.05 +amertumes amertume nom f p 4.64 19.39 0.00 0.34 +ameublement ameublement nom m s 0.12 0.95 0.12 0.88 +ameublements ameublement nom m p 0.12 0.95 0.00 0.07 +ameuta ameuter ver 1.48 3.51 0.00 0.14 ind:pas:3s; +ameutaient ameuter ver 1.48 3.51 0.00 0.14 ind:imp:3p; +ameutait ameuter ver 1.48 3.51 0.00 0.07 ind:imp:3s; +ameutant ameuter ver 1.48 3.51 0.00 0.27 par:pre; +ameute ameuter ver 1.48 3.51 0.30 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ameutent ameuter ver 1.48 3.51 0.01 0.07 ind:pre:3p; +ameuter ameuter ver 1.48 3.51 0.89 1.62 inf; +ameutera ameuter ver 1.48 3.51 0.01 0.00 ind:fut:3s; +ameuterait ameuter ver 1.48 3.51 0.01 0.14 cnd:pre:3s; +ameutât ameuter ver 1.48 3.51 0.00 0.07 sub:imp:3s; +ameuté ameuter ver m s 1.48 3.51 0.25 0.47 par:pas; +ameutée ameuter ver f s 1.48 3.51 0.00 0.07 par:pas; +ameutées ameuter ver f p 1.48 3.51 0.00 0.07 par:pas; +ameutés ameuter ver m p 1.48 3.51 0.01 0.14 par:pas; +amharique amharique nom m s 0.27 0.00 0.27 0.00 +ami ami nom m s 747.98 354.12 360.90 140.14 +amiable amiable adj m s 1.06 1.82 1.06 1.82 +amiante amiante nom m s 0.82 0.54 0.82 0.54 +amibe amibe nom f s 0.40 0.20 0.27 0.14 +amibes amibe nom f p 0.40 0.20 0.13 0.07 +amibienne amibien adj f s 0.05 0.14 0.05 0.14 +amical amical adj m s 9.88 23.04 4.26 11.22 +amicale amical adj f s 9.88 23.04 3.67 7.57 +amicalement amicalement adv 1.15 4.12 1.15 4.12 +amicales amical adj f p 9.88 23.04 0.60 2.57 +amicalités amicalité nom f p 0.00 0.07 0.00 0.07 +amicaux amical adj m p 9.88 23.04 1.35 1.69 +amidon amidon nom m s 0.49 0.74 0.49 0.74 +amidonnaient amidonner ver 0.33 1.89 0.00 0.07 ind:imp:3p; +amidonnent amidonner ver 0.33 1.89 0.02 0.00 ind:pre:3p; +amidonner amidonner ver 0.33 1.89 0.04 0.20 inf; +amidonnez amidonner ver 0.33 1.89 0.02 0.00 imp:pre:2p;ind:pre:2p; +amidonné amidonner ver m s 0.33 1.89 0.04 0.54 par:pas; +amidonnée amidonner ver f s 0.33 1.89 0.02 0.34 par:pas; +amidonnées amidonner ver f p 0.33 1.89 0.15 0.20 par:pas; +amidonnés amidonner ver m p 0.33 1.89 0.04 0.54 par:pas; +amie ami nom f s 747.98 354.12 113.54 54.32 +amies ami nom f p 747.98 354.12 20.88 16.22 +amignoter amignoter ver 0.00 0.07 0.00 0.07 inf; +amigo amigo nom m s 6.91 1.08 4.75 0.95 +amigos amigo nom m p 6.91 1.08 2.15 0.14 +aminci aminci adj m s 0.10 0.47 0.10 0.14 +amincie amincir ver f s 0.25 2.30 0.00 0.14 par:pas; +amincies aminci adj f p 0.10 0.47 0.00 0.20 +amincir amincir ver 0.25 2.30 0.03 0.27 inf; +amincis aminci adj m p 0.10 0.47 0.00 0.07 +amincissaient amincir ver 0.25 2.30 0.00 0.27 ind:imp:3p; +amincissait amincir ver 0.25 2.30 0.03 0.20 ind:imp:3s; +amincissant amincissant adj m s 0.09 0.07 0.03 0.07 +amincissante amincissant adj f s 0.09 0.07 0.04 0.00 +amincissantes amincissant adj f p 0.09 0.07 0.01 0.00 +amincissants amincissant nom m p 0.03 0.14 0.01 0.00 +amincissement amincissement nom m s 0.10 0.14 0.10 0.14 +amincissent amincir ver 0.25 2.30 0.00 0.34 ind:pre:3p; +amincit amincir ver 0.25 2.30 0.19 0.68 ind:pre:3s;ind:pas:3s; +amine amine nom f s 0.01 0.00 0.01 0.00 +aminoacides aminoacide nom m p 0.02 0.00 0.02 0.00 +aminophylline aminophylline nom f s 0.01 0.00 0.01 0.00 +aminé aminé adj m s 0.36 0.00 0.04 0.00 +aminés aminé adj m p 0.36 0.00 0.31 0.00 +amiral amiral nom m s 6.00 13.51 5.60 11.22 +amirale amiral adj f s 4.04 8.58 0.01 0.14 +amirauté amirauté nom f s 0.22 6.96 0.22 6.89 +amirautés amirauté nom f p 0.22 6.96 0.00 0.07 +amiraux amiral nom m p 6.00 13.51 0.39 2.30 +amis ami nom m p 747.98 354.12 252.66 143.45 +amish amish adj m s 0.14 0.00 0.14 0.00 +amitieuse amitieux adj f s 0.00 0.07 0.00 0.07 +amitié amitié nom f s 36.69 77.77 32.39 67.70 +amitiés amitié nom f p 36.69 77.77 4.30 10.07 +ammoniac ammoniac nom m s 0.28 0.14 0.28 0.14 +ammoniacale ammoniacal adj f s 0.00 0.54 0.00 0.41 +ammoniacales ammoniacal adj f p 0.00 0.54 0.00 0.07 +ammoniacaux ammoniacal adj m p 0.00 0.54 0.00 0.07 +ammoniaque ammoniaque nom f s 0.40 0.27 0.40 0.27 +ammoniaqué ammoniaqué adj m s 0.00 0.27 0.00 0.14 +ammoniaquée ammoniaqué adj f s 0.00 0.27 0.00 0.07 +ammoniaquées ammoniaqué adj f p 0.00 0.27 0.00 0.07 +ammonite ammonite nom f s 0.40 0.14 0.40 0.14 +ammonitrate ammonitrate nom m 0.00 0.14 0.00 0.14 +ammonium ammonium nom m s 0.36 0.00 0.36 0.00 +amniocentèse amniocentèse nom f s 0.38 0.00 0.38 0.00 +amnios amnios nom m 0.04 0.00 0.04 0.00 +amniotique amniotique adj m s 0.14 0.14 0.14 0.14 +amnistiable amnistiable adj s 0.00 0.07 0.00 0.07 +amnistiante amnistiant adj f s 0.00 0.07 0.00 0.07 +amnistie amnistie nom f s 2.93 1.89 2.66 1.82 +amnistier amnistier ver 0.52 0.41 0.20 0.07 inf; +amnistierons amnistier ver 0.52 0.41 0.00 0.07 ind:fut:1p; +amnisties amnistie nom f p 2.93 1.89 0.27 0.07 +amnistié amnistier ver m s 0.52 0.41 0.07 0.27 par:pas; +amnistiée amnistier ver f s 0.52 0.41 0.11 0.00 par:pas; +amnistiés amnistier ver m p 0.52 0.41 0.02 0.00 par:pas; +amnésie amnésie nom f s 3.74 1.15 3.59 1.08 +amnésies amnésie nom f p 3.74 1.15 0.15 0.07 +amnésique amnésique adj s 2.48 0.54 2.44 0.47 +amnésiques amnésique nom p 1.33 0.20 0.17 0.00 +amochait amocher ver 3.80 2.77 0.00 0.07 ind:imp:3s; +amoche amocher ver 3.80 2.77 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amocher amocher ver 3.80 2.77 0.41 0.27 inf; +amochez amocher ver 3.80 2.77 0.02 0.00 imp:pre:2p;ind:pre:2p; +amochie amochir ver f s 0.00 0.07 0.00 0.07 par:pas; +amoché amocher ver m s 3.80 2.77 2.00 1.42 par:pas; +amochée amocher ver f s 3.80 2.77 1.03 0.47 par:pas; +amochés amocher ver m p 3.80 2.77 0.26 0.47 par:pas; +amoindri amoindrir ver m s 0.60 2.36 0.34 0.47 par:pas; +amoindrie amoindrir ver f s 0.60 2.36 0.04 0.34 par:pas; +amoindries amoindrir ver f p 0.60 2.36 0.00 0.07 par:pas; +amoindrir amoindrir ver 0.60 2.36 0.12 0.81 inf; +amoindrira amoindrir ver 0.60 2.36 0.02 0.00 ind:fut:3s; +amoindris amoindrir ver m p 0.60 2.36 0.04 0.14 ind:pre:2s;par:pas; +amoindrissait amoindrir ver 0.60 2.36 0.00 0.27 ind:imp:3s; +amoindrissement amoindrissement nom m s 0.01 0.07 0.01 0.07 +amoindrit amoindrir ver 0.60 2.36 0.04 0.27 ind:pre:3s;ind:pas:3s; +amok amok nom m s 0.01 0.07 0.01 0.07 +amolli amollir ver m s 0.17 5.41 0.11 0.95 par:pas; +amollie amollir ver f s 0.17 5.41 0.00 0.68 par:pas; +amollies amollir ver f p 0.17 5.41 0.00 0.41 par:pas; +amollir amollir ver 0.17 5.41 0.03 0.54 inf; +amollirent amollir ver 0.17 5.41 0.00 0.14 ind:pas:3p; +amollis amollir ver m p 0.17 5.41 0.01 0.47 ind:pre:1s;ind:pre:2s;par:pas; +amollissaient amollir ver 0.17 5.41 0.00 0.20 ind:imp:3p; +amollissait amollir ver 0.17 5.41 0.00 0.27 ind:imp:3s; +amollissant amollissant adj m s 0.00 0.14 0.00 0.14 +amollissement amollissement nom m s 0.00 0.14 0.00 0.14 +amollissent amollir ver 0.17 5.41 0.01 0.27 ind:pre:3p; +amollit amollir ver 0.17 5.41 0.01 1.42 ind:pre:3s;ind:pas:3s; +amoncelaient amonceler ver 0.16 4.86 0.02 1.69 ind:imp:3p; +amoncelait amonceler ver 0.16 4.86 0.10 0.34 ind:imp:3s; +amoncelant amonceler ver 0.16 4.86 0.00 0.14 par:pre; +amonceler amonceler ver 0.16 4.86 0.01 0.14 inf; +amoncelle amonceler ver 0.16 4.86 0.00 0.34 ind:pre:3s; +amoncellement amoncellement nom m s 0.07 6.08 0.07 4.32 +amoncellements amoncellement nom m p 0.07 6.08 0.00 1.76 +amoncellent amonceler ver 0.16 4.86 0.02 0.34 ind:pre:3p; +amoncelleraient amonceler ver 0.16 4.86 0.00 0.07 cnd:pre:3p; +amoncelèrent amonceler ver 0.16 4.86 0.00 0.07 ind:pas:3p; +amoncelé amonceler ver m s 0.16 4.86 0.01 0.20 par:pas; +amoncelée amonceler ver f s 0.16 4.86 0.00 0.07 par:pas; +amoncelées amonceler ver f p 0.16 4.86 0.00 0.41 par:pas; +amoncelés amonceler ver m p 0.16 4.86 0.00 1.08 par:pas; +amont amont nom m s 1.40 3.85 1.40 3.85 +amontillado amontillado nom m s 0.29 0.14 0.29 0.14 +amoral amoral adj m s 0.68 0.68 0.61 0.20 +amorale amoral adj f s 0.68 0.68 0.03 0.41 +amoraliste amoraliste nom s 0.05 0.00 0.05 0.00 +amoralité amoralité nom f s 0.04 0.07 0.04 0.07 +amoraux amoral adj m p 0.68 0.68 0.04 0.07 +amorce amorce nom f s 1.76 4.59 1.19 3.92 +amorcent amorcer ver 2.06 11.89 0.04 0.00 ind:pre:3p; +amorcer amorcer ver 2.06 11.89 0.40 2.64 inf; +amorcerait amorcer ver 2.06 11.89 0.01 0.07 cnd:pre:3s; +amorces amorce nom f p 1.76 4.59 0.57 0.68 +amorcez amorcer ver 2.06 11.89 0.18 0.00 imp:pre:2p; +amorcèrent amorcer ver 2.06 11.89 0.00 0.27 ind:pas:3p; +amorcé amorcer ver m s 2.06 11.89 0.20 1.69 par:pas; +amorcée amorcer ver f s 2.06 11.89 0.30 1.01 par:pas; +amorcées amorcer ver f p 2.06 11.89 0.05 0.14 par:pas; +amorcés amorcer ver m p 2.06 11.89 0.08 0.34 par:pas; +amoroso amoroso adv 0.45 0.07 0.45 0.07 +amorphe amorphe adj s 0.25 1.42 0.14 0.88 +amorphes amorphe adj p 0.25 1.42 0.11 0.54 +amorça amorcer ver 2.06 11.89 0.02 0.68 ind:pas:3s; +amorçage amorçage nom m s 0.09 0.07 0.09 0.07 +amorçai amorcer ver 2.06 11.89 0.00 0.14 ind:pas:1s; +amorçaient amorcer ver 2.06 11.89 0.01 0.27 ind:imp:3p; +amorçais amorcer ver 2.06 11.89 0.00 0.07 ind:imp:1s; +amorçait amorcer ver 2.06 11.89 0.00 2.03 ind:imp:3s; +amorçant amorcer ver 2.06 11.89 0.01 0.41 par:pre; +amorçoir amorçoir nom m s 0.00 0.07 0.00 0.07 +amorçons amorcer ver 2.06 11.89 0.40 0.00 imp:pre:1p;ind:pre:1p; +amorti amortir ver m s 1.69 4.93 0.51 0.68 par:pas; +amortie amortir ver f s 1.69 4.93 0.13 0.41 par:pas; +amorties amorti adj f p 0.20 1.55 0.14 0.27 +amortir amortir ver 1.69 4.93 0.41 1.62 inf; +amortirent amortir ver 1.69 4.93 0.00 0.14 ind:pas:3p; +amortiront amortir ver 1.69 4.93 0.01 0.00 ind:fut:3p; +amortis amortir ver m p 1.69 4.93 0.26 0.14 ind:pre:1s;par:pas; +amortissaient amortir ver 1.69 4.93 0.01 0.14 ind:imp:3p; +amortissait amortir ver 1.69 4.93 0.00 0.34 ind:imp:3s; +amortissant amortir ver 1.69 4.93 0.01 0.27 par:pre; +amortisse amortir ver 1.69 4.93 0.04 0.14 sub:pre:1s;sub:pre:3s; +amortissement amortissement nom m s 0.42 0.20 0.42 0.20 +amortissent amortir ver 1.69 4.93 0.00 0.07 ind:pre:3p; +amortisseur amortisseur nom m s 0.85 0.47 0.20 0.00 +amortisseurs amortisseur nom m p 0.85 0.47 0.66 0.47 +amortit amortir ver 1.69 4.93 0.32 0.95 ind:pre:3s;ind:pas:3s; +amour_goût amour_goût nom m s 0.00 0.07 0.00 0.07 +amour_passion amour_passion nom m s 0.00 0.41 0.00 0.41 +amour_propre amour_propre nom m s 2.54 6.89 2.54 6.76 +amour amour nom m s 458.27 403.92 450.46 373.58 +amouracha amouracher ver 1.03 1.15 0.00 0.14 ind:pas:3s; +amourache amouracher ver 1.03 1.15 0.06 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amourachent amouracher ver 1.03 1.15 0.02 0.00 ind:pre:3p; +amouracher amouracher ver 1.03 1.15 0.44 0.20 inf; +amourachera amouracher ver 1.03 1.15 0.00 0.07 ind:fut:3s; +amouraches amouracher ver 1.03 1.15 0.02 0.07 ind:pre:2s; +amouraché amouracher ver m s 1.03 1.15 0.28 0.20 par:pas; +amourachée amouracher ver f s 1.03 1.15 0.22 0.34 par:pas; +amourer amourer ver 0.00 0.07 0.00 0.07 inf; +amourette amourette nom f s 0.66 1.15 0.54 0.47 +amourettes amourette nom f p 0.66 1.15 0.12 0.68 +amoureuse amoureux adj f s 107.79 58.45 41.65 23.11 +amoureusement amoureusement adv 0.22 2.50 0.22 2.50 +amoureuses amoureux adj f p 107.79 58.45 2.73 4.05 +amoureux amoureux adj m 107.79 58.45 63.41 31.28 +amour_propre amour_propre nom m p 2.54 6.89 0.00 0.14 +amours amour nom p 458.27 403.92 7.81 30.34 +amovible amovible adj s 0.38 0.68 0.11 0.20 +amovibles amovible adj p 0.38 0.68 0.27 0.47 +amphi amphi nom m s 0.29 1.08 0.29 0.61 +amphibie amphibie adj s 0.71 0.61 0.38 0.47 +amphibien amphibien nom m s 0.20 0.00 0.12 0.00 +amphibiens amphibien nom m p 0.20 0.00 0.08 0.00 +amphibies amphibie adj p 0.71 0.61 0.33 0.14 +amphigouri amphigouri nom m s 0.02 0.27 0.00 0.27 +amphigourique amphigourique adj s 0.00 0.20 0.00 0.07 +amphigouriques amphigourique adj m p 0.00 0.20 0.00 0.14 +amphigouris amphigouri nom m p 0.02 0.27 0.02 0.00 +amphis amphi nom m p 0.29 1.08 0.00 0.47 +amphithéâtre amphithéâtre nom m s 0.59 2.57 0.46 2.09 +amphithéâtres amphithéâtre nom m p 0.59 2.57 0.14 0.47 +amphitrite amphitrite nom f s 0.00 0.07 0.00 0.07 +amphitryon amphitryon nom m s 0.13 0.07 0.13 0.07 +amphore amphore nom f s 0.46 1.35 0.45 0.81 +amphores amphore nom f p 0.46 1.35 0.01 0.54 +amphés amphé nom m p 0.36 0.14 0.36 0.14 +amphétamine amphétamine nom f s 1.13 0.54 0.27 0.14 +amphétamines amphétamine nom f p 1.13 0.54 0.86 0.41 +ample ample adj s 1.30 11.89 0.82 8.04 +amplement amplement adv 1.33 1.82 1.33 1.82 +amples ample adj p 1.30 11.89 0.48 3.85 +ampleur ampleur nom f s 2.38 7.57 2.38 7.43 +ampleurs ampleur nom f p 2.38 7.57 0.00 0.14 +ampli_tuner ampli_tuner nom m s 0.01 0.00 0.01 0.00 +ampli ampli nom m s 0.98 1.15 0.74 0.54 +amplifia amplifier ver 1.63 8.65 0.00 0.68 ind:pas:3s; +amplifiaient amplifier ver 1.63 8.65 0.00 0.47 ind:imp:3p; +amplifiait amplifier ver 1.63 8.65 0.05 2.43 ind:imp:3s; +amplifiant amplifier ver 1.63 8.65 0.01 0.54 par:pre; +amplificateur amplificateur nom m s 0.29 0.20 0.26 0.20 +amplificateurs amplificateur nom m p 0.29 0.20 0.04 0.00 +amplification amplification nom f s 0.21 0.54 0.19 0.54 +amplifications amplification nom f p 0.21 0.54 0.02 0.00 +amplifie amplifier ver 1.63 8.65 0.43 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amplifient amplifier ver 1.63 8.65 0.20 0.41 ind:pre:3p; +amplifier amplifier ver 1.63 8.65 0.37 0.61 inf; +amplifiera amplifier ver 1.63 8.65 0.05 0.00 ind:fut:3s; +amplifierais amplifier ver 1.63 8.65 0.00 0.07 cnd:pre:1s; +amplifiez amplifier ver 1.63 8.65 0.09 0.00 imp:pre:2p;ind:pre:2p; +amplifions amplifier ver 1.63 8.65 0.03 0.00 imp:pre:1p; +amplifièrent amplifier ver 1.63 8.65 0.00 0.20 ind:pas:3p; +amplifié amplifier ver m s 1.63 8.65 0.14 0.95 par:pas; +amplifiée amplifier ver f s 1.63 8.65 0.09 0.27 par:pas; +amplifiées amplifier ver f p 1.63 8.65 0.05 0.20 par:pas; +amplifiés amplifier ver m p 1.63 8.65 0.11 0.61 par:pas; +amplis ampli nom m p 0.98 1.15 0.24 0.61 +amplitude amplitude nom f s 0.29 1.76 0.29 1.76 +ampoule ampoule nom f s 7.66 19.12 4.80 11.49 +ampoules ampoule nom f p 7.66 19.12 2.85 7.64 +ampoulé ampoulé adj m s 0.07 0.95 0.05 0.54 +ampoulée ampoulé adj f s 0.07 0.95 0.01 0.20 +ampoulées ampoulé adj f p 0.07 0.95 0.00 0.20 +ampoulés ampoulé adj m p 0.07 0.95 0.01 0.00 +ampère ampère nom m s 0.26 0.07 0.01 0.00 +ampèremètre ampèremètre nom m s 0.02 0.00 0.02 0.00 +ampères ampère nom m p 0.26 0.07 0.25 0.07 +ampélopsis ampélopsis nom m 0.00 0.07 0.00 0.07 +ampérage ampérage nom m s 0.01 0.00 0.01 0.00 +amputa amputer ver 3.62 2.77 0.01 0.07 ind:pas:3s; +amputait amputer ver 3.62 2.77 0.03 0.07 ind:imp:3s; +amputant amputer ver 3.62 2.77 0.00 0.14 par:pre; +amputation amputation nom f s 0.79 1.62 0.55 1.28 +amputations amputation nom f p 0.79 1.62 0.23 0.34 +ampute amputer ver 3.62 2.77 0.71 0.20 ind:pre:1s;ind:pre:3s; +amputent amputer ver 3.62 2.77 0.02 0.00 ind:pre:3p; +amputer amputer ver 3.62 2.77 1.17 1.01 inf; +amputerai amputer ver 3.62 2.77 0.10 0.00 ind:fut:1s; +amputerait amputer ver 3.62 2.77 0.01 0.00 cnd:pre:3s; +amputez amputer ver 3.62 2.77 0.16 0.00 imp:pre:2p;ind:pre:2p; +amputé amputer ver m s 3.62 2.77 0.81 0.54 par:pas; +amputée amputer ver f s 3.62 2.77 0.40 0.61 par:pas; +amputées amputer ver f p 3.62 2.77 0.16 0.00 par:pas; +amputés amputé adj m p 1.28 1.49 0.81 0.27 +amène amener ver 190.32 93.92 59.80 13.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +amènent amener ver 190.32 93.92 2.29 1.62 ind:pre:3p;sub:pre:3p; +amènera amener ver 190.32 93.92 1.90 0.74 ind:fut:3s; +amènerai amener ver 190.32 93.92 2.39 0.34 ind:fut:1s; +amèneraient amener ver 190.32 93.92 0.03 0.41 cnd:pre:3p; +amènerais amener ver 190.32 93.92 0.88 0.14 cnd:pre:1s;cnd:pre:2s; +amènerait amener ver 190.32 93.92 0.36 2.16 cnd:pre:3s; +amèneras amener ver 190.32 93.92 0.28 0.07 ind:fut:2s; +amènerez amener ver 190.32 93.92 0.32 0.07 ind:fut:2p; +amèneriez amener ver 190.32 93.92 0.02 0.00 cnd:pre:2p; +amènerions amener ver 190.32 93.92 0.01 0.00 cnd:pre:1p; +amènerons amener ver 190.32 93.92 0.22 0.07 ind:fut:1p; +amèneront amener ver 190.32 93.92 0.50 0.14 ind:fut:3p; +amènes amener ver 190.32 93.92 5.79 0.81 ind:pre:2s;sub:pre:2s; +amère amer adj f s 11.94 30.07 3.65 12.03 +amèrement amèrement adv 0.63 5.20 0.63 5.20 +amères amer adj f p 11.94 30.07 1.22 3.78 +amé amé nom m s 0.01 0.00 0.01 0.00 +amulette amulette nom f s 3.08 1.08 2.45 0.41 +amulettes amulette nom f p 3.08 1.08 0.63 0.68 +améliora améliorer ver 22.34 8.65 0.03 0.14 ind:pas:3s; +améliorable améliorable adj s 0.00 0.07 0.00 0.07 +amélioraient améliorer ver 22.34 8.65 0.10 0.20 ind:imp:3p; +améliorait améliorer ver 22.34 8.65 0.10 0.54 ind:imp:3s; +améliorant améliorer ver 22.34 8.65 0.14 0.34 par:pre; +améliorateur améliorateur adj m s 0.04 0.00 0.04 0.00 +amélioration amélioration nom f s 2.87 2.43 2.08 2.23 +améliorations amélioration nom f p 2.87 2.43 0.79 0.20 +améliore améliorer ver 22.34 8.65 4.75 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +améliorent améliorer ver 22.34 8.65 0.56 0.34 ind:pre:3p; +améliorer améliorer ver 22.34 8.65 10.66 3.65 inf; +améliorera améliorer ver 22.34 8.65 0.79 0.20 ind:fut:3s; +améliorerait améliorer ver 22.34 8.65 0.09 0.07 cnd:pre:3s; +amélioreront améliorer ver 22.34 8.65 0.05 0.14 ind:fut:3p; +améliores améliorer ver 22.34 8.65 0.67 0.07 ind:pre:2s; +améliorez améliorer ver 22.34 8.65 0.23 0.07 imp:pre:2p;ind:pre:2p; +améliorons améliorer ver 22.34 8.65 0.07 0.00 imp:pre:1p;ind:pre:1p; +améliorèrent améliorer ver 22.34 8.65 0.01 0.00 ind:pas:3p; +amélioré améliorer ver m s 22.34 8.65 2.75 0.88 par:pas; +améliorée améliorer ver f s 22.34 8.65 1.01 0.34 par:pas; +améliorées améliorer ver f p 22.34 8.65 0.23 0.27 par:pas; +améliorés améliorer ver m p 22.34 8.65 0.10 0.20 par:pas; +aménage aménager ver 1.95 12.57 0.02 0.07 ind:pre:3s; +aménagea aménager ver 1.95 12.57 0.00 0.41 ind:pas:3s; +aménageai aménager ver 1.95 12.57 0.00 0.14 ind:pas:1s; +aménageaient aménager ver 1.95 12.57 0.01 0.07 ind:imp:3p; +aménageait aménager ver 1.95 12.57 0.00 0.14 ind:imp:3s; +aménageant aménager ver 1.95 12.57 0.00 0.14 par:pre; +aménagement aménagement nom m s 0.69 2.77 0.41 1.82 +aménagements aménagement nom m p 0.69 2.77 0.29 0.95 +aménagent aménager ver 1.95 12.57 0.00 0.20 ind:pre:3p; +aménager aménager ver 1.95 12.57 1.10 2.64 inf; +aménagerai aménager ver 1.95 12.57 0.01 0.07 ind:fut:1s; +aménagerait aménager ver 1.95 12.57 0.00 0.07 cnd:pre:3s; +aménagez aménager ver 1.95 12.57 0.00 0.07 imp:pre:2p; +aménagèrent aménager ver 1.95 12.57 0.00 0.14 ind:pas:3p; +aménagé aménager ver m s 1.95 12.57 0.48 3.72 par:pas; +aménagée aménager ver f s 1.95 12.57 0.29 3.31 par:pas; +aménagées aménager ver f p 1.95 12.57 0.01 0.68 par:pas; +aménagés aménager ver m p 1.95 12.57 0.03 0.74 par:pas; +aménité aménité nom f s 0.01 1.96 0.00 1.82 +aménités aménité nom f p 0.01 1.96 0.01 0.14 +aménorrhée aménorrhée nom f s 0.28 0.14 0.28 0.14 +amura amurer ver 0.03 0.00 0.03 0.00 ind:pas:3s; +amure amure nom f s 0.01 0.27 0.00 0.14 +amures amure nom f p 0.01 0.27 0.01 0.14 +américain américain adj m s 63.92 74.73 30.93 25.95 +américaine américain adj f s 63.92 74.73 17.49 19.53 +américaines américain adj f p 63.92 74.73 3.48 10.47 +américains américain nom m p 45.64 47.43 24.90 26.28 +américanisais américaniser ver 0.03 0.14 0.00 0.07 ind:imp:1s; +américanisation américanisation nom f s 0.02 0.07 0.02 0.07 +américaniser américaniser ver 0.03 0.14 0.01 0.00 inf; +américanisme américanisme nom m s 0.03 0.14 0.03 0.07 +américanismes américanisme nom m p 0.03 0.14 0.00 0.07 +américanisé américaniser ver m s 0.03 0.14 0.02 0.00 par:pas; +américanisés américaniser ver m p 0.03 0.14 0.00 0.07 par:pas; +américanité américanité nom f s 0.00 0.07 0.00 0.07 +américano_britannique américano_britannique adj s 0.01 0.00 0.01 0.00 +américano_japonais américano_japonais adj f s 0.01 0.00 0.01 0.00 +américano_russe américano_russe adj f s 0.01 0.00 0.01 0.00 +américano_soviétique américano_soviétique adj m s 0.03 0.00 0.03 0.00 +américano_suédois américano_suédois adj f s 0.01 0.00 0.01 0.00 +américano américano nom m s 0.01 0.27 0.01 0.20 +américanophile américanophile adj s 0.00 0.27 0.00 0.20 +américanophiles américanophile adj p 0.00 0.27 0.00 0.07 +américanos américano nom m p 0.01 0.27 0.00 0.07 +américium américium nom m s 0.03 0.00 0.03 0.00 +amérindien amérindien adj m s 0.14 0.07 0.04 0.00 +amérindienne amérindien adj f s 0.14 0.07 0.06 0.00 +amérindiennes amérindien adj f p 0.14 0.07 0.01 0.07 +amérindiens amérindien nom m p 0.12 0.00 0.08 0.00 +amérique amérique nom f s 0.34 1.08 0.34 1.08 +amusa amuser ver 141.41 120.95 0.11 4.26 ind:pas:3s; +amusai amuser ver 141.41 120.95 0.01 0.54 ind:pas:1s; +amusaient amuser ver 141.41 120.95 0.75 4.53 ind:imp:3p; +amusais amuser ver 141.41 120.95 1.78 3.18 ind:imp:1s;ind:imp:2s; +amusait amuser ver 141.41 120.95 4.59 18.24 ind:imp:3s; +amusant amusant adj m s 29.36 18.85 25.24 13.04 +amusante amusant adj f s 29.36 18.85 2.34 3.11 +amusantes amusant adj f p 29.36 18.85 0.96 1.15 +amusants amusant adj m p 29.36 18.85 0.81 1.55 +amuse_bouche amuse_bouche nom m 0.05 0.00 0.03 0.00 +amuse_bouche amuse_bouche nom m p 0.05 0.00 0.02 0.00 +amuse_gueule amuse_gueule nom m 1.23 0.81 0.53 0.81 +amuse_gueule amuse_gueule nom m p 1.23 0.81 0.70 0.00 +amuse amuser ver 141.41 120.95 39.85 24.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +amusement amusement nom m s 4.29 7.30 3.88 6.35 +amusements amusement nom m p 4.29 7.30 0.41 0.95 +amusent amuser ver 141.41 120.95 4.03 4.26 ind:pre:3p; +amuser amuser ver 141.41 120.95 43.77 25.34 inf;;inf;;inf;; +amusera amuser ver 141.41 120.95 1.25 1.08 ind:fut:3s; +amuserai amuser ver 141.41 120.95 0.25 0.07 ind:fut:1s; +amuseraient amuser ver 141.41 120.95 0.12 0.41 cnd:pre:3p; +amuserais amuser ver 141.41 120.95 0.42 0.27 cnd:pre:1s;cnd:pre:2s; +amuserait amuser ver 141.41 120.95 1.04 2.16 cnd:pre:3s; +amuseras amuser ver 141.41 120.95 0.58 0.07 ind:fut:2s; +amuserez amuser ver 141.41 120.95 0.22 0.07 ind:fut:2p; +amuseriez amuser ver 141.41 120.95 0.03 0.00 cnd:pre:2p; +amuserons amuser ver 141.41 120.95 0.16 0.00 ind:fut:1p; +amuseront amuser ver 141.41 120.95 0.15 0.14 ind:fut:3p; +amuses amuser ver 141.41 120.95 7.11 0.54 ind:pre:2s;sub:pre:2s; +amusette amusette nom f s 0.03 1.15 0.03 0.61 +amusettes amusette nom f p 0.03 1.15 0.00 0.54 +amuseur amuseur nom m s 0.24 0.34 0.18 0.20 +amuseurs amuseur nom m p 0.24 0.34 0.06 0.14 +amusez amuser ver 141.41 120.95 14.84 1.15 imp:pre:2p;ind:pre:2p; +amusiez amuser ver 141.41 120.95 0.46 0.14 ind:imp:2p; +amusions amuser ver 141.41 120.95 0.36 0.47 ind:imp:1p; +amusâmes amuser ver 141.41 120.95 0.00 0.20 ind:pas:1p; +amusons amuser ver 141.41 120.95 1.48 0.41 imp:pre:1p;ind:pre:1p; +amusât amuser ver 141.41 120.95 0.01 0.34 sub:imp:3s; +amusèrent amuser ver 141.41 120.95 0.01 0.95 ind:pas:3p; +amusé amuser ver m s 141.41 120.95 6.99 12.16 par:pas; +amusée amuser ver f s 141.41 120.95 3.92 7.43 par:pas; +amusées amuser ver f p 141.41 120.95 0.33 0.74 par:pas; +amusés amuser ver m p 141.41 120.95 4.41 2.91 par:pas; +améthyste améthyste nom f s 0.22 0.81 0.20 0.27 +améthystes améthyste nom f p 0.22 0.81 0.02 0.54 +amygdale amygdale nom f s 1.50 0.95 0.21 0.07 +amygdalectomie amygdalectomie nom f s 0.14 0.00 0.13 0.00 +amygdalectomies amygdalectomie nom f p 0.14 0.00 0.01 0.00 +amygdales amygdale nom f p 1.50 0.95 1.29 0.88 +amygdalien amygdalien adj m s 0.02 0.00 0.02 0.00 +amygdalite amygdalite nom f s 0.23 0.00 0.23 0.00 +amylase amylase nom f s 0.09 0.00 0.09 0.00 +amyle amyle nom m s 0.02 0.27 0.02 0.27 +amylique amylique adj m s 0.02 0.00 0.02 0.00 +amyotrophique amyotrophique adj f s 0.05 0.07 0.05 0.07 +an an nom m s 866.58 685.81 148.41 76.76 +ana ana nom m 4.91 0.14 4.91 0.14 +anabaptiste anabaptiste adj s 0.01 0.41 0.01 0.34 +anabaptistes anabaptiste nom p 0.00 0.34 0.00 0.34 +anabase anabase nom f s 0.00 0.14 0.00 0.14 +anabolisant anabolisant adj m s 0.02 0.00 0.01 0.00 +anabolisant anabolisant nom m s 0.09 0.00 0.01 0.00 +anabolisants anabolisant nom m p 0.09 0.00 0.08 0.00 +anachorète anachorète nom m s 0.11 0.47 0.10 0.41 +anachorètes anachorète nom m p 0.11 0.47 0.01 0.07 +anachronique anachronique adj s 0.04 2.36 0.04 1.69 +anachroniquement anachroniquement adv 0.00 0.07 0.00 0.07 +anachroniques anachronique adj p 0.04 2.36 0.00 0.68 +anachronisme anachronisme nom m s 0.26 0.88 0.24 0.54 +anachronismes anachronisme nom m p 0.26 0.88 0.02 0.34 +anacoluthe anacoluthe nom f s 0.10 0.07 0.10 0.07 +anaconda anaconda nom m s 0.49 0.00 0.43 0.00 +anacondas anaconda nom m p 0.49 0.00 0.06 0.00 +anadyomène anadyomène adj f s 0.00 0.14 0.00 0.14 +anaglyphe anaglyphe nom m s 0.04 0.00 0.04 0.00 +anagramme anagramme nom f s 0.60 0.20 0.47 0.07 +anagrammes anagramme nom f p 0.60 0.20 0.13 0.14 +anal anal adj m s 2.18 0.74 1.43 0.54 +anale anal adj f s 2.18 0.74 0.35 0.07 +analeptiques analeptique nom m p 0.01 0.00 0.01 0.00 +anales anal adj f p 2.18 0.74 0.23 0.14 +analgésie analgésie nom f s 0.01 0.00 0.01 0.00 +analgésique analgésique nom m s 0.64 0.07 0.27 0.00 +analgésiques analgésique nom m p 0.64 0.07 0.37 0.07 +analogie analogie nom f s 0.98 2.03 0.84 1.49 +analogies analogie nom f p 0.98 2.03 0.14 0.54 +analogique analogique adj s 0.35 0.14 0.28 0.07 +analogiques analogique adj p 0.35 0.14 0.07 0.07 +analogue analogue adj s 0.53 6.82 0.38 4.66 +analogues analogue adj p 0.53 6.82 0.16 2.16 +analphabète analphabète adj s 1.18 1.22 0.78 0.88 +analphabètes analphabète nom p 1.09 1.15 0.73 0.68 +analphabétisme analphabétisme nom m s 0.13 0.20 0.13 0.20 +analysa analyser ver 15.40 7.43 0.00 0.41 ind:pas:3s; +analysaient analyser ver 15.40 7.43 0.02 0.14 ind:imp:3p; +analysais analyser ver 15.40 7.43 0.04 0.14 ind:imp:1s; +analysait analyser ver 15.40 7.43 0.18 0.81 ind:imp:3s; +analysant analyser ver 15.40 7.43 0.16 0.14 par:pre; +analysants analysant nom m p 0.02 0.20 0.00 0.14 +analyse analyse nom f s 23.26 12.43 14.87 8.31 +analysent analyser ver 15.40 7.43 0.11 0.00 ind:pre:3p; +analyser analyser ver 15.40 7.43 6.90 3.38 inf; +analysera analyser ver 15.40 7.43 0.15 0.00 ind:fut:3s; +analyserai analyser ver 15.40 7.43 0.04 0.14 ind:fut:1s; +analyserait analyser ver 15.40 7.43 0.01 0.00 cnd:pre:3s; +analyserons analyser ver 15.40 7.43 0.13 0.00 ind:fut:1p; +analyseront analyser ver 15.40 7.43 0.03 0.07 ind:fut:3p; +analyses analyse nom f p 23.26 12.43 8.39 4.12 +analyseur analyseur nom m s 0.45 0.00 0.29 0.00 +analyseurs analyseur nom m p 0.45 0.00 0.16 0.00 +analysez analyser ver 15.40 7.43 0.42 0.00 imp:pre:2p;ind:pre:2p; +analysions analyser ver 15.40 7.43 0.01 0.07 ind:imp:1p; +analysons analyser ver 15.40 7.43 0.57 0.14 imp:pre:1p;ind:pre:1p; +analyste analyste nom s 2.44 1.08 1.82 0.88 +analystes analyste nom p 2.44 1.08 0.62 0.20 +analysèrent analyser ver 15.40 7.43 0.01 0.07 ind:pas:3p; +analysé analyser ver m s 15.40 7.43 3.36 0.61 par:pas; +analysée analyser ver f s 15.40 7.43 0.47 0.07 par:pas; +analysées analyser ver f p 15.40 7.43 0.29 0.07 par:pas; +analysés analyser ver m p 15.40 7.43 0.07 0.00 par:pas; +analytique analytique adj s 0.38 0.34 0.38 0.34 +analytiquement analytiquement adv 0.01 0.07 0.01 0.07 +anamnèse anamnèse nom f s 0.00 0.07 0.00 0.07 +anamorphose anamorphose nom f s 0.00 0.27 0.00 0.27 +ananas ananas nom m 2.02 3.51 2.02 3.51 +anaphase anaphase nom f s 0.03 0.00 0.03 0.00 +anaphoriquement anaphoriquement adv 0.00 0.14 0.00 0.14 +anaphylactique anaphylactique adj s 0.52 0.00 0.52 0.00 +anaphylaxie anaphylaxie nom f s 0.06 0.00 0.06 0.00 +anar anar nom s 0.01 0.74 0.01 0.34 +anarchie anarchie nom f s 4.18 4.80 4.18 4.80 +anarchique anarchique adj s 0.18 1.15 0.18 1.08 +anarchiquement anarchiquement adv 0.01 0.14 0.01 0.14 +anarchiques anarchique adj p 0.18 1.15 0.00 0.07 +anarchisant anarchisant adj m s 0.01 0.00 0.01 0.00 +anarchisme anarchisme nom m s 0.71 0.47 0.71 0.47 +anarchiste anarchiste adj s 1.69 2.84 1.19 2.16 +anarchistes anarchiste nom p 2.02 4.46 1.03 2.30 +anarcho_syndicalisme anarcho_syndicalisme nom m s 0.00 0.07 0.00 0.07 +anarcho_syndicaliste anarcho_syndicaliste adj s 0.00 0.14 0.00 0.07 +anarcho_syndicaliste anarcho_syndicaliste adj m p 0.00 0.14 0.00 0.07 +anars anar nom p 0.01 0.74 0.00 0.41 +anas anas nom m 0.02 0.07 0.02 0.07 +anastomose anastomose nom f s 0.08 0.07 0.08 0.00 +anastomoses anastomose nom f p 0.08 0.07 0.00 0.07 +anathème anathème nom m s 1.12 1.08 1.08 0.88 +anathèmes anathème nom m p 1.12 1.08 0.03 0.20 +anathématisait anathématiser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +anathématisé anathématiser ver m s 0.00 0.14 0.00 0.07 par:pas; +anatidés anatidé nom m p 0.00 0.07 0.00 0.07 +anatifes anatife nom m p 0.01 0.07 0.01 0.07 +anatomie anatomie nom f s 3.63 4.80 3.37 4.66 +anatomies anatomie nom f p 3.63 4.80 0.26 0.14 +anatomique anatomique adj s 0.26 1.69 0.10 1.15 +anatomiquement anatomiquement adv 0.09 0.20 0.09 0.20 +anatomiques anatomique adj p 0.26 1.69 0.16 0.54 +anatomiser anatomiser ver 0.00 0.07 0.00 0.07 inf; +anatomiste anatomiste nom s 0.00 0.34 0.00 0.27 +anatomistes anatomiste nom p 0.00 0.34 0.00 0.07 +anatomophysiologique anatomophysiologique adj m s 0.00 0.07 0.00 0.07 +anaérobie anaérobie adj m s 0.05 0.00 0.05 0.00 +anaux anal adj m p 2.18 0.74 0.16 0.00 +ancestral ancestral adj m s 2.22 5.41 1.04 1.89 +ancestrale ancestral adj f s 2.22 5.41 0.97 2.03 +ancestralement ancestralement adv 0.01 0.14 0.01 0.14 +ancestrales ancestral adj f p 2.22 5.41 0.12 1.35 +ancestralité ancestralité nom f s 0.00 0.07 0.00 0.07 +ancestraux ancestral adj m p 2.22 5.41 0.09 0.14 +anch_io_son_pittore anch_io_son_pittore adv 0.00 0.07 0.00 0.07 +anche anche nom f s 0.17 0.27 0.17 0.27 +anchilops anchilops nom m 0.00 0.07 0.00 0.07 +anchoïade anchoïade nom f s 0.00 0.07 0.00 0.07 +anchois anchois nom m 1.30 2.57 1.30 2.57 +ancien ancien adj m s 73.16 154.86 32.41 59.26 +ancienne ancien adj f s 73.16 154.86 19.82 37.09 +anciennement anciennement adv 0.45 1.01 0.45 1.01 +anciennes ancien adj f p 73.16 154.86 6.22 18.65 +ancienneté ancienneté nom f s 0.90 1.55 0.90 1.55 +anciens ancien adj m p 73.16 154.86 14.72 39.86 +ancillaire ancillaire adj f s 0.01 0.88 0.00 0.34 +ancillaires ancillaire adj p 0.01 0.88 0.01 0.54 +ancolie ancolie nom f s 0.00 0.07 0.00 0.07 +ancra ancrer ver 1.79 5.54 0.10 0.20 ind:pas:3s; +ancrage ancrage nom m s 0.19 0.41 0.19 0.41 +ancraient ancrer ver 1.79 5.54 0.00 0.07 ind:imp:3p; +ancrais ancrer ver 1.79 5.54 0.00 0.07 ind:imp:1s; +ancrait ancrer ver 1.79 5.54 0.01 0.14 ind:imp:3s; +ancrant ancrer ver 1.79 5.54 0.00 0.07 par:pre; +ancre ancre nom f s 4.75 5.81 4.63 4.53 +ancrer ancrer ver 1.79 5.54 0.26 0.61 inf; +ancrera ancrer ver 1.79 5.54 0.02 0.00 ind:fut:3s; +ancres ancre nom f p 4.75 5.81 0.11 1.28 +ancrez ancrer ver 1.79 5.54 0.02 0.00 imp:pre:2p; +ancré ancrer ver m s 1.79 5.54 0.64 2.16 par:pas; +ancrée ancrer ver f s 1.79 5.54 0.42 1.08 par:pas; +ancrées ancrer ver f p 1.79 5.54 0.05 0.34 par:pas; +ancrés ancré adj m p 0.40 1.08 0.14 0.20 +ancêtre ancêtre nom s 12.75 22.23 1.61 6.28 +ancêtres ancêtre nom p 12.75 22.23 11.14 15.95 +anda anda nom m s 1.13 0.14 1.13 0.14 +andain andain nom m s 0.00 0.20 0.00 0.07 +andains andain nom m p 0.00 0.20 0.00 0.14 +andalou andalou adj m s 0.21 2.23 0.20 1.08 +andalous andalou nom m p 0.14 1.15 0.14 0.27 +andalouse andalouse nom f s 0.02 0.47 0.02 0.47 +andalouses andalou adj f p 0.21 2.23 0.01 0.20 +andante andante nom m s 0.14 0.47 0.14 0.47 +andine andin adj f s 0.01 0.14 0.01 0.07 +andines andin adj f p 0.01 0.14 0.00 0.07 +andorranes andorran adj f p 0.00 0.07 0.00 0.07 +andouille andouille nom f s 6.94 6.28 6.29 4.86 +andouiller andouiller nom m s 0.02 1.28 0.00 0.20 +andouillers andouiller nom m p 0.02 1.28 0.02 1.08 +andouilles andouille nom f p 6.94 6.28 0.65 1.42 +andouillette andouillette nom f s 0.07 0.74 0.04 0.54 +andouillettes andouillette nom f p 0.07 0.74 0.03 0.20 +andrinople andrinople nom f s 0.00 0.20 0.00 0.20 +androïde androïde nom m s 0.82 0.07 0.44 0.07 +androïdes androïde nom m p 0.82 0.07 0.38 0.00 +androgènes androgène nom m p 0.01 0.00 0.01 0.00 +androgyne androgyne nom s 0.17 0.41 0.16 0.41 +androgynes androgyne adj p 0.06 0.54 0.01 0.27 +androgynie androgynie nom f s 0.00 0.07 0.00 0.07 +androgynique androgynique adj s 0.00 0.07 0.00 0.07 +andropause andropause nom f s 0.23 0.14 0.23 0.14 +anecdote anecdote nom f s 2.12 12.91 1.13 5.34 +anecdotes anecdote nom f p 2.12 12.91 0.99 7.57 +anecdotier anecdotier nom m s 0.01 0.00 0.01 0.00 +anecdotique anecdotique adj s 0.18 0.81 0.14 0.61 +anecdotiquement anecdotiquement adv 0.00 0.14 0.00 0.14 +anecdotiques anecdotique adj p 0.18 0.81 0.04 0.20 +anesthésia anesthésier ver 1.18 1.55 0.00 0.07 ind:pas:3s; +anesthésiaient anesthésier ver 1.18 1.55 0.00 0.14 ind:imp:3p; +anesthésiait anesthésier ver 1.18 1.55 0.00 0.07 ind:imp:3s; +anesthésiant anesthésiant nom m s 0.44 0.14 0.44 0.07 +anesthésiante anesthésiant adj f s 0.32 0.20 0.00 0.07 +anesthésiantes anesthésiant adj f p 0.32 0.20 0.02 0.14 +anesthésiants anesthésiant adj m p 0.32 0.20 0.02 0.00 +anesthésie anesthésie nom f s 3.74 2.70 3.71 2.64 +anesthésient anesthésier ver 1.18 1.55 0.01 0.07 ind:pre:3p; +anesthésier anesthésier ver 1.18 1.55 0.37 0.07 inf; +anesthésierai anesthésier ver 1.18 1.55 0.01 0.00 ind:fut:1s; +anesthésies anesthésie nom f p 3.74 2.70 0.02 0.07 +anesthésiez anesthésier ver 1.18 1.55 0.16 0.00 imp:pre:2p;ind:pre:2p; +anesthésions anesthésier ver 1.18 1.55 0.02 0.00 ind:pre:1p; +anesthésique anesthésique nom m s 0.47 0.34 0.44 0.34 +anesthésiques anesthésique nom m p 0.47 0.34 0.03 0.00 +anesthésiste anesthésiste nom s 1.07 0.61 0.82 0.61 +anesthésistes anesthésiste nom p 1.07 0.61 0.25 0.00 +anesthésié anesthésier ver m s 1.18 1.55 0.14 0.20 par:pas; +anesthésiée anesthésier ver f s 1.18 1.55 0.08 0.54 par:pas; +anesthésiées anesthésier ver f p 1.18 1.55 0.00 0.07 par:pas; +anesthésiés anesthésier ver m p 1.18 1.55 0.01 0.20 par:pas; +aneth aneth nom m s 0.07 0.61 0.07 0.61 +anfractuosité anfractuosité nom f s 0.14 1.28 0.14 0.54 +anfractuosités anfractuosité nom f p 0.14 1.28 0.00 0.74 +ange ange nom m s 69.27 42.50 47.90 21.62 +angelot angelot nom m s 0.69 1.49 0.37 0.74 +angelots angelot nom m p 0.69 1.49 0.32 0.74 +anges ange nom m p 69.27 42.50 21.38 20.88 +angevin angevin adj m s 0.10 0.07 0.10 0.00 +angevine angevin nom f s 0.00 0.14 0.00 0.07 +angevins angevin nom m p 0.00 0.14 0.00 0.07 +angine angine nom f s 1.39 2.57 1.20 2.30 +angines angine nom f p 1.39 2.57 0.19 0.27 +angiocholite angiocholite nom f s 0.01 0.00 0.01 0.00 +angiographie angiographie nom f s 0.32 0.00 0.32 0.00 +angiome angiome nom m s 0.13 0.00 0.13 0.00 +angioplastie angioplastie nom f s 0.19 0.00 0.19 0.00 +anglais anglais nom m 51.01 79.53 48.81 69.46 +anglaise anglais adj f s 32.22 61.69 8.21 18.58 +anglaises anglais adj f p 32.22 61.69 1.00 6.42 +angle angle nom m s 13.29 57.64 11.56 46.89 +angler angler ver 0.22 0.20 0.01 0.07 inf; +angles angle nom m p 13.29 57.64 1.73 10.74 +angleterre angleterre nom f s 0.20 0.47 0.20 0.47 +anglican anglican adj m s 0.16 0.61 0.06 0.34 +anglicane anglican adj f s 0.16 0.61 0.10 0.14 +anglicans anglican nom m p 0.04 0.07 0.01 0.00 +angliche angliche nom s 0.44 0.41 0.32 0.20 +angliches angliche nom p 0.44 0.41 0.12 0.20 +anglicisation anglicisation nom f s 0.00 0.07 0.00 0.07 +angliciser angliciser ver 0.11 0.00 0.01 0.00 inf; +anglicismes anglicisme nom m p 0.00 0.07 0.00 0.07 +anglicisé angliciser ver m s 0.11 0.00 0.10 0.00 par:pas; +anglo_albanais anglo_albanais adj m s 0.00 0.07 0.00 0.07 +anglo_allemand anglo_allemand adj m s 0.01 0.00 0.01 0.00 +anglo_américain anglo_américain adj m s 0.05 0.20 0.01 0.07 +anglo_américain anglo_américain adj f s 0.05 0.20 0.02 0.07 +anglo_américain anglo_américain adj f p 0.05 0.20 0.00 0.07 +anglo_américain anglo_américain adj m p 0.05 0.20 0.02 0.00 +anglo_arabe anglo_arabe adj s 0.00 0.27 0.00 0.14 +anglo_arabe anglo_arabe adj m p 0.00 0.27 0.00 0.14 +anglo_chinois anglo_chinois adj m s 0.01 0.00 0.01 0.00 +anglo_français anglo_français adj m s 0.02 0.14 0.01 0.07 +anglo_français anglo_français adj f s 0.02 0.14 0.01 0.07 +anglo_hellénique anglo_hellénique adj f s 0.00 0.07 0.00 0.07 +anglo_irlandais anglo_irlandais adj m s 0.00 0.27 0.00 0.27 +anglo_normand anglo_normand adj m s 0.04 0.34 0.00 0.14 +anglo_normand anglo_normand adj f s 0.04 0.34 0.00 0.20 +anglo_normand anglo_normand adj f p 0.04 0.34 0.04 0.00 +anglo_russe anglo_russe adj m s 0.02 0.00 0.01 0.00 +anglo_russe anglo_russe adj f p 0.02 0.00 0.01 0.00 +anglo_saxon anglo_saxon adj m s 0.48 4.12 0.23 1.08 +anglo_saxon anglo_saxon adj f s 0.48 4.12 0.04 0.74 +anglo_saxon anglo_saxon adj f p 0.48 4.12 0.18 0.88 +anglo_saxon anglo_saxon adj m p 0.48 4.12 0.03 1.42 +anglo_soviétique anglo_soviétique adj s 0.02 0.07 0.02 0.07 +anglo_égyptien anglo_égyptien adj m s 0.01 0.41 0.00 0.20 +anglo_égyptien anglo_égyptien adj f s 0.01 0.41 0.01 0.20 +anglo_éthiopien anglo_éthiopien adj m s 0.00 0.07 0.00 0.07 +anglomane anglomane adj s 0.00 0.14 0.00 0.07 +anglomanes anglomane adj p 0.00 0.14 0.00 0.07 +anglomanie anglomanie nom f s 0.00 0.07 0.00 0.07 +anglophile anglophile adj f s 0.02 0.20 0.02 0.20 +anglophobe anglophobe adj s 0.01 0.00 0.01 0.00 +anglophobes anglophobe nom p 0.00 0.07 0.00 0.07 +anglophobie anglophobie nom f s 0.00 0.07 0.00 0.07 +anglophone anglophone adj s 0.10 0.14 0.09 0.14 +anglophones anglophone nom p 0.01 0.07 0.01 0.07 +angoissa angoisser ver 5.84 5.88 0.00 0.14 ind:pas:3s; +angoissaient angoisser ver 5.84 5.88 0.01 0.14 ind:imp:3p; +angoissais angoisser ver 5.84 5.88 0.06 0.00 ind:imp:1s; +angoissait angoisser ver 5.84 5.88 0.07 1.35 ind:imp:3s; +angoissant angoissant adj m s 1.87 4.19 0.80 1.96 +angoissante angoissant adj f s 1.87 4.19 1.05 1.42 +angoissantes angoissant adj f p 1.87 4.19 0.01 0.27 +angoissants angoissant adj m p 1.87 4.19 0.01 0.54 +angoisse angoisse nom f s 17.82 68.99 14.98 60.68 +angoissent angoisser ver 5.84 5.88 0.25 0.00 ind:pre:3p; +angoisser angoisser ver 5.84 5.88 0.98 0.27 inf; +angoisserait angoisser ver 5.84 5.88 0.01 0.00 cnd:pre:3s; +angoisses angoisse nom f p 17.82 68.99 2.84 8.31 +angoissez angoisser ver 5.84 5.88 0.02 0.00 ind:pre:2p; +angoissiez angoisser ver 5.84 5.88 0.01 0.00 ind:imp:2p; +angoissé angoisser ver m s 5.84 5.88 0.55 0.95 par:pas; +angoissée angoissé adj f s 1.17 5.27 0.88 2.09 +angoissées angoissé nom f p 0.16 1.22 0.01 0.07 +angoissés angoissé adj m p 1.17 5.27 0.01 0.27 +angolais angolais adj m p 0.20 0.07 0.20 0.07 +angon angon nom m s 0.00 0.41 0.00 0.41 +angor angor nom m s 0.01 0.00 0.01 0.00 +angora angora nom m s 0.29 0.47 0.29 0.34 +angoras angora nom m p 0.29 0.47 0.00 0.14 +angström angström nom m s 0.01 0.20 0.01 0.20 +anguille anguille nom f s 4.32 3.31 1.74 2.03 +anguilles anguille nom f p 4.32 3.31 2.58 1.28 +anguillules anguillule nom f p 0.00 0.07 0.00 0.07 +anguis anguis nom m 0.00 0.07 0.00 0.07 +angéite angéite nom f s 0.01 0.00 0.01 0.00 +angulaire angulaire adj s 0.36 0.47 0.32 0.34 +angulaires angulaire adj p 0.36 0.47 0.05 0.14 +anguleuse anguleux adj f s 0.63 3.24 0.45 0.81 +anguleuses anguleux adj f p 0.63 3.24 0.01 0.61 +anguleux anguleux adj m 0.63 3.24 0.17 1.82 +angélique angélique adj s 0.59 4.86 0.41 3.85 +angéliquement angéliquement adv 0.00 0.14 0.00 0.14 +angéliques angélique adj p 0.59 4.86 0.17 1.01 +angélisme angélisme nom m s 0.00 0.47 0.00 0.47 +angulosité angulosité nom f s 0.00 0.07 0.00 0.07 +angélus angélus nom m 0.80 1.28 0.80 1.28 +angustura angustura nom f s 0.00 0.27 0.00 0.27 +anhèle anhéler ver 0.00 0.07 0.00 0.07 ind:pre:3s; +anhélations anhélation nom f p 0.00 0.07 0.00 0.07 +anhydre anhydre adj f s 0.04 0.00 0.04 0.00 +anhydride anhydride nom m s 0.04 0.07 0.04 0.07 +anicroche anicroche nom f s 0.12 0.74 0.06 0.54 +anicroches anicroche nom f p 0.12 0.74 0.06 0.20 +aniline aniline nom f s 0.01 0.27 0.01 0.27 +anima animer ver 6.28 33.78 0.29 1.89 ind:pas:3s; +animai animer ver 6.28 33.78 0.34 0.07 ind:pas:1s; +animaient animer ver 6.28 33.78 0.12 1.42 ind:imp:3p; +animais animer ver 6.28 33.78 0.03 0.07 ind:imp:1s; +animait animer ver 6.28 33.78 0.46 6.28 ind:imp:3s; +animal_roi animal_roi nom m s 0.00 0.07 0.00 0.07 +animal animal nom m s 80.50 82.64 36.89 47.23 +animalcule animalcule nom m s 0.00 0.14 0.00 0.14 +animale animal adj f s 6.33 14.19 1.96 6.49 +animalement animalement adv 0.00 0.27 0.00 0.27 +animalerie animalerie nom f s 0.42 0.07 0.42 0.07 +animales animal adj f p 6.33 14.19 1.03 1.69 +animalier animalier adj m s 0.48 0.61 0.32 0.20 +animaliers animalier adj m p 0.48 0.61 0.12 0.00 +animalisait animaliser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +animalise animaliser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +animalière animalier adj f s 0.48 0.61 0.01 0.34 +animalières animalier adj f p 0.48 0.61 0.03 0.07 +animalité animalité nom f s 0.01 1.42 0.01 1.42 +animant animer ver 6.28 33.78 0.01 0.81 par:pre; +animas animer ver 6.28 33.78 0.03 0.00 ind:pas:2s; +animateur animateur nom m s 2.72 2.23 1.90 1.42 +animateurs animateur nom m p 2.72 2.23 0.12 0.61 +animation animation nom f s 1.53 8.31 1.45 8.18 +animations animation nom f p 1.53 8.31 0.08 0.14 +animatrice animateur nom f s 2.72 2.23 0.69 0.14 +animatrices animateur nom f p 2.72 2.23 0.00 0.07 +animaux_espions animaux_espions nom m p 0.01 0.00 0.01 0.00 +animaux animal nom m p 80.50 82.64 43.62 35.41 +anime animer ver 6.28 33.78 1.82 5.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +animent animer ver 6.28 33.78 0.12 1.22 ind:pre:3p; +animer animer ver 6.28 33.78 0.94 4.12 inf; +animeraient animer ver 6.28 33.78 0.00 0.14 cnd:pre:3p; +animerait animer ver 6.28 33.78 0.00 0.27 cnd:pre:3s; +animes animer ver 6.28 33.78 0.07 0.00 ind:pre:2s; +animique animique adj s 0.00 0.07 0.00 0.07 +animisme animisme nom m s 0.00 0.07 0.00 0.07 +animiste animiste adj f s 0.00 0.07 0.00 0.07 +animosité animosité nom f s 1.09 2.64 1.07 2.57 +animosités animosité nom f p 1.09 2.64 0.01 0.07 +animât animer ver 6.28 33.78 0.00 0.20 sub:imp:3s; +animèrent animer ver 6.28 33.78 0.00 0.81 ind:pas:3p; +animé animé adj m s 6.21 8.92 2.79 3.18 +animée animer ver f s 6.28 33.78 0.37 3.78 par:pas; +animées animé adj f p 6.21 8.92 0.42 1.22 +animés animé adj m p 6.21 8.92 2.66 1.42 +animus animus nom m 0.02 0.00 0.02 0.00 +anionique anionique adj m s 0.01 0.00 0.01 0.00 +anis anis nom m 1.05 2.50 1.05 2.50 +anise aniser ver 0.11 0.20 0.10 0.00 imp:pre:2s; +anisette anisette nom f s 0.15 1.15 0.15 1.01 +anisettes anisette nom f p 0.15 1.15 0.00 0.14 +anisé aniser ver m s 0.11 0.20 0.00 0.07 par:pas; +anisée aniser ver f s 0.11 0.20 0.01 0.07 par:pas; +anisées aniser ver f p 0.11 0.20 0.00 0.07 par:pas; +ankh ankh nom m s 0.07 0.07 0.07 0.07 +ankylosait ankyloser ver 0.00 0.88 0.00 0.14 ind:imp:3s; +ankylose ankylose nom f s 0.12 0.95 0.12 0.88 +ankyloser ankyloser ver 0.00 0.88 0.00 0.14 inf; +ankyloses ankylose nom f p 0.12 0.95 0.00 0.07 +ankylosé ankylosé adj m s 0.13 1.28 0.11 0.47 +ankylosée ankylosé adj f s 0.13 1.28 0.01 0.41 +ankylosées ankylosé adj f p 0.13 1.28 0.00 0.20 +ankylosés ankylosé adj m p 0.13 1.28 0.00 0.20 +annales annales nom f 0.78 1.76 0.78 1.76 +annamite annamite nom s 0.00 0.34 0.00 0.14 +annamites annamite nom p 0.00 0.34 0.00 0.20 +anneau anneau nom m s 21.61 17.50 17.59 9.53 +anneaux anneau nom m p 21.61 17.50 4.01 7.97 +annelets annelet nom m p 0.00 0.07 0.00 0.07 +annelé annelé adj m s 0.00 1.22 0.00 0.27 +annelée annelé adj f s 0.00 1.22 0.00 0.41 +annelées annelé adj f p 0.00 1.22 0.00 0.34 +annelures annelure nom f p 0.00 0.07 0.00 0.07 +annelés annelé adj m p 0.00 1.22 0.00 0.20 +annexa annexer ver 0.90 3.45 0.00 0.07 ind:pas:3s; +annexaient annexer ver 0.90 3.45 0.00 0.34 ind:imp:3p; +annexait annexer ver 0.90 3.45 0.00 0.14 ind:imp:3s; +annexant annexer ver 0.90 3.45 0.02 0.07 par:pre; +annexe annexe nom f s 1.36 2.97 1.27 2.03 +annexer annexer ver 0.90 3.45 0.51 0.81 inf; +annexes annexe adj p 1.17 1.22 0.46 0.61 +annexion annexion nom f s 0.37 0.74 0.37 0.61 +annexions annexion nom f p 0.37 0.74 0.00 0.14 +annexèrent annexer ver 0.90 3.45 0.00 0.07 ind:pas:3p; +annexé annexer ver m s 0.90 3.45 0.14 0.88 par:pas; +annexée annexer ver f s 0.90 3.45 0.02 0.41 par:pas; +annexées annexer ver f p 0.90 3.45 0.00 0.14 par:pas; +annexés annexer ver m p 0.90 3.45 0.04 0.14 par:pas; +annihila annihiler ver 0.84 0.74 0.00 0.07 ind:pas:3s; +annihilait annihiler ver 0.84 0.74 0.00 0.14 ind:imp:3s; +annihilant annihiler ver 0.84 0.74 0.01 0.00 par:pre; +annihilante annihilant adj f s 0.00 0.14 0.00 0.07 +annihilateur annihilateur adj m s 0.12 0.00 0.12 0.00 +annihilation annihilation nom f s 0.46 0.07 0.46 0.07 +annihile annihiler ver 0.84 0.74 0.06 0.00 imp:pre:2s;ind:pre:3s; +annihilent annihiler ver 0.84 0.74 0.00 0.14 ind:pre:3p; +annihiler annihiler ver 0.84 0.74 0.36 0.27 inf; +annihilez annihiler ver 0.84 0.74 0.01 0.00 ind:pre:2p; +annihilons annihiler ver 0.84 0.74 0.01 0.00 imp:pre:1p; +annihilé annihiler ver m s 0.84 0.74 0.32 0.07 par:pas; +annihilée annihiler ver f s 0.84 0.74 0.08 0.07 par:pas; +anniv anniv nom m s 0.26 0.00 0.26 0.00 +anniversaire anniversaire nom m s 82.79 12.97 80.24 12.09 +anniversaires anniversaire nom m p 82.79 12.97 2.55 0.88 +annonce annonce nom f s 23.76 16.62 18.93 13.18 +annoncent annoncer ver 55.67 133.92 1.79 2.77 ind:pre:3p; +annoncer annoncer ver 55.67 133.92 21.14 23.38 inf; +annoncera annoncer ver 55.67 133.92 0.74 0.27 ind:fut:3s; +annoncerai annoncer ver 55.67 133.92 0.88 0.07 ind:fut:1s; +annonceraient annoncer ver 55.67 133.92 0.00 0.07 cnd:pre:3p; +annoncerais annoncer ver 55.67 133.92 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +annoncerait annoncer ver 55.67 133.92 0.04 0.54 cnd:pre:3s; +annonceras annoncer ver 55.67 133.92 0.04 0.07 ind:fut:2s; +annoncerez annoncer ver 55.67 133.92 0.23 0.07 ind:fut:2p; +annoncerons annoncer ver 55.67 133.92 0.13 0.07 ind:fut:1p; +annonceront annoncer ver 55.67 133.92 0.10 0.07 ind:fut:3p; +annonces annonce nom f p 23.76 16.62 4.83 3.45 +annonceur annonceur nom m s 0.58 0.54 0.09 0.20 +annonceurs annonceur nom m p 0.58 0.54 0.50 0.07 +annonceuse annonceur nom f s 0.58 0.54 0.00 0.27 +annoncez annoncer ver 55.67 133.92 2.00 0.47 imp:pre:2p;ind:pre:2p; +annonciateur annonciateur adj m s 0.28 2.30 0.25 0.88 +annonciateurs annonciateur adj m p 0.28 2.30 0.03 0.88 +annonciation annonciation nom f s 0.01 0.61 0.00 0.54 +annonciations annonciation nom f p 0.01 0.61 0.01 0.07 +annonciatrice annonciateur adj f s 0.28 2.30 0.00 0.34 +annonciatrices annonciateur adj f p 0.28 2.30 0.00 0.20 +annonciez annoncer ver 55.67 133.92 0.06 0.07 ind:imp:2p; +annoncions annoncer ver 55.67 133.92 0.13 0.07 ind:imp:1p; +annoncèrent annoncer ver 55.67 133.92 0.03 1.15 ind:pas:3p; +annoncé annoncer ver m s 55.67 133.92 9.15 15.68 par:pas; +annoncée annoncer ver f s 55.67 133.92 0.85 2.91 par:pas; +annoncées annoncer ver f p 55.67 133.92 0.18 0.88 par:pas; +annoncés annoncer ver m p 55.67 133.92 0.28 0.41 par:pas; +annonça annoncer ver 55.67 133.92 0.56 23.38 ind:pas:3s; +annonçai annoncer ver 55.67 133.92 0.02 1.76 ind:pas:1s; +annonçaient annoncer ver 55.67 133.92 0.28 5.14 ind:imp:3p; +annonçais annoncer ver 55.67 133.92 0.13 0.88 ind:imp:1s;ind:imp:2s; +annonçait annoncer ver 55.67 133.92 1.03 21.96 ind:imp:3s; +annonçant annoncer ver 55.67 133.92 1.22 9.05 par:pre; +annonçons annoncer ver 55.67 133.92 0.26 0.00 imp:pre:1p;ind:pre:1p; +annonçât annoncer ver 55.67 133.92 0.00 0.74 sub:imp:3s; +annotais annoter ver 0.12 0.81 0.00 0.14 ind:imp:1s; +annotait annoter ver 0.12 0.81 0.00 0.14 ind:imp:3s; +annotant annoter ver 0.12 0.81 0.00 0.07 par:pre; +annotation annotation nom f s 0.25 0.88 0.19 0.14 +annotations annotation nom f p 0.25 0.88 0.05 0.74 +annote annoter ver 0.12 0.81 0.02 0.07 ind:pre:1s;ind:pre:3s; +annoter annoter ver 0.12 0.81 0.03 0.00 inf; +annoté annoter ver m s 0.12 0.81 0.02 0.20 par:pas; +annotée annoter ver f s 0.12 0.81 0.01 0.14 par:pas; +annotés annoter ver m p 0.12 0.81 0.04 0.07 par:pas; +annuaire annuaire nom m s 4.56 3.78 4.43 3.04 +annuaires annuaire nom m p 4.56 3.78 0.14 0.74 +année_lumière année_lumière nom f s 1.16 1.01 0.03 0.07 +année année nom f s 316.25 375.54 129.64 128.99 +annuel annuel adj m s 4.47 4.12 3.28 1.35 +annuelle annuelle adj f s 1.30 0.00 1.30 0.00 +annuellement annuellement adv 0.15 0.14 0.15 0.14 +annuelles annuel adj f p 4.47 4.12 0.22 0.47 +annuels annuel adj m p 4.47 4.12 0.41 0.47 +année_homme année_homme nom f p 0.01 0.00 0.01 0.00 +année_lumière année_lumière nom f p 1.16 1.01 1.13 0.95 +années année nom f p 316.25 375.54 186.61 246.55 +annula annuler ver 42.11 5.47 0.00 0.20 ind:pas:3s; +annulai annuler ver 42.11 5.47 0.00 0.07 ind:pas:1s; +annulaient annuler ver 42.11 5.47 0.12 0.27 ind:imp:3p; +annulaire annulaire nom m s 0.55 2.64 0.55 2.64 +annulais annuler ver 42.11 5.47 0.36 0.07 ind:imp:1s;ind:imp:2s; +annulait annuler ver 42.11 5.47 0.09 0.68 ind:imp:3s; +annulant annuler ver 42.11 5.47 0.30 0.34 par:pre; +annulation annulation nom f s 2.46 0.88 2.28 0.74 +annulations annulation nom f p 2.46 0.88 0.18 0.14 +annule annuler ver 42.11 5.47 7.34 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +annulent annuler ver 42.11 5.47 0.52 0.27 ind:pre:3p; +annuler annuler ver 42.11 5.47 14.08 1.15 inf; +annulera annuler ver 42.11 5.47 0.26 0.00 ind:fut:3s; +annulerai annuler ver 42.11 5.47 0.17 0.00 ind:fut:1s; +annuleraient annuler ver 42.11 5.47 0.02 0.07 cnd:pre:3p; +annulerais annuler ver 42.11 5.47 0.08 0.00 cnd:pre:1s; +annulerait annuler ver 42.11 5.47 0.17 0.20 cnd:pre:3s; +annulerez annuler ver 42.11 5.47 0.11 0.00 ind:fut:2p; +annulerons annuler ver 42.11 5.47 0.04 0.00 ind:fut:1p; +annuleront annuler ver 42.11 5.47 0.08 0.00 ind:fut:3p; +annules annuler ver 42.11 5.47 0.39 0.00 ind:pre:2s; +annulez annuler ver 42.11 5.47 3.02 0.14 imp:pre:2p;ind:pre:2p; +annuliez annuler ver 42.11 5.47 0.07 0.00 ind:imp:2p; +annulons annuler ver 42.11 5.47 0.12 0.00 imp:pre:1p;ind:pre:1p; +annulèrent annuler ver 42.11 5.47 0.01 0.14 ind:pas:3p; +annulé annuler ver m s 42.11 5.47 10.94 0.41 par:pas; +annulée annuler ver f s 42.11 5.47 3.08 0.27 par:pas; +annulées annuler ver f p 42.11 5.47 0.27 0.14 par:pas; +annulés annuler ver m p 42.11 5.47 0.46 0.20 par:pas; +anobli anoblir ver m s 0.47 0.68 0.08 0.20 par:pas; +anoblie anoblir ver f s 0.47 0.68 0.27 0.00 par:pas; +anoblies anobli adj f p 0.02 0.07 0.00 0.07 +anoblir anoblir ver 0.47 0.68 0.01 0.20 inf; +anoblissait anoblir ver 0.47 0.68 0.00 0.07 ind:imp:3s; +anoblissant anoblir ver 0.47 0.68 0.00 0.07 par:pre; +anoblissante anoblissant adj f s 0.00 0.07 0.00 0.07 +anoblissement anoblissement nom m s 0.00 0.14 0.00 0.14 +anoblit anoblir ver 0.47 0.68 0.11 0.14 ind:pre:3s;ind:pas:3s; +anode anode nom f s 0.02 0.00 0.02 0.00 +anodin anodin adj m s 1.03 8.65 0.38 2.97 +anodine anodin adj f s 1.03 8.65 0.20 2.03 +anodines anodin adj f p 1.03 8.65 0.20 2.09 +anodins anodin adj m p 1.03 8.65 0.25 1.55 +anodique anodique adj f s 0.20 0.00 0.20 0.00 +anodisé anodiser ver m s 0.21 0.07 0.21 0.07 par:pas; +anomalie anomalie nom f s 3.96 2.16 2.75 1.55 +anomalies anomalie nom f p 3.96 2.16 1.21 0.61 +anomoure anomoure nom m s 0.00 0.07 0.00 0.07 +anonymat anonymat nom m s 1.41 3.04 1.41 3.04 +anonyme anonyme adj s 11.65 14.80 7.74 9.26 +anonymement anonymement adv 0.42 0.14 0.42 0.14 +anonymes anonyme adj p 11.65 14.80 3.92 5.54 +anonymographe anonymographe nom m s 0.00 0.14 0.00 0.14 +anophèle anophèle nom m s 0.01 0.00 0.01 0.00 +anorak anorak nom m s 0.49 0.88 0.25 0.81 +anoraks anorak nom m p 0.49 0.88 0.25 0.07 +anorexie anorexie nom f s 0.88 0.81 0.87 0.74 +anorexies anorexie nom f p 0.88 0.81 0.01 0.07 +anorexique anorexique adj s 0.38 0.41 0.31 0.34 +anorexiques anorexique nom p 0.25 0.14 0.16 0.00 +anormal anormal adj m s 7.40 7.91 4.80 4.46 +anormale anormal adj f s 7.40 7.91 1.23 2.57 +anormalement anormalement adv 1.08 1.15 1.08 1.15 +anormales anormal adj f p 7.40 7.91 0.61 0.27 +anormalité anormalité nom f s 0.20 0.20 0.20 0.20 +anormaux anormal adj m p 7.40 7.91 0.76 0.61 +anosmie anosmie nom f s 0.07 0.00 0.07 0.00 +anosmique anosmique adj m s 0.01 0.07 0.01 0.07 +anoxie anoxie nom f s 0.09 0.00 0.09 0.00 +ans an nom m p 866.58 685.81 718.17 609.05 +anse anse nom f s 0.47 6.08 0.33 4.86 +anses anse nom f p 0.47 6.08 0.14 1.22 +ansée ansé adj f s 0.02 0.07 0.01 0.00 +ansées ansé adj f p 0.02 0.07 0.01 0.07 +antagonique antagonique adj s 0.03 0.00 0.03 0.00 +antagonisme antagonisme nom m s 0.17 1.55 0.16 1.15 +antagonismes antagonisme nom m p 0.17 1.55 0.02 0.41 +antagoniste antagoniste nom s 0.14 0.68 0.12 0.27 +antagonistes antagoniste adj p 0.10 0.88 0.03 0.68 +antalgique antalgique nom m s 0.50 0.00 0.15 0.00 +antalgiques antalgique nom m p 0.50 0.00 0.35 0.00 +antan antan nom m s 1.53 4.86 1.53 4.86 +antarctique antarctique adj s 0.06 0.07 0.06 0.00 +antarctiques antarctique adj p 0.06 0.07 0.00 0.07 +ante ante nom f s 1.12 0.27 1.12 0.27 +antenne antenne nom f s 11.59 8.45 10.08 3.65 +antennes antenne nom f p 11.59 8.45 1.50 4.80 +anthologie anthologie nom f s 0.48 0.81 0.48 0.68 +anthologies anthologie nom f p 0.48 0.81 0.00 0.14 +anthonome anthonome nom m s 0.01 0.00 0.01 0.00 +anthracine anthracine nom m s 0.04 0.00 0.04 0.00 +anthracite anthracite adj 0.07 1.15 0.07 1.15 +anthracites anthracite nom m p 0.01 1.82 0.00 0.07 +anthracose anthracose nom f s 0.01 0.00 0.01 0.00 +anthracène anthracène nom m s 0.01 0.00 0.01 0.00 +anthraquinone anthraquinone nom f s 0.01 0.00 0.01 0.00 +anthrax anthrax nom m 1.26 0.47 1.26 0.47 +anthropiques anthropique adj p 0.02 0.00 0.02 0.00 +anthropoïde anthropoïde nom s 0.03 0.20 0.02 0.07 +anthropoïdes anthropoïde nom p 0.03 0.20 0.01 0.14 +anthropologie anthropologie nom f s 0.78 0.41 0.78 0.41 +anthropologique anthropologique adj s 0.27 0.20 0.16 0.07 +anthropologiquement anthropologiquement adv 0.01 0.00 0.01 0.00 +anthropologiques anthropologique adj f p 0.27 0.20 0.11 0.14 +anthropologiste anthropologiste nom s 0.11 0.00 0.11 0.00 +anthropologue anthropologue nom s 1.46 0.20 1.18 0.07 +anthropologues anthropologue nom p 1.46 0.20 0.28 0.14 +anthropomorphe anthropomorphe adj f s 0.01 0.07 0.01 0.07 +anthropomorphique anthropomorphique adj f s 0.03 0.07 0.03 0.07 +anthropomorphiser anthropomorphiser ver 0.01 0.00 0.01 0.00 inf; +anthropomorphisme anthropomorphisme nom m s 0.01 0.34 0.01 0.34 +anthropométrie anthropométrie nom f s 0.00 0.27 0.00 0.27 +anthropométrique anthropométrique adj s 0.00 0.41 0.00 0.34 +anthropométriques anthropométrique adj f p 0.00 0.41 0.00 0.07 +anthropophage anthropophage adj m s 0.14 0.00 0.03 0.00 +anthropophages anthropophage adj p 0.14 0.00 0.11 0.00 +anthropophagie anthropophagie nom f s 0.11 0.61 0.11 0.61 +anthropophagiques anthropophagique adj f p 0.00 0.07 0.00 0.07 +anthropopithèque anthropopithèque nom m s 0.00 0.14 0.00 0.07 +anthropopithèques anthropopithèque nom m p 0.00 0.14 0.00 0.07 +anthume anthume adj s 0.00 0.20 0.00 0.20 +anti_acné anti_acné nom f s 0.02 0.00 0.02 0.00 +anti_agression anti_agression nom f s 0.03 0.07 0.03 0.07 +anti_allergie anti_allergie nom f s 0.01 0.00 0.01 0.00 +anti_anatomique anti_anatomique adj s 0.01 0.00 0.01 0.00 +anti_apartheid anti_apartheid nom m s 0.00 0.07 0.00 0.07 +anti_aphrodisiaque anti_aphrodisiaque adj f s 0.00 0.07 0.00 0.07 +anti_asthmatique anti_asthmatique nom s 0.01 0.00 0.01 0.00 +anti_atomique anti_atomique adj m s 0.06 0.07 0.05 0.00 +anti_atomique anti_atomique adj m p 0.06 0.07 0.01 0.07 +anti_aérien anti_aérien adj m s 0.41 0.27 0.20 0.07 +anti_aérien anti_aérien adj f s 0.41 0.27 0.17 0.07 +anti_aérien anti_aérien adj m p 0.41 0.27 0.04 0.14 +anti_avortement anti_avortement nom m s 0.12 0.00 0.12 0.00 +anti_beauf anti_beauf nom m s 0.01 0.00 0.01 0.00 +anti_bison anti_bison nom m s 0.00 0.07 0.00 0.07 +anti_blindage anti_blindage nom m s 0.04 0.00 0.04 0.00 +anti_blouson anti_blouson nom m s 0.00 0.07 0.00 0.07 +anti_bombe anti_bombe nom f s 0.10 0.07 0.09 0.00 +anti_bombe anti_bombe nom f p 0.10 0.07 0.01 0.07 +anti_boson anti_boson nom m p 0.04 0.00 0.04 0.00 +anti_braquage anti_braquage nom m s 0.01 0.00 0.01 0.00 +anti_brouillard anti_brouillard adj s 0.12 0.00 0.12 0.00 +anti_bruit anti_bruit nom m s 0.16 0.00 0.16 0.00 +anti_calcique anti_calcique adj f p 0.01 0.00 0.01 0.00 +anti_cancer anti_cancer nom m s 0.04 0.00 0.04 0.00 +anti_capitaliste anti_capitaliste adj m s 0.03 0.00 0.03 0.00 +anti_castriste anti_castriste adj s 0.02 0.00 0.02 0.00 +anti_castriste anti_castriste nom p 0.01 0.00 0.01 0.00 +anti_cellulite anti_cellulite nom f s 0.01 0.00 0.01 0.00 +anti_chambre anti_chambre nom f s 0.00 0.14 0.00 0.07 +anti_chambre anti_chambre nom f p 0.00 0.14 0.00 0.07 +anti_char anti_char nom m s 0.12 0.20 0.00 0.14 +anti_char anti_char nom m p 0.12 0.20 0.12 0.07 +anti_chien anti_chien nom m p 0.00 0.07 0.00 0.07 +anti_cité anti_cité nom f s 0.00 0.07 0.00 0.07 +anti_civilisation anti_civilisation nom f s 0.00 0.07 0.00 0.07 +anti_club anti_club nom m s 0.02 0.00 0.02 0.00 +anti_coco anti_coco nom p 0.01 0.00 0.01 0.00 +anti_colère anti_colère nom f s 0.01 0.00 0.01 0.00 +anti_communisme anti_communisme nom m s 0.00 0.14 0.00 0.14 +anti_communiste anti_communiste adj s 0.03 0.07 0.03 0.07 +anti_conformisme anti_conformisme nom m s 0.01 0.14 0.01 0.14 +anti_conformiste anti_conformiste nom s 0.01 0.00 0.01 0.00 +anti_conglutinatif anti_conglutinatif adj m s 0.00 0.07 0.00 0.07 +anti_corps anti_corps nom m 0.08 0.00 0.08 0.00 +anti_corruption anti_corruption nom f s 0.04 0.00 0.04 0.00 +anti_crash anti_crash nom m s 0.01 0.00 0.01 0.00 +anti_crime anti_crime nom m s 0.03 0.00 0.03 0.00 +anti_criminalité anti_criminalité nom f s 0.01 0.00 0.01 0.00 +anti_célibataire anti_célibataire adj f p 0.01 0.00 0.01 0.00 +anti_dauphin anti_dauphin nom m p 0.01 0.00 0.01 0.00 +anti_desperado anti_desperado nom m s 0.01 0.00 0.01 0.00 +anti_dieu anti_dieu nom m s 0.03 0.00 0.03 0.00 +anti_discrimination anti_discrimination nom f s 0.02 0.00 0.02 0.00 +anti_dopage anti_dopage nom m s 0.06 0.00 0.06 0.00 +anti_douleur anti_douleur nom f s 0.46 0.00 0.30 0.00 +anti_douleur anti_douleur nom f p 0.46 0.00 0.15 0.00 +anti_drague anti_drague nom f s 0.01 0.00 0.01 0.00 +anti_dramatique anti_dramatique adj s 0.00 0.07 0.00 0.07 +anti_drogue anti_drogue nom f s 0.42 0.00 0.35 0.00 +anti_drogue anti_drogue nom f p 0.42 0.00 0.07 0.00 +anti_débauche anti_débauche nom f s 0.00 0.07 0.00 0.07 +anti_démocratique anti_démocratique adj f s 0.14 0.07 0.14 0.07 +anti_démocratique anti_démocratique adj f p 0.14 0.07 0.01 0.00 +anti_démon anti_démon nom m s 0.04 0.00 0.04 0.00 +anti_espionne anti_espionne nom f p 0.01 0.00 0.01 0.00 +anti_establishment anti_establishment nom m s 0.02 0.00 0.02 0.00 +anti_existence anti_existence nom f s 0.00 0.07 0.00 0.07 +anti_explosion anti_explosion nom f s 0.04 0.00 0.04 0.00 +anti_fantôme anti_fantôme nom m p 0.02 0.00 0.02 0.00 +anti_fasciste anti_fasciste adj f s 0.02 0.00 0.02 0.00 +anti_femme anti_femme nom f s 0.01 0.00 0.01 0.00 +anti_flingage anti_flingage nom m s 0.00 0.07 0.00 0.07 +anti_flip anti_flip nom m s 0.00 0.07 0.00 0.07 +anti_frigo anti_frigo nom m s 0.00 0.07 0.00 0.07 +anti_féministe anti_féministe nom s 0.03 0.07 0.03 0.07 +anti_fusionnel anti_fusionnel adj m s 0.01 0.00 0.01 0.00 +anti_fusée anti_fusée nom f p 0.00 0.20 0.00 0.20 +anti_g anti_g adj f p 0.01 0.00 0.01 0.00 +anti_gang anti_gang nom m s 0.33 0.00 0.33 0.00 +anti_gel anti_gel nom m s 0.05 0.00 0.05 0.00 +anti_gerce anti_gerce nom f s 0.01 0.00 0.01 0.00 +anti_gouvernement anti_gouvernement nom m s 0.10 0.00 0.10 0.00 +anti_graffiti anti_graffiti nom m 0.01 0.00 0.01 0.00 +anti_gravité anti_gravité nom f s 0.06 0.00 0.06 0.00 +anti_grimace anti_grimace nom f p 0.01 0.00 0.01 0.00 +anti_gros anti_gros adj m 0.01 0.00 0.01 0.00 +anti_hanneton anti_hanneton nom m p 0.00 0.07 0.00 0.07 +anti_hypertenseur anti_hypertenseur adj m s 0.01 0.00 0.01 0.00 +anti_immigration anti_immigration nom f s 0.02 0.00 0.02 0.00 +anti_immigré anti_immigré adj p 0.00 0.07 0.00 0.07 +anti_impérialiste anti_impérialiste adj s 0.11 0.07 0.11 0.07 +anti_incendie anti_incendie nom m s 0.16 0.00 0.16 0.00 +anti_inertie anti_inertie nom f s 0.01 0.00 0.01 0.00 +anti_infectieux anti_infectieux adj m p 0.01 0.00 0.01 0.00 +anti_inflammatoire anti_inflammatoire nom m s 0.07 0.07 0.07 0.07 +anti_insecte anti_insecte nom m s 0.03 0.07 0.01 0.00 +anti_insecte anti_insecte nom m p 0.03 0.07 0.02 0.07 +anti_instinct anti_instinct nom m s 0.00 0.07 0.00 0.07 +anti_insurrectionnel anti_insurrectionnel adj m s 0.01 0.00 0.01 0.00 +anti_intimité anti_intimité nom f s 0.04 0.00 0.04 0.00 +anti_japon anti_japon nom m s 0.00 0.07 0.00 0.07 +anti_jeunes anti_jeunes adj m s 0.00 0.07 0.00 0.07 +anti_mafia anti_mafia nom f s 0.01 0.07 0.01 0.07 +anti_maison anti_maison nom f s 0.00 0.14 0.00 0.14 +anti_manipulation anti_manipulation nom f s 0.01 0.00 0.01 0.00 +anti_manoir anti_manoir nom m s 0.00 0.07 0.00 0.07 +anti_mariage anti_mariage nom m s 0.03 0.00 0.03 0.00 +anti_matière anti_matière nom f s 0.09 0.00 0.08 0.00 +anti_matière anti_matière nom f p 0.09 0.00 0.01 0.00 +anti_mec anti_mec nom m p 0.02 0.00 0.02 0.00 +anti_militariste anti_militariste nom s 0.01 0.00 0.01 0.00 +anti_missile anti_missile nom m p 0.03 0.00 0.03 0.00 +anti_mite anti_mite nom f s 0.10 0.14 0.03 0.07 +anti_mite anti_mite nom f p 0.10 0.14 0.08 0.07 +anti_monde anti_monde nom m s 0.00 0.07 0.00 0.07 +anti_monstre anti_monstre adj f p 0.01 0.00 0.01 0.00 +anti_moustique anti_moustique nom m s 0.58 0.07 0.41 0.00 +anti_moustique anti_moustique nom m p 0.58 0.07 0.17 0.07 +anti_médicament anti_médicament nom m p 0.01 0.00 0.01 0.00 +anti_métaphysique anti_métaphysique adj m s 0.00 0.07 0.00 0.07 +anti_météorite anti_météorite nom f p 0.20 0.00 0.20 0.00 +anti_nausée anti_nausée nom f s 0.01 0.00 0.01 0.00 +anti_navire anti_navire nom m s 0.01 0.00 0.01 0.00 +anti_nucléaire anti_nucléaire adj m s 0.06 0.00 0.05 0.00 +anti_nucléaire anti_nucléaire adj p 0.06 0.00 0.01 0.00 +anti_nucléaire anti_nucléaire nom m p 0.01 0.00 0.01 0.00 +anti_odeur anti_odeur nom f s 0.02 0.14 0.01 0.07 +anti_odeur anti_odeur nom f p 0.02 0.14 0.01 0.07 +anti_odorant anti_odorant adj m p 0.00 0.07 0.00 0.07 +anti_âge anti_âge adj 0.04 0.74 0.04 0.74 +anti_origine anti_origine nom f s 0.00 0.07 0.00 0.07 +anti_panache anti_panache nom m s 0.00 0.07 0.00 0.07 +anti_particule anti_particule nom f s 0.01 0.00 0.01 0.00 +anti_pasteur anti_pasteur nom m s 0.00 0.07 0.00 0.07 +anti_patriote anti_patriote nom s 0.01 0.00 0.01 0.00 +anti_patriotique anti_patriotique adj f s 0.06 0.00 0.06 0.00 +anti_pelliculaire anti_pelliculaire adj m s 0.13 0.07 0.13 0.07 +anti_piratage anti_piratage nom m s 0.01 0.00 0.01 0.00 +anti_pirate anti_pirate adj s 0.01 0.00 0.01 0.00 +anti_poison anti_poison nom m s 0.04 0.14 0.04 0.14 +anti_poisse anti_poisse nom f s 0.05 0.07 0.05 0.07 +anti_pollution anti_pollution nom f s 0.04 0.00 0.04 0.00 +anti_poux anti_poux nom m p 0.04 0.00 0.04 0.00 +anti_progressiste anti_progressiste nom p 0.00 0.07 0.00 0.07 +anti_psychotique anti_psychotique adj s 0.01 0.00 0.01 0.00 +anti_pub anti_pub nom s 0.00 0.07 0.00 0.07 +anti_puce anti_puce nom f p 0.14 0.00 0.14 0.00 +anti_pédérastique anti_pédérastique adj p 0.00 0.07 0.00 0.07 +anti_racket anti_racket nom m s 0.06 0.00 0.06 0.00 +anti_radiation anti_radiation nom f p 0.08 0.00 0.08 0.00 +anti_rapt anti_rapt nom m s 0.00 0.07 0.00 0.07 +anti_reflet anti_reflet nom m p 0.00 0.07 0.00 0.07 +anti_rejet anti_rejet nom m s 0.20 0.00 0.20 0.00 +anti_religion anti_religion nom f s 0.01 0.00 0.01 0.00 +anti_rhume anti_rhume nom m s 0.02 0.00 0.02 0.00 +anti_ride anti_ride nom f p 0.06 0.00 0.06 0.00 +anti_romain anti_romain nom m s 0.00 0.07 0.00 0.07 +anti_romantique anti_romantique adj s 0.01 0.00 0.01 0.00 +anti_rouille anti_rouille nom f s 0.01 0.00 0.01 0.00 +anti_russe anti_russe adj m s 0.11 0.00 0.11 0.00 +anti_sida anti_sida nom m s 0.02 0.00 0.02 0.00 +anti_socialiste anti_socialiste adj p 0.01 0.00 0.01 0.00 +anti_sociaux anti_sociaux adj m p 0.04 0.00 0.04 0.00 +anti_société anti_société nom f s 0.00 0.07 0.00 0.07 +anti_somnolence anti_somnolence nom f s 0.01 0.00 0.01 0.00 +anti_souffle anti_souffle nom m s 0.03 0.00 0.03 0.00 +anti_sous_marin anti_sous_marin adj m s 0.02 0.00 0.02 0.00 +anti_soviétique anti_soviétique adj f s 0.00 0.07 0.00 0.07 +anti_sèche anti_sèche adj f s 0.01 0.07 0.01 0.00 +anti_sèche anti_sèche adj f p 0.01 0.07 0.00 0.07 +anti_stress anti_stress nom m 0.35 0.00 0.35 0.00 +anti_sémite anti_sémite adj s 0.04 0.00 0.02 0.00 +anti_sémite anti_sémite adj f p 0.04 0.00 0.02 0.00 +anti_sémitisme anti_sémitisme nom m s 0.08 0.00 0.08 0.00 +anti_syndical anti_syndical adj m s 0.01 0.00 0.01 0.00 +anti_tabac anti_tabac adj s 0.17 0.00 0.17 0.00 +anti_tache anti_tache nom f p 0.15 0.00 0.15 0.00 +anti_tank anti_tank nom m s 0.03 0.00 0.03 0.00 +anti_tapisserie anti_tapisserie nom f s 0.00 0.07 0.00 0.07 +anti_temps anti_temps nom m 0.00 0.27 0.00 0.27 +anti_tension anti_tension nom f s 0.01 0.00 0.01 0.00 +anti_terrorisme anti_terrorisme nom m s 0.53 0.00 0.53 0.00 +anti_terroriste anti_terroriste adj s 0.26 0.00 0.26 0.00 +anti_tornade anti_tornade nom f p 0.01 0.00 0.01 0.00 +anti_toux anti_toux nom f 0.01 0.00 0.01 0.00 +anti_truie anti_truie nom f s 0.01 0.00 0.01 0.00 +anti_trust anti_trust nom m p 0.02 0.00 0.02 0.00 +anti_émeute anti_émeute adj s 0.15 0.00 0.10 0.00 +anti_émeute anti_émeute adj p 0.15 0.00 0.05 0.00 +anti_émotionnelle anti_émotionnelle adj f s 0.00 0.07 0.00 0.07 +anti_évasion anti_évasion nom f s 0.01 0.00 0.01 0.00 +anti_venin anti_venin nom m s 0.18 0.00 0.18 0.00 +anti_vieillissement anti_vieillissement nom m s 0.04 0.00 0.04 0.00 +anti_viol anti_viol nom m s 0.09 0.00 0.09 0.00 +anti_violence anti_violence nom f s 0.01 0.00 0.01 0.00 +anti_viral anti_viral adj m s 0.13 0.00 0.13 0.00 +anti_virus anti_virus nom m 0.09 0.00 0.09 0.00 +anti_vol anti_vol nom m s 0.36 0.27 0.35 0.27 +anti_vol anti_vol nom m p 0.36 0.27 0.01 0.00 +anti anti adv_sup 0.09 0.81 0.09 0.81 +antiacide antiacide adj s 0.12 0.00 0.07 0.00 +antiacides antiacide adj m p 0.12 0.00 0.04 0.00 +antialcoolique antialcoolique adj f s 0.02 0.00 0.02 0.00 +antiallemands antiallemand adj m p 0.00 0.07 0.00 0.07 +antiaméricain antiaméricain adj m s 0.06 0.14 0.05 0.00 +antiaméricaine antiaméricain adj f s 0.06 0.14 0.00 0.14 +antiaméricaines antiaméricain adj f p 0.06 0.14 0.01 0.00 +antiaméricanisme antiaméricanisme nom m s 0.02 0.07 0.02 0.07 +antiatomique antiatomique adj m s 0.31 0.00 0.31 0.00 +antiaérien antiaérien adj m s 0.75 1.35 0.25 0.20 +antiaérienne antiaérien adj f s 0.75 1.35 0.29 0.54 +antiaériennes antiaérien adj f p 0.75 1.35 0.17 0.27 +antiaériens antiaérien adj m p 0.75 1.35 0.05 0.34 +antibactérien antibactérien adj m s 0.03 0.00 0.03 0.00 +antibiotique antibiotique nom m s 5.22 1.55 1.04 0.14 +antibiotiques antibiotique nom m p 5.22 1.55 4.18 1.42 +antiblocage antiblocage adj m s 0.03 0.07 0.03 0.07 +antibois antibois nom m 0.14 0.00 0.14 0.00 +antibolcheviques antibolchevique adj m p 0.00 0.07 0.00 0.07 +antibolchevisme antibolchevisme nom m s 0.00 0.14 0.00 0.14 +antibourgeois antibourgeois adj m 0.00 0.07 0.00 0.07 +antibrouillard antibrouillard adj m p 0.00 0.07 0.00 0.07 +antibruit antibruit adj f s 0.01 0.00 0.01 0.00 +anticalcaire anticalcaire adj m s 0.00 0.07 0.00 0.07 +anticapitaliste anticapitaliste adj s 0.10 0.14 0.10 0.14 +anticastriste anticastriste adj s 0.03 0.07 0.01 0.07 +anticastristes anticastriste adj p 0.03 0.07 0.02 0.00 +anticatalyseurs anticatalyseur nom m p 0.00 0.07 0.00 0.07 +anticatholique anticatholique adj f s 0.00 0.07 0.00 0.07 +antichambre antichambre nom f s 0.89 8.58 0.89 7.84 +antichambres antichambre nom f p 0.89 8.58 0.00 0.74 +antichar antichar adj s 0.33 1.89 0.07 0.20 +antichars antichar adj p 0.33 1.89 0.27 1.69 +antichoc antichoc adj f p 0.04 0.00 0.04 0.00 +anticholinergique anticholinergique adj s 0.01 0.00 0.01 0.00 +antichristianisme antichristianisme nom m s 0.00 0.07 0.00 0.07 +antichrétien antichrétien adj m s 0.00 0.14 0.00 0.07 +antichrétienne antichrétien adj f s 0.00 0.14 0.00 0.07 +anticipa anticiper ver 4.14 3.31 0.01 0.07 ind:pas:3s; +anticipais anticiper ver 4.14 3.31 0.04 0.14 ind:imp:1s; +anticipait anticiper ver 4.14 3.31 0.20 0.34 ind:imp:3s; +anticipant anticiper ver 4.14 3.31 0.06 0.47 par:pre; +anticipateur anticipateur adj m s 0.00 0.20 0.00 0.14 +anticipation anticipation nom f s 0.63 2.23 0.63 2.16 +anticipations anticipation nom f p 0.63 2.23 0.00 0.07 +anticipatoire anticipatoire adj f s 0.00 0.07 0.00 0.07 +anticipatrice anticipateur adj f s 0.00 0.20 0.00 0.07 +anticipe anticiper ver 4.14 3.31 1.24 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +anticipent anticiper ver 4.14 3.31 0.03 0.07 ind:pre:3p; +anticiper anticiper ver 4.14 3.31 1.29 0.27 inf; +anticipera anticiper ver 4.14 3.31 0.03 0.07 ind:fut:3s; +anticiperait anticiper ver 4.14 3.31 0.01 0.07 cnd:pre:3s; +anticipez anticiper ver 4.14 3.31 0.17 0.07 imp:pre:2p;ind:pre:2p; +anticipons anticiper ver 4.14 3.31 0.16 0.20 imp:pre:1p;ind:pre:1p; +anticipé anticiper ver m s 4.14 3.31 0.56 0.14 par:pas; +anticipée anticipé adj f s 1.64 1.08 1.40 0.54 +anticipées anticiper ver f p 4.14 3.31 0.14 0.00 par:pas; +anticipés anticipé adj m p 1.64 1.08 0.03 0.00 +anticlérical anticlérical adj m s 0.16 1.15 0.16 0.41 +anticléricale anticlérical adj f s 0.16 1.15 0.00 0.47 +anticléricales anticlérical adj f p 0.16 1.15 0.00 0.07 +anticléricalisme anticléricalisme nom m s 0.00 0.34 0.00 0.34 +anticléricaux anticlérical adj m p 0.16 1.15 0.00 0.20 +anticoagulant anticoagulant nom m s 0.21 0.00 0.14 0.00 +anticoagulants anticoagulant nom m p 0.21 0.00 0.06 0.00 +anticolonialisme anticolonialisme nom m s 0.00 0.07 0.00 0.07 +anticommunisme anticommunisme nom m s 0.10 0.88 0.10 0.88 +anticommuniste anticommuniste adj s 0.19 1.82 0.17 1.22 +anticommunistes anticommuniste adj p 0.19 1.82 0.01 0.61 +anticonceptionnelle anticonceptionnel adj f s 0.20 0.14 0.20 0.00 +anticonceptionnelles anticonceptionnel adj f p 0.20 0.14 0.00 0.07 +anticonceptionnels anticonceptionnel adj m p 0.20 0.14 0.00 0.07 +anticonformisme anticonformisme nom m s 0.00 0.07 0.00 0.07 +anticonformiste anticonformiste adj m s 0.05 0.00 0.05 0.00 +anticonstitutionnel anticonstitutionnel adj m s 0.19 0.00 0.14 0.00 +anticonstitutionnelle anticonstitutionnel adj f s 0.19 0.00 0.05 0.00 +anticonstitutionnellement anticonstitutionnellement adv 0.01 0.00 0.01 0.00 +anticorps anticorps nom m 1.35 0.41 1.35 0.41 +anticyclique anticyclique adj f s 0.01 0.00 0.01 0.00 +anticyclone anticyclone nom m s 0.03 0.07 0.03 0.07 +anticycloniques anticyclonique adj m p 0.00 0.07 0.00 0.07 +antidatait antidater ver 0.01 0.27 0.00 0.07 ind:imp:3s; +antidater antidater ver 0.01 0.27 0.00 0.07 inf; +antidaté antidater ver m s 0.01 0.27 0.01 0.07 par:pas; +antidatée antidater ver f s 0.01 0.27 0.00 0.07 par:pas; +antidictatoriaux antidictatorial adj m p 0.00 0.07 0.00 0.07 +antidopage antidopage adj m s 0.01 0.00 0.01 0.00 +antidote antidote nom m s 4.48 1.35 4.38 1.08 +antidotes antidote nom m p 4.48 1.35 0.09 0.27 +antidouleur antidouleur adj s 0.34 0.00 0.34 0.00 +antidreyfusard antidreyfusard nom m s 0.14 0.07 0.14 0.00 +antidreyfusarde antidreyfusard adj f s 0.14 0.00 0.14 0.00 +antidreyfusards antidreyfusard nom m p 0.14 0.07 0.00 0.07 +antidreyfusisme antidreyfusisme nom m s 0.00 0.07 0.00 0.07 +antidrogue antidrogue adj s 0.08 0.07 0.08 0.07 +antidémarrage antidémarrage nom m s 0.01 0.00 0.01 0.00 +antidémocratique antidémocratique adj s 0.02 0.07 0.02 0.07 +antidépresseur antidépresseur nom m s 0.98 0.27 0.26 0.00 +antidépresseurs antidépresseur nom m p 0.98 0.27 0.72 0.27 +antidérapant antidérapant adj m s 0.07 0.14 0.03 0.00 +antidérapante antidérapant adj f s 0.07 0.14 0.01 0.00 +antidérapantes antidérapant adj f p 0.07 0.14 0.01 0.14 +antidérapants antidérapant adj m p 0.07 0.14 0.02 0.00 +antienne antienne nom f s 0.00 1.62 0.00 1.49 +antiennes antienne nom f p 0.00 1.62 0.00 0.14 +antiesclavagiste antiesclavagiste nom s 0.01 0.00 0.01 0.00 +antifading antifading nom m s 0.00 0.07 0.00 0.07 +antifascisme antifascisme nom m s 0.00 0.07 0.00 0.07 +antifasciste antifasciste nom s 0.26 0.27 0.10 0.07 +antifascistes antifasciste nom p 0.26 0.27 0.16 0.20 +antifongique antifongique nom m s 0.03 0.00 0.03 0.00 +antifrançaise antifrançais adj f s 0.00 0.34 0.00 0.20 +antifrançaises antifrançais adj f p 0.00 0.34 0.00 0.14 +antiféminisme antiféminisme nom m s 0.00 0.07 0.00 0.07 +antifumée antifumée adj m p 0.01 0.00 0.01 0.00 +antigang antigang adj f s 0.16 0.07 0.16 0.07 +antigangs antigang nom p 0.12 0.14 0.01 0.00 +antigaullistes antigaulliste adj f p 0.00 0.07 0.00 0.07 +antigel antigel nom m s 0.20 0.00 0.20 0.00 +antigermanisme antigermanisme nom m s 0.00 0.07 0.00 0.07 +antigravitation antigravitation nom f s 0.01 0.00 0.01 0.00 +antigravitationnel antigravitationnel adj m s 0.04 0.00 0.04 0.00 +antigravité antigravité nom f s 0.01 0.00 0.01 0.00 +antigrippe antigrippe nom f s 0.16 0.00 0.16 0.00 +antigène antigène nom m s 0.28 0.34 0.11 0.27 +antigènes antigène nom m p 0.28 0.34 0.17 0.07 +antihistaminique antihistaminique nom m s 0.25 0.00 0.10 0.00 +antihistaminiques antihistaminique nom m p 0.25 0.00 0.15 0.00 +antihémorragiques antihémorragique adj p 0.00 0.07 0.00 0.07 +antihéros antihéros nom m 0.04 0.00 0.04 0.00 +antihygiénique antihygiénique adj f s 0.01 0.07 0.01 0.07 +antillais antillais nom m 0.14 4.12 0.12 3.72 +antillaise antillais nom f s 0.14 4.12 0.01 0.20 +antillaises antillais nom f p 0.14 4.12 0.00 0.20 +antilogique antilogique adj s 0.01 0.00 0.01 0.00 +antilope antilope nom f s 0.88 2.16 0.73 1.28 +antilopes antilope nom f p 0.88 2.16 0.16 0.88 +antimarxiste antimarxiste adj f s 0.00 0.07 0.00 0.07 +antimaçonniques antimaçonnique adj p 0.00 0.07 0.00 0.07 +antimatière antimatière nom f s 0.13 0.14 0.13 0.14 +antimicrobien antimicrobien adj m s 0.01 0.00 0.01 0.00 +antimigraineux antimigraineux adj m 0.02 0.00 0.02 0.00 +antimilitarisme antimilitarisme nom m s 0.00 0.34 0.00 0.34 +antimilitariste antimilitariste adj m s 0.12 0.81 0.11 0.54 +antimilitaristes antimilitariste adj p 0.12 0.81 0.01 0.27 +antimissile antimissile adj s 0.04 0.00 0.04 0.00 +antimissiles antimissile nom m p 0.06 0.00 0.06 0.00 +antimite antimite nom m s 0.05 0.61 0.04 0.27 +antimites antimite nom m p 0.05 0.61 0.01 0.34 +antimitotiques antimitotique nom m p 0.01 0.00 0.01 0.00 +antimoine antimoine nom m s 0.01 0.27 0.01 0.27 +antimonde antimonde adj s 0.00 0.07 0.00 0.07 +antinationale antinational adj f s 0.00 0.14 0.00 0.07 +antinationales antinational adj f p 0.00 0.14 0.00 0.07 +antinationaliste antinationaliste adj s 0.00 0.14 0.00 0.14 +antinaturel antinaturel adj m s 0.00 0.14 0.00 0.07 +antinaturelle antinaturel adj f s 0.00 0.14 0.00 0.07 +antinazie antinazi adj f s 0.10 0.07 0.10 0.00 +antinazis antinazi nom m p 0.01 0.00 0.01 0.00 +antinomie antinomie nom f s 0.01 0.34 0.00 0.27 +antinomies antinomie nom f p 0.01 0.34 0.01 0.07 +antinomique antinomique adj s 0.03 0.20 0.03 0.14 +antinomiques antinomique adj m p 0.03 0.20 0.00 0.07 +antinucléaire antinucléaire adj s 0.11 0.14 0.03 0.14 +antinucléaires antinucléaire adj f p 0.11 0.14 0.07 0.00 +antioxydant antioxydant nom m s 0.05 0.00 0.02 0.00 +antioxydants antioxydant nom m p 0.05 0.00 0.03 0.00 +antipape antipape nom m s 0.11 0.14 0.11 0.07 +antipapes antipape nom m p 0.11 0.14 0.00 0.07 +antiparasitage antiparasitage adj f s 0.00 0.07 0.00 0.07 +antiparasite antiparasite adj f s 0.01 0.07 0.01 0.07 +antiparasites antiparasite nom m p 0.02 0.14 0.01 0.14 +antipathie antipathie nom f s 0.71 1.82 0.57 1.69 +antipathies antipathie nom f p 0.71 1.82 0.14 0.14 +antipathique antipathique adj s 0.97 2.03 0.96 1.55 +antipathiques antipathique adj p 0.97 2.03 0.01 0.47 +antipatriote antipatriote adj m s 0.01 0.00 0.01 0.00 +antipatriotiques antipatriotique adj f p 0.01 0.00 0.01 0.00 +antipelliculaire antipelliculaire adj m s 0.01 0.00 0.01 0.00 +antipersonnel antipersonnel adj 0.41 0.00 0.37 0.00 +antipersonnelle antipersonnel adj f s 0.41 0.00 0.03 0.00 +antipersonnelles antipersonnel adj f p 0.41 0.00 0.01 0.00 +antiphonaires antiphonaire nom m p 0.00 0.14 0.00 0.14 +antiphrase antiphrase nom f s 0.00 0.34 0.00 0.34 +antiphysiques antiphysique adj p 0.00 0.07 0.00 0.07 +antipodaire antipodaire adj m s 0.00 0.07 0.00 0.07 +antipode antipode nom m s 1.21 2.43 0.02 0.14 +antipodes antipode nom m p 1.21 2.43 1.19 2.30 +antipodiste antipodiste nom s 0.00 0.14 0.00 0.07 +antipodistes antipodiste nom p 0.00 0.14 0.00 0.07 +antipoison antipoison adj m s 0.16 0.07 0.16 0.07 +antipoisons antipoison nom m p 0.00 0.07 0.00 0.07 +antipoliomyélitique antipoliomyélitique adj m s 0.00 0.07 0.00 0.07 +antipollution antipollution adj 0.05 0.00 0.05 0.00 +antipopulaire antipopulaire adj m s 0.00 0.07 0.00 0.07 +antiproton antiproton nom m s 0.07 0.00 0.04 0.00 +antiprotons antiproton nom m p 0.07 0.00 0.03 0.00 +antiprotéase antiprotéase nom f s 0.01 0.00 0.01 0.00 +antipsychiatrie antipsychiatrie nom f s 0.01 0.14 0.01 0.14 +antipsychotique antipsychotique adj m s 0.07 0.00 0.04 0.00 +antipsychotique antipsychotique nom m s 0.10 0.00 0.04 0.00 +antipsychotiques antipsychotique nom m p 0.10 0.00 0.06 0.00 +antiquaille antiquaille nom f s 0.14 0.41 0.00 0.14 +antiquailleries antiquaillerie nom f p 0.00 0.07 0.00 0.07 +antiquailles antiquaille nom f p 0.14 0.41 0.14 0.27 +antiquaire antiquaire nom s 2.33 7.03 1.52 3.58 +antiquaires antiquaire nom p 2.33 7.03 0.81 3.45 +antiquark antiquark nom m s 0.01 0.00 0.01 0.00 +antique antique adj s 7.21 15.54 5.59 10.61 +antiques antique adj p 7.21 15.54 1.63 4.93 +antiquité antiquité nom f s 4.92 6.55 2.12 3.65 +antiquités antiquité nom f p 4.92 6.55 2.80 2.91 +antirabique antirabique adj m s 0.01 0.07 0.01 0.07 +antiracisme antiracisme nom m s 0.11 0.00 0.11 0.00 +antiracistes antiraciste adj m p 0.02 0.27 0.02 0.27 +antiradiation antiradiation adj p 0.02 0.00 0.02 0.00 +antireligieuse antireligieux adj f s 0.02 0.14 0.02 0.00 +antireligieux antireligieux adj m 0.02 0.14 0.00 0.14 +antirides antirides adj 0.02 0.07 0.02 0.07 +antirouille antirouille adj s 0.06 0.00 0.06 0.00 +antirépublicain antirépublicain adj m s 0.00 0.07 0.00 0.07 +antirusse antirusse adj m s 0.00 0.07 0.00 0.07 +antisatellite antisatellite adj 0.03 0.00 0.03 0.00 +antiscientifique antiscientifique adj f s 0.14 0.07 0.14 0.07 +antisepsie antisepsie nom f s 0.00 0.07 0.00 0.07 +antiseptique antiseptique adj s 0.32 0.14 0.30 0.00 +antiseptiques antiseptique adj p 0.32 0.14 0.03 0.14 +antisexistes antisexiste adj m p 0.00 0.07 0.00 0.07 +antisexuel antisexuel adj m s 0.00 0.07 0.00 0.07 +antisionistes antisioniste adj p 0.00 0.07 0.00 0.07 +antiskating antiskating adj f p 0.00 0.07 0.00 0.07 +antisocial antisocial adj m s 0.77 0.07 0.12 0.00 +antisociale antisocial adj f s 0.77 0.07 0.17 0.00 +antisociales antisocial adj f p 0.77 0.07 0.02 0.07 +antisociaux antisocial adj m p 0.77 0.07 0.46 0.00 +antisolaire antisolaire adj f s 0.00 0.14 0.00 0.07 +antisolaires antisolaire adj f p 0.00 0.14 0.00 0.07 +antisoviétique antisoviétique adj s 0.00 0.34 0.00 0.27 +antisoviétiques antisoviétique adj p 0.00 0.34 0.00 0.07 +antisoviétisme antisoviétisme nom m s 0.00 0.07 0.00 0.07 +antispasmodique antispasmodique nom m s 0.02 0.00 0.02 0.00 +antisportif antisportif adj m s 0.01 0.00 0.01 0.00 +antistalinien antistalinien adj m s 0.00 0.27 0.00 0.20 +antistaliniens antistalinien adj m p 0.00 0.27 0.00 0.07 +antistatique antistatique adj f s 0.01 0.07 0.01 0.00 +antistatiques antistatique adj p 0.01 0.07 0.00 0.07 +antisèche antisèche nom s 0.23 0.14 0.15 0.00 +antisèches antisèche nom p 0.23 0.14 0.08 0.14 +antistress antistress adj m s 0.01 0.00 0.01 0.00 +antisémite antisémite adj s 0.96 1.55 0.72 0.61 +antisémites antisémite adj p 0.96 1.55 0.23 0.95 +antisémitisme antisémitisme nom m s 0.36 1.62 0.36 1.62 +antisérum antisérum nom m s 0.09 0.00 0.09 0.00 +antitabac antitabac adj f s 0.07 0.00 0.07 0.00 +antiterrorisme antiterrorisme nom m s 0.01 0.00 0.01 0.00 +antiterroriste antiterroriste adj s 0.66 0.27 0.66 0.27 +antithèse antithèse nom f s 0.11 0.88 0.11 0.81 +antithèses antithèse nom f p 0.11 0.88 0.00 0.07 +antithétiques antithétique adj p 0.00 0.07 0.00 0.07 +antitout antitout nom m s 0.00 0.07 0.00 0.07 +antitoxine antitoxine nom f s 0.08 0.00 0.08 0.00 +antitoxique antitoxique adj s 0.10 0.00 0.10 0.00 +antitrust antitrust adj 0.24 0.00 0.24 0.00 +antituberculeux antituberculeux nom m 0.00 0.14 0.00 0.14 +antitussif antitussif adj m s 0.01 0.07 0.01 0.00 +antitussives antitussif adj f p 0.01 0.07 0.00 0.07 +antitétanique antitétanique adj s 0.22 0.14 0.22 0.14 +antityphoïdique antityphoïdique adj m s 0.00 0.07 0.00 0.07 +antiémeute antiémeute adj s 0.01 0.00 0.01 0.00 +antiémétique antiémétique nom m s 0.01 0.00 0.01 0.00 +antivariolique antivariolique adj m s 0.01 0.00 0.01 0.00 +antivenimeux antivenimeux adj m s 0.03 0.00 0.03 0.00 +antiviolence antiviolence adj s 0.02 0.00 0.02 0.00 +antiviral antiviral adj m s 0.05 0.00 0.02 0.00 +antiviraux antiviral nom m p 0.16 0.00 0.14 0.00 +antivirus antivirus nom m 0.66 0.00 0.66 0.00 +antivol antivol nom m s 0.30 0.14 0.30 0.14 +antonin antonin adj m s 0.14 0.14 0.14 0.14 +antonomase antonomase nom f s 0.00 0.07 0.00 0.07 +antonyme antonyme nom m s 0.00 0.14 0.00 0.07 +antonymes antonyme nom m p 0.00 0.14 0.00 0.07 +antre antre nom m s 2.96 4.66 2.96 4.39 +antres antre nom m p 2.96 4.66 0.01 0.27 +anté anter ver 0.00 0.07 0.00 0.07 imp:pre:2s; +antéchrist antéchrist nom m s 2.89 1.08 2.83 1.08 +antéchrists antéchrist nom m p 2.89 1.08 0.06 0.00 +antécédent antécédent nom m s 5.71 0.68 0.38 0.00 +antécédents antécédent nom m p 5.71 0.68 5.33 0.68 +antédiluvien antédiluvien adj m s 0.03 0.88 0.01 0.41 +antédiluvienne antédiluvien adj f s 0.03 0.88 0.01 0.20 +antédiluviennes antédiluvien adj f p 0.03 0.88 0.00 0.27 +antédiluviens antédiluvien adj m p 0.03 0.88 0.01 0.00 +antépénultième antépénultième nom f s 0.00 0.20 0.00 0.14 +antépénultièmes antépénultième nom f p 0.00 0.20 0.00 0.07 +antérieur antérieur adj m s 3.82 10.27 0.88 2.43 +antérieure antérieur adj f s 3.82 10.27 1.82 3.92 +antérieurement antérieurement adv 0.36 1.01 0.36 1.01 +antérieures antérieur adj f p 3.82 10.27 0.66 1.69 +antérieurs antérieur adj m p 3.82 10.27 0.46 2.23 +antérograde antérograde adj f s 0.00 0.07 0.00 0.07 +anéanti anéantir ver m s 13.18 12.70 3.27 2.84 par:pas; +anéantie anéantir ver f s 13.18 12.70 1.55 1.96 par:pas; +anéanties anéantir ver f p 13.18 12.70 0.19 0.41 par:pas; +anéantir anéantir ver 13.18 12.70 4.41 3.78 inf; +anéantira anéantir ver 13.18 12.70 0.47 0.07 ind:fut:3s; +anéantirai anéantir ver 13.18 12.70 0.05 0.00 ind:fut:1s; +anéantiraient anéantir ver 13.18 12.70 0.01 0.07 cnd:pre:3p; +anéantirait anéantir ver 13.18 12.70 0.27 0.07 cnd:pre:3s; +anéantirent anéantir ver 13.18 12.70 0.00 0.14 ind:pas:3p; +anéantiriez anéantir ver 13.18 12.70 0.02 0.00 cnd:pre:2p; +anéantirons anéantir ver 13.18 12.70 0.06 0.00 ind:fut:1p; +anéantiront anéantir ver 13.18 12.70 0.09 0.00 ind:fut:3p; +anéantis anéantir ver m p 13.18 12.70 1.62 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +anéantissaient anéantir ver 13.18 12.70 0.00 0.27 ind:imp:3p; +anéantissait anéantir ver 13.18 12.70 0.00 0.47 ind:imp:3s; +anéantissant anéantir ver 13.18 12.70 0.04 0.14 par:pre; +anéantissante anéantissant adj f s 0.01 0.14 0.01 0.07 +anéantissantes anéantissant adj f p 0.01 0.14 0.00 0.07 +anéantisse anéantir ver 13.18 12.70 0.36 0.07 sub:pre:1s;sub:pre:3s; +anéantissement anéantissement nom m s 0.63 3.38 0.62 3.24 +anéantissements anéantissement nom m p 0.63 3.38 0.01 0.14 +anéantissent anéantir ver 13.18 12.70 0.14 0.14 ind:pre:3p; +anéantissez anéantir ver 13.18 12.70 0.08 0.00 imp:pre:2p;ind:pre:2p; +anéantissons anéantir ver 13.18 12.70 0.02 0.00 imp:pre:1p;ind:pre:1p; +anéantit anéantir ver 13.18 12.70 0.52 0.68 ind:pre:3s;ind:pas:3s; +anuité anuiter ver m s 0.00 0.20 0.00 0.14 par:pas; +anuitées anuiter ver f p 0.00 0.20 0.00 0.07 par:pas; +anémiais anémier ver 0.04 0.14 0.00 0.07 ind:imp:1s; +anémiante anémiant adj f s 0.00 0.07 0.00 0.07 +anémie anémie nom f s 1.31 0.41 1.31 0.41 +anémique anémique adj s 0.75 1.15 0.52 0.81 +anémiques anémique adj p 0.75 1.15 0.23 0.34 +anémié anémier ver m s 0.04 0.14 0.01 0.00 par:pas; +anémiée anémié adj f s 0.02 0.14 0.01 0.00 +anémiés anémié adj m p 0.02 0.14 0.01 0.07 +anémomètre anémomètre nom m s 0.02 0.14 0.02 0.14 +anémométrique anémométrique adj s 0.00 0.07 0.00 0.07 +anémone anémone nom f s 0.17 3.45 0.05 0.68 +anémones anémone nom f p 0.17 3.45 0.12 2.77 +anus anus nom m 1.63 1.82 1.63 1.82 +anuscopie anuscopie nom f s 0.01 0.00 0.01 0.00 +anévrisme anévrisme nom m s 1.33 0.07 1.28 0.07 +anévrismes anévrisme nom m p 1.33 0.07 0.05 0.00 +anxieuse anxieux adj f s 3.76 10.47 0.91 3.58 +anxieusement anxieusement adv 0.17 2.36 0.17 2.36 +anxieuses anxieux adj f p 3.76 10.47 0.02 0.54 +anxieux anxieux adj m 3.76 10.47 2.83 6.35 +anxiolytique anxiolytique nom m s 0.28 0.00 0.21 0.00 +anxiolytiques anxiolytique nom m p 0.28 0.00 0.07 0.00 +anxiété anxiété nom f s 3.06 10.27 2.92 9.86 +anxiétés anxiété nom f p 3.06 10.27 0.14 0.41 +anya anya nom m s 0.26 0.00 0.26 0.00 +août août nom m 12.65 49.66 12.65 49.66 +aoûtat aoûtat nom m s 0.08 0.00 0.08 0.00 +aoûtien aoûtien nom m s 0.00 0.07 0.00 0.07 +aoriste aoriste nom m s 0.00 0.07 0.00 0.07 +aorte aorte nom f s 1.16 0.20 1.16 0.20 +aortique aortique adj s 0.21 0.07 0.15 0.07 +aortiques aortique adj p 0.21 0.07 0.06 0.00 +aouls aoul nom m p 0.00 0.07 0.00 0.07 +apôtre apôtre nom m s 2.89 6.28 1.36 2.03 +apôtres apôtre nom m p 2.89 6.28 1.53 4.26 +apache apache adj s 0.60 0.20 0.40 0.20 +apaches apache adj p 0.60 0.20 0.20 0.00 +apaisa apaiser ver 8.52 35.00 0.12 3.04 ind:pas:3s; +apaisai apaiser ver 8.52 35.00 0.00 0.07 ind:pas:1s; +apaisaient apaiser ver 8.52 35.00 0.00 0.54 ind:imp:3p; +apaisais apaiser ver 8.52 35.00 0.02 0.07 ind:imp:1s;ind:imp:2s; +apaisait apaiser ver 8.52 35.00 0.04 3.18 ind:imp:3s; +apaisant apaisant adj m s 1.28 6.62 0.70 2.30 +apaisante apaisant adj f s 1.28 6.62 0.48 2.43 +apaisantes apaisant adj f p 1.28 6.62 0.06 0.95 +apaisants apaisant adj m p 1.28 6.62 0.04 0.95 +apaise apaiser ver 8.52 35.00 2.01 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apaisement apaisement nom m s 0.47 7.23 0.46 6.69 +apaisements apaisement nom m p 0.47 7.23 0.01 0.54 +apaisent apaiser ver 8.52 35.00 0.11 0.88 ind:pre:3p; +apaiser apaiser ver 8.52 35.00 3.49 8.85 inf; +apaisera apaiser ver 8.52 35.00 0.60 0.20 ind:fut:3s; +apaiseraient apaiser ver 8.52 35.00 0.01 0.14 cnd:pre:3p; +apaiserais apaiser ver 8.52 35.00 0.01 0.07 cnd:pre:1s; +apaiserait apaiser ver 8.52 35.00 0.09 0.54 cnd:pre:3s; +apaisez apaiser ver 8.52 35.00 0.19 0.07 imp:pre:2p; +apaisiez apaiser ver 8.52 35.00 0.01 0.00 ind:imp:2p; +apaisons apaiser ver 8.52 35.00 0.00 0.07 imp:pre:1p; +apaisât apaiser ver 8.52 35.00 0.00 0.27 sub:imp:3s; +apaisèrent apaiser ver 8.52 35.00 0.00 0.68 ind:pas:3p; +apaisé apaiser ver m s 8.52 35.00 1.08 4.66 par:pas; +apaisée apaiser ver f s 8.52 35.00 0.47 4.05 par:pas; +apaisées apaiser ver f p 8.52 35.00 0.04 0.74 par:pas; +apaisés apaiser ver m p 8.52 35.00 0.17 1.15 par:pas; +apanage apanage nom m s 0.27 1.22 0.27 1.15 +apanages apanage nom m p 0.27 1.22 0.00 0.07 +apartheid apartheid nom m s 0.53 0.07 0.53 0.07 +aparté aparté nom m s 0.24 1.69 0.20 1.15 +apartés aparté nom m p 0.24 1.69 0.04 0.54 +apathie apathie nom f s 0.91 1.49 0.91 1.49 +apathique apathique adj s 0.52 0.54 0.46 0.41 +apathiques apathique adj m p 0.52 0.54 0.06 0.14 +apatride apatride adj m s 0.32 0.54 0.30 0.27 +apatrides apatride adj m p 0.32 0.54 0.02 0.27 +apax apax nom m 0.00 0.07 0.00 0.07 +ape ape nom m s 0.23 0.14 0.23 0.07 +aperceptions aperception nom f p 0.00 0.14 0.00 0.14 +apercevaient apercevoir ver 34.56 233.11 0.00 2.30 ind:imp:3p; +apercevais apercevoir ver 34.56 233.11 0.15 6.55 ind:imp:1s;ind:imp:2s; +apercevait apercevoir ver 34.56 233.11 0.79 25.68 ind:imp:3s; +apercevant apercevoir ver 34.56 233.11 0.08 8.45 par:pre; +apercevez apercevoir ver 34.56 233.11 0.49 0.41 ind:pre:2p; +aperceviez apercevoir ver 34.56 233.11 0.14 0.00 ind:imp:2p; +apercevions apercevoir ver 34.56 233.11 0.03 1.08 ind:imp:1p;sub:pre:1p; +apercevoir apercevoir ver 34.56 233.11 6.16 35.20 inf; +apercevons apercevoir ver 34.56 233.11 0.06 0.95 ind:pre:1p; +apercevra apercevoir ver 34.56 233.11 1.27 1.42 ind:fut:3s; +apercevrai apercevoir ver 34.56 233.11 0.03 0.20 ind:fut:1s; +apercevraient apercevoir ver 34.56 233.11 0.00 0.07 cnd:pre:3p; +apercevrais apercevoir ver 34.56 233.11 0.08 0.34 cnd:pre:1s;cnd:pre:2s; +apercevrait apercevoir ver 34.56 233.11 0.37 1.22 cnd:pre:3s; +apercevras apercevoir ver 34.56 233.11 0.35 0.27 ind:fut:2s; +apercevrez apercevoir ver 34.56 233.11 0.23 0.68 ind:fut:2p; +apercevrons apercevoir ver 34.56 233.11 0.02 0.14 ind:fut:1p; +apercevront apercevoir ver 34.56 233.11 0.61 0.47 ind:fut:3p; +aperçûmes apercevoir ver 34.56 233.11 0.12 0.81 ind:pas:1p; +aperçût apercevoir ver 34.56 233.11 0.00 1.62 sub:imp:3s; +aperçois apercevoir ver 34.56 233.11 3.82 14.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +aperçoit apercevoir ver 34.56 233.11 3.15 21.82 ind:pre:3s; +aperçoive apercevoir ver 34.56 233.11 2.42 4.05 sub:pre:1s;sub:pre:3s; +aperçoivent apercevoir ver 34.56 233.11 0.43 1.62 ind:pre:3p; +aperçoives apercevoir ver 34.56 233.11 0.34 0.14 sub:pre:2s; +aperçu apercevoir ver m s 34.56 233.11 8.28 27.23 par:pas; +aperçue apercevoir ver f s 34.56 233.11 2.77 8.58 par:pas; +aperçues apercevoir ver f p 34.56 233.11 0.04 0.88 par:pas; +aperçurent apercevoir ver 34.56 233.11 0.25 3.85 ind:pas:3p; +aperçus apercevoir ver m p 34.56 233.11 1.34 16.69 ind:pas:1s;par:pas; +aperçussent apercevoir ver 34.56 233.11 0.00 0.07 sub:imp:3p; +aperçut apercevoir ver 34.56 233.11 0.76 45.47 ind:pas:3s; +apes ape nom m p 0.23 0.14 0.00 0.07 +apesanteur apesanteur nom f s 0.93 0.81 0.93 0.81 +apeura apeurer ver 0.36 1.76 0.00 0.07 ind:pas:3s; +apeuraient apeurer ver 0.36 1.76 0.00 0.07 ind:imp:3p; +apeurait apeurer ver 0.36 1.76 0.00 0.14 ind:imp:3s; +apeure apeurer ver 0.36 1.76 0.01 0.07 ind:pre:3s; +apeurer apeurer ver 0.36 1.76 0.01 0.20 inf; +apeuré apeuré adj m s 1.31 5.68 0.69 2.36 +apeurée apeuré adj f s 1.31 5.68 0.47 1.22 +apeurées apeuré adj f p 1.31 5.68 0.01 0.34 +apeurés apeuré adj m p 1.31 5.68 0.14 1.76 +apex apex nom m 0.33 0.07 0.33 0.07 +aphaniptères aphaniptère nom m p 0.00 0.07 0.00 0.07 +aphasie aphasie nom f s 0.20 0.27 0.20 0.27 +aphasique aphasique adj s 0.03 0.47 0.02 0.27 +aphasiques aphasique adj m p 0.03 0.47 0.01 0.20 +aphone aphone adj s 0.27 1.01 0.25 0.74 +aphones aphone adj m p 0.27 1.01 0.02 0.27 +aphonie aphonie nom f s 0.00 0.14 0.00 0.14 +aphorisme aphorisme nom m s 0.04 0.88 0.02 0.14 +aphorismes aphorisme nom m p 0.04 0.88 0.02 0.74 +aphrodisiaque aphrodisiaque nom m s 1.27 0.27 1.09 0.14 +aphrodisiaques aphrodisiaque nom m p 1.27 0.27 0.17 0.14 +aphrodisie aphrodisie nom f s 0.00 0.14 0.00 0.14 +aphrodite aphrodite nom f s 0.01 0.00 0.01 0.00 +aphtes aphte nom m p 0.05 0.00 0.05 0.00 +aphteuse aphteux adj f s 0.17 0.34 0.16 0.34 +aphteux aphteux adj m 0.17 0.34 0.01 0.00 +aphérèse aphérèse nom f s 0.00 0.07 0.00 0.07 +api api nom m s 0.16 0.20 0.16 0.20 +apiculteur apiculteur nom m s 0.10 0.07 0.04 0.07 +apiculteurs apiculteur nom m p 0.10 0.07 0.02 0.00 +apicultrice apiculteur nom f s 0.10 0.07 0.04 0.00 +apiculture apiculture nom f s 0.04 0.00 0.04 0.00 +apion apion nom m s 0.00 0.07 0.00 0.07 +apis apis nom m 0.01 0.00 0.01 0.00 +apitoie apitoyer ver 2.52 6.22 0.69 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apitoiement apitoiement nom m s 0.29 0.61 0.29 0.61 +apitoient apitoyer ver 2.52 6.22 0.01 0.20 ind:pre:3p; +apitoierai apitoyer ver 2.52 6.22 0.03 0.00 ind:fut:1s; +apitoierait apitoyer ver 2.52 6.22 0.00 0.07 cnd:pre:3s; +apitoies apitoyer ver 2.52 6.22 0.14 0.00 ind:pre:2s; +apitoya apitoyer ver 2.52 6.22 0.00 0.61 ind:pas:3s; +apitoyaient apitoyer ver 2.52 6.22 0.00 0.14 ind:imp:3p; +apitoyait apitoyer ver 2.52 6.22 0.01 0.47 ind:imp:3s; +apitoyant apitoyer ver 2.52 6.22 0.07 0.27 par:pre; +apitoyer apitoyer ver 2.52 6.22 1.32 1.62 inf; +apitoyez apitoyer ver 2.52 6.22 0.08 0.00 imp:pre:2p;ind:pre:2p; +apitoyons apitoyer ver 2.52 6.22 0.01 0.14 imp:pre:1p;ind:pre:1p; +apitoyèrent apitoyer ver 2.52 6.22 0.00 0.07 ind:pas:3p; +apitoyé apitoyer ver m s 2.52 6.22 0.04 1.15 par:pas; +apitoyée apitoyer ver f s 2.52 6.22 0.01 0.61 par:pas; +apitoyées apitoyer ver f p 2.52 6.22 0.00 0.14 par:pas; +apitoyés apitoyer ver m p 2.52 6.22 0.10 0.41 par:pas; +apivore apivore adj s 0.00 0.07 0.00 0.07 +aplani aplanir ver m s 0.61 2.57 0.05 0.61 par:pas; +aplanie aplanir ver f s 0.61 2.57 0.01 0.20 par:pas; +aplanies aplanir ver f p 0.61 2.57 0.00 0.14 par:pas; +aplanir aplanir ver 0.61 2.57 0.35 0.41 inf; +aplanira aplanir ver 0.61 2.57 0.00 0.07 ind:fut:3s; +aplaniront aplanir ver 0.61 2.57 0.00 0.14 ind:fut:3p; +aplanis aplanir ver 0.61 2.57 0.01 0.07 imp:pre:2s;ind:pre:1s; +aplanissaient aplanir ver 0.61 2.57 0.00 0.20 ind:imp:3p; +aplanissait aplanir ver 0.61 2.57 0.01 0.47 ind:imp:3s; +aplanissant aplanir ver 0.61 2.57 0.01 0.14 par:pre; +aplanissement aplanissement nom m s 0.01 0.34 0.01 0.34 +aplanissez aplanir ver 0.61 2.57 0.14 0.00 imp:pre:2p; +aplanissons aplanir ver 0.61 2.57 0.00 0.07 imp:pre:1p; +aplanit aplanir ver 0.61 2.57 0.01 0.07 ind:pre:3s; +aplasie aplasie nom f s 0.01 0.00 0.01 0.00 +aplat aplat nom m s 0.01 0.27 0.00 0.07 +aplati aplatir ver m s 1.91 14.53 0.32 2.77 par:pas; +aplatie aplatir ver f s 1.91 14.53 0.21 1.28 par:pas; +aplaties aplatir ver f p 1.91 14.53 0.02 0.47 par:pas; +aplatir aplatir ver 1.91 14.53 0.67 2.30 inf; +aplatirais aplatir ver 1.91 14.53 0.02 0.00 cnd:pre:1s; +aplatirait aplatir ver 1.91 14.53 0.02 0.07 cnd:pre:3s; +aplatirent aplatir ver 1.91 14.53 0.00 0.20 ind:pas:3p; +aplatirez aplatir ver 1.91 14.53 0.00 0.07 ind:fut:2p; +aplatis aplatir ver m p 1.91 14.53 0.34 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +aplatissaient aplatir ver 1.91 14.53 0.01 0.20 ind:imp:3p; +aplatissais aplatir ver 1.91 14.53 0.00 0.14 ind:imp:1s; +aplatissait aplatir ver 1.91 14.53 0.00 0.81 ind:imp:3s; +aplatissant aplatir ver 1.91 14.53 0.00 0.95 par:pre; +aplatisse aplatir ver 1.91 14.53 0.03 0.14 sub:pre:1s;sub:pre:3s; +aplatissement aplatissement nom m s 0.03 0.54 0.03 0.41 +aplatissements aplatissement nom m p 0.03 0.54 0.00 0.14 +aplatissent aplatir ver 1.91 14.53 0.02 0.54 ind:pre:3p; +aplatissez aplatir ver 1.91 14.53 0.06 0.07 imp:pre:2p;ind:pre:2p; +aplatit aplatir ver 1.91 14.53 0.19 2.84 ind:pre:3s;ind:pas:3s; +aplats aplat nom m p 0.01 0.27 0.01 0.20 +aplomb aplomb nom m s 1.61 9.05 1.61 8.99 +aplombs aplomb nom m p 1.61 9.05 0.00 0.07 +apnée apnée nom f s 0.60 0.27 0.60 0.27 +apocalypse apocalypse nom f s 4.87 6.35 4.85 6.01 +apocalypses apocalypse nom f p 4.87 6.35 0.03 0.34 +apocalyptique apocalyptique adj s 0.58 1.76 0.38 1.01 +apocalyptiques apocalyptique adj p 0.58 1.76 0.20 0.74 +apocope apocope nom f s 0.01 0.00 0.01 0.00 +apocryphe apocryphe adj s 0.01 0.27 0.01 0.14 +apocryphes apocryphe nom m p 0.04 0.14 0.03 0.00 +apodictique apodictique adj f s 0.00 0.07 0.00 0.07 +apogée apogée nom m s 1.40 1.76 1.40 1.76 +apâli apâlir ver m s 0.00 0.14 0.00 0.07 par:pas; +apâlis apâlir ver m p 0.00 0.14 0.00 0.07 par:pas; +apolitique apolitique adj m s 0.60 0.20 0.58 0.14 +apolitiques apolitique nom p 0.20 0.07 0.10 0.07 +apolitisme apolitisme nom m s 0.00 0.07 0.00 0.07 +apollon apollon nom m s 0.04 0.14 0.04 0.00 +apollons apollon nom m p 0.04 0.14 0.01 0.14 +apologie apologie nom f s 0.17 1.22 0.17 1.22 +apologiste apologiste nom s 0.02 0.20 0.01 0.14 +apologistes apologiste nom p 0.02 0.20 0.01 0.07 +apologue apologue nom m s 0.00 0.61 0.00 0.61 +apologétique apologétique nom s 0.00 0.47 0.00 0.47 +apologétiques apologétique adj m p 0.00 0.14 0.00 0.07 +aponévroses aponévrose nom f p 0.01 0.07 0.01 0.07 +aponévrotique aponévrotique adj f s 0.01 0.00 0.01 0.00 +apophtegmes apophtegme nom m p 0.00 0.20 0.00 0.20 +apoplectique apoplectique adj s 0.15 0.88 0.14 0.88 +apoplectiques apoplectique adj p 0.15 0.88 0.01 0.00 +apoplexie apoplexie nom f s 0.33 0.95 0.33 0.88 +apoplexies apoplexie nom f p 0.33 0.95 0.00 0.07 +apoptose apoptose nom f s 0.03 0.00 0.03 0.00 +apostasie apostasie nom f s 0.01 0.41 0.01 0.41 +apostasié apostasier ver m s 0.00 0.07 0.00 0.07 par:pas; +apostat apostat nom m s 0.46 0.27 0.25 0.20 +apostate apostat nom f s 0.46 0.27 0.00 0.07 +apostats apostat nom m p 0.46 0.27 0.21 0.00 +apostillée apostiller ver f s 0.00 0.07 0.00 0.07 par:pas; +apostolat apostolat nom m s 0.10 1.08 0.10 1.08 +apostolique apostolique adj s 0.72 1.96 0.72 1.89 +apostoliques apostolique adj f p 0.72 1.96 0.00 0.07 +apostropha apostropher ver 0.05 3.31 0.00 0.68 ind:pas:3s; +apostrophaient apostropher ver 0.05 3.31 0.00 0.20 ind:imp:3p; +apostrophait apostropher ver 0.05 3.31 0.00 0.61 ind:imp:3s; +apostrophant apostropher ver 0.05 3.31 0.00 0.34 par:pre; +apostrophe apostrophe nom f s 0.15 1.76 0.15 1.15 +apostrophent apostropher ver 0.05 3.31 0.00 0.14 ind:pre:3p; +apostropher apostropher ver 0.05 3.31 0.01 0.27 inf; +apostrophes apostrophe nom f p 0.15 1.76 0.00 0.61 +apostrophèrent apostropher ver 0.05 3.31 0.00 0.07 ind:pas:3p; +apostrophé apostropher ver m s 0.05 3.31 0.00 0.34 par:pas; +apostrophée apostropher ver f s 0.05 3.31 0.00 0.20 par:pas; +apostées aposter ver f p 0.00 0.07 0.00 0.07 par:pas; +apostume apostume nom m s 0.00 0.07 0.00 0.07 +apothicaire apothicaire nom m s 0.32 1.28 0.32 1.15 +apothicairerie apothicairerie nom f s 0.00 0.07 0.00 0.07 +apothicaires apothicaire nom m p 0.32 1.28 0.00 0.14 +apothéose apothéose nom f s 0.49 4.26 0.49 4.12 +apothéoses apothéose nom f p 0.49 4.26 0.00 0.14 +apparût apparaître ver 43.78 159.26 0.01 0.74 sub:imp:3s; +apparaît apparaître ver 43.78 159.26 11.14 27.91 ind:pre:3s; +apparaîtra apparaître ver 43.78 159.26 1.77 1.08 ind:fut:3s; +apparaîtrai apparaître ver 43.78 159.26 0.03 0.07 ind:fut:1s; +apparaîtraient apparaître ver 43.78 159.26 0.02 0.20 cnd:pre:3p; +apparaîtrais apparaître ver 43.78 159.26 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +apparaîtrait apparaître ver 43.78 159.26 0.31 1.35 cnd:pre:3s; +apparaîtras apparaître ver 43.78 159.26 0.02 0.07 ind:fut:2s; +apparaître apparaître ver 43.78 159.26 6.30 24.46 inf; +apparaîtrez apparaître ver 43.78 159.26 0.03 0.07 ind:fut:2p; +apparaîtrions apparaître ver 43.78 159.26 0.01 0.07 cnd:pre:1p; +apparaîtrons apparaître ver 43.78 159.26 0.01 0.20 ind:fut:1p; +apparaîtront apparaître ver 43.78 159.26 0.41 0.61 ind:fut:3p; +apparais apparaître ver 43.78 159.26 0.90 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +apparaissaient apparaître ver 43.78 159.26 0.32 8.51 ind:imp:3p; +apparaissais apparaître ver 43.78 159.26 0.03 0.34 ind:imp:1s;ind:imp:2s; +apparaissait apparaître ver 43.78 159.26 1.06 27.09 ind:imp:3s; +apparaissant apparaître ver 43.78 159.26 0.27 2.43 par:pre; +apparaisse apparaître ver 43.78 159.26 0.93 2.03 sub:pre:1s;sub:pre:3s; +apparaissent apparaître ver 43.78 159.26 3.89 7.97 ind:pre:3p; +apparaissez apparaître ver 43.78 159.26 0.38 0.27 imp:pre:2p;ind:pre:2p; +apparaissiez apparaître ver 43.78 159.26 0.05 0.14 ind:imp:2p; +apparaissions apparaître ver 43.78 159.26 0.00 0.07 ind:imp:1p; +apparaissons apparaître ver 43.78 159.26 0.05 0.07 imp:pre:1p;ind:pre:1p; +apparat apparat nom m s 0.51 4.86 0.51 4.80 +apparatchik apparatchik nom m s 0.01 0.34 0.01 0.27 +apparatchiks apparatchik nom m p 0.01 0.34 0.00 0.07 +apparats apparat nom m p 0.51 4.86 0.00 0.07 +apparaux apparaux nom m p 0.00 0.20 0.00 0.20 +appareil_photo appareil_photo nom m s 0.32 0.27 0.32 0.27 +appareil appareil nom m s 51.53 44.66 44.20 35.88 +appareilla appareiller ver 1.24 2.97 0.00 0.34 ind:pas:3s; +appareillage appareillage nom m s 0.29 1.89 0.29 1.62 +appareillages appareillage nom m p 0.29 1.89 0.00 0.27 +appareillaient appareiller ver 1.24 2.97 0.00 0.07 ind:imp:3p; +appareillait appareiller ver 1.24 2.97 0.00 0.41 ind:imp:3s; +appareillant appareiller ver 1.24 2.97 0.00 0.14 par:pre; +appareille appareiller ver 1.24 2.97 0.22 0.27 ind:pre:1s;ind:pre:3s; +appareillent appareiller ver 1.24 2.97 0.01 0.07 ind:pre:3p; +appareiller appareiller ver 1.24 2.97 0.51 0.81 inf; +appareilleraient appareiller ver 1.24 2.97 0.00 0.07 cnd:pre:3p; +appareillez appareiller ver 1.24 2.97 0.06 0.00 imp:pre:2p; +appareillions appareiller ver 1.24 2.97 0.00 0.07 ind:imp:1p; +appareillons appareiller ver 1.24 2.97 0.40 0.14 imp:pre:1p;ind:pre:1p; +appareillé appareiller ver m s 1.24 2.97 0.04 0.41 par:pas; +appareillés appareiller ver m p 1.24 2.97 0.01 0.20 par:pas; +appareils appareil nom m p 51.53 44.66 7.34 8.78 +apparemment apparemment adv 43.08 29.53 43.08 29.53 +apparence apparence nom f s 17.64 48.51 11.85 34.32 +apparences apparence nom f p 17.64 48.51 5.79 14.19 +apparent apparent adj m s 2.88 19.32 1.08 4.86 +apparentaient apparenter ver 0.77 4.86 0.01 0.54 ind:imp:3p; +apparentait apparenter ver 0.77 4.86 0.02 0.74 ind:imp:3s; +apparentant apparenter ver 0.77 4.86 0.01 0.27 par:pre; +apparente apparent adj f s 2.88 19.32 1.35 10.34 +apparentement apparentement nom m s 0.03 0.07 0.03 0.07 +apparentent apparenter ver 0.77 4.86 0.03 0.41 ind:pre:3p; +apparenter apparenter ver 0.77 4.86 0.03 0.34 inf; +apparentes apparent adj f p 2.88 19.32 0.18 2.30 +apparents apparent adj m p 2.88 19.32 0.27 1.82 +apparenté apparenter ver m s 0.77 4.86 0.27 0.74 par:pas; +apparentée apparenter ver f s 0.77 4.86 0.05 0.47 par:pas; +apparentés apparenter ver m p 0.77 4.86 0.13 0.14 par:pas; +appariait apparier ver 0.19 0.81 0.00 0.14 ind:imp:3s; +appariant apparier ver 0.19 0.81 0.00 0.14 par:pre; +apparie apparier ver 0.19 0.81 0.00 0.07 ind:pre:3s; +apparier apparier ver 0.19 0.81 0.00 0.07 inf; +appariteur appariteur nom m s 0.28 0.61 0.28 0.34 +appariteurs appariteur nom m p 0.28 0.61 0.00 0.27 +apparition apparition nom f s 8.02 32.64 6.93 28.65 +apparitions apparition nom f p 8.02 32.64 1.08 3.99 +apparié apparier ver m s 0.19 0.81 0.01 0.07 par:pas; +appariée apparier ver f s 0.19 0.81 0.00 0.07 par:pas; +appariées apparier ver f p 0.19 0.81 0.00 0.14 par:pas; +appariés apparier ver m p 0.19 0.81 0.18 0.14 par:pas; +appart appart nom m s 18.07 2.03 17.48 1.96 +appartînt appartenir ver 80.57 92.36 0.00 0.74 sub:imp:3s; +appartement_roi appartement_roi nom m s 0.00 0.07 0.00 0.07 +appartement appartement nom m s 76.33 99.26 69.77 86.01 +appartements appartement nom m p 76.33 99.26 6.56 13.24 +appartenaient appartenir ver 80.57 92.36 2.26 9.05 ind:imp:3p; +appartenais appartenir ver 80.57 92.36 0.86 1.96 ind:imp:1s;ind:imp:2s; +appartenait appartenir ver 80.57 92.36 8.89 24.19 ind:imp:3s; +appartenance appartenance nom f s 1.83 3.45 1.82 3.24 +appartenances appartenance nom f p 1.83 3.45 0.01 0.20 +appartenant appartenir ver 80.57 92.36 2.90 5.47 par:pre; +appartenez appartenir ver 80.57 92.36 0.89 0.74 imp:pre:2p;ind:pre:2p; +apparteniez appartenir ver 80.57 92.36 0.19 0.14 ind:imp:2p; +appartenions appartenir ver 80.57 92.36 0.04 0.68 ind:imp:1p; +appartenir appartenir ver 80.57 92.36 3.74 9.12 inf; +appartenons appartenir ver 80.57 92.36 0.71 0.81 imp:pre:1p;ind:pre:1p; +appartenu appartenir ver m s 80.57 92.36 2.23 4.66 par:pas; +appartenues appartenir ver f p 80.57 92.36 0.01 0.00 par:pas; +appartiendra appartenir ver 80.57 92.36 1.23 1.01 ind:fut:3s; +appartiendrai appartenir ver 80.57 92.36 0.02 0.14 ind:fut:1s; +appartiendraient appartenir ver 80.57 92.36 0.22 0.47 cnd:pre:3p; +appartiendrais appartenir ver 80.57 92.36 0.00 0.14 cnd:pre:1s;cnd:pre:2s; +appartiendrait appartenir ver 80.57 92.36 0.36 1.42 cnd:pre:3s; +appartiendras appartenir ver 80.57 92.36 0.12 0.00 ind:fut:2s; +appartiendrons appartenir ver 80.57 92.36 0.01 0.00 ind:fut:1p; +appartiendront appartenir ver 80.57 92.36 0.07 0.07 ind:fut:3p; +appartienne appartenir ver 80.57 92.36 0.63 0.74 sub:pre:1s;sub:pre:3s; +appartiennent appartenir ver 80.57 92.36 6.86 6.76 ind:pre:3p; +appartiens appartenir ver 80.57 92.36 7.37 2.84 imp:pre:2s;ind:pre:1s;ind:pre:2s; +appartient appartenir ver 80.57 92.36 40.94 20.27 ind:pre:3s; +appartins appartenir ver 80.57 92.36 0.00 0.07 ind:pas:1s; +appartinssent appartenir ver 80.57 92.36 0.00 0.14 sub:imp:3p; +appartint appartenir ver 80.57 92.36 0.00 0.74 ind:pas:3s; +apparts appart nom m p 18.07 2.03 0.59 0.07 +apparu apparaître ver m s 43.78 159.26 6.43 9.12 par:pas; +apparue apparaître ver f s 43.78 159.26 4.21 6.55 par:pas; +apparues apparaître ver f p 43.78 159.26 0.81 1.15 par:pas; +apparurent apparaître ver 43.78 159.26 0.52 5.95 ind:pas:3p; +apparus apparaître ver m p 43.78 159.26 1.74 2.09 ind:pas:1s;par:pas; +apparussent apparaître ver 43.78 159.26 0.00 0.14 sub:imp:3p; +apparut apparaître ver 43.78 159.26 2.10 28.04 ind:pas:3s; +appas appas nom m p 0.40 0.95 0.40 0.95 +appauvri appauvrir ver m s 0.56 1.89 0.20 0.41 par:pas; +appauvrie appauvrir ver f s 0.56 1.89 0.12 0.41 par:pas; +appauvries appauvrir ver f p 0.56 1.89 0.03 0.07 par:pas; +appauvrir appauvrir ver 0.56 1.89 0.14 0.27 inf; +appauvris appauvrir ver m p 0.56 1.89 0.03 0.20 par:pas; +appauvrissaient appauvrir ver 0.56 1.89 0.00 0.14 ind:imp:3p; +appauvrissait appauvrir ver 0.56 1.89 0.00 0.07 ind:imp:3s; +appauvrissant appauvrissant adj m s 0.00 0.20 0.00 0.14 +appauvrissante appauvrissant adj f s 0.00 0.20 0.00 0.07 +appauvrissement appauvrissement nom m s 0.00 0.74 0.00 0.74 +appauvrissez appauvrir ver 0.56 1.89 0.02 0.07 imp:pre:2p;ind:pre:2p; +appauvrissions appauvrir ver 0.56 1.89 0.00 0.07 ind:imp:1p; +appauvrissons appauvrir ver 0.56 1.89 0.00 0.07 imp:pre:1p; +appauvrit appauvrir ver 0.56 1.89 0.03 0.14 ind:pre:3s;ind:pas:3s; +appeau appeau nom m s 0.08 0.41 0.06 0.27 +appeaux appeau nom m p 0.08 0.41 0.02 0.14 +appel appel nom m s 100.18 73.45 80.88 56.69 +appela appeler ver 1165.45 465.34 1.67 24.26 ind:pas:3s; +appelai appeler ver 1165.45 465.34 0.14 3.92 ind:pas:1s; +appelaient appeler ver 1165.45 465.34 4.61 14.93 ind:imp:3p; +appelais appeler ver 1165.45 465.34 8.02 6.62 ind:imp:1s;ind:imp:2s; +appelait appeler ver 1165.45 465.34 47.44 104.59 ind:imp:3s; +appelant appeler ver 1165.45 465.34 2.40 7.16 par:pre; +appelants appelant nom m p 0.42 0.54 0.10 0.07 +appeler appeler ver 1165.45 465.34 192.66 63.92 ind:imp:3s;inf; +appeleur appeleur nom m s 0.00 0.07 0.00 0.07 +appelez appeler ver 1165.45 465.34 95.78 11.42 imp:pre:2p;ind:pre:2p; +appeliez appeler ver 1165.45 465.34 2.53 0.81 ind:imp:2p;sub:pre:2p; +appelions appeler ver 1165.45 465.34 0.70 3.38 ind:imp:1p; +appellation appellation nom f s 0.36 3.31 0.28 2.43 +appellations appellation nom f p 0.36 3.31 0.08 0.88 +appelle appeler ver 1165.45 465.34 485.77 132.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +appellent appeler ver 1165.45 465.34 23.89 16.01 ind:pre:3p; +appellera appeler ver 1165.45 465.34 9.29 2.50 ind:fut:3s; +appellerai appeler ver 1165.45 465.34 20.71 3.58 ind:fut:1s; +appelleraient appeler ver 1165.45 465.34 0.38 0.34 cnd:pre:3p; +appellerais appeler ver 1165.45 465.34 4.08 0.61 cnd:pre:1s;cnd:pre:2s; +appellerait appeler ver 1165.45 465.34 2.66 3.85 cnd:pre:3s; +appelleras appeler ver 1165.45 465.34 2.66 0.81 ind:fut:2s; +appellerez appeler ver 1165.45 465.34 1.30 0.20 ind:fut:2p; +appelleriez appeler ver 1165.45 465.34 0.77 0.20 cnd:pre:2p; +appellerions appeler ver 1165.45 465.34 0.10 0.14 cnd:pre:1p; +appellerons appeler ver 1165.45 465.34 0.88 0.54 ind:fut:1p; +appelleront appeler ver 1165.45 465.34 1.59 0.47 ind:fut:3p; +appelles appeler ver 1165.45 465.34 67.07 8.72 ind:pre:2s;sub:pre:2s; +appelons appeler ver 1165.45 465.34 8.38 5.68 imp:pre:1p;ind:pre:1p; +appelât appeler ver 1165.45 465.34 0.01 1.28 sub:imp:3s; +appels appel nom m p 100.18 73.45 19.30 16.76 +appelèrent appeler ver 1165.45 465.34 0.17 1.49 ind:pas:3p; +appelé appeler ver m s 1165.45 465.34 144.29 30.61 par:pas; +appelée appeler ver f s 1165.45 465.34 27.50 9.12 par:pas; +appelées appeler ver f p 1165.45 465.34 0.95 2.03 par:pas; +appelés appeler ver m p 1165.45 465.34 7.04 3.78 par:pas; +appendait appendre ver 0.04 0.41 0.00 0.07 ind:imp:3s; +appendice appendice nom m s 1.59 1.96 1.50 1.35 +appendicectomie appendicectomie nom f s 0.25 0.00 0.25 0.00 +appendices appendice nom m p 1.59 1.96 0.09 0.61 +appendicite appendicite nom f s 1.75 1.08 1.75 1.08 +appendrait appendre ver 0.04 0.41 0.00 0.07 cnd:pre:3s; +appendre appendre ver 0.04 0.41 0.03 0.07 inf; +appends appendre ver 0.04 0.41 0.01 0.00 imp:pre:2s; +appendu appendre ver m s 0.04 0.41 0.00 0.07 par:pas; +appendues appendre ver f p 0.04 0.41 0.00 0.07 par:pas; +appendus appendre ver m p 0.04 0.41 0.00 0.07 par:pas; +appentis appentis nom m 0.08 2.64 0.08 2.64 +appert appert ver 0.00 0.14 0.00 0.14 inf; +appesanti appesantir ver m s 0.02 3.04 0.00 0.27 par:pas; +appesantie appesantir ver f s 0.02 3.04 0.00 0.41 par:pas; +appesanties appesantir ver f p 0.02 3.04 0.00 0.14 par:pas; +appesantir appesantir ver 0.02 3.04 0.01 0.61 inf; +appesantis appesantir ver m p 0.02 3.04 0.00 0.20 ind:pre:1s;par:pas; +appesantissais appesantir ver 0.02 3.04 0.01 0.07 ind:imp:1s; +appesantissait appesantir ver 0.02 3.04 0.00 0.61 ind:imp:3s; +appesantissant appesantir ver 0.02 3.04 0.00 0.07 par:pre; +appesantissement appesantissement nom m s 0.00 0.07 0.00 0.07 +appesantit appesantir ver 0.02 3.04 0.00 0.68 ind:pre:3s;ind:pas:3s; +applaudîmes applaudir ver 15.82 17.97 0.00 0.07 ind:pas:1p; +applaudît applaudir ver 15.82 17.97 0.00 0.07 sub:imp:3s; +applaudi applaudir ver m s 15.82 17.97 1.56 2.03 par:pas; +applaudie applaudir ver f s 15.82 17.97 0.15 0.27 par:pas; +applaudies applaudir ver f p 15.82 17.97 0.01 0.20 par:pas; +applaudimètre applaudimètre nom m s 0.02 0.00 0.02 0.00 +applaudir applaudir ver 15.82 17.97 3.16 4.46 inf; +applaudira applaudir ver 15.82 17.97 0.07 0.07 ind:fut:3s; +applaudirai applaudir ver 15.82 17.97 0.25 0.00 ind:fut:1s; +applaudiraient applaudir ver 15.82 17.97 0.02 0.14 cnd:pre:3p; +applaudirais applaudir ver 15.82 17.97 0.17 0.07 cnd:pre:1s; +applaudirait applaudir ver 15.82 17.97 0.03 0.07 cnd:pre:3s; +applaudirent applaudir ver 15.82 17.97 0.00 0.61 ind:pas:3p; +applaudirez applaudir ver 15.82 17.97 0.02 0.07 ind:fut:2p; +applaudirons applaudir ver 15.82 17.97 0.02 0.00 ind:fut:1p; +applaudis applaudir ver m p 15.82 17.97 0.60 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +applaudissaient applaudir ver 15.82 17.97 0.27 1.15 ind:imp:3p; +applaudissais applaudir ver 15.82 17.97 0.22 0.14 ind:imp:1s;ind:imp:2s; +applaudissait applaudir ver 15.82 17.97 0.49 2.16 ind:imp:3s; +applaudissant applaudir ver 15.82 17.97 0.20 0.14 par:pre; +applaudisse applaudir ver 15.82 17.97 0.10 0.00 sub:pre:1s;sub:pre:3s; +applaudissement applaudissement nom m s 7.04 9.26 0.50 0.34 +applaudissements applaudissement nom m p 7.04 9.26 6.54 8.92 +applaudissent applaudir ver 15.82 17.97 0.47 0.95 ind:pre:3p;sub:imp:3p; +applaudisseur applaudisseur nom m s 0.01 0.00 0.01 0.00 +applaudissez applaudir ver 15.82 17.97 2.75 0.07 imp:pre:2p;ind:pre:2p; +applaudissiez applaudir ver 15.82 17.97 0.02 0.00 ind:imp:2p; +applaudissions applaudir ver 15.82 17.97 0.00 0.07 ind:imp:1p; +applaudissons applaudir ver 15.82 17.97 0.89 0.07 imp:pre:1p;ind:pre:1p; +applaudit applaudir ver 15.82 17.97 4.37 3.99 ind:pre:3s;ind:pas:3s; +applicabilité applicabilité nom f s 0.02 0.00 0.02 0.00 +applicable applicable adj s 0.30 1.01 0.14 0.61 +applicables applicable adj p 0.30 1.01 0.16 0.41 +applicateur applicateur nom m s 0.28 0.00 0.28 0.00 +application application nom f s 2.81 15.88 2.10 15.34 +applications application nom f p 2.81 15.88 0.70 0.54 +appliqua appliquer ver 17.89 47.84 0.01 3.11 ind:pas:3s; +appliquai appliquer ver 17.89 47.84 0.01 1.01 ind:pas:1s; +appliquaient appliquer ver 17.89 47.84 0.04 1.22 ind:imp:3p; +appliquais appliquer ver 17.89 47.84 0.46 1.35 ind:imp:1s;ind:imp:2s; +appliquait appliquer ver 17.89 47.84 0.14 7.09 ind:imp:3s; +appliquant appliquer ver 17.89 47.84 0.16 4.26 par:pre; +appliquasse appliquer ver 17.89 47.84 0.00 0.07 sub:imp:1s; +appliquassions appliquer ver 17.89 47.84 0.00 0.07 sub:imp:1p; +applique appliquer ver 17.89 47.84 5.85 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +appliquent appliquer ver 17.89 47.84 1.23 1.62 ind:pre:3p; +appliquer appliquer ver 17.89 47.84 4.77 10.61 inf; +appliquera appliquer ver 17.89 47.84 0.09 0.34 ind:fut:3s; +appliquerai appliquer ver 17.89 47.84 0.23 0.14 ind:fut:1s; +appliquerais appliquer ver 17.89 47.84 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +appliquerait appliquer ver 17.89 47.84 0.04 0.27 cnd:pre:3s; +appliqueras appliquer ver 17.89 47.84 0.00 0.07 ind:fut:2s; +appliquerez appliquer ver 17.89 47.84 0.12 0.00 ind:fut:2p; +appliquerons appliquer ver 17.89 47.84 0.02 0.07 ind:fut:1p; +appliques appliquer ver 17.89 47.84 0.50 0.14 ind:pre:2s; +appliquez appliquer ver 17.89 47.84 0.86 0.00 imp:pre:2p;ind:pre:2p; +appliquions appliquer ver 17.89 47.84 0.00 0.07 ind:imp:1p; +appliquons appliquer ver 17.89 47.84 0.14 0.07 imp:pre:1p;ind:pre:1p; +appliquât appliquer ver 17.89 47.84 0.00 0.41 sub:imp:3s; +appliquèrent appliquer ver 17.89 47.84 0.00 0.54 ind:pas:3p; +appliqué appliquer ver m s 17.89 47.84 1.85 5.07 par:pas; +appliquée appliquer ver f s 17.89 47.84 0.91 2.43 par:pas; +appliquées appliquer ver f p 17.89 47.84 0.26 1.08 par:pas; +appliqués appliqué adj m p 0.59 6.01 0.08 0.74 +appoggiature appoggiature nom f s 0.01 0.07 0.01 0.00 +appoggiatures appoggiature nom f p 0.01 0.07 0.00 0.07 +appoint appoint nom m s 0.35 1.76 0.35 1.76 +appointaient appointer ver 0.02 0.74 0.00 0.07 ind:imp:3p; +appointait appointer ver 0.02 0.74 0.00 0.07 ind:imp:3s; +appointe appointer ver 0.02 0.74 0.00 0.14 ind:pre:3s; +appointements appointement nom m p 0.03 0.74 0.03 0.74 +appointer appointer ver 0.02 0.74 0.00 0.07 inf; +appointé appointé adj m s 0.02 0.34 0.02 0.07 +appointée appointer ver f s 0.02 0.74 0.00 0.27 par:pas; +appointés appointer ver m p 0.02 0.74 0.01 0.00 par:pas; +appontage appontage nom m s 0.20 0.00 0.20 0.00 +appontement appontement nom m s 0.05 0.47 0.05 0.47 +apponter apponter ver 0.09 0.00 0.09 0.00 inf; +apport apport nom m s 1.80 1.82 1.63 1.35 +apporta apporter ver 209.89 159.32 0.93 16.82 ind:pas:3s; +apportai apporter ver 209.89 159.32 0.02 1.08 ind:pas:1s; +apportaient apporter ver 209.89 159.32 0.53 5.61 ind:imp:3p; +apportais apporter ver 209.89 159.32 1.78 2.09 ind:imp:1s;ind:imp:2s; +apportait apporter ver 209.89 159.32 3.24 24.86 ind:imp:3s; +apportant apporter ver 209.89 159.32 0.81 5.88 par:pre; +apportas apporter ver 209.89 159.32 0.00 0.07 ind:pas:2s; +apporte apporter ver 209.89 159.32 65.97 22.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +apportent apporter ver 209.89 159.32 3.04 4.12 ind:pre:3p; +apporter apporter ver 209.89 159.32 34.40 29.53 inf;; +apportera apporter ver 209.89 159.32 4.78 1.28 ind:fut:3s; +apporterai apporter ver 209.89 159.32 6.29 1.49 ind:fut:1s; +apporteraient apporter ver 209.89 159.32 0.14 0.41 cnd:pre:3p; +apporterais apporter ver 209.89 159.32 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +apporterait apporter ver 209.89 159.32 0.81 2.09 cnd:pre:3s; +apporteras apporter ver 209.89 159.32 0.69 0.54 ind:fut:2s; +apporterez apporter ver 209.89 159.32 0.41 0.20 ind:fut:2p; +apporteriez apporter ver 209.89 159.32 0.22 0.07 cnd:pre:2p; +apporterons apporter ver 209.89 159.32 0.32 0.00 ind:fut:1p; +apporteront apporter ver 209.89 159.32 0.68 0.07 ind:fut:3p; +apportes apporter ver 209.89 159.32 5.41 0.88 ind:pre:2s; +apportez apporter ver 209.89 159.32 18.50 1.69 imp:pre:2p;ind:pre:2p; +apportiez apporter ver 209.89 159.32 0.33 0.07 ind:imp:2p; +apportions apporter ver 209.89 159.32 0.01 0.47 ind:imp:1p; +apportons apporter ver 209.89 159.32 1.04 0.41 imp:pre:1p;ind:pre:1p; +apportât apporter ver 209.89 159.32 0.00 0.54 sub:imp:3s; +apports apport nom m p 1.80 1.82 0.17 0.47 +apportèrent apporter ver 209.89 159.32 0.03 1.42 ind:pas:3p; +apporté apporter ver m s 209.89 159.32 54.44 24.53 par:pas; +apportée apporter ver f s 209.89 159.32 2.49 3.38 par:pas; +apportées apporter ver f p 209.89 159.32 1.27 2.43 par:pas; +apportés apporter ver m p 209.89 159.32 0.99 4.19 par:pas; +apposa apposer ver 0.95 3.04 0.01 0.27 ind:pas:3s; +apposai apposer ver 0.95 3.04 0.00 0.07 ind:pas:1s; +apposait apposer ver 0.95 3.04 0.01 0.14 ind:imp:3s; +apposant apposer ver 0.95 3.04 0.01 0.00 par:pre; +appose apposer ver 0.95 3.04 0.40 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apposent apposer ver 0.95 3.04 0.00 0.07 ind:pre:3p; +apposer apposer ver 0.95 3.04 0.28 0.81 inf; +apposerait apposer ver 0.95 3.04 0.00 0.14 cnd:pre:3s; +apposeras apposer ver 0.95 3.04 0.01 0.00 ind:fut:2s; +apposez apposer ver 0.95 3.04 0.04 0.00 imp:pre:2p; +apposition apposition nom f s 0.01 0.14 0.01 0.14 +apposé apposer ver m s 0.95 3.04 0.04 0.54 par:pas; +apposée apposer ver f s 0.95 3.04 0.00 0.34 par:pas; +apposées apposer ver f p 0.95 3.04 0.00 0.34 par:pas; +apposés apposer ver m p 0.95 3.04 0.14 0.20 par:pas; +appât appât nom m s 6.74 3.92 5.97 3.24 +appâtais appâter ver 1.59 1.55 0.01 0.07 ind:imp:1s; +appâtant appâter ver 1.59 1.55 0.01 0.07 par:pre; +appâte appâter ver 1.59 1.55 0.14 0.00 ind:pre:1s;ind:pre:3s; +appâtent appâter ver 1.59 1.55 0.02 0.07 ind:pre:3p; +appâter appâter ver 1.59 1.55 0.92 0.68 inf; +appâtera appâter ver 1.59 1.55 0.01 0.00 ind:fut:3s; +appâterait appâter ver 1.59 1.55 0.00 0.07 cnd:pre:3s; +appâtes appâter ver 1.59 1.55 0.02 0.00 ind:pre:2s; +appâtez appâter ver 1.59 1.55 0.02 0.00 imp:pre:2p;ind:pre:2p; +appâtons appâter ver 1.59 1.55 0.01 0.00 imp:pre:1p; +appâts appât nom m p 6.74 3.92 0.77 0.68 +appâté appâter ver m s 1.59 1.55 0.31 0.41 par:pas; +appâtée appâter ver f s 1.59 1.55 0.00 0.14 par:pas; +appâtées appâter ver f p 1.59 1.55 0.00 0.07 par:pas; +appâtés appâter ver m p 1.59 1.55 0.11 0.00 par:pas; +apprîmes apprendre ver 348.45 286.69 0.04 1.08 ind:pas:1p; +apprît apprendre ver 348.45 286.69 0.01 0.81 sub:imp:3s; +apprenaient apprendre ver 348.45 286.69 0.74 2.43 ind:imp:3p; +apprenais apprendre ver 348.45 286.69 1.61 5.47 ind:imp:1s;ind:imp:2s; +apprenait apprendre ver 348.45 286.69 3.27 11.76 ind:imp:3s; +apprenant apprendre ver 348.45 286.69 2.88 7.23 par:pre; +apprend apprendre ver 348.45 286.69 27.11 17.16 ind:pre:3s; +apprendra apprendre ver 348.45 286.69 11.14 5.07 ind:fut:3s; +apprendrai apprendre ver 348.45 286.69 7.16 3.58 ind:fut:1s; +apprendraient apprendre ver 348.45 286.69 0.05 0.88 cnd:pre:3p; +apprendrais apprendre ver 348.45 286.69 1.36 1.28 cnd:pre:1s;cnd:pre:2s; +apprendrait apprendre ver 348.45 286.69 0.77 3.78 cnd:pre:3s; +apprendras apprendre ver 348.45 286.69 6.43 1.49 ind:fut:2s; +apprendre apprendre ver 348.45 286.69 101.75 71.22 inf; +apprendrez apprendre ver 348.45 286.69 3.35 0.74 ind:fut:2p; +apprendriez apprendre ver 348.45 286.69 0.10 0.27 cnd:pre:2p; +apprendrions apprendre ver 348.45 286.69 0.00 0.27 cnd:pre:1p; +apprendrons apprendre ver 348.45 286.69 0.63 0.68 ind:fut:1p; +apprendront apprendre ver 348.45 286.69 1.38 1.08 ind:fut:3p; +apprends apprendre ver 348.45 286.69 27.50 8.38 imp:pre:2s;ind:pre:1s;ind:pre:2s; +apprenez apprendre ver 348.45 286.69 7.34 2.23 imp:pre:2p;ind:pre:2p; +appreniez apprendre ver 348.45 286.69 0.72 0.41 ind:imp:2p;sub:pre:2p; +apprenions apprendre ver 348.45 286.69 0.09 1.76 ind:imp:1p; +apprenne apprendre ver 348.45 286.69 6.25 4.19 sub:pre:1s;sub:pre:3s; +apprennent apprendre ver 348.45 286.69 7.79 4.66 ind:pre:3p; +apprennes apprendre ver 348.45 286.69 2.51 0.88 sub:pre:2s; +apprenons apprendre ver 348.45 286.69 1.39 0.68 imp:pre:1p;ind:pre:1p; +apprenti_pilote apprenti_pilote nom m s 0.02 0.00 0.02 0.00 +apprenti_sorcier apprenti_sorcier nom m s 0.00 0.14 0.00 0.14 +apprenti apprenti nom m s 2.52 17.64 1.96 10.95 +apprentie apprenti nom f s 2.52 17.64 0.23 0.47 +apprenties apprenti nom f p 2.52 17.64 0.02 0.27 +apprentis apprenti nom m p 2.52 17.64 0.31 5.95 +apprentissage apprentissage nom m s 1.86 10.47 1.86 10.14 +apprentissages apprentissage nom m p 1.86 10.47 0.00 0.34 +apprirent apprendre ver 348.45 286.69 0.15 2.23 ind:pas:3p; +appris apprendre ver m 348.45 286.69 120.98 97.70 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +apprise apprendre ver f s 348.45 286.69 1.81 3.45 par:pas; +apprises apprendre ver f p 348.45 286.69 0.64 1.82 par:pas; +apprissent apprendre ver 348.45 286.69 0.00 0.07 sub:imp:3p; +apprit apprendre ver 348.45 286.69 1.48 21.96 ind:pas:3s; +apprivoisa apprivoiser ver 2.40 10.54 0.00 0.20 ind:pas:3s; +apprivoisaient apprivoiser ver 2.40 10.54 0.00 0.07 ind:imp:3p; +apprivoisais apprivoiser ver 2.40 10.54 0.00 0.14 ind:imp:1s; +apprivoisait apprivoiser ver 2.40 10.54 0.00 0.41 ind:imp:3s; +apprivoisant apprivoiser ver 2.40 10.54 0.01 0.14 par:pre; +apprivoise apprivoiser ver 2.40 10.54 0.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprivoisent apprivoiser ver 2.40 10.54 0.01 0.27 ind:pre:3p; +apprivoiser apprivoiser ver 2.40 10.54 0.42 5.14 inf; +apprivoiserai apprivoiser ver 2.40 10.54 0.14 0.20 ind:fut:1s; +apprivoiseur apprivoiseur adj m s 0.00 0.07 0.00 0.07 +apprivoisez apprivoiser ver 2.40 10.54 0.03 0.07 imp:pre:2p;ind:pre:2p; +apprivoisons apprivoiser ver 2.40 10.54 0.01 0.00 ind:pre:1p; +apprivoisèrent apprivoiser ver 2.40 10.54 0.00 0.14 ind:pas:3p; +apprivoisé apprivoiser ver m s 2.40 10.54 0.98 1.28 par:pas; +apprivoisée apprivoiser ver f s 2.40 10.54 0.17 1.15 par:pas; +apprivoisées apprivoiser ver f p 2.40 10.54 0.04 0.27 par:pas; +apprivoisés apprivoiser ver m p 2.40 10.54 0.36 0.34 par:pas; +approbateur approbateur adj m s 0.00 1.55 0.00 1.08 +approbateurs approbateur adj m p 0.00 1.55 0.00 0.27 +approbatif approbatif adj m s 0.00 0.07 0.00 0.07 +approbation approbation nom f s 2.56 9.80 2.55 9.19 +approbations approbation nom f p 2.56 9.80 0.01 0.61 +approbativement approbativement adv 0.00 0.07 0.00 0.07 +approbatrice approbateur adj f s 0.00 1.55 0.00 0.20 +approcha approcher ver 117.65 196.15 1.09 42.70 ind:pas:3s; +approchai approcher ver 117.65 196.15 0.20 4.32 ind:pas:1s; +approchaient approcher ver 117.65 196.15 0.45 6.62 ind:imp:3p; +approchais approcher ver 117.65 196.15 0.53 2.09 ind:imp:1s;ind:imp:2s; +approchait approcher ver 117.65 196.15 2.79 27.70 ind:imp:3s; +approchant approcher ver 117.65 196.15 0.90 10.74 par:pre; +approchants approchant adj m p 0.41 1.82 0.01 0.14 +approchassent approcher ver 117.65 196.15 0.00 0.07 sub:imp:3p; +approche approcher ver 117.65 196.15 44.17 31.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +approchent approcher ver 117.65 196.15 5.66 4.93 ind:pre:3p; +approcher approcher ver 117.65 196.15 19.62 35.27 ind:pre:2p;inf; +approchera approcher ver 117.65 196.15 0.83 0.20 ind:fut:3s; +approcherai approcher ver 117.65 196.15 0.33 0.00 ind:fut:1s; +approcherais approcher ver 117.65 196.15 0.18 0.14 cnd:pre:1s; +approcherait approcher ver 117.65 196.15 0.07 0.34 cnd:pre:3s; +approcheras approcher ver 117.65 196.15 0.13 0.00 ind:fut:2s; +approcherez approcher ver 117.65 196.15 0.17 0.20 ind:fut:2p; +approcherions approcher ver 117.65 196.15 0.00 0.07 cnd:pre:1p; +approcherons approcher ver 117.65 196.15 0.05 0.00 ind:fut:1p; +approcheront approcher ver 117.65 196.15 0.11 0.07 ind:fut:3p; +approches approcher ver 117.65 196.15 2.97 0.61 ind:pre:2s;sub:pre:2s; +approchez approcher ver 117.65 196.15 27.75 2.43 imp:pre:2p;ind:pre:2p; +approchiez approcher ver 117.65 196.15 0.24 0.07 ind:imp:2p; +approchions approcher ver 117.65 196.15 0.09 1.76 ind:imp:1p; +approchâmes approcher ver 117.65 196.15 0.01 0.34 ind:pas:1p; +approchons approcher ver 117.65 196.15 2.45 1.55 imp:pre:1p;ind:pre:1p; +approchât approcher ver 117.65 196.15 0.00 0.20 sub:imp:3s; +approchèrent approcher ver 117.65 196.15 0.02 3.38 ind:pas:3p; +approché approcher ver m s 117.65 196.15 4.75 11.96 par:pas; +approchée approcher ver f s 117.65 196.15 1.36 5.14 par:pas; +approchées approcher ver f p 117.65 196.15 0.25 0.34 par:pas; +approchés approcher ver m p 117.65 196.15 0.50 1.76 par:pas; +approfondît approfondir ver 1.69 7.57 0.00 0.14 sub:imp:3s; +approfondi approfondi adj m s 1.46 1.69 0.34 0.61 +approfondie approfondi adj f s 1.46 1.69 0.83 0.81 +approfondies approfondir ver f p 1.69 7.57 0.09 0.20 par:pas; +approfondir approfondir ver 1.69 7.57 1.04 3.58 inf; +approfondirai approfondir ver 1.69 7.57 0.00 0.07 ind:fut:1s; +approfondirent approfondir ver 1.69 7.57 0.00 0.14 ind:pas:3p; +approfondirions approfondir ver 1.69 7.57 0.00 0.07 cnd:pre:1p; +approfondirons approfondir ver 1.69 7.57 0.01 0.07 ind:fut:1p; +approfondis approfondi adj m p 1.46 1.69 0.20 0.07 +approfondissaient approfondir ver 1.69 7.57 0.00 0.20 ind:imp:3p; +approfondissais approfondir ver 1.69 7.57 0.00 0.14 ind:imp:1s; +approfondissait approfondir ver 1.69 7.57 0.01 0.27 ind:imp:3s; +approfondissant approfondir ver 1.69 7.57 0.01 0.27 par:pre; +approfondisse approfondir ver 1.69 7.57 0.02 0.07 sub:pre:1s;sub:pre:3s; +approfondissement approfondissement nom m s 0.02 0.00 0.02 0.00 +approfondissent approfondir ver 1.69 7.57 0.01 0.14 ind:pre:3p; +approfondissons approfondir ver 1.69 7.57 0.01 0.00 ind:pre:1p; +approfondit approfondir ver 1.69 7.57 0.13 0.88 ind:pre:3s;ind:pas:3s; +appropriaient approprier ver 5.73 5.47 0.10 0.20 ind:imp:3p; +appropriait approprier ver 5.73 5.47 0.00 0.20 ind:imp:3s; +appropriant approprier ver 5.73 5.47 0.17 0.14 par:pre; +appropriation appropriation nom f s 0.19 0.34 0.04 0.34 +appropriations appropriation nom f p 0.19 0.34 0.15 0.00 +approprie approprier ver 5.73 5.47 0.33 0.27 ind:pre:3s;sub:pre:3s; +approprient approprier ver 5.73 5.47 0.05 0.07 ind:pre:3p; +approprier approprier ver 5.73 5.47 1.30 1.76 inf; +approprieraient approprier ver 5.73 5.47 0.00 0.07 cnd:pre:3p; +approprierais approprier ver 5.73 5.47 0.01 0.00 cnd:pre:1s; +approprierait approprier ver 5.73 5.47 0.00 0.07 cnd:pre:3s; +approprieront approprier ver 5.73 5.47 0.02 0.00 ind:fut:3p; +appropriez approprier ver 5.73 5.47 0.02 0.00 ind:pre:2p; +approprié approprié adj m s 4.77 3.38 2.84 1.08 +appropriée approprié adj f s 4.77 3.38 0.89 1.15 +appropriées approprié adj f p 4.77 3.38 0.47 0.20 +appropriés approprié adj m p 4.77 3.38 0.57 0.95 +approuva approuver ver 15.39 36.08 0.01 7.43 ind:pas:3s; +approuvai approuver ver 15.39 36.08 0.00 0.61 ind:pas:1s; +approuvaient approuver ver 15.39 36.08 0.20 0.81 ind:imp:3p; +approuvais approuver ver 15.39 36.08 0.26 0.68 ind:imp:1s;ind:imp:2s; +approuvait approuver ver 15.39 36.08 0.65 4.73 ind:imp:3s; +approuvant approuver ver 15.39 36.08 0.07 1.15 par:pre; +approuve approuver ver 15.39 36.08 4.44 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +approuvent approuver ver 15.39 36.08 0.97 0.61 ind:pre:3p; +approuver approuver ver 15.39 36.08 1.67 5.61 inf; +approuvera approuver ver 15.39 36.08 0.33 0.14 ind:fut:3s; +approuverai approuver ver 15.39 36.08 0.05 0.00 ind:fut:1s; +approuverais approuver ver 15.39 36.08 0.12 0.00 cnd:pre:1s;cnd:pre:2s; +approuverait approuver ver 15.39 36.08 0.39 0.20 cnd:pre:3s; +approuveras approuver ver 15.39 36.08 0.04 0.07 ind:fut:2s; +approuverons approuver ver 15.39 36.08 0.03 0.00 ind:fut:1p; +approuveront approuver ver 15.39 36.08 0.01 0.07 ind:fut:3p; +approuves approuver ver 15.39 36.08 0.58 0.07 ind:pre:2s; +approuvez approuver ver 15.39 36.08 0.85 0.41 imp:pre:2p;ind:pre:2p; +approuviez approuver ver 15.39 36.08 0.43 0.14 ind:imp:2p; +approuvions approuver ver 15.39 36.08 0.01 0.20 ind:imp:1p; +approuvâmes approuver ver 15.39 36.08 0.00 0.07 ind:pas:1p; +approuvons approuver ver 15.39 36.08 0.20 0.27 imp:pre:1p;ind:pre:1p; +approuvât approuver ver 15.39 36.08 0.10 0.14 sub:imp:3s; +approuvèrent approuver ver 15.39 36.08 0.00 0.88 ind:pas:3p; +approuvé approuver ver m s 15.39 36.08 3.26 3.18 par:pas; +approuvée approuver ver f s 15.39 36.08 0.45 0.27 par:pas; +approuvées approuvé adj f p 1.23 0.27 0.21 0.00 +approuvés approuver ver m p 15.39 36.08 0.18 0.61 par:pas; +approvisionnait approvisionner ver 1.55 2.16 0.02 0.14 ind:imp:3s; +approvisionnant approvisionner ver 1.55 2.16 0.01 0.00 par:pre; +approvisionne approvisionner ver 1.55 2.16 0.33 0.00 ind:pre:1s;ind:pre:3s; +approvisionnement approvisionnement nom m s 2.07 2.57 2.02 1.49 +approvisionnements approvisionnement nom m p 2.07 2.57 0.05 1.08 +approvisionnent approvisionner ver 1.55 2.16 0.05 0.07 ind:pre:3p; +approvisionner approvisionner ver 1.55 2.16 0.75 1.01 inf; +approvisionnera approvisionner ver 1.55 2.16 0.01 0.00 ind:fut:3s; +approvisionniez approvisionner ver 1.55 2.16 0.01 0.00 ind:imp:2p; +approvisionnons approvisionner ver 1.55 2.16 0.03 0.00 ind:pre:1p; +approvisionné approvisionner ver m s 1.55 2.16 0.28 0.27 par:pas; +approvisionnée approvisionner ver f s 1.55 2.16 0.01 0.14 par:pas; +approvisionnées approvisionner ver f p 1.55 2.16 0.01 0.27 par:pas; +approvisionnés approvisionner ver m p 1.55 2.16 0.02 0.27 par:pas; +approximatif approximatif adj m s 1.07 3.65 0.39 1.49 +approximatifs approximatif adj m p 1.07 3.65 0.17 0.61 +approximation approximation nom f s 0.24 1.35 0.20 0.54 +approximations approximation nom f p 0.24 1.35 0.04 0.81 +approximative approximatif adj f s 1.07 3.65 0.49 1.35 +approximativement approximativement adv 1.64 1.96 1.64 1.96 +approximatives approximatif adj f p 1.07 3.65 0.02 0.20 +apprécia apprécier ver 77.21 44.12 0.00 2.57 ind:pas:3s; +appréciable appréciable adj s 0.46 3.18 0.46 2.91 +appréciables appréciable adj m p 0.46 3.18 0.00 0.27 +appréciai apprécier ver 77.21 44.12 0.07 0.41 ind:pas:1s; +appréciaient apprécier ver 77.21 44.12 0.62 1.22 ind:imp:3p; +appréciais apprécier ver 77.21 44.12 0.70 1.49 ind:imp:1s;ind:imp:2s; +appréciait apprécier ver 77.21 44.12 1.47 6.76 ind:imp:3s; +appréciant apprécier ver 77.21 44.12 0.09 1.15 par:pre; +appréciateur appréciateur nom m s 0.00 0.54 0.00 0.41 +appréciation appréciation nom f s 0.94 3.99 0.86 2.97 +appréciations appréciation nom f p 0.94 3.99 0.08 1.01 +appréciatrice appréciateur nom f s 0.00 0.54 0.00 0.14 +apprécie apprécier ver 77.21 44.12 32.23 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprécient apprécier ver 77.21 44.12 3.28 1.08 ind:pre:3p;sub:pre:3p; +apprécier apprécier ver 77.21 44.12 11.53 11.28 inf; +appréciera apprécier ver 77.21 44.12 1.19 0.20 ind:fut:3s; +apprécierai apprécier ver 77.21 44.12 0.28 0.00 ind:fut:1s; +apprécieraient apprécier ver 77.21 44.12 0.35 0.07 cnd:pre:3p; +apprécierais apprécier ver 77.21 44.12 3.02 0.14 cnd:pre:1s;cnd:pre:2s; +apprécierait apprécier ver 77.21 44.12 1.41 0.41 cnd:pre:3s; +apprécieras apprécier ver 77.21 44.12 0.34 0.00 ind:fut:2s; +apprécierez apprécier ver 77.21 44.12 1.27 0.14 ind:fut:2p; +apprécieriez apprécier ver 77.21 44.12 0.19 0.00 cnd:pre:2p; +apprécierions apprécier ver 77.21 44.12 0.10 0.00 cnd:pre:1p; +apprécierons apprécier ver 77.21 44.12 0.09 0.00 ind:fut:1p; +apprécieront apprécier ver 77.21 44.12 0.57 0.27 ind:fut:3p; +apprécies apprécier ver 77.21 44.12 2.19 0.27 ind:pre:2s; +appréciez apprécier ver 77.21 44.12 2.41 0.34 imp:pre:2p;ind:pre:2p; +appréciions apprécier ver 77.21 44.12 0.00 0.07 ind:imp:1p; +apprécions apprécier ver 77.21 44.12 1.77 0.34 imp:pre:1p;ind:pre:1p; +appréciât apprécier ver 77.21 44.12 0.00 0.14 sub:imp:3s; +apprécièrent apprécier ver 77.21 44.12 0.11 0.14 ind:pas:3p; +apprécié apprécier ver m s 77.21 44.12 9.32 5.47 par:pas; +appréciée apprécier ver f s 77.21 44.12 1.85 1.82 par:pas; +appréciées apprécier ver f p 77.21 44.12 0.31 0.14 par:pas; +appréciés apprécier ver m p 77.21 44.12 0.45 0.74 par:pas; +appréhendai appréhender ver 4.22 5.34 0.00 0.07 ind:pas:1s; +appréhendaient appréhender ver 4.22 5.34 0.01 0.14 ind:imp:3p; +appréhendais appréhender ver 4.22 5.34 0.17 1.08 ind:imp:1s;ind:imp:2s; +appréhendait appréhender ver 4.22 5.34 0.04 0.74 ind:imp:3s; +appréhendant appréhender ver 4.22 5.34 0.04 0.68 par:pre; +appréhende appréhender ver 4.22 5.34 0.95 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +appréhendent appréhender ver 4.22 5.34 0.14 0.07 ind:pre:3p; +appréhender appréhender ver 4.22 5.34 1.51 0.95 inf; +appréhendera appréhender ver 4.22 5.34 0.02 0.00 ind:fut:3s; +appréhenderons appréhender ver 4.22 5.34 0.01 0.00 ind:fut:1p; +appréhendez appréhender ver 4.22 5.34 0.07 0.07 imp:pre:2p;ind:pre:2p; +appréhendions appréhender ver 4.22 5.34 0.00 0.07 ind:imp:1p; +appréhendons appréhender ver 4.22 5.34 0.02 0.00 ind:pre:1p; +appréhendé appréhender ver m s 4.22 5.34 1.00 0.74 par:pas; +appréhendée appréhender ver f s 4.22 5.34 0.05 0.07 par:pas; +appréhendées appréhender ver f p 4.22 5.34 0.02 0.00 par:pas; +appréhendés appréhender ver m p 4.22 5.34 0.17 0.14 par:pas; +appréhensif appréhensif adj m s 0.01 0.00 0.01 0.00 +appréhension appréhension nom f s 1.28 10.20 0.80 8.92 +appréhensions appréhension nom f p 1.28 10.20 0.48 1.28 +apprêt apprêt nom m s 0.14 1.42 0.11 0.81 +apprêta apprêter ver 9.13 29.46 0.01 0.41 ind:pas:3s; +apprêtai apprêter ver 9.13 29.46 0.01 0.14 ind:pas:1s; +apprêtaient apprêter ver 9.13 29.46 0.26 2.84 ind:imp:3p; +apprêtais apprêter ver 9.13 29.46 1.19 2.91 ind:imp:1s;ind:imp:2s; +apprêtait apprêter ver 9.13 29.46 1.21 11.96 ind:imp:3s; +apprêtant apprêter ver 9.13 29.46 0.07 1.15 par:pre; +apprête apprêter ver 9.13 29.46 4.16 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprêtent apprêter ver 9.13 29.46 0.87 1.35 ind:pre:3p; +apprêter apprêter ver 9.13 29.46 0.10 0.68 inf; +apprêterait apprêter ver 9.13 29.46 0.00 0.14 cnd:pre:3s; +apprêtes apprêter ver 9.13 29.46 0.29 0.00 ind:pre:2s;sub:pre:2s; +apprêtez apprêter ver 9.13 29.46 0.39 0.07 imp:pre:2p;ind:pre:2p; +apprêtiez apprêter ver 9.13 29.46 0.16 0.00 ind:imp:2p; +apprêtions apprêter ver 9.13 29.46 0.05 0.27 ind:imp:1p; +apprêts apprêt nom m p 0.14 1.42 0.03 0.61 +apprêtèrent apprêter ver 9.13 29.46 0.20 0.14 ind:pas:3p; +apprêté apprêté adj m s 0.13 1.22 0.11 0.27 +apprêtée apprêter ver f s 9.13 29.46 0.14 0.07 par:pas; +apprêtées apprêté adj f p 0.13 1.22 0.01 0.14 +apprêtés apprêté adj m p 0.13 1.22 0.01 0.14 +appui_main appui_main nom m s 0.00 0.14 0.00 0.14 +appui_tête appui_tête nom m s 0.01 0.00 0.01 0.00 +appui appui nom m s 8.81 30.81 7.83 28.65 +appuie_tête appuie_tête nom m 0.05 0.14 0.05 0.14 +appuie appuyer ver 40.94 126.01 14.57 15.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +appuient appuyer ver 40.94 126.01 0.60 1.49 ind:pre:3p; +appuiera appuyer ver 40.94 126.01 0.20 0.20 ind:fut:3s; +appuierai appuyer ver 40.94 126.01 0.25 0.07 ind:fut:1s; +appuieraient appuyer ver 40.94 126.01 0.00 0.07 cnd:pre:3p; +appuierais appuyer ver 40.94 126.01 0.11 0.07 cnd:pre:1s;cnd:pre:2s; +appuierait appuyer ver 40.94 126.01 0.16 0.27 cnd:pre:3s; +appuieras appuyer ver 40.94 126.01 0.21 0.00 ind:fut:2s; +appuierez appuyer ver 40.94 126.01 0.05 0.07 ind:fut:2p; +appuierons appuyer ver 40.94 126.01 0.01 0.00 ind:fut:1p; +appuieront appuyer ver 40.94 126.01 0.06 0.07 ind:fut:3p; +appuies appuyer ver 40.94 126.01 2.89 0.41 ind:pre:2s;sub:pre:2s; +appuis appui nom m p 8.81 30.81 0.98 2.16 +appétence appétence nom f s 0.00 0.34 0.00 0.27 +appétences appétence nom f p 0.00 0.34 0.00 0.07 +appétissant appétissant adj m s 1.74 2.77 0.77 0.88 +appétissante appétissant adj f s 1.74 2.77 0.59 1.01 +appétissantes appétissant adj f p 1.74 2.77 0.32 0.41 +appétissants appétissant adj m p 1.74 2.77 0.06 0.47 +appétit appétit nom m s 20.98 26.76 20.68 23.78 +appétits appétit nom m p 20.98 26.76 0.30 2.97 +appuya appuyer ver 40.94 126.01 0.12 17.84 ind:pas:3s; +appuyai appuyer ver 40.94 126.01 0.10 1.28 ind:pas:1s; +appuyaient appuyer ver 40.94 126.01 0.16 1.35 ind:imp:3p; +appuyais appuyer ver 40.94 126.01 0.19 1.01 ind:imp:1s;ind:imp:2s; +appuyait appuyer ver 40.94 126.01 0.23 11.89 ind:imp:3s; +appuyant appuyer ver 40.94 126.01 1.01 13.18 par:pre; +appuyer appuyer ver 40.94 126.01 9.77 16.49 inf; +appuyez appuyer ver 40.94 126.01 5.55 0.54 imp:pre:2p;ind:pre:2p; +appuyiez appuyer ver 40.94 126.01 0.03 0.00 ind:imp:2p; +appuyâmes appuyer ver 40.94 126.01 0.00 0.14 ind:pas:1p; +appuyons appuyer ver 40.94 126.01 0.07 0.00 imp:pre:1p;ind:pre:1p; +appuyât appuyer ver 40.94 126.01 0.00 0.07 sub:imp:3s; +appuyèrent appuyer ver 40.94 126.01 0.11 0.54 ind:pas:3p; +appuyé appuyer ver m s 40.94 126.01 4.00 22.97 par:pas; +appuyée appuyer ver f s 40.94 126.01 0.31 11.82 par:pas; +appuyées appuyer ver f p 40.94 126.01 0.13 3.18 par:pas; +appuyés appuyer ver m p 40.94 126.01 0.05 5.34 par:pas; +aprèm aprèm nom f s 0.22 1.35 0.22 0.07 +aprème aprèm nom f s 0.22 1.35 0.00 1.28 +après_coup après_coup nom m s 0.02 0.00 0.02 0.00 +après_dîner après_dîner nom m s 0.02 0.74 0.02 0.61 +après_dîner après_dîner nom m p 0.02 0.74 0.00 0.14 +après_demain après_demain adv 11.77 6.76 11.77 6.76 +après_déjeuner après_déjeuner ver 0.00 0.14 0.00 0.14 inf; +après_guerre après_guerre nom s 0.73 3.24 0.73 3.24 +après_mort après_mort nom f s 0.00 0.07 0.00 0.07 +après_rasage après_rasage nom m s 0.45 0.00 0.45 0.00 +après_repas après_repas nom m 0.01 0.07 0.01 0.07 +après_shampoing après_shampoing nom m s 0.04 0.00 0.04 0.00 +après_shampooing après_shampooing nom m s 0.04 0.07 0.04 0.07 +après_ski après_ski nom m s 0.06 0.20 0.06 0.20 +après_vente après_vente adj s 0.05 0.00 0.05 0.00 +après après pre 593.92 821.55 593.92 821.55 +apte apte adj s 2.93 4.59 1.77 2.77 +aptes apte adj p 2.93 4.59 1.16 1.82 +aptitude aptitude nom f s 2.74 4.59 1.76 2.70 +aptitudes aptitude nom f p 2.74 4.59 0.98 1.89 +aptère aptère adj s 0.00 0.14 0.00 0.07 +aptères aptère adj p 0.00 0.14 0.00 0.07 +apurait apurer ver 0.01 0.41 0.00 0.07 ind:imp:3s; +apurer apurer ver 0.01 0.41 0.01 0.20 inf; +apéritif apéritif nom m s 3.29 9.46 2.57 7.09 +apéritifs apéritif nom m p 3.29 9.46 0.72 2.36 +apéritive apéritif adj f s 0.28 1.28 0.00 0.14 +apéritives apéritif adj f p 0.28 1.28 0.00 0.14 +apéro apéro nom m s 0.78 4.05 0.61 3.45 +apéros apéro nom m p 0.78 4.05 0.17 0.61 +apuré apurer ver m s 0.01 0.41 0.00 0.07 par:pas; +apurés apurer ver m p 0.01 0.41 0.00 0.07 par:pas; +aquaculture aquaculture nom f s 0.01 0.00 0.01 0.00 +aquagym aquagym nom f s 0.04 0.00 0.04 0.00 +aquaplane aquaplane nom m s 0.02 0.07 0.02 0.07 +aquarellait aquareller ver 0.00 0.07 0.00 0.07 ind:imp:3s; +aquarelle aquarelle nom f s 0.23 8.85 0.14 6.55 +aquarelles aquarelle nom f p 0.23 8.85 0.09 2.30 +aquarelliste aquarelliste nom s 0.00 0.14 0.00 0.07 +aquarellistes aquarelliste nom p 0.00 0.14 0.00 0.07 +aquarellés aquarellé adj m p 0.00 0.07 0.00 0.07 +aquariophilie aquariophilie nom f s 0.03 0.00 0.03 0.00 +aquarium aquarium nom m s 4.26 5.88 3.94 5.20 +aquariums aquarium nom m p 4.26 5.88 0.32 0.68 +aquatinte aquatinte nom f s 0.10 0.00 0.10 0.00 +aquatique aquatique adj s 1.52 1.89 1.18 0.88 +aquatiques aquatique adj p 1.52 1.89 0.34 1.01 +aquavit aquavit nom m s 0.18 0.14 0.18 0.14 +aqueduc aqueduc nom m s 0.44 1.15 0.23 0.81 +aqueducs aqueduc nom m p 0.44 1.15 0.21 0.34 +aqueuse aqueux adj f s 0.09 0.88 0.05 0.41 +aqueuses aqueux adj f p 0.09 0.88 0.01 0.14 +aqueux aqueux adj m 0.09 0.88 0.02 0.34 +aquifère aquifère adj f s 0.01 0.00 0.01 0.00 +aquilin aquilin adj m s 0.02 1.08 0.02 1.08 +aquilon aquilon nom m s 0.00 0.54 0.00 0.47 +aquilons aquilon nom m p 0.00 0.54 0.00 0.07 +aquitain aquitain adj m s 0.00 0.07 0.00 0.07 +arôme arôme nom m s 1.43 2.70 1.12 2.43 +arômes arôme nom m p 1.43 2.70 0.32 0.27 +ara ara nom m s 0.85 0.54 0.81 0.41 +arabe arabe nom s 13.62 32.64 6.71 17.57 +arabes arabe nom p 13.62 32.64 6.91 15.07 +arabesque arabesque nom f s 0.10 4.53 0.08 0.74 +arabesques arabesque nom f p 0.10 4.53 0.02 3.78 +arabica arabica nom m s 0.16 0.27 0.16 0.14 +arabicas arabica nom m p 0.16 0.27 0.00 0.14 +arabique arabique adj s 0.05 0.27 0.05 0.27 +arabisant arabiser ver 0.00 0.20 0.00 0.14 par:pre; +arabisants arabisant nom m p 0.00 0.27 0.00 0.27 +arabisé arabiser ver m s 0.00 0.20 0.00 0.07 par:pas; +arable arable adj f s 0.18 0.00 0.04 0.00 +arables arable adj p 0.18 0.00 0.13 0.00 +arac arac nom m s 0.03 0.00 0.03 0.00 +arachide arachide nom f s 0.51 0.61 0.26 0.34 +arachides arachide nom f p 0.51 0.61 0.25 0.27 +arachnide arachnide nom m s 0.39 0.00 0.06 0.00 +arachnides arachnide nom m p 0.39 0.00 0.33 0.00 +arachnoïde arachnoïde nom f s 0.01 0.14 0.00 0.07 +arachnoïdes arachnoïde nom f p 0.01 0.14 0.01 0.07 +arachnéen arachnéen adj m s 0.02 0.68 0.02 0.20 +arachnéenne arachnéen adj f s 0.02 0.68 0.00 0.27 +arachnéennes arachnéen adj f p 0.02 0.68 0.00 0.20 +aragonais aragonais nom m 0.00 0.20 0.00 0.20 +aragonaise aragonais adj f s 0.00 0.20 0.00 0.14 +aragonite aragonite nom f s 0.01 0.00 0.01 0.00 +araigne araigne nom f s 0.00 0.07 0.00 0.07 +araignée_crabe araignée_crabe nom f s 0.00 0.07 0.00 0.07 +araignée araignée nom f s 18.20 17.84 12.21 12.36 +araignées araignée nom f p 18.20 17.84 6.00 5.47 +araire araire nom m s 0.01 0.00 0.01 0.00 +arak arak nom m s 0.41 0.07 0.41 0.07 +araldite araldite nom m 0.01 0.00 0.01 0.00 +aralia aralia nom m s 0.00 0.07 0.00 0.07 +aramide aramide adj f s 0.01 0.00 0.01 0.00 +aramon aramon nom m s 0.00 0.41 0.00 0.41 +araméen araméen nom m s 0.45 0.20 0.45 0.20 +araméenne araméen adj f s 0.05 0.07 0.01 0.00 +aranéeuse aranéeux adj f s 0.00 0.07 0.00 0.07 +arapèdes arapède nom m p 0.00 0.20 0.00 0.20 +aras ara nom m p 0.85 0.54 0.04 0.14 +arasant araser ver 0.10 0.14 0.00 0.07 par:pre; +araser araser ver 0.10 0.14 0.10 0.00 inf; +arasée araser ver f s 0.10 0.14 0.00 0.07 par:pas; +aratoire aratoire adj m s 0.00 0.47 0.00 0.07 +aratoires aratoire adj m p 0.00 0.47 0.00 0.41 +araucan araucan nom m s 0.00 0.07 0.00 0.07 +araucanien araucanien adj m s 0.00 0.27 0.00 0.07 +araucaniennes araucanien adj f p 0.00 0.27 0.00 0.07 +araucaniens araucanien adj m p 0.00 0.27 0.00 0.14 +araucaria araucaria nom m s 0.01 0.54 0.01 0.34 +araucarias araucaria nom m p 0.01 0.54 0.00 0.20 +arbalète arbalète nom f s 0.55 1.55 0.52 1.35 +arbalètes arbalète nom f p 0.55 1.55 0.03 0.20 +arbalétrier arbalétrier nom m s 0.01 0.88 0.00 0.14 +arbalétriers arbalétrier nom m p 0.01 0.88 0.01 0.74 +arbi arbi nom m s 0.00 0.27 0.00 0.14 +arbis arbi nom m p 0.00 0.27 0.00 0.14 +arbitrage arbitrage nom m s 0.52 0.88 0.48 0.88 +arbitrages arbitrage nom m p 0.52 0.88 0.04 0.00 +arbitraire arbitraire adj s 1.29 3.78 0.73 2.50 +arbitrairement arbitrairement adv 0.12 0.95 0.12 0.95 +arbitraires arbitraire adj p 1.29 3.78 0.56 1.28 +arbitrait arbitrer ver 0.90 1.08 0.00 0.27 ind:imp:3s; +arbitrale arbitral adj f s 0.01 0.00 0.01 0.00 +arbitre arbitre nom s 7.59 5.34 6.92 5.20 +arbitrer arbitrer ver 0.90 1.08 0.34 0.27 inf; +arbitrera arbitrer ver 0.90 1.08 0.02 0.07 ind:fut:3s; +arbitres arbitre nom p 7.59 5.34 0.67 0.14 +arbitré arbitrer ver m s 0.90 1.08 0.01 0.14 par:pas; +arbitrée arbitrer ver f s 0.90 1.08 0.00 0.07 par:pas; +arbitrées arbitrer ver f p 0.90 1.08 0.01 0.07 par:pas; +arbois arbois nom s 0.00 0.07 0.00 0.07 +arbora arborer ver 0.53 10.61 0.01 0.14 ind:pas:3s; +arboraient arborer ver 0.53 10.61 0.04 1.42 ind:imp:3p; +arborais arborer ver 0.53 10.61 0.00 0.20 ind:imp:1s; +arborait arborer ver 0.53 10.61 0.08 3.72 ind:imp:3s; +arborant arborer ver 0.53 10.61 0.06 1.55 par:pre; +arbore arborer ver 0.53 10.61 0.10 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arborent arborer ver 0.53 10.61 0.12 0.54 ind:pre:3p; +arborer arborer ver 0.53 10.61 0.06 1.08 inf; +arborerait arborer ver 0.53 10.61 0.00 0.07 cnd:pre:3s; +arbores arborer ver 0.53 10.61 0.00 0.07 ind:pre:2s; +arborescence arborescence nom f s 0.02 0.20 0.02 0.07 +arborescences arborescence nom f p 0.02 0.20 0.00 0.14 +arborescent arborescent adj m s 0.16 0.27 0.02 0.00 +arborescentes arborescent adj f p 0.16 0.27 0.00 0.20 +arborescents arborescent adj m p 0.16 0.27 0.14 0.07 +arboretum arboretum nom m s 0.09 0.00 0.09 0.00 +arborez arborer ver 0.53 10.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +arboricole arboricole adj f s 0.01 0.00 0.01 0.00 +arboriculteur arboriculteur nom m s 0.01 0.00 0.01 0.00 +arboriculture arboriculture nom f s 0.01 0.07 0.01 0.07 +arborions arborer ver 0.53 10.61 0.00 0.07 ind:imp:1p; +arborisations arborisation nom f p 0.00 0.07 0.00 0.07 +arborât arborer ver 0.53 10.61 0.01 0.07 sub:imp:3s; +arborèrent arborer ver 0.53 10.61 0.00 0.07 ind:pas:3p; +arboré arborer ver m s 0.53 10.61 0.01 0.41 par:pas; +arborée arborer ver f s 0.53 10.61 0.00 0.14 par:pas; +arborés arborer ver m p 0.53 10.61 0.00 0.14 par:pas; +arbouse arbouse nom f s 0.10 0.41 0.10 0.00 +arbouses arbouse nom f p 0.10 0.41 0.00 0.41 +arbousiers arbousier nom m p 0.14 0.41 0.14 0.41 +arbre arbre nom m s 81.69 208.58 49.29 67.16 +arbres_refuge arbres_refuge nom m p 0.00 0.07 0.00 0.07 +arbres arbre nom m p 81.69 208.58 32.40 141.42 +arbrisseau arbrisseau nom m s 0.26 1.28 0.22 0.34 +arbrisseaux arbrisseau nom m p 0.26 1.28 0.04 0.95 +arbuste arbuste nom m s 1.00 7.30 0.28 1.89 +arbustes arbuste nom m p 1.00 7.30 0.71 5.41 +arc_bouter arc_bouter ver 0.17 5.00 0.00 0.47 ind:pas:3s; +arc_bouter arc_bouter ver 0.17 5.00 0.04 0.27 ind:imp:1s;ind:imp:2s; +arc_bouter arc_bouter ver 0.17 5.00 0.00 0.34 ind:imp:3s; +arc_boutant arc_boutant nom m s 0.14 0.54 0.14 0.20 +arc_boutant arc_boutant nom m p 0.14 0.54 0.01 0.00 +arc_bouter arc_bouter ver 0.17 5.00 0.10 0.88 ind:pre:1s;ind:pre:3s; +arc_boutement arc_boutement nom m s 0.00 0.07 0.00 0.07 +arc_bouter arc_bouter ver 0.17 5.00 0.01 0.20 ind:pre:3p; +arc_bouter arc_bouter ver 0.17 5.00 0.00 0.07 inf; +arc_bouter arc_bouter ver 0.17 5.00 0.01 0.00 ind:fut:3s; +arc_bouter arc_bouter ver 0.17 5.00 0.00 0.07 ind:pas:3p; +arc_bouter arc_bouter ver m s 0.17 5.00 0.01 1.15 par:pas; +arc_bouter arc_bouter ver f s 0.17 5.00 0.00 0.41 par:pas; +arc_bouter arc_bouter ver f p 0.17 5.00 0.00 0.27 par:pas; +arc_bouter arc_bouter ver m p 0.17 5.00 0.00 0.27 par:pas; +arc_en_ciel arc_en_ciel nom m s 3.00 4.46 2.56 3.92 +arc arc nom m s 5.25 17.30 4.52 14.05 +arcade arcade nom f s 1.25 12.36 0.91 2.23 +arcades arcade nom f p 1.25 12.36 0.35 10.14 +arcadien arcadien adj m s 0.10 0.20 0.10 0.07 +arcadienne arcadien adj f s 0.10 0.20 0.00 0.07 +arcadiens arcadien nom m p 0.01 0.00 0.01 0.00 +arcan arcan nom m s 0.02 0.74 0.00 0.27 +arcane arcane nom m s 0.09 1.35 0.05 0.74 +arcanes arcane nom m p 0.09 1.35 0.04 0.61 +arcans arcan nom m p 0.02 0.74 0.02 0.47 +arcatures arcature nom f p 0.00 0.07 0.00 0.07 +arceau arceau nom m s 0.17 3.04 0.14 0.27 +arceaux arceau nom m p 0.17 3.04 0.03 2.77 +archaïque archaïque adj s 1.15 2.50 0.88 1.96 +archaïques archaïque adj p 1.15 2.50 0.27 0.54 +archaïsant archaïsant nom m s 0.00 0.07 0.00 0.07 +archaïsme archaïsme nom m s 0.01 0.54 0.01 0.54 +archange archange nom m s 1.30 4.46 0.98 3.58 +archanges archange nom m p 1.30 4.46 0.32 0.88 +archangélique archangélique adj m s 0.00 0.20 0.00 0.20 +arche arche nom f s 3.19 7.16 2.83 5.68 +archer archer nom m s 3.77 2.50 2.24 0.41 +archers archer nom m p 3.77 2.50 1.53 2.03 +arches arche nom f p 3.19 7.16 0.36 1.49 +archet archet nom m s 0.47 2.30 0.46 1.96 +archets archet nom m p 0.47 2.30 0.01 0.34 +archevêché archevêché nom m s 0.40 1.08 0.40 1.01 +archevêchés archevêché nom m p 0.40 1.08 0.00 0.07 +archevêque archevêque nom m s 3.42 6.28 3.23 5.81 +archevêques archevêque nom m p 3.42 6.28 0.20 0.47 +archi_blet archi_blet adj m s 0.00 0.07 0.00 0.07 +archi_chiant archi_chiant adj m p 0.01 0.00 0.01 0.00 +archi_connu archi_connu adj m s 0.01 0.07 0.01 0.00 +archi_connu archi_connu adj m p 0.01 0.07 0.00 0.07 +archiduc archiduc nom f s 0.48 4.46 0.01 0.00 +archi_dégueu archi_dégueu adj s 0.00 0.07 0.00 0.07 +archi_faux archi_faux adj m 0.05 0.00 0.05 0.00 +archi_libre archi_libre adj f s 0.00 0.07 0.00 0.07 +archi_mortels archi_mortels nom m 0.01 0.00 0.01 0.00 +archi_mort archi_mort nom f p 0.00 0.07 0.00 0.07 +archi_méfiance archi_méfiance nom f s 0.00 0.07 0.00 0.07 +archi_nul archi_nul nom m s 0.01 0.00 0.01 0.00 +archi_nuls archi_nuls nom m 0.23 0.00 0.23 0.00 +archi_plein archi_plein nom m s 0.00 0.07 0.00 0.07 +archi_prouvé archi_prouvé adj m s 0.00 0.07 0.00 0.07 +archi_prudent archi_prudent nom m s 0.00 0.07 0.00 0.07 +archi_ringard archi_ringard nom m s 0.00 0.07 0.00 0.07 +archi_sophistiqué archi_sophistiqué adj f s 0.01 0.00 0.01 0.00 +archi_sèche archi_sèche adj f p 0.01 0.00 0.01 0.00 +archi_usé archi_usé adj m s 0.01 0.00 0.01 0.00 +archi_vieux archi_vieux adj m 0.00 0.07 0.00 0.07 +archi archi nom m s 0.75 0.74 0.75 0.74 +archiatre archiatre nom m s 0.00 0.20 0.00 0.20 +archicomble archicomble adj s 0.01 0.14 0.01 0.07 +archicombles archicomble adj p 0.01 0.14 0.00 0.07 +archiconnu archiconnu adj m s 0.00 0.07 0.00 0.07 +archidiacre archidiacre nom m s 0.26 0.07 0.26 0.07 +archidiocèse archidiocèse nom m s 0.19 0.00 0.19 0.00 +archiduc archiduc nom m s 0.48 4.46 0.36 4.05 +archiduchesse archiduc nom f s 0.48 4.46 0.11 0.27 +archiducs archiduc nom m p 0.48 4.46 0.00 0.14 +archie archi-e nom m 0.01 0.00 0.01 0.00 +archifaux archifaux adj m 0.04 0.07 0.04 0.07 +archimandrite archimandrite nom m s 0.00 0.61 0.00 0.61 +archinulles archinul adj f p 0.00 0.07 0.00 0.07 +archipel archipel nom m s 0.49 3.85 0.48 2.97 +archipels archipel nom m p 0.49 3.85 0.01 0.88 +archiprêtre archiprêtre nom m s 0.01 0.95 0.01 0.95 +architecte architecte nom s 9.98 7.70 8.39 4.93 +architectes architecte nom f p 9.98 7.70 1.60 2.77 +architectonie architectonie nom f s 0.14 0.00 0.14 0.00 +architectonique architectonique adj s 0.00 0.14 0.00 0.14 +architectural architectural adj m s 0.28 2.70 0.15 0.88 +architecturale architectural adj f s 0.28 2.70 0.08 1.01 +architecturalement architecturalement adv 0.01 0.07 0.01 0.07 +architecturales architectural adj f p 0.28 2.70 0.01 0.74 +architecturant architecturer ver 0.11 0.20 0.00 0.07 par:pre; +architecturaux architectural adj m p 0.28 2.70 0.04 0.07 +architecture architecture nom f s 4.07 12.23 3.90 10.47 +architecturent architecturer ver 0.11 0.20 0.00 0.07 ind:pre:3p; +architectures architecture nom f p 4.07 12.23 0.17 1.76 +architecturées architecturer ver f p 0.11 0.20 0.00 0.07 par:pas; +architrave architrave nom f s 0.00 0.20 0.00 0.20 +archiépiscopal archiépiscopal adj m s 0.00 0.07 0.00 0.07 +archivage archivage nom m s 0.06 0.00 0.06 0.00 +archive archive nom f s 9.42 8.51 0.13 0.20 +archiver archiver ver 0.90 0.07 0.13 0.07 inf; +archives archive nom f p 9.42 8.51 9.29 8.31 +archivez archiver ver 0.90 0.07 0.02 0.00 imp:pre:2p;ind:pre:2p; +archivions archiver ver 0.90 0.07 0.10 0.00 ind:imp:1p; +archiviste_paléographe archiviste_paléographe nom s 0.00 0.14 0.00 0.07 +archiviste archiviste nom s 0.41 1.55 0.41 1.22 +archiviste_paléographe archiviste_paléographe nom p 0.00 0.14 0.00 0.07 +archivistes archiviste nom p 0.41 1.55 0.01 0.34 +archivolte archivolte nom f s 0.00 0.41 0.00 0.14 +archivoltes archivolte nom f p 0.00 0.41 0.00 0.27 +archivons archiver ver 0.90 0.07 0.01 0.00 ind:pre:1p; +archivé archiver ver m s 0.90 0.07 0.33 0.00 par:pas; +archivées archiver ver f p 0.90 0.07 0.02 0.00 par:pas; +archivés archiver ver m p 0.90 0.07 0.07 0.00 par:pas; +archonte archonte nom m s 0.00 0.14 0.00 0.14 +archères archer nom f p 3.77 2.50 0.00 0.07 +archéologie archéologie nom f s 1.42 1.69 1.42 1.69 +archéologique archéologique adj s 0.76 0.81 0.52 0.41 +archéologiques archéologique adj p 0.76 0.81 0.24 0.41 +archéologue archéologue nom s 2.11 4.59 1.19 2.64 +archéologues archéologue nom p 2.11 4.59 0.92 1.96 +archéoptéryx archéoptéryx nom m 0.05 0.20 0.05 0.20 +archétypale archétypal adj f s 0.11 0.00 0.01 0.00 +archétypaux archétypal adj m p 0.11 0.00 0.10 0.00 +archétype archétype nom m s 0.67 0.88 0.61 0.68 +archétypes archétype nom m p 0.67 0.88 0.05 0.20 +arc_boutant arc_boutant nom m p 0.14 0.54 0.00 0.34 +arc_en_ciel arc_en_ciel nom m p 3.00 4.46 0.44 0.54 +arcs arc nom m p 5.25 17.30 0.73 3.24 +arctique arctique adj s 0.39 0.61 0.37 0.27 +arctiques arctique adj p 0.39 0.61 0.02 0.34 +ardûment ardûment adv 0.00 0.14 0.00 0.14 +ardais arder ver 0.51 0.34 0.00 0.07 ind:imp:1s; +ardait arder ver 0.51 0.34 0.00 0.14 ind:imp:3s; +ardant arder ver 0.51 0.34 0.01 0.00 par:pre; +arde arder ver 0.51 0.34 0.38 0.07 imp:pre:2s;ind:pre:3s; +ardemment ardemment adv 1.39 5.20 1.39 5.20 +ardennais ardennais nom m 0.20 0.34 0.20 0.27 +ardennaise ardennais nom f s 0.20 0.34 0.00 0.07 +ardent ardent adj m s 8.43 21.89 4.16 6.15 +ardente ardent adj f s 8.43 21.89 2.12 8.85 +ardentes ardent adj f p 8.43 21.89 0.97 2.43 +ardents ardent adj m p 8.43 21.89 1.17 4.46 +arder arder ver 0.51 0.34 0.11 0.00 inf; +ardeur ardeur nom f s 7.08 25.74 5.60 23.24 +ardeurs ardeur nom f p 7.08 25.74 1.47 2.50 +ardillon ardillon nom m s 0.00 0.68 0.00 0.54 +ardillons ardillon nom m p 0.00 0.68 0.00 0.14 +ardin ardin nom m s 0.01 0.07 0.01 0.07 +ardito ardito adv 0.00 0.07 0.00 0.07 +ardoise ardoise nom f s 3.45 9.80 3.35 5.95 +ardoises ardoise nom f p 3.45 9.80 0.10 3.85 +ardoisière ardoisier nom f s 0.00 0.07 0.00 0.07 +ardoisée ardoisé adj f s 0.00 0.14 0.00 0.07 +ardoisées ardoiser ver f p 0.00 0.07 0.00 0.07 par:pas; +ardoisés ardoisé adj m p 0.00 0.14 0.00 0.07 +ardre ardre ver 0.00 0.07 0.00 0.07 inf; +ardé arder ver m s 0.51 0.34 0.00 0.07 par:pas; +ardu ardu adj m s 1.42 5.00 0.61 2.43 +ardéchois ardéchois nom m 0.00 0.07 0.00 0.07 +ardéchoise ardéchois adj f s 0.00 0.14 0.00 0.14 +ardue ardu adj f s 1.42 5.00 0.61 1.42 +ardues ardu adj f p 1.42 5.00 0.06 0.34 +ardus ardu adj m p 1.42 5.00 0.14 0.81 +are are nom m s 15.80 1.28 15.55 1.22 +area area nom f s 0.12 0.07 0.12 0.07 +arec arec nom m s 0.27 0.07 0.27 0.07 +ares are nom m p 15.80 1.28 0.25 0.07 +arganier arganier nom m s 0.00 0.34 0.00 0.07 +arganiers arganier nom m p 0.00 0.34 0.00 0.27 +argans argan nom m p 0.00 0.07 0.00 0.07 +argent argent nom m s 515.10 194.39 515.04 194.32 +argentait argenter ver 0.62 3.99 0.00 0.34 ind:imp:3s; +argente argenter ver 0.62 3.99 0.17 0.14 ind:pre:3s; +argenterie argenterie nom f s 3.11 3.99 3.01 3.92 +argenteries argenterie nom f p 3.11 3.99 0.10 0.07 +argentier argentier nom m s 0.00 0.41 0.00 0.41 +argentifères argentifère adj f p 0.00 0.14 0.00 0.14 +argentin argentin adj m s 2.23 5.47 1.26 2.57 +argentine argentin adj f s 2.23 5.47 0.46 1.62 +argentines argentin adj f p 2.23 5.47 0.03 0.68 +argentins argentin nom m p 1.83 1.49 0.79 0.34 +argenton argenton nom m s 0.00 0.07 0.00 0.07 +argents argent nom m p 515.10 194.39 0.06 0.07 +argenté argenté adj m s 1.87 10.54 0.68 3.99 +argentée argenté adj f s 1.87 10.54 0.53 1.89 +argentées argenté adj f p 1.87 10.54 0.52 1.96 +argentés argenté adj m p 1.87 10.54 0.14 2.70 +argile argile nom f s 4.26 9.66 4.25 9.32 +argiles argile nom f p 4.26 9.66 0.01 0.34 +argileuse argileux adj f s 0.00 0.54 0.00 0.20 +argileux argileux adj m s 0.00 0.54 0.00 0.34 +argilière argilière nom f s 0.02 0.00 0.02 0.00 +argol argol nom m s 0.00 0.14 0.00 0.14 +argon argon nom m s 0.38 0.07 0.38 0.07 +argonaute argonaute nom m s 0.10 0.07 0.10 0.07 +argot argot nom m s 1.06 4.86 1.06 4.46 +argotique argotique adj s 0.05 0.95 0.05 0.68 +argotiques argotique adj p 0.05 0.95 0.00 0.27 +argots argot nom m p 1.06 4.86 0.00 0.41 +argougnasses argougner ver 0.00 0.27 0.00 0.07 sub:imp:2s; +argougne argougner ver 0.00 0.27 0.00 0.20 ind:pre:1s; +argousin argousin nom m s 0.00 1.35 0.00 0.61 +argousins argousin nom m p 0.00 1.35 0.00 0.74 +argua arguer ver 0.27 1.89 0.00 0.20 ind:pas:3s; +arguais arguer ver 0.27 1.89 0.01 0.00 ind:imp:2s; +arguait arguer ver 0.27 1.89 0.00 0.07 ind:imp:3s; +arguant arguer ver 0.27 1.89 0.08 1.15 par:pre; +argue arguer ver 0.27 1.89 0.11 0.07 imp:pre:2s;ind:pre:3s; +arguer arguer ver 0.27 1.89 0.05 0.41 inf; +argument argument nom m s 9.58 18.18 5.07 8.24 +argumenta argumenter ver 0.88 1.49 0.00 0.14 ind:pas:3s; +argumentaire argumentaire nom m s 0.13 0.00 0.13 0.00 +argumentait argumenter ver 0.88 1.49 0.03 0.20 ind:imp:3s; +argumentant argumenter ver 0.88 1.49 0.03 0.00 par:pre; +argumentateur argumentateur nom m s 0.01 0.00 0.01 0.00 +argumentatif argumentatif nom m s 0.02 0.00 0.02 0.00 +argumentation argumentation nom f s 0.54 0.88 0.44 0.68 +argumentations argumentation nom f p 0.54 0.88 0.10 0.20 +argumente argumenter ver 0.88 1.49 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +argumentent argumenter ver 0.88 1.49 0.04 0.00 ind:pre:3p; +argumenter argumenter ver 0.88 1.49 0.61 0.54 inf; +argumenterai argumenter ver 0.88 1.49 0.02 0.00 ind:fut:1s; +argumentes argumenter ver 0.88 1.49 0.01 0.00 ind:pre:2s; +argumentez argumenter ver 0.88 1.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +arguments argument nom m p 9.58 18.18 4.51 9.93 +argumenté argumenter ver m s 0.88 1.49 0.05 0.14 par:pas; +argus argus nom m 0.09 0.68 0.09 0.68 +argutie argutie nom f s 0.03 0.54 0.00 0.14 +arguties argutie nom f p 0.03 0.54 0.03 0.41 +argué arguer ver m s 0.27 1.89 0.02 0.00 par:pas; +aria aria nom s 0.81 0.47 0.48 0.34 +arianisme arianisme nom m s 0.00 0.07 0.00 0.07 +arias aria nom m p 0.81 0.47 0.33 0.14 +aride aride adj s 1.30 6.15 1.17 4.26 +arides aride adj p 1.30 6.15 0.14 1.89 +aridité aridité nom f s 0.14 1.55 0.14 1.55 +arien arien adj m s 0.72 0.07 0.29 0.00 +arienne arien adj f s 0.72 0.07 0.44 0.00 +ariens arien nom m p 0.04 0.07 0.04 0.00 +ariettes ariette nom f p 0.00 0.07 0.00 0.07 +arioso arioso nom m s 0.00 0.14 0.00 0.14 +aristarque aristarque nom m s 0.00 0.14 0.00 0.07 +aristarques aristarque nom m p 0.00 0.14 0.00 0.07 +aristo aristo nom s 0.40 1.08 0.28 0.81 +aristocrate aristocrate nom s 3.13 3.58 1.76 2.23 +aristocrates aristocrate nom p 3.13 3.58 1.37 1.35 +aristocratie aristocratie nom f s 1.60 3.92 1.60 3.92 +aristocratique aristocratique adj s 0.15 2.91 0.12 2.36 +aristocratiquement aristocratiquement adv 0.00 0.07 0.00 0.07 +aristocratiques aristocratique adj p 0.15 2.91 0.03 0.54 +aristocratisme aristocratisme nom m s 0.00 0.07 0.00 0.07 +aristoloche aristoloche nom f s 0.00 0.14 0.00 0.07 +aristoloches aristoloche nom f p 0.00 0.14 0.00 0.07 +aristos aristo nom p 0.40 1.08 0.12 0.27 +aristotélicien aristotélicien adj m s 0.01 0.14 0.00 0.07 +aristotélicienne aristotélicien adj f s 0.01 0.14 0.01 0.07 +arithmomètre arithmomètre nom m s 0.00 0.07 0.00 0.07 +arithmétique arithmétique nom f s 0.57 2.23 0.57 2.23 +arithmétiquement arithmétiquement adv 0.01 0.07 0.01 0.07 +arithmétiques arithmétique adj p 0.20 0.47 0.00 0.07 +ariégeois ariégeois adj m s 0.00 0.14 0.00 0.07 +ariégeoise ariégeois adj f s 0.00 0.14 0.00 0.07 +arkose arkose nom f s 0.00 0.14 0.00 0.14 +arlequin arlequin nom m s 0.04 0.47 0.04 0.07 +arlequins arlequin nom m p 0.04 0.47 0.00 0.41 +arlésien arlésien nom m s 0.00 0.14 0.00 0.07 +arlésienne arlésienne nom f s 0.02 0.20 0.00 0.20 +arlésiennes arlésienne nom f p 0.02 0.20 0.02 0.00 +arma armer ver 29.77 28.45 0.38 1.22 ind:pas:3s; +armada armada nom f s 1.05 1.35 1.04 1.15 +armadas armada nom f p 1.05 1.35 0.01 0.20 +armadille armadille nom f s 0.00 0.07 0.00 0.07 +armagnac armagnac nom m s 0.66 0.74 0.66 0.61 +armagnacs armagnac nom m p 0.66 0.74 0.00 0.14 +armai armer ver 29.77 28.45 0.00 0.07 ind:pas:1s; +armaient armer ver 29.77 28.45 0.00 0.14 ind:imp:3p; +armait armer ver 29.77 28.45 0.16 0.54 ind:imp:3s; +armant armer ver 29.77 28.45 0.01 0.27 par:pre; +armateur armateur nom m s 0.59 2.30 0.56 1.42 +armateurs armateur nom m p 0.59 2.30 0.03 0.88 +armature armature nom f s 0.77 2.91 0.54 2.30 +armaturent armaturer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +armatures armature nom f p 0.77 2.91 0.23 0.61 +arme_miracle arme_miracle nom f s 0.10 0.00 0.10 0.00 +arme arme nom f s 220.22 111.49 114.40 37.09 +armement armement nom m s 3.34 9.80 3.01 9.05 +armements armement nom m p 3.34 9.80 0.33 0.74 +arment armer ver 29.77 28.45 0.17 0.20 ind:pre:3p; +armer armer ver 29.77 28.45 1.33 2.64 inf; +armeraient armer ver 29.77 28.45 0.00 0.07 cnd:pre:3p; +armerais armer ver 29.77 28.45 0.01 0.07 cnd:pre:1s; +armeront armer ver 29.77 28.45 0.01 0.00 ind:fut:3p; +armes arme nom f p 220.22 111.49 105.82 74.39 +armez armer ver 29.77 28.45 2.68 0.07 imp:pre:2p;ind:pre:2p; +armistice armistice nom m s 1.05 15.54 1.05 14.93 +armistices armistice nom m p 1.05 15.54 0.00 0.61 +armoire armoire nom f s 9.79 45.54 9.05 38.58 +armoires armoire nom f p 9.79 45.54 0.73 6.96 +armoirie armoirie nom f s 0.36 1.89 0.01 0.14 +armoiries armoirie nom f p 0.36 1.89 0.35 1.76 +armoise armoise nom f s 0.38 0.27 0.36 0.20 +armoises armoise nom f p 0.38 0.27 0.01 0.07 +armon armon nom m s 0.01 0.00 0.01 0.00 +armons armer ver 29.77 28.45 0.14 0.20 imp:pre:1p;ind:pre:1p; +armorial armorial nom m s 0.00 0.34 0.00 0.34 +armoricaine armoricain adj f s 0.00 0.20 0.00 0.20 +armorié armorier ver m s 0.00 0.61 0.00 0.27 par:pas; +armoriée armorier ver f s 0.00 0.61 0.00 0.07 par:pas; +armoriées armorier ver f p 0.00 0.61 0.00 0.14 par:pas; +armoriés armorier ver m p 0.00 0.61 0.00 0.14 par:pas; +armât armer ver 29.77 28.45 0.00 0.07 sub:imp:3s; +armé armer ver m s 29.77 28.45 10.97 8.31 par:pas; +armée armée nom f s 101.07 146.55 93.97 114.46 +armées armée nom f p 101.07 146.55 7.10 32.09 +arménien arménien adj m s 1.07 0.95 0.21 0.27 +arménienne arménien adj f s 1.07 0.95 0.28 0.54 +arméniennes arménien adj f p 1.07 0.95 0.00 0.07 +arméniens arménien adj m p 1.07 0.95 0.58 0.07 +arménoïde arménoïde adj m s 0.00 0.07 0.00 0.07 +armure armure nom f s 5.46 8.11 5.00 5.47 +armurerie armurerie nom f s 0.94 0.27 0.89 0.27 +armureries armurerie nom f p 0.94 0.27 0.05 0.00 +armures armure nom f p 5.46 8.11 0.46 2.64 +arméria arméria nom f s 0.00 0.14 0.00 0.07 +armérias arméria nom f p 0.00 0.14 0.00 0.07 +armurier armurier nom m s 0.75 1.69 0.60 1.22 +armuriers armurier nom m p 0.75 1.69 0.14 0.47 +armés armer ver m p 29.77 28.45 6.70 7.91 par:pas; +arnaquait arnaquer ver 6.37 0.68 0.15 0.00 ind:imp:3s; +arnaquant arnaquer ver 6.37 0.68 0.16 0.00 par:pre; +arnaque arnaque nom f s 6.27 5.14 5.49 4.59 +arnaquent arnaquer ver 6.37 0.68 0.32 0.00 ind:pre:3p; +arnaquer arnaquer ver 6.37 0.68 2.65 0.47 inf; +arnaquera arnaquer ver 6.37 0.68 0.02 0.00 ind:fut:3s; +arnaques arnaque nom f p 6.27 5.14 0.78 0.54 +arnaqueur arnaqueur nom m s 1.47 0.54 0.99 0.07 +arnaqueurs arnaqueur nom m p 1.47 0.54 0.32 0.47 +arnaqueuse arnaqueur nom f s 1.47 0.54 0.16 0.00 +arnaquez arnaquer ver 6.37 0.68 0.20 0.00 imp:pre:2p;ind:pre:2p; +arnaqué arnaquer ver m s 6.37 0.68 1.46 0.14 par:pas; +arnaquée arnaquer ver f s 6.37 0.68 0.06 0.00 par:pas; +arnaqués arnaquer ver m p 6.37 0.68 0.50 0.00 par:pas; +arnica arnica nom s 0.02 0.61 0.02 0.61 +arobase arobase nom f s 0.14 0.00 0.14 0.00 +aromate aromate nom m s 0.11 0.88 0.01 0.00 +aromates aromate nom m p 0.11 0.88 0.10 0.88 +aromathérapie aromathérapie nom f s 0.18 0.00 0.18 0.00 +aromatique aromatique adj s 0.10 0.74 0.02 0.20 +aromatiques aromatique adj p 0.10 0.74 0.07 0.54 +aromatiser aromatiser ver 0.20 0.54 0.01 0.00 inf; +aromatisé aromatiser ver m s 0.20 0.54 0.16 0.34 par:pas; +aromatisée aromatiser ver f s 0.20 0.54 0.01 0.07 par:pas; +aromatisées aromatiser ver f p 0.20 0.54 0.00 0.14 par:pas; +aromatisés aromatiser ver m p 0.20 0.54 0.01 0.00 par:pas; +aronde aronde nom f s 0.00 0.47 0.00 0.47 +arousal arousal nom m s 0.00 0.07 0.00 0.07 +arpent arpent nom m s 0.56 0.95 0.17 0.14 +arpenta arpenter ver 2.00 9.53 0.10 0.47 ind:pas:3s; +arpentage arpentage nom m s 0.20 0.27 0.20 0.20 +arpentages arpentage nom m p 0.20 0.27 0.00 0.07 +arpentai arpenter ver 2.00 9.53 0.01 0.27 ind:pas:1s; +arpentaient arpenter ver 2.00 9.53 0.00 0.47 ind:imp:3p; +arpentais arpenter ver 2.00 9.53 0.00 0.27 ind:imp:1s; +arpentait arpenter ver 2.00 9.53 0.04 1.76 ind:imp:3s; +arpentant arpenter ver 2.00 9.53 0.02 1.49 par:pre; +arpente arpenter ver 2.00 9.53 0.62 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arpentent arpenter ver 2.00 9.53 0.08 0.61 ind:pre:3p; +arpenter arpenter ver 2.00 9.53 0.64 2.30 inf; +arpenterai arpenter ver 2.00 9.53 0.03 0.00 ind:fut:1s; +arpenteront arpenter ver 2.00 9.53 0.01 0.00 ind:fut:3p; +arpenteur arpenteur nom m s 0.25 1.49 0.16 0.74 +arpenteurs arpenteur nom m p 0.25 1.49 0.09 0.74 +arpentez arpenter ver 2.00 9.53 0.02 0.00 imp:pre:2p;ind:pre:2p; +arpentions arpenter ver 2.00 9.53 0.00 0.14 ind:imp:1p; +arpentons arpenter ver 2.00 9.53 0.00 0.07 ind:pre:1p; +arpents arpent nom m p 0.56 0.95 0.38 0.81 +arpentèrent arpenter ver 2.00 9.53 0.00 0.07 ind:pas:3p; +arpenté arpenter ver m s 2.00 9.53 0.41 0.47 par:pas; +arpentée arpenter ver f s 2.00 9.53 0.00 0.07 par:pas; +arpentés arpenter ver m p 2.00 9.53 0.00 0.07 par:pas; +arpette arpette nom s 0.01 0.00 0.01 0.00 +arpion arpion nom m s 0.03 1.08 0.00 0.07 +arpions arpion nom m p 0.03 1.08 0.03 1.01 +arpège arpège nom m s 0.20 1.49 0.03 1.15 +arpèges arpège nom m p 0.20 1.49 0.18 0.34 +arpète arpète nom s 0.00 1.15 0.00 0.88 +arpètes arpète nom p 0.00 1.15 0.00 0.27 +arpégé arpéger ver m s 0.14 0.00 0.14 0.00 par:pas; +arqua arquer ver 0.34 2.36 0.00 0.07 ind:pas:3s; +arquaient arquer ver 0.34 2.36 0.00 0.41 ind:imp:3p; +arquait arquer ver 0.34 2.36 0.00 0.14 ind:imp:3s; +arquant arquer ver 0.34 2.36 0.00 0.14 par:pre; +arque arquer ver 0.34 2.36 0.00 0.07 ind:pre:1s; +arquebusade arquebusade nom f s 0.00 0.14 0.00 0.14 +arquebuse arquebuse nom f s 0.41 8.72 0.39 8.51 +arquebuses arquebuse nom f p 0.41 8.72 0.02 0.20 +arquebusiers arquebusier nom m p 0.40 0.00 0.40 0.00 +arquebusât arquebuser ver 0.01 0.00 0.01 0.00 sub:imp:3s; +arquent arquer ver 0.34 2.36 0.00 0.20 ind:pre:3p; +arquepince arquepincer ver 0.00 0.07 0.00 0.07 imp:pre:2s; +arquer arquer ver 0.34 2.36 0.31 0.47 inf; +arqué arqué adj m s 0.14 2.97 0.02 0.47 +arquée arquer ver f s 0.34 2.36 0.01 0.14 par:pas; +arquées arqué adj f p 0.14 2.97 0.10 1.49 +arqués arqué adj m p 0.14 2.97 0.01 0.61 +arracha arracher ver 54.19 113.38 0.33 11.82 ind:pas:3s; +arrachage arrachage nom m s 0.10 0.27 0.10 0.27 +arrachai arracher ver 54.19 113.38 0.04 1.15 ind:pas:1s; +arrachaient arracher ver 54.19 113.38 0.18 2.16 ind:imp:3p; +arrachais arracher ver 54.19 113.38 0.84 0.74 ind:imp:1s;ind:imp:2s; +arrachait arracher ver 54.19 113.38 0.31 9.59 ind:imp:3s; +arrachant arracher ver 54.19 113.38 0.46 7.43 par:pre; +arrache_clou arrache_clou nom m s 0.00 0.07 0.00 0.07 +arrache arracher ver 54.19 113.38 13.52 14.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrachement arrachement nom m s 0.02 3.11 0.02 2.64 +arrachements arrachement nom m p 0.02 3.11 0.00 0.47 +arrachent arracher ver 54.19 113.38 1.23 2.57 ind:pre:3p; +arracher arracher ver 54.19 113.38 17.20 34.32 ind:pre:2p;inf; +arrachera arracher ver 54.19 113.38 0.90 0.68 ind:fut:3s; +arracherai arracher ver 54.19 113.38 1.68 0.27 ind:fut:1s; +arracheraient arracher ver 54.19 113.38 0.05 0.20 cnd:pre:3p; +arracherais arracher ver 54.19 113.38 0.49 0.20 cnd:pre:1s;cnd:pre:2s; +arracherait arracher ver 54.19 113.38 0.35 1.01 cnd:pre:3s; +arracheras arracher ver 54.19 113.38 0.01 0.07 ind:fut:2s; +arracherons arracher ver 54.19 113.38 0.43 0.07 ind:fut:1p; +arracheront arracher ver 54.19 113.38 0.50 0.14 ind:fut:3p; +arraches arracher ver 54.19 113.38 0.82 0.07 ind:pre:2s; +arracheur arracheur nom m s 0.34 0.74 0.31 0.41 +arracheurs arracheur nom m p 0.34 0.74 0.00 0.27 +arracheuse arracheur nom f s 0.34 0.74 0.04 0.00 +arracheuses arracheur nom f p 0.34 0.74 0.00 0.07 +arrachez arracher ver 54.19 113.38 1.42 0.27 imp:pre:2p;ind:pre:2p; +arrachiez arracher ver 54.19 113.38 0.04 0.00 ind:imp:2p; +arrachions arracher ver 54.19 113.38 0.00 0.07 ind:imp:1p; +arrachons arracher ver 54.19 113.38 0.42 0.14 imp:pre:1p;ind:pre:1p; +arrachât arracher ver 54.19 113.38 0.00 0.61 sub:imp:3s; +arrachèrent arracher ver 54.19 113.38 0.28 0.88 ind:pas:3p; +arraché arracher ver m s 54.19 113.38 9.53 13.04 par:pas; +arrachée arracher ver f s 54.19 113.38 1.40 5.74 par:pas; +arrachées arracher ver f p 54.19 113.38 0.69 2.09 par:pas; +arrachures arrachure nom f p 0.00 0.07 0.00 0.07 +arrachés arracher ver m p 54.19 113.38 1.09 3.11 par:pas; +arraisonner arraisonner ver 0.14 0.61 0.05 0.07 inf; +arraisonnerons arraisonner ver 0.14 0.61 0.00 0.07 ind:fut:1p; +arraisonné arraisonner ver m s 0.14 0.61 0.07 0.27 par:pas; +arraisonnées arraisonner ver f p 0.14 0.61 0.00 0.07 par:pas; +arraisonnés arraisonner ver m p 0.14 0.61 0.02 0.14 par:pas; +arrange arranger ver 116.14 75.81 22.14 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arrangea arranger ver 116.14 75.81 0.25 2.43 ind:pas:3s; +arrangeai arranger ver 116.14 75.81 0.01 0.27 ind:pas:1s; +arrangeaient arranger ver 116.14 75.81 0.12 1.62 ind:imp:3p; +arrangeais arranger ver 116.14 75.81 0.45 0.74 ind:imp:1s;ind:imp:2s; +arrangeait arranger ver 116.14 75.81 1.19 9.46 ind:imp:3s; +arrangeant arranger ver 116.14 75.81 0.18 1.42 par:pre; +arrangeante arrangeant adj f s 0.10 0.47 0.04 0.07 +arrangeantes arrangeant adj f p 0.10 0.47 0.00 0.14 +arrangeants arrangeant adj m p 0.10 0.47 0.03 0.07 +arrangement arrangement nom m s 10.23 9.39 8.62 5.81 +arrangements arrangement nom m p 10.23 9.39 1.61 3.58 +arrangent arranger ver 116.14 75.81 1.30 2.50 ind:pre:3p;sub:pre:3p; +arrangeons arranger ver 116.14 75.81 0.29 0.07 imp:pre:1p;ind:pre:1p; +arrangeât arranger ver 116.14 75.81 0.00 0.07 sub:imp:3s; +arranger arranger ver 116.14 75.81 48.51 18.45 imp:pre:2p;inf; +arrangera arranger ver 116.14 75.81 8.40 2.30 ind:fut:3s; +arrangerai arranger ver 116.14 75.81 3.51 2.57 ind:fut:1s; +arrangeraient arranger ver 116.14 75.81 0.01 0.41 cnd:pre:3p; +arrangerais arranger ver 116.14 75.81 0.61 0.34 cnd:pre:1s;cnd:pre:2s; +arrangerait arranger ver 116.14 75.81 3.05 3.31 cnd:pre:3s; +arrangeras arranger ver 116.14 75.81 0.24 0.20 ind:fut:2s; +arrangerez arranger ver 116.14 75.81 0.14 0.34 ind:fut:2p; +arrangerions arranger ver 116.14 75.81 0.00 0.07 cnd:pre:1p; +arrangerons arranger ver 116.14 75.81 0.39 0.47 ind:fut:1p; +arrangeront arranger ver 116.14 75.81 0.30 0.41 ind:fut:3p; +arranges arranger ver 116.14 75.81 1.50 0.47 ind:pre:2s; +arrangeur arrangeur nom m s 0.10 0.07 0.06 0.00 +arrangeurs arrangeur nom m p 0.10 0.07 0.04 0.07 +arrangez arranger ver 116.14 75.81 2.42 0.74 imp:pre:2p;ind:pre:2p; +arrangiez arranger ver 116.14 75.81 0.01 0.07 ind:imp:2p; +arrangions arranger ver 116.14 75.81 0.04 0.20 ind:imp:1p; +arrangèrent arranger ver 116.14 75.81 0.01 0.34 ind:pas:3p; +arrangé arranger ver m s 116.14 75.81 18.24 9.93 par:pas; +arrangée arranger ver f s 116.14 75.81 1.29 2.50 par:pas; +arrangées arranger ver f p 116.14 75.81 0.41 0.34 par:pas; +arrangés arranger ver m p 116.14 75.81 1.13 0.81 par:pas; +arrestation arrestation nom f s 20.59 10.41 17.59 8.58 +arrestations arrestation nom f p 20.59 10.41 3.00 1.82 +arrhes arrhe nom f p 0.30 0.41 0.30 0.41 +arrima arrimer ver 0.97 2.91 0.00 0.07 ind:pas:3s; +arrimage arrimage nom m s 0.61 0.20 0.61 0.20 +arrimais arrimer ver 0.97 2.91 0.00 0.07 ind:imp:1s; +arrimait arrimer ver 0.97 2.91 0.00 0.20 ind:imp:3s; +arrimant arrimer ver 0.97 2.91 0.10 0.07 par:pre; +arrime arrimer ver 0.97 2.91 0.05 0.00 imp:pre:2s;ind:pre:3s; +arriment arrimer ver 0.97 2.91 0.03 0.07 ind:pre:3p; +arrimer arrimer ver 0.97 2.91 0.32 0.41 inf; +arrimez arrimer ver 0.97 2.91 0.08 0.00 imp:pre:2p; +arrimé arrimer ver m s 0.97 2.91 0.16 0.68 par:pas; +arrimée arrimer ver f s 0.97 2.91 0.05 0.74 par:pas; +arrimées arrimer ver f p 0.97 2.91 0.11 0.27 par:pas; +arrimés arrimer ver m p 0.97 2.91 0.08 0.34 par:pas; +arrière_automne arrière_automne nom m 0.00 0.14 0.00 0.14 +arrière_ban arrière_ban nom m s 0.00 0.20 0.00 0.20 +arrière_boutique arrière_boutique nom f s 0.31 6.35 0.31 5.95 +arrière_boutique arrière_boutique nom f p 0.31 6.35 0.00 0.41 +arrière_cabinet arrière_cabinet nom m p 0.00 0.07 0.00 0.07 +arrière_cour arrière_cour nom f s 0.45 1.35 0.41 1.01 +arrière_cour arrière_cour nom f p 0.45 1.35 0.03 0.34 +arrière_cousin arrière_cousin nom m s 0.12 0.00 0.12 0.00 +arrière_cuisine arrière_cuisine nom f s 0.02 0.14 0.02 0.07 +arrière_cuisine arrière_cuisine nom f p 0.02 0.14 0.00 0.07 +arrière_fond arrière_fond nom m s 0.04 0.95 0.04 0.95 +arrière_garde arrière_garde nom f s 0.47 2.03 0.47 1.69 +arrière_garde arrière_garde nom f p 0.47 2.03 0.00 0.34 +arrière_goût arrière_goût nom m s 0.55 1.28 0.55 1.22 +arrière_goût arrière_goût nom m p 0.55 1.28 0.00 0.07 +arrière_gorge arrière_gorge nom f s 0.00 0.27 0.00 0.27 +arrière_grand_mère arrière_grand_mère nom f s 0.85 2.57 0.83 2.30 +arrière_grand_mère arrière_grand_mère nom f p 0.85 2.57 0.00 0.20 +arrière_grand_oncle arrière_grand_oncle nom m s 0.04 0.41 0.04 0.41 +arrière_grand_père arrière_grand_père nom m s 1.48 4.12 1.48 3.78 +arrière_grand_tante arrière_grand_tante nom f s 0.00 0.20 0.00 0.14 +arrière_grand_tante arrière_grand_tante nom f p 0.00 0.20 0.00 0.07 +arrière_grand_mère arrière_grand_mère nom f p 0.85 2.57 0.02 0.07 +arrière_grand_parent arrière_grand_parent nom m p 0.16 1.08 0.16 1.08 +arrière_grand_père arrière_grand_père nom m p 1.48 4.12 0.00 0.34 +arrière_loge arrière_loge nom m s 0.00 0.07 0.00 0.07 +arrière_magasin arrière_magasin nom m 0.00 0.07 0.00 0.07 +arrière_main arrière_main nom s 0.00 0.07 0.00 0.07 +arrière_monde arrière_monde nom m s 0.00 0.14 0.00 0.14 +arrière_neveux arrière_neveux nom m p 0.00 0.07 0.00 0.07 +arrière_pays arrière_pays nom m 0.37 1.15 0.37 1.15 +arrière_pensée arrière_pensée nom f s 0.91 5.95 0.79 3.58 +arrière_pensée arrière_pensée nom f p 0.91 5.95 0.13 2.36 +arrière_petit_fils arrière_petit_fils nom m 0.14 0.61 0.14 0.61 +arrière_petit_neveu arrière_petit_neveu nom m s 0.01 0.27 0.01 0.27 +arrière_petite_fille arrière_petite_fille nom f s 0.13 0.81 0.13 0.47 +arrière_petite_nièce arrière_petite_nièce nom f s 0.00 0.14 0.00 0.07 +arrière_petite_fille arrière_petite_fille nom f p 0.13 0.81 0.00 0.34 +arrière_petite_nièce arrière_petite_nièce nom f p 0.00 0.14 0.00 0.07 +arrière_petit_enfant arrière_petit_enfant nom m p 0.36 0.27 0.36 0.27 +arrière_petits_fils arrière_petits_fils nom m p 0.00 0.41 0.00 0.41 +arrière_petits_neveux arrière_petits_neveux nom m p 0.00 0.07 0.00 0.07 +arrière_plan arrière_plan nom m s 0.94 2.70 0.91 2.03 +arrière_plan arrière_plan nom m p 0.94 2.70 0.02 0.68 +arrière_saison arrière_saison nom f s 0.00 1.22 0.00 1.22 +arrière_salle arrière_salle nom f s 0.28 2.36 0.24 2.16 +arrière_salle arrière_salle nom f p 0.28 2.36 0.04 0.20 +arrière_train arrière_train nom m s 0.66 1.69 0.64 1.62 +arrière_train arrière_train nom m p 0.66 1.69 0.03 0.07 +arrière arrière ono 2.75 0.14 2.75 0.14 +arrières arrière nom m p 52.15 95.00 4.76 4.73 +arriération arriération nom f s 0.03 0.27 0.03 0.27 +arriéré arriéré nom m s 0.79 2.03 0.22 0.54 +arriérée arriéré adj f s 0.57 1.62 0.20 0.34 +arriérées arriéré adj f p 0.57 1.62 0.04 0.14 +arriérés arriéré nom m p 0.79 2.03 0.54 1.35 +arriva arriver ver 1252.39 723.04 5.75 47.50 ind:pas:3s; +arrivage arrivage nom m s 0.82 1.96 0.76 1.55 +arrivages arrivage nom m p 0.82 1.96 0.07 0.41 +arrivai arriver ver 1252.39 723.04 0.49 6.76 ind:pas:1s; +arrivaient arriver ver 1252.39 723.04 2.72 22.91 ind:imp:3p; +arrivais arriver ver 1252.39 723.04 11.24 18.51 ind:imp:1s;ind:imp:2s; +arrivait arriver ver 1252.39 723.04 22.16 105.00 ind:imp:3s; +arrivant arriver ver 1252.39 723.04 9.19 22.57 par:pre; +arrivante arrivant nom f s 0.48 5.07 0.03 0.27 +arrivants arrivant nom m p 0.48 5.07 0.27 2.64 +arrivas arriver ver 1252.39 723.04 0.02 0.07 ind:pas:2s; +arrivassent arriver ver 1252.39 723.04 0.00 0.07 sub:imp:3p; +arrive arriver ver 1252.39 723.04 525.10 164.12 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrivent arriver ver 1252.39 723.04 58.12 21.82 ind:pre:3p;sub:pre:3p; +arriver arriver ver 1252.39 723.04 182.85 95.00 inf;; +arrivera arriver ver 1252.39 723.04 53.86 10.07 ind:fut:3s; +arriverai arriver ver 1252.39 723.04 13.08 3.85 ind:fut:1s; +arriveraient arriver ver 1252.39 723.04 0.58 1.22 cnd:pre:3p; +arriverais arriver ver 1252.39 723.04 3.93 1.76 cnd:pre:1s;cnd:pre:2s; +arriverait arriver ver 1252.39 723.04 11.06 9.73 cnd:pre:3s; +arriveras arriver ver 1252.39 723.04 8.98 1.96 ind:fut:2s; +arriverez arriver ver 1252.39 723.04 5.30 1.22 ind:fut:2p; +arriveriez arriver ver 1252.39 723.04 0.46 0.07 cnd:pre:2p; +arriverions arriver ver 1252.39 723.04 0.25 0.27 cnd:pre:1p; +arriverons arriver ver 1252.39 723.04 3.61 1.42 ind:fut:1p; +arriveront arriver ver 1252.39 723.04 5.17 1.62 ind:fut:3p; +arrives arriver ver 1252.39 723.04 28.82 3.31 ind:pre:2s; +arrivez arriver ver 1252.39 723.04 10.69 2.23 imp:pre:2p;ind:pre:2p; +arriviez arriver ver 1252.39 723.04 1.30 0.88 ind:imp:2p; +arrivions arriver ver 1252.39 723.04 0.99 4.59 ind:imp:1p; +arrivisme arrivisme nom m s 0.16 0.27 0.16 0.27 +arriviste arriviste nom s 0.77 0.41 0.60 0.20 +arrivistes arriviste nom p 0.77 0.41 0.17 0.20 +arrivâmes arriver ver 1252.39 723.04 0.46 3.18 ind:pas:1p; +arrivons arriver ver 1252.39 723.04 6.09 4.86 imp:pre:1p;ind:pre:1p; +arrivât arriver ver 1252.39 723.04 0.43 2.09 sub:imp:3s; +arrivâtes arriver ver 1252.39 723.04 0.01 0.07 ind:pas:2p; +arrivèrent arriver ver 1252.39 723.04 1.36 12.57 ind:pas:3p; +arrivé arriver ver m s 1252.39 723.04 203.06 97.91 par:pas;par:pas;par:pas; +arrivée arrivée nom f s 42.66 80.00 41.90 77.84 +arrivées arriver ver f p 1252.39 723.04 4.24 2.91 par:pas; +arrivés arriver ver m p 1252.39 723.04 32.78 25.81 par:pas; +arrogamment arrogamment adv 0.00 0.47 0.00 0.47 +arrogance arrogance nom f s 3.92 3.85 3.92 3.85 +arrogant arrogant adj m s 5.29 4.05 2.98 2.16 +arrogante arrogant adj f s 5.29 4.05 1.53 1.01 +arrogantes arrogant adj f p 5.29 4.05 0.18 0.20 +arrogants arrogant adj m p 5.29 4.05 0.59 0.68 +arroge arroger ver 0.39 1.01 0.22 0.14 ind:pre:1s;ind:pre:3s; +arrogeaient arroger ver 0.39 1.01 0.00 0.07 ind:imp:3p; +arrogeait arroger ver 0.39 1.01 0.00 0.07 ind:imp:3s; +arrogeant arroger ver 0.39 1.01 0.00 0.07 par:pre; +arrogent arroger ver 0.39 1.01 0.14 0.00 ind:pre:3p; +arroger arroger ver 0.39 1.01 0.00 0.54 inf; +arrogèrent arroger ver 0.39 1.01 0.01 0.00 ind:pas:3p; +arrogé arroger ver m s 0.39 1.01 0.02 0.07 par:pas; +arrogée arroger ver f s 0.39 1.01 0.00 0.07 par:pas; +arroi arroi nom m s 0.00 0.68 0.00 0.68 +arrondi arrondi adj m s 0.57 7.84 0.20 2.91 +arrondie arrondi adj f s 0.57 7.84 0.17 1.96 +arrondies arrondi adj f p 0.57 7.84 0.04 0.95 +arrondir arrondir ver 2.04 14.53 1.06 2.23 inf; +arrondira arrondir ver 2.04 14.53 0.15 0.07 ind:fut:3s; +arrondirait arrondir ver 2.04 14.53 0.01 0.07 cnd:pre:3s; +arrondirent arrondir ver 2.04 14.53 0.00 0.20 ind:pas:3p; +arrondis arrondir ver m p 2.04 14.53 0.22 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +arrondissaient arrondir ver 2.04 14.53 0.00 0.74 ind:imp:3p; +arrondissait arrondir ver 2.04 14.53 0.20 2.43 ind:imp:3s; +arrondissant arrondir ver 2.04 14.53 0.01 0.74 par:pre; +arrondissement arrondissement nom m s 0.95 8.38 0.94 7.30 +arrondissements arrondissement nom m p 0.95 8.38 0.01 1.08 +arrondissent arrondir ver 2.04 14.53 0.05 1.08 ind:pre:3p; +arrondissons arrondir ver 2.04 14.53 0.04 0.00 imp:pre:1p; +arrondit arrondir ver 2.04 14.53 0.14 2.30 ind:pre:3s;ind:pas:3s; +arrosa arroser ver 14.07 19.73 0.00 0.54 ind:pas:3s; +arrosage arrosage nom m s 1.72 1.89 1.72 1.89 +arrosaient arroser ver 14.07 19.73 0.04 0.68 ind:imp:3p; +arrosais arroser ver 14.07 19.73 0.11 0.07 ind:imp:1s;ind:imp:2s; +arrosait arroser ver 14.07 19.73 0.62 2.64 ind:imp:3s; +arrosant arroser ver 14.07 19.73 0.30 1.35 par:pre; +arrose arroser ver 14.07 19.73 3.34 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arrosent arroser ver 14.07 19.73 0.22 0.61 ind:pre:3p; +arroser arroser ver 14.07 19.73 5.53 4.46 inf; +arrosera arroser ver 14.07 19.73 0.02 0.00 ind:fut:3s; +arroserais arroser ver 14.07 19.73 0.00 0.14 cnd:pre:1s; +arroserait arroser ver 14.07 19.73 0.02 0.14 cnd:pre:3s; +arroseras arroser ver 14.07 19.73 0.02 0.00 ind:fut:2s; +arroserez arroser ver 14.07 19.73 0.00 0.07 ind:fut:2p; +arroseront arroser ver 14.07 19.73 0.01 0.07 ind:fut:3p; +arroses arroser ver 14.07 19.73 0.19 0.07 ind:pre:2s; +arroseur arroseur nom m s 0.43 0.47 0.22 0.14 +arroseurs arroseur nom m p 0.43 0.47 0.19 0.07 +arroseuse arroseur nom f s 0.43 0.47 0.02 0.20 +arroseuses arroseuse nom f p 0.01 0.00 0.01 0.00 +arrosez arroser ver 14.07 19.73 0.70 0.14 imp:pre:2p;ind:pre:2p; +arrosiez arroser ver 14.07 19.73 0.00 0.07 ind:imp:2p; +arrosions arroser ver 14.07 19.73 0.00 0.14 ind:imp:1p; +arrosoir arrosoir nom m s 0.37 3.58 0.37 3.04 +arrosoirs arrosoir nom m p 0.37 3.58 0.00 0.54 +arrosons arroser ver 14.07 19.73 0.40 0.14 imp:pre:1p;ind:pre:1p; +arrosèrent arroser ver 14.07 19.73 0.01 0.14 ind:pas:3p; +arrosé arroser ver m s 14.07 19.73 1.70 2.97 par:pas; +arrosée arroser ver f s 14.07 19.73 0.28 1.22 par:pas; +arrosées arroser ver f p 14.07 19.73 0.26 0.81 par:pas; +arrosés arroser ver m p 14.07 19.73 0.31 0.88 par:pas; +arrérages arrérage nom m p 0.20 0.14 0.20 0.14 +arrêt_buffet arrêt_buffet nom m s 0.01 0.07 0.00 0.07 +arrêt arrêt nom m s 50.88 53.92 46.80 46.82 +arrêta arrêter ver 993.79 462.50 1.68 93.31 ind:pas:3s; +arrêtai arrêter ver 993.79 462.50 0.48 6.15 ind:pas:1s; +arrêtaient arrêter ver 993.79 462.50 1.13 9.59 ind:imp:3p; +arrêtais arrêter ver 993.79 462.50 3.70 4.66 ind:imp:1s;ind:imp:2s; +arrêtait arrêter ver 993.79 462.50 8.97 37.09 ind:imp:3s; +arrêtant arrêter ver 993.79 462.50 1.00 16.01 par:pre; +arrêtassent arrêter ver 993.79 462.50 0.00 0.20 sub:imp:3p; +arrête_boeuf arrête_boeuf nom m s 0.00 0.07 0.00 0.07 +arrête arrêter ver 993.79 462.50 456.59 85.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrêtent arrêter ver 993.79 462.50 9.22 10.81 ind:pre:3p;sub:pre:3p; +arrêter arrêter ver 993.79 462.50 178.62 80.61 inf;;inf;;inf;;inf;; +arrêtera arrêter ver 993.79 462.50 14.42 2.70 ind:fut:3s; +arrêterai arrêter ver 993.79 462.50 4.00 0.54 ind:fut:1s; +arrêteraient arrêter ver 993.79 462.50 0.75 0.34 cnd:pre:3p; +arrêterais arrêter ver 993.79 462.50 2.13 0.61 cnd:pre:1s;cnd:pre:2s; +arrêterait arrêter ver 993.79 462.50 1.77 2.84 cnd:pre:3s; +arrêteras arrêter ver 993.79 462.50 1.40 0.34 ind:fut:2s; +arrêterez arrêter ver 993.79 462.50 1.27 0.07 ind:fut:2p; +arrêteriez arrêter ver 993.79 462.50 0.18 0.14 cnd:pre:2p; +arrêterions arrêter ver 993.79 462.50 0.04 0.07 cnd:pre:1p; +arrêterons arrêter ver 993.79 462.50 0.90 0.68 ind:fut:1p; +arrêteront arrêter ver 993.79 462.50 2.49 0.88 ind:fut:3p; +arrêtes arrêter ver 993.79 462.50 21.90 1.96 ind:pre:2s;sub:pre:2s; +arrêtez arrêter ver 993.79 462.50 174.12 6.69 imp:pre:2p;ind:pre:2p; +arrêtiez arrêter ver 993.79 462.50 1.56 0.20 ind:imp:2p; +arrêtions arrêter ver 993.79 462.50 0.55 1.42 ind:imp:1p;sub:pre:1p; +arrêtâmes arrêter ver 993.79 462.50 0.01 1.22 ind:pas:1p; +arrêtons arrêter ver 993.79 462.50 6.60 2.70 imp:pre:1p;ind:pre:1p; +arrêtât arrêter ver 993.79 462.50 0.00 1.42 sub:imp:3s; +arrêt_buffet arrêt_buffet nom m p 0.01 0.07 0.01 0.00 +arrêts arrêt nom m p 50.88 53.92 4.08 7.09 +arrêtèrent arrêter ver 993.79 462.50 0.24 10.00 ind:pas:3p; +arrêté arrêter ver m s 993.79 462.50 77.28 48.24 par:pas; +arrêtée arrêter ver f s 993.79 462.50 11.22 17.97 par:pas; +arrêtées arrêter ver f p 993.79 462.50 1.47 3.38 par:pas; +arrêtés arrêter ver m p 993.79 462.50 8.11 14.59 par:pas; +ars ars nom m 0.94 0.07 0.94 0.07 +arsacide arsacide nom s 0.00 0.07 0.00 0.07 +arsenal arsenal nom m s 2.36 5.74 2.27 4.86 +arsenaux arsenal nom m p 2.36 5.74 0.09 0.88 +arsenic arsenic nom m s 1.10 1.22 1.10 1.22 +arsenicales arsenical adj f p 0.00 0.07 0.00 0.07 +arsouille arsouille nom s 0.23 0.54 0.23 0.41 +arsouiller arsouiller ver 0.00 0.07 0.00 0.07 inf; +arsouilles arsouille nom p 0.23 0.54 0.00 0.14 +arsénieux arsénieux adj m s 0.00 0.07 0.00 0.07 +art art nom m s 72.79 91.49 65.93 81.49 +artefact artefact nom m s 0.67 0.14 0.34 0.00 +artefacts artefact nom m p 0.67 0.14 0.33 0.14 +arène arène nom f s 2.50 5.54 2.25 4.12 +arènes arène nom f p 2.50 5.54 0.25 1.42 +arçon arçon nom m s 0.02 0.95 0.01 0.81 +arçons arçon nom m p 0.02 0.95 0.01 0.14 +arthrite arthrite nom f s 1.75 0.34 1.75 0.27 +arthrites arthrite nom f p 1.75 0.34 0.00 0.07 +arthritique arthritique adj s 0.14 0.41 0.03 0.34 +arthritiques arthritique adj m p 0.14 0.41 0.11 0.07 +arthrodèse arthrodèse nom f s 0.00 0.14 0.00 0.14 +arthropathie arthropathie nom f s 0.01 0.00 0.01 0.00 +arthroplastie arthroplastie nom f s 0.01 0.00 0.01 0.00 +arthropodes arthropode nom m p 0.04 0.07 0.04 0.07 +arthroscopie arthroscopie nom f s 0.01 0.00 0.01 0.00 +arthrose arthrose nom f s 0.86 0.61 0.86 0.47 +arthroses arthrose nom f p 0.86 0.61 0.00 0.14 +arthurien arthurien adj m s 0.04 0.20 0.01 0.07 +arthurienne arthurien adj f s 0.04 0.20 0.03 0.07 +arthuriens arthurien adj m p 0.04 0.20 0.00 0.07 +artichaut artichaut nom m s 2.39 2.57 1.45 0.95 +artichauts artichaut nom m p 2.39 2.57 0.94 1.62 +artiche artiche nom m s 0.01 1.82 0.01 1.82 +article_choc article_choc nom m s 0.00 0.07 0.00 0.07 +article article nom m s 44.45 50.34 33.39 31.69 +articles article nom m p 44.45 50.34 11.06 18.65 +articula articuler ver 1.21 12.97 0.00 1.82 ind:pas:3s; +articulai articuler ver 1.21 12.97 0.00 0.07 ind:pas:1s; +articulaient articuler ver 1.21 12.97 0.00 0.07 ind:imp:3p; +articulaire articulaire adj s 0.17 0.07 0.09 0.00 +articulaires articulaire adj p 0.17 0.07 0.08 0.07 +articulait articuler ver 1.21 12.97 0.04 0.68 ind:imp:3s; +articulant articuler ver 1.21 12.97 0.02 1.28 par:pre; +articulation articulation nom f s 1.51 6.01 0.54 2.16 +articulations articulation nom f p 1.51 6.01 0.97 3.85 +articule articuler ver 1.21 12.97 0.50 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +articulent articuler ver 1.21 12.97 0.02 0.07 ind:pre:3p; +articuler articuler ver 1.21 12.97 0.34 4.32 inf; +articulet articulet nom m s 0.00 0.14 0.00 0.14 +articulez articuler ver 1.21 12.97 0.19 0.07 imp:pre:2p;ind:pre:2p; +articulé articulé adj m s 0.27 3.65 0.13 1.42 +articulée articuler ver f s 1.21 12.97 0.01 0.34 par:pas; +articulées articulé adj f p 0.27 3.65 0.12 0.41 +articulés articulé adj m p 0.27 3.65 0.03 1.08 +artifice artifice nom m s 6.95 10.95 5.38 8.51 +artifices artifice nom m p 6.95 10.95 1.57 2.43 +artificialité artificialité nom f s 0.01 0.00 0.01 0.00 +artificiel artificiel adj m s 7.12 12.16 2.55 3.51 +artificielle artificiel adj f s 7.12 12.16 2.99 4.39 +artificiellement artificiellement adv 0.48 1.42 0.48 1.42 +artificielles artificiel adj f p 7.12 12.16 0.87 2.57 +artificiels artificiel adj m p 7.12 12.16 0.71 1.69 +artificier artificier nom m s 0.79 1.35 0.44 0.68 +artificiers artificier nom m p 0.79 1.35 0.34 0.68 +artificieuse artificieux adj f s 0.14 0.14 0.00 0.07 +artificieuses artificieux adj f p 0.14 0.14 0.14 0.07 +artiflot artiflot nom m s 0.00 0.34 0.00 0.07 +artiflots artiflot nom m p 0.00 0.34 0.00 0.27 +artillerie artillerie nom f s 8.63 17.36 8.63 17.36 +artilleur artilleur nom m s 0.79 8.45 0.47 2.16 +artilleurs artilleur nom m p 0.79 8.45 0.32 6.28 +artimon artimon nom m s 0.22 0.07 0.22 0.07 +artisan artisan nom m s 3.09 10.74 1.79 5.00 +artisanal artisanal adj m s 0.75 1.62 0.15 0.41 +artisanale artisanal adj f s 0.75 1.62 0.30 0.68 +artisanalement artisanalement adv 0.01 0.07 0.01 0.07 +artisanales artisanal adj f p 0.75 1.62 0.25 0.27 +artisanat artisanat nom m s 0.77 1.15 0.77 1.15 +artisanaux artisanal adj m p 0.75 1.62 0.05 0.27 +artisane artisan nom f s 3.09 10.74 0.00 0.07 +artisans artisan nom m p 3.09 10.74 1.30 5.68 +artison artison nom m s 0.00 0.07 0.00 0.07 +artiste_peintre artiste_peintre nom s 0.02 0.14 0.02 0.14 +artiste artiste nom s 40.78 45.88 28.00 28.85 +artistement artistement adv 0.00 0.81 0.00 0.81 +artistes artiste nom p 40.78 45.88 12.78 17.03 +artistique artistique adj s 10.00 10.00 8.08 6.76 +artistiquement artistiquement adv 0.26 0.61 0.26 0.61 +artistiques artistique adj p 10.00 10.00 1.92 3.24 +arts art nom m p 72.79 91.49 6.86 10.00 +artère artère nom f s 5.13 7.09 3.13 2.16 +artères artère nom f p 5.13 7.09 2.00 4.93 +artéfact artéfact nom m s 0.13 0.00 0.13 0.00 +artériectomie artériectomie nom f s 0.00 0.07 0.00 0.07 +artériel artériel adj m s 1.76 0.61 0.19 0.20 +artérielle artériel adj f s 1.76 0.61 1.55 0.41 +artérielles artériel adj f p 1.76 0.61 0.02 0.00 +artériographie artériographie nom f s 0.09 0.00 0.09 0.00 +artériole artériole nom f s 0.03 0.14 0.01 0.00 +artérioles artériole nom f p 0.03 0.14 0.01 0.14 +artériopathie artériopathie nom f s 0.16 0.00 0.16 0.00 +artériosclérose artériosclérose nom f s 0.17 0.27 0.17 0.27 +artérite artérite nom f s 0.03 0.07 0.03 0.07 +artésien artésien adj m s 0.01 0.27 0.01 0.27 +aréflexie aréflexie nom f s 0.02 0.00 0.02 0.00 +arum arum nom m s 0.09 0.61 0.02 0.00 +arums arum nom m p 0.09 0.61 0.07 0.61 +aréna aréna nom m s 0.05 0.00 0.05 0.00 +aréole aréole nom f s 0.04 0.54 0.04 0.34 +aréoles aréole nom f p 0.04 0.54 0.00 0.20 +aréopage aréopage nom m s 0.10 1.08 0.10 1.01 +aréopages aréopage nom m p 0.10 1.08 0.00 0.07 +aréopagite aréopagite nom m s 0.00 0.07 0.00 0.07 +aréquier aréquier nom m s 0.14 0.00 0.14 0.00 +aruspice aruspice nom m s 0.15 0.07 0.15 0.00 +aruspices aruspice nom m p 0.15 0.07 0.00 0.07 +arête arête nom f s 1.60 10.81 0.70 6.01 +arêtes arête nom f p 1.60 10.81 0.90 4.80 +arétin arétin nom m s 0.00 0.07 0.00 0.07 +arverne arverne nom s 0.00 0.14 0.00 0.07 +arvernes arverne nom p 0.00 0.14 0.00 0.07 +aryen aryen adj m s 1.84 0.61 0.22 0.14 +aryenne aryen adj f s 1.84 0.61 1.09 0.34 +aryennes aryen adj f p 1.84 0.61 0.03 0.07 +aryens aryen adj m p 1.84 0.61 0.50 0.07 +arythmie arythmie nom f s 0.64 0.07 0.64 0.07 +arythmique arythmique adj m s 0.03 0.00 0.03 0.00 +arzels arzel nom m p 0.00 0.07 0.00 0.07 +as_rois as_rois nom m 0.01 0.00 0.01 0.00 +as avoir aux 18559.23 12800.81 2144.15 294.46 ind:pre:2s; +asa asa nom m 0.02 0.00 0.02 0.00 +asana asana nom f s 0.02 0.00 0.02 0.00 +asbeste asbeste nom m s 0.01 0.00 0.01 0.00 +asbestose asbestose nom f s 0.01 0.00 0.01 0.00 +ascaris ascaris nom m 0.20 0.07 0.20 0.07 +ascendance ascendance nom f s 0.24 2.23 0.24 1.89 +ascendances ascendance nom f p 0.24 2.23 0.00 0.34 +ascendant ascendant adj m s 1.26 2.36 1.10 1.08 +ascendante ascendant adj f s 1.26 2.36 0.13 0.88 +ascendantes ascendant adj f p 1.26 2.36 0.00 0.27 +ascendants ascendant adj m p 1.26 2.36 0.03 0.14 +ascendre ascendre ver 0.05 0.00 0.04 0.00 inf; +ascendu ascendre ver m s 0.05 0.00 0.01 0.00 par:pas; +ascenseur ascenseur nom m s 25.34 25.88 22.87 23.65 +ascenseurs ascenseur nom m p 25.34 25.88 2.48 2.23 +ascension ascension nom f s 3.87 8.04 3.65 7.70 +ascensionne ascensionner ver 0.01 0.07 0.00 0.07 ind:pre:3s; +ascensionnel ascensionnel adj m s 0.05 0.34 0.02 0.14 +ascensionnelle ascensionnel adj f s 0.05 0.34 0.02 0.20 +ascensionnelles ascensionnel adj f p 0.05 0.34 0.01 0.00 +ascensionner ascensionner ver 0.01 0.07 0.01 0.00 inf; +ascensions ascension nom f p 3.87 8.04 0.22 0.34 +ascite ascite nom f s 0.04 0.00 0.04 0.00 +asclépias asclépias nom m 0.01 0.14 0.01 0.14 +ascorbique ascorbique adj m s 0.01 0.00 0.01 0.00 +ascot ascot nom s 0.03 0.00 0.03 0.00 +ascèse ascèse nom f s 0.00 1.35 0.00 1.28 +ascèses ascèse nom f p 0.00 1.35 0.00 0.07 +ascète ascète nom s 0.06 0.74 0.02 0.54 +ascètes ascète nom p 0.06 0.74 0.04 0.20 +ascétique ascétique adj s 0.65 1.22 0.11 0.88 +ascétiques ascétique adj p 0.65 1.22 0.54 0.34 +ascétisme ascétisme nom m s 0.14 0.74 0.14 0.74 +asdic asdic nom m s 0.10 0.07 0.10 0.07 +ase as nom_sup f s 18.80 6.62 0.02 0.20 +asepsie asepsie nom f s 0.00 0.07 0.00 0.07 +aseptique aseptique adj s 0.01 0.27 0.01 0.20 +aseptiques aseptique adj p 0.01 0.27 0.00 0.07 +aseptisant aseptiser ver 0.04 0.07 0.01 0.00 par:pre; +aseptisation aseptisation nom f s 0.00 0.14 0.00 0.14 +aseptisé aseptisé adj m s 0.14 0.68 0.09 0.34 +aseptisée aseptisé adj f s 0.14 0.68 0.02 0.14 +aseptisées aseptisé adj f p 0.14 0.68 0.00 0.07 +aseptisés aseptisé adj m p 0.14 0.68 0.03 0.14 +asexualité asexualité nom f s 0.01 0.00 0.01 0.00 +asexuelle asexuel adj f s 0.02 0.00 0.02 0.00 +asexué asexué adj m s 0.33 0.95 0.13 0.14 +asexuée asexué adj f s 0.33 0.95 0.12 0.54 +asexuées asexué adj f p 0.33 0.95 0.02 0.14 +asexués asexué adj m p 0.33 0.95 0.07 0.14 +ashanti ashanti nom s 0.00 0.07 0.00 0.07 +ashkénaze ashkénaze nom s 0.00 0.27 0.00 0.07 +ashkénazes ashkénaze nom p 0.00 0.27 0.00 0.20 +ashram ashram nom m s 0.16 0.07 0.16 0.07 +asiate asiate adj s 0.01 0.47 0.01 0.47 +asiatique asiatique adj s 3.00 2.77 2.46 1.82 +asiatiques asiatique nom p 1.30 0.74 0.69 0.47 +asiatisé asiatiser ver m s 0.00 0.07 0.00 0.07 par:pas; +asilaire asilaire adj m s 0.00 0.07 0.00 0.07 +asile asile nom m s 26.56 13.58 25.52 11.55 +asiles asile nom m p 26.56 13.58 1.04 2.03 +asociabilité asociabilité nom f s 0.01 0.07 0.01 0.07 +asocial asocial adj m s 0.40 0.74 0.07 0.54 +asociale asocial adj f s 0.40 0.74 0.03 0.00 +asociales asocial adj f p 0.40 0.74 0.03 0.07 +asociaux asocial adj m p 0.40 0.74 0.28 0.14 +asparagus asparagus nom m 0.01 0.41 0.01 0.41 +aspartam aspartam nom m s 0.07 0.00 0.07 0.00 +aspartame aspartame nom m s 0.01 0.00 0.01 0.00 +aspartique aspartique adj m s 0.01 0.00 0.01 0.00 +aspect aspect nom m s 12.78 41.28 9.88 36.01 +aspects aspect nom m p 12.78 41.28 2.90 5.27 +asperge asperge nom f s 1.74 8.65 0.71 5.88 +aspergea asperger ver 2.48 7.23 0.00 0.74 ind:pas:3s; +aspergeaient asperger ver 2.48 7.23 0.00 0.34 ind:imp:3p; +aspergeait asperger ver 2.48 7.23 0.07 0.61 ind:imp:3s; +aspergeant asperger ver 2.48 7.23 0.03 0.61 par:pre; +aspergent asperger ver 2.48 7.23 0.16 0.07 ind:pre:3p; +asperger asperger ver 2.48 7.23 0.79 1.28 inf; +aspergerait asperger ver 2.48 7.23 0.00 0.14 cnd:pre:3s; +asperges asperge nom f p 1.74 8.65 1.03 2.77 +aspergez asperger ver 2.48 7.23 0.10 0.07 imp:pre:2p;ind:pre:2p; +aspergillose aspergillose nom f s 0.02 0.00 0.02 0.00 +aspergillus aspergillus nom m 0.07 0.00 0.07 0.00 +aspergèrent asperger ver 2.48 7.23 0.00 0.20 ind:pas:3p; +aspergé asperger ver m s 2.48 7.23 0.61 1.08 par:pas; +aspergée asperger ver f s 2.48 7.23 0.11 0.41 par:pas; +aspergées asperger ver f p 2.48 7.23 0.01 0.14 par:pas; +aspergés asperger ver m p 2.48 7.23 0.06 0.07 par:pas; +aspersion aspersion nom f s 0.06 0.68 0.06 0.47 +aspersions aspersion nom f p 0.06 0.68 0.00 0.20 +asphalte asphalte nom m s 1.40 6.89 1.40 6.89 +asphalter asphalter ver 0.12 0.47 0.01 0.00 inf; +asphalté asphalter ver m s 0.12 0.47 0.01 0.14 par:pas; +asphaltée asphalter ver f s 0.12 0.47 0.10 0.14 par:pas; +asphaltées asphalter ver f p 0.12 0.47 0.00 0.07 par:pas; +asphaltés asphalter ver m p 0.12 0.47 0.00 0.07 par:pas; +asphodèle asphodèle nom m s 0.03 0.61 0.02 0.14 +asphodèles asphodèle nom m p 0.03 0.61 0.01 0.47 +asphyxia asphyxier ver 1.52 2.91 0.00 0.14 ind:pas:3s; +asphyxiaient asphyxier ver 1.52 2.91 0.01 0.07 ind:imp:3p; +asphyxiait asphyxier ver 1.52 2.91 0.00 0.27 ind:imp:3s; +asphyxiant asphyxiant adj m s 0.03 1.08 0.03 0.47 +asphyxiante asphyxiant adj f s 0.03 1.08 0.00 0.34 +asphyxiants asphyxiant adj m p 0.03 1.08 0.00 0.27 +asphyxie asphyxie nom f s 1.19 1.35 1.19 1.35 +asphyxient asphyxier ver 1.52 2.91 0.17 0.14 ind:pre:3p; +asphyxier asphyxier ver 1.52 2.91 0.39 0.27 inf; +asphyxiera asphyxier ver 1.52 2.91 0.00 0.07 ind:fut:3s; +asphyxié asphyxier ver m s 1.52 2.91 0.67 0.68 par:pas; +asphyxiée asphyxier ver f s 1.52 2.91 0.03 0.27 par:pas; +asphyxiées asphyxié adj f p 0.10 1.08 0.04 0.14 +asphyxiés asphyxier ver m p 1.52 2.91 0.10 0.47 par:pas; +aspi aspi nom s 0.14 0.07 0.14 0.00 +aspic aspic nom m s 0.54 1.08 0.52 0.88 +aspics aspic nom m p 0.54 1.08 0.02 0.20 +aspidistra aspidistra nom m s 0.01 0.41 0.01 0.07 +aspidistras aspidistra nom m p 0.01 0.41 0.00 0.34 +aspira aspirer ver 12.07 28.85 0.03 3.04 ind:pas:3s; +aspirai aspirer ver 12.07 28.85 0.00 0.27 ind:pas:1s; +aspiraient aspirer ver 12.07 28.85 0.02 0.88 ind:imp:3p; +aspirais aspirer ver 12.07 28.85 0.32 1.49 ind:imp:1s; +aspirait aspirer ver 12.07 28.85 0.25 5.27 ind:imp:3s; +aspirant aspirant nom m s 1.35 1.82 1.11 0.95 +aspirante aspirant adj f s 1.13 1.15 0.36 0.07 +aspirantes aspirant adj f p 1.13 1.15 0.02 0.07 +aspirants aspirant nom m p 1.35 1.82 0.23 0.88 +aspirateur aspirateur nom m s 4.52 3.31 4.33 3.04 +aspirateurs_traîneaux aspirateurs_traîneaux nom m p 0.00 0.07 0.00 0.07 +aspirateurs aspirateur nom m p 4.52 3.31 0.19 0.27 +aspiration aspiration nom f s 3.99 6.22 2.49 2.97 +aspirations aspiration nom f p 3.99 6.22 1.50 3.24 +aspire aspirer ver 12.07 28.85 4.24 5.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aspirent aspirer ver 12.07 28.85 0.67 1.08 ind:pre:3p; +aspirer aspirer ver 12.07 28.85 2.36 3.92 inf; +aspirera aspirer ver 12.07 28.85 0.08 0.07 ind:fut:3s; +aspireraient aspirer ver 12.07 28.85 0.01 0.07 cnd:pre:3p; +aspirerait aspirer ver 12.07 28.85 0.02 0.07 cnd:pre:3s; +aspires aspirer ver 12.07 28.85 0.54 0.07 ind:pre:2s; +aspirez aspirer ver 12.07 28.85 0.47 0.41 imp:pre:2p;ind:pre:2p; +aspiriez aspirer ver 12.07 28.85 0.03 0.07 ind:imp:2p; +aspirine aspirine nom f s 9.18 4.93 8.55 4.53 +aspirines aspirine nom f p 9.18 4.93 0.62 0.41 +aspirions aspirer ver 12.07 28.85 0.02 0.07 ind:imp:1p; +aspirons aspirer ver 12.07 28.85 0.16 0.14 imp:pre:1p;ind:pre:1p; +aspirât aspirer ver 12.07 28.85 0.00 0.07 sub:imp:3s; +aspiré aspirer ver m s 12.07 28.85 2.00 2.70 par:pas; +aspirée aspirer ver f s 12.07 28.85 0.32 1.15 par:pas; +aspirées aspirer ver f p 12.07 28.85 0.07 0.14 par:pas; +aspirés aspirer ver m p 12.07 28.85 0.15 0.41 par:pas; +aspis aspi nom p 0.14 0.07 0.00 0.07 +aspre aspre nom f s 0.00 0.07 0.00 0.07 +aspécifique aspécifique adj s 0.01 0.00 0.01 0.00 +aspérité aspérité nom f s 0.06 2.77 0.00 0.74 +aspérités aspérité nom f p 0.06 2.77 0.06 2.03 +assîmes asseoir ver 322.71 395.27 0.00 0.88 ind:pas:1p; +assît asseoir ver 322.71 395.27 0.00 0.41 sub:imp:3s; +assa_foetida assa_foetida nom f s 0.27 0.00 0.27 0.00 +assagi assagir ver m s 0.42 0.95 0.14 0.27 par:pas; +assagie assagir ver f s 0.42 0.95 0.03 0.07 par:pas; +assagir assagir ver 0.42 0.95 0.15 0.41 inf; +assagirai assagir ver 0.42 0.95 0.01 0.00 ind:fut:1s; +assagis assagir ver 0.42 0.95 0.01 0.00 ind:pre:1s; +assagissant assagir ver 0.42 0.95 0.01 0.00 par:pre; +assagisse assagir ver 0.42 0.95 0.03 0.00 sub:pre:3s; +assagit assagir ver 0.42 0.95 0.04 0.20 ind:pre:3s;ind:pas:3s; +assaillaient assaillir ver 2.84 10.54 0.19 1.08 ind:imp:3p; +assaillait assaillir ver 2.84 10.54 0.00 0.74 ind:imp:3s; +assaillant assaillant nom m s 0.87 3.72 0.60 0.88 +assaillante assaillant adj f s 0.01 0.20 0.01 0.00 +assaillants assaillant nom m p 0.87 3.72 0.27 2.84 +assaille assaillir ver 2.84 10.54 0.41 0.81 ind:pre:1s;ind:pre:3s; +assaillent assaillir ver 2.84 10.54 0.55 1.22 ind:pre:3p; +assailles assaillir ver 2.84 10.54 0.01 0.00 ind:pre:2s; +assailli assaillir ver m s 2.84 10.54 0.81 2.64 par:pas; +assaillie assaillir ver f s 2.84 10.54 0.35 0.41 par:pas; +assaillies assaillir ver f p 2.84 10.54 0.00 0.20 par:pas; +assaillir assaillir ver 2.84 10.54 0.42 1.69 inf; +assaillira assaillir ver 2.84 10.54 0.00 0.07 ind:fut:3s; +assaillirent assaillir ver 2.84 10.54 0.02 0.41 ind:pas:3p; +assaillis assaillir ver m p 2.84 10.54 0.08 0.47 ind:pas:1s;par:pas; +assaillit assaillir ver 2.84 10.54 0.00 0.61 ind:pas:3s; +assaillons assaillir ver 2.84 10.54 0.01 0.00 imp:pre:1p; +assaini assainir ver m s 0.54 1.01 0.18 0.14 par:pas; +assainie assainir ver f s 0.54 1.01 0.03 0.00 par:pas; +assainir assainir ver 0.54 1.01 0.33 0.68 inf; +assainirait assainir ver 0.54 1.01 0.00 0.07 cnd:pre:3s; +assainis assainir ver m p 0.54 1.01 0.00 0.14 ind:pre:1s;par:pas; +assainissement assainissement nom m s 0.26 0.34 0.26 0.34 +assaisonna assaisonner ver 0.36 2.36 0.00 0.14 ind:pas:3s; +assaisonnait assaisonner ver 0.36 2.36 0.01 0.27 ind:imp:3s; +assaisonne assaisonner ver 0.36 2.36 0.01 0.14 imp:pre:2s;ind:pre:3s; +assaisonnement assaisonnement nom m s 0.52 0.41 0.50 0.34 +assaisonnements assaisonnement nom m p 0.52 0.41 0.02 0.07 +assaisonner assaisonner ver 0.36 2.36 0.09 0.61 inf; +assaisonnerait assaisonner ver 0.36 2.36 0.00 0.14 cnd:pre:3s; +assaisonnèrent assaisonner ver 0.36 2.36 0.00 0.07 ind:pas:3p; +assaisonné assaisonner ver m s 0.36 2.36 0.18 0.54 par:pas; +assaisonnée assaisonner ver f s 0.36 2.36 0.06 0.14 par:pas; +assaisonnées assaisonner ver f p 0.36 2.36 0.01 0.07 par:pas; +assaisonnés assaisonner ver m p 0.36 2.36 0.00 0.27 par:pas; +assassin assassin nom m s 55.37 20.34 43.17 14.39 +assassina assassiner ver 30.87 15.27 0.27 0.41 ind:pas:3s; +assassinai assassiner ver 30.87 15.27 0.00 0.07 ind:pas:1s; +assassinaient assassiner ver 30.87 15.27 0.04 0.14 ind:imp:3p; +assassinais assassiner ver 30.87 15.27 0.01 0.00 ind:imp:2s; +assassinait assassiner ver 30.87 15.27 0.09 0.47 ind:imp:3s; +assassinant assassiner ver 30.87 15.27 0.17 0.27 par:pre; +assassinat assassinat nom m s 8.38 12.16 7.26 9.73 +assassinats assassinat nom m p 8.38 12.16 1.13 2.43 +assassine assassiner ver 30.87 15.27 1.32 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assassinent assassiner ver 30.87 15.27 0.36 0.20 ind:pre:3p; +assassiner assassiner ver 30.87 15.27 6.16 4.39 imp:pre:2p;inf; +assassinera assassiner ver 30.87 15.27 0.07 0.00 ind:fut:3s; +assassinerai assassiner ver 30.87 15.27 0.01 0.00 ind:fut:1s; +assassinerais assassiner ver 30.87 15.27 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +assassinerez assassiner ver 30.87 15.27 0.01 0.00 ind:fut:2p; +assassines assassiner ver 30.87 15.27 0.31 0.14 ind:pre:2s; +assassinez assassiner ver 30.87 15.27 0.10 0.00 imp:pre:2p;ind:pre:2p; +assassinons assassiner ver 30.87 15.27 0.01 0.00 imp:pre:1p; +assassins assassin nom m p 55.37 20.34 12.20 5.95 +assassiné assassiner ver m s 30.87 15.27 15.08 5.14 par:pas; +assassinée assassiner ver f s 30.87 15.27 4.88 1.08 par:pas; +assassinées assassiner ver f p 30.87 15.27 0.47 0.14 par:pas; +assassinés assassiner ver m p 30.87 15.27 1.50 1.28 par:pas; +assaut assaut nom m s 12.12 32.16 11.23 27.36 +assauts assaut nom m p 12.12 32.16 0.90 4.80 +assavoir assavoir ver 0.00 0.14 0.00 0.14 inf; +asse asse nom f s 0.66 0.14 0.66 0.14 +asseau asseau nom m s 0.03 0.00 0.03 0.00 +assembla assembler ver 3.86 7.03 0.00 0.20 ind:pas:3s; +assemblage assemblage nom m s 1.01 5.88 0.99 4.86 +assemblages assemblage nom m p 1.01 5.88 0.02 1.01 +assemblaient assembler ver 3.86 7.03 0.02 0.74 ind:imp:3p; +assemblait assembler ver 3.86 7.03 0.02 0.47 ind:imp:3s; +assemblant assembler ver 3.86 7.03 0.04 0.07 par:pre; +assemble assembler ver 3.86 7.03 0.68 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assemblent assembler ver 3.86 7.03 0.61 0.54 ind:pre:3p; +assembler assembler ver 3.86 7.03 1.13 1.55 inf; +assemblera assembler ver 3.86 7.03 0.10 0.00 ind:fut:3s; +assemblerez assembler ver 3.86 7.03 0.01 0.00 ind:fut:2p; +assembleur assembleur nom m s 0.12 0.14 0.01 0.07 +assembleurs assembleur nom m p 0.12 0.14 0.11 0.07 +assemblez assembler ver 3.86 7.03 0.16 0.07 imp:pre:2p;ind:pre:2p; +assemblons assembler ver 3.86 7.03 0.16 0.07 imp:pre:1p;ind:pre:1p; +assemblé assembler ver m s 3.86 7.03 0.48 0.41 par:pas; +assemblée assemblée nom f s 7.34 35.14 7.03 31.08 +assemblées assemblée nom f p 7.34 35.14 0.30 4.05 +assemblés assembler ver m p 3.86 7.03 0.19 0.81 par:pas; +assena assener ver 0.11 5.47 0.00 0.74 ind:pas:3s; +assenai assener ver 0.11 5.47 0.00 0.14 ind:pas:1s; +assenaient assener ver 0.11 5.47 0.00 0.20 ind:imp:3p; +assenais assener ver 0.11 5.47 0.00 0.14 ind:imp:1s; +assenait assener ver 0.11 5.47 0.00 0.41 ind:imp:3s; +assenant assener ver 0.11 5.47 0.00 0.41 par:pre; +assener assener ver 0.11 5.47 0.03 0.74 inf; +assentiment assentiment nom m s 0.17 3.45 0.17 3.38 +assentiments assentiment nom m p 0.17 3.45 0.00 0.07 +assené assener ver m s 0.11 5.47 0.00 0.61 par:pas; +assenée assener ver f s 0.11 5.47 0.00 0.34 par:pas; +assenées assener ver f p 0.11 5.47 0.01 0.20 par:pas; +assenés assener ver m p 0.11 5.47 0.02 0.47 par:pas; +asseoir asseoir ver 322.71 395.27 65.10 66.08 inf; +assermenter assermenter ver 0.16 0.34 0.03 0.00 inf; +assermentez assermenter ver 0.16 0.34 0.02 0.00 imp:pre:2p;ind:pre:2p; +assermenté assermenté adj m s 0.37 0.27 0.32 0.07 +assermentée assermenter ver f s 0.16 0.34 0.02 0.07 par:pas; +assermentés assermenter ver m p 0.16 0.34 0.06 0.00 par:pas; +assertion assertion nom f s 0.10 1.42 0.07 0.54 +assertions assertion nom f p 0.10 1.42 0.04 0.88 +asservi asservir ver m s 1.33 2.36 0.42 0.41 par:pas; +asservie asservir ver f s 1.33 2.36 0.04 0.07 par:pas; +asservies asservir ver f p 1.33 2.36 0.11 0.14 par:pas; +asservir asservir ver 1.33 2.36 0.37 0.88 inf; +asservirai asservir ver 1.33 2.36 0.01 0.00 ind:fut:1s; +asservirait asservir ver 1.33 2.36 0.00 0.07 cnd:pre:3s; +asserviront asservir ver 1.33 2.36 0.01 0.07 ind:fut:3p; +asservis asservir ver m p 1.33 2.36 0.27 0.34 par:pas; +asservissaient asservir ver 1.33 2.36 0.00 0.07 ind:imp:3p; +asservissait asservir ver 1.33 2.36 0.00 0.20 ind:imp:3s; +asservissant asservir ver 1.33 2.36 0.02 0.07 par:pre; +asservissement asservissement nom m s 0.11 1.15 0.11 1.08 +asservissements asservissement nom m p 0.11 1.15 0.00 0.07 +asservissent asservir ver 1.33 2.36 0.05 0.00 ind:pre:3p; +asservit asservir ver 1.33 2.36 0.02 0.07 ind:pre:3s;ind:pas:3s; +assesseur assesseur nom m s 0.73 1.28 0.59 0.54 +assesseurs assesseur nom m p 0.73 1.28 0.14 0.74 +asseyaient asseoir ver 322.71 395.27 0.36 2.77 ind:imp:3p; +asseyais asseoir ver 322.71 395.27 1.25 2.23 ind:imp:1s;ind:imp:2s; +asseyait asseoir ver 322.71 395.27 2.21 11.62 ind:imp:3s; +asseyant asseoir ver 322.71 395.27 0.12 5.81 par:pre; +asseye asseoir ver 322.71 395.27 0.61 0.14 sub:pre:1s;sub:pre:3s; +asseyent asseoir ver 322.71 395.27 0.31 0.81 ind:pre:3p; +asseyes asseoir ver 322.71 395.27 0.21 0.00 sub:pre:2s; +asseyez asseoir ver 322.71 395.27 80.07 7.84 imp:pre:2p;ind:pre:2p; +asseyiez asseoir ver 322.71 395.27 0.04 0.00 ind:imp:2p; +asseyions asseoir ver 322.71 395.27 0.04 0.81 ind:imp:1p; +asseyons asseoir ver 322.71 395.27 4.64 1.69 imp:pre:1p;ind:pre:1p; +assez assez adv_sup 407.75 420.14 407.75 420.14 +assidûment assidûment adv 0.09 1.96 0.09 1.96 +assidu assidu adj m s 0.68 2.91 0.50 1.01 +assidue assidu adj f s 0.68 2.91 0.12 0.95 +assidues assidu adj f p 0.68 2.91 0.03 0.14 +assiduité assiduité nom f s 0.36 1.82 0.19 1.62 +assiduités assiduité nom f p 0.36 1.82 0.17 0.20 +assidus assidu adj m p 0.68 2.91 0.02 0.81 +assied asseoir ver 322.71 395.27 4.74 9.26 ind:pre:3s; +assieds asseoir ver 322.71 395.27 79.85 9.12 imp:pre:2s;ind:pre:1s;ind:pre:2s; +assiette assiette nom f s 21.24 56.62 14.88 36.28 +assiettes assiette nom f p 21.24 56.62 6.36 20.34 +assiettée assiettée nom f s 0.00 0.95 0.00 0.41 +assiettées assiettée nom f p 0.00 0.95 0.00 0.54 +assigna assigner ver 4.25 4.93 0.01 0.27 ind:pas:3s; +assignai assigner ver 4.25 4.93 0.00 0.07 ind:pas:1s; +assignais assigner ver 4.25 4.93 0.00 0.07 ind:imp:1s; +assignait assigner ver 4.25 4.93 0.03 0.74 ind:imp:3s; +assignant assigner ver 4.25 4.93 0.01 0.14 par:pre; +assignation assignation nom f s 1.68 0.47 1.43 0.20 +assignations assignation nom f p 1.68 0.47 0.25 0.27 +assignats assignat nom m p 0.15 0.07 0.15 0.07 +assigne assigner ver 4.25 4.93 0.39 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assignement assignement nom m s 0.01 0.00 0.01 0.00 +assignent assigner ver 4.25 4.93 0.04 0.00 ind:pre:3p; +assigner assigner ver 4.25 4.93 0.68 0.74 inf; +assignera assigner ver 4.25 4.93 0.05 0.00 ind:fut:3s; +assignerai assigner ver 4.25 4.93 0.04 0.00 ind:fut:1s; +assignerait assigner ver 4.25 4.93 0.01 0.07 cnd:pre:3s; +assignerons assigner ver 4.25 4.93 0.05 0.00 ind:fut:1p; +assigneront assigner ver 4.25 4.93 0.03 0.07 ind:fut:3p; +assignes assigner ver 4.25 4.93 0.00 0.07 ind:pre:2s; +assigné assigner ver m s 4.25 4.93 1.88 1.08 par:pas; +assignée assigner ver f s 4.25 4.93 0.43 1.08 par:pas; +assignées assigner ver f p 4.25 4.93 0.09 0.27 par:pas; +assignés assigner ver m p 4.25 4.93 0.52 0.07 par:pas; +assimila assimiler ver 1.36 8.38 0.00 0.14 ind:pas:3s; +assimilable assimilable adj s 0.02 0.54 0.02 0.41 +assimilables assimilable adj p 0.02 0.54 0.00 0.14 +assimilaient assimiler ver 1.36 8.38 0.00 0.07 ind:imp:3p; +assimilais assimiler ver 1.36 8.38 0.01 0.20 ind:imp:1s; +assimilait assimiler ver 1.36 8.38 0.00 0.95 ind:imp:3s; +assimilant assimiler ver 1.36 8.38 0.00 0.41 par:pre; +assimilateurs assimilateur adj m p 0.00 0.07 0.00 0.07 +assimilation assimilation nom f s 0.14 1.49 0.14 1.42 +assimilations assimilation nom f p 0.14 1.49 0.00 0.07 +assimile assimiler ver 1.36 8.38 0.20 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assimilent assimiler ver 1.36 8.38 0.00 0.14 ind:pre:3p; +assimiler assimiler ver 1.36 8.38 0.70 3.04 inf; +assimilerait assimiler ver 1.36 8.38 0.00 0.07 cnd:pre:3s; +assimilez assimiler ver 1.36 8.38 0.04 0.14 imp:pre:2p;ind:pre:2p; +assimilèrent assimiler ver 1.36 8.38 0.01 0.20 ind:pas:3p; +assimilé assimiler ver m s 1.36 8.38 0.35 1.62 par:pas; +assimilée assimiler ver f s 1.36 8.38 0.03 0.34 par:pas; +assimilées assimiler ver f p 1.36 8.38 0.00 0.20 par:pas; +assimilés assimilé nom m p 0.04 0.34 0.03 0.34 +assirent asseoir ver 322.71 395.27 0.04 6.76 ind:pas:3p; +assis asseoir ver m 322.71 395.27 52.34 150.07 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +assise asseoir ver f s 322.71 395.27 15.99 51.69 par:pas; +assises assise nom f p 3.88 9.66 1.88 6.55 +assista assister ver 30.57 62.23 0.13 2.30 ind:pas:3s; +assistai assister ver 30.57 62.23 0.02 2.16 ind:pas:1s; +assistaient assister ver 30.57 62.23 0.36 1.49 ind:imp:3p; +assistais assister ver 30.57 62.23 0.30 2.57 ind:imp:1s;ind:imp:2s; +assistait assister ver 30.57 62.23 0.63 6.01 ind:imp:3s; +assistanat assistanat nom m s 0.00 0.14 0.00 0.14 +assistance assistance nom f s 10.23 20.00 10.20 19.93 +assistances assistance nom f p 10.23 20.00 0.03 0.07 +assistant assistant nom m s 31.93 16.22 15.70 5.14 +assistante assistant nom f s 31.93 16.22 12.34 5.54 +assistantes assistant nom f p 31.93 16.22 0.59 0.95 +assistants assistant nom m p 31.93 16.22 3.30 4.59 +assistas assister ver 30.57 62.23 0.00 0.07 ind:pas:2s; +assiste assister ver 30.57 62.23 4.21 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assistent assister ver 30.57 62.23 0.41 0.95 ind:pre:3p; +assister assister ver 30.57 62.23 12.49 23.18 ind:pre:2p;inf; +assistera assister ver 30.57 62.23 0.85 0.07 ind:fut:3s; +assisterai assister ver 30.57 62.23 0.25 0.27 ind:fut:1s; +assisteraient assister ver 30.57 62.23 0.00 0.27 cnd:pre:3p; +assisterais assister ver 30.57 62.23 0.02 0.07 cnd:pre:1s; +assisterait assister ver 30.57 62.23 0.07 0.34 cnd:pre:3s; +assisteras assister ver 30.57 62.23 0.09 0.07 ind:fut:2s; +assisterez assister ver 30.57 62.23 0.41 0.14 ind:fut:2p; +assisteriez assister ver 30.57 62.23 0.02 0.00 cnd:pre:2p; +assisterons assister ver 30.57 62.23 0.30 0.27 ind:fut:1p; +assisteront assister ver 30.57 62.23 0.15 0.00 ind:fut:3p; +assistez assister ver 30.57 62.23 0.61 0.20 imp:pre:2p;ind:pre:2p; +assistiez assister ver 30.57 62.23 0.52 0.14 ind:imp:2p; +assistions assister ver 30.57 62.23 0.01 0.61 ind:imp:1p; +assistâmes assister ver 30.57 62.23 0.00 0.74 ind:pas:1p; +assistons assister ver 30.57 62.23 0.51 0.34 imp:pre:1p;ind:pre:1p; +assistât assister ver 30.57 62.23 0.00 0.14 sub:imp:3s; +assistèrent assister ver 30.57 62.23 0.05 0.54 ind:pas:3p; +assisté assister ver m s 30.57 62.23 6.91 12.64 par:pas; +assistée assisté adj f s 0.88 0.68 0.33 0.20 +assistées assisté adj f p 0.88 0.68 0.04 0.07 +assistés assisté nom m p 0.39 0.47 0.20 0.20 +assit asseoir ver 322.71 395.27 0.82 48.72 ind:pas:3s; +assiège assiéger ver 1.36 5.81 0.15 0.34 ind:pre:3s; +assiègent assiéger ver 1.36 5.81 0.41 0.61 ind:pre:3p; +assiégea assiéger ver 1.36 5.81 0.00 0.07 ind:pas:3s; +assiégeaient assiéger ver 1.36 5.81 0.01 0.61 ind:imp:3p; +assiégeait assiéger ver 1.36 5.81 0.01 0.47 ind:imp:3s; +assiégeant assiéger ver 1.36 5.81 0.00 0.27 par:pre; +assiégeantes assiégeant adj f p 0.00 0.07 0.00 0.07 +assiégeants assiégeant nom m p 0.04 0.95 0.04 0.74 +assiéger assiéger ver 1.36 5.81 0.09 0.88 inf; +assiégera assiéger ver 1.36 5.81 0.01 0.00 ind:fut:3s; +assiégeraient assiéger ver 1.36 5.81 0.00 0.07 cnd:pre:3p; +assiégé assiéger ver m s 1.36 5.81 0.23 0.47 par:pas; +assiégée assiéger ver f s 1.36 5.81 0.14 1.15 par:pas; +assiégées assiéger ver f p 1.36 5.81 0.02 0.27 par:pas; +assiégés assiéger ver m p 1.36 5.81 0.28 0.61 par:pas; +assiéra asseoir ver 322.71 395.27 0.31 0.07 ind:fut:3s; +assiérai asseoir ver 322.71 395.27 0.33 0.14 ind:fut:1s; +assiérais asseoir ver 322.71 395.27 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +assiérait asseoir ver 322.71 395.27 0.07 0.34 cnd:pre:3s; +assiéras asseoir ver 322.71 395.27 0.02 0.00 ind:fut:2s; +assiérions asseoir ver 322.71 395.27 0.00 0.07 cnd:pre:1p; +assiéront asseoir ver 322.71 395.27 0.19 0.00 ind:fut:3p; +associa associer ver 13.67 14.19 0.12 0.41 ind:pas:3s; +associai associer ver 13.67 14.19 0.00 0.14 ind:pas:1s; +associaient associer ver 13.67 14.19 0.02 0.27 ind:imp:3p; +associais associer ver 13.67 14.19 0.02 0.07 ind:imp:1s; +associait associer ver 13.67 14.19 0.11 1.08 ind:imp:3s; +associant associer ver 13.67 14.19 0.27 0.68 par:pre; +associassent associer ver 13.67 14.19 0.00 0.07 sub:imp:3p; +associatifs associatif adj m p 0.11 0.07 0.01 0.00 +association association nom f s 12.02 10.61 10.49 8.65 +associations association nom f p 12.02 10.61 1.53 1.96 +associative associatif adj f s 0.11 0.07 0.10 0.07 +associe associer ver 13.67 14.19 1.81 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +associent associer ver 13.67 14.19 0.42 0.41 ind:pre:3p; +associer associer ver 13.67 14.19 2.86 4.53 inf; +associera associer ver 13.67 14.19 0.06 0.00 ind:fut:3s; +associerai associer ver 13.67 14.19 0.31 0.07 ind:fut:1s; +associeraient associer ver 13.67 14.19 0.01 0.07 cnd:pre:3p; +associerais associer ver 13.67 14.19 0.04 0.07 cnd:pre:1s; +associerait associer ver 13.67 14.19 0.01 0.14 cnd:pre:3s; +associeront associer ver 13.67 14.19 0.00 0.07 ind:fut:3p; +associez associer ver 13.67 14.19 0.35 0.07 imp:pre:2p;ind:pre:2p; +associions associer ver 13.67 14.19 0.00 0.07 ind:imp:1p; +associons associer ver 13.67 14.19 0.19 0.00 imp:pre:1p;ind:pre:1p; +associât associer ver 13.67 14.19 0.00 0.14 sub:imp:3s; +associèrent associer ver 13.67 14.19 0.01 0.07 ind:pas:3p; +associé associé nom m s 22.51 4.12 14.18 2.09 +associée associé nom f s 22.51 4.12 1.72 0.14 +associées associer ver f p 13.67 14.19 0.38 0.27 par:pas; +associés associé nom m p 22.51 4.12 6.46 1.89 +assoie asseoir ver 322.71 395.27 1.14 0.14 sub:pre:1s;sub:pre:3s; +assoient asseoir ver 322.71 395.27 0.96 0.88 ind:pre:3p; +assoies asseoir ver 322.71 395.27 0.26 0.07 sub:pre:2s; +assoiffent assoiffer ver 2.19 2.91 0.00 0.07 ind:pre:3p; +assoiffer assoiffer ver 2.19 2.91 0.02 0.00 inf; +assoiffez assoiffer ver 2.19 2.91 0.01 0.00 imp:pre:2p; +assoiffé assoiffer ver m s 2.19 2.91 0.81 1.08 par:pas; +assoiffée assoiffer ver f s 2.19 2.91 0.38 0.54 par:pas; +assoiffées assoiffer ver f p 2.19 2.91 0.09 0.27 par:pas; +assoiffés assoiffer ver m p 2.19 2.91 0.88 0.95 par:pas; +assoira asseoir ver 322.71 395.27 0.25 0.00 ind:fut:3s; +assoirai asseoir ver 322.71 395.27 0.15 0.27 ind:fut:1s; +assoiraient asseoir ver 322.71 395.27 0.00 0.07 cnd:pre:3p; +assoirais asseoir ver 322.71 395.27 0.14 0.00 cnd:pre:1s; +assoirait asseoir ver 322.71 395.27 0.01 0.14 cnd:pre:3s; +assoiras asseoir ver 322.71 395.27 0.14 0.00 ind:fut:2s; +assoiront asseoir ver 322.71 395.27 0.01 0.20 ind:fut:3p; +assois asseoir ver 322.71 395.27 4.94 2.64 imp:pre:2s;ind:pre:1s;ind:pre:2s; +assoit asseoir ver 322.71 395.27 3.31 6.42 ind:pre:3s; +assombrît assombrir ver 1.83 13.78 0.00 0.07 sub:imp:3s; +assombri assombrir ver m s 1.83 13.78 0.33 2.43 par:pas; +assombrie assombrir ver f s 1.83 13.78 0.16 1.08 par:pas; +assombries assombrir ver f p 1.83 13.78 0.01 0.61 par:pas; +assombrir assombrir ver 1.83 13.78 0.34 1.62 inf; +assombrira assombrir ver 1.83 13.78 0.04 0.07 ind:fut:3s; +assombrirent assombrir ver 1.83 13.78 0.00 0.20 ind:pas:3p; +assombris assombrir ver m p 1.83 13.78 0.03 0.81 ind:pre:2s;par:pas; +assombrissaient assombrir ver 1.83 13.78 0.01 0.27 ind:imp:3p; +assombrissait assombrir ver 1.83 13.78 0.03 2.43 ind:imp:3s; +assombrissant assombrir ver 1.83 13.78 0.00 0.34 par:pre; +assombrissement assombrissement nom m s 0.00 0.14 0.00 0.14 +assombrissent assombrir ver 1.83 13.78 0.19 0.20 ind:pre:3p; +assombrit assombrir ver 1.83 13.78 0.69 3.65 ind:pre:3s;ind:pas:3s; +assomma assommer ver 13.09 17.23 0.00 0.68 ind:pas:3s; +assommaient assommer ver 13.09 17.23 0.00 0.34 ind:imp:3p; +assommait assommer ver 13.09 17.23 0.14 1.35 ind:imp:3s; +assommant assommant adj m s 1.50 3.04 1.06 1.15 +assommante assommant adj f s 1.50 3.04 0.26 0.47 +assommantes assommant adj f p 1.50 3.04 0.09 0.81 +assommants assommant adj m p 1.50 3.04 0.09 0.61 +assomme assommer ver 13.09 17.23 3.17 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assomment assommer ver 13.09 17.23 0.25 0.41 ind:pre:3p; +assommer assommer ver 13.09 17.23 3.45 3.51 inf; +assommera assommer ver 13.09 17.23 0.07 0.07 ind:fut:3s; +assommerai assommer ver 13.09 17.23 0.03 0.00 ind:fut:1s; +assommeraient assommer ver 13.09 17.23 0.10 0.07 cnd:pre:3p; +assommerais assommer ver 13.09 17.23 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +assommerait assommer ver 13.09 17.23 0.05 0.07 cnd:pre:3s; +assommeras assommer ver 13.09 17.23 0.05 0.00 ind:fut:2s; +assommes assommer ver 13.09 17.23 0.35 0.07 ind:pre:2s; +assommeur assommeur nom m s 0.01 0.14 0.01 0.14 +assommez assommer ver 13.09 17.23 0.62 0.07 imp:pre:2p;ind:pre:2p; +assommiez assommer ver 13.09 17.23 0.02 0.07 ind:imp:2p; +assommoir assommoir nom m s 0.02 0.68 0.02 0.54 +assommoirs assommoir nom m p 0.02 0.68 0.00 0.14 +assommons assommer ver 13.09 17.23 0.12 0.27 imp:pre:1p; +assommât assommer ver 13.09 17.23 0.00 0.07 sub:imp:3s; +assommé assommer ver m s 13.09 17.23 3.54 4.80 par:pas; +assommée assommer ver f s 13.09 17.23 0.72 1.69 par:pas; +assommées assommer ver f p 13.09 17.23 0.01 0.14 par:pas; +assommés assommer ver m p 13.09 17.23 0.24 1.22 par:pas; +assomption assomption nom f s 0.03 0.47 0.00 0.41 +assomptions assomption nom f p 0.03 0.47 0.03 0.07 +assonance assonance nom f s 0.01 0.27 0.00 0.07 +assonances assonance nom f p 0.01 0.27 0.01 0.20 +assonants assonant adj m p 0.00 0.07 0.00 0.07 +assorti assorti adj m s 1.71 4.05 0.53 0.95 +assortie assortir ver f s 2.00 5.95 0.45 1.22 par:pas; +assorties assortir ver f p 2.00 5.95 0.42 0.95 par:pas; +assortiment assortiment nom m s 1.12 2.23 1.09 2.16 +assortiments assortiment nom m p 1.12 2.23 0.03 0.07 +assortir assortir ver 2.00 5.95 0.16 0.54 inf; +assortirai assortir ver 2.00 5.95 0.01 0.00 ind:fut:1s; +assortirais assortir ver 2.00 5.95 0.01 0.00 cnd:pre:1s; +assortis assorti adj m p 1.71 4.05 0.68 1.69 +assortissaient assortir ver 2.00 5.95 0.00 0.14 ind:imp:3p; +assortissais assortir ver 2.00 5.95 0.00 0.07 ind:imp:1s; +assortissait assortir ver 2.00 5.95 0.10 0.07 ind:imp:3s; +assortissant assortir ver 2.00 5.95 0.00 0.07 par:pre; +assortissent assortir ver 2.00 5.95 0.00 0.07 ind:pre:3p; +assortit assortir ver 2.00 5.95 0.00 0.27 ind:pre:3s;ind:pas:3s; +assoté assoter ver m s 0.00 0.14 0.00 0.07 par:pas; +assotés assoter ver m p 0.00 0.14 0.00 0.07 par:pas; +assoupi assoupir ver m s 2.18 11.01 0.88 2.36 par:pas; +assoupie assoupir ver f s 2.18 11.01 0.25 1.22 par:pas; +assoupies assoupir ver f p 2.18 11.01 0.14 0.00 par:pas; +assoupir assoupir ver 2.18 11.01 0.40 3.24 inf; +assoupira assoupir ver 2.18 11.01 0.01 0.00 ind:fut:3s; +assoupirais assoupir ver 2.18 11.01 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +assoupis assoupir ver m p 2.18 11.01 0.34 1.01 ind:pre:1s;ind:pre:2s;par:pas; +assoupissaient assoupir ver 2.18 11.01 0.00 0.34 ind:imp:3p; +assoupissais assoupir ver 2.18 11.01 0.00 0.14 ind:imp:1s; +assoupissait assoupir ver 2.18 11.01 0.00 0.74 ind:imp:3s; +assoupissant assoupir ver 2.18 11.01 0.00 0.07 par:pre; +assoupisse assoupir ver 2.18 11.01 0.02 0.14 sub:pre:1s;sub:pre:3s; +assoupissement assoupissement nom m s 0.10 1.01 0.10 1.01 +assoupissent assoupir ver 2.18 11.01 0.02 0.27 ind:pre:3p; +assoupit assoupir ver 2.18 11.01 0.03 1.42 ind:pre:3s;ind:pas:3s; +assoupli assouplir ver m s 0.51 2.23 0.02 0.20 par:pas; +assouplie assouplir ver f s 0.51 2.23 0.00 0.14 par:pas; +assouplies assouplir ver f p 0.51 2.23 0.00 0.07 par:pas; +assouplir assouplir ver 0.51 2.23 0.42 0.88 inf; +assouplira assouplir ver 0.51 2.23 0.02 0.00 ind:fut:3s; +assouplis assouplir ver m p 0.51 2.23 0.01 0.07 imp:pre:2s;par:pas; +assouplissaient assouplir ver 0.51 2.23 0.01 0.07 ind:imp:3p; +assouplissait assouplir ver 0.51 2.23 0.00 0.34 ind:imp:3s; +assouplissant assouplissant nom m s 0.03 0.00 0.03 0.00 +assouplissement assouplissement nom m s 0.09 0.54 0.04 0.54 +assouplissements assouplissement nom m p 0.09 0.54 0.04 0.00 +assouplissent assouplir ver 0.51 2.23 0.00 0.14 ind:pre:3p; +assouplit assouplir ver 0.51 2.23 0.03 0.34 ind:pre:3s;ind:pas:3s; +assourdi assourdir ver m s 0.17 7.70 0.02 2.91 par:pas; +assourdie assourdir ver f s 0.17 7.70 0.02 0.88 par:pas; +assourdies assourdir ver f p 0.17 7.70 0.00 0.27 par:pas; +assourdir assourdir ver 0.17 7.70 0.01 0.34 inf; +assourdiraient assourdir ver 0.17 7.70 0.00 0.07 cnd:pre:3p; +assourdiras assourdir ver 0.17 7.70 0.00 0.07 ind:fut:2s; +assourdirent assourdir ver 0.17 7.70 0.00 0.07 ind:pas:3p; +assourdis assourdir ver m p 0.17 7.70 0.04 0.88 ind:pre:1s;ind:pre:2s;par:pas; +assourdissaient assourdir ver 0.17 7.70 0.00 0.27 ind:imp:3p; +assourdissait assourdir ver 0.17 7.70 0.01 0.41 ind:imp:3s; +assourdissant assourdissant adj m s 0.73 6.49 0.57 4.86 +assourdissante assourdissant adj f s 0.73 6.49 0.02 0.81 +assourdissantes assourdissant adj f p 0.73 6.49 0.01 0.41 +assourdissants assourdissant adj m p 0.73 6.49 0.12 0.41 +assourdissement assourdissement nom m s 0.00 0.14 0.00 0.14 +assourdissent assourdir ver 0.17 7.70 0.01 0.34 ind:pre:3p; +assourdit assourdir ver 0.17 7.70 0.02 0.61 ind:pre:3s;ind:pas:3s; +assouvi assouvir ver m s 2.15 5.41 0.18 0.54 par:pas; +assouvie assouvir ver f s 2.15 5.41 0.28 0.54 par:pas; +assouvies assouvir ver f p 2.15 5.41 0.01 0.14 par:pas; +assouvir assouvir ver 2.15 5.41 0.96 2.57 inf; +assouvira assouvir ver 2.15 5.41 0.00 0.20 ind:fut:3s; +assouvirai assouvir ver 2.15 5.41 0.00 0.07 ind:fut:1s; +assouvirait assouvir ver 2.15 5.41 0.00 0.07 cnd:pre:3s; +assouviras assouvir ver 2.15 5.41 0.01 0.07 ind:fut:2s; +assouvirent assouvir ver 2.15 5.41 0.01 0.00 ind:pas:3p; +assouvis assouvir ver m p 2.15 5.41 0.27 0.34 ind:pre:1s;ind:pre:2s;par:pas; +assouvissaient assouvir ver 2.15 5.41 0.01 0.00 ind:imp:3p; +assouvissait assouvir ver 2.15 5.41 0.02 0.34 ind:imp:3s; +assouvissant assouvir ver 2.15 5.41 0.00 0.07 par:pre; +assouvisse assouvir ver 2.15 5.41 0.00 0.07 sub:pre:3s; +assouvissement assouvissement nom m s 0.03 1.22 0.03 1.22 +assouvissent assouvir ver 2.15 5.41 0.38 0.07 ind:pre:3p; +assouvit assouvir ver 2.15 5.41 0.02 0.34 ind:pre:3s;ind:pas:3s; +assoyait asseoir ver 322.71 395.27 0.00 0.07 ind:imp:3s; +assoyez asseoir ver 322.71 395.27 0.87 0.00 imp:pre:2p;ind:pre:2p; +assoyons asseoir ver 322.71 395.27 0.00 0.07 ind:pre:1p; +assèche assécher ver 2.48 3.58 0.48 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assèchement assèchement nom m s 0.23 0.47 0.23 0.47 +assèchent assécher ver 2.48 3.58 0.29 0.00 ind:pre:3p; +assène assener ver 0.11 5.47 0.03 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assènent assener ver 0.11 5.47 0.00 0.20 ind:pre:3p; +assènerai assener ver 0.11 5.47 0.01 0.00 ind:fut:1s; +assécha assécher ver 2.48 3.58 0.00 0.14 ind:pas:3s; +asséchaient assécher ver 2.48 3.58 0.01 0.07 ind:imp:3p; +asséchais assécher ver 2.48 3.58 0.01 0.07 ind:imp:1s; +asséchait assécher ver 2.48 3.58 0.02 0.41 ind:imp:3s; +asséchant assécher ver 2.48 3.58 0.01 0.14 par:pre; +assécher assécher ver 2.48 3.58 0.84 0.81 inf; +assécherait assécher ver 2.48 3.58 0.00 0.07 cnd:pre:3s; +asséchez assécher ver 2.48 3.58 0.02 0.00 imp:pre:2p;ind:pre:2p; +asséchons assécher ver 2.48 3.58 0.14 0.00 imp:pre:1p; +asséché assécher ver m s 2.48 3.58 0.43 0.61 par:pas; +asséchée assécher ver f s 2.48 3.58 0.11 0.47 par:pas; +asséchées assécher ver f p 2.48 3.58 0.01 0.14 par:pas; +asséchés assécher ver m p 2.48 3.58 0.11 0.14 par:pas; +assujetti assujettir ver m s 0.15 3.24 0.04 0.81 par:pas; +assujettie assujettir ver f s 0.15 3.24 0.03 0.20 par:pas; +assujetties assujettir ver f p 0.15 3.24 0.01 0.20 par:pas; +assujettir assujettir ver 0.15 3.24 0.04 1.01 inf; +assujettiraient assujettir ver 0.15 3.24 0.00 0.07 cnd:pre:3p; +assujettis assujetti adj m p 0.05 0.27 0.03 0.14 +assujettissaient assujettir ver 0.15 3.24 0.00 0.07 ind:imp:3p; +assujettissait assujettir ver 0.15 3.24 0.00 0.07 ind:imp:3s; +assujettissant assujettissant adj m s 0.01 0.00 0.01 0.00 +assujettisse assujettir ver 0.15 3.24 0.01 0.00 sub:pre:3s; +assujettissement assujettissement nom m s 0.03 0.34 0.03 0.34 +assujettissent assujettir ver 0.15 3.24 0.00 0.07 ind:pre:3p; +assujettit assujettir ver 0.15 3.24 0.00 0.47 ind:pre:3s;ind:pas:3s; +assuma assumer ver 12.83 14.80 0.03 0.27 ind:pas:3s; +assumai assumer ver 12.83 14.80 0.00 0.07 ind:pas:1s; +assumaient assumer ver 12.83 14.80 0.00 0.27 ind:imp:3p; +assumais assumer ver 12.83 14.80 0.04 0.07 ind:imp:1s; +assumait assumer ver 12.83 14.80 0.17 1.96 ind:imp:3s; +assumant assumer ver 12.83 14.80 0.11 0.41 par:pre; +assume assumer ver 12.83 14.80 4.17 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assument assumer ver 12.83 14.80 0.33 0.47 ind:pre:3p; +assumer assumer ver 12.83 14.80 5.70 6.35 inf; +assumera assumer ver 12.83 14.80 0.20 0.00 ind:fut:3s; +assumerai assumer ver 12.83 14.80 0.36 0.07 ind:fut:1s; +assumeraient assumer ver 12.83 14.80 0.00 0.07 cnd:pre:3p; +assumerais assumer ver 12.83 14.80 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +assumerait assumer ver 12.83 14.80 0.04 0.20 cnd:pre:3s; +assumeras assumer ver 12.83 14.80 0.14 0.00 ind:fut:2s; +assumerez assumer ver 12.83 14.80 0.09 0.07 ind:fut:2p; +assumerions assumer ver 12.83 14.80 0.01 0.00 cnd:pre:1p; +assumerons assumer ver 12.83 14.80 0.00 0.07 ind:fut:1p; +assumez assumer ver 12.83 14.80 0.38 0.14 imp:pre:2p;ind:pre:2p; +assumions assumer ver 12.83 14.80 0.01 0.00 ind:imp:1p; +assumons assumer ver 12.83 14.80 0.48 0.27 imp:pre:1p;ind:pre:1p; +assumât assumer ver 12.83 14.80 0.00 0.07 sub:imp:3s; +assumèrent assumer ver 12.83 14.80 0.00 0.07 ind:pas:3p; +assumé assumer ver m s 12.83 14.80 0.53 1.42 par:pas; +assumée assumer ver f s 12.83 14.80 0.01 0.47 par:pas; +assumées assumer ver f p 12.83 14.80 0.00 0.20 par:pas; +assumés assumer ver m p 12.83 14.80 0.02 0.07 par:pas; +asséna asséner ver 0.14 0.47 0.01 0.07 ind:pas:3s; +assénait asséner ver 0.14 0.47 0.01 0.07 ind:imp:3s; +asséner asséner ver 0.14 0.47 0.06 0.14 inf; +asséné asséner ver m s 0.14 0.47 0.05 0.14 par:pas; +assénées asséner ver f p 0.14 0.47 0.00 0.07 par:pas; +assura assurer ver 107.63 126.55 0.22 11.62 ind:pas:3s; +assurable assurable adj m s 0.01 0.00 0.01 0.00 +assurage assurage nom m s 0.02 0.00 0.02 0.00 +assurai assurer ver 107.63 126.55 0.01 1.42 ind:pas:1s; +assuraient assurer ver 107.63 126.55 0.11 3.38 ind:imp:3p; +assurais assurer ver 107.63 126.55 0.59 0.54 ind:imp:1s;ind:imp:2s; +assurait assurer ver 107.63 126.55 0.85 11.49 ind:imp:3s; +assurance_accidents assurance_accidents nom f s 0.10 0.00 0.10 0.00 +assurance_chômage assurance_chômage nom f s 0.01 0.00 0.01 0.00 +assurance_maladie assurance_maladie nom f s 0.04 0.07 0.04 0.07 +assurance_vie assurance_vie nom f s 1.32 0.27 1.26 0.27 +assurance assurance nom f s 29.80 33.24 24.30 25.14 +assurance_vie assurance_vie nom f p 1.32 0.27 0.06 0.00 +assurances assurance nom f p 29.80 33.24 5.50 8.11 +assurant assurer ver 107.63 126.55 0.43 5.27 par:pre; +assurassent assurer ver 107.63 126.55 0.00 0.07 sub:imp:3p; +assure assurer ver 107.63 126.55 43.77 27.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assurent assurer ver 107.63 126.55 1.89 2.43 ind:pre:3p; +assurer assurer ver 107.63 126.55 34.84 38.85 inf; +assurera assurer ver 107.63 126.55 0.79 1.15 ind:fut:3s; +assurerai assurer ver 107.63 126.55 1.69 0.00 ind:fut:1s; +assureraient assurer ver 107.63 126.55 0.03 0.54 cnd:pre:3p; +assurerais assurer ver 107.63 126.55 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +assurerait assurer ver 107.63 126.55 0.11 1.08 cnd:pre:3s; +assureras assurer ver 107.63 126.55 0.09 0.07 ind:fut:2s; +assurerez assurer ver 107.63 126.55 0.14 0.07 ind:fut:2p; +assurerons assurer ver 107.63 126.55 0.24 0.00 ind:fut:1p; +assureront assurer ver 107.63 126.55 0.21 0.20 ind:fut:3p; +assures assurer ver 107.63 126.55 2.57 0.34 ind:pre:2s;sub:pre:2s; +assureur_conseil assureur_conseil nom m s 0.00 0.07 0.00 0.07 +assureur assureur nom m s 1.93 0.41 1.48 0.20 +assureurs assureur nom m p 1.93 0.41 0.45 0.20 +assurez assurer ver 107.63 126.55 6.16 0.54 imp:pre:2p;ind:pre:2p; +assuriez assurer ver 107.63 126.55 0.10 0.07 ind:imp:2p; +assurions assurer ver 107.63 126.55 0.03 0.14 ind:imp:1p; +assurons assurer ver 107.63 126.55 0.80 0.07 imp:pre:1p;ind:pre:1p; +assurât assurer ver 107.63 126.55 0.00 0.41 sub:imp:3s; +assurèrent assurer ver 107.63 126.55 0.00 0.68 ind:pas:3p; +assuré assurer ver m s 107.63 126.55 8.40 12.91 par:pas; +assurée assurer ver f s 107.63 126.55 1.94 3.51 par:pas; +assurées assurer ver f p 107.63 126.55 0.14 1.01 par:pas; +assurément assurément adv 3.19 10.41 3.19 10.41 +assurés assurer ver m p 107.63 126.55 1.35 1.55 par:pas; +assuétude assuétude nom f s 0.01 0.00 0.01 0.00 +assyrien assyrien adj m s 0.01 0.27 0.01 0.00 +assyrienne assyrien adj f s 0.01 0.27 0.00 0.14 +assyriennes assyrien adj f p 0.01 0.27 0.00 0.07 +assyriens assyrien nom m p 0.04 0.14 0.03 0.14 +assyro assyro adv 0.00 0.20 0.00 0.20 +astarté astarté nom f s 0.01 0.07 0.01 0.07 +aste aste nom f s 0.02 0.00 0.02 0.00 +aster aster nom m s 0.42 0.47 0.42 0.00 +asters aster nom m p 0.42 0.47 0.00 0.47 +asthmatique asthmatique adj s 1.37 1.22 1.20 1.15 +asthmatiques asthmatique adj p 1.37 1.22 0.18 0.07 +asthme asthme nom m s 3.14 3.18 3.13 3.11 +asthmes asthme nom m p 3.14 3.18 0.01 0.07 +asthénie asthénie nom f s 0.02 0.47 0.02 0.07 +asthénies asthénie nom f p 0.02 0.47 0.00 0.41 +asti asti nom m s 0.01 0.20 0.01 0.20 +astic astic nom m s 0.00 0.07 0.00 0.07 +asticot asticot nom m s 2.18 2.23 0.95 0.88 +asticota asticoter ver 0.58 1.89 0.00 0.07 ind:pas:3s; +asticotages asticotage nom m p 0.00 0.07 0.00 0.07 +asticotaient asticoter ver 0.58 1.89 0.01 0.07 ind:imp:3p; +asticotais asticoter ver 0.58 1.89 0.01 0.14 ind:imp:1s; +asticotait asticoter ver 0.58 1.89 0.01 0.20 ind:imp:3s; +asticotant asticoter ver 0.58 1.89 0.00 0.07 par:pre; +asticote asticoter ver 0.58 1.89 0.11 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +asticotent asticoter ver 0.58 1.89 0.04 0.00 ind:pre:3p; +asticoter asticoter ver 0.58 1.89 0.24 0.74 inf;; +asticotez asticoter ver 0.58 1.89 0.03 0.00 imp:pre:2p; +asticots asticot nom m p 2.18 2.23 1.23 1.35 +asticoté asticoter ver m s 0.58 1.89 0.13 0.34 par:pas; +asticotés asticoter ver m p 0.58 1.89 0.00 0.07 par:pas; +astigmate astigmate adj m s 0.06 0.00 0.06 0.00 +astigmatisme astigmatisme nom m s 0.00 0.07 0.00 0.07 +astiqua astiquer ver 2.98 9.80 0.00 0.20 ind:pas:3s; +astiquage astiquage nom m s 0.01 0.47 0.01 0.47 +astiquaient astiquer ver 2.98 9.80 0.01 0.07 ind:imp:3p; +astiquais astiquer ver 2.98 9.80 0.06 0.00 ind:imp:1s; +astiquait astiquer ver 2.98 9.80 0.03 1.15 ind:imp:3s; +astiquant astiquer ver 2.98 9.80 0.00 0.41 par:pre; +astique astiquer ver 2.98 9.80 1.04 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +astiquent astiquer ver 2.98 9.80 0.01 0.27 ind:pre:3p; +astiquer astiquer ver 2.98 9.80 0.90 2.23 inf; +astiquera astiquer ver 2.98 9.80 0.12 0.00 ind:fut:3s; +astiquerai astiquer ver 2.98 9.80 0.02 0.07 ind:fut:1s; +astiquerons astiquer ver 2.98 9.80 0.00 0.07 ind:fut:1p; +astiqueur astiqueur nom m s 0.01 0.00 0.01 0.00 +astiquez astiquer ver 2.98 9.80 0.12 0.07 imp:pre:2p;ind:pre:2p; +astiqué astiquer ver m s 2.98 9.80 0.48 1.49 par:pas; +astiquée astiquer ver f s 2.98 9.80 0.02 1.01 par:pas; +astiquées astiquer ver f p 2.98 9.80 0.16 0.47 par:pas; +astiqués astiquer ver m p 2.98 9.80 0.01 1.35 par:pas; +astragale astragale nom m s 0.00 0.47 0.00 0.34 +astragales astragale nom m p 0.00 0.47 0.00 0.14 +astrakan astrakan nom m s 0.14 1.69 0.14 1.69 +astral astral adj m s 2.02 1.69 0.78 1.15 +astrale astral adj f s 2.02 1.69 0.66 0.41 +astrales astral adj f p 2.02 1.69 0.55 0.14 +astraux astral adj m p 2.02 1.69 0.04 0.00 +astre astre nom m s 3.13 12.30 1.89 4.32 +astreignais astreindre ver 0.09 3.78 0.00 0.20 ind:imp:1s; +astreignait astreindre ver 0.09 3.78 0.01 1.01 ind:imp:3s; +astreignant astreignant adj m s 0.11 0.34 0.09 0.20 +astreignante astreignant adj f s 0.11 0.34 0.01 0.00 +astreignantes astreignant adj f p 0.11 0.34 0.01 0.14 +astreigne astreindre ver 0.09 3.78 0.00 0.07 sub:pre:3s; +astreignions astreindre ver 0.09 3.78 0.00 0.07 ind:imp:1p; +astreignis astreindre ver 0.09 3.78 0.00 0.07 ind:pas:1s; +astreignit astreindre ver 0.09 3.78 0.00 0.20 ind:pas:3s; +astreindre astreindre ver 0.09 3.78 0.02 0.68 inf; +astreins astreindre ver 0.09 3.78 0.00 0.14 ind:pre:1s; +astreint astreindre ver m s 0.09 3.78 0.04 0.81 ind:pre:3s;par:pas; +astreinte astreinte nom f s 0.03 0.07 0.02 0.07 +astreintes astreinte nom f p 0.03 0.07 0.01 0.00 +astreints astreindre ver m p 0.09 3.78 0.01 0.27 par:pas; +astres astre nom m p 3.13 12.30 1.24 7.97 +astringent astringent adj m s 0.17 0.47 0.16 0.00 +astringente astringent adj f s 0.17 0.47 0.01 0.20 +astringentes astringent adj f p 0.17 0.47 0.00 0.27 +astro astro adv 0.14 0.00 0.14 0.00 +astrochimie astrochimie nom f s 0.04 0.00 0.04 0.00 +astrolabe astrolabe nom m s 0.01 0.14 0.01 0.07 +astrolabes astrolabe nom m p 0.01 0.14 0.00 0.07 +astrologie astrologie nom f s 0.87 0.54 0.87 0.54 +astrologique astrologique adj s 0.48 0.61 0.44 0.14 +astrologiquement astrologiquement adv 0.01 0.00 0.01 0.00 +astrologiques astrologique adj p 0.48 0.61 0.04 0.47 +astrologue astrologue nom s 0.79 1.08 0.39 0.47 +astrologues astrologue nom p 0.79 1.08 0.40 0.61 +astrolâtres astrolâtre nom p 0.00 0.07 0.00 0.07 +astrométrie astrométrie nom f s 0.01 0.00 0.01 0.00 +astronaute astronaute nom s 6.45 0.41 3.71 0.14 +astronautes astronaute nom p 6.45 0.41 2.73 0.27 +astronautique astronautique nom f s 0.05 0.07 0.05 0.07 +astronef astronef nom m s 0.27 0.00 0.27 0.00 +astronome astronome nom s 0.50 1.42 0.30 0.54 +astronomes astronome nom p 0.50 1.42 0.19 0.88 +astronomie astronomie nom f s 0.91 1.01 0.91 1.01 +astronomique astronomique adj s 1.11 1.89 0.92 0.95 +astronomiquement astronomiquement adv 0.02 0.00 0.02 0.00 +astronomiques astronomique adj p 1.11 1.89 0.19 0.95 +astrophore astrophore nom m s 0.00 0.14 0.00 0.14 +astrophysicien astrophysicien nom m s 0.14 0.00 0.12 0.00 +astrophysicienne astrophysicien nom f s 0.14 0.00 0.01 0.00 +astrophysiciens astrophysicien nom m p 0.14 0.00 0.01 0.00 +astrophysique astrophysique nom f s 0.28 0.00 0.28 0.00 +astroport astroport nom m s 0.06 0.00 0.06 0.00 +astroscope astroscope nom m s 0.01 0.00 0.01 0.00 +astuce astuce nom f s 3.36 5.07 2.74 3.58 +astuces astuce nom f p 3.36 5.07 0.62 1.49 +astucieuse astucieux adj f s 3.75 2.36 0.18 0.81 +astucieusement astucieusement adv 0.05 0.41 0.05 0.41 +astucieuses astucieux adj f p 3.75 2.36 0.04 0.27 +astucieux astucieux adj m 3.75 2.36 3.52 1.28 +asturienne asturienne nom f s 0.00 0.07 0.00 0.07 +astérisme astérisme nom m s 0.14 0.00 0.14 0.00 +astérisque astérisque nom m s 0.04 0.34 0.04 0.27 +astérisques astérisque nom m p 0.04 0.34 0.00 0.07 +astéroïde astéroïde nom m s 2.28 0.07 1.52 0.00 +astéroïdes astéroïde nom m p 2.28 0.07 0.76 0.07 +asymptomatique asymptomatique adj m s 0.09 0.20 0.05 0.00 +asymptomatiques asymptomatique adj m p 0.09 0.20 0.04 0.20 +asymétrie asymétrie nom f s 0.49 0.34 0.49 0.34 +asymétrique asymétrique adj s 0.35 1.08 0.26 0.47 +asymétriquement asymétriquement adv 0.00 0.20 0.00 0.20 +asymétriques asymétrique adj p 0.35 1.08 0.09 0.61 +asynchrone asynchrone adj s 0.01 0.00 0.01 0.00 +asystolie asystolie nom f s 0.27 0.00 0.27 0.00 +atabeg atabeg nom m s 0.00 0.20 0.00 0.07 +atabegs atabeg nom m p 0.00 0.20 0.00 0.14 +ataman ataman nom m s 0.10 0.14 0.10 0.07 +atamans ataman nom m p 0.10 0.14 0.00 0.07 +ataraxie ataraxie nom f s 0.02 0.07 0.02 0.07 +atavique atavique adj s 0.24 1.28 0.23 1.15 +ataviques atavique adj p 0.24 1.28 0.01 0.14 +atavisme atavisme nom m s 0.03 1.22 0.03 1.08 +atavismes atavisme nom m p 0.03 1.22 0.00 0.14 +ataxie ataxie nom f s 0.01 0.00 0.01 0.00 +atchoum atchoum ono 0.14 0.27 0.14 0.27 +atelier atelier nom m s 16.95 45.07 15.21 35.88 +ateliers atelier nom m p 16.95 45.07 1.73 9.19 +atellanes atellane nom f p 0.00 0.07 0.00 0.07 +atermoiement atermoiement nom m s 0.28 1.08 0.00 0.14 +atermoiements atermoiement nom m p 0.28 1.08 0.28 0.95 +atermoyé atermoyer ver m s 0.00 0.07 0.00 0.07 par:pas; +athanor athanor nom m s 0.00 0.68 0.00 0.68 +aède aède nom m s 0.11 0.27 0.10 0.20 +aèdes aède nom m p 0.11 0.27 0.01 0.07 +athlète athlète nom s 4.75 4.32 3.09 3.11 +athlètes athlète nom p 4.75 4.32 1.66 1.22 +athlétique athlétique adj s 0.74 2.57 0.65 2.16 +athlétiques athlétique adj p 0.74 2.57 0.09 0.41 +athlétisme athlétisme nom m s 0.56 0.47 0.56 0.47 +aère aérer ver 2.65 4.12 0.32 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +athée athée nom s 1.77 2.70 1.50 1.69 +athées athée nom p 1.77 2.70 0.27 1.01 +athéisme athéisme nom m s 0.29 1.76 0.29 1.76 +athéiste athéiste adj f s 0.01 0.00 0.01 0.00 +athénien athénien adj m s 0.33 0.88 0.20 0.14 +athénienne athénien adj f s 0.33 0.88 0.13 0.34 +athéniennes athénienne nom f p 0.10 0.41 0.10 0.07 +athéniens athénien nom m p 0.08 1.08 0.08 0.74 +athénée athénée nom m s 0.01 0.00 0.01 0.00 +atlante atlante nom m s 0.28 0.41 0.05 0.27 +atlantes atlante nom m p 0.28 0.41 0.23 0.14 +atlantique atlantique adj s 0.39 1.89 0.23 1.62 +atlantiques atlantique adj p 0.39 1.89 0.16 0.27 +atlas atlas nom m 0.93 2.16 0.93 2.16 +atmosphère atmosphère nom f s 13.85 36.69 13.45 36.15 +atmosphères atmosphère nom f p 13.85 36.69 0.40 0.54 +atmosphérique atmosphérique adj s 1.89 1.42 1.14 0.95 +atmosphériques atmosphérique adj p 1.89 1.42 0.76 0.47 +atoll atoll nom m s 0.15 0.61 0.12 0.54 +atolls atoll nom m p 0.15 0.61 0.03 0.07 +atome atome nom m s 2.85 4.12 1.30 1.82 +atomes atome nom m p 2.85 4.12 1.55 2.30 +atomique atomique adj s 6.33 8.31 5.30 6.22 +atomiques atomique adj p 6.33 8.31 1.02 2.09 +atomisait atomiser ver 0.33 0.20 0.00 0.07 ind:imp:3s; +atomise atomiser ver 0.33 0.20 0.04 0.14 ind:pre:1s;ind:pre:3s; +atomisent atomiser ver 0.33 0.20 0.01 0.00 ind:pre:3p; +atomiser atomiser ver 0.33 0.20 0.17 0.00 inf; +atomiseur atomiseur nom m s 0.11 0.00 0.11 0.00 +atomisez atomiser ver 0.33 0.20 0.02 0.00 imp:pre:2p; +atomiste atomiste nom s 0.01 0.14 0.01 0.07 +atomistes atomiste adj p 0.01 0.20 0.01 0.14 +atomisé atomiser ver m s 0.33 0.20 0.06 0.00 par:pas; +atomisée atomiser ver f s 0.33 0.20 0.03 0.00 par:pas; +atomisés atomiser ver m p 0.33 0.20 0.01 0.00 par:pas; +atonal atonal adj m s 0.03 0.20 0.01 0.07 +atonale atonal adj f s 0.03 0.20 0.01 0.07 +atonales atonal adj f p 0.03 0.20 0.00 0.07 +atone atone adj s 0.02 0.88 0.02 0.74 +atones atone adj m p 0.02 0.88 0.00 0.14 +atonie atonie nom f s 0.01 0.54 0.01 0.54 +atour atour nom m s 1.09 1.35 0.14 0.07 +atourné atourner ver m s 0.00 0.07 0.00 0.07 par:pas; +atours atour nom m p 1.09 1.35 0.95 1.28 +atout atout nom m s 5.74 4.53 3.66 2.84 +atouts atout nom m p 5.74 4.53 2.08 1.69 +atrabilaire atrabilaire nom s 0.01 0.00 0.01 0.00 +atrium atrium nom m s 0.30 0.14 0.30 0.14 +atroce atroce adj s 10.94 17.43 8.41 13.24 +atrocement atrocement adv 2.27 3.18 2.27 3.18 +atroces atroce adj p 10.94 17.43 2.53 4.19 +atrocité atrocité nom f s 3.92 2.50 0.96 0.74 +atrocités atrocité nom f p 3.92 2.50 2.96 1.76 +atrophiait atrophier ver 0.51 0.74 0.00 0.07 ind:imp:3s; +atrophie atrophie nom f s 0.39 0.27 0.39 0.27 +atrophient atrophier ver 0.51 0.74 0.11 0.00 ind:pre:3p; +atrophier atrophier ver 0.51 0.74 0.05 0.07 inf; +atrophieraient atrophier ver 0.51 0.74 0.01 0.00 cnd:pre:3p; +atrophies atrophier ver 0.51 0.74 0.01 0.00 ind:pre:2s; +atrophié atrophié adj m s 0.21 1.22 0.04 0.61 +atrophiée atrophier ver f s 0.51 0.74 0.15 0.20 par:pas; +atrophiées atrophié adj f p 0.21 1.22 0.01 0.27 +atrophiés atrophier ver m p 0.51 0.74 0.08 0.14 par:pas; +atropine atropine nom f s 0.86 0.07 0.86 0.07 +atrésie atrésie nom f s 0.04 0.00 0.04 0.00 +attabla attabler ver 0.20 7.84 0.00 0.41 ind:pas:3s; +attablai attabler ver 0.20 7.84 0.00 0.07 ind:pas:1s; +attablaient attabler ver 0.20 7.84 0.00 0.27 ind:imp:3p; +attablais attabler ver 0.20 7.84 0.00 0.14 ind:imp:1s; +attablait attabler ver 0.20 7.84 0.00 0.20 ind:imp:3s; +attablant attabler ver 0.20 7.84 0.00 0.07 par:pre; +attable attabler ver 0.20 7.84 0.00 0.34 ind:pre:1s;ind:pre:3s; +attablent attabler ver 0.20 7.84 0.00 0.14 ind:pre:3p; +attabler attabler ver 0.20 7.84 0.02 0.54 inf; +attablions attabler ver 0.20 7.84 0.00 0.14 ind:imp:1p; +attablons attabler ver 0.20 7.84 0.00 0.07 imp:pre:1p; +attablèrent attabler ver 0.20 7.84 0.00 0.20 ind:pas:3p; +attablé attabler ver m s 0.20 7.84 0.02 1.96 par:pas; +attablée attabler ver f s 0.20 7.84 0.02 0.41 par:pas; +attablées attablé adj f p 0.13 1.08 0.01 0.07 +attablés attabler ver m p 0.20 7.84 0.13 2.57 par:pas; +attacha attacher ver 46.37 71.01 0.04 2.84 ind:pas:3s; +attachai attacher ver 46.37 71.01 0.02 0.47 ind:pas:1s; +attachaient attacher ver 46.37 71.01 0.23 2.09 ind:imp:3p; +attachais attacher ver 46.37 71.01 0.26 0.74 ind:imp:1s;ind:imp:2s; +attachait attacher ver 46.37 71.01 0.48 6.62 ind:imp:3s; +attachant attachant adj m s 1.22 2.03 0.69 1.35 +attachante attachant adj f s 1.22 2.03 0.50 0.47 +attachants attachant adj m p 1.22 2.03 0.04 0.20 +attache attacher ver 46.37 71.01 10.42 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attachement attachement nom m s 3.33 10.95 2.87 9.59 +attachements attachement nom m p 3.33 10.95 0.46 1.35 +attachent attacher ver 46.37 71.01 0.70 1.96 ind:pre:3p; +attacher attacher ver 46.37 71.01 9.86 11.69 inf;; +attachera attacher ver 46.37 71.01 0.42 0.00 ind:fut:3s; +attacherai attacher ver 46.37 71.01 0.29 0.20 ind:fut:1s; +attacherais attacher ver 46.37 71.01 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +attacherait attacher ver 46.37 71.01 0.19 0.41 cnd:pre:3s; +attacheras attacher ver 46.37 71.01 0.17 0.07 ind:fut:2s; +attacherez attacher ver 46.37 71.01 0.01 0.07 ind:fut:2p; +attacherions attacher ver 46.37 71.01 0.00 0.07 cnd:pre:1p; +attacheront attacher ver 46.37 71.01 0.02 0.14 ind:fut:3p; +attaches attache nom f p 2.95 7.16 1.13 3.18 +attachez attacher ver 46.37 71.01 4.49 1.01 imp:pre:2p;ind:pre:2p; +attachiez attacher ver 46.37 71.01 0.10 0.14 ind:imp:2p;sub:pre:2p; +attachions attacher ver 46.37 71.01 0.01 0.27 ind:imp:1p; +attachons attacher ver 46.37 71.01 0.56 0.14 imp:pre:1p;ind:pre:1p; +attachât attacher ver 46.37 71.01 0.00 0.54 sub:imp:3s; +attachèrent attacher ver 46.37 71.01 0.10 0.54 ind:pas:3p; +attaché_case attaché_case nom m s 0.01 0.54 0.00 0.54 +attaché attacher ver m s 46.37 71.01 8.76 13.85 par:pas; +attachée attacher ver f s 46.37 71.01 5.33 6.28 par:pas; +attachées attacher ver f p 46.37 71.01 0.61 1.89 par:pas; +attaché_case attaché_case nom m p 0.01 0.54 0.01 0.00 +attachés attacher ver m p 46.37 71.01 1.83 6.96 par:pas; +attaqua attaquer ver 99.64 70.41 0.26 5.00 ind:pas:3s; +attaquable attaquable adj s 0.01 0.00 0.01 0.00 +attaquai attaquer ver 99.64 70.41 0.01 0.74 ind:pas:1s; +attaquaient attaquer ver 99.64 70.41 0.42 2.84 ind:imp:3p; +attaquais attaquer ver 99.64 70.41 0.12 0.47 ind:imp:1s;ind:imp:2s; +attaquait attaquer ver 99.64 70.41 1.88 6.01 ind:imp:3s; +attaquant attaquer ver 99.64 70.41 0.88 2.77 par:pre; +attaquante attaquant adj f s 0.25 0.14 0.06 0.07 +attaquants attaquant nom m p 1.13 0.41 0.56 0.14 +attaque attaque nom f s 59.92 37.03 52.39 29.93 +attaquent attaquer ver 99.64 70.41 6.82 4.26 ind:pre:3p;sub:pre:3p; +attaquer attaquer ver 99.64 70.41 25.91 17.70 inf;; +attaquera attaquer ver 99.64 70.41 2.25 0.34 ind:fut:3s; +attaquerai attaquer ver 99.64 70.41 0.44 0.41 ind:fut:1s; +attaqueraient attaquer ver 99.64 70.41 0.51 0.34 cnd:pre:3p; +attaquerais attaquer ver 99.64 70.41 0.30 0.14 cnd:pre:1s;cnd:pre:2s; +attaquerait attaquer ver 99.64 70.41 0.75 0.41 cnd:pre:3s; +attaqueras attaquer ver 99.64 70.41 0.05 0.07 ind:fut:2s; +attaquerez attaquer ver 99.64 70.41 0.29 0.07 ind:fut:2p; +attaqueriez attaquer ver 99.64 70.41 0.04 0.00 cnd:pre:2p; +attaquerions attaquer ver 99.64 70.41 0.02 0.00 cnd:pre:1p; +attaquerons attaquer ver 99.64 70.41 1.25 0.07 ind:fut:1p; +attaqueront attaquer ver 99.64 70.41 2.08 0.34 ind:fut:3p; +attaques attaque nom f p 59.92 37.03 7.53 7.09 +attaqueur attaqueur nom m s 0.01 0.00 0.01 0.00 +attaquez attaquer ver 99.64 70.41 3.48 0.41 imp:pre:2p;ind:pre:2p; +attaquiez attaquer ver 99.64 70.41 0.10 0.00 ind:imp:2p; +attaquâmes attaquer ver 99.64 70.41 0.00 0.07 ind:pas:1p; +attaquons attaquer ver 99.64 70.41 2.06 0.54 imp:pre:1p;ind:pre:1p; +attaquât attaquer ver 99.64 70.41 0.00 0.14 sub:imp:3s; +attaquèrent attaquer ver 99.64 70.41 0.14 1.08 ind:pas:3p; +attaqué attaquer ver m s 99.64 70.41 20.04 9.12 par:pas; +attaquée attaquer ver f s 99.64 70.41 5.80 2.43 par:pas; +attaquées attaquer ver f p 99.64 70.41 0.46 0.34 par:pas; +attaqués attaquer ver m p 99.64 70.41 5.34 2.84 par:pas; +attarda attarder ver 4.36 29.39 0.01 3.45 ind:pas:3s; +attardai attarder ver 4.36 29.39 0.00 0.54 ind:pas:1s; +attardaient attarder ver 4.36 29.39 0.01 1.82 ind:imp:3p; +attardais attarder ver 4.36 29.39 0.00 1.15 ind:imp:1s; +attardait attarder ver 4.36 29.39 0.13 3.65 ind:imp:3s; +attardant attarder ver 4.36 29.39 0.04 1.22 par:pre; +attarde attarder ver 4.36 29.39 0.84 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +attardement attardement nom m s 0.00 0.07 0.00 0.07 +attardent attarder ver 4.36 29.39 0.05 1.15 ind:pre:3p; +attarder attarder ver 4.36 29.39 1.61 7.03 inf; +attardera attarder ver 4.36 29.39 0.02 0.07 ind:fut:3s; +attarderai attarder ver 4.36 29.39 0.02 0.00 ind:fut:1s; +attarderaient attarder ver 4.36 29.39 0.00 0.14 cnd:pre:3p; +attarderait attarder ver 4.36 29.39 0.02 0.07 cnd:pre:3s; +attarderont attarder ver 4.36 29.39 0.00 0.07 ind:fut:3p; +attardez attarder ver 4.36 29.39 0.20 0.20 imp:pre:2p;ind:pre:2p; +attardions attarder ver 4.36 29.39 0.01 0.20 ind:imp:1p; +attardâmes attarder ver 4.36 29.39 0.00 0.27 ind:pas:1p; +attardons attarder ver 4.36 29.39 0.09 0.20 imp:pre:1p;ind:pre:1p; +attardât attarder ver 4.36 29.39 0.00 0.20 sub:imp:3s; +attardèrent attarder ver 4.36 29.39 0.00 0.81 ind:pas:3p; +attardé attarder ver m s 4.36 29.39 0.84 1.49 par:pas; +attardée attarder ver f s 4.36 29.39 0.33 0.68 par:pas; +attardées attardé adj f p 1.06 3.11 0.02 0.27 +attardés attardé nom m p 1.58 1.55 0.74 0.88 +atteignîmes atteindre ver 61.83 126.76 0.33 0.95 ind:pas:1p; +atteignît atteindre ver 61.83 126.76 0.00 0.47 sub:imp:3s; +atteignable atteignable adj s 0.01 0.00 0.01 0.00 +atteignaient atteindre ver 61.83 126.76 0.04 4.39 ind:imp:3p; +atteignais atteindre ver 61.83 126.76 0.22 0.74 ind:imp:1s;ind:imp:2s; +atteignait atteindre ver 61.83 126.76 0.50 9.59 ind:imp:3s; +atteignant atteindre ver 61.83 126.76 0.54 2.57 par:pre; +atteigne atteindre ver 61.83 126.76 1.82 1.28 sub:pre:1s;sub:pre:3s; +atteignent atteindre ver 61.83 126.76 1.54 2.16 ind:pre:3p; +atteignes atteindre ver 61.83 126.76 0.03 0.00 sub:pre:2s; +atteignez atteindre ver 61.83 126.76 0.28 0.07 imp:pre:2p;ind:pre:2p; +atteignions atteindre ver 61.83 126.76 0.06 0.34 ind:imp:1p; +atteignirent atteindre ver 61.83 126.76 0.24 2.70 ind:pas:3p; +atteignis atteindre ver 61.83 126.76 0.14 1.01 ind:pas:1s; +atteignissent atteindre ver 61.83 126.76 0.00 0.07 sub:imp:3p; +atteignit atteindre ver 61.83 126.76 0.39 10.34 ind:pas:3s; +atteignons atteindre ver 61.83 126.76 0.28 0.95 imp:pre:1p;ind:pre:1p; +atteindra atteindre ver 61.83 126.76 1.90 1.08 ind:fut:3s; +atteindrai atteindre ver 61.83 126.76 0.31 0.27 ind:fut:1s; +atteindraient atteindre ver 61.83 126.76 0.15 0.34 cnd:pre:3p; +atteindrais atteindre ver 61.83 126.76 0.05 0.41 cnd:pre:1s;cnd:pre:2s; +atteindrait atteindre ver 61.83 126.76 0.50 1.08 cnd:pre:3s; +atteindras atteindre ver 61.83 126.76 0.27 0.07 ind:fut:2s; +atteindre atteindre ver 61.83 126.76 24.42 40.47 inf; +atteindrez atteindre ver 61.83 126.76 0.41 0.20 ind:fut:2p; +atteindrons atteindre ver 61.83 126.76 0.60 0.14 ind:fut:1p; +atteindront atteindre ver 61.83 126.76 0.79 0.20 ind:fut:3p; +atteins atteindre ver 61.83 126.76 1.27 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +atteint atteindre ver m s 61.83 126.76 19.99 35.68 ind:pre:3s;par:pas; +atteinte atteindre ver f s 61.83 126.76 2.71 5.20 par:pas; +atteintes atteindre ver f p 61.83 126.76 0.36 1.01 par:pas; +atteints atteindre ver m p 61.83 126.76 1.71 2.03 par:pas; +attela atteler ver 2.12 8.58 0.02 0.41 ind:pas:3s; +attelage attelage nom m s 1.52 5.61 1.43 4.05 +attelages attelage nom m p 1.52 5.61 0.10 1.55 +attelai atteler ver 2.12 8.58 0.00 0.14 ind:pas:1s; +attelaient atteler ver 2.12 8.58 0.00 0.20 ind:imp:3p; +attelais atteler ver 2.12 8.58 0.10 0.14 ind:imp:1s; +attelait atteler ver 2.12 8.58 0.02 0.41 ind:imp:3s; +attelant atteler ver 2.12 8.58 0.00 0.07 par:pre; +atteler atteler ver 2.12 8.58 0.97 1.42 inf; +attelez atteler ver 2.12 8.58 0.09 0.00 imp:pre:2p;ind:pre:2p; +attelions atteler ver 2.12 8.58 0.00 0.07 ind:imp:1p; +attelle attelle nom f s 0.83 0.68 0.73 0.47 +attellent atteler ver 2.12 8.58 0.01 0.07 ind:pre:3p; +attellera atteler ver 2.12 8.58 0.00 0.07 ind:fut:3s; +attellerais atteler ver 2.12 8.58 0.00 0.07 cnd:pre:1s; +attelles attelle nom f p 0.83 0.68 0.10 0.20 +attelâmes atteler ver 2.12 8.58 0.00 0.07 ind:pas:1p; +attelons atteler ver 2.12 8.58 0.01 0.00 imp:pre:1p; +attelèrent atteler ver 2.12 8.58 0.01 0.20 ind:pas:3p; +attelé atteler ver m s 2.12 8.58 0.15 1.89 par:pas; +attelée atteler ver f s 2.12 8.58 0.03 1.01 par:pas; +attelées atteler ver f p 2.12 8.58 0.00 0.34 par:pas; +attelés atteler ver m p 2.12 8.58 0.09 1.35 par:pas; +attenant attenant adj m s 0.40 3.72 0.05 2.23 +attenante attenant adj f s 0.40 3.72 0.09 1.35 +attenantes attenant adj f p 0.40 3.72 0.26 0.14 +attend attendre ver 1351.44 706.69 173.86 74.46 ind:pre:3s; +attendîmes attendre ver 1351.44 706.69 0.03 0.61 ind:pas:1p; +attendît attendre ver 1351.44 706.69 0.00 0.47 sub:imp:3s; +attendaient attendre ver 1351.44 706.69 5.12 32.77 ind:imp:3p; +attendais attendre ver 1351.44 706.69 59.29 36.82 ind:imp:1s;ind:imp:2s; +attendait attendre ver 1351.44 706.69 25.02 127.09 ind:imp:3s; +attendant attendre ver 1351.44 706.69 40.34 75.47 par:pre; +attende attendre ver 1351.44 706.69 5.18 3.38 sub:pre:1s;sub:pre:3s; +attendent attendre ver 1351.44 706.69 36.95 21.82 ind:pre:3p; +attendes attendre ver 1351.44 706.69 0.69 0.27 sub:pre:2s; +attendez attendre ver 1351.44 706.69 230.66 19.86 imp:pre:2p;ind:pre:2p; +attendiez attendre ver 1351.44 706.69 7.13 0.95 ind:imp:2p;sub:pre:2p; +attendions attendre ver 1351.44 706.69 4.25 5.47 ind:imp:1p; +attendirent attendre ver 1351.44 706.69 0.05 2.97 ind:pas:3p; +attendis attendre ver 1351.44 706.69 0.67 4.86 ind:pas:1s; +attendisse attendre ver 1351.44 706.69 0.00 0.14 sub:imp:1s; +attendissent attendre ver 1351.44 706.69 0.00 0.07 sub:imp:3p; +attendit attendre ver 1351.44 706.69 0.49 28.65 ind:pas:3s; +attendons attendre ver 1351.44 706.69 21.35 6.28 imp:pre:1p;ind:pre:1p; +attendra attendre ver 1351.44 706.69 8.23 3.04 ind:fut:3s; +attendrai attendre ver 1351.44 706.69 18.83 5.20 ind:fut:1s; +attendraient attendre ver 1351.44 706.69 0.25 1.01 cnd:pre:3p; +attendrais attendre ver 1351.44 706.69 2.04 0.61 cnd:pre:1s;cnd:pre:2s; +attendrait attendre ver 1351.44 706.69 1.23 3.51 cnd:pre:3s; +attendras attendre ver 1351.44 706.69 2.28 1.42 ind:fut:2s; +attendre attendre ver 1351.44 706.69 177.43 143.45 inf;; +attendrez attendre ver 1351.44 706.69 1.22 0.68 ind:fut:2p; +attendri attendrir ver m s 2.96 20.95 0.14 5.00 par:pas; +attendrie attendrir ver f s 2.96 20.95 0.31 2.77 par:pas; +attendries attendrir ver f p 2.96 20.95 0.00 0.34 par:pas; +attendriez attendre ver 1351.44 706.69 0.10 0.00 cnd:pre:2p; +attendrions attendre ver 1351.44 706.69 0.03 0.20 cnd:pre:1p; +attendrir attendrir ver 2.96 20.95 1.23 5.07 inf; +attendrirait attendrir ver 2.96 20.95 0.01 0.07 cnd:pre:3s; +attendriras attendrir ver 2.96 20.95 0.01 0.00 ind:fut:2s; +attendrirent attendrir ver 2.96 20.95 0.10 0.27 ind:pas:3p; +attendris attendrir ver m p 2.96 20.95 0.23 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +attendrissaient attendrir ver 2.96 20.95 0.00 0.20 ind:imp:3p; +attendrissais attendrir ver 2.96 20.95 0.00 0.07 ind:imp:1s; +attendrissait attendrir ver 2.96 20.95 0.14 1.76 ind:imp:3s; +attendrissant attendrissant adj m s 0.42 3.99 0.37 2.03 +attendrissante attendrissant adj f s 0.42 3.99 0.02 0.95 +attendrissantes attendrissant adj f p 0.42 3.99 0.00 0.54 +attendrissants attendrissant adj m p 0.42 3.99 0.03 0.47 +attendrisse attendrir ver 2.96 20.95 0.01 0.14 sub:pre:1s;sub:pre:3s; +attendrissement attendrissement nom m s 0.10 7.64 0.10 6.89 +attendrissements attendrissement nom m p 0.10 7.64 0.00 0.74 +attendrissent attendrir ver 2.96 20.95 0.16 0.54 ind:pre:3p; +attendrisseur attendrisseur nom m s 0.01 0.00 0.01 0.00 +attendrissons attendrir ver 2.96 20.95 0.00 0.07 ind:pre:1p; +attendrit attendrir ver 2.96 20.95 0.47 2.64 ind:pre:3s;ind:pas:3s; +attendrons attendre ver 1351.44 706.69 3.40 0.61 ind:fut:1p; +attendront attendre ver 1351.44 706.69 1.92 0.81 ind:fut:3p; +attends attendre ver 1351.44 706.69 478.32 62.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +attendu attendre ver m s 1351.44 706.69 38.45 34.66 par:pas; +attendue attendre ver f s 1351.44 706.69 4.69 4.39 par:pas; +attendues attendre ver f p 1351.44 706.69 0.58 0.20 par:pas; +attendus attendre ver m p 1351.44 706.69 1.39 1.89 par:pas; +attenta attenter ver 1.17 1.01 0.00 0.07 ind:pas:3s; +attentais attenter ver 1.17 1.01 0.00 0.07 ind:imp:1s; +attentait attenter ver 1.17 1.01 0.01 0.00 ind:imp:3s; +attentant attenter ver 1.17 1.01 0.02 0.00 par:pre; +attentat attentat nom m s 14.58 8.72 11.42 5.34 +attentatoire attentatoire adj m s 0.00 0.14 0.00 0.07 +attentatoires attentatoire adj p 0.00 0.14 0.00 0.07 +attentats attentat nom m p 14.58 8.72 3.16 3.38 +attente attente nom f s 25.07 63.85 22.77 61.35 +attenter attenter ver 1.17 1.01 0.39 0.54 inf; +attenterai attenter ver 1.17 1.01 0.00 0.07 ind:fut:1s; +attenterait attenter ver 1.17 1.01 0.01 0.07 cnd:pre:3s; +attentes attente nom f p 25.07 63.85 2.29 2.50 +attentez attenter ver 1.17 1.01 0.16 0.00 imp:pre:2p;ind:pre:2p; +attentiez attenter ver 1.17 1.01 0.14 0.00 ind:imp:2p; +attentif attentif adj m s 6.66 35.74 3.77 17.30 +attentifs attentif adj m p 6.66 35.74 1.49 6.22 +attention attention ono 159.10 21.35 159.10 21.35 +attentionné attentionné adj m s 2.64 0.74 1.73 0.34 +attentionnée attentionné adj f s 2.64 0.74 0.41 0.27 +attentionnées attentionné adj f p 2.64 0.74 0.07 0.00 +attentionnés attentionné adj m p 2.64 0.74 0.44 0.14 +attentions attention nom f p 158.52 124.53 1.63 4.86 +attentisme attentisme nom m s 0.02 0.81 0.02 0.81 +attentiste attentiste adj s 0.02 0.00 0.02 0.00 +attentistes attentiste nom p 0.00 0.07 0.00 0.07 +attentive attentif adj f s 6.66 35.74 1.25 11.15 +attentivement attentivement adv 8.38 11.82 8.38 11.82 +attentives attentif adj f p 6.66 35.74 0.15 1.08 +attenté attenter ver m s 1.17 1.01 0.13 0.07 par:pas; +atterrîmes atterrir ver 26.73 9.39 0.01 0.14 ind:pas:1p; +atterrît atterrir ver 26.73 9.39 0.00 0.07 sub:imp:3s; +atterrages atterrage nom m p 0.00 0.20 0.00 0.20 +atterraient atterrer ver 0.23 2.91 0.00 0.07 ind:imp:3p; +atterrait atterrer ver 0.23 2.91 0.00 0.07 ind:imp:3s; +atterrant atterrant adj m s 0.01 0.20 0.01 0.14 +atterrante atterrant adj f s 0.01 0.20 0.00 0.07 +atterre atterrer ver 0.23 2.91 0.02 0.07 ind:pre:1s;ind:pre:3s; +atterri atterrir ver m s 26.73 9.39 8.64 1.89 par:pas; +atterrir atterrir ver 26.73 9.39 10.84 3.04 inf;; +atterrira atterrir ver 26.73 9.39 0.48 0.00 ind:fut:3s; +atterrirai atterrir ver 26.73 9.39 0.06 0.00 ind:fut:1s; +atterrirais atterrir ver 26.73 9.39 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +atterriras atterrir ver 26.73 9.39 0.05 0.00 ind:fut:2s; +atterrirent atterrir ver 26.73 9.39 0.04 0.14 ind:pas:3p; +atterrirez atterrir ver 26.73 9.39 0.05 0.00 ind:fut:2p; +atterrirons atterrir ver 26.73 9.39 0.28 0.00 ind:fut:1p; +atterris atterrir ver m p 26.73 9.39 1.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +atterrissage atterrissage nom m s 9.06 2.23 8.84 2.16 +atterrissages atterrissage nom m p 9.06 2.23 0.22 0.07 +atterrissaient atterrir ver 26.73 9.39 0.04 0.34 ind:imp:3p; +atterrissais atterrir ver 26.73 9.39 0.01 0.14 ind:imp:1s; +atterrissait atterrir ver 26.73 9.39 0.08 0.14 ind:imp:3s; +atterrissant atterrir ver 26.73 9.39 0.14 0.14 par:pre; +atterrisse atterrir ver 26.73 9.39 0.40 0.07 sub:pre:1s;sub:pre:3s; +atterrissent atterrir ver 26.73 9.39 0.76 0.41 ind:pre:3p; +atterrisses atterrir ver 26.73 9.39 0.02 0.00 sub:pre:2s; +atterrissez atterrir ver 26.73 9.39 0.52 0.00 imp:pre:2p;ind:pre:2p; +atterrissons atterrir ver 26.73 9.39 0.08 0.00 imp:pre:1p;ind:pre:1p; +atterrit atterrir ver 26.73 9.39 2.96 1.96 ind:pre:3s;ind:pas:3s; +atterrèrent atterrer ver 0.23 2.91 0.00 0.14 ind:pas:3p; +atterré atterrer ver m s 0.23 2.91 0.05 1.62 par:pas; +atterrée atterrer ver f s 0.23 2.91 0.04 0.34 par:pas; +atterrées atterrer ver f p 0.23 2.91 0.00 0.07 par:pas; +atterrés atterrer ver m p 0.23 2.91 0.12 0.54 par:pas; +attesta attester ver 2.67 6.55 0.00 0.07 ind:pas:3s; +attestaient attester ver 2.67 6.55 0.00 0.47 ind:imp:3p; +attestait attester ver 2.67 6.55 0.01 1.15 ind:imp:3s; +attestant attester ver 2.67 6.55 0.14 1.15 par:pre; +attestation attestation nom f s 1.00 0.20 0.95 0.14 +attestations attestation nom f p 1.00 0.20 0.05 0.07 +atteste attester ver 2.67 6.55 0.98 1.22 ind:pre:1s;ind:pre:3s; +attestent attester ver 2.67 6.55 0.15 0.54 ind:pre:3p; +attester attester ver 2.67 6.55 0.87 1.08 inf; +attestera attester ver 2.67 6.55 0.05 0.00 ind:fut:3s; +attestons attester ver 2.67 6.55 0.01 0.07 imp:pre:1p;ind:pre:1p; +attestèrent attester ver 2.67 6.55 0.00 0.07 ind:pas:3p; +attesté attester ver m s 2.67 6.55 0.34 0.34 par:pas; +attestée attester ver f s 2.67 6.55 0.11 0.34 par:pas; +attestées attester ver f p 2.67 6.55 0.00 0.07 par:pas; +atèle atèle nom m s 0.01 0.00 0.01 0.00 +attifa attifer ver 0.30 1.69 0.00 0.07 ind:pas:3s; +attifait attifer ver 0.30 1.69 0.00 0.07 ind:imp:3s; +attifant attifer ver 0.30 1.69 0.00 0.07 par:pre; +attife attifer ver 0.30 1.69 0.00 0.14 ind:pre:3s; +attifer attifer ver 0.30 1.69 0.01 0.20 inf; +attifiaux attifiaux nom m p 0.00 0.07 0.00 0.07 +attifé attifer ver m s 0.30 1.69 0.25 0.27 par:pas; +attifée attifer ver f s 0.30 1.69 0.02 0.68 par:pas; +attifées attifer ver f p 0.30 1.69 0.00 0.07 par:pas; +attifés attifer ver m p 0.30 1.69 0.02 0.14 par:pas; +attige attiger ver 0.00 0.74 0.00 0.27 ind:pre:1s;ind:pre:3s; +attigeait attiger ver 0.00 0.74 0.00 0.07 ind:imp:3s; +attigent attiger ver 0.00 0.74 0.00 0.14 ind:pre:3p; +attiges attiger ver 0.00 0.74 0.00 0.07 ind:pre:2s; +attigés attiger ver m p 0.00 0.74 0.00 0.20 par:pas; +attique attique adj s 0.00 0.34 0.00 0.27 +attiques attique adj f p 0.00 0.34 0.00 0.07 +attira attirer ver 54.90 75.27 0.33 7.70 ind:pas:3s; +attirai attirer ver 54.90 75.27 0.00 0.34 ind:pas:1s; +attiraient attirer ver 54.90 75.27 0.43 2.91 ind:imp:3p; +attirail attirail nom m s 1.52 3.99 1.52 3.99 +attirais attirer ver 54.90 75.27 0.26 0.34 ind:imp:1s;ind:imp:2s; +attirait attirer ver 54.90 75.27 2.03 10.41 ind:imp:3s; +attirance attirance nom f s 2.39 2.91 2.38 2.77 +attirances attirance nom f p 2.39 2.91 0.01 0.14 +attirant attirant adj m s 5.74 3.85 2.59 1.62 +attirante attirant adj f s 5.74 3.85 2.59 1.55 +attirantes attirant adj f p 5.74 3.85 0.28 0.54 +attirants attirant adj m p 5.74 3.85 0.28 0.14 +attire attirer ver 54.90 75.27 13.43 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attirent attirer ver 54.90 75.27 2.83 2.84 ind:pre:3p; +attirer attirer ver 54.90 75.27 17.08 17.43 inf; +attirera attirer ver 54.90 75.27 0.94 0.14 ind:fut:3s; +attirerai attirer ver 54.90 75.27 0.11 0.00 ind:fut:1s; +attireraient attirer ver 54.90 75.27 0.02 0.14 cnd:pre:3p; +attirerais attirer ver 54.90 75.27 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +attirerait attirer ver 54.90 75.27 0.56 0.61 cnd:pre:3s; +attirerez attirer ver 54.90 75.27 0.04 0.14 ind:fut:2p; +attireriez attirer ver 54.90 75.27 0.01 0.00 cnd:pre:2p; +attirerons attirer ver 54.90 75.27 0.04 0.00 ind:fut:1p; +attireront attirer ver 54.90 75.27 0.04 0.00 ind:fut:3p; +attires attirer ver 54.90 75.27 0.89 0.20 ind:pre:2s; +attirez attirer ver 54.90 75.27 0.82 0.07 imp:pre:2p;ind:pre:2p; +attiriez attirer ver 54.90 75.27 0.40 0.14 ind:imp:2p; +attirions attirer ver 54.90 75.27 0.02 0.07 ind:imp:1p; +attirons attirer ver 54.90 75.27 0.28 0.14 imp:pre:1p;ind:pre:1p; +attirât attirer ver 54.90 75.27 0.00 0.20 sub:imp:3s; +attirèrent attirer ver 54.90 75.27 0.13 0.81 ind:pas:3p; +attiré attirer ver m s 54.90 75.27 8.15 10.47 par:pas; +attirée attirer ver f s 54.90 75.27 2.78 3.85 par:pas; +attirées attirer ver f p 54.90 75.27 0.48 0.47 par:pas; +attirés attirer ver m p 54.90 75.27 2.09 2.57 par:pas; +attisa attiser ver 1.88 3.65 0.01 0.14 ind:pas:3s; +attisaient attiser ver 1.88 3.65 0.01 0.27 ind:imp:3p; +attisait attiser ver 1.88 3.65 0.14 0.54 ind:imp:3s; +attisant attiser ver 1.88 3.65 0.00 0.20 par:pre; +attise attiser ver 1.88 3.65 0.55 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attisement attisement nom m s 0.00 0.07 0.00 0.07 +attisent attiser ver 1.88 3.65 0.23 0.07 ind:pre:3p; +attiser attiser ver 1.88 3.65 0.33 1.35 inf; +attisera attiser ver 1.88 3.65 0.00 0.07 ind:fut:3s; +attises attiser ver 1.88 3.65 0.02 0.00 ind:pre:2s; +attisez attiser ver 1.88 3.65 0.16 0.00 imp:pre:2p;ind:pre:2p; +attisoir attisoir nom m s 0.00 0.07 0.00 0.07 +attisons attiser ver 1.88 3.65 0.01 0.00 imp:pre:1p; +attisé attiser ver m s 1.88 3.65 0.29 0.07 par:pas; +attisée attiser ver f s 1.88 3.65 0.12 0.20 par:pas; +attisées attiser ver f p 1.88 3.65 0.00 0.07 par:pas; +attisés attiser ver m p 1.88 3.65 0.00 0.07 par:pas; +attitré attitré adj m s 0.41 1.35 0.28 0.54 +attitrée attitrer ver f s 0.19 0.88 0.11 0.20 par:pas; +attitrées attitré adj f p 0.41 1.35 0.01 0.07 +attitrés attitré adj m p 0.41 1.35 0.03 0.34 +attitude attitude nom f s 23.03 67.91 21.37 57.50 +attitudes attitude nom f p 23.03 67.91 1.66 10.41 +attiédi attiédir ver m s 0.00 0.27 0.00 0.07 par:pas; +attiédie attiédir ver f s 0.00 0.27 0.00 0.07 par:pas; +attiédis attiédir ver m p 0.00 0.27 0.00 0.07 par:pas; +attiédissait attiédir ver 0.00 0.27 0.00 0.07 ind:imp:3s; +attorney attorney nom m s 0.15 0.00 0.15 0.00 +attouchant attoucher ver 0.00 0.07 0.00 0.07 par:pre; +attouchement attouchement nom m s 0.33 1.76 0.00 0.81 +attouchements attouchement nom m p 0.33 1.76 0.33 0.95 +attracteur attracteur adj m s 0.11 0.00 0.09 0.00 +attracteurs attracteur adj m p 0.11 0.00 0.02 0.00 +attractif attractif adj m s 0.24 0.41 0.14 0.27 +attractifs attractif adj m p 0.24 0.41 0.01 0.00 +attraction_vedette attraction_vedette nom f s 0.01 0.00 0.01 0.00 +attraction attraction nom f s 7.45 7.64 4.96 5.74 +attractions attraction nom f p 7.45 7.64 2.48 1.89 +attractive attractif adj f s 0.24 0.41 0.09 0.14 +attrait attrait nom m s 1.76 9.39 1.18 6.96 +attraits attrait nom m p 1.76 9.39 0.58 2.43 +attrapa attraper ver 112.52 55.34 0.16 5.74 ind:pas:3s; +attrapage attrapage nom m s 0.01 0.00 0.01 0.00 +attrapai attraper ver 112.52 55.34 0.00 1.82 ind:pas:1s; +attrapaient attraper ver 112.52 55.34 0.30 0.68 ind:imp:3p; +attrapais attraper ver 112.52 55.34 0.50 0.41 ind:imp:1s;ind:imp:2s; +attrapait attraper ver 112.52 55.34 0.66 3.58 ind:imp:3s; +attrapant attraper ver 112.52 55.34 0.30 1.69 par:pre; +attrape_couillon attrape_couillon nom m s 0.04 0.07 0.03 0.00 +attrape_couillon attrape_couillon nom m p 0.04 0.07 0.01 0.07 +attrape_mouche attrape_mouche nom m s 0.04 0.07 0.01 0.00 +attrape_mouche attrape_mouche nom m p 0.04 0.07 0.03 0.07 +attrape_nigaud attrape_nigaud nom m s 0.10 0.20 0.10 0.20 +attrape attraper ver 112.52 55.34 24.29 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +attrapent attraper ver 112.52 55.34 3.79 0.88 ind:pre:3p; +attraper attraper ver 112.52 55.34 35.32 17.09 inf; +attrapera attraper ver 112.52 55.34 1.04 0.27 ind:fut:3s; +attraperai attraper ver 112.52 55.34 1.10 0.14 ind:fut:1s; +attraperaient attraper ver 112.52 55.34 0.22 0.07 cnd:pre:3p; +attraperais attraper ver 112.52 55.34 0.32 0.07 cnd:pre:1s;cnd:pre:2s; +attraperait attraper ver 112.52 55.34 0.22 0.20 cnd:pre:3s; +attraperas attraper ver 112.52 55.34 1.00 0.14 ind:fut:2s; +attraperez attraper ver 112.52 55.34 0.47 0.00 ind:fut:2p; +attraperiez attraper ver 112.52 55.34 0.05 0.00 cnd:pre:2p; +attraperons attraper ver 112.52 55.34 0.22 0.00 ind:fut:1p; +attraperont attraper ver 112.52 55.34 0.88 0.20 ind:fut:3p; +attrapes attraper ver 112.52 55.34 2.14 0.34 ind:pre:2s;sub:pre:2s; +attrapeur attrapeur nom m s 1.20 0.00 1.20 0.00 +attrapez attraper ver 112.52 55.34 14.91 0.14 imp:pre:2p;ind:pre:2p; +attrapiez attraper ver 112.52 55.34 0.26 0.00 ind:imp:2p; +attrapions attraper ver 112.52 55.34 0.08 0.14 ind:imp:1p; +attrapons attraper ver 112.52 55.34 1.22 0.00 imp:pre:1p;ind:pre:1p; +attrapèrent attraper ver 112.52 55.34 0.02 0.14 ind:pas:3p; +attrapé attraper ver m s 112.52 55.34 19.20 11.35 par:pas; +attrapée attraper ver f s 112.52 55.34 2.41 1.69 par:pas; +attrapées attraper ver f p 112.52 55.34 0.30 0.07 par:pas; +attrapés attraper ver m p 112.52 55.34 1.16 0.54 par:pas; +attrayant attrayant adj m s 1.39 1.22 0.89 0.61 +attrayante attrayant adj f s 1.39 1.22 0.32 0.41 +attrayantes attrayant adj f p 1.39 1.22 0.02 0.14 +attrayants attrayant adj m p 1.39 1.22 0.16 0.07 +attribua attribuer ver 7.56 21.89 0.16 1.28 ind:pas:3s; +attribuable attribuable adj m s 0.03 0.00 0.03 0.00 +attribuai attribuer ver 7.56 21.89 0.01 0.54 ind:pas:1s; +attribuaient attribuer ver 7.56 21.89 0.00 0.27 ind:imp:3p; +attribuais attribuer ver 7.56 21.89 0.02 0.54 ind:imp:1s; +attribuait attribuer ver 7.56 21.89 0.16 3.11 ind:imp:3s; +attribuant attribuer ver 7.56 21.89 0.13 1.08 par:pre; +attribue attribuer ver 7.56 21.89 1.78 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attribuent attribuer ver 7.56 21.89 0.09 0.07 ind:pre:3p; +attribuer attribuer ver 7.56 21.89 1.49 5.68 inf; +attribuera attribuer ver 7.56 21.89 0.09 0.14 ind:fut:3s; +attribueraient attribuer ver 7.56 21.89 0.00 0.20 cnd:pre:3p; +attribuerais attribuer ver 7.56 21.89 0.01 0.20 cnd:pre:1s; +attribuerait attribuer ver 7.56 21.89 0.03 0.14 cnd:pre:3s; +attribueront attribuer ver 7.56 21.89 0.02 0.00 ind:fut:3p; +attribues attribuer ver 7.56 21.89 0.19 0.07 ind:pre:2s; +attribuez attribuer ver 7.56 21.89 0.17 0.00 ind:pre:2p; +attribuions attribuer ver 7.56 21.89 0.00 0.07 ind:imp:1p; +attribuâmes attribuer ver 7.56 21.89 0.00 0.07 ind:pas:1p; +attribuons attribuer ver 7.56 21.89 0.14 0.00 imp:pre:1p;ind:pre:1p; +attribuât attribuer ver 7.56 21.89 0.00 0.27 sub:imp:3s; +attribut attribut nom m s 1.13 6.01 0.08 1.69 +attribuèrent attribuer ver 7.56 21.89 0.10 0.14 ind:pas:3p; +attribution attribution nom f s 1.40 8.72 0.47 2.23 +attributions attribution nom f p 1.40 8.72 0.93 6.49 +attributs attribut nom m p 1.13 6.01 1.05 4.32 +attribué attribuer ver m s 7.56 21.89 1.95 2.97 par:pas; +attribuée attribuer ver f s 7.56 21.89 0.25 1.49 par:pas; +attribuées attribuer ver f p 7.56 21.89 0.14 0.54 par:pas; +attribués attribuer ver m p 7.56 21.89 0.60 0.81 par:pas; +attriquait attriquer ver 0.00 1.62 0.00 0.07 ind:imp:3s; +attriquant attriquer ver 0.00 1.62 0.00 0.07 par:pre; +attrique attriquer ver 0.00 1.62 0.00 0.20 ind:pre:1s;ind:pre:3s; +attriquent attriquer ver 0.00 1.62 0.00 0.07 ind:pre:3p; +attriquer attriquer ver 0.00 1.62 0.00 0.68 inf; +attriquerait attriquer ver 0.00 1.62 0.00 0.07 cnd:pre:3s; +attriqué attriquer ver m s 0.00 1.62 0.00 0.27 par:pas; +attriquée attriquer ver f s 0.00 1.62 0.00 0.20 par:pas; +attrista attrister ver 2.71 6.42 0.01 0.47 ind:pas:3s; +attristai attrister ver 2.71 6.42 0.00 0.20 ind:pas:1s; +attristaient attrister ver 2.71 6.42 0.00 0.27 ind:imp:3p; +attristais attrister ver 2.71 6.42 0.00 0.14 ind:imp:1s; +attristait attrister ver 2.71 6.42 0.01 1.15 ind:imp:3s; +attristant attristant adj m s 0.01 0.47 0.01 0.27 +attristante attristant adj f s 0.01 0.47 0.00 0.14 +attristantes attristant adj f p 0.01 0.47 0.00 0.07 +attriste attrister ver 2.71 6.42 1.54 1.01 ind:pre:1s;ind:pre:3s; +attristent attrister ver 2.71 6.42 0.00 0.47 ind:pre:3p; +attrister attrister ver 2.71 6.42 0.50 1.01 inf; +attristerait attrister ver 2.71 6.42 0.01 0.00 cnd:pre:3s; +attristez attrister ver 2.71 6.42 0.03 0.07 imp:pre:2p;ind:pre:2p; +attristât attrister ver 2.71 6.42 0.00 0.20 sub:imp:3s; +attristèrent attrister ver 2.71 6.42 0.01 0.20 ind:pas:3p; +attristé attrister ver m s 2.71 6.42 0.36 0.41 par:pas; +attristée attrister ver f s 2.71 6.42 0.09 0.14 par:pas; +attristés attrister ver m p 2.71 6.42 0.15 0.14 par:pas; +attrition attrition nom f s 0.02 0.20 0.02 0.14 +attritions attrition nom f p 0.02 0.20 0.00 0.07 +attroupa attrouper ver 0.14 2.36 0.00 0.07 ind:pas:3s; +attroupaient attrouper ver 0.14 2.36 0.14 0.34 ind:imp:3p; +attroupait attrouper ver 0.14 2.36 0.00 0.14 ind:imp:3s; +attroupement attroupement nom m s 0.17 3.85 0.08 3.45 +attroupements attroupement nom m p 0.17 3.85 0.08 0.41 +attroupent attrouper ver 0.14 2.36 0.00 0.27 ind:pre:3p; +attrouper attrouper ver 0.14 2.36 0.00 0.54 inf; +attrouperaient attrouper ver 0.14 2.36 0.00 0.07 cnd:pre:3p; +attroupèrent attrouper ver 0.14 2.36 0.00 0.14 ind:pas:3p; +attroupé attrouper ver m s 0.14 2.36 0.00 0.20 par:pas; +attroupée attrouper ver f s 0.14 2.36 0.00 0.07 par:pas; +attroupées attrouper ver f p 0.14 2.36 0.00 0.14 par:pas; +attroupés attrouper ver m p 0.14 2.36 0.01 0.41 par:pas; +atténua atténuer ver 2.47 12.64 0.00 0.54 ind:pas:3s; +atténuaient atténuer ver 2.47 12.64 0.00 0.68 ind:imp:3p; +atténuait atténuer ver 2.47 12.64 0.01 1.96 ind:imp:3s; +atténuant atténuer ver 2.47 12.64 0.00 0.41 par:pre; +atténuante atténuant adj f s 1.56 2.09 0.30 0.27 +atténuantes atténuant adj f p 1.56 2.09 1.27 1.82 +atténuateur atténuateur nom m s 0.09 0.00 0.09 0.00 +atténuation atténuation nom f s 0.01 0.07 0.01 0.00 +atténuations atténuation nom f p 0.01 0.07 0.00 0.07 +atténue atténuer ver 2.47 12.64 0.56 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +atténuent atténuer ver 2.47 12.64 0.08 0.27 ind:pre:3p; +atténuer atténuer ver 2.47 12.64 1.30 4.46 inf; +atténuera atténuer ver 2.47 12.64 0.37 0.14 ind:fut:3s; +atténueraient atténuer ver 2.47 12.64 0.00 0.14 cnd:pre:3p; +atténuez atténuer ver 2.47 12.64 0.03 0.00 imp:pre:2p;ind:pre:2p; +atténuons atténuer ver 2.47 12.64 0.01 0.00 imp:pre:1p; +atténuât atténuer ver 2.47 12.64 0.00 0.20 sub:imp:3s; +atténuèrent atténuer ver 2.47 12.64 0.00 0.07 ind:pas:3p; +atténué atténuer ver m s 2.47 12.64 0.07 1.22 par:pas; +atténuée atténuer ver f s 2.47 12.64 0.01 0.88 par:pas; +atténuées atténuer ver f p 2.47 12.64 0.01 0.41 par:pas; +atténués atténuer ver m p 2.47 12.64 0.02 0.07 par:pas; +atélectasie atélectasie nom f s 0.03 0.00 0.03 0.00 +atémi atémi nom m s 0.01 0.00 0.01 0.00 +atypique atypique adj s 0.57 0.34 0.26 0.14 +atypiques atypique adj p 0.57 0.34 0.31 0.20 +au_dedans au_dedans adv 0.92 4.86 0.92 4.86 +au_dehors au_dehors adv 0.91 11.42 0.91 11.42 +au_delà au_delà adv 21.77 52.91 21.77 52.91 +au_dessous au_dessous adv 2.98 24.59 2.98 24.59 +au_dessus au_dessus pre 0.02 0.07 0.02 0.07 +au_devant au_devant adv 0.98 11.08 0.98 11.08 +au au art_def m s 3737.75 5322.50 3737.75 5322.50 +aubade aubade nom f s 0.01 0.47 0.01 0.47 +aubadent aubader ver 0.00 0.07 0.00 0.07 ind:pre:3p; +aubain aubain nom m s 0.00 14.19 0.00 14.19 +aubaine aubaine nom f s 1.08 5.81 1.04 5.27 +aubaines aubaine nom f p 1.08 5.81 0.03 0.54 +aube aube pre 0.10 0.00 0.10 0.00 +auberge auberge nom f s 14.44 17.30 14.12 15.47 +auberges auberge nom f p 14.44 17.30 0.32 1.82 +aubergine aubergine nom f s 1.44 1.35 0.35 0.61 +aubergines aubergine nom f p 1.44 1.35 1.09 0.74 +aubergiste aubergiste nom s 1.93 3.24 1.91 2.91 +aubergistes aubergiste nom p 1.93 3.24 0.02 0.34 +aubes aube nom f p 30.32 57.77 0.27 1.96 +aubette aubette nom f s 0.00 0.34 0.00 0.34 +aubier aubier nom m s 0.00 0.47 0.00 0.47 +aubour aubour nom m 0.00 0.07 0.00 0.07 +aubère aubère adj s 0.00 0.14 0.00 0.14 +aubères aubère nom m p 0.00 0.20 0.00 0.14 +aubépine aubépine nom f s 0.06 2.03 0.05 0.81 +aubépines aubépine nom f p 0.06 2.03 0.01 1.22 +auburn auburn adj 0.23 1.15 0.23 1.15 +aubusson aubusson nom s 0.00 0.07 0.00 0.07 +aucubas aucuba nom m p 0.00 0.14 0.00 0.14 +aucun aucun adj_ind m s 175.78 180.95 175.78 180.95 +aucune aucune adj_ind f s 207.00 174.73 207.00 174.73 +aucunement aucunement adv_sup 1.01 5.81 1.01 5.81 +aucunes aucunes adj_ind f p 1.03 0.14 1.03 0.14 +aucuns aucuns adj_ind m p 1.22 3.11 1.22 3.11 +audace audace nom f s 5.12 19.46 5.10 16.55 +audaces audace nom f p 5.12 19.46 0.02 2.91 +audacieuse audacieux adj f s 4.76 7.03 1.46 1.76 +audacieusement audacieusement adv 0.09 0.47 0.09 0.47 +audacieuses audacieux adj f p 4.76 7.03 0.25 0.81 +audacieux audacieux adj m 4.76 7.03 3.06 4.46 +audible audible adj s 0.29 2.70 0.22 2.23 +audibles audible adj p 0.29 2.70 0.08 0.47 +audience audience nom f s 14.02 9.53 13.51 7.84 +audiences audience nom f p 14.02 9.53 0.50 1.69 +audiencia audiencia nom f s 0.00 0.07 0.00 0.07 +audienciers audiencier adj m p 0.00 0.07 0.00 0.07 +audimat audimat nom m 1.39 0.00 1.37 0.00 +audimats audimat nom m p 1.39 0.00 0.03 0.00 +audio_visuel audio_visuel adj m s 0.06 0.20 0.06 0.20 +audiovisuel audiovisuel adj f s 0.88 0.27 0.00 0.14 +audio audio adj 1.87 0.00 1.87 0.00 +audioconférence audioconférence nom f s 0.03 0.00 0.03 0.00 +audiogramme audiogramme nom m s 0.01 0.00 0.01 0.00 +audiométrie audiométrie nom f s 0.01 0.00 0.01 0.00 +audiophile audiophile nom s 0.03 0.00 0.03 0.00 +audiophone audiophone nom m s 0.02 0.00 0.02 0.00 +audiovisuel audiovisuel nom m s 0.16 0.14 0.16 0.14 +audiovisuelle audiovisuel adj f s 0.88 0.27 0.72 0.00 +audiovisuelles audiovisuel adj f p 0.88 0.27 0.00 0.07 +audit audit pre 0.03 0.20 0.03 0.20 +auditer auditer ver 0.01 0.00 0.01 0.00 inf; +auditeur auditeur nom m s 3.12 6.49 0.85 1.69 +auditeurs auditeur nom m p 3.12 6.49 2.21 4.46 +auditif auditif adj m s 1.25 1.28 0.45 0.54 +auditifs auditif adj m p 1.25 1.28 0.08 0.20 +audition audition nom f s 11.64 2.64 9.32 1.89 +auditionnais auditionner ver 2.57 0.27 0.10 0.00 ind:imp:1s;ind:imp:2s; +auditionne auditionner ver 2.57 0.27 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +auditionnent auditionner ver 2.57 0.27 0.10 0.00 ind:pre:3p; +auditionner auditionner ver 2.57 0.27 1.27 0.14 inf; +auditionnera auditionner ver 2.57 0.27 0.02 0.00 ind:fut:3s; +auditionnerais auditionner ver 2.57 0.27 0.02 0.00 cnd:pre:1s; +auditionnes auditionner ver 2.57 0.27 0.07 0.00 ind:pre:2s; +auditionnez auditionner ver 2.57 0.27 0.18 0.00 imp:pre:2p;ind:pre:2p; +auditionné auditionner ver m s 2.57 0.27 0.44 0.00 par:pas; +auditionnée auditionner ver f s 2.57 0.27 0.03 0.00 par:pas; +auditions audition nom f p 11.64 2.64 2.31 0.74 +auditive auditif adj f s 1.25 1.28 0.41 0.20 +auditives auditif adj f p 1.25 1.28 0.32 0.34 +auditoire auditoire nom m s 0.62 4.19 0.58 3.92 +auditoires auditoire nom m p 0.62 4.19 0.04 0.27 +auditorium auditorium nom m s 0.80 0.74 0.80 0.61 +auditoriums auditorium nom m p 0.80 0.74 0.00 0.14 +auditrice auditeur nom f s 3.12 6.49 0.06 0.07 +auditrices auditrice nom f p 0.04 0.00 0.04 0.00 +audits audit nom m p 0.54 0.14 0.06 0.00 +auge auge nom f s 0.52 2.23 0.49 1.76 +auges auge nom f p 0.52 2.23 0.03 0.47 +augment augment nom m s 0.20 0.00 0.20 0.00 +augmenta augmenter ver 29.86 20.95 0.05 0.88 ind:pas:3s; +augmentaient augmenter ver 29.86 20.95 0.06 0.95 ind:imp:3p; +augmentais augmenter ver 29.86 20.95 0.04 0.00 ind:imp:1s;ind:imp:2s; +augmentait augmenter ver 29.86 20.95 0.27 4.66 ind:imp:3s; +augmentant augmenter ver 29.86 20.95 0.57 1.01 par:pre; +augmentation augmentation nom f s 6.85 3.99 6.61 3.24 +augmentations augmentation nom f p 6.85 3.99 0.24 0.74 +augmente augmenter ver 29.86 20.95 7.58 4.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +augmentent augmenter ver 29.86 20.95 1.23 0.47 ind:pre:3p; +augmenter augmenter ver 29.86 20.95 9.94 4.80 inf; +augmentera augmenter ver 29.86 20.95 0.42 0.20 ind:fut:3s; +augmenterai augmenter ver 29.86 20.95 0.11 0.07 ind:fut:1s; +augmenteraient augmenter ver 29.86 20.95 0.02 0.07 cnd:pre:3p; +augmenterais augmenter ver 29.86 20.95 0.03 0.00 cnd:pre:2s; +augmenterait augmenter ver 29.86 20.95 0.51 0.00 cnd:pre:3s; +augmenteras augmenter ver 29.86 20.95 0.01 0.00 ind:fut:2s; +augmenterez augmenter ver 29.86 20.95 0.01 0.07 ind:fut:2p; +augmenteront augmenter ver 29.86 20.95 0.38 0.00 ind:fut:3p; +augmentez augmenter ver 29.86 20.95 1.31 0.27 imp:pre:2p;ind:pre:2p; +augmentions augmenter ver 29.86 20.95 0.02 0.07 ind:imp:1p; +augmentons augmenter ver 29.86 20.95 0.36 0.00 imp:pre:1p;ind:pre:1p; +augmentât augmenter ver 29.86 20.95 0.00 0.07 sub:imp:3s; +augmentèrent augmenter ver 29.86 20.95 0.11 0.14 ind:pas:3p; +augmenté augmenter ver m s 29.86 20.95 6.15 2.30 par:pas; +augmentée augmenter ver f s 29.86 20.95 0.54 0.34 par:pas; +augmentées augmenter ver f p 29.86 20.95 0.03 0.07 par:pas; +augmentés augmenter ver m p 29.86 20.95 0.13 0.27 par:pas; +augurai augurer ver 0.81 1.76 0.00 0.07 ind:pas:1s; +augurais augurer ver 0.81 1.76 0.01 0.14 ind:imp:1s; +augurait augurer ver 0.81 1.76 0.11 0.68 ind:imp:3s; +augural augural adj m s 0.03 0.34 0.03 0.14 +augurale augural adj f s 0.03 0.34 0.00 0.20 +augurant augurer ver 0.81 1.76 0.00 0.07 par:pre; +augure augure nom m s 3.21 3.38 2.13 2.77 +augurent augurer ver 0.81 1.76 0.14 0.07 ind:pre:3p; +augurer augurer ver 0.81 1.76 0.12 0.61 inf; +augurerais augurer ver 0.81 1.76 0.00 0.07 cnd:pre:1s; +augures augure nom m p 3.21 3.38 1.08 0.61 +auguste auguste adj s 1.12 2.09 1.00 1.89 +augustes auguste adj p 1.12 2.09 0.11 0.20 +augustin augustin nom m s 0.00 0.81 0.00 0.07 +augustinien augustinien adj m s 0.00 0.07 0.00 0.07 +augustins augustin nom m p 0.00 0.81 0.00 0.74 +aujourd_hui aujourd_hui adv 360.17 158.38 360.17 158.38 +aula aula nom f s 0.01 0.00 0.01 0.00 +aulique aulique adj m s 0.00 0.07 0.00 0.07 +aulnaie aulnaie nom f s 0.00 0.07 0.00 0.07 +aulne aulne nom m s 0.04 2.16 0.04 0.27 +aulnes aulne nom m p 0.04 2.16 0.00 1.89 +auloffée auloffée nom f s 0.00 0.07 0.00 0.07 +aulos aulos nom m 0.00 0.07 0.00 0.07 +aulx aulx nom m p 0.00 0.27 0.00 0.27 +aumône aumône nom f s 3.57 3.78 3.09 3.18 +aumônerie aumônerie nom f s 0.02 0.07 0.02 0.07 +aumônes aumône nom f p 3.57 3.78 0.48 0.61 +aumônier aumônier nom m s 1.51 4.53 1.44 3.72 +aumôniers aumônier nom m p 1.51 4.53 0.05 0.47 +aumônière aumônier nom f s 1.51 4.53 0.02 0.27 +aumônières aumônier nom f p 1.51 4.53 0.00 0.07 +aune aune nom s 0.72 1.15 0.44 0.68 +auner auner ver 0.00 0.07 0.00 0.07 inf; +aunes aune nom p 0.72 1.15 0.28 0.47 +auparavant auparavant adv_sup 14.11 41.62 14.11 41.62 +auprès auprès pre 29.95 93.45 29.95 93.45 +auquel auquel pro_rel m s 9.97 52.57 9.68 47.70 +aura avoir aux 18559.23 12800.81 39.72 39.86 ind:fut:3s; +aérage aérage nom m s 0.06 0.00 0.06 0.00 +aurai avoir aux 18559.23 12800.81 32.96 15.54 ind:fut:1s; +aéraient aérer ver 2.65 4.12 0.00 0.07 ind:imp:3p; +auraient avoir aux 18559.23 12800.81 34.48 69.53 cnd:pre:3p; +aurais avoir aux 18559.23 12800.81 354.36 236.35 cnd:pre:2s; +aérait aérer ver 2.65 4.12 0.01 0.41 ind:imp:3s; +aurait avoir aux 18559.23 12800.81 282.17 491.15 cnd:pre:3s; +auras avoir aux 18559.23 12800.81 16.96 7.03 ind:fut:2s; +aérateur aérateur nom m s 0.02 0.20 0.01 0.00 +aérateurs aérateur nom m p 0.02 0.20 0.01 0.20 +aération aération nom f s 2.02 1.35 2.00 1.35 +aérations aération nom f p 2.02 1.35 0.03 0.00 +aérer aérer ver 2.65 4.12 1.68 2.03 inf; +aureus aureus nom m 0.03 0.00 0.03 0.00 +aérez aérer ver 2.65 4.12 0.32 0.07 imp:pre:2p;ind:pre:2p; +aurez avoir aux 18559.23 12800.81 13.18 5.14 ind:fut:2p; +auriculaire auriculaire nom m s 0.42 1.01 0.42 0.95 +auriculaires auriculaire nom m p 0.42 1.01 0.00 0.07 +auricule auricule nom f s 0.00 0.07 0.00 0.07 +aérien aérien adj m s 13.71 21.15 4.84 6.08 +aérienne aérien adj f s 13.71 21.15 5.37 6.49 +aériennes aérien adj f p 13.71 21.15 2.24 6.15 +aériens aérien adj m p 13.71 21.15 1.26 2.43 +auriez avoir aux 18559.23 12800.81 46.75 16.96 cnd:pre:2p; +aurifiées aurifier ver f p 0.00 0.07 0.00 0.07 par:pas; +aurifère aurifère adj s 0.02 0.14 0.01 0.00 +aurifères aurifère adj p 0.02 0.14 0.01 0.14 +aurige aurige nom m s 0.00 0.14 0.00 0.14 +aurions avoir aux 18559.23 12800.81 10.35 17.57 cnd:pre:1p; +aéro_club aéro_club nom m s 0.01 0.07 0.01 0.07 +aéro aéro nom m 0.04 0.20 0.04 0.20 +aérobic aérobic nom m s 1.21 0.07 1.20 0.07 +aérobics aérobic nom m p 1.21 0.07 0.01 0.00 +aurochs aurochs nom m 0.00 0.81 0.00 0.81 +aérodrome aérodrome nom m s 2.20 4.26 1.92 3.31 +aérodromes aérodrome nom m p 2.20 4.26 0.28 0.95 +aérodynamique aérodynamique adj s 0.51 0.41 0.45 0.20 +aérodynamiques aérodynamique adj p 0.51 0.41 0.06 0.20 +aérodynamisme aérodynamisme nom m s 0.02 0.07 0.02 0.07 +aérofrein aérofrein nom m s 0.05 0.07 0.01 0.00 +aérofreins aérofrein nom m p 0.05 0.07 0.04 0.07 +aérogare aérogare nom f s 0.12 2.23 0.11 2.16 +aérogares aérogare nom f p 0.12 2.23 0.01 0.07 +aéroglisseur aéroglisseur nom m s 0.75 0.00 0.73 0.00 +aéroglisseurs aéroglisseur nom m p 0.75 0.00 0.02 0.00 +aérographe aérographe nom m s 0.04 0.07 0.04 0.07 +aérolithe aérolithe nom m s 0.00 0.47 0.00 0.34 +aérolithes aérolithe nom m p 0.00 0.47 0.00 0.14 +aérologie aérologie nom f s 0.01 0.00 0.01 0.00 +aéromobile aéromobile adj f s 0.06 0.00 0.06 0.00 +aéromodélisme aéromodélisme nom m s 0.00 0.14 0.00 0.14 +aéronaute aéronaute nom s 0.03 0.07 0.01 0.00 +aéronautes aéronaute nom p 0.03 0.07 0.02 0.07 +aéronautique aéronautique nom f s 0.58 0.41 0.45 0.41 +aéronautiques aéronautique nom f p 0.58 0.41 0.14 0.00 +aéronaval aéronaval adj m s 0.17 0.20 0.10 0.00 +aéronavale aéronavale nom f s 0.48 0.20 0.48 0.20 +aéronavales aéronaval adj f p 0.17 0.20 0.03 0.07 +aéronavals aéronaval adj m p 0.17 0.20 0.00 0.07 +aurone aurone nom f s 0.00 0.07 0.00 0.07 +aéronef aéronef nom m s 0.03 0.14 0.03 0.07 +aéronefs aéronef nom m p 0.03 0.14 0.00 0.07 +aérons aérer ver 2.65 4.12 0.01 0.07 imp:pre:1p;ind:pre:1p; +aurons avoir aux 18559.23 12800.81 4.22 5.14 ind:fut:1p; +auront avoir aux 18559.23 12800.81 7.46 14.05 ind:fut:3p; +aéropathie aéropathie nom f s 0.01 0.00 0.01 0.00 +aérophagie aérophagie nom f s 0.15 0.14 0.15 0.14 +aéroplane aéroplane nom m s 0.16 1.62 0.16 1.15 +aéroplanes aéroplane nom m p 0.16 1.62 0.00 0.47 +aéroport aéroport nom m s 33.13 8.99 31.44 7.91 +aéroports aéroport nom m p 33.13 8.99 1.69 1.08 +aéroporté aéroporté adj m s 0.68 0.34 0.10 0.07 +aéroportée aéroporté adj f s 0.68 0.34 0.44 0.07 +aéroportées aéroporté adj f p 0.68 0.34 0.09 0.00 +aéroportés aéroporté adj m p 0.68 0.34 0.05 0.20 +aéropostale aéropostale nom f s 0.01 0.00 0.01 0.00 +auroral auroral adj m s 0.00 0.07 0.00 0.07 +aurore aurore nom f s 3.68 11.62 3.01 9.39 +aurores aurore nom f p 3.68 11.62 0.68 2.23 +aérosol aérosol nom m s 0.61 0.54 0.44 0.47 +aérosols aérosol nom m p 0.61 0.54 0.17 0.07 +aérospatial aérospatial adj m s 0.17 0.00 0.07 0.00 +aérospatiale aérospatiale nom f s 0.12 0.00 0.12 0.00 +aérostat aérostat nom m s 0.16 0.00 0.16 0.00 +aérostier aérostier nom m s 0.00 0.20 0.00 0.14 +aérostiers aérostier nom m p 0.00 0.20 0.00 0.07 +aérotrains aérotrain nom m p 0.00 0.07 0.00 0.07 +aérèrent aérer ver 2.65 4.12 0.00 0.07 ind:pas:3p; +aéré aéré adj m s 0.50 2.36 0.28 0.68 +aérée aéré adj f s 0.50 2.36 0.05 0.95 +aérées aéré adj f p 0.50 2.36 0.00 0.47 +auréola auréoler ver 0.71 3.38 0.00 0.07 ind:pas:3s; +auréolaient auréoler ver 0.71 3.38 0.00 0.27 ind:imp:3p; +auréolaire auréolaire adj f s 0.13 0.00 0.13 0.00 +auréolait auréoler ver 0.71 3.38 0.00 0.54 ind:imp:3s; +auréolant auréoler ver 0.71 3.38 0.00 0.07 par:pre; +auréole auréole nom f s 1.29 6.35 1.04 4.59 +auréoler auréoler ver 0.71 3.38 0.00 0.07 inf; +auréoles auréole nom f p 1.29 6.35 0.25 1.76 +auréolé auréoler ver m s 0.71 3.38 0.44 1.15 par:pas; +auréolée auréolé adj f s 0.21 0.34 0.20 0.07 +auréolées auréoler ver f p 0.71 3.38 0.01 0.14 par:pas; +auréolés auréoler ver m p 0.71 3.38 0.12 0.41 par:pas; +auréomycine auréomycine nom f s 0.00 0.07 0.00 0.07 +aérés aéré adj m p 0.50 2.36 0.17 0.27 +ausculta ausculter ver 1.18 3.58 0.00 0.54 ind:pas:3s; +auscultais ausculter ver 1.18 3.58 0.00 0.14 ind:imp:1s; +auscultait ausculter ver 1.18 3.58 0.02 0.54 ind:imp:3s; +auscultant ausculter ver 1.18 3.58 0.01 0.34 par:pre; +auscultation auscultation nom f s 0.00 0.74 0.00 0.68 +auscultations auscultation nom f p 0.00 0.74 0.00 0.07 +ausculte ausculter ver 1.18 3.58 0.34 0.41 ind:pre:1s;ind:pre:3s; +auscultent ausculter ver 1.18 3.58 0.14 0.07 ind:pre:3p; +ausculter ausculter ver 1.18 3.58 0.57 0.88 inf; +auscultez ausculter ver 1.18 3.58 0.04 0.00 imp:pre:2p;ind:pre:2p; +ausculté ausculter ver m s 1.18 3.58 0.07 0.54 par:pas; +auscultées ausculter ver f p 1.18 3.58 0.01 0.00 par:pas; +auscultés ausculter ver m p 1.18 3.58 0.00 0.14 par:pas; +auspices auspice nom m p 0.21 0.95 0.21 0.95 +aussi aussi adv_sup 1402.33 1359.86 1402.33 1359.86 +aussitôt aussitôt adv 13.52 189.93 13.52 189.93 +aussière aussière nom f s 0.00 0.20 0.00 0.07 +aussières aussière nom f p 0.00 0.20 0.00 0.14 +austral austral adj m s 0.07 0.95 0.03 0.20 +australe austral adj f s 0.07 0.95 0.03 0.68 +australes austral adj f p 0.07 0.95 0.01 0.07 +australien australien adj m s 1.57 1.89 0.76 0.88 +australienne australien adj f s 1.57 1.89 0.48 0.41 +australiennes australien adj f p 1.57 1.89 0.06 0.00 +australiens australien adj m p 1.57 1.89 0.27 0.61 +australopithèque australopithèque nom m s 0.07 0.07 0.03 0.07 +australopithèques australopithèque nom m p 0.07 0.07 0.04 0.00 +austro_hongrois austro_hongrois adj m s 0.05 0.41 0.05 0.27 +austro_hongrois austro_hongrois adj f p 0.05 0.41 0.00 0.14 +austro austro adv 0.02 0.07 0.02 0.07 +austère austère adj s 1.52 10.95 1.26 8.24 +austèrement austèrement adv 0.00 0.14 0.00 0.14 +austères austère adj p 1.52 10.95 0.25 2.70 +austérité austérité nom f s 0.64 4.73 0.64 4.59 +austérités austérité nom f p 0.64 4.73 0.00 0.14 +ausweis ausweis nom m 0.00 0.41 0.00 0.41 +autan autan nom m s 0.00 0.07 0.00 0.07 +autant autant adv_sup 152.16 240.41 152.16 240.41 +autarcie autarcie nom f s 0.17 0.34 0.17 0.34 +autarcique autarcique adj s 0.01 0.27 0.01 0.20 +autarciques autarcique adj f p 0.01 0.27 0.00 0.07 +autel autel nom m s 8.27 15.34 7.62 13.31 +autels autel nom m p 8.27 15.34 0.66 2.03 +auteur auteur nom m s 23.52 41.89 17.62 32.30 +auteure auteur nom f s 23.52 41.89 0.01 0.00 +auteurs auteur nom m p 23.52 41.89 5.88 9.59 +authenticité authenticité nom f s 1.05 2.43 1.05 2.43 +authentifiait authentifier ver 0.79 0.61 0.00 0.07 ind:imp:3s; +authentification authentification nom f s 0.33 0.14 0.33 0.14 +authentifie authentifier ver 0.79 0.61 0.06 0.20 ind:pre:1s;ind:pre:3s; +authentifient authentifier ver 0.79 0.61 0.00 0.07 ind:pre:3p; +authentifier authentifier ver 0.79 0.61 0.32 0.14 inf; +authentifierait authentifier ver 0.79 0.61 0.00 0.07 cnd:pre:3s; +authentifiez authentifier ver 0.79 0.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +authentifié authentifier ver m s 0.79 0.61 0.21 0.00 par:pas; +authentifiée authentifier ver f s 0.79 0.61 0.10 0.07 par:pas; +authentifiées authentifier ver f p 0.79 0.61 0.04 0.00 par:pas; +authentifiés authentifier ver m p 0.79 0.61 0.04 0.00 par:pas; +authentiquant authentiquer ver 0.17 0.07 0.00 0.07 par:pre; +authentique authentique adj s 9.22 11.35 7.28 8.51 +authentiquement authentiquement adv 0.17 0.54 0.17 0.54 +authentiques authentique adj p 9.22 11.35 1.94 2.84 +autisme autisme nom m s 0.31 0.00 0.31 0.00 +autiste autiste adj s 0.58 0.27 0.46 0.20 +autistes autiste adj m p 0.58 0.27 0.12 0.07 +autistique autistique adj s 0.04 0.07 0.04 0.07 +auto_adhésif auto_adhésif adj f s 0.00 0.07 0.00 0.07 +auto_analyse auto_analyse nom f s 0.02 0.07 0.02 0.07 +auto_immun auto_immun adj m s 0.12 0.00 0.01 0.00 +auto_immun auto_immun adj f s 0.12 0.00 0.10 0.00 +auto_intoxication auto_intoxication nom f s 0.00 0.14 0.00 0.14 +auto_pilote auto_pilote nom s 0.10 0.00 0.10 0.00 +auto_stop auto_stop nom m s 1.06 0.74 1.06 0.74 +auto_stoppeur auto_stoppeur nom m s 0.63 0.20 0.28 0.00 +auto_stoppeur auto_stoppeur nom m p 0.63 0.20 0.27 0.00 +auto_stoppeur auto_stoppeur nom f s 0.63 0.20 0.08 0.07 +auto_stoppeuse auto_stoppeuse nom f p 0.04 0.00 0.04 0.00 +auto_tamponneuse auto_tamponneuse nom f s 0.26 0.00 0.04 0.00 +auto_tamponneuse auto_tamponneuse nom f p 0.26 0.00 0.22 0.00 +auto_école auto_école nom f s 0.58 0.07 0.58 0.07 +auto_érotisme auto_érotisme nom m s 0.02 0.00 0.02 0.00 +auto auto nom s 18.66 42.36 16.25 30.34 +autobiographe autobiographe nom s 0.00 0.20 0.00 0.20 +autobiographie autobiographie nom f s 1.26 1.35 1.12 0.68 +autobiographies autobiographie nom f p 1.26 1.35 0.14 0.68 +autobiographique autobiographique adj s 0.40 0.68 0.34 0.61 +autobiographiques autobiographique adj p 0.40 0.68 0.06 0.07 +autobronzant autobronzant nom m s 0.16 0.00 0.16 0.00 +autobus autobus nom m 4.67 26.28 4.67 26.28 +autocar autocar nom m s 2.33 8.85 2.23 7.70 +autocars autocar nom m p 2.33 8.85 0.10 1.15 +autocensure autocensure nom f s 0.35 0.34 0.35 0.34 +autocensurent autocensurer ver 0.01 0.14 0.00 0.07 ind:pre:3p; +autocensurer autocensurer ver 0.01 0.14 0.00 0.07 inf; +autochenille autochenille nom f s 0.00 0.07 0.00 0.07 +autochtone autochtone adj s 0.20 1.15 0.14 0.47 +autochtones autochtone nom p 0.84 1.69 0.72 1.35 +autoclave autoclave nom m s 0.01 0.14 0.01 0.14 +autocollant autocollant nom m s 2.07 0.00 0.73 0.00 +autocollante autocollant adj f s 0.09 0.27 0.01 0.00 +autocollantes autocollant adj f p 0.09 0.27 0.01 0.14 +autocollants autocollant nom m p 2.07 0.00 1.34 0.00 +autoconservation autoconservation nom f s 0.01 0.07 0.01 0.07 +autocrate autocrate adj s 0.02 0.00 0.02 0.00 +autocrates autocrate nom p 0.00 0.07 0.00 0.07 +autocratie autocratie nom f s 0.10 0.07 0.10 0.07 +autocratique autocratique adj s 0.03 0.20 0.03 0.14 +autocratiques autocratique adj p 0.03 0.20 0.00 0.07 +autocritique autocritique nom f s 0.16 1.22 0.16 1.15 +autocritiquer autocritiquer ver 0.01 0.00 0.01 0.00 inf; +autocritiques autocritique nom f p 0.16 1.22 0.00 0.07 +autocréation autocréation nom f s 0.00 0.07 0.00 0.07 +autocuiseur autocuiseur nom m s 0.28 0.00 0.28 0.00 +autodafé autodafé nom m s 0.07 0.61 0.07 0.41 +autodafés autodafé nom m p 0.07 0.61 0.00 0.20 +autodestructeur autodestructeur adj m s 0.35 0.07 0.20 0.00 +autodestructeurs autodestructeur adj m p 0.35 0.07 0.04 0.00 +autodestructible autodestructible adj s 0.00 0.07 0.00 0.07 +autodestruction autodestruction nom f s 2.14 0.47 2.14 0.47 +autodestructrice autodestructeur adj f s 0.35 0.07 0.12 0.07 +autodidacte autodidacte nom s 0.30 0.74 0.27 0.61 +autodidactes autodidacte nom p 0.30 0.74 0.03 0.14 +autodidactique autodidactique adj f s 0.01 0.07 0.01 0.07 +autodirecteur autodirecteur adj m s 0.12 0.00 0.12 0.00 +autodiscipline autodiscipline nom f s 0.18 0.00 0.18 0.00 +autodrome autodrome nom m s 0.01 0.00 0.01 0.00 +autodéfense autodéfense nom f s 1.74 0.47 1.74 0.47 +autodénigrement autodénigrement nom m s 0.01 0.07 0.01 0.07 +autodérision autodérision nom f s 0.04 0.00 0.04 0.00 +autodétermination autodétermination nom f s 0.47 0.00 0.47 0.00 +autodétruira autodétruire ver 0.51 0.00 0.07 0.00 ind:fut:3s; +autodétruire autodétruire ver 0.51 0.00 0.21 0.00 inf; +autodétruiront autodétruire ver 0.51 0.00 0.02 0.00 ind:fut:3p; +autodétruisant autodétruire ver 0.51 0.00 0.01 0.00 par:pre; +autodétruisent autodétruire ver 0.51 0.00 0.04 0.00 ind:pre:3p; +autodétruit autodétruire ver m s 0.51 0.00 0.11 0.00 ind:pre:3s;par:pas; +autodétruite autodétruire ver f s 0.51 0.00 0.04 0.00 par:pas; +autofinancement autofinancement nom m s 0.01 0.00 0.01 0.00 +autofocus autofocus adj 0.13 0.00 0.13 0.00 +autogenèse autogenèse nom f s 0.02 0.00 0.02 0.00 +autogestion autogestion nom f s 0.14 0.20 0.14 0.20 +autogire autogire nom m s 0.02 0.07 0.01 0.07 +autogires autogire nom m p 0.02 0.07 0.01 0.00 +autographe autographe nom m s 8.52 1.82 7.35 0.95 +autographes autographe nom m p 8.52 1.82 1.17 0.88 +autographier autographier ver 0.01 0.07 0.00 0.07 inf; +autographié autographier ver m s 0.01 0.07 0.01 0.00 par:pas; +autogène autogène adj f s 0.01 0.07 0.01 0.07 +autoguidage autoguidage nom m s 0.05 0.00 0.05 0.00 +autoguidé autoguidé adj m s 0.01 0.00 0.01 0.00 +autogérer autogérer ver 0.13 0.00 0.13 0.00 inf; +autogérée autogéré adj f s 0.12 0.00 0.12 0.00 +autolimite autolimiter ver 0.01 0.00 0.01 0.00 ind:pre:3s; +autologues autologue adj m p 0.01 0.00 0.01 0.00 +autolysat autolysat nom m s 0.00 0.07 0.00 0.07 +autolyse autolyse nom f s 0.01 0.00 0.01 0.00 +automate automate nom s 0.50 5.54 0.19 4.12 +automates automate nom p 0.50 5.54 0.30 1.42 +automatico automatico adv 0.00 0.07 0.00 0.07 +automation automation nom f s 0.14 0.14 0.14 0.14 +automatique automatique adj s 8.60 7.57 6.60 5.74 +automatiquement automatiquement adv 2.61 3.85 2.61 3.85 +automatiques automatique adj p 8.60 7.57 2.00 1.82 +automatisation automatisation nom f s 0.14 0.14 0.14 0.14 +automatisme automatisme nom m s 0.18 1.22 0.17 1.08 +automatismes automatisme nom m p 0.18 1.22 0.01 0.14 +automatisé automatiser ver m s 0.28 0.00 0.20 0.00 par:pas; +automatisée automatiser ver f s 0.28 0.00 0.04 0.00 par:pas; +automatisées automatisé adj f p 0.24 0.00 0.04 0.00 +automatisés automatiser ver m p 0.28 0.00 0.04 0.00 par:pas; +automitrailleuse automitrailleur nom f s 0.10 1.76 0.00 0.47 +automitrailleuses automitrailleur nom f p 0.10 1.76 0.10 1.28 +automnal automnal adj m s 0.32 1.76 0.11 1.08 +automnale automnal adj f s 0.32 1.76 0.11 0.47 +automnales automnal adj f p 0.32 1.76 0.10 0.20 +automne automne nom m s 16.91 43.65 16.88 42.97 +automnes automne nom m p 16.91 43.65 0.03 0.68 +automobile_club automobile_club nom f s 0.03 0.00 0.03 0.00 +automobile automobile nom f s 3.71 19.46 2.96 12.70 +automobiles automobile nom f p 3.71 19.46 0.76 6.76 +automobiliste automobiliste nom s 0.39 3.78 0.20 1.76 +automobilistes automobiliste nom p 0.39 3.78 0.19 2.03 +automoteur automoteur adj m s 0.02 0.20 0.01 0.00 +automoteurs automoteur adj m p 0.02 0.20 0.00 0.07 +automotrice automoteur adj f s 0.02 0.20 0.01 0.14 +automédication automédication nom f s 0.08 0.00 0.08 0.00 +automutilation automutilation nom f s 0.20 0.27 0.20 0.27 +automutiler automutiler ver 0.10 0.00 0.10 0.00 inf; +autoneige autoneige nom f s 0.04 0.00 0.04 0.00 +autoneiges autoneige nom f p 0.04 0.00 0.01 0.00 +autonettoyant autonettoyant adj m s 0.03 0.07 0.02 0.07 +autonettoyante autonettoyant adj f s 0.03 0.07 0.01 0.00 +autonome autonome adj s 2.08 2.91 1.70 1.89 +autonomes autonome adj p 2.08 2.91 0.38 1.01 +autonomie autonomie nom f s 2.76 2.16 2.76 2.16 +autonomique autonomique adj m s 0.03 0.00 0.03 0.00 +autonomistes autonomiste nom p 0.00 0.14 0.00 0.14 +autopilote autopilote nom m s 0.01 0.00 0.01 0.00 +autoplastie autoplastie nom f s 0.01 0.00 0.01 0.00 +autoportrait autoportrait nom m s 0.85 0.34 0.71 0.14 +autoportraits autoportrait nom m p 0.85 0.34 0.14 0.20 +autoportée autoporté adj f s 0.00 0.07 0.00 0.07 +autoproclamé autoproclamer ver m s 0.11 0.00 0.09 0.00 par:pas; +autoproclamée autoproclamer ver f s 0.11 0.00 0.02 0.00 par:pas; +autoproduit autoproduit nom m s 0.01 0.07 0.01 0.07 +autopropulseur autopropulseur nom m s 0.01 0.00 0.01 0.00 +autopropulsé autopropulsé adj m s 0.07 0.00 0.01 0.00 +autopropulsée autopropulsé adj f s 0.07 0.00 0.04 0.00 +autopropulsés autopropulsé adj m p 0.07 0.00 0.02 0.00 +autopsia autopsier ver 0.46 0.41 0.00 0.07 ind:pas:3s; +autopsiais autopsier ver 0.46 0.41 0.01 0.07 ind:imp:1s;ind:imp:2s; +autopsie autopsie nom f s 12.23 1.55 11.57 1.49 +autopsier autopsier ver 0.46 0.41 0.28 0.20 inf; +autopsies autopsie nom f p 12.23 1.55 0.66 0.07 +autopsié autopsier ver m s 0.46 0.41 0.16 0.07 par:pas; +autopunition autopunition nom f s 0.03 0.00 0.03 0.00 +autoradio autoradio nom m s 1.40 0.07 0.81 0.07 +autoradios autoradio nom m p 1.40 0.07 0.59 0.00 +autorail autorail nom m s 0.00 0.14 0.00 0.14 +autoreproduction autoreproduction nom f s 0.01 0.00 0.01 0.00 +autorisa autoriser ver 30.28 20.88 0.07 0.74 ind:pas:3s; +autorisai autoriser ver 30.28 20.88 0.00 0.07 ind:pas:1s; +autorisaient autoriser ver 30.28 20.88 0.03 0.74 ind:imp:3p; +autorisais autoriser ver 30.28 20.88 0.12 0.00 ind:imp:1s; +autorisait autoriser ver 30.28 20.88 0.22 4.53 ind:imp:3s; +autorisant autoriser ver 30.28 20.88 0.83 0.95 par:pre; +autorisassent autoriser ver 30.28 20.88 0.00 0.07 sub:imp:3p; +autorisation autorisation nom f s 21.10 10.07 19.55 8.92 +autorisations autorisation nom f p 21.10 10.07 1.55 1.15 +autorise autoriser ver 30.28 20.88 6.57 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +autorisent autoriser ver 30.28 20.88 0.53 0.34 ind:pre:3p; +autoriser autoriser ver 30.28 20.88 3.16 1.69 inf; +autorisera autoriser ver 30.28 20.88 0.20 0.14 ind:fut:3s; +autoriserai autoriser ver 30.28 20.88 0.70 0.00 ind:fut:1s; +autoriserais autoriser ver 30.28 20.88 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +autoriserait autoriser ver 30.28 20.88 0.29 0.41 cnd:pre:3s; +autoriserez autoriser ver 30.28 20.88 0.14 0.00 ind:fut:2p; +autoriserons autoriser ver 30.28 20.88 0.02 0.00 ind:fut:1p; +autoriseront autoriser ver 30.28 20.88 0.09 0.00 ind:fut:3p; +autorises autoriser ver 30.28 20.88 0.44 0.07 ind:pre:2s; +autorisez autoriser ver 30.28 20.88 0.96 0.27 imp:pre:2p;ind:pre:2p; +autorisiez autoriser ver 30.28 20.88 0.03 0.07 ind:imp:2p; +autorisions autoriser ver 30.28 20.88 0.00 0.07 ind:imp:1p; +autorisons autoriser ver 30.28 20.88 0.15 0.00 imp:pre:1p;ind:pre:1p; +autorisât autoriser ver 30.28 20.88 0.00 0.41 sub:imp:3s; +autorisèrent autoriser ver 30.28 20.88 0.00 0.14 ind:pas:3p; +autorisé autoriser ver m s 30.28 20.88 10.22 3.78 par:pas; +autorisée autoriser ver f s 30.28 20.88 2.55 1.22 par:pas; +autorisées autoriser ver f p 30.28 20.88 0.71 0.41 par:pas; +autorisés autoriser ver m p 30.28 20.88 2.19 1.49 par:pas; +autoritaire autoritaire adj s 1.35 3.65 1.19 3.31 +autoritairement autoritairement adv 0.01 0.00 0.01 0.00 +autoritaires autoritaire adj p 1.35 3.65 0.16 0.34 +autoritarisme autoritarisme nom m s 0.02 0.07 0.02 0.07 +autorité autorité nom f s 32.95 77.03 18.62 56.22 +autorités autorité nom f p 32.95 77.03 14.32 20.81 +autoroute autoroute nom f s 14.76 15.00 13.81 12.77 +autoroutes autoroute nom f p 14.76 15.00 0.95 2.23 +autoroutiers autoroutier adj m p 0.03 0.14 0.01 0.07 +autoroutière autoroutier adj f s 0.03 0.14 0.01 0.07 +autorégulateur autorégulateur adj m s 0.01 0.00 0.01 0.00 +autorégulation autorégulation nom f s 0.14 0.00 0.14 0.00 +autorégule autoréguler ver 0.01 0.00 0.01 0.00 ind:pre:3s; +autos auto nom f p 18.66 42.36 2.42 12.03 +autosatisfaction autosatisfaction nom f s 0.13 0.27 0.13 0.27 +autostop autostop nom m s 0.07 0.00 0.07 0.00 +autostrade autostrade nom f s 0.02 0.27 0.02 0.20 +autostrades autostrade nom f p 0.02 0.27 0.00 0.07 +autosubsistance autosubsistance nom f s 0.01 0.00 0.01 0.00 +autosuffisance autosuffisance nom f s 0.04 0.00 0.04 0.00 +autosuffisant autosuffisant adj m s 0.04 0.00 0.01 0.00 +autosuffisants autosuffisant adj m p 0.04 0.00 0.03 0.00 +autosuggestion autosuggestion nom f s 0.09 0.14 0.09 0.14 +autosuggestionna autosuggestionner ver 0.00 0.07 0.00 0.07 ind:pas:3s; +autosurveillance autosurveillance nom f s 0.02 0.00 0.02 0.00 +autour autour adv_sup 87.02 361.55 87.02 361.55 +autoérotique autoérotique adj f s 0.03 0.00 0.03 0.00 +autours autour nom_sup m p 0.42 2.03 0.16 0.07 +autre autre pro_ind s 473.33 661.82 473.33 661.82 +autrefois autrefois pro_ind f s 0.00 0.07 0.00 0.07 +autrement autrement adv 40.16 62.77 40.16 62.77 +autres autres pro_ind p 249.70 375.14 249.70 375.14 +autrichien autrichien adj m s 2.67 7.36 1.26 2.91 +autrichienne autrichien adj f s 2.67 7.36 0.88 1.89 +autrichiennes autrichien adj f p 2.67 7.36 0.03 0.88 +autrichiens autrichiens pro_ind m p 0.00 0.14 0.00 0.14 +autruche autruche nom f s 3.53 3.04 2.79 2.43 +autruches autruche nom f p 3.53 3.04 0.74 0.61 +autrui autrui pro_ind m s 6.56 12.30 6.56 12.30 +auvent auvent nom m s 0.46 6.89 0.31 6.28 +auvents auvent nom m p 0.46 6.89 0.14 0.61 +auvergnat auvergnat nom m s 0.01 2.50 0.00 1.28 +auvergnate auvergnat nom f s 0.01 2.50 0.01 0.41 +auvergnates auvergnat adj f p 0.00 2.23 0.00 0.20 +auvergnats auvergnat nom m p 0.01 2.50 0.00 0.74 +auvergne auvergne nom f s 0.00 1.22 0.00 1.22 +auverpin auverpin nom m s 0.00 0.54 0.00 0.41 +auverpins auverpin nom m p 0.00 0.54 0.00 0.14 +aux_aguets aux_aguets adv 0.87 5.88 0.87 5.88 +aux aux art_def p 835.65 1907.57 835.65 1907.57 +auxdits auxdits pre 0.00 0.14 0.00 0.14 +auxerrois auxerrois nom m 0.00 0.07 0.00 0.07 +auxiliaire auxiliaire adj s 1.90 2.09 1.52 1.15 +auxiliaires auxiliaire nom p 1.42 3.51 0.73 2.03 +auxquelles auxquelles pro_rel f p 3.57 22.09 3.53 20.54 +auxquels auxquels pro_rel m p 3.35 26.28 3.31 23.72 +avachi avachir ver m s 0.33 2.23 0.23 0.74 par:pas; +avachie avachi adj f s 0.24 3.58 0.05 0.74 +avachies avachi adj f p 0.24 3.58 0.00 0.41 +avachir avachir ver 0.33 2.23 0.02 0.07 inf; +avachirait avachir ver 0.33 2.23 0.00 0.07 cnd:pre:3s; +avachirons avachir ver 0.33 2.23 0.00 0.07 ind:fut:1p; +avachis avachi adj m p 0.24 3.58 0.14 1.08 +avachissait avachir ver 0.33 2.23 0.00 0.07 ind:imp:3s; +avachissement avachissement nom m s 0.01 0.47 0.01 0.47 +avachissent avachir ver 0.33 2.23 0.01 0.00 ind:pre:3p; +avachit avachir ver 0.33 2.23 0.00 0.47 ind:pre:3s;ind:pas:3s; +avaient avoir aux 18559.23 12800.81 54.37 524.26 ind:imp:3p; +avais avoir aux 18559.23 12800.81 412.04 566.76 ind:imp:2s; +avait avoir aux 18559.23 12800.81 395.71 3116.42 ind:imp:3s; +aval aval nom m s 2.08 3.99 2.08 3.99 +avala avaler ver 35.89 65.27 0.23 7.97 ind:pas:3s; +avalage avalage nom m s 0.03 0.07 0.03 0.07 +avalai avaler ver 35.89 65.27 0.00 1.69 ind:pas:1s; +avalaient avaler ver 35.89 65.27 0.16 0.61 ind:imp:3p; +avalais avaler ver 35.89 65.27 0.03 0.74 ind:imp:1s; +avalait avaler ver 35.89 65.27 0.46 5.95 ind:imp:3s; +avalanche avalanche nom f s 2.75 5.68 1.89 4.86 +avalanches avalanche nom f p 2.75 5.68 0.86 0.81 +avalant avaler ver 35.89 65.27 0.28 2.84 par:pre; +avale avaler ver 35.89 65.27 8.02 9.26 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avalement avalement nom m s 0.00 0.14 0.00 0.14 +avalent avaler ver 35.89 65.27 0.62 1.15 ind:pre:3p; +avaler avaler ver 35.89 65.27 11.95 19.39 inf; +avalera avaler ver 35.89 65.27 0.54 0.07 ind:fut:3s; +avalerai avaler ver 35.89 65.27 0.35 0.20 ind:fut:1s; +avaleraient avaler ver 35.89 65.27 0.01 0.00 cnd:pre:3p; +avalerais avaler ver 35.89 65.27 0.39 0.20 cnd:pre:1s; +avalerait avaler ver 35.89 65.27 0.19 0.41 cnd:pre:3s; +avaleras avaler ver 35.89 65.27 0.03 0.07 ind:fut:2s; +avaleriez avaler ver 35.89 65.27 0.02 0.07 cnd:pre:2p; +avaleront avaler ver 35.89 65.27 0.36 0.14 ind:fut:3p; +avales avaler ver 35.89 65.27 1.11 0.14 ind:pre:2s; +avaleur avaleur nom m s 0.68 0.61 0.17 0.41 +avaleurs avaleur nom m p 0.68 0.61 0.03 0.20 +avaleuse avaleur nom f s 0.68 0.61 0.47 0.00 +avalez avaler ver 35.89 65.27 1.73 0.14 imp:pre:2p;ind:pre:2p; +avaliez avaler ver 35.89 65.27 0.01 0.00 ind:imp:2p; +avaliser avaliser ver 0.09 0.14 0.08 0.14 inf; +avaliseur avaliseur nom m s 0.03 0.00 0.03 0.00 +avalisés avaliser ver m p 0.09 0.14 0.01 0.00 par:pas; +avaloires avaloire nom f p 0.00 0.07 0.00 0.07 +avalâmes avaler ver 35.89 65.27 0.00 0.07 ind:pas:1p; +avalons avaler ver 35.89 65.27 0.03 0.14 imp:pre:1p;ind:pre:1p; +avalât avaler ver 35.89 65.27 0.00 0.07 sub:imp:3s; +avalèrent avaler ver 35.89 65.27 0.01 0.07 ind:pas:3p; +avalé avaler ver m s 35.89 65.27 7.55 9.46 par:pas; +avalée avaler ver f s 35.89 65.27 0.71 2.77 par:pas; +avalées avaler ver f p 35.89 65.27 0.38 0.74 par:pas; +avalés avaler ver m p 35.89 65.27 0.74 0.95 par:pas; +avance avance nom f s 69.25 82.30 65.68 77.64 +avancement avancement nom m s 3.34 3.18 3.30 2.97 +avancements avancement nom m p 3.34 3.18 0.04 0.20 +avancent avancer ver 95.62 195.00 4.63 7.50 ind:pre:3p; +avancer avancer ver 95.62 195.00 22.65 30.41 inf; +avancera avancer ver 95.62 195.00 1.37 0.74 ind:fut:3s; +avancerai avancer ver 95.62 195.00 0.29 0.20 ind:fut:1s; +avancerais avancer ver 95.62 195.00 0.06 0.07 cnd:pre:1s; +avancerait avancer ver 95.62 195.00 0.84 1.15 cnd:pre:3s; +avancerez avancer ver 95.62 195.00 0.04 0.00 ind:fut:2p; +avancerons avancer ver 95.62 195.00 0.24 0.00 ind:fut:1p; +avanceront avancer ver 95.62 195.00 0.10 0.41 ind:fut:3p; +avances avance nom f p 69.25 82.30 3.57 4.66 +avancez avancer ver 95.62 195.00 19.95 0.54 imp:pre:2p;ind:pre:2p; +avanciez avancer ver 95.62 195.00 0.06 0.14 ind:imp:2p; +avancions avancer ver 95.62 195.00 0.17 2.43 ind:imp:1p; +avancèrent avancer ver 95.62 195.00 0.04 2.43 ind:pas:3p; +avancé avancer ver m s 95.62 195.00 6.08 12.23 par:pas; +avancée avancé adj f s 6.71 11.15 2.19 3.92 +avancées avancée nom f p 2.25 4.39 0.70 0.81 +avancés avancé adj m p 6.71 11.15 1.08 1.28 +avanie avanie nom f s 0.04 1.42 0.04 0.27 +avanies avanie nom f p 0.04 1.42 0.00 1.15 +avant_avant_dernier avant_avant_dernier nom m s 0.00 0.07 0.00 0.07 +avant_bec avant_bec nom m s 0.01 0.00 0.01 0.00 +avant_bras avant_bras nom m 0.84 12.70 0.84 12.70 +avant_centre avant_centre nom m s 0.28 0.20 0.28 0.20 +avant_clou avant_clou nom m p 0.00 0.07 0.00 0.07 +avant_corps avant_corps nom m 0.00 0.07 0.00 0.07 +avant_coureur avant_coureur adj m s 0.32 1.62 0.02 0.74 +avant_coureur avant_coureur adj m p 0.32 1.62 0.29 0.88 +avant_courrier avant_courrier adj f s 0.00 0.07 0.00 0.07 +avant_courrier avant_courrier nom f p 0.00 0.07 0.00 0.07 +avant_cour avant_cour nom f p 0.00 0.07 0.00 0.07 +avant_dîner avant_dîner nom m 0.00 0.07 0.00 0.07 +avant_dernier avant_dernier adj m s 0.45 1.96 0.11 0.88 +avant_dernier avant_dernier adj f s 0.45 1.96 0.34 1.08 +avant_garde avant_garde nom f s 1.52 7.91 1.52 7.09 +avant_garde avant_garde nom f p 1.52 7.91 0.00 0.81 +avant_gardiste avant_gardiste adj s 0.23 0.20 0.21 0.14 +avant_gardiste avant_gardiste adj m p 0.23 0.20 0.03 0.07 +avant_gauche avant_gauche adj 0.10 0.00 0.10 0.00 +avant_goût avant_goût nom m s 1.25 1.62 1.25 1.62 +avant_guerre avant_guerre nom s 0.65 7.16 0.65 7.16 +avant_hier avant_hier adv 6.69 8.78 6.69 8.78 +avant_mont avant_mont nom m p 0.01 0.00 0.01 0.00 +avant_papier avant_papier nom m s 0.00 0.20 0.00 0.20 +avant_plan avant_plan nom m s 0.02 0.07 0.02 0.07 +avant_port avant_port nom m s 0.00 0.07 0.00 0.07 +avant_poste avant_poste nom m s 2.15 3.72 1.52 0.27 +avant_poste avant_poste nom m p 2.15 3.72 0.62 3.45 +avant_première avant_première nom f s 0.50 0.41 0.45 0.41 +avant_première avant_première nom f p 0.50 0.41 0.05 0.00 +avant_printemps avant_printemps nom m 0.00 0.07 0.00 0.07 +avant_projet avant_projet nom m s 0.04 0.00 0.04 0.00 +avant_propos avant_propos nom m 0.05 0.41 0.05 0.41 +avant_scène avant_scène nom f s 0.73 0.88 0.73 0.68 +avant_scène avant_scène nom f p 0.73 0.88 0.00 0.20 +avant_toit avant_toit nom m s 0.03 0.27 0.01 0.27 +avant_toit avant_toit nom m p 0.03 0.27 0.02 0.00 +avant_train avant_train nom m s 0.02 0.34 0.01 0.20 +avant_train avant_train nom m p 0.02 0.34 0.01 0.14 +avant_trou avant_trou nom m s 0.01 0.00 0.01 0.00 +avant_veille avant_veille nom f s 0.01 3.65 0.01 3.65 +avant avant pre 529.51 574.32 529.51 574.32 +avantage avantage nom m s 24.63 32.16 16.95 21.28 +avantageaient avantager ver 0.95 2.09 0.01 0.00 ind:imp:3p; +avantageais avantager ver 0.95 2.09 0.00 0.07 ind:imp:1s; +avantageait avantager ver 0.95 2.09 0.03 0.20 ind:imp:3s; +avantageant avantager ver 0.95 2.09 0.00 0.07 par:pre; +avantagent avantager ver 0.95 2.09 0.03 0.00 ind:pre:3p; +avantager avantager ver 0.95 2.09 0.07 0.14 inf; +avantagera avantager ver 0.95 2.09 0.04 0.07 ind:fut:3s; +avantages avantage nom m p 24.63 32.16 7.68 10.88 +avantageuse avantageux adj f s 1.36 5.07 0.36 1.01 +avantageusement avantageusement adv 0.16 1.42 0.16 1.42 +avantageuses avantageux adj f p 1.36 5.07 0.04 0.54 +avantageux avantageux adj m 1.36 5.07 0.95 3.51 +avantagé avantager ver m s 0.95 2.09 0.12 0.47 par:pas; +avantagée avantager ver f s 0.95 2.09 0.05 0.07 par:pas; +avantagés avantager ver m p 0.95 2.09 0.01 0.20 par:pas; +avança avancer ver 95.62 195.00 0.48 27.97 ind:pas:3s; +avançai avancer ver 95.62 195.00 0.14 2.16 ind:pas:1s; +avançaient avancer ver 95.62 195.00 0.27 9.05 ind:imp:3p; +avançais avancer ver 95.62 195.00 0.47 4.19 ind:imp:1s;ind:imp:2s; +avançait avancer ver 95.62 195.00 1.70 34.32 ind:imp:3s; +avançant avancer ver 95.62 195.00 0.50 10.41 par:pre; +avançâmes avancer ver 95.62 195.00 0.00 0.20 ind:pas:1p; +avançons avancer ver 95.62 195.00 1.54 1.82 imp:pre:1p;ind:pre:1p; +avançât avancer ver 95.62 195.00 0.00 0.27 sub:imp:3s; +avants avant nom_sup m p 8.05 21.35 0.11 0.14 +avare avare adj s 2.69 7.09 2.26 5.95 +avarement avarement adv 0.00 0.20 0.00 0.20 +avares avare adj p 2.69 7.09 0.43 1.15 +avarice avarice nom f s 1.18 3.24 1.18 3.18 +avarices avarice nom f p 1.18 3.24 0.00 0.07 +avaricieuse avaricieux adj f s 0.00 0.27 0.00 0.14 +avaricieusement avaricieusement adv 0.00 0.14 0.00 0.14 +avaricieux avaricieux nom m 0.01 0.07 0.01 0.07 +avarie avarie nom f s 1.19 1.08 0.25 0.41 +avarient avarier ver 0.23 0.27 0.00 0.07 ind:pre:3p; +avaries avarie nom f p 1.19 1.08 0.94 0.68 +avarié avarié adj m s 0.92 1.69 0.20 0.54 +avariée avarié adj f s 0.92 1.69 0.35 0.41 +avariées avarié adj f p 0.92 1.69 0.16 0.27 +avariés avarié adj m p 0.92 1.69 0.21 0.47 +avaro avaro nom m s 0.00 0.41 0.00 0.20 +avaros avaro nom m p 0.00 0.41 0.00 0.20 +avatar avatar nom m s 2.55 4.93 2.41 2.91 +avatars avatar nom m p 2.55 4.93 0.14 2.03 +ave ave nom m 3.75 2.36 3.75 2.36 +avec avec pre 3704.89 4000.41 3704.89 4000.41 +avelines aveline nom f p 0.00 0.07 0.00 0.07 +avenant avenant adj m s 0.78 2.84 0.52 0.88 +avenante avenant adj f s 0.78 2.84 0.26 1.15 +avenantes avenant adj f p 0.78 2.84 0.00 0.61 +avenants avenant nom m p 0.27 0.88 0.01 0.00 +avenir avenir nom m s 72.61 113.72 72.47 113.18 +avenirs avenir nom m p 72.61 113.72 0.14 0.54 +avent avent nom m s 0.06 0.47 0.06 0.47 +aventura aventurer ver 2.63 12.57 0.14 0.54 ind:pas:3s; +aventurai aventurer ver 2.63 12.57 0.01 0.27 ind:pas:1s; +aventuraient aventurer ver 2.63 12.57 0.03 0.54 ind:imp:3p; +aventurais aventurer ver 2.63 12.57 0.00 0.07 ind:imp:1s; +aventurait aventurer ver 2.63 12.57 0.04 1.01 ind:imp:3s; +aventurant aventurer ver 2.63 12.57 0.01 0.54 par:pre; +aventure aventure nom f s 29.66 84.86 22.54 54.86 +aventurent aventurer ver 2.63 12.57 0.09 0.54 ind:pre:3p; +aventurer aventurer ver 2.63 12.57 0.60 3.99 inf; +aventurerai aventurer ver 2.63 12.57 0.00 0.07 ind:fut:1s; +aventurerais aventurer ver 2.63 12.57 0.06 0.00 cnd:pre:1s; +aventurerait aventurer ver 2.63 12.57 0.03 0.07 cnd:pre:3s; +aventures aventure nom f p 29.66 84.86 7.13 30.00 +aventureuse aventureux adj f s 0.95 3.65 0.11 1.49 +aventureuses aventureux adj f p 0.95 3.65 0.15 0.47 +aventureux aventureux adj m 0.95 3.65 0.69 1.69 +aventurez aventurer ver 2.63 12.57 0.07 0.00 imp:pre:2p;ind:pre:2p; +aventurier aventurier nom m s 2.36 7.50 0.92 3.72 +aventuriers aventurier nom m p 2.36 7.50 1.05 2.43 +aventurines aventurine nom f p 0.00 0.07 0.00 0.07 +aventurions aventurer ver 2.63 12.57 0.01 0.14 ind:imp:1p; +aventurière aventurier nom f s 2.36 7.50 0.39 0.95 +aventurières aventurière nom f p 0.16 0.00 0.16 0.00 +aventurons aventurer ver 2.63 12.57 0.04 0.14 imp:pre:1p;ind:pre:1p; +aventurât aventurer ver 2.63 12.57 0.00 0.14 sub:imp:3s; +aventurèrent aventurer ver 2.63 12.57 0.00 0.07 ind:pas:3p; +aventuré aventurer ver m s 2.63 12.57 0.23 1.49 par:pas; +aventurée aventurer ver f s 2.63 12.57 0.22 0.68 par:pas; +aventurées aventurer ver f p 2.63 12.57 0.00 0.07 par:pas; +aventurés aventurer ver m p 2.63 12.57 0.14 0.54 par:pas; +avenu avenu adj m s 0.07 1.42 0.05 0.41 +avenue avenue nom f s 8.70 47.70 8.19 40.81 +avenues avenue nom f p 8.70 47.70 0.52 6.89 +avenus avenu adj m p 0.07 1.42 0.03 0.27 +avers avers nom m 0.00 0.14 0.00 0.14 +averse averse nom f s 1.77 11.96 1.15 9.80 +averses averse nom f p 1.77 11.96 0.63 2.16 +aversion aversion nom f s 0.97 2.64 0.97 2.57 +aversions aversion nom f p 0.97 2.64 0.00 0.07 +avertît avertir ver 30.80 37.70 0.00 0.14 sub:imp:3s; +averti avertir ver m s 30.80 37.70 6.26 9.73 par:pas; +avertie avertir ver f s 30.80 37.70 2.08 2.23 par:pas; +averties avertir ver f p 30.80 37.70 0.10 0.41 par:pas; +avertir avertir ver 30.80 37.70 13.49 11.01 inf; +avertira avertir ver 30.80 37.70 0.43 0.00 ind:fut:3s; +avertirai avertir ver 30.80 37.70 0.59 0.20 ind:fut:1s; +avertirait avertir ver 30.80 37.70 0.01 0.47 cnd:pre:3s; +avertiras avertir ver 30.80 37.70 0.03 0.00 ind:fut:2s; +avertirent avertir ver 30.80 37.70 0.10 0.34 ind:pas:3p; +avertirez avertir ver 30.80 37.70 0.01 0.07 ind:fut:2p; +avertis avertir ver m p 30.80 37.70 4.75 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +avertissaient avertir ver 30.80 37.70 0.01 0.27 ind:imp:3p; +avertissais avertir ver 30.80 37.70 0.03 0.27 ind:imp:1s;ind:imp:2s; +avertissait avertir ver 30.80 37.70 0.12 2.03 ind:imp:3s; +avertissant avertir ver 30.80 37.70 0.05 0.54 par:pre; +avertisse avertir ver 30.80 37.70 0.30 0.68 sub:pre:1s;sub:pre:3s; +avertissement avertissement nom m s 9.60 9.53 8.68 7.09 +avertissements avertissement nom m p 9.60 9.53 0.92 2.43 +avertissent avertir ver 30.80 37.70 0.20 0.41 ind:pre:3p; +avertisseur avertisseur nom m s 0.15 1.89 0.14 1.08 +avertisseurs avertisseur nom m p 0.15 1.89 0.01 0.81 +avertisseuses avertisseur adj f p 0.04 0.34 0.00 0.07 +avertissez avertir ver 30.80 37.70 1.52 0.20 imp:pre:2p;ind:pre:2p; +avertissiez avertir ver 30.80 37.70 0.03 0.00 ind:imp:2p; +avertissons avertir ver 30.80 37.70 0.09 0.14 imp:pre:1p;ind:pre:1p; +avertit avertir ver 30.80 37.70 0.61 5.07 ind:pre:3s;ind:pas:3s; +aveu aveu nom m s 11.15 21.55 5.86 13.45 +aveugla aveugler ver 6.50 15.47 0.00 0.47 ind:pas:3s; +aveuglaient aveugler ver 6.50 15.47 0.03 0.74 ind:imp:3p; +aveuglais aveugler ver 6.50 15.47 0.00 0.07 ind:imp:1s; +aveuglait aveugler ver 6.50 15.47 0.14 1.22 ind:imp:3s; +aveuglant aveuglant adj m s 1.00 6.15 0.35 2.16 +aveuglante aveuglant adj f s 1.00 6.15 0.61 3.11 +aveuglantes aveuglant adj f p 1.00 6.15 0.04 0.34 +aveuglants aveuglant adj m p 1.00 6.15 0.01 0.54 +aveugle_né aveugle_né nom m s 0.00 0.14 0.00 0.07 +aveugle_né aveugle_né nom f s 0.00 0.14 0.00 0.07 +aveugle aveugle adj s 38.53 38.51 33.85 30.20 +aveuglement aveuglement nom m s 1.79 4.46 1.77 4.39 +aveuglements aveuglement nom m p 1.79 4.46 0.01 0.07 +aveuglent aveugler ver 6.50 15.47 0.21 0.47 ind:pre:3p; +aveugler aveugler ver 6.50 15.47 1.54 1.96 inf; +aveuglera aveugler ver 6.50 15.47 0.30 0.00 ind:fut:3s; +aveuglerait aveugler ver 6.50 15.47 0.04 0.07 cnd:pre:3s; +aveugles aveugle adj p 38.53 38.51 4.67 8.31 +aveuglez aveugler ver 6.50 15.47 0.03 0.00 imp:pre:2p; +aveuglons aveugler ver 6.50 15.47 0.01 0.00 imp:pre:1p; +aveuglât aveugler ver 6.50 15.47 0.00 0.07 sub:imp:3s; +aveuglèrent aveugler ver 6.50 15.47 0.00 0.07 ind:pas:3p; +aveuglé aveugler ver m s 6.50 15.47 1.32 4.05 par:pas; +aveuglée aveugler ver f s 6.50 15.47 0.45 1.42 par:pas; +aveuglées aveugler ver f p 6.50 15.47 0.01 0.14 par:pas; +aveuglément aveuglément adv 1.30 3.31 1.30 3.31 +aveuglés aveugler ver m p 6.50 15.47 0.31 1.96 par:pas; +aveuli aveulir ver m s 0.00 0.07 0.00 0.07 par:pas; +aveulissante aveulissant adj f s 0.00 0.07 0.00 0.07 +aveux aveu nom m p 11.15 21.55 5.29 8.11 +avez avoir aux 18559.23 12800.81 1122.37 206.82 ind:pre:2p; +aviaire aviaire adj s 0.37 0.00 0.37 0.00 +aviateur aviateur nom m s 3.06 8.85 1.23 4.05 +aviateurs aviateur nom m p 3.06 8.85 1.68 4.73 +aviation aviation nom f s 5.18 13.72 5.17 13.38 +aviations aviation nom f p 5.18 13.72 0.01 0.34 +aviatrice aviateur nom f s 3.06 8.85 0.16 0.00 +aviatrices aviatrice nom f p 0.02 0.00 0.02 0.00 +avicole avicole adj f s 0.01 0.00 0.01 0.00 +aviculture aviculture nom f s 0.10 0.00 0.10 0.00 +avide avide adj s 3.52 16.22 1.94 10.34 +avidement avidement adv 0.38 6.08 0.38 6.08 +avides avide adj p 3.52 16.22 1.57 5.88 +avidité avidité nom f s 1.05 7.97 1.05 7.91 +avidités avidité nom f p 1.05 7.97 0.00 0.07 +aviez avoir aux 18559.23 12800.81 50.30 16.35 ind:imp:2p; +avignonnais avignonnais nom m 0.00 0.07 0.00 0.07 +avignonnaise avignonnais adj f s 0.00 0.07 0.00 0.07 +avili avilir ver m s 0.69 2.64 0.03 0.41 par:pas; +avilie avilir ver f s 0.69 2.64 0.20 0.07 par:pas; +avilies avilir ver f p 0.69 2.64 0.01 0.07 par:pas; +avilir avilir ver 0.69 2.64 0.27 1.22 inf; +avilis avilir ver m p 0.69 2.64 0.04 0.27 ind:pre:1s;ind:pre:2s;par:pas; +avilissait avilir ver 0.69 2.64 0.01 0.14 ind:imp:3s; +avilissant avilissant adj m s 0.62 0.88 0.39 0.41 +avilissante avilissant adj f s 0.62 0.88 0.10 0.20 +avilissantes avilissant adj f p 0.62 0.88 0.10 0.07 +avilissants avilissant adj m p 0.62 0.88 0.03 0.20 +avilissement avilissement nom m s 0.16 0.34 0.16 0.34 +avilissent avilir ver 0.69 2.64 0.01 0.07 ind:pre:3p; +avilit avilir ver 0.69 2.64 0.09 0.34 ind:pre:3s;ind:pas:3s; +aviné aviné adj m s 0.05 1.89 0.01 0.54 +avinée aviné adj f s 0.05 1.89 0.01 0.68 +avinées aviné adj f p 0.05 1.89 0.00 0.20 +avinés aviné adj m p 0.05 1.89 0.03 0.47 +avion_cargo avion_cargo nom m s 0.20 0.14 0.20 0.00 +avion_citerne avion_citerne nom m s 0.03 0.00 0.03 0.00 +avion_suicide avion_suicide nom m s 0.01 0.07 0.01 0.07 +avion_école avion_école nom m s 0.01 0.00 0.01 0.00 +avion avion nom m s 125.29 78.04 105.54 46.82 +avionique avionique nom f s 0.13 0.00 0.13 0.00 +avionnettes avionnette nom f p 0.00 0.07 0.00 0.07 +avionneurs avionneur nom m p 0.01 0.00 0.01 0.00 +avion_cargo avion_cargo nom m p 0.20 0.14 0.00 0.14 +avions_espions avions_espions nom m p 0.01 0.00 0.01 0.00 +avions avoir aux 18559.23 12800.81 16.42 81.01 ind:imp:1p; +aviron aviron nom m s 1.73 2.36 1.35 0.95 +avirons aviron nom m p 1.73 2.36 0.38 1.42 +avis avis nom m p 139.22 65.14 139.22 65.14 +avisa aviser ver 9.77 27.50 0.14 4.66 ind:pas:3s; +avisai aviser ver 9.77 27.50 0.01 1.76 ind:pas:1s; +avisaient aviser ver 9.77 27.50 0.01 0.20 ind:imp:3p; +avisais aviser ver 9.77 27.50 0.01 0.20 ind:imp:1s; +avisait aviser ver 9.77 27.50 0.10 2.09 ind:imp:3s; +avisant aviser ver 9.77 27.50 0.02 2.50 par:pre; +avise aviser ver 9.77 27.50 3.52 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avisent aviser ver 9.77 27.50 0.02 0.07 ind:pre:3p; +aviser aviser ver 9.77 27.50 0.65 3.18 inf; +avisera aviser ver 9.77 27.50 0.81 0.54 ind:fut:3s; +aviserai aviser ver 9.77 27.50 0.44 0.20 ind:fut:1s; +aviseraient aviser ver 9.77 27.50 0.00 0.07 cnd:pre:3p; +aviserais aviser ver 9.77 27.50 0.02 0.20 cnd:pre:1s; +aviserait aviser ver 9.77 27.50 0.01 0.68 cnd:pre:3s; +aviseras aviser ver 9.77 27.50 0.00 0.07 ind:fut:2s; +aviserons aviser ver 9.77 27.50 0.65 0.54 ind:fut:1p; +aviseront aviser ver 9.77 27.50 0.05 0.00 ind:fut:3p; +avises aviser ver 9.77 27.50 0.32 0.20 ind:pre:2s; +avisez aviser ver 9.77 27.50 0.89 0.14 imp:pre:2p;ind:pre:2p; +avisions aviser ver 9.77 27.50 0.00 0.07 ind:imp:1p; +aviso aviso nom m s 0.02 2.23 0.02 1.08 +avisos aviso nom m p 0.02 2.23 0.00 1.15 +avisât aviser ver 9.77 27.50 0.27 0.34 sub:imp:3s; +avisèrent aviser ver 9.77 27.50 0.12 0.14 ind:pas:3p; +avisé aviser ver m s 9.77 27.50 1.21 3.99 par:pas; +avisée avisé adj f s 1.76 2.36 0.32 0.54 +avisées avisé adj f p 1.76 2.36 0.01 0.00 +avisés avisé adj m p 1.76 2.36 0.56 0.47 +avitailler avitailler ver 0.01 0.00 0.01 0.00 inf; +avitaminose avitaminose nom f s 0.00 0.07 0.00 0.07 +aviva aviver ver 0.19 4.26 0.01 0.20 ind:pas:3s; +avivaient aviver ver 0.19 4.26 0.00 0.07 ind:imp:3p; +avivait aviver ver 0.19 4.26 0.00 0.74 ind:imp:3s; +avivant aviver ver 0.19 4.26 0.00 0.14 par:pre; +avive aviver ver 0.19 4.26 0.00 0.61 ind:pre:3s; +avivent aviver ver 0.19 4.26 0.11 0.27 ind:pre:3p; +aviver aviver ver 0.19 4.26 0.03 0.54 inf; +avivons aviver ver 0.19 4.26 0.01 0.07 imp:pre:1p;ind:pre:1p; +avivât aviver ver 0.19 4.26 0.00 0.07 sub:imp:3s; +avivèrent aviver ver 0.19 4.26 0.00 0.07 ind:pas:3p; +avivé aviver ver m s 0.19 4.26 0.02 0.47 par:pas; +avivée aviver ver f s 0.19 4.26 0.00 0.68 par:pas; +avivées aviver ver f p 0.19 4.26 0.00 0.27 par:pas; +avivés aviver ver m p 0.19 4.26 0.00 0.07 par:pas; +avocaillon avocaillon nom m s 0.16 0.00 0.16 0.00 +avocasseries avocasserie nom f p 0.00 0.07 0.00 0.07 +avocat_conseil avocat_conseil nom m s 0.08 0.00 0.08 0.00 +avocat avocat nom m s 112.69 37.64 89.28 24.32 +avocate avocat nom f s 112.69 37.64 7.56 1.55 +avocates avocat nom f p 112.69 37.64 0.10 0.00 +avocatier avocatier nom m s 0.04 0.00 0.04 0.00 +avocats avocat nom m p 112.69 37.64 15.76 11.76 +avocette avocette nom f s 0.01 0.14 0.01 0.14 +avoient avoyer ver 0.00 0.14 0.00 0.07 ind:pre:3p; +avoinaient avoiner ver 0.00 0.34 0.00 0.07 ind:imp:3p; +avoine avoine nom f s 1.54 6.96 1.52 6.35 +avoiner avoiner ver 0.00 0.34 0.00 0.27 inf; +avoines avoine nom f p 1.54 6.96 0.01 0.61 +avoir avoir aux 18559.23 12800.81 674.24 649.26 inf; +avoirs avoir nom_sup m p 3.13 3.31 0.41 0.54 +avoisinaient avoisiner ver 0.26 1.49 0.00 0.07 ind:imp:3p; +avoisinait avoisiner ver 0.26 1.49 0.02 0.47 ind:imp:3s; +avoisinant avoisinant adj m s 0.43 1.89 0.05 0.07 +avoisinante avoisinant adj f s 0.43 1.89 0.16 0.14 +avoisinantes avoisinant adj f p 0.43 1.89 0.18 1.15 +avoisinants avoisinant adj m p 0.43 1.89 0.05 0.54 +avoisine avoisiner ver 0.26 1.49 0.20 0.20 ind:pre:3s; +avoisinent avoisiner ver 0.26 1.49 0.00 0.27 ind:pre:3p; +avoisiner avoisiner ver 0.26 1.49 0.00 0.14 inf; +avoisinerait avoisiner ver 0.26 1.49 0.00 0.07 cnd:pre:3s; +avons avoir aux 18559.23 12800.81 291.71 190.00 ind:pre:1p; +avorta avorter ver 5.43 4.32 0.01 0.07 ind:pas:3s; +avortait avorter ver 5.43 4.32 0.00 0.14 ind:imp:3s; +avortant avorter ver 5.43 4.32 0.01 0.00 par:pre; +avorte avorter ver 5.43 4.32 0.61 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avortement avortement nom m s 5.24 2.70 4.37 2.16 +avortements avortement nom m p 5.24 2.70 0.87 0.54 +avortent avorter ver 5.43 4.32 0.00 0.14 ind:pre:3p; +avorter avorter ver 5.43 4.32 3.65 3.11 inf; +avorterai avorter ver 5.43 4.32 0.00 0.07 ind:fut:1s; +avorterait avorter ver 5.43 4.32 0.00 0.14 cnd:pre:3s; +avorteriez avorter ver 5.43 4.32 0.00 0.07 cnd:pre:2p; +avorteur avorteur nom m s 0.37 0.68 0.01 0.07 +avorteurs avorteur nom m p 0.37 0.68 0.05 0.07 +avorteuse avorteur nom f s 0.37 0.68 0.31 0.34 +avorteuses avorteur nom f p 0.37 0.68 0.00 0.20 +avortez avorter ver 5.43 4.32 0.05 0.00 imp:pre:2p;ind:pre:2p; +avorton avorton nom m s 1.44 2.30 1.35 1.42 +avortons avorton nom m p 1.44 2.30 0.09 0.88 +avorté avorter ver m s 5.43 4.32 1.01 0.07 par:pas; +avortée avorté adj f s 0.40 1.49 0.08 0.47 +avortées avorter ver f p 5.43 4.32 0.02 0.07 par:pas; +avortés avorté adj m p 0.40 1.49 0.20 0.14 +avoua avouer ver 61.54 96.22 0.33 7.50 ind:pas:3s; +avouable avouable adj s 0.02 1.08 0.01 0.54 +avouables avouable adj p 0.02 1.08 0.01 0.54 +avouai avouer ver 61.54 96.22 0.00 1.22 ind:pas:1s; +avouaient avouer ver 61.54 96.22 0.00 0.68 ind:imp:3p; +avouais avouer ver 61.54 96.22 0.22 0.74 ind:imp:1s;ind:imp:2s; +avouait avouer ver 61.54 96.22 0.31 5.47 ind:imp:3s; +avouant avouer ver 61.54 96.22 0.35 1.76 par:pre; +avouas avouer ver 61.54 96.22 0.00 0.07 ind:pas:2s; +avoue avouer ver 61.54 96.22 24.48 24.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avouent avouer ver 61.54 96.22 0.35 1.22 ind:pre:3p; +avouer avouer ver 61.54 96.22 18.27 33.72 inf; +avouera avouer ver 61.54 96.22 0.26 0.41 ind:fut:3s; +avouerai avouer ver 61.54 96.22 0.71 1.08 ind:fut:1s; +avoueraient avouer ver 61.54 96.22 0.14 0.20 cnd:pre:3p; +avouerais avouer ver 61.54 96.22 0.17 0.34 cnd:pre:1s;cnd:pre:2s; +avouerait avouer ver 61.54 96.22 0.41 0.61 cnd:pre:3s; +avoueras avouer ver 61.54 96.22 0.07 0.95 ind:fut:2s; +avouerez avouer ver 61.54 96.22 0.08 0.74 ind:fut:2p; +avoueriez avouer ver 61.54 96.22 0.00 0.07 cnd:pre:2p; +avouerions avouer ver 61.54 96.22 0.00 0.07 cnd:pre:1p; +avoueront avouer ver 61.54 96.22 0.01 0.07 ind:fut:3p; +avoues avouer ver 61.54 96.22 1.23 0.68 ind:pre:2s; +avouez avouer ver 61.54 96.22 4.07 3.72 imp:pre:2p;ind:pre:2p; +avouiez avouer ver 61.54 96.22 0.03 0.07 ind:imp:2p; +avouions avouer ver 61.54 96.22 0.00 0.07 ind:imp:1p; +avouâmes avouer ver 61.54 96.22 0.00 0.07 ind:pas:1p; +avouons avouer ver 61.54 96.22 0.39 1.42 imp:pre:1p;ind:pre:1p; +avouât avouer ver 61.54 96.22 0.00 0.20 sub:imp:3s; +avouèrent avouer ver 61.54 96.22 0.10 0.27 ind:pas:3p; +avoué avouer ver m s 61.54 96.22 9.50 7.23 par:pas; +avouée avoué adj f s 0.24 1.35 0.10 0.14 +avouées avouer ver f p 61.54 96.22 0.04 0.14 par:pas; +avoués avouer ver m p 61.54 96.22 0.02 0.14 par:pas; +avoyer avoyer ver 0.00 0.14 0.00 0.07 inf; +avril avril nom m 11.23 32.03 11.23 32.03 +avrillée avrillée nom f s 0.00 0.07 0.00 0.07 +avènement avènement nom m s 0.53 3.92 0.53 3.92 +avère avérer ver 9.26 6.96 4.59 0.68 ind:pre:3s;sub:pre:3s; +avèrent avérer ver 9.26 6.96 0.26 0.20 ind:pre:3p; +avé avé nom m 0.11 0.20 0.11 0.20 +avulsion avulsion nom f s 0.03 0.00 0.03 0.00 +avunculaire avunculaire adj s 0.01 0.14 0.01 0.14 +avunculat avunculat nom m s 0.00 0.07 0.00 0.07 +avéra avérer ver 9.26 6.96 0.25 1.55 ind:pas:3s; +avérai avérer ver 9.26 6.96 0.00 0.07 ind:pas:1s; +avéraient avérer ver 9.26 6.96 0.12 0.61 ind:imp:3p; +avérait avérer ver 9.26 6.96 0.56 2.03 ind:imp:3s; +avérant avérer ver 9.26 6.96 0.00 0.27 par:pre; +avérer avérer ver 9.26 6.96 0.88 0.27 inf; +avérera avérer ver 9.26 6.96 0.10 0.00 ind:fut:3s; +avéreraient avérer ver 9.26 6.96 0.00 0.14 cnd:pre:3p; +avérerait avérer ver 9.26 6.96 0.08 0.00 cnd:pre:3s; +avérât avérer ver 9.26 6.96 0.00 0.07 sub:imp:3s; +avérèrent avérer ver 9.26 6.96 0.04 0.14 ind:pas:3p; +avéré avérer ver m s 9.26 6.96 1.64 0.61 par:pas; +avérée avérer ver f s 9.26 6.96 0.37 0.27 par:pas; +avérées avérer ver f p 9.26 6.96 0.18 0.00 par:pas; +avérés avérer ver m p 9.26 6.96 0.19 0.07 par:pas; +awacs awacs nom m 0.12 0.00 0.12 0.00 +axa axer ver 0.61 0.88 0.00 0.07 ind:pas:3s; +axe axe nom m s 3.05 10.88 2.90 9.53 +axel axel nom m s 0.06 0.00 0.05 0.00 +axels axel nom m p 0.06 0.00 0.01 0.00 +axent axer ver 0.61 0.88 0.00 0.07 ind:pre:3p; +axer axer ver 0.61 0.88 0.02 0.00 inf; +axes axe nom m p 3.05 10.88 0.16 1.35 +axial axial adj m s 0.06 0.20 0.01 0.20 +axiale axial adj f s 0.06 0.20 0.04 0.00 +axillaire axillaire adj s 0.05 0.00 0.05 0.00 +axiomatisation axiomatisation nom f s 0.00 0.07 0.00 0.07 +axiome axiome nom m s 0.11 0.61 0.10 0.41 +axiomes axiome nom m p 0.11 0.61 0.01 0.20 +axis axis nom m 3.87 0.00 3.87 0.00 +axolotl axolotl nom m s 0.02 0.07 0.02 0.00 +axolotls axolotl nom m p 0.02 0.07 0.00 0.07 +axonge axonge nom f s 0.00 0.07 0.00 0.07 +axé axer ver m s 0.61 0.88 0.19 0.20 par:pas; +axée axer ver f s 0.61 0.88 0.08 0.47 par:pas; +axées axer ver f p 0.61 0.88 0.13 0.00 par:pas; +axés axer ver m p 0.61 0.88 0.05 0.00 par:pas; +aya aya nom f s 0.03 0.00 0.03 0.00 +ayans ayan nom m p 0.00 0.07 0.00 0.07 +ayant avoir aux 18559.23 12800.81 21.68 147.84 par:pre; +ayants_droit ayants_droit nom m p 0.01 0.14 0.01 0.14 +ayatollah ayatollah nom m s 0.53 0.27 0.50 0.14 +ayatollahs ayatollah nom m p 0.53 0.27 0.03 0.14 +aye_aye aye_aye nom m s 0.01 0.00 0.01 0.00 +ayez avoir aux 18559.23 12800.81 20.80 5.34 sub:pre:2p; +ayons avoir aux 18559.23 12800.81 4.36 4.39 sub:pre:1p; +ayuntamiento ayuntamiento nom m s 0.00 0.07 0.00 0.07 +azalée azalée nom f s 0.13 1.22 0.05 0.20 +azalées azalée nom f p 0.13 1.22 0.08 1.01 +azerbaïdjanais azerbaïdjanais adj m 0.00 0.07 0.00 0.07 +azerbaïdjanais azerbaïdjanais nom m 0.00 0.07 0.00 0.07 +azimut azimut nom m s 0.78 1.69 0.26 0.07 +azimutal azimutal adj m s 0.01 0.00 0.01 0.00 +azimuts azimut nom m p 0.78 1.69 0.52 1.62 +azimuté azimuter ver m s 0.03 0.20 0.03 0.14 par:pas; +azimutée azimuter ver f s 0.03 0.20 0.00 0.07 par:pas; +azoïque azoïque adj m s 0.01 0.00 0.01 0.00 +azoospermie azoospermie nom f s 0.01 0.00 0.01 0.00 +azote azote nom m s 1.05 0.14 1.05 0.14 +azoture azoture nom m s 0.01 0.00 0.01 0.00 +aztèque aztèque adj s 0.60 0.74 0.51 0.27 +aztèques aztèque adj p 0.60 0.74 0.09 0.47 +azulejo azulejo nom m s 0.10 0.54 0.10 0.00 +azulejos azulejo nom m p 0.10 0.54 0.00 0.54 +azur azur nom m s 2.98 9.53 2.98 9.39 +azéri azéri adj m s 0.27 0.07 0.27 0.00 +azéris azéri adj m p 0.27 0.07 0.00 0.07 +azurs azur nom m p 2.98 9.53 0.00 0.14 +azuré azuré adj m s 0.14 0.68 0.13 0.00 +azurée azuré adj f s 0.14 0.68 0.01 0.27 +azurées azuré adj f p 0.14 0.68 0.00 0.34 +azurés azuré adj m p 0.14 0.68 0.00 0.07 +azygos azygos adj f s 0.01 0.00 0.01 0.00 +azyme azyme adj m s 0.04 0.41 0.04 0.41 +b b nom m 31.78 8.65 31.78 8.65 +bôme bôme nom f s 0.02 0.47 0.02 0.47 +bûchais bûcher ver 0.30 0.54 0.02 0.00 ind:imp:1s; +bûchant bûcher ver 0.30 0.54 0.01 0.07 par:pre; +bûche bûche nom f s 2.91 13.18 2.09 5.14 +bûchent bûcher ver 0.30 0.54 0.01 0.00 ind:pre:3p; +bûcher bûcher nom m s 3.82 9.59 3.43 7.09 +bûcheron bûcheron nom m s 3.33 8.24 2.13 4.12 +bûcheronne bûcheronner ver 0.00 0.20 0.00 0.07 ind:pre:3s; +bûcheronner bûcheronner ver 0.00 0.20 0.00 0.14 inf; +bûcherons bûcheron nom m p 3.33 8.24 1.20 4.12 +bûchers bûcher nom m p 3.82 9.59 0.40 2.50 +bûches bûche nom f p 2.91 13.18 0.82 8.04 +bûchette bûchette nom f s 0.01 0.61 0.00 0.14 +bûchettes bûchette nom f p 0.01 0.61 0.01 0.47 +bûcheur bûcheur nom m s 0.20 0.61 0.04 0.20 +bûcheurs bûcheur nom m p 0.20 0.61 0.05 0.20 +bûcheuse bûcheur nom f s 0.20 0.61 0.11 0.14 +bûcheuses bûcheur nom f p 0.20 0.61 0.00 0.07 +bûchez bûcher ver 0.30 0.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +bûché bûcher ver m s 0.30 0.54 0.07 0.07 par:pas; +bûmes boire ver 339.06 274.32 0.03 1.89 ind:pas:1p; +bût boire ver 339.06 274.32 0.01 0.00 sub:imp:3s; +baïonnette baïonnette nom f s 2.33 7.57 1.28 4.80 +baïonnettes baïonnette nom f p 2.33 7.57 1.05 2.77 +baba baba nom m s 1.05 1.89 0.80 1.42 +baballe baballe nom f s 0.18 0.34 0.18 0.34 +babas baba nom m p 1.05 1.89 0.26 0.47 +babasse babasse nom s 0.00 0.07 0.00 0.07 +babel babel nom m s 0.05 0.00 0.05 0.00 +babeurre babeurre nom m s 0.13 0.00 0.13 0.00 +babi babi nom m s 0.02 0.00 0.02 0.00 +babil babil nom m s 0.07 0.74 0.07 0.68 +babillage babillage nom m s 0.34 0.81 0.07 0.54 +babillages babillage nom m p 0.34 0.81 0.26 0.27 +babillaient babiller ver 0.41 1.42 0.00 0.34 ind:imp:3p; +babillait babiller ver 0.41 1.42 0.02 0.27 ind:imp:3s; +babillant babiller ver 0.41 1.42 0.03 0.07 par:pre; +babillard babillard nom m s 0.01 0.07 0.01 0.07 +babillarde babillard adj f s 0.02 0.20 0.02 0.14 +babille babiller ver 0.41 1.42 0.02 0.07 ind:pre:1s;ind:pre:3s; +babillent babiller ver 0.41 1.42 0.00 0.07 ind:pre:3p; +babiller babiller ver 0.41 1.42 0.34 0.54 inf; +babilles babiller ver 0.41 1.42 0.00 0.07 ind:pre:2s; +babillé babiller ver m s 0.41 1.42 0.01 0.00 par:pas; +babils babil nom m p 0.07 0.74 0.00 0.07 +babine babine nom f s 0.33 3.38 0.00 0.47 +babines babine nom f p 0.33 3.38 0.33 2.91 +babiole babiole nom f s 1.85 2.03 0.48 0.47 +babioles babiole nom f p 1.85 2.03 1.36 1.55 +babiroussa babiroussa nom m s 0.00 0.07 0.00 0.07 +babouche babouche nom f s 0.08 2.64 0.04 0.34 +babouches babouche nom f p 0.08 2.64 0.04 2.30 +babouchka babouchka nom f s 0.12 3.72 0.12 2.91 +babouchkas babouchka nom f p 0.12 3.72 0.00 0.81 +babouin babouin nom m s 2.00 1.15 1.41 0.54 +babouine babouin nom f s 2.00 1.15 0.00 0.14 +babouines babouine nom f p 0.01 0.00 0.01 0.00 +babouins babouin nom m p 2.00 1.15 0.58 0.34 +babouvistes babouviste nom p 0.00 0.14 0.00 0.14 +babélienne babélien adj f s 0.00 0.07 0.00 0.07 +baby_boom baby_boom nom m s 0.05 0.00 0.05 0.00 +baby_foot baby_foot nom m 0.55 0.74 0.55 0.74 +baby_sitter baby_sitter nom f s 7.85 0.20 7.00 0.14 +baby_sitter baby_sitter nom f p 7.85 0.20 0.85 0.07 +baby_sitting baby_sitting nom m s 1.63 0.41 1.63 0.41 +baby baby nom m s 13.20 2.84 13.19 2.77 +babylonien babylonien adj m s 0.10 0.47 0.08 0.27 +babylonienne babylonien nom f s 0.11 0.14 0.02 0.00 +babyloniens babylonien nom m p 0.11 0.14 0.06 0.14 +babys baby nom m p 13.20 2.84 0.01 0.07 +bac bac nom m s 9.99 16.08 9.03 13.99 +baccalauréat baccalauréat nom m s 0.49 1.89 0.49 1.89 +baccara baccara nom m s 0.22 1.08 0.22 1.08 +baccarat baccarat nom m s 0.05 0.00 0.05 0.00 +bacchanal bacchanal nom m s 0.04 0.14 0.04 0.14 +bacchanale bacchanale nom f s 0.39 0.54 0.37 0.41 +bacchanales bacchanale nom f p 0.39 0.54 0.02 0.14 +bacchante bacchante nom f s 0.67 2.70 0.67 1.15 +bacchantes bacchante nom f p 0.67 2.70 0.00 1.55 +bachaghas bachagha nom m p 0.00 0.07 0.00 0.07 +bachelier bachelier nom m s 0.09 1.76 0.05 1.22 +bacheliers bachelier nom m p 0.09 1.76 0.04 0.41 +bachelière bachelier nom f s 0.09 1.76 0.00 0.14 +bachi_bouzouk bachi_bouzouk nom m s 0.00 0.07 0.00 0.07 +bachique bachique adj m s 0.00 0.34 0.00 0.07 +bachiques bachique adj p 0.00 0.34 0.00 0.27 +bachot bachot nom m s 0.29 3.85 0.29 3.18 +bachotage bachotage nom m s 0.02 0.00 0.02 0.00 +bachotaient bachoter ver 0.03 0.20 0.00 0.07 ind:imp:3p; +bachotait bachoter ver 0.03 0.20 0.01 0.07 ind:imp:3s; +bachotant bachoter ver 0.03 0.20 0.00 0.07 par:pre; +bachoter bachoter ver 0.03 0.20 0.01 0.00 inf; +bachots bachot nom m p 0.29 3.85 0.00 0.68 +bacillaires bacillaire adj f p 0.00 0.14 0.00 0.14 +bacille bacille nom m s 0.45 1.15 0.18 0.34 +bacilles bacille nom m p 0.45 1.15 0.26 0.81 +back_up back_up nom m s 0.09 0.00 0.09 0.00 +back back nom m s 4.82 0.74 4.82 0.74 +backgammon backgammon nom m s 0.66 0.00 0.66 0.00 +background background nom m s 0.05 0.07 0.05 0.07 +bacon bacon nom m s 4.50 0.47 4.50 0.47 +bacs bac nom m p 9.99 16.08 0.96 2.09 +bactéricide bactéricide adj m s 0.02 0.00 0.01 0.00 +bactéricides bactéricide adj p 0.02 0.00 0.01 0.00 +bactérie bactérie nom f s 5.00 0.88 2.22 0.27 +bactérien bactérien adj m s 0.49 0.00 0.07 0.00 +bactérienne bactérien adj f s 0.49 0.00 0.34 0.00 +bactériennes bactérien adj f p 0.49 0.00 0.08 0.00 +bactéries bactérie nom f p 5.00 0.88 2.79 0.61 +bactériologie bactériologie nom f s 0.11 0.00 0.11 0.00 +bactériologique bactériologique adj s 0.82 0.14 0.45 0.14 +bactériologiques bactériologique adj p 0.82 0.14 0.37 0.00 +bactériologiste bactériologiste nom s 0.01 0.00 0.01 0.00 +bactériophage bactériophage nom m s 0.07 0.00 0.07 0.00 +bactériémie bactériémie nom f s 0.01 0.00 0.01 0.00 +bada bader ver 0.40 2.36 0.37 2.16 ind:pas:3s; +badabam badabam ono 0.00 0.14 0.00 0.14 +badaboum badaboum ono 0.12 0.74 0.12 0.74 +badamier badamier nom m s 0.27 0.34 0.27 0.00 +badamiers badamier nom m p 0.27 0.34 0.00 0.34 +badant bader ver 0.40 2.36 0.00 0.14 par:pre; +badaud badaud nom m s 0.54 6.82 0.05 0.68 +badauda badauder ver 0.10 0.41 0.00 0.07 ind:pas:3s; +badaudaient badauder ver 0.10 0.41 0.10 0.07 ind:imp:3p; +badaudant badauder ver 0.10 0.41 0.00 0.14 par:pre; +badaude badauder ver 0.10 0.41 0.00 0.07 ind:pre:1s; +badauder badauder ver 0.10 0.41 0.00 0.07 inf; +badauderie badauderie nom f s 0.00 0.34 0.00 0.20 +badauderies badauderie nom f p 0.00 0.34 0.00 0.14 +badauds badaud nom m p 0.54 6.82 0.49 6.15 +bader bader ver 0.40 2.36 0.01 0.07 inf; +baderne baderne nom f s 0.08 0.47 0.07 0.27 +badernes baderne nom f p 0.08 0.47 0.01 0.20 +bades bader ver 0.40 2.36 0.02 0.00 ind:pre:2s; +badge badge nom m s 7.14 1.42 6.03 0.74 +badges badge nom m p 7.14 1.42 1.12 0.68 +badgés badgé adj m p 0.00 0.07 0.00 0.07 +badigeon badigeon nom m s 0.00 1.01 0.00 0.88 +badigeonna badigeonner ver 0.13 3.31 0.00 0.20 ind:pas:3s; +badigeonnage badigeonnage nom m s 0.00 0.20 0.00 0.07 +badigeonnages badigeonnage nom m p 0.00 0.20 0.00 0.14 +badigeonnaient badigeonner ver 0.13 3.31 0.00 0.07 ind:imp:3p; +badigeonnait badigeonner ver 0.13 3.31 0.00 0.14 ind:imp:3s; +badigeonnant badigeonner ver 0.13 3.31 0.00 0.14 par:pre; +badigeonne badigeonner ver 0.13 3.31 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +badigeonner badigeonner ver 0.13 3.31 0.04 0.27 inf; +badigeonnerai badigeonner ver 0.13 3.31 0.02 0.00 ind:fut:1s; +badigeonnerez badigeonner ver 0.13 3.31 0.01 0.07 ind:fut:2p; +badigeonneur badigeonneur nom m s 0.00 0.07 0.00 0.07 +badigeonnions badigeonner ver 0.13 3.31 0.00 0.07 ind:imp:1p; +badigeonnèrent badigeonner ver 0.13 3.31 0.00 0.07 ind:pas:3p; +badigeonné badigeonner ver m s 0.13 3.31 0.04 0.54 par:pas; +badigeonnée badigeonner ver f s 0.13 3.31 0.00 0.41 par:pas; +badigeonnées badigeonner ver f p 0.13 3.31 0.00 0.27 par:pas; +badigeonnés badigeonner ver m p 0.13 3.31 0.00 0.81 par:pas; +badigeons badigeon nom m p 0.00 1.01 0.00 0.14 +badigoinces badigoinces nom f p 0.00 0.20 0.00 0.20 +badin badin adj m s 0.44 1.96 0.33 1.35 +badina badiner ver 0.59 1.35 0.00 0.07 ind:pas:3s; +badinage badinage nom m s 0.16 0.61 0.14 0.47 +badinages badinage nom m p 0.16 0.61 0.02 0.14 +badinaient badiner ver 0.59 1.35 0.00 0.14 ind:imp:3p; +badinais badiner ver 0.59 1.35 0.01 0.00 ind:imp:1s; +badinait badiner ver 0.59 1.35 0.00 0.34 ind:imp:3s; +badine badiner ver 0.59 1.35 0.22 0.47 imp:pre:2s;ind:pre:3s; +badiner badiner ver 0.59 1.35 0.18 0.27 inf; +badines badiner ver 0.59 1.35 0.01 0.00 ind:pre:2s; +badinez badiner ver 0.59 1.35 0.14 0.07 imp:pre:2p;ind:pre:2p; +badins badin adj m p 0.44 1.96 0.00 0.14 +badiné badiner ver m s 0.59 1.35 0.02 0.00 par:pas; +badminton badminton nom m s 0.18 0.20 0.18 0.20 +badois badois adj m 0.00 0.27 0.00 0.07 +badoise badois adj f s 0.00 0.27 0.00 0.20 +baffe baffe nom f s 2.93 3.58 1.41 1.49 +baffer baffer ver 0.62 0.14 0.49 0.00 inf; +baffes baffe nom f p 2.93 3.58 1.52 2.09 +baffle baffle nom m s 0.06 0.68 0.00 0.20 +baffles baffle nom m p 0.06 0.68 0.06 0.47 +baffés baffer ver m p 0.62 0.14 0.00 0.07 par:pas; +bafouais bafouer ver 3.54 3.78 0.00 0.07 ind:imp:1s; +bafouait bafouer ver 3.54 3.78 0.14 0.27 ind:imp:3s; +bafouant bafouer ver 3.54 3.78 0.03 0.27 par:pre; +bafoue bafouer ver 3.54 3.78 0.71 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bafouent bafouer ver 3.54 3.78 0.17 0.14 ind:pre:3p; +bafouer bafouer ver 3.54 3.78 0.54 0.68 inf; +bafoues bafouer ver 3.54 3.78 0.25 0.14 ind:pre:2s; +bafouez bafouer ver 3.54 3.78 0.32 0.00 imp:pre:2p;ind:pre:2p; +bafouilla bafouiller ver 2.08 8.92 0.01 2.23 ind:pas:3s; +bafouillage bafouillage nom m s 0.01 0.47 0.01 0.27 +bafouillages bafouillage nom m p 0.01 0.47 0.00 0.20 +bafouillai bafouiller ver 2.08 8.92 0.00 0.14 ind:pas:1s; +bafouillaient bafouiller ver 2.08 8.92 0.00 0.07 ind:imp:3p; +bafouillais bafouiller ver 2.08 8.92 0.00 0.20 ind:imp:1s; +bafouillait bafouiller ver 2.08 8.92 0.02 1.15 ind:imp:3s; +bafouillant bafouillant adj m s 0.01 0.34 0.01 0.20 +bafouillante bafouillant adj f s 0.01 0.34 0.00 0.07 +bafouillantes bafouillant adj f p 0.01 0.34 0.00 0.07 +bafouille bafouiller ver 2.08 8.92 0.93 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bafouillent bafouiller ver 2.08 8.92 0.01 0.27 ind:pre:3p; +bafouiller bafouiller ver 2.08 8.92 0.13 0.68 inf; +bafouilles bafouiller ver 2.08 8.92 0.23 0.14 ind:pre:2s; +bafouilleur bafouilleur nom m s 0.01 0.00 0.01 0.00 +bafouillez bafouiller ver 2.08 8.92 0.03 0.07 imp:pre:2p;ind:pre:2p; +bafouillis bafouillis nom m 0.00 0.27 0.00 0.27 +bafouillèrent bafouiller ver 2.08 8.92 0.00 0.07 ind:pas:3p; +bafouillé bafouiller ver m s 2.08 8.92 0.72 0.81 par:pas; +bafoué bafouer ver m s 3.54 3.78 0.52 1.22 par:pas; +bafouée bafouer ver f s 3.54 3.78 0.39 0.61 par:pas; +bafouées bafouer ver f p 3.54 3.78 0.04 0.07 par:pas; +bafoués bafouer ver m p 3.54 3.78 0.43 0.14 par:pas; +bagage bagage nom m s 29.69 24.39 3.21 7.43 +bagagerie bagagerie nom f s 0.00 0.14 0.00 0.14 +bagages bagage nom m p 29.69 24.39 26.48 16.96 +bagagiste bagagiste nom s 0.30 0.07 0.24 0.07 +bagagistes bagagiste nom p 0.30 0.07 0.06 0.00 +bagarraient bagarrer ver 5.08 2.23 0.05 0.27 ind:imp:3p; +bagarrais bagarrer ver 5.08 2.23 0.05 0.00 ind:imp:1s;ind:imp:2s; +bagarrait bagarrer ver 5.08 2.23 0.05 0.14 ind:imp:3s; +bagarrant bagarrer ver 5.08 2.23 0.12 0.07 par:pre; +bagarre bagarre nom f s 19.24 13.85 16.05 9.86 +bagarrent bagarrer ver 5.08 2.23 0.64 0.14 ind:pre:3p; +bagarrer bagarrer ver 5.08 2.23 1.73 0.68 inf;; +bagarrerais bagarrer ver 5.08 2.23 0.02 0.00 cnd:pre:1s; +bagarrerait bagarrer ver 5.08 2.23 0.01 0.00 cnd:pre:3s; +bagarres bagarre nom f p 19.24 13.85 3.19 3.99 +bagarreur bagarreur adj m s 0.65 0.61 0.47 0.41 +bagarreurs bagarreur adj m p 0.65 0.61 0.09 0.14 +bagarreuse bagarreur adj f s 0.65 0.61 0.07 0.07 +bagarreuses bagarreur adj f p 0.65 0.61 0.01 0.00 +bagarrez bagarrer ver 5.08 2.23 0.15 0.00 imp:pre:2p;ind:pre:2p; +bagarrons bagarrer ver 5.08 2.23 0.01 0.00 imp:pre:1p; +bagarré bagarrer ver m s 5.08 2.23 0.70 0.47 par:pas; +bagarrée bagarrer ver f s 5.08 2.23 0.16 0.07 par:pas; +bagarrés bagarrer ver m p 5.08 2.23 0.22 0.00 par:pas; +bagasse bagasse nom f s 0.15 0.00 0.15 0.00 +bagatelle bagatelle nom f s 1.08 3.58 1.03 2.64 +bagatelles bagatelle nom f p 1.08 3.58 0.05 0.95 +bagnard bagnard nom m s 0.60 2.57 0.50 1.08 +bagnards bagnard nom m p 0.60 2.57 0.11 1.49 +bagne bagne nom m s 2.50 3.85 2.49 3.31 +bagnes bagne nom m p 2.50 3.85 0.01 0.54 +bagnole bagnole nom f s 23.93 34.26 21.18 26.28 +bagnoles bagnole nom f p 23.93 34.26 2.75 7.97 +bagote bagoter ver 0.00 0.41 0.00 0.07 ind:pre:3s; +bagoter bagoter ver 0.00 0.41 0.00 0.34 inf; +bagottaient bagotter ver 0.00 0.34 0.00 0.07 ind:imp:3p; +bagottais bagotter ver 0.00 0.34 0.00 0.07 ind:imp:1s; +bagotte bagotter ver 0.00 0.34 0.00 0.14 ind:pre:3s; +bagotter bagotter ver 0.00 0.34 0.00 0.07 inf; +bagou bagou nom m s 0.01 0.27 0.01 0.27 +bagoulait bagouler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +bagoule bagouler ver 0.00 0.14 0.00 0.07 ind:pre:3s; +bagouse bagouse nom f s 0.00 0.20 0.00 0.20 +bagousées bagousé adj f p 0.00 0.07 0.00 0.07 +bagout bagout nom m s 0.25 0.81 0.25 0.74 +bagouts bagout nom m p 0.25 0.81 0.00 0.07 +bagouze bagouze nom f s 0.03 0.20 0.01 0.14 +bagouzes bagouze nom f p 0.03 0.20 0.02 0.07 +baguage baguage nom m s 0.02 0.00 0.02 0.00 +bague bague nom f s 30.32 22.36 26.14 16.08 +baguenaudaient baguenauder ver 0.18 1.62 0.00 0.07 ind:imp:3p; +baguenaudais baguenauder ver 0.18 1.62 0.00 0.07 ind:imp:1s; +baguenaudait baguenauder ver 0.18 1.62 0.00 0.27 ind:imp:3s; +baguenaudant baguenauder ver 0.18 1.62 0.00 0.27 par:pre; +baguenaude baguenauder ver 0.18 1.62 0.14 0.14 ind:pre:1s;ind:pre:3s; +baguenaudent baguenauder ver 0.18 1.62 0.00 0.07 ind:pre:3p; +baguenauder baguenauder ver 0.18 1.62 0.03 0.61 inf; +baguenauderait baguenauder ver 0.18 1.62 0.00 0.07 cnd:pre:3s; +baguenaudé baguenauder ver m s 0.18 1.62 0.01 0.07 par:pas; +baguer baguer ver 0.23 0.68 0.02 0.07 inf; +bagues bague nom f p 30.32 22.36 4.19 6.28 +baguette baguette nom f s 7.74 13.45 5.67 9.46 +baguettes baguette nom f p 7.74 13.45 2.06 3.99 +bagué baguer ver m s 0.23 0.68 0.14 0.07 par:pas; +baguée bagué adj f s 0.01 1.01 0.00 0.34 +baguées bagué adj f p 0.01 1.01 0.00 0.20 +bagués bagué adj m p 0.01 1.01 0.01 0.41 +bah bah ono 22.77 12.03 22.77 12.03 +baht baht nom m s 0.52 0.00 0.07 0.00 +bahts baht nom m p 0.52 0.00 0.45 0.00 +bahut bahut nom m s 1.59 8.38 1.50 7.23 +bahute bahuter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +bahutent bahuter ver 0.00 0.14 0.00 0.07 ind:pre:3p; +bahuts bahut nom m p 1.59 8.38 0.09 1.15 +bai bai adj m s 0.89 1.35 0.86 1.22 +baie baie nom f s 7.09 19.80 5.84 14.86 +baies baie nom f p 7.09 19.80 1.24 4.93 +baigna baigner ver 26.42 41.42 0.00 0.41 ind:pas:3s; +baignade baignade nom f s 1.10 2.84 1.00 1.89 +baignades baignade nom f p 1.10 2.84 0.10 0.95 +baignai baigner ver 26.42 41.42 0.10 0.07 ind:pas:1s; +baignaient baigner ver 26.42 41.42 0.31 3.04 ind:imp:3p; +baignais baigner ver 26.42 41.42 0.17 0.88 ind:imp:1s;ind:imp:2s; +baignait baigner ver 26.42 41.42 0.77 6.62 ind:imp:3s; +baignant baigner ver 26.42 41.42 0.22 2.77 par:pre; +baigne baigner ver 26.42 41.42 7.87 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +baignent baigner ver 26.42 41.42 0.70 1.28 ind:pre:3p; +baigner baigner ver 26.42 41.42 11.33 10.41 inf; +baignera baigner ver 26.42 41.42 0.41 0.00 ind:fut:3s; +baigneraient baigner ver 26.42 41.42 0.00 0.07 cnd:pre:3p; +baignerait baigner ver 26.42 41.42 0.04 0.07 cnd:pre:3s; +baignerons baigner ver 26.42 41.42 0.02 0.07 ind:fut:1p; +baigneront baigner ver 26.42 41.42 0.17 0.07 ind:fut:3p; +baignes baigner ver 26.42 41.42 0.77 0.20 ind:pre:2s; +baigneur baigneur nom m s 0.39 10.00 0.33 4.73 +baigneurs baigneur nom m p 0.39 10.00 0.03 3.45 +baigneuse baigneur nom f s 0.39 10.00 0.03 0.74 +baigneuses baigneuse nom f p 0.04 0.00 0.01 0.00 +baignez baigner ver 26.42 41.42 0.49 0.27 imp:pre:2p;ind:pre:2p; +baignions baigner ver 26.42 41.42 0.01 0.34 ind:imp:1p; +baignoire baignoire nom f s 12.39 15.27 11.90 14.12 +baignoires baignoire nom f p 12.39 15.27 0.50 1.15 +baignons baigner ver 26.42 41.42 0.19 0.14 imp:pre:1p;ind:pre:1p; +baignèrent baigner ver 26.42 41.42 0.00 0.20 ind:pas:3p; +baigné baigner ver m s 26.42 41.42 1.42 3.72 par:pas; +baignée baigner ver f s 26.42 41.42 0.63 1.96 par:pas; +baignées baigner ver f p 26.42 41.42 0.37 0.41 par:pas; +baignés baigner ver m p 26.42 41.42 0.42 1.69 par:pas; +bail bail nom m s 11.49 2.57 11.49 2.57 +baile baile nom m s 0.05 0.47 0.05 0.27 +bailes baile nom m p 0.05 0.47 0.00 0.20 +baillait bailler ver 1.02 0.61 0.03 0.14 ind:imp:3s; +baillant bailler ver 1.02 0.61 0.02 0.14 par:pre; +baille bailler ver 1.02 0.61 0.47 0.07 ind:pre:1s;ind:pre:3s; +bailler bailler ver 1.02 0.61 0.21 0.14 inf; +bailles bailler ver 1.02 0.61 0.16 0.07 ind:pre:2s; +bailleur bailleur nom m s 0.56 0.47 0.28 0.20 +bailleurs bailleur nom m p 0.56 0.47 0.28 0.27 +baillez bailler ver 1.02 0.61 0.00 0.07 ind:pre:2p; +bailli bailli nom m s 0.01 0.47 0.01 0.41 +bailliage bailliage nom m s 0.00 0.20 0.00 0.20 +baillis bailli nom m p 0.01 0.47 0.00 0.07 +baillive baillive nom f s 0.00 0.07 0.00 0.07 +baillé bailler ver m s 1.02 0.61 0.14 0.00 par:pas; +bain_marie bain_marie nom m s 0.08 0.95 0.08 0.88 +bain bain nom m s 74.48 83.04 50.52 43.11 +bain_marie bain_marie nom m p 0.08 0.95 0.00 0.07 +bains bain nom m p 74.48 83.04 23.96 39.93 +bais bai adj m p 0.89 1.35 0.03 0.14 +baisa baiser ver 112.82 44.12 0.00 3.51 ind:pas:3s; +baisable baisable adj s 0.35 0.20 0.26 0.14 +baisables baisable adj p 0.35 0.20 0.10 0.07 +baisade baisade nom f s 0.00 0.07 0.00 0.07 +baisai baiser ver 112.82 44.12 0.10 0.41 ind:pas:1s; +baisaient baiser ver 112.82 44.12 0.25 0.74 ind:imp:3p; +baisais baiser ver 112.82 44.12 1.42 0.61 ind:imp:1s;ind:imp:2s; +baisait baiser ver 112.82 44.12 2.25 3.11 ind:imp:3s; +baisant baiser ver 112.82 44.12 1.72 0.95 par:pre; +baise_en_ville baise_en_ville nom m s 0.03 0.20 0.03 0.20 +baise baiser ver 112.82 44.12 22.02 8.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +baisemain baisemain nom m s 0.81 0.61 0.81 0.54 +baisemains baisemain nom m p 0.81 0.61 0.00 0.07 +baisement baisement nom m s 0.00 0.07 0.00 0.07 +baisent baiser ver 112.82 44.12 3.15 1.69 ind:pre:3p; +baiser baiser ver 112.82 44.12 42.25 15.34 inf; +baisera baiser ver 112.82 44.12 0.99 0.54 ind:fut:3s; +baiserai baiser ver 112.82 44.12 1.33 0.41 ind:fut:1s; +baiseraient baiser ver 112.82 44.12 0.00 0.07 cnd:pre:3p; +baiserais baiser ver 112.82 44.12 1.45 0.14 cnd:pre:1s;cnd:pre:2s; +baiserait baiser ver 112.82 44.12 0.17 0.34 cnd:pre:3s; +baiseras baiser ver 112.82 44.12 0.49 0.07 ind:fut:2s; +baiserez baiser ver 112.82 44.12 0.12 0.00 ind:fut:2p; +baiseriez baiser ver 112.82 44.12 0.01 0.00 cnd:pre:2p; +baiserons baiser ver 112.82 44.12 0.00 0.07 ind:fut:1p; +baiseront baiser ver 112.82 44.12 0.03 0.07 ind:fut:3p; +baisers baiser nom m p 52.17 54.59 11.25 25.95 +baises baiser ver 112.82 44.12 7.66 0.88 ind:pre:2s;sub:pre:2s; +baiseur baiseur nom m s 2.00 1.49 1.40 0.61 +baiseurs baiseur nom m p 2.00 1.49 0.40 0.34 +baiseuse baiseur nom f s 2.00 1.49 0.20 0.54 +baisez baiser ver 112.82 44.12 1.77 0.47 imp:pre:2p;ind:pre:2p; +baisiez baiser ver 112.82 44.12 0.31 0.00 ind:imp:2p; +baisions baiser ver 112.82 44.12 0.01 0.07 ind:imp:1p; +baisodrome baisodrome nom m s 0.46 0.07 0.46 0.07 +baisons baiser ver 112.82 44.12 0.17 0.14 imp:pre:1p;ind:pre:1p; +baisotant baisoter ver 0.00 0.07 0.00 0.07 par:pre; +baisouiller baisouiller ver 0.04 0.20 0.04 0.14 inf; +baisouillé baisouiller ver m s 0.04 0.20 0.00 0.07 par:pas; +baissa baisser ver 63.69 115.27 0.27 25.54 ind:pas:3s; +baissai baisser ver 63.69 115.27 0.00 1.28 ind:pas:1s; +baissaient baisser ver 63.69 115.27 0.18 1.42 ind:imp:3p; +baissais baisser ver 63.69 115.27 0.14 1.28 ind:imp:1s;ind:imp:2s; +baissait baisser ver 63.69 115.27 0.23 9.93 ind:imp:3s; +baissant baisser ver 63.69 115.27 0.58 10.54 par:pre; +baisse baisser ver 63.69 115.27 20.10 14.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +baissement baissement nom m s 0.27 0.00 0.27 0.00 +baissent baisser ver 63.69 115.27 1.11 1.42 ind:pre:3p;sub:pre:3p; +baisser baisser ver 63.69 115.27 12.31 12.70 inf; +baissera baisser ver 63.69 115.27 0.28 0.20 ind:fut:3s; +baisserai baisser ver 63.69 115.27 0.18 0.07 ind:fut:1s; +baisseraient baisser ver 63.69 115.27 0.02 0.00 cnd:pre:3p; +baisserais baisser ver 63.69 115.27 0.11 0.00 cnd:pre:1s; +baisserait baisser ver 63.69 115.27 0.14 0.27 cnd:pre:3s; +baisseras baisser ver 63.69 115.27 0.05 0.07 ind:fut:2s; +baisserez baisser ver 63.69 115.27 0.01 0.00 ind:fut:2p; +baisserons baisser ver 63.69 115.27 0.11 0.00 ind:fut:1p; +baisseront baisser ver 63.69 115.27 0.19 0.14 ind:fut:3p; +baisses baisser ver 63.69 115.27 1.14 0.14 ind:pre:2s;sub:pre:2s; +baissez baisser ver 63.69 115.27 16.45 0.47 imp:pre:2p;ind:pre:2p; +baissier baissier adj m s 0.14 0.00 0.14 0.00 +baissiez baisser ver 63.69 115.27 0.27 0.00 ind:imp:2p; +baissions baisser ver 63.69 115.27 0.00 0.07 ind:imp:1p; +baissâmes baisser ver 63.69 115.27 0.00 0.07 ind:pas:1p; +baissons baisser ver 63.69 115.27 0.15 0.27 imp:pre:1p;ind:pre:1p; +baissât baisser ver 63.69 115.27 0.00 0.07 sub:imp:3s; +baissèrent baisser ver 63.69 115.27 0.01 0.74 ind:pas:3p; +baissé baisser ver m s 63.69 115.27 5.70 14.12 par:pas; +baissée baisser ver f s 63.69 115.27 2.36 9.05 ind:imp:3s;par:pas; +baissées baisser ver f p 63.69 115.27 0.34 2.43 par:pas; +baissés baisser ver m p 63.69 115.27 1.25 8.18 par:pas; +baisèrent baiser ver 112.82 44.12 0.00 0.14 ind:pas:3p; +baisé baiser ver m s 112.82 44.12 17.65 4.19 par:pas; +baisée baiser ver f s 112.82 44.12 4.70 1.08 par:pas; +baisées baiser ver f p 112.82 44.12 0.50 0.47 par:pas; +baisés baiser ver m p 112.82 44.12 2.33 0.47 par:pas; +bajoue bajoue nom f s 0.49 2.50 0.30 0.00 +bajoues bajoue nom f p 0.49 2.50 0.19 2.50 +bajoyers bajoyer nom m p 0.00 0.07 0.00 0.07 +bakchich bakchich nom m s 0.31 0.61 0.17 0.54 +bakchichs bakchich nom m p 0.31 0.61 0.14 0.07 +baklava baklava nom m s 0.24 0.34 0.21 0.14 +baklavas baklava nom m p 0.24 0.34 0.03 0.20 +bakélite bakélite nom f s 0.04 1.08 0.04 1.08 +bal bal nom m s 30.25 25.54 28.57 18.31 +balada balader ver 24.30 13.51 0.00 0.07 ind:pas:3s; +baladai balader ver 24.30 13.51 0.00 0.07 ind:pas:1s; +baladaient balader ver 24.30 13.51 0.07 0.54 ind:imp:3p; +baladais balader ver 24.30 13.51 0.87 0.47 ind:imp:1s;ind:imp:2s; +baladait balader ver 24.30 13.51 0.65 1.08 ind:imp:3s; +baladant balader ver 24.30 13.51 0.21 0.47 par:pre; +balade balade nom f s 7.71 6.28 6.58 4.59 +baladent balader ver 24.30 13.51 1.51 0.88 ind:pre:3p; +balader balader ver 24.30 13.51 12.41 5.41 ind:pre:2p;inf; +baladera balader ver 24.30 13.51 0.21 0.14 ind:fut:3s; +baladerai balader ver 24.30 13.51 0.01 0.00 ind:fut:1s; +baladerais balader ver 24.30 13.51 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +baladerait balader ver 24.30 13.51 0.07 0.14 cnd:pre:3s; +baladerez balader ver 24.30 13.51 0.01 0.07 ind:fut:2p; +balades balader ver 24.30 13.51 1.43 0.34 ind:pre:2s;sub:pre:2s; +baladeur baladeur nom m s 0.34 0.68 0.32 0.14 +baladeurs baladeur adj m p 0.65 0.88 0.02 0.20 +baladeuse baladeur adj f s 0.65 0.88 0.04 0.54 +baladeuses baladeur adj f p 0.65 0.88 0.48 0.07 +baladez balader ver 24.30 13.51 0.37 0.00 imp:pre:2p;ind:pre:2p; +baladiez balader ver 24.30 13.51 0.04 0.00 ind:imp:2p; +baladin baladin nom m s 0.14 0.88 0.14 0.20 +baladins baladin nom m p 0.14 0.88 0.00 0.68 +baladèrent balader ver 24.30 13.51 0.00 0.07 ind:pas:3p; +baladé balader ver m s 24.30 13.51 0.62 0.47 par:pas; +baladée balader ver f s 24.30 13.51 0.37 0.27 par:pas; +baladées balader ver f p 24.30 13.51 0.02 0.14 par:pas; +baladés balader ver m p 24.30 13.51 0.37 0.14 par:pas; +balafon balafon nom m s 0.00 0.14 0.00 0.07 +balafons balafon nom m p 0.00 0.14 0.00 0.07 +balafra balafrer ver 0.16 1.55 0.00 0.07 ind:pas:3s; +balafraient balafrer ver 0.16 1.55 0.01 0.14 ind:imp:3p; +balafrait balafrer ver 0.16 1.55 0.00 0.27 ind:imp:3s; +balafre balafre nom f s 0.57 1.69 0.55 1.15 +balafrent balafrer ver 0.16 1.55 0.00 0.07 ind:pre:3p; +balafrer balafrer ver 0.16 1.55 0.02 0.07 inf; +balafres balafre nom f p 0.57 1.69 0.03 0.54 +balafrons balafrer ver 0.16 1.55 0.01 0.00 imp:pre:1p; +balafrât balafrer ver 0.16 1.55 0.00 0.07 sub:imp:3s; +balafré balafré adj m s 0.57 1.15 0.35 0.88 +balafrée balafré adj f s 0.57 1.15 0.21 0.20 +balafrées balafrer ver f p 0.16 1.55 0.00 0.07 par:pas; +balafrés balafrer ver m p 0.16 1.55 0.04 0.00 par:pas; +balai_brosse balai_brosse nom m s 0.40 0.61 0.29 0.34 +balai balai nom m s 10.91 17.70 8.24 11.96 +balaie balayer ver 12.17 37.43 1.99 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balaient balayer ver 12.17 37.43 0.20 1.01 ind:pre:3p; +balaiera balayer ver 12.17 37.43 0.18 0.34 ind:fut:3s; +balaierai balayer ver 12.17 37.43 0.28 0.00 ind:fut:1s; +balaieraient balayer ver 12.17 37.43 0.00 0.07 cnd:pre:3p; +balaierait balayer ver 12.17 37.43 0.02 0.20 cnd:pre:3s; +balaieras balayer ver 12.17 37.43 0.02 0.00 ind:fut:2s; +balaierez balayer ver 12.17 37.43 0.00 0.07 ind:fut:2p; +balaies balayer ver 12.17 37.43 0.38 0.00 ind:pre:2s; +balai_brosse balai_brosse nom m p 0.40 0.61 0.11 0.27 +balais balai nom m p 10.91 17.70 2.68 5.74 +balaise balaise adj m s 0.49 0.34 0.45 0.27 +balaises balaise adj m p 0.49 0.34 0.04 0.07 +balalaïka balalaïka nom f s 0.03 0.41 0.02 0.14 +balalaïkas balalaïka nom f p 0.03 0.41 0.01 0.27 +balan balan nom m s 0.00 0.07 0.00 0.07 +balance balancer ver 40.12 67.70 9.66 12.16 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +balancelle balancelle nom f s 0.18 0.34 0.18 0.27 +balancelles balancelle nom f p 0.18 0.34 0.00 0.07 +balancement balancement nom m s 0.83 5.41 0.69 4.93 +balancements balancement nom m p 0.83 5.41 0.14 0.47 +balancent balancer ver 40.12 67.70 1.73 2.97 ind:pre:3p;sub:pre:3p; +balancer balancer ver 40.12 67.70 10.15 11.89 inf; +balancera balancer ver 40.12 67.70 0.35 0.34 ind:fut:3s; +balancerai balancer ver 40.12 67.70 0.27 0.07 ind:fut:1s; +balanceraient balancer ver 40.12 67.70 0.04 0.07 cnd:pre:3p; +balancerais balancer ver 40.12 67.70 0.29 0.20 cnd:pre:1s;cnd:pre:2s; +balancerait balancer ver 40.12 67.70 0.36 0.07 cnd:pre:3s; +balanceras balancer ver 40.12 67.70 0.05 0.00 ind:fut:2s; +balancerez balancer ver 40.12 67.70 0.01 0.00 ind:fut:2p; +balanceriez balancer ver 40.12 67.70 0.02 0.00 cnd:pre:2p; +balanceront balancer ver 40.12 67.70 0.04 0.00 ind:fut:3p; +balances balancer ver 40.12 67.70 1.39 0.54 ind:pre:2s;sub:pre:2s; +balancez balancer ver 40.12 67.70 1.33 0.20 imp:pre:2p;ind:pre:2p; +balancier balancier nom m s 0.26 4.05 0.26 3.72 +balanciers balancier nom m p 0.26 4.05 0.00 0.34 +balanciez balancer ver 40.12 67.70 0.03 0.00 ind:imp:2p; +balancines balancine nom f p 0.00 0.07 0.00 0.07 +balancions balancer ver 40.12 67.70 0.01 0.07 ind:imp:1p; +balancèrent balancer ver 40.12 67.70 0.00 0.47 ind:pas:3p; +balancé balancer ver m s 40.12 67.70 10.50 8.18 par:pas; +balancée balancer ver f s 40.12 67.70 1.06 1.55 par:pas; +balancées balancer ver f p 40.12 67.70 0.07 0.74 par:pas; +balancés balancer ver m p 40.12 67.70 0.80 1.55 par:pas; +balandras balandras nom m 0.00 0.07 0.00 0.07 +balanes balane nom f p 0.01 0.27 0.01 0.27 +balanstiquant balanstiquer ver 0.00 0.41 0.00 0.07 par:pre; +balanstique balanstiquer ver 0.00 0.41 0.00 0.20 imp:pre:2s;ind:pre:3s; +balanstiquer balanstiquer ver 0.00 0.41 0.00 0.14 inf; +balança balancer ver 40.12 67.70 0.01 3.78 ind:pas:3s; +balançage balançage nom m s 0.00 0.34 0.00 0.20 +balançages balançage nom m p 0.00 0.34 0.00 0.14 +balançai balancer ver 40.12 67.70 0.00 0.14 ind:pas:1s; +balançaient balancer ver 40.12 67.70 0.29 3.51 ind:imp:3p; +balançais balancer ver 40.12 67.70 0.17 0.88 ind:imp:1s;ind:imp:2s; +balançait balancer ver 40.12 67.70 0.56 9.93 ind:imp:3s; +balançant balancer ver 40.12 67.70 0.71 8.38 par:pre; +balançoire balançoire nom f s 2.14 3.11 1.93 1.89 +balançoires balançoire nom f p 2.14 3.11 0.21 1.22 +balançons balancer ver 40.12 67.70 0.22 0.00 imp:pre:1p;ind:pre:1p; +balatum balatum nom m s 0.00 0.14 0.00 0.14 +balaya balayer ver 12.17 37.43 0.16 2.36 ind:pas:3s; +balayage balayage nom m s 1.69 0.81 1.56 0.74 +balayages balayage nom m p 1.69 0.81 0.13 0.07 +balayai balayer ver 12.17 37.43 0.00 0.07 ind:pas:1s; +balayaient balayer ver 12.17 37.43 0.00 2.30 ind:imp:3p; +balayais balayer ver 12.17 37.43 0.05 0.20 ind:imp:1s;ind:imp:2s; +balayait balayer ver 12.17 37.43 0.28 5.07 ind:imp:3s; +balayant balayer ver 12.17 37.43 0.23 3.31 par:pre; +balaye balayer ver 12.17 37.43 1.03 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balayent balayer ver 12.17 37.43 0.04 0.20 ind:pre:3p; +balayer balayer ver 12.17 37.43 3.40 7.23 inf; +balayera balayer ver 12.17 37.43 0.08 0.00 ind:fut:3s; +balayerai balayer ver 12.17 37.43 0.12 0.00 ind:fut:1s; +balayeraient balayer ver 12.17 37.43 0.00 0.07 cnd:pre:3p; +balayerait balayer ver 12.17 37.43 0.04 0.07 cnd:pre:3s; +balayerez balayer ver 12.17 37.43 0.01 0.07 ind:fut:2p; +balayerons balayer ver 12.17 37.43 0.01 0.00 ind:fut:1p; +balayeront balayer ver 12.17 37.43 0.03 0.00 ind:fut:3p; +balayette balayette nom f s 0.33 0.54 0.33 0.34 +balayettes balayette nom f p 0.33 0.54 0.00 0.20 +balayeur balayeur nom m s 0.80 2.97 0.48 1.42 +balayeurs balayeur nom m p 0.80 2.97 0.11 1.35 +balayeuse balayeur nom f s 0.80 2.97 0.21 0.07 +balayeuses balayeuse nom f p 0.02 0.00 0.02 0.00 +balayez balayer ver 12.17 37.43 0.60 0.07 imp:pre:2p;ind:pre:2p; +balayons balayer ver 12.17 37.43 0.05 0.07 imp:pre:1p; +balayât balayer ver 12.17 37.43 0.00 0.14 sub:imp:3s; +balayèrent balayer ver 12.17 37.43 0.00 0.41 ind:pas:3p; +balayé balayer ver m s 12.17 37.43 1.84 5.54 par:pas; +balayée balayer ver f s 12.17 37.43 0.35 1.76 par:pas; +balayées balayer ver f p 12.17 37.43 0.26 0.95 par:pas; +balayure balayure nom f s 0.00 0.34 0.00 0.14 +balayures balayure nom f p 0.00 0.34 0.00 0.20 +balayés balayer ver m p 12.17 37.43 0.50 1.69 par:pas; +balboa balboa nom m s 0.02 0.00 0.02 0.00 +balbutia balbutier ver 0.23 13.99 0.00 5.54 ind:pas:3s; +balbutiai balbutier ver 0.23 13.99 0.00 0.81 ind:pas:1s; +balbutiaient balbutier ver 0.23 13.99 0.00 0.14 ind:imp:3p; +balbutiais balbutier ver 0.23 13.99 0.01 0.20 ind:imp:1s; +balbutiait balbutier ver 0.23 13.99 0.01 1.89 ind:imp:3s; +balbutiant balbutier ver 0.23 13.99 0.14 1.35 par:pre; +balbutiante balbutiant adj f s 0.14 1.15 0.01 0.54 +balbutiantes balbutiant adj f p 0.14 1.15 0.00 0.14 +balbutie balbutier ver 0.23 13.99 0.03 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balbutiement balbutiement nom m s 0.06 1.15 0.00 0.61 +balbutiements balbutiement nom m p 0.06 1.15 0.06 0.54 +balbutier balbutier ver 0.23 13.99 0.02 1.08 inf; +balbutions balbutier ver 0.23 13.99 0.00 0.07 ind:pre:1p; +balbutièrent balbutier ver 0.23 13.99 0.00 0.14 ind:pas:3p; +balbutié balbutier ver m s 0.23 13.99 0.01 0.74 par:pas; +balbutiées balbutier ver f p 0.23 13.99 0.00 0.07 par:pas; +balbutiés balbutier ver m p 0.23 13.99 0.00 0.14 par:pas; +balbuzard balbuzard nom m s 0.03 0.07 0.03 0.07 +balcon balcon nom m s 10.53 40.41 9.90 32.97 +balconnet balconnet nom m s 0.02 0.54 0.01 0.41 +balconnets balconnet nom m p 0.02 0.54 0.01 0.14 +balcons balcon nom m p 10.53 40.41 0.63 7.43 +baldaquin baldaquin nom m s 0.66 2.77 0.63 2.57 +baldaquins baldaquin nom m p 0.66 2.77 0.04 0.20 +bale bale nom f s 0.50 0.00 0.36 0.00 +baleine baleine nom f s 16.68 5.00 11.52 3.11 +baleineau baleineau nom m s 0.05 0.00 0.05 0.00 +baleines baleine nom f p 16.68 5.00 5.17 1.89 +baleinier baleinier nom m s 0.30 0.81 0.09 0.07 +baleiniers baleinier nom m p 0.30 0.81 0.20 0.14 +baleinière baleinier nom f s 0.30 0.81 0.02 0.54 +baleinières baleinier adj f p 0.06 0.00 0.01 0.00 +baleiné baleiné adj m s 0.00 0.41 0.00 0.07 +baleinée baleiné adj f s 0.00 0.41 0.00 0.07 +baleinées baleiné adj f p 0.00 0.41 0.00 0.07 +baleinés baleiné adj m p 0.00 0.41 0.00 0.20 +bales bale nom f p 0.50 0.00 0.14 0.00 +balinais balinais adj m s 0.03 0.20 0.01 0.14 +balinaise balinais adj f s 0.03 0.20 0.02 0.07 +balisage balisage nom m s 0.12 0.07 0.12 0.07 +balisaient baliser ver 0.65 2.03 0.01 0.20 ind:imp:3p; +balisait baliser ver 0.65 2.03 0.01 0.14 ind:imp:3s; +balisant baliser ver 0.65 2.03 0.00 0.07 par:pre; +balise balise nom f s 2.82 0.68 2.31 0.27 +balisent baliser ver 0.65 2.03 0.01 0.07 ind:pre:3p; +baliser baliser ver 0.65 2.03 0.06 0.34 inf; +baliseraient baliser ver 0.65 2.03 0.01 0.00 cnd:pre:3p; +balises balise nom f p 2.82 0.68 0.51 0.41 +baliste baliste nom f s 0.02 0.14 0.01 0.00 +balistes baliste nom f p 0.02 0.14 0.01 0.14 +balistique balistique nom f s 1.06 0.14 1.06 0.14 +balistiquement balistiquement adv 0.00 0.07 0.00 0.07 +balistiques balistique adj p 1.11 0.14 0.31 0.07 +balisé baliser ver m s 0.65 2.03 0.06 0.07 par:pas; +balisée baliser ver f s 0.65 2.03 0.19 0.20 par:pas; +balisées baliser ver f p 0.65 2.03 0.00 0.07 par:pas; +balisés baliser ver m p 0.65 2.03 0.00 0.20 par:pas; +baliveau baliveau nom m s 0.00 1.08 0.00 0.07 +baliveaux baliveau nom m p 0.00 1.08 0.00 1.01 +baliverne baliverne nom f s 2.79 1.55 0.20 0.14 +balivernes baliverne nom f p 2.79 1.55 2.59 1.42 +balkanique balkanique adj s 0.00 1.49 0.00 0.81 +balkaniques balkanique adj p 0.00 1.49 0.00 0.68 +balkanisés balkaniser ver m p 0.00 0.07 0.00 0.07 par:pas; +ball_trap ball_trap nom m s 0.20 0.14 0.20 0.14 +ballade ballade nom f s 4.54 1.22 3.64 0.95 +ballades ballade nom f p 4.54 1.22 0.90 0.27 +ballaient baller ver 0.12 0.95 0.10 0.07 ind:imp:3p; +ballant ballant adj m s 0.33 6.28 0.02 0.54 +ballante ballant adj f s 0.33 6.28 0.00 0.54 +ballantes ballant adj f p 0.33 6.28 0.00 0.74 +ballants ballant adj m p 0.33 6.28 0.31 4.46 +ballast ballast nom m s 1.44 2.57 0.40 2.50 +ballasts ballast nom m p 1.44 2.57 1.04 0.07 +balle_peau balle_peau ono 0.00 0.07 0.00 0.07 +balle balle nom f s 122.07 94.59 77.32 44.73 +baller baller ver 0.12 0.95 0.02 0.41 inf; +ballerine ballerine nom f s 1.75 2.16 1.23 1.22 +ballerines ballerine nom f p 1.75 2.16 0.51 0.95 +balles balle nom f p 122.07 94.59 44.75 49.86 +ballet ballet nom m s 8.66 8.24 7.80 6.01 +ballets ballet nom m p 8.66 8.24 0.86 2.23 +balloches balloche nom m p 0.12 0.41 0.12 0.41 +ballon_sonde ballon_sonde nom m s 0.14 0.00 0.14 0.00 +ballon ballon nom m s 32.92 21.42 27.27 17.16 +ballonnaient ballonner ver 0.66 1.15 0.00 0.07 ind:imp:3p; +ballonnant ballonnant adj m s 0.00 0.27 0.00 0.07 +ballonnante ballonnant adj f s 0.00 0.27 0.00 0.14 +ballonnants ballonnant adj m p 0.00 0.27 0.00 0.07 +ballonne ballonner ver 0.66 1.15 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ballonnement ballonnement nom m s 0.04 0.14 0.02 0.07 +ballonnements ballonnement nom m p 0.04 0.14 0.02 0.07 +ballonnent ballonner ver 0.66 1.15 0.00 0.07 ind:pre:3p; +ballonner ballonner ver 0.66 1.15 0.15 0.14 inf; +ballonnets ballonnet nom m p 0.01 0.14 0.01 0.14 +ballonné ballonné adj m s 0.27 1.15 0.19 0.74 +ballonnée ballonner ver f s 0.66 1.15 0.15 0.14 par:pas; +ballonnées ballonner ver f p 0.66 1.15 0.01 0.07 par:pas; +ballonnées ballonné adj f p 0.27 1.15 0.01 0.07 +ballonnés ballonné adj m p 0.27 1.15 0.01 0.27 +ballons ballon nom m p 32.92 21.42 5.65 4.26 +ballot ballot nom m s 1.01 5.88 0.81 1.82 +ballote ballote nom f s 0.00 0.07 0.00 0.07 +ballots ballot nom m p 1.01 5.88 0.20 4.05 +ballottage ballottage nom m s 0.02 0.14 0.02 0.00 +ballottages ballottage nom m p 0.02 0.14 0.00 0.14 +ballottaient ballotter ver 0.72 5.68 0.00 0.41 ind:imp:3p; +ballottait ballotter ver 0.72 5.68 0.01 0.54 ind:imp:3s; +ballottant ballotter ver 0.72 5.68 0.00 0.41 par:pre; +ballotte ballotter ver 0.72 5.68 0.02 0.41 ind:pre:1s;ind:pre:3s; +ballottement ballottement nom m s 0.00 0.14 0.00 0.14 +ballottent ballotter ver 0.72 5.68 0.01 0.27 ind:pre:3p; +ballotter ballotter ver 0.72 5.68 0.02 0.41 inf; +ballottine ballottine nom f s 0.01 0.07 0.01 0.00 +ballottines ballottine nom f p 0.01 0.07 0.00 0.07 +ballottèrent ballotter ver 0.72 5.68 0.00 0.07 ind:pas:3p; +ballotté ballotter ver m s 0.72 5.68 0.44 1.49 par:pas; +ballottée ballotter ver f s 0.72 5.68 0.17 0.68 par:pas; +ballottées ballotter ver f p 0.72 5.68 0.00 0.20 par:pas; +ballottés ballotter ver m p 0.72 5.68 0.04 0.81 par:pas; +balluche balluche nom m s 0.01 0.14 0.00 0.07 +balluches balluche nom m p 0.01 0.14 0.01 0.07 +balluchon balluchon nom m s 0.18 0.54 0.16 0.34 +balluchonnage balluchonnage nom m s 0.00 0.07 0.00 0.07 +balluchonné balluchonner ver m s 0.00 0.07 0.00 0.07 par:pas; +balluchons balluchon nom m p 0.18 0.54 0.02 0.20 +balnéaire balnéaire adj s 0.39 1.22 0.39 0.74 +balnéaires balnéaire adj f p 0.39 1.22 0.00 0.47 +balnéothérapie balnéothérapie nom f s 0.01 0.00 0.01 0.00 +balourd balourd nom m s 0.73 0.54 0.67 0.41 +balourde balourd adj f s 0.82 0.68 0.14 0.00 +balourdise balourdise nom f s 0.02 0.88 0.02 0.81 +balourdises balourdise nom f p 0.02 0.88 0.00 0.07 +balourds balourd adj m p 0.82 0.68 0.28 0.14 +balpeau balpeau ono 0.01 0.61 0.01 0.61 +bals bal nom m p 30.25 25.54 1.67 7.23 +balsa balsa nom m s 0.13 0.00 0.13 0.00 +balsamier balsamier nom m s 0.01 0.07 0.00 0.07 +balsamiers balsamier nom m p 0.01 0.07 0.01 0.00 +balsamine balsamine nom f s 0.00 0.61 0.00 0.07 +balsamines balsamine nom f p 0.00 0.61 0.00 0.54 +balsamique balsamique adj s 0.10 0.47 0.10 0.41 +balsamiques balsamique adj m p 0.10 0.47 0.00 0.07 +balte balte adj s 0.52 2.23 0.05 0.34 +baltes balte adj p 0.52 2.23 0.47 1.89 +balthazar balthazar nom m s 0.00 0.54 0.00 0.47 +balthazars balthazar nom m p 0.00 0.54 0.00 0.07 +balèze balèze adj s 1.30 0.81 1.12 0.74 +balèzes balèze adj p 1.30 0.81 0.19 0.07 +baltique baltique adj s 0.14 0.47 0.14 0.34 +baltiques baltique adj f p 0.14 0.47 0.00 0.14 +balto balto adv 0.00 0.54 0.00 0.54 +baluba baluba nom s 0.00 0.07 0.00 0.07 +baluchon baluchon nom m s 0.97 2.30 0.87 1.96 +baluchonnage baluchonnage nom m s 0.00 0.07 0.00 0.07 +baluchonne baluchonner ver 0.00 0.41 0.00 0.07 ind:pre:3s; +baluchonnent baluchonner ver 0.00 0.41 0.00 0.07 ind:pre:3p; +baluchonner baluchonner ver 0.00 0.41 0.00 0.20 inf; +baluchonneur baluchonneur nom m s 0.00 0.20 0.00 0.07 +baluchonneurs baluchonneur nom m p 0.00 0.20 0.00 0.14 +baluchonné baluchonner ver m s 0.00 0.41 0.00 0.07 par:pas; +baluchons baluchon nom m p 0.97 2.30 0.10 0.34 +balustrade balustrade nom f s 0.61 11.28 0.61 10.20 +balustrades balustrade nom f p 0.61 11.28 0.00 1.08 +balustre balustre nom m s 0.00 1.35 0.00 0.20 +balustres balustre nom m p 0.00 1.35 0.00 1.15 +balzacien balzacien adj m s 0.00 0.61 0.00 0.34 +balzacienne balzacien adj f s 0.00 0.61 0.00 0.14 +balzaciennes balzacien adj f p 0.00 0.61 0.00 0.07 +balzaciens balzacien adj m p 0.00 0.61 0.00 0.07 +balzanes balzane nom f p 0.00 0.07 0.00 0.07 +bambara bambara adj m s 0.00 0.07 0.00 0.07 +bambara bambara nom s 0.00 0.07 0.00 0.07 +bambin bambin nom m s 1.35 4.66 0.87 2.16 +bambine bambin nom f s 1.35 4.66 0.00 0.14 +bambines bambin nom f p 1.35 4.66 0.00 0.14 +bambinette bambinette nom f s 0.01 0.07 0.01 0.07 +bambino bambino nom m s 0.37 0.34 0.33 0.27 +bambinos bambino nom m p 0.37 0.34 0.04 0.07 +bambins bambin nom m p 1.35 4.66 0.48 2.23 +bambochait bambocher ver 0.01 0.27 0.00 0.14 ind:imp:3s; +bamboche bamboche nom f s 0.02 0.07 0.02 0.07 +bambocher bambocher ver 0.01 0.27 0.01 0.00 inf; +bambocheurs bambocheur nom m p 0.00 0.14 0.00 0.14 +bambou bambou nom m s 1.73 6.15 1.32 3.78 +bamboula bamboula nom f s 1.29 0.27 1.29 0.27 +bambous bambou nom m p 1.73 6.15 0.41 2.36 +ban ban nom m s 1.66 2.16 0.76 1.76 +banal banal adj m s 8.66 26.22 4.88 11.28 +banale banal adj f s 8.66 26.22 2.75 9.93 +banalement banalement adv 0.16 1.22 0.16 1.22 +banales banal adj f p 8.66 26.22 0.78 2.84 +banalisait banaliser ver 0.70 0.81 0.01 0.07 ind:imp:3s; +banalisation banalisation nom f s 0.00 0.07 0.00 0.07 +banalise banaliser ver 0.70 0.81 0.08 0.00 ind:pre:3s; +banalisent banaliser ver 0.70 0.81 0.00 0.07 ind:pre:3p; +banaliser banaliser ver 0.70 0.81 0.16 0.00 inf; +banalisé banaliser ver m s 0.70 0.81 0.08 0.00 par:pas; +banalisée banaliser ver f s 0.70 0.81 0.26 0.47 par:pas; +banalisées banaliser ver f p 0.70 0.81 0.08 0.00 par:pas; +banalisés banaliser ver m p 0.70 0.81 0.04 0.20 par:pas; +banalité banalité nom f s 1.47 8.65 0.77 5.34 +banalités banalité nom f p 1.47 8.65 0.71 3.31 +banals banal adj m p 8.66 26.22 0.25 2.03 +banana bananer ver 1.04 0.20 0.81 0.14 ind:pas:3s; +bananas bananer ver 1.04 0.20 0.23 0.00 ind:pas:2s; +banane banane nom f s 11.14 7.57 6.09 4.05 +bananer bananer ver 1.04 0.20 0.00 0.07 inf; +bananeraie bananeraie nom f s 0.14 0.20 0.14 0.20 +bananes banane nom f p 11.14 7.57 5.05 3.51 +bananier bananier nom m s 0.76 3.85 0.18 0.61 +bananiers bananier nom m p 0.76 3.85 0.57 3.24 +bananière bananier adj f s 0.16 0.27 0.02 0.00 +banaux banal adj m p 8.66 26.22 0.00 0.14 +banc_titre banc_titre nom m s 0.14 0.00 0.14 0.00 +banc banc nom m s 10.76 66.42 8.96 48.31 +bancaire bancaire adj s 3.94 1.49 2.71 0.74 +bancaires bancaire adj p 3.94 1.49 1.23 0.74 +bancal bancal adj m s 0.53 3.18 0.29 1.42 +bancale bancal adj f s 0.53 3.18 0.20 1.08 +bancales bancal adj f p 0.53 3.18 0.02 0.34 +bancals bancal adj m p 0.53 3.18 0.02 0.34 +banche bancher ver 0.01 0.00 0.01 0.00 ind:pre:3s; +banco banco ono 0.42 0.41 0.42 0.41 +bancos banco nom m p 0.04 0.27 0.01 0.07 +bancroche bancroche adj s 0.01 0.14 0.01 0.00 +bancroches bancroche adj p 0.01 0.14 0.00 0.14 +bancs banc nom m p 10.76 66.42 1.81 18.11 +banda bander ver 14.51 15.54 0.01 0.54 ind:pas:3s; +bandage bandage nom m s 4.76 2.97 2.79 1.35 +bandages bandage nom m p 4.76 2.97 1.96 1.62 +bandagiste bandagiste nom s 0.00 0.14 0.00 0.14 +bandai bander ver 14.51 15.54 0.00 0.07 ind:pas:1s; +bandaient bander ver 14.51 15.54 0.02 0.20 ind:imp:3p; +bandais bander ver 14.51 15.54 0.12 0.61 ind:imp:1s;ind:imp:2s; +bandaison bandaison nom f s 0.00 0.74 0.00 0.54 +bandaisons bandaison nom f p 0.00 0.74 0.00 0.20 +bandait bander ver 14.51 15.54 0.18 1.49 ind:imp:3s; +bandana bandana nom m s 0.50 0.07 0.46 0.07 +bandanas bandana nom m p 0.50 0.07 0.04 0.00 +bandant bandant adj m s 1.46 1.55 0.33 0.27 +bandante bandant adj f s 1.46 1.55 1.04 0.68 +bandantes bandant adj f p 1.46 1.55 0.05 0.41 +bandants bandant adj m p 1.46 1.55 0.04 0.20 +bandasse bander ver 14.51 15.54 0.00 0.07 sub:imp:1s; +bande_annonce bande_annonce nom f s 0.51 0.00 0.41 0.00 +bande_son bande_son nom f s 0.09 0.27 0.09 0.27 +bande bande nom f s 78.36 72.23 69.10 52.36 +bandeau bandeau nom m s 2.60 6.49 2.34 4.73 +bandeaux bandeau nom m p 2.60 6.49 0.26 1.76 +bandelette bandelette nom f s 0.69 1.15 0.09 0.07 +bandelettes bandelette nom f p 0.69 1.15 0.61 1.08 +bandent bander ver 14.51 15.54 0.14 1.01 ind:pre:3p; +bander bander ver 14.51 15.54 5.34 5.07 inf; +bandera bandera nom f s 0.17 0.27 0.02 0.20 +banderai bander ver 14.51 15.54 0.15 0.14 ind:fut:1s; +banderaient bander ver 14.51 15.54 0.01 0.07 cnd:pre:3p; +banderait bander ver 14.51 15.54 0.00 0.07 cnd:pre:3s; +banderas bander ver 14.51 15.54 0.14 0.07 ind:fut:2s; +banderille banderille nom f s 0.00 0.88 0.00 0.41 +banderillero banderillero nom m s 0.10 0.07 0.10 0.00 +banderilleros banderillero nom m p 0.10 0.07 0.00 0.07 +banderilles banderille nom f p 0.00 0.88 0.00 0.47 +banderole banderole nom f s 1.34 4.19 0.67 2.23 +banderoles banderole nom f p 1.34 4.19 0.67 1.96 +bande_annonce bande_annonce nom f p 0.51 0.00 0.10 0.00 +bandes bande nom f p 78.36 72.23 9.26 19.86 +bandeur bandeur nom m s 0.07 0.14 0.03 0.00 +bandeurs bandeur nom m p 0.07 0.14 0.04 0.14 +bandez bander ver 14.51 15.54 0.82 0.14 imp:pre:2p;ind:pre:2p; +bandiez bander ver 14.51 15.54 0.02 0.00 ind:imp:2p; +bandit bandit nom m s 19.70 8.85 8.26 4.59 +banditisme banditisme nom m s 0.47 0.95 0.47 0.95 +bandits bandit nom m p 19.70 8.85 11.45 4.26 +bandoline bandoline nom f s 0.00 0.07 0.00 0.07 +bandonéon bandonéon nom m s 0.00 0.20 0.00 0.20 +bandothèque bandothèque nom f s 0.01 0.00 0.01 0.00 +bandoulière bandoulière nom f s 0.12 4.19 0.12 4.19 +bandé bander ver m s 14.51 15.54 0.60 0.81 par:pas; +bandée bandé adj f s 1.40 3.58 0.33 1.22 +bandées bandé adj f p 1.40 3.58 0.00 0.27 +bandés bandé adj m p 1.40 3.58 1.03 1.55 +bang bang ono 1.74 0.20 1.74 0.20 +bangladais bangladais nom m 0.00 0.07 0.00 0.07 +bangs bang nom m p 2.37 0.61 0.34 0.27 +banian banian nom m s 0.05 0.27 0.04 0.20 +banians banian nom m p 0.05 0.27 0.01 0.07 +banjo banjo nom m s 3.13 1.08 3.08 0.81 +banjos banjo nom m p 3.13 1.08 0.06 0.27 +bank_note bank_note nom f s 0.00 0.20 0.00 0.07 +bank_note bank_note nom f p 0.00 0.20 0.00 0.14 +banlieue banlieue nom f s 7.92 23.85 6.96 21.35 +banlieues banlieue nom f p 7.92 23.85 0.96 2.50 +banlieusard banlieusard nom m s 0.23 0.68 0.09 0.20 +banlieusarde banlieusard nom f s 0.23 0.68 0.01 0.14 +banlieusardes banlieusard nom f p 0.23 0.68 0.02 0.00 +banlieusards banlieusard nom m p 0.23 0.68 0.10 0.34 +banne banner ver 0.86 0.07 0.40 0.00 imp:pre:2s;ind:pre:3s; +banner banner ver 0.86 0.07 0.46 0.07 inf; +bannes banne nom f p 0.00 0.07 0.00 0.07 +banni bannir ver m s 7.03 3.31 2.48 1.49 par:pas; +bannie bannir ver f s 7.03 3.31 0.85 0.27 par:pas; +bannies bannir ver f p 7.03 3.31 0.07 0.14 par:pas; +bannir bannir ver 7.03 3.31 1.62 0.61 inf; +bannirait bannir ver 7.03 3.31 0.34 0.14 cnd:pre:3s; +bannirent bannir ver 7.03 3.31 0.02 0.00 ind:pas:3p; +bannis bannir ver m p 7.03 3.31 0.93 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bannissaient bannir ver 7.03 3.31 0.00 0.14 ind:imp:3p; +bannissait bannir ver 7.03 3.31 0.00 0.14 ind:imp:3s; +bannissant bannir ver 7.03 3.31 0.01 0.07 par:pre; +bannisse bannir ver 7.03 3.31 0.02 0.00 sub:pre:3s; +bannissement bannissement nom m s 0.62 0.47 0.59 0.34 +bannissements bannissement nom m p 0.62 0.47 0.03 0.14 +bannissez bannir ver 7.03 3.31 0.57 0.07 imp:pre:2p; +bannissons bannir ver 7.03 3.31 0.06 0.00 imp:pre:1p;ind:pre:1p; +bannit bannir ver 7.03 3.31 0.05 0.07 ind:pre:3s;ind:pas:3s; +bannière bannière nom f s 2.14 6.96 1.83 2.91 +bannières bannière nom f p 2.14 6.96 0.31 4.05 +banqua banquer ver 0.08 0.47 0.00 0.07 ind:pas:3s; +banque banque nom f s 79.35 30.88 70.79 25.54 +banquer banquer ver 0.08 0.47 0.04 0.27 inf; +banquerai banquer ver 0.08 0.47 0.00 0.07 ind:fut:1s; +banqueroute banqueroute nom f s 1.02 0.74 0.82 0.68 +banqueroutes banqueroute nom f p 1.02 0.74 0.20 0.07 +banqueroutier banqueroutier nom m s 0.11 0.00 0.01 0.00 +banqueroutiers banqueroutier nom m p 0.11 0.00 0.10 0.00 +banques banque nom f p 79.35 30.88 8.56 5.34 +banquet banquet nom m s 4.41 5.88 3.62 4.12 +banquets banquet nom m p 4.41 5.88 0.79 1.76 +banquette banquette nom f s 3.02 30.88 2.66 24.26 +banquettes banquette nom f p 3.02 30.88 0.36 6.62 +banqueté banqueter ver m s 0.04 0.00 0.04 0.00 par:pas; +banquier banquier nom m s 6.32 12.70 4.70 8.38 +banquiers banquier nom m p 6.32 12.70 1.33 3.99 +banquise banquise nom f s 0.66 1.55 0.65 1.42 +banquises banquise nom f p 0.66 1.55 0.01 0.14 +banquistes banquiste nom p 0.00 0.14 0.00 0.14 +banquière banquier nom f s 6.32 12.70 0.29 0.20 +banquières banquière nom f p 0.07 0.00 0.03 0.00 +banqué banquer ver m s 0.08 0.47 0.04 0.07 par:pas; +bans ban nom m p 1.66 2.16 0.90 0.41 +bantou bantou nom m s 0.14 0.00 0.14 0.00 +bantoue bantou adj f s 0.14 0.07 0.02 0.07 +bantu bantu nom m s 0.01 0.00 0.01 0.00 +banyan banyan nom m s 0.07 0.00 0.07 0.00 +banyuls banyuls nom m 0.00 0.74 0.00 0.74 +baobab baobab nom m s 0.58 1.15 0.18 0.81 +baobabs baobab nom m p 0.58 1.15 0.40 0.34 +baou baou nom m s 0.00 0.20 0.00 0.20 +baptisa baptiser ver 9.90 16.35 0.33 1.35 ind:pas:3s; +baptisai baptiser ver 9.90 16.35 0.00 0.07 ind:pas:1s; +baptisaient baptiser ver 9.90 16.35 0.00 0.34 ind:imp:3p; +baptisais baptiser ver 9.90 16.35 0.01 0.07 ind:imp:1s; +baptisait baptiser ver 9.90 16.35 0.05 0.95 ind:imp:3s; +baptisant baptiser ver 9.90 16.35 0.14 0.07 par:pre; +baptise baptiser ver 9.90 16.35 1.96 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +baptisent baptiser ver 9.90 16.35 0.00 0.41 ind:pre:3p; +baptiser baptiser ver 9.90 16.35 1.82 1.96 inf; +baptisera baptiser ver 9.90 16.35 0.20 0.14 ind:fut:3s; +baptiserai baptiser ver 9.90 16.35 0.01 0.00 ind:fut:1s; +baptiseraient baptiser ver 9.90 16.35 0.01 0.00 cnd:pre:3p; +baptiserait baptiser ver 9.90 16.35 0.00 0.14 cnd:pre:3s; +baptiseront baptiser ver 9.90 16.35 0.02 0.07 ind:fut:3p; +baptises baptiser ver 9.90 16.35 0.04 0.14 ind:pre:2s; +baptiseur baptiseur nom m s 0.02 0.07 0.02 0.07 +baptisez baptiser ver 9.90 16.35 0.06 0.00 imp:pre:2p;ind:pre:2p; +baptisions baptiser ver 9.90 16.35 0.14 0.20 ind:imp:1p; +baptismal baptismal adj m s 0.19 1.22 0.00 0.20 +baptismale baptismal adj f s 0.19 1.22 0.01 0.20 +baptismales baptismal adj f p 0.19 1.22 0.00 0.07 +baptismaux baptismal adj m p 0.19 1.22 0.17 0.74 +baptisons baptiser ver 9.90 16.35 0.03 0.07 imp:pre:1p;ind:pre:1p; +baptiste baptiste adj s 0.77 0.34 0.69 0.34 +baptistes baptiste nom p 0.24 0.07 0.19 0.07 +baptisèrent baptiser ver 9.90 16.35 0.06 0.07 ind:pas:3p; +baptistère baptistère nom m s 0.00 0.41 0.00 0.41 +baptisé baptiser ver m s 9.90 16.35 3.61 5.54 par:pas; +baptisée baptiser ver f s 9.90 16.35 0.99 1.96 par:pas; +baptisées baptiser ver f p 9.90 16.35 0.04 0.27 par:pas; +baptisés baptiser ver m p 9.90 16.35 0.41 1.08 par:pas; +baptême baptême nom m s 4.84 10.34 4.41 9.39 +baptêmes baptême nom m p 4.84 10.34 0.43 0.95 +baquet baquet nom m s 0.48 4.86 0.46 3.65 +baquets baquet nom m p 0.48 4.86 0.02 1.22 +bar_hôtel bar_hôtel nom m s 0.01 0.00 0.01 0.00 +bar_mitsva bar_mitsva nom f 0.41 0.07 0.41 0.07 +bar_restaurant bar_restaurant nom m s 0.00 0.07 0.00 0.07 +bar_tabac bar_tabac nom m s 0.03 0.61 0.03 0.61 +bar bar nom m s 67.57 61.35 60.17 52.57 +baragouin baragouin nom m s 0.12 0.41 0.11 0.41 +baragouinage baragouinage nom m s 0.10 0.00 0.10 0.00 +baragouinaient baragouiner ver 0.68 1.49 0.00 0.07 ind:imp:3p; +baragouinait baragouiner ver 0.68 1.49 0.01 0.54 ind:imp:3s; +baragouinant baragouiner ver 0.68 1.49 0.25 0.20 par:pre; +baragouine baragouiner ver 0.68 1.49 0.19 0.20 ind:pre:1s;ind:pre:3s; +baragouinent baragouiner ver 0.68 1.49 0.02 0.14 ind:pre:3p; +baragouiner baragouiner ver 0.68 1.49 0.07 0.20 inf; +baragouines baragouiner ver 0.68 1.49 0.09 0.00 ind:pre:2s; +baragouineur baragouineur nom m s 0.01 0.00 0.01 0.00 +baragouinez baragouiner ver 0.68 1.49 0.04 0.00 ind:pre:2p; +baragouins baragouin nom m p 0.12 0.41 0.01 0.00 +baragouiné baragouiner ver m s 0.68 1.49 0.01 0.14 par:pas; +baraka baraka nom f s 0.18 0.47 0.18 0.47 +baralipton baralipton nom m s 0.00 0.07 0.00 0.07 +baraque baraque nom f s 12.27 30.47 11.10 22.84 +baraquement baraquement nom m s 1.35 2.64 0.68 1.01 +baraquements baraquement nom m p 1.35 2.64 0.67 1.62 +baraques baraque nom f p 12.27 30.47 1.17 7.64 +baraqué baraqué adj m s 1.04 0.68 0.96 0.41 +baraquée baraqué adj f s 1.04 0.68 0.02 0.14 +baraqués baraqué adj m p 1.04 0.68 0.06 0.14 +baraterie baraterie nom f s 0.01 0.00 0.01 0.00 +baratin baratin nom m s 4.03 2.97 3.90 2.84 +baratinais baratiner ver 1.89 1.15 0.03 0.00 ind:imp:1s;ind:imp:2s; +baratinait baratiner ver 1.89 1.15 0.11 0.07 ind:imp:3s; +baratine baratiner ver 1.89 1.15 0.75 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +baratinent baratiner ver 1.89 1.15 0.01 0.00 ind:pre:3p; +baratiner baratiner ver 1.89 1.15 0.42 0.68 inf; +baratines baratiner ver 1.89 1.15 0.13 0.00 ind:pre:2s; +baratineur baratineur nom m s 0.74 0.27 0.44 0.20 +baratineurs baratineur nom m p 0.74 0.27 0.17 0.07 +baratineuse baratineur nom f s 0.74 0.27 0.13 0.00 +baratinez baratiner ver 1.89 1.15 0.05 0.00 imp:pre:2p;ind:pre:2p; +baratins baratin nom m p 4.03 2.97 0.14 0.14 +baratiné baratiner ver m s 1.89 1.15 0.21 0.27 par:pas; +baratinée baratiner ver f s 1.89 1.15 0.15 0.00 par:pas; +baratinés baratiner ver m p 1.89 1.15 0.02 0.00 par:pas; +barattage barattage nom m s 0.10 0.00 0.10 0.00 +barattait baratter ver 0.14 0.47 0.00 0.14 ind:imp:3s; +barattant baratter ver 0.14 0.47 0.00 0.07 par:pre; +baratte baratte nom f s 0.03 0.41 0.03 0.34 +barattent baratter ver 0.14 0.47 0.00 0.07 ind:pre:3p; +baratter baratter ver 0.14 0.47 0.13 0.07 inf; +barattes baratte nom f p 0.03 0.41 0.00 0.07 +baratté baratter ver m s 0.14 0.47 0.01 0.00 par:pas; +barattés baratter ver m p 0.14 0.47 0.00 0.07 par:pas; +barba barber ver 0.78 1.69 0.14 0.27 ind:pas:3s; +barbacane barbacane nom f s 0.02 0.14 0.02 0.07 +barbacanes barbacane nom f p 0.02 0.14 0.00 0.07 +barbaient barber ver 0.78 1.69 0.01 0.00 ind:imp:3p; +barbait barber ver 0.78 1.69 0.03 0.14 ind:imp:3s; +barbant barbant adj m s 1.90 0.27 1.02 0.20 +barbante barbant adj f s 1.90 0.27 0.65 0.00 +barbantes barbant adj f p 1.90 0.27 0.05 0.00 +barbants barbant adj m p 1.90 0.27 0.18 0.07 +barbaque barbaque nom f s 0.24 3.18 0.24 3.18 +barbara barbara nom s 0.05 0.00 0.05 0.00 +barbare barbare nom s 5.15 5.47 2.03 1.62 +barbarement barbarement adv 0.00 0.14 0.00 0.14 +barbares barbare nom p 5.15 5.47 3.12 3.85 +barbaresque barbaresque adj m s 0.00 0.95 0.00 0.41 +barbaresques barbaresque nom p 0.05 0.61 0.05 0.54 +barbarie barbarie nom f s 1.37 3.72 1.36 3.58 +barbaries barbarie nom f p 1.37 3.72 0.01 0.14 +barbarisme barbarisme nom m s 0.04 0.34 0.04 0.14 +barbarismes barbarisme nom m p 0.04 0.34 0.00 0.20 +barbe_de_capucin barbe_de_capucin nom f s 0.00 0.07 0.00 0.07 +barbe barbe nom s 24.15 50.54 23.40 47.70 +barbeau barbeau nom m s 0.01 1.08 0.01 0.74 +barbeaux barbeau nom m p 0.01 1.08 0.00 0.34 +barbecue barbecue nom m s 5.87 0.47 5.47 0.47 +barbecues barbecue nom m p 5.87 0.47 0.39 0.00 +barbelé barbelé adj m s 0.86 2.97 0.35 0.81 +barbelée barbelé adj f s 0.86 2.97 0.05 0.41 +barbelées barbelé adj f p 0.86 2.97 0.12 0.14 +barbelés barbelé nom m p 3.56 8.38 3.25 7.36 +barbent barber ver 0.78 1.69 0.00 0.14 ind:pre:3p; +barber barber ver 0.78 1.69 0.06 0.20 inf; +barbera barber ver 0.78 1.69 0.00 0.07 ind:fut:3s; +barberait barber ver 0.78 1.69 0.00 0.07 cnd:pre:3s; +barbes barbe nom p 24.15 50.54 0.75 2.84 +barbet barbet nom m s 0.00 0.41 0.00 0.34 +barbets barbet nom m p 0.00 0.41 0.00 0.07 +barbette barbette adj f s 0.01 0.00 0.01 0.00 +barbiche barbiche nom f s 0.18 3.78 0.18 3.65 +barbiches barbiche nom f p 0.18 3.78 0.00 0.14 +barbichette barbichette nom f s 0.38 0.81 0.38 0.81 +barbichu barbichu adj m s 0.01 0.68 0.01 0.61 +barbichus barbichu adj m p 0.01 0.68 0.00 0.07 +barbier barbier nom m s 3.62 22.50 3.57 22.16 +barbiers barbier nom m p 3.62 22.50 0.05 0.34 +barbillon barbillon nom m s 0.01 0.81 0.00 0.34 +barbillons barbillon nom m p 0.01 0.81 0.01 0.47 +barbiquet barbiquet nom m s 0.00 0.41 0.00 0.07 +barbiquets barbiquet nom m p 0.00 0.41 0.00 0.34 +barbiturique barbiturique nom m s 0.80 0.61 0.10 0.14 +barbituriques barbiturique nom m p 0.80 0.61 0.70 0.47 +barbon barbon nom m s 0.03 0.61 0.02 0.54 +barbons barbon nom m p 0.03 0.61 0.01 0.07 +barbot barbot nom m s 0.00 0.20 0.00 0.20 +barbota barboter ver 0.75 3.18 0.00 0.14 ind:pas:3s; +barbotages barbotage nom m p 0.00 0.07 0.00 0.07 +barbotaient barboter ver 0.75 3.18 0.00 0.14 ind:imp:3p; +barbotait barboter ver 0.75 3.18 0.00 0.88 ind:imp:3s; +barbotant barboter ver 0.75 3.18 0.01 0.41 par:pre; +barbote barboter ver 0.75 3.18 0.04 0.20 ind:pre:1s;ind:pre:3s; +barbotent barboter ver 0.75 3.18 0.00 0.14 ind:pre:3p; +barboter barboter ver 0.75 3.18 0.26 0.88 inf; +barboterais barboter ver 0.75 3.18 0.00 0.07 cnd:pre:1s; +barboterait barboter ver 0.75 3.18 0.00 0.07 cnd:pre:3s; +barboteuse barboteur nom f s 0.02 0.34 0.02 0.20 +barboteuses barboteuse nom f p 0.01 0.00 0.01 0.00 +barbotière barbotière nom f s 0.00 0.07 0.00 0.07 +barbotons barboter ver 0.75 3.18 0.16 0.14 imp:pre:1p;ind:pre:1p; +barbotte barbotte nom f s 0.03 0.07 0.02 0.07 +barbottes barbotte nom f p 0.03 0.07 0.01 0.00 +barboté barboter ver m s 0.75 3.18 0.28 0.14 par:pas; +barbouilla barbouiller ver 1.31 8.99 0.00 0.27 ind:pas:3s; +barbouillage barbouillage nom m s 0.30 0.81 0.00 0.41 +barbouillages barbouillage nom m p 0.30 0.81 0.30 0.41 +barbouillai barbouiller ver 1.31 8.99 0.00 0.07 ind:pas:1s; +barbouillaient barbouiller ver 1.31 8.99 0.00 0.20 ind:imp:3p; +barbouillais barbouiller ver 1.31 8.99 0.00 0.14 ind:imp:1s; +barbouillait barbouiller ver 1.31 8.99 0.00 0.74 ind:imp:3s; +barbouillant barbouiller ver 1.31 8.99 0.01 0.41 par:pre; +barbouille barbouiller ver 1.31 8.99 0.29 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +barbouillent barbouiller ver 1.31 8.99 0.00 0.20 ind:pre:3p; +barbouiller barbouiller ver 1.31 8.99 0.67 1.15 inf; +barbouilles barbouiller ver 1.31 8.99 0.10 0.14 ind:pre:2s; +barbouilleur barbouilleur nom m s 0.00 1.22 0.00 0.81 +barbouilleurs barbouilleur nom m p 0.00 1.22 0.00 0.41 +barbouillis barbouillis nom m 0.00 0.07 0.00 0.07 +barbouillèrent barbouiller ver 1.31 8.99 0.00 0.14 ind:pas:3p; +barbouillé barbouillé adj m s 0.62 1.55 0.35 1.15 +barbouillée barbouillé adj f s 0.62 1.55 0.12 0.07 +barbouillées barbouillé adj f p 0.62 1.55 0.01 0.20 +barbouillés barbouillé adj m p 0.62 1.55 0.14 0.14 +barbouze barbouze nom s 0.33 0.68 0.16 0.34 +barbouzes barbouze nom p 0.33 0.68 0.17 0.34 +barbé barber ver m s 0.78 1.69 0.04 0.07 par:pas; +barbu barbu nom m s 1.70 3.65 1.37 2.77 +barbue barbu adj f s 1.46 8.31 0.08 0.74 +barbues barbu adj f p 1.46 8.31 0.00 0.14 +barbules barbule nom f p 0.01 0.00 0.01 0.00 +barbés barber ver m p 0.78 1.69 0.10 0.07 par:pas; +barbus barbu nom m p 1.70 3.65 0.34 0.88 +barca barca adv 0.16 0.20 0.16 0.20 +barcarolle barcarolle nom f s 0.03 0.14 0.03 0.14 +barcasse barcasse nom f s 0.00 0.68 0.00 0.41 +barcasses barcasse nom f p 0.00 0.68 0.00 0.27 +barda barda nom m s 1.62 2.16 1.46 1.55 +bardage bardage nom m s 0.01 0.00 0.01 0.00 +bardaient barder ver 2.58 6.55 0.00 0.14 ind:imp:3p; +bardait barder ver 2.58 6.55 0.05 0.41 ind:imp:3s; +bardane bardane nom f s 0.04 0.34 0.04 0.20 +bardanes bardane nom f p 0.04 0.34 0.00 0.14 +bardas barda nom m p 1.62 2.16 0.16 0.61 +barde barder ver 2.58 6.55 0.30 0.20 ind:pre:3s; +bardeau bardeau nom m s 0.08 0.41 0.00 0.14 +bardeaux bardeau nom m p 0.08 0.41 0.08 0.27 +barder barder ver 2.58 6.55 1.84 0.47 inf; +bardera barder ver 2.58 6.55 0.15 0.07 ind:fut:3s; +barderait barder ver 2.58 6.55 0.00 0.07 cnd:pre:3s; +bardes barde nom p 0.18 0.68 0.00 0.27 +bardeurs bardeur nom m p 0.00 0.07 0.00 0.07 +bardiques bardique adj f p 0.00 0.07 0.00 0.07 +bardo bardo nom m s 0.11 0.20 0.11 0.20 +bardolino bardolino nom m s 0.14 0.00 0.14 0.00 +bardot bardot nom m s 0.27 0.20 0.27 0.07 +bardots bardot nom m p 0.27 0.20 0.00 0.14 +bardé barder ver m s 2.58 6.55 0.07 2.30 par:pas; +bardée barder ver f s 2.58 6.55 0.01 1.22 par:pas; +bardées barder ver f p 2.58 6.55 0.01 0.54 par:pas; +bardés barder ver m p 2.58 6.55 0.14 1.15 par:pas; +baret baret nom m s 0.00 0.07 0.00 0.07 +barge barge adj s 1.70 0.14 1.60 0.07 +barges barge nom f p 1.00 0.74 0.28 0.34 +barguigna barguigner ver 0.14 0.34 0.00 0.07 ind:pas:3s; +barguigner barguigner ver 0.14 0.34 0.14 0.20 inf; +barguigné barguigner ver m s 0.14 0.34 0.00 0.07 par:pas; +baril baril nom m s 2.71 3.04 1.81 2.03 +barillet barillet nom m s 0.69 2.03 0.67 1.96 +barillets barillet nom m p 0.69 2.03 0.03 0.07 +barils baril nom m p 2.71 3.04 0.90 1.01 +barine barine nom m s 0.22 0.00 0.22 0.00 +bariolage bariolage nom m s 0.00 0.61 0.00 0.41 +bariolages bariolage nom m p 0.00 0.61 0.00 0.20 +bariolaient barioler ver 0.03 2.64 0.00 0.07 ind:imp:3p; +bariolant barioler ver 0.03 2.64 0.00 0.14 par:pre; +bariole barioler ver 0.03 2.64 0.00 0.07 ind:pre:3s; +bariolé bariolé adj m s 0.21 5.47 0.02 1.35 +bariolée bariolé adj f s 0.21 5.47 0.03 1.76 +bariolées bariolé adj f p 0.21 5.47 0.01 0.88 +bariolures bariolure nom f p 0.00 0.07 0.00 0.07 +bariolés bariolé adj m p 0.21 5.47 0.16 1.49 +barje barje adj m s 0.00 0.27 0.00 0.20 +barjes barje adj p 0.00 0.27 0.00 0.07 +barjo barjo adj m s 1.02 0.14 0.95 0.14 +barjos barjo nom m p 1.01 0.14 0.28 0.00 +barjot barjot adj m s 0.84 0.47 0.63 0.34 +barjots barjot adj m p 0.84 0.47 0.21 0.14 +barmaid barmaid nom f s 0.67 1.82 0.65 1.76 +barmaids barmaid nom f p 0.67 1.82 0.02 0.07 +barman barman nom m s 7.91 11.01 7.53 10.14 +barmans barman nom m p 7.91 11.01 0.14 0.00 +barmen barman nom m p 7.91 11.01 0.24 0.88 +barnum barnum nom m s 0.03 0.20 0.03 0.20 +barolo barolo nom m s 0.05 0.00 0.05 0.00 +baromètre baromètre nom m s 0.57 2.91 0.56 2.30 +baromètres baromètre nom m p 0.57 2.91 0.01 0.61 +barométrique barométrique adj s 0.04 0.14 0.04 0.14 +baron baron nom m s 20.80 28.24 16.07 17.64 +baronet baronet nom m s 0.07 0.07 0.07 0.07 +baronnait baronner ver 0.00 0.20 0.00 0.07 ind:imp:3s; +baronne baron nom f s 20.80 28.24 4.17 7.03 +baronner baronner ver 0.00 0.20 0.00 0.07 inf; +baronnes baronne nom f p 0.02 0.00 0.02 0.00 +baronnet baronnet nom m s 0.10 0.34 0.10 0.07 +baronnets baronnet nom m p 0.10 0.34 0.00 0.27 +baronnez baronner ver 0.00 0.20 0.00 0.07 ind:pre:2p; +baronnie baronnie nom f s 0.02 0.14 0.02 0.07 +baronnies baronnie nom f p 0.02 0.14 0.00 0.07 +barons baron nom m p 20.80 28.24 0.56 3.51 +baroque baroque adj s 1.24 4.86 0.91 2.91 +baroques baroque adj p 1.24 4.86 0.34 1.96 +barotraumatisme barotraumatisme nom m s 0.01 0.00 0.01 0.00 +baroud baroud nom m s 0.04 1.35 0.04 1.35 +baroudeur baroudeur nom m s 0.32 0.68 0.05 0.34 +baroudeurs baroudeur nom m p 0.32 0.68 0.13 0.14 +baroudeuse baroudeur nom f s 0.32 0.68 0.14 0.20 +baroudé barouder ver m s 0.28 0.00 0.28 0.00 par:pas; +barouf barouf nom m s 0.28 0.68 0.28 0.68 +barque barque nom f s 10.40 41.28 9.52 29.93 +barques barque nom f p 10.40 41.28 0.89 11.35 +barquette barquette nom f s 0.27 0.54 0.15 0.14 +barquettes barquette nom f p 0.27 0.54 0.12 0.41 +barra barrer ver 26.71 32.36 0.13 1.01 ind:pas:3s; +barracuda barracuda nom m s 2.26 0.34 2.19 0.34 +barracudas barracuda nom m p 2.26 0.34 0.08 0.00 +barrage barrage nom m s 13.40 19.66 9.60 10.68 +barrages barrage nom m p 13.40 19.66 3.80 8.99 +barrai barrer ver 26.71 32.36 0.00 0.14 ind:pas:1s; +barraient barrer ver 26.71 32.36 0.03 1.35 ind:imp:3p; +barrais barrer ver 26.71 32.36 0.04 0.27 ind:imp:1s;ind:imp:2s; +barrait barrer ver 26.71 32.36 0.34 4.39 ind:imp:3s; +barrant barrer ver 26.71 32.36 0.03 2.23 par:pre; +barre barre nom f s 18.78 29.39 15.59 23.18 +barreau barreau nom m s 7.61 19.53 2.15 3.99 +barreaudées barreaudé adj f p 0.00 0.07 0.00 0.07 +barreaux barreau nom m p 7.61 19.53 5.46 15.54 +barrent barrer ver 26.71 32.36 0.75 0.95 ind:pre:3p; +barrer barrer ver 26.71 32.36 4.58 4.80 inf; +barrera barrer ver 26.71 32.36 0.06 0.41 ind:fut:3s; +barrerai barrer ver 26.71 32.36 0.01 0.07 ind:fut:1s; +barrerais barrer ver 26.71 32.36 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +barreront barrer ver 26.71 32.36 0.03 0.14 ind:fut:3p; +barres barre nom f p 18.78 29.39 3.19 6.22 +barrette barrette nom f s 0.46 2.50 0.33 1.42 +barrettes barrette nom f p 0.46 2.50 0.13 1.08 +barreur barreur nom m s 0.07 0.00 0.05 0.00 +barreurs barreur nom m p 0.07 0.00 0.01 0.00 +barreuse barreur nom f s 0.07 0.00 0.01 0.00 +barrez barrer ver 26.71 32.36 4.38 0.68 imp:pre:2p;ind:pre:2p; +barri barrir ver m s 0.10 0.54 0.01 0.07 par:pas; +barricada barricader ver 2.46 5.41 0.00 0.07 ind:pas:3s; +barricadai barricader ver 2.46 5.41 0.00 0.14 ind:pas:1s; +barricadaient barricader ver 2.46 5.41 0.00 0.20 ind:imp:3p; +barricadait barricader ver 2.46 5.41 0.00 0.54 ind:imp:3s; +barricade barricade nom f s 2.68 7.57 0.94 3.11 +barricadent barricader ver 2.46 5.41 0.05 0.41 ind:pre:3p; +barricader barricader ver 2.46 5.41 0.51 0.95 inf; +barricaderait barricader ver 2.46 5.41 0.00 0.14 cnd:pre:3s; +barricades barricade nom f p 2.68 7.57 1.74 4.46 +barricadez barricader ver 2.46 5.41 0.56 0.07 imp:pre:2p;ind:pre:2p; +barricadier barricadier nom m s 0.00 0.14 0.00 0.07 +barricadières barricadier nom f p 0.00 0.14 0.00 0.07 +barricadons barricader ver 2.46 5.41 0.07 0.00 imp:pre:1p;ind:pre:1p; +barricadèrent barricader ver 2.46 5.41 0.01 0.07 ind:pas:3p; +barricadé barricader ver m s 2.46 5.41 0.52 1.08 par:pas; +barricadée barricader ver f s 2.46 5.41 0.07 0.34 par:pas; +barricadées barricader ver f p 2.46 5.41 0.06 0.47 par:pas; +barricadés barricader ver m p 2.46 5.41 0.14 0.61 par:pas; +barrique barrique nom f s 0.99 1.55 0.68 0.81 +barriques barrique nom f p 0.99 1.55 0.31 0.74 +barris barrir ver m p 0.10 0.54 0.07 0.00 imp:pre:2s;par:pas; +barrissait barrir ver 0.10 0.54 0.00 0.20 ind:imp:3s; +barrissant barrir ver 0.10 0.54 0.03 0.07 par:pre; +barrissement barrissement nom m s 0.01 0.88 0.00 0.54 +barrissements barrissement nom m p 0.01 0.88 0.01 0.34 +barrissent barrir ver 0.10 0.54 0.00 0.07 ind:pre:3p; +barriste barriste nom s 0.00 0.07 0.00 0.07 +barrit barrir ver 0.10 0.54 0.00 0.14 ind:pre:3s; +barrière barrière nom f s 9.13 22.91 7.33 17.36 +barrières barrière nom f p 9.13 22.91 1.80 5.54 +barrons barrer ver 26.71 32.36 0.85 0.20 imp:pre:1p;ind:pre:1p; +barrèrent barrer ver 26.71 32.36 0.01 0.14 ind:pas:3p; +barré barrer ver m s 26.71 32.36 4.04 4.80 par:pas; +barrée barrer ver f s 26.71 32.36 1.88 3.18 par:pas; +barrées barrer ver f p 26.71 32.36 0.25 0.61 par:pas; +barrés barré adj m p 3.36 2.64 0.69 0.81 +barrésien barrésien nom m s 0.00 0.07 0.00 0.07 +bars bar nom m p 67.57 61.35 7.39 8.78 +bartavelle bartavelle nom f s 1.61 1.08 0.67 0.00 +bartavelles bartavelle nom f p 1.61 1.08 0.94 1.08 +barème barème nom m s 0.31 0.54 0.17 0.34 +barèmes barème nom m p 0.31 0.54 0.14 0.20 +barye barye nom f s 0.01 0.00 0.01 0.00 +baryon baryon nom m s 0.01 0.00 0.01 0.00 +baryte baryte nom f s 0.00 0.07 0.00 0.07 +baryton baryton nom m s 0.83 2.70 0.78 2.50 +barytonnant barytonner ver 0.00 0.14 0.00 0.07 par:pre; +barytonner barytonner ver 0.00 0.14 0.00 0.07 inf; +barytons baryton nom m p 0.83 2.70 0.05 0.20 +baryté baryté adj m s 0.01 0.00 0.01 0.00 +baryum baryum nom m s 0.06 0.14 0.06 0.14 +barzoï barzoï nom m s 0.07 0.07 0.07 0.07 +bas_bleu bas_bleu nom m s 0.01 0.47 0.01 0.34 +bas_bleu bas_bleu nom m p 0.01 0.47 0.00 0.14 +bas_côté bas_côté nom m s 0.60 5.34 0.58 3.58 +bas_côté bas_côté nom m p 0.60 5.34 0.02 1.76 +bas_empire bas_empire nom m 0.00 0.07 0.00 0.07 +bas_flanc bas_flanc nom m 0.00 0.14 0.00 0.14 +bas_fond bas_fond nom m s 1.05 3.72 0.02 1.62 +bas_fond bas_fond nom m p 1.05 3.72 1.03 2.09 +bas_relief bas_relief nom m s 0.09 1.22 0.08 0.34 +bas_relief bas_relief nom m p 0.09 1.22 0.01 0.88 +bas_ventre bas_ventre nom m s 0.23 2.30 0.23 2.30 +bas bas adj m 85.56 187.09 73.86 99.80 +basa baser ver 15.61 2.70 0.02 0.00 ind:pas:3s; +basaient baser ver 15.61 2.70 0.10 0.07 ind:imp:3p; +basait baser ver 15.61 2.70 0.04 0.14 ind:imp:3s; +basal basal adj m s 0.15 0.00 0.15 0.00 +basalte basalte nom m s 0.03 1.01 0.03 0.95 +basaltes basalte nom m p 0.03 1.01 0.00 0.07 +basaltique basaltique adj s 0.00 0.34 0.00 0.34 +basane basane nom f s 0.01 0.95 0.00 0.88 +basanes basane nom f p 0.01 0.95 0.01 0.07 +basant baser ver 15.61 2.70 1.47 0.00 par:pre; +basané basané adj m s 0.44 2.50 0.32 1.69 +basanée basané adj f s 0.44 2.50 0.01 0.47 +basanées basané adj f p 0.44 2.50 0.01 0.14 +basanés basané adj m p 0.44 2.50 0.10 0.20 +bascula basculer ver 5.29 31.35 0.22 3.78 ind:pas:3s; +basculai basculer ver 5.29 31.35 0.00 0.27 ind:pas:1s; +basculaient basculer ver 5.29 31.35 0.10 0.74 ind:imp:3p; +basculais basculer ver 5.29 31.35 0.00 0.14 ind:imp:1s;ind:imp:2s; +basculait basculer ver 5.29 31.35 0.01 2.50 ind:imp:3s; +basculant basculant adj m s 0.06 0.95 0.04 0.54 +basculante basculant adj f s 0.06 0.95 0.00 0.27 +basculants basculant adj m p 0.06 0.95 0.03 0.14 +bascule basculer ver 5.29 31.35 1.12 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +basculement basculement nom m s 0.04 0.14 0.04 0.14 +basculent basculer ver 5.29 31.35 0.02 0.74 ind:pre:3p; +basculer basculer ver 5.29 31.35 2.33 10.95 inf; +basculera basculer ver 5.29 31.35 0.00 0.20 ind:fut:3s; +basculerai basculer ver 5.29 31.35 0.00 0.07 ind:fut:1s; +basculerais basculer ver 5.29 31.35 0.14 0.00 cnd:pre:2s; +basculerait basculer ver 5.29 31.35 0.01 0.14 cnd:pre:3s; +basculeront basculer ver 5.29 31.35 0.14 0.07 ind:fut:3p; +bascules basculer ver 5.29 31.35 0.03 0.07 ind:pre:2s; +basculez basculer ver 5.29 31.35 0.15 0.00 imp:pre:2p;ind:pre:2p; +basculions basculer ver 5.29 31.35 0.00 0.07 ind:imp:1p; +basculâmes basculer ver 5.29 31.35 0.00 0.07 ind:pas:1p; +basculât basculer ver 5.29 31.35 0.00 0.07 sub:imp:3s; +basculèrent basculer ver 5.29 31.35 0.00 0.34 ind:pas:3p; +basculé basculer ver m s 5.29 31.35 1.02 3.72 par:pas; +basculée basculer ver f s 5.29 31.35 0.00 0.54 par:pas; +basculées basculer ver f p 5.29 31.35 0.01 0.07 par:pas; +basculés basculer ver m p 5.29 31.35 0.01 0.20 par:pas; +base_ball base_ball nom m s 10.12 1.28 10.12 1.28 +base base nom f s 59.22 44.46 51.69 31.96 +baseball baseball nom m s 6.95 0.00 6.95 0.00 +basent baser ver 15.61 2.70 0.23 0.00 ind:pre:3p; +baser baser ver 15.61 2.70 0.44 0.07 inf; +basera baser ver 15.61 2.70 0.01 0.00 ind:fut:3s; +baseront baser ver 15.61 2.70 0.03 0.00 ind:fut:3p; +bases base nom f p 59.22 44.46 7.53 12.50 +basez baser ver 15.61 2.70 0.35 0.07 imp:pre:2p;ind:pre:2p; +basic basic nom m s 0.03 0.00 0.03 0.00 +basilaire basilaire adj s 0.04 0.00 0.04 0.00 +basileus basileus nom m 0.04 0.00 0.04 0.00 +basilic basilic nom m s 1.86 1.01 1.86 1.01 +basilicum basilicum nom m s 0.00 0.07 0.00 0.07 +basilique basilique nom f s 0.66 4.19 0.52 3.92 +basiliques basilique nom f p 0.66 4.19 0.14 0.27 +basin basin nom m s 0.00 0.07 0.00 0.07 +basique basique adj s 1.30 0.00 0.85 0.00 +basiques basique adj p 1.30 0.00 0.45 0.00 +basket_ball basket_ball nom m s 1.38 0.34 1.38 0.34 +basket basket nom s 16.48 3.45 10.91 0.88 +baskets basket nom p 16.48 3.45 5.56 2.57 +basketteur basketteur nom m s 0.43 0.20 0.31 0.07 +basketteurs basketteur nom m p 0.43 0.20 0.10 0.07 +basketteuse basketteur nom f s 0.43 0.20 0.01 0.00 +basketteuses basketteur nom f p 0.43 0.20 0.01 0.07 +basmati basmati nom m s 0.03 0.00 0.03 0.00 +basoche basoche nom f s 0.00 0.07 0.00 0.07 +basons baser ver 15.61 2.70 0.02 0.07 imp:pre:1p;ind:pre:1p; +basquaise basquais adj f s 0.13 0.14 0.13 0.14 +basque basque adj s 8.73 3.58 7.51 3.24 +basques basque nom p 4.12 2.64 3.52 2.16 +bassa bassa nom s 0.00 0.14 0.00 0.07 +bassas bassa nom p 0.00 0.14 0.00 0.07 +basse_cour basse_cour nom f s 0.81 3.85 0.57 3.65 +basse_fosse basse_fosse nom f s 0.01 0.20 0.01 0.14 +basse_taille basse_taille nom f s 0.00 0.14 0.00 0.14 +basse bas adj f s 85.56 187.09 9.54 71.28 +bassement bassement adv 0.35 0.54 0.35 0.54 +basse_cour basse_cour nom f p 0.81 3.85 0.23 0.20 +basse_fosse basse_fosse nom f p 0.01 0.20 0.00 0.07 +basses bas adj f p 85.56 187.09 2.15 16.01 +bassesse bassesse nom f s 1.72 3.65 1.15 2.50 +bassesses bassesse nom f p 1.72 3.65 0.57 1.15 +basset basset nom m s 0.70 1.49 0.53 1.28 +bassets basset nom m p 0.70 1.49 0.17 0.20 +bassette bassette nom f s 0.01 0.07 0.01 0.07 +bassin bassin nom m s 5.03 25.20 4.51 21.22 +bassinaient bassiner ver 0.46 1.42 0.00 0.07 ind:imp:3p; +bassinais bassiner ver 0.46 1.42 0.00 0.07 ind:imp:1s; +bassinait bassiner ver 0.46 1.42 0.02 0.07 ind:imp:3s; +bassinant bassiner ver 0.46 1.42 0.00 0.07 par:pre; +bassine bassine nom f s 1.59 8.99 1.55 6.55 +bassiner bassiner ver 0.46 1.42 0.23 0.54 inf; +bassines bassine nom f p 1.59 8.99 0.04 2.43 +bassinet bassinet nom m s 0.16 0.34 0.16 0.34 +bassinez bassiner ver 0.46 1.42 0.01 0.00 ind:pre:2p; +bassinoire bassinoire nom f s 0.01 0.47 0.00 0.41 +bassinoires bassinoire nom f p 0.01 0.47 0.01 0.07 +bassins bassin nom m p 5.03 25.20 0.52 3.99 +bassiné bassiner ver m s 0.46 1.42 0.07 0.14 par:pas; +bassiste bassiste nom s 0.94 0.81 0.93 0.74 +bassistes bassiste nom p 0.94 0.81 0.02 0.07 +basson basson nom m s 0.07 0.07 0.07 0.07 +basta basta ono 2.15 1.49 2.15 1.49 +baste baste ono 0.42 0.14 0.42 0.14 +baster baster ver 0.10 0.20 0.01 0.00 inf; +bastide bastide nom f s 1.14 0.41 0.73 0.27 +bastides bastide nom f p 1.14 0.41 0.40 0.14 +bastille bastille nom f s 1.81 4.32 1.81 4.12 +bastilles bastille nom f p 1.81 4.32 0.00 0.20 +bastingage bastingage nom m s 0.23 2.03 0.23 1.82 +bastingages bastingage nom m p 0.23 2.03 0.00 0.20 +bastion bastion nom m s 1.49 2.70 1.44 1.89 +bastionnée bastionner ver f s 0.00 0.07 0.00 0.07 par:pas; +bastions bastion nom m p 1.49 2.70 0.04 0.81 +baston baston nom m s 1.51 0.88 1.43 0.81 +bastonnade bastonnade nom f s 0.13 0.47 0.12 0.41 +bastonnades bastonnade nom f p 0.13 0.47 0.01 0.07 +bastonne bastonner ver 0.62 0.68 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bastonnent bastonner ver 0.62 0.68 0.01 0.00 ind:pre:3p; +bastonner bastonner ver 0.62 0.68 0.17 0.20 inf; +bastonneurs bastonneur nom m p 0.02 0.00 0.02 0.00 +bastonné bastonner ver m s 0.62 0.68 0.06 0.27 par:pas; +bastonnée bastonner ver f s 0.62 0.68 0.10 0.07 par:pas; +bastonnés bastonner ver m p 0.62 0.68 0.02 0.00 par:pas; +bastons baston nom m p 1.51 0.88 0.09 0.07 +bastos bastos nom f 0.42 1.62 0.42 1.62 +bastringue bastringue nom m s 0.50 1.08 0.42 1.01 +bastringues bastringue nom m p 0.50 1.08 0.08 0.07 +basé baser ver m s 15.61 2.70 4.86 0.41 par:pas; +basée baser ver f s 15.61 2.70 3.60 0.74 par:pas; +basées baser ver f p 15.61 2.70 1.14 0.27 par:pas; +basés baser ver m p 15.61 2.70 1.15 0.61 par:pas; +bat_flanc bat_flanc nom m 0.00 2.84 0.00 2.84 +bat_l_eau bat_l_eau nom m s 0.00 0.07 0.00 0.07 +bat battre ver 200.32 182.36 27.36 17.97 ind:pre:3s; +bataclan bataclan nom m s 0.25 1.08 0.25 1.08 +batailla batailler ver 0.34 1.76 0.00 0.07 ind:pas:3s; +bataillait batailler ver 0.34 1.76 0.00 0.27 ind:imp:3s; +bataillant batailler ver 0.34 1.76 0.01 0.27 par:pre; +bataille bataille nom f s 32.02 77.77 28.31 64.19 +bataillent batailler ver 0.34 1.76 0.00 0.14 ind:pre:3p; +batailler batailler ver 0.34 1.76 0.10 0.61 inf; +batailles bataille nom f p 32.02 77.77 3.71 13.58 +batailleur batailleur nom m s 0.01 0.00 0.01 0.00 +batailleurs batailleur adj m p 0.00 1.35 0.00 0.47 +batailleuse batailleur adj f s 0.00 1.35 0.00 0.20 +batailleuses batailleur adj f p 0.00 1.35 0.00 0.07 +bataillon bataillon nom m s 8.13 29.53 6.84 20.07 +bataillonnaire bataillonnaire nom m s 0.00 0.14 0.00 0.07 +bataillonnaires bataillonnaire nom m p 0.00 0.14 0.00 0.07 +bataillons bataillon nom m p 8.13 29.53 1.28 9.46 +bataillèrent batailler ver 0.34 1.76 0.00 0.07 ind:pas:3p; +bataillé batailler ver m s 0.34 1.76 0.06 0.07 par:pas; +bataillés batailler ver m p 0.34 1.76 0.00 0.07 par:pas; +batak batak nom m s 0.05 0.00 0.05 0.00 +batardeau batardeau nom m s 0.02 0.00 0.02 0.00 +batave batave adj s 0.01 0.27 0.01 0.14 +bataves batave adj p 0.01 0.27 0.00 0.14 +bateau_citerne bateau_citerne nom m s 0.03 0.00 0.03 0.00 +bateau_lavoir bateau_lavoir nom m s 0.00 0.20 0.00 0.14 +bateau_mouche bateau_mouche nom m s 0.01 0.74 0.01 0.34 +bateau_pilote bateau_pilote nom m s 0.01 0.00 0.01 0.00 +bateau_pompe bateau_pompe nom m s 0.00 0.07 0.00 0.07 +bateau bateau nom m s 124.82 82.36 106.55 61.22 +bateau_lavoir bateau_lavoir nom m p 0.00 0.20 0.00 0.07 +bateau_mouche bateau_mouche nom m p 0.01 0.74 0.00 0.41 +bateaux bateau nom m p 124.82 82.36 18.27 21.15 +batelets batelet nom m p 0.00 0.20 0.00 0.20 +bateleur bateleur nom m s 0.00 1.08 0.00 0.61 +bateleurs bateleur nom m p 0.00 1.08 0.00 0.47 +batelier batelier nom m s 0.36 1.89 0.25 0.61 +bateliers batelier nom m p 0.36 1.89 0.11 1.28 +batellerie batellerie nom f s 0.00 0.20 0.00 0.20 +bath bath adj 0.29 4.73 0.29 4.73 +bathyale bathyal adj f s 0.01 0.00 0.01 0.00 +bathymètre bathymètre nom m s 0.01 0.00 0.01 0.00 +bathymétrique bathymétrique adj m s 0.01 0.00 0.01 0.00 +bathyscaphe bathyscaphe nom m s 0.05 0.00 0.05 0.00 +bathysphère bathysphère nom f s 0.01 0.00 0.01 0.00 +batifola batifoler ver 1.21 0.88 0.00 0.07 ind:pas:3s; +batifolage batifolage nom m s 0.25 0.14 0.23 0.07 +batifolages batifolage nom m p 0.25 0.14 0.01 0.07 +batifolaient batifoler ver 1.21 0.88 0.01 0.14 ind:imp:3p; +batifolais batifoler ver 1.21 0.88 0.01 0.00 ind:imp:1s; +batifolait batifoler ver 1.21 0.88 0.01 0.14 ind:imp:3s; +batifolant batifoler ver 1.21 0.88 0.17 0.20 par:pre; +batifole batifoler ver 1.21 0.88 0.17 0.07 ind:pre:1s;ind:pre:3s; +batifolent batifoler ver 1.21 0.88 0.03 0.00 ind:pre:3p; +batifoler batifoler ver 1.21 0.88 0.72 0.20 inf; +batifoles batifoler ver 1.21 0.88 0.01 0.00 ind:pre:2s; +batifoleurs batifoleur nom m p 0.00 0.14 0.00 0.14 +batifolez batifoler ver 1.21 0.88 0.02 0.00 imp:pre:2p;ind:pre:2p; +batifolé batifoler ver m s 1.21 0.88 0.05 0.07 par:pas; +batik batik nom m s 0.00 0.14 0.00 0.14 +batiste batiste nom f s 0.00 0.88 0.00 0.88 +batracien batracien nom m s 0.03 0.54 0.03 0.27 +batracienne batracien adj f s 0.01 0.07 0.01 0.07 +batraciens batracien nom m p 0.03 0.54 0.00 0.27 +bats battre ver 200.32 182.36 13.72 2.77 imp:pre:2s;ind:pre:1s;ind:pre:2s; +battîmes battre ver 200.32 182.36 0.00 0.07 ind:pas:1p; +battît battre ver 200.32 182.36 0.00 0.14 sub:imp:3s; +battage battage nom m s 0.18 0.34 0.18 0.27 +battages battage nom m p 0.18 0.34 0.00 0.07 +battaient battre ver 200.32 182.36 2.14 11.15 ind:imp:3p; +battais battre ver 200.32 182.36 1.24 1.62 ind:imp:1s;ind:imp:2s; +battait battre ver 200.32 182.36 6.78 28.38 ind:imp:3s; +battant battre ver 200.32 182.36 2.00 8.31 par:pre; +battante battant nom f s 1.73 11.42 0.42 0.07 +battantes battant adj f p 1.07 12.84 0.01 1.28 +battants battant nom m p 1.73 11.42 0.39 3.99 +batte batte nom f s 6.87 0.41 6.39 0.27 +battement battement nom m s 5.28 19.26 2.59 10.81 +battements battement nom m p 5.28 19.26 2.69 8.45 +battent battre ver 200.32 182.36 8.87 7.91 ind:pre:3p; +batterie batterie nom f s 14.24 15.54 10.61 9.73 +batteries batterie nom f p 14.24 15.54 3.63 5.81 +battes battre ver 200.32 182.36 0.65 0.14 sub:pre:2s; +batteur batteur nom m s 4.50 3.99 3.34 1.82 +batteurs batteur nom m p 4.50 3.99 0.89 0.61 +batteuse batteur nom f s 4.50 3.99 0.27 1.42 +batteuses batteuse nom f p 0.11 0.00 0.11 0.00 +battez battre ver 200.32 182.36 7.69 0.68 imp:pre:2p;ind:pre:2p; +battiez battre ver 200.32 182.36 0.52 0.27 ind:imp:2p; +battions battre ver 200.32 182.36 0.22 0.54 ind:imp:1p; +battirent battre ver 200.32 182.36 0.27 1.22 ind:pas:3p; +battis battre ver 200.32 182.36 0.14 0.41 ind:pas:1s; +battit battre ver 200.32 182.36 0.36 6.42 ind:pas:3s; +battle_dress battle_dress nom m 0.00 0.14 0.00 0.14 +battoir battoir nom m s 0.06 2.43 0.02 1.35 +battoires battoire nom m p 0.00 0.07 0.00 0.07 +battoirs battoir nom m p 0.06 2.43 0.03 1.08 +battons battre ver 200.32 182.36 2.26 1.55 imp:pre:1p;ind:pre:1p; +battra battre ver 200.32 182.36 2.74 0.81 ind:fut:3s; +battrai battre ver 200.32 182.36 2.54 0.47 ind:fut:1s; +battraient battre ver 200.32 182.36 0.17 0.68 cnd:pre:3p; +battrais battre ver 200.32 182.36 1.15 0.07 cnd:pre:1s;cnd:pre:2s; +battrait battre ver 200.32 182.36 1.02 1.55 cnd:pre:3s; +battras battre ver 200.32 182.36 0.52 0.27 ind:fut:2s; +battre battre ver 200.32 182.36 75.89 57.36 inf;; +battrez battre ver 200.32 182.36 0.41 0.14 ind:fut:2p; +battriez battre ver 200.32 182.36 0.12 0.00 cnd:pre:2p; +battrions battre ver 200.32 182.36 0.01 0.00 cnd:pre:1p; +battrons battre ver 200.32 182.36 1.07 0.47 ind:fut:1p; +battront battre ver 200.32 182.36 0.84 0.00 ind:fut:3p; +battu battre ver m s 200.32 182.36 24.13 17.36 par:pas; +battue battre ver f s 200.32 182.36 5.87 4.93 par:pas; +battues battre ver f p 200.32 182.36 0.41 0.95 par:pas; +battus battre ver m p 200.32 182.36 6.89 6.49 par:pas; +batée batée nom f s 0.01 0.07 0.01 0.07 +bau bau nom m s 0.22 0.07 0.22 0.07 +baud baud nom m s 0.01 0.00 0.01 0.00 +baudelairien baudelairien adj m s 0.00 0.27 0.00 0.07 +baudelairiennes baudelairien adj f p 0.00 0.27 0.00 0.07 +baudelairiens baudelairien adj m p 0.00 0.27 0.00 0.14 +baudet baudet nom m s 0.13 0.54 0.11 0.41 +baudets baudet nom m p 0.13 0.54 0.03 0.14 +baudrier baudrier nom m s 0.18 3.45 0.17 2.50 +baudriers baudrier nom m p 0.18 3.45 0.01 0.95 +baudroie baudroie nom f s 0.01 0.07 0.01 0.00 +baudroies baudroie nom f p 0.01 0.07 0.00 0.07 +baudruche baudruche nom f s 0.32 0.88 0.28 0.81 +baudruches baudruche nom f p 0.32 0.88 0.04 0.07 +bauge bauge nom f s 0.14 1.35 0.14 1.22 +bauges bauge nom f p 0.14 1.35 0.00 0.14 +baugé bauger ver m s 0.00 0.07 0.00 0.07 par:pas; +baume baume nom s 1.94 3.65 1.79 2.91 +baumes baume nom p 1.94 3.65 0.16 0.74 +baumier baumier nom m s 0.01 0.07 0.01 0.00 +baumiers baumier nom m p 0.01 0.07 0.00 0.07 +baux bail,bau nom m p 0.19 0.34 0.19 0.34 +bauxite bauxite nom f s 0.18 0.41 0.18 0.41 +bava baver ver 9.79 12.36 0.02 0.20 ind:pas:3s; +bavaient baver ver 9.79 12.36 0.02 0.41 ind:imp:3p; +bavais baver ver 9.79 12.36 0.06 0.54 ind:imp:1s; +bavait baver ver 9.79 12.36 0.39 1.62 ind:imp:3s; +bavant baver ver 9.79 12.36 0.14 1.35 par:pre; +bavard bavard adj m s 4.85 12.30 2.39 4.86 +bavarda bavarder ver 16.43 24.19 0.00 0.47 ind:pas:3s; +bavardage bavardage nom m s 3.57 9.73 1.48 5.34 +bavardages bavardage nom m p 3.57 9.73 2.08 4.39 +bavardai bavarder ver 16.43 24.19 0.01 0.07 ind:pas:1s; +bavardaient bavarder ver 16.43 24.19 0.04 2.23 ind:imp:3p; +bavardais bavarder ver 16.43 24.19 0.07 0.20 ind:imp:1s; +bavardait bavarder ver 16.43 24.19 0.89 2.16 ind:imp:3s; +bavardant bavarder ver 16.43 24.19 0.18 2.64 par:pre; +bavarde bavarder ver 16.43 24.19 1.55 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bavardent bavarder ver 16.43 24.19 0.48 0.88 ind:pre:3p; +bavarder bavarder ver 16.43 24.19 8.66 8.99 inf; +bavardera bavarder ver 16.43 24.19 0.48 0.14 ind:fut:3s; +bavarderai bavarder ver 16.43 24.19 0.00 0.14 ind:fut:1s; +bavarderait bavarder ver 16.43 24.19 0.10 0.07 cnd:pre:3s; +bavarderas bavarder ver 16.43 24.19 0.01 0.00 ind:fut:2s; +bavarderons bavarder ver 16.43 24.19 0.32 0.07 ind:fut:1p; +bavardes bavard adj f p 4.85 12.30 0.61 0.61 +bavardez bavarder ver 16.43 24.19 0.63 0.07 imp:pre:2p;ind:pre:2p; +bavardiez bavarder ver 16.43 24.19 0.01 0.07 ind:imp:2p; +bavardions bavarder ver 16.43 24.19 0.06 0.74 ind:imp:1p; +bavardons bavarder ver 16.43 24.19 0.98 0.47 imp:pre:1p;ind:pre:1p; +bavards bavard adj m p 4.85 12.30 0.69 2.09 +bavardèrent bavarder ver 16.43 24.19 0.00 0.47 ind:pas:3p; +bavardé bavarder ver m s 16.43 24.19 1.90 2.16 par:pas; +bavarois bavarois adj m 0.52 1.82 0.29 0.95 +bavaroise bavarois adj f s 0.52 1.82 0.20 0.27 +bavaroises bavarois adj f p 0.52 1.82 0.02 0.61 +bavassaient bavasser ver 0.91 0.95 0.00 0.07 ind:imp:3p; +bavassait bavasser ver 0.91 0.95 0.16 0.14 ind:imp:3s; +bavassant bavasser ver 0.91 0.95 0.01 0.07 par:pre; +bavasse bavasser ver 0.91 0.95 0.18 0.07 ind:pre:1s;ind:pre:3s; +bavassent bavasser ver 0.91 0.95 0.01 0.14 ind:pre:3p; +bavasser bavasser ver 0.91 0.95 0.48 0.41 inf; +bavasses bavasser ver 0.91 0.95 0.03 0.07 ind:pre:2s; +bavasseur bavasseur adj m s 0.01 0.00 0.01 0.00 +bavassiez bavasser ver 0.91 0.95 0.01 0.00 ind:imp:2p; +bavassé bavasser ver m s 0.91 0.95 0.03 0.00 par:pas; +bave bave nom f s 2.10 3.99 2.08 3.78 +bavent baver ver 9.79 12.36 0.74 0.61 ind:pre:3p; +baver baver ver 9.79 12.36 3.04 4.12 inf; +baverais baver ver 9.79 12.36 0.00 0.07 cnd:pre:1s; +baveras baver ver 9.79 12.36 0.17 0.00 ind:fut:2s; +baverez baver ver 9.79 12.36 0.02 0.07 ind:fut:2p; +baveront baver ver 9.79 12.36 0.01 0.07 ind:fut:3p; +baves baver ver 9.79 12.36 0.97 0.00 ind:pre:2s; +bavette bavette nom f s 0.35 0.95 0.19 0.88 +bavettes bavette nom f p 0.35 0.95 0.16 0.07 +baveur baveur adj m s 0.05 0.20 0.05 0.14 +baveurs baveur adj m p 0.05 0.20 0.00 0.07 +baveuse baveux adj f s 1.31 4.05 0.17 0.95 +baveuses baveux adj f p 1.31 4.05 0.11 0.34 +baveux baveux adj m 1.31 4.05 1.02 2.77 +bavez baver ver 9.79 12.36 0.08 0.14 imp:pre:2p;ind:pre:2p; +bavocher bavocher ver 0.00 0.07 0.00 0.07 inf; +bavoir bavoir nom m s 0.26 0.61 0.22 0.41 +bavoirs bavoir nom m p 0.26 0.61 0.04 0.20 +bavons baver ver 9.79 12.36 0.16 0.00 imp:pre:1p;ind:pre:1p; +bavotait bavoter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +bavotant bavoter ver 0.00 0.14 0.00 0.07 par:pre; +bavé baver ver m s 9.79 12.36 2.52 1.42 par:pas; +bavure bavure nom f s 1.65 4.12 1.28 1.69 +bavures bavure nom f p 1.65 4.12 0.38 2.43 +bayadère bayadère nom f s 0.21 0.27 0.10 0.14 +bayadères bayadère nom f p 0.21 0.27 0.11 0.14 +bayaient bayer ver 0.05 0.54 0.00 0.07 ind:imp:3p; +bayant bayer ver 0.05 0.54 0.00 0.07 par:pre; +bayard bayard nom m s 0.00 0.07 0.00 0.07 +baye bayer ver 0.05 0.54 0.00 0.07 ind:pre:3s; +bayer bayer ver 0.05 0.54 0.01 0.20 inf; +bayons bayer ver 0.05 0.54 0.01 0.00 imp:pre:1p; +bayou bayou nom m s 0.81 0.14 0.76 0.00 +bayous bayou nom m p 0.81 0.14 0.05 0.14 +bayé bayer ver m s 0.05 0.54 0.00 0.14 par:pas; +bazar bazar nom m s 8.36 7.43 8.18 6.42 +bazard bazard nom m s 0.20 0.00 0.20 0.00 +bazardait bazarder ver 1.07 1.42 0.00 0.14 ind:imp:3s; +bazardant bazarder ver 1.07 1.42 0.00 0.07 par:pre; +bazarde bazarder ver 1.07 1.42 0.40 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bazarder bazarder ver 1.07 1.42 0.30 0.61 inf; +bazarderez bazarder ver 1.07 1.42 0.00 0.07 ind:fut:2p; +bazardes bazarder ver 1.07 1.42 0.17 0.00 ind:pre:2s; +bazardeur bazardeur nom m s 0.00 0.07 0.00 0.07 +bazardé bazarder ver m s 1.07 1.42 0.14 0.20 par:pas; +bazardée bazarder ver f s 1.07 1.42 0.05 0.00 par:pas; +bazardées bazarder ver f p 1.07 1.42 0.01 0.07 par:pas; +bazars bazar nom m p 8.36 7.43 0.17 1.01 +bazooka bazooka nom m s 1.57 0.88 1.21 0.81 +bazookas bazooka nom m p 1.57 0.88 0.36 0.07 +bcbg bcbg adj 0.14 0.14 0.14 0.14 +be_bop be_bop nom m 0.31 0.34 0.31 0.34 +beagle beagle nom m s 0.15 0.00 0.08 0.00 +beagles beagle nom m p 0.15 0.00 0.07 0.00 +beat_generation beat_generation nom f s 0.00 0.14 0.00 0.14 +beat beat adj s 1.34 0.20 1.34 0.20 +beatnik beatnik nom s 0.45 0.07 0.33 0.00 +beatniks beatnik nom p 0.45 0.07 0.12 0.07 +beau_fils beau_fils nom m 1.29 1.01 1.27 1.01 +beau_frère beau_frère nom m s 13.14 15.68 9.13 8.65 +beau_papa beau_papa nom m s 0.23 0.14 0.23 0.14 +beau_parent beau_parent nom m s 0.01 0.00 0.01 0.00 +beau_père beau_père nom m s 16.54 14.05 9.29 7.09 +beau beau adj m s 671.86 620.07 281.23 270.07 +beauceron beauceron adj m s 0.00 1.35 0.00 0.47 +beauceronne beauceron adj f s 0.00 1.35 0.00 0.47 +beauceronnes beauceron adj f p 0.00 1.35 0.00 0.07 +beaucerons beauceron adj m p 0.00 1.35 0.00 0.34 +beaucoup beaucoup adv_sup 626.00 461.42 626.00 461.42 +beauf beauf nom m s 1.07 0.41 0.96 0.34 +beaufs beauf nom m p 1.07 0.41 0.11 0.07 +beaujolais beaujolais nom m 0.04 1.49 0.04 1.49 +beaujolpif beaujolpif nom m s 0.00 0.41 0.00 0.41 +beaupré beaupré nom m s 0.01 0.07 0.01 0.07 +beauté beauté nom f s 72.56 92.64 68.57 87.64 +beautés beauté nom f p 72.56 92.64 3.99 5.00 +beauvais beauvais nom s 0.00 0.07 0.00 0.07 +beaux_arts beaux_arts nom m p 2.19 3.38 2.19 3.38 +beaux_enfants beaux_enfants nom m p 0.06 0.00 0.06 0.00 +beau_fils beau_fils nom m p 1.29 1.01 0.03 0.00 +beau_frère beau_frère nom m p 13.14 15.68 0.62 1.01 +beaux_parents beaux_parents nom m p 1.52 1.22 1.52 1.22 +beaux beau adj m p 671.86 620.07 57.20 63.78 +bec_de_cane bec_de_cane nom m s 0.01 1.42 0.01 1.42 +bec_de_lièvre bec_de_lièvre nom m s 0.10 0.61 0.10 0.61 +bec bec nom m s 7.39 26.96 6.74 23.31 +because because con 2.78 1.01 2.78 1.01 +becfigue becfigue nom m s 0.27 0.07 0.14 0.00 +becfigues becfigue nom m p 0.27 0.07 0.14 0.07 +becquant becquer ver 0.04 0.54 0.00 0.54 par:pre; +becquer becquer ver 0.04 0.54 0.01 0.00 inf; +becquet becquet nom m s 0.02 0.07 0.02 0.00 +becquetaient becqueter ver 0.10 1.89 0.00 0.20 ind:imp:3p; +becquetait becqueter ver 0.10 1.89 0.00 0.14 ind:imp:3s; +becquetance becquetance nom f s 0.00 0.07 0.00 0.07 +becquetant becqueter ver 0.10 1.89 0.00 0.07 par:pre; +becqueter becqueter ver 0.10 1.89 0.10 1.08 inf; +becquets becquet nom m p 0.02 0.07 0.00 0.07 +becquette becqueter ver 0.10 1.89 0.00 0.07 imp:pre:2s; +becqueté becqueter ver m s 0.10 1.89 0.00 0.20 par:pas; +becquetés becqueter ver m p 0.10 1.89 0.00 0.14 par:pas; +becqué becquer ver m s 0.04 0.54 0.03 0.00 par:pas; +becquée becquée nom f s 0.02 0.41 0.02 0.41 +becs bec nom m p 7.39 26.96 0.66 3.65 +becta becter ver 0.17 4.53 0.00 0.07 ind:pas:3s; +bectais becter ver 0.17 4.53 0.00 0.14 ind:imp:1s; +bectait becter ver 0.17 4.53 0.00 0.34 ind:imp:3s; +bectance bectance nom f s 0.10 0.95 0.10 0.95 +bectant becter ver 0.17 4.53 0.00 0.14 par:pre; +becte becter ver 0.17 4.53 0.14 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bectent becter ver 0.17 4.53 0.00 0.14 ind:pre:3p; +becter becter ver 0.17 4.53 0.02 2.09 inf; +becterais becter ver 0.17 4.53 0.00 0.07 cnd:pre:1s; +becteras becter ver 0.17 4.53 0.00 0.07 ind:fut:2s; +becté becter ver m s 0.17 4.53 0.00 1.01 par:pas; +bectées becter ver f p 0.17 4.53 0.01 0.07 par:pas; +bectés becter ver m p 0.17 4.53 0.00 0.07 par:pas; +bedaine bedaine nom f s 0.89 1.62 0.89 1.42 +bedaines bedaine nom f p 0.89 1.62 0.00 0.20 +bedeau bedeau nom m s 0.25 1.76 0.25 1.69 +bedeaux bedeau nom m p 0.25 1.76 0.00 0.07 +bedon bedon nom m s 0.04 0.27 0.04 0.20 +bedonnant bedonnant adj m s 0.33 1.49 0.14 1.01 +bedonnante bedonnant adj f s 0.33 1.49 0.01 0.07 +bedonnantes bedonnant adj f p 0.33 1.49 0.14 0.20 +bedonnants bedonnant adj m p 0.33 1.49 0.05 0.20 +bedonne bedonner ver 0.03 0.34 0.00 0.07 ind:pre:3s; +bedons bedon nom m p 0.04 0.27 0.00 0.07 +beefsteak beefsteak nom m s 0.21 0.34 0.20 0.20 +beefsteaks beefsteak nom m p 0.21 0.34 0.01 0.14 +beeper beeper nom m s 0.34 0.00 0.34 0.00 +beethovénien beethovénien adj m s 0.00 0.07 0.00 0.07 +beffroi beffroi nom m s 0.47 0.74 0.47 0.74 +behavioriste behavioriste adj s 0.01 0.00 0.01 0.00 +behavioriste behavioriste nom s 0.01 0.00 0.01 0.00 +beige beige adj m s 1.03 8.11 1.02 6.82 +beigeasses beigeasse adj p 0.00 0.07 0.00 0.07 +beiges beige nom p 0.27 1.49 0.03 0.34 +beigne beigne nom f s 0.58 2.16 0.48 1.42 +beignes beigne nom f p 0.58 2.16 0.10 0.74 +beignet beignet nom m s 8.69 2.77 2.52 0.61 +beignets beignet nom m p 8.69 2.77 6.17 2.16 +bel_canto bel_canto nom m 0.26 0.41 0.26 0.41 +bel bel adj m s 31.35 37.09 31.35 37.09 +belette belette nom f s 2.01 0.88 1.74 0.68 +belettes belette nom f p 2.01 0.88 0.27 0.20 +belge belge adj s 3.03 8.99 2.83 6.55 +belges belge nom p 2.00 5.07 0.68 2.70 +belgicains belgicain nom m p 0.00 0.07 0.00 0.07 +belgique belgique nom f s 0.02 0.27 0.02 0.27 +belladone belladone nom f s 0.15 0.47 0.15 0.41 +belladones belladone nom f p 0.15 0.47 0.00 0.07 +belle_doche belle_doche nom f s 0.05 0.07 0.05 0.07 +belle_famille belle_famille nom f s 0.71 1.22 0.71 1.15 +belle_fille belle_fille nom f s 3.32 2.57 3.29 2.50 +belle_maman belle_maman nom f s 0.85 0.34 0.85 0.34 +beau_père beau_père nom f s 16.54 14.05 7.17 6.82 +belle_à_voir belle_à_voir nom f s 0.00 0.27 0.00 0.27 +beau_frère beau_frère nom f s 13.14 15.68 3.36 5.47 +belle_lurette belle_lurette nom f s 0.75 2.64 0.75 2.64 +belle beau adj f s 671.86 620.07 284.08 223.65 +bellement bellement adv 0.14 0.54 0.14 0.54 +belle_de_jour belle_de_jour nom f p 0.00 0.07 0.00 0.07 +belle_de_nuit belle_de_nuit nom f p 0.00 0.34 0.00 0.34 +belle_famille belle_famille nom f p 0.71 1.22 0.00 0.07 +belle_fille belle_fille nom f p 3.32 2.57 0.04 0.07 +belle_lettre belle_lettre nom f p 0.00 0.41 0.00 0.41 +beau_père beau_père nom f p 16.54 14.05 0.08 0.14 +beau_frère beau_frère nom f p 13.14 15.68 0.04 0.54 +belles beau adj f p 671.86 620.07 49.35 62.57 +bellevillois bellevillois adj m 0.00 0.20 0.00 0.07 +bellevilloise bellevillois adj f s 0.00 0.20 0.00 0.14 +belliciste belliciste nom s 0.07 0.07 0.05 0.00 +bellicistes belliciste adj p 0.21 0.14 0.17 0.07 +belligérance belligérance nom f s 0.01 0.34 0.01 0.34 +belligérant belligérant adj m s 0.11 1.15 0.01 0.14 +belligérante belligérant adj f s 0.11 1.15 0.00 0.54 +belligérantes belligérant adj f p 0.11 1.15 0.10 0.14 +belligérants belligérant nom m p 0.07 0.88 0.05 0.81 +belliqueuse belliqueux adj f s 0.51 2.30 0.06 0.81 +belliqueusement belliqueusement adv 0.00 0.07 0.00 0.07 +belliqueuses belliqueux adj f p 0.51 2.30 0.04 0.20 +belliqueux belliqueux adj m 0.51 2.30 0.41 1.28 +bellissime bellissime adj f s 0.01 0.07 0.01 0.07 +bellot bellot adj m s 0.01 0.00 0.01 0.00 +bellâtre bellâtre nom m s 0.32 1.01 0.32 1.01 +belluaire belluaire nom m s 0.00 0.14 0.00 0.14 +belon belon nom f s 0.00 1.01 0.00 0.54 +belons belon nom f p 0.00 1.01 0.00 0.47 +belote belote nom f s 0.26 4.19 0.26 3.99 +beloter beloter ver 0.00 0.14 0.00 0.14 inf; +belotes belote nom f p 0.26 4.19 0.00 0.20 +beloteurs beloteur nom m p 0.00 0.20 0.00 0.20 +belotte belotter ver 0.00 0.07 0.00 0.07 ind:pre:1s; +beluga beluga nom m s 0.04 0.07 0.04 0.07 +belvédère belvédère nom m s 0.18 0.74 0.17 0.54 +belvédères belvédère nom m p 0.18 0.74 0.01 0.20 +ben ben nom_sup m 61.43 24.19 61.43 24.19 +benedictus benedictus nom m 0.11 0.07 0.11 0.07 +bengalais bengalais nom m 0.27 0.00 0.27 0.00 +bengali bengali nom m s 0.26 0.61 0.16 0.41 +bengalis bengali nom m p 0.26 0.61 0.10 0.20 +benjamin benjamin nom m s 0.81 0.81 0.33 0.47 +benjamine benjamin nom f s 0.81 0.81 0.44 0.27 +benjamins benjamin nom m p 0.81 0.81 0.04 0.07 +benjoin benjoin nom m s 0.00 0.88 0.00 0.88 +benne benne nom f s 2.38 3.11 2.12 1.76 +bennes benne nom f p 2.38 3.11 0.27 1.35 +benoît benoît adj m s 0.90 0.20 0.90 0.07 +benoîte benoît adj f s 0.90 0.20 0.00 0.14 +benoîtement benoîtement adv 0.00 0.81 0.00 0.81 +benthique benthique adj m s 0.01 0.00 0.01 0.00 +benêt benêt nom m s 1.30 1.49 1.20 1.08 +benêts benêt nom m p 1.30 1.49 0.10 0.41 +benzidine benzidine nom f s 0.01 0.00 0.01 0.00 +benzine benzine nom f s 0.01 0.41 0.01 0.41 +benzoate benzoate nom m s 0.04 0.00 0.04 0.00 +benzodiazépine benzodiazépine nom f s 0.02 0.00 0.02 0.00 +benzonaphtol benzonaphtol nom m s 0.10 0.00 0.10 0.00 +benzène benzène nom m s 0.12 0.00 0.12 0.00 +benzédrine benzédrine nom f s 0.07 0.27 0.07 0.27 +benzylique benzylique adj m s 0.01 0.00 0.01 0.00 +ber ber nom m s 0.16 0.07 0.16 0.07 +berbère berbère adj s 0.03 1.22 0.01 0.81 +berbères berbère adj p 0.03 1.22 0.02 0.41 +bercail bercail nom m s 2.33 1.96 2.33 1.96 +berce bercer ver 4.46 18.04 0.94 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +berceau berceau nom m s 7.05 13.31 6.72 12.43 +berceaux berceau nom m p 7.05 13.31 0.33 0.88 +bercelonnette bercelonnette nom f s 0.00 0.07 0.00 0.07 +bercement bercement nom m s 0.00 0.74 0.00 0.68 +bercements bercement nom m p 0.00 0.74 0.00 0.07 +bercent bercer ver 4.46 18.04 0.35 0.54 ind:pre:3p; +bercer bercer ver 4.46 18.04 1.17 3.92 inf; +bercera bercer ver 4.46 18.04 0.03 0.00 ind:fut:3s; +bercerai bercer ver 4.46 18.04 0.05 0.00 ind:fut:1s; +bercerait bercer ver 4.46 18.04 0.01 0.07 cnd:pre:3s; +bercerez bercer ver 4.46 18.04 0.10 0.07 ind:fut:2p; +berces bercer ver 4.46 18.04 0.16 0.00 ind:pre:2s; +berceur berceur adj m s 0.13 1.01 0.01 0.41 +berceurs berceur adj m p 0.13 1.01 0.00 0.07 +berceuse berceur nom f s 1.58 1.55 1.58 1.22 +berceuses berceuse nom f p 0.25 0.00 0.25 0.00 +bercez bercer ver 4.46 18.04 0.30 0.00 imp:pre:2p;ind:pre:2p; +bercèrent bercer ver 4.46 18.04 0.00 0.07 ind:pas:3p; +bercé bercer ver m s 4.46 18.04 0.85 3.78 par:pas; +bercée bercer ver f s 4.46 18.04 0.08 1.89 par:pas; +bercés bercer ver m p 4.46 18.04 0.19 0.88 par:pas; +berdouillette berdouillette nom f s 0.00 0.20 0.00 0.20 +berg berg nom m s 0.04 0.00 0.04 0.00 +bergamasques bergamasque nom f p 0.00 0.07 0.00 0.07 +bergamote bergamote nom f s 0.16 0.07 0.16 0.07 +berge berge nom f s 2.77 16.49 1.79 8.72 +berger berger nom m s 11.49 24.80 8.33 11.15 +bergerie bergerie nom f s 0.99 3.45 0.99 2.84 +bergeries bergerie nom f p 0.99 3.45 0.00 0.61 +bergeronnette bergeronnette nom f s 0.01 0.41 0.01 0.14 +bergeronnettes bergeronnette nom f p 0.01 0.41 0.00 0.27 +bergers berger nom m p 11.49 24.80 1.89 4.19 +berges berge nom f p 2.77 16.49 0.98 7.77 +bergère berger nom f s 11.49 24.80 1.27 6.76 +bergères bergère nom f p 0.34 0.00 0.34 0.00 +berk berk ono 1.35 0.95 1.35 0.95 +berle berle nom f s 0.13 0.00 0.13 0.00 +berlin berlin nom s 0.00 0.07 0.00 0.07 +berline berline nom f s 1.03 2.30 0.62 2.09 +berlines berline nom f p 1.03 2.30 0.42 0.20 +berlingot berlingot nom m s 0.15 1.76 0.06 0.41 +berlingots berlingot nom m p 0.15 1.76 0.09 1.35 +berlingue berlingue nom m 0.00 0.34 0.00 0.34 +berlinois berlinois adj m 0.82 1.69 0.32 1.08 +berlinoise berlinois adj f s 0.82 1.69 0.50 0.54 +berlinoises berlinois nom f p 0.18 0.47 0.00 0.14 +berloque berloque nom f s 0.00 0.14 0.00 0.14 +berlue berlue nom f s 0.30 1.35 0.30 1.08 +berlues berlue nom f p 0.30 1.35 0.00 0.27 +berlurais berlurer ver 0.00 1.01 0.00 0.20 ind:imp:1s; +berlurait berlurer ver 0.00 1.01 0.00 0.14 ind:imp:3s; +berlure berlure nom f s 0.00 1.08 0.00 0.68 +berlurent berlurer ver 0.00 1.01 0.00 0.14 ind:pre:3p; +berlurer berlurer ver 0.00 1.01 0.00 0.34 inf; +berlures berlure nom f p 0.00 1.08 0.00 0.41 +berluré berlurer ver m s 0.00 1.01 0.00 0.14 par:pas; +berlurée berlurer ver f s 0.00 1.01 0.00 0.07 par:pas; +berme berme nom f s 0.04 0.27 0.03 0.14 +bermes berme nom f p 0.04 0.27 0.01 0.14 +bermuda bermuda nom m s 0.12 0.61 0.08 0.41 +bermudas bermuda nom m p 0.12 0.61 0.04 0.20 +bernache bernache nom f s 0.08 0.41 0.03 0.14 +bernaches bernache nom f p 0.08 0.41 0.05 0.27 +bernait berner ver 3.56 2.64 0.01 0.14 ind:imp:3s; +bernant berner ver 3.56 2.64 0.01 0.00 par:pre; +bernard_l_ermite bernard_l_ermite nom m 0.00 0.34 0.00 0.34 +bernard_l_hermite bernard_l_hermite nom m 0.01 0.14 0.01 0.14 +bernardines bernardin nom f p 0.00 0.54 0.00 0.54 +berne berner ver 3.56 2.64 0.12 0.20 ind:pre:1s;ind:pre:3s; +berner berner ver 3.56 2.64 2.04 0.54 inf; +berneras berner ver 3.56 2.64 0.02 0.00 ind:fut:2s; +bernez berner ver 3.56 2.64 0.01 0.00 ind:pre:2p; +bernicle bernicle nom f s 0.07 0.34 0.07 0.00 +bernicles bernicle nom f p 0.07 0.34 0.01 0.34 +bernique bernique ono 0.00 0.47 0.00 0.47 +berniques bernique nom f p 0.01 0.61 0.00 0.20 +bernois bernois adj m p 0.00 0.41 0.00 0.07 +bernoise bernois nom f s 0.01 0.14 0.01 0.07 +bernoises bernois adj f p 0.00 0.41 0.00 0.34 +berné berner ver m s 3.56 2.64 0.53 1.15 par:pas; +bernée berner ver f s 3.56 2.64 0.28 0.27 par:pas; +bernées berner ver f p 3.56 2.64 0.00 0.07 par:pas; +bernés berner ver m p 3.56 2.64 0.53 0.27 par:pas; +berrichon berrichon adj m s 0.27 0.88 0.00 0.61 +berrichonne berrichon adj f s 0.27 0.88 0.27 0.27 +bersaglier bersaglier nom m s 0.23 0.07 0.10 0.00 +bersagliers bersaglier nom m p 0.23 0.07 0.14 0.07 +berça bercer ver 4.46 18.04 0.01 0.61 ind:pas:3s; +bertha bertha nom f s 0.00 0.20 0.00 0.14 +berçaient bercer ver 4.46 18.04 0.01 0.61 ind:imp:3p; +berçais bercer ver 4.46 18.04 0.01 0.47 ind:imp:1s;ind:imp:2s; +berçait bercer ver 4.46 18.04 0.06 2.16 ind:imp:3s; +berçant bercer ver 4.46 18.04 0.14 1.01 par:pre; +berthas bertha nom f p 0.00 0.20 0.00 0.07 +berthe berthe nom f s 0.00 0.61 0.00 0.61 +berzingue berzingue nom f s 0.28 1.49 0.28 1.49 +besace besace nom f s 0.13 2.70 0.13 2.43 +besaces besace nom f p 0.13 2.70 0.00 0.27 +besaiguë besaiguë nom f s 0.00 0.07 0.00 0.07 +besant besant nom m s 0.04 0.07 0.01 0.00 +besants besant nom m p 0.04 0.07 0.03 0.07 +besef besef adv 0.00 0.07 0.00 0.07 +besicles besicles nom f p 0.01 0.27 0.01 0.27 +besogna besogner ver 0.60 2.30 0.00 0.34 ind:pas:3s; +besognaient besogner ver 0.60 2.30 0.00 0.14 ind:imp:3p; +besognais besogner ver 0.60 2.30 0.11 0.00 ind:imp:1s;ind:imp:2s; +besognait besogner ver 0.60 2.30 0.14 0.68 ind:imp:3s; +besognant besogner ver 0.60 2.30 0.01 0.41 par:pre; +besogne besogne nom f s 2.71 15.61 2.54 10.74 +besognent besogner ver 0.60 2.30 0.01 0.07 ind:pre:3p; +besogner besogner ver 0.60 2.30 0.20 0.20 inf; +besogneras besogner ver 0.60 2.30 0.00 0.07 ind:fut:2s; +besognes besogne nom f p 2.71 15.61 0.17 4.86 +besogneuse besogneux adj f s 0.02 1.82 0.02 0.34 +besogneuses besogneux adj f p 0.02 1.82 0.00 0.20 +besogneux besogneux nom m 0.12 0.47 0.12 0.47 +besognèrent besogner ver 0.60 2.30 0.00 0.20 ind:pas:3p; +besogné besogner ver m s 0.60 2.30 0.01 0.00 par:pas; +besoin besoin nom m s 771.24 266.62 758.04 251.76 +besoins besoin nom m p 771.24 266.62 13.20 14.86 +besson besson nom m s 0.01 0.14 0.01 0.00 +bessons besson nom m p 0.01 0.14 0.00 0.14 +best_seller best_seller nom m s 1.09 0.81 0.82 0.54 +best_seller best_seller nom m p 1.09 0.81 0.27 0.27 +best_of best_of nom m s 0.17 0.00 0.17 0.00 +best best nom m s 0.52 0.34 0.52 0.34 +bestiaire bestiaire nom m s 0.00 1.28 0.00 1.22 +bestiaires bestiaire nom m p 0.00 1.28 0.00 0.07 +bestial bestial adj m s 1.54 3.04 0.69 1.42 +bestiale bestial adj f s 1.54 3.04 0.63 0.68 +bestialement bestialement adv 0.02 0.00 0.02 0.00 +bestiales bestial adj f p 1.54 3.04 0.06 0.47 +bestialité bestialité nom f s 0.42 1.49 0.42 1.42 +bestialités bestialité nom f p 0.42 1.49 0.00 0.07 +bestiasse bestiasse nom f s 0.00 0.14 0.00 0.14 +bestiau bestiau nom m s 2.54 6.35 1.26 0.81 +bestiaux bestiau nom m p 2.54 6.35 1.28 5.54 +bestiole bestiole nom f s 5.07 6.76 2.50 3.04 +bestioles bestiole nom f p 5.07 6.76 2.57 3.72 +bette bette nom f s 1.60 0.41 1.55 0.20 +betterave betterave nom f s 1.47 4.12 0.77 1.35 +betteraves betterave nom f p 1.47 4.12 0.69 2.77 +betteravier betteravier nom m s 0.00 0.07 0.00 0.07 +bettes bette nom f p 1.60 0.41 0.05 0.20 +betting betting nom m 0.03 0.00 0.03 0.00 +beu beu ono 0.73 0.95 0.73 0.95 +beuark beuark ono 0.01 0.07 0.01 0.07 +beugla beugler ver 0.75 5.74 0.00 1.08 ind:pas:3s; +beuglaient beugler ver 0.75 5.74 0.01 0.14 ind:imp:3p; +beuglais beugler ver 0.75 5.74 0.02 0.20 ind:imp:1s;ind:imp:2s; +beuglait beugler ver 0.75 5.74 0.11 0.95 ind:imp:3s; +beuglant beugler ver 0.75 5.74 0.04 0.88 par:pre; +beuglante beuglante nom f s 0.01 0.00 0.01 0.00 +beuglantes beuglant nom f p 0.03 0.88 0.00 0.14 +beuglants beuglant nom m p 0.03 0.88 0.00 0.34 +beugle beugler ver 0.75 5.74 0.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +beuglement beuglement nom m s 0.19 1.15 0.00 0.27 +beuglements beuglement nom m p 0.19 1.15 0.19 0.88 +beuglent beugler ver 0.75 5.74 0.02 0.27 ind:pre:3p; +beugler beugler ver 0.75 5.74 0.17 0.88 inf; +beuglions beugler ver 0.75 5.74 0.00 0.07 ind:imp:1p; +beuglé beugler ver m s 0.75 5.74 0.16 0.27 par:pas; +beuglée beugler ver f s 0.75 5.74 0.00 0.07 par:pas; +beuh beuh adv 1.06 0.88 1.06 0.88 +beur beur adj m s 0.14 0.14 0.14 0.14 +beurk beurk ono 4.01 0.54 4.01 0.54 +beurra beurrer ver 0.92 2.97 0.00 0.34 ind:pas:3s; +beurrage beurrage nom m s 0.00 0.07 0.00 0.07 +beurraient beurrer ver 0.92 2.97 0.00 0.07 ind:imp:3p; +beurrais beurrer ver 0.92 2.97 0.11 0.14 ind:imp:1s; +beurrait beurrer ver 0.92 2.97 0.01 0.54 ind:imp:3s; +beurrant beurrer ver 0.92 2.97 0.01 0.14 par:pre; +beurre beurre nom m s 15.14 27.97 15.12 27.50 +beurrer beurrer ver 0.92 2.97 0.32 0.61 inf; +beurres beurre nom m p 15.14 27.97 0.02 0.47 +beurrier beurrier nom m s 0.12 0.07 0.12 0.07 +beurré beurré adj m s 0.84 2.50 0.43 0.74 +beurrée beurré adj f s 0.84 2.50 0.07 0.47 +beurrées beurré adj f p 0.84 2.50 0.11 1.15 +beurrés beurré adj m p 0.84 2.50 0.23 0.14 +beuverie beuverie nom f s 0.79 1.55 0.54 0.47 +beuveries beuverie nom f p 0.79 1.55 0.26 1.08 +bey bey nom m s 2.06 2.91 2.06 2.91 +bezef bezef adv 0.00 0.14 0.00 0.14 +bi bi nom m s 1.27 0.34 1.27 0.34 +biafrais biafrais nom m 0.00 0.14 0.00 0.14 +biais biais nom m 1.60 16.69 1.60 16.69 +biaisai biaiser ver 0.05 0.68 0.00 0.07 ind:pas:1s; +biaise biaiser ver 0.05 0.68 0.00 0.27 ind:pre:1s;ind:pre:3s; +biaisements biaisement nom m p 0.00 0.07 0.00 0.07 +biaiser biaiser ver 0.05 0.68 0.03 0.27 inf; +biaises biais adj f p 0.04 0.61 0.00 0.07 +biaisé biaisé adj m s 0.03 0.00 0.02 0.00 +biaisée biaiser ver f s 0.05 0.68 0.01 0.00 par:pas; +biathlon biathlon nom m s 0.30 0.00 0.30 0.00 +bib bib nom m 0.01 0.00 0.01 0.00 +bibard bibard nom m s 0.00 0.20 0.00 0.20 +bibelot bibelot nom m s 1.52 7.43 0.63 0.81 +bibelots bibelot nom m p 1.52 7.43 0.90 6.62 +bibendum bibendum nom m s 0.09 0.20 0.09 0.20 +biberon biberon nom m s 6.65 5.68 5.25 3.85 +biberonnait biberonner ver 0.04 0.95 0.01 0.20 ind:imp:3s; +biberonne biberonner ver 0.04 0.95 0.01 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +biberonner biberonner ver 0.04 0.95 0.02 0.41 inf; +biberonneurs biberonneur nom m p 0.00 0.07 0.00 0.07 +biberonné biberonner ver m s 0.04 0.95 0.00 0.14 par:pas; +biberons biberon nom m p 6.65 5.68 1.40 1.82 +bibi bibi nom m s 0.56 1.15 0.54 0.54 +bibiche bibiche nom f s 0.05 3.04 0.05 3.04 +bibine bibine nom f s 0.73 3.99 0.71 3.85 +bibines bibine nom f p 0.73 3.99 0.02 0.14 +bibis bibi nom m p 0.56 1.15 0.02 0.61 +bibite bibite nom f s 0.00 0.27 0.00 0.27 +bible bible nom f s 17.79 17.84 17.03 17.16 +bibles bible nom f p 17.79 17.84 0.76 0.68 +bibliobus bibliobus nom m 0.05 0.07 0.05 0.07 +bibliographe bibliographe nom s 0.00 0.07 0.00 0.07 +bibliographie bibliographie nom f s 0.17 0.81 0.17 0.68 +bibliographies bibliographie nom f p 0.17 0.81 0.00 0.14 +bibliographique bibliographique adj s 0.01 0.14 0.01 0.00 +bibliographiques bibliographique adj f p 0.01 0.14 0.00 0.14 +bibliophile bibliophile nom s 0.03 0.68 0.02 0.27 +bibliophiles bibliophile nom p 0.03 0.68 0.01 0.41 +bibliophilie bibliophilie nom f s 0.00 0.14 0.00 0.14 +bibliophilique bibliophilique adj f s 0.00 0.07 0.00 0.07 +bibliothèque bibliothèque nom f s 19.86 40.74 18.22 36.82 +bibliothèques bibliothèque nom f p 19.86 40.74 1.63 3.92 +bibliothécaire bibliothécaire nom s 2.25 2.50 2.09 2.30 +bibliothécaires bibliothécaire nom p 2.25 2.50 0.16 0.20 +biblique biblique adj s 2.77 4.19 2.09 3.04 +bibliquement bibliquement adv 0.13 0.07 0.13 0.07 +bibliques biblique adj p 2.77 4.19 0.69 1.15 +bic bic nom m s 0.44 0.41 0.44 0.41 +bicamérale bicaméral adj f s 0.01 0.00 0.01 0.00 +bicarbonate bicarbonate nom m s 1.20 0.34 1.20 0.27 +bicarbonates bicarbonate nom m p 1.20 0.34 0.00 0.07 +bicause bicause pre 0.00 0.68 0.00 0.68 +bicentenaire bicentenaire nom m s 0.36 0.07 0.36 0.07 +biceps biceps nom m 1.62 3.72 1.62 3.72 +bichais bicher ver 0.27 1.89 0.00 0.20 ind:imp:1s; +bichait bicher ver 0.27 1.89 0.01 0.47 ind:imp:3s; +bichant bicher ver 0.27 1.89 0.00 0.07 par:pre; +biche biche nom f s 5.80 13.92 5.29 7.30 +bicher bicher ver 0.27 1.89 0.02 0.34 inf; +biches biche nom f p 5.80 13.92 0.51 6.62 +bichette bichette nom f s 0.09 0.07 0.09 0.07 +bichez bicher ver 0.27 1.89 0.01 0.00 ind:pre:2p; +bichon bichon nom m s 0.46 0.68 0.46 0.68 +bichonnait bichonner ver 1.40 1.42 0.02 0.20 ind:imp:3s; +bichonnant bichonner ver 1.40 1.42 0.00 0.07 par:pre; +bichonne bichonner ver 1.40 1.42 0.57 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bichonner bichonner ver 1.40 1.42 0.72 0.41 inf; +bichonnerai bichonner ver 1.40 1.42 0.02 0.00 ind:fut:1s; +bichonnez bichonner ver 1.40 1.42 0.03 0.00 imp:pre:2p;ind:pre:2p; +bichonné bichonner ver m s 1.40 1.42 0.03 0.34 par:pas; +bichonnée bichonner ver f s 1.40 1.42 0.02 0.14 par:pas; +biché bicher ver m s 0.27 1.89 0.00 0.07 par:pas; +biclou biclou nom m s 0.01 0.14 0.00 0.07 +biclous biclou nom m p 0.01 0.14 0.01 0.07 +bicolore bicolore adj s 0.30 0.68 0.15 0.47 +bicolores bicolore adj p 0.30 0.68 0.14 0.20 +biconvexes biconvexe adj p 0.02 0.00 0.02 0.00 +bicoque bicoque nom f s 0.94 3.85 0.89 3.11 +bicoques bicoque nom f p 0.94 3.85 0.05 0.74 +bicorne bicorne nom m s 0.16 2.64 0.16 2.16 +bicornes bicorne adj m p 0.01 0.14 0.01 0.00 +bicot bicot nom m s 0.11 4.46 0.11 3.72 +bicots bicot nom m p 0.11 4.46 0.00 0.74 +biculturelle biculturel adj f s 0.01 0.00 0.01 0.00 +bicéphale bicéphale adj s 0.04 0.54 0.04 0.47 +bicéphales bicéphale adj p 0.04 0.54 0.00 0.07 +bicéphalie bicéphalie nom f s 0.00 0.20 0.00 0.20 +bicuspide bicuspide adj s 0.01 0.00 0.01 0.00 +bicycle bicycle nom m s 0.29 0.00 0.28 0.00 +bicycles bicycle nom m p 0.29 0.00 0.01 0.00 +bicyclette bicyclette nom f s 8.06 28.51 7.34 23.51 +bicyclettes bicyclette nom f p 8.06 28.51 0.72 5.00 +bicycliste bicycliste adj s 0.00 0.07 0.00 0.07 +bidasse bidasse nom m s 0.37 0.81 0.21 0.34 +bidasses bidasse nom m p 0.37 0.81 0.16 0.47 +bide bide nom m s 3.73 8.58 3.66 8.38 +bides bide nom m p 3.73 8.58 0.07 0.20 +bidet bidet nom m s 0.69 3.45 0.69 2.97 +bidets bidet nom m p 0.69 3.45 0.00 0.47 +bidimensionnel bidimensionnel adj m s 0.00 0.07 0.00 0.07 +bidoche bidoche nom f s 0.33 3.78 0.33 3.31 +bidoches bidoche nom f p 0.33 3.78 0.00 0.47 +bidon bidon adj 7.78 3.72 7.78 3.72 +bidonnage bidonnage nom m s 0.00 0.14 0.00 0.14 +bidonnaient bidonner ver 1.00 1.89 0.00 0.07 ind:imp:3p; +bidonnais bidonner ver 1.00 1.89 0.03 0.00 ind:imp:1s;ind:imp:2s; +bidonnait bidonner ver 1.00 1.89 0.00 0.14 ind:imp:3s; +bidonnant bidonnant adj m s 0.14 0.14 0.12 0.14 +bidonnante bidonnant adj f s 0.14 0.14 0.03 0.00 +bidonne bidonner ver 1.00 1.89 0.00 0.61 ind:pre:3s; +bidonnent bidonner ver 1.00 1.89 0.01 0.27 ind:pre:3p; +bidonner bidonner ver 1.00 1.89 0.33 0.34 inf; +bidonnera bidonner ver 1.00 1.89 0.01 0.00 ind:fut:3s; +bidonnez bidonner ver 1.00 1.89 0.01 0.00 ind:pre:2p; +bidonné bidonner ver m s 1.00 1.89 0.30 0.00 par:pas; +bidonnée bidonner ver f s 1.00 1.89 0.01 0.00 par:pas; +bidonnées bidonner ver f p 1.00 1.89 0.29 0.00 par:pas; +bidonnés bidonner ver m p 1.00 1.89 0.00 0.07 par:pas; +bidons bidon nom m p 8.02 16.28 2.66 6.62 +bidonville bidonville nom m s 0.72 1.55 0.43 0.81 +bidonvilles bidonville nom m p 0.72 1.55 0.29 0.74 +bidouilla bidouiller ver 0.45 0.14 0.00 0.07 ind:pas:3s; +bidouillage bidouillage nom m s 0.05 0.00 0.05 0.00 +bidouille bidouille nom f s 0.19 0.00 0.19 0.00 +bidouiller bidouiller ver 0.45 0.14 0.12 0.00 inf; +bidouillerai bidouiller ver 0.45 0.14 0.03 0.00 ind:fut:1s; +bidouillé bidouiller ver m s 0.45 0.14 0.13 0.00 par:pas; +bidouillée bidouiller ver f s 0.45 0.14 0.15 0.07 par:pas; +bidouillés bidouiller ver m p 0.45 0.14 0.02 0.00 par:pas; +bidule bidule nom m s 1.10 2.03 0.94 1.22 +bidules bidule nom m p 1.10 2.03 0.17 0.81 +bief bief nom m s 0.10 0.61 0.10 0.54 +biefs bief nom m p 0.10 0.61 0.00 0.07 +bielle bielle nom f s 1.86 1.22 1.70 0.20 +bielles bielle nom f p 1.86 1.22 0.16 1.01 +bien_aimé bien_aimé nom m s 8.50 4.66 4.51 1.89 +bien_aimé bien_aimé nom f s 8.50 4.66 3.76 2.43 +bien_aimé bien_aimé adj f p 8.19 4.39 0.04 0.20 +bien_aimé bien_aimé adj m p 8.19 4.39 0.68 0.54 +bien_disant bien_disant adj m p 0.00 0.07 0.00 0.07 +bien_fonds bien_fonds nom m 0.00 0.07 0.00 0.07 +bien_fondé bien_fondé nom m s 0.31 0.81 0.31 0.81 +bien_manger bien_manger nom m 0.00 0.14 0.00 0.14 +bien_pensant bien_pensant adj m s 0.06 2.16 0.01 1.28 +bien_pensant bien_pensant adj f s 0.06 2.16 0.02 0.47 +bien_pensant bien_pensant adj m p 0.06 2.16 0.03 0.41 +bien_portant bien_portant adj m s 0.03 0.41 0.00 0.14 +bien_portant bien_portant adj m p 0.03 0.41 0.03 0.27 +bien_être bien_être nom m 4.28 8.78 4.28 8.78 +bien bien adv_sup 4213.78 2535.14 4213.78 2535.14 +bienfaisance bienfaisance nom f s 1.69 1.96 1.69 1.96 +bienfaisant bienfaisant adj m s 0.64 4.05 0.29 1.08 +bienfaisante bienfaisant adj f s 0.64 4.05 0.31 2.30 +bienfaisantes bienfaisant adj f p 0.64 4.05 0.00 0.54 +bienfaisants bienfaisant adj m p 0.64 4.05 0.04 0.14 +bienfait bienfait nom m s 2.51 4.26 0.98 1.01 +bienfaiteur bienfaiteur nom m s 3.38 3.45 2.46 1.62 +bienfaiteurs bienfaiteur nom m p 3.38 3.45 0.26 0.81 +bienfaitrice bienfaiteur nom f s 3.38 3.45 0.66 1.01 +bienfaitrices bienfaitrice nom f p 0.01 0.00 0.01 0.00 +bienfaits bienfait nom m p 2.51 4.26 1.53 3.24 +bienheureuse bienheureux nom f s 1.22 2.43 0.30 0.34 +bienheureusement bienheureusement adv 0.00 0.27 0.00 0.27 +bienheureuses bienheureux adj f p 2.25 5.20 0.00 0.14 +bienheureux bienheureux adj m 2.25 5.20 2.09 2.84 +biennale biennale nom f s 0.05 0.14 0.05 0.14 +biens bien nom_sup m p 106.60 70.20 16.99 13.31 +bienséance bienséance nom f s 0.64 2.23 0.57 2.09 +bienséances bienséance nom f p 0.64 2.23 0.06 0.14 +bienséant bienséant adj m s 0.06 1.08 0.04 0.47 +bienséante bienséant adj f s 0.06 1.08 0.03 0.41 +bienséantes bienséant adj f p 0.06 1.08 0.00 0.07 +bienséants bienséant adj m p 0.06 1.08 0.00 0.14 +bientôt bientôt adv 184.96 169.59 184.96 169.59 +bienveillamment bienveillamment adv 0.10 0.00 0.10 0.00 +bienveillance bienveillance nom f s 2.32 7.30 2.32 7.23 +bienveillances bienveillance nom f p 2.32 7.30 0.00 0.07 +bienveillant bienveillant adj m s 1.47 7.50 0.84 2.97 +bienveillante bienveillant adj f s 1.47 7.50 0.30 3.24 +bienveillantes bienveillant adj f p 1.47 7.50 0.06 0.41 +bienveillants bienveillant adj m p 1.47 7.50 0.27 0.88 +bienvenu bienvenu nom m s 14.30 1.82 9.82 1.22 +bienvenue bienvenue nom f s 22.63 5.27 21.81 5.14 +bienvenues bienvenue nom f p 22.63 5.27 0.82 0.14 +bienvenus bienvenu nom m p 14.30 1.82 4.48 0.61 +bif bif nom m s 0.02 0.14 0.02 0.14 +biface biface nom m s 0.00 0.07 0.00 0.07 +bifaces biface adj m p 0.00 0.07 0.00 0.07 +biffa biffer ver 0.11 1.62 0.00 0.41 ind:pas:3s; +biffaient biffer ver 0.11 1.62 0.00 0.07 ind:imp:3p; +biffais biffer ver 0.11 1.62 0.00 0.07 ind:imp:1s; +biffant biffer ver 0.11 1.62 0.01 0.07 par:pre; +biffe biffe nom f s 0.33 0.54 0.33 0.54 +biffer biffer ver 0.11 1.62 0.07 0.47 inf; +biffeton biffeton nom m s 0.29 2.64 0.01 0.88 +biffetons biffeton nom m p 0.29 2.64 0.28 1.76 +biffin biffin nom m s 0.05 1.62 0.03 0.88 +biffins biffin nom m p 0.05 1.62 0.02 0.74 +biffé biffer ver m s 0.11 1.62 0.02 0.07 par:pas; +bifide bifide adj s 0.01 0.61 0.01 0.47 +bifides bifide adj f p 0.01 0.61 0.00 0.14 +bifrons bifron adj p 0.00 0.20 0.00 0.20 +bifteck bifteck nom m s 1.45 5.14 1.30 3.58 +biftecks bifteck nom m p 1.45 5.14 0.14 1.55 +bifton bifton nom m s 0.64 2.84 0.16 1.08 +biftons bifton nom m p 0.64 2.84 0.49 1.76 +biftèque biftèque nom m s 0.00 0.47 0.00 0.14 +biftèques biftèque nom m p 0.00 0.47 0.00 0.34 +bifurcation bifurcation nom f s 0.33 0.54 0.29 0.41 +bifurcations bifurcation nom f p 0.33 0.54 0.04 0.14 +bifurqua bifurquer ver 0.68 2.03 0.00 0.14 ind:pas:3s; +bifurquait bifurquer ver 0.68 2.03 0.00 0.20 ind:imp:3s; +bifurquant bifurquer ver 0.68 2.03 0.00 0.20 par:pre; +bifurque bifurquer ver 0.68 2.03 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bifurquent bifurquer ver 0.68 2.03 0.00 0.07 ind:pre:3p; +bifurquer bifurquer ver 0.68 2.03 0.14 0.20 inf; +bifurqueront bifurquer ver 0.68 2.03 0.00 0.07 ind:fut:3p; +bifurqué bifurquer ver m s 0.68 2.03 0.36 0.61 par:pas; +bifurquée bifurquer ver f s 0.68 2.03 0.00 0.14 par:pas; +big_bang big_bang nom m 0.03 0.41 0.03 0.41 +big_band big_band nom m 0.05 0.00 0.05 0.00 +big_bang big_bang nom m 0.38 1.62 0.38 1.62 +bigaille bigaille nom f s 0.00 0.27 0.00 0.27 +bigame bigame adj m s 0.23 0.00 0.23 0.00 +bigamie bigamie nom f s 0.37 0.47 0.37 0.47 +bigarreau bigarreau nom m s 0.00 0.07 0.00 0.07 +bigarrer bigarrer ver 0.11 0.81 0.00 0.07 inf; +bigarré bigarrer ver m s 0.11 0.81 0.10 0.20 par:pas; +bigarrée bigarré adj f s 0.17 1.62 0.02 0.88 +bigarrées bigarré adj f p 0.17 1.62 0.00 0.07 +bigarrure bigarrure nom f s 0.00 0.74 0.00 0.61 +bigarrures bigarrure nom f p 0.00 0.74 0.00 0.14 +bigarrés bigarré adj m p 0.17 1.62 0.14 0.34 +bighorn bighorn nom m s 0.20 0.14 0.18 0.07 +bighorns bighorn nom m p 0.20 0.14 0.03 0.07 +biglaient bigler ver 0.00 2.16 0.00 0.07 ind:imp:3p; +biglais bigler ver 0.00 2.16 0.00 0.07 ind:imp:1s; +biglait bigler ver 0.00 2.16 0.00 0.20 ind:imp:3s; +biglant bigler ver 0.00 2.16 0.00 0.20 par:pre; +bigle bigler ver 0.00 2.16 0.00 0.34 ind:pre:1s;ind:pre:3s; +biglent bigler ver 0.00 2.16 0.00 0.14 ind:pre:3p; +bigler bigler ver 0.00 2.16 0.00 0.54 inf; +bigles bigle adj m p 0.00 0.34 0.00 0.07 +bigleuse bigleux nom f s 1.88 0.20 0.14 0.07 +bigleux bigleux nom m 1.88 0.20 1.75 0.14 +biglez bigler ver 0.00 2.16 0.00 0.07 imp:pre:2p; +biglé bigler ver m s 0.00 2.16 0.00 0.34 par:pas; +biglée bigler ver f s 0.00 2.16 0.00 0.14 par:pas; +biglés bigler ver m p 0.00 2.16 0.00 0.07 par:pas; +bigne bigne nom f s 0.00 0.20 0.00 0.20 +bignolait bignoler ver 0.00 0.07 0.00 0.07 ind:imp:3s; +bignole bignole nom f s 0.00 5.74 0.00 5.14 +bignoles bignole nom f p 0.00 5.74 0.00 0.61 +bignolle bignolle nom f s 0.00 0.07 0.00 0.07 +bignon bignon nom m s 0.00 0.07 0.00 0.07 +bignones bignone nom f p 0.00 0.07 0.00 0.07 +bignonias bignonia nom m p 0.00 0.07 0.00 0.07 +bigo bigo nom m s 0.05 0.54 0.05 0.54 +bigophone bigophone nom m s 0.17 0.68 0.17 0.68 +bigophoner bigophoner ver 0.03 0.81 0.00 0.41 inf; +bigophones bigophoner ver 0.03 0.81 0.01 0.00 ind:pre:2s; +bigophoné bigophoner ver m s 0.03 0.81 0.00 0.27 par:pas; +bigorne bigorne nom f s 0.00 0.20 0.00 0.14 +bigorneau bigorneau nom m s 1.01 1.55 0.19 0.74 +bigorneaux bigorneau nom m p 1.01 1.55 0.82 0.81 +bigorner bigorner ver 0.00 0.61 0.00 0.27 inf; +bigornes bigorne nom f p 0.00 0.20 0.00 0.07 +bigorné bigorner ver m s 0.00 0.61 0.00 0.20 par:pas; +bigornés bigorner ver m p 0.00 0.61 0.00 0.07 par:pas; +bigot bigot adj m s 0.20 0.27 0.17 0.20 +bigote bigot nom f s 0.50 1.01 0.34 0.41 +bigoterie bigoterie nom f s 0.14 0.20 0.14 0.20 +bigotes bigot nom f p 0.50 1.01 0.00 0.41 +bigots bigot nom m p 0.50 1.01 0.06 0.07 +bigouden bigouden adj f s 0.00 0.34 0.00 0.34 +bigoudens bigouden nom p 0.00 0.07 0.00 0.07 +bigoudi bigoudi nom m s 0.73 3.45 0.18 0.61 +bigoudis bigoudi nom m p 0.73 3.45 0.55 2.84 +bigre bigre ono 0.47 0.54 0.47 0.54 +bigrement bigrement adv 0.28 1.49 0.28 1.49 +bigue bigue nom f s 0.00 0.14 0.00 0.14 +biguine biguine nom f s 0.10 0.34 0.10 0.34 +bihebdomadaire bihebdomadaire adj s 0.01 0.14 0.00 0.07 +bihebdomadaires bihebdomadaire adj p 0.01 0.14 0.01 0.07 +bihoreau bihoreau nom m s 0.00 0.27 0.00 0.27 +bijou bijou nom m s 8.37 11.96 8.37 11.96 +bijouterie bijouterie nom f s 2.41 1.55 2.15 1.15 +bijouteries bijouterie nom f p 2.41 1.55 0.26 0.41 +bijoutier bijoutier nom m s 1.64 2.70 1.54 1.62 +bijoutiers bijoutier nom m p 1.64 2.70 0.10 0.68 +bijoutière bijoutier nom f s 1.64 2.70 0.00 0.41 +bijoux bijoux nom m p 20.64 21.01 20.64 21.01 +bikini bikini nom m s 2.98 2.09 2.34 1.49 +bikinis bikini nom m p 2.98 2.09 0.65 0.61 +bilais biler ver 2.95 2.84 0.01 0.07 ind:imp:1s; +bilait biler ver 2.95 2.84 0.00 0.07 ind:imp:3s; +bilan bilan nom m s 6.13 7.36 5.63 6.22 +bilans bilan nom m p 6.13 7.36 0.50 1.15 +bilatéral bilatéral adj m s 0.51 0.34 0.14 0.14 +bilatérale bilatéral adj f s 0.51 0.34 0.23 0.14 +bilatéralement bilatéralement adv 0.03 0.00 0.03 0.00 +bilatéraux bilatéral adj m p 0.51 0.34 0.14 0.07 +bilbergia bilbergia nom f s 0.00 0.07 0.00 0.07 +bilboquet bilboquet nom m s 0.04 1.15 0.04 1.01 +bilboquets bilboquet nom m p 0.04 1.15 0.00 0.14 +bile bile nom f s 2.78 4.66 2.59 4.66 +biler biler ver 2.95 2.84 0.10 1.15 inf; +biles biler ver 2.95 2.84 0.29 0.00 ind:pre:2s; +bileux bileux adj m 0.01 0.00 0.01 0.00 +bilez biler ver 2.95 2.84 0.22 0.47 imp:pre:2p;ind:pre:2p; +bilharziose bilharziose nom f s 0.01 0.20 0.01 0.20 +biliaire biliaire adj s 0.75 0.47 0.57 0.47 +biliaires biliaire adj p 0.75 0.47 0.18 0.00 +bilieuse bilieux adj f s 0.03 0.68 0.03 0.20 +bilieuses bilieux adj f p 0.03 0.68 0.00 0.07 +bilieux bilieux adj m s 0.03 0.68 0.00 0.41 +bilingue bilingue nom s 0.39 0.00 0.38 0.00 +bilingues bilingue adj p 0.34 0.88 0.04 0.34 +bilinguisme bilinguisme nom m s 0.00 0.07 0.00 0.07 +bilirubine bilirubine nom f s 0.07 0.00 0.07 0.00 +bill bill nom m s 0.56 0.07 0.47 0.07 +billard billard nom m s 7.84 12.23 7.56 11.35 +billards billard nom m p 7.84 12.23 0.28 0.88 +bille bille nom f s 5.21 19.53 2.50 8.58 +biller biller ver 0.07 0.00 0.04 0.00 inf; +billes bille nom f p 5.21 19.53 2.70 10.95 +billet billet nom m s 83.87 63.58 41.47 32.23 +billets billet nom m p 83.87 63.58 42.40 31.35 +billetterie billetterie nom f s 0.19 0.00 0.17 0.00 +billetteries billetterie nom f p 0.19 0.00 0.02 0.00 +billettes billette nom f p 0.00 0.07 0.00 0.07 +billevesée billevesée nom f s 0.27 0.54 0.00 0.07 +billevesées billevesée nom f p 0.27 0.54 0.27 0.47 +billion billion nom m s 0.42 0.07 0.19 0.00 +billions billion nom m p 0.42 0.07 0.23 0.07 +billon billon nom m s 0.00 0.14 0.00 0.14 +billot billot nom m s 0.69 2.50 0.68 2.03 +billots billot nom m p 0.69 2.50 0.01 0.47 +bills bill nom m p 0.56 0.07 0.09 0.00 +bilobée bilobé adj f s 0.01 0.00 0.01 0.00 +bim bim ono 0.52 0.20 0.52 0.20 +bimbeloterie bimbeloterie nom f s 0.03 0.61 0.02 0.47 +bimbeloteries bimbeloterie nom f p 0.03 0.61 0.01 0.14 +bimensuel bimensuel adj m s 0.04 0.14 0.01 0.07 +bimensuelle bimensuel adj f s 0.04 0.14 0.02 0.07 +bimensuelles bimensuel adj f p 0.04 0.14 0.01 0.00 +bimestre bimestre nom m s 0.01 0.00 0.01 0.00 +bimoteur bimoteur nom m s 0.08 0.34 0.08 0.27 +bimoteurs bimoteur nom m p 0.08 0.34 0.00 0.07 +bimétallisme bimétallisme nom m s 0.00 0.14 0.00 0.14 +bin_s bin_s nom m 0.03 0.00 0.03 0.00 +binôme binôme nom m s 0.27 0.14 0.20 0.07 +binômes binôme nom m p 0.27 0.14 0.06 0.07 +binaire binaire adj s 0.68 0.34 0.45 0.27 +binaires binaire adj p 0.68 0.34 0.23 0.07 +binait biner ver 0.33 0.68 0.00 0.14 ind:imp:3s; +binant biner ver 0.33 0.68 0.00 0.14 par:pre; +biner biner ver 0.33 0.68 0.33 0.34 inf; +binet_simon binet_simon nom m s 0.00 0.07 0.00 0.07 +binette binette nom f s 0.27 1.49 0.25 1.08 +binettes binette nom f p 0.27 1.49 0.03 0.41 +bing bing ono 1.81 1.76 1.81 1.76 +bingo bingo nom m s 9.08 0.14 9.08 0.14 +biniou biniou nom m s 0.29 0.81 0.29 0.74 +binious biniou nom m p 0.29 0.81 0.00 0.07 +binoclard binoclard adj m s 2.29 2.43 2.22 2.09 +binoclarde binoclard adj f s 2.29 2.43 0.02 0.14 +binoclards binoclard adj m p 2.29 2.43 0.04 0.20 +binocle binocle nom m s 0.18 1.01 0.01 0.47 +binocles binocle nom m p 0.18 1.01 0.17 0.54 +binoculaire binoculaire adj f s 0.03 0.07 0.03 0.07 +bintje bintje nom f s 0.00 0.07 0.00 0.07 +biné biner ver m s 0.33 0.68 0.00 0.07 par:pas; +binz binz nom s 0.27 0.14 0.27 0.14 +bio bio adj 3.30 0.41 3.30 0.41 +biochimie biochimie nom f s 0.63 0.00 0.63 0.00 +biochimique biochimique adj s 0.32 0.14 0.22 0.14 +biochimiquement biochimiquement adv 0.02 0.00 0.02 0.00 +biochimiques biochimique adj p 0.32 0.14 0.11 0.00 +biochimiste biochimiste nom s 0.35 0.00 0.30 0.00 +biochimistes biochimiste nom p 0.35 0.00 0.05 0.00 +biodiversité biodiversité nom f s 0.05 0.00 0.05 0.00 +biodégradable biodégradable adj m s 0.16 0.07 0.10 0.07 +biodégradables biodégradable adj f p 0.16 0.07 0.06 0.00 +biographe biographe nom s 0.75 0.88 0.75 0.61 +biographes biographe nom p 0.75 0.88 0.00 0.27 +biographie biographie nom f s 2.82 5.34 2.36 4.19 +biographies biographie nom f p 2.82 5.34 0.46 1.15 +biographique biographique adj s 0.18 0.88 0.14 0.34 +biographiques biographique adj p 0.18 0.88 0.03 0.54 +biogénique biogénique adj m s 0.01 0.00 0.01 0.00 +biogénétique biogénétique adj s 0.14 0.00 0.14 0.00 +biologie biologie nom f s 4.13 1.22 4.13 1.22 +biologique biologique adj s 7.34 2.36 5.35 1.69 +biologiquement biologiquement adv 0.46 0.34 0.46 0.34 +biologiques biologique adj p 7.34 2.36 2.00 0.68 +biologiste biologiste nom s 1.08 0.34 0.84 0.34 +biologistes biologiste nom p 1.08 0.34 0.24 0.00 +biologisé biologiser ver m s 0.01 0.00 0.01 0.00 par:pas; +bioluminescence bioluminescence nom f s 0.05 0.00 0.05 0.00 +bioluminescente bioluminescent adj f s 0.01 0.00 0.01 0.00 +biomasse biomasse nom f s 0.03 0.00 0.03 0.00 +biomécanique biomécanique nom f s 0.16 0.00 0.16 0.00 +biomécanisme biomécanisme nom m s 0.01 0.00 0.01 0.00 +biomédical biomédical adj m s 0.10 0.00 0.06 0.00 +biomédicale biomédical adj f s 0.10 0.00 0.03 0.00 +biomédicaux biomédical adj m p 0.10 0.00 0.01 0.00 +biométrie biométrie nom f s 0.03 0.00 0.03 0.00 +biométrique biométrique adj s 0.19 0.00 0.12 0.00 +biométriques biométrique adj p 0.19 0.00 0.07 0.00 +bionique bionique adj s 0.34 0.00 0.24 0.00 +bioniques bionique adj p 0.34 0.00 0.10 0.00 +biophysique biophysique nom f s 0.06 0.00 0.06 0.00 +biopsie biopsie nom f s 2.19 0.47 2.04 0.47 +biopsies biopsie nom f p 2.19 0.47 0.15 0.00 +biorythme biorythme nom m s 0.06 0.00 0.01 0.00 +biorythmes biorythme nom m p 0.06 0.00 0.04 0.00 +biosphère biosphère nom f s 0.08 0.00 0.08 0.00 +biosynthétiques biosynthétique adj p 0.01 0.00 0.01 0.00 +biotechnique biotechnique nom f s 0.15 0.00 0.15 0.00 +biotechnologie biotechnologie nom f s 0.22 0.00 0.22 0.00 +biotique biotique adj s 0.02 0.00 0.02 0.00 +biotite biotite nom f s 0.03 0.00 0.03 0.00 +biotope biotope nom m s 0.07 0.00 0.07 0.00 +bioélectrique bioélectrique adj s 0.01 0.00 0.01 0.00 +bioxyde bioxyde nom m s 0.02 0.07 0.02 0.07 +bip_bip bip_bip nom m s 0.47 0.00 0.47 0.00 +bip bip nom m s 7.68 1.28 6.94 1.28 +bipais biper ver 4.07 0.00 0.01 0.00 ind:imp:1s; +bipartisan bipartisan adj m s 0.01 0.00 0.01 0.00 +bipartisme bipartisme nom m s 0.07 0.00 0.07 0.00 +bipartite bipartite adj s 0.15 0.00 0.15 0.00 +bipe biper ver 4.07 0.00 0.77 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +biper biper ver 4.07 0.00 0.96 0.00 inf; +biperai biper ver 4.07 0.00 0.06 0.00 ind:fut:1s; +biperait biper ver 4.07 0.00 0.01 0.00 cnd:pre:3s; +bipes biper ver 4.07 0.00 0.09 0.00 ind:pre:2s; +bipez biper ver 4.07 0.00 0.43 0.00 imp:pre:2p;ind:pre:2p; +biphényle biphényle nom m s 0.01 0.00 0.01 0.00 +biplace biplace adj s 0.16 0.07 0.02 0.00 +biplaces biplace adj p 0.16 0.07 0.14 0.07 +biplan biplan nom m s 0.32 0.68 0.32 0.54 +biplans biplan nom m p 0.32 0.68 0.00 0.14 +bipolaire bipolaire adj f s 0.29 0.00 0.26 0.00 +bipolaires bipolaire adj m p 0.29 0.00 0.04 0.00 +bipolarité bipolarité nom f s 0.00 0.07 0.00 0.07 +bips bip nom m p 7.68 1.28 0.74 0.00 +bipède bipède nom m s 0.78 0.47 0.58 0.20 +bipèdes bipède nom m p 0.78 0.47 0.20 0.27 +bipé biper ver m s 4.07 0.00 1.27 0.00 par:pas; +bipée biper ver f s 4.07 0.00 0.40 0.00 par:pas; +bipés biper ver m p 4.07 0.00 0.05 0.00 par:pas; +bique bique nom f s 0.94 4.39 0.56 2.97 +biques bique nom f p 0.94 4.39 0.38 1.42 +biquet biquet nom m s 0.54 2.77 0.54 1.28 +biquets biquet nom m p 0.54 2.77 0.00 1.49 +biquette biquette nom f s 0.46 1.35 0.05 1.01 +biquettes biquette nom f p 0.46 1.35 0.40 0.34 +biquotidienne biquotidien adj f s 0.00 0.20 0.00 0.07 +biquotidiens biquotidien adj m p 0.00 0.20 0.00 0.14 +birbe birbe nom m s 0.02 0.47 0.00 0.34 +birbes birbe nom m p 0.02 0.47 0.02 0.14 +birchers bircher nom m p 0.05 0.00 0.05 0.00 +bire bire nom f s 0.00 0.07 0.00 0.07 +biribi biribi nom m s 0.00 0.74 0.00 0.74 +birman birman adj m s 0.36 0.00 0.16 0.00 +birmane birman adj f s 0.36 0.00 0.08 0.00 +birmanes birman adj f p 0.36 0.00 0.02 0.00 +birmans birman nom m p 0.29 0.00 0.25 0.00 +biroute biroute nom f s 0.18 0.95 0.18 0.81 +biroutes biroute nom f p 0.18 0.95 0.00 0.14 +birth_control birth_control nom m 0.01 0.14 0.01 0.14 +biréfringence biréfringence nom f s 0.01 0.00 0.01 0.00 +bis bis adj_sup m 3.48 4.32 0.86 1.82 +bisaïeul bisaïeul nom m s 0.05 0.20 0.05 0.07 +bisaïeule bisaïeul nom f s 0.05 0.20 0.00 0.14 +bisannuel bisannuel adj m s 0.01 0.07 0.01 0.00 +bisannuelles bisannuel adj f p 0.01 0.07 0.00 0.07 +bisbille bisbille nom f s 0.08 0.34 0.07 0.20 +bisbilles bisbille nom f p 0.08 0.34 0.01 0.14 +biscaïen biscaïen nom m s 0.00 0.20 0.00 0.20 +bischof bischof nom m s 0.14 0.00 0.14 0.00 +biscornu biscornu adj m s 0.06 3.04 0.01 0.88 +biscornue biscornu adj f s 0.06 3.04 0.03 0.74 +biscornues biscornu adj f p 0.06 3.04 0.01 0.61 +biscornus biscornu adj m p 0.06 3.04 0.01 0.81 +biscoteaux biscoteau nom m p 0.21 0.00 0.21 0.00 +biscotos biscoto nom m p 0.01 0.34 0.01 0.34 +biscotte biscotte nom f s 1.95 2.43 1.53 0.88 +biscottes biscotte nom f p 1.95 2.43 0.42 1.55 +biscuit biscuit nom m s 12.72 11.55 4.75 2.77 +biscuiterie biscuiterie nom f s 0.06 0.68 0.06 0.68 +biscuits biscuit nom m p 12.72 11.55 7.96 8.78 +bise bise nom f s 3.84 8.72 2.69 8.11 +biseau biseau nom m s 0.02 0.95 0.02 0.88 +biseauté biseauter ver m s 0.17 0.68 0.01 0.00 par:pas; +biseautée biseauter ver f s 0.17 0.68 0.00 0.07 par:pas; +biseautées biseauter ver f p 0.17 0.68 0.01 0.34 par:pas; +biseautés biseauter ver m p 0.17 0.68 0.14 0.27 par:pas; +biseaux biseau nom m p 0.02 0.95 0.00 0.07 +biseness biseness nom m 0.00 0.14 0.00 0.14 +biser biser ver 0.14 0.20 0.14 0.00 inf; +bises bise nom f p 3.84 8.72 1.14 0.61 +bisets biset nom m p 0.00 0.14 0.00 0.14 +bisette bisette nom f s 0.00 0.07 0.00 0.07 +bisexualité bisexualité nom f s 0.05 0.07 0.05 0.07 +bisexuel bisexuel adj m s 1.77 0.14 0.88 0.14 +bisexuelle bisexuel adj f s 1.77 0.14 0.21 0.00 +bisexuelles bisexuelle adj f p 0.03 0.00 0.03 0.00 +bisexuels bisexuel adj m p 1.77 0.14 0.69 0.00 +bisexué bisexué adj m s 0.01 0.07 0.00 0.07 +bisexués bisexué adj m p 0.01 0.07 0.01 0.00 +bishop bishop nom m s 0.02 0.00 0.02 0.00 +bismarckien bismarckien adj m s 0.00 0.07 0.00 0.07 +bismuth bismuth nom m s 0.02 0.14 0.02 0.14 +bisness bisness nom m 0.00 0.14 0.00 0.14 +bison bison nom m s 2.65 3.38 1.49 1.28 +bisons bison nom m p 2.65 3.38 1.16 2.09 +bisou_éclair bisou_éclair nom m s 0.01 0.00 0.01 0.00 +bisou bisou nom m s 18.40 1.08 13.99 0.54 +bisous bisou nom m p 18.40 1.08 4.40 0.54 +bisque bisque nom f s 0.41 0.61 0.41 0.54 +bisquent bisquer ver 0.17 0.27 0.00 0.07 ind:pre:3p; +bisquer bisquer ver 0.17 0.27 0.02 0.07 inf; +bisques bisque nom f p 0.41 0.61 0.00 0.07 +bissac bissac nom m s 0.01 0.34 0.01 0.27 +bissacs bissac nom m p 0.01 0.34 0.00 0.07 +bissant bisser ver 0.03 0.27 0.00 0.07 par:pre; +bisse bisser ver 0.03 0.27 0.01 0.07 imp:pre:2s;ind:pre:3s; +bissel bissel nom m s 0.02 0.00 0.02 0.00 +bisser bisser ver 0.03 0.27 0.01 0.00 inf; +bissextile bissextile adj f s 0.07 0.47 0.03 0.07 +bissextiles bissextile adj f p 0.07 0.47 0.03 0.41 +bissé bisser ver m s 0.03 0.27 0.01 0.14 par:pas; +bistorte bistorte nom f s 0.14 0.07 0.14 0.07 +bistouille bistouille nom f s 0.00 0.07 0.00 0.07 +bistouquette bistouquette nom f s 0.22 0.07 0.22 0.07 +bistouri bistouri nom m s 0.79 2.36 0.79 2.03 +bistouris bistouri nom m p 0.79 2.36 0.00 0.34 +bistouriser bistouriser ver 0.00 0.07 0.00 0.07 inf; +bistre bistre adj 0.00 2.16 0.00 2.16 +bistres bistre nom m p 0.00 1.69 0.00 0.41 +bistro bistro nom m s 0.63 3.04 0.60 2.43 +bistroquet bistroquet nom m s 0.00 0.47 0.00 0.47 +bistros bistro nom m p 0.63 3.04 0.02 0.61 +bistrot bistrot nom m s 3.30 27.50 2.80 21.69 +bistrote bistrot nom f s 3.30 27.50 0.00 0.07 +bistrotier bistrotier nom m s 0.00 0.41 0.00 0.20 +bistrotiers bistrotier nom m p 0.00 0.41 0.00 0.07 +bistrotière bistrotier nom f s 0.00 0.41 0.00 0.07 +bistrotières bistrotier nom f p 0.00 0.41 0.00 0.07 +bistrots bistrot nom m p 3.30 27.50 0.50 5.74 +bistrouille bistrouille nom f s 0.00 0.20 0.00 0.20 +bistré bistrer ver m s 0.00 0.41 0.00 0.07 par:pas; +bistrée bistré adj f s 0.00 0.34 0.00 0.20 +bistrées bistrer ver f p 0.00 0.41 0.00 0.14 par:pas; +bistrés bistré adj m p 0.00 0.34 0.00 0.14 +bisulfite bisulfite nom m s 0.00 0.07 0.00 0.07 +bit bit nom m s 1.24 0.14 1.04 0.14 +bite bite nom f s 26.41 6.08 22.93 4.93 +bitent biter ver 0.02 0.14 0.00 0.07 ind:pre:3p; +bites bite nom f p 26.41 6.08 3.49 1.15 +bière bière nom f s 81.67 38.11 68.55 35.34 +bières bière nom f p 81.67 38.11 13.12 2.77 +bithynien bithynien nom m s 0.00 0.41 0.00 0.27 +bithyniens bithynien nom m p 0.00 0.41 0.00 0.14 +bitoniau bitoniau nom m s 0.01 0.00 0.01 0.00 +bitos bitos nom m 0.00 0.74 0.00 0.74 +bits bit nom m p 1.24 0.14 0.20 0.00 +bitte bitte nom f s 0.72 1.01 0.69 0.74 +bitter bitter ver 0.23 0.00 0.23 0.00 inf; +bitters bitter nom m p 0.16 0.00 0.02 0.00 +bittes bitte nom f p 0.72 1.01 0.03 0.27 +bité biter ver m s 0.02 0.14 0.02 0.07 par:pas; +bitume bitume nom m s 1.12 6.01 0.99 5.88 +bitumes bitume nom m p 1.12 6.01 0.14 0.14 +bitumeuse bitumeux adj f s 0.00 0.34 0.00 0.14 +bitumeux bitumeux adj m p 0.00 0.34 0.00 0.20 +bitumineuse bitumineux adj f s 0.03 0.07 0.02 0.07 +bitumineux bitumineux adj m p 0.03 0.07 0.01 0.00 +bitumé bitumer ver m s 0.01 0.68 0.00 0.41 par:pas; +bitumée bitumer ver f s 0.01 0.68 0.00 0.20 par:pas; +bitumées bitumer ver f p 0.01 0.68 0.01 0.07 par:pas; +biture biture nom f s 0.12 1.22 0.09 1.01 +biturer biturer ver 0.19 0.20 0.02 0.00 inf; +bitures biture nom f p 0.12 1.22 0.03 0.20 +biturin biturin nom m s 0.00 0.27 0.00 0.20 +biturins biturin nom m p 0.00 0.27 0.00 0.07 +bituré biturer ver m s 0.19 0.20 0.16 0.07 par:pas; +biturés biturer ver m p 0.19 0.20 0.00 0.14 par:pas; +bivalente bivalent adj f s 0.00 0.07 0.00 0.07 +bivalve bivalve nom m s 0.01 0.00 0.01 0.00 +bivalves bivalve adj p 0.02 0.00 0.02 0.00 +bivouac bivouac nom m s 0.41 3.85 0.26 2.23 +bivouacs bivouac nom m p 0.41 3.85 0.14 1.62 +bivouaquaient bivouaquer ver 0.75 0.61 0.00 0.14 ind:imp:3p; +bivouaquait bivouaquer ver 0.75 0.61 0.00 0.14 ind:imp:3s; +bivouaque bivouaquer ver 0.75 0.61 0.25 0.00 ind:pre:3s; +bivouaquent bivouaquer ver 0.75 0.61 0.11 0.20 ind:pre:3p; +bivouaquer bivouaquer ver 0.75 0.61 0.09 0.00 inf; +bivouaquerons bivouaquer ver 0.75 0.61 0.16 0.00 ind:fut:1p; +bivouaquons bivouaquer ver 0.75 0.61 0.02 0.00 imp:pre:1p; +bivouaqué bivouaquer ver m s 0.75 0.61 0.13 0.07 par:pas; +bivouaquée bivouaquer ver f s 0.75 0.61 0.00 0.07 par:pas; +bizarde bizarde adj f s 0.00 0.27 0.00 0.27 +bizarre bizarre adj s 131.41 52.23 117.31 41.76 +bizarrement bizarrement adv 7.12 11.82 7.12 11.82 +bizarrerie bizarrerie nom f s 1.12 3.38 0.70 1.82 +bizarreries bizarrerie nom f p 1.12 3.38 0.42 1.55 +bizarres bizarre adj p 131.41 52.23 14.10 10.47 +bizarroïde bizarroïde adj s 0.16 0.27 0.14 0.14 +bizarroïdes bizarroïde adj p 0.16 0.27 0.03 0.14 +bizness bizness nom m 2.02 0.68 2.02 0.68 +bizou bizou nom m s 0.00 0.07 0.00 0.07 +bizut bizut nom m s 2.30 0.07 2.05 0.07 +bizutage bizutage nom m s 1.02 0.14 1.00 0.07 +bizutages bizutage nom m p 1.02 0.14 0.01 0.07 +bizuter bizuter ver 0.14 0.00 0.10 0.00 inf; +bizuteurs bizuteur nom m p 0.01 0.00 0.01 0.00 +bizuth bizuth nom m s 0.02 0.00 0.02 0.00 +bizuts bizut nom m p 2.30 0.07 0.25 0.00 +bizuté bizuter ver m s 0.14 0.00 0.04 0.00 par:pas; +bla_bla_bla bla_bla_bla nom m 0.41 0.34 0.41 0.34 +bla_bla bla_bla nom m 1.51 1.49 1.11 1.49 +bla_bla bla_bla nom m 1.51 1.49 0.40 0.00 +blabla blabla nom m 0.81 1.42 0.81 1.42 +blablabla blablabla nom m 0.88 0.34 0.88 0.34 +blablatait blablater ver 0.04 0.14 0.00 0.07 ind:imp:3s; +blablater blablater ver 0.04 0.14 0.03 0.00 inf; +blablateurs blablateur nom m p 0.00 0.07 0.00 0.07 +blablatez blablater ver 0.04 0.14 0.01 0.00 ind:pre:2p; +blablaté blablater ver m s 0.04 0.14 0.00 0.07 par:pas; +black_bass black_bass nom m 0.00 0.07 0.00 0.07 +black_jack black_jack nom m s 0.75 0.00 0.75 0.00 +black_out black_out nom m 1.00 0.88 1.00 0.88 +black black adj m s 2.67 0.47 2.45 0.47 +blackboule blackbouler ver 0.06 0.07 0.01 0.00 ind:pre:3s; +blackbouler blackbouler ver 0.06 0.07 0.04 0.07 inf; +blackboulé blackbouler ver m s 0.06 0.07 0.01 0.00 par:pas; +blacks black nom m p 4.07 1.42 2.13 1.01 +blafard blafard adj m s 0.64 10.27 0.37 4.80 +blafarde blafard adj f s 0.64 10.27 0.16 3.72 +blafardes blafard adj f p 0.64 10.27 0.00 0.74 +blafards blafard adj m p 0.64 10.27 0.11 1.01 +blagua blaguer ver 9.41 3.24 0.00 0.14 ind:pas:3s; +blaguaient blaguer ver 9.41 3.24 0.04 0.20 ind:imp:3p; +blaguais blaguer ver 9.41 3.24 2.23 0.27 ind:imp:1s;ind:imp:2s; +blaguait blaguer ver 9.41 3.24 0.69 0.14 ind:imp:3s; +blaguant blaguer ver 9.41 3.24 0.04 0.20 par:pre; +blague blague nom f s 72.63 22.70 60.33 16.82 +blaguent blaguer ver 9.41 3.24 0.06 0.20 ind:pre:3p; +blaguer blaguer ver 9.41 3.24 1.22 0.74 inf; +blaguerais blaguer ver 9.41 3.24 0.03 0.00 cnd:pre:1s; +blagues blague nom f p 72.63 22.70 12.30 5.88 +blagueur blagueur nom m s 0.35 0.00 0.29 0.00 +blagueurs blagueur nom m p 0.35 0.00 0.05 0.00 +blagueuse blagueur nom f s 0.35 0.00 0.01 0.00 +blagueuses blagueur adj f p 0.08 0.74 0.00 0.07 +blaguez blaguer ver 9.41 3.24 0.34 0.20 imp:pre:2p;ind:pre:2p; +blaguons blaguer ver 9.41 3.24 0.01 0.00 ind:pre:1p; +blagué blaguer ver m s 9.41 3.24 0.28 0.20 par:pas; +blair blair nom m s 0.06 1.35 0.05 1.28 +blairaient blairer ver 1.39 2.03 0.00 0.07 ind:imp:3p; +blairait blairer ver 1.39 2.03 0.00 0.20 ind:imp:3s; +blaire blairer ver 1.39 2.03 0.09 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +blaireau blaireau nom m s 3.75 3.78 2.64 2.70 +blaireaux blaireau nom m p 3.75 3.78 1.11 1.08 +blairer blairer ver 1.39 2.03 1.30 1.01 inf; +blairs blair nom m p 0.06 1.35 0.01 0.07 +blairé blairer ver m s 1.39 2.03 0.00 0.07 par:pas; +blaise blaiser ver 0.00 0.27 0.00 0.27 ind:pre:1s;ind:pre:3s; +blaisois blaisois nom m 0.00 0.07 0.00 0.07 +blanc_bec blanc_bec nom m s 1.50 0.61 1.39 0.47 +blanc_bleu blanc_bleu nom m s 0.16 0.41 0.16 0.41 +blanc_gris blanc_gris adj m s 0.00 0.07 0.00 0.07 +blanc_seing blanc_seing nom m s 0.01 0.27 0.01 0.27 +blanc blanc adj m s 118.74 430.54 53.93 152.03 +blanche blanc adj f s 118.74 430.54 35.92 145.07 +blanchecaille blanchecaille nom f s 0.00 0.54 0.00 0.41 +blanchecailles blanchecaille nom f p 0.00 0.54 0.00 0.14 +blanchement blanchement nom m s 0.00 0.07 0.00 0.07 +blanches blanc adj f p 118.74 430.54 11.43 60.68 +blanchet blanchet nom m s 0.00 1.15 0.00 1.15 +blancheur blancheur nom f s 1.23 15.27 1.23 14.73 +blancheurs blancheur nom f p 1.23 15.27 0.00 0.54 +blanchi blanchir ver m s 5.34 12.23 1.09 2.23 par:pas; +blanchie blanchir ver f s 5.34 12.23 0.06 0.68 par:pas; +blanchies blanchir ver f p 5.34 12.23 0.02 1.49 par:pas; +blanchiment blanchiment nom m s 0.75 0.07 0.74 0.00 +blanchiments blanchiment nom m p 0.75 0.07 0.01 0.07 +blanchir blanchir ver 5.34 12.23 1.86 2.64 inf; +blanchira blanchir ver 5.34 12.23 0.17 0.00 ind:fut:3s; +blanchiraient blanchir ver 5.34 12.23 0.00 0.14 cnd:pre:3p; +blanchirait blanchir ver 5.34 12.23 0.01 0.14 cnd:pre:3s; +blanchirent blanchir ver 5.34 12.23 0.00 0.14 ind:pas:3p; +blanchirez blanchir ver 5.34 12.23 0.02 0.00 ind:fut:2p; +blanchiront blanchir ver 5.34 12.23 0.01 0.07 ind:fut:3p; +blanchis blanchir ver m p 5.34 12.23 0.78 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +blanchissage blanchissage nom m s 0.31 0.27 0.31 0.27 +blanchissaient blanchir ver 5.34 12.23 0.02 0.81 ind:imp:3p; +blanchissait blanchir ver 5.34 12.23 0.07 1.28 ind:imp:3s; +blanchissant blanchissant adj m s 0.04 0.61 0.03 0.27 +blanchissante blanchissant adj f s 0.04 0.61 0.01 0.14 +blanchissantes blanchissant adj f p 0.04 0.61 0.00 0.07 +blanchissants blanchissant adj m p 0.04 0.61 0.00 0.14 +blanchisse blanchir ver 5.34 12.23 0.02 0.07 sub:pre:3s; +blanchissement blanchissement nom m s 0.09 0.14 0.09 0.14 +blanchissent blanchir ver 5.34 12.23 0.26 0.34 ind:pre:3p; +blanchisserie blanchisserie nom f s 1.23 3.45 1.23 3.45 +blanchisses blanchir ver 5.34 12.23 0.01 0.00 sub:pre:2s; +blanchisseur blanchisseur nom m s 0.95 3.65 0.44 0.27 +blanchisseurs blanchisseur nom m p 0.95 3.65 0.09 0.54 +blanchisseuse blanchisseur nom f s 0.95 3.65 0.42 1.55 +blanchisseuses blanchisseuse nom f p 0.16 0.00 0.16 0.00 +blanchissez blanchir ver 5.34 12.23 0.01 0.00 ind:pre:2p; +blanchit blanchir ver 5.34 12.23 0.91 0.95 ind:pre:3s;ind:pas:3s; +blanchoie blanchoyer ver 0.00 0.27 0.00 0.14 ind:pre:3s; +blanchoiement blanchoiement nom m 0.00 0.07 0.00 0.07 +blanchon blanchon nom m s 0.06 1.28 0.06 1.28 +blanchâtre blanchâtre adj s 0.05 7.23 0.05 4.66 +blanchâtres blanchâtre adj p 0.05 7.23 0.00 2.57 +blanchoyait blanchoyer ver 0.00 0.27 0.00 0.07 ind:imp:3s; +blanchoyant blanchoyer ver 0.00 0.27 0.00 0.07 par:pre; +blanc_bec blanc_bec nom m p 1.50 0.61 0.12 0.14 +blancs_manteaux blancs_manteaux adj m p 0.00 0.07 0.00 0.07 +blancs blanc nom m p 46.88 72.36 19.31 12.64 +blandices blandice nom f p 0.00 0.14 0.00 0.14 +blanque blanque nom f s 0.00 0.07 0.00 0.07 +blanquette blanquette nom f s 0.17 1.01 0.17 0.88 +blanquettes blanquette nom f p 0.17 1.01 0.00 0.14 +blasait blaser ver 0.31 1.89 0.00 0.14 ind:imp:3s; +blase blase nom m s 0.12 1.55 0.12 1.35 +blaser blaser ver 0.31 1.89 0.01 0.14 inf; +blases blase nom m p 0.12 1.55 0.00 0.20 +blason blason nom m s 0.33 3.45 0.29 3.04 +blasonnait blasonner ver 0.00 0.41 0.00 0.07 ind:imp:3s; +blasonné blasonner ver m s 0.00 0.41 0.00 0.14 par:pas; +blasonnée blasonner ver f s 0.00 0.41 0.00 0.07 par:pas; +blasonnées blasonner ver f p 0.00 0.41 0.00 0.07 par:pas; +blasonnés blasonner ver m p 0.00 0.41 0.00 0.07 par:pas; +blasons blason nom m p 0.33 3.45 0.04 0.41 +blasphème blasphème nom m s 5.51 2.97 4.46 1.69 +blasphèment blasphémer ver 4.11 1.96 0.10 0.07 ind:pre:3p; +blasphèmes blasphème nom m p 5.51 2.97 1.06 1.28 +blasphéma blasphémer ver 4.11 1.96 0.00 0.14 ind:pas:3s; +blasphémaient blasphémer ver 4.11 1.96 0.01 0.14 ind:imp:3p; +blasphémais blasphémer ver 4.11 1.96 0.00 0.07 ind:imp:1s; +blasphémait blasphémer ver 4.11 1.96 0.15 0.00 ind:imp:3s; +blasphémant blasphémer ver 4.11 1.96 0.01 0.07 par:pre; +blasphémateur blasphémateur nom m s 0.68 0.27 0.36 0.20 +blasphémateurs blasphémateur nom m p 0.68 0.27 0.29 0.07 +blasphématoire blasphématoire adj s 0.62 0.81 0.61 0.54 +blasphématoires blasphématoire adj f p 0.62 0.81 0.01 0.27 +blasphématrice blasphémateur nom f s 0.68 0.27 0.03 0.00 +blasphémer blasphémer ver 4.11 1.96 1.28 0.61 inf; +blasphémez blasphémer ver 4.11 1.96 0.44 0.00 imp:pre:2p;ind:pre:2p; +blasphémé blasphémer ver m s 4.11 1.96 0.90 0.41 par:pas; +blastula blastula nom f s 0.01 0.00 0.01 0.00 +blasé blasé adj m s 1.00 3.92 0.66 2.43 +blasée blasé adj f s 1.00 3.92 0.08 0.61 +blasées blasé adj f p 1.00 3.92 0.01 0.07 +blasés blasé adj m p 1.00 3.92 0.25 0.81 +blatte blatte nom f s 0.86 0.68 0.41 0.14 +blattes blatte nom f p 0.86 0.68 0.45 0.54 +blatérant blatérer ver 0.00 0.07 0.00 0.07 par:pre; +blaze blaze nom m s 0.53 3.18 0.48 2.77 +blazer blazer nom m s 0.36 3.24 0.32 2.70 +blazers blazer nom m p 0.36 3.24 0.04 0.54 +blazes blaze nom m p 0.53 3.18 0.05 0.41 +bled bled nom m s 5.67 8.04 5.55 7.23 +bleds bled nom m p 5.67 8.04 0.12 0.81 +blennies blennie nom f p 0.00 0.07 0.00 0.07 +blennorragie blennorragie nom f s 0.14 0.07 0.14 0.07 +blessa blesser ver 103.74 43.31 0.30 0.74 ind:pas:3s; +blessaient blesser ver 103.74 43.31 0.03 1.08 ind:imp:3p; +blessais blesser ver 103.74 43.31 0.05 0.14 ind:imp:1s;ind:imp:2s; +blessait blesser ver 103.74 43.31 0.19 3.65 ind:imp:3s; +blessant blessant adj m s 1.20 2.91 0.82 1.08 +blessante blessant adj f s 1.20 2.91 0.23 1.08 +blessantes blessant adj f p 1.20 2.91 0.09 0.34 +blessants blessant adj m p 1.20 2.91 0.06 0.41 +blesse blesser ver 103.74 43.31 9.22 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +blessent blesser ver 103.74 43.31 1.08 1.15 ind:pre:3p; +blesser blesser ver 103.74 43.31 19.93 8.31 ind:pre:2p;inf; +blessera blesser ver 103.74 43.31 0.49 0.07 ind:fut:3s; +blesserai blesser ver 103.74 43.31 0.31 0.14 ind:fut:1s; +blesseraient blesser ver 103.74 43.31 0.01 0.07 cnd:pre:3p; +blesserais blesser ver 103.74 43.31 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +blesserait blesser ver 103.74 43.31 0.55 0.14 cnd:pre:3s; +blesseras blesser ver 103.74 43.31 0.13 0.00 ind:fut:2s; +blesserez blesser ver 103.74 43.31 0.04 0.00 ind:fut:2p; +blesseriez blesser ver 103.74 43.31 0.12 0.00 cnd:pre:2p; +blesserons blesser ver 103.74 43.31 0.01 0.00 ind:fut:1p; +blesseront blesser ver 103.74 43.31 0.15 0.20 ind:fut:3p; +blesses blesser ver 103.74 43.31 2.67 0.07 ind:pre:2s; +blessez blesser ver 103.74 43.31 1.79 0.00 imp:pre:2p;ind:pre:2p; +blessiez blesser ver 103.74 43.31 0.07 0.00 ind:imp:2p; +blessing blessing nom m s 0.01 0.00 0.01 0.00 +blessât blesser ver 103.74 43.31 0.00 0.14 sub:imp:3s; +blessèrent blesser ver 103.74 43.31 0.01 0.14 ind:pas:3p; +blessé blesser ver m s 103.74 43.31 49.12 17.43 par:pas;par:pas;par:pas;par:pas; +blessée blesser ver f s 103.74 43.31 13.00 3.51 par:pas; +blessées blesser ver f p 103.74 43.31 0.64 0.54 par:pas; +blessure blessure nom f s 41.81 32.57 23.05 19.39 +blessures blessure nom f p 41.81 32.57 18.77 13.18 +blessés blessé nom m p 21.88 30.34 12.21 17.70 +blet blet adj m s 0.04 1.42 0.00 0.47 +blets blet adj m p 0.04 1.42 0.01 0.07 +blette blet adj f s 0.04 1.42 0.02 0.61 +blettes blette nom f p 0.16 0.20 0.16 0.20 +blettir blettir ver 0.00 0.14 0.00 0.07 inf; +blettissait blettir ver 0.00 0.14 0.00 0.07 ind:imp:3s; +blettissement blettissement nom m s 0.00 0.14 0.00 0.14 +bleu_ciel bleu_ciel adj m s 0.00 0.07 0.00 0.07 +bleu_noir bleu_noir adj 0.01 1.01 0.01 1.01 +bleu_roi bleu_roi nom m s 0.02 0.00 0.02 0.00 +bleu_vert bleu_vert adj 0.13 0.47 0.13 0.47 +bleu bleu adj 70.61 207.64 31.24 100.41 +bleuît bleuir ver 0.16 3.11 0.00 0.07 sub:imp:3s; +bleubite bleubite nom m s 0.00 0.27 0.00 0.20 +bleubites bleubite nom m p 0.00 0.27 0.00 0.07 +bleue bleu adj f s 70.61 207.64 21.63 53.11 +bleues bleu adj f p 70.61 207.64 4.77 21.28 +bleuet bleuet nom m s 1.98 1.22 1.02 0.14 +bleuets bleuet nom m p 1.98 1.22 0.95 1.08 +bleuette bleuette nom f s 0.03 0.00 0.03 0.00 +bleui bleuir ver m s 0.16 3.11 0.01 0.20 par:pas; +bleuie bleui adj f s 0.00 1.08 0.00 0.27 +bleuies bleuir ver f p 0.16 3.11 0.10 0.74 par:pas; +bleuir bleuir ver 0.16 3.11 0.00 0.20 inf; +bleuira bleuir ver 0.16 3.11 0.00 0.07 ind:fut:3s; +bleuis bleuir ver m p 0.16 3.11 0.00 0.14 par:pas; +bleuissaient bleuir ver 0.16 3.11 0.00 0.27 ind:imp:3p; +bleuissait bleuir ver 0.16 3.11 0.00 0.54 ind:imp:3s; +bleuissante bleuissant adj f s 0.00 0.27 0.00 0.14 +bleuissantes bleuissant adj f p 0.00 0.27 0.00 0.14 +bleuissent bleuir ver 0.16 3.11 0.03 0.20 ind:pre:3p; +bleuit bleuir ver 0.16 3.11 0.03 0.47 ind:pre:3s;ind:pas:3s; +bleuâtre bleuâtre adj s 0.09 7.23 0.04 4.66 +bleuâtres bleuâtre adj p 0.09 7.23 0.04 2.57 +bleus bleu adj m p 70.61 207.64 12.97 32.84 +bleusaille bleusaille nom f s 0.38 0.20 0.37 0.20 +bleusailles bleusaille nom f p 0.38 0.20 0.01 0.00 +bleuté bleuté adj m s 0.46 7.09 0.07 2.23 +bleutée bleuté adj f s 0.46 7.09 0.25 2.09 +bleutées bleuté adj f p 0.46 7.09 0.00 1.28 +bleutés bleuté adj m p 0.46 7.09 0.14 1.49 +bliaut bliaut nom m s 0.00 0.27 0.00 0.27 +blindage blindage nom m s 0.59 1.01 0.43 0.74 +blindages blindage nom m p 0.59 1.01 0.16 0.27 +blindant blinder ver 2.37 3.58 0.00 0.07 par:pre; +blinde blinde nom f s 0.12 0.47 0.10 0.41 +blindent blinder ver 2.37 3.58 0.00 0.07 ind:pre:3p; +blinder blinder ver 2.37 3.58 0.10 0.34 inf; +blindera blinder ver 2.37 3.58 0.00 0.07 ind:fut:3s; +blindes blinde nom f p 0.12 0.47 0.02 0.07 +blindez blinder ver 2.37 3.58 0.01 0.00 imp:pre:2p; +blindé blindé adj m s 3.95 9.05 1.44 1.35 +blindée blindé adj f s 3.95 9.05 1.17 4.46 +blindées blindé adj f p 3.95 9.05 0.97 1.96 +blindés blindé nom m p 1.37 3.31 1.11 2.91 +blini blini nom m s 0.93 0.14 0.02 0.00 +blinis blini nom m p 0.93 0.14 0.91 0.14 +blitzkrieg blitzkrieg nom m s 0.09 0.00 0.09 0.00 +blizzard blizzard nom m s 1.12 0.47 0.76 0.47 +blizzards blizzard nom m p 1.12 0.47 0.36 0.00 +blob blob nom m s 0.19 0.00 0.19 0.00 +bloc_cylindres bloc_cylindres nom m 0.01 0.00 0.01 0.00 +bloc_moteur bloc_moteur nom m s 0.01 0.00 0.01 0.00 +bloc_notes bloc_notes nom m 0.47 0.61 0.47 0.61 +bloc bloc nom m s 17.28 38.78 14.25 28.31 +blocage blocage nom m s 1.73 1.82 1.57 1.49 +blocages blocage nom m p 1.73 1.82 0.16 0.34 +blocaille blocaille nom f s 0.02 0.07 0.02 0.07 +block block nom m s 1.06 0.27 0.70 0.00 +blockhaus blockhaus nom m 1.77 6.15 1.77 6.15 +blocks block nom m p 1.06 0.27 0.36 0.27 +blocs_notes blocs_notes nom m p 0.07 0.07 0.07 0.07 +blocs bloc nom m p 17.28 38.78 3.03 10.47 +blocus blocus nom m 1.43 2.36 1.43 2.36 +blâma blâmer ver 9.38 6.42 0.01 0.14 ind:pas:3s; +blâmable blâmable adj f s 0.04 0.41 0.04 0.41 +blâmaient blâmer ver 9.38 6.42 0.00 0.41 ind:imp:3p; +blâmais blâmer ver 9.38 6.42 0.02 0.20 ind:imp:1s; +blâmait blâmer ver 9.38 6.42 0.03 0.74 ind:imp:3s; +blâmant blâmer ver 9.38 6.42 0.02 0.14 par:pre; +blâme blâmer ver 9.38 6.42 2.91 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +blâment blâmer ver 9.38 6.42 0.20 0.07 ind:pre:3p; +blâmer blâmer ver 9.38 6.42 4.37 2.03 inf;;inf;;inf;; +blâmera blâmer ver 9.38 6.42 0.27 0.00 ind:fut:3s; +blâmerais blâmer ver 9.38 6.42 0.07 0.00 cnd:pre:1s; +blâmerait blâmer ver 9.38 6.42 0.09 0.07 cnd:pre:3s; +blâmeras blâmer ver 9.38 6.42 0.02 0.00 ind:fut:2s; +blâmerions blâmer ver 9.38 6.42 0.01 0.00 cnd:pre:1p; +blâmeront blâmer ver 9.38 6.42 0.03 0.07 ind:fut:3p; +blâmes blâme nom m p 2.04 4.73 0.19 0.68 +blâmez blâmer ver 9.38 6.42 0.42 0.07 imp:pre:2p;ind:pre:2p; +blâmons blâmer ver 9.38 6.42 0.41 0.00 imp:pre:1p;ind:pre:1p; +blâmé blâmer ver m s 9.38 6.42 0.21 0.54 par:pas; +blâmée blâmer ver f s 9.38 6.42 0.05 0.20 par:pas; +blâmées blâmer ver f p 9.38 6.42 0.03 0.07 par:pas; +blâmés blâmer ver m p 9.38 6.42 0.03 0.07 par:pas; +blond blond adj m s 21.45 76.76 8.73 21.28 +blondasse blondasse adj s 0.82 0.88 0.77 0.74 +blondasses blondasse adj m p 0.82 0.88 0.05 0.14 +blonde blond nom f s 22.65 33.45 14.06 21.28 +blondes blond nom f p 22.65 33.45 4.54 2.77 +blondeur blondeur nom f s 0.20 2.64 0.20 2.57 +blondeurs blondeur nom f p 0.20 2.64 0.01 0.07 +blondi blondir ver m s 0.82 1.15 0.36 0.14 par:pas; +blondie blondir ver f s 0.82 1.15 0.46 0.47 par:pas; +blondin blondin adj m s 0.03 0.14 0.02 0.07 +blondine blondin adj f s 0.03 0.14 0.00 0.07 +blondines blondin adj f p 0.03 0.14 0.01 0.00 +blondinet blondinet nom m s 0.45 0.95 0.44 0.95 +blondinets blondinet nom m p 0.45 0.95 0.01 0.00 +blondinette blondinet adj f s 0.63 0.68 0.40 0.20 +blondir blondir ver 0.82 1.15 0.00 0.14 inf; +blondis blondir ver m p 0.82 1.15 0.00 0.07 par:pas; +blondissait blondir ver 0.82 1.15 0.00 0.20 ind:imp:3s; +blondit blondir ver 0.82 1.15 0.00 0.14 ind:pre:3s; +blonds blond adj m p 21.45 76.76 3.45 18.38 +bloody_mary bloody_mary nom m s 1.32 0.20 1.32 0.20 +bloom bloom nom m s 0.01 0.00 0.01 0.00 +bloomer bloomer nom m s 0.01 0.00 0.01 0.00 +bloqua bloquer ver 38.62 23.11 0.02 1.28 ind:pas:3s; +bloquai bloquer ver 38.62 23.11 0.00 0.07 ind:pas:1s; +bloquaient bloquer ver 38.62 23.11 0.43 0.54 ind:imp:3p; +bloquais bloquer ver 38.62 23.11 0.17 0.20 ind:imp:1s;ind:imp:2s; +bloquait bloquer ver 38.62 23.11 0.43 2.03 ind:imp:3s; +bloquant bloquer ver 38.62 23.11 0.39 1.28 par:pre; +bloque bloquer ver 38.62 23.11 5.92 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +bloquent bloquer ver 38.62 23.11 1.10 0.54 ind:pre:3p; +bloquer bloquer ver 38.62 23.11 4.38 3.18 inf; +bloquera bloquer ver 38.62 23.11 0.33 0.07 ind:fut:3s; +bloquerai bloquer ver 38.62 23.11 0.08 0.00 ind:fut:1s; +bloquerais bloquer ver 38.62 23.11 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +bloquerait bloquer ver 38.62 23.11 0.07 0.07 cnd:pre:3s; +bloqueront bloquer ver 38.62 23.11 0.23 0.00 ind:fut:3p; +bloques bloquer ver 38.62 23.11 0.73 0.14 ind:pre:2s;sub:pre:2s; +bloqueur bloqueur nom m s 0.24 0.00 0.19 0.00 +bloqueurs bloqueur nom m p 0.24 0.00 0.05 0.00 +bloquez bloquer ver 38.62 23.11 4.45 0.00 imp:pre:2p;ind:pre:2p; +bloquiez bloquer ver 38.62 23.11 0.06 0.00 ind:imp:2p; +bloquons bloquer ver 38.62 23.11 0.12 0.14 imp:pre:1p;ind:pre:1p; +bloquât bloquer ver 38.62 23.11 0.00 0.07 sub:imp:3s; +bloquèrent bloquer ver 38.62 23.11 0.01 0.14 ind:pas:3p; +bloqué bloquer ver m s 38.62 23.11 11.55 4.86 par:pas; +bloquée bloquer ver f s 38.62 23.11 4.59 2.30 par:pas; +bloquées bloquer ver f p 38.62 23.11 1.13 1.08 par:pas; +bloqués bloquer ver m p 38.62 23.11 2.41 2.09 par:pas; +blot blot nom m s 0.71 1.76 0.71 1.49 +blots blot nom m p 0.71 1.76 0.00 0.27 +blotti blottir ver m s 1.70 12.84 0.22 2.30 par:pas; +blottie blottir ver f s 1.70 12.84 0.27 2.64 par:pas; +blotties blottir ver f p 1.70 12.84 0.00 0.34 par:pas; +blottir blottir ver 1.70 12.84 0.33 2.64 inf; +blottirai blottir ver 1.70 12.84 0.01 0.00 ind:fut:1s; +blottirait blottir ver 1.70 12.84 0.00 0.07 cnd:pre:3s; +blottirent blottir ver 1.70 12.84 0.00 0.07 ind:pas:3p; +blottis blottir ver m p 1.70 12.84 0.42 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +blottissaient blottir ver 1.70 12.84 0.00 0.41 ind:imp:3p; +blottissais blottir ver 1.70 12.84 0.01 0.14 ind:imp:1s; +blottissait blottir ver 1.70 12.84 0.15 0.47 ind:imp:3s; +blottissant blottir ver 1.70 12.84 0.01 0.20 par:pre; +blottisse blottir ver 1.70 12.84 0.01 0.07 sub:pre:3s; +blottissement blottissement nom m 0.00 0.07 0.00 0.07 +blottissent blottir ver 1.70 12.84 0.11 0.14 ind:pre:3p; +blottissions blottir ver 1.70 12.84 0.00 0.07 ind:imp:1p; +blottit blottir ver 1.70 12.84 0.16 2.09 ind:pre:3s;ind:pas:3s; +bloum bloum nom m s 0.00 0.07 0.00 0.07 +blousantes blousant adj f p 0.00 0.07 0.00 0.07 +blouse blouse nom f s 5.68 32.64 5.29 28.51 +blousent blouser ver 0.53 0.54 0.02 0.00 ind:pre:3p; +blouser blouser ver 0.53 0.54 0.33 0.14 inf; +blouses blouse nom f p 5.68 32.64 0.39 4.12 +blouson blouson nom m s 7.15 25.20 6.62 22.57 +blousons blouson nom m p 7.15 25.20 0.53 2.64 +blousé blouser ver m s 0.53 0.54 0.13 0.14 par:pas; +blousée blouser ver f s 0.53 0.54 0.00 0.14 par:pas; +blousés blouser ver m p 0.53 0.54 0.02 0.14 par:pas; +blèche blèche adj s 0.00 0.34 0.00 0.20 +blèches blèche adj p 0.00 0.34 0.00 0.14 +blèsement blèsement nom m s 0.00 0.07 0.00 0.07 +blé blé nom m s 19.98 28.65 19.07 23.24 +blédard blédard nom m s 0.00 0.14 0.00 0.07 +blédards blédard nom m p 0.00 0.14 0.00 0.07 +blue_jean blue_jean nom m s 0.17 2.03 0.05 1.08 +blue_jean blue_jean nom m p 0.17 2.03 0.10 0.95 +blue_jean blue_jean nom m p 0.17 2.03 0.01 0.00 +blue_note blue_note nom f s 0.02 0.00 0.02 0.00 +blues blues nom m 7.81 5.68 7.81 5.68 +bluets bluet nom m p 0.00 0.07 0.00 0.07 +bluette bluette nom f s 0.01 0.61 0.00 0.34 +bluettes bluette nom f p 0.01 0.61 0.01 0.27 +bluff bluff nom m s 3.02 1.62 3.00 1.55 +bluffa bluffer ver 6.30 2.36 0.00 0.07 ind:pas:3s; +bluffaient bluffer ver 6.30 2.36 0.03 0.07 ind:imp:3p; +bluffais bluffer ver 6.30 2.36 0.31 0.00 ind:imp:1s;ind:imp:2s; +bluffait bluffer ver 6.30 2.36 0.19 0.27 ind:imp:3s; +bluffant bluffer ver 6.30 2.36 0.05 0.00 par:pre; +bluffe bluffer ver 6.30 2.36 2.03 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bluffent bluffer ver 6.30 2.36 0.12 0.14 ind:pre:3p; +bluffer bluffer ver 6.30 2.36 1.47 0.61 inf; +blufferais bluffer ver 6.30 2.36 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +blufferez bluffer ver 6.30 2.36 0.02 0.00 ind:fut:2p; +bluffes bluffer ver 6.30 2.36 0.60 0.14 ind:pre:2s; +bluffeur bluffeur nom m s 0.30 0.27 0.28 0.14 +bluffeurs bluffeur nom m p 0.30 0.27 0.02 0.07 +bluffeuses bluffeur nom f p 0.30 0.27 0.00 0.07 +bluffez bluffer ver 6.30 2.36 0.56 0.00 imp:pre:2p;ind:pre:2p; +bluffiez bluffer ver 6.30 2.36 0.03 0.00 ind:imp:2p; +bluffons bluffer ver 6.30 2.36 0.10 0.00 imp:pre:1p;ind:pre:1p; +bluffs bluff nom m p 3.02 1.62 0.02 0.07 +bluffé bluffer ver m s 6.30 2.36 0.42 0.14 par:pas; +bluffée bluffer ver f s 6.30 2.36 0.14 0.07 par:pas; +bluffées bluffer ver f p 6.30 2.36 0.00 0.07 par:pas; +bluffés bluffer ver m p 6.30 2.36 0.23 0.07 par:pas; +blême blême adj s 1.48 14.73 1.16 11.62 +blêmes blême adj p 1.48 14.73 0.31 3.11 +blêmi blêmir ver m s 0.42 2.70 0.01 0.47 par:pas; +blêmies blêmir ver f p 0.42 2.70 0.00 0.07 par:pas; +blêmir blêmir ver 0.42 2.70 0.14 0.54 inf; +blêmis blêmir ver 0.42 2.70 0.00 0.14 ind:pre:1s;ind:pas:1s; +blêmissais blêmir ver 0.42 2.70 0.00 0.07 ind:imp:1s; +blêmissait blêmir ver 0.42 2.70 0.00 0.20 ind:imp:3s; +blêmissant blêmir ver 0.42 2.70 0.00 0.07 par:pre; +blêmissante blêmissant adj f s 0.00 0.07 0.00 0.07 +blêmit blêmir ver 0.42 2.70 0.28 1.15 ind:pre:3s;ind:pas:3s; +blépharite blépharite nom f s 0.00 0.14 0.00 0.14 +blés blé nom m p 19.98 28.65 0.91 5.41 +blush blush nom m s 0.20 0.14 0.20 0.14 +bluter bluter ver 0.00 0.07 0.00 0.07 inf; +blutoir blutoir nom m s 0.00 0.07 0.00 0.07 +boîte boîte nom f s 88.81 134.05 74.58 94.32 +boîtes_repas boîtes_repas nom f p 0.00 0.07 0.00 0.07 +boîtes boîte nom f p 88.81 134.05 14.23 39.73 +boîtier boîtier nom m s 1.04 0.88 0.72 0.81 +boîtiers boîtier nom m p 1.04 0.88 0.32 0.07 +boa boa nom m s 1.62 2.30 1.56 1.96 +boas boa nom m p 1.62 2.30 0.06 0.34 +boat_people boat_people nom m 0.02 0.07 0.02 0.07 +bob bob nom m s 0.71 0.88 0.69 0.27 +bobard bobard nom m s 3.13 1.96 1.00 0.41 +bobards bobard nom m p 3.13 1.96 2.13 1.55 +bobbies bobbies nom m p 0.00 0.20 0.00 0.20 +bobby bobby nom m s 0.32 0.00 0.32 0.00 +bobinage bobinage nom m s 0.02 0.14 0.02 0.14 +bobinait bobiner ver 0.01 0.14 0.00 0.07 ind:imp:3s; +bobinard bobinard nom m s 0.00 0.41 0.00 0.34 +bobinards bobinard nom m p 0.00 0.41 0.00 0.07 +bobine bobine nom f s 3.63 5.88 1.69 2.91 +bobineau bobineau nom m s 0.03 0.07 0.03 0.07 +bobines bobine nom f p 3.63 5.88 1.94 2.97 +bobinette bobinette nom f s 0.14 0.20 0.11 0.20 +bobinettes bobinette nom f p 0.14 0.20 0.03 0.00 +bobineuse bobineur nom f s 0.00 0.20 0.00 0.14 +bobineuses bobineur nom f p 0.00 0.20 0.00 0.07 +bobino bobino nom m s 0.00 0.41 0.00 0.41 +bobo bobo nom m s 2.42 2.23 1.89 1.55 +bobonne bobonne nom f s 0.79 1.15 0.79 1.08 +bobonnes bobonne nom f p 0.79 1.15 0.00 0.07 +bâbord bâbord nom m s 1.97 0.95 1.97 0.95 +bobos bobo nom m p 2.42 2.23 0.53 0.68 +bobosse bobosse nom s 0.00 0.61 0.00 0.61 +bobs bob nom m p 0.71 0.88 0.02 0.61 +bobsleigh bobsleigh nom m s 0.91 0.20 0.91 0.20 +bobèche bobèche nom f s 0.00 0.14 0.00 0.07 +bobèches bobèche nom f p 0.00 0.14 0.00 0.07 +boc boc nom m s 0.00 0.07 0.00 0.07 +bocage bocage nom m s 0.14 2.84 0.14 2.50 +bocages bocage nom m p 0.14 2.84 0.00 0.34 +bocagères bocager adj f p 0.00 0.07 0.00 0.07 +bocal bocal nom m s 3.83 7.50 2.73 4.66 +bocard bocard nom m s 0.00 0.07 0.00 0.07 +bocaux bocal nom m p 3.83 7.50 1.10 2.84 +bâche bâche nom f s 2.40 13.38 2.30 10.07 +boche boche nom s 8.63 25.14 2.24 3.38 +bâcher bâcher ver 0.04 0.47 0.01 0.00 inf; +bâches bâche nom f p 2.40 13.38 0.10 3.31 +boches boche nom p 8.63 25.14 6.38 21.76 +bochiman bochiman nom m s 0.01 0.00 0.01 0.00 +bâché bâché adj m s 0.02 0.81 0.01 0.34 +bâchée bâcher ver f s 0.04 0.47 0.00 0.14 par:pas; +bâchées bâché adj f p 0.02 0.81 0.00 0.14 +bâchés bâché adj m p 0.02 0.81 0.01 0.27 +bock bock nom m s 0.11 1.35 0.10 0.88 +bocks bock nom m p 0.11 1.35 0.01 0.47 +bâcla bâcler ver 1.39 3.99 0.00 0.14 ind:pas:3s; +bâclai bâcler ver 1.39 3.99 0.00 0.07 ind:pas:1s; +bâclaient bâcler ver 1.39 3.99 0.00 0.07 ind:imp:3p; +bâclais bâcler ver 1.39 3.99 0.01 0.07 ind:imp:1s; +bâclait bâcler ver 1.39 3.99 0.01 0.20 ind:imp:3s; +bâclant bâcler ver 1.39 3.99 0.01 0.27 par:pre; +bâcle bâcler ver 1.39 3.99 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâcler bâcler ver 1.39 3.99 0.12 0.68 inf; +bâclera bâcler ver 1.39 3.99 0.00 0.07 ind:fut:3s; +bâclerait bâcler ver 1.39 3.99 0.00 0.07 cnd:pre:3s; +bâcles bâcler ver 1.39 3.99 0.02 0.07 ind:pre:2s; +bâcleurs bâcleur nom m p 0.00 0.07 0.00 0.07 +bâclez bâcler ver 1.39 3.99 0.01 0.07 ind:pre:2p; +bâclons bâcler ver 1.39 3.99 0.00 0.07 ind:pre:1p; +bâclé bâcler ver m s 1.39 3.99 0.82 1.01 par:pas; +bâclée bâcler ver f s 1.39 3.99 0.20 0.41 par:pas; +bâclées bâcler ver f p 1.39 3.99 0.01 0.07 par:pas; +bâclés bâcler ver m p 1.39 3.99 0.01 0.27 par:pas; +bocson bocson nom m s 0.00 0.27 0.00 0.27 +bodega bodega nom f s 0.65 0.14 0.63 0.14 +bodegas bodega nom f p 0.65 0.14 0.03 0.00 +bodhi bodhi nom f s 2.21 0.00 2.21 0.00 +bodhisattva bodhisattva nom m s 0.38 0.00 0.38 0.00 +bodo bodo nom m s 1.00 0.07 1.00 0.07 +body_building body_building nom m s 0.01 0.00 0.01 0.00 +body body nom m s 1.24 0.07 1.24 0.07 +bodybuilding bodybuilding nom m s 0.01 0.00 0.01 0.00 +boer boer nom m s 0.01 0.41 0.01 0.14 +boers boer nom m p 0.01 0.41 0.00 0.27 +boeuf boeuf nom m s 10.39 21.01 8.58 14.32 +boeufs boeuf nom m p 10.39 21.01 1.81 6.69 +bof bof ono 4.70 2.84 4.70 2.84 +bâfra bâfrer ver 0.72 1.96 0.00 0.14 ind:pas:3s; +bâfraient bâfrer ver 0.72 1.96 0.00 0.07 ind:imp:3p; +bâfrais bâfrer ver 0.72 1.96 0.00 0.07 ind:imp:1s; +bâfrait bâfrer ver 0.72 1.96 0.01 0.20 ind:imp:3s; +bâfrant bâfrer ver 0.72 1.96 0.00 0.20 par:pre; +bâfre bâfrer ver 0.72 1.96 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâfrements bâfrement nom m p 0.00 0.07 0.00 0.07 +bâfrer bâfrer ver 0.72 1.96 0.26 0.54 inf; +bâfres bâfrer ver 0.72 1.96 0.17 0.00 ind:pre:2s; +bâfreur bâfreur nom m s 0.07 0.07 0.05 0.07 +bâfreurs bâfreur nom m p 0.07 0.07 0.02 0.00 +bâfrez bâfrer ver 0.72 1.96 0.01 0.07 imp:pre:2p;ind:pre:2p; +bâfrèrent bâfrer ver 0.72 1.96 0.00 0.07 ind:pas:3p; +bâfré bâfrer ver m s 0.72 1.96 0.11 0.34 par:pas; +boggie boggie nom m s 0.02 0.41 0.02 0.00 +boggies boggie nom m p 0.02 0.41 0.00 0.41 +boghei boghei nom m s 0.02 2.64 0.02 2.64 +bogie bogie nom m s 0.14 0.00 0.14 0.00 +bogomiles bogomile nom m p 0.00 0.07 0.00 0.07 +bogue boguer ver 0.16 0.00 0.14 0.00 ind:pre:3s; +boguer boguer ver 0.16 0.00 0.01 0.00 inf; +bogues bogue nom p 0.17 0.47 0.05 0.07 +boguet boguet nom m s 0.00 0.07 0.00 0.07 +bohème bohème nom s 2.17 2.84 2.01 2.23 +bohèmes bohème nom p 2.17 2.84 0.16 0.61 +bohême bohême nom s 0.00 0.54 0.00 0.54 +bohémien bohémien nom m s 3.94 1.49 0.34 0.27 +bohémienne bohémien nom f s 3.94 1.49 2.80 0.41 +bohémiennes bohémienne nom f p 0.14 0.00 0.14 0.00 +bohémiens bohémien nom m p 3.94 1.49 0.79 0.68 +bâilla bâiller ver 1.87 18.51 0.01 3.85 ind:pas:3s; +bâillai bâiller ver 1.87 18.51 0.00 0.07 ind:pas:1s; +bâillaient bâiller ver 1.87 18.51 0.00 0.74 ind:imp:3p; +bâillais bâiller ver 1.87 18.51 0.01 0.34 ind:imp:1s; +bâillait bâiller ver 1.87 18.51 0.05 2.70 ind:imp:3s; +bâillant bâiller ver 1.87 18.51 0.10 3.58 par:pre; +bâillante bâillant adj f s 0.00 0.81 0.00 0.34 +bâillantes bâillant adj f p 0.00 0.81 0.00 0.20 +bâille bâiller ver 1.87 18.51 0.62 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâillement bâillement nom m s 0.53 4.19 0.50 3.11 +bâillements bâillement nom m p 0.53 4.19 0.03 1.08 +bâillent bâiller ver 1.87 18.51 0.29 0.74 ind:pre:3p; +bâiller bâiller ver 1.87 18.51 0.36 2.77 inf; +bâillera bâiller ver 1.87 18.51 0.01 0.07 ind:fut:3s; +bâillerez bâiller ver 1.87 18.51 0.14 0.00 ind:fut:2p; +bâilles bâiller ver 1.87 18.51 0.12 0.07 ind:pre:2s; +bâillez bâiller ver 1.87 18.51 0.14 0.07 imp:pre:2p;ind:pre:2p; +bâillâmes bâiller ver 1.87 18.51 0.00 0.07 ind:pas:1p; +bâillon bâillon nom m s 0.64 1.96 0.63 1.89 +bâillonna bâillonner ver 2.61 2.70 0.00 0.20 ind:pas:3s; +bâillonnait bâillonner ver 2.61 2.70 0.01 0.54 ind:imp:3s; +bâillonnant bâillonner ver 2.61 2.70 0.00 0.14 par:pre; +bâillonne bâillonner ver 2.61 2.70 0.60 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâillonnent bâillonner ver 2.61 2.70 0.00 0.07 ind:pre:3p; +bâillonner bâillonner ver 2.61 2.70 0.36 0.47 inf; +bâillonnera bâillonner ver 2.61 2.70 0.01 0.00 ind:fut:3s; +bâillonnerait bâillonner ver 2.61 2.70 0.02 0.00 cnd:pre:3s; +bâillonnez bâillonner ver 2.61 2.70 0.20 0.00 imp:pre:2p;ind:pre:2p; +bâillonnons bâillonner ver 2.61 2.70 0.01 0.00 imp:pre:1p; +bâillonné bâillonner ver m s 2.61 2.70 0.40 0.88 par:pas; +bâillonnée bâillonner ver f s 2.61 2.70 0.83 0.14 par:pas; +bâillonnés bâillonner ver m p 2.61 2.70 0.16 0.07 par:pas; +bâillons bâillon nom m p 0.64 1.96 0.01 0.07 +bâillèrent bâiller ver 1.87 18.51 0.00 0.07 ind:pas:3p; +bâillé bâiller ver m s 1.87 18.51 0.02 0.74 par:pas; +boira boire ver 339.06 274.32 2.97 1.55 ind:fut:3s; +boirai boire ver 339.06 274.32 3.13 1.55 ind:fut:1s; +boiraient boire ver 339.06 274.32 0.01 0.34 cnd:pre:3p; +boirais boire ver 339.06 274.32 2.37 1.22 cnd:pre:1s;cnd:pre:2s; +boirait boire ver 339.06 274.32 0.46 1.55 cnd:pre:3s; +boiras boire ver 339.06 274.32 1.14 0.74 ind:fut:2s; +boire boire ver 339.06 274.32 142.15 100.27 inf;; +boirez boire ver 339.06 274.32 0.84 0.54 ind:fut:2p; +boiriez boire ver 339.06 274.32 0.12 0.14 cnd:pre:2p; +boirions boire ver 339.06 274.32 0.03 0.27 cnd:pre:1p; +boirons boire ver 339.06 274.32 0.91 0.95 ind:fut:1p; +boiront boire ver 339.06 274.32 0.11 0.34 ind:fut:3p; +bois bois nom m 115.56 299.46 115.56 299.46 +boisaient boiser ver 0.06 1.42 0.00 0.07 ind:imp:3p; +boisait boiser ver 0.06 1.42 0.00 0.07 ind:imp:3s; +boisant boiser ver 0.06 1.42 0.00 0.07 par:pre; +boise boiser ver 0.06 1.42 0.01 0.07 ind:pre:3s; +boiserie boiserie nom f s 0.26 5.00 0.11 0.88 +boiseries boiserie nom f p 0.26 5.00 0.15 4.12 +boiseur boiseur nom m s 0.00 0.07 0.00 0.07 +boisseau boisseau nom m s 0.42 0.61 0.26 0.54 +boisseaux boisseau nom m p 0.42 0.61 0.16 0.07 +boisselier boisselier nom m s 0.27 0.00 0.27 0.00 +boisson boisson nom f s 18.55 13.24 11.73 7.36 +boissonnée boissonner ver f s 0.00 0.07 0.00 0.07 par:pas; +boissons boisson nom f p 18.55 13.24 6.82 5.88 +boisé boisé adj m s 0.46 3.04 0.15 0.61 +boisée boisé adj f s 0.46 3.04 0.17 1.28 +boisées boisé adj f p 0.46 3.04 0.12 0.95 +boisés boisé adj m p 0.46 3.04 0.02 0.20 +boit boire ver 339.06 274.32 25.63 21.08 ind:pre:3s; +boitaient boiter ver 15.43 7.77 0.01 0.41 ind:imp:3p; +boitais boiter ver 15.43 7.77 0.18 0.07 ind:imp:1s;ind:imp:2s; +boitait boiter ver 15.43 7.77 0.64 1.96 ind:imp:3s; +boitant boiter ver 15.43 7.77 0.24 1.69 par:pre; +boite boiter ver 15.43 7.77 11.83 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boitement boitement nom m s 0.05 0.00 0.05 0.00 +boitent boiter ver 15.43 7.77 0.04 0.07 ind:pre:3p; +boiter boiter ver 15.43 7.77 0.36 0.81 inf; +boitera boiter ver 15.43 7.77 0.05 0.00 ind:fut:3s; +boiterai boiter ver 15.43 7.77 0.02 0.07 ind:fut:1s; +boiteraient boiter ver 15.43 7.77 0.00 0.07 cnd:pre:3p; +boiterait boiter ver 15.43 7.77 0.00 0.07 cnd:pre:3s; +boiteras boiter ver 15.43 7.77 0.16 0.00 ind:fut:2s; +boiterie boiterie nom f s 0.00 0.54 0.00 0.54 +boites boiter ver 15.43 7.77 1.63 0.27 ind:pre:2s; +boiteuse boiteux adj f s 2.83 4.39 0.78 1.96 +boiteuses boiteux adj f p 2.83 4.39 0.03 0.20 +boiteux boiteux nom m 2.32 2.03 2.32 2.03 +boitez boiter ver 15.43 7.77 0.10 0.14 ind:pre:2p; +boitiez boiter ver 15.43 7.77 0.04 0.00 ind:imp:2p; +boitillait boitiller ver 0.04 1.82 0.02 0.41 ind:imp:3s; +boitillant boitiller ver 0.04 1.82 0.00 1.01 par:pre; +boitille boitiller ver 0.04 1.82 0.01 0.27 ind:pre:1s;ind:pre:3s; +boitillement boitillement nom m s 0.03 0.14 0.03 0.07 +boitillements boitillement nom m p 0.03 0.14 0.00 0.07 +boitiller boitiller ver 0.04 1.82 0.01 0.14 inf; +boité boiter ver m s 15.43 7.77 0.13 0.27 par:pas; +boive boire ver 339.06 274.32 2.86 1.96 sub:pre:1s;sub:pre:3s; +boivent boire ver 339.06 274.32 5.47 5.95 ind:pre:3p; +boives boire ver 339.06 274.32 0.71 0.20 sub:pre:2s; +bol bol nom m s 17.62 25.14 16.93 20.07 +bola bola nom f s 0.25 0.47 0.11 0.27 +bolas bola nom f p 0.25 0.47 0.14 0.20 +bolchevik bolchevik nom s 2.11 1.42 0.36 0.27 +bolcheviks bolchevik nom p 2.11 1.42 1.75 1.15 +bolchevique bolchevique adj s 1.24 1.49 0.87 0.74 +bolcheviques bolchevique adj p 1.24 1.49 0.37 0.74 +bolchevisme bolchevisme nom m s 0.11 1.08 0.11 1.08 +bolcheviste bolcheviste adj s 0.00 0.14 0.00 0.07 +bolchevistes bolcheviste adj p 0.00 0.14 0.00 0.07 +bolcho bolcho nom s 0.04 0.00 0.04 0.00 +bold bold adj m s 0.04 0.00 0.04 0.00 +boldo boldo nom m s 0.00 0.20 0.00 0.20 +bolduc bolduc nom m s 0.00 0.34 0.00 0.34 +bolet bolet nom m s 0.00 0.81 0.00 0.41 +bolets bolet nom m p 0.00 0.81 0.00 0.41 +bolge bolge nom f s 0.00 0.07 0.00 0.07 +bolide bolide nom m s 0.49 2.70 0.38 1.82 +bolides bolide nom m p 0.49 2.70 0.11 0.88 +bolivar bolivar nom m s 0.09 0.47 0.09 0.47 +bolivien bolivien adj m s 0.22 0.07 0.01 0.00 +bolivienne bolivien nom f s 0.39 0.00 0.27 0.00 +boliviens bolivien nom m p 0.39 0.00 0.11 0.00 +bolognais bolognais adj m p 0.25 0.34 0.00 0.07 +bolognaise bolognais adj f s 0.25 0.34 0.23 0.20 +bolognaises bolognais adj f p 0.25 0.34 0.02 0.07 +bolonaise bolonais adj f s 0.01 0.00 0.01 0.00 +bols bol nom m p 17.62 25.14 0.69 5.07 +bolée bolée nom f s 0.01 0.27 0.01 0.20 +bolées bolée nom f p 0.01 0.27 0.00 0.07 +boléro boléro nom m s 0.56 1.22 0.56 1.08 +boléros boléro nom m p 0.56 1.22 0.00 0.14 +bomba bomber ver 1.34 5.74 0.27 0.41 ind:pas:3s; +bombage bombage nom m s 0.00 0.20 0.00 0.20 +bombaient bomber ver 1.34 5.74 0.00 0.20 ind:imp:3p; +bombais bomber ver 1.34 5.74 0.00 0.07 ind:imp:1s; +bombait bomber ver 1.34 5.74 0.01 0.81 ind:imp:3s; +bombance bombance nom f s 0.23 0.54 0.23 0.47 +bombances bombance nom f p 0.23 0.54 0.00 0.07 +bombant bomber ver 1.34 5.74 0.04 0.88 par:pre; +bombarda bombarder ver 10.86 8.65 0.01 0.54 ind:pas:3s; +bombardaient bombarder ver 10.86 8.65 0.24 0.47 ind:imp:3p; +bombardais bombarder ver 10.86 8.65 0.01 0.14 ind:imp:1s;ind:imp:2s; +bombardait bombarder ver 10.86 8.65 0.19 0.88 ind:imp:3s; +bombardant bombarder ver 10.86 8.65 0.18 0.41 par:pre; +bombarde bombarder ver 10.86 8.65 0.96 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bombardement bombardement nom m s 6.45 17.16 3.96 11.22 +bombardements bombardement nom m p 6.45 17.16 2.48 5.95 +bombardent bombarder ver 10.86 8.65 1.68 0.81 ind:pre:3p; +bombarder bombarder ver 10.86 8.65 2.42 2.09 inf; +bombardera bombarder ver 10.86 8.65 0.15 0.00 ind:fut:3s; +bombarderai bombarder ver 10.86 8.65 0.15 0.00 ind:fut:1s; +bombarderaient bombarder ver 10.86 8.65 0.01 0.07 cnd:pre:3p; +bombarderais bombarder ver 10.86 8.65 0.02 0.00 cnd:pre:1s; +bombarderait bombarder ver 10.86 8.65 0.02 0.07 cnd:pre:3s; +bombarderons bombarder ver 10.86 8.65 0.02 0.00 ind:fut:1p; +bombarderont bombarder ver 10.86 8.65 0.23 0.00 ind:fut:3p; +bombardes bombarde nom f p 0.19 0.95 0.14 0.54 +bombardez bombarder ver 10.86 8.65 0.10 0.00 imp:pre:2p;ind:pre:2p; +bombardier bombardier nom m s 3.02 3.31 0.89 0.68 +bombardiers bombardier nom m p 3.02 3.31 2.13 2.64 +bombardions bombarder ver 10.86 8.65 0.01 0.00 ind:imp:1p; +bombardâmes bombarder ver 10.86 8.65 0.00 0.07 ind:pas:1p; +bombardon bombardon nom m s 0.27 0.00 0.14 0.00 +bombardons bombarder ver 10.86 8.65 0.14 0.07 imp:pre:1p;ind:pre:1p; +bombardèrent bombarder ver 10.86 8.65 0.00 0.07 ind:pas:3p; +bombardé bombarder ver m s 10.86 8.65 2.33 1.42 par:pas; +bombardée bombarder ver f s 10.86 8.65 0.83 0.27 par:pas; +bombardées bombarder ver f p 10.86 8.65 0.25 0.20 par:pas; +bombardés bombarder ver m p 10.86 8.65 0.89 0.68 par:pas; +bombas bomber ver 1.34 5.74 0.00 0.07 ind:pas:2s; +bombasses bomber ver 1.34 5.74 0.01 0.00 sub:imp:2s; +bombe bombe nom f s 64.39 30.81 48.70 15.00 +bombements bombement nom m p 0.00 0.07 0.00 0.07 +bombent bomber ver 1.34 5.74 0.00 0.14 ind:pre:3p; +bomber bomber ver 1.34 5.74 0.34 0.61 inf; +bombes_test bombes_test nom f p 0.01 0.00 0.01 0.00 +bombes bombe nom f p 64.39 30.81 15.70 15.81 +bombeur bombeur nom m s 0.03 0.00 0.03 0.00 +bombez bomber ver 1.34 5.74 0.08 0.00 imp:pre:2p; +bombillement bombillement nom m s 0.00 0.07 0.00 0.07 +bombinette bombinette nom f s 0.00 0.20 0.00 0.07 +bombinettes bombinette nom f p 0.00 0.20 0.00 0.14 +bombonne bombonne nom f s 0.23 0.47 0.16 0.34 +bombonnes bombonne nom f p 0.23 0.47 0.08 0.14 +bombèrent bomber ver 1.34 5.74 0.00 0.07 ind:pas:3p; +bombé bombé adj m s 0.30 5.61 0.16 2.43 +bombée bombé adj f s 0.30 5.61 0.03 1.49 +bombées bombé adj f p 0.30 5.61 0.11 0.81 +bombés bombé adj m p 0.30 5.61 0.00 0.88 +bombyx bombyx nom m 0.12 0.00 0.12 0.00 +bon_papa bon_papa nom m s 0.07 1.55 0.07 1.55 +bon bon ono 521.22 109.86 521.22 109.86 +bonace bonace nom f s 0.00 0.14 0.00 0.07 +bonaces bonace nom f p 0.00 0.14 0.00 0.07 +bonapartiste bonapartiste nom s 0.28 0.14 0.14 0.07 +bonapartistes bonapartiste nom p 0.28 0.14 0.14 0.07 +bonard bonard adj m s 0.01 0.34 0.01 0.27 +bonardes bonard adj f p 0.01 0.34 0.00 0.07 +bonasse bonasse adj s 0.08 2.03 0.08 1.62 +bonassement bonassement adv 0.00 0.07 0.00 0.07 +bonasserie bonasserie nom f s 0.00 0.07 0.00 0.07 +bonasses bonasse adj p 0.08 2.03 0.00 0.41 +bonbon bonbon nom m s 23.45 15.00 6.89 3.72 +bonbonne bonbonne nom f s 0.47 2.43 0.33 1.62 +bonbonnes bonbonne nom f p 0.47 2.43 0.15 0.81 +bonbonnière bonbonnière nom f s 0.14 1.35 0.14 1.08 +bonbonnières bonbonnière nom f p 0.14 1.35 0.00 0.27 +bonbons bonbon nom m p 23.45 15.00 16.55 11.28 +bond bond nom m s 4.69 25.74 3.44 20.07 +bondît bondir ver 5.10 35.41 0.00 0.20 sub:imp:3s; +bondage bondage nom m s 0.41 0.07 0.41 0.00 +bondages bondage nom m p 0.41 0.07 0.00 0.07 +bondait bonder ver 1.84 2.30 0.00 0.07 ind:imp:3s; +bonde bonde nom f s 0.24 0.61 0.23 0.54 +bonder bonder ver 1.84 2.30 0.09 0.00 inf; +bondes bonde nom f p 0.24 0.61 0.01 0.07 +bondi bondir ver m s 5.10 35.41 0.91 3.85 par:pas; +bondieusard bondieusard nom m s 0.01 0.00 0.01 0.00 +bondieuserie bondieuserie nom f s 0.05 0.68 0.00 0.27 +bondieuseries bondieuserie nom f p 0.05 0.68 0.05 0.41 +bondieuses bondieuser ver 0.00 0.07 0.00 0.07 ind:pre:2s; +bondir bondir ver 5.10 35.41 2.11 9.05 inf; +bondira bondir ver 5.10 35.41 0.16 0.14 ind:fut:3s; +bondirais bondir ver 5.10 35.41 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +bondirait bondir ver 5.10 35.41 0.02 0.20 cnd:pre:3s; +bondirent bondir ver 5.10 35.41 0.11 0.88 ind:pas:3p; +bondis bondir ver m p 5.10 35.41 0.34 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bondissaient bondir ver 5.10 35.41 0.03 0.88 ind:imp:3p; +bondissais bondir ver 5.10 35.41 0.04 0.27 ind:imp:1s;ind:imp:2s; +bondissait bondir ver 5.10 35.41 0.17 2.57 ind:imp:3s; +bondissant bondir ver 5.10 35.41 0.20 2.70 par:pre; +bondissante bondissant adj f s 0.34 2.77 0.09 0.95 +bondissantes bondissant adj f p 0.34 2.77 0.14 0.68 +bondissants bondissant adj m p 0.34 2.77 0.02 0.27 +bondisse bondir ver 5.10 35.41 0.02 0.07 sub:pre:1s;sub:pre:3s; +bondissement bondissement nom m s 0.00 0.61 0.00 0.54 +bondissements bondissement nom m p 0.00 0.61 0.00 0.07 +bondissent bondir ver 5.10 35.41 0.04 0.88 ind:pre:3p; +bondissez bondir ver 5.10 35.41 0.11 0.07 imp:pre:2p;ind:pre:2p; +bondissons bondir ver 5.10 35.41 0.00 0.14 imp:pre:1p;ind:pre:1p; +bondit bondir ver 5.10 35.41 0.81 11.96 ind:pre:3s;ind:pas:3s; +bondrée bondrée nom f s 0.01 0.20 0.01 0.20 +bonds bond nom m p 4.69 25.74 1.25 5.68 +bondé bonder ver m s 1.84 2.30 1.07 1.15 par:pas; +bondée bonder ver f s 1.84 2.30 0.33 0.34 par:pas; +bondées bonder ver f p 1.84 2.30 0.19 0.27 par:pas; +bondés bonder ver m p 1.84 2.30 0.17 0.47 par:pas; +bongo bongo nom m s 0.21 0.14 0.09 0.07 +bongos bongo nom m p 0.21 0.14 0.12 0.07 +bonheur_du_jour bonheur_du_jour nom m s 0.02 0.14 0.02 0.07 +bonheur bonheur nom m s 78.74 162.36 78.34 156.35 +bonheur_du_jour bonheur_du_jour nom m p 0.02 0.14 0.00 0.07 +bonheurs bonheur nom m p 78.74 162.36 0.41 6.01 +bonhomie bonhomie nom f s 0.02 4.12 0.02 4.12 +bonhomme bonhomme nom m s 10.57 29.80 9.96 26.01 +bonhommes bonhomme adj m p 4.85 4.46 0.47 0.14 +boni boni nom m s 0.01 0.68 0.01 0.54 +boniche boniche nom f s 1.28 1.22 1.16 0.81 +boniches boniche nom f p 1.28 1.22 0.12 0.41 +bonifiaient bonifier ver 0.14 0.14 0.00 0.07 ind:imp:3p; +bonification bonification nom f s 0.00 0.07 0.00 0.07 +bonifier bonifier ver 0.14 0.14 0.08 0.00 inf; +bonifierait bonifier ver 0.14 0.14 0.00 0.07 cnd:pre:3s; +bonifiez bonifier ver 0.14 0.14 0.01 0.00 ind:pre:2p; +bonifié bonifier ver m s 0.14 0.14 0.04 0.00 par:pas; +bonifiée bonifier ver f s 0.14 0.14 0.01 0.00 par:pas; +boniment boniment nom m s 1.30 3.99 0.65 1.55 +bonimentait bonimenter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +bonimente bonimenter ver 0.00 0.20 0.00 0.07 ind:pre:3s; +bonimenter bonimenter ver 0.00 0.20 0.00 0.07 inf; +bonimenteur bonimenteur nom m s 0.18 0.47 0.18 0.14 +bonimenteurs bonimenteur nom m p 0.18 0.47 0.00 0.34 +boniments boniment nom m p 1.30 3.99 0.65 2.43 +bonir bonir ver 0.00 1.08 0.00 0.74 inf; +bonis boni nom m p 0.01 0.68 0.00 0.14 +bonissait bonir ver 0.00 1.08 0.00 0.14 ind:imp:3s; +bonisse bonir ver 0.00 1.08 0.00 0.07 sub:pre:1s; +bonit bonir ver 0.00 1.08 0.00 0.14 ind:pre:3s; +bonjour bonjour nom m s 570.57 51.55 569.88 50.74 +bonjours bonjour nom m p 570.57 51.55 0.69 0.81 +bonnard bonnard adj m s 0.18 1.62 0.18 1.08 +bonnarde bonnard adj f s 0.18 1.62 0.00 0.27 +bonnardes bonnard adj f p 0.18 1.62 0.00 0.07 +bonnards bonnard adj m p 0.18 1.62 0.00 0.20 +bonne_maman bonne_maman nom f s 0.14 2.03 0.14 2.03 +bonne bon adj_sup f s 1554.44 789.66 578.93 294.53 +bonnement bonnement adv 1.37 4.66 1.37 4.66 +bonnes bon adj_sup f p 1554.44 789.66 71.25 61.76 +bonnet bonnet nom m s 8.37 18.58 6.62 14.66 +bonneteau bonneteau nom m s 0.02 1.35 0.02 1.35 +bonneter bonneter ver 0.00 0.07 0.00 0.07 inf; +bonneterie bonneterie nom f s 0.14 0.61 0.14 0.54 +bonneteries bonneterie nom f p 0.14 0.61 0.00 0.07 +bonneteur bonneteur nom m s 0.01 0.07 0.01 0.00 +bonneteurs bonneteur nom m p 0.01 0.07 0.00 0.07 +bonnets bonnet nom m p 8.37 18.58 1.75 3.92 +bonnette bonnette nom f s 0.14 0.14 0.14 0.00 +bonnettes bonnette nom f p 0.14 0.14 0.00 0.14 +bonni bonnir ver m s 6.67 2.09 0.01 0.27 par:pas; +bonniche bonniche nom f s 0.45 2.91 0.43 1.96 +bonniches bonniche nom f p 0.45 2.91 0.02 0.95 +bonnie bonnir ver f s 6.67 2.09 6.66 0.00 par:pas; +bonnir bonnir ver 6.67 2.09 0.00 0.95 inf; +bonnis bonnir ver 6.67 2.09 0.00 0.07 ind:pre:1s; +bonnisse bonnir ver 6.67 2.09 0.00 0.14 sub:pre:3s; +bonnissent bonnir ver 6.67 2.09 0.00 0.07 ind:pre:3p; +bonnit bonnir ver 6.67 2.09 0.00 0.61 ind:pre:3s; +bon_cadeaux bon_cadeaux adv 0.01 0.00 0.01 0.00 +bon_chrétien bon_chrétien nom m p 0.00 0.07 0.00 0.07 +bons bon adj_sup m p 1554.44 789.66 67.97 57.09 +bonsaï bonsaï nom m s 0.23 0.14 0.22 0.14 +bonsaïs bonsaï nom m p 0.23 0.14 0.01 0.00 +bonshommes bonhomme nom m p 10.57 29.80 0.60 3.78 +bonsoir bonsoir nom m s 161.17 22.23 161.16 22.03 +bonsoirs bonsoir nom m p 161.17 22.23 0.01 0.20 +bonté bonté nom f s 17.88 19.80 17.31 18.65 +bontés bonté nom f p 17.88 19.80 0.56 1.15 +bonus bonus nom m 3.80 0.41 3.80 0.41 +bonzaï bonzaï nom m s 0.14 0.20 0.14 0.20 +bonze bonze nom m s 0.91 1.55 0.89 1.22 +bonzes bonze nom m p 0.91 1.55 0.03 0.34 +boogie_woogie boogie_woogie nom m s 0.28 0.07 0.28 0.07 +book book nom m s 2.89 0.54 1.50 0.41 +bookmaker bookmaker nom m s 2.07 0.20 1.62 0.14 +bookmakers bookmaker nom m p 2.07 0.20 0.45 0.07 +books book nom m p 2.89 0.54 1.39 0.14 +boom boom nom m s 2.83 0.41 2.81 0.41 +boomer boomer nom m s 2.19 0.07 2.19 0.07 +boomerang boomerang nom m s 2.17 0.68 2.17 0.68 +booms boom nom m p 2.83 0.41 0.02 0.00 +booster booster nom m s 0.63 0.00 0.52 0.00 +boosters booster nom m p 0.63 0.00 0.11 0.00 +bootlegger bootlegger nom m s 0.22 0.07 0.10 0.00 +bootleggers bootlegger nom m p 0.22 0.07 0.13 0.07 +boots boots nom m p 0.54 0.95 0.54 0.95 +bop bop nom m s 0.19 0.27 0.19 0.27 +boqueteau boqueteau nom m s 0.02 3.04 0.02 1.49 +boqueteaux boqueteau nom m p 0.02 3.04 0.00 1.55 +boquillons boquillon nom m p 0.00 0.14 0.00 0.14 +bora bora nom s 0.01 0.14 0.01 0.14 +borax borax nom m 0.16 0.07 0.16 0.07 +borborygme borborygme nom m s 0.28 1.96 0.00 0.47 +borborygmes borborygme nom m p 0.28 1.96 0.28 1.49 +borchtch borchtch nom m s 0.00 0.07 0.00 0.07 +bord bord nom m s 79.90 228.11 77.06 197.36 +borda border ver 3.75 34.46 0.00 0.20 ind:pas:3s; +bordage bordage nom m s 0.02 0.47 0.00 0.47 +bordages bordage nom m p 0.02 0.47 0.02 0.00 +bordai border ver 3.75 34.46 0.00 0.07 ind:pas:1s; +bordaient border ver 3.75 34.46 0.04 2.43 ind:imp:3p; +bordait border ver 3.75 34.46 0.03 2.03 ind:imp:3s; +bordant border ver 3.75 34.46 0.17 2.50 par:pre; +borde border ver 3.75 34.46 0.72 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s; +bordeau bordeau nom m s 0.02 0.00 0.02 0.00 +bordeaux bordeaux adj 0.70 1.62 0.70 1.62 +bordel bordel nom m s 98.77 21.89 97.84 18.99 +bordelais bordelais adj m 0.06 1.01 0.00 0.61 +bordelaise bordelais nom f s 0.14 1.28 0.14 1.01 +bordelaises bordelais nom f p 0.14 1.28 0.00 0.20 +bordelières bordelier nom f p 0.00 0.07 0.00 0.07 +bordels bordel nom m p 98.77 21.89 0.93 2.91 +bordent border ver 3.75 34.46 0.26 2.91 ind:pre:3p; +border border ver 3.75 34.46 0.95 1.82 imp:pre:2p;inf; +bordera border ver 3.75 34.46 0.03 0.00 ind:fut:3s; +borderait border ver 3.75 34.46 0.10 0.07 cnd:pre:3s; +bordereau bordereau nom m s 1.09 0.68 0.71 0.27 +bordereaux bordereau nom m p 1.09 0.68 0.38 0.41 +borderie borderie nom f s 0.01 0.00 0.01 0.00 +borderiez border ver 3.75 34.46 0.01 0.00 cnd:pre:2p; +borderline borderline nom m s 0.14 0.00 0.14 0.00 +bordes border ver 3.75 34.46 0.04 0.07 ind:pre:2s;;ind:pre:2s; +bordez border ver 3.75 34.46 0.20 0.00 imp:pre:2p; +bordier bordier adj m s 0.00 0.07 0.00 0.07 +bordille bordille nom f s 0.00 0.07 0.00 0.07 +bordj bordj nom m s 0.00 0.74 0.00 0.74 +bords bord nom m p 79.90 228.11 2.84 30.74 +bordèrent border ver 3.75 34.46 0.00 0.07 ind:pas:3p; +bordé border ver m s 3.75 34.46 0.78 5.14 par:pas; +bordée bordée nom f s 0.39 3.45 0.38 2.23 +bordées border ver f p 3.75 34.46 0.10 3.72 par:pas; +bordélique bordélique adj s 0.65 0.61 0.60 0.54 +bordéliques bordélique adj f p 0.65 0.61 0.04 0.07 +bordéliser bordéliser ver 0.00 0.07 0.00 0.07 inf; +bordurant bordurer ver 0.00 0.47 0.00 0.07 par:pre; +bordure bordure nom f s 1.11 12.91 1.03 11.62 +bordurer bordurer ver 0.00 0.47 0.00 0.14 inf; +bordures bordure nom f p 1.11 12.91 0.08 1.28 +borduré bordurer ver m s 0.00 0.47 0.00 0.14 par:pas; +bordurée bordurer ver f s 0.00 0.47 0.00 0.14 par:pas; +bordés border ver m p 3.75 34.46 0.01 3.31 par:pas; +bore bore nom m s 0.17 0.00 0.17 0.00 +borgne borgne adj s 1.80 3.99 1.67 3.45 +borgnes borgne adj p 1.80 3.99 0.14 0.54 +borgnotaient borgnoter ver 0.00 0.74 0.00 0.07 ind:imp:3p; +borgnotant borgnoter ver 0.00 0.74 0.00 0.07 par:pre; +borgnote borgnoter ver 0.00 0.74 0.00 0.41 ind:pre:1s;ind:pre:3s; +borgnoté borgnoter ver m s 0.00 0.74 0.00 0.20 par:pas; +borie borie nom f s 0.00 0.61 0.00 0.61 +borique borique adj m s 0.11 0.00 0.11 0.00 +borna borner ver 2.19 13.24 0.00 1.28 ind:pas:3s; +bornage bornage nom m s 0.10 0.61 0.00 0.61 +bornages bornage nom m p 0.10 0.61 0.10 0.00 +bornai borner ver 2.19 13.24 0.00 0.34 ind:pas:1s; +bornaient borner ver 2.19 13.24 0.01 0.68 ind:imp:3p; +bornais borner ver 2.19 13.24 0.01 0.20 ind:imp:1s; +bornait borner ver 2.19 13.24 0.01 2.97 ind:imp:3s; +bornant borner ver 2.19 13.24 0.00 1.42 par:pre; +borne_fontaine borne_fontaine nom f s 0.00 0.20 0.00 0.07 +borne borne nom f s 8.35 20.61 1.69 8.04 +bornent borner ver 2.19 13.24 0.02 0.34 ind:pre:3p; +borner borner ver 2.19 13.24 0.29 0.81 inf; +bornera borner ver 2.19 13.24 0.01 0.00 ind:fut:3s; +bornerai borner ver 2.19 13.24 0.04 0.00 ind:fut:1s; +borneraient borner ver 2.19 13.24 0.00 0.07 cnd:pre:3p; +bornerait borner ver 2.19 13.24 0.00 0.14 cnd:pre:3s; +bornerons borner ver 2.19 13.24 0.00 0.07 ind:fut:1p; +borne_fontaine borne_fontaine nom f p 0.00 0.20 0.00 0.14 +bornes borne nom f p 8.35 20.61 6.66 12.57 +bornez borner ver 2.19 13.24 0.01 0.00 imp:pre:2p; +bornions borner ver 2.19 13.24 0.00 0.07 ind:imp:1p; +bornât borner ver 2.19 13.24 0.00 0.07 sub:imp:3s; +bornèrent borner ver 2.19 13.24 0.02 0.14 ind:pas:3p; +borné borné adj m s 3.13 4.66 2.07 1.96 +bornée borné adj f s 3.13 4.66 0.48 1.08 +bornées borner ver f p 2.19 13.24 0.01 0.00 par:pas; +bornés borné adj m p 3.13 4.66 0.58 1.22 +borough borough nom m s 0.18 0.00 0.18 0.00 +borsalino borsalino nom m s 0.00 0.07 0.00 0.07 +bortch bortch nom m s 0.02 0.00 0.02 0.00 +bortsch bortsch nom m s 1.03 0.27 1.03 0.27 +boréal boréal adj m s 0.57 1.49 0.11 0.34 +boréale boréal adj f s 0.57 1.49 0.38 0.88 +boréales boréal adj f p 0.57 1.49 0.08 0.27 +borée borée nom f s 0.14 0.00 0.14 0.00 +bosco bosco nom m s 0.04 1.01 0.04 1.01 +boscotte boscot adj f s 0.00 0.20 0.00 0.20 +boskoop boskoop nom f s 0.00 0.14 0.00 0.14 +bosniaque bosniaque adj s 0.82 0.07 0.78 0.00 +bosniaques bosniaque nom p 0.30 0.27 0.20 0.27 +bosnien bosnien adj m s 0.00 0.07 0.00 0.07 +bosquet bosquet nom m s 0.80 5.81 0.47 2.64 +bosquets bosquet nom m p 0.80 5.81 0.32 3.18 +boss boss nom m 13.45 2.50 13.45 2.50 +bossa_nova bossa_nova nom f s 0.12 0.07 0.12 0.07 +bossa bosser ver 76.28 10.95 0.89 0.00 ind:pas:3s; +bossage bossage nom m s 0.01 0.00 0.01 0.00 +bossaient bosser ver 76.28 10.95 0.33 0.20 ind:imp:3p; +bossais bosser ver 76.28 10.95 2.79 0.20 ind:imp:1s;ind:imp:2s; +bossait bosser ver 76.28 10.95 2.56 1.22 ind:imp:3s; +bossant bosser ver 76.28 10.95 0.46 0.14 par:pre; +bosse bosser ver 76.28 10.95 21.92 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bossela bosseler ver 0.05 2.36 0.01 0.07 ind:pas:3s; +bosselaient bosseler ver 0.05 2.36 0.00 0.34 ind:imp:3p; +bosselait bosseler ver 0.05 2.36 0.00 0.07 ind:imp:3s; +bosseler bosseler ver 0.05 2.36 0.00 0.07 inf; +bossellement bossellement nom m s 0.00 0.14 0.00 0.07 +bossellements bossellement nom m p 0.00 0.14 0.00 0.07 +bosselé bosselé adj m s 0.12 2.50 0.09 1.28 +bosselée bosselé adj f s 0.12 2.50 0.03 0.34 +bosselées bosseler ver f p 0.05 2.36 0.03 0.27 par:pas; +bosselure bosselure nom f s 0.01 0.07 0.01 0.07 +bosselés bosselé adj m p 0.12 2.50 0.01 0.68 +bossent bosser ver 76.28 10.95 1.93 1.01 ind:pre:3p; +bosser bosser ver 76.28 10.95 26.82 3.78 inf; +bossera bosser ver 76.28 10.95 0.24 0.20 ind:fut:3s; +bosserai bosser ver 76.28 10.95 0.55 0.00 ind:fut:1s; +bosserais bosser ver 76.28 10.95 0.39 0.00 cnd:pre:1s;cnd:pre:2s; +bosserait bosser ver 76.28 10.95 0.18 0.07 cnd:pre:3s; +bosseras bosser ver 76.28 10.95 0.51 0.00 ind:fut:2s; +bosserez bosser ver 76.28 10.95 0.06 0.00 ind:fut:2p; +bosses bosser ver 76.28 10.95 6.95 0.47 ind:pre:2s; +bosseur bosseur nom m s 0.59 0.34 0.53 0.00 +bosseurs bosseur adj m p 0.34 0.14 0.14 0.07 +bosseuse bosseur nom f s 0.59 0.34 0.02 0.20 +bossez bosser ver 76.28 10.95 1.97 0.00 imp:pre:2p;ind:pre:2p; +bossiez bosser ver 76.28 10.95 0.14 0.00 ind:imp:2p; +bossions bosser ver 76.28 10.95 0.01 0.07 ind:imp:1p; +bossoir bossoir nom m s 0.09 0.27 0.05 0.07 +bossoirs bossoir nom m p 0.09 0.27 0.04 0.20 +bosson bosson nom m s 0.02 0.07 0.00 0.07 +bossons bosser ver 76.28 10.95 0.02 0.00 ind:pre:1p; +bossé bosser ver m s 76.28 10.95 7.56 0.95 par:pas; +bossu bossu nom m s 4.74 1.82 4.19 1.69 +bossuaient bossuer ver 0.00 0.54 0.00 0.14 ind:imp:3p; +bossue bossu adj f s 1.97 4.66 0.35 1.89 +bossues bossu adj f p 1.97 4.66 0.01 0.41 +bossus bossu nom m p 4.74 1.82 0.55 0.14 +bossué bossué adj m s 0.00 0.61 0.00 0.34 +bossuée bossué adj f s 0.00 0.61 0.00 0.14 +bossuées bossuer ver f p 0.00 0.54 0.00 0.14 par:pas; +bossués bossué adj m p 0.00 0.61 0.00 0.14 +boston boston nom m s 0.44 0.47 0.44 0.47 +bostonien bostonien nom m s 0.04 0.20 0.02 0.07 +bostonienne bostonien adj f s 0.04 0.27 0.02 0.14 +bostoniens bostonien nom m p 0.04 0.20 0.02 0.14 +bostonner bostonner ver 0.00 0.07 0.00 0.07 inf; +bât bât nom m s 0.12 2.57 0.12 2.36 +bot bot adj m s 0.52 0.54 0.39 0.54 +botanique botanique adj s 0.88 0.74 0.70 0.47 +botaniquement botaniquement adv 0.01 0.00 0.01 0.00 +botaniques botanique adj p 0.88 0.74 0.17 0.27 +botaniste botaniste nom s 0.61 0.74 0.47 0.61 +botanistes botaniste nom p 0.61 0.74 0.14 0.14 +bâtard bâtard nom m s 13.66 11.89 9.89 9.12 +bâtarde bâtard nom f s 13.66 11.89 0.32 0.34 +bâtardes bâtard adj f p 2.69 5.74 0.01 0.20 +bâtardise bâtardise nom f s 0.01 3.04 0.01 2.97 +bâtardises bâtardise nom f p 0.01 3.04 0.00 0.07 +bâtards bâtard nom m p 13.66 11.89 3.45 2.23 +bote bot adj f s 0.52 0.54 0.13 0.00 +bâter bâter ver 0.16 0.34 0.14 0.07 inf; +bâti bâtir ver m s 18.55 24.53 5.47 5.54 par:pas; +bâtie bâtir ver f s 18.55 24.53 1.58 4.32 par:pas; +bâties bâtir ver f p 18.55 24.53 0.30 1.89 par:pas; +bâtiment bâtiment nom m s 27.58 36.82 22.73 19.93 +bâtiments bâtiment nom m p 27.58 36.82 4.85 16.89 +bâtir bâtir ver 18.55 24.53 5.62 8.24 inf; +bâtira bâtir ver 18.55 24.53 0.18 0.07 ind:fut:3s; +bâtirai bâtir ver 18.55 24.53 1.38 0.07 ind:fut:1s; +bâtirais bâtir ver 18.55 24.53 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +bâtirait bâtir ver 18.55 24.53 0.16 0.14 cnd:pre:3s; +bâtirent bâtir ver 18.55 24.53 0.03 0.14 ind:pas:3p; +bâtirions bâtir ver 18.55 24.53 0.02 0.00 cnd:pre:1p; +bâtirons bâtir ver 18.55 24.53 0.28 0.00 ind:fut:1p; +bâtiront bâtir ver 18.55 24.53 0.01 0.00 ind:fut:3p; +bâtis bâtir ver m p 18.55 24.53 0.76 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bâtissaient bâtir ver 18.55 24.53 0.27 0.20 ind:imp:3p; +bâtissais bâtir ver 18.55 24.53 0.04 0.27 ind:imp:1s; +bâtissait bâtir ver 18.55 24.53 0.17 0.95 ind:imp:3s; +bâtissant bâtir ver 18.55 24.53 0.02 0.61 par:pre; +bâtisse bâtisse nom f s 0.93 9.59 0.78 7.43 +bâtissent bâtir ver 18.55 24.53 0.24 0.14 ind:pre:3p; +bâtisses bâtisse nom f p 0.93 9.59 0.16 2.16 +bâtisseur bâtisseur nom m s 1.00 1.01 0.22 0.20 +bâtisseurs bâtisseur nom m p 1.00 1.01 0.79 0.74 +bâtisseuse bâtisseur nom f s 1.00 1.01 0.00 0.07 +bâtissez bâtir ver 18.55 24.53 0.21 0.00 imp:pre:2p;ind:pre:2p; +bâtissions bâtir ver 18.55 24.53 0.03 0.00 ind:imp:1p; +bâtissons bâtir ver 18.55 24.53 0.42 0.07 imp:pre:1p;ind:pre:1p; +bâtit bâtir ver 18.55 24.53 1.16 0.81 ind:pre:3s;ind:pas:3s; +bâtière bâtier nom f s 0.00 0.07 0.00 0.07 +bâton bâton nom m s 18.11 30.27 13.40 21.22 +bâtonnant bâtonner ver 0.14 0.14 0.14 0.00 par:pre; +bâtonner bâtonner ver 0.14 0.14 0.01 0.00 inf; +bâtonnet bâtonnet nom m s 0.83 2.84 0.38 1.28 +bâtonnets bâtonnet nom m p 0.83 2.84 0.46 1.55 +bâtonnier bâtonnier nom m s 0.16 1.35 0.16 1.35 +bâtonnée bâtonner ver f s 0.14 0.14 0.00 0.14 par:pas; +bâtons bâton nom m p 18.11 30.27 4.71 9.05 +bâts bât nom m p 0.12 2.57 0.00 0.20 +botta botter ver 15.54 5.61 0.00 0.14 ind:pas:3s; +bottai botter ver 15.54 5.61 0.00 0.07 ind:pas:1s; +bottaient botter ver 15.54 5.61 0.00 0.27 ind:imp:3p; +bottait botter ver 15.54 5.61 0.13 0.74 ind:imp:3s; +bottant botter ver 15.54 5.61 0.04 0.07 par:pre; +botte botte nom f s 32.19 44.93 6.38 8.51 +botteler botteler ver 0.00 0.34 0.00 0.14 inf; +bottellent botteler ver 0.00 0.34 0.00 0.07 ind:pre:3p; +bottelé bottelé adj m s 0.01 0.00 0.01 0.00 +bottelées botteler ver f p 0.00 0.34 0.00 0.07 par:pas; +bottent botter ver 15.54 5.61 0.08 0.00 ind:pre:3p; +botter botter ver 15.54 5.61 7.63 1.22 imp:pre:2p;ind:pre:2p;inf; +bottera botter ver 15.54 5.61 0.20 0.00 ind:fut:3s; +botterai botter ver 15.54 5.61 0.61 0.07 ind:fut:1s; +botterais botter ver 15.54 5.61 0.24 0.07 cnd:pre:1s;cnd:pre:2s; +botterait botter ver 15.54 5.61 0.21 0.07 cnd:pre:3s; +botteras botter ver 15.54 5.61 0.05 0.00 ind:fut:2s; +botterons botter ver 15.54 5.61 0.01 0.00 ind:fut:1p; +botteront botter ver 15.54 5.61 0.04 0.00 ind:fut:3p; +bottes botte nom f p 32.19 44.93 25.81 36.42 +botteur botteur nom m s 0.14 0.00 0.10 0.00 +botteurs botteur nom m p 0.14 0.00 0.03 0.00 +bottez botter ver 15.54 5.61 0.17 0.00 imp:pre:2p;ind:pre:2p; +botticellienne botticellien nom f s 0.00 0.07 0.00 0.07 +bottier bottier nom m s 0.25 0.74 0.25 0.68 +bottiers bottier nom m p 0.25 0.74 0.00 0.07 +bottiez botter ver 15.54 5.61 0.01 0.00 ind:imp:2p; +bottillon bottillon nom m s 0.04 0.74 0.00 0.07 +bottillons bottillon nom m p 0.04 0.74 0.04 0.68 +bottin bottin nom m s 1.05 1.35 1.05 0.68 +bottine bottine nom f s 2.27 4.86 0.54 0.61 +bottines bottine nom f p 2.27 4.86 1.73 4.26 +bottins bottin nom m p 1.05 1.35 0.00 0.68 +bottiné bottiner ver m s 0.00 0.07 0.00 0.07 par:pas; +bottons botter ver 15.54 5.61 0.12 0.20 imp:pre:1p;ind:pre:1p; +botté botter ver m s 15.54 5.61 1.63 0.47 par:pas; +bottée botté adj f s 0.32 2.23 0.10 0.07 +bottées botter ver f p 15.54 5.61 0.03 0.20 par:pas; +bottés botté adj m p 0.32 2.23 0.01 0.68 +bâté bâté adj m s 0.21 0.47 0.19 0.47 +botulique botulique adj f s 0.19 0.00 0.19 0.00 +botulisme botulisme nom m s 0.15 0.00 0.15 0.00 +bâtés bâté adj m p 0.21 0.47 0.03 0.00 +boubou boubou nom m s 0.11 2.30 0.11 1.55 +bouboule boubouler ver 0.19 0.54 0.18 0.54 imp:pre:2s;ind:pre:3s; +bouboules boubouler ver 0.19 0.54 0.01 0.00 ind:pre:2s; +boubous boubou nom m p 0.11 2.30 0.00 0.74 +bouc bouc nom m s 8.49 10.07 7.92 8.92 +boucan boucan nom m s 3.22 2.36 3.22 2.36 +boucanait boucaner ver 0.00 1.08 0.00 0.07 ind:imp:3s; +boucaner boucaner ver 0.00 1.08 0.00 0.07 inf; +boucanerie boucanerie nom f s 0.00 0.07 0.00 0.07 +boucanier boucanier nom m s 0.36 0.14 0.07 0.07 +boucaniers boucanier nom m p 0.36 0.14 0.29 0.07 +boucané boucaner ver m s 0.00 1.08 0.00 0.20 par:pas; +boucanée boucaner ver f s 0.00 1.08 0.00 0.47 par:pas; +boucanées boucaner ver f p 0.00 1.08 0.00 0.14 par:pas; +boucanés boucaner ver m p 0.00 1.08 0.00 0.14 par:pas; +boucha boucher ver 16.23 21.22 0.00 0.54 ind:pas:3s; +bouchage bouchage nom m s 0.00 0.07 0.00 0.07 +bouchai boucher ver 16.23 21.22 0.00 0.07 ind:pas:1s; +bouchaient boucher ver 16.23 21.22 0.14 0.88 ind:imp:3p; +bouchais boucher ver 16.23 21.22 0.10 0.27 ind:imp:1s; +bouchait boucher ver 16.23 21.22 0.06 1.55 ind:imp:3s; +bouchant boucher ver 16.23 21.22 0.37 0.88 par:pre; +bouchardant boucharder ver 0.01 0.07 0.00 0.07 par:pre; +boucharde boucharde nom f s 0.00 0.27 0.00 0.27 +boucharder boucharder ver 0.01 0.07 0.01 0.00 inf; +bouche_à_bouche bouche_à_bouche nom m 0.00 0.20 0.00 0.20 +bouche_à_oreille bouche_à_oreille nom m s 0.00 0.07 0.00 0.07 +bouche_trou bouche_trou nom m s 0.25 0.07 0.22 0.07 +bouche_trou bouche_trou nom m p 0.25 0.07 0.03 0.00 +bouche bouche nom f s 90.03 283.45 87.75 267.64 +bouchent boucher ver 16.23 21.22 0.25 0.54 ind:pre:3p; +boucher boucher nom m s 8.26 11.55 7.15 7.70 +bouchera boucher ver 16.23 21.22 0.09 0.00 ind:fut:3s; +boucheraient boucher ver 16.23 21.22 0.01 0.07 cnd:pre:3p; +boucherais boucher ver 16.23 21.22 0.00 0.07 cnd:pre:1s; +boucherait boucher ver 16.23 21.22 0.05 0.07 cnd:pre:3s; +boucheras boucher ver 16.23 21.22 0.01 0.00 ind:fut:2s; +boucherie boucherie nom f s 4.11 8.92 4.02 7.43 +boucheries boucherie nom f p 4.11 8.92 0.08 1.49 +boucherons boucher ver 16.23 21.22 0.01 0.00 ind:fut:1p; +bouchers boucher nom m p 8.26 11.55 0.93 2.91 +bouches bouche nom f p 90.03 283.45 2.27 15.81 +bouchez boucher ver 16.23 21.22 0.82 0.00 imp:pre:2p;ind:pre:2p; +bouchions boucher ver 16.23 21.22 0.00 0.07 ind:imp:1p; +bouchon bouchon nom m s 7.25 14.46 5.47 10.68 +bouchonna bouchonner ver 0.36 0.95 0.00 0.07 ind:pas:3s; +bouchonnaient bouchonner ver 0.36 0.95 0.00 0.07 ind:imp:3p; +bouchonnait bouchonner ver 0.36 0.95 0.00 0.07 ind:imp:3s; +bouchonnant bouchonner ver 0.36 0.95 0.00 0.07 par:pre; +bouchonne bouchonner ver 0.36 0.95 0.29 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouchonner bouchonner ver 0.36 0.95 0.02 0.34 inf; +bouchonneras bouchonner ver 0.36 0.95 0.00 0.07 ind:fut:2s; +bouchonné bouchonner ver m s 0.36 0.95 0.03 0.07 par:pas; +bouchonnée bouchonner ver f s 0.36 0.95 0.01 0.14 par:pas; +bouchons bouchon nom m p 7.25 14.46 1.77 3.78 +bouchot bouchot nom m s 0.00 0.14 0.00 0.07 +bouchoteurs bouchoteur nom m p 0.00 0.07 0.00 0.07 +bouchots bouchot nom m p 0.00 0.14 0.00 0.07 +bouchère boucher nom f s 8.26 11.55 0.18 0.81 +bouchèrent boucher ver 16.23 21.22 0.00 0.14 ind:pas:3p; +bouchères boucher nom f p 8.26 11.55 0.00 0.14 +bouché boucher ver m s 16.23 21.22 3.21 2.57 par:pas; +bouchée bouchée nom f s 5.61 11.49 4.77 6.28 +bouchées bouchée nom f p 5.61 11.49 0.84 5.20 +bouchure bouchure nom f s 0.00 0.07 0.00 0.07 +bouchés boucher ver m p 16.23 21.22 0.63 0.41 par:pas; +boucla boucler ver 24.61 23.45 0.00 1.49 ind:pas:3s; +bouclage bouclage nom m s 0.27 0.54 0.27 0.54 +bouclaient boucler ver 24.61 23.45 0.14 0.54 ind:imp:3p; +bouclais boucler ver 24.61 23.45 0.05 0.14 ind:imp:1s; +bouclait boucler ver 24.61 23.45 0.05 1.35 ind:imp:3s; +bouclant boucler ver 24.61 23.45 0.03 0.74 par:pre; +boucle boucle nom f s 18.86 29.86 8.62 11.22 +bouclent boucler ver 24.61 23.45 0.54 0.47 ind:pre:3p; +boucler boucler ver 24.61 23.45 6.91 6.55 inf; +bouclera boucler ver 24.61 23.45 0.26 0.00 ind:fut:3s; +bouclerai boucler ver 24.61 23.45 0.12 0.00 ind:fut:1s; +boucleraient boucler ver 24.61 23.45 0.00 0.07 cnd:pre:3p; +bouclerais boucler ver 24.61 23.45 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +bouclerait boucler ver 24.61 23.45 0.05 0.07 cnd:pre:3s; +boucleras boucler ver 24.61 23.45 0.02 0.14 ind:fut:2s; +bouclerons boucler ver 24.61 23.45 0.02 0.00 ind:fut:1p; +boucleront boucler ver 24.61 23.45 0.03 0.07 ind:fut:3p; +boucles boucle nom f p 18.86 29.86 10.23 18.65 +bouclette bouclette nom f s 0.56 1.49 0.05 0.07 +bouclettes bouclette nom f p 0.56 1.49 0.51 1.42 +bouclez boucler ver 24.61 23.45 3.88 0.68 imp:pre:2p;ind:pre:2p; +bouclier bouclier nom m s 14.45 7.30 10.47 4.59 +boucliers bouclier nom m p 14.45 7.30 3.98 2.70 +bouclâmes boucler ver 24.61 23.45 0.00 0.14 ind:pas:1p; +bouclons boucler ver 24.61 23.45 0.18 0.00 imp:pre:1p;ind:pre:1p; +bouclât boucler ver 24.61 23.45 0.00 0.07 sub:imp:3s; +bouclèrent boucler ver 24.61 23.45 0.00 0.07 ind:pas:3p; +bouclé boucler ver m s 24.61 23.45 2.88 3.31 par:pas; +bouclée boucler ver f s 24.61 23.45 1.20 2.64 par:pas; +bouclées boucler ver f p 24.61 23.45 0.05 0.27 par:pas; +bouclés bouclé adj m p 2.38 7.16 0.77 2.64 +boucs bouc nom m p 8.49 10.07 0.57 1.15 +bouda bouder ver 5.11 8.04 0.01 0.61 ind:pas:3s; +boudaient bouder ver 5.11 8.04 0.00 0.34 ind:imp:3p; +boudais bouder ver 5.11 8.04 0.04 0.14 ind:imp:1s;ind:imp:2s; +boudait bouder ver 5.11 8.04 0.03 1.76 ind:imp:3s; +boudant bouder ver 5.11 8.04 0.00 0.14 par:pre; +bouddha bouddha nom m s 0.57 1.55 0.11 1.08 +bouddhas bouddha nom m p 0.57 1.55 0.46 0.47 +bouddhique bouddhique adj s 0.01 0.20 0.01 0.14 +bouddhiques bouddhique adj f p 0.01 0.20 0.00 0.07 +bouddhisme bouddhisme nom m s 0.42 1.89 0.42 1.89 +bouddhiste bouddhiste adj s 1.00 1.69 0.94 1.22 +bouddhistes bouddhiste nom p 0.32 0.54 0.22 0.27 +boude bouder ver 5.11 8.04 2.31 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boudent bouder ver 5.11 8.04 0.16 0.27 ind:pre:3p; +bouder bouder ver 5.11 8.04 0.95 2.09 inf; +bouderai bouder ver 5.11 8.04 0.00 0.07 ind:fut:1s; +bouderait bouder ver 5.11 8.04 0.00 0.14 cnd:pre:3s; +bouderie bouderie nom f s 0.12 1.69 0.12 1.15 +bouderies bouderie nom f p 0.12 1.69 0.00 0.54 +boudes bouder ver 5.11 8.04 1.03 0.27 ind:pre:2s; +boudeur boudeur nom m s 0.04 0.14 0.02 0.14 +boudeurs boudeur adj m p 0.12 4.05 0.00 0.14 +boudeuse boudeur adj f s 0.12 4.05 0.11 1.55 +boudeuses boudeur adj f p 0.12 4.05 0.00 0.27 +boudez bouder ver 5.11 8.04 0.22 0.14 imp:pre:2p;ind:pre:2p; +boudi boudi adv 0.01 0.00 0.01 0.00 +boudiez bouder ver 5.11 8.04 0.11 0.07 ind:imp:2p; +boudin boudin nom m s 2.85 7.57 2.49 5.88 +boudinaient boudiner ver 0.32 1.76 0.00 0.07 ind:imp:3p; +boudinait boudiner ver 0.32 1.76 0.00 0.14 ind:imp:3s; +boudinant boudiner ver 0.32 1.76 0.00 0.14 par:pre; +boudine boudiner ver 0.32 1.76 0.27 0.07 ind:pre:1s;ind:pre:3s; +boudinent boudiner ver 0.32 1.76 0.00 0.07 ind:pre:3p; +boudins boudin nom m p 2.85 7.57 0.36 1.69 +boudiné boudiner ver m s 0.32 1.76 0.00 0.54 par:pas; +boudinée boudiner ver f s 0.32 1.76 0.02 0.20 par:pas; +boudinées boudiné adj f p 0.18 1.35 0.01 0.27 +boudinés boudiné adj m p 0.18 1.35 0.15 0.74 +boudiou boudiou ono 0.00 0.20 0.00 0.20 +boudoir boudoir nom m s 0.94 3.92 0.93 3.04 +boudoirs boudoir nom m p 0.94 3.92 0.01 0.88 +boudons bouder ver 5.11 8.04 0.00 0.07 ind:pre:1p; +boudèrent bouder ver 5.11 8.04 0.00 0.07 ind:pas:3p; +boudé bouder ver m s 5.11 8.04 0.23 0.14 par:pas; +boudu boudu ono 7.37 0.07 7.37 0.07 +boudée bouder ver f s 5.11 8.04 0.01 0.14 par:pas; +boudés bouder ver m p 5.11 8.04 0.00 0.07 par:pas; +boue boue nom f s 15.10 53.31 15.09 52.30 +boues boue nom f p 15.10 53.31 0.01 1.01 +boueur boueur nom m s 0.00 0.07 0.00 0.07 +boueuse boueux adj f s 1.38 11.15 0.33 3.78 +boueuses boueux adj f p 1.38 11.15 0.16 2.30 +boueux boueux adj m 1.38 11.15 0.89 5.07 +bouf bouf ono 0.02 0.14 0.02 0.14 +bouffable bouffable adj s 0.03 0.00 0.03 0.00 +bouffaient bouffer ver 42.72 33.04 0.29 0.34 ind:imp:3p; +bouffais bouffer ver 42.72 33.04 0.25 0.14 ind:imp:1s;ind:imp:2s; +bouffait bouffer ver 42.72 33.04 0.60 2.09 ind:imp:3s; +bouffant bouffer ver 42.72 33.04 0.21 0.41 par:pre; +bouffante bouffant adj f s 0.25 3.11 0.01 0.61 +bouffantes bouffant adj f p 0.25 3.11 0.14 1.01 +bouffants bouffant adj m p 0.25 3.11 0.04 0.88 +bouffarde bouffarde nom f s 0.20 1.01 0.20 0.95 +bouffardes bouffarde nom f p 0.20 1.01 0.00 0.07 +bouffe bouffe nom f s 14.51 7.36 14.40 6.62 +bouffent bouffer ver 42.72 33.04 1.93 1.49 ind:pre:3p; +bouffer bouffer ver 42.72 33.04 18.26 15.61 inf; +bouffera bouffer ver 42.72 33.04 0.38 0.61 ind:fut:3s; +boufferai bouffer ver 42.72 33.04 0.19 0.07 ind:fut:1s; +boufferaient bouffer ver 42.72 33.04 0.26 0.07 cnd:pre:3p; +boufferais bouffer ver 42.72 33.04 0.54 0.20 cnd:pre:1s;cnd:pre:2s; +boufferait bouffer ver 42.72 33.04 0.28 0.41 cnd:pre:3s; +boufferas bouffer ver 42.72 33.04 0.20 0.14 ind:fut:2s; +boufferez bouffer ver 42.72 33.04 0.02 0.00 ind:fut:2p; +boufferont bouffer ver 42.72 33.04 0.36 0.27 ind:fut:3p; +bouffes bouffer ver 42.72 33.04 1.56 0.41 ind:pre:2s; +bouffetance bouffetance nom f s 0.00 0.14 0.00 0.14 +bouffettes bouffette nom f p 0.01 0.07 0.01 0.07 +bouffeur bouffeur nom m s 0.81 0.34 0.32 0.14 +bouffeurs bouffeur nom m p 0.81 0.34 0.29 0.14 +bouffeuse bouffeur nom f s 0.81 0.34 0.20 0.00 +bouffeuses bouffeuse nom f p 0.03 0.00 0.03 0.00 +bouffez bouffer ver 42.72 33.04 0.74 0.14 imp:pre:2p;ind:pre:2p; +bouffi bouffi adj m s 1.16 3.92 0.66 2.03 +bouffie bouffi adj f s 1.16 3.92 0.32 0.74 +bouffies bouffir ver f p 0.70 3.04 0.01 0.14 par:pas; +bouffiez bouffer ver 42.72 33.04 0.03 0.00 ind:imp:2p; +bouffis bouffi adj m p 1.16 3.92 0.18 0.88 +bouffissure bouffissure nom f s 0.01 0.41 0.00 0.27 +bouffissures bouffissure nom f p 0.01 0.41 0.01 0.14 +bouffon bouffon nom m s 6.76 2.57 5.13 1.69 +bouffonna bouffonner ver 0.01 0.54 0.00 0.14 ind:pas:3s; +bouffonnait bouffonner ver 0.01 0.54 0.00 0.14 ind:imp:3s; +bouffonnant bouffonner ver 0.01 0.54 0.00 0.14 par:pre; +bouffonnante bouffonnant adj f s 0.00 0.20 0.00 0.14 +bouffonne bouffon nom f s 6.76 2.57 0.28 0.00 +bouffonnement bouffonnement adv 0.00 0.07 0.00 0.07 +bouffonner bouffonner ver 0.01 0.54 0.00 0.14 inf; +bouffonnerie bouffonnerie nom f s 0.42 1.01 0.20 0.81 +bouffonneries bouffonnerie nom f p 0.42 1.01 0.22 0.20 +bouffonnes bouffon adj f p 2.57 2.30 0.01 0.20 +bouffons bouffon nom m p 6.76 2.57 1.36 0.88 +bouffé bouffer ver m s 42.72 33.04 6.28 3.85 par:pas; +bouffée bouffée nom f s 2.89 26.35 1.92 14.19 +bouffées bouffée nom f p 2.89 26.35 0.97 12.16 +bouffés bouffer ver m p 42.72 33.04 0.32 0.54 par:pas; +bouftance bouftance nom f s 0.00 0.07 0.00 0.07 +bougainvillier bougainvillier nom m s 0.05 0.14 0.03 0.00 +bougainvilliers bougainvillier nom m p 0.05 0.14 0.02 0.14 +bougainvillée bougainvillée nom f s 0.05 1.42 0.04 0.47 +bougainvillées bougainvillée nom f p 0.05 1.42 0.01 0.95 +bouge bouger ver 211.90 156.76 85.45 30.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bougea bouger ver 211.90 156.76 0.04 11.42 ind:pas:3s; +bougeai bouger ver 211.90 156.76 0.00 0.95 ind:pas:1s; +bougeaient bouger ver 211.90 156.76 1.10 6.28 ind:imp:3p; +bougeais bouger ver 211.90 156.76 0.61 1.76 ind:imp:1s;ind:imp:2s; +bougeait bouger ver 211.90 156.76 2.73 22.97 ind:imp:3s; +bougeant bouger ver 211.90 156.76 0.50 3.31 par:pre; +bougeassent bouger ver 211.90 156.76 0.00 0.07 sub:imp:3p; +bougent bouger ver 211.90 156.76 5.84 5.41 ind:pre:3p; +bougeoir bougeoir nom m s 0.21 2.57 0.17 1.55 +bougeoirs bougeoir nom m p 0.21 2.57 0.03 1.01 +bougeons bouger ver 211.90 156.76 1.71 0.34 imp:pre:1p;ind:pre:1p; +bougeât bouger ver 211.90 156.76 0.00 0.54 sub:imp:3s; +bougeotte bougeotte nom f s 1.04 1.15 1.04 1.15 +bouger bouger ver 211.90 156.76 44.32 46.62 inf; +bougera bouger ver 211.90 156.76 1.89 1.08 ind:fut:3s; +bougerai bouger ver 211.90 156.76 1.95 0.61 ind:fut:1s; +bougeraient bouger ver 211.90 156.76 0.12 0.20 cnd:pre:3p; +bougerais bouger ver 211.90 156.76 0.28 0.14 cnd:pre:1s; +bougerait bouger ver 211.90 156.76 0.14 0.95 cnd:pre:3s; +bougeras bouger ver 211.90 156.76 0.38 0.07 ind:fut:2s; +bougerez bouger ver 211.90 156.76 0.19 0.07 ind:fut:2p; +bougeriez bouger ver 211.90 156.76 0.04 0.00 cnd:pre:2p; +bougerons bouger ver 211.90 156.76 0.10 0.00 ind:fut:1p; +bougeront bouger ver 211.90 156.76 0.40 0.27 ind:fut:3p; +bouges bouger ver 211.90 156.76 9.04 1.08 ind:pre:2s;sub:pre:2s; +bougez bouger ver 211.90 156.76 44.09 2.50 imp:pre:2p;ind:pre:2p; +bougie bougie nom f s 18.32 29.86 7.40 16.22 +bougies bougie nom f p 18.32 29.86 10.92 13.65 +bougiez bougier ver 0.30 0.00 0.30 0.00 ind:pre:2p; +bougions bouger ver 211.90 156.76 0.14 0.20 ind:imp:1p; +bougnat bougnat nom m s 0.00 2.57 0.00 1.76 +bougnats bougnat nom m p 0.00 2.57 0.00 0.81 +bougne bougner ver 0.00 0.54 0.00 0.47 ind:pre:1s;ind:pre:3s; +bougnes bougner ver 0.00 0.54 0.00 0.07 ind:pre:2s; +bougnoul bougnoul nom m 0.11 0.00 0.11 0.00 +bougnoule bougnoule nom s 0.26 3.31 0.12 1.49 +bougnoules bougnoule nom p 0.26 3.31 0.14 1.82 +bougon bougon adj m s 0.17 2.91 0.13 1.96 +bougonna bougonner ver 0.04 5.74 0.00 2.09 ind:pas:3s; +bougonnaient bougonner ver 0.04 5.74 0.00 0.07 ind:imp:3p; +bougonnais bougonner ver 0.04 5.74 0.00 0.07 ind:imp:1s; +bougonnait bougonner ver 0.04 5.74 0.00 0.95 ind:imp:3s; +bougonnant bougonner ver 0.04 5.74 0.01 0.81 par:pre; +bougonne bougon adj f s 0.17 2.91 0.04 0.81 +bougonnement bougonnement nom m s 0.01 0.00 0.01 0.00 +bougonnent bougonner ver 0.04 5.74 0.00 0.07 ind:pre:3p; +bougonner bougonner ver 0.04 5.74 0.00 0.27 inf; +bougonné bougonner ver m s 0.04 5.74 0.01 0.34 par:pas; +bougons bougon adj m p 0.17 2.91 0.00 0.14 +bougran bougran nom m s 0.23 0.00 0.23 0.00 +bougre bougre ono 0.01 0.74 0.01 0.74 +bougrement bougrement adv 0.52 1.55 0.52 1.55 +bougrerie bougrerie nom f s 0.00 0.14 0.00 0.07 +bougreries bougrerie nom f p 0.00 0.14 0.00 0.07 +bougres bougre nom m p 4.75 11.22 0.56 2.70 +bougresse bougresse nom f s 0.02 0.47 0.02 0.47 +bougèrent bouger ver 211.90 156.76 0.01 1.01 ind:pas:3p; +bougé bouger ver m s 211.90 156.76 10.52 17.97 par:pas; +bougée bouger ver f s 211.90 156.76 0.20 0.00 par:pas; +bougées bouger ver f p 211.90 156.76 0.13 0.07 par:pas; +boui_boui boui_boui nom m s 0.39 0.27 0.35 0.27 +bouiboui bouiboui nom m s 0.04 0.14 0.04 0.14 +bouibouis bouiboui nom m p 0.04 0.14 0.01 0.00 +bouif bouif nom m s 0.00 0.14 0.00 0.14 +bouillabaisse bouillabaisse nom f s 0.66 0.61 0.66 0.61 +bouillaient bouillir ver 7.62 13.58 0.00 0.20 ind:imp:3p; +bouillais bouillir ver 7.62 13.58 0.03 0.20 ind:imp:1s; +bouillait bouillir ver 7.62 13.58 0.00 1.35 ind:imp:3s; +bouillant bouillant adj m s 4.53 8.11 2.34 3.11 +bouillante bouillant adj f s 4.53 8.11 2.13 3.72 +bouillantes bouillant adj f p 4.53 8.11 0.03 0.47 +bouillants bouillant adj m p 4.53 8.11 0.04 0.81 +bouillasse bouillasse nom f s 0.17 0.61 0.17 0.61 +bouille bouille nom f s 0.80 6.55 0.70 5.81 +bouillent bouillir ver 7.62 13.58 0.04 0.07 ind:pre:3p; +bouilles bouille nom f p 0.80 6.55 0.10 0.74 +bouilleur bouilleur nom m s 0.00 0.34 0.00 0.27 +bouilleurs bouilleur nom m p 0.00 0.34 0.00 0.07 +bouilli bouilli adj m s 1.21 4.26 0.37 2.36 +bouillie bouillie nom f s 4.42 9.73 4.18 8.58 +bouillies bouillie nom f p 4.42 9.73 0.23 1.15 +bouillir bouillir ver 7.62 13.58 3.60 4.93 inf; +bouillira bouillir ver 7.62 13.58 0.02 0.00 ind:fut:3s; +bouillirons bouillir ver 7.62 13.58 0.01 0.00 ind:fut:1p; +bouillis bouilli adj m p 1.21 4.26 0.25 0.07 +bouilloire bouilloire nom f s 1.61 3.85 1.52 3.45 +bouilloires bouilloire nom f p 1.61 3.85 0.09 0.41 +bouillon bouillon nom m s 4.00 8.92 3.68 6.62 +bouillonnaient bouillonner ver 1.90 6.08 0.01 0.88 ind:imp:3p; +bouillonnais bouillonner ver 1.90 6.08 0.01 0.07 ind:imp:1s; +bouillonnait bouillonner ver 1.90 6.08 0.13 1.15 ind:imp:3s; +bouillonnant bouillonner ver 1.90 6.08 0.26 1.08 par:pre; +bouillonnante bouillonnant adj f s 0.42 2.50 0.14 0.95 +bouillonnantes bouillonnant adj f p 0.42 2.50 0.00 0.34 +bouillonnants bouillonnant adj m p 0.42 2.50 0.11 0.20 +bouillonne bouillonner ver 1.90 6.08 0.99 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouillonnement bouillonnement nom m s 0.12 3.11 0.11 2.50 +bouillonnements bouillonnement nom m p 0.12 3.11 0.01 0.61 +bouillonnent bouillonner ver 1.90 6.08 0.14 0.41 ind:pre:3p; +bouillonner bouillonner ver 1.90 6.08 0.35 0.68 inf; +bouillonneux bouillonneux adj m s 0.00 0.07 0.00 0.07 +bouillonnèrent bouillonner ver 1.90 6.08 0.00 0.07 ind:pas:3p; +bouillonné bouillonner ver m s 1.90 6.08 0.01 0.07 par:pas; +bouillonnée bouillonner ver f s 1.90 6.08 0.00 0.07 par:pas; +bouillonnées bouillonner ver f p 1.90 6.08 0.00 0.07 par:pas; +bouillonnés bouillonné nom m p 0.00 0.34 0.00 0.20 +bouillons bouillon nom m p 4.00 8.92 0.32 2.30 +bouillottait bouillotter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +bouillotte bouillotte nom f s 0.69 1.96 0.50 1.82 +bouillottes bouillotte nom f p 0.69 1.96 0.19 0.14 +bouillu bouillu adj m s 0.01 0.07 0.01 0.07 +boui_boui boui_boui nom m p 0.39 0.27 0.04 0.00 +boukha boukha nom f s 0.14 0.07 0.14 0.07 +boula bouler ver 1.00 1.82 0.00 0.07 ind:pas:3s; +boulait bouler ver 1.00 1.82 0.00 0.07 ind:imp:3s; +boulange boulange nom f s 0.10 0.27 0.10 0.27 +boulanger_pâtissier boulanger_pâtissier nom m s 0.00 0.14 0.00 0.14 +boulanger boulanger nom m s 3.00 13.31 2.44 8.78 +boulangerie boulangerie nom f s 4.01 8.04 3.76 7.57 +boulangeries boulangerie nom f p 4.01 8.04 0.25 0.47 +boulangers boulanger nom m p 3.00 13.31 0.08 2.09 +boulangisme boulangisme nom m s 0.00 0.07 0.00 0.07 +boulangère boulanger nom f s 3.00 13.31 0.47 2.30 +boulangères boulanger nom f p 3.00 13.31 0.00 0.14 +boulants boulant nom m p 0.00 0.07 0.00 0.07 +boulder boulder nom m s 0.46 0.00 0.46 0.00 +boule_de_neige boule_de_neige nom f s 0.07 0.00 0.07 0.00 +boule boule nom f s 30.68 61.22 19.29 38.31 +bouleau bouleau nom m s 1.08 4.05 0.58 0.95 +bouleaux bouleau nom m p 1.08 4.05 0.50 3.11 +bouledogue bouledogue nom m s 0.81 2.09 0.71 1.96 +bouledogues bouledogue nom m p 0.81 2.09 0.09 0.14 +boulent bouler ver 1.00 1.82 0.00 0.07 ind:pre:3p; +bouler bouler ver 1.00 1.82 0.45 0.34 inf; +boules boule nom f p 30.68 61.22 11.40 22.91 +boulet boulet nom m s 2.95 8.11 1.99 3.78 +boulets boulet nom m p 2.95 8.11 0.96 4.32 +boulette boulette nom f s 6.13 5.20 2.34 2.36 +boulettes boulette nom f p 6.13 5.20 3.79 2.84 +boulevard boulevard nom m s 4.87 61.15 4.19 52.03 +boulevardier boulevardier nom m s 0.01 0.07 0.01 0.00 +boulevardiers boulevardier nom m p 0.01 0.07 0.00 0.07 +boulevardière boulevardier adj f s 0.00 0.27 0.00 0.07 +boulevards boulevard nom m p 4.87 61.15 0.68 9.12 +bouleversa bouleverser ver 13.79 27.03 0.26 2.36 ind:pas:3s; +bouleversaient bouleverser ver 13.79 27.03 0.01 0.47 ind:imp:3p; +bouleversait bouleverser ver 13.79 27.03 0.03 2.36 ind:imp:3s; +bouleversant bouleversant adj m s 1.61 5.27 1.24 1.28 +bouleversante bouleversant adj f s 1.61 5.27 0.29 2.43 +bouleversantes bouleversant adj f p 1.61 5.27 0.04 1.08 +bouleversants bouleversant adj m p 1.61 5.27 0.04 0.47 +bouleverse bouleverser ver 13.79 27.03 1.23 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouleversement bouleversement nom m s 0.46 7.30 0.17 4.26 +bouleversements bouleversement nom m p 0.46 7.30 0.29 3.04 +bouleversent bouleverser ver 13.79 27.03 0.13 0.74 ind:pre:3p; +bouleverser bouleverser ver 13.79 27.03 1.64 3.92 inf; +bouleversera bouleverser ver 13.79 27.03 0.16 0.00 ind:fut:3s; +bouleverseraient bouleverser ver 13.79 27.03 0.00 0.07 cnd:pre:3p; +bouleverserais bouleverser ver 13.79 27.03 0.01 0.00 cnd:pre:1s; +bouleverserait bouleverser ver 13.79 27.03 0.23 0.20 cnd:pre:3s; +bouleverseras bouleverser ver 13.79 27.03 0.01 0.00 ind:fut:2s; +bouleverserons bouleverser ver 13.79 27.03 0.00 0.07 ind:fut:1p; +bouleverseront bouleverser ver 13.79 27.03 0.00 0.14 ind:fut:3p; +bouleversions bouleverser ver 13.79 27.03 0.00 0.07 ind:imp:1p; +bouleversons bouleverser ver 13.79 27.03 0.01 0.00 imp:pre:1p; +bouleversèrent bouleverser ver 13.79 27.03 0.10 0.27 ind:pas:3p; +bouleversé bouleverser ver m s 13.79 27.03 4.85 8.45 par:pas; +bouleversée bouleverser ver f s 13.79 27.03 4.37 3.24 par:pas; +bouleversées bouleverser ver f p 13.79 27.03 0.03 0.27 par:pas; +bouleversés bouleverser ver m p 13.79 27.03 0.69 0.61 par:pas; +boulgour boulgour nom m s 0.15 0.07 0.15 0.07 +boulier boulier nom m s 0.16 1.96 0.15 1.89 +bouliers boulier nom m p 0.16 1.96 0.01 0.07 +boulimie boulimie nom f s 0.26 0.54 0.26 0.47 +boulimies boulimie nom f p 0.26 0.54 0.00 0.07 +boulimique boulimique adj s 0.22 0.34 0.21 0.20 +boulimiques boulimique nom p 0.14 0.07 0.04 0.00 +bouline bouline nom f s 0.07 0.07 0.07 0.00 +boulines bouline nom f p 0.07 0.07 0.00 0.07 +boulingrins boulingrin nom m p 0.00 0.27 0.00 0.27 +boulins boulin nom m p 0.00 0.07 0.00 0.07 +bouliste bouliste nom s 0.02 0.61 0.02 0.00 +boulistes bouliste nom p 0.02 0.61 0.00 0.61 +boulle boulle nom m s 0.01 0.14 0.01 0.14 +boulochait boulocher ver 0.10 0.00 0.10 0.00 ind:imp:3s; +boulodrome boulodrome nom m s 0.00 0.07 0.00 0.07 +bouloir bouloir nom m s 0.01 0.00 0.01 0.00 +boulon boulon nom m s 2.72 3.51 1.06 1.49 +boulonnage boulonnage nom m s 0.01 0.00 0.01 0.00 +boulonnais boulonnais adj m s 0.00 0.07 0.00 0.07 +boulonnait boulonner ver 0.10 0.61 0.00 0.14 ind:imp:3s; +boulonnant boulonner ver 0.10 0.61 0.00 0.07 par:pre; +boulonne boulonner ver 0.10 0.61 0.01 0.07 imp:pre:2s;ind:pre:3s; +boulonner boulonner ver 0.10 0.61 0.04 0.14 inf; +boulonnerie boulonnerie nom f s 0.00 0.07 0.00 0.07 +boulonné boulonner ver m s 0.10 0.61 0.03 0.07 par:pas; +boulonnée boulonner ver f s 0.10 0.61 0.01 0.07 par:pas; +boulonnés boulonner ver m p 0.10 0.61 0.01 0.07 par:pas; +boulons boulon nom m p 2.72 3.51 1.66 2.03 +boulot_refuge boulot_refuge adj m s 0.00 0.07 0.00 0.07 +boulot boulot nom m s 202.97 35.61 198.68 32.57 +boulots boulot nom m p 202.97 35.61 4.30 3.04 +boulottait boulotter ver 0.16 0.41 0.00 0.07 ind:imp:3s; +boulotte boulotte nom f s 0.27 0.27 0.26 0.27 +boulotter boulotter ver 0.16 0.41 0.12 0.14 inf; +boulottes boulot adj f p 8.21 3.04 0.01 0.07 +boulottées boulotter ver f p 0.16 0.41 0.00 0.07 par:pas; +boulé bouler ver m s 1.00 1.82 0.12 0.47 par:pas; +boulu boulu adj m s 0.00 0.14 0.00 0.07 +boulés bouler ver m p 1.00 1.82 0.00 0.14 par:pas; +boulus boulu adj m p 0.00 0.14 0.00 0.07 +boum boum ono 5.20 2.09 5.20 2.09 +boumaient boumer ver 1.90 1.49 0.00 0.07 ind:imp:3p; +boumait boumer ver 1.90 1.49 0.00 0.07 ind:imp:3s; +boume boumer ver 1.90 1.49 1.90 1.15 imp:pre:2s;ind:pre:3s; +boums boum nom_sup m p 7.01 3.04 0.21 0.41 +boumé boumer ver m s 1.90 1.49 0.00 0.20 par:pas; +bouniouls bounioul nom m p 0.00 0.07 0.00 0.07 +bouquet bouquet nom m s 9.35 37.09 8.76 26.01 +bouquetier bouquetier nom m s 0.00 0.41 0.00 0.07 +bouquetin bouquetin nom m s 0.16 0.34 0.03 0.20 +bouquetins bouquetin nom m p 0.16 0.34 0.14 0.14 +bouquetière bouquetier nom f s 0.00 0.41 0.00 0.34 +bouquets bouquet nom m p 9.35 37.09 0.59 11.08 +bouqueté bouqueté adj m s 0.00 0.07 0.00 0.07 +bouquin bouquin nom m s 13.49 27.70 8.02 14.46 +bouquinage bouquinage nom m s 0.00 0.07 0.00 0.07 +bouquinais bouquiner ver 0.81 2.03 0.14 0.14 ind:imp:1s; +bouquinait bouquiner ver 0.81 2.03 0.01 0.20 ind:imp:3s; +bouquinant bouquiner ver 0.81 2.03 0.01 0.07 par:pre; +bouquine bouquiner ver 0.81 2.03 0.45 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouquiner bouquiner ver 0.81 2.03 0.17 1.08 inf; +bouquinerait bouquiner ver 0.81 2.03 0.00 0.07 cnd:pre:3s; +bouquineur bouquineur nom m s 0.01 0.00 0.01 0.00 +bouquiniste bouquiniste nom s 0.41 2.09 0.28 0.95 +bouquinistes bouquiniste nom p 0.41 2.09 0.12 1.15 +bouquins bouquin nom m p 13.49 27.70 5.46 13.24 +bouquiné bouquiner ver m s 0.81 2.03 0.03 0.00 par:pas; +bour bour nom m s 0.09 0.14 0.09 0.14 +bourbe bourbe nom f s 0.04 0.20 0.04 0.20 +bourbeuse bourbeux adj f s 0.03 1.89 0.00 0.61 +bourbeuses bourbeux adj f p 0.03 1.89 0.00 0.27 +bourbeux bourbeux adj m 0.03 1.89 0.03 1.01 +bourbier bourbier nom m s 1.12 1.35 1.10 1.01 +bourbiers bourbier nom m p 1.12 1.35 0.02 0.34 +bourbon bourbon nom m s 2.76 6.96 2.66 6.96 +bourbonien bourbonien adj m s 0.00 0.95 0.00 0.81 +bourbonienne bourbonien adj f s 0.00 0.95 0.00 0.14 +bourbons bourbon nom m p 2.76 6.96 0.10 0.00 +bourdaine bourdaine nom f s 0.00 0.14 0.00 0.07 +bourdaines bourdaine nom f p 0.00 0.14 0.00 0.07 +bourdalous bourdalou nom m p 0.00 0.07 0.00 0.07 +bourde bourde nom f s 1.54 0.95 1.10 0.54 +bourdes bourde nom f p 1.54 0.95 0.44 0.41 +bourdillon bourdillon nom m s 0.14 0.07 0.14 0.07 +bourdon bourdon nom m s 1.28 5.54 1.17 4.73 +bourdonna bourdonner ver 2.20 9.53 0.00 0.41 ind:pas:3s; +bourdonnaient bourdonner ver 2.20 9.53 0.05 1.76 ind:imp:3p; +bourdonnais bourdonner ver 2.20 9.53 0.00 0.07 ind:imp:1s; +bourdonnait bourdonner ver 2.20 9.53 0.13 2.23 ind:imp:3s; +bourdonnant bourdonner ver 2.20 9.53 0.01 1.01 par:pre; +bourdonnante bourdonnant adj f s 0.06 2.97 0.03 1.35 +bourdonnantes bourdonnant adj f p 0.06 2.97 0.01 1.01 +bourdonnants bourdonnant adj m p 0.06 2.97 0.01 0.34 +bourdonne bourdonner ver 2.20 9.53 0.87 1.42 ind:pre:3s; +bourdonnement bourdonnement nom m s 1.71 10.54 1.63 9.19 +bourdonnements bourdonnement nom m p 1.71 10.54 0.08 1.35 +bourdonnent bourdonner ver 2.20 9.53 1.05 1.49 ind:pre:3p; +bourdonner bourdonner ver 2.20 9.53 0.07 1.08 inf; +bourdonné bourdonner ver m s 2.20 9.53 0.01 0.07 par:pas; +bourdons bourdon nom m p 1.28 5.54 0.11 0.81 +bourg bourg nom m s 1.60 15.88 1.48 13.85 +bourgade bourgade nom f s 0.46 3.99 0.44 2.91 +bourgades bourgade nom f p 0.46 3.99 0.02 1.08 +bourge bourge nom s 1.22 0.47 0.90 0.07 +bourgeois bourgeois nom m 6.02 28.65 4.01 23.04 +bourgeoise bourgeois adj f s 6.36 23.45 2.80 7.43 +bourgeoisement bourgeoisement adv 0.00 0.54 0.00 0.54 +bourgeoises bourgeois adj f p 6.36 23.45 0.44 4.19 +bourgeoisie bourgeoisie nom f s 3.65 10.27 3.65 10.14 +bourgeoisies bourgeoisie nom f p 3.65 10.27 0.00 0.14 +bourgeoisisme bourgeoisisme nom m s 0.00 0.07 0.00 0.07 +bourgeon bourgeon nom m s 0.63 2.84 0.47 0.68 +bourgeonnaient bourgeonner ver 0.24 1.22 0.00 0.14 ind:imp:3p; +bourgeonnait bourgeonner ver 0.24 1.22 0.02 0.14 ind:imp:3s; +bourgeonnant bourgeonnant adj m s 0.04 0.41 0.01 0.14 +bourgeonnante bourgeonnant adj f s 0.04 0.41 0.03 0.07 +bourgeonnants bourgeonnant adj m p 0.04 0.41 0.00 0.20 +bourgeonne bourgeonner ver 0.24 1.22 0.03 0.34 ind:pre:1s;ind:pre:3s; +bourgeonnement bourgeonnement nom m s 0.00 0.27 0.00 0.14 +bourgeonnements bourgeonnement nom m p 0.00 0.27 0.00 0.14 +bourgeonnent bourgeonner ver 0.24 1.22 0.14 0.00 ind:pre:3p; +bourgeonner bourgeonner ver 0.24 1.22 0.02 0.34 inf; +bourgeonneraient bourgeonner ver 0.24 1.22 0.00 0.07 cnd:pre:3p; +bourgeonneuse bourgeonneux adj f s 0.00 0.07 0.00 0.07 +bourgeonné bourgeonner ver m s 0.24 1.22 0.02 0.00 par:pas; +bourgeons bourgeon nom m p 0.63 2.84 0.16 2.16 +bourgeron bourgeron nom m s 0.00 1.28 0.00 1.01 +bourgerons bourgeron nom m p 0.00 1.28 0.00 0.27 +bourges bourge nom p 1.22 0.47 0.32 0.41 +bourgmestre bourgmestre nom m s 1.02 1.49 1.01 1.35 +bourgmestres bourgmestre nom m p 1.02 1.49 0.01 0.14 +bourgogne bourgogne nom m s 0.52 1.35 0.51 1.01 +bourgognes bourgogne nom m p 0.52 1.35 0.01 0.34 +bourgs bourg nom m p 1.60 15.88 0.12 2.03 +bourgueil bourgueil nom m s 0.00 0.07 0.00 0.07 +bourgues bourgue nom m p 0.00 0.07 0.00 0.07 +bourguignon bourguignon adj m s 0.29 4.19 0.25 2.30 +bourguignonne bourguignon adj f s 0.29 4.19 0.04 0.54 +bourguignonnes bourguignon adj f p 0.29 4.19 0.01 0.34 +bourguignons bourguignon nom m p 0.01 1.89 0.00 1.08 +bouriates bouriate adj p 0.00 0.07 0.00 0.07 +bouriates bouriate nom p 0.00 0.07 0.00 0.07 +bourlinguant bourlinguer ver 0.37 0.61 0.01 0.14 par:pre; +bourlingue bourlingue nom f s 0.01 0.00 0.01 0.00 +bourlinguer bourlinguer ver 0.37 0.61 0.06 0.07 inf; +bourlinguera bourlinguer ver 0.37 0.61 0.00 0.07 ind:fut:3s; +bourlingueur bourlingueur nom m s 0.02 0.34 0.02 0.27 +bourlingueuses bourlingueur nom f p 0.02 0.34 0.00 0.07 +bourlinguons bourlinguer ver 0.37 0.61 0.00 0.07 ind:pre:1p; +bourlingué bourlinguer ver m s 0.37 0.61 0.29 0.27 par:pas; +bourra bourrer ver 22.37 29.39 0.00 1.01 ind:pas:3s; +bourrache bourrache nom f s 0.01 0.07 0.01 0.07 +bourrade bourrade nom f s 0.00 4.80 0.00 2.70 +bourrades bourrade nom f p 0.00 4.80 0.00 2.09 +bourrage bourrage nom m s 0.15 0.27 0.15 0.20 +bourrages bourrage nom m p 0.15 0.27 0.00 0.07 +bourrai bourrer ver 22.37 29.39 0.00 0.20 ind:pas:1s; +bourraient bourrer ver 22.37 29.39 0.03 0.27 ind:imp:3p; +bourrais bourrer ver 22.37 29.39 0.02 0.14 ind:imp:1s; +bourrait bourrer ver 22.37 29.39 0.40 1.82 ind:imp:3s; +bourrant bourrer ver 22.37 29.39 0.03 0.95 par:pre; +bourrasque bourrasque nom f s 0.77 6.01 0.55 3.92 +bourrasques bourrasque nom f p 0.77 6.01 0.22 2.09 +bourratif bourratif adj m s 0.03 0.20 0.02 0.07 +bourrative bourratif adj f s 0.03 0.20 0.01 0.07 +bourratives bourratif adj f p 0.03 0.20 0.00 0.07 +bourre_mou bourre_mou nom m s 0.01 0.00 0.01 0.00 +bourre_pif bourre_pif nom m s 0.04 0.07 0.04 0.07 +bourre bourre nom s 4.37 6.49 4.24 3.92 +bourreau bourreau nom m s 9.83 12.91 7.28 7.09 +bourreaux bourreau nom m p 9.83 12.91 2.55 5.81 +bourrelet bourrelet nom m s 0.49 6.22 0.06 2.64 +bourrelets bourrelet nom m p 0.49 6.22 0.43 3.58 +bourrelier bourrelier nom m s 0.00 0.88 0.00 0.81 +bourreliers bourrelier nom m p 0.00 0.88 0.00 0.07 +bourrellerie bourrellerie nom f s 0.00 0.27 0.00 0.27 +bourrelé bourreler ver m s 0.00 0.41 0.00 0.27 par:pas; +bourrelée bourreler ver f s 0.00 0.41 0.00 0.07 par:pas; +bourrelés bourreler ver m p 0.00 0.41 0.00 0.07 par:pas; +bourrent bourrer ver 22.37 29.39 0.11 0.54 ind:pre:3p; +bourrer bourrer ver 22.37 29.39 3.48 3.72 inf; +bourrera bourrer ver 22.37 29.39 0.02 0.07 ind:fut:3s; +bourrerai bourrer ver 22.37 29.39 0.02 0.00 ind:fut:1s; +bourres bourrer ver 22.37 29.39 0.33 0.14 ind:pre:2s;sub:pre:2s; +bourreur bourreur nom m s 0.00 0.14 0.00 0.14 +bourrez bourrer ver 22.37 29.39 0.24 0.07 imp:pre:2p;ind:pre:2p; +bourriche bourriche nom f s 0.04 0.68 0.04 0.14 +bourriches bourriche nom f p 0.04 0.68 0.00 0.54 +bourrichon bourrichon nom m s 0.40 0.20 0.40 0.20 +bourricot bourricot nom m s 0.52 1.08 0.49 0.34 +bourricots bourricot nom m p 0.52 1.08 0.03 0.74 +bourrier bourrier nom m 0.00 0.34 0.00 0.34 +bourrin bourrin nom m s 0.56 1.62 0.53 1.08 +bourrine bourrine nom f s 0.01 0.00 0.01 0.00 +bourrins bourrin nom m p 0.56 1.62 0.04 0.54 +bourriquait bourriquer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +bourrique bourrique nom f s 1.97 2.97 1.90 2.09 +bourriques bourrique nom f p 1.97 2.97 0.07 0.88 +bourriquet bourriquet nom m s 0.16 0.14 0.16 0.07 +bourriquets bourriquet nom m p 0.16 0.14 0.00 0.07 +bourrons bourrer ver 22.37 29.39 0.02 0.00 imp:pre:1p;ind:pre:1p; +bourrèrent bourrer ver 22.37 29.39 0.00 0.14 ind:pas:3p; +bourré bourrer ver m s 22.37 29.39 11.14 10.41 par:pas; +bourru bourru adj m s 0.34 5.20 0.28 3.51 +bourrée bourrer ver f s 22.37 29.39 2.65 2.57 par:pas; +bourrue bourru adj f s 0.34 5.20 0.02 1.35 +bourrées bourrer ver f p 22.37 29.39 0.26 2.03 par:pas; +bourrues bourru adj f p 0.34 5.20 0.02 0.20 +bourrés bourrer ver m p 22.37 29.39 1.57 3.58 par:pas; +bourrus bourru adj m p 0.34 5.20 0.03 0.14 +bourse bourse nom f s 19.66 13.18 17.48 11.22 +bourses bourse nom f p 19.66 13.18 2.18 1.96 +boursicot boursicot nom m s 0.00 0.07 0.00 0.07 +boursicotage boursicotage nom m s 0.00 0.07 0.00 0.07 +boursicoteur boursicoteur nom m s 0.04 0.14 0.01 0.14 +boursicoteurs boursicoteur nom m p 0.04 0.14 0.03 0.00 +boursier boursier adj m s 0.73 0.74 0.39 0.20 +boursiers boursier adj m p 0.73 0.74 0.13 0.07 +boursière boursier adj f s 0.73 0.74 0.15 0.14 +boursières boursier adj f p 0.73 0.74 0.07 0.34 +boursouflaient boursoufler ver 0.04 3.04 0.00 0.14 ind:imp:3p; +boursouflait boursoufler ver 0.04 3.04 0.00 0.34 ind:imp:3s; +boursoufle boursoufler ver 0.04 3.04 0.01 0.47 ind:pre:3s; +boursouflement boursouflement nom m s 0.00 0.07 0.00 0.07 +boursoufler boursoufler ver 0.04 3.04 0.01 0.20 inf; +boursouflé boursouflé adj m s 0.25 3.31 0.19 1.22 +boursouflée boursouflé adj f s 0.25 3.31 0.03 0.88 +boursouflées boursouflé adj f p 0.25 3.31 0.04 0.41 +boursouflure boursouflure nom f s 0.06 1.82 0.02 0.81 +boursouflures boursouflure nom f p 0.06 1.82 0.03 1.01 +boursouflés boursouflé adj m p 0.25 3.31 0.00 0.81 +bous bouillir ver 7.62 13.58 0.60 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +bousards bousard nom m p 0.00 0.07 0.00 0.07 +bousbir bousbir nom m s 0.00 0.54 0.00 0.41 +bousbirs bousbir nom m p 0.00 0.54 0.00 0.14 +bouscula bousculer ver 8.63 34.46 0.00 2.36 ind:pas:3s; +bousculade bousculade nom f s 0.90 6.28 0.86 5.34 +bousculades bousculade nom f p 0.90 6.28 0.03 0.95 +bousculai bousculer ver 8.63 34.46 0.00 0.20 ind:pas:1s; +bousculaient bousculer ver 8.63 34.46 0.05 3.65 ind:imp:3p; +bousculait bousculer ver 8.63 34.46 0.12 3.24 ind:imp:3s; +bousculant bousculer ver 8.63 34.46 0.04 4.53 par:pre; +bouscule bousculer ver 8.63 34.46 2.44 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bousculent bousculer ver 8.63 34.46 0.50 2.36 ind:pre:3p; +bousculer bousculer ver 8.63 34.46 2.17 5.07 inf; +bousculera bousculer ver 8.63 34.46 0.16 0.00 ind:fut:3s; +bousculerait bousculer ver 8.63 34.46 0.03 0.00 cnd:pre:3s; +bousculerons bousculer ver 8.63 34.46 0.00 0.07 ind:fut:1p; +bousculeront bousculer ver 8.63 34.46 0.04 0.14 ind:fut:3p; +bousculez bousculer ver 8.63 34.46 0.47 0.14 imp:pre:2p;ind:pre:2p; +bousculons bousculer ver 8.63 34.46 0.00 0.07 imp:pre:1p; +bousculât bousculer ver 8.63 34.46 0.00 0.07 sub:imp:3s; +bousculèrent bousculer ver 8.63 34.46 0.00 0.88 ind:pas:3p; +bousculé bousculer ver m s 8.63 34.46 2.01 4.19 par:pas; +bousculée bousculer ver f s 8.63 34.46 0.46 1.49 par:pas; +bousculées bousculer ver f p 8.63 34.46 0.01 0.20 par:pas; +bousculés bousculer ver m p 8.63 34.46 0.13 1.69 par:pas; +bouse bouse nom f s 1.93 5.14 1.71 3.72 +bouses bouse nom f p 1.93 5.14 0.22 1.42 +bouseuse bouseux nom f s 2.44 1.22 0.16 0.07 +bouseux bouseux nom m 2.44 1.22 2.29 1.15 +bousier bousier nom m s 0.06 0.34 0.03 0.14 +bousiers bousier nom m p 0.06 0.34 0.03 0.20 +bousillage bousillage nom m s 0.15 0.27 0.15 0.20 +bousillages bousillage nom m p 0.15 0.27 0.00 0.07 +bousillaient bousiller ver 12.91 3.24 0.00 0.07 ind:imp:3p; +bousillais bousiller ver 12.91 3.24 0.01 0.07 ind:imp:1s;ind:imp:2s; +bousillait bousiller ver 12.91 3.24 0.03 0.07 ind:imp:3s; +bousillant bousiller ver 12.91 3.24 0.02 0.27 par:pre; +bousille bousiller ver 12.91 3.24 2.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bousillent bousiller ver 12.91 3.24 0.20 0.00 ind:pre:3p; +bousiller bousiller ver 12.91 3.24 4.05 1.15 inf; +bousillera bousiller ver 12.91 3.24 0.19 0.00 ind:fut:3s; +bousillerai bousiller ver 12.91 3.24 0.07 0.00 ind:fut:1s; +bousillerait bousiller ver 12.91 3.24 0.01 0.00 cnd:pre:3s; +bousilleras bousiller ver 12.91 3.24 0.01 0.00 ind:fut:2s; +bousilleront bousiller ver 12.91 3.24 0.01 0.00 ind:fut:3p; +bousilles bousiller ver 12.91 3.24 0.70 0.07 ind:pre:2s; +bousilleur bousilleur nom m s 0.03 0.00 0.03 0.00 +bousillez bousiller ver 12.91 3.24 0.42 0.07 imp:pre:2p;ind:pre:2p; +bousilliez bousiller ver 12.91 3.24 0.02 0.00 ind:imp:2p; +bousillons bousiller ver 12.91 3.24 0.03 0.00 imp:pre:1p; +bousillé bousiller ver m s 12.91 3.24 4.00 0.74 par:pas; +bousillée bousiller ver f s 12.91 3.24 0.52 0.34 par:pas; +bousillées bousiller ver f p 12.91 3.24 0.16 0.07 par:pas; +bousillés bousiller ver m p 12.91 3.24 0.11 0.20 par:pas; +bousin bousin nom m s 0.00 0.14 0.00 0.07 +bousine bousine nom f s 0.00 0.14 0.00 0.14 +bousins bousin nom m p 0.00 0.14 0.00 0.07 +boussole boussole nom f s 2.91 4.66 2.71 4.05 +boussoles boussole nom f p 2.91 4.66 0.20 0.61 +boustifaille boustifaille nom f s 0.23 0.81 0.23 0.74 +boustifailles boustifaille nom f p 0.23 0.81 0.00 0.07 +boustifailleuse boustifailleur nom f s 0.00 0.07 0.00 0.07 +boustrophédon boustrophédon nom m s 0.00 0.20 0.00 0.20 +bout_dehors bout_dehors nom m 0.00 0.20 0.00 0.20 +bout_rimé bout_rimé nom m s 0.14 0.07 0.14 0.00 +bout bout nom m s 128.33 398.11 121.12 375.68 +bouta bouter ver 0.47 1.55 0.00 0.14 ind:pas:3s; +boutade boutade nom f s 0.25 1.49 0.19 1.35 +boutades boutade nom f p 0.25 1.49 0.06 0.14 +boutanche boutanche nom f s 0.17 2.16 0.16 1.42 +boutanches boutanche nom f p 0.17 2.16 0.01 0.74 +boutargue boutargue nom f s 0.00 0.07 0.00 0.07 +boutasse bouter ver 0.47 1.55 0.00 0.54 sub:imp:1s; +boute_en_train boute_en_train nom m 0.39 0.74 0.39 0.74 +boute bouter ver 0.47 1.55 0.03 0.27 ind:pre:3s; +boutefeu boutefeu nom s 0.02 0.41 0.02 0.41 +boutefeux boutefeux nom p 0.00 0.20 0.00 0.20 +bouteille bouteille nom f s 57.24 104.05 42.31 70.41 +bouteilles bouteille nom f p 57.24 104.05 14.92 33.65 +bouteillon bouteillon nom m s 0.00 0.68 0.00 0.47 +bouteillons bouteillon nom m p 0.00 0.68 0.00 0.20 +bouter bouter ver 0.47 1.55 0.16 0.20 inf; +bouterais bouter ver 0.47 1.55 0.00 0.07 cnd:pre:1s; +bouteur bouteur nom m s 0.02 0.07 0.02 0.00 +bouteurs bouteur nom m p 0.02 0.07 0.00 0.07 +bouthéon bouthéon nom m s 0.00 1.15 0.00 0.68 +bouthéons bouthéon nom m p 0.00 1.15 0.00 0.47 +boutillier boutillier nom m s 0.00 0.14 0.00 0.14 +boutique_cadeaux boutique_cadeaux nom f s 0.02 0.00 0.02 0.00 +boutique boutique nom f s 26.53 48.92 22.29 36.01 +boutiquer boutiquer ver 0.00 0.14 0.00 0.07 inf; +boutiques boutique nom f p 26.53 48.92 4.24 12.91 +boutiquier boutiquier adj m s 0.14 0.61 0.14 0.41 +boutiquiers boutiquier nom m p 0.18 1.76 0.04 1.15 +boutiquière boutiquier nom f s 0.18 1.76 0.00 0.20 +boutiquières boutiquier nom f p 0.18 1.76 0.00 0.07 +boutiqué boutiquer ver m s 0.00 0.14 0.00 0.07 par:pas; +boutisses boutisse nom f p 0.00 0.07 0.00 0.07 +boutoir boutoir nom m s 0.00 2.23 0.00 2.23 +bouton_d_or bouton_d_or nom m s 0.01 0.20 0.00 0.14 +bouton_pression bouton_pression nom m s 0.04 0.14 0.02 0.07 +bouton bouton nom m s 32.44 44.46 21.29 21.55 +boutonna boutonner ver 2.17 6.22 0.00 0.41 ind:pas:3s; +boutonnage boutonnage nom m s 0.00 0.34 0.00 0.34 +boutonnaient boutonner ver 2.17 6.22 0.00 0.07 ind:imp:3p; +boutonnais boutonner ver 2.17 6.22 0.01 0.07 ind:imp:1s;ind:imp:2s; +boutonnait boutonner ver 2.17 6.22 0.00 0.41 ind:imp:3s; +boutonnant boutonner ver 2.17 6.22 0.01 0.34 par:pre; +boutonne boutonner ver 2.17 6.22 0.98 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boutonnent boutonner ver 2.17 6.22 0.01 0.20 ind:pre:3p; +boutonner boutonner ver 2.17 6.22 0.72 1.35 inf; +boutonnerait boutonner ver 2.17 6.22 0.00 0.07 cnd:pre:3s; +boutonnes boutonner ver 2.17 6.22 0.03 0.00 ind:pre:2s; +boutonneuse boutonneux adj f s 0.59 1.76 0.03 0.14 +boutonneuses boutonneux adj f p 0.59 1.76 0.01 0.07 +boutonneux boutonneux adj m 0.59 1.76 0.55 1.55 +boutonnez boutonner ver 2.17 6.22 0.23 0.00 imp:pre:2p; +boutonnière boutonnière nom f s 0.73 3.65 0.45 3.18 +boutonnières boutonnière nom f p 0.73 3.65 0.28 0.47 +boutonné boutonner ver m s 2.17 6.22 0.07 0.81 par:pas; +boutonnée boutonner ver f s 2.17 6.22 0.11 0.95 par:pas; +boutonnées boutonner ver f p 2.17 6.22 0.00 0.34 par:pas; +boutonnés boutonner ver m p 2.17 6.22 0.01 0.27 par:pas; +bouton_d_or bouton_d_or nom m p 0.01 0.20 0.01 0.07 +bouton_pression bouton_pression nom m p 0.04 0.14 0.02 0.07 +boutons bouton nom m p 32.44 44.46 11.16 22.91 +boutre boutre nom m s 0.00 0.81 0.00 0.68 +boutres boutre nom m p 0.00 0.81 0.00 0.14 +bout_rimé bout_rimé nom m p 0.14 0.07 0.00 0.07 +bouts bout nom m p 128.33 398.11 7.21 22.43 +boëttes boëtte nom f p 0.00 0.07 0.00 0.07 +bouté bouter ver m s 0.47 1.55 0.14 0.00 par:pas; +boutée bouter ver f s 0.47 1.55 0.00 0.07 par:pas; +boutées bouter ver f p 0.47 1.55 0.00 0.07 par:pas; +bouture bouture nom f s 0.07 0.47 0.03 0.14 +boutures bouture nom f p 0.07 0.47 0.04 0.34 +boutés bouter ver m p 0.47 1.55 0.14 0.14 par:pas; +bouée bouée nom f s 2.04 5.47 1.30 4.59 +bouées bouée nom f p 2.04 5.47 0.73 0.88 +bouvet bouvet nom m s 0.00 0.07 0.00 0.07 +bouvier bouvier nom m s 0.15 1.01 0.12 0.68 +bouviers bouvier nom m p 0.15 1.01 0.03 0.34 +bouvillon bouvillon nom m s 0.04 0.20 0.04 0.20 +bouvreuil bouvreuil nom m s 0.04 0.27 0.01 0.07 +bouvreuils bouvreuil nom m p 0.04 0.27 0.03 0.20 +bouzine bouzine nom f s 0.00 0.27 0.00 0.27 +bouzouki bouzouki nom m s 0.21 0.47 0.21 0.47 +bouzy bouzy nom m 0.00 0.07 0.00 0.07 +bovidé bovidé nom m s 0.01 0.68 0.01 0.14 +bovidés bovidé nom m p 0.01 0.68 0.00 0.54 +bovin bovin adj m s 0.28 1.49 0.09 0.47 +bovine bovin adj f s 0.28 1.49 0.10 0.68 +bovines bovin adj f p 0.28 1.49 0.03 0.07 +bovins bovin nom m p 0.23 1.49 0.17 1.22 +bow_window bow_window nom m s 0.00 0.54 0.00 0.27 +bow_window bow_window nom m p 0.00 0.54 0.00 0.27 +bowling bowling nom m s 0.00 1.08 0.00 1.08 +box_calf box_calf nom m s 0.00 0.27 0.00 0.27 +box_office box_office nom m s 0.35 0.20 0.35 0.14 +box_office box_office nom m p 0.35 0.20 0.00 0.07 +box box nom m 2.48 4.05 2.48 4.05 +boxa boxer ver 5.78 2.84 0.01 0.20 ind:pas:3s; +boxaient boxer ver 5.78 2.84 0.00 0.14 ind:imp:3p; +boxais boxer ver 5.78 2.84 0.29 0.00 ind:imp:1s;ind:imp:2s; +boxait boxer ver 5.78 2.84 0.08 0.27 ind:imp:3s; +boxant boxer ver 5.78 2.84 0.05 0.07 par:pre; +boxe boxe nom f s 9.32 8.58 9.20 7.64 +boxent boxer ver 5.78 2.84 0.01 0.00 ind:pre:3p; +boxer_short boxer_short nom m s 0.05 0.07 0.05 0.07 +boxer boxer ver 5.78 2.84 3.14 1.28 inf; +boxerai boxer ver 5.78 2.84 0.06 0.00 ind:fut:1s; +boxerais boxer ver 5.78 2.84 0.04 0.00 cnd:pre:1s; +boxerez boxer ver 5.78 2.84 0.02 0.00 ind:fut:2p; +boxers boxer nom m p 0.75 0.34 0.13 0.14 +boxes boxer ver 5.78 2.84 0.62 0.14 ind:pre:2s; +boxeur boxeur nom m s 8.71 7.97 6.32 6.15 +boxeurs boxeur nom m p 8.71 7.97 2.04 1.82 +boxeuse boxeur nom f s 8.71 7.97 0.35 0.00 +boxez boxer ver 5.78 2.84 0.41 0.07 imp:pre:2p;ind:pre:2p; +boxon boxon nom m s 0.62 1.01 0.60 0.74 +boxons boxon nom m p 0.62 1.01 0.02 0.27 +boxé boxer ver m s 5.78 2.84 0.41 0.34 par:pas; +boxés boxer ver m p 5.78 2.84 0.00 0.07 par:pas; +boy_friend boy_friend nom m s 0.00 0.14 0.00 0.14 +boy_scout boy_scout nom m s 2.09 1.62 0.86 0.68 +boy_scoutesque boy_scoutesque adj f s 0.00 0.07 0.00 0.07 +boy_scout boy_scout nom m p 2.09 1.62 1.22 0.95 +boy boy nom m s 12.82 8.51 8.36 6.42 +boyard boyard nom m s 3.96 0.88 1.72 0.54 +boyards boyard nom m p 3.96 0.88 2.24 0.34 +boyau boyau nom m s 2.86 13.58 0.19 8.24 +boyauter boyauter ver 0.00 0.07 0.00 0.07 inf; +boyaux boyau nom m p 2.86 13.58 2.67 5.34 +boycott boycott nom m s 0.64 0.00 0.64 0.00 +boycotte boycotter ver 0.67 0.14 0.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boycottent boycotter ver 0.67 0.14 0.17 0.00 ind:pre:3p; +boycotter boycotter ver 0.67 0.14 0.32 0.07 inf; +boycotterai boycotter ver 0.67 0.14 0.01 0.00 ind:fut:1s; +boycotteront boycotter ver 0.67 0.14 0.00 0.07 ind:fut:3p; +boycottes boycotter ver 0.67 0.14 0.01 0.00 ind:pre:2s; +boycottez boycotter ver 0.67 0.14 0.04 0.00 imp:pre:2p; +boycotté boycotter ver m s 0.67 0.14 0.02 0.00 par:pas; +boys boy nom m p 12.82 8.51 4.46 2.09 +bozo bozo nom m s 0.25 0.00 0.25 0.00 +brûla brûler ver 110.28 104.73 0.76 2.77 ind:pas:3s; +brûlage brûlage nom m s 0.10 0.20 0.10 0.20 +brûlai brûler ver 110.28 104.73 0.01 0.27 ind:pas:1s; +brûlaient brûler ver 110.28 104.73 0.97 7.03 ind:imp:3p; +brûlais brûler ver 110.28 104.73 0.50 1.28 ind:imp:1s;ind:imp:2s; +brûlait brûler ver 110.28 104.73 2.69 18.72 ind:imp:3s; +brûlant brûlant adj m s 10.48 36.28 4.48 15.68 +brûlante brûlant adj f s 10.48 36.28 3.75 10.74 +brûlantes brûlant adj f p 10.48 36.28 1.20 4.73 +brûlants brûlant adj m p 10.48 36.28 1.06 5.14 +brûlasse brûler ver 110.28 104.73 0.00 0.07 sub:imp:1s; +brûlassent brûler ver 110.28 104.73 0.00 0.07 sub:imp:3p; +brûle_gueule brûle_gueule nom m s 0.00 0.41 0.00 0.41 +brûle brûler ver 110.28 104.73 33.66 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +brûlent brûler ver 110.28 104.73 5.41 4.73 ind:pre:3p; +brûler brûler ver 110.28 104.73 23.14 21.15 inf;; +brûlera brûler ver 110.28 104.73 1.75 0.47 ind:fut:3s; +brûlerai brûler ver 110.28 104.73 1.17 0.41 ind:fut:1s; +brûleraient brûler ver 110.28 104.73 0.05 0.20 cnd:pre:3p; +brûlerais brûler ver 110.28 104.73 0.34 0.20 cnd:pre:1s;cnd:pre:2s; +brûlerait brûler ver 110.28 104.73 0.38 1.08 cnd:pre:3s; +brûleras brûler ver 110.28 104.73 0.37 0.07 ind:fut:2s; +brûlerez brûler ver 110.28 104.73 0.18 0.00 ind:fut:2p; +brûlerons brûler ver 110.28 104.73 0.23 0.20 ind:fut:1p; +brûleront brûler ver 110.28 104.73 1.51 0.41 ind:fut:3p; +brûles brûler ver 110.28 104.73 1.57 0.41 ind:pre:2s;sub:pre:2s; +brûleur brûleur nom m s 0.37 0.34 0.12 0.14 +brûleurs brûleur nom m p 0.37 0.34 0.23 0.20 +brûleuse brûleur nom f s 0.37 0.34 0.01 0.00 +brûlez brûler ver 110.28 104.73 4.89 0.61 imp:pre:2p;ind:pre:2p; +brûliez brûler ver 110.28 104.73 0.05 0.00 ind:imp:2p; +brûlions brûler ver 110.28 104.73 0.06 0.07 ind:imp:1p; +brûlis brûlis nom m 0.11 0.34 0.11 0.34 +brûloirs brûloir nom m p 0.00 0.07 0.00 0.07 +brûlons brûler ver 110.28 104.73 1.45 0.27 imp:pre:1p;ind:pre:1p; +brûlât brûler ver 110.28 104.73 0.00 0.41 sub:imp:3s; +brûlot brûlot nom m s 0.14 1.35 0.01 0.74 +brûlots brûlot nom m p 0.14 1.35 0.14 0.61 +brûlèrent brûler ver 110.28 104.73 0.11 0.54 ind:pas:3p; +brûlé brûler ver m s 110.28 104.73 20.41 11.42 par:pas;par:pas;par:pas; +brûlée brûler ver f s 110.28 104.73 3.57 3.51 par:pas; +brûlées brûler ver f p 110.28 104.73 1.11 1.96 par:pas; +brûlure brûlure nom f s 6.47 12.50 2.31 9.19 +brûlures brûlure nom f p 6.47 12.50 4.16 3.31 +brûlés brûler ver m p 110.28 104.73 2.33 3.18 par:pas; +brabant brabant nom m s 0.20 0.00 0.20 0.00 +brabançon brabançon adj m s 0.00 0.27 0.00 0.20 +brabançonne brabançon adj f s 0.00 0.27 0.00 0.07 +brabançons brabançon nom m p 0.00 0.07 0.00 0.07 +bracelet_montre bracelet_montre nom m s 0.00 2.70 0.00 1.76 +bracelet bracelet nom m s 13.45 9.53 9.81 5.74 +bracelet_montre bracelet_montre nom m p 0.00 2.70 0.00 0.95 +bracelets bracelet nom m p 13.45 9.53 3.63 3.78 +brachial brachial adj m s 0.19 0.00 0.12 0.00 +brachiale brachial adj f s 0.19 0.00 0.07 0.00 +brachiocéphalique brachiocéphalique adj m s 0.01 0.00 0.01 0.00 +brachiosaure brachiosaure nom m s 0.02 0.00 0.02 0.00 +brachycéphale brachycéphale nom s 0.00 0.07 0.00 0.07 +brachycéphales brachycéphale adj m p 0.00 0.14 0.00 0.14 +braco braco nom m s 0.00 0.20 0.00 0.20 +braconnage braconnage nom m s 0.28 0.61 0.27 0.54 +braconnages braconnage nom m p 0.28 0.61 0.01 0.07 +braconnais braconner ver 0.18 0.95 0.01 0.07 ind:imp:1s; +braconnait braconner ver 0.18 0.95 0.01 0.07 ind:imp:3s; +braconnant braconner ver 0.18 0.95 0.01 0.14 par:pre; +braconne braconner ver 0.18 0.95 0.02 0.14 imp:pre:2s;ind:pre:3s; +braconner braconner ver 0.18 0.95 0.08 0.47 inf; +braconnez braconner ver 0.18 0.95 0.02 0.07 ind:pre:2p; +braconnier braconnier nom m s 0.85 2.77 0.48 2.03 +braconniers braconnier nom m p 0.85 2.77 0.36 0.61 +braconnière braconnier nom f s 0.85 2.77 0.01 0.07 +braconnières braconnier nom f p 0.85 2.77 0.00 0.07 +braconné braconner ver m s 0.18 0.95 0.02 0.00 par:pas; +bractées bractée nom f p 0.00 0.20 0.00 0.20 +bradaient brader ver 0.98 1.22 0.00 0.07 ind:imp:3p; +bradait brader ver 0.98 1.22 0.01 0.00 ind:imp:3s; +brade brader ver 0.98 1.22 0.26 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bradent brader ver 0.98 1.22 0.01 0.14 ind:pre:3p; +brader brader ver 0.98 1.22 0.48 0.20 inf; +braderai brader ver 0.98 1.22 0.10 0.00 ind:fut:1s; +braderais brader ver 0.98 1.22 0.01 0.00 cnd:pre:1s; +braderait brader ver 0.98 1.22 0.01 0.00 cnd:pre:3s; +braderie braderie nom f s 0.31 0.14 0.31 0.07 +braderies braderie nom f p 0.31 0.14 0.00 0.07 +bradillon bradillon nom m s 0.00 0.20 0.00 0.07 +bradillons bradillon nom m p 0.00 0.20 0.00 0.14 +bradons brader ver 0.98 1.22 0.00 0.07 imp:pre:1p; +bradé brader ver m s 0.98 1.22 0.07 0.41 par:pas; +bradée brader ver f s 0.98 1.22 0.03 0.14 par:pas; +bradycardie bradycardie nom f s 0.17 0.00 0.17 0.00 +bragard bragard nom m s 0.00 0.07 0.00 0.07 +braguette braguette nom f s 3.96 6.69 3.85 5.95 +braguettes braguette nom f p 3.96 6.69 0.11 0.74 +brahmane brahmane nom m s 0.02 0.47 0.00 0.20 +brahmanes brahmane nom m p 0.02 0.47 0.02 0.27 +brahmanique brahmanique adj m s 0.00 0.07 0.00 0.07 +brahmanisme brahmanisme nom m s 0.02 0.07 0.02 0.07 +brahmanistes brahmaniste adj m p 0.00 0.07 0.00 0.07 +brahmanistes brahmaniste nom p 0.00 0.07 0.00 0.07 +brai brai nom m s 0.02 0.00 0.01 0.00 +braie brayer ver 0.01 0.34 0.01 0.14 ind:pre:3s; +braiement braiement nom m s 0.01 0.07 0.01 0.00 +braiements braiement nom m p 0.01 0.07 0.00 0.07 +braies braie nom f p 0.03 0.81 0.03 0.81 +brailla brailler ver 2.90 14.53 0.00 1.42 ind:pas:3s; +braillaient brailler ver 2.90 14.53 0.00 0.95 ind:imp:3p; +braillait brailler ver 2.90 14.53 0.16 1.96 ind:imp:3s; +braillant brailler ver 2.90 14.53 0.11 1.96 par:pre; +braillard braillard adj m s 0.21 2.16 0.10 0.20 +braillarde braillard adj f s 0.21 2.16 0.04 0.14 +braillardes braillard adj f p 0.21 2.16 0.01 0.07 +braillards braillard adj m p 0.21 2.16 0.07 1.76 +braille braille nom m s 0.55 0.47 0.55 0.47 +braillement braillement nom m s 0.01 0.54 0.01 0.14 +braillements braillement nom m p 0.01 0.54 0.00 0.41 +braillent brailler ver 2.90 14.53 0.15 0.74 ind:pre:3p; +brailler brailler ver 2.90 14.53 1.62 3.18 inf; +braillera brailler ver 2.90 14.53 0.14 0.00 ind:fut:3s; +braillerai brailler ver 2.90 14.53 0.16 0.00 ind:fut:1s; +brailles brailler ver 2.90 14.53 0.06 0.07 ind:pre:2s; +brailleur brailleur adj m s 0.01 0.07 0.01 0.00 +brailleur brailleur nom m s 0.03 0.07 0.01 0.00 +brailleurs brailleur nom m p 0.03 0.07 0.01 0.07 +brailleuse brailleur nom f s 0.03 0.07 0.01 0.00 +braillez brailler ver 2.90 14.53 0.15 0.00 imp:pre:2p;ind:pre:2p; +braillèrent brailler ver 2.90 14.53 0.00 0.27 ind:pas:3p; +braillé brailler ver m s 2.90 14.53 0.07 1.15 par:pas; +braillée brailler ver f s 2.90 14.53 0.00 0.07 par:pas; +braillés brailler ver m p 2.90 14.53 0.00 0.07 par:pas; +braiment braiment nom m s 7.91 0.34 2.69 0.27 +braiments braiment nom m p 7.91 0.34 5.22 0.07 +brain_trust brain_trust nom m s 0.03 0.07 0.03 0.07 +brainstorming brainstorming nom m s 0.04 0.00 0.04 0.00 +braire braire ver 0.37 0.61 0.34 0.61 inf; +brais brai nom m p 0.02 0.00 0.01 0.00 +braise braise nom f s 2.04 12.23 1.12 5.88 +braiser braiser ver 0.08 0.27 0.04 0.00 inf; +braises braise nom f p 2.04 12.23 0.93 6.35 +braisillant braisillant adj m s 0.00 0.14 0.00 0.07 +braisillante braisillant adj f s 0.00 0.14 0.00 0.07 +braisé braisé adj m s 0.42 0.20 0.28 0.07 +braisée braisé adj f s 0.42 0.20 0.14 0.07 +braisés braisé adj m p 0.42 0.20 0.01 0.07 +brait braire ver 0.37 0.61 0.03 0.00 ind:pre:3s; +brama bramer ver 0.12 4.26 0.00 0.54 ind:pas:3s; +bramaient bramer ver 0.12 4.26 0.00 0.14 ind:imp:3p; +bramait bramer ver 0.12 4.26 0.00 0.54 ind:imp:3s; +bramant bramer ver 0.12 4.26 0.00 0.34 par:pre; +brame brame nom m s 0.01 3.58 0.01 3.24 +bramement bramement nom m s 0.11 0.20 0.10 0.14 +bramements bramement nom m p 0.11 0.20 0.01 0.07 +brament bramer ver 0.12 4.26 0.00 0.07 ind:pre:3p; +bramer bramer ver 0.12 4.26 0.01 1.28 inf; +brames bramer ver 0.12 4.26 0.10 0.00 ind:pre:2s; +bramé bramer ver m s 0.12 4.26 0.00 0.81 par:pas; +bramées bramer ver f p 0.12 4.26 0.00 0.07 par:pas; +bran bran nom m s 0.16 0.07 0.16 0.07 +brancard brancard nom m s 2.47 7.30 1.97 3.11 +brancarder brancarder ver 0.01 0.00 0.01 0.00 inf; +brancardier brancardier nom m s 1.42 3.92 0.55 0.54 +brancardiers brancardier nom m p 1.42 3.92 0.86 3.38 +brancards brancard nom m p 2.47 7.30 0.51 4.19 +brancha brancher ver 20.34 8.04 0.01 0.27 ind:pas:3s; +branchage branchage nom m s 0.41 4.46 0.00 0.81 +branchages branchage nom m p 0.41 4.46 0.41 3.65 +branchai brancher ver 20.34 8.04 0.00 0.14 ind:pas:1s; +branchaient brancher ver 20.34 8.04 0.02 0.20 ind:imp:3p; +branchais brancher ver 20.34 8.04 0.05 0.07 ind:imp:1s; +branchait brancher ver 20.34 8.04 0.23 0.54 ind:imp:3s; +branchant brancher ver 20.34 8.04 0.06 0.07 par:pre; +branche branche nom f s 18.07 85.61 11.85 24.12 +branchement branchement nom m s 0.52 0.27 0.33 0.20 +branchements branchement nom m p 0.52 0.27 0.20 0.07 +branchent brancher ver 20.34 8.04 0.30 0.00 ind:pre:3p; +brancher brancher ver 20.34 8.04 4.40 1.55 inf; +branchera brancher ver 20.34 8.04 0.04 0.00 ind:fut:3s; +brancheraient brancher ver 20.34 8.04 0.00 0.07 cnd:pre:3p; +brancherait brancher ver 20.34 8.04 0.39 0.00 cnd:pre:3s; +brancheras brancher ver 20.34 8.04 0.01 0.00 ind:fut:2s; +brancherez brancher ver 20.34 8.04 0.01 0.07 ind:fut:2p; +branches branche nom f p 18.07 85.61 6.22 61.49 +branchette branchette nom f s 0.16 2.30 0.16 0.54 +branchettes branchette nom f p 0.16 2.30 0.00 1.76 +branchez brancher ver 20.34 8.04 1.44 0.00 imp:pre:2p;ind:pre:2p; +branchiale branchial adj f s 0.03 0.00 0.03 0.00 +branchie branchie nom f s 0.50 0.20 0.03 0.00 +branchies branchie nom f p 0.50 0.20 0.47 0.20 +branchons brancher ver 20.34 8.04 0.06 0.07 imp:pre:1p;ind:pre:1p; +branché brancher ver m s 20.34 8.04 4.72 1.96 par:pas; +branchu branchu adj m s 0.01 0.27 0.00 0.07 +branchée brancher ver f s 20.34 8.04 1.23 0.88 par:pas; +branchue branchu adj f s 0.01 0.27 0.00 0.07 +branchées branché adj f p 4.64 1.42 0.17 0.00 +branchés branché adj m p 4.64 1.42 0.83 0.34 +branchus branchu adj m p 0.01 0.27 0.01 0.14 +brand brand nom m s 0.02 0.14 0.02 0.00 +brandît brandir ver 5.40 22.09 0.00 0.07 sub:imp:3s; +brandade brandade nom f s 0.14 0.14 0.14 0.14 +brande brand nom f s 0.02 0.14 0.00 0.14 +brandebourgeois brandebourgeois adj m s 0.11 0.14 0.11 0.14 +brandebourgs brandebourg nom m p 0.00 1.15 0.00 1.15 +brandevin brandevin nom m s 0.01 0.00 0.01 0.00 +brandevinier brandevinier nom m s 0.00 0.41 0.00 0.41 +brandi brandir ver m s 5.40 22.09 1.08 2.16 par:pas; +brandie brandir ver f s 5.40 22.09 0.27 0.54 par:pas; +brandies brandir ver f p 5.40 22.09 0.03 0.54 par:pas; +brandillon brandillon nom m s 0.00 0.61 0.00 0.34 +brandillons brandillon nom m p 0.00 0.61 0.00 0.27 +brandir brandir ver 5.40 22.09 1.01 1.42 inf; +brandira brandir ver 5.40 22.09 0.27 0.07 ind:fut:3s; +brandirait brandir ver 5.40 22.09 0.00 0.07 cnd:pre:3s; +brandirent brandir ver 5.40 22.09 0.00 0.14 ind:pas:3p; +brandiront brandir ver 5.40 22.09 0.14 0.07 ind:fut:3p; +brandis brandir ver m p 5.40 22.09 0.36 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +brandissaient brandir ver 5.40 22.09 0.01 0.88 ind:imp:3p; +brandissais brandir ver 5.40 22.09 0.05 0.34 ind:imp:1s;ind:imp:2s; +brandissait brandir ver 5.40 22.09 0.07 3.18 ind:imp:3s; +brandissant brandir ver 5.40 22.09 0.84 5.54 par:pre; +brandisse brandir ver 5.40 22.09 0.01 0.14 sub:pre:3s; +brandissent brandir ver 5.40 22.09 0.47 0.68 ind:pre:3p; +brandissez brandir ver 5.40 22.09 0.28 0.07 imp:pre:2p;ind:pre:2p; +brandissiez brandir ver 5.40 22.09 0.01 0.00 ind:imp:2p; +brandissions brandir ver 5.40 22.09 0.00 0.07 ind:imp:1p; +brandissons brandir ver 5.40 22.09 0.01 0.07 imp:pre:1p; +brandit brandir ver 5.40 22.09 0.49 5.34 ind:pre:3s;ind:pas:3s; +brandon brandon nom m s 0.12 0.81 0.02 0.68 +brandons brandon nom m p 0.12 0.81 0.10 0.14 +brandouille brandouiller ver 0.00 0.07 0.00 0.07 ind:pre:3s; +brandy brandy nom m s 3.10 0.14 3.10 0.14 +branla branler ver 12.72 9.93 0.00 0.27 ind:pas:3s; +branlage branlage nom m 0.02 0.07 0.02 0.07 +branlaient branler ver 12.72 9.93 0.03 0.34 ind:imp:3p; +branlais branler ver 12.72 9.93 0.33 0.27 ind:imp:1s;ind:imp:2s; +branlait branler ver 12.72 9.93 0.11 1.49 ind:imp:3s; +branlant branlant adj m s 0.56 4.66 0.20 1.55 +branlante branlant adj f s 0.56 4.66 0.28 1.76 +branlantes branlant adj f p 0.56 4.66 0.07 0.95 +branlants branlant adj m p 0.56 4.66 0.01 0.41 +branle_bas branle_bas nom m 0.29 1.82 0.29 1.82 +branle branler ver 12.72 9.93 5.07 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +branlement branlement nom m s 0.01 0.07 0.01 0.07 +branlent branler ver 12.72 9.93 0.27 0.34 ind:pre:3p; +branler branler ver 12.72 9.93 4.82 3.04 inf; +branlera branler ver 12.72 9.93 0.02 0.00 ind:fut:3s; +branlerais branler ver 12.72 9.93 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +branlerait branler ver 12.72 9.93 0.00 0.07 cnd:pre:3s; +branles branler ver 12.72 9.93 1.27 0.34 ind:pre:2s; +branlette branlette nom f s 3.25 0.68 2.68 0.41 +branlettes branlette nom f p 3.25 0.68 0.57 0.27 +branleur branleur nom m s 5.08 1.35 2.90 0.34 +branleurs branleur nom m p 5.08 1.35 2.15 0.81 +branleuse branleur nom f s 5.08 1.35 0.03 0.14 +branleuses branleuse nom f p 0.14 0.00 0.14 0.00 +branlez branler ver 12.72 9.93 0.18 0.20 imp:pre:2p;ind:pre:2p; +branlochais branlocher ver 0.00 0.20 0.00 0.07 ind:imp:1s; +branlochant branlocher ver 0.00 0.20 0.00 0.07 par:pre; +branlochent branlocher ver 0.00 0.20 0.00 0.07 ind:pre:3p; +branlé branler ver m s 12.72 9.93 0.41 0.41 par:pas; +branlée branlée nom f s 0.80 0.47 0.80 0.47 +branlés branler ver m p 12.72 9.93 0.03 0.00 par:pas; +branque branque adj s 0.68 3.11 0.42 2.43 +branques branque adj m p 0.68 3.11 0.26 0.68 +branquignol branquignol nom m s 0.05 0.07 0.03 0.00 +branquignols branquignol nom m p 0.05 0.07 0.02 0.07 +braqua braquer ver 15.67 15.54 0.01 0.54 ind:pas:3s; +braquage braquage nom m s 7.74 1.62 6.49 1.22 +braquages braquage nom m p 7.74 1.62 1.26 0.41 +braquai braquer ver 15.67 15.54 0.00 0.14 ind:pas:1s; +braquaient braquer ver 15.67 15.54 0.18 0.14 ind:imp:3p; +braquais braquer ver 15.67 15.54 0.07 0.27 ind:imp:1s;ind:imp:2s; +braquait braquer ver 15.67 15.54 0.32 1.28 ind:imp:3s; +braquant braquer ver 15.67 15.54 0.28 1.01 par:pre; +braque braquer ver 15.67 15.54 1.94 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +braquemart braquemart nom m s 0.22 0.61 0.19 0.61 +braquemarts braquemart nom m p 0.22 0.61 0.03 0.00 +braquent braquer ver 15.67 15.54 0.28 0.68 ind:pre:3p; +braquer braquer ver 15.67 15.54 5.19 2.97 inf; +braquera braquer ver 15.67 15.54 0.05 0.00 ind:fut:3s; +braquerais braquer ver 15.67 15.54 0.00 0.07 cnd:pre:2s; +braquerait braquer ver 15.67 15.54 0.05 0.00 cnd:pre:3s; +braques braquer ver 15.67 15.54 0.73 0.07 ind:pre:2s; +braquet braquet nom m s 0.00 0.20 0.00 0.14 +braquets braquet nom m p 0.00 0.20 0.00 0.07 +braqueur braqueur nom m s 2.91 1.01 1.74 0.54 +braqueurs braqueur nom m p 2.91 1.01 1.14 0.47 +braqueuse braqueur nom f s 2.91 1.01 0.03 0.00 +braqueuses braqueuse nom f p 0.21 0.00 0.21 0.00 +braquez braquer ver 15.67 15.54 0.23 0.07 imp:pre:2p;ind:pre:2p; +braquèrent braquer ver 15.67 15.54 0.00 0.14 ind:pas:3p; +braqué braquer ver m s 15.67 15.54 4.79 2.57 par:pas; +braquée braquer ver f s 15.67 15.54 0.47 1.08 par:pas; +braquées braquer ver f p 15.67 15.54 0.40 0.74 par:pas; +braqués braquer ver m p 15.67 15.54 0.70 2.30 par:pas; +bras bras nom m 149.26 487.97 149.26 487.97 +brasage brasage nom m s 0.00 0.07 0.00 0.07 +braser braser ver 0.00 0.07 0.00 0.07 inf; +brasero brasero nom m s 0.04 1.82 0.02 1.15 +braseros brasero nom m p 0.04 1.82 0.01 0.68 +brasier brasier nom m s 1.47 6.42 1.43 5.81 +brasiers brasier nom m p 1.47 6.42 0.04 0.61 +brasillaient brasiller ver 0.00 0.88 0.00 0.34 ind:imp:3p; +brasillait brasiller ver 0.00 0.88 0.00 0.14 ind:imp:3s; +brasillant brasiller ver 0.00 0.88 0.00 0.07 par:pre; +brasille brasiller ver 0.00 0.88 0.00 0.14 ind:pre:3s; +brasillement brasillement nom m s 0.00 0.20 0.00 0.20 +brasiller brasiller ver 0.00 0.88 0.00 0.20 inf; +brassage brassage nom m s 0.09 0.81 0.09 0.61 +brassages brassage nom m p 0.09 0.81 0.00 0.20 +brassai brasser ver 1.03 5.61 0.00 0.07 ind:pas:1s; +brassaient brasser ver 1.03 5.61 0.01 0.27 ind:imp:3p; +brassait brasser ver 1.03 5.61 0.01 0.95 ind:imp:3s; +brassant brasser ver 1.03 5.61 0.01 0.95 par:pre; +brassard brassard nom m s 0.71 4.93 0.42 3.92 +brassards brassard nom m p 0.71 4.93 0.29 1.01 +brasse brasse nom f s 0.67 2.16 0.37 0.81 +brassent brasser ver 1.03 5.61 0.01 0.27 ind:pre:3p; +brasser brasser ver 1.03 5.61 0.43 0.74 inf; +brasserie_hôtel brasserie_hôtel nom f s 0.00 0.07 0.00 0.07 +brasserie brasserie nom f s 1.89 9.05 1.31 7.97 +brasseries brasserie nom f p 1.89 9.05 0.58 1.08 +brasseront brasser ver 1.03 5.61 0.00 0.07 ind:fut:3p; +brasses brasse nom f p 0.67 2.16 0.30 1.35 +brasseur brasseur nom m s 0.24 0.54 0.23 0.34 +brasseurs brasseur nom m p 0.24 0.54 0.01 0.20 +brassez brasser ver 1.03 5.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +brassicourt brassicourt adj m s 0.00 0.07 0.00 0.07 +brassions brasser ver 1.03 5.61 0.00 0.14 ind:imp:1p; +brassière brassière nom f s 0.55 0.54 0.36 0.20 +brassières brassière nom f p 0.55 0.54 0.18 0.34 +brassé brasser ver m s 1.03 5.61 0.20 0.54 par:pas; +brassée brassée nom f s 0.06 3.18 0.04 1.96 +brassées brassée nom f p 0.06 3.18 0.02 1.22 +brassés brasser ver m p 1.03 5.61 0.01 0.14 par:pas; +brasure brasure nom f s 0.00 0.07 0.00 0.07 +brava braver ver 3.20 5.20 0.22 0.41 ind:pas:3s; +bravache bravache adj m s 0.16 0.14 0.14 0.07 +bravaches bravache nom m p 0.08 0.27 0.01 0.20 +bravade bravade nom f s 0.15 1.69 0.12 1.42 +bravades bravade nom f p 0.15 1.69 0.03 0.27 +bravaient braver ver 3.20 5.20 0.00 0.20 ind:imp:3p; +bravais braver ver 3.20 5.20 0.16 0.14 ind:imp:1s;ind:imp:2s; +bravait braver ver 3.20 5.20 0.01 0.41 ind:imp:3s; +bravant braver ver 3.20 5.20 0.36 0.74 par:pre; +brave brave adj s 30.93 35.00 24.55 23.31 +bravement bravement adv 0.59 3.78 0.59 3.78 +bravent braver ver 3.20 5.20 0.02 0.07 ind:pre:3p; +braver braver ver 3.20 5.20 1.48 2.09 inf; +braverai braver ver 3.20 5.20 0.02 0.00 ind:fut:1s; +braveraient braver ver 3.20 5.20 0.01 0.00 cnd:pre:3p; +braverait braver ver 3.20 5.20 0.00 0.07 cnd:pre:3s; +braveries braverie nom f p 0.00 0.07 0.00 0.07 +braveriez braver ver 3.20 5.20 0.01 0.00 cnd:pre:2p; +braves brave adj p 30.93 35.00 6.39 11.69 +bravez braver ver 3.20 5.20 0.03 0.00 imp:pre:2p;ind:pre:2p; +bravissimo bravissimo nom m s 0.15 0.20 0.15 0.20 +bravo bravo ono 48.98 7.91 48.98 7.91 +bravons braver ver 3.20 5.20 0.02 0.00 imp:pre:1p; +bravos bravo nom m p 8.93 4.59 0.73 1.35 +bravoure bravoure nom f s 2.78 3.18 2.78 3.18 +bravèrent braver ver 3.20 5.20 0.03 0.00 ind:pas:3p; +bravé braver ver m s 3.20 5.20 0.45 0.20 par:pas; +bravée braver ver f s 3.20 5.20 0.00 0.07 par:pas; +brayaient brayer ver 0.01 0.34 0.00 0.07 ind:imp:3p; +brayait brayer ver 0.01 0.34 0.00 0.07 ind:imp:3s; +braye braye nom f s 0.00 0.61 0.00 0.61 +brayes brayer ver 0.01 0.34 0.00 0.07 ind:pre:2s; +brayons brayon nom m p 0.00 0.07 0.00 0.07 +break_down break_down nom m 0.00 0.14 0.00 0.14 +break break nom m s 7.18 2.09 6.91 1.96 +breakdance breakdance nom f s 0.10 0.00 0.10 0.00 +breakfast breakfast nom m s 0.64 1.22 0.60 1.22 +breakfasts breakfast nom m p 0.64 1.22 0.03 0.00 +breaks break nom m p 7.18 2.09 0.27 0.14 +brebis brebis nom f 7.02 7.03 7.02 7.03 +brechtienne brechtien nom f s 0.00 0.07 0.00 0.07 +bredin bredin nom m s 0.00 0.07 0.00 0.07 +bredouilla bredouiller ver 0.73 13.38 0.00 4.46 ind:pas:3s; +bredouillage bredouillage nom m s 0.00 0.14 0.00 0.14 +bredouillai bredouiller ver 0.73 13.38 0.00 0.41 ind:pas:1s; +bredouillaient bredouiller ver 0.73 13.38 0.00 0.41 ind:imp:3p; +bredouillais bredouiller ver 0.73 13.38 0.00 0.41 ind:imp:1s; +bredouillait bredouiller ver 0.73 13.38 0.06 1.01 ind:imp:3s; +bredouillant bredouiller ver 0.73 13.38 0.00 1.42 par:pre; +bredouillante bredouillant adj f s 0.00 0.20 0.00 0.07 +bredouille bredouille adj s 1.41 2.70 1.18 2.09 +bredouillement bredouillement nom m s 0.00 0.68 0.00 0.54 +bredouillements bredouillement nom m p 0.00 0.68 0.00 0.14 +bredouillent bredouiller ver 0.73 13.38 0.00 0.07 ind:pre:3p; +bredouiller bredouiller ver 0.73 13.38 0.11 1.96 inf; +bredouilles bredouille adj m p 1.41 2.70 0.23 0.61 +bredouilleurs bredouilleur nom m p 0.00 0.07 0.00 0.07 +bredouillez bredouiller ver 0.73 13.38 0.11 0.00 imp:pre:2p;ind:pre:2p; +bredouillis bredouillis nom m 0.00 0.14 0.00 0.14 +bredouillé bredouiller ver m s 0.73 13.38 0.13 1.15 par:pas; +bredouillées bredouiller ver f p 0.73 13.38 0.00 0.14 par:pas; +bref bref adv 22.26 38.78 22.26 38.78 +brefs bref adj m p 15.63 74.80 0.92 10.20 +bregma bregma nom m s 0.01 0.00 0.01 0.00 +breitschwanz breitschwanz nom m s 0.00 0.20 0.00 0.20 +brelan brelan nom m s 1.29 0.54 1.28 0.54 +brelans brelan nom m p 1.29 0.54 0.01 0.00 +breloque breloque nom f s 0.56 1.69 0.27 0.95 +breloques breloque nom f p 0.56 1.69 0.29 0.74 +breneuses breneux adj f p 0.00 0.14 0.00 0.07 +breneux breneux adj m s 0.00 0.14 0.00 0.07 +bressan bressan adj m s 0.00 0.68 0.00 0.20 +bressane bressan adj f s 0.00 0.68 0.00 0.34 +bressanes bressan adj f p 0.00 0.68 0.00 0.07 +bressans bressan adj m p 0.00 0.68 0.00 0.07 +brestois brestois nom m 0.00 0.20 0.00 0.14 +brestoise brestois nom f s 0.00 0.20 0.00 0.07 +bretelle bretelle nom f s 2.63 13.04 1.10 3.72 +bretelles bretelle nom f p 2.63 13.04 1.54 9.32 +breton breton adj m s 0.71 9.86 0.17 3.99 +bretonnant bretonnant adj m s 0.00 0.14 0.00 0.07 +bretonnants bretonnant adj m p 0.00 0.14 0.00 0.07 +bretonne breton adj f s 0.71 9.86 0.54 3.18 +bretonnes bretonne nom f p 0.03 0.00 0.01 0.00 +bretons breton nom m p 0.32 4.86 0.18 1.35 +brette brette nom f s 0.01 0.00 0.01 0.00 +bretteur bretteur nom m s 0.31 0.20 0.27 0.00 +bretteurs bretteur nom m p 0.31 0.20 0.04 0.20 +bretzel bretzel nom s 1.51 0.47 0.47 0.07 +bretzels bretzel nom p 1.51 0.47 1.04 0.41 +breuil breuil nom m s 0.00 0.14 0.00 0.07 +breuils breuil nom m p 0.00 0.14 0.00 0.07 +breuvage breuvage nom m s 0.88 2.57 0.83 2.09 +breuvages breuvage nom m p 0.88 2.57 0.04 0.47 +brevet brevet nom m s 3.10 3.58 1.83 3.11 +breveter breveter ver 0.49 0.41 0.32 0.14 inf; +brevets brevet nom m p 3.10 3.58 1.27 0.47 +breveté breveté adj m s 0.36 0.61 0.30 0.47 +brevetée breveter ver f s 0.49 0.41 0.05 0.07 par:pas; +brevetées breveté adj f p 0.36 0.61 0.03 0.07 +brevetés breveter ver m p 0.49 0.41 0.03 0.00 par:pas; +bri bri nom m s 0.54 0.41 0.54 0.41 +briard briard adj m s 0.03 0.20 0.03 0.14 +briarde briard adj f s 0.03 0.20 0.00 0.07 +briards briard nom m p 0.01 0.20 0.00 0.07 +bribe bribe nom f s 0.88 14.73 0.03 1.55 +bribes bribe nom f p 0.88 14.73 0.85 13.18 +bric_à_brac bric_à_brac nom m 0.00 3.24 0.00 3.24 +bric_et_de_broc bric_et_de_broc adv 0.03 0.47 0.03 0.47 +bricheton bricheton nom m s 0.00 0.68 0.00 0.68 +brick brick nom m s 1.51 0.34 1.30 0.14 +bricks brick nom m p 1.51 0.34 0.21 0.20 +bricola bricoler ver 4.03 6.15 0.00 0.07 ind:pas:3s; +bricolage bricolage nom m s 0.89 1.76 0.87 1.28 +bricolages bricolage nom m p 0.89 1.76 0.01 0.47 +bricolaient bricoler ver 4.03 6.15 0.01 0.07 ind:imp:3p; +bricolais bricoler ver 4.03 6.15 0.01 0.14 ind:imp:1s;ind:imp:2s; +bricolait bricoler ver 4.03 6.15 0.19 0.88 ind:imp:3s; +bricolant bricoler ver 4.03 6.15 0.01 0.20 par:pre; +bricole bricoler ver 4.03 6.15 1.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bricolent bricoler ver 4.03 6.15 0.04 0.20 ind:pre:3p; +bricoler bricoler ver 4.03 6.15 1.33 1.82 inf; +bricoles bricole nom f p 1.83 5.68 1.41 3.99 +bricoleur bricoleur nom m s 0.58 0.54 0.52 0.27 +bricoleurs bricoleur nom m p 0.58 0.54 0.04 0.27 +bricoleuse bricoleur nom f s 0.58 0.54 0.03 0.00 +bricolez bricoler ver 4.03 6.15 0.23 0.07 ind:pre:2p; +bricolo bricolo nom m s 0.04 0.27 0.04 0.14 +bricolons bricoler ver 4.03 6.15 0.01 0.00 ind:pre:1p; +bricolos bricolo nom m p 0.04 0.27 0.00 0.14 +bricolé bricoler ver m s 4.03 6.15 0.61 0.88 par:pas; +bricolée bricoler ver f s 4.03 6.15 0.07 0.47 par:pas; +bricolées bricoler ver f p 4.03 6.15 0.01 0.07 par:pas; +bricolés bricoler ver m p 4.03 6.15 0.01 0.14 par:pas; +bridais brider ver 0.91 2.30 0.00 0.07 ind:imp:1s; +bridait brider ver 0.91 2.30 0.00 0.41 ind:imp:3s; +bridant brider ver 0.91 2.30 0.10 0.07 par:pre; +bride bride nom f s 1.79 10.07 1.63 8.92 +brident brider ver 0.91 2.30 0.04 0.07 ind:pre:3p; +brider brider ver 0.91 2.30 0.27 0.47 inf; +brides bride nom f p 1.79 10.07 0.16 1.15 +bridez brider ver 0.91 2.30 0.01 0.00 ind:pre:2p; +bridge bridge nom m s 4.33 4.12 4.31 3.99 +bridgeait bridger ver 0.36 0.61 0.00 0.20 ind:imp:3s; +bridgeant bridger ver 0.36 0.61 0.00 0.07 par:pre; +bridgent bridger ver 0.36 0.61 0.00 0.07 ind:pre:3p; +bridgeons bridger ver 0.36 0.61 0.00 0.07 ind:pre:1p; +bridger bridger ver 0.36 0.61 0.35 0.14 inf; +bridges bridge nom m p 4.33 4.12 0.02 0.14 +bridgeurs bridgeur nom m p 0.02 0.07 0.00 0.07 +bridgeuse bridgeur nom f s 0.02 0.07 0.02 0.00 +bridgez bridger ver 0.36 0.61 0.01 0.00 ind:pre:2p; +bridgées bridger ver f p 0.36 0.61 0.00 0.07 par:pas; +bridon bridon nom m s 0.00 0.41 0.00 0.34 +bridons bridon nom m p 0.00 0.41 0.00 0.07 +bridé bridé adj m s 1.45 2.64 0.63 0.20 +bridée bridé adj f s 1.45 2.64 0.14 0.20 +bridées bridé adj f p 1.45 2.64 0.11 0.14 +bridés bridé adj m p 1.45 2.64 0.57 2.09 +brie brie nom s 0.33 0.88 0.33 0.74 +briefe briefer ver 2.04 0.00 0.17 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +briefer briefer ver 2.04 0.00 0.62 0.00 inf; +briefera briefer ver 2.04 0.00 0.09 0.00 ind:fut:3s; +brieferai briefer ver 2.04 0.00 0.20 0.00 ind:fut:1s; +brieferas briefer ver 2.04 0.00 0.05 0.00 ind:fut:2s; +briefes briefer ver 2.04 0.00 0.04 0.00 ind:pre:2s; +briefez briefer ver 2.04 0.00 0.06 0.00 imp:pre:2p; +briefing briefing nom m s 3.25 0.47 3.00 0.34 +briefings briefing nom m p 3.25 0.47 0.24 0.14 +briefé briefer ver m s 2.04 0.00 0.49 0.00 par:pas; +briefée briefer ver f s 2.04 0.00 0.07 0.00 par:pas; +briefés briefer ver m p 2.04 0.00 0.24 0.00 par:pas; +bries brie nom p 0.33 0.88 0.00 0.14 +brifez brifer ver 0.00 0.07 0.00 0.07 imp:pre:2p; +briffe briffer ver 0.12 0.88 0.10 0.34 ind:pre:1s;ind:pre:3s; +briffer briffer ver 0.12 0.88 0.02 0.54 inf; +brigade brigade nom f s 16.65 12.43 13.75 8.78 +brigades brigade nom f p 16.65 12.43 2.90 3.65 +brigadier_chef brigadier_chef nom m s 0.01 1.96 0.01 1.82 +brigadier brigadier nom m s 2.86 14.53 2.73 13.92 +brigadier_chef brigadier_chef nom m p 0.01 1.96 0.00 0.14 +brigadiers brigadier nom m p 2.86 14.53 0.14 0.61 +brigadiste brigadiste adj s 0.00 0.07 0.00 0.07 +brigadistes brigadiste nom p 0.00 0.07 0.00 0.07 +brigand brigand nom m s 5.14 3.72 2.10 1.35 +brigandage brigandage nom m s 0.30 0.74 0.30 0.47 +brigandages brigandage nom m p 0.30 0.74 0.00 0.27 +brigandaient brigander ver 0.11 0.27 0.00 0.07 ind:imp:3p; +brigandasse brigander ver 0.11 0.27 0.00 0.07 sub:imp:1s; +brigande brigander ver 0.11 0.27 0.11 0.14 imp:pre:2s;ind:pre:3s; +brigandeaux brigandeau nom m p 0.00 0.07 0.00 0.07 +brigands brigand nom m p 5.14 3.72 3.04 2.36 +brigantin brigantin nom m s 0.20 0.20 0.20 0.20 +brigantine brigantine nom f s 0.00 0.07 0.00 0.07 +brignolet brignolet nom m s 0.00 0.27 0.00 0.27 +briguaient briguer ver 0.81 1.01 0.01 0.07 ind:imp:3p; +briguait briguer ver 0.81 1.01 0.13 0.07 ind:imp:3s; +briguant briguer ver 0.81 1.01 0.00 0.07 par:pre; +brigue briguer ver 0.81 1.01 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +briguer briguer ver 0.81 1.01 0.32 0.54 inf; +briguerait briguer ver 0.81 1.01 0.00 0.07 cnd:pre:3s; +brigues brigue nom f p 0.00 0.34 0.00 0.34 +briguèrent briguer ver 0.81 1.01 0.00 0.07 ind:pas:3p; +brigué briguer ver m s 0.81 1.01 0.16 0.07 par:pas; +brilla briller ver 28.91 81.22 0.02 1.89 ind:pas:3s; +brillaient briller ver 28.91 81.22 0.27 17.84 ind:imp:3p; +brillais briller ver 28.91 81.22 0.04 0.14 ind:imp:1s;ind:imp:2s; +brillait briller ver 28.91 81.22 1.73 19.39 ind:imp:3s; +brillamment brillamment adv 0.88 2.30 0.88 2.30 +brillance brillance nom f s 0.27 0.74 0.27 0.54 +brillances brillance nom f p 0.27 0.74 0.00 0.20 +brillant brillant adj m s 29.89 53.31 14.23 16.62 +brillantage brillantage nom m s 0.00 0.07 0.00 0.07 +brillante brillant adj f s 29.89 53.31 9.20 13.18 +brillantes brillant adj f p 29.89 53.31 2.31 7.36 +brillantine brillantine nom f s 0.10 1.96 0.10 1.96 +brillantiner brillantiner ver 0.03 0.47 0.00 0.07 inf; +brillantinée brillantiner ver f s 0.03 0.47 0.00 0.07 par:pas; +brillantinées brillantiner ver f p 0.03 0.47 0.00 0.07 par:pas; +brillantinés brillantiner ver m p 0.03 0.47 0.03 0.20 par:pas; +brillants brillant adj m p 29.89 53.31 4.16 16.15 +brillantés brillanter ver m p 0.08 0.20 0.00 0.07 par:pas; +brille briller ver 28.91 81.22 13.73 10.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brillent briller ver 28.91 81.22 3.93 7.50 ind:pre:3p; +briller briller ver 28.91 81.22 5.08 16.76 inf;; +brillera briller ver 28.91 81.22 1.12 0.14 ind:fut:3s; +brilleraient briller ver 28.91 81.22 0.00 0.34 cnd:pre:3p; +brillerais briller ver 28.91 81.22 0.20 0.07 cnd:pre:2s; +brillerait briller ver 28.91 81.22 0.04 0.41 cnd:pre:3s; +brillerons briller ver 28.91 81.22 0.00 0.07 ind:fut:1p; +brilleront briller ver 28.91 81.22 0.09 0.20 ind:fut:3p; +brilles briller ver 28.91 81.22 0.48 0.07 ind:pre:2s; +brillez briller ver 28.91 81.22 0.06 0.00 imp:pre:2p;ind:pre:2p; +brillions briller ver 28.91 81.22 0.00 0.14 ind:imp:1p; +brillons briller ver 28.91 81.22 0.04 0.00 ind:pre:1p; +brillât briller ver 28.91 81.22 0.00 0.20 sub:imp:3s; +brillèrent briller ver 28.91 81.22 0.00 1.49 ind:pas:3p; +brillé briller ver m s 28.91 81.22 0.80 1.42 par:pas; +brima brimer ver 0.66 2.16 0.31 0.00 ind:pas:3s; +brimade brimade nom f s 0.10 2.91 0.04 0.95 +brimades brimade nom f p 0.10 2.91 0.05 1.96 +brimaient brimer ver 0.66 2.16 0.01 0.14 ind:imp:3p; +brimais brimer ver 0.66 2.16 0.00 0.07 ind:imp:1s; +brimait brimer ver 0.66 2.16 0.00 0.14 ind:imp:3s; +brimbala brimbaler ver 0.00 0.27 0.00 0.07 ind:pas:3s; +brimbalant brimbaler ver 0.00 0.27 0.00 0.07 par:pre; +brimbalement brimbalement nom m s 0.00 0.14 0.00 0.07 +brimbalements brimbalement nom m p 0.00 0.14 0.00 0.07 +brimbaler brimbaler ver 0.00 0.27 0.00 0.07 inf; +brimbalés brimbaler ver m p 0.00 0.27 0.00 0.07 par:pas; +brimborion brimborion nom m s 0.00 0.34 0.00 0.14 +brimborions brimborion nom m p 0.00 0.34 0.00 0.20 +brime brimer ver 0.66 2.16 0.04 0.27 ind:pre:3s; +briment brimer ver 0.66 2.16 0.00 0.07 ind:pre:3p; +brimer brimer ver 0.66 2.16 0.14 0.74 inf; +brimé brimer ver m s 0.66 2.16 0.14 0.34 par:pas; +brimée brimer ver f s 0.66 2.16 0.01 0.14 par:pas; +brimées brimer ver f p 0.66 2.16 0.01 0.14 par:pas; +brimés brimer ver m p 0.66 2.16 0.00 0.14 par:pas; +brin brin nom m s 5.38 19.26 4.95 13.99 +brindes brinde nom f p 0.03 0.00 0.03 0.00 +brindezingue brindezingue adj s 0.01 0.07 0.01 0.07 +brindille brindille nom f s 1.25 6.55 0.69 1.62 +brindilles brindille nom f p 1.25 6.55 0.56 4.93 +bringue bringue nom f s 1.27 1.42 1.27 1.42 +bringuebalaient bringuebaler ver 0.01 0.95 0.00 0.07 ind:imp:3p; +bringuebalait bringuebaler ver 0.01 0.95 0.00 0.20 ind:imp:3s; +bringuebalant bringuebalant adj m s 0.02 0.47 0.02 0.07 +bringuebalante bringuebalant adj f s 0.02 0.47 0.00 0.14 +bringuebalantes bringuebalant adj f p 0.02 0.47 0.00 0.07 +bringuebalants bringuebalant adj m p 0.02 0.47 0.00 0.20 +bringuebale bringuebaler ver 0.01 0.95 0.00 0.34 ind:pre:3s; +bringuebalent bringuebaler ver 0.01 0.95 0.00 0.14 ind:pre:3p; +bringuebaler bringuebaler ver 0.01 0.95 0.01 0.14 inf; +brinquebalait brinquebaler ver 0.12 0.41 0.00 0.14 ind:imp:3s; +brinquebalants brinquebalant adj m p 0.00 0.07 0.00 0.07 +brinquebale brinquebaler ver 0.12 0.41 0.11 0.07 ind:pre:3s; +brinquebaler brinquebaler ver 0.12 0.41 0.01 0.07 inf; +brinqueballant brinqueballer ver 0.00 0.27 0.00 0.14 par:pre; +brinqueballé brinqueballer ver m s 0.00 0.27 0.00 0.07 par:pas; +brinqueballés brinqueballer ver m p 0.00 0.27 0.00 0.07 par:pas; +brinquebalé brinquebaler ver m s 0.12 0.41 0.00 0.14 par:pas; +brins brin nom m p 5.38 19.26 0.44 5.27 +brio brio nom m s 0.93 1.89 0.93 1.89 +brioche brioche nom f s 2.55 7.09 1.45 4.66 +brioches brioche nom f p 2.55 7.09 1.10 2.43 +brioché brioché adj m s 0.03 0.07 0.02 0.00 +briochée brioché adj f s 0.03 0.07 0.01 0.00 +briochés brioché adj m p 0.03 0.07 0.00 0.07 +brions brion nom m p 0.03 0.00 0.03 0.00 +briquage briquage nom m s 0.00 0.14 0.00 0.14 +briquaient briquer ver 0.69 2.57 0.00 0.07 ind:imp:3p; +briquais briquer ver 0.69 2.57 0.01 0.00 ind:imp:1s; +briquait briquer ver 0.69 2.57 0.00 0.20 ind:imp:3s; +briquant briquer ver 0.69 2.57 0.00 0.14 par:pre; +brique brique nom f s 13.56 31.55 4.02 11.69 +briquent briquer ver 0.69 2.57 0.01 0.00 ind:pre:3p; +briquer briquer ver 0.69 2.57 0.40 0.68 inf; +briquerait briquer ver 0.69 2.57 0.00 0.07 cnd:pre:3s; +briques brique nom f p 13.56 31.55 9.54 19.86 +briquet briquet nom m s 10.64 13.65 9.98 12.30 +briquetage briquetage nom m s 0.00 0.14 0.00 0.14 +briqueterie briqueterie nom f s 0.45 0.41 0.45 0.34 +briqueteries briqueterie nom f p 0.45 0.41 0.00 0.07 +briquetier briquetier nom m s 0.00 0.07 0.00 0.07 +briquets briquet nom m p 10.64 13.65 0.66 1.35 +briquette briquette nom f s 0.03 0.61 0.01 0.07 +briquettes briquette nom f p 0.03 0.61 0.02 0.54 +briquetées briqueté adj f p 0.00 0.07 0.00 0.07 +briquez briquer ver 0.69 2.57 0.03 0.14 imp:pre:2p; +briqué briquer ver m s 0.69 2.57 0.16 0.34 par:pas; +briquée briquer ver f s 0.69 2.57 0.02 0.20 par:pas; +briquées briquer ver f p 0.69 2.57 0.00 0.27 par:pas; +briqués briquer ver m p 0.69 2.57 0.00 0.27 par:pas; +bris bris nom m 0.90 1.35 0.90 1.35 +brisa briser ver 55.20 61.62 0.31 3.85 ind:pas:3s; +brisai briser ver 55.20 61.62 0.00 0.07 ind:pas:1s; +brisaient briser ver 55.20 61.62 0.05 1.69 ind:imp:3p; +brisais briser ver 55.20 61.62 0.14 0.41 ind:imp:1s; +brisait briser ver 55.20 61.62 0.43 4.93 ind:imp:3s; +brisant briser ver 55.20 61.62 0.30 2.30 par:pre; +brisante brisant adj f s 0.06 0.54 0.00 0.14 +brisantes brisant adj f p 0.06 0.54 0.00 0.14 +brisants brisant nom m p 0.20 1.35 0.18 1.28 +briscard briscard nom m s 0.18 0.34 0.06 0.14 +briscards briscard nom m p 0.18 0.34 0.12 0.20 +brise_bise brise_bise nom m 0.00 0.41 0.00 0.41 +brise_fer brise_fer nom m 0.01 0.00 0.01 0.00 +brise_glace brise_glace nom m 0.07 0.20 0.07 0.20 +brise_jet brise_jet nom m 0.00 0.07 0.00 0.07 +brise_lame brise_lame nom m s 0.00 0.14 0.00 0.14 +brise_vent brise_vent nom m 0.01 0.00 0.01 0.00 +brise briser ver 55.20 61.62 8.45 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brisent briser ver 55.20 61.62 1.48 1.49 ind:pre:3p; +briser briser ver 55.20 61.62 14.99 16.28 inf; +brisera briser ver 55.20 61.62 1.44 0.41 ind:fut:3s; +briserai briser ver 55.20 61.62 1.38 0.27 ind:fut:1s; +briseraient briser ver 55.20 61.62 0.01 0.20 cnd:pre:3p; +briserais briser ver 55.20 61.62 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +briserait briser ver 55.20 61.62 0.81 0.88 cnd:pre:3s; +briseras briser ver 55.20 61.62 0.10 0.00 ind:fut:2s; +briserez briser ver 55.20 61.62 0.18 0.00 ind:fut:2p; +briseriez briser ver 55.20 61.62 0.02 0.00 cnd:pre:2p; +briserons briser ver 55.20 61.62 0.23 0.07 ind:fut:1p; +briseront briser ver 55.20 61.62 0.21 0.34 ind:fut:3p; +brises briser ver 55.20 61.62 0.99 0.14 ind:pre:2s; +briseur briseur nom m s 1.11 1.01 0.66 0.54 +briseurs briseur nom m p 1.11 1.01 0.16 0.41 +briseuse briseur nom f s 1.11 1.01 0.29 0.07 +brisez briser ver 55.20 61.62 2.29 0.20 imp:pre:2p;ind:pre:2p; +brisions briser ver 55.20 61.62 0.01 0.20 ind:imp:1p; +brisis brisis nom m 0.05 0.00 0.05 0.00 +brisons briser ver 55.20 61.62 0.38 0.20 imp:pre:1p;ind:pre:1p; +brisât briser ver 55.20 61.62 0.00 0.27 sub:imp:3s; +brisque brisque nom f s 0.03 0.00 0.03 0.00 +brisèrent briser ver 55.20 61.62 0.06 0.54 ind:pas:3p; +bristol bristol nom m s 0.10 1.55 0.08 1.35 +bristols bristol nom m p 0.10 1.55 0.03 0.20 +brisé briser ver m s 55.20 61.62 15.70 9.32 par:pas; +brisée brisé adj f s 10.09 16.42 2.42 6.62 +brisées briser ver f p 55.20 61.62 1.30 5.54 par:pas; +brisure brisure nom f s 0.01 0.95 0.00 0.74 +brisures brisure nom f p 0.01 0.95 0.01 0.20 +brisés brisé adj m p 10.09 16.42 1.46 3.45 +britannique britannique adj s 8.23 68.72 6.57 47.97 +britanniques britannique nom p 1.97 13.72 1.71 12.84 +brièvement brièvement adv 1.92 6.22 1.92 6.22 +brièveté brièveté nom f s 0.13 1.35 0.13 1.35 +british british adj s 1.75 1.08 1.75 1.08 +brivadois brivadois nom m 0.00 0.14 0.00 0.14 +brivadoise brivadois adj f s 0.00 0.07 0.00 0.07 +brize brize nom f s 0.01 0.47 0.01 0.47 +broc broc nom m s 0.38 4.53 0.38 3.51 +brocante brocante nom f s 0.86 1.42 0.78 1.35 +brocantes brocante nom f p 0.86 1.42 0.07 0.07 +brocanteur brocanteur nom m s 0.29 9.26 0.28 3.58 +brocanteurs brocanteur nom m p 0.29 9.26 0.01 2.50 +brocanteuse brocanteur nom f s 0.29 9.26 0.00 3.18 +brocantées brocanter ver f p 0.00 0.07 0.00 0.07 par:pas; +brocard brocard nom m s 0.14 1.01 0.14 0.41 +brocardaient brocarder ver 0.01 0.27 0.00 0.07 ind:imp:3p; +brocardait brocarder ver 0.01 0.27 0.00 0.07 ind:imp:3s; +brocarde brocarder ver 0.01 0.27 0.01 0.00 ind:pre:3s; +brocarder brocarder ver 0.01 0.27 0.00 0.07 inf; +brocardions brocarder ver 0.01 0.27 0.00 0.07 ind:imp:1p; +brocards brocard nom m p 0.14 1.01 0.00 0.61 +brocart brocart nom m s 0.37 3.99 0.27 2.91 +brocarts brocart nom m p 0.37 3.99 0.10 1.08 +brocatelle brocatelle nom f s 0.00 0.07 0.00 0.07 +brochage brochage nom m s 0.00 0.20 0.00 0.14 +brochages brochage nom m p 0.00 0.20 0.00 0.07 +brochaient brocher ver 0.05 1.08 0.00 0.14 ind:imp:3p; +brochant brochant adj m s 6.29 0.07 6.29 0.07 +broche broche nom f s 4.57 5.74 3.88 4.32 +brocher brocher ver 0.05 1.08 0.00 0.14 inf; +broches broche nom f p 4.57 5.74 0.70 1.42 +brochet brochet nom m s 0.46 3.99 0.44 3.18 +brochets brochet nom m p 0.46 3.99 0.02 0.81 +brochette brochette nom f s 2.26 3.04 1.08 1.76 +brochettes brochette nom f p 2.26 3.04 1.18 1.28 +brocheur brocheur nom m s 0.00 0.34 0.00 0.27 +brocheurs brocheur nom m p 0.00 0.34 0.00 0.07 +brochoirs brochoir nom m p 0.00 0.07 0.00 0.07 +broché brocher ver m s 0.05 1.08 0.02 0.20 par:pas; +brochée brocher ver f s 0.05 1.08 0.00 0.20 par:pas; +brochées broché adj f p 0.01 0.74 0.00 0.07 +brochure brochure nom f s 2.88 3.99 1.64 1.76 +brochures brochure nom f p 2.88 3.99 1.25 2.23 +brochés broché adj m p 0.01 0.74 0.01 0.27 +brocoli brocoli nom m s 1.32 0.07 0.69 0.00 +brocolis brocoli nom m p 1.32 0.07 0.63 0.07 +brocs broc nom m p 0.38 4.53 0.00 1.01 +broda broder ver 3.52 14.86 0.01 0.14 ind:pas:3s; +brodaient broder ver 3.52 14.86 0.00 0.27 ind:imp:3p; +brodais broder ver 3.52 14.86 0.37 0.14 ind:imp:1s;ind:imp:2s; +brodait broder ver 3.52 14.86 0.01 0.88 ind:imp:3s; +brodant broder ver 3.52 14.86 0.27 0.41 par:pre; +brode broder ver 3.52 14.86 0.56 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brodent broder ver 3.52 14.86 0.01 0.20 ind:pre:3p; +brodequin brodequin nom m s 0.07 4.12 0.07 0.61 +brodequins brodequin nom m p 0.07 4.12 0.00 3.51 +broder broder ver 3.52 14.86 1.01 1.82 inf; +brodera broder ver 3.52 14.86 0.01 0.07 ind:fut:3s; +broderai broder ver 3.52 14.86 0.00 0.07 ind:fut:1s; +broderie broderie nom f s 0.97 6.22 0.93 2.36 +broderies broderie nom f p 0.97 6.22 0.04 3.85 +brodes broder ver 3.52 14.86 0.15 0.07 ind:pre:2s; +brodeuse brodeur nom f s 0.05 0.47 0.05 0.27 +brodeuses brodeuse nom f p 0.01 0.00 0.01 0.00 +brodez broder ver 3.52 14.86 0.05 0.00 imp:pre:2p; +brodé broder ver m s 3.52 14.86 0.83 4.05 par:pas; +brodée broder ver f s 3.52 14.86 0.06 1.96 par:pas; +brodées brodé adj f p 0.57 8.11 0.28 0.88 +brodés broder ver m p 3.52 14.86 0.17 2.50 par:pas; +broie broyer ver 4.08 8.85 0.74 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +broiement broiement nom m s 0.00 0.20 0.00 0.14 +broiements broiement nom m p 0.00 0.20 0.00 0.07 +broient broyer ver 4.08 8.85 0.14 0.34 ind:pre:3p; +broiera broyer ver 4.08 8.85 0.00 0.07 ind:fut:3s; +broierai broyer ver 4.08 8.85 0.04 0.00 ind:fut:1s; +broieras broyer ver 4.08 8.85 0.00 0.07 ind:fut:2s; +broies broyer ver 4.08 8.85 0.16 0.00 ind:pre:2s; +broker broker nom m s 0.02 0.07 0.02 0.07 +brol brol nom m s 0.01 0.00 0.01 0.00 +brome brome nom m s 0.01 0.14 0.01 0.14 +bromure bromure nom m s 0.52 0.47 0.52 0.41 +bromures bromure nom m p 0.52 0.47 0.00 0.07 +broncha broncher ver 1.97 12.84 0.00 2.50 ind:pas:3s; +bronchai broncher ver 1.97 12.84 0.00 0.14 ind:pas:1s; +bronchaient broncher ver 1.97 12.84 0.03 0.27 ind:imp:3p; +bronchais broncher ver 1.97 12.84 0.00 0.07 ind:imp:1s; +bronchait broncher ver 1.97 12.84 0.10 1.15 ind:imp:3s; +bronchant broncher ver 1.97 12.84 0.00 0.07 par:pre; +bronche broncher ver 1.97 12.84 0.45 1.96 imp:pre:2s;ind:pre:3s; +bronchent broncher ver 1.97 12.84 0.02 0.20 ind:pre:3p; +broncher broncher ver 1.97 12.84 0.65 4.26 inf; +bronchera broncher ver 1.97 12.84 0.14 0.14 ind:fut:3s; +broncherai broncher ver 1.97 12.84 0.02 0.07 ind:fut:1s; +broncherais broncher ver 1.97 12.84 0.01 0.00 cnd:pre:1s; +broncherait broncher ver 1.97 12.84 0.02 0.14 cnd:pre:3s; +broncherons broncher ver 1.97 12.84 0.00 0.07 ind:fut:1p; +broncheront broncher ver 1.97 12.84 0.01 0.00 ind:fut:3p; +bronches bronche nom f p 0.58 2.23 0.55 2.23 +bronchez broncher ver 1.97 12.84 0.07 0.07 imp:pre:2p;ind:pre:2p; +bronchioles bronchiole nom f p 0.01 0.14 0.01 0.14 +bronchique bronchique adj s 0.24 0.07 0.20 0.00 +bronchiques bronchique adj m p 0.24 0.07 0.04 0.07 +bronchite bronchite nom f s 1.16 2.36 1.15 2.09 +bronchites bronchite nom f p 1.16 2.36 0.01 0.27 +bronchitique bronchitique adj f s 0.00 0.14 0.00 0.07 +bronchitiques bronchitique adj p 0.00 0.14 0.00 0.07 +broncho_pneumonie broncho_pneumonie nom f s 0.00 0.41 0.00 0.41 +broncho_pneumopathie broncho_pneumopathie nom f s 0.01 0.07 0.01 0.07 +broncho broncho nom m s 0.03 0.00 0.03 0.00 +bronchons broncher ver 1.97 12.84 0.00 0.07 ind:pre:1p; +bronchoscope bronchoscope nom m s 0.01 0.00 0.01 0.00 +bronchoscopie bronchoscopie nom f s 0.13 0.00 0.13 0.00 +bronchât broncher ver 1.97 12.84 0.00 0.07 sub:imp:3s; +bronchèrent broncher ver 1.97 12.84 0.10 0.14 ind:pas:3p; +bronché broncher ver m s 1.97 12.84 0.27 1.49 par:pas; +brontosaure brontosaure nom m s 0.12 0.07 0.10 0.07 +brontosaures brontosaure nom m p 0.12 0.07 0.02 0.00 +bronzage bronzage nom m s 1.67 1.62 1.66 1.55 +bronzages bronzage nom m p 1.67 1.62 0.01 0.07 +bronzaient bronzer ver 5.10 5.74 0.00 0.07 ind:imp:3p; +bronzait bronzer ver 5.10 5.74 0.00 0.34 ind:imp:3s; +bronzant bronzer ver 5.10 5.74 0.02 0.07 par:pre; +bronzante bronzant adj f s 0.04 0.14 0.01 0.14 +bronzants bronzant adj m p 0.04 0.14 0.01 0.00 +bronze bronze nom m s 3.37 19.26 3.15 18.58 +bronzent bronzer ver 5.10 5.74 0.26 0.00 ind:pre:3p; +bronzer bronzer ver 5.10 5.74 1.88 1.89 inf; +bronzes bronzer ver 5.10 5.74 0.44 0.00 ind:pre:2s; +bronzette bronzette nom f s 0.12 0.14 0.12 0.07 +bronzettes bronzette nom f p 0.12 0.14 0.00 0.07 +bronzier bronzier nom m s 0.00 0.07 0.00 0.07 +bronzions bronzer ver 5.10 5.74 0.00 0.07 ind:imp:1p; +bronzé bronzé adj m s 2.72 6.69 1.65 2.84 +bronzée bronzé adj f s 2.72 6.69 0.60 1.55 +bronzées bronzé adj f p 2.72 6.69 0.07 1.22 +bronzés bronzé adj m p 2.72 6.69 0.39 1.08 +brook brook nom m s 0.12 0.00 0.02 0.00 +brooks brook nom m p 0.12 0.00 0.10 0.00 +broquarts broquart nom m p 0.00 0.07 0.00 0.07 +broque broque nom f s 0.00 0.74 0.00 0.68 +broques broque nom f p 0.00 0.74 0.00 0.07 +broquettes broquette nom f p 0.04 0.07 0.04 0.07 +broquille broquille nom f s 0.00 1.15 0.00 0.68 +broquilles broquille nom f p 0.00 1.15 0.00 0.47 +brossa brosser ver 7.65 10.14 0.00 1.15 ind:pas:3s; +brossage brossage nom m s 0.20 0.14 0.20 0.14 +brossaient brosser ver 7.65 10.14 0.02 0.14 ind:imp:3p; +brossais brosser ver 7.65 10.14 0.07 0.20 ind:imp:1s;ind:imp:2s; +brossait brosser ver 7.65 10.14 0.19 1.42 ind:imp:3s; +brossant brosser ver 7.65 10.14 0.05 0.41 par:pre; +brosse brosse nom f s 8.43 19.59 7.29 16.01 +brossent brosser ver 7.65 10.14 0.04 0.14 ind:pre:3p;sub:pre:3p; +brosser brosser ver 7.65 10.14 2.76 2.23 inf; +brossera brosser ver 7.65 10.14 0.06 0.00 ind:fut:3s; +brosserai brosser ver 7.65 10.14 0.03 0.00 ind:fut:1s; +brosseras brosser ver 7.65 10.14 0.03 0.14 ind:fut:2s; +brosserez brosser ver 7.65 10.14 0.14 0.00 ind:fut:2p; +brosses brosse nom f p 8.43 19.59 1.14 3.58 +brosseur brosseur nom m s 0.00 0.20 0.00 0.07 +brosseurs brosseur nom m p 0.00 0.20 0.00 0.14 +brossez brosser ver 7.65 10.14 0.44 0.00 imp:pre:2p;ind:pre:2p; +brossier brossier nom m s 0.00 0.07 0.00 0.07 +brossé brosser ver m s 7.65 10.14 1.23 1.82 par:pas; +brossée brosser ver f s 7.65 10.14 0.04 0.34 par:pas; +brossées brosser ver f p 7.65 10.14 0.44 0.14 par:pas; +brossés brosser ver m p 7.65 10.14 0.12 0.54 par:pas; +brou brou nom m s 0.02 0.74 0.02 0.74 +brouet brouet nom m s 0.06 0.81 0.04 0.74 +brouets brouet nom m p 0.06 0.81 0.01 0.07 +brouetta brouetter ver 0.00 0.20 0.00 0.07 ind:pas:3s; +brouettait brouetter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +brouette brouette nom f s 1.16 6.76 1.10 5.14 +brouetter brouetter ver 0.00 0.20 0.00 0.07 inf; +brouettes brouette nom f p 1.16 6.76 0.06 1.62 +brouettée brouettée nom f s 0.00 0.27 0.00 0.14 +brouettées brouettée nom f p 0.00 0.27 0.00 0.14 +brouhaha brouhaha nom m s 4.98 9.66 4.98 9.39 +brouhahas brouhaha nom m p 4.98 9.66 0.00 0.27 +brouilla brouiller ver 6.12 24.12 0.00 0.81 ind:pas:3s; +brouillade brouillade nom f s 0.00 0.07 0.00 0.07 +brouillage brouillage nom m s 0.62 0.95 0.60 0.74 +brouillages brouillage nom m p 0.62 0.95 0.02 0.20 +brouillaient brouiller ver 6.12 24.12 0.03 1.49 ind:imp:3p; +brouillait brouiller ver 6.12 24.12 0.01 3.92 ind:imp:3s; +brouillamini brouillamini nom m s 0.01 0.27 0.01 0.27 +brouillant brouiller ver 6.12 24.12 0.21 0.95 par:pre; +brouillard brouillard nom m s 10.88 35.20 10.51 32.84 +brouillardeuse brouillardeux adj f s 0.00 0.27 0.00 0.07 +brouillardeux brouillardeux adj m s 0.00 0.27 0.00 0.20 +brouillards brouillard nom m p 10.88 35.20 0.37 2.36 +brouillassait brouillasser ver 0.00 0.07 0.00 0.07 ind:imp:3s; +brouillasse brouillasse nom f s 0.00 0.27 0.00 0.27 +brouille brouiller ver 6.12 24.12 1.20 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brouillent brouiller ver 6.12 24.12 0.29 1.35 ind:pre:3p; +brouiller brouiller ver 6.12 24.12 1.33 4.32 inf; +brouilleraient brouiller ver 6.12 24.12 0.02 0.00 cnd:pre:3p; +brouillerait brouiller ver 6.12 24.12 0.00 0.07 cnd:pre:3s; +brouillerons brouiller ver 6.12 24.12 0.10 0.07 ind:fut:1p; +brouilles brouiller ver 6.12 24.12 0.06 0.07 ind:pre:2s;sub:pre:2s; +brouilleur brouilleur nom m s 0.78 0.00 0.66 0.00 +brouilleurs brouilleur nom m p 0.78 0.00 0.12 0.00 +brouillez brouiller ver 6.12 24.12 0.10 0.00 imp:pre:2p;ind:pre:2p; +brouillon brouillon nom m s 1.17 4.93 1.12 3.18 +brouillonne brouillon adj f s 0.39 1.96 0.10 0.47 +brouillonnes brouillon adj f p 0.39 1.96 0.00 0.14 +brouillonné brouillonner ver m s 0.00 0.07 0.00 0.07 par:pas; +brouillons brouillon adj m p 0.39 1.96 0.19 0.41 +brouillât brouiller ver 6.12 24.12 0.00 0.20 sub:imp:3s; +brouillèrent brouiller ver 6.12 24.12 0.00 0.41 ind:pas:3p; +brouillé brouiller ver m s 6.12 24.12 1.52 3.51 par:pas; +brouillée brouiller ver f s 6.12 24.12 0.24 1.62 par:pas; +brouillées brouillé adj f p 2.44 4.32 0.20 0.61 +brouillés brouillé adj m p 2.44 4.32 1.72 1.35 +brouis brouir ver 0.00 0.14 0.00 0.07 ind:pas:1s; +brouit brouir ver 0.00 0.14 0.00 0.07 ind:pre:3s; +broum broum ono 0.19 0.74 0.19 0.74 +broussaille broussaille nom f s 1.94 7.16 0.50 2.64 +broussailles broussaille nom f p 1.94 7.16 1.44 4.53 +broussailleuse broussailleux adj f s 0.05 1.96 0.02 0.41 +broussailleuses broussailleux adj f p 0.05 1.96 0.00 0.20 +broussailleux broussailleux adj m 0.05 1.96 0.03 1.35 +broussait brousser ver 0.00 0.07 0.00 0.07 ind:imp:3s; +broussard broussard nom m s 0.28 0.14 0.28 0.14 +brousse brousse nom f s 0.95 11.01 0.95 10.88 +brousses brousse nom f p 0.95 11.01 0.00 0.14 +brout brout nom m s 0.10 0.81 0.10 0.81 +brouta brouter ver 1.65 6.01 0.00 0.07 ind:pas:3s; +broutage broutage nom m s 0.03 0.00 0.03 0.00 +broutaient brouter ver 1.65 6.01 0.01 0.88 ind:imp:3p; +broutait brouter ver 1.65 6.01 0.00 0.47 ind:imp:3s; +broutant brouter ver 1.65 6.01 0.01 0.74 par:pre; +broutantes broutant adj f p 0.00 0.07 0.00 0.07 +broutard broutard nom m s 0.01 0.14 0.01 0.14 +broute brouter ver 1.65 6.01 0.36 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +broutent brouter ver 1.65 6.01 0.16 0.34 ind:pre:3p; +brouter brouter ver 1.65 6.01 0.70 2.16 inf; +brouterai brouter ver 1.65 6.01 0.00 0.07 ind:fut:1s; +brouteraient brouter ver 1.65 6.01 0.00 0.07 cnd:pre:3p; +broutes brouter ver 1.65 6.01 0.14 0.07 ind:pre:2s; +brouteur brouteur adj m s 0.19 0.41 0.01 0.00 +brouteurs brouteur adj m p 0.19 0.41 0.00 0.14 +brouteuse brouteur adj f s 0.19 0.41 0.09 0.14 +brouteuses brouteur adj f p 0.19 0.41 0.09 0.14 +broutez brouter ver 1.65 6.01 0.02 0.00 imp:pre:2p;ind:pre:2p; +broutille broutille nom f s 1.87 1.82 0.77 0.61 +broutilles broutille nom f p 1.87 1.82 1.10 1.22 +broutèrent brouter ver 1.65 6.01 0.00 0.07 ind:pas:3p; +brouté brouter ver m s 1.65 6.01 0.24 0.20 par:pas; +broutée brouter ver f s 1.65 6.01 0.01 0.07 par:pas; +broutés brouter ver m p 1.65 6.01 0.00 0.07 par:pas; +brown_sugar brown_sugar nom m 0.00 0.07 0.00 0.07 +browning browning nom m s 0.00 0.20 0.00 0.14 +brownings browning nom m p 0.00 0.20 0.00 0.07 +broya broyer ver 4.08 8.85 0.01 0.20 ind:pas:3s; +broyage broyage nom m s 0.08 0.14 0.08 0.07 +broyages broyage nom m p 0.08 0.14 0.00 0.07 +broyaient broyer ver 4.08 8.85 0.00 0.41 ind:imp:3p; +broyais broyer ver 4.08 8.85 0.04 0.27 ind:imp:1s;ind:imp:2s; +broyait broyer ver 4.08 8.85 0.10 1.28 ind:imp:3s; +broyant broyer ver 4.08 8.85 0.00 1.08 par:pre; +broyer broyer ver 4.08 8.85 1.61 1.89 inf; +broyeur broyeur nom m s 1.56 0.27 1.54 0.20 +broyeurs broyeur nom m p 1.56 0.27 0.03 0.07 +broyeuse broyeur adj f s 0.12 0.54 0.06 0.41 +broyez broyer ver 4.08 8.85 0.23 0.00 imp:pre:2p;ind:pre:2p; +broyèrent broyer ver 4.08 8.85 0.00 0.07 ind:pas:3p; +broyé broyer ver m s 4.08 8.85 0.55 1.01 par:pas; +broyée broyé adj f s 0.75 1.82 0.16 0.54 +broyées broyé adj f p 0.75 1.82 0.19 0.14 +broyés broyer ver m p 4.08 8.85 0.27 0.27 par:pas; +brrr brrr ono 0.31 1.82 0.31 1.82 +brèche_dent brèche_dent nom p 0.00 0.07 0.00 0.07 +brèche brèche nom f s 3.83 9.59 3.54 7.70 +brèches brèche nom f p 3.83 9.59 0.28 1.89 +brème brème nom f s 0.05 1.49 0.05 0.54 +brèmes brème nom f p 0.05 1.49 0.00 0.95 +brève bref adj f s 15.63 74.80 3.86 20.41 +brèves bref adj f p 15.63 74.80 0.52 8.99 +bru bru nom f s 1.45 3.24 1.44 2.84 +bruant bruant nom m s 0.00 0.14 0.00 0.07 +bruants bruant nom m p 0.00 0.14 0.00 0.07 +brucellose brucellose nom f s 0.03 0.07 0.03 0.07 +bréchet bréchet nom m s 0.11 0.54 0.11 0.54 +brugeois brugeois adj m 0.00 0.34 0.00 0.14 +brugeoise brugeois adj f s 0.00 0.34 0.00 0.14 +brugeoises brugeois adj f p 0.00 0.34 0.00 0.07 +bruges bruges nom s 0.00 0.07 0.00 0.07 +brugnon brugnon nom m s 0.14 0.27 0.00 0.20 +brugnons brugnon nom m p 0.14 0.27 0.14 0.07 +bréhaigne bréhaigne adj f s 0.00 0.27 0.00 0.14 +bréhaignes bréhaigne adj f p 0.00 0.27 0.00 0.14 +bruinait bruiner ver 0.14 0.95 0.00 0.54 ind:imp:3s; +bruinasse bruiner ver 0.14 0.95 0.00 0.07 sub:imp:1s; +bruine bruiner ver 0.14 0.95 0.14 0.27 ind:pre:3s; +bruiner bruiner ver 0.14 0.95 0.00 0.07 inf; +bruines bruine nom f p 0.06 2.77 0.00 0.07 +bruire bruire ver 0.48 2.97 0.23 1.42 inf; +bruissa bruisser ver 0.15 3.45 0.00 0.07 ind:pas:3s; +bruissaient bruisser ver 0.15 3.45 0.00 0.74 ind:imp:3p; +bruissait bruisser ver 0.15 3.45 0.00 1.42 ind:imp:3s; +bruissant bruissant adj m s 0.02 4.66 0.01 1.35 +bruissante bruissant adj f s 0.02 4.66 0.00 2.09 +bruissantes bruissant adj f p 0.02 4.66 0.01 0.68 +bruissants bruissant adj m p 0.02 4.66 0.00 0.54 +bruisse bruisser ver 0.15 3.45 0.01 0.14 ind:pre:3s; +bruissement bruissement nom m s 0.77 8.24 0.75 6.96 +bruissements bruissement nom m p 0.77 8.24 0.02 1.28 +bruissent bruisser ver 0.15 3.45 0.14 0.47 ind:pre:3p; +bruissé bruisser ver m s 0.15 3.45 0.00 0.07 par:pas; +bruit bruit nom m s 94.13 281.49 78.94 223.18 +bruita bruiter ver 0.01 0.07 0.01 0.00 ind:pas:3s; +bruitage bruitage nom m s 0.23 0.54 0.04 0.47 +bruitages bruitage nom m p 0.23 0.54 0.20 0.07 +bruiter bruiter ver 0.01 0.07 0.00 0.07 inf; +bruiteur bruiteur nom m s 0.04 0.20 0.03 0.20 +bruiteuse bruiteur nom f s 0.04 0.20 0.01 0.00 +bruits bruit nom m p 94.13 281.49 15.18 58.31 +brêles brêler ver 0.02 0.07 0.02 0.07 ind:pre:2s; +brumaille brumaille nom f s 0.00 0.07 0.00 0.07 +brumaire brumaire nom m s 0.10 0.27 0.10 0.27 +brumassait brumasser ver 0.00 0.07 0.00 0.07 ind:imp:3s; +brume brume nom f s 5.07 42.57 4.17 35.88 +brument brumer ver 0.00 0.47 0.00 0.47 ind:pre:3p; +brumes brume nom f p 5.07 42.57 0.91 6.69 +brumeuse brumeux adj f s 1.19 6.89 0.10 2.09 +brumeuses brumeux adj f p 1.19 6.89 0.05 0.61 +brumeux brumeux adj m 1.19 6.89 1.04 4.19 +brumisateur brumisateur nom m s 0.01 0.00 0.01 0.00 +brun brun adj m s 13.16 68.18 3.39 21.35 +brunch brunch nom m s 1.63 0.14 1.53 0.00 +brunches brunch nom m p 1.63 0.14 0.02 0.07 +brunchs brunch nom m p 1.63 0.14 0.08 0.07 +brune brun adj f s 13.16 68.18 6.51 25.34 +brunes brune nom f p 5.20 7.77 0.76 1.35 +brunet brunet adj m s 0.04 0.14 0.00 0.07 +brunette brunette nom f s 0.35 0.54 0.28 0.47 +brunettes brunette nom f p 0.35 0.54 0.07 0.07 +bruni bruni adj m s 0.01 1.96 0.01 0.81 +brunie brunir ver f s 0.19 3.24 0.01 0.54 par:pas; +brunies brunir ver f p 0.19 3.24 0.00 0.61 par:pas; +brunir brunir ver 0.19 3.24 0.16 0.74 inf; +brunirent brunir ver 0.19 3.24 0.00 0.07 ind:pas:3p; +brunis bruni adj m p 0.01 1.96 0.00 0.27 +brunissage brunissage nom m s 0.02 0.00 0.02 0.00 +brunissaient brunir ver 0.19 3.24 0.00 0.07 ind:imp:3p; +brunissent brunir ver 0.19 3.24 0.01 0.20 ind:pre:3p; +brunissoir brunissoir nom m s 0.00 0.07 0.00 0.07 +brunissures brunissure nom f p 0.00 0.07 0.00 0.07 +brunit brunir ver 0.19 3.24 0.00 0.34 ind:pre:3s;ind:pas:3s; +brunâtre brunâtre adj s 0.04 5.20 0.03 3.51 +brunâtres brunâtre adj p 0.04 5.20 0.01 1.69 +bruns brun adj m p 13.16 68.18 2.69 10.88 +brus bru nom f p 1.45 3.24 0.01 0.41 +brushing brushing nom m s 0.65 0.34 0.65 0.34 +brésil brésil nom m s 0.10 0.20 0.10 0.07 +brésilien brésilien nom m s 2.88 2.43 1.61 0.61 +brésilienne brésilien adj f s 1.92 4.32 0.70 1.55 +brésiliennes brésilien adj f p 1.92 4.32 0.05 0.61 +brésiliens brésilien nom m p 2.88 2.43 0.89 1.08 +brésils brésil nom m p 0.10 0.20 0.00 0.14 +brusqua brusquer ver 1.83 4.05 0.00 0.20 ind:pas:3s; +brusquai brusquer ver 1.83 4.05 0.00 0.07 ind:pas:1s; +brusquait brusquer ver 1.83 4.05 0.00 0.07 ind:imp:3s; +brusquant brusquer ver 1.83 4.05 0.00 0.07 par:pre; +brusque brusque adj s 2.69 35.34 1.77 26.76 +brusquement brusquement adv 4.88 111.42 4.88 111.42 +brusquent brusquer ver 1.83 4.05 0.00 0.07 ind:pre:3p; +brusquer brusquer ver 1.83 4.05 0.83 2.03 inf; +brusquerai brusquer ver 1.83 4.05 0.15 0.00 ind:fut:1s; +brusqueraient brusquer ver 1.83 4.05 0.01 0.00 cnd:pre:3p; +brusquerie brusquerie nom f s 0.09 4.32 0.09 4.26 +brusqueries brusquerie nom f p 0.09 4.32 0.00 0.07 +brusques brusque adj p 2.69 35.34 0.92 8.58 +brusquette brusquet adj f s 0.00 0.07 0.00 0.07 +brusquez brusquer ver 1.83 4.05 0.34 0.20 imp:pre:2p;ind:pre:2p; +brusquons brusquer ver 1.83 4.05 0.17 0.00 imp:pre:1p; +brusquât brusquer ver 1.83 4.05 0.00 0.07 sub:imp:3s; +brusqué brusquer ver m s 1.83 4.05 0.04 0.34 par:pas; +brusquée brusquer ver f s 1.83 4.05 0.14 0.14 par:pas; +brut brut adj m s 3.86 8.65 1.38 3.31 +brutal brutal adj m s 9.82 35.34 5.29 15.47 +brutale brutal adj f s 9.82 35.34 3.29 14.19 +brutalement brutalement adv 2.89 23.11 2.89 23.11 +brutales brutal adj f p 9.82 35.34 0.32 3.24 +brutalisaient brutaliser ver 1.41 1.15 0.02 0.00 ind:imp:3p; +brutalisait brutaliser ver 1.41 1.15 0.08 0.00 ind:imp:3s; +brutalisant brutaliser ver 1.41 1.15 0.01 0.07 par:pre; +brutalise brutaliser ver 1.41 1.15 0.12 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brutaliser brutaliser ver 1.41 1.15 0.48 0.41 inf; +brutaliserai brutaliser ver 1.41 1.15 0.01 0.00 ind:fut:1s; +brutaliserait brutaliser ver 1.41 1.15 0.00 0.07 cnd:pre:3s; +brutalisez brutaliser ver 1.41 1.15 0.07 0.00 imp:pre:2p;ind:pre:2p; +brutalisé brutaliser ver m s 1.41 1.15 0.49 0.20 par:pas; +brutalisée brutaliser ver f s 1.41 1.15 0.08 0.14 par:pas; +brutalisées brutaliser ver f p 1.41 1.15 0.02 0.00 par:pas; +brutalisés brutaliser ver m p 1.41 1.15 0.03 0.07 par:pas; +brutalité brutalité nom f s 3.11 11.15 2.87 9.93 +brutalités brutalité nom f p 3.11 11.15 0.24 1.22 +brutaux brutal adj m p 9.82 35.34 0.92 2.43 +brute brute nom f s 14.03 12.09 9.04 7.57 +brutes brute nom f p 14.03 12.09 5.00 4.53 +bruts brut adj m p 3.86 8.65 0.42 0.74 +bréviaire bréviaire nom m s 0.21 1.69 0.21 1.69 +bruxellois bruxellois adj m 0.00 0.54 0.00 0.47 +bruxelloise bruxellois adj f s 0.00 0.54 0.00 0.07 +bruyamment bruyamment adv 0.95 10.54 0.95 10.54 +bruyant bruyant adj m s 5.88 16.82 2.91 4.80 +bruyante bruyant adj f s 5.88 16.82 1.17 5.61 +bruyantes bruyant adj f p 5.88 16.82 0.45 1.82 +bruyants bruyant adj m p 5.88 16.82 1.37 4.59 +bruyère bruyère nom f s 0.58 6.01 0.53 4.12 +bruyères bruyère nom f p 0.58 6.01 0.05 1.89 +bègue bègue nom s 0.24 0.54 0.20 0.41 +bègues bègue nom p 0.24 0.54 0.04 0.14 +bé bé ono 0.85 1.15 0.85 1.15 +bu boire ver m s 339.06 274.32 53.10 40.07 par:pas; +béa béer ver 0.23 3.65 0.00 0.20 ind:pas:3s; +bua buer ver 0.09 0.00 0.09 0.00 ind:pas:3s; +béaient béer ver 0.23 3.65 0.00 0.61 ind:imp:3p; +béait béer ver 0.23 3.65 0.10 1.01 ind:imp:3s; +béance béance nom f s 0.16 0.61 0.16 0.61 +buanderie buanderie nom f s 0.81 1.69 0.81 1.55 +buanderies buanderie nom f p 0.81 1.69 0.00 0.14 +béant béant adj m s 1.21 10.34 0.34 2.77 +béante béant adj f s 1.21 10.34 0.44 4.26 +béantes béant adj f p 1.21 10.34 0.21 2.30 +béants béant adj m p 1.21 10.34 0.22 1.01 +béarnais béarnais adj m p 0.13 0.00 0.01 0.00 +béarnaise béarnais adj f s 0.13 0.00 0.12 0.00 +béat béat adj m s 0.26 4.73 0.21 1.89 +béate béat adj f s 0.26 4.73 0.05 2.36 +béatement béatement adv 0.01 1.42 0.01 1.42 +béates béat adj f p 0.26 4.73 0.00 0.14 +béatification béatification nom f s 0.05 0.27 0.05 0.20 +béatifications béatification nom f p 0.05 0.27 0.00 0.07 +béatifier béatifier ver 0.11 0.54 0.00 0.20 inf; +béatifique béatifique adj m s 0.00 0.14 0.00 0.14 +béatifié béatifier ver m s 0.11 0.54 0.11 0.14 par:pas; +béatifiée béatifier ver f s 0.11 0.54 0.00 0.07 par:pas; +béatifiés béatifier ver m p 0.11 0.54 0.00 0.14 par:pas; +béatitude béatitude nom f s 0.58 5.74 0.58 5.47 +béatitudes béatitude nom f p 0.58 5.74 0.00 0.27 +béats béat adj m p 0.26 4.73 0.00 0.34 +bubble_gum bubble_gum nom m s 0.08 0.07 0.07 0.07 +bubble_gum bubble_gum nom m s 0.08 0.07 0.01 0.00 +bubon bubon nom m s 0.22 0.34 0.02 0.14 +bubonique bubonique adj s 0.25 0.07 0.25 0.07 +bubons bubon nom m p 0.22 0.34 0.20 0.20 +bébé bébé nom m s 191.63 45.20 173.82 36.22 +bébé_éprouvette bébé_éprouvette nom m p 0.01 0.00 0.01 0.00 +bébés bébé nom m p 191.63 45.20 17.81 8.99 +bébête bébête adj s 0.32 2.91 0.25 2.77 +bébêtes bébête adj p 0.32 2.91 0.07 0.14 +bécabunga bécabunga nom m s 0.00 0.07 0.00 0.07 +bécane bécane nom f s 1.77 4.80 1.46 3.92 +bécanes bécane nom f p 1.77 4.80 0.32 0.88 +bécard bécard nom m s 0.00 0.07 0.00 0.07 +bécarre bécarre nom m s 0.02 0.07 0.02 0.07 +bécasse bécasse nom f s 1.56 1.08 1.40 0.54 +bécasses bécasse nom f p 1.56 1.08 0.16 0.54 +bécassine bécassine nom f s 0.01 0.20 0.01 0.14 +bécassines bécassine nom f p 0.01 0.20 0.00 0.07 +buccal buccal adj m s 0.54 0.34 0.16 0.14 +buccale buccal adj f s 0.54 0.34 0.33 0.07 +buccales buccal adj f p 0.54 0.34 0.04 0.07 +buccaux buccal adj m p 0.54 0.34 0.03 0.07 +buccin buccin nom m s 0.00 0.14 0.00 0.14 +buccinateur buccinateur nom m s 0.00 0.07 0.00 0.07 +bucco_génital bucco_génital adj m s 0.11 0.00 0.06 0.00 +bucco_génital bucco_génital adj f p 0.11 0.00 0.02 0.00 +bucco_génital bucco_génital adj m p 0.11 0.00 0.02 0.00 +bucco bucco nom m s 0.21 0.20 0.21 0.20 +buccogénitales buccogénital adj f p 0.01 0.00 0.01 0.00 +bêchaient bêcher ver 0.55 2.70 0.00 0.14 ind:imp:3p; +bêchait bêcher ver 0.55 2.70 0.01 0.41 ind:imp:3s; +béchamel béchamel nom f s 0.37 0.41 0.37 0.41 +bêchant bêcher ver 0.55 2.70 0.14 0.14 par:pre; +bêche bêche nom f s 0.46 3.72 0.42 3.51 +bêchent bêcher ver 0.55 2.70 0.00 0.14 ind:pre:3p; +bécher bécher nom m s 0.01 0.00 0.01 0.00 +bêcher bêcher ver 0.55 2.70 0.36 1.15 inf; +bêches bêche nom f p 0.46 3.72 0.04 0.20 +bêcheur bêcheur adj m s 0.52 0.95 0.22 0.41 +bêcheurs bêcheur nom m p 0.35 1.22 0.00 0.20 +bêcheuse bêcheur adj f s 0.52 0.95 0.28 0.34 +bêcheuses bêcheuse nom f p 0.04 0.00 0.04 0.00 +bêché bêcher ver m s 0.55 2.70 0.00 0.47 par:pas; +bucoliastes bucoliaste nom m p 0.00 0.07 0.00 0.07 +bucolique bucolique adj s 0.17 1.22 0.14 0.95 +bucoliques bucolique adj m p 0.17 1.22 0.03 0.27 +bécot bécot nom m s 0.42 0.47 0.41 0.20 +bécotait bécoter ver 1.05 0.88 0.05 0.07 ind:imp:3s; +bécotant bécoter ver 1.05 0.88 0.00 0.14 par:pre; +bécote bécoter ver 1.05 0.88 0.21 0.14 ind:pre:1s;ind:pre:3s;sub:pre:3s; +bécotent bécoter ver 1.05 0.88 0.27 0.07 ind:pre:3p; +bécoter bécoter ver 1.05 0.88 0.28 0.41 inf; +bécoteur bécoteur nom m s 0.02 0.00 0.02 0.00 +bécots bécot nom m p 0.42 0.47 0.01 0.27 +bécoté bécoter ver m s 1.05 0.88 0.13 0.00 par:pas; +bécotée bécoter ver f s 1.05 0.88 0.00 0.07 par:pas; +bécotés bécoter ver m p 1.05 0.88 0.11 0.00 par:pas; +bucranes bucrane nom m p 0.00 0.14 0.00 0.14 +bucéphales bucéphale nom m p 0.00 0.07 0.00 0.07 +bédane bédane nom m s 0.00 0.20 0.00 0.20 +buddha buddha nom m s 0.40 0.00 0.40 0.00 +budget budget nom m s 11.21 6.62 10.54 5.34 +budgets budget nom m p 11.21 6.62 0.67 1.28 +budgétaire budgétaire adj s 1.08 0.27 0.55 0.07 +budgétairement budgétairement adv 0.00 0.07 0.00 0.07 +budgétaires budgétaire adj p 1.08 0.27 0.53 0.20 +budgétisation budgétisation nom f s 0.01 0.00 0.01 0.00 +budgétivores budgétivore nom p 0.00 0.07 0.00 0.07 +bédouin bédouin adj m s 0.26 0.47 0.24 0.00 +bédouine bédouin nom f s 0.23 0.54 0.14 0.00 +bédouines bédouin nom f p 0.23 0.54 0.02 0.00 +bédouins bédouin nom m p 0.23 0.54 0.04 0.20 +bédé bédé nom f s 0.29 0.00 0.09 0.00 +bédéphiles bédéphile nom p 0.01 0.00 0.01 0.00 +bédés bédé nom f p 0.29 0.00 0.20 0.00 +bée bé adj f s 0.96 5.34 0.96 5.14 +bue bu adj f s 3.04 4.86 0.44 2.36 +buen_retiro buen_retiro nom m 0.00 0.14 0.00 0.14 +béent béer ver 0.23 3.65 0.10 0.14 ind:pre:3p; +béer béer ver 0.23 3.65 0.00 0.27 inf; +bées bé adj f p 0.96 5.34 0.00 0.20 +bues bu adj f p 3.04 4.86 0.18 0.34 +buffalo buffalo nom s 0.05 0.00 0.05 0.00 +buffet buffet nom m s 6.93 21.35 6.63 20.14 +buffets buffet nom m p 6.93 21.35 0.30 1.22 +buffle buffle nom m s 1.79 4.19 1.16 1.96 +buffles buffle nom m p 1.79 4.19 0.62 2.23 +buffleterie buffleterie nom f s 0.00 0.74 0.00 0.14 +buffleteries buffleterie nom f p 0.00 0.74 0.00 0.61 +bufflonne bufflon nom f s 0.00 0.07 0.00 0.07 +bufo bufo nom m s 0.01 0.00 0.01 0.00 +bug bug nom m s 1.90 0.00 0.64 0.00 +bégaie bégayer ver 2.61 7.50 0.59 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bégaiement bégaiement nom m s 0.54 2.23 0.54 1.49 +bégaiements bégaiement nom m p 0.54 2.23 0.00 0.74 +bégaient bégayer ver 2.61 7.50 0.00 0.07 ind:pre:3p; +bégaiera bégayer ver 2.61 7.50 0.01 0.00 ind:fut:3s; +bégaies bégayer ver 2.61 7.50 0.23 0.07 ind:pre:2s; +bégaya bégayer ver 2.61 7.50 0.01 1.15 ind:pas:3s; +bégayai bégayer ver 2.61 7.50 0.00 0.14 ind:pas:1s; +bégayaient bégayer ver 2.61 7.50 0.00 0.07 ind:imp:3p; +bégayais bégayer ver 2.61 7.50 0.08 0.27 ind:imp:1s;ind:imp:2s; +bégayait bégayer ver 2.61 7.50 0.18 1.76 ind:imp:3s; +bégayant bégayer ver 2.61 7.50 0.00 0.95 par:pre; +bégayante bégayant adj f s 0.01 0.68 0.01 0.14 +bégayantes bégayant adj f p 0.01 0.68 0.00 0.07 +bégayants bégayant adj m p 0.01 0.68 0.00 0.07 +bégaye bégayer ver 2.61 7.50 0.41 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bégayer bégayer ver 2.61 7.50 0.64 1.01 inf; +bégayes bégayer ver 2.61 7.50 0.05 0.00 ind:pre:2s; +bégayeur bégayeur adj m s 0.00 0.14 0.00 0.14 +bégayez bégayer ver 2.61 7.50 0.15 0.07 ind:pre:2p; +bégayé bégayer ver m s 2.61 7.50 0.27 0.27 par:pas; +bégayées bégayer ver f p 2.61 7.50 0.00 0.07 par:pas; +buggy buggy nom m s 0.28 0.00 0.28 0.00 +bugle bugle nom m s 0.07 0.34 0.06 0.34 +bugler bugler ver 0.07 0.00 0.07 0.00 inf; +bugles bugle nom p 0.07 0.34 0.01 0.00 +bugne bugne nom f s 0.01 0.14 0.01 0.07 +bugnes bugne nom f p 0.01 0.14 0.00 0.07 +bugné bugner ver m s 0.01 0.00 0.01 0.00 par:pas; +bégonias bégonia nom m p 0.05 1.15 0.05 1.15 +bugs bug nom m p 1.90 0.00 1.27 0.00 +bégueule bégueule nom f s 0.07 0.20 0.06 0.07 +bégueulerie bégueulerie nom f s 0.00 0.07 0.00 0.07 +bégueules bégueule nom f p 0.07 0.20 0.01 0.14 +béguin béguin nom m s 3.11 2.57 3.09 2.16 +béguinage béguinage nom m s 0.00 0.07 0.00 0.07 +béguine béguine nom f s 0.00 0.14 0.00 0.14 +béguineuse béguineuse nom f s 0.00 0.14 0.00 0.14 +béguins béguin nom m p 3.11 2.57 0.02 0.41 +bégum bégum nom f s 0.00 0.27 0.00 0.27 +béhème béhème nom f s 0.20 0.00 0.20 0.00 +béhémoth béhémoth nom m s 0.00 0.47 0.00 0.47 +building building nom m s 2.01 3.24 1.67 1.42 +buildings building nom m p 2.01 3.24 0.34 1.82 +buires buire nom f p 0.00 0.07 0.00 0.07 +buis buis nom m 0.03 7.23 0.03 7.23 +buisson_ardent buisson_ardent nom m s 0.01 0.00 0.01 0.00 +buisson buisson nom m s 7.73 27.09 3.81 10.00 +buissonnant buissonner ver 0.00 0.20 0.00 0.07 par:pre; +buissonnants buissonnant adj m p 0.00 0.14 0.00 0.07 +buissonne buissonner ver 0.00 0.20 0.00 0.07 ind:pre:3s; +buissonner buissonner ver 0.00 0.20 0.00 0.07 inf; +buissonneuse buissonneux adj f s 0.00 0.41 0.00 0.07 +buissonneuses buissonneux adj f p 0.00 0.41 0.00 0.07 +buissonneux buissonneux adj m p 0.00 0.41 0.00 0.27 +buissonnière buissonnier adj f s 0.79 1.55 0.79 1.22 +buissonnières buissonnier adj f p 0.79 1.55 0.00 0.34 +buissons buisson nom m p 7.73 27.09 3.92 17.09 +béjaune béjaune nom m s 0.00 0.20 0.00 0.20 +bélître bélître nom m s 0.01 0.07 0.01 0.07 +bêlaient bêler ver 0.23 1.55 0.00 0.20 ind:imp:3p; +bêlait bêler ver 0.23 1.55 0.00 0.20 ind:imp:3s; +bêlant bêler ver 0.23 1.55 0.03 0.34 par:pre; +bêlantes bêlant adj f p 0.16 0.47 0.00 0.27 +bêlants bêlant adj m p 0.16 0.47 0.14 0.07 +bulbe bulbe nom m s 0.47 1.82 0.31 1.01 +bulbes bulbe nom m p 0.47 1.82 0.16 0.81 +bulbeuse bulbeux adj f s 0.16 0.07 0.14 0.00 +bulbeux bulbeux adj m s 0.16 0.07 0.02 0.07 +bulbul bulbul nom m s 0.00 0.47 0.00 0.47 +bêle bêler ver 0.23 1.55 0.17 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bêlement bêlement nom m s 0.12 1.22 0.12 0.54 +bêlements bêlement nom m p 0.12 1.22 0.00 0.68 +bêlent bêler ver 0.23 1.55 0.00 0.14 ind:pre:3p; +bêler bêler ver 0.23 1.55 0.02 0.27 inf; +bulgare bulgare adj s 1.38 0.95 1.14 0.74 +bulgares bulgare nom p 0.79 1.08 0.28 0.61 +bulgaro bulgaro adv 0.00 0.07 0.00 0.07 +bulge bulge nom m s 0.02 0.00 0.02 0.00 +bélier bélier nom m s 1.51 3.99 1.32 3.11 +béliers bélier nom m p 1.51 3.99 0.19 0.88 +bélinogramme bélinogramme nom m s 0.00 0.07 0.00 0.07 +bull_dog bull_dog nom m s 0.01 0.68 0.01 0.61 +bull_dog bull_dog nom m p 0.01 0.68 0.00 0.07 +bull_finch bull_finch nom m s 0.00 0.14 0.00 0.14 +bull_terrier bull_terrier nom m s 0.02 0.00 0.02 0.00 +bull bull nom m s 1.04 0.61 0.61 0.41 +bulla buller ver 0.35 0.20 0.00 0.14 ind:pas:3s; +bullaire bullaire nom m s 0.01 0.00 0.01 0.00 +bulldog bulldog nom m s 0.49 0.20 0.30 0.14 +bulldogs bulldog nom m p 0.49 0.20 0.19 0.07 +bulldozer bulldozer nom m s 2.33 2.64 1.26 1.89 +bulldozers bulldozer nom m p 2.33 2.64 1.07 0.74 +bulle bulle nom f s 8.11 16.55 2.99 6.62 +buller buller ver 0.35 0.20 0.12 0.07 inf; +bulles bulle nom f p 8.11 16.55 5.12 9.93 +bulletin bulletin nom m s 6.35 7.50 4.99 5.41 +bulletins bulletin nom m p 6.35 7.50 1.36 2.09 +bulleux bulleux adj m s 0.00 0.14 0.00 0.14 +bullez buller ver 0.35 0.20 0.01 0.00 imp:pre:2p; +bulls bull nom m p 1.04 0.61 0.43 0.20 +bulot bulot nom m s 0.01 0.07 0.01 0.00 +bulots bulot nom m p 0.01 0.07 0.00 0.07 +bélouga bélouga nom m s 0.02 0.00 0.02 0.00 +bêlé bêler ver m s 0.23 1.55 0.01 0.27 par:pas; +béluga béluga nom m s 0.02 0.00 0.02 0.00 +bémol bémol nom m s 0.88 1.01 0.88 0.81 +bémolisé bémoliser ver m s 0.00 0.07 0.00 0.07 par:pas; +bémols bémol nom m p 0.88 1.01 0.00 0.20 +bumper bumper nom m 0.14 0.14 0.14 0.14 +buna buna nom m s 0.01 0.00 0.01 0.00 +bénard bénard nom m s 0.00 1.82 0.00 1.69 +bénarde bénard adj f s 0.00 0.34 0.00 0.14 +bénards bénard nom m p 0.00 1.82 0.00 0.14 +bénef bénef nom m s 0.71 0.68 0.43 0.61 +bénefs bénef nom m p 0.71 0.68 0.28 0.07 +bungalow bungalow nom m s 0.03 12.84 0.01 12.43 +bungalows bungalow nom m p 0.03 12.84 0.02 0.41 +béni bénir ver m s 48.77 18.92 10.90 4.26 par:pas; +bénie bénir ver f s 48.77 18.92 5.51 2.16 par:pas; +bénies bénir ver f p 48.77 18.92 0.72 0.47 par:pas; +bénigne bénin adj f s 1.56 3.45 0.88 1.69 +bénignement bénignement adv 0.00 0.07 0.00 0.07 +bénignes bénin adj f p 1.56 3.45 0.10 0.81 +bénignité bénignité nom f s 0.01 0.20 0.01 0.20 +bénin bénin adj m s 1.56 3.45 0.56 0.74 +béninois béninois adj m s 0.00 0.14 0.00 0.14 +bénins bénin adj m p 1.56 3.45 0.03 0.20 +bénir bénir ver 48.77 18.92 2.36 3.38 inf; +bénira bénir ver 48.77 18.92 0.66 0.20 ind:fut:3s; +bénirai bénir ver 48.77 18.92 0.05 0.00 ind:fut:1s; +bénirais bénir ver 48.77 18.92 0.01 0.14 cnd:pre:1s; +bénirait bénir ver 48.77 18.92 0.00 0.07 cnd:pre:3s; +béniras bénir ver 48.77 18.92 0.01 0.00 ind:fut:2s; +bénirez bénir ver 48.77 18.92 0.03 0.00 ind:fut:2p; +bénirons bénir ver 48.77 18.92 0.00 0.07 ind:fut:1p; +béniront bénir ver 48.77 18.92 0.04 0.00 ind:fut:3p; +bénis bénir ver m p 48.77 18.92 6.64 2.64 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bénissaient bénir ver 48.77 18.92 0.00 0.27 ind:imp:3p; +bénissais bénir ver 48.77 18.92 0.01 0.20 ind:imp:1s; +bénissait bénir ver 48.77 18.92 0.03 1.28 ind:imp:3s; +bénissant bénir ver 48.77 18.92 0.02 0.47 par:pre; +bénisse bénir ver 48.77 18.92 18.82 0.95 sub:pre:1s;sub:pre:3s; +bénissent bénir ver 48.77 18.92 0.47 0.20 ind:pre:3p; +bénisseur bénisseur adj m s 0.00 0.61 0.00 0.34 +bénisseurs bénisseur adj m p 0.00 0.61 0.00 0.14 +bénisseuse bénisseur adj f s 0.00 0.61 0.00 0.14 +bénissez bénir ver 48.77 18.92 1.62 0.20 imp:pre:2p;ind:pre:2p; +bénissions bénir ver 48.77 18.92 0.00 0.14 ind:imp:1p; +bénissons bénir ver 48.77 18.92 0.17 0.00 imp:pre:1p;ind:pre:1p; +bénit bénit adj m s 2.81 4.26 0.72 1.15 +bénite bénit adj f s 2.81 4.26 2.08 2.64 +bénites bénit adj f p 2.81 4.26 0.01 0.27 +bénitier bénitier nom m s 0.80 1.96 0.72 1.76 +bénitiers bénitier nom m p 0.80 1.96 0.07 0.20 +bénits bénit adj m p 2.81 4.26 0.00 0.20 +bunker bunker nom m s 4.51 0.81 3.89 0.68 +bunkers bunker nom m p 4.51 0.81 0.62 0.14 +bénouze bénouze nom m s 0.00 0.20 0.00 0.20 +bunraku bunraku nom m s 0.00 0.07 0.00 0.07 +bunsen bunsen nom m 0.00 0.07 0.00 0.07 +bénédicité bénédicité nom m s 0.43 0.34 0.41 0.27 +bénédicités bénédicité nom m p 0.43 0.34 0.02 0.07 +bénédictin bénédictin adj m s 0.04 0.95 0.01 0.34 +bénédictine bénédictin nom f s 0.19 0.74 0.03 0.20 +bénédictines bénédictin nom f p 0.19 0.74 0.14 0.20 +bénédictins bénédictin nom m p 0.19 0.74 0.01 0.14 +bénédiction bénédiction nom f s 11.15 8.18 10.61 7.43 +bénédictions bénédiction nom f p 11.15 8.18 0.54 0.74 +bénéfice bénéfice nom m s 8.97 11.42 4.31 8.04 +bénéfices bénéfice nom m p 8.97 11.42 4.66 3.38 +bénéficia bénéficier ver 3.85 9.66 0.00 0.27 ind:pas:3s; +bénéficiaient bénéficier ver 3.85 9.66 0.01 0.68 ind:imp:3p; +bénéficiaire bénéficiaire nom s 0.92 1.55 0.77 0.74 +bénéficiaires bénéficiaire nom p 0.92 1.55 0.15 0.81 +bénéficiais bénéficier ver 3.85 9.66 0.00 0.34 ind:imp:1s; +bénéficiait bénéficier ver 3.85 9.66 0.02 1.28 ind:imp:3s; +bénéficiant bénéficier ver 3.85 9.66 0.17 0.47 par:pre; +bénéficie bénéficier ver 3.85 9.66 1.05 0.88 ind:pre:1s;ind:pre:3s; +bénéficient bénéficier ver 3.85 9.66 0.16 0.47 ind:pre:3p; +bénéficier bénéficier ver 3.85 9.66 1.43 3.24 inf; +bénéficiera bénéficier ver 3.85 9.66 0.26 0.14 ind:fut:3s; +bénéficierai bénéficier ver 3.85 9.66 0.04 0.00 ind:fut:1s; +bénéficierais bénéficier ver 3.85 9.66 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +bénéficierait bénéficier ver 3.85 9.66 0.05 0.14 cnd:pre:3s; +bénéficierez bénéficier ver 3.85 9.66 0.02 0.07 ind:fut:2p; +bénéficierons bénéficier ver 3.85 9.66 0.01 0.00 ind:fut:1p; +bénéficies bénéficier ver 3.85 9.66 0.08 0.00 ind:pre:2s; +bénéficiez bénéficier ver 3.85 9.66 0.19 0.00 imp:pre:2p;ind:pre:2p; +bénéficions bénéficier ver 3.85 9.66 0.04 0.07 ind:pre:1p; +bénéficiât bénéficier ver 3.85 9.66 0.00 0.07 sub:imp:3s; +bénéficièrent bénéficier ver 3.85 9.66 0.00 0.07 ind:pas:3p; +bénéficié bénéficier ver m s 3.85 9.66 0.30 1.49 par:pas; +bénéfique bénéfique adj s 1.61 3.24 1.43 2.84 +bénéfiques bénéfique adj p 1.61 3.24 0.18 0.41 +bénévolat bénévolat nom m s 0.98 0.07 0.98 0.07 +bénévole bénévole adj s 1.52 2.70 1.23 1.69 +bénévolement bénévolement adv 0.23 0.54 0.23 0.54 +bénévolence bénévolence nom f s 0.00 0.07 0.00 0.07 +bénévoles bénévole nom p 1.33 0.27 0.61 0.14 +béotien béotien nom m s 0.23 0.47 0.20 0.07 +béotienne béotien adj f s 0.06 0.00 0.02 0.00 +béotiens béotien adj m p 0.06 0.00 0.03 0.00 +buprestes bupreste nom m p 0.00 0.07 0.00 0.07 +béquant béquer ver 0.00 0.07 0.00 0.07 par:pre; +béquillant béquiller ver 0.00 0.14 0.00 0.07 par:pre; +béquillard béquillard adj m s 0.00 0.07 0.00 0.07 +béquille béquille nom f s 2.70 6.15 1.05 2.91 +béquillent béquiller ver 0.00 0.14 0.00 0.07 ind:pre:3p; +béquilles béquille nom f p 2.70 6.15 1.65 3.24 +béquilleux béquilleux adj m s 0.00 0.07 0.00 0.07 +buraliste buraliste nom s 0.57 0.95 0.57 0.88 +buralistes buraliste nom p 0.57 0.95 0.00 0.07 +bure bure nom s 0.57 3.18 0.57 3.18 +bureau bureau nom m s 167.13 150.07 156.68 130.07 +bureaucrate bureaucrate nom s 1.95 1.28 0.80 0.47 +bureaucrates bureaucrate nom p 1.95 1.28 1.15 0.81 +bureaucratie bureaucratie nom f s 1.17 0.81 1.17 0.74 +bureaucraties bureaucratie nom f p 1.17 0.81 0.00 0.07 +bureaucratique bureaucratique adj s 0.70 0.47 0.61 0.41 +bureaucratiquement bureaucratiquement adv 0.00 0.07 0.00 0.07 +bureaucratiques bureaucratique adj p 0.70 0.47 0.09 0.07 +bureaucratisées bureaucratiser ver f p 0.00 0.07 0.00 0.07 par:pas; +bureautique bureautique adj f s 0.01 0.00 0.01 0.00 +bureautique bureautique nom f s 0.01 0.00 0.01 0.00 +bureaux bureau nom m p 167.13 150.07 10.45 20.00 +burent boire ver 339.06 274.32 0.02 3.99 ind:pas:3p; +béret béret nom m s 1.50 15.07 1.19 13.31 +bérets béret nom m p 1.50 15.07 0.31 1.76 +burette burette nom f s 1.03 1.62 0.61 0.88 +burettes burette nom f p 1.03 1.62 0.42 0.74 +burg burg nom m s 0.05 0.20 0.05 0.20 +burger burger nom m s 2.31 0.07 1.33 0.00 +burgers burger nom m p 2.31 0.07 0.97 0.07 +burgondes burgonde adj m p 0.10 0.07 0.10 0.07 +burgraviat burgraviat nom m s 0.00 0.07 0.00 0.07 +béribéri béribéri nom m s 0.18 0.00 0.18 0.00 +burin burin nom m s 0.59 2.23 0.57 1.96 +burina buriner ver 0.11 0.61 0.10 0.07 ind:pas:3s; +buriner buriner ver 0.11 0.61 0.01 0.07 inf; +burins burin nom m p 0.59 2.23 0.02 0.27 +buriné buriné adj m s 0.02 0.68 0.01 0.47 +burinée buriné adj f s 0.02 0.68 0.01 0.07 +burinées buriné adj f p 0.02 0.68 0.00 0.07 +burinés buriner ver m p 0.11 0.61 0.00 0.14 par:pas; +burkinabé burkinabé adj s 0.01 0.00 0.01 0.00 +burlesque burlesque nom m s 0.34 0.74 0.33 0.68 +burlesques burlesque adj p 0.07 2.36 0.01 0.81 +burlingue burlingue nom m s 0.00 1.15 0.00 0.88 +burlingues burlingue nom m p 0.00 1.15 0.00 0.27 +burne burne nom f s 1.42 1.49 0.09 0.07 +burnes burne nom f p 1.42 1.49 1.33 1.42 +burnous burnous nom m 0.13 1.76 0.13 1.76 +burons buron nom m p 0.00 0.07 0.00 0.07 +bursite bursite nom f s 0.09 0.00 0.09 0.00 +bérullienne bérullien nom f s 0.00 0.07 0.00 0.07 +burundais burundais nom m 0.01 0.00 0.01 0.00 +bérézina bérézina nom f s 0.00 0.41 0.00 0.41 +béryl béryl nom m s 0.02 0.27 0.02 0.20 +béryllium béryllium nom m s 0.20 0.00 0.20 0.00 +béryls béryl nom m p 0.02 0.27 0.00 0.07 +bus bus nom m 50.63 10.54 50.63 10.54 +busard busard nom m s 0.06 0.74 0.02 0.47 +busards busard nom m p 0.06 0.74 0.04 0.27 +buse buse nom f s 1.28 2.84 0.82 2.09 +bésef bésef adv 0.01 0.14 0.01 0.14 +buses buse nom f p 1.28 2.84 0.46 0.74 +bush bush nom m s 0.24 0.00 0.24 0.00 +bushi bushi nom m s 0.01 0.20 0.01 0.20 +bushido bushido nom m s 0.01 0.00 0.01 0.00 +bushman bushman nom m s 0.00 0.07 0.00 0.07 +bésiclard bésiclard nom m s 0.00 0.07 0.00 0.07 +bésicles bésicles nom f p 0.01 0.20 0.01 0.20 +bésigue bésigue nom m s 0.06 0.00 0.06 0.00 +business business nom m 15.62 2.23 15.62 2.23 +businessman businessman nom m s 1.31 0.34 0.84 0.27 +businessmen businessman nom m p 1.31 0.34 0.47 0.07 +busqué busqué adj m s 0.00 1.76 0.00 1.76 +busse boire ver 339.06 274.32 0.00 0.07 sub:imp:1s; +buste buste nom m s 2.44 24.46 2.02 21.62 +bustes buste nom m p 2.44 24.46 0.42 2.84 +bustier bustier nom m s 0.20 0.34 0.20 0.34 +but but nom m s 78.43 60.41 73.80 51.89 +bêta bêta nom m s 2.36 0.81 2.14 0.74 +buta buter ver 31.86 21.62 0.02 2.09 ind:pas:3s; +butadiène butadiène nom m s 0.03 0.00 0.03 0.00 +butagaz butagaz nom m 0.14 0.47 0.14 0.47 +butai buter ver 31.86 21.62 0.00 0.27 ind:pas:1s; +butaient buter ver 31.86 21.62 0.00 0.41 ind:imp:3p; +bétail bétail nom m s 9.71 5.41 9.69 5.41 +bétaillère bétaillère nom f s 0.16 0.20 0.16 0.14 +bétaillères bétaillère nom f p 0.16 0.20 0.00 0.07 +bétails bétail nom m p 9.71 5.41 0.02 0.00 +butais buter ver 31.86 21.62 0.02 0.14 ind:imp:1s; +butait buter ver 31.86 21.62 0.20 2.30 ind:imp:3s; +butane butane nom m s 0.13 1.08 0.13 1.08 +butant buter ver 31.86 21.62 0.06 1.35 par:pre; +bêtas bêta nom m p 2.36 0.81 0.01 0.07 +bêtasse bêta nom f s 2.36 0.81 0.21 0.00 +bêtasses bêta adj f p 2.13 0.68 0.00 0.07 +bêtatron bêtatron nom m s 0.01 0.00 0.01 0.00 +bête bête adj s 56.55 41.89 51.33 33.31 +bute buter ver 31.86 21.62 8.21 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bétel bétel nom m s 2.94 0.14 2.94 0.14 +bêtement bêtement adv 4.56 11.28 4.56 11.28 +butent buter ver 31.86 21.62 0.44 0.74 ind:pre:3p; +buter buter ver 31.86 21.62 12.89 6.01 inf; +butera buter ver 31.86 21.62 0.16 0.14 ind:fut:3s; +buterai buter ver 31.86 21.62 0.54 0.00 ind:fut:1s; +buterais buter ver 31.86 21.62 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +buterait buter ver 31.86 21.62 0.03 0.07 cnd:pre:3s; +buteras buter ver 31.86 21.62 0.14 0.00 ind:fut:2s; +buterez buter ver 31.86 21.62 0.02 0.00 ind:fut:2p; +buterions buter ver 31.86 21.62 0.01 0.00 cnd:pre:1p; +buteront buter ver 31.86 21.62 0.07 0.00 ind:fut:3p; +bêtes bête nom f p 67.67 117.36 23.82 54.19 +butes buter ver 31.86 21.62 0.50 0.27 ind:pre:2s; +buteur buteur nom m s 0.39 0.00 0.39 0.00 +butez buter ver 31.86 21.62 0.73 0.07 imp:pre:2p;ind:pre:2p; +béèrent béer ver 0.23 3.65 0.00 0.14 ind:pas:3p; +bêtifia bêtifier ver 0.02 0.81 0.00 0.07 ind:pas:3s; +bêtifiaient bêtifier ver 0.02 0.81 0.00 0.14 ind:imp:3p; +bêtifiais bêtifier ver 0.02 0.81 0.00 0.07 ind:imp:1s; +bêtifiait bêtifier ver 0.02 0.81 0.00 0.20 ind:imp:3s; +bêtifiant bêtifiant adj m s 0.00 0.20 0.00 0.20 +bêtifie bêtifier ver 0.02 0.81 0.00 0.14 ind:pre:1s;ind:pre:3s; +bêtifier bêtifier ver 0.02 0.81 0.02 0.14 inf; +bêtifié bêtifier ver m s 0.02 0.81 0.00 0.07 par:pas; +butin butin nom m s 6.35 5.61 6.27 5.20 +butinait butiner ver 0.49 1.69 0.00 0.20 ind:imp:3s; +butinant butiner ver 0.49 1.69 0.14 0.20 par:pre; +butine butiner ver 0.49 1.69 0.17 0.34 ind:pre:1s;ind:pre:3s; +butinent butiner ver 0.49 1.69 0.01 0.34 ind:pre:3p; +butiner butiner ver 0.49 1.69 0.16 0.41 inf; +butines butiner ver 0.49 1.69 0.00 0.07 ind:pre:2s; +butineur butineur adj m s 0.03 0.07 0.01 0.00 +butineuse butineur adj f s 0.03 0.07 0.01 0.00 +butineuses butineur adj f p 0.03 0.07 0.01 0.07 +butins butin nom m p 6.35 5.61 0.08 0.41 +butiné butiner ver m s 0.49 1.69 0.01 0.00 par:pas; +butinées butiner ver f p 0.49 1.69 0.00 0.07 par:pas; +butinés butiner ver m p 0.49 1.69 0.00 0.07 par:pas; +bêtise bêtise nom f s 39.31 28.38 14.29 14.73 +bêtises bêtise nom f p 39.31 28.38 25.03 13.65 +bêtisier bêtisier nom m s 0.04 0.00 0.04 0.00 +bétoine bétoine nom f s 0.01 0.00 0.01 0.00 +butoir butoir nom m s 0.33 0.81 0.31 0.54 +butoirs butoir nom m p 0.33 0.81 0.02 0.27 +béton béton nom m s 6.41 15.68 6.41 15.20 +bétonnage bétonnage nom m s 0.00 0.14 0.00 0.14 +bétonnaient bétonner ver 0.22 0.14 0.01 0.00 ind:imp:3p; +bétonner bétonner ver 0.22 0.14 0.16 0.00 inf; +bétonneurs bétonneur nom m p 0.17 0.54 0.01 0.07 +bétonneuse bétonneur nom f s 0.17 0.54 0.16 0.20 +bétonneuses bétonneuse nom f p 0.14 0.00 0.14 0.00 +bétonnière bétonnière nom f s 0.23 0.07 0.22 0.00 +bétonnières bétonnière nom f p 0.23 0.07 0.01 0.07 +bétonné bétonner ver m s 0.22 0.14 0.05 0.00 par:pas; +bétonnée bétonné adj f s 0.02 0.61 0.00 0.14 +bétonnées bétonné adj f p 0.02 0.61 0.00 0.14 +bétonnés bétonné adj m p 0.02 0.61 0.00 0.14 +bétons béton nom m p 6.41 15.68 0.00 0.47 +butons buter ver 31.86 21.62 0.14 0.07 imp:pre:1p;ind:pre:1p; +butor butor nom m s 0.28 1.08 0.27 0.88 +butors butor nom m p 0.28 1.08 0.01 0.20 +buts but nom m p 78.43 60.41 4.63 8.51 +butte butte nom f s 1.48 7.03 1.17 5.34 +butter butter ver 1.17 1.01 0.69 0.14 inf; +buttes butte nom f p 1.48 7.03 0.32 1.69 +butteur butteur nom m s 0.11 0.00 0.11 0.00 +butèrent buter ver 31.86 21.62 0.00 0.41 ind:pas:3p; +buttoir buttoir nom m s 0.01 0.07 0.01 0.07 +buttèrent butter ver 1.17 1.01 0.00 0.07 ind:pas:3p; +butté butter ver m s 1.17 1.01 0.16 0.00 par:pas; +buttés butter ver m p 1.17 1.01 0.00 0.74 par:pas; +buté buter ver m s 31.86 21.62 6.71 3.24 par:pas; +butée buter ver f s 31.86 21.62 0.49 0.34 par:pas; +butées buter ver f p 31.86 21.62 0.01 0.00 par:pas; +butés buter ver m p 31.86 21.62 0.34 0.34 par:pas; +béé béer ver m s 0.23 3.65 0.00 0.07 par:pas; +buée buée nom f s 0.32 13.51 0.32 13.11 +béée béer ver f s 0.23 3.65 0.00 0.07 par:pas; +buées buée nom f p 0.32 13.51 0.00 0.41 +buvable buvable adj s 0.21 0.68 0.21 0.61 +buvables buvable adj p 0.21 0.68 0.00 0.07 +buvaient boire ver 339.06 274.32 0.78 7.09 ind:imp:3p; +buvais boire ver 339.06 274.32 4.10 3.11 ind:imp:1s;ind:imp:2s; +buvait boire ver 339.06 274.32 7.06 23.38 ind:imp:3s; +buvant boire ver 339.06 274.32 2.58 11.28 par:pre; +buvard buvard nom m s 0.12 4.32 0.10 3.58 +buvarde buvarder ver 0.00 0.20 0.00 0.07 ind:pre:3s; +buvards buvard nom m p 0.12 4.32 0.02 0.74 +buvardé buvarder ver m s 0.00 0.20 0.00 0.07 par:pas; +buvardés buvarder ver m p 0.00 0.20 0.00 0.07 par:pas; +buvette buvette nom f s 0.76 3.04 0.75 2.91 +buvettes buvette nom f p 0.76 3.04 0.01 0.14 +buveur buveur nom m s 2.22 4.66 1.67 1.49 +buveurs buveur nom m p 2.22 4.66 0.49 2.91 +buveuse buveur nom f s 2.22 4.66 0.06 0.27 +buvez boire ver 339.06 274.32 25.24 3.72 imp:pre:2p;ind:pre:2p; +buviez boire ver 339.06 274.32 0.72 0.14 ind:imp:2p; +buvions boire ver 339.06 274.32 0.53 2.36 ind:imp:1p; +buvons boire ver 339.06 274.32 13.69 3.04 imp:pre:1p;ind:pre:1p; +bévue bévue nom f s 0.36 1.22 0.28 0.68 +bévues bévue nom f p 0.36 1.22 0.08 0.54 +bézef bézef adv 0.01 0.14 0.01 0.14 +bézoard bézoard nom m s 0.01 0.00 0.01 0.00 +by_pass by_pass nom m 0.03 0.00 0.03 0.00 +by_night by_night adj m s 0.25 0.41 0.25 0.41 +by by nom m s 12.49 0.68 12.49 0.68 +bye_bye bye_bye ono 2.36 0.34 2.36 0.34 +bye bye ono 23.11 2.03 23.11 2.03 +byronien byronien adj m s 0.00 0.07 0.00 0.07 +bytes byte nom m p 0.09 0.00 0.09 0.00 +bytures byture nom m p 0.00 0.07 0.00 0.07 +byzantin byzantin adj m s 0.13 3.38 0.05 0.81 +byzantine byzantin adj f s 0.13 3.38 0.05 1.55 +byzantines byzantin adj f p 0.13 3.38 0.03 0.68 +byzantinisant byzantinisant adj m s 0.00 0.07 0.00 0.07 +byzantinisme byzantinisme nom m s 0.00 0.34 0.00 0.34 +byzantins byzantin nom m p 0.04 0.34 0.04 0.34 +c_est_à_dire c_est_à_dire adv 0.00 52.03 0.00 52.03 +c c pro_dem 46.69 4.59 46.69 4.59 +côlon côlon nom m s 0.23 0.20 0.23 0.20 +cône cône nom m s 1.08 3.38 0.78 2.57 +cônes cône nom m p 1.08 3.38 0.30 0.81 +côte côte nom f s 35.16 112.50 25.86 90.74 +côtelette côtelette nom f s 3.38 3.45 1.18 1.62 +côtelettes côtelette nom f p 3.38 3.45 2.19 1.82 +côtelé côtelé adj m s 0.17 1.08 0.16 1.08 +côtelée côtelé adj f s 0.17 1.08 0.01 0.00 +côtes_du_rhône côtes_du_rhône nom m s 0.00 0.47 0.00 0.47 +côtes côte nom f p 35.16 112.50 9.31 21.76 +côtier côtier adj m s 0.69 1.96 0.09 0.20 +côtiers côtier adj m p 0.69 1.96 0.01 0.14 +côtière côtier adj f s 0.69 1.96 0.40 0.95 +côtières côtier adj f p 0.69 1.96 0.19 0.68 +côtoie côtoyer ver 2.42 7.43 0.44 1.22 ind:pre:1s;ind:pre:3s; +côtoiements côtoiement nom m p 0.00 0.07 0.00 0.07 +côtoient côtoyer ver 2.42 7.43 0.19 0.27 ind:pre:3p; +côtoies côtoyer ver 2.42 7.43 0.17 0.07 ind:pre:2s; +côtoya côtoyer ver 2.42 7.43 0.00 0.07 ind:pas:3s; +côtoyaient côtoyer ver 2.42 7.43 0.02 1.22 ind:imp:3p; +côtoyais côtoyer ver 2.42 7.43 0.05 0.20 ind:imp:1s;ind:imp:2s; +côtoyait côtoyer ver 2.42 7.43 0.01 1.15 ind:imp:3s; +côtoyant côtoyer ver 2.42 7.43 0.04 0.27 par:pre; +côtoyer côtoyer ver 2.42 7.43 0.94 0.88 inf; +côtoyons côtoyer ver 2.42 7.43 0.02 0.20 ind:pre:1p; +côtoyé côtoyer ver m s 2.42 7.43 0.36 1.22 par:pas; +côtoyée côtoyer ver f s 2.42 7.43 0.01 0.00 par:pas; +côtoyées côtoyer ver f p 2.42 7.43 0.01 0.14 par:pas; +côtoyés côtoyer ver m p 2.42 7.43 0.17 0.54 par:pas; +côté côté nom m s 285.99 566.49 250.51 497.43 +côtés côté nom m p 285.99 566.49 35.48 69.05 +caïd caïd nom m s 2.63 7.97 2.19 6.82 +caïds caïd nom m p 2.63 7.97 0.44 1.15 +caïman caïman nom m s 1.02 0.54 0.90 0.34 +caïmans caïman nom m p 1.02 0.54 0.13 0.20 +caïque caïque nom m s 0.00 5.47 0.00 3.24 +caïques caïque nom m p 0.00 5.47 0.00 2.23 +cañon cañon nom m s 0.07 0.00 0.07 0.00 +cab cab nom m s 0.42 0.20 0.40 0.20 +cabale cabale nom f s 0.73 0.88 0.73 0.41 +cabales cabale nom f p 0.73 0.88 0.00 0.47 +cabaliste cabaliste nom s 0.00 0.34 0.00 0.20 +cabalistes cabaliste nom p 0.00 0.34 0.00 0.14 +cabalistique cabalistique adj s 0.05 0.68 0.03 0.14 +cabalistiques cabalistique adj p 0.05 0.68 0.02 0.54 +caballero caballero nom f s 0.11 0.20 0.11 0.20 +caban caban nom m s 0.14 1.49 0.14 1.28 +cabana cabaner ver 0.02 0.00 0.02 0.00 ind:pas:3s; +cabane cabane nom f s 15.36 29.46 14.34 25.68 +cabanes cabane nom f p 15.36 29.46 1.02 3.78 +cabanettes cabanette nom f p 0.00 0.07 0.00 0.07 +cabanon cabanon nom m s 1.27 2.09 1.26 1.69 +cabanons cabanon nom m p 1.27 2.09 0.01 0.41 +cabans caban nom m p 0.14 1.49 0.00 0.20 +cabaret cabaret nom m s 4.82 6.69 4.44 4.93 +cabaretier cabaretier nom m s 0.25 0.74 0.01 0.54 +cabaretiers cabaretier nom m p 0.25 0.74 0.23 0.07 +cabaretière cabaretier nom f s 0.25 0.74 0.00 0.14 +cabarets cabaret nom m p 4.82 6.69 0.38 1.76 +cabas cabas nom m 0.14 5.68 0.14 5.68 +caberlot caberlot nom m s 0.04 0.07 0.04 0.07 +cabernet cabernet nom m s 0.16 0.07 0.16 0.07 +cabestan cabestan nom m s 0.23 0.34 0.23 0.34 +cabiais cabiai nom m p 0.01 0.00 0.01 0.00 +cabillaud cabillaud nom m s 0.25 0.27 0.25 0.27 +cabillots cabillot nom m p 0.00 0.07 0.00 0.07 +cabine cabine nom f s 20.00 35.07 17.65 29.86 +cabiner cabiner ver 0.00 0.07 0.00 0.07 inf; +cabines cabine nom f p 20.00 35.07 2.35 5.20 +cabinet cabinet nom m s 21.97 36.49 19.45 29.80 +cabinets cabinet nom m p 21.97 36.49 2.51 6.69 +cabochard cabochard adj m s 0.21 0.47 0.18 0.27 +cabocharde cabochard adj f s 0.21 0.47 0.01 0.07 +cabochards cabochard adj m p 0.21 0.47 0.02 0.14 +caboche caboche nom f s 1.13 1.49 1.12 1.22 +caboches caboche nom f p 1.13 1.49 0.01 0.27 +cabochon cabochon nom m s 0.00 1.35 0.00 0.68 +cabochons cabochon nom m p 0.00 1.35 0.00 0.68 +cabossa cabosser ver 0.94 4.32 0.00 0.07 ind:pas:3s; +cabossages cabossage nom m p 0.00 0.07 0.00 0.07 +cabossait cabosser ver 0.94 4.32 0.00 0.07 ind:imp:3s; +cabosse cabosser ver 0.94 4.32 0.01 0.07 imp:pre:2s;ind:pre:3s; +cabosser cabosser ver 0.94 4.32 0.06 0.27 inf; +cabosses cabosse nom f p 0.00 0.14 0.00 0.07 +cabossé cabosser ver m s 0.94 4.32 0.40 1.62 par:pas; +cabossée cabosser ver f s 0.94 4.32 0.37 1.35 par:pas; +cabossées cabosser ver f p 0.94 4.32 0.05 0.54 par:pas; +cabossés cabosser ver m p 0.94 4.32 0.05 0.34 par:pas; +cabot cabot nom m s 1.52 1.49 1.45 0.68 +cabotage cabotage nom m s 0.00 0.20 0.00 0.20 +cabotaient caboter ver 0.02 0.41 0.00 0.07 ind:imp:3p; +cabotait caboter ver 0.02 0.41 0.00 0.14 ind:imp:3s; +cabote caboter ver 0.02 0.41 0.01 0.07 ind:pre:3s; +caboter caboter ver 0.02 0.41 0.01 0.07 inf; +caboteur caboteur nom m s 0.02 1.01 0.02 1.01 +cabotin cabotin nom m s 0.20 0.81 0.18 0.47 +cabotinage cabotinage nom m s 0.05 0.47 0.05 0.47 +cabotine cabotin nom f s 0.20 0.81 0.01 0.14 +cabotines cabotiner ver 0.01 0.00 0.01 0.00 ind:pre:2s; +cabotins cabotin nom m p 0.20 0.81 0.01 0.20 +cabots cabot nom m p 1.52 1.49 0.07 0.81 +caboté caboter ver m s 0.02 0.41 0.00 0.07 par:pas; +caboulot caboulot nom m s 0.00 0.68 0.00 0.47 +caboulots caboulot nom m p 0.00 0.68 0.00 0.20 +cabra cabrer ver 0.34 6.55 0.00 0.95 ind:pas:3s; +cabrade cabrade nom f s 0.00 0.07 0.00 0.07 +cabrage cabrage nom m s 0.04 0.00 0.04 0.00 +cabraient cabrer ver 0.34 6.55 0.00 0.34 ind:imp:3p; +cabrais cabrer ver 0.34 6.55 0.00 0.07 ind:imp:1s; +cabrait cabrer ver 0.34 6.55 0.00 0.61 ind:imp:3s; +cabrant cabrer ver 0.34 6.55 0.00 0.27 par:pre; +cabre cabrer ver 0.34 6.55 0.20 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cabrent cabrer ver 0.34 6.55 0.00 0.14 ind:pre:3p; +cabrer cabrer ver 0.34 6.55 0.01 1.08 inf; +cabrera cabrer ver 0.34 6.55 0.02 0.00 ind:fut:3s; +cabrerait cabrer ver 0.34 6.55 0.00 0.07 cnd:pre:3s; +cabrette cabrette nom f s 0.00 0.20 0.00 0.20 +cabri cabri nom m s 0.08 1.08 0.07 0.41 +cabriolaient cabrioler ver 0.02 0.47 0.00 0.14 ind:imp:3p; +cabriolait cabrioler ver 0.02 0.47 0.01 0.07 ind:imp:3s; +cabriolant cabrioler ver 0.02 0.47 0.00 0.07 par:pre; +cabriole cabriole nom f s 0.45 1.15 0.31 0.20 +cabrioler cabrioler ver 0.02 0.47 0.00 0.07 inf; +cabrioles cabriole nom f p 0.45 1.15 0.14 0.95 +cabriolet cabriolet nom m s 0.65 3.38 0.53 2.91 +cabriolets cabriolet nom m p 0.65 3.38 0.12 0.47 +cabris cabri nom m p 0.08 1.08 0.01 0.68 +cabrèrent cabrer ver 0.34 6.55 0.00 0.07 ind:pas:3p; +cabré cabrer ver m s 0.34 6.55 0.10 0.47 par:pas; +cabrée cabrer ver f s 0.34 6.55 0.01 0.34 par:pas; +cabrées cabrer ver f p 0.34 6.55 0.00 0.27 par:pas; +cabrés cabrer ver m p 0.34 6.55 0.00 0.41 par:pas; +cabs cab nom m p 0.42 0.20 0.02 0.00 +cabèche cabèche nom f s 0.00 0.54 0.00 0.47 +cabèches cabèche nom f p 0.00 0.54 0.00 0.07 +cabécous cabécou nom m p 0.00 0.07 0.00 0.07 +cabus cabus adj m s 0.00 0.07 0.00 0.07 +caca caca adj 3.16 1.76 3.16 1.76 +cacahouète cacahouète nom f s 1.00 0.00 0.39 0.00 +cacahouètes cacahouète nom f p 1.00 0.00 0.62 0.00 +cacahuète cacahuète nom f s 7.29 3.58 1.71 0.74 +cacahuètes cacahuète nom f p 7.29 3.58 5.59 2.84 +cacao cacao nom m s 1.30 1.42 1.29 1.42 +cacaos cacao nom m p 1.30 1.42 0.01 0.00 +cacaotier cacaotier nom m s 0.01 0.00 0.01 0.00 +cacaotés cacaoté adj m p 0.00 0.07 0.00 0.07 +cacaoyer cacaoyer nom m s 0.01 0.00 0.01 0.00 +cacarda cacarder ver 0.14 0.20 0.00 0.07 ind:pas:3s; +cacardait cacarder ver 0.14 0.20 0.00 0.07 ind:imp:3s; +cacarde cacarder ver 0.14 0.20 0.14 0.07 ind:pre:1s;ind:pre:3s; +cacas caca nom m p 3.09 2.23 0.04 0.47 +cacatois cacatois nom m 0.03 0.07 0.03 0.07 +cacatoès cacatoès nom m 0.12 0.34 0.12 0.34 +cacha cacher ver 204.10 181.89 1.13 6.82 ind:pas:3s; +cachai cacher ver 204.10 181.89 0.16 1.01 ind:pas:1s; +cachaient cacher ver 204.10 181.89 0.78 9.66 ind:imp:3p; +cachais cacher ver 204.10 181.89 3.61 2.03 ind:imp:1s;ind:imp:2s; +cachait cacher ver 204.10 181.89 5.84 21.89 ind:imp:3s; +cachalot cachalot nom m s 0.72 0.95 0.70 0.88 +cachalots cachalot nom m p 0.72 0.95 0.01 0.07 +cachant cacher ver 204.10 181.89 1.84 8.11 par:pre; +cache_brassière cache_brassière nom m 0.00 0.07 0.00 0.07 +cache_cache cache_cache nom m 3.42 2.70 3.42 2.70 +cache_coeur cache_coeur nom s 0.00 0.14 0.00 0.14 +cache_col cache_col nom m 0.01 1.35 0.01 1.35 +cache_corset cache_corset nom m 0.00 0.14 0.00 0.14 +cache_nez cache_nez nom m 0.15 2.09 0.15 2.09 +cache_pot cache_pot nom m s 0.16 0.81 0.16 0.41 +cache_pot cache_pot nom m p 0.16 0.81 0.00 0.41 +cache_poussière cache_poussière nom m 0.01 0.20 0.01 0.20 +cache_sexe cache_sexe nom m 0.03 0.27 0.03 0.27 +cache_tampon cache_tampon nom m 0.00 0.20 0.00 0.20 +cache cacher ver 204.10 181.89 44.82 20.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cachectique cachectique adj f s 0.00 0.20 0.00 0.14 +cachectiques cachectique adj m p 0.00 0.20 0.00 0.07 +cachemire cachemire nom m s 1.38 2.84 1.35 2.64 +cachemires cachemire nom m p 1.38 2.84 0.02 0.20 +cachemiris cachemiri nom m p 0.01 0.00 0.01 0.00 +cachent cacher ver 204.10 181.89 7.50 5.00 ind:pre:3p; +cacher cacher ver 204.10 181.89 61.04 48.45 inf;; +cachera cacher ver 204.10 181.89 0.83 0.27 ind:fut:3s; +cacherai cacher ver 204.10 181.89 1.35 1.01 ind:fut:1s; +cacheraient cacher ver 204.10 181.89 0.07 0.00 cnd:pre:3p; +cacherais cacher ver 204.10 181.89 0.81 0.27 cnd:pre:1s;cnd:pre:2s; +cacherait cacher ver 204.10 181.89 1.02 0.61 cnd:pre:3s; +cacheras cacher ver 204.10 181.89 0.08 0.20 ind:fut:2s; +cacherez cacher ver 204.10 181.89 0.30 0.07 ind:fut:2p; +cacheriez cacher ver 204.10 181.89 0.07 0.00 cnd:pre:2p; +cacherons cacher ver 204.10 181.89 0.12 0.14 ind:fut:1p; +cacheront cacher ver 204.10 181.89 0.08 0.07 ind:fut:3p; +caches cacher ver 204.10 181.89 12.67 1.89 ind:pre:2s;sub:pre:2s; +cachet cachet nom m s 16.46 10.20 6.97 4.93 +cacheta cacheter ver 0.96 2.64 0.00 0.27 ind:pas:3s; +cachetais cacheter ver 0.96 2.64 0.00 0.07 ind:imp:1s; +cachetait cacheter ver 0.96 2.64 0.00 0.20 ind:imp:3s; +cacheter cacheter ver 0.96 2.64 0.13 0.34 inf; +cacheton cacheton nom m s 0.59 0.20 0.03 0.14 +cachetonnais cachetonner ver 0.02 0.14 0.00 0.07 ind:imp:1s; +cachetonnait cachetonner ver 0.02 0.14 0.00 0.07 ind:imp:3s; +cachetonne cachetonner ver 0.02 0.14 0.02 0.00 ind:pre:3s; +cachetons cacheton nom m p 0.59 0.20 0.56 0.07 +cachets cachet nom m p 16.46 10.20 9.49 5.27 +cachette cachette nom f s 11.81 16.96 11.21 14.59 +cachettes cachette nom f p 11.81 16.96 0.59 2.36 +cacheté cacheter ver m s 0.96 2.64 0.14 0.74 par:pas; +cachetée cacheter ver f s 0.96 2.64 0.40 0.41 par:pas; +cachetées cacheter ver f p 0.96 2.64 0.01 0.20 par:pas; +cachetés cacheter ver m p 0.96 2.64 0.00 0.20 par:pas; +cachexie cachexie nom f s 0.01 0.07 0.01 0.07 +cachez cacher ver 204.10 181.89 10.65 1.35 imp:pre:2p;ind:pre:2p; +cachiez cacher ver 204.10 181.89 0.88 0.00 ind:imp:2p; +cachions cacher ver 204.10 181.89 0.15 0.74 ind:imp:1p; +cachons cacher ver 204.10 181.89 1.75 0.81 imp:pre:1p;ind:pre:1p; +cachât cacher ver 204.10 181.89 0.00 0.61 sub:imp:3s; +cachot cachot nom m s 3.67 7.09 3.01 5.95 +cachots cachot nom m p 3.67 7.09 0.66 1.15 +cachotterie cachotterie nom f s 0.93 0.54 0.01 0.20 +cachotteries cachotterie nom f p 0.93 0.54 0.92 0.34 +cachottier cachottier nom m s 0.71 0.47 0.57 0.34 +cachottiers cachottier adj m p 0.28 0.41 0.17 0.00 +cachottière cachottier nom f s 0.71 0.47 0.13 0.14 +cachottières cachottier adj f p 0.28 0.41 0.00 0.07 +cachou cachou nom m s 0.23 0.68 0.17 0.27 +cachous cachou nom m p 0.23 0.68 0.05 0.41 +cachère cachère adj 0.01 0.00 0.01 0.00 +cachèrent cacher ver 204.10 181.89 0.09 0.61 ind:pas:3p; +caché cacher ver m s 204.10 181.89 32.13 25.81 par:pas; +cachée cacher ver f s 204.10 181.89 8.17 11.89 par:pas; +cachées cacher ver f p 204.10 181.89 1.92 4.80 par:pas; +cachés cacher ver m p 204.10 181.89 4.29 7.70 par:pas; +cacique cacique nom m s 0.00 0.20 0.00 0.14 +caciques cacique nom m p 0.00 0.20 0.00 0.07 +cacochyme cacochyme adj s 0.00 0.74 0.00 0.47 +cacochymes cacochyme adj m p 0.00 0.74 0.00 0.27 +cacodylate cacodylate nom m s 0.00 0.07 0.00 0.07 +cacographes cacographe nom p 0.00 0.07 0.00 0.07 +cacophonie cacophonie nom f s 0.05 1.35 0.04 1.22 +cacophonies cacophonie nom f p 0.05 1.35 0.01 0.14 +cacophonique cacophonique adj s 0.00 0.34 0.00 0.27 +cacophoniques cacophonique adj m p 0.00 0.34 0.00 0.07 +cactées cactée nom f p 0.02 0.47 0.02 0.47 +cactus cactus nom m 2.86 2.30 2.86 2.30 +cadastral cadastral adj m s 0.00 1.62 0.00 1.15 +cadastrale cadastral adj f s 0.00 1.62 0.00 0.07 +cadastraux cadastral adj m p 0.00 1.62 0.00 0.41 +cadastre cadastre nom m s 0.56 3.58 0.54 3.45 +cadastres cadastre nom m p 0.56 3.58 0.02 0.14 +cadastré cadastrer ver m s 0.10 0.14 0.10 0.00 par:pas; +cadastrée cadastrer ver f s 0.10 0.14 0.00 0.14 par:pas; +cadavre cadavre nom m s 47.75 54.05 27.93 32.30 +cadavres cadavre nom m p 47.75 54.05 19.82 21.76 +cadavéreuse cadavéreux adj f s 0.04 0.20 0.00 0.14 +cadavéreux cadavéreux adj m 0.04 0.20 0.04 0.07 +cadavérique cadavérique adj s 0.34 0.95 0.34 0.68 +cadavériques cadavérique adj p 0.34 0.95 0.00 0.27 +cadavérise cadavériser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +cadavérisés cadavériser ver m p 0.00 0.14 0.00 0.07 par:pas; +caddie caddie nom m s 1.50 2.43 1.35 1.28 +caddies caddie nom m p 1.50 2.43 0.15 1.15 +caddy caddy nom m s 0.81 1.49 0.81 1.49 +cade cade nom m s 0.14 0.00 0.14 0.00 +cadeau cadeau nom m s 125.79 50.81 98.09 32.77 +cadeaux cadeau nom m p 125.79 50.81 27.70 18.04 +cadenas cadenas nom m 2.10 2.43 2.10 2.43 +cadenassaient cadenasser ver 0.21 1.89 0.00 0.07 ind:imp:3p; +cadenassait cadenasser ver 0.21 1.89 0.00 0.14 ind:imp:3s; +cadenassant cadenasser ver 0.21 1.89 0.00 0.07 par:pre; +cadenasse cadenasser ver 0.21 1.89 0.01 0.07 ind:pre:3s; +cadenasser cadenasser ver 0.21 1.89 0.02 0.20 inf; +cadenassez cadenasser ver 0.21 1.89 0.04 0.00 imp:pre:2p; +cadenassé cadenasser ver m s 0.21 1.89 0.09 0.41 par:pas; +cadenassée cadenasser ver f s 0.21 1.89 0.06 0.68 par:pas; +cadenassées cadenasser ver f p 0.21 1.89 0.00 0.27 par:pas; +cadence cadence nom f s 2.42 13.78 2.12 12.64 +cadencer cadencer ver 0.38 1.22 0.00 0.14 inf; +cadences cadence nom f p 2.42 13.78 0.30 1.15 +cadencé cadencer ver m s 0.38 1.22 0.10 0.74 par:pas; +cadencée cadencer ver f s 0.38 1.22 0.01 0.14 par:pas; +cadencées cadencé adj f p 0.05 1.96 0.00 0.07 +cadencés cadencer ver m p 0.38 1.22 0.14 0.07 par:pas; +cadet cadet nom m s 7.38 8.85 3.71 4.32 +cadets cadet nom m p 7.38 8.85 2.44 1.69 +cadette cadet adj f s 4.64 3.18 1.52 1.28 +cadettes cadet adj f p 4.64 3.18 0.01 0.14 +cadi cadi nom m s 0.10 2.30 0.10 2.30 +cadmié cadmier ver m s 0.00 0.20 0.00 0.20 par:pas; +cadmium cadmium nom m s 0.13 0.07 0.13 0.07 +cadogan cadogan nom m s 0.20 0.00 0.20 0.00 +cador cador nom m s 0.45 1.96 0.41 1.42 +cadors cador nom m p 0.45 1.96 0.03 0.54 +cadrage cadrage nom m s 0.59 0.47 0.58 0.34 +cadrages cadrage nom m p 0.59 0.47 0.01 0.14 +cadrais cadrer ver 1.55 2.43 0.00 0.07 ind:imp:2s; +cadrait cadrer ver 1.55 2.43 0.02 0.68 ind:imp:3s; +cadran cadran nom m s 1.58 7.70 1.42 6.55 +cadrans cadran nom m p 1.58 7.70 0.16 1.15 +cadrant cadrer ver 1.55 2.43 0.03 0.00 par:pre; +cadratin cadratin nom m s 0.00 0.14 0.00 0.07 +cadratins cadratin nom m p 0.00 0.14 0.00 0.07 +cadre cadre nom m s 13.53 42.84 10.98 29.80 +cadrent cadrer ver 1.55 2.43 0.03 0.14 ind:pre:3p; +cadrer cadrer ver 1.55 2.43 0.64 0.34 inf; +cadres cadre nom m p 13.53 42.84 2.56 13.04 +cadreur cadreur nom m s 0.14 0.14 0.11 0.07 +cadreurs cadreur nom m p 0.14 0.14 0.04 0.07 +cadrez cadrer ver 1.55 2.43 0.03 0.00 imp:pre:2p; +cadré cadrer ver m s 1.55 2.43 0.10 0.47 par:pas; +cadrée cadrer ver f s 1.55 2.43 0.01 0.27 par:pas; +cadènes cadène nom f p 0.00 1.01 0.00 1.01 +caduc caduc adj m s 0.24 1.01 0.14 0.74 +caducité caducité nom f s 0.00 0.07 0.00 0.07 +caducs caduc adj m p 0.24 1.01 0.10 0.27 +caducée caducée nom m s 0.16 0.20 0.16 0.14 +caducées caducée nom m p 0.16 0.20 0.00 0.07 +caduque caduque adj f s 0.23 0.95 0.19 0.47 +caduques caduque adj f p 0.23 0.95 0.04 0.47 +caecum caecum nom m s 0.01 0.00 0.01 0.00 +caesium caesium nom m s 0.11 0.00 0.11 0.00 +caf caf adj s 0.14 0.00 0.14 0.00 +cafard cafard nom m s 9.87 9.80 5.77 7.84 +cafardage cafardage nom m s 0.11 0.00 0.11 0.00 +cafarde cafarder ver 0.34 0.34 0.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cafarder cafarder ver 0.34 0.34 0.21 0.27 inf; +cafarderait cafarder ver 0.34 0.34 0.00 0.07 cnd:pre:3s; +cafardeur cafardeur nom m s 0.29 0.00 0.16 0.00 +cafardeuse cafardeur nom f s 0.29 0.00 0.14 0.00 +cafardeux cafardeux adj m 0.09 0.34 0.07 0.34 +cafards cafard nom m p 9.87 9.80 4.10 1.96 +cafetais cafeter ver 0.27 0.07 0.00 0.07 ind:imp:1s; +cafetan cafetan nom m s 0.29 0.07 0.28 0.00 +cafetans cafetan nom m p 0.29 0.07 0.01 0.07 +cafeter cafeter ver 0.27 0.07 0.25 0.00 inf; +cafeteria cafeteria nom f s 0.11 1.35 0.11 1.28 +cafeterias cafeteria nom f p 0.11 1.35 0.00 0.07 +cafeteur cafeteur nom m s 0.01 0.00 0.01 0.00 +cafetier cafetier nom m s 0.35 2.97 0.34 2.77 +cafetiers cafetier nom m p 0.35 2.97 0.01 0.20 +cafetière cafetière nom f s 2.07 5.88 1.92 5.54 +cafetières cafetière nom f p 2.07 5.88 0.15 0.34 +cafeton cafeton nom m s 0.00 0.14 0.00 0.14 +cafeté cafeter ver m s 0.27 0.07 0.02 0.00 par:pas; +cafouilla cafouiller ver 0.43 0.41 0.00 0.14 ind:pas:3s; +cafouillage cafouillage nom m s 0.33 0.54 0.30 0.41 +cafouillages cafouillage nom m p 0.33 0.54 0.02 0.14 +cafouillait cafouiller ver 0.43 0.41 0.03 0.07 ind:imp:3s; +cafouillant cafouiller ver 0.43 0.41 0.00 0.07 par:pre; +cafouille cafouiller ver 0.43 0.41 0.19 0.00 ind:pre:1s;ind:pre:3s; +cafouillent cafouiller ver 0.43 0.41 0.01 0.07 ind:pre:3p; +cafouiller cafouiller ver 0.43 0.41 0.02 0.07 inf; +cafouilles cafouiller ver 0.43 0.41 0.01 0.00 ind:pre:2s; +cafouilleuse cafouilleux adj f s 0.00 0.27 0.00 0.14 +cafouilleux cafouilleux adj m 0.00 0.27 0.00 0.14 +cafouillis cafouillis nom m 0.00 0.14 0.00 0.14 +cafouillé cafouiller ver m s 0.43 0.41 0.17 0.00 par:pas; +cafre cafre nom m s 0.03 0.00 0.03 0.00 +caftage caftage nom m s 0.00 0.07 0.00 0.07 +caftaient cafter ver 1.05 1.22 0.00 0.07 ind:imp:3p; +caftait cafter ver 1.05 1.22 0.01 0.00 ind:imp:3s; +caftan caftan nom m s 0.15 2.64 0.15 1.89 +caftans caftan nom m p 0.15 2.64 0.00 0.74 +cafte cafter ver 1.05 1.22 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cafter cafter ver 1.05 1.22 0.32 0.54 inf; +cafterai cafter ver 1.05 1.22 0.01 0.00 ind:fut:1s; +cafterait cafter ver 1.05 1.22 0.00 0.14 cnd:pre:3s; +cafteras cafter ver 1.05 1.22 0.00 0.07 ind:fut:2s; +caftes cafter ver 1.05 1.22 0.14 0.07 ind:pre:2s; +cafteur cafteur nom m s 0.51 0.47 0.35 0.14 +cafteurs cafteur nom m p 0.51 0.47 0.15 0.14 +cafteuse cafteur nom f s 0.51 0.47 0.01 0.20 +cafté cafter ver m s 1.05 1.22 0.37 0.27 par:pas; +caftés cafter ver m p 1.05 1.22 0.01 0.00 par:pas; +café_concert café_concert nom m s 0.00 0.47 0.00 0.34 +café_crème café_crème nom m s 0.00 0.95 0.00 0.95 +café_hôtel café_hôtel nom m s 0.00 0.07 0.00 0.07 +café_restaurant café_restaurant nom m s 0.00 0.41 0.00 0.41 +café_tabac café_tabac nom m s 0.00 1.22 0.00 1.22 +café_théâtre café_théâtre nom m s 0.00 0.27 0.00 0.27 +café café nom m s 163.56 177.30 157.56 154.93 +caféier caféier nom m s 0.02 0.07 0.01 0.00 +caféiers caféier nom m p 0.02 0.07 0.01 0.07 +caféine caféine nom f s 1.58 0.14 1.58 0.14 +café_concert café_concert nom m p 0.00 0.47 0.00 0.14 +cafés café nom m p 163.56 177.30 6.00 22.36 +cafétéria cafétéria nom f s 4.12 1.28 4.08 1.15 +cafétérias cafétéria nom f p 4.12 1.28 0.04 0.14 +cagade cagade nom f s 0.00 0.68 0.00 0.54 +cagades cagade nom f p 0.00 0.68 0.00 0.14 +cage cage nom f s 18.30 41.82 16.61 34.86 +cageot cageot nom m s 1.21 7.36 0.64 3.11 +cageots cageot nom m p 1.21 7.36 0.57 4.26 +cages cage nom f p 18.30 41.82 1.69 6.96 +cagette cagette nom f s 0.01 0.54 0.01 0.07 +cagettes cagette nom f p 0.01 0.54 0.00 0.47 +cagibi cagibi nom m s 0.85 5.34 0.85 5.07 +cagibis cagibi nom m p 0.85 5.34 0.00 0.27 +cagna cagna nom f s 0.01 2.64 0.01 1.69 +cagnard cagnard adj m s 0.17 0.27 0.17 0.20 +cagnards cagnard adj m p 0.17 0.27 0.00 0.07 +cagnas cagna nom f p 0.01 2.64 0.00 0.95 +cagne cagne nom f s 0.00 0.07 0.00 0.07 +cagneuse cagneux adj f s 0.21 1.01 0.01 0.07 +cagneuses cagneux adj f p 0.21 1.01 0.00 0.14 +cagneux cagneux adj m 0.21 1.01 0.20 0.81 +cagnotte cagnotte nom f s 1.09 1.01 1.09 1.01 +cagot cagot nom m s 0.00 0.41 0.00 0.14 +cagote cagot nom f s 0.00 0.41 0.00 0.07 +cagotes cagot adj f p 0.00 0.20 0.00 0.07 +cagots cagot nom m p 0.00 0.41 0.00 0.20 +cagou cagou nom m s 0.01 0.00 0.01 0.00 +cagoulard cagoulard nom m s 0.00 0.54 0.00 0.14 +cagoulards cagoulard nom m p 0.00 0.54 0.00 0.41 +cagoule cagoule nom f s 2.84 1.76 1.92 1.28 +cagoules cagoule nom f p 2.84 1.76 0.93 0.47 +cagoulé cagoulé adj m s 0.31 0.20 0.03 0.14 +cagoulés cagoulé adj m p 0.31 0.20 0.28 0.07 +caguait caguer ver 0.01 0.88 0.00 0.20 ind:imp:3s; +cague caguer ver 0.01 0.88 0.00 0.27 ind:pre:1s;ind:pre:3s; +caguer caguer ver 0.01 0.88 0.01 0.41 inf; +cahier cahier nom m s 6.98 31.55 5.04 20.07 +cahiers cahier nom m p 6.98 31.55 1.94 11.49 +cahin_caha cahin_caha adv 0.00 1.08 0.00 1.08 +cahors cahors nom m 0.00 0.14 0.00 0.14 +cahot cahot nom m s 0.08 4.39 0.01 1.42 +cahota cahoter ver 0.06 4.53 0.00 0.14 ind:pas:3s; +cahotait cahoter ver 0.06 4.53 0.01 0.34 ind:imp:3s; +cahotant cahoter ver 0.06 4.53 0.00 1.42 par:pre; +cahotante cahotant adj f s 0.00 1.08 0.00 0.68 +cahote cahoter ver 0.06 4.53 0.01 0.54 ind:pre:3s; +cahotement cahotement nom m s 0.00 0.27 0.00 0.27 +cahotent cahoter ver 0.06 4.53 0.00 0.14 ind:pre:3p; +cahoter cahoter ver 0.06 4.53 0.03 0.41 inf; +cahoteuse cahoteux adj f s 0.15 0.74 0.10 0.07 +cahoteuses cahoteux adj f p 0.15 0.74 0.00 0.07 +cahoteux cahoteux adj m 0.15 0.74 0.05 0.61 +cahotons cahoter ver 0.06 4.53 0.00 0.07 ind:pre:1p; +cahots cahot nom m p 0.08 4.39 0.07 2.97 +cahotèrent cahoter ver 0.06 4.53 0.00 0.07 ind:pas:3p; +cahoté cahoter ver m s 0.06 4.53 0.00 0.68 par:pas; +cahotée cahoter ver f s 0.06 4.53 0.01 0.07 par:pas; +cahotées cahoter ver f p 0.06 4.53 0.00 0.14 par:pas; +cahotés cahoter ver m p 0.06 4.53 0.00 0.54 par:pas; +cahute cahute nom f s 0.17 1.69 0.17 1.01 +cahutes cahute nom f p 0.17 1.69 0.00 0.68 +cailla cailler ver 1.46 2.91 0.00 0.07 ind:pas:3s; +caillaient cailler ver 1.46 2.91 0.00 0.07 ind:imp:3p; +caillais cailler ver 1.46 2.91 0.00 0.07 ind:imp:1s; +caillait cailler ver 1.46 2.91 0.02 0.47 ind:imp:3s; +caillant cailler ver 1.46 2.91 0.01 0.07 par:pre; +caillasse caillasse nom f s 0.16 2.70 0.14 1.35 +caillasser caillasser ver 0.03 0.00 0.03 0.00 inf; +caillasses caillasse nom f p 0.16 2.70 0.02 1.35 +caille caille nom f s 2.34 4.59 1.81 2.97 +caillebotis caillebotis nom m 0.01 0.20 0.01 0.20 +caillent cailler ver 1.46 2.91 0.01 0.07 ind:pre:3p; +cailler cailler ver 1.46 2.91 0.21 0.68 inf; +caillera caillera nom f s 0.03 0.00 0.03 0.00 +caillerait cailler ver 1.46 2.91 0.01 0.00 cnd:pre:3s; +caillerez cailler ver 1.46 2.91 0.01 0.00 ind:fut:2p; +cailles caille nom f p 2.34 4.59 0.53 1.62 +caillette caillette nom f s 0.01 0.00 0.01 0.00 +caillot caillot nom m s 3.09 2.84 2.39 1.82 +caillots caillot nom m p 3.09 2.84 0.70 1.01 +caillou caillou nom m s 10.02 38.58 4.11 11.22 +cailloutage cailloutage nom m s 0.00 0.07 0.00 0.07 +caillouteuse caillouteux adj f s 0.34 3.11 0.15 1.42 +caillouteuses caillouteux adj f p 0.34 3.11 0.00 0.34 +caillouteux caillouteux adj m 0.34 3.11 0.20 1.35 +cailloutis cailloutis nom m 0.00 0.54 0.00 0.54 +caillouté caillouter ver m s 0.03 0.00 0.03 0.00 par:pas; +cailloux caillou nom m p 10.02 38.58 5.91 27.36 +caillé caillé adj m s 0.21 1.96 0.21 1.96 +caillée cailler ver f s 1.46 2.91 0.00 0.07 par:pas; +caillées cailler ver f p 1.46 2.91 0.00 0.07 par:pas; +cairn cairn nom m s 0.08 0.07 0.03 0.07 +cairns cairn nom m p 0.08 0.07 0.05 0.00 +cairote cairote nom s 0.00 0.14 0.00 0.07 +cairotes cairote nom p 0.00 0.14 0.00 0.07 +caisse caisse nom f s 38.03 69.39 29.46 51.01 +caisses caisse nom f p 38.03 69.39 8.57 18.38 +caissette caissette nom f s 0.00 1.15 0.00 0.61 +caissettes caissette nom f p 0.00 1.15 0.00 0.54 +caissier caissier nom m s 4.07 7.09 1.66 1.96 +caissiers caissier nom m p 4.07 7.09 0.38 0.20 +caissière caissier nom f s 4.07 7.09 2.03 4.19 +caissières caissière nom f p 0.25 0.00 0.25 0.00 +caisson caisson nom m s 1.72 3.04 1.43 0.81 +caissons caisson nom m p 1.72 3.04 0.29 2.23 +cajola cajoler ver 1.36 3.45 0.00 0.41 ind:pas:3s; +cajolaient cajoler ver 1.36 3.45 0.00 0.47 ind:imp:3p; +cajolait cajoler ver 1.36 3.45 0.03 0.20 ind:imp:3s; +cajolant cajoler ver 1.36 3.45 0.11 0.27 par:pre; +cajole cajoler ver 1.36 3.45 0.59 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cajolent cajoler ver 1.36 3.45 0.01 0.07 ind:pre:3p; +cajoler cajoler ver 1.36 3.45 0.36 1.15 inf; +cajolera cajoler ver 1.36 3.45 0.01 0.07 ind:fut:3s; +cajolerai cajoler ver 1.36 3.45 0.20 0.00 ind:fut:1s; +cajolerait cajoler ver 1.36 3.45 0.00 0.07 cnd:pre:3s; +cajolerie cajolerie nom f s 0.03 0.81 0.00 0.20 +cajoleries cajolerie nom f p 0.03 0.81 0.03 0.61 +cajoleur cajoleur nom m s 0.10 0.20 0.10 0.07 +cajoleurs cajoleur nom m p 0.10 0.20 0.00 0.07 +cajoleuse cajoleur adj f s 0.11 0.54 0.10 0.14 +cajolèrent cajoler ver 1.36 3.45 0.00 0.14 ind:pas:3p; +cajolé cajoler ver m s 1.36 3.45 0.01 0.20 par:pas; +cajolée cajoler ver f s 1.36 3.45 0.01 0.07 par:pas; +cajolés cajoler ver m p 1.36 3.45 0.02 0.00 par:pas; +cajou cajou nom m s 0.18 0.14 0.17 0.14 +cajous cajou nom m p 0.18 0.14 0.01 0.00 +cajun cajun adj s 0.47 0.00 0.47 0.00 +cajuns cajun nom p 0.28 0.00 0.10 0.00 +cake_walk cake_walk nom m s 0.03 0.00 0.03 0.00 +cake cake nom m s 3.13 1.96 2.57 1.69 +cakes cake nom m p 3.13 1.96 0.56 0.27 +cal cal nom m s 3.54 0.68 3.50 0.34 +cala caler ver 4.19 17.77 0.15 2.16 ind:pas:3s; +calabrais calabrais adj m 0.34 0.41 0.34 0.34 +calabraises calabrais adj f p 0.34 0.41 0.00 0.07 +calade calade nom f s 0.00 0.20 0.00 0.20 +calai caler ver 4.19 17.77 0.01 0.14 ind:pas:1s; +calaient caler ver 4.19 17.77 0.00 0.14 ind:imp:3p; +calais caler ver 4.19 17.77 0.01 0.14 ind:imp:1s;ind:imp:2s; +calaisiens calaisien nom m p 0.00 0.07 0.00 0.07 +calaison calaison nom f s 0.10 0.00 0.10 0.00 +calait caler ver 4.19 17.77 0.01 0.47 ind:imp:3s; +calamar calamar nom m s 1.09 0.47 0.40 0.14 +calamars calamar nom m p 1.09 0.47 0.69 0.34 +calame calame nom m s 0.14 0.27 0.14 0.20 +calames calame nom m p 0.14 0.27 0.00 0.07 +calamine calamine nom f s 0.01 0.20 0.01 0.00 +calamines calamine nom f p 0.01 0.20 0.00 0.20 +calamistre calamistrer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +calamistré calamistré adj m s 0.00 0.41 0.00 0.14 +calamistrée calamistré adj f s 0.00 0.41 0.00 0.14 +calamistrés calamistré adj m p 0.00 0.41 0.00 0.14 +calamita calamiter ver 0.04 0.27 0.01 0.00 ind:pas:3s; +calamitait calamiter ver 0.04 0.27 0.00 0.07 ind:imp:3s; +calamiteuse calamiteux adj f s 0.06 0.81 0.02 0.34 +calamiteuses calamiteux adj f p 0.06 0.81 0.00 0.07 +calamiteux calamiteux adj m s 0.06 0.81 0.03 0.41 +calamité calamité nom f s 2.21 2.84 1.63 1.42 +calamités calamité nom f p 2.21 2.84 0.58 1.42 +calanchaient calancher ver 0.10 0.41 0.00 0.07 ind:imp:3p; +calanchais calancher ver 0.10 0.41 0.00 0.07 ind:imp:1s; +calanche calancher ver 0.10 0.41 0.00 0.07 ind:pre:1s; +calancher calancher ver 0.10 0.41 0.00 0.14 inf; +calanché calancher ver m s 0.10 0.41 0.10 0.07 par:pas; +calandre calandre nom f s 0.09 0.68 0.09 0.68 +calanque calanque nom f s 0.40 0.41 0.14 0.14 +calanques calanque nom f p 0.40 0.41 0.27 0.27 +calant caler ver 4.19 17.77 0.02 0.68 par:pre; +calao calao nom m s 0.01 0.00 0.01 0.00 +calbar calbar nom m s 0.02 0.34 0.02 0.20 +calbars calbar nom m p 0.02 0.34 0.00 0.14 +calbombe calbombe nom f s 0.00 0.54 0.00 0.47 +calbombes calbombe nom f p 0.00 0.54 0.00 0.07 +calcaire calcaire nom m s 0.28 1.55 0.28 1.35 +calcaires calcaire adj p 0.15 1.08 0.04 0.68 +calce calcer ver 0.00 0.34 0.00 0.07 ind:pre:3s; +calcer calcer ver 0.00 0.34 0.00 0.20 inf; +calcerais calcer ver 0.00 0.34 0.00 0.07 cnd:pre:1s; +calcif calcif nom m s 0.10 0.74 0.08 0.54 +calcification calcification nom f s 0.08 0.14 0.08 0.14 +calcifié calcifier ver m s 0.07 0.00 0.05 0.00 par:pas; +calcifiée calcifier ver f s 0.07 0.00 0.01 0.00 par:pas; +calcifiée calcifié adj f s 0.02 0.00 0.01 0.00 +calcifs calcif nom m p 0.10 0.74 0.02 0.20 +calcinaient calciner ver 0.50 2.16 0.01 0.00 ind:imp:3p; +calcinait calciner ver 0.50 2.16 0.00 0.07 ind:imp:3s; +calcinant calciner ver 0.50 2.16 0.00 0.14 par:pre; +calcination calcination nom f s 0.00 0.20 0.00 0.20 +calcine calciner ver 0.50 2.16 0.04 0.00 ind:pre:3s; +calciner calciner ver 0.50 2.16 0.02 0.14 inf; +calciné calciner ver m s 0.50 2.16 0.13 0.41 par:pas; +calcinée calciné adj f s 0.34 3.18 0.13 0.68 +calcinées calciné adj f p 0.34 3.18 0.01 1.15 +calcinés calciner ver m p 0.50 2.16 0.26 0.54 par:pas; +calcite calcite nom m s 0.01 0.00 0.01 0.00 +calcium calcium nom m s 0.98 0.74 0.98 0.74 +calcul calcul nom m s 11.47 19.86 5.95 11.55 +calcula calculer ver 12.19 23.31 0.00 1.76 ind:pas:3s; +calculables calculable adj f p 0.00 0.07 0.00 0.07 +calculai calculer ver 12.19 23.31 0.00 0.34 ind:pas:1s; +calculaient calculer ver 12.19 23.31 0.02 0.20 ind:imp:3p; +calculais calculer ver 12.19 23.31 0.13 0.34 ind:imp:1s; +calculait calculer ver 12.19 23.31 0.29 1.49 ind:imp:3s; +calculant calculer ver 12.19 23.31 0.12 1.28 par:pre; +calculateur calculateur adj m s 0.52 0.54 0.30 0.20 +calculateurs calculateur nom m p 0.75 0.88 0.21 0.07 +calculatrice calculateur nom f s 0.75 0.88 0.51 0.34 +calculatrices calculatrice nom f p 0.05 0.00 0.05 0.00 +calcule calculer ver 12.19 23.31 1.96 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +calculent calculer ver 12.19 23.31 0.05 0.07 ind:pre:3p; +calculer calculer ver 12.19 23.31 3.09 5.61 inf; +calculera calculer ver 12.19 23.31 0.03 0.07 ind:fut:3s; +calculerai calculer ver 12.19 23.31 0.01 0.00 ind:fut:1s; +calculerait calculer ver 12.19 23.31 0.00 0.07 cnd:pre:3s; +calcules calculer ver 12.19 23.31 0.28 0.07 ind:pre:2s; +calculette calculette nom f s 0.20 0.20 0.14 0.14 +calculettes calculette nom f p 0.20 0.20 0.07 0.07 +calculeuse calculeux adj f s 0.01 0.00 0.01 0.00 +calculez calculer ver 12.19 23.31 0.28 0.14 imp:pre:2p;ind:pre:2p; +calculiez calculer ver 12.19 23.31 0.01 0.07 ind:imp:2p; +calculons calculer ver 12.19 23.31 0.06 0.00 imp:pre:1p;ind:pre:1p; +calculs calcul nom m p 11.47 19.86 5.52 8.31 +calculèrent calculer ver 12.19 23.31 0.00 0.27 ind:pas:3p; +calculé calculer ver m s 12.19 23.31 5.29 5.61 par:pas; +calculée calculer ver f s 12.19 23.31 0.37 2.23 par:pas; +calculées calculer ver f p 12.19 23.31 0.02 0.68 par:pas; +calculés calculer ver m p 12.19 23.31 0.18 0.81 par:pas; +calcémie calcémie nom f s 0.03 0.00 0.03 0.00 +caldarium caldarium nom m s 0.00 0.07 0.00 0.07 +caldeira caldeira nom f s 0.05 0.00 0.05 0.00 +cale_pied cale_pied nom m s 0.00 0.34 0.00 0.07 +cale_pied cale_pied nom m p 0.00 0.34 0.00 0.27 +cale cale nom f s 4.08 6.15 3.00 4.80 +calebar calebar nom m s 0.16 0.00 0.16 0.00 +calebasse calebasse nom f s 0.12 1.69 0.11 0.95 +calebasses calebasse nom f p 0.12 1.69 0.01 0.74 +calebassier calebassier nom m s 0.00 0.07 0.00 0.07 +calebombe calebombe nom f s 0.00 0.07 0.00 0.07 +calecif calecif nom m s 0.02 0.14 0.02 0.14 +calembour calembour nom m s 0.40 2.23 0.23 0.74 +calembours calembour nom m p 0.40 2.23 0.17 1.49 +calembredaine calembredaine nom f s 0.00 0.54 0.00 0.14 +calembredaines calembredaine nom f p 0.00 0.54 0.00 0.41 +calenché calencher ver m s 0.00 0.07 0.00 0.07 par:pas; +calendaire calendaire adj f s 0.01 0.00 0.01 0.00 +calendes calendes nom f p 0.07 0.61 0.07 0.61 +calendo calendo nom m s 0.00 0.07 0.00 0.07 +calendos calendos nom m 0.00 0.88 0.00 0.88 +calendre calendre nom f s 0.01 0.00 0.01 0.00 +calendrier calendrier nom m s 6.18 14.53 5.37 12.84 +calendriers calendrier nom m p 6.18 14.53 0.82 1.69 +calendula calendula nom m s 0.15 0.00 0.15 0.00 +calent caler ver 4.19 17.77 0.16 0.07 ind:pre:3p; +calepin calepin nom m s 1.17 3.72 1.00 3.11 +calepins calepin nom m p 1.17 3.72 0.17 0.61 +caler caler ver 4.19 17.77 0.77 2.50 inf; +calerai caler ver 4.19 17.77 0.01 0.00 ind:fut:1s; +calerait caler ver 4.19 17.77 0.00 0.07 cnd:pre:3s; +caleras caler ver 4.19 17.77 0.01 0.14 ind:fut:2s; +cales cale nom f p 4.08 6.15 1.08 1.35 +caleçon caleçon nom m s 7.58 6.69 4.63 4.86 +caleçonnade caleçonnade nom f s 0.00 0.07 0.00 0.07 +caleçons caleçon nom m p 7.58 6.69 2.95 1.82 +calez caler ver 4.19 17.77 0.22 2.36 imp:pre:2p;ind:pre:2p; +calf calf nom m s 0.04 0.07 0.04 0.07 +calfat calfat nom m s 0.00 0.27 0.00 0.07 +calfatage calfatage nom m s 0.00 0.07 0.00 0.07 +calfatait calfater ver 0.03 0.47 0.00 0.07 ind:imp:3s; +calfatant calfater ver 0.03 0.47 0.01 0.07 par:pre; +calfate calfater ver 0.03 0.47 0.00 0.07 ind:pre:3s; +calfater calfater ver 0.03 0.47 0.01 0.07 inf; +calfats calfat nom m p 0.00 0.27 0.00 0.20 +calfaté calfater ver m s 0.03 0.47 0.00 0.07 par:pas; +calfatée calfater ver f s 0.03 0.47 0.00 0.07 par:pas; +calfatés calfater ver m p 0.03 0.47 0.01 0.07 par:pas; +calfeutra calfeutrer ver 0.22 3.51 0.00 0.07 ind:pas:3s; +calfeutrage calfeutrage nom m s 0.14 0.00 0.14 0.00 +calfeutrai calfeutrer ver 0.22 3.51 0.00 0.07 ind:pas:1s; +calfeutraient calfeutrer ver 0.22 3.51 0.00 0.34 ind:imp:3p; +calfeutrais calfeutrer ver 0.22 3.51 0.00 0.07 ind:imp:1s; +calfeutrait calfeutrer ver 0.22 3.51 0.00 0.20 ind:imp:3s; +calfeutrant calfeutrer ver 0.22 3.51 0.00 0.07 par:pre; +calfeutre calfeutrer ver 0.22 3.51 0.14 0.34 imp:pre:2s;ind:pre:3s; +calfeutrer calfeutrer ver 0.22 3.51 0.04 0.41 inf; +calfeutres calfeutrer ver 0.22 3.51 0.00 0.07 ind:pre:2s; +calfeutré calfeutrer ver m s 0.22 3.51 0.03 0.61 par:pas; +calfeutrée calfeutrer ver f s 0.22 3.51 0.01 0.74 par:pas; +calfeutrées calfeutrer ver f p 0.22 3.51 0.00 0.27 par:pas; +calfeutrés calfeutrer ver m p 0.22 3.51 0.00 0.27 par:pas; +calibrage calibrage nom m s 0.13 0.07 0.12 0.07 +calibrages calibrage nom m p 0.13 0.07 0.01 0.00 +calibration calibration nom f s 0.07 0.00 0.07 0.00 +calibre calibre nom m s 7.32 6.15 6.63 5.00 +calibrer calibrer ver 1.27 0.61 0.27 0.20 inf; +calibres calibre nom m p 7.32 6.15 0.69 1.15 +calibrez calibrer ver 1.27 0.61 0.01 0.00 imp:pre:2p; +calibré calibrer ver m s 1.27 0.61 0.32 0.14 par:pas; +calibrée calibrer ver f s 1.27 0.61 0.04 0.07 par:pas; +calibrées calibrer ver f p 1.27 0.61 0.16 0.00 par:pas; +calibrés calibrer ver m p 1.27 0.61 0.01 0.07 par:pas; +calice calice nom m s 1.42 2.97 1.20 2.64 +calices calice nom m p 1.42 2.97 0.22 0.34 +calicot calicot nom m s 0.32 2.09 0.17 1.28 +calicots calicot nom m p 0.32 2.09 0.14 0.81 +califat califat nom m s 0.00 0.14 0.00 0.14 +calife calife nom m s 3.51 2.03 3.50 1.96 +califes calife nom m p 3.51 2.03 0.01 0.07 +californie californie nom f s 0.09 0.07 0.09 0.07 +californien californien adj m s 0.81 1.15 0.53 0.54 +californienne californienne adj f s 0.43 0.00 0.35 0.00 +californiennes californienne adj f p 0.43 0.00 0.08 0.00 +californiens californien adj m p 0.81 1.15 0.22 0.14 +californium californium nom m s 0.03 0.00 0.03 0.00 +califourchon califourchon adv 0.44 4.19 0.44 4.19 +calisson calisson nom m s 0.14 0.07 0.14 0.00 +calissons calisson nom m p 0.14 0.07 0.00 0.07 +call_girl call_girl nom f s 1.36 0.14 0.98 0.14 +call_girl call_girl nom f p 1.36 0.14 0.09 0.00 +call_girl call_girl nom f s 1.36 0.14 0.25 0.00 +call_girl call_girl nom f p 1.36 0.14 0.03 0.00 +calla calla nom f s 0.13 0.07 0.13 0.07 +calle caller ver 0.66 1.42 0.63 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +caller caller ver 0.66 1.42 0.00 0.14 inf; +calles caller ver 0.66 1.42 0.03 0.07 ind:pre:2s; +calleuse calleux adj f s 0.64 1.69 0.02 0.20 +calleuses calleux adj f p 0.64 1.69 0.25 1.22 +calleux calleux adj m 0.64 1.69 0.37 0.27 +calligrammes calligramme nom m p 0.00 0.07 0.00 0.07 +calligraphe calligraphe nom s 0.01 0.41 0.01 0.41 +calligraphiais calligraphier ver 0.04 2.16 0.00 0.07 ind:imp:1s; +calligraphiait calligraphier ver 0.04 2.16 0.00 0.07 ind:imp:3s; +calligraphiant calligraphier ver 0.04 2.16 0.00 0.20 par:pre; +calligraphie calligraphie nom f s 1.09 1.35 1.09 1.22 +calligraphient calligraphier ver 0.04 2.16 0.00 0.07 ind:pre:3p; +calligraphier calligraphier ver 0.04 2.16 0.00 0.14 inf; +calligraphies calligraphie nom f p 1.09 1.35 0.00 0.14 +calligraphiez calligraphier ver 0.04 2.16 0.01 0.00 ind:pre:2p; +calligraphique calligraphique adj f s 0.01 0.07 0.01 0.00 +calligraphiquement calligraphiquement adv 0.00 0.07 0.00 0.07 +calligraphiques calligraphique adj m p 0.01 0.07 0.00 0.07 +calligraphié calligraphier ver m s 0.04 2.16 0.01 0.61 par:pas; +calligraphiée calligraphier ver f s 0.04 2.16 0.00 0.34 par:pas; +calligraphiées calligraphier ver f p 0.04 2.16 0.01 0.07 par:pas; +calligraphiés calligraphier ver m p 0.04 2.16 0.00 0.47 par:pas; +callipyge callipyge adj f s 0.00 0.07 0.00 0.07 +callosité callosité nom f s 0.05 0.20 0.02 0.00 +callosités callosité nom f p 0.05 0.20 0.03 0.20 +calma calmer ver 168.51 45.07 0.04 2.97 ind:pas:3s; +calmai calmer ver 168.51 45.07 0.01 0.34 ind:pas:1s; +calmaient calmer ver 168.51 45.07 0.14 0.47 ind:imp:3p; +calmais calmer ver 168.51 45.07 0.21 0.20 ind:imp:1s;ind:imp:2s; +calmait calmer ver 168.51 45.07 0.58 3.38 ind:imp:3s; +calmant calmant nom m s 7.38 1.55 3.46 0.61 +calmante calmant adj f s 0.81 1.08 0.03 0.54 +calmants calmant nom m p 7.38 1.55 3.92 0.95 +calmar calmar nom m s 1.10 0.61 0.70 0.27 +calmars calmar nom m p 1.10 0.61 0.40 0.34 +calmas calmer ver 168.51 45.07 0.01 0.00 ind:pas:2s; +calme calme nom m s 105.20 53.24 105.08 52.03 +calmement calmement adv 6.74 12.43 6.74 12.43 +calment calmer ver 168.51 45.07 0.66 0.54 ind:pre:3p; +calmer calmer ver 168.51 45.07 22.86 14.66 inf;; +calmera calmer ver 168.51 45.07 2.84 0.61 ind:fut:3s; +calmerai calmer ver 168.51 45.07 0.64 0.00 ind:fut:1s; +calmeraient calmer ver 168.51 45.07 0.01 0.14 cnd:pre:3p; +calmerais calmer ver 168.51 45.07 0.18 0.07 cnd:pre:1s; +calmerait calmer ver 168.51 45.07 0.27 0.20 cnd:pre:3s; +calmeras calmer ver 168.51 45.07 0.11 0.00 ind:fut:2s; +calmerez calmer ver 168.51 45.07 0.03 0.00 ind:fut:2p; +calmerons calmer ver 168.51 45.07 0.00 0.07 ind:fut:1p; +calmeront calmer ver 168.51 45.07 0.20 0.14 ind:fut:3p; +calmes calme adj p 66.57 73.65 7.79 7.84 +calmez calmer ver 168.51 45.07 34.63 1.55 imp:pre:2p;ind:pre:2p; +calmi calmir ver m s 0.00 0.20 0.00 0.14 par:pas; +calmiez calmer ver 168.51 45.07 0.12 0.00 ind:imp:2p; +calmir calmir ver 0.00 0.20 0.00 0.07 inf; +calmons calmer ver 168.51 45.07 0.98 0.34 imp:pre:1p;ind:pre:1p; +calmos calmos ono 1.69 0.88 1.69 0.88 +calmât calmer ver 168.51 45.07 0.00 0.14 sub:imp:3s; +calmèrent calmer ver 168.51 45.07 0.00 0.74 ind:pas:3p; +calmé calmer ver m s 168.51 45.07 4.41 3.65 par:pas; +calmée calmer ver f s 168.51 45.07 1.48 3.45 par:pas; +calmées calmer ver f p 168.51 45.07 0.13 0.27 par:pas; +calmés calmer ver m p 168.51 45.07 0.35 0.47 par:pas; +calo calo nom m s 0.08 0.00 0.08 0.00 +calomel calomel nom m s 0.01 0.20 0.01 0.20 +calomniant calomnier ver 1.69 1.55 0.02 0.00 par:pre; +calomniateur calomniateur nom m s 0.12 0.27 0.01 0.07 +calomniateurs calomniateur nom m p 0.12 0.27 0.11 0.14 +calomniatrice calomniateur nom f s 0.12 0.27 0.00 0.07 +calomnie calomnie nom f s 4.49 3.92 2.71 1.69 +calomnient calomnier ver 1.69 1.55 0.17 0.20 ind:pre:3p; +calomnier calomnier ver 1.69 1.55 0.36 0.34 inf; +calomnies calomnie nom f p 4.49 3.92 1.77 2.23 +calomnieuse calomnieux adj f s 0.11 0.34 0.02 0.20 +calomnieuses calomnieux adj f p 0.11 0.34 0.06 0.00 +calomnieux calomnieux adj m p 0.11 0.34 0.03 0.14 +calomniez calomnier ver 1.69 1.55 0.05 0.00 imp:pre:2p;ind:pre:2p; +calomnié calomnier ver m s 1.69 1.55 0.34 0.47 par:pas; +calomniée calomnier ver f s 1.69 1.55 0.16 0.27 par:pas; +calomniés calomnier ver m p 1.69 1.55 0.07 0.20 par:pas; +caloporteur caloporteur nom m s 0.01 0.00 0.01 0.00 +calorie calorie nom f s 1.43 0.95 0.15 0.00 +calories calorie nom f p 1.43 0.95 1.28 0.95 +calorifique calorifique adj s 0.13 0.00 0.13 0.00 +calorifère calorifère nom m s 0.05 0.81 0.04 0.54 +calorifères calorifère nom m p 0.05 0.81 0.01 0.27 +calorifuges calorifuge nom m p 0.00 0.07 0.00 0.07 +calorique calorique adj s 0.10 0.07 0.10 0.07 +calot calot nom m s 0.23 5.81 0.12 4.19 +calotin calotin nom m s 0.00 0.14 0.00 0.07 +calotins calotin nom m p 0.00 0.14 0.00 0.07 +calots calot nom m p 0.23 5.81 0.11 1.62 +calottais calotter ver 0.04 0.54 0.00 0.07 ind:imp:1s; +calotte calotte nom f s 0.43 4.73 0.25 3.85 +calottes calotte nom f p 0.43 4.73 0.18 0.88 +calotté calotter ver m s 0.04 0.54 0.01 0.14 par:pas; +calottées calotter ver f p 0.04 0.54 0.00 0.07 par:pas; +calottés calotter ver m p 0.04 0.54 0.00 0.07 par:pas; +calquaient calquer ver 0.36 1.35 0.00 0.07 ind:imp:3p; +calquait calquer ver 0.36 1.35 0.00 0.27 ind:imp:3s; +calquant calquer ver 0.36 1.35 0.02 0.07 par:pre; +calque calquer ver 0.36 1.35 0.23 0.27 imp:pre:2s;ind:pre:3s; +calquer calquer ver 0.36 1.35 0.03 0.20 inf; +calquera calquer ver 0.36 1.35 0.00 0.07 ind:fut:3s; +calques calque nom m p 0.07 0.61 0.03 0.20 +calqué calquer ver m s 0.36 1.35 0.08 0.07 par:pas; +calquée calquer ver f s 0.36 1.35 0.00 0.20 par:pas; +calquées calquer ver f p 0.36 1.35 0.00 0.14 par:pas; +cals cal nom m p 3.54 0.68 0.04 0.34 +calte calter ver 0.47 1.62 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +caltent calter ver 0.47 1.62 0.00 0.14 ind:pre:3p; +calter calter ver 0.47 1.62 0.02 0.54 inf; +caltez calter ver 0.47 1.62 0.43 0.47 imp:pre:2p;ind:pre:2p; +calèche calèche nom f s 1.36 3.72 1.32 3.24 +calèches calèche nom f p 1.36 3.72 0.04 0.47 +calèrent caler ver 4.19 17.77 0.00 0.14 ind:pas:3p; +caltons calter ver 0.47 1.62 0.00 0.07 imp:pre:1p; +caltés calter ver m p 0.47 1.62 0.00 0.14 par:pas; +calé caler ver m s 4.19 17.77 1.39 4.46 par:pas; +calédonien calédonien adj m s 0.02 0.14 0.02 0.07 +calédonienne calédonienne adj f s 0.01 0.00 0.01 0.00 +calédoniens calédonien nom m p 0.07 0.14 0.07 0.14 +calée caler ver f s 4.19 17.77 0.25 1.49 par:pas; +calées caler ver f p 4.19 17.77 0.00 0.20 par:pas; +caléidoscope caléidoscope nom m s 0.11 0.00 0.11 0.00 +calumet calumet nom m s 0.24 0.27 0.23 0.20 +calumets calumet nom m p 0.24 0.27 0.01 0.07 +calés caler ver m p 4.19 17.77 0.19 0.68 par:pas; +calus calus nom m 0.00 0.07 0.00 0.07 +calva calva nom m s 0.03 2.36 0.03 2.23 +calvados calvados nom m 0.02 1.35 0.02 1.35 +calvaire calvaire nom m s 2.19 8.24 2.19 7.70 +calvaires calvaire nom m p 2.19 8.24 0.00 0.54 +calvas calva nom m p 0.03 2.36 0.00 0.14 +calville calville nom f s 0.04 0.14 0.04 0.07 +calvilles calville nom f p 0.04 0.14 0.00 0.07 +calvinisme calvinisme nom m s 0.10 0.07 0.10 0.07 +calviniste calviniste adj f s 0.12 0.34 0.11 0.14 +calvinistes calviniste adj p 0.12 0.34 0.01 0.20 +calvitie calvitie nom f s 1.02 2.84 1.00 2.77 +calvities calvitie nom f p 1.02 2.84 0.01 0.07 +calypso calypso nom m s 0.05 0.20 0.05 0.20 +cama camer ver 3.35 1.08 0.20 0.14 ind:pas:3s; +camaïeu camaïeu nom m s 0.00 0.34 0.00 0.34 +camaïeux camaïeux nom m p 0.00 0.14 0.00 0.14 +camail camail nom m s 0.00 0.61 0.00 0.54 +camails camail nom m p 0.00 0.61 0.00 0.07 +camarade camarade nom s 77.81 98.99 47.32 38.85 +camaraderie camaraderie nom f s 1.23 3.58 1.22 3.24 +camaraderies camaraderie nom f p 1.23 3.58 0.01 0.34 +camarades camarade nom p 77.81 98.99 30.50 60.14 +camard camard adj m s 0.01 0.47 0.01 0.27 +camarde camard nom f s 0.00 0.20 0.00 0.20 +camards camard adj m p 0.01 0.47 0.00 0.07 +camarero camarero nom m s 0.00 0.14 0.00 0.07 +camareros camarero nom m p 0.00 0.14 0.00 0.07 +camarguais camarguais adj m 0.00 0.14 0.00 0.14 +camarguaises camarguais nom f p 0.00 0.07 0.00 0.07 +camarilla camarilla nom f s 0.00 0.07 0.00 0.07 +camarin camarin nom m s 0.00 0.34 0.00 0.14 +camarins camarin nom m p 0.00 0.34 0.00 0.20 +camarluche camarluche nom m s 0.00 0.07 0.00 0.07 +camaro camaro nom m s 0.38 0.00 0.38 0.00 +camber camber ver 0.09 0.00 0.09 0.00 inf; +cambiste cambiste nom s 0.01 0.00 0.01 0.00 +cambodgien cambodgien adj m s 0.16 0.14 0.06 0.00 +cambodgienne cambodgien adj f s 0.16 0.14 0.07 0.07 +cambodgiennes cambodgien adj f p 0.16 0.14 0.01 0.00 +cambodgiens cambodgien nom m p 0.09 0.47 0.07 0.00 +cambouis cambouis nom m 0.38 4.59 0.38 4.59 +cambra cambrer ver 1.35 3.51 0.01 0.34 ind:pas:3s; +cambrait cambrer ver 1.35 3.51 0.00 0.41 ind:imp:3s; +cambrant cambrer ver 1.35 3.51 0.00 0.27 par:pre; +cambre cambrer ver 1.35 3.51 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cambrement cambrement nom m s 0.00 0.14 0.00 0.14 +cambrent cambrer ver 1.35 3.51 0.00 0.14 ind:pre:3p; +cambrer cambrer ver 1.35 3.51 0.69 0.20 inf; +cambrera cambrer ver 1.35 3.51 0.00 0.07 ind:fut:3s; +cambres cambrer ver 1.35 3.51 0.00 0.34 ind:pre:2s; +cambrez cambrer ver 1.35 3.51 0.31 0.00 imp:pre:2p; +cambrienne cambrien adj f s 0.04 0.00 0.04 0.00 +cambriolage cambriolage nom m s 8.05 2.77 6.60 2.03 +cambriolages cambriolage nom m p 8.05 2.77 1.45 0.74 +cambriolaient cambrioler ver 6.80 1.15 0.02 0.07 ind:imp:3p; +cambriolais cambrioler ver 6.80 1.15 0.05 0.07 ind:imp:1s;ind:imp:2s; +cambriolant cambrioler ver 6.80 1.15 0.05 0.00 par:pre; +cambriole cambrioler ver 6.80 1.15 0.49 0.14 ind:pre:1s;ind:pre:3s; +cambriolent cambrioler ver 6.80 1.15 0.09 0.14 ind:pre:3p; +cambrioler cambrioler ver 6.80 1.15 2.27 0.27 inf; +cambrioles cambrioler ver 6.80 1.15 0.06 0.00 ind:pre:2s; +cambrioleur cambrioleur nom m s 4.70 2.36 3.17 1.08 +cambrioleurs cambrioleur nom m p 4.70 2.36 1.41 1.28 +cambrioleuse cambrioleur nom f s 4.70 2.36 0.12 0.00 +cambriolez cambrioler ver 6.80 1.15 0.06 0.00 imp:pre:2p;ind:pre:2p; +cambrioliez cambrioler ver 6.80 1.15 0.02 0.00 ind:imp:2p; +cambriolons cambrioler ver 6.80 1.15 0.01 0.00 ind:pre:1p; +cambriolé cambrioler ver m s 6.80 1.15 2.69 0.27 par:pas; +cambriolée cambrioler ver f s 6.80 1.15 0.34 0.07 par:pas; +cambriolées cambrioler ver f p 6.80 1.15 0.02 0.14 par:pas; +cambriolés cambrioler ver m p 6.80 1.15 0.62 0.00 par:pas; +cambrousse cambrousse nom f s 1.04 1.96 1.04 1.89 +cambrousses cambrousse nom f p 1.04 1.96 0.00 0.07 +cambré cambré adj m s 0.32 2.77 0.19 0.68 +cambrée cambré adj f s 0.32 2.77 0.14 1.01 +cambrées cambrer ver f p 1.35 3.51 0.00 0.14 par:pas; +cambrure cambrure nom f s 0.20 1.01 0.19 0.95 +cambrures cambrure nom f p 0.20 1.01 0.01 0.07 +cambrés cambré adj m p 0.32 2.77 0.00 0.95 +cambuse cambuse nom f s 0.06 2.50 0.06 2.43 +cambuses cambuse nom f p 0.06 2.50 0.00 0.07 +cambusier cambusier nom m s 0.02 0.00 0.02 0.00 +cambute cambuter ver 0.00 0.27 0.00 0.20 ind:pre:3s; +cambuté cambuter ver m s 0.00 0.27 0.00 0.07 par:pas; +came came nom f s 16.77 4.73 16.50 4.59 +camellia camellia nom m s 0.01 0.00 0.01 0.00 +camelot camelot nom m s 0.48 2.50 0.47 1.28 +camelote camelote nom f s 3.59 4.80 3.59 4.46 +camelotes camelote nom f p 3.59 4.80 0.00 0.34 +camelots camelot nom m p 0.48 2.50 0.01 1.22 +camembert camembert nom m s 0.80 3.85 0.79 3.18 +camemberts camembert nom m p 0.80 3.85 0.01 0.68 +cament camer ver 3.35 1.08 0.08 0.07 ind:pre:3p; +camer camer ver 3.35 1.08 0.30 0.00 inf; +camera camer ver 3.35 1.08 1.55 0.41 ind:fut:3s; +cameraman cameraman nom m s 1.68 0.68 1.54 0.34 +cameramen cameraman nom m p 1.68 0.68 0.14 0.34 +cameras camer ver 3.35 1.08 0.59 0.14 ind:fut:2s; +camerounais camerounais adj m 0.02 0.20 0.01 0.20 +camerounaise camerounais adj f s 0.02 0.20 0.01 0.00 +cames came nom f p 16.77 4.73 0.28 0.14 +camez camer ver 3.35 1.08 0.01 0.00 ind:pre:2p; +camion_benne camion_benne nom m s 0.06 0.14 0.03 0.00 +camion_citerne camion_citerne nom m s 0.70 0.47 0.62 0.34 +camion_grue camion_grue nom m s 0.00 0.14 0.00 0.14 +camion camion nom m s 59.46 50.74 50.06 30.27 +camionnage camionnage nom m s 0.18 0.00 0.18 0.00 +camionnette camionnette nom f s 10.77 17.97 10.05 15.54 +camionnettes camionnette nom f p 10.77 17.97 0.72 2.43 +camionneur camionneur nom m s 2.17 2.36 1.17 1.62 +camionneurs camionneur nom m p 2.17 2.36 1.00 0.74 +camionnée camionner ver f s 0.00 0.07 0.00 0.07 par:pas; +camion_benne camion_benne nom m p 0.06 0.14 0.03 0.14 +camion_citerne camion_citerne nom m p 0.70 0.47 0.08 0.14 +camions camion nom m p 59.46 50.74 9.41 20.47 +camisards camisard nom m p 0.00 0.07 0.00 0.07 +camisole camisole nom f s 2.62 1.69 2.52 1.35 +camisoles camisole nom f p 2.62 1.69 0.10 0.34 +camomille camomille nom f s 1.16 0.68 1.16 0.54 +camomilles camomille nom f p 1.16 0.68 0.00 0.14 +camorra camorra nom f s 0.20 0.07 0.20 0.07 +camoufla camoufler ver 2.19 8.65 0.00 0.14 ind:pas:3s; +camouflage camouflage nom m s 2.43 2.16 2.41 1.82 +camouflages camouflage nom m p 2.43 2.16 0.02 0.34 +camouflaient camoufler ver 2.19 8.65 0.01 0.07 ind:imp:3p; +camouflais camoufler ver 2.19 8.65 0.00 0.07 ind:imp:2s; +camouflait camoufler ver 2.19 8.65 0.02 0.68 ind:imp:3s; +camouflant camoufler ver 2.19 8.65 0.02 0.14 par:pre; +camoufle camoufler ver 2.19 8.65 0.30 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +camouflent camoufler ver 2.19 8.65 0.18 0.27 ind:pre:3p; +camoufler camoufler ver 2.19 8.65 0.80 2.23 inf; +camouflerait camoufler ver 2.19 8.65 0.00 0.07 cnd:pre:3s; +camouflet camouflet nom m s 0.02 0.61 0.02 0.41 +camouflets camouflet nom m p 0.02 0.61 0.00 0.20 +camouflez camoufler ver 2.19 8.65 0.08 0.07 imp:pre:2p;ind:pre:2p; +camouflé camoufler ver m s 2.19 8.65 0.55 1.28 par:pas; +camouflée camoufler ver f s 2.19 8.65 0.18 1.49 par:pas; +camouflées camoufler ver f p 2.19 8.65 0.01 0.54 par:pas; +camouflés camoufler ver m p 2.19 8.65 0.04 1.15 par:pas; +camp camp nom m s 114.93 97.23 105.92 75.61 +campa camper ver 6.16 13.85 0.06 0.68 ind:pas:3s; +campagnard campagnard adj m s 0.88 6.42 0.32 1.55 +campagnarde campagnard adj f s 0.88 6.42 0.24 2.84 +campagnardes campagnard adj f p 0.88 6.42 0.28 1.08 +campagnards campagnard nom m p 0.16 0.74 0.06 0.27 +campagne campagne nom f s 51.12 107.23 48.61 94.73 +campagnes campagne nom f p 51.12 107.23 2.51 12.50 +campagnol campagnol nom m s 0.03 0.41 0.03 0.27 +campagnols campagnol nom m p 0.03 0.41 0.00 0.14 +campaient camper ver 6.16 13.85 0.04 0.95 ind:imp:3p; +campais camper ver 6.16 13.85 0.04 0.07 ind:imp:1s; +campait camper ver 6.16 13.85 0.15 1.76 ind:imp:3s; +campanaire campanaire adj m s 0.00 0.07 0.00 0.07 +campanelles campanelle nom f p 0.00 0.07 0.00 0.07 +campanile campanile nom m s 0.02 2.09 0.02 1.42 +campaniles campanile nom m p 0.02 2.09 0.00 0.68 +campant camper ver 6.16 13.85 0.04 0.41 par:pre; +campanule campanule nom f s 0.18 0.47 0.11 0.00 +campanules campanule nom f p 0.18 0.47 0.07 0.47 +campe camper ver 6.16 13.85 0.89 1.49 ind:pre:1s;ind:pre:3s; +campement campement nom m s 2.52 6.49 2.46 5.34 +campements campement nom m p 2.52 6.49 0.07 1.15 +campent camper ver 6.16 13.85 0.51 0.54 ind:pre:3p; +camper camper ver 6.16 13.85 3.02 3.92 inf; +campera camper ver 6.16 13.85 0.11 0.00 ind:fut:3s; +camperai camper ver 6.16 13.85 0.02 0.00 ind:fut:1s; +camperait camper ver 6.16 13.85 0.01 0.14 cnd:pre:3s; +camperons camper ver 6.16 13.85 0.10 0.14 ind:fut:1p; +campes camper ver 6.16 13.85 0.16 0.07 ind:pre:2s; +campeur campeur nom m s 0.68 4.26 0.13 0.47 +campeurs campeur nom m p 0.68 4.26 0.49 3.72 +campeuse campeur nom f s 0.68 4.26 0.05 0.00 +campeuses campeur nom f p 0.68 4.26 0.00 0.07 +campez camper ver 6.16 13.85 0.08 0.00 imp:pre:2p;ind:pre:2p; +camphre camphre nom m s 0.26 0.74 0.26 0.74 +camphrier camphrier nom m s 0.00 0.14 0.00 0.14 +camphrée camphré adj f s 0.00 0.14 0.00 0.07 +camphrées camphré adj f p 0.00 0.14 0.00 0.07 +camping_car camping_car nom m s 1.06 0.00 1.01 0.00 +camping_car camping_car nom m p 1.06 0.00 0.05 0.00 +camping_gaz camping_gaz nom m 0.00 0.47 0.00 0.47 +camping camping nom m s 4.20 3.24 4.11 2.97 +campings camping nom m p 4.20 3.24 0.09 0.27 +campions camper ver 6.16 13.85 0.02 0.20 ind:imp:1p; +campo campo nom m s 0.58 1.49 0.47 1.49 +campâmes camper ver 6.16 13.85 0.00 0.07 ind:pas:1p; +campons camper ver 6.16 13.85 0.16 0.14 imp:pre:1p;ind:pre:1p; +campos campo nom m p 0.58 1.49 0.11 0.00 +camps camp nom m p 114.93 97.23 9.01 21.62 +campèrent camper ver 6.16 13.85 0.01 0.00 ind:pas:3p; +campé camper ver m s 6.16 13.85 0.74 1.96 par:pas; +campêche campêche nom m s 0.00 0.14 0.00 0.14 +campée camper ver f s 6.16 13.85 0.00 0.81 par:pas; +campées camper ver f p 6.16 13.85 0.00 0.14 par:pas; +campés camper ver m p 6.16 13.85 0.01 0.41 par:pas; +campus campus nom m 6.04 1.62 6.04 1.62 +camé camé nom m s 2.69 0.54 1.71 0.34 +camée camée nom m s 0.58 1.01 0.47 0.88 +camées camée nom m p 0.58 1.01 0.11 0.14 +camélia camélia nom m s 0.42 2.23 0.04 0.27 +camélias camélia nom m p 0.42 2.23 0.38 1.96 +camélidé camélidé nom m s 0.00 0.14 0.00 0.07 +camélidés camélidé nom m p 0.00 0.14 0.00 0.07 +caméléon caméléon nom m s 2.51 0.81 2.35 0.68 +caméléons caméléon nom m p 2.51 0.81 0.16 0.14 +caméra_espion caméra_espion nom f s 0.01 0.00 0.01 0.00 +caméra caméra nom f s 56.18 6.35 41.64 4.39 +caméraman caméraman nom m s 1.28 0.07 1.14 0.07 +caméramans caméraman nom m p 1.28 0.07 0.14 0.00 +caméras caméra nom f p 56.18 6.35 14.54 1.96 +camériste camériste nom f s 0.18 1.01 0.17 0.81 +caméristes camériste nom f p 0.18 1.01 0.01 0.20 +camés camé nom m p 2.69 0.54 0.97 0.20 +camus camus nom m 0.16 0.07 0.16 0.07 +caméscope caméscope nom m s 0.78 0.00 0.74 0.00 +caméscopes caméscope nom m p 0.78 0.00 0.04 0.00 +camuse camus adj f s 0.14 0.61 0.14 0.07 +cana caner ver 0.86 1.55 0.01 0.07 ind:pas:3s; +canada canada nom f s 0.03 0.54 0.03 0.54 +canadair canadair nom m s 0.26 0.00 0.10 0.00 +canadairs canadair nom m p 0.26 0.00 0.16 0.00 +canadian_river canadian_river nom s 0.00 0.07 0.00 0.07 +canadien canadien adj m s 3.57 4.93 1.86 2.09 +canadienne canadien adj f s 3.57 4.93 0.75 1.35 +canadiennes canadien adj f p 3.57 4.93 0.41 0.68 +canadiens canadien nom m p 2.10 5.74 1.36 0.47 +canado canado adv 0.02 0.00 0.02 0.00 +canaille canaille nom f s 6.09 2.91 4.70 2.16 +canaillement canaillement adv 0.00 0.07 0.00 0.07 +canaillerie canaillerie nom f s 0.00 0.41 0.00 0.41 +canailles canaille nom f p 6.09 2.91 1.39 0.74 +canal canal nom m s 17.11 27.43 14.20 20.95 +canalicules canalicule nom m p 0.00 0.14 0.00 0.14 +canalisa canaliser ver 1.88 1.96 0.00 0.07 ind:pas:3s; +canalisaient canaliser ver 1.88 1.96 0.00 0.14 ind:imp:3p; +canalisait canaliser ver 1.88 1.96 0.00 0.20 ind:imp:3s; +canalisateur canalisateur nom m s 0.01 0.00 0.01 0.00 +canalisation canalisation nom f s 1.47 1.28 0.51 0.47 +canalisations canalisation nom f p 1.47 1.28 0.96 0.81 +canalise canaliser ver 1.88 1.96 0.50 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +canalisent canaliser ver 1.88 1.96 0.01 0.20 ind:pre:3p; +canaliser canaliser ver 1.88 1.96 1.06 0.74 inf; +canalisez canaliser ver 1.88 1.96 0.06 0.00 imp:pre:2p;ind:pre:2p; +canalisons canaliser ver 1.88 1.96 0.02 0.07 ind:pre:1p; +canalisé canaliser ver m s 1.88 1.96 0.11 0.27 par:pas; +canalisée canaliser ver f s 1.88 1.96 0.09 0.14 par:pas; +canalisées canaliser ver f p 1.88 1.96 0.00 0.14 par:pas; +canalisés canaliser ver m p 1.88 1.96 0.02 0.00 par:pas; +cananéen cananéen adj m s 0.00 0.07 0.00 0.07 +canapé_lit canapé_lit nom m s 0.02 1.15 0.00 1.15 +canapé canapé nom m s 18.58 20.27 17.66 17.97 +canapé_lit canapé_lit nom m p 0.02 1.15 0.02 0.00 +canapés canapé nom m p 18.58 20.27 0.93 2.30 +canaque canaque adj m s 0.00 0.34 0.00 0.34 +canaques canaque nom p 0.00 0.07 0.00 0.07 +canard canard nom m s 23.05 29.05 15.46 16.15 +canardaient canarder ver 1.36 1.35 0.05 0.07 ind:imp:3p; +canardait canarder ver 1.36 1.35 0.04 0.14 ind:imp:3s; +canarde canarder ver 1.36 1.35 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +canardeaux canardeau nom m p 0.00 0.07 0.00 0.07 +canardent canarder ver 1.36 1.35 0.08 0.20 ind:pre:3p; +canarder canarder ver 1.36 1.35 0.63 0.47 inf; +canardera canarder ver 1.36 1.35 0.02 0.00 ind:fut:3s; +canarderais canarder ver 1.36 1.35 0.01 0.00 cnd:pre:2s; +canarderont canarder ver 1.36 1.35 0.01 0.00 ind:fut:3p; +canardez canarder ver 1.36 1.35 0.03 0.00 imp:pre:2p; +canards canard nom m p 23.05 29.05 6.66 11.49 +canardé canarder ver m s 1.36 1.35 0.18 0.14 par:pas; +canardée canarder ver f s 1.36 1.35 0.00 0.07 par:pas; +canardés canarder ver m p 1.36 1.35 0.02 0.14 par:pas; +canari canari nom m s 2.72 2.77 1.51 1.49 +canaris canari nom m p 2.72 2.77 1.21 1.28 +canas caner ver 0.86 1.55 0.00 0.07 ind:pas:2s; +canasson canasson nom m s 0.98 1.49 0.58 1.01 +canassons canasson nom m p 0.98 1.49 0.40 0.47 +canasta canasta nom f s 0.21 0.68 0.21 0.68 +canaux canal nom m p 17.11 27.43 2.90 6.49 +cancan cancan nom m s 1.29 1.76 0.51 0.88 +cancanaient cancaner ver 0.31 0.68 0.00 0.14 ind:imp:3p; +cancanait cancaner ver 0.31 0.68 0.00 0.07 ind:imp:3s; +cancanant cancaner ver 0.31 0.68 0.00 0.20 par:pre; +cancane cancaner ver 0.31 0.68 0.03 0.00 ind:pre:3s; +cancaner cancaner ver 0.31 0.68 0.25 0.27 inf; +cancaneries cancanerie nom f p 0.00 0.07 0.00 0.07 +cancanes cancaner ver 0.31 0.68 0.03 0.00 ind:pre:2s; +cancanier cancanier nom m s 0.01 0.07 0.01 0.00 +cancanière cancanier adj f s 0.10 0.14 0.10 0.07 +cancanières cancanier nom f p 0.01 0.07 0.00 0.07 +cancans cancan nom m p 1.29 1.76 0.78 0.88 +cancel cancel nom m s 0.27 0.00 0.27 0.00 +cancer cancer nom m s 23.15 9.46 22.34 8.78 +cancers cancer nom m p 23.15 9.46 0.81 0.68 +canche canche nom f s 0.01 0.00 0.01 0.00 +cancoillotte cancoillotte nom f s 0.00 0.20 0.00 0.20 +cancre cancre nom m s 0.97 3.78 0.77 2.50 +cancrelat cancrelat nom m s 0.23 0.95 0.14 0.41 +cancrelats cancrelat nom m p 0.23 0.95 0.09 0.54 +cancres cancre nom m p 0.97 3.78 0.20 1.28 +cancéreuse cancéreux adj f s 0.62 0.74 0.22 0.34 +cancéreuses cancéreux adj f p 0.62 0.74 0.25 0.14 +cancéreux cancéreux adj m 0.62 0.74 0.16 0.27 +cancérigène cancérigène adj s 0.38 0.27 0.30 0.07 +cancérigènes cancérigène adj p 0.38 0.27 0.08 0.20 +cancériser cancériser ver 0.00 0.07 0.00 0.07 inf; +cancérogène cancérogène adj m s 0.02 0.00 0.02 0.00 +cancérologie cancérologie nom f s 0.01 0.00 0.01 0.00 +cancérologue cancérologue nom s 0.12 0.00 0.09 0.00 +cancérologues cancérologue nom p 0.12 0.00 0.04 0.00 +candeur candeur nom f s 1.27 4.59 1.27 4.46 +candeurs candeur nom f p 1.27 4.59 0.00 0.14 +candi candi adj m s 0.24 0.34 0.24 0.27 +candida candida nom m s 0.13 0.00 0.13 0.00 +candidat candidat nom m s 17.70 8.04 9.63 2.84 +candidate candidat nom f s 17.70 8.04 1.80 0.74 +candidates candidat nom f p 17.70 8.04 0.60 0.47 +candidats candidat nom m p 17.70 8.04 5.67 3.99 +candidature candidature nom f s 2.71 1.76 2.15 1.42 +candidatures candidature nom f p 2.71 1.76 0.56 0.34 +candide candide adj s 0.96 4.73 0.89 3.92 +candidement candidement adv 0.00 0.47 0.00 0.47 +candides candide adj p 0.96 4.73 0.07 0.81 +candidose candidose nom f s 0.04 0.00 0.04 0.00 +candie candir ver f s 0.00 0.74 0.00 0.68 par:pas; +candis candi adj m p 0.24 0.34 0.00 0.07 +candélabre candélabre nom m s 0.50 3.24 0.34 1.42 +candélabres candélabre nom m p 0.50 3.24 0.16 1.82 +cane canard nom f s 23.05 29.05 0.94 1.35 +canebière canebière nom f s 0.00 1.28 0.00 1.28 +canepetière canepetière nom f s 0.00 0.07 0.00 0.07 +caner caner ver 0.86 1.55 0.04 0.47 inf; +caneras caner ver 0.86 1.55 0.00 0.07 ind:fut:2s; +canes caner ver 0.86 1.55 0.11 0.20 ind:pre:2s; +canetille canetille nom f s 0.00 0.07 0.00 0.07 +caneton caneton nom m s 0.69 1.82 0.48 1.15 +canetons caneton nom m p 0.69 1.82 0.21 0.68 +canette canette nom f s 1.95 6.62 1.10 3.18 +canettes canette nom f p 1.95 6.62 0.85 3.45 +canevas canevas nom m 0.32 1.35 0.32 1.35 +canfouine canfouine nom f s 0.00 0.41 0.00 0.41 +cangue cangue nom f s 0.00 0.07 0.00 0.07 +caniche caniche nom m s 2.56 3.99 2.00 3.72 +caniches caniche nom m p 2.56 3.99 0.56 0.27 +caniculaire caniculaire adj s 0.02 0.54 0.02 0.34 +caniculaires caniculaire adj m p 0.02 0.54 0.00 0.20 +canicule canicule nom f s 0.38 3.58 0.35 3.31 +canicules canicule nom f p 0.38 3.58 0.02 0.27 +canidés canidé nom m p 0.07 0.00 0.07 0.00 +canif canif nom m s 0.95 4.93 0.91 4.32 +canifs canif nom m p 0.95 4.93 0.04 0.61 +canin canin adj m s 0.76 0.61 0.56 0.61 +canine canine adj f s 0.54 1.08 0.41 1.01 +canines canine nom f p 0.47 1.15 0.25 0.47 +caninette caninette nom f s 0.00 0.07 0.00 0.07 +canins canin adj m p 0.76 0.61 0.20 0.00 +canisses canisse nom f p 0.00 0.07 0.00 0.07 +caniveau caniveau nom m s 2.94 7.16 2.86 5.27 +caniveaux caniveau nom m p 2.94 7.16 0.08 1.89 +canna canna nom m s 0.10 0.54 0.10 0.00 +cannabis cannabis nom m 1.05 0.14 1.05 0.14 +cannage cannage nom m s 0.00 0.20 0.00 0.20 +cannait canner ver 0.31 2.57 0.00 0.14 ind:imp:3s; +cannant canner ver 0.31 2.57 0.00 0.07 par:pre; +cannas canna nom m p 0.10 0.54 0.00 0.54 +canne_épée canne_épée nom f s 0.01 0.54 0.01 0.34 +canne canne nom f s 10.91 34.32 10.21 26.62 +canneberge canneberge nom f s 0.46 0.00 0.17 0.00 +canneberges canneberge nom f p 0.46 0.00 0.29 0.00 +canneliers cannelier nom m p 0.00 0.20 0.00 0.20 +cannelle cannelle nom f s 1.38 2.97 1.38 2.97 +cannelloni cannelloni nom m s 0.93 0.00 0.67 0.00 +cannellonis cannelloni nom m p 0.93 0.00 0.27 0.00 +cannelé cannelé adj m s 0.01 0.20 0.01 0.00 +cannelée canneler ver f s 0.01 0.07 0.01 0.00 par:pas; +cannelées cannelé adj f p 0.01 0.20 0.00 0.07 +cannelure cannelure nom f s 0.18 0.95 0.01 0.27 +cannelures cannelure nom f p 0.18 0.95 0.17 0.68 +cannelés cannelé adj m p 0.01 0.20 0.00 0.07 +canner canner ver 0.31 2.57 0.28 0.68 inf; +canneraient canner ver 0.31 2.57 0.00 0.07 cnd:pre:3p; +canne_épée canne_épée nom f p 0.01 0.54 0.00 0.20 +cannes canne nom f p 10.91 34.32 0.71 7.70 +cannette cannette nom f s 0.66 0.14 0.42 0.14 +cannettes cannette nom f p 0.66 0.14 0.25 0.00 +cannibale cannibale nom s 4.06 0.95 1.11 0.27 +cannibales cannibale nom p 4.06 0.95 2.95 0.68 +cannibalisme cannibalisme nom m s 1.61 0.47 1.61 0.47 +canné canner ver m s 0.31 2.57 0.02 0.68 par:pas; +cannée canné adj f s 0.00 1.28 0.00 0.47 +cannées canné adj f p 0.00 1.28 0.00 0.27 +canon canon nom m s 22.22 48.99 14.89 28.65 +canoniale canonial adj f s 0.00 0.14 0.00 0.07 +canoniales canonial adj f p 0.00 0.14 0.00 0.07 +canonique canonique adj s 0.22 0.68 0.22 0.47 +canoniquement canoniquement adv 0.00 0.07 0.00 0.07 +canoniques canonique adj f p 0.22 0.68 0.00 0.20 +canonisation canonisation nom f s 0.06 0.47 0.05 0.34 +canonisations canonisation nom f p 0.06 0.47 0.01 0.14 +canoniser canoniser ver 0.61 1.01 0.22 0.14 inf; +canonisez canoniser ver 0.61 1.01 0.10 0.07 imp:pre:2p; +canonisé canoniser ver m s 0.61 1.01 0.25 0.27 par:pas; +canonisée canoniser ver f s 0.61 1.01 0.04 0.27 par:pas; +canonisés canoniser ver m p 0.61 1.01 0.00 0.27 par:pas; +canonnade canonnade nom f s 0.04 2.70 0.04 2.57 +canonnades canonnade nom f p 0.04 2.70 0.00 0.14 +canonnage canonnage nom m s 0.01 0.00 0.01 0.00 +canonnait canonner ver 0.01 0.54 0.00 0.07 ind:imp:3s; +canonner canonner ver 0.01 0.54 0.00 0.20 inf; +canonnier canonnier nom m s 0.39 0.95 0.16 0.47 +canonniers canonnier nom m p 0.39 0.95 0.23 0.47 +canonnière canonnière nom f s 0.34 0.61 0.31 0.41 +canonnières canonnière nom f p 0.34 0.61 0.03 0.20 +canonné canonner ver m s 0.01 0.54 0.00 0.14 par:pas; +canonnées canonner ver f p 0.01 0.54 0.00 0.07 par:pas; +canonnés canonner ver m p 0.01 0.54 0.01 0.07 par:pas; +canons canon nom m p 22.22 48.99 7.34 20.34 +canope canope nom m s 0.09 0.00 0.07 0.00 +canopes canope nom m p 0.09 0.00 0.02 0.00 +canot canot nom m s 4.58 9.19 3.31 7.16 +canotage canotage nom m s 0.04 0.34 0.04 0.34 +canotaient canoter ver 0.01 0.47 0.00 0.07 ind:imp:3p; +canote canoter ver 0.01 0.47 0.00 0.07 ind:pre:3s; +canotent canoter ver 0.01 0.47 0.01 0.00 ind:pre:3p; +canoter canoter ver 0.01 0.47 0.00 0.20 inf; +canoteurs canoteur nom m p 0.00 0.07 0.00 0.07 +canotier canotier nom m s 0.16 3.04 0.00 2.36 +canotiers canotier nom m p 0.16 3.04 0.16 0.68 +canotâmes canoter ver 0.01 0.47 0.00 0.07 ind:pas:1p; +canots canot nom m p 4.58 9.19 1.27 2.03 +canoté canoter ver m s 0.01 0.47 0.00 0.07 par:pas; +canoë canoë nom m s 1.95 1.49 1.73 1.22 +canoës canoë nom m p 1.95 1.49 0.22 0.27 +cantabile cantabile nom m s 0.02 0.61 0.02 0.61 +cantabrique cantabrique adj f s 0.00 0.20 0.00 0.07 +cantabriques cantabrique adj p 0.00 0.20 0.00 0.14 +cantal cantal nom m s 0.00 0.27 0.00 0.27 +cantaloup cantaloup nom m s 0.07 0.07 0.06 0.00 +cantaloups cantaloup nom m p 0.07 0.07 0.01 0.07 +cantate cantate nom f s 0.25 0.54 0.24 0.27 +cantates cantate nom f p 0.25 0.54 0.01 0.27 +cantatrice cantatrice nom f s 0.59 2.43 0.55 1.76 +cantatrices cantatrice nom f p 0.59 2.43 0.04 0.68 +canter canter nom m s 0.02 0.27 0.02 0.27 +canthare canthare nom m s 0.00 0.20 0.00 0.14 +canthares canthare nom m p 0.00 0.20 0.00 0.07 +cantharide cantharide nom f s 0.07 0.14 0.06 0.07 +cantharides cantharide nom f p 0.07 0.14 0.01 0.07 +cantilever cantilever nom m s 0.07 0.00 0.07 0.00 +cantilène cantilène nom f s 0.11 0.34 0.11 0.34 +cantina cantiner ver 0.33 0.34 0.33 0.00 ind:pas:3s; +cantinaient cantiner ver 0.33 0.34 0.00 0.07 ind:imp:3p; +cantine cantine nom f s 4.23 12.16 3.76 10.61 +cantiner cantiner ver 0.33 0.34 0.00 0.27 inf; +cantines cantine nom f p 4.23 12.16 0.47 1.55 +cantinier cantinier nom m s 0.23 1.15 0.05 0.07 +cantiniers cantinier nom m p 0.23 1.15 0.14 0.20 +cantinière cantinier nom f s 0.23 1.15 0.04 0.68 +cantinières cantinier nom f p 0.23 1.15 0.01 0.20 +cantique cantique nom m s 1.68 6.62 0.83 2.50 +cantiques cantique nom m p 1.68 6.62 0.84 4.12 +canton canton nom m s 0.36 4.73 0.34 3.58 +cantonade cantonade nom f s 0.01 3.45 0.01 3.45 +cantonais cantonais adj m s 0.28 0.00 0.27 0.00 +cantonaise cantonais adj f s 0.28 0.00 0.02 0.00 +cantonal cantonal adj m s 0.34 0.34 0.00 0.07 +cantonale cantonal adj f s 0.34 0.34 0.34 0.07 +cantonales cantonal adj f p 0.34 0.34 0.00 0.20 +cantonna cantonner ver 0.76 5.00 0.00 0.14 ind:pas:3s; +cantonnai cantonner ver 0.76 5.00 0.00 0.14 ind:pas:1s; +cantonnaient cantonner ver 0.76 5.00 0.10 0.20 ind:imp:3p; +cantonnais cantonner ver 0.76 5.00 0.04 0.00 ind:imp:1s; +cantonnait cantonner ver 0.76 5.00 0.00 0.34 ind:imp:3s; +cantonnant cantonner ver 0.76 5.00 0.01 0.14 par:pre; +cantonne cantonner ver 0.76 5.00 0.21 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cantonnement cantonnement nom m s 0.81 5.20 0.68 3.24 +cantonnements cantonnement nom m p 0.81 5.20 0.14 1.96 +cantonnent cantonner ver 0.76 5.00 0.00 0.27 ind:pre:3p; +cantonner cantonner ver 0.76 5.00 0.08 0.47 inf; +cantonneraient cantonner ver 0.76 5.00 0.00 0.07 cnd:pre:3p; +cantonnez cantonner ver 0.76 5.00 0.03 0.00 imp:pre:2p;ind:pre:2p; +cantonnier cantonnier nom m s 0.19 3.04 0.17 1.96 +cantonniers cantonnier nom m p 0.19 3.04 0.03 1.01 +cantonnières cantonnier nom f p 0.19 3.04 0.00 0.07 +cantonnons cantonner ver 0.76 5.00 0.01 0.27 imp:pre:1p;ind:pre:1p; +cantonnèrent cantonner ver 0.76 5.00 0.00 0.07 ind:pas:3p; +cantonné cantonner ver m s 0.76 5.00 0.23 0.88 par:pas; +cantonnée cantonner ver f s 0.76 5.00 0.01 0.41 par:pas; +cantonnées cantonner ver f p 0.76 5.00 0.02 0.34 par:pas; +cantonnés cantonner ver m p 0.76 5.00 0.01 0.81 par:pas; +cantons canton nom m p 0.36 4.73 0.02 1.15 +cantre cantre nom m s 0.00 0.07 0.00 0.07 +cané caner ver m s 0.86 1.55 0.04 0.34 par:pas; +canulant canuler ver 0.00 0.07 0.00 0.07 par:pre; +canular canular nom m s 1.98 0.81 1.71 0.74 +canularesque canularesque adj s 0.00 0.07 0.00 0.07 +canulars canular nom m p 1.98 0.81 0.27 0.07 +canule canule nom f s 0.23 0.07 0.23 0.07 +canés caner ver m p 0.86 1.55 0.00 0.07 par:pas; +canut canut nom m s 0.01 0.14 0.00 0.07 +canuts canut nom m p 0.01 0.14 0.01 0.07 +canyon canyon nom m s 4.45 0.88 4.18 0.47 +canyons canyon nom m p 4.45 0.88 0.27 0.41 +canzonettes canzonette nom f p 0.00 0.07 0.00 0.07 +caoua caoua nom m s 0.07 2.43 0.07 2.30 +caouas caoua nom m p 0.07 2.43 0.00 0.14 +caoutchouc caoutchouc nom m s 5.59 16.55 5.20 16.01 +caoutchoucs caoutchouc nom m p 5.59 16.55 0.39 0.54 +caoutchouteuse caoutchouteux adj f s 0.06 0.88 0.00 0.14 +caoutchouteuses caoutchouteux adj f p 0.06 0.88 0.00 0.20 +caoutchouteux caoutchouteux adj m 0.06 0.88 0.06 0.54 +caoutchouté caoutchouter ver m s 0.01 0.20 0.01 0.00 par:pas; +caoutchoutée caoutchouté adj f s 0.00 1.08 0.00 0.27 +caoutchoutées caoutchouté adj f p 0.00 1.08 0.00 0.47 +caoutchoutés caoutchouté adj m p 0.00 1.08 0.00 0.07 +cap_hornier cap_hornier nom m s 0.00 0.07 0.00 0.07 +cap cap nom m s 19.49 16.55 19.48 15.68 +capable capable adj s 76.85 86.35 65.15 69.73 +capables capable adj p 76.85 86.35 11.70 16.62 +capacité capacité nom f s 17.29 14.39 9.42 8.38 +capacités capacité nom f p 17.29 14.39 7.87 6.01 +capades capade nom f p 0.06 0.00 0.06 0.00 +caparaçon caparaçon nom m s 0.00 0.54 0.00 0.27 +caparaçonnait caparaçonner ver 0.00 1.08 0.00 0.07 ind:imp:3s; +caparaçonne caparaçonner ver 0.00 1.08 0.00 0.07 ind:pre:3s; +caparaçonné caparaçonner ver m s 0.00 1.08 0.00 0.41 par:pas; +caparaçonnée caparaçonner ver f s 0.00 1.08 0.00 0.07 par:pas; +caparaçonnées caparaçonner ver f p 0.00 1.08 0.00 0.07 par:pas; +caparaçonnés caparaçonner ver m p 0.00 1.08 0.00 0.41 par:pas; +caparaçons caparaçon nom m p 0.00 0.54 0.00 0.27 +cape cape nom f s 6.25 11.69 5.40 10.34 +capelage capelage nom m s 0.02 0.07 0.02 0.07 +capeline capeline nom f s 0.11 2.50 0.10 2.09 +capelines capeline nom f p 0.11 2.50 0.01 0.41 +capelé capeler ver m s 0.00 0.14 0.00 0.14 par:pas; +caper caper ver 0.02 0.00 0.02 0.00 inf; +capes cape nom f p 6.25 11.69 0.85 1.35 +capharnaüm capharnaüm nom m s 0.05 1.49 0.05 1.49 +capillaire capillaire adj s 0.93 0.47 0.48 0.20 +capillaires capillaire adj p 0.93 0.47 0.45 0.27 +capillarité capillarité nom f s 0.00 0.07 0.00 0.07 +capilliculteur capilliculteur nom m s 0.01 0.00 0.01 0.00 +capilotade capilotade nom f s 0.01 0.74 0.01 0.61 +capilotades capilotade nom f p 0.01 0.74 0.00 0.14 +capisco capisco nom m s 0.03 0.20 0.03 0.20 +capitaine capitaine nom m s 152.69 92.57 150.59 88.45 +capitainerie capitainerie nom f s 0.15 0.14 0.15 0.14 +capitaines capitaine nom m p 152.69 92.57 2.11 4.12 +capital_risque capital_risque nom m s 0.04 0.00 0.04 0.00 +capital capital nom m s 8.53 9.86 5.49 6.96 +capitale capitale nom f s 11.38 26.62 10.60 23.18 +capitalement capitalement adv 0.00 0.07 0.00 0.07 +capitales capitale nom f p 11.38 26.62 0.78 3.45 +capitalisation capitalisation nom f s 0.03 0.14 0.03 0.14 +capitalise capitaliser ver 0.22 0.20 0.00 0.07 ind:pre:3s; +capitaliser capitaliser ver 0.22 0.20 0.20 0.07 inf; +capitalisme capitalisme nom m s 2.97 3.65 2.97 3.65 +capitalisons capitaliser ver 0.22 0.20 0.00 0.07 ind:pre:1p; +capitaliste capitaliste adj s 1.89 2.03 1.63 1.28 +capitalistes capitaliste nom p 1.09 1.35 0.58 0.81 +capitalistiques capitalistique adj f p 0.00 0.07 0.00 0.07 +capitalisé capitaliser ver m s 0.22 0.20 0.01 0.00 par:pas; +capitalisés capitaliser ver m p 0.22 0.20 0.01 0.00 par:pas; +capitan capitan nom m s 0.10 0.81 0.10 0.74 +capitanat capitanat nom m s 0.01 0.00 0.01 0.00 +capitane capitane nom m s 0.01 0.00 0.01 0.00 +capitans capitan nom m p 0.10 0.81 0.00 0.07 +capitaux capital nom m p 8.53 9.86 1.07 2.91 +capiteuse capiteux adj f s 0.25 2.30 0.00 0.54 +capiteuses capiteux adj f p 0.25 2.30 0.01 0.27 +capiteux capiteux adj m 0.25 2.30 0.24 1.49 +capitole capitole nom m s 0.10 0.07 0.10 0.07 +capiton capiton nom m s 0.00 0.54 0.00 0.20 +capitonnage capitonnage nom m s 0.01 0.27 0.01 0.27 +capitonnaient capitonner ver 0.09 2.70 0.00 0.07 ind:imp:3p; +capitonnait capitonner ver 0.09 2.70 0.00 0.07 ind:imp:3s; +capitonner capitonner ver 0.09 2.70 0.00 0.34 inf; +capitonné capitonner ver m s 0.09 2.70 0.02 0.81 par:pas; +capitonnée capitonné adj f s 0.32 2.23 0.28 0.74 +capitonnées capitonné adj f p 0.32 2.23 0.01 0.41 +capitonnés capitonner ver m p 0.09 2.70 0.02 0.61 par:pas; +capitons capiton nom m p 0.00 0.54 0.00 0.34 +capitouls capitoul nom m p 0.00 0.07 0.00 0.07 +capitula capituler ver 2.31 4.80 0.00 0.47 ind:pas:3s; +capitulaient capituler ver 2.31 4.80 0.01 0.14 ind:imp:3p; +capitulaire capitulaire adj m s 0.00 0.07 0.00 0.07 +capitulais capituler ver 2.31 4.80 0.00 0.07 ind:imp:1s; +capitulait capituler ver 2.31 4.80 0.01 0.14 ind:imp:3s; +capitulant capituler ver 2.31 4.80 0.01 0.07 par:pre; +capitulard capitulard nom m s 0.01 0.00 0.01 0.00 +capitulation capitulation nom f s 0.81 7.77 0.80 7.70 +capitulations capitulation nom f p 0.81 7.77 0.01 0.07 +capitule capituler ver 2.31 4.80 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +capitulent capituler ver 2.31 4.80 0.13 0.00 ind:pre:3p; +capituler capituler ver 2.31 4.80 0.58 1.82 inf; +capitulera capituler ver 2.31 4.80 0.00 0.07 ind:fut:3s; +capitulerait capituler ver 2.31 4.80 0.02 0.07 cnd:pre:3s; +capitulerez capituler ver 2.31 4.80 0.00 0.14 ind:fut:2p; +capitulerons capituler ver 2.31 4.80 0.04 0.00 ind:fut:1p; +capituleront capituler ver 2.31 4.80 0.01 0.00 ind:fut:3p; +capitules capituler ver 2.31 4.80 0.02 0.00 ind:pre:2s; +capituliez capituler ver 2.31 4.80 0.01 0.00 ind:imp:2p; +capitulions capituler ver 2.31 4.80 0.11 0.00 ind:imp:1p; +capitulons capituler ver 2.31 4.80 0.22 0.00 ind:pre:1p; +capitulèrent capituler ver 2.31 4.80 0.02 0.00 ind:pas:3p; +capitulé capituler ver m s 2.31 4.80 0.84 1.69 par:pas; +capo capo nom m s 2.17 0.14 2.03 0.14 +capoc capoc nom m s 0.00 0.07 0.00 0.07 +capon capon adj m s 0.14 0.41 0.14 0.34 +capons capon adj m p 0.14 0.41 0.01 0.07 +caporal_chef caporal_chef nom m s 0.52 0.54 0.52 0.54 +caporal caporal nom m s 10.22 18.99 9.95 17.03 +caporale caporal nom f s 10.22 18.99 0.04 0.00 +caporaux caporal nom m p 10.22 18.99 0.23 1.96 +capos capo nom m p 2.17 0.14 0.14 0.00 +capot capot nom m s 3.17 8.18 3.13 7.23 +capota capoter ver 0.90 1.15 0.00 0.07 ind:pas:3s; +capotaient capoter ver 0.90 1.15 0.01 0.07 ind:imp:3p; +capote capote nom f s 7.59 18.04 4.67 13.45 +capoter capoter ver 0.90 1.15 0.54 0.61 inf; +capotes capote nom f p 7.59 18.04 2.92 4.59 +capots capot nom m p 3.17 8.18 0.03 0.95 +capoté capoter ver m s 0.90 1.15 0.15 0.20 par:pas; +capotée capoter ver f s 0.90 1.15 0.00 0.07 par:pas; +cappa cappa nom f s 0.01 0.00 0.01 0.00 +cappuccino cappuccino nom m s 1.98 0.07 1.79 0.07 +cappuccinos cappuccino nom m p 1.98 0.07 0.19 0.00 +capricant capricant adj m s 0.00 0.14 0.00 0.07 +capricants capricant adj m p 0.00 0.14 0.00 0.07 +caprice caprice nom m s 8.94 18.31 4.63 9.32 +caprices caprice nom m p 8.94 18.31 4.31 8.99 +capricieuse capricieux adj f s 3.37 6.76 0.71 2.16 +capricieusement capricieusement adv 0.10 0.74 0.10 0.74 +capricieuses capricieux adj f p 3.37 6.76 0.54 1.55 +capricieux capricieux adj m 3.37 6.76 2.12 3.04 +capricorne capricorne nom m s 0.34 0.00 0.29 0.00 +capricornes capricorne nom m p 0.34 0.00 0.05 0.00 +caprine caprin adj f s 0.00 0.07 0.00 0.07 +caps cap nom m p 19.49 16.55 0.01 0.88 +capsulaire capsulaire adj f s 0.03 0.00 0.03 0.00 +capsule capsule nom f s 5.69 3.18 3.96 1.82 +capsules capsule nom f p 5.69 3.18 1.73 1.35 +capsulé capsuler ver m s 0.02 0.07 0.00 0.07 par:pas; +capta capter ver 9.89 9.59 0.00 0.20 ind:pas:3s; +captage captage nom m s 0.02 0.00 0.02 0.00 +captaient capter ver 9.89 9.59 0.00 0.07 ind:imp:3p; +captais capter ver 9.89 9.59 0.01 0.27 ind:imp:1s;ind:imp:2s; +captait capter ver 9.89 9.59 0.11 0.47 ind:imp:3s; +captant capter ver 9.89 9.59 0.01 0.27 par:pre; +captation captation nom f s 0.00 0.14 0.00 0.07 +captations captation nom f p 0.00 0.14 0.00 0.07 +capte capter ver 9.89 9.59 3.84 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +captent capter ver 9.89 9.59 0.19 0.20 ind:pre:3p; +capter capter ver 9.89 9.59 1.95 3.85 inf; +capterai capter ver 9.89 9.59 0.04 0.00 ind:fut:1s; +capterais capter ver 9.89 9.59 0.01 0.14 cnd:pre:1s; +capterait capter ver 9.89 9.59 0.01 0.07 cnd:pre:3s; +capteront capter ver 9.89 9.59 0.01 0.07 ind:fut:3p; +capteur capteur nom m s 2.79 0.00 1.10 0.00 +capteurs capteur nom m p 2.79 0.00 1.69 0.00 +captez capter ver 9.89 9.59 0.62 0.00 imp:pre:2p;ind:pre:2p; +captieuse captieux adj f s 0.00 0.14 0.00 0.07 +captieux captieux adj m p 0.00 0.14 0.00 0.07 +captif captif adj m s 1.11 4.80 0.63 2.16 +captifs captif nom m p 0.78 2.84 0.46 1.15 +captions capter ver 9.89 9.59 0.27 0.14 ind:imp:1p; +captiva captiver ver 1.35 4.73 0.03 0.07 ind:pas:3s; +captivaient captiver ver 1.35 4.73 0.00 0.27 ind:imp:3p; +captivait captiver ver 1.35 4.73 0.03 1.08 ind:imp:3s; +captivant captivant adj m s 0.87 1.55 0.62 0.95 +captivante captivant adj f s 0.87 1.55 0.22 0.41 +captivantes captivant adj f p 0.87 1.55 0.03 0.20 +captive captiver ver 1.35 4.73 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +captivent captiver ver 1.35 4.73 0.04 0.14 ind:pre:3p; +captiver captiver ver 1.35 4.73 0.14 0.47 inf; +captives captive nom f p 0.06 0.00 0.06 0.00 +captivité captivité nom f s 2.15 4.46 2.15 4.46 +captivèrent captiver ver 1.35 4.73 0.00 0.07 ind:pas:3p; +captivé captiver ver m s 1.35 4.73 0.27 1.49 par:pas; +captivée captiver ver f s 1.35 4.73 0.05 0.27 par:pas; +captivés captiver ver m p 1.35 4.73 0.34 0.14 par:pas; +captons capter ver 9.89 9.59 0.34 0.00 imp:pre:1p;ind:pre:1p; +capté capter ver m s 9.89 9.59 2.03 1.62 par:pas; +captée capter ver f s 9.89 9.59 0.22 0.41 par:pas; +captées capter ver f p 9.89 9.59 0.04 0.27 par:pas; +captura capturer ver 17.67 5.81 0.03 0.20 ind:pas:3s; +capturait capturer ver 17.67 5.81 0.02 0.27 ind:imp:3s; +capturant capturer ver 17.67 5.81 0.09 0.07 par:pre; +capture capture nom f s 3.00 1.76 2.93 1.69 +capturent capturer ver 17.67 5.81 0.23 0.00 ind:pre:3p; +capturer capturer ver 17.67 5.81 6.17 1.82 inf; +capturera capturer ver 17.67 5.81 0.28 0.07 ind:fut:3s; +capturerait capturer ver 17.67 5.81 0.02 0.00 cnd:pre:3s; +captureras capturer ver 17.67 5.81 0.02 0.00 ind:fut:2s; +capturerez capturer ver 17.67 5.81 0.02 0.00 ind:fut:2p; +capturerons capturer ver 17.67 5.81 0.14 0.00 ind:fut:1p; +captureront capturer ver 17.67 5.81 0.02 0.00 ind:fut:3p; +captures capture nom f p 3.00 1.76 0.07 0.07 +capturez capturer ver 17.67 5.81 0.51 0.00 imp:pre:2p;ind:pre:2p; +capturons capturer ver 17.67 5.81 0.07 0.00 imp:pre:1p;ind:pre:1p; +capturé capturer ver m s 17.67 5.81 6.33 2.09 par:pas; +capturée capturer ver f s 17.67 5.81 0.83 0.27 par:pas; +capturées capturer ver f p 17.67 5.81 0.09 0.20 par:pas; +capturés capturer ver m p 17.67 5.81 1.96 0.68 par:pas; +captés capter ver m p 9.89 9.59 0.20 0.20 par:pas; +capuccino capuccino nom m s 0.27 0.14 0.27 0.14 +capuche capuche nom f s 1.60 0.74 1.53 0.61 +capuches capuche nom f p 1.60 0.74 0.07 0.14 +capuchon capuchon nom m s 1.02 6.42 1.02 5.81 +capuchonnés capuchonner ver m p 0.00 0.07 0.00 0.07 par:pas; +capuchons capuchon nom m p 1.02 6.42 0.00 0.61 +capucin capucin nom m s 0.18 1.15 0.03 0.74 +capucinade capucinade nom f s 0.00 0.14 0.00 0.07 +capucinades capucinade nom f p 0.00 0.14 0.00 0.07 +capucine capucine nom f s 0.13 1.22 0.00 0.27 +capucines capucine nom f p 0.13 1.22 0.13 0.95 +capucino capucino nom m 0.00 0.07 0.00 0.07 +capucins capucin nom m p 0.18 1.15 0.14 0.41 +capulet capulet nom m s 0.00 0.07 0.00 0.07 +caput_mortuum caput_mortuum nom m s 0.00 0.07 0.00 0.07 +capétien capétien adj m s 0.00 0.34 0.00 0.20 +capétienne capétien adj f s 0.00 0.34 0.00 0.07 +capétiennes capétien adj f p 0.00 0.34 0.00 0.07 +caque caque nom f s 0.12 0.54 0.12 0.41 +caquelon caquelon nom m s 0.00 0.07 0.00 0.07 +caques caque nom f p 0.12 0.54 0.00 0.14 +caquet caquet nom m s 0.46 0.61 0.45 0.41 +caquetage caquetage nom m s 0.14 1.22 0.04 0.74 +caquetages caquetage nom m p 0.14 1.22 0.11 0.47 +caquetaient caqueter ver 0.53 1.55 0.00 0.54 ind:imp:3p; +caquetait caqueter ver 0.53 1.55 0.00 0.07 ind:imp:3s; +caquetant caqueter ver 0.53 1.55 0.01 0.20 par:pre; +caquetante caquetant adj f s 0.02 0.27 0.00 0.14 +caquetantes caquetant adj f p 0.02 0.27 0.01 0.07 +caqueter caqueter ver 0.53 1.55 0.31 0.14 inf; +caqueteuse caqueteur nom f s 0.00 0.07 0.00 0.07 +caquets caquet nom m p 0.46 0.61 0.01 0.20 +caquette caqueter ver 0.53 1.55 0.07 0.20 ind:pre:1s;ind:pre:3s; +caquettent caqueter ver 0.53 1.55 0.14 0.41 ind:pre:3p; +caquètement caquètement nom m s 0.04 0.47 0.02 0.27 +caquètements caquètement nom m p 0.04 0.47 0.01 0.20 +car car con 237.20 469.32 237.20 469.32 +caraïbe caraïbe nom s 0.16 0.14 0.10 0.00 +caraïbes caraïbe nom p 0.16 0.14 0.06 0.14 +carabas carabas nom m 0.00 0.20 0.00 0.20 +carabe carabe nom m s 0.01 0.20 0.00 0.07 +carabes carabe nom m p 0.01 0.20 0.01 0.14 +carabin carabin nom m s 0.01 0.47 0.00 0.27 +carabine carabine nom f s 2.71 11.15 2.08 10.07 +carabines carabine nom f p 2.71 11.15 0.63 1.08 +carabinier carabinier nom m s 2.91 1.69 0.96 0.20 +carabiniers carabinier nom m p 2.91 1.69 1.94 1.49 +carabins carabin nom m p 0.01 0.47 0.01 0.20 +carabiné carabiné adj m s 0.21 1.08 0.04 0.20 +carabinée carabiné adj f s 0.21 1.08 0.17 0.81 +carabinés carabiné adj m p 0.21 1.08 0.00 0.07 +carabosse carabosse nom f s 0.12 1.62 0.12 1.62 +caracal caracal nom m s 0.00 0.14 0.00 0.14 +caraco caraco nom m s 0.28 1.01 0.14 0.81 +caracola caracoler ver 0.09 1.76 0.00 0.14 ind:pas:3s; +caracolade caracolade nom f s 0.00 0.27 0.00 0.27 +caracolait caracoler ver 0.09 1.76 0.01 0.20 ind:imp:3s; +caracolant caracoler ver 0.09 1.76 0.01 0.27 par:pre; +caracole caracoler ver 0.09 1.76 0.03 0.27 ind:pre:1s;ind:pre:3s; +caracolent caracoler ver 0.09 1.76 0.01 0.27 ind:pre:3p; +caracoler caracoler ver 0.09 1.76 0.02 0.54 inf; +caracolerez caracoler ver 0.09 1.76 0.00 0.07 ind:fut:2p; +caracos caraco nom m p 0.28 1.01 0.14 0.20 +caractère caractère nom m s 18.86 62.16 17.22 47.50 +caractères caractère nom m p 18.86 62.16 1.65 14.66 +caractériel caractériel adj m s 0.49 0.68 0.28 0.27 +caractérielle caractériel adj f s 0.49 0.68 0.02 0.14 +caractérielles caractériel adj f p 0.49 0.68 0.14 0.00 +caractériels caractériel adj m p 0.49 0.68 0.05 0.27 +caractérisait caractériser ver 0.91 3.58 0.15 0.47 ind:imp:3s; +caractérisant caractériser ver 0.91 3.58 0.01 0.00 par:pre; +caractérisation caractérisation nom f s 0.01 0.00 0.01 0.00 +caractérise caractériser ver 0.91 3.58 0.25 2.16 ind:pre:3s; +caractérisent caractériser ver 0.91 3.58 0.04 0.20 ind:pre:3p; +caractériser caractériser ver 0.91 3.58 0.11 0.34 inf; +caractériserais caractériser ver 0.91 3.58 0.01 0.00 cnd:pre:1s; +caractériserait caractériser ver 0.91 3.58 0.00 0.07 cnd:pre:3s; +caractéristique caractéristique adj s 1.31 4.73 0.90 3.78 +caractéristiques caractéristique nom f p 3.69 2.77 2.81 2.09 +caractérisé caractériser ver m s 0.91 3.58 0.29 0.20 par:pas; +caractérisée caractérisé adj f s 0.20 0.81 0.13 0.27 +caractérisées caractérisé adj f p 0.20 0.81 0.00 0.20 +caractérisés caractériser ver m p 0.91 3.58 0.01 0.00 par:pas; +caractérologie caractérologie nom f s 0.00 0.07 0.00 0.07 +caracul caracul nom m s 0.27 0.00 0.27 0.00 +carafe carafe nom f s 1.04 5.47 1.02 4.46 +carafes carafe nom f p 1.04 5.47 0.02 1.01 +carafon carafon nom m s 0.16 0.68 0.01 0.61 +carafons carafon nom m p 0.16 0.68 0.15 0.07 +caramba caramba ono 0.77 0.07 0.77 0.07 +carambar carambar nom m s 0.43 0.34 0.30 0.14 +carambars carambar nom m p 0.43 0.34 0.13 0.20 +carambolage carambolage nom m s 0.48 0.47 0.31 0.34 +carambolages carambolage nom m p 0.48 0.47 0.17 0.14 +carambolaient caramboler ver 0.02 0.95 0.00 0.14 ind:imp:3p; +carambolait caramboler ver 0.02 0.95 0.00 0.07 ind:imp:3s; +carambole caramboler ver 0.02 0.95 0.01 0.20 ind:pre:1s;ind:pre:3s; +carambolent caramboler ver 0.02 0.95 0.00 0.07 ind:pre:3p; +caramboler caramboler ver 0.02 0.95 0.01 0.41 inf; +caramboles carambole nom f p 0.14 0.07 0.14 0.00 +carambolé caramboler ver m s 0.02 0.95 0.00 0.07 par:pas; +carambouillage carambouillage nom m s 0.00 0.14 0.00 0.14 +carambouille carambouille nom f s 0.00 0.27 0.00 0.27 +carambouilleurs carambouilleur nom m p 0.00 0.20 0.00 0.20 +carambouillé carambouiller ver m s 0.00 0.07 0.00 0.07 par:pas; +caramel caramel nom m s 2.76 3.38 1.56 2.30 +caramels caramel nom m p 2.76 3.38 1.20 1.08 +caramélisait caraméliser ver 0.17 0.27 0.00 0.07 ind:imp:3s; +caramélise caraméliser ver 0.17 0.27 0.01 0.14 ind:pre:3s; +caraméliser caraméliser ver 0.17 0.27 0.01 0.00 inf; +caramélisé caraméliser ver m s 0.17 0.27 0.14 0.07 par:pas; +caramélisée caramélisé adj f s 0.11 0.27 0.02 0.00 +caramélisées caramélisé adj f p 0.11 0.27 0.04 0.00 +caramélisés caramélisé adj m p 0.11 0.27 0.03 0.07 +carapace carapace nom f s 1.25 8.38 1.22 6.62 +carapaces carapace nom f p 1.25 8.38 0.04 1.76 +carapatait carapater ver 0.14 1.01 0.00 0.07 ind:imp:3s; +carapate carapater ver 0.14 1.01 0.02 0.34 ind:pre:1s;ind:pre:3s; +carapatent carapater ver 0.14 1.01 0.01 0.07 ind:pre:3p; +carapater carapater ver 0.14 1.01 0.01 0.41 inf; +carapaté carapater ver m s 0.14 1.01 0.10 0.07 par:pas; +carapatés carapater ver m p 0.14 1.01 0.00 0.07 par:pas; +caraque caraque nom f s 0.00 0.20 0.00 0.20 +carat carat nom m s 1.46 2.23 0.14 1.15 +carats carat nom m p 1.46 2.23 1.33 1.08 +caravane caravane nom f s 11.64 6.76 10.34 5.14 +caravanes caravane nom f p 11.64 6.76 1.30 1.62 +caravanier caravanier nom m s 0.41 1.22 0.41 0.07 +caravaniers caravanier nom m p 0.41 1.22 0.00 0.74 +caravaning caravaning nom m s 0.13 0.20 0.13 0.14 +caravanings caravaning nom m p 0.13 0.20 0.00 0.07 +caravanière caravanier nom f s 0.41 1.22 0.00 0.34 +caravanières caravanier nom f p 0.41 1.22 0.00 0.07 +caravansérail caravansérail nom m s 0.14 0.81 0.00 0.54 +caravansérails caravansérail nom m p 0.14 0.81 0.14 0.27 +caravelle caravelle nom f s 0.32 0.95 0.31 0.20 +caravelles caravelle nom f p 0.32 0.95 0.01 0.74 +carbets carbet nom m p 0.00 0.07 0.00 0.07 +carboglace carboglace nom m s 0.05 0.00 0.05 0.00 +carbonade carbonade nom f s 0.14 0.00 0.14 0.00 +carbonari carbonari nom m s 0.00 0.07 0.00 0.07 +carbonate carbonate nom m s 0.08 0.14 0.08 0.14 +carbone carbone nom m s 3.18 1.82 3.15 1.62 +carbones carbone nom m p 3.18 1.82 0.04 0.20 +carbonique carbonique adj s 0.89 0.81 0.79 0.74 +carboniques carbonique adj m p 0.89 0.81 0.10 0.07 +carbonisa carboniser ver 1.25 2.50 0.00 0.07 ind:pas:3s; +carbonisant carboniser ver 1.25 2.50 0.00 0.07 par:pre; +carbonisation carbonisation nom f s 0.03 0.00 0.03 0.00 +carboniser carboniser ver 1.25 2.50 0.10 0.34 inf; +carbonisé carboniser ver m s 1.25 2.50 0.60 0.61 par:pas; +carbonisée carboniser ver f s 1.25 2.50 0.10 0.27 par:pas; +carbonisées carboniser ver f p 1.25 2.50 0.13 0.41 par:pas; +carbonisés carboniser ver m p 1.25 2.50 0.32 0.74 par:pas; +carboné carboné adj m s 0.01 0.00 0.01 0.00 +carboxyhémoglobine carboxyhémoglobine nom f s 0.04 0.00 0.04 0.00 +carburaient carburer ver 0.85 1.22 0.01 0.07 ind:imp:3p; +carburais carburer ver 0.85 1.22 0.00 0.07 ind:imp:1s; +carburait carburer ver 0.85 1.22 0.00 0.34 ind:imp:3s; +carburant carburant nom m s 5.67 1.69 5.56 1.35 +carburants carburant nom m p 5.67 1.69 0.11 0.34 +carburateur carburateur nom m s 1.11 1.22 1.05 1.15 +carburateurs carburateur nom m p 1.11 1.22 0.05 0.07 +carburation carburation nom f s 0.02 0.14 0.02 0.14 +carbure carburer ver 0.85 1.22 0.43 0.27 ind:pre:1s;ind:pre:3s; +carburent carburer ver 0.85 1.22 0.02 0.07 ind:pre:3p; +carburer carburer ver 0.85 1.22 0.17 0.14 inf; +carburez carburer ver 0.85 1.22 0.02 0.00 imp:pre:2p; +carburé carburer ver m s 0.85 1.22 0.01 0.14 par:pas; +carcajou carcajou nom m s 0.00 0.07 0.00 0.07 +carcan carcan nom m s 0.29 4.19 0.28 2.77 +carcans carcan nom m p 0.29 4.19 0.01 1.42 +carcasse carcasse nom f s 2.58 13.85 1.89 10.41 +carcasses carcasse nom f p 2.58 13.85 0.69 3.45 +carcharodon carcharodon nom m s 0.03 0.00 0.03 0.00 +carcinoïde carcinoïde adj s 0.01 0.00 0.01 0.00 +carcinoïde carcinoïde nom m s 0.01 0.00 0.01 0.00 +carcinome carcinome nom m s 0.13 0.00 0.13 0.00 +carcéral carcéral adj m s 1.11 2.30 0.52 1.15 +carcérale carcéral adj f s 1.11 2.30 0.45 0.81 +carcérales carcéral adj f p 1.11 2.30 0.14 0.14 +carcéraux carcéral adj m p 1.11 2.30 0.00 0.20 +cardage cardage nom m s 0.00 0.14 0.00 0.14 +cardait carder ver 0.08 1.35 0.00 0.27 ind:imp:3s; +cardamome cardamome nom f s 0.19 0.34 0.19 0.27 +cardamomes cardamome nom f p 0.19 0.34 0.00 0.07 +cardan cardan nom m s 0.23 0.34 0.21 0.34 +cardans cardan nom m p 0.23 0.34 0.02 0.00 +cardant carder ver 0.08 1.35 0.00 0.27 par:pre; +carde carde nom f s 0.01 0.27 0.01 0.20 +carder carder ver 0.08 1.35 0.07 0.27 inf; +carderai carder ver 0.08 1.35 0.00 0.07 ind:fut:1s; +carderie carderie nom f s 0.00 0.20 0.00 0.20 +cardes carde nom f p 0.01 0.27 0.00 0.07 +cardeur cardeur nom m s 0.01 1.01 0.01 0.20 +cardeuse cardeur nom f s 0.01 1.01 0.00 0.14 +cardeuses cardeur nom f p 0.01 1.01 0.00 0.68 +cardia cardia nom m s 0.01 0.00 0.01 0.00 +cardiaque cardiaque adj s 20.55 3.72 18.34 3.04 +cardiaques cardiaque adj p 20.55 3.72 2.21 0.68 +cardigan cardigan nom m s 0.47 0.61 0.40 0.47 +cardigans cardigan nom m p 0.47 0.61 0.06 0.14 +cardinal_archevêque cardinal_archevêque nom m s 0.02 0.07 0.02 0.07 +cardinal_légat cardinal_légat nom m s 0.00 0.07 0.00 0.07 +cardinal cardinal nom m s 5.18 6.62 4.78 4.80 +cardinale cardinal adj f s 1.09 4.12 0.42 0.68 +cardinales cardinal adj f p 1.09 4.12 0.02 0.20 +cardinalice cardinalice adj f s 0.01 0.14 0.01 0.07 +cardinalices cardinalice adj f p 0.01 0.14 0.00 0.07 +cardinaux cardinal nom m p 5.18 6.62 0.40 1.82 +cardio_pulmonaire cardio_pulmonaire adj s 0.07 0.00 0.07 0.00 +cardio_respiratoire cardio_respiratoire adj f s 0.10 0.00 0.10 0.00 +cardio_vasculaire cardio_vasculaire adj s 0.14 0.07 0.14 0.07 +cardioïde cardioïde adj s 0.00 0.07 0.00 0.07 +cardiogramme cardiogramme nom m s 0.11 0.00 0.11 0.00 +cardiographe cardiographe nom m s 0.01 0.00 0.01 0.00 +cardiographie cardiographie nom f s 0.01 0.00 0.01 0.00 +cardiologie cardiologie nom f s 0.82 0.00 0.82 0.00 +cardiologue cardiologue nom s 1.23 0.27 1.17 0.27 +cardiologues cardiologue nom p 1.23 0.27 0.06 0.00 +cardiomégalie cardiomégalie nom f s 0.04 0.00 0.04 0.00 +cardiomyopathie cardiomyopathie nom f s 0.09 0.00 0.09 0.00 +cardiotonique cardiotonique adj s 0.11 0.00 0.11 0.00 +cardiovasculaire cardiovasculaire adj s 0.24 0.00 0.24 0.00 +cardite cardite nom f s 0.01 0.00 0.01 0.00 +cardium cardium nom m s 0.00 0.07 0.00 0.07 +cardon cardon nom m s 0.06 1.15 0.06 0.07 +cardons cardon nom m p 0.06 1.15 0.00 1.08 +cardères carder nom f p 0.00 0.07 0.00 0.07 +cardé carder ver m s 0.08 1.35 0.00 0.34 par:pas; +cardée carder ver f s 0.08 1.35 0.00 0.07 par:pas; +cardés carder ver m p 0.08 1.35 0.00 0.07 par:pas; +care care nom f s 1.42 0.14 1.42 0.14 +carence carence nom f s 1.06 1.76 0.91 1.49 +carences carence nom f p 1.06 1.76 0.15 0.27 +caressa caresser ver 15.69 83.72 0.13 9.46 ind:pas:3s; +caressai caresser ver 15.69 83.72 0.00 0.74 ind:pas:1s; +caressaient caresser ver 15.69 83.72 0.03 2.23 ind:imp:3p; +caressais caresser ver 15.69 83.72 0.49 2.03 ind:imp:1s;ind:imp:2s; +caressait caresser ver 15.69 83.72 0.57 14.46 ind:imp:3s; +caressant caresser ver 15.69 83.72 1.13 8.18 par:pre; +caressante caressant adj f s 0.23 4.26 0.13 1.55 +caressantes caressant adj f p 0.23 4.26 0.01 0.54 +caressants caressant adj m p 0.23 4.26 0.01 0.61 +caresse caresser ver 15.69 83.72 4.60 14.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +caressent caresser ver 15.69 83.72 0.44 1.62 ind:pre:3p; +caresser caresser ver 15.69 83.72 5.66 18.24 inf; +caressera caresser ver 15.69 83.72 0.04 0.20 ind:fut:3s; +caresserai caresser ver 15.69 83.72 0.03 0.07 ind:fut:1s; +caresseraient caresser ver 15.69 83.72 0.00 0.07 cnd:pre:3p; +caresserait caresser ver 15.69 83.72 0.10 0.20 cnd:pre:3s; +caresserez caresser ver 15.69 83.72 0.00 0.07 ind:fut:2p; +caresseront caresser ver 15.69 83.72 0.01 0.14 ind:fut:3p; +caresses caresse nom f p 5.32 33.04 3.11 16.89 +caresseurs caresseur adj m p 0.00 0.07 0.00 0.07 +caresseuse caresseur nom f s 0.00 0.20 0.00 0.07 +caresseuses caresseur nom f p 0.00 0.20 0.00 0.14 +caressez caresser ver 15.69 83.72 0.53 0.20 imp:pre:2p;ind:pre:2p; +caressions caresser ver 15.69 83.72 0.01 0.20 ind:imp:1p; +caressât caresser ver 15.69 83.72 0.00 0.14 sub:imp:3s; +caressèrent caresser ver 15.69 83.72 0.00 0.27 ind:pas:3p; +caressé caresser ver m s 15.69 83.72 0.68 5.81 par:pas; +caressée caresser ver f s 15.69 83.72 0.27 2.70 par:pas; +caressées caresser ver f p 15.69 83.72 0.00 0.34 par:pas; +caressés caresser ver m p 15.69 83.72 0.04 1.15 par:pas; +caret caret nom m s 0.00 0.14 0.00 0.14 +carex carex nom m 0.00 0.20 0.00 0.20 +cargaison cargaison nom f s 7.57 4.26 6.82 3.18 +cargaisons cargaison nom f p 7.57 4.26 0.75 1.08 +cargo cargo nom m s 5.17 7.09 4.18 3.99 +cargos cargo nom m p 5.17 7.09 0.99 3.11 +cargua carguer ver 0.03 0.47 0.00 0.14 ind:pas:3s; +carguent carguer ver 0.03 0.47 0.00 0.07 ind:pre:3p; +carguer carguer ver 0.03 0.47 0.00 0.07 inf; +carguez carguer ver 0.03 0.47 0.03 0.00 imp:pre:2p; +carguée carguer ver f s 0.03 0.47 0.00 0.07 par:pas; +carguées carguer ver f p 0.03 0.47 0.00 0.14 par:pas; +cari cari nom m s 0.08 0.95 0.08 0.07 +cariatide cariatide nom f s 0.00 0.54 0.00 0.34 +cariatides cariatide nom f p 0.00 0.54 0.00 0.20 +caribou caribou nom m s 0.91 0.20 0.74 0.14 +caribous caribou nom m p 0.91 0.20 0.17 0.07 +caribéenne caribéen adj f s 0.03 0.00 0.03 0.00 +caricatural caricatural adj m s 0.04 2.09 0.04 1.22 +caricaturale caricatural adj f s 0.04 2.09 0.01 0.61 +caricaturales caricatural adj f p 0.04 2.09 0.00 0.20 +caricaturaux caricatural adj m p 0.04 2.09 0.00 0.07 +caricature caricature nom f s 1.68 6.49 1.58 4.26 +caricaturer caricaturer ver 0.09 0.27 0.02 0.07 inf; +caricatures caricature nom f p 1.68 6.49 0.10 2.23 +caricaturiste caricaturiste nom s 0.02 0.54 0.02 0.27 +caricaturistes caricaturiste nom p 0.02 0.54 0.00 0.27 +caricaturé caricaturer ver m s 0.09 0.27 0.02 0.00 par:pas; +caricaturées caricaturer ver f p 0.09 0.27 0.01 0.07 par:pas; +caricaturés caricaturer ver m p 0.09 0.27 0.02 0.07 par:pas; +carie carie nom f s 0.89 1.15 0.38 0.61 +carien carien adj m s 0.50 0.07 0.50 0.07 +carier carier ver 0.12 0.07 0.01 0.00 inf; +caries carie nom f p 0.89 1.15 0.51 0.54 +carillon carillon nom m s 1.67 5.88 1.56 5.54 +carillonnaient carillonner ver 0.41 1.35 0.00 0.14 ind:imp:3p; +carillonnait carillonner ver 0.41 1.35 0.00 0.14 ind:imp:3s; +carillonnant carillonner ver 0.41 1.35 0.00 0.14 par:pre; +carillonne carillonner ver 0.41 1.35 0.00 0.14 ind:pre:3s; +carillonnent carillonner ver 0.41 1.35 0.16 0.07 ind:pre:3p; +carillonner carillonner ver 0.41 1.35 0.25 0.61 inf; +carillonnes carillonner ver 0.41 1.35 0.00 0.07 ind:pre:2s; +carillonneur carillonneur nom m s 0.01 0.07 0.00 0.07 +carillonneuse carillonneur nom f s 0.01 0.07 0.01 0.00 +carillonné carillonner ver m s 0.41 1.35 0.00 0.07 par:pas; +carillonnées carillonné adj f p 0.00 0.41 0.00 0.27 +carillonnés carillonné adj m p 0.00 0.41 0.00 0.07 +carillons carillon nom m p 1.67 5.88 0.12 0.34 +carioca carioca adj m s 0.14 0.00 0.14 0.00 +caris cari nom m p 0.08 0.95 0.00 0.88 +carissime carissime adj s 0.00 0.07 0.00 0.07 +cariste cariste nom s 0.04 0.00 0.04 0.00 +caritatif caritatif adj m s 0.57 0.27 0.12 0.07 +caritatifs caritatif adj m p 0.57 0.27 0.02 0.07 +caritative caritatif adj f s 0.57 0.27 0.33 0.07 +caritatives caritatif adj f p 0.57 0.27 0.11 0.07 +carié carié adj m s 0.40 0.47 0.00 0.14 +cariée carié adj f s 0.40 0.47 0.27 0.07 +cariées carié adj f p 0.40 0.47 0.13 0.27 +carlin carlin nom m s 0.96 0.47 0.86 0.34 +carlines carline nom f p 0.00 0.07 0.00 0.07 +carlingue carlingue nom f s 0.23 2.77 0.22 2.36 +carlingues carlingue nom f p 0.23 2.77 0.01 0.41 +carlins carlin nom m p 0.96 0.47 0.10 0.14 +carlisme carlisme nom m s 0.20 0.00 0.20 0.00 +carliste carliste adj f s 0.70 0.00 0.60 0.00 +carlistes carliste adj p 0.70 0.00 0.10 0.00 +carma carmer ver 0.01 1.01 0.01 0.00 ind:pas:3s; +carmagnole carmagnole nom f s 0.00 0.54 0.00 0.47 +carmagnoles carmagnole nom f p 0.00 0.54 0.00 0.07 +carmant carmer ver 0.01 1.01 0.00 0.07 par:pre; +carme carme nom m s 0.14 0.61 0.00 0.14 +carmel carmel nom m s 0.28 0.20 0.28 0.20 +carmer carmer ver 0.01 1.01 0.00 0.68 inf; +carmes carme nom m p 0.14 0.61 0.14 0.47 +carmin carmin nom m s 0.26 0.81 0.26 0.68 +carmina carminer ver 0.23 0.07 0.01 0.00 ind:pas:3s; +carmine carminer ver 0.23 0.07 0.22 0.00 imp:pre:2s;ind:pre:3s; +carmins carmin nom m p 0.26 0.81 0.00 0.14 +carminé carminé adj m s 0.00 0.74 0.00 0.07 +carminée carminé adj f s 0.00 0.74 0.00 0.20 +carminées carminé adj f p 0.00 0.74 0.00 0.34 +carminés carminé adj m p 0.00 0.74 0.00 0.14 +carmé carmer ver m s 0.01 1.01 0.00 0.14 par:pas; +carmée carmer ver f s 0.01 1.01 0.00 0.14 par:pas; +carmélite carmélite nom f s 0.40 1.35 0.28 0.68 +carmélites carmélite nom f p 0.40 1.35 0.12 0.68 +carnage carnage nom m s 5.59 3.38 5.46 3.18 +carnages carnage nom m p 5.59 3.38 0.14 0.20 +carnassier carnassier nom m s 0.04 2.09 0.02 0.74 +carnassiers carnassier adj m p 0.03 1.82 0.03 0.27 +carnassière carnassier nom f s 0.04 2.09 0.01 0.34 +carnassières carnassier nom f p 0.04 2.09 0.00 0.14 +carnation carnation nom f s 0.30 1.08 0.30 1.08 +carnaval carnaval nom m s 7.86 5.81 7.83 5.68 +carnavalesque carnavalesque adj s 0.01 0.20 0.01 0.20 +carnavals carnaval nom m p 7.86 5.81 0.03 0.14 +carne carne nom f s 1.21 2.77 1.09 2.03 +carnes carne nom f p 1.21 2.77 0.12 0.74 +carnet carnet nom m s 13.23 31.82 11.06 24.66 +carnets carnet nom m p 13.23 31.82 2.17 7.16 +carnier carnier nom m s 0.27 0.27 0.27 0.20 +carniers carnier nom m p 0.27 0.27 0.00 0.07 +carnivore carnivore adj s 0.64 1.01 0.25 0.47 +carnivores carnivore adj p 0.64 1.01 0.39 0.54 +carné carné adj m s 0.02 0.27 0.00 0.07 +carnée carné adj f s 0.02 0.27 0.00 0.07 +carnées carné adj f p 0.02 0.27 0.01 0.07 +carnés carné adj m p 0.02 0.27 0.01 0.07 +carogne carogne nom f s 0.14 0.00 0.14 0.00 +carole carole nom f s 0.00 0.07 0.00 0.07 +caroline carolin adj f s 0.03 0.61 0.03 0.14 +carolines carolin adj f p 0.03 0.61 0.00 0.14 +carolingien carolingien adj m s 0.00 0.20 0.00 0.07 +carolingienne carolingien adj f s 0.00 0.20 0.00 0.07 +carolingiens carolingien adj m p 0.00 0.20 0.00 0.07 +carolins carolin adj m p 0.03 0.61 0.00 0.34 +carolus carolus nom m 0.10 0.00 0.10 0.00 +caronades caronade nom f p 0.01 0.14 0.01 0.14 +caroncule caroncule nom f s 0.01 0.14 0.01 0.14 +carotide carotide nom f s 0.84 1.28 0.78 0.88 +carotides carotide nom f p 0.84 1.28 0.06 0.41 +carotidien carotidien adj m s 0.12 0.00 0.09 0.00 +carotidienne carotidien adj f s 0.12 0.00 0.03 0.00 +carottage carottage nom m s 0.02 0.00 0.02 0.00 +carottait carotter ver 0.14 0.41 0.00 0.07 ind:imp:3s; +carotte carotte nom f s 7.12 8.31 2.45 2.97 +carottent carotter ver 0.14 0.41 0.00 0.07 ind:pre:3p; +carotter carotter ver 0.14 0.41 0.03 0.07 inf; +carotterait carotter ver 0.14 0.41 0.00 0.07 cnd:pre:3s; +carottes carotte nom f p 7.12 8.31 4.67 5.34 +carotteur carotteur adj m s 0.12 0.00 0.10 0.00 +carotteuse carotteur adj f s 0.12 0.00 0.02 0.00 +carotène carotène nom m s 0.01 0.00 0.01 0.00 +carottier carottier adj m s 0.01 0.00 0.01 0.00 +carotté carotter ver m s 0.14 0.41 0.06 0.00 par:pas; +carottés carotter ver m p 0.14 0.41 0.00 0.07 par:pas; +caroube caroube nom f s 0.13 0.07 0.13 0.07 +caroubier caroubier nom m s 0.01 0.34 0.01 0.14 +caroubiers caroubier nom m p 0.01 0.34 0.00 0.20 +caroublant caroubler ver 0.00 0.14 0.00 0.07 par:pre; +carouble carouble nom f s 0.00 0.74 0.00 0.07 +caroubler caroubler ver 0.00 0.14 0.00 0.07 inf; +caroubles carouble nom f p 0.00 0.74 0.00 0.68 +caroubleur caroubleur nom m s 0.00 0.14 0.00 0.14 +carousse carousse nom f s 0.00 0.07 0.00 0.07 +carpaccio carpaccio nom m s 0.18 0.00 0.18 0.00 +carpe carpe nom s 2.87 3.85 2.42 2.77 +carpes carpe nom f p 2.87 3.85 0.45 1.08 +carpette carpette nom f s 0.35 2.36 0.32 2.09 +carpettes carpette nom f p 0.35 2.36 0.03 0.27 +carpien carpien adj m s 0.26 0.00 0.23 0.00 +carpienne carpien adj f s 0.26 0.00 0.03 0.00 +carpillon carpillon nom m s 0.00 0.27 0.00 0.27 +carpé carpé adj m s 0.02 0.14 0.02 0.14 +carquois carquois nom m 0.34 0.68 0.34 0.68 +carra carrer ver 1.13 6.55 0.00 0.47 ind:pas:3s; +carraient carrer ver 1.13 6.55 0.00 0.14 ind:imp:3p; +carrais carrer ver 1.13 6.55 0.00 0.14 ind:imp:1s; +carrait carrer ver 1.13 6.55 0.00 0.14 ind:imp:3s; +carrant carrer ver 1.13 6.55 0.00 0.27 par:pre; +carrare carrare nom m s 0.00 0.07 0.00 0.07 +carre carrer ver 1.13 6.55 0.17 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +carreau carreau nom m s 8.10 41.69 4.34 13.51 +carreaux carreau nom m p 8.10 41.69 3.75 28.18 +carrefour carrefour nom m s 5.40 35.95 5.00 30.34 +carrefours carrefour nom m p 5.40 35.95 0.40 5.61 +carrelage carrelage nom m s 2.40 13.18 2.39 12.36 +carrelages carrelage nom m p 2.40 13.18 0.01 0.81 +carrelait carreler ver 0.22 3.24 0.00 0.07 ind:imp:3s; +carrelant carreler ver 0.22 3.24 0.01 0.00 par:pre; +carreler carreler ver 0.22 3.24 0.17 0.07 inf; +carrelet carrelet nom m s 0.05 1.82 0.04 1.69 +carrelets carrelet nom m p 0.05 1.82 0.01 0.14 +carreleur carreleur nom m s 0.14 0.34 0.14 0.20 +carreleurs carreleur nom m p 0.14 0.34 0.00 0.14 +carrelé carreler ver m s 0.22 3.24 0.02 1.62 par:pas; +carrelée carreler ver f s 0.22 3.24 0.02 1.01 par:pas; +carrelées carreler ver f p 0.22 3.24 0.00 0.20 par:pas; +carrelés carreler ver m p 0.22 3.24 0.00 0.27 par:pas; +carrent carrer ver 1.13 6.55 0.00 0.07 ind:pre:3p; +carrer carrer ver 1.13 6.55 0.32 0.88 inf; +carrerais carrer ver 1.13 6.55 0.01 0.00 cnd:pre:1s; +carres carrer ver 1.13 6.55 0.03 0.00 ind:pre:2s;sub:pre:2s; +carrick carrick nom m s 0.28 0.00 0.28 0.00 +carrier carrier nom m s 0.01 0.74 0.01 0.47 +carriers carrier nom m p 0.01 0.74 0.00 0.27 +carriole carriole nom f s 1.42 10.47 1.25 8.38 +carrioles carriole nom f p 1.42 10.47 0.17 2.09 +carrière carrière nom s 36.54 36.15 35.23 33.04 +carrières carrière nom f p 36.54 36.15 1.31 3.11 +carriérisme carriérisme nom m s 0.01 0.00 0.01 0.00 +carriériste carriériste nom s 0.39 0.00 0.34 0.00 +carriéristes carriériste nom p 0.39 0.00 0.04 0.00 +carron carron nom m s 0.01 0.00 0.01 0.00 +carrossable carrossable adj s 0.14 0.54 0.00 0.47 +carrossables carrossable adj f p 0.14 0.54 0.14 0.07 +carrosse carrosse nom m s 2.77 4.05 2.59 3.72 +carrosser carrosser ver 0.03 0.34 0.00 0.07 inf; +carrosserie carrosserie nom f s 1.45 6.55 1.22 5.61 +carrosseries carrosserie nom f p 1.45 6.55 0.23 0.95 +carrosses carrosse nom m p 2.77 4.05 0.18 0.34 +carrossier carrossier nom m s 0.04 0.27 0.02 0.20 +carrossiers carrossier nom m p 0.04 0.27 0.02 0.07 +carrossée carrosser ver f s 0.03 0.34 0.02 0.20 par:pas; +carrossées carrosser ver f p 0.03 0.34 0.00 0.07 par:pas; +carrousel carrousel nom m s 0.42 2.50 0.40 2.36 +carrousels carrousel nom m p 0.42 2.50 0.03 0.14 +carré carré nom m s 3.85 32.23 3.48 25.07 +carrée carré adj f s 4.92 27.77 0.84 10.07 +carrées carrer ver f p 1.13 6.55 0.08 0.20 par:pas; +carrément carrément adv 9.99 16.55 9.99 16.55 +carrure carrure nom f s 0.94 4.53 0.94 4.39 +carrures carrure nom f p 0.94 4.53 0.00 0.14 +carrés carré adj m p 4.92 27.77 1.36 6.49 +carry carry nom m s 0.61 0.20 0.61 0.20 +cars car nom_sup m p 14.84 19.86 0.64 3.99 +carta carter ver 0.30 0.20 0.01 0.14 ind:pas:3s; +cartable cartable nom m s 1.58 11.28 1.54 9.32 +cartables cartable nom m p 1.58 11.28 0.04 1.96 +carte_clé carte_clé nom f s 0.03 0.00 0.03 0.00 +carte_lettre carte_lettre nom f s 0.00 0.41 0.00 0.34 +carte carte nom f s 144.96 111.42 96.11 60.95 +cartel cartel nom m s 2.04 0.81 1.75 0.61 +cartels cartel nom m p 2.04 0.81 0.28 0.20 +carter carter nom m s 1.14 0.34 1.12 0.34 +carterie carterie nom f s 0.07 0.00 0.07 0.00 +carters carter nom m p 1.14 0.34 0.01 0.00 +carte_lettre carte_lettre nom f p 0.00 0.41 0.00 0.07 +cartes carte nom f p 144.96 111.42 48.84 50.47 +carthaginois carthaginois nom m 0.04 0.27 0.04 0.27 +carthaginoise carthaginois adj f s 0.04 0.07 0.01 0.07 +carthame carthame nom m s 0.02 0.00 0.02 0.00 +carène carène nom f s 0.11 0.54 0.11 0.34 +carènes carène nom f p 0.11 0.54 0.00 0.20 +cartilage cartilage nom m s 0.84 1.42 0.75 0.68 +cartilages cartilage nom m p 0.84 1.42 0.09 0.74 +cartilagineuse cartilagineux adj f s 0.07 0.14 0.02 0.14 +cartilagineuses cartilagineux adj f p 0.07 0.14 0.03 0.00 +cartilagineux cartilagineux adj m p 0.07 0.14 0.02 0.00 +cartographe cartographe nom s 0.16 0.61 0.11 0.27 +cartographes cartographe nom p 0.16 0.61 0.05 0.34 +cartographie cartographie nom f s 0.37 0.34 0.37 0.34 +cartographient cartographier ver 0.10 0.07 0.00 0.07 ind:pre:3p; +cartographier cartographier ver 0.10 0.07 0.02 0.00 inf; +cartographique cartographique adj s 0.26 0.20 0.18 0.07 +cartographiques cartographique adj p 0.26 0.20 0.07 0.14 +cartographié cartographier ver m s 0.10 0.07 0.07 0.00 par:pas; +cartographiés cartographier ver m p 0.10 0.07 0.01 0.00 par:pas; +cartomancie cartomancie nom f s 0.01 0.00 0.01 0.00 +cartomancien cartomancien nom m s 0.16 1.15 0.00 0.14 +cartomancienne cartomancien nom f s 0.16 1.15 0.16 0.88 +cartomanciennes cartomancien nom f p 0.16 1.15 0.00 0.14 +carton_pâte carton_pâte nom m s 0.17 1.28 0.17 1.28 +carton carton nom m s 16.01 44.86 10.92 34.80 +cartonnage cartonnage nom m s 0.00 0.54 0.00 0.14 +cartonnages cartonnage nom m p 0.00 0.54 0.00 0.41 +cartonnant cartonner ver 2.02 2.16 0.00 0.07 par:pre; +cartonne cartonner ver 2.02 2.16 0.32 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cartonnent cartonner ver 2.02 2.16 0.05 0.00 ind:pre:3p; +cartonner cartonner ver 2.02 2.16 1.09 0.41 inf; +cartonneuse cartonneux adj f s 0.00 0.47 0.00 0.20 +cartonneuses cartonneux adj f p 0.00 0.47 0.00 0.07 +cartonneux cartonneux adj m 0.00 0.47 0.00 0.20 +cartonnier cartonnier nom m s 0.00 0.34 0.00 0.20 +cartonniers cartonnier nom m p 0.00 0.34 0.00 0.14 +cartonné cartonner ver m s 2.02 2.16 0.54 0.47 par:pas; +cartonnée cartonner ver f s 2.02 2.16 0.03 0.41 par:pas; +cartonnées cartonner ver f p 2.02 2.16 0.00 0.27 par:pas; +cartonnés cartonner ver m p 2.02 2.16 0.00 0.41 par:pas; +cartons carton nom m p 16.01 44.86 5.09 10.07 +cartoon cartoon nom m s 0.76 0.07 0.43 0.00 +cartoons cartoon nom m p 0.76 0.07 0.33 0.07 +cartothèque cartothèque nom f s 0.10 0.00 0.10 0.00 +cartouche cartouche nom s 5.81 9.53 1.76 2.91 +cartoucherie cartoucherie nom f s 0.00 0.07 0.00 0.07 +cartouches cartouche nom p 5.81 9.53 4.05 6.62 +cartouchière cartouchière nom f s 0.17 2.16 0.04 0.47 +cartouchières cartouchière nom f p 0.17 2.16 0.14 1.69 +carté carter ver m s 0.30 0.20 0.00 0.07 par:pas; +cartulaires cartulaire nom m p 0.00 0.14 0.00 0.14 +cartésianisme cartésianisme nom m s 0.00 0.20 0.00 0.20 +cartésien cartésien adj m s 0.06 0.68 0.01 0.34 +cartésienne cartésien adj f s 0.06 0.68 0.04 0.20 +cartésiennes cartésien adj f p 0.06 0.68 0.00 0.07 +cartésiens cartésien adj m p 0.06 0.68 0.00 0.07 +carême_prenant carême_prenant nom m s 0.00 0.07 0.00 0.07 +carême carême nom m s 0.25 1.96 0.25 1.82 +carêmes carême nom m p 0.25 1.96 0.00 0.14 +carénage carénage nom m s 0.04 0.41 0.04 0.34 +carénages carénage nom m p 0.04 0.41 0.00 0.07 +caréner caréner ver 0.01 0.14 0.01 0.00 inf; +caréné caréné adj m s 0.00 0.07 0.00 0.07 +carénées caréner ver f p 0.01 0.14 0.00 0.07 par:pas; +carvi carvi nom m s 0.04 0.00 0.04 0.00 +cary cary nom m s 0.01 0.00 0.01 0.00 +caryatides caryatide nom f p 0.00 0.07 0.00 0.07 +caryotype caryotype nom m s 0.04 0.00 0.04 0.00 +cas cas nom m 280.59 217.36 280.59 217.36 +casa casa nom f s 1.49 2.57 1.49 2.57 +casablancaises casablancais adj f p 0.00 0.07 0.00 0.07 +casaient caser ver 4.76 7.70 0.01 0.07 ind:imp:3p; +casait caser ver 4.76 7.70 0.01 0.27 ind:imp:3s; +casanier casanier adj m s 0.46 0.81 0.20 0.47 +casaniers casanier adj m p 0.46 0.81 0.13 0.07 +casanière casanier adj f s 0.46 0.81 0.13 0.20 +casanières casanier adj f p 0.46 0.81 0.01 0.07 +casant caser ver 4.76 7.70 0.00 0.07 par:pre; +casaque casaque nom f s 0.45 2.84 0.18 2.16 +casaques casaque nom f p 0.45 2.84 0.27 0.68 +casaquin casaquin nom m s 0.00 0.14 0.00 0.14 +casas caser ver 4.76 7.70 0.11 0.47 ind:pas:2s; +casbah casbah nom f s 1.76 4.32 1.76 4.32 +cascadaient cascader ver 0.27 1.62 0.00 0.20 ind:imp:3p; +cascadait cascader ver 0.27 1.62 0.00 0.34 ind:imp:3s; +cascadant cascader ver 0.27 1.62 0.00 0.07 par:pre; +cascadas cascader ver 0.27 1.62 0.00 0.07 ind:pas:2s; +cascade cascade nom f s 4.41 11.55 3.19 7.30 +cascadent cascader ver 0.27 1.62 0.00 0.20 ind:pre:3p; +cascader cascader ver 0.27 1.62 0.27 0.20 inf; +cascades cascade nom f p 4.41 11.55 1.22 4.26 +cascadeur cascadeur nom m s 2.81 0.27 1.88 0.14 +cascadeurs cascadeur nom m p 2.81 0.27 0.65 0.14 +cascadeuse cascadeur nom f s 2.81 0.27 0.28 0.00 +cascadèrent cascader ver 0.27 1.62 0.00 0.07 ind:pas:3p; +cascadé cascader ver m s 0.27 1.62 0.00 0.07 par:pas; +cascara cascara nom f s 0.04 0.00 0.04 0.00 +cascatelle cascatelle nom f s 0.00 0.14 0.00 0.07 +cascatelles cascatelle nom f p 0.00 0.14 0.00 0.07 +cascher cascher adj 0.03 0.00 0.03 0.00 +case case nom f s 5.18 14.53 4.41 9.46 +casemate casemate nom f s 0.01 3.18 0.00 1.55 +casemates casemate nom f p 0.01 3.18 0.01 1.62 +casent caser ver 4.76 7.70 0.02 0.07 ind:pre:3p; +caser caser ver 4.76 7.70 2.12 3.78 ind:pre:2p;inf; +caserai caser ver 4.76 7.70 0.04 0.07 ind:fut:1s; +caserais caser ver 4.76 7.70 0.03 0.07 cnd:pre:1s; +caserait caser ver 4.76 7.70 0.05 0.00 cnd:pre:3s; +caserne caserne nom f s 8.99 16.49 7.97 12.03 +casernement casernement nom m s 0.01 0.68 0.01 0.41 +casernements casernement nom m p 0.01 0.68 0.00 0.27 +caserner caserner ver 0.01 0.34 0.00 0.07 inf; +casernes caserne nom f p 8.99 16.49 1.03 4.46 +caserné caserner ver m s 0.01 0.34 0.01 0.07 par:pas; +casernés caserner ver m p 0.01 0.34 0.00 0.20 par:pas; +cases case nom f p 5.18 14.53 0.78 5.07 +casette casette nom f s 0.06 0.00 0.05 0.00 +casettes casette nom f p 0.06 0.00 0.01 0.00 +cash cash adv 7.25 0.61 7.25 0.61 +casher casher adj s 0.53 0.07 0.53 0.07 +cashmere cashmere nom m s 0.46 0.34 0.46 0.34 +casier casier nom m s 17.81 8.11 15.82 4.46 +casiers casier nom m p 17.81 8.11 1.98 3.65 +casimir casimir nom m s 0.01 0.27 0.01 0.27 +casino casino nom m s 12.75 10.81 10.89 9.80 +casinos casino nom m p 12.75 10.81 1.86 1.01 +casoar casoar nom m s 0.14 0.61 0.13 0.41 +casoars casoar nom m p 0.14 0.61 0.01 0.20 +caspiennes caspienne adj f p 0.01 0.00 0.01 0.00 +casquaient casquer ver 1.92 6.69 0.00 0.07 ind:imp:3p; +casquais casquer ver 1.92 6.69 0.01 0.07 ind:imp:1s;ind:imp:2s; +casquait casquer ver 1.92 6.69 0.01 0.14 ind:imp:3s; +casquant casquer ver 1.92 6.69 0.01 0.20 par:pre; +casque casque nom m s 15.42 29.19 12.11 21.62 +casquent casquer ver 1.92 6.69 0.02 0.00 ind:pre:3p; +casquer casquer ver 1.92 6.69 1.25 1.89 inf; +casquera casquer ver 1.92 6.69 0.02 0.07 ind:fut:3s; +casqueras casquer ver 1.92 6.69 0.00 0.07 ind:fut:2s; +casqueront casquer ver 1.92 6.69 0.00 0.07 ind:fut:3p; +casques casque nom m p 15.42 29.19 3.32 7.57 +casquette casquette nom f s 9.73 38.58 8.64 34.39 +casquettes casquette nom f p 9.73 38.58 1.09 4.19 +casquettiers casquettier nom m p 0.00 0.07 0.00 0.07 +casquettés casquetté adj m p 0.00 0.07 0.00 0.07 +casquez casquer ver 1.92 6.69 0.21 0.14 imp:pre:2p;ind:pre:2p; +casqué casquer ver m s 1.92 6.69 0.11 1.42 par:pas; +casquée casqué adj f s 0.12 4.46 0.00 0.61 +casquées casqué adj f p 0.12 4.46 0.01 0.34 +casqués casqué adj m p 0.12 4.46 0.04 2.57 +cassa casser ver 160.61 92.70 0.12 4.73 ind:pas:3s; +cassable cassable adj s 0.02 0.20 0.01 0.14 +cassables cassable adj m p 0.02 0.20 0.01 0.07 +cassage cassage nom m s 0.16 0.54 0.14 0.41 +cassages cassage nom m p 0.16 0.54 0.03 0.14 +cassai casser ver 160.61 92.70 0.00 0.20 ind:pas:1s; +cassaient casser ver 160.61 92.70 0.12 1.89 ind:imp:3p; +cassais casser ver 160.61 92.70 0.64 0.68 ind:imp:1s;ind:imp:2s; +cassait casser ver 160.61 92.70 0.75 3.78 ind:imp:3s; +cassandre cassandre nom m s 0.06 0.07 0.06 0.07 +cassant casser ver 160.61 92.70 0.59 2.64 par:pre; +cassante cassant adj f s 0.35 2.77 0.04 0.88 +cassantes cassant adj f p 0.35 2.77 0.00 0.41 +cassants cassant adj m p 0.35 2.77 0.02 0.27 +cassate cassate nom f s 0.00 0.07 0.00 0.07 +cassation cassation nom f s 0.85 0.95 0.85 0.88 +cassations cassation nom f p 0.85 0.95 0.00 0.07 +casse_bonbon casse_bonbon nom m p 0.10 0.00 0.10 0.00 +casse_burnes casse_burnes nom m 0.05 0.00 0.05 0.00 +casse_cou casse_cou adj s 0.35 0.54 0.35 0.54 +casse_couilles casse_couilles nom m 1.47 0.20 1.47 0.20 +casse_croûte casse_croûte nom m s 1.54 4.46 1.52 4.32 +casse_croûte casse_croûte nom m p 1.54 4.46 0.02 0.14 +casse_cul casse_cul adj 0.01 0.00 0.01 0.00 +casse_dalle casse_dalle nom m 0.29 0.95 0.28 0.81 +casse_dalle casse_dalle nom m p 0.29 0.95 0.01 0.14 +casse_graine casse_graine nom m 0.00 0.95 0.00 0.95 +casse_gueule casse_gueule nom m 0.10 0.07 0.10 0.07 +casse_noisette casse_noisette nom m s 0.22 0.41 0.22 0.41 +casse_noisettes casse_noisettes nom m 0.13 0.27 0.13 0.27 +casse_noix casse_noix nom m 0.12 0.20 0.12 0.20 +casse_pattes casse_pattes nom m 0.03 0.20 0.03 0.20 +casse_pieds casse_pieds adj s 0.87 1.22 0.87 1.22 +casse_pipe casse_pipe nom m s 0.50 0.74 0.50 0.74 +casse_pipes casse_pipes nom m 0.02 0.20 0.02 0.20 +casse_tête casse_tête nom m 0.69 0.88 0.69 0.88 +casse casser ver 160.61 92.70 41.32 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cassement cassement nom m s 0.00 0.20 0.00 0.14 +cassements cassement nom m p 0.00 0.20 0.00 0.07 +cassent casser ver 160.61 92.70 3.78 2.50 ind:pre:3p; +casser casser ver 160.61 92.70 36.24 30.14 inf; +cassera casser ver 160.61 92.70 1.47 0.81 ind:fut:3s; +casserai casser ver 160.61 92.70 1.58 0.74 ind:fut:1s; +casseraient casser ver 160.61 92.70 0.04 0.07 cnd:pre:3p; +casserais casser ver 160.61 92.70 0.42 0.41 cnd:pre:1s;cnd:pre:2s; +casserait casser ver 160.61 92.70 0.51 0.61 cnd:pre:3s; +casseras casser ver 160.61 92.70 0.35 0.27 ind:fut:2s; +casserez casser ver 160.61 92.70 0.05 0.00 ind:fut:2p; +casseriez casser ver 160.61 92.70 0.03 0.00 cnd:pre:2p; +casserole casserole nom f s 4.95 22.84 2.91 16.22 +casseroles casserole nom f p 4.95 22.84 2.05 6.62 +casserolée casserolée nom f s 0.00 0.34 0.00 0.27 +casserolées casserolée nom f p 0.00 0.34 0.00 0.07 +casserons casser ver 160.61 92.70 0.01 0.07 ind:fut:1p; +casseront casser ver 160.61 92.70 0.25 0.27 ind:fut:3p; +casses casser ver 160.61 92.70 7.47 1.55 ind:pre:2s;sub:pre:2s; +cassetins cassetin nom m p 0.00 0.07 0.00 0.07 +cassette cassette nom f s 32.40 6.42 23.55 4.05 +cassettes cassette nom f p 32.40 6.42 8.86 2.36 +casseur casseur nom m s 1.46 3.18 0.71 1.76 +casseurs casseur nom m p 1.46 3.18 0.68 1.28 +casseuse casseur nom f s 1.46 3.18 0.07 0.07 +casseuses casseuse nom f p 0.01 0.07 0.01 0.00 +cassez casser ver 160.61 92.70 7.91 1.08 imp:pre:2p;ind:pre:2p; +cassier cassier nom m s 0.00 0.07 0.00 0.07 +cassiez casser ver 160.61 92.70 0.07 0.07 ind:imp:2p; +cassine cassine nom f s 0.00 1.55 0.00 1.55 +cassis cassis nom m 0.67 3.18 0.67 3.18 +cassitérite cassitérite nom f s 0.00 0.07 0.00 0.07 +cassolette cassolette nom f s 0.01 0.68 0.01 0.20 +cassolettes cassolette nom f p 0.01 0.68 0.00 0.47 +cassonade cassonade nom f s 0.32 0.07 0.32 0.07 +cassons casser ver 160.61 92.70 2.13 0.07 imp:pre:1p;ind:pre:1p; +cassoulet cassoulet nom m s 0.52 1.62 0.52 1.62 +cassèrent casser ver 160.61 92.70 0.00 0.47 ind:pas:3p; +cassé casser ver m s 160.61 92.70 42.71 15.88 par:pas; +cassée casser ver f s 160.61 92.70 9.30 4.12 par:pas; +cassées cassé adj f p 22.07 22.84 1.85 3.11 +cassure cassure nom f s 0.51 3.78 0.44 2.50 +cassures cassure nom f p 0.51 3.78 0.07 1.28 +cassés cassé adj m p 22.07 22.84 2.14 4.05 +castagnait castagner ver 0.10 0.68 0.00 0.14 ind:imp:3s; +castagne castagne nom f s 0.15 0.95 0.15 0.95 +castagnent castagner ver 0.10 0.68 0.00 0.20 ind:pre:3p; +castagner castagner ver 0.10 0.68 0.04 0.27 inf; +castagnes castagner ver 0.10 0.68 0.03 0.00 ind:pre:2s; +castagnette castagnette nom f s 0.99 2.57 0.00 0.07 +castagnettes castagnette nom f p 0.99 2.57 0.99 2.50 +castagné castagner ver m s 0.10 0.68 0.03 0.07 par:pas; +castard castard nom m s 0.01 0.00 0.01 0.00 +caste caste nom f s 0.73 4.19 0.50 3.38 +castel castel nom m s 0.14 1.08 0.14 1.08 +castelet castelet nom m s 0.00 0.07 0.00 0.07 +castes caste nom f p 0.73 4.19 0.23 0.81 +castillan castillan nom m s 0.38 0.61 0.38 0.34 +castillane castillan adj f s 0.23 0.81 0.00 0.27 +castillanes castillan adj f p 0.23 0.81 0.00 0.07 +castillans castillan adj m p 0.23 0.81 0.00 0.07 +castille castille nom f s 0.01 0.00 0.01 0.00 +castine castine nom f s 0.07 0.07 0.07 0.07 +casting casting nom m s 3.03 0.20 2.99 0.20 +castings casting nom m p 3.03 0.20 0.04 0.00 +castor castor nom m s 2.86 1.76 2.40 1.08 +castors castor nom m p 2.86 1.76 0.46 0.68 +castrat castrat nom m s 0.09 0.41 0.06 0.14 +castrateur castrateur adj m s 0.08 0.34 0.01 0.00 +castration castration nom f s 0.47 1.28 0.47 1.28 +castratrice castratrice adj f s 0.07 0.00 0.07 0.00 +castratrices castrateur adj f p 0.08 0.34 0.04 0.07 +castrats castrat nom m p 0.09 0.41 0.03 0.27 +castrer castrer ver 1.58 0.47 0.47 0.14 inf; +castreur castreur nom m s 0.00 0.20 0.00 0.14 +castreurs castreur nom m p 0.00 0.20 0.00 0.07 +castrez castrer ver 1.58 0.47 0.04 0.00 imp:pre:2p; +castrisme castrisme nom m s 0.14 0.00 0.14 0.00 +castriste castriste adj f s 0.04 0.07 0.02 0.07 +castristes castriste adj m p 0.04 0.07 0.02 0.00 +castrons castrer ver 1.58 0.47 0.01 0.00 imp:pre:1p; +castré castrer ver m s 1.58 0.47 0.97 0.27 par:pas; +castrée castrer ver f s 1.58 0.47 0.01 0.00 par:pas; +castrés castrer ver m p 1.58 0.47 0.07 0.07 par:pas; +casé caser ver m s 4.76 7.70 0.73 0.74 par:pas; +casée caser ver f s 4.76 7.70 0.31 0.41 par:pas; +casuel casuel nom m s 0.00 0.41 0.00 0.41 +casées caser ver f p 4.76 7.70 0.01 0.14 par:pas; +caséeuse caséeux adj f s 0.00 0.07 0.00 0.07 +caséine caséine nom f s 0.14 0.00 0.14 0.00 +casuistes casuiste nom m p 0.00 0.07 0.00 0.07 +casuistique casuistique nom f s 0.01 0.41 0.01 0.41 +casuistiques casuistique adj p 0.00 0.20 0.00 0.07 +casus_belli casus_belli nom m 0.05 0.00 0.05 0.00 +casés caser ver m p 4.76 7.70 0.33 0.34 par:pas; +cata cata nom f s 0.61 0.34 0.61 0.34 +catabolique catabolique adj m s 0.01 0.00 0.01 0.00 +catachrèse catachrèse nom f s 0.01 0.07 0.01 0.07 +cataclysme cataclysme nom m s 0.69 5.27 0.62 4.26 +cataclysmes cataclysme nom m p 0.69 5.27 0.06 1.01 +cataclysmique cataclysmique adj s 0.17 0.20 0.13 0.14 +cataclysmiques cataclysmique adj p 0.17 0.20 0.04 0.07 +catacombe catacombe nom f s 2.04 1.96 0.00 0.20 +catacombes catacombe nom f p 2.04 1.96 2.04 1.76 +catadioptre catadioptre nom m s 0.00 0.14 0.00 0.07 +catadioptres catadioptre nom m p 0.00 0.14 0.00 0.07 +catafalque catafalque nom m s 0.01 1.69 0.01 1.49 +catafalques catafalque nom m p 0.01 1.69 0.00 0.20 +catalan catalan nom m s 1.09 0.54 0.96 0.20 +catalane catalan adj f s 0.74 0.81 0.37 0.20 +catalanes catalan adj f p 0.74 0.81 0.00 0.14 +catalans catalan adj m p 0.74 0.81 0.14 0.27 +catalauniques catalaunique adj m p 0.01 0.20 0.01 0.20 +catalepsie catalepsie nom f s 0.51 0.61 0.51 0.47 +catalepsies catalepsie nom f p 0.51 0.61 0.00 0.14 +cataleptique cataleptique adj s 0.23 0.47 0.23 0.47 +cataleptiques cataleptique nom p 0.00 0.14 0.00 0.07 +catalogage catalogage nom m s 0.02 0.00 0.02 0.00 +catalogne catalogne nom f s 0.00 0.07 0.00 0.07 +cataloguais cataloguer ver 1.11 2.50 0.00 0.07 ind:imp:1s; +cataloguant cataloguer ver 1.11 2.50 0.01 0.00 par:pre; +catalogue catalogue nom m s 4.87 7.16 3.89 5.61 +cataloguent cataloguer ver 1.11 2.50 0.01 0.07 ind:pre:3p; +cataloguer cataloguer ver 1.11 2.50 0.23 0.27 inf; +cataloguerai cataloguer ver 1.11 2.50 0.02 0.00 ind:fut:1s; +catalogues catalogue nom m p 4.87 7.16 0.98 1.55 +cataloguiez cataloguer ver 1.11 2.50 0.00 0.07 ind:imp:2p; +catalogué cataloguer ver m s 1.11 2.50 0.25 0.81 par:pas; +cataloguée cataloguer ver f s 1.11 2.50 0.18 0.34 par:pas; +cataloguées cataloguer ver f p 1.11 2.50 0.04 0.27 par:pas; +catalogués cataloguer ver m p 1.11 2.50 0.06 0.41 par:pas; +catalpa catalpa nom m s 0.00 0.47 0.00 0.27 +catalpas catalpa nom m p 0.00 0.47 0.00 0.20 +catalyser catalyser ver 0.07 0.00 0.05 0.00 inf; +catalyses catalyse nom f p 0.00 0.07 0.00 0.07 +catalyseur catalyseur nom m s 1.31 0.20 1.23 0.07 +catalyseurs catalyseur nom m p 1.31 0.20 0.08 0.14 +catalysé catalyser ver m s 0.07 0.00 0.01 0.00 par:pas; +catalytique catalytique adj m s 0.16 0.00 0.14 0.00 +catalytiques catalytique adj m p 0.16 0.00 0.01 0.00 +catamaran catamaran nom m s 0.18 0.27 0.18 0.27 +cataphotes cataphote nom m p 0.00 0.14 0.00 0.14 +cataplasme cataplasme nom m s 0.35 1.49 0.08 1.22 +cataplasmes cataplasme nom m p 0.35 1.49 0.28 0.27 +cataplexie cataplexie nom f s 0.02 0.00 0.02 0.00 +catapulta catapulter ver 0.29 1.62 0.01 0.07 ind:pas:3s; +catapultait catapulter ver 0.29 1.62 0.00 0.07 ind:imp:3s; +catapulte catapulte nom f s 1.42 0.74 0.16 0.27 +catapulter catapulter ver 0.29 1.62 0.04 0.14 inf; +catapultera catapulter ver 0.29 1.62 0.01 0.00 ind:fut:3s; +catapultes catapulte nom f p 1.42 0.74 1.25 0.47 +catapulté catapulter ver m s 0.29 1.62 0.14 0.47 par:pas; +catapultée catapulter ver f s 0.29 1.62 0.02 0.27 par:pas; +catapultées catapulter ver f p 0.29 1.62 0.00 0.07 par:pas; +catapultés catapulter ver m p 0.29 1.62 0.00 0.20 par:pas; +cataracte cataracte nom f s 0.54 3.51 0.51 2.50 +cataractes cataracte nom f p 0.54 3.51 0.03 1.01 +catarrhal catarrhal adj m s 0.00 0.07 0.00 0.07 +catarrhe catarrhe nom m s 0.02 0.14 0.02 0.14 +catarrheuse catarrheux adj f s 0.00 0.34 0.00 0.07 +catarrheux catarrheux adj m 0.00 0.34 0.00 0.27 +catastropha catastropher ver 0.16 0.81 0.00 0.07 ind:pas:3s; +catastrophait catastropher ver 0.16 0.81 0.00 0.07 ind:imp:3s; +catastrophas catastropher ver 0.16 0.81 0.00 0.07 ind:pas:2s; +catastrophe catastrophe nom f s 16.47 30.14 14.71 22.91 +catastropher catastropher ver 0.16 0.81 0.10 0.00 inf; +catastrophes catastrophe nom f p 16.47 30.14 1.76 7.23 +catastrophique catastrophique adj s 2.78 3.72 1.77 3.24 +catastrophiquement catastrophiquement adv 0.00 0.14 0.00 0.14 +catastrophiques catastrophique adj p 2.78 3.72 1.01 0.47 +catastrophisme catastrophisme nom m s 0.00 0.07 0.00 0.07 +catastrophiste catastrophiste adj s 0.01 0.00 0.01 0.00 +catastrophé catastropher ver m s 0.16 0.81 0.04 0.41 par:pas; +catastrophée catastropher ver f s 0.16 0.81 0.02 0.20 par:pas; +catatonie catatonie nom f s 0.19 0.00 0.19 0.00 +catatonique catatonique adj s 0.37 0.07 0.37 0.07 +catatoniques catatonique nom p 0.05 0.00 0.03 0.00 +catch catch nom m s 2.47 0.88 2.47 0.88 +catcher catcher ver 0.50 0.07 0.33 0.00 inf; +catcheur catcheur nom m s 0.76 0.41 0.60 0.27 +catcheurs catcheur nom m p 0.76 0.41 0.10 0.07 +catcheuse catcheur nom f s 0.76 0.41 0.04 0.00 +catcheuses catcheur nom f p 0.76 0.41 0.02 0.07 +catché catcher ver m s 0.50 0.07 0.17 0.07 par:pas; +caterpillar caterpillar nom m 0.03 0.00 0.03 0.00 +catgut catgut nom m s 0.05 0.14 0.05 0.07 +catguts catgut nom m p 0.05 0.14 0.00 0.07 +cathare cathare adj m s 0.00 0.47 0.00 0.14 +cathares cathare nom m p 0.00 0.68 0.00 0.61 +catharsis catharsis nom f 0.23 0.07 0.23 0.07 +cathartique cathartique adj s 0.19 0.07 0.19 0.07 +catherinette catherinette nom f s 0.00 0.07 0.00 0.07 +cathexis cathexis nom f 0.01 0.00 0.01 0.00 +catho catho nom s 1.19 0.95 1.01 0.41 +cathode cathode nom f s 0.32 0.00 0.32 0.00 +cathodique cathodique adj s 0.19 0.20 0.18 0.07 +cathodiques cathodique adj m p 0.19 0.20 0.01 0.14 +catholicisme catholicisme nom m s 0.77 2.43 0.77 2.43 +catholicité catholicité nom f s 0.00 0.20 0.00 0.20 +catholique catholique adj s 13.26 27.03 10.91 21.28 +catholiquement catholiquement adv 0.00 0.14 0.00 0.14 +catholiques catholique nom p 5.28 13.99 2.71 8.04 +cathos catho nom p 1.19 0.95 0.18 0.54 +cathèdre cathèdre nom f s 0.00 0.20 0.00 0.07 +cathèdres cathèdre nom f p 0.00 0.20 0.00 0.14 +cathédral cathédral adj m s 0.00 0.07 0.00 0.07 +cathédrale cathédrale nom f s 4.67 21.28 3.24 17.23 +cathédrales cathédrale nom f p 4.67 21.28 1.43 4.05 +cathéter cathéter nom m s 0.73 0.00 0.73 0.00 +cathétérisme cathétérisme nom m s 0.01 0.00 0.01 0.00 +cati cati nom m s 0.70 0.00 0.70 0.00 +catiche catiche nom m s 0.00 0.07 0.00 0.07 +catin catin nom f s 2.83 1.49 2.21 1.28 +catins catin nom f p 2.83 1.49 0.63 0.20 +cation cation nom m s 0.01 0.00 0.01 0.00 +cato cato nom f s 1.00 0.00 1.00 0.00 +catoblépas catoblépas nom m 0.00 0.07 0.00 0.07 +catogan catogan nom m s 0.04 0.54 0.03 0.47 +catogans catogan nom m p 0.04 0.54 0.01 0.07 +cattleyas cattleya nom m p 0.00 0.07 0.00 0.07 +caté caté nom m s 0.06 0.07 0.06 0.07 +catéchisme catéchisme nom m s 2.36 4.93 2.36 4.80 +catéchismes catéchisme nom m p 2.36 4.93 0.00 0.14 +catéchiste catéchiste nom s 0.23 0.14 0.23 0.14 +catéchisée catéchiser ver f s 0.00 0.14 0.00 0.14 par:pas; +catécholamine catécholamine nom f s 0.01 0.00 0.01 0.00 +catéchèse catéchèse nom f s 0.00 0.07 0.00 0.07 +catéchumène catéchumène nom s 0.00 0.34 0.00 0.14 +catéchumènes catéchumène nom p 0.00 0.34 0.00 0.20 +catégorie catégorie nom f s 6.28 13.24 5.19 8.31 +catégories catégorie nom f p 6.28 13.24 1.09 4.93 +catégorique catégorique adj s 1.13 5.47 1.08 4.80 +catégoriquement catégoriquement adv 0.70 1.69 0.70 1.69 +catégoriques catégorique adj p 1.13 5.47 0.04 0.68 +catégorisation catégorisation nom f s 0.03 0.00 0.03 0.00 +catégorise catégoriser ver 0.08 0.07 0.03 0.00 imp:pre:2s;ind:pre:3s; +catégoriser catégoriser ver 0.08 0.07 0.02 0.07 inf; +catégorisé catégoriser ver m s 0.08 0.07 0.03 0.00 par:pas; +caténaire caténaire nom f s 0.17 0.20 0.17 0.00 +caténaires caténaire nom f p 0.17 0.20 0.00 0.20 +caucasien caucasien adj m s 0.81 0.68 0.59 0.14 +caucasienne caucasien adj f s 0.81 0.68 0.22 0.34 +caucasiens caucasien nom m p 0.19 0.14 0.03 0.14 +caucasique caucasique adj s 0.03 0.00 0.03 0.00 +cauchemar cauchemar nom m s 36.94 26.62 26.80 19.66 +cauchemardais cauchemarder ver 0.08 0.41 0.00 0.07 ind:imp:1s; +cauchemarde cauchemarder ver 0.08 0.41 0.02 0.00 ind:pre:1s; +cauchemarder cauchemarder ver 0.08 0.41 0.04 0.27 inf; +cauchemardes cauchemarder ver 0.08 0.41 0.00 0.07 ind:pre:2s; +cauchemardesque cauchemardesque adj s 0.41 0.27 0.36 0.14 +cauchemardesques cauchemardesque adj f p 0.41 0.27 0.04 0.14 +cauchemardeuse cauchemardeux adj f s 0.00 0.20 0.00 0.07 +cauchemardeuses cauchemardeux adj f p 0.00 0.20 0.00 0.07 +cauchemardeux cauchemardeux adj m 0.00 0.20 0.00 0.07 +cauchemardé cauchemarder ver m s 0.08 0.41 0.02 0.00 par:pas; +cauchemars cauchemar nom m p 36.94 26.62 10.14 6.96 +cauchois cauchois adj m 0.00 0.27 0.00 0.14 +cauchoise cauchois nom f s 0.00 0.07 0.00 0.07 +cauchoises cauchois adj f p 0.00 0.27 0.00 0.14 +caudal caudal adj m s 0.06 0.20 0.04 0.00 +caudale caudal adj f s 0.06 0.20 0.02 0.14 +caudales caudal adj f p 0.06 0.20 0.00 0.07 +caudebec caudebec nom m s 0.00 0.14 0.00 0.14 +caudillo caudillo nom m s 0.00 0.07 0.00 0.07 +caudines caudines adj f p 0.00 0.07 0.00 0.07 +cauri cauri nom m s 0.00 0.74 0.00 0.07 +cauris cauri nom m p 0.00 0.74 0.00 0.68 +causa causer ver 63.65 69.93 0.38 1.28 ind:pas:3s; +causai causer ver 63.65 69.93 0.01 0.14 ind:pas:1s; +causaient causer ver 63.65 69.93 0.25 2.57 ind:imp:3p; +causais causer ver 63.65 69.93 0.25 0.74 ind:imp:1s;ind:imp:2s; +causait causer ver 63.65 69.93 0.99 6.55 ind:imp:3s; +causal causal adj m s 0.01 0.14 0.01 0.14 +causaliste causaliste adj s 0.00 0.07 0.00 0.07 +causalité causalité nom f s 0.23 0.34 0.23 0.20 +causalités causalité nom f p 0.23 0.34 0.00 0.14 +causant causer ver 63.65 69.93 1.15 1.76 par:pre; +causante causant adj f s 0.51 1.96 0.20 0.20 +causantes causant adj f p 0.51 1.96 0.00 0.07 +causants causant adj m p 0.51 1.96 0.01 0.20 +cause cause nom f s 218.60 197.30 213.51 188.04 +causent causer ver 63.65 69.93 1.47 2.36 ind:pre:3p; +causer causer ver 63.65 69.93 15.46 18.31 inf; +causera causer ver 63.65 69.93 1.59 0.20 ind:fut:3s; +causerai causer ver 63.65 69.93 0.25 0.14 ind:fut:1s; +causeraient causer ver 63.65 69.93 0.01 0.14 cnd:pre:3p; +causerais causer ver 63.65 69.93 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +causerait causer ver 63.65 69.93 0.91 0.61 cnd:pre:3s; +causeras causer ver 63.65 69.93 0.16 0.00 ind:fut:2s; +causerez causer ver 63.65 69.93 0.08 0.27 ind:fut:2p; +causerie causerie nom f s 0.30 2.09 0.18 1.01 +causeries causerie nom f p 0.30 2.09 0.12 1.08 +causerions causer ver 63.65 69.93 0.01 0.14 cnd:pre:1p; +causerons causer ver 63.65 69.93 0.03 0.14 ind:fut:1p; +causeront causer ver 63.65 69.93 0.12 0.00 ind:fut:3p; +causes cause nom f p 218.60 197.30 5.08 9.26 +causette causette nom f s 0.71 1.76 0.69 1.62 +causettes causette nom f p 0.71 1.76 0.02 0.14 +causeur causeur adj m s 0.29 0.14 0.29 0.14 +causeurs causeur nom m p 0.58 0.68 0.00 0.07 +causeuse causeur nom f s 0.58 0.68 0.05 0.14 +causeuses causeur nom f p 0.58 0.68 0.40 0.14 +causez causer ver 63.65 69.93 1.24 0.54 imp:pre:2p;ind:pre:2p; +causiez causer ver 63.65 69.93 0.04 0.07 ind:imp:2p; +causions causer ver 63.65 69.93 0.29 1.01 ind:imp:1p; +causâmes causer ver 63.65 69.93 0.00 0.61 ind:pas:1p; +causons causer ver 63.65 69.93 0.58 0.95 imp:pre:1p;ind:pre:1p; +causse causse nom m s 0.00 0.95 0.00 0.74 +caussenard caussenard adj m s 0.00 0.07 0.00 0.07 +causses causse nom m p 0.00 0.95 0.00 0.20 +causèrent causer ver 63.65 69.93 0.03 0.47 ind:pas:3p; +causticité causticité nom f s 0.00 0.07 0.00 0.07 +caustique caustique adj s 0.36 1.15 0.34 1.15 +caustiques caustique adj f p 0.36 1.15 0.02 0.00 +causé causer ver m s 63.65 69.93 14.06 9.66 imp:pre:2s;par:pas;par:pas; +causée causer ver f s 63.65 69.93 2.11 1.49 par:pas; +causées causer ver f p 63.65 69.93 0.94 0.95 par:pas; +causés causer ver m p 63.65 69.93 1.47 1.35 par:pas; +cauteleuse cauteleux adj f s 0.00 1.01 0.00 0.20 +cauteleusement cauteleusement adv 0.00 0.20 0.00 0.20 +cauteleuses cauteleux adj f p 0.00 1.01 0.00 0.07 +cauteleux cauteleux adj m s 0.00 1.01 0.00 0.74 +caution caution nom f s 10.88 2.23 10.71 2.23 +cautionnaire cautionnaire nom s 0.14 0.00 0.14 0.00 +cautionnait cautionner ver 0.93 0.27 0.00 0.07 ind:imp:3s; +cautionne cautionner ver 0.93 0.27 0.20 0.00 ind:pre:1s;ind:pre:3s; +cautionnement cautionnement nom m s 0.02 0.00 0.02 0.00 +cautionnent cautionner ver 0.93 0.27 0.02 0.07 ind:pre:3p; +cautionner cautionner ver 0.93 0.27 0.27 0.07 inf; +cautionnerait cautionner ver 0.93 0.27 0.02 0.00 cnd:pre:3s; +cautionnes cautionner ver 0.93 0.27 0.06 0.00 ind:pre:2s; +cautionnez cautionner ver 0.93 0.27 0.04 0.00 imp:pre:2p;ind:pre:2p; +cautionné cautionner ver m s 0.93 0.27 0.31 0.00 par:pas; +cautionnée cautionner ver f s 0.93 0.27 0.00 0.07 par:pas; +cautions caution nom f p 10.88 2.23 0.17 0.00 +cautèle cautèle nom f s 0.00 0.27 0.00 0.14 +cautèles cautèle nom f p 0.00 0.27 0.00 0.14 +cautère cautère nom m s 0.13 0.54 0.12 0.41 +cautères cautère nom m p 0.13 0.54 0.01 0.14 +cautérisant cautériser ver 0.58 0.41 0.01 0.00 par:pre; +cautérisation cautérisation nom f s 0.03 0.07 0.03 0.07 +cautérise cautériser ver 0.58 0.41 0.05 0.14 imp:pre:2s;ind:pre:3s; +cautériser cautériser ver 0.58 0.41 0.32 0.27 inf; +cautérisée cautériser ver f s 0.58 0.41 0.04 0.00 par:pas; +cautérisées cautériser ver f p 0.58 0.41 0.16 0.00 par:pas; +cava caver ver 0.17 0.27 0.17 0.00 ind:pas:3s; +cavaillon cavaillon nom m s 0.00 0.34 0.00 0.34 +cavalaient cavaler ver 2.12 8.99 0.00 0.54 ind:imp:3p; +cavalais cavaler ver 2.12 8.99 0.14 0.20 ind:imp:1s;ind:imp:2s; +cavalait cavaler ver 2.12 8.99 0.15 0.27 ind:imp:3s; +cavalant cavaler ver 2.12 8.99 0.01 0.74 par:pre; +cavalcadaient cavalcader ver 0.00 0.68 0.00 0.14 ind:imp:3p; +cavalcadait cavalcader ver 0.00 0.68 0.00 0.07 ind:imp:3s; +cavalcadant cavalcader ver 0.00 0.68 0.00 0.14 par:pre; +cavalcade cavalcade nom f s 0.22 3.72 0.04 2.43 +cavalcadent cavalcader ver 0.00 0.68 0.00 0.07 ind:pre:3p; +cavalcader cavalcader ver 0.00 0.68 0.00 0.27 inf; +cavalcades cavalcade nom f p 0.22 3.72 0.19 1.28 +cavale cavale nom f s 4.00 4.32 3.87 4.26 +cavalent cavaler ver 2.12 8.99 0.16 0.74 ind:pre:3p; +cavaler cavaler ver 2.12 8.99 0.68 3.04 inf; +cavalerais cavaler ver 2.12 8.99 0.00 0.07 cnd:pre:2s; +cavaleras cavaler ver 2.12 8.99 0.01 0.07 ind:fut:2s; +cavalerie cavalerie nom f s 6.60 12.70 6.60 12.50 +cavaleries cavalerie nom f p 6.60 12.70 0.00 0.20 +cavaleront cavaler ver 2.12 8.99 0.01 0.00 ind:fut:3p; +cavales cavaler ver 2.12 8.99 0.17 0.14 ind:pre:2s; +cavaleur cavaleur nom m s 0.19 0.20 0.17 0.00 +cavaleurs cavaleur nom m p 0.19 0.20 0.00 0.07 +cavaleuse cavaleur nom f s 0.19 0.20 0.01 0.14 +cavalez cavaler ver 2.12 8.99 0.02 0.07 imp:pre:2p;ind:pre:2p; +cavalier cavalier nom m s 10.73 34.19 6.45 13.31 +cavaliers cavalier nom m p 10.73 34.19 3.06 18.85 +cavalière cavalier nom f s 10.73 34.19 1.22 1.62 +cavalièrement cavalièrement adv 0.09 0.34 0.09 0.34 +cavalières cavalière nom f p 0.22 0.00 0.22 0.00 +cavalé cavaler ver m s 2.12 8.99 0.23 1.08 par:pas; +cave cave nom f s 22.40 56.35 19.98 42.09 +caveau caveau nom m s 2.27 5.68 1.99 5.14 +caveaux caveau nom m p 2.27 5.68 0.29 0.54 +cavecés cavecé adj m p 0.00 0.07 0.00 0.07 +caver caver ver 0.17 0.27 0.00 0.14 inf; +caverne caverne nom f s 6.58 10.54 3.88 6.82 +cavernes caverne nom f p 6.58 10.54 2.70 3.72 +caverneuse caverneux adj f s 0.39 3.04 0.15 1.35 +caverneuses caverneux adj f p 0.39 3.04 0.01 0.41 +caverneux caverneux adj m 0.39 3.04 0.22 1.28 +cavernicoles cavernicole adj p 0.00 0.07 0.00 0.07 +caves cave nom f p 22.40 56.35 2.42 14.26 +cavette cavette nom f s 0.14 0.54 0.14 0.47 +cavettes cavette nom f p 0.14 0.54 0.00 0.07 +caviar caviar nom m s 6.29 4.26 6.29 4.26 +caviardé caviarder ver m s 0.00 0.07 0.00 0.07 par:pas; +cavillon cavillon nom m s 0.00 0.27 0.00 0.07 +cavillonne cavillon nom f s 0.00 0.27 0.00 0.07 +cavillons cavillon nom m p 0.00 0.27 0.00 0.14 +caviste caviste nom s 0.14 0.14 0.14 0.14 +cavitation cavitation nom f s 0.02 0.00 0.02 0.00 +cavité cavité nom f s 1.89 2.16 1.26 1.49 +cavités cavité nom f p 1.89 2.16 0.63 0.68 +cavé caver ver m s 0.17 0.27 0.01 0.14 par:pas; +cavée cavée nom f s 0.00 0.27 0.00 0.14 +cavées cavée nom f p 0.00 0.27 0.00 0.14 +cavum cavum nom m 0.01 0.00 0.01 0.00 +cayenne cayenne nom f s 0.01 0.07 0.01 0.07 +ce ce pro_dem m s 5219.10 2958.58 5219.10 2958.58 +ceci ceci pro_dem s 133.07 53.78 133.07 53.78 +ceignait ceindre ver 0.56 4.32 0.00 0.41 ind:imp:3s; +ceignant ceindre ver 0.56 4.32 0.01 0.27 par:pre; +ceignent ceindre ver 0.56 4.32 0.00 0.14 ind:pre:3p; +ceignit ceindre ver 0.56 4.32 0.00 0.27 ind:pas:3s; +ceindra ceindre ver 0.56 4.32 0.14 0.00 ind:fut:3s; +ceindrait ceindre ver 0.56 4.32 0.00 0.14 cnd:pre:3s; +ceindre ceindre ver 0.56 4.32 0.03 0.41 inf; +ceins ceindre ver 0.56 4.32 0.00 0.07 imp:pre:2s; +ceint ceindre ver m s 0.56 4.32 0.17 1.35 ind:pre:3s;par:pas; +ceinte ceindre ver f s 0.56 4.32 0.10 0.61 par:pas; +ceintes ceindre ver f p 0.56 4.32 0.01 0.07 par:pas; +ceints ceindre ver m p 0.56 4.32 0.11 0.61 par:pas; +ceintura ceinturer ver 0.28 6.08 0.00 0.14 ind:pas:3s; +ceinturaient ceinturer ver 0.28 6.08 0.01 0.14 ind:imp:3p; +ceinturait ceinturer ver 0.28 6.08 0.01 0.54 ind:imp:3s; +ceinturant ceinturer ver 0.28 6.08 0.00 0.27 par:pre; +ceinture ceinture nom f s 22.57 35.20 19.41 32.23 +ceinturent ceinturer ver 0.28 6.08 0.00 0.34 ind:pre:3p; +ceinturer ceinturer ver 0.28 6.08 0.02 0.47 inf; +ceintures ceinture nom f p 22.57 35.20 3.17 2.97 +ceinturez ceinturer ver 0.28 6.08 0.01 0.00 imp:pre:2p; +ceinturon ceinturon nom m s 0.91 7.23 0.70 5.88 +ceinturons ceinturon nom m p 0.91 7.23 0.20 1.35 +ceinturât ceinturer ver 0.28 6.08 0.00 0.07 sub:imp:3s; +ceinturèrent ceinturer ver 0.28 6.08 0.00 0.14 ind:pas:3p; +ceinturé ceinturer ver m s 0.28 6.08 0.00 1.49 par:pas; +ceinturée ceinturer ver f s 0.28 6.08 0.02 0.81 par:pas; +ceinturées ceinturer ver f p 0.28 6.08 0.00 0.41 par:pas; +ceinturés ceinturer ver m p 0.28 6.08 0.02 0.68 par:pas; +cela cela pro_dem s 492.56 741.82 492.56 741.82 +celait celer ver 0.68 0.34 0.00 0.07 ind:imp:3s; +celer celer ver 0.68 0.34 0.40 0.20 inf; +cella cella nom f s 0.28 0.81 0.28 0.81 +celle_ci celle_ci pro_dem f s 38.71 57.57 38.71 57.57 +celle_là celle_là pro_dem f s 52.63 28.65 52.63 28.65 +celle celle pro_dem f s 141.28 299.46 141.28 299.46 +celles_ci celles_ci pro_dem f p 6.64 9.39 6.64 9.39 +celles_là celles_là pro_dem f p 5.90 6.08 5.90 6.08 +celles celles pro_dem f p 34.73 107.97 34.73 107.97 +cellier cellier nom m s 1.11 3.65 1.01 2.97 +celliers cellier nom m p 1.11 3.65 0.10 0.68 +cellophane cellophane nom f s 0.39 2.43 0.39 2.43 +cellulaire cellulaire adj s 3.19 2.03 2.76 1.62 +cellulairement cellulairement adv 0.00 0.07 0.00 0.07 +cellulaires cellulaire adj p 3.19 2.03 0.43 0.41 +cellular cellular nom m s 0.01 0.20 0.01 0.20 +cellule cellule nom f s 42.98 46.28 31.06 35.34 +cellules cellule nom f p 42.98 46.28 11.92 10.95 +cellulite cellulite nom f s 0.66 1.15 0.56 1.08 +cellulites cellulite nom f p 0.66 1.15 0.10 0.07 +celluliteux celluliteux adj m s 0.00 0.14 0.00 0.14 +celluloïd celluloïd nom m s 0.08 3.38 0.08 3.38 +cellulose cellulose nom f s 0.12 0.27 0.12 0.27 +cellérier cellérier adj m s 0.00 0.07 0.00 0.07 +celte celte adj s 0.44 1.22 0.32 0.68 +celtes celte adj p 0.44 1.22 0.13 0.54 +celtique celtique adj s 0.15 1.08 0.09 0.81 +celtiques celtique adj p 0.15 1.08 0.06 0.27 +celtisants celtisant adj m p 0.00 0.07 0.00 0.07 +celtisme celtisme nom m s 0.00 0.07 0.00 0.07 +celée celer ver f s 0.68 0.34 0.00 0.07 par:pas; +celui_ci celui_ci pro_dem m s 45.97 71.76 45.97 71.76 +celui_là celui_là pro_dem m s 78.13 56.89 78.13 56.89 +celui celui pro_dem m s 250.13 319.19 250.13 319.19 +cendraient cendrer ver 0.00 0.68 0.00 0.07 ind:imp:3p; +cendrait cendrer ver 0.00 0.68 0.00 0.14 ind:imp:3s; +cendre cendre nom f s 17.18 28.85 3.24 11.08 +cendres cendre nom f p 17.18 28.85 13.95 17.77 +cendreuse cendreux adj f s 0.00 0.95 0.00 0.34 +cendreuses cendreux adj f p 0.00 0.95 0.00 0.20 +cendreux cendreux adj m s 0.00 0.95 0.00 0.41 +cendrier cendrier nom m s 4.35 14.73 3.86 10.95 +cendriers cendrier nom m p 4.35 14.73 0.48 3.78 +cendrillon cendrillon nom f s 0.07 0.20 0.02 0.07 +cendrillons cendrillon nom f p 0.07 0.20 0.05 0.14 +cendré cendré adj m s 0.09 2.03 0.03 0.81 +cendrée cendrée adj f s 0.03 0.00 0.03 0.00 +cendrées cendré adj f p 0.09 2.03 0.02 0.20 +cendrés cendré adj m p 0.09 2.03 0.04 0.61 +cens cens nom m 0.03 0.34 0.03 0.34 +censeur censeur nom m s 0.88 1.96 0.68 1.08 +censeurs censeur nom m p 0.88 1.96 0.20 0.88 +censier censier nom m s 0.00 0.07 0.00 0.07 +censitaire censitaire adj m s 0.00 0.14 0.00 0.14 +censé censé adj m s 62.52 8.11 38.22 4.53 +censée censé adj f s 62.52 8.11 13.51 1.76 +censées censé adj f p 62.52 8.11 1.61 0.61 +censément censément adv 0.05 0.41 0.05 0.41 +censuraient censurer ver 2.17 1.89 0.01 0.07 ind:imp:3p; +censurait censurer ver 2.17 1.89 0.01 0.07 ind:imp:3s; +censurant censurer ver 2.17 1.89 0.00 0.07 par:pre; +censure censure nom f s 2.87 3.51 2.87 3.04 +censurer censurer ver 2.17 1.89 0.44 0.61 inf; +censures censurer ver 2.17 1.89 0.14 0.00 ind:pre:2s; +censurez censurer ver 2.17 1.89 0.20 0.00 ind:pre:2p; +censuriez censurer ver 2.17 1.89 0.00 0.07 ind:imp:2p; +censuré censurer ver m s 2.17 1.89 0.88 0.54 imp:pre:2s;par:pas; +censurée censurer ver f s 2.17 1.89 0.11 0.27 par:pas; +censurées censurer ver f p 2.17 1.89 0.04 0.07 par:pas; +censurés censurer ver m p 2.17 1.89 0.06 0.00 par:pas; +censés censé adj m p 62.52 8.11 9.18 1.22 +cent cent adj_num 43.05 135.41 43.05 135.41 +centaine centaine nom f s 29.22 41.82 6.33 10.54 +centaines centaine nom f p 29.22 41.82 22.90 31.28 +centaure centaure nom m s 0.59 0.74 0.42 0.41 +centaures centaure nom m p 0.59 0.74 0.17 0.34 +centaurée centaurée nom f s 0.05 0.00 0.05 0.00 +centavo centavo nom m s 0.20 0.00 0.02 0.00 +centavos centavo nom m p 0.20 0.00 0.18 0.00 +centenaire centenaire nom s 0.55 1.28 0.55 1.08 +centenaires centenaire adj p 0.72 2.77 0.18 1.49 +centigrade centigrade nom m s 0.05 0.07 0.04 0.00 +centigrades centigrade nom m p 0.05 0.07 0.01 0.07 +centigrammes centigramme nom m p 0.10 0.00 0.10 0.00 +centile centile nom m s 0.96 0.00 0.96 0.00 +centilitres centilitre nom m p 0.00 0.14 0.00 0.14 +centime centime nom m s 7.14 5.68 3.25 1.49 +centimes centime nom m p 7.14 5.68 3.88 4.19 +centimètre centimètre nom m s 6.81 27.84 2.48 5.95 +centimètres centimètre nom m p 6.81 27.84 4.33 21.89 +centième centième adj m 0.29 2.64 0.28 2.64 +centièmes centième nom p 0.35 1.35 0.07 0.07 +centon centon nom m s 0.32 0.07 0.32 0.07 +centrafricain centrafricain adj m s 0.01 0.14 0.01 0.00 +centrafricaine centrafricain adj f s 0.01 0.14 0.00 0.14 +centrage centrage nom m s 0.11 0.00 0.11 0.00 +centrait centrer ver 1.38 1.82 0.00 0.14 ind:imp:3s; +central central adj m s 18.14 37.23 10.09 20.74 +centrale centrale nom f s 8.04 6.01 7.34 4.73 +centrales centrale nom f p 8.04 6.01 0.69 1.28 +centralisait centraliser ver 0.34 0.81 0.00 0.07 ind:imp:3s; +centralisation centralisation nom f s 0.16 0.14 0.16 0.14 +centralisatrice centralisateur adj f s 0.00 0.07 0.00 0.07 +centralise centraliser ver 0.34 0.81 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +centraliser centraliser ver 0.34 0.81 0.13 0.14 inf; +centralisiez centraliser ver 0.34 0.81 0.01 0.00 ind:imp:2p; +centralisme centralisme nom m s 0.00 0.41 0.00 0.41 +centralisons centraliser ver 0.34 0.81 0.01 0.00 ind:pre:1p; +centralisé centraliser ver m s 0.34 0.81 0.10 0.20 par:pas; +centralisée centraliser ver f s 0.34 0.81 0.02 0.20 par:pas; +centralisés centraliser ver m p 0.34 0.81 0.01 0.14 par:pas; +centrant centrer ver 1.38 1.82 0.11 0.00 par:pre; +centraux central adj m p 18.14 37.23 0.26 0.54 +centre_ville centre_ville nom m s 2.87 0.54 2.87 0.54 +centre centre nom m s 57.00 84.46 53.46 80.00 +centrer centrer ver 1.38 1.82 0.11 0.14 inf; +centres centre nom m p 57.00 84.46 3.54 4.46 +centrifugation centrifugation nom f s 0.01 0.00 0.01 0.00 +centrifuge centrifuge adj s 0.26 2.36 0.25 2.03 +centrifuges centrifuge adj f p 0.26 2.36 0.01 0.34 +centrifugeur centrifugeur nom m s 0.25 0.07 0.01 0.00 +centrifugeuse centrifugeur nom f s 0.25 0.07 0.24 0.07 +centrifugeuses centrifugeuse nom f p 0.04 0.00 0.04 0.00 +centriole centriole nom m s 0.14 0.00 0.14 0.00 +centripète centripète adj f s 0.02 0.20 0.02 0.14 +centripètes centripète adj p 0.02 0.20 0.00 0.07 +centriste centriste adj m s 0.01 0.07 0.01 0.07 +centrouse centrouse nom f s 0.00 0.20 0.00 0.20 +centré centrer ver m s 1.38 1.82 0.30 0.41 par:pas; +centrée centrer ver f s 1.38 1.82 0.29 0.20 par:pas; +centrées centrer ver f p 1.38 1.82 0.01 0.27 par:pas; +centrum centrum nom m s 0.14 0.00 0.14 0.00 +centrés centrer ver m p 1.38 1.82 0.07 0.00 par:pas; +cents cents adj_num 27.67 80.54 27.67 80.54 +centuple centuple nom m s 0.31 1.08 0.31 1.08 +centuplé centupler ver m s 0.00 0.14 0.00 0.07 par:pas; +centuplée centupler ver f s 0.00 0.14 0.00 0.07 par:pas; +centurie centurie nom f s 0.03 1.15 0.02 0.54 +centuries centurie nom f p 0.03 1.15 0.01 0.61 +centurion centurion nom m s 1.04 0.88 0.68 0.61 +centurions centurion nom m p 1.04 0.88 0.36 0.27 +cep cep nom m s 0.24 1.49 0.12 0.88 +cependant cependant con 1.54 13.51 1.54 13.51 +ceps cep nom m p 0.24 1.49 0.12 0.61 +cerbère cerbère nom m s 0.05 0.47 0.05 0.14 +cerbères cerbère nom m p 0.05 0.47 0.00 0.34 +cerceau cerceau nom m s 0.64 2.77 0.52 1.96 +cerceaux cerceau nom m p 0.64 2.77 0.12 0.81 +cerclage cerclage nom m s 0.03 0.00 0.03 0.00 +cerclait cercler ver 0.22 5.34 0.00 0.14 ind:imp:3s; +cerclant cercler ver 0.22 5.34 0.00 0.07 par:pre; +cercle cercle nom m s 21.77 54.26 17.77 42.43 +cercler cercler ver 0.22 5.34 0.00 0.20 inf; +cercles cercle nom m p 21.77 54.26 4.00 11.82 +cercleux cercleux nom m 0.00 0.07 0.00 0.07 +cerclé cercler ver m s 0.22 5.34 0.02 1.22 par:pas; +cerclée cercler ver f s 0.22 5.34 0.03 0.74 par:pas; +cerclées cercler ver f p 0.22 5.34 0.01 1.89 par:pas; +cerclés cercler ver m p 0.22 5.34 0.01 0.95 par:pas; +cercueil cercueil nom m s 22.14 22.16 18.90 19.26 +cercueils cercueil nom m p 22.14 22.16 3.24 2.91 +cerf_roi cerf_roi nom m s 0.01 0.00 0.01 0.00 +cerf_volant cerf_volant nom m s 1.85 1.82 1.40 1.22 +cerf cerf nom m s 7.56 25.54 6.17 20.27 +cerfeuil cerfeuil nom m s 0.03 0.95 0.03 0.95 +cerf_volant cerf_volant nom m p 1.85 1.82 0.46 0.61 +cerfs cerf nom m p 7.56 25.54 1.39 5.27 +cerisaie cerisaie nom f s 0.36 0.20 0.36 0.20 +cerise cerise nom f s 5.26 10.07 2.75 3.31 +cerises cerise nom f p 5.26 10.07 2.52 6.76 +cerisier cerisier nom m s 0.88 3.51 0.44 1.49 +cerisiers cerisier nom m p 0.88 3.51 0.44 2.03 +cerna cerner ver 7.74 21.01 0.00 0.07 ind:pas:3s; +cernable cernable adj s 0.00 0.07 0.00 0.07 +cernaient cerner ver 7.74 21.01 0.01 1.49 ind:imp:3p; +cernais cerner ver 7.74 21.01 0.00 0.07 ind:imp:1s; +cernait cerner ver 7.74 21.01 0.05 2.30 ind:imp:3s; +cernant cerner ver 7.74 21.01 0.00 0.34 par:pre; +cerne cerner ver 7.74 21.01 0.43 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cerneau cerneau nom m s 0.00 0.14 0.00 0.07 +cerneaux cerneau nom m p 0.00 0.14 0.00 0.07 +cernent cerner ver 7.74 21.01 0.54 1.08 ind:pre:3p; +cerner cerner ver 7.74 21.01 1.73 2.91 inf; +cernes cerne nom m p 1.30 5.20 1.18 3.78 +cernez cerner ver 7.74 21.01 0.38 0.00 imp:pre:2p;ind:pre:2p; +cerniez cerner ver 7.74 21.01 0.01 0.00 ind:imp:2p; +cernons cerner ver 7.74 21.01 0.04 0.00 ind:pre:1p; +cerné cerner ver m s 7.74 21.01 1.97 4.12 par:pas; +cernée cerner ver f s 7.74 21.01 1.14 2.91 par:pas; +cernées cerner ver f p 7.74 21.01 0.05 1.08 par:pas; +cernés cerner ver m p 7.74 21.01 1.39 2.91 par:pas; +cerque cerque nom m s 0.14 0.07 0.14 0.07 +certain certain adj_ind m s 103.57 182.64 2.18 6.89 +certaine certaine adj_ind f s 1.03 4.86 1.03 4.86 +certainement certainement adv 55.16 59.93 55.16 59.93 +certaines certaines adj_ind f p 48.41 51.55 48.41 51.55 +certains certains adj_ind m p 57.58 101.28 57.58 101.28 +certes certes adv_sup 14.88 69.66 14.88 69.66 +certif certif nom m s 0.14 1.08 0.03 1.01 +certifia certifier ver 2.52 2.91 0.00 0.07 ind:pas:3s; +certifiaient certifier ver 2.52 2.91 0.00 0.07 ind:imp:3p; +certifiait certifier ver 2.52 2.91 0.00 0.47 ind:imp:3s; +certifiant certifier ver 2.52 2.91 0.03 0.20 par:pre; +certificat certificat nom m s 12.30 9.93 11.27 7.30 +certification certification nom f s 0.09 0.00 0.09 0.00 +certificats certificat nom m p 12.30 9.93 1.03 2.64 +certifie certifier ver 2.52 2.91 0.89 0.47 ind:pre:1s;ind:pre:3s;sub:pre:1s; +certifier certifier ver 2.52 2.91 0.59 0.74 inf; +certifierait certifier ver 2.52 2.91 0.00 0.07 cnd:pre:3s; +certifieront certifier ver 2.52 2.91 0.01 0.00 ind:fut:3p; +certifiez certifier ver 2.52 2.91 0.17 0.00 imp:pre:2p;ind:pre:2p; +certifions certifier ver 2.52 2.91 0.03 0.07 imp:pre:1p;ind:pre:1p; +certifié certifier ver m s 2.52 2.91 0.68 0.54 par:pas; +certifiée certifié adj f s 0.43 0.74 0.14 0.14 +certifiées certifié adj f p 0.43 0.74 0.01 0.07 +certifiés certifier ver m p 2.52 2.91 0.04 0.07 par:pas; +certifs certif nom m p 0.14 1.08 0.11 0.07 +certitude certitude nom f s 10.18 41.89 8.94 37.09 +certitudes certitude nom f p 10.18 41.89 1.24 4.80 +cerveau cerveau nom m 69.22 46.69 57.67 28.92 +cerveaux cerveau nom m p 69.22 46.69 3.92 1.96 +cervelas cervelas nom m 0.03 0.27 0.03 0.27 +cervelet cervelet nom m s 0.85 0.61 0.85 0.47 +cervelets cervelet nom m p 0.85 0.61 0.00 0.14 +cervelle cerveau nom f s 69.22 46.69 7.63 14.05 +cervelles cervelle nom f p 6.93 0.00 0.40 0.00 +cervical cervical adj m s 1.79 1.01 0.29 0.14 +cervicale cervical adj f s 1.79 1.01 0.67 0.47 +cervicales cervical adj f p 1.79 1.01 0.79 0.41 +cervicaux cervical adj m p 1.79 1.01 0.05 0.00 +cervidés cervidé nom m p 0.00 0.14 0.00 0.14 +cervoise cervoise nom f s 0.02 0.00 0.02 0.00 +ces ces adj_dem p 1222.51 1547.50 1222.51 1547.50 +cessa cesser ver 68.11 177.77 0.64 16.28 ind:pas:3s; +cessai cesser ver 68.11 177.77 0.28 2.16 ind:pas:1s; +cessaient cesser ver 68.11 177.77 0.17 4.53 ind:imp:3p; +cessais cesser ver 68.11 177.77 0.47 1.28 ind:imp:1s;ind:imp:2s; +cessait cesser ver 68.11 177.77 1.56 18.18 ind:imp:3s; +cessant cesser ver 68.11 177.77 0.11 5.00 par:pre; +cessante cessant adj f s 0.01 1.55 0.00 0.27 +cessantes cessant adj f p 0.01 1.55 0.01 0.27 +cessasse cesser ver 68.11 177.77 0.00 0.07 sub:imp:1s; +cessation cessation nom f s 0.11 0.95 0.11 0.95 +cesse cesse nom f s 28.88 71.96 28.86 71.96 +cessent cesser ver 68.11 177.77 2.06 6.49 ind:pre:3p; +cesser cesser ver 68.11 177.77 13.20 21.01 inf; +cessera cesser ver 68.11 177.77 1.92 1.76 ind:fut:3s; +cesserai cesser ver 68.11 177.77 0.64 0.74 ind:fut:1s; +cesseraient cesser ver 68.11 177.77 0.05 0.68 cnd:pre:3p; +cesserais cesser ver 68.11 177.77 0.15 0.41 cnd:pre:1s;cnd:pre:2s; +cesserait cesser ver 68.11 177.77 0.28 1.96 cnd:pre:3s; +cesseras cesser ver 68.11 177.77 0.94 0.34 ind:fut:2s; +cesserez cesser ver 68.11 177.77 0.63 0.27 ind:fut:2p; +cesseriez cesser ver 68.11 177.77 0.06 0.20 cnd:pre:2p; +cesserons cesser ver 68.11 177.77 0.21 0.20 ind:fut:1p; +cesseront cesser ver 68.11 177.77 0.72 0.68 ind:fut:3p; +cesses cesser ver 68.11 177.77 0.91 0.54 ind:pre:2s; +cessez_le_feu cessez_le_feu nom m 1.54 0.41 1.54 0.41 +cessez cesser ver 68.11 177.77 15.24 1.82 imp:pre:2p;ind:pre:2p; +cessiez cesser ver 68.11 177.77 0.50 0.14 ind:imp:2p; +cession cession nom f s 0.22 0.47 0.22 0.34 +cessionnaire cessionnaire nom m s 0.01 0.00 0.01 0.00 +cessions cesser ver 68.11 177.77 0.27 0.74 ind:imp:1p; +cessâmes cesser ver 68.11 177.77 0.01 0.20 ind:pas:1p; +cessons cesser ver 68.11 177.77 1.17 0.81 imp:pre:1p;ind:pre:1p; +cessât cesser ver 68.11 177.77 0.00 1.28 sub:imp:3s; +cessèrent cesser ver 68.11 177.77 0.15 4.19 ind:pas:3p; +cessé cesser ver m s 68.11 177.77 13.89 61.22 par:pas; +cessée cesser ver f s 68.11 177.77 0.02 0.00 par:pas; +ceste ceste nom m s 0.00 0.07 0.00 0.07 +cet cet adj_dem m s 499.91 497.50 499.91 497.50 +cette cette adj_dem f s 1902.27 2320.68 1902.27 2320.68 +ceux_ci ceux_ci pro_dem m p 4.26 20.95 4.26 20.95 +ceux_là ceux_là pro_dem m p 14.65 25.81 14.65 25.81 +ceux ceux pro_dem m p 202.02 309.86 202.02 309.86 +ch_timi ch_timi adj s 0.27 0.07 0.27 0.00 +ch_timi ch_timi nom p 0.14 0.20 0.00 0.07 +chômage chômage nom m s 12.50 5.41 12.50 5.41 +chômaient chômer ver 1.05 1.35 0.00 0.20 ind:imp:3p; +chômait chômer ver 1.05 1.35 0.01 0.34 ind:imp:3s; +chôme chômer ver 1.05 1.35 0.18 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chômedu chômedu nom m s 0.04 0.47 0.04 0.47 +chôment chômer ver 1.05 1.35 0.03 0.07 ind:pre:3p; +chômer chômer ver 1.05 1.35 0.37 0.20 inf; +chômerez chômer ver 1.05 1.35 0.10 0.00 ind:fut:2p; +chômeur chômeur nom m s 4.54 4.39 2.23 2.16 +chômeurs chômeur nom m p 4.54 4.39 2.02 2.09 +chômeuse chômeur nom f s 4.54 4.39 0.27 0.14 +chômeuses chômeur nom f p 4.54 4.39 0.01 0.00 +chômez chômer ver 1.05 1.35 0.12 0.00 ind:pre:2p; +chômé chômer ver m s 1.05 1.35 0.24 0.41 par:pas; +chômée chômé adj f s 0.02 0.27 0.01 0.00 +chômés chômé adj m p 0.02 0.27 0.00 0.07 +cha_cha_cha cha_cha_cha nom m s 0.61 0.20 0.61 0.20 +chaîne chaîne nom f s 38.80 57.77 28.40 43.24 +chaînes chaîne nom f p 38.80 57.77 10.40 14.53 +chaînette chaînette nom f s 0.26 2.77 0.25 2.16 +chaînettes chaînette nom f p 0.26 2.77 0.01 0.61 +chaînon chaînon nom m s 0.70 0.68 0.67 0.47 +chaînons chaînon nom m p 0.70 0.68 0.04 0.20 +chaîné chaîner ver m s 0.00 0.07 0.00 0.07 par:pas; +chabanais chabanais nom s 0.00 0.14 0.00 0.14 +chabichou chabichou nom m s 0.00 0.27 0.00 0.27 +chabler chabler ver 0.00 0.07 0.00 0.07 inf; +chablis chablis nom m 0.09 0.07 0.09 0.07 +chaboisseaux chaboisseau nom m p 0.00 0.07 0.00 0.07 +chabot chabot nom m s 0.14 0.07 0.14 0.00 +chabots chabot nom m p 0.14 0.07 0.01 0.07 +chabraque chabraque nom f s 0.00 0.41 0.00 0.41 +chabrot chabrot nom m s 0.27 0.14 0.27 0.14 +chacal chacal nom m s 3.02 2.57 1.16 1.55 +chacals chacal nom m p 3.02 2.57 1.86 1.01 +chachlik chachlik nom m s 0.10 0.07 0.10 0.07 +chaconne chaconne nom f s 0.00 0.07 0.00 0.07 +chacun chacun pro_ind m s 93.61 187.84 93.61 187.84 +chacune chacune pro_ind f s 12.20 35.95 12.20 35.95 +chafaud chafaud nom m s 0.00 0.14 0.00 0.07 +chafauds chafaud nom m p 0.00 0.14 0.00 0.07 +chafouin chafouin adj m s 0.04 1.15 0.03 0.41 +chafouine chafouin adj f s 0.04 1.15 0.01 0.61 +chafouins chafouin adj m p 0.04 1.15 0.00 0.14 +chagatte chagatte nom f s 0.21 0.88 0.19 0.68 +chagattes chagatte nom f p 0.21 0.88 0.02 0.20 +chagrin chagrin nom m s 21.61 44.05 20.39 38.72 +chagrina chagriner ver 1.94 2.97 0.00 0.14 ind:pas:3s; +chagrinaient chagriner ver 1.94 2.97 0.00 0.07 ind:imp:3p; +chagrinait chagriner ver 1.94 2.97 0.00 0.88 ind:imp:3s; +chagrine chagriner ver 1.94 2.97 1.43 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chagrinent chagriner ver 1.94 2.97 0.02 0.07 ind:pre:3p; +chagriner chagriner ver 1.94 2.97 0.20 0.74 inf; +chagrinerait chagriner ver 1.94 2.97 0.05 0.00 cnd:pre:3s; +chagrines chagriner ver 1.94 2.97 0.14 0.00 ind:pre:2s; +chagrins chagrin nom m p 21.61 44.05 1.21 5.34 +chagriné chagriné adj m s 0.06 0.47 0.05 0.20 +chagrinée chagriner ver f s 1.94 2.97 0.04 0.14 par:pas; +chagrinés chagriné adj m p 0.06 0.47 0.01 0.14 +chah chah nom m s 0.04 0.00 0.04 0.00 +chahut chahut nom m s 1.28 2.70 1.27 2.30 +chahutaient chahuter ver 0.94 3.85 0.01 0.27 ind:imp:3p; +chahutais chahuter ver 0.94 3.85 0.00 0.14 ind:imp:1s; +chahutait chahuter ver 0.94 3.85 0.21 0.34 ind:imp:3s; +chahutant chahuter ver 0.94 3.85 0.01 0.47 par:pre; +chahute chahuter ver 0.94 3.85 0.08 0.27 ind:pre:1s;ind:pre:3s; +chahutent chahuter ver 0.94 3.85 0.15 0.20 ind:pre:3p; +chahuter chahuter ver 0.94 3.85 0.28 1.22 inf; +chahuteraient chahuter ver 0.94 3.85 0.00 0.07 cnd:pre:3p; +chahuteur chahuteur nom m s 0.09 0.41 0.07 0.14 +chahuteurs chahuteur nom m p 0.09 0.41 0.00 0.27 +chahuteuse chahuteur nom f s 0.09 0.41 0.01 0.00 +chahutez chahuter ver 0.94 3.85 0.04 0.00 imp:pre:2p;ind:pre:2p; +chahuts chahut nom m p 1.28 2.70 0.01 0.41 +chahutèrent chahuter ver 0.94 3.85 0.00 0.07 ind:pas:3p; +chahuté chahuter ver m s 0.94 3.85 0.14 0.41 par:pas; +chahutée chahuter ver f s 0.94 3.85 0.01 0.14 par:pas; +chahutées chahuter ver f p 0.94 3.85 0.00 0.07 par:pas; +chahutés chahuter ver m p 0.94 3.85 0.00 0.20 par:pas; +chai chai nom m s 0.21 1.62 0.11 0.27 +chair chair nom f s 37.07 101.69 36.01 90.81 +chaire chaire nom f s 1.46 5.74 1.46 5.47 +chaires chaire nom f p 1.46 5.74 0.00 0.27 +chairman chairman nom m s 0.03 0.27 0.03 0.27 +chairs chair nom f p 37.07 101.69 1.07 10.88 +chais chai nom m p 0.21 1.62 0.10 1.35 +chaise chaise nom f s 40.02 118.31 32.70 86.35 +chaises chaise nom f p 40.02 118.31 7.33 31.96 +chaisière chaisier nom f s 0.00 0.68 0.00 0.54 +chaisières chaisier nom f p 0.00 0.68 0.00 0.14 +chaix chaix nom m 0.00 0.27 0.00 0.27 +chaland chaland nom m s 0.53 3.11 0.50 1.49 +chalands chaland nom m p 0.53 3.11 0.03 1.62 +chalazions chalazion nom m p 0.00 0.07 0.00 0.07 +chaldaïques chaldaïque adj m p 0.00 0.07 0.00 0.07 +chaldéen chaldéen nom m s 0.03 0.20 0.01 0.00 +chaldéens chaldéen nom m p 0.03 0.20 0.02 0.20 +chalet chalet nom m s 4.38 8.11 3.92 7.16 +chalets chalet nom m p 4.38 8.11 0.46 0.95 +chaleur chaleur nom f s 39.13 116.22 38.77 112.23 +chaleureuse chaleureux adj f s 5.72 11.55 1.29 4.32 +chaleureusement chaleureusement adv 1.46 1.89 1.46 1.89 +chaleureuses chaleureux adj f p 5.72 11.55 0.47 1.01 +chaleureux chaleureux adj m 5.72 11.55 3.96 6.22 +chaleurs chaleur nom f p 39.13 116.22 0.36 3.99 +challenge challenge nom m s 1.69 0.27 1.41 0.27 +challenger challenger nom m s 1.47 0.47 0.94 0.41 +challengers challenger nom m p 1.47 0.47 0.53 0.07 +challenges challenge nom m p 1.69 0.27 0.29 0.00 +challengeur challengeur nom m s 0.01 0.00 0.01 0.00 +chalon chalon nom m s 0.14 2.64 0.14 2.57 +chalonnaises chalonnais adj f p 0.00 0.07 0.00 0.07 +chalons chalon nom m p 0.14 2.64 0.00 0.07 +chaloupait chalouper ver 0.01 1.01 0.00 0.14 ind:imp:3s; +chaloupant chalouper ver 0.01 1.01 0.00 0.20 par:pre; +chaloupe chaloupe nom f s 0.82 2.50 0.73 1.89 +chalouper chalouper ver 0.01 1.01 0.00 0.07 inf; +chaloupes chaloupe nom f p 0.82 2.50 0.09 0.61 +chaloupé chalouper ver m s 0.01 1.01 0.00 0.20 par:pas; +chaloupée chaloupé adj f s 0.01 0.74 0.01 0.54 +chaloupées chalouper ver f p 0.01 1.01 0.00 0.07 par:pas; +chaloupés chalouper ver m p 0.01 1.01 0.00 0.07 par:pas; +chalumeau chalumeau nom m s 1.63 2.70 1.59 2.36 +chalumeaux chalumeau nom m p 1.63 2.70 0.03 0.34 +chalut chalut nom m s 0.04 0.27 0.04 0.20 +chalutier_patrouilleur chalutier_patrouilleur nom m s 0.00 0.07 0.00 0.07 +chalutier chalutier nom m s 1.13 3.18 0.66 1.28 +chalutiers chalutier nom m p 1.13 3.18 0.47 1.89 +chaluts chalut nom m p 0.04 0.27 0.00 0.07 +chamade chamade nom f s 0.75 1.35 0.75 1.35 +chamaillaient chamailler ver 2.11 3.45 0.05 0.88 ind:imp:3p; +chamaillait chamailler ver 2.11 3.45 0.03 0.34 ind:imp:3s; +chamaillant chamailler ver 2.11 3.45 0.04 0.07 par:pre; +chamaille chamailler ver 2.11 3.45 0.21 0.14 ind:pre:1s;ind:pre:3s; +chamaillent chamailler ver 2.11 3.45 0.13 0.47 ind:pre:3p; +chamailler chamailler ver 2.11 3.45 1.22 1.08 inf; +chamaillerie chamaillerie nom f s 0.77 0.61 0.00 0.07 +chamailleries chamaillerie nom f p 0.77 0.61 0.77 0.54 +chamailleur chamailleur adj m s 0.01 0.20 0.01 0.00 +chamailleurs chamailleur adj m p 0.01 0.20 0.00 0.14 +chamailleuse chamailleur adj f s 0.01 0.20 0.00 0.07 +chamaillez chamailler ver 2.11 3.45 0.22 0.07 imp:pre:2p;ind:pre:2p; +chamaillions chamailler ver 2.11 3.45 0.00 0.07 ind:imp:1p; +chamaillis chamaillis nom m 0.00 0.07 0.00 0.07 +chamaillons chamailler ver 2.11 3.45 0.13 0.00 ind:pre:1p; +chamaillèrent chamailler ver 2.11 3.45 0.00 0.07 ind:pas:3p; +chamaillé chamailler ver m s 2.11 3.45 0.02 0.00 par:pas; +chamaillés chamailler ver m p 2.11 3.45 0.08 0.27 par:pas; +chaman chaman nom m s 1.03 0.41 0.97 0.20 +chamane chamane nom m s 0.04 0.14 0.02 0.07 +chamanes chamane nom m p 0.04 0.14 0.01 0.07 +chamanisme chamanisme nom m s 0.04 0.14 0.04 0.14 +chamans chaman nom m p 1.03 0.41 0.06 0.20 +chamarré chamarré adj m s 0.14 1.82 0.14 0.81 +chamarrée chamarré adj f s 0.14 1.82 0.01 0.27 +chamarrées chamarré adj f p 0.14 1.82 0.00 0.14 +chamarrures chamarrure nom f p 0.00 0.07 0.00 0.07 +chamarrés chamarré adj m p 0.14 1.82 0.00 0.61 +chambard chambard nom m s 0.22 0.20 0.22 0.20 +chambarda chambarder ver 0.02 0.34 0.00 0.07 ind:pas:3s; +chambardait chambarder ver 0.02 0.34 0.00 0.07 ind:imp:3s; +chambardement chambardement nom m s 0.17 0.68 0.17 0.61 +chambardements chambardement nom m p 0.17 0.68 0.00 0.07 +chambarder chambarder ver 0.02 0.34 0.02 0.07 inf; +chambardé chambarder ver m s 0.02 0.34 0.00 0.07 par:pas; +chambardée chambarder ver f s 0.02 0.34 0.00 0.07 par:pas; +chambellan chambellan nom m s 0.55 0.88 0.53 0.61 +chambellans chambellan nom m p 0.55 0.88 0.02 0.27 +chambertin chambertin nom m s 0.04 0.68 0.04 0.61 +chambertins chambertin nom m p 0.04 0.68 0.00 0.07 +chamboulaient chambouler ver 2.76 2.23 0.00 0.14 ind:imp:3p; +chamboulait chambouler ver 2.76 2.23 0.00 0.14 ind:imp:3s; +chamboulant chambouler ver 2.76 2.23 0.01 0.07 par:pre; +chamboule chambouler ver 2.76 2.23 0.41 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chamboulement chamboulement nom m s 0.04 0.20 0.03 0.20 +chamboulements chamboulement nom m p 0.04 0.20 0.01 0.00 +chamboulent chambouler ver 2.76 2.23 0.17 0.00 ind:pre:3p; +chambouler chambouler ver 2.76 2.23 0.58 0.54 inf; +chambouleras chambouler ver 2.76 2.23 0.00 0.07 ind:fut:2s; +chamboulez chambouler ver 2.76 2.23 0.03 0.00 imp:pre:2p;ind:pre:2p; +chamboulât chambouler ver 2.76 2.23 0.00 0.07 sub:imp:3s; +chamboulé chambouler ver m s 2.76 2.23 0.85 0.34 par:pas; +chamboulée chambouler ver f s 2.76 2.23 0.51 0.68 par:pas; +chamboulées chambouler ver f p 2.76 2.23 0.16 0.07 par:pas; +chamboulés chambouler ver m p 2.76 2.23 0.04 0.07 par:pas; +chambra chambrer ver 1.50 3.31 0.02 0.14 ind:pas:3s; +chambrais chambrer ver 1.50 3.31 0.00 0.07 ind:imp:1s; +chambrait chambrer ver 1.50 3.31 0.00 0.20 ind:imp:3s; +chambranle chambranle nom m s 0.09 4.26 0.09 4.12 +chambranles chambranle nom m p 0.09 4.26 0.00 0.14 +chambrant chambrer ver 1.50 3.31 0.00 0.27 par:pre; +chambre_salon chambre_salon nom f s 0.00 0.07 0.00 0.07 +chambre chambre nom f s 288.64 413.31 263.93 380.07 +chambrent chambrer ver 1.50 3.31 0.01 0.14 ind:pre:3p; +chambrer chambrer ver 1.50 3.31 0.39 0.41 inf; +chambres chambre nom f p 288.64 413.31 24.71 33.24 +chambrette chambrette nom f s 0.24 2.50 0.24 2.50 +chambrez chambrer ver 1.50 3.31 0.01 0.00 ind:pre:2p; +chambrière chambrière nom f s 0.01 1.35 0.01 0.81 +chambrières chambrière nom f p 0.01 1.35 0.00 0.54 +chambré chambrer ver m s 1.50 3.31 0.02 0.61 par:pas; +chambrée chambrée nom f s 0.98 1.89 0.64 1.62 +chambrées chambrée nom f p 0.98 1.89 0.34 0.27 +chameau chameau nom m s 10.87 10.54 7.21 5.41 +chameaux chameau nom m p 10.87 10.54 3.34 4.73 +chamelier chamelier nom m s 0.12 0.41 0.11 0.20 +chameliers chamelier nom m p 0.12 0.41 0.01 0.20 +chamelle chameau nom f s 10.87 10.54 0.32 0.27 +chamelles chamelle nom f p 0.12 0.00 0.12 0.00 +chamois chamois nom m 0.61 2.57 0.61 2.57 +chamoisine chamoisine nom f s 0.00 0.07 0.00 0.07 +champ champ nom m s 57.22 106.49 0.04 1.76 +champ champ nom m s 57.22 106.49 38.05 51.76 +champagne champagne nom m s 32.49 29.86 32.38 29.86 +champagnes champagne nom m p 32.49 29.86 0.12 0.00 +champagnisés champagniser ver m p 0.00 0.07 0.00 0.07 par:pas; +champenois champenois nom m 0.00 4.19 0.00 4.12 +champenoise champenois adj f s 0.00 1.62 0.00 0.34 +champenoises champenois nom f p 0.00 4.19 0.00 0.07 +champi champi nom m s 0.02 0.14 0.00 0.14 +champignon champignon nom m s 11.03 12.97 3.34 3.99 +champignonnaient champignonner ver 0.00 0.27 0.00 0.07 ind:imp:3p; +champignonnait champignonner ver 0.00 0.27 0.00 0.07 ind:imp:3s; +champignonne champignonner ver 0.00 0.27 0.00 0.07 ind:pre:3s; +champignonnent champignonner ver 0.00 0.27 0.00 0.07 ind:pre:3p; +champignonnière champignonnière nom f s 0.01 0.34 0.01 0.27 +champignonnières champignonnière nom f p 0.01 0.34 0.00 0.07 +champignons champignon nom m p 11.03 12.97 7.69 8.99 +champion champion nom m s 34.90 15.07 27.69 10.81 +championnat championnat nom m s 8.24 2.97 6.87 2.57 +championnats championnat nom m p 8.24 2.97 1.38 0.41 +championne champion nom f s 34.90 15.07 2.46 1.08 +championnes championne nom f p 0.12 0.00 0.12 0.00 +champions champion nom m p 34.90 15.07 4.75 2.97 +champis champi nom m p 0.02 0.14 0.02 0.00 +champs_élysées champs_élysées nom m p 0.00 0.14 0.00 0.14 +champs champ nom m p 57.22 106.49 19.14 52.97 +champêtre champêtre adj s 0.70 6.01 0.47 4.66 +champêtres champêtre adj p 0.70 6.01 0.23 1.35 +chance chance nom s 360.60 136.35 334.02 114.05 +chancel chancel nom m s 0.01 0.00 0.01 0.00 +chancela chanceler ver 1.06 7.50 0.00 1.08 ind:pas:3s; +chancelai chanceler ver 1.06 7.50 0.00 0.07 ind:pas:1s; +chancelaient chanceler ver 1.06 7.50 0.00 0.07 ind:imp:3p; +chancelais chanceler ver 1.06 7.50 0.01 0.14 ind:imp:1s; +chancelait chanceler ver 1.06 7.50 0.03 1.69 ind:imp:3s; +chancelant chanceler ver 1.06 7.50 0.29 0.88 par:pre; +chancelante chancelant adj f s 0.23 2.23 0.04 1.08 +chancelantes chancelant adj f p 0.23 2.23 0.01 0.27 +chancelants chancelant adj m p 0.23 2.23 0.14 0.27 +chanceler chanceler ver 1.06 7.50 0.14 1.22 inf; +chancelier chancelier nom m s 3.08 2.03 2.97 1.69 +chanceliers chancelier nom m p 3.08 2.03 0.11 0.20 +chancelions chanceler ver 1.06 7.50 0.00 0.07 ind:imp:1p; +chancelière chancelière nom f s 0.06 0.00 0.06 0.00 +chancelières chancelier nom f p 3.08 2.03 0.00 0.14 +chancelle chanceler ver 1.06 7.50 0.56 1.28 ind:pre:1s;ind:pre:3s; +chancellent chanceler ver 1.06 7.50 0.02 0.27 ind:pre:3p; +chancellerie chancellerie nom f s 1.21 2.70 1.20 1.69 +chancelleries chancellerie nom f p 1.21 2.70 0.01 1.01 +chancelèrent chanceler ver 1.06 7.50 0.00 0.20 ind:pas:3p; +chancelé chanceler ver m s 1.06 7.50 0.01 0.54 par:pas; +chances chance nom f p 360.60 136.35 26.58 22.30 +chanceuse chanceux adj f s 12.88 1.08 2.49 0.27 +chanceuses chanceux adj f p 12.88 1.08 0.15 0.07 +chanceux chanceux adj m 12.88 1.08 10.24 0.74 +chanci chancir ver m s 0.00 0.14 0.00 0.14 par:pas; +chancre chancre nom m s 0.83 1.08 0.53 0.74 +chancres chancre nom m p 0.83 1.08 0.30 0.34 +chand chand nom m s 0.00 0.14 0.00 0.14 +chandail chandail nom m s 0.82 14.19 0.63 11.42 +chandails chandail nom m p 0.82 14.19 0.19 2.77 +chandeleur chandeleur nom f s 0.52 0.47 0.52 0.47 +chandelier chandelier nom m s 1.71 4.12 1.36 1.82 +chandeliers chandelier nom m p 1.71 4.12 0.34 2.30 +chandelle chandelle nom f s 5.15 12.57 3.51 7.91 +chandelles chandelle nom f p 5.15 12.57 1.64 4.66 +chanfrein chanfrein nom m s 0.00 0.54 0.00 0.54 +chanfreinée chanfreiner ver f s 0.00 0.07 0.00 0.07 par:pas; +change changer ver 411.98 246.49 67.83 30.20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +changea changer ver 411.98 246.49 2.04 12.43 ind:pas:3s; +changeai changer ver 411.98 246.49 0.04 0.61 ind:pas:1s; +changeaient changer ver 411.98 246.49 0.44 4.12 ind:imp:3p; +changeais changer ver 411.98 246.49 1.56 1.89 ind:imp:1s;ind:imp:2s; +changeait changer ver 411.98 246.49 3.30 18.11 ind:imp:3s; +changeant changer ver 411.98 246.49 1.38 6.15 par:pre; +changeante changeant adj f s 1.60 5.47 0.36 1.96 +changeantes changeant adj f p 1.60 5.47 0.02 0.61 +changeants changeant adj m p 1.60 5.47 0.03 1.01 +changeas changer ver 411.98 246.49 0.01 0.00 ind:pas:2s; +changement changement nom m s 37.70 36.42 27.00 26.28 +changements changement nom m p 37.70 36.42 10.70 10.14 +changent changer ver 411.98 246.49 12.39 5.34 ind:pre:3p; +changeâmes changer ver 411.98 246.49 0.00 0.27 ind:pas:1p; +changeons changer ver 411.98 246.49 2.74 0.68 imp:pre:1p;ind:pre:1p; +changeât changer ver 411.98 246.49 0.00 0.81 sub:imp:3s; +changer changer ver 411.98 246.49 140.49 72.30 inf;; +changera changer ver 411.98 246.49 16.54 5.07 ind:fut:3s; +changerai changer ver 411.98 246.49 3.15 0.74 ind:fut:1s; +changeraient changer ver 411.98 246.49 0.23 0.61 cnd:pre:3p; +changerais changer ver 411.98 246.49 1.92 0.88 cnd:pre:1s;cnd:pre:2s; +changerait changer ver 411.98 246.49 6.29 4.32 cnd:pre:3s; +changeras changer ver 411.98 246.49 2.92 0.81 ind:fut:2s; +changerez changer ver 411.98 246.49 1.29 0.07 ind:fut:2p; +changeriez changer ver 411.98 246.49 0.29 0.00 cnd:pre:2p; +changerons changer ver 411.98 246.49 0.58 0.27 ind:fut:1p; +changeront changer ver 411.98 246.49 1.65 1.01 ind:fut:3p; +changes changer ver 411.98 246.49 9.22 1.82 ind:pre:2s; +changeur changeur nom m s 0.47 0.61 0.42 0.41 +changeurs changeur nom m p 0.47 0.61 0.03 0.20 +changeuse changeur nom f s 0.47 0.61 0.02 0.00 +changez changer ver 411.98 246.49 10.18 1.28 imp:pre:2p;ind:pre:2p; +changiez changer ver 411.98 246.49 0.80 0.14 ind:imp:2p; +changions changer ver 411.98 246.49 0.03 0.27 ind:imp:1p; +changèrent changer ver 411.98 246.49 0.38 0.95 ind:pas:3p; +changé changer ver m s 411.98 246.49 117.83 68.85 par:pas; +changée changer ver f s 411.98 246.49 3.94 4.32 par:pas; +changées changer ver f p 411.98 246.49 1.01 0.68 par:pas; +changés changer ver m p 411.98 246.49 1.52 1.49 par:pas; +chanoine chanoine nom m s 0.44 11.96 0.43 11.28 +chanoines chanoine nom m p 0.44 11.96 0.01 0.68 +chanoinesse chanoinesse nom f s 0.00 0.54 0.00 0.27 +chanoinesses chanoinesse nom f p 0.00 0.54 0.00 0.27 +chanson chanson nom f s 84.92 46.55 64.50 26.15 +chansonner chansonner ver 0.01 0.00 0.01 0.00 inf; +chansonnette chansonnette nom f s 1.25 2.43 1.00 1.69 +chansonnettes chansonnette nom f p 1.25 2.43 0.25 0.74 +chansonnier chansonnier nom m s 0.03 1.62 0.03 0.61 +chansonniers chansonnier nom m p 0.03 1.62 0.00 1.01 +chansons chanson nom f p 84.92 46.55 20.42 20.41 +chanstiquait chanstiquer ver 0.00 1.22 0.00 0.07 ind:imp:3s; +chanstique chanstiquer ver 0.00 1.22 0.00 0.41 ind:pre:1s;ind:pre:3s; +chanstiquent chanstiquer ver 0.00 1.22 0.00 0.07 ind:pre:3p; +chanstiquer chanstiquer ver 0.00 1.22 0.00 0.20 inf; +chanstiquèrent chanstiquer ver 0.00 1.22 0.00 0.07 ind:pas:3p; +chanstiqué chanstiquer ver m s 0.00 1.22 0.00 0.34 par:pas; +chanstiquée chanstiquer ver f s 0.00 1.22 0.00 0.07 par:pas; +chant chant nom m s 25.90 42.03 17.64 28.38 +chanta chanter ver 166.34 125.81 0.43 6.62 ind:pas:3s; +chantage chantage nom m s 8.51 7.64 8.50 7.43 +chantages chantage nom m p 8.51 7.64 0.01 0.20 +chantai chanter ver 166.34 125.81 0.00 0.14 ind:pas:1s; +chantaient chanter ver 166.34 125.81 1.98 8.24 ind:imp:3p; +chantais chanter ver 166.34 125.81 3.56 1.22 ind:imp:1s;ind:imp:2s; +chantait chanter ver 166.34 125.81 8.76 22.57 ind:imp:3s; +chantant chanter ver 166.34 125.81 4.34 10.14 par:pre; +chantante chantant adj f s 1.03 7.36 0.23 3.24 +chantantes chantant adj f p 1.03 7.36 0.02 0.68 +chantants chantant adj m p 1.03 7.36 0.21 0.47 +chante chanter ver 166.34 125.81 56.16 18.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chanteau chanteau nom m s 0.00 0.14 0.00 0.14 +chantent chanter ver 166.34 125.81 7.10 7.70 ind:pre:3p; +chanter chanter ver 166.34 125.81 48.12 34.26 inf; +chantera chanter ver 166.34 125.81 2.39 0.68 ind:fut:3s; +chanterai chanter ver 166.34 125.81 1.31 0.41 ind:fut:1s; +chanteraient chanter ver 166.34 125.81 0.09 0.20 cnd:pre:3p; +chanterais chanter ver 166.34 125.81 0.50 0.07 cnd:pre:1s;cnd:pre:2s; +chanterait chanter ver 166.34 125.81 0.31 0.74 cnd:pre:3s; +chanteras chanter ver 166.34 125.81 0.79 0.07 ind:fut:2s; +chanterelle chanterelle nom f s 0.05 0.27 0.01 0.14 +chanterelles chanterelle nom f p 0.05 0.27 0.04 0.14 +chanterez chanter ver 166.34 125.81 0.45 0.14 ind:fut:2p; +chanteriez chanter ver 166.34 125.81 0.04 0.00 cnd:pre:2p; +chanterons chanter ver 166.34 125.81 0.25 0.00 ind:fut:1p; +chanteront chanter ver 166.34 125.81 0.46 0.27 ind:fut:3p; +chantes chanter ver 166.34 125.81 6.97 2.09 ind:pre:2s; +chanteur chanteur nom m s 20.25 20.07 9.80 9.19 +chanteurs chanteur nom m p 20.25 20.07 2.65 4.93 +chanteuse_vedette chanteuse_vedette nom f s 0.00 0.07 0.00 0.07 +chanteuse chanteur nom f s 20.25 20.07 7.81 4.39 +chanteuses chanteuse nom f p 0.91 0.00 0.91 0.00 +chantez chanter ver 166.34 125.81 8.26 0.74 imp:pre:2p;ind:pre:2p; +chançard chançard nom m s 0.17 0.07 0.16 0.07 +chançarde chançard nom f s 0.17 0.07 0.01 0.00 +chantier chantier nom m s 12.96 22.50 9.93 15.14 +chantiers chantier nom m p 12.96 22.50 3.03 7.36 +chantiez chanter ver 166.34 125.81 0.81 0.00 ind:imp:2p; +chantilly chantilly nom f s 0.59 0.74 0.59 0.74 +chantions chanter ver 166.34 125.81 0.24 0.95 ind:imp:1p; +chantâmes chanter ver 166.34 125.81 0.00 0.14 ind:pas:1p; +chantonna chantonner ver 2.84 14.86 0.00 2.43 ind:pas:3s; +chantonnai chantonner ver 2.84 14.86 0.00 0.07 ind:pas:1s; +chantonnaient chantonner ver 2.84 14.86 0.00 0.41 ind:imp:3p; +chantonnais chantonner ver 2.84 14.86 0.01 0.14 ind:imp:1s; +chantonnait chantonner ver 2.84 14.86 0.02 3.65 ind:imp:3s; +chantonnant chantonner ver 2.84 14.86 0.03 2.57 par:pre; +chantonnante chantonnant adj f s 0.00 0.41 0.00 0.20 +chantonne chantonner ver 2.84 14.86 2.27 2.50 imp:pre:2s;ind:pre:3s;sub:pre:3s; +chantonnement chantonnement nom m s 0.00 0.74 0.00 0.74 +chantonnent chantonner ver 2.84 14.86 0.14 0.34 ind:pre:3p; +chantonner chantonner ver 2.84 14.86 0.35 2.23 inf; +chantonnèrent chantonner ver 2.84 14.86 0.00 0.07 ind:pas:3p; +chantonné chantonner ver m s 2.84 14.86 0.03 0.34 par:pas; +chantonnée chantonner ver f s 2.84 14.86 0.00 0.07 par:pas; +chantonnés chantonner ver m p 2.84 14.86 0.00 0.07 par:pas; +chantons chanter ver 166.34 125.81 3.98 0.54 imp:pre:1p;ind:pre:1p; +chantât chanter ver 166.34 125.81 0.00 0.27 sub:imp:3s; +chantoung chantoung nom m s 0.00 0.20 0.00 0.20 +chantourner chantourner ver 0.00 0.68 0.00 0.07 inf; +chantourné chantourner ver m s 0.00 0.68 0.00 0.14 par:pas; +chantournées chantourner ver f p 0.00 0.68 0.00 0.27 par:pas; +chantournés chantourner ver m p 0.00 0.68 0.00 0.20 par:pas; +chantre chantre nom m s 0.46 1.82 0.44 1.35 +chantrerie chantrerie nom f s 0.01 0.00 0.01 0.00 +chantres chantre nom m p 0.46 1.82 0.02 0.47 +chants chant nom m p 25.90 42.03 8.26 13.65 +chantèrent chanter ver 166.34 125.81 0.17 0.95 ind:pas:3p; +chanté chanter ver m s 166.34 125.81 7.81 6.15 par:pas; +chantée chanter ver f s 166.34 125.81 0.94 1.01 par:pas; +chantées chanter ver f p 166.34 125.81 0.06 0.81 par:pas; +chantés chanter ver m p 166.34 125.81 0.08 0.27 par:pas; +chanvre chanvre nom m s 0.77 2.91 0.77 2.84 +chanvres chanvre nom m p 0.77 2.91 0.00 0.07 +chao chao adv 0.15 0.07 0.15 0.07 +chaos chaos nom m 11.30 10.20 11.30 10.20 +chaotique chaotique adj s 0.95 2.57 0.76 1.89 +chaotiquement chaotiquement adv 0.00 0.07 0.00 0.07 +chaotiques chaotique adj p 0.95 2.57 0.20 0.68 +chaouch chaouch nom m s 0.00 0.54 0.00 0.34 +chaouchs chaouch nom m p 0.00 0.54 0.00 0.20 +chaparda chaparder ver 0.16 1.28 0.00 0.07 ind:pas:3s; +chapardage chapardage nom m s 0.09 0.27 0.06 0.07 +chapardages chapardage nom m p 0.09 0.27 0.02 0.20 +chapardait chaparder ver 0.16 1.28 0.01 0.14 ind:imp:3s; +chapardant chaparder ver 0.16 1.28 0.01 0.00 par:pre; +chapardent chaparder ver 0.16 1.28 0.01 0.14 ind:pre:3p; +chaparder chaparder ver 0.16 1.28 0.08 0.74 inf; +chapardeur chapardeur nom m s 0.07 0.68 0.02 0.20 +chapardeurs chapardeur nom m p 0.07 0.68 0.03 0.41 +chapardeuse chapardeur nom f s 0.07 0.68 0.02 0.07 +chapardé chaparder ver m s 0.16 1.28 0.04 0.07 par:pas; +chapardée chaparder ver f s 0.16 1.28 0.00 0.07 par:pas; +chapardées chaparder ver f p 0.16 1.28 0.00 0.07 par:pas; +chaparral chaparral nom m s 0.12 0.00 0.10 0.00 +chaparrals chaparral nom m p 0.12 0.00 0.02 0.00 +chape chape nom f s 0.10 2.23 0.10 2.16 +chapeau chapeau nom m s 54.91 88.04 48.61 72.91 +chapeautait chapeauter ver 0.08 1.08 0.01 0.07 ind:imp:3s; +chapeaute chapeauter ver 0.08 1.08 0.04 0.14 ind:pre:1s;ind:pre:3s; +chapeauter chapeauter ver 0.08 1.08 0.01 0.07 inf; +chapeauté chapeauté adj m s 0.01 0.95 0.01 0.14 +chapeautée chapeauter ver f s 0.08 1.08 0.02 0.27 par:pas; +chapeautées chapeauté adj f p 0.01 0.95 0.00 0.20 +chapeautés chapeauté adj m p 0.01 0.95 0.00 0.20 +chapeaux chapeau nom m p 54.91 88.04 6.29 15.14 +chapelain chapelain nom m s 0.21 0.74 0.21 0.61 +chapelains chapelain nom m p 0.21 0.74 0.00 0.14 +chapelet chapelet nom m s 1.91 12.91 1.54 9.73 +chapelets chapelet nom m p 1.91 12.91 0.37 3.18 +chapelier chapelier nom m s 0.24 0.88 0.23 0.61 +chapeliers chapelier nom m p 0.24 0.88 0.01 0.27 +chapelle chapelle nom f s 7.42 35.88 7.37 32.36 +chapellerie chapellerie nom f s 0.00 0.20 0.00 0.20 +chapelles chapelle nom f p 7.42 35.88 0.05 3.51 +chapelure chapelure nom f s 0.31 0.54 0.31 0.47 +chapelures chapelure nom f p 0.31 0.54 0.00 0.07 +chaperon chaperon nom m s 3.84 1.35 3.71 1.22 +chaperonnais chaperonner ver 0.28 0.54 0.01 0.07 ind:imp:1s; +chaperonnait chaperonner ver 0.28 0.54 0.01 0.20 ind:imp:3s; +chaperonner chaperonner ver 0.28 0.54 0.21 0.07 inf; +chaperonné chaperonner ver m s 0.28 0.54 0.03 0.07 par:pas; +chaperonnée chaperonner ver f s 0.28 0.54 0.01 0.07 par:pas; +chaperonnés chaperonner ver m p 0.28 0.54 0.01 0.07 par:pas; +chaperons chaperon nom m p 3.84 1.35 0.13 0.14 +chapes chape nom f p 0.10 2.23 0.00 0.07 +chapiteau chapiteau nom m s 1.84 3.45 1.83 1.96 +chapiteau_dortoir chapiteau_dortoir nom m p 0.00 0.07 0.00 0.07 +chapiteaux chapiteau nom m p 1.84 3.45 0.01 1.49 +chapitre chapitre nom m s 13.00 38.65 12.10 35.81 +chapitrer chapitrer ver 0.35 1.35 0.02 0.47 inf; +chapitres chapitre nom m p 13.00 38.65 0.91 2.84 +chapitré chapitrer ver m s 0.35 1.35 0.02 0.20 par:pas; +chapitrée chapitrer ver f s 0.35 1.35 0.01 0.14 par:pas; +chapitrées chapitrer ver f p 0.35 1.35 0.00 0.14 par:pas; +chapka chapka nom f s 0.23 1.15 0.23 1.15 +chaplinesque chaplinesque adj f s 0.00 0.14 0.00 0.14 +chapon chapon nom m s 1.16 0.41 0.58 0.20 +chapons chapon nom m p 1.16 0.41 0.58 0.20 +chappe chappe nom m s 0.00 0.20 0.00 0.20 +chapska chapska nom m s 0.00 0.20 0.00 0.14 +chapskas chapska nom m p 0.00 0.20 0.00 0.07 +chapés chapé adj m p 0.00 0.07 0.00 0.07 +chaque chaque adj_ind s 246.29 486.35 246.29 486.35 +char char nom m s 11.86 27.57 8.60 7.91 +charabia charabia nom m s 2.46 1.55 2.46 1.42 +charabias charabia nom m p 2.46 1.55 0.00 0.14 +charade charade nom f s 0.53 0.74 0.12 0.27 +charades charade nom f p 0.53 0.74 0.41 0.47 +charale charale nom f s 0.03 0.00 0.03 0.00 +charançon charançon nom m s 0.20 0.47 0.07 0.14 +charançonné charançonné adj m s 0.00 0.27 0.00 0.07 +charançonnée charançonné adj f s 0.00 0.27 0.00 0.07 +charançonnés charançonné adj m p 0.00 0.27 0.00 0.14 +charançons charançon nom m p 0.20 0.47 0.14 0.34 +charbon charbon nom m s 9.24 24.59 8.39 21.96 +charbonnages charbonnage nom m p 0.27 0.68 0.27 0.68 +charbonnaient charbonner ver 0.00 1.28 0.00 0.14 ind:imp:3p; +charbonnait charbonner ver 0.00 1.28 0.00 0.20 ind:imp:3s; +charbonne charbonner ver 0.00 1.28 0.00 0.27 ind:pre:3s; +charbonnent charbonner ver 0.00 1.28 0.00 0.14 ind:pre:3p; +charbonner charbonner ver 0.00 1.28 0.00 0.07 inf; +charbonnette charbonnette nom f s 0.00 0.14 0.00 0.14 +charbonneuse charbonneux adj f s 0.00 4.46 0.00 1.01 +charbonneuses charbonneux adj f p 0.00 4.46 0.00 0.95 +charbonneux charbonneux adj m 0.00 4.46 0.00 2.50 +charbonnier charbonnier adj m s 0.13 0.95 0.10 0.61 +charbonniers charbonnier nom m p 0.04 2.36 0.03 1.01 +charbonnière charbonnier adj f s 0.13 0.95 0.02 0.34 +charbonnières charbonnière nom f p 0.00 0.47 0.00 0.14 +charbonné charbonner ver m s 0.00 1.28 0.00 0.14 par:pas; +charbonnées charbonner ver f p 0.00 1.28 0.00 0.14 par:pas; +charbonnés charbonner ver m p 0.00 1.28 0.00 0.20 par:pas; +charbons charbon nom m p 9.24 24.59 0.85 2.64 +charca charca nom s 0.00 0.47 0.00 0.47 +charcutage charcutage nom m s 0.04 0.14 0.04 0.14 +charcutaient charcuter ver 1.15 1.15 0.00 0.14 ind:imp:3p; +charcutaille charcutaille nom f s 0.01 0.27 0.01 0.27 +charcutait charcuter ver 1.15 1.15 0.03 0.07 ind:imp:3s; +charcute charcuter ver 1.15 1.15 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +charcuter charcuter ver 1.15 1.15 0.60 0.47 inf; +charcuterie charcuterie nom f s 0.94 5.20 0.81 4.32 +charcuteries charcuterie nom f p 0.94 5.20 0.14 0.88 +charcutez charcuter ver 1.15 1.15 0.01 0.14 imp:pre:2p;ind:pre:2p; +charcutier charcutier nom m s 0.04 4.73 0.03 2.70 +charcutiers charcutier nom m p 0.04 4.73 0.01 0.81 +charcutière charcutier nom f s 0.04 4.73 0.00 0.95 +charcutières charcutier nom f p 0.04 4.73 0.00 0.27 +charcuté charcuter ver m s 1.15 1.15 0.20 0.00 par:pas; +charcutée charcuter ver f s 1.15 1.15 0.05 0.07 par:pas; +charcutées charcuter ver f p 1.15 1.15 0.01 0.07 par:pas; +charcutés charcuter ver m p 1.15 1.15 0.00 0.07 par:pas; +chardon chardon nom m s 0.28 3.38 0.20 1.01 +chardonay chardonay nom m s 0.04 0.00 0.04 0.00 +chardonnay chardonnay nom m s 0.41 0.00 0.41 0.00 +chardonneret chardonneret nom m s 0.10 0.34 0.00 0.07 +chardonnerets chardonneret nom m p 0.10 0.34 0.10 0.27 +chardons chardon nom m p 0.28 3.38 0.08 2.36 +charentaise charentais nom f s 0.01 2.09 0.00 0.07 +charentaises charentais nom f p 0.01 2.09 0.01 2.03 +charge charger ver 93.02 122.16 28.43 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +chargea charger ver 93.02 122.16 0.24 4.46 ind:pas:3s; +chargeai charger ver 93.02 122.16 0.01 1.35 ind:pas:1s; +chargeaient charger ver 93.02 122.16 0.14 2.43 ind:imp:3p; +chargeais charger ver 93.02 122.16 0.43 0.47 ind:imp:1s;ind:imp:2s; +chargeait charger ver 93.02 122.16 0.68 7.16 ind:imp:3s; +chargeant charger ver 93.02 122.16 0.14 1.82 par:pre; +chargement chargement nom m s 7.14 6.42 6.37 5.68 +chargements chargement nom m p 7.14 6.42 0.78 0.74 +chargent charger ver 93.02 122.16 1.63 2.03 ind:pre:3p; +chargeons charger ver 93.02 122.16 0.53 0.14 imp:pre:1p;ind:pre:1p; +chargeât charger ver 93.02 122.16 0.00 0.34 sub:imp:3s; +charger charger ver 93.02 122.16 15.58 10.20 inf; +chargera charger ver 93.02 122.16 2.56 0.95 ind:fut:3s; +chargerai charger ver 93.02 122.16 1.92 0.68 ind:fut:1s; +chargeraient charger ver 93.02 122.16 0.14 0.68 cnd:pre:3p; +chargerais charger ver 93.02 122.16 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +chargerait charger ver 93.02 122.16 0.22 1.08 cnd:pre:3s; +chargeras charger ver 93.02 122.16 0.28 0.07 ind:fut:2s; +chargerez charger ver 93.02 122.16 0.37 0.07 ind:fut:2p; +chargerons charger ver 93.02 122.16 0.24 0.14 ind:fut:1p; +chargeront charger ver 93.02 122.16 0.39 0.34 ind:fut:3p; +charges charge nom f p 32.86 41.28 7.88 5.20 +chargeur chargeur nom m s 4.63 3.72 3.68 2.77 +chargeurs chargeur nom m p 4.63 3.72 0.95 0.95 +chargez charger ver 93.02 122.16 5.37 0.54 imp:pre:2p;ind:pre:2p; +chargiez charger ver 93.02 122.16 0.11 0.00 ind:imp:2p; +chargions charger ver 93.02 122.16 0.01 0.20 ind:imp:1p; +chargèrent charger ver 93.02 122.16 0.01 1.15 ind:pas:3p; +chargé charger ver m s 93.02 122.16 23.18 40.07 par:pas; +chargée charger ver f s 93.02 122.16 4.81 13.65 par:pas; +chargées charger ver f p 93.02 122.16 0.81 5.68 par:pas; +chargés charger ver m p 93.02 122.16 3.30 18.24 par:pas; +charia charia nom f s 0.01 0.00 0.01 0.00 +chariot chariot nom m s 14.40 14.12 12.12 8.45 +chariots chariot nom m p 14.40 14.12 2.28 5.68 +charismatique charismatique adj s 0.54 0.14 0.54 0.14 +charisme charisme nom m s 0.75 0.07 0.75 0.07 +charitable charitable adj s 4.16 3.78 2.90 2.70 +charitablement charitablement adv 0.01 0.47 0.01 0.47 +charitables charitable adj p 4.16 3.78 1.26 1.08 +charité charité nom f s 13.75 14.53 13.54 14.32 +charités charité nom f p 13.75 14.53 0.21 0.20 +charivari charivari nom m s 0.08 1.08 0.07 0.95 +charivaris charivari nom m p 0.08 1.08 0.01 0.14 +charlatan charlatan nom m s 4.44 1.08 3.07 0.47 +charlataner charlataner ver 0.00 0.07 0.00 0.07 inf; +charlatanerie charlatanerie nom f s 0.02 0.07 0.02 0.07 +charlatanisme charlatanisme nom m s 0.16 0.34 0.16 0.20 +charlatanismes charlatanisme nom m p 0.16 0.34 0.00 0.14 +charlatans charlatan nom m p 4.44 1.08 1.37 0.61 +charleston charleston nom m s 0.27 0.41 0.27 0.41 +charlot charlot nom m s 0.46 0.20 0.18 0.00 +charlots charlot nom m p 0.46 0.20 0.28 0.20 +charlotte charlotte nom f s 0.99 0.61 0.97 0.54 +charlottes charlotte nom f p 0.99 0.61 0.01 0.07 +charma charmer ver 5.69 6.96 0.00 0.14 ind:pas:3s; +charmaient charmer ver 5.69 6.96 0.00 0.41 ind:imp:3p; +charmait charmer ver 5.69 6.96 0.13 1.01 ind:imp:3s; +charmant charmant adj m s 54.51 41.15 27.52 19.86 +charmante charmant adj f s 54.51 41.15 21.04 14.32 +charmantes charmant adj f p 54.51 41.15 2.23 3.38 +charmants charmant adj m p 54.51 41.15 3.72 3.58 +charme charme nom m s 22.92 53.45 19.70 43.65 +charment charmer ver 5.69 6.96 0.04 0.34 ind:pre:3p; +charmer charmer ver 5.69 6.96 1.30 0.81 inf; +charmera charmer ver 5.69 6.96 0.01 0.07 ind:fut:3s; +charmes charme nom m p 22.92 53.45 3.22 9.80 +charmeur charmeur adj m s 1.01 1.76 0.93 0.88 +charmeurs charmeur adj m p 1.01 1.76 0.03 0.34 +charmeuse charmeuse nom f s 0.14 0.00 0.14 0.00 +charmeuses charmeur nom f p 0.94 1.35 0.00 0.47 +charmille charmille nom f s 0.02 1.55 0.02 1.22 +charmilles charmille nom f p 0.02 1.55 0.00 0.34 +charmé charmer ver m s 5.69 6.96 1.11 1.22 par:pas; +charmée charmé adj f s 0.73 1.08 0.34 0.20 +charmés charmer ver m p 5.69 6.96 0.05 0.00 par:pas; +charnel charnel adj m s 2.10 11.01 0.74 3.99 +charnelle charnel adj f s 2.10 11.01 0.59 4.46 +charnellement charnellement adv 0.00 0.61 0.00 0.61 +charnelles charnel adj f p 2.10 11.01 0.18 1.62 +charnels charnel adj m p 2.10 11.01 0.58 0.95 +charnier charnier nom m s 0.84 3.72 0.42 3.04 +charniers charnier nom m p 0.84 3.72 0.41 0.68 +charnière charnière nom f s 0.38 1.82 0.32 1.08 +charnières charnière nom f p 0.38 1.82 0.06 0.74 +charnu charnu adj m s 0.76 6.15 0.06 1.28 +charnue charnu adj f s 0.76 6.15 0.35 2.23 +charnues charnu adj f p 0.76 6.15 0.31 1.69 +charnus charnu adj m p 0.76 6.15 0.03 0.95 +charognard charognard nom m s 0.85 2.03 0.37 0.41 +charognards charognard nom m p 0.85 2.03 0.48 1.62 +charogne charogne nom f s 3.64 7.16 2.58 5.07 +charognerie charognerie nom f s 0.00 0.27 0.00 0.27 +charognes charogne nom f p 3.64 7.16 1.06 2.09 +charolaise charolais nom f s 0.00 0.14 0.00 0.07 +charolaises charolais nom f p 0.00 0.14 0.00 0.07 +charpente charpente nom f s 0.59 5.27 0.58 4.05 +charpenter charpenter ver 0.01 0.34 0.00 0.07 inf; +charpenterie charpenterie nom f s 0.04 0.00 0.04 0.00 +charpentes charpente nom f p 0.59 5.27 0.01 1.22 +charpentier charpentier nom m s 2.57 3.11 2.11 1.82 +charpentiers charpentier nom m p 2.57 3.11 0.45 1.28 +charpentière charpentier nom f s 2.57 3.11 0.01 0.00 +charpenté charpenté adj m s 0.02 0.47 0.01 0.20 +charpentée charpenté adj f s 0.02 0.47 0.01 0.20 +charpentés charpenté adj m p 0.02 0.47 0.00 0.07 +charpie charpie nom f s 0.52 2.50 0.52 2.43 +charpies charpie nom f p 0.52 2.50 0.00 0.07 +charre charre nom m s 0.18 2.03 0.18 1.69 +charres charre nom m p 0.18 2.03 0.00 0.34 +charretier charretier nom m s 0.19 1.89 0.16 1.01 +charretiers charretier nom m p 0.19 1.89 0.01 0.54 +charretière charretier nom f s 0.19 1.89 0.02 0.34 +charreton charreton nom m s 0.00 0.61 0.00 0.54 +charretons charreton nom m p 0.00 0.61 0.00 0.07 +charrette charrette nom f s 6.98 20.95 6.63 16.82 +charrettes charrette nom f p 6.98 20.95 0.36 4.12 +charretée charretée nom f s 0.01 0.74 0.01 0.34 +charretées charretée nom f p 0.01 0.74 0.00 0.41 +charria charrier ver 4.24 12.36 0.26 0.14 ind:pas:3s; +charriage charriage nom m s 0.00 0.14 0.00 0.14 +charriaient charrier ver 4.24 12.36 0.01 0.54 ind:imp:3p; +charriais charrier ver 4.24 12.36 0.03 0.14 ind:imp:1s; +charriait charrier ver 4.24 12.36 0.02 1.35 ind:imp:3s; +charriant charrier ver 4.24 12.36 0.14 1.49 par:pre; +charrie charrier ver 4.24 12.36 1.37 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +charrient charrier ver 4.24 12.36 0.04 0.61 ind:pre:3p; +charrier charrier ver 4.24 12.36 0.82 3.11 inf; +charrieras charrier ver 4.24 12.36 0.01 0.00 ind:fut:2s; +charrierons charrier ver 4.24 12.36 0.00 0.07 ind:fut:1p; +charrieront charrier ver 4.24 12.36 0.01 0.07 ind:fut:3p; +charries charrier ver 4.24 12.36 0.79 0.61 ind:pre:2s;sub:pre:2s; +charrieurs charrieur nom m p 0.01 0.00 0.01 0.00 +charriez charrier ver 4.24 12.36 0.41 0.81 imp:pre:2p;ind:pre:2p; +charrions charrier ver 4.24 12.36 0.01 0.00 imp:pre:1p; +charrière charrier nom f s 0.00 0.20 0.00 0.07 +charrièrent charrier ver 4.24 12.36 0.00 0.07 ind:pas:3p; +charrières charrier nom f p 0.00 0.20 0.00 0.14 +charrié charrier ver m s 4.24 12.36 0.28 1.22 par:pas; +charriée charrier ver f s 4.24 12.36 0.03 0.20 par:pas; +charriées charrier ver f p 4.24 12.36 0.03 0.20 par:pas; +charriés charrier ver m p 4.24 12.36 0.00 0.14 par:pas; +charroi charroi nom m s 0.00 1.82 0.00 0.95 +charrois charroi nom m p 0.00 1.82 0.00 0.88 +charron charron nom m s 0.03 0.47 0.03 0.34 +charronnées charronner ver f p 0.00 0.07 0.00 0.07 par:pas; +charrons charron nom m p 0.03 0.47 0.00 0.14 +charrue charrue nom f s 1.54 4.32 1.50 3.38 +charrues charrue nom f p 1.54 4.32 0.05 0.95 +charruée charruer ver f s 0.00 0.07 0.00 0.07 par:pas; +chars char nom m p 11.86 27.57 3.27 19.66 +charte charte nom f s 1.07 2.30 1.04 1.82 +charter charter nom m s 0.99 0.74 0.75 0.27 +charters charter nom m p 0.99 0.74 0.25 0.47 +chartes charte nom f p 1.07 2.30 0.03 0.47 +chartiste chartiste nom s 0.00 0.34 0.00 0.20 +chartistes chartiste nom p 0.00 0.34 0.00 0.14 +chartre chartre nom f s 0.01 0.00 0.01 0.00 +chartreuse chartreux nom f s 0.34 1.15 0.06 0.34 +chartreuses chartreux nom f p 0.34 1.15 0.00 0.14 +chartreux chartreux nom m 0.34 1.15 0.28 0.68 +charybde charybde nom m s 0.16 0.68 0.16 0.68 +chas chas nom m 0.74 0.47 0.74 0.47 +chassa chasser ver 54.93 67.91 0.47 4.46 ind:pas:3s; +chassai chasser ver 54.93 67.91 0.14 0.27 ind:pas:1s; +chassaient chasser ver 54.93 67.91 0.26 2.03 ind:imp:3p; +chassais chasser ver 54.93 67.91 0.93 0.47 ind:imp:1s;ind:imp:2s; +chassait chasser ver 54.93 67.91 0.90 7.30 ind:imp:3s; +chassant chasser ver 54.93 67.91 0.68 3.11 par:pre; +chasse_d_eau chasse_d_eau nom f s 0.00 0.07 0.00 0.07 +chasse_goupille chasse_goupille nom f p 0.00 0.20 0.00 0.20 +chasse_mouche chasse_mouche nom m s 0.00 0.14 0.00 0.14 +chasse_mouches chasse_mouches nom m 0.12 0.61 0.12 0.61 +chasse_neige chasse_neige nom m 0.58 0.54 0.58 0.54 +chasse_pierres chasse_pierres nom m 0.01 0.00 0.01 0.00 +chasse chasse nom f s 47.99 59.46 46.80 53.38 +chasselas chasselas nom m 0.01 0.14 0.01 0.14 +chassent chasser ver 54.93 67.91 1.45 0.88 ind:pre:3p; +chasser chasser ver 54.93 67.91 19.86 20.81 inf; +chassera chasser ver 54.93 67.91 1.41 0.61 ind:fut:3s; +chasserai chasser ver 54.93 67.91 0.80 0.20 ind:fut:1s; +chasseraient chasser ver 54.93 67.91 0.02 0.07 cnd:pre:3p; +chasserais chasser ver 54.93 67.91 0.23 0.00 cnd:pre:1s;cnd:pre:2s; +chasserait chasser ver 54.93 67.91 0.15 0.41 cnd:pre:3s; +chasseras chasser ver 54.93 67.91 0.04 0.14 ind:fut:2s; +chasseresse chasseur nom f s 34.91 41.55 0.46 0.41 +chasseresses chasseresse nom f p 0.01 0.00 0.01 0.00 +chasserez chasser ver 54.93 67.91 0.07 0.07 ind:fut:2p; +chasserions chasser ver 54.93 67.91 0.01 0.00 cnd:pre:1p; +chasserons chasser ver 54.93 67.91 0.36 0.14 ind:fut:1p; +chasseront chasser ver 54.93 67.91 0.69 0.07 ind:fut:3p; +chasses chasser ver 54.93 67.91 1.71 0.20 ind:pre:2s; +chasseur chasseur nom m s 34.91 41.55 21.27 23.58 +chasseurs chasseur nom m p 34.91 41.55 12.88 17.43 +chasseuse chasseur nom f s 34.91 41.55 0.30 0.07 +chassez chasser ver 54.93 67.91 2.97 0.61 imp:pre:2p;ind:pre:2p; +chassie chassie nom f s 0.05 0.14 0.05 0.14 +chassieuse chassieux adj f s 0.14 1.35 0.00 0.07 +chassieux chassieux adj m 0.14 1.35 0.14 1.28 +chassiez chasser ver 54.93 67.91 0.35 0.07 ind:imp:2p; +chassions chasser ver 54.93 67.91 0.04 0.27 ind:imp:1p; +chassons chasser ver 54.93 67.91 0.47 0.07 imp:pre:1p;ind:pre:1p; +chassât chasser ver 54.93 67.91 0.00 0.27 sub:imp:3s; +chassèrent chasser ver 54.93 67.91 0.02 0.27 ind:pas:3p; +chassé_croisé chassé_croisé nom m s 0.02 1.01 0.00 0.68 +chassé chasser ver m s 54.93 67.91 6.62 10.14 par:pas; +chassée chasser ver f s 54.93 67.91 1.71 2.77 par:pas; +chassées chasser ver f p 54.93 67.91 0.16 0.81 par:pas; +chassé_croisé chassé_croisé nom m p 0.02 1.01 0.02 0.34 +chassés chasser ver m p 54.93 67.91 1.64 3.04 par:pas; +chaste chaste adj s 2.22 5.14 1.50 4.32 +chastement chastement adv 0.01 0.54 0.01 0.54 +chastes chaste adj p 2.22 5.14 0.72 0.81 +chasteté chasteté nom f s 2.37 3.92 2.37 3.92 +chasuble chasuble nom f s 0.11 1.76 0.09 0.95 +chasubles chasuble nom f p 0.11 1.76 0.02 0.81 +chat_huant chat_huant nom m s 0.00 0.27 0.00 0.27 +chat_tigre chat_tigre nom m s 0.00 0.14 0.00 0.14 +chat chat nom m s 90.25 130.74 57.71 59.26 +chateaubriand chateaubriand nom m s 0.17 0.27 0.15 0.20 +chateaubriands chateaubriand nom m p 0.17 0.27 0.02 0.07 +chatière chatière nom f s 0.14 0.54 0.14 0.54 +chatoiement chatoiement nom m s 0.05 1.35 0.05 1.01 +chatoiements chatoiement nom m p 0.05 1.35 0.00 0.34 +chatoient chatoyer ver 0.00 0.81 0.00 0.07 ind:pre:3p; +chaton chaton nom m s 4.41 4.66 3.32 2.50 +chatonne chatonner ver 0.01 0.00 0.01 0.00 ind:pre:3s; +chatons chaton nom m p 4.41 4.66 1.09 2.16 +chatouilla chatouiller ver 7.04 7.36 0.00 0.41 ind:pas:3s; +chatouillaient chatouiller ver 7.04 7.36 0.01 0.61 ind:imp:3p; +chatouillait chatouiller ver 7.04 7.36 0.37 1.55 ind:imp:3s; +chatouillant chatouiller ver 7.04 7.36 0.11 0.34 par:pre; +chatouille chatouiller ver 7.04 7.36 3.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chatouillement chatouillement nom m s 0.17 0.81 0.15 0.74 +chatouillements chatouillement nom m p 0.17 0.81 0.01 0.07 +chatouillent chatouiller ver 7.04 7.36 0.06 0.27 ind:pre:3p; +chatouiller chatouiller ver 7.04 7.36 0.85 1.69 inf; +chatouillera chatouiller ver 7.04 7.36 0.04 0.00 ind:fut:3s; +chatouilles chatouiller ver 7.04 7.36 1.95 0.14 ind:pre:2s; +chatouilleuse chatouilleux adj f s 1.00 0.95 0.34 0.20 +chatouilleuses chatouilleux adj f p 1.00 0.95 0.03 0.00 +chatouilleux chatouilleux adj m 1.00 0.95 0.63 0.74 +chatouillez chatouiller ver 7.04 7.36 0.23 0.07 imp:pre:2p;ind:pre:2p; +chatouillis chatouillis nom m 0.02 0.34 0.02 0.34 +chatouillons chatouiller ver 7.04 7.36 0.01 0.00 imp:pre:1p; +chatouillât chatouiller ver 7.04 7.36 0.00 0.14 sub:imp:3s; +chatouillèrent chatouiller ver 7.04 7.36 0.00 0.27 ind:pas:3p; +chatouillé chatouiller ver m s 7.04 7.36 0.14 0.47 par:pas; +chatouillée chatouiller ver f s 7.04 7.36 0.01 0.41 par:pas; +chatouillées chatouiller ver f p 7.04 7.36 0.00 0.07 par:pas; +chatouillés chatouiller ver m p 7.04 7.36 0.00 0.20 par:pas; +chatoyaient chatoyer ver 0.00 0.81 0.00 0.14 ind:imp:3p; +chatoyait chatoyer ver 0.00 0.81 0.00 0.07 ind:imp:3s; +chatoyant chatoyant adj m s 0.44 2.03 0.29 0.74 +chatoyante chatoyant adj f s 0.44 2.03 0.02 0.54 +chatoyantes chatoyant adj f p 0.44 2.03 0.10 0.47 +chatoyants chatoyant adj m p 0.44 2.03 0.03 0.27 +chatoyer chatoyer ver 0.00 0.81 0.00 0.20 inf; +chats chat nom m p 90.25 130.74 16.00 38.11 +chattant chatter ver 0.45 0.00 0.14 0.00 par:pre; +chatte chat nom f s 90.25 130.74 16.54 29.12 +chattemite chattemite nom f s 0.00 0.14 0.00 0.14 +chatter chatter ver 0.45 0.00 0.30 0.00 inf; +chatterie chatterie nom f s 0.01 0.54 0.00 0.20 +chatteries chatterie nom f p 0.01 0.54 0.01 0.34 +chatterton chatterton nom m s 0.21 0.34 0.21 0.34 +chattes chatte nom f p 2.75 0.00 2.75 0.00 +chattons chatter ver 0.45 0.00 0.01 0.00 imp:pre:1p; +chaud_froid chaud_froid nom m s 0.00 0.41 0.00 0.34 +chaud chaud adj m s 84.16 113.31 50.20 46.42 +chaude_pisse chaude_pisse nom f s 0.15 0.34 0.15 0.27 +chaude chaud adj f s 84.16 113.31 22.48 45.47 +chaudement chaudement adv 1.07 2.64 1.07 2.64 +chaude_pisse chaude_pisse nom f p 0.15 0.34 0.00 0.07 +chaudes chaud adj f p 84.16 113.31 4.89 13.18 +chaudière chaudière nom f s 2.62 3.51 1.89 3.11 +chaudières chaudière nom f p 2.62 3.51 0.73 0.41 +chaudron chaudron nom m s 1.12 5.81 0.79 4.26 +chaudronnerie chaudronnerie nom f s 0.00 0.34 0.00 0.27 +chaudronneries chaudronnerie nom f p 0.00 0.34 0.00 0.07 +chaudronnier chaudronnier nom m s 0.02 0.47 0.02 0.34 +chaudronniers chaudronnier nom m p 0.02 0.47 0.00 0.14 +chaudronné chaudronner ver m s 0.00 0.07 0.00 0.07 par:pas; +chaudronnée chaudronnée nom f s 0.00 0.07 0.00 0.07 +chaudrons chaudron nom m p 1.12 5.81 0.33 1.55 +chaud_froid chaud_froid nom m p 0.00 0.41 0.00 0.07 +chauds chaud adj m p 84.16 113.31 6.59 8.24 +chauffa chauffer ver 21.75 29.80 0.00 0.34 ind:pas:3s; +chauffage chauffage nom m s 4.96 6.08 4.96 6.08 +chauffagiste chauffagiste nom m s 0.04 0.00 0.04 0.00 +chauffaient chauffer ver 21.75 29.80 0.12 1.01 ind:imp:3p; +chauffais chauffer ver 21.75 29.80 0.03 0.27 ind:imp:1s;ind:imp:2s; +chauffait chauffer ver 21.75 29.80 0.34 3.72 ind:imp:3s; +chauffant chauffant adj m s 0.58 0.41 0.09 0.00 +chauffante chauffant adj f s 0.58 0.41 0.30 0.34 +chauffantes chauffant adj f p 0.58 0.41 0.08 0.07 +chauffants chauffant adj m p 0.58 0.41 0.11 0.00 +chauffard chauffard nom m s 1.62 0.95 1.38 0.47 +chauffards chauffard nom m p 1.62 0.95 0.24 0.47 +chauffe_biberon chauffe_biberon nom m s 0.10 0.00 0.10 0.00 +chauffe_eau chauffe_eau nom m 0.63 0.61 0.63 0.61 +chauffe_plats chauffe_plats nom m 0.00 0.14 0.00 0.14 +chauffe chauffer ver 21.75 29.80 7.01 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chauffent chauffer ver 21.75 29.80 0.52 0.61 ind:pre:3p; +chauffer chauffer ver 21.75 29.80 9.06 10.14 inf; +chauffera chauffer ver 21.75 29.80 0.28 0.07 ind:fut:3s; +chaufferai chauffer ver 21.75 29.80 0.05 0.00 ind:fut:1s; +chaufferette chaufferette nom f s 0.12 0.81 0.12 0.68 +chaufferettes chaufferette nom f p 0.12 0.81 0.00 0.14 +chaufferie chaufferie nom f s 0.64 0.88 0.63 0.81 +chaufferies chaufferie nom f p 0.64 0.88 0.01 0.07 +chauffes chauffer ver 21.75 29.80 0.42 0.00 ind:pre:2s; +chauffeur_livreur chauffeur_livreur nom m s 0.00 0.14 0.00 0.14 +chauffeur chauffeur nom m s 40.59 49.86 37.35 44.19 +chauffeurs chauffeur nom m p 40.59 49.86 3.19 5.00 +chauffeuse chauffeur nom f s 40.59 49.86 0.05 0.68 +chauffez chauffer ver 21.75 29.80 0.70 0.27 imp:pre:2p;ind:pre:2p; +chauffiez chauffer ver 21.75 29.80 0.01 0.00 ind:imp:2p; +chauffions chauffer ver 21.75 29.80 0.00 0.07 ind:imp:1p; +chauffâmes chauffer ver 21.75 29.80 0.00 0.07 ind:pas:1p; +chauffons chauffer ver 21.75 29.80 0.22 0.14 imp:pre:1p;ind:pre:1p; +chauffèrent chauffer ver 21.75 29.80 0.00 0.07 ind:pas:3p; +chauffé chauffer ver m s 21.75 29.80 1.75 3.58 par:pas; +chauffée chauffer ver f s 21.75 29.80 0.78 2.91 par:pas; +chauffées chauffer ver f p 21.75 29.80 0.08 0.74 par:pas; +chauffés chauffer ver m p 21.75 29.80 0.35 1.62 par:pas; +chaule chauler ver 0.00 1.22 0.00 0.07 ind:pre:3s; +chauler chauler ver 0.00 1.22 0.00 0.07 inf; +chaulé chauler ver m s 0.00 1.22 0.00 0.07 par:pas; +chaulée chauler ver f s 0.00 1.22 0.00 0.14 par:pas; +chaulées chauler ver f p 0.00 1.22 0.00 0.20 par:pas; +chaulés chauler ver m p 0.00 1.22 0.00 0.68 par:pas; +chaume chaume nom m s 0.36 7.09 0.36 4.86 +chaumes chaume nom m p 0.36 7.09 0.00 2.23 +chaumine chaumine nom f s 0.11 0.47 0.11 0.41 +chaumines chaumine nom f p 0.11 0.47 0.00 0.07 +chaumière chaumière nom f s 1.47 2.77 1.23 1.08 +chaumières chaumière nom f p 1.47 2.77 0.24 1.69 +chaumé chaumer ver m s 0.00 0.07 0.00 0.07 par:pas; +chaussa chausser ver 1.27 15.61 0.00 1.28 ind:pas:3s; +chaussai chausser ver 1.27 15.61 0.00 0.07 ind:pas:1s; +chaussaient chausser ver 1.27 15.61 0.00 0.20 ind:imp:3p; +chaussait chausser ver 1.27 15.61 0.02 0.88 ind:imp:3s; +chaussant chaussant adj m s 0.03 0.00 0.03 0.00 +chausse_pied chausse_pied nom m s 0.24 0.14 0.24 0.14 +chausse_trape chausse_trape nom f s 0.00 0.20 0.00 0.07 +chausse_trape chausse_trape nom f p 0.00 0.20 0.00 0.14 +chausse_trappe chausse_trappe nom f s 0.00 0.07 0.00 0.07 +chausse chausser ver 1.27 15.61 0.74 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chaussent chausser ver 1.27 15.61 0.01 0.20 ind:pre:3p; +chausser chausser ver 1.27 15.61 0.17 1.42 inf; +chausserai chausser ver 1.27 15.61 0.00 0.07 ind:fut:1s; +chausses chausser ver 1.27 15.61 0.16 0.07 ind:pre:2s; +chaussette chaussette nom f s 16.45 22.84 3.29 4.39 +chaussettes chaussette nom f p 16.45 22.84 13.16 18.45 +chausseur chausseur nom m s 0.07 0.54 0.07 0.41 +chausseurs chausseur nom m p 0.07 0.54 0.00 0.14 +chaussez chausser ver 1.27 15.61 0.06 0.00 imp:pre:2p;ind:pre:2p; +chausson chausson nom m s 3.50 5.95 0.67 0.61 +chaussons chausson nom m p 3.50 5.95 2.83 5.34 +chaussèrent chausser ver 1.27 15.61 0.00 0.14 ind:pas:3p; +chaussé chausser ver m s 1.27 15.61 0.06 4.53 par:pas; +chaussée chaussée nom f s 1.87 24.32 1.64 22.36 +chaussées chaussée nom f p 1.87 24.32 0.23 1.96 +chaussure chaussure nom f s 73.58 56.49 12.49 8.78 +chaussures chaussure nom f p 73.58 56.49 61.09 47.70 +chaussés chausser ver m p 1.27 15.61 0.03 3.65 par:pas; +chaut chaut ver 0.01 0.34 0.01 0.34 inf; +chauve_souris chauve_souris nom f s 7.16 4.66 5.43 2.23 +chauve chauve adj s 5.92 10.81 5.25 9.46 +chauve_souris chauve_souris nom f p 7.16 4.66 1.73 2.43 +chauves chauve nom p 5.20 5.47 0.72 0.34 +chauvin chauvin adj m s 0.43 2.50 0.32 2.30 +chauvine chauvin nom f s 0.04 2.03 0.00 0.07 +chauvines chauvin adj f p 0.43 2.50 0.01 0.14 +chauvinisme chauvinisme nom m s 0.08 0.74 0.08 0.74 +chauviniste chauviniste nom s 0.03 0.00 0.03 0.00 +chauvins chauvin adj m p 0.43 2.50 0.10 0.07 +chauvit chauvir ver 0.00 0.07 0.00 0.07 ind:pas:3s; +chaux chaux nom f 1.32 7.36 1.32 7.36 +chavignol chavignol nom m s 0.00 0.07 0.00 0.07 +chavira chavirer ver 2.41 8.65 0.00 0.68 ind:pas:3s; +chavirai chavirer ver 2.41 8.65 0.00 0.07 ind:pas:1s; +chaviraient chavirer ver 2.41 8.65 0.00 0.27 ind:imp:3p; +chavirait chavirer ver 2.41 8.65 0.02 1.08 ind:imp:3s; +chavirant chavirer ver 2.41 8.65 0.00 0.07 par:pre; +chavirante chavirant adj f s 0.00 0.27 0.00 0.20 +chavire chavirer ver 2.41 8.65 0.43 0.95 ind:pre:1s;ind:pre:3s; +chavirement chavirement nom m s 0.14 0.34 0.14 0.20 +chavirements chavirement nom m p 0.14 0.34 0.00 0.14 +chavirent chavirer ver 2.41 8.65 0.02 0.34 ind:pre:3p; +chavirer chavirer ver 2.41 8.65 1.01 2.36 inf; +chavireraient chavirer ver 2.41 8.65 0.00 0.07 cnd:pre:3p; +chavirerait chavirer ver 2.41 8.65 0.01 0.07 cnd:pre:3s; +chavireront chavirer ver 2.41 8.65 0.00 0.07 ind:fut:3p; +chavirions chavirer ver 2.41 8.65 0.00 0.07 ind:imp:1p; +chavirons chavirer ver 2.41 8.65 0.14 0.07 ind:pre:1p; +chavirèrent chavirer ver 2.41 8.65 0.00 0.14 ind:pas:3p; +chaviré chavirer ver m s 2.41 8.65 0.62 1.49 par:pas; +chavirée chavirer ver f s 2.41 8.65 0.16 0.34 par:pas; +chavirés chavirer ver m p 2.41 8.65 0.01 0.54 par:pas; +cheap cheap adj m s 0.50 0.14 0.50 0.14 +check_list check_list nom f s 0.22 0.00 0.22 0.00 +check_up check_up nom m 0.69 0.00 0.68 0.00 +check_up check_up nom m 0.69 0.00 0.01 0.00 +cheddar cheddar nom m s 0.53 0.00 0.53 0.00 +cheddite cheddite nom f s 0.00 0.20 0.00 0.20 +cheese_cake cheese_cake nom m s 0.32 0.00 0.28 0.00 +cheese_cake cheese_cake nom m p 0.32 0.00 0.05 0.00 +cheeseburger cheeseburger nom m s 3.06 0.00 2.22 0.00 +cheeseburgers cheeseburger nom m p 3.06 0.00 0.84 0.00 +chef_adjoint chef_adjoint nom s 0.04 0.00 0.04 0.00 +chef_d_oeuvre chef_d_oeuvre nom m s 3.34 12.77 2.56 8.51 +chef_d_oeuvres chef_d_oeuvres nom s 0.11 0.00 0.11 0.00 +chef_lieu chef_lieu nom m s 0.19 1.82 0.19 1.82 +chef chef nom s 205.26 205.95 189.79 172.57 +chef_d_oeuvre chef_d_oeuvre nom m p 3.34 12.77 0.77 4.26 +chefs_lieux chefs_lieux nom m p 0.00 0.27 0.00 0.27 +chefs chef nom p 205.26 205.95 15.46 33.38 +cheftaine cheftaine nom f s 0.13 0.54 0.13 0.27 +cheftaines cheftaine nom f p 0.13 0.54 0.00 0.27 +cheik cheik nom m s 0.48 0.95 0.45 0.88 +cheikh cheikh nom m s 0.32 0.00 0.32 0.00 +cheiks cheik nom m p 0.48 0.95 0.04 0.07 +chelem chelem nom m s 0.31 0.20 0.31 0.20 +chemin chemin nom m s 125.18 231.42 114.34 197.50 +chemina cheminer ver 0.87 8.99 0.01 0.07 ind:pas:3s; +cheminaient cheminer ver 0.87 8.99 0.00 0.74 ind:imp:3p; +cheminait cheminer ver 0.87 8.99 0.10 0.88 ind:imp:3s; +cheminant cheminer ver 0.87 8.99 0.04 1.42 par:pre; +chemine cheminer ver 0.87 8.99 0.48 1.15 ind:pre:1s;ind:pre:3s; +chemineau chemineau nom m s 0.04 1.62 0.02 0.95 +chemineaux chemineau nom m p 0.04 1.62 0.02 0.68 +cheminement cheminement nom m s 0.18 6.08 0.17 4.86 +cheminements cheminement nom m p 0.18 6.08 0.01 1.22 +cheminent cheminer ver 0.87 8.99 0.02 0.47 ind:pre:3p; +cheminer cheminer ver 0.87 8.99 0.02 2.23 inf; +chemineraient cheminer ver 0.87 8.99 0.00 0.07 cnd:pre:3p; +cheminerait cheminer ver 0.87 8.99 0.00 0.07 cnd:pre:3s; +cheminerons cheminer ver 0.87 8.99 0.00 0.07 ind:fut:1p; +chemineront cheminer ver 0.87 8.99 0.00 0.07 ind:fut:3p; +cheminions cheminer ver 0.87 8.99 0.00 0.07 ind:imp:1p; +cheminâmes cheminer ver 0.87 8.99 0.00 0.07 ind:pas:1p; +cheminons cheminer ver 0.87 8.99 0.01 0.20 imp:pre:1p;ind:pre:1p; +cheminot cheminot nom m s 1.42 2.50 1.06 1.01 +cheminots cheminot nom m p 1.42 2.50 0.35 1.49 +chemins chemin nom m p 125.18 231.42 10.85 33.92 +cheminèrent cheminer ver 0.87 8.99 0.00 0.14 ind:pas:3p; +cheminé cheminer ver m s 0.87 8.99 0.11 1.15 par:pas; +cheminée cheminée nom f s 11.39 43.99 9.99 36.28 +cheminées cheminée nom f p 11.39 43.99 1.40 7.70 +chemise chemise nom f s 43.66 91.42 36.48 74.59 +chemiser chemiser ver 0.21 0.07 0.14 0.07 inf; +chemiserie chemiserie nom f s 0.16 0.14 0.16 0.14 +chemises chemise nom f p 43.66 91.42 7.18 16.82 +chemisette chemisette nom f s 0.16 4.12 0.15 2.77 +chemisettes chemisette nom f p 0.16 4.12 0.01 1.35 +chemisier chemisier nom m s 4.00 7.97 3.77 6.76 +chemisiers chemisier nom m p 4.00 7.97 0.23 1.22 +chemisée chemiser ver f s 0.21 0.07 0.02 0.00 par:pas; +chemisées chemiser ver f p 0.21 0.07 0.05 0.00 par:pas; +chenal chenal nom m s 0.24 4.73 0.20 3.65 +chenapan chenapan nom m s 1.08 0.88 0.72 0.41 +chenapans chenapan nom m p 1.08 0.88 0.36 0.47 +chenaux chenal nom m p 0.24 4.73 0.04 1.08 +chenet chenet nom m s 0.06 0.81 0.01 0.14 +chenets chenet nom m p 0.06 0.81 0.04 0.68 +chenil chenil nom m s 1.40 3.24 1.30 2.77 +chenille chenille nom f s 2.14 5.68 1.38 2.50 +chenilles chenille nom f p 2.14 5.68 0.76 3.18 +chenillette chenillette nom f s 0.06 0.34 0.06 0.07 +chenillettes chenillette nom f p 0.06 0.34 0.00 0.27 +chenillé chenillé adj m s 0.00 0.14 0.00 0.07 +chenillés chenillé adj m p 0.00 0.14 0.00 0.07 +chenils chenil nom m p 1.40 3.24 0.09 0.47 +chenu chenu adj m s 0.26 1.22 0.14 0.54 +chenue chenu adj f s 0.26 1.22 0.01 0.34 +chenues chenu adj f p 0.26 1.22 0.10 0.14 +chenus chenu adj m p 0.26 1.22 0.00 0.20 +cheptel cheptel nom m s 0.09 1.35 0.09 1.35 +cher cher adj m s 205.75 133.65 130.70 90.47 +chercha chercher ver 712.46 448.99 0.96 27.03 ind:pas:3s; +cherchai chercher ver 712.46 448.99 0.92 4.93 ind:pas:1s; +cherchaient chercher ver 712.46 448.99 4.01 11.76 ind:imp:3p; +cherchais chercher ver 712.46 448.99 26.40 15.34 ind:imp:1s;ind:imp:2s; +cherchait chercher ver 712.46 448.99 16.27 52.50 ind:imp:3s; +cherchant chercher ver 712.46 448.99 5.90 31.62 par:pre; +cherchas chercher ver 712.46 448.99 0.00 0.07 ind:pas:2s; +cherche_midi cherche_midi nom m 0.01 0.27 0.01 0.27 +cherche chercher ver 712.46 448.99 150.75 66.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cherchent chercher ver 712.46 448.99 17.53 12.09 ind:pre:3p;sub:pre:3p; +chercher chercher ver 712.46 448.99 341.01 172.36 inf;;inf;;inf;; +cherchera chercher ver 712.46 448.99 2.11 1.01 ind:fut:3s; +chercherai chercher ver 712.46 448.99 2.39 0.74 ind:fut:1s; +chercheraient chercher ver 712.46 448.99 0.40 0.47 cnd:pre:3p; +chercherais chercher ver 712.46 448.99 1.52 0.54 cnd:pre:1s;cnd:pre:2s; +chercherait chercher ver 712.46 448.99 1.06 1.69 cnd:pre:3s; +chercheras chercher ver 712.46 448.99 0.50 0.14 ind:fut:2s; +chercherez chercher ver 712.46 448.99 0.19 0.07 ind:fut:2p; +chercheriez chercher ver 712.46 448.99 0.04 0.14 cnd:pre:2p; +chercherions chercher ver 712.46 448.99 0.00 0.14 cnd:pre:1p; +chercherons chercher ver 712.46 448.99 0.86 0.20 ind:fut:1p; +chercheront chercher ver 712.46 448.99 1.04 0.81 ind:fut:3p; +cherches chercher ver 712.46 448.99 36.45 5.81 ind:pre:2s;sub:pre:2s; +chercheur chercheur nom m s 5.71 3.78 2.66 1.76 +chercheurs chercheur nom m p 5.71 3.78 2.58 1.96 +chercheuse chercheur nom f s 5.71 3.78 0.48 0.07 +chercheuses chercheur adj f p 1.35 0.81 0.06 0.00 +cherchez chercher ver 712.46 448.99 42.95 7.36 imp:pre:2p;ind:pre:2p; +cherchiez chercher ver 712.46 448.99 4.79 0.74 ind:imp:2p;sub:pre:2p; +cherchions chercher ver 712.46 448.99 2.04 2.03 ind:imp:1p;sub:pre:1p; +cherchâmes chercher ver 712.46 448.99 0.00 0.20 ind:pas:1p; +cherchons chercher ver 712.46 448.99 13.13 2.03 imp:pre:1p;ind:pre:1p; +cherchât chercher ver 712.46 448.99 0.00 0.95 sub:imp:3s; +cherchèrent chercher ver 712.46 448.99 0.19 2.03 ind:pas:3p; +cherché chercher ver m s 712.46 448.99 32.27 24.53 par:pas; +cherchée chercher ver f s 712.46 448.99 5.56 2.03 par:pas; +cherchées chercher ver f p 712.46 448.99 0.43 0.54 par:pas; +cherchés chercher ver m p 712.46 448.99 0.81 0.41 par:pas; +chergui chergui nom m s 0.00 0.74 0.00 0.74 +cherokee cherokee nom m s 0.34 0.27 0.21 0.07 +cherokees cherokee nom m p 0.34 0.27 0.13 0.20 +cherres cherrer ver 0.00 0.07 0.00 0.07 ind:pre:2s; +cherry cherry nom m s 0.13 0.34 0.13 0.34 +chers cher adj m p 205.75 133.65 28.61 13.99 +cherté cherté nom f s 0.00 0.47 0.00 0.47 +chester chester nom m s 0.12 0.07 0.12 0.07 +chevai chever ver 0.45 0.00 0.45 0.00 ind:pas:1s; +cheval_vapeur cheval_vapeur nom m s 0.03 0.20 0.02 0.07 +cheval cheval nom m s 129.12 179.26 85.42 110.27 +chevaler chevaler ver 0.00 0.14 0.00 0.07 inf; +chevaleresque chevaleresque adj s 0.40 1.22 0.39 0.95 +chevaleresquement chevaleresquement adv 0.00 0.07 0.00 0.07 +chevaleresques chevaleresque adj m p 0.40 1.22 0.01 0.27 +chevalerie chevalerie nom f s 0.77 2.23 0.77 2.09 +chevaleries chevalerie nom f p 0.77 2.23 0.00 0.14 +chevalet chevalet nom m s 0.53 6.22 0.47 4.93 +chevalets chevalet nom m p 0.53 6.22 0.05 1.28 +chevalier chevalier nom m s 15.91 36.15 10.77 21.89 +chevaliers chevalier nom m p 15.91 36.15 5.14 14.26 +chevalin chevalin adj m s 0.18 1.82 0.03 0.68 +chevaline chevalin adj f s 0.18 1.82 0.14 1.01 +chevalins chevalin adj m p 0.18 1.82 0.00 0.14 +chevalière chevalière nom f s 0.47 2.97 0.45 2.43 +chevalières chevalière nom f p 0.47 2.97 0.02 0.54 +chevalée chevaler ver f s 0.00 0.14 0.00 0.07 par:pas; +chevance chevance nom f s 0.00 0.20 0.00 0.20 +chevau_léger chevau_léger nom m s 0.01 0.14 0.01 0.14 +chevaucha chevaucher ver 3.67 12.77 0.01 0.34 ind:pas:3s; +chevauchaient chevaucher ver 3.67 12.77 0.17 1.62 ind:imp:3p; +chevauchais chevaucher ver 3.67 12.77 0.05 0.07 ind:imp:1s;ind:imp:2s; +chevauchait chevaucher ver 3.67 12.77 0.22 1.69 ind:imp:3s; +chevauchant chevaucher ver 3.67 12.77 0.30 2.09 par:pre; +chevauche chevaucher ver 3.67 12.77 0.79 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chevauchement chevauchement nom m s 0.14 0.14 0.14 0.14 +chevauchent chevaucher ver 3.67 12.77 0.18 1.69 ind:pre:3p; +chevaucher chevaucher ver 3.67 12.77 1.00 2.16 inf; +chevauchera chevaucher ver 3.67 12.77 0.02 0.00 ind:fut:3s; +chevaucherai chevaucher ver 3.67 12.77 0.26 0.00 ind:fut:1s; +chevaucheraient chevaucher ver 3.67 12.77 0.00 0.07 cnd:pre:3p; +chevaucheur chevaucheur nom m s 0.00 0.07 0.00 0.07 +chevauchez chevaucher ver 3.67 12.77 0.08 0.00 imp:pre:2p;ind:pre:2p; +chevauchons chevaucher ver 3.67 12.77 0.09 0.14 imp:pre:1p;ind:pre:1p; +chevauchèrent chevaucher ver 3.67 12.77 0.00 0.27 ind:pas:3p; +chevauché chevaucher ver m s 3.67 12.77 0.35 0.61 par:pas; +chevauchée chevauchée nom f s 0.56 4.19 0.42 2.50 +chevauchées chevauchée nom f p 0.56 4.19 0.14 1.69 +chevauchés chevaucher ver m p 3.67 12.77 0.00 0.14 par:pas; +cheval_vapeur cheval_vapeur nom m p 0.03 0.20 0.01 0.14 +chevaux cheval nom m p 129.12 179.26 43.70 68.99 +chevelu chevelu adj m s 1.53 4.66 1.31 2.36 +chevelue chevelu adj f s 1.53 4.66 0.04 0.81 +chevelues chevelu adj f p 1.53 4.66 0.00 0.34 +chevelure chevelure nom f s 2.52 27.50 2.50 25.07 +chevelures chevelure nom f p 2.52 27.50 0.02 2.43 +chevelus chevelu adj m p 1.53 4.66 0.18 1.15 +chevesne chevesne nom m s 0.02 1.35 0.02 0.95 +chevesnes chevesne nom m p 0.02 1.35 0.00 0.41 +chevet chevet nom m s 3.27 18.92 3.27 18.51 +chevets chevet nom m p 3.27 18.92 0.00 0.41 +cheveu cheveu nom m s 121.27 270.68 5.11 7.50 +cheveux cheveu nom m p 121.27 270.68 116.16 263.18 +chevillage chevillage nom m s 0.00 0.07 0.00 0.07 +chevillard chevillard nom m s 0.00 0.14 0.00 0.07 +chevillards chevillard nom m p 0.00 0.14 0.00 0.07 +cheville cheville nom f s 12.24 22.16 8.79 8.99 +chevilles cheville nom f p 12.24 22.16 3.45 13.18 +chevillette chevillette nom f s 0.10 0.07 0.10 0.07 +chevillé cheviller ver m s 0.16 0.88 0.14 0.41 par:pas; +chevillée cheviller ver f s 0.16 0.88 0.01 0.41 par:pas; +chevillées cheviller ver f p 0.16 0.88 0.00 0.07 par:pas; +cheviotte cheviotte nom f s 0.00 0.20 0.00 0.20 +chevir chevir ver 0.27 0.00 0.27 0.00 inf; +chevreau chevreau nom m s 0.84 3.38 0.44 2.36 +chevreaux chevreau nom m p 0.84 3.38 0.40 1.01 +chevrette chevrette nom f s 0.11 0.81 0.11 0.68 +chevrettes chevrette nom f p 0.11 0.81 0.00 0.14 +chevreuil chevreuil nom m s 1.58 5.14 1.31 2.97 +chevreuils chevreuil nom m p 1.58 5.14 0.26 2.16 +chevrier chevrier nom m s 0.35 0.27 0.20 0.14 +chevriers chevrier nom m p 0.35 0.27 0.14 0.07 +chevrière chevrier nom f s 0.35 0.27 0.00 0.07 +chevron chevron nom m s 1.36 2.50 0.96 0.41 +chevronné chevronné adj m s 0.31 1.01 0.11 0.47 +chevronnée chevronner ver f s 0.04 0.14 0.00 0.07 par:pas; +chevronnés chevronné adj m p 0.31 1.01 0.20 0.54 +chevrons chevron nom m p 1.36 2.50 0.40 2.09 +chevrota chevroter ver 0.03 1.28 0.00 0.20 ind:pas:3s; +chevrotais chevroter ver 0.03 1.28 0.00 0.07 ind:imp:1s; +chevrotait chevroter ver 0.03 1.28 0.00 0.34 ind:imp:3s; +chevrotant chevroter ver 0.03 1.28 0.00 0.07 par:pre; +chevrotante chevrotant adj f s 0.14 1.15 0.14 1.15 +chevrote chevroter ver 0.03 1.28 0.01 0.27 ind:pre:1s;ind:pre:3s; +chevrotement chevrotement nom m s 0.00 0.41 0.00 0.34 +chevrotements chevrotement nom m p 0.00 0.41 0.00 0.07 +chevroter chevroter ver 0.03 1.28 0.02 0.20 inf; +chevrotine chevrotine nom f s 0.78 1.42 0.43 0.54 +chevrotines chevrotine nom f p 0.78 1.42 0.35 0.88 +chevroté chevroter ver m s 0.03 1.28 0.00 0.07 par:pas; +chevrotée chevroter ver f s 0.03 1.28 0.00 0.07 par:pas; +chevêche chevêche nom f s 0.00 0.41 0.00 0.27 +chevêches chevêche nom f p 0.00 0.41 0.00 0.14 +chewing_gum chewing_gum nom m s 0.01 3.58 0.00 3.11 +chewing_gum chewing_gum nom m p 0.01 3.58 0.01 0.41 +chewing_gum chewing_gum nom m s 0.01 3.58 0.00 0.07 +chez_soi chez_soi nom m 0.31 0.41 0.31 0.41 +chez chez pre 842.18 680.54 842.18 680.54 +chi chi nom m s 1.29 0.54 1.29 0.54 +chia chier ver 67.53 22.64 0.02 0.00 ind:pas:3s; +chiader chiader ver 0.14 0.47 0.05 0.14 inf; +chiadé chiader ver m s 0.14 0.47 0.06 0.27 par:pas; +chiadée chiader ver f s 0.14 0.47 0.02 0.00 par:pas; +chiadées chiader ver f p 0.14 0.47 0.01 0.07 par:pas; +chiaient chier ver 67.53 22.64 0.39 0.00 ind:imp:3p; +chiais chier ver 67.53 22.64 1.30 0.00 ind:imp:1s;ind:imp:2s; +chiait chier ver 67.53 22.64 0.12 0.07 ind:imp:3s; +chiala chialer ver 7.25 13.78 0.00 0.07 ind:pas:3s; +chialaient chialer ver 7.25 13.78 0.01 0.00 ind:imp:3p; +chialais chialer ver 7.25 13.78 0.17 0.41 ind:imp:1s;ind:imp:2s; +chialait chialer ver 7.25 13.78 0.20 0.74 ind:imp:3s; +chialant chialer ver 7.25 13.78 0.01 0.74 par:pre; +chiale chialer ver 7.25 13.78 1.28 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chialent chialer ver 7.25 13.78 0.34 0.14 ind:pre:3p; +chialer chialer ver 7.25 13.78 4.01 6.28 inf; +chialera chialer ver 7.25 13.78 0.03 0.00 ind:fut:3s; +chialeraient chialer ver 7.25 13.78 0.00 0.07 cnd:pre:3p; +chialerais chialer ver 7.25 13.78 0.11 0.20 cnd:pre:1s; +chialerait chialer ver 7.25 13.78 0.00 0.07 cnd:pre:3s; +chialeras chialer ver 7.25 13.78 0.00 0.07 ind:fut:2s; +chialeries chialerie nom f p 0.00 0.07 0.00 0.07 +chiales chialer ver 7.25 13.78 0.72 0.47 ind:pre:2s; +chialeur chialeur nom m s 0.04 0.07 0.03 0.00 +chialeuse chialeur nom f s 0.04 0.07 0.01 0.07 +chialez chialer ver 7.25 13.78 0.01 0.00 ind:pre:2p; +chialèrent chialer ver 7.25 13.78 0.00 0.07 ind:pas:3p; +chialé chialer ver m s 7.25 13.78 0.35 0.95 par:pas; +chiant chiant adj m s 11.89 2.84 8.46 1.01 +chiante chiant adj f s 11.89 2.84 2.09 1.08 +chiantes chiant adj f p 11.89 2.84 0.30 0.20 +chianti chianti nom m s 0.32 0.95 0.32 0.95 +chiants chiant adj m p 11.89 2.84 1.03 0.54 +chiard chiard nom m s 0.68 0.54 0.47 0.14 +chiards chiard nom m p 0.68 0.54 0.22 0.41 +chiasma chiasma nom m s 0.01 0.07 0.01 0.07 +chiasme chiasme nom m s 0.01 0.00 0.01 0.00 +chiasse chiasse nom f s 0.94 1.49 0.81 1.28 +chiasses chiasse nom f p 0.94 1.49 0.14 0.20 +chiasseux chiasseux adj m s 0.02 0.20 0.02 0.20 +chiatique chiatique adj s 0.11 0.20 0.11 0.14 +chiatiques chiatique adj m p 0.11 0.20 0.00 0.07 +chibouk chibouk nom m s 0.00 0.34 0.00 0.34 +chibre chibre nom m s 0.25 0.74 0.25 0.74 +chic_type chic_type adj m s 0.01 0.00 0.01 0.00 +chic chic ono 1.20 0.68 1.20 0.68 +chica chica nom f s 0.71 0.07 0.68 0.07 +chicanait chicaner ver 0.59 0.68 0.01 0.07 ind:imp:3s; +chicanant chicaner ver 0.59 0.68 0.01 0.07 par:pre; +chicane chicane nom f s 0.45 2.16 0.41 1.22 +chicanent chicaner ver 0.59 0.68 0.00 0.07 ind:pre:3p; +chicaner chicaner ver 0.59 0.68 0.24 0.20 inf; +chicaneries chicanerie nom f p 0.03 0.00 0.03 0.00 +chicanerons chicaner ver 0.59 0.68 0.00 0.07 ind:fut:1p; +chicanes chicane nom f p 0.45 2.16 0.04 0.95 +chicaneur chicaneur nom m s 0.21 0.00 0.21 0.00 +chicanez chicaner ver 0.59 0.68 0.18 0.00 imp:pre:2p;ind:pre:2p; +chicanier chicanier adj m s 0.00 0.20 0.00 0.14 +chicaniers chicanier nom m p 0.01 0.07 0.01 0.07 +chicanière chicanier adj f s 0.00 0.20 0.00 0.07 +chicano chicano adj m s 0.13 0.00 0.11 0.00 +chicanons chicaner ver 0.59 0.68 0.05 0.00 imp:pre:1p; +chicanos chicano nom m p 0.25 0.07 0.19 0.00 +chicané chicaner ver m s 0.59 0.68 0.03 0.00 par:pas; +chicanées chicaner ver f p 0.59 0.68 0.00 0.07 par:pas; +chicas chica nom f p 0.71 0.07 0.03 0.00 +chiche_kebab chiche_kebab nom m s 0.24 0.07 0.24 0.07 +chiche chiche ono 0.75 0.74 0.75 0.74 +chichement chichement adv 0.04 1.42 0.04 1.42 +chiches chiche adj p 3.62 3.18 2.12 1.22 +chichi chichi nom m s 1.46 5.00 0.55 3.04 +chichis chichi nom m p 1.46 5.00 0.91 1.96 +chichiteuse chichiteux adj f s 0.02 0.68 0.01 0.34 +chichiteuses chichiteux adj f p 0.02 0.68 0.00 0.27 +chichiteux chichiteux adj m p 0.02 0.68 0.01 0.07 +chicon chicon nom m s 0.05 0.00 0.05 0.00 +chicore chicorer ver 0.00 0.61 0.00 0.27 ind:pre:1s;ind:pre:3s; +chicorent chicorer ver 0.00 0.61 0.00 0.14 ind:pre:3p; +chicorer chicorer ver 0.00 0.61 0.00 0.07 inf; +chicores chicorer ver 0.00 0.61 0.00 0.07 ind:pre:2s; +chicoré chicorer ver m s 0.00 0.61 0.00 0.07 par:pas; +chicorée chicorée nom f s 0.59 1.69 0.59 1.42 +chicorées chicorée nom f p 0.59 1.69 0.00 0.27 +chicot chicot nom m s 0.22 3.58 0.14 0.14 +chicote chicot nom f s 0.22 3.58 0.03 0.54 +chicoter chicoter ver 0.00 0.14 0.00 0.07 inf; +chicotin chicotin nom m s 0.01 0.00 0.01 0.00 +chicots chicot nom m p 0.22 3.58 0.06 2.91 +chicotte chicotte nom f s 0.00 0.07 0.00 0.07 +chicoté chicoter ver m s 0.00 0.14 0.00 0.07 par:pas; +chics chic adj p 19.57 14.32 1.95 1.82 +chie chier ver 67.53 22.64 4.31 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +chien_assis chien_assis nom m 0.00 0.07 0.00 0.07 +chien_loup chien_loup nom m s 0.27 1.08 0.14 1.08 +chien_robot chien_robot nom m s 0.01 0.00 0.01 0.00 +chien_étoile chien_étoile nom m s 0.00 0.07 0.00 0.07 +chien chien nom m s 222.38 184.59 158.77 117.64 +chienchien chienchien nom m s 0.30 0.20 0.30 0.14 +chienchiens chienchien nom m p 0.30 0.20 0.00 0.07 +chiendent chiendent nom m s 0.69 2.16 0.69 2.16 +chienlit chienlit nom s 0.60 0.74 0.60 0.74 +chiennasse chienner ver 0.00 0.07 0.00 0.07 sub:imp:1s; +chienne chien nom f s 222.38 184.59 12.84 11.55 +chiennerie chiennerie nom f s 0.30 0.68 0.30 0.61 +chienneries chiennerie nom f p 0.30 0.68 0.00 0.07 +chiennes chienne nom f p 1.15 0.00 1.15 0.00 +chien_loup chien_loup nom m p 0.27 1.08 0.12 0.00 +chiens chien nom m p 222.38 184.59 50.76 54.53 +chient chier ver 67.53 22.64 0.89 0.34 ind:pre:3p; +chier chier ver 67.53 22.64 53.30 18.11 inf; +chiera chier ver 67.53 22.64 0.15 0.27 ind:fut:3s; +chierai chier ver 67.53 22.64 0.24 0.00 ind:fut:1s; +chierais chier ver 67.53 22.64 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +chieras chier ver 67.53 22.64 0.06 0.00 ind:fut:2s; +chierez chier ver 67.53 22.64 0.02 0.00 ind:fut:2p; +chierie chierie nom f s 0.53 0.88 0.39 0.74 +chieries chierie nom f p 0.53 0.88 0.14 0.14 +chieront chier ver 67.53 22.64 0.15 0.00 ind:fut:3p; +chies chier ver 67.53 22.64 1.22 0.14 ind:pre:2s; +chieur chieur nom m s 2.29 0.88 0.96 0.34 +chieurs chieur nom m p 2.29 0.88 0.22 0.07 +chieuse chieur nom f s 2.29 0.88 1.11 0.47 +chieuses chieuse nom f p 0.01 0.00 0.01 0.00 +chiez chier ver 67.53 22.64 0.21 0.20 imp:pre:2p;ind:pre:2p; +chiffe chiffe nom f s 0.89 1.62 0.81 1.55 +chiffes chiffe nom f p 0.89 1.62 0.09 0.07 +chiffon chiffon nom m s 6.11 18.99 3.67 10.41 +chiffonna chiffonner ver 1.65 2.30 0.00 0.20 ind:pas:3s; +chiffonnade chiffonnade nom f s 0.02 0.14 0.02 0.07 +chiffonnades chiffonnade nom f p 0.02 0.14 0.00 0.07 +chiffonnaient chiffonner ver 1.65 2.30 0.01 0.07 ind:imp:3p; +chiffonnait chiffonner ver 1.65 2.30 0.06 0.61 ind:imp:3s; +chiffonnant chiffonner ver 1.65 2.30 0.01 0.14 par:pre; +chiffonne chiffonner ver 1.65 2.30 1.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chiffonner chiffonner ver 1.65 2.30 0.06 0.34 inf; +chiffonnier chiffonnier nom m s 0.99 3.58 0.76 1.62 +chiffonniers chiffonnier nom m p 0.99 3.58 0.13 1.35 +chiffonnière chiffonnier nom f s 0.99 3.58 0.10 0.54 +chiffonnières chiffonnière nom f p 0.01 0.00 0.01 0.00 +chiffonné chiffonné adj m s 0.98 2.16 0.60 0.88 +chiffonnée chiffonné adj f s 0.98 2.16 0.25 0.41 +chiffonnées chiffonné adj f p 0.98 2.16 0.00 0.47 +chiffonnés chiffonné adj m p 0.98 2.16 0.14 0.41 +chiffons chiffon nom m p 6.11 18.99 2.43 8.58 +chiffrable chiffrable adj s 0.01 0.00 0.01 0.00 +chiffrage chiffrage nom m s 0.00 0.07 0.00 0.07 +chiffrait chiffrer ver 0.64 1.01 0.00 0.07 ind:imp:3s; +chiffrant chiffrer ver 0.64 1.01 0.02 0.00 par:pre; +chiffre chiffre nom m s 27.28 33.11 9.38 12.70 +chiffrement chiffrement nom m s 0.13 0.00 0.13 0.00 +chiffrent chiffrer ver 0.64 1.01 0.02 0.07 ind:pre:3p; +chiffrer chiffrer ver 0.64 1.01 0.19 0.27 inf; +chiffres_clé chiffres_clé nom m p 0.00 0.07 0.00 0.07 +chiffres chiffre nom m p 27.28 33.11 17.90 20.41 +chiffreur chiffreur nom m s 0.02 0.00 0.01 0.00 +chiffreuse chiffreur nom f s 0.02 0.00 0.01 0.00 +chiffré chiffré adj m s 0.07 1.35 0.05 0.41 +chiffrée chiffrer ver f s 0.64 1.01 0.16 0.00 par:pas; +chiffrées chiffré adj f p 0.07 1.35 0.00 0.20 +chiffrés chiffrer ver m p 0.64 1.01 0.01 0.14 par:pas; +chignole chignole nom f s 0.31 0.47 0.30 0.34 +chignoles chignole nom f p 0.31 0.47 0.01 0.14 +chignon chignon nom m s 1.31 12.77 1.29 11.76 +chignons chignon nom m p 1.31 12.77 0.02 1.01 +chihuahua chihuahua nom m s 0.38 0.07 0.30 0.07 +chihuahuas chihuahua nom m p 0.38 0.07 0.07 0.00 +chiites chiite nom p 0.00 0.07 0.00 0.07 +chiles chile nom m p 0.03 0.00 0.03 0.00 +chili chili nom m s 2.21 0.14 2.18 0.07 +chilien chilien adj m s 2.21 1.28 1.03 0.07 +chilienne chilien adj f s 2.21 1.28 0.58 0.68 +chiliennes chilien adj f p 2.21 1.28 0.16 0.14 +chiliens chilien nom m p 0.83 0.20 0.64 0.00 +chilis chili nom m p 2.21 0.14 0.04 0.07 +chilom chilom nom m s 0.10 0.00 0.10 0.00 +chimie chimie nom f s 5.29 5.20 5.28 5.00 +chimies chimie nom f p 5.29 5.20 0.01 0.20 +chimiothérapie chimiothérapie nom f s 1.05 0.14 1.05 0.14 +chimique chimique adj s 10.51 4.59 5.40 1.96 +chimiquement chimiquement adv 0.54 0.34 0.54 0.34 +chimiques chimique adj p 10.51 4.59 5.11 2.64 +chimiste chimiste nom s 1.90 1.55 1.60 1.15 +chimistes chimiste nom p 1.90 1.55 0.30 0.41 +chimpanzé chimpanzé nom m s 2.35 1.69 1.96 1.15 +chimpanzés chimpanzé nom m p 2.35 1.69 0.39 0.54 +chimère chimère nom f s 2.94 5.54 1.74 2.23 +chimères chimère nom f p 2.94 5.54 1.21 3.31 +chimérique chimérique adj s 0.55 2.23 0.52 1.15 +chimériquement chimériquement adv 0.00 0.07 0.00 0.07 +chimériques chimérique adj p 0.55 2.23 0.03 1.08 +china chiner ver 0.81 8.45 0.76 7.57 ind:pas:3s; +chinaient chiner ver 0.81 8.45 0.00 0.07 ind:imp:3p; +chinait chiner ver 0.81 8.45 0.00 0.14 ind:imp:3s; +chinant chiner ver 0.81 8.45 0.00 0.07 par:pre; +chinchard chinchard nom m s 0.00 0.07 0.00 0.07 +chinchilla chinchilla nom m s 0.13 0.41 0.12 0.34 +chinchillas chinchilla nom m p 0.13 0.41 0.01 0.07 +chine chine nom s 0.67 0.54 0.67 0.54 +chiner chiner ver 0.81 8.45 0.04 0.14 inf; +chinera chiner ver 0.81 8.45 0.01 0.00 ind:fut:3s; +chinetoque chinetoque nom m s 1.80 1.01 1.06 0.61 +chinetoques chinetoque nom m p 1.80 1.01 0.74 0.41 +chineur chineur nom m s 0.01 0.34 0.00 0.20 +chineurs chineur nom m p 0.01 0.34 0.01 0.14 +chinois chinois nom m s 24.73 16.22 21.88 14.59 +chinoise chinois adj f s 21.34 25.14 5.47 5.14 +chinoiser chinoiser ver 0.14 0.07 0.14 0.07 inf; +chinoiserie chinoiserie nom f s 0.31 0.68 0.00 0.20 +chinoiseries chinoiserie nom f p 0.31 0.68 0.31 0.47 +chinoises chinois adj f p 21.34 25.14 1.25 3.38 +chinook chinook nom m s 0.05 0.27 0.05 0.27 +chintz chintz nom m 0.09 0.27 0.09 0.27 +chiné chiné adj m s 0.03 0.41 0.03 0.20 +chinée chiné adj f s 0.03 0.41 0.00 0.14 +chinées chiner ver f p 0.81 8.45 0.00 0.14 par:pas; +chinés chiné adj m p 0.03 0.41 0.00 0.07 +chiot chiot nom m s 5.67 2.70 3.98 1.49 +chiots chiot nom m p 5.67 2.70 1.70 1.22 +chiotte chiotte nom f s 12.86 14.73 1.20 1.42 +chiottes chiotte nom f p 12.86 14.73 11.66 13.31 +chiourme chiourme nom f s 0.00 0.20 0.00 0.20 +chip chip nom s 2.51 0.00 2.51 0.00 +chipa chiper ver 2.34 2.97 0.00 0.14 ind:pas:3s; +chipaient chiper ver 2.34 2.97 0.00 0.14 ind:imp:3p; +chipais chiper ver 2.34 2.97 0.01 0.07 ind:imp:1s; +chipait chiper ver 2.34 2.97 0.14 0.34 ind:imp:3s; +chipant chiper ver 2.34 2.97 0.00 0.07 par:pre; +chipe chiper ver 2.34 2.97 0.45 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chiper chiper ver 2.34 2.97 0.89 0.95 inf; +chiperaient chiper ver 2.34 2.97 0.01 0.00 cnd:pre:3p; +chiperiez chiper ver 2.34 2.97 0.01 0.00 cnd:pre:2p; +chipeur chipeur adj m s 0.00 0.07 0.00 0.07 +chipez chiper ver 2.34 2.97 0.02 0.00 imp:pre:2p;ind:pre:2p; +chipie chipie nom f s 0.76 0.88 0.58 0.68 +chipies chipie nom f p 0.76 0.88 0.18 0.20 +chipolata chipolata nom f s 0.23 0.47 0.03 0.27 +chipolatas chipolata nom f p 0.23 0.47 0.20 0.20 +chipota chipoter ver 0.50 1.22 0.00 0.07 ind:pas:3s; +chipotage chipotage nom m s 0.04 0.20 0.03 0.14 +chipotages chipotage nom m p 0.04 0.20 0.02 0.07 +chipotais chipoter ver 0.50 1.22 0.00 0.07 ind:imp:1s; +chipotait chipoter ver 0.50 1.22 0.02 0.34 ind:imp:3s; +chipotant chipoter ver 0.50 1.22 0.00 0.07 par:pre; +chipote chipoter ver 0.50 1.22 0.08 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chipotent chipoter ver 0.50 1.22 0.04 0.00 ind:pre:3p; +chipoter chipoter ver 0.50 1.22 0.27 0.27 inf; +chipotes chipoter ver 0.50 1.22 0.05 0.00 ind:pre:2s; +chipoteur chipoteur adj m s 0.00 0.20 0.00 0.14 +chipoteuse chipoteur adj f s 0.00 0.20 0.00 0.07 +chipotez chipoter ver 0.50 1.22 0.01 0.00 imp:pre:2p; +chipotons chipoter ver 0.50 1.22 0.03 0.07 imp:pre:1p; +chipoté chipoter ver m s 0.50 1.22 0.00 0.07 par:pas; +chippendale chippendale nom m s 0.12 0.00 0.01 0.00 +chippendales chippendale nom m p 0.12 0.00 0.10 0.00 +chips chips nom p 6.72 0.95 6.72 0.95 +chipèrent chiper ver 2.34 2.97 0.00 0.07 ind:pas:3p; +chipé chiper ver m s 2.34 2.97 0.60 0.74 par:pas; +chipée chiper ver f s 2.34 2.97 0.18 0.14 par:pas; +chipées chiper ver f p 2.34 2.97 0.01 0.14 par:pas; +chipés chiper ver m p 2.34 2.97 0.03 0.14 par:pas; +chiquaient chiquer ver 0.50 2.70 0.00 0.14 ind:imp:3p; +chiquait chiquer ver 0.50 2.70 0.05 0.20 ind:imp:3s; +chiquant chiquer ver 0.50 2.70 0.00 0.47 par:pre; +chique chique nom f s 0.40 2.23 0.24 2.16 +chiquement chiquement adv 0.01 0.14 0.01 0.14 +chiquenaude chiquenaude nom f s 0.03 1.22 0.03 1.15 +chiquenaudes chiquenaude nom f p 0.03 1.22 0.00 0.07 +chiquent chiquer ver 0.50 2.70 0.02 0.00 ind:pre:3p; +chiquer chiquer ver 0.50 2.70 0.16 1.35 inf; +chiquerai chiquer ver 0.50 2.70 0.00 0.07 ind:fut:1s; +chiqueront chiquer ver 0.50 2.70 0.00 0.07 ind:fut:3p; +chiques chique nom f p 0.40 2.23 0.16 0.07 +chiqueur chiqueur nom m s 0.01 0.27 0.01 0.07 +chiqueurs chiqueur nom m p 0.01 0.27 0.00 0.14 +chiqueuses chiqueur nom f p 0.01 0.27 0.00 0.07 +chiqué chiqué nom m s 0.58 1.08 0.58 1.01 +chiqués chiqué nom m p 0.58 1.08 0.00 0.07 +chiraquien chiraquien adj m s 0.00 0.07 0.00 0.07 +chiricahua chiricahua adj s 0.10 0.00 0.05 0.00 +chiricahuas chiricahua nom p 0.19 0.00 0.16 0.00 +chiromancie chiromancie nom f s 0.02 0.07 0.02 0.07 +chiromancien chiromancien nom m s 0.16 0.20 0.00 0.07 +chiromancienne chiromancien nom f s 0.16 0.20 0.14 0.07 +chiromanciens chiromancien nom m p 0.16 0.20 0.03 0.07 +chiropracteur chiropracteur nom m s 0.57 0.00 0.57 0.00 +chiropraticien chiropraticien nom m s 0.06 0.00 0.04 0.00 +chiropraticienne chiropraticien nom f s 0.06 0.00 0.02 0.00 +chiropratique chiropratique nom f s 0.02 0.00 0.02 0.00 +chiropraxie chiropraxie nom f s 0.07 0.00 0.07 0.00 +chiroptère chiroptère nom m s 0.03 0.00 0.03 0.00 +chiroubles chiroubles nom m 0.00 0.20 0.00 0.20 +chirurgical chirurgical adj m s 3.60 2.16 1.23 0.54 +chirurgicale chirurgical adj f s 3.60 2.16 1.84 1.01 +chirurgicalement chirurgicalement adv 0.33 0.20 0.33 0.20 +chirurgicales chirurgical adj f p 3.60 2.16 0.27 0.41 +chirurgicaux chirurgical adj m p 3.60 2.16 0.26 0.20 +chirurgie chirurgie nom f s 11.84 2.03 11.74 2.03 +chirurgien_dentiste chirurgien_dentiste nom s 0.02 0.27 0.02 0.27 +chirurgien chirurgien nom m s 15.57 8.45 12.38 6.89 +chirurgienne chirurgien nom f s 15.57 8.45 0.27 0.00 +chirurgiens chirurgien nom m p 15.57 8.45 2.92 1.55 +chirurgies chirurgie nom f p 11.84 2.03 0.10 0.00 +chisel chisel nom m s 0.01 0.00 0.01 0.00 +chistera chistera nom m s 0.11 0.00 0.11 0.00 +chitine chitine nom f s 0.01 0.07 0.01 0.07 +chitineux chitineux adj m p 0.00 0.07 0.00 0.07 +chiton chiton nom m s 0.00 0.07 0.00 0.07 +chié chier ver m s 67.53 22.64 3.72 1.49 par:pas; +chiée chiée nom f s 0.22 0.95 0.22 0.47 +chiées chier ver f p 67.53 22.64 0.01 0.00 par:pas; +chiure chiure nom f s 0.56 1.08 0.42 0.27 +chiures chiure nom f p 0.56 1.08 0.14 0.81 +chiés chier ver m p 67.53 22.64 0.01 0.00 par:pas; +chlamyde chlamyde nom f s 0.00 0.20 0.00 0.20 +chlamydia chlamydia nom f s 0.42 0.00 0.30 0.00 +chlamydiae chlamydia nom f p 0.42 0.00 0.12 0.00 +chlass chlass adj 0.03 0.00 0.03 0.00 +chleuh chleuh nom m s 0.22 0.54 0.04 0.07 +chleuhs chleuh nom m p 0.22 0.54 0.18 0.47 +chlingue chlinguer ver 0.21 0.07 0.18 0.07 ind:pre:1s;ind:pre:3s; +chlinguer chlinguer ver 0.21 0.07 0.01 0.00 inf; +chlingues chlinguer ver 0.21 0.07 0.02 0.00 ind:pre:2s; +chloral chloral nom m s 0.20 0.00 0.20 0.00 +chloramphénicol chloramphénicol nom m s 0.09 0.00 0.09 0.00 +chlorate chlorate nom m s 0.07 0.14 0.07 0.14 +chlore chlore nom m s 0.79 0.81 0.79 0.81 +chlorer chlorer ver 0.03 0.00 0.02 0.00 inf; +chlorhydrate chlorhydrate nom m s 0.17 0.00 0.17 0.00 +chlorhydrique chlorhydrique adj m s 0.22 0.07 0.22 0.07 +chlorique chlorique adj s 0.01 0.00 0.01 0.00 +chloroformant chloroformer ver 0.22 0.20 0.00 0.07 par:pre; +chloroforme chloroforme nom m s 0.63 0.41 0.63 0.41 +chloroformer chloroformer ver 0.22 0.20 0.02 0.07 inf; +chloroformes chloroformer ver 0.22 0.20 0.14 0.00 ind:pre:2s; +chloroformez chloroformer ver 0.22 0.20 0.01 0.00 imp:pre:2p; +chloroformisation chloroformisation nom f s 0.00 0.07 0.00 0.07 +chloroformé chloroformer ver m s 0.22 0.20 0.05 0.07 par:pas; +chlorophylle chlorophylle nom f s 0.25 0.68 0.25 0.68 +chlorophyllien chlorophyllien adj m s 0.00 0.07 0.00 0.07 +chlorophytums chlorophytum nom m p 0.01 0.00 0.01 0.00 +chloroplaste chloroplaste nom m s 0.01 0.00 0.01 0.00 +chloroquine chloroquine nom f s 0.01 0.00 0.01 0.00 +chlorotique chlorotique adj f s 0.00 0.27 0.00 0.14 +chlorotiques chlorotique adj f p 0.00 0.27 0.00 0.14 +chlorpromazine chlorpromazine nom f s 0.06 0.00 0.06 0.00 +chloré chloré adj m s 0.06 0.07 0.01 0.07 +chlorée chloré adj f s 0.06 0.07 0.05 0.00 +chlorure chlorure nom m s 0.33 0.14 0.32 0.07 +chlorures chlorure nom m p 0.33 0.14 0.01 0.07 +chnoque chnoque nom s 0.08 0.54 0.07 0.34 +chnoques chnoque nom p 0.08 0.54 0.01 0.20 +chnord chnord nom m s 0.00 0.07 0.00 0.07 +chnouf chnouf nom f s 0.02 0.07 0.02 0.07 +choanes choane nom m p 0.01 0.00 0.01 0.00 +choc choc nom m s 31.46 44.19 30.22 37.57 +chocard chocard nom m s 0.00 0.07 0.00 0.07 +chochotte chochotte nom f s 1.65 0.61 1.37 0.27 +chochottes chochotte nom f p 1.65 0.61 0.28 0.34 +chocolat chocolat nom m s 31.03 34.86 27.74 30.61 +chocolaterie chocolaterie nom f s 0.27 0.27 0.27 0.20 +chocolateries chocolaterie nom f p 0.27 0.27 0.00 0.07 +chocolatier chocolatier nom m s 0.11 0.27 0.11 0.14 +chocolatière chocolatier nom f s 0.11 0.27 0.00 0.14 +chocolats chocolat nom m p 31.03 34.86 3.29 4.26 +chocolaté chocolaté adj m s 0.81 0.07 0.17 0.07 +chocolatée chocolaté adj f s 0.81 0.07 0.27 0.00 +chocolatées chocolaté adj f p 0.81 0.07 0.36 0.00 +chocolatés chocolaté adj m p 0.81 0.07 0.01 0.00 +chocottes chocotte nom f p 0.45 0.95 0.45 0.95 +chocs choc nom m p 31.46 44.19 1.24 6.62 +choeur choeur nom m s 7.00 26.69 6.39 24.86 +choeurs choeur nom m p 7.00 26.69 0.61 1.82 +choie choyer ver 0.40 2.03 0.02 0.20 ind:pre:3s; +choient choyer ver 0.40 2.03 0.01 0.07 ind:pre:3p; +choieront choyer ver 0.40 2.03 0.00 0.07 ind:fut:3p; +choir choir ver 2.05 10.00 0.33 6.89 inf; +choiras choir ver 2.05 10.00 0.00 0.07 ind:fut:2s; +chois choir ver 2.05 10.00 0.01 0.27 imp:pre:2s;ind:pre:1s; +choisîmes choisir ver 170.48 133.92 0.01 0.20 ind:pas:1p; +choisît choisir ver 170.48 133.92 0.00 0.20 sub:imp:3s; +choisi choisir ver m s 170.48 133.92 58.19 44.53 par:pas; +choisie choisir ver f s 170.48 133.92 6.78 5.34 par:pas; +choisies choisir ver f p 170.48 133.92 0.67 1.55 par:pas; +choisir choisir ver 170.48 133.92 47.09 35.00 inf; +choisira choisir ver 170.48 133.92 1.92 1.01 ind:fut:3s; +choisirai choisir ver 170.48 133.92 1.27 0.47 ind:fut:1s; +choisiraient choisir ver 170.48 133.92 0.06 0.20 cnd:pre:3p; +choisirais choisir ver 170.48 133.92 1.68 0.74 cnd:pre:1s;cnd:pre:2s; +choisirait choisir ver 170.48 133.92 0.59 1.22 cnd:pre:3s; +choisiras choisir ver 170.48 133.92 0.88 0.20 ind:fut:2s; +choisirent choisir ver 170.48 133.92 0.06 0.81 ind:pas:3p; +choisirez choisir ver 170.48 133.92 0.73 0.00 ind:fut:2p; +choisiriez choisir ver 170.48 133.92 0.23 0.20 cnd:pre:2p; +choisirions choisir ver 170.48 133.92 0.04 0.07 cnd:pre:1p; +choisirons choisir ver 170.48 133.92 0.36 0.20 ind:fut:1p; +choisiront choisir ver 170.48 133.92 0.13 0.20 ind:fut:3p; +choisis choisir ver m p 170.48 133.92 21.33 8.78 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:1s;par:pas; +choisissaient choisir ver 170.48 133.92 0.16 1.08 ind:imp:3p; +choisissais choisir ver 170.48 133.92 0.41 0.81 ind:imp:1s;ind:imp:2s; +choisissait choisir ver 170.48 133.92 0.64 6.15 ind:imp:3s; +choisissant choisir ver 170.48 133.92 1.18 3.24 par:pre; +choisisse choisir ver 170.48 133.92 1.68 1.15 sub:pre:1s;sub:pre:3s; +choisissent choisir ver 170.48 133.92 2.13 1.96 ind:pre:3p; +choisisses choisir ver 170.48 133.92 0.77 0.00 sub:pre:2s; +choisissez choisir ver 170.48 133.92 9.45 1.55 imp:pre:2p;ind:pre:2p; +choisissiez choisir ver 170.48 133.92 0.23 0.27 ind:imp:2p; +choisissions choisir ver 170.48 133.92 0.08 0.27 ind:imp:1p; +choisissons choisir ver 170.48 133.92 0.50 0.47 imp:pre:1p;ind:pre:1p; +choisit choisir ver 170.48 133.92 11.23 16.01 ind:pre:3s;ind:pas:3s; +choit choir ver 2.05 10.00 0.00 0.68 ind:pre:3s; +choix choix nom m 113.35 51.42 113.35 51.42 +choke choke nom m s 0.01 0.00 0.01 0.00 +châle châle nom m s 2.23 12.09 2.08 9.32 +cholera choler ver 0.02 0.00 0.02 0.00 ind:fut:3s; +châles châle nom m p 2.23 12.09 0.15 2.77 +cholestérol cholestérol nom m s 1.81 0.41 1.81 0.41 +choline choline nom f s 0.11 0.00 0.10 0.00 +cholines choline nom f p 0.11 0.00 0.01 0.00 +cholinestérase cholinestérase nom f s 0.02 0.00 0.02 0.00 +cholique cholique adj m s 0.01 0.00 0.01 0.00 +châlit châlit nom m s 0.00 0.41 0.00 0.27 +châlits châlit nom m p 0.00 0.41 0.00 0.14 +châlonnais châlonnais adj m 0.00 0.07 0.00 0.07 +châlonnais châlonnais nom m 0.00 0.07 0.00 0.07 +cholécystectomie cholécystectomie nom f s 0.03 0.00 0.03 0.00 +cholécystite cholécystite nom f s 0.03 0.00 0.03 0.00 +cholédoque cholédoque adj m s 0.04 0.00 0.04 0.00 +choléra choléra nom m s 2.52 2.43 2.52 2.36 +choléras choléra nom m p 2.52 2.43 0.00 0.07 +cholériques cholérique nom p 0.01 0.07 0.01 0.07 +chop_suey chop_suey nom m s 0.13 0.00 0.13 0.00 +chopaient choper ver 17.69 4.05 0.01 0.07 ind:imp:3p; +chopais choper ver 17.69 4.05 0.12 0.07 ind:imp:1s;ind:imp:2s; +chopait choper ver 17.69 4.05 0.14 0.14 ind:imp:3s; +chopant choper ver 17.69 4.05 0.00 0.07 par:pre; +chope choper ver 17.69 4.05 4.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +chopent choper ver 17.69 4.05 0.56 0.41 ind:pre:3p; +choper choper ver 17.69 4.05 6.06 1.28 inf; +chopera choper ver 17.69 4.05 0.31 0.00 ind:fut:3s; +choperai choper ver 17.69 4.05 0.10 0.00 ind:fut:1s; +choperais choper ver 17.69 4.05 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +choperait choper ver 17.69 4.05 0.01 0.00 cnd:pre:3s; +choperas choper ver 17.69 4.05 0.03 0.00 ind:fut:2s; +choperez choper ver 17.69 4.05 0.04 0.00 ind:fut:2p; +choperons choper ver 17.69 4.05 0.01 0.00 ind:fut:1p; +choperont choper ver 17.69 4.05 0.06 0.00 ind:fut:3p; +chopes choper ver 17.69 4.05 0.58 0.00 ind:pre:2s;sub:pre:2s; +chopez choper ver 17.69 4.05 1.27 0.00 imp:pre:2p;ind:pre:2p; +chopine chopine nom f s 0.03 2.70 0.02 2.09 +chopines chopine nom f p 0.03 2.70 0.01 0.61 +chopons choper ver 17.69 4.05 0.43 0.00 imp:pre:1p; +choppe chopper ver 1.90 0.20 0.34 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +choppent chopper ver 1.90 0.20 0.03 0.07 ind:pre:3p; +chopper chopper ver 1.90 0.20 0.95 0.07 inf; +choppers chopper nom m p 0.29 0.20 0.01 0.00 +choppes chopper ver 1.90 0.20 0.01 0.00 ind:pre:2s; +choppez chopper ver 1.90 0.20 0.05 0.00 imp:pre:2p;ind:pre:2p; +choppons chopper ver 1.90 0.20 0.02 0.00 imp:pre:1p; +choppé chopper ver m s 1.90 0.20 0.47 0.00 par:pas; +choppée chopper ver f s 1.90 0.20 0.01 0.00 par:pas; +chopé choper ver m s 17.69 4.05 3.42 1.01 par:pas; +chopée choper ver f s 17.69 4.05 0.34 0.00 par:pas; +chopées choper ver f p 17.69 4.05 0.00 0.07 par:pas; +chopés choper ver m p 17.69 4.05 0.10 0.14 par:pas; +choqua choquer ver 13.56 15.41 0.01 0.61 ind:pas:3s; +choquaient choquer ver 13.56 15.41 0.00 0.54 ind:imp:3p; +choquait choquer ver 13.56 15.41 0.30 2.23 ind:imp:3s; +choquant choquant adj m s 3.61 1.69 2.43 0.81 +choquante choquant adj f s 3.61 1.69 0.43 0.68 +choquantes choquant adj f p 3.61 1.69 0.58 0.20 +choquants choquant adj m p 3.61 1.69 0.17 0.00 +choque choquer ver 13.56 15.41 4.01 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +choquent choquer ver 13.56 15.41 0.15 0.34 ind:pre:3p; +choquer choquer ver 13.56 15.41 2.39 3.04 inf;; +choquera choquer ver 13.56 15.41 0.05 0.27 ind:fut:3s; +choqueraient choquer ver 13.56 15.41 0.01 0.07 cnd:pre:3p; +choquerais choquer ver 13.56 15.41 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +choquerait choquer ver 13.56 15.41 0.21 0.20 cnd:pre:3s; +choqueras choquer ver 13.56 15.41 0.01 0.00 ind:fut:2s; +choquez choquer ver 13.56 15.41 0.09 0.00 imp:pre:2p;ind:pre:2p; +choquons choquer ver 13.56 15.41 0.01 0.00 ind:pre:1p; +choquèrent choquer ver 13.56 15.41 0.01 0.07 ind:pas:3p; +choqué choquer ver m s 13.56 15.41 3.44 2.64 par:pas; +choquée choquer ver f s 13.56 15.41 1.35 1.35 par:pas; +choquées choquer ver f p 13.56 15.41 0.14 0.41 par:pas; +choqués choquer ver m p 13.56 15.41 1.00 0.61 par:pas; +choral choral adj m s 0.26 0.27 0.14 0.00 +chorale chorale nom f s 2.63 1.96 2.56 1.76 +chorales chorale nom f p 2.63 1.96 0.07 0.20 +chorals choral nom m p 0.01 0.95 0.00 0.07 +choraux choral adj m p 0.26 0.27 0.00 0.20 +chorba chorba nom f s 0.00 0.07 0.00 0.07 +choreutes choreute nom m p 0.00 0.07 0.00 0.07 +choriste choriste nom s 0.46 1.35 0.32 0.27 +choristes choriste nom p 0.46 1.35 0.14 1.08 +chorizo chorizo nom m s 1.57 0.20 1.37 0.14 +chorizos chorizo nom m p 1.57 0.20 0.20 0.07 +chortens chorten nom m p 0.00 0.07 0.00 0.07 +chorée chorée nom f s 0.04 0.00 0.04 0.00 +chorégraphe chorégraphe nom s 0.71 0.47 0.48 0.41 +chorégraphes chorégraphe nom p 0.71 0.47 0.22 0.07 +chorégraphie chorégraphie nom f s 1.06 0.68 0.99 0.54 +chorégraphier chorégraphier ver 0.21 0.00 0.20 0.00 inf; +chorégraphies chorégraphie nom f p 1.06 0.68 0.07 0.14 +chorégraphique chorégraphique adj m s 0.02 0.34 0.02 0.27 +chorégraphiques chorégraphique adj p 0.02 0.34 0.00 0.07 +chorégraphiées chorégraphier ver f p 0.21 0.00 0.01 0.00 par:pas; +chorus chorus nom m 0.15 1.49 0.15 1.49 +chose chose nom f s 1773.62 1057.64 1321.79 695.20 +choser choser ver 0.01 0.07 0.00 0.07 inf; +choses chose nom f p 1773.62 1057.64 451.83 362.43 +chosification chosification nom f s 0.00 0.07 0.00 0.07 +chosifient chosifier ver 0.01 0.07 0.00 0.07 ind:pre:3p; +chosifier chosifier ver 0.01 0.07 0.01 0.00 inf; +châsse châsse nom f s 0.29 8.99 0.29 3.18 +châsses châsse nom m p 0.29 8.99 0.00 5.81 +châssis châssis nom m 0.97 4.46 0.97 4.46 +châtaigne châtaigne nom f s 1.24 2.50 0.55 0.88 +châtaignent châtaigner ver 0.14 0.20 0.00 0.07 ind:pre:3p; +châtaigner châtaigner ver 0.14 0.20 0.12 0.07 inf; +châtaigneraie châtaigneraie nom f s 0.00 0.54 0.00 0.20 +châtaigneraies châtaigneraie nom f p 0.00 0.54 0.00 0.34 +châtaignes châtaigne nom f p 1.24 2.50 0.69 1.62 +châtaignier châtaignier nom m s 0.14 3.38 0.14 1.76 +châtaigniers châtaignier nom m p 0.14 3.38 0.00 1.62 +châtaigné châtaigner ver m s 0.14 0.20 0.02 0.07 par:pas; +châtain châtain adj m s 0.81 4.26 0.34 1.55 +châtaine châtain adj f s 0.81 4.26 0.00 0.20 +châtaines châtain adj f p 0.81 4.26 0.01 0.07 +châtains châtain adj m p 0.81 4.26 0.46 2.43 +château_fort château_fort nom m s 0.00 0.07 0.00 0.07 +château château nom m s 43.68 74.12 40.51 63.38 +châteaubriant châteaubriant nom m s 0.13 0.00 0.13 0.00 +châteaux château nom m p 43.68 74.12 3.17 10.74 +châtel châtel adj s 0.00 0.07 0.00 0.07 +châtelain châtelain nom m s 0.30 4.26 0.27 1.69 +châtelaine châtelain nom f s 0.30 4.26 0.01 1.01 +châtelaines châtelain nom f p 0.30 4.26 0.00 0.07 +châtelains châtelain nom m p 0.30 4.26 0.02 1.49 +châtelet châtelet nom m s 0.00 0.14 0.00 0.14 +châtellenie châtellenie nom f s 0.00 0.07 0.00 0.07 +châtiaient châtier ver 3.25 4.53 0.00 0.07 ind:imp:3p; +châtiait châtier ver 3.25 4.53 0.00 0.20 ind:imp:3s; +châtiant châtier ver 3.25 4.53 0.00 0.07 par:pre; +châtie châtier ver 3.25 4.53 0.54 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +châtier châtier ver 3.25 4.53 1.55 1.89 inf; +châtiera châtier ver 3.25 4.53 0.04 0.00 ind:fut:3s; +châtierai châtier ver 3.25 4.53 0.12 0.00 ind:fut:1s; +châtierait châtier ver 3.25 4.53 0.00 0.07 cnd:pre:3s; +châtiez châtier ver 3.25 4.53 0.16 0.07 imp:pre:2p; +châtiment châtiment nom m s 7.54 9.12 6.62 7.50 +châtiments châtiment nom m p 7.54 9.12 0.93 1.62 +châtié châtier ver m s 3.25 4.53 0.47 1.28 par:pas; +châtiée châtier ver f s 3.25 4.53 0.05 0.20 par:pas; +châtiés châtier ver m p 3.25 4.53 0.32 0.34 par:pas; +châtrage châtrage nom m s 0.00 0.07 0.00 0.07 +châtraient châtrer ver 0.94 0.68 0.00 0.14 ind:imp:3p; +châtre châtrer ver 0.94 0.68 0.01 0.14 ind:pre:1s;ind:pre:3s; +châtrent châtrer ver 0.94 0.68 0.01 0.07 ind:pre:3p; +châtrer châtrer ver 0.94 0.68 0.47 0.20 inf; +châtreront châtrer ver 0.94 0.68 0.00 0.07 ind:fut:3p; +châtron châtron nom m s 0.00 0.14 0.00 0.07 +châtrons châtron nom m p 0.00 0.14 0.00 0.07 +châtré châtré adj m s 0.21 0.61 0.18 0.34 +châtrés châtrer ver m p 0.94 0.68 0.36 0.00 par:pas; +chotts chott nom m p 0.00 0.14 0.00 0.14 +chou_fleur chou_fleur nom m s 0.54 1.01 0.54 1.01 +chou_palmiste chou_palmiste nom m s 0.00 0.07 0.00 0.07 +chou_rave chou_rave nom m s 0.00 0.20 0.00 0.20 +chou chou nom m s 29.86 21.96 25.50 13.99 +chouïa chouïa nom m s 0.25 1.82 0.25 1.82 +chouan chouan nom m s 0.14 1.28 0.01 0.20 +chouannerie chouannerie nom f s 0.00 0.34 0.00 0.34 +chouans chouan nom m p 0.14 1.28 0.14 1.08 +choucard choucard adj m s 0.01 1.49 0.00 0.81 +choucarde choucard adj f s 0.01 1.49 0.01 0.47 +choucardes choucard adj f p 0.01 1.49 0.00 0.07 +choucards choucard adj m p 0.01 1.49 0.00 0.14 +choucas choucas nom m 0.16 0.14 0.16 0.14 +chouchou chouchou nom m s 3.44 1.69 3.16 1.49 +chouchous chouchou nom m p 3.44 1.69 0.28 0.20 +chouchoutage chouchoutage nom m s 0.00 0.14 0.00 0.14 +chouchoutaient chouchouter ver 0.61 0.74 0.01 0.07 ind:imp:3p; +chouchoutait chouchouter ver 0.61 0.74 0.02 0.07 ind:imp:3s; +chouchoute chouchouter ver 0.61 0.74 0.18 0.07 ind:pre:1s;ind:pre:3s; +chouchouter chouchouter ver 0.61 0.74 0.33 0.07 inf; +chouchouteras chouchouter ver 0.61 0.74 0.01 0.00 ind:fut:2s; +chouchoutes chouchoute nom f p 0.21 0.14 0.11 0.00 +chouchoutez chouchouter ver 0.61 0.74 0.01 0.00 ind:pre:2p; +chouchouté chouchouter ver m s 0.61 0.74 0.05 0.14 par:pas; +chouchoutée chouchouter ver f s 0.61 0.74 0.00 0.34 par:pas; +choucroute choucroute nom f s 1.18 3.04 1.16 2.64 +choucroutes choucroute nom f p 1.18 3.04 0.02 0.41 +chouette chouette ono 4.00 1.15 4.00 1.15 +chouettement chouettement adv 0.00 0.07 0.00 0.07 +chouettes chouette adj p 23.77 13.78 1.50 1.49 +chougnait chougner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +chougne chougner ver 0.00 0.14 0.00 0.07 ind:pre:3s; +chouia chouia nom m s 0.32 1.01 0.32 1.01 +chouiner chouiner ver 0.05 0.00 0.05 0.00 inf; +choupette choupette nom f s 0.10 0.00 0.10 0.00 +chouquet chouquet nom m s 0.06 0.00 0.06 0.00 +chouquette chouquette nom f s 0.06 0.07 0.06 0.07 +choura chourer ver 3.96 1.42 3.29 0.47 ind:pas:3s; +chouravait chouraver ver 0.75 2.50 0.00 0.14 ind:imp:3s; +chourave chouraver ver 0.75 2.50 0.01 0.41 imp:pre:2s;ind:pre:3s; +chouravent chouraver ver 0.75 2.50 0.00 0.14 ind:pre:3p; +chouraver chouraver ver 0.75 2.50 0.26 0.74 inf; +chouraveur chouraveur nom m s 0.00 0.54 0.00 0.07 +chouraveurs chouraveur nom m p 0.00 0.54 0.00 0.27 +chouraveuse chouraveur nom f s 0.00 0.54 0.00 0.07 +chouraveuses chouraveur nom f p 0.00 0.54 0.00 0.14 +chouravé chouraver ver m s 0.75 2.50 0.37 0.74 par:pas; +chouravée chouraver ver f s 0.75 2.50 0.11 0.14 par:pas; +chouravés chouraver ver m p 0.75 2.50 0.00 0.20 par:pas; +choure chourer ver 3.96 1.42 0.03 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chourent chourer ver 3.96 1.42 0.01 0.00 ind:pre:3p; +chourer chourer ver 3.96 1.42 0.20 0.34 inf; +chouriez chourer ver 3.96 1.42 0.00 0.07 ind:imp:2p; +chourineurs chourineur nom m p 0.00 0.07 0.00 0.07 +chouré chourer ver m s 3.96 1.42 0.41 0.41 par:pas; +chourée chourer ver f s 3.96 1.42 0.01 0.07 par:pas; +chourées chourer ver f p 3.96 1.42 0.01 0.07 par:pas; +choute chou nom f s 29.86 21.96 0.16 0.27 +choutes chou nom f p 29.86 21.96 0.01 0.07 +choux_fleurs choux_fleurs nom m p 0.57 1.28 0.57 1.28 +choux_raves choux_raves nom m p 0.00 0.07 0.00 0.07 +choux chou nom m p 29.86 21.96 4.20 7.64 +chouya chouya nom m s 0.04 0.07 0.04 0.07 +choya choyer ver 0.40 2.03 0.00 0.07 ind:pas:3s; +choyais choyer ver 0.40 2.03 0.01 0.00 ind:imp:1s; +choyait choyer ver 0.40 2.03 0.01 0.20 ind:imp:3s; +choyant choyer ver 0.40 2.03 0.00 0.07 par:pre; +choyer choyer ver 0.40 2.03 0.11 0.41 inf; +choyez choyer ver 0.40 2.03 0.12 0.00 imp:pre:2p;ind:pre:2p; +choyé choyer ver m s 0.40 2.03 0.06 0.41 par:pas; +choyée choyer ver f s 0.40 2.03 0.05 0.41 par:pas; +choyées choyé adj f p 0.17 0.68 0.14 0.00 +choyés choyé adj m p 0.17 0.68 0.01 0.14 +christ christ nom m s 1.65 3.18 1.54 2.57 +christiania christiania nom m s 0.00 0.07 0.00 0.07 +christianisme christianisme nom m s 2.11 4.32 2.11 4.32 +christianisés christianiser ver m p 0.00 0.14 0.00 0.14 par:pas; +christique christique adj f s 0.00 0.27 0.00 0.27 +christmas christmas nom s 0.08 0.00 0.08 0.00 +christocentrisme christocentrisme nom m s 0.00 0.20 0.00 0.20 +christologique christologique adj s 0.00 0.07 0.00 0.07 +christs christ nom m p 1.65 3.18 0.11 0.61 +chromage chromage nom m s 0.01 0.00 0.01 0.00 +chromatique chromatique adj s 0.02 0.68 0.01 0.54 +chromatiques chromatique adj p 0.02 0.68 0.01 0.14 +chromatisme chromatisme nom m s 0.00 0.20 0.00 0.14 +chromatismes chromatisme nom m p 0.00 0.20 0.00 0.07 +chromatogramme chromatogramme nom m s 0.01 0.00 0.01 0.00 +chromatographie chromatographie nom f s 0.07 0.00 0.07 0.00 +chrome chrome nom m s 0.82 3.04 0.75 1.15 +chromes chrome nom m p 0.82 3.04 0.07 1.89 +chromo chromo nom s 0.21 2.16 0.19 0.81 +chromogènes chromogène adj p 0.01 0.00 0.01 0.00 +chromos chromo nom p 0.21 2.16 0.02 1.35 +chromosome chromosome nom m s 1.72 0.81 0.52 0.14 +chromosomes chromosome nom m p 1.72 0.81 1.20 0.68 +chromosomique chromosomique adj s 0.14 0.27 0.08 0.20 +chromosomiques chromosomique adj p 0.14 0.27 0.06 0.07 +chromosphère chromosphère nom f s 0.05 0.00 0.05 0.00 +chromé chromer ver m s 0.36 4.59 0.17 2.30 par:pas; +chromée chromer ver f s 0.36 4.59 0.03 1.28 par:pas; +chromées chromer ver f p 0.36 4.59 0.06 0.14 par:pas; +chromés chromer ver m p 0.36 4.59 0.07 0.61 par:pas; +chroniquais chroniquer ver 0.01 0.34 0.00 0.07 ind:imp:1s; +chronique chronique adj s 2.34 4.59 1.73 3.65 +chroniquement chroniquement adv 0.00 0.07 0.00 0.07 +chroniquer chroniquer ver 0.01 0.34 0.00 0.14 inf; +chroniques chronique nom f p 2.46 9.59 0.79 2.77 +chroniqueur chroniqueur nom m s 0.69 2.91 0.49 1.35 +chroniqueurs chroniqueur nom m p 0.69 2.91 0.15 1.35 +chroniqueuse chroniqueur nom f s 0.69 2.91 0.05 0.07 +chroniqueuses chroniqueur nom f p 0.69 2.91 0.00 0.14 +chrono chrono nom m s 2.67 1.89 2.42 1.82 +chronographe chronographe nom m s 0.01 0.00 0.01 0.00 +chronologie chronologie nom f s 0.49 3.24 0.49 3.24 +chronologique chronologique adj s 0.64 1.49 0.64 1.35 +chronologiquement chronologiquement adv 0.10 0.27 0.10 0.27 +chronologiques chronologique adj p 0.64 1.49 0.00 0.14 +chronomètre chronomètre nom m s 1.02 2.23 0.98 2.09 +chronomètres chronométrer ver 1.43 1.08 0.18 0.00 ind:pre:2s; +chronométrage chronométrage nom m s 0.37 0.20 0.37 0.20 +chronométrait chronométrer ver 1.43 1.08 0.01 0.07 ind:imp:3s; +chronométrant chronométrer ver 1.43 1.08 0.14 0.07 par:pre; +chronométrer chronométrer ver 1.43 1.08 0.26 0.14 inf; +chronométreur chronométreur nom m s 0.03 0.00 0.03 0.00 +chronométrez chronométrer ver 1.43 1.08 0.06 0.00 imp:pre:2p; +chronométrions chronométrer ver 1.43 1.08 0.00 0.07 ind:imp:1p; +chronométré chronométrer ver m s 1.43 1.08 0.26 0.07 par:pas; +chronométrée chronométrer ver f s 1.43 1.08 0.05 0.07 par:pas; +chronométrées chronométrer ver f p 1.43 1.08 0.01 0.07 par:pas; +chronométrés chronométrer ver m p 1.43 1.08 0.03 0.07 par:pas; +chronophotographie chronophotographie nom f s 0.02 0.00 0.02 0.00 +chronophotographique chronophotographique adj m s 0.01 0.00 0.01 0.00 +chronos chrono nom m p 2.67 1.89 0.25 0.07 +chrême chrême nom m s 0.00 0.14 0.00 0.14 +chrétien_démocrate chrétien_démocrate adj m s 0.16 0.00 0.01 0.00 +chrétien chrétien adj m s 12.33 21.55 4.46 7.23 +chrétienne chrétien adj f s 12.33 21.55 4.59 8.99 +chrétiennement chrétiennement adv 0.13 0.20 0.13 0.20 +chrétiennes chrétien adj f p 12.33 21.55 0.74 2.57 +chrétien_démocrate chrétien_démocrate adj m p 0.16 0.00 0.14 0.00 +chrétiens chrétien nom m p 11.82 16.76 6.39 9.19 +chrétienté chrétienté nom f s 0.88 2.70 0.88 2.70 +chrysalide chrysalide nom f s 0.10 0.68 0.10 0.47 +chrysalides chrysalide nom f p 0.10 0.68 0.00 0.20 +chrysanthème chrysanthème nom m s 0.47 2.09 0.02 0.20 +chrysanthèmes chrysanthème nom m p 0.47 2.09 0.45 1.89 +chrysolite chrysolite nom f s 0.01 0.00 0.01 0.00 +chrysolithe chrysolithe nom f s 0.01 0.00 0.01 0.00 +chrysostome chrysostome nom m s 0.00 0.07 0.00 0.07 +chtar chtar nom m s 0.04 0.20 0.04 0.20 +chtarbé chtarbé adj m s 0.11 0.07 0.09 0.00 +chtarbée chtarbé adj f s 0.11 0.07 0.02 0.00 +chtarbées chtarbé adj f p 0.11 0.07 0.00 0.07 +chèche chèche nom m s 0.01 0.68 0.01 0.54 +chèches chèche nom m p 0.01 0.68 0.00 0.14 +chènevis chènevis nom m 0.00 0.27 0.00 0.27 +chthoniennes chthonien adj f p 0.00 0.07 0.00 0.07 +chèque_cadeau chèque_cadeau nom m s 0.05 0.00 0.05 0.00 +chèque chèque nom m s 32.03 9.86 23.86 6.01 +chèques chèque nom m p 32.03 9.86 8.18 3.85 +chère cher adj f s 205.75 133.65 40.80 23.38 +chèrement chèrement adv 0.43 0.88 0.43 0.88 +chères cher adj f p 205.75 133.65 5.63 5.81 +chèvre_pied chèvre_pied nom s 0.00 0.14 0.00 0.14 +chèvre chèvre nom f s 14.08 20.61 8.26 10.14 +chèvrefeuille chèvrefeuille nom m s 0.11 2.70 0.11 2.16 +chèvrefeuilles chèvrefeuille nom m p 0.11 2.70 0.00 0.54 +chèvres chèvre nom f p 14.08 20.61 5.81 10.47 +chtibe chtibe nom m s 0.00 0.14 0.00 0.14 +chtimi chtimi nom s 0.00 0.41 0.00 0.34 +chtimis chtimi nom p 0.00 0.41 0.00 0.07 +chtouille chtouille nom f s 0.42 0.14 0.42 0.14 +chtourbe chtourbe nom f s 0.00 0.27 0.00 0.27 +chu choir ver m s 2.05 10.00 1.24 0.81 par:pas; +chébran chébran adj m s 0.03 0.07 0.03 0.07 +chéchia chéchia nom f s 0.27 1.28 0.27 1.08 +chéchias chéchia nom f p 0.27 1.28 0.00 0.20 +chuchota chuchoter ver 5.20 34.39 0.01 7.09 ind:pas:3s; +chuchotai chuchoter ver 5.20 34.39 0.00 1.69 ind:pas:1s; +chuchotaient chuchoter ver 5.20 34.39 0.14 2.16 ind:imp:3p; +chuchotais chuchoter ver 5.20 34.39 0.06 0.07 ind:imp:1s;ind:imp:2s; +chuchotait chuchoter ver 5.20 34.39 0.38 4.05 ind:imp:3s; +chuchotant chuchoter ver 5.20 34.39 0.06 2.23 par:pre; +chuchotante chuchotant adj f s 0.19 1.89 0.17 1.22 +chuchotantes chuchotant adj f p 0.19 1.89 0.00 0.34 +chuchotants chuchotant adj m p 0.19 1.89 0.00 0.07 +chuchote chuchoter ver 5.20 34.39 1.86 6.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chuchotement chuchotement nom m s 1.90 8.11 0.11 4.39 +chuchotements chuchotement nom m p 1.90 8.11 1.79 3.72 +chuchotent chuchoter ver 5.20 34.39 0.39 1.62 ind:pre:3p; +chuchoter chuchoter ver 5.20 34.39 1.46 3.92 inf; +chuchoteraient chuchoter ver 5.20 34.39 0.00 0.07 cnd:pre:3p; +chuchoterais chuchoter ver 5.20 34.39 0.02 0.00 cnd:pre:1s; +chuchoterait chuchoter ver 5.20 34.39 0.00 0.14 cnd:pre:3s; +chuchoteras chuchoter ver 5.20 34.39 0.01 0.00 ind:fut:2s; +chuchoterez chuchoter ver 5.20 34.39 0.00 0.07 ind:fut:2p; +chuchoteries chuchoterie nom f p 0.00 0.07 0.00 0.07 +chuchoteur chuchoteur adj m s 0.00 0.20 0.00 0.14 +chuchoteuse chuchoteur nom f s 0.03 0.00 0.03 0.00 +chuchotez chuchoter ver 5.20 34.39 0.43 0.07 imp:pre:2p;ind:pre:2p; +chuchotions chuchoter ver 5.20 34.39 0.00 0.20 ind:imp:1p; +chuchotis chuchotis nom m 0.13 2.43 0.13 2.43 +chuchotât chuchoter ver 5.20 34.39 0.00 0.07 sub:imp:3s; +chuchotèrent chuchoter ver 5.20 34.39 0.00 0.20 ind:pas:3p; +chuchoté chuchoter ver m s 5.20 34.39 0.33 2.36 par:pas; +chuchotée chuchoter ver f s 5.20 34.39 0.03 0.54 par:pas; +chuchotées chuchoter ver f p 5.20 34.39 0.00 0.68 par:pas; +chuchotés chuchoter ver m p 5.20 34.39 0.03 0.61 par:pas; +chue choir ver f s 2.05 10.00 0.05 0.20 par:pas; +chues choir ver f p 2.05 10.00 0.00 0.07 par:pas; +chéfesse chéfesse nom f s 0.00 0.34 0.00 0.34 +chuinta chuinter ver 0.00 1.89 0.00 0.14 ind:pas:3s; +chuintaient chuinter ver 0.00 1.89 0.00 0.07 ind:imp:3p; +chuintait chuinter ver 0.00 1.89 0.00 0.34 ind:imp:3s; +chuintant chuinter ver 0.00 1.89 0.00 0.61 par:pre; +chuintante chuintant adj f s 0.01 0.81 0.01 0.27 +chuintants chuintant adj m p 0.01 0.81 0.00 0.14 +chuinte chuinter ver 0.00 1.89 0.00 0.20 ind:pre:3s; +chuintement chuintement nom m s 0.07 4.46 0.07 3.58 +chuintements chuintement nom m p 0.07 4.46 0.00 0.88 +chuinter chuinter ver 0.00 1.89 0.00 0.20 inf; +chuintèrent chuinter ver 0.00 1.89 0.00 0.14 ind:pas:3p; +chuinté chuinter ver m s 0.00 1.89 0.00 0.20 par:pas; +chélate chélate nom m s 0.01 0.00 0.01 0.00 +chélidoine chélidoine nom f s 0.00 0.20 0.00 0.14 +chélidoines chélidoine nom f p 0.00 0.20 0.00 0.07 +chulo chulo nom m s 0.34 0.00 0.34 0.00 +chéloïde chéloïde nom f s 0.03 0.00 0.03 0.00 +chum chum nom m s 0.38 0.00 0.38 0.00 +chênaie chênaie nom f s 0.06 0.61 0.04 0.47 +chênaies chênaie nom f p 0.06 0.61 0.01 0.14 +chêne_liège chêne_liège nom m s 0.00 0.95 0.00 0.14 +chêne chêne nom m s 5.17 23.51 4.25 16.49 +chéneau chéneau nom m s 0.00 0.81 0.00 0.47 +chéneaux chéneau nom m p 0.00 0.81 0.00 0.34 +chêne_liège chêne_liège nom m p 0.00 0.95 0.00 0.81 +chênes chêne nom m p 5.17 23.51 0.93 7.03 +chêneteau chêneteau nom m s 0.00 0.07 0.00 0.07 +chéquier chéquier nom m s 1.94 0.68 1.72 0.61 +chéquiers chéquier nom m p 1.94 0.68 0.22 0.07 +chéri chéri nom s 171.98 36.28 69.08 17.03 +chérie chéri nom f s 171.98 36.28 98.95 17.64 +chéries chéri nom f p 171.98 36.28 1.54 0.74 +chérif chérif nom m s 0.20 6.69 0.20 6.69 +chérifienne chérifien adj f s 0.00 0.07 0.00 0.07 +chérir chérir ver 22.66 7.03 1.49 1.15 inf; +chérirai chérir ver 22.66 7.03 0.19 0.00 ind:fut:1s; +chérirais chérir ver 22.66 7.03 0.14 0.00 cnd:pre:1s; +chérirez chérir ver 22.66 7.03 0.01 0.00 ind:fut:2p; +chérirons chérir ver 22.66 7.03 0.01 0.00 ind:fut:1p; +chéris chéri nom m p 171.98 36.28 2.41 0.88 +chérissaient chérir ver 22.66 7.03 0.03 0.27 ind:imp:3p; +chérissais chérir ver 22.66 7.03 0.07 0.20 ind:imp:1s;ind:imp:2s; +chérissait chérir ver 22.66 7.03 0.16 1.15 ind:imp:3s; +chérissant chérir ver 22.66 7.03 0.00 0.07 par:pre; +chérisse chérir ver 22.66 7.03 0.06 0.07 sub:pre:3s; +chérissent chérir ver 22.66 7.03 0.05 0.27 ind:pre:3p; +chérissez chérir ver 22.66 7.03 0.17 0.07 imp:pre:2p;ind:pre:2p; +chérissons chérir ver 22.66 7.03 0.31 0.07 imp:pre:1p;ind:pre:1p; +chérit chérir ver 22.66 7.03 0.56 0.27 ind:pre:3s;ind:pas:3s; +chérot chérot adj m s 0.02 0.14 0.02 0.14 +churrigueresque churrigueresque adj s 0.00 0.07 0.00 0.07 +churros churro nom m p 0.69 0.20 0.69 0.20 +chérubin chérubin nom m s 2.09 1.82 1.89 0.81 +chérubinique chérubinique adj f s 0.00 0.07 0.00 0.07 +chérubins chérubin nom m p 2.09 1.82 0.20 1.01 +chus choir ver m p 2.05 10.00 0.01 0.07 par:pas; +chut chut ono 29.81 6.62 29.81 6.62 +chuta chuter ver 5.50 2.77 0.02 0.07 ind:pas:3s; +chutait chuter ver 5.50 2.77 0.06 0.41 ind:imp:3s; +chutant chuter ver 5.50 2.77 0.06 0.20 par:pre; +chute chute nom f s 25.15 41.28 21.01 35.27 +chutent chuter ver 5.50 2.77 0.28 0.07 ind:pre:3p; +chuter chuter ver 5.50 2.77 0.99 1.08 inf; +chutera chuter ver 5.50 2.77 0.04 0.00 ind:fut:3s; +chuteraient chuter ver 5.50 2.77 0.11 0.07 cnd:pre:3p; +chuterait chuter ver 5.50 2.77 0.01 0.00 cnd:pre:3s; +chuterez chuter ver 5.50 2.77 0.01 0.00 ind:fut:2p; +chutes chute nom f p 25.15 41.28 4.14 6.01 +chétif chétif adj m s 0.91 7.36 0.43 3.65 +chétifs chétif adj m p 0.91 7.36 0.07 0.95 +chétive chétif adj f s 0.91 7.36 0.38 1.89 +chétivement chétivement adv 0.00 0.07 0.00 0.07 +chétives chétif adj f p 0.91 7.36 0.02 0.88 +chétivité chétivité nom f s 0.00 0.07 0.00 0.07 +chutney chutney nom m s 0.23 0.00 0.23 0.00 +chutèrent chuter ver 5.50 2.77 0.02 0.14 ind:pas:3p; +chuté chuter ver m s 5.50 2.77 1.87 0.41 par:pas; +chutée chuter ver f s 5.50 2.77 0.04 0.07 par:pas; +chyle chyle nom m s 0.00 0.14 0.00 0.14 +chypre chypre nom m s 0.00 0.14 0.00 0.14 +chypriote chypriote adj s 0.01 0.14 0.01 0.14 +ci_après ci_après adv 0.15 0.61 0.15 0.61 +ci_contre ci_contre adv 0.00 0.07 0.00 0.07 +ci_dessous ci_dessous adv 0.13 0.61 0.13 0.61 +ci_dessus ci_dessus adv 0.20 1.28 0.20 1.28 +ci_gît ci_gît adv 0.70 0.34 0.70 0.34 +ci_inclus ci_inclus adj m 0.03 0.14 0.01 0.07 +ci_inclus ci_inclus adj f s 0.03 0.14 0.01 0.07 +ci_inclus ci_inclus adj f p 0.03 0.14 0.01 0.00 +ci_joint ci_joint adj m s 0.62 1.89 0.59 1.69 +ci_joint ci_joint adj f s 0.62 1.89 0.04 0.14 +ci_joint ci_joint adj m p 0.62 1.89 0.00 0.07 +ci ci adv_sup 10.23 3.65 10.23 3.65 +ciao ciao ono 15.32 3.72 15.32 3.72 +cibiche cibiche nom f s 0.07 0.81 0.06 0.54 +cibiches cibiche nom f p 0.07 0.81 0.01 0.27 +cibiste cibiste nom m s 0.07 0.00 0.04 0.00 +cibistes cibiste nom m p 0.07 0.00 0.02 0.00 +ciblage ciblage nom m s 0.34 0.00 0.34 0.00 +ciblais cibler ver 1.90 0.81 0.01 0.07 ind:imp:1s; +ciblait cibler ver 1.90 0.81 0.04 0.14 ind:imp:3s; +cible cible nom f s 33.55 10.74 28.69 8.65 +cibler cibler ver 1.90 0.81 0.76 0.14 inf; +ciblera cibler ver 1.90 0.81 0.03 0.00 ind:fut:3s; +cibleront cibler ver 1.90 0.81 0.01 0.00 ind:fut:3p; +cibles cible nom f p 33.55 10.74 4.86 2.09 +ciblez cibler ver 1.90 0.81 0.12 0.00 imp:pre:2p;ind:pre:2p; +ciblons cibler ver 1.90 0.81 0.03 0.00 imp:pre:1p;ind:pre:1p; +ciblé cibler ver m s 1.90 0.81 0.45 0.34 par:pas; +ciblée cibler ver f s 1.90 0.81 0.15 0.00 par:pas; +ciblées cibler ver f p 1.90 0.81 0.06 0.00 par:pas; +ciblés cibler ver m p 1.90 0.81 0.25 0.14 par:pas; +ciboire ciboire nom m s 0.03 1.15 0.03 0.81 +ciboires ciboire nom m p 0.03 1.15 0.00 0.34 +ciboule ciboule nom f s 0.00 0.07 0.00 0.07 +ciboulette ciboulette nom f s 0.95 0.27 0.95 0.27 +ciboulot ciboulot nom m s 0.25 1.55 0.25 1.49 +ciboulots ciboulot nom m p 0.25 1.55 0.00 0.07 +cicatrice cicatrice nom f s 13.00 12.23 7.58 6.28 +cicatrices cicatrice nom f p 13.00 12.23 5.42 5.95 +cicatriciel cicatriciel adj m s 0.06 0.14 0.06 0.00 +cicatriciels cicatriciel adj m p 0.06 0.14 0.00 0.14 +cicatrisa cicatriser ver 2.20 2.16 0.00 0.07 ind:pas:3s; +cicatrisable cicatrisable adj s 0.00 0.07 0.00 0.07 +cicatrisait cicatriser ver 2.20 2.16 0.02 0.14 ind:imp:3s; +cicatrisante cicatrisant adj f s 0.02 0.07 0.02 0.00 +cicatrisants cicatrisant adj m p 0.02 0.07 0.00 0.07 +cicatrisation cicatrisation nom f s 0.48 0.47 0.48 0.47 +cicatrise cicatriser ver 2.20 2.16 0.39 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cicatrisent cicatriser ver 2.20 2.16 0.08 0.14 ind:pre:3p; +cicatriser cicatriser ver 2.20 2.16 0.48 0.47 inf; +cicatrisera cicatriser ver 2.20 2.16 0.18 0.00 ind:fut:3s; +cicatriserait cicatriser ver 2.20 2.16 0.10 0.07 cnd:pre:3s; +cicatriseront cicatriser ver 2.20 2.16 0.13 0.07 ind:fut:3p; +cicatrisez cicatriser ver 2.20 2.16 0.11 0.00 imp:pre:2p;ind:pre:2p; +cicatrisé cicatriser ver m s 2.20 2.16 0.59 0.27 par:pas; +cicatrisée cicatriser ver f s 2.20 2.16 0.05 0.41 par:pas; +cicatrisées cicatriser ver f p 2.20 2.16 0.03 0.34 par:pas; +cicatrisés cicatriser ver m p 2.20 2.16 0.04 0.00 par:pas; +cicero cicero nom m s 0.68 0.00 0.68 0.00 +cicindèle cicindèle nom f s 0.00 0.88 0.00 0.61 +cicindèles cicindèle nom f p 0.00 0.88 0.00 0.27 +cicérone cicérone nom m s 0.22 0.34 0.22 0.27 +cicérones cicérone nom m p 0.22 0.34 0.00 0.07 +cicéronienne cicéronien adj f s 0.00 0.14 0.00 0.14 +cidre cidre nom m s 2.00 3.99 2.00 3.99 +cidrerie cidrerie nom f s 0.01 0.00 0.01 0.00 +ciel ciel nom m s 142.32 305.20 142.22 301.76 +ciels ciel nom m p 142.32 305.20 0.10 3.45 +cierge cierge nom m s 3.50 15.95 2.02 5.20 +cierges cierge nom m p 3.50 15.95 1.48 10.74 +cieux cieux nom m p 20.05 4.93 20.05 4.93 +cigale cigale nom f s 3.00 4.93 1.43 1.15 +cigales cigale nom f p 3.00 4.93 1.57 3.78 +cigalon cigalon nom m s 0.02 0.00 0.02 0.00 +cigalou cigalou nom m s 0.00 0.07 0.00 0.07 +cigare cigare nom m s 17.15 24.93 10.63 17.70 +cigares cigare nom m p 17.15 24.93 6.52 7.23 +cigarette cigarette nom f s 65.57 114.93 39.22 77.57 +cigarettes cigarette nom f p 65.57 114.93 26.35 37.36 +cigarettier cigarettier nom m s 0.01 0.00 0.01 0.00 +cigarillo cigarillo nom m s 0.13 1.08 0.13 0.68 +cigarillos cigarillo nom m p 0.13 1.08 0.00 0.41 +cigarière cigarier nom f s 0.00 0.20 0.00 0.07 +cigarières cigarier nom f p 0.00 0.20 0.00 0.14 +cigle cigler ver 0.00 0.68 0.00 0.14 ind:pre:3s; +ciglent cigler ver 0.00 0.68 0.00 0.07 ind:pre:3p; +cigler cigler ver 0.00 0.68 0.00 0.27 inf; +ciglé cigler ver m s 0.00 0.68 0.00 0.07 par:pas; +ciglées cigler ver f p 0.00 0.68 0.00 0.07 par:pas; +ciglés cigler ver m p 0.00 0.68 0.00 0.07 par:pas; +cigogne cigogne nom f s 3.22 2.50 2.21 1.35 +cigognes cigogne nom f p 3.22 2.50 1.00 1.15 +ciguë ciguë nom f s 0.20 0.88 0.20 0.68 +ciguës ciguë nom f p 0.20 0.88 0.00 0.20 +cil cil nom m s 3.57 19.26 0.77 2.16 +ciliaires ciliaire adj m p 0.00 0.07 0.00 0.07 +cilice cilice nom m s 0.16 0.27 0.16 0.27 +cilla ciller ver 0.28 4.32 0.00 0.61 ind:pas:3s; +cillaient ciller ver 0.28 4.32 0.00 0.47 ind:imp:3p; +cillait ciller ver 0.28 4.32 0.01 0.14 ind:imp:3s; +cillant ciller ver 0.28 4.32 0.00 0.20 par:pre; +cille ciller ver 0.28 4.32 0.05 0.07 ind:pre:3s; +cillement cillement nom m s 0.00 0.81 0.00 0.74 +cillements cillement nom m p 0.00 0.81 0.00 0.07 +cillent ciller ver 0.28 4.32 0.00 0.20 ind:pre:3p; +ciller ciller ver 0.28 4.32 0.04 1.82 inf; +cillerait ciller ver 0.28 4.32 0.00 0.07 cnd:pre:3s; +cillèrent ciller ver 0.28 4.32 0.00 0.27 ind:pas:3p; +cillé ciller ver m s 0.28 4.32 0.19 0.47 par:pas; +cils cil nom m p 3.57 19.26 2.80 17.09 +cimaise cimaise nom f s 0.00 0.47 0.00 0.14 +cimaises cimaise nom f p 0.00 0.47 0.00 0.34 +cimarron cimarron nom m s 0.07 0.00 0.07 0.00 +cime cime nom f s 1.77 9.73 1.08 4.46 +ciment ciment nom m s 5.75 18.85 5.60 18.78 +cimentaient cimenter ver 0.16 2.43 0.00 0.07 ind:imp:3p; +cimentait cimenter ver 0.16 2.43 0.00 0.20 ind:imp:3s; +cimentant cimenter ver 0.16 2.43 0.00 0.07 par:pre; +cimente cimenter ver 0.16 2.43 0.02 0.14 imp:pre:2s;ind:pre:3s; +cimentent cimenter ver 0.16 2.43 0.01 0.00 ind:pre:3p; +cimenter cimenter ver 0.16 2.43 0.06 0.14 inf; +cimentera cimenter ver 0.16 2.43 0.00 0.07 ind:fut:3s; +cimenterie cimenterie nom f s 0.08 0.61 0.08 0.27 +cimenteries cimenterie nom f p 0.08 0.61 0.00 0.34 +ciments ciment nom m p 5.75 18.85 0.15 0.07 +cimenté cimenter ver m s 0.16 2.43 0.04 0.47 par:pas; +cimentée cimenter ver f s 0.16 2.43 0.01 0.88 par:pas; +cimentées cimenter ver f p 0.16 2.43 0.00 0.20 par:pas; +cimentés cimenter ver m p 0.16 2.43 0.01 0.20 par:pas; +cimes cime nom f p 1.77 9.73 0.70 5.27 +cimeterre cimeterre nom m s 0.14 1.28 0.14 0.95 +cimeterres cimeterre nom m p 0.14 1.28 0.00 0.34 +cimetière cimetière nom m s 31.34 44.19 29.07 39.86 +cimetières cimetière nom m p 31.34 44.19 2.27 4.32 +cimier cimier nom m s 0.18 0.68 0.17 0.54 +cimiers cimier nom m p 0.18 0.68 0.01 0.14 +cinabre cinabre nom m s 0.00 0.14 0.00 0.14 +cinghalais cinghalais adj m s 0.00 0.20 0.00 0.14 +cinghalaises cinghalais adj f p 0.00 0.20 0.00 0.07 +cingla cingler ver 18.93 9.39 0.02 0.61 ind:pas:3s; +cinglage cinglage nom m s 0.05 0.00 0.05 0.00 +cinglaient cingler ver 18.93 9.39 0.00 0.61 ind:imp:3p; +cinglait cingler ver 18.93 9.39 0.14 1.62 ind:imp:3s; +cinglant cinglant adj m s 0.28 2.77 0.04 0.54 +cinglante cinglant adj f s 0.28 2.77 0.20 1.15 +cinglantes cinglant adj f p 0.28 2.77 0.03 0.74 +cinglants cinglant adj m p 0.28 2.77 0.00 0.34 +cingle cingler ver 18.93 9.39 0.26 1.22 ind:pre:3s; +cinglement cinglement nom m s 0.00 0.07 0.00 0.07 +cinglent cingler ver 18.93 9.39 0.00 0.27 ind:pre:3p; +cingler cingler ver 18.93 9.39 0.00 0.88 inf; +cinglions cingler ver 18.93 9.39 0.00 0.07 ind:imp:1p; +cinglons cingler ver 18.93 9.39 0.20 0.00 imp:pre:1p; +cinglèrent cingler ver 18.93 9.39 0.00 0.07 ind:pas:3p; +cinglé cingler ver m s 18.93 9.39 12.44 2.30 par:pas; +cinglée cingler ver f s 18.93 9.39 3.46 0.95 par:pas; +cinglées cinglé nom f p 12.37 5.81 0.28 0.20 +cinglés cinglé nom m p 12.37 5.81 3.49 1.69 +cinname cinname nom m s 0.00 0.07 0.00 0.07 +cinoche cinoche nom m s 1.08 6.35 1.07 6.22 +cinoches cinoche nom m p 1.08 6.35 0.01 0.14 +cinoque cinoque adj m s 0.01 0.27 0.01 0.27 +cinoques cinoque nom m p 0.00 0.14 0.00 0.14 +cinq cinq adj_num 161.96 220.61 161.96 220.61 +cinquantaine cinquantaine nom f s 1.44 9.93 1.44 9.86 +cinquantaines cinquantaine nom f p 1.44 9.93 0.00 0.07 +cinquante_cinq cinquante_cinq adj_num 0.20 2.50 0.20 2.50 +cinquante_deux cinquante_deux adj_num 0.21 1.42 0.21 1.42 +cinquante_huit cinquante_huit adj_num 0.06 0.88 0.06 0.88 +cinquante_huitième cinquante_huitième adj 0.00 0.07 0.00 0.07 +cinquante_neuf cinquante_neuf adj_num 0.03 0.34 0.03 0.34 +cinquante_neuvième cinquante_neuvième adj 0.00 0.07 0.00 0.07 +cinquante_quatre cinquante_quatre adj_num 0.13 0.68 0.13 0.68 +cinquante_sept cinquante_sept adj_num 0.08 0.95 0.08 0.95 +cinquante_septième cinquante_septième adj 0.03 0.07 0.03 0.07 +cinquante_six cinquante_six adj_num 0.18 0.68 0.18 0.68 +cinquante_sixième cinquante_sixième adj 0.00 0.14 0.00 0.14 +cinquante_trois cinquante_trois adj_num 0.15 0.81 0.15 0.81 +cinquante_troisième cinquante_troisième adj 0.00 0.14 0.00 0.14 +cinquante cinquante adj_num 9.26 61.08 9.26 61.08 +cinquantenaire cinquantenaire nom m s 0.20 0.14 0.18 0.14 +cinquantenaires cinquantenaire nom m p 0.20 0.14 0.02 0.00 +cinquantième cinquantième nom s 0.04 0.68 0.04 0.68 +cinquantièmes cinquantième adj 0.01 0.54 0.00 0.07 +cinquième cinquième adj m 6.14 11.15 6.13 11.01 +cinquièmement cinquièmement adv 0.16 0.14 0.16 0.14 +cinquièmes cinquième nom p 5.17 7.91 0.01 0.54 +cintra cintrer ver 0.07 1.49 0.00 0.68 ind:pas:3s; +cintrage cintrage nom m s 0.01 0.00 0.01 0.00 +cintrait cintrer ver 0.07 1.49 0.00 0.07 ind:imp:3s; +cintrant cintrer ver 0.07 1.49 0.00 0.07 par:pre; +cintras cintrer ver 0.07 1.49 0.00 0.07 ind:pas:2s; +cintre cintre nom m s 0.85 4.86 0.57 2.91 +cintrer cintrer ver 0.07 1.49 0.01 0.00 inf; +cintres cintre nom m p 0.85 4.86 0.28 1.96 +cintré cintrer ver m s 0.07 1.49 0.05 0.34 par:pas; +cintrée cintré adj f s 0.07 1.42 0.02 0.54 +cintrées cintré adj f p 0.07 1.42 0.00 0.27 +cintrés cintré adj m p 0.07 1.42 0.03 0.07 +ciné_club ciné_club nom m s 0.00 0.74 0.00 0.54 +ciné_club ciné_club nom m p 0.00 0.74 0.00 0.20 +ciné_roman ciné_roman nom m s 0.00 0.14 0.00 0.14 +ciné ciné nom m s 10.35 4.73 10.32 4.46 +cinéaste cinéaste nom s 3.56 1.76 2.45 1.08 +cinéastes cinéaste nom p 3.56 1.76 1.11 0.68 +cinéma_vérité cinéma_vérité nom m s 0.20 0.07 0.20 0.07 +cinéma cinéma nom m s 63.49 78.51 62.23 72.91 +cinémas cinéma nom m p 63.49 78.51 1.26 5.61 +cinémascope cinémascope nom m s 0.07 0.20 0.07 0.20 +cinémathèque cinémathèque nom f s 0.72 0.61 0.71 0.47 +cinémathèques cinémathèque nom f p 0.72 0.61 0.01 0.14 +cinématique cinématique nom f s 0.03 0.00 0.03 0.00 +cinématographe cinématographe nom m s 0.48 0.68 0.48 0.61 +cinématographes cinématographe nom m p 0.48 0.68 0.00 0.07 +cinématographie cinématographie nom f s 0.04 0.07 0.04 0.07 +cinématographique cinématographique adj s 1.42 2.23 0.85 1.49 +cinématographiquement cinématographiquement adv 0.01 0.14 0.01 0.14 +cinématographiques cinématographique adj p 1.42 2.23 0.57 0.74 +cinémomètres cinémomètre nom m p 0.00 0.07 0.00 0.07 +cinéphile cinéphile nom s 0.20 0.27 0.15 0.07 +cinéphiles cinéphile nom p 0.20 0.27 0.05 0.20 +cinéraire cinéraire adj f s 0.00 0.07 0.00 0.07 +cinéraire cinéraire nom f s 0.00 0.07 0.00 0.07 +cinérama cinérama nom m s 0.00 0.07 0.00 0.07 +cinés ciné nom m p 10.35 4.73 0.02 0.27 +cinétique cinétique adj s 0.17 0.07 0.17 0.07 +cinzano cinzano nom m s 0.50 0.88 0.50 0.88 +cipal cipal nom m s 0.01 0.14 0.01 0.14 +cipaye cipaye nom m s 0.01 0.41 0.01 0.00 +cipayes cipaye nom m p 0.01 0.41 0.00 0.41 +cipolin cipolin nom m s 0.00 0.07 0.00 0.07 +cippes cippe nom m p 0.00 0.14 0.00 0.14 +cira cirer ver 6.42 20.27 0.00 0.14 ind:pas:3s; +cirage cirage nom m s 2.08 4.39 2.08 4.39 +ciraient cirer ver 6.42 20.27 0.00 0.07 ind:imp:3p; +cirais cirer ver 6.42 20.27 0.02 0.20 ind:imp:1s;ind:imp:2s; +cirait cirer ver 6.42 20.27 0.04 0.41 ind:imp:3s; +cirant cirer ver 6.42 20.27 0.02 0.14 par:pre; +circadien circadien adj m s 0.03 0.00 0.03 0.00 +circassien circassien nom m s 0.05 0.14 0.05 0.14 +circassienne circassienne nom f s 0.14 0.20 0.14 0.14 +circassiennes circassienne nom f p 0.14 0.20 0.00 0.07 +circaète circaète nom m s 0.00 0.41 0.00 0.41 +circoncire circoncire ver 1.69 1.42 0.53 0.68 inf; +circoncis circoncire ver m 1.69 1.42 1.09 0.68 ind:pre:1s;par:pas;par:pas; +circoncise circoncire ver f s 1.69 1.42 0.03 0.00 par:pas; +circoncisent circoncire ver 1.69 1.42 0.01 0.00 ind:pre:3p; +circoncision circoncision nom f s 1.31 2.30 1.25 2.30 +circoncisions circoncision nom f p 1.31 2.30 0.06 0.00 +circoncit circoncire ver 1.69 1.42 0.03 0.07 ind:pre:3s;ind:pas:3s; +circonflexe circonflexe adj s 0.16 1.55 0.16 0.95 +circonflexes circonflexe adj m p 0.16 1.55 0.00 0.61 +circonférence circonférence nom f s 0.24 1.28 0.24 1.28 +circonlocutions circonlocution nom f p 0.00 0.88 0.00 0.88 +circonscription circonscription nom f s 0.78 0.74 0.67 0.34 +circonscriptions_clé circonscriptions_clé nom f p 0.01 0.00 0.01 0.00 +circonscriptions circonscription nom f p 0.78 0.74 0.11 0.41 +circonscrire circonscrire ver 0.13 1.35 0.05 0.27 inf; +circonscris circonscrire ver 0.13 1.35 0.00 0.07 ind:pre:1s; +circonscrit circonscrire ver m s 0.13 1.35 0.03 0.27 ind:pre:3s;par:pas; +circonscrite circonscrire ver f s 0.13 1.35 0.03 0.27 par:pas; +circonscrites circonscrire ver f p 0.13 1.35 0.00 0.07 par:pas; +circonscrits circonscrire ver m p 0.13 1.35 0.02 0.07 par:pas; +circonscrivait circonscrire ver 0.13 1.35 0.00 0.20 ind:imp:3s; +circonscrivent circonscrire ver 0.13 1.35 0.00 0.07 ind:pre:3p; +circonscrivit circonscrire ver 0.13 1.35 0.00 0.07 ind:pas:3s; +circonspect circonspect adj m s 0.21 2.91 0.04 1.96 +circonspecte circonspect adj f s 0.21 2.91 0.01 0.34 +circonspectes circonspect adj f p 0.21 2.91 0.00 0.07 +circonspection circonspection nom f s 0.04 2.70 0.04 2.64 +circonspections circonspection nom f p 0.04 2.70 0.00 0.07 +circonspects circonspect adj m p 0.21 2.91 0.16 0.54 +circonstance circonstance nom f s 21.80 58.24 2.48 16.01 +circonstances circonstance nom f p 21.80 58.24 19.32 42.23 +circonstancia circonstancier ver 0.00 0.41 0.00 0.14 ind:pas:3s; +circonstanciel circonstanciel adj m s 0.11 0.07 0.05 0.00 +circonstancielle circonstanciel adj f s 0.11 0.07 0.05 0.00 +circonstanciels circonstanciel adj m p 0.11 0.07 0.00 0.07 +circonstancié circonstancié adj m s 0.03 0.47 0.03 0.14 +circonstanciée circonstancier ver f s 0.00 0.41 0.00 0.07 par:pas; +circonstanciées circonstancié adj f p 0.03 0.47 0.00 0.07 +circonstanciés circonstancié adj m p 0.03 0.47 0.00 0.27 +circonvallation circonvallation nom f s 0.00 0.14 0.00 0.07 +circonvallations circonvallation nom f p 0.00 0.14 0.00 0.07 +circonvenant circonvenir ver 0.09 0.95 0.01 0.00 par:pre; +circonvenir circonvenir ver 0.09 0.95 0.05 0.47 inf; +circonvenu circonvenir ver m s 0.09 0.95 0.01 0.41 par:pas; +circonvenue circonvenir ver f s 0.09 0.95 0.01 0.07 par:pas; +circonvient circonvenir ver 0.09 0.95 0.01 0.00 ind:pre:3s; +circonvolution circonvolution nom f s 0.05 1.08 0.03 0.20 +circonvolutions circonvolution nom f p 0.05 1.08 0.02 0.88 +circuit circuit nom m s 10.23 9.59 7.00 7.77 +circuits circuit nom m p 10.23 9.59 3.24 1.82 +circula circuler ver 15.19 25.81 0.01 0.54 ind:pas:3s; +circulaient circuler ver 15.19 25.81 0.29 3.92 ind:imp:3p; +circulaire circulaire adj s 1.48 9.73 1.35 8.24 +circulairement circulairement adv 0.00 0.07 0.00 0.07 +circulaires circulaire adj p 1.48 9.73 0.14 1.49 +circulais circuler ver 15.19 25.81 0.01 0.34 ind:imp:1s; +circulait circuler ver 15.19 25.81 0.29 4.59 ind:imp:3s; +circulant circuler ver 15.19 25.81 0.06 0.95 par:pre; +circularité circularité nom f s 0.00 0.14 0.00 0.14 +circulation circulation nom f s 10.78 14.46 10.78 14.32 +circulations circulation nom f p 10.78 14.46 0.00 0.14 +circulatoire circulatoire adj s 0.51 0.20 0.28 0.00 +circulatoires circulatoire adj m p 0.51 0.20 0.23 0.20 +circule circuler ver 15.19 25.81 3.56 4.93 imp:pre:2s;ind:pre:1s;ind:pre:3s; +circulent circuler ver 15.19 25.81 1.73 2.30 ind:pre:3p; +circuler circuler ver 15.19 25.81 4.04 6.42 inf; +circulera circuler ver 15.19 25.81 0.24 0.00 ind:fut:3s; +circuleraient circuler ver 15.19 25.81 0.02 0.07 cnd:pre:3p; +circulerait circuler ver 15.19 25.81 0.02 0.14 cnd:pre:3s; +circuleront circuler ver 15.19 25.81 0.01 0.07 ind:fut:3p; +circules circuler ver 15.19 25.81 0.01 0.07 ind:pre:2s; +circulez circuler ver 15.19 25.81 4.63 0.74 imp:pre:2p;ind:pre:2p; +circulions circuler ver 15.19 25.81 0.00 0.07 ind:imp:1p; +circulons circuler ver 15.19 25.81 0.06 0.00 imp:pre:1p;ind:pre:1p; +circulèrent circuler ver 15.19 25.81 0.00 0.07 ind:pas:3p; +circulé circuler ver m s 15.19 25.81 0.21 0.61 par:pas; +circumnavigation circumnavigation nom f s 0.14 0.27 0.14 0.27 +cire cire nom f s 5.59 15.88 5.49 15.41 +cirent cirer ver 6.42 20.27 0.25 0.00 ind:pre:3p; +cirer cirer ver 6.42 20.27 3.29 3.24 inf; +cirerais cirer ver 6.42 20.27 0.00 0.07 cnd:pre:1s; +cirerait cirer ver 6.42 20.27 0.00 0.07 cnd:pre:3s; +cires cire nom f p 5.59 15.88 0.10 0.47 +cireur cireur nom m s 0.45 1.22 0.36 0.74 +cireurs cireur nom m p 0.45 1.22 0.01 0.34 +cireuse cireur nom f s 0.45 1.22 0.08 0.14 +cireuses cireux adj f p 0.15 2.50 0.04 0.41 +cireux cireux adj m 0.15 2.50 0.06 1.42 +cirez cirer ver 6.42 20.27 0.14 0.07 imp:pre:2p;ind:pre:2p; +cirions cirer ver 6.42 20.27 0.00 0.07 ind:imp:1p; +ciron ciron nom m s 0.00 0.14 0.00 0.07 +cirons cirer ver 6.42 20.27 0.00 0.07 imp:pre:1p; +cirque cirque nom m s 23.25 19.53 22.95 18.38 +cirques cirque nom m p 23.25 19.53 0.30 1.15 +cirrhose cirrhose nom f s 0.90 0.27 0.90 0.27 +cirrhotique cirrhotique adj s 0.01 0.07 0.01 0.07 +cirrus cirrus nom m 0.04 0.14 0.04 0.14 +cirses cirse nom m p 0.00 0.07 0.00 0.07 +ciré ciré adj m s 0.36 5.27 0.35 3.58 +cirée cirer ver f s 6.42 20.27 0.14 12.16 par:pas; +cirées cirer ver f p 6.42 20.27 1.28 1.62 par:pas; +cirés ciré nom m p 0.69 2.70 0.46 0.61 +cis cis adj m 0.03 0.00 0.03 0.00 +cisailla cisailler ver 0.11 2.57 0.00 0.20 ind:pas:3s; +cisaillage cisaillage nom m s 0.00 0.07 0.00 0.07 +cisaillaient cisailler ver 0.11 2.57 0.00 0.34 ind:imp:3p; +cisaillait cisailler ver 0.11 2.57 0.00 0.20 ind:imp:3s; +cisaillant cisailler ver 0.11 2.57 0.00 0.20 par:pre; +cisaille cisaille nom f s 1.60 0.95 0.36 0.74 +cisaillement cisaillement nom m s 0.05 0.14 0.05 0.14 +cisaillent cisailler ver 0.11 2.57 0.01 0.07 ind:pre:3p; +cisailler cisailler ver 0.11 2.57 0.05 0.68 inf; +cisailles cisaille nom f p 1.60 0.95 1.24 0.20 +cisaillèrent cisailler ver 0.11 2.57 0.00 0.07 ind:pas:3p; +cisaillé cisailler ver m s 0.11 2.57 0.01 0.41 par:pas; +cisaillée cisailler ver f s 0.11 2.57 0.00 0.07 par:pas; +cisaillées cisailler ver f p 0.11 2.57 0.00 0.07 par:pas; +cisaillés cisailler ver m p 0.11 2.57 0.00 0.07 par:pas; +ciseau ciseau nom m s 8.72 13.85 0.86 2.84 +ciseaux ciseau nom m p 8.72 13.85 7.86 11.01 +ciselaient ciseler ver 0.23 2.03 0.00 0.07 ind:imp:3p; +ciselait ciseler ver 0.23 2.03 0.01 0.14 ind:imp:3s; +ciseler ciseler ver 0.23 2.03 0.01 0.20 inf; +ciselet ciselet nom m s 0.00 0.07 0.00 0.07 +ciseleurs ciseleur nom m p 0.00 0.07 0.00 0.07 +ciselions ciseler ver 0.23 2.03 0.01 0.00 ind:imp:1p; +ciselé ciselé adj m s 0.07 2.43 0.02 1.15 +ciselée ciselé adj f s 0.07 2.43 0.05 0.27 +ciselées ciselé adj f p 0.07 2.43 0.00 0.61 +ciselure ciselure nom f s 0.00 0.27 0.00 0.07 +ciselures ciselure nom f p 0.00 0.27 0.00 0.20 +ciselés ciseler ver m p 0.23 2.03 0.14 0.07 par:pas; +ciste ciste nom s 0.02 0.34 0.01 0.00 +cistercien cistercien adj m s 0.01 0.34 0.00 0.07 +cistercienne cistercien adj f s 0.01 0.34 0.00 0.20 +cisterciennes cistercien nom f p 0.01 0.07 0.00 0.07 +cisterciens cistercien adj m p 0.01 0.34 0.01 0.07 +cistes ciste nom p 0.02 0.34 0.01 0.34 +cisèle ciseler ver 0.23 2.03 0.01 0.20 ind:pre:3s; +cita citer ver 17.51 27.09 0.00 0.88 ind:pas:3s; +citadelle citadelle nom f s 0.98 6.42 0.98 5.54 +citadelles citadelle nom f p 0.98 6.42 0.00 0.88 +citadin citadin nom m s 1.25 3.72 0.56 0.54 +citadine citadin nom f s 1.25 3.72 0.10 0.27 +citadines citadin adj f p 0.42 2.03 0.11 0.54 +citadins citadin nom m p 1.25 3.72 0.55 2.84 +citai citer ver 17.51 27.09 0.00 0.68 ind:pas:1s; +citaient citer ver 17.51 27.09 0.02 0.34 ind:imp:3p; +citais citer ver 17.51 27.09 0.19 0.47 ind:imp:1s;ind:imp:2s; +citait citer ver 17.51 27.09 0.15 3.18 ind:imp:3s; +citant citer ver 17.51 27.09 0.46 1.69 par:pre; +citation citation nom f s 5.01 8.11 3.51 4.19 +citations citation nom f p 5.01 8.11 1.50 3.92 +cite citer ver 17.51 27.09 5.61 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +citent citer ver 17.51 27.09 0.10 0.34 ind:pre:3p; +citer citer ver 17.51 27.09 4.38 7.16 inf;; +citera citer ver 17.51 27.09 0.11 0.14 ind:fut:3s; +citerai citer ver 17.51 27.09 0.35 0.68 ind:fut:1s; +citerais citer ver 17.51 27.09 0.03 0.14 cnd:pre:1s;cnd:pre:2s; +citerait citer ver 17.51 27.09 0.00 0.14 cnd:pre:3s; +citeras citer ver 17.51 27.09 0.02 0.00 ind:fut:2s; +citerne citerne nom f s 4.19 2.09 3.74 1.28 +citernes citerne nom f p 4.19 2.09 0.45 0.81 +cites citer ver 17.51 27.09 0.63 0.27 ind:pre:2s;sub:pre:2s; +citez citer ver 17.51 27.09 1.37 0.68 imp:pre:2p;ind:pre:2p; +cithare cithare nom f s 0.34 0.95 0.34 0.54 +cithares cithare nom f p 0.34 0.95 0.00 0.41 +citiez citer ver 17.51 27.09 0.04 0.07 ind:imp:2p; +citions citer ver 17.51 27.09 0.01 0.07 ind:imp:1p; +citizen_band citizen_band nom f s 0.01 0.00 0.01 0.00 +citons citer ver 17.51 27.09 0.20 0.20 imp:pre:1p;ind:pre:1p; +citât citer ver 17.51 27.09 0.00 0.14 sub:imp:3s; +citoyen citoyen nom m s 29.01 14.73 11.61 5.20 +citoyenne citoyen nom f s 29.01 14.73 1.56 0.61 +citoyennes citoyenne nom f p 0.59 0.00 0.59 0.00 +citoyenneté citoyenneté nom f s 1.13 0.34 1.13 0.34 +citoyens citoyen nom m p 29.01 14.73 15.83 8.65 +citrate citrate nom m s 0.20 0.00 0.20 0.00 +citrine citrine nom f s 0.06 0.07 0.06 0.07 +citrique citrique adj s 0.07 0.14 0.07 0.14 +citron citron nom m s 10.92 10.81 8.10 9.05 +citronnade citronnade nom f s 0.58 1.01 0.56 0.95 +citronnades citronnade nom f p 0.58 1.01 0.02 0.07 +citronnelle citronnelle nom f s 0.46 0.88 0.46 0.81 +citronnelles citronnelle nom f p 0.46 0.88 0.00 0.07 +citronnez citronner ver 0.01 0.07 0.00 0.07 imp:pre:2p; +citronnier citronnier nom m s 0.21 1.49 0.04 0.41 +citronniers citronnier nom m p 0.21 1.49 0.17 1.08 +citronné citronné adj m s 0.06 0.07 0.03 0.07 +citronnée citronné adj f s 0.06 0.07 0.03 0.00 +citrons citron nom m p 10.92 10.81 2.82 1.76 +citrouille citrouille nom f s 1.88 2.91 1.56 2.43 +citrouilles citrouille nom f p 1.88 2.91 0.32 0.47 +citrus citrus nom m 0.17 0.00 0.17 0.00 +citèrent citer ver 17.51 27.09 0.01 0.07 ind:pas:3p; +cité_dortoir cité_dortoir nom f s 0.00 0.27 0.00 0.14 +cité_jardin cité_jardin nom f s 0.00 0.20 0.00 0.20 +cité cité nom f s 16.11 23.99 14.55 20.68 +citée citer ver f s 17.51 27.09 0.53 0.68 par:pas; +citées citer ver f p 17.51 27.09 0.03 0.14 par:pas; +citérieure citérieur adj f s 0.00 0.07 0.00 0.07 +cité_dortoir cité_dortoir nom f p 0.00 0.27 0.00 0.14 +cités cité nom f p 16.11 23.99 1.56 3.31 +city city nom f s 0.54 0.27 0.54 0.27 +civadière civadière nom f s 0.01 0.00 0.01 0.00 +civelles civelle nom f p 0.30 0.27 0.30 0.27 +civelots civelot nom m p 0.00 0.14 0.00 0.14 +civet civet nom m s 0.88 2.43 0.78 2.36 +civets civet nom m p 0.88 2.43 0.10 0.07 +civette civette nom f s 0.15 0.54 0.15 0.54 +civil civil adj m s 20.46 28.51 5.92 9.46 +civile civil adj f s 20.46 28.51 9.76 10.61 +civilement civilement adv 0.04 0.74 0.04 0.74 +civiles civil adj f p 20.46 28.51 1.42 3.04 +civilisateur civilisateur adj m s 0.10 0.34 0.00 0.14 +civilisation civilisation nom f s 12.43 19.32 10.48 16.62 +civilisations civilisation nom f p 12.43 19.32 1.94 2.70 +civilisatrice civilisateur adj f s 0.10 0.34 0.10 0.20 +civilise civiliser ver 2.17 1.08 0.02 0.07 ind:pre:3s; +civiliser civiliser ver 2.17 1.08 0.34 0.20 inf; +civilises civiliser ver 2.17 1.08 0.00 0.07 ind:pre:2s; +civilisé civilisé adj m s 5.64 3.78 2.88 1.96 +civilisée civilisé adj f s 5.64 3.78 1.11 0.47 +civilisées civilisé adj f p 5.64 3.78 0.35 0.27 +civilisés civilisé adj m p 5.64 3.78 1.31 1.08 +civilité civilité nom f s 1.48 1.42 0.90 1.01 +civilités civilité nom f p 1.48 1.42 0.58 0.41 +civils civil nom m p 14.23 13.99 8.00 5.54 +civique civique adj s 2.97 1.82 1.37 1.35 +civiques civique adj p 2.97 1.82 1.60 0.47 +civisme civisme nom m s 0.26 0.54 0.26 0.54 +civière civière nom f s 2.42 4.46 1.97 4.12 +civières civière nom f p 2.42 4.46 0.45 0.34 +clôt clore ver 7.75 31.28 0.23 1.55 ind:pre:3s; +clôtura clôturer ver 1.12 1.82 0.02 0.07 ind:pas:3s; +clôturai clôturer ver 1.12 1.82 0.00 0.20 ind:pas:1s; +clôturaient clôturer ver 1.12 1.82 0.00 0.20 ind:imp:3p; +clôturait clôturer ver 1.12 1.82 0.00 0.20 ind:imp:3s; +clôture clôture nom f s 6.00 10.68 5.34 7.84 +clôturent clôturer ver 1.12 1.82 0.00 0.07 ind:pre:3p; +clôturer clôturer ver 1.12 1.82 0.55 0.27 inf; +clôturera clôturer ver 1.12 1.82 0.02 0.00 ind:fut:3s; +clôtures clôture nom f p 6.00 10.68 0.66 2.84 +clôturé clôturer ver m s 1.12 1.82 0.30 0.34 par:pas; +clôturée clôturer ver f s 1.12 1.82 0.03 0.07 par:pas; +clabaudage clabaudage nom m s 0.02 0.07 0.01 0.00 +clabaudages clabaudage nom m p 0.02 0.07 0.01 0.07 +clabaudaient clabauder ver 0.01 0.34 0.00 0.14 ind:imp:3p; +clabaudent clabauder ver 0.01 0.34 0.00 0.07 ind:pre:3p; +clabauder clabauder ver 0.01 0.34 0.01 0.07 inf; +clabauderies clabauderie nom f p 0.00 0.07 0.00 0.07 +clabaudé clabauder ver m s 0.01 0.34 0.00 0.07 par:pas; +clabote claboter ver 0.01 0.47 0.00 0.14 ind:pre:1s;ind:pre:3s; +clabotent claboter ver 0.01 0.47 0.00 0.07 ind:pre:3p; +claboter claboter ver 0.01 0.47 0.00 0.14 inf; +claboté claboter ver m s 0.01 0.47 0.01 0.14 par:pas; +clac clac ono 0.29 3.72 0.29 3.72 +clafouti clafouti nom m s 0.00 0.07 0.00 0.07 +clafoutis clafoutis nom m 0.05 0.54 0.05 0.54 +claie claie nom f s 0.01 2.43 0.01 1.01 +claies claie nom f p 0.01 2.43 0.00 1.42 +claim claim nom m s 0.08 0.00 0.08 0.00 +clair_obscur clair_obscur nom m s 0.02 1.96 0.02 1.62 +clair clair adj m s 122.69 156.69 88.54 91.01 +claire_voie claire_voie nom f s 0.01 2.43 0.01 1.96 +claire clair adj f s 122.69 156.69 21.21 38.04 +clairement clairement adv 18.75 18.18 18.75 18.18 +claire_voie claire_voie nom f p 0.01 2.43 0.00 0.47 +claires clair adj f p 122.69 156.69 7.05 12.91 +clairet clairet nom m s 0.02 0.00 0.02 0.00 +clairette clairet adj f s 0.00 0.88 0.00 0.88 +clairière clairière nom f s 1.84 17.77 1.72 14.59 +clairières clairière nom f p 1.84 17.77 0.12 3.18 +clairon clairon nom m s 2.19 5.61 2.03 4.32 +claironna claironner ver 0.91 3.24 0.00 0.68 ind:pas:3s; +claironnait claironner ver 0.91 3.24 0.00 0.54 ind:imp:3s; +claironnant claironner ver 0.91 3.24 0.01 0.61 par:pre; +claironnante claironnant adj f s 0.00 1.08 0.00 0.74 +claironnantes claironnant adj f p 0.00 1.08 0.00 0.07 +claironnants claironnant adj m p 0.00 1.08 0.00 0.20 +claironne claironner ver 0.91 3.24 0.42 0.41 ind:pre:1s;ind:pre:3s; +claironnent claironner ver 0.91 3.24 0.27 0.07 ind:pre:3p; +claironner claironner ver 0.91 3.24 0.20 0.61 inf; +claironnions claironner ver 0.91 3.24 0.00 0.07 ind:imp:1p; +claironné claironner ver m s 0.91 3.24 0.01 0.27 par:pas; +clairons clairon nom m p 2.19 5.61 0.16 1.28 +clair_obscur clair_obscur nom m p 0.02 1.96 0.00 0.34 +clairs clair adj m p 122.69 156.69 5.89 14.73 +clairsemaient clairsemer ver 0.04 1.49 0.00 0.14 ind:imp:3p; +clairsemait clairsemer ver 0.04 1.49 0.00 0.07 ind:imp:3s; +clairsemant clairsemer ver 0.04 1.49 0.00 0.07 par:pre; +clairsemé clairsemé adj m s 0.27 3.18 0.01 0.54 +clairsemée clairsemer ver f s 0.04 1.49 0.01 0.41 par:pas; +clairsemées clairsemer ver f p 0.04 1.49 0.01 0.27 par:pas; +clairsemés clairsemé adj m p 0.27 3.18 0.26 1.22 +clairvoyance clairvoyance nom f s 0.67 1.89 0.67 1.82 +clairvoyances clairvoyance nom f p 0.67 1.89 0.00 0.07 +clairvoyant clairvoyant adj m s 0.96 1.69 0.53 1.01 +clairvoyante clairvoyant adj f s 0.96 1.69 0.22 0.47 +clairvoyants clairvoyant adj m p 0.96 1.69 0.22 0.20 +clam clam nom m s 0.34 0.20 0.06 0.07 +clama clamer ver 2.61 7.30 0.00 1.15 ind:pas:3s; +clamai clamer ver 2.61 7.30 0.00 0.07 ind:pas:1s; +clamaient clamer ver 2.61 7.30 0.01 0.61 ind:imp:3p; +clamait clamer ver 2.61 7.30 0.11 1.15 ind:imp:3s; +clamant clamer ver 2.61 7.30 0.39 0.88 par:pre; +clame clamer ver 2.61 7.30 0.67 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clamecer clamecer ver 0.00 0.20 0.00 0.07 inf; +clamecé clamecer ver m s 0.00 0.20 0.00 0.07 par:pas; +clamecée clamecer ver f s 0.00 0.20 0.00 0.07 par:pas; +clament clamer ver 2.61 7.30 0.32 0.34 ind:pre:3p; +clamer clamer ver 2.61 7.30 0.71 0.61 inf; +clameraient clamer ver 2.61 7.30 0.00 0.07 cnd:pre:3p; +clameur clameur nom f s 0.90 9.73 0.73 5.61 +clameurs clameur nom f p 0.90 9.73 0.16 4.12 +clamez clamer ver 2.61 7.30 0.14 0.00 imp:pre:2p;ind:pre:2p; +clamions clamer ver 2.61 7.30 0.00 0.07 ind:imp:1p; +clamp clamp nom m s 1.09 0.00 0.97 0.00 +clampe clamper ver 0.41 0.00 0.09 0.00 ind:pre:1s;ind:pre:3s; +clamper clamper ver 0.41 0.00 0.14 0.00 inf; +clampin clampin nom m s 0.03 0.34 0.02 0.20 +clampins clampin nom m p 0.03 0.34 0.01 0.14 +clamps clamp nom m p 1.09 0.00 0.12 0.00 +clampé clamper ver m s 0.41 0.00 0.17 0.00 par:pas; +clams clam nom m p 0.34 0.20 0.28 0.14 +clamse clamser ver 0.97 1.69 0.26 0.07 ind:pre:3s; +clamser clamser ver 0.97 1.69 0.29 0.74 inf; +clamserai clamser ver 0.97 1.69 0.01 0.20 ind:fut:1s; +clamserait clamser ver 0.97 1.69 0.01 0.14 cnd:pre:3s; +clamsé clamser ver m s 0.97 1.69 0.37 0.20 par:pas; +clamsée clamser ver f s 0.97 1.69 0.01 0.27 par:pas; +clamsés clamser ver m p 0.97 1.69 0.01 0.07 par:pas; +clamèrent clamer ver 2.61 7.30 0.01 0.07 ind:pas:3p; +clamé clamer ver m s 2.61 7.30 0.12 0.34 par:pas; +clamée clamer ver f s 2.61 7.30 0.14 0.07 par:pas; +clamés clamer ver m p 2.61 7.30 0.00 0.07 par:pas; +clan clan nom m s 8.83 16.42 7.61 13.51 +clandestin clandestin adj m s 6.78 17.64 2.79 5.07 +clandestine clandestin adj f s 6.78 17.64 1.93 6.22 +clandestinement clandestinement adv 1.48 2.84 1.48 2.84 +clandestines clandestin nom f p 2.86 1.76 0.83 0.07 +clandestinité clandestinité nom f s 0.48 4.80 0.48 4.73 +clandestinités clandestinité nom f p 0.48 4.80 0.00 0.07 +clandestins clandestin adj m p 6.78 17.64 1.46 3.58 +clandé clandé nom m s 0.19 1.35 0.04 1.28 +clandés clandé nom m p 0.19 1.35 0.16 0.07 +clans clan nom m p 8.83 16.42 1.22 2.91 +clap clap nom m s 1.43 0.54 1.43 0.54 +clapant claper ver 0.00 2.30 0.00 0.47 par:pre; +clape claper ver 0.00 2.30 0.00 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clapent claper ver 0.00 2.30 0.00 0.14 ind:pre:3p; +claper claper ver 0.00 2.30 0.00 0.61 inf; +claperai claper ver 0.00 2.30 0.00 0.07 ind:fut:1s; +clapes claper ver 0.00 2.30 0.00 0.07 ind:pre:2s; +clapet clapet nom m s 1.15 1.15 0.98 0.68 +clapets clapet nom m p 1.15 1.15 0.17 0.47 +clapette clapette nom f s 0.00 0.07 0.00 0.07 +clapier clapier nom m s 0.30 2.84 0.28 1.42 +clapiers clapier nom m p 0.30 2.84 0.02 1.42 +clapir clapir ver 0.00 0.14 0.00 0.07 inf; +clapit clapir ver 0.00 0.14 0.00 0.07 ind:pre:3s; +clapot clapot nom m s 0.16 0.47 0.16 0.47 +clapota clapoter ver 0.09 3.24 0.00 0.14 ind:pas:3s; +clapotaient clapoter ver 0.09 3.24 0.00 0.27 ind:imp:3p; +clapotait clapoter ver 0.09 3.24 0.01 1.01 ind:imp:3s; +clapotant clapotant adj m s 0.00 1.22 0.00 0.47 +clapotante clapotant adj f s 0.00 1.22 0.00 0.54 +clapotantes clapotant adj f p 0.00 1.22 0.00 0.20 +clapote clapoter ver 0.09 3.24 0.03 0.41 imp:pre:2s;ind:pre:3s; +clapotement clapotement nom m s 0.00 1.08 0.00 0.68 +clapotements clapotement nom m p 0.00 1.08 0.00 0.41 +clapotent clapoter ver 0.09 3.24 0.01 0.34 ind:pre:3p; +clapoter clapoter ver 0.09 3.24 0.04 0.74 inf; +clapoterait clapoter ver 0.09 3.24 0.00 0.07 cnd:pre:3s; +clapotis clapotis nom m 0.30 5.41 0.30 5.41 +clappait clapper ver 0.03 0.41 0.00 0.07 ind:imp:3s; +clappant clapper ver 0.03 0.41 0.00 0.20 par:pre; +clappe clapper ver 0.03 0.41 0.00 0.14 ind:pre:3s; +clappement clappement nom m s 0.01 0.54 0.00 0.27 +clappements clappement nom m p 0.01 0.54 0.01 0.27 +clapper clapper ver 0.03 0.41 0.03 0.00 inf; +clapé claper ver m s 0.00 2.30 0.00 0.41 par:pas; +claqua claquer ver 15.13 74.19 0.00 7.23 ind:pas:3s; +claquage claquage nom m s 0.10 0.07 0.10 0.07 +claquai claquer ver 15.13 74.19 0.00 0.14 ind:pas:1s; +claquaient claquer ver 15.13 74.19 0.07 4.39 ind:imp:3p; +claquais claquer ver 15.13 74.19 0.05 0.34 ind:imp:1s;ind:imp:2s; +claquait claquer ver 15.13 74.19 0.15 4.12 ind:imp:3s; +claquant claquer ver 15.13 74.19 0.65 9.19 par:pre; +claquante claquant adj f s 0.14 1.42 0.00 0.14 +claquantes claquant adj f p 0.14 1.42 0.00 0.14 +claquants claquant adj m p 0.14 1.42 0.00 0.20 +claque_merde claque_merde nom m s 0.19 0.27 0.19 0.27 +claque claque nom s 6.88 14.26 5.19 8.65 +claquedents claquedent nom m p 0.00 0.07 0.00 0.07 +claquement claquement nom m s 0.96 14.73 0.71 9.46 +claquements claquement nom m p 0.96 14.73 0.25 5.27 +claquemurait claquemurer ver 0.14 1.28 0.00 0.14 ind:imp:3s; +claquemurant claquemurer ver 0.14 1.28 0.14 0.00 par:pre; +claquemurer claquemurer ver 0.14 1.28 0.00 0.07 inf; +claquemures claquemurer ver 0.14 1.28 0.00 0.07 ind:pre:2s; +claquemuré claquemurer ver m s 0.14 1.28 0.01 0.41 par:pas; +claquemurée claquemurer ver f s 0.14 1.28 0.00 0.34 par:pas; +claquemurées claquemurer ver f p 0.14 1.28 0.00 0.20 par:pas; +claquemurés claquemurer ver m p 0.14 1.28 0.00 0.07 par:pas; +claquent claquer ver 15.13 74.19 0.28 5.14 ind:pre:3p; +claquer claquer ver 15.13 74.19 4.50 19.59 inf; +claquera claquer ver 15.13 74.19 0.19 0.20 ind:fut:3s; +claquerai claquer ver 15.13 74.19 0.15 0.07 ind:fut:1s; +claqueraient claquer ver 15.13 74.19 0.00 0.20 cnd:pre:3p; +claquerais claquer ver 15.13 74.19 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +claquerait claquer ver 15.13 74.19 0.25 0.34 cnd:pre:3s; +claqueriez claquer ver 15.13 74.19 0.01 0.00 cnd:pre:2p; +claqueront claquer ver 15.13 74.19 0.01 0.00 ind:fut:3p; +claques claque nom p 6.88 14.26 1.69 5.61 +claquet claquet nom m s 0.02 0.00 0.02 0.00 +claquette claquette nom f s 1.71 1.22 0.10 0.07 +claquettes claquette nom f p 1.71 1.22 1.61 1.15 +claquetèrent claqueter ver 0.00 0.07 0.00 0.07 ind:pas:3p; +claqueurs claqueur nom m p 0.00 0.07 0.00 0.07 +claquez claquer ver 15.13 74.19 0.46 0.07 imp:pre:2p;ind:pre:2p; +claquions claquer ver 15.13 74.19 0.00 0.07 ind:imp:1p; +claquoirs claquoir nom m p 0.01 0.14 0.01 0.14 +claquons claquer ver 15.13 74.19 0.02 0.00 imp:pre:1p; +claquât claquer ver 15.13 74.19 0.00 0.07 sub:imp:3s; +claquèrent claquer ver 15.13 74.19 0.00 1.35 ind:pas:3p; +claqué claquer ver m s 15.13 74.19 2.56 7.30 par:pas; +claquée claquer ver f s 15.13 74.19 0.55 1.15 par:pas; +claquées claquer ver f p 15.13 74.19 0.11 1.15 par:pas; +claqués claquer ver m p 15.13 74.19 0.10 0.27 par:pas; +clarifia clarifier ver 3.64 0.74 0.00 0.14 ind:pas:3s; +clarifiant clarifier ver 3.64 0.74 0.01 0.00 par:pre; +clarification clarification nom f s 0.07 0.07 0.07 0.07 +clarifie clarifier ver 3.64 0.74 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clarifier clarifier ver 3.64 0.74 2.79 0.27 inf; +clarifions clarifier ver 3.64 0.74 0.26 0.00 imp:pre:1p; +clarifié clarifier ver m s 3.64 0.74 0.33 0.20 par:pas; +clarifiée clarifier ver f s 3.64 0.74 0.02 0.00 par:pas; +clarine clarine nom f s 0.40 0.54 0.40 0.07 +clarines clarine nom f p 0.40 0.54 0.00 0.47 +clarinette clarinette nom f s 2.21 3.58 2.20 3.11 +clarinettes clarinette nom f p 2.21 3.58 0.01 0.47 +clarinettiste clarinettiste nom s 0.23 0.20 0.23 0.20 +clarisse clarisse nom f s 0.33 0.41 0.06 0.00 +clarisses clarisse nom f p 0.33 0.41 0.27 0.41 +clarissimes clarissime nom m p 0.00 0.14 0.00 0.14 +clarté clarté nom f s 4.62 30.68 4.48 28.24 +clartés clarté nom f p 4.62 30.68 0.14 2.43 +clash clash nom m s 1.70 1.55 1.70 1.55 +class class adj 0.51 1.08 0.51 1.08 +classa classer ver 12.11 12.70 0.02 0.27 ind:pas:3s; +classable classable adj s 0.14 0.00 0.14 0.00 +classaient classer ver 12.11 12.70 0.03 0.20 ind:imp:3p; +classais classer ver 12.11 12.70 0.27 0.41 ind:imp:1s;ind:imp:2s; +classait classer ver 12.11 12.70 0.04 1.01 ind:imp:3s; +classant classer ver 12.11 12.70 0.04 0.47 par:pre; +classe classe nom f s 78.99 108.92 70.46 90.74 +classement classement nom m s 2.65 2.09 2.34 1.76 +classements classement nom m p 2.65 2.09 0.31 0.34 +classent classer ver 12.11 12.70 0.05 0.14 ind:pre:3p; +classer classer ver 12.11 12.70 2.02 2.84 inf; +classera classer ver 12.11 12.70 0.03 0.07 ind:fut:3s; +classerai classer ver 12.11 12.70 0.02 0.00 ind:fut:1s; +classeraient classer ver 12.11 12.70 0.00 0.07 cnd:pre:3p; +classerais classer ver 12.11 12.70 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +classerait classer ver 12.11 12.70 0.03 0.14 cnd:pre:3s; +classeras classer ver 12.11 12.70 0.01 0.00 ind:fut:2s; +classes classe nom f p 78.99 108.92 8.53 18.18 +classeur classeur nom m s 0.69 3.38 0.56 1.35 +classeurs classeur nom m p 0.69 3.38 0.13 2.03 +classez classer ver 12.11 12.70 0.34 0.07 imp:pre:2p;ind:pre:2p; +classicisme classicisme nom m s 0.04 0.34 0.04 0.34 +classico classico adv 0.01 0.00 0.01 0.00 +classieuse classieux adj f s 0.28 0.00 0.13 0.00 +classieux classieux adj m 0.28 0.00 0.14 0.00 +classiez classer ver 12.11 12.70 0.01 0.00 sub:pre:2p; +classifiables classifiable adj p 0.00 0.07 0.00 0.07 +classificateur classificateur adj m s 0.00 0.20 0.00 0.14 +classification classification nom f s 0.59 1.08 0.57 0.95 +classifications classification nom f p 0.59 1.08 0.02 0.14 +classificatrice classificateur adj f s 0.00 0.20 0.00 0.07 +classifient classifier ver 0.53 0.20 0.00 0.07 ind:pre:3p; +classifier classifier ver 0.53 0.20 0.23 0.14 inf; +classifierais classifier ver 0.53 0.20 0.01 0.00 cnd:pre:2s; +classifié classifier ver m s 0.53 0.20 0.23 0.00 par:pas; +classifiées classifier ver f p 0.53 0.20 0.06 0.00 par:pas; +classique classique adj s 15.58 21.01 13.74 15.81 +classiquement classiquement adv 0.00 0.14 0.00 0.14 +classiques classique nom p 7.02 4.80 1.87 2.57 +classons classer ver 12.11 12.70 0.05 0.00 imp:pre:1p;ind:pre:1p; +classèrent classer ver 12.11 12.70 0.00 0.14 ind:pas:3p; +classé classer ver m s 12.11 12.70 2.28 1.42 par:pas; +classée classé adj f s 4.75 2.70 2.39 0.81 +classées classé adj f p 4.75 2.70 0.98 0.34 +classés classer ver m p 12.11 12.70 0.58 0.81 par:pas; +clathres clathre nom m p 0.00 0.14 0.00 0.14 +claude claude nom s 0.01 2.64 0.01 2.64 +claudicant claudicant adj m s 0.01 0.54 0.00 0.20 +claudicante claudicant adj f s 0.01 0.54 0.01 0.27 +claudicants claudicant adj m p 0.01 0.54 0.00 0.07 +claudication claudication nom f s 0.07 0.68 0.07 0.68 +claudiquait claudiquer ver 0.08 0.88 0.00 0.14 ind:imp:3s; +claudiquant claudiquer ver 0.08 0.88 0.01 0.68 par:pre; +claudique claudiquer ver 0.08 0.88 0.05 0.00 imp:pre:2s;ind:pre:1s; +claudiquer claudiquer ver 0.08 0.88 0.01 0.00 inf; +claudiquerait claudiquer ver 0.08 0.88 0.00 0.07 cnd:pre:3s; +claudiquerez claudiquer ver 0.08 0.88 0.01 0.00 ind:fut:2p; +claudélienne claudélien adj f s 0.00 0.07 0.00 0.07 +clause clause nom f s 3.47 1.89 2.94 1.01 +clauses clause nom f p 3.47 1.89 0.53 0.88 +clausewitziens clausewitzien adj m p 0.00 0.07 0.00 0.07 +claustrait claustrer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +claustrale claustral adj f s 0.00 0.07 0.00 0.07 +claustration claustration nom f s 0.02 1.01 0.02 1.01 +claustrophobe claustrophobe adj m s 0.90 0.07 0.90 0.07 +claustrophobie claustrophobie nom f s 0.26 0.07 0.26 0.07 +claustrée claustrer ver f s 0.00 0.20 0.00 0.14 par:pas; +clavaire clavaire nom f s 0.00 0.20 0.00 0.07 +clavaires clavaire nom f p 0.00 0.20 0.00 0.14 +claveaux claveau nom m p 0.00 0.14 0.00 0.14 +clavecin clavecin nom m s 0.75 2.43 0.75 2.30 +claveciniste claveciniste nom s 0.00 0.20 0.00 0.20 +clavecins clavecin nom m p 0.75 2.43 0.00 0.14 +clavette clavette nom f s 0.01 0.00 0.01 0.00 +clavicule clavicule nom f s 1.96 1.28 1.74 0.68 +clavicules clavicule nom f p 1.96 1.28 0.22 0.61 +clavier clavier nom m s 1.77 3.58 1.62 3.24 +claviers clavier nom m p 1.77 3.58 0.15 0.34 +clayettes clayette nom f p 0.00 0.07 0.00 0.07 +claymore claymore nom f s 0.20 0.00 0.20 0.00 +clayon clayon nom m s 0.00 0.14 0.00 0.07 +clayonnage clayonnage nom m s 0.01 0.20 0.01 0.07 +clayonnages clayonnage nom m p 0.01 0.20 0.00 0.14 +clayonnée clayonner ver f s 0.00 0.27 0.00 0.27 par:pas; +clayons clayon nom m p 0.00 0.14 0.00 0.07 +clean clean adj 4.66 0.74 4.66 0.74 +clearing clearing nom m s 0.04 0.00 0.04 0.00 +clebs clebs nom m 2.00 3.11 2.00 3.11 +clef clef nom f s 24.32 44.86 14.61 35.61 +clefs clef nom f p 24.32 44.86 9.72 9.26 +clenche clenche nom f s 0.00 0.47 0.00 0.41 +clenches clenche nom f p 0.00 0.47 0.00 0.07 +clepsydre clepsydre nom f s 0.00 1.62 0.00 1.62 +cleptomane cleptomane nom s 0.09 0.00 0.09 0.00 +cleptomanie cleptomanie nom f s 0.02 0.00 0.02 0.00 +clerc clerc nom m s 0.82 9.26 0.73 5.68 +clercs clerc nom m p 0.82 9.26 0.09 3.58 +clergeon clergeon nom m s 0.00 0.14 0.00 0.14 +clergé clergé nom m s 2.08 3.99 2.07 3.78 +clergés clergé nom m p 2.08 3.99 0.01 0.20 +clergyman clergyman nom m s 0.05 0.81 0.05 0.61 +clergymen clergyman nom m p 0.05 0.81 0.00 0.20 +clermontois clermontois nom m 0.00 0.14 0.00 0.14 +clermontoise clermontois adj f s 0.00 0.07 0.00 0.07 +clic_clac clic_clac ono 0.10 0.07 0.10 0.07 +clic clic ono 0.20 0.81 0.20 0.81 +clichage clichage nom m s 0.00 0.07 0.00 0.07 +clicher clicher ver 0.60 0.27 0.01 0.07 inf; +clicherie clicherie nom f s 0.00 0.27 0.00 0.27 +clicheur clicheur nom m s 0.00 0.07 0.00 0.07 +cliché cliché nom m s 7.59 11.96 3.69 5.34 +clichée cliché adj f s 1.20 0.54 0.00 0.07 +clichés cliché nom m p 7.59 11.96 3.89 6.62 +click click nom m s 0.40 0.00 0.40 0.00 +clics clic nom m p 1.17 1.08 0.22 0.20 +client_roi client_roi nom m s 0.00 0.07 0.00 0.07 +client client nom m s 112.12 81.55 53.63 28.78 +cliente client nom f s 112.12 81.55 9.22 6.89 +clientes client nom f p 112.12 81.55 2.24 4.26 +clients client nom m p 112.12 81.55 47.03 41.62 +clientèle clientèle nom f s 3.88 18.78 3.87 18.51 +clientèles clientèle nom f p 3.88 18.78 0.01 0.27 +cligna cligner ver 2.80 18.85 0.02 3.04 ind:pas:3s; +clignaient cligner ver 2.80 18.85 0.16 0.68 ind:imp:3p; +clignais cligner ver 2.80 18.85 0.00 0.27 ind:imp:1s; +clignait cligner ver 2.80 18.85 0.14 1.62 ind:imp:3s; +clignant cligner ver 2.80 18.85 0.22 5.68 par:pre; +cligne cligner ver 2.80 18.85 0.95 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clignement clignement nom m s 0.14 2.03 0.11 1.22 +clignements clignement nom m p 0.14 2.03 0.03 0.81 +clignent cligner ver 2.80 18.85 0.31 0.41 ind:pre:3p; +cligner cligner ver 2.80 18.85 0.47 2.77 inf; +clignez cligner ver 2.80 18.85 0.16 0.00 imp:pre:2p;ind:pre:2p; +clignons cligner ver 2.80 18.85 0.00 0.07 ind:pre:1p; +clignota clignoter ver 1.57 5.68 0.00 0.20 ind:pas:3s; +clignotaient clignoter ver 1.57 5.68 0.00 1.62 ind:imp:3p; +clignotait clignoter ver 1.57 5.68 0.08 0.61 ind:imp:3s; +clignotant clignotant nom m s 1.00 1.35 0.97 1.01 +clignotante clignotant adj f s 1.06 2.77 0.07 0.74 +clignotantes clignotant adj f p 1.06 2.77 0.05 0.61 +clignotants clignotant adj m p 1.06 2.77 0.18 0.81 +clignote clignoter ver 1.57 5.68 0.61 0.88 imp:pre:2s;ind:pre:3s; +clignotement clignotement nom m s 0.07 1.49 0.07 0.81 +clignotements clignotement nom m p 0.07 1.49 0.00 0.68 +clignotent clignoter ver 1.57 5.68 0.49 1.01 ind:pre:3p; +clignoter clignoter ver 1.57 5.68 0.16 0.54 inf; +clignotera clignoter ver 1.57 5.68 0.01 0.00 ind:fut:3s; +clignoterait clignoter ver 1.57 5.68 0.00 0.07 cnd:pre:3s; +clignoteur clignoteur nom m s 0.00 0.07 0.00 0.07 +clignotèrent clignoter ver 1.57 5.68 0.00 0.14 ind:pas:3p; +clignoté clignoter ver m s 1.57 5.68 0.04 0.14 par:pas; +clignèrent cligner ver 2.80 18.85 0.00 0.34 ind:pas:3p; +cligné cligner ver m s 2.80 18.85 0.38 1.15 par:pas; +clignées cligner ver f p 2.80 18.85 0.00 0.14 par:pas; +clignés cligner ver m p 2.80 18.85 0.00 0.20 par:pas; +clilles clille nom p 0.00 0.27 0.00 0.27 +climat climat nom m s 7.21 18.99 6.64 17.16 +climatique climatique adj s 0.51 0.27 0.26 0.07 +climatiques climatique adj p 0.51 0.27 0.25 0.20 +climatisant climatiser ver 0.39 0.41 0.00 0.07 par:pre; +climatisation climatisation nom f s 1.79 0.20 1.79 0.20 +climatiser climatiser ver 0.39 0.41 0.01 0.00 inf; +climatiseur climatiseur nom m s 0.85 0.20 0.78 0.14 +climatiseurs climatiseur nom m p 0.85 0.20 0.07 0.07 +climatisé climatisé adj m s 0.37 0.47 0.29 0.27 +climatisée climatiser ver f s 0.39 0.41 0.20 0.20 par:pas; +climatisées climatisé adj f p 0.37 0.47 0.02 0.07 +climatisés climatisé adj m p 0.37 0.47 0.01 0.07 +climatologue climatologue nom s 0.02 0.00 0.02 0.00 +climats climat nom m p 7.21 18.99 0.57 1.82 +climatériques climatérique adj f p 0.00 0.07 0.00 0.07 +climax climax nom m 0.18 0.07 0.18 0.07 +clin_d_oeil clin_d_oeil nom m s 0.01 0.00 0.01 0.00 +clin clin nom m s 3.97 19.46 3.63 16.55 +clinche clinche nom f s 0.00 0.07 0.00 0.07 +clinicat clinicat nom m s 0.07 0.00 0.07 0.00 +clinicien clinicien nom m s 0.05 0.20 0.01 0.20 +clinicienne clinicien nom f s 0.05 0.20 0.01 0.00 +cliniciens clinicien nom m p 0.05 0.20 0.03 0.00 +clinique clinique nom f s 18.79 11.82 17.72 10.81 +cliniquement cliniquement adv 0.92 0.14 0.92 0.14 +cliniques clinique nom f p 18.79 11.82 1.06 1.01 +clinker clinker nom m s 0.14 0.00 0.14 0.00 +clinquant clinquant adj m s 0.34 1.76 0.07 0.47 +clinquante clinquant adj f s 0.34 1.76 0.06 0.34 +clinquantes clinquant adj f p 0.34 1.76 0.16 0.34 +clinquants clinquant adj m p 0.34 1.76 0.05 0.61 +clins clin nom m p 3.97 19.46 0.34 2.91 +clip clip nom m s 2.98 1.28 2.12 0.61 +clipper clipper nom m s 0.50 0.20 0.40 0.20 +clippers clipper nom m p 0.50 0.20 0.09 0.00 +clips clip nom m p 2.98 1.28 0.86 0.68 +cliquant cliquer ver 0.68 0.00 0.02 0.00 par:pre; +clique clique nom f s 2.78 3.11 2.41 2.84 +cliquer cliquer ver 0.68 0.00 0.27 0.00 inf; +cliques clique nom f p 2.78 3.11 0.37 0.27 +cliquet cliquet nom m s 0.16 0.07 0.02 0.07 +cliqueta cliqueter ver 0.69 3.11 0.00 0.14 ind:pas:3s; +cliquetaient cliqueter ver 0.69 3.11 0.02 0.68 ind:imp:3p; +cliquetait cliqueter ver 0.69 3.11 0.00 0.54 ind:imp:3s; +cliquetant cliqueter ver 0.69 3.11 0.03 0.34 par:pre; +cliquetante cliquetant adj f s 0.00 0.95 0.00 0.34 +cliquetantes cliquetant adj f p 0.00 0.95 0.00 0.20 +cliquetants cliquetant adj m p 0.00 0.95 0.00 0.14 +cliqueter cliqueter ver 0.69 3.11 0.19 0.81 inf; +cliquetis cliquetis nom m 0.38 8.04 0.38 8.04 +cliquets cliquet nom m p 0.16 0.07 0.14 0.00 +cliquette cliqueter ver 0.69 3.11 0.04 0.47 ind:pre:1s;ind:pre:3s; +cliquettement cliquettement nom m s 0.00 0.07 0.00 0.07 +cliquettent cliqueter ver 0.69 3.11 0.41 0.14 ind:pre:3p; +cliquettes cliquette nom f p 0.00 0.07 0.00 0.07 +cliquez cliquer ver 0.68 0.00 0.28 0.00 imp:pre:2p;ind:pre:2p; +cliquètement cliquètement nom m s 0.00 0.27 0.00 0.20 +cliquètements cliquètement nom m p 0.00 0.27 0.00 0.07 +cliqué cliquer ver m s 0.68 0.00 0.10 0.00 par:pas; +clissées clisser ver f p 0.00 0.07 0.00 0.07 par:pas; +clito clito nom m s 0.36 0.41 0.36 0.41 +clitoridectomie clitoridectomie nom f s 0.03 0.00 0.03 0.00 +clitoridien clitoridien adj m s 0.04 0.41 0.04 0.07 +clitoridienne clitoridien adj f s 0.04 0.41 0.00 0.34 +clitoris clitoris nom m 1.28 0.41 1.28 0.41 +clivage clivage nom m s 0.02 0.61 0.01 0.27 +clivages clivage nom m p 0.02 0.61 0.01 0.34 +cliver cliver ver 0.01 0.00 0.01 0.00 inf; +clivés clivé adj m p 0.03 0.00 0.03 0.00 +cloîtra cloîtrer ver 0.80 2.09 0.00 0.07 ind:pas:3s; +cloîtrai cloîtrer ver 0.80 2.09 0.00 0.07 ind:pas:1s; +cloîtraient cloîtrer ver 0.80 2.09 0.00 0.14 ind:imp:3p; +cloîtrait cloîtrer ver 0.80 2.09 0.00 0.14 ind:imp:3s; +cloîtrant cloîtrer ver 0.80 2.09 0.01 0.00 par:pre; +cloître cloître nom m s 0.89 7.23 0.84 6.28 +cloîtrer cloîtrer ver 0.80 2.09 0.17 0.27 inf; +cloîtres cloître nom m p 0.89 7.23 0.05 0.95 +cloîtrâmes cloîtrer ver 0.80 2.09 0.01 0.00 ind:pas:1p; +cloîtré cloîtrer ver m s 0.80 2.09 0.22 0.54 par:pas; +cloîtrée cloîtrer ver f s 0.80 2.09 0.17 0.61 par:pas; +cloîtrées cloîtré adj f p 0.33 0.54 0.14 0.07 +cloîtrés cloîtrer ver m p 0.80 2.09 0.05 0.00 par:pas; +cloacal cloacal adj m s 0.00 0.07 0.00 0.07 +cloaque cloaque nom m s 0.75 1.89 0.59 1.76 +cloaques cloaque nom m p 0.75 1.89 0.16 0.14 +cloc cloc nom m s 0.00 0.07 0.00 0.07 +clochaient clocher ver 8.93 2.97 0.00 0.07 ind:imp:3p; +clochait clocher ver 8.93 2.97 0.93 1.08 ind:imp:3s; +clochant clocher ver 8.93 2.97 0.00 0.27 par:pre; +clochard clochard nom m s 3.88 10.88 2.40 5.27 +clocharde clochard nom f s 3.88 10.88 0.32 1.15 +clochardes clochard nom f p 3.88 10.88 0.18 0.00 +clochardisait clochardiser ver 0.00 0.34 0.00 0.07 ind:imp:3s; +clochardisation clochardisation nom f s 0.01 0.20 0.01 0.20 +clochardiser clochardiser ver 0.00 0.34 0.00 0.20 inf; +clochardisé clochardiser ver m s 0.00 0.34 0.00 0.07 par:pas; +clochards clochard nom m p 3.88 10.88 0.98 4.46 +cloche_pied cloche_pied nom f s 0.01 0.14 0.01 0.14 +cloche cloche nom f s 19.72 34.59 9.01 18.24 +clochent clocher ver 8.93 2.97 0.15 0.00 ind:pre:3p; +clocher clocher nom m s 2.38 13.65 1.87 11.01 +clochers clocher nom m p 2.38 13.65 0.51 2.64 +cloches cloche nom f p 19.72 34.59 10.71 16.35 +clocheton clocheton nom m s 0.00 2.09 0.00 0.88 +clochetons clocheton nom m p 0.00 2.09 0.00 1.22 +clochette clochette nom f s 3.43 5.74 2.57 2.50 +clochettes clochette nom f p 3.43 5.74 0.86 3.24 +clochât clocher ver 8.93 2.97 0.00 0.07 sub:imp:3s; +cloché clocher ver m s 8.93 2.97 0.03 0.00 par:pas; +clodo clodo nom m s 4.12 4.05 3.36 2.16 +clodos clodo nom m p 4.12 4.05 0.76 1.89 +cloison cloison nom f s 2.83 18.24 1.52 12.77 +cloisonnaient cloisonner ver 0.03 0.61 0.00 0.14 ind:imp:3p; +cloisonnais cloisonner ver 0.03 0.61 0.00 0.07 ind:imp:1s; +cloisonnant cloisonner ver 0.03 0.61 0.00 0.07 par:pre; +cloisonne cloisonner ver 0.03 0.61 0.01 0.00 ind:pre:3s; +cloisonnement cloisonnement nom m s 0.01 0.68 0.01 0.47 +cloisonnements cloisonnement nom m p 0.01 0.68 0.00 0.20 +cloisonner cloisonner ver 0.03 0.61 0.00 0.07 inf; +cloisonné cloisonné adj m s 0.16 0.68 0.01 0.41 +cloisonnée cloisonné adj f s 0.16 0.68 0.14 0.00 +cloisonnées cloisonné adj f p 0.16 0.68 0.01 0.07 +cloisonnés cloisonner ver m p 0.03 0.61 0.01 0.14 par:pas; +cloisons cloison nom f p 2.83 18.24 1.31 5.47 +clonage clonage nom m s 1.05 0.07 1.05 0.07 +clonant cloner ver 1.31 0.00 0.01 0.00 par:pre; +clone clone nom m s 3.49 0.20 2.48 0.07 +clonent cloner ver 1.31 0.00 0.04 0.00 ind:pre:3p; +cloner cloner ver 1.31 0.00 0.63 0.00 inf; +clones clone nom m p 3.49 0.20 1.01 0.14 +clonique clonique adj f s 0.01 0.00 0.01 0.00 +cloné cloner ver m s 1.31 0.00 0.46 0.00 par:pas; +clonés cloner ver m p 1.31 0.00 0.09 0.00 par:pas; +clopais cloper ver 0.07 0.74 0.01 0.00 ind:imp:1s; +clopant cloper ver 0.07 0.74 0.00 0.14 par:pre; +clope clope nom s 11.94 4.93 7.87 2.50 +cloper cloper ver 0.07 0.74 0.03 0.34 inf; +clopes clope nom p 11.94 4.93 4.08 2.43 +clopeur clopeur nom m s 0.00 0.07 0.00 0.07 +clopin_clopant clopin_clopant adv 0.00 0.14 0.00 0.14 +clopina clopiner ver 0.12 1.01 0.00 0.14 ind:pas:3s; +clopinait clopiner ver 0.12 1.01 0.02 0.27 ind:imp:3s; +clopinant clopiner ver 0.12 1.01 0.05 0.41 par:pre; +clopine clopiner ver 0.12 1.01 0.02 0.07 ind:pre:3s; +clopinements clopinement nom m p 0.00 0.07 0.00 0.07 +clopiner clopiner ver 0.12 1.01 0.01 0.07 inf; +clopinettes clopinettes nom f p 0.94 0.27 0.94 0.27 +clopinez clopiner ver 0.12 1.01 0.02 0.00 imp:pre:2p;ind:pre:2p; +clopinâmes clopiner ver 0.12 1.01 0.00 0.07 ind:pas:1p; +cloporte cloporte nom m s 0.70 2.97 0.13 1.55 +cloportes cloporte nom m p 0.70 2.97 0.57 1.42 +cloquait cloquer ver 0.00 3.99 0.00 0.20 ind:imp:3s; +cloquant cloquer ver 0.00 3.99 0.00 0.07 par:pre; +cloque cloque nom f s 1.43 3.45 1.14 1.89 +cloquent cloquer ver 0.00 3.99 0.00 0.07 ind:pre:3p; +cloquer cloquer ver 0.00 3.99 0.00 0.74 inf; +cloques cloque nom f p 1.43 3.45 0.28 1.55 +cloqué cloquer ver m s 0.00 3.99 0.00 1.35 par:pas; +cloquée cloquer ver f s 0.00 3.99 0.00 0.34 par:pas; +cloquées cloquer ver f p 0.00 3.99 0.00 0.07 par:pas; +cloqués cloqué adj m p 0.00 0.27 0.00 0.14 +clora clore ver 7.75 31.28 0.01 0.00 ind:fut:3s; +clore clore ver 7.75 31.28 1.42 2.57 inf; +clos clore ver m 7.75 31.28 3.70 21.96 imp:pre:2s;ind:pre:1s;par:pas;par:pas; +close_combat close_combat nom m s 0.04 0.07 0.04 0.07 +close_up close_up nom m s 0.01 0.07 0.01 0.07 +close clore ver f s 7.75 31.28 2.26 3.24 par:pas;par:pas;sub:pre:1s;sub:pre:3s; +closent clore ver 7.75 31.28 0.00 0.14 ind:pre:3p; +closerie closerie nom f s 0.01 0.81 0.01 0.81 +closes clos adj f p 4.62 19.46 1.90 7.43 +clou clou nom m s 13.83 27.50 7.79 10.20 +cloua clouer ver 7.51 19.39 0.14 1.35 ind:pas:3s; +clouage clouage nom m s 0.00 0.07 0.00 0.07 +clouai clouer ver 7.51 19.39 0.00 0.20 ind:pas:1s; +clouaient clouer ver 7.51 19.39 0.23 0.54 ind:imp:3p; +clouait clouer ver 7.51 19.39 0.18 2.09 ind:imp:3s; +clouant clouer ver 7.51 19.39 0.15 0.61 par:pre; +cloue clouer ver 7.51 19.39 1.12 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clouent clouer ver 7.51 19.39 0.04 0.47 ind:pre:3p; +clouer clouer ver 7.51 19.39 1.39 2.64 inf; +clouera clouer ver 7.51 19.39 0.04 0.00 ind:fut:3s; +clouerai clouer ver 7.51 19.39 0.07 0.00 ind:fut:1s; +cloueraient clouer ver 7.51 19.39 0.01 0.07 cnd:pre:3p; +clouerait clouer ver 7.51 19.39 0.14 0.14 cnd:pre:3s; +cloueras clouer ver 7.51 19.39 0.00 0.07 ind:fut:2s; +clouerez clouer ver 7.51 19.39 0.01 0.00 ind:fut:2p; +cloueur cloueur nom m s 0.16 0.07 0.00 0.07 +cloueuse cloueur nom f s 0.16 0.07 0.16 0.00 +clouez clouer ver 7.51 19.39 0.22 0.07 imp:pre:2p;ind:pre:2p; +clouions clouer ver 7.51 19.39 0.00 0.07 ind:imp:1p; +clouons clouer ver 7.51 19.39 0.03 0.00 imp:pre:1p;ind:pre:1p; +clous clou nom m p 13.83 27.50 6.04 17.30 +cloutage cloutage nom m s 0.00 0.07 0.00 0.07 +clouèrent clouer ver 7.51 19.39 0.00 0.14 ind:pas:3p; +cloutier cloutier nom m s 0.62 0.00 0.62 0.00 +clouté clouté adj m s 0.80 3.78 0.29 1.62 +cloutée clouté adj f s 0.80 3.78 0.05 0.34 +cloutées clouté adj f p 0.80 3.78 0.14 0.54 +cloutés clouté adj m p 0.80 3.78 0.31 1.28 +cloué clouer ver m s 7.51 19.39 2.40 5.54 par:pas; +clouée clouer ver f s 7.51 19.39 0.53 2.84 par:pas; +clouées clouer ver f p 7.51 19.39 0.32 0.61 par:pas; +cloués clouer ver m p 7.51 19.39 0.49 0.74 par:pas; +clown clown nom m s 0.06 9.19 0.06 6.49 +clownerie clownerie nom f s 0.00 0.34 0.00 0.07 +clowneries clownerie nom f p 0.00 0.34 0.00 0.27 +clownesque clownesque adj s 0.10 0.41 0.10 0.34 +clownesques clownesque adj p 0.10 0.41 0.00 0.07 +clowns clown nom m p 0.06 9.19 0.00 2.70 +clé clé nom f s 118.13 48.58 68.73 35.00 +club_house club_house nom m s 0.05 0.07 0.05 0.07 +club club nom m s 67.51 21.42 61.99 18.58 +clébard clébard nom m s 1.65 4.19 1.27 2.91 +clébards clébard nom m p 1.65 4.19 0.38 1.28 +clubhouse clubhouse nom m s 0.05 0.00 0.05 0.00 +clubiste clubiste nom s 0.03 0.00 0.03 0.00 +clubman clubman nom m s 0.00 0.07 0.00 0.07 +clubs club nom m p 67.51 21.42 5.52 2.84 +clématite clématite nom f s 0.14 0.68 0.14 0.14 +clématites clématite nom f p 0.14 0.68 0.00 0.54 +clémence clémence nom f s 3.44 2.43 3.44 2.43 +clément clément adj m s 3.36 3.18 2.50 1.96 +clémente clément adj f s 3.36 3.18 0.47 0.88 +clémentes clément adj f p 3.36 3.18 0.07 0.14 +clémentine clémentine nom f s 0.02 0.00 0.02 0.00 +cléments clément adj m p 3.36 3.18 0.33 0.20 +clunisien clunisien adj m s 0.00 0.07 0.00 0.07 +clérical clérical adj m s 0.04 1.01 0.01 0.54 +cléricale clérical adj f s 0.04 1.01 0.01 0.20 +cléricales clérical adj f p 0.04 1.01 0.01 0.14 +cléricalisme cléricalisme nom m s 0.00 0.20 0.00 0.20 +cléricature cléricature nom f s 0.00 0.07 0.00 0.07 +cléricaux clérical adj m p 0.04 1.01 0.00 0.14 +clés clé nom f p 118.13 48.58 49.40 13.58 +cluse cluse nom f s 0.00 0.14 0.00 0.07 +cluses cluse nom f p 0.00 0.14 0.00 0.07 +cluster cluster nom m s 0.03 0.00 0.03 0.00 +clystère clystère nom m s 0.14 0.20 0.14 0.07 +clystères clystère nom m p 0.14 0.20 0.00 0.14 +cm cm nom m 10.89 1.01 10.89 1.01 +co_animateur co_animateur nom m s 0.03 0.00 0.03 0.00 +co_auteur co_auteur nom m s 0.46 0.00 0.46 0.00 +co_avocat co_avocat nom m s 0.01 0.00 0.01 0.00 +co_capitaine co_capitaine nom m s 0.09 0.00 0.09 0.00 +co_dépendance co_dépendance nom f s 0.01 0.00 0.01 0.00 +co_dépendant co_dépendant adj f s 0.01 0.00 0.01 0.00 +co_existence co_existence nom f s 0.00 0.07 0.00 0.07 +co_exister co_exister ver 0.05 0.00 0.05 0.00 inf; +co_habiter co_habiter ver 0.02 0.00 0.02 0.00 inf; +co_locataire co_locataire nom s 0.22 0.00 0.22 0.00 +co_pilote co_pilote nom s 0.49 0.00 0.49 0.00 +co_pilote co_pilote adj p 0.28 0.00 0.01 0.00 +co_production co_production nom f s 0.11 0.00 0.01 0.00 +co_production co_production nom f p 0.11 0.00 0.10 0.00 +co_proprio co_proprio nom m s 0.01 0.07 0.01 0.00 +co_proprio co_proprio nom m p 0.01 0.07 0.00 0.07 +co_propriétaire co_propriétaire nom s 0.19 0.27 0.05 0.00 +co_propriétaire co_propriétaire nom p 0.19 0.27 0.14 0.27 +co_propriété co_propriété nom f s 0.00 0.34 0.00 0.34 +co_président co_président nom m s 0.02 0.07 0.02 0.07 +co_responsable co_responsable adj s 0.01 0.07 0.01 0.07 +co_signer co_signer ver 0.07 0.00 0.07 0.00 inf; +cosigner cosigner ver 0.32 0.00 0.01 0.00 ind:pre:1p; +co_tuteur co_tuteur nom m s 0.00 0.07 0.00 0.07 +co_éducatif co_éducatif adj f s 0.01 0.00 0.01 0.00 +co_équipier co_équipier nom m s 0.21 0.00 0.21 0.00 +coéquipier coéquipier nom f s 4.20 0.47 0.06 0.00 +co_vedette co_vedette nom f s 0.02 0.00 0.02 0.00 +co_voiturage co_voiturage nom m s 0.07 0.00 0.07 0.00 +co co adv 0.14 0.00 0.14 0.00 +coïncida coïncider ver 1.93 7.09 0.11 0.54 ind:pas:3s; +coïncidaient coïncider ver 1.93 7.09 0.01 0.27 ind:imp:3p; +coïncidais coïncider ver 1.93 7.09 0.00 0.07 ind:imp:1s; +coïncidait coïncider ver 1.93 7.09 0.07 1.62 ind:imp:3s; +coïncidant coïncider ver 1.93 7.09 0.03 0.47 par:pre; +coïncidassent coïncider ver 1.93 7.09 0.00 0.07 sub:imp:3p; +coïncide coïncider ver 1.93 7.09 0.78 1.22 imp:pre:2s;ind:pre:3s; +coïncidence coïncidence nom f s 18.04 7.16 15.95 5.61 +coïncidences coïncidence nom f p 18.04 7.16 2.09 1.55 +coïncident coïncider ver 1.93 7.09 0.44 0.47 ind:pre:3p; +coïncider coïncider ver 1.93 7.09 0.32 1.35 inf; +coïnciderait coïncider ver 1.93 7.09 0.01 0.20 cnd:pre:3s; +coïncidions coïncider ver 1.93 7.09 0.00 0.07 ind:imp:1p; +coïncidât coïncider ver 1.93 7.09 0.00 0.07 sub:imp:3s; +coïncidèrent coïncider ver 1.93 7.09 0.00 0.20 ind:pas:3p; +coïncidé coïncider ver m s 1.93 7.09 0.15 0.47 par:pas; +coït coït nom m s 0.83 3.38 0.81 2.84 +coïts coït nom m p 0.83 3.38 0.03 0.54 +coïté coïter ver m s 0.00 0.07 0.00 0.07 par:pas; +coût coût nom m s 5.04 1.35 3.58 1.22 +coûta coûter ver 83.14 48.11 0.05 1.22 ind:pas:3s; +coûtaient coûter ver 83.14 48.11 0.37 1.35 ind:imp:3p; +coûtais coûter ver 83.14 48.11 0.00 0.14 ind:imp:1s; +coûtait coûter ver 83.14 48.11 0.86 6.35 ind:imp:3s; +coûtant coûtant adj m s 0.11 0.07 0.11 0.07 +coûte coûter ver 83.14 48.11 38.84 20.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coûtent coûter ver 83.14 48.11 5.35 1.76 ind:pre:3p; +coûter coûter ver 83.14 48.11 12.58 5.27 inf; +coûtera coûter ver 83.14 48.11 7.11 1.82 ind:fut:3s; +coûterai coûter ver 83.14 48.11 0.02 0.07 ind:fut:1s; +coûteraient coûter ver 83.14 48.11 0.06 0.07 cnd:pre:3p; +coûterait coûter ver 83.14 48.11 2.29 2.30 cnd:pre:3s; +coûteras coûter ver 83.14 48.11 0.01 0.00 ind:fut:2s; +coûteront coûter ver 83.14 48.11 0.41 0.20 ind:fut:3p; +coûtes coûter ver 83.14 48.11 0.44 0.00 ind:pre:2s; +coûteuse coûteux adj f s 3.09 5.07 1.23 1.22 +coûteusement coûteusement adv 0.00 0.07 0.00 0.07 +coûteuses coûteux adj f p 3.09 5.07 0.26 0.81 +coûteux coûteux adj m 3.09 5.07 1.60 3.04 +coûtez coûter ver 83.14 48.11 0.20 0.07 ind:pre:2p; +coûtions coûter ver 83.14 48.11 0.00 0.07 ind:imp:1p; +coûtât coûter ver 83.14 48.11 0.00 0.47 sub:imp:3s; +coûts coût nom m p 5.04 1.35 1.46 0.14 +coûté coûter ver m s 83.14 48.11 14.35 6.15 par:pas; +coûtée coûter ver f s 83.14 48.11 0.01 0.07 par:pas; +coûtées coûter ver f p 83.14 48.11 0.01 0.07 par:pas; +coûtés coûter ver m p 83.14 48.11 0.12 0.07 par:pas; +coaccusé coaccusé nom m s 0.04 0.00 0.04 0.00 +coaccusés coaccusé nom m p 0.04 0.00 0.01 0.00 +coach coach nom m s 7.37 0.00 7.33 0.00 +coache coacher ver 0.23 0.00 0.01 0.00 ind:pre:3s; +coacher coacher ver 0.23 0.00 0.10 0.00 inf; +coaches coache nom m p 0.04 0.00 0.04 0.00 +coachs coach nom m p 7.37 0.00 0.04 0.00 +coaché coacher ver m s 0.23 0.00 0.12 0.00 par:pas; +coactionnaires coactionnaire nom p 0.01 0.00 0.01 0.00 +coadjuteur coadjuteur nom m s 0.00 0.07 0.00 0.07 +coagula coaguler ver 0.51 2.64 0.01 0.07 ind:pas:3s; +coagulaient coaguler ver 0.51 2.64 0.00 0.07 ind:imp:3p; +coagulait coaguler ver 0.51 2.64 0.01 0.34 ind:imp:3s; +coagulant coagulant adj m s 0.03 0.07 0.03 0.00 +coagulantes coagulant adj f p 0.03 0.07 0.00 0.07 +coagulants coagulant nom m p 0.15 0.07 0.14 0.00 +coagulation coagulation nom f s 0.33 0.27 0.33 0.27 +coagule coaguler ver 0.51 2.64 0.15 0.14 ind:pre:3s; +coagulent coaguler ver 0.51 2.64 0.00 0.14 ind:pre:3p; +coaguler coaguler ver 0.51 2.64 0.19 0.27 inf; +coagulera coaguler ver 0.51 2.64 0.01 0.00 ind:fut:3s; +coagulât coaguler ver 0.51 2.64 0.00 0.07 sub:imp:3s; +coagulé coaguler ver m s 0.51 2.64 0.13 0.81 par:pas; +coagulée coaguler ver f s 0.51 2.64 0.00 0.27 par:pas; +coagulées coaguler ver f p 0.51 2.64 0.00 0.07 par:pas; +coagulés coaguler ver m p 0.51 2.64 0.01 0.20 par:pas; +coalisaient coaliser ver 0.00 0.47 0.00 0.14 ind:imp:3p; +coalisent coaliser ver 0.00 0.47 0.00 0.07 ind:pre:3p; +coaliser coaliser ver 0.00 0.47 0.00 0.07 inf; +coalisée coaliser ver f s 0.00 0.47 0.00 0.07 par:pas; +coalisés coalisé nom m p 0.00 0.34 0.00 0.34 +coalition coalition nom f s 1.34 3.45 1.29 3.11 +coalitions coalition nom f p 1.34 3.45 0.05 0.34 +coaltar coaltar nom m s 0.00 0.20 0.00 0.20 +coassaient coasser ver 0.13 0.61 0.00 0.20 ind:imp:3p; +coassant coasser ver 0.13 0.61 0.01 0.14 par:pre; +coasse coasser ver 0.13 0.61 0.10 0.00 ind:pre:3s; +coassement coassement nom m s 0.14 0.41 0.01 0.34 +coassements coassement nom m p 0.14 0.41 0.14 0.07 +coassent coasser ver 0.13 0.61 0.00 0.14 ind:pre:3p; +coasser coasser ver 0.13 0.61 0.02 0.14 inf; +coati coati nom m s 0.01 0.00 0.01 0.00 +coauteur coauteur nom m s 0.12 0.07 0.08 0.00 +coauteurs coauteur nom m p 0.12 0.07 0.04 0.07 +coaxial coaxial adj m s 0.14 0.00 0.13 0.00 +coaxiales coaxial adj f p 0.14 0.00 0.01 0.00 +cob cob nom m s 0.04 0.00 0.04 0.00 +cobalt cobalt nom m s 0.55 0.61 0.55 0.61 +cobaye cobaye nom m s 4.27 0.95 3.02 0.74 +cobayes cobaye nom m p 4.27 0.95 1.25 0.20 +cobelligérants cobelligérant nom m p 0.00 0.07 0.00 0.07 +câbla câbler ver 0.47 0.61 0.00 0.14 ind:pas:3s; +câblage câblage nom m s 0.44 0.00 0.42 0.00 +câblages câblage nom m p 0.44 0.00 0.02 0.00 +câblait câbler ver 0.47 0.61 0.00 0.07 ind:imp:3s; +câble câble nom m s 17.04 6.08 13.36 2.97 +câbler câbler ver 0.47 0.61 0.12 0.00 inf; +câblerais câbler ver 0.47 0.61 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +câblerie câblerie nom f s 0.02 0.00 0.02 0.00 +câbleront câbler ver 0.47 0.61 0.00 0.07 ind:fut:3p; +câbles câble nom m p 17.04 6.08 3.67 3.11 +câbleur câbleur nom m s 0.19 0.07 0.16 0.00 +câbleurs câbleur nom m p 0.19 0.07 0.02 0.07 +câblez câbler ver 0.47 0.61 0.02 0.07 imp:pre:2p; +câblier câblier nom m s 0.01 0.00 0.01 0.00 +câblogramme câblogramme nom m s 0.02 0.00 0.02 0.00 +câblé câbler ver m s 0.47 0.61 0.18 0.20 par:pas; +câblée câblé adj f s 0.25 0.07 0.07 0.00 +câblées câblé adj f p 0.25 0.07 0.08 0.00 +câblés câbler ver m p 0.47 0.61 0.04 0.00 par:pas; +cobol cobol nom m s 0.01 0.00 0.01 0.00 +cobra cobra nom m s 4.24 0.81 3.96 0.74 +cobras cobra nom m p 4.24 0.81 0.28 0.07 +coca_cola coca_cola nom m 0.41 1.01 0.41 1.01 +coca coca nom s 14.53 2.64 14.08 2.64 +cocaïne cocaïne nom f s 5.57 1.22 5.57 1.22 +cocaïnomane cocaïnomane nom s 0.08 0.07 0.08 0.07 +cocagne cocagne nom f s 0.56 0.81 0.56 0.74 +cocagnes cocagne nom f p 0.56 0.81 0.00 0.07 +cocard cocard nom m s 0.19 0.34 0.16 0.14 +cocardasse cocarder ver 0.00 0.20 0.00 0.07 sub:imp:1s; +cocarde cocarde nom f s 0.25 1.49 0.22 1.22 +cocarder cocarder ver 0.00 0.20 0.00 0.07 inf; +cocardes cocarde nom f p 0.25 1.49 0.03 0.27 +cocardier cocardier adj m s 0.02 0.41 0.01 0.14 +cocardiers cocardier adj m p 0.02 0.41 0.00 0.14 +cocardière cocardier adj f s 0.02 0.41 0.01 0.00 +cocardières cocardier adj f p 0.02 0.41 0.00 0.14 +cocards cocard nom m p 0.19 0.34 0.03 0.20 +cocardés cocarder ver m p 0.00 0.20 0.00 0.07 par:pas; +cocas coca nom p 14.53 2.64 0.45 0.00 +cocasse cocasse adj s 0.21 2.84 0.20 2.03 +cocassement cocassement adv 0.00 0.20 0.00 0.20 +cocasserie cocasserie nom f s 0.01 0.47 0.01 0.47 +cocasses cocasse adj p 0.21 2.84 0.01 0.81 +coccinelle coccinelle nom f s 1.33 1.82 1.15 1.35 +coccinelles coccinelle nom f p 1.33 1.82 0.18 0.47 +coccyx coccyx nom m 0.69 0.27 0.69 0.27 +cocha cocher ver 2.15 3.24 0.00 0.07 ind:pas:3s; +cochait cocher ver 2.15 3.24 0.01 0.27 ind:imp:3s; +cochant cocher ver 2.15 3.24 0.00 0.20 par:pre; +coche coche nom s 1.23 1.89 1.23 1.69 +cochelet cochelet nom m s 0.00 0.07 0.00 0.07 +cochenille cochenille nom f s 0.09 0.00 0.07 0.00 +cochenilles cochenille nom f p 0.09 0.00 0.01 0.00 +cocher cocher nom m s 2.50 5.27 2.10 4.12 +cocheras cocher ver 2.15 3.24 0.01 0.00 ind:fut:2s; +cochers cocher nom m p 2.50 5.27 0.41 1.15 +coches cocher ver 2.15 3.24 0.04 0.00 ind:pre:2s; +cochez cocher ver 2.15 3.24 0.12 0.00 imp:pre:2p;ind:pre:2p; +cochléaire cochléaire adj m s 0.17 0.00 0.04 0.00 +cochléaires cochléaire adj m p 0.17 0.00 0.14 0.00 +cochlée cochlée nom f s 0.01 0.00 0.01 0.00 +cochon cochon nom m s 31.09 21.42 21.67 12.70 +cochonceté cochonceté nom f s 0.24 0.20 0.01 0.00 +cochoncetés cochonceté nom f p 0.24 0.20 0.23 0.20 +cochonnaille cochonnaille nom f s 0.00 0.47 0.00 0.14 +cochonnailles cochonnaille nom f p 0.00 0.47 0.00 0.34 +cochonne cochon nom f s 31.09 21.42 0.92 0.68 +cochonner cochonner ver 0.07 0.41 0.02 0.00 inf; +cochonnerie cochonnerie nom f s 5.25 4.05 1.22 1.01 +cochonneries cochonnerie nom f p 5.25 4.05 4.03 3.04 +cochonnes cochon adj f p 7.76 5.88 0.87 0.47 +cochonnet cochonnet nom m s 0.76 0.61 0.53 0.34 +cochonnets cochonnet nom m p 0.76 0.61 0.22 0.27 +cochonnez cochonner ver 0.07 0.41 0.00 0.07 ind:pre:2p; +cochonné cochonner ver m s 0.07 0.41 0.01 0.20 par:pas; +cochonnée cochonnée nom f s 0.01 0.00 0.01 0.00 +cochonnées cochonner ver f p 0.07 0.41 0.00 0.07 par:pas; +cochons cochon nom m p 31.09 21.42 8.50 7.91 +cochât cocher ver 2.15 3.24 0.00 0.07 sub:imp:3s; +cochère cocher adj f s 0.45 6.28 0.45 5.14 +cochères cocher adj f p 0.45 6.28 0.00 1.15 +coché cocher ver m s 2.15 3.24 0.41 0.41 par:pas; +cochée cocher ver f s 2.15 3.24 0.01 0.00 par:pas; +cochées cocher ver f p 2.15 3.24 0.05 0.07 par:pas; +cochés cocher ver m p 2.15 3.24 0.01 0.00 par:pas; +cochylis cochylis nom m 0.00 0.07 0.00 0.07 +cocker cocker nom m s 0.47 1.08 0.47 1.08 +cockney cockney nom m s 0.24 0.14 0.13 0.14 +cockneys cockney nom m p 0.24 0.14 0.11 0.00 +cockpit cockpit nom m s 1.93 0.88 1.93 0.88 +cocktail cocktail nom m s 10.27 9.59 6.62 5.68 +cocktails cocktail nom m p 10.27 9.59 3.65 3.92 +coco coco nom s 8.58 7.77 6.74 6.08 +cocolait cocoler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +cocole cocoler ver 0.00 0.14 0.00 0.07 ind:pre:3s; +cocon cocon nom m s 1.65 3.24 1.07 2.91 +cocons cocon nom m p 1.65 3.24 0.58 0.34 +cocoon cocoon nom m s 0.09 0.00 0.09 0.00 +cocorico cocorico nom m s 1.27 1.01 1.27 0.81 +cocoricos cocorico nom m p 1.27 1.01 0.01 0.20 +cocos coco nom p 8.58 7.77 1.84 1.69 +cocotent cocoter ver 0.00 0.20 0.00 0.07 ind:pre:3p; +cocoter cocoter ver 0.00 0.20 0.00 0.07 inf; +cocoteraies cocoteraie nom f p 0.00 0.07 0.00 0.07 +cocoterait cocoter ver 0.00 0.20 0.00 0.07 cnd:pre:3s; +cocotier cocotier nom m s 0.73 2.43 0.39 0.54 +cocotiers cocotier nom m p 0.73 2.43 0.35 1.89 +cocotte_minute cocotte_minute nom f s 0.07 0.34 0.07 0.34 +cocotte cocotte nom f s 3.47 6.15 3.35 4.73 +cocottes cocotte nom f p 3.47 6.15 0.12 1.42 +coction coction nom f s 0.00 0.07 0.00 0.07 +cocu cocu nom m s 3.78 2.03 3.17 1.49 +cocuage cocuage nom m s 0.00 0.14 0.00 0.07 +cocuages cocuage nom m p 0.00 0.14 0.00 0.07 +cocue cocu adj f s 3.03 3.78 0.45 0.27 +cocues cocu adj f p 3.03 3.78 0.00 0.14 +cocufiant cocufier ver 0.14 0.41 0.01 0.00 par:pre; +cocufie cocufier ver 0.14 0.41 0.03 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cocufier cocufier ver 0.14 0.41 0.04 0.07 inf; +cocufiera cocufier ver 0.14 0.41 0.01 0.00 ind:fut:3s; +cocufié cocufier ver m s 0.14 0.41 0.05 0.14 par:pas; +cocus cocu nom m p 3.78 2.03 0.50 0.54 +coda coda nom f s 0.14 0.14 0.14 0.14 +codage codage nom m s 0.30 0.27 0.30 0.14 +codages codage nom m p 0.30 0.27 0.00 0.14 +codait coder ver 2.19 0.88 0.00 0.07 ind:imp:3s; +codante codant adj f s 0.01 0.00 0.01 0.00 +code_barre code_barre nom m s 0.07 0.00 0.07 0.00 +code_barres code_barres nom m 0.18 0.00 0.18 0.00 +code_clé code_clé nom m s 0.01 0.00 0.01 0.00 +code code nom m s 51.27 15.00 43.85 13.58 +coder coder ver 2.19 0.88 0.16 0.07 inf; +codes_clé codes_clé nom m p 0.01 0.00 0.01 0.00 +codes code nom m p 51.27 15.00 7.42 1.42 +codeur codeur nom m s 0.04 0.00 0.04 0.00 +codex codex nom m 0.62 0.14 0.62 0.14 +codicille codicille nom m s 0.05 0.27 0.05 0.14 +codicilles codicille nom m p 0.05 0.27 0.00 0.14 +codifia codifier ver 0.07 0.88 0.00 0.07 ind:pas:3s; +codifiait codifier ver 0.07 0.88 0.01 0.00 ind:imp:3s; +codifiant codifier ver 0.07 0.88 0.00 0.07 par:pre; +codification codification nom f s 0.15 0.07 0.15 0.07 +codifier codifier ver 0.07 0.88 0.01 0.07 inf; +codifièrent codifier ver 0.07 0.88 0.00 0.07 ind:pas:3p; +codifié codifier ver m s 0.07 0.88 0.01 0.27 par:pas; +codifiée codifier ver f s 0.07 0.88 0.03 0.27 par:pas; +codifiées codifier ver f p 0.07 0.88 0.01 0.07 par:pas; +codon codon nom m s 0.01 0.00 0.01 0.00 +codé codé adj m s 2.26 0.74 1.22 0.34 +codée codé adj f s 2.26 0.74 0.56 0.14 +codées coder ver f p 2.19 0.88 0.35 0.00 par:pas; +codéine codéine nom f s 0.21 0.07 0.21 0.07 +codés codé adj m p 2.26 0.74 0.34 0.20 +codétenu codétenu nom m s 0.17 0.20 0.13 0.07 +codétenus codétenu nom m p 0.17 0.20 0.05 0.14 +coefficient coefficient nom m s 0.99 1.22 0.81 1.08 +coefficients coefficient nom m p 0.99 1.22 0.18 0.14 +coelacanthe coelacanthe nom m s 0.06 0.07 0.06 0.07 +coeliaque coeliaque adj m s 0.01 0.00 0.01 0.00 +coentreprise coentreprise nom f s 0.03 0.00 0.03 0.00 +coenzyme coenzyme nom f s 0.03 0.00 0.03 0.00 +coercitif coercitif adj m s 0.01 0.20 0.00 0.07 +coercition coercition nom f s 0.48 0.14 0.48 0.14 +coercitive coercitif adj f s 0.01 0.20 0.01 0.14 +coeur_poumon coeur_poumon nom m p 0.03 0.07 0.03 0.07 +coeur coeur nom m s 239.97 400.74 224.98 380.07 +coeurs coeur nom m p 239.97 400.74 15.00 20.68 +coexistaient coexister ver 0.42 1.28 0.00 0.14 ind:imp:3p; +coexistait coexister ver 0.42 1.28 0.00 0.07 ind:imp:3s; +coexistant coexister ver 0.42 1.28 0.00 0.20 par:pre; +coexistants coexistant adj m p 0.01 0.14 0.01 0.14 +coexiste coexister ver 0.42 1.28 0.04 0.07 ind:pre:3s; +coexistence coexistence nom f s 0.49 0.41 0.49 0.41 +coexistent coexister ver 0.42 1.28 0.02 0.34 ind:pre:3p; +coexister coexister ver 0.42 1.28 0.29 0.41 inf; +coexisteront coexister ver 0.42 1.28 0.00 0.07 ind:fut:3p; +coexistez coexister ver 0.42 1.28 0.03 0.00 ind:pre:2p; +coexistons coexister ver 0.42 1.28 0.03 0.00 ind:pre:1p; +coexisté coexister ver m s 0.42 1.28 0.02 0.00 par:pas; +coffee_shop coffee_shop nom m s 0.10 0.00 0.10 0.00 +coffin coffin nom m s 0.33 0.00 0.33 0.00 +coffio coffio nom m s 0.01 0.74 0.01 0.61 +coffios coffio nom m p 0.01 0.74 0.00 0.14 +coffiot coffiot nom m s 0.00 0.34 0.00 0.14 +coffiots coffiot nom m p 0.00 0.34 0.00 0.20 +coffrage coffrage nom m s 0.01 0.88 0.01 0.81 +coffrages coffrage nom m p 0.01 0.88 0.00 0.07 +coffraient coffrer ver 7.75 0.68 0.01 0.00 ind:imp:3p; +coffrait coffrer ver 7.75 0.68 0.12 0.00 ind:imp:3s; +coffre_fort coffre_fort nom m s 4.62 3.92 4.17 3.24 +coffre coffre nom m s 39.35 29.32 35.97 25.14 +coffrent coffrer ver 7.75 0.68 0.23 0.00 ind:pre:3p; +coffrer coffrer ver 7.75 0.68 3.33 0.34 inf; +coffrera coffrer ver 7.75 0.68 0.05 0.00 ind:fut:3s; +coffrerai coffrer ver 7.75 0.68 0.03 0.00 ind:fut:1s; +coffrerais coffrer ver 7.75 0.68 0.01 0.00 cnd:pre:1s; +coffrerons coffrer ver 7.75 0.68 0.01 0.00 ind:fut:1p; +coffreront coffrer ver 7.75 0.68 0.29 0.00 ind:fut:3p; +coffre_fort coffre_fort nom m p 4.62 3.92 0.45 0.68 +coffres coffre nom m p 39.35 29.32 3.38 4.19 +coffret coffret nom m s 1.98 6.42 1.77 5.81 +coffrets coffret nom m p 1.98 6.42 0.22 0.61 +coffrez coffrer ver 7.75 0.68 0.35 0.00 imp:pre:2p;ind:pre:2p; +coffrons coffrer ver 7.75 0.68 0.09 0.00 imp:pre:1p; +coffré coffrer ver m s 7.75 0.68 1.39 0.00 par:pas; +coffrée coffrer ver f s 7.75 0.68 0.07 0.07 par:pas; +coffrées coffrer ver f p 7.75 0.68 0.02 0.00 par:pas; +coffrés coffrer ver m p 7.75 0.68 0.38 0.14 par:pas; +cofinancement cofinancement nom m s 0.01 0.00 0.01 0.00 +cofondateur cofondateur nom m s 0.29 0.07 0.25 0.00 +cofondateurs cofondateur nom m p 0.29 0.07 0.02 0.07 +cofondatrice cofondateur nom f s 0.29 0.07 0.01 0.00 +cofondé cofondé adj m s 0.01 0.00 0.01 0.00 +cogitais cogiter ver 0.70 0.54 0.01 0.00 ind:imp:1s; +cogitait cogiter ver 0.70 0.54 0.02 0.07 ind:imp:3s; +cogitant cogiter ver 0.70 0.54 0.00 0.07 par:pre; +cogitation cogitation nom f s 0.21 0.61 0.02 0.07 +cogitations cogitation nom f p 0.21 0.61 0.19 0.54 +cogite cogiter ver 0.70 0.54 0.12 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cogitent cogiter ver 0.70 0.54 0.00 0.07 ind:pre:3p; +cogiter cogiter ver 0.70 0.54 0.43 0.07 inf; +cogito cogito nom m s 0.01 0.34 0.01 0.34 +cogité cogiter ver m s 0.70 0.54 0.12 0.14 par:pas; +cogna cogner ver 27.01 34.26 0.13 2.09 ind:pas:3s; +cognac cognac nom m s 12.07 11.01 11.69 10.68 +cognacs cognac nom m p 12.07 11.01 0.39 0.34 +cognai cogner ver 27.01 34.26 0.01 0.20 ind:pas:1s; +cognaient cogner ver 27.01 34.26 0.08 0.88 ind:imp:3p; +cognais cogner ver 27.01 34.26 0.18 0.47 ind:imp:1s; +cognait cogner ver 27.01 34.26 0.79 4.59 ind:imp:3s; +cognant cogner ver 27.01 34.26 0.44 3.24 par:pre; +cognassier cognassier nom m s 0.50 0.27 0.10 0.20 +cognassiers cognassier nom m p 0.50 0.27 0.40 0.07 +cogne cogner ver 27.01 34.26 7.36 8.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +cognement cognement nom m s 0.03 0.20 0.00 0.14 +cognements cognement nom m p 0.03 0.20 0.03 0.07 +cognent cogner ver 27.01 34.26 0.48 1.22 ind:pre:3p; +cogner cogner ver 27.01 34.26 7.73 8.65 inf; +cognera cogner ver 27.01 34.26 0.05 0.00 ind:fut:3s; +cognerai cogner ver 27.01 34.26 0.07 0.00 ind:fut:1s; +cogneraient cogner ver 27.01 34.26 0.01 0.00 cnd:pre:3p; +cognerais cogner ver 27.01 34.26 0.05 0.00 cnd:pre:1s; +cognerait cogner ver 27.01 34.26 0.01 0.34 cnd:pre:3s; +cognerez cogner ver 27.01 34.26 0.04 0.00 ind:fut:2p; +cogneront cogner ver 27.01 34.26 0.04 0.07 ind:fut:3p; +cognes cogner ver 27.01 34.26 0.85 0.41 ind:pre:2s; +cogneur cogneur nom m s 0.48 0.47 0.24 0.34 +cogneurs cogneur nom m p 0.48 0.47 0.23 0.07 +cogneuse cogneur nom f s 0.48 0.47 0.01 0.07 +cognez cogner ver 27.01 34.26 0.42 0.00 imp:pre:2p;ind:pre:2p; +cognitif cognitif adj m s 0.42 0.07 0.09 0.00 +cognitifs cognitif adj m p 0.42 0.07 0.02 0.07 +cognition cognition nom f s 0.01 0.00 0.01 0.00 +cognitive cognitif adj f s 0.42 0.07 0.17 0.00 +cognitives cognitif adj f p 0.42 0.07 0.14 0.00 +cognons cogner ver 27.01 34.26 0.13 0.07 imp:pre:1p;ind:pre:1p; +cognèrent cogner ver 27.01 34.26 0.00 0.20 ind:pas:3p; +cogné cogner ver m s 27.01 34.26 6.94 2.84 par:pas; +cognée cogner ver f s 27.01 34.26 1.18 0.34 par:pas; +cognées cognée nom f p 0.25 1.55 0.00 0.41 +cognés cogner ver m p 27.01 34.26 0.01 0.27 par:pas; +cogérant cogérant nom m s 0.01 0.00 0.01 0.00 +cohabita cohabiter ver 1.31 1.08 0.00 0.07 ind:pas:3s; +cohabitaient cohabiter ver 1.31 1.08 0.11 0.41 ind:imp:3p; +cohabitait cohabiter ver 1.31 1.08 0.00 0.14 ind:imp:3s; +cohabitant cohabitant adj m s 0.01 0.00 0.01 0.00 +cohabitation cohabitation nom f s 0.20 1.15 0.19 1.15 +cohabitations cohabitation nom f p 0.20 1.15 0.01 0.00 +cohabite cohabiter ver 1.31 1.08 0.26 0.20 ind:pre:3s; +cohabitent cohabiter ver 1.31 1.08 0.15 0.14 ind:pre:3p; +cohabiter cohabiter ver 1.31 1.08 0.71 0.14 inf; +cohabiteraient cohabiter ver 1.31 1.08 0.02 0.00 cnd:pre:3p; +cohabitiez cohabiter ver 1.31 1.08 0.02 0.00 ind:imp:2p; +cohabité cohabiter ver m s 1.31 1.08 0.04 0.00 par:pas; +cohorte cohorte nom f s 0.78 4.53 0.49 3.31 +cohortes cohorte nom f p 0.78 4.53 0.29 1.22 +cohue cohue nom f s 0.89 7.70 0.88 7.23 +cohues cohue nom f p 0.89 7.70 0.01 0.47 +cohérence cohérence nom f s 0.46 3.51 0.46 3.45 +cohérences cohérence nom f p 0.46 3.51 0.00 0.07 +cohérent cohérent adj m s 1.92 4.66 1.23 2.43 +cohérente cohérent adj f s 1.92 4.66 0.52 1.35 +cohérentes cohérent adj f p 1.92 4.66 0.07 0.41 +cohérents cohérent adj m p 1.92 4.66 0.09 0.47 +cohéritier cohéritier nom m s 0.14 0.07 0.14 0.00 +cohéritiers cohéritier nom m p 0.14 0.07 0.00 0.07 +cohésion cohésion nom f s 0.47 4.59 0.47 4.59 +cohésive cohésif adj f s 0.02 0.00 0.02 0.00 +coi coi adj s 0.50 3.58 0.42 2.16 +coiffa coiffer ver 8.38 42.43 0.01 1.42 ind:pas:3s; +coiffai coiffer ver 8.38 42.43 0.14 0.34 ind:pas:1s; +coiffaient coiffer ver 8.38 42.43 0.00 0.47 ind:imp:3p; +coiffais coiffer ver 8.38 42.43 0.11 0.20 ind:imp:1s;ind:imp:2s; +coiffait coiffer ver 8.38 42.43 0.31 2.50 ind:imp:3s; +coiffant coiffer ver 8.38 42.43 0.04 1.28 par:pre; +coiffante coiffant adj f s 0.03 0.20 0.01 0.07 +coiffe coiffer ver 8.38 42.43 1.81 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coiffent coiffer ver 8.38 42.43 0.30 0.34 ind:pre:3p; +coiffer coiffer ver 8.38 42.43 2.67 3.99 inf; +coiffera coiffer ver 8.38 42.43 0.04 0.00 ind:fut:3s; +coifferais coiffer ver 8.38 42.43 0.14 0.07 cnd:pre:2s; +coifferait coiffer ver 8.38 42.43 0.01 0.14 cnd:pre:3s; +coifferas coiffer ver 8.38 42.43 0.00 0.07 ind:fut:2s; +coifferont coiffer ver 8.38 42.43 0.01 0.00 ind:fut:3p; +coiffes coiffer ver 8.38 42.43 0.61 0.00 ind:pre:2s; +coiffeur coiffeur nom m s 14.05 21.82 11.01 13.38 +coiffeurs coiffeur nom m p 14.05 21.82 0.78 2.70 +coiffeuse coiffeur nom f s 14.05 21.82 2.27 5.34 +coiffeuses coiffeuse nom f p 0.21 0.00 0.21 0.00 +coiffez coiffer ver 8.38 42.43 0.33 0.14 imp:pre:2p;ind:pre:2p; +coiffiez coiffer ver 8.38 42.43 0.13 0.07 ind:imp:2p; +coiffât coiffer ver 8.38 42.43 0.00 0.07 sub:imp:3s; +coiffèrent coiffer ver 8.38 42.43 0.00 0.07 ind:pas:3p; +coiffé coiffer ver m s 8.38 42.43 0.63 11.62 par:pas; +coiffée coiffer ver f s 8.38 42.43 0.80 8.65 par:pas; +coiffées coiffer ver f p 8.38 42.43 0.04 2.03 par:pas; +coiffure coiffure nom f s 10.46 15.81 10.09 14.05 +coiffures coiffure nom f p 10.46 15.81 0.37 1.76 +coiffés coiffer ver m p 8.38 42.43 0.27 5.81 par:pas; +coin_coin coin_coin nom m s 0.19 0.34 0.19 0.34 +coin_repas coin_repas nom m s 0.02 0.00 0.02 0.00 +coin coin nom m s 99.51 199.26 93.43 167.09 +coince coincer ver 56.95 30.61 4.26 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +coincent coincer ver 56.95 30.61 0.47 0.34 ind:pre:3p; +coincer coincer ver 56.95 30.61 9.78 4.73 inf; +coincera coincer ver 56.95 30.61 0.98 0.00 ind:fut:3s; +coincerai coincer ver 56.95 30.61 0.69 0.07 ind:fut:1s; +coincerais coincer ver 56.95 30.61 0.04 0.00 cnd:pre:1s; +coincerait coincer ver 56.95 30.61 0.02 0.14 cnd:pre:3s; +coinceriez coincer ver 56.95 30.61 0.01 0.00 cnd:pre:2p; +coincerons coincer ver 56.95 30.61 0.05 0.00 ind:fut:1p; +coinceront coincer ver 56.95 30.61 0.09 0.00 ind:fut:3p; +coinces coincer ver 56.95 30.61 0.13 0.07 ind:pre:2s; +coinceur coinceur nom m s 0.00 0.07 0.00 0.07 +coincez coincer ver 56.95 30.61 0.43 0.07 imp:pre:2p;ind:pre:2p; +coincher coincher ver 0.00 0.07 0.00 0.07 inf; +coinciez coincer ver 56.95 30.61 0.01 0.00 ind:imp:2p; +coincèrent coincer ver 56.95 30.61 0.00 0.07 ind:pas:3p; +coincé coincer ver m s 56.95 30.61 23.27 10.27 par:pas; +coincée coincer ver f s 56.95 30.61 8.18 5.54 ind:imp:3p;par:pas; +coincées coincer ver f p 56.95 30.61 1.02 0.81 par:pas; +coincés coincer ver m p 56.95 30.61 7.14 2.64 par:pas; +coing coing nom m s 2.13 0.68 0.67 0.41 +coings coing nom m p 2.13 0.68 1.46 0.27 +coins coin nom m p 99.51 199.26 6.08 32.16 +coinstot coinstot nom m s 0.00 0.74 0.00 0.68 +coinstots coinstot nom m p 0.00 0.74 0.00 0.07 +coinça coincer ver 56.95 30.61 0.01 0.68 ind:pas:3s; +coinçage coinçage nom m s 0.00 0.27 0.00 0.20 +coinçages coinçage nom m p 0.00 0.27 0.00 0.07 +coinçaient coincer ver 56.95 30.61 0.00 0.41 ind:imp:3p; +coinçais coincer ver 56.95 30.61 0.15 0.07 ind:imp:1s; +coinçait coincer ver 56.95 30.61 0.10 1.22 ind:imp:3s; +coinçant coincer ver 56.95 30.61 0.05 0.47 par:pre; +coinçons coincer ver 56.95 30.61 0.05 0.00 imp:pre:1p; +coir coir nom m s 0.01 0.00 0.01 0.00 +cois coi adj p 0.50 3.58 0.08 0.61 +coite coi adj f s 0.50 3.58 0.00 0.68 +coites coi adj f p 0.50 3.58 0.00 0.14 +coke coke nom s 8.54 5.47 8.49 5.47 +cokes coke nom f p 8.54 5.47 0.05 0.00 +col_de_cygne col_de_cygne nom m s 0.01 0.00 0.01 0.00 +col_vert col_vert nom m s 0.12 0.14 0.12 0.07 +col col nom m s 9.76 57.43 8.35 51.82 +cola cola nom m s 0.45 0.74 0.43 0.34 +colas cola nom m p 0.45 0.74 0.01 0.41 +colback colback nom m s 0.00 0.47 0.00 0.41 +colbacks colback nom m p 0.00 0.47 0.00 0.07 +colchicine colchicine nom f s 0.13 0.00 0.13 0.00 +colchique colchique nom m s 0.00 0.34 0.00 0.07 +colchiques colchique nom m p 0.00 0.34 0.00 0.27 +colcotar colcotar nom m s 0.00 0.07 0.00 0.07 +cold_cream cold_cream nom m s 0.03 0.07 0.03 0.07 +cold cold adj m s 2.01 0.07 2.01 0.07 +cole cole nom m s 0.14 0.00 0.14 0.00 +colectomie colectomie nom f s 0.01 0.00 0.01 0.00 +colibacilles colibacille nom m p 0.01 0.07 0.01 0.07 +colibri colibri nom m s 0.33 0.61 0.21 0.34 +colibris colibri nom m p 0.33 0.61 0.12 0.27 +colifichet colifichet nom m s 0.32 1.08 0.22 0.07 +colifichets colifichet nom m p 0.32 1.08 0.09 1.01 +colimaçon colimaçon nom m s 0.04 1.76 0.04 1.62 +colimaçons colimaçon nom m p 0.04 1.76 0.00 0.14 +colin_maillard colin_maillard nom m s 0.93 0.95 0.93 0.95 +câlin câlin nom m s 6.38 1.96 4.11 0.61 +colin colin nom m s 0.27 0.54 0.27 0.54 +câlina câliner ver 0.81 1.22 0.14 0.07 ind:pas:3s; +câlinait câliner ver 0.81 1.22 0.00 0.20 ind:imp:3s; +câlinant câliner ver 0.81 1.22 0.01 0.07 par:pre; +câline câlin adj f s 1.31 2.84 0.58 1.15 +câlinement câlinement adv 0.00 0.14 0.00 0.14 +câlinent câliner ver 0.81 1.22 0.01 0.14 ind:pre:3p; +câliner câliner ver 0.81 1.22 0.45 0.41 inf; +câlinerai câliner ver 0.81 1.22 0.01 0.00 ind:fut:1s; +câlinerie câlinerie nom f s 0.10 0.61 0.10 0.14 +câlineries câlinerie nom f p 0.10 0.61 0.00 0.47 +câlines câlin adj f p 1.31 2.84 0.01 0.20 +câlins câlin nom m p 6.38 1.96 2.22 0.61 +câliné câliner ver m s 0.81 1.22 0.04 0.14 par:pas; +câlinée câliner ver f s 0.81 1.22 0.00 0.07 par:pas; +colique colique nom f s 1.40 2.03 1.02 0.95 +coliques colique nom f p 1.40 2.03 0.37 1.08 +colis_cadeau colis_cadeau nom m 0.02 0.00 0.02 0.00 +colis_repas colis_repas nom m 0.00 0.07 0.00 0.07 +colis colis nom m 7.50 10.54 7.50 10.54 +colistier colistier nom m s 0.02 0.00 0.02 0.00 +colite colite nom f s 0.27 0.41 0.25 0.34 +colites colite nom f p 0.27 0.41 0.02 0.07 +colla coller ver 51.34 107.16 0.26 4.66 ind:pas:3s; +collabo collabo nom s 0.62 2.43 0.33 0.88 +collabora collaborer ver 7.53 5.41 0.00 0.07 ind:pas:3s; +collaborai collaborer ver 7.53 5.41 0.01 0.07 ind:pas:1s; +collaboraient collaborer ver 7.53 5.41 0.03 0.07 ind:imp:3p; +collaborais collaborer ver 7.53 5.41 0.03 0.14 ind:imp:1s;ind:imp:2s; +collaborait collaborer ver 7.53 5.41 0.45 0.27 ind:imp:3s; +collaborant collaborer ver 7.53 5.41 0.18 0.20 par:pre; +collaborateur collaborateur nom m s 4.54 11.49 1.27 3.78 +collaborateurs collaborateur nom m p 4.54 11.49 2.38 6.96 +collaboration collaboration nom f s 5.12 12.50 5.11 12.43 +collaborationniste collaborationniste adj m s 0.00 0.20 0.00 0.14 +collaborationnistes collaborationniste adj m p 0.00 0.20 0.00 0.07 +collaborations collaboration nom f p 5.12 12.50 0.01 0.07 +collaboratrice collaborateur nom f s 4.54 11.49 0.89 0.47 +collaboratrices collaboratrice nom f p 0.01 0.00 0.01 0.00 +collabore collaborer ver 7.53 5.41 1.09 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +collaborent collaborer ver 7.53 5.41 0.43 0.41 ind:pre:3p; +collaborer collaborer ver 7.53 5.41 2.71 2.16 inf; +collaborera collaborer ver 7.53 5.41 0.05 0.07 ind:fut:3s; +collaborerai collaborer ver 7.53 5.41 0.07 0.00 ind:fut:1s; +collaboreraient collaborer ver 7.53 5.41 0.01 0.07 cnd:pre:3p; +collaborerez collaborer ver 7.53 5.41 0.02 0.07 ind:fut:2p; +collaborerons collaborer ver 7.53 5.41 0.16 0.00 ind:fut:1p; +collabores collaborer ver 7.53 5.41 0.11 0.00 ind:pre:2s; +collaborez collaborer ver 7.53 5.41 0.40 0.00 imp:pre:2p;ind:pre:2p; +collaborions collaborer ver 7.53 5.41 0.00 0.07 ind:imp:1p; +collaborons collaborer ver 7.53 5.41 0.26 0.00 imp:pre:1p;ind:pre:1p; +collaboré collaborer ver m s 7.53 5.41 1.54 1.01 par:pas; +collabos collabo nom p 0.62 2.43 0.29 1.55 +collage collage nom m s 1.31 0.81 1.22 0.74 +collages collage nom m p 1.31 0.81 0.10 0.07 +collagène collagène nom m s 1.23 0.14 1.23 0.14 +collai coller ver 51.34 107.16 0.00 0.81 ind:pas:1s; +collaient coller ver 51.34 107.16 0.11 3.78 ind:imp:3p; +collais coller ver 51.34 107.16 0.24 0.34 ind:imp:1s;ind:imp:2s; +collait coller ver 51.34 107.16 2.03 13.18 ind:imp:3s; +collant collant adj m s 3.37 4.93 1.75 1.96 +collante collant adj f s 3.37 4.93 0.83 1.42 +collantes collant adj f p 3.37 4.93 0.08 0.27 +collants collant nom m p 4.28 4.46 2.60 2.03 +collapse collapser ver 0.02 0.07 0.01 0.07 imp:pre:2s;ind:pre:3s; +collapserait collapser ver 0.02 0.07 0.01 0.00 cnd:pre:3s; +collapsus collapsus nom m 0.17 0.14 0.17 0.14 +collas coller ver 51.34 107.16 0.00 0.14 ind:pas:2s; +collation collation nom f s 0.92 2.03 0.88 1.76 +collationne collationner ver 0.13 0.14 0.02 0.07 ind:pre:1s;ind:pre:3s; +collationnement collationnement nom m s 0.01 0.00 0.01 0.00 +collationner collationner ver 0.13 0.14 0.10 0.00 inf; +collationnés collationner ver m p 0.13 0.14 0.01 0.07 par:pas; +collations collation nom f p 0.92 2.03 0.04 0.27 +collatéral collatéral adj m s 0.66 0.34 0.33 0.07 +collatérale collatéral adj f s 0.66 0.34 0.01 0.07 +collatérales collatéral adj f p 0.66 0.34 0.01 0.07 +collatéraux collatéral adj m p 0.66 0.34 0.30 0.14 +colle coller ver 51.34 107.16 18.32 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +collectait collecter ver 2.17 1.01 0.05 0.00 ind:imp:3s; +collectant collecter ver 2.17 1.01 0.04 0.14 par:pre; +collecte collecte nom f s 3.13 1.49 2.88 1.28 +collecter collecter ver 2.17 1.01 1.07 0.41 inf; +collectes collecte nom f p 3.13 1.49 0.25 0.20 +collecteur collecteur nom m s 0.87 1.28 0.67 0.88 +collecteurs collecteur nom m p 0.87 1.28 0.20 0.41 +collectez collecter ver 2.17 1.01 0.01 0.00 imp:pre:2p; +collectif collectif nom m s 3.44 0.27 3.44 0.27 +collectifs collectif adj m p 4.60 15.68 0.27 1.35 +collection collection nom f s 16.93 25.68 16.25 21.62 +collectionna collectionner ver 5.74 5.07 0.00 0.07 ind:pas:3s; +collectionnaient collectionner ver 5.74 5.07 0.01 0.20 ind:imp:3p; +collectionnais collectionner ver 5.74 5.07 0.40 0.41 ind:imp:1s;ind:imp:2s; +collectionnait collectionner ver 5.74 5.07 0.70 1.28 ind:imp:3s; +collectionnant collectionner ver 5.74 5.07 0.01 0.20 par:pre; +collectionne collectionner ver 5.74 5.07 2.63 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +collectionnent collectionner ver 5.74 5.07 0.23 0.20 ind:pre:3p; +collectionner collectionner ver 5.74 5.07 0.65 1.15 inf; +collectionnes collectionner ver 5.74 5.07 0.52 0.07 ind:pre:2s; +collectionneur collectionneur nom m s 1.72 4.32 1.30 2.36 +collectionneurs collectionneur nom m p 1.72 4.32 0.36 1.76 +collectionneuse collectionneuse nom f s 0.10 0.00 0.10 0.00 +collectionnez collectionner ver 5.74 5.07 0.26 0.07 imp:pre:2p;ind:pre:2p; +collectionnions collectionner ver 5.74 5.07 0.00 0.07 ind:imp:1p; +collectionnons collectionner ver 5.74 5.07 0.04 0.00 ind:pre:1p; +collectionné collectionner ver m s 5.74 5.07 0.19 0.14 par:pas; +collectionnées collectionner ver f p 5.74 5.07 0.11 0.07 par:pas; +collectionnés collectionner ver m p 5.74 5.07 0.00 0.14 par:pas; +collections collection nom f p 16.93 25.68 0.69 4.05 +collective collectif adj f s 4.60 15.68 1.88 7.91 +collectivement collectivement adv 0.22 0.74 0.22 0.74 +collectives collectif adj f p 4.60 15.68 0.36 1.69 +collectivisation collectivisation nom f s 0.04 0.27 0.04 0.27 +collectiviser collectiviser ver 0.19 0.14 0.05 0.00 inf; +collectivisme collectivisme nom m s 0.14 0.34 0.14 0.34 +collectiviste collectiviste adj s 0.01 0.20 0.01 0.20 +collectivisé collectiviser ver m s 0.19 0.14 0.14 0.00 par:pas; +collectivisée collectiviser ver f s 0.19 0.14 0.01 0.07 par:pas; +collectivisés collectiviser ver m p 0.19 0.14 0.00 0.07 par:pas; +collectivité collectivité nom f s 0.42 2.91 0.41 2.57 +collectivités collectivité nom f p 0.42 2.91 0.01 0.34 +collectons collecter ver 2.17 1.01 0.09 0.00 ind:pre:1p; +collector collector nom m s 0.24 0.00 0.24 0.00 +collectrice collecteur adj f s 0.01 0.00 0.01 0.00 +collecté collecter ver m s 2.17 1.01 0.35 0.20 par:pas; +collectée collecter ver f s 2.17 1.01 0.04 0.07 par:pas; +collectées collecter ver f p 2.17 1.01 0.05 0.00 par:pas; +collectés collecter ver m p 2.17 1.01 0.08 0.14 par:pas; +collent coller ver 51.34 107.16 1.59 2.97 ind:pre:3p; +coller coller ver 51.34 107.16 10.33 12.36 ind:pre:2p;inf; +collera coller ver 51.34 107.16 0.63 0.34 ind:fut:3s; +collerai coller ver 51.34 107.16 0.65 0.07 ind:fut:1s; +collerais coller ver 51.34 107.16 0.10 0.14 cnd:pre:1s;cnd:pre:2s; +collerait coller ver 51.34 107.16 0.22 0.41 cnd:pre:3s; +colleras coller ver 51.34 107.16 0.03 0.00 ind:fut:2s; +collerette collerette nom f s 0.04 2.09 0.04 1.62 +collerettes collerette nom f p 0.04 2.09 0.00 0.47 +collerez coller ver 51.34 107.16 0.06 0.00 ind:fut:2p; +colleront coller ver 51.34 107.16 0.37 0.00 ind:fut:3p; +colles coller ver 51.34 107.16 1.56 0.41 ind:pre:2s;sub:pre:2s; +collet collet nom m s 1.11 3.72 1.08 2.57 +colletage colletage nom m s 0.00 0.07 0.00 0.07 +colleter colleter ver 0.07 0.95 0.03 0.41 inf; +colletin colletin nom m s 0.00 0.14 0.00 0.14 +collets collet nom m p 1.11 3.72 0.03 1.15 +collette colleter ver 0.07 0.95 0.01 0.14 imp:pre:2s;ind:pre:3s; +colleté colleter ver m s 0.07 0.95 0.03 0.27 par:pas; +colletés colleter ver m p 0.07 0.95 0.00 0.14 par:pas; +colleur colleur nom m s 0.11 0.34 0.11 0.00 +colleurs colleur nom m p 0.11 0.34 0.00 0.34 +colleuse colleuse nom f s 0.01 0.00 0.01 0.00 +colley colley nom m s 0.28 0.00 0.27 0.00 +colleys colley nom m p 0.28 0.00 0.01 0.00 +collez coller ver 51.34 107.16 1.68 0.27 imp:pre:2p;ind:pre:2p; +collier collier nom m s 19.91 20.00 17.79 14.80 +colliers collier nom m p 19.91 20.00 2.13 5.20 +colliez coller ver 51.34 107.16 0.05 0.00 ind:imp:2p; +collignon collignon nom m s 2.54 0.20 2.54 0.20 +collimateur collimateur nom m s 0.69 0.81 0.69 0.81 +collimation collimation nom f s 0.00 0.07 0.00 0.07 +colline colline nom f s 26.39 55.61 15.61 30.07 +collines colline nom f p 26.39 55.61 10.79 25.54 +collions coller ver 51.34 107.16 0.01 0.34 ind:imp:1p; +collision collision nom f s 3.91 2.23 3.53 1.76 +collisions collision nom f p 3.91 2.23 0.38 0.47 +colloïdale colloïdal adj f s 0.01 0.00 0.01 0.00 +colloïde colloïde nom m s 0.00 0.07 0.00 0.07 +collodion collodion nom m s 0.03 0.14 0.03 0.14 +collons coller ver 51.34 107.16 0.14 0.14 imp:pre:1p;ind:pre:1p; +colloquant colloquer ver 0.00 0.54 0.00 0.07 par:pre; +colloque colloque nom m s 0.70 2.23 0.58 1.55 +colloquer colloquer ver 0.00 0.54 0.00 0.20 inf; +colloques colloque nom m p 0.70 2.23 0.12 0.68 +colloqué colloquer ver m s 0.00 0.54 0.00 0.20 par:pas; +colloquée colloquer ver f s 0.00 0.54 0.00 0.07 par:pas; +collège collège nom m s 11.58 26.82 11.30 25.00 +collèges collège nom m p 11.58 26.82 0.28 1.82 +collègue collègue nom s 38.93 32.09 18.22 12.16 +collègues collègue nom p 38.93 32.09 20.72 19.93 +collèrent coller ver 51.34 107.16 0.00 0.34 ind:pas:3p; +collé coller ver m s 51.34 107.16 6.66 20.41 par:pas; +collée coller ver f s 51.34 107.16 2.39 11.28 par:pas; +collées coller ver f p 51.34 107.16 1.19 7.57 par:pas; +collégial collégial adj m s 0.20 0.34 0.14 0.00 +collégiale collégial adj f s 0.20 0.34 0.05 0.27 +collégiales collégial adj f p 0.20 0.34 0.00 0.07 +collégialité collégialité nom f s 0.00 0.14 0.00 0.14 +collégiaux collégial adj m p 0.20 0.34 0.01 0.00 +collégien collégien nom m s 0.84 4.66 0.30 1.89 +collégienne collégien nom f s 0.84 4.66 0.26 0.61 +collégiennes collégienne nom f p 0.05 0.00 0.05 0.00 +collégiens collégien nom m p 0.84 4.66 0.28 1.76 +collure collure nom f s 0.03 0.00 0.03 0.00 +collés coller ver m p 51.34 107.16 2.21 11.15 par:pas; +collusion collusion nom f s 0.10 0.74 0.10 0.54 +collusions collusion nom f p 0.10 0.74 0.00 0.20 +collutoire collutoire nom m s 0.00 0.07 0.00 0.07 +collyre collyre nom m s 0.50 0.47 0.50 0.27 +collyres collyre nom m p 0.50 0.47 0.00 0.20 +colmatage colmatage nom m s 0.03 0.07 0.03 0.07 +colmataient colmater ver 1.51 1.76 0.00 0.07 ind:imp:3p; +colmatais colmater ver 1.51 1.76 0.00 0.07 ind:imp:1s; +colmatait colmater ver 1.51 1.76 0.00 0.27 ind:imp:3s; +colmatant colmater ver 1.51 1.76 0.01 0.07 par:pre; +colmate colmater ver 1.51 1.76 0.31 0.20 imp:pre:2s;ind:pre:3s; +colmater colmater ver 1.51 1.76 0.56 0.47 inf; +colmatez colmater ver 1.51 1.76 0.01 0.00 imp:pre:2p; +colmatons colmater ver 1.51 1.76 0.01 0.00 imp:pre:1p; +colmaté colmater ver m s 1.51 1.76 0.14 0.20 par:pas; +colmatée colmater ver f s 1.51 1.76 0.27 0.20 par:pas; +colmatées colmater ver f p 1.51 1.76 0.20 0.14 par:pas; +colmatés colmater ver m p 1.51 1.76 0.00 0.07 par:pas; +colo colo nom f s 1.11 2.91 1.10 2.77 +colocataire colocataire nom s 4.88 0.07 3.91 0.00 +colocataires colocataire nom p 4.88 0.07 0.97 0.07 +colocation colocation nom f s 0.23 0.07 0.23 0.07 +colombages colombage nom m p 0.00 0.68 0.00 0.68 +colombe colombe nom f s 6.84 5.34 5.08 3.51 +colombelle colombelle nom f s 0.00 1.22 0.00 1.22 +colombes colombe nom f p 6.84 5.34 1.76 1.82 +colombien colombien adj m s 0.54 0.14 0.29 0.00 +colombienne colombien nom f s 1.11 0.14 0.17 0.14 +colombiens colombien nom m p 1.11 0.14 0.75 0.00 +colombier colombier nom m s 0.12 1.49 0.12 1.35 +colombiers colombier nom m p 0.12 1.49 0.00 0.14 +colombin colombin nom m s 0.01 0.61 0.01 0.14 +colombine colombin adj f s 0.02 0.34 0.01 0.27 +colombines colombin adj f p 0.02 0.34 0.00 0.07 +colombins colombin nom m p 0.01 0.61 0.00 0.47 +colombo colombo nom m s 0.00 0.07 0.00 0.07 +colombophile colombophile adj s 0.27 0.34 0.27 0.34 +colombophilie colombophilie nom f s 0.14 0.07 0.14 0.07 +colon colon nom m s 5.46 4.05 1.21 0.88 +colonel colonel nom m s 103.70 47.03 102.86 42.91 +colonelle colonel nom f s 103.70 47.03 0.14 1.82 +colonels colonel nom m p 103.70 47.03 0.71 2.30 +colonial colonial adj m s 2.85 12.70 1.12 4.32 +coloniale colonial adj f s 2.85 12.70 1.11 5.34 +coloniales colonial adj f p 2.85 12.70 0.31 1.49 +colonialisme colonialisme nom m s 0.34 0.74 0.34 0.68 +colonialismes colonialisme nom m p 0.34 0.74 0.00 0.07 +colonialiste colonialiste nom s 0.26 0.07 0.10 0.00 +colonialistes colonialiste nom p 0.26 0.07 0.16 0.07 +coloniaux colonial adj m p 2.85 12.70 0.30 1.55 +colonie colonie nom f s 8.75 19.05 5.53 10.34 +colonies colonie nom f p 8.75 19.05 3.22 8.72 +colonisait coloniser ver 0.60 1.62 0.00 0.14 ind:imp:3s; +colonisateur colonisateur nom m s 0.01 0.20 0.00 0.14 +colonisateurs colonisateur nom m p 0.01 0.20 0.01 0.07 +colonisation colonisation nom f s 0.71 0.68 0.71 0.61 +colonisations colonisation nom f p 0.71 0.68 0.00 0.07 +colonisatrice colonisateur adj f s 0.01 0.14 0.01 0.14 +colonise coloniser ver 0.60 1.62 0.01 0.14 ind:pre:3s; +colonisent coloniser ver 0.60 1.62 0.04 0.00 ind:pre:3p; +coloniser coloniser ver 0.60 1.62 0.22 0.41 inf; +coloniserait coloniser ver 0.60 1.62 0.01 0.00 cnd:pre:3s; +colonisez coloniser ver 0.60 1.62 0.01 0.00 ind:pre:2p; +colonisons coloniser ver 0.60 1.62 0.02 0.00 imp:pre:1p;ind:pre:1p; +colonisèrent coloniser ver 0.60 1.62 0.02 0.07 ind:pas:3p; +colonisé coloniser ver m s 0.60 1.62 0.15 0.41 par:pas; +colonisée coloniser ver f s 0.60 1.62 0.06 0.27 par:pas; +colonisées coloniser ver f p 0.60 1.62 0.02 0.00 par:pas; +colonisés coloniser ver m p 0.60 1.62 0.02 0.20 par:pas; +colonnade colonnade nom f s 0.17 2.84 0.15 1.15 +colonnades colonnade nom f p 0.17 2.84 0.02 1.69 +colonne colonne nom f s 9.29 50.07 6.58 25.95 +colonnes colonne nom f p 9.29 50.07 2.71 24.12 +colonnette colonnette nom f s 0.00 1.82 0.00 0.74 +colonnettes colonnette nom f p 0.00 1.82 0.00 1.08 +colonoscopie colonoscopie nom f s 0.01 0.00 0.01 0.00 +colons colon nom m p 5.46 4.05 1.58 3.18 +colopathie colopathie nom f s 0.01 0.00 0.01 0.00 +colophane colophane nom f s 0.28 0.20 0.28 0.20 +colophané colophaner ver m s 0.10 0.00 0.10 0.00 par:pas; +coloquinte coloquinte nom f s 0.00 0.27 0.00 0.14 +coloquintes coloquinte nom f p 0.00 0.27 0.00 0.14 +colora colorer ver 1.10 9.39 0.00 0.81 ind:pas:3s; +colorai colorer ver 1.10 9.39 0.00 0.07 ind:pas:1s; +coloraient colorer ver 1.10 9.39 0.00 0.54 ind:imp:3p; +colorait colorer ver 1.10 9.39 0.00 1.55 ind:imp:3s; +colorant colorant nom m s 0.42 0.47 0.33 0.20 +colorantes colorant adj f p 0.20 0.14 0.00 0.07 +colorants colorant nom m p 0.42 0.47 0.09 0.27 +coloration coloration nom f s 0.67 1.49 0.65 1.15 +colorations coloration nom f p 0.67 1.49 0.01 0.34 +colorature colorature nom f s 0.14 0.14 0.14 0.14 +colore colorer ver 1.10 9.39 0.13 1.01 imp:pre:2s;ind:pre:3s; +colorectal colorectal adj m s 0.01 0.00 0.01 0.00 +colorent colorer ver 1.10 9.39 0.14 0.41 ind:pre:3p; +colorer colorer ver 1.10 9.39 0.16 0.68 inf; +colorez colorer ver 1.10 9.39 0.01 0.07 imp:pre:2p; +coloriage coloriage nom m s 0.49 0.34 0.31 0.27 +coloriages coloriage nom m p 0.49 0.34 0.18 0.07 +coloriaient colorier ver 1.10 5.41 0.00 0.07 ind:imp:3p; +coloriait colorier ver 1.10 5.41 0.01 0.20 ind:imp:3s; +colorie colorier ver 1.10 5.41 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +colorient colorier ver 1.10 5.41 0.01 0.07 ind:pre:3p; +colorier colorier ver 1.10 5.41 0.25 0.68 inf; +coloriez colorier ver 1.10 5.41 0.17 0.00 imp:pre:2p;ind:pre:2p; +coloris coloris nom m 0.39 1.62 0.39 1.62 +colorisation colorisation nom f s 0.04 0.00 0.04 0.00 +coloriste coloriste nom s 0.16 0.27 0.16 0.27 +colorisé coloriser ver m s 0.02 0.00 0.02 0.00 par:pas; +colorié colorier ver m s 1.10 5.41 0.18 1.08 par:pas; +coloriée colorier ver f s 1.10 5.41 0.11 0.81 par:pas; +coloriées colorier ver f p 1.10 5.41 0.06 1.49 par:pas; +coloriés colorier ver m p 1.10 5.41 0.25 0.95 par:pas; +colorèrent colorer ver 1.10 9.39 0.00 0.20 ind:pas:3p; +coloré coloré adj m s 2.32 9.53 0.78 2.36 +colorée colorer ver f s 1.10 9.39 0.32 1.01 par:pas; +colorées coloré adj f p 2.32 9.53 0.60 2.36 +colorés coloré adj m p 2.32 9.53 0.78 2.70 +colos colo nom f p 1.11 2.91 0.01 0.14 +coloscopie coloscopie nom f s 0.13 0.00 0.13 0.00 +colossal colossal adj m s 1.37 9.05 0.81 4.46 +colossale colossal adj f s 1.37 9.05 0.48 2.70 +colossales colossal adj f p 1.37 9.05 0.02 1.42 +colossaux colossal adj m p 1.37 9.05 0.05 0.47 +colosse colosse nom m s 2.72 6.82 2.46 6.08 +colosses colosse nom m p 2.72 6.82 0.26 0.74 +colostomie colostomie nom f s 0.09 0.00 0.09 0.00 +colostrum colostrum nom m s 0.01 0.00 0.01 0.00 +colporta colporter ver 0.56 2.16 0.00 0.07 ind:pas:3s; +colportage colportage nom m s 0.01 0.14 0.01 0.14 +colportaient colporter ver 0.56 2.16 0.00 0.14 ind:imp:3p; +colportait colporter ver 0.56 2.16 0.00 0.68 ind:imp:3s; +colportant colporter ver 0.56 2.16 0.01 0.20 par:pre; +colporte colporter ver 0.56 2.16 0.08 0.14 imp:pre:2s;ind:pre:3s; +colportent colporter ver 0.56 2.16 0.03 0.00 ind:pre:3p; +colporter colporter ver 0.56 2.16 0.37 0.47 inf; +colportera colporter ver 0.56 2.16 0.00 0.07 ind:fut:3s; +colportes colporter ver 0.56 2.16 0.00 0.07 ind:pre:2s; +colporteur colporteur nom m s 0.53 1.42 0.38 0.54 +colporteurs colporteur nom m p 0.53 1.42 0.15 0.74 +colporteuse colporteur nom f s 0.53 1.42 0.00 0.14 +colportons colporter ver 0.56 2.16 0.02 0.00 imp:pre:1p;ind:pre:1p; +colporté colporter ver m s 0.56 2.16 0.01 0.14 par:pas; +colportée colporter ver f s 0.56 2.16 0.01 0.14 par:pas; +colportées colporter ver f p 0.56 2.16 0.02 0.07 par:pas; +colposcopie colposcopie nom f s 0.01 0.00 0.01 0.00 +cols_de_cygne cols_de_cygne nom m p 0.00 0.07 0.00 0.07 +col_vert col_vert nom m p 0.12 0.14 0.00 0.07 +cols col nom m p 9.76 57.43 1.37 5.61 +colt colt nom m s 0.97 1.82 0.57 1.82 +colère colère nom f s 68.90 100.07 67.91 92.77 +colères colère nom f p 68.90 100.07 0.99 7.30 +coltin coltin nom m s 0.00 0.27 0.00 0.27 +coltina coltiner ver 1.15 3.04 0.00 0.14 ind:pas:3s; +coltinage coltinage nom m s 0.00 0.34 0.00 0.27 +coltinages coltinage nom m p 0.00 0.34 0.00 0.07 +coltinais coltiner ver 1.15 3.04 0.02 0.20 ind:imp:1s; +coltinait coltiner ver 1.15 3.04 0.02 0.14 ind:imp:3s; +coltinant coltiner ver 1.15 3.04 0.00 0.14 par:pre; +coltine coltiner ver 1.15 3.04 0.15 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coltinent coltiner ver 1.15 3.04 0.01 0.07 ind:pre:3p; +coltiner coltiner ver 1.15 3.04 0.48 1.22 inf; +coltines coltiner ver 1.15 3.04 0.23 0.14 ind:pre:2s; +coltineur coltineur nom m s 0.00 0.07 0.00 0.07 +coltinez coltiner ver 1.15 3.04 0.01 0.00 ind:pre:2p; +coltiné coltiner ver m s 1.15 3.04 0.18 0.20 par:pas; +coltinée coltiner ver f s 1.15 3.04 0.04 0.07 par:pas; +coltinés coltiner ver m p 1.15 3.04 0.00 0.14 par:pas; +colts colt nom m p 0.97 1.82 0.40 0.00 +colée colée nom f s 0.01 0.07 0.01 0.07 +columbarium columbarium nom m s 0.00 0.54 0.00 0.54 +coléoptère coléoptère nom m s 0.64 1.49 0.38 0.61 +coléoptères coléoptère nom m p 0.64 1.49 0.27 0.88 +colérer colérer ver 0.01 0.00 0.01 0.00 inf; +coléreuse coléreux adj f s 1.05 2.64 0.32 0.54 +coléreusement coléreusement adv 0.00 0.07 0.00 0.07 +coléreux coléreux adj m 1.05 2.64 0.73 2.09 +colérique colérique adj s 0.44 0.88 0.43 0.61 +colériques colérique adj f p 0.44 0.88 0.01 0.27 +colvert colvert nom m s 0.19 0.68 0.17 0.41 +colverts colvert nom m p 0.19 0.68 0.03 0.27 +colza colza nom m s 0.05 0.81 0.05 0.61 +colzas colza nom m p 0.05 0.81 0.00 0.20 +com com nom m s 40.90 0.27 40.90 0.27 +coma coma nom m s 12.66 4.93 12.58 4.86 +comac comac adj s 0.16 1.22 0.14 1.08 +comacs comac adj m p 0.16 1.22 0.01 0.14 +comanche comanche nom m s 0.36 0.07 0.36 0.07 +comandant comandant nom s 0.16 0.27 0.16 0.27 +comas coma nom m p 12.66 4.93 0.08 0.07 +comateuse comateux adj f s 0.55 1.08 0.14 0.14 +comateux comateux adj m 0.55 1.08 0.41 0.95 +combat combat nom m s 64.83 72.57 57.31 52.36 +combatif combatif adj m s 0.90 1.42 0.78 0.54 +combatifs combatif adj m p 0.90 1.42 0.05 0.07 +combative combatif adj f s 0.90 1.42 0.07 0.81 +combativité combativité nom f s 0.28 0.41 0.28 0.41 +combats combat nom m p 64.83 72.57 7.53 20.20 +combattît combattre ver 42.89 36.35 0.02 0.07 sub:imp:3s; +combattaient combattre ver 42.89 36.35 0.31 1.62 ind:imp:3p; +combattais combattre ver 42.89 36.35 0.17 0.14 ind:imp:1s;ind:imp:2s; +combattait combattre ver 42.89 36.35 0.50 1.35 ind:imp:3s; +combattant combattant nom m s 6.28 18.31 2.49 4.46 +combattante combattant nom f s 6.28 18.31 0.22 0.54 +combattantes combattant nom f p 6.28 18.31 0.14 0.27 +combattants combattant nom m p 6.28 18.31 3.43 13.04 +combatte combattre ver 42.89 36.35 0.15 0.14 sub:pre:1s;sub:pre:3s; +combattent combattre ver 42.89 36.35 1.51 2.64 ind:pre:3p; +combattes combattre ver 42.89 36.35 0.04 0.00 sub:pre:2s; +combattez combattre ver 42.89 36.35 1.52 0.34 imp:pre:2p;ind:pre:2p; +combattiez combattre ver 42.89 36.35 0.11 0.00 ind:imp:2p; +combattions combattre ver 42.89 36.35 0.10 0.07 ind:imp:1p; +combattirent combattre ver 42.89 36.35 0.03 0.14 ind:pas:3p; +combattit combattre ver 42.89 36.35 0.05 0.20 ind:pas:3s; +combattons combattre ver 42.89 36.35 1.40 0.27 imp:pre:1p;ind:pre:1p; +combattra combattre ver 42.89 36.35 0.63 0.07 ind:fut:3s; +combattrai combattre ver 42.89 36.35 0.52 0.07 ind:fut:1s; +combattraient combattre ver 42.89 36.35 0.04 0.00 cnd:pre:3p; +combattrais combattre ver 42.89 36.35 0.10 0.00 cnd:pre:1s;cnd:pre:2s; +combattrait combattre ver 42.89 36.35 0.00 0.14 cnd:pre:3s; +combattras combattre ver 42.89 36.35 0.19 0.00 ind:fut:2s; +combattre combattre ver 42.89 36.35 20.96 17.97 inf; +combattrez combattre ver 42.89 36.35 0.19 0.00 ind:fut:2p; +combattriez combattre ver 42.89 36.35 0.02 0.00 cnd:pre:2p; +combattrons combattre ver 42.89 36.35 0.59 0.00 ind:fut:1p; +combattront combattre ver 42.89 36.35 0.07 0.14 ind:fut:3p; +combattu combattre ver m s 42.89 36.35 6.41 3.65 par:pas; +combattue combattre ver f s 42.89 36.35 0.22 0.27 par:pas; +combattues combattre ver f p 42.89 36.35 0.04 0.14 par:pas; +combattus combattre ver m p 42.89 36.35 0.30 0.27 par:pas; +combe combe nom f s 0.07 4.59 0.07 3.99 +combes combe nom f p 0.07 4.59 0.00 0.61 +combette combette nom f s 0.00 0.14 0.00 0.14 +combi combi nom m s 0.69 0.00 0.67 0.00 +combien combien adv_sup 390.58 108.04 390.58 108.04 +combientième combientième adj s 0.05 0.07 0.05 0.07 +combina combiner ver 4.50 6.35 0.01 0.07 ind:pas:3s; +combinaient combiner ver 4.50 6.35 0.01 0.47 ind:imp:3p; +combinaison combinaison nom f s 14.56 17.43 11.44 10.81 +combinaisons combinaison nom f p 14.56 17.43 3.12 6.62 +combinait combiner ver 4.50 6.35 0.04 0.74 ind:imp:3s; +combinant combiner ver 4.50 6.35 0.21 0.81 par:pre; +combinard combinard nom m s 0.50 0.27 0.39 0.14 +combinards combinard nom m p 0.50 0.27 0.11 0.14 +combinat combinat nom m s 0.23 0.00 0.23 0.00 +combinatoire combinatoire adj f s 0.10 0.41 0.07 0.34 +combinatoires combinatoire adj f p 0.10 0.41 0.03 0.07 +combine combine nom f s 6.84 8.24 4.32 4.80 +combinent combiner ver 4.50 6.35 0.04 0.41 ind:pre:3p; +combiner combiner ver 4.50 6.35 1.42 1.55 inf; +combineraient combiner ver 4.50 6.35 0.00 0.07 cnd:pre:3p; +combinerait combiner ver 4.50 6.35 0.01 0.00 cnd:pre:3s; +combinerons combiner ver 4.50 6.35 0.02 0.00 ind:fut:1p; +combines combine nom f p 6.84 8.24 2.52 3.45 +combinez combiner ver 4.50 6.35 0.08 0.00 imp:pre:2p;ind:pre:2p; +combinons combiner ver 4.50 6.35 0.01 0.07 ind:pre:1p; +combiné combiner ver m s 4.50 6.35 1.50 0.88 par:pas; +combinée combiner ver f s 4.50 6.35 0.28 0.54 par:pas; +combinées combiné adj f p 0.88 1.69 0.20 0.41 +combinés combiné adj m p 0.88 1.69 0.33 0.41 +combis combi nom m p 0.69 0.00 0.02 0.00 +combisme combisme nom m s 0.00 0.07 0.00 0.07 +combla combler ver 9.35 25.34 0.03 0.61 ind:pas:3s; +comblaient combler ver 9.35 25.34 0.02 0.47 ind:imp:3p; +comblais combler ver 9.35 25.34 0.01 0.07 ind:imp:1s;ind:imp:2s; +comblait combler ver 9.35 25.34 0.06 4.12 ind:imp:3s; +comblant combler ver 9.35 25.34 0.02 0.41 par:pre; +comblants comblant adj m p 0.00 0.27 0.00 0.07 +comble comble nom m s 8.56 27.30 7.86 22.50 +comblent combler ver 9.35 25.34 0.29 0.20 ind:pre:3p; +combler combler ver 9.35 25.34 2.50 7.97 inf; +comblera combler ver 9.35 25.34 0.27 0.07 ind:fut:3s; +comblerai combler ver 9.35 25.34 0.04 0.07 ind:fut:1s; +combleraient combler ver 9.35 25.34 0.00 0.27 cnd:pre:3p; +comblerais combler ver 9.35 25.34 0.01 0.07 cnd:pre:1s; +comblerait combler ver 9.35 25.34 0.07 0.07 cnd:pre:3s; +comblerez combler ver 9.35 25.34 0.02 0.00 ind:fut:2p; +combleront combler ver 9.35 25.34 0.01 0.27 ind:fut:3p; +combles comble nom m p 8.56 27.30 0.70 4.80 +comblez combler ver 9.35 25.34 0.56 0.07 imp:pre:2p;ind:pre:2p; +comblons combler ver 9.35 25.34 0.02 0.00 imp:pre:1p; +comblât combler ver 9.35 25.34 0.00 0.07 sub:imp:3s; +comblèrent combler ver 9.35 25.34 0.00 0.14 ind:pas:3p; +comblé combler ver m s 9.35 25.34 2.00 3.58 par:pas; +comblée combler ver f s 9.35 25.34 1.12 1.89 par:pas; +comblées combler ver f p 9.35 25.34 0.03 0.27 par:pas; +comblés combler ver m p 9.35 25.34 0.49 1.55 par:pas; +combo combo nom m s 0.40 0.00 0.40 0.00 +combourgeois combourgeois nom m 0.00 0.07 0.00 0.07 +comburant comburant adj m s 0.03 0.00 0.03 0.00 +combustible combustible nom m s 1.27 1.49 1.21 1.01 +combustibles combustible nom m p 1.27 1.49 0.05 0.47 +combustion combustion nom f s 3.78 1.89 3.71 1.82 +combustions combustion nom f p 3.78 1.89 0.07 0.07 +comestibilité comestibilité nom f s 0.01 0.00 0.01 0.00 +comestible comestible adj s 1.20 2.36 1.04 1.22 +comestibles comestible adj p 1.20 2.36 0.16 1.15 +comic_book comic_book nom m s 0.08 0.07 0.01 0.00 +comic_book comic_book nom m p 0.08 0.07 0.07 0.07 +comice comice nom s 0.00 0.34 0.00 0.07 +comices comice nom m p 0.00 0.34 0.00 0.27 +comics comics nom m p 0.69 0.41 0.69 0.41 +comique comique adj s 4.86 13.45 4.33 10.34 +comiquement comiquement adv 0.14 1.35 0.14 1.35 +comiques comique nom p 5.17 3.92 0.94 0.41 +comitadji comitadji nom m s 0.01 0.07 0.01 0.07 +comite comite nom m s 0.05 0.14 0.05 0.00 +comites comite nom m p 0.05 0.14 0.00 0.14 +comité comité nom m s 18.72 63.65 18.34 58.99 +comités comité nom m p 18.72 63.65 0.38 4.66 +commît commettre ver 47.45 37.16 0.00 0.07 sub:imp:3s; +comma comma nom m s 0.03 0.00 0.03 0.00 +command command nom m s 0.44 0.07 0.44 0.07 +commanda commander ver 63.49 80.34 0.22 10.14 ind:pas:3s; +commandai commander ver 63.49 80.34 0.01 0.61 ind:pas:1s; +commandaient commander ver 63.49 80.34 0.05 1.89 ind:imp:3p; +commandais commander ver 63.49 80.34 0.47 0.61 ind:imp:1s;ind:imp:2s; +commandait commander ver 63.49 80.34 0.95 10.81 ind:imp:3s; +commandant commandant nom m s 55.24 49.80 54.31 47.64 +commandante commandant adj f s 17.32 5.14 0.13 0.07 +commandants commandant nom m p 55.24 49.80 0.93 2.16 +commande commander ver 63.49 80.34 20.50 13.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +commandement commandement nom m s 20.47 47.23 18.13 43.51 +commandements commandement nom m p 20.47 47.23 2.34 3.72 +commandent commander ver 63.49 80.34 1.14 2.64 ind:pre:3p; +commander commander ver 63.49 80.34 13.50 11.55 ind:pre:2p;inf; +commandera commander ver 63.49 80.34 0.70 0.14 ind:fut:3s; +commanderai commander ver 63.49 80.34 0.84 0.27 ind:fut:1s; +commanderait commander ver 63.49 80.34 0.04 0.20 cnd:pre:3s; +commanderas commander ver 63.49 80.34 0.28 0.14 ind:fut:2s; +commanderez commander ver 63.49 80.34 0.22 0.00 ind:fut:2p; +commanderie commanderie nom f s 0.14 0.14 0.14 0.07 +commanderies commanderie nom f p 0.14 0.14 0.00 0.07 +commanderons commander ver 63.49 80.34 0.03 0.07 ind:fut:1p; +commanderont commander ver 63.49 80.34 0.01 0.07 ind:fut:3p; +commandes commande nom f p 31.36 18.72 11.96 6.08 +commandeur commandeur nom m s 2.55 0.74 2.52 0.61 +commandeurs commandeur nom m p 2.55 0.74 0.03 0.14 +commandez commander ver 63.49 80.34 2.84 0.34 imp:pre:2p;ind:pre:2p; +commandiez commander ver 63.49 80.34 0.32 0.07 ind:imp:2p; +commandions commander ver 63.49 80.34 0.02 0.14 ind:imp:1p; +commanditaire commanditaire nom s 1.02 1.08 0.82 0.68 +commanditaires commanditaire nom p 1.02 1.08 0.20 0.41 +commandite commanditer ver 0.68 0.20 0.06 0.00 ind:pre:1s;ind:pre:3s; +commanditer commanditer ver 0.68 0.20 0.06 0.14 inf; +commandites commanditer ver 0.68 0.20 0.10 0.00 ind:pre:2s; +commandité commanditer ver m s 0.68 0.20 0.42 0.00 par:pas; +commanditée commanditer ver f s 0.68 0.20 0.03 0.07 par:pas; +commanditées commanditer ver f p 0.68 0.20 0.01 0.00 par:pas; +commando commando nom m s 5.39 6.82 4.01 3.85 +commandons commander ver 63.49 80.34 0.69 0.07 imp:pre:1p;ind:pre:1p; +commando_suicide commando_suicide nom m p 0.01 0.00 0.01 0.00 +commandos commando nom m p 5.39 6.82 1.38 2.97 +commandât commander ver 63.49 80.34 0.00 0.14 sub:imp:3s; +commandèrent commander ver 63.49 80.34 0.00 1.01 ind:pas:3p; +commandé commander ver m s 63.49 80.34 14.77 12.30 par:pas; +commandée commander ver f s 63.49 80.34 1.30 3.04 par:pas; +commandées commander ver f p 63.49 80.34 0.47 1.28 par:pas; +commandés commander ver m p 63.49 80.34 0.64 1.76 par:pas; +comme comme con 2326.08 3429.32 2326.08 3429.32 +commedia_dell_arte commedia_dell_arte nom f s 0.02 0.14 0.02 0.14 +commence commencer ver 436.83 421.89 143.51 82.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +commencement commencement nom m s 6.41 16.55 6.22 15.68 +commencements commencement nom m p 6.41 16.55 0.20 0.88 +commencent commencer ver 436.83 421.89 11.69 13.85 ind:pre:3p; +commencer commencer ver 436.83 421.89 92.51 42.50 inf; +commencera commencer ver 436.83 421.89 4.70 1.89 ind:fut:3s; +commencerai commencer ver 436.83 421.89 1.61 0.54 ind:fut:1s; +commenceraient commencer ver 436.83 421.89 0.04 0.68 cnd:pre:3p; +commencerais commencer ver 436.83 421.89 1.01 0.61 cnd:pre:1s;cnd:pre:2s; +commencerait commencer ver 436.83 421.89 0.37 1.82 cnd:pre:3s; +commenceras commencer ver 436.83 421.89 0.54 0.20 ind:fut:2s; +commencerez commencer ver 436.83 421.89 0.51 0.07 ind:fut:2p; +commenceriez commencer ver 436.83 421.89 0.06 0.00 cnd:pre:2p; +commencerions commencer ver 436.83 421.89 0.14 0.00 cnd:pre:1p; +commencerons commencer ver 436.83 421.89 1.55 0.14 ind:fut:1p; +commenceront commencer ver 436.83 421.89 1.02 0.61 ind:fut:3p; +commences commencer ver 436.83 421.89 16.10 2.91 ind:pre:2s;sub:pre:2s; +commencez commencer ver 436.83 421.89 17.43 2.36 imp:pre:2p;ind:pre:2p; +commenciez commencer ver 436.83 421.89 0.91 0.34 ind:imp:2p; +commencions commencer ver 436.83 421.89 0.49 1.69 ind:imp:1p; +commencèrent commencer ver 436.83 421.89 0.88 9.39 ind:pas:3p; +commencé commencer ver m s 436.83 421.89 102.62 73.99 par:pas;par:pas;par:pas; +commencée commencer ver f s 436.83 421.89 1.64 4.32 par:pas; +commencées commencer ver f p 436.83 421.89 0.05 0.74 par:pas; +commencés commencer ver m p 436.83 421.89 0.09 0.88 par:pas; +commensal commensal nom m s 0.02 0.88 0.00 0.27 +commensalisme commensalisme nom m s 0.00 0.07 0.00 0.07 +commensaux commensal nom m p 0.02 0.88 0.02 0.61 +commensurable commensurable adj s 0.00 0.14 0.00 0.07 +commensurables commensurable adj p 0.00 0.14 0.00 0.07 +comment comment con 558.33 241.35 558.33 241.35 +commenta commenter ver 2.70 19.93 0.04 3.04 ind:pas:3s; +commentai commenter ver 2.70 19.93 0.00 0.14 ind:pas:1s; +commentaient commenter ver 2.70 19.93 0.00 0.81 ind:imp:3p; +commentaire commentaire nom m s 13.94 20.81 8.21 8.51 +commentaires commentaire nom m p 13.94 20.81 5.73 12.30 +commentais commenter ver 2.70 19.93 0.01 0.20 ind:imp:1s;ind:imp:2s; +commentait commenter ver 2.70 19.93 0.00 3.45 ind:imp:3s; +commentant commenter ver 2.70 19.93 0.20 1.49 par:pre; +commentateur commentateur nom m s 0.61 1.89 0.25 0.68 +commentateurs commentateur nom m p 0.61 1.89 0.32 1.22 +commentatrice commentateur nom f s 0.61 1.89 0.04 0.00 +commente commenter ver 2.70 19.93 0.17 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +commentent commenter ver 2.70 19.93 0.01 0.68 ind:pre:3p; +commenter commenter ver 2.70 19.93 1.40 3.51 inf; +commentera commenter ver 2.70 19.93 0.01 0.07 ind:fut:3s; +commenterai commenter ver 2.70 19.93 0.01 0.07 ind:fut:1s; +commenterait commenter ver 2.70 19.93 0.01 0.00 cnd:pre:3s; +commentez commenter ver 2.70 19.93 0.52 0.00 imp:pre:2p;ind:pre:2p; +commença commencer ver 436.83 421.89 3.95 51.35 ind:pas:3s; +commençai commencer ver 436.83 421.89 0.44 6.96 ind:pas:1s; +commençaient commencer ver 436.83 421.89 0.93 20.20 ind:imp:3p; +commençais commencer ver 436.83 421.89 6.38 14.73 ind:imp:1s;ind:imp:2s; +commençait commencer ver 436.83 421.89 7.69 74.66 ind:imp:3s; +commençant commencer ver 436.83 421.89 2.76 8.04 par:pre; +commençante commençant adj f s 0.00 1.15 0.00 0.74 +commençantes commençant adj f p 0.00 1.15 0.00 0.07 +commençants commençant adj m p 0.00 1.15 0.00 0.14 +commenças commencer ver 436.83 421.89 0.00 0.14 ind:pas:2s; +commençâmes commencer ver 436.83 421.89 0.02 0.61 ind:pas:1p; +commençons commencer ver 436.83 421.89 15.20 2.30 imp:pre:1p;ind:pre:1p; +commençât commencer ver 436.83 421.89 0.00 0.88 sub:imp:3s; +commentions commenter ver 2.70 19.93 0.00 0.34 ind:imp:1p; +commenté commenter ver m s 2.70 19.93 0.08 1.42 par:pas; +commentée commenter ver f s 2.70 19.93 0.14 0.68 par:pas; +commentées commenter ver f p 2.70 19.93 0.01 0.47 par:pas; +commentés commenter ver m p 2.70 19.93 0.10 0.47 par:pas; +commerce commerce nom m s 19.57 29.93 18.55 29.05 +commercent commercer ver 1.01 1.01 0.11 0.00 ind:pre:3p; +commercer commercer ver 1.01 1.01 0.27 0.20 inf; +commerces commerce nom m p 19.57 29.93 1.01 0.88 +commercial commercial adj m s 13.13 9.73 8.47 4.12 +commerciale commercial adj f s 13.13 9.73 2.39 2.77 +commercialement commercialement adv 0.16 0.27 0.16 0.27 +commerciales commercial adj f p 13.13 9.73 1.03 1.55 +commercialisable commercialisable adj s 0.02 0.00 0.02 0.00 +commercialisation commercialisation nom f s 0.15 0.41 0.15 0.41 +commercialiser commercialiser ver 0.47 0.20 0.18 0.14 inf; +commercialisera commercialiser ver 0.47 0.20 0.01 0.00 ind:fut:3s; +commercialisé commercialiser ver m s 0.47 0.20 0.28 0.07 par:pas; +commerciaux commercial adj m p 13.13 9.73 1.24 1.28 +commerciez commercer ver 1.01 1.01 0.01 0.00 ind:imp:2p; +commercé commercer ver m s 1.01 1.01 0.08 0.07 par:pas; +commerçait commercer ver 1.01 1.01 0.01 0.20 ind:imp:3s; +commerçant commerçant nom m s 4.34 16.28 1.54 4.19 +commerçante commerçant nom f s 4.34 16.28 0.11 1.28 +commerçantes commerçant adj f p 0.99 2.57 0.02 0.20 +commerçants commerçant nom m p 4.34 16.28 2.69 10.81 +commerçons commercer ver 1.01 1.01 0.00 0.07 ind:pre:1p; +commet commettre ver 47.45 37.16 3.12 1.62 ind:pre:3s; +commets commettre ver 47.45 37.16 0.97 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +commettaient commettre ver 47.45 37.16 0.05 0.47 ind:imp:3p; +commettais commettre ver 47.45 37.16 0.06 0.41 ind:imp:1s;ind:imp:2s; +commettait commettre ver 47.45 37.16 0.09 0.88 ind:imp:3s; +commettant commettre ver 47.45 37.16 0.14 0.27 par:pre; +commettants commettant nom m p 0.02 0.07 0.01 0.07 +commette commettre ver 47.45 37.16 0.17 0.27 sub:pre:1s;sub:pre:3s; +commettent commettre ver 47.45 37.16 0.90 0.95 ind:pre:3p; +commettes commettre ver 47.45 37.16 0.04 0.00 sub:pre:2s; +commettez commettre ver 47.45 37.16 0.82 0.00 imp:pre:2p;ind:pre:2p; +commettiez commettre ver 47.45 37.16 0.06 0.00 ind:imp:2p; +commettions commettre ver 47.45 37.16 0.00 0.14 ind:imp:1p; +commettons commettre ver 47.45 37.16 0.27 0.07 imp:pre:1p;ind:pre:1p; +commettra commettre ver 47.45 37.16 0.11 0.20 ind:fut:3s; +commettrai commettre ver 47.45 37.16 0.17 0.34 ind:fut:1s; +commettraient commettre ver 47.45 37.16 0.03 0.27 cnd:pre:3p; +commettrais commettre ver 47.45 37.16 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +commettrait commettre ver 47.45 37.16 0.23 0.27 cnd:pre:3s; +commettras commettre ver 47.45 37.16 0.33 0.07 ind:fut:2s; +commettre commettre ver 47.45 37.16 9.69 8.99 inf; +commettrez commettre ver 47.45 37.16 0.04 0.00 ind:fut:2p; +comminatoire comminatoire adj s 0.00 0.68 0.00 0.47 +comminatoires comminatoire adj p 0.00 0.68 0.00 0.20 +comminutive comminutif adj f s 0.01 0.00 0.01 0.00 +commirent commettre ver 47.45 37.16 0.01 0.27 ind:pas:3p; +commis_voyageur commis_voyageur nom m s 0.05 0.41 0.05 0.20 +commis_voyageur commis_voyageur nom m p 0.05 0.41 0.00 0.20 +commis commettre ver m 47.45 37.16 27.91 15.81 ind:pas:1s;par:pas;par:pas; +commise commettre ver f s 47.45 37.16 0.94 1.89 par:pas; +commises commettre ver f p 47.45 37.16 0.94 2.57 par:pas; +commissaire_adjoint commissaire_adjoint nom s 0.02 0.07 0.02 0.07 +commissaire_priseur commissaire_priseur nom m s 0.06 0.81 0.06 0.61 +commissaire commissaire nom s 43.39 36.69 42.99 32.09 +commissaire_priseur commissaire_priseur nom m p 0.06 0.81 0.00 0.20 +commissaires commissaire nom p 43.39 36.69 0.40 4.59 +commissariat commissariat nom m s 15.05 12.70 14.61 11.35 +commissariats commissariat nom m p 15.05 12.70 0.44 1.35 +commission commission nom f s 24.50 17.43 22.00 10.81 +commissionnaire commissionnaire nom s 0.79 1.22 0.79 0.95 +commissionnaires commissionnaire nom p 0.79 1.22 0.00 0.27 +commissionné commissionner ver m s 0.01 0.07 0.01 0.07 par:pas; +commissions commission nom f p 24.50 17.43 2.50 6.62 +commissurale commissural adj f s 0.00 0.07 0.00 0.07 +commissure commissure nom f s 0.02 5.41 0.00 2.43 +commissures commissure nom f p 0.02 5.41 0.02 2.97 +commisération commisération nom f s 0.14 2.50 0.14 2.50 +commit commettre ver 47.45 37.16 0.20 0.81 ind:pas:3s; +commode_toilette commode_toilette nom f s 0.00 0.14 0.00 0.14 +commode commode adj s 4.96 17.16 4.43 15.74 +commodes commode adj p 4.96 17.16 0.52 1.42 +commodité commodité nom f s 0.40 3.31 0.26 1.89 +commodités commodité nom f p 0.40 3.31 0.14 1.42 +commodore commodore nom m s 1.00 0.07 0.95 0.07 +commodores commodore nom m p 1.00 0.07 0.04 0.00 +commodément commodément adv 0.09 1.35 0.09 1.35 +commotion commotion nom f s 2.24 0.81 2.03 0.68 +commotionnerait commotionner ver 0.14 0.54 0.00 0.07 cnd:pre:3s; +commotionné commotionner ver m s 0.14 0.54 0.05 0.20 par:pas; +commotionnée commotionner ver f s 0.14 0.54 0.08 0.14 par:pas; +commotionnés commotionner ver m p 0.14 0.54 0.01 0.14 par:pas; +commotions commotion nom f p 2.24 0.81 0.21 0.14 +commère commère nom f s 2.36 3.78 2.01 1.35 +commères commère nom f p 2.36 3.78 0.34 2.43 +commuais commuer ver 0.47 0.54 0.00 0.07 ind:imp:1s; +commuant commuer ver 0.47 0.54 0.00 0.07 par:pre; +commuent commuer ver 0.47 0.54 0.01 0.00 ind:pre:3p; +commuer commuer ver 0.47 0.54 0.08 0.07 inf; +commémorait commémorer ver 0.64 1.69 0.00 0.14 ind:imp:3s; +commémorant commémorer ver 0.64 1.69 0.04 0.27 par:pre; +commémoratif commémoratif adj m s 0.84 1.35 0.16 0.47 +commémoratifs commémoratif adj m p 0.84 1.35 0.04 0.07 +commémoration commémoration nom f s 0.45 1.22 0.42 0.95 +commémorations commémoration nom f p 0.45 1.22 0.04 0.27 +commémorative commémoratif adj f s 0.84 1.35 0.56 0.61 +commémoratives commémoratif adj f p 0.84 1.35 0.08 0.20 +commémore commémorer ver 0.64 1.69 0.04 0.34 ind:pre:3s; +commémorent commémorer ver 0.64 1.69 0.01 0.14 ind:pre:3p; +commémorer commémorer ver 0.64 1.69 0.48 0.81 inf; +commémorions commémorer ver 0.64 1.69 0.01 0.00 ind:imp:1p; +commémorons commémorer ver 0.64 1.69 0.04 0.00 ind:pre:1p; +commémoré commémorer ver m s 0.64 1.69 0.01 0.00 par:pas; +commun commun nom m s 13.98 22.77 13.84 21.49 +communal communal adj m s 1.58 9.12 0.53 6.35 +communale communal adj f s 1.58 9.12 0.71 2.36 +communales communal adj f p 1.58 9.12 0.03 0.41 +communard communard nom m s 0.10 0.88 0.10 0.14 +communards communard nom m p 0.10 0.88 0.00 0.74 +communautaire communautaire adj s 1.15 1.49 0.89 1.01 +communautaires communautaire adj p 1.15 1.49 0.26 0.47 +communauté communauté nom f s 23.36 12.64 22.10 10.95 +communautés communauté nom f p 23.36 12.64 1.25 1.69 +communaux communal adj m p 1.58 9.12 0.30 0.00 +commune commun adj f s 25.08 75.95 7.17 28.58 +communes commun adj f p 25.08 75.95 1.54 4.39 +communia communier ver 1.75 6.62 0.00 0.07 ind:pas:3s; +communiaient communier ver 1.75 6.62 0.00 0.54 ind:imp:3p; +communiais communier ver 1.75 6.62 0.11 0.34 ind:imp:1s; +communiait communier ver 1.75 6.62 0.02 0.41 ind:imp:3s; +communiant communiant nom m s 0.28 3.18 0.14 0.81 +communiante communiant nom f s 0.28 3.18 0.14 1.35 +communiantes communiant nom f p 0.28 3.18 0.00 0.27 +communiants communiant nom m p 0.28 3.18 0.01 0.74 +communiasse communier ver 1.75 6.62 0.00 0.07 sub:imp:1s; +communicabilité communicabilité nom f s 0.00 0.07 0.00 0.07 +communicable communicable adj s 0.01 0.14 0.00 0.07 +communicables communicable adj m p 0.01 0.14 0.01 0.07 +communicant communicant nom m s 0.03 0.00 0.01 0.00 +communicante communicant adj f s 0.10 0.61 0.03 0.00 +communicantes communicant adj f p 0.10 0.61 0.05 0.27 +communicants communicant adj m p 0.10 0.61 0.01 0.34 +communicateur communicateur nom m s 0.49 0.00 0.44 0.00 +communicateurs communicateur nom m p 0.49 0.00 0.05 0.00 +communicatif communicatif adj m s 0.16 2.70 0.12 1.15 +communicatifs communicatif adj m p 0.16 2.70 0.00 0.20 +communication communication nom f s 18.17 26.82 12.88 17.23 +communications communication nom f p 18.17 26.82 5.29 9.59 +communicative communicatif adj f s 0.16 2.70 0.04 1.35 +communie communier ver 1.75 6.62 0.42 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +communient communier ver 1.75 6.62 0.01 0.34 ind:pre:3p; +communier communier ver 1.75 6.62 0.95 2.36 inf; +communierons communier ver 1.75 6.62 0.00 0.07 ind:fut:1p; +communieront communier ver 1.75 6.62 0.00 0.07 ind:fut:3p; +communiez communier ver 1.75 6.62 0.04 0.14 imp:pre:2p;ind:pre:2p; +communion communion nom f s 5.01 13.04 4.76 11.96 +communions communion nom f p 5.01 13.04 0.26 1.08 +communiqua communiquer ver 19.09 26.49 0.00 1.08 ind:pas:3s; +communiquai communiquer ver 19.09 26.49 0.00 0.20 ind:pas:1s; +communiquaient communiquer ver 19.09 26.49 0.30 0.88 ind:imp:3p; +communiquais communiquer ver 19.09 26.49 0.07 0.14 ind:imp:1s;ind:imp:2s; +communiquait communiquer ver 19.09 26.49 0.39 2.36 ind:imp:3s; +communiquant communiquer ver 19.09 26.49 0.09 1.28 par:pre; +communiquassent communiquer ver 19.09 26.49 0.00 0.07 sub:imp:3p; +communique communiquer ver 19.09 26.49 3.17 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +communiquent communiquer ver 19.09 26.49 1.12 1.15 ind:pre:3p; +communiquer communiquer ver 19.09 26.49 10.78 10.61 inf;; +communiquera communiquer ver 19.09 26.49 0.21 0.00 ind:fut:3s; +communiquerai communiquer ver 19.09 26.49 0.08 0.00 ind:fut:1s; +communiqueraient communiquer ver 19.09 26.49 0.01 0.07 cnd:pre:3p; +communiquerait communiquer ver 19.09 26.49 0.00 0.14 cnd:pre:3s; +communiquerez communiquer ver 19.09 26.49 0.02 0.00 ind:fut:2p; +communiquerons communiquer ver 19.09 26.49 0.08 0.07 ind:fut:1p; +communiqueront communiquer ver 19.09 26.49 0.03 0.07 ind:fut:3p; +communiques communiquer ver 19.09 26.49 0.13 0.07 ind:pre:2s; +communiquez communiquer ver 19.09 26.49 0.82 0.07 imp:pre:2p;ind:pre:2p; +communiquiez communiquer ver 19.09 26.49 0.09 0.00 ind:imp:2p; +communiquions communiquer ver 19.09 26.49 0.02 0.20 ind:imp:1p; +communiquons communiquer ver 19.09 26.49 0.25 0.20 imp:pre:1p;ind:pre:1p; +communiquât communiquer ver 19.09 26.49 0.00 0.20 sub:imp:3s; +communiquèrent communiquer ver 19.09 26.49 0.00 0.14 ind:pas:3p; +communiqué communiqué nom m s 4.29 8.99 3.85 7.03 +communiquée communiquer ver f s 19.09 26.49 0.18 0.88 par:pas; +communiquées communiquer ver f p 19.09 26.49 0.08 0.07 par:pas; +communiqués communiqué nom m p 4.29 8.99 0.45 1.96 +communisant communisant adj m s 0.00 0.20 0.00 0.07 +communisants communisant adj m p 0.00 0.20 0.00 0.14 +communisme communisme nom m s 4.29 9.66 4.29 9.66 +communiste communiste adj s 13.47 22.70 10.26 16.35 +communistes communiste nom p 10.93 26.35 8.49 21.15 +communisée communiser ver f s 0.00 0.07 0.00 0.07 par:pas; +communièrent communier ver 1.75 6.62 0.00 0.07 ind:pas:3p; +communié communier ver m s 1.75 6.62 0.18 1.22 par:pas; +communs commun adj m p 25.08 75.95 3.83 10.81 +communément communément adv 0.54 2.50 0.54 2.50 +commérage commérage nom m s 1.54 1.28 0.18 0.14 +commérages commérage nom m p 1.54 1.28 1.36 1.15 +commérait commérer ver 0.04 0.07 0.01 0.07 ind:imp:3s; +commérer commérer ver 0.04 0.07 0.03 0.00 inf; +commutateur commutateur nom m s 0.48 2.77 0.38 2.57 +commutateurs commutateur nom m p 0.48 2.77 0.10 0.20 +commutation commutation nom f s 0.11 0.14 0.11 0.14 +commute commuter ver 0.08 0.00 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +commuter commuter ver 0.08 0.00 0.04 0.00 inf; +commué commuer ver m s 0.47 0.54 0.02 0.00 par:pas; +commuée commuer ver f s 0.47 0.54 0.36 0.34 par:pas; +comnène comnène adj m s 0.00 0.07 0.00 0.07 +compacité compacité nom f s 0.00 0.20 0.00 0.20 +compact compact adj m s 1.56 10.47 0.62 3.24 +compactage compactage nom m s 0.01 0.00 0.01 0.00 +compacte compact adj f s 1.56 10.47 0.81 4.66 +compactes compact adj f p 1.56 10.47 0.10 0.95 +compacteur compacteur nom m s 0.13 0.00 0.10 0.00 +compacteurs compacteur nom m p 0.13 0.00 0.03 0.00 +compacts compact nom m p 0.15 0.27 0.04 0.00 +compacté compacter ver m s 0.15 0.00 0.01 0.00 par:pas; +compadre compadre nom m s 0.42 0.00 0.37 0.00 +compadres compadre nom m p 0.42 0.00 0.05 0.00 +compagne compagnon nom f s 21.09 80.00 4.90 9.32 +compagnes compagne nom f p 1.12 0.00 1.12 0.00 +compagnie compagnie nom f s 73.78 97.16 68.90 90.88 +compagnies compagnie nom f p 73.78 97.16 4.88 6.28 +compagnon compagnon nom m s 21.09 80.00 8.40 34.26 +compagnonnage compagnonnage nom m s 0.14 0.68 0.14 0.61 +compagnonnages compagnonnage nom m p 0.14 0.68 0.00 0.07 +compagnonnes compagnon nom f p 21.09 80.00 0.00 0.07 +compagnons compagnon nom m p 21.09 80.00 7.79 28.85 +compara comparer ver 25.84 26.01 0.02 0.95 ind:pas:3s; +comparaît comparaître ver 2.52 3.31 0.19 0.14 ind:pre:3s; +comparaîtra comparaître ver 2.52 3.31 0.16 0.00 ind:fut:3s; +comparaîtrait comparaître ver 2.52 3.31 0.01 0.07 cnd:pre:3s; +comparaître comparaître ver 2.52 3.31 1.63 1.62 inf; +comparaîtrez comparaître ver 2.52 3.31 0.17 0.00 ind:fut:2p; +comparaîtrons comparaître ver 2.52 3.31 0.00 0.07 ind:fut:1p; +comparabilité comparabilité nom f s 0.01 0.00 0.01 0.00 +comparable comparable adj s 2.04 6.08 1.93 4.73 +comparables comparable adj p 2.04 6.08 0.11 1.35 +comparai comparer ver 25.84 26.01 0.01 0.14 ind:pas:1s; +comparaient comparer ver 25.84 26.01 0.02 0.68 ind:imp:3p; +comparais comparaître ver 2.52 3.31 0.17 0.34 ind:pre:1s;ind:pre:2s; +comparaison comparaison nom f s 5.25 13.72 4.84 11.35 +comparaisons comparaison nom f p 5.25 13.72 0.41 2.36 +comparaissaient comparaître ver 2.52 3.31 0.00 0.27 ind:imp:3p; +comparaissait comparaître ver 2.52 3.31 0.01 0.00 ind:imp:3s; +comparaissant comparaître ver 2.52 3.31 0.00 0.14 par:pre; +comparaissent comparaître ver 2.52 3.31 0.02 0.00 ind:pre:3p; +comparaisses comparaître ver 2.52 3.31 0.01 0.00 sub:pre:2s; +comparaissons comparaître ver 2.52 3.31 0.01 0.00 ind:pre:1p; +comparait comparer ver 25.84 26.01 0.19 3.31 ind:imp:3s; +comparant comparer ver 25.84 26.01 0.56 1.22 par:pre; +comparateur comparateur nom m s 0.03 0.00 0.03 0.00 +comparatif comparatif adj m s 0.50 0.47 0.14 0.07 +comparatifs comparatif adj m p 0.50 0.47 0.04 0.07 +comparative comparatif adj f s 0.50 0.47 0.18 0.27 +comparativement comparativement adv 0.19 0.07 0.19 0.07 +comparatives comparatif adj f p 0.50 0.47 0.14 0.07 +compare comparer ver 25.84 26.01 4.00 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +comparent comparer ver 25.84 26.01 0.14 0.34 ind:pre:3p; +comparer comparer ver 25.84 26.01 9.01 8.11 inf; +comparera comparer ver 25.84 26.01 0.21 0.14 ind:fut:3s; +comparerai comparer ver 25.84 26.01 0.05 0.07 ind:fut:1s; +comparerais comparer ver 25.84 26.01 0.04 0.00 cnd:pre:1s; +comparerons comparer ver 25.84 26.01 0.36 0.00 ind:fut:1p; +compareront comparer ver 25.84 26.01 0.00 0.07 ind:fut:3p; +compares comparer ver 25.84 26.01 0.69 0.07 ind:pre:2s; +comparez comparer ver 25.84 26.01 1.60 0.20 imp:pre:2p;ind:pre:2p; +compariez comparer ver 25.84 26.01 0.07 0.07 ind:imp:2p; +comparions comparer ver 25.84 26.01 0.02 0.27 ind:imp:1p; +comparoir comparoir ver 0.01 0.00 0.01 0.00 inf; +comparons comparer ver 25.84 26.01 0.17 0.14 imp:pre:1p;ind:pre:1p; +comparse comparse nom s 0.18 1.76 0.13 0.54 +comparses comparse nom p 0.18 1.76 0.05 1.22 +compartiment compartiment nom m s 6.73 13.58 5.58 10.54 +compartimentage compartimentage nom m s 0.00 0.07 0.00 0.07 +compartimentaient compartimenter ver 0.10 0.27 0.00 0.07 ind:imp:3p; +compartimentant compartimenter ver 0.10 0.27 0.01 0.07 par:pre; +compartimente compartimenter ver 0.10 0.27 0.01 0.00 imp:pre:2s; +compartimenter compartimenter ver 0.10 0.27 0.07 0.00 inf; +compartiments compartiment nom m p 6.73 13.58 1.15 3.04 +compartimenté compartimenté adj m s 0.02 0.20 0.02 0.14 +compartimentée compartimenter ver f s 0.10 0.27 0.00 0.07 par:pas; +comparé comparer ver m s 25.84 26.01 6.47 2.36 par:pas; +comparu comparaître ver m s 2.52 3.31 0.13 0.41 par:pas; +comparée comparer ver f s 25.84 26.01 1.50 2.09 par:pas; +comparées comparer ver f p 25.84 26.01 0.35 0.68 par:pas; +comparés comparer ver m p 25.84 26.01 0.28 1.28 par:pas; +comparut comparaître ver 2.52 3.31 0.02 0.27 ind:pas:3s; +comparution comparution nom f s 0.34 0.34 0.34 0.34 +compas compas nom m 1.50 2.84 1.50 2.84 +compassion compassion nom f s 10.15 7.30 10.15 7.30 +compassé compassé adj m s 0.00 1.76 0.00 0.88 +compassée compassé adj f s 0.00 1.76 0.00 0.27 +compassées compassé adj f p 0.00 1.76 0.00 0.14 +compassés compassé adj m p 0.00 1.76 0.00 0.47 +compati compatir ver m s 3.46 2.57 0.04 0.07 par:pas; +compatibilité compatibilité nom f s 0.40 0.00 0.40 0.00 +compatible compatible adj s 2.52 2.09 1.25 1.62 +compatibles compatible adj p 2.52 2.09 1.27 0.47 +compatie compatir ver f s 3.46 2.57 0.06 0.00 par:pas; +compatir compatir ver 3.46 2.57 0.47 0.54 inf; +compatira compatir ver 3.46 2.57 0.02 0.00 ind:fut:3s; +compatirait compatir ver 3.46 2.57 0.03 0.00 cnd:pre:3s; +compatirent compatir ver 3.46 2.57 0.00 0.07 ind:pas:3p; +compatis compatir ver m p 3.46 2.57 2.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +compatissaient compatir ver 3.46 2.57 0.00 0.07 ind:imp:3p; +compatissais compatir ver 3.46 2.57 0.05 0.20 ind:imp:1s;ind:imp:2s; +compatissait compatir ver 3.46 2.57 0.02 0.14 ind:imp:3s; +compatissant compatissant adj m s 1.59 3.18 1.01 1.35 +compatissante compatissant adj f s 1.59 3.18 0.39 0.88 +compatissantes compatissant adj f p 1.59 3.18 0.07 0.20 +compatissants compatissant adj m p 1.59 3.18 0.11 0.74 +compatisse compatir ver 3.46 2.57 0.02 0.00 sub:pre:1s;sub:pre:3s; +compatissent compatir ver 3.46 2.57 0.01 0.14 ind:pre:3p; +compatissez compatir ver 3.46 2.57 0.10 0.14 imp:pre:2p;ind:pre:2p; +compatissons compatir ver 3.46 2.57 0.14 0.07 imp:pre:1p;ind:pre:1p; +compatit compatir ver 3.46 2.57 0.41 0.54 ind:pre:3s;ind:pas:3s; +compatriote compatriote nom s 4.76 9.05 1.48 2.23 +compatriotes compatriote nom p 4.76 9.05 3.29 6.82 +compendium compendium nom m s 0.01 0.07 0.01 0.00 +compendiums compendium nom m p 0.01 0.07 0.00 0.07 +compensa compenser ver 4.59 9.32 0.01 0.20 ind:pas:3s; +compensaient compenser ver 4.59 9.32 0.01 0.54 ind:imp:3p; +compensais compenser ver 4.59 9.32 0.00 0.07 ind:imp:1s; +compensait compenser ver 4.59 9.32 0.04 1.08 ind:imp:3s; +compensant compenser ver 4.59 9.32 0.02 0.41 par:pre; +compensateur compensateur adj m s 0.12 0.00 0.05 0.00 +compensateurs compensateur adj m p 0.12 0.00 0.06 0.00 +compensation compensation nom f s 3.33 5.81 2.83 4.39 +compensations compensation nom f p 3.33 5.81 0.49 1.42 +compensatoire compensatoire adj s 0.02 0.34 0.02 0.34 +compense compenser ver 4.59 9.32 0.99 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compensent compenser ver 4.59 9.32 0.26 0.20 ind:pre:3p; +compenser compenser ver 4.59 9.32 2.06 3.99 inf; +compensera compenser ver 4.59 9.32 0.32 0.00 ind:fut:3s; +compenserais compenser ver 4.59 9.32 0.01 0.00 cnd:pre:2s; +compenserait compenser ver 4.59 9.32 0.17 0.41 cnd:pre:3s; +compensez compenser ver 4.59 9.32 0.28 0.00 imp:pre:2p;ind:pre:2p; +compensât compenser ver 4.59 9.32 0.00 0.14 sub:imp:3s; +compensèrent compenser ver 4.59 9.32 0.00 0.07 ind:pas:3p; +compensé compenser ver m s 4.59 9.32 0.31 0.61 par:pas; +compensée compenser ver f s 4.59 9.32 0.06 0.68 par:pas; +compensées compensé adj f p 0.21 0.95 0.04 0.61 +compensés compensé adj m p 0.21 0.95 0.13 0.00 +compil compil nom f s 0.19 0.00 0.19 0.00 +compilant compiler ver 0.58 0.54 0.14 0.27 par:pre; +compilateur compilateur nom m s 0.08 0.14 0.08 0.14 +compilation compilation nom f s 0.29 0.47 0.26 0.34 +compilations compilation nom f p 0.29 0.47 0.03 0.14 +compile compiler ver 0.58 0.54 0.09 0.07 imp:pre:2s;ind:pre:3s; +compiler compiler ver 0.58 0.54 0.23 0.00 inf; +compilons compiler ver 0.58 0.54 0.01 0.00 ind:pre:1p; +compilé compiler ver m s 0.58 0.54 0.11 0.07 par:pas; +compilées compiler ver f p 0.58 0.54 0.02 0.14 par:pas; +compissait compisser ver 0.01 0.27 0.00 0.07 ind:imp:3s; +compisse compisser ver 0.01 0.27 0.01 0.07 ind:pre:1s;ind:pre:3s; +compisser compisser ver 0.01 0.27 0.00 0.07 inf; +compissé compisser ver m s 0.01 0.27 0.00 0.07 par:pas; +complaît complaire ver 0.93 4.19 0.16 0.47 ind:pre:3s; +complainte complainte nom f s 0.66 2.30 0.61 1.62 +complaintes complainte nom f p 0.66 2.30 0.04 0.68 +complairait complaire ver 0.93 4.19 0.00 0.14 cnd:pre:3s; +complaire complaire ver 0.93 4.19 0.19 1.08 inf; +complais complaire ver 0.93 4.19 0.34 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +complaisaient complaire ver 0.93 4.19 0.00 0.14 ind:imp:3p; +complaisais complaire ver 0.93 4.19 0.00 0.14 ind:imp:1s; +complaisait complaire ver 0.93 4.19 0.00 0.68 ind:imp:3s; +complaisamment complaisamment adv 0.01 3.18 0.01 3.18 +complaisance complaisance nom f s 0.94 11.22 0.80 10.00 +complaisances complaisance nom f p 0.94 11.22 0.14 1.22 +complaisant complaisant adj m s 0.61 4.93 0.42 1.82 +complaisante complaisant adj f s 0.61 4.93 0.03 1.96 +complaisantes complaisant adj f p 0.61 4.93 0.00 0.27 +complaisants complaisant adj m p 0.61 4.93 0.16 0.88 +complaise complaire ver 0.93 4.19 0.00 0.14 sub:pre:3s; +complaisent complaire ver 0.93 4.19 0.02 0.20 ind:pre:3p; +complaisez complaire ver 0.93 4.19 0.06 0.07 ind:pre:2p; +complaisiez complaire ver 0.93 4.19 0.00 0.14 ind:imp:2p; +complet_veston complet_veston nom m s 0.00 0.54 0.00 0.54 +complet complet adj m s 29.19 44.12 17.76 20.61 +complets complet adj m p 29.19 44.12 1.68 2.03 +complexait complexer ver 0.42 0.68 0.00 0.07 ind:imp:3s; +complexe complexe adj s 8.62 8.51 6.70 5.68 +complexer complexer ver 0.42 0.68 0.17 0.14 inf; +complexes complexe adj p 8.62 8.51 1.92 2.84 +complexion complexion nom f s 0.02 0.68 0.02 0.68 +complexité complexité nom f s 1.28 2.64 0.92 2.64 +complexités complexité nom f p 1.28 2.64 0.36 0.00 +complexé complexer ver m s 0.42 0.68 0.11 0.14 par:pas; +complexée complexé adj f s 0.12 0.41 0.05 0.00 +complexés complexer ver m p 0.42 0.68 0.03 0.00 par:pas; +complication complication nom f s 4.59 8.38 1.01 3.24 +complications complication nom f p 4.59 8.38 3.58 5.14 +complice complice nom s 14.41 14.73 9.22 7.64 +complices complice nom p 14.41 14.73 5.19 7.09 +complicité complicité nom f s 5.61 24.46 5.20 22.03 +complicités complicité nom f p 5.61 24.46 0.42 2.43 +complies complies nom f p 0.09 0.95 0.09 0.95 +compliment compliment nom m s 17.18 15.00 8.29 5.54 +complimenta complimenter ver 1.22 1.55 0.00 0.07 ind:pas:3s; +complimentaient complimenter ver 1.22 1.55 0.00 0.14 ind:imp:3p; +complimentais complimenter ver 1.22 1.55 0.04 0.07 ind:imp:1s; +complimentait complimenter ver 1.22 1.55 0.03 0.20 ind:imp:3s; +complimentant complimenter ver 1.22 1.55 0.03 0.07 par:pre; +complimente complimenter ver 1.22 1.55 0.25 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +complimentent complimenter ver 1.22 1.55 0.01 0.07 ind:pre:3p; +complimenter complimenter ver 1.22 1.55 0.68 0.20 ind:pre:2p;inf; +complimenteraient complimenter ver 1.22 1.55 0.00 0.14 cnd:pre:3p; +complimentez complimenter ver 1.22 1.55 0.05 0.00 imp:pre:2p; +complimentât complimenter ver 1.22 1.55 0.00 0.07 sub:imp:3s; +compliments compliment nom m p 17.18 15.00 8.89 9.46 +complimenté complimenter ver m s 1.22 1.55 0.08 0.14 par:pas; +complimentée complimenter ver f s 1.22 1.55 0.05 0.20 par:pas; +compliqua compliquer ver 22.30 18.85 0.11 0.14 ind:pas:3s; +compliquaient compliquer ver 22.30 18.85 0.15 0.95 ind:imp:3p; +compliquais compliquer ver 22.30 18.85 0.00 0.07 ind:imp:1s; +compliquait compliquer ver 22.30 18.85 0.02 0.81 ind:imp:3s; +compliquant compliquer ver 22.30 18.85 0.00 0.47 par:pre; +complique compliquer ver 22.30 18.85 4.74 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compliquent compliquer ver 22.30 18.85 0.40 0.47 ind:pre:3p; +compliquer compliquer ver 22.30 18.85 1.91 2.70 inf; +compliquera compliquer ver 22.30 18.85 0.02 0.07 ind:fut:3s; +compliquerai compliquer ver 22.30 18.85 0.11 0.00 ind:fut:1s; +compliquerait compliquer ver 22.30 18.85 0.02 0.34 cnd:pre:3s; +compliques compliquer ver 22.30 18.85 0.68 0.41 ind:pre:2s; +compliquez compliquer ver 22.30 18.85 0.90 0.14 imp:pre:2p;ind:pre:2p; +compliquions compliquer ver 22.30 18.85 0.00 0.07 ind:imp:1p; +compliquons compliquer ver 22.30 18.85 0.51 0.14 imp:pre:1p;ind:pre:1p; +compliquèrent compliquer ver 22.30 18.85 0.00 0.07 ind:pas:3p; +compliqué compliqué adj m s 23.51 24.46 17.17 12.91 +compliquée compliqué adj f s 23.51 24.46 4.44 5.07 +compliquées compliqué adj f p 23.51 24.46 0.95 3.04 +compliqués compliqué adj m p 23.51 24.46 0.94 3.45 +complot complot nom m s 10.45 6.49 9.82 4.80 +complotai comploter ver 3.68 2.50 0.00 0.07 ind:pas:1s; +complotaient comploter ver 3.68 2.50 0.26 0.14 ind:imp:3p; +complotais comploter ver 3.68 2.50 0.01 0.00 ind:imp:2s; +complotait comploter ver 3.68 2.50 0.04 0.47 ind:imp:3s; +complotant comploter ver 3.68 2.50 0.19 0.14 par:pre; +complote comploter ver 3.68 2.50 0.61 0.47 ind:pre:1s;ind:pre:3s; +complotent comploter ver 3.68 2.50 0.32 0.14 ind:pre:3p; +comploter comploter ver 3.68 2.50 0.71 0.54 ind:pre:2p;inf; +comploteraient comploter ver 3.68 2.50 0.01 0.00 cnd:pre:3p; +comploterait comploter ver 3.68 2.50 0.01 0.00 cnd:pre:3s; +complotes comploter ver 3.68 2.50 0.20 0.00 ind:pre:2s; +comploteur comploteur nom m s 0.19 0.34 0.16 0.14 +comploteurs comploteur nom m p 0.19 0.34 0.01 0.20 +comploteuse comploteur nom f s 0.19 0.34 0.01 0.00 +complotez comploter ver 3.68 2.50 0.63 0.14 imp:pre:2p;ind:pre:2p; +complotiez comploter ver 3.68 2.50 0.15 0.00 ind:imp:2p; +complotons comploter ver 3.68 2.50 0.00 0.14 ind:pre:1p; +complots complot nom m p 10.45 6.49 0.63 1.69 +complotèrent comploter ver 3.68 2.50 0.01 0.00 ind:pas:3p; +comploté comploter ver m s 3.68 2.50 0.53 0.27 par:pas; +complète complet adj f s 29.19 44.12 8.84 18.18 +complètement complètement adv 105.33 81.49 105.33 81.49 +complètements complètement nom m p 0.16 0.00 0.06 0.00 +complètent compléter ver 4.89 14.39 0.37 0.41 ind:pre:3p; +complètes complet adj f p 29.19 44.12 0.92 3.31 +complu complu adj m s 0.00 0.47 0.00 0.47 +complément complément nom m s 1.25 3.51 0.96 2.77 +complémentaire complémentaire adj s 0.81 3.51 0.47 1.55 +complémentairement complémentairement adv 0.00 0.14 0.00 0.14 +complémentaires complémentaire adj p 0.81 3.51 0.34 1.96 +complémentarité complémentarité nom f s 0.03 0.14 0.03 0.14 +compléments complément nom m p 1.25 3.51 0.28 0.74 +complus complaire ver 0.93 4.19 0.00 0.07 ind:pas:1s; +complut complaire ver 0.93 4.19 0.00 0.14 ind:pas:3s; +compléta compléter ver 4.89 14.39 0.00 1.69 ind:pas:3s; +complétai compléter ver 4.89 14.39 0.00 0.14 ind:pas:1s; +complétaient compléter ver 4.89 14.39 0.01 1.15 ind:imp:3p; +complétais compléter ver 4.89 14.39 0.01 0.07 ind:imp:1s; +complétait compléter ver 4.89 14.39 0.21 1.49 ind:imp:3s; +complétant compléter ver 4.89 14.39 0.03 0.54 par:pre; +compléter compléter ver 4.89 14.39 2.02 4.46 inf; +complétera compléter ver 4.89 14.39 0.02 0.20 ind:fut:3s; +compléterai compléter ver 4.89 14.39 0.02 0.00 ind:fut:1s; +compléteraient compléter ver 4.89 14.39 0.00 0.14 cnd:pre:3p; +compléterait compléter ver 4.89 14.39 0.01 0.14 cnd:pre:3s; +compléteras compléter ver 4.89 14.39 0.00 0.07 ind:fut:2s; +compléterez compléter ver 4.89 14.39 0.01 0.07 ind:fut:2p; +compléteront compléter ver 4.89 14.39 0.01 0.00 ind:fut:3p; +complétez compléter ver 4.89 14.39 0.18 0.00 imp:pre:2p;ind:pre:2p; +complétiez compléter ver 4.89 14.39 0.01 0.07 ind:imp:2p; +complétons compléter ver 4.89 14.39 0.14 0.00 imp:pre:1p;ind:pre:1p; +complétèrent compléter ver 4.89 14.39 0.00 0.14 ind:pas:3p; +complété compléter ver m s 4.89 14.39 0.45 1.42 par:pas; +complétude complétude nom f s 0.14 0.07 0.14 0.07 +complétée compléter ver f s 4.89 14.39 0.11 0.68 par:pas; +complétées compléter ver f p 4.89 14.39 0.01 0.34 par:pas; +complétés compléter ver m p 4.89 14.39 0.12 0.20 par:pas; +compo compo nom f s 0.06 1.35 0.06 1.35 +componction componction nom f s 0.01 1.76 0.01 1.76 +components component nom m p 0.01 0.07 0.01 0.07 +comporta comporter ver 24.59 30.54 0.41 0.47 ind:pas:3s; +comportai comporter ver 24.59 30.54 0.01 0.07 ind:pas:1s; +comportaient comporter ver 24.59 30.54 0.21 1.69 ind:imp:3p; +comportais comporter ver 24.59 30.54 0.23 0.14 ind:imp:1s;ind:imp:2s; +comportait comporter ver 24.59 30.54 1.28 7.77 ind:imp:3s; +comportant comporter ver 24.59 30.54 0.23 1.22 par:pre; +comportassent comporter ver 24.59 30.54 0.00 0.07 sub:imp:3p; +comporte comporter ver 24.59 30.54 7.05 7.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +comportement comportement nom m s 20.94 17.03 19.68 15.27 +comportemental comportemental adj m s 0.79 0.00 0.21 0.00 +comportementale comportemental adj f s 0.79 0.00 0.40 0.00 +comportementales comportemental adj f p 0.79 0.00 0.10 0.00 +comportementalisme comportementalisme nom m s 0.00 0.07 0.00 0.07 +comportementaliste comportementaliste adj m s 0.04 0.07 0.04 0.07 +comportementaux comportemental adj m p 0.79 0.00 0.08 0.00 +comportements comportement nom m p 20.94 17.03 1.25 1.76 +comportent comporter ver 24.59 30.54 1.26 1.69 ind:pre:3p; +comporter comporter ver 24.59 30.54 6.02 6.49 inf; +comportera comporter ver 24.59 30.54 0.18 0.27 ind:fut:3s; +comporterai comporter ver 24.59 30.54 0.03 0.07 ind:fut:1s; +comporteraient comporter ver 24.59 30.54 0.02 0.20 cnd:pre:3p; +comporterais comporter ver 24.59 30.54 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +comporterait comporter ver 24.59 30.54 0.02 1.08 cnd:pre:3s; +comporterez comporter ver 24.59 30.54 0.05 0.00 ind:fut:2p; +comporteriez comporter ver 24.59 30.54 0.13 0.00 cnd:pre:2p; +comporterions comporter ver 24.59 30.54 0.01 0.07 cnd:pre:1p; +comporteront comporter ver 24.59 30.54 0.02 0.07 ind:fut:3p; +comportes comporter ver 24.59 30.54 2.20 0.07 ind:pre:2s;sub:pre:2s; +comportez comporter ver 24.59 30.54 1.63 0.07 imp:pre:2p;ind:pre:2p; +comportiez comporter ver 24.59 30.54 0.17 0.00 ind:imp:2p; +comportions comporter ver 24.59 30.54 0.01 0.14 ind:imp:1p; +comportons comporter ver 24.59 30.54 0.26 0.00 imp:pre:1p;ind:pre:1p; +comportât comporter ver 24.59 30.54 0.00 0.41 sub:imp:3s; +comporté comporter ver m s 24.59 30.54 1.85 0.68 par:pas; +comportée comporter ver f s 24.59 30.54 0.76 0.47 par:pas; +comportés comporter ver m p 24.59 30.54 0.53 0.07 par:pas; +composa composer ver 14.07 47.57 0.12 2.50 ind:pas:3s; +composai composer ver 14.07 47.57 0.00 0.41 ind:pas:1s; +composaient composer ver 14.07 47.57 0.14 4.39 ind:imp:3p; +composais composer ver 14.07 47.57 0.04 0.34 ind:imp:1s;ind:imp:2s; +composait composer ver 14.07 47.57 0.27 5.54 ind:imp:3s; +composant composant nom m s 2.81 1.49 0.96 0.07 +composante composant adj f s 0.60 0.34 0.15 0.07 +composantes composant nom f p 2.81 1.49 0.39 0.68 +composants composant nom m p 2.81 1.49 1.35 0.27 +compose composer ver 14.07 47.57 3.44 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +composent composer ver 14.07 47.57 0.47 3.11 ind:pre:3p; +composer composer ver 14.07 47.57 2.87 7.30 inf; +composera composer ver 14.07 47.57 0.04 0.27 ind:fut:3s; +composerai composer ver 14.07 47.57 0.12 0.00 ind:fut:1s; +composerait composer ver 14.07 47.57 0.01 0.20 cnd:pre:3s; +composeront composer ver 14.07 47.57 0.11 0.07 ind:fut:3p; +composes composer ver 14.07 47.57 0.20 0.07 ind:pre:2s; +composeur composeur nom m s 0.69 0.00 0.69 0.00 +composez composer ver 14.07 47.57 0.86 0.14 imp:pre:2p;ind:pre:2p; +composiez composer ver 14.07 47.57 0.03 0.00 ind:imp:2p; +composions composer ver 14.07 47.57 0.00 0.14 ind:imp:1p; +composite composite adj s 0.16 1.01 0.14 0.88 +composites composite nom m p 0.10 0.00 0.04 0.00 +compositeur compositeur nom m s 4.32 3.38 3.62 2.91 +compositeurs compositeur nom m p 4.32 3.38 0.61 0.47 +composition composition nom f s 3.99 17.43 3.56 14.59 +compositions composition nom f p 3.99 17.43 0.43 2.84 +compositrice compositeur nom f s 4.32 3.38 0.09 0.00 +composons composer ver 14.07 47.57 0.09 0.14 imp:pre:1p;ind:pre:1p; +compost compost nom m s 0.15 0.14 0.15 0.14 +composter composter ver 0.14 0.34 0.00 0.20 inf; +composteur composteur nom m s 0.00 0.54 0.00 0.47 +composteurs composteur nom m p 0.00 0.54 0.00 0.07 +compostez composter ver 0.14 0.34 0.00 0.07 imp:pre:2p; +composèrent composer ver 14.07 47.57 0.00 0.14 ind:pas:3p; +composté composter ver m s 0.14 0.34 0.14 0.07 par:pas; +composé composer ver m s 14.07 47.57 3.34 9.19 par:pas; +composée composer ver f s 14.07 47.57 1.38 4.19 par:pas; +composées composer ver f p 14.07 47.57 0.12 1.01 par:pas; +composés composé nom m p 0.70 1.08 0.35 0.14 +compote compote nom f s 3.01 3.31 3.00 2.77 +compotes compote nom f p 3.01 3.31 0.01 0.54 +compotier compotier nom m s 0.00 0.68 0.00 0.61 +compotiers compotier nom m p 0.00 0.68 0.00 0.07 +compound compound adj 0.02 0.00 0.02 0.00 +comprîmes comprendre ver 893.40 614.80 0.02 0.20 ind:pas:1p; +comprît comprendre ver 893.40 614.80 0.01 2.64 sub:imp:3s; +comprador comprador nom m s 0.02 0.00 0.02 0.00 +comprenaient comprendre ver 893.40 614.80 0.61 5.20 ind:imp:3p; +comprenais comprendre ver 893.40 614.80 5.34 24.12 ind:imp:1s;ind:imp:2s; +comprenait comprendre ver 893.40 614.80 4.69 41.28 ind:imp:3s; +comprenant comprendre ver 893.40 614.80 0.55 9.32 par:pre; +comprend comprendre ver 893.40 614.80 41.39 31.82 ind:pre:3s; +comprendra comprendre ver 893.40 614.80 7.10 4.32 ind:fut:3s; +comprendrai comprendre ver 893.40 614.80 2.63 1.42 ind:fut:1s; +comprendraient comprendre ver 893.40 614.80 0.90 1.01 cnd:pre:3p; +comprendrais comprendre ver 893.40 614.80 4.97 2.50 cnd:pre:1s;cnd:pre:2s; +comprendrait comprendre ver 893.40 614.80 3.20 5.00 cnd:pre:3s; +comprendras comprendre ver 893.40 614.80 6.82 2.97 ind:fut:2s; +comprendre comprendre ver 893.40 614.80 135.13 148.51 inf; +comprendrez comprendre ver 893.40 614.80 4.48 2.23 ind:fut:2p; +comprendriez comprendre ver 893.40 614.80 1.52 0.27 cnd:pre:2p; +comprendrions comprendre ver 893.40 614.80 0.04 0.07 cnd:pre:1p; +comprendrons comprendre ver 893.40 614.80 0.42 0.14 ind:fut:1p; +comprendront comprendre ver 893.40 614.80 2.84 1.15 ind:fut:3p; +comprends comprendre ver 893.40 614.80 368.53 103.18 imp:pre:2s;ind:pre:1s;ind:pre:2s; +comprenette comprenette nom f s 0.03 0.14 0.03 0.14 +comprenez comprendre ver 893.40 614.80 68.86 28.18 imp:pre:2p;ind:pre:2p; +compreniez comprendre ver 893.40 614.80 2.44 1.15 ind:imp:2p; +comprenions comprendre ver 893.40 614.80 0.33 1.82 ind:imp:1p; +comprenne comprendre ver 893.40 614.80 5.98 5.54 sub:pre:1s;sub:pre:3s; +comprennent comprendre ver 893.40 614.80 12.53 8.85 ind:pre:3p;sub:pre:3p; +comprennes comprendre ver 893.40 614.80 4.22 1.15 sub:pre:2s; +comprenons comprendre ver 893.40 614.80 3.83 2.23 imp:pre:1p;ind:pre:1p; +compresse compresse nom f s 1.86 2.03 0.76 0.68 +compresser compresser ver 0.51 0.61 0.16 0.20 inf; +compresses compresse nom f p 1.86 2.03 1.09 1.35 +compresseur compresseur nom m s 0.88 0.14 0.31 0.07 +compresseurs compresseur nom m p 0.88 0.14 0.57 0.07 +compressible compressible adj f s 0.01 0.14 0.01 0.00 +compressibles compressible adj p 0.01 0.14 0.00 0.14 +compressif compressif adj m s 0.07 0.00 0.07 0.00 +compression compression nom f s 1.45 0.74 1.21 0.47 +compressions compression nom f p 1.45 0.74 0.24 0.27 +compressé compresser ver m s 0.51 0.61 0.09 0.14 par:pas; +compressée compresser ver f s 0.51 0.61 0.17 0.07 par:pas; +compressées compressé adj f p 0.10 0.68 0.03 0.20 +compressés compressé adj m p 0.10 0.68 0.04 0.07 +comprima comprimer ver 1.15 3.99 0.14 0.20 ind:pas:3s; +comprimait comprimer ver 1.15 3.99 0.00 1.01 ind:imp:3s; +comprimant comprimer ver 1.15 3.99 0.00 0.61 par:pre; +comprime comprimer ver 1.15 3.99 0.16 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compriment comprimer ver 1.15 3.99 0.02 0.14 ind:pre:3p; +comprimer comprimer ver 1.15 3.99 0.20 0.61 inf; +comprimez comprimer ver 1.15 3.99 0.08 0.00 imp:pre:2p; +comprimèrent comprimer ver 1.15 3.99 0.00 0.07 ind:pas:3p; +comprimé comprimé nom m s 4.27 3.99 1.62 1.35 +comprimée comprimé adj f s 0.55 1.82 0.03 0.27 +comprimées comprimer ver f p 1.15 3.99 0.01 0.14 par:pas; +comprimés comprimé nom m p 4.27 3.99 2.65 2.64 +comprirent comprendre ver 893.40 614.80 0.14 1.69 ind:pas:3p; +compris comprendre ver m 893.40 614.80 198.16 136.62 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +comprise comprendre ver f s 893.40 614.80 3.32 2.91 par:pas; +comprises comprendre ver f p 893.40 614.80 0.66 0.41 par:pas; +comprisse comprendre ver 893.40 614.80 0.00 0.27 sub:imp:1s; +comprit comprendre ver 893.40 614.80 1.74 36.62 ind:pas:3s; +compromît compromettre ver 10.28 16.62 0.01 0.07 sub:imp:3s; +compromet compromettre ver 10.28 16.62 0.90 0.41 ind:pre:3s; +compromets compromettre ver 10.28 16.62 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +compromettaient compromettre ver 10.28 16.62 0.03 0.14 ind:imp:3p; +compromettait compromettre ver 10.28 16.62 0.02 1.15 ind:imp:3s; +compromettant compromettant adj m s 1.63 2.64 0.75 0.88 +compromettante compromettant adj f s 1.63 2.64 0.21 0.54 +compromettantes compromettant adj f p 1.63 2.64 0.32 0.47 +compromettants compromettant adj m p 1.63 2.64 0.35 0.74 +compromette compromettre ver 10.28 16.62 0.14 0.07 sub:pre:3s; +compromettent compromettre ver 10.28 16.62 0.06 0.27 ind:pre:3p; +compromettes compromettre ver 10.28 16.62 0.01 0.07 sub:pre:2s; +compromettez compromettre ver 10.28 16.62 0.27 0.07 imp:pre:2p;ind:pre:2p; +compromettiez compromettre ver 10.28 16.62 0.04 0.20 ind:imp:2p; +compromettrai compromettre ver 10.28 16.62 0.01 0.07 ind:fut:1s; +compromettrait compromettre ver 10.28 16.62 0.46 0.41 cnd:pre:3s; +compromettre compromettre ver 10.28 16.62 3.83 6.42 inf; +compromettrons compromettre ver 10.28 16.62 0.01 0.00 ind:fut:1p; +compromirent compromettre ver 10.28 16.62 0.00 0.07 ind:pas:3p; +compromis compromis nom m 6.26 5.88 6.26 5.88 +compromise compromettre ver f s 10.28 16.62 1.08 1.82 par:pas; +compromises compromettre ver f p 10.28 16.62 0.21 0.41 par:pas; +compromission compromission nom f s 0.29 1.62 0.16 0.34 +compromissions compromission nom f p 0.29 1.62 0.14 1.28 +compromissoire compromissoire adj f s 0.01 0.00 0.01 0.00 +compromit compromettre ver 10.28 16.62 0.00 0.27 ind:pas:3s; +compréhensible compréhensible adj s 4.47 3.04 4.25 2.50 +compréhensibles compréhensible adj p 4.47 3.04 0.21 0.54 +compréhensif compréhensif adj m s 5.21 4.93 2.73 2.36 +compréhensifs compréhensif adj m p 5.21 4.93 0.72 0.68 +compréhension compréhension nom f s 5.85 10.00 5.85 9.93 +compréhensions compréhension nom f p 5.85 10.00 0.00 0.07 +compréhensive compréhensif adj f s 5.21 4.93 1.67 1.55 +compréhensives compréhensif adj f p 5.21 4.93 0.08 0.34 +compta compter ver 227.77 203.72 0.95 5.47 ind:pas:3s; +comptabilisait comptabiliser ver 0.40 1.28 0.00 0.20 ind:imp:3s; +comptabilisant comptabiliser ver 0.40 1.28 0.00 0.20 par:pre; +comptabilisation comptabilisation nom f s 0.00 0.14 0.00 0.14 +comptabilise comptabiliser ver 0.40 1.28 0.04 0.14 ind:pre:1s;ind:pre:3s; +comptabiliser comptabiliser ver 0.40 1.28 0.09 0.61 inf; +comptabilisé comptabiliser ver m s 0.40 1.28 0.23 0.14 par:pas; +comptabilisées comptabiliser ver f p 0.40 1.28 0.01 0.00 par:pas; +comptabilisés comptabiliser ver m p 0.40 1.28 0.03 0.00 par:pas; +comptabilité comptabilité nom f s 4.37 4.53 4.37 4.39 +comptabilités comptabilité nom f p 4.37 4.53 0.00 0.14 +comptable comptable nom s 7.15 4.26 6.43 3.31 +comptables comptable nom p 7.15 4.26 0.72 0.95 +comptage comptage nom m s 0.30 0.14 0.30 0.14 +comptai compter ver 227.77 203.72 0.01 0.14 ind:pas:1s; +comptaient compter ver 227.77 203.72 0.93 8.04 ind:imp:3p; +comptais compter ver 227.77 203.72 7.39 7.03 ind:imp:1s;ind:imp:2s; +comptait compter ver 227.77 203.72 7.32 32.50 ind:imp:3s; +comptant compter ver 227.77 203.72 2.47 6.15 par:pre; +compte_fils compte_fils nom m 0.00 0.34 0.00 0.34 +compte_gouttes compte_gouttes nom m 0.45 1.42 0.45 1.42 +compte_rendu compte_rendu nom m s 2.21 0.14 2.06 0.07 +compte_tours compte_tours nom m 0.04 0.41 0.04 0.41 +compte compte nom m s 160.95 208.38 138.88 187.23 +comptent compter ver 227.77 203.72 8.09 6.69 ind:pre:3p; +compter compter ver 227.77 203.72 45.04 52.77 ind:pre:2p;inf; +comptera compter ver 227.77 203.72 1.62 0.88 ind:fut:3s; +compterai compter ver 227.77 203.72 0.40 0.27 ind:fut:1s; +compteraient compter ver 227.77 203.72 0.01 0.27 cnd:pre:3p; +compterais compter ver 227.77 203.72 0.49 0.07 cnd:pre:1s;cnd:pre:2s; +compterait compter ver 227.77 203.72 0.39 1.42 cnd:pre:3s; +compteras compter ver 227.77 203.72 0.18 0.00 ind:fut:2s; +compterez compter ver 227.77 203.72 0.04 0.07 ind:fut:2p; +compterons compter ver 227.77 203.72 0.02 0.14 ind:fut:1p; +compteront compter ver 227.77 203.72 0.37 0.27 ind:fut:3p; +compte_rendu compte_rendu nom m p 2.21 0.14 0.16 0.07 +comptes compte nom m p 160.95 208.38 22.07 21.15 +compteur compteur nom m s 4.81 5.95 4.27 4.19 +compteurs compteur nom m p 4.81 5.95 0.55 1.76 +comptez compter ver 227.77 203.72 21.36 5.88 imp:pre:2p;ind:pre:2p; +compère compère nom m s 2.13 3.85 1.70 2.36 +compères compère nom m p 2.13 3.85 0.42 1.49 +compète compéter ver 0.96 0.07 0.80 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compètes compéter ver 0.96 0.07 0.14 0.00 ind:pre:2s; +comptiez compter ver 227.77 203.72 1.38 0.20 ind:imp:2p;sub:pre:2p; +comptine comptine nom f s 2.00 1.76 1.73 1.22 +comptines comptine nom f p 2.00 1.76 0.28 0.54 +comptions compter ver 227.77 203.72 0.26 0.68 ind:imp:1p; +comptoir comptoir nom m s 8.66 41.55 8.49 39.53 +comptoirs comptoir nom m p 8.66 41.55 0.17 2.03 +comptons compter ver 227.77 203.72 2.17 2.84 imp:pre:1p;ind:pre:1p; +comptât compter ver 227.77 203.72 0.00 0.20 sub:imp:3s; +comptèrent compter ver 227.77 203.72 0.01 0.20 ind:pas:3p; +compté compter ver m s 227.77 203.72 10.34 11.55 par:pas; +comptée compter ver f s 227.77 203.72 0.12 0.88 par:pas; +comptées compter ver f p 227.77 203.72 0.25 1.28 par:pas; +comptés compter ver m p 227.77 203.72 1.96 2.84 par:pas; +compulsait compulser ver 0.27 1.69 0.00 0.27 ind:imp:3s; +compulsant compulser ver 0.27 1.69 0.01 0.20 par:pre; +compulse compulser ver 0.27 1.69 0.10 0.47 imp:pre:2s;ind:pre:3s; +compulser compulser ver 0.27 1.69 0.03 0.47 inf; +compulsez compulser ver 0.27 1.69 0.10 0.00 imp:pre:2p; +compulsif compulsif adj m s 1.04 0.14 0.72 0.07 +compulsifs compulsif adj m p 1.04 0.14 0.11 0.00 +compulsion compulsion nom f s 0.17 0.00 0.17 0.00 +compulsive compulsif adj f s 1.04 0.14 0.18 0.00 +compulsivement compulsivement adv 0.03 0.00 0.03 0.00 +compulsives compulsif adj f p 1.04 0.14 0.03 0.07 +compulsoire compulsoire nom m s 0.00 0.07 0.00 0.07 +compulsons compulser ver 0.27 1.69 0.00 0.07 ind:pre:1p; +compulsé compulser ver m s 0.27 1.69 0.02 0.14 par:pas; +compulsés compulser ver m p 0.27 1.69 0.00 0.07 par:pas; +comput comput nom m s 0.00 0.14 0.00 0.14 +compétant compéter ver 0.96 0.07 0.02 0.00 par:pre; +computations computation nom f p 0.00 0.07 0.00 0.07 +compétence compétence nom f s 5.98 5.07 2.12 3.24 +compétences compétence nom f p 5.98 5.07 3.86 1.82 +compétent compétent adj m s 7.44 3.11 4.45 1.08 +compétente compétent adj f s 7.44 3.11 1.05 1.08 +compétentes compétent adj f p 7.44 3.11 0.52 0.34 +compétents compétent adj m p 7.44 3.11 1.42 0.61 +computer computer nom m s 0.17 0.14 0.14 0.07 +computers computer nom m p 0.17 0.14 0.03 0.07 +computeur computeur nom m s 0.05 0.07 0.04 0.00 +computeurs computeur nom m p 0.05 0.07 0.01 0.07 +compétiteur compétiteur nom m s 0.34 0.20 0.28 0.00 +compétiteurs compétiteur nom m p 0.34 0.20 0.05 0.20 +compétitif compétitif adj m s 1.27 0.00 0.53 0.00 +compétitifs compétitif adj m p 1.27 0.00 0.22 0.00 +compétition compétition nom f s 9.15 4.80 8.43 3.85 +compétitions compétition nom f p 9.15 4.80 0.73 0.95 +compétitive compétitif adj f s 1.27 0.00 0.52 0.00 +compétitivité compétitivité nom f s 0.06 0.00 0.06 0.00 +compétitrice compétiteur nom f s 0.34 0.20 0.01 0.00 +comtal comtal adj m s 0.00 0.20 0.00 0.14 +comtale comtal adj f s 0.00 0.20 0.00 0.07 +comte comte nom m s 27.31 67.77 12.89 51.42 +comtes comte nom m p 27.31 67.77 0.74 2.64 +comtesse comte nom f s 27.31 67.77 13.69 12.43 +comtesses comtesse nom f p 0.05 0.00 0.05 0.00 +comète comète nom f s 2.28 2.50 1.96 2.30 +comètes comète nom f p 2.28 2.50 0.32 0.20 +comtois comtois adj m 0.00 0.27 0.00 0.07 +comtois comtois nom m 0.00 0.27 0.00 0.07 +comtoise comtois adj f s 0.00 0.27 0.00 0.20 +comtoise comtois nom f s 0.00 0.27 0.00 0.20 +comté comté nom m s 11.64 2.36 10.96 2.36 +comtés comté nom m p 11.64 2.36 0.68 0.00 +comédie comédie nom f s 22.11 29.73 20.87 25.68 +comédien comédien nom m s 6.06 10.74 3.02 5.27 +comédienne comédien nom f s 6.06 10.74 0.75 1.76 +comédiennes comédienne nom f p 0.44 0.00 0.44 0.00 +comédiens comédien nom m p 6.06 10.74 2.30 3.11 +comédies comédie nom f p 22.11 29.73 1.23 4.05 +comédons comédon nom m p 0.00 0.07 0.00 0.07 +con con pro_per s 7.87 4.59 7.87 4.59 +conard conard nom m s 0.19 0.47 0.16 0.27 +conarde conard nom f s 0.19 0.47 0.00 0.07 +conards conard nom m p 0.19 0.47 0.03 0.14 +conasse conasse nom f s 0.34 0.27 0.34 0.20 +conasses conasse nom f p 0.34 0.27 0.00 0.07 +concassage concassage nom m s 0.00 0.14 0.00 0.14 +concassait concasser ver 0.09 1.76 0.00 0.07 ind:imp:3s; +concassant concasser ver 0.09 1.76 0.00 0.14 par:pre; +concasse concasser ver 0.09 1.76 0.00 0.07 ind:pre:3s; +concassent concasser ver 0.09 1.76 0.00 0.07 ind:pre:3p; +concasser concasser ver 0.09 1.76 0.01 0.07 inf; +concasseur concasseur nom m s 0.19 0.68 0.17 0.27 +concasseurs concasseur nom m p 0.19 0.68 0.01 0.41 +concassé concasser ver m s 0.09 1.76 0.04 0.54 par:pas; +concassée concasser ver f s 0.09 1.76 0.01 0.27 par:pas; +concassées concasser ver f p 0.09 1.76 0.01 0.20 par:pas; +concassés concasser ver m p 0.09 1.76 0.01 0.34 par:pas; +concaténation concaténation nom f s 0.01 0.00 0.01 0.00 +concave concave adj s 0.20 1.22 0.19 1.08 +concaves concave adj p 0.20 1.22 0.01 0.14 +concavité concavité nom f s 0.00 0.34 0.00 0.34 +concentra concentrer ver 39.58 18.92 0.04 1.28 ind:pas:3s; +concentrai concentrer ver 39.58 18.92 0.00 0.27 ind:pas:1s; +concentraient concentrer ver 39.58 18.92 0.15 0.68 ind:imp:3p; +concentrais concentrer ver 39.58 18.92 0.16 0.00 ind:imp:1s;ind:imp:2s; +concentrait concentrer ver 39.58 18.92 0.14 1.42 ind:imp:3s; +concentrant concentrer ver 39.58 18.92 0.43 0.74 par:pre; +concentrateur concentrateur nom m s 0.12 0.00 0.12 0.00 +concentration concentration nom f s 8.54 10.41 8.46 10.27 +concentrationnaire concentrationnaire adj m s 0.32 0.61 0.32 0.34 +concentrationnaires concentrationnaire adj m p 0.32 0.61 0.00 0.27 +concentrations concentration nom f p 8.54 10.41 0.08 0.14 +concentre concentrer ver 39.58 18.92 12.05 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concentrent concentrer ver 39.58 18.92 0.30 0.20 ind:pre:3p; +concentrer concentrer ver 39.58 18.92 14.13 6.28 ind:pre:2p;inf; +concentrera concentrer ver 39.58 18.92 0.20 0.00 ind:fut:3s; +concentrerai concentrer ver 39.58 18.92 0.06 0.00 ind:fut:1s; +concentrerais concentrer ver 39.58 18.92 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +concentrerait concentrer ver 39.58 18.92 0.04 0.00 cnd:pre:3s; +concentrerons concentrer ver 39.58 18.92 0.05 0.00 ind:fut:1p; +concentreront concentrer ver 39.58 18.92 0.03 0.07 ind:fut:3p; +concentres concentrer ver 39.58 18.92 0.88 0.00 ind:pre:2s;sub:pre:2s; +concentrez concentrer ver 39.58 18.92 4.39 0.00 imp:pre:2p;ind:pre:2p; +concentriez concentrer ver 39.58 18.92 0.12 0.00 ind:imp:2p; +concentrions concentrer ver 39.58 18.92 0.04 0.00 ind:imp:1p; +concentrique concentrique adj s 0.16 4.12 0.00 0.54 +concentriques concentrique adj p 0.16 4.12 0.16 3.58 +concentrons concentrer ver 39.58 18.92 1.69 0.07 imp:pre:1p;ind:pre:1p; +concentré concentrer ver m s 39.58 18.92 2.55 2.30 par:pas; +concentrée concentrer ver f s 39.58 18.92 0.66 1.69 par:pas; +concentrées concentrer ver f p 39.58 18.92 0.32 0.61 par:pas; +concentrés concentrer ver m p 39.58 18.92 1.08 0.54 par:pas; +concept concept nom m s 8.66 3.24 7.63 2.03 +concepteur concepteur adj m s 0.51 0.00 0.50 0.00 +concepteurs concepteur nom m p 0.77 0.14 0.23 0.00 +conception conception nom f s 4.37 11.55 3.84 8.31 +conceptions conception nom f p 4.37 11.55 0.53 3.24 +conceptrice concepteur nom f s 0.77 0.14 0.05 0.00 +concepts concept nom m p 8.66 3.24 1.02 1.22 +conceptualise conceptualiser ver 0.04 0.00 0.01 0.00 ind:pre:1s; +conceptualiser conceptualiser ver 0.04 0.00 0.02 0.00 inf; +conceptualisé conceptualiser ver m s 0.04 0.00 0.01 0.00 par:pas; +conceptuel conceptuel adj m s 0.46 0.14 0.32 0.14 +conceptuelle conceptuel adj f s 0.46 0.14 0.07 0.00 +conceptuellement conceptuellement adv 0.01 0.00 0.01 0.00 +conceptuelles conceptuel adj f p 0.46 0.14 0.05 0.00 +conceptuels conceptuel adj m p 0.46 0.14 0.02 0.00 +concernaient concerner ver 49.31 50.47 0.18 1.76 ind:imp:3p; +concernait concerner ver 49.31 50.47 2.13 10.95 ind:imp:3s; +concernant concernant pre 13.08 14.26 13.08 14.26 +concerne concerner ver 49.31 50.47 33.49 26.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concernent concerner ver 49.31 50.47 1.64 1.96 ind:pre:3p; +concerner concerner ver 49.31 50.47 0.36 1.22 inf; +concernera concerner ver 49.31 50.47 0.25 0.07 ind:fut:3s; +concerneraient concerner ver 49.31 50.47 0.01 0.07 cnd:pre:3p; +concernerait concerner ver 49.31 50.47 0.17 0.34 cnd:pre:3s; +concernât concerner ver 49.31 50.47 0.00 0.20 sub:imp:3s; +concernèrent concerner ver 49.31 50.47 0.00 0.07 ind:pas:3p; +concerné concerner ver m s 49.31 50.47 3.06 1.49 par:pas; +concernée concerner ver f s 49.31 50.47 1.42 1.08 par:pas; +concernées concerner ver f p 49.31 50.47 0.63 0.14 par:pas; +concernés concerner ver m p 49.31 50.47 2.51 1.08 par:pas; +concert concert nom m s 31.65 30.14 26.51 24.86 +concertaient concerter ver 0.65 3.78 0.01 0.14 ind:imp:3p; +concertait concerter ver 0.65 3.78 0.00 0.14 ind:imp:3s; +concertant concerter ver 0.65 3.78 0.00 0.07 par:pre; +concertation concertation nom f s 0.17 0.07 0.15 0.07 +concertations concertation nom f p 0.17 0.07 0.01 0.00 +concerte concerter ver 0.65 3.78 0.05 0.07 ind:pre:3s; +concertent concerter ver 0.65 3.78 0.02 0.41 ind:pre:3p; +concerter concerter ver 0.65 3.78 0.32 1.15 inf; +concertez concerter ver 0.65 3.78 0.01 0.00 ind:pre:2p; +concertina concertina nom m s 0.01 0.00 0.01 0.00 +concertiste concertiste nom s 0.60 0.00 0.60 0.00 +concerto concerto nom m s 1.63 2.77 1.56 2.36 +concertons concerter ver 0.65 3.78 0.01 0.07 imp:pre:1p;ind:pre:1p; +concertos concerto nom m p 1.63 2.77 0.07 0.41 +concerts concert nom m p 31.65 30.14 5.14 5.27 +concertèrent concerter ver 0.65 3.78 0.00 0.20 ind:pas:3p; +concerté concerter ver m s 0.65 3.78 0.17 0.20 par:pas; +concertée concerter ver f s 0.65 3.78 0.03 0.41 par:pas; +concertées concerter ver f p 0.65 3.78 0.00 0.27 par:pas; +concertés concerter ver m p 0.65 3.78 0.02 0.68 par:pas; +concession concession nom f s 5.31 14.12 3.54 9.32 +concessionnaire concessionnaire nom s 0.70 0.95 0.63 0.68 +concessionnaires concessionnaire nom p 0.70 0.95 0.07 0.27 +concessions concession nom f p 5.31 14.12 1.77 4.80 +concetto concetto nom m s 0.00 0.07 0.00 0.07 +concevable concevable adj s 0.28 2.77 0.27 2.50 +concevables concevable adj f p 0.28 2.77 0.01 0.27 +concevaient concevoir ver 18.75 27.84 0.12 0.34 ind:imp:3p; +concevais concevoir ver 18.75 27.84 0.06 1.15 ind:imp:1s; +concevait concevoir ver 18.75 27.84 0.15 2.36 ind:imp:3s; +concevant concevoir ver 18.75 27.84 0.05 0.14 par:pre; +concevez concevoir ver 18.75 27.84 0.06 0.07 imp:pre:2p;ind:pre:2p; +conceviez concevoir ver 18.75 27.84 0.14 0.14 ind:imp:2p; +concevions concevoir ver 18.75 27.84 0.00 0.07 ind:imp:1p; +concevoir concevoir ver 18.75 27.84 3.14 7.57 inf; +concevons concevoir ver 18.75 27.84 0.02 0.20 imp:pre:1p;ind:pre:1p; +concevrais concevoir ver 18.75 27.84 0.00 0.14 cnd:pre:1s; +concevrait concevoir ver 18.75 27.84 0.01 0.27 cnd:pre:3s; +conchiaient conchier ver 0.03 0.54 0.00 0.07 ind:imp:3p; +conchie conchier ver 0.03 0.54 0.01 0.07 ind:pre:1s;ind:pre:3s; +conchier conchier ver 0.03 0.54 0.01 0.34 inf; +conchié conchier ver m s 0.03 0.54 0.01 0.07 par:pas; +conchoïdaux conchoïdal adj m p 0.01 0.00 0.01 0.00 +concierge concierge nom s 11.15 29.05 10.81 25.41 +conciergerie conciergerie nom f s 0.04 0.74 0.04 0.68 +conciergeries conciergerie nom f p 0.04 0.74 0.00 0.07 +concierges concierge nom p 11.15 29.05 0.34 3.65 +concile concile nom m s 0.17 3.11 0.17 2.57 +conciles concile nom m p 0.17 3.11 0.00 0.54 +conciliable conciliable adj s 0.00 0.34 0.00 0.27 +conciliables conciliable adj p 0.00 0.34 0.00 0.07 +conciliabule conciliabule nom m s 0.28 3.58 0.02 1.76 +conciliabules conciliabule nom m p 0.28 3.58 0.26 1.82 +conciliaient concilier ver 0.85 5.00 0.00 0.07 ind:imp:3p; +conciliaires conciliaire adj m p 0.00 0.07 0.00 0.07 +conciliait concilier ver 0.85 5.00 0.00 0.34 ind:imp:3s; +conciliant conciliant adj m s 0.63 3.85 0.30 2.09 +conciliante conciliant adj f s 0.63 3.85 0.12 1.22 +conciliantes conciliant adj f p 0.63 3.85 0.03 0.20 +conciliants conciliant adj m p 0.63 3.85 0.17 0.34 +conciliateur conciliateur nom m s 0.10 0.14 0.07 0.14 +conciliateurs conciliateur nom m p 0.10 0.14 0.01 0.00 +conciliation conciliation nom f s 0.64 1.82 0.37 1.69 +conciliations conciliation nom f p 0.64 1.82 0.27 0.14 +conciliatrice conciliateur nom f s 0.10 0.14 0.01 0.00 +concilie concilier ver 0.85 5.00 0.20 0.14 ind:pre:3s; +concilier concilier ver 0.85 5.00 0.60 3.18 inf; +concilierait concilier ver 0.85 5.00 0.00 0.07 cnd:pre:3s; +concilies concilier ver 0.85 5.00 0.00 0.07 ind:pre:2s; +concilié concilier ver m s 0.85 5.00 0.02 0.14 par:pas; +conciliées concilier ver f p 0.85 5.00 0.00 0.07 par:pas; +conciliés concilier ver m p 0.85 5.00 0.00 0.07 par:pas; +concis concis adj m 1.42 0.68 0.77 0.61 +concise concis adj f s 1.42 0.68 0.65 0.07 +concision concision nom f s 0.31 0.61 0.31 0.61 +concitoyen concitoyen nom m s 4.36 1.62 0.33 0.07 +concitoyenne concitoyen nom f s 4.36 1.62 0.11 0.07 +concitoyennes concitoyenne nom f p 0.10 0.00 0.10 0.00 +concitoyens concitoyen nom m p 4.36 1.62 3.92 1.49 +conclûmes conclure ver 27.26 51.76 0.00 0.07 ind:pas:1p; +conclût conclure ver 27.26 51.76 0.00 0.07 sub:imp:3s; +conclave conclave nom m s 0.00 0.47 0.00 0.47 +conclaviste conclaviste nom m s 0.00 0.07 0.00 0.07 +conclu conclure ver m s 27.26 51.76 11.88 10.61 par:pas; +concluaient conclure ver 27.26 51.76 0.00 0.47 ind:imp:3p; +concluais conclure ver 27.26 51.76 0.02 0.68 ind:imp:1s; +concluait conclure ver 27.26 51.76 0.06 2.50 ind:imp:3s; +concluant concluant adj m s 1.49 0.95 0.71 0.41 +concluante concluant adj f s 1.49 0.95 0.33 0.34 +concluantes concluant adj f p 1.49 0.95 0.10 0.00 +concluants concluant adj m p 1.49 0.95 0.35 0.20 +conclue conclure ver f s 27.26 51.76 1.82 1.49 par:pas;sub:pre:1s;sub:pre:3s; +concluent conclure ver 27.26 51.76 0.20 0.61 ind:pre:3p; +conclues conclure ver f p 27.26 51.76 0.06 0.20 par:pas;sub:pre:2s; +concluez conclure ver 27.26 51.76 0.57 0.07 imp:pre:2p;ind:pre:2p; +concluions conclure ver 27.26 51.76 0.02 0.07 ind:imp:1p; +concluons conclure ver 27.26 51.76 0.75 0.07 imp:pre:1p;ind:pre:1p; +conclura conclure ver 27.26 51.76 0.24 0.07 ind:fut:3s; +conclurai conclure ver 27.26 51.76 0.27 0.07 ind:fut:1s; +conclurais conclure ver 27.26 51.76 0.03 0.00 cnd:pre:1s; +conclurait conclure ver 27.26 51.76 0.04 0.00 cnd:pre:3s; +conclure conclure ver 27.26 51.76 7.57 10.34 inf; +conclurent conclure ver 27.26 51.76 0.03 0.27 ind:pas:3p; +conclurez conclure ver 27.26 51.76 0.01 0.00 ind:fut:2p; +conclurions conclure ver 27.26 51.76 0.01 0.07 cnd:pre:1p; +conclurons conclure ver 27.26 51.76 0.07 0.00 ind:fut:1p; +concluront conclure ver 27.26 51.76 0.03 0.07 ind:fut:3p; +conclus conclure ver m p 27.26 51.76 1.88 4.32 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +conclusion conclusion nom f s 13.90 20.68 8.19 14.32 +conclusions conclusion nom f p 13.90 20.68 5.71 6.35 +conclusive conclusif adj f s 0.01 0.00 0.01 0.00 +conclut conclure ver 27.26 51.76 1.65 18.92 ind:pre:3s;ind:pas:3s; +concocta concocter ver 1.00 1.01 0.01 0.00 ind:pas:3s; +concoctait concocter ver 1.00 1.01 0.01 0.14 ind:imp:3s; +concoctent concocter ver 1.00 1.01 0.02 0.00 ind:pre:3p; +concocter concocter ver 1.00 1.01 0.34 0.41 inf; +concocteras concocter ver 1.00 1.01 0.01 0.07 ind:fut:2s; +concoction concoction nom f s 0.06 0.20 0.06 0.20 +concocté concocter ver m s 1.00 1.01 0.57 0.27 par:pas; +concoctée concocter ver f s 1.00 1.01 0.04 0.07 par:pas; +concoctés concocter ver m p 1.00 1.01 0.01 0.07 par:pas; +concombre concombre nom m s 2.75 4.12 1.82 1.15 +concombres concombre nom m p 2.75 4.12 0.94 2.97 +concomitance concomitance nom f s 0.01 0.07 0.01 0.07 +concomitant concomitant adj m s 0.02 0.41 0.00 0.14 +concomitante concomitant adj f s 0.02 0.41 0.01 0.14 +concomitantes concomitant adj f p 0.02 0.41 0.01 0.14 +concordaient concorder ver 2.45 0.81 0.02 0.14 ind:imp:3p; +concordait concorder ver 2.45 0.81 0.13 0.27 ind:imp:3s; +concordance concordance nom f s 0.45 0.54 0.45 0.54 +concordant concorder ver 2.45 0.81 0.03 0.00 par:pre; +concordante concordant adj f s 0.23 0.14 0.03 0.00 +concordantes concordant adj f p 0.23 0.14 0.02 0.00 +concordants concordant adj m p 0.23 0.14 0.16 0.07 +concordat concordat nom m s 0.00 0.07 0.00 0.07 +concorde concorder ver 2.45 0.81 1.40 0.07 imp:pre:2s;ind:pre:3s; +concordent concorder ver 2.45 0.81 0.71 0.20 ind:pre:3p; +concorder concorder ver 2.45 0.81 0.15 0.14 inf; +concordez concorder ver 2.45 0.81 0.01 0.00 imp:pre:2p; +concordistes concordiste nom p 0.00 0.07 0.00 0.07 +concourût concourir ver 1.35 3.72 0.00 0.07 sub:imp:3s; +concouraient concourir ver 1.35 3.72 0.03 0.20 ind:imp:3p; +concourait concourir ver 1.35 3.72 0.01 0.34 ind:imp:3s; +concourant concourant adj m s 0.01 0.00 0.01 0.00 +concoure concourir ver 1.35 3.72 0.02 0.00 sub:pre:3s; +concourent concourir ver 1.35 3.72 0.08 0.47 ind:pre:3p; +concourez concourir ver 1.35 3.72 0.04 0.00 ind:pre:2p; +concourir concourir ver 1.35 3.72 0.55 1.28 inf; +concourrai concourir ver 1.35 3.72 0.01 0.00 ind:fut:1s; +concourrait concourir ver 1.35 3.72 0.01 0.14 cnd:pre:3s; +concourront concourir ver 1.35 3.72 0.00 0.07 ind:fut:3p; +concours concours nom m 23.89 31.69 23.89 31.69 +concourt concourir ver 1.35 3.72 0.17 0.54 ind:pre:3s; +concouru concourir ver m s 1.35 3.72 0.10 0.54 par:pas; +concret concret adj m s 3.48 7.09 1.88 2.09 +concrets concret adj m p 3.48 7.09 0.24 1.22 +concrète concret adj f s 3.48 7.09 0.93 2.84 +concrètement concrètement adv 2.04 1.15 2.04 1.15 +concrètes concret adj f p 3.48 7.09 0.42 0.95 +concrétion concrétion nom f s 0.01 0.81 0.01 0.47 +concrétions concrétion nom f p 0.01 0.81 0.00 0.34 +concrétisant concrétiser ver 0.83 1.35 0.01 0.07 par:pre; +concrétisation concrétisation nom f s 0.04 0.07 0.04 0.07 +concrétise concrétiser ver 0.83 1.35 0.20 0.14 ind:pre:1s;ind:pre:3s; +concrétisent concrétiser ver 0.83 1.35 0.01 0.00 ind:pre:3p; +concrétiser concrétiser ver 0.83 1.35 0.39 0.54 inf; +concrétisèrent concrétiser ver 0.83 1.35 0.00 0.14 ind:pas:3p; +concrétisé concrétiser ver m s 0.83 1.35 0.05 0.27 par:pas; +concrétisée concrétiser ver f s 0.83 1.35 0.16 0.14 par:pas; +concrétisées concrétiser ver f p 0.83 1.35 0.01 0.00 par:pas; +concrétisés concrétiser ver m p 0.83 1.35 0.00 0.07 par:pas; +concède concéder ver 1.79 5.74 0.75 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concèdes concéder ver 1.79 5.74 0.02 0.00 ind:pre:2s; +concubin concubin nom m s 1.98 2.84 0.02 0.61 +concubinage concubinage nom m s 0.77 0.68 0.77 0.61 +concubinages concubinage nom m p 0.77 0.68 0.00 0.07 +concubinait concubiner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +concubine concubin nom f s 1.98 2.84 1.56 1.69 +concubines concubin nom f p 1.98 2.84 0.40 0.47 +concubins concubin nom m p 1.98 2.84 0.00 0.07 +concéda concéder ver 1.79 5.74 0.01 1.28 ind:pas:3s; +concédai concéder ver 1.79 5.74 0.00 0.07 ind:pas:1s; +concédaient concéder ver 1.79 5.74 0.10 0.20 ind:imp:3p; +concédais concéder ver 1.79 5.74 0.00 0.14 ind:imp:1s; +concédait concéder ver 1.79 5.74 0.00 0.74 ind:imp:3s; +concédant concédant nom m s 0.00 0.07 0.00 0.07 +concéder concéder ver 1.79 5.74 0.39 0.81 inf; +concéderait concéder ver 1.79 5.74 0.01 0.07 cnd:pre:3s; +concédez concéder ver 1.79 5.74 0.03 0.00 ind:pre:2p; +concédons concéder ver 1.79 5.74 0.00 0.07 ind:pre:1p; +concédât concéder ver 1.79 5.74 0.00 0.14 sub:imp:3s; +concédé concéder ver m s 1.79 5.74 0.25 0.88 par:pas; +concédée concéder ver f s 1.79 5.74 0.23 0.47 par:pas; +concédés concéder ver m p 1.79 5.74 0.00 0.20 par:pas; +concélèbrent concélébrer ver 0.37 0.00 0.37 0.00 ind:pre:3p; +concupiscence concupiscence nom f s 0.38 2.09 0.38 2.03 +concupiscences concupiscence nom f p 0.38 2.09 0.00 0.07 +concupiscent concupiscent adj m s 0.11 0.54 0.11 0.14 +concupiscente concupiscent adj f s 0.11 0.54 0.00 0.14 +concupiscentes concupiscent adj f p 0.11 0.54 0.00 0.14 +concupiscents concupiscent adj m p 0.11 0.54 0.00 0.14 +concurremment concurremment adv 0.00 0.41 0.00 0.41 +concurrence concurrence nom f s 6.00 5.00 6.00 4.73 +concurrencer concurrencer ver 0.33 0.74 0.30 0.07 inf; +concurrences concurrence nom f p 6.00 5.00 0.00 0.27 +concurrencé concurrencer ver m s 0.33 0.74 0.01 0.14 par:pas; +concurrencée concurrencer ver f s 0.33 0.74 0.00 0.07 par:pas; +concurrent concurrent nom m s 6.36 3.51 1.65 1.49 +concurrente concurrent adj f s 1.45 1.62 0.71 0.54 +concurrentes concurrent adj f p 1.45 1.62 0.27 0.41 +concurrençait concurrencer ver 0.33 0.74 0.00 0.27 ind:imp:3s; +concurrentiel concurrentiel adj m s 0.09 0.14 0.07 0.07 +concurrentielle concurrentiel adj f s 0.09 0.14 0.02 0.00 +concurrentiels concurrentiel adj m p 0.09 0.14 0.00 0.07 +concurrents concurrent nom m p 6.36 3.51 4.71 2.03 +concussion concussion nom f s 0.07 0.20 0.07 0.20 +concussionnaire concussionnaire adj f s 0.00 0.07 0.00 0.07 +condamna condamner ver 44.14 44.59 0.59 0.47 ind:pas:3s; +condamnable condamnable adj s 0.44 0.88 0.44 0.61 +condamnables condamnable adj m p 0.44 0.88 0.00 0.27 +condamnai condamner ver 44.14 44.59 0.00 0.07 ind:pas:1s; +condamnaient condamner ver 44.14 44.59 0.04 1.35 ind:imp:3p; +condamnais condamner ver 44.14 44.59 0.02 0.27 ind:imp:1s;ind:imp:2s; +condamnait condamner ver 44.14 44.59 0.17 3.51 ind:imp:3s; +condamnant condamner ver 44.14 44.59 0.31 1.49 par:pre; +condamnation condamnation nom f s 6.79 8.85 5.18 7.64 +condamnations condamnation nom f p 6.79 8.85 1.62 1.22 +condamne condamner ver 44.14 44.59 6.56 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +condamnent condamner ver 44.14 44.59 0.94 1.15 ind:pre:3p;sub:pre:3p; +condamner condamner ver 44.14 44.59 5.53 4.73 inf; +condamnera condamner ver 44.14 44.59 0.60 0.27 ind:fut:3s; +condamnerai condamner ver 44.14 44.59 0.02 0.00 ind:fut:1s; +condamneraient condamner ver 44.14 44.59 0.02 0.00 cnd:pre:3p; +condamnerais condamner ver 44.14 44.59 0.04 0.20 cnd:pre:1s; +condamnerait condamner ver 44.14 44.59 0.22 0.00 cnd:pre:3s; +condamneras condamner ver 44.14 44.59 0.03 0.00 ind:fut:2s; +condamnerons condamner ver 44.14 44.59 0.00 0.07 ind:fut:1p; +condamneront condamner ver 44.14 44.59 0.32 0.14 ind:fut:3p; +condamnes condamner ver 44.14 44.59 0.16 0.14 ind:pre:2s; +condamnez condamner ver 44.14 44.59 1.17 0.07 imp:pre:2p;ind:pre:2p; +condamniez condamner ver 44.14 44.59 0.01 0.14 ind:imp:2p; +condamnions condamner ver 44.14 44.59 0.00 0.07 ind:imp:1p; +condamnons condamner ver 44.14 44.59 0.93 0.07 imp:pre:1p;ind:pre:1p; +condamnât condamner ver 44.14 44.59 0.00 0.14 sub:imp:3s; +condamnèrent condamner ver 44.14 44.59 0.14 0.20 ind:pas:3p; +condamné condamner ver m s 44.14 44.59 17.10 12.30 par:pas; +condamnée condamner ver f s 44.14 44.59 3.42 6.42 par:pas; +condamnées condamner ver f p 44.14 44.59 0.65 1.01 par:pas; +condamnés condamner ver m p 44.14 44.59 5.14 5.07 par:pas; +condensa condenser ver 0.59 2.70 0.00 0.20 ind:pas:3s; +condensaient condenser ver 0.59 2.70 0.00 0.20 ind:imp:3p; +condensait condenser ver 0.59 2.70 0.00 0.54 ind:imp:3s; +condensant condenser ver 0.59 2.70 0.10 0.07 par:pre; +condensateur condensateur nom m s 1.02 0.07 0.77 0.07 +condensateurs condensateur nom m p 1.02 0.07 0.26 0.00 +condensation condensation nom f s 0.28 1.22 0.28 1.22 +condense condenser ver 0.59 2.70 0.14 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +condensent condenser ver 0.59 2.70 0.00 0.14 ind:pre:3p; +condenser condenser ver 0.59 2.70 0.17 0.41 inf; +condensera condenser ver 0.59 2.70 0.01 0.00 ind:fut:3s; +condenseur condenseur nom m s 0.01 0.00 0.01 0.00 +condensèrent condenser ver 0.59 2.70 0.00 0.07 ind:pas:3p; +condensé condenser ver m s 0.59 2.70 0.16 0.14 par:pas; +condensée condensé adj f s 0.05 1.15 0.02 0.00 +condensées condenser ver f p 0.59 2.70 0.03 0.14 par:pas; +condensés condensé adj m p 0.05 1.15 0.01 0.07 +condescend condescendre ver 0.17 1.01 0.00 0.14 ind:pre:3s; +condescendait condescendre ver 0.17 1.01 0.00 0.07 ind:imp:3s; +condescendance condescendance nom f s 0.70 4.53 0.70 4.53 +condescendant condescendant adj m s 1.35 2.09 0.95 0.95 +condescendante condescendant adj f s 1.35 2.09 0.30 0.88 +condescendants condescendant adj m p 1.35 2.09 0.09 0.27 +condescendit condescendre ver 0.17 1.01 0.01 0.20 ind:pas:3s; +condescendrais condescendre ver 0.17 1.01 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +condescendre condescendre ver 0.17 1.01 0.01 0.20 inf; +condescendu condescendre ver m s 0.17 1.01 0.00 0.07 par:pas; +condiment condiment nom m s 0.68 0.61 0.11 0.07 +condiments condiment nom m p 0.68 0.61 0.56 0.54 +condisciple condisciple nom s 0.15 3.11 0.01 0.74 +condisciples condisciple nom p 0.15 3.11 0.14 2.36 +condition condition nom f s 46.73 91.62 25.61 45.81 +conditionnait conditionner ver 1.58 1.55 0.02 0.00 ind:imp:3s; +conditionnant conditionner ver 1.58 1.55 0.02 0.07 par:pre; +conditionne conditionner ver 1.58 1.55 0.32 0.14 ind:pre:1s;ind:pre:3s; +conditionnel conditionnel nom m s 0.07 0.81 0.06 0.74 +conditionnelle conditionnel adj f s 4.76 0.74 4.59 0.74 +conditionnellement conditionnellement adv 0.00 0.07 0.00 0.07 +conditionnelles conditionnel adj f p 4.76 0.74 0.16 0.00 +conditionnels conditionnel nom m p 0.07 0.81 0.01 0.07 +conditionnement conditionnement nom m s 0.52 0.95 0.52 0.74 +conditionnements conditionnement nom m p 0.52 0.95 0.00 0.20 +conditionnent conditionner ver 1.58 1.55 0.14 0.00 ind:pre:3p; +conditionner conditionner ver 1.58 1.55 0.32 0.27 inf; +conditionnerons conditionner ver 1.58 1.55 0.01 0.00 ind:fut:1p; +conditionneur conditionneur nom m s 0.06 0.14 0.04 0.00 +conditionneurs conditionneur nom m p 0.06 0.14 0.02 0.14 +conditionnons conditionner ver 1.58 1.55 0.01 0.00 ind:pre:1p; +conditionné conditionné adj m s 2.09 1.82 2.02 1.55 +conditionnée conditionner ver f s 1.58 1.55 0.14 0.14 par:pas; +conditionnées conditionner ver f p 1.58 1.55 0.02 0.14 par:pas; +conditionnés conditionner ver m p 1.58 1.55 0.07 0.20 par:pas; +conditions condition nom f p 46.73 91.62 21.12 45.81 +condo condo nom m s 1.01 0.00 0.61 0.00 +condoléance condoléance nom f s 10.82 4.32 0.03 0.14 +condoléances condoléance nom f p 10.82 4.32 10.80 4.19 +condoléants condoléant adj m p 0.00 0.07 0.00 0.07 +condom condom nom m s 0.18 0.00 0.18 0.00 +condominium condominium nom m s 0.02 0.14 0.02 0.14 +condor condor nom m s 1.33 0.61 1.30 0.47 +condors condor nom m p 1.33 0.61 0.02 0.14 +condos condo nom m p 1.01 0.00 0.40 0.00 +condottiere condottiere nom m s 0.00 0.61 0.00 0.54 +condottieres condottiere nom m p 0.00 0.61 0.00 0.07 +condottieri condottieri nom m p 0.00 0.07 0.00 0.07 +condé condé nom m s 0.10 6.49 0.05 2.64 +conductance conductance nom f s 0.03 0.00 0.03 0.00 +conducteur conducteur nom m s 10.91 15.14 8.67 11.08 +conducteurs conducteur nom m p 10.91 15.14 1.66 3.24 +conductibilité conductibilité nom f s 0.01 0.00 0.01 0.00 +conduction conduction nom f s 0.07 0.00 0.07 0.00 +conductivité conductivité nom f s 0.02 0.00 0.02 0.00 +conductrice conducteur nom f s 10.91 15.14 0.58 0.61 +conductrices conductrice nom f p 0.03 0.00 0.03 0.00 +conduira conduire ver 169.61 144.66 3.67 2.03 ind:fut:3s; +conduirai conduire ver 169.61 144.66 2.53 0.68 ind:fut:1s; +conduiraient conduire ver 169.61 144.66 0.01 0.47 cnd:pre:3p; +conduirais conduire ver 169.61 144.66 0.59 0.07 cnd:pre:1s;cnd:pre:2s; +conduirait conduire ver 169.61 144.66 0.62 2.30 cnd:pre:3s; +conduiras conduire ver 169.61 144.66 0.61 0.20 ind:fut:2s; +conduire conduire ver 169.61 144.66 60.52 40.27 imp:pre:2p;inf; +conduirez conduire ver 169.61 144.66 0.44 0.14 ind:fut:2p; +conduiriez conduire ver 169.61 144.66 0.10 0.00 cnd:pre:2p; +conduirons conduire ver 169.61 144.66 0.22 0.14 ind:fut:1p; +conduiront conduire ver 169.61 144.66 1.26 0.34 ind:fut:3p; +conduis conduire ver 169.61 144.66 29.82 3.58 imp:pre:2s;ind:pre:1s;ind:pre:2s; +conduisît conduire ver 169.61 144.66 0.00 0.47 sub:imp:3s; +conduisaient conduire ver 169.61 144.66 0.51 2.43 ind:imp:3p; +conduisais conduire ver 169.61 144.66 2.58 1.28 ind:imp:1s;ind:imp:2s; +conduisait conduire ver 169.61 144.66 6.37 20.41 ind:imp:3s; +conduisant conduire ver 169.61 144.66 1.73 7.36 par:pre; +conduise conduire ver 169.61 144.66 2.82 1.62 sub:pre:1s;sub:pre:3s; +conduisent conduire ver 169.61 144.66 2.90 3.31 ind:pre:3p; +conduises conduire ver 169.61 144.66 0.77 0.07 sub:pre:2s; +conduisez conduire ver 169.61 144.66 8.11 0.68 imp:pre:2p;ind:pre:2p; +conduisiez conduire ver 169.61 144.66 0.63 0.07 ind:imp:2p; +conduisions conduire ver 169.61 144.66 0.04 0.20 ind:imp:1p; +conduisirent conduire ver 169.61 144.66 0.15 1.01 ind:pas:3p; +conduisis conduire ver 169.61 144.66 0.02 0.68 ind:pas:1s; +conduisit conduire ver 169.61 144.66 0.72 7.77 ind:pas:3s; +conduisons conduire ver 169.61 144.66 0.22 0.14 imp:pre:1p;ind:pre:1p; +conduit conduire ver m s 169.61 144.66 34.51 33.45 ind:pre:3s;par:pas; +conduite_intérieure conduite_intérieure nom f s 0.00 0.27 0.00 0.27 +conduite conduite nom f s 19.20 26.76 18.75 25.34 +conduites conduite nom f p 19.20 26.76 0.44 1.42 +conduits conduire ver m p 169.61 144.66 2.61 5.47 par:pas; +condés condé nom m p 0.10 6.49 0.05 3.85 +condyle condyle nom m s 0.01 0.14 0.01 0.07 +condyles condyle nom m p 0.01 0.14 0.00 0.07 +confabulaient confabuler ver 0.00 0.14 0.00 0.14 ind:imp:3p; +confection confection nom f s 0.61 3.51 0.61 3.51 +confectionna confectionner ver 0.66 10.00 0.00 0.74 ind:pas:3s; +confectionnai confectionner ver 0.66 10.00 0.00 0.20 ind:pas:1s; +confectionnaient confectionner ver 0.66 10.00 0.00 0.41 ind:imp:3p; +confectionnais confectionner ver 0.66 10.00 0.01 0.07 ind:imp:1s; +confectionnait confectionner ver 0.66 10.00 0.01 2.09 ind:imp:3s; +confectionne confectionner ver 0.66 10.00 0.02 0.88 ind:pre:1s;ind:pre:3s; +confectionner confectionner ver 0.66 10.00 0.04 2.70 inf; +confectionnerai confectionner ver 0.66 10.00 0.01 0.07 ind:fut:1s; +confectionnerais confectionner ver 0.66 10.00 0.00 0.07 cnd:pre:1s; +confectionnerait confectionner ver 0.66 10.00 0.00 0.07 cnd:pre:3s; +confectionneur confectionneur nom m s 0.14 0.47 0.14 0.14 +confectionneurs confectionneur nom m p 0.14 0.47 0.00 0.20 +confectionneuse confectionneur nom f s 0.14 0.47 0.00 0.07 +confectionneuses confectionneur nom f p 0.14 0.47 0.00 0.07 +confectionnez confectionner ver 0.66 10.00 0.02 0.07 imp:pre:2p;ind:pre:2p; +confectionnions confectionner ver 0.66 10.00 0.00 0.14 ind:imp:1p; +confectionnâmes confectionner ver 0.66 10.00 0.00 0.07 ind:pas:1p; +confectionnât confectionner ver 0.66 10.00 0.00 0.07 sub:imp:3s; +confectionnèrent confectionner ver 0.66 10.00 0.01 0.07 ind:pas:3p; +confectionné confectionner ver m s 0.66 10.00 0.49 1.35 par:pas; +confectionnée confectionner ver f s 0.66 10.00 0.02 0.47 par:pas; +confectionnées confectionner ver f p 0.66 10.00 0.01 0.27 par:pas; +confectionnés confectionner ver m p 0.66 10.00 0.01 0.20 par:pas; +confessa confesser ver 16.05 10.20 0.16 0.07 ind:pas:3s; +confessai confesser ver 16.05 10.20 0.00 0.07 ind:pas:1s; +confessaient confesser ver 16.05 10.20 0.14 0.07 ind:imp:3p; +confessais confesser ver 16.05 10.20 0.19 0.14 ind:imp:1s;ind:imp:2s; +confessait confesser ver 16.05 10.20 0.15 0.74 ind:imp:3s; +confessant confesser ver 16.05 10.20 0.04 0.34 par:pre; +confesse confesser ver 16.05 10.20 3.05 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confessent confesser ver 16.05 10.20 0.06 0.34 ind:pre:3p; +confesser confesser ver 16.05 10.20 8.09 4.32 inf; +confesserai confesser ver 16.05 10.20 0.26 0.07 ind:fut:1s; +confesserait confesser ver 16.05 10.20 0.00 0.20 cnd:pre:3s; +confesseras confesser ver 16.05 10.20 0.00 0.07 ind:fut:2s; +confesserez confesser ver 16.05 10.20 0.01 0.00 ind:fut:2p; +confesseur confesseur nom m s 1.86 2.70 1.63 2.16 +confesseurs confesseur nom m p 1.86 2.70 0.23 0.54 +confessez confesser ver 16.05 10.20 1.21 0.00 imp:pre:2p;ind:pre:2p; +confessiez confesser ver 16.05 10.20 0.02 0.07 ind:imp:2p; +confession confession nom f s 12.84 10.00 10.78 7.77 +confessionnal confessionnal nom m s 1.40 1.89 1.29 1.82 +confessionnaux confessionnal nom m p 1.40 1.89 0.10 0.07 +confessionnel confessionnel adj m s 0.12 0.34 0.01 0.14 +confessionnelle confessionnel adj f s 0.12 0.34 0.11 0.14 +confessionnels confessionnel adj m p 0.12 0.34 0.00 0.07 +confessions confession nom f p 12.84 10.00 2.05 2.23 +confessons confesser ver 16.05 10.20 0.04 0.07 imp:pre:1p;ind:pre:1p; +confessé confesser ver m s 16.05 10.20 2.04 1.42 par:pas; +confessée confesser ver f s 16.05 10.20 0.26 0.27 par:pas; +confessés confesser ver m p 16.05 10.20 0.34 0.07 par:pas; +confetti confetti nom m s 1.08 3.78 0.04 1.49 +confettis confetti nom m p 1.08 3.78 1.04 2.30 +confia confier ver 41.48 69.53 0.51 9.73 ind:pas:3s; +confiai confier ver 41.48 69.53 0.00 0.61 ind:pas:1s; +confiaient confier ver 41.48 69.53 0.16 0.74 ind:imp:3p; +confiais confier ver 41.48 69.53 0.10 0.34 ind:imp:1s;ind:imp:2s; +confiait confier ver 41.48 69.53 0.43 5.81 ind:imp:3s; +confiance confiance nom f s 162.90 91.96 162.88 91.76 +confiances confiance nom f p 162.90 91.96 0.03 0.20 +confiant confiant adj m s 4.14 10.34 2.46 4.73 +confiante confiant adj f s 4.14 10.34 1.26 3.45 +confiantes confiant adj f p 4.14 10.34 0.06 0.47 +confiants confiant adj m p 4.14 10.34 0.36 1.69 +confidence confidence nom f s 3.28 24.53 2.23 10.14 +confidences confidence nom f p 3.28 24.53 1.04 14.39 +confident confident nom m s 1.28 5.54 0.80 3.18 +confidente confident nom f s 1.28 5.54 0.23 1.55 +confidentes confident nom f p 1.28 5.54 0.00 0.41 +confidentialité confidentialité nom f s 1.31 0.00 1.31 0.00 +confidentiel confidentiel adj m s 9.57 4.73 5.68 2.77 +confidentielle confidentiel adj f s 9.57 4.73 1.72 0.88 +confidentiellement confidentiellement adv 0.37 0.41 0.37 0.41 +confidentielles confidentiel adj f p 9.57 4.73 0.84 0.68 +confidentiels confidentiel adj m p 9.57 4.73 1.33 0.41 +confidents confident nom m p 1.28 5.54 0.26 0.41 +confie confier ver 41.48 69.53 8.29 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confient confier ver 41.48 69.53 0.38 0.81 ind:pre:3p; +confier confier ver 41.48 69.53 11.59 16.62 ind:pre:2p;inf; +confiera confier ver 41.48 69.53 0.24 0.27 ind:fut:3s; +confierai confier ver 41.48 69.53 0.31 0.54 ind:fut:1s; +confieraient confier ver 41.48 69.53 0.01 0.14 cnd:pre:3p; +confierais confier ver 41.48 69.53 0.27 0.07 cnd:pre:1s; +confierait confier ver 41.48 69.53 0.23 0.95 cnd:pre:3s; +confieras confier ver 41.48 69.53 0.10 0.00 ind:fut:2s; +confierez confier ver 41.48 69.53 0.04 0.07 ind:fut:2p; +confieriez confier ver 41.48 69.53 0.04 0.07 cnd:pre:2p; +confiez confier ver 41.48 69.53 1.15 0.88 imp:pre:2p;ind:pre:2p; +configuration configuration nom f s 1.15 1.55 1.00 1.55 +configurations configuration nom f p 1.15 1.55 0.15 0.00 +configure configurer ver 0.18 0.00 0.05 0.00 imp:pre:2s;ind:pre:1s; +configurer configurer ver 0.18 0.00 0.07 0.00 inf; +configuré configurer ver m s 0.18 0.00 0.07 0.00 par:pas; +confiions confier ver 41.48 69.53 0.00 0.07 ind:imp:1p; +confina confiner ver 1.83 5.34 0.00 0.07 ind:pas:3s; +confinaient confiner ver 1.83 5.34 0.00 0.54 ind:imp:3p; +confinait confiner ver 1.83 5.34 0.00 0.68 ind:imp:3s; +confinant confiner ver 1.83 5.34 0.01 0.20 par:pre; +confine confiner ver 1.83 5.34 0.20 0.61 ind:pre:3s; +confinement confinement nom m s 1.01 0.34 1.01 0.34 +confinent confiner ver 1.83 5.34 0.00 0.20 ind:pre:3p; +confiner confiner ver 1.83 5.34 0.23 0.34 inf; +confinerez confiner ver 1.83 5.34 0.01 0.00 ind:fut:2p; +confins confins nom m p 1.66 7.30 1.66 7.30 +confiné confiner ver m s 1.83 5.34 0.78 1.08 par:pas; +confinée confiner ver f s 1.83 5.34 0.20 0.88 par:pas; +confinées confiner ver f p 1.83 5.34 0.02 0.20 par:pas; +confinés confiner ver m p 1.83 5.34 0.38 0.54 par:pas; +confiâmes confier ver 41.48 69.53 0.00 0.07 ind:pas:1p; +confions confier ver 41.48 69.53 0.89 0.14 imp:pre:1p;ind:pre:1p; +confiât confier ver 41.48 69.53 0.00 0.47 sub:imp:3s; +confiote confiote nom f s 0.02 0.20 0.02 0.14 +confiotes confiote nom f p 0.02 0.20 0.00 0.07 +confire confire ver 0.30 0.95 0.01 0.00 inf; +confirma confirmer ver 33.80 27.57 0.06 3.45 ind:pas:3s; +confirmai confirmer ver 33.80 27.57 0.00 0.54 ind:pas:1s; +confirmaient confirmer ver 33.80 27.57 0.17 0.74 ind:imp:3p; +confirmais confirmer ver 33.80 27.57 0.01 0.14 ind:imp:1s; +confirmait confirmer ver 33.80 27.57 0.05 2.57 ind:imp:3s; +confirmant confirmer ver 33.80 27.57 0.50 1.08 par:pre; +confirmation confirmation nom f s 5.55 5.27 5.15 5.14 +confirmations confirmation nom f p 5.55 5.27 0.40 0.14 +confirme confirmer ver 33.80 27.57 9.27 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confirment confirmer ver 33.80 27.57 1.75 0.68 ind:pre:3p; +confirmer confirmer ver 33.80 27.57 7.26 6.96 ind:pre:2p;inf; +confirmera confirmer ver 33.80 27.57 1.35 0.27 ind:fut:3s; +confirmerai confirmer ver 33.80 27.57 0.11 0.07 ind:fut:1s; +confirmeraient confirmer ver 33.80 27.57 0.03 0.00 cnd:pre:3p; +confirmerait confirmer ver 33.80 27.57 0.17 0.68 cnd:pre:3s; +confirmerez confirmer ver 33.80 27.57 0.05 0.00 ind:fut:2p; +confirmeront confirmer ver 33.80 27.57 0.38 0.14 ind:fut:3p; +confirmes confirmer ver 33.80 27.57 0.31 0.07 ind:pre:2s; +confirmez confirmer ver 33.80 27.57 2.63 0.00 imp:pre:2p;ind:pre:2p; +confirmions confirmer ver 33.80 27.57 0.01 0.07 ind:imp:1p; +confirmâmes confirmer ver 33.80 27.57 0.10 0.00 ind:pas:1p; +confirmons confirmer ver 33.80 27.57 0.31 0.00 imp:pre:1p;ind:pre:1p; +confirmât confirmer ver 33.80 27.57 0.00 0.20 sub:imp:3s; +confirmèrent confirmer ver 33.80 27.57 0.01 0.61 ind:pas:3p; +confirmé confirmer ver m s 33.80 27.57 7.73 3.92 par:pas; +confirmée confirmé adj f s 3.84 1.28 1.04 0.27 +confirmées confirmer ver f p 33.80 27.57 0.40 0.14 par:pas; +confirmés confirmé adj m p 3.84 1.28 0.40 0.14 +confiscation confiscation nom f s 0.47 0.81 0.41 0.74 +confiscations confiscation nom f p 0.47 0.81 0.05 0.07 +confiserie confiserie nom f s 1.56 1.69 0.91 0.95 +confiseries confiserie nom f p 1.56 1.69 0.66 0.74 +confiseur confiseur nom m s 0.27 1.15 0.22 0.54 +confiseurs confiseur nom m p 0.27 1.15 0.04 0.61 +confiseuse confiseur nom f s 0.27 1.15 0.01 0.00 +confisqua confisquer ver 5.92 3.58 0.02 0.34 ind:pas:3s; +confisquaient confisquer ver 5.92 3.58 0.01 0.07 ind:imp:3p; +confisquait confisquer ver 5.92 3.58 0.01 0.47 ind:imp:3s; +confisquant confisquer ver 5.92 3.58 0.01 0.14 par:pre; +confisque confisquer ver 5.92 3.58 1.11 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confisquent confisquer ver 5.92 3.58 0.20 0.14 ind:pre:3p; +confisquer confisquer ver 5.92 3.58 1.03 0.54 inf; +confisquera confisquer ver 5.92 3.58 0.01 0.07 ind:fut:3s; +confisquerai confisquer ver 5.92 3.58 0.03 0.00 ind:fut:1s; +confisqueraient confisquer ver 5.92 3.58 0.01 0.00 cnd:pre:3p; +confisquerait confisquer ver 5.92 3.58 0.01 0.00 cnd:pre:3s; +confisquerons confisquer ver 5.92 3.58 0.34 0.00 ind:fut:1p; +confisqueront confisquer ver 5.92 3.58 0.03 0.00 ind:fut:3p; +confisquez confisquer ver 5.92 3.58 0.16 0.00 imp:pre:2p;ind:pre:2p; +confisquons confisquer ver 5.92 3.58 0.02 0.00 ind:pre:1p; +confisquât confisquer ver 5.92 3.58 0.00 0.07 sub:imp:3s; +confisquèrent confisquer ver 5.92 3.58 0.00 0.07 ind:pas:3p; +confisqué confisquer ver m s 5.92 3.58 2.06 0.68 par:pas; +confisquée confisquer ver f s 5.92 3.58 0.36 0.41 par:pas; +confisquées confisquer ver f p 5.92 3.58 0.19 0.27 par:pas; +confisqués confisquer ver m p 5.92 3.58 0.30 0.20 par:pas; +confit confit adj m s 0.71 2.43 0.25 0.20 +confite confit adj f s 0.71 2.43 0.15 0.34 +confiteor confiteor nom m 0.00 0.41 0.00 0.41 +confites confit adj f p 0.71 2.43 0.17 0.34 +confièrent confier ver 41.48 69.53 0.11 0.47 ind:pas:3p; +confits confit adj m p 0.71 2.43 0.15 1.55 +confiture confiture nom f s 7.41 15.41 6.71 8.72 +confitures confiture nom f p 7.41 15.41 0.70 6.69 +confituriers confiturier nom m p 0.01 0.14 0.00 0.14 +confiturière confiturier nom f s 0.01 0.14 0.01 0.00 +confié confier ver m s 41.48 69.53 10.71 15.00 par:pas; +confiée confier ver f s 41.48 69.53 3.38 4.19 par:pas; +confiées confier ver f p 41.48 69.53 0.69 0.68 par:pas; +confiés confier ver m p 41.48 69.53 0.92 0.95 par:pas; +conflagration conflagration nom f s 0.00 0.41 0.00 0.41 +conflictuel conflictuel adj m s 0.70 0.00 0.18 0.00 +conflictuelle conflictuel adj f s 0.70 0.00 0.33 0.00 +conflictuelles conflictuel adj f p 0.70 0.00 0.06 0.00 +conflictuels conflictuel adj m p 0.70 0.00 0.13 0.00 +conflit conflit nom m s 13.79 14.12 9.63 11.08 +conflits conflit nom m p 13.79 14.12 4.16 3.04 +confluaient confluer ver 0.07 0.68 0.00 0.14 ind:imp:3p; +confluait confluer ver 0.07 0.68 0.00 0.14 ind:imp:3s; +confluant confluer ver 0.07 0.68 0.00 0.07 par:pre; +conflue confluer ver 0.07 0.68 0.01 0.07 ind:pre:3s; +confluence confluence nom f s 0.27 0.27 0.27 0.27 +confluent confluent nom m s 0.21 0.88 0.21 0.81 +confluents confluent nom m p 0.21 0.88 0.00 0.07 +confluer confluer ver 0.07 0.68 0.05 0.14 inf; +conflué confluer ver m s 0.07 0.68 0.00 0.07 par:pas; +confond confondre ver 16.09 53.85 2.09 5.47 ind:pre:3s; +confondît confondre ver 16.09 53.85 0.00 0.14 sub:imp:3s; +confondaient confondre ver 16.09 53.85 0.05 4.73 ind:imp:3p; +confondais confondre ver 16.09 53.85 0.16 0.81 ind:imp:1s;ind:imp:2s; +confondait confondre ver 16.09 53.85 0.21 8.58 ind:imp:3s; +confondant confondre ver 16.09 53.85 0.03 2.23 par:pre; +confondante confondant adj f s 0.01 0.95 0.01 0.14 +confondantes confondant adj f p 0.01 0.95 0.00 0.20 +confondants confondant adj m p 0.01 0.95 0.00 0.20 +confonde confondre ver 16.09 53.85 0.22 0.68 sub:pre:1s;sub:pre:3s; +confondent confondre ver 16.09 53.85 1.01 4.19 ind:pre:3p; +confondez confondre ver 16.09 53.85 0.89 0.74 imp:pre:2p;ind:pre:2p; +confondions confondre ver 16.09 53.85 0.00 0.47 ind:imp:1p; +confondirent confondre ver 16.09 53.85 0.00 0.41 ind:pas:3p; +confondis confondre ver 16.09 53.85 0.00 0.14 ind:pas:1s; +confondit confondre ver 16.09 53.85 0.04 1.08 ind:pas:3s; +confondons confondre ver 16.09 53.85 0.16 0.27 imp:pre:1p; +confondra confondre ver 16.09 53.85 0.20 0.34 ind:fut:3s; +confondrai confondre ver 16.09 53.85 0.01 0.00 ind:fut:1s; +confondrais confondre ver 16.09 53.85 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +confondrait confondre ver 16.09 53.85 0.41 0.27 cnd:pre:3s; +confondre confondre ver 16.09 53.85 4.83 13.18 inf; +confondrez confondre ver 16.09 53.85 0.01 0.07 ind:fut:2p; +confondront confondre ver 16.09 53.85 0.31 0.14 ind:fut:3p; +confonds confondre ver 16.09 53.85 2.50 1.82 imp:pre:2s;ind:pre:1s;ind:pre:2s; +confondu confondre ver m s 16.09 53.85 2.50 3.65 par:pas; +confondue confondre ver f s 16.09 53.85 0.32 1.62 par:pas; +confondues confondu adj f p 0.30 3.85 0.06 1.42 +confondus confondu adj m p 0.30 3.85 0.21 1.69 +conformai conformer ver 1.62 5.00 0.00 0.07 ind:pas:1s; +conformaient conformer ver 1.62 5.00 0.00 0.07 ind:imp:3p; +conformais conformer ver 1.62 5.00 0.00 0.14 ind:imp:1s; +conformait conformer ver 1.62 5.00 0.01 0.54 ind:imp:3s; +conformant conformer ver 1.62 5.00 0.25 0.41 par:pre; +conformation conformation nom f s 0.01 0.27 0.01 0.27 +conforme conforme adj s 2.07 10.20 1.63 8.18 +conforment conformer ver 1.62 5.00 0.13 0.20 ind:pre:3p; +conformer conformer ver 1.62 5.00 0.60 2.16 inf; +conformera conformer ver 1.62 5.00 0.06 0.00 ind:fut:3s; +conformerai conformer ver 1.62 5.00 0.15 0.00 ind:fut:1s; +conformeraient conformer ver 1.62 5.00 0.00 0.07 cnd:pre:3p; +conformerez conformer ver 1.62 5.00 0.01 0.00 ind:fut:2p; +conformes conforme adj p 2.07 10.20 0.44 2.03 +conformisme conformisme nom m s 1.22 3.31 1.22 3.24 +conformismes conformisme nom m p 1.22 3.31 0.00 0.07 +conformiste conformiste nom s 0.42 0.95 0.32 0.47 +conformistes conformiste nom p 0.42 0.95 0.10 0.47 +conformité conformité nom f s 0.52 1.22 0.52 1.22 +conformât conformer ver 1.62 5.00 0.00 0.20 sub:imp:3s; +conformé conformer ver m s 1.62 5.00 0.04 0.14 par:pas; +conformée conformer ver f s 1.62 5.00 0.01 0.07 par:pas; +conformément conformément adv 3.09 4.26 3.09 4.26 +confort confort nom m s 6.02 17.03 5.97 16.62 +conforta conforter ver 0.47 1.82 0.00 0.14 ind:pas:3s; +confortable confortable adj s 13.78 15.20 12.04 12.30 +confortablement confortablement adv 1.54 3.24 1.54 3.24 +confortables confortable adj p 13.78 15.20 1.74 2.91 +confortaient conforter ver 0.47 1.82 0.00 0.07 ind:imp:3p; +confortait conforter ver 0.47 1.82 0.00 0.07 ind:imp:3s; +confortant conforter ver 0.47 1.82 0.01 0.00 par:pre; +conforte conforter ver 0.47 1.82 0.16 0.14 ind:pre:1s;ind:pre:3s; +conforter conforter ver 0.47 1.82 0.23 0.61 inf; +conforterait conforter ver 0.47 1.82 0.01 0.07 cnd:pre:3s; +conforts confort nom m p 6.02 17.03 0.05 0.41 +conforté conforter ver m s 0.47 1.82 0.05 0.41 par:pas; +confortée conforter ver f s 0.47 1.82 0.01 0.34 par:pas; +confraternel confraternel adj m s 0.01 0.41 0.01 0.14 +confraternelle confraternel adj f s 0.01 0.41 0.00 0.07 +confraternellement confraternellement adv 0.00 0.07 0.00 0.07 +confraternelles confraternel adj f p 0.01 0.41 0.00 0.14 +confraternels confraternel adj m p 0.01 0.41 0.00 0.07 +confraternité confraternité nom f s 0.00 0.07 0.00 0.07 +confrontai confronter ver 8.14 5.41 0.00 0.07 ind:pas:1s; +confrontaient confronter ver 8.14 5.41 0.00 0.14 ind:imp:3p; +confrontais confronter ver 8.14 5.41 0.01 0.14 ind:imp:1s; +confrontait confronter ver 8.14 5.41 0.01 0.14 ind:imp:3s; +confrontant confronter ver 8.14 5.41 0.05 0.27 par:pre; +confrontation confrontation nom f s 2.44 3.45 2.12 2.84 +confrontations confrontation nom f p 2.44 3.45 0.32 0.61 +confronte confronter ver 8.14 5.41 0.59 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confrontent confronter ver 8.14 5.41 0.16 0.20 ind:pre:3p; +confronter confronter ver 8.14 5.41 2.11 1.35 inf; +confrontez confronter ver 8.14 5.41 0.08 0.00 imp:pre:2p;ind:pre:2p; +confrontons confronter ver 8.14 5.41 0.06 0.00 imp:pre:1p;ind:pre:1p; +confrontèrent confronter ver 8.14 5.41 0.00 0.07 ind:pas:3p; +confronté confronter ver m s 8.14 5.41 2.76 1.28 par:pas; +confrontée confronter ver f s 8.14 5.41 0.69 0.61 par:pas; +confrontées confronter ver f p 8.14 5.41 0.19 0.27 par:pas; +confrontés confronter ver m p 8.14 5.41 1.43 0.68 par:pas; +confrère confrère nom m s 3.98 11.28 2.76 5.00 +confrères confrère nom m p 3.98 11.28 1.22 6.28 +confrérie confrérie nom f s 3.02 1.69 2.86 1.49 +confréries confrérie nom f p 3.02 1.69 0.16 0.20 +confère conférer ver 2.99 13.18 0.78 3.11 ind:pre:1s;ind:pre:3s; +confèrent conférer ver 2.99 13.18 0.17 0.54 ind:pre:3p; +confucianisme confucianisme nom m s 0.02 0.14 0.02 0.14 +confucéenne confucéen adj f s 0.00 0.07 0.00 0.07 +confédéral confédéral adj m s 0.00 0.14 0.00 0.07 +confédération confédération nom f s 0.56 1.15 0.56 1.15 +confédéraux confédéral adj m p 0.00 0.14 0.00 0.07 +confédérer confédérer ver 0.03 0.07 0.00 0.07 inf; +confédéré confédéré adj m s 0.79 0.00 0.36 0.00 +confédérée confédéré adj f s 0.79 0.00 0.11 0.00 +confédérés confédéré nom m p 0.95 0.07 0.86 0.07 +conféra conférer ver 2.99 13.18 0.00 0.14 ind:pas:3s; +conféraient conférer ver 2.99 13.18 0.00 0.81 ind:imp:3p; +conférais conférer ver 2.99 13.18 0.00 0.07 ind:imp:1s; +conférait conférer ver 2.99 13.18 0.04 3.24 ind:imp:3s; +conférant conférer ver 2.99 13.18 0.03 0.95 par:pre; +conférence conférence nom f s 19.86 22.03 17.37 16.28 +conférences_débat conférences_débat nom f p 0.00 0.07 0.00 0.07 +conférences conférence nom f p 19.86 22.03 2.49 5.74 +conférencier conférencier nom m s 0.43 0.95 0.26 0.61 +conférenciers conférencier nom m p 0.43 0.95 0.15 0.34 +conférencière conférencier nom f s 0.43 0.95 0.03 0.00 +conférents conférent nom m p 0.00 0.07 0.00 0.07 +conférer conférer ver 2.99 13.18 0.09 2.30 inf; +conférera conférer ver 2.99 13.18 0.01 0.07 ind:fut:3s; +conféreraient conférer ver 2.99 13.18 0.00 0.07 cnd:pre:3p; +conférerait conférer ver 2.99 13.18 0.00 0.14 cnd:pre:3s; +conférerez conférer ver 2.99 13.18 0.00 0.07 ind:fut:2p; +conféreront conférer ver 2.99 13.18 0.01 0.07 ind:fut:3p; +conférez conférer ver 2.99 13.18 0.01 0.00 ind:pre:2p; +conférât conférer ver 2.99 13.18 0.00 0.07 sub:imp:3s; +conférèrent conférer ver 2.99 13.18 0.00 0.07 ind:pas:3p; +conféré conférer ver m s 2.99 13.18 0.22 0.95 par:pas; +conférée conférer ver f s 2.99 13.18 0.18 0.27 par:pas; +conférées conférer ver f p 2.99 13.18 0.01 0.07 par:pas; +conférés conférer ver m p 2.99 13.18 1.45 0.20 par:pas; +confus confus adj m 11.02 37.23 7.48 19.86 +confuse confus adj f s 11.02 37.23 2.76 12.70 +confuses confus adj f p 11.02 37.23 0.77 4.66 +confusion confusion nom f s 8.53 20.61 8.12 20.07 +confusionnisme confusionnisme nom m s 0.01 0.07 0.01 0.07 +confusions confusion nom f p 8.53 20.61 0.41 0.54 +confusément confusément adv 0.03 10.00 0.03 10.00 +conga conga nom f s 0.20 0.07 0.14 0.07 +congaïs congaï nom f p 0.00 0.07 0.00 0.07 +congas conga nom f p 0.20 0.07 0.06 0.00 +congayes congaye nom f p 0.00 0.07 0.00 0.07 +congela congeler ver 3.85 0.74 0.02 0.00 ind:pas:3s; +congelait congeler ver 3.85 0.74 0.01 0.00 ind:imp:3s; +congelant congeler ver 3.85 0.74 0.01 0.00 par:pre; +congeler congeler ver 3.85 0.74 1.12 0.14 inf; +congelez congeler ver 3.85 0.74 0.04 0.00 imp:pre:2p;ind:pre:2p; +congelons congeler ver 3.85 0.74 0.16 0.00 ind:pre:1p; +congelé congelé adj m s 1.87 0.68 1.16 0.27 +congelée congeler ver f s 3.85 0.74 0.57 0.14 par:pas; +congelées congelé adj f p 1.87 0.68 0.23 0.07 +congelés congelé adj m p 1.87 0.68 0.31 0.27 +congestif congestif adj m s 0.07 0.00 0.03 0.00 +congestion congestion nom f s 1.10 1.76 1.08 1.69 +congestionnaient congestionner ver 0.16 1.42 0.00 0.07 ind:imp:3p; +congestionnait congestionner ver 0.16 1.42 0.00 0.20 ind:imp:3s; +congestionne congestionner ver 0.16 1.42 0.01 0.07 ind:pre:3s; +congestionnent congestionner ver 0.16 1.42 0.11 0.00 ind:pre:3p; +congestionné congestionner ver m s 0.16 1.42 0.03 0.74 par:pas; +congestionnée congestionné adj f s 0.10 2.43 0.04 0.27 +congestionnées congestionné adj f p 0.10 2.43 0.04 0.20 +congestionnés congestionné adj m p 0.10 2.43 0.01 0.54 +congestions congestion nom f p 1.10 1.76 0.03 0.07 +congestive congestif adj f s 0.07 0.00 0.04 0.00 +conglobation conglobation nom f s 0.00 0.07 0.00 0.07 +conglomérat conglomérat nom m s 0.44 0.54 0.38 0.41 +conglomérats conglomérat nom m p 0.44 0.54 0.06 0.14 +conglomérée conglomérer ver f s 0.00 0.07 0.00 0.07 par:pas; +congolais congolais adj m 0.30 0.20 0.28 0.07 +congolaise congolais adj f s 0.30 0.20 0.01 0.14 +congrûment congrûment adv 0.00 0.07 0.00 0.07 +congratula congratuler ver 0.19 2.30 0.00 0.07 ind:pas:3s; +congratulaient congratuler ver 0.19 2.30 0.00 0.41 ind:imp:3p; +congratulait congratuler ver 0.19 2.30 0.00 0.47 ind:imp:3s; +congratulant congratuler ver 0.19 2.30 0.00 0.07 par:pre; +congratulations congratulation nom f p 0.09 0.41 0.09 0.41 +congratule congratuler ver 0.19 2.30 0.01 0.14 ind:pre:3s; +congratulent congratuler ver 0.19 2.30 0.00 0.27 ind:pre:3p; +congratuler congratuler ver 0.19 2.30 0.17 0.47 inf; +congratulions congratuler ver 0.19 2.30 0.00 0.07 ind:imp:1p; +congratulâmes congratuler ver 0.19 2.30 0.00 0.07 ind:pas:1p; +congratulèrent congratuler ver 0.19 2.30 0.00 0.14 ind:pas:3p; +congratulé congratuler ver m s 0.19 2.30 0.01 0.07 par:pas; +congratulés congratuler ver m p 0.19 2.30 0.00 0.07 par:pas; +congre congre nom m s 0.44 0.20 0.01 0.14 +congres congre nom m p 0.44 0.20 0.43 0.07 +congressistes congressiste nom p 0.04 0.20 0.04 0.20 +congrès congrès nom m 15.77 8.78 15.77 8.78 +congrue congru adj f s 0.00 0.34 0.00 0.34 +congréganiste congréganiste nom s 0.00 0.07 0.00 0.07 +congrégation congrégation nom f s 1.34 0.61 1.33 0.34 +congrégationaliste congrégationaliste adj f s 0.01 0.00 0.01 0.00 +congrégations congrégation nom f p 1.34 0.61 0.01 0.27 +congèle congeler ver 3.85 0.74 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +congèlera congeler ver 3.85 0.74 0.11 0.00 ind:fut:3s; +congèlerais congeler ver 3.85 0.74 0.01 0.00 cnd:pre:1s; +congère congère nom f s 0.05 1.15 0.02 0.34 +congères congère nom f p 0.05 1.15 0.03 0.81 +congé congé nom m s 20.74 21.62 18.16 17.64 +congédia congédier ver 2.17 3.45 0.00 0.68 ind:pas:3s; +congédiai congédier ver 2.17 3.45 0.00 0.07 ind:pas:1s; +congédiait congédier ver 2.17 3.45 0.00 0.14 ind:imp:3s; +congédiant congédier ver 2.17 3.45 0.00 0.20 par:pre; +congédie congédier ver 2.17 3.45 0.38 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +congédiement congédiement nom m s 0.02 0.14 0.02 0.14 +congédient congédier ver 2.17 3.45 0.01 0.00 ind:pre:3p; +congédier congédier ver 2.17 3.45 0.68 0.81 inf; +congédiez congédier ver 2.17 3.45 0.08 0.00 imp:pre:2p;ind:pre:2p; +congédié congédier ver m s 2.17 3.45 0.69 0.68 par:pas; +congédiée congédier ver f s 2.17 3.45 0.26 0.00 par:pas; +congédiées congédier ver f p 2.17 3.45 0.00 0.07 par:pas; +congédiés congédier ver m p 2.17 3.45 0.07 0.14 par:pas; +congélateur congélateur nom m s 2.00 0.34 1.96 0.34 +congélateurs congélateur nom m p 2.00 0.34 0.04 0.00 +congélation congélation nom f s 0.49 0.47 0.49 0.47 +congénital congénital adj m s 0.82 1.96 0.34 0.61 +congénitale congénital adj f s 0.82 1.96 0.34 1.08 +congénitalement congénitalement adv 0.00 0.20 0.00 0.20 +congénitales congénital adj f p 0.82 1.96 0.13 0.14 +congénitaux congénital adj m p 0.82 1.96 0.02 0.14 +congénère congénère nom s 0.38 1.89 0.02 0.27 +congénères congénère nom p 0.38 1.89 0.36 1.62 +congés congé nom m p 20.74 21.62 2.58 3.99 +conifère conifère nom m s 0.15 0.81 0.02 0.07 +conifères conifère nom m p 0.15 0.81 0.13 0.74 +conique conique adj s 0.07 2.64 0.06 1.76 +coniques conique adj p 0.07 2.64 0.01 0.88 +conjecturai conjecturer ver 0.23 0.20 0.01 0.00 ind:pas:1s; +conjectural conjectural adj m s 0.01 0.07 0.00 0.07 +conjecturale conjectural adj f s 0.01 0.07 0.01 0.00 +conjecture conjecture nom f s 0.65 1.55 0.28 0.27 +conjecturent conjecturer ver 0.23 0.20 0.01 0.00 ind:pre:3p; +conjecturer conjecturer ver 0.23 0.20 0.14 0.20 inf; +conjectures conjecture nom f p 0.65 1.55 0.37 1.28 +conjoindre conjoindre ver 0.05 0.14 0.01 0.00 inf; +conjoint conjoint nom m s 0.98 1.76 0.55 1.08 +conjointe conjoint adj f s 0.48 0.95 0.30 0.68 +conjointement conjointement adv 0.23 1.35 0.23 1.35 +conjointes conjoint adj f p 0.48 0.95 0.06 0.07 +conjoints conjoint nom m p 0.98 1.76 0.41 0.54 +conjoncteur conjoncteur nom m s 0.01 0.00 0.01 0.00 +conjonctif conjonctif adj m s 0.11 0.07 0.09 0.00 +conjonction conjonction nom f s 0.41 2.43 0.41 1.96 +conjonctions conjonction nom f p 0.41 2.43 0.00 0.47 +conjonctive conjonctif adj f s 0.11 0.07 0.01 0.00 +conjonctive conjonctive nom f s 0.01 0.07 0.01 0.00 +conjonctives conjonctif adj f p 0.11 0.07 0.01 0.07 +conjonctivite conjonctivite nom f s 0.54 0.47 0.39 0.34 +conjonctivites conjonctivite nom f p 0.54 0.47 0.16 0.14 +conjoncture conjoncture nom f s 0.80 2.50 0.79 2.16 +conjonctures conjoncture nom f p 0.80 2.50 0.01 0.34 +conjugaison conjugaison nom f s 0.14 1.15 0.04 0.74 +conjugaisons conjugaison nom f p 0.14 1.15 0.10 0.41 +conjugal conjugal adj m s 4.88 9.59 1.42 4.46 +conjugale conjugal adj f s 4.88 9.59 2.08 3.18 +conjugalement conjugalement adv 0.00 0.07 0.00 0.07 +conjugales conjugal adj f p 4.88 9.59 0.67 1.08 +conjugalité conjugalité nom f s 0.00 0.27 0.00 0.27 +conjugaux conjugal adj m p 4.88 9.59 0.72 0.88 +conjuguaient conjuguer ver 0.59 5.74 0.00 0.20 ind:imp:3p; +conjuguait conjuguer ver 0.59 5.74 0.00 0.27 ind:imp:3s; +conjuguant conjuguer ver 0.59 5.74 0.00 0.07 par:pre; +conjugue conjuguer ver 0.59 5.74 0.27 0.20 imp:pre:2s;ind:pre:3s; +conjuguent conjuguer ver 0.59 5.74 0.00 0.54 ind:pre:3p; +conjuguer conjuguer ver 0.59 5.74 0.21 1.01 inf; +conjuguerions conjuguer ver 0.59 5.74 0.00 0.07 cnd:pre:1p; +conjugues conjuguer ver 0.59 5.74 0.00 0.14 ind:pre:2s; +conjugué conjugué adj m s 0.15 0.41 0.15 0.34 +conjuguée conjuguer ver f s 0.59 5.74 0.00 0.74 par:pas; +conjuguées conjuguer ver f p 0.59 5.74 0.00 0.68 par:pas; +conjugués conjuguer ver m p 0.59 5.74 0.12 1.08 par:pas; +conjungo conjungo nom m s 0.00 0.27 0.00 0.20 +conjungos conjungo nom m p 0.00 0.27 0.00 0.07 +conjura conjurer ver 5.88 6.35 0.00 0.20 ind:pas:3s; +conjurait conjurer ver 5.88 6.35 0.00 0.20 ind:imp:3s; +conjurant conjurer ver 5.88 6.35 0.02 0.07 par:pre; +conjurateur conjurateur nom m s 0.01 0.00 0.01 0.00 +conjuration conjuration nom f s 0.32 1.69 0.32 1.35 +conjurations conjuration nom f p 0.32 1.69 0.00 0.34 +conjuratoire conjuratoire adj f s 0.01 0.00 0.01 0.00 +conjure conjurer ver 5.88 6.35 5.01 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conjurer conjurer ver 5.88 6.35 0.49 3.78 inf; +conjurera conjurer ver 5.88 6.35 0.00 0.07 ind:fut:3s; +conjuré conjurer ver m s 5.88 6.35 0.21 0.27 par:pas; +conjurée conjuré nom f s 0.56 0.47 0.01 0.07 +conjurées conjurer ver f p 5.88 6.35 0.00 0.07 par:pas; +conjurés conjuré nom m p 0.56 0.47 0.55 0.34 +connûmes connaître ver 961.03 629.19 0.01 0.20 ind:pas:1p; +connût connaître ver 961.03 629.19 0.00 2.23 sub:imp:3s; +connaît connaître ver 961.03 629.19 103.42 57.03 ind:pre:3s; +connaîtra connaître ver 961.03 629.19 2.67 1.69 ind:fut:3s; +connaîtrai connaître ver 961.03 629.19 1.17 1.96 ind:fut:1s; +connaîtraient connaître ver 961.03 629.19 0.07 0.95 cnd:pre:3p; +connaîtrais connaître ver 961.03 629.19 1.54 1.62 cnd:pre:1s;cnd:pre:2s; +connaîtrait connaître ver 961.03 629.19 0.72 2.77 cnd:pre:3s; +connaîtras connaître ver 961.03 629.19 1.85 1.42 ind:fut:2s; +connaître connaître ver 961.03 629.19 88.63 90.07 inf;; +connaîtrez connaître ver 961.03 629.19 1.47 0.74 ind:fut:2p; +connaîtriez connaître ver 961.03 629.19 0.70 0.20 cnd:pre:2p; +connaîtrions connaître ver 961.03 629.19 0.03 0.14 cnd:pre:1p; +connaîtrons connaître ver 961.03 629.19 0.76 0.88 ind:fut:1p; +connaîtront connaître ver 961.03 629.19 0.81 0.74 ind:fut:3p; +connais connaître ver 961.03 629.19 415.87 111.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +connaissable connaissable adj m s 0.01 0.20 0.01 0.14 +connaissables connaissable adj p 0.01 0.20 0.00 0.07 +connaissaient connaître ver 961.03 629.19 5.23 16.08 ind:imp:3p; +connaissais connaître ver 961.03 629.19 34.19 41.82 ind:imp:1s;ind:imp:2s; +connaissait connaître ver 961.03 629.19 20.02 90.68 ind:imp:3s; +connaissance connaissance nom f s 43.08 67.50 36.60 55.81 +connaissances connaissance nom f p 43.08 67.50 6.47 11.69 +connaissant connaître ver 961.03 629.19 2.65 8.51 par:pre; +connaisse connaître ver 961.03 629.19 10.78 4.32 sub:pre:1s;sub:pre:3s; +connaissement connaissement nom m s 0.06 0.07 0.06 0.00 +connaissements connaissement nom m p 0.06 0.07 0.00 0.07 +connaissent connaître ver 961.03 629.19 18.32 16.89 ind:pre:3p; +connaisses connaître ver 961.03 629.19 1.90 0.74 sub:pre:2s; +connaisseur connaisseur nom m s 1.36 5.61 1.09 3.04 +connaisseurs connaisseur nom m p 1.36 5.61 0.24 1.76 +connaisseuse connaisseur nom f s 1.36 5.61 0.04 0.68 +connaisseuses connaisseur nom f p 1.36 5.61 0.00 0.14 +connaissez connaître ver 961.03 629.19 125.09 29.53 imp:pre:2p;ind:pre:2p; +connaissiez connaître ver 961.03 629.19 13.71 2.84 ind:imp:2p;sub:pre:2p; +connaissions connaître ver 961.03 629.19 1.40 5.61 ind:imp:1p; +connaissons connaître ver 961.03 629.19 11.78 6.89 imp:pre:1p;ind:pre:1p; +connard connard nom m s 50.13 6.28 40.70 4.53 +connards connard nom m p 50.13 6.28 9.44 1.76 +connasse connasse nom f s 5.29 2.03 5.10 1.55 +connasses connasse nom f p 5.29 2.03 0.20 0.47 +conne con nom f s 121.91 68.99 8.57 3.78 +conneau conneau nom m s 0.16 0.27 0.16 0.14 +conneaux conneau nom m p 0.16 0.27 0.00 0.14 +connectant connecter ver 8.88 0.54 0.15 0.00 par:pre; +connecte connecter ver 8.88 0.54 1.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +connectent connecter ver 8.88 0.54 0.05 0.00 ind:pre:3p; +connecter connecter ver 8.88 0.54 1.73 0.14 inf; +connectera connecter ver 8.88 0.54 0.01 0.00 ind:fut:3s; +connecteur connecteur nom m s 0.08 0.00 0.08 0.00 +connectez connecter ver 8.88 0.54 0.34 0.00 imp:pre:2p;ind:pre:2p; +connectiez connecter ver 8.88 0.54 0.01 0.00 ind:imp:2p; +connections connecter ver 8.88 0.54 0.75 0.14 ind:imp:1p; +connectivité connectivité nom f s 0.06 0.00 0.06 0.00 +connectons connecter ver 8.88 0.54 0.01 0.00 ind:pre:1p; +connecté connecter ver m s 8.88 0.54 3.15 0.07 par:pas; +connectée connecter ver f s 8.88 0.54 0.48 0.00 par:pas; +connectées connecter ver f p 8.88 0.54 0.18 0.07 par:pas; +connectés connecter ver m p 8.88 0.54 0.90 0.14 par:pas; +connement connement adv 0.00 1.28 0.00 1.28 +connerie connerie nom f s 95.42 29.73 19.68 12.50 +conneries connerie nom f p 95.42 29.73 75.75 17.23 +connes conne nom f p 0.71 0.00 0.71 0.00 +connexe connexe adj m s 0.00 0.20 0.00 0.14 +connexes connexe adj p 0.00 0.20 0.00 0.07 +connexion connexion nom f s 4.45 0.95 3.71 0.47 +connexions connexion nom f p 4.45 0.95 0.74 0.47 +connils connil nom m p 0.00 0.07 0.00 0.07 +connivence connivence nom f s 0.74 6.69 0.60 6.08 +connivences connivence nom f p 0.74 6.69 0.14 0.61 +connotation connotation nom f s 0.54 0.14 0.50 0.07 +connotations connotation nom f p 0.54 0.14 0.04 0.07 +connu connaître ver m s 961.03 629.19 70.33 84.53 par:pas; +connue connaître ver f s 961.03 629.19 13.32 17.77 par:pas; +connues connaître ver f p 961.03 629.19 2.03 5.34 par:pas; +connurent connaître ver 961.03 629.19 0.33 1.55 ind:pas:3p; +connus connaître ver m p 961.03 629.19 9.39 14.26 ind:pas:1s;ind:pas:2s;par:pas; +connusse connaître ver 961.03 629.19 0.00 0.34 sub:imp:1s; +connussent connaître ver 961.03 629.19 0.00 0.34 sub:imp:3p; +connusses connaître ver 961.03 629.19 0.00 0.07 sub:imp:2s; +connut connaître ver 961.03 629.19 0.84 7.09 ind:pas:3s; +connétable connétable nom m s 0.11 2.03 0.11 1.49 +connétables connétable nom m p 0.11 2.03 0.00 0.54 +conoïdaux conoïdal adj m p 0.00 0.07 0.00 0.07 +conoïde conoïde adj s 0.00 0.07 0.00 0.07 +conquît conquérir ver 14.89 17.64 0.00 0.14 sub:imp:3s; +conque conque nom f s 0.48 2.23 0.44 1.89 +conquerra conquérir ver 14.89 17.64 0.11 0.00 ind:fut:3s; +conquerraient conquérir ver 14.89 17.64 0.00 0.07 cnd:pre:3p; +conquerrons conquérir ver 14.89 17.64 0.02 0.00 ind:fut:1p; +conquerront conquérir ver 14.89 17.64 0.02 0.14 ind:fut:3p; +conques conque nom f p 0.48 2.23 0.04 0.34 +conquiers conquérir ver 14.89 17.64 0.13 0.07 imp:pre:2s;ind:pre:1s; +conquiert conquérir ver 14.89 17.64 0.49 0.68 ind:pre:3s; +conquirent conquérir ver 14.89 17.64 0.02 0.07 ind:pas:3p; +conquis conquérir ver m 14.89 17.64 5.40 7.97 par:pas; +conquise conquérir ver f s 14.89 17.64 0.77 0.95 par:pas; +conquises conquis adj f p 0.88 2.70 0.13 0.47 +conquistador conquistador nom m s 0.38 1.69 0.12 0.74 +conquistadores conquistador nom m p 0.38 1.69 0.01 0.54 +conquistadors conquistador nom m p 0.38 1.69 0.25 0.41 +conquit conquérir ver 14.89 17.64 0.29 0.81 ind:pas:3s; +conquière conquérir ver 14.89 17.64 0.02 0.07 sub:pre:1s;sub:pre:3s; +conquièrent conquérir ver 14.89 17.64 0.05 0.27 ind:pre:3p; +conquérait conquérir ver 14.89 17.64 0.01 0.07 ind:imp:3s; +conquérant conquérant nom m s 1.34 5.20 0.82 2.64 +conquérante conquérant adj f s 0.53 2.64 0.29 1.01 +conquérantes conquérant adj f p 0.53 2.64 0.00 0.27 +conquérants conquérant nom m p 1.34 5.20 0.52 2.36 +conquérez conquérir ver 14.89 17.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +conquérir conquérir ver 14.89 17.64 7.11 5.54 inf; +conquérons conquérir ver 14.89 17.64 0.01 0.07 ind:pre:1p; +conquête conquête nom f s 5.95 16.42 3.85 10.88 +conquêtes conquête nom f p 5.95 16.42 2.10 5.54 +cons con nom m p 121.91 68.99 19.90 19.05 +consacra consacrer ver 18.27 38.18 0.29 1.89 ind:pas:3s; +consacrai consacrer ver 18.27 38.18 0.01 0.34 ind:pas:1s; +consacraient consacrer ver 18.27 38.18 0.14 0.41 ind:imp:3p; +consacrais consacrer ver 18.27 38.18 0.04 0.41 ind:imp:1s;ind:imp:2s; +consacrait consacrer ver 18.27 38.18 0.34 2.64 ind:imp:3s; +consacrant consacrer ver 18.27 38.18 0.07 1.15 par:pre; +consacre consacrer ver 18.27 38.18 2.94 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +consacrent consacrer ver 18.27 38.18 0.48 0.27 ind:pre:3p; +consacrer consacrer ver 18.27 38.18 5.10 11.89 inf; +consacrera consacrer ver 18.27 38.18 0.14 0.07 ind:fut:3s; +consacrerai consacrer ver 18.27 38.18 0.78 0.14 ind:fut:1s; +consacreraient consacrer ver 18.27 38.18 0.00 0.07 cnd:pre:3p; +consacrerais consacrer ver 18.27 38.18 0.02 0.07 cnd:pre:1s; +consacrerait consacrer ver 18.27 38.18 0.12 0.47 cnd:pre:3s; +consacreras consacrer ver 18.27 38.18 0.10 0.00 ind:fut:2s; +consacrerez consacrer ver 18.27 38.18 0.01 0.00 ind:fut:2p; +consacreriez consacrer ver 18.27 38.18 0.00 0.07 cnd:pre:2p; +consacrerions consacrer ver 18.27 38.18 0.00 0.07 cnd:pre:1p; +consacreront consacrer ver 18.27 38.18 0.11 0.00 ind:fut:3p; +consacres consacrer ver 18.27 38.18 0.31 0.20 ind:pre:2s; +consacrez consacrer ver 18.27 38.18 0.28 0.07 imp:pre:2p;ind:pre:2p; +consacriez consacrer ver 18.27 38.18 0.04 0.07 ind:imp:2p; +consacrons consacrer ver 18.27 38.18 0.39 0.07 imp:pre:1p;ind:pre:1p; +consacrèrent consacrer ver 18.27 38.18 0.00 0.20 ind:pas:3p; +consacré consacrer ver m s 18.27 38.18 4.13 6.15 par:pas; +consacrée consacrer ver f s 18.27 38.18 2.15 4.53 par:pas; +consacrées consacré adj f p 1.53 2.77 0.12 0.61 +consacrés consacrer ver m p 18.27 38.18 0.22 2.30 par:pas; +consanguin consanguin adj m s 0.13 0.61 0.02 0.14 +consanguine consanguin adj f s 0.13 0.61 0.02 0.07 +consanguinité consanguinité nom f s 0.22 0.27 0.22 0.20 +consanguinités consanguinité nom f p 0.22 0.27 0.00 0.07 +consanguins consanguin adj m p 0.13 0.61 0.09 0.41 +consciemment consciemment adv 0.92 2.36 0.92 2.36 +conscience conscience nom f s 45.53 81.55 44.46 80.07 +consciences conscience nom f p 45.53 81.55 1.07 1.49 +consciencieuse consciencieux adj f s 1.64 3.38 0.17 0.68 +consciencieusement consciencieusement adv 0.25 4.86 0.25 4.86 +consciencieuses consciencieux adj f p 1.64 3.38 0.01 0.41 +consciencieux consciencieux adj m 1.64 3.38 1.45 2.30 +conscient conscient adj m s 15.15 14.59 8.51 7.43 +consciente conscient adj f s 15.15 14.59 4.00 4.32 +conscientes conscient adj f p 15.15 14.59 0.34 0.47 +conscients conscient adj m p 15.15 14.59 2.30 2.36 +conscription conscription nom f s 0.16 0.20 0.16 0.20 +conscrit conscrit nom m s 0.27 1.89 0.02 0.88 +conscrits conscrit nom m p 0.27 1.89 0.25 1.01 +conseil conseil nom m s 87.14 84.46 68.86 58.18 +conseilla conseiller ver 32.11 34.93 0.03 4.59 ind:pas:3s; +conseillai conseiller ver 32.11 34.93 0.00 0.68 ind:pas:1s; +conseillaient conseiller ver 32.11 34.93 0.20 0.47 ind:imp:3p; +conseillais conseiller ver 32.11 34.93 0.22 0.74 ind:imp:1s;ind:imp:2s; +conseillait conseiller ver 32.11 34.93 0.09 3.51 ind:imp:3s; +conseillant conseiller ver 32.11 34.93 0.18 0.88 par:pre; +conseille conseiller ver 32.11 34.93 13.40 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +conseillent conseiller ver 32.11 34.93 0.29 0.14 ind:pre:3p; +conseiller conseiller nom m s 22.97 19.32 16.42 11.62 +conseillera conseiller ver 32.11 34.93 0.08 0.14 ind:fut:3s; +conseillerai conseiller ver 32.11 34.93 0.24 0.14 ind:fut:1s; +conseillerais conseiller ver 32.11 34.93 0.72 0.47 cnd:pre:1s; +conseillerait conseiller ver 32.11 34.93 0.07 0.20 cnd:pre:3s; +conseillerez conseiller ver 32.11 34.93 0.12 0.14 ind:fut:2p; +conseilleriez conseiller ver 32.11 34.93 0.07 0.07 cnd:pre:2p; +conseillers conseiller nom m p 22.97 19.32 4.74 6.89 +conseilles conseiller ver 32.11 34.93 0.83 0.20 ind:pre:2s; +conseilleurs conseilleur nom m p 0.00 0.07 0.00 0.07 +conseillez conseiller ver 32.11 34.93 1.63 0.61 imp:pre:2p;ind:pre:2p; +conseillons conseiller ver 32.11 34.93 0.78 0.00 imp:pre:1p;ind:pre:1p; +conseillère conseiller nom f s 22.97 19.32 1.82 0.74 +conseillèrent conseiller ver 32.11 34.93 0.01 0.27 ind:pas:3p; +conseillères conseillère nom f p 0.04 0.00 0.04 0.00 +conseillé conseiller ver m s 32.11 34.93 5.63 8.18 par:pas; +conseillée conseiller ver f s 32.11 34.93 0.16 0.41 par:pas; +conseillées conseiller ver f p 32.11 34.93 0.01 0.20 par:pas; +conseillés conseiller ver m p 32.11 34.93 0.52 0.41 par:pas; +conseils conseil nom m p 87.14 84.46 18.29 26.28 +consens consentir ver 6.03 34.46 1.12 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +consensuel consensuel adj m s 0.24 0.07 0.13 0.07 +consensuelle consensuel adj f s 0.24 0.07 0.11 0.00 +consensus consensus nom m 0.65 0.34 0.65 0.34 +consent consentir ver 6.03 34.46 0.90 3.11 ind:pre:3s; +consentît consentir ver 6.03 34.46 0.01 1.35 sub:imp:3s; +consentaient consentir ver 6.03 34.46 0.00 0.88 ind:imp:3p; +consentais consentir ver 6.03 34.46 0.21 0.61 ind:imp:1s;ind:imp:2s; +consentait consentir ver 6.03 34.46 0.14 4.12 ind:imp:3s; +consentant consentant adj m s 1.47 2.77 0.51 0.68 +consentante consentant adj f s 1.47 2.77 0.55 1.55 +consentantes consentant adj f p 1.47 2.77 0.05 0.27 +consentants consentant adj m p 1.47 2.77 0.35 0.27 +consente consentir ver 6.03 34.46 0.02 0.61 sub:pre:1s;sub:pre:3s; +consentement consentement nom m s 3.56 5.95 2.96 5.68 +consentements consentement nom m p 3.56 5.95 0.59 0.27 +consentent consentir ver 6.03 34.46 0.28 0.95 ind:pre:3p; +consentes consentir ver 6.03 34.46 0.01 0.14 sub:pre:2s; +consentez consentir ver 6.03 34.46 0.69 0.27 imp:pre:2p;ind:pre:2p; +consenti consentir ver m s 6.03 34.46 0.98 6.82 par:pas; +consentie consentir ver f s 6.03 34.46 0.09 1.08 par:pas; +consenties consentir ver f p 6.03 34.46 0.03 0.34 par:pas; +consentiez consentir ver 6.03 34.46 0.01 0.07 ind:imp:2p; +consentions consentir ver 6.03 34.46 0.00 0.34 ind:imp:1p; +consentir consentir ver 6.03 34.46 0.50 4.32 inf; +consentira consentir ver 6.03 34.46 0.05 0.47 ind:fut:3s; +consentirai consentir ver 6.03 34.46 0.09 0.07 ind:fut:1s; +consentiraient consentir ver 6.03 34.46 0.00 0.07 cnd:pre:3p; +consentirais consentir ver 6.03 34.46 0.16 0.20 cnd:pre:1s;cnd:pre:2s; +consentirait consentir ver 6.03 34.46 0.06 1.35 cnd:pre:3s; +consentiras consentir ver 6.03 34.46 0.01 0.07 ind:fut:2s; +consentirent consentir ver 6.03 34.46 0.00 0.27 ind:pas:3p; +consentirez consentir ver 6.03 34.46 0.16 0.07 ind:fut:2p; +consentiriez consentir ver 6.03 34.46 0.01 0.14 cnd:pre:2p; +consentirions consentir ver 6.03 34.46 0.00 0.07 cnd:pre:1p; +consentiront consentir ver 6.03 34.46 0.13 0.00 ind:fut:3p; +consentis consentir ver m p 6.03 34.46 0.08 0.88 ind:pas:1s;par:pas; +consentisse consentir ver 6.03 34.46 0.00 0.07 sub:imp:1s; +consentissent consentir ver 6.03 34.46 0.00 0.14 sub:imp:3p; +consentit consentir ver 6.03 34.46 0.19 4.19 ind:pas:3s; +consentons consentir ver 6.03 34.46 0.05 0.07 ind:pre:1p; +conserva conserver ver 15.08 55.14 0.34 1.22 ind:pas:3s; +conservai conserver ver 15.08 55.14 0.00 0.34 ind:pas:1s; +conservaient conserver ver 15.08 55.14 0.04 1.49 ind:imp:3p; +conservais conserver ver 15.08 55.14 0.06 0.20 ind:imp:1s; +conservait conserver ver 15.08 55.14 0.27 7.03 ind:imp:3s; +conservant conserver ver 15.08 55.14 0.35 2.70 par:pre; +conservateur conservateur adj m s 2.96 3.78 1.37 2.36 +conservateurs conservateur nom m p 1.68 5.20 0.68 1.82 +conservation conservation nom f s 0.85 3.24 0.85 3.24 +conservatisme conservatisme nom m s 0.01 0.54 0.01 0.54 +conservatoire conservatoire nom m s 4.68 2.97 4.67 2.77 +conservatoires conservatoire nom m p 4.68 2.97 0.01 0.20 +conservatrice conservateur adj f s 2.96 3.78 0.85 0.47 +conservatrices conservateur adj f p 2.96 3.78 0.07 0.14 +conserve conserver ver 15.08 55.14 3.42 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conservent conserver ver 15.08 55.14 0.41 1.42 ind:pre:3p; +conserver conserver ver 15.08 55.14 5.39 17.57 inf; +conservera conserver ver 15.08 55.14 0.31 0.27 ind:fut:3s; +conserverai conserver ver 15.08 55.14 0.03 0.14 ind:fut:1s; +conserveraient conserver ver 15.08 55.14 0.00 0.07 cnd:pre:3p; +conserverais conserver ver 15.08 55.14 0.04 0.07 cnd:pre:1s; +conserverait conserver ver 15.08 55.14 0.19 0.47 cnd:pre:3s; +conserveras conserver ver 15.08 55.14 0.02 0.00 ind:fut:2s; +conserverez conserver ver 15.08 55.14 0.04 0.14 ind:fut:2p; +conserverie conserverie nom f s 0.68 0.74 0.66 0.68 +conserveries conserverie nom f p 0.68 0.74 0.02 0.07 +conserverons conserver ver 15.08 55.14 0.02 0.07 ind:fut:1p; +conserveront conserver ver 15.08 55.14 0.01 0.20 ind:fut:3p; +conserves conserve nom f p 5.50 14.26 2.76 7.36 +conservez conserver ver 15.08 55.14 0.46 0.14 imp:pre:2p;ind:pre:2p; +conserviez conserver ver 15.08 55.14 0.06 0.00 ind:imp:2p; +conservions conserver ver 15.08 55.14 0.00 0.14 ind:imp:1p; +conservons conserver ver 15.08 55.14 0.14 0.34 imp:pre:1p;ind:pre:1p; +conservât conserver ver 15.08 55.14 0.00 0.14 sub:imp:3s; +conservèrent conserver ver 15.08 55.14 0.00 0.20 ind:pas:3p; +conservé conserver ver m s 15.08 55.14 2.31 11.08 par:pas; +conservée conserver ver f s 15.08 55.14 0.39 1.62 par:pas; +conservées conserver ver f p 15.08 55.14 0.10 1.01 par:pas; +conservés conserver ver m p 15.08 55.14 0.60 1.22 par:pas; +considère considérer ver 43.00 87.43 12.53 13.72 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +considèrent considérer ver 43.00 87.43 2.06 2.57 ind:pre:3p; +considères considérer ver 43.00 87.43 1.04 0.14 ind:pre:2s; +considéra considérer ver 43.00 87.43 0.04 7.84 ind:pas:3s; +considérable considérable adj s 2.98 20.95 2.31 16.01 +considérablement considérablement adv 1.00 4.39 1.00 4.39 +considérables considérable adj p 2.98 20.95 0.68 4.93 +considérai considérer ver 43.00 87.43 0.00 0.41 ind:pas:1s; +considéraient considérer ver 43.00 87.43 0.40 2.97 ind:imp:3p; +considérais considérer ver 43.00 87.43 0.52 2.03 ind:imp:1s;ind:imp:2s; +considérait considérer ver 43.00 87.43 1.03 14.59 ind:imp:3s; +considérant considérer ver 43.00 87.43 1.47 4.66 par:pre; +considérants considérant nom m p 0.05 0.27 0.00 0.14 +considérassent considérer ver 43.00 87.43 0.00 0.07 sub:imp:3p; +considération considération nom f s 5.60 20.34 5.04 12.36 +considérations considération nom f p 5.60 20.34 0.57 7.97 +considérer considérer ver 43.00 87.43 5.59 19.32 inf; +considérera considérer ver 43.00 87.43 0.08 0.20 ind:fut:3s; +considérerai considérer ver 43.00 87.43 0.09 0.20 ind:fut:1s; +considéreraient considérer ver 43.00 87.43 0.04 0.14 cnd:pre:3p; +considérerais considérer ver 43.00 87.43 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +considérerait considérer ver 43.00 87.43 0.10 0.41 cnd:pre:3s; +considéreras considérer ver 43.00 87.43 0.03 0.07 ind:fut:2s; +considéreriez considérer ver 43.00 87.43 0.09 0.00 cnd:pre:2p; +considérerions considérer ver 43.00 87.43 0.01 0.07 cnd:pre:1p; +considérerons considérer ver 43.00 87.43 0.14 0.07 ind:fut:1p; +considérez considérer ver 43.00 87.43 4.83 1.15 imp:pre:2p;ind:pre:2p; +considériez considérer ver 43.00 87.43 0.25 0.14 ind:imp:2p; +considérions considérer ver 43.00 87.43 0.05 0.61 ind:imp:1p; +considérons considérer ver 43.00 87.43 1.30 1.08 imp:pre:1p;ind:pre:1p; +considérât considérer ver 43.00 87.43 0.00 0.54 sub:imp:3s; +considérèrent considérer ver 43.00 87.43 0.00 0.27 ind:pas:3p; +considéré considérer ver m s 43.00 87.43 6.78 8.11 par:pas; +considérée considérer ver f s 43.00 87.43 2.58 3.04 par:pas; +considérées considérer ver f p 43.00 87.43 0.20 1.08 par:pas; +considérés considérer ver m p 43.00 87.43 1.64 1.89 par:pas; +consigna consigner ver 3.46 5.47 0.04 0.34 ind:pas:3s; +consignais consigner ver 3.46 5.47 0.00 0.07 ind:imp:1s; +consignait consigner ver 3.46 5.47 0.02 0.41 ind:imp:3s; +consignant consigner ver 3.46 5.47 0.00 0.07 par:pre; +consignataire consignataire nom s 0.01 0.07 0.01 0.07 +consignation consignation nom f s 0.40 0.20 0.40 0.07 +consignations consignation nom f p 0.40 0.20 0.00 0.14 +consigne consigne nom f s 5.24 15.81 3.04 7.91 +consignent consigner ver 3.46 5.47 0.04 0.07 ind:pre:3p; +consigner consigner ver 3.46 5.47 0.69 1.55 inf; +consignera consigner ver 3.46 5.47 0.10 0.00 ind:fut:3s; +consignerais consigner ver 3.46 5.47 0.00 0.07 cnd:pre:1s; +consignes consigne nom f p 5.24 15.81 2.19 7.91 +consignez consigner ver 3.46 5.47 0.22 0.07 imp:pre:2p;ind:pre:2p; +consigné consigner ver m s 3.46 5.47 1.32 1.35 par:pas; +consignée consigner ver f s 3.46 5.47 0.44 0.27 par:pas; +consignées consigner ver f p 3.46 5.47 0.18 0.20 par:pas; +consignés consigné adj m p 0.72 0.27 0.39 0.00 +consista consister ver 7.51 31.35 0.00 0.68 ind:pas:3s; +consistaient consister ver 7.51 31.35 0.17 1.08 ind:imp:3p; +consistait consister ver 7.51 31.35 1.10 11.22 ind:imp:3s; +consistance consistance nom f s 1.31 7.43 1.31 7.36 +consistances consistance nom f p 1.31 7.43 0.00 0.07 +consistant consistant adj m s 1.06 1.55 0.67 1.01 +consistante consistant adj f s 1.06 1.55 0.37 0.20 +consistantes consistant adj f p 1.06 1.55 0.01 0.07 +consistants consistant adj m p 1.06 1.55 0.02 0.27 +consiste consister ver 7.51 31.35 5.55 12.84 imp:pre:2s;ind:pre:3s;sub:pre:3s; +consistent consister ver 7.51 31.35 0.14 0.95 ind:pre:3p; +consister consister ver 7.51 31.35 0.06 0.88 inf; +consistera consister ver 7.51 31.35 0.14 0.27 ind:fut:3s; +consisteraient consister ver 7.51 31.35 0.00 0.07 cnd:pre:3p; +consisterait consister ver 7.51 31.35 0.15 0.61 cnd:pre:3s; +consistoire consistoire nom m s 0.00 0.14 0.00 0.14 +consistorial consistorial adj m s 0.00 0.20 0.00 0.14 +consistoriales consistorial adj f p 0.00 0.20 0.00 0.07 +consistèrent consister ver 7.51 31.35 0.00 0.07 ind:pas:3p; +consisté consister ver m s 7.51 31.35 0.08 1.01 par:pas; +conso conso nom f s 0.19 0.14 0.13 0.07 +consoeur consoeur nom f s 0.17 0.68 0.15 0.47 +consoeurs consoeur nom f p 0.17 0.68 0.02 0.20 +consola consoler ver 14.41 33.18 0.04 1.42 ind:pas:3s; +consolai consoler ver 14.41 33.18 0.01 0.14 ind:pas:1s; +consolaient consoler ver 14.41 33.18 0.01 0.47 ind:imp:3p; +consolais consoler ver 14.41 33.18 0.25 0.61 ind:imp:1s;ind:imp:2s; +consolait consoler ver 14.41 33.18 0.28 2.77 ind:imp:3s; +consolant consoler ver 14.41 33.18 0.13 0.81 par:pre; +consolante consolant adj f s 0.12 2.16 0.01 0.68 +consolantes consolant adj f p 0.12 2.16 0.00 0.34 +consolants consolant adj m p 0.12 2.16 0.00 0.27 +consolasse consoler ver 14.41 33.18 0.00 0.07 sub:imp:1s; +consolateur consolateur adj m s 0.16 0.95 0.14 0.20 +consolateurs consolateur adj m p 0.16 0.95 0.01 0.14 +consolation consolation nom f s 4.84 10.74 4.62 8.72 +consolations consolation nom f p 4.84 10.74 0.22 2.03 +consolatrice consolateur nom f s 0.29 0.47 0.27 0.20 +consolatrices consolateur adj f p 0.16 0.95 0.00 0.27 +console consoler ver 14.41 33.18 3.71 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consolent consoler ver 14.41 33.18 0.42 0.88 ind:pre:3p; +consoler consoler ver 14.41 33.18 6.63 16.15 inf; +consolera consoler ver 14.41 33.18 0.46 0.34 ind:fut:3s; +consolerai consoler ver 14.41 33.18 0.25 0.07 ind:fut:1s; +consoleraient consoler ver 14.41 33.18 0.00 0.14 cnd:pre:3p; +consolerais consoler ver 14.41 33.18 0.12 0.14 cnd:pre:1s; +consolerait consoler ver 14.41 33.18 0.28 0.27 cnd:pre:3s; +consoleras consoler ver 14.41 33.18 0.11 0.07 ind:fut:2s; +consolerez consoler ver 14.41 33.18 0.02 0.00 ind:fut:2p; +consolerons consoler ver 14.41 33.18 0.11 0.07 ind:fut:1p; +consoleront consoler ver 14.41 33.18 0.04 0.00 ind:fut:3p; +consoles console nom f p 2.78 3.72 0.13 1.15 +consolez consoler ver 14.41 33.18 0.29 0.07 imp:pre:2p; +consolidaient consolider ver 1.38 4.19 0.00 0.20 ind:imp:3p; +consolidais consolider ver 1.38 4.19 0.00 0.07 ind:imp:1s; +consolidait consolider ver 1.38 4.19 0.00 0.54 ind:imp:3s; +consolidant consolider ver 1.38 4.19 0.01 0.27 par:pre; +consolidation consolidation nom f s 0.20 0.41 0.20 0.41 +consolide consolider ver 1.38 4.19 0.18 0.20 ind:pre:1s;ind:pre:3s; +consolident consolider ver 1.38 4.19 0.04 0.07 ind:pre:3p; +consolider consolider ver 1.38 4.19 1.00 1.89 inf; +consolideraient consolider ver 1.38 4.19 0.00 0.07 cnd:pre:3p; +consolidons consolider ver 1.38 4.19 0.01 0.00 imp:pre:1p; +consolidé consolider ver m s 1.38 4.19 0.08 0.20 par:pas; +consolidée consolider ver f s 1.38 4.19 0.04 0.41 par:pas; +consolidées consolidé adj f p 0.05 0.41 0.04 0.00 +consolidés consolider ver m p 1.38 4.19 0.01 0.14 par:pas; +consoliez consoler ver 14.41 33.18 0.00 0.07 ind:imp:2p; +consolions consoler ver 14.41 33.18 0.00 0.07 ind:imp:1p; +consolât consoler ver 14.41 33.18 0.00 0.07 sub:imp:3s; +consolèrent consoler ver 14.41 33.18 0.00 0.27 ind:pas:3p; +consolé consoler ver m s 14.41 33.18 0.47 1.96 par:pas; +consolée consoler ver f s 14.41 33.18 0.41 1.08 par:pas; +consolées consoler ver f p 14.41 33.18 0.00 0.27 par:pas; +consolés consoler ver m p 14.41 33.18 0.31 0.27 par:pas; +consomma consommer ver 7.54 11.35 0.02 0.20 ind:pas:3s; +consommable consommable adj s 0.04 0.61 0.01 0.47 +consommables consommable adj p 0.04 0.61 0.02 0.14 +consommai consommer ver 7.54 11.35 0.00 0.07 ind:pas:1s; +consommaient consommer ver 7.54 11.35 0.03 0.27 ind:imp:3p; +consommait consommer ver 7.54 11.35 0.20 1.82 ind:imp:3s; +consommant consommer ver 7.54 11.35 0.07 0.20 par:pre; +consommateur consommateur nom m s 1.88 6.22 0.79 1.69 +consommateurs consommateur nom m p 1.88 6.22 1.04 4.05 +consommation consommation nom f s 3.70 9.66 3.38 7.36 +consommations consommation nom f p 3.70 9.66 0.32 2.30 +consommatrice consommateur nom f s 1.88 6.22 0.05 0.34 +consommatrices consommatrice nom f p 0.02 0.00 0.02 0.00 +consomme consommer ver 7.54 11.35 1.44 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consomment consommer ver 7.54 11.35 0.42 0.88 ind:pre:3p; +consommer consommer ver 7.54 11.35 3.00 4.12 inf; +consommerait consommer ver 7.54 11.35 0.01 0.07 cnd:pre:3s; +consommeront consommer ver 7.54 11.35 0.03 0.00 ind:fut:3p; +consommez consommer ver 7.54 11.35 0.63 0.00 imp:pre:2p;ind:pre:2p; +consommions consommer ver 7.54 11.35 0.00 0.14 ind:imp:1p; +consommons consommer ver 7.54 11.35 0.16 0.00 imp:pre:1p;ind:pre:1p; +consommé consommer ver m s 7.54 11.35 1.07 2.09 par:pas; +consommée consommer ver f s 7.54 11.35 0.34 0.34 par:pas; +consommées consommer ver f p 7.54 11.35 0.02 0.07 par:pas; +consommés consommer ver m p 7.54 11.35 0.10 0.14 par:pas; +consomption consomption nom f s 0.27 0.20 0.27 0.20 +consomptive consomptif adj f s 0.00 0.07 0.00 0.07 +consonance consonance nom f s 0.19 1.89 0.17 1.01 +consonances consonance nom f p 0.19 1.89 0.02 0.88 +consonne consonne nom f s 0.45 1.69 0.20 0.07 +consonnes consonne nom f p 0.45 1.69 0.25 1.62 +consort consort adj m s 0.04 0.41 0.02 0.27 +consortium consortium nom m s 0.81 0.07 0.79 0.07 +consortiums consortium nom m p 0.81 0.07 0.03 0.00 +consorts consort nom m p 0.30 0.41 0.28 0.34 +consos conso nom f p 0.19 0.14 0.06 0.07 +consoude consoude nom f s 0.00 0.07 0.00 0.07 +conspiraient conspirer ver 1.66 1.35 0.06 0.14 ind:imp:3p; +conspirait conspirer ver 1.66 1.35 0.12 0.41 ind:imp:3s; +conspirant conspirer ver 1.66 1.35 0.09 0.00 par:pre; +conspirateur conspirateur nom m s 0.85 1.89 0.16 0.61 +conspirateurs conspirateur nom m p 0.85 1.89 0.69 1.15 +conspiratif conspiratif adj m s 0.00 0.07 0.00 0.07 +conspiration conspiration nom f s 5.24 2.91 4.93 2.30 +conspirations conspiration nom f p 5.24 2.91 0.30 0.61 +conspiratrice conspirateur adj f s 0.29 0.07 0.03 0.00 +conspiratrices conspirateur nom f p 0.85 1.89 0.00 0.07 +conspire conspirer ver 1.66 1.35 0.41 0.47 ind:pre:1s;ind:pre:3s; +conspirent conspirer ver 1.66 1.35 0.16 0.00 ind:pre:3p; +conspirer conspirer ver 1.66 1.35 0.41 0.20 inf; +conspirez conspirer ver 1.66 1.35 0.08 0.00 ind:pre:2p; +conspiré conspirer ver m s 1.66 1.35 0.33 0.14 par:pas; +conspuaient conspuer ver 0.04 1.15 0.00 0.20 ind:imp:3p; +conspuant conspuer ver 0.04 1.15 0.00 0.14 par:pre; +conspue conspuer ver 0.04 1.15 0.01 0.07 ind:pre:3s; +conspuer conspuer ver 0.04 1.15 0.02 0.27 inf; +conspuèrent conspuer ver 0.04 1.15 0.00 0.14 ind:pas:3p; +conspué conspuer ver m s 0.04 1.15 0.01 0.27 par:pas; +conspués conspuer ver m p 0.04 1.15 0.00 0.07 par:pas; +constable constable nom m s 0.05 0.14 0.05 0.14 +constamment constamment adv 8.18 15.68 8.18 15.68 +constance constance nom f s 0.99 2.97 0.96 2.84 +constances constance nom f p 0.99 2.97 0.03 0.14 +constant constant adj m s 5.76 16.82 1.88 6.55 +constante constant adj f s 5.76 16.82 2.92 7.30 +constantes constante nom f p 1.54 0.47 1.14 0.07 +constants constant adj m p 5.76 16.82 0.63 1.55 +constat constat nom m s 1.38 3.45 1.36 2.77 +constata constater ver 10.58 57.43 0.16 8.99 ind:pas:3s; +constatai constater ver 10.58 57.43 0.41 2.16 ind:pas:1s; +constataient constater ver 10.58 57.43 0.00 0.54 ind:imp:3p; +constatais constater ver 10.58 57.43 0.00 1.28 ind:imp:1s; +constatait constater ver 10.58 57.43 0.01 2.64 ind:imp:3s; +constatant constater ver 10.58 57.43 0.15 3.58 par:pre; +constatation constatation nom f s 0.54 4.86 0.47 3.65 +constatations constatation nom f p 0.54 4.86 0.07 1.22 +constate constater ver 10.58 57.43 2.17 9.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +constatent constater ver 10.58 57.43 0.04 0.68 ind:pre:3p; +constater constater ver 10.58 57.43 3.48 19.66 inf; +constatera constater ver 10.58 57.43 0.06 0.14 ind:fut:3s; +constaterai constater ver 10.58 57.43 0.00 0.07 ind:fut:1s; +constateraient constater ver 10.58 57.43 0.01 0.14 cnd:pre:3p; +constaterais constater ver 10.58 57.43 0.00 0.07 cnd:pre:1s; +constaterait constater ver 10.58 57.43 0.00 0.07 cnd:pre:3s; +constateras constater ver 10.58 57.43 0.13 0.20 ind:fut:2s; +constaterez constater ver 10.58 57.43 0.30 0.00 ind:fut:2p; +constateriez constater ver 10.58 57.43 0.02 0.00 cnd:pre:2p; +constatez constater ver 10.58 57.43 0.83 0.34 imp:pre:2p;ind:pre:2p; +constatiez constater ver 10.58 57.43 0.06 0.07 ind:imp:2p; +constations constater ver 10.58 57.43 0.01 0.07 ind:imp:1p; +constatâmes constater ver 10.58 57.43 0.00 0.07 ind:pas:1p; +constatons constater ver 10.58 57.43 0.34 0.68 imp:pre:1p;ind:pre:1p; +constats constat nom m p 1.38 3.45 0.03 0.68 +constatèrent constater ver 10.58 57.43 0.00 0.14 ind:pas:3p; +constaté constater ver m s 10.58 57.43 2.30 5.61 imp:pre:2s;par:pas; +constatée constater ver f s 10.58 57.43 0.06 0.27 par:pas; +constatées constater ver f p 10.58 57.43 0.01 0.14 par:pas; +constatés constater ver m p 10.58 57.43 0.04 0.07 par:pas; +constellaient consteller ver 0.14 4.39 0.00 0.20 ind:imp:3p; +constellait consteller ver 0.14 4.39 0.00 0.07 ind:imp:3s; +constellant consteller ver 0.14 4.39 0.00 0.07 par:pre; +constellation constellation nom f s 1.86 6.76 1.61 3.58 +constellations constellation nom f p 1.86 6.76 0.25 3.18 +constelle consteller ver 0.14 4.39 0.00 0.07 ind:pre:3s; +constellent consteller ver 0.14 4.39 0.00 0.14 ind:pre:3p; +constellé consteller ver m s 0.14 4.39 0.01 1.76 par:pas; +constellée consteller ver f s 0.14 4.39 0.13 1.15 par:pas; +constellées consteller ver f p 0.14 4.39 0.00 0.47 par:pas; +constellés consteller ver m p 0.14 4.39 0.00 0.47 par:pas; +consterna consterner ver 0.85 4.26 0.02 0.47 ind:pas:3s; +consternait consterner ver 0.85 4.26 0.00 0.88 ind:imp:3s; +consternant consternant adj m s 0.53 1.49 0.48 0.61 +consternante consternant adj f s 0.53 1.49 0.03 0.47 +consternantes consternant adj f p 0.53 1.49 0.01 0.20 +consternants consternant adj m p 0.53 1.49 0.01 0.20 +consternation consternation nom f s 0.69 4.53 0.69 4.53 +consterne consterner ver 0.85 4.26 0.06 0.07 ind:pre:3s; +consternent consterner ver 0.85 4.26 0.00 0.07 ind:pre:3p; +consterné consterner ver m s 0.85 4.26 0.52 1.42 par:pas; +consternée consterner ver f s 0.85 4.26 0.07 0.68 par:pas; +consternées consterné adj f p 0.46 3.58 0.00 0.27 +consternés consterné adj m p 0.46 3.58 0.23 0.54 +constipant constipant adj m s 0.00 0.07 0.00 0.07 +constipation constipation nom f s 0.41 1.69 0.38 1.55 +constipations constipation nom f p 0.41 1.69 0.03 0.14 +constipe constiper ver 0.55 0.74 0.06 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +constipé constipé adj m s 0.66 0.54 0.35 0.34 +constipée constipé adj f s 0.66 0.54 0.26 0.07 +constipées constipé nom f p 0.34 0.34 0.00 0.07 +constipés constipé nom m p 0.34 0.34 0.14 0.07 +constitua constituer ver 8.99 54.39 0.05 0.54 ind:pas:3s; +constituaient constituer ver 8.99 54.39 0.11 6.22 ind:imp:3p; +constituais constituer ver 8.99 54.39 0.01 0.14 ind:imp:1s; +constituait constituer ver 8.99 54.39 0.50 9.80 ind:imp:3s; +constituant constituer ver 8.99 54.39 0.17 1.82 par:pre; +constituante constituant nom f s 0.27 1.01 0.23 0.68 +constituantes constituant adj f p 0.02 3.92 0.00 0.07 +constituants constituant nom m p 0.27 1.01 0.04 0.20 +constitue constituer ver 8.99 54.39 2.89 7.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +constituent constituer ver 8.99 54.39 1.32 5.47 ind:pre:3p; +constituer constituer ver 8.99 54.39 1.56 9.46 inf; +constituera constituer ver 8.99 54.39 0.05 0.27 ind:fut:3s; +constituerai constituer ver 8.99 54.39 0.00 0.14 ind:fut:1s; +constitueraient constituer ver 8.99 54.39 0.02 0.47 cnd:pre:3p; +constituerais constituer ver 8.99 54.39 0.00 0.07 cnd:pre:1s; +constituerait constituer ver 8.99 54.39 0.23 0.74 cnd:pre:3s; +constitueras constituer ver 8.99 54.39 0.00 0.07 ind:fut:2s; +constitueront constituer ver 8.99 54.39 0.02 0.20 ind:fut:3p; +constituez constituer ver 8.99 54.39 0.08 0.14 imp:pre:2p;ind:pre:2p; +constituions constituer ver 8.99 54.39 0.00 0.20 ind:imp:1p; +constituons constituer ver 8.99 54.39 0.12 0.20 imp:pre:1p;ind:pre:1p; +constituât constituer ver 8.99 54.39 0.00 0.20 sub:imp:3s; +constituèrent constituer ver 8.99 54.39 0.01 0.54 ind:pas:3p; +constitutif constitutif adj m s 0.19 0.34 0.14 0.14 +constitutifs constitutif adj m p 0.19 0.34 0.05 0.20 +constitution constitution nom f s 6.74 9.12 6.72 8.92 +constitutionnaliste constitutionnaliste nom s 0.10 0.00 0.10 0.00 +constitutionnalité constitutionnalité nom f s 0.02 0.00 0.02 0.00 +constitutionnel constitutionnel adj m s 1.60 2.50 0.72 0.88 +constitutionnelle constitutionnel adj f s 1.60 2.50 0.40 1.01 +constitutionnellement constitutionnellement adv 0.03 0.07 0.03 0.07 +constitutionnelles constitutionnel adj f p 1.60 2.50 0.03 0.34 +constitutionnels constitutionnel adj m p 1.60 2.50 0.45 0.27 +constitutions constitution nom f p 6.74 9.12 0.02 0.20 +constitué constituer ver m s 8.99 54.39 0.98 6.82 par:pas; +constituée constituer ver f s 8.99 54.39 0.64 2.16 par:pas; +constituées constitué adj f p 0.19 2.91 0.11 0.68 +constitués constituer ver m p 8.99 54.39 0.16 0.81 par:pas; +constricteur constricteur nom m s 0.11 0.07 0.11 0.00 +constricteurs constricteur nom m p 0.11 0.07 0.00 0.07 +constriction constriction nom f s 0.01 0.61 0.01 0.61 +constrictive constrictif adj f s 0.01 0.00 0.01 0.00 +constrictor constrictor adj m s 0.16 0.41 0.16 0.34 +constrictors constrictor nom m p 0.05 0.00 0.03 0.00 +constructeur constructeur nom m s 1.81 1.82 0.88 0.81 +constructeurs constructeur nom m p 1.81 1.82 0.93 1.01 +constructif constructif adj m s 1.25 1.28 0.39 0.54 +constructifs constructif adj m p 1.25 1.28 0.01 0.07 +construction construction nom f s 13.12 24.12 11.30 18.24 +constructions construction nom f p 13.12 24.12 1.83 5.88 +constructive constructif adj f s 1.25 1.28 0.58 0.41 +constructives constructif adj f p 1.25 1.28 0.26 0.27 +constructivisme constructivisme nom m s 0.01 0.00 0.01 0.00 +construira construire ver 67.59 52.64 0.93 0.41 ind:fut:3s; +construirai construire ver 67.59 52.64 0.68 0.00 ind:fut:1s; +construiraient construire ver 67.59 52.64 0.02 0.07 cnd:pre:3p; +construirais construire ver 67.59 52.64 0.12 0.14 cnd:pre:1s; +construirait construire ver 67.59 52.64 0.30 0.20 cnd:pre:3s; +construiras construire ver 67.59 52.64 0.17 0.00 ind:fut:2s; +construire construire ver 67.59 52.64 26.94 18.38 inf; +construirez construire ver 67.59 52.64 0.29 0.07 ind:fut:2p; +construiriez construire ver 67.59 52.64 0.02 0.00 cnd:pre:2p; +construirons construire ver 67.59 52.64 1.19 0.07 ind:fut:1p; +construiront construire ver 67.59 52.64 0.37 0.00 ind:fut:3p; +construis construire ver 67.59 52.64 2.33 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +construisît construire ver 67.59 52.64 0.00 0.07 sub:imp:3s; +construisaient construire ver 67.59 52.64 0.27 0.81 ind:imp:3p; +construisais construire ver 67.59 52.64 0.29 0.34 ind:imp:1s;ind:imp:2s; +construisait construire ver 67.59 52.64 0.98 1.76 ind:imp:3s; +construisant construire ver 67.59 52.64 0.54 0.95 par:pre; +construise construire ver 67.59 52.64 0.40 0.20 sub:pre:1s;sub:pre:3s; +construisent construire ver 67.59 52.64 1.37 1.15 ind:pre:3p; +construisez construire ver 67.59 52.64 1.01 0.00 imp:pre:2p;ind:pre:2p; +construisiez construire ver 67.59 52.64 0.06 0.00 ind:imp:2p; +construisions construire ver 67.59 52.64 0.05 0.00 ind:imp:1p; +construisirent construire ver 67.59 52.64 0.06 0.14 ind:pas:3p; +construisis construire ver 67.59 52.64 0.11 0.14 ind:pas:1s; +construisit construire ver 67.59 52.64 0.21 1.62 ind:pas:3s; +construisons construire ver 67.59 52.64 1.23 0.14 imp:pre:1p;ind:pre:1p; +construit construire ver m s 67.59 52.64 21.48 15.61 ind:pre:3s;par:pas; +construite construire ver f s 67.59 52.64 4.64 5.41 par:pas; +construites construire ver f p 67.59 52.64 0.47 1.82 par:pas; +construits construire ver m p 67.59 52.64 1.08 2.70 par:pas; +consubstantiel consubstantiel adj m s 0.00 0.61 0.00 0.20 +consubstantielle consubstantiel adj f s 0.00 0.61 0.00 0.27 +consubstantiels consubstantiel adj m p 0.00 0.61 0.00 0.14 +consécration consécration nom f s 0.37 1.15 0.37 1.15 +consécutif consécutif adj m s 1.16 1.82 0.12 0.20 +consécutifs consécutif adj m p 1.16 1.82 0.46 0.68 +consécution consécution nom f s 0.00 0.07 0.00 0.07 +consécutive consécutif adj f s 1.16 1.82 0.15 0.47 +consécutivement consécutivement adv 0.02 0.14 0.02 0.14 +consécutives consécutif adj f p 1.16 1.82 0.43 0.47 +consul consul nom m s 3.95 10.07 3.56 8.11 +consulaire consulaire adj s 0.31 0.81 0.31 0.41 +consulaires consulaire adj p 0.31 0.81 0.00 0.41 +consulat consulat nom m s 3.84 2.43 3.77 1.96 +consulats consulat nom m p 3.84 2.43 0.07 0.47 +consuls consul nom m p 3.95 10.07 0.39 1.96 +consulta consulter ver 18.45 36.22 0.01 4.12 ind:pas:3s; +consultable consultable adj f s 0.00 0.07 0.00 0.07 +consultai consulter ver 18.45 36.22 0.02 0.61 ind:pas:1s; +consultaient consulter ver 18.45 36.22 0.00 0.68 ind:imp:3p; +consultais consulter ver 18.45 36.22 0.22 0.34 ind:imp:1s;ind:imp:2s; +consultait consulter ver 18.45 36.22 0.13 2.70 ind:imp:3s; +consultant consultant nom m s 1.76 0.20 1.29 0.07 +consultante consultant nom f s 1.76 0.20 0.18 0.07 +consultants consultant nom m p 1.76 0.20 0.29 0.07 +consultatif consultatif adj m s 0.13 6.28 0.13 0.74 +consultatifs consultatif adj m p 0.13 6.28 0.00 0.14 +consultation consultation nom f s 4.59 8.24 3.61 6.49 +consultations consultation nom f p 4.59 8.24 0.98 1.76 +consultative consultatif adj f s 0.13 6.28 0.00 5.41 +consulte consulter ver 18.45 36.22 2.21 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consultent consulter ver 18.45 36.22 0.10 0.27 ind:pre:3p; +consulter consulter ver 18.45 36.22 9.05 13.04 inf; +consultera consulter ver 18.45 36.22 0.03 0.20 ind:fut:3s; +consulterai consulter ver 18.45 36.22 0.18 0.07 ind:fut:1s; +consulteraient consulter ver 18.45 36.22 0.00 0.07 cnd:pre:3p; +consulterais consulter ver 18.45 36.22 0.22 0.07 cnd:pre:1s;cnd:pre:2s; +consulteras consulter ver 18.45 36.22 0.01 0.00 ind:fut:2s; +consulterons consulter ver 18.45 36.22 0.01 0.00 ind:fut:1p; +consulteront consulter ver 18.45 36.22 0.00 0.07 ind:fut:3p; +consultes consulter ver 18.45 36.22 0.23 0.00 ind:pre:2s; +consultez consulter ver 18.45 36.22 1.04 0.34 imp:pre:2p;ind:pre:2p; +consultions consulter ver 18.45 36.22 0.01 0.07 ind:imp:1p; +consultâmes consulter ver 18.45 36.22 0.00 0.07 ind:pas:1p; +consultons consulter ver 18.45 36.22 0.24 0.07 imp:pre:1p;ind:pre:1p; +consultèrent consulter ver 18.45 36.22 0.00 0.81 ind:pas:3p; +consulté consulter ver m s 18.45 36.22 4.05 5.00 par:pas; +consultée consulter ver f s 18.45 36.22 0.14 0.88 par:pas; +consultées consulter ver f p 18.45 36.22 0.03 0.07 par:pas; +consultés consulter ver m p 18.45 36.22 0.22 1.42 par:pas; +consuma consumer ver 6.54 9.93 0.16 0.07 ind:pas:3s; +consumable consumable adj s 0.00 0.07 0.00 0.07 +consumai consumer ver 6.54 9.93 0.00 0.07 ind:pas:1s; +consumaient consumer ver 6.54 9.93 0.01 0.47 ind:imp:3p; +consumais consumer ver 6.54 9.93 0.00 0.14 ind:imp:1s; +consumait consumer ver 6.54 9.93 0.19 1.49 ind:imp:3s; +consumant consumer ver 6.54 9.93 0.36 0.20 par:pre; +consumation consumation nom f s 0.00 0.07 0.00 0.07 +consume consumer ver 6.54 9.93 2.21 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consument consumer ver 6.54 9.93 0.38 0.47 ind:pre:3p; +consumer consumer ver 6.54 9.93 0.89 2.09 inf; +consumera consumer ver 6.54 9.93 0.25 0.14 ind:fut:3s; +consumerait consumer ver 6.54 9.93 0.01 0.07 cnd:pre:3s; +consumeront consumer ver 6.54 9.93 0.04 0.07 ind:fut:3p; +consumes consumer ver 6.54 9.93 0.00 0.07 ind:pre:2s; +consumez consumer ver 6.54 9.93 0.05 0.00 imp:pre:2p;ind:pre:2p; +consumât consumer ver 6.54 9.93 0.00 0.07 sub:imp:3s; +consumèrent consumer ver 6.54 9.93 0.00 0.07 ind:pas:3p; +consumé consumer ver m s 6.54 9.93 1.07 0.81 par:pas; +consumée consumer ver f s 6.54 9.93 0.52 1.15 par:pas; +consumées consumer ver f p 6.54 9.93 0.03 0.61 par:pas; +consumérisme consumérisme nom m s 0.43 0.00 0.43 0.00 +consumériste consumériste adj f s 0.20 0.00 0.20 0.00 +consumés consumer ver m p 6.54 9.93 0.37 0.20 par:pas; +conséquemment conséquemment adv 0.03 0.41 0.03 0.41 +conséquence conséquence nom f s 19.27 34.86 5.91 16.89 +conséquences conséquence nom f p 19.27 34.86 13.36 17.97 +conséquent conséquent adj m s 6.45 12.43 6.05 11.55 +conséquente conséquent adj f s 6.45 12.43 0.26 0.54 +conséquentes conséquent adj f p 6.45 12.43 0.12 0.07 +conséquents conséquent adj m p 6.45 12.43 0.02 0.27 +contînt contenir ver 30.07 58.92 0.00 0.34 sub:imp:3s; +conta conter ver 3.76 8.99 0.01 0.88 ind:pas:3s; +contact contact nom m s 69.85 65.47 59.58 55.68 +contacta contacter ver 38.96 2.03 0.01 0.41 ind:pas:3s; +contactais contacter ver 38.96 2.03 0.14 0.00 ind:imp:1s;ind:imp:2s; +contactait contacter ver 38.96 2.03 0.08 0.07 ind:imp:3s; +contactant contacter ver 38.96 2.03 0.05 0.07 par:pre; +contacte contacter ver 38.96 2.03 3.89 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contactent contacter ver 38.96 2.03 0.14 0.00 ind:pre:3p; +contacter contacter ver 38.96 2.03 16.11 0.95 ind:pre:2p;inf; +contactera contacter ver 38.96 2.03 1.18 0.00 ind:fut:3s; +contacterai contacter ver 38.96 2.03 1.69 0.00 ind:fut:1s; +contacteraient contacter ver 38.96 2.03 0.01 0.00 cnd:pre:3p; +contacterais contacter ver 38.96 2.03 0.03 0.00 cnd:pre:1s; +contacterait contacter ver 38.96 2.03 0.05 0.00 cnd:pre:3s; +contacteras contacter ver 38.96 2.03 0.01 0.00 ind:fut:2s; +contacterez contacter ver 38.96 2.03 0.10 0.00 ind:fut:2p; +contacterons contacter ver 38.96 2.03 0.30 0.00 ind:fut:1p; +contacteront contacter ver 38.96 2.03 0.23 0.00 ind:fut:3p; +contacteur contacteur nom m s 0.05 0.07 0.05 0.07 +contactez contacter ver 38.96 2.03 4.20 0.07 imp:pre:2p;ind:pre:2p; +contactiez contacter ver 38.96 2.03 0.37 0.00 ind:imp:2p; +contactions contacter ver 38.96 2.03 0.11 0.00 ind:imp:1p; +contactons contacter ver 38.96 2.03 0.22 0.00 imp:pre:1p;ind:pre:1p; +contacts contact nom m p 69.85 65.47 10.27 9.80 +contacté contacter ver m s 38.96 2.03 7.12 0.41 par:pas; +contactée contacter ver f s 38.96 2.03 1.27 0.00 par:pas; +contactées contacter ver f p 38.96 2.03 0.08 0.00 par:pas; +contactés contacter ver m p 38.96 2.03 1.56 0.07 par:pas; +contagieuse contagieux adj f s 6.01 4.05 1.74 1.82 +contagieuses contagieux adj f p 6.01 4.05 0.57 0.61 +contagieux contagieux adj m 6.01 4.05 3.71 1.62 +contagion contagion nom f s 1.21 3.72 1.21 3.72 +contai conter ver 3.76 8.99 0.00 0.14 ind:pas:1s; +contaient conter ver 3.76 8.99 0.01 0.34 ind:imp:3p; +container container nom m s 3.00 1.01 2.09 0.27 +containers container nom m p 3.00 1.01 0.92 0.74 +containeur containeur nom m s 0.01 0.00 0.01 0.00 +contais conter ver 3.76 8.99 0.01 0.00 ind:imp:1s; +contait conter ver 3.76 8.99 0.16 0.88 ind:imp:3s; +contaminaient contaminer ver 9.63 4.32 0.00 0.07 ind:imp:3p; +contaminait contaminer ver 9.63 4.32 0.01 0.27 ind:imp:3s; +contaminant contaminant adj m s 0.13 0.07 0.02 0.07 +contaminants contaminant adj m p 0.13 0.07 0.11 0.00 +contaminateur contaminateur nom m s 0.01 0.00 0.01 0.00 +contamination contamination nom f s 2.27 1.35 2.26 1.22 +contaminations contamination nom f p 2.27 1.35 0.01 0.14 +contamine contaminer ver 9.63 4.32 1.39 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contaminer contaminer ver 9.63 4.32 1.27 0.61 inf; +contaminera contaminer ver 9.63 4.32 0.01 0.00 ind:fut:3s; +contamineras contaminer ver 9.63 4.32 0.01 0.00 ind:fut:2s; +contamines contaminer ver 9.63 4.32 0.05 0.00 ind:pre:2s; +contaminons contaminer ver 9.63 4.32 0.01 0.00 imp:pre:1p; +contaminât contaminer ver 9.63 4.32 0.00 0.07 sub:imp:3s; +contaminé contaminer ver m s 9.63 4.32 2.68 1.08 par:pas; +contaminée contaminer ver f s 9.63 4.32 2.19 0.81 par:pas; +contaminées contaminer ver f p 9.63 4.32 0.55 0.34 par:pas; +contaminés contaminer ver m p 9.63 4.32 1.44 0.61 par:pas; +contant conter ver 3.76 8.99 0.19 0.41 par:pre; +conte conte nom m s 13.30 15.07 8.84 6.69 +contempla contempler ver 8.58 64.46 0.17 5.34 ind:pas:3s; +contemplai contempler ver 8.58 64.46 0.01 1.35 ind:pas:1s; +contemplaient contempler ver 8.58 64.46 0.01 3.04 ind:imp:3p; +contemplais contempler ver 8.58 64.46 0.45 2.91 ind:imp:1s;ind:imp:2s; +contemplait contempler ver 8.58 64.46 0.30 11.35 ind:imp:3s; +contemplant contempler ver 8.58 64.46 0.35 6.55 par:pre; +contemplateur contemplateur nom m s 0.00 0.20 0.00 0.14 +contemplatif contemplatif nom m s 0.17 0.41 0.17 0.20 +contemplatifs contemplatif adj m p 0.10 1.42 0.00 0.20 +contemplation contemplation nom f s 0.44 9.66 0.44 9.32 +contemplations contemplation nom f p 0.44 9.66 0.00 0.34 +contemplative contemplatif adj f s 0.10 1.42 0.03 0.81 +contemplativement contemplativement adv 0.00 0.07 0.00 0.07 +contemplatives contemplatif adj f p 0.10 1.42 0.01 0.20 +contemplatrice contemplateur nom f s 0.00 0.20 0.00 0.07 +contemple contempler ver 8.58 64.46 2.28 7.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contemplent contempler ver 8.58 64.46 0.33 1.55 ind:pre:3p; +contempler contempler ver 8.58 64.46 2.90 18.11 inf; +contemplera contempler ver 8.58 64.46 0.11 0.00 ind:fut:3s; +contemplerai contempler ver 8.58 64.46 0.12 0.00 ind:fut:1s; +contempleraient contempler ver 8.58 64.46 0.00 0.07 cnd:pre:3p; +contemplerait contempler ver 8.58 64.46 0.00 0.07 cnd:pre:3s; +contempleront contempler ver 8.58 64.46 0.01 0.07 ind:fut:3p; +contemples contempler ver 8.58 64.46 0.07 0.20 ind:pre:2s; +contemplez contempler ver 8.58 64.46 0.63 0.27 imp:pre:2p;ind:pre:2p; +contempliez contempler ver 8.58 64.46 0.11 0.00 ind:imp:2p; +contemplions contempler ver 8.58 64.46 0.00 0.61 ind:imp:1p; +contemplâmes contempler ver 8.58 64.46 0.00 0.14 ind:pas:1p; +contemplons contempler ver 8.58 64.46 0.07 0.27 imp:pre:1p;ind:pre:1p; +contemplèrent contempler ver 8.58 64.46 0.00 0.61 ind:pas:3p; +contemplé contempler ver m s 8.58 64.46 0.62 3.38 par:pas; +contemplée contempler ver f s 8.58 64.46 0.03 0.68 par:pas; +contemplées contempler ver f p 8.58 64.46 0.00 0.14 par:pas; +contemplés contempler ver m p 8.58 64.46 0.00 0.61 par:pas; +contemporain contemporain adj m s 1.98 6.62 0.94 1.89 +contemporaine contemporain adj f s 1.98 6.62 0.79 2.77 +contemporaines contemporain adj f p 1.98 6.62 0.05 0.61 +contemporains contemporain nom m p 0.53 5.54 0.39 4.32 +contempteur contempteur nom m s 0.14 0.27 0.01 0.27 +contempteurs contempteur nom m p 0.14 0.27 0.14 0.00 +contenaient contenir ver 30.07 58.92 0.81 3.65 ind:imp:3p; +contenais contenir ver 30.07 58.92 0.00 0.14 ind:imp:1s; +contenait contenir ver 30.07 58.92 3.47 15.41 ind:imp:3s; +contenance contenance nom f s 0.41 6.15 0.41 6.01 +contenances contenance nom f p 0.41 6.15 0.00 0.14 +contenant contenir ver 30.07 58.92 2.75 9.53 par:pre; +contenants contenant nom m p 0.50 0.74 0.04 0.07 +conteneur conteneur nom m s 2.92 0.07 2.37 0.07 +conteneurs conteneur nom m p 2.92 0.07 0.55 0.00 +contenez contenir ver 30.07 58.92 0.11 0.00 imp:pre:2p; +contenir contenir ver 30.07 58.92 4.81 9.86 inf; +content content adj m s 178.94 86.49 114.75 51.22 +contenta contenter ver 29.04 60.61 0.12 8.24 ind:pas:3s; +contentai contenter ver 29.04 60.61 0.00 1.08 ind:pas:1s; +contentaient contenter ver 29.04 60.61 0.26 2.84 ind:imp:3p; +contentais contenter ver 29.04 60.61 0.36 1.89 ind:imp:1s;ind:imp:2s; +contentait contenter ver 29.04 60.61 0.37 9.32 ind:imp:3s; +contentant contenter ver 29.04 60.61 0.24 4.46 par:pre; +contentassent contenter ver 29.04 60.61 0.00 0.07 sub:imp:3p; +contente content adj f s 178.94 86.49 50.76 24.32 +contentement contentement nom m s 0.15 6.35 0.15 6.08 +contentements contentement nom m p 0.15 6.35 0.00 0.27 +contentent contenter ver 29.04 60.61 1.27 1.35 ind:pre:3p; +contenter contenter ver 29.04 60.61 5.98 11.35 inf; +contentera contenter ver 29.04 60.61 0.86 0.20 ind:fut:3s; +contenterai contenter ver 29.04 60.61 0.84 0.27 ind:fut:1s; +contenteraient contenter ver 29.04 60.61 0.02 0.14 cnd:pre:3p; +contenterais contenter ver 29.04 60.61 0.70 0.14 cnd:pre:1s;cnd:pre:2s; +contenterait contenter ver 29.04 60.61 0.21 0.68 cnd:pre:3s; +contenteras contenter ver 29.04 60.61 0.05 0.00 ind:fut:2s; +contenterez contenter ver 29.04 60.61 0.04 0.14 ind:fut:2p; +contenteriez contenter ver 29.04 60.61 0.01 0.00 cnd:pre:2p; +contenterions contenter ver 29.04 60.61 0.01 0.14 cnd:pre:1p; +contenterons contenter ver 29.04 60.61 0.49 0.00 ind:fut:1p; +contenteront contenter ver 29.04 60.61 0.09 0.14 ind:fut:3p; +contentes content adj f p 178.94 86.49 1.46 0.41 +contentez contenter ver 29.04 60.61 1.77 0.61 imp:pre:2p;ind:pre:2p; +contentieux contentieux nom m 0.28 0.47 0.28 0.47 +contentiez contenter ver 29.04 60.61 0.05 0.07 ind:imp:2p; +contention contention nom f s 0.17 0.41 0.06 0.41 +contentions contention nom f p 0.17 0.41 0.11 0.00 +contentons contenter ver 29.04 60.61 0.51 0.34 imp:pre:1p;ind:pre:1p; +contents content adj m p 178.94 86.49 11.96 10.54 +contentèrent contenter ver 29.04 60.61 0.00 0.27 ind:pas:3p; +contenté contenter ver m s 29.04 60.61 0.91 5.47 par:pas; +contentée contenter ver f s 29.04 60.61 0.30 1.96 par:pas; +contentées contenter ver f p 29.04 60.61 0.00 0.07 par:pas; +contentés contenter ver m p 29.04 60.61 0.12 0.68 par:pas; +contenu contenu nom m s 6.34 16.82 6.31 16.42 +contenue contenir ver f s 30.07 58.92 0.55 2.70 par:pas; +contenues contenir ver f p 30.07 58.92 0.22 0.74 par:pas; +contenus contenir ver m p 30.07 58.92 0.09 0.61 par:pas; +conter conter ver 3.76 8.99 1.32 2.64 inf; +contera conter ver 3.76 8.99 0.03 0.00 ind:fut:3s; +conterai conter ver 3.76 8.99 0.17 0.07 ind:fut:1s; +conterait conter ver 3.76 8.99 0.00 0.07 cnd:pre:3s; +conteras conter ver 3.76 8.99 0.00 0.14 ind:fut:2s; +conterez conter ver 3.76 8.99 0.00 0.07 ind:fut:2p; +conterons conter ver 3.76 8.99 0.00 0.07 ind:fut:1p; +contes conte nom m p 13.30 15.07 4.46 8.38 +contesta contester ver 4.84 8.58 0.00 0.07 ind:pas:3s; +contestable contestable adj s 0.26 1.69 0.26 1.15 +contestables contestable adj p 0.26 1.69 0.00 0.54 +contestaient contester ver 4.84 8.58 0.11 0.20 ind:imp:3p; +contestais contester ver 4.84 8.58 0.14 0.20 ind:imp:1s;ind:imp:2s; +contestait contester ver 4.84 8.58 0.01 0.68 ind:imp:3s; +contestant contester ver 4.84 8.58 0.03 0.27 par:pre; +contestataire contestataire adj s 0.21 0.47 0.14 0.14 +contestataires contestataire nom p 0.26 0.54 0.19 0.34 +contestation contestation nom f s 0.97 3.24 0.69 2.70 +contestations contestation nom f p 0.97 3.24 0.29 0.54 +conteste contester ver 4.84 8.58 1.21 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contestent contester ver 4.84 8.58 0.10 0.41 ind:pre:3p; +contester contester ver 4.84 8.58 1.48 2.70 inf; +contestera contester ver 4.84 8.58 0.09 0.07 ind:fut:3s; +contesterai contester ver 4.84 8.58 0.03 0.07 ind:fut:1s; +contesterait contester ver 4.84 8.58 0.01 0.07 cnd:pre:3s; +contesteriez contester ver 4.84 8.58 0.00 0.07 cnd:pre:2p; +contesterons contester ver 4.84 8.58 0.01 0.00 ind:fut:1p; +contestes contester ver 4.84 8.58 0.29 0.20 ind:pre:2s; +contestez contester ver 4.84 8.58 0.17 0.00 imp:pre:2p;ind:pre:2p; +contestiez contester ver 4.84 8.58 0.00 0.07 ind:imp:2p; +contestons contester ver 4.84 8.58 0.02 0.07 ind:pre:1p; +contesté contester ver m s 4.84 8.58 0.69 0.81 par:pas; +contestée contester ver f s 4.84 8.58 0.11 0.74 par:pas; +contestées contester ver f p 4.84 8.58 0.26 0.41 par:pas; +contestés contester ver m p 4.84 8.58 0.08 0.27 par:pas; +conteur conteur nom m s 1.29 4.46 0.84 2.84 +conteurs conteur nom m p 1.29 4.46 0.30 1.01 +conteuse conteur nom f s 1.29 4.46 0.15 0.61 +contexte contexte nom m s 4.50 2.30 4.34 2.16 +contextes contexte nom m p 4.50 2.30 0.16 0.14 +contextualiser contextualiser ver 0.01 0.00 0.01 0.00 inf; +contextuel contextuel adj m s 0.01 0.00 0.01 0.00 +contez conter ver 3.76 8.99 0.38 0.00 imp:pre:2p; +conçois concevoir ver 18.75 27.84 1.31 1.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +conçoit concevoir ver 18.75 27.84 0.42 2.03 ind:pre:3s; +conçoivent concevoir ver 18.75 27.84 0.29 0.47 ind:pre:3p; +conçu concevoir ver m s 18.75 27.84 9.04 6.01 par:pas; +conçue concevoir ver f s 18.75 27.84 2.50 1.62 par:pas; +conçues concevoir ver f p 18.75 27.84 0.35 0.68 par:pas; +conçurent concevoir ver 18.75 27.84 0.01 0.27 ind:pas:3p; +conçus concevoir ver m p 18.75 27.84 0.86 1.42 ind:pas:1s;ind:pas:2s;par:pas; +conçut concevoir ver 18.75 27.84 0.22 1.62 ind:pas:3s; +contiendra contenir ver 30.07 58.92 0.22 0.27 ind:fut:3s; +contiendrai contenir ver 30.07 58.92 0.01 0.00 ind:fut:1s; +contiendraient contenir ver 30.07 58.92 0.00 0.20 cnd:pre:3p; +contiendrait contenir ver 30.07 58.92 0.07 0.47 cnd:pre:3s; +contienne contenir ver 30.07 58.92 0.17 0.20 sub:pre:1s;sub:pre:3s; +contiennent contenir ver 30.07 58.92 2.10 1.69 ind:pre:3p; +contiens contenir ver 30.07 58.92 0.33 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +contient contenir ver 30.07 58.92 13.23 7.36 ind:pre:3s; +contigu contigu adj m s 0.08 2.30 0.02 0.47 +contiguïté contiguïté nom f s 0.00 0.07 0.00 0.07 +contigus contigu adj m p 0.08 2.30 0.00 0.20 +contiguë contigu adj f s 0.08 2.30 0.02 1.35 +contiguës contigu adj f p 0.08 2.30 0.04 0.27 +continûment continûment adv 0.01 0.88 0.01 0.88 +continence continence nom f s 0.10 0.61 0.10 0.61 +continent continent nom m s 6.92 15.95 5.79 12.16 +continental continental adj m s 0.71 1.22 0.48 0.54 +continentale continental nom f s 1.00 0.34 0.29 0.07 +continentales continental adj f p 0.71 1.22 0.03 0.07 +continentaux continental nom m p 1.00 0.34 0.29 0.20 +continents continent nom m p 6.92 15.95 1.13 3.78 +contingence contingence nom f s 0.11 1.76 0.06 0.27 +contingences contingence nom f p 0.11 1.76 0.04 1.49 +contingent contingent nom m s 0.77 2.64 0.76 1.69 +contingente contingent adj f s 0.13 0.41 0.01 0.00 +contingentement contingentement nom m s 0.01 0.00 0.01 0.00 +contingentes contingent adj f p 0.13 0.41 0.00 0.07 +contingents contingent nom m p 0.77 2.64 0.01 0.95 +contingenté contingenter ver m s 0.00 0.14 0.00 0.14 par:pas; +continrent contenir ver 30.07 58.92 0.00 0.14 ind:pas:3p; +contins contenir ver 30.07 58.92 0.02 0.07 ind:pas:1s; +contint contenir ver 30.07 58.92 0.00 1.55 ind:pas:3s; +continu continu adj m s 2.79 9.66 1.58 8.92 +continua continuer ver 269.95 282.77 1.18 28.38 ind:pas:3s; +continuai continuer ver 269.95 282.77 0.03 3.51 ind:pas:1s; +continuaient continuer ver 269.95 282.77 0.70 16.96 ind:imp:3p; +continuais continuer ver 269.95 282.77 1.47 6.08 ind:imp:1s;ind:imp:2s; +continuait continuer ver 269.95 282.77 2.32 60.27 ind:imp:3s; +continuant continuer ver 269.95 282.77 1.27 15.34 par:pre; +continuassent continuer ver 269.95 282.77 0.00 0.14 sub:imp:3p; +continuateur continuateur nom m s 0.11 0.34 0.11 0.20 +continuateurs continuateur nom m p 0.11 0.34 0.00 0.14 +continuation continuation nom f s 1.09 1.01 1.09 1.01 +continue continuer ver 269.95 282.77 76.64 50.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +continuel continuel adj m s 1.22 6.76 0.21 1.49 +continuelle continuel adj f s 1.22 6.76 0.70 2.70 +continuellement continuellement adv 1.67 4.80 1.67 4.80 +continuelles continuel adj f p 1.22 6.76 0.20 1.69 +continuels continuel adj m p 1.22 6.76 0.11 0.88 +continuent continuer ver 269.95 282.77 7.61 9.59 ind:pre:3p; +continuer continuer ver 269.95 282.77 82.29 43.51 inf; +continuera continuer ver 269.95 282.77 6.04 2.57 ind:fut:3s; +continuerai continuer ver 269.95 282.77 3.73 1.08 ind:fut:1s; +continueraient continuer ver 269.95 282.77 0.13 1.22 cnd:pre:3p; +continuerais continuer ver 269.95 282.77 1.02 0.54 cnd:pre:1s;cnd:pre:2s; +continuerait continuer ver 269.95 282.77 0.85 2.91 cnd:pre:3s; +continueras continuer ver 269.95 282.77 1.03 0.41 ind:fut:2s; +continuerez continuer ver 269.95 282.77 0.58 0.61 ind:fut:2p; +continueriez continuer ver 269.95 282.77 0.02 0.00 cnd:pre:2p; +continuerons continuer ver 269.95 282.77 1.55 0.54 ind:fut:1p; +continueront continuer ver 269.95 282.77 1.36 1.42 ind:fut:3p; +continues continuer ver 269.95 282.77 11.66 2.23 ind:pre:2s;sub:pre:2s; +continuez continuer ver 269.95 282.77 47.08 4.73 imp:pre:2p;ind:pre:2p; +continuiez continuer ver 269.95 282.77 0.31 0.00 ind:imp:2p; +continuions continuer ver 269.95 282.77 0.19 1.42 ind:imp:1p;sub:pre:1p; +continuité continuité nom f s 0.45 4.73 0.45 4.73 +continuâmes continuer ver 269.95 282.77 0.05 0.34 ind:pas:1p; +continuons continuer ver 269.95 282.77 8.06 2.77 imp:pre:1p;ind:pre:1p; +continuât continuer ver 269.95 282.77 0.00 1.76 sub:imp:3s; +continus continu adj m p 2.79 9.66 0.17 0.41 +continuèrent continuer ver 269.95 282.77 0.54 4.39 ind:pas:3p; +continué continuer ver m s 269.95 282.77 12.03 18.65 par:pas; +continuée continuer ver f s 269.95 282.77 0.17 0.54 par:pas; +continuées continuer ver f p 269.95 282.77 0.00 0.27 par:pas; +continuum continuum nom m s 0.55 0.27 0.55 0.27 +continués continuer ver m p 269.95 282.77 0.03 0.07 par:pas; +contions conter ver 3.76 8.99 0.00 0.07 ind:imp:1p; +contondant contondant adj m s 0.82 0.47 0.78 0.07 +contondante contondant adj f s 0.82 0.47 0.01 0.00 +contondants contondant adj m p 0.82 0.47 0.04 0.41 +contorsion contorsion nom f s 0.16 2.23 0.02 0.47 +contorsionna contorsionner ver 0.20 2.09 0.00 0.07 ind:pas:3s; +contorsionnaient contorsionner ver 0.20 2.09 0.00 0.07 ind:imp:3p; +contorsionnait contorsionner ver 0.20 2.09 0.00 0.34 ind:imp:3s; +contorsionnant contorsionner ver 0.20 2.09 0.00 0.54 par:pre; +contorsionne contorsionner ver 0.20 2.09 0.13 0.20 imp:pre:2s;ind:pre:3s; +contorsionnent contorsionner ver 0.20 2.09 0.01 0.14 ind:pre:3p; +contorsionner contorsionner ver 0.20 2.09 0.04 0.07 inf; +contorsionniste contorsionniste nom s 0.37 0.14 0.34 0.14 +contorsionnistes contorsionniste nom p 0.37 0.14 0.04 0.00 +contorsionné contorsionner ver m s 0.20 2.09 0.01 0.27 par:pas; +contorsionnée contorsionner ver f s 0.20 2.09 0.00 0.14 par:pas; +contorsionnées contorsionner ver f p 0.20 2.09 0.00 0.07 par:pas; +contorsionnés contorsionner ver m p 0.20 2.09 0.00 0.20 par:pas; +contorsions contorsion nom f p 0.16 2.23 0.14 1.76 +contât conter ver 3.76 8.99 0.00 0.07 sub:imp:3s; +contour contour nom m s 2.09 16.28 0.87 5.00 +contourna contourner ver 6.68 19.59 0.00 2.84 ind:pas:3s; +contournai contourner ver 6.68 19.59 0.00 0.47 ind:pas:1s; +contournaient contourner ver 6.68 19.59 0.01 0.47 ind:imp:3p; +contournais contourner ver 6.68 19.59 0.00 0.07 ind:imp:1s; +contournait contourner ver 6.68 19.59 0.17 1.76 ind:imp:3s; +contournant contourner ver 6.68 19.59 0.23 2.91 par:pre; +contourne contourner ver 6.68 19.59 0.99 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contournement contournement nom m s 0.14 0.07 0.13 0.00 +contournements contournement nom m p 0.14 0.07 0.01 0.07 +contournent contourner ver 6.68 19.59 0.08 0.54 ind:pre:3p; +contourner contourner ver 6.68 19.59 3.63 5.47 inf; +contournera contourner ver 6.68 19.59 0.10 0.00 ind:fut:3s; +contournerai contourner ver 6.68 19.59 0.02 0.07 ind:fut:1s; +contournerais contourner ver 6.68 19.59 0.01 0.00 cnd:pre:1s; +contournerez contourner ver 6.68 19.59 0.11 0.00 ind:fut:2p; +contournerons contourner ver 6.68 19.59 0.02 0.07 ind:fut:1p; +contournes contourner ver 6.68 19.59 0.17 0.07 ind:pre:2s; +contournez contourner ver 6.68 19.59 0.20 0.00 imp:pre:2p;ind:pre:2p; +contournions contourner ver 6.68 19.59 0.01 0.14 ind:imp:1p; +contournons contourner ver 6.68 19.59 0.27 0.20 imp:pre:1p;ind:pre:1p; +contournèrent contourner ver 6.68 19.59 0.01 0.47 ind:pas:3p; +contourné contourner ver m s 6.68 19.59 0.59 1.82 par:pas; +contournée contourné adj f s 0.05 1.28 0.04 0.34 +contournées contourner ver f p 6.68 19.59 0.03 0.07 par:pas; +contournés contourner ver m p 6.68 19.59 0.01 0.07 par:pas; +contours contour nom m p 2.09 16.28 1.22 11.28 +contrôla contrôler ver 61.13 21.01 0.00 0.41 ind:pas:3s; +contrôlable contrôlable adj s 0.12 0.14 0.08 0.14 +contrôlables contrôlable adj p 0.12 0.14 0.04 0.00 +contrôlai contrôler ver 61.13 21.01 0.00 0.20 ind:pas:1s; +contrôlaient contrôler ver 61.13 21.01 0.44 0.47 ind:imp:3p; +contrôlais contrôler ver 61.13 21.01 0.60 0.27 ind:imp:1s;ind:imp:2s; +contrôlait contrôler ver 61.13 21.01 1.17 2.57 ind:imp:3s; +contrôlant contrôler ver 61.13 21.01 0.28 0.81 par:pre; +contrôle contrôle nom m s 66.28 19.66 63.48 17.43 +contrôlent contrôler ver 61.13 21.01 2.22 0.41 ind:pre:3p; +contrôler contrôler ver 61.13 21.01 24.91 7.57 inf; +contrôlera contrôler ver 61.13 21.01 0.33 0.00 ind:fut:3s; +contrôlerai contrôler ver 61.13 21.01 0.26 0.00 ind:fut:1s; +contrôlerais contrôler ver 61.13 21.01 0.02 0.00 cnd:pre:1s; +contrôlerait contrôler ver 61.13 21.01 0.22 0.07 cnd:pre:3s; +contrôleras contrôler ver 61.13 21.01 0.05 0.00 ind:fut:2s; +contrôlerez contrôler ver 61.13 21.01 0.06 0.00 ind:fut:2p; +contrôleriez contrôler ver 61.13 21.01 0.01 0.00 cnd:pre:2p; +contrôlerons contrôler ver 61.13 21.01 0.67 0.00 ind:fut:1p; +contrôleront contrôler ver 61.13 21.01 0.22 0.00 ind:fut:3p; +contrôles contrôle nom m p 66.28 19.66 2.80 2.23 +contrôleur contrôleur nom m s 8.93 5.14 7.43 4.26 +contrôleurs contrôleur nom m p 8.93 5.14 1.00 0.88 +contrôleuse contrôleur nom f s 8.93 5.14 0.49 0.00 +contrôlez contrôler ver 61.13 21.01 3.36 0.14 imp:pre:2p;ind:pre:2p; +contrôliez contrôler ver 61.13 21.01 0.09 0.00 ind:imp:2p; +contrôlions contrôler ver 61.13 21.01 0.06 0.14 ind:imp:1p; +contrôlâmes contrôler ver 61.13 21.01 0.00 0.07 ind:pas:1p; +contrôlons contrôler ver 61.13 21.01 1.62 0.00 imp:pre:1p;ind:pre:1p; +contrôlèrent contrôler ver 61.13 21.01 0.01 0.00 ind:pas:3p; +contrôlé contrôler ver m s 61.13 21.01 4.70 2.43 par:pas; +contrôlée contrôler ver f s 61.13 21.01 1.43 1.15 par:pas; +contrôlées contrôler ver f p 61.13 21.01 0.79 0.61 par:pas; +contrôlés contrôler ver m p 61.13 21.01 0.70 0.47 par:pas; +contra contrer ver 19.15 18.72 0.12 0.14 ind:pas:3s; +contraceptif contraceptif nom m s 0.55 0.07 0.26 0.00 +contraceptifs contraceptif nom m p 0.55 0.07 0.29 0.07 +contraception contraception nom f s 0.66 0.68 0.66 0.68 +contraceptive contraceptif adj f s 0.56 0.20 0.10 0.00 +contraceptives contraceptif adj f p 0.56 0.20 0.38 0.20 +contracta contracter ver 3.31 12.30 0.01 0.95 ind:pas:3s; +contractai contracter ver 3.31 12.30 0.00 0.14 ind:pas:1s; +contractaient contracter ver 3.31 12.30 0.00 0.68 ind:imp:3p; +contractais contracter ver 3.31 12.30 0.00 0.07 ind:imp:1s; +contractait contracter ver 3.31 12.30 0.00 0.95 ind:imp:3s; +contractant contractant adj m s 0.20 0.07 0.10 0.00 +contractantes contractant adj f p 0.20 0.07 0.10 0.07 +contractants contractant nom m p 0.06 0.14 0.04 0.14 +contracte contracter ver 3.31 12.30 0.61 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contractent contracter ver 3.31 12.30 0.40 0.47 ind:pre:3p; +contracter contracter ver 3.31 12.30 0.48 1.42 inf; +contracterait contracter ver 3.31 12.30 0.00 0.07 cnd:pre:3s; +contractez contracter ver 3.31 12.30 0.11 0.00 imp:pre:2p; +contractile contractile adj s 0.01 0.00 0.01 0.00 +contraction contraction nom f s 3.05 2.97 1.00 2.23 +contractions contraction nom f p 3.05 2.97 2.05 0.74 +contractons contracter ver 3.31 12.30 0.00 0.07 ind:pre:1p; +contractèrent contracter ver 3.31 12.30 0.00 0.27 ind:pas:3p; +contracté contracter ver m s 3.31 12.30 1.22 2.97 par:pas; +contractée contracter ver f s 3.31 12.30 0.36 0.88 par:pas; +contractuel contractuel nom m s 0.68 0.34 0.07 0.00 +contractuelle contractuel nom f s 0.68 0.34 0.58 0.07 +contractuellement contractuellement adv 0.13 0.00 0.13 0.00 +contractuelles contractuel adj f p 0.35 0.47 0.17 0.00 +contractuels contractuel nom m p 0.68 0.34 0.02 0.27 +contractées contracter ver f p 3.31 12.30 0.06 0.41 par:pas; +contracture contracture nom f s 0.04 0.34 0.03 0.27 +contractures contracture nom f p 0.04 0.34 0.01 0.07 +contractés contracter ver m p 3.31 12.30 0.03 0.34 par:pas; +contradicteur contradicteur nom m s 0.02 0.14 0.01 0.00 +contradicteurs contradicteur nom m p 0.02 0.14 0.01 0.14 +contradiction contradiction nom f s 2.09 12.97 1.28 7.36 +contradictions contradiction nom f p 2.09 12.97 0.81 5.61 +contradictoire contradictoire adj s 2.42 9.05 1.56 2.43 +contradictoirement contradictoirement adv 0.00 0.20 0.00 0.20 +contradictoires contradictoire adj p 2.42 9.05 0.87 6.62 +contraignît contraindre ver 6.66 24.73 0.00 0.14 sub:imp:3s; +contraignaient contraindre ver 6.66 24.73 0.00 0.41 ind:imp:3p; +contraignais contraindre ver 6.66 24.73 0.00 0.14 ind:imp:1s; +contraignait contraindre ver 6.66 24.73 0.10 1.89 ind:imp:3s; +contraignant contraignant adj m s 0.16 1.15 0.11 0.68 +contraignante contraignant adj f s 0.16 1.15 0.04 0.34 +contraignantes contraignant adj f p 0.16 1.15 0.02 0.14 +contraigne contraindre ver 6.66 24.73 0.04 0.07 sub:pre:3s; +contraignent contraindre ver 6.66 24.73 0.26 0.88 ind:pre:3p; +contraignit contraindre ver 6.66 24.73 0.00 1.96 ind:pas:3s; +contraindra contraindre ver 6.66 24.73 0.02 0.07 ind:fut:3s; +contraindrai contraindre ver 6.66 24.73 0.01 0.07 ind:fut:1s; +contraindraient contraindre ver 6.66 24.73 0.00 0.07 cnd:pre:3p; +contraindrais contraindre ver 6.66 24.73 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +contraindrait contraindre ver 6.66 24.73 0.00 0.14 cnd:pre:3s; +contraindre contraindre ver 6.66 24.73 1.21 3.99 inf; +contrains contraindre ver 6.66 24.73 0.06 0.27 ind:pre:1s;ind:pre:2s; +contraint contraindre ver m s 6.66 24.73 3.42 8.92 ind:pre:3s;par:pas; +contrainte contrainte nom f s 2.94 5.81 2.94 5.81 +contraintes contraint nom f p 1.13 3.31 1.13 3.31 +contraints contraindre ver m p 6.66 24.73 0.95 2.23 par:pas; +contraire contraire nom m s 62.13 126.01 62.03 125.47 +contrairement contrairement adv 8.79 10.41 8.79 10.41 +contraires contraire adj p 6.90 14.53 0.51 3.78 +contrait contrer ver 19.15 18.72 0.01 0.14 ind:imp:3s; +contralto contralto nom m s 0.28 0.27 0.28 0.20 +contraltos contralto nom m p 0.28 0.27 0.01 0.07 +contrant contrer ver 19.15 18.72 0.00 0.07 par:pre; +contrapunctique contrapunctique adj m s 0.00 0.07 0.00 0.07 +contrapuntique contrapuntique adj f s 0.02 0.00 0.02 0.00 +contraria contrarier ver 11.03 13.31 0.10 0.61 ind:pas:3s; +contrariaient contrarier ver 11.03 13.31 0.01 0.20 ind:imp:3p; +contrariais contrarier ver 11.03 13.31 0.01 0.07 ind:imp:1s; +contrariait contrarier ver 11.03 13.31 0.27 1.49 ind:imp:3s; +contrariant contrariant adj m s 0.84 1.55 0.76 1.15 +contrariante contrariant adj f s 0.84 1.55 0.04 0.20 +contrariantes contrariant adj f p 0.84 1.55 0.03 0.14 +contrariants contrariant adj m p 0.84 1.55 0.01 0.07 +contrarie contrarier ver 11.03 13.31 1.77 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contrarient contrarier ver 11.03 13.31 0.08 0.41 ind:pre:3p; +contrarier contrarier ver 11.03 13.31 2.72 5.81 inf; +contrarierai contrarier ver 11.03 13.31 0.00 0.14 ind:fut:1s; +contrarierait contrarier ver 11.03 13.31 0.23 0.20 cnd:pre:3s; +contrariez contrarier ver 11.03 13.31 0.23 0.00 imp:pre:2p;ind:pre:2p; +contrarions contrarier ver 11.03 13.31 0.02 0.07 imp:pre:1p; +contrariât contrarier ver 11.03 13.31 0.00 0.07 sub:imp:3s; +contrarié contrarier ver m s 11.03 13.31 3.29 1.55 par:pas; +contrariée contrarier ver f s 11.03 13.31 1.94 1.15 par:pas; +contrariées contrarié adj f p 2.62 4.12 0.03 0.27 +contrariés contrarié adj m p 2.62 4.12 0.41 0.27 +contrariété contrariété nom f s 0.58 3.99 0.38 3.18 +contrariétés contrariété nom f p 0.58 3.99 0.21 0.81 +contras contra nom m p 0.20 0.00 0.08 0.00 +contrasta contraster ver 0.21 8.58 0.00 0.07 ind:pas:3s; +contrastaient contraster ver 0.21 8.58 0.00 1.28 ind:imp:3p; +contrastait contraster ver 0.21 8.58 0.00 3.65 ind:imp:3s; +contrastant contraster ver 0.21 8.58 0.02 1.42 par:pre; +contraste contraste nom m s 1.48 12.50 1.23 11.62 +contrastent contraster ver 0.21 8.58 0.01 0.47 ind:pre:3p; +contraster contraster ver 0.21 8.58 0.09 0.14 inf; +contrasteraient contraster ver 0.21 8.58 0.01 0.00 cnd:pre:3p; +contrasterait contraster ver 0.21 8.58 0.01 0.07 cnd:pre:3s; +contrastes contraste nom m p 1.48 12.50 0.25 0.88 +contrastez contraster ver 0.21 8.58 0.01 0.00 imp:pre:2p; +contrastât contraster ver 0.21 8.58 0.00 0.14 sub:imp:3s; +contrasté contraster ver m s 0.21 8.58 0.02 0.07 par:pas; +contrastée contrasté adj f s 0.03 0.41 0.01 0.14 +contrastées contrasté adj f p 0.03 0.41 0.00 0.14 +contrastés contraster ver m p 0.21 8.58 0.00 0.07 par:pas; +contrat_type contrat_type nom m s 0.01 0.07 0.01 0.07 +contrat contrat nom m s 53.23 15.00 45.70 12.43 +contrats contrat nom m p 53.23 15.00 7.53 2.57 +contravention contravention nom f s 2.76 1.22 1.85 0.95 +contraventions contravention nom f p 2.76 1.22 0.91 0.27 +contre_accusation contre_accusation nom f p 0.01 0.00 0.01 0.00 +contre_alizé contre_alizé nom m p 0.00 0.07 0.00 0.07 +contre_allée contre_allée nom f s 0.05 0.34 0.04 0.20 +contre_allée contre_allée nom f p 0.05 0.34 0.01 0.14 +contre_amiral contre_amiral nom m s 0.19 0.07 0.19 0.07 +contre_appel contre_appel nom m s 0.00 0.07 0.00 0.07 +contre_assurance contre_assurance nom f s 0.00 0.07 0.00 0.07 +contre_attaquer contre_attaquer ver 0.71 1.96 0.01 0.07 ind:pas:3s; +contre_attaquer contre_attaquer ver 0.71 1.96 0.00 0.20 ind:imp:3p; +contre_attaquer contre_attaquer ver 0.71 1.96 0.00 0.07 ind:imp:3s; +contre_attaquer contre_attaquer ver 0.71 1.96 0.00 0.07 par:pre; +contre_attaque contre_attaque nom f s 1.46 2.16 1.35 1.69 +contre_attaquer contre_attaquer ver 0.71 1.96 0.07 0.20 ind:pre:3p; +contre_attaquer contre_attaquer ver 0.71 1.96 0.37 0.95 inf; +contre_attaquer contre_attaquer ver 0.71 1.96 0.01 0.00 ind:fut:3s; +contre_attaquer contre_attaquer ver 0.71 1.96 0.03 0.07 ind:fut:1p; +contre_attaque contre_attaque nom f p 1.46 2.16 0.11 0.47 +contre_attaquer contre_attaquer ver 0.71 1.96 0.03 0.07 ind:pre:1p; +contre_attaquer contre_attaquer ver 0.71 1.96 0.03 0.07 ind:pas:3p; +contre_attaquer contre_attaquer ver m s 0.71 1.96 0.07 0.07 par:pas; +contre_champ contre_champ nom m s 0.00 0.07 0.00 0.07 +contre_chant contre_chant nom m s 0.00 0.14 0.00 0.14 +contre_choc contre_choc nom m p 0.00 0.07 0.00 0.07 +contre_clé contre_clé nom f p 0.00 0.07 0.00 0.07 +contre_courant contre_courant nom m s 0.59 1.96 0.59 1.96 +contre_culture contre_culture nom f s 0.03 0.00 0.03 0.00 +contre_emploi contre_emploi nom m s 0.01 0.00 0.01 0.00 +contre_espionnage contre_espionnage nom m s 0.67 0.34 0.67 0.34 +contre_exemple contre_exemple nom m s 0.00 0.07 0.00 0.07 +contre_expertise contre_expertise nom f s 0.52 0.27 0.51 0.20 +contre_expertise contre_expertise nom f p 0.52 0.27 0.01 0.07 +contre_feu contre_feu nom m s 0.07 0.00 0.07 0.00 +contre_feux contre_feux nom m p 0.00 0.07 0.00 0.07 +contre_fiche contre_fiche nom f p 0.00 0.07 0.00 0.07 +contre_fil contre_fil nom m s 0.00 0.07 0.00 0.07 +contre_gré contre_gré nom m s 0.00 0.14 0.00 0.14 +contre_indication contre_indication nom f s 0.07 0.00 0.04 0.00 +contre_indication contre_indication nom f p 0.07 0.00 0.04 0.00 +contre_indiquer contre_indiquer ver m s 0.06 0.14 0.06 0.14 par:pas; +contre_interrogatoire contre_interrogatoire nom m s 0.48 0.00 0.46 0.00 +contre_interrogatoire contre_interrogatoire nom m p 0.48 0.00 0.02 0.00 +contre_jour contre_jour nom m s 0.39 6.01 0.39 6.01 +contre_la_montre contre_la_montre nom m s 0.80 0.00 0.80 0.00 +contre_lame contre_lame nom f s 0.00 0.07 0.00 0.07 +contre_lettre contre_lettre nom f s 0.00 0.14 0.00 0.14 +contre_manifestant contre_manifestant nom m p 0.00 0.14 0.00 0.14 +contre_manifester contre_manifester ver 0.00 0.07 0.00 0.07 ind:pre:3p; +contre_mesure contre_mesure nom f s 0.42 0.00 0.04 0.00 +contre_mesure contre_mesure nom f p 0.42 0.00 0.39 0.00 +contre_mine contre_mine nom f s 0.00 0.14 0.00 0.07 +contre_mine contre_mine nom f p 0.00 0.14 0.00 0.07 +contre_miner contre_miner ver m s 0.00 0.07 0.00 0.07 par:pas; +contre_nature contre_nature adj s 0.41 0.14 0.41 0.14 +contre_offensive contre_offensive nom f s 0.29 0.41 0.18 0.41 +contre_offensive contre_offensive nom f p 0.29 0.41 0.11 0.00 +contre_ordre contre_ordre nom m s 0.47 0.95 0.46 0.81 +contre_ordre contre_ordre nom m p 0.47 0.95 0.01 0.14 +contre_pente contre_pente nom f s 0.00 0.34 0.00 0.34 +contre_performance contre_performance nom f s 0.14 0.07 0.14 0.00 +contre_performance contre_performance nom f p 0.14 0.07 0.00 0.07 +contre_pied contre_pied nom m s 0.04 0.61 0.04 0.54 +contre_pied contre_pied nom m p 0.04 0.61 0.00 0.07 +contre_plaqué contre_plaqué nom m s 0.10 0.54 0.10 0.54 +contre_plongée contre_plongée nom f s 0.23 0.47 0.23 0.47 +contre_pouvoir contre_pouvoir nom m p 0.00 0.07 0.00 0.07 +contre_pression contre_pression nom f s 0.02 0.00 0.02 0.00 +contre_productif contre_productif adj m s 0.10 0.00 0.09 0.00 +contre_productif contre_productif adj f s 0.10 0.00 0.01 0.00 +contre_propagande contre_propagande nom f s 0.02 0.07 0.02 0.07 +contre_proposition contre_proposition nom f s 0.40 0.07 0.39 0.07 +contre_proposition contre_proposition nom f p 0.40 0.07 0.01 0.00 +contre_réaction contre_réaction nom f s 0.01 0.00 0.01 0.00 +contre_réforme contre_réforme nom f s 0.00 0.61 0.00 0.61 +contre_révolution contre_révolution nom f s 0.37 0.34 0.37 0.34 +contre_révolutionnaire contre_révolutionnaire adj s 0.14 0.27 0.03 0.00 +contre_révolutionnaire contre_révolutionnaire adj p 0.14 0.27 0.11 0.27 +contre_terrorisme contre_terrorisme nom m s 0.07 0.00 0.07 0.00 +contre_terroriste contre_terroriste adj f s 0.00 0.07 0.00 0.07 +contre_test contre_test nom m s 0.00 0.07 0.00 0.07 +contre_torpilleur contre_torpilleur nom m s 0.20 1.22 0.08 0.61 +contre_torpilleur contre_torpilleur nom m p 0.20 1.22 0.12 0.61 +contre_transfert contre_transfert nom m s 0.01 0.00 0.01 0.00 +contre_épreuve contre_épreuve nom f s 0.01 0.07 0.00 0.07 +contre_épreuve contre_épreuve nom f p 0.01 0.07 0.01 0.00 +contre_ut contre_ut nom m 0.04 0.07 0.04 0.07 +contre_voie contre_voie nom f s 0.00 0.27 0.00 0.27 +contre_vérité contre_vérité nom f s 0.02 0.07 0.02 0.07 +contre contre pre 313.71 591.15 313.71 591.15 +contrebalance contrebalancer ver 0.19 0.68 0.03 0.14 ind:pre:1s;ind:pre:3s; +contrebalancer contrebalancer ver 0.19 0.68 0.12 0.27 inf; +contrebalancé contrebalancer ver m s 0.19 0.68 0.01 0.00 par:pas; +contrebalancée contrebalancer ver f s 0.19 0.68 0.02 0.00 par:pas; +contrebalancés contrebalancer ver m p 0.19 0.68 0.01 0.07 par:pas; +contrebalançais contrebalancer ver 0.19 0.68 0.00 0.07 ind:imp:1s; +contrebalançait contrebalancer ver 0.19 0.68 0.00 0.14 ind:imp:3s; +contrebande contrebande nom f s 3.72 1.96 3.72 1.96 +contrebandier contrebandier nom m s 1.43 1.08 0.47 0.47 +contrebandiers contrebandier nom m p 1.43 1.08 0.94 0.54 +contrebandière contrebandier nom f s 1.43 1.08 0.01 0.07 +contrebas contrebas adv 0.23 6.49 0.23 6.49 +contrebasse contrebasse nom s 0.41 0.34 0.41 0.27 +contrebasses contrebasse nom p 0.41 0.34 0.00 0.07 +contrebassiste contrebassiste nom s 0.02 0.14 0.01 0.14 +contrebassistes contrebassiste nom p 0.02 0.14 0.01 0.00 +contrebraque contrebraquer ver 0.01 0.07 0.01 0.07 imp:pre:2s;ind:pre:1s; +contrecarraient contrecarrer ver 1.06 1.82 0.00 0.07 ind:imp:3p; +contrecarrais contrecarrer ver 1.06 1.82 0.00 0.07 ind:imp:1s; +contrecarre contrecarrer ver 1.06 1.82 0.08 0.54 imp:pre:2s;ind:pre:3s;sub:pre:3s; +contrecarrer contrecarrer ver 1.06 1.82 0.93 0.68 inf; +contrecarres contrecarrer ver 1.06 1.82 0.00 0.27 ind:pre:2s; +contrecarré contrecarrer ver m s 1.06 1.82 0.03 0.07 par:pas; +contrecarrée contrecarrer ver f s 1.06 1.82 0.03 0.14 par:pas; +contrechamp contrechamp nom m s 0.46 0.34 0.11 0.34 +contrechamps contrechamp nom m p 0.46 0.34 0.35 0.00 +contrecoeur contrecoeur nom m s 0.69 3.38 0.69 3.38 +contrecollé contrecollé adj m s 0.00 0.07 0.00 0.07 +contrecoup contrecoup nom m s 0.26 2.03 0.23 1.49 +contrecoups contrecoup nom m p 0.26 2.03 0.04 0.54 +contredît contredire ver 6.99 7.84 0.00 0.07 sub:imp:3s; +contredanse contredanse nom f s 0.50 0.54 0.30 0.27 +contredanses contredanse nom f p 0.50 0.54 0.20 0.27 +contredira contredire ver 6.99 7.84 0.05 0.07 ind:fut:3s; +contredirai contredire ver 6.99 7.84 0.18 0.07 ind:fut:1s; +contrediraient contredire ver 6.99 7.84 0.03 0.07 cnd:pre:3p; +contredirait contredire ver 6.99 7.84 0.08 0.14 cnd:pre:3s; +contredire contredire ver 6.99 7.84 3.03 3.51 inf; +contredirez contredire ver 6.99 7.84 0.03 0.00 ind:fut:2p; +contredis contredire ver 6.99 7.84 0.92 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +contredisaient contredire ver 6.99 7.84 0.34 0.20 ind:imp:3p; +contredisait contredire ver 6.99 7.84 0.27 0.81 ind:imp:3s; +contredisant contredire ver 6.99 7.84 0.01 0.47 par:pre; +contredise contredire ver 6.99 7.84 0.03 0.14 sub:pre:3s; +contredisent contredire ver 6.99 7.84 0.48 0.41 ind:pre:3p; +contredises contredire ver 6.99 7.84 0.02 0.00 sub:pre:2s; +contredisez contredire ver 6.99 7.84 0.11 0.00 imp:pre:2p;ind:pre:2p; +contredit contredire ver m s 6.99 7.84 1.34 1.28 ind:pre:3s;par:pas; +contredite contredire ver f s 6.99 7.84 0.04 0.20 par:pas; +contredites contredire ver f p 6.99 7.84 0.01 0.14 par:pas; +contredits contredire ver m p 6.99 7.84 0.04 0.07 par:pas; +contrefacteurs contrefacteur nom m p 0.00 0.07 0.00 0.07 +contrefaire contrefaire ver 0.51 0.74 0.22 0.20 inf; +contrefaisait contrefaire ver 0.51 0.74 0.00 0.14 ind:imp:3s; +contrefaisant contrefaire ver 0.51 0.74 0.00 0.14 par:pre; +contrefait contrefaire ver m s 0.51 0.74 0.17 0.14 ind:pre:3s;par:pas; +contrefaite contrefaire ver f s 0.51 0.74 0.07 0.00 par:pas; +contrefaits contrefait adj m p 0.17 0.95 0.07 0.14 +contrefaçon contrefaçon nom f s 1.12 1.15 0.70 0.95 +contrefaçons contrefaçon nom f p 1.12 1.15 0.42 0.20 +contreferait contrefaire ver 0.51 0.74 0.00 0.07 cnd:pre:3s; +contrefichais contreficher ver 0.59 0.68 0.00 0.20 ind:imp:1s; +contrefichait contreficher ver 0.59 0.68 0.00 0.20 ind:imp:3s; +contrefiche contreficher ver 0.59 0.68 0.59 0.27 ind:pre:1s;ind:pre:3s; +contrefort contrefort nom m s 0.08 3.65 0.02 0.47 +contreforts contrefort nom m p 0.08 3.65 0.06 3.18 +contrefous contrefoutre ver 0.89 0.54 0.72 0.20 ind:pre:1s;ind:pre:2s; +contrefout contrefoutre ver 0.89 0.54 0.16 0.14 ind:pre:3s; +contrefoutait contrefoutre ver 0.89 0.54 0.00 0.20 ind:imp:3s; +contrefoutre contrefoutre ver 0.89 0.54 0.01 0.00 inf; +contremaître contremaître nom m s 3.65 3.99 3.61 3.51 +contremaîtres contremaître nom m p 3.65 3.99 0.04 0.47 +contremaîtresse contremaîtresse nom f s 0.00 0.27 0.00 0.27 +contremander contremander ver 0.01 0.00 0.01 0.00 inf; +contremarches contremarche nom f p 0.00 0.07 0.00 0.07 +contremarques contremarque nom f p 0.00 0.07 0.00 0.07 +contrent contrer ver 19.15 18.72 0.02 0.00 ind:pre:3p; +contrepartie contrepartie nom f s 1.33 2.16 1.33 2.16 +contreplaqué contreplaqué nom m s 0.15 1.35 0.15 1.35 +contrepoids contrepoids nom m 0.56 1.82 0.56 1.82 +contrepoint contrepoint nom m s 0.33 1.62 0.33 1.62 +contrepoison contrepoison nom m s 0.00 0.47 0.00 0.27 +contrepoisons contrepoison nom m p 0.00 0.47 0.00 0.20 +contreproposition contreproposition nom f s 0.01 0.00 0.01 0.00 +contrepèterie contrepèterie nom f s 0.00 0.20 0.00 0.07 +contrepèteries contrepèterie nom f p 0.00 0.20 0.00 0.14 +contrer contrer ver 19.15 18.72 1.60 1.08 inf; +contrerai contrer ver 19.15 18.72 0.01 0.00 ind:fut:1s; +contrerait contrer ver 19.15 18.72 0.01 0.07 cnd:pre:3s; +contreras contrer ver 19.15 18.72 0.31 0.00 ind:fut:2s; +contreront contrer ver 19.15 18.72 0.00 0.07 ind:fut:3p; +contres contre nom_sup m p 5.43 5.81 0.08 0.07 +contrescarpe contrescarpe nom f s 0.14 0.61 0.14 0.61 +contreseing contreseing nom m s 0.21 0.07 0.21 0.07 +contresens contresens nom m 0.50 1.55 0.50 1.55 +contresignait contresigner ver 0.24 0.74 0.00 0.07 ind:imp:3s; +contresigne contresigner ver 0.24 0.74 0.01 0.14 ind:pre:1s;ind:pre:3s; +contresigner contresigner ver 0.24 0.74 0.06 0.14 inf; +contresigné contresigner ver m s 0.24 0.74 0.06 0.14 par:pas; +contresignée contresigner ver f s 0.24 0.74 0.10 0.07 par:pas; +contresignées contresigner ver f p 0.24 0.74 0.00 0.07 par:pas; +contresignés contresigner ver m p 0.24 0.74 0.01 0.14 par:pas; +contretemps contretemps nom m 1.43 3.18 1.43 3.18 +contretypés contretyper ver m p 0.00 0.07 0.00 0.07 par:pas; +contrevallation contrevallation nom f s 0.01 0.00 0.01 0.00 +contrevenaient contrevenir ver 0.31 1.08 0.00 0.07 ind:imp:3p; +contrevenait contrevenir ver 0.31 1.08 0.00 0.07 ind:imp:3s; +contrevenant contrevenir ver 0.31 1.08 0.21 0.07 par:pre; +contrevenants contrevenant nom m p 0.50 0.27 0.37 0.27 +contrevenez contrevenir ver 0.31 1.08 0.01 0.00 ind:pre:2p; +contrevenir contrevenir ver 0.31 1.08 0.04 0.47 inf; +contrevent contrevent nom m s 0.00 1.15 0.00 0.07 +contrevents contrevent nom m p 0.00 1.15 0.00 1.08 +contrevenu contrevenir ver m s 0.31 1.08 0.02 0.14 par:pas; +contreviendrait contrevenir ver 0.31 1.08 0.01 0.00 cnd:pre:3s; +contreviens contrevenir ver 0.31 1.08 0.00 0.07 ind:pre:1s; +contrevient contrevenir ver 0.31 1.08 0.01 0.20 ind:pre:3s; +contrevérité contrevérité nom f s 0.05 0.14 0.00 0.07 +contrevérités contrevérité nom f p 0.05 0.14 0.05 0.07 +contribua contribuer ver 5.63 18.11 0.14 0.81 ind:pas:3s; +contribuable contribuable nom s 2.55 0.41 1.25 0.07 +contribuables contribuable nom p 2.55 0.41 1.30 0.34 +contribuaient contribuer ver 5.63 18.11 0.00 1.42 ind:imp:3p; +contribuait contribuer ver 5.63 18.11 0.02 2.57 ind:imp:3s; +contribuant contribuer ver 5.63 18.11 0.06 0.20 par:pre; +contribue contribuer ver 5.63 18.11 0.97 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contribuent contribuer ver 5.63 18.11 0.16 0.74 ind:pre:3p; +contribuer contribuer ver 5.63 18.11 1.67 2.84 inf; +contribuera contribuer ver 5.63 18.11 0.05 0.61 ind:fut:3s; +contribueraient contribuer ver 5.63 18.11 0.01 0.34 cnd:pre:3p; +contribuerais contribuer ver 5.63 18.11 0.01 0.00 cnd:pre:2s; +contribuerait contribuer ver 5.63 18.11 0.03 0.54 cnd:pre:3s; +contribueras contribuer ver 5.63 18.11 0.01 0.00 ind:fut:2s; +contribuerez contribuer ver 5.63 18.11 0.04 0.00 ind:fut:2p; +contribueront contribuer ver 5.63 18.11 0.13 0.07 ind:fut:3p; +contribuez contribuer ver 5.63 18.11 0.01 0.14 ind:pre:2p; +contribuons contribuer ver 5.63 18.11 0.10 0.07 imp:pre:1p;ind:pre:1p; +contribuât contribuer ver 5.63 18.11 0.00 0.07 sub:imp:3s; +contributeur contributeur nom m s 0.02 0.00 0.02 0.00 +contribuèrent contribuer ver 5.63 18.11 0.00 0.27 ind:pas:3p; +contribution contribution nom f s 4.03 5.34 3.30 4.39 +contributions contribution nom f p 4.03 5.34 0.73 0.95 +contribué contribuer ver m s 5.63 18.11 2.20 5.68 par:pas; +contrista contrister ver 0.00 0.20 0.00 0.07 ind:pas:3s; +contristant contrister ver 0.00 0.20 0.00 0.07 par:pre; +contristées contrister ver f p 0.00 0.20 0.00 0.07 par:pas; +contrit contrit adj m s 0.19 2.50 0.14 1.89 +contrite contrit adj f s 0.19 2.50 0.02 0.41 +contrites contrit adj f p 0.19 2.50 0.01 0.00 +contrition contrition nom f s 0.87 1.76 0.87 1.69 +contritions contrition nom f p 0.87 1.76 0.00 0.07 +contrits contrit adj m p 0.19 2.50 0.01 0.20 +control control adj s 1.27 0.07 1.27 0.07 +contrordre contrordre nom m s 0.41 0.34 0.28 0.00 +contrordres contrordre nom m p 0.41 0.34 0.14 0.34 +controverse controverse nom f s 1.38 2.57 1.13 1.42 +controverses controverse nom f p 1.38 2.57 0.24 1.15 +controversé controversé adj m s 0.85 0.27 0.46 0.14 +controversée controversé adj f s 0.85 0.27 0.20 0.14 +controversées controversé adj f p 0.85 0.27 0.06 0.00 +controversés controversé adj m p 0.85 0.27 0.14 0.00 +contré contrer ver m s 19.15 18.72 0.27 0.27 par:pas; +contrée contrée nom f s 2.77 5.41 1.65 2.70 +contrées contrée nom f p 2.77 5.41 1.12 2.70 +contrés contrer ver m p 19.15 18.72 0.03 0.07 par:pas; +conté conter ver m s 3.76 8.99 0.47 0.88 par:pas; +contée conter ver f s 3.76 8.99 0.18 0.68 par:pas; +contées conter ver f p 3.76 8.99 0.01 0.20 par:pas; +contumace contumace nom f s 0.03 0.61 0.03 0.54 +contumaces contumace nom f p 0.03 0.61 0.00 0.07 +contumax contumax adj 0.00 0.20 0.00 0.20 +contés conter ver m p 3.76 8.99 0.01 0.14 par:pas; +contuse contus adj f s 0.00 0.07 0.00 0.07 +contusion contusion nom f s 3.23 0.74 1.03 0.47 +contusionné contusionné adj m s 0.07 0.14 0.06 0.00 +contusionnée contusionner ver f s 0.27 0.07 0.22 0.00 par:pas; +contusionnés contusionner ver m p 0.27 0.07 0.03 0.00 par:pas; +contusions contusion nom f p 3.23 0.74 2.19 0.27 +convînmes convenir ver 38.82 73.78 0.00 0.68 ind:pas:1p; +convînt convenir ver 38.82 73.78 0.00 0.34 sub:imp:3s; +convainc convaincre ver 56.67 46.35 0.70 0.34 ind:pre:3s; +convaincant convaincant adj m s 4.39 4.26 2.86 2.30 +convaincante convaincant adj f s 4.39 4.26 0.96 1.42 +convaincantes convaincant adj f p 4.39 4.26 0.09 0.27 +convaincants convaincant adj m p 4.39 4.26 0.49 0.27 +convaincra convaincre ver 56.67 46.35 0.84 0.00 ind:fut:3s; +convaincrai convaincre ver 56.67 46.35 0.47 0.07 ind:fut:1s; +convaincrait convaincre ver 56.67 46.35 0.14 0.34 cnd:pre:3s; +convaincras convaincre ver 56.67 46.35 0.34 0.07 ind:fut:2s; +convaincre convaincre ver 56.67 46.35 28.40 23.72 inf;; +convaincrez convaincre ver 56.67 46.35 0.16 0.07 ind:fut:2p; +convaincrons convaincre ver 56.67 46.35 0.03 0.07 ind:fut:1p; +convaincront convaincre ver 56.67 46.35 0.07 0.07 ind:fut:3p; +convaincs convaincre ver 56.67 46.35 0.72 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +convaincu convaincre ver m s 56.67 46.35 16.11 12.84 par:pas; +convaincue convaincre ver f s 56.67 46.35 5.57 3.92 par:pas; +convaincues convaincu adj f p 5.79 11.35 0.15 0.34 +convaincus convaincre ver m p 56.67 46.35 1.99 1.82 par:pas; +convainquaient convaincre ver 56.67 46.35 0.00 0.07 ind:imp:3p; +convainquait convaincre ver 56.67 46.35 0.00 0.61 ind:imp:3s; +convainquant convaincre ver 56.67 46.35 0.19 0.20 par:pre; +convainque convaincre ver 56.67 46.35 0.14 0.14 sub:pre:1s;sub:pre:3s; +convainquent convaincre ver 56.67 46.35 0.23 0.14 ind:pre:3p; +convainques convaincre ver 56.67 46.35 0.04 0.07 sub:pre:2s; +convainquez convaincre ver 56.67 46.35 0.32 0.00 imp:pre:2p;ind:pre:2p; +convainquiez convaincre ver 56.67 46.35 0.04 0.00 ind:imp:2p; +convainquirent convaincre ver 56.67 46.35 0.00 0.20 ind:pas:3p; +convainquis convaincre ver 56.67 46.35 0.01 0.34 ind:pas:1s; +convainquit convaincre ver 56.67 46.35 0.12 0.81 ind:pas:3s; +convainquons convaincre ver 56.67 46.35 0.01 0.07 imp:pre:1p; +convalescence convalescence nom f s 1.65 3.24 1.64 3.04 +convalescences convalescence nom f p 1.65 3.24 0.01 0.20 +convalescent convalescent adj m s 0.23 1.28 0.20 0.74 +convalescente convalescent adj f s 0.23 1.28 0.01 0.47 +convalescentes convalescent adj f p 0.23 1.28 0.01 0.07 +convalescents convalescent adj m p 0.23 1.28 0.01 0.00 +convalo convalo nom f s 0.01 0.34 0.01 0.27 +convalos convalo nom f p 0.01 0.34 0.00 0.07 +convecteur convecteur nom m s 0.01 0.00 0.01 0.00 +convection convection nom f s 0.06 0.00 0.06 0.00 +convenable convenable adj s 5.96 16.22 5.37 12.91 +convenablement convenablement adv 2.02 6.22 2.02 6.22 +convenables convenable adj p 5.96 16.22 0.59 3.31 +convenaient convenir ver 38.82 73.78 0.41 1.76 ind:imp:3p; +convenais convenir ver 38.82 73.78 0.20 0.20 ind:imp:1s;ind:imp:2s; +convenait convenir ver 38.82 73.78 1.72 15.34 ind:imp:3s; +convenance convenance nom f s 1.82 5.47 1.22 2.64 +convenances convenance nom f p 1.82 5.47 0.60 2.84 +convenant convenir ver 38.82 73.78 0.20 1.08 par:pre; +convenez convenir ver 38.82 73.78 0.62 0.61 imp:pre:2p;ind:pre:2p; +conveniez convenir ver 38.82 73.78 0.16 0.00 ind:imp:2p; +convenir convenir ver 38.82 73.78 2.02 8.85 inf; +convenons convenir ver 38.82 73.78 0.17 0.34 imp:pre:1p;ind:pre:1p; +convent convent nom m s 0.03 0.07 0.03 0.07 +conventicule conventicule nom m s 0.00 0.07 0.00 0.07 +convention convention nom f s 7.44 12.64 5.73 8.85 +conventionnel conventionnel adj m s 3.06 3.92 1.16 1.62 +conventionnelle conventionnel adj f s 3.06 3.92 1.40 1.28 +conventionnellement conventionnellement adv 0.01 0.20 0.01 0.20 +conventionnelles conventionnel adj f p 3.06 3.92 0.22 0.41 +conventionnels conventionnel adj m p 3.06 3.92 0.29 0.61 +conventionnée conventionné adj f s 0.14 0.00 0.14 0.00 +conventions convention nom f p 7.44 12.64 1.71 3.78 +conventuel conventuel adj m s 0.10 0.68 0.00 0.20 +conventuelle conventuel adj f s 0.10 0.68 0.10 0.34 +conventuellement conventuellement adv 0.00 0.07 0.00 0.07 +conventuelles conventuel adj f p 0.10 0.68 0.00 0.07 +conventuels conventuel adj m p 0.10 0.68 0.00 0.07 +convenu convenir ver m s 38.82 73.78 6.88 11.01 par:pas; +convenue convenu adj f s 2.21 5.07 0.11 1.22 +convenues convenu adj f p 2.21 5.07 0.01 0.41 +convenus convenir ver m p 38.82 73.78 0.09 1.15 par:pas; +converge converger ver 0.86 3.99 0.23 0.41 ind:pre:3s; +convergeaient converger ver 0.86 3.99 0.01 1.15 ind:imp:3p; +convergeait converger ver 0.86 3.99 0.00 0.27 ind:imp:3s; +convergeant converger ver 0.86 3.99 0.13 0.61 par:pre; +convergence convergence nom f s 0.24 0.68 0.24 0.68 +convergent converger ver 0.86 3.99 0.29 0.41 ind:pre:3p; +convergente convergent adj f s 0.08 1.08 0.01 0.14 +convergentes convergent adj f p 0.08 1.08 0.00 0.20 +convergents convergent adj m p 0.08 1.08 0.01 0.54 +convergeons converger ver 0.86 3.99 0.03 0.00 imp:pre:1p;ind:pre:1p; +converger converger ver 0.86 3.99 0.05 0.81 inf; +convergeraient converger ver 0.86 3.99 0.00 0.07 cnd:pre:3p; +convergez converger ver 0.86 3.99 0.08 0.00 imp:pre:2p; +convergèrent converger ver 0.86 3.99 0.00 0.14 ind:pas:3p; +convergé converger ver m s 0.86 3.99 0.02 0.14 par:pas; +convers convers adj m 0.01 0.95 0.01 0.95 +conversaient converser ver 0.70 4.53 0.00 0.34 ind:imp:3p; +conversais converser ver 0.70 4.53 0.02 0.00 ind:imp:1s; +conversait converser ver 0.70 4.53 0.00 0.61 ind:imp:3s; +conversant converser ver 0.70 4.53 0.02 0.68 par:pre; +conversation conversation nom f s 42.17 115.34 35.14 84.12 +conversations conversation nom f p 42.17 115.34 7.03 31.22 +converse converser ver 0.70 4.53 0.17 0.14 ind:pre:1s;ind:pre:3s; +conversent converser ver 0.70 4.53 0.01 0.14 ind:pre:3p; +converser converser ver 0.70 4.53 0.36 1.89 inf; +converses converse adj p 0.07 0.47 0.04 0.47 +conversez converser ver 0.70 4.53 0.03 0.00 ind:pre:2p; +conversiez converser ver 0.70 4.53 0.02 0.00 ind:imp:2p; +conversion conversion nom f s 1.91 3.92 1.71 3.65 +conversions conversion nom f p 1.91 3.92 0.20 0.27 +conversâmes converser ver 0.70 4.53 0.00 0.14 ind:pas:1p; +conversons converser ver 0.70 4.53 0.01 0.07 ind:pre:1p; +conversèrent converser ver 0.70 4.53 0.00 0.14 ind:pas:3p; +conversé converser ver m s 0.70 4.53 0.05 0.34 par:pas; +convertît convertir ver 9.34 10.34 0.00 0.14 sub:imp:3s; +converti convertir ver m s 9.34 10.34 2.41 2.30 par:pas; +convertible convertible adj s 0.24 0.34 0.20 0.20 +convertibles convertible adj p 0.24 0.34 0.04 0.14 +convertie convertir ver f s 9.34 10.34 0.52 0.88 par:pas; +converties convertir ver f p 9.34 10.34 0.17 0.14 par:pas; +convertir convertir ver 9.34 10.34 4.12 3.78 inf; +convertira convertir ver 9.34 10.34 0.02 0.07 ind:fut:3s; +convertirai convertir ver 9.34 10.34 0.03 0.00 ind:fut:1s; +convertirais convertir ver 9.34 10.34 0.04 0.07 cnd:pre:1s; +convertirait convertir ver 9.34 10.34 0.00 0.14 cnd:pre:3s; +convertirons convertir ver 9.34 10.34 0.01 0.00 ind:fut:1p; +convertis convertir ver m p 9.34 10.34 0.95 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +convertissaient convertir ver 9.34 10.34 0.00 0.07 ind:imp:3p; +convertissais convertir ver 9.34 10.34 0.01 0.07 ind:imp:1s; +convertissait convertir ver 9.34 10.34 0.05 0.27 ind:imp:3s; +convertissant convertir ver 9.34 10.34 0.01 0.27 par:pre; +convertisse convertir ver 9.34 10.34 0.09 0.07 sub:pre:1s;sub:pre:3s; +convertissent convertir ver 9.34 10.34 0.40 0.20 ind:pre:3p; +convertisseur convertisseur nom m s 0.35 0.00 0.22 0.00 +convertisseurs convertisseur nom m p 0.35 0.00 0.13 0.00 +convertissez convertir ver 9.34 10.34 0.07 0.07 imp:pre:2p;ind:pre:2p; +convertissions convertir ver 9.34 10.34 0.00 0.14 ind:imp:1p; +convertit convertir ver 9.34 10.34 0.45 0.47 ind:pre:3s;ind:pas:3s; +convexe convexe adj s 0.08 0.88 0.07 0.54 +convexes convexe adj p 0.08 0.88 0.01 0.34 +convexité convexité nom f s 0.00 0.20 0.00 0.20 +convia convier ver 2.63 7.50 0.02 0.81 ind:pas:3s; +conviaient convier ver 2.63 7.50 0.00 0.27 ind:imp:3p; +conviais convier ver 2.63 7.50 0.14 0.07 ind:imp:1s; +conviait convier ver 2.63 7.50 0.14 0.61 ind:imp:3s; +conviant convier ver 2.63 7.50 0.00 0.41 par:pre; +convict convict nom m s 0.02 0.07 0.01 0.00 +conviction conviction nom f s 13.32 37.23 9.27 31.49 +convictions conviction nom f p 13.32 37.23 4.05 5.74 +convicts convict nom m p 0.02 0.07 0.01 0.07 +convie convier ver 2.63 7.50 0.37 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conviendra convenir ver 38.82 73.78 1.31 0.61 ind:fut:3s; +conviendrai convenir ver 38.82 73.78 0.00 0.07 ind:fut:1s; +conviendraient convenir ver 38.82 73.78 0.07 0.07 cnd:pre:3p; +conviendrais convenir ver 38.82 73.78 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +conviendrait convenir ver 38.82 73.78 1.56 2.57 cnd:pre:3s; +conviendras convenir ver 38.82 73.78 0.17 0.14 ind:fut:2s; +conviendrez convenir ver 38.82 73.78 0.39 0.68 ind:fut:2p; +conviendrions convenir ver 38.82 73.78 0.00 0.07 cnd:pre:1p; +conviendrons convenir ver 38.82 73.78 0.01 0.07 ind:fut:1p; +conviendront convenir ver 38.82 73.78 0.01 0.07 ind:fut:3p; +convienne convenir ver 38.82 73.78 0.86 0.74 sub:pre:1s;sub:pre:3s; +conviennent convenir ver 38.82 73.78 1.51 2.03 ind:pre:3p; +conviens convenir ver 38.82 73.78 0.96 3.45 imp:pre:2s;ind:pre:1s;ind:pre:2s; +convient convenir ver 38.82 73.78 19.21 16.89 ind:pre:3s; +convier convier ver 2.63 7.50 0.44 0.41 inf; +conviera convier ver 2.63 7.50 0.00 0.07 ind:fut:3s; +convierai convier ver 2.63 7.50 0.01 0.00 ind:fut:1s; +convierait convier ver 2.63 7.50 0.01 0.07 cnd:pre:3s; +conviez convier ver 2.63 7.50 0.16 0.00 imp:pre:2p;ind:pre:2p; +convinrent convenir ver 38.82 73.78 0.00 1.08 ind:pas:3p; +convins convenir ver 38.82 73.78 0.01 0.27 ind:pas:1s; +convint convenir ver 38.82 73.78 0.12 2.77 ind:pas:3s; +convions convier ver 2.63 7.50 0.01 0.00 ind:pre:1p; +convièrent convier ver 2.63 7.50 0.00 0.07 ind:pas:3p; +convié convier ver m s 2.63 7.50 0.60 1.42 par:pas; +conviée convier ver f s 2.63 7.50 0.13 0.27 par:pas; +conviées convier ver f p 2.63 7.50 0.00 0.14 par:pas; +conviés convier ver m p 2.63 7.50 0.15 1.35 par:pas; +convive convive nom s 0.67 6.49 0.15 1.08 +convives convive nom p 0.67 6.49 0.53 5.41 +convivial convivial adj m s 0.67 0.27 0.49 0.14 +conviviale convivial adj f s 0.67 0.27 0.06 0.07 +conviviales convivial adj f p 0.67 0.27 0.02 0.07 +convivialisez convivialiser ver 0.00 0.07 0.00 0.07 ind:pre:2p; +convivialité convivialité nom f s 0.42 0.27 0.42 0.27 +conviviaux convivial adj m p 0.67 0.27 0.10 0.00 +convocable convocable adj s 0.01 0.00 0.01 0.00 +convocation convocation nom f s 1.78 3.65 1.56 3.18 +convocations convocation nom f p 1.78 3.65 0.22 0.47 +convoi convoi nom m s 9.39 18.78 7.86 11.35 +convoie convoyer ver 0.51 1.89 0.04 0.00 ind:pre:3s; +convois convoi nom m p 9.39 18.78 1.53 7.43 +convoita convoiter ver 2.31 5.27 0.00 0.07 ind:pas:3s; +convoitaient convoiter ver 2.31 5.27 0.02 0.47 ind:imp:3p; +convoitais convoiter ver 2.31 5.27 0.07 0.61 ind:imp:1s;ind:imp:2s; +convoitait convoiter ver 2.31 5.27 0.16 0.81 ind:imp:3s; +convoitant convoiter ver 2.31 5.27 0.02 0.14 par:pre; +convoite convoiter ver 2.31 5.27 0.69 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +convoitent convoiter ver 2.31 5.27 0.13 0.20 ind:pre:3p; +convoiter convoiter ver 2.31 5.27 0.20 0.34 inf; +convoiteras convoiter ver 2.31 5.27 0.04 0.00 ind:fut:2s; +convoiteront convoiter ver 2.31 5.27 0.10 0.00 ind:fut:3p; +convoiteur convoiteur adj m s 0.00 0.07 0.00 0.07 +convoiteux convoiteux adj m p 0.00 0.07 0.00 0.07 +convoitez convoiter ver 2.31 5.27 0.12 0.20 ind:pre:2p; +convoitise convoitise nom f s 1.05 5.20 0.80 4.05 +convoitises convoitise nom f p 1.05 5.20 0.25 1.15 +convoité convoiter ver m s 2.31 5.27 0.57 0.88 par:pas; +convoitée convoiter ver f s 2.31 5.27 0.13 0.54 par:pas; +convoitées convoiter ver f p 2.31 5.27 0.02 0.14 par:pas; +convoités convoiter ver m p 2.31 5.27 0.05 0.41 par:pas; +convola convoler ver 0.22 0.61 0.00 0.07 ind:pas:3s; +convolait convoler ver 0.22 0.61 0.00 0.07 ind:imp:3s; +convolant convoler ver 0.22 0.61 0.00 0.07 par:pre; +convolent convoler ver 0.22 0.61 0.00 0.07 ind:pre:3p; +convoler convoler ver 0.22 0.61 0.19 0.20 inf; +convolèrent convoler ver 0.22 0.61 0.01 0.00 ind:pas:3p; +convolé convoler ver m s 0.22 0.61 0.02 0.14 par:pas; +convoqua convoquer ver 10.89 19.32 0.14 2.91 ind:pas:3s; +convoquai convoquer ver 10.89 19.32 0.01 0.41 ind:pas:1s; +convoquaient convoquer ver 10.89 19.32 0.00 0.20 ind:imp:3p; +convoquait convoquer ver 10.89 19.32 0.01 1.62 ind:imp:3s; +convoquant convoquer ver 10.89 19.32 0.17 0.41 par:pre; +convoque convoquer ver 10.89 19.32 2.30 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +convoquent convoquer ver 10.89 19.32 0.06 0.14 ind:pre:3p; +convoquer convoquer ver 10.89 19.32 1.94 2.09 inf;; +convoquera convoquer ver 10.89 19.32 0.17 0.27 ind:fut:3s; +convoquerai convoquer ver 10.89 19.32 0.07 0.00 ind:fut:1s; +convoqueraient convoquer ver 10.89 19.32 0.00 0.07 cnd:pre:3p; +convoquerait convoquer ver 10.89 19.32 0.03 0.20 cnd:pre:3s; +convoquerez convoquer ver 10.89 19.32 0.02 0.00 ind:fut:2p; +convoqueront convoquer ver 10.89 19.32 0.01 0.00 ind:fut:3p; +convoquez convoquer ver 10.89 19.32 0.71 0.14 imp:pre:2p;ind:pre:2p; +convoquions convoquer ver 10.89 19.32 0.00 0.07 ind:imp:1p; +convoquons convoquer ver 10.89 19.32 0.07 0.00 imp:pre:1p;ind:pre:1p; +convoquât convoquer ver 10.89 19.32 0.00 0.14 sub:imp:3s; +convoquèrent convoquer ver 10.89 19.32 0.01 0.00 ind:pas:3p; +convoqué convoquer ver m s 10.89 19.32 3.26 5.81 par:pas; +convoquée convoquer ver f s 10.89 19.32 1.02 0.81 par:pas; +convoquées convoquer ver f p 10.89 19.32 0.20 0.20 par:pas; +convoqués convoquer ver m p 10.89 19.32 0.68 1.69 par:pas; +convoya convoyer ver 0.51 1.89 0.00 0.07 ind:pas:3s; +convoyage convoyage nom m s 0.10 0.20 0.08 0.14 +convoyages convoyage nom m p 0.10 0.20 0.02 0.07 +convoyaient convoyer ver 0.51 1.89 0.00 0.07 ind:imp:3p; +convoyait convoyer ver 0.51 1.89 0.01 0.20 ind:imp:3s; +convoyant convoyer ver 0.51 1.89 0.11 0.20 par:pre; +convoyer convoyer ver 0.51 1.89 0.32 0.81 inf; +convoyeur convoyeur nom m s 1.10 0.95 0.58 0.54 +convoyeurs convoyeur nom m p 1.10 0.95 0.51 0.27 +convoyeuse convoyeur nom f s 1.10 0.95 0.01 0.14 +convoyé convoyer ver m s 0.51 1.89 0.02 0.14 par:pas; +convoyée convoyer ver f s 0.51 1.89 0.00 0.07 par:pas; +convoyés convoyer ver m p 0.51 1.89 0.01 0.34 par:pas; +convulsa convulser ver 0.84 1.42 0.00 0.07 ind:pas:3s; +convulsai convulser ver 0.84 1.42 0.00 0.07 ind:pas:1s; +convulsais convulser ver 0.84 1.42 0.00 0.07 ind:imp:1s; +convulsait convulser ver 0.84 1.42 0.04 0.27 ind:imp:3s; +convulsant convulser ver 0.84 1.42 0.00 0.14 par:pre; +convulse convulser ver 0.84 1.42 0.42 0.14 ind:pre:3s; +convulser convulser ver 0.84 1.42 0.19 0.07 inf; +convulsif convulsif adj m s 0.39 3.04 0.13 1.35 +convulsifs convulsif adj m p 0.39 3.04 0.14 0.68 +convulsion convulsion nom f s 1.60 5.61 0.19 1.28 +convulsionnaire convulsionnaire nom s 0.00 0.14 0.00 0.14 +convulsionne convulsionner ver 0.00 0.20 0.00 0.14 ind:pre:1s;ind:pre:3s; +convulsionnée convulsionner ver f s 0.00 0.20 0.00 0.07 par:pas; +convulsions convulsion nom f p 1.60 5.61 1.42 4.32 +convulsive convulsif adj f s 0.39 3.04 0.13 0.41 +convulsivement convulsivement adv 0.01 1.35 0.01 1.35 +convulsives convulsif adj f p 0.39 3.04 0.00 0.61 +convulsé convulser ver m s 0.84 1.42 0.07 0.34 par:pas; +convulsée convulsé adj f s 0.11 0.74 0.10 0.27 +convulsées convulsé adj f p 0.11 0.74 0.00 0.07 +convulsés convulsé adj m p 0.11 0.74 0.01 0.00 +cooccupant cooccupant adj m s 0.00 0.07 0.00 0.07 +cookie cookie nom m s 8.22 0.07 3.08 0.07 +cookies cookie nom m p 8.22 0.07 5.14 0.00 +cool cool adj 63.63 3.18 63.63 3.18 +coolie_pousse coolie_pousse nom m s 0.01 0.00 0.01 0.00 +coolie coolie nom m s 0.16 0.41 0.13 0.20 +coolies coolie nom m p 0.16 0.41 0.03 0.20 +coolos coolos adj 0.04 0.41 0.04 0.41 +cooptant coopter ver 0.16 0.07 0.01 0.00 par:pre; +cooptation cooptation nom f s 0.01 0.14 0.01 0.14 +coopter coopter ver 0.16 0.07 0.01 0.07 inf; +coopère coopérer ver 11.91 1.08 1.60 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coopèrent coopérer ver 11.91 1.08 0.42 0.14 ind:pre:3p; +coopères coopérer ver 11.91 1.08 0.49 0.07 ind:pre:2s; +coopté coopter ver m s 0.16 0.07 0.14 0.00 par:pas; +coopé coopé nom f s 0.02 0.27 0.02 0.27 +coopérais coopérer ver 11.91 1.08 0.04 0.00 ind:imp:1s;ind:imp:2s; +coopérait coopérer ver 11.91 1.08 0.20 0.07 ind:imp:3s; +coopérant coopérer ver 11.91 1.08 0.13 0.00 par:pre; +coopérante coopérant nom f s 0.10 0.14 0.03 0.00 +coopérants coopérant nom m p 0.10 0.14 0.05 0.07 +coopérateur coopérateur nom m s 0.03 0.00 0.03 0.00 +coopératif coopératif adj m s 2.65 0.47 1.53 0.27 +coopératifs coopératif adj m p 2.65 0.47 0.41 0.00 +coopération coopération nom f s 5.21 6.96 5.21 6.96 +coopératisme coopératisme nom m s 0.01 0.00 0.01 0.00 +coopérative coopérative nom f s 1.66 0.74 1.53 0.61 +coopératives coopératif adj f p 2.65 0.47 0.25 0.07 +coopérer coopérer ver 11.91 1.08 6.05 0.54 inf; +coopérera coopérer ver 11.91 1.08 0.14 0.00 ind:fut:3s; +coopérerai coopérer ver 11.91 1.08 0.10 0.00 ind:fut:1s; +coopéreraient coopérer ver 11.91 1.08 0.01 0.14 cnd:pre:3p; +coopérerais coopérer ver 11.91 1.08 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +coopérerez coopérer ver 11.91 1.08 0.04 0.00 ind:fut:2p; +coopéreriez coopérer ver 11.91 1.08 0.02 0.00 cnd:pre:2p; +coopérerons coopérer ver 11.91 1.08 0.07 0.00 ind:fut:1p; +coopéreront coopérer ver 11.91 1.08 0.03 0.00 ind:fut:3p; +coopérez coopérer ver 11.91 1.08 1.26 0.00 imp:pre:2p;ind:pre:2p; +coopériez coopérer ver 11.91 1.08 0.19 0.00 ind:imp:2p; +coopérions coopérer ver 11.91 1.08 0.06 0.00 ind:imp:1p; +coopérons coopérer ver 11.91 1.08 0.07 0.00 ind:pre:1p; +coopéré coopérer ver m s 11.91 1.08 0.96 0.07 par:pas; +coordinateur coordinateur nom m s 0.83 0.07 0.54 0.07 +coordinateurs coordinateur nom m p 0.83 0.07 0.04 0.00 +coordination coordination nom f s 1.36 2.16 1.36 2.16 +coordinatrice coordinateur nom f s 0.83 0.07 0.26 0.00 +coordonna coordonner ver 2.15 2.09 0.01 0.07 ind:pas:3s; +coordonnaient coordonner ver 2.15 2.09 0.02 0.07 ind:imp:3p; +coordonnait coordonner ver 2.15 2.09 0.01 0.00 ind:imp:3s; +coordonnant coordonner ver 2.15 2.09 0.16 0.00 par:pre; +coordonnateur coordonnateur adj m s 0.03 0.00 0.03 0.00 +coordonne coordonner ver 2.15 2.09 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coordonner coordonner ver 2.15 2.09 0.96 1.22 inf; +coordonnera coordonner ver 2.15 2.09 0.07 0.07 ind:fut:3s; +coordonnerait coordonner ver 2.15 2.09 0.01 0.07 cnd:pre:3s; +coordonnez coordonner ver 2.15 2.09 0.19 0.00 imp:pre:2p;ind:pre:2p; +coordonnons coordonner ver 2.15 2.09 0.00 0.07 imp:pre:1p; +coordonné coordonner ver m s 2.15 2.09 0.16 0.14 par:pas; +coordonnée coordonnée nom f s 8.30 1.55 0.24 0.00 +coordonnées coordonnée nom f p 8.30 1.55 8.05 1.55 +coordonnés coordonné nom m p 0.16 0.07 0.16 0.07 +cop cop nom f s 0.63 0.27 0.63 0.27 +copaïba copaïba nom m s 0.00 0.07 0.00 0.07 +copain copain nom m s 146.92 103.18 61.14 34.05 +copains copain nom m p 146.92 103.18 30.47 49.93 +copal copal nom m s 0.01 0.00 0.01 0.00 +copeau copeau nom m s 0.67 5.41 0.10 0.34 +copeaux copeau nom m p 0.67 5.41 0.57 5.07 +copernicienne copernicien adj f s 0.00 0.14 0.00 0.14 +copia copier ver 8.07 8.45 0.01 0.07 ind:pas:3s; +copiable copiable adj m s 0.01 0.00 0.01 0.00 +copiage copiage nom m s 0.01 0.00 0.01 0.00 +copiai copier ver 8.07 8.45 0.00 0.07 ind:pas:1s; +copiaient copier ver 8.07 8.45 0.01 0.27 ind:imp:3p; +copiais copier ver 8.07 8.45 0.30 0.07 ind:imp:1s;ind:imp:2s; +copiait copier ver 8.07 8.45 0.01 0.47 ind:imp:3s; +copiant copier ver 8.07 8.45 0.03 0.41 par:pre; +copie copie nom f s 25.70 14.26 16.88 8.45 +copient copier ver 8.07 8.45 0.20 0.07 ind:pre:3p; +copier copier ver 8.07 8.45 2.96 2.70 inf; +copiera copier ver 8.07 8.45 0.04 0.00 ind:fut:3s; +copierai copier ver 8.07 8.45 0.01 0.00 ind:fut:1s; +copierait copier ver 8.07 8.45 0.03 0.07 cnd:pre:3s; +copieras copier ver 8.07 8.45 0.14 0.34 ind:fut:2s; +copierez copier ver 8.07 8.45 0.00 0.14 ind:fut:2p; +copieront copier ver 8.07 8.45 0.02 0.07 ind:fut:3p; +copies copie nom f p 25.70 14.26 8.82 5.81 +copieur copieur nom m s 0.28 0.20 0.19 0.07 +copieurs copieur nom m p 0.28 0.20 0.04 0.14 +copieuse copieux adj f s 0.59 3.04 0.11 0.88 +copieusement copieusement adv 0.13 2.57 0.13 2.57 +copieuses copieuse nom f p 0.01 0.00 0.01 0.00 +copieux copieux adj m s 0.59 3.04 0.48 1.82 +copiez copier ver 8.07 8.45 0.34 0.00 imp:pre:2p;ind:pre:2p; +copilote copilote nom m s 1.50 0.00 1.50 0.00 +copinage copinage nom m s 0.08 0.27 0.08 0.27 +copinait copiner ver 1.26 0.47 0.01 0.14 ind:imp:3s; +copine copain nom f s 146.92 103.18 55.32 12.43 +copiner copiner ver 1.26 0.47 0.09 0.07 inf; +copines copine nom f p 10.57 0.00 10.57 0.00 +copineur copineur adj m s 0.00 0.20 0.00 0.07 +copineurs copineur adj m p 0.00 0.20 0.00 0.07 +copineuse copineur adj f s 0.00 0.20 0.00 0.07 +copiniez copiner ver 1.26 0.47 0.01 0.00 ind:imp:2p; +copiné copiner ver m s 1.26 0.47 0.02 0.07 par:pas; +copiste copiste nom s 0.40 0.81 0.22 0.74 +copistes copiste nom p 0.40 0.81 0.17 0.07 +copié copier ver m s 8.07 8.45 2.17 1.15 par:pas; +copiée copier ver f s 8.07 8.45 0.29 0.54 par:pas; +copiées copier ver f p 8.07 8.45 0.28 0.20 par:pas; +copiés copier ver m p 8.07 8.45 0.20 0.34 par:pas; +copla copla nom f s 0.00 0.07 0.00 0.07 +coppa coppa nom f s 0.01 0.00 0.01 0.00 +copra copra nom m s 0.04 0.07 0.04 0.07 +câpre câpre nom f s 0.31 0.47 0.11 0.00 +câpres câpre nom f p 0.31 0.47 0.20 0.47 +câpriers câprier nom m p 0.00 0.07 0.00 0.07 +coprins coprin nom m p 0.00 0.07 0.00 0.07 +coproculture coproculture nom f s 0.01 0.00 0.01 0.00 +coproducteur coproducteur nom m s 0.11 0.07 0.09 0.00 +coproducteurs coproducteur nom m p 0.11 0.07 0.02 0.07 +coproduction coproduction nom f s 0.16 0.27 0.16 0.27 +coproduire coproduire ver 0.04 0.07 0.01 0.07 inf; +coproduit coproduire ver m s 0.04 0.07 0.03 0.00 ind:pre:3s;par:pas; +coprologie coprologie nom f s 0.00 0.07 0.00 0.07 +coprologique coprologique adj f s 0.00 0.14 0.00 0.14 +coprophage coprophage nom s 0.00 0.20 0.00 0.20 +coprophagie coprophagie nom f s 0.20 0.00 0.20 0.00 +coprophile coprophile nom s 0.00 0.07 0.00 0.07 +coprophilie coprophilie nom f s 0.02 0.00 0.02 0.00 +copropriétaire copropriétaire nom s 0.29 0.27 0.11 0.07 +copropriétaires copropriétaire nom p 0.29 0.27 0.18 0.20 +copropriété copropriété nom f s 0.56 0.41 0.56 0.41 +coprésidence coprésidence nom f s 0.01 0.00 0.01 0.00 +coprésident coprésider ver 0.01 0.00 0.01 0.00 ind:pre:3p; +cops cops nom m 0.41 0.07 0.41 0.07 +copte copte nom m s 0.02 0.34 0.02 0.14 +coptes copte nom m p 0.02 0.34 0.00 0.20 +copula copuler ver 1.19 0.54 0.01 0.07 ind:pas:3s; +copulait copuler ver 1.19 0.54 0.01 0.07 ind:imp:3s; +copulant copuler ver 1.19 0.54 0.02 0.07 par:pre; +copulation copulation nom f s 0.19 0.47 0.17 0.41 +copulations copulation nom f p 0.19 0.47 0.02 0.07 +copule copule nom f s 0.14 0.00 0.14 0.00 +copulent copuler ver 1.19 0.54 0.25 0.00 ind:pre:3p; +copuler copuler ver 1.19 0.54 0.66 0.34 inf; +copulez copuler ver 1.19 0.54 0.10 0.00 ind:pre:2p; +copulé copuler ver m s 1.19 0.54 0.15 0.00 par:pas; +copyright copyright nom m s 0.41 0.14 0.41 0.14 +coq_à_l_âne coq_à_l_âne nom m 0.00 0.14 0.00 0.14 +coq coq nom m s 12.47 19.12 10.74 15.68 +coqs coq nom m p 12.47 19.12 1.73 3.45 +coquard coquard nom m s 0.34 0.41 0.30 0.34 +coquards coquard nom m p 0.34 0.41 0.03 0.07 +coquart coquart nom m s 0.11 0.14 0.11 0.07 +coquarts coquart nom m p 0.11 0.14 0.00 0.07 +coque coque nom f s 5.00 12.64 4.60 9.93 +coquebin coquebin adj m s 0.00 0.34 0.00 0.34 +coquelet coquelet nom m s 0.10 0.07 0.10 0.07 +coquelicot coquelicot nom m s 1.05 3.24 0.71 0.95 +coquelicots coquelicot nom m p 1.05 3.24 0.34 2.30 +coquelle coquelle nom f s 0.00 0.07 0.00 0.07 +coqueluche coqueluche nom f s 1.01 2.43 0.97 2.43 +coqueluches coqueluche nom f p 1.01 2.43 0.04 0.00 +coquemar coquemar nom m s 0.00 0.07 0.00 0.07 +coquerelle coquerelle nom f s 0.03 0.07 0.03 0.07 +coquerie coquerie nom f s 0.05 0.00 0.05 0.00 +coqueron coqueron nom m s 0.02 0.00 0.02 0.00 +coques coque nom f p 5.00 12.64 0.40 2.70 +coquet coquet adj m s 1.57 6.55 0.77 2.70 +coquetel coquetel nom m s 0.00 0.07 0.00 0.07 +coqueter coqueter ver 0.01 0.00 0.01 0.00 inf; +coquetier coquetier nom m s 0.29 0.61 0.14 0.47 +coquetiers coquetier nom m p 0.29 0.61 0.15 0.14 +coquets coquet adj m p 1.57 6.55 0.02 0.41 +coquette coquet adj f s 1.57 6.55 0.77 2.84 +coquettement coquettement adv 0.00 0.41 0.00 0.41 +coquetterie coquetterie nom f s 0.63 7.03 0.61 6.22 +coquetteries coquetterie nom f p 0.63 7.03 0.01 0.81 +coquettes coquette nom f p 0.71 2.23 0.13 0.27 +coquillage coquillage nom m s 2.66 10.47 0.77 3.51 +coquillages coquillage nom m p 2.66 10.47 1.89 6.96 +coquillard coquillard nom m s 0.02 0.74 0.02 0.68 +coquillards coquillard nom m p 0.02 0.74 0.00 0.07 +coquillart coquillart nom m s 0.00 0.07 0.00 0.07 +coquille coquille nom f s 4.92 13.45 3.19 9.46 +coquilles coquille nom f p 4.92 13.45 1.73 3.99 +coquillettes coquillette nom f p 0.01 0.61 0.01 0.61 +coquilleux coquilleux adj m s 0.00 0.07 0.00 0.07 +coquin coquin nom m s 7.55 4.26 4.96 2.43 +coquine coquin nom f s 7.55 4.26 1.53 0.27 +coquinement coquinement adv 0.00 0.07 0.00 0.07 +coquinerie coquinerie nom f s 0.03 0.20 0.03 0.14 +coquineries coquinerie nom f p 0.03 0.20 0.00 0.07 +coquines coquin adj f p 3.92 3.24 0.17 0.47 +coquinet coquinet adj m s 0.01 0.07 0.01 0.07 +coquins coquin nom m p 7.55 4.26 0.98 1.49 +cor cor nom m s 3.35 3.92 2.57 2.36 +cora cora nom f s 0.00 0.34 0.00 0.27 +corail corail nom m s 1.43 3.51 1.04 2.97 +coralliaires coralliaire nom p 0.00 0.07 0.00 0.07 +corallien corallien adj m s 0.03 0.00 0.01 0.00 +coralliens corallien adj m p 0.03 0.00 0.02 0.00 +coramine coramine nom f s 0.10 0.07 0.10 0.07 +coran coran nom m s 1.96 2.43 1.96 2.43 +coranique coranique adj f s 0.16 0.34 0.16 0.20 +coraniques coranique adj m p 0.16 0.34 0.00 0.14 +coras cora nom f p 0.00 0.34 0.00 0.07 +coraux corail nom m p 1.43 3.51 0.39 0.54 +corbeau corbeau nom m s 5.72 8.85 3.57 3.92 +corbeaux corbeau nom m p 5.72 8.85 2.15 4.93 +corbeille corbeille nom f s 2.71 19.12 2.30 15.68 +corbeilles corbeille nom f p 2.71 19.12 0.41 3.45 +corbillard corbillard nom m s 1.63 4.19 1.58 3.72 +corbillards corbillard nom m p 1.63 4.19 0.04 0.47 +corbin corbin nom m s 0.14 0.47 0.14 0.47 +corbières corbières nom m 0.00 0.14 0.00 0.14 +cordage cordage nom m s 0.27 3.85 0.17 0.61 +cordages cordage nom m p 0.27 3.85 0.11 3.24 +corde corde nom f s 38.57 48.38 28.89 31.76 +cordeau cordeau nom m s 0.20 1.76 0.16 1.62 +cordeaux cordeau nom m p 0.20 1.76 0.01 0.14 +cordelette cordelette nom f s 0.11 3.72 0.10 2.91 +cordelettes cordelette nom f p 0.11 3.72 0.01 0.81 +cordelier cordelier nom m s 0.01 2.77 0.00 0.20 +cordeliers cordelier nom m p 0.01 2.77 0.01 1.22 +cordelière cordelier nom f s 0.01 2.77 0.00 1.01 +cordelières cordelier nom f p 0.01 2.77 0.00 0.34 +cordelle cordeau nom f s 0.20 1.76 0.04 0.00 +corder corder ver 0.31 0.47 0.16 0.00 inf; +corderie corderie nom f s 0.00 0.14 0.00 0.14 +cordes corde nom f p 38.57 48.38 9.68 16.62 +cordial cordial nom m s 0.44 1.96 0.44 1.96 +cordiale cordial adj f s 0.53 4.80 0.30 2.43 +cordialement cordialement adv 0.72 1.82 0.72 1.82 +cordiales cordial adj f p 0.53 4.80 0.05 0.74 +cordialité cordialité nom f s 0.09 3.65 0.08 3.65 +cordialités cordialité nom f p 0.09 3.65 0.01 0.00 +cordiaux cordial adj m p 0.53 4.80 0.11 0.41 +cordiers cordier nom m p 0.00 0.74 0.00 0.74 +cordiforme cordiforme adj f s 0.00 0.27 0.00 0.20 +cordiformes cordiforme adj f p 0.00 0.27 0.00 0.07 +cordillère cordillère nom f s 0.28 0.14 0.28 0.14 +cordite cordite nom f s 0.13 0.07 0.13 0.07 +cordobas cordoba nom m p 0.01 0.00 0.01 0.00 +cordon_bleu cordon_bleu nom m s 0.27 0.14 0.26 0.07 +cordon cordon nom m s 5.21 12.23 4.42 9.19 +cordonner cordonner ver 0.04 0.00 0.01 0.00 inf; +cordonnerie cordonnerie nom f s 0.16 0.20 0.16 0.20 +cordonnet cordonnet nom m s 0.16 0.81 0.14 0.61 +cordonnets cordonnet nom m p 0.16 0.81 0.02 0.20 +cordonnier cordonnier nom m s 1.86 3.92 1.72 2.91 +cordonniers cordonnier nom m p 1.86 3.92 0.14 0.95 +cordonnière cordonnier nom f s 1.86 3.92 0.00 0.07 +cordonnées cordonner ver f p 0.04 0.00 0.02 0.00 par:pas; +cordon_bleu cordon_bleu nom m p 0.27 0.14 0.01 0.07 +cordons cordon nom m p 5.21 12.23 0.79 3.04 +cordouan cordouan adj m s 0.00 0.07 0.00 0.07 +cordé corder ver m s 0.31 0.47 0.00 0.07 par:pas; +cordée cordée nom f s 0.02 0.61 0.02 0.47 +cordées cordée nom f p 0.02 0.61 0.00 0.14 +cordés cordé adj m p 0.01 0.07 0.01 0.00 +coreligionnaires coreligionnaire nom p 0.00 0.95 0.00 0.95 +corelliens corellien adj m p 0.01 0.00 0.01 0.00 +coriace coriace adj s 4.70 2.57 3.68 1.69 +coriaces coriace adj p 4.70 2.57 1.02 0.88 +coriacité coriacité nom f s 0.00 0.07 0.00 0.07 +coriandre coriandre nom f s 0.24 0.27 0.24 0.27 +corindon corindon nom m s 0.00 0.14 0.00 0.14 +corinthe corinthe nom s 0.00 0.07 0.00 0.07 +corinthien corinthien adj m s 0.27 0.54 0.11 0.41 +corinthiennes corinthien adj f p 0.27 0.54 0.01 0.14 +corinthiens corinthien nom m p 0.45 0.07 0.44 0.07 +cormier cormier nom m s 0.08 0.00 0.08 0.00 +cormoran cormoran nom m s 0.26 1.22 0.12 0.54 +cormorans cormoran nom m p 0.26 1.22 0.14 0.68 +corn_flakes corn_flakes nom m p 0.22 0.00 0.22 0.00 +corn_flakes corn_flakes nom f p 0.14 0.07 0.14 0.07 +corna corner ver 0.26 3.38 0.00 0.27 ind:pas:3s; +cornac cornac nom m s 0.03 0.41 0.03 0.41 +cornaient corner ver 0.26 3.38 0.00 0.07 ind:imp:3p; +cornais corner ver 0.26 3.38 0.00 0.07 ind:imp:1s; +cornait corner ver 0.26 3.38 0.00 0.20 ind:imp:3s; +cornaline cornaline nom f s 0.00 0.14 0.00 0.07 +cornalines cornaline nom f p 0.00 0.14 0.00 0.07 +cornant corner ver 0.26 3.38 0.00 0.20 par:pre; +cornaquaient cornaquer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +cornaquée cornaquer ver f s 0.00 0.14 0.00 0.07 par:pas; +cornard cornard nom m s 0.71 0.47 0.71 0.41 +cornards cornard nom m p 0.71 0.47 0.00 0.07 +cornas corner ver 0.26 3.38 0.00 0.07 ind:pas:2s; +corne corne nom f s 7.79 19.46 2.63 9.80 +cornecul cornecul nom s 0.00 0.20 0.00 0.20 +corneille corneille nom f s 0.86 2.36 0.19 0.47 +corneilles corneille nom f p 0.86 2.36 0.67 1.89 +cornemuse cornemuse nom f s 1.38 0.61 0.98 0.34 +cornemuses cornemuse nom f p 1.38 0.61 0.40 0.27 +cornemuseur cornemuseur nom m s 0.01 0.00 0.01 0.00 +cornent corner ver 0.26 3.38 0.02 0.07 ind:pre:3p; +corner corner ver 0.26 3.38 0.17 1.49 inf; +corners corner nom m p 0.30 0.14 0.14 0.07 +cornes corne nom f p 7.79 19.46 5.16 9.66 +cornet cornet nom m s 1.85 8.04 1.46 6.15 +cornets cornet nom m p 1.85 8.04 0.39 1.89 +cornette cornette nom s 0.18 2.70 0.03 1.69 +cornettes cornette nom p 0.18 2.70 0.16 1.01 +corniaud corniaud nom m s 0.95 5.34 0.68 4.12 +corniauds corniaud nom m p 0.95 5.34 0.27 1.22 +corniche corniche nom f s 0.81 7.03 0.76 5.74 +corniches corniche nom f p 0.81 7.03 0.05 1.28 +cornichon cornichon nom m s 4.17 2.30 1.29 0.68 +cornichons cornichon nom m p 4.17 2.30 2.88 1.62 +cornillon cornillon nom m s 0.02 0.20 0.02 0.20 +cornistes corniste nom p 0.00 0.20 0.00 0.20 +cornières cornière nom f p 0.00 0.34 0.00 0.34 +cornouaillais cornouaillais nom m 0.06 0.00 0.06 0.00 +cornouille cornouille nom f s 0.00 0.14 0.00 0.07 +cornouiller cornouiller nom m s 0.08 0.34 0.08 0.14 +cornouillers cornouiller nom m p 0.08 0.34 0.00 0.20 +cornouilles cornouille nom f p 0.00 0.14 0.00 0.07 +cornèrent corner ver 0.26 3.38 0.00 0.07 ind:pas:3p; +corné corner ver m s 0.26 3.38 0.02 0.41 par:pas; +cornu cornu adj m s 0.42 1.62 0.17 0.61 +cornée cornée nom f s 0.85 1.22 0.78 1.08 +cornue cornu adj f s 0.42 1.62 0.10 0.34 +cornéen cornéen adj m s 0.05 0.00 0.03 0.00 +cornéenne cornéen adj f s 0.05 0.00 0.02 0.00 +cornées corné adj f p 0.12 1.42 0.11 0.41 +cornues cornue nom f p 0.01 1.08 0.00 0.61 +cornélien cornélien adj m s 0.02 0.54 0.02 0.27 +cornélienne cornélien adj f s 0.02 0.54 0.00 0.20 +cornéliennes cornélien adj f p 0.02 0.54 0.00 0.07 +cornés corner ver m p 0.26 3.38 0.01 0.07 par:pas; +cornus cornu adj m p 0.42 1.62 0.15 0.54 +corollaire corollaire nom m s 0.05 0.74 0.04 0.68 +corollaires corollaire nom m p 0.05 0.74 0.01 0.07 +corolle corolle nom f s 0.40 3.65 0.26 2.03 +corolles corolle nom f p 0.40 3.65 0.14 1.62 +coron coron nom m s 0.01 1.76 0.01 0.54 +corona corona nom f s 0.50 0.27 0.50 0.27 +coronaire coronaire adj s 0.44 0.14 0.19 0.00 +coronaires coronaire adj f p 0.44 0.14 0.25 0.14 +coronal coronal adj m s 0.07 0.00 0.03 0.00 +coronale coronal adj f s 0.07 0.00 0.04 0.00 +coronales coronal adj f p 0.07 0.00 0.01 0.00 +coronarien coronarien adj m s 0.17 0.00 0.08 0.00 +coronarienne coronarien adj f s 0.17 0.00 0.09 0.00 +coroner coroner nom m s 2.02 0.00 1.98 0.00 +coroners coroner nom m p 2.02 0.00 0.04 0.00 +coronilles coronille nom f p 0.00 0.20 0.00 0.20 +corons coron nom m p 0.01 1.76 0.00 1.22 +corozo corozo nom m s 0.00 0.20 0.00 0.20 +corporal corporal nom m s 0.11 0.07 0.11 0.07 +corporalisés corporaliser ver m p 0.00 0.07 0.00 0.07 par:pas; +corporalité corporalité nom f s 0.01 0.07 0.01 0.07 +corporatif corporatif adj m s 0.18 0.20 0.01 0.00 +corporatifs corporatif adj m p 0.18 0.20 0.13 0.00 +corporation corporation nom f s 0.77 2.77 0.53 2.23 +corporations corporation nom f p 0.77 2.77 0.24 0.54 +corporatisme corporatisme nom m s 0.02 0.07 0.02 0.07 +corporatiste corporatiste adj s 0.04 0.07 0.04 0.07 +corporative corporatif adj f s 0.18 0.20 0.01 0.14 +corporatives corporatif adj f p 0.18 0.20 0.03 0.07 +corporel corporel adj m s 3.64 2.70 1.10 0.34 +corporelle corporel adj f s 3.64 2.70 1.47 1.01 +corporelles corporel adj f p 3.64 2.70 0.26 0.61 +corporels corporel adj m p 3.64 2.70 0.81 0.74 +corps_mort corps_mort nom m s 0.00 0.07 0.00 0.07 +corps corps nom m 250.15 480.34 250.15 480.34 +corpsard corpsard nom m s 0.00 0.07 0.00 0.07 +corpulence corpulence nom f s 0.54 1.76 0.54 1.76 +corpulent corpulent adj m s 0.81 1.76 0.66 1.08 +corpulente corpulent adj f s 0.81 1.76 0.00 0.47 +corpulentes corpulent adj f p 0.81 1.76 0.00 0.07 +corpulents corpulent adj m p 0.81 1.76 0.16 0.14 +corpus_delicti corpus_delicti nom m s 0.03 0.00 0.03 0.00 +corpus corpus nom m 0.38 0.88 0.38 0.88 +corpuscule corpuscule nom f s 0.25 0.47 0.06 0.14 +corpuscules corpuscule nom f p 0.25 0.47 0.18 0.34 +corral corral nom m s 0.90 1.08 0.87 0.95 +corrals corral nom m p 0.90 1.08 0.03 0.14 +correct correct adj m s 19.24 8.18 14.32 5.00 +correcte correct adj f s 19.24 8.18 2.94 1.76 +correctement correctement adv 11.08 5.41 11.08 5.41 +correctes correct adj f p 19.24 8.18 0.58 0.41 +correcteur correcteur nom m s 0.28 0.74 0.22 0.34 +correcteurs correcteur nom m p 0.28 0.74 0.06 0.41 +correctif correctif adj m s 0.16 0.41 0.13 0.27 +correction correction nom f s 8.89 6.08 4.17 4.53 +correctionnaliser correctionnaliser ver 0.00 0.07 0.00 0.07 inf; +correctionnel correctionnel adj m s 0.43 0.54 0.35 0.00 +correctionnelle correctionnel nom f s 0.47 1.82 0.47 1.69 +correctionnelles correctionnel adj f p 0.43 0.54 0.01 0.14 +correctionnels correctionnel adj m p 0.43 0.54 0.01 0.00 +corrections correction nom f p 8.89 6.08 4.72 1.55 +corrective correctif adj f s 0.16 0.41 0.03 0.14 +corrector corrector nom m s 0.00 0.14 0.00 0.14 +correctrice correcteur adj f s 0.07 0.47 0.01 0.00 +correctrices correcteur adj f p 0.07 0.47 0.01 0.07 +corrects correct adj m p 19.24 8.18 1.39 1.01 +corregidor corregidor nom m s 0.15 0.14 0.15 0.14 +correspond correspondre ver 23.62 19.46 13.76 3.78 ind:pre:3s; +correspondît correspondre ver 23.62 19.46 0.00 0.27 sub:imp:3s; +correspondaient correspondre ver 23.62 19.46 0.21 1.69 ind:imp:3p; +correspondais correspondre ver 23.62 19.46 0.18 0.20 ind:imp:1s;ind:imp:2s; +correspondait correspondre ver 23.62 19.46 1.14 6.08 ind:imp:3s; +correspondance correspondance nom f s 5.71 13.51 5.33 11.89 +correspondances correspondance nom f p 5.71 13.51 0.38 1.62 +correspondancier correspondancier nom m s 0.01 0.00 0.01 0.00 +correspondant correspondant nom m s 2.59 5.88 1.87 3.24 +correspondante correspondant adj f s 1.10 3.24 0.24 0.47 +correspondantes correspondant adj f p 1.10 3.24 0.07 0.27 +correspondants correspondant nom m p 2.59 5.88 0.54 2.16 +corresponde correspondre ver 23.62 19.46 0.44 0.20 sub:pre:3s; +correspondent correspondre ver 23.62 19.46 4.06 1.55 ind:pre:3p;sub:pre:3p; +correspondez correspondre ver 23.62 19.46 0.20 0.07 ind:pre:2p; +correspondiez correspondre ver 23.62 19.46 0.02 0.00 ind:imp:2p; +correspondions correspondre ver 23.62 19.46 0.02 0.07 ind:imp:1p; +correspondra correspondre ver 23.62 19.46 0.12 0.07 ind:fut:3s; +correspondrai correspondre ver 23.62 19.46 0.00 0.07 ind:fut:1s; +correspondraient correspondre ver 23.62 19.46 0.05 0.07 cnd:pre:3p; +correspondrait correspondre ver 23.62 19.46 0.27 0.27 cnd:pre:3s; +correspondre correspondre ver 23.62 19.46 1.67 1.76 inf; +correspondrons correspondre ver 23.62 19.46 0.02 0.00 ind:fut:1p; +corresponds correspondre ver 23.62 19.46 0.29 0.14 ind:pre:1s;ind:pre:2s; +correspondu correspondre ver m s 23.62 19.46 0.18 0.47 par:pas; +corrida corrida nom f s 1.88 4.53 1.73 3.65 +corridas corrida nom f p 1.88 4.53 0.14 0.88 +corridor corridor nom m s 1.84 12.50 1.51 9.86 +corridors corridor nom m p 1.84 12.50 0.34 2.64 +corrige corriger ver 12.24 16.08 2.21 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +corrigea corriger ver 12.24 16.08 0.01 1.55 ind:pas:3s; +corrigeai corriger ver 12.24 16.08 0.00 0.20 ind:pas:1s; +corrigeaient corriger ver 12.24 16.08 0.00 0.14 ind:imp:3p; +corrigeais corriger ver 12.24 16.08 0.13 0.20 ind:imp:1s;ind:imp:2s; +corrigeait corriger ver 12.24 16.08 0.04 1.28 ind:imp:3s; +corrigeant corriger ver 12.24 16.08 0.02 1.01 par:pre; +corrigent corriger ver 12.24 16.08 0.06 0.34 ind:pre:3p; +corrigeons corriger ver 12.24 16.08 0.08 0.07 imp:pre:1p;ind:pre:1p; +corriger corriger ver 12.24 16.08 5.87 6.82 inf; +corrigera corriger ver 12.24 16.08 0.25 0.20 ind:fut:3s; +corrigerai corriger ver 12.24 16.08 0.22 0.07 ind:fut:1s; +corrigerais corriger ver 12.24 16.08 0.02 0.07 cnd:pre:1s; +corrigerait corriger ver 12.24 16.08 0.03 0.27 cnd:pre:3s; +corrigeras corriger ver 12.24 16.08 0.02 0.00 ind:fut:2s; +corrigerez corriger ver 12.24 16.08 0.11 0.00 ind:fut:2p; +corrigerons corriger ver 12.24 16.08 0.02 0.00 ind:fut:1p; +corriges corriger ver 12.24 16.08 0.15 0.00 ind:pre:2s; +corrigez corriger ver 12.24 16.08 0.90 0.00 imp:pre:2p;ind:pre:2p; +corrigiez corriger ver 12.24 16.08 0.05 0.00 ind:imp:2p; +corrigions corriger ver 12.24 16.08 0.00 0.07 ind:imp:1p; +corrigé corriger ver m s 12.24 16.08 1.81 1.01 par:pas; +corrigée corriger ver f s 12.24 16.08 0.14 0.54 par:pas; +corrigées corrigé adj f p 0.38 1.08 0.17 0.07 +corrigés corrigé adj m p 0.38 1.08 0.14 0.14 +corrobora corroborer ver 1.35 1.15 0.00 0.07 ind:pas:3s; +corroboraient corroborer ver 1.35 1.15 0.02 0.07 ind:imp:3p; +corroborait corroborer ver 1.35 1.15 0.02 0.27 ind:imp:3s; +corroborant corroborer ver 1.35 1.15 0.01 0.00 par:pre; +corroboration corroboration nom f s 0.03 0.00 0.03 0.00 +corrobore corroborer ver 1.35 1.15 0.15 0.20 ind:pre:3s; +corroborent corroborer ver 1.35 1.15 0.20 0.07 ind:pre:3p; +corroborer corroborer ver 1.35 1.15 0.69 0.41 inf; +corroborera corroborer ver 1.35 1.15 0.08 0.00 ind:fut:3s; +corroborèrent corroborer ver 1.35 1.15 0.00 0.07 ind:pas:3p; +corroboré corroborer ver m s 1.35 1.15 0.16 0.00 par:pas; +corroborées corroborer ver f p 1.35 1.15 0.02 0.00 par:pas; +corrodait corroder ver 0.23 1.22 0.00 0.41 ind:imp:3s; +corrodant corrodant adj m s 0.00 0.14 0.00 0.07 +corrodante corrodant adj f s 0.00 0.14 0.00 0.07 +corrode corroder ver 0.23 1.22 0.01 0.07 ind:pre:3s; +corrodent corroder ver 0.23 1.22 0.00 0.07 ind:pre:3p; +corroder corroder ver 0.23 1.22 0.00 0.07 inf; +corrodé corroder ver m s 0.23 1.22 0.04 0.27 par:pas; +corrodée corroder ver f s 0.23 1.22 0.01 0.20 par:pas; +corrodées corroder ver f p 0.23 1.22 0.13 0.00 par:pas; +corrodés corroder ver m p 0.23 1.22 0.03 0.14 par:pas; +corroierie corroierie nom f s 0.00 0.07 0.00 0.07 +corrompais corrompre ver 5.27 3.58 0.02 0.00 ind:imp:1s; +corrompant corrompre ver 5.27 3.58 0.05 0.07 par:pre; +corrompe corrompre ver 5.27 3.58 0.09 0.07 sub:pre:1s;sub:pre:3s; +corrompent corrompre ver 5.27 3.58 0.05 0.41 ind:pre:3p; +corrompez corrompre ver 5.27 3.58 0.23 0.00 imp:pre:2p;ind:pre:2p; +corrompis corrompre ver 5.27 3.58 0.00 0.07 ind:pas:1s; +corrompra corrompre ver 5.27 3.58 0.02 0.07 ind:fut:3s; +corrompraient corrompre ver 5.27 3.58 0.01 0.00 cnd:pre:3p; +corrompre corrompre ver 5.27 3.58 1.61 1.49 inf; +corromps corrompre ver 5.27 3.58 0.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +corrompt corrompre ver 5.27 3.58 0.53 0.34 ind:pre:3s; +corrompu corrompre ver m s 5.27 3.58 1.56 0.68 par:pas; +corrompue corrompu adj f s 2.79 1.42 0.34 0.41 +corrompues corrompu adj f p 2.79 1.42 0.08 0.07 +corrompus corrompu adj m p 2.79 1.42 0.83 0.34 +corrosif corrosif adj m s 0.33 1.35 0.17 0.61 +corrosifs corrosif adj m p 0.33 1.35 0.10 0.00 +corrosion corrosion nom f s 0.18 0.20 0.18 0.20 +corrosive corrosif adj f s 0.33 1.35 0.04 0.61 +corrosives corrosif adj f p 0.33 1.35 0.01 0.14 +corrélatif corrélatif adj m s 0.05 0.00 0.01 0.00 +corrélation corrélation nom f s 0.17 0.20 0.17 0.20 +corrélative corrélatif adj f s 0.05 0.00 0.04 0.00 +corrélativement corrélativement adv 0.00 0.34 0.00 0.34 +corréler corréler ver 0.01 0.00 0.01 0.00 inf; +corrupteur corrupteur nom m s 0.30 0.41 0.16 0.34 +corrupteurs corrupteur nom m p 0.30 0.41 0.14 0.07 +corruptible corruptible adj s 0.13 0.07 0.09 0.00 +corruptibles corruptible adj p 0.13 0.07 0.04 0.07 +corruption corruption nom f s 6.59 3.58 6.54 3.45 +corruptions corruption nom f p 6.59 3.58 0.04 0.14 +corruptrice corrupteur adj f s 0.13 0.27 0.02 0.00 +corruptrices corrupteur adj f p 0.13 0.27 0.00 0.14 +corréziennes corrézien adj f p 0.00 0.07 0.00 0.07 +cors cor nom m p 3.35 3.92 0.78 1.55 +corsa corser ver 1.81 1.69 0.14 0.07 ind:pas:3s; +corsage corsage nom m s 1.44 15.14 1.28 12.23 +corsages corsage nom m p 1.44 15.14 0.16 2.91 +corsaire corsaire nom s 0.78 3.58 0.58 1.96 +corsaires corsaire nom p 0.78 3.58 0.20 1.62 +corsait corser ver 1.81 1.69 0.02 0.27 ind:imp:3s; +corsant corser ver 1.81 1.69 0.00 0.07 par:pre; +corse corse adj s 3.37 3.51 2.17 2.64 +corselet corselet nom m s 0.00 0.88 0.00 0.54 +corselets corselet nom m p 0.00 0.88 0.00 0.34 +corsent corser ver 1.81 1.69 0.18 0.00 ind:pre:3p; +corser corser ver 1.81 1.69 0.29 0.74 inf; +corserait corser ver 1.81 1.69 0.00 0.07 cnd:pre:3s; +corses corse adj p 3.37 3.51 1.21 0.88 +corset corset nom m s 2.04 2.91 1.51 2.30 +corseter corseter ver 0.03 1.42 0.01 0.00 inf; +corsetière corsetier nom f s 0.00 0.07 0.00 0.07 +corsets corset nom m p 2.04 2.91 0.53 0.61 +corseté corseter ver m s 0.03 1.42 0.01 0.34 par:pas; +corsetée corseter ver f s 0.03 1.42 0.00 0.74 par:pas; +corsetées corseter ver f p 0.03 1.42 0.00 0.20 par:pas; +corsetés corseter ver m p 0.03 1.42 0.00 0.14 par:pas; +corso corso nom m s 0.48 1.08 0.48 1.01 +corsos corso nom m p 0.48 1.08 0.00 0.07 +corsé corser ver m s 1.81 1.69 0.33 0.14 par:pas; +corsée corser ver f s 1.81 1.69 0.14 0.20 par:pas; +corsées corsé adj f p 0.49 1.28 0.00 0.07 +corsés corsé adj m p 0.49 1.28 0.23 0.07 +cortes corte nom f p 0.01 0.00 0.01 0.00 +cortex cortex nom m 8.68 0.14 8.68 0.14 +cortical cortical adj m s 0.45 0.07 0.08 0.07 +corticale cortical adj f s 0.45 0.07 0.16 0.00 +corticales cortical adj f p 0.45 0.07 0.20 0.00 +corticaux cortical adj m p 0.45 0.07 0.01 0.00 +cortine cortine nom f s 0.03 0.00 0.03 0.00 +cortisol cortisol nom m s 0.03 0.00 0.03 0.00 +cortisone cortisone nom f s 1.28 0.14 1.28 0.14 +corton corton nom m s 0.03 0.27 0.03 0.27 +cortège cortège nom m s 2.91 20.34 2.77 18.11 +cortèges cortège nom m p 2.91 20.34 0.13 2.23 +cortès cortès nom f p 0.02 0.07 0.02 0.07 +cortégeant cortéger ver 0.00 0.07 0.00 0.07 par:pre; +coré coré nom f s 0.40 0.14 0.40 0.14 +coréen coréen adj m s 2.90 0.07 1.67 0.07 +coréenne coréen adj f s 2.90 0.07 0.70 0.00 +coréennes coréenne adj f p 0.05 0.00 0.05 0.00 +coréennes coréenne nom f p 0.10 0.00 0.05 0.00 +coréens coréen nom m p 1.69 0.27 1.09 0.27 +coruscant coruscant adj m s 0.13 0.27 0.13 0.07 +coruscante coruscant adj f s 0.13 0.27 0.00 0.07 +coruscants coruscant adj m p 0.13 0.27 0.00 0.14 +coruscation coruscation nom f s 0.00 0.07 0.00 0.07 +corvette corvette nom f s 1.32 1.55 1.28 0.81 +corvettes corvette nom f p 1.32 1.55 0.04 0.74 +corvéable corvéable adj s 0.00 0.14 0.00 0.14 +corvée corvée nom f s 6.32 16.76 4.05 10.74 +corvées corvée nom f p 6.32 16.76 2.27 6.01 +corybantes corybante nom m p 0.00 0.07 0.00 0.07 +coryphène coryphène nom m s 0.01 0.00 0.01 0.00 +coryphée coryphée nom m s 0.00 0.07 0.00 0.07 +coryste coryste nom m s 0.00 0.07 0.00 0.07 +coryza coryza nom m s 0.00 0.68 0.00 0.68 +cosaque cosaque nom s 1.33 2.09 0.44 1.22 +cosaques cosaque nom p 1.33 2.09 0.89 0.88 +coseigneurs coseigneur nom m p 0.00 0.07 0.00 0.07 +cosigner cosigner ver 0.32 0.00 0.10 0.00 inf; +cosigné cosigner ver m s 0.32 0.00 0.21 0.00 par:pas; +cosinus cosinus nom m 0.28 0.20 0.28 0.20 +cosmique cosmique adj s 2.51 3.58 2.18 3.31 +cosmiquement cosmiquement adv 0.02 0.00 0.02 0.00 +cosmiques cosmique adj p 2.51 3.58 0.33 0.27 +cosmo cosmo adv 1.07 0.07 1.07 0.07 +cosmodromes cosmodrome nom m p 0.01 0.00 0.01 0.00 +cosmogonie cosmogonie nom f s 0.00 0.27 0.00 0.20 +cosmogonies cosmogonie nom f p 0.00 0.27 0.00 0.07 +cosmogonique cosmogonique adj m s 0.00 0.07 0.00 0.07 +cosmographie cosmographie nom f s 0.00 0.14 0.00 0.14 +cosmologie cosmologie nom f s 0.09 0.07 0.09 0.07 +cosmologique cosmologique adj f s 0.05 0.07 0.03 0.00 +cosmologiques cosmologique adj m p 0.05 0.07 0.02 0.07 +cosmologue cosmologue nom s 0.00 0.07 0.00 0.07 +cosmonaute cosmonaute nom s 1.29 0.88 0.83 0.54 +cosmonautes cosmonaute nom p 1.29 0.88 0.46 0.34 +cosmopolite cosmopolite adj s 0.35 2.50 0.24 1.96 +cosmopolites cosmopolite adj p 0.35 2.50 0.11 0.54 +cosmopolitisme cosmopolitisme nom m s 0.00 0.47 0.00 0.47 +cosmos cosmos nom m 2.34 1.42 2.34 1.42 +cosméticienne cosméticien nom f s 0.02 0.07 0.02 0.07 +cosmétique cosmétique adj s 0.47 0.34 0.23 0.20 +cosmétiques cosmétique nom p 0.69 0.81 0.52 0.54 +cosmétiqué cosmétiquer ver m s 0.00 0.34 0.00 0.07 par:pas; +cosmétiquée cosmétiquer ver f s 0.00 0.34 0.00 0.14 par:pas; +cosmétiquées cosmétiquer ver f p 0.00 0.34 0.00 0.07 par:pas; +cosmétiqués cosmétiquer ver m p 0.00 0.34 0.00 0.07 par:pas; +cosmétologie cosmétologie nom f s 0.07 0.00 0.07 0.00 +cosmétologue cosmétologue nom s 0.02 0.00 0.02 0.00 +cossard cossard adj m s 0.04 0.27 0.04 0.14 +cossarde cossard nom f s 0.01 0.47 0.00 0.07 +cossards cossard nom m p 0.01 0.47 0.01 0.27 +cosse cosse nom f s 0.62 0.68 0.34 0.20 +cossent cosser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +cosses cosse nom f p 0.62 0.68 0.28 0.47 +cossu cossu adj m s 0.08 4.53 0.04 1.96 +cossue cossu adj f s 0.08 4.53 0.02 1.08 +cossues cossu adj f p 0.08 4.53 0.01 0.61 +cossus cossu adj m p 0.08 4.53 0.00 0.88 +costal costal adj m s 0.13 0.00 0.07 0.00 +costale costal adj f s 0.13 0.00 0.04 0.00 +costar costar nom m s 0.03 0.00 0.03 0.00 +costard costard nom m s 3.81 6.82 3.19 5.34 +costards costard nom m p 3.81 6.82 0.61 1.49 +costaricain costaricain adj m s 0.01 0.00 0.01 0.00 +costaud costaud adj m s 6.98 6.42 5.84 5.27 +costaude costaud adj f s 6.98 6.42 0.15 0.27 +costaudes costaud adj f p 6.98 6.42 0.01 0.00 +costauds costaud adj m p 6.98 6.42 0.98 0.88 +costaux costal adj m p 0.13 0.00 0.01 0.00 +costume costume nom m s 51.42 55.88 38.95 44.19 +costumer costumer ver 1.03 1.76 0.05 0.14 inf; +costumes costume nom m p 51.42 55.88 12.47 11.69 +costumier costumier nom m s 0.42 0.47 0.12 0.27 +costumiers costumier nom m p 0.42 0.47 0.07 0.14 +costumière costumier nom f s 0.42 0.47 0.23 0.07 +costumé costumé adj m s 1.26 1.08 0.68 0.54 +costumée costumé adj f s 1.26 1.08 0.27 0.14 +costumées costumer ver f p 1.03 1.76 0.00 0.07 par:pas; +costumés costumé adj m p 1.26 1.08 0.31 0.41 +cosy_corner cosy_corner nom m s 0.00 0.54 0.00 0.47 +cosy_corner cosy_corner nom m p 0.00 0.54 0.00 0.07 +cosy cosy nom m s 0.12 0.95 0.12 0.88 +cosys cosy nom m p 0.12 0.95 0.00 0.07 +cot_cot_codec cot_cot_codec ono 0.14 0.07 0.14 0.07 +cota coter ver 9.13 1.89 0.21 0.00 ind:pas:3s; +cotait coter ver 9.13 1.89 0.01 0.00 ind:imp:3s; +cotation cotation nom f s 0.31 0.27 0.14 0.14 +cotations cotation nom f p 0.31 0.27 0.17 0.14 +cote cote nom f s 8.47 5.47 7.50 5.07 +coteau coteau nom m s 0.41 7.70 0.19 5.20 +coteaux coteau nom m p 0.41 7.70 0.22 2.50 +cotent coter ver 9.13 1.89 0.02 0.07 ind:pre:3p; +coter coter ver 9.13 1.89 0.02 0.20 inf; +coterie coterie nom f s 0.14 1.55 0.00 1.15 +coteries coterie nom f p 0.14 1.55 0.14 0.41 +cotes cote nom f p 8.47 5.47 0.97 0.41 +cothurne cothurne nom m s 0.00 0.41 0.00 0.07 +cothurnes cothurne nom m p 0.00 0.41 0.00 0.34 +coties cotir ver f p 0.00 0.07 0.00 0.07 par:pas; +cotillon cotillon nom m s 0.32 0.81 0.19 0.20 +cotillons cotillon nom m p 0.32 0.81 0.13 0.61 +cotisa cotiser ver 0.88 0.88 0.00 0.07 ind:pas:3s; +cotisaient cotiser ver 0.88 0.88 0.00 0.14 ind:imp:3p; +cotisais cotiser ver 0.88 0.88 0.00 0.07 ind:imp:1s; +cotisant cotiser ver 0.88 0.88 0.00 0.14 par:pre; +cotisants cotisant nom m p 0.01 0.14 0.01 0.07 +cotisation cotisation nom f s 0.96 1.15 0.35 0.74 +cotisations cotisation nom f p 0.96 1.15 0.60 0.41 +cotise cotiser ver 0.88 0.88 0.21 0.07 ind:pre:1s;ind:pre:3s; +cotisent cotiser ver 0.88 0.88 0.03 0.00 ind:pre:3p; +cotiser cotiser ver 0.88 0.88 0.14 0.20 inf; +cotises cotiser ver 0.88 0.88 0.14 0.00 ind:pre:2s; +cotisèrent cotiser ver 0.88 0.88 0.00 0.07 ind:pas:3p; +cotisé cotiser ver m s 0.88 0.88 0.15 0.14 par:pas; +cotisées cotiser ver f p 0.88 0.88 0.01 0.00 par:pas; +cotisés cotiser ver m p 0.88 0.88 0.20 0.00 par:pas; +coton_tige coton_tige nom m s 0.43 0.07 0.20 0.00 +coton coton nom m s 10.09 26.22 10.06 24.66 +cotonnade cotonnade nom f s 0.00 3.18 0.00 2.23 +cotonnades cotonnade nom f p 0.00 3.18 0.00 0.95 +cotonnait cotonner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +cotonnant cotonner ver 0.00 0.14 0.00 0.07 par:pre; +cotonnerie cotonnerie nom f s 0.01 0.00 0.01 0.00 +cotonneuse cotonneux adj f s 0.07 3.45 0.01 0.95 +cotonneuses cotonneux adj f p 0.07 3.45 0.00 0.74 +cotonneux cotonneux adj m 0.07 3.45 0.06 1.76 +cotonnier cotonnier adj m s 0.00 0.07 0.00 0.07 +cotonnier cotonnier nom m s 0.00 0.07 0.00 0.07 +cotonnière cotonnière nom f s 0.01 0.00 0.01 0.00 +coton_tige coton_tige nom m p 0.43 0.07 0.23 0.07 +cotons coton nom m p 10.09 26.22 0.03 1.55 +cotonéasters cotonéaster nom m p 0.00 0.07 0.00 0.07 +cotât coter ver 9.13 1.89 0.00 0.07 sub:imp:3s; +cotre cotre nom m s 0.03 1.96 0.03 1.76 +cotres cotre nom m p 0.03 1.96 0.00 0.20 +cotrets cotret nom m p 0.00 0.14 0.00 0.14 +cotriade cotriade nom f s 0.00 0.07 0.00 0.07 +cottage cottage nom m s 1.54 0.68 1.49 0.47 +cottages cottage nom m p 1.54 0.68 0.05 0.20 +cotte cotte nom f s 0.32 4.05 0.30 2.23 +cottes cotte nom f p 0.32 4.05 0.02 1.82 +coté coter ver m s 9.13 1.89 7.66 0.54 par:pas; +cotée coter ver f s 9.13 1.89 0.08 0.20 par:pas; +cotées coter ver f p 9.13 1.89 0.13 0.27 par:pas; +coturne coturne nom m s 0.00 0.07 0.00 0.07 +cotés coté adj m p 7.56 1.28 0.95 0.47 +cotylédons cotylédon nom m p 0.00 0.07 0.00 0.07 +cou_de_pied cou_de_pied nom m s 0.01 0.27 0.01 0.27 +cou cou nom m s 44.09 115.34 43.71 112.70 +couac couac nom m s 0.14 1.01 0.11 0.81 +couacs couac nom m p 0.14 1.01 0.03 0.20 +couaille couaille nom f s 0.00 0.14 0.00 0.14 +couaquait couaquer ver 0.00 0.34 0.00 0.07 ind:imp:3s; +couaquer couaquer ver 0.00 0.34 0.00 0.27 inf; +couard couard nom m s 0.25 0.47 0.20 0.34 +couarde couard adj f s 0.09 0.61 0.01 0.00 +couardise couardise nom f s 0.10 0.54 0.10 0.54 +couards couard nom m p 0.25 0.47 0.04 0.14 +coucha coucher ver 181.96 196.22 0.41 7.57 ind:pas:3s; +couchage couchage nom m s 1.86 1.28 1.86 1.28 +couchai coucher ver 181.96 196.22 0.00 1.35 ind:pas:1s; +couchaient coucher ver 181.96 196.22 0.13 2.57 ind:imp:3p; +couchailler couchailler ver 0.00 0.07 0.00 0.07 inf; +couchais coucher ver 181.96 196.22 1.89 2.57 ind:imp:1s;ind:imp:2s; +couchait coucher ver 181.96 196.22 2.23 11.89 ind:imp:3s; +couchant couchant adj m s 1.10 4.93 1.09 4.80 +couchants couchant adj m p 1.10 4.93 0.01 0.14 +couche_culotte couche_culotte nom f s 0.22 0.27 0.11 0.07 +couche coucher ver 181.96 196.22 29.50 18.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +couchent coucher ver 181.96 196.22 2.48 3.38 ind:pre:3p; +coucher coucher ver 181.96 196.22 82.63 63.24 inf;; +couchera coucher ver 181.96 196.22 0.86 0.81 ind:fut:3s; +coucherai coucher ver 181.96 196.22 1.36 1.28 ind:fut:1s; +coucheraient coucher ver 181.96 196.22 0.10 0.20 cnd:pre:3p; +coucherais coucher ver 181.96 196.22 0.56 0.68 cnd:pre:1s;cnd:pre:2s; +coucherait coucher ver 181.96 196.22 0.43 1.42 cnd:pre:3s; +coucheras coucher ver 181.96 196.22 0.96 0.88 ind:fut:2s; +coucherez coucher ver 181.96 196.22 0.54 0.54 ind:fut:2p; +coucherie coucherie nom f s 0.44 1.15 0.17 0.54 +coucheries coucherie nom f p 0.44 1.15 0.27 0.61 +coucheriez coucher ver 181.96 196.22 0.04 0.07 cnd:pre:2p; +coucherions coucher ver 181.96 196.22 0.00 0.07 cnd:pre:1p; +coucherons coucher ver 181.96 196.22 0.17 0.61 ind:fut:1p; +coucheront coucher ver 181.96 196.22 0.07 0.14 ind:fut:3p; +couchers coucher nom m p 7.80 8.92 0.73 0.81 +couche_culotte couche_culotte nom f p 0.22 0.27 0.11 0.20 +couches couche nom f p 19.95 32.91 9.06 10.14 +couchette couchette nom f s 1.99 6.28 1.50 5.00 +couchettes couchette nom f p 1.99 6.28 0.50 1.28 +coucheur coucheur nom m s 0.06 0.47 0.05 0.34 +coucheurs coucheur nom m p 0.06 0.47 0.00 0.14 +coucheuse coucheur nom f s 0.06 0.47 0.01 0.00 +couchez coucher ver 181.96 196.22 6.79 1.49 imp:pre:2p;ind:pre:2p; +couchiez coucher ver 181.96 196.22 0.48 0.20 ind:imp:2p; +couchions coucher ver 181.96 196.22 0.08 0.47 ind:imp:1p; +couchoir couchoir nom m s 0.00 0.07 0.00 0.07 +couchâmes coucher ver 181.96 196.22 0.00 0.14 ind:pas:1p; +couchons coucher ver 181.96 196.22 0.53 0.41 imp:pre:1p;ind:pre:1p; +couchât coucher ver 181.96 196.22 0.00 0.41 sub:imp:3s; +couchèrent coucher ver 181.96 196.22 0.03 2.30 ind:pas:3p; +couché coucher ver m s 181.96 196.22 35.71 40.74 par:pas; +couchée coucher ver f s 181.96 196.22 5.92 15.61 par:pas; +couchées coucher ver f p 181.96 196.22 0.31 2.43 par:pas; +couchés coucher ver m p 181.96 196.22 1.95 10.74 par:pas; +couci_couça couci_couça adv 0.60 0.20 0.60 0.20 +coucou coucou nom m s 13.16 5.07 12.71 3.92 +coucous coucou nom m p 13.16 5.07 0.45 1.15 +coud coudre ver 8.88 20.74 0.63 0.68 ind:pre:3s; +coude coude nom m s 10.19 54.19 5.36 33.24 +coudent couder ver 0.02 0.41 0.00 0.07 ind:pre:3p; +coudes coude nom m p 10.19 54.19 4.84 20.95 +coudoie coudoyer ver 0.00 0.88 0.00 0.07 ind:pre:3s; +coudoient coudoyer ver 0.00 0.88 0.00 0.14 ind:pre:3p; +coudoyai coudoyer ver 0.00 0.88 0.00 0.07 ind:pas:1s; +coudoyaient coudoyer ver 0.00 0.88 0.00 0.20 ind:imp:3p; +coudoyais coudoyer ver 0.00 0.88 0.00 0.07 ind:imp:1s; +coudoyant coudoyer ver 0.00 0.88 0.00 0.07 par:pre; +coudoyer coudoyer ver 0.00 0.88 0.00 0.14 inf; +coudoyons coudoyer ver 0.00 0.88 0.00 0.07 ind:pre:1p; +coudoyé coudoyer ver m s 0.00 0.88 0.00 0.07 par:pas; +coudra coudre ver 8.88 20.74 0.10 0.07 ind:fut:3s; +coudrai coudre ver 8.88 20.74 0.02 0.07 ind:fut:1s; +coudrais coudre ver 8.88 20.74 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +coudrait coudre ver 8.88 20.74 0.00 0.07 cnd:pre:3s; +coudras coudre ver 8.88 20.74 0.00 0.07 ind:fut:2s; +coudre coudre ver 8.88 20.74 4.83 8.65 inf; +coudreuse coudreuse nom f s 0.00 0.07 0.00 0.07 +coudrier coudrier nom m s 0.04 10.41 0.04 10.07 +coudriers coudrier nom m p 0.04 10.41 0.00 0.34 +couds coudre ver 8.88 20.74 0.34 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +coudé coudé adj m s 0.06 0.61 0.03 0.41 +coudée coudée nom f s 0.07 1.55 0.01 0.20 +coudées coudée nom f p 0.07 1.55 0.06 1.35 +couenne couenne nom f s 0.53 1.82 0.40 1.49 +couennes couenne nom f p 0.53 1.82 0.14 0.34 +couette couette nom f s 1.58 2.03 1.34 1.28 +couettes couette nom f p 1.58 2.03 0.23 0.74 +couffin couffin nom m s 1.48 1.96 1.25 1.01 +couffins couffin nom m p 1.48 1.96 0.22 0.95 +couguar couguar nom m s 0.72 1.01 0.65 0.41 +couguars couguar nom m p 0.72 1.01 0.08 0.61 +couic couic nom_sup m s 0.64 1.22 0.64 1.22 +couillard couillard nom m s 0.00 0.07 0.00 0.07 +couille couille nom f s 38.80 11.42 3.56 1.55 +couilles couille nom f p 38.80 11.42 35.24 9.86 +couillettes couillette nom f p 0.00 0.27 0.00 0.27 +couillon couillon nom m s 5.75 2.36 4.04 1.76 +couillonnade couillonnade nom f s 0.82 0.41 0.42 0.14 +couillonnades couillonnade nom f p 0.82 0.41 0.40 0.27 +couillonne couillonner ver 0.53 0.68 0.02 0.07 imp:pre:2s;ind:pre:3s; +couillonnent couillonner ver 0.53 0.68 0.00 0.07 ind:pre:3p; +couillonner couillonner ver 0.53 0.68 0.33 0.34 inf; +couillonné couillonner ver m s 0.53 0.68 0.02 0.20 par:pas; +couillonnée couillonner ver f s 0.53 0.68 0.01 0.00 par:pas; +couillonnés couillonner ver m p 0.53 0.68 0.14 0.00 par:pas; +couillons couillon nom m p 5.75 2.36 1.71 0.61 +couillu couillu adj m s 0.51 0.00 0.23 0.00 +couillus couillu adj m p 0.51 0.00 0.28 0.00 +couina couiner ver 1.13 3.85 0.00 0.20 ind:pas:3s; +couinaient couiner ver 1.13 3.85 0.00 0.34 ind:imp:3p; +couinais couiner ver 1.13 3.85 0.01 0.07 ind:imp:1s;ind:imp:2s; +couinait couiner ver 1.13 3.85 0.00 0.54 ind:imp:3s; +couinant couiner ver 1.13 3.85 0.02 0.68 par:pre; +couine couiner ver 1.13 3.85 0.43 0.41 imp:pre:2s;ind:pre:3s; +couinement couinement nom m s 0.09 1.76 0.06 0.68 +couinements couinement nom m p 0.09 1.76 0.02 1.08 +couinent couiner ver 1.13 3.85 0.03 0.20 ind:pre:3p; +couiner couiner ver 1.13 3.85 0.45 1.01 inf; +couinerais couiner ver 1.13 3.85 0.01 0.00 cnd:pre:1s; +couineras couiner ver 1.13 3.85 0.01 0.00 ind:fut:2s; +couineront couiner ver 1.13 3.85 0.01 0.00 ind:fut:3p; +couines couiner ver 1.13 3.85 0.02 0.00 ind:pre:2s; +couinez couiner ver 1.13 3.85 0.00 0.14 ind:pre:2p; +couiné couiner ver m s 1.13 3.85 0.15 0.27 par:pas; +coula couler ver 47.55 121.15 0.18 5.61 ind:pas:3s; +coulage coulage nom m s 0.17 0.47 0.17 0.47 +coulai couler ver 47.55 121.15 0.00 0.20 ind:pas:1s; +coulaient couler ver 47.55 121.15 0.80 7.03 ind:imp:3p; +coulais couler ver 47.55 121.15 0.16 0.27 ind:imp:1s;ind:imp:2s; +coulait couler ver 47.55 121.15 2.96 26.62 ind:imp:3s; +coulant coulant adj m s 1.01 2.91 0.71 2.64 +coulante coulant adj f s 1.01 2.91 0.20 0.00 +coulants coulant adj m p 1.01 2.91 0.10 0.27 +coule couler ver 47.55 121.15 14.70 20.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +coulemelle coulemelle nom f s 0.00 0.07 0.00 0.07 +coulent couler ver 47.55 121.15 2.29 5.00 ind:pre:3p; +couler couler ver 47.55 121.15 14.91 37.70 inf; +coulera couler ver 47.55 121.15 2.15 0.54 ind:fut:3s; +coulerai couler ver 47.55 121.15 0.14 0.20 ind:fut:1s; +couleraient couler ver 47.55 121.15 0.14 0.07 cnd:pre:3p; +coulerais couler ver 47.55 121.15 0.01 0.00 cnd:pre:2s; +coulerait couler ver 47.55 121.15 0.19 0.47 cnd:pre:3s; +couleras couler ver 47.55 121.15 0.05 0.00 ind:fut:2s; +coulerez couler ver 47.55 121.15 0.07 0.07 ind:fut:2p; +couleront couler ver 47.55 121.15 0.05 0.00 ind:fut:3p; +coules couler ver 47.55 121.15 0.68 0.34 ind:pre:2s; +couleur couleur nom f s 82.25 198.72 57.46 118.65 +couleurs couleur nom f p 82.25 198.72 24.79 80.07 +couleuvre couleuvre nom f s 0.89 2.91 0.71 1.55 +couleuvres couleuvre nom f p 0.89 2.91 0.18 1.35 +couleuvrine couleuvrine nom f s 0.23 0.20 0.14 0.00 +couleuvrines couleuvrine nom f p 0.23 0.20 0.10 0.20 +coulez couler ver 47.55 121.15 0.75 0.00 imp:pre:2p;ind:pre:2p; +couliez couler ver 47.55 121.15 0.02 0.07 ind:imp:2p; +coulions couler ver 47.55 121.15 0.02 0.07 ind:imp:1p; +coulis coulis nom m 0.58 0.68 0.58 0.68 +coulissa coulisser ver 0.14 2.36 0.00 0.14 ind:pas:3s; +coulissaient coulisser ver 0.14 2.36 0.00 0.07 ind:imp:3p; +coulissait coulisser ver 0.14 2.36 0.00 0.54 ind:imp:3s; +coulissant coulisser ver 0.14 2.36 0.00 0.54 par:pre; +coulissante coulissant adj f s 0.17 1.62 0.16 0.41 +coulissantes coulissant adj f p 0.17 1.62 0.01 0.68 +coulissants coulissant adj m p 0.17 1.62 0.01 0.14 +coulisse coulisse nom f s 4.50 9.05 1.05 2.30 +coulissements coulissement nom m p 0.00 0.07 0.00 0.07 +coulissent coulisser ver 0.14 2.36 0.02 0.14 ind:pre:3p; +coulisser coulisser ver 0.14 2.36 0.04 0.61 inf; +coulisses coulisse nom f p 4.50 9.05 3.44 6.76 +coulissier coulissier nom m s 0.00 0.14 0.00 0.14 +coulissèrent coulisser ver 0.14 2.36 0.00 0.07 ind:pas:3p; +coulissé coulisser ver m s 0.14 2.36 0.00 0.07 par:pas; +coulissée coulisser ver f s 0.14 2.36 0.00 0.07 par:pas; +couloir_symbole couloir_symbole nom m s 0.00 0.07 0.00 0.07 +couloir couloir nom m s 29.17 104.53 24.77 80.47 +couloirs couloir nom m p 29.17 104.53 4.41 24.05 +coulombs coulomb nom m p 0.00 0.07 0.00 0.07 +coulons couler ver 47.55 121.15 0.26 0.14 imp:pre:1p;ind:pre:1p; +coulât couler ver 47.55 121.15 0.00 0.20 sub:imp:3s; +coulpe coulpe nom f s 0.04 0.14 0.04 0.14 +coulèrent couler ver 47.55 121.15 0.13 1.08 ind:pas:3p; +coulé couler ver m s 47.55 121.15 6.46 8.24 par:pas; +coulée coulée nom f s 0.62 9.80 0.53 7.43 +coulées coulée nom f p 0.62 9.80 0.09 2.36 +coulure coulure nom f s 0.01 0.41 0.01 0.07 +coulures coulure nom f p 0.01 0.41 0.00 0.34 +coulés couler ver m p 47.55 121.15 0.12 0.88 par:pas; +coumarine coumarine nom f s 0.01 0.00 0.01 0.00 +countries countries nom p 0.01 0.07 0.01 0.07 +country country adj 1.73 0.07 1.73 0.07 +coup_de_poing coup_de_poing nom m s 0.13 0.00 0.13 0.00 +coup coup nom m s 471.82 837.70 389.49 641.55 +coupa couper ver 155.82 140.88 0.69 17.97 ind:pas:3s; +coupable coupable adj s 50.84 23.58 46.45 20.20 +coupablement coupablement adv 0.00 0.07 0.00 0.07 +coupables coupable adj p 50.84 23.58 4.39 3.38 +coupage coupage nom m s 0.02 0.20 0.02 0.14 +coupages coupage nom m p 0.02 0.20 0.00 0.07 +coupai couper ver 155.82 140.88 0.01 0.41 ind:pas:1s; +coupaient couper ver 155.82 140.88 0.33 2.43 ind:imp:3p; +coupailler coupailler ver 0.01 0.00 0.01 0.00 inf; +coupais couper ver 155.82 140.88 0.53 0.41 ind:imp:1s;ind:imp:2s; +coupait couper ver 155.82 140.88 1.64 10.61 ind:imp:3s; +coupant couper ver 155.82 140.88 0.97 4.73 par:pre; +coupante coupant adj f s 0.51 6.69 0.21 2.23 +coupantes coupant adj f p 0.51 6.69 0.10 1.35 +coupants coupant adj m p 0.51 6.69 0.04 0.74 +coupe_chou coupe_chou nom m s 0.05 0.34 0.05 0.34 +coupe_choux coupe_choux nom m 0.14 0.27 0.14 0.27 +coupe_cigare coupe_cigare nom m s 0.02 0.20 0.02 0.07 +coupe_cigare coupe_cigare nom m p 0.02 0.20 0.00 0.14 +coupe_circuit coupe_circuit nom m s 0.13 0.34 0.11 0.27 +coupe_circuit coupe_circuit nom m p 0.13 0.34 0.02 0.07 +coupe_coupe coupe_coupe nom m 0.10 0.68 0.10 0.68 +coupe_faim coupe_faim nom m s 0.09 0.07 0.08 0.07 +coupe_faim coupe_faim nom m p 0.09 0.07 0.01 0.00 +coupe_feu coupe_feu nom m s 0.12 0.14 0.12 0.14 +coupe_file coupe_file nom m s 0.03 0.00 0.03 0.00 +coupe_gorge coupe_gorge nom m 0.28 0.61 0.28 0.61 +coupe_jarret coupe_jarret nom m s 0.03 0.00 0.02 0.00 +coupe_jarret coupe_jarret nom m p 0.03 0.00 0.01 0.00 +coupe_ongle coupe_ongle nom m s 0.05 0.00 0.05 0.00 +coupe_ongles coupe_ongles nom m 0.26 0.14 0.26 0.14 +coupe_papier coupe_papier nom m 0.36 0.95 0.36 0.95 +coupe_pâte coupe_pâte nom m s 0.00 0.07 0.00 0.07 +coupe_racine coupe_racine nom m p 0.00 0.07 0.00 0.07 +coupe_vent coupe_vent nom m s 0.31 0.34 0.31 0.34 +coupe couper ver 155.82 140.88 32.66 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +coupelle coupelle nom f s 0.04 0.61 0.04 0.47 +coupelles coupelle nom f p 0.04 0.61 0.00 0.14 +coupent couper ver 155.82 140.88 2.19 3.99 ind:pre:3p; +couper couper ver 155.82 140.88 41.45 31.76 inf;;inf;;inf;; +coupera couper ver 155.82 140.88 1.13 0.61 ind:fut:3s; +couperai couper ver 155.82 140.88 1.67 0.20 ind:fut:1s; +couperaient couper ver 155.82 140.88 0.07 0.27 cnd:pre:3p; +couperais couper ver 155.82 140.88 1.00 0.41 cnd:pre:1s;cnd:pre:2s; +couperait couper ver 155.82 140.88 0.68 1.22 cnd:pre:3s; +couperas couper ver 155.82 140.88 0.31 0.27 ind:fut:2s; +couperet couperet nom m s 0.42 2.09 0.42 2.03 +couperets couperet nom m p 0.42 2.09 0.00 0.07 +couperez couper ver 155.82 140.88 0.11 0.20 ind:fut:2p; +couperons couper ver 155.82 140.88 0.17 0.20 ind:fut:1p; +couperont couper ver 155.82 140.88 0.20 0.20 ind:fut:3p; +couperose couperose nom f s 0.01 0.88 0.01 0.88 +couperosé couperoser ver m s 0.02 0.14 0.02 0.14 par:pas; +couperosée couperosé adj f s 0.00 1.28 0.00 0.20 +couperosées couperosé adj f p 0.00 1.28 0.00 0.20 +coupes couper ver 155.82 140.88 3.87 0.41 ind:pre:2s; +coupeur coupeur nom m s 0.55 0.41 0.30 0.27 +coupeurs coupeur nom m p 0.55 0.41 0.17 0.14 +coupeuse coupeur nom f s 0.55 0.41 0.08 0.00 +coupez couper ver 155.82 140.88 19.53 1.82 imp:pre:2p;ind:pre:2p; +coupiez couper ver 155.82 140.88 0.22 0.07 ind:imp:2p; +coupions couper ver 155.82 140.88 0.22 0.07 ind:imp:1p; +couplage couplage nom m s 0.11 0.00 0.07 0.00 +couplages couplage nom m p 0.11 0.00 0.04 0.00 +couplant coupler ver 0.42 0.95 0.02 0.00 par:pre; +couple couple nom s 49.62 63.99 41.13 47.23 +coupler coupler ver 0.42 0.95 0.01 0.14 inf; +couples couple nom m p 49.62 63.99 8.49 16.76 +couplet couplet nom m s 1.31 5.34 1.06 3.51 +couplets couplet nom m p 1.31 5.34 0.25 1.82 +coupleur coupleur nom m s 0.18 0.00 0.14 0.00 +coupleurs coupleur nom m p 0.18 0.00 0.04 0.00 +couplé coupler ver m s 0.42 0.95 0.07 0.20 par:pas; +couplée coupler ver f s 0.42 0.95 0.04 0.00 par:pas; +couplées coupler ver f p 0.42 0.95 0.02 0.14 par:pas; +couplés coupler ver m p 0.42 0.95 0.03 0.27 par:pas; +coupole coupole nom f s 1.16 8.92 1.13 5.27 +coupoles coupole nom f p 1.16 8.92 0.04 3.65 +coupon_cadeau coupon_cadeau nom m s 0.01 0.00 0.01 0.00 +coupon coupon nom m s 1.69 2.09 0.51 0.88 +coupons couper ver 155.82 140.88 1.86 0.20 imp:pre:1p;ind:pre:1p; +coups_de_poing coups_de_poing nom m p 0.00 0.14 0.00 0.14 +coups coup nom m p 471.82 837.70 82.33 196.15 +coupèrent couper ver 155.82 140.88 0.10 0.68 ind:pas:3p; +coupé couper ver m s 155.82 140.88 30.34 25.41 par:pas;par:pas;par:pas; +coupée couper ver f s 155.82 140.88 8.14 7.91 par:pas; +coupées couper ver f p 155.82 140.88 1.90 3.92 par:pas; +coupure coupure nom f s 10.48 11.08 6.29 5.81 +coupures coupure nom f p 10.48 11.08 4.19 5.27 +coupés couper ver m p 155.82 140.88 3.85 6.76 par:pas; +couques couque nom f p 0.00 0.07 0.00 0.07 +coéquipier coéquipier nom m s 4.20 0.47 2.73 0.07 +coéquipiers coéquipier nom m p 4.20 0.47 0.71 0.34 +coéquipière coéquipier nom f s 4.20 0.47 0.69 0.07 +coéquipières coéquipière nom f p 0.01 0.00 0.01 0.00 +cour_jardin cour_jardin nom f s 0.00 0.07 0.00 0.07 +cour cour nom f s 95.80 176.96 71.80 150.14 +courûmes courir ver 146.50 263.38 0.01 0.20 ind:pas:1p; +courût courir ver 146.50 263.38 0.00 0.27 sub:imp:3s; +courûtes courir ver 146.50 263.38 0.01 0.00 ind:pas:2p; +courage courage nom m s 70.73 70.34 70.70 69.80 +courages courage nom m p 70.73 70.34 0.03 0.54 +courageuse courageux adj f s 28.68 11.96 7.87 2.97 +courageusement courageusement adv 0.61 3.45 0.61 3.45 +courageuses courageux adj f p 28.68 11.96 0.59 0.61 +courageux courageux adj m 28.68 11.96 20.22 8.38 +couraient courir ver 146.50 263.38 1.54 17.91 ind:imp:3p; +courailler courailler ver 0.02 0.00 0.02 0.00 inf; +courais courir ver 146.50 263.38 2.86 5.00 ind:imp:1s;ind:imp:2s; +courait courir ver 146.50 263.38 3.38 32.43 ind:imp:3s; +couramment couramment adv 1.38 3.11 1.38 3.11 +courant courant nom m s 111.58 79.73 108.69 67.36 +courante courant adj f s 10.13 20.14 1.83 8.51 +courantes courant adj f p 10.13 20.14 0.53 2.23 +courants courant nom m p 111.58 79.73 2.89 12.36 +courba courber ver 2.84 19.66 0.00 2.09 ind:pas:3s; +courbaient courber ver 2.84 19.66 0.00 0.81 ind:imp:3p; +courbait courber ver 2.84 19.66 0.00 1.35 ind:imp:3s; +courbant courber ver 2.84 19.66 0.16 2.36 par:pre; +courbatu courbatu adj m s 0.02 0.54 0.01 0.27 +courbatue courbatu adj f s 0.02 0.54 0.01 0.14 +courbature courbature nom f s 0.39 1.62 0.01 0.54 +courbatures courbature nom f p 0.39 1.62 0.38 1.08 +courbaturé courbaturé adj m s 0.33 0.07 0.32 0.07 +courbaturée courbaturé adj f s 0.33 0.07 0.01 0.00 +courbatus courbatu adj m p 0.02 0.54 0.00 0.14 +courbe courbe nom f s 3.00 18.11 1.72 11.82 +courbent courber ver 2.84 19.66 0.11 0.07 ind:pre:3p; +courber courber ver 2.84 19.66 0.61 2.50 inf; +courberait courber ver 2.84 19.66 0.00 0.07 cnd:pre:3s; +courbes courbe nom f p 3.00 18.11 1.28 6.28 +courbette courbette nom f s 0.69 2.70 0.32 0.74 +courbettes courbette nom f p 0.69 2.70 0.38 1.96 +courbez courber ver 2.84 19.66 0.07 0.14 imp:pre:2p;ind:pre:2p; +courbons courber ver 2.84 19.66 0.01 0.07 imp:pre:1p;ind:pre:1p; +courbé courbé adj m s 0.66 6.08 0.59 2.97 +courbée courber ver f s 2.84 19.66 0.21 1.69 par:pas; +courbées courber ver f p 2.84 19.66 0.01 0.41 par:pas; +courbure courbure nom f s 0.33 2.50 0.21 2.16 +courbures courbure nom f p 0.33 2.50 0.12 0.34 +courbés courber ver m p 2.84 19.66 0.55 1.82 par:pas; +coure courir ver 146.50 263.38 0.72 1.22 sub:pre:1s;sub:pre:3s; +courent courir ver 146.50 263.38 8.83 12.84 ind:pre:3p; +coures courir ver 146.50 263.38 0.29 0.00 sub:pre:2s; +courette courette nom f s 0.00 2.09 0.00 1.69 +courettes courette nom f p 0.00 2.09 0.00 0.41 +coureur coureur nom m s 5.48 8.31 3.71 4.80 +coureurs coureur nom m p 5.48 8.31 1.42 2.36 +coureuse coureur nom f s 5.48 8.31 0.36 1.08 +coureuses coureuse nom f p 0.04 0.00 0.04 0.00 +courez courir ver 146.50 263.38 11.99 1.28 imp:pre:2p;ind:pre:2p; +courge courge nom f s 2.46 0.88 1.38 0.61 +courges courge nom f p 2.46 0.88 1.08 0.27 +courgette courgette nom f s 1.24 0.41 0.25 0.00 +courgettes courgette nom f p 1.24 0.41 1.00 0.41 +couriez courir ver 146.50 263.38 0.14 0.20 ind:imp:2p;sub:pre:2p; +courions courir ver 146.50 263.38 0.09 0.68 ind:imp:1p; +courir courir ver 146.50 263.38 47.19 71.82 inf; +courlis courlis nom m 0.03 0.47 0.03 0.47 +couronna couronner ver 5.56 14.86 0.14 0.27 ind:pas:3s; +couronnaient couronner ver 5.56 14.86 0.01 0.47 ind:imp:3p; +couronnait couronner ver 5.56 14.86 0.01 0.88 ind:imp:3s; +couronnant couronner ver 5.56 14.86 0.01 1.42 par:pre; +couronne couronne nom f s 23.15 20.61 15.16 12.50 +couronnement couronnement nom m s 2.40 2.09 2.38 2.03 +couronnements couronnement nom m p 2.40 2.09 0.01 0.07 +couronnent couronner ver 5.56 14.86 0.14 0.34 ind:pre:3p; +couronner couronner ver 5.56 14.86 1.76 2.23 inf; +couronnera couronner ver 5.56 14.86 0.01 0.07 ind:fut:3s; +couronnerai couronner ver 5.56 14.86 0.02 0.00 ind:fut:1s; +couronnerons couronner ver 5.56 14.86 0.02 0.00 ind:fut:1p; +couronnes couronne nom f p 23.15 20.61 7.99 8.11 +couronné couronner ver m s 5.56 14.86 1.45 3.65 par:pas; +couronnée couronner ver f s 5.56 14.86 1.05 2.57 par:pas; +couronnées couronné adj f p 0.63 1.49 0.27 0.34 +couronnés couronner ver m p 5.56 14.86 0.14 1.28 par:pas; +courons courir ver 146.50 263.38 2.19 1.76 imp:pre:1p;ind:pre:1p; +courra courir ver 146.50 263.38 0.90 0.41 ind:fut:3s; +courrai courir ver 146.50 263.38 0.22 0.07 ind:fut:1s; +courraient courir ver 146.50 263.38 0.07 0.14 cnd:pre:3p; +courrais courir ver 146.50 263.38 0.86 0.14 cnd:pre:1s;cnd:pre:2s; +courrait courir ver 146.50 263.38 0.37 0.61 cnd:pre:3s; +courras courir ver 146.50 263.38 0.35 0.00 ind:fut:2s; +courre courre ver 0.75 2.91 0.75 2.91 inf; +courrez courir ver 146.50 263.38 1.05 0.00 ind:fut:2p; +courriel courriel nom m s 0.24 0.00 0.24 0.00 +courrier courrier nom m s 23.98 24.46 23.40 23.04 +courriers courrier nom m p 23.98 24.46 0.59 1.42 +courriez courir ver 146.50 263.38 0.09 0.00 cnd:pre:2p; +courrions courir ver 146.50 263.38 0.02 0.00 cnd:pre:1p; +courriériste courriériste nom s 0.00 0.27 0.00 0.27 +courroie courroie nom f s 1.05 5.61 0.56 3.11 +courroies courroie nom f p 1.05 5.61 0.50 2.50 +courrons courir ver 146.50 263.38 0.19 0.20 ind:fut:1p; +courront courir ver 146.50 263.38 0.17 0.34 ind:fut:3p; +courrouce courroucer ver 0.63 2.50 0.02 0.14 imp:pre:2s;ind:pre:3s; +courroucer courroucer ver 0.63 2.50 0.02 0.00 inf; +courroucé courroucer ver m s 0.63 2.50 0.57 1.49 par:pas; +courroucée courroucer ver f s 0.63 2.50 0.02 0.47 par:pas; +courroucées courroucer ver f p 0.63 2.50 0.00 0.07 par:pas; +courroucés courroucer ver m p 0.63 2.50 0.00 0.20 par:pas; +courrouçaient courroucer ver 0.63 2.50 0.00 0.07 ind:imp:3p; +courrouçait courroucer ver 0.63 2.50 0.00 0.07 ind:imp:3s; +courroux courroux nom m 3.55 2.09 3.55 2.09 +cours cours nom m 119.05 149.93 119.05 149.93 +coursaient courser ver 1.30 2.50 0.02 0.07 ind:imp:3p; +coursais courser ver 1.30 2.50 0.01 0.07 ind:imp:1s;ind:imp:2s; +coursait courser ver 1.30 2.50 0.02 0.07 ind:imp:3s; +coursant courser ver 1.30 2.50 0.00 0.14 par:pre; +course_poursuite course_poursuite nom f s 0.34 0.00 0.34 0.00 +course course nom f s 72.48 81.22 40.45 51.22 +coursent courser ver 1.30 2.50 0.03 0.20 ind:pre:3p; +courser courser ver 1.30 2.50 0.14 0.41 inf; +courserais courser ver 1.30 2.50 0.01 0.00 cnd:pre:2s; +courses course nom f p 72.48 81.22 32.04 30.00 +coursier coursier nom m s 4.81 2.64 4.06 1.96 +coursiers coursier nom m p 4.81 2.64 0.73 0.61 +coursière coursier nom f s 4.81 2.64 0.02 0.07 +coursive coursive nom f s 0.34 3.38 0.26 2.36 +coursives coursive nom f p 0.34 3.38 0.09 1.01 +coursé courser ver m s 1.30 2.50 0.09 0.34 par:pas; +coursée courser ver f s 1.30 2.50 0.03 0.07 par:pas; +coursés courser ver m p 1.30 2.50 0.27 0.07 par:pas; +court_bouillon court_bouillon nom m s 0.29 0.68 0.29 0.68 +court_circuit court_circuit nom m s 1.53 1.76 1.47 1.55 +court_circuiter court_circuiter ver 0.83 0.54 0.00 0.07 ind:imp:3s; +court_circuiter court_circuiter ver 0.83 0.54 0.00 0.07 par:pre; +court_circuiter court_circuiter ver 0.83 0.54 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +court_circuiter court_circuiter ver 0.83 0.54 0.29 0.20 inf; +court_circuit court_circuit ver 0.01 0.00 0.01 0.00 ind:pre:3s; +court_circuits court_circuits nom m s 0.02 0.00 0.02 0.00 +court_circuiter court_circuiter ver m s 0.83 0.54 0.28 0.07 par:pas; +court_circuiter court_circuiter ver f s 0.83 0.54 0.02 0.07 par:pas; +court_circuiter court_circuiter ver f p 0.83 0.54 0.10 0.00 par:pas; +court_courrier court_courrier nom m s 0.01 0.00 0.01 0.00 +court_jus court_jus nom m 0.03 0.00 0.03 0.00 +court_métrage court_métrage nom m s 0.17 0.00 0.17 0.00 +court_vêtu court_vêtu adj f s 0.01 0.14 0.01 0.00 +court_vêtu court_vêtu adj f p 0.01 0.14 0.00 0.14 +court courir ver 146.50 263.38 19.25 22.30 ind:pre:3s; +courtage courtage nom m s 0.36 0.27 0.36 0.07 +courtages courtage nom m p 0.36 0.27 0.00 0.20 +courtaud courtaud adj m s 0.22 1.15 0.21 0.61 +courtaude courtaud adj f s 0.22 1.15 0.01 0.27 +courtaudes courtaud adj f p 0.22 1.15 0.00 0.20 +courtauds courtaud adj m p 0.22 1.15 0.00 0.07 +courte court adj f s 41.15 108.99 14.07 32.77 +courtelinesque courtelinesque adj m s 0.00 0.14 0.00 0.07 +courtelinesques courtelinesque adj p 0.00 0.14 0.00 0.07 +courtement courtement adv 0.00 0.20 0.00 0.20 +courtepointe courtepointe nom f s 0.01 1.35 0.01 1.28 +courtepointes courtepointe nom f p 0.01 1.35 0.00 0.07 +courtes court adj f p 41.15 108.99 3.63 20.14 +courtier courtier nom m s 2.96 1.76 2.21 0.74 +courtiers courtier nom m p 2.96 1.76 0.73 0.61 +courtilière courtilière nom f s 0.00 0.14 0.00 0.07 +courtilières courtilière nom f p 0.00 0.14 0.00 0.07 +courtils courtil nom m p 0.00 0.07 0.00 0.07 +courtine courtine nom f s 0.00 2.43 0.00 0.34 +courtines courtine nom f p 0.00 2.43 0.00 2.09 +courtisa courtiser ver 2.79 2.50 0.00 0.07 ind:pas:3s; +courtisaient courtiser ver 2.79 2.50 0.03 0.07 ind:imp:3p; +courtisais courtiser ver 2.79 2.50 0.04 0.07 ind:imp:1s;ind:imp:2s; +courtisait courtiser ver 2.79 2.50 0.03 0.34 ind:imp:3s; +courtisan courtisan adj m s 0.30 0.47 0.28 0.34 +courtisane courtisan nom f s 2.58 6.82 0.66 2.09 +courtisanerie courtisanerie nom f s 0.00 0.41 0.00 0.41 +courtisanes courtisan nom f p 2.58 6.82 0.47 1.62 +courtisans courtisan nom m p 2.58 6.82 1.25 1.89 +courtisant courtiser ver 2.79 2.50 0.02 0.07 par:pre; +courtise courtiser ver 2.79 2.50 0.52 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +courtisent courtiser ver 2.79 2.50 0.14 0.07 ind:pre:3p; +courtiser courtiser ver 2.79 2.50 1.01 0.34 inf; +courtiserai courtiser ver 2.79 2.50 0.01 0.00 ind:fut:1s; +courtiseras courtiser ver 2.79 2.50 0.01 0.00 ind:fut:2s; +courtisez courtiser ver 2.79 2.50 0.05 0.00 imp:pre:2p;ind:pre:2p; +courtisiez courtiser ver 2.79 2.50 0.12 0.00 ind:imp:2p; +courtisé courtiser ver m s 2.79 2.50 0.45 0.20 par:pas; +courtisée courtiser ver f s 2.79 2.50 0.33 0.88 par:pas; +courtisées courtiser ver f p 2.79 2.50 0.01 0.07 par:pas; +courtière courtier nom f s 2.96 1.76 0.02 0.34 +courtières courtier nom f p 2.96 1.76 0.00 0.07 +courtois courtois adj m 1.97 9.73 1.58 7.03 +courtoise courtois adj f s 1.97 9.73 0.28 2.23 +courtoisement courtoisement adv 0.27 1.96 0.27 1.96 +courtoises courtois adj f p 1.97 9.73 0.11 0.47 +courtoisie courtoisie nom f s 4.59 8.18 4.42 8.04 +courtoisies courtoisie nom f p 4.59 8.18 0.16 0.14 +court_circuit court_circuit nom m p 1.53 1.76 0.07 0.20 +courts court adj m p 41.15 108.99 6.03 16.22 +couru courir ver m s 146.50 263.38 12.76 16.42 par:pas; +courue courir ver f s 146.50 263.38 0.11 0.14 par:pas; +courues courir ver f p 146.50 263.38 0.00 0.14 par:pas; +coururent courir ver 146.50 263.38 0.49 3.78 ind:pas:3p; +courus courir ver m p 146.50 263.38 0.23 4.73 ind:pas:1s;par:pas; +courussent courir ver 146.50 263.38 0.00 0.07 sub:imp:3p; +courut courir ver 146.50 263.38 1.65 22.64 ind:pas:3s; +cous_de_pied cous_de_pied nom m p 0.00 0.07 0.00 0.07 +cous cou nom m p 44.09 115.34 0.38 2.64 +cousaient coudre ver 8.88 20.74 0.01 0.20 ind:imp:3p; +cousait coudre ver 8.88 20.74 0.16 2.36 ind:imp:3s; +cousant coudre ver 8.88 20.74 0.03 0.88 par:pre; +couscous couscous nom m 1.05 3.24 1.05 3.24 +couscoussier couscoussier nom m s 0.15 0.34 0.15 0.27 +couscoussiers couscoussier nom m p 0.15 0.34 0.00 0.07 +couse coudre ver 8.88 20.74 0.06 0.07 sub:pre:1s;sub:pre:3s; +cousent coudre ver 8.88 20.74 0.07 0.14 ind:pre:3p; +cousette cousette nom f s 0.01 0.68 0.00 0.14 +cousettes cousette nom f p 0.01 0.68 0.01 0.54 +couseuse couseur nom f s 0.01 0.00 0.01 0.00 +cousez coudre ver 8.88 20.74 0.17 0.00 imp:pre:2p;ind:pre:2p; +cousiez coudre ver 8.88 20.74 0.00 0.07 ind:imp:2p; +cousin cousin nom m s 73.87 89.93 37.31 39.05 +cousinage cousinage nom m s 0.00 0.88 0.00 0.47 +cousinages cousinage nom m p 0.00 0.88 0.00 0.41 +cousinant cousiner ver 0.00 0.14 0.00 0.14 par:pre; +cousine cousin nom f s 73.87 89.93 23.72 25.14 +cousines cousin nom f p 73.87 89.93 2.18 5.14 +cousins cousin nom m p 73.87 89.93 10.66 20.61 +cousirent coudre ver 8.88 20.74 0.00 0.07 ind:pas:3p; +cousissent coudre ver 8.88 20.74 0.00 0.07 sub:imp:3p; +cousit coudre ver 8.88 20.74 0.00 0.14 ind:pas:3s; +coussin coussin nom m s 4.41 22.70 2.44 8.45 +coussinet coussinet nom m s 0.07 0.88 0.04 0.47 +coussinets coussinet nom m p 0.07 0.88 0.02 0.41 +coussins coussin nom m p 4.41 22.70 1.98 14.26 +cousu coudre ver m s 8.88 20.74 1.18 2.97 par:pas; +cousue cousu adj f s 1.86 2.50 1.50 0.88 +cousues coudre ver f p 8.88 20.74 0.25 0.95 par:pas; +cousus coudre ver m p 8.88 20.74 0.43 1.69 par:pas; +couteau_scie couteau_scie nom m s 0.01 0.07 0.01 0.07 +couteau couteau nom m s 58.15 52.64 51.08 44.26 +couteaux couteau nom m p 58.15 52.64 7.08 8.38 +coutelas coutelas nom m 0.02 1.22 0.02 1.22 +coutelier coutelier nom m s 0.02 0.20 0.02 0.20 +coutellerie coutellerie nom f s 0.01 0.20 0.01 0.14 +coutelleries coutellerie nom f p 0.01 0.20 0.00 0.07 +coutil coutil nom m s 0.00 1.28 0.00 1.28 +coutume coutume nom f s 10.46 25.14 7.27 17.03 +coutumes coutume nom f p 10.46 25.14 3.19 8.11 +coutumier coutumier adj m s 0.85 6.15 0.63 2.36 +coutumiers coutumier adj m p 0.85 6.15 0.00 0.88 +coutumière coutumier adj f s 0.85 6.15 0.20 2.57 +coutumièrement coutumièrement adv 0.00 0.07 0.00 0.07 +coutumières coutumier adj f p 0.85 6.15 0.02 0.34 +couturaient couturer ver 0.10 1.28 0.00 0.14 ind:imp:3p; +couture couture nom f s 5.52 10.54 4.31 8.45 +coutures couture nom f p 5.52 10.54 1.21 2.09 +couturier couturier nom m s 3.15 10.27 0.56 2.43 +couturiers couturier nom m p 3.15 10.27 0.15 1.28 +couturière couturier nom f s 3.15 10.27 2.45 5.81 +couturières couturière nom f p 0.36 0.00 0.36 0.00 +couturé couturer ver m s 0.10 1.28 0.00 0.47 par:pas; +couturée couturer ver f s 0.10 1.28 0.10 0.41 par:pas; +couturées couturer ver f p 0.10 1.28 0.00 0.14 par:pas; +couturés couturer ver m p 0.10 1.28 0.00 0.14 par:pas; +couvade couvade nom f s 0.01 0.00 0.01 0.00 +couvaient couver ver 3.59 12.03 0.14 0.54 ind:imp:3p; +couvais couver ver 3.59 12.03 0.01 0.14 ind:imp:1s; +couvaison couvaison nom f s 0.00 0.20 0.00 0.14 +couvaisons couvaison nom f p 0.00 0.20 0.00 0.07 +couvait couver ver 3.59 12.03 0.25 3.58 ind:imp:3s; +couvant couver ver 3.59 12.03 0.02 0.54 par:pre; +couve couver ver 3.59 12.03 1.54 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +couvent couvent nom m s 16.83 26.15 16.09 22.50 +couventine couventine nom f s 0.00 0.41 0.00 0.20 +couventines couventine nom f p 0.00 0.41 0.00 0.20 +couvents couvent nom m p 16.83 26.15 0.74 3.65 +couver couver ver 3.59 12.03 0.75 1.62 inf; +couvercle couvercle nom m s 2.71 22.09 2.56 20.61 +couvercles couvercle nom m p 2.71 22.09 0.16 1.49 +couveront couver ver 3.59 12.03 0.01 0.07 ind:fut:3p; +couvert couvrir ver m s 88.29 133.51 14.62 26.89 par:pas; +couverte couvrir ver f s 88.29 133.51 4.77 18.31 par:pas; +couvertes couvrir ver f p 88.29 133.51 1.77 10.27 par:pas; +couverts couvrir ver m p 88.29 133.51 2.92 11.82 par:pas; +couverture couverture nom f s 34.39 62.03 26.50 41.01 +couvertures couverture nom f p 34.39 62.03 7.89 21.01 +couves couver ver 3.59 12.03 0.23 0.27 ind:pre:2s; +couvet couvet nom m s 0.00 0.14 0.00 0.14 +couveuse couveuse nom f s 0.51 0.95 0.51 0.74 +couveuses couveuse nom f p 0.51 0.95 0.00 0.20 +couvez couver ver 3.59 12.03 0.09 0.07 imp:pre:2p;ind:pre:2p; +couvis couvi adj m p 0.00 0.07 0.00 0.07 +couvrît couvrir ver 88.29 133.51 0.00 0.07 sub:imp:3s; +couvraient couvrir ver 88.29 133.51 0.45 4.26 ind:imp:3p; +couvrais couvrir ver 88.29 133.51 0.76 0.54 ind:imp:1s;ind:imp:2s; +couvrait couvrir ver 88.29 133.51 1.35 15.27 ind:imp:3s; +couvrant couvrir ver 88.29 133.51 0.85 4.26 par:pre; +couvrante couvrant adj f s 0.18 2.64 0.01 1.49 +couvrantes couvrant adj f p 0.18 2.64 0.00 0.88 +couvre_chef couvre_chef nom m s 0.58 1.55 0.42 1.35 +couvre_chef couvre_chef nom m p 0.58 1.55 0.16 0.20 +couvre_feu couvre_feu nom m s 3.63 3.11 3.63 3.11 +couvre_feux couvre_feux nom m p 0.04 0.00 0.04 0.00 +couvre_lit couvre_lit nom m s 0.33 2.77 0.30 2.70 +couvre_lit couvre_lit nom m p 0.33 2.77 0.03 0.07 +couvre_pied couvre_pied nom m s 0.01 0.47 0.01 0.47 +couvre_pieds couvre_pieds nom m 0.01 0.47 0.01 0.47 +couvre couvrir ver 88.29 133.51 23.58 11.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +couvrent couvrir ver 88.29 133.51 1.96 3.65 ind:pre:3p; +couvres couvrir ver 88.29 133.51 2.54 0.27 ind:pre:2s;sub:pre:2s; +couvreur couvreur nom m s 0.41 1.01 0.37 0.74 +couvreurs couvreur nom m p 0.41 1.01 0.04 0.27 +couvrez couvrir ver 88.29 133.51 8.41 0.47 imp:pre:2p;ind:pre:2p; +couvriez couvrir ver 88.29 133.51 0.09 0.00 ind:imp:2p; +couvrir couvrir ver 88.29 133.51 19.57 16.82 inf; +couvrira couvrir ver 88.29 133.51 1.72 0.41 ind:fut:3s; +couvrirai couvrir ver 88.29 133.51 1.03 0.07 ind:fut:1s; +couvriraient couvrir ver 88.29 133.51 0.06 0.41 cnd:pre:3p; +couvrirais couvrir ver 88.29 133.51 0.29 0.00 cnd:pre:1s;cnd:pre:2s; +couvrirait couvrir ver 88.29 133.51 0.15 0.68 cnd:pre:3s; +couvriras couvrir ver 88.29 133.51 0.07 0.20 ind:fut:2s; +couvrirent couvrir ver 88.29 133.51 0.00 1.15 ind:pas:3p; +couvrirez couvrir ver 88.29 133.51 0.27 0.14 ind:fut:2p; +couvrirons couvrir ver 88.29 133.51 0.10 0.00 ind:fut:1p; +couvriront couvrir ver 88.29 133.51 0.27 0.07 ind:fut:3p; +couvris couvrir ver 88.29 133.51 0.00 0.61 ind:pas:1s; +couvrit couvrir ver 88.29 133.51 0.20 5.61 ind:pas:3s; +couvrons couvrir ver 88.29 133.51 0.48 0.07 imp:pre:1p;ind:pre:1p; +couvé couver ver m s 3.59 12.03 0.17 1.82 par:pas; +couvée couvée nom f s 0.20 1.42 0.19 1.15 +couvées couvée nom f p 0.20 1.42 0.01 0.27 +couvés couver ver m p 3.59 12.03 0.01 0.68 par:pas; +covalent covalent adj m s 0.03 0.00 0.01 0.00 +covalente covalent adj f s 0.03 0.00 0.01 0.00 +covenant covenant nom m s 0.05 0.00 0.05 0.00 +cover_girl cover_girl nom f s 0.14 0.47 0.14 0.20 +cover_girl cover_girl nom f p 0.14 0.47 0.00 0.27 +covoiturage covoiturage nom m s 0.07 0.00 0.07 0.00 +cow_boy cow_boy nom m s 0.01 5.27 0.00 3.11 +cow_boy cow_boy nom m p 0.01 5.27 0.01 2.16 +coxalgie coxalgie nom f s 0.00 0.07 0.00 0.07 +coxalgique coxalgique adj s 0.00 0.07 0.00 0.07 +coyote coyote nom m s 4.01 0.47 2.50 0.34 +coyotes coyote nom m p 4.01 0.47 1.52 0.14 +crû croître ver m s 4.79 10.34 0.93 0.41 par:pas; +crûment crûment adv 0.54 1.89 0.54 1.89 +crûmes croire ver_sup 1711.99 947.23 0.00 0.54 ind:pas:1p; +crût croire ver_sup 1711.99 947.23 0.05 0.68 sub:imp:3s; +crabe crabe nom m s 8.14 12.36 4.90 7.30 +crabes crabe nom m p 8.14 12.36 3.24 5.07 +crabillon crabillon nom m s 0.00 0.20 0.00 0.07 +crabillons crabillon nom m p 0.00 0.20 0.00 0.14 +crabs crabs nom m p 0.41 0.00 0.41 0.00 +crac crac nom_sup m s 2.85 6.01 2.85 6.01 +cracha cracher ver 27.93 45.81 0.16 5.20 ind:pas:3s; +crachai cracher ver 27.93 45.81 0.00 0.20 ind:pas:1s; +crachaient cracher ver 27.93 45.81 0.03 1.76 ind:imp:3p; +crachais cracher ver 27.93 45.81 0.13 0.68 ind:imp:1s;ind:imp:2s; +crachait cracher ver 27.93 45.81 0.87 4.66 ind:imp:3s; +crachant cracher ver 27.93 45.81 0.36 4.32 par:pre; +crachat crachat nom m s 1.34 3.72 1.08 1.62 +crachats crachat nom m p 1.34 3.72 0.26 2.09 +crache cracher ver 27.93 45.81 10.28 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crachement crachement nom m s 0.00 0.68 0.00 0.54 +crachements crachement nom m p 0.00 0.68 0.00 0.14 +crachent cracher ver 27.93 45.81 0.93 1.42 ind:pre:3p; +cracher cracher ver 27.93 45.81 6.86 10.34 inf; +crachera cracher ver 27.93 45.81 0.30 0.14 ind:fut:3s; +cracherai cracher ver 27.93 45.81 0.21 0.34 ind:fut:1s; +cracherais cracher ver 27.93 45.81 0.64 0.14 cnd:pre:1s;cnd:pre:2s; +cracherait cracher ver 27.93 45.81 0.18 0.20 cnd:pre:3s; +cracheriez cracher ver 27.93 45.81 0.01 0.00 cnd:pre:2p; +cracheront cracher ver 27.93 45.81 0.04 0.14 ind:fut:3p; +craches cracher ver 27.93 45.81 1.41 0.41 ind:pre:2s;sub:pre:2s; +cracheur cracheur nom m s 0.32 1.08 0.28 0.88 +cracheurs cracheur nom m p 0.32 1.08 0.01 0.14 +cracheuse cracheur nom f s 0.32 1.08 0.03 0.07 +cracheuses cracheuse nom f p 0.01 0.00 0.01 0.00 +crachez cracher ver 27.93 45.81 0.91 0.14 imp:pre:2p;ind:pre:2p; +crachin crachin nom m s 0.03 2.03 0.03 1.89 +crachine crachiner ver 0.00 0.20 0.00 0.07 ind:pre:3s; +crachiner crachiner ver 0.00 0.20 0.00 0.14 inf; +crachins crachin nom m p 0.03 2.03 0.00 0.14 +crachoir crachoir nom m s 0.56 0.61 0.32 0.47 +crachoirs crachoir nom m p 0.56 0.61 0.24 0.14 +crachons cracher ver 27.93 45.81 0.14 0.07 imp:pre:1p;ind:pre:1p; +crachota crachoter ver 0.02 2.30 0.01 0.14 ind:pas:3s; +crachotaient crachoter ver 0.02 2.30 0.00 0.07 ind:imp:3p; +crachotait crachoter ver 0.02 2.30 0.00 0.41 ind:imp:3s; +crachotant crachoter ver 0.02 2.30 0.00 0.47 par:pre; +crachotantes crachotant adj f p 0.00 0.41 0.00 0.07 +crachotants crachotant adj m p 0.00 0.41 0.00 0.07 +crachote crachoter ver 0.02 2.30 0.01 0.41 ind:pre:3s; +crachotement crachotement nom m s 0.00 0.27 0.00 0.14 +crachotements crachotement nom m p 0.00 0.27 0.00 0.14 +crachotent crachoter ver 0.02 2.30 0.00 0.14 ind:pre:3p; +crachoter crachoter ver 0.02 2.30 0.00 0.54 inf; +crachoteuse crachoteux adj f s 0.00 0.20 0.00 0.14 +crachoteux crachoteux adj m 0.00 0.20 0.00 0.07 +crachoté crachoter ver m s 0.02 2.30 0.00 0.14 par:pas; +crachouilla crachouiller ver 0.00 0.34 0.00 0.14 ind:pas:3s; +crachouille crachouiller ver 0.00 0.34 0.00 0.20 ind:pre:3s; +crachouillis crachouillis nom m 0.01 0.14 0.01 0.14 +crachèrent cracher ver 27.93 45.81 0.00 0.27 ind:pas:3p; +craché cracher ver m s 27.93 45.81 4.26 4.53 par:pas; +crachée craché adj f s 3.24 1.62 0.19 0.27 +crachées cracher ver f p 27.93 45.81 0.01 0.07 par:pas; +crachés cracher ver m p 27.93 45.81 0.01 0.20 par:pas; +crack crack nom m s 7.77 0.88 7.30 0.68 +cracker cracker nom m s 2.22 0.27 0.72 0.00 +crackers cracker nom m p 2.22 0.27 1.50 0.27 +cracking cracking nom m s 0.01 0.00 0.01 0.00 +cracks crack nom m p 7.77 0.88 0.47 0.20 +cracra cracra adj f s 0.04 0.54 0.04 0.54 +crade crade adj s 1.31 1.55 1.19 1.35 +crades crade adj p 1.31 1.55 0.12 0.20 +cradingue cradingue adj s 0.12 1.42 0.12 1.01 +cradingues cradingue adj p 0.12 1.42 0.00 0.41 +crado crado adj s 0.23 1.22 0.17 0.95 +cradoque cradoque adj f s 0.01 0.00 0.01 0.00 +crados crado adj p 0.23 1.22 0.06 0.27 +craie craie nom f s 5.80 10.68 5.66 10.20 +craies craie nom f p 5.80 10.68 0.14 0.47 +craignît craindre ver 117.44 108.31 0.00 0.20 sub:imp:3s; +craignaient craindre ver 117.44 108.31 0.82 2.91 ind:imp:3p; +craignais craindre ver 117.44 108.31 5.34 8.31 ind:imp:1s;ind:imp:2s; +craignait craindre ver 117.44 108.31 3.42 20.14 ind:imp:3s; +craignant craindre ver 117.44 108.31 1.35 7.97 par:pre; +craigne craindre ver 117.44 108.31 0.49 0.41 sub:pre:1s;sub:pre:3s; +craignent craindre ver 117.44 108.31 3.75 2.36 ind:pre:3p; +craignes craindre ver 117.44 108.31 0.14 0.00 sub:pre:2s; +craignez craindre ver 117.44 108.31 9.27 3.38 imp:pre:2p;ind:pre:2p; +craigniez craindre ver 117.44 108.31 0.38 0.20 ind:imp:2p; +craignions craindre ver 117.44 108.31 0.22 0.20 ind:imp:1p; +craignirent craindre ver 117.44 108.31 0.00 0.07 ind:pas:3p; +craignis craindre ver 117.44 108.31 0.14 0.54 ind:pas:1s; +craignissent craindre ver 117.44 108.31 0.00 0.07 sub:imp:3p; +craignit craindre ver 117.44 108.31 0.01 1.82 ind:pas:3s; +craignons craindre ver 117.44 108.31 1.32 1.08 imp:pre:1p;ind:pre:1p; +craignos craignos adj 1.02 0.74 1.02 0.74 +craillaient crailler ver 0.00 0.14 0.00 0.07 ind:imp:3p; +craillent crailler ver 0.00 0.14 0.00 0.07 ind:pre:3p; +craindra craindre ver 117.44 108.31 0.22 0.07 ind:fut:3s; +craindrai craindre ver 117.44 108.31 0.08 0.00 ind:fut:1s; +craindraient craindre ver 117.44 108.31 0.04 0.07 cnd:pre:3p; +craindrais craindre ver 117.44 108.31 0.19 0.20 cnd:pre:1s;cnd:pre:2s; +craindrait craindre ver 117.44 108.31 0.10 0.34 cnd:pre:3s; +craindras craindre ver 117.44 108.31 0.03 0.00 ind:fut:2s; +craindre craindre ver 117.44 108.31 18.73 19.73 inf; +craindriez craindre ver 117.44 108.31 0.16 0.00 cnd:pre:2p; +craindrons craindre ver 117.44 108.31 0.01 0.00 ind:fut:1p; +craindront craindre ver 117.44 108.31 0.02 0.07 ind:fut:3p; +crains craindre ver 117.44 108.31 40.76 17.64 imp:pre:2s;ind:pre:1s;ind:pre:2s; +craint craindre ver m s 117.44 108.31 23.43 15.54 ind:pre:3s;par:pas; +crainte crainte nom f s 14.54 52.64 11.39 45.61 +craintes crainte nom f p 14.54 52.64 3.15 7.03 +craintif craintif adj m s 1.38 8.31 0.97 3.92 +craintifs craintif adj m p 1.38 8.31 0.19 1.49 +craintive craintif adj f s 1.38 8.31 0.22 2.23 +craintivement craintivement adv 0.00 1.15 0.00 1.15 +craintives craintif adj f p 1.38 8.31 0.00 0.68 +craints craindre ver m p 117.44 108.31 0.25 0.14 par:pas; +crama cramer ver 4.59 2.97 0.00 0.07 ind:pas:3s; +cramaient cramer ver 4.59 2.97 0.00 0.07 ind:imp:3p; +cramait cramer ver 4.59 2.97 0.01 0.14 ind:imp:3s; +cramant cramer ver 4.59 2.97 0.00 0.07 par:pre; +crame cramer ver 4.59 2.97 1.17 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crament cramer ver 4.59 2.97 0.05 0.07 ind:pre:3p; +cramer cramer ver 4.59 2.97 1.47 0.81 inf; +crameraient cramer ver 4.59 2.97 0.01 0.00 cnd:pre:3p; +cramerais cramer ver 4.59 2.97 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +crameras cramer ver 4.59 2.97 0.01 0.00 ind:fut:2s; +cramez cramer ver 4.59 2.97 0.16 0.00 imp:pre:2p;ind:pre:2p; +cramoisi cramoisi adj m s 0.25 4.26 0.13 2.70 +cramoisie cramoisi adj f s 0.25 4.26 0.10 0.47 +cramoisies cramoisi adj f p 0.25 4.26 0.00 0.47 +cramoisis cramoisi adj m p 0.25 4.26 0.02 0.61 +cramouille cramouille nom f s 0.06 0.47 0.05 0.34 +cramouilles cramouille nom f p 0.06 0.47 0.01 0.14 +crampe crampe nom f s 5.18 6.01 2.62 2.84 +crampes crampe nom f p 5.18 6.01 2.57 3.18 +crampette crampette nom f s 0.00 0.14 0.00 0.07 +crampettes crampette nom f p 0.00 0.14 0.00 0.07 +crampon crampon nom m s 1.49 1.15 0.98 0.20 +cramponna cramponner ver 1.67 13.45 0.00 0.54 ind:pas:3s; +cramponnaient cramponner ver 1.67 13.45 0.00 0.14 ind:imp:3p; +cramponnais cramponner ver 1.67 13.45 0.14 0.41 ind:imp:1s;ind:imp:2s; +cramponnait cramponner ver 1.67 13.45 0.02 1.49 ind:imp:3s; +cramponnant cramponner ver 1.67 13.45 0.00 1.08 par:pre; +cramponne cramponner ver 1.67 13.45 0.49 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cramponnent cramponner ver 1.67 13.45 0.00 0.27 ind:pre:3p; +cramponner cramponner ver 1.67 13.45 0.09 1.35 inf; +cramponneront cramponner ver 1.67 13.45 0.02 0.00 ind:fut:3p; +cramponnez cramponner ver 1.67 13.45 0.55 0.14 imp:pre:2p;ind:pre:2p; +cramponniez cramponner ver 1.67 13.45 0.01 0.07 ind:imp:2p; +cramponnons cramponner ver 1.67 13.45 0.01 0.14 imp:pre:1p;ind:pre:1p; +cramponné cramponner ver m s 1.67 13.45 0.16 2.50 par:pas; +cramponnée cramponner ver f s 1.67 13.45 0.14 1.62 par:pas; +cramponnées cramponner ver f p 1.67 13.45 0.00 0.41 par:pas; +cramponnés cramponner ver m p 1.67 13.45 0.03 1.35 par:pas; +crampons crampon nom m p 1.49 1.15 0.51 0.95 +cramé cramer ver m s 4.59 2.97 1.50 0.88 par:pas; +cramée cramer ver f s 4.59 2.97 0.06 0.07 par:pas; +cramées cramer ver f p 4.59 2.97 0.00 0.07 par:pas; +cramés cramer ver m p 4.59 2.97 0.14 0.07 par:pas; +cran cran nom m s 13.97 8.11 13.61 6.96 +crane crane nom m s 0.96 0.00 0.96 0.00 +craniométrie craniométrie nom f s 0.03 0.00 0.03 0.00 +craniotomie craniotomie nom f s 0.03 0.00 0.03 0.00 +crans cran nom m p 13.97 8.11 0.36 1.15 +cranter cranter ver 0.08 0.34 0.05 0.14 inf; +cranté cranter ver m s 0.08 0.34 0.01 0.14 par:pas; +crantées cranter ver f p 0.08 0.34 0.01 0.00 par:pas; +crantés cranter ver m p 0.08 0.34 0.01 0.07 par:pas; +craonnais craonnais adj m 0.00 0.61 0.00 0.27 +craonnaise craonnais adj f s 0.00 0.61 0.00 0.07 +craonnaises craonnais adj f p 0.00 0.61 0.00 0.27 +crapahutait crapahuter ver 0.25 0.47 0.00 0.07 ind:imp:3s; +crapahutant crapahuter ver 0.25 0.47 0.00 0.07 par:pre; +crapahute crapahuter ver 0.25 0.47 0.01 0.07 ind:pre:1s;ind:pre:3s; +crapahuter crapahuter ver 0.25 0.47 0.19 0.14 inf; +crapahutons crapahuter ver 0.25 0.47 0.00 0.07 ind:pre:1p; +crapahuté crapahuter ver m s 0.25 0.47 0.05 0.07 par:pas; +crapaud_buffle crapaud_buffle nom m s 0.01 0.14 0.01 0.00 +crapaud crapaud nom m s 11.30 9.19 9.60 6.08 +crapaud_buffle crapaud_buffle nom m p 0.01 0.14 0.00 0.14 +crapauds crapaud nom m p 11.30 9.19 1.70 3.11 +crapoter crapoter ver 0.01 0.00 0.01 0.00 inf; +crapoteuse crapoteux adj f s 0.01 0.41 0.00 0.20 +crapoteuses crapoteux adj f p 0.01 0.41 0.00 0.07 +crapoteux crapoteux adj m 0.01 0.41 0.01 0.14 +crapouillot crapouillot nom m s 0.01 0.20 0.01 0.07 +crapouillots crapouillot nom m p 0.01 0.20 0.00 0.14 +craps craps nom m p 0.73 0.07 0.73 0.07 +crapule crapule nom f s 7.09 3.45 4.43 2.50 +crapulerie crapulerie nom f s 0.01 0.27 0.01 0.27 +crapules crapule nom f p 7.09 3.45 2.66 0.95 +crapuleuse crapuleux adj f s 0.36 2.36 0.03 0.95 +crapuleusement crapuleusement adv 0.00 0.14 0.00 0.14 +crapuleuses crapuleux adj f p 0.36 2.36 0.00 0.20 +crapuleux crapuleux adj m 0.36 2.36 0.33 1.22 +craqua craquer ver 21.23 37.16 0.01 1.69 ind:pas:3s; +craquage craquage nom m s 0.04 0.00 0.04 0.00 +craquaient craquer ver 21.23 37.16 0.06 1.96 ind:imp:3p; +craquais craquer ver 21.23 37.16 0.19 0.00 ind:imp:1s;ind:imp:2s; +craquait craquer ver 21.23 37.16 0.23 4.32 ind:imp:3s; +craquant craquant adj m s 1.75 3.45 0.90 1.42 +craquante craquant adj f s 1.75 3.45 0.66 0.88 +craquantes craquant adj f p 1.75 3.45 0.05 0.74 +craquants craquant adj m p 1.75 3.45 0.14 0.41 +craque craquer ver 21.23 37.16 4.40 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +craquela craqueler ver 0.05 2.36 0.00 0.07 ind:pas:3s; +craquelaient craqueler ver 0.05 2.36 0.00 0.07 ind:imp:3p; +craquelait craqueler ver 0.05 2.36 0.00 0.27 ind:imp:3s; +craquelant craqueler ver 0.05 2.36 0.00 0.20 par:pre; +craqueler craqueler ver 0.05 2.36 0.02 0.34 inf; +craquelin craquelin nom m s 1.01 0.07 0.40 0.00 +craquelins craquelin nom m p 1.01 0.07 0.61 0.07 +craquelle craqueler ver 0.05 2.36 0.01 0.14 ind:pre:3s; +craquellent craqueler ver 0.05 2.36 0.00 0.20 ind:pre:3p; +craquelèrent craqueler ver 0.05 2.36 0.00 0.07 ind:pas:3p; +craquelé craquelé adj m s 0.12 2.57 0.11 0.47 +craquelée craquelé adj f s 0.12 2.57 0.01 0.74 +craquelées craquelé adj f p 0.12 2.57 0.00 0.88 +craquelure craquelure nom f s 0.14 1.15 0.14 0.27 +craquelures craquelure nom f p 0.14 1.15 0.00 0.88 +craquelés craquelé adj m p 0.12 2.57 0.00 0.47 +craquement craquement nom m s 2.48 13.45 1.17 7.36 +craquements craquement nom m p 2.48 13.45 1.31 6.08 +craquent craquer ver 21.23 37.16 0.79 2.03 ind:pre:3p; +craquer craquer ver 21.23 37.16 8.52 15.74 inf; +craquera craquer ver 21.23 37.16 0.79 0.07 ind:fut:3s; +craqueraient craquer ver 21.23 37.16 0.01 0.07 cnd:pre:3p; +craquerait craquer ver 21.23 37.16 0.13 0.14 cnd:pre:3s; +craqueras craquer ver 21.23 37.16 0.04 0.07 ind:fut:2s; +craqueront craquer ver 21.23 37.16 0.16 0.14 ind:fut:3p; +craques craquer ver 21.23 37.16 1.07 0.14 ind:pre:2s; +craquette craqueter ver 0.02 0.07 0.02 0.07 ind:pre:3s; +craquez craquer ver 21.23 37.16 0.15 0.07 imp:pre:2p;ind:pre:2p; +craquiez craquer ver 21.23 37.16 0.12 0.00 ind:imp:2p; +craquèlement craquèlement nom m s 0.00 0.14 0.00 0.14 +craquèrent craquer ver 21.23 37.16 0.00 0.47 ind:pas:3p; +craqué craquer ver m s 21.23 37.16 4.39 3.04 par:pas; +craquée craquer ver f s 21.23 37.16 0.17 0.00 par:pas; +craquées craquer ver f p 21.23 37.16 0.00 0.07 par:pas; +crase crase nom f s 0.01 0.00 0.01 0.00 +crash_test crash_test nom m s 0.02 0.00 0.02 0.00 +crash crash nom m s 6.68 0.07 6.68 0.07 +crashe crasher ver 1.52 0.00 0.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crasher crasher ver 1.52 0.00 0.36 0.00 inf; +crashes crashe nom m p 0.02 0.00 0.02 0.00 +crashé crasher ver m s 1.52 0.00 0.97 0.00 par:pas; +crashée crasher ver f s 1.52 0.00 0.06 0.00 par:pas; +craspec craspec adj m s 0.00 0.07 0.00 0.07 +crasse crasse nom f s 3.29 13.45 3.16 13.11 +crasses crasse nom f p 3.29 13.45 0.14 0.34 +crasseuse crasseux adj f s 2.08 11.01 0.27 2.64 +crasseuses crasseux adj f p 2.08 11.01 0.06 1.22 +crasseux crasseux adj m 2.08 11.01 1.75 7.16 +crassier crassier nom m s 0.04 0.07 0.04 0.00 +crassiers crassier nom m p 0.04 0.07 0.00 0.07 +crassula crassula nom f s 0.00 0.14 0.00 0.14 +crataegus crataegus nom m 0.00 0.07 0.00 0.07 +cratère cratère nom m s 2.79 4.66 2.13 3.11 +cratères cratère nom m p 2.79 4.66 0.66 1.55 +cravachais cravacher ver 0.37 0.88 0.00 0.07 ind:imp:1s; +cravachait cravacher ver 0.37 0.88 0.10 0.20 ind:imp:3s; +cravachant cravacher ver 0.37 0.88 0.00 0.14 par:pre; +cravache cravache nom f s 0.58 3.72 0.56 3.58 +cravacher cravacher ver 0.37 0.88 0.16 0.34 inf; +cravaches cravache nom f p 0.58 3.72 0.02 0.14 +cravaché cravacher ver m s 0.37 0.88 0.04 0.00 par:pas; +cravachées cravacher ver f p 0.37 0.88 0.00 0.07 par:pas; +cravant cravant nom m s 0.00 0.27 0.00 0.07 +cravants cravant nom m p 0.00 0.27 0.00 0.20 +cravatage cravatage nom m s 0.00 0.07 0.00 0.07 +cravatait cravater ver 0.21 3.31 0.00 0.14 ind:imp:3s; +cravate cravate nom f s 17.92 34.12 15.99 27.70 +cravater cravater ver 0.21 3.31 0.03 0.54 inf; +cravates cravate nom f p 17.92 34.12 1.93 6.42 +cravateur cravateur nom m s 0.00 0.14 0.00 0.14 +cravatière cravatier nom f s 0.00 0.07 0.00 0.07 +cravaté cravater ver m s 0.21 3.31 0.06 1.01 par:pas; +cravatée cravater ver f s 0.21 3.31 0.00 0.14 par:pas; +cravatées cravater ver f p 0.21 3.31 0.00 0.14 par:pas; +cravatés cravater ver m p 0.21 3.31 0.03 0.74 par:pas; +crawl crawl nom m s 0.00 0.74 0.00 0.74 +crawlait crawler ver 0.00 0.20 0.00 0.07 ind:imp:3s; +crawlant crawler ver 0.00 0.20 0.00 0.14 par:pre; +crawlé crawlé adj m s 0.00 0.07 0.00 0.07 +crayeuse crayeux adj f s 0.03 1.96 0.00 0.61 +crayeuses crayeux adj f p 0.03 1.96 0.01 0.34 +crayeux crayeux adj m 0.03 1.96 0.01 1.01 +crayon_encre crayon_encre nom m s 0.00 0.27 0.00 0.27 +crayon crayon nom m s 10.97 30.47 8.08 25.47 +crayonna crayonner ver 0.14 1.82 0.00 0.07 ind:pas:3s; +crayonnage crayonnage nom m s 0.00 0.14 0.00 0.07 +crayonnages crayonnage nom m p 0.00 0.14 0.00 0.07 +crayonnait crayonner ver 0.14 1.82 0.03 0.54 ind:imp:3s; +crayonnant crayonner ver 0.14 1.82 0.00 0.34 par:pre; +crayonne crayonner ver 0.14 1.82 0.11 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crayonner crayonner ver 0.14 1.82 0.00 0.27 inf; +crayonneur crayonneur nom m s 0.00 0.14 0.00 0.07 +crayonneurs crayonneur nom m p 0.00 0.14 0.00 0.07 +crayonnez crayonner ver 0.14 1.82 0.00 0.07 ind:pre:2p; +crayonné crayonner ver m s 0.14 1.82 0.00 0.14 par:pas; +crayonnées crayonner ver f p 0.14 1.82 0.00 0.14 par:pas; +crayonnés crayonner ver m p 0.14 1.82 0.00 0.07 par:pas; +crayon_feutre crayon_feutre nom m p 0.00 0.14 0.00 0.14 +crayons crayon nom m p 10.97 30.47 2.88 5.00 +credo credo nom m 0.78 2.84 0.78 2.84 +creek creek nom m s 0.78 0.34 0.77 0.27 +creeks creek nom m p 0.78 0.34 0.01 0.07 +crematorium crematorium nom m s 0.22 0.00 0.22 0.00 +crescendo crescendo adv 0.46 0.61 0.46 0.61 +cresson cresson nom m s 0.24 1.01 0.24 0.95 +cressonnette cressonnette nom f s 0.00 0.07 0.00 0.07 +cressonnière cressonnière nom f s 0.00 0.14 0.00 0.07 +cressonnières cressonnière nom f p 0.00 0.14 0.00 0.07 +cressons cresson nom m p 0.24 1.01 0.00 0.07 +creton creton nom m s 0.01 1.69 0.01 0.00 +cretonne creton nom f s 0.01 1.69 0.00 1.55 +cretonnes creton nom f p 0.01 1.69 0.00 0.07 +cretons creton nom m p 0.01 1.69 0.00 0.07 +creusa creuser ver 25.11 64.19 0.26 1.96 ind:pas:3s; +creusai creuser ver 25.11 64.19 0.01 0.07 ind:pas:1s; +creusaient creuser ver 25.11 64.19 0.24 3.24 ind:imp:3p; +creusais creuser ver 25.11 64.19 0.36 0.81 ind:imp:1s;ind:imp:2s; +creusait creuser ver 25.11 64.19 0.32 7.36 ind:imp:3s; +creusant creuser ver 25.11 64.19 0.50 3.45 par:pre; +creusas creuser ver 25.11 64.19 0.00 0.07 ind:pas:2s; +creusassent creuser ver 25.11 64.19 0.00 0.07 sub:imp:3p; +creuse creuser ver 25.11 64.19 3.67 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +creusement creusement nom m s 0.00 0.41 0.00 0.34 +creusements creusement nom m p 0.00 0.41 0.00 0.07 +creusent creuser ver 25.11 64.19 0.86 3.24 ind:pre:3p; +creuser creuser ver 25.11 64.19 10.34 11.82 inf; +creusera creuser ver 25.11 64.19 0.09 0.14 ind:fut:3s; +creuserai creuser ver 25.11 64.19 0.58 0.14 ind:fut:1s; +creuseraient creuser ver 25.11 64.19 0.01 0.14 cnd:pre:3p; +creuserais creuser ver 25.11 64.19 0.03 0.00 cnd:pre:1s; +creuserait creuser ver 25.11 64.19 0.09 0.14 cnd:pre:3s; +creuseras creuser ver 25.11 64.19 0.15 0.20 ind:fut:2s; +creuserez creuser ver 25.11 64.19 0.05 0.00 ind:fut:2p; +creuserons creuser ver 25.11 64.19 0.02 0.00 ind:fut:1p; +creuseront creuser ver 25.11 64.19 0.07 0.14 ind:fut:3p; +creuses creux adj f p 5.90 25.14 0.97 7.16 +creuset creuset nom m s 0.21 1.15 0.21 1.08 +creusets creuset nom m p 0.21 1.15 0.00 0.07 +creuseur creuseur nom m s 0.01 0.07 0.01 0.07 +creusez creuser ver 25.11 64.19 1.88 0.54 imp:pre:2p;ind:pre:2p; +creusiez creuser ver 25.11 64.19 0.06 0.00 ind:imp:2p; +creusions creuser ver 25.11 64.19 0.01 0.07 ind:imp:1p; +creusons creuser ver 25.11 64.19 0.26 0.54 imp:pre:1p;ind:pre:1p; +creusèrent creuser ver 25.11 64.19 0.03 0.68 ind:pas:3p; +creusé creuser ver m s 25.11 64.19 3.35 11.01 par:pas; +creusée creuser ver f s 25.11 64.19 0.55 5.47 par:pas; +creusées creuser ver f p 25.11 64.19 0.36 3.92 par:pas; +creusés creuser ver m p 25.11 64.19 0.13 3.24 par:pas; +creux creux adj m 5.90 25.14 3.32 12.64 +creva crever ver 64.95 81.55 0.03 1.42 ind:pas:3s; +crevage crevage nom m s 0.00 0.07 0.00 0.07 +crevaient crever ver 64.95 81.55 0.12 1.82 ind:imp:3p; +crevais crever ver 64.95 81.55 0.17 1.22 ind:imp:1s;ind:imp:2s; +crevaison crevaison nom f s 0.63 0.20 0.60 0.14 +crevaisons crevaison nom f p 0.63 0.20 0.03 0.07 +crevait crever ver 64.95 81.55 0.34 4.19 ind:imp:3s; +crevant crevant adj m s 1.03 0.74 0.74 0.61 +crevante crevant adj f s 1.03 0.74 0.29 0.07 +crevants crevant adj m p 1.03 0.74 0.00 0.07 +crevard crevard nom m s 0.29 0.74 0.04 0.20 +crevarde crevard nom f s 0.29 0.74 0.00 0.20 +crevards crevard nom m p 0.29 0.74 0.26 0.34 +crevasse crevasse nom f s 1.16 4.86 0.92 2.30 +crevassent crevasser ver 0.06 2.57 0.00 0.14 ind:pre:3p; +crevasser crevasser ver 0.06 2.57 0.00 0.14 inf; +crevasses crevasse nom f p 1.16 4.86 0.24 2.57 +crevassé crevasser ver m s 0.06 2.57 0.01 0.41 par:pas; +crevassée crevasser ver f s 0.06 2.57 0.03 0.47 par:pas; +crevassées crevasser ver f p 0.06 2.57 0.01 0.88 par:pas; +crevassés crevasser ver m p 0.06 2.57 0.00 0.47 par:pas; +crever crever ver 64.95 81.55 25.27 29.05 ind:imp:3s;inf; +crevette crevette nom f s 9.03 5.00 1.13 1.62 +crevettes crevette nom f p 9.03 5.00 7.90 3.38 +crevettier crevettier nom m s 0.16 0.00 0.12 0.00 +crevettiers crevettier nom m p 0.16 0.00 0.04 0.00 +crevez crever ver 64.95 81.55 0.74 0.27 imp:pre:2p;ind:pre:2p; +creviez crever ver 64.95 81.55 0.04 0.07 ind:imp:2p; +crevions crever ver 64.95 81.55 0.00 0.07 ind:imp:1p; +crevons crever ver 64.95 81.55 0.27 0.07 imp:pre:1p;ind:pre:1p; +crevât crever ver 64.95 81.55 0.00 0.07 sub:imp:3s; +crevotant crevoter ver 0.00 0.07 0.00 0.07 par:pre; +crevèrent crever ver 64.95 81.55 0.00 0.34 ind:pas:3p; +crevé crever ver m s 64.95 81.55 9.34 8.65 par:pas; +crevée crever ver f s 64.95 81.55 5.10 4.12 par:pas; +crevées crever ver f p 64.95 81.55 0.47 1.22 par:pas; +crevure crevure nom f s 0.52 0.34 0.47 0.34 +crevures crevure nom f p 0.52 0.34 0.04 0.00 +crevés crever ver m p 64.95 81.55 1.84 6.96 par:pas; +cri cri nom m s 45.58 155.41 18.79 71.55 +cria crier ver 116.93 239.73 1.20 55.74 ind:pas:3s; +criai crier ver 116.93 239.73 0.02 2.57 ind:pas:1s; +criaient crier ver 116.93 239.73 2.05 9.05 ind:imp:3p; +criaillaient criailler ver 0.23 0.88 0.10 0.14 ind:imp:3p; +criaillait criailler ver 0.23 0.88 0.00 0.14 ind:imp:3s; +criaillant criailler ver 0.23 0.88 0.00 0.27 par:pre; +criaillement criaillement nom m s 0.00 0.07 0.00 0.07 +criaillent criailler ver 0.23 0.88 0.14 0.14 ind:pre:3p; +criailler criailler ver 0.23 0.88 0.00 0.20 inf; +criaillerie criaillerie nom f s 0.00 1.69 0.00 0.20 +criailleries criaillerie nom f p 0.00 1.69 0.00 1.49 +criais crier ver 116.93 239.73 1.89 2.09 ind:imp:1s;ind:imp:2s; +criait crier ver 116.93 239.73 6.37 26.35 ind:imp:3s; +criant crier ver 116.93 239.73 3.82 20.95 par:pre; +criante criant adj f s 0.38 3.51 0.06 0.68 +criantes criant adj f p 0.38 3.51 0.14 0.20 +criard criard adj m s 0.95 6.49 0.17 1.49 +criarde criard adj f s 0.95 6.49 0.31 1.69 +criardes criard adj f p 0.95 6.49 0.23 1.96 +criards criard adj m p 0.95 6.49 0.23 1.35 +crib crib nom m s 0.04 0.00 0.04 0.00 +cribla cribler ver 1.86 6.69 0.01 0.07 ind:pas:3s; +criblage criblage nom m s 0.03 0.14 0.03 0.14 +criblaient cribler ver 1.86 6.69 0.00 0.47 ind:imp:3p; +criblait cribler ver 1.86 6.69 0.00 0.20 ind:imp:3s; +criblant cribler ver 1.86 6.69 0.00 0.74 par:pre; +crible crible nom m s 0.92 1.15 0.91 1.08 +criblent cribler ver 1.86 6.69 0.00 0.20 ind:pre:3p; +cribler cribler ver 1.86 6.69 0.07 0.20 inf; +cribles crible nom m p 0.92 1.15 0.01 0.07 +criblé cribler ver m s 1.86 6.69 0.92 2.09 par:pas; +criblée cribler ver f s 1.86 6.69 0.20 1.01 par:pas; +criblées cribler ver f p 1.86 6.69 0.16 0.61 par:pas; +criblés cribler ver m p 1.86 6.69 0.26 0.61 par:pas; +cric_crac cric_crac ono 0.00 0.07 0.00 0.07 +cric cric nom m s 1.20 1.42 1.18 1.08 +cricket cricket nom m s 2.94 0.41 2.92 0.41 +crickets cricket nom m p 2.94 0.41 0.02 0.00 +cricoïde cricoïde adj s 0.12 0.00 0.12 0.00 +cricri cricri nom m s 0.28 1.42 0.28 1.28 +cricris cricri nom m p 0.28 1.42 0.00 0.14 +crics cric nom m p 1.20 1.42 0.03 0.34 +crie crier ver 116.93 239.73 35.65 40.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crient crier ver 116.93 239.73 5.35 5.61 ind:pre:3p; +crier crier ver 116.93 239.73 31.48 47.30 inf; +criera crier ver 116.93 239.73 0.75 0.20 ind:fut:3s; +crierai crier ver 116.93 239.73 0.99 0.27 ind:fut:1s; +crieraient crier ver 116.93 239.73 0.03 0.20 cnd:pre:3p; +crierais crier ver 116.93 239.73 0.28 0.00 cnd:pre:1s;cnd:pre:2s; +crierait crier ver 116.93 239.73 0.07 0.81 cnd:pre:3s; +crieras crier ver 116.93 239.73 0.34 0.20 ind:fut:2s; +crieront crier ver 116.93 239.73 0.42 0.14 ind:fut:3p; +cries crier ver 116.93 239.73 5.64 0.41 ind:pre:2s;sub:pre:2s; +crieur crieur nom m s 0.34 2.09 0.27 0.95 +crieurs crieur nom m p 0.34 2.09 0.04 1.08 +crieuse crieur nom f s 0.34 2.09 0.03 0.07 +criez crier ver 116.93 239.73 6.57 0.74 imp:pre:2p;ind:pre:2p; +criions crier ver 116.93 239.73 0.00 0.14 ind:imp:1p; +crime crime nom m s 104.07 45.07 81.77 29.32 +crimes crime nom m p 104.07 45.07 22.30 15.74 +criminaliser criminaliser ver 0.03 0.00 0.03 0.00 inf; +criminaliste criminaliste nom s 0.10 0.00 0.10 0.00 +criminalistique criminalistique adj s 0.01 0.00 0.01 0.00 +criminalité criminalité nom f s 1.91 0.61 1.91 0.61 +criminel criminel nom m s 35.49 8.04 17.37 3.45 +criminelle criminel adj f s 18.17 8.45 6.36 3.11 +criminellement criminellement adv 0.02 0.07 0.02 0.07 +criminelles criminel adj f p 18.17 8.45 0.94 1.15 +criminels criminel nom m p 35.49 8.04 13.90 3.38 +criminologie criminologie nom f s 0.48 0.07 0.48 0.07 +criminologiste criminologiste nom s 0.03 0.14 0.03 0.14 +criminologue criminologue nom s 0.35 0.00 0.30 0.00 +criminologues criminologue nom p 0.35 0.00 0.05 0.00 +crin crin nom m s 0.46 6.22 0.32 3.92 +crincrin crincrin nom m s 0.05 0.27 0.04 0.20 +crincrins crincrin nom m p 0.05 0.27 0.01 0.07 +crinière crinière nom f s 2.28 10.27 2.27 8.92 +crinières crinière nom f p 2.28 10.27 0.01 1.35 +crinoline crinoline nom f s 0.15 0.47 0.15 0.14 +crinolines crinoline nom f p 0.15 0.47 0.00 0.34 +crins crin nom m p 0.46 6.22 0.14 2.30 +crions crier ver 116.93 239.73 0.79 0.14 imp:pre:1p;ind:pre:1p; +criât crier ver 116.93 239.73 0.00 0.34 sub:imp:3s; +crique crique nom f s 1.10 5.20 1.06 3.78 +criques crique nom f p 1.10 5.20 0.04 1.42 +criquet criquet nom m s 1.29 2.36 0.57 0.34 +criquets criquet nom m p 1.29 2.36 0.72 2.03 +cris_craft cris_craft nom m s 0.00 0.07 0.00 0.07 +cris cri nom m p 45.58 155.41 26.79 83.85 +crise crise nom f s 50.15 49.73 43.51 37.97 +crises crise nom f p 50.15 49.73 6.64 11.76 +crispa crisper ver 2.05 30.41 0.00 2.36 ind:pas:3s; +crispai crisper ver 2.05 30.41 0.00 0.14 ind:pas:1s; +crispaient crisper ver 2.05 30.41 0.00 1.01 ind:imp:3p; +crispait crisper ver 2.05 30.41 0.01 3.18 ind:imp:3s; +crispant crispant adj m s 0.07 0.41 0.06 0.27 +crispante crispant adj f s 0.07 0.41 0.00 0.07 +crispantes crispant adj f p 0.07 0.41 0.01 0.07 +crispation crispation nom f s 0.04 3.92 0.04 3.31 +crispations crispation nom f p 0.04 3.92 0.00 0.61 +crispe crisper ver 2.05 30.41 0.39 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crispent crisper ver 2.05 30.41 0.14 0.41 ind:pre:3p; +crisper crisper ver 2.05 30.41 0.33 1.28 inf; +crispes crisper ver 2.05 30.41 0.00 0.14 ind:pre:2s; +crispin crispin nom m s 0.10 0.20 0.10 0.20 +crispèrent crisper ver 2.05 30.41 0.00 0.41 ind:pas:3p; +crispé crisper ver m s 2.05 30.41 0.53 6.28 par:pas; +crispée crisper ver f s 2.05 30.41 0.50 5.00 par:pas; +crispées crisper ver f p 2.05 30.41 0.02 3.51 par:pas; +crispés crisper ver m p 2.05 30.41 0.13 3.24 par:pas; +crissa crisser ver 1.46 11.49 0.00 0.41 ind:pas:3s; +crissaient crisser ver 1.46 11.49 0.01 1.62 ind:imp:3p; +crissait crisser ver 1.46 11.49 0.00 1.62 ind:imp:3s; +crissant crisser ver 1.46 11.49 0.02 2.09 par:pre; +crisse crisser ver 1.46 11.49 1.29 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crissement crissement nom m s 1.77 9.32 1.18 7.77 +crissements crissement nom m p 1.77 9.32 0.59 1.55 +crissent crisser ver 1.46 11.49 0.02 0.95 ind:pre:3p; +crisser crisser ver 1.46 11.49 0.09 2.57 inf; +crissèrent crisser ver 1.46 11.49 0.00 0.20 ind:pas:3p; +crissé crisser ver m s 1.46 11.49 0.02 0.20 par:pas; +cristal cristal nom m s 10.22 18.51 6.34 13.72 +cristallerie cristallerie nom f s 0.01 0.07 0.01 0.00 +cristalleries cristallerie nom f p 0.01 0.07 0.00 0.07 +cristallin cristallin adj m s 0.35 4.59 0.04 1.69 +cristalline cristallin adj f s 0.35 4.59 0.26 1.82 +cristallines cristallin adj f p 0.35 4.59 0.05 0.54 +cristallins cristallin nom m p 0.17 0.74 0.14 0.00 +cristallisaient cristalliser ver 0.41 2.03 0.00 0.07 ind:imp:3p; +cristallisait cristalliser ver 0.41 2.03 0.00 0.14 ind:imp:3s; +cristallisation cristallisation nom f s 0.20 0.27 0.20 0.27 +cristallise cristalliser ver 0.41 2.03 0.01 0.41 ind:pre:3s; +cristallisent cristalliser ver 0.41 2.03 0.14 0.20 ind:pre:3p; +cristalliser cristalliser ver 0.41 2.03 0.13 0.34 inf; +cristallisera cristalliser ver 0.41 2.03 0.01 0.00 ind:fut:3s; +cristallisèrent cristalliser ver 0.41 2.03 0.00 0.14 ind:pas:3p; +cristallisé cristalliser ver m s 0.41 2.03 0.09 0.34 par:pas; +cristallisée cristallisé adj f s 0.18 0.14 0.14 0.00 +cristallisées cristallisé adj f p 0.18 0.14 0.00 0.07 +cristallisés cristalliser ver m p 0.41 2.03 0.01 0.07 par:pas; +cristalloïde cristalloïde nom s 0.03 0.00 0.03 0.00 +cristallographie cristallographie nom f s 0.00 0.07 0.00 0.07 +cristallomancie cristallomancie nom f s 0.02 0.00 0.02 0.00 +cristaux cristal nom m p 10.22 18.51 3.88 4.80 +cristi cristi ono 0.15 0.07 0.15 0.07 +crièrent crier ver 116.93 239.73 0.06 1.89 ind:pas:3p; +criticaillent criticailler ver 0.00 0.07 0.00 0.07 ind:pre:3p; +critiqua critiquer ver 10.38 7.43 0.01 0.14 ind:pas:3s; +critiquable critiquable adj s 0.02 0.07 0.01 0.07 +critiquables critiquable adj p 0.02 0.07 0.01 0.00 +critiquaient critiquer ver 10.38 7.43 0.04 0.14 ind:imp:3p; +critiquais critiquer ver 10.38 7.43 0.38 0.14 ind:imp:1s;ind:imp:2s; +critiquait critiquer ver 10.38 7.43 0.58 0.95 ind:imp:3s; +critiquant critiquer ver 10.38 7.43 0.06 0.20 par:pre; +critique critique adj s 9.34 10.47 7.83 8.85 +critiquent critiquer ver 10.38 7.43 0.18 0.00 ind:pre:3p; +critiquer critiquer ver 10.38 7.43 4.39 3.51 inf; +critiquera critiquer ver 10.38 7.43 0.09 0.00 ind:fut:3s; +critiquerais critiquer ver 10.38 7.43 0.01 0.07 cnd:pre:1s; +critiquerait critiquer ver 10.38 7.43 0.00 0.07 cnd:pre:3s; +critiqueras critiquer ver 10.38 7.43 0.01 0.00 ind:fut:2s; +critiques critique nom p 13.93 20.54 7.24 9.39 +critiquez critiquer ver 10.38 7.43 0.54 0.00 imp:pre:2p;ind:pre:2p; +critiquiez critiquer ver 10.38 7.43 0.03 0.00 ind:imp:2p; +critiquons critiquer ver 10.38 7.43 0.03 0.00 imp:pre:1p; +critiquât critiquer ver 10.38 7.43 0.00 0.07 sub:imp:3s; +critiqué critiquer ver m s 10.38 7.43 0.96 0.74 par:pas; +critiquée critiquer ver f s 10.38 7.43 0.18 0.07 par:pas; +critiquées critiquer ver f p 10.38 7.43 0.05 0.07 par:pas; +critiqués critiquer ver m p 10.38 7.43 0.08 0.07 par:pas; +critère critère nom m s 3.55 1.89 1.06 0.54 +critères critère nom m p 3.55 1.89 2.49 1.35 +critérium critérium nom m s 0.38 0.34 0.38 0.27 +critériums critérium nom m p 0.38 0.34 0.00 0.07 +crié crier ver m s 116.93 239.73 13.00 23.04 par:pas; +criée crier ver f s 116.93 239.73 0.17 0.07 par:pas; +criées crier ver f p 116.93 239.73 0.00 0.07 par:pas; +criés crier ver m p 116.93 239.73 0.01 0.61 par:pas; +croîs croître ver 4.79 10.34 0.01 0.00 ind:pre:1s; +croît croître ver 4.79 10.34 1.20 1.55 ind:pre:3s; +croîtraient croître ver 4.79 10.34 0.00 0.07 cnd:pre:3p; +croîtrait croître ver 4.79 10.34 0.01 0.07 cnd:pre:3s; +croître croître ver 4.79 10.34 1.35 2.77 inf; +croûte croûte nom f s 5.81 17.30 5.07 12.23 +croûter croûter ver 0.30 1.01 0.07 0.61 inf; +croûtes croûte nom f p 5.81 17.30 0.74 5.07 +croûteuse croûteux adj f s 0.03 0.68 0.00 0.20 +croûteuses croûteux adj f p 0.03 0.68 0.00 0.14 +croûteux croûteux adj m 0.03 0.68 0.03 0.34 +croûton croûton nom m s 0.91 3.78 0.59 1.62 +croûtonnais croûtonner ver 0.00 0.07 0.00 0.07 ind:imp:1s; +croûtons croûton nom m p 0.91 3.78 0.31 2.16 +croûté croûter ver m s 0.30 1.01 0.03 0.20 par:pas; +croûtée croûter ver f s 0.30 1.01 0.00 0.07 par:pas; +croûtées croûter ver f p 0.30 1.01 0.00 0.07 par:pas; +croa_croa croa_croa adv 0.00 0.41 0.00 0.27 +croa_croa croa_croa adv 0.00 0.41 0.00 0.14 +croassa croasser ver 0.19 0.47 0.00 0.14 ind:pas:3s; +croassaient croasser ver 0.19 0.47 0.00 0.14 ind:imp:3p; +croassait croasser ver 0.19 0.47 0.00 0.07 ind:imp:3s; +croassant croassant adj m s 0.01 0.07 0.01 0.07 +croasse croasser ver 0.19 0.47 0.12 0.00 imp:pre:2s;ind:pre:3s; +croassement croassement nom m s 0.02 0.27 0.02 0.07 +croassements croassement nom m p 0.02 0.27 0.00 0.20 +croassent croasser ver 0.19 0.47 0.04 0.07 ind:pre:3p; +croasser croasser ver 0.19 0.47 0.03 0.07 inf; +croate croate adj s 0.93 0.54 0.51 0.34 +croates croate adj p 0.93 0.54 0.42 0.20 +crobard crobard nom m s 0.00 0.27 0.00 0.27 +croc_en_jambe croc_en_jambe nom m s 0.16 0.61 0.16 0.61 +croc croc nom m s 3.19 7.84 0.66 1.15 +crocha crocher ver 0.01 1.08 0.00 0.14 ind:pas:3s; +crochaient crocher ver 0.01 1.08 0.00 0.20 ind:imp:3p; +crochait crocher ver 0.01 1.08 0.00 0.07 ind:imp:3s; +croche_patte croche_patte nom m s 0.17 0.34 0.17 0.34 +croche_pied croche_pied nom m s 0.56 0.68 0.43 0.41 +croche_pied croche_pied nom m p 0.56 0.68 0.14 0.27 +croche croche nom f s 0.26 0.41 0.07 0.34 +crochent crocher ver 0.01 1.08 0.00 0.07 ind:pre:3p; +crocher crocher ver 0.01 1.08 0.00 0.27 inf; +croches croche nom f p 0.26 0.41 0.19 0.07 +crochet crochet nom m s 10.69 15.81 8.21 9.80 +crocheta crocheter ver 0.66 1.55 0.00 0.20 ind:pas:3s; +crochetage crochetage nom m s 0.04 0.00 0.04 0.00 +crochetaient crocheter ver 0.66 1.55 0.00 0.14 ind:imp:3p; +crochetait crocheter ver 0.66 1.55 0.00 0.14 ind:imp:3s; +crochetant crocheter ver 0.66 1.55 0.00 0.07 par:pre; +crocheter crocheter ver 0.66 1.55 0.42 0.47 inf; +crocheteur crocheteur nom m s 0.29 0.07 0.29 0.00 +crocheteurs crocheteur nom m p 0.29 0.07 0.00 0.07 +crochets crochet nom m p 10.69 15.81 2.47 6.01 +crocheté crocheter ver m s 0.66 1.55 0.22 0.27 par:pas; +crochetées crocheter ver f p 0.66 1.55 0.01 0.07 par:pas; +crochetés crocheter ver m p 0.66 1.55 0.00 0.07 par:pas; +crochètent crocheter ver 0.66 1.55 0.01 0.14 ind:pre:3p; +croché crocher ver m s 0.01 1.08 0.01 0.27 par:pas; +crochu crochu adj m s 0.83 3.72 0.33 1.49 +crochue crochu adj f s 0.83 3.72 0.13 0.47 +crochées crocher ver f p 0.01 1.08 0.00 0.07 par:pas; +crochues crochu adj f p 0.83 3.72 0.02 0.41 +crochus crochu adj m p 0.83 3.72 0.35 1.35 +croco croco nom m s 1.51 1.35 0.75 1.28 +crocodile crocodile nom m s 9.26 5.20 6.14 4.05 +crocodiles crocodile nom m p 9.26 5.20 3.12 1.15 +crocos croco nom m p 1.51 1.35 0.76 0.07 +crocs_en_jambe crocs_en_jambe nom m p 0.00 0.20 0.00 0.20 +crocs croc nom m p 3.19 7.84 2.53 6.69 +crocus crocus nom m 0.04 0.95 0.04 0.95 +croie croire ver_sup 1711.99 947.23 5.43 3.85 sub:pre:1s;sub:pre:3s; +croient croire ver_sup 1711.99 947.23 29.38 19.19 ind:pre:3p; +croies croire ver_sup 1711.99 947.23 3.10 0.61 sub:pre:2s; +croira croire ver_sup 1711.99 947.23 8.27 3.18 ind:fut:3s; +croirai croire ver_sup 1711.99 947.23 2.55 1.49 ind:fut:1s; +croiraient croire ver_sup 1711.99 947.23 0.70 0.47 cnd:pre:3p; +croirais croire ver_sup 1711.99 947.23 4.40 2.50 cnd:pre:1s;cnd:pre:2s; +croirait croire ver_sup 1711.99 947.23 12.22 13.72 cnd:pre:3s; +croiras croire ver_sup 1711.99 947.23 3.87 1.28 ind:fut:2s; +croire croire ver_sup 1711.99 947.23 193.37 167.91 inf;;inf;;inf;; +croirez croire ver_sup 1711.99 947.23 2.77 1.82 ind:fut:2p; +croiriez croire ver_sup 1711.99 947.23 1.71 0.88 cnd:pre:2p; +croirions croire ver_sup 1711.99 947.23 0.00 0.34 cnd:pre:1p; +croirons croire ver_sup 1711.99 947.23 0.17 0.14 ind:fut:1p; +croiront croire ver_sup 1711.99 947.23 4.14 0.81 ind:fut:3p; +crois croire ver_sup 1711.99 947.23 904.45 305.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +croisa croiser ver 28.84 76.35 0.05 9.05 ind:pas:3s; +croisade croisade nom f s 4.21 6.15 3.23 3.18 +croisades croisade nom f p 4.21 6.15 0.98 2.97 +croisai croiser ver 28.84 76.35 0.05 1.08 ind:pas:1s; +croisaient croiser ver 28.84 76.35 0.10 5.07 ind:imp:3p; +croisais croiser ver 28.84 76.35 0.13 1.62 ind:imp:1s;ind:imp:2s; +croisait croiser ver 28.84 76.35 0.47 6.62 ind:imp:3s; +croisant croiser ver 28.84 76.35 0.26 5.34 par:pre; +croise croiser ver 28.84 76.35 6.65 8.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croisement croisement nom m s 2.70 6.22 2.58 4.93 +croisements croisement nom m p 2.70 6.22 0.12 1.28 +croisent croiser ver 28.84 76.35 1.16 5.00 ind:pre:3p; +croiser croiser ver 28.84 76.35 4.76 7.57 ind:pre:2p;inf; +croisera croiser ver 28.84 76.35 0.80 0.00 ind:fut:3s; +croiserai croiser ver 28.84 76.35 0.16 0.00 ind:fut:1s; +croiseraient croiser ver 28.84 76.35 0.05 0.20 cnd:pre:3p; +croiserais croiser ver 28.84 76.35 0.01 0.20 cnd:pre:1s; +croiserait croiser ver 28.84 76.35 0.02 0.27 cnd:pre:3s; +croiserez croiser ver 28.84 76.35 0.16 0.07 ind:fut:2p; +croiserons croiser ver 28.84 76.35 0.02 0.07 ind:fut:1p; +croiseront croiser ver 28.84 76.35 0.11 0.14 ind:fut:3p; +croises croiser ver 28.84 76.35 1.27 0.20 ind:pre:2s; +croisette croisette nom f s 0.00 1.01 0.00 1.01 +croiseur croiseur nom m s 2.46 4.59 1.81 1.69 +croiseurs croiseur nom m p 2.46 4.59 0.65 2.91 +croisez croiser ver 28.84 76.35 1.42 0.20 imp:pre:2p;ind:pre:2p; +croisillon croisillon nom m s 0.01 2.03 0.00 0.47 +croisillons croisillon nom m p 0.01 2.03 0.01 1.55 +croisions croiser ver 28.84 76.35 0.34 0.95 ind:imp:1p; +croisière croisière nom f s 5.47 5.81 5.05 5.07 +croisières croisière nom f p 5.47 5.81 0.42 0.74 +croisâmes croiser ver 28.84 76.35 0.01 0.68 ind:pas:1p; +croisons croiser ver 28.84 76.35 0.30 1.22 imp:pre:1p;ind:pre:1p; +croisât croiser ver 28.84 76.35 0.00 0.07 sub:imp:3s; +croissaient croître ver 4.79 10.34 0.00 0.81 ind:imp:3p; +croissais croître ver 4.79 10.34 0.01 0.07 ind:imp:1s; +croissait croître ver 4.79 10.34 0.33 1.28 ind:imp:3s; +croissance croissance nom f s 4.16 3.99 4.16 3.92 +croissances croissance nom f p 4.16 3.99 0.00 0.07 +croissant croissant nom m s 3.85 18.72 1.54 6.96 +croissante croissant adj f s 1.28 7.43 0.66 3.65 +croissantes croissant adj f p 1.28 7.43 0.02 0.47 +croissants croissant nom m p 3.85 18.72 2.31 11.76 +croisse croître ver 4.79 10.34 0.03 0.07 sub:pre:3s; +croissent croître ver 4.79 10.34 0.33 0.27 ind:pre:3p; +croissez croître ver 4.79 10.34 0.11 0.14 imp:pre:2p; +croisèrent croiser ver 28.84 76.35 0.02 3.38 ind:pas:3p; +croisé croiser ver m s 28.84 76.35 6.38 8.24 par:pas; +croisée croiser ver f s 28.84 76.35 0.92 1.01 par:pas; +croisées croiser ver f p 28.84 76.35 0.34 4.46 par:pas; +croisés croisé adj m p 4.62 17.23 3.76 9.12 +croit croire ver_sup 1711.99 947.23 68.72 60.00 ind:pre:3s; +croix croix nom f 29.10 71.62 29.10 71.62 +cromlech cromlech nom m s 0.02 0.14 0.02 0.07 +cromlechs cromlech nom m p 0.02 0.14 0.00 0.07 +cromorne cromorne nom m s 0.00 0.54 0.00 0.54 +crâna crâner ver 1.37 2.23 0.00 0.07 ind:pas:3s; +crânais crâner ver 1.37 2.23 0.14 0.14 ind:imp:1s; +crânait crâner ver 1.37 2.23 0.00 0.41 ind:imp:3s; +crânant crâner ver 1.37 2.23 0.00 0.14 par:pre; +crâne crâne nom m s 28.60 56.82 26.88 52.23 +crânement crânement adv 0.01 1.15 0.01 1.15 +crânent crâner ver 1.37 2.23 0.01 0.07 ind:pre:3p; +crâner crâner ver 1.37 2.23 0.40 0.88 inf; +crânerie crânerie nom f s 0.00 0.27 0.00 0.27 +crânes crâne nom m p 28.60 56.82 1.72 4.59 +crâneur crâneur nom m s 0.60 0.95 0.56 0.34 +crâneurs crâneur nom m p 0.60 0.95 0.02 0.27 +crâneuse crâneur nom f s 0.60 0.95 0.02 0.14 +crâneuses crâneur nom f p 0.60 0.95 0.00 0.20 +crânez crâner ver 1.37 2.23 0.01 0.07 imp:pre:2p;ind:pre:2p; +crânien crânien adj m s 2.36 1.15 1.58 0.14 +crânienne crânien adj f s 2.36 1.15 0.74 0.88 +crâniens crânien adj m p 2.36 1.15 0.04 0.14 +cronstadt cronstadt nom s 0.00 0.07 0.00 0.07 +crâné crâner ver m s 1.37 2.23 0.02 0.00 par:pas; +crooner crooner nom m s 0.25 0.14 0.23 0.07 +crooners crooner nom m p 0.25 0.14 0.02 0.07 +croqua croquer ver 5.23 12.64 0.00 0.81 ind:pas:3s; +croquai croquer ver 5.23 12.64 0.00 0.14 ind:pas:1s; +croquaient croquer ver 5.23 12.64 0.00 0.34 ind:imp:3p; +croquais croquer ver 5.23 12.64 0.00 0.20 ind:imp:1s; +croquait croquer ver 5.23 12.64 0.02 1.01 ind:imp:3s; +croquant croquant adj m s 0.43 0.68 0.34 0.20 +croquante croquant adj f s 0.43 0.68 0.04 0.07 +croquantes croquant adj f p 0.43 0.68 0.03 0.20 +croquants croquant nom m p 0.23 1.42 0.02 0.61 +croque_madame croque_madame nom m s 0.03 0.00 0.03 0.00 +croque_mitaine croque_mitaine nom m s 0.61 0.20 0.61 0.20 +croque_monsieur croque_monsieur nom m 0.28 0.14 0.28 0.14 +croque_mort croque_mort nom m s 2.20 3.31 1.81 1.28 +croque_mort croque_mort nom m p 2.20 3.31 0.39 2.03 +croque croquer ver 5.23 12.64 1.00 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croquemitaine croquemitaine nom m s 0.39 0.47 0.39 0.34 +croquemitaines croquemitaine nom m p 0.39 0.47 0.00 0.14 +croquemort croquemort nom m s 0.08 0.14 0.08 0.00 +croquemorts croquemort nom m p 0.08 0.14 0.00 0.14 +croquenots croquenot nom m p 0.00 0.95 0.00 0.95 +croquent croquer ver 5.23 12.64 0.05 0.34 ind:pre:3p; +croquer croquer ver 5.23 12.64 2.59 3.99 inf; +croquera croquer ver 5.23 12.64 0.01 0.14 ind:fut:3s; +croquerai croquer ver 5.23 12.64 0.01 0.07 ind:fut:1s; +croqueraient croquer ver 5.23 12.64 0.01 0.07 cnd:pre:3p; +croquerais croquer ver 5.23 12.64 0.02 0.07 cnd:pre:1s; +croquerait croquer ver 5.23 12.64 0.02 0.61 cnd:pre:3s; +croquerons croquer ver 5.23 12.64 0.00 0.07 ind:fut:1p; +croques croquer ver 5.23 12.64 0.22 0.20 ind:pre:2s; +croquet croquet nom m s 0.42 1.49 0.42 1.49 +croqueton croqueton nom m s 0.00 0.14 0.00 0.07 +croquetons croqueton nom m p 0.00 0.14 0.00 0.07 +croquette croquette nom f s 2.04 0.27 0.18 0.07 +croquettes croquette nom f p 2.04 0.27 1.86 0.20 +croqueur croqueur nom m s 0.17 0.07 0.02 0.00 +croqueuse croqueur nom f s 0.17 0.07 0.14 0.07 +croquez croquer ver 5.23 12.64 0.16 0.07 imp:pre:2p;ind:pre:2p; +croquignol croquignol adj m s 0.03 0.27 0.03 0.27 +croquignolet croquignolet adj m s 0.02 0.27 0.01 0.14 +croquignolets croquignolet adj m p 0.02 0.27 0.01 0.14 +croquis_minute croquis_minute nom m 0.00 0.07 0.00 0.07 +croquis croquis nom m 2.63 7.64 2.63 7.64 +croquons croquer ver 5.23 12.64 0.01 0.07 imp:pre:1p;ind:pre:1p; +croquèrent croquer ver 5.23 12.64 0.00 0.14 ind:pas:3p; +croqué croquer ver m s 5.23 12.64 0.34 1.76 par:pas; +croquée croquer ver f s 5.23 12.64 0.33 0.20 par:pas; +croquées croquer ver f p 5.23 12.64 0.10 0.07 par:pas; +croqués croquer ver m p 5.23 12.64 0.01 0.00 par:pas; +crosne crosne nom m s 0.00 0.27 0.00 0.07 +crosnes crosne nom m p 0.00 0.27 0.00 0.20 +cross_country cross_country nom m s 0.05 0.34 0.05 0.34 +cross cross nom m 0.22 0.41 0.22 0.41 +crosse crosse nom f s 2.27 11.96 1.96 10.14 +crosser crosser ver 0.14 0.00 0.14 0.00 inf; +crosses crosse nom f p 2.27 11.96 0.31 1.82 +crossman crossman nom m s 0.01 0.00 0.01 0.00 +crossé crossé adj m s 0.00 0.07 0.00 0.07 +crotale crotale nom m s 0.82 0.95 0.62 0.88 +crotales crotale nom m p 0.82 0.95 0.20 0.07 +croton croton nom m s 0.28 0.07 0.28 0.07 +crottait crotter ver 0.45 1.01 0.00 0.14 ind:imp:3s; +crotte crotte nom f s 6.52 6.76 3.46 3.51 +crotter crotter ver 0.45 1.01 0.02 0.14 inf; +crottes crotte nom f p 6.52 6.76 3.06 3.24 +crottin crottin nom m s 0.58 2.57 0.57 2.30 +crottins crottin nom m p 0.58 2.57 0.01 0.27 +crotté crotté adj m s 0.23 0.95 0.18 0.27 +crottée crotté adj f s 0.23 0.95 0.02 0.14 +crottées crotter ver f p 0.45 1.01 0.11 0.00 par:pas; +crottés crotter ver m p 0.45 1.01 0.29 0.00 par:pas; +crouillat crouillat nom m s 0.00 0.88 0.00 0.27 +crouillats crouillat nom m p 0.00 0.88 0.00 0.61 +crouille crouille adv 0.00 0.07 0.00 0.07 +croula crouler ver 2.37 8.24 0.00 0.14 ind:pas:3s; +croulaient crouler ver 2.37 8.24 0.00 0.95 ind:imp:3p; +croulait crouler ver 2.37 8.24 0.14 1.22 ind:imp:3s; +croulant croulant nom m s 0.92 0.74 0.60 0.27 +croulante croulant adj f s 0.80 3.72 0.26 0.81 +croulantes croulant adj f p 0.80 3.72 0.00 0.61 +croulants croulant nom m p 0.92 0.74 0.33 0.20 +croule crouler ver 2.37 8.24 1.16 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croulement croulement nom m s 0.00 0.07 0.00 0.07 +croulent crouler ver 2.37 8.24 0.26 0.41 ind:pre:3p; +crouler crouler ver 2.37 8.24 0.43 2.91 inf; +croulera crouler ver 2.37 8.24 0.03 0.00 ind:fut:3s; +croulerai crouler ver 2.37 8.24 0.01 0.00 ind:fut:1s; +crouleraient crouler ver 2.37 8.24 0.00 0.07 cnd:pre:3p; +croulerait crouler ver 2.37 8.24 0.02 0.07 cnd:pre:3s; +crouleras crouler ver 2.37 8.24 0.11 0.00 ind:fut:2s; +croulerons crouler ver 2.37 8.24 0.01 0.00 ind:fut:1p; +crouleront crouler ver 2.37 8.24 0.01 0.07 ind:fut:3p; +croulons crouler ver 2.37 8.24 0.16 0.07 ind:pre:1p; +croulât crouler ver 2.37 8.24 0.00 0.07 sub:imp:3s; +croulèrent crouler ver 2.37 8.24 0.00 0.14 ind:pas:3p; +croulé crouler ver m s 2.37 8.24 0.02 0.41 par:pas; +croulée crouler ver f s 2.37 8.24 0.00 0.07 par:pas; +croulés crouler ver m p 2.37 8.24 0.00 0.07 par:pas; +croup croup nom m s 0.14 0.61 0.09 0.61 +croupade croupade nom f s 0.00 0.14 0.00 0.14 +croupe croupe nom f s 0.90 14.05 0.64 10.95 +croupes croupe nom f p 0.90 14.05 0.27 3.11 +croupi croupir ver m s 1.74 4.93 0.10 0.34 par:pas; +croupie croupi adj f s 0.03 1.42 0.02 1.01 +croupier croupier nom m s 0.69 0.88 0.33 0.54 +croupiers croupier nom m p 0.69 0.88 0.29 0.07 +croupies croupi adj f p 0.03 1.42 0.00 0.14 +croupion croupion nom m s 0.52 1.08 0.37 0.88 +croupionne croupionner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +croupions croupion nom m p 0.52 1.08 0.15 0.20 +croupir croupir ver 1.74 4.93 0.86 1.49 inf; +croupira croupir ver 1.74 4.93 0.02 0.07 ind:fut:3s; +croupis croupir ver 1.74 4.93 0.15 0.07 ind:pre:1s;ind:pre:2s; +croupissaient croupir ver 1.74 4.93 0.01 0.41 ind:imp:3p; +croupissais croupir ver 1.74 4.93 0.23 0.07 ind:imp:1s;ind:imp:2s; +croupissait croupir ver 1.74 4.93 0.00 1.08 ind:imp:3s; +croupissant croupissant adj m s 0.01 0.81 0.01 0.20 +croupissante croupissant adj f s 0.01 0.81 0.00 0.47 +croupissantes croupissant adj f p 0.01 0.81 0.00 0.14 +croupissent croupir ver 1.74 4.93 0.16 0.27 ind:pre:3p; +croupissez croupir ver 1.74 4.93 0.01 0.00 ind:pre:2p; +croupissoir croupissoir nom m s 0.00 0.07 0.00 0.07 +croupissure croupissure nom f s 0.00 0.20 0.00 0.20 +croupit croupir ver 1.74 4.93 0.18 0.61 ind:pre:3s;ind:pas:3s; +croupière croupier nom f s 0.69 0.88 0.06 0.20 +croupières croupière nom f p 0.03 0.00 0.03 0.00 +croupon croupon nom m s 0.00 0.20 0.00 0.20 +croustade croustade nom f s 0.02 0.20 0.02 0.07 +croustades croustade nom f p 0.02 0.20 0.00 0.14 +croustillaient croustiller ver 0.11 0.27 0.00 0.07 ind:imp:3p; +croustillait croustiller ver 0.11 0.27 0.00 0.07 ind:imp:3s; +croustillance croustillance nom f s 0.00 0.07 0.00 0.07 +croustillant croustillant adj m s 1.93 1.96 0.95 0.47 +croustillante croustillant adj f s 1.93 1.96 0.45 0.61 +croustillantes croustillant adj f p 1.93 1.96 0.14 0.27 +croustillants croustillant adj m p 1.93 1.96 0.38 0.61 +croustille croustille nom f s 0.05 0.00 0.03 0.00 +croustillent croustiller ver 0.11 0.27 0.01 0.07 ind:pre:3p; +croustilles croustille nom f p 0.05 0.00 0.02 0.00 +croustillon croustillon nom m s 0.00 0.20 0.00 0.07 +croustillons croustillon nom m p 0.00 0.20 0.00 0.14 +crown crown nom m s 0.03 0.00 0.03 0.00 +croyable croyable adj s 6.21 5.14 6.08 4.80 +croyables croyable adj p 6.21 5.14 0.14 0.34 +croyaient croire ver_sup 1711.99 947.23 4.70 11.42 ind:imp:3p; +croyais croire ver_sup 1711.99 947.23 162.56 57.36 ind:imp:1s;ind:imp:2s; +croyait croire ver_sup 1711.99 947.23 22.86 73.24 ind:imp:3s; +croyance croyance nom f s 7.95 6.55 3.30 3.38 +croyances croyance nom f p 7.95 6.55 4.65 3.18 +croyant croire ver_sup 1711.99 947.23 3.17 12.30 par:pre; +croyante croyant adj f s 3.99 5.88 1.14 1.22 +croyantes croyant nom f p 2.99 6.96 0.01 0.27 +croyants croyant nom m p 2.99 6.96 1.63 2.77 +croyez croire ver_sup 1711.99 947.23 152.54 55.07 imp:pre:2p;ind:pre:2p; +croyiez croire ver_sup 1711.99 947.23 3.63 0.81 ind:imp:2p;sub:pre:2p; +croyions croire ver_sup 1711.99 947.23 0.69 1.76 ind:imp:1p; +croyons croire ver_sup 1711.99 947.23 4.54 4.59 imp:pre:1p;ind:pre:1p; +crèche crèche nom f s 3.91 9.39 3.46 8.31 +crèchent crécher ver 1.48 2.43 0.08 0.20 ind:pre:3p; +crèches crèche nom f p 3.91 9.39 0.44 1.08 +crème crème nom s 20.61 24.46 19.72 20.95 +crèmes crème nom p 20.61 24.46 0.90 3.51 +crève crever ver 64.95 81.55 13.21 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +crèvent crever ver 64.95 81.55 2.01 5.47 ind:pre:3p; +crèvera crever ver 64.95 81.55 1.08 0.95 ind:fut:3s; +crèverai crever ver 64.95 81.55 0.41 0.14 ind:fut:1s; +crèveraient crever ver 64.95 81.55 0.04 0.14 cnd:pre:3p; +crèverais crever ver 64.95 81.55 0.22 0.20 cnd:pre:1s;cnd:pre:2s; +crèverait crever ver 64.95 81.55 0.24 1.01 cnd:pre:3s; +crèveras crever ver 64.95 81.55 0.55 0.47 ind:fut:2s; +crèverez crever ver 64.95 81.55 0.35 0.81 ind:fut:2p; +crèveriez crever ver 64.95 81.55 0.03 0.00 cnd:pre:2p; +crèverons crever ver 64.95 81.55 0.12 0.07 ind:fut:1p; +crèveront crever ver 64.95 81.55 0.54 0.20 ind:fut:3p; +crèves crever ver 64.95 81.55 1.98 0.34 ind:pre:2s; +cré cré ono 0.32 1.69 0.32 1.69 +cru croire ver_sup m s 1711.99 947.23 104.49 90.81 par:pas; +créa créer ver 85.17 54.80 2.00 1.82 ind:pas:3s; +créai créer ver 85.17 54.80 0.00 0.14 ind:pas:1s; +créaient créer ver 85.17 54.80 0.13 1.82 ind:imp:3p; +créais créer ver 85.17 54.80 0.23 0.07 ind:imp:1s;ind:imp:2s; +créait créer ver 85.17 54.80 0.82 3.65 ind:imp:3s; +créance créance nom f s 1.09 1.55 0.32 1.22 +créances créance nom f p 1.09 1.55 0.77 0.34 +créancier créancier nom m s 1.42 1.42 0.50 0.07 +créanciers créancier nom m p 1.42 1.42 0.92 1.35 +créant créer ver 85.17 54.80 1.83 1.55 par:pre; +créateur créateur nom m s 6.53 5.88 5.13 4.59 +créateurs créateur nom m p 6.53 5.88 1.29 1.15 +créatif créatif adj m s 3.50 0.20 2.30 0.14 +créatifs créatif adj m p 3.50 0.20 0.63 0.00 +créatine créatine nom f s 0.13 0.00 0.13 0.00 +créatinine créatinine nom f s 0.15 0.00 0.15 0.00 +création création nom f s 11.15 18.72 9.74 17.50 +créationnisme créationnisme nom m s 0.14 0.00 0.14 0.00 +créations création nom f p 11.15 18.72 1.41 1.22 +créative créatif adj f s 3.50 0.20 0.48 0.07 +créatives créatif adj f p 3.50 0.20 0.09 0.00 +créativité créativité nom f s 2.15 0.34 2.15 0.34 +créatrice créateur adj f s 2.80 4.86 1.00 1.89 +créatrices créateur adj f p 2.80 4.86 0.14 0.14 +créature créature nom f s 35.22 27.23 20.41 15.41 +créatures créature nom f p 35.22 27.23 14.81 11.82 +cruauté cruauté nom f s 5.80 15.88 5.70 14.32 +cruautés cruauté nom f p 5.80 15.88 0.11 1.55 +crécelle crécelle nom f s 0.07 1.82 0.03 1.35 +crécelles crécelle nom f p 0.07 1.82 0.03 0.47 +crécerelle crécerelle nom f s 0.04 0.20 0.02 0.14 +crécerelles crécerelle nom f p 0.04 0.20 0.02 0.07 +créchaient crécher ver 1.48 2.43 0.00 0.07 ind:imp:3p; +créchait crécher ver 1.48 2.43 0.07 0.27 ind:imp:3s; +créchant crécher ver 1.48 2.43 0.00 0.07 par:pre; +cruche cruche nom f s 3.04 4.46 2.92 3.92 +crécher crécher ver 1.48 2.43 0.46 0.54 inf; +cruches cruche nom f p 3.04 4.46 0.12 0.54 +cruchon cruchon nom m s 0.05 0.81 0.05 0.68 +cruchons cruchon nom m p 0.05 0.81 0.00 0.14 +crucial crucial adj m s 3.66 2.91 2.23 1.82 +cruciale crucial adj f s 3.66 2.91 0.87 0.61 +crucialement crucialement adv 0.00 0.07 0.00 0.07 +cruciales crucial adj f p 3.66 2.91 0.30 0.27 +cruciaux crucial adj m p 3.66 2.91 0.26 0.20 +crucifia crucifier ver 4.24 2.77 0.01 0.07 ind:pas:3s; +crucifiaient crucifier ver 4.24 2.77 0.05 0.14 ind:imp:3p; +crucifiait crucifier ver 4.24 2.77 0.16 0.27 ind:imp:3s; +crucifiant crucifiant adj m s 0.00 0.14 0.00 0.07 +crucifiante crucifiant adj f s 0.00 0.14 0.00 0.07 +crucifie crucifier ver 4.24 2.77 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crucifiement crucifiement nom m s 0.00 0.20 0.00 0.20 +crucifient crucifier ver 4.24 2.77 0.04 0.07 ind:pre:3p; +crucifier crucifier ver 4.24 2.77 1.13 0.34 inf; +crucifierez crucifier ver 4.24 2.77 0.14 0.07 ind:fut:2p; +crucifieront crucifier ver 4.24 2.77 0.02 0.07 ind:fut:3p; +crucifiez crucifier ver 4.24 2.77 0.33 0.07 imp:pre:2p;ind:pre:2p; +crucifié crucifier ver m s 4.24 2.77 2.12 1.01 par:pas; +crucifiée crucifié adj f s 0.49 1.76 0.02 0.54 +crucifiées crucifier ver f p 4.24 2.77 0.01 0.00 par:pas; +crucifiés crucifié adj m p 0.49 1.76 0.14 0.27 +crucifix crucifix nom m 1.22 7.43 1.22 7.43 +crucifixion crucifixion nom f s 0.69 0.95 0.60 0.68 +crucifixions crucifixion nom f p 0.69 0.95 0.09 0.27 +cruciforme cruciforme adj f s 0.48 0.27 0.47 0.20 +cruciformes cruciforme adj p 0.48 0.27 0.01 0.07 +crucifère crucifère nom f s 0.01 0.27 0.00 0.14 +crucifères crucifère nom f p 0.01 0.27 0.01 0.14 +cruciverbiste cruciverbiste nom s 0.00 0.14 0.00 0.07 +cruciverbistes cruciverbiste nom p 0.00 0.14 0.00 0.07 +crécy crécy nom f s 0.02 0.20 0.02 0.20 +crédence crédence nom f s 0.00 0.95 0.00 0.81 +crédences crédence nom f p 0.00 0.95 0.00 0.14 +crédibilité crédibilité nom f s 1.89 0.34 1.89 0.34 +crédible crédible adj s 3.92 0.88 3.29 0.81 +crédibles crédible adj p 3.92 0.88 0.63 0.07 +crédit_bail crédit_bail nom m s 0.02 0.00 0.02 0.00 +crédit crédit nom m s 28.21 20.27 25.82 17.57 +créditait créditer ver 0.47 0.61 0.01 0.07 ind:imp:3s; +crédite créditer ver 0.47 0.61 0.03 0.07 ind:pre:1s;ind:pre:3s; +créditent créditer ver 0.47 0.61 0.01 0.00 ind:pre:3p; +créditer créditer ver 0.47 0.61 0.08 0.07 inf; +créditeraient créditer ver 0.47 0.61 0.00 0.07 cnd:pre:3p; +créditeur créditeur nom m s 0.22 0.14 0.21 0.00 +créditeurs créditeur nom m p 0.22 0.14 0.01 0.14 +créditez créditer ver 0.47 0.61 0.03 0.00 imp:pre:2p; +créditrice créditeur adj f s 0.07 0.14 0.01 0.00 +crédits crédit nom m p 28.21 20.27 2.38 2.70 +crédité créditer ver m s 0.47 0.61 0.23 0.14 par:pas; +crudité crudité nom f s 0.45 1.96 0.01 1.01 +créditée créditer ver f s 0.47 0.61 0.06 0.14 par:pas; +crédités créditer ver m p 0.47 0.61 0.02 0.07 par:pas; +crudités crudité nom f p 0.45 1.96 0.44 0.95 +crédié crédié adv 0.04 0.20 0.04 0.20 +crédule crédule adj s 1.09 1.42 0.74 1.01 +crédules crédule adj p 1.09 1.42 0.35 0.41 +crédulité crédulité nom f s 0.75 1.69 0.75 1.62 +crédulités crédulité nom f p 0.75 1.69 0.00 0.07 +crée créer ver 85.17 54.80 12.93 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +crue croire ver_sup f s 1711.99 947.23 5.06 2.64 par:pas; +cruel cruel adj m s 28.98 35.88 15.64 14.59 +cruelle cruel adj f s 28.98 35.88 9.47 11.89 +cruellement cruellement adv 1.46 8.65 1.46 8.65 +cruelles cruel adj f p 28.98 35.88 1.30 4.26 +cruels cruel adj m p 28.98 35.88 2.56 5.14 +créent créer ver 85.17 54.80 1.68 2.09 ind:pre:3p; +créer créer ver 85.17 54.80 28.15 16.22 inf; +créera créer ver 85.17 54.80 0.50 0.14 ind:fut:3s; +créerai créer ver 85.17 54.80 0.51 0.00 ind:fut:1s; +créeraient créer ver 85.17 54.80 0.01 0.07 cnd:pre:3p; +créerais créer ver 85.17 54.80 0.21 0.07 cnd:pre:1s;cnd:pre:2s; +créerait créer ver 85.17 54.80 0.49 0.41 cnd:pre:3s; +créerez créer ver 85.17 54.80 0.03 0.00 ind:fut:2p; +créerons créer ver 85.17 54.80 0.14 0.00 ind:fut:1p; +créeront créer ver 85.17 54.80 0.09 0.00 ind:fut:3p; +crues cru adj f p 4.85 15.88 0.34 1.82 +créez créer ver 85.17 54.80 0.75 0.07 imp:pre:2p;ind:pre:2p; +créiez créer ver 85.17 54.80 0.04 0.00 ind:imp:2p; +créions créer ver 85.17 54.80 0.02 0.07 ind:imp:1p; +cruiser cruiser nom m s 0.17 0.00 0.17 0.00 +crémaillère crémaillère nom f s 1.14 1.08 1.13 1.01 +crémaillères crémaillère nom f p 1.14 1.08 0.01 0.07 +crémant crémant adj m s 0.01 0.00 0.01 0.00 +crémateurs crémateur nom m p 0.00 0.14 0.00 0.14 +crémation crémation nom f s 0.78 0.14 0.68 0.14 +crémations crémation nom f p 0.78 0.14 0.10 0.00 +crématoire crématoire nom m s 0.92 0.68 0.65 0.34 +crématoires crématoire nom m p 0.92 0.68 0.27 0.34 +crématorium crématorium nom m s 0.81 0.54 0.81 0.54 +crumble crumble nom m s 0.11 0.00 0.11 0.00 +crémer crémer ver 0.01 0.14 0.01 0.00 inf; +crémerie crémerie nom f s 0.27 0.81 0.27 0.68 +crémeries crémerie nom f p 0.27 0.81 0.00 0.14 +crémeuse crémeux adj f s 0.46 3.24 0.13 0.81 +crémeuses crémeux adj f p 0.46 3.24 0.03 0.27 +crémeux crémeux adj m 0.46 3.24 0.29 2.16 +crémier crémier nom m s 0.34 1.82 0.12 0.54 +crémiers crémier nom m p 0.34 1.82 0.01 0.20 +crémière crémier nom f s 0.34 1.82 0.21 1.01 +crémières crémier nom f p 0.34 1.82 0.00 0.07 +crémone crémone nom f s 0.00 0.34 0.00 0.34 +crémés crémer ver m p 0.01 0.14 0.00 0.14 par:pas; +créneau créneau nom m s 1.76 5.34 1.49 2.57 +créneaux créneau nom m p 1.76 5.34 0.27 2.77 +crénelait créneler ver 0.00 0.47 0.00 0.07 ind:imp:3s; +crénelé crénelé adj m s 0.00 1.15 0.00 0.20 +crénelée crénelé adj f s 0.00 1.15 0.00 0.34 +crénelées crénelé adj f p 0.00 1.15 0.00 0.41 +crénelés crénelé adj m p 0.00 1.15 0.00 0.20 +crénom crénom ono 0.58 0.14 0.58 0.14 +créole créole adj s 0.58 0.88 0.57 0.68 +créoles créole nom p 0.66 1.01 0.14 0.14 +créolophone créolophone adj s 0.01 0.00 0.01 0.00 +créons créer ver 85.17 54.80 0.98 0.41 imp:pre:1p;ind:pre:1p; +créosote créosote nom f s 0.04 0.41 0.04 0.41 +créosotée créosoter ver f s 0.00 0.07 0.00 0.07 par:pas; +créât créer ver 85.17 54.80 0.00 0.14 sub:imp:3s; +crêpage crêpage nom m s 0.06 0.14 0.04 0.07 +crêpages crêpage nom m p 0.06 0.14 0.01 0.07 +crêpaient crêper ver 0.27 1.01 0.00 0.14 ind:imp:3p; +crêpait crêper ver 0.27 1.01 0.00 0.20 ind:imp:3s; +crêpe crêpe nom s 8.44 9.05 3.27 6.01 +crêpelait crêpeler ver 0.00 0.07 0.00 0.07 ind:imp:3s; +crêpelées crêpelé adj f p 0.00 0.20 0.00 0.07 +crêpelure crêpelure nom f s 0.00 0.14 0.00 0.14 +crêpelés crêpelé adj m p 0.00 0.20 0.00 0.14 +crêper crêper ver 0.27 1.01 0.06 0.27 inf; +crêpes crêpe nom p 8.44 9.05 5.16 3.04 +crépi crépir ver m s 0.17 1.28 0.07 0.20 par:pas; +crépie crépir ver f s 0.17 1.28 0.00 0.07 par:pas; +crépies crépir ver f p 0.17 1.28 0.00 0.34 par:pas; +crépine crépine nom f s 0.00 0.07 0.00 0.07 +crépinette crépinette nom f s 0.00 0.14 0.00 0.07 +crépinettes crépinette nom f p 0.00 0.14 0.00 0.07 +crépins crépin nom m p 0.00 0.07 0.00 0.07 +crépir crépir ver 0.17 1.28 0.00 0.07 inf; +crépis crépi nom m p 0.14 3.31 0.14 0.27 +crépissage crépissage nom m s 0.00 0.07 0.00 0.07 +crépissez crépir ver 0.17 1.28 0.10 0.00 ind:pre:2p; +crépita crépiter ver 1.31 10.20 0.00 0.68 ind:pas:3s; +crépitaient crépiter ver 1.31 10.20 0.00 1.42 ind:imp:3p; +crépitait crépiter ver 1.31 10.20 0.00 1.62 ind:imp:3s; +crépitant crépitant adj m s 0.10 1.35 0.02 0.61 +crépitante crépitant adj f s 0.10 1.35 0.01 0.20 +crépitantes crépitant adj f p 0.10 1.35 0.00 0.34 +crépitants crépitant adj m p 0.10 1.35 0.07 0.20 +crépitation crépitation nom f s 0.01 0.00 0.01 0.00 +crépite crépiter ver 1.31 10.20 0.75 1.82 imp:pre:2s;ind:pre:3s; +crépitement crépitement nom m s 0.42 8.18 0.28 7.03 +crépitements crépitement nom m p 0.42 8.18 0.13 1.15 +crépitent crépiter ver 1.31 10.20 0.14 1.15 ind:pre:3p; +crépiter crépiter ver 1.31 10.20 0.15 1.82 inf; +crépiteront crépiter ver 1.31 10.20 0.00 0.07 ind:fut:3p; +crépitèrent crépiter ver 1.31 10.20 0.00 0.68 ind:pas:3p; +crépité crépiter ver m s 1.31 10.20 0.27 0.34 par:pas; +crépon crépon nom m s 0.07 0.47 0.06 0.41 +crépons crépon nom m p 0.07 0.47 0.01 0.07 +crêpé crêper ver m s 0.27 1.01 0.15 0.14 par:pas; +crépu crépu adj m s 0.77 2.84 0.25 0.61 +crêpée crêpé adj f s 0.03 0.27 0.01 0.07 +crépue crépu adj f s 0.77 2.84 0.20 0.68 +crépues crépu adj f p 0.77 2.84 0.00 0.20 +crêpés crêpé adj m p 0.03 0.27 0.02 0.20 +crépus crépu adj m p 0.77 2.84 0.33 1.35 +crépusculaire crépusculaire adj s 0.06 2.30 0.03 1.89 +crépusculaires crépusculaire adj p 0.06 2.30 0.03 0.41 +crépuscule crépuscule nom m s 7.35 26.35 7.12 24.86 +crépuscules crépuscule nom m p 7.35 26.35 0.23 1.49 +créquier créquier nom m s 0.00 0.07 0.00 0.07 +crurent croire ver_sup 1711.99 947.23 0.04 1.62 ind:pas:3p; +crus croire ver_sup m p 1711.99 947.23 1.51 15.20 ind:pas:1s;ind:pas:2s;par:pas; +crésol crésol nom m s 0.01 0.00 0.01 0.00 +crusse croire ver_sup 1711.99 947.23 0.00 0.07 sub:imp:1s; +crussent croire ver_sup 1711.99 947.23 0.00 0.07 sub:imp:3p; +crusses croire ver_sup 1711.99 947.23 0.00 0.14 sub:imp:2s; +crustacé crustacé nom m s 0.95 1.89 0.32 0.54 +crustacés crustacé nom m p 0.95 1.89 0.64 1.35 +crésus crésus nom m 0.01 0.00 0.01 0.00 +crésyl crésyl nom m s 0.01 0.41 0.01 0.41 +crésylée crésylé adj f s 0.00 0.07 0.00 0.07 +crêt crêt nom m s 0.03 0.00 0.03 0.00 +crut croire ver_sup 1711.99 947.23 0.93 34.93 ind:pas:3s; +crétacé crétacé nom m s 0.23 0.07 0.23 0.07 +crétacée crétacé adj f s 0.03 0.00 0.03 0.00 +crêtaient crêter ver 0.00 0.74 0.00 0.07 ind:imp:3p; +crête crête nom f s 4.23 26.22 3.52 21.62 +crételle crételle nom f s 0.00 0.14 0.00 0.14 +crêtes_de_coq crêtes_de_coq nom f p 0.03 0.07 0.03 0.07 +crêtes crête nom f p 4.23 26.22 0.71 4.59 +créèrent créer ver 85.17 54.80 0.13 0.20 ind:pas:3p; +crétin crétin nom m s 33.54 8.58 25.61 4.66 +crétine crétin nom f s 33.54 8.58 0.69 0.54 +crétinerie crétinerie nom f s 0.04 0.14 0.03 0.07 +crétineries crétinerie nom f p 0.04 0.14 0.01 0.07 +crétineux crétineux adj m 0.02 0.00 0.02 0.00 +crétinisant crétinisant adj m s 0.00 0.07 0.00 0.07 +crétinisation crétinisation nom f s 0.00 0.07 0.00 0.07 +crétiniser crétiniser ver 0.01 0.20 0.01 0.00 inf; +crétinisme crétinisme nom m s 0.01 0.41 0.01 0.41 +crétinisé crétiniser ver m s 0.01 0.20 0.00 0.20 par:pas; +crétins crétin nom m p 33.54 8.58 7.24 3.38 +crêtions crêter ver 0.00 0.74 0.00 0.07 ind:imp:1p; +crétois crétois adj m s 0.01 0.88 0.01 0.27 +crétoise crétois adj f s 0.01 0.88 0.00 0.47 +crétoises crétois adj f p 0.01 0.88 0.00 0.14 +crêté crêter ver m s 0.00 0.74 0.00 0.20 par:pas; +crêtée crêter ver f s 0.00 0.74 0.00 0.14 par:pas; +crêtées crêter ver f p 0.00 0.74 0.00 0.20 par:pas; +crêtés crêter ver m p 0.00 0.74 0.00 0.07 par:pas; +créé créer ver m s 85.17 54.80 24.93 12.97 par:pas;par:pas;par:pas; +créée créer ver f s 85.17 54.80 4.58 3.65 par:pas; +créées créer ver f p 85.17 54.80 0.81 1.42 par:pas; +créés créer ver p 85.17 54.80 3.16 1.96 par:pas; +cruzeiro cruzeiro nom m s 0.80 0.07 0.20 0.00 +cruzeiros cruzeiro nom m p 0.80 0.07 0.60 0.07 +cryofracture cryofracture nom f s 0.14 0.00 0.14 0.00 +cryogène cryogène adj s 0.11 0.00 0.11 0.00 +cryogénie cryogénie nom f s 0.27 0.00 0.27 0.00 +cryogénique cryogénique adj s 0.44 0.00 0.34 0.00 +cryogéniques cryogénique adj p 0.44 0.00 0.10 0.00 +cryogénisation cryogénisation nom f s 0.17 0.00 0.17 0.00 +cryonique cryonique adj f s 0.01 0.00 0.01 0.00 +cryotechnique cryotechnique nom f s 0.01 0.00 0.01 0.00 +cryptage cryptage nom m s 0.52 0.00 0.52 0.00 +crypte crypte nom f s 2.91 3.18 2.82 2.70 +crypter crypter ver 1.56 0.34 0.01 0.00 inf; +cryptes crypte nom f p 2.91 3.18 0.08 0.47 +cryptique cryptique adj m s 0.03 0.00 0.01 0.00 +cryptiques cryptique adj f p 0.03 0.00 0.02 0.00 +crypto crypto nom m s 0.04 0.07 0.04 0.07 +cryptocommunistes cryptocommuniste nom p 0.00 0.07 0.00 0.07 +cryptogame cryptogame adj s 0.00 0.07 0.00 0.07 +cryptogames cryptogame nom m p 0.00 0.14 0.00 0.14 +cryptogamique cryptogamique adj f s 0.01 0.00 0.01 0.00 +cryptogramme cryptogramme nom m s 0.40 0.20 0.39 0.00 +cryptogrammes cryptogramme nom m p 0.40 0.20 0.01 0.20 +cryptographe cryptographe nom s 0.02 0.00 0.02 0.00 +cryptographie cryptographie nom f s 0.10 0.07 0.10 0.07 +cryptographique cryptographique adj s 0.03 0.00 0.03 0.00 +cryptologie cryptologie nom f s 0.03 0.00 0.03 0.00 +cryptomère cryptomère nom m s 0.01 0.00 0.01 0.00 +crypté crypter ver m s 1.56 0.34 0.98 0.07 par:pas; +cryptée crypter ver f s 1.56 0.34 0.23 0.00 par:pas; +cryptées crypter ver f p 1.56 0.34 0.12 0.00 par:pas; +cryptés crypter ver m p 1.56 0.34 0.22 0.07 par:pas; +csardas csardas nom f 0.30 0.00 0.30 0.00 +cède céder ver 24.21 61.35 5.99 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cèdent céder ver 24.21 61.35 0.55 1.28 ind:pre:3p; +cèdre cèdre nom m s 0.70 3.85 0.47 2.16 +cèdres cèdre nom m p 0.70 3.85 0.23 1.69 +cèle celer ver 0.68 0.34 0.28 0.00 imp:pre:2s;ind:pre:1s; +cène cène nom f s 0.02 0.20 0.02 0.20 +cèpe cèpe nom m s 0.78 1.15 0.02 0.27 +cèpes cèpe nom m p 0.78 1.15 0.75 0.88 +cuadrilla cuadrilla nom f s 0.00 0.74 0.00 0.68 +cuadrillas cuadrilla nom f p 0.00 0.74 0.00 0.07 +céans céans adv 0.32 0.34 0.32 0.34 +céara céara nom m s 0.14 0.00 0.14 0.00 +cubage cubage nom m s 0.14 0.34 0.14 0.27 +cubages cubage nom m p 0.14 0.34 0.00 0.07 +cubain cubain adj m s 3.28 0.61 1.37 0.34 +cubaine cubain adj f s 3.28 0.61 1.09 0.07 +cubaines cubain adj f p 3.28 0.61 0.05 0.07 +cubains cubain nom m p 2.69 0.61 1.27 0.00 +cubait cuber ver 0.32 0.54 0.00 0.07 ind:imp:3s; +cubasse cuber ver 0.32 0.54 0.00 0.34 sub:imp:1s; +cube cube nom m s 2.81 11.76 1.58 5.74 +cubes cube nom m p 2.81 11.76 1.24 6.01 +cubique cubique adj s 0.05 1.82 0.05 0.88 +cubiques cubique adj p 0.05 1.82 0.00 0.95 +cubisme cubisme nom m s 0.03 0.54 0.03 0.54 +cubiste cubiste adj s 0.04 0.74 0.03 0.47 +cubistes cubiste adj m p 0.04 0.74 0.01 0.27 +cubitainer cubitainer nom m s 0.04 0.00 0.04 0.00 +cubital cubital adj m s 0.04 0.00 0.01 0.00 +cubitale cubital adj f s 0.04 0.00 0.03 0.00 +cubitières cubitière nom f p 0.00 0.14 0.00 0.14 +cubitus cubitus nom m 0.20 0.14 0.20 0.14 +cucaracha cucaracha nom f s 0.15 0.07 0.15 0.07 +cécidomyies cécidomyie nom f p 0.00 0.07 0.00 0.07 +cécité cécité nom f s 1.12 3.65 1.12 3.65 +cucu cucu adj 0.17 0.27 0.17 0.27 +cucul cucul adj m 0.57 0.95 0.57 0.95 +cucurbitacée cucurbitacée nom f s 0.14 0.00 0.14 0.00 +cucurbite cucurbite nom f s 0.01 0.14 0.01 0.00 +cucurbites cucurbite nom f p 0.01 0.14 0.00 0.14 +cucuterie cucuterie nom f s 0.01 0.00 0.01 0.00 +céda céder ver 24.21 61.35 0.39 4.32 ind:pas:3s; +cédai céder ver 24.21 61.35 0.00 0.68 ind:pas:1s; +cédaient céder ver 24.21 61.35 0.03 1.69 ind:imp:3p; +cédais céder ver 24.21 61.35 0.12 0.47 ind:imp:1s;ind:imp:2s; +cédait céder ver 24.21 61.35 0.18 6.28 ind:imp:3s; +cédant céder ver 24.21 61.35 0.50 3.11 par:pre; +céder céder ver 24.21 61.35 7.17 20.54 inf; +cédera céder ver 24.21 61.35 0.58 1.15 ind:fut:3s; +céderai céder ver 24.21 61.35 0.85 0.20 ind:fut:1s; +céderaient céder ver 24.21 61.35 0.02 0.14 cnd:pre:3p; +céderais céder ver 24.21 61.35 0.09 0.20 cnd:pre:1s;cnd:pre:2s; +céderait céder ver 24.21 61.35 0.19 0.68 cnd:pre:3s; +céderas céder ver 24.21 61.35 0.02 0.14 ind:fut:2s; +céderez céder ver 24.21 61.35 0.04 0.14 ind:fut:2p; +céderiez céder ver 24.21 61.35 0.10 0.07 cnd:pre:2p; +céderons céder ver 24.21 61.35 0.14 0.00 ind:fut:1p; +céderont céder ver 24.21 61.35 0.37 0.14 ind:fut:3p; +cédez céder ver 24.21 61.35 1.13 0.20 imp:pre:2p;ind:pre:2p; +cédiez céder ver 24.21 61.35 0.06 0.14 ind:imp:2p; +cédions céder ver 24.21 61.35 0.01 0.20 ind:imp:1p; +cédons céder ver 24.21 61.35 0.69 0.27 imp:pre:1p;ind:pre:1p; +cédât céder ver 24.21 61.35 0.00 0.07 sub:imp:3s; +cédrat cédrat nom m s 0.01 0.27 0.01 0.14 +cédratier cédratier nom m s 0.00 0.07 0.00 0.07 +cédrats cédrat nom m p 0.01 0.27 0.00 0.14 +cédèrent céder ver 24.21 61.35 0.03 0.41 ind:pas:3p; +cédé céder ver m s 24.21 61.35 4.59 11.96 par:pas; +cédée céder ver f s 24.21 61.35 0.00 0.20 par:pas; +cédées céder ver f p 24.21 61.35 0.25 0.20 par:pas; +cédulaire cédulaire adj m s 0.00 0.14 0.00 0.14 +cédule cédule nom f s 0.01 0.00 0.01 0.00 +cédés céder ver m p 24.21 61.35 0.13 0.14 par:pas; +cueillîmes cueillir ver 13.84 25.81 0.00 0.07 ind:pas:1p; +cueillaient cueillir ver 13.84 25.81 0.02 0.47 ind:imp:3p; +cueillais cueillir ver 13.84 25.81 0.34 0.27 ind:imp:1s;ind:imp:2s; +cueillaison cueillaison nom f s 0.01 0.00 0.01 0.00 +cueillait cueillir ver 13.84 25.81 0.16 2.16 ind:imp:3s; +cueillant cueillir ver 13.84 25.81 0.14 1.08 par:pre; +cueille cueillir ver 13.84 25.81 1.91 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cueillent cueillir ver 13.84 25.81 0.19 0.41 ind:pre:3p; +cueillera cueillir ver 13.84 25.81 0.11 0.07 ind:fut:3s; +cueillerai cueillir ver 13.84 25.81 0.02 0.14 ind:fut:1s; +cueillerais cueillir ver 13.84 25.81 0.01 0.00 cnd:pre:1s; +cueillerait cueillir ver 13.84 25.81 0.01 0.00 cnd:pre:3s; +cueilleras cueillir ver 13.84 25.81 0.11 0.07 ind:fut:2s; +cueilleront cueillir ver 13.84 25.81 0.02 0.00 ind:fut:3p; +cueilles cueillir ver 13.84 25.81 0.23 0.14 ind:pre:2s; +cueillette cueillette nom f s 0.57 1.89 0.57 1.62 +cueillettes cueillette nom f p 0.57 1.89 0.00 0.27 +cueilleur cueilleur nom m s 0.24 0.41 0.11 0.00 +cueilleurs cueilleur nom m p 0.24 0.41 0.12 0.34 +cueilleuse cueilleur nom f s 0.24 0.41 0.01 0.00 +cueilleuses cueilleur nom f p 0.24 0.41 0.00 0.07 +cueillez cueillir ver 13.84 25.81 0.73 0.14 imp:pre:2p;ind:pre:2p; +cueilli cueillir ver m s 13.84 25.81 1.34 2.30 par:pas; +cueillie cueillir ver f s 13.84 25.81 0.18 0.95 par:pas; +cueillies cueillir ver f p 13.84 25.81 1.27 1.15 par:pas; +cueillir cueillir ver 13.84 25.81 6.26 10.07 inf; +cueillirent cueillir ver 13.84 25.81 0.00 0.07 ind:pas:3p; +cueillis cueillir ver m p 13.84 25.81 0.62 1.49 ind:pas:1s;par:pas; +cueillissent cueillir ver 13.84 25.81 0.00 0.07 sub:imp:3p; +cueillit cueillir ver 13.84 25.81 0.01 2.36 ind:pas:3s; +cueillons cueillir ver 13.84 25.81 0.16 0.07 imp:pre:1p;ind:pre:1p; +cuesta cuesta nom f s 0.39 0.20 0.39 0.20 +cueva cueva nom f s 0.23 1.01 0.23 0.34 +cuevas cueva nom f p 0.23 1.01 0.00 0.68 +cégep cégep nom m s 0.54 0.00 0.54 0.00 +cégétiste cégétiste nom s 0.00 0.14 0.00 0.07 +cégétistes cégétiste nom p 0.00 0.14 0.00 0.07 +cui_cui cui_cui nom m 0.15 0.34 0.15 0.34 +cuiller cuiller nom f s 2.50 10.20 2.11 8.38 +cuilleron cuilleron nom m s 0.00 0.07 0.00 0.07 +cuillers cuiller nom f p 2.50 10.20 0.39 1.82 +cuillerée cuillerée nom f s 1.15 4.46 0.90 2.70 +cuillerées cuillerée nom f p 1.15 4.46 0.25 1.76 +cuillère cuillère nom f s 7.30 11.89 5.18 9.80 +cuillères cuillère nom f p 7.30 11.89 2.13 2.09 +cuir cuir nom m s 14.25 79.19 14.11 76.08 +cuira cuire ver 21.65 20.41 0.35 0.14 ind:fut:3s; +cuirai cuire ver 21.65 20.41 0.01 0.07 ind:fut:1s; +cuirait cuire ver 21.65 20.41 0.16 0.14 cnd:pre:3s; +cuiras cuire ver 21.65 20.41 0.01 0.00 ind:fut:2s; +cuirassaient cuirasser ver 0.05 1.69 0.00 0.07 ind:imp:3p; +cuirassait cuirasser ver 0.05 1.69 0.00 0.07 ind:imp:3s; +cuirasse cuirasse nom f s 1.07 5.14 0.77 3.72 +cuirassements cuirassement nom m p 0.00 0.07 0.00 0.07 +cuirassent cuirasser ver 0.05 1.69 0.00 0.07 ind:pre:3p; +cuirasser cuirasser ver 0.05 1.69 0.00 0.20 inf; +cuirasses cuirasse nom f p 1.07 5.14 0.30 1.42 +cuirassier cuirassier nom m s 0.25 5.54 0.10 2.30 +cuirassiers cuirassier nom m p 0.25 5.54 0.14 3.24 +cuirassé cuirassé nom m s 1.48 2.64 1.17 1.62 +cuirassée cuirassé adj f s 0.18 2.77 0.00 1.08 +cuirassées cuirassé adj f p 0.18 2.77 0.00 0.54 +cuirassés cuirassé nom m p 1.48 2.64 0.31 1.01 +cuire cuire ver 21.65 20.41 9.12 8.78 inf; +cuirez cuire ver 21.65 20.41 0.00 0.14 ind:fut:2p; +cuiront cuire ver 21.65 20.41 0.02 0.00 ind:fut:3p; +cuirs cuir nom m p 14.25 79.19 0.14 3.11 +cuis cuire ver 21.65 20.41 0.97 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +cuisaient cuire ver 21.65 20.41 0.14 1.22 ind:imp:3p; +cuisait cuire ver 21.65 20.41 0.33 2.09 ind:imp:3s; +cuisant cuisant adj m s 0.49 2.57 0.30 1.08 +cuisante cuisant adj f s 0.49 2.57 0.02 0.81 +cuisantes cuisant adj f p 0.49 2.57 0.10 0.20 +cuisants cuisant adj m p 0.49 2.57 0.06 0.47 +cuise cuire ver 21.65 20.41 0.32 0.14 sub:pre:1s;sub:pre:3s; +cuisent cuire ver 21.65 20.41 0.10 0.95 ind:pre:3p; +cuises cuire ver 21.65 20.41 0.01 0.00 sub:pre:2s; +cuiseurs cuiseur nom m p 0.10 0.00 0.10 0.00 +cuisez cuire ver 21.65 20.41 0.15 0.00 imp:pre:2p;ind:pre:2p; +cuisiez cuire ver 21.65 20.41 0.00 0.07 ind:imp:2p; +cuisina cuisiner ver 27.12 6.15 0.00 0.20 ind:pas:3s; +cuisinaient cuisiner ver 27.12 6.15 0.03 0.07 ind:imp:3p; +cuisinais cuisiner ver 27.12 6.15 0.38 0.07 ind:imp:1s;ind:imp:2s; +cuisinait cuisiner ver 27.12 6.15 1.09 0.74 ind:imp:3s; +cuisinant cuisiner ver 27.12 6.15 0.16 0.27 par:pre; +cuisine cuisine nom f s 87.92 135.41 85.08 123.31 +cuisinent cuisiner ver 27.12 6.15 0.67 0.20 ind:pre:3p; +cuisiner cuisiner ver 27.12 6.15 11.98 2.36 inf; +cuisinera cuisiner ver 27.12 6.15 0.23 0.07 ind:fut:3s; +cuisinerai cuisiner ver 27.12 6.15 0.40 0.07 ind:fut:1s; +cuisinerais cuisiner ver 27.12 6.15 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +cuisinerait cuisiner ver 27.12 6.15 0.02 0.14 cnd:pre:3s; +cuisineras cuisiner ver 27.12 6.15 0.07 0.00 ind:fut:2s; +cuisinerons cuisiner ver 27.12 6.15 0.12 0.00 ind:fut:1p; +cuisines cuisine nom f p 87.92 135.41 2.84 12.09 +cuisinette cuisinette nom f s 0.00 0.14 0.00 0.14 +cuisinez cuisiner ver 27.12 6.15 0.79 0.00 imp:pre:2p;ind:pre:2p; +cuisinier cuisinier nom m s 15.70 26.42 6.79 6.35 +cuisiniers cuisinier nom m p 15.70 26.42 1.25 2.84 +cuisiniez cuisiner ver 27.12 6.15 0.05 0.00 ind:imp:2p; +cuisinière cuisinier nom f s 15.70 26.42 7.66 16.08 +cuisinières cuisinière nom f p 0.19 0.00 0.19 0.00 +cuisinons cuisiner ver 27.12 6.15 0.09 0.00 imp:pre:1p;ind:pre:1p; +cuisiné cuisiner ver m s 27.12 6.15 2.71 0.61 par:pas; +cuisinée cuisiner ver f s 27.12 6.15 0.09 0.14 par:pas; +cuisinées cuisiner ver f p 27.12 6.15 0.02 0.07 par:pas; +cuisinés cuisiné adj m p 0.22 0.61 0.09 0.47 +cuisit cuire ver 21.65 20.41 0.00 0.20 ind:pas:3s; +cuisons cuire ver 21.65 20.41 0.14 0.07 imp:pre:1p;ind:pre:1p; +cuissage cuissage nom m s 0.02 0.34 0.02 0.34 +cuissard cuissard nom m s 0.01 1.76 0.01 0.07 +cuissardes cuissarde nom f p 0.26 0.00 0.26 0.00 +cuissards cuissard nom m p 0.01 1.76 0.00 0.27 +cuisse_madame cuisse_madame nom f s 0.00 0.07 0.00 0.07 +cuisse cuisse nom f s 12.73 69.73 4.38 21.22 +cuisseau cuisseau nom m s 0.14 0.00 0.14 0.00 +cuisses cuisse nom f p 12.73 69.73 8.34 48.51 +cuissette cuissette nom f s 0.00 0.14 0.00 0.07 +cuissettes cuissette nom f p 0.00 0.14 0.00 0.07 +cuisson cuisson nom f s 1.39 3.38 1.38 3.04 +cuissons cuisson nom f p 1.39 3.38 0.01 0.34 +cuissot cuissot nom m s 0.11 0.95 0.10 0.81 +cuissots cuissot nom m p 0.11 0.95 0.01 0.14 +cuistance cuistance nom f s 0.00 1.96 0.00 1.82 +cuistances cuistance nom f p 0.00 1.96 0.00 0.14 +cuistot cuistot nom m s 2.46 4.46 2.24 2.30 +cuistots cuistot nom m p 2.46 4.46 0.22 2.16 +cuistre cuistre nom m s 0.11 1.55 0.10 0.74 +cuistrerie cuistrerie nom f s 0.00 0.34 0.00 0.20 +cuistreries cuistrerie nom f p 0.00 0.34 0.00 0.14 +cuistres cuistre nom m p 0.11 1.55 0.01 0.81 +cuit cuire ver m s 21.65 20.41 7.39 4.59 ind:pre:3s;par:pas; +cuitant cuiter ver 0.20 0.34 0.01 0.00 par:pre; +cuite cuit adj f s 8.39 15.41 2.79 5.74 +cuiter cuiter ver 0.20 0.34 0.12 0.20 inf; +cuites cuit adj f p 8.39 15.41 1.02 3.31 +cuits cuire ver m p 21.65 20.41 2.40 1.15 par:pas; +cuité cuiter ver m s 0.20 0.34 0.07 0.14 par:pas; +cuivra cuivrer ver 0.28 1.08 0.00 0.07 ind:pas:3s; +cuivrait cuivrer ver 0.28 1.08 0.00 0.07 ind:imp:3s; +cuivre cuivre nom m s 5.64 36.08 4.74 30.68 +cuivres cuivre nom m p 5.64 36.08 0.90 5.41 +cuivreux cuivreux adj m 0.03 0.27 0.03 0.27 +cuivré cuivré adj m s 0.07 3.24 0.01 1.22 +cuivrée cuivrer ver f s 0.28 1.08 0.27 0.27 par:pas; +cuivrées cuivré adj f p 0.07 3.24 0.00 0.41 +cuivrés cuivré adj m p 0.07 3.24 0.01 0.47 +cul_blanc cul_blanc nom m s 0.16 0.20 0.01 0.14 +cul_bénit cul_bénit nom m s 0.08 0.20 0.02 0.07 +cul_cul cul_cul adj 0.04 0.00 0.04 0.00 +cul_de_basse_fosse cul_de_basse_fosse nom m s 0.01 0.41 0.01 0.41 +cul_de_four cul_de_four nom m s 0.00 0.20 0.00 0.20 +cul_de_jatte cul_de_jatte nom m s 0.54 1.42 0.42 1.08 +cul_de_lampe cul_de_lampe nom m s 0.01 0.20 0.01 0.14 +cul_de_plomb cul_de_plomb nom m s 0.00 0.07 0.00 0.07 +cul_de_porc cul_de_porc nom m s 0.02 0.00 0.02 0.00 +cul_de_poule cul_de_poule nom m s 0.00 0.14 0.00 0.14 +cul_de_sac cul_de_sac nom m s 0.80 1.55 0.75 1.22 +cul_terreux cul_terreux nom m 2.23 1.28 1.60 0.41 +cul cul nom m s 150.81 68.31 145.85 64.46 +céladon céladon nom m s 0.22 0.47 0.22 0.47 +culasse culasse nom f s 0.60 3.51 0.60 2.84 +culasses culasse nom f p 0.60 3.51 0.00 0.68 +culbuta culbuter ver 1.14 5.54 0.00 0.41 ind:pas:3s; +culbutages culbutage nom m p 0.00 0.07 0.00 0.07 +culbutaient culbuter ver 1.14 5.54 0.02 0.14 ind:imp:3p; +culbutait culbuter ver 1.14 5.54 0.11 0.68 ind:imp:3s; +culbutant culbuter ver 1.14 5.54 0.01 0.47 par:pre; +culbute culbute nom f s 1.72 1.01 1.52 0.68 +culbutent culbuter ver 1.14 5.54 0.14 0.14 ind:pre:3p; +culbuter culbuter ver 1.14 5.54 0.57 1.49 inf; +culbuterais culbuter ver 1.14 5.54 0.01 0.00 cnd:pre:1s; +culbutes culbute nom f p 1.72 1.01 0.20 0.34 +culbuteur culbuteur nom m s 0.06 0.27 0.04 0.14 +culbuteurs culbuteur nom m p 0.06 0.27 0.01 0.14 +culbuto culbuto nom m s 0.03 0.14 0.03 0.14 +culbutèrent culbuter ver 1.14 5.54 0.00 0.07 ind:pas:3p; +culbuté culbuter ver m s 1.14 5.54 0.15 0.74 par:pas; +culbutée culbuter ver f s 1.14 5.54 0.04 0.27 par:pas; +culbutées culbuter ver f p 1.14 5.54 0.00 0.27 par:pas; +culbutés culbuter ver m p 1.14 5.54 0.01 0.20 par:pas; +cule culer ver 0.24 0.14 0.08 0.00 imp:pre:2s;ind:pre:3s; +culer culer ver 0.24 0.14 0.03 0.00 inf; +céleri céleri nom m s 1.62 1.01 1.43 0.81 +céleris céleri nom m p 1.62 1.01 0.19 0.20 +céleste céleste adj s 6.48 7.30 4.43 5.81 +célestes céleste adj p 6.48 7.30 2.04 1.49 +célestin célestin nom m s 0.01 0.20 0.01 0.00 +célestins célestin nom m p 0.01 0.20 0.00 0.20 +culex culex nom m 0.02 0.00 0.02 0.00 +célibat célibat nom m s 1.75 1.35 1.75 1.35 +célibataire célibataire adj s 13.48 4.05 11.02 3.45 +célibataires célibataire nom p 7.69 4.86 3.15 2.64 +célimène célimène nom f s 0.79 0.07 0.79 0.07 +culinaire culinaire adj s 1.60 2.36 1.14 1.22 +culinaires culinaire adj p 1.60 2.36 0.46 1.15 +célinien célinien adj m s 0.00 0.14 0.00 0.07 +célinienne célinien adj f s 0.00 0.14 0.00 0.07 +culmina culminer ver 0.27 1.28 0.01 0.20 ind:pas:3s; +culminait culminer ver 0.27 1.28 0.00 0.41 ind:imp:3s; +culminance culminance nom f s 0.00 0.07 0.00 0.07 +culminant culminant adj m s 0.50 1.82 0.48 1.69 +culminants culminant adj m p 0.50 1.82 0.02 0.14 +culmination culmination nom f s 0.02 0.34 0.02 0.34 +culmine culminer ver 0.27 1.28 0.18 0.27 ind:pre:3s; +culminent culminer ver 0.27 1.28 0.02 0.00 ind:pre:3p; +culminer culminer ver 0.27 1.28 0.03 0.20 inf; +culminé culminer ver m s 0.27 1.28 0.01 0.14 par:pas; +culons culer ver 0.24 0.14 0.00 0.07 imp:pre:1p; +culot culot nom m s 9.73 7.23 9.24 6.76 +culots culot nom m p 9.73 7.23 0.49 0.47 +culotte culotte nom f s 18.14 37.30 13.34 27.70 +culotter culotter ver 0.63 1.42 0.00 0.07 inf; +culottes culotte nom f p 18.14 37.30 4.80 9.59 +culottier culottier nom m s 0.00 0.41 0.00 0.07 +culottiers culottier nom m p 0.00 0.41 0.00 0.07 +culottière culottier nom f s 0.00 0.41 0.00 0.20 +culottières culottier nom f p 0.00 0.41 0.00 0.07 +culotté culotté adj m s 0.70 0.88 0.55 0.47 +culottée culotté adj f s 0.70 0.88 0.15 0.34 +culottées culotter ver f p 0.63 1.42 0.01 0.14 par:pas; +culottés culotté adj m p 0.70 0.88 0.01 0.07 +culpabilisais culpabiliser ver 5.34 0.47 0.35 0.00 ind:imp:1s; +culpabilisait culpabiliser ver 5.34 0.47 0.04 0.14 ind:imp:3s; +culpabilisant culpabiliser ver 5.34 0.47 0.02 0.00 par:pre; +culpabilisation culpabilisation nom f s 0.01 0.20 0.01 0.20 +culpabilise culpabiliser ver 5.34 0.47 1.75 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +culpabilisent culpabiliser ver 5.34 0.47 0.20 0.00 ind:pre:3p; +culpabiliser culpabiliser ver 5.34 0.47 2.07 0.20 inf; +culpabiliserai culpabiliser ver 5.34 0.47 0.02 0.00 ind:fut:1s; +culpabilises culpabiliser ver 5.34 0.47 0.33 0.00 ind:pre:2s; +culpabilisez culpabiliser ver 5.34 0.47 0.25 0.00 imp:pre:2p;ind:pre:2p; +culpabilisiez culpabiliser ver 5.34 0.47 0.03 0.00 ind:imp:2p; +culpabilisons culpabiliser ver 5.34 0.47 0.03 0.00 imp:pre:1p;ind:pre:1p; +culpabilisé culpabiliser ver m s 5.34 0.47 0.22 0.00 par:pas; +culpabilisée culpabiliser ver f s 5.34 0.47 0.02 0.14 par:pas; +culpabilisés culpabiliser ver m p 5.34 0.47 0.01 0.00 par:pas; +culpabilité culpabilité nom f s 11.57 6.22 11.57 6.22 +cul_blanc cul_blanc nom m p 0.16 0.20 0.14 0.07 +cul_bénit cul_bénit nom m p 0.08 0.20 0.06 0.14 +culs_de_basse_fosse culs_de_basse_fosse nom m p 0.00 0.27 0.00 0.27 +cul_de_jatte cul_de_jatte nom m p 0.54 1.42 0.12 0.34 +cul_de_lampe cul_de_lampe nom m p 0.01 0.20 0.00 0.07 +cul_de_sac cul_de_sac nom m p 0.80 1.55 0.05 0.34 +cul_terreux cul_terreux nom m p 2.23 1.28 0.63 0.88 +culs cul nom m p 150.81 68.31 4.96 3.85 +culte culte nom m s 5.37 14.93 4.74 13.58 +cultes culte nom m p 5.37 14.93 0.63 1.35 +célèbre célèbre adj s 31.67 33.58 25.98 24.73 +célèbrent célébrer ver 17.50 20.07 0.40 0.54 ind:pre:3p; +célèbres célèbre adj p 31.67 33.58 5.69 8.85 +cultiva cultiver ver 10.30 13.51 0.14 0.07 ind:pas:3s; +cultivable cultivable adj s 0.07 0.41 0.04 0.20 +cultivables cultivable adj p 0.07 0.41 0.02 0.20 +cultivai cultiver ver 10.30 13.51 0.00 0.07 ind:pas:1s; +cultivaient cultiver ver 10.30 13.51 0.12 0.41 ind:imp:3p; +cultivais cultiver ver 10.30 13.51 0.16 0.20 ind:imp:1s; +cultivait cultiver ver 10.30 13.51 0.44 1.82 ind:imp:3s; +cultivant cultiver ver 10.30 13.51 0.09 0.74 par:pre; +cultivateur cultivateur nom m s 0.82 2.84 0.46 0.88 +cultivateurs cultivateur nom m p 0.82 2.84 0.26 1.76 +cultivatrice cultivateur nom f s 0.82 2.84 0.10 0.07 +cultivatrices cultivateur nom f p 0.82 2.84 0.00 0.14 +cultive cultiver ver 10.30 13.51 2.79 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cultivent cultiver ver 10.30 13.51 0.36 0.81 ind:pre:3p; +cultiver cultiver ver 10.30 13.51 3.34 4.32 inf;; +cultivera cultiver ver 10.30 13.51 0.39 0.00 ind:fut:3s; +cultiverai cultiver ver 10.30 13.51 0.04 0.07 ind:fut:1s; +cultiveraient cultiver ver 10.30 13.51 0.14 0.00 cnd:pre:3p; +cultiverait cultiver ver 10.30 13.51 0.00 0.20 cnd:pre:3s; +cultiveras cultiver ver 10.30 13.51 0.02 0.07 ind:fut:2s; +cultives cultiver ver 10.30 13.51 0.04 0.07 ind:pre:2s; +cultivez cultiver ver 10.30 13.51 0.59 0.07 imp:pre:2p;ind:pre:2p; +cultivions cultiver ver 10.30 13.51 0.02 0.07 ind:imp:1p; +cultivons cultiver ver 10.30 13.51 0.22 0.00 imp:pre:1p;ind:pre:1p; +cultivèrent cultiver ver 10.30 13.51 0.00 0.07 ind:pas:3p; +cultivé cultivé adj m s 2.29 6.89 1.52 2.64 +cultivée cultiver ver f s 10.30 13.51 0.45 0.88 par:pas; +cultivées cultiver ver f p 10.30 13.51 0.04 0.20 par:pas; +cultivés cultivé adj m p 2.29 6.89 0.48 1.69 +cultural cultural adj m s 0.01 0.00 0.01 0.00 +culturalismes culturalisme nom m p 0.00 0.07 0.00 0.07 +culture culture nom f s 22.65 28.51 18.76 24.32 +culturel culturel adj m s 6.04 9.73 2.31 5.14 +culturelle culturel adj f s 6.04 9.73 2.25 2.03 +culturellement culturellement adv 0.36 0.00 0.36 0.00 +culturelles culturel adj f p 6.04 9.73 0.89 1.28 +culturels culturel adj m p 6.04 9.73 0.60 1.28 +cultures culture nom f p 22.65 28.51 3.89 4.19 +culturisme culturisme nom m s 0.41 0.07 0.41 0.07 +culturiste culturiste nom s 0.14 0.20 0.10 0.07 +culturistes culturiste nom p 0.14 0.20 0.05 0.14 +culé culer ver m s 0.24 0.14 0.14 0.07 par:pas; +célébra célébrer ver 17.50 20.07 0.03 0.61 ind:pas:3s; +célébraient célébrer ver 17.50 20.07 0.14 0.95 ind:imp:3p; +célébrais célébrer ver 17.50 20.07 0.04 0.07 ind:imp:1s;ind:imp:2s; +célébrait célébrer ver 17.50 20.07 0.37 1.49 ind:imp:3s; +célébrant célébrer ver 17.50 20.07 0.11 0.81 par:pre; +célébrants célébrant nom m p 0.11 0.74 0.00 0.14 +célébration célébration nom f s 2.79 2.64 2.30 1.96 +célébrations célébration nom f p 2.79 2.64 0.49 0.68 +célébrer célébrer ver 17.50 20.07 7.92 5.74 inf; +célébrera célébrer ver 17.50 20.07 0.06 0.07 ind:fut:3s; +célébrerais célébrer ver 17.50 20.07 0.01 0.07 cnd:pre:1s; +célébrerait célébrer ver 17.50 20.07 0.00 0.20 cnd:pre:3s; +célébrerons célébrer ver 17.50 20.07 0.29 0.00 ind:fut:1p; +célébreront célébrer ver 17.50 20.07 0.17 0.00 ind:fut:3p; +célébriez célébrer ver 17.50 20.07 0.11 0.00 ind:imp:2p; +célébrions célébrer ver 17.50 20.07 0.11 0.07 ind:imp:1p; +célébrissime célébrissime adj s 0.09 0.07 0.09 0.07 +célébrité célébrité nom f s 6.42 4.80 4.15 3.51 +célébrités célébrité nom f p 6.42 4.80 2.27 1.28 +célébrâmes célébrer ver 17.50 20.07 0.10 0.07 ind:pas:1p; +célébrons célébrer ver 17.50 20.07 1.27 0.47 imp:pre:1p;ind:pre:1p; +célébrât célébrer ver 17.50 20.07 0.00 0.14 sub:imp:3s; +célébrèrent célébrer ver 17.50 20.07 0.01 0.14 ind:pas:3p; +célébré célébrer ver m s 17.50 20.07 1.75 2.50 par:pas; +célébrée célébrer ver f s 17.50 20.07 0.20 1.35 par:pas; +célébrées célébrer ver f p 17.50 20.07 0.26 0.81 par:pas; +célébrés célébrer ver m p 17.50 20.07 0.05 0.41 par:pas; +culée culée nom f s 0.00 0.07 0.00 0.07 +célérifère célérifère nom m s 0.00 0.07 0.00 0.07 +célérité célérité nom f s 0.26 0.88 0.26 0.88 +cumin cumin nom m s 0.50 0.74 0.50 0.74 +cumul cumul nom m s 0.02 0.20 0.02 0.20 +cumulaient cumuler ver 0.65 1.35 0.00 0.07 ind:imp:3p; +cumulait cumuler ver 0.65 1.35 0.01 0.34 ind:imp:3s; +cumulant cumuler ver 0.65 1.35 0.03 0.07 par:pre; +cumulard cumulard nom m s 0.01 0.00 0.01 0.00 +cumulatif cumulatif adj m s 0.11 0.20 0.11 0.07 +cumulatifs cumulatif adj m p 0.11 0.20 0.00 0.07 +cumulation cumulation nom f s 0.00 0.07 0.00 0.07 +cumulative cumulatif adj f s 0.11 0.20 0.00 0.07 +cumule cumuler ver 0.65 1.35 0.26 0.34 ind:pre:1s;ind:pre:3s; +cumuler cumuler ver 0.65 1.35 0.07 0.20 inf; +cumulera cumuler ver 0.65 1.35 0.01 0.00 ind:fut:3s; +cumulez cumuler ver 0.65 1.35 0.14 0.07 ind:pre:2p; +cumuliez cumuler ver 0.65 1.35 0.00 0.07 ind:imp:2p; +cumulo_nimbus cumulo_nimbus nom m 0.02 0.14 0.02 0.14 +cumulé cumuler ver m s 0.65 1.35 0.09 0.14 par:pas; +cumulés cumuler ver m p 0.65 1.35 0.04 0.07 par:pas; +cumulus cumulus nom m 0.09 0.81 0.09 0.81 +cénacle cénacle nom m s 0.41 0.27 0.41 0.14 +cénacles cénacle nom m p 0.41 0.27 0.00 0.14 +cunnilinctus cunnilinctus nom m 0.00 0.07 0.00 0.07 +cunnilingus cunnilingus nom m 0.24 0.07 0.24 0.07 +cénobite cénobite nom m s 0.05 0.07 0.01 0.07 +cénobites cénobite nom m p 0.05 0.07 0.04 0.00 +cénotaphe cénotaphe nom m s 0.01 0.41 0.01 0.41 +cunéiforme cunéiforme adj s 0.14 0.20 0.12 0.20 +cunéiformes cunéiforme adj p 0.14 0.20 0.03 0.00 +cépage cépage nom m s 0.04 0.00 0.04 0.00 +céphaline céphaline nom f s 0.01 0.00 0.01 0.00 +céphalique céphalique adj s 0.02 0.20 0.02 0.20 +céphalo_rachidien céphalo_rachidien adj m s 0.30 0.00 0.30 0.00 +céphalopode céphalopode nom m s 0.05 0.00 0.02 0.00 +céphalopodes céphalopode nom m p 0.05 0.00 0.03 0.00 +céphalorachidien céphalorachidien adj m s 0.09 0.00 0.09 0.00 +céphalosporine céphalosporine nom f s 0.03 0.00 0.03 0.00 +céphalée céphalée nom f s 0.14 0.20 0.04 0.07 +céphalées céphalée nom f p 0.14 0.20 0.10 0.14 +cupide cupide adj s 1.47 1.15 1.02 0.88 +cupidement cupidement adv 0.00 0.07 0.00 0.07 +cupides cupide adj p 1.47 1.15 0.45 0.27 +cupidité cupidité nom f s 1.77 1.96 1.77 1.96 +cupidon cupidon nom m s 0.08 0.27 0.04 0.20 +cupidons cupidon nom m p 0.08 0.27 0.04 0.07 +cupressus cupressus nom m 0.00 0.27 0.00 0.27 +cuprifères cuprifère adj p 0.00 0.07 0.00 0.07 +cupriques cuprique adj f p 0.00 0.07 0.00 0.07 +cupronickel cupronickel nom m s 0.01 0.00 0.01 0.00 +cépée cépée nom f s 0.00 0.20 0.00 0.14 +cépées cépée nom f p 0.00 0.20 0.00 0.07 +cupule cupule nom f s 0.01 0.20 0.01 0.14 +cupules cupule nom f p 0.01 0.20 0.00 0.07 +cura curer ver 2.25 3.72 0.01 0.14 ind:pas:3s; +curable curable adj f s 0.33 0.00 0.32 0.00 +curables curable adj p 0.33 0.00 0.01 0.00 +curage curage nom m s 0.00 0.07 0.00 0.07 +curaille curaille nom f s 0.00 0.07 0.00 0.07 +curaillon curaillon nom m s 0.14 0.00 0.14 0.00 +curait curer ver 2.25 3.72 0.02 0.61 ind:imp:3s; +céramique céramique nom f s 0.85 3.24 0.61 2.50 +céramiques céramique nom f p 0.85 3.24 0.24 0.74 +céramiste céramiste nom s 0.13 0.00 0.13 0.00 +curant curer ver 2.25 3.72 0.01 0.14 par:pre; +curare curare nom m s 0.22 0.47 0.22 0.47 +curarisant curarisant adj m s 0.00 0.07 0.00 0.07 +curariser curariser ver 0.01 0.00 0.01 0.00 inf; +curateur curateur nom m s 0.07 0.14 0.06 0.14 +curaçao curaçao nom m s 0.04 0.54 0.04 0.47 +curaçaos curaçao nom m p 0.04 0.54 0.00 0.07 +curatif curatif adj m s 0.65 0.34 0.21 0.14 +curatifs curatif adj m p 0.65 0.34 0.18 0.07 +curative curatif adj f s 0.65 0.34 0.05 0.07 +curatives curatif adj f p 0.65 0.34 0.21 0.07 +curatrice curateur nom f s 0.07 0.14 0.01 0.00 +curcuma curcuma nom m s 0.00 0.07 0.00 0.07 +cure_dent cure_dent nom m s 1.39 0.88 0.60 0.14 +cure_dent cure_dent nom m p 1.39 0.88 0.78 0.74 +cure_pipe cure_pipe nom m s 0.07 0.00 0.05 0.00 +cure_pipe cure_pipe nom m p 0.07 0.00 0.02 0.00 +cure cure nom f s 6.08 9.12 5.60 8.18 +curer curer ver 2.25 3.72 0.80 0.95 inf; +cureras curer ver 2.25 3.72 0.01 0.00 ind:fut:2s; +cures cure nom f p 6.08 9.12 0.48 0.95 +curetage curetage nom m s 0.14 0.00 0.14 0.00 +cureter cureter ver 0.01 0.00 0.01 0.00 inf; +cureton cureton nom m s 0.38 2.50 0.22 1.69 +curetons cureton nom m p 0.38 2.50 0.17 0.81 +curette curette nom f s 0.02 0.00 0.01 0.00 +curettes curette nom f p 0.02 0.00 0.01 0.00 +curial curial adj m s 0.00 0.27 0.00 0.20 +curiales curial adj f p 0.00 0.27 0.00 0.07 +curie curie nom s 0.36 0.14 0.36 0.14 +curieuse curieux adj f s 34.36 66.22 7.81 17.23 +curieusement curieusement adv 1.90 12.84 1.90 12.84 +curieuses curieux adj f p 34.36 66.22 0.44 4.73 +curieux curieux adj m 34.36 66.22 26.11 44.26 +curiosité curiosité nom f s 14.01 54.39 13.70 49.80 +curiosités curiosité nom f p 14.01 54.39 0.31 4.59 +curiste curiste nom s 0.10 0.95 0.00 0.07 +curistes curiste nom p 0.10 0.95 0.10 0.88 +curling curling nom m s 0.12 0.14 0.12 0.14 +curricula curriculum nom m p 0.23 0.41 0.00 0.14 +curriculum_vitae curriculum_vitae nom m 0.13 0.74 0.13 0.74 +curriculum curriculum nom m s 0.23 0.41 0.23 0.27 +curry curry nom m s 1.65 0.14 1.65 0.14 +curseur curseur nom m s 0.11 0.07 0.11 0.07 +cursif cursif adj m s 0.05 0.34 0.02 0.14 +cursive cursif adj f s 0.05 0.34 0.03 0.20 +cursus cursus nom m 0.54 0.07 0.54 0.07 +curé curé nom m s 15.73 51.82 13.65 46.62 +céréale céréale nom f s 4.67 1.69 0.06 0.07 +céréales céréale nom f p 4.67 1.69 4.62 1.62 +céréalier céréalier adj m s 0.00 0.54 0.00 0.14 +céréaliers céréalier adj m p 0.00 0.54 0.00 0.14 +céréalière céréalier adj f s 0.00 0.54 0.00 0.07 +céréalières céréalier adj f p 0.00 0.54 0.00 0.20 +cérébelleuse cérébelleux adj f s 0.03 0.07 0.02 0.07 +cérébelleuses cérébelleux adj f p 0.03 0.07 0.01 0.00 +cérébral cérébral adj m s 11.59 3.31 2.90 0.88 +cérébrale cérébral adj f s 11.59 3.31 6.10 2.23 +cérébralement cérébralement adv 0.04 0.07 0.04 0.07 +cérébrales cérébral adj f p 11.59 3.31 2.09 0.07 +cérébralité cérébralité nom f s 0.00 0.07 0.00 0.07 +cérébraux cérébral adj m p 11.59 3.31 0.51 0.14 +cérébro_spinal cérébro_spinal adj f s 0.03 0.14 0.03 0.14 +curée curée nom f s 0.06 1.22 0.06 1.15 +curées curée nom f p 0.06 1.22 0.00 0.07 +céruléen céruléen adj m s 0.00 0.74 0.00 0.47 +céruléens céruléen adj m p 0.00 0.74 0.00 0.27 +cérumen cérumen nom m s 0.13 0.41 0.13 0.41 +cérémoniaires cérémoniaire nom m p 0.00 0.07 0.00 0.07 +cérémonial cérémonial nom m s 0.69 4.46 0.69 4.39 +cérémoniale cérémonial adj f s 0.13 0.41 0.02 0.07 +cérémonials cérémonial nom m p 0.69 4.46 0.00 0.07 +cérémonie cérémonie nom f s 23.82 30.95 21.72 23.92 +cérémoniel cérémoniel adj m s 0.09 0.14 0.05 0.07 +cérémonielle cérémoniel adj f s 0.09 0.14 0.02 0.00 +cérémoniels cérémoniel adj m p 0.09 0.14 0.01 0.07 +cérémonies cérémonie nom f p 23.82 30.95 2.10 7.03 +cérémonieuse cérémonieux adj f s 0.06 3.24 0.01 0.95 +cérémonieusement cérémonieusement adv 0.02 1.76 0.02 1.76 +cérémonieuses cérémonieux adj f p 0.06 3.24 0.00 0.41 +cérémonieux cérémonieux adj m 0.06 3.24 0.04 1.89 +curés curé nom m p 15.73 51.82 2.08 5.20 +céruse céruse nom f s 0.00 0.14 0.00 0.14 +cérusé cérusé adj m s 0.00 0.14 0.00 0.14 +curve curve adj s 0.09 0.00 0.09 0.00 +curviligne curviligne adj m s 0.01 0.14 0.00 0.07 +curvilignes curviligne adj f p 0.01 0.14 0.01 0.07 +curvimètres curvimètre nom m p 0.00 0.07 0.00 0.07 +césar césar nom m s 0.59 1.15 0.01 0.20 +césarien césarien adj m s 0.11 0.27 0.10 0.00 +césarienne césarien nom f s 1.56 0.47 1.56 0.41 +césariennes césarienne nom f p 0.07 0.00 0.07 0.00 +césariens césarien adj m p 0.11 0.27 0.00 0.07 +césars césar nom m p 0.59 1.15 0.58 0.95 +césium césium nom m s 0.20 0.00 0.20 0.00 +custode custode nom f s 0.00 0.14 0.00 0.14 +custom custom nom m s 0.01 0.00 0.01 0.00 +customisé customiser ver m s 0.07 0.00 0.07 0.00 par:pas; +césure césure nom f s 0.14 0.47 0.14 0.41 +césures césure nom f p 0.14 0.47 0.00 0.07 +cétacé cétacé nom m s 0.19 0.14 0.03 0.14 +cétacés cétacé nom m p 0.19 0.14 0.16 0.00 +cutané cutané adj m s 0.41 0.20 0.05 0.00 +cutanée cutané adj f s 0.41 0.20 0.15 0.14 +cutanées cutané adj f p 0.41 0.20 0.16 0.00 +cutanés cutané adj m p 0.41 0.20 0.05 0.07 +cuti_réaction cuti_réaction nom f s 0.00 0.07 0.00 0.07 +cuti cuti nom f s 0.30 0.47 0.30 0.41 +cuticule cuticule nom f s 0.18 0.07 0.04 0.07 +cuticules cuticule nom f p 0.18 0.07 0.14 0.00 +cutis cuti nom f p 0.30 0.47 0.00 0.07 +cétoine cétoine nom f s 0.00 0.27 0.00 0.14 +cétoines cétoine nom f p 0.00 0.27 0.00 0.14 +cétone cétone nom f s 0.01 0.00 0.01 0.00 +cutter cutter nom m s 2.41 0.07 2.36 0.07 +cutters cutter nom m p 2.41 0.07 0.04 0.00 +cévadille cévadille nom f s 0.00 0.07 0.00 0.07 +cuvaient cuver ver 1.10 2.36 0.01 0.07 ind:imp:3p; +cuvait cuver ver 1.10 2.36 0.03 0.14 ind:imp:3s; +cuvant cuver ver 1.10 2.36 0.01 0.27 par:pre; +cuve cuve nom f s 1.38 4.32 0.86 2.09 +cuveau cuveau nom m s 0.00 0.34 0.00 0.27 +cuveaux cuveau nom m p 0.00 0.34 0.00 0.07 +cévenol cévenol nom m s 0.00 0.07 0.00 0.07 +cuvent cuver ver 1.10 2.36 0.00 0.07 ind:pre:3p; +cuver cuver ver 1.10 2.36 0.51 1.55 inf; +cuvera cuver ver 1.10 2.36 0.01 0.00 ind:fut:3s; +cuverez cuver ver 1.10 2.36 0.01 0.00 ind:fut:2p; +cuves cuve nom f p 1.38 4.32 0.53 2.23 +cuvette cuvette nom f s 2.49 12.97 2.38 11.82 +cuvettes cuvette nom f p 2.49 12.97 0.10 1.15 +cuvier cuvier nom m s 0.00 0.20 0.00 0.14 +cuviers cuvier nom m p 0.00 0.20 0.00 0.07 +cuvé cuver ver m s 1.10 2.36 0.04 0.00 par:pas; +cuvée cuvée nom f s 0.57 0.47 0.55 0.41 +cuvées cuvée nom f p 0.57 0.47 0.02 0.07 +cézigue cézigue nom m s 0.00 3.51 0.00 3.51 +cyan cyan adj s 0.25 0.00 0.25 0.00 +cyanhydrique cyanhydrique adj s 0.17 0.00 0.17 0.00 +cyanoacrylate cyanoacrylate nom m s 0.05 0.00 0.05 0.00 +cyanobactérie cyanobactérie nom f s 0.01 0.00 0.01 0.00 +cyanogène cyanogène nom m s 0.03 0.00 0.03 0.00 +cyanose cyanose nom f s 0.06 0.00 0.06 0.00 +cyanosé cyanoser ver m s 0.23 0.07 0.12 0.07 par:pas; +cyanosée cyanoser ver f s 0.23 0.07 0.12 0.00 par:pas; +cyanure cyanure nom m s 2.23 0.95 2.23 0.95 +cybercafé cybercafé nom m s 0.17 0.00 0.17 0.00 +cyberespace cyberespace nom m s 0.13 0.00 0.13 0.00 +cybermonde cybermonde nom m s 0.01 0.00 0.01 0.00 +cybernautes cybernaute nom p 0.02 0.00 0.02 0.00 +cybernéticien cybernéticien adj m s 0.10 0.00 0.10 0.00 +cybernétique cybernétique adj s 0.26 0.07 0.19 0.07 +cybernétiques cybernétique adj m p 0.26 0.07 0.06 0.00 +cybernétiser cybernétiser ver 0.02 0.00 0.02 0.00 inf; +cyberspace cyberspace nom m s 0.02 0.00 0.02 0.00 +cycas cycas nom m 0.01 0.00 0.01 0.00 +cyclable cyclable adj s 0.05 0.20 0.05 0.14 +cyclables cyclable adj f p 0.05 0.20 0.00 0.07 +cyclamen cyclamen nom m s 0.01 0.34 0.01 0.27 +cyclamens cyclamen nom m p 0.01 0.34 0.00 0.07 +cycle cycle nom m s 8.20 5.81 5.69 4.05 +cycles cycle nom m p 8.20 5.81 2.50 1.76 +cyclique cyclique adj s 0.13 0.41 0.09 0.34 +cycliquement cycliquement adv 0.01 0.07 0.01 0.07 +cycliques cyclique adj m p 0.13 0.41 0.04 0.07 +cyclisme cyclisme nom m s 0.34 1.01 0.34 1.01 +cycliste cycliste nom s 1.08 6.49 0.71 3.65 +cyclistes cycliste nom p 1.08 6.49 0.37 2.84 +cyclo_cross cyclo_cross nom m 0.00 0.07 0.00 0.07 +cyclo_pousse cyclo_pousse nom m 0.05 0.00 0.05 0.00 +cyclo cyclo nom m s 1.06 0.07 1.06 0.07 +cycloïdal cycloïdal adj m s 0.00 0.07 0.00 0.07 +cyclomoteur cyclomoteur nom m s 0.23 0.14 0.23 0.07 +cyclomoteurs cyclomoteur nom m p 0.23 0.14 0.00 0.07 +cyclone cyclone nom m s 1.42 3.51 1.33 3.18 +cyclones cyclone nom m p 1.42 3.51 0.09 0.34 +cyclonique cyclonique adj s 0.03 0.00 0.03 0.00 +cyclope cyclope nom m s 1.31 2.36 1.12 2.23 +cyclopes cyclope nom m p 1.31 2.36 0.20 0.14 +cyclopousses cyclopousse nom m p 0.00 0.07 0.00 0.07 +cyclopéen cyclopéen adj m s 0.01 0.81 0.00 0.20 +cyclopéenne cyclopéen adj f s 0.01 0.81 0.01 0.20 +cyclopéennes cyclopéen adj f p 0.01 0.81 0.00 0.20 +cyclopéens cyclopéen adj m p 0.01 0.81 0.00 0.20 +cyclorama cyclorama nom m s 0.02 0.00 0.02 0.00 +cyclosporine cyclosporine nom f s 0.17 0.00 0.17 0.00 +cyclostomes cyclostome nom m p 0.00 0.07 0.00 0.07 +cyclothymie cyclothymie nom f s 0.10 0.07 0.10 0.07 +cyclothymique cyclothymique adj s 0.05 0.34 0.05 0.34 +cyclotron cyclotron nom m s 0.16 0.27 0.16 0.27 +cyclées cycler ver f p 0.00 0.07 0.00 0.07 par:pas; +cygne cygne nom m s 7.26 7.57 5.28 4.66 +cygnes cygne nom m p 7.26 7.57 1.99 2.91 +cylindre cylindre nom m s 1.60 5.20 0.62 3.11 +cylindres cylindre nom m p 1.60 5.20 0.97 2.09 +cylindrique cylindrique adj s 0.35 3.45 0.10 2.23 +cylindriques cylindrique adj p 0.35 3.45 0.26 1.22 +cylindré cylindrer ver m s 0.02 0.20 0.00 0.07 par:pas; +cylindrée cylindrée nom f s 0.41 0.68 0.36 0.61 +cylindrées cylindrée nom f p 0.41 0.68 0.04 0.07 +cylindrés cylindrer ver m p 0.02 0.20 0.00 0.07 par:pas; +cymbale cymbale nom f s 0.45 1.89 0.19 0.14 +cymbales cymbale nom f p 0.45 1.89 0.26 1.76 +cymbaliste cymbaliste nom s 0.14 0.27 0.14 0.07 +cymbalistes cymbaliste nom p 0.14 0.27 0.00 0.20 +cymbalum cymbalum nom m s 0.00 0.14 0.00 0.14 +cymes cyme nom f p 0.00 0.07 0.00 0.07 +cynips cynips nom m 0.01 0.00 0.01 0.00 +cynique cynique adj s 4.70 6.42 3.90 4.86 +cyniquement cyniquement adv 0.00 0.74 0.00 0.74 +cyniques cynique adj p 4.70 6.42 0.80 1.55 +cynisme cynisme nom m s 1.95 6.49 1.95 6.42 +cynismes cynisme nom m p 1.95 6.49 0.00 0.07 +cynocéphale cynocéphale nom m s 0.01 0.14 0.01 0.07 +cynocéphales cynocéphale nom m p 0.01 0.14 0.00 0.07 +cynodrome cynodrome nom m s 0.01 0.00 0.01 0.00 +cynophile cynophile adj f s 0.04 0.00 0.04 0.00 +cynos cyno nom m p 0.00 0.07 0.00 0.07 +cynégétique cynégétique adj f s 0.00 0.27 0.00 0.14 +cynégétiques cynégétique adj m p 0.00 0.27 0.00 0.14 +cyphoscoliose cyphoscoliose nom f s 0.01 0.00 0.01 0.00 +cyphose cyphose nom f s 0.01 0.07 0.01 0.07 +cyprin cyprin nom m s 0.00 1.82 0.00 1.62 +cyprinidé cyprinidé nom m s 0.00 0.14 0.00 0.07 +cyprinidés cyprinidé nom m p 0.00 0.14 0.00 0.07 +cyprins cyprin nom m p 0.00 1.82 0.00 0.20 +cypriote cypriote nom s 0.01 0.47 0.00 0.07 +cypriotes cypriote nom p 0.01 0.47 0.01 0.41 +cyprès cyprès nom m 0.52 8.51 0.52 8.51 +cyrard cyrard nom m s 0.00 0.27 0.00 0.20 +cyrards cyrard nom m p 0.00 0.27 0.00 0.07 +cyrillique cyrillique adj m s 0.22 0.47 0.07 0.14 +cyrilliques cyrillique adj p 0.22 0.47 0.15 0.34 +cystique cystique adj s 0.09 0.00 0.09 0.00 +cystite cystite nom f s 0.09 0.00 0.09 0.00 +cystotomie cystotomie nom f s 0.01 0.00 0.01 0.00 +cytises cytise nom m p 0.00 0.27 0.00 0.27 +cytologie cytologie nom f s 0.01 0.00 0.01 0.00 +cytologiques cytologique adj f p 0.00 0.07 0.00 0.07 +cytomégalovirus cytomégalovirus nom m 0.08 0.00 0.08 0.00 +cytoplasme cytoplasme nom m s 0.04 0.00 0.04 0.00 +cytoplasmique cytoplasmique adj m s 0.01 0.00 0.01 0.00 +cytosine cytosine nom f s 0.04 0.00 0.04 0.00 +cytotoxique cytotoxique adj s 0.04 0.00 0.04 0.00 +czar czar nom m s 0.00 0.54 0.00 0.41 +czardas czardas nom f 0.01 0.14 0.01 0.14 +czars czar nom m p 0.00 0.54 0.00 0.14 +d d pre 7224.74 11876.35 7224.74 11876.35 +d_abord d_abord adv 175.45 169.32 175.45 169.32 +d_autres d_autres adj_ind p 133.34 119.73 133.34 119.73 +d_emblée d_emblée adv 1.31 8.38 1.31 8.38 +d_ores_et_déjà d_ores_et_déjà adv 0.26 1.28 0.26 1.28 +dîme dîme nom f s 0.44 1.28 0.43 1.22 +dîmes dîme nom f p 0.44 1.28 0.01 0.07 +dîna dîner ver 79.30 59.66 0.10 1.08 ind:pas:3s; +dînai dîner ver 79.30 59.66 0.00 0.68 ind:pas:1s; +dînaient dîner ver 79.30 59.66 0.05 1.55 ind:imp:3p; +dînais dîner ver 79.30 59.66 0.31 0.95 ind:imp:1s;ind:imp:2s; +dînait dîner ver 79.30 59.66 0.88 3.24 ind:imp:3s; +dînant dîner ver 79.30 59.66 0.33 1.15 par:pre; +dînatoire dînatoire adj s 0.29 0.14 0.29 0.00 +dînatoires dînatoire adj f p 0.29 0.14 0.00 0.14 +dîne dîner ver 79.30 59.66 8.22 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dînent dîner ver 79.30 59.66 0.47 0.47 ind:pre:3p; +dîner dîner nom m s 88.45 68.58 84.73 60.00 +dînera dîner ver 79.30 59.66 1.36 0.54 ind:fut:3s; +dînerai dîner ver 79.30 59.66 0.22 0.14 ind:fut:1s; +dîneraient dîner ver 79.30 59.66 0.00 0.27 cnd:pre:3p; +dînerais dîner ver 79.30 59.66 0.26 0.07 cnd:pre:1s;cnd:pre:2s; +dînerait dîner ver 79.30 59.66 0.14 0.20 cnd:pre:3s; +dîneras dîner ver 79.30 59.66 0.22 0.07 ind:fut:2s; +dînerez dîner ver 79.30 59.66 0.55 0.27 ind:fut:2p; +dîneriez dîner ver 79.30 59.66 0.20 0.00 cnd:pre:2p; +dînerions dîner ver 79.30 59.66 0.00 0.14 cnd:pre:1p; +dînerons dîner ver 79.30 59.66 0.59 0.47 ind:fut:1p; +dîneront dîner ver 79.30 59.66 0.05 0.00 ind:fut:3p; +dîners dîner nom m p 88.45 68.58 3.72 8.58 +dînes dîner ver 79.30 59.66 1.42 0.14 ind:pre:2s; +dînette dînette nom f s 0.59 1.55 0.49 1.35 +dînettes dînette nom f p 0.59 1.55 0.10 0.20 +dîneur dîneur nom m s 0.01 2.57 0.01 0.14 +dîneurs dîneur nom m p 0.01 2.57 0.00 2.23 +dîneuse dîneur nom f s 0.01 2.57 0.00 0.20 +dînez dîner ver 79.30 59.66 2.13 0.27 imp:pre:2p;ind:pre:2p; +dîniez dîner ver 79.30 59.66 0.20 0.00 ind:imp:2p; +dînions dîner ver 79.30 59.66 0.26 1.69 ind:imp:1p; +dînâmes dîner ver 79.30 59.66 0.01 0.34 ind:pas:1p; +dînons dîner ver 79.30 59.66 1.95 1.89 imp:pre:1p;ind:pre:1p; +dînât dîner ver 79.30 59.66 0.00 0.07 sub:imp:3s; +dînèrent dîner ver 79.30 59.66 0.04 1.22 ind:pas:3p; +dîné dîner ver m s 79.30 59.66 7.54 6.15 par:pas; +dît dire ver_sup 5946.17 4832.50 0.34 1.22 sub:imp:3s; +dîtes dire ver_sup 5946.17 4832.50 10.24 0.07 ind:pas:2p; +dôle dôle nom m s 0.01 0.00 0.01 0.00 +dôme dôme nom m s 1.93 4.93 1.81 3.78 +dômes dôme nom m p 1.93 4.93 0.12 1.15 +dôngs dông nom m p 0.14 0.00 0.14 0.00 +dû devoir ver_sup m s 3232.80 1318.24 363.68 243.65 par:pas; +dûment dûment adv 0.55 4.32 0.55 4.32 +dûmes devoir ver_sup 3232.80 1318.24 0.04 1.55 ind:pas:1p; +dût devoir ver_sup 3232.80 1318.24 0.65 4.19 sub:imp:3s; +da da ono 8.02 3.24 8.02 3.24 +daïmios daïmio nom m p 0.00 0.14 0.00 0.14 +daïquiri daïquiri nom m s 0.14 0.14 0.01 0.14 +daïquiris daïquiri nom m p 0.14 0.14 0.14 0.00 +dab dab nom m s 0.17 1.35 0.17 1.28 +daba daba nom f s 0.01 0.00 0.01 0.00 +dabe dabe nom m s 0.00 1.42 0.00 1.42 +dabs dab nom m p 0.17 1.35 0.00 0.07 +dabuche dabuche nom f s 0.00 0.54 0.00 0.47 +dabuches dabuche nom f p 0.00 0.54 0.00 0.07 +dace dace adj s 0.04 0.61 0.03 0.07 +daces dace adj p 0.04 0.61 0.01 0.54 +dache dache nom m s 0.00 0.27 0.00 0.27 +dacique dacique adj s 0.00 0.14 0.00 0.14 +dacron dacron nom m s 0.02 0.07 0.02 0.07 +dactyle dactyle nom m s 0.00 0.20 0.00 0.07 +dactyles dactyle nom m p 0.00 0.20 0.00 0.14 +dactylo dactylo nom s 0.93 4.66 0.73 2.97 +dactylographe dactylographe nom s 0.10 0.34 0.00 0.34 +dactylographes dactylographe nom p 0.10 0.34 0.10 0.00 +dactylographie dactylographie nom f s 0.04 0.41 0.04 0.41 +dactylographier dactylographier ver 0.09 0.61 0.06 0.20 inf; +dactylographié dactylographié adj m s 0.11 1.08 0.06 0.20 +dactylographiée dactylographié adj f s 0.11 1.08 0.04 0.34 +dactylographiées dactylographié adj f p 0.11 1.08 0.00 0.41 +dactylographiés dactylographié adj m p 0.11 1.08 0.01 0.14 +dactyloptères dactyloptère nom m p 0.02 0.00 0.02 0.00 +dactylos dactylo nom p 0.93 4.66 0.20 1.69 +dactyloscopie dactyloscopie nom f s 0.11 0.00 0.11 0.00 +dada dada nom m s 1.90 2.57 1.80 1.96 +dadaïsme dadaïsme nom m s 0.01 0.00 0.01 0.00 +dadaïste dadaïste adj f s 0.01 0.07 0.01 0.00 +dadaïstes dadaïste nom p 0.01 0.07 0.01 0.07 +dadais dadais nom m 0.34 1.28 0.34 1.28 +dadas dada nom m p 1.90 2.57 0.10 0.61 +dague dague nom f s 2.46 2.09 2.19 1.55 +daguerréotype daguerréotype nom m s 0.10 0.34 0.10 0.27 +daguerréotypes daguerréotype nom m p 0.10 0.34 0.00 0.07 +dagues dague nom f p 2.46 2.09 0.27 0.54 +daguet daguet nom m s 0.00 0.41 0.00 0.34 +daguets daguet nom m p 0.00 0.41 0.00 0.07 +dagué daguer ver m s 0.00 0.07 0.00 0.07 par:pas; +dahlia dahlia nom m s 0.02 2.50 0.00 0.20 +dahlias dahlia nom m p 0.02 2.50 0.02 2.30 +dahoméenne dahoméen adj f s 0.00 0.07 0.00 0.07 +dahu dahu nom m s 0.19 0.14 0.18 0.14 +dahus dahu nom m p 0.19 0.14 0.01 0.00 +daigna daigner ver 4.41 9.39 0.00 1.69 ind:pas:3s; +daignaient daigner ver 4.41 9.39 0.00 0.34 ind:imp:3p; +daignait daigner ver 4.41 9.39 0.13 1.49 ind:imp:3s; +daignant daigner ver 4.41 9.39 0.01 0.20 par:pre; +daigne daigner ver 4.41 9.39 1.09 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +daignent daigner ver 4.41 9.39 0.07 0.27 ind:pre:3p; +daigner daigner ver 4.41 9.39 0.02 0.34 inf; +daignera daigner ver 4.41 9.39 0.03 0.27 ind:fut:3s; +daigneraient daigner ver 4.41 9.39 0.01 0.07 cnd:pre:3p; +daignerais daigner ver 4.41 9.39 0.00 0.07 cnd:pre:1s; +daignerait daigner ver 4.41 9.39 0.19 0.00 cnd:pre:3s; +daigneras daigner ver 4.41 9.39 0.01 0.00 ind:fut:2s; +daignes daigner ver 4.41 9.39 0.09 0.00 ind:pre:2s; +daignez daigner ver 4.41 9.39 1.86 0.47 imp:pre:2p;ind:pre:2p; +daignons daigner ver 4.41 9.39 0.01 0.00 imp:pre:1p; +daignât daigner ver 4.41 9.39 0.00 0.34 sub:imp:3s; +daignèrent daigner ver 4.41 9.39 0.00 0.07 ind:pas:3p; +daigné daigner ver m s 4.41 9.39 0.89 1.35 par:pas; +daim daim nom m s 1.65 5.74 1.41 5.14 +daims daim nom m p 1.65 5.74 0.25 0.61 +daine daine nom f s 0.00 0.07 0.00 0.07 +daiquiri daiquiri nom m s 0.41 0.14 0.27 0.14 +daiquiris daiquiri nom m p 0.41 0.14 0.14 0.00 +dais dais nom m 0.23 3.04 0.23 3.04 +dakarois dakarois adj m s 0.00 0.14 0.00 0.07 +dakaroise dakarois adj f s 0.00 0.14 0.00 0.07 +dakin dakin nom m s 0.03 0.07 0.03 0.07 +dakotas dakota nom p 0.05 0.00 0.05 0.00 +dal dal nom m s 0.01 0.00 0.01 0.00 +dalaï_lama dalaï_lama nom m s 0.00 0.20 0.00 0.20 +dale dale nom m s 0.16 0.00 0.16 0.00 +dalinienne dalinien adj f s 0.00 0.07 0.00 0.07 +dallage dallage nom m s 0.04 3.04 0.04 2.91 +dallages dallage nom m p 0.04 3.04 0.00 0.14 +dalle dalle nom f s 13.00 29.19 12.35 13.38 +daller daller ver 1.62 3.99 0.43 0.00 inf; +dalles dalle nom f p 13.00 29.19 0.65 15.81 +dallé daller ver m s 1.62 3.99 0.00 0.88 par:pas; +dallée daller ver f s 1.62 3.99 0.00 0.88 par:pas; +dallées daller ver f p 1.62 3.99 0.00 0.54 par:pas; +dallés daller ver m p 1.62 3.99 0.00 0.34 par:pas; +dalmate dalmate adj s 0.30 0.41 0.30 0.27 +dalmates dalmate adj p 0.30 0.41 0.00 0.14 +dalmatien dalmatien nom m s 0.33 0.20 0.14 0.00 +dalmatienne dalmatien nom f s 0.33 0.20 0.11 0.00 +dalmatiens dalmatien nom m p 0.33 0.20 0.08 0.20 +dalmatique dalmatique nom f s 0.02 0.68 0.02 0.54 +dalmatiques dalmatique nom f p 0.02 0.68 0.00 0.14 +daltonien daltonien adj m s 0.48 0.00 0.28 0.00 +daltonienne daltonien adj f s 0.48 0.00 0.16 0.00 +daltoniennes daltonien adj f p 0.48 0.00 0.01 0.00 +daltoniens daltonien adj m p 0.48 0.00 0.03 0.00 +daltonisme daltonisme nom m s 0.02 0.00 0.02 0.00 +daltons dalton nom m p 0.00 0.07 0.00 0.07 +dam dam nom m s 0.81 1.69 0.70 1.62 +damage damage nom m s 0.10 0.00 0.10 0.00 +damas damas nom m 0.42 0.61 0.42 0.61 +damasquin damasquin nom m s 0.00 0.14 0.00 0.07 +damasquinage damasquinage nom m s 0.01 0.00 0.01 0.00 +damasquinerie damasquinerie nom f s 0.00 0.07 0.00 0.07 +damasquins damasquin nom m p 0.00 0.14 0.00 0.07 +damasquiné damasquiné adj m s 0.00 0.27 0.00 0.07 +damasquinée damasquiné adj f s 0.00 0.27 0.00 0.07 +damasquinure damasquinure nom f s 0.00 0.07 0.00 0.07 +damasquinés damasquiné adj m p 0.00 0.27 0.00 0.14 +damassé damassé adj m s 0.05 1.35 0.00 0.27 +damassée damassé adj f s 0.05 1.35 0.03 0.81 +damassées damassé adj f p 0.05 1.35 0.02 0.20 +damassés damassé adj m p 0.05 1.35 0.00 0.07 +dame_jeanne dame_jeanne nom f s 0.01 0.20 0.01 0.07 +dame dame ono 1.01 1.49 1.01 1.49 +dament damer ver 11.60 3.78 0.00 0.07 ind:pre:3p; +damer damer ver 11.60 3.78 0.04 0.14 inf; +dameret dameret nom m s 0.00 0.07 0.00 0.07 +dameriez damer ver 11.60 3.78 0.01 0.00 cnd:pre:2p; +dame_jeanne dame_jeanne nom f p 0.01 0.20 0.00 0.14 +dames dame nom f p 111.20 151.35 24.70 45.20 +damez damer ver 11.60 3.78 0.02 0.00 imp:pre:2p; +damier damier nom m s 0.47 2.57 0.42 1.96 +damiers damier nom m p 0.47 2.57 0.04 0.61 +damnable damnable adj f s 0.01 0.20 0.01 0.00 +damnables damnable adj p 0.01 0.20 0.00 0.20 +damnait damner ver 4.36 3.78 0.00 0.07 ind:imp:3s; +damnant damner ver 4.36 3.78 0.00 0.07 par:pre; +damnation damnation nom f s 1.70 3.92 1.70 3.72 +damnations damnation nom f p 1.70 3.92 0.00 0.20 +damne damner ver 4.36 3.78 0.14 0.61 ind:pre:1s;ind:pre:3s; +damned damned ono 0.26 0.41 0.26 0.41 +damnent damner ver 4.36 3.78 0.00 0.14 ind:pre:3p; +damner damner ver 4.36 3.78 0.61 0.88 inf; +damnera damner ver 4.36 3.78 0.17 0.07 ind:fut:3s; +damneraient damner ver 4.36 3.78 0.02 0.00 cnd:pre:3p; +damnerais damner ver 4.36 3.78 0.03 0.41 cnd:pre:1s; +damnez damner ver 4.36 3.78 0.02 0.00 imp:pre:2p; +damné damner ver m s 4.36 3.78 2.12 0.68 par:pas; +damnée damné adj f s 2.82 2.23 1.87 0.81 +damnées damné adj f p 2.82 2.23 0.28 0.41 +damnés damné nom m p 2.57 3.24 1.33 2.23 +damoiseau damoiseau nom m s 11.41 20.00 0.16 0.00 +damoiselle damoiselle nom f s 0.60 0.14 0.55 0.14 +damoiselles damoiselle nom f p 0.60 0.14 0.05 0.00 +dams dam nom m p 0.81 1.69 0.11 0.07 +damé damer ver m s 11.60 3.78 0.04 0.00 par:pas; +damée damer ver f s 11.60 3.78 0.00 0.07 par:pas; +damées damer ver f p 11.60 3.78 0.00 0.14 par:pas; +dan dan nom m s 0.49 0.07 0.49 0.07 +danaïde danaïde nom f s 0.00 0.07 0.00 0.07 +dancing dancing nom m s 1.15 3.51 0.94 2.70 +dancings dancing nom m p 1.15 3.51 0.20 0.81 +dandina dandiner ver 0.26 7.30 0.00 0.34 ind:pas:3s; +dandinaient dandiner ver 0.26 7.30 0.00 0.34 ind:imp:3p; +dandinais dandiner ver 0.26 7.30 0.00 0.07 ind:imp:1s; +dandinait dandiner ver 0.26 7.30 0.01 1.76 ind:imp:3s; +dandinant dandiner ver 0.26 7.30 0.03 2.57 par:pre; +dandine dandiner ver 0.26 7.30 0.09 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dandinement dandinement nom m s 0.00 0.74 0.00 0.54 +dandinements dandinement nom m p 0.00 0.74 0.00 0.20 +dandinent dandiner ver 0.26 7.30 0.02 0.20 ind:pre:3p; +dandiner dandiner ver 0.26 7.30 0.09 0.88 inf; +dandinez dandiner ver 0.26 7.30 0.02 0.07 imp:pre:2p;ind:pre:2p; +dandinée dandiner ver f s 0.26 7.30 0.00 0.07 par:pas; +dandinés dandiner ver m p 0.26 7.30 0.00 0.07 par:pas; +dandy dandy nom m s 2.87 3.51 2.61 3.18 +dandys dandy nom m p 2.87 3.51 0.26 0.34 +dandysme dandysme nom m s 0.00 0.41 0.00 0.41 +danger danger nom m s 80.61 55.27 76.73 45.20 +dangereuse dangereux adj f s 101.84 47.57 13.61 10.27 +dangereusement dangereusement adv 2.13 5.88 2.13 5.88 +dangereuses dangereux adj f p 101.84 47.57 4.75 4.53 +dangereux dangereux adj m 101.84 47.57 83.48 32.77 +dangerosité dangerosité nom f s 0.01 0.14 0.01 0.14 +dangers danger nom m p 80.61 55.27 3.87 10.07 +dano dano nom m s 0.25 0.07 0.25 0.07 +danois danois adj m 3.37 2.03 2.77 1.22 +danoise danois adj f s 3.37 2.03 0.57 0.34 +danoises danois adj f p 3.37 2.03 0.02 0.47 +dans dans pre 4658.59 8296.08 4658.59 8296.08 +dansa danser ver 137.40 92.57 0.07 1.15 ind:pas:3s; +dansai danser ver 137.40 92.57 0.00 0.14 ind:pas:1s; +dansaient danser ver 137.40 92.57 1.20 8.99 ind:imp:3p; +dansais danser ver 137.40 92.57 2.43 1.69 ind:imp:1s;ind:imp:2s; +dansait danser ver 137.40 92.57 3.15 13.85 ind:imp:3s; +dansant danser ver 137.40 92.57 2.25 5.54 par:pre; +dansante dansant adj f s 2.44 6.89 0.57 1.76 +dansantes dansant adj f p 2.44 6.89 0.64 1.96 +dansants dansant adj m p 2.44 6.89 0.41 0.61 +danse danse nom f s 51.23 35.27 46.92 29.19 +dansent danser ver 137.40 92.57 5.58 5.54 ind:pre:3p; +danser danser ver 137.40 92.57 70.06 35.41 ind:pre:2p;inf; +dansera danser ver 137.40 92.57 1.44 0.20 ind:fut:3s; +danserai danser ver 137.40 92.57 1.30 0.20 ind:fut:1s; +danseraient danser ver 137.40 92.57 0.01 0.27 cnd:pre:3p; +danserais danser ver 137.40 92.57 0.19 0.14 cnd:pre:1s;cnd:pre:2s; +danserait danser ver 137.40 92.57 0.25 0.34 cnd:pre:3s; +danseras danser ver 137.40 92.57 0.34 0.20 ind:fut:2s; +danserez danser ver 137.40 92.57 0.53 0.00 ind:fut:2p; +danseriez danser ver 137.40 92.57 0.01 0.00 cnd:pre:2p; +danserions danser ver 137.40 92.57 0.03 0.00 cnd:pre:1p; +danserons danser ver 137.40 92.57 0.31 0.07 ind:fut:1p; +danseront danser ver 137.40 92.57 0.14 0.20 ind:fut:3p; +danses danser ver 137.40 92.57 6.81 0.47 ind:pre:2s;sub:pre:2s; +danseur danseur nom m s 19.54 25.68 5.85 5.00 +danseurs danseur nom m p 19.54 25.68 3.64 5.95 +danseuse danseur nom f s 19.54 25.68 10.05 8.58 +danseuses danseuse nom f p 3.51 0.00 3.51 0.00 +dansez danser ver 137.40 92.57 6.41 0.74 imp:pre:2p;ind:pre:2p; +dansiez danser ver 137.40 92.57 0.37 0.07 ind:imp:2p; +dansions danser ver 137.40 92.57 0.56 0.68 ind:imp:1p; +dansâmes danser ver 137.40 92.57 0.00 0.07 ind:pas:1p; +dansons danser ver 137.40 92.57 4.33 0.88 imp:pre:1p;ind:pre:1p; +dansota dansoter ver 0.00 0.34 0.00 0.07 ind:pas:3s; +dansotait dansoter ver 0.00 0.34 0.00 0.27 ind:imp:3s; +dansotter dansotter ver 0.00 0.07 0.00 0.07 inf; +dansèrent danser ver 137.40 92.57 0.15 1.35 ind:pas:3p; +dansé danser ver m s 137.40 92.57 5.94 4.32 par:pas; +dansée danser ver f s 137.40 92.57 0.05 0.27 par:pas; +dantesque dantesque adj s 0.29 0.34 0.18 0.20 +dantesques dantesque adj p 0.29 0.34 0.11 0.14 +danubien danubien adj m s 0.00 0.20 0.00 0.07 +danubienne danubien adj f s 0.00 0.20 0.00 0.07 +danubiennes danubien adj f p 0.00 0.20 0.00 0.07 +dao dao nom m s 0.09 0.00 0.09 0.00 +daphné daphné nom m s 0.13 0.07 0.13 0.07 +darce darce nom f s 0.02 0.00 0.02 0.00 +dard dard nom m s 1.61 2.84 1.30 1.55 +darda darder ver 0.16 4.19 0.00 0.20 ind:pas:3s; +dardaient darder ver 0.16 4.19 0.00 0.14 ind:imp:3p; +dardait darder ver 0.16 4.19 0.00 0.74 ind:imp:3s; +dardant darder ver 0.16 4.19 0.01 0.68 par:pre; +darde darder ver 0.16 4.19 0.03 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dardent darder ver 0.16 4.19 0.01 0.07 ind:pre:3p; +darder darder ver 0.16 4.19 0.10 0.07 inf; +dardillonnaient dardillonner ver 0.00 0.14 0.00 0.07 ind:imp:3p; +dardillonne dardillonner ver 0.00 0.14 0.00 0.07 ind:pre:3s; +dards dard nom m p 1.61 2.84 0.31 1.28 +dardé darder ver m s 0.16 4.19 0.01 0.61 par:pas; +dardée darder ver f s 0.16 4.19 0.00 0.61 par:pas; +dardées darder ver f p 0.16 4.19 0.00 0.41 par:pas; +dardés darder ver m p 0.16 4.19 0.00 0.20 par:pas; +dare_dare dare_dare adv 0.21 1.55 0.17 1.28 +dare_dare dare_dare adv 0.21 1.55 0.04 0.27 +darioles dariole nom f p 0.01 0.00 0.01 0.00 +darne darne nom f s 0.00 0.14 0.00 0.14 +daron daron nom m s 0.04 2.50 0.01 0.88 +daronne daron nom f s 0.04 2.50 0.00 1.01 +daronnes daron nom f p 0.04 2.50 0.00 0.14 +darons daron nom m p 0.04 2.50 0.02 0.47 +darse darse nom f s 0.00 0.61 0.00 0.54 +darses darse nom f p 0.00 0.61 0.00 0.07 +dartres dartre nom f p 0.00 0.14 0.00 0.14 +dartreuses dartreux adj f p 0.00 0.07 0.00 0.07 +dasein dasein nom m s 0.00 0.07 0.00 0.07 +data dater ver 16.69 17.23 0.46 0.00 ind:pas:3s; +datable datable adj m s 0.00 0.07 0.00 0.07 +datage datage nom m s 0.01 0.00 0.01 0.00 +dataient dater ver 16.69 17.23 0.12 0.95 ind:imp:3p; +datait dater ver 16.69 17.23 0.34 3.18 ind:imp:3s; +datant dater ver 16.69 17.23 1.01 2.57 par:pre; +datation datation nom f s 0.20 0.14 0.20 0.14 +datcha datcha nom f s 1.74 1.15 1.74 0.74 +datchas datcha nom f p 1.74 1.15 0.00 0.41 +date date nom f s 31.41 45.74 26.88 36.62 +datent dater ver 16.69 17.23 2.35 0.95 ind:pre:3p; +dater dater ver 16.69 17.23 1.48 1.55 inf; +daterai dater ver 16.69 17.23 0.00 0.07 ind:fut:1s; +daterais dater ver 16.69 17.23 0.00 0.07 cnd:pre:1s; +daterait dater ver 16.69 17.23 0.03 0.14 cnd:pre:3s; +dates date nom f p 31.41 45.74 4.53 9.12 +dateur dateur adj m s 0.01 0.00 0.01 0.00 +dateur dateur nom m s 0.01 0.00 0.01 0.00 +datez dater ver 16.69 17.23 0.04 0.00 imp:pre:2p;ind:pre:2p; +datif datif nom m s 0.02 0.00 0.02 0.00 +datte datte nom f s 0.95 2.64 0.24 0.14 +dattes datte nom f p 0.95 2.64 0.71 2.50 +dattier dattier nom m s 0.01 1.62 0.00 0.68 +dattiers dattier nom m p 0.01 1.62 0.01 0.95 +daté dater ver m s 16.69 17.23 0.81 1.82 par:pas; +datée dater ver f s 16.69 17.23 0.34 1.42 par:pas; +datées dater ver f p 16.69 17.23 0.09 0.34 par:pas; +datura datura nom m s 0.02 0.20 0.02 0.00 +daturas datura nom m p 0.02 0.20 0.00 0.20 +datés dater ver m p 16.69 17.23 0.09 0.41 par:pas; +daubait dauber ver 0.02 0.20 0.00 0.07 ind:imp:3s; +daube daube nom f s 0.99 0.68 0.98 0.54 +dauber dauber ver 0.02 0.20 0.01 0.14 inf; +daubes daube nom f p 0.99 0.68 0.01 0.14 +daubière daubière nom f s 0.01 0.00 0.01 0.00 +daubé dauber ver m s 0.02 0.20 0.01 0.00 par:pas; +dauphin dauphin nom m s 4.71 11.82 1.76 1.22 +dauphinat dauphinat nom m s 0.00 0.20 0.00 0.20 +dauphine dauphin nom f s 4.71 11.82 0.32 9.26 +dauphines dauphin nom f p 4.71 11.82 0.00 0.14 +dauphinois dauphinois adj m s 0.27 0.41 0.27 0.41 +dauphins dauphin nom m p 4.71 11.82 2.63 1.22 +daurade daurade nom f s 0.30 0.95 0.29 0.74 +daurades daurade nom f p 0.30 0.95 0.01 0.20 +davantage davantage adv_sup 29.56 97.84 29.56 97.84 +davier davier nom m s 0.02 0.20 0.02 0.20 +daya daya nom f s 4.13 0.00 4.13 0.00 +dc dc adj_num 0.58 0.07 0.58 0.07 +de_amicis de_amicis nom m s 0.00 0.07 0.00 0.07 +de_auditu de_auditu adv 0.00 0.07 0.00 0.07 +de_facto de_facto adv 0.16 0.07 0.16 0.07 +de_guingois de_guingois adv 0.01 2.64 0.01 2.64 +de_plano de_plano adv 0.04 0.00 0.04 0.00 +de_profundis de_profundis nom m 0.06 0.41 0.06 0.41 +de_santis de_santis nom m s 0.10 0.00 0.10 0.00 +de_traviole de_traviole adv 0.43 1.28 0.43 1.28 +de_visu de_visu adv 1.02 0.54 1.02 0.54 +de de pre 25220.86 38928.92 25220.86 38928.92 +deadline deadline nom s 0.16 0.00 0.16 0.00 +deal deal nom m s 8.76 0.54 8.05 0.47 +dealaient dealer ver 5.27 1.42 0.01 0.07 ind:imp:3p; +dealais dealer ver 5.27 1.42 0.12 0.00 ind:imp:1s;ind:imp:2s; +dealait dealer ver 5.27 1.42 0.38 0.14 ind:imp:3s; +dealant dealer ver 5.27 1.42 0.06 0.00 par:pre; +deale dealer ver 5.27 1.42 1.14 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dealent dealer ver 5.27 1.42 0.31 0.07 ind:pre:3p; +dealer dealer nom m s 12.65 1.62 8.43 1.08 +dealera dealer ver 5.27 1.42 0.16 0.00 ind:fut:3s; +dealeront dealer ver 5.27 1.42 0.02 0.00 ind:fut:3p; +dealers dealer nom m p 12.65 1.62 4.22 0.54 +deales dealer ver 5.27 1.42 0.38 0.00 ind:pre:2s; +dealez dealer ver 5.27 1.42 0.03 0.00 ind:pre:2p; +deals deal nom m p 8.76 0.54 0.71 0.07 +dealé dealer ver m s 5.27 1.42 0.10 0.00 par:pas; +debater debater nom m s 0.00 0.07 0.00 0.07 +debout debout adv_sup 91.81 158.85 91.81 158.85 +decca decca nom m s 0.26 0.07 0.26 0.07 +deck deck nom m s 0.22 0.00 0.22 0.00 +decrescendo decrescendo nom m s 0.10 0.14 0.10 0.14 +dedans dedans adv_sup 76.55 39.46 76.55 39.46 +degré degré nom m s 21.30 27.97 7.93 16.55 +degrés degré nom m p 21.30 27.97 13.37 11.42 +dehors dehors ono 30.23 0.61 30.23 0.61 +delco delco nom m s 0.27 0.34 0.27 0.34 +delirium_tremens delirium_tremens nom m 0.07 0.27 0.07 0.27 +delirium delirium nom m s 0.09 0.41 0.09 0.41 +della_francesca della_francesca nom m s 0.34 0.20 0.34 0.20 +della_porta della_porta nom m s 0.00 0.07 0.00 0.07 +della_robbia della_robbia nom m s 0.00 0.07 0.00 0.07 +delà delà adv 3.73 12.70 3.73 12.70 +delphinidés delphinidé nom m p 0.01 0.00 0.01 0.00 +delphinium delphinium nom m s 0.04 0.00 0.02 0.00 +delphiniums delphinium nom m p 0.04 0.00 0.02 0.00 +delta_plane delta_plane nom m s 0.03 0.07 0.03 0.07 +delta delta nom m s 6.59 2.09 6.50 1.82 +deltaplane deltaplane nom m s 0.26 0.00 0.26 0.00 +deltas delta nom m p 6.59 2.09 0.09 0.27 +deltoïde deltoïde nom m s 0.16 0.20 0.06 0.00 +deltoïdes deltoïde nom m p 0.16 0.20 0.10 0.20 +demain demain adv_sup 425.85 134.12 425.85 134.12 +demains demain nom_sup m p 50.40 21.55 0.00 0.14 +demanda demander ver 909.77 984.39 3.90 270.74 ind:pas:3s; +demandai demander ver 909.77 984.39 0.60 31.49 ind:pas:1s; +demandaient demander ver 909.77 984.39 1.80 10.00 ind:imp:3p; +demandais demander ver 909.77 984.39 35.69 30.07 ind:imp:1s;ind:imp:2s; +demandait demander ver 909.77 984.39 11.55 77.03 ind:imp:3s; +demandant demander ver 909.77 984.39 5.41 21.76 par:pre; +demande demander ver 909.77 984.39 289.34 208.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +demandent demander ver 909.77 984.39 16.13 10.88 ind:pre:3p;sub:pre:3p; +demander demander ver 909.77 984.39 188.86 144.59 inf;;inf;;inf;;inf;; +demandera demander ver 909.77 984.39 7.56 3.58 ind:fut:3s; +demanderai demander ver 909.77 984.39 11.46 4.05 ind:fut:1s; +demanderaient demander ver 909.77 984.39 0.06 0.74 cnd:pre:3p; +demanderais demander ver 909.77 984.39 5.55 1.55 cnd:pre:1s;cnd:pre:2s; +demanderait demander ver 909.77 984.39 1.48 5.41 cnd:pre:3s; +demanderas demander ver 909.77 984.39 2.73 1.28 ind:fut:2s; +demanderesse demandeur nom f s 0.78 0.34 0.04 0.00 +demanderez demander ver 909.77 984.39 1.48 1.22 ind:fut:2p; +demanderiez demander ver 909.77 984.39 0.87 0.14 cnd:pre:2p; +demanderons demander ver 909.77 984.39 1.06 0.27 ind:fut:1p; +demanderont demander ver 909.77 984.39 1.67 0.61 ind:fut:3p; +demandes demander ver 909.77 984.39 32.92 5.68 ind:pre:2s;sub:pre:2s; +demandeur demandeur nom m s 0.78 0.34 0.20 0.14 +demandeurs demandeur nom m p 0.78 0.34 0.54 0.20 +demandeuse demandeur nom f s 0.78 0.34 0.01 0.00 +demandez demander ver 909.77 984.39 51.74 12.23 imp:pre:2p;ind:pre:2p; +demandiez demander ver 909.77 984.39 2.00 0.88 ind:imp:2p; +demandions demander ver 909.77 984.39 0.79 1.62 ind:imp:1p; +demandâmes demander ver 909.77 984.39 0.00 0.07 ind:pas:1p; +demandons demander ver 909.77 984.39 12.09 2.30 imp:pre:1p;ind:pre:1p; +demandât demander ver 909.77 984.39 0.00 1.76 sub:imp:3s; +demandèrent demander ver 909.77 984.39 0.66 2.70 ind:pas:3p; +demandé demander ver m s 909.77 984.39 212.89 128.92 par:pas;par:pas;par:pas; +demandée demander ver f s 909.77 984.39 6.81 2.70 par:pas; +demandées demander ver f p 909.77 984.39 0.65 0.74 par:pas; +demandés demander ver m p 909.77 984.39 2.02 1.22 par:pas; +demeura demeurer ver 13.18 128.85 0.27 18.65 ind:pas:3s; +demeurai demeurer ver 13.18 128.85 0.02 3.24 ind:pas:1s; +demeuraient demeurer ver 13.18 128.85 0.16 6.49 ind:imp:3p; +demeurais demeurer ver 13.18 128.85 0.00 2.23 ind:imp:1s; +demeurait demeurer ver 13.18 128.85 0.45 24.59 ind:imp:3s; +demeurant demeurer ver 13.18 128.85 0.27 13.85 par:pre; +demeurassent demeurer ver 13.18 128.85 0.00 0.27 sub:imp:3p; +demeure demeure nom f s 13.34 28.11 12.24 20.07 +demeurent demeurer ver 13.18 128.85 1.99 5.34 ind:pre:3p; +demeurer demeurer ver 13.18 128.85 1.86 14.12 inf; +demeurera demeurer ver 13.18 128.85 0.41 1.01 ind:fut:3s; +demeurerai demeurer ver 13.18 128.85 0.09 0.27 ind:fut:1s; +demeureraient demeurer ver 13.18 128.85 0.00 0.34 cnd:pre:3p; +demeurerais demeurer ver 13.18 128.85 0.00 0.20 cnd:pre:1s; +demeurerait demeurer ver 13.18 128.85 0.00 1.49 cnd:pre:3s; +demeureras demeurer ver 13.18 128.85 0.18 0.00 ind:fut:2s; +demeurerez demeurer ver 13.18 128.85 0.06 0.07 ind:fut:2p; +demeurerions demeurer ver 13.18 128.85 0.00 0.07 cnd:pre:1p; +demeurerons demeurer ver 13.18 128.85 0.13 0.07 ind:fut:1p; +demeureront demeurer ver 13.18 128.85 0.03 0.54 ind:fut:3p; +demeures demeure nom f p 13.34 28.11 1.10 8.04 +demeurez demeurer ver 13.18 128.85 1.02 0.47 imp:pre:2p;ind:pre:2p; +demeuriez demeurer ver 13.18 128.85 0.14 0.20 ind:imp:2p; +demeurions demeurer ver 13.18 128.85 0.00 0.68 ind:imp:1p; +demeurâmes demeurer ver 13.18 128.85 0.00 0.47 ind:pas:1p; +demeurons demeurer ver 13.18 128.85 0.12 1.01 imp:pre:1p;ind:pre:1p; +demeurât demeurer ver 13.18 128.85 0.01 1.28 sub:imp:3s; +demeurèrent demeurer ver 13.18 128.85 0.00 4.12 ind:pas:3p; +demeuré demeuré nom m s 2.92 2.23 2.06 1.28 +demeurée demeuré nom f s 2.92 2.23 0.31 0.47 +demeurées demeuré adj f p 0.80 2.36 0.01 0.20 +demeurés demeuré nom m p 2.92 2.23 0.55 0.41 +demi_barbare demi_barbare nom s 0.00 0.07 0.00 0.07 +demi_bas demi_bas nom m 0.01 0.14 0.01 0.14 +demi_bonheur demi_bonheur nom m s 0.00 0.07 0.00 0.07 +demi_botte demi_botte nom f p 0.00 0.14 0.00 0.14 +demi_bouteille demi_bouteille nom f s 0.41 0.47 0.41 0.47 +demi_brigade demi_brigade nom f s 0.00 0.68 0.00 0.61 +demi_brigade demi_brigade nom f p 0.00 0.68 0.00 0.07 +demi_cent demi_cent nom m s 0.01 0.07 0.01 0.07 +demi_centimètre demi_centimètre nom m s 0.02 0.20 0.02 0.20 +demi_centre demi_centre nom m s 0.00 0.07 0.00 0.07 +demi_cercle demi_cercle nom m s 0.12 4.80 0.11 4.46 +demi_cercle demi_cercle nom m p 0.12 4.80 0.01 0.34 +demi_chagrin demi_chagrin nom m s 0.00 0.07 0.00 0.07 +demi_clair demi_clair nom m s 0.00 0.07 0.00 0.07 +demi_clarté demi_clarté nom f s 0.00 0.20 0.00 0.20 +demi_cloison demi_cloison nom f s 0.00 0.20 0.00 0.20 +demi_coma demi_coma nom m s 0.01 0.27 0.01 0.27 +demi_confidence demi_confidence nom f s 0.00 0.07 0.00 0.07 +demi_conscience demi_conscience nom f s 0.00 0.20 0.00 0.20 +demi_cylindre demi_cylindre nom m s 0.00 0.14 0.00 0.14 +demi_degré demi_degré nom m s 0.01 0.00 0.01 0.00 +demi_deuil demi_deuil nom m s 0.00 0.34 0.00 0.34 +demi_dieu demi_dieu nom m s 0.47 0.47 0.47 0.47 +demi_dieux demi_dieux nom m p 0.16 0.47 0.16 0.47 +demi_dose demi_dose nom f s 0.03 0.00 0.03 0.00 +demi_douzaine demi_douzaine nom f s 1.34 6.55 1.34 6.55 +demi_dévêtu demi_dévêtu adj m s 0.00 0.14 0.00 0.07 +demi_dévêtu demi_dévêtu adj f s 0.00 0.14 0.00 0.07 +demi_figure demi_figure nom f s 0.00 0.07 0.00 0.07 +demi_finale demi_finale nom f s 1.13 0.00 0.87 0.00 +demi_finale demi_finale nom f p 1.13 0.00 0.26 0.00 +demi_finaliste demi_finaliste nom s 0.01 0.00 0.01 0.00 +demi_fond demi_fond nom m s 0.21 0.14 0.21 0.14 +demi_fou demi_fou nom m s 0.14 0.14 0.14 0.00 +demi_fou demi_fou nom m p 0.14 0.14 0.00 0.14 +demi_frère demi_frère nom m s 2.70 2.91 2.17 2.91 +demi_frère demi_frère nom m p 2.70 2.91 0.53 0.00 +demi_gros demi_gros nom m 0.01 0.47 0.01 0.47 +demi_heure demi_heure nom f s 26.65 23.18 26.65 22.43 +heur heur nom f p 0.28 1.15 0.22 0.07 +demi_jour demi_jour nom m s 0.02 1.28 0.02 1.28 +demi_journée demi_journée nom f s 1.65 1.08 1.60 1.01 +demi_journée demi_journée nom f p 1.65 1.08 0.05 0.07 +demi_juif demi_juif nom m s 0.01 0.00 0.01 0.00 +demi_kilomètre demi_kilomètre nom m s 0.14 0.14 0.14 0.14 +demi_liberté demi_liberté nom f s 0.00 0.07 0.00 0.07 +demi_lieue demi_lieue nom f s 0.30 0.41 0.30 0.41 +demi_litre demi_litre nom m s 0.67 0.81 0.67 0.81 +demi_livre demi_livre nom f s 0.12 0.34 0.12 0.34 +demi_longueur demi_longueur nom f s 0.06 0.00 0.06 0.00 +demi_louis demi_louis nom m 0.00 0.07 0.00 0.07 +demi_lueur demi_lueur nom f s 0.00 0.07 0.00 0.07 +demi_lumière demi_lumière nom f s 0.00 0.07 0.00 0.07 +demi_lune demi_lune nom f s 1.03 2.36 0.92 2.23 +demi_lune demi_lune nom f p 1.03 2.36 0.11 0.14 +demi_luxe demi_luxe nom m s 0.00 0.07 0.00 0.07 +demi_mal demi_mal nom m s 0.00 0.07 0.00 0.07 +demi_mensonge demi_mensonge nom m s 0.01 0.07 0.01 0.07 +demi_mesure demi_mesure nom f s 0.39 0.54 0.14 0.14 +demi_mesure demi_mesure nom f p 0.39 0.54 0.25 0.41 +demi_mille demi_mille nom m 0.00 0.07 0.00 0.07 +demi_milliard demi_milliard nom m s 0.87 0.07 0.87 0.07 +demi_millimètre demi_millimètre nom m s 0.00 0.07 0.00 0.07 +demi_million demi_million nom m s 3.08 0.41 3.08 0.41 +demi_minute demi_minute nom f s 0.04 0.07 0.04 0.07 +demi_mois demi_mois nom m 0.15 0.00 0.15 0.00 +demi_mondain demi_mondain nom f s 0.00 0.74 0.00 0.27 +demi_mondain demi_mondain nom f p 0.00 0.74 0.00 0.47 +demi_monde demi_monde nom m s 0.01 0.14 0.01 0.14 +demi_mort demi_mort nom m s 0.26 0.27 0.11 0.20 +demi_mort demi_mort nom f s 0.26 0.27 0.04 0.07 +demi_mort demi_mort nom m p 0.26 0.27 0.10 0.00 +demi_mot demi_mot nom m s 0.19 1.49 0.19 1.49 +demi_mètre demi_mètre nom m s 0.00 0.54 0.00 0.54 +demi_muid demi_muid nom m s 0.00 0.07 0.00 0.07 +demi_nu demi_nu adv 0.14 0.00 0.14 0.00 +demi_nuit demi_nuit nom f s 0.02 0.27 0.02 0.27 +demi_obscurité demi_obscurité nom f s 0.00 1.96 0.00 1.96 +demi_ouvert demi_ouvert adj f s 0.00 0.07 0.00 0.07 +demi_ouvrier demi_ouvrier nom m s 0.00 0.07 0.00 0.07 +demi_page demi_page nom f s 0.05 0.41 0.05 0.41 +demi_paralysé demi_paralysé adj m s 0.10 0.00 0.10 0.00 +demi_part demi_part nom f s 0.01 0.00 0.01 0.00 +demi_pas demi_pas nom m 0.21 0.27 0.21 0.27 +demi_pension demi_pension nom f s 0.00 0.41 0.00 0.41 +demi_pensionnaire demi_pensionnaire nom s 0.00 0.41 0.00 0.20 +demi_pensionnaire demi_pensionnaire nom p 0.00 0.41 0.00 0.20 +demi_personne demi_personne adj m s 0.00 0.07 0.00 0.07 +demi_pied demi_pied nom m s 0.00 0.07 0.00 0.07 +demi_pinte demi_pinte nom f s 0.07 0.07 0.07 0.07 +demi_pièce demi_pièce nom f s 0.00 0.07 0.00 0.07 +demi_place demi_place nom f s 0.11 0.00 0.11 0.00 +demi_plein demi_plein adj m s 0.01 0.00 0.01 0.00 +demi_point demi_point nom m s 0.14 0.00 0.14 0.00 +demi_pointe demi_pointe nom f p 0.00 0.07 0.00 0.07 +demi_porte demi_porte nom f s 0.00 0.14 0.00 0.14 +demi_portion demi_portion nom f s 1.23 0.20 1.18 0.00 +demi_portion demi_portion nom f p 1.23 0.20 0.05 0.20 +demi_pouce demi_pouce adj m s 0.01 0.00 0.01 0.00 +demi_quart demi_quart nom m s 0.00 0.07 0.00 0.07 +demi_queue demi_queue nom m s 0.01 0.20 0.01 0.20 +demi_rond demi_rond nom f s 0.00 0.34 0.00 0.34 +demi_réussite demi_réussite nom f s 0.00 0.14 0.00 0.14 +demi_rêve demi_rêve nom m s 0.00 0.20 0.00 0.20 +demi_révérence demi_révérence nom f s 0.00 0.07 0.00 0.07 +demi_saison demi_saison nom f s 0.00 0.95 0.00 0.81 +demi_saison demi_saison nom f p 0.00 0.95 0.00 0.14 +demi_sang demi_sang nom m s 0.04 0.54 0.04 0.47 +demi_sang demi_sang nom m p 0.04 0.54 0.00 0.07 +demi_seconde demi_seconde nom f s 0.13 1.01 0.13 1.01 +demi_section demi_section nom f s 0.00 0.41 0.00 0.41 +demi_sel demi_sel nom m 0.04 0.47 0.03 0.27 +demi_sel demi_sel nom m p 0.04 0.47 0.01 0.20 +demi_siècle demi_siècle nom m s 0.17 5.95 0.17 5.81 +demi_siècle demi_siècle nom m p 0.17 5.95 0.00 0.14 +demi_soeur demi_soeur nom f s 0.50 9.05 0.42 8.92 +demi_soeur demi_soeur nom f p 0.50 9.05 0.07 0.14 +demi_solde demi_solde nom f s 0.01 0.14 0.01 0.07 +demi_solde demi_solde nom f p 0.01 0.14 0.00 0.07 +demi_sommeil demi_sommeil nom m s 0.25 2.50 0.25 2.43 +demi_sommeil demi_sommeil nom m p 0.25 2.50 0.00 0.07 +demi_somnolence demi_somnolence nom f s 0.00 0.14 0.00 0.14 +demi_sourire demi_sourire nom m s 0.00 2.84 0.00 2.77 +demi_sourire demi_sourire nom m p 0.00 2.84 0.00 0.07 +demi_succès demi_succès nom m 0.00 0.20 0.00 0.20 +demi_suicide demi_suicide nom m s 0.00 0.07 0.00 0.07 +demi_talent demi_talent nom m s 0.05 0.00 0.05 0.00 +demi_tarif demi_tarif nom m s 0.56 0.14 0.56 0.14 +demi_tasse demi_tasse nom f s 0.08 0.07 0.08 0.07 +demi_teinte demi_teinte nom f s 0.06 0.95 0.04 0.47 +demi_teinte demi_teinte nom f p 0.06 0.95 0.02 0.47 +demi_ton demi_ton nom m s 0.34 0.61 0.00 0.34 +demi_ton demi_ton nom f s 0.34 0.61 0.21 0.07 +demi_tonneau demi_tonneau nom m s 0.00 0.07 0.00 0.07 +demi_ton demi_ton nom m p 0.34 0.61 0.14 0.20 +demi_tour demi_tour nom m s 19.27 16.08 19.25 15.88 +demi_tour demi_tour nom m p 19.27 16.08 0.02 0.20 +demi_tête demi_tête nom f s 0.11 0.14 0.11 0.14 +demi_échec demi_échec nom m s 0.00 0.07 0.00 0.07 +demi_verre demi_verre nom m s 0.30 1.22 0.30 1.22 +demi_vertu demi_vertu nom f s 0.00 0.07 0.00 0.07 +demi_vie demi_vie nom f s 0.11 0.00 0.08 0.00 +demi_vierge demi_vierge nom f s 0.02 0.20 0.02 0.07 +demi_vierge demi_vierge nom f p 0.02 0.20 0.00 0.14 +demi_vie demi_vie nom f p 0.11 0.00 0.02 0.00 +demi_volte demi_volte nom f s 0.01 0.07 0.01 0.00 +demi_volte demi_volte nom f p 0.01 0.07 0.00 0.07 +demi_volée demi_volée nom f s 0.00 0.07 0.00 0.07 +demi_volume demi_volume nom m s 0.00 0.07 0.00 0.07 +demi_vérité demi_vérité nom f s 0.32 0.07 0.32 0.07 +demi demi adj_sup m s 38.26 43.51 25.18 19.12 +demie demi adj_sup f s 38.26 43.51 12.98 24.05 +demies demie nom f p 0.13 0.00 0.13 0.00 +demis demi nom_sup m p 4.52 9.80 0.19 1.49 +demoiselle damoiseau nom f s 11.41 20.00 11.25 12.64 +demoiselles demoiselle nom f p 4.62 0.00 4.62 0.00 +dendrite dendrite nom f s 0.01 0.00 0.01 0.00 +dengue dengue nom f s 0.02 0.00 0.02 0.00 +denier denier nom m s 1.97 1.62 0.64 0.41 +deniers denier nom m p 1.97 1.62 1.34 1.22 +denim denim nom m s 0.04 0.07 0.04 0.00 +denims denim nom m p 0.04 0.07 0.00 0.07 +denrée denrée nom f s 1.86 4.73 1.23 1.01 +denrées denrée nom f p 1.86 4.73 0.64 3.72 +dense dense adj s 2.04 11.69 1.69 9.86 +denses dense adj p 2.04 11.69 0.35 1.82 +densifia densifier ver 0.02 0.07 0.00 0.07 ind:pas:3s; +densifie densifier ver 0.02 0.07 0.01 0.00 ind:pre:3s; +densifié densifier ver m s 0.02 0.07 0.01 0.00 par:pas; +densimètre densimètre nom m s 0.01 0.00 0.01 0.00 +densité densité nom f s 1.50 5.74 1.47 5.54 +densités densité nom f p 1.50 5.74 0.04 0.20 +dent_de_lion dent_de_lion nom f s 0.03 0.07 0.03 0.07 +dent dent nom f s 74.20 125.68 13.27 11.15 +dentaire dentaire adj s 4.22 1.28 3.50 0.68 +dentaires dentaire adj p 4.22 1.28 0.72 0.61 +dental dental adj m s 0.04 0.47 0.04 0.07 +dentale dental adj f s 0.04 0.47 0.00 0.07 +dentales dental adj f p 0.04 0.47 0.00 0.34 +dentelle dentelle nom f s 3.78 25.07 3.04 17.50 +dentelles dentelle nom f p 3.78 25.07 0.73 7.57 +dentellière dentellière nom f s 0.00 2.36 0.00 2.36 +dentelé denteler ver m s 0.13 0.81 0.07 0.34 par:pas; +dentelée dentelé adj f s 0.23 2.70 0.17 0.68 +dentelées denteler ver f p 0.13 0.81 0.02 0.14 par:pas; +dentelure dentelure nom f s 0.11 0.88 0.11 0.61 +dentelures dentelure nom f p 0.11 0.88 0.00 0.27 +dentelés dentelé adj m p 0.23 2.70 0.01 0.47 +dentier dentier nom m s 1.74 2.77 1.64 2.50 +dentiers dentier nom m p 1.74 2.77 0.10 0.27 +dentifrice dentifrice nom m s 3.87 1.28 3.84 1.15 +dentifrices dentifrice nom m p 3.87 1.28 0.02 0.14 +dentiste dentiste nom s 15.40 5.61 14.57 4.93 +dentisterie dentisterie nom f s 0.16 0.00 0.16 0.00 +dentistes dentiste nom p 15.40 5.61 0.83 0.68 +dentition dentition nom f s 1.08 0.47 1.07 0.41 +dentitions dentition nom f p 1.08 0.47 0.01 0.07 +dents dent nom f p 74.20 125.68 60.94 114.53 +denté denté adj m s 0.04 0.27 0.00 0.07 +dentée denté adj f s 0.04 0.27 0.03 0.07 +dentées denté adj f p 0.04 0.27 0.00 0.14 +denture denture nom f s 0.07 2.16 0.07 1.96 +dentures denture nom f p 0.07 2.16 0.00 0.20 +dentés denté adj m p 0.04 0.27 0.01 0.00 +deo_gratias deo_gratias nom m 0.01 0.20 0.01 0.20 +depuis depuis pre 483.95 542.64 483.95 542.64 +der der nom s 4.70 3.92 4.53 3.58 +derby derby nom m s 0.39 0.20 0.36 0.14 +derbys derby nom m p 0.39 0.20 0.03 0.07 +derche derche nom m s 0.83 3.04 0.72 2.57 +derches derche nom m p 0.83 3.04 0.11 0.47 +derechef derechef adv 0.01 3.24 0.01 3.24 +dermatite dermatite nom f s 0.08 0.00 0.08 0.00 +dermatoglyphes dermatoglyphe nom m p 0.00 0.07 0.00 0.07 +dermatologie dermatologie nom f s 0.23 0.00 0.23 0.00 +dermatologique dermatologique adj s 0.35 0.61 0.32 0.54 +dermatologiques dermatologique adj p 0.35 0.61 0.03 0.07 +dermatologiste dermatologiste nom s 0.07 0.00 0.07 0.00 +dermatologue dermatologue nom s 0.38 0.00 0.38 0.00 +dermatose dermatose nom f s 0.00 0.14 0.00 0.07 +dermatoses dermatose nom f p 0.00 0.14 0.00 0.07 +derme derme nom m s 0.52 0.41 0.52 0.41 +dermeste dermeste nom m s 0.01 0.00 0.01 0.00 +dermique dermique adj m s 0.03 0.07 0.03 0.00 +dermiques dermique adj p 0.03 0.07 0.00 0.07 +dermite dermite nom f s 0.09 0.07 0.09 0.00 +dermites dermite nom f p 0.09 0.07 0.00 0.07 +dermographie dermographie nom f s 0.14 0.07 0.14 0.07 +dernier_né dernier_né nom m s 0.05 1.01 0.05 0.88 +dernier dernier adj m s 431.08 403.11 138.57 146.42 +dernier_né dernier_né nom m p 0.05 1.01 0.00 0.14 +derniers dernier adj m p 431.08 403.11 41.81 63.38 +dernière_née dernière_née nom f s 0.01 0.20 0.01 0.20 +dernière dernier adj f s 431.08 403.11 224.41 145.27 +dernièrement dernièrement adv 11.24 1.35 11.24 1.35 +dernières dernier adj f p 431.08 403.11 26.30 48.04 +derrick derrick nom m s 2.04 0.27 1.98 0.07 +derricks derrick nom m p 2.04 0.27 0.06 0.20 +derrière derrière pre 105.10 349.39 105.10 349.39 +derrières derrière nom m p 9.95 15.47 0.86 1.22 +ders der nom p 4.70 3.92 0.17 0.34 +derviche derviche nom m s 0.11 1.76 0.08 1.35 +derviches derviche nom m p 0.11 1.76 0.03 0.41 +des des art_ind p 6055.71 10624.93 6055.71 10624.93 +descamisados descamisado nom m p 0.00 0.07 0.00 0.07 +descella desceller ver 0.07 1.55 0.00 0.07 ind:pas:3s; +descellant desceller ver 0.07 1.55 0.00 0.07 par:pre; +desceller desceller ver 0.07 1.55 0.01 0.41 inf; +descellera desceller ver 0.07 1.55 0.02 0.00 ind:fut:3s; +descellez desceller ver 0.07 1.55 0.00 0.07 ind:pre:2p; +descellé desceller ver m s 0.07 1.55 0.02 0.47 par:pas; +descellée desceller ver f s 0.07 1.55 0.02 0.14 par:pas; +descellées desceller ver f p 0.07 1.55 0.00 0.14 par:pas; +descellés desceller ver m p 0.07 1.55 0.00 0.20 par:pas; +descend descendre ver 235.97 301.62 26.09 32.64 ind:pre:3s; +descendîmes descendre ver 235.97 301.62 0.13 2.09 ind:pas:1p; +descendît descendre ver 235.97 301.62 0.00 0.34 sub:imp:3s; +descendaient descendre ver 235.97 301.62 0.67 10.41 ind:imp:3p; +descendais descendre ver 235.97 301.62 0.97 3.45 ind:imp:1s;ind:imp:2s; +descendait descendre ver 235.97 301.62 2.43 33.45 ind:imp:3s; +descendance descendance nom f s 1.31 1.96 1.30 1.89 +descendances descendance nom f p 1.31 1.96 0.01 0.07 +descendant descendre ver 235.97 301.62 3.73 16.76 par:pre; +descendante descendant nom f s 3.45 5.00 0.25 0.34 +descendantes descendant nom f p 3.45 5.00 0.04 0.00 +descendants descendant nom m p 3.45 5.00 2.38 2.97 +descende descendre ver 235.97 301.62 3.55 2.50 sub:pre:1s;sub:pre:3s; +descendent descendre ver 235.97 301.62 4.27 10.41 ind:pre:3p;sub:pre:3p; +descendes descendre ver 235.97 301.62 1.13 0.14 sub:pre:2s; +descendeur descendeur nom m s 0.04 0.07 0.04 0.00 +descendeurs descendeur nom m p 0.04 0.07 0.00 0.07 +descendez descendre ver 235.97 301.62 25.89 1.96 imp:pre:2p;ind:pre:2p; +descendiez descendre ver 235.97 301.62 0.53 0.14 ind:imp:2p; +descendions descendre ver 235.97 301.62 0.38 2.70 ind:imp:1p; +descendirent descendre ver 235.97 301.62 0.04 10.00 ind:pas:3p; +descendis descendre ver 235.97 301.62 0.05 4.93 ind:pas:1s; +descendit descendre ver 235.97 301.62 0.61 33.99 ind:pas:3s; +descendons descendre ver 235.97 301.62 4.30 3.31 imp:pre:1p;ind:pre:1p; +descendra descendre ver 235.97 301.62 3.44 1.82 ind:fut:3s; +descendrai descendre ver 235.97 301.62 1.82 1.42 ind:fut:1s; +descendraient descendre ver 235.97 301.62 0.05 0.41 cnd:pre:3p; +descendrais descendre ver 235.97 301.62 0.46 0.41 cnd:pre:1s;cnd:pre:2s; +descendrait descendre ver 235.97 301.62 0.78 1.35 cnd:pre:3s; +descendras descendre ver 235.97 301.62 0.44 0.20 ind:fut:2s; +descendre descendre ver 235.97 301.62 65.28 70.41 inf; +descendrez descendre ver 235.97 301.62 0.53 0.14 ind:fut:2p; +descendriez descendre ver 235.97 301.62 0.03 0.00 cnd:pre:2p; +descendrions descendre ver 235.97 301.62 0.00 0.20 cnd:pre:1p; +descendrons descendre ver 235.97 301.62 0.69 0.54 ind:fut:1p; +descendront descendre ver 235.97 301.62 0.81 0.20 ind:fut:3p; +descends descendre ver 235.97 301.62 62.31 12.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +descendu descendre ver m s 235.97 301.62 18.05 26.01 par:pas; +descendue descendre ver f s 235.97 301.62 3.66 7.97 par:pas; +descendues descendre ver f p 235.97 301.62 0.16 1.15 par:pas; +descendus descendre ver m p 235.97 301.62 2.71 8.04 par:pas; +descenseur descenseur nom m s 0.01 0.00 0.01 0.00 +descente descente nom f s 11.59 23.24 10.48 20.81 +descentes descente nom f p 11.59 23.24 1.10 2.43 +descriptible descriptible adj m s 0.00 0.27 0.00 0.07 +descriptibles descriptible adj f p 0.00 0.27 0.00 0.20 +descriptif descriptif nom m s 0.14 0.41 0.12 0.20 +descriptifs descriptif nom m p 0.14 0.41 0.02 0.20 +description description nom f s 7.80 11.49 7.08 8.04 +descriptions description nom f p 7.80 11.49 0.73 3.45 +descriptive descriptif adj f s 0.17 0.41 0.04 0.14 +descriptives descriptif adj f p 0.17 0.41 0.01 0.07 +desdites desdites pre 0.00 0.07 0.00 0.07 +desdits desdits pre 0.00 0.20 0.00 0.20 +desiderata desiderata nom m 0.04 0.27 0.04 0.27 +design design nom m s 1.54 0.88 1.47 0.88 +designer designer nom s 0.57 0.00 0.51 0.00 +designers designer nom p 0.57 0.00 0.07 0.00 +designs design nom m p 1.54 0.88 0.08 0.00 +desk desk nom m s 0.11 0.14 0.11 0.14 +desperado desperado nom m s 0.27 0.47 0.21 0.20 +desperados desperado nom m p 0.27 0.47 0.06 0.27 +despote despote nom s 1.01 0.74 0.85 0.61 +despotes despote nom p 1.01 0.74 0.16 0.14 +despotique despotique adj s 0.16 0.54 0.16 0.41 +despotiques despotique adj m p 0.16 0.54 0.00 0.14 +despotisme despotisme nom m s 0.45 0.81 0.45 0.81 +desquamante desquamant adj f s 0.00 0.07 0.00 0.07 +desquamation desquamation nom f s 0.01 0.07 0.01 0.07 +desquame desquamer ver 0.01 0.00 0.01 0.00 ind:pre:3s; +desquelles desquelles pro_rel f p 0.81 9.39 0.81 7.64 +desquels desquels pro_rel m p 0.78 10.14 0.64 7.97 +dessaisi dessaisir ver m s 0.25 0.61 0.07 0.07 par:pas; +dessaisir dessaisir ver 0.25 0.61 0.16 0.27 inf; +dessaisis dessaisir ver m p 0.25 0.61 0.01 0.07 ind:pre:1s;par:pas; +dessaisissais dessaisir ver 0.25 0.61 0.00 0.07 ind:imp:1s; +dessaisissement dessaisissement nom m s 0.00 0.07 0.00 0.07 +dessaisissent dessaisir ver 0.25 0.61 0.00 0.07 ind:pre:3p; +dessaisit dessaisir ver 0.25 0.61 0.01 0.07 ind:pre:3s;ind:pas:3s; +dessalaient dessaler ver 0.16 0.34 0.00 0.07 ind:imp:3p; +dessalait dessaler ver 0.16 0.34 0.00 0.07 ind:imp:3s; +dessalant dessaler ver 0.16 0.34 0.00 0.07 par:pre; +dessale dessaler ver 0.16 0.34 0.00 0.07 ind:pre:3s; +dessaler dessaler ver 0.16 0.34 0.16 0.00 inf; +dessalé dessalé adj m s 0.00 0.47 0.00 0.14 +dessalée dessalé adj f s 0.00 0.47 0.00 0.14 +dessalées dessalé adj f p 0.00 0.47 0.00 0.14 +dessalés dessalé adj m p 0.00 0.47 0.00 0.07 +dessaoulais dessaouler ver 0.39 1.15 0.01 0.00 ind:imp:1s; +dessaoule dessaouler ver 0.39 1.15 0.13 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessaoulent dessaouler ver 0.39 1.15 0.00 0.07 ind:pre:3p; +dessaouler dessaouler ver 0.39 1.15 0.08 0.14 inf; +dessaoulé dessaouler ver m s 0.39 1.15 0.07 0.41 par:pas; +dessaoulée dessaouler ver f s 0.39 1.15 0.10 0.07 par:pas; +dessaoulés dessaouler ver m p 0.39 1.15 0.00 0.07 par:pas; +dessape dessaper ver 0.00 0.14 0.00 0.07 ind:pre:3s; +dessaper dessaper ver 0.00 0.14 0.00 0.07 inf; +dessein dessein nom m s 7.29 14.86 5.32 10.20 +desseins dessein nom m p 7.29 14.86 1.97 4.66 +desselle desseller ver 0.12 0.61 0.02 0.07 imp:pre:2s;ind:pre:3s; +desseller desseller ver 0.12 0.61 0.03 0.41 inf; +dessellez desseller ver 0.12 0.61 0.05 0.00 imp:pre:2p; +dessellé desseller ver m s 0.12 0.61 0.01 0.00 par:pas; +dessellées desseller ver f p 0.12 0.61 0.00 0.07 par:pas; +dessellés desseller ver m p 0.12 0.61 0.01 0.07 par:pas; +desserra desserrer ver 2.54 10.88 0.01 1.76 ind:pas:3s; +desserrage desserrage nom m s 0.01 0.07 0.01 0.07 +desserrai desserrer ver 2.54 10.88 0.00 0.27 ind:pas:1s; +desserraient desserrer ver 2.54 10.88 0.00 0.20 ind:imp:3p; +desserrais desserrer ver 2.54 10.88 0.01 0.07 ind:imp:1s;ind:imp:2s; +desserrait desserrer ver 2.54 10.88 0.01 0.81 ind:imp:3s; +desserrant desserrer ver 2.54 10.88 0.00 0.47 par:pre; +desserre desserrer ver 2.54 10.88 0.83 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +desserrent desserrer ver 2.54 10.88 0.03 0.20 ind:pre:3p; +desserrer desserrer ver 2.54 10.88 0.38 3.58 inf; +desserrera desserrer ver 2.54 10.88 0.01 0.07 ind:fut:3s; +desserreraient desserrer ver 2.54 10.88 0.00 0.07 cnd:pre:3p; +desserrerait desserrer ver 2.54 10.88 0.00 0.07 cnd:pre:3s; +desserrez desserrer ver 2.54 10.88 0.72 0.07 imp:pre:2p;ind:pre:2p; +desserrons desserrer ver 2.54 10.88 0.03 0.00 imp:pre:1p; +desserrât desserrer ver 2.54 10.88 0.00 0.07 sub:imp:3s; +desserrèrent desserrer ver 2.54 10.88 0.00 0.14 ind:pas:3p; +desserré desserrer ver m s 2.54 10.88 0.32 1.69 par:pas; +desserrée desserrer ver f s 2.54 10.88 0.07 0.27 par:pas; +desserrées desserrer ver f p 2.54 10.88 0.01 0.20 par:pas; +desserrés desserrer ver m p 2.54 10.88 0.10 0.14 par:pas; +dessers desservir ver 1.16 5.14 0.00 0.07 ind:pre:2s; +dessert dessert nom m s 13.40 12.57 11.61 11.62 +desserte desserte nom f s 0.09 1.76 0.07 1.49 +dessertes desserte nom f p 0.09 1.76 0.01 0.27 +dessertie dessertir ver f s 0.01 0.14 0.01 0.07 par:pas; +dessertir dessertir ver 0.01 0.14 0.00 0.07 inf; +desserts dessert nom m p 13.40 12.57 1.79 0.95 +desservaient desservir ver 1.16 5.14 0.01 0.34 ind:imp:3p; +desservait desservir ver 1.16 5.14 0.02 0.88 ind:imp:3s; +desservant desservir ver 1.16 5.14 0.14 0.61 par:pre; +desserve desservir ver 1.16 5.14 0.02 0.07 sub:pre:3s; +desservent desservir ver 1.16 5.14 0.16 0.34 ind:pre:3p; +desservi desservir ver m s 1.16 5.14 0.16 0.61 par:pas; +desservie desservir ver f s 1.16 5.14 0.12 0.41 par:pas; +desservies desservir ver f p 1.16 5.14 0.14 0.07 par:pas; +desservir desservir ver 1.16 5.14 0.07 1.08 inf; +desservira desservir ver 1.16 5.14 0.02 0.00 ind:fut:3s; +desservirait desservir ver 1.16 5.14 0.02 0.07 cnd:pre:3s; +desserviront desservir ver 1.16 5.14 0.00 0.07 ind:fut:3p; +desservis desservir ver m p 1.16 5.14 0.03 0.07 par:pas; +desservit desservir ver 1.16 5.14 0.00 0.07 ind:pas:3s; +dessiccation dessiccation nom f s 0.03 0.07 0.03 0.07 +dessille dessiller ver 0.29 0.81 0.00 0.07 ind:pre:3s; +dessiller dessiller ver 0.29 0.81 0.00 0.34 inf; +dessilleront dessiller ver 0.29 0.81 0.00 0.07 ind:fut:3p; +dessillé dessiller ver m s 0.29 0.81 0.29 0.07 par:pas; +dessillés dessiller ver m p 0.29 0.81 0.00 0.27 par:pas; +dessin dessin nom m s 29.60 56.28 17.92 34.86 +dessina dessiner ver 29.97 79.66 0.29 3.45 ind:pas:3s; +dessinai dessiner ver 29.97 79.66 0.00 0.68 ind:pas:1s; +dessinaient dessiner ver 29.97 79.66 0.14 5.20 ind:imp:3p; +dessinais dessiner ver 29.97 79.66 0.89 0.88 ind:imp:1s;ind:imp:2s; +dessinait dessiner ver 29.97 79.66 0.85 10.88 ind:imp:3s; +dessinant dessiner ver 29.97 79.66 0.29 4.73 par:pre; +dessinateur dessinateur nom m s 1.86 7.30 1.08 5.27 +dessinateurs dessinateur nom m p 1.86 7.30 0.46 1.76 +dessinatrice dessinateur nom f s 1.86 7.30 0.31 0.27 +dessine dessiner ver 29.97 79.66 6.05 10.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessinent dessiner ver 29.97 79.66 0.44 3.85 ind:pre:3p; +dessiner dessiner ver 29.97 79.66 9.10 12.97 inf; +dessinera dessiner ver 29.97 79.66 0.12 0.00 ind:fut:3s; +dessinerai dessiner ver 29.97 79.66 0.32 0.14 ind:fut:1s; +dessineraient dessiner ver 29.97 79.66 0.00 0.07 cnd:pre:3p; +dessinerais dessiner ver 29.97 79.66 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +dessinerait dessiner ver 29.97 79.66 0.16 0.07 cnd:pre:3s; +dessinerez dessiner ver 29.97 79.66 0.00 0.07 ind:fut:2p; +dessineront dessiner ver 29.97 79.66 0.03 0.07 ind:fut:3p; +dessines dessiner ver 29.97 79.66 1.39 0.07 ind:pre:2s; +dessinez dessiner ver 29.97 79.66 0.99 0.27 imp:pre:2p;ind:pre:2p; +dessiniez dessiner ver 29.97 79.66 0.26 0.00 ind:imp:2p; +dessinions dessiner ver 29.97 79.66 0.02 0.07 ind:imp:1p; +dessinât dessiner ver 29.97 79.66 0.00 0.20 sub:imp:3s; +dessins dessin nom m p 29.60 56.28 11.68 21.42 +dessinèrent dessiner ver 29.97 79.66 0.01 0.41 ind:pas:3p; +dessiné dessiner ver m s 29.97 79.66 5.05 8.99 par:pas; +dessinée dessiner ver f s 29.97 79.66 1.33 7.70 par:pas; +dessinées dessiner ver f p 29.97 79.66 1.85 5.27 par:pas; +dessinés dessiner ver m p 29.97 79.66 0.33 2.84 par:pas; +dessoûla dessoûler ver 1.69 0.81 0.00 0.07 ind:pas:3s; +dessoûlait dessoûler ver 1.69 0.81 0.00 0.14 ind:imp:3s; +dessoûle dessoûler ver 1.69 0.81 0.63 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessoûlent dessoûler ver 1.69 0.81 0.05 0.00 ind:pre:3p; +dessoûler dessoûler ver 1.69 0.81 0.37 0.14 inf; +dessoûles dessoûler ver 1.69 0.81 0.01 0.00 ind:pre:2s; +dessoûlez dessoûler ver 1.69 0.81 0.04 0.00 imp:pre:2p;ind:pre:2p; +dessoûlé dessoûler ver m s 1.69 0.81 0.58 0.14 par:pas; +dessoûlée dessoûler ver f s 1.69 0.81 0.01 0.14 par:pas; +dessoucha dessoucher ver 0.00 0.14 0.00 0.07 ind:pas:3s; +dessouchée dessoucher ver f s 0.00 0.14 0.00 0.07 par:pas; +dessouda dessouder ver 0.63 0.54 0.00 0.07 ind:pas:3s; +dessouder dessouder ver 0.63 0.54 0.45 0.14 inf; +dessoudé dessouder ver m s 0.63 0.54 0.18 0.20 par:pas; +dessoudée dessouder ver f s 0.63 0.54 0.00 0.07 par:pas; +dessoudées dessouder ver f p 0.63 0.54 0.00 0.07 par:pas; +dessoulait dessouler ver 0.04 0.20 0.00 0.07 ind:imp:3s; +dessouler dessouler ver 0.04 0.20 0.01 0.00 inf; +dessoulé dessouler ver m s 0.04 0.20 0.04 0.14 par:pas; +dessous_de_bras dessous_de_bras nom m 0.01 0.07 0.01 0.07 +dessous_de_plat dessous_de_plat nom m 0.20 0.54 0.20 0.54 +dessous_de_table dessous_de_table nom m 0.21 0.00 0.21 0.00 +dessous_de_verre dessous_de_verre nom m 0.01 0.00 0.01 0.00 +dessous dessous nom_sup m 18.14 29.46 18.14 29.46 +dessèche dessécher ver 3.54 15.61 0.85 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +dessèchement dessèchement nom m s 0.02 0.07 0.02 0.07 +dessèchent dessécher ver 3.54 15.61 0.14 0.34 ind:pre:3p; +dessécha dessécher ver 3.54 15.61 0.02 0.00 ind:pas:3s; +desséchaient dessécher ver 3.54 15.61 0.02 0.47 ind:imp:3p; +desséchais dessécher ver 3.54 15.61 0.00 0.07 ind:imp:1s; +desséchait dessécher ver 3.54 15.61 0.01 1.42 ind:imp:3s; +desséchant dessécher ver 3.54 15.61 0.14 0.20 par:pre; +desséchante desséchant adj f s 0.01 0.20 0.00 0.14 +dessécher dessécher ver 3.54 15.61 0.25 0.88 inf; +dessécherait dessécher ver 3.54 15.61 0.01 0.07 cnd:pre:3s; +dessécheront dessécher ver 3.54 15.61 0.01 0.07 ind:fut:3p; +desséchez dessécher ver 3.54 15.61 0.01 0.00 ind:pre:2p; +desséchèrent dessécher ver 3.54 15.61 0.00 0.07 ind:pas:3p; +desséché dessécher ver m s 3.54 15.61 0.49 3.72 par:pas; +desséchée dessécher ver f s 3.54 15.61 0.80 4.32 par:pas; +desséchées dessécher ver f p 3.54 15.61 0.24 1.28 par:pas; +desséchés dessécher ver m p 3.54 15.61 0.56 1.96 par:pas; +dessuintée dessuinter ver f s 0.00 0.07 0.00 0.07 par:pas; +dessus_de_lit dessus_de_lit nom m 0.09 1.08 0.09 1.08 +dessus dessus adv_sup 111.19 57.57 111.19 57.57 +destin destin nom m s 53.03 67.23 51.93 62.77 +destina destiner ver 12.52 35.00 0.00 0.07 ind:pas:3s; +destinaient destiner ver 12.52 35.00 0.00 0.34 ind:imp:3p; +destinais destiner ver 12.52 35.00 0.09 0.27 ind:imp:1s;ind:imp:2s; +destinait destiner ver 12.52 35.00 0.21 1.76 ind:imp:3s; +destinant destiner ver 12.52 35.00 0.00 0.07 par:pre; +destinataire destinataire nom s 0.71 2.23 0.67 1.82 +destinataires destinataire nom p 0.71 2.23 0.04 0.41 +destination destination nom f s 10.88 10.14 10.41 9.59 +destinations destination nom f p 10.88 10.14 0.46 0.54 +destinatrice destinateur nom f s 0.00 0.14 0.00 0.14 +destine destiner ver 12.52 35.00 0.37 1.28 ind:pre:1s;ind:pre:3s; +destinent destiner ver 12.52 35.00 0.01 0.14 ind:pre:3p; +destiner destiner ver 12.52 35.00 0.00 0.07 inf; +destines destiner ver 12.52 35.00 0.20 0.00 ind:pre:2s; +destinez destiner ver 12.52 35.00 0.16 0.20 ind:pre:2p; +destiniez destiner ver 12.52 35.00 0.01 0.00 ind:imp:2p; +destins destin nom m p 53.03 67.23 1.10 4.46 +destiné destiner ver m s 12.52 35.00 5.09 11.35 par:pas; +destinée destinée nom f s 9.08 11.22 8.64 8.31 +destinées destiner ver f p 12.52 35.00 1.08 3.85 par:pas; +destinés destiner ver m p 12.52 35.00 2.11 6.69 par:pas; +destitue destituer ver 0.56 0.74 0.01 0.07 ind:pre:3s; +destituer destituer ver 0.56 0.74 0.17 0.14 inf; +destitueront destituer ver 0.56 0.74 0.00 0.07 ind:fut:3p; +destituez destituer ver 0.56 0.74 0.01 0.07 imp:pre:2p; +destitution destitution nom f s 0.17 0.34 0.17 0.34 +destitué destituer ver m s 0.56 0.74 0.36 0.41 par:pas; +destituée destituer ver f s 0.56 0.74 0.01 0.00 par:pas; +destrier destrier nom m s 0.38 0.74 0.25 0.34 +destriers destrier nom m p 0.38 0.74 0.14 0.41 +destroy destroy adj s 0.25 0.14 0.25 0.14 +destroyer destroyer nom m s 2.82 0.88 1.84 0.41 +destroyers destroyer nom m p 2.82 0.88 0.98 0.47 +destructeur destructeur adj m s 2.84 2.77 1.10 0.95 +destructeurs destructeur adj m p 2.84 2.77 0.28 0.27 +destructible destructible adj m s 0.03 0.00 0.03 0.00 +destructif destructif adj m s 0.35 0.14 0.05 0.14 +destructifs destructif adj m p 0.35 0.14 0.01 0.00 +destruction destruction nom f s 14.31 15.34 13.96 11.76 +destructions destruction nom f p 14.31 15.34 0.35 3.58 +destructive destructif adj f s 0.35 0.14 0.29 0.00 +destructrice destructeur adj f s 2.84 2.77 0.97 1.15 +destructrices destructeur adj f p 2.84 2.77 0.49 0.41 +deçà deçà adv 0.27 2.97 0.27 2.97 +dette dette nom f s 26.13 12.16 12.77 5.14 +dettes dette nom f p 26.13 12.16 13.36 7.03 +deuche deuche nom f s 0.00 0.07 0.00 0.07 +deuil deuil nom m s 12.24 26.22 12.21 23.51 +deuils deuil nom m p 12.24 26.22 0.03 2.70 +deus_ex_machina deus_ex_machina nom m 0.16 0.47 0.16 0.47 +deusio deusio adv 0.20 0.00 0.20 0.00 +deutsche_mark deutsche_mark adj m s 0.02 0.00 0.02 0.00 +deutérium deutérium nom m s 0.07 0.00 0.07 0.00 +deutéronome deutéronome nom m s 0.23 0.20 0.23 0.20 +deux_chevaux deux_chevaux nom f 0.00 1.22 0.00 1.22 +deux_deux deux_deux nom m 0.02 0.00 0.02 0.00 +deux_mâts deux_mâts nom m 0.14 0.07 0.14 0.07 +deux_pièces deux_pièces nom m 0.27 1.82 0.27 1.82 +deux_points deux_points nom m 0.01 0.00 0.01 0.00 +deux_ponts deux_ponts nom m 0.00 0.07 0.00 0.07 +deux_quatre deux_quatre nom m 0.03 0.00 0.03 0.00 +deux_roues deux_roues nom m 0.11 0.00 0.11 0.00 +deux deux adj_num 1009.01 1557.91 1009.01 1557.91 +deuxième deuxième adj 43.97 59.05 43.77 58.58 +deuxièmement deuxièmement adv 4.58 0.88 4.58 0.88 +deuxièmes deuxième adj 43.97 59.05 0.20 0.47 +deuzio deuzio adv 0.89 0.20 0.89 0.20 +devînmes devenir ver 438.57 533.51 0.04 0.27 ind:pas:1p; +devînt devenir ver 438.57 533.51 0.29 2.09 sub:imp:3s; +devaient devoir ver_sup 3232.80 1318.24 13.59 61.22 ind:imp:3p; +devais devoir ver_sup 3232.80 1318.24 81.01 53.38 ind:imp:1s;ind:imp:2s; +devait devoir ver_sup 3232.80 1318.24 108.88 298.99 ind:imp:3s; +devance devancer ver 3.94 8.04 0.89 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +devancent devancer ver 3.94 8.04 0.06 0.20 ind:pre:3p; +devancer devancer ver 3.94 8.04 0.99 2.03 inf; +devancerait devancer ver 3.94 8.04 0.01 0.00 cnd:pre:3s; +devancerez devancer ver 3.94 8.04 0.01 0.00 ind:fut:2p; +devancez devancer ver 3.94 8.04 0.07 0.00 imp:pre:2p;ind:pre:2p; +devanciers devancier nom m p 0.00 0.07 0.00 0.07 +devancèrent devancer ver 3.94 8.04 0.00 0.07 ind:pas:3p; +devancé devancer ver m s 3.94 8.04 0.98 1.15 par:pas; +devancée devancer ver f s 3.94 8.04 0.31 0.27 par:pas; +devancés devancer ver m p 3.94 8.04 0.54 0.14 par:pas; +devant devant pre 208.19 690.34 208.19 690.34 +devança devancer ver 3.94 8.04 0.02 0.61 ind:pas:3s; +devançaient devancer ver 3.94 8.04 0.00 0.34 ind:imp:3p; +devançais devancer ver 3.94 8.04 0.00 0.07 ind:imp:1s; +devançait devancer ver 3.94 8.04 0.03 0.68 ind:imp:3s; +devançant devancer ver 3.94 8.04 0.01 1.55 par:pre; +devançons devancer ver 3.94 8.04 0.03 0.00 imp:pre:1p; +devants devant nom_sup m p 4.20 11.08 0.75 2.36 +devanture devanture nom f s 0.48 7.64 0.46 5.07 +devantures devanture nom f p 0.48 7.64 0.03 2.57 +devenaient devenir ver 438.57 533.51 1.76 19.39 ind:imp:3p; +devenais devenir ver 438.57 533.51 2.82 6.15 ind:imp:1s;ind:imp:2s; +devenait devenir ver 438.57 533.51 7.41 77.16 ind:imp:3s; +devenant devenir ver 438.57 533.51 1.23 5.27 par:pre; +devenez devenir ver 438.57 533.51 3.69 1.28 imp:pre:2p;ind:pre:2p; +deveniez devenir ver 438.57 533.51 0.71 0.14 ind:imp:2p; +devenions devenir ver 438.57 533.51 0.20 0.95 ind:imp:1p; +devenir devenir ver 438.57 533.51 108.83 85.27 inf; +devenons devenir ver 438.57 533.51 1.23 0.74 imp:pre:1p;ind:pre:1p; +devenu devenir ver m s 438.57 533.51 92.42 95.68 par:pas; +devenue devenir ver f s 438.57 533.51 32.70 52.03 par:pas; +devenues devenir ver f p 438.57 533.51 3.57 8.99 par:pas; +devenus devenir ver m p 438.57 533.51 17.16 23.45 par:pas; +devers devers pre 0.06 2.57 0.06 2.57 +devez devoir ver_sup 3232.80 1318.24 150.16 16.15 imp:pre:2p;ind:pre:2p; +deviendra devenir ver 438.57 533.51 9.28 4.12 ind:fut:3s; +deviendrai devenir ver 438.57 533.51 3.13 1.49 ind:fut:1s; +deviendraient devenir ver 438.57 533.51 0.22 1.55 cnd:pre:3p; +deviendrais devenir ver 438.57 533.51 3.05 1.96 cnd:pre:1s;cnd:pre:2s; +deviendrait devenir ver 438.57 533.51 3.16 8.58 cnd:pre:3s; +deviendras devenir ver 438.57 533.51 3.71 0.95 ind:fut:2s; +deviendrez devenir ver 438.57 533.51 1.45 0.27 ind:fut:2p; +deviendriez devenir ver 438.57 533.51 0.22 0.20 cnd:pre:2p; +deviendrions devenir ver 438.57 533.51 0.08 0.14 cnd:pre:1p; +deviendrons devenir ver 438.57 533.51 0.86 0.20 ind:fut:1p; +deviendront devenir ver 438.57 533.51 2.15 1.35 ind:fut:3p; +devienne devenir ver 438.57 533.51 10.24 7.36 sub:pre:1s;sub:pre:3s; +deviennent devenir ver 438.57 533.51 14.29 16.22 ind:pre:3p; +deviennes devenir ver 438.57 533.51 1.94 0.61 sub:pre:2s; +deviens devenir ver 438.57 533.51 32.11 8.99 imp:pre:2s;ind:pre:1s;ind:pre:2s; +devient devenir ver 438.57 533.51 69.59 59.46 ind:pre:3s; +deviez devoir ver_sup 3232.80 1318.24 13.48 1.69 ind:imp:2p;sub:pre:2p; +devin devin nom m s 1.82 1.08 1.61 0.68 +devina deviner ver 72.77 112.30 0.02 5.14 ind:pas:3s; +devinai deviner ver 72.77 112.30 0.14 2.91 ind:pas:1s; +devinaient deviner ver 72.77 112.30 0.00 1.49 ind:imp:3p; +devinais deviner ver 72.77 112.30 0.21 7.30 ind:imp:1s;ind:imp:2s; +devinait deviner ver 72.77 112.30 0.07 18.85 ind:imp:3s; +devinant deviner ver 72.77 112.30 0.05 1.89 par:pre; +devine deviner ver 72.77 112.30 27.12 21.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +devinent deviner ver 72.77 112.30 0.14 1.28 ind:pre:3p; +deviner deviner ver 72.77 112.30 17.60 25.95 inf; +devinera deviner ver 72.77 112.30 0.22 0.20 ind:fut:3s; +devinerai deviner ver 72.77 112.30 0.07 0.14 ind:fut:1s; +devineraient deviner ver 72.77 112.30 0.02 0.00 cnd:pre:3p; +devinerais deviner ver 72.77 112.30 0.08 0.34 cnd:pre:1s;cnd:pre:2s; +devinerait deviner ver 72.77 112.30 0.06 0.41 cnd:pre:3s; +devineras deviner ver 72.77 112.30 1.50 0.00 ind:fut:2s; +devineresse devineur nom f s 0.15 0.20 0.14 0.14 +devineresses devineur nom f p 0.15 0.20 0.00 0.07 +devinerez deviner ver 72.77 112.30 0.90 0.27 ind:fut:2p; +devineriez deviner ver 72.77 112.30 0.22 0.07 cnd:pre:2p; +devineront deviner ver 72.77 112.30 0.03 0.07 ind:fut:3p; +devines deviner ver 72.77 112.30 2.10 1.01 ind:pre:2s;sub:pre:2s; +devinette devinette nom f s 2.97 2.70 1.48 1.42 +devinettes devinette nom f p 2.97 2.70 1.49 1.28 +devineur devineur nom m s 0.15 0.20 0.01 0.00 +devinez deviner ver 72.77 112.30 10.15 2.91 imp:pre:2p;ind:pre:2p; +devinions deviner ver 72.77 112.30 0.00 0.95 ind:imp:1p; +devinâmes deviner ver 72.77 112.30 0.00 0.14 ind:pas:1p; +devinons deviner ver 72.77 112.30 0.09 0.14 imp:pre:1p;ind:pre:1p; +devinât deviner ver 72.77 112.30 0.00 0.47 sub:imp:3s; +devinrent devenir ver 438.57 533.51 1.40 5.61 ind:pas:3p; +devins devenir ver 438.57 533.51 0.69 1.89 ind:pas:1s; +devinsse devenir ver 438.57 533.51 0.00 0.14 sub:imp:1s; +devinssent devenir ver 438.57 533.51 0.00 0.27 sub:imp:3p; +devinssiez devenir ver 438.57 533.51 0.01 0.00 sub:imp:2p; +devint devenir ver 438.57 533.51 6.96 33.31 ind:pas:3s; +devinèrent deviner ver 72.77 112.30 0.00 0.14 ind:pas:3p; +deviné deviner ver m s 72.77 112.30 11.95 16.96 par:pas; +devinée deviner ver f s 72.77 112.30 0.02 1.49 par:pas; +devinées deviner ver f p 72.77 112.30 0.00 0.34 par:pas; +devinés deviner ver m p 72.77 112.30 0.01 0.20 par:pas; +devions devoir ver_sup 3232.80 1318.24 6.25 9.46 ind:imp:1p; +devis devis nom m 0.94 1.62 0.94 1.62 +devisaient deviser ver 0.25 3.58 0.01 0.68 ind:imp:3p; +devisais deviser ver 0.25 3.58 0.00 0.07 ind:imp:1s; +devisait deviser ver 0.25 3.58 0.00 0.54 ind:imp:3s; +devisant deviser ver 0.25 3.58 0.00 1.28 par:pre; +devise devise nom f s 5.54 7.77 4.75 6.22 +devisent deviser ver 0.25 3.58 0.01 0.20 ind:pre:3p; +deviser deviser ver 0.25 3.58 0.03 0.47 inf; +devises devise nom f p 5.54 7.77 0.79 1.55 +devisions deviser ver 0.25 3.58 0.16 0.07 ind:imp:1p; +devisèrent deviser ver 0.25 3.58 0.00 0.07 ind:pas:3p; +devisé deviser ver m s 0.25 3.58 0.04 0.07 par:pas; +devoir devoir ver_sup 3232.80 1318.24 74.06 29.26 inf; +devoirs devoir nom_sup m p 63.59 55.54 20.70 22.50 +devon devon nom m s 1.98 0.27 0.04 0.00 +devons devoir ver_sup 3232.80 1318.24 114.35 14.93 imp:pre:1p;ind:pre:1p; +devra devoir ver_sup 3232.80 1318.24 22.45 8.04 ind:fut:3s; +devrai devoir ver_sup 3232.80 1318.24 10.32 1.15 ind:fut:1s; +devraient devoir ver_sup 3232.80 1318.24 23.70 10.41 cnd:pre:3p; +devrais devoir ver_sup 3232.80 1318.24 235.63 36.49 cnd:pre:1s;cnd:pre:2s; +devrait devoir ver_sup 3232.80 1318.24 208.85 51.49 cnd:pre:3s; +devras devoir ver_sup 3232.80 1318.24 15.16 0.41 ind:fut:2s; +devrez devoir ver_sup 3232.80 1318.24 12.97 0.74 ind:fut:2p; +devriez devoir ver_sup 3232.80 1318.24 75.83 11.89 cnd:pre:2p; +devrions devoir ver_sup 3232.80 1318.24 27.74 2.36 cnd:pre:1p; +devrons devoir ver_sup 3232.80 1318.24 7.11 0.34 ind:fut:1p; +devront devoir ver_sup 3232.80 1318.24 7.26 3.04 ind:fut:3p; +dexaméthasone dexaméthasone nom f s 0.01 0.00 0.01 0.00 +dextre dextre nom f s 0.17 0.54 0.17 0.54 +dextrement dextrement adv 0.00 0.14 0.00 0.14 +dextrose dextrose nom m s 0.12 0.00 0.12 0.00 +dextérité dextérité nom f s 0.32 2.16 0.32 2.16 +dey dey nom m s 0.02 1.96 0.02 1.96 +dharma dharma nom m s 0.26 0.14 0.26 0.14 +dhole dhole nom m s 0.08 0.00 0.08 0.00 +dia dia ono 0.41 1.22 0.41 1.22 +diable diable ono 4.25 2.91 4.25 2.91 +diablement diablement adv 0.75 1.01 0.75 1.01 +diablerie diablerie nom f s 0.18 0.61 0.14 0.07 +diableries diablerie nom f p 0.18 0.61 0.04 0.54 +diables diable nom m p 93.34 54.80 5.80 3.78 +diablesse diablesse nom f s 1.12 1.28 0.95 1.01 +diablesses diablesse nom f p 1.12 1.28 0.16 0.27 +diablotin diablotin nom m s 0.53 0.34 0.38 0.14 +diablotins diablotin nom m p 0.53 0.34 0.15 0.20 +diabolique diabolique adj s 8.61 5.95 6.89 4.73 +diaboliquement diaboliquement adv 0.11 0.34 0.11 0.34 +diaboliques diabolique adj p 8.61 5.95 1.71 1.22 +diabolisent diaboliser ver 0.09 0.07 0.01 0.00 ind:pre:3p; +diaboliser diaboliser ver 0.09 0.07 0.05 0.00 inf; +diabolisme diabolisme nom m s 0.04 0.00 0.04 0.00 +diabolisé diaboliser ver m s 0.09 0.07 0.02 0.07 par:pas; +diabolisée diaboliser ver f s 0.09 0.07 0.01 0.00 par:pas; +diabolo diabolo nom m s 0.03 0.88 0.03 0.47 +diabolos diabolo nom m p 0.03 0.88 0.00 0.41 +diabète diabète nom m s 2.27 1.42 2.25 1.35 +diabètes diabète nom m p 2.27 1.42 0.01 0.07 +diabétique diabétique adj s 1.29 0.34 1.28 0.34 +diabétiques diabétique nom p 0.53 0.00 0.16 0.00 +diachronique diachronique adj f s 0.01 0.07 0.01 0.07 +diaclase diaclase nom f s 0.14 0.00 0.14 0.00 +diaconesse diaconesse nom f s 0.00 0.20 0.00 0.14 +diaconesses diaconesse nom f p 0.00 0.20 0.00 0.07 +diaconie diaconie nom f s 0.00 0.07 0.00 0.07 +diacre diacre nom m s 0.94 1.15 0.84 1.01 +diacres diacre nom m p 0.94 1.15 0.09 0.14 +diacritique diacritique adj m s 0.03 0.07 0.03 0.07 +diacétylmorphine diacétylmorphine nom f s 0.01 0.00 0.01 0.00 +diadème diadème nom m s 1.52 1.76 1.38 1.15 +diadèmes diadème nom m p 1.52 1.76 0.15 0.61 +diagnose diagnose nom f s 0.01 0.00 0.01 0.00 +diagnostic diagnostic nom m s 6.78 3.85 6.25 3.51 +diagnostics diagnostic nom m p 6.78 3.85 0.53 0.34 +diagnostiqua diagnostiquer ver 1.93 1.15 0.00 0.14 ind:pas:3s; +diagnostiquait diagnostiquer ver 1.93 1.15 0.02 0.14 ind:imp:3s; +diagnostiquant diagnostiquer ver 1.93 1.15 0.03 0.07 par:pre; +diagnostique diagnostique adj s 0.88 0.20 0.70 0.20 +diagnostiquer diagnostiquer ver 1.93 1.15 0.53 0.27 inf; +diagnostiques diagnostique adj p 0.88 0.20 0.17 0.00 +diagnostiqueur diagnostiqueur nom m s 0.01 0.00 0.01 0.00 +diagnostiquez diagnostiquer ver 1.93 1.15 0.03 0.00 imp:pre:2p;ind:pre:2p; +diagnostiquèrent diagnostiquer ver 1.93 1.15 0.00 0.14 ind:pas:3p; +diagnostiqué diagnostiquer ver m s 1.93 1.15 1.20 0.27 par:pas; +diagnostiqués diagnostiquer ver m p 1.93 1.15 0.04 0.07 par:pas; +diagonal diagonal adj m s 0.11 0.27 0.00 0.07 +diagonale diagonale nom f s 0.28 4.32 0.18 3.85 +diagonalement diagonalement adv 0.01 0.07 0.01 0.07 +diagonales diagonale nom f p 0.28 4.32 0.10 0.47 +diagonaux diagonal adj m p 0.11 0.27 0.00 0.07 +diagramme diagramme nom m s 0.77 0.14 0.58 0.00 +diagrammes diagramme nom m p 0.77 0.14 0.19 0.14 +dialectal dialectal adj m s 0.32 0.00 0.21 0.00 +dialectale dialectal adj f s 0.32 0.00 0.11 0.00 +dialecte dialecte nom m s 1.79 2.57 1.44 2.03 +dialectes dialecte nom m p 1.79 2.57 0.35 0.54 +dialecticien dialecticien nom m s 0.01 0.34 0.00 0.20 +dialecticienne dialecticien nom f s 0.01 0.34 0.00 0.07 +dialecticiens dialecticien nom m p 0.01 0.34 0.01 0.07 +dialectique dialectique nom f s 0.66 2.23 0.66 2.16 +dialectiques dialectique adj f p 0.19 2.03 0.00 0.20 +dialogique dialogique adj m s 0.01 0.00 0.01 0.00 +dialoguai dialoguer ver 1.01 2.64 0.00 0.07 ind:pas:1s; +dialoguaient dialoguer ver 1.01 2.64 0.01 0.14 ind:imp:3p; +dialoguait dialoguer ver 1.01 2.64 0.01 0.14 ind:imp:3s; +dialoguant dialoguer ver 1.01 2.64 0.05 0.27 par:pre; +dialogue dialogue nom m s 16.71 19.19 14.11 14.46 +dialoguent dialoguer ver 1.01 2.64 0.00 0.20 ind:pre:3p; +dialoguer dialoguer ver 1.01 2.64 0.76 0.74 inf; +dialoguera dialoguer ver 1.01 2.64 0.01 0.07 ind:fut:3s; +dialogues dialogue nom m p 16.71 19.19 2.60 4.73 +dialoguez dialoguer ver 1.01 2.64 0.11 0.00 imp:pre:2p;ind:pre:2p; +dialoguiste dialoguiste nom s 0.02 0.14 0.00 0.07 +dialoguistes dialoguiste nom p 0.02 0.14 0.02 0.07 +dialoguons dialoguer ver 1.01 2.64 0.03 0.00 imp:pre:1p;ind:pre:1p; +dialoguât dialoguer ver 1.01 2.64 0.00 0.07 sub:imp:3s; +dialogué dialoguer ver m s 1.01 2.64 0.00 0.27 par:pas; +dialoguée dialoguer ver f s 1.01 2.64 0.00 0.14 par:pas; +dialoguées dialoguer ver f p 1.01 2.64 0.01 0.27 par:pas; +dialyse dialyse nom f s 1.06 0.20 1.02 0.20 +dialyser dialyser ver 0.16 0.00 0.01 0.00 inf; +dialyses dialyse nom f p 1.06 0.20 0.04 0.00 +dialysé dialyser ver m s 0.16 0.00 0.01 0.00 par:pas; +dialysée dialyser ver f s 0.16 0.00 0.14 0.00 par:pas; +diam diam nom m s 0.43 1.01 0.17 0.61 +diamant diamant nom m s 20.56 22.91 7.97 14.12 +diamantaire diamantaire nom s 0.07 2.43 0.05 1.28 +diamantaires diamantaire nom p 0.07 2.43 0.02 1.15 +diamante diamanter ver 0.00 0.20 0.00 0.07 ind:pre:3s; +diamantifère diamantifère adj f s 0.00 0.07 0.00 0.07 +diamantin diamantin adj m s 0.06 0.88 0.05 0.20 +diamantine diamantin adj f s 0.06 0.88 0.00 0.41 +diamantines diamantin adj f p 0.06 0.88 0.00 0.20 +diamantins diamantin adj m p 0.06 0.88 0.01 0.07 +diamants diamant nom m p 20.56 22.91 12.59 8.78 +diamanté diamanté adj m s 0.01 0.14 0.00 0.14 +diamantée diamanter ver f s 0.00 0.20 0.00 0.07 par:pas; +diamantés diamanté adj m p 0.01 0.14 0.01 0.00 +diamine diamine nom f s 0.01 0.00 0.01 0.00 +diamorphine diamorphine nom f s 0.01 0.00 0.01 0.00 +diams diam nom m p 0.43 1.01 0.26 0.41 +diamètre diamètre nom m s 1.81 2.23 1.81 2.23 +diamétralement diamétralement adv 0.14 0.74 0.14 0.74 +diane diane nom f s 0.03 0.47 0.03 0.41 +dianes diane nom f p 0.03 0.47 0.00 0.07 +diantre diantre ono 0.46 0.14 0.46 0.14 +diapason diapason nom m s 0.50 1.49 0.46 1.42 +diapasons diapason nom m p 0.50 1.49 0.04 0.07 +diaphane diaphane adj s 0.03 2.91 0.03 2.03 +diaphanes diaphane adj f p 0.03 2.91 0.00 0.88 +diaphorétique diaphorétique adj s 0.06 0.00 0.06 0.00 +diaphragma diaphragmer ver 0.00 0.07 0.00 0.07 ind:pas:3s; +diaphragmatique diaphragmatique adj f s 0.05 0.00 0.05 0.00 +diaphragme diaphragme nom m s 1.32 1.49 1.32 1.42 +diaphragmes diaphragme nom m p 1.32 1.49 0.00 0.07 +diapo diapo nom f s 1.78 0.27 0.66 0.07 +diaporama diaporama nom m s 0.05 0.07 0.05 0.00 +diaporamas diaporama nom m p 0.05 0.07 0.00 0.07 +diapos diapo nom f p 1.78 0.27 1.13 0.20 +diapositifs diapositif adj m p 0.21 0.07 0.00 0.07 +diapositive diapositif adj f s 0.21 0.07 0.20 0.00 +diapositives diapositive nom f p 0.92 0.61 0.86 0.61 +diapré diapré adj m s 0.00 0.41 0.00 0.07 +diaprée diapré adj f s 0.00 0.41 0.00 0.14 +diaprées diaprer ver f p 0.00 0.20 0.00 0.07 par:pas; +diaprures diaprure nom f p 0.00 0.07 0.00 0.07 +diaprés diapré adj m p 0.00 0.41 0.00 0.20 +diarrhée diarrhée nom f s 3.38 1.82 2.84 1.15 +diarrhées diarrhée nom f p 3.38 1.82 0.54 0.68 +diarrhéique diarrhéique adj s 0.01 0.07 0.01 0.07 +diaspora diaspora nom f s 0.00 0.61 0.00 0.54 +diasporas diaspora nom f p 0.00 0.61 0.00 0.07 +diastole diastole nom f s 0.01 0.07 0.00 0.07 +diastoles diastole nom f p 0.01 0.07 0.01 0.00 +diastolique diastolique adj s 0.07 0.07 0.07 0.00 +diastoliques diastolique adj m p 0.07 0.07 0.00 0.07 +diatomée diatomée nom f s 0.07 0.07 0.01 0.00 +diatomées diatomée nom f p 0.07 0.07 0.06 0.07 +diatonique diatonique adj s 0.00 0.14 0.00 0.14 +diatribe diatribe nom f s 0.14 2.09 0.12 1.49 +diatribes diatribe nom f p 0.14 2.09 0.02 0.61 +dicastères dicastère nom m p 0.00 0.07 0.00 0.07 +dichotomie dichotomie nom f s 0.20 0.00 0.20 0.00 +dichroïque dichroïque adj m s 0.01 0.00 0.01 0.00 +dichroïsme dichroïsme nom m s 0.00 0.07 0.00 0.07 +dicible dicible adj s 0.00 0.07 0.00 0.07 +dico dico nom m s 0.77 0.74 0.75 0.68 +dicos dico nom m p 0.77 0.74 0.02 0.07 +dicta dicter ver 8.42 12.30 0.11 0.68 ind:pas:3s; +dictai dicter ver 8.42 12.30 0.00 0.14 ind:pas:1s; +dictaient dicter ver 8.42 12.30 0.14 0.20 ind:imp:3p; +dictais dicter ver 8.42 12.30 0.03 0.07 ind:imp:1s;ind:imp:2s; +dictait dicter ver 8.42 12.30 0.07 2.36 ind:imp:3s; +dictames dictame nom m p 0.00 0.14 0.00 0.14 +dictant dicter ver 8.42 12.30 0.01 0.34 par:pre; +dictaphone dictaphone nom m s 0.42 0.34 0.41 0.27 +dictaphones dictaphone nom m p 0.42 0.34 0.02 0.07 +dictateur dictateur nom m s 2.53 5.68 2.14 5.00 +dictateurs dictateur nom m p 2.53 5.68 0.36 0.68 +dictatorial dictatorial adj m s 0.17 0.34 0.03 0.20 +dictatoriale dictatorial adj f s 0.17 0.34 0.03 0.07 +dictatoriales dictatorial adj f p 0.17 0.34 0.10 0.07 +dictatoriaux dictatorial adj m p 0.17 0.34 0.01 0.00 +dictatrice dictateur nom f s 2.53 5.68 0.04 0.00 +dictats dictat nom m p 0.01 0.14 0.01 0.14 +dictature dictature nom f s 3.86 5.27 3.84 4.86 +dictatures dictature nom f p 3.86 5.27 0.02 0.41 +dicte dicter ver 8.42 12.30 2.78 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dictent dicter ver 8.42 12.30 0.32 0.41 ind:pre:3p; +dicter dicter ver 8.42 12.30 2.28 1.89 inf; +dictera dicter ver 8.42 12.30 0.07 0.14 ind:fut:3s; +dicterai dicter ver 8.42 12.30 0.14 0.07 ind:fut:1s; +dicterez dicter ver 8.42 12.30 0.02 0.00 ind:fut:2p; +dictes dicter ver 8.42 12.30 0.03 0.27 ind:pre:2s; +dictez dicter ver 8.42 12.30 0.09 0.07 imp:pre:2p;ind:pre:2p; +dictiez dicter ver 8.42 12.30 0.01 0.07 ind:imp:2p; +diction diction nom f s 1.37 1.49 1.37 1.49 +dictionnaire dictionnaire nom m s 2.94 10.88 2.62 8.11 +dictionnaires dictionnaire nom m p 2.94 10.88 0.32 2.77 +dicton dicton nom m s 2.83 1.62 2.48 1.15 +dictons dicton nom m p 2.83 1.62 0.34 0.47 +dictât dicter ver 8.42 12.30 0.00 0.07 sub:imp:3s; +dictèrent dicter ver 8.42 12.30 0.00 0.07 ind:pas:3p; +dicté dicter ver m s 8.42 12.30 1.22 1.42 par:pas; +dictée dictée nom f s 2.25 4.05 1.59 3.51 +dictées dictée nom f p 2.25 4.05 0.66 0.54 +dictés dicter ver m p 8.42 12.30 0.16 0.34 par:pas; +didactique didactique adj s 0.60 1.35 0.60 1.01 +didactiquement didactiquement adv 0.00 0.07 0.00 0.07 +didactiques didactique adj p 0.60 1.35 0.00 0.34 +die die nom s 2.17 1.82 2.17 1.82 +dieffenbachia dieffenbachia nom f s 0.00 0.07 0.00 0.07 +diem diem nom m s 0.58 0.00 0.58 0.00 +dieppoise dieppois adj f s 0.00 0.41 0.00 0.34 +dieppoises dieppois adj f p 0.00 0.41 0.00 0.07 +dies_irae dies_irae nom m 0.54 0.14 0.54 0.14 +diesel diesel nom m s 1.71 0.88 1.47 0.68 +diesels diesel nom m p 1.71 0.88 0.25 0.20 +dieu_roi dieu_roi nom m s 0.01 0.07 0.01 0.07 +dieu dieu nom m s 903.41 396.49 852.91 368.51 +dieux dieu nom m p 903.41 396.49 50.49 27.97 +diffamait diffamer ver 0.81 0.54 0.00 0.07 ind:imp:3s; +diffamant diffamer ver 0.81 0.54 0.04 0.00 par:pre; +diffamateur diffamateur nom m s 0.21 0.20 0.21 0.07 +diffamateurs diffamateur nom m p 0.21 0.20 0.00 0.07 +diffamation diffamation nom f s 1.98 0.27 1.86 0.20 +diffamations diffamation nom f p 1.98 0.27 0.12 0.07 +diffamatoire diffamatoire adj s 0.20 0.14 0.10 0.14 +diffamatoires diffamatoire adj f p 0.20 0.14 0.09 0.00 +diffamatrice diffamateur nom f s 0.21 0.20 0.00 0.07 +diffame diffamer ver 0.81 0.54 0.13 0.14 ind:pre:3s; +diffament diffamer ver 0.81 0.54 0.01 0.07 ind:pre:3p; +diffamer diffamer ver 0.81 0.54 0.12 0.07 inf; +diffamé diffamer ver m s 0.81 0.54 0.48 0.00 par:pas; +diffamée diffamer ver f s 0.81 0.54 0.02 0.07 par:pas; +diffamées diffamer ver f p 0.81 0.54 0.00 0.07 par:pas; +diffamés diffamer ver m p 0.81 0.54 0.00 0.07 par:pas; +difficile difficile adj s 150.58 118.11 135.15 100.74 +difficilement difficilement adv 3.72 13.04 3.72 13.04 +difficiles difficile adj p 150.58 118.11 15.43 17.36 +difficulté difficulté nom f s 15.74 49.80 6.86 22.03 +difficultueux difficultueux adj m 0.00 0.07 0.00 0.07 +difficultés difficulté nom f p 15.74 49.80 8.89 27.77 +difforme difforme adj s 1.18 2.91 0.94 1.76 +difformes difforme adj p 1.18 2.91 0.25 1.15 +difformité difformité nom f s 0.68 0.81 0.42 0.47 +difformités difformité nom f p 0.68 0.81 0.26 0.34 +diffractent diffracter ver 0.00 0.14 0.00 0.07 ind:pre:3p; +diffraction diffraction nom f s 0.04 0.00 0.04 0.00 +diffractée diffracter ver f s 0.00 0.14 0.00 0.07 par:pas; +diffère différer ver 3.71 10.07 0.55 1.35 ind:pre:1s;ind:pre:3s; +diffèrent différer ver 3.71 10.07 1.86 0.95 ind:pre:3p; +différa différer ver 3.71 10.07 0.00 0.27 ind:pas:3s; +différaient différer ver 3.71 10.07 0.13 0.81 ind:imp:3p; +différais différer ver 3.71 10.07 0.01 0.14 ind:imp:1s; +différait différer ver 3.71 10.07 0.12 1.82 ind:imp:3s; +différant différer ver 3.71 10.07 0.00 0.68 par:pre; +différemment différemment adv 8.46 4.19 8.46 4.19 +différence différence nom f s 55.88 44.46 51.47 38.65 +différences différence nom f p 55.88 44.46 4.41 5.81 +différenciables différenciable adj f p 0.00 0.07 0.00 0.07 +différenciaient différencier ver 3.17 2.91 0.01 0.07 ind:imp:3p; +différenciais différencier ver 3.17 2.91 0.00 0.07 ind:imp:1s; +différenciait différencier ver 3.17 2.91 0.28 0.81 ind:imp:3s; +différenciant différencier ver 3.17 2.91 0.00 0.07 par:pre; +différenciation différenciation nom f s 0.03 0.14 0.03 0.07 +différenciations différenciation nom f p 0.03 0.14 0.00 0.07 +différencie différencier ver 3.17 2.91 1.52 0.41 ind:pre:3s; +différencient différencier ver 3.17 2.91 0.04 0.07 ind:pre:3p; +différencier différencier ver 3.17 2.91 1.18 1.15 inf; +différenciera différencier ver 3.17 2.91 0.02 0.00 ind:fut:3s; +différencierez différencier ver 3.17 2.91 0.01 0.00 ind:fut:2p; +différencieront différencier ver 3.17 2.91 0.00 0.07 ind:fut:3p; +différenciez différencier ver 3.17 2.91 0.06 0.00 imp:pre:2p;ind:pre:2p; +différencié différencier ver m s 3.17 2.91 0.03 0.07 par:pas; +différenciée différencié adj f s 0.01 0.27 0.00 0.07 +différenciées différencié adj f p 0.01 0.27 0.01 0.07 +différenciés différencier ver m p 3.17 2.91 0.01 0.07 par:pas; +différend différend nom m s 2.68 1.49 1.15 0.95 +différends différend nom m p 2.68 1.49 1.53 0.54 +différent différent adj m s 130.91 89.32 65.42 27.43 +différente différent adj f s 130.91 89.32 24.45 18.31 +différentes différentes adj_ind f p 4.89 2.70 4.89 2.70 +différentie différentier ver 0.02 0.00 0.02 0.00 ind:pre:3s; +différentiel différentiel nom m s 0.21 0.00 0.21 0.00 +différentielle différentiel adj f s 0.22 0.07 0.06 0.07 +différentielles différentiel adj f p 0.22 0.07 0.03 0.00 +différents différents adj_ind m p 3.94 2.84 3.94 2.84 +différer différer ver 3.71 10.07 0.27 2.70 inf; +différera différer ver 3.71 10.07 0.00 0.07 ind:fut:3s; +différerais différer ver 3.71 10.07 0.00 0.07 cnd:pre:1s; +différerait différer ver 3.71 10.07 0.01 0.14 cnd:pre:3s; +différeront différer ver 3.71 10.07 0.01 0.00 ind:fut:3p; +différez différer ver 3.71 10.07 0.06 0.00 imp:pre:2p;ind:pre:2p; +différions différer ver 3.71 10.07 0.00 0.07 ind:imp:1p; +différons différer ver 3.71 10.07 0.18 0.07 ind:pre:1p; +différât différer ver 3.71 10.07 0.00 0.07 sub:imp:3s; +différèrent différer ver 3.71 10.07 0.00 0.07 ind:pas:3p; +différé différer ver m s 3.71 10.07 0.19 0.47 par:pas; +différée différer ver f s 3.71 10.07 0.31 0.34 par:pas; +différées différé adj f p 0.13 1.55 0.01 0.14 +différés différé adj m p 0.13 1.55 0.02 0.00 +diffus diffus adj m 0.69 5.88 0.17 1.82 +diffusa diffuser ver 10.33 10.20 0.00 0.41 ind:pas:3s; +diffusaient diffuser ver 10.33 10.20 0.03 1.08 ind:imp:3p; +diffusais diffuser ver 10.33 10.20 0.02 0.00 ind:imp:1s; +diffusait diffuser ver 10.33 10.20 0.10 2.84 ind:imp:3s; +diffusant diffuser ver 10.33 10.20 0.09 0.81 par:pre; +diffuse diffuser ver 10.33 10.20 1.06 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +diffusent diffuser ver 10.33 10.20 0.64 0.27 ind:pre:3p; +diffuser diffuser ver 10.33 10.20 3.61 1.22 inf; +diffusera diffuser ver 10.33 10.20 0.16 0.00 ind:fut:3s; +diffuserai diffuser ver 10.33 10.20 0.01 0.00 ind:fut:1s; +diffuseraient diffuser ver 10.33 10.20 0.00 0.07 cnd:pre:3p; +diffuserais diffuser ver 10.33 10.20 0.01 0.00 cnd:pre:1s; +diffuserait diffuser ver 10.33 10.20 0.01 0.00 cnd:pre:3s; +diffuserions diffuser ver 10.33 10.20 0.10 0.00 cnd:pre:1p; +diffuserons diffuser ver 10.33 10.20 0.06 0.00 ind:fut:1p; +diffuseront diffuser ver 10.33 10.20 0.10 0.14 ind:fut:3p; +diffuses diffus adj f p 0.69 5.88 0.13 0.20 +diffuseur diffuseur nom m s 0.19 0.14 0.09 0.07 +diffuseurs diffuseur nom m p 0.19 0.14 0.10 0.07 +diffusez diffuser ver 10.33 10.20 0.39 0.14 imp:pre:2p;ind:pre:2p; +diffusion diffusion nom f s 2.55 1.28 2.53 1.28 +diffusions diffusion nom f p 2.55 1.28 0.02 0.00 +diffusons diffuser ver 10.33 10.20 0.24 0.00 imp:pre:1p;ind:pre:1p; +diffusèrent diffuser ver 10.33 10.20 0.00 0.07 ind:pas:3p; +diffusé diffuser ver m s 10.33 10.20 2.43 0.61 par:pas; +diffusée diffuser ver f s 10.33 10.20 0.71 0.81 par:pas; +diffusées diffuser ver f p 10.33 10.20 0.12 0.34 par:pas; +diffusés diffuser ver m p 10.33 10.20 0.44 0.27 par:pas; +difracter difracter ver 0.01 0.00 0.01 0.00 inf; +dig dig ono 0.29 0.27 0.29 0.27 +digest digest nom m s 0.23 0.41 0.23 0.34 +digeste digeste adj f s 0.05 0.07 0.05 0.07 +digestibles digestible adj p 0.00 0.07 0.00 0.07 +digestif digestif nom m s 0.68 0.54 0.67 0.34 +digestifs digestif adj m p 1.22 1.82 0.23 0.27 +digestion digestion nom f s 1.48 2.97 1.48 2.84 +digestions digestion nom f p 1.48 2.97 0.01 0.14 +digestive digestif adj f s 1.22 1.82 0.19 0.54 +digestives digestif adj f p 1.22 1.82 0.22 0.20 +digests digest nom m p 0.23 0.41 0.00 0.07 +digicode digicode nom m s 0.04 0.07 0.04 0.07 +digit digit nom m s 0.01 0.00 0.01 0.00 +digital digital adj m s 3.81 1.22 0.36 0.07 +digitale digital adj f s 3.81 1.22 0.93 0.20 +digitales digital adj f p 3.81 1.22 2.47 0.95 +digitaline digitaline nom f s 0.21 0.88 0.21 0.88 +digitaliseur digitaliseur nom m s 0.03 0.00 0.03 0.00 +digitalisée digitaliser ver f s 0.03 0.00 0.01 0.00 par:pas; +digitalisées digitaliser ver f p 0.03 0.00 0.02 0.00 par:pas; +digitaux digital adj m p 3.81 1.22 0.04 0.00 +digitée digité adj f s 0.00 0.07 0.00 0.07 +digne digne adj s 25.29 35.27 21.96 27.30 +dignement dignement adv 1.80 3.51 1.80 3.51 +dignes digne adj p 25.29 35.27 3.33 7.97 +dignitaire dignitaire nom s 0.70 4.26 0.21 1.01 +dignitaires dignitaire nom p 0.70 4.26 0.49 3.24 +dignité dignité nom f s 14.61 32.77 14.59 32.43 +dignités dignité nom f p 14.61 32.77 0.02 0.34 +dignus_est_intrare dignus_est_intrare adv 0.00 0.07 0.00 0.07 +digresse digresser ver 0.02 0.14 0.02 0.14 imp:pre:2s;ind:pre:1s; +digression digression nom f s 0.08 1.62 0.06 0.34 +digressions digression nom f p 0.08 1.62 0.02 1.28 +digère digérer ver 5.80 9.53 2.29 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +digèrent digérer ver 5.80 9.53 0.08 0.41 ind:pre:3p; +digue digue nom f s 1.85 10.20 1.02 7.97 +digues digue nom f p 1.85 10.20 0.83 2.23 +digéra digérer ver 5.80 9.53 0.00 0.07 ind:pas:3s; +digérai digérer ver 5.80 9.53 0.00 0.07 ind:pas:1s; +digéraient digérer ver 5.80 9.53 0.00 0.20 ind:imp:3p; +digérait digérer ver 5.80 9.53 0.03 0.95 ind:imp:3s; +digérant digérer ver 5.80 9.53 0.02 0.47 par:pre; +digérer digérer ver 5.80 9.53 1.73 3.51 inf; +digérera digérer ver 5.80 9.53 0.01 0.00 ind:fut:3s; +digérerait digérer ver 5.80 9.53 0.01 0.07 cnd:pre:3s; +digérons digérer ver 5.80 9.53 0.00 0.07 ind:pre:1p; +digérât digérer ver 5.80 9.53 0.00 0.07 sub:imp:3s; +digéré digérer ver m s 5.80 9.53 1.25 1.55 par:pas; +digérée digérer ver f s 5.80 9.53 0.23 0.61 par:pas; +digérées digérer ver f p 5.80 9.53 0.07 0.20 par:pas; +digérés digérer ver m p 5.80 9.53 0.09 0.27 par:pas; +dijonnais dijonnais adj m s 0.00 0.20 0.00 0.20 +diktat diktat nom m s 0.12 0.20 0.10 0.20 +diktats diktat nom m p 0.12 0.20 0.02 0.00 +dilapida dilapider ver 1.31 1.35 0.00 0.14 ind:pas:3s; +dilapidait dilapider ver 1.31 1.35 0.03 0.20 ind:imp:3s; +dilapidant dilapider ver 1.31 1.35 0.01 0.00 par:pre; +dilapidation dilapidation nom f s 0.00 0.07 0.00 0.07 +dilapide dilapider ver 1.31 1.35 0.10 0.14 imp:pre:2s;ind:pre:3s; +dilapider dilapider ver 1.31 1.35 0.07 0.34 inf; +dilapides dilapider ver 1.31 1.35 0.14 0.00 ind:pre:2s; +dilapidez dilapider ver 1.31 1.35 0.19 0.00 imp:pre:2p;ind:pre:2p; +dilapidé dilapider ver m s 1.31 1.35 0.73 0.41 par:pas; +dilapidée dilapider ver f s 1.31 1.35 0.02 0.14 par:pas; +dilapidées dilapider ver f p 1.31 1.35 0.01 0.00 par:pas; +dilata dilater ver 1.30 5.54 0.00 0.20 ind:pas:3s; +dilatable dilatable adj f s 0.00 0.14 0.00 0.14 +dilataient dilater ver 1.30 5.54 0.00 0.34 ind:imp:3p; +dilatait dilater ver 1.30 5.54 0.01 1.15 ind:imp:3s; +dilatant dilater ver 1.30 5.54 0.00 0.68 par:pre; +dilatateur dilatateur adj m s 0.02 0.14 0.01 0.00 +dilatateurs dilatateur adj m p 0.02 0.14 0.01 0.14 +dilatation dilatation nom f s 0.94 1.08 0.89 1.01 +dilatations dilatation nom f p 0.94 1.08 0.05 0.07 +dilate dilater ver 1.30 5.54 0.52 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dilatent dilater ver 1.30 5.54 0.15 0.41 ind:pre:3p; +dilater dilater ver 1.30 5.54 0.29 0.54 inf; +dilation dilation nom f s 0.03 0.00 0.03 0.00 +dilatoire dilatoire adj s 0.09 0.47 0.09 0.41 +dilatoires dilatoire adj m p 0.09 0.47 0.00 0.07 +dilatât dilater ver 1.30 5.54 0.00 0.07 sub:imp:3s; +dilatèrent dilater ver 1.30 5.54 0.00 0.14 ind:pas:3p; +dilaté dilaté adj m s 0.86 2.09 0.10 0.54 +dilatée dilaté adj f s 0.86 2.09 0.11 0.47 +dilatées dilaté adj f p 0.86 2.09 0.52 0.47 +dilatés dilaté adj m p 0.86 2.09 0.14 0.61 +dilection dilection nom f s 0.00 0.54 0.00 0.54 +dilemme dilemme nom m s 2.24 1.49 2.20 1.28 +dilemmes dilemme nom m p 2.24 1.49 0.04 0.20 +dilettante dilettante nom s 0.91 0.88 0.85 0.68 +dilettantes dilettante nom p 0.91 0.88 0.06 0.20 +dilettantisme dilettantisme nom m s 0.00 0.47 0.00 0.41 +dilettantismes dilettantisme nom m p 0.00 0.47 0.00 0.07 +diligemment diligemment adv 0.05 0.27 0.05 0.27 +diligence diligence nom f s 3.49 2.91 3.25 2.36 +diligences diligence nom f p 3.49 2.91 0.23 0.54 +diligent diligent adj m s 0.07 0.81 0.04 0.41 +diligente diligent adj f s 0.07 0.81 0.01 0.20 +diligenter diligenter ver 0.01 0.00 0.01 0.00 inf; +diligentes diligent adj f p 0.07 0.81 0.01 0.14 +diligents diligent adj m p 0.07 0.81 0.01 0.07 +dilua diluer ver 1.00 6.49 0.00 0.14 ind:pas:3s; +diluaient diluer ver 1.00 6.49 0.00 0.47 ind:imp:3p; +diluait diluer ver 1.00 6.49 0.00 0.81 ind:imp:3s; +diluant diluant nom m s 0.21 0.00 0.21 0.00 +dilue diluer ver 1.00 6.49 0.28 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diluent diluer ver 1.00 6.49 0.00 0.34 ind:pre:3p; +diluer diluer ver 1.00 6.49 0.31 0.61 inf; +diluerait diluer ver 1.00 6.49 0.00 0.07 cnd:pre:3s; +diluons diluer ver 1.00 6.49 0.00 0.07 imp:pre:1p; +dilution dilution nom f s 0.05 0.20 0.05 0.20 +dilué diluer ver m s 1.00 6.49 0.26 1.08 par:pas; +diluée diluer ver f s 1.00 6.49 0.09 1.08 par:pas; +diluées diluer ver f p 1.00 6.49 0.01 0.14 par:pas; +dilués diluer ver m p 1.00 6.49 0.01 0.34 par:pas; +diluvien diluvien adj m s 0.30 0.74 0.00 0.14 +diluvienne diluvien adj f s 0.30 0.74 0.14 0.27 +diluviennes diluvien adj f p 0.30 0.74 0.16 0.34 +dimanche dimanche nom m s 63.98 101.15 59.67 87.84 +dimanches dimanche nom m p 63.98 101.15 4.30 13.31 +dimension dimension nom f s 9.62 23.11 6.10 8.92 +dimensionnel dimensionnel adj m s 0.61 0.07 0.33 0.00 +dimensionnelle dimensionnel adj f s 0.61 0.07 0.22 0.07 +dimensionnelles dimensionnel adj f p 0.61 0.07 0.05 0.00 +dimensionnels dimensionnel adj m p 0.61 0.07 0.01 0.00 +dimensionnement dimensionnement nom m s 0.01 0.00 0.01 0.00 +dimensions dimension nom f p 9.62 23.11 3.52 14.19 +diminua diminuer ver 7.94 16.28 0.14 0.74 ind:pas:3s; +diminuaient diminuer ver 7.94 16.28 0.22 0.95 ind:imp:3p; +diminuais diminuer ver 7.94 16.28 0.02 0.20 ind:imp:1s; +diminuait diminuer ver 7.94 16.28 0.10 2.64 ind:imp:3s; +diminuant diminuer ver 7.94 16.28 0.07 0.54 par:pre; +diminue diminuer ver 7.94 16.28 1.93 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diminuendo diminuendo adv 0.02 0.00 0.02 0.00 +diminuent diminuer ver 7.94 16.28 0.52 0.81 ind:pre:3p; +diminuer diminuer ver 7.94 16.28 1.93 3.72 inf; +diminuera diminuer ver 7.94 16.28 0.13 0.00 ind:fut:3s; +diminuerai diminuer ver 7.94 16.28 0.05 0.00 ind:fut:1s; +diminuerais diminuer ver 7.94 16.28 0.03 0.00 cnd:pre:1s; +diminuerait diminuer ver 7.94 16.28 0.21 0.14 cnd:pre:3s; +diminueront diminuer ver 7.94 16.28 0.01 0.00 ind:fut:3p; +diminuez diminuer ver 7.94 16.28 0.24 0.00 imp:pre:2p;ind:pre:2p; +diminuiez diminuer ver 7.94 16.28 0.01 0.00 ind:imp:2p; +diminuât diminuer ver 7.94 16.28 0.00 0.14 sub:imp:3s; +diminuèrent diminuer ver 7.94 16.28 0.00 0.07 ind:pas:3p; +diminutif diminutif nom m s 0.96 1.89 0.96 1.49 +diminutifs diminutif nom m p 0.96 1.89 0.00 0.41 +diminution diminution nom f s 1.03 1.15 1.01 1.01 +diminutions diminution nom f p 1.03 1.15 0.03 0.14 +diminué diminuer ver m s 7.94 16.28 1.68 1.82 par:pas; +diminuée diminuer ver f s 7.94 16.28 0.46 0.88 par:pas; +diminuées diminuer ver f p 7.94 16.28 0.09 0.00 par:pas; +diminués diminuer ver m p 7.94 16.28 0.09 0.61 par:pas; +dinamiteros dinamitero nom m p 0.00 0.20 0.00 0.20 +dinanderie dinanderie nom f s 0.00 0.07 0.00 0.07 +dinar dinar nom m s 1.74 0.14 0.34 0.07 +dinars dinar nom m p 1.74 0.14 1.41 0.07 +dinde dinde nom f s 9.32 2.97 8.79 1.69 +dindes dinde nom f p 9.32 2.97 0.54 1.28 +dindon dindon nom m s 1.73 1.35 1.23 0.74 +dindonne dindonner ver 0.00 0.14 0.00 0.07 ind:pre:3s; +dindonneau dindonneau nom m s 0.17 0.07 0.17 0.00 +dindonneaux dindonneau nom m p 0.17 0.07 0.00 0.07 +dindonné dindonner ver m s 0.00 0.14 0.00 0.07 par:pas; +dindons dindon nom m p 1.73 1.35 0.50 0.61 +dine dine nom m s 1.24 0.07 1.24 0.07 +ding ding ono 3.54 1.55 3.54 1.55 +dingo dingo adj s 0.98 1.08 0.95 1.01 +dingos dingo nom m p 0.95 0.88 0.28 0.20 +dingue dingue adj s 58.48 11.69 53.01 9.80 +dinguent dinguer ver 0.33 1.08 0.00 0.07 ind:pre:3p; +dinguer dinguer ver 0.33 1.08 0.00 0.95 inf; +dinguerie dinguerie nom f s 0.05 0.88 0.05 0.81 +dingueries dinguerie nom f p 0.05 0.88 0.00 0.07 +dingues dingue adj p 58.48 11.69 5.47 1.89 +dingué dinguer ver m s 0.33 1.08 0.00 0.07 par:pas; +dinosaure dinosaure nom m s 4.46 0.68 2.32 0.07 +dinosaures dinosaure nom m p 4.46 0.68 2.14 0.61 +dioclétienne dioclétien adj f s 0.00 0.14 0.00 0.07 +dioclétiennes dioclétien adj f p 0.00 0.14 0.00 0.07 +diocèse diocèse nom m s 0.44 1.15 0.44 1.01 +diocèses diocèse nom m p 0.44 1.15 0.00 0.14 +diocésain diocésain adj m s 0.10 0.14 0.10 0.00 +diocésaines diocésain adj f p 0.10 0.14 0.00 0.14 +diode diode nom f s 0.07 0.00 0.07 0.00 +diodon diodon nom m s 0.00 0.20 0.00 0.20 +dionée dionée nom f s 0.03 0.00 0.03 0.00 +dionysiaque dionysiaque adj s 0.16 0.47 0.16 0.34 +dionysiaques dionysiaque adj f p 0.16 0.47 0.00 0.14 +dionysien dionysien adj m s 0.01 0.07 0.01 0.07 +dioptre dioptre nom m s 0.00 0.07 0.00 0.07 +dioptries dioptrie nom f p 0.00 0.14 0.00 0.14 +diorama diorama nom m s 0.15 0.34 0.11 0.07 +dioramas diorama nom m p 0.15 0.34 0.04 0.27 +diorite diorite nom f s 0.04 0.00 0.04 0.00 +dioxine dioxine nom f s 0.14 0.00 0.12 0.00 +dioxines dioxine nom f p 0.14 0.00 0.02 0.00 +dioxyde dioxyde nom m s 0.56 0.00 0.56 0.00 +dipôle dipôle nom m s 0.01 0.00 0.01 0.00 +diphtongue diphtongue nom f s 0.02 0.34 0.00 0.14 +diphtongues diphtongue nom f p 0.02 0.34 0.02 0.20 +diphtérie diphtérie nom f s 0.26 0.68 0.26 0.68 +diphényle diphényle nom m s 0.00 0.07 0.00 0.07 +diplôme diplôme nom m s 17.27 7.36 13.28 4.32 +diplômer diplômer ver 4.29 0.27 0.16 0.00 inf; +diplômes diplôme nom m p 17.27 7.36 3.99 3.04 +diplômé diplômer ver m s 4.29 0.27 2.44 0.14 par:pas; +diplômée diplômer ver f s 4.29 0.27 1.17 0.07 par:pas; +diplômées diplômé adj f p 1.50 1.01 0.07 0.07 +diplômés diplômé nom m p 1.81 0.27 1.03 0.00 +diplodocus diplodocus nom m 0.01 0.68 0.01 0.68 +diplomate diplomate nom s 3.75 8.65 1.98 4.66 +diplomates diplomate nom p 3.75 8.65 1.77 3.99 +diplomatie diplomatie nom f s 1.80 5.68 1.80 5.68 +diplomatique diplomatique adj s 4.28 10.00 2.77 6.96 +diplomatiquement diplomatiquement adv 0.04 0.20 0.04 0.20 +diplomatiques diplomatique adj p 4.28 10.00 1.51 3.04 +diplopie diplopie nom f s 0.03 0.00 0.03 0.00 +dipneuste dipneuste nom m s 0.07 0.00 0.05 0.00 +dipneustes dipneuste nom m p 0.07 0.00 0.02 0.00 +dipsomane dipsomane nom s 0.26 0.00 0.25 0.00 +dipsomanes dipsomane nom p 0.26 0.00 0.01 0.00 +dipsomanie dipsomanie nom f s 0.01 0.00 0.01 0.00 +diptères diptère adj p 0.01 0.07 0.01 0.07 +diptyque diptyque nom m s 0.01 0.14 0.01 0.14 +dira dire ver_sup 5946.17 4832.50 36.47 21.89 ind:fut:3s; +dirai dire ver_sup 5946.17 4832.50 82.39 27.43 ind:fut:1s; +diraient dire ver_sup 5946.17 4832.50 3.02 3.24 cnd:pre:3p; +dirais dire ver_sup 5946.17 4832.50 57.65 16.76 cnd:pre:1s;cnd:pre:2s; +dirait dire ver_sup 5946.17 4832.50 190.63 85.88 cnd:pre:3s; +diras dire ver_sup 5946.17 4832.50 22.52 10.54 ind:fut:2s; +dire dire ver_sup 5946.17 4832.50 1564.52 827.84 inf;;inf;;inf;;inf;;inf;; +direct direct nom m s 16.34 5.00 15.81 4.39 +directe direct adj f s 21.89 26.69 6.27 11.82 +directement directement adv 26.73 39.12 26.73 39.12 +directes direct adj f p 21.89 26.69 0.49 2.03 +directeur_adjoint directeur_adjoint nom m s 0.14 0.00 0.14 0.00 +directeur directeur nom m s 64.44 38.45 57.65 30.00 +directeurs directeur nom m p 64.44 38.45 2.23 3.11 +directif directif adj m s 0.32 0.14 0.22 0.00 +direction direction nom f s 45.06 108.04 43.25 103.04 +directionnel directionnel adj m s 0.57 0.14 0.09 0.07 +directionnelle directionnel adj f s 0.57 0.14 0.04 0.00 +directionnelles directionnel adj f p 0.57 0.14 0.02 0.07 +directionnels directionnel adj m p 0.57 0.14 0.42 0.00 +directions direction nom f p 45.06 108.04 1.81 5.00 +directive directive nom f s 3.43 4.93 0.40 0.47 +directives directive nom f p 3.43 4.93 3.04 4.46 +directo directo adv 0.00 0.41 0.00 0.41 +directoire directoire nom m s 0.17 2.09 0.17 2.09 +directorat directorat nom m s 0.01 0.00 0.01 0.00 +directorial directorial adj m s 0.01 1.28 0.01 0.81 +directoriale directorial adj f s 0.01 1.28 0.00 0.27 +directoriaux directorial adj m p 0.01 1.28 0.00 0.20 +directos directos adv 0.03 0.41 0.03 0.41 +directrice directeur nom f s 64.44 38.45 4.55 5.07 +directrices directrice nom f p 0.28 0.00 0.28 0.00 +directs direct adj m p 21.89 26.69 0.84 2.16 +dirent dire ver_sup 5946.17 4832.50 1.65 7.03 ind:pas:3p; +dires dire nom_sup m p 53.88 31.42 1.94 2.50 +direz dire ver_sup 5946.17 4832.50 13.72 10.00 ind:fut:2p; +dirham dirham nom m s 0.43 0.14 0.14 0.00 +dirhams dirham nom m p 0.43 0.14 0.29 0.14 +diriez dire ver_sup 5946.17 4832.50 10.69 2.36 cnd:pre:2p; +dirige diriger ver 65.10 95.68 23.74 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dirigea diriger ver 65.10 95.68 0.06 20.20 ind:pas:3s; +dirigeable dirigeable nom m s 0.62 0.34 0.41 0.20 +dirigeables dirigeable nom m p 0.62 0.34 0.22 0.14 +dirigeai diriger ver 65.10 95.68 0.12 1.62 ind:pas:1s; +dirigeaient diriger ver 65.10 95.68 0.62 2.77 ind:imp:3p; +dirigeais diriger ver 65.10 95.68 0.52 0.68 ind:imp:1s;ind:imp:2s; +dirigeait diriger ver 65.10 95.68 3.31 11.69 ind:imp:3s; +dirigeant dirigeant nom m s 6.18 10.00 1.81 2.09 +dirigeante dirigeant adj f s 0.90 3.18 0.20 0.61 +dirigeantes dirigeant adj f p 0.90 3.18 0.06 0.41 +dirigeants dirigeant nom m p 6.18 10.00 4.30 7.77 +dirigent diriger ver 65.10 95.68 4.11 2.30 ind:pre:3p; +dirigeâmes diriger ver 65.10 95.68 0.03 0.47 ind:pas:1p; +dirigeons diriger ver 65.10 95.68 1.14 0.95 imp:pre:1p;ind:pre:1p; +dirigeât diriger ver 65.10 95.68 0.00 0.14 sub:imp:3s; +diriger diriger ver 65.10 95.68 13.94 17.64 ind:pre:2p;inf; +dirigera diriger ver 65.10 95.68 1.17 0.41 ind:fut:3s; +dirigerai diriger ver 65.10 95.68 0.34 0.20 ind:fut:1s; +dirigeraient diriger ver 65.10 95.68 0.02 0.00 cnd:pre:3p; +dirigerais diriger ver 65.10 95.68 0.10 0.00 cnd:pre:1s;cnd:pre:2s; +dirigerait diriger ver 65.10 95.68 0.11 0.14 cnd:pre:3s; +dirigeras diriger ver 65.10 95.68 0.23 0.07 ind:fut:2s; +dirigerez diriger ver 65.10 95.68 0.36 0.07 ind:fut:2p; +dirigerons diriger ver 65.10 95.68 0.06 0.07 ind:fut:1p; +dirigeront diriger ver 65.10 95.68 0.19 0.20 ind:fut:3p; +diriges diriger ver 65.10 95.68 1.31 0.00 ind:pre:2s; +dirigez diriger ver 65.10 95.68 3.88 0.20 imp:pre:2p;ind:pre:2p; +dirigiez diriger ver 65.10 95.68 0.30 0.07 ind:imp:2p; +dirigions diriger ver 65.10 95.68 0.17 0.34 ind:imp:1p; +dirigèrent diriger ver 65.10 95.68 0.01 2.23 ind:pas:3p; +dirigé diriger ver m s 65.10 95.68 4.43 7.30 par:pas; +dirigée diriger ver f s 65.10 95.68 2.29 4.19 par:pas; +dirigées diriger ver f p 65.10 95.68 0.20 1.15 par:pas; +dirigés diriger ver m p 65.10 95.68 0.91 2.36 par:pas; +dirimant dirimant adj m s 0.00 0.14 0.00 0.07 +dirimants dirimant adj m p 0.00 0.14 0.00 0.07 +dirions dire ver_sup 5946.17 4832.50 0.08 0.68 cnd:pre:1p; +dirlo dirlo nom m s 0.40 1.76 0.40 1.69 +dirlos dirlo nom m p 0.40 1.76 0.00 0.07 +dirons dire ver_sup 5946.17 4832.50 2.78 2.03 ind:fut:1p; +diront dire ver_sup 5946.17 4832.50 9.09 4.46 ind:fut:3p; +dis dire ver_sup 5946.17 4832.50 1025.78 477.36 imp:pre:2s;ind:pre:1s;ind:pre:1s;ind:pre:2s;ind:pas:1s; +disaient dire ver_sup 5946.17 4832.50 11.68 35.68 ind:imp:3p; +disais dire ver_sup 5946.17 4832.50 98.37 70.68 ind:imp:1s;ind:imp:2s; +disait dire ver_sup 5946.17 4832.50 94.00 352.30 ind:imp:3s; +disant dire ver_sup 5946.17 4832.50 26.41 81.62 par:pre; +disants disant adj m p 1.30 7.09 0.03 0.07 +disc_jockey disc_jockey nom m s 0.18 0.07 0.16 0.00 +disc_jockey disc_jockey nom m p 0.18 0.07 0.03 0.07 +discal discal adj m s 0.13 0.07 0.02 0.07 +discale discal adj f s 0.13 0.07 0.11 0.00 +discerna discerner ver 1.05 15.20 0.00 0.14 ind:pas:3s; +discernable discernable adj f s 0.01 0.47 0.01 0.34 +discernables discernable adj p 0.01 0.47 0.00 0.14 +discernai discerner ver 1.05 15.20 0.00 0.14 ind:pas:1s; +discernaient discerner ver 1.05 15.20 0.00 0.47 ind:imp:3p; +discernais discerner ver 1.05 15.20 0.00 0.95 ind:imp:1s; +discernait discerner ver 1.05 15.20 0.01 2.43 ind:imp:3s; +discernant discerner ver 1.05 15.20 0.00 0.34 par:pre; +discerne discerner ver 1.05 15.20 0.33 2.16 ind:pre:1s;ind:pre:3s; +discernement discernement nom m s 0.90 2.50 0.90 2.50 +discernent discerner ver 1.05 15.20 0.01 0.34 ind:pre:3p; +discerner discerner ver 1.05 15.20 0.69 6.69 inf; +discernerait discerner ver 1.05 15.20 0.00 0.07 cnd:pre:3s; +discernes discerner ver 1.05 15.20 0.00 0.07 ind:pre:2s; +discernions discerner ver 1.05 15.20 0.00 0.27 ind:imp:1p; +discernâmes discerner ver 1.05 15.20 0.00 0.27 ind:pas:1p; +discernât discerner ver 1.05 15.20 0.00 0.07 sub:imp:3s; +discerné discerner ver m s 1.05 15.20 0.01 0.74 par:pas; +discernées discerner ver f p 1.05 15.20 0.00 0.07 par:pas; +disciple_roi disciple_roi nom s 0.00 0.07 0.00 0.07 +disciple disciple nom s 5.62 14.46 1.98 7.64 +disciples disciple nom p 5.62 14.46 3.65 6.82 +disciplina discipliner ver 0.93 1.42 0.00 0.07 ind:pas:3s; +disciplinaient discipliner ver 0.93 1.42 0.00 0.07 ind:imp:3p; +disciplinaire disciplinaire adj s 1.28 1.15 0.93 0.81 +disciplinaires disciplinaire adj p 1.28 1.15 0.35 0.34 +disciplinais discipliner ver 0.93 1.42 0.01 0.00 ind:imp:1s; +disciplinait discipliner ver 0.93 1.42 0.00 0.14 ind:imp:3s; +discipline discipline nom f s 12.02 22.03 11.59 20.27 +discipliner discipliner ver 0.93 1.42 0.29 0.34 inf; +disciplinera discipliner ver 0.93 1.42 0.00 0.07 ind:fut:3s; +disciplinerait discipliner ver 0.93 1.42 0.00 0.07 cnd:pre:3s; +disciplines discipline nom f p 12.02 22.03 0.44 1.76 +discipliné discipliné adj m s 1.07 2.16 0.30 0.74 +disciplinée discipliné adj f s 1.07 2.16 0.24 0.41 +disciplinées discipliné adj f p 1.07 2.16 0.01 0.27 +disciplinés discipliné adj m p 1.07 2.16 0.51 0.74 +disco disco nom s 1.81 0.34 1.79 0.34 +discobole discobole nom m s 0.24 0.20 0.23 0.20 +discoboles discobole nom m p 0.24 0.20 0.01 0.00 +discographie discographie nom f s 0.01 0.00 0.01 0.00 +discographiques discographique adj p 0.00 0.07 0.00 0.07 +discontinu discontinu adj m s 0.04 1.49 0.00 0.61 +discontinuaient discontinuer ver 0.03 1.82 0.00 0.07 ind:imp:3p; +discontinue discontinu adj f s 0.04 1.49 0.04 0.41 +discontinuer discontinuer ver 0.03 1.82 0.03 1.76 inf; +discontinues discontinu adj f p 0.04 1.49 0.00 0.27 +discontinuité discontinuité nom f s 0.05 0.68 0.05 0.68 +discontinus discontinu adj m p 0.04 1.49 0.00 0.20 +disconviens disconvenir ver 0.00 0.14 0.00 0.07 ind:pre:1s; +disconvint disconvenir ver 0.00 0.14 0.00 0.07 ind:pas:3s; +discordance discordance nom f s 0.06 0.68 0.04 0.41 +discordances discordance nom f p 0.06 0.68 0.02 0.27 +discordant discordant adj m s 0.14 2.91 0.08 0.74 +discordante discordant adj f s 0.14 2.91 0.02 0.74 +discordantes discordant adj f p 0.14 2.91 0.01 0.34 +discordants discordant adj m p 0.14 2.91 0.04 1.08 +discorde discorde nom f s 1.41 2.09 1.35 2.09 +discordes discorde nom f p 1.41 2.09 0.06 0.00 +discos disco nom p 1.81 0.34 0.02 0.00 +discothèque discothèque nom f s 1.32 0.81 1.12 0.74 +discothèques discothèque nom f p 1.32 0.81 0.20 0.07 +discount discount nom m s 0.39 0.27 0.39 0.27 +discouraient discourir ver 0.66 4.12 0.00 0.20 ind:imp:3p; +discourait discourir ver 0.66 4.12 0.00 1.01 ind:imp:3s; +discourant discourir ver 0.66 4.12 0.02 0.34 par:pre; +discoure discourir ver 0.66 4.12 0.01 0.07 sub:pre:1s;sub:pre:3s; +discourent discourir ver 0.66 4.12 0.01 0.07 ind:pre:3p; +discoureur discoureur nom m s 0.01 0.14 0.01 0.07 +discoureurs discoureur nom m p 0.01 0.14 0.00 0.07 +discourir discourir ver 0.66 4.12 0.39 2.09 inf; +discours discours nom m 42.75 50.54 42.75 50.54 +discourt discourir ver 0.66 4.12 0.11 0.07 ind:pre:3s; +discourtois discourtois adj m 0.28 0.41 0.25 0.14 +discourtoise discourtois adj f s 0.28 0.41 0.03 0.20 +discourtoises discourtois adj f p 0.28 0.41 0.00 0.07 +discouru discourir ver m s 0.66 4.12 0.10 0.20 par:pas; +discourut discourir ver 0.66 4.12 0.00 0.07 ind:pas:3s; +discret discret adj m s 15.61 33.04 9.52 13.58 +discrets discret adj m p 15.61 33.04 2.96 4.93 +discriminant discriminant adj m s 0.03 0.07 0.01 0.07 +discriminants discriminant adj m p 0.03 0.07 0.01 0.00 +discrimination discrimination nom f s 1.60 0.88 1.57 0.88 +discriminations discrimination nom f p 1.60 0.88 0.03 0.00 +discriminatoire discriminatoire adj s 0.15 0.07 0.15 0.07 +discriminer discriminer ver 0.18 0.14 0.17 0.14 inf; +discriminé discriminer ver m s 0.18 0.14 0.01 0.00 par:pas; +discrète discret adj f s 15.61 33.04 2.79 11.89 +discrètement discrètement adv 5.82 19.73 5.82 19.73 +discrètes discret adj f p 15.61 33.04 0.34 2.64 +discrédit discrédit nom m s 0.11 0.61 0.11 0.61 +discréditait discréditer ver 1.61 1.35 0.01 0.07 ind:imp:3s; +discréditant discréditer ver 1.61 1.35 0.02 0.00 par:pre; +discrédite discréditer ver 1.61 1.35 0.05 0.14 ind:pre:3s; +discréditer discréditer ver 1.61 1.35 1.20 0.61 ind:pre:2p;inf; +discréditerait discréditer ver 1.61 1.35 0.04 0.00 cnd:pre:3s; +discréditez discréditer ver 1.61 1.35 0.05 0.00 imp:pre:2p;ind:pre:2p; +discrédité discréditer ver m s 1.61 1.35 0.14 0.47 par:pas; +discréditée discréditer ver f s 1.61 1.35 0.04 0.00 par:pas; +discréditées discréditer ver f p 1.61 1.35 0.03 0.07 par:pas; +discrédités discréditer ver m p 1.61 1.35 0.04 0.00 par:pas; +discrétion discrétion nom f s 4.59 21.22 4.59 21.22 +discrétionnaire discrétionnaire adj s 0.13 0.20 0.09 0.14 +discrétionnaires discrétionnaire adj f p 0.13 0.20 0.04 0.07 +disculpait disculper ver 1.27 1.55 0.00 0.20 ind:imp:3s; +disculpant disculper ver 1.27 1.55 0.07 0.00 par:pre; +disculpation disculpation nom f s 0.04 0.00 0.04 0.00 +disculpe disculper ver 1.27 1.55 0.19 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +disculpent disculper ver 1.27 1.55 0.01 0.00 ind:pre:3p; +disculper disculper ver 1.27 1.55 0.61 1.22 inf; +disculperait disculper ver 1.27 1.55 0.01 0.00 cnd:pre:3s; +disculpez disculper ver 1.27 1.55 0.01 0.07 imp:pre:2p; +disculpé disculper ver m s 1.27 1.55 0.36 0.00 par:pas; +disculpés disculper ver m p 1.27 1.55 0.01 0.00 par:pas; +discursives discursif adj f p 0.00 0.07 0.00 0.07 +discussion discussion nom f s 23.58 33.51 19.54 20.88 +discussions discussion nom f p 23.58 33.51 4.05 12.64 +discuta discuter ver 96.42 58.65 0.01 0.74 ind:pas:3s; +discutable discutable adj s 0.79 1.01 0.59 0.68 +discutables discutable adj p 0.79 1.01 0.19 0.34 +discutai discuter ver 96.42 58.65 0.00 0.27 ind:pas:1s; +discutaient discuter ver 96.42 58.65 0.20 4.53 ind:imp:3p; +discutaillaient discutailler ver 0.48 0.81 0.00 0.14 ind:imp:3p; +discutaillait discutailler ver 0.48 0.81 0.01 0.07 ind:imp:3s; +discutaille discutailler ver 0.48 0.81 0.01 0.14 ind:pre:3s; +discutaillent discutailler ver 0.48 0.81 0.00 0.07 ind:pre:3p; +discutailler discutailler ver 0.48 0.81 0.46 0.41 inf; +discutailleries discutaillerie nom f p 0.00 0.14 0.00 0.14 +discutailleur discutailleur nom m s 0.00 0.07 0.00 0.07 +discutailleuse discutailleur adj f s 0.00 0.07 0.00 0.07 +discutais discuter ver 96.42 58.65 0.57 0.41 ind:imp:1s;ind:imp:2s; +discutait discuter ver 96.42 58.65 2.09 5.14 ind:imp:3s; +discutant discuter ver 96.42 58.65 0.60 2.97 par:pre; +discute discuter ver 96.42 58.65 14.75 5.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +discutent discuter ver 96.42 58.65 2.02 3.45 ind:pre:3p; +discuter discuter ver 96.42 58.65 50.43 25.47 inf; +discutera discuter ver 96.42 58.65 2.92 0.47 ind:fut:3s; +discuterai discuter ver 96.42 58.65 1.08 0.20 ind:fut:1s; +discuteraient discuter ver 96.42 58.65 0.05 0.07 cnd:pre:3p; +discuterais discuter ver 96.42 58.65 0.10 0.07 cnd:pre:1s; +discuterait discuter ver 96.42 58.65 0.52 0.41 cnd:pre:3s; +discuterez discuter ver 96.42 58.65 0.10 0.07 ind:fut:2p; +discuteriez discuter ver 96.42 58.65 0.02 0.00 cnd:pre:2p; +discuterions discuter ver 96.42 58.65 0.01 0.07 cnd:pre:1p; +discuterons discuter ver 96.42 58.65 1.66 0.20 ind:fut:1p; +discuteront discuter ver 96.42 58.65 0.04 0.07 ind:fut:3p; +discutes discuter ver 96.42 58.65 0.82 0.14 ind:pre:2s; +discutez discuter ver 96.42 58.65 2.73 0.14 imp:pre:2p;ind:pre:2p; +discutiez discuter ver 96.42 58.65 0.23 0.00 ind:imp:2p; +discutions discuter ver 96.42 58.65 0.71 1.01 ind:imp:1p;sub:pre:1p; +discutâmes discuter ver 96.42 58.65 0.00 0.47 ind:pas:1p; +discutons discuter ver 96.42 58.65 3.44 0.61 imp:pre:1p;ind:pre:1p; +discutât discuter ver 96.42 58.65 0.10 0.07 sub:imp:3s; +discutèrent discuter ver 96.42 58.65 0.02 0.88 ind:pas:3p; +discuté discuter ver m s 96.42 58.65 10.85 4.53 par:pas; +discutée discuter ver f s 96.42 58.65 0.20 0.34 par:pas; +discutées discuter ver f p 96.42 58.65 0.02 0.27 par:pas; +discutés discuter ver m p 96.42 58.65 0.12 0.07 par:pas; +dise dire ver_sup 5946.17 4832.50 53.46 25.41 sub:pre:1s;sub:pre:3s; +disent dire ver_sup 5946.17 4832.50 88.46 44.12 ind:pre:3p;sub:pre:3p; +disert disert adj m s 0.01 0.88 0.00 0.88 +diserte disert adj f s 0.01 0.88 0.01 0.00 +dises dire ver_sup 5946.17 4832.50 11.41 2.70 sub:pre:2s; +disette disette nom f s 0.06 1.76 0.06 1.62 +disettes disette nom f p 0.06 1.76 0.00 0.14 +diseur diseur nom m s 0.47 0.68 0.26 0.14 +diseurs diseur nom m p 0.47 0.68 0.06 0.20 +diseuse diseur nom f s 0.47 0.68 0.14 0.34 +diseuses diseuse nom f p 0.06 0.00 0.06 0.00 +disfonctionnement disfonctionnement nom m s 0.44 0.00 0.44 0.00 +disgracia disgracier ver 0.09 0.68 0.00 0.07 ind:pas:3s; +disgraciaient disgracier ver 0.09 0.68 0.00 0.07 ind:imp:3p; +disgraciait disgracier ver 0.09 0.68 0.00 0.07 ind:imp:3s; +disgracier disgracier ver 0.09 0.68 0.01 0.00 inf; +disgraciera disgracier ver 0.09 0.68 0.00 0.07 ind:fut:3s; +disgracieuse disgracieux adj f s 0.14 2.30 0.01 0.95 +disgracieusement disgracieusement adv 0.00 0.07 0.00 0.07 +disgracieuses disgracieux adj f p 0.14 2.30 0.04 0.14 +disgracieux disgracieux adj m 0.14 2.30 0.09 1.22 +disgracié disgracié adj m s 0.17 0.61 0.16 0.34 +disgraciée disgracier ver f s 0.09 0.68 0.01 0.14 par:pas; +disgraciées disgracié adj f p 0.17 0.61 0.00 0.07 +disgraciés disgracier ver m p 0.09 0.68 0.01 0.07 par:pas; +disgrâce disgrâce nom f s 1.76 4.46 1.76 3.99 +disgrâces disgrâce nom f p 1.76 4.46 0.00 0.47 +disharmonie disharmonie nom f s 0.01 0.07 0.01 0.07 +disiez dire ver_sup 5946.17 4832.50 20.36 4.66 ind:imp:2p;sub:pre:2p; +disions dire ver_sup 5946.17 4832.50 1.54 5.47 ind:imp:1p; +disjoignait disjoindre ver 0.10 1.49 0.00 0.07 ind:imp:3s; +disjoignant disjoindre ver 0.10 1.49 0.00 0.20 par:pre; +disjoignent disjoindre ver 0.10 1.49 0.00 0.07 ind:pre:3p; +disjoindre disjoindre ver 0.10 1.49 0.00 0.34 inf; +disjoint disjoint adj m s 0.13 2.03 0.10 0.27 +disjointe disjoint adj f s 0.13 2.03 0.01 0.00 +disjointes disjoint adj f p 0.13 2.03 0.00 1.28 +disjoints disjoindre ver m p 0.10 1.49 0.10 0.07 par:pas; +disjoncta disjoncter ver 3.31 0.68 0.00 0.14 ind:pas:3s; +disjonctais disjoncter ver 3.31 0.68 0.01 0.07 ind:imp:1s; +disjonctait disjoncter ver 3.31 0.68 0.02 0.00 ind:imp:3s; +disjoncte disjoncter ver 3.31 0.68 0.47 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disjonctent disjoncter ver 3.31 0.68 0.02 0.00 ind:pre:3p; +disjoncter disjoncter ver 3.31 0.68 0.40 0.20 inf; +disjoncterais disjoncter ver 3.31 0.68 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +disjoncterait disjoncter ver 3.31 0.68 0.04 0.07 cnd:pre:3s; +disjonctes disjoncter ver 3.31 0.68 0.57 0.00 ind:pre:2s; +disjoncteur disjoncteur nom m s 1.45 0.20 1.34 0.07 +disjoncteurs disjoncteur nom m p 1.45 0.20 0.11 0.14 +disjonctez disjoncter ver 3.31 0.68 0.03 0.00 imp:pre:2p;ind:pre:2p; +disjonction disjonction nom f s 0.00 0.14 0.00 0.07 +disjonctions disjonction nom f p 0.00 0.14 0.00 0.07 +disjoncté disjoncter ver m s 3.31 0.68 1.65 0.14 par:pas; +disjonctée disjoncter ver f s 3.31 0.68 0.05 0.07 par:pas; +disjonctés disjoncter ver m p 3.31 0.68 0.02 0.00 par:pas; +diskette diskette nom f s 0.00 0.81 0.00 0.81 +dislocation dislocation nom f s 0.16 1.35 0.16 1.28 +dislocations dislocation nom f p 0.16 1.35 0.00 0.07 +disloqua disloquer ver 0.54 4.80 0.00 0.14 ind:pas:3s; +disloquai disloquer ver 0.54 4.80 0.00 0.07 ind:pas:1s; +disloquaient disloquer ver 0.54 4.80 0.00 0.34 ind:imp:3p; +disloquait disloquer ver 0.54 4.80 0.00 0.27 ind:imp:3s; +disloquant disloquer ver 0.54 4.80 0.00 0.20 par:pre; +disloque disloquer ver 0.54 4.80 0.12 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disloquent disloquer ver 0.54 4.80 0.01 0.14 ind:pre:3p; +disloquer disloquer ver 0.54 4.80 0.18 0.88 inf; +disloquerai disloquer ver 0.54 4.80 0.01 0.00 ind:fut:1s; +disloqueront disloquer ver 0.54 4.80 0.00 0.07 ind:fut:3p; +disloquât disloquer ver 0.54 4.80 0.00 0.07 sub:imp:3s; +disloquèrent disloquer ver 0.54 4.80 0.00 0.20 ind:pas:3p; +disloqué disloqué adj m s 0.12 3.24 0.07 1.35 +disloquée disloquer ver f s 0.54 4.80 0.05 0.27 par:pas; +disloquées disloquer ver f p 0.54 4.80 0.01 0.14 par:pas; +disloqués disloquer ver m p 0.54 4.80 0.11 0.34 par:pas; +disons dire ver_sup 5946.17 4832.50 45.13 17.84 imp:pre:1p;ind:pre:1p; +disparûmes disparaître ver 166.13 183.31 0.01 0.07 ind:pas:1p; +disparût disparaître ver 166.13 183.31 0.01 1.01 sub:imp:3s; +disparaît disparaître ver 166.13 183.31 10.02 16.35 ind:pre:3s; +disparaîtra disparaître ver 166.13 183.31 3.04 1.35 ind:fut:3s; +disparaîtrai disparaître ver 166.13 183.31 0.41 0.07 ind:fut:1s; +disparaîtraient disparaître ver 166.13 183.31 0.34 0.54 cnd:pre:3p; +disparaîtrais disparaître ver 166.13 183.31 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +disparaîtrait disparaître ver 166.13 183.31 0.73 1.28 cnd:pre:3s; +disparaîtras disparaître ver 166.13 183.31 0.22 0.00 ind:fut:2s; +disparaître disparaître ver 166.13 183.31 27.16 36.76 inf; +disparaîtrez disparaître ver 166.13 183.31 0.12 0.14 ind:fut:2p; +disparaîtrions disparaître ver 166.13 183.31 0.01 0.00 cnd:pre:1p; +disparaîtrons disparaître ver 166.13 183.31 0.18 0.07 ind:fut:1p; +disparaîtront disparaître ver 166.13 183.31 0.59 1.01 ind:fut:3p; +disparais disparaître ver 166.13 183.31 8.97 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +disparaissaient disparaître ver 166.13 183.31 0.33 6.01 ind:imp:3p; +disparaissais disparaître ver 166.13 183.31 0.29 0.54 ind:imp:1s;ind:imp:2s; +disparaissait disparaître ver 166.13 183.31 1.11 11.15 ind:imp:3s; +disparaissant disparaître ver 166.13 183.31 0.32 4.73 par:pre; +disparaissante disparaissant adj f s 0.01 1.15 0.00 0.07 +disparaisse disparaître ver 166.13 183.31 2.94 2.43 sub:pre:1s;sub:pre:3s; +disparaissent disparaître ver 166.13 183.31 6.65 6.42 ind:pre:3p; +disparaisses disparaître ver 166.13 183.31 0.23 0.07 sub:pre:2s; +disparaissez disparaître ver 166.13 183.31 4.32 0.95 imp:pre:2p;ind:pre:2p; +disparaissiez disparaître ver 166.13 183.31 0.17 0.00 ind:imp:2p; +disparaissions disparaître ver 166.13 183.31 0.14 0.34 ind:imp:1p; +disparaissons disparaître ver 166.13 183.31 0.23 0.00 imp:pre:1p;ind:pre:1p; +disparate disparate adj s 0.27 3.18 0.02 1.28 +disparates disparate adj p 0.27 3.18 0.25 1.89 +disparition disparition nom f s 16.33 23.38 14.83 22.30 +disparitions disparition nom f p 16.33 23.38 1.50 1.08 +disparité disparité nom f s 0.07 0.27 0.07 0.27 +disparu disparaître ver m s 166.13 183.31 86.21 58.78 par:pas; +disparue disparaître ver f s 166.13 183.31 4.33 1.42 par:pas; +disparues disparu adj f p 9.82 14.80 1.55 1.55 +disparurent disparaître ver 166.13 183.31 0.45 4.80 ind:pas:3p; +disparus disparu nom m p 10.07 6.42 3.27 2.77 +disparut disparaître ver 166.13 183.31 2.05 24.66 ind:pas:3s; +dispatchais dispatcher ver 0.07 0.07 0.01 0.00 ind:imp:1s; +dispatchait dispatcher ver 0.07 0.07 0.00 0.07 ind:imp:3s; +dispatche dispatcher ver 0.07 0.07 0.04 0.00 imp:pre:2s;ind:pre:3s; +dispatcher dispatcher ver 0.07 0.07 0.01 0.00 inf; +dispatching dispatching nom m s 0.12 0.14 0.12 0.14 +dispendieuse dispendieux adj f s 0.07 0.47 0.00 0.14 +dispendieusement dispendieusement adv 0.00 0.07 0.00 0.07 +dispendieux dispendieux adj m 0.07 0.47 0.07 0.34 +dispensa dispenser ver 3.27 11.15 0.00 0.54 ind:pas:3s; +dispensable dispensable adj s 0.01 0.00 0.01 0.00 +dispensaient dispenser ver 3.27 11.15 0.02 0.34 ind:imp:3p; +dispensaire dispensaire nom m s 1.76 1.69 1.71 1.28 +dispensaires dispensaire nom m p 1.76 1.69 0.04 0.41 +dispensais dispenser ver 3.27 11.15 0.00 0.14 ind:imp:1s; +dispensait dispenser ver 3.27 11.15 0.38 1.89 ind:imp:3s; +dispensant dispenser ver 3.27 11.15 0.01 0.47 par:pre; +dispensateur dispensateur nom m s 0.02 1.15 0.02 0.20 +dispensateurs dispensateur nom m p 0.02 1.15 0.00 0.27 +dispensation dispensation nom f s 0.00 0.07 0.00 0.07 +dispensatrice dispensateur nom f s 0.02 1.15 0.00 0.54 +dispensatrices dispensateur nom f p 0.02 1.15 0.00 0.14 +dispense dispenser ver 3.27 11.15 1.14 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dispensent dispenser ver 3.27 11.15 0.25 0.68 ind:pre:3p; +dispenser dispenser ver 3.27 11.15 0.33 1.76 inf; +dispenserait dispenser ver 3.27 11.15 0.03 0.20 cnd:pre:3s; +dispenseras dispenser ver 3.27 11.15 0.00 0.07 ind:fut:2s; +dispenses dispenser ver 3.27 11.15 0.03 0.00 ind:pre:2s; +dispensez dispenser ver 3.27 11.15 0.17 0.07 imp:pre:2p;ind:pre:2p; +dispensât dispenser ver 3.27 11.15 0.00 0.07 sub:imp:3s; +dispensèrent dispenser ver 3.27 11.15 0.01 0.00 ind:pas:3p; +dispensé dispenser ver m s 3.27 11.15 0.47 2.03 par:pas; +dispensée dispenser ver f s 3.27 11.15 0.35 0.61 par:pas; +dispensées dispenser ver f p 3.27 11.15 0.01 0.07 par:pas; +dispensés dispenser ver m p 3.27 11.15 0.07 0.34 par:pas; +dispersa disperser ver 10.58 18.85 0.01 1.22 ind:pas:3s; +dispersaient disperser ver 10.58 18.85 0.01 1.15 ind:imp:3p; +dispersait disperser ver 10.58 18.85 0.02 1.55 ind:imp:3s; +dispersant disperser ver 10.58 18.85 0.04 0.74 par:pre; +disperse disperser ver 10.58 18.85 1.35 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dispersement dispersement nom m s 0.01 0.14 0.01 0.14 +dispersent disperser ver 10.58 18.85 0.35 0.95 ind:pre:3p; +disperser disperser ver 10.58 18.85 2.27 2.97 inf;; +dispersera disperser ver 10.58 18.85 0.08 0.07 ind:fut:3s; +disperserai disperser ver 10.58 18.85 0.16 0.00 ind:fut:1s; +disperseraient disperser ver 10.58 18.85 0.01 0.07 cnd:pre:3p; +disperserait disperser ver 10.58 18.85 0.00 0.14 cnd:pre:3s; +disperserons disperser ver 10.58 18.85 0.01 0.07 ind:fut:1p; +disperseront disperser ver 10.58 18.85 0.02 0.07 ind:fut:3p; +disperses disperser ver 10.58 18.85 0.12 0.14 ind:pre:2s; +dispersez disperser ver 10.58 18.85 3.24 0.07 imp:pre:2p;ind:pre:2p; +dispersif dispersif adj m s 0.01 0.00 0.01 0.00 +dispersion dispersion nom f s 0.93 4.19 0.93 4.12 +dispersions disperser ver 10.58 18.85 0.10 0.07 ind:imp:1p; +dispersons disperser ver 10.58 18.85 0.30 0.00 imp:pre:1p;ind:pre:1p; +dispersât disperser ver 10.58 18.85 0.00 0.07 sub:imp:3s; +dispersèrent disperser ver 10.58 18.85 0.00 1.35 ind:pas:3p; +dispersé disperser ver m s 10.58 18.85 0.86 1.35 par:pas; +dispersée disperser ver f s 10.58 18.85 0.36 0.88 par:pas; +dispersées disperser ver f p 10.58 18.85 0.41 0.88 par:pas; +dispersés disperser ver m p 10.58 18.85 0.86 2.91 par:pas; +dispo dispo adj s 0.44 0.00 0.44 0.00 +disponibilité disponibilité nom f s 1.23 3.58 1.01 2.64 +disponibilités disponibilité nom f p 1.23 3.58 0.21 0.95 +disponible disponible adj s 13.19 11.96 8.74 7.84 +disponibles disponible adj p 13.19 11.96 4.46 4.12 +dispos dispos adj m 0.80 2.03 0.75 1.69 +disposa disposer ver 21.07 83.18 0.00 3.24 ind:pas:3s; +disposai disposer ver 21.07 83.18 0.01 0.34 ind:pas:1s; +disposaient disposer ver 21.07 83.18 0.05 3.31 ind:imp:3p; +disposais disposer ver 21.07 83.18 0.08 2.77 ind:imp:1s;ind:imp:2s; +disposait disposer ver 21.07 83.18 0.14 11.01 ind:imp:3s; +disposant disposer ver 21.07 83.18 0.16 3.92 par:pre; +disposas disposer ver 21.07 83.18 0.00 0.07 ind:pas:2s; +dispose disposer ver 21.07 83.18 3.48 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disposent disposer ver 21.07 83.18 0.56 2.36 ind:pre:3p; +disposer disposer ver 21.07 83.18 7.40 12.64 inf; +disposera disposer ver 21.07 83.18 0.21 0.34 ind:fut:3s; +disposerai disposer ver 21.07 83.18 0.17 0.07 ind:fut:1s; +disposeraient disposer ver 21.07 83.18 0.00 0.20 cnd:pre:3p; +disposerais disposer ver 21.07 83.18 0.00 0.27 cnd:pre:1s; +disposerait disposer ver 21.07 83.18 0.01 1.08 cnd:pre:3s; +disposeras disposer ver 21.07 83.18 0.00 0.07 ind:fut:2s; +disposerez disposer ver 21.07 83.18 0.17 0.27 ind:fut:2p; +disposerons disposer ver 21.07 83.18 0.13 0.07 ind:fut:1p; +disposeront disposer ver 21.07 83.18 0.00 0.20 ind:fut:3p; +disposes disposer ver 21.07 83.18 0.34 0.34 ind:pre:2s; +disposez disposer ver 21.07 83.18 2.15 0.81 imp:pre:2p;ind:pre:2p; +disposiez disposer ver 21.07 83.18 0.02 0.07 ind:imp:2p; +disposions disposer ver 21.07 83.18 0.10 1.42 ind:imp:1p; +dispositif dispositif nom m s 5.38 5.74 4.65 5.07 +dispositifs dispositif nom m p 5.38 5.74 0.73 0.68 +disposition disposition nom f s 14.99 45.07 11.62 27.91 +dispositions disposition nom f p 14.99 45.07 3.37 17.16 +disposâmes disposer ver 21.07 83.18 0.00 0.07 ind:pas:1p; +disposons disposer ver 21.07 83.18 0.81 1.22 imp:pre:1p;ind:pre:1p; +disposât disposer ver 21.07 83.18 0.00 0.68 sub:imp:3s; +disposèrent disposer ver 21.07 83.18 0.00 0.27 ind:pas:3p; +disposé disposer ver m s 21.07 83.18 2.96 12.91 par:pas; +disposée disposer ver f s 21.07 83.18 0.94 2.43 par:pas; +disposées disposer ver f p 21.07 83.18 0.26 3.24 par:pas; +disposés disposer ver m p 21.07 83.18 0.91 7.97 par:pas; +disproportion disproportion nom f s 0.27 0.95 0.27 0.88 +disproportionnelle disproportionnel adj f s 0.01 0.00 0.01 0.00 +disproportionné disproportionner ver m s 0.45 0.81 0.22 0.41 par:pas; +disproportionnée disproportionné adj f s 0.52 0.95 0.29 0.34 +disproportionnées disproportionner ver f p 0.45 0.81 0.11 0.00 par:pas; +disproportionnés disproportionné adj m p 0.52 0.95 0.03 0.20 +disproportions disproportion nom f p 0.27 0.95 0.00 0.07 +disputa disputer ver 39.31 22.09 0.00 0.20 ind:pas:3s; +disputaient disputer ver 39.31 22.09 1.21 4.46 ind:imp:3p; +disputais disputer ver 39.31 22.09 0.15 0.00 ind:imp:1s;ind:imp:2s; +disputait disputer ver 39.31 22.09 1.73 2.09 ind:imp:3s; +disputant disputer ver 39.31 22.09 0.37 1.42 par:pre; +dispute dispute nom f s 16.54 12.43 11.48 6.96 +disputent disputer ver 39.31 22.09 3.16 2.09 ind:pre:3p; +disputer disputer ver 39.31 22.09 10.54 4.12 ind:pre:2p;inf; +disputera disputer ver 39.31 22.09 0.48 0.14 ind:fut:3s; +disputerai disputer ver 39.31 22.09 0.22 0.00 ind:fut:1s; +disputeraient disputer ver 39.31 22.09 0.03 0.07 cnd:pre:3p; +disputerait disputer ver 39.31 22.09 0.20 0.07 cnd:pre:3s; +disputerez disputer ver 39.31 22.09 0.02 0.00 ind:fut:2p; +disputerons disputer ver 39.31 22.09 0.11 0.00 ind:fut:1p; +disputeront disputer ver 39.31 22.09 0.59 0.07 ind:fut:3p; +disputes dispute nom f p 16.54 12.43 5.07 5.47 +disputeur disputeur nom m s 0.00 0.07 0.00 0.07 +disputez disputer ver 39.31 22.09 2.37 0.20 imp:pre:2p;ind:pre:2p; +disputiez disputer ver 39.31 22.09 0.74 0.00 ind:imp:2p; +disputions disputer ver 39.31 22.09 0.15 0.61 ind:imp:1p; +disputâmes disputer ver 39.31 22.09 0.01 0.34 ind:pas:1p; +disputons disputer ver 39.31 22.09 1.27 0.47 imp:pre:1p;ind:pre:1p; +disputât disputer ver 39.31 22.09 0.00 0.20 sub:imp:3s; +disputèrent disputer ver 39.31 22.09 0.01 1.08 ind:pas:3p; +disputé disputer ver m s 39.31 22.09 2.96 1.08 par:pas; +disputée disputer ver f s 39.31 22.09 1.22 0.61 par:pas; +disputées disputer ver f p 39.31 22.09 0.83 0.14 par:pas; +disputés disputer ver m p 39.31 22.09 6.59 0.95 par:pas; +disquaire disquaire nom s 0.46 0.54 0.42 0.41 +disquaires disquaire nom p 0.46 0.54 0.04 0.14 +disqualifiait disqualifier ver 1.51 0.81 0.00 0.07 ind:imp:3s; +disqualifiant disqualifier ver 1.51 0.81 0.01 0.00 par:pre; +disqualification disqualification nom f s 0.15 0.07 0.14 0.07 +disqualifications disqualification nom f p 0.15 0.07 0.01 0.00 +disqualifie disqualifier ver 1.51 0.81 0.19 0.07 ind:pre:1s;ind:pre:3s; +disqualifient disqualifier ver 1.51 0.81 0.15 0.00 ind:pre:3p; +disqualifier disqualifier ver 1.51 0.81 0.14 0.20 inf; +disqualifié disqualifier ver m s 1.51 0.81 0.59 0.27 par:pas; +disqualifiée disqualifier ver f s 1.51 0.81 0.17 0.07 par:pas; +disqualifiées disqualifier ver f p 1.51 0.81 0.05 0.00 par:pas; +disqualifiés disqualifier ver m p 1.51 0.81 0.21 0.14 par:pas; +disque_jockey disque_jockey nom m s 0.01 0.07 0.01 0.07 +disque disque nom m s 33.61 42.16 20.36 21.49 +disques disque nom m p 33.61 42.16 13.26 20.68 +disquette disquette nom f s 2.48 0.41 1.81 0.41 +disquettes disquette nom f p 2.48 0.41 0.67 0.00 +disruptif disruptif adj m s 0.01 0.00 0.01 0.00 +disruption disruption nom f s 0.01 0.00 0.01 0.00 +dissection dissection nom f s 0.88 0.68 0.61 0.54 +dissections dissection nom f p 0.88 0.68 0.28 0.14 +dissemblable dissemblable adj s 0.05 1.69 0.02 0.34 +dissemblables dissemblable adj p 0.05 1.69 0.03 1.35 +dissemblance dissemblance nom f s 0.00 0.27 0.00 0.27 +dissension dissension nom f s 0.47 1.28 0.11 0.34 +dissensions dissension nom f p 0.47 1.28 0.36 0.95 +dissent dire ver_sup 5946.17 4832.50 0.04 0.00 sub:imp:3p; +dissentiment dissentiment nom m s 0.02 0.34 0.02 0.14 +dissentiments dissentiment nom m p 0.02 0.34 0.00 0.20 +dissertait disserter ver 0.22 1.28 0.02 0.20 ind:imp:3s; +dissertant disserter ver 0.22 1.28 0.00 0.14 par:pre; +dissertation dissertation nom f s 1.50 3.04 1.40 2.03 +dissertations dissertation nom f p 1.50 3.04 0.10 1.01 +disserte disserter ver 0.22 1.28 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissertent disserter ver 0.22 1.28 0.00 0.14 ind:pre:3p; +disserter disserter ver 0.22 1.28 0.04 0.68 inf; +disserterait disserter ver 0.22 1.28 0.01 0.00 cnd:pre:3s; +dissertes disserter ver 0.22 1.28 0.01 0.00 ind:pre:2s; +disserté disserter ver m s 0.22 1.28 0.02 0.07 par:pas; +dissidence dissidence nom f s 0.28 0.81 0.27 0.74 +dissidences dissidence nom f p 0.28 0.81 0.01 0.07 +dissident dissident nom m s 0.88 0.68 0.33 0.07 +dissidente dissident adj f s 0.61 0.81 0.09 0.14 +dissidentes dissident adj f p 0.61 0.81 0.02 0.20 +dissidents dissident nom m p 0.88 0.68 0.55 0.54 +dissimilaires dissimilaire adj p 0.01 0.00 0.01 0.00 +dissimiler dissimiler ver 0.01 0.00 0.01 0.00 inf; +dissimula dissimuler ver 8.67 51.01 0.14 1.55 ind:pas:3s; +dissimulables dissimulable adj p 0.00 0.07 0.00 0.07 +dissimulai dissimuler ver 8.67 51.01 0.00 0.14 ind:pas:1s; +dissimulaient dissimuler ver 8.67 51.01 0.04 2.30 ind:imp:3p; +dissimulais dissimuler ver 8.67 51.01 0.03 0.88 ind:imp:1s;ind:imp:2s; +dissimulait dissimuler ver 8.67 51.01 0.30 6.76 ind:imp:3s; +dissimulant dissimuler ver 8.67 51.01 0.26 3.18 par:pre; +dissimulateur dissimulateur adj m s 0.04 0.20 0.01 0.07 +dissimulateurs dissimulateur adj m p 0.04 0.20 0.02 0.00 +dissimulation dissimulation nom f s 1.47 2.30 1.35 2.23 +dissimulations dissimulation nom f p 1.47 2.30 0.11 0.07 +dissimulatrice dissimulateur adj f s 0.04 0.20 0.00 0.07 +dissimulatrices dissimulateur adj f p 0.04 0.20 0.00 0.07 +dissimule dissimuler ver 8.67 51.01 1.22 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissimulent dissimuler ver 8.67 51.01 0.11 1.35 ind:pre:3p; +dissimuler dissimuler ver 8.67 51.01 3.72 15.68 inf; +dissimulera dissimuler ver 8.67 51.01 0.01 0.00 ind:fut:3s; +dissimuleraient dissimuler ver 8.67 51.01 0.01 0.00 cnd:pre:3p; +dissimulerais dissimuler ver 8.67 51.01 0.00 0.07 cnd:pre:1s; +dissimulerait dissimuler ver 8.67 51.01 0.04 0.41 cnd:pre:3s; +dissimulerons dissimuler ver 8.67 51.01 0.00 0.07 ind:fut:1p; +dissimules dissimuler ver 8.67 51.01 0.02 0.00 ind:pre:2s; +dissimulez dissimuler ver 8.67 51.01 0.53 0.07 imp:pre:2p;ind:pre:2p; +dissimuliez dissimuler ver 8.67 51.01 0.00 0.07 ind:imp:2p; +dissimulions dissimuler ver 8.67 51.01 0.00 0.34 ind:imp:1p; +dissimulons dissimuler ver 8.67 51.01 0.04 0.27 imp:pre:1p;ind:pre:1p; +dissimulât dissimuler ver 8.67 51.01 0.00 0.14 sub:imp:3s; +dissimulèrent dissimuler ver 8.67 51.01 0.00 0.20 ind:pas:3p; +dissimulé dissimuler ver m s 8.67 51.01 1.24 7.43 par:pas; +dissimulée dissimuler ver f s 8.67 51.01 0.31 3.24 par:pas; +dissimulées dissimuler ver f p 8.67 51.01 0.20 0.81 par:pas; +dissimulés dissimuler ver m p 8.67 51.01 0.45 2.77 par:pas; +dissipa dissiper ver 4.76 19.59 0.12 1.62 ind:pas:3s; +dissipaient dissiper ver 4.76 19.59 0.01 0.54 ind:imp:3p; +dissipait dissiper ver 4.76 19.59 0.01 2.70 ind:imp:3s; +dissipant dissiper ver 4.76 19.59 0.03 0.47 par:pre; +dissipateur dissipateur nom m s 0.01 0.27 0.01 0.20 +dissipateurs dissipateur nom m p 0.01 0.27 0.00 0.07 +dissipation dissipation nom f s 0.04 0.95 0.04 0.61 +dissipations dissipation nom f p 0.04 0.95 0.00 0.34 +dissipe dissiper ver 4.76 19.59 1.26 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissipent dissiper ver 4.76 19.59 0.22 0.54 ind:pre:3p; +dissiper dissiper ver 4.76 19.59 1.43 5.88 inf; +dissipera dissiper ver 4.76 19.59 0.33 0.07 ind:fut:3s; +dissiperais dissiper ver 4.76 19.59 0.00 0.07 cnd:pre:1s; +dissiperait dissiper ver 4.76 19.59 0.04 0.20 cnd:pre:3s; +dissiperont dissiper ver 4.76 19.59 0.08 0.07 ind:fut:3p; +dissipez dissiper ver 4.76 19.59 0.05 0.00 imp:pre:2p;ind:pre:2p; +dissipèrent dissiper ver 4.76 19.59 0.01 0.14 ind:pas:3p; +dissipé dissiper ver m s 4.76 19.59 0.75 2.30 par:pas; +dissipée dissiper ver f s 4.76 19.59 0.34 1.89 par:pas; +dissipées dissipé adj f p 0.29 1.49 0.03 0.14 +dissipés dissiper ver m p 4.76 19.59 0.07 0.34 par:pas; +dissocia dissocier ver 0.83 3.04 0.00 0.14 ind:pas:3s; +dissociaient dissocier ver 0.83 3.04 0.00 0.14 ind:imp:3p; +dissociait dissocier ver 0.83 3.04 0.00 0.27 ind:imp:3s; +dissociant dissocier ver 0.83 3.04 0.00 0.14 par:pre; +dissociatif dissociatif adj m s 0.28 0.00 0.17 0.00 +dissociatifs dissociatif adj m p 0.28 0.00 0.01 0.00 +dissociation dissociation nom f s 0.32 0.41 0.32 0.34 +dissociations dissociation nom f p 0.32 0.41 0.00 0.07 +dissociative dissociatif adj f s 0.28 0.00 0.10 0.00 +dissocie dissocier ver 0.83 3.04 0.02 0.07 ind:pre:1s;ind:pre:3s; +dissocient dissocier ver 0.83 3.04 0.01 0.14 ind:pre:3p; +dissocier dissocier ver 0.83 3.04 0.33 0.95 inf; +dissocierons dissocier ver 0.83 3.04 0.00 0.07 ind:fut:1p; +dissocié dissocier ver m s 0.83 3.04 0.33 0.61 par:pas; +dissociée dissocier ver f s 0.83 3.04 0.07 0.00 par:pas; +dissociées dissocier ver f p 0.83 3.04 0.03 0.14 par:pas; +dissociés dissocier ver m p 0.83 3.04 0.04 0.41 par:pas; +dissolu dissolu adj m s 0.82 0.68 0.12 0.07 +dissolue dissolu adj f s 0.82 0.68 0.47 0.41 +dissolues dissolu adj f p 0.82 0.68 0.12 0.14 +dissolus dissolu adj m p 0.82 0.68 0.11 0.07 +dissolution dissolution nom f s 0.80 2.50 0.80 2.50 +dissolvaient dissoudre ver 3.94 12.30 0.00 0.81 ind:imp:3p; +dissolvait dissoudre ver 3.94 12.30 0.01 1.01 ind:imp:3s; +dissolvant dissolvant nom m s 0.41 0.34 0.38 0.34 +dissolvante dissolvant adj f s 0.01 1.01 0.00 0.34 +dissolvantes dissolvant adj f p 0.01 1.01 0.00 0.14 +dissolvants dissolvant nom m p 0.41 0.34 0.03 0.00 +dissolve dissoudre ver 3.94 12.30 0.07 0.14 sub:pre:3s; +dissolvent dissoudre ver 3.94 12.30 0.04 0.41 ind:pre:3p; +dissolves dissoudre ver 3.94 12.30 0.01 0.00 sub:pre:2s; +dissonance dissonance nom f s 0.42 0.54 0.14 0.20 +dissonances dissonance nom f p 0.42 0.54 0.28 0.34 +dissonant dissoner ver 0.01 0.00 0.01 0.00 par:pre; +dissonants dissonant adj m p 0.00 0.27 0.00 0.07 +dissoudra dissoudre ver 3.94 12.30 0.03 0.07 ind:fut:3s; +dissoudrai dissoudre ver 3.94 12.30 0.00 0.07 ind:fut:1s; +dissoudrait dissoudre ver 3.94 12.30 0.01 0.07 cnd:pre:3s; +dissoudre dissoudre ver 3.94 12.30 1.38 6.55 inf; +dissoudront dissoudre ver 3.94 12.30 0.04 0.00 ind:fut:3p; +dissous dissoudre ver m 3.94 12.30 1.19 1.42 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +dissout dissoudre ver 3.94 12.30 1.03 1.08 ind:pre:3s; +dissoute dissoute adj f s 0.46 2.57 0.40 1.42 +dissoutes dissoute adj f p 0.46 2.57 0.07 1.15 +dissèque disséquer ver 1.56 2.16 0.29 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissèquent disséquer ver 1.56 2.16 0.01 0.14 ind:pre:3p; +dissuada dissuader ver 3.66 3.72 0.00 0.47 ind:pas:3s; +dissuadai dissuader ver 3.66 3.72 0.00 0.20 ind:pas:1s; +dissuadait dissuader ver 3.66 3.72 0.01 0.20 ind:imp:3s; +dissuadant dissuader ver 3.66 3.72 0.01 0.14 par:pre; +dissuade dissuader ver 3.66 3.72 0.15 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissuadent dissuader ver 3.66 3.72 0.02 0.14 ind:pre:3p; +dissuader dissuader ver 3.66 3.72 2.62 1.96 inf; +dissuadera dissuader ver 3.66 3.72 0.10 0.00 ind:fut:3s; +dissuaderas dissuader ver 3.66 3.72 0.01 0.00 ind:fut:2s; +dissuaderez dissuader ver 3.66 3.72 0.03 0.00 ind:fut:2p; +dissuaderont dissuader ver 3.66 3.72 0.02 0.00 ind:fut:3p; +dissuadez dissuader ver 3.66 3.72 0.26 0.00 imp:pre:2p; +dissuadiez dissuader ver 3.66 3.72 0.01 0.00 ind:imp:2p; +dissuadèrent dissuader ver 3.66 3.72 0.00 0.07 ind:pas:3p; +dissuadé dissuader ver m s 3.66 3.72 0.25 0.34 par:pas; +dissuadée dissuader ver f s 3.66 3.72 0.13 0.14 par:pas; +dissuadés dissuader ver m p 3.66 3.72 0.03 0.00 par:pas; +dissuasif dissuasif adj m s 0.21 0.07 0.19 0.07 +dissuasion dissuasion nom f s 0.29 0.27 0.29 0.27 +dissuasive dissuasif adj f s 0.21 0.07 0.02 0.00 +dissémina disséminer ver 0.46 2.16 0.00 0.07 ind:pas:3s; +disséminait disséminer ver 0.46 2.16 0.00 0.07 ind:imp:3s; +disséminant disséminer ver 0.46 2.16 0.01 0.00 par:pre; +dissémination dissémination nom f s 0.07 0.14 0.07 0.14 +disséminent disséminer ver 0.46 2.16 0.01 0.00 ind:pre:3p; +disséminer disséminer ver 0.46 2.16 0.18 0.07 inf; +disséminèrent disséminer ver 0.46 2.16 0.00 0.07 ind:pas:3p; +disséminé disséminé adj m s 0.08 0.47 0.02 0.00 +disséminée disséminé adj f s 0.08 0.47 0.01 0.14 +disséminées disséminer ver f p 0.46 2.16 0.06 0.74 par:pas; +disséminés disséminer ver m p 0.46 2.16 0.17 1.15 par:pas; +disséquai disséquer ver 1.56 2.16 0.01 0.00 ind:pas:1s; +disséquait disséquer ver 1.56 2.16 0.01 0.07 ind:imp:3s; +disséquant disséquer ver 1.56 2.16 0.03 0.00 par:pre; +disséquer disséquer ver 1.56 2.16 0.64 0.88 inf;; +disséqueraient disséquer ver 1.56 2.16 0.00 0.07 cnd:pre:3p; +disséquerais disséquer ver 1.56 2.16 0.02 0.00 cnd:pre:1s; +disséqueur disséqueur nom m s 0.01 0.00 0.01 0.00 +disséquez disséquer ver 1.56 2.16 0.07 0.00 imp:pre:2p; +disséquiez disséquer ver 1.56 2.16 0.03 0.00 ind:imp:2p; +disséquions disséquer ver 1.56 2.16 0.00 0.07 ind:imp:1p; +disséquons disséquer ver 1.56 2.16 0.03 0.00 ind:pre:1p; +disséqué disséquer ver m s 1.56 2.16 0.32 0.47 par:pas; +disséquée disséquer ver f s 1.56 2.16 0.07 0.14 par:pas; +disséqués disséquer ver m p 1.56 2.16 0.04 0.14 par:pas; +dissymétrie dissymétrie nom f s 0.14 0.54 0.14 0.54 +dissymétrique dissymétrique adj m s 0.00 0.27 0.00 0.07 +dissymétriques dissymétrique adj p 0.00 0.27 0.00 0.20 +distal distal adj m s 0.19 0.00 0.15 0.00 +distale distal adj f s 0.19 0.00 0.01 0.00 +distance distance nom f s 31.56 62.43 26.13 52.64 +distancent distancer ver 1.25 1.96 0.01 0.00 ind:pre:3p; +distancer distancer ver 1.25 1.96 0.30 0.47 inf; +distancerez distancer ver 1.25 1.96 0.01 0.00 ind:fut:2p; +distances distance nom f p 31.56 62.43 5.43 9.80 +distanciation distanciation nom f s 0.01 0.00 0.01 0.00 +distancier distancier ver 0.25 0.00 0.15 0.00 inf; +distancié distancier ver m s 0.25 0.00 0.10 0.00 par:pas; +distancé distancer ver m s 1.25 1.96 0.08 0.34 par:pas; +distancée distancer ver f s 1.25 1.96 0.12 0.14 par:pas; +distancés distancer ver m p 1.25 1.96 0.03 0.61 par:pas; +distant distant adj m s 3.48 7.50 2.47 2.64 +distante distant adj f s 3.48 7.50 0.66 2.91 +distantes distant adj f p 3.48 7.50 0.08 0.74 +distança distancer ver 1.25 1.96 0.00 0.20 ind:pas:3s; +distançait distancer ver 1.25 1.96 0.00 0.07 ind:imp:3s; +distançant distancer ver 1.25 1.96 0.01 0.14 par:pre; +distançons distancer ver 1.25 1.96 0.01 0.00 imp:pre:1p; +distants distant adj m p 3.48 7.50 0.28 1.22 +distaux distal adj m p 0.19 0.00 0.03 0.00 +distend distendre ver 0.41 3.24 0.02 0.74 ind:pre:3s; +distendaient distendre ver 0.41 3.24 0.00 0.07 ind:imp:3p; +distendait distendre ver 0.41 3.24 0.00 0.34 ind:imp:3s; +distendant distendre ver 0.41 3.24 0.00 0.14 par:pre; +distende distendre ver 0.41 3.24 0.00 0.07 sub:pre:3s; +distendent distendre ver 0.41 3.24 0.00 0.14 ind:pre:3p; +distendit distendre ver 0.41 3.24 0.00 0.07 ind:pas:3s; +distendrait distendre ver 0.41 3.24 0.00 0.07 cnd:pre:3s; +distendre distendre ver 0.41 3.24 0.00 0.41 inf; +distendu distendre ver m s 0.41 3.24 0.11 0.20 par:pas; +distendue distendu adj f s 0.13 2.64 0.01 0.34 +distendues distendre ver f p 0.41 3.24 0.01 0.20 par:pas; +distendus distendre ver m p 0.41 3.24 0.27 0.47 par:pas; +distension distension nom f s 0.07 0.07 0.07 0.07 +distillaient distiller ver 1.13 4.05 0.00 0.07 ind:imp:3p; +distillait distiller ver 1.13 4.05 0.00 0.81 ind:imp:3s; +distillant distiller ver 1.13 4.05 0.01 0.27 par:pre; +distillat distillat nom m s 0.07 0.00 0.07 0.00 +distillateur distillateur nom m s 0.05 0.14 0.02 0.07 +distillateurs distillateur nom m p 0.05 0.14 0.03 0.07 +distillation distillation nom f s 0.04 0.47 0.04 0.41 +distillations distillation nom f p 0.04 0.47 0.00 0.07 +distille distiller ver 1.13 4.05 0.14 0.95 ind:pre:1s;ind:pre:3s; +distillent distiller ver 1.13 4.05 0.15 0.27 ind:pre:3p; +distiller distiller ver 1.13 4.05 0.23 0.61 inf; +distillera distiller ver 1.13 4.05 0.00 0.07 ind:fut:3s; +distillerie distillerie nom f s 0.98 0.41 0.84 0.41 +distilleries distillerie nom f p 0.98 0.41 0.14 0.00 +distilleront distiller ver 1.13 4.05 0.00 0.07 ind:fut:3p; +distillez distiller ver 1.13 4.05 0.03 0.00 imp:pre:2p;ind:pre:2p; +distillé distiller ver m s 1.13 4.05 0.25 0.54 par:pas; +distillée distiller ver f s 1.13 4.05 0.27 0.27 par:pas; +distillées distiller ver f p 1.13 4.05 0.00 0.07 par:pas; +distillés distiller ver m p 1.13 4.05 0.05 0.07 par:pas; +distinct distinct adj m s 2.56 9.46 0.31 2.43 +distincte distinct adj f s 2.56 9.46 0.26 2.64 +distinctement distinctement adv 1.48 6.76 1.48 6.76 +distinctes distinct adj f p 2.56 9.46 1.38 2.30 +distinctif distinctif adj m s 0.71 1.62 0.34 1.15 +distinctifs distinctif adj m p 0.71 1.62 0.28 0.27 +distinction distinction nom f s 2.86 10.14 2.38 9.19 +distinctions distinction nom f p 2.86 10.14 0.48 0.95 +distinctive distinctif adj f s 0.71 1.62 0.06 0.14 +distinctives distinctif adj f p 0.71 1.62 0.03 0.07 +distincts distinct adj m p 2.56 9.46 0.61 2.09 +distingua distinguer ver 12.77 74.12 0.01 4.39 ind:pas:3s; +distinguai distinguer ver 12.77 74.12 0.00 1.28 ind:pas:1s; +distinguaient distinguer ver 12.77 74.12 0.02 2.64 ind:imp:3p; +distinguais distinguer ver 12.77 74.12 0.40 2.97 ind:imp:1s; +distinguait distinguer ver 12.77 74.12 0.52 12.97 ind:imp:3s; +distinguant distinguer ver 12.77 74.12 0.00 0.74 par:pre; +distingue distinguer ver 12.77 74.12 3.59 15.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +distinguent distinguer ver 12.77 74.12 0.36 1.15 ind:pre:3p; +distinguer distinguer ver 12.77 74.12 5.74 24.12 inf; +distinguera distinguer ver 12.77 74.12 0.04 0.07 ind:fut:3s; +distingueraient distinguer ver 12.77 74.12 0.01 0.20 cnd:pre:3p; +distinguerait distinguer ver 12.77 74.12 0.00 0.27 cnd:pre:3s; +distinguerez distinguer ver 12.77 74.12 0.01 0.07 ind:fut:2p; +distingues distinguer ver 12.77 74.12 0.32 0.14 ind:pre:2s; +distinguez distinguer ver 12.77 74.12 0.22 0.14 imp:pre:2p;ind:pre:2p; +distinguions distinguer ver 12.77 74.12 0.10 0.41 ind:imp:1p; +distinguo distinguo nom m s 0.06 0.20 0.04 0.20 +distinguons distinguer ver 12.77 74.12 0.01 0.61 imp:pre:1p;ind:pre:1p; +distinguos distinguo nom m p 0.06 0.20 0.02 0.00 +distinguât distinguer ver 12.77 74.12 0.00 0.41 sub:imp:3s; +distinguèrent distinguer ver 12.77 74.12 0.00 0.54 ind:pas:3p; +distingué distingué adj m s 5.04 9.39 2.81 4.19 +distinguée distingué adj f s 5.04 9.39 1.23 2.16 +distinguées distingué adj f p 5.04 9.39 0.21 0.68 +distingués distingué adj m p 5.04 9.39 0.80 2.36 +distord distordre ver 0.10 0.61 0.00 0.07 ind:pre:3s; +distordant distordre ver 0.10 0.61 0.00 0.07 par:pre; +distordre distordre ver 0.10 0.61 0.01 0.07 inf; +distordu distordre ver m s 0.10 0.61 0.02 0.20 par:pas; +distordue distordre ver f s 0.10 0.61 0.06 0.14 par:pas; +distordues distordre ver f p 0.10 0.61 0.00 0.07 par:pas; +distorsion distorsion nom f s 1.05 0.61 0.80 0.27 +distorsions distorsion nom f p 1.05 0.61 0.26 0.34 +distraction distraction nom f s 3.98 14.05 2.80 9.19 +distractions distraction nom f p 3.98 14.05 1.18 4.86 +distractives distractif adj f p 0.00 0.07 0.00 0.07 +distraie distraire ver 15.99 27.77 0.02 0.20 sub:pre:1s;sub:pre:3s; +distraient distraire ver 15.99 27.77 0.37 0.27 ind:pre:3p;sub:pre:3p; +distraies distraire ver 15.99 27.77 0.01 0.07 sub:pre:2s; +distraira distraire ver 15.99 27.77 0.41 0.34 ind:fut:3s; +distrairaient distraire ver 15.99 27.77 0.00 0.07 cnd:pre:3p; +distrairait distraire ver 15.99 27.77 0.05 0.41 cnd:pre:3s; +distraire distraire ver 15.99 27.77 7.55 13.38 ind:pre:2p;inf; +distrairont distraire ver 15.99 27.77 0.01 0.07 ind:fut:3p; +distrais distraire ver 15.99 27.77 0.76 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +distrait distraire ver m s 15.99 27.77 4.45 6.76 ind:pre:3s;par:pas; +distraite distraire ver f s 15.99 27.77 1.20 2.50 par:pas; +distraitement distraitement adv 0.11 13.51 0.11 13.51 +distraites distraire ver f p 15.99 27.77 0.05 0.20 par:pas; +distraits distraire ver m p 15.99 27.77 0.29 0.74 par:pas; +distrayaient distraire ver 15.99 27.77 0.00 0.54 ind:imp:3p; +distrayais distraire ver 15.99 27.77 0.04 0.27 ind:imp:1s; +distrayait distraire ver 15.99 27.77 0.15 1.42 ind:imp:3s; +distrayant distrayant adj m s 0.94 1.08 0.64 0.81 +distrayante distrayant adj f s 0.94 1.08 0.25 0.00 +distrayantes distrayant adj f p 0.94 1.08 0.03 0.14 +distrayants distrayant adj m p 0.94 1.08 0.03 0.14 +distrayez distraire ver 15.99 27.77 0.34 0.00 imp:pre:2p;ind:pre:2p; +distrayons distraire ver 15.99 27.77 0.11 0.07 imp:pre:1p;ind:pre:1p; +distribua distribuer ver 14.06 25.54 0.18 1.55 ind:pas:3s; +distribuai distribuer ver 14.06 25.54 0.00 0.20 ind:pas:1s; +distribuaient distribuer ver 14.06 25.54 0.18 1.15 ind:imp:3p; +distribuais distribuer ver 14.06 25.54 0.14 0.14 ind:imp:1s;ind:imp:2s; +distribuait distribuer ver 14.06 25.54 0.41 4.59 ind:imp:3s; +distribuant distribuer ver 14.06 25.54 0.31 1.89 par:pre; +distribue distribuer ver 14.06 25.54 2.00 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +distribuent distribuer ver 14.06 25.54 0.42 0.81 ind:pre:3p; +distribuer distribuer ver 14.06 25.54 4.90 5.88 inf; +distribuera distribuer ver 14.06 25.54 0.15 0.20 ind:fut:3s; +distribuerai distribuer ver 14.06 25.54 0.36 0.00 ind:fut:1s; +distribuerais distribuer ver 14.06 25.54 0.02 0.00 cnd:pre:1s; +distribuerait distribuer ver 14.06 25.54 0.00 0.34 cnd:pre:3s; +distribuerez distribuer ver 14.06 25.54 0.19 0.00 ind:fut:2p; +distribuerions distribuer ver 14.06 25.54 0.00 0.07 cnd:pre:1p; +distribuerons distribuer ver 14.06 25.54 0.02 0.00 ind:fut:1p; +distribueront distribuer ver 14.06 25.54 0.04 0.07 ind:fut:3p; +distribues distribuer ver 14.06 25.54 0.56 0.00 ind:pre:2s; +distribuez distribuer ver 14.06 25.54 0.91 0.07 imp:pre:2p;ind:pre:2p; +distribuiez distribuer ver 14.06 25.54 0.01 0.00 ind:imp:2p; +distribuions distribuer ver 14.06 25.54 0.01 0.07 ind:imp:1p; +distribuons distribuer ver 14.06 25.54 0.10 0.07 imp:pre:1p;ind:pre:1p; +distribuât distribuer ver 14.06 25.54 0.00 0.07 sub:imp:3s; +distributeur distributeur nom m s 7.88 2.77 6.03 1.89 +distributeurs distributeur nom m p 7.88 2.77 1.84 0.81 +distribuèrent distribuer ver 14.06 25.54 0.00 0.07 ind:pas:3p; +distribution distribution nom f s 4.77 8.85 4.63 7.23 +distributions distribution nom f p 4.77 8.85 0.14 1.62 +distributive distributif adj f s 0.00 0.07 0.00 0.07 +distributrice distributeur nom f s 7.88 2.77 0.02 0.07 +distribué distribuer ver m s 14.06 25.54 2.17 2.16 par:pas; +distribuée distribuer ver f s 14.06 25.54 0.35 0.34 par:pas; +distribuées distribuer ver f p 14.06 25.54 0.34 0.95 par:pas; +distribués distribuer ver m p 14.06 25.54 0.28 1.42 par:pas; +district district nom m s 6.14 1.69 5.85 1.42 +districts district nom m p 6.14 1.69 0.29 0.27 +dit dire ver_sup m s 5946.17 4832.50 2146.01 2601.62 ind:fut:3p;ind:pre:3s;ind:pas:3s;par:pas; +dite dire ver_sup f s 5946.17 4832.50 4.53 9.19 par:pas; +dites dire ver_sup f p 5946.17 4832.50 311.69 77.43 imp:pre:2p;ind:pre:2p;par:pas; +dièdre dièdre nom m s 0.00 0.41 0.00 0.27 +dièdres dièdre nom m p 0.00 0.41 0.00 0.14 +dièse diéser ver 0.51 0.41 0.51 0.34 ind:pre:3s; +dièses dièse nom m p 0.27 0.27 0.02 0.14 +diète diète nom f s 0.42 0.54 0.42 0.54 +dithyrambe dithyrambe nom m s 0.00 0.34 0.00 0.14 +dithyrambes dithyrambe nom m p 0.00 0.34 0.00 0.20 +dithyrambique dithyrambique adj m s 0.03 0.47 0.01 0.27 +dithyrambiques dithyrambique adj p 0.03 0.47 0.02 0.20 +dito dito adv 0.00 0.34 0.00 0.34 +dits dire ver_sup m p 5946.17 4832.50 1.52 4.46 par:pas; +diurnal diurnal adj m s 0.00 0.07 0.00 0.07 +diurne diurne adj s 0.09 2.03 0.07 1.69 +diurnes diurne adj p 0.09 2.03 0.01 0.34 +diurèse diurèse nom f s 0.07 0.00 0.07 0.00 +diérèses diérèse nom f p 0.00 0.07 0.00 0.07 +diurétique diurétique adj s 0.28 0.00 0.14 0.00 +diurétiques diurétique adj p 0.28 0.00 0.14 0.00 +diéthylénique diéthylénique adj m s 0.01 0.00 0.01 0.00 +diététicien diététicien nom m s 0.09 0.61 0.03 0.54 +diététicienne diététicien nom f s 0.09 0.61 0.06 0.00 +diététiciens diététicien nom m p 0.09 0.61 0.00 0.07 +diététique diététique adj s 1.03 0.47 0.96 0.27 +diététiques diététique adj p 1.03 0.47 0.07 0.20 +diététiste diététiste nom s 0.01 0.00 0.01 0.00 +diva diva nom f s 4.16 1.28 3.60 1.22 +divagant divagant adj m s 0.00 0.20 0.00 0.14 +divagants divagant adj m p 0.00 0.20 0.00 0.07 +divagation divagation nom f s 0.53 2.23 0.00 0.61 +divagations divagation nom f p 0.53 2.23 0.53 1.62 +divaguaient divaguer ver 2.91 4.26 0.00 0.20 ind:imp:3p; +divaguait divaguer ver 2.91 4.26 0.19 0.74 ind:imp:3s; +divaguant divaguer ver 2.91 4.26 0.03 0.41 par:pre; +divague divaguer ver 2.91 4.26 1.27 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divaguent divaguer ver 2.91 4.26 0.01 0.27 ind:pre:3p; +divaguer divaguer ver 2.91 4.26 0.44 1.15 ind:pre:2p;inf; +divagues divaguer ver 2.91 4.26 0.59 0.07 ind:pre:2s; +divaguez divaguer ver 2.91 4.26 0.32 0.07 ind:pre:2p; +divagué divaguer ver m s 2.91 4.26 0.07 0.07 par:pas; +divan divan nom m s 4.92 24.46 4.89 21.55 +divans divan nom m p 4.92 24.46 0.03 2.91 +divas diva nom f p 4.16 1.28 0.56 0.07 +dive dive adj f s 0.00 0.20 0.00 0.20 +diverge diverger ver 0.57 1.01 0.17 0.00 ind:pre:3s; +divergeaient diverger ver 0.57 1.01 0.03 0.34 ind:imp:3p; +divergeait diverger ver 0.57 1.01 0.01 0.00 ind:imp:3s; +divergeant diverger ver 0.57 1.01 0.00 0.14 par:pre; +divergence divergence nom f s 1.19 2.84 0.41 0.95 +divergences divergence nom f p 1.19 2.84 0.77 1.89 +divergent diverger ver 0.57 1.01 0.25 0.20 ind:pre:3p; +divergente divergent adj f s 0.43 2.23 0.02 0.00 +divergentes divergent adj f p 0.43 2.23 0.31 0.68 +divergents divergent adj m p 0.43 2.23 0.03 0.95 +divergeons diverger ver 0.57 1.01 0.02 0.00 ind:pre:1p; +diverger diverger ver 0.57 1.01 0.01 0.27 inf; +divergez diverger ver 0.57 1.01 0.01 0.00 ind:pre:2p; +divergions diverger ver 0.57 1.01 0.01 0.00 ind:imp:1p; +divergé diverger ver m s 0.57 1.01 0.06 0.07 par:pas; +divers divers adj_ind m p 7.28 52.77 3.60 11.69 +diverse divers adj f s 7.28 52.77 0.03 0.68 +diversement diversement adv 0.04 0.74 0.04 0.74 +diverses diverses adj_ind f p 3.08 8.04 3.08 8.04 +diversifiant diversifier ver 0.54 0.88 0.00 0.07 par:pre; +diversification diversification nom f s 0.14 0.14 0.14 0.14 +diversifie diversifier ver 0.54 0.88 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diversifient diversifier ver 0.54 0.88 0.04 0.14 ind:pre:3p; +diversifier diversifier ver 0.54 0.88 0.23 0.41 inf; +diversifié diversifier ver m s 0.54 0.88 0.05 0.07 par:pas; +diversifiée diversifier ver f s 0.54 0.88 0.06 0.07 par:pas; +diversifiées diversifier ver f p 0.54 0.88 0.03 0.07 par:pas; +diversifiés diversifier ver m p 0.54 0.88 0.05 0.00 par:pas; +diversion diversion nom f s 4.33 6.22 4.26 6.01 +diversions diversion nom f p 4.33 6.22 0.07 0.20 +diversité diversité nom f s 1.02 3.85 1.01 3.78 +diversités diversité nom f p 1.02 3.85 0.01 0.07 +diverti divertir ver m s 4.49 4.26 0.28 0.68 par:pas; +diverticule diverticule nom m s 0.03 0.00 0.03 0.00 +diverticulose diverticulose nom f s 0.04 0.00 0.04 0.00 +divertie divertir ver f s 4.49 4.26 0.08 0.00 par:pas; +divertimento divertimento nom m s 0.00 0.14 0.00 0.14 +divertir divertir ver 4.49 4.26 2.71 1.82 inf; +divertira divertir ver 4.49 4.26 0.01 0.07 ind:fut:3s; +divertirait divertir ver 4.49 4.26 0.02 0.00 cnd:pre:3s; +divertirent divertir ver 4.49 4.26 0.00 0.07 ind:pas:3p; +divertirons divertir ver 4.49 4.26 0.11 0.00 ind:fut:1p; +divertiront divertir ver 4.49 4.26 0.03 0.00 ind:fut:3p; +divertis divertir ver m p 4.49 4.26 0.45 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:1s;par:pas; +divertissaient divertir ver 4.49 4.26 0.02 0.20 ind:imp:3p; +divertissais divertir ver 4.49 4.26 0.01 0.14 ind:imp:1s; +divertissait divertir ver 4.49 4.26 0.03 0.27 ind:imp:3s; +divertissant divertissant adj m s 1.44 1.55 0.95 0.68 +divertissante divertissant adj f s 1.44 1.55 0.26 0.54 +divertissantes divertissant adj f p 1.44 1.55 0.04 0.34 +divertissants divertissant adj m p 1.44 1.55 0.19 0.00 +divertissement divertissement nom m s 4.21 5.47 3.67 3.38 +divertissements divertissement nom m p 4.21 5.47 0.55 2.09 +divertissent divertir ver 4.49 4.26 0.14 0.27 ind:pre:3p; +divertissez divertir ver 4.49 4.26 0.17 0.00 imp:pre:2p;ind:pre:2p; +divertissons divertir ver 4.49 4.26 0.00 0.07 imp:pre:1p; +divertit divertir ver 4.49 4.26 0.38 0.41 ind:pre:3s;ind:pas:3s; +dividende dividende nom m s 0.57 0.47 0.03 0.07 +dividendes dividende nom m p 0.57 0.47 0.55 0.41 +divin divin adj m s 26.55 24.93 10.01 10.14 +divination divination nom f s 0.56 1.08 0.54 1.01 +divinations divination nom f p 0.56 1.08 0.02 0.07 +divinatoire divinatoire adj f s 0.04 0.27 0.00 0.20 +divinatoires divinatoire adj p 0.04 0.27 0.04 0.07 +divinatrice divinateur adj f s 0.00 0.41 0.00 0.34 +divinatrices divinateur adj f p 0.00 0.41 0.00 0.07 +divine divin adj f s 26.55 24.93 14.00 11.76 +divinement divinement adv 1.14 1.28 1.14 1.28 +divines divin adj f p 26.55 24.93 1.42 2.03 +divinisaient diviniser ver 0.00 0.41 0.00 0.07 ind:imp:3p; +divinisant divinisant adj m s 0.00 0.07 0.00 0.07 +divinise diviniser ver 0.00 0.41 0.00 0.14 ind:pre:3s; +divinisez diviniser ver 0.00 0.41 0.00 0.07 ind:pre:2p; +divinisé diviniser ver m s 0.00 0.41 0.00 0.07 par:pas; +divinisée diviniser ver f s 0.00 0.41 0.00 0.07 par:pas; +divinité divinité nom f s 2.53 5.95 2.31 3.45 +divinités divinité nom f p 2.53 5.95 0.22 2.50 +divins divin adj m p 26.55 24.93 1.12 1.01 +divisa diviser ver 10.14 16.69 0.15 0.41 ind:pas:3s; +divisaient diviser ver 10.14 16.69 0.03 0.54 ind:imp:3p; +divisais diviser ver 10.14 16.69 0.00 0.14 ind:imp:1s; +divisait diviser ver 10.14 16.69 0.17 1.62 ind:imp:3s; +divisant diviser ver 10.14 16.69 0.30 0.61 par:pre; +divise diviser ver 10.14 16.69 1.73 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divisent diviser ver 10.14 16.69 0.70 1.01 ind:pre:3p; +diviser diviser ver 10.14 16.69 2.11 2.36 inf; +divisera diviser ver 10.14 16.69 0.14 0.00 ind:fut:3s; +diviserais diviser ver 10.14 16.69 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +diviserait diviser ver 10.14 16.69 0.02 0.14 cnd:pre:3s; +divises diviser ver 10.14 16.69 0.20 0.07 ind:pre:2s; +diviseur diviseur nom m s 0.01 0.20 0.01 0.14 +diviseuse diviseur nom f s 0.01 0.20 0.00 0.07 +divisez diviser ver 10.14 16.69 0.30 0.00 imp:pre:2p;ind:pre:2p; +divisible divisible adj s 0.23 0.27 0.17 0.27 +divisibles divisible adj m p 0.23 0.27 0.06 0.00 +division division nom f s 13.07 43.51 11.60 29.73 +divisionnaire divisionnaire nom s 2.25 1.89 2.25 1.76 +divisionnaires divisionnaire adj m p 1.03 3.45 0.01 0.07 +divisionnisme divisionnisme nom m s 0.00 0.07 0.00 0.07 +divisions division nom f p 13.07 43.51 1.48 13.78 +divisons diviser ver 10.14 16.69 0.10 0.07 imp:pre:1p;ind:pre:1p; +divisèrent diviser ver 10.14 16.69 0.00 0.20 ind:pas:3p; +divisé diviser ver m s 10.14 16.69 1.85 2.91 par:pas; +divisée diviser ver f s 10.14 16.69 1.17 2.16 par:pas; +divisées diviser ver f p 10.14 16.69 0.23 0.27 par:pas; +divisés diviser ver m p 10.14 16.69 0.84 1.35 par:pas; +divorce divorce nom m s 23.23 11.15 21.64 10.54 +divorcent divorcer ver 27.50 8.11 0.67 0.61 ind:pre:3p; +divorcer divorcer ver 27.50 8.11 12.03 2.16 inf; +divorcera divorcer ver 27.50 8.11 0.32 0.14 ind:fut:3s; +divorcerai divorcer ver 27.50 8.11 0.41 0.14 ind:fut:1s; +divorcerais divorcer ver 27.50 8.11 0.30 0.20 cnd:pre:1s;cnd:pre:2s; +divorcerait divorcer ver 27.50 8.11 0.07 0.00 cnd:pre:3s; +divorceras divorcer ver 27.50 8.11 0.02 0.00 ind:fut:2s; +divorcerez divorcer ver 27.50 8.11 0.02 0.14 ind:fut:2p; +divorceriez divorcer ver 27.50 8.11 0.01 0.00 cnd:pre:2p; +divorcerons divorcer ver 27.50 8.11 0.00 0.07 ind:fut:1p; +divorceront divorcer ver 27.50 8.11 0.10 0.07 ind:fut:3p; +divorces divorce nom m p 23.23 11.15 1.58 0.61 +divorcez divorcer ver 27.50 8.11 0.67 0.00 imp:pre:2p;ind:pre:2p; +divorciez divorcer ver 27.50 8.11 0.04 0.00 ind:imp:2p; +divorcions divorcer ver 27.50 8.11 0.10 0.14 ind:imp:1p; +divorcèrent divorcer ver 27.50 8.11 0.02 0.14 ind:pas:3p; +divorcé divorcer ver m s 27.50 8.11 6.04 2.23 par:pas; +divorcée divorcer ver f s 27.50 8.11 1.58 0.47 par:pas; +divorcées divorcé adj f p 1.64 0.95 0.14 0.07 +divorcés divorcer ver m p 27.50 8.11 1.50 0.07 par:pas; +divorça divorcer ver 27.50 8.11 0.14 0.07 ind:pas:3s; +divorçaient divorcer ver 27.50 8.11 0.04 0.07 ind:imp:3p; +divorçait divorcer ver 27.50 8.11 0.12 0.27 ind:imp:3s; +divorçant divorcer ver 27.50 8.11 0.04 0.20 par:pre; +divorçons divorcer ver 27.50 8.11 0.48 0.14 imp:pre:1p;ind:pre:1p; +divulgation divulgation nom f s 0.33 0.61 0.33 0.61 +divulguait divulguer ver 2.48 1.96 0.00 0.20 ind:imp:3s; +divulguant divulguer ver 2.48 1.96 0.00 0.14 par:pre; +divulgue divulguer ver 2.48 1.96 0.27 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divulguer divulguer ver 2.48 1.96 1.06 0.95 inf; +divulguera divulguer ver 2.48 1.96 0.04 0.07 ind:fut:3s; +divulguez divulguer ver 2.48 1.96 0.09 0.00 imp:pre:2p;ind:pre:2p; +divulguons divulguer ver 2.48 1.96 0.05 0.00 imp:pre:1p;ind:pre:1p; +divulgué divulguer ver m s 2.48 1.96 0.71 0.34 par:pas; +divulguée divulguer ver f s 2.48 1.96 0.08 0.07 par:pas; +divulguées divulguer ver f p 2.48 1.96 0.06 0.00 par:pas; +divulgués divulguer ver m p 2.48 1.96 0.11 0.14 par:pas; +dix_cors dix_cors nom m 0.03 0.88 0.03 0.88 +dix_huit dix_huit adj_num 4.44 31.69 4.44 31.69 +dix_huitième dix_huitième nom s 0.16 0.27 0.16 0.27 +dix_neuf dix_neuf adj_num 2.11 10.54 2.11 10.54 +dix_neuvième dix_neuvième adj 0.15 1.22 0.15 1.22 +dix_sept dix_sept adj_num 3.69 19.59 3.69 19.59 +dix_septième dix_septième adj 0.22 1.22 0.22 1.22 +dix dix adj_num 118.29 209.86 118.29 209.86 +dixie dixie nom m s 1.40 0.00 1.40 0.00 +dixieland dixieland nom m s 0.14 0.00 0.14 0.00 +dixit dixit adj m s 0.54 0.68 0.54 0.68 +dixième dixième adj 1.76 2.77 1.73 2.70 +dixièmement dixièmement adv 0.02 0.00 0.02 0.00 +dixièmes dixième nom p 1.60 4.32 0.23 1.28 +dizain dizain nom m s 0.14 0.00 0.14 0.00 +dizaine dizaine nom f s 11.08 44.73 5.87 26.55 +dizaines dizaine nom f p 11.08 44.73 5.21 18.18 +djebel djebel nom m s 0.00 2.84 0.00 2.30 +djebels djebel nom m p 0.00 2.84 0.00 0.54 +djellaba djellaba nom f s 0.30 1.69 0.15 1.15 +djellabas djellaba nom f p 0.30 1.69 0.16 0.54 +djemââ djemââ nom f s 0.00 0.07 0.00 0.07 +djihad djihad nom m s 0.44 0.00 0.43 0.00 +djihads djihad nom m p 0.44 0.00 0.01 0.00 +djinn djinn nom m s 0.36 0.61 0.34 0.00 +djinns djinn nom m p 0.36 0.61 0.02 0.61 +dm dm adj_num 0.40 0.00 0.40 0.00 +dna dna nom m s 0.09 0.00 0.09 0.00 +do do nom m 16.66 3.78 16.66 3.78 +doña doña nom f s 2.44 0.00 2.44 0.00 +doberman doberman nom m s 1.03 0.95 0.69 0.34 +dobermans doberman nom m p 1.03 0.95 0.33 0.61 +doc doc nom m s 4.04 0.54 4.04 0.54 +doche doche nom f s 0.00 0.07 0.00 0.07 +docile docile adj s 2.12 9.66 1.68 7.43 +docilement docilement adv 0.07 5.54 0.07 5.54 +dociles docile adj p 2.12 9.66 0.44 2.23 +docilité docilité nom f s 0.14 3.85 0.14 3.85 +dock dock nom m s 3.10 3.99 0.92 0.81 +docker docker nom m s 0.90 3.18 0.39 0.68 +dockers docker nom m p 0.90 3.18 0.51 2.50 +docks dock nom m p 3.10 3.99 2.18 3.18 +docte docte adj s 0.17 1.89 0.17 1.42 +doctement doctement adv 0.00 0.54 0.00 0.54 +doctes docte adj m p 0.17 1.89 0.01 0.47 +docteur docteur nom m s 233.86 87.36 223.48 83.11 +docteurs docteur nom m p 233.86 87.36 9.72 3.18 +doctissime doctissime adj m s 0.03 0.00 0.03 0.00 +doctoral doctoral adj m s 0.00 0.81 0.00 0.54 +doctorale doctoral adj f s 0.00 0.81 0.00 0.27 +doctorat doctorat nom m s 4.07 1.82 3.76 1.76 +doctorats doctorat nom m p 4.07 1.82 0.31 0.07 +doctoresse docteur nom f s 233.86 87.36 0.66 1.08 +doctrina doctriner ver 0.00 0.07 0.00 0.07 ind:pas:3s; +doctrinaire doctrinaire adj s 0.02 0.14 0.02 0.14 +doctrinaires doctrinaire nom p 0.00 0.27 0.00 0.07 +doctrinal doctrinal adj m s 0.01 0.47 0.00 0.27 +doctrinale doctrinal adj f s 0.01 0.47 0.01 0.14 +doctrinales doctrinal adj f p 0.01 0.47 0.00 0.07 +doctrine doctrine nom f s 1.81 7.77 1.54 5.68 +doctrines doctrine nom f p 1.81 7.77 0.27 2.09 +docudrame docudrame nom m s 0.03 0.00 0.03 0.00 +document document nom m s 24.86 16.01 9.34 6.69 +documenta documenter ver 1.53 0.95 0.01 0.14 ind:pas:3s; +documentaire documentaire nom m s 4.88 0.95 4.13 0.74 +documentaires documentaire nom m p 4.88 0.95 0.75 0.20 +documentais documenter ver 1.53 0.95 0.01 0.00 ind:imp:1s; +documentait documenter ver 1.53 0.95 0.04 0.00 ind:imp:3s; +documentaliste documentaliste nom s 0.29 0.27 0.27 0.20 +documentalistes documentaliste nom p 0.29 0.27 0.03 0.07 +documentant documenter ver 1.53 0.95 0.05 0.07 par:pre; +documentariste documentariste nom s 0.04 0.00 0.03 0.00 +documentaristes documentariste nom p 0.04 0.00 0.01 0.00 +documentation documentation nom f s 1.44 2.43 1.43 2.23 +documentations documentation nom f p 1.44 2.43 0.01 0.20 +documente documenter ver 1.53 0.95 0.23 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +documentent documenter ver 1.53 0.95 0.01 0.07 ind:pre:3p; +documenter documenter ver 1.53 0.95 0.85 0.47 inf; +documenterai documenter ver 1.53 0.95 0.00 0.07 ind:fut:1s; +documentes documenter ver 1.53 0.95 0.00 0.07 ind:pre:2s; +documents document nom m p 24.86 16.01 15.53 9.32 +documenté documenter ver m s 1.53 0.95 0.22 0.07 par:pas; +documentée documenté adj f s 0.39 0.07 0.15 0.00 +documentés documenter ver m p 1.53 0.95 0.05 0.00 par:pas; +dodelinaient dodeliner ver 0.03 2.77 0.00 0.07 ind:imp:3p; +dodelinais dodeliner ver 0.03 2.77 0.01 0.07 ind:imp:1s; +dodelinait dodeliner ver 0.03 2.77 0.00 0.68 ind:imp:3s; +dodelinant dodeliner ver 0.03 2.77 0.01 1.01 par:pre; +dodelinante dodelinant adj f s 0.01 0.27 0.00 0.07 +dodelinantes dodelinant adj f p 0.01 0.27 0.00 0.07 +dodeline dodeliner ver 0.03 2.77 0.01 0.41 imp:pre:2s;ind:pre:3s; +dodelinent dodeliner ver 0.03 2.77 0.00 0.14 ind:pre:3p; +dodeliner dodeliner ver 0.03 2.77 0.00 0.27 inf; +dodelinèrent dodeliner ver 0.03 2.77 0.00 0.07 ind:pas:3p; +dodeliné dodeliner ver m s 0.03 2.77 0.00 0.07 par:pas; +dodine dodiner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +dodo dodo nom m s 7.53 2.50 7.52 2.43 +dodos dodo nom m p 7.53 2.50 0.01 0.07 +dodu dodu adj m s 0.89 5.00 0.34 1.89 +dodécagone dodécagone nom m s 0.00 0.07 0.00 0.07 +dodécaphoniste dodécaphoniste nom s 0.00 0.07 0.00 0.07 +dodécaèdre dodécaèdre nom m s 0.03 0.14 0.03 0.14 +dodue dodu adj f s 0.89 5.00 0.13 1.42 +dodues dodu adj f p 0.89 5.00 0.20 0.88 +dodus dodu adj m p 0.89 5.00 0.23 0.81 +dog_cart dog_cart nom m s 0.04 0.00 0.04 0.00 +dogaresse dogaresse nom f s 0.00 0.14 0.00 0.07 +dogaresses dogaresse nom f p 0.00 0.14 0.00 0.07 +doge doge nom m s 0.53 3.45 0.41 1.89 +doges doge nom m p 0.53 3.45 0.11 1.55 +dogger dogger nom m s 0.14 0.00 0.14 0.00 +dogmatique dogmatique adj s 0.17 1.01 0.03 0.61 +dogmatiques dogmatique adj p 0.17 1.01 0.14 0.41 +dogmatisme dogmatisme nom m s 0.10 0.34 0.10 0.34 +dogme dogme nom m s 0.63 2.77 0.49 1.35 +dogmes dogme nom m p 0.63 2.77 0.14 1.42 +dogue dogue nom m s 0.14 1.42 0.14 0.81 +dogues dogue nom m p 0.14 1.42 0.00 0.61 +doguin doguin nom m s 0.00 0.07 0.00 0.07 +doigt doigt nom m s 85.69 256.15 39.83 80.34 +doigta doigter ver 0.10 0.07 0.00 0.07 ind:pas:3s; +doigtait doigter ver 0.10 0.07 0.01 0.00 ind:imp:3s; +doigter doigter ver 0.10 0.07 0.04 0.00 inf; +doigtier doigtier nom m s 0.00 0.20 0.00 0.20 +doigts doigt nom m p 85.69 256.15 45.86 175.81 +doigté doigté nom m s 1.00 1.15 1.00 1.15 +dois devoir ver_sup 3232.80 1318.24 894.67 102.03 imp:pre:2s;ind:pre:1s;ind:pre:2s; +doit devoir ver_sup 3232.80 1318.24 654.84 224.59 ind:pre:3s; +doive devoir ver_sup 3232.80 1318.24 5.50 4.32 sub:pre:1s;sub:pre:3s; +doivent devoir ver_sup 3232.80 1318.24 85.42 45.95 ind:pre:3p;sub:pre:3p; +doives devoir ver_sup 3232.80 1318.24 1.25 0.14 sub:pre:2s; +dojo dojo nom m s 0.93 0.34 0.93 0.34 +dol dol nom m s 0.34 0.07 0.34 0.07 +dolby dolby nom m s 0.05 0.00 0.05 0.00 +dolce dolce adv 1.53 0.74 1.53 0.74 +dolent dolent adj m s 0.27 2.36 0.00 0.68 +dolente dolent adj f s 0.27 2.36 0.27 1.35 +dolentes dolent adj f p 0.27 2.36 0.00 0.14 +dolents dolent adj m p 0.27 2.36 0.00 0.20 +dolichocéphale dolichocéphale adj m s 0.10 0.20 0.10 0.00 +dolichocéphales dolichocéphale adj p 0.10 0.20 0.00 0.20 +dolichocéphalie dolichocéphalie nom f s 0.00 0.07 0.00 0.07 +doline doline nom f s 0.01 0.00 0.01 0.00 +dolique dolique nom m s 0.01 0.00 0.01 0.00 +dollar dollar nom m s 134.10 16.96 13.89 3.85 +dollars dollar nom m p 134.10 16.96 120.22 13.11 +dolman dolman nom m s 0.00 1.15 0.00 0.88 +dolmans dolman nom m p 0.00 1.15 0.00 0.27 +dolmen dolmen nom m s 0.01 1.89 0.00 1.15 +dolmens dolmen nom m p 0.01 1.89 0.01 0.74 +dolomies dolomie nom f p 0.14 0.07 0.14 0.07 +dolomite dolomite nom f s 0.08 0.00 0.08 0.00 +dolorisme dolorisme nom m s 0.00 0.07 0.00 0.07 +doloriste doloriste nom s 0.00 0.07 0.00 0.07 +doléance doléance nom f s 0.46 1.76 0.00 0.14 +doléances doléance nom f p 0.46 1.76 0.46 1.62 +dom dom nom m s 0.39 0.34 0.39 0.34 +domaine domaine nom m s 21.57 46.22 19.21 37.91 +domaines domaine nom m p 21.57 46.22 2.37 8.31 +domanial domanial adj m s 0.00 0.47 0.00 0.14 +domaniale domanial adj f s 0.00 0.47 0.00 0.27 +domaniaux domanial adj m p 0.00 0.47 0.00 0.07 +domestication domestication nom f s 0.02 0.47 0.02 0.47 +domesticité domesticité nom f s 0.18 0.88 0.18 0.88 +domestiqua domestiquer ver 0.41 3.58 0.00 0.14 ind:pas:3s; +domestiquait domestiquer ver 0.41 3.58 0.00 0.07 ind:imp:3s; +domestique domestique nom s 10.09 18.51 4.57 7.23 +domestiquement domestiquement adv 0.00 0.07 0.00 0.07 +domestiquer domestiquer ver 0.41 3.58 0.07 0.88 inf; +domestiques domestique nom p 10.09 18.51 5.52 11.28 +domestiquez domestiquer ver 0.41 3.58 0.00 0.07 imp:pre:2p; +domestiqué domestiquer ver m s 0.41 3.58 0.12 0.68 par:pas; +domestiquée domestiquer ver f s 0.41 3.58 0.04 0.81 par:pas; +domestiquées domestiquer ver f p 0.41 3.58 0.01 0.14 par:pas; +domestiqués domestiquer ver m p 0.41 3.58 0.06 0.68 par:pas; +domicile domicile nom m s 11.69 15.34 11.60 14.93 +domiciles domicile nom m p 11.69 15.34 0.09 0.41 +domiciliaires domiciliaire adj f p 0.00 0.20 0.00 0.20 +domiciliation domiciliation nom f s 0.00 0.07 0.00 0.07 +domicilier domicilier ver 0.38 0.74 0.00 0.14 inf; +domicilié domicilié adj m s 0.53 0.07 0.52 0.00 +domiciliée domicilier ver f s 0.38 0.74 0.14 0.27 par:pas; +domiciliés domicilié adj m p 0.53 0.07 0.01 0.00 +domina dominer ver 15.66 50.61 0.27 1.08 ind:pas:3s; +dominaient dominer ver 15.66 50.61 0.02 2.57 ind:imp:3p; +dominais dominer ver 15.66 50.61 0.02 0.34 ind:imp:1s;ind:imp:2s; +dominait dominer ver 15.66 50.61 0.42 9.32 ind:imp:3s; +dominance dominance nom f s 0.14 0.07 0.14 0.07 +dominant dominant adj m s 2.34 3.85 1.41 1.69 +dominante dominant adj f s 2.34 3.85 0.68 1.15 +dominantes dominant adj f p 2.34 3.85 0.04 0.54 +dominants dominant adj m p 2.34 3.85 0.22 0.47 +dominateur dominateur adj m s 0.97 1.49 0.53 0.95 +dominateurs dominateur adj m p 0.97 1.49 0.01 0.14 +domination domination nom f s 2.42 5.88 2.39 5.68 +dominations domination nom f p 2.42 5.88 0.04 0.20 +dominatrice dominateur adj f s 0.97 1.49 0.42 0.34 +dominatrices dominatrice nom f p 0.03 0.00 0.03 0.00 +domine dominer ver 15.66 50.61 4.04 9.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dominent dominer ver 15.66 50.61 0.73 3.11 ind:pre:3p; +dominer dominer ver 15.66 50.61 5.07 10.34 inf; +dominera dominer ver 15.66 50.61 0.59 0.27 ind:fut:3s; +dominerai dominer ver 15.66 50.61 0.17 0.00 ind:fut:1s; +domineraient dominer ver 15.66 50.61 0.00 0.07 cnd:pre:3p; +dominerais dominer ver 15.66 50.61 0.01 0.27 cnd:pre:1s;cnd:pre:2s; +dominerait dominer ver 15.66 50.61 0.05 0.07 cnd:pre:3s; +domineras dominer ver 15.66 50.61 0.11 0.00 ind:fut:2s; +domineriez dominer ver 15.66 50.61 0.01 0.00 cnd:pre:2p; +dominerions dominer ver 15.66 50.61 0.00 0.14 cnd:pre:1p; +dominerons dominer ver 15.66 50.61 0.07 0.07 ind:fut:1p; +domineront dominer ver 15.66 50.61 0.16 0.14 ind:fut:3p; +domines dominer ver 15.66 50.61 0.26 0.27 ind:pre:2s; +dominez dominer ver 15.66 50.61 0.11 0.07 imp:pre:2p;ind:pre:2p; +dominicain dominicain nom m s 0.58 2.57 0.23 0.61 +dominicaine dominicain adj f s 0.19 0.95 0.12 0.47 +dominicaines dominicain nom f p 0.58 2.57 0.03 0.07 +dominicains dominicain nom m p 0.58 2.57 0.28 1.89 +dominical dominical adj m s 0.31 2.97 0.10 1.15 +dominicale dominical adj f s 0.31 2.97 0.19 1.08 +dominicales dominical adj f p 0.31 2.97 0.01 0.41 +dominicaux dominical adj m p 0.31 2.97 0.01 0.34 +dominiez dominer ver 15.66 50.61 0.02 0.00 ind:imp:2p; +dominion dominion nom m s 0.34 0.54 0.34 0.27 +dominions dominer ver 15.66 50.61 0.01 0.41 ind:imp:1p; +domino domino nom m s 1.35 3.18 0.35 0.41 +dominons dominer ver 15.66 50.61 0.05 0.14 imp:pre:1p;ind:pre:1p; +dominos domino nom m p 1.35 3.18 0.99 2.77 +dominât dominer ver 15.66 50.61 0.00 0.07 sub:imp:3s; +dominèrent dominer ver 15.66 50.61 0.01 0.07 ind:pas:3p; +dominé dominer ver m s 15.66 50.61 1.45 3.85 par:pas; +dominée dominer ver f s 15.66 50.61 1.23 1.89 par:pas; +dominées dominer ver f p 15.66 50.61 0.15 1.08 par:pas; +dominés dominer ver m p 15.66 50.61 0.32 1.28 par:pas; +dommage dommage ono 25.88 5.34 25.88 5.34 +dommageable dommageable adj f s 0.12 0.20 0.10 0.07 +dommageables dommageable adj f p 0.12 0.20 0.02 0.14 +dommages_intérêts dommages_intérêts nom m p 0.04 0.00 0.04 0.00 +dommages dommage nom m p 65.59 26.15 6.16 2.09 +domotique domotique nom f s 0.02 0.00 0.02 0.00 +dompta dompter ver 2.14 3.24 0.00 0.20 ind:pas:3s; +domptage domptage nom m s 0.00 0.14 0.00 0.14 +domptai dompter ver 2.14 3.24 0.00 0.07 ind:pas:1s; +domptait dompter ver 2.14 3.24 0.00 0.07 ind:imp:3s; +dompte dompter ver 2.14 3.24 0.26 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +domptent dompter ver 2.14 3.24 0.00 0.07 ind:pre:3p; +dompter dompter ver 2.14 3.24 1.00 1.69 inf; +dompterai dompter ver 2.14 3.24 0.00 0.07 ind:fut:1s; +dompterait dompter ver 2.14 3.24 0.00 0.07 cnd:pre:3s; +dompteur dompteur nom m s 2.18 2.57 1.11 1.89 +dompteurs dompteur nom m p 2.18 2.57 0.16 0.14 +dompteuse dompteur nom f s 2.18 2.57 0.92 0.41 +dompteuses dompteur nom f p 2.18 2.57 0.00 0.14 +domptez dompter ver 2.14 3.24 0.04 0.07 imp:pre:2p; +dompté dompter ver m s 2.14 3.24 0.64 0.34 par:pas; +domptée dompter ver f s 2.14 3.24 0.19 0.20 par:pas; +domptées dompté adj f p 0.15 0.20 0.00 0.14 +domptés dompté adj m p 0.15 0.20 0.02 0.00 +don don nom m s 43.78 39.86 35.47 30.27 +dona dona nom f s 0.50 1.15 0.50 1.15 +donateur donateur nom m s 0.89 1.69 0.36 0.81 +donateurs donateur nom m p 0.89 1.69 0.50 0.61 +donation donation nom f s 1.89 0.74 1.23 0.54 +donations donation nom f p 1.89 0.74 0.66 0.20 +donatrice donateur nom f s 0.89 1.69 0.04 0.27 +donc donc con 612.51 445.88 612.51 445.88 +dondaine dondaine nom f s 0.00 0.14 0.00 0.07 +dondaines dondaine nom f p 0.00 0.14 0.00 0.07 +dondon dondon nom f s 0.23 0.47 0.20 0.34 +dondons dondon nom f p 0.23 0.47 0.03 0.14 +dong dong ono 0.97 0.95 0.97 0.95 +donjon donjon nom m s 3.14 3.31 2.94 2.84 +donjons donjon nom m p 3.14 3.31 0.20 0.47 +donjuanesque donjuanesque adj s 0.00 0.47 0.00 0.47 +donjuanisme donjuanisme nom m s 0.00 0.54 0.00 0.54 +donna donner ver 1209.58 896.01 6.28 46.28 ind:pas:3s; +donnai donner ver 1209.58 896.01 0.32 5.41 ind:pas:1s; +donnaient donner ver 1209.58 896.01 2.49 35.07 ind:imp:3p; +donnais donner ver 1209.58 896.01 5.91 6.89 ind:imp:1s;ind:imp:2s; +donnait donner ver 1209.58 896.01 15.97 123.24 ind:imp:3s; +donnant_donnant donnant_donnant adv 0.73 0.41 0.73 0.41 +donnant donner ver 1209.58 896.01 7.04 32.57 par:pre; +donnas donner ver 1209.58 896.01 0.04 0.00 ind:pas:2s; +donnassent donner ver 1209.58 896.01 0.00 0.14 sub:imp:3p; +donne donner ver 1209.58 896.01 401.06 149.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +donnent donner ver 1209.58 896.01 19.75 26.28 ind:pre:3p;sub:pre:3p; +donner donner ver 1209.58 896.01 233.21 216.55 inf;;inf;;inf;;inf;;inf;;inf;; +donnera donner ver 1209.58 896.01 24.60 8.99 ind:fut:3s; +donnerai donner ver 1209.58 896.01 30.70 6.15 ind:fut:1s; +donneraient donner ver 1209.58 896.01 1.10 2.03 cnd:pre:3p; +donnerais donner ver 1209.58 896.01 11.18 5.68 cnd:pre:1s;cnd:pre:2s; +donnerait donner ver 1209.58 896.01 6.20 13.31 cnd:pre:3s; +donneras donner ver 1209.58 896.01 5.49 1.82 ind:fut:2s; +donnerez donner ver 1209.58 896.01 4.31 1.69 ind:fut:2p; +donneriez donner ver 1209.58 896.01 1.05 0.34 cnd:pre:2p; +donnerions donner ver 1209.58 896.01 0.05 0.14 cnd:pre:1p; +donnerons donner ver 1209.58 896.01 2.96 0.61 ind:fut:1p; +donneront donner ver 1209.58 896.01 3.68 1.89 ind:fut:3p; +donnes donner ver 1209.58 896.01 34.32 5.34 ind:pre:1p;ind:pre:2s;sub:pre:2s; +donneur donneur nom m s 5.86 6.76 4.85 5.27 +donneurs donneur nom m p 5.86 6.76 0.84 0.95 +donneuse donneur adj f s 0.91 0.68 0.23 0.34 +donneuses donneuse nom f p 0.01 0.00 0.01 0.00 +donnez donner ver 1209.58 896.01 118.36 13.65 imp:pre:2p;ind:pre:2p; +donniez donner ver 1209.58 896.01 3.04 1.28 ind:imp:2p;sub:pre:2p; +donnions donner ver 1209.58 896.01 0.79 1.69 ind:imp:1p;sub:pre:1p; +donnâmes donner ver 1209.58 896.01 0.00 0.34 ind:pas:1p; +donnons donner ver 1209.58 896.01 6.66 1.96 imp:pre:1p;ind:pre:1p; +donnât donner ver 1209.58 896.01 0.02 3.38 sub:imp:3s; +donnèrent donner ver 1209.58 896.01 0.75 4.59 ind:pas:3p; +donné donner ver m s 1209.58 896.01 234.66 148.65 par:pas;par:pas;par:pas;par:pas; +donnée donner ver f s 1209.58 896.01 16.55 18.92 par:pas; +données donnée nom f p 20.92 6.89 20.05 5.41 +donnés donner ver m p 1209.58 896.01 7.06 6.82 par:pas; +donquichottesque donquichottesque adj f s 0.00 0.20 0.00 0.14 +donquichottesques donquichottesque adj f p 0.00 0.20 0.00 0.07 +donquichottisme donquichottisme nom m s 0.01 0.00 0.01 0.00 +dons don nom m p 43.78 39.86 8.31 9.59 +dont dont pro_rel 223.41 960.34 219.21 926.42 +donzelle donzelle nom f s 0.48 1.22 0.41 0.81 +donzelles donzelle nom f p 0.48 1.22 0.07 0.41 +dopage dopage nom m s 0.10 0.00 0.10 0.00 +dopais doper ver 1.33 0.54 0.01 0.00 ind:imp:1s; +dopait doper ver 1.33 0.54 0.04 0.00 ind:imp:3s; +dopamine dopamine nom f s 1.10 0.00 1.10 0.00 +dopant dopant adj m s 0.18 0.00 0.15 0.00 +dopants dopant adj m p 0.18 0.00 0.04 0.00 +dope dope nom s 7.47 2.03 7.47 1.96 +doper doper ver 1.33 0.54 0.35 0.00 inf; +dopes doper ver 1.33 0.54 0.05 0.00 ind:pre:2s; +dopez doper ver 1.33 0.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +doping doping nom m s 0.01 0.34 0.01 0.34 +doppler doppler nom m s 0.01 0.00 0.01 0.00 +dopé doper ver m s 1.33 0.54 0.46 0.27 par:pas; +dopée doper ver f s 1.33 0.54 0.05 0.00 par:pas; +dopés doper ver m p 1.33 0.54 0.06 0.14 par:pas; +dora dorer ver 2.66 15.14 0.00 0.07 ind:pas:3s; +dorade dorade nom f s 0.62 0.47 0.22 0.14 +dorades dorade nom f p 0.62 0.47 0.40 0.34 +dorage dorage nom m s 0.00 0.07 0.00 0.07 +doraient dorer ver 2.66 15.14 0.00 0.07 ind:imp:3p; +dorais dorer ver 2.66 15.14 0.01 0.07 ind:imp:1s; +dorait dorer ver 2.66 15.14 0.00 0.68 ind:imp:3s; +dorant dorer ver 2.66 15.14 0.15 0.20 par:pre; +dorcades dorcade nom f p 0.00 0.07 0.00 0.07 +dore dorer ver 2.66 15.14 0.30 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dorent dorer ver 2.66 15.14 0.01 0.20 ind:pre:3p; +dorer dorer ver 2.66 15.14 0.22 1.22 inf; +dorera dorer ver 2.66 15.14 0.00 0.07 ind:fut:3s; +doreront dorer ver 2.66 15.14 0.01 0.00 ind:fut:3p; +doreurs doreur nom m p 0.00 0.07 0.00 0.07 +doriennes dorien adj f p 0.00 0.14 0.00 0.07 +doriens dorien adj m p 0.00 0.14 0.00 0.07 +dorique dorique adj s 0.01 0.47 0.01 0.14 +doriques dorique adj p 0.01 0.47 0.00 0.34 +dorlotait dorloter ver 1.56 2.43 0.01 0.27 ind:imp:3s; +dorlotant dorloter ver 1.56 2.43 0.02 0.07 par:pre; +dorlote dorloter ver 1.56 2.43 0.28 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dorlotent dorloter ver 1.56 2.43 0.03 0.07 ind:pre:3p; +dorloter dorloter ver 1.56 2.43 0.79 1.08 inf; +dorloterai dorloter ver 1.56 2.43 0.01 0.00 ind:fut:1s; +dorloterons dorloter ver 1.56 2.43 0.00 0.07 ind:fut:1p; +dorlotez dorloter ver 1.56 2.43 0.05 0.00 imp:pre:2p;ind:pre:2p; +dorloté dorloter ver m s 1.56 2.43 0.15 0.41 par:pas; +dorlotée dorloter ver f s 1.56 2.43 0.18 0.00 par:pas; +dorlotées dorloter ver f p 1.56 2.43 0.00 0.07 par:pas; +dorlotés dorloter ver m p 1.56 2.43 0.04 0.07 par:pas; +dormîmes dormir ver 392.09 259.05 0.00 0.34 ind:pas:1p; +dormît dormir ver 392.09 259.05 0.00 0.14 sub:imp:3s; +dormaient dormir ver 392.09 259.05 1.45 10.41 ind:imp:3p; +dormais dormir ver 392.09 259.05 14.36 7.50 ind:imp:1s;ind:imp:2s; +dormait dormir ver 392.09 259.05 9.72 41.89 ind:imp:3s; +dormance dormance nom f s 0.03 0.07 0.03 0.07 +dormant dormir ver 392.09 259.05 3.16 5.47 par:pre; +dormante dormant adj f s 1.62 4.26 0.07 1.76 +dormantes dormant adj f p 1.62 4.26 0.17 0.27 +dormants dormant adj m p 1.62 4.26 0.18 0.07 +dorme dormir ver 392.09 259.05 4.13 3.18 sub:pre:1s;sub:pre:3s; +dorment dormir ver 392.09 259.05 10.48 10.27 ind:pre:3p;sub:pre:3p; +dormes dormir ver 392.09 259.05 2.23 0.41 sub:pre:2s; +dormeur dormeur nom m s 1.21 5.95 0.82 3.11 +dormeurs dormeur nom m p 1.21 5.95 0.16 1.96 +dormeuse dormeur nom f s 1.21 5.95 0.23 0.54 +dormeuses dormeur nom f p 1.21 5.95 0.00 0.34 +dormez dormir ver 392.09 259.05 12.35 2.84 imp:pre:2p;ind:pre:2p; +dormi dormir ver m s 392.09 259.05 41.25 26.49 par:pas; +dormiez dormir ver 392.09 259.05 2.40 0.95 ind:imp:2p; +dormions dormir ver 392.09 259.05 0.41 1.55 ind:imp:1p; +dormir dormir ver 392.09 259.05 160.77 95.20 inf; +dormira dormir ver 392.09 259.05 4.37 1.28 ind:fut:3s; +dormirai dormir ver 392.09 259.05 3.62 1.28 ind:fut:1s; +dormiraient dormir ver 392.09 259.05 0.17 0.14 cnd:pre:3p; +dormirais dormir ver 392.09 259.05 0.87 0.74 cnd:pre:1s;cnd:pre:2s; +dormirait dormir ver 392.09 259.05 0.35 1.42 cnd:pre:3s; +dormiras dormir ver 392.09 259.05 3.39 0.34 ind:fut:2s; +dormirent dormir ver 392.09 259.05 0.14 0.41 ind:pas:3p; +dormirez dormir ver 392.09 259.05 2.22 0.54 ind:fut:2p; +dormiriez dormir ver 392.09 259.05 0.03 0.07 cnd:pre:2p; +dormirions dormir ver 392.09 259.05 0.01 0.27 cnd:pre:1p; +dormirons dormir ver 392.09 259.05 0.28 0.34 ind:fut:1p; +dormiront dormir ver 392.09 259.05 0.70 0.14 ind:fut:3p; +dormis dormir ver 392.09 259.05 0.47 1.69 ind:pas:1s;ind:pas:2s; +dormit dormir ver 392.09 259.05 0.29 3.11 ind:pas:3s; +dormitif dormitif adj m s 0.03 0.20 0.03 0.20 +dormition dormition nom f s 0.00 0.14 0.00 0.14 +dormons dormir ver 392.09 259.05 2.38 0.81 imp:pre:1p;ind:pre:1p; +dors dormir ver 392.09 259.05 55.03 13.92 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dorsal dorsal adj m s 1.12 0.88 0.17 0.07 +dorsale dorsal adj f s 1.12 0.88 0.79 0.54 +dorsales dorsal adj f p 1.12 0.88 0.04 0.20 +dorsaux dorsal adj m p 1.12 0.88 0.11 0.07 +dort dormir ver 392.09 259.05 55.05 25.95 ind:pre:3s; +dortoir dortoir nom m s 5.29 12.36 4.83 9.32 +dortoirs dortoir nom m p 5.29 12.36 0.46 3.04 +doré doré adj m s 7.33 50.47 2.62 15.74 +dorée doré adj f s 7.33 50.47 2.31 16.42 +dorées doré adj f p 7.33 50.47 0.87 8.45 +dorénavant dorénavant adv 7.20 6.89 7.20 6.89 +dorure dorure nom f s 0.22 3.99 0.07 0.95 +dorures dorure nom f p 0.22 3.99 0.15 3.04 +dorés doré adj m p 7.33 50.47 1.53 9.86 +doryphore doryphore nom m s 0.01 0.81 0.01 0.34 +doryphores doryphore nom m p 0.01 0.81 0.00 0.47 +dos_d_âne dos_d_âne nom m 0.01 0.34 0.01 0.34 +dos dos nom m 100.34 213.99 100.34 213.99 +dosage dosage nom m s 1.89 1.69 1.67 1.62 +dosages dosage nom m p 1.89 1.69 0.22 0.07 +dosaient doser ver 0.60 2.91 0.00 0.07 ind:imp:3p; +dosais doser ver 0.60 2.91 0.00 0.07 ind:imp:1s; +dosait doser ver 0.60 2.91 0.00 0.07 ind:imp:3s; +dosant doser ver 0.60 2.91 0.00 0.34 par:pre; +dose dose nom f s 18.44 12.77 14.23 9.32 +dosent doser ver 0.60 2.91 0.00 0.07 ind:pre:3p; +doser doser ver 0.60 2.91 0.13 0.95 inf; +doses dose nom f p 18.44 12.77 4.21 3.45 +doseur doseur nom m s 0.19 0.14 0.18 0.07 +doseurs doseur nom m p 0.19 0.14 0.01 0.07 +dosimètre dosimètre nom m s 0.03 0.00 0.03 0.00 +dossard dossard nom m s 0.16 0.54 0.14 0.47 +dossards dossard nom m p 0.16 0.54 0.01 0.07 +dosseret dosseret nom m s 0.00 0.07 0.00 0.07 +dossier dossier nom m s 78.91 49.12 57.20 35.14 +dossiers dossier nom m p 78.91 49.12 21.71 13.99 +dossière dossière nom f s 0.00 0.27 0.00 0.20 +dossières dossière nom f p 0.00 0.27 0.00 0.07 +dostoïevskiens dostoïevskien adj m p 0.00 0.07 0.00 0.07 +dosé doser ver m s 0.60 2.91 0.13 0.27 par:pas; +dosée doser ver f s 0.60 2.91 0.01 0.27 par:pas; +dosées doser ver f p 0.60 2.91 0.00 0.27 par:pas; +dosés doser ver m p 0.60 2.91 0.03 0.34 par:pas; +dot dot nom f s 4.73 4.59 4.66 4.32 +dota doter ver 4.08 8.99 0.00 0.14 ind:pas:3s; +dotaient doter ver 4.08 8.99 0.00 0.07 ind:imp:3p; +dotait doter ver 4.08 8.99 0.00 0.68 ind:imp:3s; +dotant doter ver 4.08 8.99 0.01 0.20 par:pre; +dotation dotation nom f s 0.12 0.41 0.12 0.41 +dote doter ver 4.08 8.99 0.23 0.20 ind:pre:1s;ind:pre:3s; +doter doter ver 4.08 8.99 0.34 0.81 inf; +dots dot nom f p 4.73 4.59 0.07 0.27 +doté doter ver m s 4.08 8.99 1.82 2.97 par:pas; +dotée doter ver f s 4.08 8.99 0.99 2.09 par:pas; +dotées doter ver f p 4.08 8.99 0.08 0.81 par:pas; +dotés doter ver m p 4.08 8.99 0.61 1.01 par:pas; +douaire douaire nom m s 0.01 0.07 0.01 0.07 +douairière douairier nom f s 0.05 1.62 0.05 1.28 +douairières douairier nom f p 0.05 1.62 0.00 0.34 +douait douer ver 20.29 13.18 0.00 0.47 ind:imp:3s; +douane douane nom f s 6.12 9.46 4.33 8.51 +douanes douane nom f p 6.12 9.46 1.79 0.95 +douanier douanier nom m s 2.00 7.57 0.87 4.53 +douaniers douanier nom m p 2.00 7.57 1.14 3.04 +douanière douanier adj f s 0.63 1.55 0.01 0.07 +douanières douanier adj f p 0.63 1.55 0.04 0.41 +douar douar nom m s 0.00 0.61 0.00 0.47 +douars douar nom m p 0.00 0.61 0.00 0.14 +doubla doubler ver 15.29 22.84 0.20 1.28 ind:pas:3s; +doublage doublage nom m s 0.43 0.34 0.42 0.34 +doublages doublage nom m p 0.43 0.34 0.01 0.00 +doublai doubler ver 15.29 22.84 0.00 0.14 ind:pas:1s; +doublaient doubler ver 15.29 22.84 0.01 1.01 ind:imp:3p; +doublais doubler ver 15.29 22.84 0.03 0.14 ind:imp:1s; +doublait doubler ver 15.29 22.84 0.08 2.16 ind:imp:3s; +doublant doubler ver 15.29 22.84 0.06 1.01 par:pre; +doublard doublard nom m s 0.02 0.14 0.01 0.14 +doublards doublard nom m p 0.02 0.14 0.01 0.00 +double_cliquer double_cliquer ver 0.09 0.00 0.01 0.00 inf; +double_cliquer double_cliquer ver m s 0.09 0.00 0.07 0.00 par:pas; +double_croche double_croche nom f s 0.01 0.00 0.01 0.00 +double_décimètre double_décimètre nom m s 0.00 0.07 0.00 0.07 +double_fond double_fond nom m s 0.01 0.00 0.01 0.00 +double_six double_six nom m s 0.14 0.20 0.14 0.20 +double double adj s 30.46 58.99 28.68 52.84 +doubleau doubleau nom m s 0.00 0.20 0.00 0.14 +doubleaux doubleau nom m p 0.00 0.20 0.00 0.07 +doublement doublement adv 1.36 4.26 1.36 4.26 +doublent doubler ver 15.29 22.84 0.19 0.68 ind:pre:3p; +doubler doubler ver 15.29 22.84 4.65 4.39 inf; +doublera doubler ver 15.29 22.84 0.11 0.07 ind:fut:3s; +doublerai doubler ver 15.29 22.84 0.12 0.07 ind:fut:1s; +doubleraient doubler ver 15.29 22.84 0.01 0.00 cnd:pre:3p; +doublerait doubler ver 15.29 22.84 0.10 0.07 cnd:pre:3s; +doublerez doubler ver 15.29 22.84 0.01 0.07 ind:fut:2p; +doublerons doubler ver 15.29 22.84 0.03 0.00 ind:fut:1p; +doubles double adj p 30.46 58.99 1.78 6.15 +doublet doublet nom m s 0.00 0.20 0.00 0.14 +doublets doublet nom m p 0.00 0.20 0.00 0.07 +doublette doublette nom f s 0.14 0.07 0.14 0.07 +doubleur doubleur nom m s 0.07 0.00 0.07 0.00 +doubleuse doubleur nom f s 0.07 0.00 0.01 0.00 +doubleuses doubleuse nom f p 0.01 0.00 0.01 0.00 +doublez doubler ver 15.29 22.84 1.02 0.27 imp:pre:2p;ind:pre:2p; +doubliez doubler ver 15.29 22.84 0.02 0.00 ind:imp:2p; +doublions doubler ver 15.29 22.84 0.00 0.07 ind:imp:1p; +doublon doublon nom m s 0.22 0.41 0.06 0.27 +doublonner doublonner ver 0.01 0.00 0.01 0.00 inf; +doublons doublon nom m p 0.22 0.41 0.16 0.14 +doublât doubler ver 15.29 22.84 0.00 0.07 sub:imp:3s; +doublèrent doubler ver 15.29 22.84 0.00 0.14 ind:pas:3p; +doublé doubler ver m s 15.29 22.84 3.13 4.12 par:pas; +doublée doubler ver f s 15.29 22.84 0.50 2.16 par:pas; +doublées doubler ver f p 15.29 22.84 0.04 0.54 par:pas; +doublure doublure nom f s 3.84 4.53 3.70 3.38 +doublures doublure nom f p 3.84 4.53 0.14 1.15 +doublés doubler ver m p 15.29 22.84 0.61 0.95 par:pas; +douce_amère douce_amère adj f s 0.06 0.27 0.06 0.27 +douce doux adj f s 89.14 145.07 44.70 73.58 +doucement doucement adv 103.81 128.38 103.81 128.38 +douceâtre douceâtre adj s 0.15 2.70 0.15 2.30 +douceâtres douceâtre adj p 0.15 2.70 0.00 0.41 +doucereuse doucereux adj f s 0.28 2.97 0.04 0.74 +doucereusement doucereusement adv 0.00 0.20 0.00 0.20 +doucereuses doucereux adj f p 0.28 2.97 0.00 0.47 +doucereux doucereux adj m 0.28 2.97 0.25 1.76 +douce_amère douce_amère nom f p 0.00 0.14 0.00 0.07 +douces doux adj f p 89.14 145.07 6.77 12.77 +doucet doucet adj m s 0.02 1.01 0.02 0.88 +doucette doucette nom f s 0.01 0.14 0.01 0.14 +doucettement doucettement adv 0.00 0.41 0.00 0.41 +douceur douceur nom f s 16.87 70.00 16.02 66.08 +douceurs douceur nom f p 16.87 70.00 0.85 3.92 +doucha doucher ver 6.75 2.57 0.14 0.27 ind:pas:3s; +douchais doucher ver 6.75 2.57 0.09 0.07 ind:imp:1s;ind:imp:2s; +douchait doucher ver 6.75 2.57 0.03 0.61 ind:imp:3s; +douchant doucher ver 6.75 2.57 0.01 0.00 par:pre; +douche douche nom f s 36.06 23.85 32.56 20.27 +douchent doucher ver 6.75 2.57 0.14 0.07 ind:pre:3p; +doucher doucher ver 6.75 2.57 3.29 0.47 inf; +douchera doucher ver 6.75 2.57 0.01 0.00 ind:fut:3s; +doucherai doucher ver 6.75 2.57 0.00 0.07 ind:fut:1s; +doucheras doucher ver 6.75 2.57 0.02 0.00 ind:fut:2s; +douches douche nom f p 36.06 23.85 3.49 3.58 +doucheur doucheur nom m s 0.00 0.07 0.00 0.07 +douchez doucher ver 6.75 2.57 0.05 0.00 imp:pre:2p;ind:pre:2p; +douchiez doucher ver 6.75 2.57 0.01 0.00 ind:imp:2p; +douchons doucher ver 6.75 2.57 0.02 0.07 imp:pre:1p;ind:pre:1p; +douché doucher ver m s 6.75 2.57 0.99 0.34 par:pas; +douchée doucher ver f s 6.75 2.57 0.19 0.07 par:pas; +douchés doucher ver m p 6.75 2.57 0.27 0.14 par:pas; +doucie doucir ver f s 0.02 0.00 0.02 0.00 par:pas; +doucin doucin nom m s 0.00 0.14 0.00 0.07 +doucine doucine nom f s 0.01 0.00 0.01 0.00 +doucins doucin nom m p 0.00 0.14 0.00 0.07 +doudou doudou nom f s 0.58 6.76 0.58 6.76 +doudoune doudoune nom f s 0.92 0.54 0.46 0.14 +doudounes doudoune nom f p 0.92 0.54 0.46 0.41 +douelle douelle nom f s 0.00 0.61 0.00 0.14 +douelles douelle nom f p 0.00 0.61 0.00 0.47 +douer douer ver 20.29 13.18 0.00 0.20 inf; +douglas douglas nom m 0.09 0.00 0.09 0.00 +douillait douiller ver 0.22 1.28 0.00 0.14 ind:imp:3s; +douille douille nom f s 3.67 3.51 1.79 0.81 +douillent douiller ver 0.22 1.28 0.00 0.07 ind:pre:3p; +douiller douiller ver 0.22 1.28 0.17 0.54 inf; +douillera douiller ver 0.22 1.28 0.00 0.07 ind:fut:3s; +douilles douille nom f p 3.67 3.51 1.88 2.70 +douillet douillet adj m s 2.63 6.96 1.97 4.19 +douillets douillet adj m p 2.63 6.96 0.04 0.81 +douillette douillet adj f s 2.63 6.96 0.58 1.62 +douillettement douillettement adv 0.03 0.54 0.03 0.54 +douillettes douillet adj f p 2.63 6.96 0.04 0.34 +douillons douillon nom m p 0.00 0.54 0.00 0.54 +douillé douiller ver m s 0.22 1.28 0.00 0.07 par:pas; +douillée douiller ver f s 0.22 1.28 0.00 0.20 par:pas; +douleur douleur nom f s 75.89 91.89 65.78 77.84 +douleurs douleur nom f p 75.89 91.89 10.10 14.05 +douloureuse douloureux adj f s 17.16 37.50 4.05 13.58 +douloureusement douloureusement adv 1.00 5.54 1.00 5.54 +douloureuses douloureux adj f p 17.16 37.50 1.23 3.24 +douloureux douloureux adj m 17.16 37.50 11.88 20.68 +douma douma nom f s 0.34 0.14 0.34 0.14 +doura doura nom m s 0.00 0.07 0.00 0.07 +douro douro nom m s 0.00 0.54 0.00 0.20 +douros douro nom m p 0.00 0.54 0.00 0.34 +douta douter ver 77.77 88.11 0.03 1.15 ind:pas:3s; +doutai douter ver 77.77 88.11 0.14 0.54 ind:pas:1s; +doutaient douter ver 77.77 88.11 0.11 2.16 ind:imp:3p; +doutais douter ver 77.77 88.11 11.76 9.32 ind:imp:1s;ind:imp:2s; +doutait douter ver 77.77 88.11 0.96 13.99 ind:imp:3s; +doutance doutance nom f s 0.00 0.27 0.00 0.14 +doutances doutance nom f p 0.00 0.27 0.00 0.14 +doutant douter ver 77.77 88.11 0.15 2.03 par:pre; +doute doute nom m s 108.18 350.07 97.51 341.35 +doutent douter ver 77.77 88.11 1.04 1.82 ind:pre:3p;sub:pre:3p; +douter douter ver 77.77 88.11 12.64 23.92 inf;; +doutera douter ver 77.77 88.11 0.43 0.34 ind:fut:3s; +douterai douter ver 77.77 88.11 0.11 0.14 ind:fut:1s; +douterais douter ver 77.77 88.11 0.30 0.27 cnd:pre:1s;cnd:pre:2s; +douterait douter ver 77.77 88.11 0.20 0.47 cnd:pre:3s; +douteras douter ver 77.77 88.11 0.01 0.07 ind:fut:2s; +douterez douter ver 77.77 88.11 0.01 0.07 ind:fut:2p; +douteriez douter ver 77.77 88.11 0.08 0.07 cnd:pre:2p; +douteront douter ver 77.77 88.11 0.05 0.07 ind:fut:3p; +doutes doute nom m p 108.18 350.07 10.66 8.72 +douteurs douteur adj m p 0.00 0.14 0.00 0.14 +douteuse douteux adj f s 4.10 15.95 1.17 3.92 +douteusement douteusement adv 0.00 0.07 0.00 0.07 +douteuses douteux adj f p 4.10 15.95 0.69 1.82 +douteux douteux adj m 4.10 15.95 2.23 10.20 +doutez douter ver 77.77 88.11 3.17 1.82 imp:pre:2p;ind:pre:2p; +douçâtre douçâtre adj s 0.00 0.07 0.00 0.07 +doutiez douter ver 77.77 88.11 0.66 0.20 ind:imp:2p; +doutions douter ver 77.77 88.11 0.04 1.15 ind:imp:1p; +doutons douter ver 77.77 88.11 0.52 0.74 imp:pre:1p;ind:pre:1p; +doutât douter ver 77.77 88.11 0.00 0.47 sub:imp:3s; +doutèrent douter ver 77.77 88.11 0.00 0.14 ind:pas:3p; +douté douter ver m s 77.77 88.11 3.77 4.80 par:pas; +doutée douter ver f s 77.77 88.11 0.34 0.81 par:pas; +doutés douter ver m p 77.77 88.11 0.02 0.20 par:pas; +doué douer ver m s 20.29 13.18 11.31 7.43 par:pas; +douée douer ver f s 20.29 13.18 8.03 3.04 par:pas; +douées doué adj f p 12.73 7.57 0.47 0.41 +doués doué adj m p 12.73 7.57 1.03 1.69 +douve douve nom f s 0.53 1.42 0.06 0.34 +douves douve nom f p 0.53 1.42 0.47 1.08 +doux_amer doux_amer adj m s 0.04 0.00 0.04 0.00 +doux doux adj m 89.14 145.07 37.66 58.72 +douzaine douzaine nom f s 12.89 18.58 8.18 13.18 +douzaines douzaine nom f p 12.89 18.58 4.72 5.41 +douze douze adj_num 21.81 48.18 21.81 48.18 +douzième douzième nom s 0.35 0.95 0.35 0.88 +douzièmes douzième nom p 0.35 0.95 0.00 0.07 +down down adj m s 0.00 0.54 0.00 0.54 +downing_street downing_street nom f s 0.00 0.34 0.00 0.34 +doyen doyen nom m s 3.21 6.76 3.12 5.88 +doyenne doyenne nom f s 0.11 0.00 0.11 0.00 +doyenné doyenné nom m s 0.00 0.07 0.00 0.07 +doyens doyen nom m p 3.21 6.76 0.09 0.07 +drôle drôle adj s 144.48 95.07 138.46 85.47 +drôlement drôlement adv 10.79 24.86 10.79 24.86 +drôlerie drôlerie nom f s 0.14 3.72 0.14 3.45 +drôleries drôlerie nom f p 0.14 3.72 0.01 0.27 +drôles drôle adj p 144.48 95.07 6.02 9.59 +drôlesse drôlesse nom f s 0.21 0.20 0.21 0.07 +drôlesses drôlesse nom f p 0.21 0.20 0.00 0.14 +drôlet drôlet adj m s 0.01 0.41 0.01 0.07 +drôlette drôlet adj f s 0.01 0.41 0.00 0.34 +drache dracher ver 0.01 0.00 0.01 0.00 ind:pre:3s; +drachme drachme nom f s 1.30 2.57 0.02 0.54 +drachmes drachme nom f p 1.30 2.57 1.28 2.03 +draconien draconien adj m s 0.49 0.54 0.14 0.07 +draconienne draconien adj f s 0.49 0.54 0.02 0.14 +draconiennes draconien adj f p 0.49 0.54 0.28 0.20 +draconiens draconien adj m p 0.49 0.54 0.04 0.14 +drag drag nom m s 0.73 0.34 0.60 0.14 +dragage dragage nom m s 0.15 0.00 0.15 0.00 +drageoir drageoir nom m s 0.00 0.47 0.00 0.34 +drageoirs drageoir nom m p 0.00 0.47 0.00 0.14 +dragon dragon nom m s 13.98 12.23 10.53 7.97 +dragonnades dragonnade nom f p 0.00 0.14 0.00 0.14 +dragonne dragon nom f s 13.98 12.23 0.06 0.27 +dragonnier dragonnier nom m s 0.10 0.00 0.10 0.00 +dragons dragon nom m p 13.98 12.23 3.39 3.99 +drags drag nom m p 0.73 0.34 0.14 0.20 +dragster dragster nom m s 0.04 0.00 0.04 0.00 +dragua draguer ver 21.00 6.22 0.00 0.14 ind:pas:3s; +draguaient draguer ver 21.00 6.22 0.10 0.14 ind:imp:3p; +draguais draguer ver 21.00 6.22 0.57 0.07 ind:imp:1s;ind:imp:2s; +draguait draguer ver 21.00 6.22 1.08 0.54 ind:imp:3s; +draguant draguer ver 21.00 6.22 0.06 0.20 par:pre; +drague draguer ver 21.00 6.22 3.57 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dragée dragée nom f s 1.34 3.04 0.21 1.01 +draguent draguer ver 21.00 6.22 0.14 0.47 ind:pre:3p; +draguer draguer ver 21.00 6.22 9.84 2.43 inf; +draguera draguer ver 21.00 6.22 0.04 0.00 ind:fut:3s; +draguerai draguer ver 21.00 6.22 0.04 0.07 ind:fut:1s; +draguerais draguer ver 21.00 6.22 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +draguerait draguer ver 21.00 6.22 0.02 0.00 cnd:pre:3s; +dragues draguer ver 21.00 6.22 1.70 0.00 ind:pre:2s; +dragées dragée nom f p 1.34 3.04 1.14 2.03 +dragueur dragueur nom m s 0.70 1.49 0.59 0.47 +dragueurs dragueur nom m p 0.70 1.49 0.06 0.88 +dragueuse dragueur nom f s 0.70 1.49 0.05 0.14 +draguez draguer ver 21.00 6.22 0.56 0.00 imp:pre:2p;ind:pre:2p; +draguiez draguer ver 21.00 6.22 0.01 0.00 sub:pre:2p; +draguons draguer ver 21.00 6.22 0.03 0.07 imp:pre:1p;ind:pre:1p; +dragué draguer ver m s 21.00 6.22 1.51 0.41 par:pas; +draguée draguer ver f s 21.00 6.22 1.39 0.61 par:pas; +draguées draguer ver f p 21.00 6.22 0.17 0.00 par:pas; +dragués draguer ver m p 21.00 6.22 0.02 0.07 par:pas; +drailles draille nom f p 0.00 0.41 0.00 0.41 +drain drain nom m s 1.11 0.47 0.93 0.20 +draina drainer ver 0.86 1.22 0.00 0.07 ind:pas:3s; +drainage drainage nom m s 0.41 0.61 0.41 0.54 +drainages drainage nom m p 0.41 0.61 0.00 0.07 +drainaient drainer ver 0.86 1.22 0.00 0.14 ind:imp:3p; +drainait drainer ver 0.86 1.22 0.14 0.14 ind:imp:3s; +drainant drainer ver 0.86 1.22 0.00 0.27 par:pre; +draine drainer ver 0.86 1.22 0.14 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +drainent drainer ver 0.86 1.22 0.04 0.00 ind:pre:3p; +drainer drainer ver 0.86 1.22 0.42 0.14 inf; +drainera drainer ver 0.86 1.22 0.02 0.00 ind:fut:3s; +drainons drainer ver 0.86 1.22 0.01 0.00 ind:pre:1p; +drains drain nom m p 1.11 0.47 0.18 0.27 +drainé drainer ver m s 0.86 1.22 0.09 0.20 par:pas; +drainées drainer ver f p 0.86 1.22 0.00 0.07 par:pas; +drainés drainer ver m p 0.86 1.22 0.01 0.07 par:pas; +draisienne draisienne nom f s 0.00 0.07 0.00 0.07 +draisine draisine nom f s 0.02 0.07 0.02 0.07 +drakkar drakkar nom m s 0.25 0.27 0.25 0.00 +drakkars drakkar nom m p 0.25 0.27 0.00 0.27 +dramatique dramatique adj s 8.59 11.35 7.29 9.39 +dramatiquement dramatiquement adv 0.27 0.41 0.27 0.41 +dramatiques dramatique adj p 8.59 11.35 1.30 1.96 +dramatisait dramatiser ver 2.42 1.76 0.00 0.20 ind:imp:3s; +dramatisant dramatiser ver 2.42 1.76 0.00 0.07 par:pre; +dramatisation dramatisation nom f s 0.17 0.14 0.17 0.14 +dramatise dramatiser ver 2.42 1.76 0.72 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dramatisent dramatiser ver 2.42 1.76 0.01 0.00 ind:pre:3p; +dramatiser dramatiser ver 2.42 1.76 0.72 0.68 inf; +dramatises dramatiser ver 2.42 1.76 0.59 0.14 ind:pre:2s; +dramatisez dramatiser ver 2.42 1.76 0.10 0.00 imp:pre:2p;ind:pre:2p; +dramatisons dramatiser ver 2.42 1.76 0.20 0.07 imp:pre:1p;ind:pre:1p; +dramatisé dramatiser ver m s 2.42 1.76 0.05 0.07 par:pas; +dramatisée dramatiser ver f s 2.42 1.76 0.01 0.07 par:pas; +dramatisés dramatiser ver m p 2.42 1.76 0.01 0.07 par:pas; +dramaturge dramaturge nom s 0.58 0.88 0.53 0.74 +dramaturges dramaturge nom p 0.58 0.88 0.05 0.14 +dramaturgie dramaturgie nom f s 0.26 0.07 0.26 0.07 +drame drame nom m s 14.87 39.93 13.48 32.50 +drames drame nom m p 14.87 39.93 1.39 7.43 +drap drap nom m s 19.22 74.12 3.69 33.18 +drapa draper ver 0.84 7.23 0.00 0.47 ind:pas:3s; +drapai draper ver 0.84 7.23 0.00 0.07 ind:pas:1s; +drapaient draper ver 0.84 7.23 0.14 0.07 ind:imp:3p; +drapait draper ver 0.84 7.23 0.00 0.68 ind:imp:3s; +drapant draper ver 0.84 7.23 0.00 0.14 par:pre; +drape draper ver 0.84 7.23 0.14 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +drapeau drapeau nom m s 19.69 37.64 14.66 23.31 +drapeaux drapeau nom m p 19.69 37.64 5.03 14.32 +drapelets drapelet nom m p 0.00 0.07 0.00 0.07 +drapent draper ver 0.84 7.23 0.11 0.14 ind:pre:3p; +draper draper ver 0.84 7.23 0.03 0.27 inf; +draperaient draper ver 0.84 7.23 0.00 0.07 cnd:pre:3p; +draperez draper ver 0.84 7.23 0.14 0.00 ind:fut:2p; +draperie draperie nom f s 0.02 3.31 0.00 1.42 +draperies draperie nom f p 0.02 3.31 0.02 1.89 +drapier drapier nom m s 0.00 0.41 0.00 0.27 +drapiers drapier adj m p 0.00 0.47 0.00 0.34 +draps drap nom m p 19.22 74.12 15.54 40.95 +drapèrent draper ver 0.84 7.23 0.00 0.07 ind:pas:3p; +drapé draper ver m s 0.84 7.23 0.16 1.22 par:pas; +drapée draper ver f s 0.84 7.23 0.13 2.16 par:pas; +drapées draper ver f p 0.84 7.23 0.00 1.01 par:pas; +drapés drapé adj m p 0.17 2.30 0.14 0.81 +drastique drastique adj s 0.50 0.07 0.43 0.07 +drastiquement drastiquement adv 0.02 0.00 0.02 0.00 +drastiques drastique adj f p 0.50 0.07 0.07 0.00 +drave drave nom f s 0.00 0.07 0.00 0.07 +draveurs draveur nom m p 0.00 0.07 0.00 0.07 +dreadlocks dreadlocks nom f p 0.11 0.00 0.11 0.00 +dream_team dream_team nom f s 0.07 0.00 0.07 0.00 +drelin drelin nom m s 0.43 0.00 0.43 0.00 +drepou drepou nom f s 0.00 0.07 0.00 0.07 +dressa dresser ver 17.88 99.86 0.18 9.73 ind:pas:3s; +dressage dressage nom m s 0.58 1.82 0.58 1.76 +dressages dressage nom m p 0.58 1.82 0.00 0.07 +dressai dresser ver 17.88 99.86 0.10 0.61 ind:pas:1s; +dressaient dresser ver 17.88 99.86 0.32 5.47 ind:imp:3p; +dressais dresser ver 17.88 99.86 0.08 0.47 ind:imp:1s;ind:imp:2s; +dressait dresser ver 17.88 99.86 0.19 13.85 ind:imp:3s; +dressant dresser ver 17.88 99.86 0.48 3.65 par:pre; +dresse dresser ver 17.88 99.86 4.76 13.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dressement dressement nom m s 0.00 0.07 0.00 0.07 +dressent dresser ver 17.88 99.86 0.77 4.93 ind:pre:3p; +dresser dresser ver 17.88 99.86 4.65 14.93 inf; +dressera dresser ver 17.88 99.86 0.37 0.54 ind:fut:3s; +dresserai dresser ver 17.88 99.86 0.15 0.07 ind:fut:1s; +dresseraient dresser ver 17.88 99.86 0.01 0.20 cnd:pre:3p; +dresserait dresser ver 17.88 99.86 0.02 0.34 cnd:pre:3s; +dresseras dresser ver 17.88 99.86 0.01 0.00 ind:fut:2s; +dresserons dresser ver 17.88 99.86 0.26 0.07 ind:fut:1p; +dresseront dresser ver 17.88 99.86 0.16 0.14 ind:fut:3p; +dresses dresser ver 17.88 99.86 0.23 0.27 ind:pre:2s; +dresseur dresseur nom m s 0.86 0.68 0.50 0.34 +dresseurs dresseur nom m p 0.86 0.68 0.32 0.27 +dresseuse dresseur nom f s 0.86 0.68 0.05 0.07 +dressez dresser ver 17.88 99.86 0.70 0.54 imp:pre:2p;ind:pre:2p; +dressing_room dressing_room nom m s 0.01 0.00 0.01 0.00 +dressing dressing nom m s 0.28 0.00 0.28 0.00 +dressions dresser ver 17.88 99.86 0.00 0.20 ind:imp:1p; +dressoir dressoir nom m s 0.01 0.47 0.01 0.34 +dressoirs dressoir nom m p 0.01 0.47 0.00 0.14 +dressons dresser ver 17.88 99.86 0.19 0.27 imp:pre:1p;ind:pre:1p; +dressât dresser ver 17.88 99.86 0.00 0.14 sub:imp:3s; +dressèrent dresser ver 17.88 99.86 0.04 1.15 ind:pas:3p; +dressé dresser ver m s 17.88 99.86 3.36 13.24 par:pas; +dressée dresser ver f s 17.88 99.86 0.31 7.23 par:pas; +dressées dressé adj f p 1.79 11.82 0.44 2.36 +dressés dresser ver m p 17.88 99.86 0.29 4.93 par:pas; +dreyfusard dreyfusard nom m s 0.27 0.20 0.14 0.07 +dreyfusards dreyfusard nom m p 0.27 0.20 0.14 0.14 +dreyfusisme dreyfusisme nom m s 0.00 0.07 0.00 0.07 +dribbla dribbler ver 0.81 0.34 0.00 0.07 ind:pas:3s; +dribblais dribbler ver 0.81 0.34 0.10 0.07 ind:imp:1s; +dribblait dribbler ver 0.81 0.34 0.10 0.07 ind:imp:3s; +dribble dribble nom m s 0.69 0.07 0.29 0.07 +dribbler dribbler ver 0.81 0.34 0.20 0.14 inf; +dribbles dribble nom m p 0.69 0.07 0.40 0.00 +dribbleur dribbleur nom m s 0.00 0.14 0.00 0.14 +dribblez dribbler ver 0.81 0.34 0.01 0.00 imp:pre:2p; +dribblé dribbler ver m s 0.81 0.34 0.29 0.00 par:pas; +drible dribler ver 0.25 0.07 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dribler dribler ver 0.25 0.07 0.10 0.00 inf; +drift drift nom m s 0.04 0.07 0.04 0.07 +drifter drifter nom m s 0.05 37.50 0.02 37.50 +drifters drifter nom m p 0.05 37.50 0.03 0.00 +drill drill nom m s 0.01 0.07 0.01 0.07 +drille drille nom m s 0.11 1.22 0.08 0.61 +drilles drille nom m p 0.11 1.22 0.04 0.61 +dring dring ono 0.32 0.61 0.32 0.61 +drink drink nom m s 0.92 0.88 0.89 0.41 +drinks drink nom m p 0.92 0.88 0.03 0.47 +drisse drisse nom f s 0.16 0.81 0.06 0.47 +drisses drisse nom f p 0.16 0.81 0.11 0.34 +drivait driver ver 0.24 0.61 0.00 0.14 ind:imp:3s; +drivant driver ver 0.24 0.61 0.00 0.07 par:pre; +drive_in drive_in nom m s 0.94 0.00 0.94 0.00 +drive drive nom m s 1.45 0.41 1.41 0.41 +driver driver nom m s 0.31 0.34 0.25 0.27 +drivers driver nom m p 0.31 0.34 0.06 0.07 +drives drive nom m p 1.45 0.41 0.04 0.00 +drivé driver ver m s 0.24 0.61 0.00 0.07 par:pas; +drivée driver ver f s 0.24 0.61 0.01 0.14 par:pas; +drogman drogman nom m s 0.00 0.27 0.00 0.20 +drogmans drogman nom m p 0.00 0.27 0.00 0.07 +droguaient droguer ver 13.15 3.85 0.19 0.07 ind:imp:3p; +droguais droguer ver 13.15 3.85 0.29 0.00 ind:imp:1s;ind:imp:2s; +droguait droguer ver 13.15 3.85 0.94 0.68 ind:imp:3s; +droguant droguer ver 13.15 3.85 0.06 0.00 par:pre; +drogue drogue nom f s 58.76 13.72 47.20 10.54 +droguent droguer ver 13.15 3.85 0.50 0.20 ind:pre:3p; +droguer droguer ver 13.15 3.85 2.44 0.74 inf; +droguerie droguerie nom f s 0.31 0.54 0.28 0.47 +drogueries droguerie nom f p 0.31 0.54 0.03 0.07 +drogues drogue nom f p 58.76 13.72 11.56 3.18 +droguet droguet nom m s 0.00 1.08 0.00 0.95 +droguets droguet nom m p 0.00 1.08 0.00 0.14 +droguez droguer ver 13.15 3.85 0.49 0.14 imp:pre:2p;ind:pre:2p; +droguiez droguer ver 13.15 3.85 0.05 0.00 ind:imp:2p; +droguiste droguiste nom s 0.17 0.61 0.16 0.41 +droguistes droguiste nom p 0.17 0.61 0.02 0.20 +drogué drogué nom m s 6.35 2.43 2.63 0.68 +droguée droguer ver f s 13.15 3.85 1.47 0.14 par:pas; +droguées drogué nom f p 6.35 2.43 0.25 0.00 +drogués drogué nom m p 6.35 2.43 2.20 1.35 +droicos droico nom m p 0.00 0.27 0.00 0.27 +droit_fil droit_fil nom m s 0.00 0.07 0.00 0.07 +droit droit nom m s 207.62 163.72 175.60 138.72 +droite droite nom f s 58.70 117.97 58.44 116.69 +droitement droitement adv 0.01 0.07 0.01 0.07 +droites droit adj f p 77.74 163.38 0.83 4.80 +droitier droitier adj m s 0.76 0.07 0.69 0.00 +droitiers droitier nom m p 0.35 0.20 0.14 0.14 +droitière droitier adj f s 0.76 0.07 0.06 0.07 +droits droit nom m p 207.62 163.72 32.01 25.00 +droiture droiture nom f s 1.33 1.76 1.33 1.76 +drolatique drolatique adj s 0.54 0.47 0.54 0.34 +drolatiques drolatique adj m p 0.54 0.47 0.00 0.14 +dromadaire dromadaire nom m s 0.44 1.22 0.44 0.68 +dromadaires dromadaire nom m p 0.44 1.22 0.00 0.54 +drome drome nom f s 0.02 0.07 0.01 0.07 +dromes drome nom f p 0.02 0.07 0.01 0.00 +drone_espion drone_espion nom m s 0.02 0.00 0.02 0.00 +drone drone nom m s 1.79 0.00 0.88 0.00 +drones drone nom m p 1.79 0.00 0.91 0.00 +dronte dronte nom m s 0.01 0.07 0.01 0.07 +drop drop nom m s 1.11 0.00 1.11 0.00 +drope droper ver 0.00 0.20 0.00 0.07 ind:pre:3s; +dropent droper ver 0.00 0.20 0.00 0.07 ind:pre:3p; +droppage droppage nom m s 0.04 0.00 0.04 0.00 +droppant dropper ver 0.00 0.27 0.00 0.07 par:pre; +droppe dropper ver 0.00 0.27 0.00 0.20 ind:pre:3s; +dropé droper ver m s 0.00 0.20 0.00 0.07 par:pas; +drosophile drosophile nom f s 0.10 0.00 0.06 0.00 +drosophiles drosophile nom f p 0.10 0.00 0.04 0.00 +dross dross nom m 0.00 0.07 0.00 0.07 +drossait drosser ver 0.01 0.41 0.00 0.07 ind:imp:3s; +drossant drosser ver 0.01 0.41 0.00 0.07 par:pre; +drossart drossart nom m s 0.00 0.07 0.00 0.07 +drosser drosser ver 0.01 0.41 0.00 0.07 inf; +drossé drosser ver m s 0.01 0.41 0.01 0.07 par:pas; +drossée drosser ver f s 0.01 0.41 0.00 0.07 par:pas; +drossés drosser ver m p 0.01 0.41 0.00 0.07 par:pas; +droséra droséra nom m s 0.01 0.00 0.01 0.00 +drège drège nom f s 0.01 0.00 0.01 0.00 +dru dru adj m s 0.62 9.53 0.13 2.84 +drue dru adj f s 0.62 9.53 0.15 3.58 +drues dru adj f p 0.62 9.53 0.00 0.68 +drugstore drugstore nom m s 1.71 1.89 1.58 1.82 +drugstores drugstore nom m p 1.71 1.89 0.14 0.07 +druide druide nom m s 1.18 4.86 0.89 2.84 +druides druide nom m p 1.18 4.86 0.28 2.03 +druidesse druidesse nom f s 0.02 0.20 0.02 0.14 +druidesses druidesse nom f p 0.02 0.20 0.00 0.07 +druidique druidique adj s 0.19 0.74 0.19 0.54 +druidiques druidique adj m p 0.19 0.74 0.00 0.20 +druidisme druidisme nom m s 0.00 0.54 0.00 0.54 +drumlin drumlin nom m s 0.11 0.00 0.11 0.00 +drummer drummer nom m s 0.17 0.07 0.17 0.07 +drums drums nom m p 0.04 0.07 0.04 0.07 +drépanocytose drépanocytose nom f s 0.01 0.00 0.01 0.00 +drus dru adj m p 0.62 9.53 0.34 2.43 +druze druze adj s 0.56 1.28 0.40 0.54 +druzes druze adj p 0.56 1.28 0.16 0.74 +dry dry adj m s 1.02 1.22 1.02 1.22 +dryade dryade nom f s 0.16 0.27 0.00 0.07 +dryades dryade nom f p 0.16 0.27 0.16 0.20 +dèche dèche nom f s 0.39 1.96 0.38 1.89 +dèches dèche nom f p 0.39 1.96 0.01 0.07 +dèmes dème nom m p 0.00 0.14 0.00 0.14 +dès dès pre 143.72 275.07 143.72 275.07 +dé dé nom m s 23.36 11.55 5.74 3.65 +du du art_def m s 4394.70 6882.16 4394.70 6882.16 +dual dual adj m s 0.07 0.00 0.07 0.00 +dualisme dualisme nom m s 0.02 0.34 0.02 0.34 +dualiste dualiste adj m s 0.01 0.00 0.01 0.00 +dualité dualité nom f s 0.33 0.68 0.33 0.68 +déambula déambuler ver 1.84 7.70 0.01 0.27 ind:pas:3s; +déambulai déambuler ver 1.84 7.70 0.02 0.00 ind:pas:1s; +déambulaient déambuler ver 1.84 7.70 0.01 0.68 ind:imp:3p; +déambulais déambuler ver 1.84 7.70 0.20 0.20 ind:imp:1s; +déambulait déambuler ver 1.84 7.70 0.10 1.22 ind:imp:3s; +déambulant déambuler ver 1.84 7.70 0.20 1.15 par:pre; +déambulante déambulant adj f s 0.01 0.14 0.00 0.14 +déambulateur déambulateur nom m s 0.13 0.00 0.13 0.00 +déambulation déambulation nom f s 0.03 1.42 0.01 0.54 +déambulations déambulation nom f p 0.03 1.42 0.01 0.88 +déambulatoire déambulatoire adj m s 0.00 0.14 0.00 0.07 +déambulatoires déambulatoire adj m p 0.00 0.14 0.00 0.07 +déambule déambuler ver 1.84 7.70 0.52 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déambulent déambuler ver 1.84 7.70 0.10 0.47 ind:pre:3p; +déambuler déambuler ver 1.84 7.70 0.29 1.55 inf; +déambulerai déambuler ver 1.84 7.70 0.01 0.00 ind:fut:1s; +déambulez déambuler ver 1.84 7.70 0.04 0.07 imp:pre:2p;ind:pre:2p; +déambulions déambuler ver 1.84 7.70 0.14 0.14 ind:imp:1p; +déambulons déambuler ver 1.84 7.70 0.00 0.20 ind:pre:1p; +déambulèrent déambuler ver 1.84 7.70 0.00 0.20 ind:pas:3p; +déambulé déambuler ver m s 1.84 7.70 0.22 0.34 par:pas; +débagoulage débagoulage nom m s 0.00 0.07 0.00 0.07 +débagoule débagouler ver 0.01 0.68 0.00 0.34 ind:pre:1s;ind:pre:3s;sub:pre:3s; +débagouler débagouler ver 0.01 0.68 0.01 0.20 inf; +débagoulerait débagouler ver 0.01 0.68 0.00 0.07 cnd:pre:3s; +débagoules débagouler ver 0.01 0.68 0.00 0.07 ind:pre:2s; +déballa déballer ver 3.59 6.69 0.00 0.68 ind:pas:3s; +déballage déballage nom m s 0.32 1.76 0.30 1.62 +déballages déballage nom m p 0.32 1.76 0.01 0.14 +déballai déballer ver 3.59 6.69 0.00 0.20 ind:pas:1s; +déballaient déballer ver 3.59 6.69 0.00 0.34 ind:imp:3p; +déballais déballer ver 3.59 6.69 0.02 0.07 ind:imp:1s;ind:imp:2s; +déballait déballer ver 3.59 6.69 0.02 0.81 ind:imp:3s; +déballant déballer ver 3.59 6.69 0.02 0.14 par:pre; +déballe déballer ver 3.59 6.69 0.67 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déballent déballer ver 3.59 6.69 0.04 0.07 ind:pre:3p; +déballer déballer ver 3.59 6.69 1.63 1.49 inf; +déballera déballer ver 3.59 6.69 0.02 0.00 ind:fut:3s; +déballez déballer ver 3.59 6.69 0.35 0.07 imp:pre:2p;ind:pre:2p; +déballonnage déballonnage nom m s 0.00 0.07 0.00 0.07 +déballonner déballonner ver 0.01 0.74 0.00 0.41 inf; +déballonnerais déballonner ver 0.01 0.74 0.01 0.00 cnd:pre:2s; +déballonneront déballonner ver 0.01 0.74 0.00 0.07 ind:fut:3p; +déballonné déballonner ver m s 0.01 0.74 0.00 0.27 par:pas; +déballons déballer ver 3.59 6.69 0.04 0.00 imp:pre:1p;ind:pre:1p; +déballèrent déballer ver 3.59 6.69 0.00 0.20 ind:pas:3p; +déballé déballer ver m s 3.59 6.69 0.69 0.95 par:pas; +déballée déballer ver f s 3.59 6.69 0.04 0.14 par:pas; +déballées déballer ver f p 3.59 6.69 0.05 0.07 par:pas; +déballés déballer ver m p 3.59 6.69 0.01 0.07 par:pas; +débanda débander ver 0.81 2.43 0.00 0.07 ind:pas:3s; +débandade débandade nom f s 0.58 3.51 0.58 3.51 +débandaient débander ver 0.81 2.43 0.01 0.14 ind:imp:3p; +débandais débander ver 0.81 2.43 0.00 0.07 ind:imp:1s; +débandait débander ver 0.81 2.43 0.00 0.07 ind:imp:3s; +débande débander ver 0.81 2.43 0.35 0.27 ind:pre:1s;ind:pre:3s; +débandent débander ver 0.81 2.43 0.03 0.07 ind:pre:3p; +débander débander ver 0.81 2.43 0.28 0.95 inf; +débandera débander ver 0.81 2.43 0.00 0.07 ind:fut:3s; +débanderaient débander ver 0.81 2.43 0.01 0.00 cnd:pre:3p; +débandez débander ver 0.81 2.43 0.00 0.14 ind:pre:2p; +débandèrent débander ver 0.81 2.43 0.00 0.07 ind:pas:3p; +débandé débander ver m s 0.81 2.43 0.13 0.20 par:pas; +débandées débander ver f p 0.81 2.43 0.00 0.07 par:pas; +débandés débander ver m p 0.81 2.43 0.00 0.27 par:pas; +débaptiser débaptiser ver 0.00 0.27 0.00 0.07 inf; +débaptiserais débaptiser ver 0.00 0.27 0.00 0.07 cnd:pre:1s; +débaptisé débaptiser ver m s 0.00 0.27 0.00 0.07 par:pas; +débaptisée débaptiser ver f s 0.00 0.27 0.00 0.07 par:pas; +débarbot débarbot nom m s 0.00 0.20 0.00 0.14 +débarbots débarbot nom m p 0.00 0.20 0.00 0.07 +débarbouilla débarbouiller ver 0.81 2.77 0.00 0.14 ind:pas:3s; +débarbouillait débarbouiller ver 0.81 2.77 0.00 0.20 ind:imp:3s; +débarbouillant débarbouiller ver 0.81 2.77 0.00 0.07 par:pre; +débarbouille débarbouiller ver 0.81 2.77 0.28 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarbouiller débarbouiller ver 0.81 2.77 0.37 1.42 inf; +débarbouillette débarbouillette nom f s 0.02 0.00 0.02 0.00 +débarbouillé débarbouiller ver m s 0.81 2.77 0.04 0.14 par:pas; +débarbouillée débarbouiller ver f s 0.81 2.77 0.13 0.27 par:pas; +débarbouillés débarbouiller ver m p 0.81 2.77 0.00 0.07 par:pas; +débarcadère débarcadère nom m s 0.43 1.62 0.43 1.55 +débarcadères débarcadère nom m p 0.43 1.62 0.00 0.07 +débardage débardage nom m s 0.00 0.20 0.00 0.14 +débardages débardage nom m p 0.00 0.20 0.00 0.07 +débardaient débarder ver 0.00 0.41 0.00 0.07 ind:imp:3p; +débarder débarder ver 0.00 0.41 0.00 0.14 inf; +débardeur débardeur nom m s 0.77 1.42 0.69 0.68 +débardeurs débardeur nom m p 0.77 1.42 0.08 0.74 +débardée débarder ver f s 0.00 0.41 0.00 0.20 par:pas; +débaroule débarouler ver 0.00 0.14 0.00 0.07 ind:pre:3s; +débaroulent débarouler ver 0.00 0.14 0.00 0.07 ind:pre:3p; +débarqua débarquer ver 25.66 34.39 0.46 1.49 ind:pas:3s; +débarquai débarquer ver 25.66 34.39 0.00 0.47 ind:pas:1s; +débarquaient débarquer ver 25.66 34.39 0.15 1.62 ind:imp:3p; +débarquais débarquer ver 25.66 34.39 0.04 0.27 ind:imp:1s;ind:imp:2s; +débarquait débarquer ver 25.66 34.39 0.51 2.97 ind:imp:3s; +débarquant débarquer ver 25.66 34.39 0.39 2.23 par:pre; +débarque débarquer ver 25.66 34.39 6.18 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarquement débarquement nom m s 2.79 15.00 2.74 14.12 +débarquements débarquement nom m p 2.79 15.00 0.05 0.88 +débarquent débarquer ver 25.66 34.39 1.84 2.09 ind:pre:3p; +débarquer débarquer ver 25.66 34.39 5.89 7.36 inf; +débarquera débarquer ver 25.66 34.39 0.37 0.27 ind:fut:3s; +débarquerai débarquer ver 25.66 34.39 0.07 0.07 ind:fut:1s; +débarqueraient débarquer ver 25.66 34.39 0.02 0.07 cnd:pre:3p; +débarquerait débarquer ver 25.66 34.39 0.03 0.20 cnd:pre:3s; +débarqueras débarquer ver 25.66 34.39 0.02 0.00 ind:fut:2s; +débarquerez débarquer ver 25.66 34.39 0.17 0.07 ind:fut:2p; +débarquerons débarquer ver 25.66 34.39 0.40 0.07 ind:fut:1p; +débarqueront débarquer ver 25.66 34.39 0.17 0.27 ind:fut:3p; +débarques débarquer ver 25.66 34.39 1.25 0.34 ind:pre:2s; +débarquez débarquer ver 25.66 34.39 0.88 0.27 imp:pre:2p;ind:pre:2p; +débarquiez débarquer ver 25.66 34.39 0.02 0.14 ind:imp:2p; +débarquions débarquer ver 25.66 34.39 0.11 0.27 ind:imp:1p; +débarquâmes débarquer ver 25.66 34.39 0.00 0.41 ind:pas:1p; +débarquons débarquer ver 25.66 34.39 0.16 0.27 imp:pre:1p;ind:pre:1p; +débarquèrent débarquer ver 25.66 34.39 0.03 0.95 ind:pas:3p; +débarqué débarquer ver m s 25.66 34.39 6.04 6.62 par:pas; +débarquée débarqué adj f s 0.13 1.15 0.06 0.07 +débarquées débarquer ver f p 25.66 34.39 0.14 0.27 par:pas; +débarqués débarquer ver m p 25.66 34.39 0.27 0.88 par:pas; +débarra débarrer ver 0.01 0.20 0.01 0.00 ind:pas:3s; +débarras débarras nom m 2.79 6.96 2.79 6.96 +débarrassa débarrasser ver 61.77 48.92 0.01 2.50 ind:pas:3s; +débarrassai débarrasser ver 61.77 48.92 0.00 0.07 ind:pas:1s; +débarrassaient débarrasser ver 61.77 48.92 0.02 0.47 ind:imp:3p; +débarrassais débarrasser ver 61.77 48.92 0.07 0.27 ind:imp:1s;ind:imp:2s; +débarrassait débarrasser ver 61.77 48.92 0.43 1.82 ind:imp:3s; +débarrassant débarrasser ver 61.77 48.92 0.14 1.42 par:pre; +débarrasse débarrasser ver 61.77 48.92 11.42 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarrassent débarrasser ver 61.77 48.92 0.33 0.54 ind:pre:3p; +débarrasser débarrasser ver 61.77 48.92 32.37 23.58 inf;; +débarrassera débarrasser ver 61.77 48.92 1.17 0.34 ind:fut:3s; +débarrasserai débarrasser ver 61.77 48.92 0.54 0.47 ind:fut:1s; +débarrasserais débarrasser ver 61.77 48.92 0.25 0.20 cnd:pre:1s;cnd:pre:2s; +débarrasserait débarrasser ver 61.77 48.92 0.07 0.27 cnd:pre:3s; +débarrasseras débarrasser ver 61.77 48.92 0.53 0.00 ind:fut:2s; +débarrasserez débarrasser ver 61.77 48.92 0.16 0.07 ind:fut:2p; +débarrasserons débarrasser ver 61.77 48.92 0.08 0.00 ind:fut:1p; +débarrasseront débarrasser ver 61.77 48.92 0.21 0.20 ind:fut:3p; +débarrasses débarrasser ver 61.77 48.92 0.91 0.07 ind:pre:2s;sub:pre:2s; +débarrassez débarrasser ver 61.77 48.92 3.03 0.54 imp:pre:2p;ind:pre:2p; +débarrassiez débarrasser ver 61.77 48.92 0.24 0.00 ind:imp:2p; +débarrassons débarrasser ver 61.77 48.92 0.79 0.00 imp:pre:1p;ind:pre:1p; +débarrassât débarrasser ver 61.77 48.92 0.00 0.07 sub:imp:3s; +débarrassèrent débarrasser ver 61.77 48.92 0.10 0.27 ind:pas:3p; +débarrassé débarrasser ver m s 61.77 48.92 5.64 6.62 par:pas; +débarrassée débarrasser ver f s 61.77 48.92 1.72 2.57 par:pas; +débarrassées débarrasser ver f p 61.77 48.92 0.26 0.34 par:pas; +débarrassés débarrasser ver m p 61.77 48.92 1.30 2.09 par:pas; +débarrer débarrer ver 0.01 0.20 0.00 0.07 inf; +débarrons débarrer ver 0.01 0.20 0.00 0.07 imp:pre:1p; +débat débat nom m s 10.70 15.81 7.77 9.46 +débats débat nom m p 10.70 15.81 2.93 6.35 +débattît débattre ver 8.63 26.42 0.00 0.07 sub:imp:3s; +débattaient débattre ver 8.63 26.42 0.02 0.61 ind:imp:3p; +débattais débattre ver 8.63 26.42 0.02 0.88 ind:imp:1s;ind:imp:2s; +débattait débattre ver 8.63 26.42 0.51 6.42 ind:imp:3s; +débattant débattre ver 8.63 26.42 0.08 1.35 par:pre; +débatte débattre ver 8.63 26.42 0.01 0.07 sub:pre:3s; +débattent débattre ver 8.63 26.42 0.24 0.74 ind:pre:3p; +débatteur débatteur nom m s 0.00 0.07 0.00 0.07 +débattez débattre ver 8.63 26.42 0.22 0.00 imp:pre:2p;ind:pre:2p; +débattiez débattre ver 8.63 26.42 0.01 0.07 ind:imp:2p; +débattions débattre ver 8.63 26.42 0.01 0.20 ind:imp:1p; +débattirent débattre ver 8.63 26.42 0.00 0.14 ind:pas:3p; +débattis débattre ver 8.63 26.42 0.00 0.68 ind:pas:1s; +débattit débattre ver 8.63 26.42 0.01 1.28 ind:pas:3s; +débattons débattre ver 8.63 26.42 0.33 0.27 imp:pre:1p;ind:pre:1p; +débattra débattre ver 8.63 26.42 0.01 0.07 ind:fut:3s; +débattraient débattre ver 8.63 26.42 0.00 0.07 cnd:pre:3p; +débattrais débattre ver 8.63 26.42 0.02 0.07 cnd:pre:1s; +débattrait débattre ver 8.63 26.42 0.02 0.34 cnd:pre:3s; +débattre débattre ver 8.63 26.42 2.64 5.27 inf; +débattrons débattre ver 8.63 26.42 0.17 0.07 ind:fut:1p; +débattu débattre ver m s 8.63 26.42 1.05 1.62 par:pas; +débattue débattre ver f s 8.63 26.42 0.73 0.95 par:pas; +débattues débattre ver f p 8.63 26.42 0.01 0.20 par:pas; +débattus débattre ver m p 8.63 26.42 0.07 0.34 par:pas; +débauchais débaucher ver 0.80 1.69 0.00 0.07 ind:imp:1s; +débauchait débaucher ver 0.80 1.69 0.00 0.07 ind:imp:3s; +débauchant débaucher ver 0.80 1.69 0.00 0.07 par:pre; +débauche débauche nom f s 2.87 9.39 2.72 7.16 +débaucher débaucher ver 0.80 1.69 0.19 0.61 inf; +débauches débauche nom f p 2.87 9.39 0.14 2.23 +débaucheur débaucheur nom m s 0.02 0.00 0.01 0.00 +débaucheurs débaucheur nom m p 0.02 0.00 0.01 0.00 +débauché débauché nom m s 1.09 1.35 0.62 0.74 +débauchée débauché nom f s 1.09 1.35 0.24 0.00 +débauchées débauché nom f p 1.09 1.35 0.11 0.00 +débauchés débauché nom m p 1.09 1.35 0.12 0.61 +débecquetait débecqueter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +débectage débectage nom m s 0.00 0.07 0.00 0.07 +débectait débecter ver 0.46 1.89 0.00 0.20 ind:imp:3s; +débectance débectance nom f s 0.00 0.20 0.00 0.20 +débectant débecter ver 0.46 1.89 0.04 0.14 par:pre; +débecte débecter ver 0.46 1.89 0.23 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débectent débecter ver 0.46 1.89 0.01 0.14 ind:pre:3p; +débecter débecter ver 0.46 1.89 0.01 0.00 inf; +débecterais débecter ver 0.46 1.89 0.00 0.07 cnd:pre:1s; +débectez débecter ver 0.46 1.89 0.16 0.00 ind:pre:2p; +débecté débecter ver m s 0.46 1.89 0.00 0.14 par:pas; +débectée débecter ver f s 0.46 1.89 0.00 0.20 par:pas; +débectés débecter ver m p 0.46 1.89 0.00 0.07 par:pas; +débiffé débiffer ver m s 0.00 0.07 0.00 0.07 par:pas; +débile débile adj s 21.09 4.66 17.80 3.11 +débilement débilement adv 0.02 0.00 0.02 0.00 +débiles débile nom p 11.99 2.91 3.66 1.55 +débilitaient débiliter ver 0.00 0.54 0.00 0.07 ind:imp:3p; +débilitant débilitant adj m s 0.16 0.27 0.04 0.14 +débilitante débilitant adj f s 0.16 0.27 0.05 0.14 +débilitantes débilitant adj f p 0.16 0.27 0.06 0.00 +débilitation débilitation nom f s 0.00 0.14 0.00 0.14 +débilite débiliter ver 0.00 0.54 0.00 0.07 ind:pre:3s; +débilité débilité nom f s 0.34 0.88 0.27 0.74 +débilitée débiliter ver f s 0.00 0.54 0.00 0.07 par:pas; +débilités débilité nom f p 0.34 0.88 0.08 0.14 +débiller débiller ver 0.00 0.07 0.00 0.07 inf; +débinait débiner ver 2.35 3.18 0.00 0.14 ind:imp:3s; +débine débiner ver 2.35 3.18 0.98 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débinent débiner ver 2.35 3.18 0.39 0.20 ind:pre:3p; +débiner débiner ver 2.35 3.18 0.27 1.35 inf; +débinera débiner ver 2.35 3.18 0.00 0.07 ind:fut:3s; +débinerai débiner ver 2.35 3.18 0.02 0.00 ind:fut:1s; +débinerait débiner ver 2.35 3.18 0.02 0.07 cnd:pre:3s; +débineras débiner ver 2.35 3.18 0.01 0.00 ind:fut:2s; +débines débiner ver 2.35 3.18 0.27 0.07 ind:pre:2s; +débineurs débineur nom m p 0.00 0.14 0.00 0.07 +débineuses débineur nom f p 0.00 0.14 0.00 0.07 +débinez débiner ver 2.35 3.18 0.02 0.14 imp:pre:2p;ind:pre:2p; +débiné débiner ver m s 2.35 3.18 0.26 0.14 par:pas; +débinées débiner ver f p 2.35 3.18 0.00 0.07 par:pas; +débinés débiner ver m p 2.35 3.18 0.10 0.07 par:pas; +débit débit nom m s 1.24 6.35 1.10 5.27 +débita débiter ver 1.87 14.46 0.00 0.54 ind:pas:3s; +débitage débitage nom m s 0.00 0.07 0.00 0.07 +débitai débiter ver 1.87 14.46 0.00 0.20 ind:pas:1s; +débitaient débiter ver 1.87 14.46 0.01 0.54 ind:imp:3p; +débitais débiter ver 1.87 14.46 0.00 0.20 ind:imp:1s; +débitait débiter ver 1.87 14.46 0.04 2.50 ind:imp:3s; +débitant débiter ver 1.87 14.46 0.04 1.01 par:pre; +débitants débitant nom m p 0.00 0.27 0.00 0.07 +dubitatif dubitatif adj m s 0.09 2.30 0.07 1.15 +dubitatifs dubitatif adj m p 0.09 2.30 0.01 0.20 +dubitation dubitation nom f s 0.00 0.14 0.00 0.07 +dubitations dubitation nom f p 0.00 0.14 0.00 0.07 +dubitative dubitatif adj f s 0.09 2.30 0.00 0.74 +dubitativement dubitativement adv 0.00 0.14 0.00 0.14 +dubitatives dubitatif adj f p 0.09 2.30 0.00 0.20 +débite débiter ver 1.87 14.46 0.34 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débitent débiter ver 1.87 14.46 0.14 0.20 ind:pre:3p; +débiter débiter ver 1.87 14.46 0.82 3.45 inf; +débitera débiter ver 1.87 14.46 0.00 0.20 ind:fut:3s; +débiterai débiter ver 1.87 14.46 0.01 0.07 ind:fut:1s; +débiterait débiter ver 1.87 14.46 0.00 0.14 cnd:pre:3s; +débites débiter ver 1.87 14.46 0.02 0.14 ind:pre:2s; +débiteur débiteur nom m s 1.28 0.61 0.75 0.27 +débiteurs débiteur nom m p 1.28 0.61 0.54 0.34 +débitez débiter ver 1.87 14.46 0.24 0.00 imp:pre:2p;ind:pre:2p; +débitrice débiteur adj f s 0.21 0.27 0.00 0.07 +débits débit nom m p 1.24 6.35 0.14 1.08 +débité débiter ver m s 1.87 14.46 0.14 0.95 par:pas; +débitée débiter ver f s 1.87 14.46 0.06 0.41 par:pas; +débitées débiter ver f p 1.87 14.46 0.00 0.81 par:pas; +débités débiter ver m p 1.87 14.46 0.01 0.34 par:pas; +déblai déblai nom m s 0.00 0.74 0.00 0.47 +déblaie déblayer ver 0.96 4.19 0.05 0.20 imp:pre:2s;ind:pre:3s; +déblaiement déblaiement nom m s 0.14 0.74 0.14 0.74 +déblaient déblayer ver 0.96 4.19 0.02 0.14 ind:pre:3p; +déblaierez déblayer ver 0.96 4.19 0.00 0.07 ind:fut:2p; +déblais déblai nom m p 0.00 0.74 0.00 0.27 +déblatère déblatérer ver 0.32 0.47 0.07 0.07 ind:pre:3s; +déblatérait déblatérer ver 0.32 0.47 0.04 0.07 ind:imp:3s; +déblatérant déblatérer ver 0.32 0.47 0.01 0.14 par:pre; +déblatérations déblatération nom f p 0.00 0.07 0.00 0.07 +déblatérer déblatérer ver 0.32 0.47 0.20 0.20 inf; +déblaya déblayer ver 0.96 4.19 0.00 0.07 ind:pas:3s; +déblayage déblayage nom m s 0.09 0.14 0.09 0.14 +déblayaient déblayer ver 0.96 4.19 0.00 0.54 ind:imp:3p; +déblayait déblayer ver 0.96 4.19 0.01 0.47 ind:imp:3s; +déblayant déblayer ver 0.96 4.19 0.00 0.27 par:pre; +déblayer déblayer ver 0.96 4.19 0.45 1.55 inf; +déblayera déblayer ver 0.96 4.19 0.00 0.07 ind:fut:3s; +déblayeur déblayeur adj m s 0.01 0.00 0.01 0.00 +déblayeurs déblayeur nom m p 0.00 0.07 0.00 0.07 +déblayez déblayer ver 0.96 4.19 0.11 0.00 imp:pre:2p;ind:pre:2p; +déblayé déblayer ver m s 0.96 4.19 0.31 0.54 par:pas; +déblayée déblayer ver f s 0.96 4.19 0.00 0.07 par:pas; +déblayées déblayer ver f p 0.96 4.19 0.00 0.14 par:pas; +déblayés déblayer ver m p 0.96 4.19 0.01 0.07 par:pas; +déblocage déblocage nom m s 0.05 0.27 0.05 0.20 +déblocages déblocage nom m p 0.05 0.27 0.00 0.07 +débloqua débloquer ver 6.07 4.73 0.00 0.27 ind:pas:3s; +débloquait débloquer ver 6.07 4.73 0.01 0.20 ind:imp:3s; +débloquant débloquer ver 6.07 4.73 0.01 0.14 par:pre; +débloque débloquer ver 6.07 4.73 1.38 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débloquent débloquer ver 6.07 4.73 0.23 0.07 ind:pre:3p; +débloquer débloquer ver 6.07 4.73 0.77 1.55 inf; +débloques débloquer ver 6.07 4.73 2.20 0.34 ind:pre:2s; +débloquez débloquer ver 6.07 4.73 0.80 0.07 imp:pre:2p;ind:pre:2p; +débloquât débloquer ver 6.07 4.73 0.00 0.07 sub:imp:3s; +débloqué débloquer ver m s 6.07 4.73 0.42 0.54 par:pas; +débloquée débloquer ver f s 6.07 4.73 0.04 0.14 par:pas; +débloqués débloquer ver m p 6.07 4.73 0.22 0.00 par:pas; +déboîta déboîter ver 0.96 1.08 0.00 0.07 ind:pas:3s; +déboîtaient déboîter ver 0.96 1.08 0.01 0.07 ind:imp:3p; +déboîtais déboîter ver 0.96 1.08 0.01 0.07 ind:imp:1s; +déboîtait déboîter ver 0.96 1.08 0.00 0.07 ind:imp:3s; +déboîtant déboîter ver 0.96 1.08 0.00 0.07 par:pre; +déboîte déboîter ver 0.96 1.08 0.13 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboîtement déboîtement nom m s 0.01 0.00 0.01 0.00 +déboîter déboîter ver 0.96 1.08 0.22 0.20 inf; +déboîtez déboîter ver 0.96 1.08 0.02 0.07 imp:pre:2p;ind:pre:2p; +déboîté déboîter ver m s 0.96 1.08 0.32 0.27 par:pas; +déboîtée déboîter ver f s 0.96 1.08 0.25 0.00 par:pas; +déboîtées déboîter ver f p 0.96 1.08 0.00 0.07 par:pas; +débobinage débobinage nom m s 0.00 0.07 0.00 0.07 +débobiner débobiner ver 0.00 0.07 0.00 0.07 inf; +débâcle débâcle nom f s 0.89 6.69 0.76 6.49 +débâcles débâcle nom f p 0.89 6.69 0.14 0.20 +débogage débogage nom m s 0.01 0.00 0.01 0.00 +déboguer déboguer ver 0.04 0.00 0.04 0.00 inf; +débâillonné débâillonner ver m s 0.00 0.07 0.00 0.07 par:pas; +déboire déboire nom m s 0.43 3.51 0.00 0.20 +déboires déboire nom m p 0.43 3.51 0.43 3.31 +déboisement déboisement nom m s 0.01 0.00 0.01 0.00 +déboiser déboiser ver 0.04 0.54 0.01 0.07 inf; +déboisé déboiser ver m s 0.04 0.54 0.02 0.20 par:pas; +déboisée déboiser ver f s 0.04 0.54 0.00 0.20 par:pas; +déboisées déboiser ver f p 0.04 0.54 0.01 0.07 par:pas; +débonda débonder ver 0.00 0.61 0.00 0.14 ind:pas:3s; +débondait débonder ver 0.00 0.61 0.00 0.27 ind:imp:3s; +débondant débonder ver 0.00 0.61 0.00 0.07 par:pre; +débonder débonder ver 0.00 0.61 0.00 0.07 inf; +débondé débonder ver m s 0.00 0.61 0.00 0.07 par:pas; +débonnaire débonnaire adj s 0.11 3.11 0.06 2.64 +débonnaires débonnaire adj p 0.11 3.11 0.05 0.47 +débord débord nom m s 0.00 0.14 0.00 0.14 +déborda déborder ver 15.75 31.62 0.01 0.61 ind:pas:3s; +débordaient déborder ver 15.75 31.62 0.02 3.04 ind:imp:3p; +débordais déborder ver 15.75 31.62 0.21 0.20 ind:imp:1s;ind:imp:2s; +débordait déborder ver 15.75 31.62 0.67 4.86 ind:imp:3s; +débordant déborder ver 15.75 31.62 0.52 5.14 par:pre; +débordante débordant adj f s 1.13 4.66 0.84 1.76 +débordantes débordant adj f p 1.13 4.66 0.14 0.74 +débordants débordant adj m p 1.13 4.66 0.04 0.81 +déborde déborder ver 15.75 31.62 2.31 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débordement débordement nom m s 0.94 3.78 0.62 2.09 +débordements débordement nom m p 0.94 3.78 0.32 1.69 +débordent déborder ver 15.75 31.62 0.69 1.96 ind:pre:3p; +déborder déborder ver 15.75 31.62 1.78 3.92 inf; +débordera déborder ver 15.75 31.62 0.04 0.00 ind:fut:3s; +déborderaient déborder ver 15.75 31.62 0.14 0.14 cnd:pre:3p; +déborderait déborder ver 15.75 31.62 0.01 0.20 cnd:pre:3s; +débordez déborder ver 15.75 31.62 0.06 0.00 imp:pre:2p;ind:pre:2p; +débordât déborder ver 15.75 31.62 0.00 0.14 sub:imp:3s; +débordèrent déborder ver 15.75 31.62 0.00 0.14 ind:pas:3p; +débordé déborder ver m s 15.75 31.62 4.16 3.11 par:pas; +débordée déborder ver f s 15.75 31.62 1.98 1.08 par:pas; +débordées déborder ver f p 15.75 31.62 0.24 0.41 par:pas; +débordés déborder ver m p 15.75 31.62 2.94 1.08 par:pas; +débottelons débotteler ver 0.00 0.07 0.00 0.07 ind:pre:1p; +débotté débotté nom m s 0.16 0.07 0.16 0.07 +débâté débâter ver m s 0.00 0.14 0.00 0.07 par:pas; +débâtées débâter ver f p 0.00 0.14 0.00 0.07 par:pas; +déboucha déboucher ver 4.21 33.45 0.01 4.12 ind:pas:3s; +débouchage débouchage nom m s 0.01 0.00 0.01 0.00 +débouchai déboucher ver 4.21 33.45 0.00 0.34 ind:pas:1s; +débouchaient déboucher ver 4.21 33.45 0.01 1.62 ind:imp:3p; +débouchais déboucher ver 4.21 33.45 0.00 0.20 ind:imp:1s; +débouchait déboucher ver 4.21 33.45 0.16 4.39 ind:imp:3s; +débouchant déboucher ver 4.21 33.45 0.04 3.04 par:pre; +débouche déboucher ver 4.21 33.45 1.97 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débouchent déboucher ver 4.21 33.45 0.14 1.69 ind:pre:3p; +déboucher déboucher ver 4.21 33.45 0.78 6.22 inf; +débouchera déboucher ver 4.21 33.45 0.11 0.07 ind:fut:3s; +déboucherai déboucher ver 4.21 33.45 0.10 0.07 ind:fut:1s; +déboucheraient déboucher ver 4.21 33.45 0.01 0.07 cnd:pre:3p; +déboucherait déboucher ver 4.21 33.45 0.00 0.34 cnd:pre:3s; +déboucherez déboucher ver 4.21 33.45 0.01 0.00 ind:fut:2p; +déboucheur déboucheur nom m s 0.11 0.20 0.07 0.14 +déboucheurs déboucheur nom m p 0.11 0.20 0.04 0.07 +débouchez déboucher ver 4.21 33.45 0.10 0.00 imp:pre:2p;ind:pre:2p; +débouchions déboucher ver 4.21 33.45 0.00 0.07 ind:imp:1p; +débouchoir débouchoir nom m s 0.02 0.00 0.01 0.00 +débouchoirs débouchoir nom m p 0.02 0.00 0.01 0.00 +débouchâmes déboucher ver 4.21 33.45 0.01 0.27 ind:pas:1p; +débouchons déboucher ver 4.21 33.45 0.12 0.54 imp:pre:1p;ind:pre:1p; +débouchèrent déboucher ver 4.21 33.45 0.00 1.49 ind:pas:3p; +débouché déboucher ver m s 4.21 33.45 0.42 2.09 par:pas; +débouchée déboucher ver f s 4.21 33.45 0.16 0.20 par:pas; +débouchées déboucher ver f p 4.21 33.45 0.05 0.07 par:pas; +débouchés débouché nom m p 0.56 3.51 0.54 1.01 +déboucla déboucler ver 0.05 2.91 0.00 0.20 ind:pas:3s; +débouclaient déboucler ver 0.05 2.91 0.00 0.07 ind:imp:3p; +débouclait déboucler ver 0.05 2.91 0.00 0.20 ind:imp:3s; +débouclant déboucler ver 0.05 2.91 0.00 0.47 par:pre; +déboucle déboucler ver 0.05 2.91 0.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débouclent déboucler ver 0.05 2.91 0.00 0.20 ind:pre:3p; +déboucler déboucler ver 0.05 2.91 0.00 0.68 inf; +débouclez déboucler ver 0.05 2.91 0.01 0.14 imp:pre:2p; +débouclions déboucler ver 0.05 2.91 0.00 0.07 ind:imp:1p; +débouclèrent déboucler ver 0.05 2.91 0.00 0.07 ind:pas:3p; +débouclé déboucler ver m s 0.05 2.91 0.02 0.34 par:pas; +débouclées déboucler ver f p 0.05 2.91 0.00 0.07 par:pas; +débouclés déboucler ver m p 0.05 2.91 0.00 0.07 par:pas; +déboula débouler ver 1.94 6.22 0.01 0.41 ind:pas:3s; +déboulai débouler ver 1.94 6.22 0.00 0.07 ind:pas:1s; +déboulaient débouler ver 1.94 6.22 0.00 0.61 ind:imp:3p; +déboulais débouler ver 1.94 6.22 0.02 0.14 ind:imp:1s; +déboulait débouler ver 1.94 6.22 0.11 0.61 ind:imp:3s; +déboulant débouler ver 1.94 6.22 0.02 0.47 par:pre; +déboule débouler ver 1.94 6.22 0.75 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboulent débouler ver 1.94 6.22 0.08 0.47 ind:pre:3p; +débouler débouler ver 1.94 6.22 0.35 1.01 inf; +déboulerais débouler ver 1.94 6.22 0.01 0.07 cnd:pre:1s; +déboulerait débouler ver 1.94 6.22 0.00 0.07 cnd:pre:3s; +débouleront débouler ver 1.94 6.22 0.02 0.00 ind:fut:3p; +déboulez débouler ver 1.94 6.22 0.02 0.00 ind:pre:2p; +débouliez débouler ver 1.94 6.22 0.01 0.00 ind:imp:2p; +déboulions débouler ver 1.94 6.22 0.00 0.07 ind:imp:1p; +déboulonnant déboulonner ver 0.02 0.95 0.00 0.07 par:pre; +déboulonner déboulonner ver 0.02 0.95 0.00 0.27 inf; +déboulonnez déboulonner ver 0.02 0.95 0.01 0.00 imp:pre:2p; +déboulonné déboulonner ver m s 0.02 0.95 0.01 0.20 par:pas; +déboulonnée déboulonner ver f s 0.02 0.95 0.00 0.27 par:pas; +déboulonnées déboulonner ver f p 0.02 0.95 0.00 0.14 par:pas; +déboulèrent débouler ver 1.94 6.22 0.00 0.07 ind:pas:3p; +déboulé débouler ver m s 1.94 6.22 0.51 0.68 par:pas; +déboulés débouler ver m p 1.94 6.22 0.01 0.07 par:pas; +débouquaient débouquer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +débouqué débouquer ver m s 0.00 0.14 0.00 0.07 par:pas; +débourrage débourrage nom m s 0.00 0.07 0.00 0.07 +débourre débourrer ver 0.02 0.54 0.00 0.07 ind:pre:3s; +débourrent débourrer ver 0.02 0.54 0.00 0.07 ind:pre:3p; +débourrer débourrer ver 0.02 0.54 0.02 0.27 inf; +débourré débourrer ver m s 0.02 0.54 0.00 0.07 par:pas; +débourrée débourrer ver f s 0.02 0.54 0.00 0.07 par:pas; +débours débours nom m 0.01 0.20 0.01 0.20 +débourse débourser ver 1.02 0.54 0.04 0.07 ind:pre:1s;ind:pre:3s; +déboursement déboursement nom m s 0.01 0.00 0.01 0.00 +débourser débourser ver 1.02 0.54 0.66 0.20 inf; +déboursera débourser ver 1.02 0.54 0.01 0.07 ind:fut:3s; +débourseront débourser ver 1.02 0.54 0.01 0.00 ind:fut:3p; +déboursé débourser ver m s 1.02 0.54 0.29 0.14 par:pas; +déboursées débourser ver f p 1.02 0.54 0.00 0.07 par:pas; +déboussolait déboussoler ver 1.73 1.42 0.00 0.07 ind:imp:3s; +déboussolantes déboussolant adj f p 0.00 0.07 0.00 0.07 +déboussoler déboussoler ver 1.73 1.42 0.01 0.07 inf; +déboussolé déboussoler ver m s 1.73 1.42 0.82 0.54 par:pas; +déboussolée déboussoler ver f s 1.73 1.42 0.77 0.20 par:pas; +déboussolées déboussoler ver f p 1.73 1.42 0.01 0.07 par:pas; +déboussolés déboussoler ver m p 1.73 1.42 0.12 0.47 par:pas; +déboutait débouter ver 0.12 0.34 0.00 0.07 ind:imp:3s; +débouter débouter ver 0.12 0.34 0.05 0.07 inf; +déboutonna déboutonner ver 1.33 8.24 0.01 1.22 ind:pas:3s; +déboutonnage déboutonnage nom m s 0.27 0.07 0.27 0.07 +déboutonnait déboutonner ver 1.33 8.24 0.03 0.61 ind:imp:3s; +déboutonnant déboutonner ver 1.33 8.24 0.01 0.41 par:pre; +déboutonne déboutonner ver 1.33 8.24 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboutonnent déboutonner ver 1.33 8.24 0.01 0.07 ind:pre:3p; +déboutonner déboutonner ver 1.33 8.24 0.31 1.42 inf; +déboutonnez déboutonner ver 1.33 8.24 0.04 0.07 imp:pre:2p; +déboutonnât déboutonner ver 1.33 8.24 0.00 0.07 sub:imp:3s; +déboutonné déboutonner ver m s 1.33 8.24 0.57 2.16 par:pas; +déboutonnée déboutonner ver f s 1.33 8.24 0.06 0.81 par:pas; +déboutonnées déboutonner ver f p 1.33 8.24 0.00 0.47 par:pas; +déboutonnés déboutonner ver m p 1.33 8.24 0.00 0.14 par:pas; +débouté débouter ver m s 0.12 0.34 0.06 0.07 par:pas; +déboutée débouter ver f s 0.12 0.34 0.01 0.14 par:pas; +débraguette débraguetter ver 0.01 0.54 0.00 0.07 ind:pre:3s; +débraguettent débraguetter ver 0.01 0.54 0.00 0.07 ind:pre:3p; +débraguetter débraguetter ver 0.01 0.54 0.00 0.14 inf; +débraguetté débraguetter ver m s 0.01 0.54 0.01 0.14 par:pas; +débraguettés débraguetter ver m p 0.01 0.54 0.00 0.14 par:pas; +débraillé débraillé nom m s 0.43 1.55 0.26 1.35 +débraillée débraillé adj f s 0.21 1.42 0.02 0.20 +débraillées débraillé adj f p 0.21 1.42 0.01 0.07 +débraillés débraillé nom m p 0.43 1.55 0.16 0.14 +débrancha débrancher ver 6.09 3.31 0.00 0.54 ind:pas:3s; +débranchant débrancher ver 6.09 3.31 0.04 0.00 par:pre; +débranche débrancher ver 6.09 3.31 1.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débranchement débranchement nom m s 0.02 0.00 0.02 0.00 +débranchent débrancher ver 6.09 3.31 0.06 0.00 ind:pre:3p; +débrancher débrancher ver 6.09 3.31 2.27 0.81 inf; +débrancherai débrancher ver 6.09 3.31 0.02 0.07 ind:fut:1s; +débrancherais débrancher ver 6.09 3.31 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +débrancherait débrancher ver 6.09 3.31 0.02 0.14 cnd:pre:3s; +débranchez débrancher ver 6.09 3.31 0.40 0.07 imp:pre:2p;ind:pre:2p; +débranchons débrancher ver 6.09 3.31 0.12 0.00 imp:pre:1p;ind:pre:1p; +débranché débrancher ver m s 6.09 3.31 1.38 0.74 par:pas; +débranchée débrancher ver f s 6.09 3.31 0.30 0.07 par:pas; +débranchées débrancher ver f p 6.09 3.31 0.02 0.00 par:pas; +débranchés débrancher ver m p 6.09 3.31 0.10 0.20 par:pas; +débraya débrayer ver 0.07 1.42 0.00 0.14 ind:pas:3s; +débrayage débrayage nom m s 0.04 0.47 0.04 0.41 +débrayages débrayage nom m p 0.04 0.47 0.00 0.07 +débrayait débrayer ver 0.07 1.42 0.00 0.20 ind:imp:3s; +débraye débrayer ver 0.07 1.42 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débrayent débrayer ver 0.07 1.42 0.00 0.07 ind:pre:3p; +débrayer débrayer ver 0.07 1.42 0.01 0.47 inf; +débrayes débrayer ver 0.07 1.42 0.01 0.07 ind:pre:2s; +débrayez débrayer ver 0.07 1.42 0.02 0.00 imp:pre:2p;ind:pre:2p; +débrayé débrayer ver m s 0.07 1.42 0.01 0.27 par:pas; +débrayée débrayer ver f s 0.07 1.42 0.00 0.07 par:pas; +débridait débrider ver 0.28 1.69 0.00 0.07 ind:imp:3s; +débridant débrider ver 0.28 1.69 0.00 0.07 par:pre; +débride débrider ver 0.28 1.69 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débridement débridement nom m s 0.04 0.00 0.04 0.00 +débrider débrider ver 0.28 1.69 0.04 0.74 inf; +débridera débrider ver 0.28 1.69 0.00 0.07 ind:fut:3s; +débriderai débrider ver 0.28 1.69 0.01 0.07 ind:fut:1s; +débriderait débrider ver 0.28 1.69 0.00 0.07 cnd:pre:3s; +débridez débrider ver 0.28 1.69 0.06 0.00 imp:pre:2p;ind:pre:2p; +débridé débrider ver m s 0.28 1.69 0.06 0.20 par:pas; +débridée débridé adj f s 0.39 0.95 0.28 0.47 +débridées débridé adj f p 0.39 0.95 0.02 0.27 +débridés débridé adj m p 0.39 0.95 0.06 0.07 +débriefer débriefer ver 0.19 0.00 0.11 0.00 inf; +débriefing débriefing nom m s 0.58 0.00 0.58 0.00 +débriefé débriefer ver m s 0.19 0.00 0.06 0.00 par:pas; +débriefée débriefer ver f s 0.19 0.00 0.03 0.00 par:pas; +débris débris nom m 4.94 13.85 4.94 13.85 +débronzer débronzer ver 0.02 0.00 0.02 0.00 inf; +débrouilla débrouiller ver 46.72 20.81 0.03 0.14 ind:pas:3s; +débrouillage débrouillage nom m s 0.00 0.14 0.00 0.14 +débrouillai débrouiller ver 46.72 20.81 0.00 0.07 ind:pas:1s; +débrouillaient débrouiller ver 46.72 20.81 0.01 0.54 ind:imp:3p; +débrouillais débrouiller ver 46.72 20.81 0.51 0.34 ind:imp:1s;ind:imp:2s; +débrouillait débrouiller ver 46.72 20.81 0.53 1.15 ind:imp:3s; +débrouillant débrouiller ver 46.72 20.81 0.01 0.14 par:pre; +débrouillard débrouillard adj m s 0.58 1.28 0.38 0.74 +débrouillarde débrouillard adj f s 0.58 1.28 0.16 0.34 +débrouillardise débrouillardise nom f s 0.00 0.34 0.00 0.34 +débrouillards débrouillard adj m p 0.58 1.28 0.04 0.20 +débrouille débrouiller ver 46.72 20.81 12.63 4.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +débrouillent débrouiller ver 46.72 20.81 0.98 1.08 ind:pre:3p; +débrouiller débrouiller ver 46.72 20.81 12.71 5.68 inf;; +débrouillera débrouiller ver 46.72 20.81 2.36 0.74 ind:fut:3s; +débrouillerai débrouiller ver 46.72 20.81 4.13 1.35 ind:fut:1s; +débrouilleraient débrouiller ver 46.72 20.81 0.00 0.14 cnd:pre:3p; +débrouillerais débrouiller ver 46.72 20.81 0.23 0.20 cnd:pre:1s;cnd:pre:2s; +débrouillerait débrouiller ver 46.72 20.81 0.05 0.27 cnd:pre:3s; +débrouilleras débrouiller ver 46.72 20.81 0.77 0.00 ind:fut:2s; +débrouillerez débrouiller ver 46.72 20.81 0.28 0.41 ind:fut:2p; +débrouillerions débrouiller ver 46.72 20.81 0.00 0.07 cnd:pre:1p; +débrouillerons débrouiller ver 46.72 20.81 0.20 0.00 ind:fut:1p; +débrouilleront débrouiller ver 46.72 20.81 0.12 0.20 ind:fut:3p; +débrouilles débrouiller ver 46.72 20.81 3.45 0.61 ind:pre:2s; +débrouilleurs débrouilleur nom m p 0.01 0.00 0.01 0.00 +débrouillez débrouiller ver 46.72 20.81 3.27 1.22 imp:pre:2p;ind:pre:2p; +débrouilliez débrouiller ver 46.72 20.81 0.02 0.00 ind:imp:2p; +débrouillions débrouiller ver 46.72 20.81 0.01 0.07 ind:imp:1p; +débrouillons débrouiller ver 46.72 20.81 0.06 0.07 imp:pre:1p;ind:pre:1p; +débrouillât débrouiller ver 46.72 20.81 0.00 0.07 sub:imp:3s; +débrouillé débrouiller ver m s 46.72 20.81 2.36 1.22 par:pas; +débrouillée débrouiller ver f s 46.72 20.81 1.61 0.27 par:pas; +débrouillées débrouiller ver f p 46.72 20.81 0.04 0.07 par:pas; +débrouillés débrouiller ver m p 46.72 20.81 0.36 0.47 par:pas; +débroussaillage débroussaillage nom m s 0.01 0.14 0.01 0.14 +débroussaille débroussailler ver 0.14 0.54 0.00 0.20 ind:pre:1s;ind:pre:3s; +débroussailler débroussailler ver 0.14 0.54 0.14 0.20 inf; +débroussailleuse débroussailleur nom f s 0.03 0.07 0.03 0.07 +débroussaillé débroussailler ver m s 0.14 0.54 0.00 0.14 par:pas; +débucher débucher nom m s 0.00 0.07 0.00 0.07 +débusquaient débusquer ver 1.43 2.50 0.00 0.07 ind:imp:3p; +débusquait débusquer ver 1.43 2.50 0.01 0.27 ind:imp:3s; +débusquant débusquer ver 1.43 2.50 0.00 0.07 par:pre; +débusque débusquer ver 1.43 2.50 0.15 0.07 ind:pre:1s;ind:pre:3s; +débusquer débusquer ver 1.43 2.50 0.89 1.49 inf; +débusquerait débusquer ver 1.43 2.50 0.01 0.07 cnd:pre:3s; +débusquerons débusquer ver 1.43 2.50 0.01 0.00 ind:fut:1p; +débusquez débusquer ver 1.43 2.50 0.02 0.00 imp:pre:2p; +débusquèrent débusquer ver 1.43 2.50 0.00 0.07 ind:pas:3p; +débusqué débusquer ver m s 1.43 2.50 0.33 0.14 par:pas; +débusquée débusquer ver f s 1.43 2.50 0.00 0.07 par:pas; +débusqués débusquer ver m p 1.43 2.50 0.02 0.20 par:pas; +début début nom m s 114.31 141.49 109.88 128.51 +débuta débuter ver 10.08 7.16 0.42 0.68 ind:pas:3s; +débutai débuter ver 10.08 7.16 0.00 0.07 ind:pas:1s; +débutaient débuter ver 10.08 7.16 0.02 0.14 ind:imp:3p; +débutais débuter ver 10.08 7.16 0.02 0.27 ind:imp:1s; +débutait débuter ver 10.08 7.16 0.23 1.22 ind:imp:3s; +débutant débutant nom m s 5.82 2.57 2.32 1.08 +débutante débutant nom f s 5.82 2.57 1.21 0.61 +débutantes débutant nom f p 5.82 2.57 0.65 0.27 +débutants débutant nom m p 5.82 2.57 1.64 0.61 +débute débuter ver 10.08 7.16 2.77 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débutent débuter ver 10.08 7.16 0.49 0.20 ind:pre:3p; +débuter débuter ver 10.08 7.16 1.72 0.88 inf; +débutera débuter ver 10.08 7.16 0.28 0.00 ind:fut:3s; +débuteraient débuter ver 10.08 7.16 0.01 0.00 cnd:pre:3p; +débutes débuter ver 10.08 7.16 0.11 0.00 ind:pre:2s; +débutez débuter ver 10.08 7.16 0.09 0.00 imp:pre:2p;ind:pre:2p; +débutiez débuter ver 10.08 7.16 0.02 0.07 ind:imp:2p; +débutons débuter ver 10.08 7.16 0.17 0.00 imp:pre:1p;ind:pre:1p; +débuts début nom m p 114.31 141.49 4.43 12.97 +débutèrent débuter ver 10.08 7.16 0.04 0.00 ind:pas:3p; +débuté débuter ver m s 10.08 7.16 3.41 1.89 par:pas; +débutée débuter ver f s 10.08 7.16 0.02 0.00 par:pas; +déc déc nom s 0.30 0.00 0.30 0.00 +duc duc nom m s 12.40 23.51 7.66 14.80 +déca déca nom m s 1.16 0.07 1.16 0.07 +décabosser décabosser ver 0.01 0.00 0.01 0.00 inf; +décacheta décacheter ver 0.01 2.43 0.00 0.41 ind:pas:3s; +décachetage décachetage nom m s 0.01 0.00 0.01 0.00 +décachetai décacheter ver 0.01 2.43 0.00 0.14 ind:pas:1s; +décachetaient décacheter ver 0.01 2.43 0.00 0.07 ind:imp:3p; +décachetais décacheter ver 0.01 2.43 0.00 0.07 ind:imp:1s; +décachetant décacheter ver 0.01 2.43 0.00 0.14 par:pre; +décacheter décacheter ver 0.01 2.43 0.00 0.34 inf; +décachetons décacheter ver 0.01 2.43 0.01 0.00 imp:pre:1p; +décachette décacheter ver 0.01 2.43 0.00 0.14 ind:pre:1s;ind:pre:3s; +décachetteraient décacheter ver 0.01 2.43 0.00 0.07 cnd:pre:3p; +décacheté décacheter ver m s 0.01 2.43 0.00 0.47 par:pas; +décachetée décacheter ver f s 0.01 2.43 0.00 0.27 par:pas; +décachetées décacheter ver f p 0.01 2.43 0.00 0.34 par:pas; +décade décade nom f s 0.16 1.15 0.13 0.74 +décadence décadence nom f s 1.28 4.73 1.28 4.73 +décadent décadent adj m s 1.47 1.35 0.60 0.47 +décadente décadent adj f s 1.47 1.35 0.68 0.20 +décadentes décadent adj f p 1.47 1.35 0.13 0.20 +décadentisme décadentisme nom m s 0.00 0.07 0.00 0.07 +décadents décadent adj m p 1.47 1.35 0.06 0.47 +décades décade nom f p 0.16 1.15 0.03 0.41 +décadi décadi nom m s 0.00 0.34 0.00 0.27 +décadis décadi nom m p 0.00 0.34 0.00 0.07 +décaféiné décaféiné nom m s 0.22 0.07 0.22 0.07 +décaféinée décaféiner ver f s 0.06 0.07 0.01 0.00 par:pas; +décaissement décaissement nom m s 0.01 0.00 0.01 0.00 +décaisser décaisser ver 0.00 0.14 0.00 0.14 inf; +ducal ducal adj m s 0.23 1.08 0.02 0.54 +décalage décalage nom m s 2.09 3.92 2.04 3.65 +décalages décalage nom m p 2.09 3.92 0.04 0.27 +décalaminé décalaminer ver m s 0.00 0.07 0.00 0.07 par:pas; +décalant décaler ver 1.36 1.42 0.00 0.07 par:pre; +décalcification décalcification nom f s 0.01 0.00 0.01 0.00 +décalcifié décalcifier ver m s 0.00 0.20 0.00 0.07 par:pas; +décalcifiée décalcifier ver f s 0.00 0.20 0.00 0.14 par:pas; +décalcomanie décalcomanie nom f s 0.29 0.61 0.17 0.41 +décalcomanies décalcomanie nom f p 0.29 0.61 0.12 0.20 +décale décaler ver 1.36 1.42 0.11 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ducale ducal adj f s 0.23 1.08 0.11 0.47 +décalent décaler ver 1.36 1.42 0.00 0.07 ind:pre:3p; +décaler décaler ver 1.36 1.42 0.47 0.20 inf; +ducales ducal adj f p 0.23 1.08 0.00 0.07 +décalez décaler ver 1.36 1.42 0.17 0.00 imp:pre:2p; +décalitre décalitre nom m s 0.11 0.14 0.00 0.07 +décalitres décalitre nom m p 0.11 0.14 0.11 0.07 +décalogue décalogue nom m s 0.01 0.20 0.01 0.20 +décalotta décalotter ver 0.00 0.34 0.00 0.07 ind:pas:3s; +décalotter décalotter ver 0.00 0.34 0.00 0.07 inf; +décalotté décalotter ver m s 0.00 0.34 0.00 0.07 par:pas; +décalottée décalotter ver f s 0.00 0.34 0.00 0.07 par:pas; +décalottés décalotter ver m p 0.00 0.34 0.00 0.07 par:pas; +décalquai décalquer ver 0.22 1.08 0.00 0.07 ind:pas:1s; +décalquait décalquer ver 0.22 1.08 0.00 0.14 ind:imp:3s; +décalque décalquer ver 0.22 1.08 0.03 0.07 ind:pre:3s; +décalquer décalquer ver 0.22 1.08 0.06 0.14 inf; +décalques décalquer ver 0.22 1.08 0.04 0.00 ind:pre:2s; +décalqué décalquer ver m s 0.22 1.08 0.06 0.20 par:pas; +décalquée décalquer ver f s 0.22 1.08 0.01 0.34 par:pas; +décalquées décalquer ver f p 0.22 1.08 0.00 0.07 par:pas; +décalqués décalquer ver m p 0.22 1.08 0.02 0.07 par:pas; +décalé décalé adj m s 0.65 0.68 0.41 0.41 +décalée décalé adj f s 0.65 0.68 0.06 0.20 +décalées décaler ver f p 1.36 1.42 0.01 0.07 par:pas; +décalés décaler ver m p 1.36 1.42 0.30 0.14 par:pas; +décambuter décambuter ver 0.00 0.20 0.00 0.20 inf; +décampa décamper ver 4.02 2.50 0.00 0.14 ind:pas:3s; +décampait décamper ver 4.02 2.50 0.00 0.07 ind:imp:3s; +décampe décamper ver 4.02 2.50 1.66 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décampent décamper ver 4.02 2.50 0.16 0.14 ind:pre:3p; +décamper décamper ver 4.02 2.50 0.81 0.95 inf; +décampera décamper ver 4.02 2.50 0.14 0.00 ind:fut:3s; +décamperais décamper ver 4.02 2.50 0.00 0.07 cnd:pre:1s; +décamperont décamper ver 4.02 2.50 0.02 0.00 ind:fut:3p; +décampes décamper ver 4.02 2.50 0.26 0.00 ind:pre:2s; +décampez décamper ver 4.02 2.50 0.70 0.14 imp:pre:2p; +décampons décamper ver 4.02 2.50 0.05 0.00 imp:pre:1p; +décampé décamper ver m s 4.02 2.50 0.20 0.47 par:pas; +décamètre décamètre nom m s 0.00 0.20 0.00 0.14 +décamètres décamètre nom m p 0.00 0.20 0.00 0.07 +décan décan nom m s 0.02 0.07 0.02 0.07 +décanillant décaniller ver 0.02 0.61 0.00 0.07 par:pre; +décanille décaniller ver 0.02 0.61 0.01 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décaniller décaniller ver 0.02 0.61 0.00 0.27 inf; +décanillerait décaniller ver 0.02 0.61 0.00 0.07 cnd:pre:3s; +décanillez décaniller ver 0.02 0.61 0.01 0.00 imp:pre:2p; +décantai décanter ver 0.22 1.28 0.00 0.07 ind:pas:1s; +décantaient décanter ver 0.22 1.28 0.00 0.07 ind:imp:3p; +décantait décanter ver 0.22 1.28 0.00 0.07 ind:imp:3s; +décantant décanter ver 0.22 1.28 0.00 0.14 par:pre; +décantation décantation nom f s 0.10 0.07 0.10 0.07 +décante décanter ver 0.22 1.28 0.04 0.20 ind:pre:3s; +décantent décanter ver 0.22 1.28 0.00 0.07 ind:pre:3p; +décanter décanter ver 0.22 1.28 0.17 0.14 inf; +décanteur décanteur nom m s 0.01 0.00 0.01 0.00 +décanté décanter ver m s 0.22 1.28 0.01 0.14 par:pas; +décantée décanter ver f s 0.22 1.28 0.00 0.20 par:pas; +décantées décanter ver f p 0.22 1.28 0.00 0.20 par:pas; +décapage décapage nom m s 0.01 0.00 0.01 0.00 +décapais décaper ver 0.21 2.09 0.02 0.07 ind:imp:1s;ind:imp:2s; +décapait décaper ver 0.21 2.09 0.00 0.34 ind:imp:3s; +décapant décapant nom m s 0.27 0.34 0.27 0.20 +décapante décapant adj f s 0.04 0.07 0.00 0.07 +décapants décapant adj m p 0.04 0.07 0.01 0.00 +décape décaper ver 0.21 2.09 0.07 0.20 ind:pre:1s;ind:pre:3s; +décaper décaper ver 0.21 2.09 0.07 0.34 inf; +décapera décaper ver 0.21 2.09 0.00 0.07 ind:fut:3s; +décapeur décapeur nom m s 0.00 0.07 0.00 0.07 +décapita décapiter ver 3.72 6.96 0.02 0.20 ind:pas:3s; +décapitaient décapiter ver 3.72 6.96 0.02 0.07 ind:imp:3p; +décapitais décapiter ver 3.72 6.96 0.01 0.00 ind:imp:1s; +décapitait décapiter ver 3.72 6.96 0.02 0.07 ind:imp:3s; +décapitant décapiter ver 3.72 6.96 0.04 0.27 par:pre; +décapitation décapitation nom f s 0.55 0.47 0.43 0.47 +décapitations décapitation nom f p 0.55 0.47 0.13 0.00 +décapite décapiter ver 3.72 6.96 0.20 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décapitent décapiter ver 3.72 6.96 0.14 0.00 ind:pre:3p; +décapiter décapiter ver 3.72 6.96 1.09 0.88 inf; +décapitera décapiter ver 3.72 6.96 0.04 0.00 ind:fut:3s; +décapiterai décapiter ver 3.72 6.96 0.01 0.00 ind:fut:1s; +décapiterait décapiter ver 3.72 6.96 0.00 0.07 cnd:pre:3s; +décapiteront décapiter ver 3.72 6.96 0.01 0.00 ind:fut:3p; +décapitez décapiter ver 3.72 6.96 0.07 0.00 imp:pre:2p;ind:pre:2p; +décapitons décapiter ver 3.72 6.96 0.01 0.00 imp:pre:1p; +décapitât décapiter ver 3.72 6.96 0.00 0.07 sub:imp:3s; +décapitèrent décapiter ver 3.72 6.96 0.00 0.07 ind:pas:3p; +décapité décapiter ver m s 3.72 6.96 1.50 2.57 par:pas; +décapitée décapiter ver f s 3.72 6.96 0.32 1.15 par:pas; +décapitées décapiter ver f p 3.72 6.96 0.04 0.54 par:pas; +décapités décapiter ver m p 3.72 6.96 0.19 0.81 par:pas; +décapode décapode nom m s 0.00 0.07 0.00 0.07 +décapotable décapotable nom f s 1.77 0.88 1.65 0.81 +décapotables décapotable nom f p 1.77 0.88 0.12 0.07 +décapotage décapotage nom m s 0.00 0.07 0.00 0.07 +décapotait décapoter ver 0.04 0.27 0.00 0.07 ind:imp:3s; +décapote décapoter ver 0.04 0.27 0.03 0.00 ind:pre:1s; +décapoter décapoter ver 0.04 0.27 0.00 0.07 inf; +décapoté décapoté adj m s 0.03 0.47 0.01 0.00 +décapotée décapoté adj f s 0.03 0.47 0.02 0.47 +décapotés décapoter ver m p 0.04 0.27 0.00 0.07 par:pas; +décapsula décapsuler ver 0.07 1.35 0.00 0.14 ind:pas:3s; +décapsulant décapsuler ver 0.07 1.35 0.00 0.20 par:pre; +décapsule décapsuler ver 0.07 1.35 0.02 0.41 ind:pre:1s;ind:pre:3s; +décapsuler décapsuler ver 0.07 1.35 0.04 0.20 inf; +décapsulerait décapsuler ver 0.07 1.35 0.00 0.07 cnd:pre:3s; +décapsuleur décapsuleur nom m s 0.34 0.20 0.34 0.20 +décapsulez décapsuler ver 0.07 1.35 0.01 0.00 imp:pre:2p; +décapsulé décapsuler ver m s 0.07 1.35 0.00 0.14 par:pas; +décapsulée décapsuler ver f s 0.07 1.35 0.00 0.20 par:pas; +décapé décaper ver m s 0.21 2.09 0.02 0.34 par:pas; +décapuchonna décapuchonner ver 0.00 0.41 0.00 0.20 ind:pas:3s; +décapuchonne décapuchonner ver 0.00 0.41 0.00 0.07 ind:pre:3s; +décapuchonner décapuchonner ver 0.00 0.41 0.00 0.07 inf; +décapuchonnèrent décapuchonner ver 0.00 0.41 0.00 0.07 ind:pas:3p; +décapée décaper ver f s 0.21 2.09 0.00 0.41 par:pas; +décapées décaper ver f p 0.21 2.09 0.00 0.14 par:pas; +décapés décaper ver m p 0.21 2.09 0.01 0.14 par:pas; +décarcassais décarcasser ver 0.15 0.61 0.00 0.07 ind:imp:1s; +décarcassait décarcasser ver 0.15 0.61 0.00 0.07 ind:imp:3s; +décarcassent décarcasser ver 0.15 0.61 0.00 0.07 ind:pre:3p; +décarcasser décarcasser ver 0.15 0.61 0.05 0.07 inf; +décarcassé décarcasser ver m s 0.15 0.61 0.08 0.14 par:pas; +décarcassée décarcasser ver f s 0.15 0.61 0.02 0.14 par:pas; +décarcassées décarcasser ver f p 0.15 0.61 0.00 0.07 par:pas; +décarpillage décarpillage nom m s 0.00 0.20 0.00 0.20 +décarpiller décarpiller ver 0.00 0.14 0.00 0.07 inf; +décarpillé décarpiller ver m s 0.00 0.14 0.00 0.07 par:pas; +décarrade décarrade nom f s 0.00 2.50 0.00 2.43 +décarrades décarrade nom f p 0.00 2.50 0.00 0.07 +décarraient décarrer ver 0.68 4.32 0.00 0.07 ind:imp:3p; +décarrais décarrer ver 0.68 4.32 0.00 0.07 ind:imp:1s; +décarrait décarrer ver 0.68 4.32 0.00 0.07 ind:imp:3s; +décarrant décarrer ver 0.68 4.32 0.00 0.47 par:pre; +décarre décarrer ver 0.68 4.32 0.40 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décarrent décarrer ver 0.68 4.32 0.00 0.07 ind:pre:3p; +décarrer décarrer ver 0.68 4.32 0.28 1.35 inf; +décarrerait décarrer ver 0.68 4.32 0.00 0.07 cnd:pre:3s; +décarres décarrer ver 0.68 4.32 0.00 0.07 ind:pre:2s; +décarré décarrer ver m s 0.68 4.32 0.00 0.27 par:pas; +décarrés décarrer ver m p 0.68 4.32 0.00 0.07 par:pas; +ducasse ducasse nom f s 0.01 0.27 0.01 0.20 +ducasses ducasse nom f p 0.01 0.27 0.00 0.07 +ducat ducat nom m s 1.00 1.28 0.20 0.07 +décathlon décathlon nom m s 0.27 0.07 0.26 0.07 +décathlons décathlon nom m p 0.27 0.07 0.01 0.00 +décati décati adj m s 0.09 0.61 0.04 0.20 +décatie décati adj f s 0.09 0.61 0.04 0.20 +décatir décatir ver 0.01 0.47 0.00 0.14 inf; +décatis décati adj m p 0.09 0.61 0.01 0.20 +ducaton ducaton nom m s 0.00 0.14 0.00 0.14 +ducats ducat nom m p 1.00 1.28 0.80 1.22 +ducaux ducal adj m p 0.23 1.08 0.10 0.00 +décavé décavé adj m s 0.11 0.27 0.11 0.27 +duce duce nom m s 2.21 2.97 2.21 2.91 +déceint déceindre ver 0.00 0.07 0.00 0.07 ind:pre:3s; +décela déceler ver 2.00 11.15 0.00 0.20 ind:pas:3s; +décelable décelable adj f s 0.04 0.20 0.04 0.20 +décelai déceler ver 2.00 11.15 0.00 0.14 ind:pas:1s; +décelaient déceler ver 2.00 11.15 0.00 0.14 ind:imp:3p; +décelais déceler ver 2.00 11.15 0.01 0.20 ind:imp:1s; +décelait déceler ver 2.00 11.15 0.01 0.74 ind:imp:3s; +décelant déceler ver 2.00 11.15 0.00 0.20 par:pre; +déceler déceler ver 2.00 11.15 0.87 6.01 inf; +décelèrent déceler ver 2.00 11.15 0.00 0.07 ind:pas:3p; +décelé déceler ver m s 2.00 11.15 0.57 2.03 par:pas; +décelée déceler ver f s 2.00 11.15 0.03 0.20 par:pas; +décelées déceler ver f p 2.00 11.15 0.01 0.14 par:pas; +décelés déceler ver m p 2.00 11.15 0.00 0.07 par:pas; +décembre décembre nom m 8.55 31.22 8.55 31.15 +décembres décembre nom m p 8.55 31.22 0.00 0.07 +décembriste décembriste nom s 0.00 0.20 0.00 0.07 +décembristes décembriste nom p 0.00 0.20 0.00 0.14 +décemment décemment adv 0.96 2.57 0.96 2.57 +décence décence nom f s 2.92 2.84 2.92 2.77 +décences décence nom f p 2.92 2.84 0.00 0.07 +décennal décennal adj m s 0.02 0.07 0.01 0.07 +décennale décennal adj f s 0.02 0.07 0.01 0.00 +décennie décennie nom f s 2.67 2.43 1.27 0.95 +décennies décennie nom f p 2.67 2.43 1.41 1.49 +décent décent adj m s 5.95 4.32 2.67 1.89 +décente décent adj f s 5.95 4.32 2.50 1.82 +décentes décent adj f p 5.95 4.32 0.19 0.20 +décentralisation décentralisation nom f s 0.00 0.07 0.00 0.07 +décentralisé décentraliser ver m s 0.12 0.14 0.12 0.00 par:pas; +décentralisée décentraliser ver f s 0.12 0.14 0.00 0.07 par:pas; +décentralisées décentraliser ver f p 0.12 0.14 0.00 0.07 par:pas; +décentrant décentrer ver 0.41 0.41 0.00 0.07 par:pre; +décentre décentrer ver 0.41 0.41 0.00 0.07 ind:pre:3s; +décentrement décentrement nom m s 0.01 0.00 0.01 0.00 +décentrée décentrer ver f s 0.41 0.41 0.01 0.14 par:pas; +décentrées décentrer ver f p 0.41 0.41 0.40 0.14 par:pas; +décents décent adj m p 5.95 4.32 0.60 0.41 +déception déception nom f s 6.65 16.82 5.46 13.04 +déceptions déception nom f p 6.65 16.82 1.19 3.78 +décerna décerner ver 2.19 3.51 0.03 0.07 ind:pas:3s; +décernai décerner ver 2.19 3.51 0.00 0.07 ind:pas:1s; +décernais décerner ver 2.19 3.51 0.00 0.07 ind:imp:2s; +décernait décerner ver 2.19 3.51 0.19 0.41 ind:imp:3s; +décernant décerner ver 2.19 3.51 0.10 0.07 par:pre; +décerne décerner ver 2.19 3.51 0.19 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décernent décerner ver 2.19 3.51 0.02 0.14 ind:pre:3p; +décerner décerner ver 2.19 3.51 0.45 0.88 inf; +décernera décerner ver 2.19 3.51 0.02 0.00 ind:fut:3s; +décerniez décerner ver 2.19 3.51 0.02 0.00 ind:imp:2p; +décernons décerner ver 2.19 3.51 0.16 0.00 imp:pre:1p;ind:pre:1p; +décerné décerner ver m s 2.19 3.51 0.65 0.61 par:pas; +décernée décerner ver f s 2.19 3.51 0.09 0.47 par:pas; +décernées décerner ver f p 2.19 3.51 0.12 0.20 par:pas; +décernés décerner ver m p 2.19 3.51 0.14 0.14 par:pas; +décervelage décervelage nom m s 0.00 0.14 0.00 0.14 +décerveler décerveler ver 0.08 0.27 0.02 0.00 inf; +décervelle décerveler ver 0.08 0.27 0.00 0.14 ind:pre:3s; +décervelé décerveler ver m s 0.08 0.27 0.06 0.14 par:pas; +duces duce nom m p 2.21 2.97 0.00 0.07 +décesse décesser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +décessé décesser ver m s 0.00 0.14 0.00 0.07 par:pas; +décevaient décevoir ver 32.30 21.69 0.00 0.20 ind:imp:3p; +décevais décevoir ver 32.30 21.69 0.03 0.20 ind:imp:1s; +décevait décevoir ver 32.30 21.69 0.02 0.81 ind:imp:3s; +décevant décevant adj m s 2.06 4.59 1.36 2.23 +décevante décevant adj f s 2.06 4.59 0.57 1.49 +décevantes décevant adj f p 2.06 4.59 0.08 0.34 +décevants décevant adj m p 2.06 4.59 0.04 0.54 +décevez décevoir ver 32.30 21.69 1.69 0.14 imp:pre:2p;ind:pre:2p; +déceviez décevoir ver 32.30 21.69 0.02 0.00 ind:imp:2p; +décevoir décevoir ver 32.30 21.69 7.65 3.85 inf; +décevons décevoir ver 32.30 21.69 0.07 0.00 imp:pre:1p;ind:pre:1p; +décevra décevoir ver 32.30 21.69 0.22 0.00 ind:fut:3s; +décevrai décevoir ver 32.30 21.69 0.92 0.07 ind:fut:1s; +décevraient décevoir ver 32.30 21.69 0.00 0.07 cnd:pre:3p; +décevrais décevoir ver 32.30 21.69 0.15 0.00 cnd:pre:1s;cnd:pre:2s; +décevrait décevoir ver 32.30 21.69 0.09 0.20 cnd:pre:3s; +décevras décevoir ver 32.30 21.69 0.22 0.00 ind:fut:2s; +décevrez décevoir ver 32.30 21.69 0.07 0.00 ind:fut:2p; +déchaîna déchaîner ver 6.37 13.18 0.13 1.35 ind:pas:3s; +déchaînaient déchaîner ver 6.37 13.18 0.02 1.22 ind:imp:3p; +déchaînais déchaîner ver 6.37 13.18 0.01 0.14 ind:imp:1s;ind:imp:2s; +déchaînait déchaîner ver 6.37 13.18 0.43 2.43 ind:imp:3s; +déchaînant déchaîner ver 6.37 13.18 0.01 0.27 par:pre; +déchaîne déchaîner ver 6.37 13.18 1.16 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchaînement déchaînement nom m s 0.14 3.38 0.14 2.57 +déchaînements déchaînement nom m p 0.14 3.38 0.01 0.81 +déchaînent déchaîner ver 6.37 13.18 0.38 0.54 ind:pre:3p; +déchaîner déchaîner ver 6.37 13.18 1.32 2.36 inf; +déchaînera déchaîner ver 6.37 13.18 0.06 0.00 ind:fut:3s; +déchaînerait déchaîner ver 6.37 13.18 0.04 0.14 cnd:pre:3s; +déchaîneras déchaîner ver 6.37 13.18 0.00 0.07 ind:fut:2s; +déchaînez déchaîner ver 6.37 13.18 0.06 0.07 imp:pre:2p;ind:pre:2p; +déchaînât déchaîner ver 6.37 13.18 0.00 0.07 sub:imp:3s; +déchaînèrent déchaîner ver 6.37 13.18 0.00 0.07 ind:pas:3p; +déchaîné déchaîner ver m s 6.37 13.18 0.97 1.62 par:pas; +déchaînée déchaîner ver f s 6.37 13.18 0.95 0.68 par:pas; +déchaînées déchaîné adj f p 1.29 4.80 0.35 0.81 +déchaînés déchaîner ver m p 6.37 13.18 0.69 0.41 par:pas; +déchait décher ver 0.00 0.34 0.00 0.14 ind:imp:3s; +déchanta déchanter ver 0.05 1.55 0.00 0.14 ind:pas:3s; +déchantai déchanter ver 0.05 1.55 0.00 0.14 ind:pas:1s; +déchantait déchanter ver 0.05 1.55 0.00 0.14 ind:imp:3s; +déchantant déchanter ver 0.05 1.55 0.00 0.07 par:pre; +déchante déchanter ver 0.05 1.55 0.02 0.07 imp:pre:2s;ind:pre:3s; +déchantent déchanter ver 0.05 1.55 0.00 0.14 ind:pre:3p; +déchanter déchanter ver 0.05 1.55 0.02 0.61 inf; +déchanterais déchanter ver 0.05 1.55 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +déchantèrent déchanter ver 0.05 1.55 0.00 0.07 ind:pas:3p; +déchanté déchanter ver m s 0.05 1.55 0.00 0.14 par:pas; +déchard déchard nom m s 0.00 0.27 0.00 0.20 +déchards déchard nom m p 0.00 0.27 0.00 0.07 +décharge décharge nom f s 9.30 12.77 7.62 11.35 +déchargea décharger ver 10.12 11.89 0.01 0.47 ind:pas:3s; +déchargeaient décharger ver 10.12 11.89 0.12 0.81 ind:imp:3p; +déchargeait décharger ver 10.12 11.89 0.05 1.01 ind:imp:3s; +déchargeant décharger ver 10.12 11.89 0.04 0.47 par:pre; +déchargement déchargement nom m s 0.53 0.88 0.53 0.88 +déchargent décharger ver 10.12 11.89 0.30 0.20 ind:pre:3p; +déchargeons décharger ver 10.12 11.89 0.11 0.00 imp:pre:1p; +déchargeât décharger ver 10.12 11.89 0.00 0.07 sub:imp:3s; +décharger décharger ver 10.12 11.89 3.88 4.32 inf; +déchargera décharger ver 10.12 11.89 0.17 0.07 ind:fut:3s; +déchargerais décharger ver 10.12 11.89 0.00 0.07 cnd:pre:1s; +déchargerait décharger ver 10.12 11.89 0.00 0.14 cnd:pre:3s; +déchargerez décharger ver 10.12 11.89 0.00 0.07 ind:fut:2p; +décharges décharge nom f p 9.30 12.77 1.68 1.42 +déchargeur déchargeur nom m s 0.03 0.07 0.03 0.07 +déchargez décharger ver 10.12 11.89 1.13 0.00 imp:pre:2p;ind:pre:2p; +déchargions décharger ver 10.12 11.89 0.01 0.07 ind:imp:1p; +déchargèrent décharger ver 10.12 11.89 0.00 0.14 ind:pas:3p; +déchargé décharger ver m s 10.12 11.89 1.80 1.28 par:pas; +déchargée décharger ver f s 10.12 11.89 0.22 0.34 par:pas; +déchargées décharger ver f p 10.12 11.89 0.06 0.14 par:pas; +déchargés décharger ver m p 10.12 11.89 0.22 0.41 par:pas; +décharne décharner ver 0.20 1.62 0.00 0.07 ind:pre:3s; +décharnement décharnement nom m s 0.00 0.07 0.00 0.07 +décharnent décharner ver 0.20 1.62 0.00 0.07 ind:pre:3p; +décharner décharner ver 0.20 1.62 0.00 0.20 inf; +décharnerait décharner ver 0.20 1.62 0.00 0.07 cnd:pre:3s; +décharné décharner ver m s 0.20 1.62 0.17 0.27 par:pas; +décharnée décharné adj f s 0.17 5.20 0.04 1.35 +décharnées décharné adj f p 0.17 5.20 0.02 0.41 +décharnés décharné adj m p 0.17 5.20 0.01 0.88 +déchassé déchasser ver m s 0.00 0.07 0.00 0.07 par:pas; +déchaumaient déchaumer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +déchaumée déchaumer ver f s 0.00 0.14 0.00 0.07 par:pas; +déchaussa déchausser ver 0.73 2.91 0.00 0.41 ind:pas:3s; +déchaussaient déchausser ver 0.73 2.91 0.00 0.07 ind:imp:3p; +déchaussait déchausser ver 0.73 2.91 0.00 0.27 ind:imp:3s; +déchaussant déchausser ver 0.73 2.91 0.00 0.14 par:pre; +déchausse déchausser ver 0.73 2.91 0.23 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchaussent déchausser ver 0.73 2.91 0.00 0.07 ind:pre:3p; +déchausser déchausser ver 0.73 2.91 0.21 0.68 inf; +déchausserais déchausser ver 0.73 2.91 0.01 0.00 cnd:pre:1s; +déchaussez déchausser ver 0.73 2.91 0.28 0.00 imp:pre:2p;ind:pre:2p; +déchaussé déchaussé adj m s 0.05 0.95 0.02 0.27 +déchaussée déchaussé adj f s 0.05 0.95 0.01 0.20 +déchaussées déchaussé adj f p 0.05 0.95 0.01 0.07 +déchaussés déchaussé adj m p 0.05 0.95 0.01 0.41 +décher décher ver 0.00 0.34 0.00 0.14 inf; +duchesse duc nom f s 12.40 23.51 3.99 6.15 +duchesses duc nom f p 12.40 23.51 0.06 0.95 +déchet déchet nom m s 7.04 6.42 1.27 1.96 +déchets déchet nom m p 7.04 6.42 5.77 4.46 +déchetterie déchetterie nom f s 0.11 0.00 0.11 0.00 +déchiffra déchiffrer ver 4.88 15.81 0.00 0.54 ind:pas:3s; +déchiffrable déchiffrable adj m s 0.02 0.47 0.02 0.27 +déchiffrables déchiffrable adj m p 0.02 0.47 0.00 0.20 +déchiffrage déchiffrage nom m s 0.06 0.41 0.06 0.41 +déchiffrai déchiffrer ver 4.88 15.81 0.00 0.14 ind:pas:1s; +déchiffraient déchiffrer ver 4.88 15.81 0.00 0.07 ind:imp:3p; +déchiffrais déchiffrer ver 4.88 15.81 0.01 0.41 ind:imp:1s;ind:imp:2s; +déchiffrait déchiffrer ver 4.88 15.81 0.01 1.35 ind:imp:3s; +déchiffrant déchiffrer ver 4.88 15.81 0.03 0.27 par:pre; +déchiffre déchiffrer ver 4.88 15.81 0.13 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchiffrement déchiffrement nom m s 0.04 1.22 0.04 1.22 +déchiffrent déchiffrer ver 4.88 15.81 0.16 0.14 ind:pre:3p; +déchiffrer déchiffrer ver 4.88 15.81 3.08 10.07 inf; +déchiffrera déchiffrer ver 4.88 15.81 0.17 0.00 ind:fut:3s; +déchiffreur déchiffreur nom m s 0.01 0.14 0.01 0.14 +déchiffrez déchiffrer ver 4.88 15.81 0.03 0.00 imp:pre:2p; +déchiffrions déchiffrer ver 4.88 15.81 0.00 0.20 ind:imp:1p; +déchiffrâmes déchiffrer ver 4.88 15.81 0.00 0.07 ind:pas:1p; +déchiffrât déchiffrer ver 4.88 15.81 0.14 0.14 sub:imp:3s; +déchiffrèrent déchiffrer ver 4.88 15.81 0.00 0.07 ind:pas:3p; +déchiffré déchiffrer ver m s 4.88 15.81 1.01 0.68 par:pas; +déchiffrée déchiffrer ver f s 4.88 15.81 0.06 0.14 par:pas; +déchiffrées déchiffrer ver f p 4.88 15.81 0.01 0.07 par:pas; +déchiffrés déchiffrer ver m p 4.88 15.81 0.04 0.20 par:pas; +déchiqueta déchiqueter ver 2.46 5.74 0.00 0.14 ind:pas:3s; +déchiquetage déchiquetage nom m s 0.00 0.27 0.00 0.27 +déchiquetaient déchiqueter ver 2.46 5.74 0.04 0.20 ind:imp:3p; +déchiquetait déchiqueter ver 2.46 5.74 0.00 0.07 ind:imp:3s; +déchiquetant déchiqueter ver 2.46 5.74 0.03 0.27 par:pre; +déchiqueter déchiqueter ver 2.46 5.74 0.92 1.35 inf; +déchiqueteur déchiqueteur nom m s 0.02 0.20 0.01 0.07 +déchiqueteurs déchiqueteur nom m p 0.02 0.20 0.00 0.07 +déchiqueteuse déchiqueteuse nom f s 0.07 0.00 0.07 0.00 +déchiqueteuses déchiqueteur nom f p 0.02 0.20 0.00 0.07 +déchiquetons déchiqueter ver 2.46 5.74 0.00 0.07 ind:pre:1p; +déchiquette déchiqueter ver 2.46 5.74 0.14 0.27 imp:pre:2s;ind:pre:3s; +déchiquettent déchiqueter ver 2.46 5.74 0.04 0.14 ind:pre:3p; +déchiquettes déchiqueter ver 2.46 5.74 0.00 0.07 ind:pre:2s; +déchiqueté déchiqueter ver m s 2.46 5.74 0.93 1.15 par:pas; +déchiquetée déchiqueter ver f s 2.46 5.74 0.15 0.68 par:pas; +déchiquetées déchiqueter ver f p 2.46 5.74 0.04 0.27 par:pas; +déchiquetés déchiqueter ver m p 2.46 5.74 0.18 1.08 par:pas; +déchira déchirer ver 26.46 53.11 0.17 5.00 ind:pas:3s; +déchirage déchirage nom m s 0.00 0.14 0.00 0.07 +déchirages déchirage nom m p 0.00 0.14 0.00 0.07 +déchirai déchirer ver 26.46 53.11 0.14 0.47 ind:pas:1s; +déchiraient déchirer ver 26.46 53.11 0.06 2.70 ind:imp:3p; +déchirais déchirer ver 26.46 53.11 0.03 0.34 ind:imp:1s;ind:imp:2s; +déchirait déchirer ver 26.46 53.11 0.39 4.86 ind:imp:3s; +déchirant déchirer ver 26.46 53.11 0.49 2.97 par:pre; +déchirante déchirant adj f s 0.64 10.27 0.10 3.99 +déchirantes déchirant adj f p 0.64 10.27 0.02 1.22 +déchirants déchirant adj m p 0.64 10.27 0.15 2.03 +déchire déchirer ver 26.46 53.11 7.45 8.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchirement déchirement nom m s 0.36 5.68 0.23 4.05 +déchirements déchirement nom m p 0.36 5.68 0.13 1.62 +déchirent déchirer ver 26.46 53.11 1.26 2.09 ind:pre:3p; +déchirer déchirer ver 26.46 53.11 4.27 8.72 inf;; +déchirera déchirer ver 26.46 53.11 0.13 0.07 ind:fut:3s; +déchirerai déchirer ver 26.46 53.11 0.35 0.07 ind:fut:1s; +déchireraient déchirer ver 26.46 53.11 0.14 0.14 cnd:pre:3p; +déchirerais déchirer ver 26.46 53.11 0.14 0.27 cnd:pre:1s;cnd:pre:2s; +déchirerait déchirer ver 26.46 53.11 0.04 0.20 cnd:pre:3s; +déchireras déchirer ver 26.46 53.11 0.02 0.00 ind:fut:2s; +déchirerons déchirer ver 26.46 53.11 0.04 0.00 ind:fut:1p; +déchireront déchirer ver 26.46 53.11 0.07 0.07 ind:fut:3p; +déchires déchirer ver 26.46 53.11 0.81 0.07 ind:pre:2s; +déchireur déchireur nom m s 0.02 0.00 0.02 0.00 +déchirez déchirer ver 26.46 53.11 0.84 0.07 imp:pre:2p;ind:pre:2p; +déchiriez déchirer ver 26.46 53.11 0.02 0.07 ind:imp:2p; +déchirions déchirer ver 26.46 53.11 0.00 0.14 ind:imp:1p; +déchirons déchirer ver 26.46 53.11 0.17 0.07 imp:pre:1p;ind:pre:1p; +déchirât déchirer ver 26.46 53.11 0.00 0.07 sub:imp:3s; +déchirèrent déchirer ver 26.46 53.11 0.02 0.68 ind:pas:3p; +déchiré déchirer ver m s 26.46 53.11 6.50 8.24 par:pas; +déchirée déchirer ver f s 26.46 53.11 2.11 3.31 par:pas; +déchirées déchirer ver f p 26.46 53.11 0.35 1.01 par:pas; +déchirure déchirure nom f s 1.58 7.03 1.03 4.80 +déchirures déchirure nom f p 1.58 7.03 0.55 2.23 +déchirés déchiré adj m p 5.59 13.38 0.70 3.31 +duchnoque duchnoque nom s 0.02 0.07 0.02 0.07 +déchoient déchoir ver 0.88 3.04 0.00 0.07 ind:pre:3p; +déchoir déchoir ver 0.88 3.04 0.01 1.49 inf; +déchoirons déchoir ver 0.88 3.04 0.00 0.07 ind:fut:1p; +déchouer déchouer ver 0.01 0.00 0.01 0.00 inf; +déchristianise déchristianiser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +déché décher ver m s 0.00 0.34 0.00 0.07 par:pas; +déchu déchu adj m s 1.10 3.85 0.59 1.76 +duché duché nom m s 0.06 0.14 0.06 0.14 +déchéance déchéance nom f s 1.67 6.42 1.67 6.28 +déchéances déchéance nom f p 1.67 6.42 0.00 0.14 +déchue déchu adj f s 1.10 3.85 0.19 0.88 +déchues déchoir ver f p 0.88 3.04 0.14 0.07 par:pas; +déchus déchu adj m p 1.10 3.85 0.28 0.81 +déci déci nom m s 0.01 0.00 0.01 0.00 +décibel décibel nom m s 0.40 0.88 0.04 0.00 +décibels décibel nom m p 0.40 0.88 0.37 0.88 +décida décider ver 207.76 214.19 3.86 36.82 ind:pas:3s; +décidai décider ver 207.76 214.19 2.04 11.08 ind:pas:1s; +décidaient décider ver 207.76 214.19 0.38 1.96 ind:imp:3p; +décidais décider ver 207.76 214.19 0.77 1.28 ind:imp:1s;ind:imp:2s; +décidait décider ver 207.76 214.19 0.68 6.69 ind:imp:3s; +décidant décider ver 207.76 214.19 0.48 2.64 par:pre; +décide décider ver 207.76 214.19 31.25 20.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +décident décider ver 207.76 214.19 3.37 2.57 ind:pre:3p; +décider décider ver 207.76 214.19 42.27 27.16 inf; +décidera décider ver 207.76 214.19 3.48 2.16 ind:fut:3s; +déciderai décider ver 207.76 214.19 1.73 0.07 ind:fut:1s; +décideraient décider ver 207.76 214.19 0.01 0.61 cnd:pre:3p; +déciderais décider ver 207.76 214.19 0.14 0.20 cnd:pre:1s;cnd:pre:2s; +déciderait décider ver 207.76 214.19 0.42 1.15 cnd:pre:3s; +décideras décider ver 207.76 214.19 0.76 0.54 ind:fut:2s; +déciderez décider ver 207.76 214.19 0.47 0.34 ind:fut:2p; +décideriez décider ver 207.76 214.19 0.09 0.14 cnd:pre:2p; +déciderions décider ver 207.76 214.19 0.01 0.00 cnd:pre:1p; +déciderons décider ver 207.76 214.19 0.35 0.14 ind:fut:1p; +décideront décider ver 207.76 214.19 0.89 0.74 ind:fut:3p; +décides décider ver 207.76 214.19 8.15 1.89 ind:pre:2s; +décideur décideur nom m s 0.23 0.00 0.12 0.00 +décideurs décideur nom m p 0.23 0.00 0.11 0.00 +décidez décider ver 207.76 214.19 6.25 0.88 imp:pre:2p;ind:pre:2p; +décidiez décider ver 207.76 214.19 0.58 0.14 ind:imp:2p; +décidions décider ver 207.76 214.19 0.20 0.41 ind:imp:1p; +décidâmes décider ver 207.76 214.19 0.02 1.62 ind:pas:1p; +décidons décider ver 207.76 214.19 1.42 0.68 imp:pre:1p;ind:pre:1p; +décidât décider ver 207.76 214.19 0.00 1.08 sub:imp:3s; +décidèrent décider ver 207.76 214.19 0.65 5.27 ind:pas:3p; +décidé décider ver m s 207.76 214.19 92.08 73.78 par:pas;par:pas;par:pas; +décidée décider ver f s 207.76 214.19 3.63 7.50 par:pas; +décidées décider ver f p 207.76 214.19 0.13 0.88 par:pas; +décidément décidément adv 3.88 30.81 3.88 30.81 +décidés décider ver m p 207.76 214.19 1.23 3.18 par:pas; +décigramme décigramme nom m s 0.14 0.00 0.01 0.00 +décigrammes décigramme nom m p 0.14 0.00 0.14 0.00 +décile décile nom m s 0.01 0.00 0.01 0.00 +décilitre décilitre nom m s 0.03 0.07 0.03 0.07 +décima décimer ver 3.30 3.85 0.04 0.00 ind:pas:3s; +décimaient décimer ver 3.30 3.85 0.00 0.14 ind:imp:3p; +décimait décimer ver 3.30 3.85 0.01 0.27 ind:imp:3s; +décimal décimal adj m s 0.34 0.47 0.09 0.07 +décimale décimal adj f s 0.34 0.47 0.11 0.20 +décimales décimal adj f p 0.34 0.47 0.15 0.20 +décimalisation décimalisation nom f s 0.01 0.00 0.01 0.00 +décimalité décimalité nom f s 0.01 0.00 0.01 0.00 +décimant décimer ver 3.30 3.85 0.01 0.00 par:pre; +décimateur décimateur nom m s 0.01 0.00 0.01 0.00 +décimation décimation nom f s 0.42 0.20 0.42 0.20 +décime décimer ver 3.30 3.85 0.46 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déciment décimer ver 3.30 3.85 0.14 0.00 ind:pre:3p; +décimer décimer ver 3.30 3.85 0.41 0.27 inf; +décimera décimer ver 3.30 3.85 0.01 0.00 ind:fut:3s; +décimerai décimer ver 3.30 3.85 0.01 0.00 ind:fut:1s; +décimerait décimer ver 3.30 3.85 0.03 0.00 cnd:pre:3s; +décimeront décimer ver 3.30 3.85 0.01 0.07 ind:fut:3p; +décimes décime nom m p 0.00 0.07 0.00 0.07 +décimèrent décimer ver 3.30 3.85 0.00 0.07 ind:pas:3p; +décimètre décimètre nom m s 0.03 0.81 0.01 0.54 +décimètres décimètre nom m p 0.03 0.81 0.01 0.27 +décimé décimer ver m s 3.30 3.85 0.97 0.74 par:pas; +décimée décimer ver f s 3.30 3.85 0.35 0.88 par:pas; +décimées décimer ver f p 3.30 3.85 0.15 0.54 par:pas; +décimés décimer ver m p 3.30 3.85 0.68 0.68 par:pas; +décisif décisif adj m s 3.85 16.01 1.96 7.03 +décisifs décisif adj m p 3.85 16.01 0.17 1.69 +décision_clé décision_clé nom f s 0.01 0.00 0.01 0.00 +décision décision nom f s 66.48 60.00 54.63 47.77 +décisionnaire décisionnaire nom s 0.04 0.00 0.04 0.00 +décisionnel décisionnel adj m s 0.05 0.00 0.04 0.00 +décisionnelles décisionnel adj f p 0.05 0.00 0.01 0.00 +décisions décision nom f p 66.48 60.00 11.85 12.23 +décisive décisif adj f s 3.85 16.01 1.47 5.95 +décisives décisif adj f p 3.85 16.01 0.25 1.35 +décivilisés déciviliser ver m p 0.00 0.07 0.00 0.07 par:pas; +déclama déclamer ver 0.63 5.00 0.00 0.47 ind:pas:3s; +déclamai déclamer ver 0.63 5.00 0.00 0.07 ind:pas:1s; +déclamaient déclamer ver 0.63 5.00 0.00 0.20 ind:imp:3p; +déclamais déclamer ver 0.63 5.00 0.01 0.20 ind:imp:1s;ind:imp:2s; +déclamait déclamer ver 0.63 5.00 0.03 1.22 ind:imp:3s; +déclamant déclamer ver 0.63 5.00 0.01 0.47 par:pre; +déclamation déclamation nom f s 0.04 0.81 0.03 0.68 +déclamations déclamation nom f p 0.04 0.81 0.01 0.14 +déclamatoire déclamatoire adj s 0.02 0.54 0.01 0.34 +déclamatoires déclamatoire adj f p 0.02 0.54 0.01 0.20 +déclamatrice déclamateur nom f s 0.00 0.14 0.00 0.14 +déclame déclamer ver 0.63 5.00 0.05 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclamer déclamer ver 0.63 5.00 0.53 1.22 inf; +déclamera déclamer ver 0.63 5.00 0.00 0.07 ind:fut:3s; +déclamerait déclamer ver 0.63 5.00 0.01 0.07 cnd:pre:3s; +déclamât déclamer ver 0.63 5.00 0.00 0.07 sub:imp:3s; +déclamé déclamer ver m s 0.63 5.00 0.00 0.20 par:pas; +déclamée déclamer ver f s 0.63 5.00 0.00 0.14 par:pas; +déclanche déclancher ver 0.22 0.14 0.01 0.07 ind:pre:3s; +déclancher déclancher ver 0.22 0.14 0.14 0.07 inf; +déclanchera déclancher ver 0.22 0.14 0.01 0.00 ind:fut:3s; +déclanché déclancher ver m s 0.22 0.14 0.06 0.00 par:pas; +déclara déclarer ver 41.59 73.18 0.89 20.00 ind:pas:3s; +déclarai déclarer ver 41.59 73.18 0.00 3.65 ind:pas:1s; +déclaraient déclarer ver 41.59 73.18 0.22 0.95 ind:imp:3p; +déclarais déclarer ver 41.59 73.18 0.00 0.68 ind:imp:1s; +déclarait déclarer ver 41.59 73.18 0.26 6.96 ind:imp:3s; +déclarant déclarer ver 41.59 73.18 0.27 3.65 par:pre; +déclaration déclaration nom f s 19.74 21.82 16.49 15.68 +déclarations déclaration nom f p 19.74 21.82 3.25 6.15 +déclarative déclaratif adj f s 0.00 0.07 0.00 0.07 +déclaratoire déclaratoire adj s 0.03 0.00 0.03 0.00 +déclare déclarer ver 41.59 73.18 13.13 9.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclarent déclarer ver 41.59 73.18 0.75 1.08 ind:pre:3p; +déclarer déclarer ver 41.59 73.18 6.85 7.97 inf; +déclarera déclarer ver 41.59 73.18 0.28 0.20 ind:fut:3s; +déclarerai déclarer ver 41.59 73.18 0.18 0.00 ind:fut:1s; +déclarerais déclarer ver 41.59 73.18 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +déclarerait déclarer ver 41.59 73.18 0.04 0.27 cnd:pre:3s; +déclareriez déclarer ver 41.59 73.18 0.03 0.00 cnd:pre:2p; +déclarerions déclarer ver 41.59 73.18 0.00 0.07 cnd:pre:1p; +déclarerons déclarer ver 41.59 73.18 0.02 0.07 ind:fut:1p; +déclareront déclarer ver 41.59 73.18 0.16 0.00 ind:fut:3p; +déclares déclarer ver 41.59 73.18 0.11 0.00 ind:pre:2s; +déclarez déclarer ver 41.59 73.18 1.03 0.27 imp:pre:2p;ind:pre:2p; +déclariez déclarer ver 41.59 73.18 0.17 0.07 ind:imp:2p; +déclarions déclarer ver 41.59 73.18 0.01 0.07 ind:imp:1p; +déclarons déclarer ver 41.59 73.18 1.16 0.41 imp:pre:1p;ind:pre:1p; +déclarât déclarer ver 41.59 73.18 0.00 0.14 sub:imp:3s; +déclarèrent déclarer ver 41.59 73.18 0.01 0.54 ind:pas:3p; +déclaré déclarer ver m s 41.59 73.18 13.37 13.72 par:pas;par:pas;par:pas; +déclarée déclarer ver f s 41.59 73.18 2.04 1.62 par:pas; +déclarées déclarer ver f p 41.59 73.18 0.05 0.20 par:pas; +déclarés déclarer ver m p 41.59 73.18 0.54 0.68 par:pas; +déclasse déclasser ver 0.21 0.54 0.02 0.14 ind:pre:1s;ind:pre:3s; +déclassement déclassement nom m s 0.00 0.20 0.00 0.20 +déclasser déclasser ver 0.21 0.54 0.14 0.20 inf; +déclassé déclassé adj m s 0.14 0.07 0.14 0.00 +déclassée déclasser ver f s 0.21 0.54 0.01 0.00 par:pas; +déclassées déclasser ver f p 0.21 0.54 0.01 0.00 par:pas; +déclassés déclassé nom m p 0.00 0.95 0.00 0.20 +déclavetées déclaveter ver f p 0.00 0.07 0.00 0.07 par:pas; +déclencha déclencher ver 19.23 22.91 0.16 2.30 ind:pas:3s; +déclenchai déclencher ver 19.23 22.91 0.00 0.07 ind:pas:1s; +déclenchaient déclencher ver 19.23 22.91 0.18 0.34 ind:imp:3p; +déclenchait déclencher ver 19.23 22.91 0.11 1.89 ind:imp:3s; +déclenchant déclencher ver 19.23 22.91 0.39 0.74 par:pre; +déclenche déclencher ver 19.23 22.91 3.27 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclenchement déclenchement nom m s 0.53 2.50 0.53 2.50 +déclenchent déclencher ver 19.23 22.91 0.63 0.68 ind:pre:3p; +déclencher déclencher ver 19.23 22.91 4.71 5.88 inf; +déclenchera déclencher ver 19.23 22.91 0.53 0.20 ind:fut:3s; +déclencherai déclencher ver 19.23 22.91 0.08 0.00 ind:fut:1s; +déclencheraient déclencher ver 19.23 22.91 0.00 0.07 cnd:pre:3p; +déclencherais déclencher ver 19.23 22.91 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +déclencherait déclencher ver 19.23 22.91 0.34 0.07 cnd:pre:3s; +déclencherez déclencher ver 19.23 22.91 0.14 0.07 ind:fut:2p; +déclencherons déclencher ver 19.23 22.91 0.05 0.00 ind:fut:1p; +déclencheront déclencher ver 19.23 22.91 0.05 0.00 ind:fut:3p; +déclencheur déclencheur nom m s 0.94 0.07 0.84 0.07 +déclencheurs déclencheur nom m p 0.94 0.07 0.09 0.00 +déclenchez déclencher ver 19.23 22.91 0.60 0.00 imp:pre:2p;ind:pre:2p; +déclenchions déclencher ver 19.23 22.91 0.00 0.07 ind:imp:1p; +déclenchons déclencher ver 19.23 22.91 0.13 0.00 imp:pre:1p;ind:pre:1p; +déclenchât déclencher ver 19.23 22.91 0.00 0.07 sub:imp:3s; +déclenchèrent déclencher ver 19.23 22.91 0.03 0.54 ind:pas:3p; +déclenché déclencher ver m s 19.23 22.91 5.29 3.65 par:pas; +déclenchée déclencher ver f s 19.23 22.91 2.12 2.09 par:pas; +déclenchées déclencher ver f p 19.23 22.91 0.29 0.41 par:pas; +déclenchés déclencher ver m p 19.23 22.91 0.09 0.20 par:pas; +déclic déclic nom m s 1.13 7.97 0.96 7.50 +déclics déclic nom m p 1.13 7.97 0.17 0.47 +déclin déclin nom m s 1.73 6.42 1.73 6.08 +déclina décliner ver 3.55 11.28 0.12 1.08 ind:pas:3s; +déclinai décliner ver 3.55 11.28 0.00 0.34 ind:pas:1s; +déclinaient décliner ver 3.55 11.28 0.00 0.14 ind:imp:3p; +déclinais décliner ver 3.55 11.28 0.01 0.20 ind:imp:1s; +déclinaison déclinaison nom f s 0.23 0.47 0.09 0.20 +déclinaisons déclinaison nom f p 0.23 0.47 0.14 0.27 +déclinait décliner ver 3.55 11.28 0.28 2.50 ind:imp:3s; +déclinant décliner ver 3.55 11.28 0.16 0.81 par:pre; +déclinante déclinant adj f s 0.06 2.97 0.04 1.08 +déclinants déclinant adj m p 0.06 2.97 0.00 0.20 +décline décliner ver 3.55 11.28 1.11 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclinent décliner ver 3.55 11.28 0.12 0.27 ind:pre:3p; +décliner décliner ver 3.55 11.28 0.58 2.23 inf; +déclinera décliner ver 3.55 11.28 0.01 0.00 ind:fut:3s; +déclines décliner ver 3.55 11.28 0.04 0.07 ind:pre:2s; +déclinez décliner ver 3.55 11.28 0.42 0.00 imp:pre:2p;ind:pre:2p; +déclinions décliner ver 3.55 11.28 0.00 0.14 ind:imp:1p; +déclins déclin nom m p 1.73 6.42 0.00 0.34 +déclinèrent décliner ver 3.55 11.28 0.00 0.07 ind:pas:3p; +décliné décliner ver m s 3.55 11.28 0.63 1.08 par:pas; +déclinée décliner ver f s 3.55 11.28 0.07 0.07 par:pas; +déclique décliquer ver 0.01 0.00 0.01 0.00 ind:pre:1s; +décliqueté décliqueter ver m s 0.00 0.07 0.00 0.07 par:pas; +déclive déclive adj f s 0.00 0.34 0.00 0.27 +déclives déclive adj f p 0.00 0.34 0.00 0.07 +déclivité déclivité nom f s 0.01 1.08 0.01 0.74 +déclivités déclivité nom f p 0.01 1.08 0.00 0.34 +décloisonnée décloisonner ver f s 0.00 0.07 0.00 0.07 par:pas; +déclose déclore ver f s 0.01 0.00 0.01 0.00 par:pas; +décloses déclos adj f p 0.00 0.14 0.00 0.07 +déclouer déclouer ver 0.11 0.88 0.10 0.14 inf; +déclouèrent déclouer ver 0.11 0.88 0.00 0.14 ind:pas:3p; +décloué déclouer ver m s 0.11 0.88 0.00 0.20 par:pas; +déclouée déclouer ver f s 0.11 0.88 0.01 0.07 par:pas; +déclouées déclouer ver f p 0.11 0.88 0.00 0.34 par:pas; +déco déco adj 2.25 0.47 2.25 0.47 +décocha décocher ver 0.44 4.05 0.00 1.42 ind:pas:3s; +décochai décocher ver 0.44 4.05 0.00 0.07 ind:pas:1s; +décochaient décocher ver 0.44 4.05 0.00 0.07 ind:imp:3p; +décochais décocher ver 0.44 4.05 0.00 0.07 ind:imp:1s; +décochait décocher ver 0.44 4.05 0.01 0.27 ind:imp:3s; +décochant décocher ver 0.44 4.05 0.00 0.14 par:pre; +décoche décocher ver 0.44 4.05 0.23 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décochent décocher ver 0.44 4.05 0.00 0.07 ind:pre:3p; +décocher décocher ver 0.44 4.05 0.06 0.54 inf; +décochera décocher ver 0.44 4.05 0.02 0.00 ind:fut:3s; +décocheuses décocheur nom f p 0.00 0.07 0.00 0.07 +décochez décocher ver 0.44 4.05 0.03 0.00 imp:pre:2p;ind:pre:2p; +décoché décocher ver m s 0.44 4.05 0.06 0.27 par:pas; +décochée décocher ver f s 0.44 4.05 0.01 0.14 par:pas; +décochées décocher ver f p 0.44 4.05 0.01 0.07 par:pas; +décoconne décoconner ver 0.00 0.14 0.00 0.07 imp:pre:2s; +décoconnerai décoconner ver 0.00 0.14 0.00 0.07 ind:fut:1s; +décoction décoction nom f s 0.83 1.08 0.81 0.81 +décoctions décoction nom f p 0.83 1.08 0.02 0.27 +décodage décodage nom m s 0.19 0.14 0.19 0.00 +décodages décodage nom m p 0.19 0.14 0.00 0.14 +décodait décoder ver 3.04 0.54 0.00 0.14 ind:imp:3s; +décodant décoder ver 3.04 0.54 0.01 0.00 par:pre; +décode décoder ver 3.04 0.54 0.38 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décodent décoder ver 3.04 0.54 0.02 0.00 ind:pre:3p; +décoder décoder ver 3.04 0.54 1.59 0.34 inf; +décoderai décoder ver 3.04 0.54 0.12 0.00 ind:fut:1s; +décodeur décodeur nom m s 0.39 0.07 0.35 0.07 +décodeurs décodeur nom m p 0.39 0.07 0.02 0.00 +décodeuse décodeur nom f s 0.39 0.07 0.01 0.00 +décodez décoder ver 3.04 0.54 0.06 0.00 imp:pre:2p;ind:pre:2p; +décodons décoder ver 3.04 0.54 0.02 0.00 ind:pre:1p; +décodé décoder ver m s 3.04 0.54 0.71 0.07 par:pas; +décodée décoder ver f s 3.04 0.54 0.04 0.00 par:pas; +décodées décoder ver f p 3.04 0.54 0.04 0.00 par:pas; +décodés décoder ver m p 3.04 0.54 0.04 0.00 par:pas; +décoffrage décoffrage nom m s 0.02 0.00 0.02 0.00 +décoffrés décoffrer ver m p 0.00 0.07 0.00 0.07 par:pas; +décoiffa décoiffer ver 1.37 3.18 0.00 0.07 ind:pas:3s; +décoiffait décoiffer ver 1.37 3.18 0.01 0.07 ind:imp:3s; +décoiffe décoiffer ver 1.37 3.18 0.29 0.14 imp:pre:2s;ind:pre:3s; +décoiffer décoiffer ver 1.37 3.18 0.20 0.20 inf; +décoiffera décoiffer ver 1.37 3.18 0.03 0.00 ind:fut:3s; +décoifferais décoiffer ver 1.37 3.18 0.00 0.07 cnd:pre:2s; +décoifferait décoiffer ver 1.37 3.18 0.00 0.07 cnd:pre:3s; +décoiffes décoiffer ver 1.37 3.18 0.12 0.07 ind:pre:2s; +décoiffez décoiffer ver 1.37 3.18 0.12 0.00 imp:pre:2p;ind:pre:2p; +décoiffé décoiffer ver m s 1.37 3.18 0.25 0.74 par:pas; +décoiffée décoiffer ver f s 1.37 3.18 0.30 1.49 par:pas; +décoiffées décoiffer ver f p 1.37 3.18 0.00 0.14 par:pas; +décoiffés décoiffer ver m p 1.37 3.18 0.04 0.14 par:pas; +décoince décoincer ver 0.93 0.27 0.16 0.00 imp:pre:2s;ind:pre:3s; +décoincer décoincer ver 0.93 0.27 0.61 0.20 inf; +décoincera décoincer ver 0.93 0.27 0.01 0.00 ind:fut:3s; +décoincerait décoincer ver 0.93 0.27 0.01 0.00 cnd:pre:3s; +décoinces décoincer ver 0.93 0.27 0.02 0.00 ind:pre:2s; +décoincez décoincer ver 0.93 0.27 0.03 0.00 imp:pre:2p;ind:pre:2p; +décoincé décoincer ver m s 0.93 0.27 0.06 0.00 par:pas; +décoinça décoincer ver 0.93 0.27 0.00 0.07 ind:pas:3s; +décoinçage décoinçage nom m s 0.01 0.00 0.01 0.00 +décoinçant décoincer ver 0.93 0.27 0.02 0.00 par:pre; +décolla décoller ver 21.15 19.73 0.00 1.35 ind:pas:3s; +décollage décollage nom m s 7.23 1.15 7.14 1.15 +décollages décollage nom m p 7.23 1.15 0.09 0.00 +décollai décoller ver 21.15 19.73 0.00 0.07 ind:pas:1s; +décollaient décoller ver 21.15 19.73 0.02 0.88 ind:imp:3p; +décollais décoller ver 21.15 19.73 0.03 0.27 ind:imp:1s;ind:imp:2s; +décollait décoller ver 21.15 19.73 0.26 1.22 ind:imp:3s; +décollant décoller ver 21.15 19.73 0.07 1.15 par:pre; +décollassions décoller ver 21.15 19.73 0.10 0.00 sub:imp:1p; +décollation décollation nom f s 0.01 0.07 0.01 0.07 +décolle décoller ver 21.15 19.73 5.89 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décollement décollement nom m s 0.27 0.07 0.26 0.07 +décollements décollement nom m p 0.27 0.07 0.01 0.00 +décollent décoller ver 21.15 19.73 0.75 0.27 ind:pre:3p; +décoller décoller ver 21.15 19.73 8.11 5.68 inf; +décollera décoller ver 21.15 19.73 0.77 0.00 ind:fut:3s; +décollerai décoller ver 21.15 19.73 0.16 0.00 ind:fut:1s; +décollerait décoller ver 21.15 19.73 0.14 0.07 cnd:pre:3s; +décolleras décoller ver 21.15 19.73 0.01 0.00 ind:fut:2s; +décollerons décoller ver 21.15 19.73 0.08 0.00 ind:fut:1p; +décolleront décoller ver 21.15 19.73 0.19 0.00 ind:fut:3p; +décolles décoller ver 21.15 19.73 0.12 0.07 ind:pre:2s; +décolleter décolleter ver 0.16 0.95 0.01 0.07 inf; +décolleté décolleté nom m s 1.76 3.92 1.52 3.31 +décolletée décolleté adj f s 0.49 2.36 0.26 1.28 +décolletées décolleté adj f p 0.49 2.36 0.01 0.54 +décolletés décolleté nom m p 1.76 3.92 0.25 0.61 +décollez décoller ver 21.15 19.73 0.60 0.07 imp:pre:2p;ind:pre:2p; +décollons décoller ver 21.15 19.73 0.56 0.00 imp:pre:1p;ind:pre:1p; +décollèrent décoller ver 21.15 19.73 0.00 0.14 ind:pas:3p; +décollé décoller ver m s 21.15 19.73 3.02 1.89 par:pas; +décollée décoller ver f s 21.15 19.73 0.21 1.01 par:pas; +décollées décoller ver f p 21.15 19.73 0.06 1.89 par:pas; +décollés décoller ver m p 21.15 19.73 0.01 0.61 par:pas; +décolonisation décolonisation nom f s 0.00 0.41 0.00 0.41 +décolonise décoloniser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +décolora décolorer ver 0.45 3.58 0.00 0.20 ind:pas:3s; +décoloraient décolorer ver 0.45 3.58 0.00 0.27 ind:imp:3p; +décolorait décolorer ver 0.45 3.58 0.01 0.68 ind:imp:3s; +décolorant décolorer ver 0.45 3.58 0.03 0.00 par:pre; +décoloration décoloration nom f s 0.53 0.34 0.46 0.20 +décolorations décoloration nom f p 0.53 0.34 0.08 0.14 +décolore décolorer ver 0.45 3.58 0.19 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décolorent décolorer ver 0.45 3.58 0.01 0.14 ind:pre:3p; +décolorer décolorer ver 0.45 3.58 0.10 0.34 inf; +décoloré décoloré adj m s 0.29 3.38 0.07 0.95 +décolorée décoloré adj f s 0.29 3.38 0.19 1.15 +décolorées décoloré adj f p 0.29 3.38 0.01 0.54 +décolorés décoloré adj m p 0.29 3.38 0.03 0.74 +décolère décolérer ver 0.01 0.81 0.00 0.07 imp:pre:2s; +décoléraient décolérer ver 0.01 0.81 0.00 0.07 ind:imp:3p; +décolérais décolérer ver 0.01 0.81 0.00 0.07 ind:imp:1s; +décolérait décolérer ver 0.01 0.81 0.00 0.41 ind:imp:3s; +décolérer décolérer ver 0.01 0.81 0.00 0.07 inf; +décoléré décolérer ver m s 0.01 0.81 0.01 0.14 par:pas; +décombre décombrer ver 0.00 0.27 0.00 0.27 ind:pre:3s; +décombres décombre nom m p 1.09 6.55 1.09 6.55 +décommanda décommander ver 2.77 2.30 0.00 0.27 ind:pas:3s; +décommandai décommander ver 2.77 2.30 0.00 0.07 ind:pas:1s; +décommandais décommander ver 2.77 2.30 0.00 0.07 ind:imp:1s; +décommandait décommander ver 2.77 2.30 0.00 0.20 ind:imp:3s; +décommande décommander ver 2.77 2.30 0.57 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +décommander décommander ver 2.77 2.30 0.98 0.88 inf; +décommanderait décommander ver 2.77 2.30 0.00 0.07 cnd:pre:3s; +décommandes décommander ver 2.77 2.30 0.29 0.00 ind:pre:2s; +décommandez décommander ver 2.77 2.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +décommandé décommander ver m s 2.77 2.30 0.66 0.34 par:pas; +décommandée décommander ver f s 2.77 2.30 0.16 0.07 par:pas; +décommandées décommander ver f p 2.77 2.30 0.01 0.07 par:pas; +décommandés décommander ver m p 2.77 2.30 0.01 0.00 par:pas; +décompensation décompensation nom f s 0.01 0.00 0.01 0.00 +décompenser décompenser ver 0.05 0.00 0.04 0.00 inf; +décompensé décompenser ver m s 0.05 0.00 0.01 0.00 par:pas; +décompliquer décompliquer ver 0.02 0.00 0.02 0.00 inf; +décomposa décomposer ver 2.86 7.43 0.00 0.47 ind:pas:3s; +décomposable décomposable adj s 0.00 0.07 0.00 0.07 +décomposaient décomposer ver 2.86 7.43 0.01 0.27 ind:imp:3p; +décomposais décomposer ver 2.86 7.43 0.00 0.20 ind:imp:1s; +décomposait décomposer ver 2.86 7.43 0.14 0.95 ind:imp:3s; +décomposant décomposer ver 2.86 7.43 0.09 0.47 par:pre; +décompose décomposer ver 2.86 7.43 0.69 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décomposent décomposer ver 2.86 7.43 0.31 0.14 ind:pre:3p; +décomposer décomposer ver 2.86 7.43 0.81 1.42 inf; +décomposera décomposer ver 2.86 7.43 0.23 0.14 ind:fut:3s; +décomposeraient décomposer ver 2.86 7.43 0.01 0.14 cnd:pre:3p; +décomposerait décomposer ver 2.86 7.43 0.00 0.07 cnd:pre:3s; +décomposeur décomposeur nom m s 0.01 0.00 0.01 0.00 +décomposition décomposition nom f s 2.59 3.45 2.58 3.38 +décompositions décomposition nom f p 2.59 3.45 0.01 0.07 +décomposé décomposer ver m s 2.86 7.43 0.48 1.08 par:pas; +décomposée décomposé adj f s 0.24 2.97 0.04 0.47 +décomposées décomposé adj f p 0.24 2.97 0.01 0.68 +décomposés décomposé adj m p 0.24 2.97 0.06 0.34 +décompressa décompresser ver 1.11 0.41 0.00 0.07 ind:pas:3s; +décompresse décompresser ver 1.11 0.41 0.38 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décompresser décompresser ver 1.11 0.41 0.63 0.14 inf; +décompressez décompresser ver 1.11 0.41 0.05 0.00 imp:pre:2p;ind:pre:2p; +décompression décompression nom f s 0.50 0.41 0.46 0.34 +décompressions décompression nom f p 0.50 0.41 0.04 0.07 +décompressé décompresser ver m s 1.11 0.41 0.05 0.07 par:pas; +décomprimer décomprimer ver 0.01 0.00 0.01 0.00 inf; +décompte décompte nom m s 1.15 0.81 1.11 0.61 +décompter décompter ver 0.19 0.47 0.08 0.27 inf; +décomptes décompte nom m p 1.15 0.81 0.04 0.20 +décompté décompter ver m s 0.19 0.47 0.04 0.00 par:pas; +décomptés décompter ver m p 0.19 0.47 0.00 0.07 par:pas; +ducon ducon nom m s 6.86 1.01 6.86 1.01 +déconcentrant déconcentrer ver 0.88 0.20 0.01 0.14 par:pre; +déconcentration déconcentration nom f s 0.00 0.07 0.00 0.07 +déconcentrent déconcentrer ver 0.88 0.20 0.02 0.00 ind:pre:3p; +déconcentrer déconcentrer ver 0.88 0.20 0.47 0.07 inf; +déconcentrez déconcentrer ver 0.88 0.20 0.18 0.00 imp:pre:2p;ind:pre:2p; +déconcentré déconcentrer ver m s 0.88 0.20 0.14 0.00 par:pas; +déconcentrée déconcentrer ver f s 0.88 0.20 0.05 0.00 par:pas; +déconcerta déconcerter ver 1.08 7.09 0.01 1.01 ind:pas:3s; +déconcertait déconcerter ver 1.08 7.09 0.00 0.74 ind:imp:3s; +déconcertant déconcertant adj m s 1.01 4.39 0.63 1.01 +déconcertante déconcertant adj f s 1.01 4.39 0.31 2.23 +déconcertantes déconcertant adj f p 1.01 4.39 0.07 0.61 +déconcertants déconcertant adj m p 1.01 4.39 0.00 0.54 +déconcerte déconcerter ver 1.08 7.09 0.09 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconcertent déconcerter ver 1.08 7.09 0.17 0.20 ind:pre:3p; +déconcerter déconcerter ver 1.08 7.09 0.06 0.54 inf; +déconcertera déconcerter ver 1.08 7.09 0.01 0.07 ind:fut:3s; +déconcertez déconcerter ver 1.08 7.09 0.05 0.00 ind:pre:2p; +déconcertèrent déconcerter ver 1.08 7.09 0.00 0.07 ind:pas:3p; +déconcerté déconcerté adj m s 0.25 2.64 0.20 1.55 +déconcertée déconcerter ver f s 1.08 7.09 0.07 1.35 par:pas; +déconcertés déconcerter ver m p 1.08 7.09 0.39 0.34 par:pas; +déconditionnement déconditionnement nom m s 0.03 0.00 0.03 0.00 +déconditionner déconditionner ver 0.01 0.00 0.01 0.00 inf; +déconfire déconfire ver 0.03 0.41 0.01 0.00 inf; +déconfit déconfit adj m s 0.05 0.88 0.04 0.54 +déconfite déconfit adj f s 0.05 0.88 0.00 0.27 +déconfits déconfit adj m p 0.05 0.88 0.01 0.07 +déconfiture déconfiture nom f s 0.07 1.55 0.07 1.42 +déconfitures déconfiture nom f p 0.07 1.55 0.00 0.14 +décongela décongeler ver 0.52 0.34 0.01 0.00 ind:pas:3s; +décongeler décongeler ver 0.52 0.34 0.21 0.07 inf; +décongelé décongeler ver m s 0.52 0.34 0.26 0.27 par:pas; +décongelée décongeler ver f s 0.52 0.34 0.02 0.00 par:pas; +décongestif décongestif nom m s 0.01 0.00 0.01 0.00 +décongestion décongestion nom f s 0.01 0.00 0.01 0.00 +décongestionnant décongestionner ver 0.14 0.07 0.04 0.00 par:pre; +décongestionne décongestionner ver 0.14 0.07 0.00 0.07 ind:pre:3s; +décongestionner décongestionner ver 0.14 0.07 0.10 0.00 inf; +décongestionné décongestionner ver m s 0.14 0.07 0.01 0.00 par:pas; +décongèlera décongeler ver 0.52 0.34 0.01 0.00 ind:fut:3s; +décongélation décongélation nom f s 0.31 0.00 0.31 0.00 +déconnage déconnage nom m s 0.00 0.61 0.00 0.54 +déconnages déconnage nom m p 0.00 0.61 0.00 0.07 +déconnaient déconner ver 39.86 10.95 0.01 0.07 ind:imp:3p; +déconnais déconner ver 39.86 10.95 0.92 0.41 ind:imp:1s;ind:imp:2s; +déconnait déconner ver 39.86 10.95 0.49 0.61 ind:imp:3s; +déconnant déconner ver 39.86 10.95 0.01 0.20 par:pre; +déconne déconner ver 39.86 10.95 13.38 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconnectaient déconnecter ver 2.60 0.47 0.01 0.00 ind:imp:3p; +déconnectant déconnecter ver 2.60 0.47 0.00 0.07 par:pre; +déconnecte déconnecter ver 2.60 0.47 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconnectent déconnecter ver 2.60 0.47 0.01 0.00 ind:pre:3p; +déconnecter déconnecter ver 2.60 0.47 0.64 0.07 inf; +déconnectez déconnecter ver 2.60 0.47 0.20 0.00 imp:pre:2p;ind:pre:2p; +déconnectiez déconnecter ver 2.60 0.47 0.03 0.00 ind:imp:2p; +déconnection déconnection nom f s 0.03 0.00 0.03 0.00 +déconnectons déconnecter ver 2.60 0.47 0.02 0.00 ind:pre:1p; +déconnecté déconnecter ver m s 2.60 0.47 0.92 0.20 par:pas; +déconnectée déconnecter ver f s 2.60 0.47 0.18 0.07 par:pas; +déconnectés déconnecter ver m p 2.60 0.47 0.35 0.00 par:pas; +déconnent déconner ver 39.86 10.95 0.28 0.00 ind:pre:3p; +déconner déconner ver 39.86 10.95 9.39 3.04 inf; +déconnerai déconner ver 39.86 10.95 0.03 0.00 ind:fut:1s; +déconnerais déconner ver 39.86 10.95 0.15 0.00 cnd:pre:1s; +déconnes déconner ver 39.86 10.95 8.95 1.69 ind:pre:2s;sub:pre:2s; +déconneur déconneur nom m s 0.20 0.20 0.19 0.07 +déconneurs déconneur nom m p 0.20 0.20 0.00 0.14 +déconneuse déconneur nom f s 0.20 0.20 0.01 0.00 +déconnexion déconnexion nom f s 0.16 0.07 0.16 0.07 +déconnez déconner ver 39.86 10.95 2.19 0.14 imp:pre:2p;ind:pre:2p; +déconné déconner ver m s 39.86 10.95 4.07 0.68 par:pas; +déconomètre déconomètre nom m s 0.00 0.07 0.00 0.07 +déconophone déconophone nom m s 0.00 0.20 0.00 0.14 +déconophones déconophone nom m p 0.00 0.20 0.00 0.07 +déconseilla déconseiller ver 2.83 2.23 0.14 0.14 ind:pas:3s; +déconseillai déconseiller ver 2.83 2.23 0.00 0.07 ind:pas:1s; +déconseillait déconseiller ver 2.83 2.23 0.01 0.41 ind:imp:3s; +déconseillant déconseiller ver 2.83 2.23 0.01 0.14 par:pre; +déconseille déconseiller ver 2.83 2.23 1.76 0.27 ind:pre:1s;ind:pre:3s; +déconseiller déconseiller ver 2.83 2.23 0.06 0.07 inf; +déconseillerais déconseiller ver 2.83 2.23 0.12 0.07 cnd:pre:1s; +déconseilles déconseiller ver 2.83 2.23 0.00 0.07 ind:pre:2s; +déconseillèrent déconseiller ver 2.83 2.23 0.00 0.14 ind:pas:3p; +déconseillé déconseiller ver m s 2.83 2.23 0.68 0.68 par:pas; +déconseillée déconseiller ver f s 2.83 2.23 0.03 0.14 par:pas; +déconseillées déconseiller ver f p 2.83 2.23 0.01 0.07 par:pas; +déconsidèrent déconsidérer ver 0.03 1.22 0.01 0.00 ind:pre:3p; +déconsidéraient déconsidérer ver 0.03 1.22 0.00 0.07 ind:imp:3p; +déconsidérait déconsidérer ver 0.03 1.22 0.00 0.14 ind:imp:3s; +déconsidérant déconsidérer ver 0.03 1.22 0.00 0.07 par:pre; +déconsidération déconsidération nom f s 0.01 0.00 0.01 0.00 +déconsidérer déconsidérer ver 0.03 1.22 0.01 0.41 inf; +déconsidéré déconsidérer ver m s 0.03 1.22 0.01 0.27 par:pas; +déconsidérée déconsidérer ver f s 0.03 1.22 0.00 0.20 par:pas; +déconsidérés déconsidérer ver m p 0.03 1.22 0.00 0.07 par:pas; +déconsigner déconsigner ver 0.00 0.20 0.00 0.20 inf; +déconstipe déconstiper ver 0.01 0.07 0.00 0.07 ind:pre:3s; +déconstiper déconstiper ver 0.01 0.07 0.01 0.00 inf; +déconstruction déconstruction nom f s 0.08 0.07 0.08 0.07 +déconstruit déconstruire ver m s 0.01 0.07 0.01 0.07 ind:pre:3s;par:pas; +décontaminant décontaminer ver 0.17 0.00 0.01 0.00 par:pre; +décontamination décontamination nom f s 0.96 0.00 0.96 0.00 +décontaminer décontaminer ver 0.17 0.00 0.07 0.00 inf; +décontaminé décontaminer ver m s 0.17 0.00 0.09 0.00 par:pas; +décontenancer décontenancer ver 0.22 2.77 0.03 0.07 inf; +décontenancé décontenancé adj m s 0.32 2.84 0.16 2.16 +décontenancée décontenancé adj f s 0.32 2.84 0.16 0.41 +décontenancés décontenancer ver m p 0.22 2.77 0.10 0.20 par:pas; +décontenança décontenancer ver 0.22 2.77 0.00 0.14 ind:pas:3s; +décontenançaient décontenancer ver 0.22 2.77 0.00 0.14 ind:imp:3p; +décontenançait décontenancer ver 0.22 2.77 0.00 0.14 ind:imp:3s; +décontract décontract adj m s 0.24 0.07 0.24 0.07 +décontracta décontracter ver 1.54 1.28 0.00 0.20 ind:pas:3s; +décontractaient décontracter ver 1.54 1.28 0.00 0.07 ind:imp:3p; +décontractait décontracter ver 1.54 1.28 0.00 0.14 ind:imp:3s; +décontractant décontracter ver 1.54 1.28 0.20 0.20 par:pre; +décontracte décontracter ver 1.54 1.28 0.13 0.20 imp:pre:2s;ind:pre:3s; +décontracter décontracter ver 1.54 1.28 0.27 0.14 inf; +décontractez décontracter ver 1.54 1.28 0.07 0.07 imp:pre:2p; +décontraction décontraction nom f s 0.15 1.28 0.15 1.28 +décontracté décontracter ver m s 1.54 1.28 0.75 0.07 par:pas; +décontractée décontracté adj f s 1.07 1.01 0.26 0.27 +décontractées décontracté adj f p 1.07 1.01 0.03 0.07 +décontractés décontracté adj m p 1.07 1.01 0.17 0.00 +déconvenue déconvenue nom f s 0.32 2.16 0.16 1.42 +déconvenues déconvenue nom f p 0.32 2.16 0.16 0.74 +décor décor nom m s 8.38 45.61 6.01 38.78 +décora décorer ver 8.54 20.20 0.00 0.34 ind:pas:3s; +décorai décorer ver 8.54 20.20 0.00 0.14 ind:pas:1s; +décoraient décorer ver 8.54 20.20 0.03 0.68 ind:imp:3p; +décorais décorer ver 8.54 20.20 0.10 0.00 ind:imp:1s; +décorait décorer ver 8.54 20.20 0.21 0.74 ind:imp:3s; +décorant décorer ver 8.54 20.20 0.03 0.81 par:pre; +décorateur décorateur nom m s 2.55 3.11 1.37 2.03 +décorateurs décorateur nom m p 2.55 3.11 0.36 0.88 +décoratif décoratif adj m s 0.83 4.12 0.38 1.35 +décoratifs décoratif adj m p 0.83 4.12 0.12 1.22 +décoration décoration nom f s 8.15 11.76 4.80 6.35 +décorations décoration nom f p 8.15 11.76 3.35 5.41 +décorative décoratif adj f s 0.83 4.12 0.15 0.88 +décoratives décoratif adj f p 0.83 4.12 0.19 0.68 +décoratrice décorateur nom f s 2.55 3.11 0.81 0.14 +décoratrices décorateur nom f p 2.55 3.11 0.01 0.07 +décore décorer ver 8.54 20.20 0.92 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décorent décorer ver 8.54 20.20 0.43 0.47 ind:pre:3p; +décorer décorer ver 8.54 20.20 3.38 2.91 inf; +décorera décorer ver 8.54 20.20 0.19 0.00 ind:fut:3s; +décorerait décorer ver 8.54 20.20 0.03 0.07 cnd:pre:3s; +décoreront décorer ver 8.54 20.20 0.02 0.00 ind:fut:3p; +décorez décorer ver 8.54 20.20 0.14 0.14 imp:pre:2p;ind:pre:2p; +décorne décorner ver 0.01 0.27 0.00 0.07 ind:pre:3s; +décorner décorner ver 0.01 0.27 0.01 0.20 inf; +décorât décorer ver 8.54 20.20 0.00 0.07 sub:imp:3s; +décors décor nom m p 8.38 45.61 2.37 6.82 +décorèrent décorer ver 8.54 20.20 0.00 0.07 ind:pas:3p; +décorticage décorticage nom m s 0.00 0.14 0.00 0.14 +décortication décortication nom f s 0.01 0.00 0.01 0.00 +décortiqua décortiquer ver 0.70 2.64 0.00 0.14 ind:pas:3s; +décortiquaient décortiquer ver 0.70 2.64 0.01 0.07 ind:imp:3p; +décortiquait décortiquer ver 0.70 2.64 0.00 0.14 ind:imp:3s; +décortiquant décortiquer ver 0.70 2.64 0.00 0.07 par:pre; +décortique décortiquer ver 0.70 2.64 0.17 0.47 imp:pre:2s;ind:pre:3s;sub:pre:3s; +décortiquent décortiquer ver 0.70 2.64 0.00 0.14 ind:pre:3p; +décortiquer décortiquer ver 0.70 2.64 0.40 1.01 inf; +décortiquez décortiquer ver 0.70 2.64 0.03 0.07 imp:pre:2p;ind:pre:2p; +décortiqué décortiquer ver m s 0.70 2.64 0.08 0.34 par:pas; +décortiquée décortiquer ver f s 0.70 2.64 0.01 0.00 par:pas; +décortiquées décortiquer ver f p 0.70 2.64 0.00 0.07 par:pas; +décortiqués décortiquer ver m p 0.70 2.64 0.00 0.14 par:pas; +décoré décorer ver m s 8.54 20.20 2.23 5.95 par:pas; +décorée décorer ver f s 8.54 20.20 0.37 3.38 par:pas; +décorées décorer ver f p 8.54 20.20 0.26 1.49 par:pas; +décorum décorum nom m s 0.17 0.54 0.17 0.54 +décorés décoré adj m p 1.28 2.97 0.24 1.08 +découcha découcher ver 1.03 0.88 0.00 0.07 ind:pas:3s; +découchaient découcher ver 1.03 0.88 0.00 0.07 ind:imp:3p; +découche découcher ver 1.03 0.88 0.37 0.34 ind:pre:1s;ind:pre:3s; +découcher découcher ver 1.03 0.88 0.20 0.20 inf; +découches découcher ver 1.03 0.88 0.27 0.00 ind:pre:2s; +découché découcher ver m s 1.03 0.88 0.20 0.20 par:pas; +découd découdre ver 0.69 2.36 0.00 0.14 ind:pre:3s; +découdre découdre ver 0.69 2.36 0.42 1.15 inf; +découlaient découler ver 1.57 4.12 0.00 0.34 ind:imp:3p; +découlait découler ver 1.57 4.12 0.01 1.01 ind:imp:3s; +découlant découler ver 1.57 4.12 0.04 0.34 par:pre; +découle découler ver 1.57 4.12 0.98 1.01 ind:pre:3s; +découlent découler ver 1.57 4.12 0.21 0.54 ind:pre:3p; +découler découler ver 1.57 4.12 0.13 0.61 inf; +découlera découler ver 1.57 4.12 0.03 0.07 ind:fut:3s; +découlerait découler ver 1.57 4.12 0.02 0.07 cnd:pre:3s; +découlèrent découler ver 1.57 4.12 0.01 0.00 ind:pas:3p; +découlé découler ver m s 1.57 4.12 0.14 0.14 par:pas; +découpa découper ver 12.69 32.70 0.01 1.22 ind:pas:3s; +découpage découpage nom m s 0.86 1.96 0.47 1.62 +découpages découpage nom m p 0.86 1.96 0.40 0.34 +découpai découper ver 12.69 32.70 0.01 0.07 ind:pas:1s; +découpaient découper ver 12.69 32.70 0.01 2.03 ind:imp:3p; +découpais découper ver 12.69 32.70 0.08 0.07 ind:imp:1s; +découpait découper ver 12.69 32.70 0.14 4.66 ind:imp:3s; +découpant découper ver 12.69 32.70 0.28 2.43 par:pre; +découpe découper ver 12.69 32.70 2.33 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +découpent découper ver 12.69 32.70 0.22 1.08 ind:pre:3p; +découper découper ver 12.69 32.70 4.36 4.93 inf;; +découpera découper ver 12.69 32.70 0.04 0.14 ind:fut:3s; +découperai découper ver 12.69 32.70 0.21 0.07 ind:fut:1s; +découperaient découper ver 12.69 32.70 0.01 0.07 cnd:pre:3p; +découperais découper ver 12.69 32.70 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +découperait découper ver 12.69 32.70 0.03 0.14 cnd:pre:3s; +découperont découper ver 12.69 32.70 0.04 0.00 ind:fut:3p; +découpes découper ver 12.69 32.70 0.49 0.00 ind:pre:2s; +découpeur découpeur nom m s 0.17 0.07 0.15 0.00 +découpeurs découpeur nom m p 0.17 0.07 0.01 0.07 +découpeuse découpeur nom f s 0.17 0.07 0.01 0.00 +découpez découper ver 12.69 32.70 0.33 0.07 imp:pre:2p;ind:pre:2p; +découpions découper ver 12.69 32.70 0.00 0.07 ind:imp:1p; +découplage découplage nom m s 0.01 0.00 0.01 0.00 +découpler découpler ver 0.04 0.07 0.01 0.00 inf; +découplons découpler ver 0.04 0.07 0.01 0.00 imp:pre:1p; +découplé découplé adj m s 0.00 0.27 0.00 0.20 +découplée découpler ver f s 0.04 0.07 0.01 0.00 par:pas; +découpons découper ver 12.69 32.70 0.20 0.14 imp:pre:1p;ind:pre:1p; +découpèrent découper ver 12.69 32.70 0.00 0.41 ind:pas:3p; +découpé découper ver m s 12.69 32.70 2.50 4.73 par:pas; +découpée découper ver f s 12.69 32.70 0.92 2.23 par:pas; +découpées découpé adj f p 0.64 3.38 0.10 0.74 +découpure découpure nom f s 0.01 1.01 0.01 0.34 +découpures découpure nom f p 0.01 1.01 0.00 0.68 +découpés découper ver m p 12.69 32.70 0.42 2.30 par:pas; +décourage décourager ver 4.84 15.47 1.13 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +découragea décourager ver 4.84 15.47 0.01 0.41 ind:pas:3s; +décourageai décourager ver 4.84 15.47 0.00 0.07 ind:pas:1s; +décourageaient décourager ver 4.84 15.47 0.00 0.27 ind:imp:3p; +décourageais décourager ver 4.84 15.47 0.01 0.14 ind:imp:1s; +décourageait décourager ver 4.84 15.47 0.02 1.15 ind:imp:3s; +décourageant décourageant adj m s 0.34 1.96 0.19 0.74 +décourageante décourageant adj f s 0.34 1.96 0.14 0.41 +décourageantes décourageant adj f p 0.34 1.96 0.01 0.41 +décourageants décourageant adj m p 0.34 1.96 0.00 0.41 +découragement découragement nom m s 0.27 6.82 0.27 6.28 +découragements découragement nom m p 0.27 6.82 0.00 0.54 +découragent décourager ver 4.84 15.47 0.27 0.20 ind:pre:3p; +décourageons décourager ver 4.84 15.47 0.03 0.00 imp:pre:1p;ind:pre:1p; +décourageât décourager ver 4.84 15.47 0.00 0.07 sub:imp:3s; +décourager décourager ver 4.84 15.47 1.90 5.61 inf; +découragera décourager ver 4.84 15.47 0.07 0.00 ind:fut:3s; +découragerais décourager ver 4.84 15.47 0.10 0.14 cnd:pre:1s;cnd:pre:2s; +découragerait décourager ver 4.84 15.47 0.04 0.20 cnd:pre:3s; +décourages décourager ver 4.84 15.47 0.16 0.20 ind:pre:2s; +découragez décourager ver 4.84 15.47 0.49 0.07 imp:pre:2p;ind:pre:2p; +découragèrent décourager ver 4.84 15.47 0.00 0.14 ind:pas:3p; +découragé décourager ver m s 4.84 15.47 0.41 2.64 par:pas; +découragée décourager ver f s 4.84 15.47 0.09 0.88 par:pas; +découragées décourager ver f p 4.84 15.47 0.01 0.07 par:pas; +découragés décourager ver m p 4.84 15.47 0.08 0.88 par:pas; +découronné découronner ver m s 0.00 0.27 0.00 0.20 par:pas; +découronnés découronner ver m p 0.00 0.27 0.00 0.07 par:pas; +décours décours nom m 0.00 0.14 0.00 0.14 +décousit découdre ver 0.69 2.36 0.00 0.14 ind:pas:3s; +décousu décousu adj m s 0.49 1.62 0.20 0.54 +décousue décousu adj f s 0.49 1.62 0.17 0.54 +décousues décousu adj f p 0.49 1.62 0.01 0.34 +décousus décousu adj m p 0.49 1.62 0.11 0.20 +découvert découvrir ver m s 128.10 203.78 46.22 30.54 par:pas; +découverte découverte nom f s 12.46 29.53 9.25 23.18 +découvertes découverte nom f p 12.46 29.53 3.21 6.35 +découverts découvrir ver m p 128.10 203.78 1.89 1.76 par:pas; +découvrîmes découvrir ver 128.10 203.78 0.02 1.15 ind:pas:1p; +découvrît découvrir ver 128.10 203.78 0.02 0.88 sub:imp:3s; +découvraient découvrir ver 128.10 203.78 0.20 3.92 ind:imp:3p; +découvrais découvrir ver 128.10 203.78 0.54 8.31 ind:imp:1s;ind:imp:2s; +découvrait découvrir ver 128.10 203.78 1.30 17.64 ind:imp:3s; +découvrant découvrir ver 128.10 203.78 1.11 14.12 par:pre; +découvre découvrir ver 128.10 203.78 17.37 26.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +découvrent découvrir ver 128.10 203.78 2.77 3.65 ind:pre:3p;sub:pre:3p; +découvres découvrir ver 128.10 203.78 1.43 0.20 ind:pre:2s; +découvreur découvreur nom m s 0.33 0.81 0.20 0.47 +découvreurs découvreur nom m p 0.33 0.81 0.11 0.34 +découvreuse découvreur nom f s 0.33 0.81 0.01 0.00 +découvrez découvrir ver 128.10 203.78 2.26 0.47 imp:pre:2p;ind:pre:2p; +découvriez découvrir ver 128.10 203.78 0.27 0.14 ind:imp:2p; +découvrions découvrir ver 128.10 203.78 0.07 2.50 ind:imp:1p; +découvrir découvrir ver 128.10 203.78 37.11 50.88 inf; +découvrira découvrir ver 128.10 203.78 2.44 1.22 ind:fut:3s; +découvrirai découvrir ver 128.10 203.78 1.47 0.14 ind:fut:1s; +découvriraient découvrir ver 128.10 203.78 0.04 0.07 cnd:pre:3p; +découvrirais découvrir ver 128.10 203.78 0.30 0.41 cnd:pre:1s;cnd:pre:2s; +découvrirait découvrir ver 128.10 203.78 0.46 1.69 cnd:pre:3s; +découvriras découvrir ver 128.10 203.78 0.82 0.14 ind:fut:2s; +découvrirent découvrir ver 128.10 203.78 0.38 3.65 ind:pas:3p; +découvrirez découvrir ver 128.10 203.78 0.84 0.27 ind:fut:2p; +découvririez découvrir ver 128.10 203.78 0.04 0.00 cnd:pre:2p; +découvrirons découvrir ver 128.10 203.78 0.80 0.20 ind:fut:1p; +découvriront découvrir ver 128.10 203.78 0.70 0.47 ind:fut:3p; +découvris découvrir ver 128.10 203.78 0.92 6.82 ind:pas:1s; +découvrisse découvrir ver 128.10 203.78 0.00 0.07 sub:imp:1s; +découvrissent découvrir ver 128.10 203.78 0.00 0.07 sub:imp:3p; +découvrit découvrir ver 128.10 203.78 1.61 19.39 ind:pas:3s; +découvrons découvrir ver 128.10 203.78 0.81 1.15 imp:pre:1p;ind:pre:1p; +décrût décroître ver 0.35 6.69 0.00 0.14 sub:imp:3s; +décramponner décramponner ver 0.00 0.07 0.00 0.07 inf; +décrapouille décrapouiller ver 0.00 0.07 0.00 0.07 ind:pre:1s; +décrassage décrassage nom m s 0.04 0.20 0.04 0.20 +décrassait décrasser ver 0.20 1.49 0.00 0.27 ind:imp:3s; +décrasse décrasser ver 0.20 1.49 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrasser décrasser ver 0.20 1.49 0.10 0.61 inf; +décrassé décrasser ver m s 0.20 1.49 0.02 0.20 par:pas; +décrassés décrasser ver m p 0.20 1.49 0.00 0.07 par:pas; +décret_loi décret_loi nom m s 0.03 0.07 0.03 0.07 +décret décret nom m s 4.06 9.12 3.54 6.42 +décrets décret nom m p 4.06 9.12 0.52 2.70 +décrie décrier ver 0.30 0.68 0.00 0.07 ind:pre:3s; +décrier décrier ver 0.30 0.68 0.03 0.20 inf; +décries décrier ver 0.30 0.68 0.00 0.07 ind:pre:2s; +décriez décrier ver 0.30 0.68 0.15 0.00 imp:pre:2p;ind:pre:2p; +décriminaliser décriminaliser ver 0.01 0.00 0.01 0.00 inf; +décrira décrire ver 28.31 40.20 0.04 0.07 ind:fut:3s; +décrirai décrire ver 28.31 40.20 0.27 0.14 ind:fut:1s; +décriraient décrire ver 28.31 40.20 0.03 0.00 cnd:pre:3p; +décrirais décrire ver 28.31 40.20 0.40 0.34 cnd:pre:1s;cnd:pre:2s; +décrirait décrire ver 28.31 40.20 0.05 0.14 cnd:pre:3s; +décriras décrire ver 28.31 40.20 0.01 0.07 ind:fut:2s; +décrire décrire ver 28.31 40.20 11.01 13.51 inf; +décrirez décrire ver 28.31 40.20 0.02 0.00 ind:fut:2p; +décririez décrire ver 28.31 40.20 0.41 0.00 cnd:pre:2p; +décriront décrire ver 28.31 40.20 0.01 0.07 ind:fut:3p; +décris décrire ver 28.31 40.20 2.42 1.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +décrispe décrisper ver 0.12 0.54 0.09 0.14 imp:pre:2s;ind:pre:3s; +décrisper décrisper ver 0.12 0.54 0.02 0.27 inf; +décrispât décrisper ver 0.12 0.54 0.00 0.07 sub:imp:3s; +décrispé décrisper ver m s 0.12 0.54 0.01 0.07 par:pas; +décrit décrire ver m s 28.31 40.20 6.93 7.91 ind:pre:3s;par:pas; +décrite décrire ver f s 28.31 40.20 0.78 1.69 par:pas; +décrites décrire ver f p 28.31 40.20 0.17 0.74 par:pas; +décrits décrire ver m p 28.31 40.20 0.36 0.54 par:pas; +décrié décrier ver m s 0.30 0.68 0.03 0.14 par:pas; +décriée décrier ver f s 0.30 0.68 0.10 0.20 par:pas; +décriées décrié adj f p 0.02 0.54 0.01 0.07 +décriés décrié adj m p 0.02 0.54 0.01 0.07 +décrivaient décrire ver 28.31 40.20 0.03 0.88 ind:imp:3p; +décrivais décrire ver 28.31 40.20 0.13 0.27 ind:imp:1s;ind:imp:2s; +décrivait décrire ver 28.31 40.20 1.07 4.26 ind:imp:3s; +décrivant décrire ver 28.31 40.20 0.56 2.91 par:pre; +décrive décrire ver 28.31 40.20 0.13 0.41 sub:pre:1s;sub:pre:3s; +décrivent décrire ver 28.31 40.20 0.73 0.68 ind:pre:3p; +décrives décrire ver 28.31 40.20 0.05 0.00 sub:pre:2s; +décrivez décrire ver 28.31 40.20 2.56 0.34 imp:pre:2p;ind:pre:2p; +décriviez décrire ver 28.31 40.20 0.06 0.00 ind:imp:2p; +décrivirent décrire ver 28.31 40.20 0.00 0.34 ind:pas:3p; +décrivis décrire ver 28.31 40.20 0.00 0.41 ind:pas:1s; +décrivit décrire ver 28.31 40.20 0.05 3.04 ind:pas:3s; +décroît décroître ver 0.35 6.69 0.24 1.49 ind:pre:3s; +décroître décroître ver 0.35 6.69 0.05 2.23 inf; +décrocha décrocher ver 25.00 30.41 0.05 5.47 ind:pas:3s; +décrochage décrochage nom m s 0.25 0.54 0.25 0.47 +décrochages décrochage nom m p 0.25 0.54 0.00 0.07 +décrochai décrocher ver 25.00 30.41 0.01 0.74 ind:pas:1s; +décrochaient décrocher ver 25.00 30.41 0.01 0.47 ind:imp:3p; +décrochais décrocher ver 25.00 30.41 0.23 0.41 ind:imp:1s;ind:imp:2s; +décrochait décrocher ver 25.00 30.41 0.15 1.15 ind:imp:3s; +décrochant décrocher ver 25.00 30.41 0.05 0.95 par:pre; +décroche décrocher ver 25.00 30.41 9.95 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrochement décrochement nom m s 0.00 0.47 0.00 0.34 +décrochements décrochement nom m p 0.00 0.47 0.00 0.14 +décrochent décrocher ver 25.00 30.41 0.38 0.47 ind:pre:3p; +décrocher décrocher ver 25.00 30.41 6.02 7.91 inf; +décrochera décrocher ver 25.00 30.41 0.11 0.07 ind:fut:3s; +décrocherai décrocher ver 25.00 30.41 0.25 0.00 ind:fut:1s; +décrocheraient décrocher ver 25.00 30.41 0.00 0.07 cnd:pre:3p; +décrocherais décrocher ver 25.00 30.41 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +décrocherait décrocher ver 25.00 30.41 0.02 0.14 cnd:pre:3s; +décrocheras décrocher ver 25.00 30.41 0.03 0.00 ind:fut:2s; +décrocheront décrocher ver 25.00 30.41 0.05 0.00 ind:fut:3p; +décrochez_moi_ça décrochez_moi_ça nom m 0.00 0.07 0.00 0.07 +décrochez décrocher ver 25.00 30.41 2.08 0.20 imp:pre:2p;ind:pre:2p; +décrochiez décrocher ver 25.00 30.41 0.01 0.00 ind:imp:2p; +décrochons décrocher ver 25.00 30.41 0.03 0.07 imp:pre:1p;ind:pre:1p; +décrochèrent décrocher ver 25.00 30.41 0.01 0.20 ind:pas:3p; +décroché décrocher ver m s 25.00 30.41 5.28 4.80 par:pas; +décrochée décrocher ver f s 25.00 30.41 0.20 0.47 par:pas; +décrochées décrocher ver f p 25.00 30.41 0.00 0.34 par:pas; +décrochés décrocher ver m p 25.00 30.41 0.02 0.47 par:pas; +décroisa décroiser ver 0.30 1.96 0.00 0.61 ind:pas:3s; +décroisait décroiser ver 0.30 1.96 0.00 0.27 ind:imp:3s; +décroisant décroiser ver 0.30 1.96 0.00 0.14 par:pre; +décroise décroiser ver 0.30 1.96 0.28 0.47 imp:pre:2s;ind:pre:3s; +décroiser décroiser ver 0.30 1.96 0.02 0.07 inf; +décroissaient décroître ver 0.35 6.69 0.00 0.20 ind:imp:3p; +décroissait décroître ver 0.35 6.69 0.00 0.41 ind:imp:3s; +décroissance décroissance nom f s 0.01 0.00 0.01 0.00 +décroissant décroître ver 0.35 6.69 0.01 1.01 par:pre; +décroissante décroissant adj f s 0.08 1.08 0.04 0.14 +décroissantes décroissant adj f p 0.08 1.08 0.00 0.20 +décroissants décroissant adj m p 0.08 1.08 0.03 0.14 +décroisse décroître ver 0.35 6.69 0.01 0.07 sub:pre:3s; +décroissent décroître ver 0.35 6.69 0.01 0.20 ind:pre:3p; +décroisé décroiser ver m s 0.30 1.96 0.00 0.14 par:pas; +décroisées décroiser ver f p 0.30 1.96 0.00 0.27 par:pas; +décrottages décrottage nom m p 0.00 0.07 0.00 0.07 +décrottait décrotter ver 0.05 0.68 0.00 0.07 ind:imp:3s; +décrottant décrotter ver 0.05 0.68 0.01 0.00 par:pre; +décrotte décrotter ver 0.05 0.68 0.01 0.14 ind:pre:3s; +décrottent décrotter ver 0.05 0.68 0.02 0.07 ind:pre:3p; +décrotter décrotter ver 0.05 0.68 0.01 0.20 inf; +décrottions décrotter ver 0.05 0.68 0.00 0.07 ind:imp:1p; +décrottoir décrottoir nom m s 0.00 0.14 0.00 0.14 +décrottée décrotter ver f s 0.05 0.68 0.00 0.07 par:pas; +décrottés décrotter ver m p 0.05 0.68 0.00 0.07 par:pas; +décrète décréter ver 4.86 10.74 1.18 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrètent décréter ver 4.86 10.74 0.29 0.00 ind:pre:3p; +décrètes décréter ver 4.86 10.74 0.00 0.07 ind:pre:2s; +décru décroître ver m s 0.35 6.69 0.02 0.41 par:pas; +décrédibiliser décrédibiliser ver 0.02 0.00 0.01 0.00 inf; +décrédibilisez décrédibiliser ver 0.02 0.00 0.01 0.00 ind:pre:2p; +décrue décrue nom f s 0.02 0.14 0.02 0.14 +décrêpage décrêpage nom m s 0.00 0.07 0.00 0.07 +décrêper décrêper ver 0.01 0.14 0.01 0.14 inf; +décrépi décrépir ver m s 0.12 0.95 0.03 0.20 par:pas; +décrépie décrépir ver f s 0.12 0.95 0.01 0.20 par:pas; +décrépies décrépir ver f p 0.12 0.95 0.01 0.07 par:pas; +décrépis décrépir ver m p 0.12 0.95 0.01 0.41 par:pas; +décrépit décrépit adj m s 0.60 0.47 0.42 0.07 +décrépite décrépit adj f s 0.60 0.47 0.19 0.27 +décrépites décrépit adj f p 0.60 0.47 0.00 0.07 +décrépits décrépit adj m p 0.60 0.47 0.00 0.07 +décrépitude décrépitude nom f s 0.12 1.62 0.12 1.62 +décrut décroître ver 0.35 6.69 0.01 0.54 ind:pas:3s; +décréta décréter ver 4.86 10.74 0.11 3.11 ind:pas:3s; +décrétai décréter ver 4.86 10.74 0.00 0.14 ind:pas:1s; +décrétaient décréter ver 4.86 10.74 0.00 0.20 ind:imp:3p; +décrétais décréter ver 4.86 10.74 0.00 0.07 ind:imp:1s; +décrétait décréter ver 4.86 10.74 0.01 0.74 ind:imp:3s; +décrétant décréter ver 4.86 10.74 0.02 0.61 par:pre; +décréter décréter ver 4.86 10.74 0.18 0.47 inf; +décrétera décréter ver 4.86 10.74 0.00 0.07 ind:fut:3s; +décréterai décréter ver 4.86 10.74 0.01 0.00 ind:fut:1s; +décréterais décréter ver 4.86 10.74 0.00 0.07 cnd:pre:1s; +décréterait décréter ver 4.86 10.74 0.01 0.14 cnd:pre:3s; +décréteront décréter ver 4.86 10.74 0.00 0.07 ind:fut:3p; +décrétez décréter ver 4.86 10.74 0.04 0.14 imp:pre:2p;ind:pre:2p; +décrétons décréter ver 4.86 10.74 0.34 0.07 imp:pre:1p;ind:pre:1p; +décrétèrent décréter ver 4.86 10.74 0.00 0.20 ind:pas:3p; +décrété décréter ver m s 4.86 10.74 2.58 2.23 par:pas; +décrétée décréter ver f s 4.86 10.74 0.07 0.34 par:pas; +décrétés décréter ver m p 4.86 10.74 0.01 0.14 par:pas; +décryptage décryptage nom m s 0.20 0.14 0.20 0.14 +décryptai décrypter ver 0.89 0.54 0.00 0.07 ind:pas:1s; +décrypte décrypter ver 0.89 0.54 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrypter décrypter ver 0.89 0.54 0.46 0.34 inf; +décrypteur décrypteur nom m s 0.27 0.00 0.10 0.00 +décrypteurs décrypteur nom m p 0.27 0.00 0.17 0.00 +décrypté décrypter ver m s 0.89 0.54 0.30 0.07 par:pas; +décryptés décrypter ver m p 0.89 0.54 0.03 0.00 par:pas; +duc_d_albe duc_d_albe nom m p 0.00 0.07 0.00 0.07 +ducs duc nom m p 12.40 23.51 0.69 1.62 +décède décéder ver 8.38 3.04 0.26 0.14 ind:pre:3s; +décèdent décéder ver 8.38 3.04 0.03 0.00 ind:pre:3p; +décèle déceler ver 2.00 11.15 0.49 0.74 ind:pre:1s;ind:pre:3s; +décèlera déceler ver 2.00 11.15 0.01 0.00 ind:fut:3s; +décèlerait déceler ver 2.00 11.15 0.00 0.14 cnd:pre:3s; +décèleront déceler ver 2.00 11.15 0.00 0.07 ind:fut:3p; +décèles déceler ver 2.00 11.15 0.00 0.07 ind:pre:2s; +décès décès nom m 12.82 4.66 12.82 4.66 +ductile ductile adj s 0.01 0.27 0.01 0.27 +décéda décéder ver 8.38 3.04 0.04 0.00 ind:pas:3s; +décédait décéder ver 8.38 3.04 0.03 0.00 ind:imp:3s; +décéder décéder ver 8.38 3.04 0.23 0.14 inf; +décédé décéder ver m s 8.38 3.04 4.15 1.62 par:pas; +décédée décéder ver f s 8.38 3.04 2.64 1.08 par:pas; +décédées décéder ver f p 8.38 3.04 0.09 0.00 par:pas; +décédés décéder ver m p 8.38 3.04 0.91 0.07 par:pas; +décuité décuiter ver m s 0.00 0.07 0.00 0.07 par:pas; +déculotta déculotter ver 0.28 1.82 0.00 0.14 ind:pas:3s; +déculottait déculotter ver 0.28 1.82 0.01 0.14 ind:imp:3s; +déculottant déculotter ver 0.28 1.82 0.00 0.07 par:pre; +déculotte déculotter ver 0.28 1.82 0.15 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déculotter déculotter ver 0.28 1.82 0.05 0.81 inf; +déculottera déculotter ver 0.28 1.82 0.00 0.07 ind:fut:3s; +déculotté déculotter ver m s 0.28 1.82 0.07 0.34 par:pas; +déculottée déculottée nom f s 0.13 0.00 0.12 0.00 +déculottées déculottée nom f p 0.13 0.00 0.01 0.00 +déculottés déculotté nom m p 0.01 0.00 0.01 0.00 +déculpabilisait déculpabiliser ver 0.11 0.14 0.00 0.07 ind:imp:3s; +déculpabiliser déculpabiliser ver 0.11 0.14 0.11 0.00 inf; +déculpabilisé déculpabiliser ver m s 0.11 0.14 0.00 0.07 par:pas; +décélération décélération nom f s 0.30 0.14 0.30 0.14 +décélérer décélérer ver 0.06 0.00 0.05 0.00 inf; +décélérez décélérer ver 0.06 0.00 0.01 0.00 imp:pre:2p; +décupla décupler ver 0.50 3.24 0.03 0.27 ind:pas:3s; +décuplaient décupler ver 0.50 3.24 0.00 0.14 ind:imp:3p; +décuplait décupler ver 0.50 3.24 0.00 0.47 ind:imp:3s; +décuplant décupler ver 0.50 3.24 0.01 0.27 par:pre; +décuple décupler ver 0.50 3.24 0.20 0.14 ind:pre:3s; +décuplent décupler ver 0.50 3.24 0.01 0.14 ind:pre:3p; +décupler décupler ver 0.50 3.24 0.07 0.41 inf; +décuplera décupler ver 0.50 3.24 0.01 0.07 ind:fut:3s; +décuplerait décupler ver 0.50 3.24 0.00 0.07 cnd:pre:3s; +décuplèrent décupler ver 0.50 3.24 0.02 0.00 ind:pas:3p; +décuplé décupler ver m s 0.50 3.24 0.09 0.54 par:pas; +décuplée décupler ver f s 0.50 3.24 0.04 0.41 par:pas; +décuplées décupler ver f p 0.50 3.24 0.01 0.20 par:pas; +décuplés décupler ver m p 0.50 3.24 0.00 0.14 par:pas; +décérébration décérébration nom f s 0.03 0.00 0.03 0.00 +décérébrer décérébrer ver 0.22 0.07 0.01 0.00 inf; +décérébré décérébrer ver m s 0.22 0.07 0.07 0.07 par:pas; +décérébrée décérébrer ver f s 0.22 0.07 0.05 0.00 par:pas; +décérébrés décérébrer ver m p 0.22 0.07 0.09 0.00 par:pas; +décuver décuver ver 0.04 0.00 0.04 0.00 inf; +dédaigna dédaigner ver 2.18 10.47 0.02 0.20 ind:pas:3s; +dédaignables dédaignable adj p 0.00 0.07 0.00 0.07 +dédaignaient dédaigner ver 2.18 10.47 0.01 0.54 ind:imp:3p; +dédaignais dédaigner ver 2.18 10.47 0.00 0.27 ind:imp:1s; +dédaignait dédaigner ver 2.18 10.47 0.00 2.64 ind:imp:3s; +dédaignant dédaigner ver 2.18 10.47 0.02 1.49 par:pre; +dédaigne dédaigner ver 2.18 10.47 0.38 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dédaignent dédaigner ver 2.18 10.47 0.06 0.07 ind:pre:3p; +dédaigner dédaigner ver 2.18 10.47 0.41 1.49 inf; +dédaignes dédaigner ver 2.18 10.47 0.14 0.07 ind:pre:2s; +dédaigneuse dédaigneux nom f s 0.01 0.07 0.01 0.07 +dédaigneusement dédaigneusement adv 0.01 1.15 0.01 1.15 +dédaigneuses dédaigneux adj f p 0.27 6.55 0.01 0.41 +dédaigneux dédaigneux adj m 0.27 6.55 0.26 3.85 +dédaignez dédaigner ver 2.18 10.47 0.28 0.14 imp:pre:2p;ind:pre:2p; +dédaignât dédaigner ver 2.18 10.47 0.01 0.27 sub:imp:3s; +dédaigné dédaigner ver m s 2.18 10.47 0.55 1.15 par:pas; +dédaignée dédaigner ver f s 2.18 10.47 0.16 0.34 par:pas; +dédaignés dédaigner ver m p 2.18 10.47 0.14 0.41 par:pas; +dédain dédain nom m s 0.65 10.07 0.65 9.39 +dédains dédain nom m p 0.65 10.07 0.00 0.68 +dédale dédale nom m s 0.28 5.88 0.27 5.27 +dédales dédale nom m p 0.28 5.88 0.01 0.61 +dédia dédier ver 8.69 7.77 0.11 0.88 ind:pas:3s; +dédiaient dédier ver 8.69 7.77 0.00 0.34 ind:imp:3p; +dédiait dédier ver 8.69 7.77 0.01 0.61 ind:imp:3s; +dédiant dédier ver 8.69 7.77 0.04 0.20 par:pre; +dédicace dédicace nom f s 1.92 2.30 1.72 1.76 +dédicacer dédicacer ver 1.91 1.49 0.69 0.41 inf; +dédicacerai dédicacer ver 1.91 1.49 0.01 0.00 ind:fut:1s; +dédicaces dédicace nom f p 1.92 2.30 0.20 0.54 +dédicacez dédicacer ver 1.91 1.49 0.14 0.00 imp:pre:2p;ind:pre:2p; +dédicaciez dédicacer ver 1.91 1.49 0.01 0.00 ind:imp:2p; +dédicacé dédicacer ver m s 1.91 1.49 0.25 0.34 par:pas; +dédicacée dédicacé adj f s 0.76 0.61 0.59 0.34 +dédicacées dédicacé adj f p 0.76 0.61 0.01 0.00 +dédicacés dédicacé adj m p 0.76 0.61 0.04 0.14 +dédicaça dédicacer ver 1.91 1.49 0.00 0.14 ind:pas:3s; +dédicaçait dédicacer ver 1.91 1.49 0.00 0.14 ind:imp:3s; +dédicatoire dédicatoire adj f s 0.00 0.41 0.00 0.34 +dédicatoires dédicatoire adj f p 0.00 0.41 0.00 0.07 +dédie dédier ver 8.69 7.77 1.83 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dédient dédier ver 8.69 7.77 0.14 0.14 ind:pre:3p; +dédier dédier ver 8.69 7.77 1.67 1.08 inf; +dédiera dédier ver 8.69 7.77 0.03 0.00 ind:fut:3s; +dédierai dédier ver 8.69 7.77 0.03 0.14 ind:fut:1s; +dédierait dédier ver 8.69 7.77 0.00 0.20 cnd:pre:3s; +dédiez dédier ver 8.69 7.77 0.01 0.00 imp:pre:2p; +dédions dédier ver 8.69 7.77 0.23 0.00 imp:pre:1p;ind:pre:1p; +dédire dédire ver 0.04 0.61 0.01 0.27 inf; +dédit dédit nom m s 0.04 0.41 0.04 0.41 +dudit dudit pre 0.16 1.08 0.16 1.08 +dédite dédire ver f s 0.04 0.61 0.01 0.00 par:pas; +dédié dédier ver m s 8.69 7.77 3.38 1.55 par:pas; +dédiée dédier ver f s 8.69 7.77 1.07 0.74 par:pas; +dédiées dédier ver f p 8.69 7.77 0.01 0.54 par:pas; +dédiés dédier ver m p 8.69 7.77 0.11 0.41 par:pas; +dédommage dédommager ver 3.05 1.69 0.35 0.14 ind:pre:1s;ind:pre:3s; +dédommagea dédommager ver 3.05 1.69 0.10 0.07 ind:pas:3s; +dédommageait dédommager ver 3.05 1.69 0.14 0.20 ind:imp:3s; +dédommagement dédommagement nom m s 1.18 0.74 1.10 0.54 +dédommagements dédommagement nom m p 1.18 0.74 0.08 0.20 +dédommagent dédommager ver 3.05 1.69 0.00 0.20 ind:pre:3p; +dédommager dédommager ver 3.05 1.69 1.45 0.47 ind:pre:2p;inf; +dédommagera dédommager ver 3.05 1.69 0.16 0.00 ind:fut:3s; +dédommagerai dédommager ver 3.05 1.69 0.25 0.07 ind:fut:1s; +dédommagerait dédommager ver 3.05 1.69 0.00 0.07 cnd:pre:3s; +dédommagerez dédommager ver 3.05 1.69 0.01 0.00 ind:fut:2p; +dédommagerons dédommager ver 3.05 1.69 0.00 0.07 ind:fut:1p; +dédommagé dédommager ver m s 3.05 1.69 0.25 0.34 par:pas; +dédommagée dédommager ver f s 3.05 1.69 0.19 0.07 par:pas; +dédommagés dédommager ver m p 3.05 1.69 0.15 0.00 par:pas; +dédorent dédorer ver 0.00 0.47 0.00 0.07 ind:pre:3p; +dédoré dédorer ver m s 0.00 0.47 0.00 0.07 par:pas; +dédorée dédorer ver f s 0.00 0.47 0.00 0.07 par:pas; +dédorées dédorer ver f p 0.00 0.47 0.00 0.14 par:pas; +dédorés dédorer ver m p 0.00 0.47 0.00 0.14 par:pas; +dédouanait dédouaner ver 0.08 0.74 0.00 0.07 ind:imp:3s; +dédouane dédouaner ver 0.08 0.74 0.01 0.14 ind:pre:1s;ind:pre:3s; +dédouanement dédouanement nom m s 0.14 0.00 0.14 0.00 +dédouaner dédouaner ver 0.08 0.74 0.03 0.34 inf; +dédouanez dédouaner ver 0.08 0.74 0.00 0.07 ind:pre:2p; +dédouané dédouaner ver m s 0.08 0.74 0.01 0.14 par:pas; +dédouanée dédouaner ver f s 0.08 0.74 0.02 0.00 par:pas; +dédouanés dédouaner ver m p 0.08 0.74 0.01 0.00 par:pas; +dédoubla dédoubler ver 0.97 2.03 0.00 0.07 ind:pas:3s; +dédoublaient dédoubler ver 0.97 2.03 0.00 0.14 ind:imp:3p; +dédoublais dédoubler ver 0.97 2.03 0.00 0.07 ind:imp:1s; +dédoublait dédoubler ver 0.97 2.03 0.00 0.07 ind:imp:3s; +dédouble dédoubler ver 0.97 2.03 0.04 0.14 ind:pre:3s; +dédoublement dédoublement nom m s 0.46 1.01 0.46 1.01 +dédoubler dédoubler ver 0.97 2.03 0.12 0.68 inf; +dédoublerait dédoubler ver 0.97 2.03 0.00 0.07 cnd:pre:3s; +dédoublez dédoubler ver 0.97 2.03 0.02 0.00 imp:pre:2p; +dédoublons dédoubler ver 0.97 2.03 0.01 0.00 imp:pre:1p; +dédoublé dédoubler ver m s 0.97 2.03 0.44 0.54 par:pas; +dédoublée dédoubler ver f s 0.97 2.03 0.13 0.14 par:pas; +dédoublées dédoubler ver f p 0.97 2.03 0.00 0.07 par:pas; +dédoublés dédoubler ver m p 0.97 2.03 0.21 0.07 par:pas; +dédramatisant dédramatiser ver 0.06 0.27 0.00 0.07 par:pre; +dédramatise dédramatiser ver 0.06 0.27 0.02 0.00 imp:pre:2s;ind:pre:1s; +dédramatiser dédramatiser ver 0.06 0.27 0.03 0.20 inf; +déducteur déducteur nom m s 0.00 0.14 0.00 0.14 +déductibilité déductibilité nom f s 0.07 0.00 0.07 0.00 +déductible déductible adj f s 0.56 0.00 0.40 0.00 +déductibles déductible adj f p 0.56 0.00 0.16 0.00 +déductif déductif adj m s 0.16 0.07 0.14 0.00 +déduction déduction nom f s 2.06 2.16 1.55 1.08 +déductions déduction nom f p 2.06 2.16 0.52 1.08 +déductive déductif adj f s 0.16 0.07 0.03 0.07 +déduira déduire ver 7.08 6.01 0.05 0.14 ind:fut:3s; +déduirai déduire ver 7.08 6.01 0.31 0.00 ind:fut:1s; +déduiraient déduire ver 7.08 6.01 0.01 0.07 cnd:pre:3p; +déduirait déduire ver 7.08 6.01 0.03 0.00 cnd:pre:3s; +déduire déduire ver 7.08 6.01 2.00 2.36 inf; +déduirez déduire ver 7.08 6.01 0.04 0.07 ind:fut:2p; +déduis déduire ver 7.08 6.01 1.54 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +déduisaient déduire ver 7.08 6.01 0.01 0.14 ind:imp:3p; +déduisait déduire ver 7.08 6.01 0.00 0.27 ind:imp:3s; +déduisant déduire ver 7.08 6.01 0.02 0.00 par:pre; +déduise déduire ver 7.08 6.01 0.04 0.07 sub:pre:1s;sub:pre:3s; +déduisent déduire ver 7.08 6.01 0.08 0.07 ind:pre:3p; +déduisez déduire ver 7.08 6.01 0.28 0.07 imp:pre:2p;ind:pre:2p; +déduisiez déduire ver 7.08 6.01 0.01 0.07 ind:imp:2p; +déduisit déduire ver 7.08 6.01 0.02 0.34 ind:pas:3s; +déduisons déduire ver 7.08 6.01 0.00 0.14 imp:pre:1p;ind:pre:1p; +déduit déduire ver m s 7.08 6.01 2.41 1.22 ind:pre:3s;par:pas; +déduite déduire ver f s 7.08 6.01 0.01 0.34 par:pas; +déduites déduire ver f p 7.08 6.01 0.03 0.14 par:pas; +déduits déduire ver m p 7.08 6.01 0.20 0.14 par:pas; +due devoir ver_sup f s 3232.80 1318.24 3.95 5.95 par:pas; +duel duel nom m s 7.54 5.95 6.17 4.93 +duelliste duelliste nom s 0.21 0.14 0.20 0.00 +duellistes duelliste nom p 0.21 0.14 0.01 0.14 +duels duel nom m p 7.54 5.95 1.37 1.01 +dues devoir ver_sup f p 3232.80 1318.24 1.94 1.55 par:pas; +déesse déesse nom f s 13.56 8.65 11.82 6.42 +déesses déesse nom f p 13.56 8.65 1.74 2.23 +duettistes duettiste nom p 0.06 0.68 0.06 0.68 +défaillais défaillir ver 1.32 5.47 0.01 0.07 ind:imp:1s; +défaillait défaillir ver 1.32 5.47 0.02 0.54 ind:imp:3s; +défaillance défaillance nom f s 2.37 7.57 2.06 5.47 +défaillances défaillance nom f p 2.37 7.57 0.31 2.09 +défaillant défaillant adj m s 1.02 2.30 0.36 0.81 +défaillante défaillant adj f s 1.02 2.30 0.54 0.81 +défaillantes défaillant adj f p 1.02 2.30 0.04 0.27 +défaillants défaillant adj m p 1.02 2.30 0.09 0.41 +défaille défaillir ver 1.32 5.47 0.65 0.88 sub:pre:1s;sub:pre:3s; +défaillent défaillir ver 1.32 5.47 0.01 0.14 ind:pre:3p; +défailli défaillir ver m s 1.32 5.47 0.01 0.34 par:pas; +défaillir défaillir ver 1.32 5.47 0.58 2.91 inf; +défaillirait défaillir ver 1.32 5.47 0.00 0.07 cnd:pre:3s; +défaillis défaillir ver 1.32 5.47 0.02 0.07 ind:pas:1s; +défaillit défaillir ver 1.32 5.47 0.00 0.27 ind:pas:3s; +défaire défaire ver 12.32 32.23 5.26 10.14 inf; +défais défaire ver 12.32 32.23 2.13 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +défaisaient défaire ver 12.32 32.23 0.03 0.81 ind:imp:3p; +défaisais défaire ver 12.32 32.23 0.02 0.14 ind:imp:1s;ind:imp:2s; +défaisait défaire ver 12.32 32.23 0.04 2.50 ind:imp:3s; +défaisant défaire ver 12.32 32.23 0.11 0.88 par:pre; +défaisons défaire ver 12.32 32.23 0.01 0.07 ind:pre:1p; +défait défaire ver m s 12.32 32.23 2.25 7.84 ind:pre:3s;par:pas; +défaite défaite nom f s 8.38 21.82 7.64 19.46 +défaites défaire ver f p 12.32 32.23 0.75 0.14 imp:pre:2p;ind:pre:2p;par:pas; +défaitisme défaitisme nom m s 0.56 0.68 0.56 0.68 +défaitiste défaitiste adj s 1.26 0.41 0.57 0.14 +défaitistes défaitiste adj p 1.26 0.41 0.69 0.27 +défaits défaire ver m p 12.32 32.23 0.57 1.22 par:pas; +défalque défalquer ver 0.01 0.27 0.00 0.07 ind:pre:3s; +défalquer défalquer ver 0.01 0.27 0.01 0.07 inf; +défalqué défalquer ver m s 0.01 0.27 0.00 0.07 par:pas; +défalquées défalquer ver f p 0.01 0.27 0.00 0.07 par:pas; +défarguaient défarguer ver 0.00 0.61 0.00 0.07 ind:imp:3p; +défargue défarguer ver 0.00 0.61 0.00 0.20 ind:pre:3s; +défarguer défarguer ver 0.00 0.61 0.00 0.20 inf; +défargué défarguer ver m s 0.00 0.61 0.00 0.14 par:pas; +défasse défaire ver 12.32 32.23 0.05 0.54 sub:pre:1s;sub:pre:3s; +défausse défausser ver 0.02 0.07 0.01 0.00 ind:pre:3s; +défausser défausser ver 0.02 0.07 0.01 0.07 inf; +défaut défaut nom m s 18.36 38.45 11.24 27.70 +défauts défaut nom m p 18.36 38.45 7.12 10.74 +défaveur défaveur nom f s 0.18 0.41 0.18 0.41 +défavorable défavorable adj s 0.68 2.91 0.56 1.76 +défavorablement défavorablement adv 0.00 0.20 0.00 0.20 +défavorables défavorable adj p 0.68 2.91 0.12 1.15 +défavorisait défavoriser ver 0.06 0.20 0.00 0.07 ind:imp:3s; +défavorisent défavoriser ver 0.06 0.20 0.01 0.00 ind:pre:3p; +défavorisé défavorisé adj m s 0.53 0.54 0.07 0.14 +défavorisée défavorisé adj f s 0.53 0.54 0.05 0.07 +défavorisées défavorisé adj f p 0.53 0.54 0.03 0.20 +défavorisés défavorisé adj m p 0.53 0.54 0.39 0.14 +défectible défectible adj s 0.00 0.07 0.00 0.07 +défectif défectif adj m s 0.01 0.00 0.01 0.00 +défection défection nom f s 0.44 1.35 0.42 1.15 +défectionnaires défectionnaire adj p 0.00 0.07 0.00 0.07 +défections défection nom f p 0.44 1.35 0.02 0.20 +défectueuse défectueux adj f s 2.54 1.89 0.60 0.61 +défectueusement défectueusement adv 0.00 0.07 0.00 0.07 +défectueuses défectueux adj f p 2.54 1.89 0.19 0.54 +défectueux défectueux adj m 2.54 1.89 1.74 0.74 +défectuosité défectuosité nom f s 0.01 0.14 0.01 0.14 +défend défendre ver 78.36 91.08 7.00 6.01 ind:pre:3s; +défendît défendre ver 78.36 91.08 0.00 0.47 sub:imp:3s; +défendable défendable adj f s 0.20 0.20 0.20 0.20 +défendaient défendre ver 78.36 91.08 0.20 2.36 ind:imp:3p; +défendais défendre ver 78.36 91.08 0.70 1.82 ind:imp:1s;ind:imp:2s; +défendait défendre ver 78.36 91.08 1.39 8.18 ind:imp:3s; +défendant défendre ver 78.36 91.08 1.64 2.16 par:pre; +défende défendre ver 78.36 91.08 0.56 0.47 sub:pre:1s;sub:pre:3s; +défendent défendre ver 78.36 91.08 1.81 2.09 ind:pre:3p; +défenderesse défendeur nom f s 0.50 0.00 0.03 0.00 +défendes défendre ver 78.36 91.08 0.22 0.20 sub:pre:2s; +défendeur défendeur nom m s 0.50 0.00 0.43 0.00 +défendeurs défendeur nom m p 0.50 0.00 0.04 0.00 +défendez défendre ver 78.36 91.08 2.94 0.88 imp:pre:2p;ind:pre:2p; +défendiez défendre ver 78.36 91.08 0.13 0.14 ind:imp:2p; +défendions défendre ver 78.36 91.08 0.02 0.27 ind:imp:1p; +défendirent défendre ver 78.36 91.08 0.01 0.14 ind:pas:3p; +défendis défendre ver 78.36 91.08 0.10 0.27 ind:pas:1s; +défendit défendre ver 78.36 91.08 0.01 1.22 ind:pas:3s; +défendons défendre ver 78.36 91.08 0.75 0.47 imp:pre:1p;ind:pre:1p; +défendra défendre ver 78.36 91.08 1.00 0.68 ind:fut:3s; +défendrai défendre ver 78.36 91.08 1.80 0.61 ind:fut:1s; +défendraient défendre ver 78.36 91.08 0.13 0.34 cnd:pre:3p; +défendrais défendre ver 78.36 91.08 0.14 0.47 cnd:pre:1s;cnd:pre:2s; +défendrait défendre ver 78.36 91.08 0.11 1.15 cnd:pre:3s; +défendras défendre ver 78.36 91.08 0.06 0.07 ind:fut:2s; +défendre défendre ver 78.36 91.08 36.58 41.49 inf; +défendrez défendre ver 78.36 91.08 0.22 0.14 ind:fut:2p; +défendriez défendre ver 78.36 91.08 0.06 0.14 cnd:pre:2p; +défendrons défendre ver 78.36 91.08 0.37 0.14 ind:fut:1p; +défendront défendre ver 78.36 91.08 0.23 0.27 ind:fut:3p; +défends défendre ver 78.36 91.08 9.24 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +défendu défendre ver m s 78.36 91.08 9.18 10.81 par:pas; +défendue défendre ver f s 78.36 91.08 1.17 2.16 par:pas; +défendues défendre ver f p 78.36 91.08 0.10 0.14 par:pas; +défendus défendre ver m p 78.36 91.08 0.50 0.47 par:pas; +défenestraient défenestrer ver 0.44 0.27 0.00 0.07 ind:imp:3p; +défenestrant défenestrer ver 0.44 0.27 0.01 0.00 par:pre; +défenestration défenestration nom f s 0.09 0.07 0.09 0.07 +défenestrer défenestrer ver 0.44 0.27 0.17 0.00 inf; +défenestrerai défenestrer ver 0.44 0.27 0.00 0.07 ind:fut:1s; +défenestré défenestrer ver m s 0.44 0.27 0.12 0.14 par:pas; +défenestrée défenestrer ver f s 0.44 0.27 0.14 0.00 par:pas; +défens défens nom m 0.01 0.00 0.01 0.00 +défense défense nom f s 50.94 52.30 48.56 47.77 +défenses défense nom f p 50.94 52.30 2.38 4.53 +défenseur défenseur nom m s 3.74 6.35 2.59 3.38 +défenseurs défenseur nom m p 3.74 6.35 1.15 2.97 +défensif défensif adj m s 2.35 1.96 0.71 0.74 +défensifs défensif adj m p 2.35 1.96 0.33 0.00 +défensive défensive nom f s 0.98 1.89 0.98 1.89 +défensives défensif adj f p 2.35 1.96 0.57 0.27 +défera défaire ver 12.32 32.23 0.03 0.27 ind:fut:3s; +déferai défaire ver 12.32 32.23 0.05 0.14 ind:fut:1s; +déferaient défaire ver 12.32 32.23 0.00 0.07 cnd:pre:3p; +déferais défaire ver 12.32 32.23 0.01 0.00 cnd:pre:1s; +déferait défaire ver 12.32 32.23 0.15 0.27 cnd:pre:3s; +déferas défaire ver 12.32 32.23 0.02 0.00 ind:fut:2s; +déferez défaire ver 12.32 32.23 0.00 0.07 ind:fut:2p; +déferla déferler ver 1.38 11.28 0.05 1.22 ind:pas:3s; +déferlaient déferler ver 1.38 11.28 0.03 1.42 ind:imp:3p; +déferlait déferler ver 1.38 11.28 0.03 2.36 ind:imp:3s; +déferlant déferler ver 1.38 11.28 0.02 0.54 par:pre; +déferlante déferlante nom f s 0.26 0.34 0.23 0.20 +déferlantes déferlante nom f p 0.26 0.34 0.03 0.14 +déferle déferler ver 1.38 11.28 0.57 1.55 imp:pre:2s;ind:pre:3s; +déferlement déferlement nom m s 0.34 4.66 0.33 4.53 +déferlements déferlement nom m p 0.34 4.66 0.01 0.14 +déferlent déferler ver 1.38 11.28 0.30 1.15 ind:pre:3p; +déferler déferler ver 1.38 11.28 0.08 1.76 inf; +déferleraient déferler ver 1.38 11.28 0.00 0.14 cnd:pre:3p; +déferlerait déferler ver 1.38 11.28 0.00 0.20 cnd:pre:3s; +déferleront déferler ver 1.38 11.28 0.00 0.07 ind:fut:3p; +déferlez déferler ver 1.38 11.28 0.02 0.00 imp:pre:2p; +déferlât déferler ver 1.38 11.28 0.00 0.07 sub:imp:3s; +déferlèrent déferler ver 1.38 11.28 0.01 0.00 ind:pas:3p; +déferlé déferler ver m s 1.38 11.28 0.28 0.74 par:pas; +déferlées déferler ver f p 1.38 11.28 0.00 0.07 par:pas; +déferons défaire ver 12.32 32.23 0.10 0.07 ind:fut:1p; +déferont défaire ver 12.32 32.23 0.01 0.07 ind:fut:3p; +déferrer déferrer ver 0.10 0.07 0.10 0.00 inf; +déferré déferrer ver m s 0.10 0.07 0.00 0.07 par:pas; +déferré déferré adj m s 0.00 0.07 0.00 0.07 +défeuillées défeuiller ver f p 0.00 0.07 0.00 0.07 par:pas; +duffel_coat duffel_coat nom m s 0.01 0.07 0.01 0.07 +duffle_coat duffle_coat nom m s 0.00 0.34 0.00 0.27 +duffle_coat duffle_coat nom m p 0.00 0.34 0.00 0.07 +défi défi nom m s 12.24 17.36 10.23 15.20 +défia défier ver 13.49 12.30 0.04 0.27 ind:pas:3s; +défiaient défier ver 13.49 12.30 0.12 0.61 ind:imp:3p; +défiais défier ver 13.49 12.30 0.01 0.27 ind:imp:1s; +défiait défier ver 13.49 12.30 0.23 1.69 ind:imp:3s; +défiance défiance nom f s 0.58 2.09 0.58 1.96 +défiances défiance nom f p 0.58 2.09 0.00 0.14 +défiant défiant adj m s 0.43 0.34 0.43 0.27 +défiante défiant adj f s 0.43 0.34 0.00 0.07 +défibreur défibreur nom m s 0.01 0.00 0.01 0.00 +défibrillateur défibrillateur nom m s 0.58 0.00 0.57 0.00 +défibrillateurs défibrillateur nom m p 0.58 0.00 0.01 0.00 +défibrillation défibrillation nom f s 0.14 0.00 0.14 0.00 +déficeler déficeler ver 0.01 0.27 0.01 0.14 inf; +déficelle déficeler ver 0.01 0.27 0.00 0.07 ind:pre:3s; +déficelèrent déficeler ver 0.01 0.27 0.00 0.07 ind:pas:3p; +déficience déficience nom f s 1.01 1.22 0.56 0.47 +déficiences déficience nom f p 1.01 1.22 0.45 0.74 +déficient déficient adj m s 0.45 0.74 0.21 0.27 +déficiente déficient adj f s 0.45 0.74 0.11 0.41 +déficientes déficient adj f p 0.45 0.74 0.04 0.00 +déficients déficient adj m p 0.45 0.74 0.09 0.07 +déficit déficit nom m s 1.92 1.42 1.91 0.95 +déficitaire déficitaire adj s 0.10 0.34 0.06 0.07 +déficitaires déficitaire adj p 0.10 0.34 0.04 0.27 +déficits déficit nom m p 1.92 1.42 0.01 0.47 +défie défier ver 13.49 12.30 5.36 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défient défier ver 13.49 12.30 0.86 0.54 ind:pre:3p; +défier défier ver 13.49 12.30 3.92 4.39 inf; +défiera défier ver 13.49 12.30 0.05 0.00 ind:fut:3s; +défierai défier ver 13.49 12.30 0.05 0.00 ind:fut:1s; +défierais défier ver 13.49 12.30 0.03 0.00 cnd:pre:1s; +défierait défier ver 13.49 12.30 0.02 0.14 cnd:pre:3s; +défieriez défier ver 13.49 12.30 0.01 0.00 cnd:pre:2p; +défierons défier ver 13.49 12.30 0.01 0.00 ind:fut:1p; +défiez défier ver 13.49 12.30 0.57 0.27 imp:pre:2p;ind:pre:2p; +défigeait défiger ver 0.07 0.07 0.00 0.07 ind:imp:3s; +défiger défiger ver 0.07 0.07 0.07 0.00 inf; +défigura défigurer ver 3.27 5.41 0.01 0.14 ind:pas:3s; +défiguraient défigurer ver 3.27 5.41 0.00 0.27 ind:imp:3p; +défigurais défigurer ver 3.27 5.41 0.00 0.07 ind:imp:1s; +défigurait défigurer ver 3.27 5.41 0.00 0.54 ind:imp:3s; +défigurant défigurer ver 3.27 5.41 0.01 0.07 par:pre; +défiguration défiguration nom f s 0.25 0.14 0.24 0.14 +défigurations défiguration nom f p 0.25 0.14 0.01 0.00 +défigure défigurer ver 3.27 5.41 0.55 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défigurement défigurement nom m s 0.01 0.00 0.01 0.00 +défigurent défigurer ver 3.27 5.41 0.01 0.14 ind:pre:3p; +défigurer défigurer ver 3.27 5.41 0.56 0.81 inf; +défigurerait défigurer ver 3.27 5.41 0.01 0.07 cnd:pre:3s; +défiguré défigurer ver m s 3.27 5.41 1.43 1.62 par:pas; +défigurée défigurer ver f s 3.27 5.41 0.62 0.74 par:pas; +défigurées défiguré adj f p 0.71 1.69 0.02 0.07 +défigurés défigurer ver m p 3.27 5.41 0.06 0.41 par:pas; +défila défiler ver 10.82 32.64 0.00 0.54 ind:pas:3s; +défilaient défiler ver 10.82 32.64 0.17 4.73 ind:imp:3p; +défilais défiler ver 10.82 32.64 0.04 0.20 ind:imp:1s;ind:imp:2s; +défilait défiler ver 10.82 32.64 0.20 2.70 ind:imp:3s; +défilant défiler ver 10.82 32.64 0.17 1.15 par:pre; +défilantes défilant adj f p 0.00 0.14 0.00 0.07 +défilants défilant adj m p 0.00 0.14 0.00 0.07 +défile défiler ver 10.82 32.64 2.66 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défilement défilement nom m s 0.01 0.68 0.01 0.61 +défilements défilement nom m p 0.01 0.68 0.00 0.07 +défilent défiler ver 10.82 32.64 1.04 4.59 ind:pre:3p; +défiler défiler ver 10.82 32.64 4.32 11.28 inf; +défilera défiler ver 10.82 32.64 0.19 0.14 ind:fut:3s; +défileraient défiler ver 10.82 32.64 0.00 0.27 cnd:pre:3p; +défilerait défiler ver 10.82 32.64 0.02 0.27 cnd:pre:3s; +défileras défiler ver 10.82 32.64 0.01 0.00 ind:fut:2s; +défilerez défiler ver 10.82 32.64 0.01 0.07 ind:fut:2p; +défilerons défiler ver 10.82 32.64 0.03 0.00 ind:fut:1p; +défileront défiler ver 10.82 32.64 0.19 0.00 ind:fut:3p; +défilez défiler ver 10.82 32.64 0.25 0.07 imp:pre:2p;ind:pre:2p; +défiliez défiler ver 10.82 32.64 0.02 0.00 ind:imp:2p; +défilions défiler ver 10.82 32.64 0.01 0.07 ind:imp:1p; +défilons défiler ver 10.82 32.64 0.01 0.14 ind:pre:1p; +défilèrent défiler ver 10.82 32.64 0.01 1.62 ind:pas:3p; +défilé défilé nom m s 8.05 14.73 7.45 12.30 +défilée défiler ver f s 10.82 32.64 0.07 0.00 par:pas; +défilés défilé nom m p 8.05 14.73 0.59 2.43 +défini définir ver m s 7.22 14.53 0.82 1.22 par:pas; +définie définir ver f s 7.22 14.53 0.51 1.28 par:pas; +définies défini adj f p 1.40 3.38 0.22 0.14 +définir définir ver 7.22 14.53 3.07 7.70 inf; +définira définir ver 7.22 14.53 0.05 0.07 ind:fut:3s; +définirais définir ver 7.22 14.53 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +définirait définir ver 7.22 14.53 0.04 0.14 cnd:pre:3s; +définiriez définir ver 7.22 14.53 0.10 0.00 cnd:pre:2p; +définis définir ver m p 7.22 14.53 0.35 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +définissable définissable adj m s 0.00 0.20 0.00 0.14 +définissables définissable adj p 0.00 0.20 0.00 0.07 +définissaient définir ver 7.22 14.53 0.00 0.20 ind:imp:3p; +définissait définir ver 7.22 14.53 0.14 1.15 ind:imp:3s; +définissant définir ver 7.22 14.53 0.06 0.14 par:pre; +définisse définir ver 7.22 14.53 0.08 0.07 sub:pre:3s; +définissent définir ver 7.22 14.53 0.36 0.41 ind:pre:3p; +définissez définir ver 7.22 14.53 0.53 0.07 imp:pre:2p;ind:pre:2p; +définissons définir ver 7.22 14.53 0.05 0.07 imp:pre:1p;ind:pre:1p; +définit définir ver 7.22 14.53 0.93 1.28 ind:pre:3s;ind:pas:3s; +définitif définitif adj m s 8.01 31.76 4.00 10.41 +définitifs définitif adj m p 8.01 31.76 0.30 1.89 +définition définition nom f s 4.95 7.23 4.73 6.28 +définitions définition nom f p 4.95 7.23 0.22 0.95 +définitive définitif adj f s 8.01 31.76 3.43 17.97 +définitivement définitivement adv 9.34 23.51 9.34 23.51 +définitives définitif adj f p 8.01 31.76 0.27 1.49 +défions défier ver 13.49 12.30 0.47 0.07 imp:pre:1p;ind:pre:1p; +défirent défaire ver 12.32 32.23 0.00 0.27 ind:pas:3p; +défis défi nom m p 12.24 17.36 2.02 2.16 +défiscalisations défiscalisation nom f p 0.01 0.00 0.01 0.00 +défiscalisé défiscaliser ver m s 0.01 0.00 0.01 0.00 par:pas; +défit défaire ver 12.32 32.23 0.14 3.58 ind:pas:3s; +défièrent défier ver 13.49 12.30 0.02 0.07 ind:pas:3p; +défié défier ver m s 13.49 12.30 1.19 0.68 par:pas; +défiée défier ver f s 13.49 12.30 0.07 0.07 par:pas; +défiés défier ver m p 13.49 12.30 0.16 0.14 par:pas; +déflagrante déflagrant adj f s 0.00 0.07 0.00 0.07 +déflagration déflagration nom f s 0.34 2.09 0.31 1.55 +déflagrations déflagration nom f p 0.34 2.09 0.02 0.54 +déflationniste déflationniste adj f s 0.02 0.00 0.01 0.00 +déflationnistes déflationniste adj f p 0.02 0.00 0.01 0.00 +déflecteur déflecteur adj m s 0.04 0.00 0.04 0.00 +déflecteurs déflecteur nom m p 0.08 0.20 0.06 0.14 +défleuri défleurir ver m s 0.00 0.47 0.00 0.20 par:pas; +défleuries défleurir ver f p 0.00 0.47 0.00 0.20 par:pas; +défleuris défleurir ver m p 0.00 0.47 0.00 0.07 par:pas; +déflexion déflexion nom f s 0.09 0.00 0.09 0.00 +défloraison défloraison nom f s 0.00 0.20 0.00 0.20 +déflorait déflorer ver 0.89 0.81 0.02 0.07 ind:imp:3s; +défloration défloration nom f s 0.01 0.20 0.01 0.20 +déflorer déflorer ver 0.89 0.81 0.12 0.14 inf; +déflorerons déflorer ver 0.89 0.81 0.00 0.07 ind:fut:1p; +défloré déflorer ver m s 0.89 0.81 0.11 0.20 par:pas; +déflorée déflorer ver f s 0.89 0.81 0.65 0.27 par:pas; +déflorés déflorer ver m p 0.89 0.81 0.00 0.07 par:pas; +défoliant défoliant nom m s 0.01 0.00 0.01 0.00 +défonce défoncer ver 16.85 9.39 3.95 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défoncement défoncement nom m s 0.00 0.34 0.00 0.27 +défoncements défoncement nom m p 0.00 0.34 0.00 0.07 +défoncent défoncer ver 16.85 9.39 0.50 0.27 ind:pre:3p; +défoncer défoncer ver 16.85 9.39 5.22 2.84 inf; +défoncera défoncer ver 16.85 9.39 0.06 0.14 ind:fut:3s; +défoncerai défoncer ver 16.85 9.39 0.19 0.07 ind:fut:1s; +défonceraient défoncer ver 16.85 9.39 0.01 0.07 cnd:pre:3p; +défoncerait défoncer ver 16.85 9.39 0.04 0.07 cnd:pre:3s; +défonceront défoncer ver 16.85 9.39 0.00 0.07 ind:fut:3p; +défonceuse défonceuse nom f s 0.02 0.14 0.02 0.14 +défoncez défoncer ver 16.85 9.39 0.31 0.00 imp:pre:2p;ind:pre:2p; +défoncé défoncer ver m s 16.85 9.39 4.54 2.03 par:pas; +défoncée défoncer ver f s 16.85 9.39 1.30 0.95 par:pas; +défoncées défoncé adj f p 3.97 5.68 0.17 0.81 +défoncés défoncé adj m p 3.97 5.68 0.61 1.55 +défont défaire ver 12.32 32.23 0.05 1.22 ind:pre:3p; +défonça défoncer ver 16.85 9.39 0.01 0.07 ind:pas:3s; +défonçai défoncer ver 16.85 9.39 0.00 0.07 ind:pas:1s; +défonçaient défoncer ver 16.85 9.39 0.02 0.14 ind:imp:3p; +défonçais défoncer ver 16.85 9.39 0.06 0.00 ind:imp:1s;ind:imp:2s; +défonçait défoncer ver 16.85 9.39 0.21 0.34 ind:imp:3s; +défonçant défoncer ver 16.85 9.39 0.05 0.20 par:pre; +défonçons défoncer ver 16.85 9.39 0.04 0.00 imp:pre:1p;ind:pre:1p; +déforestation déforestation nom f s 0.04 0.00 0.04 0.00 +déforma déformer ver 2.75 12.43 0.00 0.41 ind:pas:3s; +déformaient déformer ver 2.75 12.43 0.01 0.27 ind:imp:3p; +déformait déformer ver 2.75 12.43 0.03 1.01 ind:imp:3s; +déformant déformant adj m s 0.07 0.95 0.04 0.27 +déformante déformant adj f s 0.07 0.95 0.04 0.41 +déformantes déformant adj f p 0.07 0.95 0.00 0.14 +déformants déformant adj m p 0.07 0.95 0.00 0.14 +déformation déformation nom f s 0.86 2.43 0.75 1.69 +déformations déformation nom f p 0.86 2.43 0.11 0.74 +déforme déformer ver 2.75 12.43 0.55 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déforment déformer ver 2.75 12.43 0.13 0.61 ind:pre:3p; +déformer déformer ver 2.75 12.43 0.62 1.15 inf; +déformera déformer ver 2.75 12.43 0.00 0.07 ind:fut:3s; +déformerai déformer ver 2.75 12.43 0.00 0.07 ind:fut:1s; +déformerait déformer ver 2.75 12.43 0.01 0.07 cnd:pre:3s; +déformeront déformer ver 2.75 12.43 0.03 0.07 ind:fut:3p; +déformes déformer ver 2.75 12.43 0.26 0.07 ind:pre:2s; +déformez déformer ver 2.75 12.43 0.20 0.07 imp:pre:2p;ind:pre:2p; +déformé déformer ver m s 2.75 12.43 0.56 2.57 par:pas; +déformée déformé adj f s 1.41 3.65 0.36 0.81 +déformées déformé adj f p 1.41 3.65 0.13 0.68 +déformés déformé adj m p 1.41 3.65 0.38 1.35 +défoulaient défouler ver 3.39 0.74 0.01 0.00 ind:imp:3p; +défoulais défouler ver 3.39 0.74 0.06 0.00 ind:imp:1s;ind:imp:2s; +défoulait défouler ver 3.39 0.74 0.05 0.00 ind:imp:3s; +défoule défouler ver 3.39 0.74 1.31 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défoulement défoulement nom m s 0.06 0.27 0.06 0.27 +défoulent défouler ver 3.39 0.74 0.14 0.07 ind:pre:3p; +défouler défouler ver 3.39 0.74 1.66 0.27 inf; +défoulera défouler ver 3.39 0.74 0.03 0.00 ind:fut:3s; +défoulerait défouler ver 3.39 0.74 0.01 0.07 cnd:pre:3s; +défoules défouler ver 3.39 0.74 0.09 0.00 ind:pre:2s; +défouliez défouler ver 3.39 0.74 0.01 0.07 ind:imp:2p; +défouloir défouloir nom m s 0.15 0.00 0.15 0.00 +défoulons défouler ver 3.39 0.74 0.01 0.00 imp:pre:1p; +défoulés défouler ver m p 3.39 0.74 0.01 0.00 par:pas; +défouraillaient défourailler ver 0.29 0.81 0.00 0.07 ind:imp:3p; +défouraille défourailler ver 0.29 0.81 0.00 0.14 ind:pre:3s; +défouraillent défourailler ver 0.29 0.81 0.00 0.07 ind:pre:3p; +défourailler défourailler ver 0.29 0.81 0.29 0.34 inf; +défouraillerait défourailler ver 0.29 0.81 0.00 0.07 cnd:pre:3s; +défouraillé défourailler ver m s 0.29 0.81 0.00 0.14 par:pas; +défourna défourner ver 0.00 0.14 0.00 0.07 ind:pas:3s; +défournait défourner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +défraîchi défraîchi adj m s 0.23 2.77 0.06 0.88 +défraîchie défraîchi adj f s 0.23 2.77 0.16 0.54 +défraîchies défraîchi adj f p 0.23 2.77 0.00 0.68 +défraîchir défraîchir ver 0.07 1.01 0.00 0.20 inf; +défraîchis défraîchi adj m p 0.23 2.77 0.01 0.68 +défraîchissait défraîchir ver 0.07 1.01 0.00 0.07 ind:imp:3s; +défragmenteur défragmenteur nom m s 0.01 0.00 0.01 0.00 +défraiement défraiement nom m s 0.42 0.07 0.05 0.00 +défraiements défraiement nom m p 0.42 0.07 0.37 0.07 +défraya défrayer ver 0.04 1.55 0.01 0.20 ind:pas:3s; +défrayaient défrayer ver 0.04 1.55 0.00 0.20 ind:imp:3p; +défrayait défrayer ver 0.04 1.55 0.00 0.47 ind:imp:3s; +défrayant défrayer ver 0.04 1.55 0.00 0.07 par:pre; +défrayent défrayer ver 0.04 1.55 0.00 0.07 ind:pre:3p; +défrayer défrayer ver 0.04 1.55 0.00 0.41 inf; +défrayèrent défrayer ver 0.04 1.55 0.00 0.07 ind:pas:3p; +défrayé défrayer ver m s 0.04 1.55 0.03 0.07 par:pas; +défricha défricher ver 0.43 1.82 0.00 0.07 ind:pas:3s; +défrichage défrichage nom m s 0.00 0.14 0.00 0.14 +défrichait défricher ver 0.43 1.82 0.00 0.07 ind:imp:3s; +défriche défricher ver 0.43 1.82 0.13 0.20 ind:pre:1s;ind:pre:3s; +défrichement défrichement nom m s 0.00 0.47 0.00 0.41 +défrichements défrichement nom m p 0.00 0.47 0.00 0.07 +défricher défricher ver 0.43 1.82 0.10 0.74 inf; +défricheurs défricheur nom m p 0.00 0.14 0.00 0.14 +défriché défricher ver m s 0.43 1.82 0.10 0.47 par:pas; +défrichée défricher ver f s 0.43 1.82 0.10 0.14 par:pas; +défrichées défricher ver f p 0.43 1.82 0.00 0.07 par:pas; +défrichés défricher ver m p 0.43 1.82 0.00 0.07 par:pas; +défringue défringuer ver 0.00 0.20 0.00 0.14 imp:pre:2s; +défringues défringuer ver 0.00 0.20 0.00 0.07 ind:pre:2s; +défripe défriper ver 0.00 0.34 0.00 0.14 ind:pre:1s;ind:pre:3s; +défripera défriper ver 0.00 0.34 0.00 0.07 ind:fut:3s; +défripé défriper ver m s 0.00 0.34 0.00 0.07 par:pas; +défripées défriper ver f p 0.00 0.34 0.00 0.07 par:pas; +défrisage défrisage nom m s 0.01 0.00 0.01 0.00 +défrisaient défriser ver 0.88 1.01 0.00 0.07 ind:imp:3p; +défrisait défriser ver 0.88 1.01 0.00 0.14 ind:imp:3s; +défrise défriser ver 0.88 1.01 0.68 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défriser défriser ver 0.88 1.01 0.05 0.27 inf; +défriserait défriser ver 0.88 1.01 0.02 0.00 cnd:pre:3s; +défrises défriser ver 0.88 1.01 0.11 0.00 ind:pre:2s; +défrisé défriser ver m s 0.88 1.01 0.02 0.14 par:pas; +défroissa défroisser ver 0.19 1.28 0.00 0.07 ind:pas:3s; +défroissai défroisser ver 0.19 1.28 0.00 0.07 ind:pas:1s; +défroissaient défroisser ver 0.19 1.28 0.00 0.07 ind:imp:3p; +défroissait défroisser ver 0.19 1.28 0.00 0.07 ind:imp:3s; +défroissant défroisser ver 0.19 1.28 0.00 0.20 par:pre; +défroisse défroisser ver 0.19 1.28 0.17 0.07 ind:pre:1s;ind:pre:3s; +défroissent défroisser ver 0.19 1.28 0.00 0.07 ind:pre:3p; +défroisser défroisser ver 0.19 1.28 0.01 0.34 inf; +défroissé défroisser ver m s 0.19 1.28 0.01 0.14 par:pas; +défroissées défroisser ver f p 0.19 1.28 0.00 0.07 par:pas; +défroissés défroisser ver m p 0.19 1.28 0.00 0.14 par:pas; +défroqua défroquer ver 0.12 0.47 0.00 0.07 ind:pas:3s; +défroque défroque nom f s 0.03 2.16 0.03 1.28 +défroquer défroquer ver 0.12 0.47 0.02 0.00 inf; +défroques défroque nom f p 0.03 2.16 0.00 0.88 +défroqué défroquer ver m s 0.12 0.47 0.08 0.20 par:pas; +défroquée défroquer ver f s 0.12 0.47 0.01 0.07 par:pas; +défroqués défroquer ver m p 0.12 0.47 0.00 0.14 par:pas; +défèque déféquer ver 0.92 0.61 0.04 0.07 ind:pre:3s; +défécation défécation nom f s 0.01 0.81 0.01 0.61 +défécations défécation nom f p 0.01 0.81 0.00 0.20 +défécatoire défécatoire adj s 0.00 0.41 0.00 0.41 +déféminiser déféminiser ver 0.01 0.00 0.01 0.00 inf; +défunt défunt nom m s 6.42 6.28 4.50 2.91 +défunte défunt adj f s 4.79 5.27 1.63 1.28 +défunter défunter ver 0.00 0.14 0.00 0.07 inf; +défuntes défunt nom f p 6.42 6.28 0.14 0.14 +défunts défunt nom m p 6.42 6.28 1.06 1.69 +défunté défunter ver m s 0.00 0.14 0.00 0.07 par:pas; +déféquaient déféquer ver 0.92 0.61 0.14 0.07 ind:imp:3p; +déféquant déféquer ver 0.92 0.61 0.03 0.07 par:pre; +déféquassent déféquer ver 0.92 0.61 0.14 0.00 sub:imp:3p; +déféquer déféquer ver 0.92 0.61 0.48 0.27 inf; +déféqué déféquer ver m s 0.92 0.61 0.09 0.14 par:pas; +déféra déférer ver 0.42 0.47 0.00 0.07 ind:pas:3s; +déférait déférer ver 0.42 0.47 0.00 0.07 ind:imp:3s; +déférant déférer ver 0.42 0.47 0.00 0.07 par:pre; +déférence déférence nom f s 0.08 4.26 0.08 4.26 +déférent déférent adj m s 0.01 2.70 0.00 1.42 +déférente déférent adj f s 0.01 2.70 0.00 0.81 +déférentes déférent adj f p 0.01 2.70 0.00 0.20 +déférents déférent adj m p 0.01 2.70 0.01 0.27 +déférer déférer ver 0.42 0.47 0.05 0.07 inf; +déférerait déférer ver 0.42 0.47 0.00 0.07 cnd:pre:3s; +déféré déférer ver m s 0.42 0.47 0.36 0.07 par:pas; +déférés déférer ver m p 0.42 0.47 0.01 0.07 par:pas; +dégage dégager ver 102.47 58.04 56.41 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dégagea dégager ver 102.47 58.04 0.00 6.62 ind:pas:3s; +dégageai dégager ver 102.47 58.04 0.00 0.27 ind:pas:1s; +dégageaient dégager ver 102.47 58.04 0.04 1.62 ind:imp:3p; +dégageait dégager ver 102.47 58.04 0.22 8.85 ind:imp:3s; +dégageant dégager ver 102.47 58.04 0.32 3.92 par:pre; +dégagement dégagement nom m s 0.44 0.74 0.44 0.54 +dégagements dégagement nom m p 0.44 0.74 0.00 0.20 +dégagent dégager ver 102.47 58.04 1.18 1.42 ind:pre:3p; +dégageons dégager ver 102.47 58.04 0.67 0.14 imp:pre:1p;ind:pre:1p; +dégageât dégager ver 102.47 58.04 0.00 0.14 sub:imp:3s; +dégager dégager ver 102.47 58.04 8.22 15.20 inf; +dégagera dégager ver 102.47 58.04 0.22 0.07 ind:fut:3s; +dégageraient dégager ver 102.47 58.04 0.00 0.07 cnd:pre:3p; +dégagerais dégager ver 102.47 58.04 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +dégagerait dégager ver 102.47 58.04 0.02 0.34 cnd:pre:3s; +dégageront dégager ver 102.47 58.04 0.03 0.00 ind:fut:3p; +dégages dégager ver 102.47 58.04 3.15 0.14 ind:pre:2s;sub:pre:2s; +dégagez dégager ver 102.47 58.04 27.61 0.41 imp:pre:2p;ind:pre:2p; +dégagèrent dégager ver 102.47 58.04 0.03 0.27 ind:pas:3p; +dégagé dégager ver m s 102.47 58.04 2.96 4.39 par:pas; +dégagée dégager ver f s 102.47 58.04 1.04 2.70 par:pas; +dégagées dégager ver f p 102.47 58.04 0.08 0.41 par:pas; +dégagés dégager ver m p 102.47 58.04 0.25 0.68 par:pas; +dégaina dégainer ver 4.95 1.96 0.01 0.07 ind:pas:3s; +dégainais dégainer ver 4.95 1.96 0.02 0.00 ind:imp:1s;ind:imp:2s; +dégainait dégainer ver 4.95 1.96 0.06 0.00 ind:imp:3s; +dégainant dégainer ver 4.95 1.96 0.01 0.14 par:pre; +dégaine dégaine nom f s 1.45 3.18 1.43 3.11 +dégainent dégainer ver 4.95 1.96 0.04 0.00 ind:pre:3p; +dégainer dégainer ver 4.95 1.96 1.62 0.54 inf; +dégainerai dégainer ver 4.95 1.96 0.01 0.00 ind:fut:1s; +dégainerez dégainer ver 4.95 1.96 0.01 0.00 ind:fut:2p; +dégaines dégainer ver 4.95 1.96 0.15 0.00 ind:pre:2s; +dégainez dégainer ver 4.95 1.96 0.81 0.00 imp:pre:2p;ind:pre:2p; +dégainèrent dégainer ver 4.95 1.96 0.00 0.07 ind:pas:3p; +dégainé dégainer ver m s 4.95 1.96 0.80 0.41 par:pas; +dégainés dégainer ver m p 4.95 1.96 0.00 0.14 par:pas; +déganta déganter ver 0.02 0.34 0.00 0.07 ind:pas:3s; +dégantant déganter ver 0.02 0.34 0.00 0.07 par:pre; +déganté déganter ver m s 0.02 0.34 0.01 0.00 par:pas; +dégantée déganter ver f s 0.02 0.34 0.01 0.14 par:pas; +dégantées déganter ver f p 0.02 0.34 0.00 0.07 par:pas; +dégarni dégarni adj m s 0.40 1.82 0.39 1.69 +dégarnie dégarni adj f s 0.40 1.82 0.01 0.00 +dégarnies dégarni adj f p 0.40 1.82 0.00 0.14 +dégarnir dégarnir ver 0.17 1.01 0.02 0.14 inf; +dégarnis dégarnir ver m p 0.17 1.01 0.04 0.00 ind:pre:1s;par:pas; +dégarnissait dégarnir ver 0.17 1.01 0.00 0.14 ind:imp:3s; +dégarnissant dégarnir ver 0.17 1.01 0.00 0.07 par:pre; +dégauchi dégauchir ver m s 0.00 2.57 0.00 0.41 par:pas; +dégauchie dégauchir ver f s 0.00 2.57 0.00 0.20 par:pas; +dégauchir dégauchir ver 0.00 2.57 0.00 1.69 inf; +dégauchira dégauchir ver 0.00 2.57 0.00 0.07 ind:fut:3s; +dégauchis dégauchir ver m p 0.00 2.57 0.00 0.14 ind:pre:1s;par:pas; +dégauchisse dégauchir ver 0.00 2.57 0.00 0.07 sub:pre:3s; +dégauchisseuse dégauchisseuse nom f s 0.00 0.07 0.00 0.07 +dégazage dégazage nom m s 0.03 0.00 0.03 0.00 +dégazent dégazer ver 0.01 0.14 0.00 0.07 ind:pre:3p; +dégazer dégazer ver 0.01 0.14 0.01 0.07 inf; +dégel dégel nom m s 0.47 3.31 0.47 3.31 +dégela dégeler ver 0.70 1.15 0.01 0.07 ind:pas:3s; +dégelai dégeler ver 0.70 1.15 0.00 0.07 ind:pas:1s; +dégelait dégeler ver 0.70 1.15 0.00 0.14 ind:imp:3s; +dégelant dégeler ver 0.70 1.15 0.01 0.00 par:pre; +dégeler dégeler ver 0.70 1.15 0.38 0.34 inf; +dégelez dégeler ver 0.70 1.15 0.01 0.00 ind:pre:2p; +dégelât dégeler ver 0.70 1.15 0.00 0.07 sub:imp:3s; +dégelé dégeler ver m s 0.70 1.15 0.08 0.14 par:pas; +dégelée dégeler ver f s 0.70 1.15 0.02 0.00 par:pas; +dégelées dégelée nom f p 0.01 1.35 0.00 0.27 +dégelés dégeler ver m p 0.70 1.15 0.04 0.07 par:pas; +dégermait dégermer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +dégingandé dégingandé adj m s 0.04 2.03 0.02 1.55 +dégingandée dégingandé adj f s 0.04 2.03 0.01 0.14 +dégingandées dégingandé adj f p 0.04 2.03 0.00 0.07 +dégingandés dégingandé adj m p 0.04 2.03 0.01 0.27 +dégivrage dégivrage nom m s 0.03 0.00 0.03 0.00 +dégivrer dégivrer ver 0.15 0.07 0.11 0.00 inf; +dégivré dégivrer ver m s 0.15 0.07 0.04 0.07 par:pas; +déglacer déglacer ver 0.06 0.00 0.01 0.00 inf; +déglacera déglacer ver 0.06 0.00 0.01 0.00 ind:fut:3s; +déglacez déglacer ver 0.06 0.00 0.02 0.00 imp:pre:2p; +déglacé déglacer ver m s 0.06 0.00 0.02 0.00 par:pas; +déglingua déglinguer ver 1.08 3.72 0.00 0.07 ind:pas:3s; +déglinguaient déglinguer ver 1.08 3.72 0.00 0.07 ind:imp:3p; +déglinguait déglinguer ver 1.08 3.72 0.00 0.27 ind:imp:3s; +déglinguant déglinguer ver 1.08 3.72 0.00 0.07 par:pre; +déglingue déglinguer ver 1.08 3.72 0.56 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déglinguent déglinguer ver 1.08 3.72 0.01 0.20 ind:pre:3p; +déglinguer déglinguer ver 1.08 3.72 0.26 0.68 inf; +déglinguions déglinguer ver 1.08 3.72 0.00 0.07 ind:imp:1p; +déglingué déglingué adj m s 0.38 2.43 0.27 1.22 +déglinguée déglinguer ver f s 1.08 3.72 0.07 0.41 par:pas; +déglinguées déglinguer ver f p 1.08 3.72 0.03 0.14 par:pas; +déglingués déglingué adj m p 0.38 2.43 0.05 0.41 +dégluti déglutir ver m s 0.17 3.18 0.00 0.34 par:pas; +déglutie déglutir ver f s 0.17 3.18 0.00 0.07 par:pas; +dégluties déglutir ver f p 0.17 3.18 0.00 0.07 par:pas; +déglutir déglutir ver 0.17 3.18 0.02 0.81 inf; +déglutis déglutir ver m p 0.17 3.18 0.00 0.14 ind:pre:1s;par:pas; +déglutissait déglutir ver 0.17 3.18 0.00 0.34 ind:imp:3s; +déglutissant déglutir ver 0.17 3.18 0.14 0.34 par:pre; +déglutit déglutir ver 0.17 3.18 0.01 1.08 ind:pre:3s;ind:pas:3s; +déglutition déglutition nom f s 0.31 1.08 0.31 0.81 +déglutitions déglutition nom f p 0.31 1.08 0.00 0.27 +dégoût dégoût nom m s 6.02 30.14 5.99 27.97 +dégoûta dégoûter ver 18.36 17.57 0.00 0.20 ind:pas:3s; +dégoûtai dégoûter ver 18.36 17.57 0.00 0.07 ind:pas:1s; +dégoûtaient dégoûter ver 18.36 17.57 0.03 0.61 ind:imp:3p; +dégoûtais dégoûter ver 18.36 17.57 0.19 0.27 ind:imp:1s;ind:imp:2s; +dégoûtait dégoûter ver 18.36 17.57 0.30 2.50 ind:imp:3s; +dégoûtant dégoûtant adj m s 15.92 6.76 11.47 3.92 +dégoûtante dégoûtant adj f s 15.92 6.76 2.06 1.82 +dégoûtantes dégoûtant adj f p 15.92 6.76 1.06 0.68 +dégoûtants dégoûtant adj m p 15.92 6.76 1.33 0.34 +dégoûtation dégoûtation nom f s 0.00 0.47 0.00 0.34 +dégoûtations dégoûtation nom f p 0.00 0.47 0.00 0.14 +dégoûte dégoûter ver 18.36 17.57 8.73 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoûtent dégoûter ver 18.36 17.57 0.88 0.74 ind:pre:3p; +dégoûter dégoûter ver 18.36 17.57 0.64 2.91 inf; +dégoûtera dégoûter ver 18.36 17.57 0.03 0.07 ind:fut:3s; +dégoûteraient dégoûter ver 18.36 17.57 0.00 0.07 cnd:pre:3p; +dégoûterais dégoûter ver 18.36 17.57 0.00 0.07 cnd:pre:1s; +dégoûterait dégoûter ver 18.36 17.57 0.34 0.27 cnd:pre:3s; +dégoûtes dégoûter ver 18.36 17.57 3.92 0.34 ind:pre:2s; +dégoûtez dégoûter ver 18.36 17.57 0.96 0.27 ind:pre:2p; +dégoûtât dégoûter ver 18.36 17.57 0.00 0.14 sub:imp:3s; +dégoûts dégoût nom m p 6.02 30.14 0.03 2.16 +dégoûtèrent dégoûter ver 18.36 17.57 0.00 0.20 ind:pas:3p; +dégoûté dégoûter ver m s 18.36 17.57 1.18 2.70 par:pas; +dégoûtée dégoûter ver f s 18.36 17.57 0.60 0.68 par:pas; +dégoûtées dégoûté nom f p 0.19 2.09 0.01 0.00 +dégoûtés dégoûter ver m p 18.36 17.57 0.20 0.54 par:pas; +dégobilla dégobiller ver 0.12 0.88 0.00 0.14 ind:pas:3s; +dégobillage dégobillage nom m s 0.01 0.00 0.01 0.00 +dégobillaient dégobiller ver 0.12 0.88 0.00 0.07 ind:imp:3p; +dégobillait dégobiller ver 0.12 0.88 0.00 0.07 ind:imp:3s; +dégobillant dégobiller ver 0.12 0.88 0.00 0.14 par:pre; +dégobille dégobiller ver 0.12 0.88 0.05 0.07 imp:pre:2s;ind:pre:3s; +dégobiller dégobiller ver 0.12 0.88 0.05 0.41 inf; +dégobillé dégobiller ver m s 0.12 0.88 0.02 0.00 par:pas; +dégoisais dégoiser ver 0.41 1.35 0.00 0.07 ind:imp:2s; +dégoisait dégoiser ver 0.41 1.35 0.00 0.07 ind:imp:3s; +dégoisant dégoiser ver 0.41 1.35 0.00 0.07 par:pre; +dégoise dégoiser ver 0.41 1.35 0.39 0.27 imp:pre:2s;ind:pre:3s; +dégoisent dégoiser ver 0.41 1.35 0.00 0.14 ind:pre:3p; +dégoiser dégoiser ver 0.41 1.35 0.02 0.61 inf; +dégoiserai dégoiser ver 0.41 1.35 0.00 0.07 ind:fut:1s; +dégoises dégoiser ver 0.41 1.35 0.00 0.07 ind:pre:2s; +dégommage dégommage nom m s 0.01 0.14 0.01 0.14 +dégommait dégommer ver 2.49 2.03 0.01 0.14 ind:imp:3s; +dégommant dégommer ver 2.49 2.03 0.01 0.00 par:pre; +dégomme dégommer ver 2.49 2.03 1.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégomment dégommer ver 2.49 2.03 0.00 0.07 ind:pre:3p; +dégommer dégommer ver 2.49 2.03 0.85 1.08 inf; +dégommera dégommer ver 2.49 2.03 0.02 0.00 ind:fut:3s; +dégommerai dégommer ver 2.49 2.03 0.01 0.07 ind:fut:1s; +dégommez dégommer ver 2.49 2.03 0.03 0.00 imp:pre:2p; +dégommons dégommer ver 2.49 2.03 0.01 0.00 imp:pre:1p; +dégommé dégommer ver m s 2.49 2.03 0.34 0.27 par:pas; +dégommée dégommer ver f s 2.49 2.03 0.02 0.00 par:pas; +dégommées dégommer ver f p 2.49 2.03 0.00 0.07 par:pas; +dégommés dégommer ver m p 2.49 2.03 0.16 0.07 par:pas; +dégonfla dégonfler ver 5.64 6.08 0.00 0.14 ind:pas:3s; +dégonflage dégonflage nom m s 0.01 0.07 0.01 0.07 +dégonflaient dégonfler ver 5.64 6.08 0.00 0.14 ind:imp:3p; +dégonflais dégonfler ver 5.64 6.08 0.01 0.00 ind:imp:2s; +dégonflait dégonfler ver 5.64 6.08 0.03 0.47 ind:imp:3s; +dégonflant dégonfler ver 5.64 6.08 0.02 0.00 par:pre; +dégonflard dégonflard nom m s 0.01 0.27 0.01 0.27 +dégonfle dégonfler ver 5.64 6.08 1.69 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégonflement dégonflement nom m s 0.01 0.00 0.01 0.00 +dégonflent dégonfler ver 5.64 6.08 0.19 0.07 ind:pre:3p; +dégonfler dégonfler ver 5.64 6.08 0.76 1.42 inf; +dégonflera dégonfler ver 5.64 6.08 0.09 0.14 ind:fut:3s; +dégonfleraient dégonfler ver 5.64 6.08 0.00 0.14 cnd:pre:3p; +dégonflerais dégonfler ver 5.64 6.08 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +dégonflerait dégonfler ver 5.64 6.08 0.02 0.07 cnd:pre:3s; +dégonfleriez dégonfler ver 5.64 6.08 0.01 0.07 cnd:pre:2p; +dégonfles dégonfler ver 5.64 6.08 1.17 0.41 ind:pre:2s; +dégonflez dégonfler ver 5.64 6.08 0.11 0.07 imp:pre:2p;ind:pre:2p; +dégonflé dégonflé nom m s 3.63 1.01 2.99 0.61 +dégonflée dégonfler ver f s 5.64 6.08 0.26 0.14 par:pas; +dégonflées dégonfler ver f p 5.64 6.08 0.01 0.00 par:pas; +dégonflés dégonflé nom m p 3.63 1.01 0.55 0.27 +dugong dugong nom m s 0.01 0.27 0.01 0.20 +dugongs dugong nom m p 0.01 0.27 0.00 0.07 +dégorge dégorger ver 0.22 2.36 0.01 0.34 ind:pre:1s;ind:pre:3s; +dégorgeaient dégorger ver 0.22 2.36 0.00 0.20 ind:imp:3p; +dégorgeais dégorger ver 0.22 2.36 0.01 0.07 ind:imp:1s;ind:imp:2s; +dégorgeait dégorger ver 0.22 2.36 0.00 0.61 ind:imp:3s; +dégorgeant dégorger ver 0.22 2.36 0.00 0.20 par:pre; +dégorgement dégorgement nom m s 0.00 0.14 0.00 0.14 +dégorgent dégorger ver 0.22 2.36 0.00 0.07 ind:pre:3p; +dégorger dégorger ver 0.22 2.36 0.17 0.34 inf; +dégorgeront dégorger ver 0.22 2.36 0.00 0.07 ind:fut:3p; +dégorgé dégorger ver m s 0.22 2.36 0.02 0.14 par:pas; +dégorgée dégorger ver f s 0.22 2.36 0.00 0.07 par:pas; +dégorgées dégorger ver f p 0.22 2.36 0.00 0.14 par:pas; +dégorgés dégorger ver m p 0.22 2.36 0.00 0.14 par:pas; +dégât dégât nom m s 14.22 9.73 0.95 0.74 +dégota dégoter ver 3.47 1.82 0.00 0.14 ind:pas:3s; +dégotait dégoter ver 3.47 1.82 0.01 0.14 ind:imp:3s; +dégote dégoter ver 3.47 1.82 0.27 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoter dégoter ver 3.47 1.82 1.02 0.61 inf; +dégoterais dégoter ver 3.47 1.82 0.01 0.07 cnd:pre:1s; +dégoteras dégoter ver 3.47 1.82 0.03 0.00 ind:fut:2s; +dégotez dégoter ver 3.47 1.82 0.03 0.07 imp:pre:2p;ind:pre:2p; +dégâts dégât nom m p 14.22 9.73 13.27 8.99 +dégotte dégotter ver 1.02 2.16 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégotter dégotter ver 1.02 2.16 0.23 0.95 inf; +dégottera dégotter ver 1.02 2.16 0.00 0.07 ind:fut:3s; +dégotterai dégotter ver 1.02 2.16 0.01 0.14 ind:fut:1s; +dégotterait dégotter ver 1.02 2.16 0.00 0.20 cnd:pre:3s; +dégottes dégotter ver 1.02 2.16 0.03 0.00 ind:pre:2s; +dégotté dégotter ver m s 1.02 2.16 0.53 0.68 par:pas; +dégoté dégoter ver m s 3.47 1.82 1.95 0.41 par:pas; +dégotée dégoter ver f s 3.47 1.82 0.04 0.07 par:pas; +dégotées dégoter ver f p 3.47 1.82 0.10 0.07 par:pas; +dégotés dégoter ver m p 3.47 1.82 0.00 0.07 par:pas; +dégoulina dégouliner ver 1.34 8.38 0.00 0.07 ind:pas:3s; +dégoulinade dégoulinade nom f s 0.00 0.41 0.00 0.27 +dégoulinades dégoulinade nom f p 0.00 0.41 0.00 0.14 +dégoulinaient dégouliner ver 1.34 8.38 0.10 0.54 ind:imp:3p; +dégoulinais dégouliner ver 1.34 8.38 0.00 0.07 ind:imp:1s; +dégoulinait dégouliner ver 1.34 8.38 0.04 2.64 ind:imp:3s; +dégoulinant dégouliner ver 1.34 8.38 0.09 1.08 par:pre; +dégoulinante dégoulinant adj f s 0.38 3.99 0.16 1.22 +dégoulinantes dégoulinant adj f p 0.38 3.99 0.12 0.68 +dégoulinants dégoulinant adj m p 0.38 3.99 0.04 0.74 +dégouline dégouliner ver 1.34 8.38 0.88 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoulinement dégoulinement nom m s 0.01 0.07 0.01 0.00 +dégoulinements dégoulinement nom m p 0.01 0.07 0.00 0.07 +dégoulinent dégouliner ver 1.34 8.38 0.03 0.34 ind:pre:3p; +dégouliner dégouliner ver 1.34 8.38 0.08 0.88 inf; +dégoulines dégouliner ver 1.34 8.38 0.07 0.00 ind:pre:2s; +dégoulinez dégouliner ver 1.34 8.38 0.02 0.00 ind:pre:2p; +dégoulinèrent dégouliner ver 1.34 8.38 0.00 0.07 ind:pas:3p; +dégouliné dégouliner ver m s 1.34 8.38 0.02 0.27 par:pas; +dégoulinures dégoulinure nom f p 0.00 0.07 0.00 0.07 +dégoupille dégoupiller ver 0.28 0.74 0.20 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoupiller dégoupiller ver 0.28 0.74 0.01 0.14 inf; +dégoupillâmes dégoupiller ver 0.28 0.74 0.00 0.07 ind:pas:1p; +dégoupillé dégoupiller ver m s 0.28 0.74 0.01 0.00 par:pas; +dégoupillée dégoupiller ver f s 0.28 0.74 0.05 0.34 par:pas; +dégoupillées dégoupiller ver f p 0.28 0.74 0.01 0.07 par:pas; +dégourdi dégourdi adj m s 0.28 0.88 0.24 0.41 +dégourdie dégourdi adj f s 0.28 0.88 0.02 0.14 +dégourdies dégourdi adj f p 0.28 0.88 0.01 0.14 +dégourdir dégourdir ver 1.65 3.31 1.40 2.43 inf; +dégourdira dégourdir ver 1.65 3.31 0.01 0.00 ind:fut:3s; +dégourdiraient dégourdir ver 1.65 3.31 0.00 0.07 cnd:pre:3p; +dégourdis dégourdir ver m p 1.65 3.31 0.07 0.14 ind:pre:1s;par:pas; +dégourdissais dégourdir ver 1.65 3.31 0.00 0.07 ind:imp:1s; +dégourdissait dégourdir ver 1.65 3.31 0.00 0.07 ind:imp:3s; +dégourdissant dégourdir ver 1.65 3.31 0.00 0.07 par:pre; +dégourdisse dégourdir ver 1.65 3.31 0.00 0.14 sub:pre:1s;sub:pre:3s; +dégourdissions dégourdir ver 1.65 3.31 0.00 0.07 ind:imp:1p; +dégourdit dégourdir ver 1.65 3.31 0.00 0.07 ind:pas:3s; +dégouttaient dégoutter ver 0.12 1.28 0.00 0.14 ind:imp:3p; +dégouttait dégoutter ver 0.12 1.28 0.10 0.54 ind:imp:3s; +dégouttant dégouttant adj m s 0.07 0.34 0.03 0.14 +dégouttante dégouttant adj f s 0.07 0.34 0.01 0.07 +dégouttantes dégouttant adj f p 0.07 0.34 0.03 0.00 +dégouttants dégouttant adj m p 0.07 0.34 0.00 0.14 +dégoutte dégoutter ver 0.12 1.28 0.01 0.07 ind:pre:1s;ind:pre:3s; +dégoutter dégoutter ver 0.12 1.28 0.00 0.14 inf; +dégrada dégrader ver 3.69 4.46 0.21 0.14 ind:pas:3s; +dégradable dégradable adj s 0.01 0.00 0.01 0.00 +dégradaient dégrader ver 3.69 4.46 0.11 0.20 ind:imp:3p; +dégradait dégrader ver 3.69 4.46 0.02 0.68 ind:imp:3s; +dégradant dégradant adj m s 1.67 1.08 1.13 0.20 +dégradante dégradant adj f s 1.67 1.08 0.15 0.47 +dégradantes dégradant adj f p 1.67 1.08 0.20 0.14 +dégradants dégradant adj m p 1.67 1.08 0.20 0.27 +dégradation dégradation nom f s 0.82 2.91 0.73 2.30 +dégradations dégradation nom f p 0.82 2.91 0.10 0.61 +dégrade dégrader ver 3.69 4.46 0.82 0.88 ind:pre:1s;ind:pre:3s; +dégradent dégrader ver 3.69 4.46 0.12 0.41 ind:pre:3p; +dégrader dégrader ver 3.69 4.46 1.00 0.54 inf; +dégrades dégrader ver 3.69 4.46 0.14 0.07 ind:pre:2s; +dégradez dégrader ver 3.69 4.46 0.03 0.00 imp:pre:2p;ind:pre:2p; +dégradé dégrader ver m s 3.69 4.46 0.93 0.47 par:pas; +dégradée dégradé adj f s 0.22 1.15 0.13 0.27 +dégradées dégrader ver f p 3.69 4.46 0.07 0.14 par:pas; +dégradés dégrader ver m p 3.69 4.46 0.04 0.14 par:pas; +dégrafa dégrafer ver 0.59 4.93 0.00 0.68 ind:pas:3s; +dégrafaient dégrafer ver 0.59 4.93 0.00 0.20 ind:imp:3p; +dégrafait dégrafer ver 0.59 4.93 0.00 0.61 ind:imp:3s; +dégrafant dégrafer ver 0.59 4.93 0.01 0.54 par:pre; +dégrafe dégrafer ver 0.59 4.93 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégrafer dégrafer ver 0.59 4.93 0.32 0.95 inf; +dégrafera dégrafer ver 0.59 4.93 0.00 0.07 ind:fut:3s; +dégraferait dégrafer ver 0.59 4.93 0.00 0.07 cnd:pre:3s; +dégrafeur dégrafeur nom m s 0.01 0.00 0.01 0.00 +dégrafez dégrafer ver 0.59 4.93 0.17 0.00 imp:pre:2p; +dégrafât dégrafer ver 0.59 4.93 0.00 0.07 sub:imp:3s; +dégrafé dégrafer ver m s 0.59 4.93 0.02 0.81 par:pas; +dégrafée dégrafer ver f s 0.59 4.93 0.01 0.27 par:pas; +dégrafées dégrafer ver f p 0.59 4.93 0.00 0.14 par:pas; +dégrafés dégrafer ver m p 0.59 4.93 0.00 0.07 par:pas; +dégraissage dégraissage nom m s 0.07 0.00 0.07 0.00 +dégraissant dégraisser ver 0.30 0.41 0.01 0.00 par:pre; +dégraissante dégraissant adj f s 0.01 0.00 0.01 0.00 +dégraisse dégraisser ver 0.30 0.41 0.04 0.14 imp:pre:2s;ind:pre:3s; +dégraissent dégraisser ver 0.30 0.41 0.03 0.00 ind:pre:3p; +dégraisser dégraisser ver 0.30 0.41 0.19 0.07 inf; +dégraissez dégraisser ver 0.30 0.41 0.00 0.07 imp:pre:2p; +dégraissé dégraisser ver m s 0.30 0.41 0.03 0.07 par:pas; +dégraissés dégraisser ver m p 0.30 0.41 0.00 0.07 par:pas; +dégressifs dégressif adj m p 0.01 0.00 0.01 0.00 +dégriffe dégriffer ver 0.03 0.14 0.00 0.07 ind:pre:3s; +dégriffer dégriffer ver 0.03 0.14 0.03 0.00 inf; +dégriffeur dégriffeur nom m s 0.00 0.27 0.00 0.27 +dégriffé dégriffé adj m s 0.02 0.07 0.02 0.00 +dégriffés dégriffé adj m p 0.02 0.07 0.00 0.07 +dégringola dégringoler ver 1.48 12.43 0.02 1.01 ind:pas:3s; +dégringolade dégringolade nom f s 0.13 1.89 0.13 1.82 +dégringolades dégringolade nom f p 0.13 1.89 0.00 0.07 +dégringolai dégringoler ver 1.48 12.43 0.00 0.20 ind:pas:1s; +dégringolaient dégringoler ver 1.48 12.43 0.00 0.54 ind:imp:3p; +dégringolait dégringoler ver 1.48 12.43 0.02 1.62 ind:imp:3s; +dégringolant dégringoler ver 1.48 12.43 0.14 0.74 par:pre; +dégringole dégringoler ver 1.48 12.43 0.58 2.16 ind:pre:1s;ind:pre:3s; +dégringolent dégringoler ver 1.48 12.43 0.05 0.95 ind:pre:3p; +dégringoler dégringoler ver 1.48 12.43 0.38 2.97 inf; +dégringoleraient dégringoler ver 1.48 12.43 0.00 0.07 cnd:pre:3p; +dégringolerais dégringoler ver 1.48 12.43 0.00 0.07 cnd:pre:1s; +dégringoleront dégringoler ver 1.48 12.43 0.00 0.07 ind:fut:3p; +dégringolions dégringoler ver 1.48 12.43 0.00 0.07 ind:imp:1p; +dégringolâmes dégringoler ver 1.48 12.43 0.01 0.07 ind:pas:1p; +dégringolèrent dégringoler ver 1.48 12.43 0.02 0.20 ind:pas:3p; +dégringolé dégringoler ver m s 1.48 12.43 0.26 1.35 par:pas; +dégringolée dégringoler ver f s 1.48 12.43 0.00 0.07 par:pas; +dégringolés dégringoler ver m p 1.48 12.43 0.00 0.27 par:pas; +dégripper dégripper ver 0.00 0.07 0.00 0.07 inf; +dégrisa dégriser ver 0.18 1.55 0.00 0.20 ind:pas:3s; +dégrisait dégriser ver 0.18 1.55 0.00 0.20 ind:imp:3s; +dégrise dégriser ver 0.18 1.55 0.03 0.00 imp:pre:2s;ind:pre:1s; +dégrisement dégrisement nom m s 0.16 0.20 0.16 0.20 +dégriser dégriser ver 0.18 1.55 0.06 0.07 inf; +dégrisât dégriser ver 0.18 1.55 0.00 0.07 sub:imp:3s; +dégrisé dégriser ver m s 0.18 1.55 0.08 0.74 par:pas; +dégrisée dégriser ver f s 0.18 1.55 0.01 0.14 par:pas; +dégrisés dégriser ver m p 0.18 1.55 0.00 0.14 par:pas; +dégrossi dégrossi adj m s 0.30 0.95 0.16 0.20 +dégrossie dégrossi adj f s 0.30 0.95 0.10 0.27 +dégrossies dégrossi adj f p 0.30 0.95 0.00 0.34 +dégrossir dégrossir ver 0.01 0.41 0.01 0.34 inf; +dégrossis dégrossi adj m p 0.30 0.95 0.04 0.14 +dégrossissage dégrossissage nom m s 0.01 0.07 0.01 0.07 +dégrossissant dégrossir ver 0.01 0.41 0.00 0.07 par:pre; +dégrouille dégrouiller ver 0.02 0.47 0.02 0.41 imp:pre:2s;ind:pre:3s; +dégrouiller dégrouiller ver 0.02 0.47 0.00 0.07 inf; +dégrène dégrèner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +dégrèvement dégrèvement nom m s 0.04 0.07 0.04 0.00 +dégrèvements dégrèvement nom m p 0.04 0.07 0.00 0.07 +dégrée dégréer ver 0.01 0.00 0.01 0.00 ind:pre:3s; +dégréner dégréner ver 0.00 0.07 0.00 0.07 inf; +dégèle dégeler ver 0.70 1.15 0.09 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégèlent dégeler ver 0.70 1.15 0.04 0.07 ind:pre:3p; +dégèlera dégeler ver 0.70 1.15 0.02 0.00 ind:fut:3s; +dégèlerait dégeler ver 0.70 1.15 0.01 0.00 cnd:pre:3s; +déguenillé déguenillé adj m s 0.16 0.27 0.01 0.07 +déguenillée déguenillé adj f s 0.16 0.27 0.13 0.00 +déguenillées déguenillé adj f p 0.16 0.27 0.01 0.00 +déguenillés déguenillé adj m p 0.16 0.27 0.01 0.20 +déguerpi déguerpir ver m s 3.75 2.43 0.46 0.41 par:pas; +déguerpir déguerpir ver 3.75 2.43 1.62 1.42 inf; +déguerpirent déguerpir ver 3.75 2.43 0.00 0.07 ind:pas:3p; +déguerpis déguerpir ver m p 3.75 2.43 0.65 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +déguerpisse déguerpir ver 3.75 2.43 0.03 0.14 sub:pre:1s;sub:pre:3s; +déguerpissent déguerpir ver 3.75 2.43 0.34 0.00 ind:pre:3p; +déguerpissez déguerpir ver 3.75 2.43 0.57 0.14 imp:pre:2p;ind:pre:2p; +déguerpissiez déguerpir ver 3.75 2.43 0.01 0.00 ind:imp:2p; +déguerpissons déguerpir ver 3.75 2.43 0.03 0.00 imp:pre:1p; +déguerpit déguerpir ver 3.75 2.43 0.04 0.14 ind:pre:3s;ind:pas:3s; +dégueu dégueu adj s 3.41 0.88 3.10 0.81 +dégueula dégueuler ver 2.36 3.65 0.00 0.07 ind:pas:3s; +dégueulais dégueuler ver 2.36 3.65 0.02 0.00 ind:imp:1s;ind:imp:2s; +dégueulait dégueuler ver 2.36 3.65 0.03 0.20 ind:imp:3s; +dégueulando dégueulando nom m s 0.00 0.20 0.00 0.20 +dégueulant dégueuler ver 2.36 3.65 0.04 0.00 par:pre; +dégueulasse dégueulasse adj s 19.98 17.30 18.80 14.53 +dégueulassement dégueulassement adv 0.01 0.14 0.01 0.14 +dégueulasser dégueulasser ver 0.34 1.01 0.04 0.34 inf; +dégueulasserie dégueulasserie nom f s 0.00 0.61 0.00 0.47 +dégueulasseries dégueulasserie nom f p 0.00 0.61 0.00 0.14 +dégueulasses dégueulasse adj p 19.98 17.30 1.18 2.77 +dégueulassé dégueulasser ver m s 0.34 1.01 0.11 0.07 par:pas; +dégueulassés dégueulasser ver m p 0.34 1.01 0.00 0.07 par:pas; +dégueule dégueuler ver 2.36 3.65 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégueulent dégueuler ver 2.36 3.65 0.04 0.20 ind:pre:3p; +dégueuler dégueuler ver 2.36 3.65 1.57 1.69 inf; +dégueulera dégueuler ver 2.36 3.65 0.00 0.07 ind:fut:3s; +dégueules dégueuler ver 2.36 3.65 0.01 0.00 ind:pre:2s; +dégueulez dégueuler ver 2.36 3.65 0.01 0.07 ind:pre:2p; +dégueulis dégueulis nom m 0.31 1.15 0.31 1.15 +dégueulé dégueuler ver m s 2.36 3.65 0.24 0.61 par:pas; +dégueulées dégueuler ver f p 2.36 3.65 0.00 0.07 par:pas; +dégueus dégueu adj m p 3.41 0.88 0.31 0.07 +déguisa déguiser ver 14.89 16.96 0.00 0.34 ind:pas:3s; +déguisaient déguiser ver 14.89 16.96 0.02 0.41 ind:imp:3p; +déguisais déguiser ver 14.89 16.96 0.17 0.34 ind:imp:1s;ind:imp:2s; +déguisait déguiser ver 14.89 16.96 0.45 1.42 ind:imp:3s; +déguisant déguiser ver 14.89 16.96 0.17 0.20 par:pre; +déguise déguiser ver 14.89 16.96 0.97 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déguisement déguisement nom m s 4.98 5.07 3.93 3.65 +déguisements déguisement nom m p 4.98 5.07 1.05 1.42 +déguisent déguiser ver 14.89 16.96 0.34 0.20 ind:pre:3p; +déguiser déguiser ver 14.89 16.96 3.34 2.50 inf; +déguisera déguiser ver 14.89 16.96 0.05 0.14 ind:fut:3s; +déguiserai déguiser ver 14.89 16.96 0.12 0.00 ind:fut:1s; +déguiserais déguiser ver 14.89 16.96 0.02 0.07 cnd:pre:1s; +déguiserait déguiser ver 14.89 16.96 0.03 0.00 cnd:pre:3s; +déguises déguiser ver 14.89 16.96 0.35 0.14 ind:pre:2s; +déguisez déguiser ver 14.89 16.96 0.33 0.14 imp:pre:2p;ind:pre:2p; +déguisiez déguiser ver 14.89 16.96 0.01 0.07 ind:imp:2p; +déguisions déguiser ver 14.89 16.96 0.01 0.07 ind:imp:1p; +déguisé déguiser ver m s 14.89 16.96 5.48 4.66 par:pas; +déguisée déguiser ver f s 14.89 16.96 1.55 2.50 par:pas; +déguisées déguiser ver f p 14.89 16.96 0.12 0.81 par:pas; +déguisés déguiser ver m p 14.89 16.96 1.34 1.49 par:pas; +dégénère dégénérer ver 2.95 2.30 1.26 0.47 imp:pre:2s;ind:pre:3s; +dégénèrent dégénérer ver 2.95 2.30 0.03 0.14 ind:pre:3p; +dégénéra dégénérer ver 2.95 2.30 0.02 0.20 ind:pas:3s; +dégénéraient dégénérer ver 2.95 2.30 0.00 0.14 ind:imp:3p; +dégénérait dégénérer ver 2.95 2.30 0.03 0.14 ind:imp:3s; +dégénérant dégénérer ver 2.95 2.30 0.01 0.07 par:pre; +dégénératif dégénératif adj m s 0.28 0.00 0.05 0.00 +dégénération dégénération nom f s 0.10 0.00 0.10 0.00 +dégénérative dégénératif adj f s 0.28 0.00 0.23 0.00 +dégénérer dégénérer ver 2.95 2.30 0.86 0.61 inf; +dégénérescence dégénérescence nom f s 1.22 1.15 1.22 1.08 +dégénérescences dégénérescence nom f p 1.22 1.15 0.00 0.07 +dégénérât dégénérer ver 2.95 2.30 0.00 0.14 sub:imp:3s; +dégénéré dégénéré nom m s 2.16 0.74 1.36 0.41 +dégénérée dégénéré adj f s 1.77 1.35 0.14 0.27 +dégénérées dégénéré adj f p 1.77 1.35 0.03 0.14 +dégénérés dégénéré nom m p 2.16 0.74 0.77 0.27 +dégurgitant dégurgiter ver 0.00 0.07 0.00 0.07 par:pre; +dégusta déguster ver 2.96 11.96 0.00 0.27 ind:pas:3s; +dégustai déguster ver 2.96 11.96 0.00 0.14 ind:pas:1s; +dégustaient déguster ver 2.96 11.96 0.02 0.41 ind:imp:3p; +dégustais déguster ver 2.96 11.96 0.01 0.54 ind:imp:1s;ind:imp:2s; +dégustait déguster ver 2.96 11.96 0.01 0.95 ind:imp:3s; +dégustant déguster ver 2.96 11.96 0.21 0.88 par:pre; +dégustateur dégustateur nom m s 0.12 0.20 0.02 0.14 +dégustateurs dégustateur nom m p 0.12 0.20 0.00 0.07 +dégustation dégustation nom f s 1.01 1.82 0.84 1.76 +dégustations dégustation nom f p 1.01 1.82 0.17 0.07 +dégustatrice dégustateur nom f s 0.12 0.20 0.10 0.00 +déguste déguster ver 2.96 11.96 0.53 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégustent déguster ver 2.96 11.96 0.03 0.27 ind:pre:3p; +déguster déguster ver 2.96 11.96 1.84 3.92 inf; +dégustera déguster ver 2.96 11.96 0.02 0.00 ind:fut:3s; +dégusteras déguster ver 2.96 11.96 0.00 0.07 ind:fut:2s; +dégusterons déguster ver 2.96 11.96 0.01 0.00 ind:fut:1p; +dégustez déguster ver 2.96 11.96 0.04 0.14 imp:pre:2p;ind:pre:2p; +dégustâmes déguster ver 2.96 11.96 0.00 0.07 ind:pas:1p; +dégustons déguster ver 2.96 11.96 0.02 0.14 imp:pre:1p;ind:pre:1p; +dégustèrent déguster ver 2.96 11.96 0.00 0.14 ind:pas:3p; +dégusté déguster ver m s 2.96 11.96 0.23 1.69 par:pas; +dégustée déguster ver f s 2.96 11.96 0.01 0.41 par:pas; +dégustées déguster ver f p 2.96 11.96 0.00 0.14 par:pas; +dégustés déguster ver m p 2.96 11.96 0.00 0.07 par:pas; +déhale déhaler ver 0.00 0.27 0.00 0.07 ind:pre:3s; +déhaler déhaler ver 0.00 0.27 0.00 0.07 inf; +déhalées déhaler ver f p 0.00 0.27 0.00 0.14 par:pas; +déhancha déhancher ver 0.67 1.76 0.00 0.07 ind:pas:3s; +déhanchaient déhancher ver 0.67 1.76 0.01 0.27 ind:imp:3p; +déhanchait déhancher ver 0.67 1.76 0.00 0.41 ind:imp:3s; +déhanchant déhancher ver 0.67 1.76 0.03 0.14 par:pre; +déhanche déhancher ver 0.67 1.76 0.47 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déhanchement déhanchement nom m s 0.05 1.76 0.04 1.08 +déhanchements déhanchement nom m p 0.05 1.76 0.01 0.68 +déhanchent déhancher ver 0.67 1.76 0.05 0.07 ind:pre:3p; +déhancher déhancher ver 0.67 1.76 0.09 0.07 inf; +déhanchez déhancher ver 0.67 1.76 0.02 0.00 imp:pre:2p; +déhanché déhanché adj m s 0.19 0.74 0.19 0.20 +déhanchée déhanché adj f s 0.19 0.74 0.00 0.41 +déhanchées déhancher ver f p 0.67 1.76 0.00 0.07 par:pas; +déhanchés déhanché adj m p 0.19 0.74 0.00 0.07 +déharnacha déharnacher ver 0.00 0.14 0.00 0.07 ind:pas:3s; +déharnachées déharnacher ver f p 0.00 0.14 0.00 0.07 par:pas; +déhiscence déhiscence nom f s 0.02 0.14 0.02 0.14 +déhotte déhotter ver 0.00 0.68 0.00 0.20 ind:pre:1s;ind:pre:3s; +déhotter déhotter ver 0.00 0.68 0.00 0.20 inf; +déhotté déhotter ver m s 0.00 0.68 0.00 0.20 par:pas; +déhottée déhotter ver f s 0.00 0.68 0.00 0.07 par:pas; +déicide déicide adj m s 0.00 0.14 0.00 0.07 +déicides déicide adj m p 0.00 0.14 0.00 0.07 +déifia déifier ver 0.07 0.34 0.00 0.07 ind:pas:3s; +déification déification nom f s 0.00 0.07 0.00 0.07 +déifier déifier ver 0.07 0.34 0.00 0.14 inf; +déifié déifier ver m s 0.07 0.34 0.04 0.14 par:pas; +déifiés déifier ver m p 0.07 0.34 0.02 0.00 par:pas; +déisme déisme nom m s 0.10 0.00 0.10 0.00 +duit duit nom m s 0.00 0.07 0.00 0.07 +déité déité nom f s 0.12 0.20 0.02 0.00 +déités déité nom f p 0.12 0.20 0.10 0.20 +déjanta déjanter ver 0.86 0.54 0.00 0.07 ind:pas:3s; +déjantait déjanter ver 0.86 0.54 0.01 0.07 ind:imp:3s; +déjante déjanter ver 0.86 0.54 0.09 0.14 ind:pre:1s;ind:pre:3s; +déjantent déjanter ver 0.86 0.54 0.01 0.00 ind:pre:3p; +déjanter déjanter ver 0.86 0.54 0.09 0.14 inf; +déjanterais déjanter ver 0.86 0.54 0.01 0.00 cnd:pre:1s; +déjantes déjanter ver 0.86 0.54 0.20 0.07 ind:pre:2s; +déjanté déjanté adj s 0.58 0.20 0.43 0.20 +déjantée déjanter ver f s 0.86 0.54 0.21 0.07 par:pas; +déjantés déjanté adj m p 0.58 0.20 0.15 0.00 +déjaugeant déjauger ver 0.00 0.07 0.00 0.07 par:pre; +déjection déjection nom f s 0.16 2.36 0.00 0.27 +déjections déjection nom f p 0.16 2.36 0.16 2.09 +déjetait déjeter ver 0.00 0.41 0.00 0.14 ind:imp:3s; +déjeté déjeté adj m s 0.00 0.47 0.00 0.41 +déjetée déjeter ver f s 0.00 0.41 0.00 0.20 par:pas; +déjetés déjeté adj m p 0.00 0.47 0.00 0.07 +déjeuna déjeuner ver 35.43 36.01 0.01 0.54 ind:pas:3s; +déjeunai déjeuner ver 35.43 36.01 0.01 0.47 ind:pas:1s; +déjeunaient déjeuner ver 35.43 36.01 0.03 0.88 ind:imp:3p; +déjeunais déjeuner ver 35.43 36.01 0.39 0.74 ind:imp:1s;ind:imp:2s; +déjeunait déjeuner ver 35.43 36.01 0.65 1.89 ind:imp:3s; +déjeunant déjeuner ver 35.43 36.01 0.31 0.68 par:pre; +déjeune déjeuner ver 35.43 36.01 5.34 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déjeunent déjeuner ver 35.43 36.01 0.20 0.20 ind:pre:3p; +déjeuner déjeuner nom m s 51.34 59.66 50.32 56.01 +déjeunera déjeuner ver 35.43 36.01 0.46 0.34 ind:fut:3s; +déjeunerai déjeuner ver 35.43 36.01 0.20 0.27 ind:fut:1s; +déjeuneraient déjeuner ver 35.43 36.01 0.00 0.14 cnd:pre:3p; +déjeunerait déjeuner ver 35.43 36.01 0.02 0.20 cnd:pre:3s; +déjeuneras déjeuner ver 35.43 36.01 0.02 0.14 ind:fut:2s; +déjeunerez déjeuner ver 35.43 36.01 0.09 0.07 ind:fut:2p; +déjeunerions déjeuner ver 35.43 36.01 0.00 0.14 cnd:pre:1p; +déjeunerons déjeuner ver 35.43 36.01 0.06 0.20 ind:fut:1p; +déjeuners déjeuner nom m p 51.34 59.66 1.02 3.65 +déjeunes déjeuner ver 35.43 36.01 1.23 0.20 ind:pre:2s;sub:pre:2s; +déjeunez déjeuner ver 35.43 36.01 0.63 0.41 imp:pre:2p;ind:pre:2p; +déjeuniez déjeuner ver 35.43 36.01 0.06 0.07 ind:imp:2p; +déjeunions déjeuner ver 35.43 36.01 0.06 1.62 ind:imp:1p; +déjeunâmes déjeuner ver 35.43 36.01 0.00 0.27 ind:pas:1p; +déjeunons déjeuner ver 35.43 36.01 0.93 0.81 imp:pre:1p;ind:pre:1p; +déjeunât déjeuner ver 35.43 36.01 0.00 0.07 sub:imp:3s; +déjeunèrent déjeuner ver 35.43 36.01 0.00 0.95 ind:pas:3p; +déjeuné déjeuner ver m s 35.43 36.01 4.75 4.73 par:pas; +déjà_vu déjà_vu nom m 0.01 0.34 0.01 0.34 +déjà déjà ono 10.84 3.31 10.84 3.31 +déjoua déjouer ver 3.58 4.39 0.01 0.07 ind:pas:3s; +déjouait déjouer ver 3.58 4.39 0.00 0.07 ind:imp:3s; +déjouant déjouer ver 3.58 4.39 0.16 0.20 par:pre; +déjoue déjouer ver 3.58 4.39 0.40 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déjouent déjouer ver 3.58 4.39 0.01 0.07 ind:pre:3p; +déjouer déjouer ver 3.58 4.39 1.80 2.36 inf; +déjouerai déjouer ver 3.58 4.39 0.02 0.00 ind:fut:1s; +déjouerez déjouer ver 3.58 4.39 0.01 0.00 ind:fut:2p; +déjouerions déjouer ver 3.58 4.39 0.00 0.07 cnd:pre:1p; +déjouez déjouer ver 3.58 4.39 0.01 0.07 imp:pre:2p;ind:pre:2p; +déjouons déjouer ver 3.58 4.39 0.10 0.00 imp:pre:1p; +déjoué déjouer ver m s 3.58 4.39 0.99 0.61 par:pas; +déjouée déjouer ver f s 3.58 4.39 0.03 0.20 par:pas; +déjouées déjouer ver f p 3.58 4.39 0.00 0.20 par:pas; +déjoués déjouer ver m p 3.58 4.39 0.04 0.00 par:pas; +déjuchaient déjucher ver 0.00 0.07 0.00 0.07 ind:imp:3p; +déjuger déjuger ver 0.02 0.07 0.02 0.00 inf; +déjugé déjuger ver m s 0.02 0.07 0.00 0.07 par:pas; +dékoulakisation dékoulakisation nom f s 0.00 0.07 0.00 0.07 +délabre délabrer ver 0.37 1.49 0.02 0.07 ind:pre:1s;ind:pre:3s; +délabrement délabrement nom m s 0.05 1.62 0.05 1.62 +délabrer délabrer ver 0.37 1.49 0.03 0.07 inf; +délabré délabrer ver m s 0.37 1.49 0.24 0.68 par:pas; +délabrée délabré adj f s 0.50 4.59 0.22 1.55 +délabrées délabré ver f p 0.14 0.00 0.14 0.00 par:pas; +délabrés délabré adj m p 0.50 4.59 0.05 0.41 +délabyrinthez délabyrinther ver 0.01 0.00 0.01 0.00 imp:pre:2p; +délace délacer ver 0.04 1.22 0.01 0.20 imp:pre:2s;ind:pre:3s; +délacer délacer ver 0.04 1.22 0.00 0.14 inf; +délacèrent délacer ver 0.04 1.22 0.00 0.07 ind:pas:3p; +délacé délacer ver m s 0.04 1.22 0.02 0.20 par:pas; +délacées délacer ver f p 0.04 1.22 0.01 0.07 par:pas; +délai délai nom m s 11.04 18.85 8.94 14.59 +délaie délayer ver 0.06 2.84 0.03 0.07 ind:pre:3s; +délais délai nom m p 11.04 18.85 2.10 4.26 +délaissa délaisser ver 2.30 7.77 0.10 0.68 ind:pas:3s; +délaissaient délaisser ver 2.30 7.77 0.02 0.27 ind:imp:3p; +délaissais délaisser ver 2.30 7.77 0.11 0.14 ind:imp:1s;ind:imp:2s; +délaissait délaisser ver 2.30 7.77 0.17 0.41 ind:imp:3s; +délaissant délaisser ver 2.30 7.77 0.25 1.76 par:pre; +délaisse délaisser ver 2.30 7.77 0.61 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délaissement délaissement nom m s 0.00 0.68 0.00 0.61 +délaissements délaissement nom m p 0.00 0.68 0.00 0.07 +délaissent délaisser ver 2.30 7.77 0.01 0.14 ind:pre:3p; +délaisser délaisser ver 2.30 7.77 0.28 1.01 inf; +délaisserait délaisser ver 2.30 7.77 0.01 0.07 cnd:pre:3s; +délaisses délaisser ver 2.30 7.77 0.03 0.07 ind:pre:2s; +délaissions délaisser ver 2.30 7.77 0.00 0.20 ind:imp:1p; +délaissèrent délaisser ver 2.30 7.77 0.00 0.14 ind:pas:3p; +délaissé délaisser ver m s 2.30 7.77 0.50 1.28 par:pas; +délaissée délaissé adj f s 0.56 2.64 0.19 1.42 +délaissées délaissé adj f p 0.56 2.64 0.15 0.20 +délaissés délaissé adj m p 0.56 2.64 0.14 0.41 +délaita délaiter ver 0.00 0.27 0.00 0.07 ind:pas:3s; +délaite délaiter ver 0.00 0.27 0.00 0.20 ind:pre:3s; +délardant délarder ver 0.00 0.07 0.00 0.07 par:pre; +délassa délasser ver 0.20 1.42 0.00 0.07 ind:pas:3s; +délassait délasser ver 0.20 1.42 0.01 0.14 ind:imp:3s; +délassant délassant adj m s 0.02 0.20 0.02 0.07 +délassante délassant adj f s 0.02 0.20 0.00 0.14 +délasse délasser ver 0.20 1.42 0.14 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délassement délassement nom m s 0.16 0.47 0.16 0.47 +délasser délasser ver 0.20 1.42 0.04 0.54 inf; +délassera délasser ver 0.20 1.42 0.01 0.07 ind:fut:3s; +délasseront délasser ver 0.20 1.42 0.00 0.14 ind:fut:3p; +délassés délasser ver m p 0.20 1.42 0.00 0.07 par:pas; +délateur délateur nom m s 0.36 0.88 0.20 0.34 +délateurs délateur nom m p 0.36 0.88 0.17 0.47 +délaça délacer ver 0.04 1.22 0.00 0.14 ind:pas:3s; +délaçais délacer ver 0.04 1.22 0.00 0.07 ind:imp:1s; +délaçait délacer ver 0.04 1.22 0.00 0.20 ind:imp:3s; +délaçant délacer ver 0.04 1.22 0.00 0.14 par:pre; +délation délation nom f s 0.26 1.55 0.26 1.28 +délations délation nom f p 0.26 1.55 0.00 0.27 +délatrice délateur nom f s 0.36 0.88 0.00 0.07 +délavait délaver ver 0.04 2.23 0.00 0.07 ind:imp:3s; +délavant délaver ver 0.04 2.23 0.00 0.07 par:pre; +délave délaver ver 0.04 2.23 0.00 0.07 ind:pre:3s; +délavent délaver ver 0.04 2.23 0.00 0.07 ind:pre:3p; +délaver délaver ver 0.04 2.23 0.00 0.07 inf; +délavé délavé adj m s 0.39 4.86 0.23 2.36 +délavée délavé adj f s 0.39 4.86 0.01 0.74 +délavées délavé adj f p 0.39 4.86 0.14 0.54 +délavés délavé adj m p 0.39 4.86 0.01 1.22 +délaya délayer ver 0.06 2.84 0.00 0.14 ind:pas:3s; +délayage délayage nom m s 0.01 0.20 0.01 0.20 +délayait délayer ver 0.06 2.84 0.00 0.14 ind:imp:3s; +délayant délayer ver 0.06 2.84 0.00 0.41 par:pre; +délaye délayer ver 0.06 2.84 0.00 0.27 ind:pre:3s; +délayent délayer ver 0.06 2.84 0.00 0.07 ind:pre:3p; +délayer délayer ver 0.06 2.84 0.03 0.47 inf; +délayé délayer ver m s 0.06 2.84 0.00 0.54 par:pas; +délayée délayé adj f s 0.01 0.20 0.01 0.14 +délayés délayer ver m p 0.06 2.84 0.00 0.34 par:pas; +dulcifiant dulcifier ver 0.00 0.14 0.00 0.14 par:pre; +dulcinée dulcinée nom f s 0.42 0.47 0.42 0.47 +délectable délectable adj s 0.70 2.16 0.56 1.55 +délectables délectable adj p 0.70 2.16 0.14 0.61 +délectai délecter ver 0.85 3.58 0.00 0.07 ind:pas:1s; +délectaient délecter ver 0.85 3.58 0.01 0.14 ind:imp:3p; +délectais délecter ver 0.85 3.58 0.03 0.14 ind:imp:1s; +délectait délecter ver 0.85 3.58 0.03 1.42 ind:imp:3s; +délectant délecter ver 0.85 3.58 0.02 0.14 par:pre; +délectation délectation nom f s 0.07 3.38 0.07 3.24 +délectations délectation nom f p 0.07 3.38 0.00 0.14 +délecte délecter ver 0.85 3.58 0.21 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délectent délecter ver 0.85 3.58 0.16 0.14 ind:pre:3p; +délecter délecter ver 0.85 3.58 0.21 0.47 inf; +délectes délecter ver 0.85 3.58 0.03 0.07 ind:pre:2s; +délectez délecter ver 0.85 3.58 0.01 0.00 ind:pre:2p; +délections délecter ver 0.85 3.58 0.00 0.07 ind:imp:1p; +délectât délecter ver 0.85 3.58 0.00 0.07 sub:imp:3s; +délecté délecter ver m s 0.85 3.58 0.14 0.20 par:pas; +délestage délestage nom m s 0.02 0.14 0.02 0.14 +délestant délester ver 0.35 3.04 0.10 0.07 par:pre; +déleste délester ver 0.35 3.04 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délester délester ver 0.35 3.04 0.15 0.54 inf; +délestons délester ver 0.35 3.04 0.01 0.00 imp:pre:1p; +délestèrent délester ver 0.35 3.04 0.00 0.07 ind:pas:3p; +délesté délester ver m s 0.35 3.04 0.05 1.15 par:pas; +délestée délester ver f s 0.35 3.04 0.02 0.61 par:pas; +délestées délester ver f p 0.35 3.04 0.00 0.14 par:pas; +délestés délester ver m p 0.35 3.04 0.00 0.34 par:pas; +délia délier ver 2.55 4.86 0.88 0.27 ind:pas:3s; +déliaient délier ver 2.55 4.86 0.00 0.14 ind:imp:3p; +déliait délier ver 2.55 4.86 0.01 0.41 ind:imp:3s; +déliant délier ver 2.55 4.86 0.00 0.27 par:pre; +délibère délibérer ver 2.44 3.78 0.27 0.07 ind:pre:1s;ind:pre:3s; +délibèrent délibérer ver 2.44 3.78 0.04 0.14 ind:pre:3p; +délibéra délibérer ver 2.44 3.78 0.02 0.07 ind:pas:3s; +délibéraient délibérer ver 2.44 3.78 0.00 0.14 ind:imp:3p; +délibérait délibérer ver 2.44 3.78 0.00 0.27 ind:imp:3s; +délibérant délibérer ver 2.44 3.78 0.00 0.07 par:pre; +délibération délibération nom f s 1.17 1.89 0.69 0.81 +délibérations délibération nom f p 1.17 1.89 0.48 1.08 +délibérative délibératif adj f s 0.00 0.14 0.00 0.14 +délibératoire délibératoire adj s 0.01 0.00 0.01 0.00 +délibérer délibérer ver 2.44 3.78 0.74 0.81 inf; +délibérera délibérer ver 2.44 3.78 0.04 0.07 ind:fut:3s; +délibéreraient délibérer ver 2.44 3.78 0.00 0.14 cnd:pre:3p; +délibérions délibérer ver 2.44 3.78 0.00 0.07 ind:imp:1p; +délibérèrent délibérer ver 2.44 3.78 0.00 0.07 ind:pas:3p; +délibéré délibérer ver m s 2.44 3.78 1.18 0.74 par:pas; +délibérée délibéré adj f s 0.76 2.70 0.19 1.08 +délibérées délibéré adj f p 0.76 2.70 0.01 0.20 +délibérément délibérément adv 3.11 5.47 3.11 5.47 +délibérés délibéré adj m p 0.76 2.70 0.04 0.07 +délicat délicat adj m s 22.52 37.03 9.60 13.72 +délicate délicat adj f s 22.52 37.03 9.26 12.50 +délicatement délicatement adv 1.48 10.34 1.48 10.34 +délicates délicat adj f p 22.52 37.03 2.31 5.27 +délicatesse délicatesse nom f s 3.37 13.58 3.34 11.96 +délicatesses délicatesse nom f p 3.37 13.58 0.02 1.62 +délicats délicat adj m p 22.52 37.03 1.35 5.54 +délice délice nom m s 6.17 19.73 3.75 4.26 +délices délice nom f p 6.17 19.73 2.42 15.47 +délicieuse délicieux adj f s 29.22 28.65 6.56 10.74 +délicieusement délicieusement adv 0.52 5.27 0.52 5.27 +délicieuses délicieux adj f p 29.22 28.65 2.04 2.84 +délicieux délicieux adj m 29.22 28.65 20.62 15.07 +délictuelle délictuel adj f s 0.01 0.00 0.01 0.00 +délictueuse délictueux adj f s 0.12 0.41 0.09 0.00 +délictueuses délictueux adj f p 0.12 0.41 0.00 0.34 +délictueux délictueux adj m 0.12 0.41 0.03 0.07 +délie délier ver 2.55 4.86 0.68 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délient délier ver 2.55 4.86 0.04 0.07 ind:pre:3p; +délier délier ver 2.55 4.86 0.23 1.22 inf; +délieraient délier ver 2.55 4.86 0.01 0.07 cnd:pre:3p; +délieras délier ver 2.55 4.86 0.14 0.07 ind:fut:2s; +déliez délier ver 2.55 4.86 0.17 0.00 imp:pre:2p;ind:pre:2p; +délimitaient délimiter ver 0.38 5.54 0.00 0.74 ind:imp:3p; +délimitais délimiter ver 0.38 5.54 0.00 0.07 ind:imp:1s; +délimitait délimiter ver 0.38 5.54 0.00 0.41 ind:imp:3s; +délimitant délimiter ver 0.38 5.54 0.01 0.61 par:pre; +délimitation délimitation nom f s 0.00 0.34 0.00 0.27 +délimitations délimitation nom f p 0.00 0.34 0.00 0.07 +délimite délimiter ver 0.38 5.54 0.14 0.20 imp:pre:2s;ind:pre:3s; +délimitent délimiter ver 0.38 5.54 0.02 0.47 ind:pre:3p; +délimiter délimiter ver 0.38 5.54 0.07 0.41 inf; +délimitez délimiter ver 0.38 5.54 0.03 0.00 imp:pre:2p;ind:pre:2p; +délimitions délimiter ver 0.38 5.54 0.00 0.07 ind:imp:1p; +délimitons délimiter ver 0.38 5.54 0.01 0.00 ind:pre:1p; +délimité délimiter ver m s 0.38 5.54 0.03 1.15 par:pas; +délimitée délimiter ver f s 0.38 5.54 0.05 0.68 par:pas; +délimitées délimiter ver f p 0.38 5.54 0.00 0.41 par:pas; +délimités délimiter ver m p 0.38 5.54 0.01 0.34 par:pas; +délinquance délinquance nom f s 1.54 1.42 1.54 1.35 +délinquances délinquance nom f p 1.54 1.42 0.00 0.07 +délinquant délinquant nom m s 4.16 1.89 1.97 0.88 +délinquante délinquant adj f s 0.86 0.61 0.15 0.27 +délinquantes délinquant nom f p 4.16 1.89 0.03 0.07 +délinquants délinquant nom m p 4.16 1.89 2.07 0.81 +délinéaments délinéament nom m p 0.00 0.07 0.00 0.07 +déliquescence déliquescence nom f s 0.16 0.14 0.16 0.14 +déliquescent déliquescent adj m s 0.02 0.41 0.02 0.07 +déliquescente déliquescent adj f s 0.02 0.41 0.00 0.27 +déliquescents déliquescent adj m p 0.02 0.41 0.00 0.07 +délira délirer ver 13.73 7.23 0.02 0.07 ind:pas:3s; +délirai délirer ver 13.73 7.23 0.00 0.07 ind:pas:1s; +déliraient délirer ver 13.73 7.23 0.01 0.20 ind:imp:3p; +délirais délirer ver 13.73 7.23 0.44 0.47 ind:imp:1s;ind:imp:2s; +délirait délirer ver 13.73 7.23 1.17 1.08 ind:imp:3s; +délirant délirant adj m s 3.05 5.61 1.36 1.28 +délirante délirant adj f s 3.05 5.61 0.83 2.30 +délirantes délirant adj f p 3.05 5.61 0.11 0.95 +délirants délirant adj m p 3.05 5.61 0.75 1.08 +délirassent délirer ver 13.73 7.23 0.00 0.07 sub:imp:3p; +délire délire nom m s 13.20 19.80 10.93 16.62 +délirent délirer ver 13.73 7.23 0.17 0.07 ind:pre:3p; +délirer délirer ver 13.73 7.23 1.94 2.23 inf; +délireras délirer ver 13.73 7.23 0.01 0.00 ind:fut:2s; +délires délirer ver 13.73 7.23 4.81 0.27 ind:pre:2s; +délirez délirer ver 13.73 7.23 0.94 0.27 imp:pre:2p;ind:pre:2p; +déliriez délirer ver 13.73 7.23 0.11 0.00 ind:imp:2p; +déliré délirer ver m s 13.73 7.23 0.45 0.27 par:pas; +délit délit nom m s 13.52 7.97 11.35 6.35 +délitaient déliter ver 0.11 0.68 0.00 0.07 ind:imp:3p; +délite déliter ver 0.11 0.68 0.01 0.20 ind:pre:3s; +délitent déliter ver 0.11 0.68 0.00 0.14 ind:pre:3p; +déliteront déliter ver 0.11 0.68 0.00 0.07 ind:fut:3p; +délièrent délier ver 2.55 4.86 0.00 0.07 ind:pas:3p; +délits délit nom m p 13.52 7.97 2.17 1.62 +délité déliter ver m s 0.11 0.68 0.10 0.00 par:pas; +délitée déliter ver f s 0.11 0.68 0.00 0.07 par:pas; +délitées déliter ver f p 0.11 0.68 0.00 0.14 par:pas; +délié délier ver m s 2.55 4.86 0.14 0.41 par:pas; +déliée délier ver f s 2.55 4.86 0.12 0.68 par:pas; +déliées délié adj f p 0.04 2.36 0.01 0.68 +déliés délier ver m p 2.55 4.86 0.14 0.34 par:pas; +délivra délivrer ver 14.45 31.15 0.00 0.74 ind:pas:3s; +délivraient délivrer ver 14.45 31.15 0.03 0.61 ind:imp:3p; +délivrais délivrer ver 14.45 31.15 0.01 0.07 ind:imp:1s; +délivrait délivrer ver 14.45 31.15 0.01 2.50 ind:imp:3s; +délivrance délivrance nom f s 1.94 5.74 1.94 5.68 +délivrances délivrance nom f p 1.94 5.74 0.00 0.07 +délivrant délivrer ver 14.45 31.15 0.04 0.20 par:pre; +délivre délivrer ver 14.45 31.15 4.37 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délivrent délivrer ver 14.45 31.15 0.25 0.68 ind:pre:3p; +délivrer délivrer ver 14.45 31.15 4.76 7.91 ind:pre:2p;inf; +délivrera délivrer ver 14.45 31.15 0.60 0.68 ind:fut:3s; +délivrerai délivrer ver 14.45 31.15 0.46 0.00 ind:fut:1s; +délivreraient délivrer ver 14.45 31.15 0.00 0.07 cnd:pre:3p; +délivrerais délivrer ver 14.45 31.15 0.01 0.00 cnd:pre:1s; +délivrerait délivrer ver 14.45 31.15 0.05 1.08 cnd:pre:3s; +délivreras délivrer ver 14.45 31.15 0.12 0.00 ind:fut:2s; +délivrerez délivrer ver 14.45 31.15 0.01 0.00 ind:fut:2p; +délivrerons délivrer ver 14.45 31.15 0.00 0.07 ind:fut:1p; +délivreront délivrer ver 14.45 31.15 0.03 0.00 ind:fut:3p; +délivreurs délivreur nom m p 0.00 0.07 0.00 0.07 +délivrez délivrer ver 14.45 31.15 0.94 0.41 imp:pre:2p;ind:pre:2p; +délivriez délivrer ver 14.45 31.15 0.02 0.00 ind:imp:2p; +délivrions délivrer ver 14.45 31.15 0.01 0.00 ind:imp:1p; +délivrons délivrer ver 14.45 31.15 0.16 0.00 imp:pre:1p;ind:pre:1p; +délivrât délivrer ver 14.45 31.15 0.00 0.14 sub:imp:3s; +délivrèrent délivrer ver 14.45 31.15 0.00 0.07 ind:pas:3p; +délivré délivrer ver m s 14.45 31.15 1.14 7.97 par:pas; +délivrée délivrer ver f s 14.45 31.15 0.52 3.99 par:pas; +délivrées délivrer ver f p 14.45 31.15 0.07 0.34 par:pas; +délivrés délivrer ver m p 14.45 31.15 0.84 1.49 par:pas; +délocalisation délocalisation nom f s 0.06 0.00 0.06 0.00 +délocaliser délocaliser ver 0.09 0.00 0.06 0.00 inf; +délocalisez délocaliser ver 0.09 0.00 0.01 0.00 imp:pre:2p; +délocalisé délocaliser ver m s 0.09 0.00 0.02 0.00 par:pas; +déloge déloger ver 1.94 3.45 0.18 0.14 imp:pre:2s;ind:pre:3s; +délogea déloger ver 1.94 3.45 0.00 0.14 ind:pas:3s; +délogeait déloger ver 1.94 3.45 0.00 0.14 ind:imp:3s; +délogeât déloger ver 1.94 3.45 0.00 0.14 sub:imp:3s; +déloger déloger ver 1.94 3.45 1.17 1.89 inf; +délogera déloger ver 1.94 3.45 0.02 0.14 ind:fut:3s; +délogerait déloger ver 1.94 3.45 0.02 0.00 cnd:pre:3s; +délogerons déloger ver 1.94 3.45 0.00 0.07 ind:fut:1p; +délogez déloger ver 1.94 3.45 0.05 0.00 imp:pre:2p; +délogé déloger ver m s 1.94 3.45 0.20 0.34 par:pas; +délogée déloger ver f s 1.94 3.45 0.01 0.27 par:pas; +délogés déloger ver m p 1.94 3.45 0.29 0.20 par:pas; +déloquaient déloquer ver 0.05 1.69 0.00 0.07 ind:imp:3p; +déloque déloquer ver 0.05 1.69 0.01 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déloquer déloquer ver 0.05 1.69 0.04 0.54 inf; +déloques déloquer ver 0.05 1.69 0.00 0.14 ind:pre:2s; +déloqué déloquer ver m s 0.05 1.69 0.00 0.07 par:pas; +déloquées déloquer ver f p 0.05 1.69 0.00 0.07 par:pas; +déloqués déloquer ver m p 0.05 1.69 0.00 0.07 par:pas; +délourdant délourder ver 0.00 0.20 0.00 0.07 par:pre; +délourder délourder ver 0.00 0.20 0.00 0.14 inf; +déloyal déloyal adj m s 1.41 0.54 0.81 0.47 +déloyale déloyal adj f s 1.41 0.54 0.54 0.07 +déloyalement déloyalement adv 0.02 0.14 0.02 0.14 +déloyauté déloyauté nom f s 0.26 0.34 0.26 0.27 +déloyautés déloyauté nom f p 0.26 0.34 0.00 0.07 +déloyaux déloyal adj m p 1.41 0.54 0.06 0.00 +délègue déléguer ver 1.90 6.62 0.21 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délégation délégation nom f s 3.49 12.77 3.11 10.68 +délégations délégation nom f p 3.49 12.77 0.39 2.09 +déluge déluge nom m s 2.53 8.58 2.51 8.18 +déluges déluge nom m p 2.53 8.58 0.03 0.41 +délégua déléguer ver 1.90 6.62 0.00 0.41 ind:pas:3s; +déléguaient déléguer ver 1.90 6.62 0.00 0.14 ind:imp:3p; +déléguait déléguer ver 1.90 6.62 0.01 0.74 ind:imp:3s; +déléguant déléguer ver 1.90 6.62 0.00 0.20 par:pre; +déléguer déléguer ver 1.90 6.62 0.52 0.95 inf; +déléguerai déléguer ver 1.90 6.62 0.04 0.00 ind:fut:1s; +délégueraient déléguer ver 1.90 6.62 0.00 0.07 cnd:pre:3p; +déléguez déléguer ver 1.90 6.62 0.04 0.14 imp:pre:2p;ind:pre:2p; +déléguiez déléguer ver 1.90 6.62 0.00 0.07 ind:imp:2p; +déléguons déléguer ver 1.90 6.62 0.01 0.00 ind:pre:1p; +déléguât déléguer ver 1.90 6.62 0.00 0.07 sub:imp:3s; +délégué_général délégué_général adj m s 0.00 0.14 0.00 0.14 +délégué_général délégué_général nom m s 0.00 0.14 0.00 0.14 +délégué délégué nom m s 3.96 12.16 1.83 7.09 +déléguée délégué nom f s 3.96 12.16 0.57 0.27 +délégués délégué nom m p 3.96 12.16 1.56 4.80 +déluré déluré adj m s 0.36 0.81 0.16 0.41 +délurée déluré adj f s 0.36 0.81 0.18 0.34 +délurées délurer ver f p 0.11 0.34 0.05 0.07 par:pas; +délustrer délustrer ver 0.00 0.07 0.00 0.07 inf; +délétère délétère adj s 0.00 1.01 0.00 0.68 +délétères délétère adj p 0.00 1.01 0.00 0.34 +dum_dum dum_dum adj 0.20 0.27 0.20 0.27 +démagnétiser démagnétiser ver 0.12 0.07 0.04 0.00 inf; +démagnétisé démagnétiser ver m s 0.12 0.07 0.05 0.00 par:pas; +démagnétisée démagnétiser ver f s 0.12 0.07 0.02 0.07 par:pas; +démago démago adj f s 0.03 0.00 0.03 0.00 +démagogie démagogie nom f s 0.47 1.35 0.47 1.35 +démagogique démagogique adj f s 0.14 0.47 0.14 0.34 +démagogiques démagogique adj m p 0.14 0.47 0.00 0.14 +démagogue démagogue adj s 0.22 0.07 0.21 0.07 +démagogues démagogue nom p 0.29 0.54 0.13 0.34 +démaille démailler ver 0.00 0.20 0.00 0.07 ind:pre:3s; +démailler démailler ver 0.00 0.20 0.00 0.07 inf; +démailloter démailloter ver 0.00 0.34 0.00 0.20 inf; +démailloté démailloter ver m s 0.00 0.34 0.00 0.14 par:pas; +démaillée démailler ver f s 0.00 0.20 0.00 0.07 par:pas; +démanche démancher ver 0.00 0.20 0.00 0.07 ind:pre:3s; +démancher démancher ver 0.00 0.20 0.00 0.07 inf; +démanché démancher ver m s 0.00 0.20 0.00 0.07 par:pas; +démange démanger ver 3.10 3.51 2.38 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démangeaient démanger ver 3.10 3.51 0.00 0.14 ind:imp:3p; +démangeais démanger ver 3.10 3.51 0.01 0.07 ind:imp:1s; +démangeaison démangeaison nom f s 1.05 2.30 0.39 1.08 +démangeaisons démangeaison nom f p 1.05 2.30 0.66 1.22 +démangeait démanger ver 3.10 3.51 0.29 1.42 ind:imp:3s; +démangent démanger ver 3.10 3.51 0.28 0.20 ind:pre:3p; +démanger démanger ver 3.10 3.51 0.13 0.07 inf; +démangé démanger ver m s 3.10 3.51 0.01 0.14 par:pas; +démangés démanger ver m p 3.10 3.51 0.00 0.07 par:pas; +démanteler démanteler ver 1.83 1.62 0.68 0.34 inf; +démantelez démanteler ver 1.83 1.62 0.04 0.00 imp:pre:2p; +démantelons démanteler ver 1.83 1.62 0.01 0.00 ind:pre:1p; +démantelé démanteler ver m s 1.83 1.62 0.68 0.27 par:pas; +démantelée démanteler ver f s 1.83 1.62 0.03 0.20 par:pas; +démantelées démanteler ver f p 1.83 1.62 0.30 0.34 par:pas; +démantelés démanteler ver m p 1.83 1.62 0.01 0.34 par:pas; +démantibulant démantibuler ver 0.04 1.76 0.00 0.07 par:pre; +démantibule démantibuler ver 0.04 1.76 0.02 0.07 ind:pre:1s;ind:pre:3s; +démantibulent démantibuler ver 0.04 1.76 0.00 0.07 ind:pre:3p; +démantibuler démantibuler ver 0.04 1.76 0.01 0.20 inf; +démantibulé démantibuler ver m s 0.04 1.76 0.01 0.47 par:pas; +démantibulée démantibuler ver f s 0.04 1.76 0.00 0.27 par:pas; +démantibulées démantibuler ver f p 0.04 1.76 0.00 0.27 par:pas; +démantibulés démantibuler ver m p 0.04 1.76 0.00 0.34 par:pas; +démantèle démanteler ver 1.83 1.62 0.08 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démantèlement démantèlement nom m s 0.14 0.41 0.14 0.34 +démantèlements démantèlement nom m p 0.14 0.41 0.00 0.07 +démantèlent démanteler ver 1.83 1.62 0.00 0.14 ind:pre:3p; +démaquillage démaquillage nom m s 0.01 0.14 0.01 0.14 +démaquillaient démaquiller ver 0.55 1.49 0.00 0.07 ind:imp:3p; +démaquillais démaquiller ver 0.55 1.49 0.00 0.07 ind:imp:1s; +démaquillait démaquiller ver 0.55 1.49 0.00 0.27 ind:imp:3s; +démaquillant démaquillant nom m s 0.04 0.41 0.04 0.41 +démaquillante démaquillant adj f s 0.04 0.07 0.04 0.00 +démaquille démaquiller ver 0.55 1.49 0.16 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démaquiller démaquiller ver 0.55 1.49 0.25 0.47 inf; +démaquillerai démaquiller ver 0.55 1.49 0.10 0.00 ind:fut:1s; +démaquillé démaquiller ver m s 0.55 1.49 0.02 0.34 par:pas; +démaquillée démaquiller ver f s 0.55 1.49 0.01 0.14 par:pas; +démarcation démarcation nom f s 0.29 1.76 0.29 1.76 +démarcha démarcher ver 0.13 0.27 0.01 0.14 ind:pas:3s; +démarchage démarchage nom m s 0.06 0.07 0.06 0.07 +démarchait démarcher ver 0.13 0.27 0.01 0.07 ind:imp:3s; +démarche démarche nom f s 5.69 32.91 3.96 25.07 +démarcher démarcher ver 0.13 0.27 0.05 0.00 inf; +démarches démarche nom f p 5.69 32.91 1.73 7.84 +démarcheur démarcheur nom m s 0.04 1.15 0.02 0.74 +démarcheurs démarcheur nom m p 0.04 1.15 0.00 0.41 +démarcheuse démarcheur nom f s 0.04 1.15 0.02 0.00 +démarient démarier ver 0.02 0.07 0.01 0.00 ind:pre:3p; +démarier démarier ver 0.02 0.07 0.01 0.00 inf; +démariée démarier ver f s 0.02 0.07 0.00 0.07 par:pas; +démarquai démarquer ver 0.94 0.74 0.00 0.07 ind:pas:1s; +démarquaient démarquer ver 0.94 0.74 0.00 0.20 ind:imp:3p; +démarquait démarquer ver 0.94 0.74 0.01 0.07 ind:imp:3s; +démarque démarquer ver 0.94 0.74 0.22 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démarquer démarquer ver 0.94 0.74 0.13 0.20 inf; +démarqué démarquer ver m s 0.94 0.74 0.49 0.14 par:pas; +démarquée démarquer ver f s 0.94 0.74 0.07 0.07 par:pas; +démarquées démarquer ver f p 0.94 0.74 0.01 0.00 par:pas; +démarqués démarquer ver m p 0.94 0.74 0.01 0.00 par:pas; +démarra démarrer ver 35.67 29.32 0.03 6.35 ind:pas:3s; +démarrage démarrage nom m s 1.18 3.31 1.17 3.11 +démarrages démarrage nom m p 1.18 3.31 0.01 0.20 +démarrai démarrer ver 35.67 29.32 0.00 0.20 ind:pas:1s; +démarraient démarrer ver 35.67 29.32 0.02 0.34 ind:imp:3p; +démarrais démarrer ver 35.67 29.32 0.06 0.34 ind:imp:1s;ind:imp:2s; +démarrait démarrer ver 35.67 29.32 0.57 2.50 ind:imp:3s; +démarrant démarrer ver 35.67 29.32 0.09 1.22 par:pre; +démarre démarrer ver 35.67 29.32 17.11 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démarrent démarrer ver 35.67 29.32 1.04 0.81 ind:pre:3p; +démarrer démarrer ver 35.67 29.32 9.10 5.27 inf; +démarrera démarrer ver 35.67 29.32 0.29 0.07 ind:fut:3s; +démarrerai démarrer ver 35.67 29.32 0.02 0.00 ind:fut:1s; +démarreront démarrer ver 35.67 29.32 0.04 0.00 ind:fut:3p; +démarres démarrer ver 35.67 29.32 0.51 0.20 ind:pre:2s; +démarreur démarreur nom m s 1.25 2.23 1.24 2.09 +démarreurs démarreur nom m p 1.25 2.23 0.01 0.14 +démarrez démarrer ver 35.67 29.32 3.15 0.07 imp:pre:2p;ind:pre:2p; +démarrions démarrer ver 35.67 29.32 0.00 0.07 ind:imp:1p; +démarrons démarrer ver 35.67 29.32 0.39 0.20 imp:pre:1p;ind:pre:1p; +démarrât démarrer ver 35.67 29.32 0.00 0.07 sub:imp:3s; +démarrèrent démarrer ver 35.67 29.32 0.00 0.27 ind:pas:3p; +démarré démarrer ver m s 35.67 29.32 3.15 4.32 par:pas; +démarrée démarrer ver f s 35.67 29.32 0.10 0.14 par:pas; +démarrées démarrer ver f p 35.67 29.32 0.00 0.07 par:pas; +démarrés démarrer ver m p 35.67 29.32 0.01 0.14 par:pas; +démasqua démasquer ver 6.41 4.66 0.00 0.27 ind:pas:3s; +démasquage démasquage nom m s 0.01 0.00 0.01 0.00 +démasquaient démasquer ver 6.41 4.66 0.00 0.07 ind:imp:3p; +démasquais démasquer ver 6.41 4.66 0.00 0.07 ind:imp:1s; +démasquait démasquer ver 6.41 4.66 0.02 0.07 ind:imp:3s; +démasquant démasquer ver 6.41 4.66 0.17 0.61 par:pre; +démasque démasquer ver 6.41 4.66 0.46 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +démasquent démasquer ver 6.41 4.66 0.07 0.20 ind:pre:3p; +démasquer démasquer ver 6.41 4.66 2.44 0.74 imp:pre:2p;inf; +démasquera démasquer ver 6.41 4.66 0.20 0.00 ind:fut:3s; +démasquerai démasquer ver 6.41 4.66 0.07 0.07 ind:fut:1s; +démasquerait démasquer ver 6.41 4.66 0.11 0.00 cnd:pre:3s; +démasqueriez démasquer ver 6.41 4.66 0.01 0.00 cnd:pre:2p; +démasquerons démasquer ver 6.41 4.66 0.03 0.07 ind:fut:1p; +démasqueront démasquer ver 6.41 4.66 0.01 0.00 ind:fut:3p; +démasquons démasquer ver 6.41 4.66 0.02 0.00 imp:pre:1p;ind:pre:1p; +démasqué démasquer ver m s 6.41 4.66 1.76 1.35 par:pas; +démasquée démasquer ver f s 6.41 4.66 0.51 0.54 par:pas; +démasquées démasquer ver f p 6.41 4.66 0.04 0.07 par:pas; +démasqués démasquer ver m p 6.41 4.66 0.50 0.27 par:pas; +dématérialisation dématérialisation nom f s 0.01 0.00 0.01 0.00 +dématérialise dématérialiser ver 0.18 0.07 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dématérialisent dématérialiser ver 0.18 0.07 0.01 0.00 ind:pre:3p; +dématérialiser dématérialiser ver 0.18 0.07 0.05 0.00 inf; +dématérialisé dématérialiser ver m s 0.18 0.07 0.08 0.00 par:pas; +démembrant démembrer ver 0.87 0.54 0.01 0.00 par:pre; +démembre démembrer ver 0.87 0.54 0.12 0.00 ind:pre:1s;ind:pre:3s; +démembrement démembrement nom m s 0.14 0.34 0.13 0.34 +démembrements démembrement nom m p 0.14 0.34 0.01 0.00 +démembrer démembrer ver 0.87 0.54 0.28 0.20 inf; +démembrez démembrer ver 0.87 0.54 0.01 0.00 ind:pre:2p; +démembré démembrer ver m s 0.87 0.54 0.25 0.20 par:pas; +démembrée démembrer ver f s 0.87 0.54 0.08 0.00 par:pas; +démembrées démembrer ver f p 0.87 0.54 0.04 0.00 par:pas; +démembrés démembrer ver m p 0.87 0.54 0.07 0.14 par:pas; +démena démener ver 2.65 3.72 0.00 0.14 ind:pas:3s; +démenaient démener ver 2.65 3.72 0.00 0.41 ind:imp:3p; +démenais démener ver 2.65 3.72 0.25 0.00 ind:imp:1s;ind:imp:2s; +démenait démener ver 2.65 3.72 0.05 0.95 ind:imp:3s; +démenant démener ver 2.65 3.72 0.01 0.47 par:pre; +démence démence nom f s 2.75 2.43 2.75 2.43 +démener démener ver 2.65 3.72 0.32 1.01 inf; +démenons démener ver 2.65 3.72 0.00 0.07 ind:pre:1p; +démenotte démenotter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +démens démentir ver 3.06 6.35 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dément dément adj m s 3.12 3.72 2.02 1.35 +démentaient démentir ver 3.06 6.35 0.01 0.61 ind:imp:3p; +démentait démentir ver 3.06 6.35 0.01 1.22 ind:imp:3s; +démentant démentir ver 3.06 6.35 0.01 0.41 par:pre; +démente dément adj f s 3.12 3.72 0.48 1.28 +démentent démentir ver 3.06 6.35 0.05 0.20 ind:pre:3p; +démentes dément adj f p 3.12 3.72 0.20 0.54 +démentez démentir ver 3.06 6.35 0.03 0.00 imp:pre:2p;ind:pre:2p; +démenti démenti nom m s 1.04 2.70 1.01 2.09 +démentie démenti adj f s 0.21 0.68 0.16 0.07 +démentiel démentiel adj m s 0.52 1.42 0.46 0.61 +démentielle démentiel adj f s 0.52 1.42 0.05 0.41 +démentielles démentiel adj f p 0.52 1.42 0.00 0.27 +démentiels démentiel adj m p 0.52 1.42 0.01 0.14 +démenties démentir ver f p 3.06 6.35 0.27 0.14 par:pas; +démentir démentir ver 3.06 6.35 1.06 1.55 inf; +démentirai démentir ver 3.06 6.35 0.01 0.00 ind:fut:1s; +démentirait démentir ver 3.06 6.35 0.01 0.00 cnd:pre:3s; +démentiront démentir ver 3.06 6.35 0.01 0.00 ind:fut:3p; +démentis démenti nom m p 1.04 2.70 0.03 0.61 +démentit démentir ver 3.06 6.35 0.03 0.41 ind:pas:3s; +déments dément adj m p 3.12 3.72 0.41 0.54 +démené démener ver m s 2.65 3.72 0.30 0.07 par:pas; +démenée démener ver f s 2.65 3.72 0.09 0.07 par:pas; +démerdaient démerder ver 5.37 6.42 0.00 0.07 ind:imp:3p; +démerdais démerder ver 5.37 6.42 0.01 0.07 ind:imp:1s; +démerdait démerder ver 5.37 6.42 0.02 0.14 ind:imp:3s; +démerdard démerdard nom m s 0.16 0.07 0.16 0.00 +démerdards démerdard nom m p 0.16 0.07 0.00 0.07 +démerde démerder ver 5.37 6.42 1.74 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démerdent démerder ver 5.37 6.42 0.21 0.41 ind:pre:3p; +démerder démerder ver 5.37 6.42 1.27 1.01 inf; +démerdera démerder ver 5.37 6.42 0.02 0.27 ind:fut:3s; +démerderai démerder ver 5.37 6.42 0.01 0.54 ind:fut:1s; +démerderas démerder ver 5.37 6.42 0.00 0.14 ind:fut:2s; +démerdes démerder ver 5.37 6.42 0.93 0.34 ind:pre:2s; +démerdez démerder ver 5.37 6.42 0.80 0.54 imp:pre:2p;ind:pre:2p; +démerdé démerder ver m s 5.37 6.42 0.23 0.81 par:pas; +démerdée démerder ver f s 5.37 6.42 0.14 0.27 par:pas; +démerdés démerder ver m p 5.37 6.42 0.00 0.20 par:pas; +démesure démesure nom f s 0.04 1.15 0.04 1.15 +démesurent démesurer ver 0.55 2.30 0.00 0.07 ind:pre:3p; +démesuré démesuré adj m s 0.72 8.38 0.41 3.18 +démesurée démesurer ver f s 0.55 2.30 0.36 0.88 par:pas; +démesurées démesuré adj f p 0.72 8.38 0.07 1.08 +démesurément démesurément adv 0.09 4.19 0.09 4.19 +démesurés démesurer ver m p 0.55 2.30 0.11 0.27 par:pas; +démet démettre ver 0.84 1.28 0.04 0.14 ind:pre:3s; +démets démettre ver 0.84 1.28 0.04 0.07 ind:pre:1s; +démette démettre ver 0.84 1.28 0.01 0.00 sub:pre:3s; +démettez démettre ver 0.84 1.28 0.04 0.00 imp:pre:2p; +démettrait démettre ver 0.84 1.28 0.00 0.07 cnd:pre:3s; +démettre démettre ver 0.84 1.28 0.20 0.41 inf; +démeublé démeubler ver m s 0.00 0.41 0.00 0.20 par:pas; +démeublée démeubler ver f s 0.00 0.41 0.00 0.20 par:pas; +démilitarisation démilitarisation nom f s 0.14 0.07 0.14 0.07 +démilitarisée démilitariser ver f s 0.25 0.14 0.25 0.07 par:pas; +démilitarisées démilitariser ver f p 0.25 0.14 0.00 0.07 par:pas; +déminage déminage nom m s 0.69 0.34 0.69 0.34 +déminant déminer ver 0.02 0.20 0.00 0.07 par:pre; +déminer déminer ver 0.02 0.20 0.01 0.00 inf; +démineur démineur nom m s 0.54 0.07 0.17 0.07 +démineurs démineur nom m p 0.54 0.07 0.37 0.00 +déminé déminer ver m s 0.02 0.20 0.01 0.07 par:pas; +déminée déminer ver f s 0.02 0.20 0.00 0.07 par:pas; +démis démettre ver m 0.84 1.28 0.41 0.41 par:pas; +démise démis adj f s 0.13 0.41 0.12 0.27 +démises démis adj f p 0.13 0.41 0.00 0.07 +démission démission nom f s 7.60 5.47 7.34 5.07 +démissionna démissionner ver 17.79 1.82 0.05 0.00 ind:pas:3s; +démissionnaient démissionner ver 17.79 1.82 0.00 0.07 ind:imp:3p; +démissionnaire démissionnaire nom s 0.32 0.00 0.14 0.00 +démissionnaires démissionnaire nom p 0.32 0.00 0.19 0.00 +démissionnais démissionner ver 17.79 1.82 0.08 0.00 ind:imp:1s;ind:imp:2s; +démissionnait démissionner ver 17.79 1.82 0.02 0.14 ind:imp:3s; +démissionnant démissionner ver 17.79 1.82 0.02 0.07 par:pre; +démissionne démissionner ver 17.79 1.82 5.28 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démissionnent démissionner ver 17.79 1.82 0.06 0.07 ind:pre:3p; +démissionner démissionner ver 17.79 1.82 5.15 0.20 inf; +démissionnera démissionner ver 17.79 1.82 0.10 0.00 ind:fut:3s; +démissionnerai démissionner ver 17.79 1.82 0.42 0.00 ind:fut:1s; +démissionneraient démissionner ver 17.79 1.82 0.01 0.00 cnd:pre:3p; +démissionnerais démissionner ver 17.79 1.82 0.07 0.14 cnd:pre:1s;cnd:pre:2s; +démissionnerait démissionner ver 17.79 1.82 0.01 0.07 cnd:pre:3s; +démissionneras démissionner ver 17.79 1.82 0.01 0.00 ind:fut:2s; +démissionnerez démissionner ver 17.79 1.82 0.04 0.00 ind:fut:2p; +démissionneront démissionner ver 17.79 1.82 0.02 0.00 ind:fut:3p; +démissionnes démissionner ver 17.79 1.82 0.48 0.00 ind:pre:2s; +démissionnez démissionner ver 17.79 1.82 0.67 0.14 imp:pre:2p;ind:pre:2p; +démissionniez démissionner ver 17.79 1.82 0.06 0.00 ind:imp:2p; +démissionné démissionner ver m s 17.79 1.82 5.23 0.68 par:pas; +démissions démission nom f p 7.60 5.47 0.26 0.41 +démit démettre ver 0.84 1.28 0.01 0.14 ind:pas:3s; +démiurge démiurge nom m s 0.16 1.01 0.16 0.88 +démiurges démiurge nom m p 0.16 1.01 0.00 0.14 +démobilisant démobiliser ver 0.28 1.28 0.00 0.07 par:pre; +démobilisateur démobilisateur adj m s 0.00 0.14 0.00 0.14 +démobilisation démobilisation nom f s 0.22 1.28 0.22 1.28 +démobilise démobiliser ver 0.28 1.28 0.01 0.27 ind:pre:1s;ind:pre:3s; +démobiliser démobiliser ver 0.28 1.28 0.03 0.14 inf; +démobiliseriez démobiliser ver 0.28 1.28 0.00 0.07 cnd:pre:2p; +démobilisé démobilisé adj m s 0.17 0.34 0.16 0.14 +démobilisés démobiliser ver m p 0.28 1.28 0.13 0.14 par:pas; +démocrate_chrétien démocrate_chrétien adj m s 0.21 0.14 0.21 0.07 +démocrate démocrate adj s 3.06 1.42 2.08 0.88 +démocrate_chrétien démocrate_chrétien nom p 0.10 0.27 0.10 0.27 +démocrates démocrate nom p 3.68 1.08 2.35 0.74 +démocratie démocratie nom f s 13.13 15.68 12.69 11.01 +démocraties démocratie nom f p 13.13 15.68 0.44 4.66 +démocratique démocratique adj s 5.38 5.74 4.97 4.12 +démocratiquement démocratiquement adv 0.18 0.27 0.18 0.27 +démocratiques démocratique adj p 5.38 5.74 0.41 1.62 +démocratisation démocratisation nom f s 0.01 0.20 0.01 0.14 +démocratisations démocratisation nom f p 0.01 0.20 0.00 0.07 +démocratise démocratiser ver 0.16 0.20 0.14 0.07 ind:pre:3s; +démocratiser démocratiser ver 0.16 0.20 0.01 0.07 inf; +démocratiseront démocratiser ver 0.16 0.20 0.00 0.07 ind:fut:3p; +démocratisé démocratiser ver m s 0.16 0.20 0.01 0.00 par:pas; +démodaient démoder ver 1.03 1.55 0.01 0.07 ind:imp:3p; +démodant démoder ver 1.03 1.55 0.00 0.07 par:pre; +démode démoder ver 1.03 1.55 0.06 0.20 ind:pre:3s; +démoder démoder ver 1.03 1.55 0.00 0.07 inf; +démodé démodé adj m s 1.64 3.58 0.80 1.35 +démodée démodé adj f s 1.64 3.58 0.43 0.88 +démodées démodé adj f p 1.64 3.58 0.26 0.74 +démodulateur démodulateur nom m s 0.03 0.00 0.02 0.00 +démodulateurs démodulateur nom m p 0.03 0.00 0.01 0.00 +démodés démodé adj m p 1.64 3.58 0.16 0.61 +démographie démographie nom f s 0.16 0.54 0.16 0.54 +démographique démographique adj s 0.20 0.54 0.14 0.20 +démographiquement démographiquement adv 0.00 0.07 0.00 0.07 +démographiques démographique adj p 0.20 0.54 0.06 0.34 +démoli démolir ver m s 18.81 11.22 4.41 2.30 par:pas; +démolie démolir ver f s 18.81 11.22 1.15 0.88 par:pas; +démolies démolir ver f p 18.81 11.22 0.02 0.61 par:pas; +démolir démolir ver 18.81 11.22 8.02 3.65 inf; +démolira démolir ver 18.81 11.22 0.51 0.14 ind:fut:3s; +démolirai démolir ver 18.81 11.22 0.06 0.07 ind:fut:1s; +démoliraient démolir ver 18.81 11.22 0.02 0.07 cnd:pre:3p; +démolirais démolir ver 18.81 11.22 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +démolirait démolir ver 18.81 11.22 0.03 0.14 cnd:pre:3s; +démolirent démolir ver 18.81 11.22 0.00 0.07 ind:pas:3p; +démolirions démolir ver 18.81 11.22 0.00 0.07 cnd:pre:1p; +démoliront démolir ver 18.81 11.22 0.15 0.07 ind:fut:3p; +démolis démolir ver m p 18.81 11.22 1.93 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +démolissaient démolir ver 18.81 11.22 0.04 0.27 ind:imp:3p; +démolissais démolir ver 18.81 11.22 0.00 0.20 ind:imp:1s; +démolissait démolir ver 18.81 11.22 0.03 0.54 ind:imp:3s; +démolissant démolir ver 18.81 11.22 0.04 0.41 par:pre; +démolisse démolir ver 18.81 11.22 0.37 0.14 sub:pre:1s;sub:pre:3s; +démolissent démolir ver 18.81 11.22 0.48 0.27 ind:pre:3p; +démolisses démolir ver 18.81 11.22 0.17 0.00 sub:pre:2s; +démolisseur démolisseur nom m s 0.23 0.61 0.18 0.07 +démolisseurs démolisseur nom m p 0.23 0.61 0.05 0.47 +démolisseuse démolisseur nom f s 0.23 0.61 0.00 0.07 +démolissez démolir ver 18.81 11.22 0.40 0.00 imp:pre:2p;ind:pre:2p; +démolissions démolir ver 18.81 11.22 0.00 0.07 ind:imp:1p; +démolit démolir ver 18.81 11.22 0.89 0.61 ind:pre:3s;ind:pas:3s; +démolition démolition nom f s 1.55 2.36 1.53 1.82 +démolitions démolition nom f p 1.55 2.36 0.02 0.54 +démon démon nom m s 61.00 20.34 39.71 13.58 +démone démon nom f s 61.00 20.34 0.14 0.14 +démones démon nom f p 61.00 20.34 0.05 0.07 +démoniaque démoniaque adj s 5.52 2.30 4.22 1.69 +démoniaquement démoniaquement adv 0.00 0.07 0.00 0.07 +démoniaques démoniaque adj p 5.52 2.30 1.29 0.61 +démonique démonique adj s 0.04 0.00 0.04 0.00 +démonologie démonologie nom f s 0.16 0.00 0.16 0.00 +démonomanie démonomanie nom f s 0.01 0.00 0.01 0.00 +démons démon nom m p 61.00 20.34 21.10 6.55 +démonstrateur démonstrateur nom m s 0.06 0.54 0.02 0.14 +démonstrateurs démonstrateur nom m p 0.06 0.54 0.00 0.34 +démonstratif démonstratif adj m s 0.46 1.08 0.23 0.54 +démonstratifs démonstratif adj m p 0.46 1.08 0.15 0.20 +démonstration démonstration nom f s 7.61 12.23 7.30 9.53 +démonstrations démonstration nom f p 7.61 12.23 0.31 2.70 +démonstrative démonstratif adj f s 0.46 1.08 0.08 0.34 +démonstrativement démonstrativement adv 0.01 0.34 0.01 0.34 +démonstratrice démonstrateur nom f s 0.06 0.54 0.04 0.07 +démonta démonter ver 6.83 7.77 0.00 0.20 ind:pas:3s; +démontable démontable adj s 0.38 0.61 0.25 0.47 +démontables démontable adj f p 0.38 0.61 0.14 0.14 +démontage démontage nom m s 0.06 0.14 0.06 0.07 +démontages démontage nom m p 0.06 0.14 0.00 0.07 +démontaient démonter ver 6.83 7.77 0.00 0.14 ind:imp:3p; +démontait démonter ver 6.83 7.77 0.05 0.74 ind:imp:3s; +démontant démonter ver 6.83 7.77 0.04 0.07 par:pre; +démonte_pneu démonte_pneu nom m s 0.26 0.20 0.25 0.07 +démonte_pneu démonte_pneu nom m p 0.26 0.20 0.01 0.14 +démonte démonter ver 6.83 7.77 1.40 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démontent démonter ver 6.83 7.77 0.18 0.07 ind:pre:3p; +démonter démonter ver 6.83 7.77 3.44 3.11 inf; +démontez démonter ver 6.83 7.77 0.35 0.00 imp:pre:2p;ind:pre:2p; +démontra démontrer ver 7.12 12.09 0.00 0.34 ind:pas:3s; +démontrable démontrable adj m s 0.03 0.00 0.03 0.00 +démontrai démontrer ver 7.12 12.09 0.00 0.20 ind:pas:1s; +démontraient démontrer ver 7.12 12.09 0.01 0.27 ind:imp:3p; +démontrait démontrer ver 7.12 12.09 0.07 0.81 ind:imp:3s; +démontrant démontrer ver 7.12 12.09 0.06 0.81 par:pre; +démontre démontrer ver 7.12 12.09 1.38 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démontrent démontrer ver 7.12 12.09 0.34 0.14 ind:pre:3p; +démontrer démontrer ver 7.12 12.09 3.23 5.61 inf; +démontrera démontrer ver 7.12 12.09 0.09 0.07 ind:fut:3s; +démontrerai démontrer ver 7.12 12.09 0.09 0.00 ind:fut:1s; +démontrerait démontrer ver 7.12 12.09 0.02 0.14 cnd:pre:3s; +démontrerons démontrer ver 7.12 12.09 0.04 0.00 ind:fut:1p; +démontreront démontrer ver 7.12 12.09 0.07 0.00 ind:fut:3p; +démontrez démontrer ver 7.12 12.09 0.30 0.00 imp:pre:2p;ind:pre:2p; +démontrions démontrer ver 7.12 12.09 0.01 0.07 ind:imp:1p; +démontrât démontrer ver 7.12 12.09 0.00 0.07 sub:imp:3s; +démontrèrent démontrer ver 7.12 12.09 0.00 0.20 ind:pas:3p; +démontré démontrer ver m s 7.12 12.09 1.16 1.82 par:pas; +démontrée démontrer ver f s 7.12 12.09 0.21 0.34 par:pas; +démontrées démontrer ver f p 7.12 12.09 0.03 0.00 par:pas; +démontrés démontrer ver m p 7.12 12.09 0.02 0.00 par:pas; +démonté démonter ver m s 6.83 7.77 1.10 1.35 par:pas; +démontée démonté adj f s 0.31 2.09 0.22 0.74 +démontées démonter ver f p 6.83 7.77 0.08 0.07 par:pas; +démontés démonter ver m p 6.83 7.77 0.06 0.27 par:pas; +démonétisé démonétiser ver m s 0.00 0.14 0.00 0.07 par:pas; +démonétisés démonétiser ver m p 0.00 0.14 0.00 0.07 par:pas; +démoralisa démoraliser ver 0.98 1.82 0.00 0.07 ind:pas:3s; +démoralisait démoraliser ver 0.98 1.82 0.00 0.14 ind:imp:3s; +démoralisant démoralisant adj m s 0.14 0.81 0.11 0.34 +démoralisante démoralisant adj f s 0.14 0.81 0.03 0.34 +démoralisants démoralisant adj m p 0.14 0.81 0.00 0.14 +démoralisateur démoralisateur nom m s 0.01 0.07 0.01 0.00 +démoralisateurs démoralisateur adj m p 0.00 0.07 0.00 0.07 +démoralisateurs démoralisateur nom m p 0.01 0.07 0.00 0.07 +démoralisation démoralisation nom f s 0.30 0.61 0.30 0.61 +démoralise démoraliser ver 0.98 1.82 0.10 0.27 imp:pre:2s;ind:pre:3s; +démoralisent démoraliser ver 0.98 1.82 0.03 0.07 ind:pre:3p; +démoraliser démoraliser ver 0.98 1.82 0.34 0.47 inf; +démoraliseraient démoraliser ver 0.98 1.82 0.00 0.07 cnd:pre:3p; +démoraliserais démoraliser ver 0.98 1.82 0.00 0.07 cnd:pre:2s; +démoralisé démoraliser ver m s 0.98 1.82 0.32 0.34 par:pas; +démoralisée démoraliser ver f s 0.98 1.82 0.16 0.14 par:pas; +démoralisées démoralisé adj f p 0.12 0.27 0.00 0.07 +démoralisés démoraliser ver m p 0.98 1.82 0.02 0.20 par:pas; +démord démordre ver 0.49 2.57 0.05 0.27 ind:pre:3s; +démordaient démordre ver 0.49 2.57 0.01 0.07 ind:imp:3p; +démordais démordre ver 0.49 2.57 0.00 0.07 ind:imp:1s; +démordait démordre ver 0.49 2.57 0.11 0.88 ind:imp:3s; +démordent démordre ver 0.49 2.57 0.00 0.14 ind:pre:3p; +démordez démordre ver 0.49 2.57 0.02 0.07 imp:pre:2p;ind:pre:2p; +démordit démordre ver 0.49 2.57 0.00 0.07 ind:pas:3s; +démordra démordre ver 0.49 2.57 0.01 0.07 ind:fut:3s; +démordrai démordre ver 0.49 2.57 0.02 0.00 ind:fut:1s; +démordrait démordre ver 0.49 2.57 0.00 0.07 cnd:pre:3s; +démordre démordre ver 0.49 2.57 0.19 0.74 inf; +démordront démordre ver 0.49 2.57 0.00 0.07 ind:fut:3p; +démords démordre ver 0.49 2.57 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +démordu démordre ver m s 0.49 2.57 0.04 0.00 par:pas; +démâtait démâter ver 0.01 0.61 0.00 0.07 ind:imp:3s; +démâter démâter ver 0.01 0.61 0.01 0.00 inf; +démotique démotique adj f s 0.00 0.14 0.00 0.14 +démotivation démotivation nom f s 0.01 0.00 0.01 0.00 +démotive démotiver ver 0.06 0.00 0.02 0.00 ind:pre:1s;ind:pre:3s; +démotiver démotiver ver 0.06 0.00 0.03 0.00 inf; +démotivée démotiver ver f s 0.06 0.00 0.01 0.00 par:pas; +démâté démâter ver m s 0.01 0.61 0.00 0.07 par:pas; +démâtée démâter ver f s 0.01 0.61 0.00 0.34 par:pas; +démâtés démâter ver m p 0.01 0.61 0.00 0.14 par:pas; +démoucheté démoucheter ver m s 0.14 0.07 0.14 0.07 par:pas; +démoule démouler ver 0.09 0.07 0.02 0.00 ind:pre:1s;ind:pre:3s; +démouler démouler ver 0.09 0.07 0.03 0.00 inf; +démoules démouler ver 0.09 0.07 0.01 0.00 ind:pre:2s; +démoulé démouler ver m s 0.09 0.07 0.02 0.00 par:pas; +démoulées démouler ver f p 0.09 0.07 0.00 0.07 par:pas; +dumper dumper nom m s 0.01 0.00 0.01 0.00 +dumping dumping nom m s 0.00 0.07 0.00 0.07 +démène démener ver 2.65 3.72 1.27 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démènent démener ver 2.65 3.72 0.11 0.20 ind:pre:3p; +démèneras démener ver 2.65 3.72 0.10 0.00 ind:fut:2s; +démènes démener ver 2.65 3.72 0.14 0.00 ind:pre:2s; +démêla démêler ver 1.41 5.20 0.00 0.07 ind:pas:3s; +démêlage démêlage nom m s 0.01 0.07 0.01 0.07 +démêlai démêler ver 1.41 5.20 0.00 0.20 ind:pas:1s; +démêlais démêler ver 1.41 5.20 0.00 0.14 ind:imp:1s; +démêlait démêler ver 1.41 5.20 0.00 0.27 ind:imp:3s; +démêlant démêlant nom m s 0.29 0.00 0.29 0.00 +démêle démêler ver 1.41 5.20 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démêlent démêler ver 1.41 5.20 0.01 0.07 ind:pre:3p; +démêler démêler ver 1.41 5.20 0.84 3.38 inf; +démêlerait démêler ver 1.41 5.20 0.00 0.07 cnd:pre:3s; +démêlions démêler ver 1.41 5.20 0.00 0.07 ind:imp:1p; +démêloir démêloir nom m s 0.00 0.07 0.00 0.07 +démultipliaient démultiplier ver 0.18 1.01 0.00 0.07 ind:imp:3p; +démultipliait démultiplier ver 0.18 1.01 0.01 0.07 ind:imp:3s; +démultipliant démultiplier ver 0.18 1.01 0.01 0.00 par:pre; +démultiplicateur démultiplicateur nom m s 0.00 0.07 0.00 0.07 +démultiplication démultiplication nom f s 0.00 0.07 0.00 0.07 +démultiplie démultiplier ver 0.18 1.01 0.01 0.07 ind:pre:3s; +démultiplient démultiplier ver 0.18 1.01 0.14 0.14 ind:pre:3p; +démultiplier démultiplier ver 0.18 1.01 0.00 0.14 inf; +démultiplié démultiplier ver m s 0.18 1.01 0.01 0.27 par:pas; +démultipliée démultiplier ver f s 0.18 1.01 0.00 0.14 par:pas; +démultipliées démultiplier ver f p 0.18 1.01 0.00 0.07 par:pas; +démultipliés démultiplier ver m p 0.18 1.01 0.00 0.07 par:pas; +démêlé démêler ver m s 1.41 5.20 0.37 0.34 par:pas; +démêlées démêler ver f p 1.41 5.20 0.00 0.07 par:pas; +démêlés démêlé nom m p 0.38 1.22 0.38 1.22 +déménage déménager ver 32.40 10.34 7.24 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déménagea déménager ver 32.40 10.34 0.16 0.07 ind:pas:3s; +déménageaient déménager ver 32.40 10.34 0.01 0.14 ind:imp:3p; +déménageais déménager ver 32.40 10.34 0.12 0.14 ind:imp:1s;ind:imp:2s; +déménageait déménager ver 32.40 10.34 0.38 0.20 ind:imp:3s; +déménageant déménager ver 32.40 10.34 0.10 0.14 par:pre; +déménagement déménagement nom m s 2.98 6.69 2.66 5.27 +déménagements déménagement nom m p 2.98 6.69 0.32 1.42 +déménagent déménager ver 32.40 10.34 0.89 0.20 ind:pre:3p; +déménageons déménager ver 32.40 10.34 0.28 0.00 imp:pre:1p;ind:pre:1p; +déménager déménager ver 32.40 10.34 11.14 4.12 inf; +déménagera déménager ver 32.40 10.34 0.40 0.00 ind:fut:3s; +déménagerai déménager ver 32.40 10.34 0.13 0.00 ind:fut:1s; +déménageraient déménager ver 32.40 10.34 0.01 0.00 cnd:pre:3p; +déménagerais déménager ver 32.40 10.34 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +déménagerait déménager ver 32.40 10.34 0.15 0.14 cnd:pre:3s; +déménageras déménager ver 32.40 10.34 0.04 0.00 ind:fut:2s; +déménagerez déménager ver 32.40 10.34 0.14 0.00 ind:fut:2p; +déménages déménager ver 32.40 10.34 1.43 0.20 ind:pre:2s; +déménageur déménageur nom m s 1.67 3.18 0.63 1.28 +déménageurs déménageur nom m p 1.67 3.18 1.03 1.82 +déménageuse déménageur nom f s 1.67 3.18 0.00 0.07 +déménagez déménager ver 32.40 10.34 1.06 0.47 imp:pre:2p;ind:pre:2p; +déménagiez déménager ver 32.40 10.34 0.03 0.00 ind:imp:2p; +déménagions déménager ver 32.40 10.34 0.10 0.20 ind:imp:1p; +déménagèrent déménager ver 32.40 10.34 0.03 0.20 ind:pas:3p; +déménagé déménager ver m s 32.40 10.34 8.41 2.36 par:pas; +déménagée déménager ver f s 32.40 10.34 0.07 0.14 par:pas; +déménagés déménager ver m p 32.40 10.34 0.04 0.14 par:pas; +démuni démunir ver m s 0.51 1.76 0.27 0.54 par:pas; +démunie démuni adj f s 0.56 3.58 0.09 0.34 +démunies démuni adj f p 0.56 3.58 0.03 0.14 +démunir démunir ver 0.51 1.76 0.01 0.14 inf; +démunis démuni nom m p 0.42 1.28 0.38 0.34 +démunissant démunir ver 0.51 1.76 0.00 0.07 par:pre; +démurge démurger ver 0.00 0.41 0.00 0.20 ind:pre:3s; +démurger démurger ver 0.00 0.41 0.00 0.20 inf; +déméritait démériter ver 0.02 0.74 0.00 0.07 ind:imp:3s; +démérite démérite nom m s 0.04 0.20 0.04 0.14 +démériter démériter ver 0.02 0.74 0.00 0.07 inf; +démérites démérite nom m p 0.04 0.20 0.00 0.07 +démérité démériter ver m s 0.02 0.74 0.02 0.61 par:pas; +démuseler démuseler ver 0.00 0.07 0.00 0.07 inf; +démystificateur démystificateur nom m s 0.03 0.00 0.03 0.00 +démystification démystification nom f s 0.10 0.07 0.10 0.00 +démystifications démystification nom f p 0.10 0.07 0.00 0.07 +démystificatrice démystificateur adj f s 0.00 0.14 0.00 0.14 +démystifier démystifier ver 0.05 0.07 0.04 0.07 inf; +démystifié démystifier ver m s 0.05 0.07 0.01 0.00 par:pas; +démythifie démythifier ver 0.00 0.14 0.00 0.07 ind:pre:3s; +démythifié démythifier ver m s 0.00 0.14 0.00 0.07 par:pas; +dénanti dénantir ver m s 0.00 0.07 0.00 0.07 par:pas; +dénatalité dénatalité nom f s 0.01 0.00 0.01 0.00 +dénaturaient dénaturer ver 0.54 1.42 0.01 0.07 ind:imp:3p; +dénaturait dénaturer ver 0.54 1.42 0.02 0.27 ind:imp:3s; +dénaturation dénaturation nom f s 0.02 0.00 0.02 0.00 +dénature dénaturer ver 0.54 1.42 0.07 0.00 imp:pre:2s;ind:pre:3s; +dénaturent dénaturer ver 0.54 1.42 0.01 0.14 ind:pre:3p; +dénaturer dénaturer ver 0.54 1.42 0.14 0.54 inf; +dénaturé dénaturer ver m s 0.54 1.42 0.26 0.14 par:pas; +dénaturée dénaturé adj f s 0.44 0.88 0.21 0.27 +dénaturées dénaturé adj f p 0.44 0.88 0.04 0.20 +dénaturés dénaturer ver m p 0.54 1.42 0.00 0.07 par:pas; +dénazification dénazification nom f s 0.03 0.00 0.03 0.00 +dénazifier dénazifier ver 0.01 0.00 0.01 0.00 inf; +dundee dundee nom m s 0.00 0.07 0.00 0.07 +dune dune nom f s 3.96 12.84 1.55 3.45 +déneigement déneigement nom m s 0.01 0.00 0.01 0.00 +déneiger déneiger ver 0.09 0.00 0.08 0.00 inf; +déneigé déneiger ver m s 0.09 0.00 0.01 0.00 par:pas; +dénervation dénervation nom f s 0.01 0.00 0.01 0.00 +dénervé dénerver ver m s 0.00 0.07 0.00 0.07 par:pas; +dunes dune nom f p 3.96 12.84 2.41 9.39 +dunette dunette nom f s 0.07 0.68 0.07 0.61 +dunettes dunette nom f p 0.07 0.68 0.00 0.07 +déni déni nom m s 0.84 0.41 0.78 0.27 +dénia dénier ver 0.64 1.22 0.00 0.07 ind:pas:3s; +déniaient dénier ver 0.64 1.22 0.00 0.07 ind:imp:3p; +déniaisa déniaiser ver 0.04 0.41 0.00 0.07 ind:pas:3s; +déniaisas déniaiser ver 0.04 0.41 0.00 0.07 ind:pas:2s; +déniaisement déniaisement nom m s 0.00 0.14 0.00 0.14 +déniaiser déniaiser ver 0.04 0.41 0.04 0.00 inf; +déniaises déniaiser ver 0.04 0.41 0.00 0.07 ind:pre:2s; +déniaisé déniaiser ver m s 0.04 0.41 0.01 0.20 par:pas; +déniait dénier ver 0.64 1.22 0.00 0.27 ind:imp:3s; +déniant dénier ver 0.64 1.22 0.02 0.20 par:pre; +dénicha dénicher ver 5.07 8.78 0.02 0.41 ind:pas:3s; +dénichai dénicher ver 5.07 8.78 0.00 0.07 ind:pas:1s; +dénichaient dénicher ver 5.07 8.78 0.00 0.07 ind:imp:3p; +dénichais dénicher ver 5.07 8.78 0.14 0.20 ind:imp:1s;ind:imp:2s; +dénichait dénicher ver 5.07 8.78 0.04 0.20 ind:imp:3s; +dénichant dénicher ver 5.07 8.78 0.01 0.00 par:pre; +déniche dénicher ver 5.07 8.78 0.52 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénichent dénicher ver 5.07 8.78 0.04 0.20 ind:pre:3p; +dénicher dénicher ver 5.07 8.78 1.91 3.85 inf; +dénichera dénicher ver 5.07 8.78 0.17 0.07 ind:fut:3s; +dénicherait dénicher ver 5.07 8.78 0.01 0.07 cnd:pre:3s; +dénicheras dénicher ver 5.07 8.78 0.01 0.07 ind:fut:2s; +dénicheur dénicheur nom m s 0.50 0.34 0.44 0.14 +dénicheurs dénicheur nom m p 0.50 0.34 0.05 0.14 +dénicheuse dénicheur nom f s 0.50 0.34 0.01 0.07 +dénichez dénicher ver 5.07 8.78 0.41 0.00 imp:pre:2p;ind:pre:2p; +dénichions dénicher ver 5.07 8.78 0.00 0.07 ind:imp:1p; +déniché dénicher ver m s 5.07 8.78 1.47 2.43 par:pas; +dénichée dénicher ver f s 5.07 8.78 0.23 0.41 par:pas; +dénichées dénicher ver f p 5.07 8.78 0.01 0.14 par:pas; +dénichés dénicher ver m p 5.07 8.78 0.08 0.34 par:pas; +dénie dénier ver 0.64 1.22 0.32 0.20 ind:pre:1s;ind:pre:3s; +dénier dénier ver 0.64 1.22 0.10 0.34 inf; +dénierai dénier ver 0.64 1.22 0.01 0.00 ind:fut:1s; +dénies dénier ver 0.64 1.22 0.02 0.00 ind:pre:2s; +dénigrais dénigrer ver 1.51 1.08 0.14 0.00 ind:imp:1s; +dénigrait dénigrer ver 1.51 1.08 0.00 0.20 ind:imp:3s; +dénigrant dénigrer ver 1.51 1.08 0.03 0.00 par:pre; +dénigrante dénigrant adj f s 0.01 0.07 0.00 0.07 +dénigre dénigrer ver 1.51 1.08 0.31 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénigrement dénigrement nom m s 0.29 0.54 0.28 0.47 +dénigrements dénigrement nom m p 0.29 0.54 0.01 0.07 +dénigrent dénigrer ver 1.51 1.08 0.04 0.07 ind:pre:3p; +dénigrer dénigrer ver 1.51 1.08 0.53 0.47 inf; +dénigres dénigrer ver 1.51 1.08 0.37 0.00 ind:pre:2s; +dénigreuses dénigreur nom f p 0.00 0.07 0.00 0.07 +dénigrez dénigrer ver 1.51 1.08 0.04 0.00 imp:pre:2p;ind:pre:2p; +dénigré dénigrer ver m s 1.51 1.08 0.04 0.20 par:pas; +dénigrées dénigrer ver f p 1.51 1.08 0.00 0.14 par:pas; +dénigrés dénigrer ver m p 1.51 1.08 0.01 0.00 par:pas; +dénions dénier ver 0.64 1.22 0.14 0.07 ind:pre:1p; +dénis déni nom m p 0.84 0.41 0.07 0.14 +dénié dénier ver m s 0.64 1.22 0.04 0.00 par:pas; +dénivellation dénivellation nom f s 0.02 1.22 0.02 0.74 +dénivellations dénivellation nom f p 0.02 1.22 0.00 0.47 +dénivelé dénivelé nom m s 0.03 0.00 0.01 0.00 +dénivelés dénivelé nom m p 0.03 0.00 0.02 0.00 +dunkerque dunkerque nom m s 0.00 0.14 0.00 0.14 +dénombra dénombrer ver 0.53 3.31 0.00 0.54 ind:pas:3s; +dénombrables dénombrable adj p 0.00 0.07 0.00 0.07 +dénombrait dénombrer ver 0.53 3.31 0.02 0.27 ind:imp:3s; +dénombrant dénombrer ver 0.53 3.31 0.00 0.20 par:pre; +dénombre dénombrer ver 0.53 3.31 0.18 0.47 ind:pre:1s;ind:pre:3s; +dénombrement dénombrement nom m s 0.00 0.47 0.00 0.41 +dénombrements dénombrement nom m p 0.00 0.47 0.00 0.07 +dénombrent dénombrer ver 0.53 3.31 0.00 0.07 ind:pre:3p; +dénombrer dénombrer ver 0.53 3.31 0.05 0.95 inf; +dénombrez dénombrer ver 0.53 3.31 0.01 0.00 ind:pre:2p; +dénombré dénombrer ver m s 0.53 3.31 0.26 0.61 par:pas; +dénombrés dénombrer ver m p 0.53 3.31 0.00 0.20 par:pas; +dénominateur dénominateur nom m s 0.15 0.47 0.15 0.47 +dénominatif dénominatif adj m s 0.01 0.00 0.01 0.00 +dénomination dénomination nom f s 0.09 1.15 0.07 0.61 +dénominations dénomination nom f p 0.09 1.15 0.02 0.54 +dénominer dénominer ver 0.00 0.07 0.00 0.07 inf; +dénommaient dénommer ver 0.25 0.95 0.00 0.14 ind:imp:3p; +dénommait dénommer ver 0.25 0.95 0.01 0.20 ind:imp:3s; +dénomment dénommer ver 0.25 0.95 0.00 0.07 ind:pre:3p; +dénommer dénommer ver 0.25 0.95 0.00 0.07 inf; +dénommez dénommer ver 0.25 0.95 0.01 0.00 ind:pre:2p; +dénommé dénommé nom m s 2.67 1.49 2.67 1.49 +dénommée dénommé adj f s 0.85 1.22 0.37 0.41 +dénommés dénommer ver m p 0.25 0.95 0.00 0.07 par:pas; +dénonce dénoncer ver 29.57 19.05 5.50 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénoncent dénoncer ver 29.57 19.05 0.70 0.20 ind:pre:3p; +dénoncer dénoncer ver 29.57 19.05 9.83 6.08 inf; +dénoncera dénoncer ver 29.57 19.05 0.92 0.27 ind:fut:3s; +dénoncerai dénoncer ver 29.57 19.05 1.21 0.14 ind:fut:1s; +dénonceraient dénoncer ver 29.57 19.05 0.14 0.20 cnd:pre:3p; +dénoncerais dénoncer ver 29.57 19.05 0.22 0.00 cnd:pre:1s; +dénoncerait dénoncer ver 29.57 19.05 0.34 0.20 cnd:pre:3s; +dénonceras dénoncer ver 29.57 19.05 0.04 0.00 ind:fut:2s; +dénoncerez dénoncer ver 29.57 19.05 0.28 0.00 ind:fut:2p; +dénonceriez dénoncer ver 29.57 19.05 0.03 0.00 cnd:pre:2p; +dénonceront dénoncer ver 29.57 19.05 0.12 0.20 ind:fut:3p; +dénonces dénoncer ver 29.57 19.05 0.88 0.14 ind:pre:2s; +dénoncez dénoncer ver 29.57 19.05 1.05 0.07 imp:pre:2p;ind:pre:2p; +dénonciateur dénonciateur nom m s 0.08 0.74 0.08 0.68 +dénonciation dénonciation nom f s 0.88 2.50 0.69 1.49 +dénonciations dénonciation nom f p 0.88 2.50 0.19 1.01 +dénonciatrice dénonciateur adj f s 0.02 0.00 0.02 0.00 +dénoncé dénoncer ver m s 29.57 19.05 5.78 3.24 par:pas; +dénoncée dénoncer ver f s 29.57 19.05 0.89 0.68 par:pas; +dénoncées dénoncer ver f p 29.57 19.05 0.07 0.27 par:pas; +dénoncés dénoncer ver m p 29.57 19.05 0.90 0.88 par:pas; +dénonça dénoncer ver 29.57 19.05 0.03 0.34 ind:pas:3s; +dénonçaient dénoncer ver 29.57 19.05 0.14 0.74 ind:imp:3p; +dénonçais dénoncer ver 29.57 19.05 0.03 0.07 ind:imp:1s; +dénonçait dénoncer ver 29.57 19.05 0.23 1.69 ind:imp:3s; +dénonçant dénoncer ver 29.57 19.05 0.25 1.08 par:pre; +dénonçons dénoncer ver 29.57 19.05 0.02 0.00 imp:pre:1p;ind:pre:1p; +dénonçât dénoncer ver 29.57 19.05 0.00 0.14 sub:imp:3s; +dénotaient dénoter ver 0.23 1.42 0.01 0.07 ind:imp:3p; +dénotait dénoter ver 0.23 1.42 0.00 0.54 ind:imp:3s; +dénotant dénoter ver 0.23 1.42 0.01 0.07 par:pre; +dénote dénoter ver 0.23 1.42 0.18 0.27 ind:pre:1s;ind:pre:3s; +dénotent dénoter ver 0.23 1.42 0.01 0.27 ind:pre:3p; +dénoter dénoter ver 0.23 1.42 0.00 0.07 inf; +dénoterait dénoter ver 0.23 1.42 0.00 0.07 cnd:pre:3s; +dénoté dénoter ver m s 0.23 1.42 0.02 0.07 par:pas; +dénoua dénouer ver 1.42 12.30 0.01 1.82 ind:pas:3s; +dénouaient dénouer ver 1.42 12.30 0.00 0.14 ind:imp:3p; +dénouait dénouer ver 1.42 12.30 0.00 0.74 ind:imp:3s; +dénouant dénouer ver 1.42 12.30 0.00 0.88 par:pre; +dénoue dénouer ver 1.42 12.30 0.46 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénouement dénouement nom m s 1.34 4.05 1.31 3.78 +dénouements dénouement nom m p 1.34 4.05 0.03 0.27 +dénouent dénouer ver 1.42 12.30 0.01 0.41 ind:pre:3p; +dénouer dénouer ver 1.42 12.30 0.62 1.96 inf; +dénouera dénouer ver 1.42 12.30 0.03 0.00 ind:fut:3s; +dénouerais dénouer ver 1.42 12.30 0.01 0.07 cnd:pre:1s; +dénouions dénouer ver 1.42 12.30 0.00 0.07 ind:imp:1p; +dénouât dénouer ver 1.42 12.30 0.00 0.07 sub:imp:3s; +dénouèrent dénouer ver 1.42 12.30 0.00 0.20 ind:pas:3p; +dénoué dénouer ver m s 1.42 12.30 0.11 1.01 par:pas; +dénouée dénouer ver f s 1.42 12.30 0.14 0.81 par:pas; +dénouées dénouer ver f p 1.42 12.30 0.00 0.34 par:pas; +dénoués dénouer ver m p 1.42 12.30 0.03 2.23 par:pas; +dénoyautait dénoyauter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +dénoyauter dénoyauter ver 0.00 0.20 0.00 0.14 inf; +dénoyauteur dénoyauteur nom m s 0.03 0.00 0.03 0.00 +dénuda dénuder ver 0.54 5.61 0.00 0.07 ind:pas:3s; +dénudaient dénuder ver 0.54 5.61 0.00 0.14 ind:imp:3p; +dénudait dénuder ver 0.54 5.61 0.00 0.81 ind:imp:3s; +dénudant dénuder ver 0.54 5.61 0.00 0.20 par:pre; +dénudation dénudation nom f s 0.18 0.00 0.18 0.00 +dénude dénuder ver 0.54 5.61 0.05 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénudent dénuder ver 0.54 5.61 0.01 0.27 ind:pre:3p; +dénuder dénuder ver 0.54 5.61 0.08 1.01 inf; +dénudera dénuder ver 0.54 5.61 0.00 0.07 ind:fut:3s; +dénuderait dénuder ver 0.54 5.61 0.00 0.07 cnd:pre:3s; +dénudèrent dénuder ver 0.54 5.61 0.00 0.20 ind:pas:3p; +dénudé dénudé adj m s 0.61 4.26 0.36 1.69 +dénudée dénudé adj f s 0.61 4.26 0.13 1.01 +dénudées dénudé adj f p 0.61 4.26 0.05 0.68 +dénudés dénudé adj m p 0.61 4.26 0.07 0.88 +dénuement dénuement nom m s 0.08 3.92 0.08 3.92 +dénégateurs dénégateur adj m p 0.00 0.07 0.00 0.07 +dénégation dénégation nom f s 0.56 2.50 0.48 1.76 +dénégations dénégation nom f p 0.56 2.50 0.08 0.74 +dénué dénuer ver m s 2.06 4.80 1.16 1.69 par:pas; +dénuée dénuer ver f s 2.06 4.80 0.44 1.42 par:pas; +dénuées dénuer ver f p 2.06 4.80 0.17 0.81 par:pas; +dénués dénuer ver m p 2.06 4.80 0.29 0.88 par:pas; +duo duo nom m s 2.58 2.50 2.49 2.09 +duodi duodi nom m s 0.00 0.07 0.00 0.07 +déodorant déodorant nom m s 1.00 0.54 0.85 0.41 +déodorants déodorant nom m p 1.00 0.54 0.15 0.14 +duodécimale duodécimal adj f s 0.00 0.07 0.00 0.07 +duodénal duodénal adj m s 0.03 0.00 0.01 0.00 +duodénale duodénal adj f s 0.03 0.00 0.01 0.00 +duodénum duodénum nom m s 0.17 0.27 0.17 0.27 +déontologie déontologie nom f s 0.37 0.41 0.37 0.41 +déontologique déontologique adj m s 0.07 0.00 0.03 0.00 +déontologiques déontologique adj p 0.07 0.00 0.03 0.00 +duopole duopole nom m s 0.01 0.00 0.01 0.00 +duos duo nom m p 2.58 2.50 0.09 0.41 +dépôt_vente dépôt_vente nom m s 0.03 0.00 0.03 0.00 +dépôt dépôt nom m s 13.20 11.96 11.90 8.58 +dépôts dépôt nom m p 13.20 11.96 1.30 3.38 +dépaillée dépailler ver f s 0.00 0.20 0.00 0.14 par:pas; +dépaillées dépailler ver f p 0.00 0.20 0.00 0.07 par:pas; +dupait duper ver 4.77 2.70 0.03 0.20 ind:imp:3s; +dépannage dépannage nom m s 1.31 1.08 1.17 1.01 +dépannages dépannage nom m p 1.31 1.08 0.14 0.07 +dépannaient dépanner ver 3.56 2.77 0.01 0.00 ind:imp:3p; +dépannait dépanner ver 3.56 2.77 0.01 0.07 ind:imp:3s; +dépanne dépanner ver 3.56 2.77 0.49 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépannent dépanner ver 3.56 2.77 0.01 0.00 ind:pre:3p; +dépanner dépanner ver 3.56 2.77 1.95 1.96 inf;; +dépannera dépanner ver 3.56 2.77 0.16 0.14 ind:fut:3s; +dépannerais dépanner ver 3.56 2.77 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +dépannerait dépanner ver 3.56 2.77 0.33 0.07 cnd:pre:3s; +dépanneriez dépanner ver 3.56 2.77 0.01 0.00 cnd:pre:2p; +dépanneront dépanner ver 3.56 2.77 0.01 0.00 ind:fut:3p; +dépanneur dépanneur nom m s 1.84 0.68 0.57 0.41 +dépanneurs dépanneur nom m p 1.84 0.68 0.13 0.00 +dépanneuse dépanneur nom f s 1.84 0.68 1.13 0.20 +dépanneuses dépanneuse nom f p 0.02 0.00 0.02 0.00 +dépannons dépanner ver 3.56 2.77 0.01 0.00 ind:pre:1p; +dépanné dépanner ver m s 3.56 2.77 0.47 0.00 par:pas; +dépannée dépanner ver f s 3.56 2.77 0.04 0.14 par:pas; +dépannés dépanner ver m p 3.56 2.77 0.03 0.14 par:pas; +dupant duper ver 4.77 2.70 0.04 0.07 par:pre; +dépaquetait dépaqueter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +déparaient déparer ver 0.13 1.42 0.00 0.14 ind:imp:3p; +déparait déparer ver 0.13 1.42 0.00 0.27 ind:imp:3s; +dépare déparer ver 0.13 1.42 0.11 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépareillaient dépareiller ver 0.10 0.68 0.00 0.07 ind:imp:3p; +dépareillait dépareiller ver 0.10 0.68 0.01 0.00 ind:imp:3s; +dépareiller dépareiller ver 0.10 0.68 0.03 0.00 inf; +dépareilleraient dépareiller ver 0.10 0.68 0.00 0.07 cnd:pre:3p; +dépareillé dépareillé adj m s 0.11 2.03 0.01 0.14 +dépareillée dépareillé adj f s 0.11 2.03 0.02 0.07 +dépareillées dépareillé adj f p 0.11 2.03 0.04 0.95 +dépareillés dépareillé adj m p 0.11 2.03 0.03 0.88 +déparer déparer ver 0.13 1.42 0.01 0.27 inf; +déparerait déparer ver 0.13 1.42 0.01 0.00 cnd:pre:3s; +déparié déparier ver m s 0.00 2.09 0.00 0.95 par:pas; +dépariée déparier ver f s 0.00 2.09 0.00 0.88 par:pas; +dépariées déparier ver f p 0.00 2.09 0.00 0.07 par:pas; +dépariés déparier ver m p 0.00 2.09 0.00 0.20 par:pas; +déparlait déparler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +déparler déparler ver 0.00 0.14 0.00 0.07 inf; +déparât déparer ver 0.13 1.42 0.00 0.07 sub:imp:3s; +départ départ nom m s 68.49 123.04 67.35 116.96 +départage départager ver 0.92 0.81 0.04 0.00 ind:pre:3s; +départageant départager ver 0.92 0.81 0.01 0.00 par:pre; +départager départager ver 0.92 0.81 0.85 0.61 inf; +départagera départager ver 0.92 0.81 0.01 0.07 ind:fut:3s; +départagions départager ver 0.92 0.81 0.00 0.07 ind:imp:1p; +départagé départager ver m s 0.92 0.81 0.00 0.07 par:pas; +départait départir ver 0.67 4.19 0.00 0.47 ind:imp:3s; +département département nom m s 15.53 12.36 14.70 8.04 +départemental départemental adj m s 0.13 2.03 0.02 0.74 +départementale départementale nom f s 0.26 1.42 0.26 1.15 +départementales départemental adj f p 0.13 2.03 0.00 0.34 +départementaux départemental adj m p 0.13 2.03 0.01 0.47 +départements département nom m p 15.53 12.36 0.83 4.32 +départent départir ver 0.67 4.19 0.00 0.07 ind:pre:3p; +départi départir ver m s 0.67 4.19 0.00 0.41 par:pas; +départie départir ver f s 0.67 4.19 0.00 0.07 par:pas; +départir départir ver 0.67 4.19 0.04 1.82 inf; +départira départir ver 0.67 4.19 0.00 0.07 ind:fut:3s; +départirent départir ver 0.67 4.19 0.00 0.14 ind:pas:3p; +départis départir ver m p 0.67 4.19 0.01 0.07 ind:pas:1s;par:pas; +départit départir ver 0.67 4.19 0.00 0.27 ind:pas:3s; +départs départ nom m p 68.49 123.04 1.14 6.08 +déparé déparer ver m s 0.13 1.42 0.00 0.20 par:pas; +dépassa dépasser ver 42.62 78.78 0.05 3.99 ind:pas:3s; +dépassai dépasser ver 42.62 78.78 0.00 0.20 ind:pas:1s; +dépassaient dépasser ver 42.62 78.78 0.17 5.95 ind:imp:3p; +dépassais dépasser ver 42.62 78.78 0.06 0.41 ind:imp:1s;ind:imp:2s; +dépassait dépasser ver 42.62 78.78 1.08 12.84 ind:imp:3s; +dépassant dépasser ver 42.62 78.78 0.47 4.86 par:pre; +dépasse dépasser ver 42.62 78.78 14.14 12.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépassement dépassement nom m s 0.55 0.61 0.49 0.41 +dépassements dépassement nom m p 0.55 0.61 0.06 0.20 +dépassent dépasser ver 42.62 78.78 3.12 5.74 ind:pre:3p; +dépasser dépasser ver 42.62 78.78 6.12 10.27 inf; +dépassera dépasser ver 42.62 78.78 0.19 0.61 ind:fut:3s; +dépasserai dépasser ver 42.62 78.78 0.01 0.07 ind:fut:1s; +dépasseraient dépasser ver 42.62 78.78 0.00 0.07 cnd:pre:3p; +dépasserais dépasser ver 42.62 78.78 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +dépasserait dépasser ver 42.62 78.78 0.41 0.54 cnd:pre:3s; +dépasseras dépasser ver 42.62 78.78 0.05 0.00 ind:fut:2s; +dépasserions dépasser ver 42.62 78.78 0.00 0.07 cnd:pre:1p; +dépasseront dépasser ver 42.62 78.78 0.20 0.14 ind:fut:3p; +dépasses dépasser ver 42.62 78.78 1.63 0.27 ind:pre:2s; +dépassez dépasser ver 42.62 78.78 1.39 0.27 imp:pre:2p;ind:pre:2p; +dépassiez dépasser ver 42.62 78.78 0.05 0.00 ind:imp:2p; +dépassionnons dépassionner ver 0.00 0.07 0.00 0.07 imp:pre:1p; +dépassions dépasser ver 42.62 78.78 0.11 0.54 ind:imp:1p; +dépassâmes dépasser ver 42.62 78.78 0.00 0.27 ind:pas:1p; +dépassons dépasser ver 42.62 78.78 0.19 0.54 imp:pre:1p;ind:pre:1p; +dépassât dépasser ver 42.62 78.78 0.00 0.41 sub:imp:3s; +dépassèrent dépasser ver 42.62 78.78 0.01 1.42 ind:pas:3p; +dépassé dépasser ver m s 42.62 78.78 10.90 12.09 par:pas; +dépassée dépasser ver f s 42.62 78.78 0.82 2.64 par:pas; +dépassées dépasser ver f p 42.62 78.78 0.39 0.47 par:pas; +dépassés dépasser ver m p 42.62 78.78 1.01 1.69 par:pas; +dépatouillait dépatouiller ver 0.05 0.41 0.00 0.07 ind:imp:3s; +dépatouille dépatouiller ver 0.05 0.41 0.00 0.14 ind:pre:1s; +dépatouiller dépatouiller ver 0.05 0.41 0.05 0.20 inf; +dépaver dépaver ver 0.00 0.07 0.00 0.07 inf; +dépaysaient dépayser ver 0.24 3.38 0.00 0.34 ind:imp:3p; +dépaysait dépayser ver 0.24 3.38 0.00 0.41 ind:imp:3s; +dépaysant dépaysant adj m s 0.16 0.34 0.15 0.07 +dépaysante dépaysant adj f s 0.16 0.34 0.00 0.20 +dépaysantes dépaysant adj f p 0.16 0.34 0.01 0.07 +dépayse dépayser ver 0.24 3.38 0.01 0.41 ind:pre:1s;ind:pre:3s; +dépaysement dépaysement nom m s 0.03 3.11 0.03 2.97 +dépaysements dépaysement nom m p 0.03 3.11 0.00 0.14 +dépayser dépayser ver 0.24 3.38 0.04 0.27 inf; +dépaysera dépayser ver 0.24 3.38 0.01 0.00 ind:fut:3s; +dépaysé dépayser ver m s 0.24 3.38 0.14 0.47 par:pas; +dépaysée dépayser ver f s 0.24 3.38 0.03 0.68 par:pas; +dépaysés dépayser ver m p 0.24 3.38 0.01 0.68 par:pas; +dupe dupe adj m s 2.71 8.51 2.37 7.36 +dépecer dépecer ver 1.18 2.57 0.47 0.68 inf; +dépeceur dépeceur nom m s 0.03 0.47 0.03 0.34 +dépeceurs dépeceur nom m p 0.03 0.47 0.00 0.14 +dépecez dépecer ver 1.18 2.57 0.02 0.00 imp:pre:2p;ind:pre:2p; +dépecèrent dépecer ver 1.18 2.57 0.00 0.14 ind:pas:3p; +dépecé dépecer ver m s 1.18 2.57 0.10 0.54 par:pas; +dépecée dépecer ver f s 1.18 2.57 0.02 0.00 par:pas; +dépecés dépecer ver m p 1.18 2.57 0.10 0.41 par:pas; +dépeignaient dépeindre ver 2.24 4.19 0.00 0.07 ind:imp:3p; +dépeignais dépeindre ver 2.24 4.19 0.00 0.07 ind:imp:1s; +dépeignait dépeindre ver 2.24 4.19 0.01 0.68 ind:imp:3s; +dépeignant dépeindre ver 2.24 4.19 0.20 0.00 par:pre; +dépeigne dépeigner ver 0.16 1.15 0.00 0.14 imp:pre:2s;ind:pre:3s; +dépeignent dépeindre ver 2.24 4.19 0.21 0.41 ind:pre:3p;ind:pre:3p;sub:pre:3p; +dépeignirent dépeindre ver 2.24 4.19 0.00 0.07 ind:pas:3p; +dépeignis dépeindre ver 2.24 4.19 0.00 0.07 ind:pas:1s; +dépeignit dépeindre ver 2.24 4.19 0.00 0.07 ind:pas:3s; +dépeigné dépeigner ver m s 0.16 1.15 0.14 0.47 par:pas; +dépeignée dépeigner ver f s 0.16 1.15 0.00 0.34 par:pas; +dépeignés dépeigner ver m p 0.16 1.15 0.00 0.20 par:pas; +dépeindre dépeindre ver 2.24 4.19 0.66 1.01 inf; +dépeins dépeindre ver 2.24 4.19 0.11 0.20 ind:pre:1s;ind:pre:2s; +dépeint dépeindre ver m s 2.24 4.19 0.79 1.15 ind:pre:3s;par:pas; +dépeinte dépeindre ver f s 2.24 4.19 0.04 0.27 par:pas; +dépeintes dépeint adj f p 0.26 0.41 0.11 0.07 +dépeints dépeindre ver m p 2.24 4.19 0.23 0.14 par:pas; +dépenaillement dépenaillement nom m s 0.00 0.14 0.00 0.07 +dépenaillements dépenaillement nom m p 0.00 0.14 0.00 0.07 +dépenaillé dépenaillé adj m s 0.06 1.22 0.05 0.41 +dépenaillée dépenaillé nom f s 0.04 0.61 0.01 0.14 +dépenaillées dépenaillé adj f p 0.06 1.22 0.01 0.07 +dépenaillés dépenaillé adj m p 0.06 1.22 0.00 0.54 +dépend dépendre ver 60.33 36.49 48.30 15.20 ind:pre:3s; +dépendît dépendre ver 60.33 36.49 0.00 0.34 sub:imp:3s; +dépendaient dépendre ver 60.33 36.49 0.13 1.76 ind:imp:3p; +dépendais dépendre ver 60.33 36.49 0.04 0.34 ind:imp:1s;ind:imp:2s; +dépendait dépendre ver 60.33 36.49 1.87 7.64 ind:imp:3s; +dépendance dépendance nom f s 2.42 5.34 2.03 3.51 +dépendances dépendance nom f p 2.42 5.34 0.39 1.82 +dépendant dépendant adj m s 1.81 0.95 0.56 0.34 +dépendante dépendant adj f s 1.81 0.95 0.68 0.27 +dépendantes dépendant adj f p 1.81 0.95 0.13 0.00 +dépendants dépendant adj m p 1.81 0.95 0.44 0.34 +dépende dépendre ver 60.33 36.49 0.17 0.27 sub:pre:1s;sub:pre:3s; +dépendent dépendre ver 60.33 36.49 2.64 2.09 ind:pre:3p; +dépendeur dépendeur nom m s 0.00 0.34 0.00 0.27 +dépendeurs dépendeur nom m p 0.00 0.34 0.00 0.07 +dépendez dépendre ver 60.33 36.49 0.25 0.00 ind:pre:2p; +dépendions dépendre ver 60.33 36.49 0.01 0.07 ind:imp:1p; +dépendit dépendre ver 60.33 36.49 0.00 0.07 ind:pas:3s; +dépendons dépendre ver 60.33 36.49 0.43 0.20 imp:pre:1p;ind:pre:1p; +dépendra dépendre ver 60.33 36.49 2.05 1.22 ind:fut:3s; +dépendraient dépendre ver 60.33 36.49 0.01 0.34 cnd:pre:3p; +dépendrait dépendre ver 60.33 36.49 0.12 1.42 cnd:pre:3s; +dépendre dépendre ver 60.33 36.49 2.46 2.84 inf; +dépendrez dépendre ver 60.33 36.49 0.01 0.14 ind:fut:2p; +dépendront dépendre ver 60.33 36.49 0.07 0.61 ind:fut:3p; +dépends dépendre ver 60.33 36.49 1.18 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dépendu dépendre ver m s 60.33 36.49 0.12 0.68 par:pas; +dépens dépens nom m p 3.19 3.99 3.19 3.99 +dépensa dépenser ver 31.10 15.41 0.04 0.74 ind:pas:3s; +dépensai dépenser ver 31.10 15.41 0.00 0.14 ind:pas:1s; +dépensaient dépenser ver 31.10 15.41 0.03 0.41 ind:imp:3p; +dépensais dépenser ver 31.10 15.41 0.31 0.20 ind:imp:1s;ind:imp:2s; +dépensait dépenser ver 31.10 15.41 0.60 2.09 ind:imp:3s; +dépensant dépenser ver 31.10 15.41 0.23 0.54 par:pre; +dépense dépenser ver 31.10 15.41 4.25 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépensent dépenser ver 31.10 15.41 1.30 0.27 ind:pre:3p; +dépenser dépenser ver 31.10 15.41 8.77 5.14 inf; +dépensera dépenser ver 31.10 15.41 0.21 0.00 ind:fut:3s; +dépenserai dépenser ver 31.10 15.41 0.17 0.07 ind:fut:1s; +dépenseraient dépenser ver 31.10 15.41 0.01 0.00 cnd:pre:3p; +dépenserais dépenser ver 31.10 15.41 0.60 0.07 cnd:pre:1s;cnd:pre:2s; +dépenserait dépenser ver 31.10 15.41 0.04 0.20 cnd:pre:3s; +dépenseras dépenser ver 31.10 15.41 0.12 0.00 ind:fut:2s; +dépenserez dépenser ver 31.10 15.41 0.15 0.07 ind:fut:2p; +dépenserions dépenser ver 31.10 15.41 0.02 0.07 cnd:pre:1p; +dépenseront dépenser ver 31.10 15.41 0.06 0.00 ind:fut:3p; +dépenses dépense nom f p 7.11 8.72 5.29 5.07 +dépensez dépenser ver 31.10 15.41 1.29 0.07 imp:pre:2p;ind:pre:2p; +dépensier dépensier adj m s 0.17 0.68 0.10 0.27 +dépensiers dépensier adj m p 0.17 0.68 0.02 0.07 +dépensiez dépenser ver 31.10 15.41 0.04 0.00 ind:imp:2p; +dépensière dépensier adj f s 0.17 0.68 0.05 0.34 +dépensons dépenser ver 31.10 15.41 0.12 0.07 imp:pre:1p;ind:pre:1p; +dépensé dépenser ver m s 31.10 15.41 10.64 2.36 par:pas; +dépensée dépenser ver f s 31.10 15.41 0.11 0.47 par:pas; +dépensées dépenser ver f p 31.10 15.41 0.06 0.41 par:pas; +dépensés dépenser ver m p 31.10 15.41 0.56 0.27 par:pas; +dupent duper ver 4.77 2.70 0.06 0.00 ind:pre:3p; +duper duper ver 4.77 2.70 1.96 1.35 inf; +dupera duper ver 4.77 2.70 0.04 0.00 ind:fut:3s; +duperas duper ver 4.77 2.70 0.03 0.00 ind:fut:2s; +déperdition déperdition nom f s 0.05 0.34 0.04 0.34 +déperditions déperdition nom f p 0.05 0.34 0.01 0.00 +duperie duperie nom f s 0.43 0.88 0.26 0.81 +duperies duperie nom f p 0.43 0.88 0.17 0.07 +dépersonnalisation dépersonnalisation nom f s 0.02 0.00 0.02 0.00 +dépersonnaliser dépersonnaliser ver 0.03 0.14 0.01 0.14 inf; +dépersonnalisé dépersonnaliser ver m s 0.03 0.14 0.02 0.00 par:pas; +dépersonnalisée dépersonnalisé adj f s 0.00 0.07 0.00 0.07 +dupes dupe nom f p 1.01 1.28 0.66 0.41 +dépeçage dépeçage nom m s 0.01 0.34 0.01 0.34 +dépeçaient dépecer ver 1.18 2.57 0.00 0.14 ind:imp:3p; +dépeçait dépecer ver 1.18 2.57 0.03 0.00 ind:imp:3s; +dépeçant dépecer ver 1.18 2.57 0.00 0.14 par:pre; +dépeuplait dépeupler ver 0.41 1.28 0.00 0.07 ind:imp:3s; +dépeuple dépeupler ver 0.41 1.28 0.14 0.20 ind:pre:3s; +dépeuplent dépeupler ver 0.41 1.28 0.00 0.07 ind:pre:3p; +dépeupler dépeupler ver 0.41 1.28 0.02 0.27 inf; +dépeuplera dépeupler ver 0.41 1.28 0.00 0.07 ind:fut:3s; +dépeuplé dépeupler ver m s 0.41 1.28 0.14 0.34 par:pas; +dépeuplée dépeupler ver f s 0.41 1.28 0.10 0.14 par:pas; +dépeuplées dépeuplé adj f p 0.00 0.61 0.00 0.07 +dépeuplés dépeupler ver m p 0.41 1.28 0.01 0.14 par:pas; +dupeur dupeur nom m s 0.01 0.00 0.01 0.00 +dupez duper ver 4.77 2.70 0.14 0.00 imp:pre:2p;ind:pre:2p; +déphasage déphasage nom m s 0.16 0.00 0.16 0.00 +déphase déphaser ver 0.20 0.20 0.01 0.00 ind:pre:3s; +déphaseurs déphaseur nom m p 0.01 0.00 0.01 0.00 +déphasé déphasé adj m s 0.28 0.20 0.25 0.00 +déphasée déphaser ver f s 0.20 0.20 0.05 0.00 par:pas; +déphasés déphasé adj m p 0.28 0.20 0.02 0.07 +dépiautaient dépiauter ver 0.10 2.03 0.00 0.07 ind:imp:3p; +dépiautait dépiauter ver 0.10 2.03 0.00 0.27 ind:imp:3s; +dépiautant dépiauter ver 0.10 2.03 0.00 0.07 par:pre; +dépiaute dépiauter ver 0.10 2.03 0.01 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépiautent dépiauter ver 0.10 2.03 0.01 0.00 ind:pre:3p; +dépiauter dépiauter ver 0.10 2.03 0.06 0.74 inf; +dépiautera dépiauter ver 0.10 2.03 0.01 0.00 ind:fut:3s; +dépiautèrent dépiauter ver 0.10 2.03 0.00 0.07 ind:pas:3p; +dépiauté dépiauter ver m s 0.10 2.03 0.00 0.34 par:pas; +dépiautés dépiauter ver m p 0.10 2.03 0.01 0.14 par:pas; +dépieute dépieuter ver 0.01 0.07 0.01 0.07 ind:pre:1s;ind:pre:3s; +dépigmentation dépigmentation nom f s 0.01 0.07 0.01 0.07 +dépigmenté dépigmenter ver m s 0.01 0.14 0.00 0.07 par:pas; +dépigmentés dépigmenter ver m p 0.01 0.14 0.01 0.07 par:pas; +dépilatoire dépilatoire adj s 0.04 0.07 0.04 0.07 +dépiler dépiler ver 0.00 0.07 0.00 0.07 inf; +dépiquage dépiquage nom m s 0.00 0.20 0.00 0.20 +dépique dépiquer ver 0.00 0.27 0.00 0.14 ind:pre:3s; +dépiquer dépiquer ver 0.00 0.27 0.00 0.07 inf; +dépiqués dépiquer ver m p 0.00 0.27 0.00 0.07 par:pas; +dépistage dépistage nom m s 0.76 0.47 0.75 0.34 +dépistages dépistage nom m p 0.76 0.47 0.01 0.14 +dépistait dépister ver 0.20 1.15 0.00 0.20 ind:imp:3s; +dépistant dépister ver 0.20 1.15 0.00 0.07 par:pre; +dépiste dépister ver 0.20 1.15 0.02 0.20 ind:pre:3s; +dépister dépister ver 0.20 1.15 0.14 0.54 inf; +dépisté dépister ver m s 0.20 1.15 0.04 0.14 par:pas; +dépit dépit nom m s 5.82 44.12 5.82 44.12 +dépita dépiter ver 0.12 1.15 0.00 0.20 ind:pas:3s; +dépitait dépiter ver 0.12 1.15 0.00 0.14 ind:imp:3s; +dépiter dépiter ver 0.12 1.15 0.10 0.00 inf; +dépité dépité adj m s 0.05 1.62 0.05 0.95 +dépitée dépiter ver f s 0.12 1.15 0.01 0.41 par:pas; +dépités dépité adj m p 0.05 1.62 0.00 0.20 +déplût déplaire ver 12.23 20.61 0.00 0.14 sub:imp:3s; +déplaît déplaire ver 12.23 20.61 5.08 4.32 ind:pre:3s; +déplace déplacer ver 38.63 46.82 7.79 6.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déplacement déplacement nom m s 5.03 11.49 3.38 6.15 +déplacements déplacement nom m p 5.03 11.49 1.64 5.34 +déplacent déplacer ver 38.63 46.82 2.30 2.30 ind:pre:3p; +déplacer déplacer ver 38.63 46.82 13.40 11.08 inf;; +déplacera déplacer ver 38.63 46.82 0.22 0.20 ind:fut:3s; +déplacerai déplacer ver 38.63 46.82 0.39 0.00 ind:fut:1s; +déplaceraient déplacer ver 38.63 46.82 0.00 0.27 cnd:pre:3p; +déplacerait déplacer ver 38.63 46.82 0.03 0.20 cnd:pre:3s; +déplaceras déplacer ver 38.63 46.82 0.02 0.00 ind:fut:2s; +déplacerez déplacer ver 38.63 46.82 0.03 0.00 ind:fut:2p; +déplacerons déplacer ver 38.63 46.82 0.13 0.07 ind:fut:1p; +déplaceront déplacer ver 38.63 46.82 0.03 0.00 ind:fut:3p; +déplaces déplacer ver 38.63 46.82 0.68 0.07 ind:pre:2s; +déplacez déplacer ver 38.63 46.82 1.69 0.07 imp:pre:2p;ind:pre:2p; +déplaciez déplacer ver 38.63 46.82 0.07 0.07 ind:imp:2p; +déplacions déplacer ver 38.63 46.82 0.00 0.20 ind:imp:1p; +déplacèrent déplacer ver 38.63 46.82 0.01 0.61 ind:pas:3p; +déplacé déplacer ver m s 38.63 46.82 5.99 3.99 par:pas; +déplacée déplacer ver f s 38.63 46.82 1.46 1.76 par:pas; +déplacées déplacé adj f p 2.87 3.92 0.40 0.54 +déplacés déplacer ver m p 38.63 46.82 1.40 0.88 par:pas; +déplaira déplaire ver 12.23 20.61 0.27 0.07 ind:fut:3s; +déplairaient déplaire ver 12.23 20.61 0.03 0.00 cnd:pre:3p; +déplairait déplaire ver 12.23 20.61 0.79 0.68 cnd:pre:3s; +déplaire déplaire ver 12.23 20.61 1.52 4.26 inf; +déplairont déplaire ver 12.23 20.61 0.14 0.00 ind:fut:3p; +déplais déplaire ver 12.23 20.61 0.74 0.14 ind:pre:1s;ind:pre:2s; +déplaisaient déplaire ver 12.23 20.61 0.10 0.68 ind:imp:3p; +déplaisais déplaire ver 12.23 20.61 0.02 0.20 ind:imp:1s; +déplaisait déplaire ver 12.23 20.61 0.34 4.86 ind:imp:3s; +déplaisant déplaisant adj m s 3.34 5.47 1.81 2.50 +déplaisante déplaisant adj f s 3.34 5.47 1.00 2.09 +déplaisantes déplaisant adj f p 3.34 5.47 0.37 0.54 +déplaisants déplaisant adj m p 3.34 5.47 0.16 0.34 +déplaise déplaire ver 12.23 20.61 0.88 0.68 sub:pre:1s;sub:pre:3s; +déplaisent déplaire ver 12.23 20.61 0.86 0.41 ind:pre:3p; +déplaisez déplaire ver 12.23 20.61 0.05 0.00 ind:pre:2p; +déplaisiez déplaire ver 12.23 20.61 0.10 0.07 ind:imp:2p; +déplaisir déplaisir nom m s 1.29 1.96 1.03 1.82 +déplaisirs déplaisir nom m p 1.29 1.96 0.27 0.14 +déplanque déplanquer ver 0.00 0.14 0.00 0.14 ind:pre:3s; +déplantoir déplantoir nom m s 0.04 0.00 0.04 0.00 +déplantèrent déplanter ver 0.00 0.07 0.00 0.07 ind:pas:3p; +déplaça déplacer ver 38.63 46.82 0.14 3.04 ind:pas:3s; +déplaçai déplacer ver 38.63 46.82 0.00 0.41 ind:pas:1s; +déplaçaient déplacer ver 38.63 46.82 0.11 2.64 ind:imp:3p; +déplaçais déplacer ver 38.63 46.82 0.30 0.27 ind:imp:1s;ind:imp:2s; +déplaçait déplacer ver 38.63 46.82 1.01 7.23 ind:imp:3s; +déplaçant déplacer ver 38.63 46.82 0.77 4.59 par:pre; +déplaçons déplacer ver 38.63 46.82 0.44 0.20 imp:pre:1p;ind:pre:1p; +déplaçât déplacer ver 38.63 46.82 0.00 0.14 sub:imp:3s; +duplex duplex nom m 0.41 1.35 0.41 1.35 +déplia déplier ver 0.89 19.46 0.00 4.12 ind:pas:3s; +dépliable dépliable adj m s 0.00 0.07 0.00 0.07 +dépliai déplier ver 0.89 19.46 0.00 0.68 ind:pas:1s; +dépliaient déplier ver 0.89 19.46 0.00 0.54 ind:imp:3p; +dépliais déplier ver 0.89 19.46 0.00 0.14 ind:imp:1s; +dépliait déplier ver 0.89 19.46 0.20 2.09 ind:imp:3s; +dépliant dépliant nom m s 0.47 1.69 0.36 1.15 +dépliante dépliant adj f s 0.04 0.34 0.02 0.14 +dépliants dépliant nom m p 0.47 1.69 0.11 0.54 +duplicata duplicata nom m 0.08 0.41 0.08 0.41 +duplicate duplicate nom m s 0.03 0.00 0.03 0.00 +duplicateur duplicateur nom m s 0.23 0.14 0.03 0.14 +duplicateurs duplicateur nom m p 0.23 0.14 0.21 0.00 +duplication duplication nom f s 0.19 0.47 0.19 0.47 +duplice duplice nom f s 0.01 0.14 0.01 0.14 +duplicité duplicité nom f s 0.30 1.28 0.30 1.28 +déplie déplier ver 0.89 19.46 0.27 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépliement dépliement nom m s 0.00 0.14 0.00 0.14 +déplient déplier ver 0.89 19.46 0.00 0.61 ind:pre:3p; +déplier déplier ver 0.89 19.46 0.16 2.43 inf; +déplies déplier ver 0.89 19.46 0.01 0.07 ind:pre:2s; +dépliâmes déplier ver 0.89 19.46 0.00 0.14 ind:pas:1p; +déplions déplier ver 0.89 19.46 0.00 0.14 imp:pre:1p;ind:pre:1p; +dupliquer dupliquer ver 0.31 0.00 0.13 0.00 inf; +dupliqué dupliquer ver m s 0.31 0.00 0.13 0.00 par:pas; +dupliqués dupliquer ver m p 0.31 0.00 0.05 0.00 par:pas; +déplissa déplisser ver 0.01 0.68 0.00 0.07 ind:pas:3s; +déplissaient déplisser ver 0.01 0.68 0.00 0.14 ind:imp:3p; +déplissait déplisser ver 0.01 0.68 0.00 0.27 ind:imp:3s; +déplisse déplisser ver 0.01 0.68 0.00 0.07 ind:pre:3s; +déplissent déplisser ver 0.01 0.68 0.00 0.07 ind:pre:3p; +déplisser déplisser ver 0.01 0.68 0.01 0.07 inf; +déplièrent déplier ver 0.89 19.46 0.00 0.27 ind:pas:3p; +déplié déplier ver m s 0.89 19.46 0.06 3.31 par:pas; +dépliée déplier ver f s 0.89 19.46 0.00 1.08 par:pas; +dépliées déplier ver f p 0.89 19.46 0.03 0.34 par:pas; +dépliés déplier ver m p 0.89 19.46 0.01 0.47 par:pas; +déploie déployer ver 7.09 30.27 0.94 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déploiement déploiement nom m s 1.25 3.04 1.20 2.43 +déploiements déploiement nom m p 1.25 3.04 0.05 0.61 +déploient déployer ver 7.09 30.27 0.34 1.42 ind:pre:3p; +déploiera déployer ver 7.09 30.27 0.04 0.14 ind:fut:3s; +déploierai déployer ver 7.09 30.27 0.00 0.14 ind:fut:1s; +déploieraient déployer ver 7.09 30.27 0.00 0.07 cnd:pre:3p; +déploierait déployer ver 7.09 30.27 0.00 0.07 cnd:pre:3s; +déploieras déployer ver 7.09 30.27 0.00 0.07 ind:fut:2s; +déploierez déployer ver 7.09 30.27 0.03 0.00 ind:fut:2p; +déploierons déployer ver 7.09 30.27 0.02 0.14 ind:fut:1p; +déploieront déployer ver 7.09 30.27 0.02 0.14 ind:fut:3p; +déploies déployer ver 7.09 30.27 0.05 0.00 ind:pre:2s; +déplombé déplomber ver m s 0.00 0.07 0.00 0.07 par:pas; +déplora déplorer ver 2.53 8.04 0.01 0.41 ind:pas:3s; +déplorable déplorable adj s 1.52 5.14 1.29 3.99 +déplorablement déplorablement adv 0.01 0.41 0.01 0.41 +déplorables déplorable adj p 1.52 5.14 0.23 1.15 +déplorai déplorer ver 2.53 8.04 0.00 0.20 ind:pas:1s; +déploraient déplorer ver 2.53 8.04 0.00 0.20 ind:imp:3p; +déplorais déplorer ver 2.53 8.04 0.01 0.34 ind:imp:1s; +déplorait déplorer ver 2.53 8.04 0.01 1.35 ind:imp:3s; +déplorant déplorer ver 2.53 8.04 0.01 0.74 par:pre; +déploration déploration nom f s 0.00 0.20 0.00 0.20 +déplore déplorer ver 2.53 8.04 1.61 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déplorent déplorer ver 2.53 8.04 0.27 0.27 ind:pre:3p; +déplorer déplorer ver 2.53 8.04 0.17 1.49 inf; +déplorerais déplorer ver 2.53 8.04 0.02 0.27 cnd:pre:1s; +déplorerait déplorer ver 2.53 8.04 0.01 0.07 cnd:pre:3s; +déplorerons déplorer ver 2.53 8.04 0.00 0.07 ind:fut:1p; +déplorez déplorer ver 2.53 8.04 0.01 0.14 imp:pre:2p;ind:pre:2p; +déplorions déplorer ver 2.53 8.04 0.00 0.07 ind:imp:1p; +déplorons déplorer ver 2.53 8.04 0.27 0.07 ind:pre:1p; +déplorèrent déplorer ver 2.53 8.04 0.00 0.07 ind:pas:3p; +déploré déplorer ver m s 2.53 8.04 0.13 0.47 par:pas; +déplorée déplorer ver f s 2.53 8.04 0.00 0.07 par:pas; +déplorés déplorer ver m p 2.53 8.04 0.00 0.07 par:pas; +déplâtré déplâtrer ver m s 0.01 0.07 0.01 0.07 par:pas; +déploya déployer ver 7.09 30.27 0.03 1.69 ind:pas:3s; +déployaient déployer ver 7.09 30.27 0.01 2.03 ind:imp:3p; +déployais déployer ver 7.09 30.27 0.00 0.07 ind:imp:1s; +déployait déployer ver 7.09 30.27 0.13 3.78 ind:imp:3s; +déployant déployer ver 7.09 30.27 0.20 1.69 par:pre; +déployasse déployer ver 7.09 30.27 0.00 0.07 sub:imp:1s; +déployer déployer ver 7.09 30.27 1.81 6.01 inf; +déployez déployer ver 7.09 30.27 1.67 0.07 imp:pre:2p;ind:pre:2p; +déployions déployer ver 7.09 30.27 0.00 0.14 ind:imp:1p; +déployons déployer ver 7.09 30.27 0.08 0.14 imp:pre:1p;ind:pre:1p; +déployât déployer ver 7.09 30.27 0.00 0.07 sub:imp:3s; +déployèrent déployer ver 7.09 30.27 0.01 0.27 ind:pas:3p; +déployé déployer ver m s 7.09 30.27 0.94 2.77 par:pas; +déployée déployer ver f s 7.09 30.27 0.24 2.03 par:pas; +déployées déployé adj f p 0.80 5.41 0.32 1.49 +déployés déployer ver m p 7.09 30.27 0.33 1.55 par:pas; +déplu déplaire ver m s 12.23 20.61 1.23 2.50 par:pas; +déplumait déplumer ver 0.17 0.47 0.00 0.07 ind:imp:3s; +déplume déplumer ver 0.17 0.47 0.11 0.07 ind:pre:1s;ind:pre:3s; +déplumer déplumer ver 0.17 0.47 0.02 0.07 inf; +déplumé déplumé adj m s 0.33 1.55 0.16 1.15 +déplumée déplumé adj f s 0.33 1.55 0.16 0.00 +déplumés déplumé adj m p 0.33 1.55 0.02 0.41 +déplurent déplaire ver 12.23 20.61 0.00 0.20 ind:pas:3p; +déplut déplaire ver 12.23 20.61 0.01 1.01 ind:pas:3s; +dépoile dépoiler ver 0.06 0.34 0.03 0.00 ind:pre:1s; +dépoiler dépoiler ver 0.06 0.34 0.03 0.00 inf; +dépoilé dépoiler ver m s 0.06 0.34 0.00 0.14 par:pas; +dépoilée dépoiler ver f s 0.06 0.34 0.00 0.07 par:pas; +dépoilées dépoiler ver f p 0.06 0.34 0.00 0.14 par:pas; +dépointées dépointer ver f p 0.00 0.07 0.00 0.07 par:pas; +dépoitraillé dépoitraillé adj m s 0.02 0.68 0.02 0.27 +dépoitraillée dépoitraillé adj f s 0.02 0.68 0.00 0.20 +dépoitraillées dépoitraillé adj f p 0.02 0.68 0.00 0.07 +dépoitraillés dépoitraillé adj m p 0.02 0.68 0.00 0.14 +dépoli dépoli adj m s 0.01 2.30 0.01 1.15 +dépolie dépoli adj f s 0.01 2.30 0.00 0.34 +dépolies dépoli adj f p 0.01 2.30 0.00 0.47 +dépolis dépoli adj m p 0.01 2.30 0.00 0.34 +dépolissait dépolir ver 0.01 0.95 0.00 0.07 ind:imp:3s; +dépolit dépolir ver 0.01 0.95 0.01 0.07 ind:pre:3s; +dépolitisant dépolitiser ver 0.10 0.07 0.00 0.07 par:pre; +dépolitisé dépolitiser ver m s 0.10 0.07 0.10 0.00 par:pas; +dépolluer dépolluer ver 0.04 0.00 0.04 0.00 inf; +dépollution dépollution nom f s 0.03 0.00 0.03 0.00 +dupons duper ver 4.77 2.70 0.01 0.07 ind:pre:1p; +dépopulation dépopulation nom f s 0.00 0.07 0.00 0.07 +déport déport nom m s 0.00 0.14 0.00 0.14 +déporta déporter ver 2.75 4.26 0.00 0.20 ind:pas:3s; +déportaient déporter ver 2.75 4.26 0.01 0.07 ind:imp:3p; +déportais déporter ver 2.75 4.26 0.01 0.07 ind:imp:1s; +déportait déporter ver 2.75 4.26 0.00 0.14 ind:imp:3s; +déportant déporter ver 2.75 4.26 0.01 0.07 par:pre; +déportation déportation nom f s 1.58 2.23 1.52 2.03 +déportations déportation nom f p 1.58 2.23 0.06 0.20 +déporte déporter ver 2.75 4.26 0.36 0.14 ind:pre:1s;ind:pre:3s; +déportements déportement nom m p 0.27 0.07 0.27 0.07 +déporter déporter ver 2.75 4.26 0.95 0.61 inf; +déporteront déporter ver 2.75 4.26 0.02 0.00 ind:fut:3p; +déportez déporter ver 2.75 4.26 0.01 0.00 imp:pre:2p; +déporté déporter ver m s 2.75 4.26 0.91 1.49 par:pas; +déportée déporter ver f s 2.75 4.26 0.08 0.61 par:pas; +déportées déporter ver f p 2.75 4.26 0.01 0.07 par:pas; +déportés déporté nom m p 2.38 5.74 2.14 4.66 +déposa déposer ver 53.09 62.70 0.19 10.20 ind:pas:3s; +déposai déposer ver 53.09 62.70 0.14 1.08 ind:pas:1s; +déposaient déposer ver 53.09 62.70 0.01 1.42 ind:imp:3p; +déposais déposer ver 53.09 62.70 0.53 0.61 ind:imp:1s;ind:imp:2s; +déposait déposer ver 53.09 62.70 0.32 4.05 ind:imp:3s; +déposant déposer ver 53.09 62.70 0.33 1.55 par:pre; +dépose déposer ver 53.09 62.70 16.14 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déposent déposer ver 53.09 62.70 0.48 0.81 ind:pre:3p; +déposer déposer ver 53.09 62.70 15.03 13.24 ind:pre:2p;inf; +déposera déposer ver 53.09 62.70 0.44 0.68 ind:fut:3s; +déposerai déposer ver 53.09 62.70 0.60 0.14 ind:fut:1s; +déposeraient déposer ver 53.09 62.70 0.00 0.14 cnd:pre:3p; +déposerais déposer ver 53.09 62.70 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +déposerait déposer ver 53.09 62.70 0.06 0.34 cnd:pre:3s; +déposeras déposer ver 53.09 62.70 0.18 0.20 ind:fut:2s; +déposerez déposer ver 53.09 62.70 0.28 0.07 ind:fut:2p; +déposerions déposer ver 53.09 62.70 0.00 0.07 cnd:pre:1p; +déposerons déposer ver 53.09 62.70 0.05 0.07 ind:fut:1p; +déposeront déposer ver 53.09 62.70 0.32 0.14 ind:fut:3p; +déposes déposer ver 53.09 62.70 1.09 0.20 ind:pre:2s; +déposez déposer ver 53.09 62.70 4.06 0.54 imp:pre:2p;ind:pre:2p; +déposiez déposer ver 53.09 62.70 0.02 0.00 ind:imp:2p; +déposions déposer ver 53.09 62.70 0.04 0.14 ind:imp:1p; +dépositaire dépositaire nom s 0.36 2.36 0.23 1.96 +dépositaires dépositaire nom p 0.36 2.36 0.14 0.41 +déposition déposition nom f s 11.25 2.43 9.66 1.82 +dépositions déposition nom f p 11.25 2.43 1.59 0.61 +déposâmes déposer ver 53.09 62.70 0.01 0.20 ind:pas:1p; +déposons déposer ver 53.09 62.70 0.10 0.20 imp:pre:1p;ind:pre:1p; +déposât déposer ver 53.09 62.70 0.00 0.07 sub:imp:3s; +dépossession dépossession nom f s 0.00 1.22 0.00 1.22 +dépossède déposséder ver 0.83 2.97 0.02 0.00 ind:pre:1s;ind:pre:3s; +dépossédais déposséder ver 0.83 2.97 0.00 0.07 ind:imp:1s; +dépossédait déposséder ver 0.83 2.97 0.00 0.14 ind:imp:3s; +déposséder déposséder ver 0.83 2.97 0.08 0.61 inf; +dépossédé déposséder ver m s 0.83 2.97 0.21 1.28 par:pas; +dépossédée déposséder ver f s 0.83 2.97 0.31 0.27 par:pas; +dépossédées déposséder ver f p 0.83 2.97 0.00 0.20 par:pas; +dépossédés déposséder ver m p 0.83 2.97 0.21 0.41 par:pas; +déposèrent déposer ver 53.09 62.70 0.04 0.88 ind:pas:3p; +déposé déposer ver m s 53.09 62.70 8.73 10.34 par:pas; +déposée déposer ver f s 53.09 62.70 2.34 3.58 par:pas; +déposées déposer ver f p 53.09 62.70 0.60 1.35 par:pas; +déposés déposer ver m p 53.09 62.70 0.81 2.36 par:pas; +dépote dépoter ver 0.23 0.27 0.15 0.14 imp:pre:2s;ind:pre:3s; +dépotent dépoter ver 0.23 0.27 0.00 0.07 ind:pre:3p; +dépoter dépoter ver 0.23 0.27 0.07 0.00 inf; +dépotoir dépotoir nom m s 1.22 1.82 1.22 1.82 +dépoté dépoter ver m s 0.23 0.27 0.01 0.07 par:pas; +dépoudrer dépoudrer ver 0.01 0.00 0.01 0.00 inf; +dépouilla dépouiller ver 4.54 20.54 0.03 0.68 ind:pas:3s; +dépouillage dépouillage nom m s 0.01 0.00 0.01 0.00 +dépouillaient dépouiller ver 4.54 20.54 0.02 0.95 ind:imp:3p; +dépouillais dépouiller ver 4.54 20.54 0.00 0.20 ind:imp:1s; +dépouillait dépouiller ver 4.54 20.54 0.03 1.15 ind:imp:3s; +dépouillant dépouiller ver 4.54 20.54 0.01 0.61 par:pre; +dépouille dépouille nom f s 1.94 6.62 1.69 5.00 +dépouillement dépouillement nom m s 0.17 2.64 0.17 2.50 +dépouillements dépouillement nom m p 0.17 2.64 0.00 0.14 +dépouillent dépouiller ver 4.54 20.54 0.08 0.47 ind:pre:3p; +dépouiller dépouiller ver 4.54 20.54 2.07 5.14 inf; +dépouillera dépouiller ver 4.54 20.54 0.01 0.00 ind:fut:3s; +dépouillerais dépouiller ver 4.54 20.54 0.01 0.00 cnd:pre:1s; +dépouillerait dépouiller ver 4.54 20.54 0.00 0.07 cnd:pre:3s; +dépouillerez dépouiller ver 4.54 20.54 0.01 0.00 ind:fut:2p; +dépouilles dépouille nom f p 1.94 6.62 0.25 1.62 +dépouillez dépouiller ver 4.54 20.54 0.05 0.00 imp:pre:2p;ind:pre:2p; +dépouillons dépouiller ver 4.54 20.54 0.02 0.07 imp:pre:1p; +dépouillât dépouiller ver 4.54 20.54 0.00 0.07 sub:imp:3s; +dépouillèrent dépouiller ver 4.54 20.54 0.14 0.14 ind:pas:3p; +dépouillé dépouiller ver m s 4.54 20.54 0.90 4.59 par:pas; +dépouillée dépouiller ver f s 4.54 20.54 0.31 2.43 par:pas; +dépouillées dépouiller ver f p 4.54 20.54 0.01 0.41 par:pas; +dépouillés dépouillé adj m p 0.94 3.04 0.66 0.61 +dépourvu dépourvu adj m s 1.10 4.32 1.00 2.03 +dépourvue dépourvoir ver f s 1.71 12.36 0.73 4.12 par:pas; +dépourvues dépourvoir ver f p 1.71 12.36 0.12 1.22 par:pas; +dépourvus dépourvu adj m p 1.10 4.32 0.09 1.82 +dépoussière dépoussiérer ver 0.78 0.27 0.02 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépoussiérage dépoussiérage nom m s 0.01 0.07 0.01 0.07 +dépoussiéraient dépoussiérer ver 0.78 0.27 0.00 0.07 ind:imp:3p; +dépoussiérant dépoussiérer ver 0.78 0.27 0.14 0.00 par:pre; +dépoussiérer dépoussiérer ver 0.78 0.27 0.45 0.14 inf; +dépoussiérez dépoussiérer ver 0.78 0.27 0.03 0.00 imp:pre:2p; +dépoussiéré dépoussiérer ver m s 0.78 0.27 0.14 0.00 par:pas; +dépoétisent dépoétiser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +dépravation dépravation nom f s 0.61 0.95 0.56 0.61 +dépravations dépravation nom f p 0.61 0.95 0.05 0.34 +dépraver dépraver ver 0.48 0.14 0.06 0.00 inf; +dépravons dépraver ver 0.48 0.14 0.01 0.00 ind:pre:1p; +dépravé dépravé nom m s 1.07 0.47 0.63 0.34 +dépravée dépravé adj f s 1.24 0.68 0.30 0.00 +dépravées dépravé adj f p 1.24 0.68 0.32 0.07 +dépravés dépravé nom m p 1.07 0.47 0.29 0.07 +déprenais déprendre ver 0.01 2.03 0.00 0.14 ind:imp:1s; +déprenait déprendre ver 0.01 2.03 0.00 0.07 ind:imp:3s; +déprend déprendre ver 0.01 2.03 0.01 0.07 ind:pre:3s; +déprendre déprendre ver 0.01 2.03 0.00 0.74 inf; +déprendront déprendre ver 0.01 2.03 0.00 0.07 ind:fut:3p; +dépressif dépressif adj m s 1.83 0.74 1.11 0.34 +dépressifs dépressif adj m p 1.83 0.74 0.17 0.14 +dépression dépression nom f s 10.41 8.38 10.10 7.36 +dépressionnaire dépressionnaire adj m s 0.03 0.07 0.03 0.07 +dépressions dépression nom f p 10.41 8.38 0.32 1.01 +dépressive dépressif adj f s 1.83 0.74 0.49 0.20 +dépressives dépressif adj f p 1.83 0.74 0.05 0.07 +dépressurisait dépressuriser ver 0.33 0.00 0.01 0.00 ind:imp:3s; +dépressurisation dépressurisation nom f s 0.36 0.14 0.36 0.14 +dépressurise dépressuriser ver 0.33 0.00 0.03 0.00 ind:pre:3s; +dépressuriser dépressuriser ver 0.33 0.00 0.14 0.00 inf; +dépressurisé dépressuriser ver m s 0.33 0.00 0.10 0.00 par:pas; +dépressurisés dépressuriser ver m p 0.33 0.00 0.05 0.00 par:pas; +déprima déprimer ver 10.61 3.85 0.01 0.14 ind:pas:3s; +déprimais déprimer ver 10.61 3.85 0.06 0.00 ind:imp:1s;ind:imp:2s; +déprimait déprimer ver 10.61 3.85 0.21 0.34 ind:imp:3s; +déprimant déprimant adj m s 3.83 3.31 2.85 1.49 +déprimante déprimant adj f s 3.83 3.31 0.62 1.28 +déprimantes déprimant adj f p 3.83 3.31 0.25 0.20 +déprimants déprimant adj m p 3.83 3.31 0.11 0.34 +déprime déprimer ver 10.61 3.85 3.61 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépriment déprimer ver 10.61 3.85 0.28 0.07 ind:pre:3p; +déprimer déprimer ver 10.61 3.85 1.05 0.54 inf; +déprimerais déprimer ver 10.61 3.85 0.10 0.00 cnd:pre:2s; +déprimerait déprimer ver 10.61 3.85 0.25 0.00 cnd:pre:3s; +déprimes déprimer ver 10.61 3.85 0.75 0.07 ind:pre:2s; +déprimez déprimer ver 10.61 3.85 0.04 0.00 ind:pre:2p; +déprimé déprimer ver m s 10.61 3.85 2.50 0.61 par:pas; +déprimée déprimer ver f s 10.61 3.85 1.43 0.41 par:pas; +déprimées déprimer ver f p 10.61 3.85 0.12 0.00 par:pas; +déprimés déprimé adj m p 3.29 1.62 0.16 0.27 +déprirent déprendre ver 0.01 2.03 0.00 0.14 ind:pas:3p; +dépris déprendre ver m 0.01 2.03 0.00 0.74 ind:pas:1s;par:pas;par:pas; +déprit déprendre ver 0.01 2.03 0.00 0.07 ind:pas:3s; +déprogrammation déprogrammation nom f s 0.07 0.00 0.07 0.00 +déprogrammer déprogrammer ver 0.37 0.07 0.21 0.00 inf; +déprogrammez déprogrammer ver 0.37 0.07 0.01 0.00 imp:pre:2p; +déprogrammé déprogrammer ver m s 0.37 0.07 0.07 0.07 par:pas; +déprogrammée déprogrammer ver f s 0.37 0.07 0.07 0.00 par:pas; +dépréciait déprécier ver 0.69 1.28 0.10 0.14 ind:imp:3s; +dépréciant déprécier ver 0.69 1.28 0.02 0.00 par:pre; +dépréciation dépréciation nom f s 0.05 0.41 0.05 0.41 +déprécie déprécier ver 0.69 1.28 0.21 0.07 imp:pre:2s;ind:pre:3s; +déprécier déprécier ver 0.69 1.28 0.15 0.61 inf; +déprécies déprécier ver 0.69 1.28 0.01 0.07 ind:pre:2s; +dépréciez déprécier ver 0.69 1.28 0.00 0.07 ind:pre:2p; +dépréciiez déprécier ver 0.69 1.28 0.00 0.07 ind:imp:2p; +déprécié déprécier ver m s 0.69 1.28 0.19 0.14 par:pas; +dépréciée déprécier ver f s 0.69 1.28 0.01 0.14 par:pas; +déprédateur déprédateur adj m s 0.00 0.07 0.00 0.07 +déprédateurs déprédateur nom m p 0.00 0.14 0.00 0.14 +déprédation déprédation nom f s 0.01 0.41 0.00 0.07 +déprédations déprédation nom f p 0.01 0.41 0.01 0.34 +dépèce dépecer ver 1.18 2.57 0.29 0.27 imp:pre:2s;ind:pre:3s; +dépècements dépècement nom m p 0.00 0.07 0.00 0.07 +dépècent dépecer ver 1.18 2.57 0.02 0.14 ind:pre:3p; +dépècera dépecer ver 1.18 2.57 0.00 0.07 ind:fut:3s; +dépècerai dépecer ver 1.18 2.57 0.13 0.00 ind:fut:1s; +dépèceraient dépecer ver 1.18 2.57 0.00 0.07 cnd:pre:3p; +dupé duper ver m s 4.77 2.70 1.15 0.34 par:pas; +dépucela dépuceler ver 1.38 1.01 0.00 0.07 ind:pas:3s; +dépucelage dépucelage nom m s 0.41 0.41 0.41 0.34 +dépucelages dépucelage nom m p 0.41 0.41 0.00 0.07 +dépuceler dépuceler ver 1.38 1.01 0.55 0.34 inf; +dépuceleur dépuceleur nom m s 0.02 0.07 0.01 0.00 +dépuceleurs dépuceleur nom m p 0.02 0.07 0.01 0.07 +dépucelle dépuceler ver 1.38 1.01 0.17 0.07 ind:pre:1s;ind:pre:3s; +dépucellera dépuceler ver 1.38 1.01 0.00 0.07 ind:fut:3s; +dépucelons dépuceler ver 1.38 1.01 0.03 0.00 imp:pre:1p; +dépucelé dépuceler ver m s 1.38 1.01 0.39 0.27 par:pas; +dépucelée dépuceler ver f s 1.38 1.01 0.25 0.20 par:pas; +dépêcha dépêcher ver 111.44 22.84 0.00 1.55 ind:pas:3s; +dépêchai dépêcher ver 111.44 22.84 0.01 0.14 ind:pas:1s; +dépêchaient dépêcher ver 111.44 22.84 0.00 0.27 ind:imp:3p; +dépêchais dépêcher ver 111.44 22.84 0.03 0.07 ind:imp:1s;ind:imp:2s; +dépêchait dépêcher ver 111.44 22.84 0.05 1.15 ind:imp:3s; +dépêchant dépêcher ver 111.44 22.84 0.08 0.41 par:pre; +dépêche dépêcher ver 111.44 22.84 55.90 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépêchent dépêcher ver 111.44 22.84 0.35 0.47 ind:pre:3p; +dépêcher dépêcher ver 111.44 22.84 7.52 3.65 inf; +dépêcherais dépêcher ver 111.44 22.84 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +dépêcherons dépêcher ver 111.44 22.84 0.00 0.07 ind:fut:1p; +dépêches dépêcher ver 111.44 22.84 0.96 0.20 ind:pre:2s;sub:pre:2s; +dépêchez dépêcher ver 111.44 22.84 35.35 2.77 imp:pre:2p;ind:pre:2p; +dépêchions dépêcher ver 111.44 22.84 0.01 0.07 ind:imp:1p; +dépêchons dépêcher ver 111.44 22.84 10.21 1.55 imp:pre:1p;ind:pre:1p; +dépêchât dépêcher ver 111.44 22.84 0.00 0.07 sub:imp:3s; +dépêchèrent dépêcher ver 111.44 22.84 0.00 0.14 ind:pas:3p; +dépêché dépêcher ver m s 111.44 22.84 0.27 1.55 par:pas; +dépêchée dépêcher ver f s 111.44 22.84 0.40 0.47 par:pas; +dépêchées dépêcher ver f p 111.44 22.84 0.11 0.07 par:pas; +dépêchés dépêcher ver m p 111.44 22.84 0.04 0.61 par:pas; +dupée duper ver f s 4.77 2.70 0.18 0.34 par:pas; +dépulpé dépulper ver m s 0.00 0.07 0.00 0.07 par:pas; +dépénaliser dépénaliser ver 0.01 0.00 0.01 0.00 inf; +dépuratifs dépuratif adj m p 0.00 0.07 0.00 0.07 +dépuratifs dépuratif nom m p 0.00 0.07 0.00 0.07 +dépéri dépérir ver m s 1.73 1.89 0.36 0.07 par:pas; +dépérir dépérir ver 1.73 1.89 0.41 0.74 inf; +dépérira dépérir ver 1.73 1.89 0.02 0.00 ind:fut:3s; +dépériraient dépérir ver 1.73 1.89 0.00 0.07 cnd:pre:3p; +dépérirait dépérir ver 1.73 1.89 0.01 0.00 cnd:pre:3s; +dépériront dépérir ver 1.73 1.89 0.01 0.07 ind:fut:3p; +dépéris dépérir ver 1.73 1.89 0.06 0.07 ind:pre:1s;ind:pre:2s; +dépérissaient dépérir ver 1.73 1.89 0.00 0.07 ind:imp:3p; +dépérissais dépérir ver 1.73 1.89 0.01 0.14 ind:imp:1s;ind:imp:2s; +dépérissait dépérir ver 1.73 1.89 0.02 0.27 ind:imp:3s; +dépérisse dépérir ver 1.73 1.89 0.02 0.07 sub:pre:3s; +dépérissement dépérissement nom m s 0.00 0.34 0.00 0.34 +dépérissent dépérir ver 1.73 1.89 0.08 0.00 ind:pre:3p; +dépérit dépérir ver 1.73 1.89 0.73 0.34 ind:pre:3s;ind:pas:3s; +dépurés dépurer ver m p 0.00 0.07 0.00 0.07 par:pas; +dupés duper ver m p 4.77 2.70 0.81 0.07 par:pas; +députation députation nom f s 0.00 0.34 0.00 0.20 +députations députation nom f p 0.00 0.34 0.00 0.14 +députer députer ver 0.19 0.07 0.01 0.00 inf; +dépêtrer dépêtrer ver 0.13 1.01 0.13 0.81 inf; +dépêtré dépêtrer ver m s 0.13 1.01 0.00 0.07 par:pas; +dépêtrée dépêtrer ver f s 0.13 1.01 0.00 0.07 par:pas; +dépêtrés dépêtrer ver m p 0.13 1.01 0.00 0.07 par:pas; +députèrent députer ver 0.19 0.07 0.00 0.07 ind:pas:3p; +député_maire député_maire nom m s 0.00 0.34 0.00 0.34 +député député nom m s 10.40 10.88 7.40 6.42 +députée député nom f s 10.40 10.88 0.42 0.00 +députés député nom m p 10.40 10.88 2.59 4.46 +déqualifier déqualifier ver 0.01 0.00 0.01 0.00 inf; +duquel duquel pro_rel m s 2.36 30.20 1.92 22.57 +déquiller déquiller ver 0.00 0.27 0.00 0.14 inf; +déquillé déquiller ver m s 0.00 0.27 0.00 0.07 par:pas; +déquillés déquiller ver m p 0.00 0.27 0.00 0.07 par:pas; +dur dur adj m s 187.84 146.69 145.55 80.68 +dura durer ver 74.39 101.62 1.56 12.70 ind:pas:3s; +durabilité durabilité nom f s 0.01 0.00 0.01 0.00 +durable durable adj s 2.13 5.95 1.61 4.73 +durablement durablement adv 0.00 0.74 0.00 0.74 +durables durable adj p 2.13 5.95 0.53 1.22 +déracina déraciner ver 0.85 2.23 0.01 0.07 ind:pas:3s; +déracinaient déraciner ver 0.85 2.23 0.01 0.00 ind:imp:3p; +déracinais déraciner ver 0.85 2.23 0.00 0.07 ind:imp:1s; +déracinait déraciner ver 0.85 2.23 0.00 0.20 ind:imp:3s; +déracinant déracinant adj m s 0.00 0.14 0.00 0.14 +déracine déraciner ver 0.85 2.23 0.10 0.20 ind:pre:3s; +déracinement déracinement nom m s 0.11 0.54 0.11 0.54 +déracinent déraciner ver 0.85 2.23 0.01 0.14 ind:pre:3p; +déraciner déraciner ver 0.85 2.23 0.27 0.61 inf; +déracinerait déraciner ver 0.85 2.23 0.00 0.07 cnd:pre:3s; +déraciné déraciner ver m s 0.85 2.23 0.43 0.54 par:pas; +déracinée déraciner ver f s 0.85 2.23 0.01 0.07 par:pas; +déracinées déraciner ver f p 0.85 2.23 0.01 0.00 par:pas; +déracinés déraciné adj m p 0.04 0.74 0.01 0.41 +duraient durer ver 74.39 101.62 0.43 2.03 ind:imp:3p; +dérailla dérailler ver 4.74 3.18 0.00 0.20 ind:pas:3s; +déraillaient dérailler ver 4.74 3.18 0.00 0.07 ind:imp:3p; +déraillais dérailler ver 4.74 3.18 0.00 0.07 ind:imp:1s; +déraillait dérailler ver 4.74 3.18 0.02 0.34 ind:imp:3s; +déraillant dérailler ver 4.74 3.18 0.00 0.07 par:pre; +déraille dérailler ver 4.74 3.18 1.89 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +duraille duraille adj s 0.02 2.43 0.00 2.36 +déraillement déraillement nom m s 0.49 0.54 0.35 0.27 +déraillements déraillement nom m p 0.49 0.54 0.14 0.27 +déraillent dérailler ver 4.74 3.18 0.05 0.07 ind:pre:3p; +dérailler dérailler ver 4.74 3.18 1.25 1.15 inf; +déraillera dérailler ver 4.74 3.18 0.02 0.00 ind:fut:3s; +dérailles dérailler ver 4.74 3.18 0.42 0.20 ind:pre:2s; +durailles duraille adj m p 0.02 2.43 0.02 0.07 +dérailleur dérailleur nom m s 0.02 0.81 0.02 0.81 +déraillez dérailler ver 4.74 3.18 0.21 0.00 ind:pre:2p; +déraillé dérailler ver m s 4.74 3.18 0.89 0.47 par:pas; +déraison déraison nom f s 0.36 1.35 0.36 1.15 +déraisonnable déraisonnable adj s 1.35 2.77 1.15 2.30 +déraisonnablement déraisonnablement adv 0.00 0.14 0.00 0.14 +déraisonnables déraisonnable adj p 1.35 2.77 0.20 0.47 +déraisonnait déraisonner ver 0.87 1.15 0.01 0.41 ind:imp:3s; +déraisonne déraisonner ver 0.87 1.15 0.20 0.20 ind:pre:1s;ind:pre:3s; +déraisonner déraisonner ver 0.87 1.15 0.10 0.34 inf; +déraisonnes déraisonner ver 0.87 1.15 0.29 0.20 ind:pre:2s; +déraisonnez déraisonner ver 0.87 1.15 0.17 0.00 ind:pre:2p; +déraisonné déraisonner ver m s 0.87 1.15 0.10 0.00 par:pas; +déraisons déraison nom f p 0.36 1.35 0.00 0.20 +durait durer ver 74.39 101.62 1.04 8.92 ind:imp:3s; +durale dural adj f s 0.01 0.00 0.01 0.00 +duralumin duralumin nom m s 0.00 0.27 0.00 0.27 +dérange déranger ver 126.95 43.99 63.69 10.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérangea déranger ver 126.95 43.99 0.01 0.61 ind:pas:3s; +dérangeaient déranger ver 126.95 43.99 0.07 1.01 ind:imp:3p; +dérangeais déranger ver 126.95 43.99 0.18 0.27 ind:imp:1s;ind:imp:2s; +dérangeait déranger ver 126.95 43.99 1.28 3.51 ind:imp:3s; +dérangeant dérangeant adj m s 1.04 1.01 0.79 0.34 +dérangeante dérangeant adj f s 1.04 1.01 0.14 0.41 +dérangeantes dérangeant adj f p 1.04 1.01 0.06 0.14 +dérangeants dérangeant adj m p 1.04 1.01 0.04 0.14 +dérangeassent déranger ver 126.95 43.99 0.00 0.07 sub:imp:3p; +dérangement dérangement nom m s 3.74 1.89 3.61 1.55 +dérangements dérangement nom m p 3.74 1.89 0.14 0.34 +dérangent déranger ver 126.95 43.99 1.97 1.08 ind:pre:3p; +dérangeons déranger ver 126.95 43.99 0.65 0.14 imp:pre:1p;ind:pre:1p; +dérangeât déranger ver 126.95 43.99 0.00 0.34 sub:imp:3s; +déranger déranger ver 126.95 43.99 31.38 14.59 inf;; +dérangera déranger ver 126.95 43.99 1.88 0.61 ind:fut:3s; +dérangerai déranger ver 126.95 43.99 0.98 0.20 ind:fut:1s; +dérangeraient déranger ver 126.95 43.99 0.01 0.07 cnd:pre:3p; +dérangerais déranger ver 126.95 43.99 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +dérangerait déranger ver 126.95 43.99 2.71 0.74 cnd:pre:3s; +dérangeras déranger ver 126.95 43.99 0.11 0.00 ind:fut:2s; +dérangerez déranger ver 126.95 43.99 0.33 0.07 ind:fut:2p; +dérangerons déranger ver 126.95 43.99 0.18 0.00 ind:fut:1p; +déranges déranger ver 126.95 43.99 2.11 0.47 ind:pre:2s; +dérangez déranger ver 126.95 43.99 6.75 1.55 imp:pre:2p;ind:pre:2p; +dérangiez déranger ver 126.95 43.99 0.01 0.00 ind:imp:2p; +dérangions déranger ver 126.95 43.99 0.00 0.14 ind:imp:1p; +dérangé déranger ver m s 126.95 43.99 7.98 3.99 par:pas; +dérangée déranger ver f s 126.95 43.99 2.38 1.62 par:pas; +dérangées déranger ver f p 126.95 43.99 0.06 0.41 par:pas; +dérangés déranger ver m p 126.95 43.99 1.67 0.95 par:pas; +durant durant pre 34.15 65.95 34.15 65.95 +dérapa déraper ver 3.85 8.31 0.00 1.01 ind:pas:3s; +dérapage dérapage nom m s 0.89 2.36 0.79 1.69 +dérapages dérapage nom m p 0.89 2.36 0.10 0.68 +dérapai déraper ver 3.85 8.31 0.00 0.14 ind:pas:1s; +dérapaient déraper ver 3.85 8.31 0.00 0.61 ind:imp:3p; +dérapait déraper ver 3.85 8.31 0.23 1.08 ind:imp:3s; +dérapant déraper ver 3.85 8.31 0.00 1.15 par:pre; +dérape déraper ver 3.85 8.31 0.95 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérapent déraper ver 3.85 8.31 0.10 0.14 ind:pre:3p; +déraper déraper ver 3.85 8.31 0.53 1.28 inf; +déraperont déraper ver 3.85 8.31 0.00 0.07 ind:fut:3p; +dérapes déraper ver 3.85 8.31 0.06 0.20 ind:pre:2s; +dérapez déraper ver 3.85 8.31 0.26 0.07 imp:pre:2p;ind:pre:2p; +dérapé déraper ver m s 3.85 8.31 1.72 0.61 par:pas; +durassent durer ver 74.39 101.62 0.00 0.07 sub:imp:3p; +dératisation dératisation nom f s 0.27 0.14 0.27 0.07 +dératisations dératisation nom f p 0.27 0.14 0.00 0.07 +dératiser dératiser ver 0.20 0.07 0.17 0.00 inf; +dératisé dératiser ver m s 0.20 0.07 0.02 0.00 par:pas; +dératisée dératiser ver f s 0.20 0.07 0.00 0.07 par:pas; +dératisés dératiser ver m p 0.20 0.07 0.01 0.00 par:pas; +dératé dératé nom m s 0.26 1.22 0.20 0.74 +dératées dératé nom f p 0.26 1.22 0.03 0.07 +dératés dératé nom m p 0.26 1.22 0.02 0.41 +dérayer dérayer ver 0.01 0.00 0.01 0.00 inf; +durci durci adj m s 0.22 4.12 0.16 1.55 +durcie durcir ver f s 1.79 13.99 0.13 0.95 par:pas; +durcies durcir ver f p 1.79 13.99 0.00 0.47 par:pas; +durcir durcir ver 1.79 13.99 0.73 2.23 inf; +durciraient durcir ver 1.79 13.99 0.00 0.07 cnd:pre:3p; +durcirent durcir ver 1.79 13.99 0.14 0.07 ind:pas:3p; +durcis durcir ver m p 1.79 13.99 0.09 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +durcissaient durcir ver 1.79 13.99 0.00 0.20 ind:imp:3p; +durcissais durcir ver 1.79 13.99 0.00 0.14 ind:imp:1s; +durcissait durcir ver 1.79 13.99 0.02 2.30 ind:imp:3s; +durcissant durcir ver 1.79 13.99 0.01 0.54 par:pre; +durcisse durcir ver 1.79 13.99 0.05 0.14 sub:pre:3s; +durcissement durcissement nom m s 0.01 0.74 0.01 0.74 +durcissent durcir ver 1.79 13.99 0.17 0.34 ind:pre:3p; +durcisseur durcisseur nom m s 0.03 0.00 0.03 0.00 +durcit durcir ver 1.79 13.99 0.30 3.65 ind:pre:3s;ind:pas:3s; +dure_mère dure_mère nom f s 0.02 0.07 0.02 0.07 +dure dur adj f s 187.84 146.69 26.16 33.65 +durement durement adv 3.27 12.97 3.27 12.97 +durent devoir ver_sup 3232.80 1318.24 2.98 6.35 ind:pas:3p; +durer durer ver 74.39 101.62 20.59 24.05 inf; +durera durer ver 74.39 101.62 8.35 4.73 ind:fut:3s; +durerai durer ver 74.39 101.62 0.19 0.20 ind:fut:1s; +dureraient durer ver 74.39 101.62 0.04 0.74 cnd:pre:3p; +durerais durer ver 74.39 101.62 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +durerait durer ver 74.39 101.62 1.16 3.31 cnd:pre:3s; +dureras durer ver 74.39 101.62 0.01 0.00 ind:fut:2s; +durerez durer ver 74.39 101.62 0.06 0.00 ind:fut:2p; +dureront durer ver 74.39 101.62 0.82 0.54 ind:fut:3p; +dures dur adj f p 187.84 146.69 4.05 11.89 +déresponsabilisation déresponsabilisation nom f s 0.00 0.07 0.00 0.07 +dureté dureté nom f s 1.56 12.23 1.56 11.35 +duretés dureté nom f p 1.56 12.23 0.00 0.88 +durham durham nom m s 0.09 0.00 0.09 0.00 +durian durian nom m s 2.21 0.00 2.21 0.00 +dérida dérider ver 0.57 2.50 0.00 0.34 ind:pas:3s; +déridait dérider ver 0.57 2.50 0.00 0.20 ind:imp:3s; +déride dérider ver 0.57 2.50 0.17 0.07 imp:pre:2s;ind:pre:3s; +dérider dérider ver 0.57 2.50 0.19 1.49 inf; +déridera dérider ver 0.57 2.50 0.01 0.07 ind:fut:3s; +dériderait dérider ver 0.57 2.50 0.01 0.07 cnd:pre:3s; +déridez dérider ver 0.57 2.50 0.18 0.00 imp:pre:2p; +déridé dérider ver m s 0.57 2.50 0.01 0.27 par:pas; +durillon durillon nom m s 0.05 1.01 0.00 0.41 +durillons durillon nom m p 0.05 1.01 0.05 0.61 +dérision dérision nom f s 1.27 8.51 1.27 8.51 +dérisoire dérisoire adj s 1.38 21.42 1.09 15.27 +dérisoirement dérisoirement adv 0.10 0.54 0.10 0.54 +dérisoires dérisoire adj p 1.38 21.42 0.29 6.15 +durit durit nom f s 0.04 0.00 0.04 0.00 +durite durite nom f s 0.50 0.07 0.47 0.07 +durites durite nom f p 0.50 0.07 0.03 0.00 +dériva dériver ver 4.28 11.42 0.00 0.54 ind:pas:3s; +dérivaient dériver ver 4.28 11.42 0.02 1.08 ind:imp:3p; +dérivais dériver ver 4.28 11.42 0.04 0.07 ind:imp:1s; +dérivait dériver ver 4.28 11.42 0.06 1.55 ind:imp:3s; +dérivant dériver ver 4.28 11.42 0.18 1.22 par:pre; +dérivante dérivant adj f s 0.03 0.07 0.01 0.00 +dérivatif dérivatif nom m s 0.03 0.54 0.03 0.47 +dérivatifs dérivatif nom m p 0.03 0.54 0.00 0.07 +dérivation dérivation nom f s 0.57 0.68 0.55 0.68 +dérivations dérivation nom f p 0.57 0.68 0.02 0.00 +dérive dérive nom f s 2.81 6.89 2.77 6.55 +dérivent dériver ver 4.28 11.42 0.26 1.15 ind:pre:3p; +dériver dériver ver 4.28 11.42 1.09 3.18 inf; +dériverai dériver ver 4.28 11.42 0.01 0.07 ind:fut:1s; +dériveras dériver ver 4.28 11.42 0.14 0.00 ind:fut:2s; +dérives dériver ver 4.28 11.42 0.22 0.00 ind:pre:2s; +dériveur dériveur nom m s 0.14 0.20 0.14 0.14 +dériveurs dériveur nom m p 0.14 0.20 0.01 0.07 +dérivez dériver ver 4.28 11.42 0.05 0.00 imp:pre:2p;ind:pre:2p; +dérivions dériver ver 4.28 11.42 0.02 0.14 ind:imp:1p; +dérivons dériver ver 4.28 11.42 0.26 0.07 ind:pre:1p; +dérivé dériver ver m s 4.28 11.42 0.84 0.54 par:pas; +dérivée dériver ver f s 4.28 11.42 0.05 0.07 par:pas; +dérivées dérivé adj f p 0.57 0.27 0.06 0.07 +dérivés dérivé adj m p 0.57 0.27 0.44 0.07 +déroba dérober ver 7.15 27.23 0.03 1.22 ind:pas:3s; +dérobade dérobade nom f s 0.21 2.77 0.21 1.76 +dérobades dérobade nom f p 0.21 2.77 0.00 1.01 +dérobai dérober ver 7.15 27.23 0.00 0.20 ind:pas:1s; +dérobaient dérober ver 7.15 27.23 0.01 0.95 ind:imp:3p; +dérobais dérober ver 7.15 27.23 0.01 0.20 ind:imp:1s;ind:imp:2s; +dérobait dérober ver 7.15 27.23 0.24 3.92 ind:imp:3s; +dérobant dérober ver 7.15 27.23 0.05 1.22 par:pre; +dérobe dérober ver 7.15 27.23 0.55 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérobent dérober ver 7.15 27.23 0.36 0.74 ind:pre:3p; +dérober dérober ver 7.15 27.23 2.08 7.57 ind:pre:2p;inf; +dérobera dérober ver 7.15 27.23 0.02 0.07 ind:fut:3s; +déroberaient dérober ver 7.15 27.23 0.00 0.07 cnd:pre:3p; +déroberait dérober ver 7.15 27.23 0.00 0.20 cnd:pre:3s; +déroberons dérober ver 7.15 27.23 0.01 0.07 ind:fut:1p; +dérobes dérober ver 7.15 27.23 0.68 0.00 ind:pre:2s; +dérobeuse dérobeur adj f s 0.00 0.07 0.00 0.07 +dérobez dérober ver 7.15 27.23 0.28 0.14 imp:pre:2p;ind:pre:2p; +dérobiez dérober ver 7.15 27.23 0.00 0.07 ind:imp:2p; +dérobions dérober ver 7.15 27.23 0.00 0.14 ind:imp:1p; +dérobons dérober ver 7.15 27.23 0.01 0.07 imp:pre:1p;ind:pre:1p; +dérobât dérober ver 7.15 27.23 0.00 0.07 sub:imp:3s; +dérobèrent dérober ver 7.15 27.23 0.00 0.14 ind:pas:3p; +dérobé dérober ver m s 7.15 27.23 1.85 2.57 par:pas; +dérobée dérober ver f s 7.15 27.23 0.68 2.77 par:pas; +dérobées dérober ver f p 7.15 27.23 0.04 0.27 par:pas; +dérobés dérober ver m p 7.15 27.23 0.25 0.47 par:pas; +dérogation dérogation nom f s 0.42 0.34 0.40 0.20 +dérogations dérogation nom f p 0.42 0.34 0.02 0.14 +dérogatoire dérogatoire adj f s 0.01 0.00 0.01 0.00 +déroge déroger ver 0.46 1.01 0.09 0.27 imp:pre:2s;ind:pre:3s; +dérogea déroger ver 0.46 1.01 0.00 0.07 ind:pas:3s; +dérogeait déroger ver 0.46 1.01 0.01 0.14 ind:imp:3s; +dérogent déroger ver 0.46 1.01 0.01 0.00 ind:pre:3p; +déroger déroger ver 0.46 1.01 0.18 0.34 inf; +dérogera déroger ver 0.46 1.01 0.01 0.07 ind:fut:3s; +dérogerait déroger ver 0.46 1.01 0.01 0.00 cnd:pre:3s; +dérogé déroger ver m s 0.46 1.01 0.15 0.14 par:pas; +durât durer ver 74.39 101.62 0.00 0.74 sub:imp:3s; +dérouillaient dérouiller ver 2.13 4.66 0.00 0.14 ind:imp:3p; +dérouillais dérouiller ver 2.13 4.66 0.02 0.00 ind:imp:1s; +dérouillait dérouiller ver 2.13 4.66 0.01 0.14 ind:imp:3s; +dérouillant dérouiller ver 2.13 4.66 0.00 0.14 par:pre; +dérouille dérouiller ver 2.13 4.66 0.48 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérouillement dérouillement nom m s 0.00 0.07 0.00 0.07 +dérouillent dérouiller ver 2.13 4.66 0.05 0.34 ind:pre:3p; +dérouiller dérouiller ver 2.13 4.66 0.94 1.69 inf; +dérouillera dérouiller ver 2.13 4.66 0.04 0.00 ind:fut:3s; +dérouillerai dérouiller ver 2.13 4.66 0.00 0.14 ind:fut:1s; +dérouillerais dérouiller ver 2.13 4.66 0.14 0.14 cnd:pre:1s;cnd:pre:2s; +dérouillerait dérouiller ver 2.13 4.66 0.01 0.07 cnd:pre:3s; +dérouilles dérouiller ver 2.13 4.66 0.04 0.20 ind:pre:2s; +dérouillez dérouiller ver 2.13 4.66 0.01 0.00 imp:pre:2p; +dérouillé dérouiller ver m s 2.13 4.66 0.36 0.54 par:pas; +dérouillée dérouillée nom f s 0.39 1.22 0.23 1.01 +dérouillées dérouillée nom f p 0.39 1.22 0.16 0.20 +déroula dérouler ver 11.37 39.46 0.27 3.04 ind:pas:3s; +déroulai dérouler ver 11.37 39.46 0.00 0.20 ind:pas:1s; +déroulaient dérouler ver 11.37 39.46 0.04 2.84 ind:imp:3p; +déroulais dérouler ver 11.37 39.46 0.02 0.27 ind:imp:1s; +déroulait dérouler ver 11.37 39.46 0.37 8.92 ind:imp:3s; +déroulant dérouler ver 11.37 39.46 0.11 1.69 par:pre; +déroule dérouler ver 11.37 39.46 5.18 6.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déroulement déroulement nom m s 0.82 5.95 0.82 5.88 +déroulements déroulement nom m p 0.82 5.95 0.00 0.07 +déroulent dérouler ver 11.37 39.46 1.41 1.42 ind:pre:3p; +dérouler dérouler ver 11.37 39.46 1.26 5.88 inf; +déroulera dérouler ver 11.37 39.46 0.36 0.34 ind:fut:3s; +dérouleraient dérouler ver 11.37 39.46 0.01 0.07 cnd:pre:3p; +déroulerait dérouler ver 11.37 39.46 0.06 0.47 cnd:pre:3s; +dérouleront dérouler ver 11.37 39.46 0.04 0.00 ind:fut:3p; +dérouleur dérouleur nom m s 0.01 0.34 0.01 0.14 +dérouleurs dérouleur nom m p 0.01 0.34 0.00 0.14 +dérouleuse dérouleur nom f s 0.01 0.34 0.00 0.07 +déroulez dérouler ver 11.37 39.46 0.19 0.07 imp:pre:2p; +déroulions dérouler ver 11.37 39.46 0.00 0.07 ind:imp:1p; +déroulât dérouler ver 11.37 39.46 0.00 0.14 sub:imp:3s; +déroulèrent dérouler ver 11.37 39.46 0.03 0.81 ind:pas:3p; +déroulé dérouler ver m s 11.37 39.46 1.15 2.57 par:pas; +déroulée dérouler ver f s 11.37 39.46 0.63 2.64 par:pas; +déroulées dérouler ver f p 11.37 39.46 0.11 0.81 par:pas; +déroulés dérouler ver m p 11.37 39.46 0.13 1.08 par:pas; +dérouta dérouter ver 1.63 4.59 0.00 0.07 ind:pas:3s; +déroutage déroutage nom m s 0.01 0.07 0.01 0.07 +déroutaient dérouter ver 1.63 4.59 0.00 0.07 ind:imp:3p; +déroutait dérouter ver 1.63 4.59 0.03 0.88 ind:imp:3s; +déroutant déroutant adj m s 1.09 2.03 0.68 0.47 +déroutante déroutant adj f s 1.09 2.03 0.22 1.28 +déroutantes déroutant adj f p 1.09 2.03 0.04 0.14 +déroutants déroutant adj m p 1.09 2.03 0.16 0.14 +déroute déroute nom f s 1.03 5.95 1.03 5.88 +déroutement déroutement nom m s 0.28 0.00 0.28 0.00 +déroutent dérouter ver 1.63 4.59 0.02 0.07 ind:pre:3p; +dérouter dérouter ver 1.63 4.59 0.54 0.47 inf;; +déroutera dérouter ver 1.63 4.59 0.01 0.00 ind:fut:3s; +déroutes dérouter ver 1.63 4.59 0.10 0.00 ind:pre:2s; +déroutez dérouter ver 1.63 4.59 0.05 0.00 imp:pre:2p;ind:pre:2p; +déroutèrent dérouter ver 1.63 4.59 0.00 0.07 ind:pas:3p; +dérouté dérouter ver m s 1.63 4.59 0.47 1.42 par:pas; +déroutée dérouter ver f s 1.63 4.59 0.16 0.47 par:pas; +déroutées dérouter ver f p 1.63 4.59 0.03 0.00 par:pas; +déroutés dérouter ver m p 1.63 4.59 0.06 0.27 par:pas; +durs dur adj m p 187.84 146.69 12.08 20.47 +dérègle dérégler ver 1.09 0.95 0.25 0.14 ind:pre:3s; +dérèglement dérèglement nom m s 1.29 1.28 0.35 1.01 +dérèglements dérèglement nom m p 1.29 1.28 0.94 0.27 +dérèglent dérégler ver 1.09 0.95 0.14 0.07 ind:pre:3p; +durèrent durer ver 74.39 101.62 0.04 1.35 ind:pas:3p; +duré durer ver m s 74.39 101.62 12.57 13.85 par:pas; +déréalisaient déréaliser ver 0.00 0.07 0.00 0.07 ind:imp:3p; +durée durée nom f s 6.86 19.39 6.84 19.12 +durées durée nom f p 6.86 19.39 0.02 0.27 +déréglage déréglage nom m s 0.01 0.00 0.01 0.00 +déréglait dérégler ver 1.09 0.95 0.01 0.07 ind:imp:3s; +déréglant dérégler ver 1.09 0.95 0.00 0.07 par:pre; +déréglementation déréglementation nom f s 0.06 0.00 0.06 0.00 +dérégler dérégler ver 1.09 0.95 0.22 0.14 inf; +déréglé dérégler ver m s 1.09 0.95 0.23 0.41 par:pas; +déréglée dérégler ver f s 1.09 0.95 0.20 0.00 par:pas; +déréglées dérégler ver f p 1.09 0.95 0.03 0.00 par:pas; +déréglés déréglé adj m p 0.23 1.35 0.10 0.34 +dérégulation dérégulation nom f s 0.04 0.00 0.04 0.00 +déréguler déréguler ver 0.01 0.00 0.01 0.00 inf; +déréliction déréliction nom f s 0.01 0.61 0.01 0.61 +dés dé nom m p 23.36 11.55 17.63 7.91 +dus devoir ver_sup m p 3232.80 1318.24 1.57 12.77 ind:pas:1s;par:pas; +désabonna désabonner ver 0.00 0.07 0.00 0.07 ind:pas:3s; +désabonnements désabonnement nom m p 0.00 0.14 0.00 0.14 +désabusement désabusement nom m s 0.00 0.41 0.00 0.41 +désabuser désabuser ver 0.11 1.08 0.00 0.07 inf; +désabusé désabusé adj m s 0.12 5.27 0.08 3.04 +désabusée désabuser ver f s 0.11 1.08 0.03 0.14 par:pas; +désabusées désabusé nom f p 0.02 1.42 0.00 0.14 +désabusés désabusé adj m p 0.12 5.27 0.02 0.47 +désaccord désaccord nom m s 3.02 5.20 2.41 4.05 +désaccorda désaccorder ver 0.38 1.22 0.00 0.07 ind:pas:3s; +désaccordaient désaccorder ver 0.38 1.22 0.00 0.07 ind:imp:3p; +désaccordent désaccorder ver 0.38 1.22 0.00 0.07 ind:pre:3p; +désaccorder désaccorder ver 0.38 1.22 0.00 0.14 inf; +désaccords désaccord nom m p 3.02 5.20 0.61 1.15 +désaccordé désaccorder ver m s 0.38 1.22 0.14 0.41 par:pas; +désaccordée désaccorder ver f s 0.38 1.22 0.22 0.07 par:pas; +désaccordées désaccorder ver f p 0.38 1.22 0.00 0.07 par:pas; +désaccordés désaccorder ver m p 0.38 1.22 0.02 0.34 par:pas; +désaccoupler désaccoupler ver 0.01 0.00 0.01 0.00 inf; +désaccoutuma désaccoutumer ver 0.14 0.07 0.00 0.07 ind:pas:3s; +désaccoutumer désaccoutumer ver 0.14 0.07 0.14 0.00 inf; +désacralisation désacralisation nom f s 0.20 0.00 0.20 0.00 +désacraliser désacraliser ver 0.04 0.07 0.03 0.00 inf; +désacralisé désacraliser ver m s 0.04 0.07 0.01 0.07 par:pas; +désacralisée désacraliser ver f s 0.04 0.07 0.01 0.00 par:pas; +désactivation désactivation nom f s 0.41 0.07 0.41 0.07 +désactive désactiver ver 4.96 0.41 0.40 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désactiver désactiver ver 4.96 0.41 1.43 0.00 inf; +désactiverai désactiver ver 4.96 0.41 0.03 0.00 ind:fut:1s; +désactiveront désactiver ver 4.96 0.41 0.02 0.00 ind:fut:3p; +désactives désactiver ver 4.96 0.41 0.04 0.00 ind:pre:2s; +désactivez désactiver ver 4.96 0.41 0.57 0.00 imp:pre:2p;ind:pre:2p; +désactivons désactiver ver 4.96 0.41 0.04 0.00 ind:pre:1p; +désactivé désactiver ver m s 4.96 0.41 1.35 0.34 par:pas; +désactivée désactiver ver f s 4.96 0.41 0.20 0.07 par:pas; +désactivées désactiver ver f p 4.96 0.41 0.78 0.00 par:pas; +désactivés désactiver ver m p 4.96 0.41 0.11 0.00 par:pas; +désadaptée désadapter ver f s 0.00 0.07 0.00 0.07 par:pas; +désadopter désadopter ver 0.01 0.00 0.01 0.00 inf; +désaffectation désaffectation nom f s 0.00 0.07 0.00 0.07 +désaffecter désaffecter ver 0.18 0.88 0.00 0.07 inf; +désaffection désaffection nom f s 0.04 0.54 0.04 0.54 +désaffecté désaffecté adj m s 0.85 4.73 0.46 1.62 +désaffectée désaffecté adj f s 0.85 4.73 0.22 1.82 +désaffectées désaffecté adj f p 0.85 4.73 0.03 0.68 +désaffectés désaffecté adj m p 0.85 4.73 0.14 0.61 +désagrège désagréger ver 0.80 3.18 0.35 0.95 imp:pre:2s;ind:pre:3s; +désagrègent désagréger ver 0.80 3.18 0.20 0.20 ind:pre:3p; +désagréable désagréable adj s 10.91 19.39 9.54 16.55 +désagréablement désagréablement adv 0.13 1.28 0.13 1.28 +désagréables désagréable adj p 10.91 19.39 1.38 2.84 +désagrégation désagrégation nom f s 0.10 1.35 0.10 1.35 +désagrégeait désagréger ver 0.80 3.18 0.11 0.41 ind:imp:3s; +désagrégeant désagréger ver 0.80 3.18 0.01 0.27 par:pre; +désagréger désagréger ver 0.80 3.18 0.11 0.88 inf; +désagrégèrent désagréger ver 0.80 3.18 0.00 0.07 ind:pas:3p; +désagrégé désagréger ver m s 0.80 3.18 0.03 0.14 par:pas; +désagrégée désagréger ver f s 0.80 3.18 0.00 0.20 par:pas; +désagrégés désagréger ver m p 0.80 3.18 0.00 0.07 par:pas; +désagrément désagrément nom m s 2.01 2.64 1.20 1.42 +désagréments désagrément nom m p 2.01 2.64 0.81 1.22 +désaimée désaimer ver f s 0.00 0.14 0.00 0.14 par:pas; +désajustés désajuster ver m p 0.00 0.07 0.00 0.07 par:pas; +désalinisation désalinisation nom f s 0.02 0.00 0.02 0.00 +désaliénation désaliénation nom f s 0.00 0.07 0.00 0.07 +désaltère désaltérer ver 0.66 1.89 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désaltéra désaltérer ver 0.66 1.89 0.00 0.07 ind:pas:3s; +désaltéraient désaltérer ver 0.66 1.89 0.00 0.07 ind:imp:3p; +désaltérait désaltérer ver 0.66 1.89 0.00 0.14 ind:imp:3s; +désaltérant désaltérer ver 0.66 1.89 0.00 0.14 par:pre; +désaltérante désaltérant adj f s 0.14 0.00 0.14 0.00 +désaltérer désaltérer ver 0.66 1.89 0.35 0.81 inf; +désaltérât désaltérer ver 0.66 1.89 0.00 0.07 sub:imp:3s; +désaltéré désaltérer ver m s 0.66 1.89 0.10 0.20 par:pas; +désaltérés désaltérer ver m p 0.66 1.89 0.00 0.14 par:pas; +désamiantage désamiantage nom m s 0.09 0.00 0.09 0.00 +désaminase désaminase nom f s 0.01 0.00 0.01 0.00 +désamorce désamorcer ver 2.80 1.62 0.50 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désamorcent désamorcer ver 2.80 1.62 0.01 0.00 ind:pre:3p; +désamorcer désamorcer ver 2.80 1.62 1.43 0.47 inf; +désamorcera désamorcer ver 2.80 1.62 0.01 0.00 ind:fut:3s; +désamorcerez désamorcer ver 2.80 1.62 0.01 0.00 ind:fut:2p; +désamorcerons désamorcer ver 2.80 1.62 0.01 0.00 ind:fut:1p; +désamorcez désamorcer ver 2.80 1.62 0.04 0.00 imp:pre:2p;ind:pre:2p; +désamorcé désamorcer ver m s 2.80 1.62 0.28 0.34 par:pas; +désamorcée désamorcer ver f s 2.80 1.62 0.45 0.20 par:pas; +désamorcées désamorcer ver f p 2.80 1.62 0.02 0.07 par:pas; +désamorcés désamorcer ver m p 2.80 1.62 0.03 0.07 par:pas; +désamorçage désamorçage nom m s 0.18 0.00 0.18 0.00 +désamorçait désamorcer ver 2.80 1.62 0.01 0.20 ind:imp:3s; +désamorçant désamorcer ver 2.80 1.62 0.00 0.07 par:pre; +désamour désamour nom m s 0.00 0.34 0.00 0.34 +désangler désangler ver 0.00 0.07 0.00 0.07 inf; +désape désaper ver 0.77 0.14 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désapent désaper ver 0.77 0.14 0.01 0.00 ind:pre:3p; +désaper désaper ver 0.77 0.14 0.38 0.00 inf; +désapeurer désapeurer ver 0.00 0.07 0.00 0.07 inf; +désapez désaper ver 0.77 0.14 0.04 0.00 imp:pre:2p;ind:pre:2p; +désappointait désappointer ver 0.13 0.88 0.00 0.07 ind:imp:3s; +désappointement désappointement nom m s 0.00 0.81 0.00 0.74 +désappointements désappointement nom m p 0.00 0.81 0.00 0.07 +désappointer désappointer ver 0.13 0.88 0.03 0.07 inf; +désappointé désappointer ver m s 0.13 0.88 0.09 0.47 par:pas; +désappointée désappointé adj f s 0.06 0.41 0.01 0.27 +désappointés désappointé adj m p 0.06 0.41 0.01 0.00 +désapprenais désapprendre ver 0.10 0.95 0.00 0.07 ind:imp:1s; +désapprenant désapprendre ver 0.10 0.95 0.00 0.07 par:pre; +désapprendre désapprendre ver 0.10 0.95 0.09 0.07 inf; +désapprenne désapprendre ver 0.10 0.95 0.00 0.14 sub:pre:3s; +désapprirent désapprendre ver 0.10 0.95 0.00 0.07 ind:pas:3p; +désappris désapprendre ver m 0.10 0.95 0.01 0.47 par:pas; +désapprit désapprendre ver 0.10 0.95 0.00 0.07 ind:pas:3s; +désapprobateur désapprobateur adj m s 0.06 1.62 0.04 0.95 +désapprobateurs désapprobateur adj m p 0.06 1.62 0.00 0.41 +désapprobation désapprobation nom f s 0.42 1.55 0.42 1.55 +désapprobatrice désapprobateur adj f s 0.06 1.62 0.02 0.20 +désapprobatrices désapprobateur adj f p 0.06 1.62 0.00 0.07 +désapprouva désapprouver ver 3.35 3.99 0.00 0.14 ind:pas:3s; +désapprouvaient désapprouver ver 3.35 3.99 0.04 0.07 ind:imp:3p; +désapprouvais désapprouver ver 3.35 3.99 0.04 0.34 ind:imp:1s;ind:imp:2s; +désapprouvait désapprouver ver 3.35 3.99 0.34 0.88 ind:imp:3s; +désapprouvant désapprouver ver 3.35 3.99 0.01 0.41 par:pre; +désapprouve désapprouver ver 3.35 3.99 1.48 0.95 ind:pre:1s;ind:pre:3s; +désapprouvent désapprouver ver 3.35 3.99 0.26 0.14 ind:pre:3p; +désapprouver désapprouver ver 3.35 3.99 0.16 0.34 inf; +désapprouvera désapprouver ver 3.35 3.99 0.01 0.07 ind:fut:3s; +désapprouverait désapprouver ver 3.35 3.99 0.04 0.07 cnd:pre:3s; +désapprouverez désapprouver ver 3.35 3.99 0.01 0.00 ind:fut:2p; +désapprouves désapprouver ver 3.35 3.99 0.36 0.00 ind:pre:2s; +désapprouvez désapprouver ver 3.35 3.99 0.46 0.07 imp:pre:2p;ind:pre:2p; +désapprouviez désapprouver ver 3.35 3.99 0.01 0.07 ind:imp:2p; +désapprouvât désapprouver ver 3.35 3.99 0.00 0.07 sub:imp:3s; +désapprouvé désapprouver ver m s 3.35 3.99 0.12 0.34 par:pas; +désapprouvée désapprouver ver f s 3.35 3.99 0.01 0.07 par:pas; +désargenté désargenter ver m s 0.01 0.14 0.01 0.07 par:pas; +désargentées désargenté adj f p 0.00 0.27 0.00 0.07 +désargentés désargenté nom m p 0.01 0.00 0.01 0.00 +désarma désarmer ver 5.72 8.11 0.00 0.34 ind:pas:3s; +désarmai désarmer ver 5.72 8.11 0.00 0.07 ind:pas:1s; +désarmaient désarmer ver 5.72 8.11 0.00 0.14 ind:imp:3p; +désarmait désarmer ver 5.72 8.11 0.01 1.15 ind:imp:3s; +désarmant désarmer ver 5.72 8.11 0.05 0.07 par:pre; +désarmante désarmant adj f s 0.08 1.76 0.03 1.08 +désarmants désarmant adj m p 0.08 1.76 0.01 0.14 +désarme désarmer ver 5.72 8.11 0.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désarmement désarmement nom m s 1.04 0.88 1.04 0.88 +désarment désarmer ver 5.72 8.11 0.04 0.07 ind:pre:3p; +désarmer désarmer ver 5.72 8.11 1.57 1.96 inf; +désarmera désarmer ver 5.72 8.11 0.01 0.00 ind:fut:3s; +désarmez désarmer ver 5.72 8.11 0.71 0.00 imp:pre:2p; +désarmèrent désarmer ver 5.72 8.11 0.00 0.07 ind:pas:3p; +désarmé désarmer ver m s 5.72 8.11 2.29 2.23 par:pas; +désarmée désarmer ver f s 5.72 8.11 0.39 0.47 par:pas; +désarmées désarmer ver f p 5.72 8.11 0.11 0.14 par:pas; +désarmés désarmé adj m p 1.56 5.41 0.72 0.68 +désarrimage désarrimage nom m s 0.02 0.00 0.02 0.00 +désarrimez désarrimer ver 0.05 0.00 0.03 0.00 imp:pre:2p; +désarrimé désarrimer ver m s 0.05 0.00 0.02 0.00 par:pas; +désarroi désarroi nom m s 1.33 14.12 1.32 13.99 +désarrois désarroi nom m p 1.33 14.12 0.01 0.14 +désarçonna désarçonner ver 0.51 2.57 0.00 0.14 ind:pas:3s; +désarçonnaient désarçonner ver 0.51 2.57 0.00 0.07 ind:imp:3p; +désarçonnait désarçonner ver 0.51 2.57 0.00 0.14 ind:imp:3s; +désarçonne désarçonner ver 0.51 2.57 0.05 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désarçonner désarçonner ver 0.51 2.57 0.17 0.81 inf; +désarçonné désarçonner ver m s 0.51 2.57 0.22 0.74 par:pas; +désarçonnée désarçonner ver f s 0.51 2.57 0.04 0.07 par:pas; +désarçonnés désarçonner ver m p 0.51 2.57 0.03 0.34 par:pas; +désarticula désarticuler ver 0.34 3.18 0.00 0.07 ind:pas:3s; +désarticulait désarticuler ver 0.34 3.18 0.00 0.27 ind:imp:3s; +désarticulant désarticuler ver 0.34 3.18 0.00 0.14 par:pre; +désarticulation désarticulation nom f s 0.00 0.14 0.00 0.14 +désarticulent désarticuler ver 0.34 3.18 0.00 0.07 ind:pre:3p; +désarticuler désarticuler ver 0.34 3.18 0.00 0.07 inf; +désarticulera désarticuler ver 0.34 3.18 0.02 0.00 ind:fut:3s; +désarticulé désarticuler ver m s 0.34 3.18 0.20 1.01 par:pas; +désarticulée désarticuler ver f s 0.34 3.18 0.07 0.81 par:pas; +désarticulées désarticuler ver f p 0.34 3.18 0.00 0.14 par:pas; +désarticulés désarticuler ver m p 0.34 3.18 0.04 0.61 par:pas; +désassemble désassembler ver 0.12 0.27 0.00 0.14 ind:pre:3s; +désassembler désassembler ver 0.12 0.27 0.05 0.14 inf; +désassemblé désassembler ver m s 0.12 0.27 0.07 0.00 par:pas; +désassortis désassorti adj m p 0.00 0.07 0.00 0.07 +désassortis désassortir ver m p 0.00 0.07 0.00 0.07 par:pas; +désastre désastre nom m s 12.82 23.72 12.26 19.86 +désastres désastre nom m p 12.82 23.72 0.55 3.85 +désastreuse désastreux adj f s 2.46 6.49 0.92 2.23 +désastreusement désastreusement adv 0.01 0.00 0.01 0.00 +désastreuses désastreux adj f p 2.46 6.49 0.41 1.62 +désastreux désastreux adj m 2.46 6.49 1.13 2.64 +désavantage désavantage nom m s 0.52 0.88 0.43 0.61 +désavantageaient désavantager ver 0.24 0.47 0.00 0.07 ind:imp:3p; +désavantageait désavantager ver 0.24 0.47 0.00 0.07 ind:imp:3s; +désavantager désavantager ver 0.24 0.47 0.02 0.07 inf; +désavantages désavantage nom m p 0.52 0.88 0.09 0.27 +désavantageuse désavantageux adj f s 0.01 0.00 0.01 0.00 +désavantagé désavantager ver m s 0.24 0.47 0.08 0.14 par:pas; +désavantagés désavantager ver m p 0.24 0.47 0.10 0.07 par:pas; +désaveu désaveu nom m s 0.07 0.61 0.07 0.61 +désaveux désaveux nom m p 0.00 0.07 0.00 0.07 +désavoua désavouer ver 0.77 3.11 0.00 0.14 ind:pas:3s; +désavouait désavouer ver 0.77 3.11 0.00 0.20 ind:imp:3s; +désavouant désavouer ver 0.77 3.11 0.00 0.20 par:pre; +désavoue désavouer ver 0.77 3.11 0.01 0.14 ind:pre:1s;ind:pre:3s; +désavouent désavouer ver 0.77 3.11 0.29 0.07 ind:pre:3p; +désavouer désavouer ver 0.77 3.11 0.20 0.74 inf; +désavoueraient désavouer ver 0.77 3.11 0.00 0.14 cnd:pre:3p; +désavouerons désavouer ver 0.77 3.11 0.00 0.14 ind:fut:1p; +désavouez désavouer ver 0.77 3.11 0.01 0.07 imp:pre:2p;ind:pre:2p; +désavouât désavouer ver 0.77 3.11 0.00 0.07 sub:imp:3s; +désavoué désavouer ver m s 0.77 3.11 0.22 0.68 par:pas; +désavouée désavouer ver f s 0.77 3.11 0.03 0.34 par:pas; +désavoués désavouer ver m p 0.77 3.11 0.01 0.20 par:pas; +désaxait désaxer ver 0.09 0.54 0.00 0.07 ind:imp:3s; +désaxant désaxer ver 0.09 0.54 0.01 0.07 par:pre; +désaxe désaxer ver 0.09 0.54 0.01 0.14 ind:pre:3s; +désaxement désaxement nom m s 0.00 0.07 0.00 0.07 +désaxé désaxé nom m s 0.40 0.27 0.26 0.07 +désaxée désaxé adj f s 0.13 0.61 0.02 0.34 +désaxées désaxé nom f p 0.40 0.27 0.01 0.07 +désaxés désaxé nom m p 0.40 0.27 0.12 0.14 +déscolarisé déscolariser ver m s 0.01 0.00 0.01 0.00 par:pas; +désembourber désembourber ver 0.05 0.20 0.05 0.14 inf; +désembourbée désembourber ver f s 0.05 0.20 0.00 0.07 par:pas; +désembrouiller désembrouiller ver 0.01 0.00 0.01 0.00 inf; +désembuer désembuer ver 0.00 0.07 0.00 0.07 inf; +désemparait désemparer ver 0.67 3.18 0.00 0.07 ind:imp:3s; +désemparer désemparer ver 0.67 3.18 0.00 0.61 inf; +désemparé désemparer ver m s 0.67 3.18 0.36 1.28 par:pas; +désemparée désemparé adj f s 0.90 4.19 0.55 1.42 +désemparées désemparé adj f p 0.90 4.19 0.11 0.07 +désemparés désemparer ver m p 0.67 3.18 0.12 0.34 par:pas; +désempenné désempenner ver m s 0.00 0.07 0.00 0.07 par:pas; +désempierraient désempierrer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +désemplissaient désemplir ver 0.17 0.61 0.00 0.07 ind:imp:3p; +désemplissait désemplir ver 0.17 0.61 0.00 0.34 ind:imp:3s; +désemplit désemplir ver 0.17 0.61 0.17 0.20 ind:pre:3s;ind:pas:3s; +désenchaînement désenchaînement nom m s 0.00 0.07 0.00 0.07 +désenchaîner désenchaîner ver 0.00 0.07 0.00 0.07 inf; +désenchanta désenchanter ver 0.02 0.54 0.00 0.07 ind:pas:3s; +désenchantant désenchanter ver 0.02 0.54 0.00 0.07 par:pre; +désenchante désenchanter ver 0.02 0.54 0.00 0.07 ind:pre:3s; +désenchantement désenchantement nom m s 0.16 1.76 0.16 1.69 +désenchantements désenchantement nom m p 0.16 1.76 0.00 0.07 +désenchantent désenchanter ver 0.02 0.54 0.00 0.07 ind:pre:3p; +désenchanter désenchanter ver 0.02 0.54 0.00 0.14 inf; +désenchanté désenchanté adj m s 0.11 0.88 0.11 0.47 +désenchantée désenchanter ver f s 0.02 0.54 0.01 0.07 par:pas; +désenchantées désenchanter ver f p 0.02 0.54 0.01 0.00 par:pas; +désenchantés désenchanté nom m p 0.17 0.34 0.14 0.07 +désenchevêtra désenchevêtrer ver 0.00 0.07 0.00 0.07 ind:pas:3s; +désenclavement désenclavement nom m s 0.00 0.07 0.00 0.07 +désencombre désencombrer ver 0.00 0.07 0.00 0.07 ind:pre:1s; +désencrasser désencrasser ver 0.03 0.07 0.03 0.07 inf; +désenflaient désenfler ver 0.22 0.07 0.00 0.07 ind:imp:3p; +désenfle désenfler ver 0.22 0.07 0.06 0.00 imp:pre:2s;ind:pre:3s; +désenfler désenfler ver 0.22 0.07 0.12 0.00 inf; +désenflé désenfler ver m s 0.22 0.07 0.04 0.00 par:pas; +désengagement désengagement nom m s 0.14 0.07 0.14 0.07 +désengager désengager ver 0.31 0.20 0.08 0.14 inf; +désengagez désengager ver 0.31 0.20 0.18 0.00 imp:pre:2p;ind:pre:2p; +désengagé désengager ver m s 0.31 0.20 0.04 0.07 par:pas; +désengluer désengluer ver 0.00 0.07 0.00 0.07 inf; +désengourdir désengourdir ver 0.00 0.14 0.00 0.14 inf; +désennuie désennuyer ver 0.02 0.41 0.00 0.07 ind:pre:3s; +désennuiera désennuyer ver 0.02 0.41 0.00 0.07 ind:fut:3s; +désennuyant désennuyer ver 0.02 0.41 0.00 0.07 par:pre; +désennuyer désennuyer ver 0.02 0.41 0.02 0.20 inf; +désenrouler désenrouler ver 0.01 0.00 0.01 0.00 inf; +désensabler désensabler ver 0.00 0.07 0.00 0.07 inf; +désensibilisation désensibilisation nom f s 0.32 0.00 0.32 0.00 +désensibilisent désensibiliser ver 0.04 0.00 0.01 0.00 ind:pre:3p; +désensibilisée désensibiliser ver f s 0.04 0.00 0.03 0.00 par:pas; +désensorceler désensorceler ver 0.00 0.14 0.00 0.07 inf; +désensorcelé désensorceler ver m s 0.00 0.14 0.00 0.07 par:pas; +désentortille désentortiller ver 0.00 0.07 0.00 0.07 ind:pre:1s; +désentravé désentraver ver m s 0.00 0.14 0.00 0.07 par:pas; +désentravée désentraver ver f s 0.00 0.14 0.00 0.07 par:pas; +désenvoûter désenvoûter ver 0.03 0.00 0.02 0.00 inf; +désenvoûteurs désenvoûteur nom m p 0.00 0.07 0.00 0.07 +désenvoûté désenvoûter ver m s 0.03 0.00 0.01 0.00 par:pas; +désert désert nom m s 27.66 41.89 26.13 36.76 +déserta déserter ver 4.90 11.28 0.01 0.41 ind:pas:3s; +désertaient déserter ver 4.90 11.28 0.01 0.20 ind:imp:3p; +désertais déserter ver 4.90 11.28 0.02 0.14 ind:imp:1s; +désertait déserter ver 4.90 11.28 0.03 0.47 ind:imp:3s; +désertant déserter ver 4.90 11.28 0.00 0.07 par:pre; +déserte désert adj f s 8.02 52.57 3.48 22.91 +désertent déserter ver 4.90 11.28 0.12 0.47 ind:pre:3p; +déserter déserter ver 4.90 11.28 1.92 1.69 inf; +déserterait déserter ver 4.90 11.28 0.11 0.00 cnd:pre:3s; +désertes désert adj f p 8.02 52.57 0.99 7.91 +déserteur déserteur nom m s 3.08 5.54 1.89 3.51 +déserteurs déserteur nom m p 3.08 5.54 1.19 2.03 +désertifie désertifier ver 0.00 0.07 0.00 0.07 ind:pre:3s; +désertion désertion nom f s 1.09 2.43 1.07 2.09 +désertions désertion nom f p 1.09 2.43 0.02 0.34 +désertique désertique adj s 0.22 2.57 0.17 1.82 +désertiques désertique adj p 0.22 2.57 0.04 0.74 +désertâmes déserter ver 4.90 11.28 0.00 0.07 ind:pas:1p; +désertons déserter ver 4.90 11.28 0.00 0.07 imp:pre:1p; +déserts désert nom m p 27.66 41.89 1.53 5.14 +désertèrent déserter ver 4.90 11.28 0.00 0.27 ind:pas:3p; +déserté déserter ver m s 4.90 11.28 1.76 4.19 par:pas; +désertée déserter ver f s 4.90 11.28 0.24 0.88 par:pas; +désertées déserter ver f p 4.90 11.28 0.15 0.14 par:pas; +désertés déserter ver m p 4.90 11.28 0.02 0.47 par:pas; +désespoir désespoir nom m s 10.62 46.89 10.61 45.47 +désespoirs désespoir nom m p 10.62 46.89 0.01 1.42 +désespère désespérer ver 12.22 17.43 1.42 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désespèrent désespérer ver 12.22 17.43 0.06 0.20 ind:pre:3p; +désespères désespérer ver 12.22 17.43 0.01 0.20 ind:pre:2s; +désespéra désespérer ver 12.22 17.43 0.00 0.61 ind:pas:3s; +désespérai désespérer ver 12.22 17.43 0.00 0.14 ind:pas:1s; +désespéraient désespérer ver 12.22 17.43 0.01 0.41 ind:imp:3p; +désespérais désespérer ver 12.22 17.43 0.37 0.41 ind:imp:1s; +désespérait désespérer ver 12.22 17.43 0.06 2.03 ind:imp:3s; +désespérance désespérance nom f s 0.03 1.08 0.03 1.08 +désespérant désespérant adj m s 0.67 1.96 0.60 0.95 +désespérante désespérant adj f s 0.67 1.96 0.06 0.88 +désespérants désespérant adj m p 0.67 1.96 0.01 0.14 +désespérer désespérer ver 12.22 17.43 1.18 4.19 inf; +désespérez désespérer ver 12.22 17.43 0.57 0.20 imp:pre:2p;ind:pre:2p; +désespérions désespérer ver 12.22 17.43 0.02 0.00 ind:imp:1p; +désespérons désespérer ver 12.22 17.43 0.14 0.07 imp:pre:1p; +désespérât désespérer ver 12.22 17.43 0.00 0.07 sub:imp:3s; +désespérèrent désespérer ver 12.22 17.43 0.00 0.07 ind:pas:3p; +désespéré désespéré adj m s 10.37 16.35 4.87 7.30 +désespérée désespéré adj f s 10.37 16.35 3.60 5.34 +désespérées désespéré adj f p 10.37 16.35 0.65 1.08 +désespérément désespérément adv 4.08 10.81 4.08 10.81 +désespérés désespéré adj m p 10.37 16.35 1.25 2.64 +déshabilla déshabiller ver 22.98 26.22 0.01 2.43 ind:pas:3s; +déshabillage_éclair déshabillage_éclair nom m s 0.00 0.07 0.00 0.07 +déshabillage déshabillage nom m s 0.23 0.81 0.23 0.68 +déshabillages déshabillage nom m p 0.23 0.81 0.00 0.14 +déshabillai déshabiller ver 22.98 26.22 0.00 0.41 ind:pas:1s; +déshabillaient déshabiller ver 22.98 26.22 0.13 0.34 ind:imp:3p; +déshabillais déshabiller ver 22.98 26.22 0.14 0.27 ind:imp:1s;ind:imp:2s; +déshabillait déshabiller ver 22.98 26.22 0.10 2.16 ind:imp:3s; +déshabillant déshabiller ver 22.98 26.22 0.10 1.01 par:pre; +déshabille déshabiller ver 22.98 26.22 8.69 5.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +déshabillent déshabiller ver 22.98 26.22 0.44 0.34 ind:pre:3p; +déshabiller déshabiller ver 22.98 26.22 5.85 8.58 inf; +déshabillera déshabiller ver 22.98 26.22 0.01 0.14 ind:fut:3s; +déshabillerai déshabiller ver 22.98 26.22 0.13 0.07 ind:fut:1s; +déshabillerait déshabiller ver 22.98 26.22 0.01 0.07 cnd:pre:3s; +déshabilleras déshabiller ver 22.98 26.22 0.01 0.07 ind:fut:2s; +déshabilleriez déshabiller ver 22.98 26.22 0.01 0.00 cnd:pre:2p; +déshabillerons déshabiller ver 22.98 26.22 0.00 0.07 ind:fut:1p; +déshabilles déshabiller ver 22.98 26.22 1.46 0.20 ind:pre:2s;sub:pre:2s; +déshabillez déshabiller ver 22.98 26.22 3.72 0.34 imp:pre:2p;ind:pre:2p; +déshabillons déshabiller ver 22.98 26.22 0.09 0.14 imp:pre:1p;ind:pre:1p; +déshabillèrent déshabiller ver 22.98 26.22 0.00 0.41 ind:pas:3p; +déshabillé déshabiller ver m s 22.98 26.22 0.90 1.89 par:pas; +déshabillée déshabiller ver f s 22.98 26.22 0.73 1.69 par:pas; +déshabillées déshabiller ver f p 22.98 26.22 0.13 0.20 par:pas; +déshabillés déshabiller ver m p 22.98 26.22 0.32 0.41 par:pas; +déshabité déshabité adj m s 0.00 0.20 0.00 0.07 +déshabitée déshabité adj f s 0.00 0.20 0.00 0.07 +déshabités déshabité adj m p 0.00 0.20 0.00 0.07 +déshabitué déshabituer ver m s 0.00 0.27 0.00 0.14 par:pas; +déshabituées déshabituer ver f p 0.00 0.27 0.00 0.07 par:pas; +déshabitués déshabituer ver m p 0.00 0.27 0.00 0.07 par:pas; +désharmonie désharmonie nom f s 0.00 0.07 0.00 0.07 +désherbage désherbage nom m s 0.15 0.00 0.15 0.00 +désherbait désherber ver 0.19 0.74 0.00 0.34 ind:imp:3s; +désherbant désherbant adj m s 0.11 0.00 0.10 0.00 +désherbants désherbant nom m p 0.07 0.07 0.01 0.07 +désherbe désherber ver 0.19 0.74 0.00 0.07 ind:pre:3s; +désherber désherber ver 0.19 0.74 0.04 0.27 inf; +désherbé désherber ver m s 0.19 0.74 0.16 0.00 par:pas; +désherbée désherber ver f s 0.19 0.74 0.00 0.07 par:pas; +désheuraient désheurer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +déshonneur déshonneur nom m s 3.28 2.84 3.28 2.84 +déshonnête déshonnête adj s 0.01 0.20 0.01 0.07 +déshonnêtes déshonnête adj p 0.01 0.20 0.00 0.14 +déshonoraient déshonorer ver 7.99 6.15 0.00 0.14 ind:imp:3p; +déshonorait déshonorer ver 7.99 6.15 0.00 0.34 ind:imp:3s; +déshonorant déshonorant adj m s 0.92 1.28 0.67 0.68 +déshonorante déshonorant adj f s 0.92 1.28 0.24 0.34 +déshonorantes déshonorant adj f p 0.92 1.28 0.01 0.14 +déshonorants déshonorant adj m p 0.92 1.28 0.00 0.14 +déshonore déshonorer ver 7.99 6.15 0.52 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déshonorent déshonorer ver 7.99 6.15 0.29 0.07 ind:pre:3p; +déshonorer déshonorer ver 7.99 6.15 1.31 1.28 inf; +déshonorera déshonorer ver 7.99 6.15 0.01 0.07 ind:fut:3s; +déshonorerai déshonorer ver 7.99 6.15 0.02 0.00 ind:fut:1s; +déshonorerais déshonorer ver 7.99 6.15 0.02 0.00 cnd:pre:1s; +déshonorerait déshonorer ver 7.99 6.15 0.01 0.07 cnd:pre:3s; +déshonores déshonorer ver 7.99 6.15 0.36 0.27 ind:pre:2s; +déshonorez déshonorer ver 7.99 6.15 0.28 0.14 imp:pre:2p;ind:pre:2p; +déshonoré déshonorer ver m s 7.99 6.15 3.15 1.42 par:pas; +déshonorée déshonorer ver f s 7.99 6.15 1.07 0.88 par:pas; +déshonorées déshonorer ver f p 7.99 6.15 0.27 0.14 par:pas; +déshonorés déshonorer ver m p 7.99 6.15 0.65 0.47 par:pas; +déshumanisant déshumaniser ver 0.12 0.14 0.03 0.00 par:pre; +déshumanisante déshumanisant adj f s 0.04 0.00 0.04 0.00 +déshumanisation déshumanisation nom f s 0.15 0.14 0.15 0.14 +déshumanise déshumaniser ver 0.12 0.14 0.01 0.00 ind:pre:3s; +déshumanisent déshumaniser ver 0.12 0.14 0.04 0.00 ind:pre:3p; +déshumaniser déshumaniser ver 0.12 0.14 0.01 0.00 inf; +déshumanisé déshumaniser ver m s 0.12 0.14 0.00 0.14 par:pas; +déshumanisée déshumaniser ver f s 0.12 0.14 0.01 0.00 par:pas; +déshumanisées déshumaniser ver f p 0.12 0.14 0.01 0.00 par:pas; +déshumidification déshumidification nom f s 0.10 0.00 0.10 0.00 +déshérence déshérence nom f s 0.00 0.20 0.00 0.20 +déshérita déshériter ver 0.85 1.08 0.01 0.07 ind:pas:3s; +déshéritais déshériter ver 0.85 1.08 0.01 0.00 ind:imp:2s; +déshérite déshériter ver 0.85 1.08 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déshériter déshériter ver 0.85 1.08 0.18 0.34 inf; +déshéritera déshériter ver 0.85 1.08 0.02 0.00 ind:fut:3s; +déshériterai déshériter ver 0.85 1.08 0.01 0.07 ind:fut:1s; +déshériterais déshériter ver 0.85 1.08 0.11 0.00 cnd:pre:1s; +déshériterait déshériter ver 0.85 1.08 0.02 0.07 cnd:pre:3s; +déshérité déshériter ver m s 0.85 1.08 0.34 0.41 par:pas; +déshéritée déshérité nom f s 0.41 0.74 0.10 0.00 +déshéritées déshérité adj f p 0.22 1.42 0.10 0.20 +déshérités déshérité nom m p 0.41 0.74 0.29 0.74 +déshydratais déshydrater ver 1.17 0.14 0.01 0.00 ind:imp:1s; +déshydratant déshydrater ver 1.17 0.14 0.01 0.00 par:pre; +déshydratation déshydratation nom f s 0.61 0.07 0.61 0.07 +déshydrate déshydrater ver 1.17 0.14 0.20 0.00 ind:pre:1s;ind:pre:3s;sub:pre:1s; +déshydrater déshydrater ver 1.17 0.14 0.29 0.00 inf; +déshydraté déshydrater ver m s 1.17 0.14 0.44 0.00 par:pas; +déshydratée déshydraté adj f s 0.69 0.54 0.33 0.27 +déshydratées déshydrater ver f p 1.17 0.14 0.03 0.00 par:pas; +déshydratés déshydraté adj m p 0.69 0.54 0.03 0.14 +désigna désigner ver 10.04 66.69 0.04 10.07 ind:pas:3s; +désignai désigner ver 10.04 66.69 0.00 0.68 ind:pas:1s; +désignaient désigner ver 10.04 66.69 0.03 0.95 ind:imp:3p; +désignais désigner ver 10.04 66.69 0.03 0.20 ind:imp:1s;ind:imp:2s; +désignait désigner ver 10.04 66.69 0.29 8.85 ind:imp:3s; +désignant désigner ver 10.04 66.69 0.25 11.69 par:pre; +désignassent désigner ver 10.04 66.69 0.00 0.07 sub:imp:3p; +désignation désignation nom f s 0.49 1.62 0.47 1.55 +désignations désignation nom f p 0.49 1.62 0.02 0.07 +désigne désigner ver 10.04 66.69 1.97 9.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +désignent désigner ver 10.04 66.69 0.18 1.28 ind:pre:3p; +désigner désigner ver 10.04 66.69 1.81 8.38 inf; +désignera désigner ver 10.04 66.69 0.32 0.20 ind:fut:3s; +désignerai désigner ver 10.04 66.69 0.02 0.07 ind:fut:1s; +désignerait désigner ver 10.04 66.69 0.01 0.34 cnd:pre:3s; +désigneras désigner ver 10.04 66.69 0.01 0.00 ind:fut:2s; +désignerez désigner ver 10.04 66.69 0.02 0.00 ind:fut:2p; +désigneriez désigner ver 10.04 66.69 0.01 0.07 cnd:pre:2p; +désignerons désigner ver 10.04 66.69 0.01 0.00 ind:fut:1p; +désigneront désigner ver 10.04 66.69 0.01 0.00 ind:fut:3p; +désignez désigner ver 10.04 66.69 0.64 0.20 imp:pre:2p;ind:pre:2p; +désignions désigner ver 10.04 66.69 0.00 0.07 ind:imp:1p; +désignât désigner ver 10.04 66.69 0.00 0.34 sub:imp:3s; +désignèrent désigner ver 10.04 66.69 0.01 0.34 ind:pas:3p; +désigné désigner ver m s 10.04 66.69 3.04 8.58 par:pas; +désignée désigner ver f s 10.04 66.69 0.65 1.35 par:pas; +désignées désigner ver f p 10.04 66.69 0.06 0.95 par:pas; +désignés désigner ver m p 10.04 66.69 0.62 2.09 par:pas; +désillusion désillusion nom f s 1.08 2.23 0.94 1.22 +désillusionnement désillusionnement nom m s 0.10 0.00 0.10 0.00 +désillusionner désillusionner ver 0.02 0.14 0.02 0.00 inf; +désillusionné désillusionner ver m s 0.02 0.14 0.00 0.14 par:pas; +désillusions désillusion nom f p 1.08 2.23 0.14 1.01 +désincarcération désincarcération nom f s 0.01 0.00 0.01 0.00 +désincarcéré désincarcérer ver m s 0.01 0.00 0.01 0.00 par:pas; +désincarnant désincarner ver 0.02 0.61 0.00 0.07 par:pre; +désincarnation désincarnation nom f s 0.01 0.00 0.01 0.00 +désincarne désincarner ver 0.02 0.61 0.01 0.07 ind:pre:1s;ind:pre:3s; +désincarner désincarner ver 0.02 0.61 0.00 0.07 inf; +désincarné désincarné nom m s 0.18 0.34 0.02 0.20 +désincarnée désincarné adj f s 0.05 0.95 0.03 0.34 +désincarnées désincarné adj f p 0.05 0.95 0.01 0.20 +désincarnés désincarné nom m p 0.18 0.34 0.15 0.00 +désincrustante désincrustant adj f s 0.01 0.00 0.01 0.00 +désincruster désincruster ver 0.01 0.00 0.01 0.00 inf; +désindividualisation désindividualisation nom f s 0.10 0.00 0.10 0.00 +désinence désinence nom f s 0.00 0.20 0.00 0.07 +désinences désinence nom f p 0.00 0.20 0.00 0.14 +désinfecta désinfecter ver 3.27 2.57 0.00 0.07 ind:pas:3s; +désinfectant désinfectant nom m s 0.82 1.62 0.79 1.49 +désinfectante désinfectant adj f s 0.10 0.14 0.01 0.00 +désinfectantes désinfectant adj f p 0.10 0.14 0.02 0.00 +désinfectants désinfectant nom m p 0.82 1.62 0.04 0.14 +désinfecte désinfecter ver 3.27 2.57 1.00 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désinfectent désinfecter ver 3.27 2.57 0.08 0.07 ind:pre:3p; +désinfecter désinfecter ver 3.27 2.57 1.59 1.35 inf; +désinfecterai désinfecter ver 3.27 2.57 0.00 0.07 ind:fut:1s; +désinfectez désinfecter ver 3.27 2.57 0.05 0.00 imp:pre:2p;ind:pre:2p; +désinfection désinfection nom f s 0.72 0.61 0.71 0.61 +désinfections désinfection nom f p 0.72 0.61 0.01 0.00 +désinfecté désinfecter ver m s 3.27 2.57 0.47 0.20 par:pas; +désinfectée désinfecter ver f s 3.27 2.57 0.03 0.00 par:pas; +désinfectées désinfecter ver f p 3.27 2.57 0.03 0.07 par:pas; +désinfectés désinfecter ver m p 3.27 2.57 0.00 0.07 par:pas; +désinformation désinformation nom f s 0.21 0.41 0.20 0.41 +désinformations désinformation nom f p 0.21 0.41 0.01 0.00 +désinformer désinformer ver 0.01 0.07 0.01 0.00 inf; +désinformée désinformer ver f s 0.01 0.07 0.00 0.07 par:pas; +désinhibe désinhiber ver 0.01 0.00 0.01 0.00 ind:pre:3s; +désinsectisation désinsectisation nom f s 0.19 0.00 0.19 0.00 +désinsectiser désinsectiser ver 0.01 0.00 0.01 0.00 inf; +désinstaller désinstaller ver 0.03 0.00 0.02 0.00 inf; +désinstallé désinstaller ver m s 0.03 0.00 0.01 0.00 par:pas; +désintellectualiser désintellectualiser ver 0.01 0.00 0.01 0.00 inf; +désintoxication désintoxication nom f s 1.46 0.74 1.46 0.74 +désintoxique désintoxiquer ver 0.91 1.15 0.03 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désintoxiquer désintoxiquer ver 0.91 1.15 0.47 0.68 inf; +désintoxiquera désintoxiquer ver 0.91 1.15 0.00 0.07 ind:fut:3s; +désintoxiquez désintoxiquer ver 0.91 1.15 0.04 0.00 imp:pre:2p;ind:pre:2p; +désintoxiqué désintoxiquer ver m s 0.91 1.15 0.16 0.14 par:pas; +désintoxiquée désintoxiquer ver f s 0.91 1.15 0.20 0.07 par:pas; +désintoxiqués désintoxiquer ver m p 0.91 1.15 0.01 0.00 par:pas; +désintègre désintégrer ver 2.08 1.49 0.33 0.07 imp:pre:2s;ind:pre:3s; +désintègrent désintégrer ver 2.08 1.49 0.10 0.00 ind:pre:3p; +désintégra désintégrer ver 2.08 1.49 0.03 0.00 ind:pas:3s; +désintégraient désintégrer ver 2.08 1.49 0.01 0.07 ind:imp:3p; +désintégrait désintégrer ver 2.08 1.49 0.01 0.20 ind:imp:3s; +désintégrant désintégrer ver 2.08 1.49 0.11 0.14 par:pre; +désintégrateur désintégrateur nom m s 0.03 0.00 0.03 0.00 +désintégration désintégration nom f s 0.88 0.54 0.86 0.47 +désintégrations désintégration nom f p 0.88 0.54 0.02 0.07 +désintégrer désintégrer ver 2.08 1.49 0.50 0.41 inf; +désintégrera désintégrer ver 2.08 1.49 0.09 0.00 ind:fut:3s; +désintégreront désintégrer ver 2.08 1.49 0.03 0.00 ind:fut:3p; +désintégré désintégrer ver m s 2.08 1.49 0.65 0.14 par:pas; +désintégrée désintégrer ver f s 2.08 1.49 0.13 0.27 par:pas; +désintégrés désintégrer ver m p 2.08 1.49 0.09 0.20 par:pas; +désintéressa désintéresser ver 0.95 5.54 0.00 0.34 ind:pas:3s; +désintéressaient désintéresser ver 0.95 5.54 0.01 0.20 ind:imp:3p; +désintéressait désintéresser ver 0.95 5.54 0.00 1.01 ind:imp:3s; +désintéressant désintéresser ver 0.95 5.54 0.00 0.14 par:pre; +désintéresse désintéresser ver 0.95 5.54 0.11 0.47 ind:pre:1s;ind:pre:3s; +désintéressement désintéressement nom m s 0.33 2.09 0.33 2.09 +désintéressent désintéresser ver 0.95 5.54 0.00 0.07 ind:pre:3p; +désintéresser désintéresser ver 0.95 5.54 0.07 1.62 inf; +désintéresserait désintéresser ver 0.95 5.54 0.00 0.07 cnd:pre:3s; +désintéresseront désintéresser ver 0.95 5.54 0.00 0.07 ind:fut:3p; +désintéressiez désintéresser ver 0.95 5.54 0.02 0.00 ind:imp:2p; +désintéressé désintéressé adj m s 1.05 2.64 0.63 1.01 +désintéressée désintéressé adj f s 1.05 2.64 0.39 0.95 +désintéressées désintéresser ver f p 0.95 5.54 0.01 0.07 par:pas; +désintéressés désintéresser ver m p 0.95 5.54 0.23 0.00 par:pas; +désintérêt désintérêt nom m s 0.07 0.68 0.07 0.68 +désinvite désinviter ver 0.07 0.00 0.02 0.00 ind:pre:1s; +désinviter désinviter ver 0.07 0.00 0.05 0.00 inf; +désinvolte désinvolte adj s 1.09 7.50 0.81 6.76 +désinvoltes désinvolte adj p 1.09 7.50 0.28 0.74 +désinvolture désinvolture nom f s 0.32 9.86 0.32 9.80 +désinvoltures désinvolture nom f p 0.32 9.86 0.00 0.07 +désir désir nom m s 45.35 117.09 31.59 96.69 +désira désirer ver 65.63 61.89 0.04 0.81 ind:pas:3s; +désirabilité désirabilité nom f s 0.00 0.07 0.00 0.07 +désirable désirable adj s 1.39 5.20 1.18 4.19 +désirables désirable adj p 1.39 5.20 0.21 1.01 +désiraient désirer ver 65.63 61.89 0.26 2.03 ind:imp:3p; +désirais désirer ver 65.63 61.89 1.88 4.66 ind:imp:1s;ind:imp:2s; +désirait désirer ver 65.63 61.89 1.04 14.05 ind:imp:3s; +désirant désirer ver 65.63 61.89 0.29 0.61 par:pre; +désirante désirant adj f s 0.05 0.47 0.00 0.14 +désire désirer ver 65.63 61.89 21.01 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désirent désirer ver 65.63 61.89 2.06 2.16 ind:pre:3p; +désirer désirer ver 65.63 61.89 4.28 9.12 inf; +désirera désirer ver 65.63 61.89 0.17 0.00 ind:fut:3s; +désireraient désirer ver 65.63 61.89 0.01 0.14 cnd:pre:3p; +désirerais désirer ver 65.63 61.89 0.32 0.54 cnd:pre:1s;cnd:pre:2s; +désirerait désirer ver 65.63 61.89 0.11 0.47 cnd:pre:3s; +désireras désirer ver 65.63 61.89 0.13 0.07 ind:fut:2s; +désireriez désirer ver 65.63 61.89 0.03 0.00 cnd:pre:2p; +désirerions désirer ver 65.63 61.89 0.02 0.07 cnd:pre:1p; +désireront désirer ver 65.63 61.89 0.10 0.07 ind:fut:3p; +désires désirer ver 65.63 61.89 3.87 1.08 ind:pre:2s; +désireuse désireux adj f s 1.46 7.43 0.35 1.96 +désireuses désireux adj f p 1.46 7.43 0.06 0.27 +désireux désireux adj m 1.46 7.43 1.05 5.20 +désirez désirer ver 65.63 61.89 23.85 3.72 imp:pre:2p;ind:pre:2p; +désiriez désirer ver 65.63 61.89 0.83 0.47 ind:imp:2p; +désirions désirer ver 65.63 61.89 0.05 0.41 ind:imp:1p; +désirons désirer ver 65.63 61.89 0.68 0.68 ind:pre:1p; +désirât désirer ver 65.63 61.89 0.00 0.34 sub:imp:3s; +désirs désir nom m p 45.35 117.09 13.76 20.41 +désiré désirer ver m s 65.63 61.89 2.87 5.54 par:pas; +désirée désirer ver f s 65.63 61.89 1.67 1.42 par:pas; +désirées désiré adj f p 1.02 3.31 0.02 0.07 +désirés désiré adj m p 1.02 3.31 0.09 0.41 +désiste désister ver 0.64 0.20 0.05 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désistement désistement nom m s 0.12 0.07 0.12 0.07 +désister désister ver 0.64 0.20 0.18 0.07 inf; +désistez désister ver 0.64 0.20 0.04 0.00 imp:pre:2p;ind:pre:2p; +désistèrent désister ver 0.64 0.20 0.01 0.00 ind:pas:3p; +désisté désister ver m s 0.64 0.20 0.34 0.00 par:pas; +désistée désister ver f s 0.64 0.20 0.02 0.07 par:pas; +désistés désister ver m p 0.64 0.20 0.00 0.07 par:pas; +déslipe désliper ver 0.00 0.07 0.00 0.07 ind:pre:1s; +désoblige désobliger ver 0.04 0.81 0.00 0.07 ind:pre:3s; +désobligea désobliger ver 0.04 0.81 0.00 0.07 ind:pas:3s; +désobligeait désobliger ver 0.04 0.81 0.00 0.07 ind:imp:3s; +désobligeance désobligeance nom f s 0.00 0.14 0.00 0.14 +désobligeant désobligeant adj m s 0.76 3.04 0.54 0.74 +désobligeante désobligeant adj f s 0.76 3.04 0.09 1.01 +désobligeantes désobligeant adj f p 0.76 3.04 0.09 0.88 +désobligeants désobligeant adj m p 0.76 3.04 0.04 0.41 +désobligent désobliger ver 0.04 0.81 0.01 0.07 ind:pre:3p; +désobliger désobliger ver 0.04 0.81 0.01 0.34 inf; +désobligerait désobliger ver 0.04 0.81 0.00 0.07 cnd:pre:3s; +désobligés désobliger ver m p 0.04 0.81 0.00 0.07 par:pas; +désobéi désobéir ver m s 6.15 2.09 2.27 0.20 par:pas; +désobéir désobéir ver 6.15 2.09 1.75 1.01 inf; +désobéira désobéir ver 6.15 2.09 0.05 0.00 ind:fut:3s; +désobéirai désobéir ver 6.15 2.09 0.03 0.00 ind:fut:1s; +désobéirais désobéir ver 6.15 2.09 0.02 0.00 cnd:pre:2s; +désobéiront désobéir ver 6.15 2.09 0.01 0.00 ind:fut:3p; +désobéis désobéir ver 6.15 2.09 0.76 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +désobéissais désobéir ver 6.15 2.09 0.14 0.07 ind:imp:1s;ind:imp:2s; +désobéissait désobéir ver 6.15 2.09 0.02 0.14 ind:imp:3s; +désobéissance désobéissance nom f s 0.91 0.74 0.91 0.68 +désobéissances désobéissance nom f p 0.91 0.74 0.00 0.07 +désobéissant désobéissant adj m s 0.39 0.14 0.13 0.00 +désobéissante désobéissant adj f s 0.39 0.14 0.23 0.07 +désobéissants désobéissant adj m p 0.39 0.14 0.03 0.07 +désobéisse désobéir ver 6.15 2.09 0.06 0.07 sub:pre:1s;sub:pre:3s; +désobéissent désobéir ver 6.15 2.09 0.27 0.14 ind:pre:3p; +désobéissez désobéir ver 6.15 2.09 0.36 0.00 imp:pre:2p;ind:pre:2p; +désobéissions désobéir ver 6.15 2.09 0.00 0.07 ind:imp:1p; +désobéit désobéir ver 6.15 2.09 0.34 0.27 ind:pre:3s;ind:pas:3s; +désoccupés désoccupé adj m p 0.00 0.20 0.00 0.20 +désodorisant désodorisant nom m s 0.45 0.27 0.32 0.27 +désodorisante désodorisant adj f s 0.09 0.07 0.01 0.07 +désodorisants désodorisant nom m p 0.45 0.27 0.13 0.00 +désodoriser désodoriser ver 0.04 0.07 0.04 0.00 inf; +désodorisés désodoriser ver m p 0.04 0.07 0.01 0.07 par:pas; +désodé désodé adj m s 0.00 0.07 0.00 0.07 +désoeuvre désoeuvre nom f s 0.00 0.07 0.00 0.07 +désoeuvrement désoeuvrement nom m s 0.03 2.36 0.03 2.30 +désoeuvrements désoeuvrement nom m p 0.03 2.36 0.00 0.07 +désoeuvré désoeuvrer ver m s 0.28 0.95 0.02 0.47 par:pas; +désoeuvrée désoeuvrer ver f s 0.28 0.95 0.10 0.14 par:pas; +désoeuvrées désoeuvré adj f p 0.17 3.04 0.01 0.34 +désoeuvrés désoeuvrer ver m p 0.28 0.95 0.16 0.27 par:pas; +désola désoler ver 297.27 14.46 0.00 0.27 ind:pas:3s; +désolai désoler ver 297.27 14.46 0.00 0.14 ind:pas:1s; +désolaient désoler ver 297.27 14.46 0.00 0.07 ind:imp:3p; +désolais désoler ver 297.27 14.46 0.00 0.27 ind:imp:1s; +désolait désoler ver 297.27 14.46 0.10 1.15 ind:imp:3s; +désolant désolant adj m s 0.88 2.50 0.65 1.08 +désolante désolant adj f s 0.88 2.50 0.08 1.08 +désolantes désolant adj f p 0.88 2.50 0.14 0.14 +désolants désolant adj m p 0.88 2.50 0.01 0.20 +désolation désolation nom f s 1.04 6.82 1.04 6.76 +désolations désolation nom f p 1.04 6.82 0.00 0.07 +désole désoler ver 297.27 14.46 2.08 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désolent désoler ver 297.27 14.46 0.01 0.00 ind:pre:3p; +désoler désoler ver 297.27 14.46 0.35 0.61 inf; +désolera désoler ver 297.27 14.46 0.02 0.00 ind:fut:3s; +désolerait désoler ver 297.27 14.46 0.03 0.00 cnd:pre:3s; +désoleront désoler ver 297.27 14.46 0.00 0.07 ind:fut:3p; +désoles désoler ver 297.27 14.46 0.02 0.07 ind:pre:2s; +désolez désoler ver 297.27 14.46 0.03 0.07 imp:pre:2p; +désolidarisa désolidariser ver 0.04 1.08 0.00 0.07 ind:pas:3s; +désolidarisaient désolidariser ver 0.04 1.08 0.00 0.07 ind:imp:3p; +désolidarisait désolidariser ver 0.04 1.08 0.00 0.20 ind:imp:3s; +désolidariser désolidariser ver 0.04 1.08 0.04 0.47 inf; +désolidariserai désolidariser ver 0.04 1.08 0.00 0.14 ind:fut:1s; +désolidarisé désolidariser ver m s 0.04 1.08 0.00 0.07 par:pas; +désolidarisés désolidariser ver m p 0.04 1.08 0.00 0.07 par:pas; +désolât désoler ver 297.27 14.46 0.00 0.07 sub:imp:3s; +désolé désolé adj m s 276.66 12.43 193.51 6.49 +désolée désoler ver f s 297.27 14.46 98.22 3.38 ind:imp:3s;par:pas; +désolées désolé adj f p 276.66 12.43 0.37 0.61 +désolés désoler ver m p 297.27 14.46 2.71 0.34 par:pas; +désopilant désopilant adj m s 0.42 1.08 0.41 0.61 +désopilante désopilant adj f s 0.42 1.08 0.01 0.14 +désopilantes désopilant adj f p 0.42 1.08 0.00 0.14 +désopilants désopilant adj m p 0.42 1.08 0.01 0.20 +désorbitation désorbitation nom f s 0.01 0.00 0.01 0.00 +désorbitent désorbiter ver 0.03 0.07 0.01 0.07 ind:pre:3p; +désorbiter désorbiter ver 0.03 0.07 0.02 0.00 inf; +désordonne désordonner ver 0.61 0.74 0.00 0.07 ind:pre:3s; +désordonné désordonner ver m s 0.61 0.74 0.27 0.20 par:pas; +désordonnée désordonné adj f s 0.40 5.41 0.22 1.62 +désordonnées désordonné adj f p 0.40 5.41 0.02 0.81 +désordonnément désordonnément adv 0.00 0.07 0.00 0.07 +désordonnés désordonner ver m p 0.61 0.74 0.21 0.14 par:pas; +désordre désordre nom m s 13.64 42.23 12.34 39.12 +désordres désordre nom m p 13.64 42.23 1.30 3.11 +désorganisait désorganiser ver 0.93 0.95 0.00 0.14 ind:imp:3s; +désorganisateur désorganisateur nom m s 0.00 0.07 0.00 0.07 +désorganisation désorganisation nom f s 0.01 0.47 0.01 0.47 +désorganise désorganiser ver 0.93 0.95 0.28 0.07 ind:pre:1s;ind:pre:3s; +désorganiser désorganiser ver 0.93 0.95 0.05 0.14 inf; +désorganisé désorganiser ver m s 0.93 0.95 0.43 0.20 par:pas; +désorganisée désorganiser ver f s 0.93 0.95 0.08 0.00 par:pas; +désorganisées désorganiser ver f p 0.93 0.95 0.01 0.20 par:pas; +désorganisés désorganiser ver m p 0.93 0.95 0.09 0.20 par:pas; +désorienta désorienter ver 1.32 2.77 0.00 0.14 ind:pas:3s; +désorientaient désorienter ver 1.32 2.77 0.00 0.07 ind:imp:3p; +désorientait désorienter ver 1.32 2.77 0.00 0.34 ind:imp:3s; +désorientant désorienter ver 1.32 2.77 0.01 0.20 par:pre; +désorientation désorientation nom f s 0.43 0.14 0.43 0.14 +désoriente désorienter ver 1.32 2.77 0.14 0.34 ind:pre:3s; +désorientent désorienter ver 1.32 2.77 0.00 0.07 ind:pre:3p; +désorienter désorienter ver 1.32 2.77 0.19 0.07 inf; +désorienterait désorienter ver 1.32 2.77 0.00 0.07 cnd:pre:3s; +désorienté désorienté adj m s 1.31 2.50 0.70 1.35 +désorientée désorienté adj f s 1.31 2.50 0.53 0.74 +désorientées désorienté adj f p 1.31 2.50 0.00 0.14 +désorientés désorienté adj m p 1.31 2.50 0.08 0.27 +désormais désormais adv 39.13 88.45 39.13 88.45 +désossage désossage nom m s 0.01 0.00 0.01 0.00 +désossait désosser ver 0.59 1.55 0.00 0.07 ind:imp:3s; +désosse désosser ver 0.59 1.55 0.05 0.20 imp:pre:2s;ind:pre:3s; +désossement désossement nom m s 0.01 0.00 0.01 0.00 +désosser désosser ver 0.59 1.55 0.13 0.34 inf; +désosseur désosseur nom m s 0.01 0.00 0.01 0.00 +désossé désosser ver m s 0.59 1.55 0.11 0.27 par:pas; +désossée désosser ver f s 0.59 1.55 0.31 0.34 par:pas; +désossées désosser ver f p 0.59 1.55 0.00 0.20 par:pas; +désossés désosser ver m p 0.59 1.55 0.00 0.14 par:pas; +désoxygénation désoxygénation nom f s 0.01 0.00 0.01 0.00 +désoxyribonucléique désoxyribonucléique adj m s 0.01 0.07 0.01 0.07 +déspiritualisation déspiritualisation nom f s 0.00 0.07 0.00 0.07 +déspiritualiser déspiritualiser ver 0.00 0.07 0.00 0.07 inf; +dusse devoir ver_sup 3232.80 1318.24 0.28 0.20 sub:imp:1s; +dussent devoir ver_sup 3232.80 1318.24 0.05 0.41 sub:imp:3p; +dusses devoir ver_sup 3232.80 1318.24 0.00 0.07 sub:imp:2s; +dussiez devoir ver_sup 3232.80 1318.24 0.03 0.20 sub:imp:2p; +dussions devoir ver_sup 3232.80 1318.24 0.03 0.20 sub:imp:1p; +déstabilisaient déstabiliser ver 1.80 0.61 0.02 0.00 ind:imp:3p; +déstabilisant déstabilisant adj m s 0.37 0.00 0.32 0.00 +déstabilisante déstabilisant adj f s 0.37 0.00 0.04 0.00 +déstabilisantes déstabilisant adj f p 0.37 0.00 0.01 0.00 +déstabilisation déstabilisation nom f s 0.18 0.07 0.18 0.07 +déstabilisatrice déstabilisateur adj f s 0.14 0.00 0.14 0.00 +déstabilise déstabiliser ver 1.80 0.61 0.29 0.00 ind:pre:3s; +déstabilisent déstabiliser ver 1.80 0.61 0.05 0.00 ind:pre:3p; +déstabiliser déstabiliser ver 1.80 0.61 0.80 0.47 inf; +déstabilisera déstabiliser ver 1.80 0.61 0.06 0.00 ind:fut:3s; +déstabiliserait déstabiliser ver 1.80 0.61 0.10 0.00 cnd:pre:3s; +déstabilisez déstabiliser ver 1.80 0.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +déstabilisé déstabiliser ver m s 1.80 0.61 0.35 0.07 par:pas; +déstabilisée déstabiliser ver f s 1.80 0.61 0.08 0.00 par:pas; +déstabilisés déstabiliser ver m p 1.80 0.61 0.01 0.07 par:pas; +déstalinisation déstalinisation nom f s 0.00 0.07 0.00 0.07 +déstockage déstockage nom m s 0.03 0.00 0.03 0.00 +déstocké déstocker ver m s 0.01 0.07 0.01 0.07 par:pas; +déstructuration déstructuration nom f s 0.03 0.00 0.03 0.00 +déstructurer déstructurer ver 0.03 0.07 0.01 0.07 inf; +déstructuré déstructurer ver m s 0.03 0.07 0.02 0.00 par:pas; +désubjectiviser désubjectiviser ver 0.00 0.07 0.00 0.07 inf; +déséchouée déséchouer ver f s 0.00 0.07 0.00 0.07 par:pas; +désuet désuet adj m s 0.36 3.38 0.16 1.62 +désuets désuet adj m p 0.36 3.38 0.03 0.47 +déségrégation déségrégation nom f s 0.03 0.00 0.03 0.00 +désuni désuni adj m s 0.07 0.54 0.02 0.07 +désunie désuni adj f s 0.07 0.54 0.01 0.07 +désunies désuni adj f p 0.07 0.54 0.01 0.14 +désunion désunion nom f s 0.20 0.20 0.20 0.20 +désunir désunir ver 0.27 1.15 0.13 0.54 inf; +désunirait désunir ver 0.27 1.15 0.00 0.07 cnd:pre:3s; +désunirent désunir ver 0.27 1.15 0.00 0.07 ind:pas:3p; +désunis désuni adj m p 0.07 0.54 0.03 0.27 +désunissaient désunir ver 0.27 1.15 0.00 0.14 ind:imp:3p; +désunissait désunir ver 0.27 1.15 0.00 0.07 ind:imp:3s; +désunissant désunir ver 0.27 1.15 0.00 0.07 par:pre; +désunisse désunir ver 0.27 1.15 0.01 0.00 sub:pre:3s; +désunissent désunir ver 0.27 1.15 0.00 0.07 ind:pre:3p; +désunit désunir ver 0.27 1.15 0.12 0.07 ind:pre:3s;ind:pas:3s; +désépaissir désépaissir ver 0.01 0.07 0.00 0.07 inf; +désépaissis désépaissir ver 0.01 0.07 0.01 0.00 ind:pre:1s; +déséquilibra déséquilibrer ver 0.74 1.89 0.00 0.14 ind:pas:3s; +déséquilibraient déséquilibrer ver 0.74 1.89 0.00 0.07 ind:imp:3p; +déséquilibrais déséquilibrer ver 0.74 1.89 0.00 0.07 ind:imp:1s; +déséquilibrait déséquilibrer ver 0.74 1.89 0.00 0.27 ind:imp:3s; +déséquilibrant déséquilibrer ver 0.74 1.89 0.00 0.07 par:pre; +déséquilibre déséquilibre nom m s 0.83 2.64 0.82 2.36 +déséquilibrer déséquilibrer ver 0.74 1.89 0.07 0.27 inf; +déséquilibres déséquilibre nom m p 0.83 2.64 0.01 0.27 +déséquilibrez déséquilibrer ver 0.74 1.89 0.01 0.00 ind:pre:2p; +déséquilibrât déséquilibrer ver 0.74 1.89 0.00 0.07 sub:imp:3s; +déséquilibré déséquilibrer ver m s 0.74 1.89 0.41 0.47 par:pas; +déséquilibrée déséquilibrer ver f s 0.74 1.89 0.16 0.34 par:pas; +déséquilibrées déséquilibré nom f p 0.20 1.42 0.01 0.07 +déséquilibrés déséquilibré adj m p 0.41 1.08 0.04 0.14 +déséquipent déséquiper ver 0.00 0.47 0.00 0.07 ind:pre:3p; +déséquiper déséquiper ver 0.00 0.47 0.00 0.20 inf; +déséquipé déséquiper ver m s 0.00 0.47 0.00 0.14 par:pas; +déséquipés déséquiper ver m p 0.00 0.47 0.00 0.07 par:pas; +désuète désuet adj f s 0.36 3.38 0.04 0.74 +désuètes désuet adj f p 0.36 3.38 0.14 0.54 +désuétude désuétude nom f s 0.06 0.27 0.06 0.27 +désynchronisation désynchronisation nom f s 0.01 0.00 0.01 0.00 +désynchronisé désynchroniser ver m s 0.01 0.07 0.01 0.07 par:pas; +dut devoir ver_sup 3232.80 1318.24 1.91 44.19 ind:pas:3s; +détînt détenir ver 12.53 10.61 0.00 0.07 sub:imp:3s; +détacha détacher ver 19.69 65.47 0.13 6.22 ind:pas:3s; +détachable détachable adj s 0.14 0.00 0.14 0.00 +détachai détacher ver 19.69 65.47 0.00 0.14 ind:pas:1s; +détachaient détacher ver 19.69 65.47 0.01 3.99 ind:imp:3p; +détachais détacher ver 19.69 65.47 0.02 0.14 ind:imp:1s;ind:imp:2s; +détachait détacher ver 19.69 65.47 0.17 8.51 ind:imp:3s; +détachant détachant nom m s 0.16 0.54 0.16 0.41 +détachants détachant nom m p 0.16 0.54 0.00 0.14 +détache détacher ver 19.69 65.47 7.44 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +détachement détachement nom m s 2.50 17.84 2.25 15.14 +détachements détachement nom m p 2.50 17.84 0.25 2.70 +détachent détacher ver 19.69 65.47 0.45 3.31 ind:pre:3p; +détacher détacher ver 19.69 65.47 4.44 15.14 inf; +détacherai détacher ver 19.69 65.47 0.04 0.00 ind:fut:1s; +détacheraient détacher ver 19.69 65.47 0.00 0.07 cnd:pre:3p; +détacherais détacher ver 19.69 65.47 0.01 0.07 cnd:pre:1s; +détacherait détacher ver 19.69 65.47 0.02 0.41 cnd:pre:3s; +détacherons détacher ver 19.69 65.47 0.00 0.07 ind:fut:1p; +détacheront détacher ver 19.69 65.47 0.01 0.00 ind:fut:3p; +détaches détacher ver 19.69 65.47 0.23 0.34 ind:pre:2s; +détacheur détacheur nom m s 0.10 0.00 0.10 0.00 +détachez détacher ver 19.69 65.47 3.83 0.41 imp:pre:2p;ind:pre:2p; +détachions détacher ver 19.69 65.47 0.00 0.07 ind:imp:1p; +détachons détacher ver 19.69 65.47 0.18 0.14 imp:pre:1p;ind:pre:1p; +détachât détacher ver 19.69 65.47 0.00 0.14 sub:imp:3s; +détachèrent détacher ver 19.69 65.47 0.01 0.81 ind:pas:3p; +détaché détacher ver m s 19.69 65.47 1.45 7.03 par:pas; +détachée détacher ver f s 19.69 65.47 0.57 2.64 par:pas; +détachées détaché adj f p 2.88 12.50 1.32 1.42 +détachés détacher ver m p 19.69 65.47 0.37 1.15 par:pas; +détail détail nom m s 55.78 91.15 19.82 37.97 +détailla détailler ver 2.28 14.59 0.00 0.95 ind:pas:3s; +détaillai détailler ver 2.28 14.59 0.00 0.20 ind:pas:1s; +détaillaient détailler ver 2.28 14.59 0.00 0.20 ind:imp:3p; +détaillais détailler ver 2.28 14.59 0.00 0.34 ind:imp:1s; +détaillait détailler ver 2.28 14.59 0.02 1.89 ind:imp:3s; +détaillant détailler ver 2.28 14.59 0.21 1.28 par:pre; +détaillante détaillant adj f s 0.00 0.20 0.00 0.07 +détaillants détaillant nom m p 0.14 0.14 0.06 0.07 +détaille détailler ver 2.28 14.59 0.20 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détailler détailler ver 2.28 14.59 0.14 4.26 inf; +détaillera détailler ver 2.28 14.59 0.01 0.00 ind:fut:3s; +détaillerai détailler ver 2.28 14.59 0.01 0.07 ind:fut:1s; +détaillez détailler ver 2.28 14.59 0.07 0.07 imp:pre:2p;ind:pre:2p; +détaillions détailler ver 2.28 14.59 0.00 0.07 ind:imp:1p; +détaillons détailler ver 2.28 14.59 0.00 0.07 ind:pre:1p; +détaillât détailler ver 2.28 14.59 0.00 0.07 sub:imp:3s; +détaillèrent détailler ver 2.28 14.59 0.00 0.14 ind:pas:3p; +détaillé détaillé adj m s 1.94 2.57 1.12 1.22 +détaillée détailler ver f s 2.28 14.59 0.68 0.74 par:pas; +détaillées détaillé adj f p 1.94 2.57 0.16 0.47 +détaillés détaillé adj m p 1.94 2.57 0.23 0.27 +détails détail nom m p 55.78 91.15 35.96 53.18 +détala détaler ver 1.13 5.00 0.00 0.88 ind:pas:3s; +détalai détaler ver 1.13 5.00 0.00 0.34 ind:pas:1s; +détalaient détaler ver 1.13 5.00 0.01 0.34 ind:imp:3p; +détalait détaler ver 1.13 5.00 0.02 0.27 ind:imp:3s; +détalant détaler ver 1.13 5.00 0.01 0.54 par:pre; +détale détaler ver 1.13 5.00 0.28 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détalent détaler ver 1.13 5.00 0.06 0.20 ind:pre:3p; +détaler détaler ver 1.13 5.00 0.14 1.28 inf; +détaleraient détaler ver 1.13 5.00 0.01 0.00 cnd:pre:3p; +détaleront détaler ver 1.13 5.00 0.03 0.00 ind:fut:3p; +détales détaler ver 1.13 5.00 0.05 0.00 ind:pre:2s; +détalions détaler ver 1.13 5.00 0.00 0.07 ind:imp:1p; +détalonner détalonner ver 0.01 0.00 0.01 0.00 inf; +détalât détaler ver 1.13 5.00 0.00 0.07 sub:imp:3s; +détalèrent détaler ver 1.13 5.00 0.00 0.20 ind:pas:3p; +détalé détaler ver m s 1.13 5.00 0.52 0.27 par:pas; +détartrage détartrage nom m s 0.12 0.00 0.12 0.00 +détartrant détartrant nom m s 0.02 0.00 0.02 0.00 +détartrants détartrant adj m p 0.00 0.14 0.00 0.14 +détaxe détaxe nom f s 0.02 0.00 0.01 0.00 +détaxes détaxe nom f p 0.02 0.00 0.01 0.00 +détaxée détaxer ver f s 0.11 0.07 0.10 0.00 par:pas; +détaxées détaxer ver f p 0.11 0.07 0.01 0.07 par:pas; +détecta détecter ver 9.86 3.04 0.00 0.07 ind:pas:3s; +détectable détectable adj s 0.22 0.00 0.17 0.00 +détectables détectable adj p 0.22 0.00 0.05 0.00 +détectai détecter ver 9.86 3.04 0.00 0.07 ind:pas:1s; +détectaient détecter ver 9.86 3.04 0.01 0.00 ind:imp:3p; +détectait détecter ver 9.86 3.04 0.00 0.20 ind:imp:3s; +détecte détecter ver 9.86 3.04 2.23 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détectent détecter ver 9.86 3.04 0.50 0.27 ind:pre:3p; +détecter détecter ver 9.86 3.04 2.49 1.49 inf; +détectera détecter ver 9.86 3.04 0.09 0.00 ind:fut:3s; +détecteront détecter ver 9.86 3.04 0.07 0.00 ind:fut:3p; +détecteur détecteur nom m s 8.05 0.27 5.19 0.20 +détecteurs détecteur nom m p 8.05 0.27 2.86 0.07 +détectez détecter ver 9.86 3.04 0.07 0.00 imp:pre:2p;ind:pre:2p; +détection détection nom f s 1.89 0.27 1.84 0.27 +détections détection nom f p 1.89 0.27 0.05 0.00 +détective_conseil détective_conseil nom s 0.01 0.00 0.01 0.00 +détective détective nom s 24.61 3.92 20.77 2.36 +détectives_conseil détectives_conseil nom p 0.01 0.00 0.01 0.00 +détectives détective nom p 24.61 3.92 3.84 1.55 +détectons détecter ver 9.86 3.04 0.10 0.07 ind:pre:1p; +détecté détecter ver m s 9.86 3.04 2.94 0.27 par:pas; +détectée détecter ver f s 9.86 3.04 0.64 0.00 par:pas; +détectées détecter ver f p 9.86 3.04 0.15 0.07 par:pas; +détectés détecter ver m p 9.86 3.04 0.56 0.07 par:pas; +déteignaient déteindre ver 1.47 3.38 0.00 0.07 ind:imp:3p; +déteignait déteindre ver 1.47 3.38 0.01 0.14 ind:imp:3s; +déteignant déteindre ver 1.47 3.38 0.00 0.07 par:pre; +déteigne déteindre ver 1.47 3.38 0.13 0.07 sub:pre:3s; +déteignent déteindre ver 1.47 3.38 0.03 0.20 ind:pre:3p; +déteignes déteindre ver 1.47 3.38 0.01 0.00 sub:pre:2s; +déteindra déteindre ver 1.47 3.38 0.05 0.00 ind:fut:3s; +déteindre déteindre ver 1.47 3.38 0.51 0.61 inf; +déteint déteindre ver m s 1.47 3.38 0.73 1.42 ind:pre:3s;par:pas; +déteinte déteindre ver f s 1.47 3.38 0.00 0.27 par:pas; +déteintes déteindre ver f p 1.47 3.38 0.00 0.34 par:pas; +déteints déteindre ver m p 1.47 3.38 0.00 0.20 par:pas; +détela dételer ver 0.45 1.82 0.00 0.14 ind:pas:3s; +dételage dételage nom m s 0.01 0.00 0.01 0.00 +dételaient dételer ver 0.45 1.82 0.01 0.07 ind:imp:3p; +dételait dételer ver 0.45 1.82 0.00 0.07 ind:imp:3s; +dételer dételer ver 0.45 1.82 0.04 0.61 inf; +dételez dételer ver 0.45 1.82 0.23 0.00 imp:pre:2p; +dételle dételer ver 0.45 1.82 0.16 0.07 imp:pre:2s;ind:pre:3s; +dételé dételer ver m s 0.45 1.82 0.02 0.47 par:pas; +dételée dételer ver f s 0.45 1.82 0.00 0.14 par:pas; +dételées dételer ver f p 0.45 1.82 0.00 0.14 par:pas; +dételés dételer ver m p 0.45 1.82 0.00 0.14 par:pas; +détenaient détenir ver 12.53 10.61 0.13 1.01 ind:imp:3p; +détenais détenir ver 12.53 10.61 0.06 0.27 ind:imp:1s;ind:imp:2s; +détenait détenir ver 12.53 10.61 0.60 2.91 ind:imp:3s; +détenant détenir ver 12.53 10.61 0.09 0.00 par:pre; +détend détendre ver 44.39 23.58 3.21 2.70 ind:pre:3s; +détendît détendre ver 44.39 23.58 0.00 0.07 sub:imp:3s; +détendaient détendre ver 44.39 23.58 0.10 0.74 ind:imp:3p; +détendais détendre ver 44.39 23.58 0.03 0.00 ind:imp:1s;ind:imp:2s; +détendait détendre ver 44.39 23.58 0.08 1.69 ind:imp:3s; +détendant détendre ver 44.39 23.58 0.01 0.47 par:pre; +détende détendre ver 44.39 23.58 0.33 0.14 sub:pre:1s;sub:pre:3s; +détendent détendre ver 44.39 23.58 0.15 0.74 ind:pre:3p; +détendes détendre ver 44.39 23.58 0.36 0.00 sub:pre:2s; +détendeur détendeur nom m s 0.48 0.00 0.48 0.00 +détendez détendre ver 44.39 23.58 9.71 0.41 imp:pre:2p;ind:pre:2p; +détendiez détendre ver 44.39 23.58 0.09 0.07 ind:imp:2p; +détendions détendre ver 44.39 23.58 0.00 0.14 ind:imp:1p; +détendirent détendre ver 44.39 23.58 0.01 0.61 ind:pas:3p; +détendis détendre ver 44.39 23.58 0.00 0.20 ind:pas:1s; +détendit détendre ver 44.39 23.58 0.11 3.85 ind:pas:3s; +détendons détendre ver 44.39 23.58 0.07 0.00 imp:pre:1p;ind:pre:1p; +détendra détendre ver 44.39 23.58 0.55 0.07 ind:fut:3s; +détendrai détendre ver 44.39 23.58 0.05 0.00 ind:fut:1s; +détendraient détendre ver 44.39 23.58 0.01 0.07 cnd:pre:3p; +détendrait détendre ver 44.39 23.58 0.35 0.20 cnd:pre:3s; +détendre détendre ver 44.39 23.58 11.77 5.41 inf;; +détendrez détendre ver 44.39 23.58 0.02 0.00 ind:fut:2p; +détendrons détendre ver 44.39 23.58 0.01 0.00 ind:fut:1p; +détends détendre ver 44.39 23.58 15.11 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détendu détendu adj m s 2.90 7.43 1.77 3.99 +détendue détendu adj f s 2.90 7.43 0.89 1.76 +détendues détendu adj f p 2.90 7.43 0.02 0.27 +détendus détendu adj m p 2.90 7.43 0.22 1.42 +détenez détenir ver 12.53 10.61 0.47 0.00 imp:pre:2p;ind:pre:2p; +déteniez détenir ver 12.53 10.61 0.04 0.14 ind:imp:2p; +détenions détenir ver 12.53 10.61 0.01 0.07 ind:imp:1p; +détenir détenir ver 12.53 10.61 1.11 1.89 inf; +détenons détenir ver 12.53 10.61 0.64 0.14 imp:pre:1p;ind:pre:1p; +détente détente nom f s 5.47 10.68 5.42 10.47 +détentes détente nom f p 5.47 10.68 0.06 0.20 +détenteur détenteur nom m s 0.67 1.55 0.33 0.81 +détenteurs détenteur nom m p 0.67 1.55 0.23 0.68 +détention détention nom f s 6.98 2.84 6.85 2.84 +détentions détention nom f p 6.98 2.84 0.13 0.00 +détentrice détenteur nom f s 0.67 1.55 0.11 0.07 +détentrices détentrice adj f p 0.00 0.07 0.00 0.07 +détenu détenu nom m s 12.67 6.08 3.64 2.09 +détenue détenir ver f s 12.53 10.61 0.45 0.07 par:pas; +détenues détenu nom f p 12.67 6.08 0.16 0.00 +détenus détenu nom m p 12.67 6.08 8.57 3.72 +détergeant déterger ver 0.08 0.00 0.08 0.00 par:pre; +détergent détergent nom m s 1.25 0.20 0.99 0.07 +détergents détergent nom m p 1.25 0.20 0.26 0.14 +détermina déterminer ver 14.51 11.96 0.02 0.41 ind:pas:3s; +déterminai déterminer ver 14.51 11.96 0.00 0.07 ind:pas:1s; +déterminaient déterminer ver 14.51 11.96 0.01 0.41 ind:imp:3p; +déterminais déterminer ver 14.51 11.96 0.03 0.07 ind:imp:1s;ind:imp:2s; +déterminait déterminer ver 14.51 11.96 0.04 0.47 ind:imp:3s; +déterminant déterminant adj m s 0.41 1.69 0.33 0.74 +déterminante déterminant adj f s 0.41 1.69 0.04 0.68 +déterminantes déterminant adj f p 0.41 1.69 0.02 0.07 +déterminants déterminant adj m p 0.41 1.69 0.01 0.20 +détermination détermination nom f s 2.75 4.86 2.75 4.59 +déterminations détermination nom f p 2.75 4.86 0.00 0.27 +détermine déterminer ver 14.51 11.96 1.56 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déterminent déterminer ver 14.51 11.96 0.26 0.47 ind:pre:3p; +déterminer déterminer ver 14.51 11.96 6.10 4.32 inf; +déterminera déterminer ver 14.51 11.96 0.36 0.07 ind:fut:3s; +détermineraient déterminer ver 14.51 11.96 0.00 0.07 cnd:pre:3p; +déterminerait déterminer ver 14.51 11.96 0.03 0.14 cnd:pre:3s; +déterminerons déterminer ver 14.51 11.96 0.08 0.00 ind:fut:1p; +détermineront déterminer ver 14.51 11.96 0.19 0.00 ind:fut:3p; +déterminez déterminer ver 14.51 11.96 0.13 0.00 imp:pre:2p;ind:pre:2p; +déterminiez déterminer ver 14.51 11.96 0.04 0.00 ind:imp:2p; +déterminions déterminer ver 14.51 11.96 0.01 0.00 ind:imp:1p; +déterminisme déterminisme nom m s 0.22 0.47 0.22 0.47 +déterministe déterministe adj s 0.10 0.14 0.10 0.07 +déterministes déterministe adj m p 0.10 0.14 0.00 0.07 +déterminons déterminer ver 14.51 11.96 0.21 0.00 imp:pre:1p;ind:pre:1p; +déterminèrent déterminer ver 14.51 11.96 0.00 0.27 ind:pas:3p; +déterminé déterminer ver m s 14.51 11.96 3.05 2.16 par:pas; +déterminée déterminer ver f s 14.51 11.96 1.46 1.28 par:pas; +déterminées déterminé adj f p 2.39 4.32 0.24 0.41 +déterminément déterminément adv 0.00 0.34 0.00 0.34 +déterminés déterminer ver m p 14.51 11.96 0.67 0.54 par:pas; +déterra déterrer ver 5.44 3.51 0.04 0.14 ind:pas:3s; +déterrage déterrage nom m s 0.01 0.00 0.01 0.00 +déterraient déterrer ver 5.44 3.51 0.01 0.20 ind:imp:3p; +déterrais déterrer ver 5.44 3.51 0.00 0.07 ind:imp:1s; +déterrait déterrer ver 5.44 3.51 0.02 0.27 ind:imp:3s; +déterrant déterrer ver 5.44 3.51 0.05 0.14 par:pre; +déterre déterrer ver 5.44 3.51 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déterrent déterrer ver 5.44 3.51 0.18 0.14 ind:pre:3p; +déterrer déterrer ver 5.44 3.51 2.05 0.68 inf; +déterrera déterrer ver 5.44 3.51 0.04 0.07 ind:fut:3s; +déterrerai déterrer ver 5.44 3.51 0.32 0.00 ind:fut:1s; +déterrerait déterrer ver 5.44 3.51 0.00 0.07 cnd:pre:3s; +déterrerez déterrer ver 5.44 3.51 0.01 0.00 ind:fut:2p; +déterreront déterrer ver 5.44 3.51 0.03 0.00 ind:fut:3p; +déterreur déterreur nom m s 0.07 0.00 0.02 0.00 +déterreurs déterreur nom m p 0.07 0.00 0.04 0.00 +déterreuse déterreur nom f s 0.07 0.00 0.01 0.00 +déterrez déterrer ver 5.44 3.51 0.21 0.00 imp:pre:2p;ind:pre:2p; +déterrions déterrer ver 5.44 3.51 0.02 0.07 ind:imp:1p; +déterrons déterrer ver 5.44 3.51 0.02 0.00 imp:pre:1p;ind:pre:1p; +déterré déterrer ver m s 5.44 3.51 1.86 1.08 par:pas; +déterrée déterré nom f s 0.40 0.07 0.08 0.00 +déterrées déterrer ver f p 5.44 3.51 0.03 0.07 par:pas; +déterrés déterrer ver m p 5.44 3.51 0.10 0.07 par:pas; +détersifs détersif adj m p 0.00 0.14 0.00 0.07 +détersive détersif adj f s 0.00 0.14 0.00 0.07 +détesta détester ver 122.87 62.64 0.11 0.61 ind:pas:3s; +détestable détestable adj s 1.93 5.34 1.68 4.12 +détestablement détestablement adv 0.00 0.07 0.00 0.07 +détestables détestable adj p 1.93 5.34 0.25 1.22 +détestai détester ver 122.87 62.64 0.01 0.54 ind:pas:1s; +détestaient détester ver 122.87 62.64 0.73 2.16 ind:imp:3p; +détestais détester ver 122.87 62.64 5.48 3.65 ind:imp:1s;ind:imp:2s; +détestait détester ver 122.87 62.64 4.25 15.47 ind:imp:3s; +détestant détester ver 122.87 62.64 0.11 0.68 par:pre; +détestation détestation nom f s 0.00 0.61 0.00 0.47 +détestations détestation nom f p 0.00 0.61 0.00 0.14 +déteste détester ver 122.87 62.64 79.45 20.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +détestent détester ver 122.87 62.64 6.63 2.64 ind:pre:3p; +détester détester ver 122.87 62.64 6.35 5.47 inf;; +détestera détester ver 122.87 62.64 0.24 0.20 ind:fut:3s; +détesterai détester ver 122.87 62.64 0.26 0.00 ind:fut:1s; +détesteraient détester ver 122.87 62.64 0.38 0.07 cnd:pre:3p; +détesterais détester ver 122.87 62.64 1.32 0.88 cnd:pre:1s;cnd:pre:2s; +détesterait détester ver 122.87 62.64 0.30 0.14 cnd:pre:3s; +détesteras détester ver 122.87 62.64 0.23 0.00 ind:fut:2s; +détesteriez détester ver 122.87 62.64 0.01 0.00 cnd:pre:2p; +détesteront détester ver 122.87 62.64 0.07 0.00 ind:fut:3p; +détestes détester ver 122.87 62.64 8.13 1.82 ind:pre:2s;sub:pre:2s; +détestez détester ver 122.87 62.64 2.78 0.61 imp:pre:2p;ind:pre:2p; +détestiez détester ver 122.87 62.64 0.42 0.20 ind:imp:2p; +détestions détester ver 122.87 62.64 0.05 1.01 ind:imp:1p;sub:pre:1p; +détestons détester ver 122.87 62.64 0.64 0.61 imp:pre:1p;ind:pre:1p; +détestât détester ver 122.87 62.64 0.00 0.07 sub:imp:3s; +détesté détester ver m s 122.87 62.64 4.13 4.53 par:pas; +détestée détester ver f s 122.87 62.64 0.52 0.14 par:pas; +détestés détester ver m p 122.87 62.64 0.26 0.34 par:pas; +déçûmes décevoir ver 32.30 21.69 0.00 0.07 ind:pas:1p; +duègne duègne nom f s 0.03 0.81 0.03 0.81 +déçois décevoir ver 32.30 21.69 3.45 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +déçoit décevoir ver 32.30 21.69 1.18 0.34 ind:pre:3s; +déçoive décevoir ver 32.30 21.69 0.03 0.14 sub:pre:1s;sub:pre:3s; +déçoivent décevoir ver 32.30 21.69 0.34 0.20 ind:pre:3p; +déçoives décevoir ver 32.30 21.69 0.02 0.00 sub:pre:2s; +déçu décevoir ver m s 32.30 21.69 10.09 9.12 par:pas; +déçue décevoir ver f s 32.30 21.69 4.37 3.38 par:pas; +déçues décevoir ver f p 32.30 21.69 0.18 0.20 par:pas; +déçurent décevoir ver 32.30 21.69 0.00 0.14 ind:pas:3p; +déçus décevoir ver m p 32.30 21.69 1.18 1.15 ind:pas:1s;par:pas; +déçut décevoir ver 32.30 21.69 0.01 0.81 ind:pas:3s; +détiendra détenir ver 12.53 10.61 0.02 0.07 ind:fut:3s; +détiendrai détenir ver 12.53 10.61 0.02 0.00 ind:fut:1s; +détiendraient détenir ver 12.53 10.61 0.00 0.07 cnd:pre:3p; +détiendrait détenir ver 12.53 10.61 0.01 0.00 cnd:pre:3s; +détiendras détenir ver 12.53 10.61 0.03 0.00 ind:fut:2s; +détiendrez détenir ver 12.53 10.61 0.01 0.00 ind:fut:2p; +détiendront détenir ver 12.53 10.61 0.02 0.00 ind:fut:3p; +détienne détenir ver 12.53 10.61 0.02 0.07 sub:pre:1s;sub:pre:3s; +détiennent détenir ver 12.53 10.61 1.21 0.61 ind:pre:3p; +détiens détenir ver 12.53 10.61 1.76 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détient détenir ver 12.53 10.61 3.48 1.28 ind:pre:3s; +détimbrée détimbré adj f s 0.00 0.27 0.00 0.27 +détint détenir ver 12.53 10.61 0.00 0.07 ind:pas:3s; +détisse détisser ver 0.00 0.07 0.00 0.07 ind:pre:1s; +détonait détoner ver 0.37 0.20 0.01 0.20 ind:imp:3s; +détonant détonant adj m s 0.09 0.34 0.03 0.27 +détonante détonant adj f s 0.09 0.34 0.01 0.00 +détonants détonant adj m p 0.09 0.34 0.05 0.07 +détonateur détonateur nom m s 4.84 0.68 3.23 0.34 +détonateurs détonateur nom m p 4.84 0.68 1.60 0.34 +détonation détonation nom f s 1.44 9.26 1.17 4.66 +détonations détonation nom f p 1.44 9.26 0.27 4.59 +détoner détoner ver 0.37 0.20 0.30 0.00 inf; +détonera détoner ver 0.37 0.20 0.04 0.00 ind:fut:3s; +détonna détonner ver 0.32 1.55 0.00 0.07 ind:pas:3s; +détonnaient détonner ver 0.32 1.55 0.00 0.27 ind:imp:3p; +détonnait détonner ver 0.32 1.55 0.12 0.61 ind:imp:3s; +détonnant détonner ver 0.32 1.55 0.03 0.00 par:pre; +détonne détonner ver 0.32 1.55 0.05 0.34 ind:pre:1s;ind:pre:3s; +détonnent détonner ver 0.32 1.55 0.01 0.07 ind:pre:3p; +détonner détonner ver 0.32 1.55 0.10 0.20 inf; +détonée détoner ver f s 0.37 0.20 0.01 0.00 par:pas; +détord détordre ver 0.01 0.07 0.01 0.00 ind:pre:3s; +détordit détordre ver 0.01 0.07 0.00 0.07 ind:pas:3s; +détortillai détortiller ver 0.00 0.14 0.00 0.07 ind:pas:1s; +détortille détortiller ver 0.00 0.14 0.00 0.07 ind:pre:3s; +détour détour nom m s 6.82 24.86 5.43 16.76 +détourage détourage nom m s 0.14 0.00 0.14 0.00 +détourna détourner ver 14.34 54.86 0.12 11.22 ind:pas:3s; +détournai détourner ver 14.34 54.86 0.00 1.96 ind:pas:1s; +détournaient détourner ver 14.34 54.86 0.00 1.76 ind:imp:3p; +détournais détourner ver 14.34 54.86 0.51 0.54 ind:imp:1s;ind:imp:2s; +détournait détourner ver 14.34 54.86 0.09 4.05 ind:imp:3s; +détournant détourner ver 14.34 54.86 0.32 5.07 par:pre; +détourne détourner ver 14.34 54.86 1.71 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détournement détournement nom m s 2.60 2.09 2.35 1.89 +détournements détournement nom m p 2.60 2.09 0.26 0.20 +détournent détourner ver 14.34 54.86 0.58 0.88 ind:pre:3p; +détourner détourner ver 14.34 54.86 5.27 12.77 inf;; +détournera détourner ver 14.34 54.86 0.23 0.07 ind:fut:3s; +détournerai détourner ver 14.34 54.86 0.05 0.07 ind:fut:1s; +détourneraient détourner ver 14.34 54.86 0.00 0.07 cnd:pre:3p; +détournerais détourner ver 14.34 54.86 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +détournerait détourner ver 14.34 54.86 0.20 0.27 cnd:pre:3s; +détourneront détourner ver 14.34 54.86 0.01 0.14 ind:fut:3p; +détournes détourner ver 14.34 54.86 0.16 0.14 ind:pre:2s; +détourneur détourneur nom m s 0.00 0.07 0.00 0.07 +détournez détourner ver 14.34 54.86 0.90 0.20 imp:pre:2p;ind:pre:2p; +détourniez détourner ver 14.34 54.86 0.02 0.00 ind:imp:2p; +détournions détourner ver 14.34 54.86 0.01 0.07 ind:imp:1p; +détournons détourner ver 14.34 54.86 0.29 0.14 imp:pre:1p;ind:pre:1p; +détournât détourner ver 14.34 54.86 0.00 0.14 sub:imp:3s; +détournèrent détourner ver 14.34 54.86 0.12 0.61 ind:pas:3p; +détourné détourner ver m s 14.34 54.86 2.73 5.00 imp:pre:2s;par:pas; +détournée détourner ver f s 14.34 54.86 0.48 1.69 par:pas; +détournées détourné adj f p 0.65 2.77 0.06 0.47 +détournés détourner ver m p 14.34 54.86 0.46 1.42 par:pas; +détours détour nom m p 6.82 24.86 1.39 8.11 +détrônaient détrôner ver 0.46 1.28 0.00 0.07 ind:imp:3p; +détrône détrôner ver 0.46 1.28 0.03 0.07 ind:pre:3s; +détrônement détrônement nom m s 0.01 0.00 0.01 0.00 +détrôner détrôner ver 0.46 1.28 0.19 0.54 inf; +détrônât détrôner ver 0.46 1.28 0.00 0.07 sub:imp:3s; +détrôné détrôné adj m s 0.26 0.14 0.25 0.07 +détrônée détrôner ver f s 0.46 1.28 0.04 0.07 par:pas; +détracteur détracteur nom m s 0.29 1.15 0.03 0.20 +détracteurs détracteur nom m p 0.29 1.15 0.26 0.95 +détraquaient détraquer ver 2.24 2.30 0.02 0.07 ind:imp:3p; +détraquais détraquer ver 2.24 2.30 0.00 0.07 ind:imp:1s; +détraquant détraquer ver 2.24 2.30 0.00 0.14 par:pre; +détraque détraquer ver 2.24 2.30 0.47 0.61 imp:pre:2s;ind:pre:3s; +détraquement détraquement nom m s 0.01 0.14 0.01 0.14 +détraquent détraquer ver 2.24 2.30 0.12 0.00 ind:pre:3p; +détraquer détraquer ver 2.24 2.30 0.41 0.34 inf; +détraquera détraquer ver 2.24 2.30 0.01 0.00 ind:fut:3s; +détraquerais détraquer ver 2.24 2.30 0.01 0.00 cnd:pre:1s; +détraqué détraqué nom m s 1.57 0.88 1.06 0.41 +détraquée détraqué adj f s 0.84 1.62 0.29 0.81 +détraquées détraquer ver f p 2.24 2.30 0.01 0.07 par:pas; +détraqués détraqué nom m p 1.57 0.88 0.39 0.41 +détrempaient détremper ver 0.40 5.34 0.00 0.07 ind:imp:3p; +détrempait détremper ver 0.40 5.34 0.00 0.20 ind:imp:3s; +détrempant détremper ver 0.40 5.34 0.00 0.07 par:pre; +détrempe détrempe nom f s 0.10 0.14 0.10 0.14 +détremper détremper ver 0.40 5.34 0.00 0.07 inf; +détrempé détremper ver m s 0.40 5.34 0.02 1.82 par:pas; +détrempée détremper ver f s 0.40 5.34 0.21 1.42 par:pas; +détrempées détremper ver f p 0.40 5.34 0.01 0.81 par:pas; +détrempés détremper ver m p 0.40 5.34 0.16 0.68 par:pas; +détresse détresse nom f s 8.70 19.05 8.48 18.38 +détresses détresse nom f p 8.70 19.05 0.22 0.68 +détribalisée détribaliser ver f s 0.00 0.07 0.00 0.07 par:pas; +détricote détricoter ver 0.00 0.14 0.00 0.07 ind:pre:1s; +détricoter détricoter ver 0.00 0.14 0.00 0.07 inf; +détriment détriment nom m s 0.57 3.04 0.57 2.97 +détriments détriment nom m p 0.57 3.04 0.00 0.07 +détritiques détritique adj p 0.00 0.07 0.00 0.07 +détritus détritus nom m 1.16 4.80 1.16 4.80 +détroit détroit nom m s 3.04 1.55 3.02 1.35 +détroits détroit nom m p 3.04 1.55 0.02 0.20 +détrompa détromper ver 2.61 3.04 0.00 0.14 ind:pas:3s; +détrompai détromper ver 2.61 3.04 0.00 0.14 ind:pas:1s; +détrompais détromper ver 2.61 3.04 0.00 0.14 ind:imp:1s; +détrompait détromper ver 2.61 3.04 0.00 0.07 ind:imp:3s; +détrompe détromper ver 2.61 3.04 0.97 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détromper détromper ver 2.61 3.04 0.08 1.15 inf; +détromperai détromper ver 2.61 3.04 0.00 0.07 ind:fut:1s; +détrompez détromper ver 2.61 3.04 1.53 0.47 imp:pre:2p;ind:pre:2p; +détrompé détromper ver m s 2.61 3.04 0.01 0.20 par:pas; +détrompée détromper ver f s 2.61 3.04 0.01 0.14 par:pas; +détrompés détromper ver m p 2.61 3.04 0.01 0.07 par:pas; +détroncha détroncher ver 0.00 0.81 0.00 0.07 ind:pas:3s; +détronchant détroncher ver 0.00 0.81 0.00 0.14 par:pre; +détronche détroncher ver 0.00 0.81 0.00 0.20 ind:pre:3s; +détronchent détroncher ver 0.00 0.81 0.00 0.07 ind:pre:3p; +détroncher détroncher ver 0.00 0.81 0.00 0.07 inf; +détroncherais détroncher ver 0.00 0.81 0.00 0.07 cnd:pre:1s; +détronchèrent détroncher ver 0.00 0.81 0.00 0.07 ind:pas:3p; +détronché détroncher ver m s 0.00 0.81 0.00 0.14 par:pas; +détroussaient détrousser ver 0.29 0.47 0.01 0.00 ind:imp:3p; +détroussais détrousser ver 0.29 0.47 0.00 0.07 ind:imp:1s; +détroussant détrousser ver 0.29 0.47 0.00 0.07 par:pre; +détroussent détrousser ver 0.29 0.47 0.00 0.14 ind:pre:3p; +détrousser détrousser ver 0.29 0.47 0.11 0.00 inf; +détrousses détrousser ver 0.29 0.47 0.01 0.00 ind:pre:2s; +détrousseur détrousseur nom m s 0.17 0.14 0.17 0.07 +détrousseurs détrousseur nom m p 0.17 0.14 0.00 0.07 +détroussez détrousser ver 0.29 0.47 0.02 0.00 ind:pre:2p; +détroussé détrousser ver m s 0.29 0.47 0.12 0.07 par:pas; +détroussés détrousser ver m p 0.29 0.47 0.02 0.14 par:pas; +détruira détruire ver 126.08 52.36 2.67 0.27 ind:fut:3s; +détruirai détruire ver 126.08 52.36 1.84 0.14 ind:fut:1s; +détruiraient détruire ver 126.08 52.36 0.38 0.07 cnd:pre:3p; +détruirais détruire ver 126.08 52.36 0.30 0.14 cnd:pre:1s;cnd:pre:2s; +détruirait détruire ver 126.08 52.36 1.13 0.20 cnd:pre:3s; +détruiras détruire ver 126.08 52.36 0.58 0.00 ind:fut:2s; +détruire détruire ver 126.08 52.36 50.12 20.34 inf;; +détruirez détruire ver 126.08 52.36 0.28 0.07 ind:fut:2p; +détruiriez détruire ver 126.08 52.36 0.13 0.00 cnd:pre:2p; +détruirions détruire ver 126.08 52.36 0.04 0.07 cnd:pre:1p; +détruirons détruire ver 126.08 52.36 0.64 0.00 ind:fut:1p; +détruiront détruire ver 126.08 52.36 0.82 0.14 ind:fut:3p; +détruis détruire ver 126.08 52.36 4.62 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détruisaient détruire ver 126.08 52.36 0.29 0.74 ind:imp:3p; +détruisais détruire ver 126.08 52.36 0.16 0.14 ind:imp:1s;ind:imp:2s; +détruisait détruire ver 126.08 52.36 0.41 1.89 ind:imp:3s; +détruisant détruire ver 126.08 52.36 1.54 1.22 par:pre; +détruise détruire ver 126.08 52.36 1.05 0.54 sub:pre:1s;sub:pre:3s; +détruisent détruire ver 126.08 52.36 3.52 1.28 ind:pre:3p; +détruises détruire ver 126.08 52.36 0.26 0.00 sub:pre:2s; +détruisez détruire ver 126.08 52.36 4.46 0.00 imp:pre:2p;ind:pre:2p; +détruisiez détruire ver 126.08 52.36 0.12 0.00 ind:imp:2p; +détruisions détruire ver 126.08 52.36 0.14 0.00 ind:imp:1p; +détruisirent détruire ver 126.08 52.36 0.06 0.14 ind:pas:3p; +détruisis détruire ver 126.08 52.36 0.00 0.07 ind:pas:1s; +détruisit détruire ver 126.08 52.36 0.27 0.95 ind:pas:3s; +détruisons détruire ver 126.08 52.36 1.26 0.00 imp:pre:1p;ind:pre:1p; +détruit détruire ver m s 126.08 52.36 35.42 14.26 ind:pre:3s;par:pas; +détruite détruire ver f s 126.08 52.36 7.49 4.32 par:pas; +détruites détruire ver f p 126.08 52.36 1.92 1.96 par:pas; +détruits détruire ver m p 126.08 52.36 4.16 2.91 par:pas; +détérioraient détériorer ver 1.68 3.18 0.01 0.07 ind:imp:3p; +détériorait détériorer ver 1.68 3.18 0.16 0.34 ind:imp:3s; +détériorant détériorer ver 1.68 3.18 0.01 0.14 par:pre; +détérioration détérioration nom f s 0.68 0.54 0.64 0.54 +détériorations détérioration nom f p 0.68 0.54 0.04 0.00 +détériore détériorer ver 1.68 3.18 0.48 0.61 ind:pre:3s; +détériorent détériorer ver 1.68 3.18 0.05 0.00 ind:pre:3p; +détériorer détériorer ver 1.68 3.18 0.36 0.68 inf; +détériorât détériorer ver 1.68 3.18 0.00 0.07 sub:imp:3s; +détérioré détériorer ver m s 1.68 3.18 0.19 0.34 par:pas; +détériorée détériorer ver f s 1.68 3.18 0.22 0.47 par:pas; +détériorées détériorer ver f p 1.68 3.18 0.15 0.20 par:pas; +détériorés détériorer ver m p 1.68 3.18 0.05 0.27 par:pas; +dévala dévaler ver 1.51 16.76 0.00 1.76 ind:pas:3s; +dévalai dévaler ver 1.51 16.76 0.00 0.34 ind:pas:1s; +dévalaient dévaler ver 1.51 16.76 0.00 0.88 ind:imp:3p; +dévalais dévaler ver 1.51 16.76 0.12 0.34 ind:imp:1s;ind:imp:2s; +dévalait dévaler ver 1.51 16.76 0.12 3.04 ind:imp:3s; +dévalant dévaler ver 1.51 16.76 0.22 1.96 par:pre; +dévale dévaler ver 1.51 16.76 0.52 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévalement dévalement nom m s 0.00 0.34 0.00 0.34 +dévalent dévaler ver 1.51 16.76 0.08 1.28 ind:pre:3p; +dévaler dévaler ver 1.51 16.76 0.29 1.69 inf; +dévales dévaler ver 1.51 16.76 0.00 0.07 ind:pre:2s; +dévalions dévaler ver 1.51 16.76 0.01 0.20 ind:imp:1p; +dévalisai dévaliser ver 6.22 2.03 0.01 0.07 ind:pas:1s; +dévalisaient dévaliser ver 6.22 2.03 0.01 0.00 ind:imp:3p; +dévalisait dévaliser ver 6.22 2.03 0.16 0.00 ind:imp:3s; +dévalisant dévaliser ver 6.22 2.03 0.05 0.00 par:pre; +dévalise dévaliser ver 6.22 2.03 0.50 0.07 ind:pre:1s;ind:pre:3s; +dévalisent dévaliser ver 6.22 2.03 0.04 0.07 ind:pre:3p; +dévaliser dévaliser ver 6.22 2.03 1.93 0.68 inf; +dévalisera dévaliser ver 6.22 2.03 0.11 0.00 ind:fut:3s; +dévaliserait dévaliser ver 6.22 2.03 0.02 0.07 cnd:pre:3s; +dévalises dévaliser ver 6.22 2.03 0.06 0.00 ind:pre:2s; +dévalisez dévaliser ver 6.22 2.03 0.15 0.07 imp:pre:2p;ind:pre:2p; +dévalisé dévaliser ver m s 6.22 2.03 2.64 0.68 par:pas; +dévalisée dévaliser ver f s 6.22 2.03 0.39 0.14 par:pas; +dévalisés dévaliser ver m p 6.22 2.03 0.14 0.20 par:pas; +dévalons dévaler ver 1.51 16.76 0.01 0.14 imp:pre:1p;ind:pre:1p; +dévalorisaient dévaloriser ver 0.27 0.54 0.00 0.07 ind:imp:3p; +dévalorisait dévaloriser ver 0.27 0.54 0.00 0.07 ind:imp:3s; +dévalorisant dévalorisant adj m s 0.10 0.00 0.10 0.00 +dévalorisation dévalorisation nom f s 0.01 0.27 0.01 0.27 +dévalorise dévaloriser ver 0.27 0.54 0.10 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévalorisent dévaloriser ver 0.27 0.54 0.02 0.07 ind:pre:3p; +dévaloriser dévaloriser ver 0.27 0.54 0.09 0.07 inf; +dévalorisez dévaloriser ver 0.27 0.54 0.01 0.00 imp:pre:2p; +dévalorisé dévaloriser ver m s 0.27 0.54 0.03 0.07 par:pas; +dévalorisée dévaloriser ver f s 0.27 0.54 0.02 0.14 par:pas; +dévalèrent dévaler ver 1.51 16.76 0.00 0.34 ind:pas:3p; +dévalé dévaler ver m s 1.51 16.76 0.14 1.22 par:pas; +dévaluait dévaluer ver 0.37 0.54 0.00 0.07 ind:imp:3s; +dévaluation dévaluation nom f s 0.14 0.54 0.14 0.47 +dévaluations dévaluation nom f p 0.14 0.54 0.00 0.07 +dévalée dévaler ver f s 1.51 16.76 0.00 0.07 par:pas; +dévalue dévaluer ver 0.37 0.54 0.15 0.07 ind:pre:1s;ind:pre:3s; +dévaluer dévaluer ver 0.37 0.54 0.00 0.20 inf; +dévaluera dévaluer ver 0.37 0.54 0.01 0.00 ind:fut:3s; +dévalué dévaluer ver m s 0.37 0.54 0.07 0.00 par:pas; +dévaluée dévaluer ver f s 0.37 0.54 0.14 0.14 par:pas; +dévalués dévaluer ver m p 0.37 0.54 0.00 0.07 par:pas; +dévasta dévaster ver 2.50 4.12 0.05 0.07 ind:pas:3s; +dévastaient dévaster ver 2.50 4.12 0.00 0.47 ind:imp:3p; +dévastait dévaster ver 2.50 4.12 0.01 0.14 ind:imp:3s; +dévastant dévaster ver 2.50 4.12 0.04 0.00 par:pre; +dévastateur dévastateur adj m s 1.43 1.89 0.38 0.61 +dévastateurs dévastateur adj m p 1.43 1.89 0.27 0.27 +dévastation dévastation nom f s 0.44 1.28 0.41 0.81 +dévastations dévastation nom f p 0.44 1.28 0.02 0.47 +dévastatrice dévastateur adj f s 1.43 1.89 0.70 0.74 +dévastatrices dévastateur adj f p 1.43 1.89 0.08 0.27 +dévaste dévaster ver 2.50 4.12 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévastent dévaster ver 2.50 4.12 0.16 0.20 ind:pre:3p; +dévaster dévaster ver 2.50 4.12 0.21 0.54 inf; +dévastera dévaster ver 2.50 4.12 0.01 0.00 ind:fut:3s; +dévasterait dévaster ver 2.50 4.12 0.05 0.00 cnd:pre:3s; +dévasteront dévaster ver 2.50 4.12 0.01 0.07 ind:fut:3p; +dévastèrent dévaster ver 2.50 4.12 0.00 0.14 ind:pas:3p; +dévasté dévaster ver m s 2.50 4.12 1.07 1.42 par:pas; +dévastée dévaster ver f s 2.50 4.12 0.42 0.61 par:pas; +dévastées dévasté adj f p 0.82 2.84 0.01 0.61 +dévastés dévasté adj m p 0.82 2.84 0.16 0.41 +déveinards déveinard nom m p 0.00 0.07 0.00 0.07 +déveine déveine nom f s 0.33 1.08 0.33 1.01 +déveines déveine nom f p 0.33 1.08 0.00 0.07 +développa développer ver 20.14 21.42 0.29 0.81 ind:pas:3s; +développai développer ver 20.14 21.42 0.00 0.14 ind:pas:1s; +développaient développer ver 20.14 21.42 0.07 0.54 ind:imp:3p; +développais développer ver 20.14 21.42 0.06 0.27 ind:imp:1s;ind:imp:2s; +développait développer ver 20.14 21.42 0.25 2.23 ind:imp:3s; +développant développer ver 20.14 21.42 0.20 0.88 par:pre; +développe développer ver 20.14 21.42 4.09 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +développement développement nom m s 7.09 11.15 6.63 10.20 +développements développement nom m p 7.09 11.15 0.47 0.95 +développent développer ver 20.14 21.42 0.59 0.88 ind:pre:3p; +développer développer ver 20.14 21.42 7.84 6.96 inf; +développera développer ver 20.14 21.42 0.18 0.14 ind:fut:3s; +développerai développer ver 20.14 21.42 0.02 0.00 ind:fut:1s; +développeraient développer ver 20.14 21.42 0.14 0.00 cnd:pre:3p; +développerais développer ver 20.14 21.42 0.02 0.00 cnd:pre:1s; +développerait développer ver 20.14 21.42 0.03 0.07 cnd:pre:3s; +développerez développer ver 20.14 21.42 0.01 0.14 ind:fut:2p; +développeront développer ver 20.14 21.42 0.01 0.00 ind:fut:3p; +développeur développeur nom m s 0.17 0.07 0.17 0.07 +développez développer ver 20.14 21.42 0.58 0.14 imp:pre:2p;ind:pre:2p; +développons développer ver 20.14 21.42 0.33 0.00 imp:pre:1p;ind:pre:1p; +développât développer ver 20.14 21.42 0.00 0.07 sub:imp:3s; +développèrent développer ver 20.14 21.42 0.03 0.07 ind:pas:3p; +développé développer ver m s 20.14 21.42 3.88 2.30 par:pas; +développée développer ver f s 20.14 21.42 0.83 1.08 par:pas; +développées développer ver f p 20.14 21.42 0.27 0.41 par:pas; +développés développé adj m p 3.61 1.55 0.64 0.14 +déventer déventer ver 0.01 0.00 0.01 0.00 inf; +dévergondage dévergondage nom m s 0.03 0.27 0.03 0.20 +dévergondages dévergondage nom m p 0.03 0.27 0.00 0.07 +dévergonde dévergonder ver 0.56 0.27 0.26 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévergondent dévergonder ver 0.56 0.27 0.01 0.07 ind:pre:3p; +dévergonder dévergonder ver 0.56 0.27 0.02 0.14 inf; +dévergondé dévergondé nom m s 1.39 0.41 0.23 0.14 +dévergondée dévergondé nom f s 1.39 0.41 1.06 0.27 +dévergondées dévergondé nom f p 1.39 0.41 0.10 0.00 +dévergondés dévergondé adj m p 0.56 0.54 0.14 0.07 +dévernie dévernir ver f s 0.00 0.27 0.00 0.07 par:pas; +dévernies dévernir ver f p 0.00 0.27 0.00 0.07 par:pas; +dévernir dévernir ver 0.00 0.27 0.00 0.14 inf; +déverrouilla déverrouiller ver 0.91 1.01 0.00 0.14 ind:pas:3s; +déverrouillage déverrouillage nom m s 0.28 0.00 0.28 0.00 +déverrouillait déverrouiller ver 0.91 1.01 0.00 0.20 ind:imp:3s; +déverrouille déverrouiller ver 0.91 1.01 0.18 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déverrouillent déverrouiller ver 0.91 1.01 0.01 0.07 ind:pre:3p; +déverrouiller déverrouiller ver 0.91 1.01 0.33 0.20 inf; +déverrouillez déverrouiller ver 0.91 1.01 0.23 0.00 imp:pre:2p; +déverrouillé déverrouiller ver m s 0.91 1.01 0.08 0.14 par:pas; +déverrouillée déverrouiller ver f s 0.91 1.01 0.07 0.14 par:pas; +déverrouillées déverrouiller ver f p 0.91 1.01 0.00 0.07 par:pas; +déversa déverser ver 1.97 12.09 0.01 0.61 ind:pas:3s; +déversaient déverser ver 1.97 12.09 0.04 1.15 ind:imp:3p; +déversais déverser ver 1.97 12.09 0.00 0.07 ind:imp:1s; +déversait déverser ver 1.97 12.09 0.06 2.84 ind:imp:3s; +déversant déverser ver 1.97 12.09 0.03 1.08 par:pre; +déverse déverser ver 1.97 12.09 0.58 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déversement déversement nom m s 0.17 0.14 0.14 0.07 +déversements déversement nom m p 0.17 0.14 0.03 0.07 +déversent déverser ver 1.97 12.09 0.13 0.95 ind:pre:3p; +déverser déverser ver 1.97 12.09 0.61 2.23 inf; +déversera déverser ver 1.97 12.09 0.11 0.00 ind:fut:3s; +déverserai déverser ver 1.97 12.09 0.00 0.07 ind:fut:1s; +déverseraient déverser ver 1.97 12.09 0.00 0.14 cnd:pre:3p; +déverserait déverser ver 1.97 12.09 0.00 0.07 cnd:pre:3s; +déversez déverser ver 1.97 12.09 0.06 0.07 imp:pre:2p;ind:pre:2p; +déversoir déversoir nom m s 0.18 0.95 0.18 0.95 +déversèrent déverser ver 1.97 12.09 0.00 0.20 ind:pas:3p; +déversé déverser ver m s 1.97 12.09 0.19 0.47 par:pas; +déversée déverser ver f s 1.97 12.09 0.09 0.34 par:pas; +déversées déverser ver f p 1.97 12.09 0.01 0.07 par:pas; +déversés déverser ver m p 1.97 12.09 0.06 0.41 par:pas; +duvet duvet nom m s 1.70 8.85 1.58 7.57 +duveteuse duveteux adj f s 0.12 1.76 0.05 0.61 +duveteuses duveteux adj f p 0.12 1.76 0.02 0.41 +duveteux duveteux adj m s 0.12 1.76 0.05 0.74 +duvets duvet nom m p 1.70 8.85 0.12 1.28 +duveté duveté adj m s 0.00 0.47 0.00 0.14 +duvetée duveté adj f s 0.00 0.47 0.00 0.20 +duvetées duveter ver f p 0.00 0.34 0.00 0.14 par:pas; +duvetés duveté adj m p 0.00 0.47 0.00 0.07 +dévia dévier ver 3.04 5.14 0.00 0.41 ind:pas:3s; +déviai dévier ver 3.04 5.14 0.00 0.07 ind:pas:1s; +déviaient dévier ver 3.04 5.14 0.00 0.07 ind:imp:3p; +déviait dévier ver 3.04 5.14 0.03 0.54 ind:imp:3s; +déviance déviance nom f s 0.18 0.00 0.01 0.00 +déviances déviance nom f p 0.18 0.00 0.17 0.00 +déviant déviant adj m s 0.45 0.00 0.33 0.00 +déviante déviant adj f s 0.45 0.00 0.02 0.00 +déviants déviant nom m p 0.21 0.07 0.10 0.07 +déviateur déviateur adj m s 0.02 0.00 0.02 0.00 +déviation déviation nom f s 1.29 1.15 1.00 0.95 +déviationnisme déviationnisme nom m s 0.00 0.14 0.00 0.14 +déviationniste déviationniste adj s 0.00 0.07 0.00 0.07 +déviations déviation nom f p 1.29 1.15 0.29 0.20 +dévida dévider ver 0.02 3.58 0.00 0.20 ind:pas:3s; +dévidais dévider ver 0.02 3.58 0.00 0.07 ind:imp:1s; +dévidait dévider ver 0.02 3.58 0.01 0.88 ind:imp:3s; +dévidant dévider ver 0.02 3.58 0.00 0.14 par:pre; +dévide dévider ver 0.02 3.58 0.01 0.54 ind:pre:1s;ind:pre:3s; +dévident dévider ver 0.02 3.58 0.00 0.07 ind:pre:3p; +dévider dévider ver 0.02 3.58 0.00 1.15 inf; +déviderait dévider ver 0.02 3.58 0.00 0.14 cnd:pre:3s; +dévideur dévideur nom m s 0.00 0.07 0.00 0.07 +dévidions dévider ver 0.02 3.58 0.00 0.07 ind:imp:1p; +dévidoir dévidoir nom m s 0.03 0.27 0.03 0.20 +dévidoirs dévidoir nom m p 0.03 0.27 0.00 0.07 +dévidé dévider ver m s 0.02 3.58 0.00 0.27 par:pas; +dévidée dévider ver f s 0.02 3.58 0.00 0.07 par:pas; +dévie dévier ver 3.04 5.14 0.52 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévient dévier ver 3.04 5.14 0.04 0.14 ind:pre:3p; +dévier dévier ver 3.04 5.14 0.90 1.96 inf; +déviera dévier ver 3.04 5.14 0.02 0.00 ind:fut:3s; +dévierait dévier ver 3.04 5.14 0.01 0.14 cnd:pre:3s; +déviez dévier ver 3.04 5.14 0.13 0.00 imp:pre:2p;ind:pre:2p; +dévions dévier ver 3.04 5.14 0.01 0.07 ind:pre:1p; +dévirginiser dévirginiser ver 0.01 0.07 0.00 0.07 inf; +dévirginisée dévirginiser ver f s 0.01 0.07 0.01 0.00 par:pas; +dévirilisant déviriliser ver 0.00 0.14 0.00 0.07 par:pre; +dévirilisation dévirilisation nom f s 0.00 0.20 0.00 0.20 +dévirilisé déviriliser ver m s 0.00 0.14 0.00 0.07 par:pas; +dévisage dévisager ver 2.13 24.66 0.54 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévisagea dévisager ver 2.13 24.66 0.00 6.01 ind:pas:3s; +dévisageai dévisager ver 2.13 24.66 0.01 1.01 ind:pas:1s; +dévisageaient dévisager ver 2.13 24.66 0.03 1.01 ind:imp:3p; +dévisageais dévisager ver 2.13 24.66 0.01 0.14 ind:imp:1s; +dévisageait dévisager ver 2.13 24.66 0.07 3.72 ind:imp:3s; +dévisageant dévisager ver 2.13 24.66 0.00 2.70 par:pre; +dévisagent dévisager ver 2.13 24.66 0.25 1.22 ind:pre:3p; +dévisageâmes dévisager ver 2.13 24.66 0.00 0.07 ind:pas:1p; +dévisageons dévisager ver 2.13 24.66 0.00 0.14 ind:pre:1p; +dévisager dévisager ver 2.13 24.66 0.67 2.91 inf; +dévisageraient dévisager ver 2.13 24.66 0.02 0.00 cnd:pre:3p; +dévisagez dévisager ver 2.13 24.66 0.04 0.07 imp:pre:2p;ind:pre:2p; +dévisagions dévisager ver 2.13 24.66 0.00 0.07 ind:imp:1p; +dévisagèrent dévisager ver 2.13 24.66 0.00 0.74 ind:pas:3p; +dévisagé dévisager ver m s 2.13 24.66 0.18 1.01 par:pas; +dévisagée dévisager ver f s 2.13 24.66 0.28 0.20 par:pas; +dévisagés dévisager ver m p 2.13 24.66 0.02 0.20 par:pas; +dévissa dévisser ver 1.34 4.59 0.00 0.74 ind:pas:3s; +dévissable dévissable adj m s 0.01 0.00 0.01 0.00 +dévissage dévissage nom m s 0.00 0.07 0.00 0.07 +dévissaient dévisser ver 1.34 4.59 0.00 0.20 ind:imp:3p; +dévissait dévisser ver 1.34 4.59 0.00 0.47 ind:imp:3s; +dévissant dévisser ver 1.34 4.59 0.00 0.07 par:pre; +dévisse dévisser ver 1.34 4.59 0.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévisser dévisser ver 1.34 4.59 0.48 1.08 inf; +dévissera dévisser ver 1.34 4.59 0.01 0.07 ind:fut:3s; +dévissez dévisser ver 1.34 4.59 0.04 0.07 imp:pre:2p;ind:pre:2p; +dévissé dévisser ver m s 1.34 4.59 0.22 0.34 par:pas; +dévissée dévisser ver f s 1.34 4.59 0.18 0.14 par:pas; +dévissées dévisser ver f p 1.34 4.59 0.00 0.14 par:pas; +dévissés dévisser ver m p 1.34 4.59 0.00 0.20 par:pas; +dévitalisation dévitalisation nom f s 0.01 0.07 0.01 0.07 +dévitaliser dévitaliser ver 0.11 0.00 0.05 0.00 inf; +dévitalisé dévitaliser ver m s 0.11 0.00 0.05 0.00 par:pas; +dévié dévier ver m s 3.04 5.14 0.96 0.88 par:pas; +déviée dévier ver f s 3.04 5.14 0.20 0.27 par:pas; +déviés dévier ver m p 3.04 5.14 0.17 0.14 par:pas; +dévoie dévoyer ver 0.38 0.88 0.10 0.07 ind:pre:3s; +dévoiement dévoiement nom m s 0.00 0.14 0.00 0.14 +dévoila dévoiler ver 8.78 12.97 0.04 0.61 ind:pas:3s; +dévoilai dévoiler ver 8.78 12.97 0.00 0.07 ind:pas:1s; +dévoilaient dévoiler ver 8.78 12.97 0.00 0.41 ind:imp:3p; +dévoilais dévoiler ver 8.78 12.97 0.12 0.07 ind:imp:1s;ind:imp:2s; +dévoilait dévoiler ver 8.78 12.97 0.06 1.22 ind:imp:3s; +dévoilant dévoiler ver 8.78 12.97 0.25 1.42 par:pre; +dévoile dévoiler ver 8.78 12.97 0.99 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévoilement dévoilement nom m s 0.06 0.47 0.06 0.41 +dévoilements dévoilement nom m p 0.06 0.47 0.00 0.07 +dévoilent dévoiler ver 8.78 12.97 0.14 0.41 ind:pre:3p; +dévoiler dévoiler ver 8.78 12.97 3.80 3.78 inf; +dévoilera dévoiler ver 8.78 12.97 0.18 0.07 ind:fut:3s; +dévoilerai dévoiler ver 8.78 12.97 0.30 0.07 ind:fut:1s; +dévoilerais dévoiler ver 8.78 12.97 0.01 0.00 cnd:pre:1s; +dévoilerait dévoiler ver 8.78 12.97 0.11 0.07 cnd:pre:3s; +dévoilerez dévoiler ver 8.78 12.97 0.02 0.00 ind:fut:2p; +dévoileront dévoiler ver 8.78 12.97 0.04 0.00 ind:fut:3p; +dévoiles dévoiler ver 8.78 12.97 0.07 0.00 ind:pre:2s; +dévoilez dévoiler ver 8.78 12.97 0.29 0.00 imp:pre:2p; +dévoilons dévoiler ver 8.78 12.97 0.30 0.00 imp:pre:1p;ind:pre:1p; +dévoilé dévoiler ver m s 8.78 12.97 1.55 1.82 par:pas; +dévoilée dévoiler ver f s 8.78 12.97 0.16 0.74 par:pas; +dévoilées dévoiler ver f p 8.78 12.97 0.18 0.20 par:pas; +dévoilés dévoiler ver m p 8.78 12.97 0.16 0.20 par:pas; +dévolu dévolu nom m s 0.17 0.74 0.16 0.74 +dévolue dévolu adj f s 0.07 1.89 0.03 0.54 +dévolues dévolu adj f p 0.07 1.89 0.00 0.20 +dévolus dévolu adj m p 0.07 1.89 0.01 0.61 +dévolution dévolution nom f s 0.00 0.07 0.00 0.07 +dévonien dévonien nom m s 0.01 0.00 0.01 0.00 +dévonienne dévonien adj f s 0.04 0.00 0.04 0.00 +dévora dévorer ver 19.70 37.64 0.19 0.88 ind:pas:3s; +dévorai dévorer ver 19.70 37.64 0.14 0.41 ind:pas:1s; +dévoraient dévorer ver 19.70 37.64 0.29 1.96 ind:imp:3p; +dévorais dévorer ver 19.70 37.64 0.13 1.01 ind:imp:1s;ind:imp:2s; +dévorait dévorer ver 19.70 37.64 0.38 4.32 ind:imp:3s; +dévorant dévorer ver 19.70 37.64 0.67 2.70 par:pre; +dévorante dévorant adj f s 0.94 3.24 0.45 1.89 +dévorantes dévorant adj f p 0.94 3.24 0.01 0.20 +dévorants dévorant adj m p 0.94 3.24 0.10 0.34 +dévorateur dévorateur adj m s 0.00 0.34 0.00 0.14 +dévorateurs dévorateur adj m p 0.00 0.34 0.00 0.14 +dévoration dévoration nom f s 0.00 0.07 0.00 0.07 +dévoratrice dévorateur adj f s 0.00 0.34 0.00 0.07 +dévore dévorer ver 19.70 37.64 4.48 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévorent dévorer ver 19.70 37.64 1.81 1.62 ind:pre:3p; +dévorer dévorer ver 19.70 37.64 4.08 7.70 ind:imp:3s;inf; +dévorera dévorer ver 19.70 37.64 0.71 0.14 ind:fut:3s; +dévorerai dévorer ver 19.70 37.64 0.16 0.14 ind:fut:1s; +dévoreraient dévorer ver 19.70 37.64 0.02 0.07 cnd:pre:3p; +dévorerais dévorer ver 19.70 37.64 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +dévorerait dévorer ver 19.70 37.64 0.19 0.34 cnd:pre:3s; +dévorerez dévorer ver 19.70 37.64 0.02 0.00 ind:fut:2p; +dévoreront dévorer ver 19.70 37.64 0.12 0.14 ind:fut:3p; +dévores dévorer ver 19.70 37.64 0.14 0.07 ind:pre:2s;sub:pre:2s; +dévoreur dévoreur nom m s 0.48 1.08 0.16 0.41 +dévoreurs dévoreur nom m p 0.48 1.08 0.01 0.27 +dévoreuse dévoreur nom f s 0.48 1.08 0.31 0.34 +dévoreuses dévoreuse nom f p 0.01 0.00 0.01 0.00 +dévorez dévorer ver 19.70 37.64 0.17 0.00 imp:pre:2p;ind:pre:2p; +dévorions dévorer ver 19.70 37.64 0.00 0.20 ind:imp:1p; +dévorons dévorer ver 19.70 37.64 0.02 0.14 imp:pre:1p;ind:pre:1p; +dévorèrent dévorer ver 19.70 37.64 0.00 0.47 ind:pas:3p; +dévoré dévorer ver m s 19.70 37.64 4.25 5.20 par:pas; +dévorée dévorer ver f s 19.70 37.64 0.76 2.43 par:pas; +dévorées dévorer ver f p 19.70 37.64 0.05 0.61 par:pas; +dévorés dévorer ver m p 19.70 37.64 0.92 2.16 par:pas; +dévot dévot nom m s 0.89 2.03 0.48 0.41 +dévote dévot adj f s 0.56 1.96 0.06 0.88 +dévotement dévotement adv 0.00 0.47 0.00 0.47 +dévotes dévot adj f p 0.56 1.96 0.10 0.27 +dévotieusement dévotieusement adv 0.00 0.14 0.00 0.14 +dévotion dévotion nom f s 2.34 8.11 2.26 7.03 +dévotionnelle dévotionnel adj f s 0.01 0.00 0.01 0.00 +dévotions dévotion nom f p 2.34 8.11 0.08 1.08 +dévots dévot nom m p 0.89 2.03 0.36 1.08 +dévoua dévouer ver 4.71 5.81 0.00 0.47 ind:pas:3s; +dévouaient dévouer ver 4.71 5.81 0.00 0.07 ind:imp:3p; +dévouait dévouer ver 4.71 5.81 0.00 0.27 ind:imp:3s; +dévouant dévouer ver 4.71 5.81 0.01 0.00 par:pre; +dévoue dévouer ver 4.71 5.81 0.52 0.47 ind:pre:1s;ind:pre:3s; +dévouement dévouement nom m s 4.03 9.32 4.03 8.51 +dévouements dévouement nom m p 4.03 9.32 0.00 0.81 +dévouent dévouer ver 4.71 5.81 0.05 0.27 ind:pre:3p; +dévouer dévouer ver 4.71 5.81 0.38 1.55 inf; +dévouera dévouer ver 4.71 5.81 0.02 0.07 ind:fut:3s; +dévouerais dévouer ver 4.71 5.81 0.01 0.00 cnd:pre:2s; +dévoues dévouer ver 4.71 5.81 0.04 0.07 ind:pre:2s; +dévouez dévouer ver 4.71 5.81 0.14 0.00 imp:pre:2p; +dévouât dévouer ver 4.71 5.81 0.00 0.07 sub:imp:3s; +dévoué dévoué adj m s 4.79 6.08 2.60 1.69 +dévouée dévoué adj f s 4.79 6.08 1.28 1.08 +dévouées dévoué adj f p 4.79 6.08 0.06 0.61 +dévoués dévoué adj m p 4.79 6.08 0.85 2.70 +dévoyait dévoyer ver 0.38 0.88 0.00 0.14 ind:imp:3s; +dévoyer dévoyer ver 0.38 0.88 0.12 0.41 inf; +dévoyez dévoyer ver 0.38 0.88 0.01 0.00 ind:pre:2p; +dévoyé dévoyé adj m s 0.22 0.68 0.18 0.54 +dévoyée dévoyer ver f s 0.38 0.88 0.10 0.00 par:pas; +dévoyées dévoyé adj f p 0.22 0.68 0.00 0.07 +dévoyés dévoyé adj m p 0.22 0.68 0.03 0.00 +dévêt dévêtir ver 1.28 5.95 0.00 0.20 ind:pre:3s; +dévêtaient dévêtir ver 1.28 5.95 0.00 0.14 ind:imp:3p; +dévêtait dévêtir ver 1.28 5.95 0.01 0.34 ind:imp:3s; +dévêtant dévêtir ver 1.28 5.95 0.02 0.27 par:pre; +dévêtez dévêtir ver 1.28 5.95 0.00 0.14 imp:pre:2p; +dévêtir dévêtir ver 1.28 5.95 0.47 1.89 inf; +dévêtit dévêtir ver 1.28 5.95 0.01 0.68 ind:pas:3s; +dévêtu dévêtir ver m s 1.28 5.95 0.32 0.74 par:pas; +dévêtue dévêtir ver f s 1.28 5.95 0.34 0.74 par:pas; +dévêtues dévêtir ver f p 1.28 5.95 0.07 0.34 par:pas; +dévêtus dévêtir ver m p 1.28 5.95 0.04 0.47 par:pas; +dézingue dézinguer ver 0.35 0.00 0.17 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dézinguer dézinguer ver 0.35 0.00 0.16 0.00 inf; +dézingués dézinguer ver m p 0.35 0.00 0.02 0.00 par:pas; +dyke dyke nom m s 0.16 0.07 0.16 0.00 +dykes dyke nom m p 0.16 0.07 0.00 0.07 +dynamique dynamique adj s 2.68 2.09 1.97 1.69 +dynamiques dynamique adj p 2.68 2.09 0.71 0.41 +dynamiser dynamiser ver 0.07 0.20 0.02 0.00 inf; +dynamisera dynamiser ver 0.07 0.20 0.01 0.00 ind:fut:3s; +dynamiserait dynamiser ver 0.07 0.20 0.01 0.00 cnd:pre:3s; +dynamisez dynamiser ver 0.07 0.20 0.01 0.00 imp:pre:2p; +dynamisme dynamisme nom m s 0.54 1.82 0.54 1.82 +dynamisé dynamiser ver m s 0.07 0.20 0.01 0.00 par:pas; +dynamisée dynamiser ver f s 0.07 0.20 0.00 0.07 par:pas; +dynamisées dynamiser ver f p 0.07 0.20 0.00 0.14 par:pas; +dynamitage dynamitage nom m s 0.07 0.00 0.07 0.00 +dynamitait dynamiter ver 0.90 0.47 0.00 0.07 ind:imp:3s; +dynamitant dynamiter ver 0.90 0.47 0.01 0.07 par:pre; +dynamite dynamite nom f s 8.12 2.50 8.12 2.50 +dynamiter dynamiter ver 0.90 0.47 0.43 0.07 inf; +dynamiteur dynamiteur nom m s 0.05 0.34 0.04 0.14 +dynamiteurs dynamiteur nom m p 0.05 0.34 0.01 0.20 +dynamitez dynamiter ver 0.90 0.47 0.03 0.00 imp:pre:2p; +dynamitons dynamiter ver 0.90 0.47 0.02 0.00 imp:pre:1p; +dynamité dynamiter ver m s 0.90 0.47 0.09 0.20 par:pas; +dynamitée dynamiter ver f s 0.90 0.47 0.12 0.00 par:pas; +dynamo dynamo nom f s 0.20 0.95 0.19 0.54 +dynamomètre dynamomètre nom m s 0.03 0.07 0.03 0.07 +dynamométrique dynamométrique adj f s 0.01 0.00 0.01 0.00 +dynamos dynamo nom f p 0.20 0.95 0.01 0.41 +dynastie dynastie nom f s 2.31 3.65 2.29 3.04 +dynasties dynastie nom f p 2.31 3.65 0.02 0.61 +dynastique dynastique adj f s 0.01 0.07 0.01 0.07 +dynes dyne nom f p 0.01 0.07 0.01 0.07 +dyscinésie dyscinésie nom f s 0.01 0.00 0.01 0.00 +dyscrasie dyscrasie nom f s 0.01 0.00 0.01 0.00 +dysenterie dysenterie nom f s 0.80 1.49 0.80 1.42 +dysenteries dysenterie nom f p 0.80 1.49 0.00 0.07 +dysentérique dysentérique adj s 0.00 0.27 0.00 0.07 +dysentériques dysentérique adj p 0.00 0.27 0.00 0.20 +dysfonction dysfonction nom f s 0.09 0.00 0.09 0.00 +dysfonctionnement dysfonctionnement nom m s 0.77 0.00 0.57 0.00 +dysfonctionnements dysfonctionnement nom m p 0.77 0.00 0.20 0.00 +dyslexie dyslexie nom f s 0.12 0.07 0.12 0.07 +dyslexique dyslexique adj m s 0.46 0.07 0.46 0.07 +dysménorrhée dysménorrhée nom f s 0.01 0.00 0.01 0.00 +dyspepsie dyspepsie nom f s 0.05 0.14 0.05 0.14 +dyspepsique dyspepsique adj s 0.01 0.07 0.01 0.07 +dyspeptique dyspeptique adj s 0.02 0.07 0.02 0.07 +dysphonie dysphonie nom f s 0.01 0.00 0.01 0.00 +dysphorie dysphorie nom f s 0.02 0.00 0.02 0.00 +dysplasie dysplasie nom f s 0.06 0.07 0.06 0.07 +dyspnée dyspnée nom f s 0.05 0.00 0.05 0.00 +dyspnéique dyspnéique adj f s 0.00 0.14 0.00 0.07 +dyspnéiques dyspnéique adj f p 0.00 0.14 0.00 0.07 +dysthymie dysthymie nom f s 0.10 0.07 0.10 0.07 +dystocie dystocie nom f s 0.03 0.00 0.03 0.00 +dystrophie dystrophie nom f s 0.05 0.00 0.05 0.00 +dysurie dysurie nom f s 0.01 0.00 0.01 0.00 +dytique dytique nom m s 0.00 0.07 0.00 0.07 +e_commerce e_commerce nom m s 0.03 0.00 0.03 0.00 +e_mail e_mail nom m s 6.47 0.00 4.16 0.00 +e_mail e_mail nom m p 6.47 0.00 2.32 0.00 +e e nom m 60.91 28.99 60.91 28.99 +eûmes avoir aux 18559.23 12800.81 0.14 1.08 ind:pas:1p; +eût avoir aux 18559.23 12800.81 6.38 203.51 sub:imp:3s; +eûtes avoir ver_sup 13573.20 6426.49 0.01 0.00 ind:pas:2p; +east_river east_river nom f s 0.00 0.07 0.00 0.07 +eau_de_vie eau_de_vie nom f s 3.17 4.73 3.05 4.73 +eau_forte eau_forte nom f s 0.30 0.27 0.30 0.27 +eau_minute eau_minute nom f s 0.01 0.00 0.01 0.00 +eau eau nom f s 305.74 459.86 290.61 417.84 +eau_de_vie eau_de_vie nom f p 3.17 4.73 0.12 0.00 +eaux_fortes eaux_fortes nom f p 0.00 0.14 0.00 0.14 +eaux eau nom f p 305.74 459.86 15.14 42.03 +ecce_homo ecce_homo adv 0.20 0.20 0.20 0.20 +ecchymose ecchymose nom f s 0.91 1.22 0.23 0.34 +ecchymoses ecchymose nom f p 0.91 1.22 0.67 0.88 +ecchymosé ecchymosé adj m s 0.01 0.07 0.01 0.00 +ecchymosée ecchymosé adj f s 0.01 0.07 0.00 0.07 +ecclésiale ecclésial adj f s 0.00 0.20 0.00 0.20 +ecclésiastique ecclésiastique adj s 0.48 2.91 0.35 1.89 +ecclésiastiques ecclésiastique adj p 0.48 2.91 0.12 1.01 +ecsta ecsta adv 0.01 0.00 0.01 0.00 +ecstasy ecstasy nom m s 3.85 0.00 3.85 0.00 +ectasie ectasie nom f s 0.01 0.00 0.01 0.00 +ecthyma ecthyma nom m s 0.00 0.07 0.00 0.07 +ectodermique ectodermique adj f s 0.01 0.00 0.01 0.00 +ectopie ectopie nom f s 0.04 0.00 0.04 0.00 +ectopique ectopique adj f s 0.04 0.00 0.04 0.00 +ectoplasme ectoplasme nom m s 0.71 0.95 0.60 0.47 +ectoplasmes ectoplasme nom m p 0.71 0.95 0.11 0.47 +ectoplasmique ectoplasmique adj s 0.05 0.34 0.03 0.20 +ectoplasmiques ectoplasmique adj f p 0.05 0.34 0.02 0.14 +eczéma eczéma nom m s 0.64 1.55 0.64 1.42 +eczémas eczéma nom m p 0.64 1.55 0.00 0.14 +eczémateuses eczémateux adj f p 0.01 0.14 0.01 0.07 +eczémateux eczémateux nom m 0.01 0.07 0.01 0.07 +edelweiss edelweiss nom m 0.00 0.54 0.00 0.54 +edwardienne edwardien adj f s 0.00 0.07 0.00 0.07 +efface effacer ver 29.02 70.34 6.19 11.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effacement effacement nom m s 0.36 2.77 0.36 2.70 +effacements effacement nom m p 0.36 2.77 0.00 0.07 +effacent effacer ver 29.02 70.34 1.00 3.58 ind:pre:3p; +effacer effacer ver 29.02 70.34 10.05 18.31 inf; +effacera effacer ver 29.02 70.34 0.73 0.88 ind:fut:3s; +effacerai effacer ver 29.02 70.34 0.23 0.14 ind:fut:1s; +effaceraient effacer ver 29.02 70.34 0.02 0.00 cnd:pre:3p; +effacerais effacer ver 29.02 70.34 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +effacerait effacer ver 29.02 70.34 0.21 0.74 cnd:pre:3s; +effaceras effacer ver 29.02 70.34 0.03 0.20 ind:fut:2s; +effacerez effacer ver 29.02 70.34 0.03 0.00 ind:fut:2p; +effacerions effacer ver 29.02 70.34 0.01 0.00 cnd:pre:1p; +effacerons effacer ver 29.02 70.34 0.13 0.00 ind:fut:1p; +effaceront effacer ver 29.02 70.34 0.15 0.27 ind:fut:3p; +effaces effacer ver 29.02 70.34 0.47 0.07 ind:pre:2s; +effaceur effaceur nom m s 0.10 0.00 0.10 0.00 +effacez effacer ver 29.02 70.34 0.89 0.20 imp:pre:2p;ind:pre:2p; +effaciez effacer ver 29.02 70.34 0.05 0.00 ind:imp:2p; +effacions effacer ver 29.02 70.34 0.01 0.07 ind:imp:1p; +effacèrent effacer ver 29.02 70.34 0.00 1.01 ind:pas:3p; +effacé effacer ver m s 29.02 70.34 5.24 6.96 par:pas; +effacée effacer ver f s 29.02 70.34 1.51 3.31 par:pas; +effacées effacer ver f p 29.02 70.34 0.50 1.96 par:pas; +effacés effacer ver m p 29.02 70.34 0.68 1.69 par:pas; +effara effarer ver 0.11 1.96 0.00 0.07 ind:pas:3s; +effaraient effarer ver 0.11 1.96 0.00 0.07 ind:imp:3p; +effarait effarer ver 0.11 1.96 0.00 0.14 ind:imp:3s; +effarant effarant adj m s 1.08 2.57 0.81 0.81 +effarante effarant adj f s 1.08 2.57 0.22 1.28 +effarantes effarant adj f p 1.08 2.57 0.00 0.34 +effarants effarant adj m p 1.08 2.57 0.05 0.14 +effare effarer ver 0.11 1.96 0.01 0.20 ind:pre:1s;ind:pre:3s; +effarement effarement nom m s 0.00 1.82 0.00 1.82 +effarer effarer ver 0.11 1.96 0.02 0.00 inf; +effaroucha effaroucher ver 0.63 5.20 0.00 0.07 ind:pas:3s; +effarouchaient effaroucher ver 0.63 5.20 0.00 0.20 ind:imp:3p; +effarouchait effaroucher ver 0.63 5.20 0.00 0.68 ind:imp:3s; +effarouchant effaroucher ver 0.63 5.20 0.00 0.20 par:pre; +effarouche effaroucher ver 0.63 5.20 0.29 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effarouchement effarouchement nom m s 0.00 0.20 0.00 0.07 +effarouchements effarouchement nom m p 0.00 0.20 0.00 0.14 +effarouchent effaroucher ver 0.63 5.20 0.30 0.20 ind:pre:3p; +effaroucher effaroucher ver 0.63 5.20 0.02 1.96 inf; +effarouches effaroucher ver 0.63 5.20 0.00 0.07 ind:pre:2s; +effarouchâmes effaroucher ver 0.63 5.20 0.00 0.14 ind:pas:1p; +effarouchât effaroucher ver 0.63 5.20 0.00 0.20 sub:imp:3s; +effarouché effarouché adj m s 0.81 2.50 0.06 0.74 +effarouchée effarouché adj f s 0.81 2.50 0.72 0.34 +effarouchées effarouché adj f p 0.81 2.50 0.01 0.68 +effarouchés effarouché adj m p 0.81 2.50 0.03 0.74 +effarèrent effarer ver 0.11 1.96 0.00 0.07 ind:pas:3p; +effaré effarer ver m s 0.11 1.96 0.05 0.54 par:pas; +effarée effaré adj f s 0.13 3.45 0.10 0.88 +effarées effaré adj f p 0.13 3.45 0.00 0.14 +effarés effarer ver m p 0.11 1.96 0.02 0.27 par:pas; +effarvatte effarvatte nom f s 0.00 0.14 0.00 0.07 +effarvattes effarvatte nom f p 0.00 0.14 0.00 0.07 +effaça effacer ver 29.02 70.34 0.02 5.27 ind:pas:3s; +effaçable effaçable adj s 0.01 0.07 0.01 0.00 +effaçables effaçable adj p 0.01 0.07 0.00 0.07 +effaçage effaçage nom m s 0.01 0.00 0.01 0.00 +effaçai effacer ver 29.02 70.34 0.00 0.14 ind:pas:1s; +effaçaient effacer ver 29.02 70.34 0.06 2.50 ind:imp:3p; +effaçais effacer ver 29.02 70.34 0.02 0.34 ind:imp:1s;ind:imp:2s; +effaçait effacer ver 29.02 70.34 0.20 7.43 ind:imp:3s; +effaçant effacer ver 29.02 70.34 0.27 2.97 par:pre; +effaçassent effacer ver 29.02 70.34 0.00 0.07 sub:imp:3p; +effaçons effacer ver 29.02 70.34 0.25 0.07 imp:pre:1p;ind:pre:1p; +effaçât effacer ver 29.02 70.34 0.00 0.41 sub:imp:3s; +effectif effectif nom m s 2.63 7.64 0.62 2.23 +effectifs effectif nom m p 2.63 7.64 2.02 5.41 +effective effectif adj f s 0.57 2.77 0.20 1.22 +effectivement effectivement adv 13.57 16.28 13.57 16.28 +effectives effectif adj f p 0.57 2.77 0.01 0.14 +effectivité effectivité nom f s 0.00 0.07 0.00 0.07 +effectua effectuer ver 10.53 15.20 0.02 1.01 ind:pas:3s; +effectuai effectuer ver 10.53 15.20 0.00 0.27 ind:pas:1s; +effectuaient effectuer ver 10.53 15.20 0.02 0.95 ind:imp:3p; +effectuais effectuer ver 10.53 15.20 0.08 0.00 ind:imp:1s; +effectuait effectuer ver 10.53 15.20 0.11 1.35 ind:imp:3s; +effectuant effectuer ver 10.53 15.20 0.13 0.81 par:pre; +effectue effectuer ver 10.53 15.20 0.90 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effectuent effectuer ver 10.53 15.20 0.04 0.07 ind:pre:3p; +effectuer effectuer ver 10.53 15.20 2.84 4.59 inf; +effectuera effectuer ver 10.53 15.20 0.23 0.07 ind:fut:3s; +effectuerai effectuer ver 10.53 15.20 0.05 0.00 ind:fut:1s; +effectuerait effectuer ver 10.53 15.20 0.00 0.20 cnd:pre:3s; +effectuerons effectuer ver 10.53 15.20 0.15 0.00 ind:fut:1p; +effectues effectuer ver 10.53 15.20 0.02 0.07 ind:pre:2s; +effectuez effectuer ver 10.53 15.20 0.23 0.00 imp:pre:2p;ind:pre:2p; +effectuions effectuer ver 10.53 15.20 0.01 0.07 ind:imp:1p; +effectuons effectuer ver 10.53 15.20 0.52 0.00 imp:pre:1p;ind:pre:1p; +effectué effectuer ver m s 10.53 15.20 3.43 2.30 par:pas; +effectuée effectuer ver f s 10.53 15.20 0.95 1.08 par:pas; +effectuées effectuer ver f p 10.53 15.20 0.32 0.81 par:pas; +effectués effectuer ver m p 10.53 15.20 0.46 0.61 par:pas; +effendi effendi nom m s 0.19 1.62 0.19 1.62 +effervescence effervescence nom f s 0.40 3.85 0.40 3.78 +effervescences effervescence nom f p 0.40 3.85 0.00 0.07 +effervescent effervescent adj m s 0.09 0.88 0.04 0.34 +effervescente effervescent adj f s 0.09 0.88 0.04 0.20 +effervescentes effervescent adj f p 0.09 0.88 0.00 0.14 +effervescents effervescent adj m p 0.09 0.88 0.01 0.20 +effet effet nom m s 116.75 192.36 99.17 173.18 +effets effet nom m p 116.75 192.36 17.58 19.19 +effeuilla effeuiller ver 0.17 1.89 0.00 0.07 ind:pas:3s; +effeuillage effeuillage nom m s 0.08 0.07 0.08 0.07 +effeuillaient effeuiller ver 0.17 1.89 0.00 0.14 ind:imp:3p; +effeuillait effeuiller ver 0.17 1.89 0.00 0.27 ind:imp:3s; +effeuillant effeuiller ver 0.17 1.89 0.01 0.00 par:pre; +effeuille effeuiller ver 0.17 1.89 0.00 0.47 ind:pre:1s;ind:pre:3s; +effeuillent effeuiller ver 0.17 1.89 0.00 0.07 ind:pre:3p; +effeuiller effeuiller ver 0.17 1.89 0.12 0.41 inf; +effeuilleras effeuiller ver 0.17 1.89 0.00 0.07 ind:fut:2s; +effeuilleuse effeuilleur nom f s 0.11 0.20 0.11 0.14 +effeuilleuses effeuilleuse nom f p 0.06 0.00 0.06 0.00 +effeuillez effeuiller ver 0.17 1.89 0.01 0.00 imp:pre:2p; +effeuillèrent effeuiller ver 0.17 1.89 0.00 0.07 ind:pas:3p; +effeuillé effeuiller ver m s 0.17 1.89 0.01 0.07 par:pas; +effeuillée effeuiller ver f s 0.17 1.89 0.01 0.20 par:pas; +effeuillés effeuiller ver m p 0.17 1.89 0.01 0.07 par:pas; +efficace efficace adj s 14.54 15.27 12.19 12.23 +efficacement efficacement adv 0.67 2.23 0.67 2.23 +efficaces efficace adj p 14.54 15.27 2.35 3.04 +efficacité efficacité nom f s 3.36 8.51 3.36 8.51 +efficience efficience nom f s 0.01 0.34 0.01 0.34 +efficient efficient adj m s 0.14 0.41 0.00 0.20 +efficiente efficient adj f s 0.14 0.41 0.14 0.07 +efficientes efficient adj f p 0.14 0.41 0.00 0.07 +efficients efficient adj m p 0.14 0.41 0.00 0.07 +effigie effigie nom f s 1.60 4.19 1.52 3.38 +effigies effigie nom f p 1.60 4.19 0.07 0.81 +effila effiler ver 0.07 2.43 0.00 0.07 ind:pas:3s; +effilaient effiler ver 0.07 2.43 0.00 0.07 ind:imp:3p; +effilait effiler ver 0.07 2.43 0.00 0.14 ind:imp:3s; +effilant effiler ver 0.07 2.43 0.00 0.20 par:pre; +effile effiler ver 0.07 2.43 0.00 0.20 ind:pre:3s; +effilement effilement nom m s 0.00 0.07 0.00 0.07 +effilent effiler ver 0.07 2.43 0.01 0.07 ind:pre:3p; +effiler effiler ver 0.07 2.43 0.03 0.27 inf; +effilochage effilochage nom m s 0.00 0.07 0.00 0.07 +effilochaient effilocher ver 0.20 6.35 0.00 0.47 ind:imp:3p; +effilochait effilocher ver 0.20 6.35 0.01 0.88 ind:imp:3s; +effilochant effilocher ver 0.20 6.35 0.00 0.27 par:pre; +effiloche effilocher ver 0.20 6.35 0.05 0.95 ind:pre:3s; +effilochent effilocher ver 0.20 6.35 0.00 0.34 ind:pre:3p; +effilocher effilocher ver 0.20 6.35 0.00 0.47 inf; +effilochera effilocher ver 0.20 6.35 0.01 0.07 ind:fut:3s; +effilochèrent effilocher ver 0.20 6.35 0.00 0.07 ind:pas:3p; +effiloché effilocher ver m s 0.20 6.35 0.11 0.81 par:pas; +effilochée effilocher ver f s 0.20 6.35 0.02 0.88 par:pas; +effilochées effilocher ver f p 0.20 6.35 0.00 0.47 par:pas; +effilochure effilochure nom f s 0.00 0.47 0.00 0.20 +effilochures effilochure nom f p 0.00 0.47 0.00 0.27 +effilochés effilocher ver m p 0.20 6.35 0.00 0.68 par:pas; +effilé effilé adj m s 0.08 4.46 0.06 1.08 +effilée effiler ver f s 0.07 2.43 0.01 0.68 par:pas; +effilées effiler ver f p 0.07 2.43 0.02 0.41 par:pas; +effilure effilure nom f s 0.00 0.14 0.00 0.07 +effilures effilure nom f p 0.00 0.14 0.00 0.07 +effilés effilé adj m p 0.08 4.46 0.01 1.35 +efflanqué efflanqué adj m s 0.14 3.92 0.14 2.30 +efflanquée efflanqué adj f s 0.14 3.92 0.00 0.61 +efflanquées efflanqué adj f p 0.14 3.92 0.00 0.47 +efflanqués efflanquer ver m p 0.01 1.28 0.01 0.27 par:pas; +effleura effleurer ver 3.23 25.68 0.01 4.93 ind:pas:3s; +effleurage effleurage nom m s 0.00 0.07 0.00 0.07 +effleurai effleurer ver 3.23 25.68 0.00 0.14 ind:pas:1s; +effleuraient effleurer ver 3.23 25.68 0.00 0.88 ind:imp:3p; +effleurais effleurer ver 3.23 25.68 0.00 0.20 ind:imp:1s; +effleurait effleurer ver 3.23 25.68 0.10 2.77 ind:imp:3s; +effleurant effleurer ver 3.23 25.68 0.12 1.49 par:pre; +effleure effleurer ver 3.23 25.68 0.54 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effleurement effleurement nom m s 0.07 1.22 0.03 0.81 +effleurements effleurement nom m p 0.07 1.22 0.04 0.41 +effleurent effleurer ver 3.23 25.68 0.05 0.74 ind:pre:3p; +effleurer effleurer ver 3.23 25.68 0.62 4.59 inf; +effleurera effleurer ver 3.23 25.68 0.00 0.14 ind:fut:3s; +effleurerait effleurer ver 3.23 25.68 0.01 0.20 cnd:pre:3s; +effleureront effleurer ver 3.23 25.68 0.00 0.07 ind:fut:3p; +effleures effleurer ver 3.23 25.68 0.03 0.07 ind:pre:2s; +effleurez effleurer ver 3.23 25.68 0.04 0.07 imp:pre:2p;ind:pre:2p; +effleurâmes effleurer ver 3.23 25.68 0.00 0.14 ind:pas:1p; +effleurât effleurer ver 3.23 25.68 0.00 0.07 sub:imp:3s; +effleurèrent effleurer ver 3.23 25.68 0.00 0.34 ind:pas:3p; +effleuré effleurer ver m s 3.23 25.68 1.27 3.18 par:pas; +effleurée effleurer ver f s 3.23 25.68 0.41 1.49 par:pas; +effleurées effleurer ver f p 3.23 25.68 0.00 0.20 par:pas; +effleurés effleurer ver m p 3.23 25.68 0.04 0.20 par:pas; +efflorescence efflorescence nom f s 0.01 0.27 0.01 0.27 +effluent effluent nom m s 0.01 0.00 0.01 0.00 +effluve effluve nom m s 0.09 6.49 0.02 0.61 +effluves effluve nom m p 0.09 6.49 0.06 5.88 +effondra effondrer ver 13.24 25.74 0.24 3.72 ind:pas:3s; +effondrai effondrer ver 13.24 25.74 0.02 0.34 ind:pas:1s; +effondraient effondrer ver 13.24 25.74 0.01 0.81 ind:imp:3p; +effondrais effondrer ver 13.24 25.74 0.00 0.14 ind:imp:1s; +effondrait effondrer ver 13.24 25.74 0.15 2.50 ind:imp:3s; +effondrant effondrer ver 13.24 25.74 0.04 0.34 par:pre; +effondre effondrer ver 13.24 25.74 3.19 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effondrement effondrement nom m s 1.83 6.82 1.82 6.28 +effondrements effondrement nom m p 1.83 6.82 0.01 0.54 +effondrent effondrer ver 13.24 25.74 0.41 1.15 ind:pre:3p; +effondrer effondrer ver 13.24 25.74 3.22 5.34 inf; +effondrera effondrer ver 13.24 25.74 0.51 0.34 ind:fut:3s; +effondreraient effondrer ver 13.24 25.74 0.04 0.00 cnd:pre:3p; +effondrerais effondrer ver 13.24 25.74 0.05 0.07 cnd:pre:1s; +effondrerait effondrer ver 13.24 25.74 0.36 0.27 cnd:pre:3s; +effondreront effondrer ver 13.24 25.74 0.11 0.00 ind:fut:3p; +effondrez effondrer ver 13.24 25.74 0.03 0.00 ind:pre:2p; +effondrât effondrer ver 13.24 25.74 0.00 0.14 sub:imp:3s; +effondrèrent effondrer ver 13.24 25.74 0.00 0.54 ind:pas:3p; +effondré effondrer ver m s 13.24 25.74 2.75 3.24 par:pas; +effondrée effondrer ver f s 13.24 25.74 1.87 2.16 par:pas; +effondrées effondrer ver f p 13.24 25.74 0.05 0.20 par:pas; +effondrés effondrer ver m p 13.24 25.74 0.17 0.61 par:pas; +efforce efforcer ver 6.14 54.19 2.09 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +efforcent efforcer ver 6.14 54.19 0.38 2.16 ind:pre:3p; +efforcer efforcer ver 6.14 54.19 0.86 2.57 inf; +efforcera efforcer ver 6.14 54.19 0.04 0.20 ind:fut:3s; +efforcerai efforcer ver 6.14 54.19 0.40 0.27 ind:fut:1s; +efforceraient efforcer ver 6.14 54.19 0.00 0.14 cnd:pre:3p; +efforcerais efforcer ver 6.14 54.19 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +efforcerait efforcer ver 6.14 54.19 0.01 0.14 cnd:pre:3s; +efforcerons efforcer ver 6.14 54.19 0.12 0.07 ind:fut:1p; +efforces efforcer ver 6.14 54.19 0.11 0.27 ind:pre:2s; +efforcez efforcer ver 6.14 54.19 0.31 0.00 imp:pre:2p;ind:pre:2p; +efforcions efforcer ver 6.14 54.19 0.00 0.81 ind:imp:1p; +efforcèrent efforcer ver 6.14 54.19 0.00 0.20 ind:pas:3p; +efforcé efforcer ver m s 6.14 54.19 0.46 2.03 par:pas; +efforcée efforcer ver f s 6.14 54.19 0.14 0.81 par:pas; +efforcés efforcer ver m p 6.14 54.19 0.12 0.41 par:pas; +effort effort nom m s 42.70 136.62 23.26 98.18 +efforça efforcer ver 6.14 54.19 0.02 5.61 ind:pas:3s; +efforçai efforcer ver 6.14 54.19 0.01 0.95 ind:pas:1s; +efforçaient efforcer ver 6.14 54.19 0.04 4.05 ind:imp:3p; +efforçais efforcer ver 6.14 54.19 0.08 2.50 ind:imp:1s; +efforçait efforcer ver 6.14 54.19 0.32 14.19 ind:imp:3s; +efforçant efforcer ver 6.14 54.19 0.24 7.64 par:pre; +efforçâmes efforcer ver 6.14 54.19 0.00 0.14 ind:pas:1p; +efforçons efforcer ver 6.14 54.19 0.38 0.41 imp:pre:1p;ind:pre:1p; +efforçât efforcer ver 6.14 54.19 0.00 0.47 sub:imp:3s; +efforts effort nom m p 42.70 136.62 19.44 38.45 +effraction effraction nom f s 7.76 2.03 7.49 2.03 +effractions effraction nom f p 7.76 2.03 0.27 0.00 +effraie effrayer ver 37.04 29.86 7.65 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effraient effrayer ver 37.04 29.86 1.07 0.47 ind:pre:3p; +effraiera effrayer ver 37.04 29.86 0.07 0.07 ind:fut:3s; +effraieraient effrayer ver 37.04 29.86 0.01 0.00 cnd:pre:3p; +effraierait effrayer ver 37.04 29.86 0.36 0.20 cnd:pre:3s; +effraieras effrayer ver 37.04 29.86 0.04 0.00 ind:fut:2s; +effraierez effrayer ver 37.04 29.86 0.03 0.00 ind:fut:2p; +effraies effrayer ver 37.04 29.86 0.53 0.20 ind:pre:2s; +effrange effranger ver 0.01 1.96 0.00 0.07 ind:pre:3s; +effrangeait effranger ver 0.01 1.96 0.00 0.07 ind:imp:3s; +effrangent effranger ver 0.01 1.96 0.00 0.07 ind:pre:3p; +effrangé effranger ver m s 0.01 1.96 0.01 0.61 par:pas; +effrangée effranger ver f s 0.01 1.96 0.00 0.34 par:pas; +effrangées effranger ver f p 0.01 1.96 0.00 0.41 par:pas; +effrangés effranger ver m p 0.01 1.96 0.00 0.41 par:pas; +effraya effrayer ver 37.04 29.86 0.00 2.09 ind:pas:3s; +effrayaient effrayer ver 37.04 29.86 0.23 1.35 ind:imp:3p; +effrayais effrayer ver 37.04 29.86 0.04 0.20 ind:imp:1s; +effrayait effrayer ver 37.04 29.86 0.91 7.16 ind:imp:3s; +effrayamment effrayamment adv 0.00 0.20 0.00 0.20 +effrayant effrayant adj m s 14.69 19.19 10.07 8.99 +effrayante effrayant adj f s 14.69 19.19 2.86 7.16 +effrayantes effrayant adj f p 14.69 19.19 0.69 1.42 +effrayants effrayant adj m p 14.69 19.19 1.07 1.62 +effraye effrayer ver 37.04 29.86 1.10 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effrayent effrayer ver 37.04 29.86 0.25 0.20 ind:pre:3p; +effrayer effrayer ver 37.04 29.86 9.43 4.73 ind:pre:2p;inf; +effrayerais effrayer ver 37.04 29.86 0.03 0.00 cnd:pre:1s; +effrayerait effrayer ver 37.04 29.86 0.08 0.00 cnd:pre:3s; +effrayeras effrayer ver 37.04 29.86 0.01 0.00 ind:fut:2s; +effrayez effrayer ver 37.04 29.86 1.01 0.34 imp:pre:2p;ind:pre:2p; +effrayons effrayer ver 37.04 29.86 0.20 0.07 imp:pre:1p;ind:pre:1p; +effrayèrent effrayer ver 37.04 29.86 0.14 0.00 ind:pas:3p; +effrayé effrayer ver m s 37.04 29.86 6.36 3.99 par:pas; +effrayée effrayer ver f s 37.04 29.86 5.00 2.64 par:pas; +effrayées effrayé adj f p 6.78 9.46 0.27 0.20 +effrayés effrayer ver m p 37.04 29.86 1.57 1.42 par:pas; +effrita effriter ver 0.45 5.68 0.01 0.20 ind:pas:3s; +effritaient effriter ver 0.45 5.68 0.01 0.27 ind:imp:3p; +effritait effriter ver 0.45 5.68 0.10 0.54 ind:imp:3s; +effritant effriter ver 0.45 5.68 0.00 0.54 par:pre; +effrite effriter ver 0.45 5.68 0.23 1.55 ind:pre:1s;ind:pre:3s; +effritement effritement nom m s 0.01 0.47 0.01 0.41 +effritements effritement nom m p 0.01 0.47 0.00 0.07 +effritent effriter ver 0.45 5.68 0.04 0.68 ind:pre:3p; +effriter effriter ver 0.45 5.68 0.04 0.54 inf; +effriterait effriter ver 0.45 5.68 0.00 0.14 cnd:pre:3s; +effrité effriter ver m s 0.45 5.68 0.02 0.41 par:pas; +effritée effriter ver f s 0.45 5.68 0.00 0.27 par:pas; +effritées effriter ver f p 0.45 5.68 0.00 0.20 par:pas; +effrités effriter ver m p 0.45 5.68 0.00 0.34 par:pas; +effroi effroi nom m s 2.83 12.91 2.83 12.91 +effronterie effronterie nom f s 0.46 1.22 0.46 1.15 +effronteries effronterie nom f p 0.46 1.22 0.00 0.07 +effronté effronté nom m s 1.65 0.81 0.73 0.20 +effrontée effronté nom f s 1.65 0.81 0.79 0.47 +effrontées effronté adj f p 1.51 1.55 0.14 0.14 +effrontément effrontément adv 0.22 0.74 0.22 0.74 +effrontés effronté adj m p 1.51 1.55 0.04 0.47 +effroyable effroyable adj s 4.41 8.99 3.84 6.69 +effroyablement effroyablement adv 0.11 1.35 0.11 1.35 +effroyables effroyable adj p 4.41 8.99 0.57 2.30 +effréné effréné adj m s 0.50 3.11 0.36 1.28 +effrénée effréné adj f s 0.50 3.11 0.13 1.42 +effrénées effréné adj f p 0.50 3.11 0.01 0.34 +effrénés effréné adj m p 0.50 3.11 0.00 0.07 +effulgente effulgent adj f s 0.01 0.07 0.01 0.07 +efféminait efféminer ver 0.25 0.07 0.00 0.07 ind:imp:3s; +efféminé efféminé adj m s 0.81 0.68 0.49 0.20 +efféminée efféminé adj f s 0.81 0.68 0.04 0.14 +efféminés efféminé adj m p 0.81 0.68 0.28 0.34 +effusion effusion nom f s 1.73 6.42 1.39 3.24 +effusionniste effusionniste adj s 0.00 0.14 0.00 0.07 +effusionnistes effusionniste adj m p 0.00 0.14 0.00 0.07 +effusions effusion nom f p 1.73 6.42 0.34 3.18 +efrit efrit nom m s 0.00 0.07 0.00 0.07 +ego ego nom m 4.16 1.22 4.16 1.22 +eh eh ono 386.00 176.62 386.00 176.62 +eider eider nom m s 0.00 0.34 0.00 0.07 +eiders eider nom m p 0.00 0.34 0.00 0.27 +eidétique eidétique adj f s 0.02 0.00 0.02 0.00 +einsteinienne einsteinien adj f s 0.01 0.07 0.01 0.07 +ektachromes ektachrome nom m p 0.00 0.14 0.00 0.14 +eldorado eldorado nom m s 0.04 0.00 0.04 0.00 +elfe elfe nom m s 3.26 1.42 1.39 0.54 +elfes elfe nom m p 3.26 1.42 1.87 0.88 +elle_même elle_même pro_per f s 17.88 113.51 17.88 113.51 +elle elle pro_per f s 4520.53 6991.49 4520.53 6991.49 +elles_mêmes elles_mêmes pro_per f p 2.21 14.86 2.21 14.86 +elles elles pro_per f p 420.51 605.14 420.51 605.14 +ellipse ellipse nom f s 0.44 1.42 0.42 0.95 +ellipses ellipse nom f p 0.44 1.42 0.02 0.47 +ellipsoïde ellipsoïde adj s 0.00 0.07 0.00 0.07 +elliptique elliptique adj s 0.09 0.61 0.06 0.47 +elliptiques elliptique adj p 0.09 0.61 0.02 0.14 +ellébore ellébore nom m s 0.03 0.07 0.03 0.07 +elzévir elzévir nom m s 0.00 0.07 0.00 0.07 +emails email nom m p 0.65 0.00 0.65 0.00 +embûche embûche nom f s 0.24 3.18 0.04 0.41 +embûches embûche nom f p 0.24 3.18 0.20 2.77 +embabouiner embabouiner ver 0.00 0.07 0.00 0.07 inf; +emballa emballer ver 18.86 15.27 0.00 0.74 ind:pas:3s; +emballage emballage nom m s 4.60 6.08 3.23 4.39 +emballages emballage nom m p 4.60 6.08 1.37 1.69 +emballai emballer ver 18.86 15.27 0.00 0.14 ind:pas:1s; +emballaient emballer ver 18.86 15.27 0.00 0.20 ind:imp:3p; +emballais emballer ver 18.86 15.27 0.27 0.14 ind:imp:1s;ind:imp:2s; +emballait emballer ver 18.86 15.27 0.31 1.62 ind:imp:3s; +emballant emballer ver 18.86 15.27 0.10 0.34 par:pre; +emballe emballer ver 18.86 15.27 5.34 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emballement emballement nom m s 0.02 0.61 0.01 0.54 +emballements emballement nom m p 0.02 0.61 0.01 0.07 +emballent emballer ver 18.86 15.27 0.32 0.20 ind:pre:3p; +emballer emballer ver 18.86 15.27 3.74 4.66 inf; +emballera emballer ver 18.86 15.27 0.18 0.07 ind:fut:3s; +emballeraient emballer ver 18.86 15.27 0.00 0.07 cnd:pre:3p; +emballerait emballer ver 18.86 15.27 0.01 0.00 cnd:pre:3s; +emballeras emballer ver 18.86 15.27 0.00 0.07 ind:fut:2s; +emballerons emballer ver 18.86 15.27 0.01 0.00 ind:fut:1p; +emballes emballer ver 18.86 15.27 1.04 0.20 ind:pre:2s; +emballeur emballeur nom m s 0.15 0.81 0.11 0.61 +emballeurs emballeur nom m p 0.15 0.81 0.03 0.14 +emballeuse emballeur nom f s 0.15 0.81 0.01 0.00 +emballeuses emballeur nom f p 0.15 0.81 0.00 0.07 +emballez emballer ver 18.86 15.27 1.73 0.61 imp:pre:2p;ind:pre:2p; +emballons emballer ver 18.86 15.27 0.78 0.14 imp:pre:1p;ind:pre:1p; +emballât emballer ver 18.86 15.27 0.00 0.07 sub:imp:3s; +emballèrent emballer ver 18.86 15.27 0.00 0.14 ind:pas:3p; +emballé emballer ver m s 18.86 15.27 3.21 2.16 par:pas; +emballée emballer ver f s 18.86 15.27 1.20 1.01 par:pas; +emballées emballer ver f p 18.86 15.27 0.14 0.27 par:pas; +emballés emballer ver m p 18.86 15.27 0.48 0.20 par:pas; +embaluchonnés embaluchonner ver m p 0.00 0.07 0.00 0.07 par:pas; +embarbouilla embarbouiller ver 0.00 0.14 0.00 0.07 ind:pas:3s; +embarbouillé embarbouiller ver m s 0.00 0.14 0.00 0.07 par:pas; +embarcadère embarcadère nom m s 1.13 2.16 1.10 1.89 +embarcadères embarcadère nom m p 1.13 2.16 0.03 0.27 +embarcation embarcation nom f s 0.80 4.80 0.62 3.24 +embarcations embarcation nom f p 0.80 4.80 0.19 1.55 +embardée embardée nom f s 0.23 1.96 0.16 1.35 +embardées embardée nom f p 0.23 1.96 0.07 0.61 +embargo embargo nom m s 0.75 0.07 0.72 0.07 +embargos embargo nom m p 0.75 0.07 0.03 0.00 +embarqua embarquer ver 26.49 32.77 0.17 1.55 ind:pas:3s; +embarquai embarquer ver 26.49 32.77 0.01 0.68 ind:pas:1s; +embarquaient embarquer ver 26.49 32.77 0.09 0.74 ind:imp:3p; +embarquais embarquer ver 26.49 32.77 0.05 0.47 ind:imp:1s; +embarquait embarquer ver 26.49 32.77 0.06 2.09 ind:imp:3s; +embarquant embarquer ver 26.49 32.77 0.37 0.27 par:pre; +embarque embarquer ver 26.49 32.77 6.88 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embarquement embarquement nom m s 4.03 4.19 4.02 3.99 +embarquements embarquement nom m p 4.03 4.19 0.01 0.20 +embarquent embarquer ver 26.49 32.77 0.95 0.41 ind:pre:3p; +embarquer embarquer ver 26.49 32.77 7.16 10.74 inf; +embarquera embarquer ver 26.49 32.77 0.27 0.00 ind:fut:3s; +embarquerai embarquer ver 26.49 32.77 0.03 0.00 ind:fut:1s; +embarqueraient embarquer ver 26.49 32.77 0.01 0.07 cnd:pre:3p; +embarquerais embarquer ver 26.49 32.77 0.04 0.14 cnd:pre:1s; +embarquerait embarquer ver 26.49 32.77 0.05 0.34 cnd:pre:3s; +embarqueras embarquer ver 26.49 32.77 0.02 0.14 ind:fut:2s; +embarquerez embarquer ver 26.49 32.77 0.12 0.00 ind:fut:2p; +embarquerions embarquer ver 26.49 32.77 0.00 0.07 cnd:pre:1p; +embarqueront embarquer ver 26.49 32.77 0.04 0.07 ind:fut:3p; +embarquez embarquer ver 26.49 32.77 2.89 0.20 imp:pre:2p;ind:pre:2p; +embarquiez embarquer ver 26.49 32.77 0.02 0.07 ind:imp:2p; +embarquions embarquer ver 26.49 32.77 0.01 0.14 ind:imp:1p; +embarquâmes embarquer ver 26.49 32.77 0.11 0.14 ind:pas:1p; +embarquons embarquer ver 26.49 32.77 0.44 0.20 imp:pre:1p;ind:pre:1p; +embarquèrent embarquer ver 26.49 32.77 0.05 0.47 ind:pas:3p; +embarqué embarquer ver m s 26.49 32.77 4.89 5.68 par:pas; +embarquée embarquer ver f s 26.49 32.77 1.12 1.15 par:pas; +embarquées embarquer ver f p 26.49 32.77 0.08 0.68 par:pas; +embarqués embarquer ver m p 26.49 32.77 0.56 2.97 par:pas; +embarras embarras nom m 5.32 12.09 5.32 12.09 +embarrassa embarrasser ver 6.70 13.85 0.02 0.27 ind:pas:3s; +embarrassai embarrasser ver 6.70 13.85 0.00 0.07 ind:pas:1s; +embarrassaient embarrasser ver 6.70 13.85 0.01 0.74 ind:imp:3p; +embarrassais embarrasser ver 6.70 13.85 0.01 0.14 ind:imp:1s; +embarrassait embarrasser ver 6.70 13.85 0.03 1.01 ind:imp:3s; +embarrassant embarrassant adj m s 7.44 2.23 5.28 0.74 +embarrassante embarrassant adj f s 7.44 2.23 1.20 1.01 +embarrassantes embarrassant adj f p 7.44 2.23 0.38 0.47 +embarrassants embarrassant adj m p 7.44 2.23 0.58 0.00 +embarrasse embarrasser ver 6.70 13.85 1.14 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embarrassent embarrasser ver 6.70 13.85 0.34 0.20 ind:pre:3p; +embarrasser embarrasser ver 6.70 13.85 1.52 1.69 ind:pre:2p;inf; +embarrasserai embarrasser ver 6.70 13.85 0.04 0.00 ind:fut:1s; +embarrasseraient embarrasser ver 6.70 13.85 0.00 0.07 cnd:pre:3p; +embarrasses embarrasser ver 6.70 13.85 0.26 0.07 ind:pre:2s; +embarrassez embarrasser ver 6.70 13.85 0.24 0.00 imp:pre:2p;ind:pre:2p; +embarrassions embarrasser ver 6.70 13.85 0.00 0.07 ind:imp:1p; +embarrassons embarrasser ver 6.70 13.85 0.14 0.07 imp:pre:1p;ind:pre:1p; +embarrassèrent embarrasser ver 6.70 13.85 0.00 0.07 ind:pas:3p; +embarrassé embarrassé adj m s 2.38 7.36 1.46 5.00 +embarrassée embarrasser ver f s 6.70 13.85 1.05 1.28 par:pas; +embarrassées embarrassé adj f p 2.38 7.36 0.14 0.27 +embarrassés embarrasser ver m p 6.70 13.85 0.23 0.61 par:pas; +embarrure embarrure nom f s 0.01 0.00 0.01 0.00 +embase embase nom f s 0.00 0.14 0.00 0.07 +embases embase nom f p 0.00 0.14 0.00 0.07 +embastiller embastiller ver 0.05 0.27 0.02 0.14 inf; +embastillé embastiller ver m s 0.05 0.27 0.02 0.07 par:pas; +embastillée embastiller ver f s 0.05 0.27 0.01 0.00 par:pas; +embastillés embastiller ver m p 0.05 0.27 0.00 0.07 par:pas; +embats embattre ver 0.00 0.07 0.00 0.07 ind:pre:2s; +embaucha embaucher ver 13.11 5.95 0.13 0.14 ind:pas:3s; +embauchage embauchage nom m s 0.00 0.07 0.00 0.07 +embauchaient embaucher ver 13.11 5.95 0.01 0.07 ind:imp:3p; +embauchais embaucher ver 13.11 5.95 0.16 0.00 ind:imp:1s;ind:imp:2s; +embauchait embaucher ver 13.11 5.95 0.18 0.34 ind:imp:3s; +embauchant embaucher ver 13.11 5.95 0.04 0.07 par:pre; +embauche embauche nom f s 2.86 2.97 2.84 2.97 +embauchent embaucher ver 13.11 5.95 0.29 0.27 ind:pre:3p; +embaucher embaucher ver 13.11 5.95 3.56 1.69 inf; +embauchera embaucher ver 13.11 5.95 0.10 0.14 ind:fut:3s; +embaucherai embaucher ver 13.11 5.95 0.03 0.00 ind:fut:1s; +embaucherais embaucher ver 13.11 5.95 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +embaucherait embaucher ver 13.11 5.95 0.07 0.00 cnd:pre:3s; +embaucheront embaucher ver 13.11 5.95 0.01 0.00 ind:fut:3p; +embauches embaucher ver 13.11 5.95 0.27 0.07 ind:pre:2s; +embauchez embaucher ver 13.11 5.95 0.38 0.00 imp:pre:2p;ind:pre:2p; +embauchoir embauchoir nom m s 0.05 0.07 0.03 0.00 +embauchoirs embauchoir nom m p 0.05 0.07 0.02 0.07 +embauchons embaucher ver 13.11 5.95 0.14 0.07 imp:pre:1p;ind:pre:1p; +embauchât embaucher ver 13.11 5.95 0.00 0.07 sub:imp:3s; +embauché embaucher ver m s 13.11 5.95 4.56 1.42 par:pas; +embauchée embaucher ver f s 13.11 5.95 0.75 0.20 par:pas; +embauchées embaucher ver f p 13.11 5.95 0.05 0.14 par:pas; +embauchés embaucher ver m p 13.11 5.95 0.28 0.27 par:pas; +embauma embaumer ver 2.83 7.09 0.01 0.34 ind:pas:3s; +embaumaient embaumer ver 2.83 7.09 0.04 0.34 ind:imp:3p; +embaumait embaumer ver 2.83 7.09 0.04 1.69 ind:imp:3s; +embaumant embaumant adj m s 0.00 0.54 0.00 0.47 +embaumants embaumant adj m p 0.00 0.54 0.00 0.07 +embaume embaumer ver 2.83 7.09 0.60 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embaumement embaumement nom m s 0.68 0.27 0.65 0.20 +embaumements embaumement nom m p 0.68 0.27 0.02 0.07 +embaument embaumer ver 2.83 7.09 0.26 0.61 ind:pre:3p; +embaumer embaumer ver 2.83 7.09 0.81 0.81 inf; +embaumerait embaumer ver 2.83 7.09 0.00 0.07 cnd:pre:3s; +embaumeur embaumeur nom m s 0.51 0.88 0.34 0.14 +embaumeurs embaumeur nom m p 0.51 0.88 0.04 0.74 +embaumeuse embaumeur nom f s 0.51 0.88 0.13 0.00 +embaumez embaumer ver 2.83 7.09 0.02 0.00 imp:pre:2p;ind:pre:2p; +embaumions embaumer ver 2.83 7.09 0.01 0.00 ind:imp:1p; +embaumé embaumer ver m s 2.83 7.09 0.47 0.95 par:pas; +embaumée embaumer ver f s 2.83 7.09 0.28 0.68 par:pas; +embaumées embaumer ver f p 2.83 7.09 0.00 0.27 par:pas; +embaumés embaumer ver m p 2.83 7.09 0.28 0.20 par:pas; +embelli embellir ver m s 3.40 5.14 0.34 0.74 par:pas; +embellie embellie nom f s 0.02 2.70 0.02 2.43 +embellies embellir ver f p 3.40 5.14 0.10 0.14 par:pas; +embellir embellir ver 3.40 5.14 1.06 1.55 inf; +embellira embellir ver 3.40 5.14 0.14 0.00 ind:fut:3s; +embellirai embellir ver 3.40 5.14 0.01 0.00 ind:fut:1s; +embellirait embellir ver 3.40 5.14 0.02 0.14 cnd:pre:3s; +embellis embellir ver m p 3.40 5.14 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +embellissaient embellir ver 3.40 5.14 0.10 0.20 ind:imp:3p; +embellissais embellir ver 3.40 5.14 0.00 0.07 ind:imp:1s; +embellissait embellir ver 3.40 5.14 0.01 0.68 ind:imp:3s; +embellissant embellir ver 3.40 5.14 0.00 0.20 par:pre; +embellissement embellissement nom m s 0.07 0.41 0.06 0.34 +embellissements embellissement nom m p 0.07 0.41 0.01 0.07 +embellissent embellir ver 3.40 5.14 0.06 0.14 ind:pre:3p; +embellissez embellir ver 3.40 5.14 0.14 0.00 imp:pre:2p;ind:pre:2p; +embellissons embellir ver 3.40 5.14 0.02 0.00 imp:pre:1p;ind:pre:1p; +embellit embellir ver 3.40 5.14 1.28 0.81 ind:pre:3s;ind:pas:3s; +emberlificotaient emberlificoter ver 0.01 0.47 0.00 0.07 ind:imp:3p; +emberlificotais emberlificoter ver 0.01 0.47 0.00 0.07 ind:imp:1s; +emberlificote emberlificoter ver 0.01 0.47 0.00 0.07 ind:pre:3s; +emberlificoter emberlificoter ver 0.01 0.47 0.00 0.14 inf; +emberlificoté emberlificoté adj m s 0.11 0.07 0.10 0.00 +emberlificotée emberlificoter ver f s 0.01 0.47 0.00 0.07 par:pas; +emberlificotées emberlificoter ver f p 0.01 0.47 0.00 0.07 par:pas; +emberlificotés emberlificoté adj m p 0.11 0.07 0.01 0.07 +emberlucoquer emberlucoquer ver 0.00 0.07 0.00 0.07 inf; +embijoutée embijouté adj f s 0.00 0.07 0.00 0.07 +emblavages emblavage nom m p 0.00 0.07 0.00 0.07 +emblaver emblaver ver 0.00 0.20 0.00 0.07 inf; +emblavé emblaver ver m s 0.00 0.20 0.00 0.07 par:pas; +emblavée emblaver ver f s 0.00 0.20 0.00 0.07 par:pas; +emblavure emblavure nom f s 0.00 0.27 0.00 0.14 +emblavures emblavure nom f p 0.00 0.27 0.00 0.14 +emblème emblème nom m s 1.14 4.32 0.81 2.97 +emblèmes emblème nom m p 1.14 4.32 0.33 1.35 +emblématique emblématique adj s 0.38 0.68 0.36 0.41 +emblématiques emblématique adj m p 0.38 0.68 0.01 0.27 +emboîta emboîter ver 0.98 6.08 0.00 0.41 ind:pas:3s; +emboîtables emboîtable adj m p 0.00 0.07 0.00 0.07 +emboîtage emboîtage nom m s 0.00 0.20 0.00 0.07 +emboîtages emboîtage nom m p 0.00 0.20 0.00 0.14 +emboîtai emboîter ver 0.98 6.08 0.00 0.14 ind:pas:1s; +emboîtaient emboîter ver 0.98 6.08 0.01 0.54 ind:imp:3p; +emboîtais emboîter ver 0.98 6.08 0.00 0.20 ind:imp:1s; +emboîtait emboîter ver 0.98 6.08 0.10 0.47 ind:imp:3s; +emboîtant emboîter ver 0.98 6.08 0.10 0.61 par:pre; +emboîtas emboîter ver 0.98 6.08 0.00 0.07 ind:pas:2s; +emboîte emboîter ver 0.98 6.08 0.08 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emboîtement emboîtement nom m s 0.00 0.07 0.00 0.07 +emboîtent emboîter ver 0.98 6.08 0.24 0.61 ind:pre:3p; +emboîter emboîter ver 0.98 6.08 0.29 0.61 inf; +emboîterai emboîter ver 0.98 6.08 0.01 0.00 ind:fut:1s; +emboîtions emboîter ver 0.98 6.08 0.00 0.07 ind:imp:1p; +emboîtâmes emboîter ver 0.98 6.08 0.00 0.07 ind:pas:1p; +emboîtons emboîter ver 0.98 6.08 0.01 0.07 ind:pre:1p; +emboîtèrent emboîter ver 0.98 6.08 0.00 0.14 ind:pas:3p; +emboîté emboîter ver m s 0.98 6.08 0.13 0.74 par:pas; +emboîtée emboîter ver f s 0.98 6.08 0.00 0.07 par:pas; +emboîtées emboîter ver f p 0.98 6.08 0.01 0.47 par:pas; +emboîtures emboîture nom f p 0.00 0.07 0.00 0.07 +emboîtés emboîter ver m p 0.98 6.08 0.00 0.34 par:pas; +embobeliner embobeliner ver 0.00 0.14 0.00 0.14 inf; +embobinant embobiner ver 2.37 1.35 0.01 0.00 par:pre; +embobine embobiner ver 2.37 1.35 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embobiner embobiner ver 2.37 1.35 1.29 0.95 inf; +embobinez embobiner ver 2.37 1.35 0.03 0.00 imp:pre:2p;ind:pre:2p; +embobiné embobiner ver m s 2.37 1.35 0.67 0.14 par:pas; +embobinée embobiner ver f s 2.37 1.35 0.10 0.14 par:pas; +embobinées embobiner ver f p 2.37 1.35 0.00 0.07 par:pas; +embobinés embobiner ver m p 2.37 1.35 0.03 0.00 par:pas; +embâcle embâcle nom m s 0.01 0.14 0.01 0.14 +embole embole nom m s 0.04 0.00 0.04 0.00 +embolie embolie nom f s 1.05 0.68 1.03 0.61 +embolies embolie nom f p 1.05 0.68 0.02 0.07 +embolique embolique adj s 0.01 0.00 0.01 0.00 +embonpoint embonpoint nom m s 0.18 1.96 0.18 1.96 +embosser embosser ver 0.00 0.34 0.00 0.07 inf; +embossé embosser ver m s 0.00 0.34 0.00 0.07 par:pas; +embossée embosser ver f s 0.00 0.34 0.00 0.14 par:pas; +embossés embosser ver m p 0.00 0.34 0.00 0.07 par:pas; +emboucanent emboucaner ver 0.00 0.07 0.00 0.07 ind:pre:3p; +emboucha emboucher ver 0.01 1.08 0.00 0.07 ind:pas:3s; +embouchant emboucher ver 0.01 1.08 0.00 0.20 par:pre; +embouche emboucher ver 0.01 1.08 0.00 0.27 ind:pre:3s; +emboucher emboucher ver 0.01 1.08 0.00 0.20 inf; +emboucherait emboucher ver 0.01 1.08 0.00 0.07 cnd:pre:3s; +embouchoir embouchoir nom m s 0.01 0.14 0.01 0.00 +embouchoirs embouchoir nom m p 0.01 0.14 0.00 0.14 +embouché embouché adj m s 0.45 0.74 0.09 0.41 +embouchée embouché adj f s 0.45 0.74 0.25 0.07 +embouchées embouché adj f p 0.45 0.74 0.00 0.07 +embouchure embouchure nom f s 0.69 3.99 0.68 3.78 +embouchures embouchure nom f p 0.69 3.99 0.01 0.20 +embouchés embouché adj m p 0.45 0.74 0.11 0.20 +embouquer embouquer ver 0.00 0.20 0.00 0.14 inf; +embouqué embouquer ver m s 0.00 0.20 0.00 0.07 par:pas; +embourbaient embourber ver 1.02 1.89 0.00 0.07 ind:imp:3p; +embourbait embourber ver 1.02 1.89 0.00 0.14 ind:imp:3s; +embourbe embourber ver 1.02 1.89 0.03 0.34 ind:pre:1s;ind:pre:3s; +embourbent embourber ver 1.02 1.89 0.00 0.07 ind:pre:3p; +embourber embourber ver 1.02 1.89 0.15 0.47 inf; +embourbé embourber ver m s 1.02 1.89 0.42 0.41 par:pas; +embourbée embourber ver f s 1.02 1.89 0.15 0.14 par:pas; +embourbées embourbé adj f p 0.06 0.34 0.01 0.00 +embourbés embourber ver m p 1.02 1.89 0.26 0.07 par:pas; +embourgeoise embourgeoiser ver 0.03 0.41 0.00 0.07 ind:pre:3s; +embourgeoisement embourgeoisement nom m s 0.01 0.34 0.01 0.34 +embourgeoiser embourgeoiser ver 0.03 0.41 0.02 0.14 inf; +embourgeoises embourgeoiser ver 0.03 0.41 0.00 0.20 ind:pre:2s; +embourgeoisé embourgeoisé adj m s 0.01 0.00 0.01 0.00 +embourgeoisés embourgeoisé nom m p 0.10 0.07 0.10 0.00 +embout embout nom m s 0.20 0.81 0.18 0.41 +embouteillage embouteillage nom m s 3.93 3.38 2.08 1.35 +embouteillages embouteillage nom m p 3.93 3.38 1.85 2.03 +embouteillait embouteiller ver 0.04 0.34 0.00 0.07 ind:imp:3s; +embouteille embouteiller ver 0.04 0.34 0.01 0.07 ind:pre:3s; +embouteiller embouteiller ver 0.04 0.34 0.00 0.20 inf; +embouteillé embouteiller ver m s 0.04 0.34 0.01 0.00 par:pas; +embouteillée embouteillé adj f s 0.01 0.20 0.01 0.07 +embouteillées embouteiller ver f p 0.04 0.34 0.01 0.00 par:pas; +embouti emboutir ver m s 1.55 0.95 1.01 0.20 par:pas; +emboutie emboutir ver f s 1.55 0.95 0.07 0.07 par:pas; +embouties emboutir ver f p 1.55 0.95 0.00 0.07 par:pas; +emboutir emboutir ver 1.55 0.95 0.28 0.41 inf; +emboutis emboutir ver m p 1.55 0.95 0.06 0.07 ind:pre:1s;par:pas; +emboutissant emboutir ver 1.55 0.95 0.00 0.07 par:pre; +emboutisseur emboutisseur nom m s 0.00 0.14 0.00 0.07 +emboutisseuse emboutisseur nom f s 0.00 0.14 0.00 0.07 +emboutit emboutir ver 1.55 0.95 0.12 0.07 ind:pre:3s; +embouts embout nom m p 0.20 0.81 0.03 0.41 +embranchant embrancher ver 0.00 0.07 0.00 0.07 par:pre; +embranchement embranchement nom m s 0.45 3.11 0.42 2.84 +embranchements embranchement nom m p 0.45 3.11 0.03 0.27 +embraquer embraquer ver 0.01 0.00 0.01 0.00 inf; +embrasa embraser ver 2.67 6.82 0.04 0.68 ind:pas:3s; +embrasaient embraser ver 2.67 6.82 0.01 0.34 ind:imp:3p; +embrasait embraser ver 2.67 6.82 0.02 1.22 ind:imp:3s; +embrasant embraser ver 2.67 6.82 0.03 0.14 par:pre; +embrase embraser ver 2.67 6.82 1.06 1.01 ind:pre:1s;ind:pre:3s; +embrasement embrasement nom m s 0.28 1.62 0.28 1.15 +embrasements embrasement nom m p 0.28 1.62 0.00 0.47 +embrasent embraser ver 2.67 6.82 0.04 0.47 ind:pre:3p; +embraser embraser ver 2.67 6.82 0.25 1.08 inf; +embrasera embraser ver 2.67 6.82 0.14 0.07 ind:fut:3s; +embraserait embraser ver 2.67 6.82 0.00 0.07 cnd:pre:3s; +embrasez embraser ver 2.67 6.82 0.03 0.00 imp:pre:2p; +embrassa embrasser ver 138.97 137.50 0.81 21.08 ind:pas:3s; +embrassade embrassade nom f s 0.61 1.89 0.16 0.61 +embrassades embrassade nom f p 0.61 1.89 0.45 1.28 +embrassai embrasser ver 138.97 137.50 0.14 3.04 ind:pas:1s; +embrassaient embrasser ver 138.97 137.50 0.57 2.36 ind:imp:3p; +embrassais embrasser ver 138.97 137.50 1.46 1.35 ind:imp:1s;ind:imp:2s; +embrassait embrasser ver 138.97 137.50 1.94 10.68 ind:imp:3s; +embrassant embrasser ver 138.97 137.50 1.41 5.07 par:pre; +embrasse embrasser ver 138.97 137.50 49.81 26.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +embrassement embrassement nom m s 0.02 0.95 0.01 0.41 +embrassements embrassement nom m p 0.02 0.95 0.01 0.54 +embrassent embrasser ver 138.97 137.50 2.88 2.64 ind:pre:3p; +embrasser embrasser ver 138.97 137.50 43.91 37.70 inf;;inf;;inf;; +embrassera embrasser ver 138.97 137.50 0.60 0.34 ind:fut:3s; +embrasserai embrasser ver 138.97 137.50 1.23 0.41 ind:fut:1s; +embrasseraient embrasser ver 138.97 137.50 0.00 0.14 cnd:pre:3p; +embrasserais embrasser ver 138.97 137.50 0.67 0.27 cnd:pre:1s;cnd:pre:2s; +embrasserait embrasser ver 138.97 137.50 0.17 0.81 cnd:pre:3s; +embrasseras embrasser ver 138.97 137.50 0.51 0.20 ind:fut:2s; +embrasserez embrasser ver 138.97 137.50 0.11 0.14 ind:fut:2p; +embrasseriez embrasser ver 138.97 137.50 0.04 0.00 cnd:pre:2p; +embrasseront embrasser ver 138.97 137.50 0.12 0.07 ind:fut:3p; +embrasses embrasser ver 138.97 137.50 5.21 0.61 ind:pre:2s;sub:pre:2s; +embrasseur embrasseur adj m s 0.05 0.00 0.05 0.00 +embrasseurs embrasseur nom m p 0.11 0.14 0.01 0.00 +embrasseuse embrasseur nom f s 0.11 0.14 0.06 0.00 +embrasseuses embrasseuse nom f p 0.01 0.00 0.01 0.00 +embrassez embrasser ver 138.97 137.50 6.08 1.15 imp:pre:2p;ind:pre:2p; +embrassiez embrasser ver 138.97 137.50 0.44 0.07 ind:imp:2p; +embrassions embrasser ver 138.97 137.50 0.05 0.68 ind:imp:1p; +embrassâmes embrasser ver 138.97 137.50 0.00 0.34 ind:pas:1p; +embrassons embrasser ver 138.97 137.50 1.82 0.61 imp:pre:1p;ind:pre:1p; +embrassât embrasser ver 138.97 137.50 0.00 0.41 sub:imp:3s; +embrassâtes embrasser ver 138.97 137.50 0.10 0.00 ind:pas:2p; +embrassèrent embrasser ver 138.97 137.50 0.01 2.50 ind:pas:3p; +embrassé embrasser ver m s 138.97 137.50 10.17 8.65 par:pas; +embrassée embrasser ver f s 138.97 137.50 6.01 6.76 par:pas; +embrassées embrasser ver f p 138.97 137.50 0.42 0.41 par:pas; +embrassés embrasser ver m p 138.97 137.50 2.28 2.36 par:pas; +embrasèrent embraser ver 2.67 6.82 0.00 0.34 ind:pas:3p; +embrasé embraser ver m s 2.67 6.82 0.35 1.01 par:pas; +embrasée embraser ver f s 2.67 6.82 0.36 0.34 par:pas; +embrasées embraser ver f p 2.67 6.82 0.01 0.00 par:pas; +embrasure embrasure nom f s 0.10 7.16 0.07 6.01 +embrasures embrasure nom f p 0.10 7.16 0.02 1.15 +embrasés embraser ver m p 2.67 6.82 0.34 0.07 par:pas; +embraya embrayer ver 0.72 2.64 0.00 0.68 ind:pas:3s; +embrayage embrayage nom m s 0.98 1.01 0.98 0.95 +embrayages embrayage nom m p 0.98 1.01 0.00 0.07 +embrayais embrayer ver 0.72 2.64 0.00 0.07 ind:imp:1s; +embrayait embrayer ver 0.72 2.64 0.01 0.34 ind:imp:3s; +embrayant embrayer ver 0.72 2.64 0.00 0.14 par:pre; +embraye embrayer ver 0.72 2.64 0.26 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embrayer embrayer ver 0.72 2.64 0.37 0.41 inf; +embrayes embrayer ver 0.72 2.64 0.02 0.07 ind:pre:2s; +embrayé embrayer ver m s 0.72 2.64 0.05 0.34 par:pas; +embrayée embrayer ver f s 0.72 2.64 0.01 0.00 par:pas; +embrigadé embrigader ver m s 0.02 0.20 0.01 0.14 par:pas; +embrigadée embrigader ver f s 0.02 0.20 0.01 0.07 par:pas; +embringua embringuer ver 0.72 1.15 0.00 0.07 ind:pas:3s; +embringuaient embringuer ver 0.72 1.15 0.00 0.07 ind:imp:3p; +embringuait embringuer ver 0.72 1.15 0.00 0.07 ind:imp:3s; +embringuer embringuer ver 0.72 1.15 0.15 0.34 inf; +embringues embringuer ver 0.72 1.15 0.03 0.00 ind:pre:2s; +embringué embringuer ver m s 0.72 1.15 0.40 0.54 par:pas; +embringuée embringuer ver f s 0.72 1.15 0.14 0.07 par:pas; +embrocation embrocation nom f s 0.01 0.41 0.01 0.34 +embrocations embrocation nom f p 0.01 0.41 0.00 0.07 +embrocha embrocher ver 0.71 2.30 0.00 0.14 ind:pas:3s; +embrochais embrocher ver 0.71 2.30 0.00 0.07 ind:imp:1s; +embrochant embrocher ver 0.71 2.30 0.01 0.07 par:pre; +embroche embrocher ver 0.71 2.30 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embrochent embrocher ver 0.71 2.30 0.01 0.07 ind:pre:3p; +embrocher embrocher ver 0.71 2.30 0.13 0.81 inf; +embrochera embrocher ver 0.71 2.30 0.00 0.07 ind:fut:3s; +embrochez embrocher ver 0.71 2.30 0.16 0.00 imp:pre:2p; +embrochèrent embrocher ver 0.71 2.30 0.00 0.14 ind:pas:3p; +embroché embrocher ver m s 0.71 2.30 0.08 0.27 par:pas; +embrochée embrocher ver f s 0.71 2.30 0.02 0.20 par:pas; +embrochées embrocher ver f p 0.71 2.30 0.00 0.07 par:pas; +embrochés embrocher ver m p 0.71 2.30 0.02 0.27 par:pas; +embrouilla embrouiller ver 8.15 9.46 0.00 0.47 ind:pas:3s; +embrouillage embrouillage nom m s 0.02 0.00 0.02 0.00 +embrouillai embrouiller ver 8.15 9.46 0.00 0.14 ind:pas:1s; +embrouillaient embrouiller ver 8.15 9.46 0.01 0.61 ind:imp:3p; +embrouillais embrouiller ver 8.15 9.46 0.03 0.34 ind:imp:1s;ind:imp:2s; +embrouillait embrouiller ver 8.15 9.46 0.03 1.55 ind:imp:3s; +embrouillamini embrouillamini nom m s 0.01 0.34 0.01 0.27 +embrouillaminis embrouillamini nom m p 0.01 0.34 0.00 0.07 +embrouillant embrouiller ver 8.15 9.46 0.15 0.61 par:pre; +embrouillasse embrouiller ver 8.15 9.46 0.00 0.07 sub:imp:1s; +embrouille embrouille nom f s 7.99 4.39 4.35 3.18 +embrouillement embrouillement nom m s 0.01 0.27 0.01 0.20 +embrouillements embrouillement nom m p 0.01 0.27 0.00 0.07 +embrouillent embrouiller ver 8.15 9.46 0.36 0.41 ind:pre:3p; +embrouiller embrouiller ver 8.15 9.46 1.92 1.22 inf; +embrouillerai embrouiller ver 8.15 9.46 0.01 0.00 ind:fut:1s; +embrouillerais embrouiller ver 8.15 9.46 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +embrouillerait embrouiller ver 8.15 9.46 0.02 0.07 cnd:pre:3s; +embrouilles embrouille nom f p 7.99 4.39 3.64 1.22 +embrouilleur embrouilleur nom m s 0.17 0.14 0.16 0.00 +embrouilleurs embrouilleur nom m p 0.17 0.14 0.02 0.07 +embrouilleuses embrouilleur nom f p 0.17 0.14 0.00 0.07 +embrouillez embrouiller ver 8.15 9.46 0.38 0.00 imp:pre:2p;ind:pre:2p; +embrouillât embrouiller ver 8.15 9.46 0.00 0.14 sub:imp:3s; +embrouillèrent embrouiller ver 8.15 9.46 0.00 0.14 ind:pas:3p; +embrouillé embrouiller ver m s 8.15 9.46 1.78 0.81 par:pas; +embrouillée embrouillé adj f s 0.71 1.76 0.23 0.47 +embrouillées embrouillé adj f p 0.71 1.76 0.04 0.54 +embrouillés embrouiller ver m p 8.15 9.46 0.04 0.14 par:pas; +embroussaille embroussailler ver 0.00 0.34 0.00 0.07 ind:pre:3s; +embroussailler embroussailler ver 0.00 0.34 0.00 0.07 inf; +embroussaillé embroussaillé adj m s 0.00 0.61 0.00 0.07 +embroussaillée embroussailler ver f s 0.00 0.34 0.00 0.07 par:pas; +embroussaillées embroussailler ver f p 0.00 0.34 0.00 0.07 par:pas; +embroussaillés embroussaillé adj m p 0.00 0.61 0.00 0.54 +embruiné embruiné adj m s 0.00 0.07 0.00 0.07 +embrumait embrumer ver 0.72 1.96 0.00 0.41 ind:imp:3s; +embrume embrumer ver 0.72 1.96 0.21 0.41 ind:pre:1s;ind:pre:3s; +embrument embrumer ver 0.72 1.96 0.11 0.14 ind:pre:3p; +embrumer embrumer ver 0.72 1.96 0.19 0.20 inf; +embrumé embrumer ver m s 0.72 1.96 0.20 0.34 par:pas; +embrumée embrumé adj f s 0.15 1.08 0.04 0.34 +embrumées embrumé adj f p 0.15 1.08 0.03 0.27 +embrumés embrumé adj m p 0.15 1.08 0.04 0.14 +embrun embrun nom m s 0.68 2.97 0.52 0.81 +embruns embrun nom m p 0.68 2.97 0.16 2.16 +embryologie embryologie nom f s 0.01 0.00 0.01 0.00 +embryologiste embryologiste nom s 0.01 0.00 0.01 0.00 +embryon embryon nom m s 0.96 3.72 0.60 2.64 +embryonnaire embryonnaire adj s 0.16 0.47 0.11 0.41 +embryonnaires embryonnaire adj p 0.16 0.47 0.05 0.07 +embryons embryon nom m p 0.96 3.72 0.36 1.08 +embu embu nom m s 0.00 0.14 0.00 0.07 +embua embuer ver 0.38 5.41 0.00 0.07 ind:pas:3s; +embuaient embuer ver 0.38 5.41 0.14 0.68 ind:imp:3p; +embuait embuer ver 0.38 5.41 0.00 0.68 ind:imp:3s; +embuant embuer ver 0.38 5.41 0.01 0.07 par:pre; +embue embuer ver 0.38 5.41 0.02 0.20 ind:pre:3s; +embuent embuer ver 0.38 5.41 0.04 0.47 ind:pre:3p; +embuer embuer ver 0.38 5.41 0.12 0.34 inf; +embéguinées embéguiner ver f p 0.00 0.07 0.00 0.07 par:pas; +embus embu nom m p 0.00 0.14 0.00 0.07 +embuscade embuscade nom f s 5.04 4.12 4.59 2.97 +embuscades embuscade nom f p 5.04 4.12 0.44 1.15 +embusqua embusquer ver 0.58 3.58 0.00 0.14 ind:pas:3s; +embusquaient embusquer ver 0.58 3.58 0.10 0.07 ind:imp:3p; +embusquait embusquer ver 0.58 3.58 0.00 0.14 ind:imp:3s; +embusque embusquer ver 0.58 3.58 0.10 0.20 ind:pre:3s; +embusquent embusquer ver 0.58 3.58 0.00 0.07 ind:pre:3p; +embusquer embusquer ver 0.58 3.58 0.03 0.41 inf; +embusqué embusqué adj m s 0.46 1.08 0.36 0.54 +embusquée embusquer ver f s 0.58 3.58 0.01 0.34 par:pas; +embusquées embusquer ver f p 0.58 3.58 0.00 0.27 par:pas; +embusqués embusqué nom m p 0.58 0.54 0.28 0.27 +embêtaient embêter ver 34.02 15.61 0.30 0.27 ind:imp:3p; +embêtais embêter ver 34.02 15.61 0.42 0.27 ind:imp:1s;ind:imp:2s; +embêtait embêter ver 34.02 15.61 0.82 0.95 ind:imp:3s; +embêtant embêtant adj m s 2.92 3.51 2.41 2.97 +embêtante embêtant adj f s 2.92 3.51 0.16 0.27 +embêtantes embêtant adj f p 2.92 3.51 0.01 0.07 +embêtants embêtant adj m p 2.92 3.51 0.34 0.20 +embête embêter ver 34.02 15.61 13.21 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embêtement embêtement nom m s 0.69 1.08 0.16 0.07 +embêtements embêtement nom m p 0.69 1.08 0.53 1.01 +embêtent embêter ver 34.02 15.61 1.10 0.81 ind:pre:3p; +embêter embêter ver 34.02 15.61 7.66 3.58 inf; +embêtera embêter ver 34.02 15.61 1.01 0.34 ind:fut:3s; +embêterai embêter ver 34.02 15.61 1.08 0.14 ind:fut:1s; +embêteraient embêter ver 34.02 15.61 0.08 0.07 cnd:pre:3p; +embêterais embêter ver 34.02 15.61 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +embêterait embêter ver 34.02 15.61 1.92 0.27 cnd:pre:3s; +embêtes embêter ver 34.02 15.61 1.71 0.74 ind:pre:2s; +embêtez embêter ver 34.02 15.61 1.39 0.20 imp:pre:2p;ind:pre:2p; +embuèrent embuer ver 0.38 5.41 0.00 0.27 ind:pas:3p; +embêté embêter ver m s 34.02 15.61 2.29 1.69 par:pas; +embêtée embêter ver f s 34.02 15.61 0.65 0.54 par:pas; +embêtées embêter ver f p 34.02 15.61 0.04 0.07 par:pas; +embêtés embêté adj m p 1.39 2.16 0.15 0.14 +embué embué adj m s 0.27 1.76 0.17 0.27 +embuée embué adj f s 0.27 1.76 0.03 0.54 +embuées embué adj f p 0.27 1.76 0.04 0.41 +embués embuer ver m p 0.38 5.41 0.02 1.01 par:pas; +emergency emergency nom f s 0.25 0.00 0.25 0.00 +emmagasinaient emmagasiner ver 0.58 1.82 0.00 0.07 ind:imp:3p; +emmagasinais emmagasiner ver 0.58 1.82 0.00 0.07 ind:imp:1s; +emmagasinait emmagasiner ver 0.58 1.82 0.00 0.07 ind:imp:3s; +emmagasine emmagasiner ver 0.58 1.82 0.11 0.27 ind:pre:1s;ind:pre:3s; +emmagasinent emmagasiner ver 0.58 1.82 0.15 0.20 ind:pre:3p; +emmagasiner emmagasiner ver 0.58 1.82 0.26 0.47 inf; +emmagasiné emmagasiner ver m s 0.58 1.82 0.04 0.27 par:pas; +emmagasinée emmagasiner ver f s 0.58 1.82 0.02 0.14 par:pas; +emmagasinées emmagasiner ver f p 0.58 1.82 0.00 0.14 par:pas; +emmagasinés emmagasiné adj m p 0.10 0.20 0.10 0.00 +emmaillota emmailloter ver 0.17 1.82 0.14 0.07 ind:pas:3s; +emmaillotaient emmailloter ver 0.17 1.82 0.00 0.07 ind:imp:3p; +emmaillotement emmaillotement nom m s 0.00 0.07 0.00 0.07 +emmailloter emmailloter ver 0.17 1.82 0.00 0.27 inf; +emmailloté emmailloter ver m s 0.17 1.82 0.02 0.61 par:pas; +emmaillotée emmailloter ver f s 0.17 1.82 0.01 0.47 par:pas; +emmaillotées emmailloter ver f p 0.17 1.82 0.00 0.20 par:pas; +emmaillotés emmailloter ver m p 0.17 1.82 0.00 0.14 par:pas; +emmanchage emmanchage nom m s 0.00 0.07 0.00 0.07 +emmanchant emmancher ver 0.19 1.76 0.00 0.07 par:pre; +emmanche emmancher ver 0.19 1.76 0.00 0.20 ind:pre:3s; +emmanchent emmancher ver 0.19 1.76 0.00 0.14 ind:pre:3p; +emmancher emmancher ver 0.19 1.76 0.01 0.20 inf; +emmanché emmancher ver m s 0.19 1.76 0.18 0.41 par:pas; +emmanchée emmancher ver f s 0.19 1.76 0.00 0.20 par:pas; +emmanchées emmancher ver f p 0.19 1.76 0.00 0.07 par:pas; +emmanchure emmanchure nom f s 0.00 0.74 0.00 0.34 +emmanchures emmanchure nom f p 0.00 0.74 0.00 0.41 +emmanchés emmancher ver m p 0.19 1.76 0.00 0.47 par:pas; +emmena emmener ver 272.70 105.47 0.89 9.73 ind:pas:3s; +emmenai emmener ver 272.70 105.47 0.10 1.42 ind:pas:1s; +emmenaient emmener ver 272.70 105.47 0.58 1.28 ind:imp:3p; +emmenais emmener ver 272.70 105.47 1.42 1.55 ind:imp:1s;ind:imp:2s; +emmenait emmener ver 272.70 105.47 3.38 10.07 ind:imp:3s; +emmenant emmener ver 272.70 105.47 0.85 1.69 par:pre; +emmener emmener ver 272.70 105.47 70.33 26.96 inf;; +emmenez emmener ver 272.70 105.47 42.79 2.77 imp:pre:2p;ind:pre:2p; +emmeniez emmener ver 272.70 105.47 0.44 0.14 ind:imp:2p;sub:pre:2p; +emmenions emmener ver 272.70 105.47 0.14 0.20 ind:imp:1p; +emmenons emmener ver 272.70 105.47 4.00 0.47 imp:pre:1p;ind:pre:1p; +emmenât emmener ver 272.70 105.47 0.00 0.34 sub:imp:3s; +emmenotté emmenotter ver m s 0.00 0.14 0.00 0.14 par:pas; +emmental emmental nom m s 0.01 0.00 0.01 0.00 +emmenthal emmenthal nom m s 0.15 0.14 0.15 0.14 +emmenèrent emmener ver 272.70 105.47 0.79 1.62 ind:pas:3p; +emmené emmener ver m s 272.70 105.47 22.85 10.95 par:pas; +emmenée emmener ver f s 272.70 105.47 11.83 6.15 par:pas; +emmenées emmener ver f p 272.70 105.47 0.90 0.20 par:pas; +emmenés emmener ver m p 272.70 105.47 3.77 2.43 par:pas; +emmerda emmerder ver 52.18 27.09 0.00 0.07 ind:pas:3s; +emmerdaient emmerder ver 52.18 27.09 0.05 0.47 ind:imp:3p; +emmerdais emmerder ver 52.18 27.09 0.20 0.27 ind:imp:1s;ind:imp:2s; +emmerdait emmerder ver 52.18 27.09 0.51 1.62 ind:imp:3s; +emmerdant emmerdant adj m s 1.92 1.76 1.04 1.22 +emmerdante emmerdant adj f s 1.92 1.76 0.35 0.20 +emmerdantes emmerdant adj f p 1.92 1.76 0.16 0.07 +emmerdants emmerdant adj m p 1.92 1.76 0.36 0.27 +emmerdatoires emmerdatoire adj p 0.00 0.07 0.00 0.07 +emmerde emmerder ver 52.18 27.09 33.90 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +emmerdement emmerdement nom m s 0.84 4.66 0.08 0.88 +emmerdements emmerdement nom m p 0.84 4.66 0.77 3.78 +emmerdent emmerder ver 52.18 27.09 1.50 1.15 ind:pre:3p; +emmerder emmerder ver 52.18 27.09 8.34 6.76 inf; +emmerdera emmerder ver 52.18 27.09 0.06 0.14 ind:fut:3s; +emmerderai emmerder ver 52.18 27.09 0.14 0.07 ind:fut:1s; +emmerderaient emmerder ver 52.18 27.09 0.00 0.07 cnd:pre:3p; +emmerderais emmerder ver 52.18 27.09 0.03 0.07 cnd:pre:1s; +emmerderait emmerder ver 52.18 27.09 0.20 0.20 cnd:pre:3s; +emmerderez emmerder ver 52.18 27.09 0.11 0.07 ind:fut:2p; +emmerderont emmerder ver 52.18 27.09 0.02 0.07 ind:fut:3p; +emmerdes emmerde nom f p 6.15 3.51 4.90 2.91 +emmerdeur emmerdeur nom m s 4.89 3.04 2.69 1.15 +emmerdeurs emmerdeur nom m p 4.89 3.04 0.73 0.88 +emmerdeuse emmerdeur nom f s 4.89 3.04 1.47 0.81 +emmerdeuses emmerdeuse nom f p 0.07 0.00 0.07 0.00 +emmerdez emmerder ver 52.18 27.09 0.81 0.68 imp:pre:2p;ind:pre:2p; +emmerdons emmerder ver 52.18 27.09 0.00 0.07 ind:pre:1p; +emmerdé emmerder ver m s 52.18 27.09 1.47 2.43 par:pas; +emmerdée emmerder ver f s 52.18 27.09 0.22 0.34 par:pas; +emmerdés emmerder ver m p 52.18 27.09 0.32 0.68 par:pas; +emmi emmi adv 0.03 0.00 0.03 0.00 +emmitoufla emmitoufler ver 0.13 4.12 0.00 0.14 ind:pas:3s; +emmitouflai emmitoufler ver 0.13 4.12 0.00 0.07 ind:pas:1s; +emmitouflait emmitoufler ver 0.13 4.12 0.00 0.41 ind:imp:3s; +emmitouflant emmitoufler ver 0.13 4.12 0.00 0.07 par:pre; +emmitoufle emmitoufler ver 0.13 4.12 0.03 0.27 ind:pre:3s; +emmitoufler emmitoufler ver 0.13 4.12 0.03 0.07 inf; +emmitouflez emmitoufler ver 0.13 4.12 0.01 0.00 imp:pre:2p; +emmitouflé emmitoufler ver m s 0.13 4.12 0.02 0.88 par:pas; +emmitouflée emmitoufler ver f s 0.13 4.12 0.04 1.08 par:pas; +emmitouflées emmitoufler ver f p 0.13 4.12 0.00 0.47 par:pas; +emmitouflés emmitouflé adj m p 0.15 1.15 0.11 0.47 +emmouflé emmoufler ver m s 0.00 0.07 0.00 0.07 par:pas; +emmouscaillements emmouscaillement nom m p 0.00 0.07 0.00 0.07 +emmène emmener ver 272.70 105.47 77.85 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emmènent emmener ver 272.70 105.47 3.78 1.42 ind:pre:3p;sub:pre:3p; +emmènera emmener ver 272.70 105.47 4.44 0.95 ind:fut:3s; +emmènerai emmener ver 272.70 105.47 4.85 2.64 ind:fut:1s; +emmèneraient emmener ver 272.70 105.47 0.19 0.27 cnd:pre:3p; +emmènerais emmener ver 272.70 105.47 1.47 0.34 cnd:pre:1s;cnd:pre:2s; +emmènerait emmener ver 272.70 105.47 0.90 1.55 cnd:pre:3s; +emmèneras emmener ver 272.70 105.47 1.22 0.61 ind:fut:2s; +emmènerez emmener ver 272.70 105.47 0.76 0.41 ind:fut:2p; +emmèneriez emmener ver 272.70 105.47 0.15 0.14 cnd:pre:2p; +emmènerions emmener ver 272.70 105.47 0.11 0.00 cnd:pre:1p; +emmènerons emmener ver 272.70 105.47 0.58 0.07 ind:fut:1p; +emmèneront emmener ver 272.70 105.47 1.26 0.34 ind:fut:3p; +emmènes emmener ver 272.70 105.47 10.10 1.55 ind:pre:1p;ind:pre:2s;sub:pre:2s; +emmêla emmêler ver 1.31 5.20 0.00 0.14 ind:pas:3s; +emmêlai emmêler ver 1.31 5.20 0.00 0.07 ind:pas:1s; +emmêlaient emmêler ver 1.31 5.20 0.03 0.41 ind:imp:3p; +emmêlait emmêler ver 1.31 5.20 0.04 0.34 ind:imp:3s; +emmêlant emmêler ver 1.31 5.20 0.00 0.54 par:pre; +emmêle emmêler ver 1.31 5.20 0.09 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emmêlement emmêlement nom m s 0.00 0.47 0.00 0.34 +emmêlements emmêlement nom m p 0.00 0.47 0.00 0.14 +emmêlent emmêler ver 1.31 5.20 0.43 0.27 ind:pre:3p; +emmêler emmêler ver 1.31 5.20 0.20 0.41 inf; +emmêlera emmêler ver 1.31 5.20 0.00 0.07 ind:fut:3s; +emmêleront emmêler ver 1.31 5.20 0.00 0.07 ind:fut:3p; +emmêles emmêler ver 1.31 5.20 0.12 0.07 ind:pre:2s; +emmêlèrent emmêler ver 1.31 5.20 0.00 0.14 ind:pas:3p; +emmêlé emmêler ver m s 1.31 5.20 0.28 0.27 par:pas; +emmêlée emmêler ver f s 1.31 5.20 0.03 0.41 par:pas; +emmêlées emmêler ver f p 1.31 5.20 0.02 0.41 par:pas; +emmêlés emmêlé adj m p 0.27 2.84 0.07 1.96 +emménage emménager ver 13.70 2.36 2.10 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emménagea emménager ver 13.70 2.36 0.04 0.20 ind:pas:3s; +emménageaient emménager ver 13.70 2.36 0.02 0.00 ind:imp:3p; +emménageais emménager ver 13.70 2.36 0.04 0.00 ind:imp:1s;ind:imp:2s; +emménageait emménager ver 13.70 2.36 0.07 0.07 ind:imp:3s; +emménageant emménager ver 13.70 2.36 0.06 0.00 par:pre; +emménagement emménagement nom m s 0.25 0.81 0.25 0.81 +emménagent emménager ver 13.70 2.36 0.20 0.07 ind:pre:3p; +emménageons emménager ver 13.70 2.36 0.17 0.14 imp:pre:1p;ind:pre:1p; +emménager emménager ver 13.70 2.36 5.46 1.15 inf; +emménagera emménager ver 13.70 2.36 0.13 0.00 ind:fut:3s; +emménagerai emménager ver 13.70 2.36 0.04 0.00 ind:fut:1s; +emménagerais emménager ver 13.70 2.36 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +emménagerait emménager ver 13.70 2.36 0.15 0.07 cnd:pre:3s; +emménagerez emménager ver 13.70 2.36 0.02 0.00 ind:fut:2p; +emménagerons emménager ver 13.70 2.36 0.03 0.00 ind:fut:1p; +emménages emménager ver 13.70 2.36 0.77 0.00 ind:pre:2s; +emménagez emménager ver 13.70 2.36 0.45 0.00 imp:pre:2p;ind:pre:2p; +emménagiez emménager ver 13.70 2.36 0.02 0.00 ind:imp:2p; +emménagions emménager ver 13.70 2.36 0.01 0.14 ind:imp:1p; +emménagèrent emménager ver 13.70 2.36 0.04 0.07 ind:pas:3p; +emménagé emménager ver m s 13.70 2.36 3.85 0.27 par:pas; +emmura emmurer ver 0.61 1.42 0.00 0.07 ind:pas:3s; +emmurait emmurer ver 0.61 1.42 0.01 0.07 ind:imp:3s; +emmure emmurer ver 0.61 1.42 0.03 0.14 ind:pre:3s; +emmurement emmurement nom m s 0.01 0.00 0.01 0.00 +emmurer emmurer ver 0.61 1.42 0.27 0.34 inf; +emmuré emmurer ver m s 0.61 1.42 0.13 0.34 par:pas; +emmurée emmuré adj f s 0.04 0.81 0.04 0.41 +emmurées emmurer ver f p 0.61 1.42 0.10 0.00 par:pas; +emmurés emmurer ver m p 0.61 1.42 0.04 0.20 par:pas; +empaffe empaffer ver 0.06 0.07 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empaffer empaffer ver 0.06 0.07 0.02 0.07 inf; +empaffé empaffé nom m s 0.50 0.20 0.38 0.14 +empaffés empaffé nom m p 0.50 0.20 0.12 0.07 +empaillant empailler ver 1.03 0.27 0.00 0.07 par:pre; +empailler empailler ver 1.03 0.27 0.45 0.07 inf; +empailleur empailleur nom m s 0.04 0.20 0.03 0.20 +empailleurs empailleur nom m p 0.04 0.20 0.01 0.00 +empaillez empailler ver 1.03 0.27 0.01 0.00 imp:pre:2p; +empaillé empaillé adj m s 0.67 2.09 0.46 0.74 +empaillée empaillé adj f s 0.67 2.09 0.07 0.27 +empaillées empaillé adj f p 0.67 2.09 0.04 0.07 +empaillés empailler ver m p 1.03 0.27 0.34 0.00 par:pas; +empalait empaler ver 1.34 1.76 0.13 0.00 ind:imp:3s; +empalant empaler ver 1.34 1.76 0.04 0.00 par:pre; +empale empaler ver 1.34 1.76 0.10 0.41 ind:pre:1s;ind:pre:3s; +empalement empalement nom m s 0.02 0.00 0.02 0.00 +empaler empaler ver 1.34 1.76 0.39 0.41 inf; +empalerais empaler ver 1.34 1.76 0.10 0.00 cnd:pre:1s; +empaleront empaler ver 1.34 1.76 0.00 0.07 ind:fut:3p; +empalmait empalmer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +empalme empalmer ver 0.00 0.20 0.00 0.07 ind:pre:3s; +empalmé empalmer ver m s 0.00 0.20 0.00 0.07 par:pas; +empalé empalé adj m s 0.41 0.20 0.30 0.07 +empalée empaler ver f s 1.34 1.76 0.25 0.14 par:pas; +empalées empaler ver f p 1.34 1.76 0.00 0.14 par:pas; +empalés empaler ver m p 1.34 1.76 0.10 0.14 par:pas; +empan empan nom m s 0.01 0.07 0.01 0.07 +empanaché empanaché adj m s 0.02 0.74 0.01 0.20 +empanachée empanaché adj f s 0.02 0.74 0.00 0.14 +empanachées empanaché adj f p 0.02 0.74 0.01 0.07 +empanachés empanaché adj m p 0.02 0.74 0.00 0.34 +empanner empanner ver 0.00 0.07 0.00 0.07 inf; +empapaoutent empapaouter ver 0.23 0.27 0.00 0.07 ind:pre:3p; +empapaouter empapaouter ver 0.23 0.27 0.12 0.00 inf; +empapaouté empapaouter ver m s 0.23 0.27 0.10 0.07 par:pas; +empapaoutés empapaouter ver m p 0.23 0.27 0.01 0.14 par:pas; +empaqueta empaqueter ver 0.35 2.36 0.00 0.20 ind:pas:3s; +empaquetage empaquetage nom m s 0.14 0.20 0.14 0.20 +empaqueter empaqueter ver 0.35 2.36 0.14 0.54 inf; +empaqueteur empaqueteur nom m s 0.01 0.00 0.01 0.00 +empaquette empaqueter ver 0.35 2.36 0.03 0.20 imp:pre:2s;ind:pre:3s; +empaquettent empaqueter ver 0.35 2.36 0.00 0.07 ind:pre:3p; +empaquettes empaqueter ver 0.35 2.36 0.00 0.07 ind:pre:2s; +empaquetèrent empaqueter ver 0.35 2.36 0.00 0.07 ind:pas:3p; +empaqueté empaqueter ver m s 0.35 2.36 0.13 0.27 par:pas; +empaquetée empaqueter ver f s 0.35 2.36 0.03 0.41 par:pas; +empaquetées empaqueté adj f p 0.13 0.68 0.11 0.14 +empaquetés empaqueter ver m p 0.35 2.36 0.01 0.07 par:pas; +empara emparer ver 12.80 39.26 0.60 6.89 ind:pas:3s; +emparadisé emparadiser ver m s 0.00 0.07 0.00 0.07 par:pas; +emparai emparer ver 12.80 39.26 0.00 0.47 ind:pas:1s; +emparaient emparer ver 12.80 39.26 0.04 0.95 ind:imp:3p; +emparais emparer ver 12.80 39.26 0.01 0.14 ind:imp:1s; +emparait emparer ver 12.80 39.26 0.20 5.41 ind:imp:3s; +emparant emparer ver 12.80 39.26 0.22 1.62 par:pre; +emparassent emparer ver 12.80 39.26 0.00 0.07 sub:imp:3p; +empare emparer ver 12.80 39.26 2.85 6.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +emparent emparer ver 12.80 39.26 0.80 1.08 ind:pre:3p; +emparer emparer ver 12.80 39.26 3.92 7.16 inf; +emparera emparer ver 12.80 39.26 0.14 0.20 ind:fut:3s; +emparerai emparer ver 12.80 39.26 0.03 0.00 ind:fut:1s; +empareraient emparer ver 12.80 39.26 0.01 0.34 cnd:pre:3p; +emparerais emparer ver 12.80 39.26 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +emparerait emparer ver 12.80 39.26 0.01 0.07 cnd:pre:3s; +empareront emparer ver 12.80 39.26 0.07 0.00 ind:fut:3p; +emparez emparer ver 12.80 39.26 0.91 0.00 imp:pre:2p;ind:pre:2p; +emparons emparer ver 12.80 39.26 0.16 0.00 imp:pre:1p;ind:pre:1p; +emparât emparer ver 12.80 39.26 0.00 0.27 sub:imp:3s; +emparèrent emparer ver 12.80 39.26 0.16 0.54 ind:pas:3p; +emparé emparer ver m s 12.80 39.26 1.53 3.72 par:pas; +emparée emparer ver f s 12.80 39.26 0.40 2.91 par:pas; +emparées emparer ver f p 12.80 39.26 0.11 0.20 par:pas; +emparés emparer ver m p 12.80 39.26 0.56 1.01 par:pas; +empathie empathie nom f s 0.63 0.00 0.63 0.00 +empathique empathique adj s 0.26 0.07 0.23 0.07 +empathiques empathique adj f p 0.26 0.07 0.03 0.00 +empattement empattement nom m s 0.09 0.20 0.09 0.14 +empattements empattement nom m p 0.09 0.20 0.00 0.07 +empaume empaumer ver 0.00 0.20 0.00 0.07 ind:pre:3s; +empaumer empaumer ver 0.00 0.20 0.00 0.14 inf; +empaumure empaumure nom f s 0.10 0.20 0.10 0.14 +empaumures empaumure nom f p 0.10 0.20 0.00 0.07 +empeigne empeigne nom f s 0.01 0.54 0.01 0.54 +empeignés empeigner ver m p 0.00 0.07 0.00 0.07 par:pas; +empennage empennage nom m s 0.04 0.20 0.04 0.20 +empennait empenner ver 0.00 0.34 0.00 0.07 ind:imp:3s; +empenne empenne nom f s 0.01 0.00 0.01 0.00 +empennée empenner ver f s 0.00 0.34 0.00 0.07 par:pas; +empennées empenner ver f p 0.00 0.34 0.00 0.14 par:pas; +empennés empenner ver m p 0.00 0.34 0.00 0.07 par:pas; +empereur empereur nom m s 25.55 38.45 24.45 35.88 +empereurs empereur nom m p 25.55 38.45 1.10 2.57 +emperlait emperler ver 0.00 0.41 0.00 0.07 ind:imp:3s; +emperlant emperler ver 0.00 0.41 0.00 0.07 par:pre; +emperler emperler ver 0.00 0.41 0.00 0.07 inf; +emperlousées emperlousé adj f p 0.00 0.14 0.00 0.14 +emperlé emperler ver m s 0.00 0.41 0.00 0.07 par:pas; +emperlées emperlé adj f p 0.00 0.27 0.00 0.14 +emperlés emperler ver m p 0.00 0.41 0.00 0.14 par:pas; +emperruqués emperruqué adj m p 0.00 0.07 0.00 0.07 +empesage empesage nom m s 0.01 0.07 0.01 0.07 +empesant empeser ver 0.02 1.15 0.00 0.07 par:pre; +empesta empester ver 3.28 3.31 0.00 0.14 ind:pas:3s; +empestaient empester ver 3.28 3.31 0.02 0.27 ind:imp:3p; +empestais empester ver 3.28 3.31 0.01 0.07 ind:imp:1s; +empestait empester ver 3.28 3.31 0.27 0.81 ind:imp:3s; +empestant empester ver 3.28 3.31 0.13 0.20 par:pre; +empeste empester ver 3.28 3.31 1.87 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empestent empester ver 3.28 3.31 0.13 0.14 ind:pre:3p; +empester empester ver 3.28 3.31 0.39 0.27 inf; +empestes empester ver 3.28 3.31 0.35 0.00 ind:pre:2s; +empestez empester ver 3.28 3.31 0.11 0.07 ind:pre:2p; +empesté empester ver m s 3.28 3.31 0.01 0.27 par:pas; +empestée empester ver f s 3.28 3.31 0.00 0.61 par:pas; +empestées empester ver f p 3.28 3.31 0.00 0.07 par:pas; +empesé empeser ver m s 0.02 1.15 0.01 0.34 par:pas; +empesée empeser ver f s 0.02 1.15 0.01 0.34 par:pas; +empesées empesé adj f p 0.00 1.96 0.00 0.41 +empesés empesé adj m p 0.00 1.96 0.00 0.20 +emphase emphase nom f s 0.22 5.27 0.22 5.20 +emphases emphase nom f p 0.22 5.27 0.00 0.07 +emphatique emphatique adj s 0.22 1.96 0.18 1.62 +emphatiquement emphatiquement adv 0.01 0.14 0.01 0.14 +emphatiques emphatique adj m p 0.22 1.96 0.04 0.34 +emphatise emphatiser ver 0.00 0.07 0.00 0.07 ind:pre:1s; +emphysème emphysème nom m s 0.31 0.41 0.30 0.34 +emphysèmes emphysème nom m p 0.31 0.41 0.01 0.07 +emphysémateuse emphysémateux adj f s 0.00 0.07 0.00 0.07 +empierrage empierrage nom m s 0.00 0.07 0.00 0.07 +empierrait empierrer ver 0.00 0.41 0.00 0.07 ind:imp:3s; +empierrement empierrement nom m s 0.00 0.34 0.00 0.34 +empierrer empierrer ver 0.00 0.41 0.00 0.07 inf; +empierré empierré adj m s 0.00 0.74 0.00 0.20 +empierrée empierré adj f s 0.00 0.74 0.00 0.20 +empierrées empierré adj f p 0.00 0.74 0.00 0.20 +empierrés empierré adj m p 0.00 0.74 0.00 0.14 +empiffra empiffrer ver 1.25 2.91 0.00 0.20 ind:pas:3s; +empiffraient empiffrer ver 1.25 2.91 0.01 0.07 ind:imp:3p; +empiffrais empiffrer ver 1.25 2.91 0.01 0.14 ind:imp:1s; +empiffrait empiffrer ver 1.25 2.91 0.04 0.41 ind:imp:3s; +empiffrant empiffrer ver 1.25 2.91 0.01 0.07 par:pre; +empiffre empiffrer ver 1.25 2.91 0.10 0.61 imp:pre:2s;ind:pre:3s; +empiffrent empiffrer ver 1.25 2.91 0.14 0.20 ind:pre:3p; +empiffrer empiffrer ver 1.25 2.91 0.47 1.22 inf; +empiffres empiffrer ver 1.25 2.91 0.03 0.00 ind:pre:2s; +empiffrez empiffrer ver 1.25 2.91 0.14 0.00 imp:pre:2p;ind:pre:2p; +empiffrée empiffrer ver f s 1.25 2.91 0.16 0.00 par:pas; +empiffrées empiffrer ver f p 1.25 2.91 0.14 0.00 par:pas; +empila empiler ver 1.78 15.81 0.00 0.74 ind:pas:3s; +empilage empilage nom m s 0.04 0.27 0.04 0.20 +empilages empilage nom m p 0.04 0.27 0.00 0.07 +empilaient empiler ver 1.78 15.81 0.03 2.77 ind:imp:3p; +empilais empiler ver 1.78 15.81 0.01 0.27 ind:imp:1s; +empilait empiler ver 1.78 15.81 0.03 1.35 ind:imp:3s; +empilant empiler ver 1.78 15.81 0.16 0.34 par:pre; +empile empiler ver 1.78 15.81 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empilement empilement nom m s 0.00 0.54 0.00 0.27 +empilements empilement nom m p 0.00 0.54 0.00 0.27 +empilent empiler ver 1.78 15.81 0.07 0.54 ind:pre:3p; +empiler empiler ver 1.78 15.81 0.25 1.35 ind:pre:2p;inf; +empilerai empiler ver 1.78 15.81 0.00 0.07 ind:fut:1s; +empilerions empiler ver 1.78 15.81 0.10 0.00 cnd:pre:1p; +empilez empiler ver 1.78 15.81 0.20 0.00 imp:pre:2p; +empilons empiler ver 1.78 15.81 0.00 0.07 ind:pre:1p; +empilèrent empiler ver 1.78 15.81 0.00 0.07 ind:pas:3p; +empilé empiler ver m s 1.78 15.81 0.13 0.68 par:pas; +empilée empiler ver f s 1.78 15.81 0.03 0.54 par:pas; +empilées empiler ver f p 1.78 15.81 0.09 2.57 par:pas; +empilés empiler ver m p 1.78 15.81 0.40 3.65 par:pas; +empira empirer ver 12.93 2.91 0.03 0.34 ind:pas:3s; +empirait empirer ver 12.93 2.91 0.19 0.47 ind:imp:3s; +empirant empirer ver 12.93 2.91 0.06 0.27 par:pre; +empire empire nom m s 19.47 63.51 19.02 60.74 +empirent empirer ver 12.93 2.91 0.39 0.00 ind:pre:3p; +empirer empirer ver 12.93 2.91 5.28 0.54 inf; +empirera empirer ver 12.93 2.91 0.26 0.00 ind:fut:3s; +empirerait empirer ver 12.93 2.91 0.03 0.07 cnd:pre:3s; +empireront empirer ver 12.93 2.91 0.04 0.00 ind:fut:3p; +empires empire nom m p 19.47 63.51 0.44 2.77 +empirez empirer ver 12.93 2.91 0.03 0.00 imp:pre:2p;ind:pre:2p; +empirique empirique adj s 0.30 1.01 0.22 0.54 +empiriquement empiriquement adv 0.00 0.07 0.00 0.07 +empiriques empirique adj p 0.30 1.01 0.09 0.47 +empirisme empirisme nom m s 0.02 0.27 0.02 0.20 +empirismes empirisme nom m p 0.02 0.27 0.00 0.07 +empirèrent empirer ver 12.93 2.91 0.01 0.07 ind:pas:3p; +empiré empirer ver m s 12.93 2.91 2.12 0.34 par:pas; +empirée empirer ver f s 12.93 2.91 0.03 0.07 par:pas; +empiècement empiècement nom m s 0.00 0.41 0.00 0.20 +empiècements empiècement nom m p 0.00 0.41 0.00 0.20 +empiète empiéter ver 1.17 1.89 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empiètements empiètement nom m p 0.00 0.34 0.00 0.34 +empiètent empiéter ver 1.17 1.89 0.26 0.14 ind:pre:3p;sub:pre:3p; +empiètes empiéter ver 1.17 1.89 0.06 0.00 ind:pre:2s; +empiétaient empiéter ver 1.17 1.89 0.02 0.27 ind:imp:3p; +empiétais empiéter ver 1.17 1.89 0.00 0.07 ind:imp:1s; +empiétait empiéter ver 1.17 1.89 0.01 0.20 ind:imp:3s; +empiétant empiéter ver 1.17 1.89 0.01 0.47 par:pre; +empiétement empiétement nom m s 0.00 1.96 0.00 0.61 +empiétements empiétement nom m p 0.00 1.96 0.00 1.35 +empiéter empiéter ver 1.17 1.89 0.20 0.47 inf; +empiétez empiéter ver 1.17 1.89 0.11 0.00 imp:pre:2p;ind:pre:2p; +empiété empiéter ver m s 1.17 1.89 0.22 0.07 par:pas; +emplît emplir ver 6.40 49.73 0.00 0.07 sub:imp:3s; +emplacement emplacement nom m s 6.90 12.70 6.00 10.95 +emplacements emplacement nom m p 6.90 12.70 0.90 1.76 +emplafonne emplafonner ver 0.01 0.61 0.01 0.07 ind:pre:1s;ind:pre:3s; +emplafonnent emplafonner ver 0.01 0.61 0.00 0.07 ind:pre:3p; +emplafonner emplafonner ver 0.01 0.61 0.00 0.27 inf; +emplafonné emplafonner ver m s 0.01 0.61 0.00 0.14 par:pas; +emplafonnée emplafonner ver f s 0.01 0.61 0.00 0.07 par:pas; +emplanture emplanture nom f s 0.00 0.14 0.00 0.14 +emplette emplette nom f s 0.57 2.57 0.03 0.88 +emplettes emplette nom f p 0.57 2.57 0.55 1.69 +empli emplir ver m s 6.40 49.73 1.28 5.47 par:pas; +emplie emplir ver f s 6.40 49.73 0.31 2.77 par:pas; +emplies emplir ver f p 6.40 49.73 0.04 1.42 par:pas; +emplir emplir ver 6.40 49.73 0.30 6.01 inf; +emplira emplir ver 6.40 49.73 0.16 0.14 ind:fut:3s; +empliraient emplir ver 6.40 49.73 0.01 0.00 cnd:pre:3p; +emplirait emplir ver 6.40 49.73 0.01 0.07 cnd:pre:3s; +emplirent emplir ver 6.40 49.73 0.01 0.61 ind:pas:3p; +emplis emplir ver m p 6.40 49.73 0.40 1.76 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +emplissaient emplir ver 6.40 49.73 0.14 3.51 ind:imp:3p; +emplissais emplir ver 6.40 49.73 0.00 0.27 ind:imp:1s; +emplissait emplir ver 6.40 49.73 0.53 10.95 ind:imp:3s; +emplissant emplir ver 6.40 49.73 0.03 2.09 par:pre; +emplissent emplir ver 6.40 49.73 0.59 1.42 ind:pre:3p; +emplissez emplir ver 6.40 49.73 0.19 0.00 imp:pre:2p;ind:pre:2p; +emplissons emplir ver 6.40 49.73 0.14 0.00 imp:pre:1p; +emplit emplir ver 6.40 49.73 2.25 13.18 ind:pre:3s;ind:pas:3s; +emploi emploi nom m s 30.94 29.19 25.96 26.42 +emploie employer ver 19.46 46.22 3.74 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emploient employer ver 19.46 46.22 0.64 2.09 ind:pre:3p; +emploiera employer ver 19.46 46.22 0.36 0.41 ind:fut:3s; +emploierai employer ver 19.46 46.22 0.27 0.34 ind:fut:1s; +emploieraient employer ver 19.46 46.22 0.02 0.20 cnd:pre:3p; +emploierais employer ver 19.46 46.22 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +emploierait employer ver 19.46 46.22 0.28 0.34 cnd:pre:3s; +emploierez employer ver 19.46 46.22 0.01 0.07 ind:fut:2p; +emploieriez employer ver 19.46 46.22 0.03 0.00 cnd:pre:2p; +emploierons employer ver 19.46 46.22 0.14 0.00 ind:fut:1p; +emploieront employer ver 19.46 46.22 0.11 0.07 ind:fut:3p; +emploies employer ver 19.46 46.22 0.44 0.54 ind:pre:2s; +emplois emploi nom m p 30.94 29.19 4.98 2.77 +emplâtrage emplâtrage nom m s 0.00 0.14 0.00 0.14 +emplâtrais emplâtrer ver 0.06 0.54 0.00 0.07 ind:imp:1s; +emplâtre emplâtre nom m s 0.15 1.35 0.12 0.95 +emplâtrer emplâtrer ver 0.06 0.54 0.04 0.34 inf; +emplâtres emplâtre nom m p 0.15 1.35 0.03 0.41 +emplâtré emplâtrer ver m s 0.06 0.54 0.02 0.14 par:pas; +employa employer ver 19.46 46.22 0.03 1.22 ind:pas:3s; +employai employer ver 19.46 46.22 0.01 0.27 ind:pas:1s; +employaient employer ver 19.46 46.22 0.11 2.09 ind:imp:3p; +employais employer ver 19.46 46.22 0.07 0.81 ind:imp:1s;ind:imp:2s; +employait employer ver 19.46 46.22 1.00 7.09 ind:imp:3s; +employant employer ver 19.46 46.22 0.41 2.16 par:pre; +employer employer ver 19.46 46.22 4.15 10.95 inf; +employeur employeur nom m s 4.01 2.70 2.70 1.69 +employeurs employeur nom m p 4.01 2.70 1.31 1.01 +employez employer ver 19.46 46.22 0.69 0.27 imp:pre:2p;ind:pre:2p; +employiez employer ver 19.46 46.22 0.04 0.00 ind:imp:2p; +employions employer ver 19.46 46.22 0.01 0.14 ind:imp:1p; +employâmes employer ver 19.46 46.22 0.00 0.07 ind:pas:1p; +employons employer ver 19.46 46.22 0.42 0.27 imp:pre:1p;ind:pre:1p; +employât employer ver 19.46 46.22 0.00 0.14 sub:imp:3s; +employèrent employer ver 19.46 46.22 0.14 0.20 ind:pas:3p; +employé employé nom m s 30.80 26.08 10.61 9.86 +employée employé nom f s 30.80 26.08 3.24 2.43 +employées employé nom f p 30.80 26.08 1.05 1.01 +employés employé nom m p 30.80 26.08 15.90 12.77 +empluma emplumer ver 0.02 0.34 0.00 0.07 ind:pas:3s; +emplume emplumer ver 0.02 0.34 0.00 0.07 ind:pre:3s; +emplumé emplumé adj m s 0.28 0.88 0.05 0.34 +emplumée emplumé adj f s 0.28 0.88 0.14 0.20 +emplumées emplumer ver f p 0.02 0.34 0.00 0.07 par:pas; +emplumés emplumé adj m p 0.28 0.88 0.10 0.34 +empocha empocher ver 2.92 4.46 0.14 1.08 ind:pas:3s; +empochai empocher ver 2.92 4.46 0.00 0.14 ind:pas:1s; +empochaient empocher ver 2.92 4.46 0.04 0.07 ind:imp:3p; +empochais empocher ver 2.92 4.46 0.01 0.14 ind:imp:1s; +empochait empocher ver 2.92 4.46 0.02 0.61 ind:imp:3s; +empochant empocher ver 2.92 4.46 0.01 0.34 par:pre; +empoche empocher ver 2.92 4.46 0.41 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empochent empocher ver 2.92 4.46 0.09 0.07 ind:pre:3p; +empocher empocher ver 2.92 4.46 1.28 0.88 inf; +empochera empocher ver 2.92 4.46 0.08 0.00 ind:fut:3s; +empocherais empocher ver 2.92 4.46 0.03 0.00 cnd:pre:1s; +empocheras empocher ver 2.92 4.46 0.02 0.00 ind:fut:2s; +empoches empocher ver 2.92 4.46 0.04 0.00 ind:pre:2s; +empochez empocher ver 2.92 4.46 0.03 0.00 imp:pre:2p;ind:pre:2p; +empochiez empocher ver 2.92 4.46 0.01 0.00 ind:imp:2p; +empoché empocher ver m s 2.92 4.46 0.49 0.68 par:pas; +empochée empocher ver f s 2.92 4.46 0.17 0.00 par:pas; +empochées empocher ver f p 2.92 4.46 0.03 0.07 par:pas; +empochés empocher ver m p 2.92 4.46 0.02 0.00 par:pas; +empoigna empoigner ver 1.84 26.01 0.04 8.11 ind:pas:3s; +empoignade empoignade nom f s 0.16 1.01 0.16 0.54 +empoignades empoignade nom f p 0.16 1.01 0.00 0.47 +empoignai empoigner ver 1.84 26.01 0.00 0.20 ind:pas:1s; +empoignaient empoigner ver 1.84 26.01 0.00 0.54 ind:imp:3p; +empoignais empoigner ver 1.84 26.01 0.00 0.14 ind:imp:1s; +empoignait empoigner ver 1.84 26.01 0.00 2.30 ind:imp:3s; +empoignant empoigner ver 1.84 26.01 0.23 1.62 par:pre; +empoigne empoigner ver 1.84 26.01 0.72 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empoignent empoigner ver 1.84 26.01 0.02 0.61 ind:pre:3p; +empoigner empoigner ver 1.84 26.01 0.28 2.70 inf; +empoignera empoigner ver 1.84 26.01 0.01 0.00 ind:fut:3s; +empoigneront empoigner ver 1.84 26.01 0.00 0.07 ind:fut:3p; +empoignes empoigner ver 1.84 26.01 0.04 0.00 ind:pre:2s; +empoignez empoigner ver 1.84 26.01 0.17 0.07 imp:pre:2p; +empoignons empoigner ver 1.84 26.01 0.01 0.07 imp:pre:1p;ind:pre:1p; +empoignèrent empoigner ver 1.84 26.01 0.00 0.95 ind:pas:3p; +empoigné empoigner ver m s 1.84 26.01 0.29 3.65 par:pas; +empoignée empoigner ver f s 1.84 26.01 0.02 0.47 par:pas; +empoignées empoigner ver f p 1.84 26.01 0.00 0.14 par:pas; +empoiler empoiler ver 0.00 0.14 0.00 0.07 inf; +empoilés empoiler ver m p 0.00 0.14 0.00 0.07 par:pas; +empois empois nom m 0.01 0.14 0.01 0.14 +empoisonna empoisonner ver 19.62 15.00 0.01 0.14 ind:pas:3s; +empoisonnaient empoisonner ver 19.62 15.00 0.12 0.27 ind:imp:3p; +empoisonnais empoisonner ver 19.62 15.00 0.12 0.00 ind:imp:1s;ind:imp:2s; +empoisonnait empoisonner ver 19.62 15.00 0.10 0.61 ind:imp:3s; +empoisonnant empoisonner ver 19.62 15.00 0.10 0.00 par:pre; +empoisonnante empoisonnant adj f s 0.15 0.20 0.06 0.00 +empoisonnantes empoisonnant adj f p 0.15 0.20 0.01 0.07 +empoisonne empoisonner ver 19.62 15.00 1.76 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empoisonnement empoisonnement nom m s 1.85 0.61 1.80 0.61 +empoisonnements empoisonnement nom m p 1.85 0.61 0.05 0.00 +empoisonnent empoisonner ver 19.62 15.00 0.41 0.54 ind:pre:3p; +empoisonner empoisonner ver 19.62 15.00 3.57 2.57 inf; +empoisonnera empoisonner ver 19.62 15.00 0.31 0.14 ind:fut:3s; +empoisonnerai empoisonner ver 19.62 15.00 0.11 0.00 ind:fut:1s; +empoisonneraient empoisonner ver 19.62 15.00 0.00 0.07 cnd:pre:3p; +empoisonnerais empoisonner ver 19.62 15.00 0.02 0.00 cnd:pre:1s; +empoisonnerez empoisonner ver 19.62 15.00 0.01 0.00 ind:fut:2p; +empoisonneront empoisonner ver 19.62 15.00 0.02 0.00 ind:fut:3p; +empoisonnes empoisonner ver 19.62 15.00 0.31 0.07 ind:pre:2s; +empoisonneur empoisonneur nom m s 0.98 0.88 0.65 0.47 +empoisonneurs empoisonneur nom m p 0.98 0.88 0.18 0.07 +empoisonneuse empoisonneur nom f s 0.98 0.88 0.16 0.27 +empoisonneuses empoisonneuse nom f p 0.01 0.00 0.01 0.00 +empoisonnez empoisonner ver 19.62 15.00 0.20 0.20 imp:pre:2p;ind:pre:2p; +empoisonné empoisonner ver m s 19.62 15.00 8.22 3.58 par:pas; +empoisonnée empoisonner ver f s 19.62 15.00 2.83 2.16 par:pas; +empoisonnées empoisonner ver f p 19.62 15.00 0.57 1.89 par:pas; +empoisonnés empoisonner ver m p 19.62 15.00 0.82 1.28 par:pas; +empoissait empoisser ver 0.00 0.34 0.00 0.07 ind:imp:3s; +empoisse empoisser ver 0.00 0.34 0.00 0.07 ind:pre:3s; +empoisser empoisser ver 0.00 0.34 0.00 0.07 inf; +empoissonner empoissonner ver 0.02 0.14 0.01 0.00 inf; +empoissonné empoissonner ver m s 0.02 0.14 0.01 0.07 par:pas; +empoissonnées empoissonner ver f p 0.02 0.14 0.00 0.07 par:pas; +empoissé empoisser ver m s 0.00 0.34 0.00 0.07 par:pas; +empoissés empoisser ver m p 0.00 0.34 0.00 0.07 par:pas; +emporium emporium nom m s 0.04 0.14 0.04 0.14 +emport emport nom m s 0.00 0.07 0.00 0.07 +emporta emporter ver 69.02 121.28 0.42 7.43 ind:pas:3s; +emportai emporter ver 69.02 121.28 0.01 0.74 ind:pas:1s; +emportaient emporter ver 69.02 121.28 0.23 2.84 ind:imp:3p; +emportais emporter ver 69.02 121.28 0.04 2.43 ind:imp:1s;ind:imp:2s; +emportait emporter ver 69.02 121.28 1.44 16.82 ind:imp:3s; +emportant emporter ver 69.02 121.28 0.90 8.92 par:pre; +emporte_pièce emporte_pièce nom m 0.00 0.95 0.00 0.95 +emporte emporter ver 69.02 121.28 19.89 16.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emportement emportement nom m s 0.97 3.51 0.55 3.24 +emportements emportement nom m p 0.97 3.51 0.42 0.27 +emportent emporter ver 69.02 121.28 1.30 2.03 ind:pre:3p; +emporter emporter ver 69.02 121.28 16.69 24.19 inf; +emportera emporter ver 69.02 121.28 2.45 1.49 ind:fut:3s; +emporterai emporter ver 69.02 121.28 0.40 0.27 ind:fut:1s; +emporteraient emporter ver 69.02 121.28 0.02 0.41 cnd:pre:3p; +emporterais emporter ver 69.02 121.28 0.14 0.20 cnd:pre:1s; +emporterait emporter ver 69.02 121.28 0.13 1.76 cnd:pre:3s; +emporteras emporter ver 69.02 121.28 0.53 0.41 ind:fut:2s; +emporterez emporter ver 69.02 121.28 0.36 0.14 ind:fut:2p; +emporteriez emporter ver 69.02 121.28 0.00 0.07 cnd:pre:2p; +emporterions emporter ver 69.02 121.28 0.00 0.07 cnd:pre:1p; +emporterons emporter ver 69.02 121.28 0.22 0.14 ind:fut:1p; +emporteront emporter ver 69.02 121.28 0.21 0.41 ind:fut:3p; +emportes emporter ver 69.02 121.28 2.01 0.68 ind:pre:2s; +emportez emporter ver 69.02 121.28 3.54 1.22 imp:pre:2p;ind:pre:2p; +emportiez emporter ver 69.02 121.28 0.41 0.14 ind:imp:2p; +emportions emporter ver 69.02 121.28 0.01 0.34 ind:imp:1p; +emportons emporter ver 69.02 121.28 0.80 0.14 imp:pre:1p;ind:pre:1p; +emportât emporter ver 69.02 121.28 0.01 0.61 sub:imp:3s; +emportèrent emporter ver 69.02 121.28 0.04 1.01 ind:pas:3p; +emporté emporter ver m s 69.02 121.28 12.46 18.58 par:pas; +emportée emporter ver f s 69.02 121.28 2.31 5.14 par:pas; +emportées emporter ver f p 69.02 121.28 0.35 1.69 par:pas; +emportés emporter ver m p 69.02 121.28 1.73 4.53 par:pas; +empâta empâter ver 0.11 1.76 0.00 0.07 ind:pas:3s; +empâtait empâter ver 0.11 1.76 0.01 0.54 ind:imp:3s; +empâte empâter ver 0.11 1.76 0.06 0.27 ind:pre:1s;ind:pre:3s; +empâtement empâtement nom m s 0.03 0.54 0.01 0.41 +empâtements empâtement nom m p 0.03 0.54 0.01 0.14 +empâtent empâter ver 0.11 1.76 0.00 0.14 ind:pre:3p; +empâter empâter ver 0.11 1.76 0.03 0.27 inf; +empâté empâté adj m s 0.04 1.35 0.01 0.54 +empoté empoté nom m s 0.67 0.61 0.55 0.61 +empâtée empâté adj f s 0.04 1.35 0.01 0.41 +empotée empoté adj f s 0.80 0.61 0.24 0.14 +empâtées empâté adj f p 0.04 1.35 0.02 0.14 +empâtés empâté adj m p 0.04 1.35 0.00 0.27 +empotés empoté nom m p 0.67 0.61 0.12 0.00 +empourpra empourprer ver 0.03 2.97 0.00 0.81 ind:pas:3s; +empourprait empourprer ver 0.03 2.97 0.00 0.61 ind:imp:3s; +empourprant empourprer ver 0.03 2.97 0.00 0.27 par:pre; +empourpre empourprer ver 0.03 2.97 0.01 0.47 ind:pre:3s; +empourprent empourprer ver 0.03 2.97 0.00 0.07 ind:pre:3p; +empourprer empourprer ver 0.03 2.97 0.01 0.14 inf; +empourpré empourprer ver m s 0.03 2.97 0.00 0.27 par:pas; +empourprée empourprer ver f s 0.03 2.97 0.01 0.14 par:pas; +empourprées empourprer ver f p 0.03 2.97 0.00 0.14 par:pas; +empourprés empourprer ver m p 0.03 2.97 0.00 0.07 par:pas; +empoussière empoussiérer ver 0.02 0.54 0.01 0.07 ind:pre:3s; +empoussièrent empoussiérer ver 0.02 0.54 0.00 0.07 ind:pre:3p; +empoussiérait empoussiérer ver 0.02 0.54 0.00 0.14 ind:imp:3s; +empoussiéré empoussiérer ver m s 0.02 0.54 0.01 0.14 par:pas; +empoussiérée empoussiéré adj f s 0.00 0.81 0.00 0.27 +empoussiérées empoussiéré adj f p 0.00 0.81 0.00 0.14 +empoussiérés empoussiéré adj m p 0.00 0.81 0.00 0.20 +empreignit empreindre ver 0.23 2.23 0.00 0.07 ind:pas:3s; +empreint empreindre ver m s 0.23 2.23 0.08 1.15 ind:pre:3s;par:pas; +empreinte empreinte nom f s 42.06 15.61 11.41 8.72 +empreintes empreinte nom f p 42.06 15.61 30.65 6.89 +empreints empreindre ver m p 0.23 2.23 0.15 1.01 par:pas; +empressa empresser ver 1.65 12.91 0.13 2.50 ind:pas:3s; +empressai empresser ver 1.65 12.91 0.01 0.41 ind:pas:1s; +empressaient empresser ver 1.65 12.91 0.00 1.01 ind:imp:3p; +empressais empresser ver 1.65 12.91 0.00 0.14 ind:imp:1s; +empressait empresser ver 1.65 12.91 0.00 1.35 ind:imp:3s; +empressant empresser ver 1.65 12.91 0.01 0.27 par:pre; +empresse empresser ver 1.65 12.91 0.70 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empressement empressement nom m s 0.46 6.15 0.46 6.01 +empressements empressement nom m p 0.46 6.15 0.00 0.14 +empressent empresser ver 1.65 12.91 0.01 0.54 ind:pre:3p; +empresser empresser ver 1.65 12.91 0.17 0.41 inf; +empressera empresser ver 1.65 12.91 0.02 0.14 ind:fut:3s; +empresserait empresser ver 1.65 12.91 0.04 0.20 cnd:pre:3s; +empresseras empresser ver 1.65 12.91 0.01 0.00 ind:fut:2s; +empresserez empresser ver 1.65 12.91 0.01 0.00 ind:fut:2p; +empresses empresser ver 1.65 12.91 0.02 0.07 ind:pre:2s; +empressâmes empresser ver 1.65 12.91 0.00 0.14 ind:pas:1p; +empressèrent empresser ver 1.65 12.91 0.00 0.88 ind:pas:3p; +empressé empresser ver m s 1.65 12.91 0.27 1.35 par:pas; +empressée empresser ver f s 1.65 12.91 0.08 0.47 par:pas; +empressées empresser ver f p 1.65 12.91 0.14 0.27 par:pas; +empressés empressé nom m p 0.16 0.47 0.14 0.14 +emprise emprise nom f s 3.08 3.65 3.08 3.58 +emprises emprise nom f p 3.08 3.65 0.00 0.07 +emprisonna emprisonner ver 6.46 10.27 0.16 0.54 ind:pas:3s; +emprisonnaient emprisonner ver 6.46 10.27 0.00 0.41 ind:imp:3p; +emprisonnait emprisonner ver 6.46 10.27 0.01 0.74 ind:imp:3s; +emprisonnant emprisonner ver 6.46 10.27 0.14 0.95 par:pre; +emprisonne emprisonner ver 6.46 10.27 0.65 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emprisonnement emprisonnement nom m s 1.80 0.81 1.74 0.61 +emprisonnements emprisonnement nom m p 1.80 0.81 0.06 0.20 +emprisonnent emprisonner ver 6.46 10.27 0.26 0.54 ind:pre:3p; +emprisonner emprisonner ver 6.46 10.27 1.48 1.35 inf; +emprisonnera emprisonner ver 6.46 10.27 0.02 0.07 ind:fut:3s; +emprisonnez emprisonner ver 6.46 10.27 0.10 0.00 imp:pre:2p;ind:pre:2p; +emprisonnèrent emprisonner ver 6.46 10.27 0.01 0.07 ind:pas:3p; +emprisonné emprisonner ver m s 6.46 10.27 2.60 1.69 par:pas; +emprisonnée emprisonner ver f s 6.46 10.27 0.54 1.49 ind:imp:3p;par:pas; +emprisonnées emprisonner ver f p 6.46 10.27 0.15 0.20 par:pas; +emprisonnés emprisonner ver m p 6.46 10.27 0.35 1.08 par:pas; +emprunt emprunt nom m s 3.66 4.73 3.18 3.78 +emprunta emprunter ver 31.31 31.28 0.01 1.55 ind:pas:3s; +empruntai emprunter ver 31.31 31.28 0.01 0.95 ind:pas:1s; +empruntaient emprunter ver 31.31 31.28 0.01 1.01 ind:imp:3p; +empruntais emprunter ver 31.31 31.28 0.08 0.88 ind:imp:1s;ind:imp:2s; +empruntait emprunter ver 31.31 31.28 0.47 2.64 ind:imp:3s; +empruntant emprunter ver 31.31 31.28 0.20 2.36 par:pre; +emprunte emprunter ver 31.31 31.28 4.30 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empruntent emprunter ver 31.31 31.28 0.44 0.61 ind:pre:3p; +emprunter emprunter ver 31.31 31.28 15.87 7.09 inf; +empruntera emprunter ver 31.31 31.28 0.10 0.07 ind:fut:3s; +emprunterai emprunter ver 31.31 31.28 0.20 0.07 ind:fut:1s; +emprunteraient emprunter ver 31.31 31.28 0.00 0.14 cnd:pre:3p; +emprunterais emprunter ver 31.31 31.28 0.13 0.07 cnd:pre:1s; +emprunterait emprunter ver 31.31 31.28 0.03 0.54 cnd:pre:3s; +emprunteras emprunter ver 31.31 31.28 0.07 0.07 ind:fut:2s; +emprunterons emprunter ver 31.31 31.28 0.03 0.00 ind:fut:1p; +emprunteront emprunter ver 31.31 31.28 0.13 0.14 ind:fut:3p; +empruntes emprunter ver 31.31 31.28 0.52 0.20 ind:pre:2s; +emprunteur emprunteur nom m s 0.04 0.00 0.04 0.00 +empruntez emprunter ver 31.31 31.28 0.40 0.00 imp:pre:2p;ind:pre:2p; +empruntions emprunter ver 31.31 31.28 0.04 0.47 ind:imp:1p; +empruntâmes emprunter ver 31.31 31.28 0.01 0.07 ind:pas:1p; +empruntons emprunter ver 31.31 31.28 0.10 0.41 imp:pre:1p;ind:pre:1p; +empruntât emprunter ver 31.31 31.28 0.00 0.07 sub:imp:3s; +emprunts emprunt nom m p 3.66 4.73 0.47 0.95 +empruntèrent emprunter ver 31.31 31.28 0.01 0.74 ind:pas:3p; +emprunté emprunter ver m s 31.31 31.28 6.63 5.68 par:pas; +empruntée emprunter ver f s 31.31 31.28 1.05 1.15 par:pas; +empruntées emprunter ver f p 31.31 31.28 0.25 0.47 par:pas; +empruntés emprunter ver m p 31.31 31.28 0.21 1.55 par:pas; +empuanti empuantir ver m s 0.03 1.22 0.02 0.47 par:pas; +empuantie empuanti adj f s 0.00 0.34 0.00 0.14 +empuanties empuantir ver f p 0.03 1.22 0.00 0.07 par:pas; +empuantir empuantir ver 0.03 1.22 0.01 0.20 inf; +empuantis empuantir ver m p 0.03 1.22 0.00 0.07 par:pas; +empuantissaient empuantir ver 0.03 1.22 0.00 0.07 ind:imp:3p; +empuantissait empuantir ver 0.03 1.22 0.00 0.14 ind:imp:3s; +empuantisse empuantir ver 0.03 1.22 0.00 0.07 sub:pre:3s; +empuantissent empuantir ver 0.03 1.22 0.00 0.07 ind:pre:3p; +empêcha empêcher ver 121.85 171.28 0.35 5.00 ind:pas:3s; +empêchai empêcher ver 121.85 171.28 0.00 0.61 ind:pas:1s; +empêchaient empêcher ver 121.85 171.28 0.10 4.59 ind:imp:3p; +empêchais empêcher ver 121.85 171.28 0.23 0.27 ind:imp:1s;ind:imp:2s; +empêchait empêcher ver 121.85 171.28 2.52 18.58 ind:imp:3s; +empêchant empêcher ver 121.85 171.28 1.06 3.11 par:pre; +empêche empêcher ver 121.85 171.28 31.46 41.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empêchement empêchement nom m s 1.25 1.42 1.23 1.01 +empêchements empêchement nom m p 1.25 1.42 0.02 0.41 +empêchent empêcher ver 121.85 171.28 2.74 4.59 ind:pre:3p; +empêcher empêcher ver 121.85 171.28 55.99 70.20 inf; +empêchera empêcher ver 121.85 171.28 4.89 2.43 ind:fut:3s; +empêcherai empêcher ver 121.85 171.28 1.57 0.34 ind:fut:1s; +empêcheraient empêcher ver 121.85 171.28 0.22 0.47 cnd:pre:3p; +empêcherais empêcher ver 121.85 171.28 0.57 0.27 cnd:pre:1s;cnd:pre:2s; +empêcherait empêcher ver 121.85 171.28 1.35 2.64 cnd:pre:3s; +empêcheras empêcher ver 121.85 171.28 0.88 0.47 ind:fut:2s; +empêcherez empêcher ver 121.85 171.28 0.37 0.34 ind:fut:2p; +empêcherons empêcher ver 121.85 171.28 0.28 0.07 ind:fut:1p; +empêcheront empêcher ver 121.85 171.28 0.54 0.54 ind:fut:3p; +empêches empêcher ver 121.85 171.28 1.36 0.34 ind:pre:2s; +empêcheur empêcheur nom m s 0.08 0.68 0.04 0.41 +empêcheurs empêcheur nom m p 0.08 0.68 0.04 0.20 +empêcheuse empêcheur nom f s 0.08 0.68 0.01 0.07 +empêchez empêcher ver 121.85 171.28 4.53 0.34 imp:pre:2p;ind:pre:2p; +empêchions empêcher ver 121.85 171.28 0.08 0.07 ind:imp:1p; +empêchons empêcher ver 121.85 171.28 0.39 0.20 imp:pre:1p;ind:pre:1p; +empêchât empêcher ver 121.85 171.28 0.00 0.27 sub:imp:3s; +empêchèrent empêcher ver 121.85 171.28 0.16 1.28 ind:pas:3p; +empêché empêcher ver m s 121.85 171.28 7.81 9.26 par:pas; +empêchée empêcher ver f s 121.85 171.28 1.58 2.30 par:pas; +empêchées empêcher ver f p 121.85 171.28 0.02 0.14 par:pas; +empêchés empêcher ver m p 121.85 171.28 0.80 1.42 par:pas; +empêtra empêtrer ver 0.76 5.20 0.00 0.34 ind:pas:3s; +empêtraient empêtrer ver 0.76 5.20 0.02 0.20 ind:imp:3p; +empêtrais empêtrer ver 0.76 5.20 0.00 0.20 ind:imp:1s; +empêtrait empêtrer ver 0.76 5.20 0.00 1.01 ind:imp:3s; +empêtrant empêtrer ver 0.76 5.20 0.00 0.27 par:pre; +empêtre empêtrer ver 0.76 5.20 0.02 0.54 ind:pre:1s;ind:pre:3s; +empêtrent empêtrer ver 0.76 5.20 0.00 0.07 ind:pre:3p; +empêtrer empêtrer ver 0.76 5.20 0.20 0.14 inf; +empêtrons empêtrer ver 0.76 5.20 0.00 0.07 ind:pre:1p; +empêtré empêtrer ver m s 0.76 5.20 0.19 1.35 par:pas; +empêtrée empêtrer ver f s 0.76 5.20 0.17 0.41 par:pas; +empêtrées empêtrer ver f p 0.76 5.20 0.14 0.27 par:pas; +empêtrés empêtrer ver m p 0.76 5.20 0.01 0.34 par:pas; +empyrée empyrée nom m s 0.00 0.81 0.00 0.74 +empyrées empyrée nom m p 0.00 0.81 0.00 0.07 +en_avant en_avant nom m 0.01 0.07 0.01 0.07 +en_but en_but nom m 0.32 0.00 0.32 0.00 +en_cas en_cas nom m 1.44 1.08 1.44 1.08 +en_cours en_cours nom m 0.01 0.00 0.01 0.00 +en_dehors en_dehors nom m 0.36 0.07 0.36 0.07 +en_tête en_tête nom m s 0.44 2.77 0.39 2.64 +en_tête en_tête nom m p 0.44 2.77 0.05 0.14 +en_catimini en_catimini adv 0.12 1.42 0.12 1.42 +en_loucedé en_loucedé adv 0.16 0.47 0.16 0.47 +en_tapinois en_tapinois adv 0.25 0.68 0.25 0.68 +en en pre 5689.68 8732.57 5689.68 8732.57 +enamouré enamourer ver m s 0.02 0.07 0.01 0.00 par:pas; +enamourée enamouré adj f s 0.10 0.20 0.10 0.14 +enamourées enamouré adj f p 0.10 0.20 0.00 0.07 +enamourés enamourer ver m p 0.02 0.07 0.00 0.07 par:pas; +encabanée encabaner ver f s 0.00 0.07 0.00 0.07 par:pas; +encablure encablure nom f s 0.07 0.88 0.04 0.20 +encablures encablure nom f p 0.07 0.88 0.02 0.68 +encadra encadrer ver 2.51 24.26 0.00 0.61 ind:pas:3s; +encadraient encadrer ver 2.51 24.26 0.02 2.84 ind:imp:3p; +encadrait encadrer ver 2.51 24.26 0.01 2.30 ind:imp:3s; +encadrant encadrant adj m s 0.00 2.16 0.00 2.16 +encadre encadrer ver 2.51 24.26 0.24 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encadrement encadrement nom m s 0.64 6.49 0.41 6.08 +encadrements encadrement nom m p 0.64 6.49 0.23 0.41 +encadrent encadrer ver 2.51 24.26 0.04 1.42 ind:pre:3p; +encadrer encadrer ver 2.51 24.26 1.45 2.43 inf; +encadrera encadrer ver 2.51 24.26 0.00 0.07 ind:fut:3s; +encadrerai encadrer ver 2.51 24.26 0.02 0.00 ind:fut:1s; +encadreraient encadrer ver 2.51 24.26 0.01 0.07 cnd:pre:3p; +encadrerait encadrer ver 2.51 24.26 0.00 0.20 cnd:pre:3s; +encadreront encadrer ver 2.51 24.26 0.01 0.07 ind:fut:3p; +encadreur encadreur nom m s 0.16 0.34 0.16 0.34 +encadrez encadrer ver 2.51 24.26 0.03 0.00 imp:pre:2p; +encadrions encadrer ver 2.51 24.26 0.00 0.07 ind:imp:1p; +encadrèrent encadrer ver 2.51 24.26 0.00 0.47 ind:pas:3p; +encadré encadrer ver m s 2.51 24.26 0.24 5.27 par:pas; +encadrée encadrer ver f s 2.51 24.26 0.23 3.51 par:pas; +encadrées encadrer ver f p 2.51 24.26 0.04 1.55 par:pas; +encadrés encadrer ver m p 2.51 24.26 0.16 1.76 par:pas; +encagent encager ver 0.13 0.54 0.00 0.07 ind:pre:3p; +encager encager ver 0.13 0.54 0.00 0.14 inf; +encagez encager ver 0.13 0.54 0.02 0.00 imp:pre:2p; +encagoulées encagoulé adj f p 0.01 0.07 0.00 0.07 +encagoulés encagoulé nom m p 0.14 0.00 0.14 0.00 +encagé encager ver m s 0.13 0.54 0.11 0.07 par:pas; +encagée encager ver f s 0.13 0.54 0.00 0.20 par:pas; +encagés encagé adj m p 0.02 0.47 0.00 0.27 +encaissa encaisser ver 10.35 10.27 0.00 0.41 ind:pas:3s; +encaissable encaissable adj s 0.01 0.00 0.01 0.00 +encaissai encaisser ver 10.35 10.27 0.00 0.20 ind:pas:1s; +encaissaient encaisser ver 10.35 10.27 0.00 0.20 ind:imp:3p; +encaissais encaisser ver 10.35 10.27 0.14 0.41 ind:imp:1s; +encaissait encaisser ver 10.35 10.27 0.05 0.88 ind:imp:3s; +encaissant encaisser ver 10.35 10.27 0.03 0.20 par:pre; +encaisse encaisser ver 10.35 10.27 2.37 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encaissement encaissement nom m s 0.51 0.20 0.35 0.14 +encaissements encaissement nom m p 0.51 0.20 0.16 0.07 +encaissent encaisser ver 10.35 10.27 0.24 0.07 ind:pre:3p; +encaisser encaisser ver 10.35 10.27 4.84 3.78 inf; +encaissera encaisser ver 10.35 10.27 0.17 0.00 ind:fut:3s; +encaisserai encaisser ver 10.35 10.27 0.08 0.07 ind:fut:1s; +encaisserais encaisser ver 10.35 10.27 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +encaisserait encaisser ver 10.35 10.27 0.01 0.07 cnd:pre:3s; +encaisserez encaisser ver 10.35 10.27 0.12 0.00 ind:fut:2p; +encaisseront encaisser ver 10.35 10.27 0.02 0.00 ind:fut:3p; +encaisses encaisser ver 10.35 10.27 0.14 0.14 ind:pre:2s; +encaisseur encaisseur nom m s 0.69 0.61 0.67 0.47 +encaisseurs encaisseur nom m p 0.69 0.61 0.03 0.14 +encaissez encaisser ver 10.35 10.27 0.37 0.00 imp:pre:2p;ind:pre:2p; +encaissons encaisser ver 10.35 10.27 0.01 0.00 ind:pre:1p; +encaissât encaisser ver 10.35 10.27 0.00 0.07 sub:imp:3s; +encaissé encaisser ver m s 10.35 10.27 1.47 0.74 par:pas; +encaissée encaisser ver f s 10.35 10.27 0.03 0.34 par:pas; +encaissées encaisser ver f p 10.35 10.27 0.01 0.34 par:pas; +encaissés encaisser ver m p 10.35 10.27 0.23 0.07 par:pas; +encalminé encalminé adj m s 0.00 0.20 0.00 0.07 +encalminés encalminé adj m p 0.00 0.20 0.00 0.14 +encanaillais encanailler ver 0.35 1.28 0.01 0.00 ind:imp:2s; +encanaillait encanailler ver 0.35 1.28 0.01 0.20 ind:imp:3s; +encanaille encanailler ver 0.35 1.28 0.18 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encanaillement encanaillement nom m s 0.00 0.07 0.00 0.07 +encanaillent encanailler ver 0.35 1.28 0.03 0.00 ind:pre:3p; +encanailler encanailler ver 0.35 1.28 0.13 0.61 inf; +encanaillé encanailler ver m s 0.35 1.28 0.00 0.20 par:pas; +encapsuler encapsuler ver 0.04 0.00 0.01 0.00 inf; +encapsulé encapsuler ver m s 0.04 0.00 0.03 0.00 par:pas; +encapuchonna encapuchonner ver 0.00 1.08 0.00 0.14 ind:pas:3s; +encapuchonnait encapuchonner ver 0.00 1.08 0.00 0.14 ind:imp:3s; +encapuchonnant encapuchonner ver 0.00 1.08 0.00 0.07 par:pre; +encapuchonne encapuchonner ver 0.00 1.08 0.00 0.20 ind:pre:3s; +encapuchonné encapuchonner ver m s 0.00 1.08 0.00 0.14 par:pas; +encapuchonnée encapuchonné adj f s 0.13 0.68 0.03 0.14 +encapuchonnées encapuchonner ver f p 0.00 1.08 0.00 0.07 par:pas; +encapuchonnés encapuchonné adj m p 0.13 0.68 0.10 0.41 +encaqués encaquer ver m p 0.00 0.14 0.00 0.14 par:pas; +encart encart nom m s 0.09 0.34 0.05 0.27 +encartage encartage nom m s 0.00 0.07 0.00 0.07 +encartait encarter ver 0.14 0.68 0.00 0.07 ind:imp:3s; +encarter encarter ver 0.14 0.68 0.14 0.07 inf; +encarts encart nom m p 0.09 0.34 0.04 0.07 +encarté encarter ver m s 0.14 0.68 0.00 0.27 par:pas; +encartées encarter ver f p 0.14 0.68 0.00 0.14 par:pas; +encartés encarter ver m p 0.14 0.68 0.00 0.14 par:pas; +encas encas nom m 0.40 0.14 0.40 0.14 +encaserner encaserner ver 0.00 0.07 0.00 0.07 inf; +encastelé encasteler ver m s 0.00 0.07 0.00 0.07 par:pas; +encastra encastrer ver 0.35 5.07 0.00 0.27 ind:pas:3s; +encastraient encastrer ver 0.35 5.07 0.00 0.14 ind:imp:3p; +encastrait encastrer ver 0.35 5.07 0.00 0.20 ind:imp:3s; +encastrant encastrer ver 0.35 5.07 0.01 0.07 par:pre; +encastre encastrer ver 0.35 5.07 0.06 0.27 ind:pre:1s;ind:pre:3s; +encastrement encastrement nom m s 0.01 0.00 0.01 0.00 +encastrent encastrer ver 0.35 5.07 0.01 0.00 ind:pre:3p; +encastrer encastrer ver 0.35 5.07 0.03 0.47 inf; +encastré encastrer ver m s 0.35 5.07 0.13 1.28 par:pas; +encastrée encastrer ver f s 0.35 5.07 0.04 1.22 par:pas; +encastrées encastrer ver f p 0.35 5.07 0.02 0.34 par:pas; +encastrés encastrer ver m p 0.35 5.07 0.04 0.81 par:pas; +encaustiquait encaustiquer ver 0.03 0.20 0.00 0.07 ind:imp:3s; +encaustique encaustique nom f s 0.04 2.64 0.04 2.64 +encaustiquer encaustiquer ver 0.03 0.20 0.02 0.14 inf; +encaustiqué encaustiqué adj m s 0.00 0.27 0.00 0.14 +encaustiquée encaustiqué adj f s 0.00 0.27 0.00 0.14 +encaver encaver ver 0.00 0.14 0.00 0.07 inf; +encavée encaver ver f s 0.00 0.14 0.00 0.07 par:pas; +enceint enceindre ver m s 0.32 0.41 0.32 0.34 ind:pre:3s;par:pas; +enceinte enceinte adj f s 48.60 12.43 46.41 11.08 +enceinter enceinter ver 0.01 0.00 0.01 0.00 inf; +enceintes enceinte adj f p 48.60 12.43 2.19 1.35 +enceints enceindre ver m p 0.32 0.41 0.00 0.07 par:pas; +encellulement encellulement nom m s 0.00 0.07 0.00 0.07 +encellulée encelluler ver f s 0.00 0.20 0.00 0.14 par:pas; +encellulées encelluler ver f p 0.00 0.20 0.00 0.07 par:pas; +encens encens nom m 2.44 7.91 2.44 7.91 +encensaient encenser ver 0.33 1.22 0.00 0.20 ind:imp:3p; +encensait encenser ver 0.33 1.22 0.01 0.14 ind:imp:3s; +encensant encenser ver 0.33 1.22 0.00 0.07 par:pre; +encense encenser ver 0.33 1.22 0.20 0.27 ind:pre:1s;ind:pre:3s; +encensement encensement nom m s 0.01 0.00 0.01 0.00 +encenser encenser ver 0.33 1.22 0.04 0.34 inf; +encensoir encensoir nom m s 0.14 1.01 0.04 0.68 +encensoirs encensoir nom m p 0.14 1.01 0.10 0.34 +encensé encenser ver m s 0.33 1.22 0.08 0.14 par:pas; +encensés encenser ver m p 0.33 1.22 0.00 0.07 par:pas; +encercla encercler ver 8.62 7.50 0.01 0.14 ind:pas:3s; +encerclaient encercler ver 8.62 7.50 0.04 1.08 ind:imp:3p; +encerclais encercler ver 8.62 7.50 0.01 0.00 ind:imp:2s; +encerclait encercler ver 8.62 7.50 0.02 0.61 ind:imp:3s; +encerclant encercler ver 8.62 7.50 0.13 0.41 par:pre; +encercle encercler ver 8.62 7.50 0.73 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encerclement encerclement nom m s 0.03 0.88 0.03 0.88 +encerclent encercler ver 8.62 7.50 0.80 0.61 ind:pre:3p; +encercler encercler ver 8.62 7.50 0.85 0.54 inf; +encerclera encercler ver 8.62 7.50 0.16 0.00 ind:fut:3s; +encercleraient encercler ver 8.62 7.50 0.00 0.07 cnd:pre:3p; +encerclez encercler ver 8.62 7.50 1.00 0.00 imp:pre:2p;ind:pre:2p; +encerclons encercler ver 8.62 7.50 0.04 0.00 imp:pre:1p;ind:pre:1p; +encerclèrent encercler ver 8.62 7.50 0.01 0.07 ind:pas:3p; +encerclé encercler ver m s 8.62 7.50 2.06 2.03 par:pas; +encerclée encercler ver f s 8.62 7.50 0.62 0.41 par:pas; +encerclées encercler ver f p 8.62 7.50 0.06 0.20 par:pas; +encerclés encercler ver m p 8.62 7.50 2.06 0.68 par:pas; +enchaîna enchaîner ver 7.58 21.76 0.05 3.99 ind:pas:3s; +enchaînai enchaîner ver 7.58 21.76 0.00 0.14 ind:pas:1s; +enchaînaient enchaîner ver 7.58 21.76 0.03 0.68 ind:imp:3p; +enchaînais enchaîner ver 7.58 21.76 0.14 0.07 ind:imp:1s; +enchaînait enchaîner ver 7.58 21.76 0.04 2.23 ind:imp:3s; +enchaînant enchaîner ver 7.58 21.76 0.01 0.68 par:pre; +enchaîne enchaîner ver 7.58 21.76 0.93 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enchaînement enchaînement nom m s 1.22 4.59 0.89 3.72 +enchaînements enchaînement nom m p 1.22 4.59 0.33 0.88 +enchaînent enchaîner ver 7.58 21.76 0.41 1.01 ind:pre:3p; +enchaîner enchaîner ver 7.58 21.76 1.46 2.43 inf; +enchaînera enchaîner ver 7.58 21.76 0.01 0.07 ind:fut:3s; +enchaîneraient enchaîner ver 7.58 21.76 0.01 0.00 cnd:pre:3p; +enchaînerait enchaîner ver 7.58 21.76 0.02 0.07 cnd:pre:3s; +enchaîneras enchaîner ver 7.58 21.76 0.01 0.00 ind:fut:2s; +enchaînerez enchaîner ver 7.58 21.76 0.01 0.00 ind:fut:2p; +enchaînerons enchaîner ver 7.58 21.76 0.00 0.07 ind:fut:1p; +enchaînez enchaîner ver 7.58 21.76 0.40 0.00 imp:pre:2p;ind:pre:2p; +enchaînons enchaîner ver 7.58 21.76 0.16 0.27 imp:pre:1p;ind:pre:1p; +enchaînèrent enchaîner ver 7.58 21.76 0.01 0.20 ind:pas:3p; +enchaîné enchaîner ver m s 7.58 21.76 2.39 4.32 par:pas; +enchaînée enchaîner ver f s 7.58 21.76 0.47 0.41 par:pas; +enchaînées enchaîner ver f p 7.58 21.76 0.50 0.47 par:pas; +enchaînés enchaîner ver m p 7.58 21.76 0.53 1.15 par:pas; +enchanta enchanter ver 15.57 22.43 0.10 1.55 ind:pas:3s; +enchantaient enchanter ver 15.57 22.43 0.12 1.22 ind:imp:3p; +enchantais enchanter ver 15.57 22.43 0.00 0.27 ind:imp:1s; +enchantait enchanter ver 15.57 22.43 0.61 3.65 ind:imp:3s; +enchantant enchanter ver 15.57 22.43 0.03 0.20 par:pre; +enchante enchanter ver 15.57 22.43 4.25 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enchantement enchantement nom m s 1.53 7.70 1.46 6.82 +enchantements enchantement nom m p 1.53 7.70 0.07 0.88 +enchantent enchanter ver 15.57 22.43 0.21 0.68 ind:pre:3p; +enchanter enchanter ver 15.57 22.43 0.56 1.62 inf; +enchantera enchanter ver 15.57 22.43 0.04 0.07 ind:fut:3s; +enchanteraient enchanter ver 15.57 22.43 0.00 0.07 cnd:pre:3p; +enchanterait enchanter ver 15.57 22.43 0.09 0.07 cnd:pre:3s; +enchanteresse enchanteur adj f s 1.88 2.64 0.55 0.47 +enchanteresses enchanteur adj f p 1.88 2.64 0.03 0.14 +enchanteront enchanter ver 15.57 22.43 0.00 0.07 ind:fut:3p; +enchantes enchanter ver 15.57 22.43 0.00 0.14 ind:pre:2s; +enchanteur enchanteur adj m s 1.88 2.64 1.25 1.22 +enchanteurs enchanteur nom m p 1.22 1.49 0.10 0.14 +enchantez enchanter ver 15.57 22.43 0.02 0.00 ind:pre:2p; +enchantions enchanter ver 15.57 22.43 0.00 0.07 ind:imp:1p; +enchantèrent enchanter ver 15.57 22.43 0.00 0.27 ind:pas:3p; +enchanté enchanté adj m s 55.00 7.97 35.28 4.26 +enchantée enchanté adj f s 55.00 7.97 18.96 2.43 +enchantées enchanté adj f p 55.00 7.97 0.20 0.27 +enchantés enchanter ver m p 15.57 22.43 0.68 1.69 par:pas; +enchemisé enchemiser ver m s 0.00 0.07 0.00 0.07 par:pas; +enchevêtraient enchevêtrer ver 0.21 2.30 0.00 0.41 ind:imp:3p; +enchevêtrais enchevêtrer ver 0.21 2.30 0.00 0.07 ind:imp:1s; +enchevêtrant enchevêtrer ver 0.21 2.30 0.00 0.07 par:pre; +enchevêtre enchevêtrer ver 0.21 2.30 0.00 0.27 ind:pre:3s; +enchevêtrement enchevêtrement nom m s 0.11 3.78 0.09 3.38 +enchevêtrements enchevêtrement nom m p 0.11 3.78 0.01 0.41 +enchevêtrent enchevêtrer ver 0.21 2.30 0.02 0.34 ind:pre:3p; +enchevêtré enchevêtrer ver m s 0.21 2.30 0.02 0.00 par:pas; +enchevêtrée enchevêtrer ver f s 0.21 2.30 0.14 0.00 par:pas; +enchevêtrées enchevêtré adj f p 0.04 2.50 0.02 0.95 +enchevêtrés enchevêtrer ver m p 0.21 2.30 0.02 0.68 par:pas; +enchifrené enchifrener ver m s 0.00 0.07 0.00 0.07 par:pas; +enchâssaient enchâsser ver 0.07 1.89 0.00 0.07 ind:imp:3p; +enchâssait enchâsser ver 0.07 1.89 0.00 0.07 ind:imp:3s; +enchâssant enchâsser ver 0.07 1.89 0.01 0.14 par:pre; +enchâsse enchâsser ver 0.07 1.89 0.00 0.07 ind:pre:3s; +enchâsser enchâsser ver 0.07 1.89 0.00 0.14 inf; +enchâssé enchâsser ver m s 0.07 1.89 0.03 0.54 par:pas; +enchâssée enchâsser ver f s 0.07 1.89 0.02 0.47 par:pas; +enchâssés enchâsser ver m p 0.07 1.89 0.01 0.41 par:pas; +enchriste enchrister ver 0.14 0.47 0.00 0.07 ind:pre:3s; +enchrister enchrister ver 0.14 0.47 0.14 0.07 inf; +enchristé enchrister ver m s 0.14 0.47 0.00 0.27 par:pas; +enchristée enchrister ver f s 0.14 0.47 0.00 0.07 par:pas; +enchère enchère nom f s 6.67 1.89 0.88 0.07 +enchères enchère nom f p 6.67 1.89 5.79 1.82 +enchtiber enchtiber ver 0.00 0.47 0.00 0.14 inf; +enchtibé enchtiber ver m s 0.00 0.47 0.00 0.27 par:pas; +enchtibés enchtiber ver m p 0.00 0.47 0.00 0.07 par:pas; +enchéri enchérir ver m s 0.55 0.41 0.05 0.07 par:pas; +enchérir enchérir ver 0.55 0.41 0.37 0.14 inf; +enchérissant enchérir ver 0.55 0.41 0.00 0.07 par:pre; +enchérisse enchérir ver 0.55 0.41 0.09 0.00 sub:pre:1s;sub:pre:3s; +enchérisseur enchérisseur nom m s 0.29 0.00 0.14 0.00 +enchérisseurs enchérisseur nom m p 0.29 0.00 0.14 0.00 +enchérisseuse enchérisseur nom f s 0.29 0.00 0.01 0.00 +enchérit enchérir ver 0.55 0.41 0.04 0.14 ind:pre:3s; +enclave enclave nom f s 0.21 1.49 0.13 0.95 +enclaves enclave nom f p 0.21 1.49 0.09 0.54 +enclavé enclavé adj m s 0.02 0.07 0.01 0.00 +enclavée enclavé adj f s 0.02 0.07 0.01 0.00 +enclavées enclavé adj f p 0.02 0.07 0.00 0.07 +enclencha enclencher ver 2.74 2.43 0.00 0.14 ind:pas:3s; +enclenchai enclencher ver 2.74 2.43 0.00 0.07 ind:pas:1s; +enclenchait enclencher ver 2.74 2.43 0.00 0.14 ind:imp:3s; +enclenchant enclencher ver 2.74 2.43 0.04 0.14 par:pre; +enclenche enclencher ver 2.74 2.43 0.93 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enclenchement enclenchement nom m s 0.06 0.07 0.06 0.07 +enclenchent enclencher ver 2.74 2.43 0.06 0.14 ind:pre:3p; +enclencher enclencher ver 2.74 2.43 0.46 0.47 inf; +enclenchera enclencher ver 2.74 2.43 0.04 0.00 ind:fut:3s; +enclenches enclencher ver 2.74 2.43 0.01 0.07 ind:pre:2s; +enclenchez enclencher ver 2.74 2.43 0.55 0.00 imp:pre:2p; +enclenché enclenché adj m s 1.06 0.27 0.80 0.07 +enclenchée enclenché adj f s 1.06 0.27 0.21 0.14 +enclenchées enclencher ver f p 2.74 2.43 0.03 0.00 par:pas; +enclenchés enclenché adj m p 1.06 0.27 0.04 0.07 +enclin enclin adj m s 2.33 5.07 1.61 2.77 +encline enclin adj f s 2.33 5.07 0.32 0.54 +enclines enclin adj f p 2.33 5.07 0.00 0.14 +enclins enclin adj m p 2.33 5.07 0.41 1.62 +encliqueter encliqueter ver 0.01 0.00 0.01 0.00 inf; +encloîtrer encloîtrer ver 0.00 0.07 0.00 0.07 inf; +encloqué encloquer ver m s 0.03 0.00 0.03 0.00 par:pas; +enclore enclore ver 0.00 1.28 0.00 0.14 inf; +enclos enclos nom m 2.95 6.01 2.95 6.01 +enclose enclore ver f s 0.00 1.28 0.00 0.20 par:pas; +encloses enclore ver f p 0.00 1.28 0.00 0.41 par:pas; +enclosure enclosure nom f s 0.01 0.07 0.01 0.07 +enclouer enclouer ver 0.00 0.07 0.00 0.07 inf; +enclume enclume nom f s 0.82 5.20 0.49 5.14 +enclumes enclume nom f p 0.82 5.20 0.33 0.07 +encoche encoche nom f s 0.26 2.23 0.13 1.49 +encoches encoche nom f p 0.26 2.23 0.13 0.74 +encoché encocher ver m s 0.00 0.07 0.00 0.07 par:pas; +encoconner encoconner ver 0.00 0.20 0.00 0.07 inf; +encoconnée encoconner ver f s 0.00 0.20 0.00 0.14 par:pas; +encodage encodage nom m s 0.06 0.00 0.06 0.00 +encode encoder ver 1.08 0.00 0.03 0.00 ind:pre:1s;ind:pre:3s; +encoder encoder ver 1.08 0.00 0.06 0.00 inf; +encodeur encodeur nom m s 0.06 0.00 0.06 0.00 +encodé encoder ver m s 1.08 0.00 0.89 0.00 par:pas; +encodée encoder ver f s 1.08 0.00 0.05 0.00 par:pas; +encodés encoder ver m p 1.08 0.00 0.05 0.00 par:pas; +encoignure encoignure nom f s 0.00 4.19 0.00 3.04 +encoignures encoignure nom f p 0.00 4.19 0.00 1.15 +encollage encollage nom m s 0.00 0.07 0.00 0.07 +encollait encoller ver 0.00 0.34 0.00 0.07 ind:imp:3s; +encoller encoller ver 0.00 0.34 0.00 0.07 inf; +encolleuses encolleur nom f p 0.00 0.07 0.00 0.07 +encollé encoller ver m s 0.00 0.34 0.00 0.07 par:pas; +encollée encoller ver f s 0.00 0.34 0.00 0.07 par:pas; +encollées encoller ver f p 0.00 0.34 0.00 0.07 par:pas; +encolure encolure nom f s 0.17 6.69 0.17 6.01 +encolures encolure nom f p 0.17 6.69 0.00 0.68 +encolérée encoléré adj f s 0.00 0.14 0.00 0.07 +encolérés encoléré adj m p 0.00 0.14 0.00 0.07 +encombra encombrer ver 2.22 30.41 0.00 0.14 ind:pas:3s; +encombraient encombrer ver 2.22 30.41 0.02 3.24 ind:imp:3p; +encombrais encombrer ver 2.22 30.41 0.00 0.07 ind:imp:1s; +encombrait encombrer ver 2.22 30.41 0.14 2.30 ind:imp:3s; +encombrant encombrant adj m s 1.42 6.08 0.47 2.70 +encombrante encombrant adj f s 1.42 6.08 0.50 1.55 +encombrantes encombrant adj f p 1.42 6.08 0.01 0.47 +encombrants encombrant adj m p 1.42 6.08 0.45 1.35 +encombre encombre nom m s 0.71 1.69 0.47 1.55 +encombrement encombrement nom m s 0.23 3.72 0.05 2.23 +encombrements encombrement nom m p 0.23 3.72 0.18 1.49 +encombrent encombrer ver 2.22 30.41 0.10 1.82 ind:pre:3p; +encombrer encombrer ver 2.22 30.41 0.47 3.65 inf; +encombrera encombrer ver 2.22 30.41 0.01 0.20 ind:fut:3s; +encombrerai encombrer ver 2.22 30.41 0.11 0.00 ind:fut:1s; +encombrerait encombrer ver 2.22 30.41 0.00 0.07 cnd:pre:3s; +encombres encombre nom m p 0.71 1.69 0.25 0.14 +encombrez encombrer ver 2.22 30.41 0.08 0.07 imp:pre:2p;ind:pre:2p; +encombrèrent encombrer ver 2.22 30.41 0.00 0.07 ind:pas:3p; +encombré encombrer ver m s 2.22 30.41 0.35 5.34 par:pas; +encombrée encombrer ver f s 2.22 30.41 0.17 6.49 par:pas; +encombrées encombrer ver f p 2.22 30.41 0.09 2.50 par:pas; +encombrés encombrer ver m p 2.22 30.41 0.17 2.09 par:pas; +encor encor adv 0.42 0.27 0.42 0.27 +encorbellement encorbellement nom m s 0.02 1.01 0.01 0.68 +encorbellements encorbellement nom m p 0.02 1.01 0.01 0.34 +encorder encorder ver 0.11 0.47 0.10 0.20 inf; +encordé encorder ver m s 0.11 0.47 0.01 0.07 par:pas; +encordée encorder ver f s 0.11 0.47 0.00 0.07 par:pas; +encordés encorder ver m p 0.11 0.47 0.00 0.14 par:pas; +encore encore adv_sup 1176.94 1579.05 1176.94 1579.05 +encornaient encorner ver 0.20 0.07 0.00 0.07 ind:imp:3p; +encorner encorner ver 0.20 0.07 0.20 0.00 inf; +encornet encornet nom m s 0.15 0.07 0.14 0.00 +encornets encornet nom m p 0.15 0.07 0.01 0.07 +encorné encorné adj m s 0.00 0.27 0.00 0.07 +encornée encorné adj f s 0.00 0.27 0.00 0.07 +encornés encorné adj m p 0.00 0.27 0.00 0.14 +encotonne encotonner ver 0.00 0.14 0.00 0.07 sub:pre:3s; +encotonner encotonner ver 0.00 0.14 0.00 0.07 inf; +encourage encourager ver 15.24 27.57 3.99 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +encouragea encourager ver 15.24 27.57 0.02 1.08 ind:pas:3s; +encourageai encourager ver 15.24 27.57 0.00 0.47 ind:pas:1s; +encourageaient encourager ver 15.24 27.57 0.25 1.08 ind:imp:3p; +encourageais encourager ver 15.24 27.57 0.14 0.68 ind:imp:1s;ind:imp:2s; +encourageait encourager ver 15.24 27.57 0.44 3.58 ind:imp:3s; +encourageant encourageant adj m s 1.49 3.31 1.05 1.89 +encourageante encourageant adj f s 1.49 3.31 0.14 0.61 +encourageantes encourageant adj f p 1.49 3.31 0.07 0.54 +encourageants encourageant adj m p 1.49 3.31 0.24 0.27 +encourageas encourager ver 15.24 27.57 0.00 0.07 ind:pas:2s; +encouragement encouragement nom m s 2.18 6.42 1.00 3.65 +encouragements encouragement nom m p 2.18 6.42 1.18 2.77 +encouragent encourager ver 15.24 27.57 0.82 0.34 ind:pre:3p; +encourageons encourager ver 15.24 27.57 0.42 0.07 imp:pre:1p;ind:pre:1p; +encourageât encourager ver 15.24 27.57 0.00 0.14 sub:imp:3s; +encourager encourager ver 15.24 27.57 4.42 7.03 inf; +encouragera encourager ver 15.24 27.57 0.11 0.07 ind:fut:3s; +encouragerai encourager ver 15.24 27.57 0.09 0.14 ind:fut:1s; +encouragerais encourager ver 15.24 27.57 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +encouragerait encourager ver 15.24 27.57 0.08 0.07 cnd:pre:3s; +encourageras encourager ver 15.24 27.57 0.03 0.00 ind:fut:2s; +encourages encourager ver 15.24 27.57 0.52 0.20 ind:pre:2s; +encouragez encourager ver 15.24 27.57 0.57 0.14 imp:pre:2p;ind:pre:2p; +encouragiez encourager ver 15.24 27.57 0.05 0.07 ind:imp:2p; +encouragèrent encourager ver 15.24 27.57 0.01 0.20 ind:pas:3p; +encouragé encourager ver m s 15.24 27.57 1.79 4.32 par:pas; +encouragée encourager ver f s 15.24 27.57 0.73 1.35 par:pas; +encouragées encourager ver f p 15.24 27.57 0.04 0.20 par:pas; +encouragés encourager ver m p 15.24 27.57 0.23 1.22 par:pas; +encouraient encourir ver 1.10 2.30 0.03 0.14 ind:imp:3p; +encourais encourir ver 1.10 2.30 0.03 0.00 ind:imp:1s;ind:imp:2s; +encourait encourir ver 1.10 2.30 0.01 0.34 ind:imp:3s; +encourant encourir ver 1.10 2.30 0.01 0.07 par:pre; +encourent encourir ver 1.10 2.30 0.05 0.07 ind:pre:3p; +encourir encourir ver 1.10 2.30 0.10 0.81 inf; +encourrait encourir ver 1.10 2.30 0.02 0.07 cnd:pre:3s; +encours encourir ver 1.10 2.30 0.04 0.00 ind:pre:1s; +encourt encourir ver 1.10 2.30 0.23 0.14 ind:pre:3s; +encouru encourir ver m s 1.10 2.30 0.24 0.20 par:pas; +encourue encourir ver f s 1.10 2.30 0.13 0.07 par:pas; +encourues encourir ver f p 1.10 2.30 0.04 0.20 par:pas; +encourus encourir ver m p 1.10 2.30 0.16 0.20 par:pas; +encrage encrage nom m s 0.02 0.07 0.02 0.07 +encrait encrer ver 0.10 0.61 0.00 0.07 ind:imp:3s; +encrassait encrasser ver 0.34 0.68 0.00 0.07 ind:imp:3s; +encrasse encrasser ver 0.34 0.68 0.14 0.07 ind:pre:3s; +encrassent encrasser ver 0.34 0.68 0.00 0.07 ind:pre:3p; +encrasser encrasser ver 0.34 0.68 0.01 0.14 inf; +encrassé encrasser ver m s 0.34 0.68 0.05 0.14 par:pas; +encrassée encrasser ver f s 0.34 0.68 0.11 0.14 par:pas; +encrassées encrassé adj f p 0.02 0.27 0.01 0.07 +encrassés encrasser ver m p 0.34 0.68 0.02 0.07 par:pas; +encre encre nom f s 6.81 29.53 6.49 28.65 +encrer encrer ver 0.10 0.61 0.02 0.00 inf; +encres encre nom f p 6.81 29.53 0.32 0.88 +encreur encreur adj m s 0.07 0.07 0.07 0.00 +encreurs encreur adj m p 0.07 0.07 0.00 0.07 +encrier encrier nom m s 0.45 4.26 0.43 3.51 +encriers encrier nom m p 0.45 4.26 0.02 0.74 +encroûtaient encroûter ver 0.18 0.95 0.00 0.07 ind:imp:3p; +encroûte encroûter ver 0.18 0.95 0.02 0.00 ind:pre:1s; +encroûtement encroûtement nom m s 0.01 0.00 0.01 0.00 +encroûter encroûter ver 0.18 0.95 0.15 0.07 inf; +encroûtèrent encroûter ver 0.18 0.95 0.00 0.07 ind:pas:3p; +encroûté encroûter ver m s 0.18 0.95 0.01 0.07 par:pas; +encroûtée encroûter ver f s 0.18 0.95 0.00 0.14 par:pas; +encroûtées encroûter ver f p 0.18 0.95 0.00 0.27 par:pas; +encroûtés encroûté nom m p 0.01 0.14 0.01 0.07 +encrotté encrotter ver m s 0.00 0.07 0.00 0.07 par:pas; +encré encrer ver m s 0.10 0.61 0.01 0.07 par:pas; +encrée encrer ver f s 0.10 0.61 0.00 0.07 par:pas; +encrés encrer ver m p 0.10 0.61 0.05 0.20 par:pas; +encryptage encryptage nom m s 0.03 0.00 0.03 0.00 +encrypté encrypter ver m s 0.02 0.00 0.02 0.00 par:pas; +enculade enculade nom f s 0.33 0.14 0.20 0.07 +enculades enculade nom f p 0.33 0.14 0.14 0.07 +enculage enculage nom m s 0.06 0.07 0.06 0.07 +enculant enculer ver 15.43 5.27 0.13 0.00 par:pre; +encule enculer ver 15.43 5.27 2.36 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enculent enculer ver 15.43 5.27 0.09 0.34 ind:pre:3p; +enculer enculer ver 15.43 5.27 5.88 1.89 inf; +enculera enculer ver 15.43 5.27 0.01 0.00 ind:fut:3s; +enculerais enculer ver 15.43 5.27 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +enculerait enculer ver 15.43 5.27 0.00 0.07 cnd:pre:3s; +enculerie enculerie nom f s 0.01 0.47 0.00 0.27 +enculeries enculerie nom f p 0.01 0.47 0.01 0.20 +encules enculer ver 15.43 5.27 0.29 0.14 ind:pre:2s; +enculeur enculeur nom m s 0.54 0.68 0.35 0.54 +enculeurs enculeur nom m p 0.54 0.68 0.18 0.14 +enculé enculé adj m s 31.77 4.73 22.73 3.45 +enculée enculer ver f s 15.43 5.27 0.20 0.20 par:pas; +enculées enculé adj f p 31.77 4.73 0.23 0.00 +enculés enculé adj m p 31.77 4.73 8.78 1.22 +encéphale encéphale nom m s 0.01 0.07 0.01 0.07 +encéphalique encéphalique adj s 0.04 0.14 0.04 0.00 +encéphaliques encéphalique adj p 0.04 0.14 0.00 0.14 +encéphalite encéphalite nom f s 0.48 0.07 0.48 0.07 +encéphalogramme encéphalogramme nom m s 0.58 0.20 0.58 0.20 +encéphalographie encéphalographie nom f s 0.02 0.07 0.02 0.07 +encéphalopathie encéphalopathie nom f s 0.05 0.00 0.05 0.00 +encyclique encyclique nom f s 0.04 0.27 0.04 0.20 +encycliques encyclique nom f p 0.04 0.27 0.00 0.07 +encyclopédie encyclopédie nom f s 1.99 2.64 1.14 1.28 +encyclopédies encyclopédie nom f p 1.99 2.64 0.85 1.35 +encyclopédique encyclopédique adj s 0.12 0.74 0.12 0.61 +encyclopédiques encyclopédique adj f p 0.12 0.74 0.00 0.14 +encyclopédistes encyclopédiste nom p 0.00 0.14 0.00 0.14 +endettait endetter ver 1.41 1.01 0.01 0.07 ind:imp:3s; +endettant endetter ver 1.41 1.01 0.00 0.07 par:pre; +endette endetter ver 1.41 1.01 0.02 0.14 ind:pre:3s; +endettement endettement nom m s 0.09 0.07 0.09 0.07 +endetter endetter ver 1.41 1.01 0.18 0.27 inf; +endettez endetter ver 1.41 1.01 0.14 0.00 imp:pre:2p;ind:pre:2p; +endetté endetter ver m s 1.41 1.01 0.79 0.34 par:pas; +endettée endetté adj f s 0.45 0.20 0.23 0.07 +endettées endetter ver f p 1.41 1.01 0.01 0.00 par:pas; +endettés endetter ver m p 1.41 1.01 0.14 0.00 par:pas; +endeuille endeuiller ver 0.19 0.81 0.00 0.14 ind:pre:3s; +endeuillent endeuiller ver 0.19 0.81 0.01 0.00 ind:pre:3p; +endeuiller endeuiller ver 0.19 0.81 0.01 0.14 inf; +endeuillerai endeuiller ver 0.19 0.81 0.14 0.00 ind:fut:1s; +endeuillé endeuillé adj m s 0.20 1.35 0.11 0.20 +endeuillée endeuillé adj f s 0.20 1.35 0.06 0.61 +endeuillées endeuillé adj f p 0.20 1.35 0.01 0.20 +endeuillés endeuillé adj m p 0.20 1.35 0.02 0.34 +endiable endiabler ver 0.03 0.47 0.00 0.14 ind:pre:3s; +endiablent endiabler ver 0.03 0.47 0.00 0.07 ind:pre:3p; +endiablerez endiabler ver 0.03 0.47 0.00 0.07 ind:fut:2p; +endiablé endiablé adj m s 0.43 1.22 0.17 0.34 +endiablée endiablé adj f s 0.43 1.22 0.19 0.61 +endiablées endiablé adj f p 0.43 1.22 0.06 0.20 +endiablés endiablé adj m p 0.43 1.22 0.01 0.07 +endiamanté endiamanté adj m s 0.01 0.61 0.00 0.14 +endiamantée endiamanté adj f s 0.01 0.61 0.01 0.20 +endiamantées endiamanté adj f p 0.01 0.61 0.00 0.20 +endiamantés endiamanté adj m p 0.01 0.61 0.00 0.07 +endigua endiguer ver 0.56 1.82 0.00 0.14 ind:pas:3s; +endiguait endiguer ver 0.56 1.82 0.00 0.07 ind:imp:3s; +endigue endiguer ver 0.56 1.82 0.03 0.00 ind:pre:3s; +endiguement endiguement nom m s 0.11 0.00 0.11 0.00 +endiguer endiguer ver 0.56 1.82 0.40 1.35 inf; +endiguera endiguer ver 0.56 1.82 0.01 0.00 ind:fut:3s; +endigué endiguer ver m s 0.56 1.82 0.10 0.07 par:pas; +endiguée endiguer ver f s 0.56 1.82 0.01 0.20 par:pas; +endigués endiguer ver m p 0.56 1.82 0.01 0.00 par:pas; +endimanchait endimancher ver 0.04 1.08 0.00 0.07 ind:imp:3s; +endimanchement endimanchement nom m s 0.00 0.07 0.00 0.07 +endimancher endimancher ver 0.04 1.08 0.00 0.14 inf; +endimanché endimanché adj m s 0.21 3.18 0.06 0.61 +endimanchée endimanché adj f s 0.21 3.18 0.04 0.54 +endimanchées endimanché adj f p 0.21 3.18 0.00 0.74 +endimanchés endimanché adj m p 0.21 3.18 0.11 1.28 +endive endive nom f s 0.87 0.95 0.03 0.14 +endives endive nom f p 0.87 0.95 0.84 0.81 +endivisionnés endivisionner ver m p 0.00 0.07 0.00 0.07 par:pas; +endocarde endocarde nom m s 0.01 0.00 0.01 0.00 +endocardite endocardite nom f s 0.14 0.00 0.14 0.00 +endocrine endocrine adj f s 0.02 0.20 0.01 0.07 +endocrines endocrine adj f p 0.02 0.20 0.01 0.14 +endocrinien endocrinien adj m s 0.04 0.07 0.01 0.00 +endocrinienne endocrinien adj f s 0.04 0.07 0.02 0.00 +endocriniens endocrinien adj m p 0.04 0.07 0.01 0.07 +endocrinologie endocrinologie nom f s 0.07 0.27 0.07 0.27 +endocrinologiste endocrinologiste nom s 0.01 0.00 0.01 0.00 +endocrinologue endocrinologue nom s 0.04 0.07 0.04 0.07 +endoctrina endoctriner ver 0.20 0.34 0.00 0.07 ind:pas:3s; +endoctrinement endoctrinement nom m s 0.13 0.27 0.13 0.27 +endoctriner endoctriner ver 0.20 0.34 0.04 0.14 inf; +endoctriné endoctriner ver m s 0.20 0.34 0.01 0.07 par:pas; +endoctrinée endoctriner ver f s 0.20 0.34 0.11 0.07 par:pas; +endoctrinés endoctriner ver m p 0.20 0.34 0.05 0.00 par:pas; +endogamie endogamie nom f s 0.02 0.34 0.02 0.34 +endogène endogène adj f s 0.03 0.14 0.03 0.14 +endolori endolori adj m s 0.50 1.28 0.29 0.27 +endolorie endolorir ver f s 0.16 0.74 0.10 0.20 par:pas; +endolories endolori adj f p 0.50 1.28 0.01 0.20 +endolorir endolorir ver 0.16 0.74 0.00 0.07 inf; +endoloris endolori adj m p 0.50 1.28 0.16 0.20 +endolorissement endolorissement nom m s 0.03 0.20 0.03 0.20 +endommagea endommager ver 5.28 1.82 0.00 0.07 ind:pas:3s; +endommageant endommager ver 5.28 1.82 0.06 0.07 par:pre; +endommagement endommagement nom m s 0.02 0.00 0.01 0.00 +endommagements endommagement nom m p 0.02 0.00 0.01 0.00 +endommager endommager ver 5.28 1.82 1.23 0.47 inf; +endommagera endommager ver 5.28 1.82 0.07 0.00 ind:fut:3s; +endommagerait endommager ver 5.28 1.82 0.03 0.00 cnd:pre:3s; +endommagerez endommager ver 5.28 1.82 0.03 0.00 ind:fut:2p; +endommagez endommager ver 5.28 1.82 0.15 0.00 imp:pre:2p;ind:pre:2p; +endommagé endommager ver m s 5.28 1.82 2.40 0.88 par:pas; +endommagée endommager ver f s 5.28 1.82 0.69 0.14 par:pas; +endommagées endommager ver f p 5.28 1.82 0.14 0.07 par:pas; +endommagés endommager ver m p 5.28 1.82 0.49 0.14 par:pas; +endomorphe endomorphe adj s 0.01 0.00 0.01 0.00 +endomorphine endomorphine nom f s 0.01 0.00 0.01 0.00 +endométriose endométriose nom f s 0.04 0.00 0.04 0.00 +endométrite endométrite nom f s 0.01 0.00 0.01 0.00 +endoplasmique endoplasmique adj m s 0.03 0.00 0.03 0.00 +endormîmes endormir ver 48.19 73.18 0.00 0.20 ind:pas:1p; +endormît endormir ver 48.19 73.18 0.00 0.07 sub:imp:3s; +endormaient endormir ver 48.19 73.18 0.14 1.55 ind:imp:3p; +endormais endormir ver 48.19 73.18 0.42 1.96 ind:imp:1s;ind:imp:2s; +endormait endormir ver 48.19 73.18 0.50 5.81 ind:imp:3s; +endormant endormir ver 48.19 73.18 0.35 1.35 par:pre; +endormante endormant adj f s 0.04 0.14 0.01 0.07 +endorme endormir ver 48.19 73.18 1.30 0.95 sub:pre:1s;sub:pre:3s; +endorment endormir ver 48.19 73.18 0.98 1.28 ind:pre:3p; +endormes endormir ver 48.19 73.18 0.22 0.07 sub:pre:2s; +endormeur endormeur nom m s 0.02 0.20 0.02 0.14 +endormeurs endormeur nom m p 0.02 0.20 0.00 0.07 +endormez endormir ver 48.19 73.18 0.73 0.20 imp:pre:2p;ind:pre:2p; +endormi endormir ver m s 48.19 73.18 12.83 11.22 par:pas; +endormie endormi adj f s 13.43 32.30 8.84 16.96 +endormies endormi adj f p 13.43 32.30 0.37 2.70 +endormions endormir ver 48.19 73.18 0.16 0.20 ind:imp:1p; +endormir endormir ver 48.19 73.18 15.36 24.39 inf; +endormira endormir ver 48.19 73.18 0.94 0.27 ind:fut:3s; +endormirai endormir ver 48.19 73.18 0.47 0.20 ind:fut:1s; +endormiraient endormir ver 48.19 73.18 0.00 0.14 cnd:pre:3p; +endormirais endormir ver 48.19 73.18 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +endormirait endormir ver 48.19 73.18 0.02 0.47 cnd:pre:3s; +endormirent endormir ver 48.19 73.18 0.02 0.27 ind:pas:3p; +endormirez endormir ver 48.19 73.18 0.04 0.07 ind:fut:2p; +endormirions endormir ver 48.19 73.18 0.01 0.00 cnd:pre:1p; +endormiront endormir ver 48.19 73.18 0.06 0.14 ind:fut:3p; +endormis endormi adj m p 13.43 32.30 1.27 4.05 +endormisse endormir ver 48.19 73.18 0.00 0.07 sub:imp:1s; +endormissement endormissement nom m s 0.04 0.07 0.04 0.00 +endormissements endormissement nom m p 0.04 0.07 0.00 0.07 +endormit endormir ver 48.19 73.18 0.20 7.77 ind:pas:3s; +endormons endormir ver 48.19 73.18 0.29 0.27 imp:pre:1p;ind:pre:1p; +endorphine endorphine nom f s 1.33 0.07 0.29 0.00 +endorphines endorphine nom f p 1.33 0.07 1.04 0.07 +endors endormir ver 48.19 73.18 6.08 3.85 imp:pre:2s;ind:pre:1s;ind:pre:2s; +endort endormir ver 48.19 73.18 5.67 5.34 ind:pre:3s; +endoscope endoscope nom m s 0.15 0.00 0.15 0.00 +endoscopie endoscopie nom f s 0.25 0.07 0.25 0.07 +endoscopique endoscopique adj s 0.01 0.00 0.01 0.00 +endosquelette endosquelette nom m s 0.01 0.00 0.01 0.00 +endossa endosser ver 2.29 5.68 0.00 0.34 ind:pas:3s; +endossables endossable adj m p 0.01 0.00 0.01 0.00 +endossai endosser ver 2.29 5.68 0.01 0.07 ind:pas:1s; +endossaient endosser ver 2.29 5.68 0.00 0.07 ind:imp:3p; +endossais endosser ver 2.29 5.68 0.01 0.07 ind:imp:1s; +endossait endosser ver 2.29 5.68 0.01 0.34 ind:imp:3s; +endossant endosser ver 2.29 5.68 0.12 0.27 par:pre; +endosse endosser ver 2.29 5.68 0.28 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +endossement endossement nom m s 0.26 0.00 0.26 0.00 +endossent endosser ver 2.29 5.68 0.02 0.07 ind:pre:3p; +endosser endosser ver 2.29 5.68 1.13 2.36 inf; +endosserai endosser ver 2.29 5.68 0.04 0.00 ind:fut:1s; +endosserais endosser ver 2.29 5.68 0.00 0.07 cnd:pre:1s; +endosserait endosser ver 2.29 5.68 0.00 0.14 cnd:pre:3s; +endosseras endosser ver 2.29 5.68 0.01 0.00 ind:fut:2s; +endosses endosser ver 2.29 5.68 0.03 0.00 ind:pre:2s; +endosseur endosseur nom m s 0.00 0.07 0.00 0.07 +endossez endosser ver 2.29 5.68 0.23 0.07 imp:pre:2p;ind:pre:2p; +endossiez endosser ver 2.29 5.68 0.01 0.07 ind:imp:2p; +endossât endosser ver 2.29 5.68 0.00 0.14 sub:imp:3s; +endossèrent endosser ver 2.29 5.68 0.00 0.14 ind:pas:3p; +endossé endosser ver m s 2.29 5.68 0.24 0.68 par:pas; +endossée endosser ver f s 2.29 5.68 0.10 0.14 par:pas; +endossées endosser ver f p 2.29 5.68 0.00 0.07 par:pas; +endossés endosser ver m p 2.29 5.68 0.05 0.00 par:pas; +endothermique endothermique adj f s 0.01 0.00 0.01 0.00 +endroit endroit nom m s 218.24 137.57 196.75 108.65 +endroits endroit nom m p 218.24 137.57 21.48 28.92 +enduira enduire ver 1.25 7.50 0.01 0.00 ind:fut:3s; +enduirais enduire ver 1.25 7.50 0.00 0.07 cnd:pre:1s; +enduirait enduire ver 1.25 7.50 0.00 0.07 cnd:pre:3s; +enduire enduire ver 1.25 7.50 0.18 1.35 inf; +enduis enduire ver 1.25 7.50 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +enduisaient enduire ver 1.25 7.50 0.00 0.27 ind:imp:3p; +enduisait enduire ver 1.25 7.50 0.00 0.61 ind:imp:3s; +enduisant enduire ver 1.25 7.50 0.00 0.27 par:pre; +enduisent enduire ver 1.25 7.50 0.12 0.20 ind:pre:3p; +enduisit enduire ver 1.25 7.50 0.00 0.34 ind:pas:3s; +enduisons enduire ver 1.25 7.50 0.11 0.00 imp:pre:1p;ind:pre:1p; +enduit enduire ver m s 1.25 7.50 0.49 1.42 ind:pre:3s;par:pas; +enduite enduire ver f s 1.25 7.50 0.07 1.15 par:pas; +enduites enduire ver f p 1.25 7.50 0.03 0.81 par:pas; +enduits enduire ver m p 1.25 7.50 0.04 0.88 par:pas; +endémique endémique adj s 0.11 1.01 0.11 0.88 +endémiques endémique adj f p 0.11 1.01 0.00 0.14 +endura endurer ver 9.67 7.57 0.00 0.14 ind:pas:3s; +endurable endurable adj s 0.00 0.07 0.00 0.07 +enduraient endurer ver 9.67 7.57 0.02 0.07 ind:imp:3p; +endurais endurer ver 9.67 7.57 0.02 0.07 ind:imp:1s; +endurait endurer ver 9.67 7.57 0.04 0.20 ind:imp:3s; +endurance endurance nom f s 1.72 2.43 1.72 2.43 +endurant endurant adj m s 0.14 0.34 0.10 0.14 +endurante endurant adj f s 0.14 0.34 0.03 0.07 +endurants endurant adj m p 0.14 0.34 0.01 0.14 +endurci endurcir ver m s 2.11 2.09 0.51 0.61 par:pas; +endurcie endurcir ver f s 2.11 2.09 0.28 0.20 par:pas; +endurcies endurci adj f p 1.19 1.28 0.01 0.00 +endurcir endurcir ver 2.11 2.09 0.91 0.68 inf; +endurcirait endurcir ver 2.11 2.09 0.01 0.00 cnd:pre:3s; +endurcis endurci adj m p 1.19 1.28 0.43 0.61 +endurcissait endurcir ver 2.11 2.09 0.01 0.00 ind:imp:3s; +endurcissement endurcissement nom m s 0.40 0.61 0.40 0.61 +endurcit endurcir ver 2.11 2.09 0.24 0.34 ind:pre:3s;ind:pas:3s; +endure endurer ver 9.67 7.57 1.58 0.47 ind:pre:1s;ind:pre:3s; +endurent endurer ver 9.67 7.57 0.17 0.07 ind:pre:3p; +endurer endurer ver 9.67 7.57 3.70 3.58 inf; +endurera endurer ver 9.67 7.57 0.00 0.07 ind:fut:3s; +endurerai endurer ver 9.67 7.57 0.14 0.00 ind:fut:1s; +endureras endurer ver 9.67 7.57 0.01 0.00 ind:fut:2s; +endurez endurer ver 9.67 7.57 0.40 0.00 imp:pre:2p;ind:pre:2p; +enduriez endurer ver 9.67 7.57 0.01 0.00 ind:imp:2p; +endurons endurer ver 9.67 7.57 0.02 0.00 ind:pre:1p; +enduré endurer ver m s 9.67 7.57 3.08 1.82 par:pas; +endurée endurer ver f s 9.67 7.57 0.05 0.14 par:pas; +endurées endurer ver f p 9.67 7.57 0.19 0.54 par:pas; +endurés endurer ver m p 9.67 7.57 0.16 0.27 par:pas; +endêver endêver ver 0.00 0.07 0.00 0.07 inf; +enfance enfance nom f s 33.01 103.99 32.70 103.11 +enfances enfance nom f p 33.01 103.99 0.31 0.88 +enfant_robot enfant_robot nom s 0.16 0.00 0.16 0.00 +enfant_roi enfant_roi nom s 0.02 0.14 0.02 0.14 +enfant enfant nom s 735.59 725.68 287.26 381.96 +enfanta enfanter ver 1.96 3.99 0.00 0.14 ind:pas:3s; +enfantaient enfanter ver 1.96 3.99 0.00 0.07 ind:imp:3p; +enfantait enfanter ver 1.96 3.99 0.00 0.34 ind:imp:3s; +enfante enfanter ver 1.96 3.99 0.20 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfantelets enfantelet nom m p 0.00 0.07 0.00 0.07 +enfantement enfantement nom m s 0.25 0.81 0.25 0.74 +enfantements enfantement nom m p 0.25 0.81 0.00 0.07 +enfantent enfanter ver 1.96 3.99 0.16 0.20 ind:pre:3p; +enfanter enfanter ver 1.96 3.99 0.80 1.08 inf; +enfantera enfanter ver 1.96 3.99 0.27 0.00 ind:fut:3s; +enfanterai enfanter ver 1.96 3.99 0.02 0.07 ind:fut:1s; +enfançon enfançon nom m s 0.10 0.34 0.00 0.27 +enfançons enfançon nom m p 0.10 0.34 0.10 0.07 +enfantillage enfantillage nom m s 1.47 3.58 0.15 1.96 +enfantillages enfantillage nom m p 1.47 3.58 1.32 1.62 +enfantin enfantin adj m s 3.39 31.15 0.89 11.01 +enfantine enfantin adj f s 3.39 31.15 2.07 13.99 +enfantinement enfantinement adv 0.10 0.41 0.10 0.41 +enfantines enfantin adj f p 3.39 31.15 0.24 3.51 +enfantins enfantin adj m p 3.39 31.15 0.19 2.64 +enfantons enfanter ver 1.96 3.99 0.00 0.07 ind:pre:1p; +enfants_robot enfants_robot nom m p 0.01 0.00 0.01 0.00 +enfants_roi enfants_roi nom m p 0.00 0.07 0.00 0.07 +enfants enfant nom m p 735.59 725.68 448.33 343.72 +enfanté enfanter ver m s 1.96 3.99 0.40 1.01 par:pas; +enfantée enfanter ver f s 1.96 3.99 0.11 0.20 par:pas; +enfantées enfanter ver f p 1.96 3.99 0.00 0.07 par:pas; +enfantés enfanter ver m p 1.96 3.99 0.00 0.20 par:pas; +enfarinait enfariner ver 0.12 0.41 0.00 0.07 ind:imp:3s; +enfarine enfariner ver 0.12 0.41 0.10 0.07 imp:pre:2s;ind:pre:3s; +enfariner enfariner ver 0.12 0.41 0.01 0.07 inf; +enfariné enfariner ver m s 0.12 0.41 0.01 0.07 par:pas; +enfarinée enfariné adj f s 0.36 0.88 0.35 0.41 +enfarinés enfariné adj m p 0.36 0.88 0.01 0.20 +enfer enfer nom m s 88.86 41.35 86.02 38.78 +enferma enfermer ver 58.81 69.86 0.29 4.12 ind:pas:3s; +enfermai enfermer ver 58.81 69.86 0.02 0.47 ind:pas:1s; +enfermaient enfermer ver 58.81 69.86 0.05 1.69 ind:imp:3p; +enfermais enfermer ver 58.81 69.86 0.20 0.47 ind:imp:1s;ind:imp:2s; +enfermait enfermer ver 58.81 69.86 0.64 5.41 ind:imp:3s; +enfermant enfermer ver 58.81 69.86 0.12 2.23 par:pre; +enferme enfermer ver 58.81 69.86 6.32 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enfermement enfermement nom m s 0.20 0.61 0.20 0.61 +enferment enfermer ver 58.81 69.86 0.76 1.28 ind:pre:3p; +enfermer enfermer ver 58.81 69.86 12.70 13.92 ind:pre:2p;inf; +enfermera enfermer ver 58.81 69.86 0.34 0.07 ind:fut:3s; +enfermerai enfermer ver 58.81 69.86 0.33 0.14 ind:fut:1s; +enfermeraient enfermer ver 58.81 69.86 0.05 0.00 cnd:pre:3p; +enfermerais enfermer ver 58.81 69.86 0.08 0.20 cnd:pre:1s; +enfermerait enfermer ver 58.81 69.86 0.35 0.20 cnd:pre:3s; +enfermerez enfermer ver 58.81 69.86 0.01 0.07 ind:fut:2p; +enfermerons enfermer ver 58.81 69.86 0.03 0.14 ind:fut:1p; +enfermeront enfermer ver 58.81 69.86 0.65 0.00 ind:fut:3p; +enfermes enfermer ver 58.81 69.86 1.27 0.34 ind:pre:2s; +enfermez enfermer ver 58.81 69.86 4.78 0.41 imp:pre:2p;ind:pre:2p; +enfermiez enfermer ver 58.81 69.86 0.03 0.07 ind:imp:2p; +enfermons enfermer ver 58.81 69.86 0.45 0.00 imp:pre:1p;ind:pre:1p; +enfermèrent enfermer ver 58.81 69.86 0.23 0.34 ind:pas:3p; +enfermé enfermer ver m s 58.81 69.86 15.25 17.03 par:pas; +enfermée enfermer ver f s 58.81 69.86 8.38 7.57 par:pas; +enfermées enfermer ver f p 58.81 69.86 1.31 1.55 par:pas; +enfermés enfermer ver m p 58.81 69.86 4.17 6.42 par:pas; +enferra enferrer ver 0.23 0.95 0.00 0.07 ind:pas:3s; +enferrait enferrer ver 0.23 0.95 0.00 0.07 ind:imp:3s; +enferrant enferrer ver 0.23 0.95 0.00 0.07 par:pre; +enferre enferrer ver 0.23 0.95 0.01 0.14 ind:pre:1s;ind:pre:3s; +enferrent enferrer ver 0.23 0.95 0.00 0.07 ind:pre:3p; +enferrer enferrer ver 0.23 0.95 0.16 0.27 inf; +enferres enferrer ver 0.23 0.95 0.01 0.07 ind:pre:2s; +enferrez enferrer ver 0.23 0.95 0.01 0.00 ind:pre:2p; +enferrons enferrer ver 0.23 0.95 0.01 0.00 ind:pre:1p; +enferré enferrer ver m s 0.23 0.95 0.02 0.14 par:pas; +enferrée enferrer ver f s 0.23 0.95 0.00 0.07 par:pas; +enfers enfer nom m p 88.86 41.35 2.85 2.57 +enfiche enficher ver 0.00 0.07 0.00 0.07 ind:pre:1s; +enfila enfiler ver 11.42 44.86 0.11 8.99 ind:pas:3s; +enfilade enfilade nom f s 0.16 6.28 0.16 5.00 +enfilades enfilade nom f p 0.16 6.28 0.00 1.28 +enfilage enfilage nom m s 0.00 0.20 0.00 0.20 +enfilai enfiler ver 11.42 44.86 0.01 1.76 ind:pas:1s; +enfilaient enfiler ver 11.42 44.86 0.02 0.54 ind:imp:3p; +enfilais enfiler ver 11.42 44.86 0.12 0.61 ind:imp:1s; +enfilait enfiler ver 11.42 44.86 0.05 3.65 ind:imp:3s; +enfilant enfiler ver 11.42 44.86 0.14 2.16 par:pre; +enfile enfiler ver 11.42 44.86 4.46 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfilent enfiler ver 11.42 44.86 0.06 0.54 ind:pre:3p; +enfiler enfiler ver 11.42 44.86 2.74 10.95 inf; +enfilera enfiler ver 11.42 44.86 0.10 0.00 ind:fut:3s; +enfilerai enfiler ver 11.42 44.86 0.02 0.27 ind:fut:1s; +enfileraient enfiler ver 11.42 44.86 0.00 0.07 cnd:pre:3p; +enfilerais enfiler ver 11.42 44.86 0.06 0.14 cnd:pre:1s; +enfilerait enfiler ver 11.42 44.86 0.00 0.34 cnd:pre:3s; +enfilerez enfiler ver 11.42 44.86 0.01 0.00 ind:fut:2p; +enfileront enfiler ver 11.42 44.86 0.01 0.00 ind:fut:3p; +enfiles enfiler ver 11.42 44.86 0.42 0.34 ind:pre:2s; +enfileur enfileur nom m s 0.00 0.14 0.00 0.14 +enfilez enfiler ver 11.42 44.86 1.20 0.20 imp:pre:2p;ind:pre:2p; +enfilions enfiler ver 11.42 44.86 0.00 0.20 ind:imp:1p; +enfilons enfiler ver 11.42 44.86 0.09 0.07 imp:pre:1p;ind:pre:1p; +enfilèrent enfiler ver 11.42 44.86 0.11 0.54 ind:pas:3p; +enfilé enfiler ver m s 11.42 44.86 1.35 6.28 par:pas; +enfilée enfiler ver f s 11.42 44.86 0.28 0.68 par:pas; +enfilées enfiler ver f p 11.42 44.86 0.01 0.41 par:pas; +enfilés enfiler ver m p 11.42 44.86 0.04 0.34 par:pas; +enfin enfin adv_sup 265.83 440.27 265.83 440.27 +enfièvre enfiévrer ver 0.03 1.42 0.00 0.20 ind:pre:3s; +enfièvrent enfiévrer ver 0.03 1.42 0.00 0.07 ind:pre:3p; +enfiévra enfiévrer ver 0.03 1.42 0.00 0.07 ind:pas:3s; +enfiévraient enfiévrer ver 0.03 1.42 0.00 0.14 ind:imp:3p; +enfiévrait enfiévrer ver 0.03 1.42 0.00 0.27 ind:imp:3s; +enfiévré enfiévré adj m s 0.12 0.74 0.09 0.20 +enfiévrée enfiévrer ver f s 0.03 1.42 0.01 0.27 par:pas; +enfiévrées enfiévré adj f p 0.12 0.74 0.01 0.07 +enfiévrés enfiévré adj m p 0.12 0.74 0.01 0.20 +enfla enfler ver 2.27 10.95 0.02 1.08 ind:pas:3s; +enflaient enfler ver 2.27 10.95 0.00 0.68 ind:imp:3p; +enflait enfler ver 2.27 10.95 0.01 1.89 ind:imp:3s; +enflamma enflammer ver 7.25 10.68 0.14 1.55 ind:pas:3s; +enflammai enflammer ver 7.25 10.68 0.00 0.07 ind:pas:1s; +enflammaient enflammer ver 7.25 10.68 0.00 0.54 ind:imp:3p; +enflammait enflammer ver 7.25 10.68 0.07 1.82 ind:imp:3s; +enflammant enflammer ver 7.25 10.68 0.11 0.47 par:pre; +enflamme enflammer ver 7.25 10.68 2.68 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enflamment enflammer ver 7.25 10.68 0.44 0.47 ind:pre:3p; +enflammer enflammer ver 7.25 10.68 1.59 0.81 inf; +enflammera enflammer ver 7.25 10.68 0.18 0.00 ind:fut:3s; +enflammerait enflammer ver 7.25 10.68 0.01 0.07 cnd:pre:3s; +enflammez enflammer ver 7.25 10.68 0.05 0.00 imp:pre:2p; +enflammât enflammer ver 7.25 10.68 0.00 0.07 sub:imp:3s; +enflammèrent enflammer ver 7.25 10.68 0.01 0.34 ind:pas:3p; +enflammé enflammé adj m s 2.20 4.59 1.00 1.28 +enflammée enflammer ver f s 7.25 10.68 0.65 0.61 par:pas; +enflammées enflammer ver f p 7.25 10.68 0.19 0.47 par:pas; +enflammés enflammé adj m p 2.20 4.59 0.56 0.95 +enflant enfler ver 2.27 10.95 0.00 0.88 par:pre; +enfle enfler ver 2.27 10.95 0.56 1.69 imp:pre:2s;ind:pre:3s; +enflent enfler ver 2.27 10.95 0.26 0.81 ind:pre:3p; +enfler enfler ver 2.27 10.95 0.65 1.49 inf; +enflerait enfler ver 2.27 10.95 0.01 0.00 cnd:pre:3s; +enfles enfler ver 2.27 10.95 0.02 0.07 ind:pre:2s; +enflèrent enfler ver 2.27 10.95 0.00 0.07 ind:pas:3p; +enflé enflé adj m s 1.93 3.58 0.87 1.35 +enflée enflé adj f s 1.93 3.58 0.49 1.01 +enflées enflé adj f p 1.93 3.58 0.25 0.61 +enflure enflure nom f s 2.19 2.36 1.93 2.16 +enflures enflure nom f p 2.19 2.36 0.26 0.20 +enflés enflé adj m p 1.93 3.58 0.32 0.61 +enfoiré enfoiré nom m s 39.56 4.53 30.94 3.24 +enfoirée enfoiré adj f s 14.84 0.81 0.16 0.14 +enfoirés enfoiré nom m p 39.56 4.53 8.50 1.22 +enfonce enfoncer ver 23.30 104.80 6.51 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfoncement enfoncement nom m s 0.08 0.61 0.07 0.47 +enfoncements enfoncement nom m p 0.08 0.61 0.01 0.14 +enfoncent enfoncer ver 23.30 104.80 0.68 3.31 ind:pre:3p; +enfoncer enfoncer ver 23.30 104.80 6.88 20.14 inf;; +enfoncera enfoncer ver 23.30 104.80 0.14 0.14 ind:fut:3s; +enfoncerai enfoncer ver 23.30 104.80 0.28 0.07 ind:fut:1s; +enfonceraient enfoncer ver 23.30 104.80 0.02 0.00 cnd:pre:3p; +enfoncerais enfoncer ver 23.30 104.80 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +enfoncerait enfoncer ver 23.30 104.80 0.03 0.47 cnd:pre:3s; +enfonceras enfoncer ver 23.30 104.80 0.04 0.07 ind:fut:2s; +enfoncerez enfoncer ver 23.30 104.80 0.00 0.07 ind:fut:2p; +enfoncerions enfoncer ver 23.30 104.80 0.00 0.07 cnd:pre:1p; +enfoncerons enfoncer ver 23.30 104.80 0.01 0.07 ind:fut:1p; +enfonceront enfoncer ver 23.30 104.80 0.05 0.07 ind:fut:3p; +enfonces enfoncer ver 23.30 104.80 0.92 0.27 ind:pre:2s;sub:pre:2s; +enfonceur enfonceur nom m s 0.00 0.07 0.00 0.07 +enfoncez enfoncer ver 23.30 104.80 1.52 0.41 imp:pre:2p;ind:pre:2p; +enfonciez enfoncer ver 23.30 104.80 0.14 0.00 ind:imp:2p; +enfoncions enfoncer ver 23.30 104.80 0.01 0.34 ind:imp:1p; +enfoncèrent enfoncer ver 23.30 104.80 0.01 1.22 ind:pas:3p; +enfoncé enfoncer ver m s 23.30 104.80 2.60 13.58 par:pas; +enfoncée enfoncer ver f s 23.30 104.80 0.84 5.14 par:pas; +enfoncées enfoncer ver f p 23.30 104.80 0.19 2.70 par:pas; +enfoncés enfoncer ver m p 23.30 104.80 0.40 4.53 par:pas; +enfonça enfoncer ver 23.30 104.80 0.15 9.19 ind:pas:3s; +enfonçage enfonçage nom m s 0.00 0.07 0.00 0.07 +enfonçai enfoncer ver 23.30 104.80 0.01 1.49 ind:pas:1s; +enfonçaient enfoncer ver 23.30 104.80 0.04 4.39 ind:imp:3p; +enfonçais enfoncer ver 23.30 104.80 0.34 1.89 ind:imp:1s; +enfonçait enfoncer ver 23.30 104.80 0.40 11.76 ind:imp:3s; +enfonçant enfoncer ver 23.30 104.80 0.47 5.61 par:pre; +enfonçâmes enfoncer ver 23.30 104.80 0.00 0.14 ind:pas:1p; +enfonçons enfoncer ver 23.30 104.80 0.53 0.34 imp:pre:1p;ind:pre:1p; +enfoui enfouir ver m s 4.26 26.76 1.04 7.57 par:pas; +enfouie enfouir ver f s 4.26 26.76 0.74 4.80 par:pas; +enfouies enfouir ver f p 4.26 26.76 0.62 2.09 par:pas; +enfouillais enfouiller ver 0.00 0.88 0.00 0.14 ind:imp:1s; +enfouillant enfouiller ver 0.00 0.88 0.00 0.07 par:pre; +enfouille enfouiller ver 0.00 0.88 0.00 0.07 ind:pre:3s; +enfouiller enfouiller ver 0.00 0.88 0.00 0.20 inf; +enfouillé enfouiller ver m s 0.00 0.88 0.00 0.34 par:pas; +enfouillée enfouiller ver f s 0.00 0.88 0.00 0.07 par:pas; +enfouir enfouir ver 4.26 26.76 0.71 3.24 inf; +enfouiraient enfouir ver 4.26 26.76 0.00 0.07 cnd:pre:3p; +enfouis enfouir ver m p 4.26 26.76 0.29 2.36 ind:pre:1s;par:pas; +enfouissais enfouir ver 4.26 26.76 0.00 0.27 ind:imp:1s; +enfouissait enfouir ver 4.26 26.76 0.00 1.01 ind:imp:3s; +enfouissant enfouir ver 4.26 26.76 0.01 0.88 par:pre; +enfouissement enfouissement nom m s 0.09 0.34 0.09 0.20 +enfouissements enfouissement nom m p 0.09 0.34 0.00 0.14 +enfouissent enfouir ver 4.26 26.76 0.00 0.07 ind:pre:3p; +enfouissez enfouir ver 4.26 26.76 0.11 0.00 imp:pre:2p;ind:pre:2p; +enfouissons enfouir ver 4.26 26.76 0.01 0.07 imp:pre:1p;ind:pre:1p; +enfouit enfouir ver 4.26 26.76 0.73 4.32 ind:pre:3s;ind:pas:3s; +enfouraille enfourailler ver 0.00 0.14 0.00 0.14 ind:pre:1s;ind:pre:3s; +enfouraillé enfouraillé adj m s 0.02 0.47 0.02 0.34 +enfouraillée enfouraillé adj f s 0.02 0.47 0.00 0.07 +enfouraillés enfouraillé adj m p 0.02 0.47 0.00 0.07 +enfourcha enfourcher ver 0.60 6.49 0.01 1.89 ind:pas:3s; +enfourchai enfourcher ver 0.60 6.49 0.00 0.27 ind:pas:1s; +enfourchaient enfourcher ver 0.60 6.49 0.00 0.07 ind:imp:3p; +enfourchais enfourcher ver 0.60 6.49 0.01 0.20 ind:imp:1s;ind:imp:2s; +enfourchait enfourcher ver 0.60 6.49 0.00 0.54 ind:imp:3s; +enfourchant enfourcher ver 0.60 6.49 0.01 0.27 par:pre; +enfourche enfourcher ver 0.60 6.49 0.23 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfourchement enfourchement nom m s 0.00 0.07 0.00 0.07 +enfourcher enfourcher ver 0.60 6.49 0.21 1.01 inf; +enfourcherait enfourcher ver 0.60 6.49 0.00 0.07 cnd:pre:3s; +enfourchez enfourcher ver 0.60 6.49 0.07 0.00 imp:pre:2p;ind:pre:2p; +enfourchiez enfourcher ver 0.60 6.49 0.00 0.07 ind:imp:2p; +enfourchèrent enfourcher ver 0.60 6.49 0.00 0.34 ind:pas:3p; +enfourché enfourcher ver m s 0.60 6.49 0.06 1.01 par:pas; +enfourchure enfourchure nom f s 0.10 0.07 0.10 0.07 +enfourna enfourner ver 0.47 4.93 0.01 0.47 ind:pas:3s; +enfournage enfournage nom m s 0.00 0.07 0.00 0.07 +enfournaient enfourner ver 0.47 4.93 0.00 0.07 ind:imp:3p; +enfournait enfourner ver 0.47 4.93 0.00 0.20 ind:imp:3s; +enfournant enfourner ver 0.47 4.93 0.00 0.27 par:pre; +enfourne enfourner ver 0.47 4.93 0.19 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enfournent enfourner ver 0.47 4.93 0.01 0.14 ind:pre:3p; +enfourner enfourner ver 0.47 4.93 0.24 1.08 inf; +enfourniez enfourner ver 0.47 4.93 0.00 0.07 ind:imp:2p; +enfournèrent enfourner ver 0.47 4.93 0.00 0.07 ind:pas:3p; +enfourné enfourner ver m s 0.47 4.93 0.02 0.74 par:pas; +enfournée enfourner ver f s 0.47 4.93 0.00 0.20 par:pas; +enfournées enfourner ver f p 0.47 4.93 0.00 0.07 par:pas; +enfournés enfourner ver m p 0.47 4.93 0.00 0.41 par:pas; +enfreignaient enfreindre ver 6.67 1.96 0.10 0.07 ind:imp:3p; +enfreignais enfreindre ver 6.67 1.96 0.05 0.00 ind:imp:1s;ind:imp:2s; +enfreignait enfreindre ver 6.67 1.96 0.09 0.20 ind:imp:3s; +enfreignant enfreindre ver 6.67 1.96 0.02 0.00 par:pre; +enfreignent enfreindre ver 6.67 1.96 0.16 0.00 ind:pre:3p; +enfreignez enfreindre ver 6.67 1.96 0.19 0.00 ind:pre:2p; +enfreindra enfreindre ver 6.67 1.96 0.07 0.00 ind:fut:3s; +enfreindrai enfreindre ver 6.67 1.96 0.03 0.00 ind:fut:1s; +enfreindrais enfreindre ver 6.67 1.96 0.02 0.00 cnd:pre:1s; +enfreindre enfreindre ver 6.67 1.96 1.86 1.15 inf; +enfreins enfreindre ver 6.67 1.96 0.47 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +enfreint enfreindre ver m s 6.67 1.96 3.33 0.54 ind:pre:3s;par:pas; +enfreinte enfreindre ver f s 6.67 1.96 0.19 0.00 par:pas; +enfreintes enfreindre ver f p 6.67 1.96 0.10 0.00 par:pas; +enfui enfuir ver m s 65.13 37.57 14.79 3.78 par:pas; +enfuie enfuir ver f s 65.13 37.57 8.71 3.38 par:pas;sub:pre:3s; +enfuient enfuir ver 65.13 37.57 2.74 1.01 ind:pre:3p; +enfuies enfuir ver f p 65.13 37.57 0.65 0.68 par:pas;sub:pre:2s; +enfuir enfuir ver 65.13 37.57 20.81 11.69 inf; +enfuira enfuir ver 65.13 37.57 0.56 0.14 ind:fut:3s; +enfuirai enfuir ver 65.13 37.57 0.54 0.20 ind:fut:1s; +enfuiraient enfuir ver 65.13 37.57 0.10 0.14 cnd:pre:3p; +enfuirais enfuir ver 65.13 37.57 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +enfuirait enfuir ver 65.13 37.57 0.30 0.20 cnd:pre:3s; +enfuiras enfuir ver 65.13 37.57 0.07 0.00 ind:fut:2s; +enfuirent enfuir ver 65.13 37.57 0.41 0.81 ind:pas:3p; +enfuiront enfuir ver 65.13 37.57 0.07 0.00 ind:fut:3p; +enfuis enfuir ver m p 65.13 37.57 6.83 3.04 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +enfuit enfuir ver 65.13 37.57 6.31 7.97 ind:pre:3s;ind:pas:3s; +enfuma enfumer ver 0.39 1.76 0.00 0.07 ind:pas:3s; +enfumaient enfumer ver 0.39 1.76 0.00 0.07 ind:imp:3p; +enfumait enfumer ver 0.39 1.76 0.01 0.20 ind:imp:3s; +enfumer enfumer ver 0.39 1.76 0.20 0.20 inf; +enfumez enfumer ver 0.39 1.76 0.03 0.00 imp:pre:2p; +enfumé enfumé adj m s 0.35 2.97 0.13 0.54 +enfumée enfumé adj f s 0.35 2.97 0.07 1.22 +enfumées enfumé adj f p 0.35 2.97 0.14 0.54 +enfumés enfumé adj m p 0.35 2.97 0.01 0.68 +enfuyaient enfuir ver 65.13 37.57 0.09 1.22 ind:imp:3p; +enfuyais enfuir ver 65.13 37.57 0.43 0.47 ind:imp:1s;ind:imp:2s; +enfuyait enfuir ver 65.13 37.57 0.67 2.03 ind:imp:3s; +enfuyant enfuir ver 65.13 37.57 0.30 0.68 par:pre; +enfuyez enfuir ver 65.13 37.57 0.41 0.00 imp:pre:2p;ind:pre:2p; +enfuyiez enfuir ver 65.13 37.57 0.06 0.00 ind:imp:2p; +enfuyons enfuir ver 65.13 37.57 0.19 0.00 imp:pre:1p;ind:pre:1p; +engage engager ver 68.19 94.59 10.49 10.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engagea engager ver 68.19 94.59 0.50 11.08 ind:pas:3s; +engageable engageable nom s 0.01 0.00 0.01 0.00 +engageai engager ver 68.19 94.59 0.01 1.01 ind:pas:1s; +engageaient engager ver 68.19 94.59 0.40 1.76 ind:imp:3p; +engageais engager ver 68.19 94.59 0.12 0.74 ind:imp:1s;ind:imp:2s; +engageait engager ver 68.19 94.59 0.47 6.89 ind:imp:3s; +engageant engager ver 68.19 94.59 0.52 2.30 par:pre; +engageante engageant adj f s 0.26 3.72 0.05 1.08 +engageantes engageant adj f p 0.26 3.72 0.00 0.20 +engageants engageant adj m p 0.26 3.72 0.00 0.20 +engagement engagement nom m s 12.12 18.45 9.46 11.69 +engagements engagement nom m p 12.12 18.45 2.66 6.76 +engagent engager ver 68.19 94.59 0.77 3.31 ind:pre:3p;sub:pre:3p; +engageâmes engager ver 68.19 94.59 0.00 0.34 ind:pas:1p; +engageons engager ver 68.19 94.59 2.55 0.41 imp:pre:1p;ind:pre:1p; +engageât engager ver 68.19 94.59 0.00 0.54 sub:imp:3s; +engager engager ver 68.19 94.59 18.97 21.35 ind:pre:2p;inf; +engagera engager ver 68.19 94.59 0.54 0.34 ind:fut:3s; +engagerai engager ver 68.19 94.59 0.55 0.07 ind:fut:1s; +engageraient engager ver 68.19 94.59 0.17 0.61 cnd:pre:3p; +engagerais engager ver 68.19 94.59 0.22 0.20 cnd:pre:1s;cnd:pre:2s; +engagerait engager ver 68.19 94.59 0.23 0.54 cnd:pre:3s; +engageriez engager ver 68.19 94.59 0.04 0.07 cnd:pre:2p; +engagerions engager ver 68.19 94.59 0.00 0.07 cnd:pre:1p; +engagerons engager ver 68.19 94.59 0.08 0.14 ind:fut:1p; +engageront engager ver 68.19 94.59 0.11 0.07 ind:fut:3p; +engages engager ver 68.19 94.59 1.22 0.14 ind:pre:2s;sub:pre:2s; +engagez engager ver 68.19 94.59 2.04 0.54 imp:pre:2p;ind:pre:2p; +engagiez engager ver 68.19 94.59 0.07 0.07 ind:imp:2p; +engagions engager ver 68.19 94.59 0.14 0.41 ind:imp:1p; +engagèrent engager ver 68.19 94.59 0.06 2.30 ind:pas:3p; +engagé engager ver m s 68.19 94.59 21.09 14.53 par:pas; +engagée engager ver f s 68.19 94.59 4.44 7.03 par:pas; +engagées engager ver f p 68.19 94.59 0.22 3.38 par:pas; +engagés engager ver m p 68.19 94.59 2.17 4.39 par:pas; +engazonnée engazonner ver f s 0.00 0.14 0.00 0.14 par:pas; +engeance engeance nom f s 0.72 3.11 0.63 3.04 +engeances engeance nom f p 0.72 3.11 0.10 0.07 +engelure engelure nom f s 0.46 0.88 0.02 0.00 +engelures engelure nom f p 0.46 0.88 0.44 0.88 +engendra engendrer ver 7.53 10.47 0.26 0.27 ind:pas:3s; +engendraient engendrer ver 7.53 10.47 0.01 0.47 ind:imp:3p; +engendrait engendrer ver 7.53 10.47 0.34 0.74 ind:imp:3s; +engendrant engendrer ver 7.53 10.47 0.05 0.41 par:pre; +engendrassent engendrer ver 7.53 10.47 0.00 0.07 sub:imp:3p; +engendre engendrer ver 7.53 10.47 1.55 2.09 imp:pre:2s;ind:pre:3s; +engendrement engendrement nom m s 0.01 0.20 0.01 0.20 +engendrent engendrer ver 7.53 10.47 0.33 0.74 ind:pre:3p; +engendrer engendrer ver 7.53 10.47 1.75 1.62 inf; +engendrera engendrer ver 7.53 10.47 0.25 0.07 ind:fut:3s; +engendreraient engendrer ver 7.53 10.47 0.01 0.00 cnd:pre:3p; +engendrerait engendrer ver 7.53 10.47 0.14 0.14 cnd:pre:3s; +engendreuse engendreur adj f s 0.00 0.07 0.00 0.07 +engendrez engendrer ver 7.53 10.47 0.06 0.07 imp:pre:2p;ind:pre:2p; +engendrons engendrer ver 7.53 10.47 0.00 0.07 imp:pre:1p; +engendrèrent engendrer ver 7.53 10.47 0.00 0.07 ind:pas:3p; +engendré engendrer ver m s 7.53 10.47 1.60 2.43 par:pas; +engendrée engendrer ver f s 7.53 10.47 0.87 0.34 par:pas; +engendrées engendrer ver f p 7.53 10.47 0.06 0.34 par:pas; +engendrés engendrer ver m p 7.53 10.47 0.25 0.54 par:pas; +engin engin nom m s 11.25 16.01 9.41 9.80 +engineering engineering nom m s 0.03 0.07 0.03 0.07 +engins engin nom m p 11.25 16.01 1.84 6.22 +englacé englacer ver m s 0.01 0.00 0.01 0.00 par:pas; +englande englander ver 0.01 0.27 0.00 0.07 ind:pre:1s; +englander englander ver 0.01 0.27 0.01 0.14 inf; +englandés englander ver m p 0.01 0.27 0.00 0.07 par:pas; +engliche engliche nom s 0.01 0.07 0.01 0.07 +engloba englober ver 0.78 4.53 0.01 0.07 ind:pas:3s; +englobaient englober ver 0.78 4.53 0.00 0.27 ind:imp:3p; +englobais englober ver 0.78 4.53 0.00 0.07 ind:imp:1s; +englobait englober ver 0.78 4.53 0.02 1.01 ind:imp:3s; +englobant englober ver 0.78 4.53 0.01 0.74 par:pre; +englobe englober ver 0.78 4.53 0.46 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +englobent englober ver 0.78 4.53 0.02 0.14 ind:pre:3p; +englober englober ver 0.78 4.53 0.06 0.68 inf; +englobera englober ver 0.78 4.53 0.01 0.07 ind:fut:3s; +engloberaient englober ver 0.78 4.53 0.00 0.07 cnd:pre:3p; +engloberait englober ver 0.78 4.53 0.01 0.00 cnd:pre:3s; +englobé englober ver m s 0.78 4.53 0.03 0.14 par:pas; +englobée englober ver f s 0.78 4.53 0.02 0.07 par:pas; +englobées englober ver f p 0.78 4.53 0.14 0.14 par:pas; +englobés englober ver m p 0.78 4.53 0.00 0.07 par:pas; +englouti engloutir ver m s 4.57 22.30 0.98 4.66 par:pas; +engloutie engloutir ver f s 4.57 22.30 0.60 2.30 par:pas; +englouties engloutir ver f p 4.57 22.30 0.02 1.08 par:pas; +engloutir engloutir ver 4.57 22.30 1.28 4.73 inf; +engloutira engloutir ver 4.57 22.30 0.07 0.14 ind:fut:3s; +engloutiraient engloutir ver 4.57 22.30 0.00 0.07 cnd:pre:3p; +engloutirait engloutir ver 4.57 22.30 0.02 0.14 cnd:pre:3s; +engloutirent engloutir ver 4.57 22.30 0.14 0.07 ind:pas:3p; +engloutirons engloutir ver 4.57 22.30 0.00 0.07 ind:fut:1p; +engloutis engloutir ver m p 4.57 22.30 0.34 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +engloutissaient engloutir ver 4.57 22.30 0.02 0.81 ind:imp:3p; +engloutissais engloutir ver 4.57 22.30 0.01 0.14 ind:imp:1s; +engloutissait engloutir ver 4.57 22.30 0.12 1.35 ind:imp:3s; +engloutissant engloutir ver 4.57 22.30 0.01 0.61 par:pre; +engloutisse engloutir ver 4.57 22.30 0.06 0.20 sub:pre:1s;sub:pre:3s; +engloutissement engloutissement nom m s 0.01 0.54 0.01 0.54 +engloutissent engloutir ver 4.57 22.30 0.06 0.74 ind:pre:3p; +engloutissions engloutir ver 4.57 22.30 0.00 0.07 ind:imp:1p; +engloutit engloutir ver 4.57 22.30 0.83 2.77 ind:pre:3s;ind:pas:3s; +engluaient engluer ver 0.40 5.20 0.00 0.20 ind:imp:3p; +engluait engluer ver 0.40 5.20 0.00 0.54 ind:imp:3s; +engluant engluer ver 0.40 5.20 0.01 0.00 par:pre; +englue engluer ver 0.40 5.20 0.01 0.61 ind:pre:3s; +engluent engluer ver 0.40 5.20 0.00 0.34 ind:pre:3p; +engluer engluer ver 0.40 5.20 0.02 0.74 inf; +englué engluer ver m s 0.40 5.20 0.20 1.01 par:pas; +engluée engluer ver f s 0.40 5.20 0.14 0.61 par:pas; +engluées engluer ver f p 0.40 5.20 0.00 0.61 par:pas; +englués engluer ver m p 0.40 5.20 0.03 0.54 par:pas; +engonce engoncer ver 0.05 4.19 0.02 0.14 ind:pre:3s; +engoncement engoncement nom m s 0.00 0.07 0.00 0.07 +engoncé engoncer ver m s 0.05 4.19 0.03 1.69 par:pas; +engoncée engoncer ver f s 0.05 4.19 0.00 0.74 par:pas; +engoncées engoncer ver f p 0.05 4.19 0.00 0.41 par:pas; +engoncés engoncer ver m p 0.05 4.19 0.00 0.88 par:pas; +engonçaient engoncer ver 0.05 4.19 0.00 0.14 ind:imp:3p; +engonçait engoncer ver 0.05 4.19 0.00 0.14 ind:imp:3s; +engonçant engoncer ver 0.05 4.19 0.00 0.07 par:pre; +engorge engorger ver 0.07 1.15 0.00 0.14 ind:pre:3s; +engorgeaient engorger ver 0.07 1.15 0.00 0.07 ind:imp:3p; +engorgeait engorger ver 0.07 1.15 0.00 0.20 ind:imp:3s; +engorgement engorgement nom m s 0.04 0.27 0.04 0.07 +engorgements engorgement nom m p 0.04 0.27 0.00 0.20 +engorgent engorger ver 0.07 1.15 0.01 0.14 ind:pre:3p; +engorger engorger ver 0.07 1.15 0.01 0.07 inf; +engorgeraient engorger ver 0.07 1.15 0.00 0.07 cnd:pre:3p; +engorgèrent engorger ver 0.07 1.15 0.00 0.07 ind:pas:3p; +engorgé engorgé adj m s 0.07 0.47 0.02 0.14 +engorgée engorgé adj f s 0.07 0.47 0.02 0.00 +engorgées engorgé adj f p 0.07 0.47 0.02 0.20 +engorgés engorgé adj m p 0.07 0.47 0.01 0.14 +engouai engouer ver 0.00 0.47 0.00 0.07 ind:pas:1s; +engouait engouer ver 0.00 0.47 0.00 0.14 ind:imp:3s; +engouement engouement nom m s 0.55 1.55 0.42 1.28 +engouements engouement nom m p 0.55 1.55 0.13 0.27 +engouffra engouffrer ver 0.61 18.58 0.01 2.36 ind:pas:3s; +engouffrai engouffrer ver 0.61 18.58 0.01 0.20 ind:pas:1s; +engouffraient engouffrer ver 0.61 18.58 0.00 1.49 ind:imp:3p; +engouffrait engouffrer ver 0.61 18.58 0.16 3.11 ind:imp:3s; +engouffrant engouffrer ver 0.61 18.58 0.00 1.76 par:pre; +engouffre engouffrer ver 0.61 18.58 0.10 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engouffrement engouffrement nom m s 0.00 0.14 0.00 0.14 +engouffrent engouffrer ver 0.61 18.58 0.03 0.61 ind:pre:3p;sub:pre:3p; +engouffrer engouffrer ver 0.61 18.58 0.09 3.24 inf; +engouffrera engouffrer ver 0.61 18.58 0.14 0.00 ind:fut:3s; +engouffreraient engouffrer ver 0.61 18.58 0.00 0.07 cnd:pre:3p; +engouffrerait engouffrer ver 0.61 18.58 0.00 0.14 cnd:pre:3s; +engouffrons engouffrer ver 0.61 18.58 0.00 0.20 ind:pre:1p; +engouffrât engouffrer ver 0.61 18.58 0.00 0.07 sub:imp:3s; +engouffrèrent engouffrer ver 0.61 18.58 0.00 0.54 ind:pas:3p; +engouffré engouffrer ver m s 0.61 18.58 0.08 0.68 par:pas; +engouffrée engouffrer ver f s 0.61 18.58 0.00 0.61 par:pas; +engouffrées engouffrer ver f p 0.61 18.58 0.00 0.14 par:pas; +engouffrés engouffrer ver m p 0.61 18.58 0.00 0.27 par:pas; +engoulevent engoulevent nom m s 0.10 0.14 0.10 0.14 +engourdi engourdi adj m s 1.34 5.61 0.49 1.89 +engourdie engourdi adj f s 1.34 5.61 0.35 1.55 +engourdies engourdi adj f p 1.34 5.61 0.34 1.01 +engourdir engourdir ver 1.72 10.34 0.33 1.15 inf; +engourdira engourdir ver 1.72 10.34 0.02 0.07 ind:fut:3s; +engourdirai engourdir ver 1.72 10.34 0.00 0.07 ind:fut:1s; +engourdirais engourdir ver 1.72 10.34 0.00 0.07 cnd:pre:1s; +engourdis engourdir ver m p 1.72 10.34 0.17 1.22 ind:pre:1s;ind:pre:2s;par:pas; +engourdissaient engourdir ver 1.72 10.34 0.00 0.27 ind:imp:3p; +engourdissait engourdir ver 1.72 10.34 0.01 2.36 ind:imp:3s; +engourdissant engourdir ver 1.72 10.34 0.00 0.14 par:pre; +engourdissante engourdissant adj f s 0.00 0.34 0.00 0.14 +engourdissantes engourdissant adj f p 0.00 0.34 0.00 0.07 +engourdissement engourdissement nom m s 0.53 5.54 0.44 5.41 +engourdissements engourdissement nom m p 0.53 5.54 0.09 0.14 +engourdissent engourdir ver 1.72 10.34 0.20 0.14 ind:pre:3p; +engourdit engourdir ver 1.72 10.34 0.48 0.81 ind:pre:3s;ind:pas:3s; +engoué engouer ver m s 0.00 0.47 0.00 0.14 par:pas; +engouée engouer ver f s 0.00 0.47 0.00 0.07 par:pas; +engoués engouer ver m p 0.00 0.47 0.00 0.07 par:pas; +engrainait engrainer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +engrais engrais nom m 3.35 3.31 3.35 3.31 +engraissaient engraisser ver 2.65 4.59 0.01 0.14 ind:imp:3p; +engraissait engraisser ver 2.65 4.59 0.00 0.27 ind:imp:3s; +engraissant engraisser ver 2.65 4.59 0.14 0.14 par:pre; +engraisse engraisser ver 2.65 4.59 0.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engraissement engraissement nom m s 0.00 0.07 0.00 0.07 +engraissent engraisser ver 2.65 4.59 0.44 0.27 ind:pre:3p; +engraisser engraisser ver 2.65 4.59 1.12 0.88 inf; +engraisseraient engraisser ver 2.65 4.59 0.01 0.00 cnd:pre:3p; +engraisserait engraisser ver 2.65 4.59 0.01 0.07 cnd:pre:3s; +engraisserons engraisser ver 2.65 4.59 0.00 0.07 ind:fut:1p; +engraisses engraisser ver 2.65 4.59 0.14 0.07 ind:pre:2s; +engraissez engraisser ver 2.65 4.59 0.00 0.07 imp:pre:2p; +engraissèrent engraisser ver 2.65 4.59 0.00 0.14 ind:pas:3p; +engraissé engraisser ver m s 2.65 4.59 0.33 0.88 par:pas; +engraissée engraisser ver f s 2.65 4.59 0.01 0.27 par:pas; +engraissées engraisser ver f p 2.65 4.59 0.00 0.20 par:pas; +engraissés engraisser ver m p 2.65 4.59 0.03 0.07 par:pas; +engrange engranger ver 0.34 1.89 0.06 0.34 ind:pre:1s;ind:pre:3s; +engrangea engranger ver 0.34 1.89 0.00 0.07 ind:pas:3s; +engrangeais engranger ver 0.34 1.89 0.00 0.14 ind:imp:1s; +engrangeait engranger ver 0.34 1.89 0.01 0.20 ind:imp:3s; +engrangeant engranger ver 0.34 1.89 0.00 0.07 par:pre; +engrangement engrangement nom m s 0.00 0.07 0.00 0.07 +engrangent engranger ver 0.34 1.89 0.03 0.14 ind:pre:3p; +engrangeons engranger ver 0.34 1.89 0.00 0.07 imp:pre:1p; +engranger engranger ver 0.34 1.89 0.05 0.20 inf; +engrangé engranger ver m s 0.34 1.89 0.20 0.34 par:pas; +engrangée engranger ver f s 0.34 1.89 0.00 0.07 par:pas; +engrangées engranger ver f p 0.34 1.89 0.00 0.20 par:pas; +engrangés engranger ver m p 0.34 1.89 0.00 0.07 par:pas; +engravement engravement nom m s 0.00 0.07 0.00 0.07 +engraver engraver ver 0.00 0.07 0.00 0.07 inf; +engrenage engrenage nom m s 0.83 4.53 0.68 3.24 +engrenages engrenage nom m p 0.83 4.53 0.16 1.28 +engrenait engrener ver 0.20 0.41 0.10 0.07 ind:imp:3s; +engrenant engrener ver 0.20 0.41 0.00 0.07 par:pre; +engrener engrener ver 0.20 0.41 0.00 0.27 inf; +engrenez engrener ver 0.20 0.41 0.10 0.00 ind:pre:2p; +engrossait engrosser ver 1.74 1.82 0.00 0.14 ind:imp:3s; +engrossant engrosser ver 1.74 1.82 0.01 0.07 par:pre; +engrosse engrosser ver 1.74 1.82 0.04 0.14 ind:pre:1s;ind:pre:3s; +engrossent engrosser ver 1.74 1.82 0.02 0.00 ind:pre:3p; +engrosser engrosser ver 1.74 1.82 0.55 0.68 inf; +engrossera engrosser ver 1.74 1.82 0.00 0.07 ind:fut:3s; +engrosses engrosser ver 1.74 1.82 0.14 0.00 ind:pre:2s; +engrossé engrosser ver m s 1.74 1.82 0.45 0.27 par:pas; +engrossée engrosser ver f s 1.74 1.82 0.33 0.41 par:pas; +engrossées engrosser ver f p 1.74 1.82 0.20 0.07 par:pas; +engueula engueuler ver 13.94 12.97 0.00 0.20 ind:pas:3s; +engueulade engueulade nom f s 0.97 3.51 0.46 2.09 +engueulades engueulade nom f p 0.97 3.51 0.52 1.42 +engueulaient engueuler ver 13.94 12.97 0.17 0.41 ind:imp:3p; +engueulais engueuler ver 13.94 12.97 0.04 0.20 ind:imp:1s;ind:imp:2s; +engueulait engueuler ver 13.94 12.97 0.56 1.08 ind:imp:3s; +engueulant engueuler ver 13.94 12.97 0.03 0.20 par:pre; +engueule engueuler ver 13.94 12.97 2.96 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engueulent engueuler ver 13.94 12.97 0.62 0.47 ind:pre:3p; +engueuler engueuler ver 13.94 12.97 4.23 5.20 inf; +engueulera engueuler ver 13.94 12.97 0.18 0.14 ind:fut:3s; +engueuleraient engueuler ver 13.94 12.97 0.01 0.00 cnd:pre:3p; +engueulerait engueuler ver 13.94 12.97 0.02 0.14 cnd:pre:3s; +engueuleras engueuler ver 13.94 12.97 0.02 0.00 ind:fut:2s; +engueulerez engueuler ver 13.94 12.97 0.02 0.00 ind:fut:2p; +engueuleront engueuler ver 13.94 12.97 0.23 0.07 ind:fut:3p; +engueules engueuler ver 13.94 12.97 0.45 0.14 ind:pre:2s; +engueulez engueuler ver 13.94 12.97 0.44 0.07 imp:pre:2p;ind:pre:2p; +engueuliez engueuler ver 13.94 12.97 0.02 0.00 ind:imp:2p; +engueulions engueuler ver 13.94 12.97 0.00 0.14 ind:imp:1p; +engueulons engueuler ver 13.94 12.97 0.01 0.14 ind:pre:1p; +engueulèrent engueuler ver 13.94 12.97 0.00 0.07 ind:pas:3p; +engueulé engueuler ver m s 13.94 12.97 1.92 1.22 par:pas; +engueulée engueuler ver f s 13.94 12.97 0.77 0.14 par:pas; +engueulés engueuler ver m p 13.94 12.97 1.23 0.81 par:pas; +enguirlandaient enguirlander ver 0.16 1.28 0.00 0.14 ind:imp:3p; +enguirlandait enguirlander ver 0.16 1.28 0.00 0.14 ind:imp:3s; +enguirlande enguirlander ver 0.16 1.28 0.02 0.14 ind:pre:1s;ind:pre:3s; +enguirlandent enguirlander ver 0.16 1.28 0.00 0.07 ind:pre:3p; +enguirlander enguirlander ver 0.16 1.28 0.11 0.27 inf; +enguirlandé enguirlander ver m s 0.16 1.28 0.02 0.20 par:pas; +enguirlandée enguirlander ver f s 0.16 1.28 0.01 0.20 par:pas; +enguirlandées enguirlander ver f p 0.16 1.28 0.00 0.07 par:pas; +enguirlandés enguirlandé adj m p 0.01 0.34 0.00 0.14 +enhardi enhardir ver m s 0.19 4.32 0.01 0.54 par:pas; +enhardie enhardir ver f s 0.19 4.32 0.03 0.34 par:pas; +enhardies enhardir ver f p 0.19 4.32 0.01 0.07 par:pas; +enhardir enhardir ver 0.19 4.32 0.00 0.20 inf; +enhardirent enhardir ver 0.19 4.32 0.00 0.07 ind:pas:3p; +enhardis enhardir ver m p 0.19 4.32 0.01 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +enhardissaient enhardir ver 0.19 4.32 0.00 0.27 ind:imp:3p; +enhardissait enhardir ver 0.19 4.32 0.00 0.68 ind:imp:3s; +enhardissant enhardir ver 0.19 4.32 0.00 0.20 par:pre; +enhardissement enhardissement nom m s 0.00 0.07 0.00 0.07 +enhardissent enhardir ver 0.19 4.32 0.11 0.27 ind:pre:3p; +enhardit enhardir ver 0.19 4.32 0.02 0.95 ind:pre:3s;ind:pas:3s; +enivra enivrer ver 3.06 8.58 0.02 0.27 ind:pas:3s; +enivrai enivrer ver 3.06 8.58 0.00 0.07 ind:pas:1s; +enivraient enivrer ver 3.06 8.58 0.00 0.34 ind:imp:3p; +enivrais enivrer ver 3.06 8.58 0.14 0.14 ind:imp:1s; +enivrait enivrer ver 3.06 8.58 0.01 1.35 ind:imp:3s; +enivrant enivrant adj m s 1.20 3.38 0.80 1.08 +enivrante enivrant adj f s 1.20 3.38 0.35 1.08 +enivrantes enivrant adj f p 1.20 3.38 0.02 0.81 +enivrants enivrant adj m p 1.20 3.38 0.02 0.41 +enivre enivrer ver 3.06 8.58 0.90 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enivrement enivrement nom m s 0.02 0.68 0.02 0.68 +enivrent enivrer ver 3.06 8.58 0.04 0.41 ind:pre:3p; +enivrer enivrer ver 3.06 8.58 0.91 0.88 inf; +enivreras enivrer ver 3.06 8.58 0.00 0.07 ind:fut:2s; +enivrerez enivrer ver 3.06 8.58 0.00 0.07 ind:fut:2p; +enivres enivrer ver 3.06 8.58 0.14 0.07 ind:pre:2s; +enivrez enivrer ver 3.06 8.58 0.14 0.00 imp:pre:2p;ind:pre:2p; +enivrons enivrer ver 3.06 8.58 0.01 0.00 imp:pre:1p; +enivrèrent enivrer ver 3.06 8.58 0.00 0.07 ind:pas:3p; +enivré enivrer ver m s 3.06 8.58 0.47 1.35 par:pas; +enivrée enivrer ver f s 3.06 8.58 0.21 0.68 par:pas; +enivrées enivrer ver f p 3.06 8.58 0.00 0.07 par:pas; +enivrés enivrer ver m p 3.06 8.58 0.02 0.54 par:pas; +enjôlait enjôler ver 1.07 0.20 0.00 0.07 ind:imp:3s; +enjôlant enjôler ver 1.07 0.20 0.00 0.07 par:pre; +enjôle enjôler ver 1.07 0.20 0.10 0.00 imp:pre:2s; +enjôlement enjôlement nom m s 0.00 0.07 0.00 0.07 +enjôler enjôler ver 1.07 0.20 0.78 0.07 inf; +enjôleur enjôleur adj m s 0.19 1.76 0.17 0.95 +enjôleurs enjôleur nom m p 0.19 0.20 0.01 0.00 +enjôleuse enjôleur nom f s 0.19 0.20 0.02 0.07 +enjôleuses enjôleur adj f p 0.19 1.76 0.00 0.07 +enjôlé enjôler ver m s 1.07 0.20 0.04 0.00 par:pas; +enjôlée enjôler ver f s 1.07 0.20 0.14 0.00 par:pas; +enjamba enjamber ver 0.86 14.80 0.00 2.16 ind:pas:3s; +enjambai enjamber ver 0.86 14.80 0.00 0.27 ind:pas:1s; +enjambaient enjamber ver 0.86 14.80 0.00 0.47 ind:imp:3p; +enjambais enjamber ver 0.86 14.80 0.00 0.07 ind:imp:1s; +enjambait enjamber ver 0.86 14.80 0.02 1.55 ind:imp:3s; +enjambant enjamber ver 0.86 14.80 0.02 1.42 par:pre; +enjambe enjamber ver 0.86 14.80 0.09 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enjambements enjambement nom m p 0.00 0.07 0.00 0.07 +enjambent enjamber ver 0.86 14.80 0.01 0.61 ind:pre:3p; +enjamber enjamber ver 0.86 14.80 0.42 2.84 inf; +enjamberais enjamber ver 0.86 14.80 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +enjamberait enjamber ver 0.86 14.80 0.00 0.07 cnd:pre:3s; +enjambes enjamber ver 0.86 14.80 0.01 0.07 ind:pre:2s; +enjambeur enjambeur nom m s 0.00 0.34 0.00 0.20 +enjambeurs enjambeur nom m p 0.00 0.34 0.00 0.14 +enjambez enjamber ver 0.86 14.80 0.05 0.00 imp:pre:2p; +enjambions enjamber ver 0.86 14.80 0.00 0.07 ind:imp:1p; +enjambons enjamber ver 0.86 14.80 0.01 0.47 imp:pre:1p;ind:pre:1p; +enjambèrent enjamber ver 0.86 14.80 0.00 0.34 ind:pas:3p; +enjambé enjamber ver m s 0.86 14.80 0.07 1.08 par:pas; +enjambée enjambée nom f s 0.15 6.76 0.06 0.81 +enjambées enjambée nom f p 0.15 6.76 0.09 5.95 +enjambés enjamber ver m p 0.86 14.80 0.00 0.07 par:pas; +enjeu enjeu nom m s 4.67 4.59 3.52 3.99 +enjeux enjeu nom m p 4.67 4.59 1.16 0.61 +enjoignaient enjoindre ver 0.36 3.38 0.00 0.07 ind:imp:3p; +enjoignait enjoindre ver 0.36 3.38 0.00 0.34 ind:imp:3s; +enjoignant enjoindre ver 0.36 3.38 0.01 0.41 par:pre; +enjoignis enjoindre ver 0.36 3.38 0.00 0.20 ind:pas:1s; +enjoignit enjoindre ver 0.36 3.38 0.10 0.95 ind:pas:3s; +enjoignons enjoindre ver 0.36 3.38 0.00 0.07 ind:pre:1p; +enjoindre enjoindre ver 0.36 3.38 0.07 0.34 inf; +enjoint enjoindre ver m s 0.36 3.38 0.18 1.01 ind:pre:3s;par:pas; +enjolivaient enjoliver ver 0.34 1.82 0.00 0.07 ind:imp:3p; +enjolivait enjoliver ver 0.34 1.82 0.03 0.20 ind:imp:3s; +enjolivant enjoliver ver 0.34 1.82 0.00 0.47 par:pre; +enjolive enjoliver ver 0.34 1.82 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enjolivements enjolivement nom m p 0.00 0.07 0.00 0.07 +enjoliver enjoliver ver 0.34 1.82 0.08 0.47 inf; +enjoliveur enjoliveur nom m s 0.59 0.20 0.33 0.14 +enjoliveurs enjoliveur nom m p 0.59 0.20 0.26 0.07 +enjolivé enjoliver ver m s 0.34 1.82 0.07 0.07 par:pas; +enjolivée enjoliver ver f s 0.34 1.82 0.00 0.14 par:pas; +enjolivés enjoliver ver m p 0.34 1.82 0.00 0.14 par:pas; +enjouement enjouement nom m s 0.14 1.35 0.14 1.35 +enjoué enjoué adj m s 1.33 4.39 0.25 1.55 +enjouée enjoué adj f s 1.33 4.39 1.03 2.43 +enjouées enjoué adj f p 1.33 4.39 0.01 0.27 +enjoués enjouer ver m p 0.32 0.81 0.14 0.00 par:pas; +enjuiver enjuiver ver 0.01 0.00 0.01 0.00 inf; +enjuivés enjuivé adj m p 0.00 0.07 0.00 0.07 +enjuponne enjuponner ver 0.00 0.14 0.00 0.07 ind:pre:3s; +enjuponnée enjuponner ver f s 0.00 0.14 0.00 0.07 par:pas; +enkyster enkyster ver 0.01 0.00 0.01 0.00 inf; +enkystées enkysté adj f p 0.00 0.07 0.00 0.07 +enlace enlacer ver 4.42 15.88 0.89 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enlacement enlacement nom m s 0.03 0.81 0.03 0.41 +enlacements enlacement nom m p 0.03 0.81 0.00 0.41 +enlacent enlacer ver 4.42 15.88 0.17 0.61 ind:pre:3p; +enlacer enlacer ver 4.42 15.88 0.97 0.81 inf; +enlacerai enlacer ver 4.42 15.88 0.05 0.00 ind:fut:1s; +enlacerons enlacer ver 4.42 15.88 0.00 0.07 ind:fut:1p; +enlacez enlacer ver 4.42 15.88 0.13 0.00 imp:pre:2p;ind:pre:2p; +enlacions enlacer ver 4.42 15.88 0.00 0.07 ind:imp:1p; +enlacèrent enlacer ver 4.42 15.88 0.10 0.14 ind:pas:3p; +enlacé enlacer ver m s 4.42 15.88 0.31 1.42 par:pas; +enlacée enlacer ver f s 4.42 15.88 0.25 0.74 par:pas; +enlacées enlacer ver f p 4.42 15.88 0.07 1.28 par:pas; +enlacés enlacer ver m p 4.42 15.88 0.89 4.39 par:pas; +enlaidi enlaidir ver m s 0.76 2.30 0.29 0.34 par:pas; +enlaidie enlaidir ver f s 0.76 2.30 0.02 0.27 par:pas; +enlaidir enlaidir ver 0.76 2.30 0.11 0.47 inf; +enlaidis enlaidir ver 0.76 2.30 0.14 0.14 imp:pre:2s;ind:pre:1s; +enlaidissait enlaidir ver 0.76 2.30 0.02 0.47 ind:imp:3s; +enlaidissant enlaidir ver 0.76 2.30 0.00 0.07 par:pre; +enlaidisse enlaidir ver 0.76 2.30 0.01 0.07 sub:pre:3s; +enlaidissement enlaidissement nom m s 0.01 0.27 0.01 0.27 +enlaidissent enlaidir ver 0.76 2.30 0.02 0.20 ind:pre:3p; +enlaidisses enlaidir ver 0.76 2.30 0.14 0.00 sub:pre:2s; +enlaidit enlaidir ver 0.76 2.30 0.02 0.27 ind:pre:3s;ind:pas:3s; +enlaça enlacer ver 4.42 15.88 0.13 1.28 ind:pas:3s; +enlaçaient enlacer ver 4.42 15.88 0.10 0.61 ind:imp:3p; +enlaçais enlacer ver 4.42 15.88 0.05 0.07 ind:imp:1s;ind:imp:2s; +enlaçait enlacer ver 4.42 15.88 0.16 1.28 ind:imp:3s; +enlaçant enlacer ver 4.42 15.88 0.14 0.88 par:pre; +enlaçons enlacer ver 4.42 15.88 0.03 0.07 ind:pre:1p; +enleva enlever ver 172.45 78.78 0.22 7.03 ind:pas:3s; +enlevai enlever ver 172.45 78.78 0.03 0.47 ind:pas:1s; +enlevaient enlever ver 172.45 78.78 0.19 1.15 ind:imp:3p; +enlevais enlever ver 172.45 78.78 0.55 0.88 ind:imp:1s;ind:imp:2s; +enlevait enlever ver 172.45 78.78 1.33 5.74 ind:imp:3s; +enlevant enlever ver 172.45 78.78 1.13 3.04 par:pre; +enlever enlever ver 172.45 78.78 46.73 22.36 inf; +enlevez enlever ver 172.45 78.78 20.44 2.23 imp:pre:2p;ind:pre:2p; +enleviez enlever ver 172.45 78.78 0.41 0.14 ind:imp:2p; +enlevions enlever ver 172.45 78.78 0.17 0.07 ind:imp:1p; +enlevons enlever ver 172.45 78.78 1.24 0.00 imp:pre:1p;ind:pre:1p; +enlevât enlever ver 172.45 78.78 0.00 0.41 sub:imp:3s; +enlevèrent enlever ver 172.45 78.78 0.04 0.14 ind:pas:3p; +enlevé enlever ver m s 172.45 78.78 20.88 10.95 par:pas; +enlevée enlever ver f s 172.45 78.78 9.68 4.12 par:pas; +enlevées enlever ver f p 172.45 78.78 1.27 0.68 par:pas; +enlevés enlever ver m p 172.45 78.78 2.35 1.35 par:pas; +enliasser enliasser ver 0.00 0.07 0.00 0.07 inf; +enlisa enliser ver 0.93 5.88 0.00 0.14 ind:pas:3s; +enlisaient enliser ver 0.93 5.88 0.00 0.34 ind:imp:3p; +enlisais enliser ver 0.93 5.88 0.00 0.20 ind:imp:1s; +enlisait enliser ver 0.93 5.88 0.01 1.35 ind:imp:3s; +enlisant enliser ver 0.93 5.88 0.00 0.20 par:pre; +enlise enliser ver 0.93 5.88 0.28 0.68 ind:pre:1s;ind:pre:3s; +enlisement enlisement nom m s 0.00 0.74 0.00 0.74 +enlisent enliser ver 0.93 5.88 0.03 0.20 ind:pre:3p; +enliser enliser ver 0.93 5.88 0.21 0.74 inf; +enlisera enliser ver 0.93 5.88 0.00 0.07 ind:fut:3s; +enliserais enliser ver 0.93 5.88 0.01 0.00 cnd:pre:2s; +enlisé enliser ver m s 0.93 5.88 0.23 0.81 par:pas; +enlisée enliser ver f s 0.93 5.88 0.01 0.54 par:pas; +enlisées enliser ver f p 0.93 5.88 0.01 0.14 par:pas; +enlisés enliser ver m p 0.93 5.88 0.14 0.47 par:pas; +enlève enlever ver 172.45 78.78 55.59 13.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enlèvement enlèvement nom m s 9.51 3.85 7.80 3.58 +enlèvements enlèvement nom m p 9.51 3.85 1.71 0.27 +enlèvent enlever ver 172.45 78.78 1.96 1.55 ind:pre:3p; +enlèvera enlever ver 172.45 78.78 1.62 1.01 ind:fut:3s; +enlèverai enlever ver 172.45 78.78 1.19 0.27 ind:fut:1s; +enlèveraient enlever ver 172.45 78.78 0.04 0.14 cnd:pre:3p; +enlèverais enlever ver 172.45 78.78 0.36 0.14 cnd:pre:1s;cnd:pre:2s; +enlèverait enlever ver 172.45 78.78 0.40 0.47 cnd:pre:3s; +enlèveras enlever ver 172.45 78.78 0.28 0.00 ind:fut:2s; +enlèverez enlever ver 172.45 78.78 0.46 0.07 ind:fut:2p; +enlèveriez enlever ver 172.45 78.78 0.04 0.00 cnd:pre:2p; +enlèverons enlever ver 172.45 78.78 0.05 0.07 ind:fut:1p; +enlèveront enlever ver 172.45 78.78 0.15 0.07 ind:fut:3p; +enlèves enlever ver 172.45 78.78 3.66 0.61 ind:pre:2s;sub:pre:2s; +enlumine enluminer ver 0.03 1.15 0.00 0.07 ind:pre:3s; +enluminent enluminer ver 0.03 1.15 0.00 0.07 ind:pre:3p; +enluminer enluminer ver 0.03 1.15 0.00 0.07 inf; +enlumineur enlumineur nom m s 0.40 0.20 0.27 0.20 +enlumineurs enlumineur nom m p 0.40 0.20 0.14 0.00 +enluminé enluminer ver m s 0.03 1.15 0.02 0.34 par:pas; +enluminée enluminé adj f s 0.03 0.47 0.01 0.07 +enluminées enluminer ver f p 0.03 1.15 0.01 0.20 par:pas; +enluminure enluminure nom f s 0.11 1.08 0.00 0.27 +enluminures enluminure nom f p 0.11 1.08 0.11 0.81 +enluminés enluminé adj m p 0.03 0.47 0.00 0.14 +enneige enneiger ver 0.51 1.28 0.00 0.07 ind:pre:3s; +enneigeait enneiger ver 0.51 1.28 0.01 0.07 ind:imp:3s; +enneigement enneigement nom m s 0.10 0.00 0.10 0.00 +enneiger enneiger ver 0.51 1.28 0.01 0.00 inf; +enneigé enneigé adj m s 0.58 2.50 0.20 0.54 +enneigée enneigé adj f s 0.58 2.50 0.10 0.88 +enneigées enneigé adj f p 0.58 2.50 0.05 0.68 +enneigés enneigé adj m p 0.58 2.50 0.24 0.41 +ennemi ennemi nom m s 92.37 111.96 59.98 79.19 +ennemie ennemi nom f s 92.37 111.96 2.56 3.04 +ennemies ennemi adj f p 14.56 19.05 2.19 4.53 +ennemis ennemi nom m p 92.37 111.96 29.22 29.19 +ennobli ennoblir ver m s 0.15 1.22 0.01 0.20 par:pas; +ennoblie ennoblir ver f s 0.15 1.22 0.00 0.07 par:pas; +ennoblir ennoblir ver 0.15 1.22 0.01 0.34 inf; +ennoblis ennoblir ver m p 0.15 1.22 0.10 0.27 ind:pre:2s;par:pas; +ennoblissement ennoblissement nom m s 0.00 0.07 0.00 0.07 +ennoblit ennoblir ver 0.15 1.22 0.03 0.34 ind:pre:3s;ind:pas:3s; +ennuagent ennuager ver 0.03 0.20 0.01 0.00 ind:pre:3p; +ennuager ennuager ver 0.03 0.20 0.00 0.14 inf; +ennuagé ennuager ver m s 0.03 0.20 0.02 0.07 par:pas; +ennui ennui nom m s 76.64 56.62 14.76 38.24 +ennuie ennuyer ver 62.48 59.12 34.04 20.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +ennuient ennuyer ver 62.48 59.12 2.97 2.97 ind:pre:3p; +ennuiera ennuyer ver 62.48 59.12 0.66 0.07 ind:fut:3s; +ennuierai ennuyer ver 62.48 59.12 0.65 0.34 ind:fut:1s; +ennuieraient ennuyer ver 62.48 59.12 0.03 0.00 cnd:pre:3p; +ennuierais ennuyer ver 62.48 59.12 0.47 0.34 cnd:pre:1s;cnd:pre:2s; +ennuierait ennuyer ver 62.48 59.12 2.86 1.76 cnd:pre:3s; +ennuieras ennuyer ver 62.48 59.12 0.52 0.07 ind:fut:2s; +ennuierez ennuyer ver 62.48 59.12 0.06 0.00 ind:fut:2p; +ennuieriez ennuyer ver 62.48 59.12 0.04 0.00 cnd:pre:2p; +ennuierions ennuyer ver 62.48 59.12 0.00 0.07 cnd:pre:1p; +ennuierons ennuyer ver 62.48 59.12 0.14 0.00 ind:fut:1p; +ennuieront ennuyer ver 62.48 59.12 0.11 0.00 ind:fut:3p; +ennuies ennuyer ver 62.48 59.12 3.94 1.35 ind:pre:2s;sub:pre:2s; +ennuis ennui nom m p 76.64 56.62 61.89 18.38 +ennuya ennuyer ver 62.48 59.12 0.00 0.68 ind:pas:3s; +ennuyai ennuyer ver 62.48 59.12 0.00 0.14 ind:pas:1s; +ennuyaient ennuyer ver 62.48 59.12 0.38 2.43 ind:imp:3p; +ennuyais ennuyer ver 62.48 59.12 2.07 3.04 ind:imp:1s;ind:imp:2s; +ennuyait ennuyer ver 62.48 59.12 1.42 9.46 ind:imp:3s; +ennuyant ennuyant adj m s 0.94 0.07 0.79 0.07 +ennuyante ennuyant adj f s 0.94 0.07 0.15 0.00 +ennuyer ennuyer ver 62.48 59.12 7.00 9.12 inf; +ennuyeuse ennuyeux adj f s 19.47 13.31 3.02 2.77 +ennuyeuses ennuyeux adj f p 19.47 13.31 0.83 1.08 +ennuyeux ennuyeux adj m 19.47 13.31 15.62 9.46 +ennuyez ennuyer ver 62.48 59.12 1.55 1.22 imp:pre:2p;ind:pre:2p; +ennuyiez ennuyer ver 62.48 59.12 0.20 0.20 ind:imp:2p; +ennuyions ennuyer ver 62.48 59.12 0.01 0.20 ind:imp:1p; +ennuyons ennuyer ver 62.48 59.12 0.24 0.20 imp:pre:1p;ind:pre:1p; +ennuyât ennuyer ver 62.48 59.12 0.00 0.34 sub:imp:3s; +ennuyèrent ennuyer ver 62.48 59.12 0.00 0.41 ind:pas:3p; +ennuyé ennuyer ver m s 62.48 59.12 1.26 2.23 par:pas; +ennuyée ennuyer ver f s 62.48 59.12 1.54 1.35 par:pas; +ennuyées ennuyer ver f p 62.48 59.12 0.01 0.00 par:pas; +ennuyés ennuyer ver m p 62.48 59.12 0.14 0.14 par:pas; +enorgueillît enorgueillir ver 0.32 2.09 0.00 0.07 sub:imp:3s; +enorgueilli enorgueillir ver m s 0.32 2.09 0.01 0.00 par:pas; +enorgueillir enorgueillir ver 0.32 2.09 0.12 0.61 inf; +enorgueillirent enorgueillir ver 0.32 2.09 0.00 0.07 ind:pas:3p; +enorgueillis enorgueillir ver 0.32 2.09 0.01 0.00 ind:pre:1s; +enorgueillissais enorgueillir ver 0.32 2.09 0.00 0.27 ind:imp:1s; +enorgueillissait enorgueillir ver 0.32 2.09 0.01 0.20 ind:imp:3s; +enorgueillissant enorgueillir ver 0.32 2.09 0.00 0.07 par:pre; +enorgueillisse enorgueillir ver 0.32 2.09 0.00 0.07 sub:pre:1s; +enorgueillissent enorgueillir ver 0.32 2.09 0.14 0.20 ind:pre:3p; +enorgueillit enorgueillir ver 0.32 2.09 0.03 0.54 ind:pre:3s;ind:pas:3s; +enquerraient enquérir ver 1.01 8.85 0.00 0.07 cnd:pre:3p; +enquiers enquérir ver 1.01 8.85 0.02 0.14 imp:pre:2s;ind:pre:1s; +enquiert enquérir ver 1.01 8.85 0.05 1.35 ind:pre:3s; +enquillais enquiller ver 0.00 2.84 0.00 0.07 ind:imp:1s; +enquillait enquiller ver 0.00 2.84 0.00 0.07 ind:imp:3s; +enquillant enquiller ver 0.00 2.84 0.00 0.20 par:pre; +enquille enquiller ver 0.00 2.84 0.00 1.01 ind:pre:1s;ind:pre:3s; +enquillent enquiller ver 0.00 2.84 0.00 0.14 ind:pre:3p; +enquiller enquiller ver 0.00 2.84 0.00 0.74 inf; +enquillons enquiller ver 0.00 2.84 0.00 0.07 ind:pre:1p; +enquillé enquiller ver m s 0.00 2.84 0.00 0.47 par:pas; +enquillés enquiller ver m p 0.00 2.84 0.00 0.07 par:pas; +enquiquinaient enquiquiner ver 0.64 1.15 0.00 0.07 ind:imp:3p; +enquiquinait enquiquiner ver 0.64 1.15 0.02 0.07 ind:imp:3s; +enquiquinant enquiquinant adj m s 0.38 0.07 0.01 0.07 +enquiquinante enquiquinant adj f s 0.38 0.07 0.21 0.00 +enquiquinants enquiquinant adj m p 0.38 0.07 0.16 0.00 +enquiquine enquiquiner ver 0.64 1.15 0.20 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enquiquinement enquiquinement nom m s 0.01 0.00 0.01 0.00 +enquiquinent enquiquiner ver 0.64 1.15 0.02 0.14 ind:pre:3p; +enquiquiner enquiquiner ver 0.64 1.15 0.12 0.41 inf; +enquiquineraient enquiquiner ver 0.64 1.15 0.01 0.00 cnd:pre:3p; +enquiquines enquiquiner ver 0.64 1.15 0.23 0.00 ind:pre:2s; +enquiquineur enquiquineur nom m s 0.33 0.20 0.17 0.14 +enquiquineurs enquiquineur nom m p 0.33 0.20 0.07 0.00 +enquiquineuse enquiquineur nom f s 0.33 0.20 0.08 0.07 +enquiquiné enquiquiner ver m s 0.64 1.15 0.03 0.14 par:pas; +enquis enquérir ver m 1.01 8.85 0.06 0.88 ind:pas:1s;par:pas;par:pas; +enquise enquérir ver f s 1.01 8.85 0.01 0.20 par:pas; +enquit enquérir ver 1.01 8.85 0.10 3.45 ind:pas:3s; +enquière enquérir ver 1.01 8.85 0.01 0.07 sub:pre:1s;sub:pre:3s; +enquièrent enquérir ver 1.01 8.85 0.00 0.07 ind:pre:3p; +enquéraient enquérir ver 1.01 8.85 0.00 0.41 ind:imp:3p; +enquérais enquérir ver 1.01 8.85 0.02 0.14 ind:imp:1s; +enquérait enquérir ver 1.01 8.85 0.00 0.34 ind:imp:3s; +enquérant enquérir ver 1.01 8.85 0.00 0.41 par:pre; +enquérez enquérir ver 1.01 8.85 0.01 0.00 ind:pre:2p; +enquérir enquérir ver 1.01 8.85 0.73 1.35 inf; +enquêta enquêter ver 19.65 2.91 0.01 0.07 ind:pas:3s; +enquêtais enquêter ver 19.65 2.91 0.45 0.07 ind:imp:1s;ind:imp:2s; +enquêtait enquêter ver 19.65 2.91 0.85 0.61 ind:imp:3s; +enquêtant enquêter ver 19.65 2.91 0.28 0.07 par:pre; +enquête enquête nom f s 57.98 21.28 53.89 18.45 +enquêtent enquêter ver 19.65 2.91 0.50 0.27 ind:pre:3p; +enquêter enquêter ver 19.65 2.91 7.29 1.35 inf; +enquêtes_minut enquêtes_minut nom f p 0.00 0.07 0.00 0.07 +enquêtes enquête nom f p 57.98 21.28 4.08 2.84 +enquêteur enquêteur nom m s 4.06 3.18 1.83 1.28 +enquêteurs enquêteur nom m p 4.06 3.18 2.15 1.82 +enquêteuse enquêteur nom f s 4.06 3.18 0.07 0.00 +enquêtez enquêter ver 19.65 2.91 0.99 0.07 imp:pre:2p;ind:pre:2p; +enquêtrices enquêteur nom f p 4.06 3.18 0.00 0.07 +enquêté enquêter ver m s 19.65 2.91 2.13 0.14 par:pas; +enrôla enrôler ver 3.03 2.77 0.00 0.07 ind:pas:3s; +enrôlaient enrôler ver 3.03 2.77 0.04 0.07 ind:imp:3p; +enrôlais enrôler ver 3.03 2.77 0.01 0.07 ind:imp:1s; +enrôlait enrôler ver 3.03 2.77 0.01 0.14 ind:imp:3s; +enrôlant enrôler ver 3.03 2.77 0.05 0.00 par:pre; +enrôle enrôler ver 3.03 2.77 0.17 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enrôlement enrôlement nom m s 0.25 0.34 0.25 0.14 +enrôlements enrôlement nom m p 0.25 0.34 0.00 0.20 +enrôler enrôler ver 3.03 2.77 0.82 0.95 inf; +enrôlerait enrôler ver 3.03 2.77 0.01 0.14 cnd:pre:3s; +enrôleriez enrôler ver 3.03 2.77 0.01 0.00 cnd:pre:2p; +enrôlez enrôler ver 3.03 2.77 0.74 0.00 imp:pre:2p;ind:pre:2p; +enrôlons enrôler ver 3.03 2.77 0.03 0.00 imp:pre:1p;ind:pre:1p; +enrôlé enrôler ver m s 3.03 2.77 0.94 0.74 par:pas; +enrôlée enrôler ver f s 3.03 2.77 0.02 0.20 par:pas; +enrôlées enrôler ver f p 3.03 2.77 0.00 0.07 par:pas; +enrôlés enrôler ver m p 3.03 2.77 0.17 0.20 par:pas; +enracinais enraciner ver 0.65 3.65 0.00 0.07 ind:imp:1s; +enracinait enraciner ver 0.65 3.65 0.00 0.54 ind:imp:3s; +enracinant enraciner ver 0.65 3.65 0.00 0.07 par:pre; +enracine enraciner ver 0.65 3.65 0.03 0.14 ind:pre:3s; +enracinement enracinement nom m s 0.01 0.47 0.01 0.41 +enracinements enracinement nom m p 0.01 0.47 0.00 0.07 +enracinent enraciner ver 0.65 3.65 0.14 0.27 ind:pre:3p; +enraciner enraciner ver 0.65 3.65 0.25 0.34 inf; +enracinerait enraciner ver 0.65 3.65 0.10 0.07 cnd:pre:3s; +enracineras enraciner ver 0.65 3.65 0.00 0.07 ind:fut:2s; +enracinerez enraciner ver 0.65 3.65 0.01 0.00 ind:fut:2p; +enraciné enraciner ver m s 0.65 3.65 0.05 1.15 par:pas; +enracinée enraciné adj f s 0.12 0.88 0.04 0.27 +enracinées enraciné adj f p 0.12 0.88 0.01 0.14 +enracinés enraciné adj m p 0.12 0.88 0.04 0.34 +enrage enrager ver 6.13 7.57 1.46 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enragea enrager ver 6.13 7.57 0.00 0.20 ind:pas:3s; +enrageai enrager ver 6.13 7.57 0.00 0.07 ind:pas:1s; +enrageais enrager ver 6.13 7.57 0.27 0.47 ind:imp:1s; +enrageait enrager ver 6.13 7.57 0.15 1.35 ind:imp:3s; +enrageant enrager ver 6.13 7.57 0.00 0.07 par:pre; +enrageante enrageant adj f s 0.01 0.00 0.01 0.00 +enragement enragement nom m s 0.00 0.14 0.00 0.14 +enragent enrager ver 6.13 7.57 0.01 0.20 ind:pre:3p; +enrager enrager ver 6.13 7.57 2.20 1.49 inf; +enragerais enrager ver 6.13 7.57 0.00 0.14 cnd:pre:1s; +enragé enragé adj m s 3.36 4.26 2.18 1.69 +enragée enragé adj f s 3.36 4.26 0.75 1.28 +enragées enrager ver f p 6.13 7.57 0.12 0.00 par:pas; +enragés enragé nom m p 0.79 1.69 0.39 0.74 +enraie enrayer ver 1.73 1.96 0.01 0.00 ind:pre:3s; +enraillée enrailler ver f s 0.02 0.00 0.02 0.00 par:pas; +enraya enrayer ver 1.73 1.96 0.00 0.20 ind:pas:3s; +enrayage enrayage nom m s 0.02 0.00 0.02 0.00 +enrayait enrayer ver 1.73 1.96 0.00 0.14 ind:imp:3s; +enrayant enrayer ver 1.73 1.96 0.00 0.14 par:pre; +enraye enrayer ver 1.73 1.96 0.27 0.20 ind:pre:3s; +enrayement enrayement nom m s 0.02 0.00 0.02 0.00 +enrayent enrayer ver 1.73 1.96 0.03 0.07 ind:pre:3p; +enrayer enrayer ver 1.73 1.96 0.92 0.74 inf; +enrayera enrayer ver 1.73 1.96 0.04 0.00 ind:fut:3s; +enrayé enrayer ver m s 1.73 1.96 0.32 0.20 par:pas; +enrayée enrayer ver f s 1.73 1.96 0.14 0.27 par:pas; +enregistra enregistrer ver 33.07 14.73 0.09 0.54 ind:pas:3s; +enregistrable enregistrable adj f s 0.01 0.07 0.01 0.07 +enregistrai enregistrer ver 33.07 14.73 0.00 0.27 ind:pas:1s; +enregistraient enregistrer ver 33.07 14.73 0.11 0.34 ind:imp:3p; +enregistrais enregistrer ver 33.07 14.73 0.49 0.20 ind:imp:1s;ind:imp:2s; +enregistrait enregistrer ver 33.07 14.73 0.63 1.35 ind:imp:3s; +enregistrant enregistrer ver 33.07 14.73 0.20 0.41 par:pre; +enregistre enregistrer ver 33.07 14.73 5.96 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enregistrement enregistrement nom m s 14.79 3.11 11.21 2.36 +enregistrements enregistrement nom m p 14.79 3.11 3.58 0.74 +enregistrent enregistrer ver 33.07 14.73 0.47 0.14 ind:pre:3p; +enregistrer enregistrer ver 33.07 14.73 7.58 3.65 inf; +enregistrera enregistrer ver 33.07 14.73 0.28 0.00 ind:fut:3s; +enregistrerai enregistrer ver 33.07 14.73 0.32 0.00 ind:fut:1s; +enregistrerait enregistrer ver 33.07 14.73 0.01 0.00 cnd:pre:3s; +enregistreras enregistrer ver 33.07 14.73 0.01 0.00 ind:fut:2s; +enregistrerez enregistrer ver 33.07 14.73 0.02 0.00 ind:fut:2p; +enregistrerons enregistrer ver 33.07 14.73 0.01 0.00 ind:fut:1p; +enregistreront enregistrer ver 33.07 14.73 0.01 0.07 ind:fut:3p; +enregistres enregistrer ver 33.07 14.73 0.83 0.07 ind:pre:2s; +enregistreur enregistreur nom m s 1.00 0.20 0.88 0.14 +enregistreurs enregistreur nom m p 1.00 0.20 0.11 0.00 +enregistreuse enregistreur adj f s 0.66 1.01 0.24 0.74 +enregistreuses enregistreur adj f p 0.66 1.01 0.20 0.07 +enregistrez enregistrer ver 33.07 14.73 1.12 0.00 imp:pre:2p;ind:pre:2p; +enregistriez enregistrer ver 33.07 14.73 0.00 0.07 ind:imp:2p; +enregistrions enregistrer ver 33.07 14.73 0.02 0.07 ind:imp:1p; +enregistrons enregistrer ver 33.07 14.73 0.25 0.14 imp:pre:1p;ind:pre:1p; +enregistré enregistrer ver m s 33.07 14.73 9.58 3.18 par:pas; +enregistrée enregistrer ver f s 33.07 14.73 2.73 0.88 par:pas; +enregistrées enregistrer ver f p 33.07 14.73 0.81 0.41 par:pas; +enregistrés enregistrer ver m p 33.07 14.73 1.54 0.95 par:pas; +enrhumait enrhumer ver 2.60 1.96 0.00 0.14 ind:imp:3s; +enrhume enrhumer ver 2.60 1.96 0.39 0.47 ind:pre:1s;ind:pre:3s; +enrhument enrhumer ver 2.60 1.96 0.11 0.07 ind:pre:3p; +enrhumer enrhumer ver 2.60 1.96 0.89 0.41 inf; +enrhumes enrhumer ver 2.60 1.96 0.00 0.07 ind:pre:2s; +enrhumez enrhumer ver 2.60 1.96 0.01 0.00 imp:pre:2p; +enrhumé enrhumer ver m s 2.60 1.96 0.97 0.41 par:pas; +enrhumée enrhumer ver f s 2.60 1.96 0.22 0.34 par:pas; +enrhumées enrhumé adj f p 0.49 1.22 0.00 0.07 +enrhumés enrhumé adj m p 0.49 1.22 0.11 0.27 +enrichi enrichir ver m s 7.73 11.76 1.44 2.03 par:pas; +enrichie enrichir ver f s 7.73 11.76 0.13 0.81 par:pas; +enrichies enrichir ver f p 7.73 11.76 0.17 0.14 par:pas; +enrichir enrichir ver 7.73 11.76 3.00 4.19 inf; +enrichira enrichir ver 7.73 11.76 0.10 0.00 ind:fut:3s; +enrichirais enrichir ver 7.73 11.76 0.01 0.07 cnd:pre:1s; +enrichirait enrichir ver 7.73 11.76 0.34 0.00 cnd:pre:3s; +enrichiront enrichir ver 7.73 11.76 0.04 0.14 ind:fut:3p; +enrichis enrichir ver m p 7.73 11.76 0.48 0.54 ind:pre:1s;ind:pre:2s;par:pas; +enrichissaient enrichir ver 7.73 11.76 0.01 0.34 ind:imp:3p; +enrichissais enrichir ver 7.73 11.76 0.00 0.07 ind:imp:1s; +enrichissait enrichir ver 7.73 11.76 0.05 1.15 ind:imp:3s; +enrichissant enrichissant adj m s 0.69 0.95 0.20 0.14 +enrichissante enrichissant adj f s 0.69 0.95 0.23 0.34 +enrichissantes enrichissant adj f p 0.69 0.95 0.25 0.27 +enrichissants enrichissant adj m p 0.69 0.95 0.01 0.20 +enrichisse enrichir ver 7.73 11.76 0.28 0.14 sub:pre:1s;sub:pre:3s; +enrichissement enrichissement nom m s 0.20 1.28 0.20 0.74 +enrichissements enrichissement nom m p 0.20 1.28 0.00 0.54 +enrichissent enrichir ver 7.73 11.76 0.49 0.54 ind:pre:3p; +enrichissez enrichir ver 7.73 11.76 0.03 0.07 imp:pre:2p;ind:pre:2p; +enrichit enrichir ver 7.73 11.76 1.08 1.35 ind:pre:3s;ind:pas:3s; +enrobage enrobage nom m s 0.05 0.07 0.05 0.07 +enrobaient enrober ver 0.68 2.36 0.00 0.07 ind:imp:3p; +enrobait enrober ver 0.68 2.36 0.00 0.61 ind:imp:3s; +enrobant enrober ver 0.68 2.36 0.00 0.07 par:pre; +enrobe enrober ver 0.68 2.36 0.03 0.54 ind:pre:1s;ind:pre:3s; +enrober enrober ver 0.68 2.36 0.15 0.07 inf; +enrobèrent enrober ver 0.68 2.36 0.00 0.07 ind:pas:3p; +enrobé enrobé adj m s 1.02 1.01 0.88 0.47 +enrobée enrober ver f s 0.68 2.36 0.09 0.27 par:pas; +enrobées enrobé adj f p 1.02 1.01 0.11 0.00 +enrobés enrober ver m p 0.68 2.36 0.17 0.34 par:pas; +enrochements enrochement nom m p 0.00 0.27 0.00 0.27 +enroua enrouer ver 0.12 2.16 0.00 0.14 ind:pas:3s; +enrouaient enrouer ver 0.12 2.16 0.00 0.14 ind:imp:3p; +enrouait enrouer ver 0.12 2.16 0.00 0.20 ind:imp:3s; +enroue enrouer ver 0.12 2.16 0.00 0.34 ind:pre:3s; +enrouement enrouement nom m s 0.00 0.41 0.00 0.34 +enrouements enrouement nom m p 0.00 0.41 0.00 0.07 +enrouer enrouer ver 0.12 2.16 0.00 0.07 inf; +enroula enrouler ver 3.75 16.89 0.00 1.01 ind:pas:3s; +enroulage enroulage nom m s 0.00 0.07 0.00 0.07 +enroulai enrouler ver 3.75 16.89 0.01 0.14 ind:pas:1s; +enroulaient enrouler ver 3.75 16.89 0.11 0.81 ind:imp:3p; +enroulais enrouler ver 3.75 16.89 0.02 0.14 ind:imp:1s; +enroulait enrouler ver 3.75 16.89 0.01 3.31 ind:imp:3s; +enroulant enrouler ver 3.75 16.89 0.03 1.42 par:pre; +enroule enrouler ver 3.75 16.89 1.11 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +enroulement enroulement nom m s 0.01 0.61 0.01 0.27 +enroulements enroulement nom m p 0.01 0.61 0.00 0.34 +enroulent enrouler ver 3.75 16.89 0.19 0.41 ind:pre:3p; +enrouler enrouler ver 3.75 16.89 0.36 1.35 inf; +enroulera enrouler ver 3.75 16.89 0.00 0.07 ind:fut:3s; +enroulerais enrouler ver 3.75 16.89 0.10 0.07 cnd:pre:1s; +enroulez enrouler ver 3.75 16.89 0.24 0.00 imp:pre:2p;ind:pre:2p; +enroulèrent enrouler ver 3.75 16.89 0.01 0.41 ind:pas:3p; +enroulé enrouler ver m s 3.75 16.89 0.52 2.50 par:pas; +enroulée enrouler ver f s 3.75 16.89 0.80 1.69 par:pas; +enroulées enrouler ver f p 3.75 16.89 0.05 0.54 par:pas; +enroulés enrouler ver m p 3.75 16.89 0.19 1.08 par:pas; +enroué enroué adj m s 0.18 3.31 0.05 0.61 +enrouée enroué adj f s 0.18 3.31 0.13 2.50 +enrouées enroué adj f p 0.18 3.31 0.00 0.14 +enroués enrouer ver m p 0.12 2.16 0.10 0.14 par:pas; +enrubannaient enrubanner ver 0.13 1.15 0.00 0.14 ind:imp:3p; +enrubannait enrubanner ver 0.13 1.15 0.00 0.14 ind:imp:3s; +enrubanner enrubanner ver 0.13 1.15 0.11 0.00 inf; +enrubanné enrubanner ver m s 0.13 1.15 0.01 0.27 par:pas; +enrubannée enrubanné adj f s 0.03 0.88 0.03 0.14 +enrubannées enrubanner ver f p 0.13 1.15 0.00 0.14 par:pas; +enrubannés enrubanné adj m p 0.03 0.88 0.00 0.34 +enrégimentait enrégimenter ver 0.00 0.27 0.00 0.07 ind:imp:3s; +enrégimenter enrégimenter ver 0.00 0.27 0.00 0.14 inf; +enrégimenterait enrégimenter ver 0.00 0.27 0.00 0.07 cnd:pre:3s; +ensablait ensabler ver 0.28 1.15 0.10 0.14 ind:imp:3s; +ensable ensabler ver 0.28 1.15 0.00 0.27 ind:pre:3s; +ensablement ensablement nom m s 0.00 0.20 0.00 0.20 +ensablent ensabler ver 0.28 1.15 0.00 0.07 ind:pre:3p; +ensabler ensabler ver 0.28 1.15 0.01 0.14 inf; +ensablèrent ensabler ver 0.28 1.15 0.00 0.07 ind:pas:3p; +ensablé ensablé adj m s 0.03 0.88 0.01 0.27 +ensablée ensabler ver f s 0.28 1.15 0.14 0.20 par:pas; +ensablées ensablé adj f p 0.03 0.88 0.00 0.14 +ensablés ensablé adj m p 0.03 0.88 0.01 0.27 +ensacher ensacher ver 0.04 0.07 0.02 0.00 inf; +ensaché ensacher ver m s 0.04 0.07 0.01 0.07 par:pas; +ensanglanta ensanglanter ver 1.07 2.30 0.00 0.14 ind:pas:3s; +ensanglantaient ensanglanter ver 1.07 2.30 0.00 0.07 ind:imp:3p; +ensanglantant ensanglanter ver 1.07 2.30 0.00 0.14 par:pre; +ensanglante ensanglanter ver 1.07 2.30 0.28 0.00 ind:pre:3s; +ensanglantement ensanglantement nom m s 0.00 0.07 0.00 0.07 +ensanglanter ensanglanter ver 1.07 2.30 0.00 0.07 inf; +ensanglantèrent ensanglanter ver 1.07 2.30 0.00 0.07 ind:pas:3p; +ensanglanté ensanglanté adj m s 1.55 4.26 0.71 1.55 +ensanglantée ensanglanté adj f s 1.55 4.26 0.52 1.28 +ensanglantées ensanglanté adj f p 1.55 4.26 0.10 0.61 +ensanglantés ensanglanté adj m p 1.55 4.26 0.21 0.81 +ensauvageait ensauvager ver 0.11 0.68 0.00 0.07 ind:imp:3s; +ensauvagement ensauvagement nom m s 0.00 0.07 0.00 0.07 +ensauvagé ensauvager ver m s 0.11 0.68 0.01 0.14 par:pas; +ensauvagée ensauvager ver f s 0.11 0.68 0.10 0.20 par:pas; +ensauvagées ensauvager ver f p 0.11 0.68 0.00 0.14 par:pas; +ensauvagés ensauvager ver m p 0.11 0.68 0.00 0.14 par:pas; +ensauve ensauver ver 0.00 0.14 0.00 0.07 ind:pre:1s; +ensauvés ensauver ver m p 0.00 0.14 0.00 0.07 par:pas; +enseigna enseigner ver 31.98 23.04 0.59 1.15 ind:pas:3s; +enseignaient enseigner ver 31.98 23.04 0.07 0.47 ind:imp:3p; +enseignais enseigner ver 31.98 23.04 0.80 0.34 ind:imp:1s;ind:imp:2s; +enseignait enseigner ver 31.98 23.04 1.29 3.85 ind:imp:3s; +enseignant_robot enseignant_robot nom m s 0.00 0.07 0.00 0.07 +enseignant enseignant nom m s 3.94 1.69 1.63 0.34 +enseignante enseignant nom f s 3.94 1.69 0.45 0.47 +enseignantes enseignant nom f p 3.94 1.69 0.03 0.07 +enseignants enseignant nom m p 3.94 1.69 1.84 0.81 +enseigne enseigner ver 31.98 23.04 8.85 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enseignement enseignement nom m s 4.27 12.50 3.61 10.95 +enseignements enseignement nom m p 4.27 12.50 0.66 1.55 +enseignent enseigner ver 31.98 23.04 0.59 0.95 ind:pre:3p; +enseigner enseigner ver 31.98 23.04 10.06 5.00 inf;; +enseignera enseigner ver 31.98 23.04 0.53 0.41 ind:fut:3s; +enseignerai enseigner ver 31.98 23.04 0.78 0.14 ind:fut:1s; +enseigneraient enseigner ver 31.98 23.04 0.01 0.07 cnd:pre:3p; +enseignerais enseigner ver 31.98 23.04 0.30 0.07 cnd:pre:1s; +enseignerait enseigner ver 31.98 23.04 0.05 0.14 cnd:pre:3s; +enseigneras enseigner ver 31.98 23.04 0.05 0.00 ind:fut:2s; +enseignerez enseigner ver 31.98 23.04 0.06 0.00 ind:fut:2p; +enseignerons enseigner ver 31.98 23.04 0.28 0.00 ind:fut:1p; +enseigneront enseigner ver 31.98 23.04 0.04 0.07 ind:fut:3p; +enseignes enseigner ver 31.98 23.04 0.89 0.07 ind:pre:2s; +enseigneur enseigneur nom m s 0.01 0.00 0.01 0.00 +enseignez enseigner ver 31.98 23.04 1.61 0.54 imp:pre:2p;ind:pre:2p; +enseigniez enseigner ver 31.98 23.04 0.17 0.07 ind:imp:2p; +enseignons enseigner ver 31.98 23.04 0.09 0.00 imp:pre:1p;ind:pre:1p; +enseignât enseigner ver 31.98 23.04 0.00 0.07 sub:imp:3s; +enseignèrent enseigner ver 31.98 23.04 0.00 0.20 ind:pas:3p; +enseigné enseigner ver m s 31.98 23.04 3.79 3.85 par:pas; +enseignée enseigner ver f s 31.98 23.04 0.43 0.88 par:pas; +enseignées enseigner ver f p 31.98 23.04 0.22 0.27 par:pas; +enseignés enseigner ver m p 31.98 23.04 0.06 0.34 par:pas; +ensellement ensellement nom m s 0.00 0.20 0.00 0.20 +ensellé ensellé adj m s 0.01 0.07 0.01 0.00 +ensellure ensellure nom f s 0.14 0.07 0.14 0.07 +ensellés ensellé adj m p 0.01 0.07 0.00 0.07 +ensemble ensemble adv 253.47 145.07 253.47 145.07 +ensembles ensemble nom m p 31.87 63.45 2.13 2.03 +ensemencement ensemencement nom m s 0.01 0.20 0.01 0.14 +ensemencements ensemencement nom m p 0.01 0.20 0.00 0.07 +ensemencer ensemencer ver 0.23 1.42 0.08 0.41 inf; +ensemencé ensemencer ver m s 0.23 1.42 0.14 0.34 par:pas; +ensemencée ensemencer ver f s 0.23 1.42 0.01 0.20 par:pas; +ensemencés ensemencer ver m p 0.23 1.42 0.00 0.14 par:pas; +ensemença ensemencer ver 0.23 1.42 0.00 0.07 ind:pas:3s; +ensemençaient ensemencer ver 0.23 1.42 0.00 0.07 ind:imp:3p; +ensemençait ensemencer ver 0.23 1.42 0.00 0.14 ind:imp:3s; +ensemençant ensemencer ver 0.23 1.42 0.00 0.07 par:pre; +enserra enserrer ver 0.23 7.70 0.00 0.07 ind:pas:3s; +enserrai enserrer ver 0.23 7.70 0.00 0.07 ind:pas:1s; +enserraient enserrer ver 0.23 7.70 0.01 1.01 ind:imp:3p; +enserrait enserrer ver 0.23 7.70 0.00 1.28 ind:imp:3s; +enserrant enserrer ver 0.23 7.70 0.00 1.49 par:pre; +enserre enserrer ver 0.23 7.70 0.05 1.08 ind:pre:1s;ind:pre:3s; +enserrent enserrer ver 0.23 7.70 0.02 0.74 ind:pre:3p; +enserrer enserrer ver 0.23 7.70 0.01 0.54 inf; +enserrera enserrer ver 0.23 7.70 0.01 0.00 ind:fut:3s; +enserrerait enserrer ver 0.23 7.70 0.00 0.07 cnd:pre:3s; +enserres enserrer ver 0.23 7.70 0.00 0.07 ind:pre:2s; +enserrèrent enserrer ver 0.23 7.70 0.00 0.07 ind:pas:3p; +enserré enserrer ver m s 0.23 7.70 0.13 0.54 par:pas; +enserrée enserrer ver f s 0.23 7.70 0.00 0.27 par:pas; +enserrées enserrer ver f p 0.23 7.70 0.00 0.14 par:pas; +enserrés enserrer ver m p 0.23 7.70 0.00 0.27 par:pas; +enseveli ensevelir ver m s 3.10 8.58 0.75 2.70 par:pas; +ensevelie ensevelir ver f s 3.10 8.58 0.52 0.88 par:pas; +ensevelies ensevelir ver f p 3.10 8.58 0.06 0.68 par:pas; +ensevelir ensevelir ver 3.10 8.58 1.20 1.08 inf; +ensevelira ensevelir ver 3.10 8.58 0.04 0.00 ind:fut:3s; +ensevelirait ensevelir ver 3.10 8.58 0.00 0.07 cnd:pre:3s; +ensevelis ensevelir ver m p 3.10 8.58 0.33 1.76 ind:pre:1s;par:pas; +ensevelissaient ensevelir ver 3.10 8.58 0.00 0.14 ind:imp:3p; +ensevelissais ensevelir ver 3.10 8.58 0.00 0.07 ind:imp:1s; +ensevelissait ensevelir ver 3.10 8.58 0.00 0.34 ind:imp:3s; +ensevelissant ensevelir ver 3.10 8.58 0.00 0.20 par:pre; +ensevelisse ensevelir ver 3.10 8.58 0.14 0.27 sub:pre:3s; +ensevelissement ensevelissement nom m s 0.03 0.74 0.03 0.74 +ensevelissent ensevelir ver 3.10 8.58 0.00 0.14 ind:pre:3p; +ensevelisseuse ensevelisseur nom f s 0.00 0.14 0.00 0.14 +ensevelissez ensevelir ver 3.10 8.58 0.03 0.00 imp:pre:2p;ind:pre:2p; +ensevelissons ensevelir ver 3.10 8.58 0.00 0.07 imp:pre:1p; +ensevelit ensevelir ver 3.10 8.58 0.02 0.20 ind:pre:3s;ind:pas:3s; +ensoleilla ensoleiller ver 0.99 3.31 0.00 0.14 ind:pas:3s; +ensoleillement ensoleillement nom m s 0.04 0.27 0.04 0.27 +ensoleiller ensoleiller ver 0.99 3.31 0.02 0.07 inf; +ensoleillèrent ensoleiller ver 0.99 3.31 0.00 0.07 ind:pas:3p; +ensoleillé ensoleillé adj m s 2.12 8.31 1.05 3.04 +ensoleillée ensoleillé adj f s 2.12 8.31 0.75 4.12 +ensoleillées ensoleillé adj f p 2.12 8.31 0.06 0.61 +ensoleillés ensoleillé adj m p 2.12 8.31 0.26 0.54 +ensommeilla ensommeiller ver 0.14 1.15 0.00 0.07 ind:pas:3s; +ensommeillaient ensommeiller ver 0.14 1.15 0.00 0.07 ind:imp:3p; +ensommeillait ensommeiller ver 0.14 1.15 0.00 0.14 ind:imp:3s; +ensommeiller ensommeiller ver 0.14 1.15 0.00 0.07 inf; +ensommeillé ensommeiller ver m s 0.14 1.15 0.14 0.34 par:pas; +ensommeillée ensommeillé adj f s 0.21 3.38 0.01 1.55 +ensommeillées ensommeillé adj f p 0.21 3.38 0.00 0.34 +ensommeillés ensommeillé adj m p 0.21 3.38 0.10 0.54 +ensorcelaient ensorceler ver 3.92 1.49 0.00 0.07 ind:imp:3p; +ensorcelant ensorcelant adj m s 0.21 0.47 0.03 0.20 +ensorcelante ensorcelant adj f s 0.21 0.47 0.19 0.20 +ensorcelantes ensorcelant adj f p 0.21 0.47 0.00 0.07 +ensorceler ensorceler ver 3.92 1.49 0.67 0.34 inf; +ensorceleur ensorceleur adj m s 0.03 0.07 0.01 0.07 +ensorceleuse ensorceleur nom f s 0.04 0.07 0.03 0.07 +ensorceleuses ensorceleuse nom f p 0.02 0.00 0.02 0.00 +ensorcelez ensorceler ver 3.92 1.49 0.02 0.07 ind:pre:2p; +ensorcelle ensorceler ver 3.92 1.49 0.34 0.34 ind:pre:3s; +ensorcellement ensorcellement nom m s 0.05 0.14 0.05 0.14 +ensorcellent ensorceler ver 3.92 1.49 0.26 0.07 ind:pre:3p; +ensorcelles ensorceler ver 3.92 1.49 0.00 0.07 ind:pre:2s; +ensorcelé ensorceler ver m s 3.92 1.49 1.72 0.34 par:pas; +ensorcelée ensorceler ver f s 3.92 1.49 0.73 0.14 par:pas; +ensorcelées ensorcelé adj f p 0.35 0.88 0.10 0.14 +ensorcelés ensorceler ver m p 3.92 1.49 0.18 0.00 par:pas; +ensouple ensouple nom f s 0.00 0.07 0.00 0.07 +ensoutanée ensoutané adj f s 0.00 0.07 0.00 0.07 +ensoutanées ensoutaner ver f p 0.00 0.07 0.00 0.07 par:pas; +ensuit ensuivre ver 1.20 5.34 0.52 1.89 ind:pre:3s; +ensuite ensuite adv_sup 127.92 169.19 127.92 169.19 +ensuivaient ensuivre ver 1.20 5.34 0.00 0.14 ind:imp:3p; +ensuivait ensuivre ver 1.20 5.34 0.00 0.34 ind:imp:3s; +ensuive ensuivre ver 1.20 5.34 0.33 0.54 sub:pre:3s; +ensuivent ensuivre ver 1.20 5.34 0.04 0.07 ind:pre:3p; +ensuivi ensuivre ver m s 1.20 5.34 0.00 0.07 par:pas; +ensuivie ensuivre ver f s 1.20 5.34 0.01 0.07 par:pas; +ensuivies ensuivre ver f p 1.20 5.34 0.00 0.07 par:pas; +ensuivirent ensuivre ver 1.20 5.34 0.03 0.27 ind:pas:3p; +ensuivit ensuivre ver 1.20 5.34 0.15 1.22 ind:pas:3s; +ensuivra ensuivre ver 1.20 5.34 0.06 0.07 ind:fut:3s; +ensuivraient ensuivre ver 1.20 5.34 0.01 0.07 cnd:pre:3p; +ensuivrait ensuivre ver 1.20 5.34 0.01 0.20 cnd:pre:3s; +ensuivre ensuivre ver 1.20 5.34 0.02 0.34 inf; +ensuivront ensuivre ver 1.20 5.34 0.03 0.00 ind:fut:3p; +ensuquent ensuquer ver 0.00 0.47 0.00 0.07 ind:pre:3p; +ensuqué ensuquer ver m s 0.00 0.47 0.00 0.14 par:pas; +ensuquée ensuquer ver f s 0.00 0.47 0.00 0.27 par:pas; +entôlage entôlage nom m s 0.01 0.14 0.01 0.14 +entôler entôler ver 0.02 0.20 0.01 0.00 inf; +entôleur entôleur nom m s 0.00 0.07 0.00 0.07 +entôlé entôler ver m s 0.02 0.20 0.01 0.14 par:pas; +entôlée entôler ver f s 0.02 0.20 0.00 0.07 par:pas; +entablement entablement nom m s 0.00 0.07 0.00 0.07 +entachait entacher ver 0.78 1.76 0.00 0.27 ind:imp:3s; +entache entacher ver 0.78 1.76 0.31 0.07 imp:pre:2s;ind:pre:3s; +entachent entacher ver 0.78 1.76 0.01 0.00 ind:pre:3p; +entacher entacher ver 0.78 1.76 0.10 0.14 inf; +entacherait entacher ver 0.78 1.76 0.04 0.00 cnd:pre:3s; +entaché entacher ver m s 0.78 1.76 0.12 0.81 par:pas; +entachée entacher ver f s 0.78 1.76 0.19 0.34 par:pas; +entachées entacher ver f p 0.78 1.76 0.00 0.07 par:pas; +entachés entacher ver m p 0.78 1.76 0.00 0.07 par:pas; +entailla entailler ver 0.52 2.09 0.00 0.07 ind:pas:3s; +entaillait entailler ver 0.52 2.09 0.01 0.27 ind:imp:3s; +entaille entaille nom f s 1.93 3.92 1.49 2.64 +entaillent entailler ver 0.52 2.09 0.00 0.27 ind:pre:3p; +entailler entailler ver 0.52 2.09 0.10 0.47 inf; +entaillerai entailler ver 0.52 2.09 0.00 0.07 ind:fut:1s; +entailles entaille nom f p 1.93 3.92 0.44 1.28 +entaillé entailler ver m s 0.52 2.09 0.18 0.34 par:pas; +entaillée entailler ver f s 0.52 2.09 0.04 0.14 par:pas; +entaillées entaillé adj f p 0.11 0.61 0.01 0.00 +entaillés entaillé adj m p 0.11 0.61 0.01 0.20 +entama entamer ver 7.44 27.77 0.08 2.03 ind:pas:3s; +entamai entamer ver 7.44 27.77 0.01 0.47 ind:pas:1s; +entamaient entamer ver 7.44 27.77 0.14 1.28 ind:imp:3p; +entamais entamer ver 7.44 27.77 0.07 0.07 ind:imp:1s; +entamait entamer ver 7.44 27.77 0.04 1.62 ind:imp:3s; +entamant entamer ver 7.44 27.77 0.02 0.41 par:pre; +entame entamer ver 7.44 27.77 1.09 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entament entamer ver 7.44 27.77 0.32 0.61 ind:pre:3p; +entamer entamer ver 7.44 27.77 2.42 7.03 inf; +entamera entamer ver 7.44 27.77 0.28 0.07 ind:fut:3s; +entamerai entamer ver 7.44 27.77 0.03 0.07 ind:fut:1s; +entameraient entamer ver 7.44 27.77 0.01 0.07 cnd:pre:3p; +entamerais entamer ver 7.44 27.77 0.14 0.14 cnd:pre:1s; +entamerait entamer ver 7.44 27.77 0.02 0.27 cnd:pre:3s; +entamerez entamer ver 7.44 27.77 0.01 0.07 ind:fut:2p; +entamerons entamer ver 7.44 27.77 0.12 0.07 ind:fut:1p; +entames entamer ver 7.44 27.77 0.02 0.00 ind:pre:2s; +entamez entamer ver 7.44 27.77 0.26 0.07 imp:pre:2p;ind:pre:2p; +entamons entamer ver 7.44 27.77 0.13 0.14 imp:pre:1p;ind:pre:1p; +entamât entamer ver 7.44 27.77 0.00 0.27 sub:imp:3s; +entamèrent entamer ver 7.44 27.77 0.11 0.54 ind:pas:3p; +entamé entamer ver m s 7.44 27.77 1.52 5.68 par:pas; +entamée entamer ver f s 7.44 27.77 0.47 3.51 par:pas; +entamées entamer ver f p 7.44 27.77 0.12 0.27 par:pas; +entamés entamer ver m p 7.44 27.77 0.02 0.68 par:pas; +entant enter ver 0.49 0.14 0.12 0.00 par:pre; +entassa entasser ver 3.90 29.05 0.00 0.68 ind:pas:3s; +entassaient entasser ver 3.90 29.05 0.14 5.81 ind:imp:3p; +entassait entasser ver 3.90 29.05 0.06 2.43 ind:imp:3s; +entassant entasser ver 3.90 29.05 0.00 0.61 par:pre; +entasse entasser ver 3.90 29.05 1.07 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entassement entassement nom m s 0.00 4.53 0.00 3.31 +entassements entassement nom m p 0.00 4.53 0.00 1.22 +entassent entasser ver 3.90 29.05 0.58 2.09 ind:pre:3p; +entasser entasser ver 3.90 29.05 0.65 2.03 inf; +entassera entasser ver 3.90 29.05 0.00 0.07 ind:fut:3s; +entasseraient entasser ver 3.90 29.05 0.00 0.14 cnd:pre:3p; +entasserait entasser ver 3.90 29.05 0.00 0.07 cnd:pre:3s; +entasseront entasser ver 3.90 29.05 0.00 0.07 ind:fut:3p; +entassez entasser ver 3.90 29.05 0.07 0.07 imp:pre:2p; +entassions entasser ver 3.90 29.05 0.00 0.34 ind:imp:1p; +entassâmes entasser ver 3.90 29.05 0.00 0.07 ind:pas:1p; +entassons entasser ver 3.90 29.05 0.10 0.07 ind:pre:1p; +entassèrent entasser ver 3.90 29.05 0.00 0.34 ind:pas:3p; +entassé entasser ver m s 3.90 29.05 0.07 1.62 par:pas; +entassée entasser ver f s 3.90 29.05 0.03 0.95 par:pas; +entassées entasser ver f p 3.90 29.05 0.02 3.18 par:pas; +entassés entasser ver m p 3.90 29.05 1.10 6.89 par:pas; +ente enter ver 0.49 0.14 0.01 0.00 ind:pre:3s; +entement entement nom m s 0.00 0.07 0.00 0.07 +entend entendre ver 728.67 719.12 41.77 63.11 ind:pre:3s; +entendîmes entendre ver 728.67 719.12 0.14 1.69 ind:pas:1p; +entendît entendre ver 728.67 719.12 0.00 2.30 sub:imp:3s; +entendaient entendre ver 728.67 719.12 1.52 7.09 ind:imp:3p; +entendais entendre ver 728.67 719.12 7.49 29.93 ind:imp:1s;ind:imp:2s; +entendait entendre ver 728.67 719.12 7.11 80.27 ind:imp:3s; +entendant entendre ver 728.67 719.12 1.95 15.00 par:pre; +entende entendre ver 728.67 719.12 9.72 5.47 sub:pre:1s;sub:pre:3s; +entendement entendement nom m s 1.13 2.70 1.13 2.70 +entendent entendre ver 728.67 719.12 6.75 7.64 ind:pre:3p;sub:pre:3p; +entendes entendre ver 728.67 719.12 1.01 0.41 sub:pre:2s; +entendeur entendeur nom m s 0.28 0.34 0.28 0.27 +entendeurs entendeur nom m p 0.28 0.34 0.00 0.07 +entendez entendre ver 728.67 719.12 45.11 13.99 imp:pre:2p;ind:pre:2p; +entendiez entendre ver 728.67 719.12 2.24 0.81 ind:imp:2p;sub:pre:2p; +entendions entendre ver 728.67 719.12 0.76 5.68 ind:imp:1p; +entendirent entendre ver 728.67 719.12 0.14 5.14 ind:pas:3p; +entendis entendre ver 728.67 719.12 1.11 16.76 ind:pas:1s; +entendisse entendre ver 728.67 719.12 0.00 0.14 sub:imp:1s; +entendissent entendre ver 728.67 719.12 0.01 0.20 sub:imp:3p; +entendit entendre ver 728.67 719.12 1.50 63.31 ind:pas:3s; +entendons entendre ver 728.67 719.12 2.05 5.14 imp:pre:1p;ind:pre:1p; +entendra entendre ver 728.67 719.12 6.61 2.57 ind:fut:3s; +entendrai entendre ver 728.67 719.12 1.36 1.08 ind:fut:1s; +entendraient entendre ver 728.67 719.12 0.23 0.88 cnd:pre:3p; +entendrais entendre ver 728.67 719.12 0.85 1.22 cnd:pre:1s;cnd:pre:2s; +entendrait entendre ver 728.67 719.12 1.71 3.18 cnd:pre:3s; +entendras entendre ver 728.67 719.12 2.26 0.61 ind:fut:2s; +entendre entendre ver 728.67 719.12 137.90 162.50 inf;;inf;;inf;; +entendrez entendre ver 728.67 719.12 3.45 0.47 ind:fut:2p; +entendriez entendre ver 728.67 719.12 0.28 0.14 cnd:pre:2p; +entendrions entendre ver 728.67 719.12 0.03 0.14 cnd:pre:1p; +entendrons entendre ver 728.67 719.12 0.63 0.81 ind:fut:1p; +entendront entendre ver 728.67 719.12 1.54 0.47 ind:fut:3p; +entends entendre ver 728.67 719.12 163.49 78.45 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entendu entendre ver m s 728.67 719.12 256.43 122.91 par:pas; +entendue entendre ver f s 728.67 719.12 14.31 11.01 par:pas; +entendues entendre ver f p 728.67 719.12 1.53 2.43 par:pas; +entendus entendre ver m p 728.67 719.12 5.68 6.22 par:pas; +entente entente nom f s 2.82 10.81 2.72 10.68 +ententes entente nom f p 2.82 10.81 0.10 0.14 +enter enter ver 0.49 0.14 0.35 0.14 inf; +enterra enterrer ver 63.68 28.58 0.26 0.47 ind:pas:3s; +enterrai enterrer ver 63.68 28.58 0.01 0.07 ind:pas:1s; +enterraient enterrer ver 63.68 28.58 0.13 0.14 ind:imp:3p; +enterrais enterrer ver 63.68 28.58 0.04 0.14 ind:imp:1s;ind:imp:2s; +enterrait enterrer ver 63.68 28.58 0.43 0.88 ind:imp:3s; +enterrant enterrer ver 63.68 28.58 0.11 0.07 par:pre; +enterre enterrer ver 63.68 28.58 8.38 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enterrement enterrement nom m s 27.33 21.22 24.71 18.99 +enterrements enterrement nom m p 27.33 21.22 2.62 2.23 +enterrent enterrer ver 63.68 28.58 0.90 0.61 ind:pre:3p; +enterrer enterrer ver 63.68 28.58 17.27 9.12 inf; +enterrera enterrer ver 63.68 28.58 1.02 0.81 ind:fut:3s; +enterrerai enterrer ver 63.68 28.58 0.47 0.14 ind:fut:1s; +enterrerais enterrer ver 63.68 28.58 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +enterrerait enterrer ver 63.68 28.58 0.10 0.14 cnd:pre:3s; +enterreras enterrer ver 63.68 28.58 0.32 0.07 ind:fut:2s; +enterrerez enterrer ver 63.68 28.58 0.09 0.07 ind:fut:2p; +enterrerons enterrer ver 63.68 28.58 0.23 0.14 ind:fut:1p; +enterreront enterrer ver 63.68 28.58 0.11 0.14 ind:fut:3p; +enterres enterrer ver 63.68 28.58 0.40 0.20 ind:pre:2s; +enterreur enterreur nom m s 0.00 0.07 0.00 0.07 +enterrez enterrer ver 63.68 28.58 2.94 0.27 imp:pre:2p;ind:pre:2p; +enterriez enterrer ver 63.68 28.58 0.03 0.00 ind:imp:2p; +enterrions enterrer ver 63.68 28.58 0.04 0.14 ind:imp:1p; +enterrâmes enterrer ver 63.68 28.58 0.00 0.07 ind:pas:1p; +enterrons enterrer ver 63.68 28.58 0.93 0.34 imp:pre:1p;ind:pre:1p; +enterrèrent enterrer ver 63.68 28.58 0.01 0.14 ind:pas:3p; +enterré enterrer ver m s 63.68 28.58 19.90 6.15 par:pas; +enterrée enterrer ver f s 63.68 28.58 5.92 3.58 par:pas; +enterrées enterrer ver f p 63.68 28.58 0.95 0.47 par:pas; +enterrés enterrer ver m p 63.68 28.58 2.63 1.82 par:pas; +enthalpie enthalpie nom f s 0.01 0.00 0.01 0.00 +enthousiasma enthousiasmer ver 1.67 4.66 0.00 0.61 ind:pas:3s; +enthousiasmai enthousiasmer ver 1.67 4.66 0.00 0.07 ind:pas:1s; +enthousiasmaient enthousiasmer ver 1.67 4.66 0.00 0.27 ind:imp:3p; +enthousiasmais enthousiasmer ver 1.67 4.66 0.01 0.07 ind:imp:1s; +enthousiasmait enthousiasmer ver 1.67 4.66 0.02 0.88 ind:imp:3s; +enthousiasmant enthousiasmant adj m s 0.07 0.27 0.04 0.20 +enthousiasmante enthousiasmant adj f s 0.07 0.27 0.03 0.07 +enthousiasme enthousiasme nom m s 7.09 35.61 7.05 33.72 +enthousiasmer enthousiasmer ver 1.67 4.66 0.19 0.68 inf; +enthousiasmes enthousiasme nom m p 7.09 35.61 0.04 1.89 +enthousiasmez enthousiasmer ver 1.67 4.66 0.01 0.00 ind:pre:2p; +enthousiasmèrent enthousiasmer ver 1.67 4.66 0.00 0.07 ind:pas:3p; +enthousiasmé enthousiasmer ver m s 1.67 4.66 0.69 0.88 par:pas; +enthousiasmée enthousiasmer ver f s 1.67 4.66 0.17 0.34 par:pas; +enthousiasmés enthousiasmer ver m p 1.67 4.66 0.06 0.34 par:pas; +enthousiaste enthousiaste adj s 4.41 7.70 3.34 5.88 +enthousiastes enthousiaste adj p 4.41 7.70 1.06 1.82 +enticha enticher ver 1.36 1.69 0.00 0.20 ind:pas:3s; +entichait enticher ver 1.36 1.69 0.00 0.14 ind:imp:3s; +entiche enticher ver 1.36 1.69 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entichement entichement nom m s 0.01 0.00 0.01 0.00 +entichent enticher ver 1.36 1.69 0.01 0.07 ind:pre:3p; +enticher enticher ver 1.36 1.69 0.33 0.07 inf; +entichera enticher ver 1.36 1.69 0.01 0.00 ind:fut:3s; +entichèrent enticher ver 1.36 1.69 0.00 0.20 ind:pas:3p; +entiché enticher ver m s 1.36 1.69 0.33 0.47 par:pas; +entichée enticher ver f s 1.36 1.69 0.44 0.47 par:pas; +entichés enticher ver m p 1.36 1.69 0.01 0.00 par:pas; +entier entier adj m s 76.01 147.91 42.15 56.69 +entiers entier adj m p 76.01 147.91 3.68 12.64 +entifler entifler ver 0.00 0.14 0.00 0.07 inf; +entiflé entifler ver m s 0.00 0.14 0.00 0.07 par:pas; +entière entier adj f s 76.01 147.91 26.45 62.97 +entièrement entièrement adv 17.17 39.93 17.17 39.93 +entières entier adj f p 76.01 147.91 3.73 15.61 +entièreté entièreté nom f s 0.02 0.00 0.02 0.00 +entité entité nom f s 3.08 2.09 2.12 1.62 +entités entité nom f p 3.08 2.09 0.95 0.47 +entoilage entoilage nom m s 0.01 0.07 0.01 0.07 +entoiler entoiler ver 0.02 0.20 0.01 0.00 inf; +entoilées entoiler ver f p 0.02 0.20 0.01 0.07 par:pas; +entoilés entoiler ver m p 0.02 0.20 0.00 0.14 par:pas; +entolome entolome nom m s 0.00 0.14 0.00 0.07 +entolomes entolome nom m p 0.00 0.14 0.00 0.07 +entomologie entomologie nom f s 0.19 0.27 0.19 0.27 +entomologique entomologique adj s 0.01 0.07 0.01 0.07 +entomologiste entomologiste nom s 0.80 1.28 0.79 1.15 +entomologistes entomologiste nom p 0.80 1.28 0.01 0.14 +entonna entonner ver 1.61 8.24 0.00 1.42 ind:pas:3s; +entonnaient entonner ver 1.61 8.24 0.23 0.20 ind:imp:3p; +entonnais entonner ver 1.61 8.24 0.10 0.07 ind:imp:1s;ind:imp:2s; +entonnait entonner ver 1.61 8.24 0.13 1.22 ind:imp:3s; +entonnant entonner ver 1.61 8.24 0.02 0.20 par:pre; +entonne entonner ver 1.61 8.24 0.46 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entonnent entonner ver 1.61 8.24 0.12 0.27 ind:pre:3p; +entonner entonner ver 1.61 8.24 0.42 2.43 inf; +entonnera entonner ver 1.61 8.24 0.00 0.07 ind:fut:3s; +entonneraient entonner ver 1.61 8.24 0.00 0.07 cnd:pre:3p; +entonnions entonner ver 1.61 8.24 0.00 0.14 ind:imp:1p; +entonnoir entonnoir nom m s 0.83 9.46 0.81 7.97 +entonnoirs entonnoir nom m p 0.83 9.46 0.01 1.49 +entonnâmes entonner ver 1.61 8.24 0.00 0.07 ind:pas:1p; +entonnons entonner ver 1.61 8.24 0.01 0.07 imp:pre:1p; +entonnèrent entonner ver 1.61 8.24 0.00 0.27 ind:pas:3p; +entonné entonner ver m s 1.61 8.24 0.11 0.74 par:pas; +entorse entorse nom f s 1.63 2.84 1.40 2.36 +entorses entorse nom f p 1.63 2.84 0.23 0.47 +entortilla entortiller ver 0.25 3.78 0.00 0.34 ind:pas:3s; +entortillage entortillage nom m s 0.00 0.14 0.00 0.07 +entortillages entortillage nom m p 0.00 0.14 0.00 0.07 +entortillai entortiller ver 0.25 3.78 0.00 0.14 ind:pas:1s; +entortillaient entortiller ver 0.25 3.78 0.00 0.27 ind:imp:3p; +entortillait entortiller ver 0.25 3.78 0.03 0.27 ind:imp:3s; +entortillant entortiller ver 0.25 3.78 0.00 0.14 par:pre; +entortille entortiller ver 0.25 3.78 0.05 0.20 imp:pre:2s;ind:pre:3s; +entortillement entortillement nom m s 0.00 0.14 0.00 0.14 +entortillent entortiller ver 0.25 3.78 0.00 0.20 ind:pre:3p; +entortiller entortiller ver 0.25 3.78 0.14 0.47 inf; +entortilleraient entortiller ver 0.25 3.78 0.00 0.07 cnd:pre:3p; +entortillé entortiller ver m s 0.25 3.78 0.03 0.68 par:pas; +entortillée entortillé adj f s 0.06 0.34 0.01 0.07 +entortillées entortiller ver f p 0.25 3.78 0.00 0.27 par:pas; +entortillés entortillé adj m p 0.06 0.34 0.01 0.07 +entour entour nom m s 0.01 1.42 0.01 1.15 +entoura entourer ver 23.99 112.09 0.16 4.26 ind:pas:3s; +entourage entourage nom m s 3.00 10.74 3.00 10.68 +entourages entourage nom m p 3.00 10.74 0.00 0.07 +entourai entourer ver 23.99 112.09 0.00 0.20 ind:pas:1s; +entouraient entourer ver 23.99 112.09 0.48 12.97 ind:imp:3p; +entourais entourer ver 23.99 112.09 0.20 0.34 ind:imp:1s; +entourait entourer ver 23.99 112.09 0.95 14.05 ind:imp:3s; +entourant entourer ver 23.99 112.09 0.90 6.28 par:pre; +entoure entourer ver 23.99 112.09 3.19 9.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +entourent entourer ver 23.99 112.09 3.12 7.91 ind:pre:3p; +entourer entourer ver 23.99 112.09 1.21 4.93 inf; +entourera entourer ver 23.99 112.09 0.14 0.20 ind:fut:3s; +entoureraient entourer ver 23.99 112.09 0.01 0.07 cnd:pre:3p; +entourerait entourer ver 23.99 112.09 0.00 0.07 cnd:pre:3s; +entoureront entourer ver 23.99 112.09 0.11 0.07 ind:fut:3p; +entoures entourer ver 23.99 112.09 0.05 0.07 ind:pre:2s; +entourez entourer ver 23.99 112.09 0.37 0.14 imp:pre:2p;ind:pre:2p; +entourions entourer ver 23.99 112.09 0.00 0.47 ind:imp:1p; +entourloupe entourloupe nom f s 0.94 1.01 0.78 0.68 +entourloupent entourlouper ver 0.12 0.00 0.10 0.00 ind:pre:3p; +entourlouper entourlouper ver 0.12 0.00 0.02 0.00 inf; +entourloupes entourloupe nom f p 0.94 1.01 0.17 0.34 +entourloupette entourloupette nom f s 0.17 0.47 0.04 0.20 +entourloupettes entourloupette nom f p 0.17 0.47 0.12 0.27 +entournures entournure nom f p 0.03 1.28 0.03 1.28 +entourons entourer ver 23.99 112.09 0.01 0.07 imp:pre:1p;ind:pre:1p; +entourât entourer ver 23.99 112.09 0.00 0.14 sub:imp:3s; +entours entour nom m p 0.01 1.42 0.00 0.27 +entourèrent entourer ver 23.99 112.09 0.03 1.42 ind:pas:3p; +entouré entourer ver m s 23.99 112.09 7.57 26.08 par:pas; +entourée entourer ver f s 23.99 112.09 3.99 13.11 par:pas; +entourées entourer ver f p 23.99 112.09 0.17 2.91 par:pas; +entourés entourer ver m p 23.99 112.09 1.32 7.09 par:pas; +entr_acte entr_acte nom m s 0.27 0.00 0.14 0.00 +entr_acte entr_acte nom m p 0.27 0.00 0.14 0.00 +entr_aimer entr_aimer ver 0.00 0.07 0.00 0.07 inf; +entr_apercevoir entr_apercevoir ver 0.03 1.08 0.01 0.27 inf; +entr_apercevoir entr_apercevoir ver m s 0.03 1.08 0.00 0.14 par:pas; +entr_apercevoir entr_apercevoir ver f s 0.03 1.08 0.02 0.34 par:pas; +entr_apercevoir entr_apercevoir ver f p 0.03 1.08 0.00 0.07 par:pas; +entr_apercevoir entr_apercevoir ver m p 0.03 1.08 0.00 0.27 ind:pas:1s;par:pas; +entr_appeler entr_appeler ver 0.00 0.07 0.00 0.07 ind:pre:3p; +entr_ouvert entr_ouvert adj m s 0.01 1.49 0.00 0.41 +entr_ouvert entr_ouvert adj f s 0.01 1.49 0.01 0.74 +entr_ouvert entr_ouvert adj f p 0.01 1.49 0.00 0.27 +entr_ouvert entr_ouvert adj m p 0.01 1.49 0.00 0.07 +entr_égorger entr_égorger ver 0.00 0.20 0.00 0.07 ind:pre:3p; +entr_égorger entr_égorger ver 0.00 0.20 0.00 0.07 inf; +entr_égorger entr_égorger ver 0.00 0.20 0.00 0.07 ind:pas:3p; +entra entrer ver 450.11 398.38 2.72 51.96 ind:pas:3s; +entraîna entraîner ver 50.68 101.08 0.49 13.31 ind:pas:3s; +entraînai entraîner ver 50.68 101.08 0.00 1.01 ind:pas:1s; +entraînaient entraîner ver 50.68 101.08 0.05 3.11 ind:imp:3p; +entraînais entraîner ver 50.68 101.08 0.61 1.01 ind:imp:1s;ind:imp:2s; +entraînait entraîner ver 50.68 101.08 1.06 12.16 ind:imp:3s; +entraînant entraîner ver 50.68 101.08 1.13 7.64 par:pre; +entraînante entraînant adj f s 0.63 2.16 0.10 0.34 +entraînants entraînant adj m p 0.63 2.16 0.02 0.27 +entraîne entraîner ver 50.68 101.08 11.28 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +entraînement entraînement nom m s 20.31 8.18 19.63 7.91 +entraînements entraînement nom m p 20.31 8.18 0.67 0.27 +entraînent entraîner ver 50.68 101.08 1.50 3.24 ind:pre:3p;sub:pre:3p; +entraîner entraîner ver 50.68 101.08 15.39 20.81 inf;;inf;;inf;; +entraînera entraîner ver 50.68 101.08 0.94 0.74 ind:fut:3s; +entraînerai entraîner ver 50.68 101.08 0.40 0.07 ind:fut:1s; +entraîneraient entraîner ver 50.68 101.08 0.02 0.41 cnd:pre:3p; +entraînerais entraîner ver 50.68 101.08 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +entraînerait entraîner ver 50.68 101.08 0.54 1.89 cnd:pre:3s; +entraîneras entraîner ver 50.68 101.08 0.11 0.14 ind:fut:2s; +entraînerez entraîner ver 50.68 101.08 0.09 0.00 ind:fut:2p; +entraîneriez entraîner ver 50.68 101.08 0.00 0.07 cnd:pre:2p; +entraîneront entraîner ver 50.68 101.08 0.08 0.27 ind:fut:3p; +entraînes entraîner ver 50.68 101.08 2.05 0.07 ind:pre:2s;sub:pre:2s; +entraîneur entraîneur nom m s 8.69 4.46 7.87 2.77 +entraîneurs entraîneur nom m p 8.69 4.46 0.45 0.41 +entraîneuse entraîneur nom f s 8.69 4.46 0.33 0.47 +entraîneuses entraîneur nom f p 8.69 4.46 0.04 0.81 +entraînez entraîner ver 50.68 101.08 0.84 0.07 imp:pre:2p;ind:pre:2p; +entraîniez entraîner ver 50.68 101.08 0.11 0.00 ind:imp:2p;sub:pre:2p; +entraînons entraîner ver 50.68 101.08 0.15 0.07 imp:pre:1p;ind:pre:1p; +entraînât entraîner ver 50.68 101.08 0.00 0.27 sub:imp:3s; +entraînèrent entraîner ver 50.68 101.08 0.14 1.15 ind:pas:3p; +entraîné entraîner ver m s 50.68 101.08 8.33 10.41 par:pas; +entraînée entraîner ver f s 50.68 101.08 2.47 5.00 ind:imp:3p;par:pas; +entraînées entraîner ver f p 50.68 101.08 0.09 1.01 par:pas; +entraînés entraîner ver m p 50.68 101.08 2.73 4.12 par:pas; +entracte entracte nom m s 1.61 5.74 1.59 4.86 +entractes entracte nom m p 1.61 5.74 0.02 0.88 +entrai entrer ver 450.11 398.38 0.20 7.03 ind:pas:1s; +entraidait entraider ver 3.86 0.68 0.06 0.00 ind:imp:3s; +entraidant entraider ver 3.86 0.68 0.00 0.07 par:pre; +entraide entraider ver 3.86 0.68 0.88 0.00 ind:pre:3s; +entraident entraider ver 3.86 0.68 0.12 0.07 ind:pre:3p; +entraider entraider ver 3.86 0.68 2.48 0.54 inf; +entraidez entraider ver 3.86 0.68 0.23 0.00 imp:pre:2p; +entraidiez entraider ver 3.86 0.68 0.01 0.00 ind:imp:2p; +entraidons entraider ver 3.86 0.68 0.05 0.00 ind:pre:1p; +entraidés entraider ver m p 3.86 0.68 0.02 0.00 par:pas; +entraient entrer ver 450.11 398.38 0.71 10.41 ind:imp:3p; +entrailles entrailles nom f p 4.96 13.45 4.96 13.45 +entrain entrain nom m s 3.82 7.97 3.82 7.97 +entrais entrer ver 450.11 398.38 1.01 4.46 ind:imp:1s;ind:imp:2s; +entrait entrer ver 450.11 398.38 3.30 33.45 ind:imp:3s; +entrant entrer ver 450.11 398.38 2.97 13.85 par:pre; +entrante entrant adj f s 0.92 0.61 0.07 0.00 +entrantes entrant adj f p 0.92 0.61 0.04 0.00 +entrants entrant adj m p 0.92 0.61 0.33 0.00 +entrapercevoir entrapercevoir ver 0.06 0.20 0.01 0.00 inf; +entraperçu entrapercevoir ver m s 0.06 0.20 0.05 0.07 par:pas; +entraperçues entrapercevoir ver f p 0.06 0.20 0.00 0.07 par:pas; +entraperçus entrapercevoir ver m p 0.06 0.20 0.00 0.07 par:pas; +entrassent entrer ver 450.11 398.38 0.00 0.07 sub:imp:3p; +entrava entraver ver 2.28 11.62 0.00 0.07 ind:pas:3s; +entravai entraver ver 2.28 11.62 0.00 0.07 ind:pas:1s; +entravaient entraver ver 2.28 11.62 0.01 0.14 ind:imp:3p; +entravais entraver ver 2.28 11.62 0.00 0.34 ind:imp:1s; +entravait entraver ver 2.28 11.62 0.01 1.55 ind:imp:3s; +entravant entraver ver 2.28 11.62 0.01 0.41 par:pre; +entrave entrave nom f s 1.17 2.50 0.85 1.01 +entravent entraver ver 2.28 11.62 0.19 0.68 ind:pre:3p; +entraver entraver ver 2.28 11.62 0.75 2.23 inf; +entravera entraver ver 2.28 11.62 0.06 0.14 ind:fut:3s; +entraverais entraver ver 2.28 11.62 0.00 0.07 cnd:pre:1s; +entraverait entraver ver 2.28 11.62 0.01 0.34 cnd:pre:3s; +entraveront entraver ver 2.28 11.62 0.01 0.07 ind:fut:3p; +entraves entrave nom f p 1.17 2.50 0.32 1.49 +entravez entraver ver 2.28 11.62 0.14 0.00 imp:pre:2p;ind:pre:2p; +entravèrent entraver ver 2.28 11.62 0.00 0.14 ind:pas:3p; +entravé entraver ver m s 2.28 11.62 0.46 1.35 par:pas; +entravée entraver ver f s 2.28 11.62 0.04 0.27 par:pas; +entravées entravé adj f p 0.41 1.76 0.00 0.47 +entravés entraver ver m p 2.28 11.62 0.14 0.27 par:pas; +entre_deux_guerres entre_deux_guerres nom m 0.10 0.74 0.10 0.74 +entre_deux entre_deux nom m 0.34 0.81 0.34 0.81 +entre_déchirer entre_déchirer ver 0.04 0.61 0.02 0.14 ind:imp:3p; +entre_déchirer entre_déchirer ver 0.04 0.61 0.00 0.07 ind:imp:3s; +entre_déchirer entre_déchirer ver 0.04 0.61 0.01 0.00 ind:pre:3s; +entre_déchirer entre_déchirer ver 0.04 0.61 0.00 0.14 ind:pre:3p; +entre_déchirer entre_déchirer ver 0.04 0.61 0.01 0.20 inf; +entre_déchirer entre_déchirer ver 0.04 0.61 0.00 0.07 ind:pas:3p; +entre_dévorer entre_dévorer ver 0.30 0.34 0.01 0.07 par:pre; +entre_dévorer entre_dévorer ver 0.30 0.34 0.25 0.07 ind:pre:3p; +entre_dévorer entre_dévorer ver 0.30 0.34 0.05 0.14 inf; +entre_dévorer entre_dévorer ver 0.30 0.34 0.00 0.07 ind:pas:3p; +entre_jambe entre_jambe nom m s 0.03 0.07 0.03 0.07 +entre_jambes entre_jambes nom m 0.07 0.07 0.07 0.07 +entre_rail entre_rail nom m s 0.01 0.00 0.01 0.00 +entre_regarder entre_regarder ver 0.00 0.34 0.00 0.07 ind:imp:3s; +entre_regarder entre_regarder ver 0.00 0.34 0.00 0.07 ind:pre:3p; +entre_regarder entre_regarder ver 0.00 0.34 0.00 0.14 ind:pas:3p; +entre_regarder entre_regarder ver m p 0.00 0.34 0.00 0.07 par:pas; +entre_temps entre_temps adv 4.04 7.97 4.04 7.97 +entre_tuer entre_tuer ver 2.63 1.01 0.01 0.00 ind:imp:3p; +entre_tuer entre_tuer ver 2.63 1.01 0.00 0.14 ind:imp:3s; +entre_tuer entre_tuer ver 2.63 1.01 0.23 0.07 ind:pre:3s; +entre_tuer entre_tuer ver 2.63 1.01 0.55 0.07 ind:pre:3p; +entre_tuer entre_tuer ver 2.63 1.01 1.33 0.68 inf; +entre_tuer entre_tuer ver 2.63 1.01 0.14 0.00 ind:fut:3p; +entre_tuer entre_tuer ver 2.63 1.01 0.03 0.00 imp:pre:2p;ind:pre:2p; +entre_tuer entre_tuer ver 2.63 1.01 0.01 0.00 ind:imp:1p; +entre_tuer entre_tuer ver m p 2.63 1.01 0.34 0.07 par:pas; +entre entre pre 372.72 833.99 372.72 833.99 +entrebattre entrebattre ver 0.00 0.07 0.00 0.07 inf; +entrebâilla entrebâiller ver 0.12 5.88 0.00 0.88 ind:pas:3s; +entrebâillaient entrebâiller ver 0.12 5.88 0.00 0.27 ind:imp:3p; +entrebâillais entrebâiller ver 0.12 5.88 0.00 0.07 ind:imp:1s; +entrebâillait entrebâiller ver 0.12 5.88 0.00 0.41 ind:imp:3s; +entrebâillant entrebâiller ver 0.12 5.88 0.10 0.20 par:pre; +entrebâille entrebâiller ver 0.12 5.88 0.00 1.01 ind:pre:1s;ind:pre:3s; +entrebâillement entrebâillement nom m s 0.02 3.51 0.02 3.51 +entrebâillent entrebâiller ver 0.12 5.88 0.00 0.07 ind:pre:3p; +entrebâiller entrebâiller ver 0.12 5.88 0.00 0.47 inf; +entrebâillerait entrebâiller ver 0.12 5.88 0.00 0.07 cnd:pre:3s; +entrebâilleur entrebâilleur nom m s 0.14 0.00 0.14 0.00 +entrebâillèrent entrebâiller ver 0.12 5.88 0.00 0.07 ind:pas:3p; +entrebâillé entrebâiller ver m s 0.12 5.88 0.01 0.47 par:pas; +entrebâillée entrebâillé adj f s 0.38 3.11 0.38 2.03 +entrebâillées entrebâiller ver f p 0.12 5.88 0.00 0.07 par:pas; +entrebâillés entrebâillé adj m p 0.38 3.11 0.00 0.34 +entrecôte entrecôte nom f s 0.41 1.01 0.25 0.81 +entrecôtes entrecôte nom f p 0.41 1.01 0.16 0.20 +entrechat entrechat nom m s 0.21 0.95 0.20 0.14 +entrechats entrechat nom m p 0.21 0.95 0.01 0.81 +entrechoc entrechoc nom m s 0.00 0.14 0.00 0.07 +entrechocs entrechoc nom m p 0.00 0.14 0.00 0.07 +entrechoquaient entrechoquer ver 0.19 5.81 0.03 1.01 ind:imp:3p; +entrechoquait entrechoquer ver 0.19 5.81 0.00 0.07 ind:imp:3s; +entrechoquant entrechoquer ver 0.19 5.81 0.01 0.68 par:pre; +entrechoque entrechoquer ver 0.19 5.81 0.00 0.07 ind:pre:1s; +entrechoquement entrechoquement nom m s 0.00 0.07 0.00 0.07 +entrechoquent entrechoquer ver 0.19 5.81 0.10 1.08 ind:pre:3p; +entrechoquer entrechoquer ver 0.19 5.81 0.02 0.54 inf; +entrechoqueront entrechoquer ver 0.19 5.81 0.01 0.00 ind:fut:3p; +entrechoquions entrechoquer ver 0.19 5.81 0.00 0.07 ind:imp:1p; +entrechoquèrent entrechoquer ver 0.19 5.81 0.00 0.27 ind:pas:3p; +entrechoqué entrechoquer ver m s 0.19 5.81 0.00 0.41 par:pas; +entrechoquées entrechoquer ver f p 0.19 5.81 0.00 0.54 par:pas; +entrechoqués entrechoquer ver m p 0.19 5.81 0.02 1.08 par:pas; +entreclos entreclore ver m s 0.00 0.07 0.00 0.07 par:pas; +entrecloses entreclos adj f p 0.00 0.07 0.00 0.07 +entrecoupaient entrecouper ver 0.06 3.85 0.00 0.07 ind:imp:3p; +entrecoupais entrecouper ver 0.06 3.85 0.00 0.07 ind:imp:1s; +entrecoupait entrecouper ver 0.06 3.85 0.00 0.20 ind:imp:3s; +entrecoupant entrecouper ver 0.06 3.85 0.00 0.07 par:pre; +entrecoupe entrecouper ver 0.06 3.85 0.00 0.07 ind:pre:3s; +entrecoupent entrecouper ver 0.06 3.85 0.01 0.00 ind:pre:3p; +entrecouper entrecouper ver 0.06 3.85 0.00 0.07 inf; +entrecoupé entrecouper ver m s 0.06 3.85 0.03 1.01 par:pas; +entrecoupée entrecoupé adj f s 0.01 0.95 0.01 0.34 +entrecoupées entrecouper ver f p 0.06 3.85 0.01 0.61 par:pas; +entrecoupés entrecouper ver m p 0.06 3.85 0.01 0.74 par:pas; +entrecroisaient entrecroiser ver 0.28 5.54 0.00 1.49 ind:imp:3p; +entrecroisait entrecroiser ver 0.28 5.54 0.00 0.14 ind:imp:3s; +entrecroisant entrecroiser ver 0.28 5.54 0.00 0.95 par:pre; +entrecroise entrecroiser ver 0.28 5.54 0.00 0.07 ind:pre:3s; +entrecroisement entrecroisement nom m s 0.00 0.68 0.00 0.61 +entrecroisements entrecroisement nom m p 0.00 0.68 0.00 0.07 +entrecroisent entrecroiser ver 0.28 5.54 0.16 0.68 ind:pre:3p; +entrecroiser entrecroiser ver 0.28 5.54 0.02 0.00 inf; +entrecroisèrent entrecroiser ver 0.28 5.54 0.00 0.20 ind:pas:3p; +entrecroisé entrecroiser ver m s 0.28 5.54 0.02 0.00 par:pas; +entrecroisées entrecroiser ver f p 0.28 5.54 0.03 1.08 par:pas; +entrecroisés entrecroiser ver m p 0.28 5.54 0.04 0.95 par:pas; +entrecuisse entrecuisse nom m s 0.22 0.68 0.22 0.68 +entredéchire entredéchirer ver 0.01 0.07 0.01 0.07 ind:pre:3s;sub:pre:3s; +entredévorait entredévorer ver 0.01 0.07 0.01 0.00 ind:imp:3s; +entredévorer entredévorer ver 0.01 0.07 0.00 0.07 inf; +entrefaites entrefaite nom f p 0.00 2.03 0.00 2.03 +entreferma entrefermer ver 0.00 0.20 0.00 0.07 ind:pas:3s; +entrefermée entrefermer ver f s 0.00 0.20 0.00 0.07 par:pas; +entrefermées entrefermer ver f p 0.00 0.20 0.00 0.07 par:pas; +entrefilet entrefilet nom m s 0.08 1.55 0.07 1.28 +entrefilets entrefilet nom m p 0.08 1.55 0.01 0.27 +entregent entregent nom m s 0.14 0.41 0.14 0.41 +entrejambe entrejambe nom m s 0.80 1.49 0.76 1.35 +entrejambes entrejambe nom m p 0.80 1.49 0.04 0.14 +entrelace entrelacer ver 0.71 2.03 0.02 0.14 imp:pre:2s;ind:pre:3s; +entrelacement entrelacement nom m s 0.01 0.34 0.01 0.34 +entrelacent entrelacer ver 0.71 2.03 0.13 0.27 ind:pre:3p; +entrelacer entrelacer ver 0.71 2.03 0.03 0.14 inf; +entrelacs entrelacs nom m 0.31 2.84 0.31 2.84 +entrelacèrent entrelacer ver 0.71 2.03 0.00 0.07 ind:pas:3p; +entrelacé entrelacer ver m s 0.71 2.03 0.04 0.20 par:pas; +entrelacée entrelacer ver f s 0.71 2.03 0.01 0.07 par:pas; +entrelacées entrelacer ver f p 0.71 2.03 0.05 0.34 par:pas; +entrelacés entrelacer ver m p 0.71 2.03 0.43 0.34 par:pas; +entrelarde entrelarder ver 0.00 0.34 0.00 0.07 ind:pre:3s; +entrelarder entrelarder ver 0.00 0.34 0.00 0.07 inf; +entrelardé entrelardé adj m s 0.00 0.07 0.00 0.07 +entrelardée entrelarder ver f s 0.00 0.34 0.00 0.07 par:pas; +entrelardées entrelarder ver f p 0.00 0.34 0.00 0.07 par:pas; +entrelardés entrelarder ver m p 0.00 0.34 0.00 0.07 par:pas; +entrelaçaient entrelacer ver 0.71 2.03 0.00 0.41 ind:imp:3p; +entrelaçait entrelacer ver 0.71 2.03 0.00 0.07 ind:imp:3s; +entremet entremettre ver 0.01 0.81 0.00 0.14 ind:pre:3s; +entremets entremets nom m 0.03 1.42 0.03 1.42 +entremettait entremettre ver 0.01 0.81 0.00 0.07 ind:imp:3s; +entremetteur entremetteur nom m s 0.92 1.01 0.68 0.61 +entremetteurs entremetteur nom m p 0.92 1.01 0.09 0.14 +entremetteuse entremetteur nom f s 0.92 1.01 0.16 0.27 +entremettre entremettre ver 0.01 0.81 0.00 0.27 inf; +entremis entremettre ver m s 0.01 0.81 0.00 0.14 par:pas; +entremise entremise nom f s 0.16 1.49 0.16 1.49 +entremit entremettre ver 0.01 0.81 0.00 0.20 ind:pas:3s; +entremêlaient entremêler ver 0.37 2.91 0.00 0.88 ind:imp:3p; +entremêlait entremêler ver 0.37 2.91 0.00 0.14 ind:imp:3s; +entremêlant entremêler ver 0.37 2.91 0.01 0.34 par:pre; +entremêle entremêler ver 0.37 2.91 0.00 0.14 ind:pre:3s; +entremêlement entremêlement nom m s 0.00 0.47 0.00 0.47 +entremêlent entremêler ver 0.37 2.91 0.16 0.20 ind:pre:3p; +entremêlé entremêler ver m s 0.37 2.91 0.01 0.07 par:pas; +entremêlées entremêler ver f p 0.37 2.91 0.04 0.34 par:pas; +entremêlés entremêler ver m p 0.37 2.91 0.15 0.81 par:pas; +entrent entrer ver 450.11 398.38 6.82 7.30 ind:pre:3p; +entrepôt entrepôt nom m s 9.75 8.58 7.47 2.36 +entrepôts entrepôt nom m p 9.75 8.58 2.28 6.22 +entrepont entrepont nom m s 0.13 0.74 0.13 0.68 +entreponts entrepont nom m p 0.13 0.74 0.00 0.07 +entreposage entreposage nom m s 0.11 0.00 0.11 0.00 +entreposais entreposer ver 0.94 3.31 0.00 0.07 ind:imp:1s; +entreposait entreposer ver 0.94 3.31 0.01 0.41 ind:imp:3s; +entrepose entreposer ver 0.94 3.31 0.10 0.20 ind:pre:3s; +entreposent entreposer ver 0.94 3.31 0.01 0.07 ind:pre:3p; +entreposer entreposer ver 0.94 3.31 0.36 0.68 inf; +entreposerait entreposer ver 0.94 3.31 0.00 0.07 cnd:pre:3s; +entreposez entreposer ver 0.94 3.31 0.03 0.00 imp:pre:2p;ind:pre:2p; +entreposions entreposer ver 0.94 3.31 0.01 0.07 ind:imp:1p; +entreposé entreposer ver m s 0.94 3.31 0.14 0.68 par:pas; +entreposée entreposer ver f s 0.94 3.31 0.04 0.07 par:pas; +entreposées entreposer ver f p 0.94 3.31 0.09 0.14 par:pas; +entreposés entreposer ver m p 0.94 3.31 0.15 0.88 par:pas; +entreprîmes entreprendre ver 6.78 47.84 0.12 0.14 ind:pas:1p; +entreprît entreprendre ver 6.78 47.84 0.01 0.14 sub:imp:3s; +entreprenaient entreprendre ver 6.78 47.84 0.01 0.47 ind:imp:3p; +entreprenais entreprendre ver 6.78 47.84 0.03 0.47 ind:imp:1s;ind:imp:2s; +entreprenait entreprendre ver 6.78 47.84 0.12 2.64 ind:imp:3s; +entreprenant entreprendre ver 6.78 47.84 0.46 0.88 par:pre; +entreprenante entreprenant adj f s 0.48 2.09 0.16 0.27 +entreprenantes entreprenant adj f p 0.48 2.09 0.02 0.07 +entreprenants entreprenant adj m p 0.48 2.09 0.05 0.27 +entreprend entreprendre ver 6.78 47.84 0.40 2.84 ind:pre:3s; +entreprendrai entreprendre ver 6.78 47.84 0.01 0.14 ind:fut:1s; +entreprendraient entreprendre ver 6.78 47.84 0.01 0.20 cnd:pre:3p; +entreprendrais entreprendre ver 6.78 47.84 0.02 0.14 cnd:pre:1s; +entreprendrait entreprendre ver 6.78 47.84 0.02 0.74 cnd:pre:3s; +entreprendras entreprendre ver 6.78 47.84 0.11 0.00 ind:fut:2s; +entreprendre entreprendre ver 6.78 47.84 2.38 11.42 inf; +entreprendrez entreprendre ver 6.78 47.84 0.01 0.07 ind:fut:2p; +entreprendrons entreprendre ver 6.78 47.84 0.02 0.07 ind:fut:1p; +entreprends entreprendre ver 6.78 47.84 0.64 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entrepreneur entrepreneur nom m s 4.88 2.16 3.24 1.35 +entrepreneurs entrepreneur nom m p 4.88 2.16 1.62 0.74 +entrepreneuse entrepreneur nom f s 4.88 2.16 0.03 0.00 +entrepreneuses entrepreneur nom f p 4.88 2.16 0.00 0.07 +entreprenez entreprendre ver 6.78 47.84 0.13 0.14 imp:pre:2p;ind:pre:2p; +entrepreniez entreprendre ver 6.78 47.84 0.02 0.07 ind:imp:2p; +entreprenions entreprendre ver 6.78 47.84 0.00 0.20 ind:imp:1p; +entreprenne entreprendre ver 6.78 47.84 0.01 0.41 sub:pre:1s;sub:pre:3s; +entreprennent entreprendre ver 6.78 47.84 0.07 0.74 ind:pre:3p; +entreprenons entreprendre ver 6.78 47.84 0.27 0.07 ind:pre:1p; +entreprirent entreprendre ver 6.78 47.84 0.00 1.28 ind:pas:3p; +entrepris entreprendre ver m 6.78 47.84 0.99 10.74 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +entreprise entreprise nom f s 28.36 38.31 22.79 29.05 +entreprises entreprise nom f p 28.36 38.31 5.57 9.26 +entreprit entreprendre ver 6.78 47.84 0.34 10.34 ind:pas:3s; +entrer entrer ver 450.11 398.38 160.13 109.26 inf;; +entrera entrer ver 450.11 398.38 3.06 1.76 ind:fut:3s; +entrerai entrer ver 450.11 398.38 1.84 1.28 ind:fut:1s; +entreraient entrer ver 450.11 398.38 0.05 0.61 cnd:pre:3p; +entrerais entrer ver 450.11 398.38 0.54 0.41 cnd:pre:1s;cnd:pre:2s; +entrerait entrer ver 450.11 398.38 0.58 2.23 cnd:pre:3s; +entreras entrer ver 450.11 398.38 0.68 0.81 ind:fut:2s; +entreregardèrent entreregarder ver 0.00 0.07 0.00 0.07 ind:pas:3p; +entrerez entrer ver 450.11 398.38 1.24 0.27 ind:fut:2p; +entrerions entrer ver 450.11 398.38 0.17 0.07 cnd:pre:1p; +entrerons entrer ver 450.11 398.38 0.57 0.27 ind:fut:1p; +entreront entrer ver 450.11 398.38 0.96 0.88 ind:fut:3p; +entres entrer ver 450.11 398.38 7.18 0.81 ind:pre:1p;ind:pre:2s;sub:pre:2s; +entresol entresol nom m s 0.05 1.35 0.05 1.28 +entresols entresol nom m p 0.05 1.35 0.00 0.07 +entretînmes entretenir ver 13.27 46.42 0.00 0.07 ind:pas:1p; +entretînt entretenir ver 13.27 46.42 0.00 0.14 sub:imp:3s; +entretenaient entretenir ver 13.27 46.42 0.05 2.70 ind:imp:3p; +entretenais entretenir ver 13.27 46.42 0.10 0.88 ind:imp:1s;ind:imp:2s; +entretenait entretenir ver 13.27 46.42 0.39 8.85 ind:imp:3s; +entretenant entretenir ver 13.27 46.42 0.04 1.08 par:pre; +entreteneur entreteneur nom m s 0.01 0.07 0.00 0.07 +entreteneuse entreteneur nom f s 0.01 0.07 0.01 0.00 +entretenez entretenir ver 13.27 46.42 0.27 0.14 imp:pre:2p;ind:pre:2p; +entreteniez entretenir ver 13.27 46.42 0.07 0.00 ind:imp:2p; +entretenions entretenir ver 13.27 46.42 0.10 0.61 ind:imp:1p; +entretenir entretenir ver 13.27 46.42 8.07 17.43 inf; +entretenons entretenir ver 13.27 46.42 0.09 0.14 imp:pre:1p;ind:pre:1p; +entretenu entretenir ver m s 13.27 46.42 0.42 3.24 par:pas; +entretenue entretenir ver f s 13.27 46.42 0.52 1.22 par:pas; +entretenues entretenu adj f p 0.93 4.05 0.04 0.68 +entretenus entretenir ver m p 13.27 46.42 0.08 0.95 par:pas; +entretien entretien nom m s 18.92 27.77 16.72 20.54 +entretiendra entretenir ver 13.27 46.42 0.14 0.00 ind:fut:3s; +entretiendrai entretenir ver 13.27 46.42 0.02 0.07 ind:fut:1s; +entretiendraient entretenir ver 13.27 46.42 0.00 0.14 cnd:pre:3p; +entretiendrait entretenir ver 13.27 46.42 0.02 0.20 cnd:pre:3s; +entretiendras entretenir ver 13.27 46.42 0.14 0.00 ind:fut:2s; +entretiendrez entretenir ver 13.27 46.42 0.02 0.07 ind:fut:2p; +entretiendrons entretenir ver 13.27 46.42 0.01 0.00 ind:fut:1p; +entretienne entretenir ver 13.27 46.42 0.28 0.34 sub:pre:1s;sub:pre:3s; +entretiennent entretenir ver 13.27 46.42 0.20 1.55 ind:pre:3p; +entretiennes entretenir ver 13.27 46.42 0.02 0.07 sub:pre:2s; +entretiens entretien nom m p 18.92 27.77 2.20 7.23 +entretient entretenir ver 13.27 46.42 1.27 3.38 ind:pre:3s; +entretinrent entretenir ver 13.27 46.42 0.00 0.34 ind:pas:3p; +entretins entretenir ver 13.27 46.42 0.01 0.14 ind:pas:1s; +entretint entretenir ver 13.27 46.42 0.00 1.01 ind:pas:3s; +entretissait entretisser ver 0.00 0.27 0.00 0.07 ind:imp:3s; +entretissé entretisser ver m s 0.00 0.27 0.00 0.14 par:pas; +entretissées entretisser ver f p 0.00 0.27 0.00 0.07 par:pas; +entretoisaient entretoiser ver 0.00 0.07 0.00 0.07 ind:imp:3p; +entretoise entretoise nom f s 0.01 0.00 0.01 0.00 +entretoisement entretoisement nom m s 0.00 0.07 0.00 0.07 +entretuaient entretuer ver 4.54 0.34 0.09 0.00 ind:imp:3p; +entretuant entretuer ver 4.54 0.34 0.13 0.00 par:pre; +entretue entretuer ver 4.54 0.34 0.28 0.00 ind:pre:3s; +entretuent entretuer ver 4.54 0.34 0.89 0.07 ind:pre:3p; +entretuer entretuer ver 4.54 0.34 2.79 0.20 ind:pre:2p;inf; +entretueraient entretuer ver 4.54 0.34 0.01 0.00 cnd:pre:3p; +entretuerait entretuer ver 4.54 0.34 0.01 0.07 cnd:pre:3s; +entretueront entretuer ver 4.54 0.34 0.04 0.00 ind:fut:3p; +entretuez entretuer ver 4.54 0.34 0.07 0.00 imp:pre:2p;ind:pre:2p; +entretuées entretuer ver f p 4.54 0.34 0.10 0.00 par:pas; +entretués entretuer ver m p 4.54 0.34 0.14 0.00 par:pas; +entrevît entrevoir ver 2.44 29.53 0.03 0.07 sub:imp:3s; +entreverrai entrevoir ver 2.44 29.53 0.00 0.07 ind:fut:1s; +entrevirent entrevoir ver 2.44 29.53 0.00 0.07 ind:pas:3p; +entrevis entrevoir ver 2.44 29.53 0.03 1.08 ind:pas:1s; +entrevit entrevoir ver 2.44 29.53 0.04 2.23 ind:pas:3s; +entrevoie entrevoir ver 2.44 29.53 0.00 0.07 sub:pre:3s; +entrevoient entrevoir ver 2.44 29.53 0.02 0.41 ind:pre:3p; +entrevoir entrevoir ver 2.44 29.53 1.00 8.65 inf; +entrevois entrevoir ver 2.44 29.53 0.81 1.96 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entrevoit entrevoir ver 2.44 29.53 0.15 1.55 ind:pre:3s; +entrevous entrevous nom m 0.01 0.00 0.01 0.00 +entrevoyaient entrevoir ver 2.44 29.53 0.00 0.27 ind:imp:3p; +entrevoyais entrevoir ver 2.44 29.53 0.14 1.62 ind:imp:1s; +entrevoyait entrevoir ver 2.44 29.53 0.02 1.69 ind:imp:3s; +entrevoyant entrevoir ver 2.44 29.53 0.00 0.34 par:pre; +entrevoyons entrevoir ver 2.44 29.53 0.00 0.20 ind:pre:1p; +entrevu entrevoir ver m s 2.44 29.53 0.17 4.86 par:pas; +entrevue entrevue nom f s 3.28 9.59 2.97 8.85 +entrevues entrevue nom f p 3.28 9.59 0.31 0.74 +entrevus entrevoir ver m p 2.44 29.53 0.00 1.15 par:pas; +entrez entrer ver 450.11 398.38 104.85 12.70 imp:pre:2p;ind:pre:2p; +entriez entrer ver 450.11 398.38 0.29 0.20 ind:imp:2p; +entrions entrer ver 450.11 398.38 0.12 2.09 ind:imp:1p; +entrisme entrisme nom m s 0.00 0.07 0.00 0.07 +entrâmes entrer ver 450.11 398.38 0.00 1.15 ind:pas:1p; +entrons entrer ver 450.11 398.38 6.05 4.39 imp:pre:1p;ind:pre:1p; +entropie entropie nom f s 0.19 0.27 0.19 0.27 +entropique entropique adj s 0.07 0.00 0.05 0.00 +entropiques entropique adj f p 0.07 0.00 0.01 0.00 +entrât entrer ver 450.11 398.38 0.14 0.95 sub:imp:3s; +entrouvert entrouvrir ver m s 0.95 19.59 0.10 1.62 par:pas; +entrouverte entrouvert adj f s 0.70 10.07 0.47 6.55 +entrouvertes entrouvert adj f p 0.70 10.07 0.11 2.09 +entrouverts entrouvert adj m p 0.70 10.07 0.10 0.54 +entrouverture entrouverture nom f s 0.00 0.07 0.00 0.07 +entrouvrît entrouvrir ver 0.95 19.59 0.00 0.07 sub:imp:3s; +entrouvraient entrouvrir ver 0.95 19.59 0.00 0.47 ind:imp:3p; +entrouvrait entrouvrir ver 0.95 19.59 0.14 1.76 ind:imp:3s; +entrouvrant entrouvrir ver 0.95 19.59 0.00 0.68 par:pre; +entrouvre entrouvrir ver 0.95 19.59 0.20 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entrouvrent entrouvrir ver 0.95 19.59 0.02 0.81 ind:pre:3p; +entrouvrir entrouvrir ver 0.95 19.59 0.21 2.30 inf; +entrouvrirait entrouvrir ver 0.95 19.59 0.00 0.07 cnd:pre:3s; +entrouvrirent entrouvrir ver 0.95 19.59 0.00 0.14 ind:pas:3p; +entrouvris entrouvrir ver 0.95 19.59 0.00 0.14 ind:pas:1s; +entrouvrit entrouvrir ver 0.95 19.59 0.00 3.72 ind:pas:3s; +entrèrent entrer ver 450.11 398.38 0.20 10.61 ind:pas:3p; +entré entrer ver m s 450.11 398.38 36.90 32.43 par:pas; +entrée_sortie entrée_sortie nom f s 0.01 0.00 0.01 0.00 +entrée entrée nom f s 48.08 118.78 43.75 113.72 +entrées entrée nom f p 48.08 118.78 4.33 5.07 +entrés entrer ver m p 450.11 398.38 8.81 11.22 par:pas; +entubait entuber ver 3.11 1.35 0.02 0.07 ind:imp:3s; +entube entuber ver 3.11 1.35 0.52 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entubent entuber ver 3.11 1.35 0.12 0.00 ind:pre:3p; +entuber entuber ver 3.11 1.35 1.77 0.68 inf; +entuberais entuber ver 3.11 1.35 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +entubes entuber ver 3.11 1.35 0.18 0.00 ind:pre:2s; +entubez entuber ver 3.11 1.35 0.04 0.00 imp:pre:2p;ind:pre:2p; +entubé entuber ver m s 3.11 1.35 0.32 0.20 par:pas; +entubée entuber ver f s 3.11 1.35 0.03 0.07 par:pas; +entubés entuber ver m p 3.11 1.35 0.08 0.00 par:pas; +entéléchies entéléchie nom f p 0.00 0.07 0.00 0.07 +enténèbre enténébrer ver 0.14 2.36 0.14 0.14 ind:pre:3s; +enténèbrent enténébrer ver 0.14 2.36 0.00 0.07 ind:pre:3p; +enténébra enténébrer ver 0.14 2.36 0.00 0.07 ind:pas:3s; +enténébrait enténébrer ver 0.14 2.36 0.00 0.20 ind:imp:3s; +enténébrant enténébrer ver 0.14 2.36 0.00 0.34 par:pre; +enténébrer enténébrer ver 0.14 2.36 0.00 0.14 inf; +enténébré enténébrer ver m s 0.14 2.36 0.01 0.54 par:pas; +enténébrée enténébrer ver f s 0.14 2.36 0.00 0.54 par:pas; +enténébrées enténébrer ver f p 0.14 2.36 0.00 0.14 par:pas; +enténébrés enténébrer ver m p 0.14 2.36 0.00 0.20 par:pas; +enturbanner enturbanner ver 0.01 0.54 0.00 0.07 inf; +enturbanné enturbanné adj m s 0.06 1.22 0.05 0.47 +enturbannée enturbanner ver f s 0.01 0.54 0.01 0.07 par:pas; +enturbannées enturbanné adj f p 0.06 1.22 0.00 0.07 +enturbannés enturbanné adj m p 0.06 1.22 0.01 0.41 +enture enture nom f s 0.14 0.00 0.14 0.00 +entérinais entériner ver 0.52 1.35 0.00 0.14 ind:imp:1s; +entérinait entériner ver 0.52 1.35 0.00 0.20 ind:imp:3s; +entérinant entériner ver 0.52 1.35 0.00 0.07 par:pre; +entérine entériner ver 0.52 1.35 0.03 0.00 ind:pre:3s; +entérinement entérinement nom m s 0.00 0.07 0.00 0.07 +entériner entériner ver 0.52 1.35 0.42 0.41 inf; +entériné entériner ver m s 0.52 1.35 0.04 0.27 par:pas; +entérinée entériner ver f s 0.52 1.35 0.03 0.14 par:pas; +entérinées entériner ver f p 0.52 1.35 0.00 0.14 par:pas; +entérique entérique adj s 0.01 0.00 0.01 0.00 +entérite entérite nom f s 0.01 0.14 0.01 0.14 +entérocolite entérocolite nom f s 0.01 0.00 0.01 0.00 +entérovirus entérovirus nom m 0.03 0.00 0.03 0.00 +entêta entêter ver 1.65 6.89 0.00 0.27 ind:pas:3s; +entêtai entêter ver 1.65 6.89 0.00 0.41 ind:pas:1s; +entêtaient entêter ver 1.65 6.89 0.00 0.34 ind:imp:3p; +entêtais entêter ver 1.65 6.89 0.00 0.07 ind:imp:1s; +entêtait entêter ver 1.65 6.89 0.00 1.62 ind:imp:3s; +entêtant entêtant adj m s 0.05 2.09 0.04 0.47 +entêtante entêtant adj f s 0.05 2.09 0.01 1.08 +entêtantes entêtant adj f p 0.05 2.09 0.00 0.20 +entêtants entêtant adj m p 0.05 2.09 0.00 0.34 +entête entêter ver 1.65 6.89 0.38 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entêtement entêtement nom m s 1.27 5.74 1.27 5.61 +entêtements entêtement nom m p 1.27 5.74 0.00 0.14 +entêtent entêter ver 1.65 6.89 0.14 0.07 ind:pre:3p; +entêter entêter ver 1.65 6.89 0.18 0.95 inf; +entêteraient entêter ver 1.65 6.89 0.00 0.07 cnd:pre:3p; +entêterais entêter ver 1.65 6.89 0.00 0.07 cnd:pre:1s; +entêtes entêter ver 1.65 6.89 0.42 0.14 ind:pre:2s; +entêtez entêter ver 1.65 6.89 0.16 0.14 ind:pre:2p; +entêtiez entêter ver 1.65 6.89 0.00 0.07 ind:imp:2p; +entêtons entêter ver 1.65 6.89 0.00 0.20 ind:pre:1p; +entêtât entêter ver 1.65 6.89 0.00 0.07 sub:imp:3s; +entêté entêté nom m s 0.73 0.81 0.58 0.68 +entêtée entêté adj f s 0.38 1.35 0.08 0.74 +entêtées entêté adj f p 0.38 1.35 0.01 0.14 +entêtés entêté nom m p 0.73 0.81 0.15 0.07 +envahît envahir ver 17.37 57.70 0.00 0.14 sub:imp:3s; +envahi envahir ver m s 17.37 57.70 4.98 11.76 par:pas; +envahie envahir ver f s 17.37 57.70 1.11 5.88 par:pas; +envahies envahir ver f p 17.37 57.70 0.26 1.69 par:pas; +envahir envahir ver 17.37 57.70 3.83 8.31 inf; +envahira envahir ver 17.37 57.70 0.26 0.20 ind:fut:3s; +envahirai envahir ver 17.37 57.70 0.03 0.00 ind:fut:1s; +envahiraient envahir ver 17.37 57.70 0.00 0.20 cnd:pre:3p; +envahirait envahir ver 17.37 57.70 0.03 0.34 cnd:pre:3s; +envahirent envahir ver 17.37 57.70 0.25 1.28 ind:pas:3p; +envahirez envahir ver 17.37 57.70 0.01 0.00 ind:fut:2p; +envahirons envahir ver 17.37 57.70 0.02 0.07 ind:fut:1p; +envahiront envahir ver 17.37 57.70 0.24 0.00 ind:fut:3p; +envahis envahir ver m p 17.37 57.70 0.91 1.89 ind:pre:1s;ind:pre:2s;par:pas;par:pas; +envahissaient envahir ver 17.37 57.70 0.24 1.96 ind:imp:3p; +envahissait envahir ver 17.37 57.70 0.62 8.72 ind:imp:3s; +envahissant envahissant adj m s 1.08 3.18 0.33 0.88 +envahissante envahissant adj f s 1.08 3.18 0.70 1.42 +envahissantes envahissant adj f p 1.08 3.18 0.04 0.27 +envahissants envahissant adj m p 1.08 3.18 0.01 0.61 +envahisse envahir ver 17.37 57.70 0.11 0.34 sub:pre:1s;sub:pre:3s; +envahissement envahissement nom m s 0.02 1.49 0.02 1.42 +envahissements envahissement nom m p 0.02 1.49 0.00 0.07 +envahissent envahir ver 17.37 57.70 1.05 1.96 ind:pre:3p; +envahisseur envahisseur nom m s 3.64 8.31 1.88 6.42 +envahisseurs envahisseur nom m p 3.64 8.31 1.77 1.89 +envahissez envahir ver 17.37 57.70 0.24 0.00 imp:pre:2p;ind:pre:2p; +envahissiez envahir ver 17.37 57.70 0.02 0.00 ind:imp:2p; +envahit envahir ver 17.37 57.70 2.97 12.36 ind:pre:3s;ind:pas:3s; +envasait envaser ver 0.01 0.41 0.00 0.07 ind:imp:3s; +envasement envasement nom m s 0.00 0.07 0.00 0.07 +envaser envaser ver 0.01 0.41 0.01 0.00 inf; +envasé envaser ver m s 0.01 0.41 0.00 0.20 par:pas; +envasée envaser ver f s 0.01 0.41 0.00 0.07 par:pas; +envasées envaser ver f p 0.01 0.41 0.00 0.07 par:pas; +enveloppa envelopper ver 5.21 46.49 0.17 4.39 ind:pas:3s; +enveloppai envelopper ver 5.21 46.49 0.14 0.34 ind:pas:1s; +enveloppaient envelopper ver 5.21 46.49 0.04 2.03 ind:imp:3p; +enveloppais envelopper ver 5.21 46.49 0.06 0.20 ind:imp:1s;ind:imp:2s; +enveloppait envelopper ver 5.21 46.49 0.20 9.12 ind:imp:3s; +enveloppant envelopper ver 5.21 46.49 0.04 1.69 par:pre; +enveloppante enveloppant adj f s 0.27 1.62 0.23 0.68 +enveloppantes enveloppant adj f p 0.27 1.62 0.00 0.07 +enveloppants enveloppant adj m p 0.27 1.62 0.00 0.27 +enveloppe enveloppe nom f s 13.23 32.84 11.40 26.22 +enveloppement enveloppement nom m s 0.16 0.95 0.16 0.61 +enveloppements enveloppement nom m p 0.16 0.95 0.00 0.34 +enveloppent envelopper ver 5.21 46.49 0.34 1.35 ind:pre:3p; +envelopper envelopper ver 5.21 46.49 0.65 4.39 inf; +enveloppera envelopper ver 5.21 46.49 0.01 0.14 ind:fut:3s; +envelopperaient envelopper ver 5.21 46.49 0.14 0.07 cnd:pre:3p; +envelopperait envelopper ver 5.21 46.49 0.02 0.54 cnd:pre:3s; +envelopperez envelopper ver 5.21 46.49 0.00 0.07 ind:fut:2p; +enveloppes enveloppe nom f p 13.23 32.84 1.84 6.62 +enveloppeur enveloppeur nom m s 0.00 0.07 0.00 0.07 +enveloppez envelopper ver 5.21 46.49 0.41 0.14 imp:pre:2p;ind:pre:2p; +enveloppons envelopper ver 5.21 46.49 0.00 0.07 ind:pre:1p; +enveloppât envelopper ver 5.21 46.49 0.00 0.14 sub:imp:3s; +enveloppèrent envelopper ver 5.21 46.49 0.11 0.20 ind:pas:3p; +enveloppé enveloppé adj m s 1.60 10.34 0.86 4.59 +enveloppée envelopper ver f s 5.21 46.49 0.58 4.32 par:pas; +enveloppées enveloppé adj f p 1.60 10.34 0.20 0.74 +enveloppés envelopper ver m p 5.21 46.49 0.26 2.23 par:pas; +envenima envenimer ver 0.59 1.96 0.00 0.07 ind:pas:3s; +envenimait envenimer ver 0.59 1.96 0.00 0.20 ind:imp:3s; +envenimant envenimer ver 0.59 1.96 0.00 0.07 par:pre; +envenime envenimer ver 0.59 1.96 0.09 0.14 imp:pre:2s;ind:pre:3s; +enveniment envenimer ver 0.59 1.96 0.04 0.20 ind:pre:3p; +envenimer envenimer ver 0.59 1.96 0.28 0.95 inf; +envenimons envenimer ver 0.59 1.96 0.01 0.00 imp:pre:1p; +envenimèrent envenimer ver 0.59 1.96 0.00 0.07 ind:pas:3p; +envenimé envenimé ver m s 0.27 0.00 0.27 0.00 par:pas; +envenimée envenimé adj f s 0.04 0.00 0.03 0.00 +envenimées envenimer ver f p 0.59 1.96 0.10 0.00 par:pas; +envenimés envenimer ver m p 0.59 1.96 0.01 0.07 par:pas; +envergure envergure nom f s 1.66 5.34 1.66 5.34 +enverguée enverguer ver f s 0.00 0.07 0.00 0.07 par:pas; +enverra envoyer ver 360.16 177.64 5.89 2.03 ind:fut:3s; +enverrai envoyer ver 360.16 177.64 10.43 2.70 ind:fut:1s; +enverraient envoyer ver 360.16 177.64 0.20 0.34 cnd:pre:3p; +enverrais envoyer ver 360.16 177.64 1.68 0.41 cnd:pre:1s;cnd:pre:2s; +enverrait envoyer ver 360.16 177.64 1.77 2.77 cnd:pre:3s; +enverras envoyer ver 360.16 177.64 1.30 0.47 ind:fut:2s; +enverrez envoyer ver 360.16 177.64 1.04 0.34 ind:fut:2p; +enverriez envoyer ver 360.16 177.64 0.12 0.00 cnd:pre:2p; +enverrions envoyer ver 360.16 177.64 0.00 0.20 cnd:pre:1p; +enverrons envoyer ver 360.16 177.64 1.30 0.20 ind:fut:1p; +enverront envoyer ver 360.16 177.64 1.93 0.81 ind:fut:3p; +envers envers pre 35.46 27.91 35.46 27.91 +envia envier ver 17.79 26.89 0.00 0.47 ind:pas:3s; +enviable enviable adj s 0.75 2.84 0.73 2.43 +enviables enviable adj p 0.75 2.84 0.02 0.41 +enviai envier ver 17.79 26.89 0.00 0.47 ind:pas:1s; +enviaient envier ver 17.79 26.89 0.01 0.88 ind:imp:3p; +enviais envier ver 17.79 26.89 0.56 2.84 ind:imp:1s;ind:imp:2s; +enviait envier ver 17.79 26.89 0.34 2.84 ind:imp:3s; +enviandait enviander ver 0.00 0.07 0.00 0.07 ind:imp:3s; +enviandé enviandé nom m s 0.02 0.34 0.02 0.20 +enviandés enviandé nom m p 0.02 0.34 0.00 0.14 +enviant envier ver 17.79 26.89 0.01 0.47 par:pre; +envie envie nom f s 213.96 258.11 210.62 252.09 +envient envier ver 17.79 26.89 0.42 0.20 ind:pre:3p; +envier envier ver 17.79 26.89 1.50 3.51 inf; +enviera envier ver 17.79 26.89 0.23 0.07 ind:fut:3s; +envieraient envier ver 17.79 26.89 0.04 0.34 cnd:pre:3p; +envierais envier ver 17.79 26.89 0.11 0.07 cnd:pre:1s; +envierait envier ver 17.79 26.89 0.02 0.27 cnd:pre:3s; +envieront envier ver 17.79 26.89 0.32 0.07 ind:fut:3p; +envies envie nom f p 213.96 258.11 3.34 6.01 +envieuse envieux adj f s 1.04 1.76 0.20 0.54 +envieuses envieux adj f p 1.04 1.76 0.20 0.00 +envieux envieux adj m 1.04 1.76 0.64 1.22 +enviez envier ver 17.79 26.89 0.42 0.14 imp:pre:2p;ind:pre:2p; +enviions envier ver 17.79 26.89 0.00 0.07 ind:imp:1p; +envions envier ver 17.79 26.89 0.05 0.00 imp:pre:1p;ind:pre:1p; +enviât envier ver 17.79 26.89 0.00 0.07 sub:imp:3s; +environ environ adv_sup 55.55 27.43 55.55 27.43 +environnaient environner ver 0.28 5.47 0.00 0.47 ind:imp:3p; +environnait environner ver 0.28 5.47 0.00 0.88 ind:imp:3s; +environnant environnant adj m s 0.66 2.23 0.17 0.47 +environnante environnant adj f s 0.66 2.23 0.29 0.54 +environnantes environnant adj f p 0.66 2.23 0.07 0.61 +environnants environnant adj m p 0.66 2.23 0.12 0.61 +environne environner ver 0.28 5.47 0.28 0.88 ind:pre:1s;ind:pre:3s; +environnement environnement nom m s 10.19 2.77 10.07 2.64 +environnemental environnemental adj m s 0.46 0.00 0.16 0.00 +environnementale environnemental adj f s 0.46 0.00 0.12 0.00 +environnementaux environnemental adj m p 0.46 0.00 0.18 0.00 +environnements environnement nom m p 10.19 2.77 0.12 0.14 +environnent environner ver 0.28 5.47 0.00 0.47 ind:pre:3p; +environner environner ver 0.28 5.47 0.00 0.07 inf; +environné environner ver m s 0.28 5.47 0.00 1.49 par:pas; +environnée environner ver f s 0.28 5.47 0.00 0.41 par:pas; +environnées environner ver f p 0.28 5.47 0.00 0.07 par:pas; +environnés environner ver m p 0.28 5.47 0.00 0.54 par:pas; +environs environ nom_sup m p 6.25 16.69 6.25 16.69 +envisage envisager ver 16.42 32.64 3.40 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +envisagea envisager ver 16.42 32.64 0.02 1.22 ind:pas:3s; +envisageable envisageable adj s 0.85 0.74 0.80 0.74 +envisageables envisageable adj f p 0.85 0.74 0.04 0.00 +envisageai envisager ver 16.42 32.64 0.02 0.81 ind:pas:1s; +envisageaient envisager ver 16.42 32.64 0.07 0.68 ind:imp:3p; +envisageais envisager ver 16.42 32.64 0.61 1.55 ind:imp:1s;ind:imp:2s; +envisageait envisager ver 16.42 32.64 0.47 5.47 ind:imp:3s; +envisageant envisager ver 16.42 32.64 0.01 0.81 par:pre; +envisagent envisager ver 16.42 32.64 0.44 0.41 ind:pre:3p; +envisageons envisager ver 16.42 32.64 0.30 0.34 imp:pre:1p;ind:pre:1p; +envisageât envisager ver 16.42 32.64 0.00 0.20 sub:imp:3s; +envisager envisager ver 16.42 32.64 4.83 9.39 inf; +envisagera envisager ver 16.42 32.64 0.14 0.07 ind:fut:3s; +envisagerai envisager ver 16.42 32.64 0.05 0.00 ind:fut:1s; +envisagerais envisager ver 16.42 32.64 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +envisagerait envisager ver 16.42 32.64 0.05 0.27 cnd:pre:3s; +envisageras envisager ver 16.42 32.64 0.01 0.00 ind:fut:2s; +envisagerez envisager ver 16.42 32.64 0.04 0.00 ind:fut:2p; +envisageriez envisager ver 16.42 32.64 0.17 0.00 cnd:pre:2p; +envisagerions envisager ver 16.42 32.64 0.00 0.14 cnd:pre:1p; +envisages envisager ver 16.42 32.64 1.35 0.27 ind:pre:2s; +envisagez envisager ver 16.42 32.64 1.11 0.68 imp:pre:2p;ind:pre:2p; +envisagiez envisager ver 16.42 32.64 0.20 0.00 ind:imp:2p; +envisagions envisager ver 16.42 32.64 0.04 0.54 ind:imp:1p; +envisagèrent envisager ver 16.42 32.64 0.01 0.27 ind:pas:3p; +envisagé envisager ver m s 16.42 32.64 2.61 3.58 par:pas; +envisagée envisager ver f s 16.42 32.64 0.19 1.22 par:pas; +envisagées envisager ver f p 16.42 32.64 0.04 0.41 par:pas; +envisagés envisager ver m p 16.42 32.64 0.01 0.20 par:pas; +envié envier ver m s 17.79 26.89 0.71 1.15 par:pas; +enviée envier ver f s 17.79 26.89 0.30 0.81 par:pas; +enviées envier ver f p 17.79 26.89 0.01 0.14 par:pas; +enviés envier ver m p 17.79 26.89 0.04 0.54 par:pas; +envoûtaient envoûter ver 1.81 2.16 0.00 0.07 ind:imp:3p; +envoûtait envoûter ver 1.81 2.16 0.01 0.14 ind:imp:3s; +envoûtant envoûtant adj m s 0.79 1.49 0.56 0.34 +envoûtante envoûtant adj f s 0.79 1.49 0.21 0.95 +envoûtantes envoûtant adj f p 0.79 1.49 0.00 0.07 +envoûtants envoûtant adj m p 0.79 1.49 0.02 0.14 +envoûte envoûter ver 1.81 2.16 0.32 0.34 ind:pre:1s;ind:pre:3s; +envoûtement envoûtement nom m s 0.71 1.82 0.56 1.76 +envoûtements envoûtement nom m p 0.71 1.82 0.14 0.07 +envoûter envoûter ver 1.81 2.16 0.12 0.34 inf; +envoûteras envoûter ver 1.81 2.16 0.01 0.00 ind:fut:2s; +envoûteur envoûteur nom m s 0.00 0.27 0.00 0.14 +envoûteurs envoûteur nom m p 0.00 0.27 0.00 0.14 +envoûté envoûter ver m s 1.81 2.16 0.88 0.61 par:pas; +envoûtée envoûter ver f s 1.81 2.16 0.44 0.14 par:pas; +envoûtées envoûter ver f p 1.81 2.16 0.00 0.14 par:pas; +envoûtés envoûter ver m p 1.81 2.16 0.03 0.27 par:pas; +envoi envoi nom m s 4.46 6.96 3.47 6.28 +envoie envoyer ver 360.16 177.64 98.92 30.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +envoient envoyer ver 360.16 177.64 9.16 4.32 ind:pre:3p; +envoies envoyer ver 360.16 177.64 6.24 0.61 ind:pre:1p;ind:pre:2s;sub:pre:2s; +envois envoi nom m p 4.46 6.96 1.00 0.68 +envol envol nom m s 2.50 5.20 2.48 4.66 +envola envoler ver 28.82 29.86 0.43 2.43 ind:pas:3s; +envolai envoler ver 28.82 29.86 0.00 0.34 ind:pas:1s; +envolaient envoler ver 28.82 29.86 0.35 2.50 ind:imp:3p; +envolais envoler ver 28.82 29.86 0.03 0.20 ind:imp:1s;ind:imp:2s; +envolait envoler ver 28.82 29.86 0.29 2.16 ind:imp:3s; +envolant envoler ver 28.82 29.86 0.38 0.47 par:pre; +envole envoler ver 28.82 29.86 5.39 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +envolent envoler ver 28.82 29.86 4.47 2.30 ind:pre:3p; +envoler envoler ver 28.82 29.86 5.85 6.35 ind:pre:2p;inf; +envolera envoler ver 28.82 29.86 0.55 0.34 ind:fut:3s; +envolerai envoler ver 28.82 29.86 0.21 0.07 ind:fut:1s; +envoleraient envoler ver 28.82 29.86 0.00 0.41 cnd:pre:3p; +envolerais envoler ver 28.82 29.86 0.06 0.07 cnd:pre:1s; +envolerait envoler ver 28.82 29.86 0.08 0.14 cnd:pre:3s; +envolerez envoler ver 28.82 29.86 0.01 0.07 ind:fut:2p; +envolerions envoler ver 28.82 29.86 0.02 0.14 cnd:pre:1p; +envolerons envoler ver 28.82 29.86 0.05 0.00 ind:fut:1p; +envoleront envoler ver 28.82 29.86 0.04 0.07 ind:fut:3p; +envoles envoler ver 28.82 29.86 0.45 0.00 ind:pre:2s; +envolez envoler ver 28.82 29.86 0.58 0.00 imp:pre:2p;ind:pre:2p; +envolâmes envoler ver 28.82 29.86 0.00 0.07 ind:pas:1p; +envolons envoler ver 28.82 29.86 0.04 0.00 imp:pre:1p;ind:pre:1p; +envolât envoler ver 28.82 29.86 0.00 0.07 sub:imp:3s; +envols envol nom m p 2.50 5.20 0.03 0.54 +envolèrent envoler ver 28.82 29.86 0.01 1.62 ind:pas:3p; +envolé envoler ver m s 28.82 29.86 5.05 2.84 par:pas; +envolée envoler ver f s 28.82 29.86 1.62 1.62 par:pas; +envolées envolée nom f p 0.88 3.18 0.33 1.01 +envolés envoler ver m p 28.82 29.86 2.63 1.28 par:pas; +envoya envoyer ver 360.16 177.64 1.96 11.69 ind:pas:3s; +envoyai envoyer ver 360.16 177.64 0.26 2.30 ind:pas:1s; +envoyaient envoyer ver 360.16 177.64 0.62 2.91 ind:imp:3p; +envoyais envoyer ver 360.16 177.64 1.58 1.82 ind:imp:1s;ind:imp:2s; +envoyait envoyer ver 360.16 177.64 3.84 14.66 ind:imp:3s; +envoyant envoyer ver 360.16 177.64 1.91 4.26 par:pre; +envoyer envoyer ver 360.16 177.64 69.77 41.15 inf;;inf;;inf;;inf;;inf;;inf;;inf;; +envoyeur envoyeur nom m s 0.21 0.41 0.21 0.34 +envoyeurs envoyeur nom m p 0.21 0.41 0.00 0.07 +envoyez envoyer ver 360.16 177.64 31.66 2.23 imp:pre:2p;ind:pre:2p; +envoyiez envoyer ver 360.16 177.64 0.55 0.00 ind:imp:2p; +envoyions envoyer ver 360.16 177.64 0.16 0.07 ind:imp:1p; +envoyâmes envoyer ver 360.16 177.64 0.01 0.20 ind:pas:1p; +envoyons envoyer ver 360.16 177.64 2.31 0.20 imp:pre:1p;ind:pre:1p; +envoyât envoyer ver 360.16 177.64 0.00 0.68 sub:imp:3s; +envoyèrent envoyer ver 360.16 177.64 0.26 0.95 ind:pas:3p; +envoyé envoyer ver m s 360.16 177.64 82.52 35.20 par:pas; +envoyée envoyer ver f s 360.16 177.64 12.19 5.27 par:pas; +envoyées envoyer ver f p 360.16 177.64 1.97 2.57 par:pas; +envoyés envoyer ver m p 360.16 177.64 8.63 5.41 par:pas; +enzymatique enzymatique adj s 0.06 0.00 0.06 0.00 +enzyme enzyme nom f s 2.00 0.34 1.26 0.00 +enzymes enzyme nom f p 2.00 0.34 0.75 0.34 +epsilon epsilon nom m 0.47 0.20 0.47 0.20 +erg erg nom m s 0.02 0.07 0.01 0.00 +ergastule ergastule nom m s 0.00 0.20 0.00 0.07 +ergastules ergastule nom m p 0.00 0.20 0.00 0.14 +ergo ergo adv 0.22 0.34 0.22 0.34 +ergol ergol nom m s 0.01 0.00 0.01 0.00 +ergonomie ergonomie nom f s 0.06 0.07 0.06 0.07 +ergonomique ergonomique adj s 0.08 0.00 0.08 0.00 +ergot ergot nom m s 0.08 1.08 0.04 0.07 +ergotage ergotage nom m s 0.01 0.00 0.01 0.00 +ergotait ergoter ver 0.43 0.68 0.00 0.07 ind:imp:3s; +ergotamine ergotamine nom f s 0.02 0.00 0.02 0.00 +ergote ergoter ver 0.43 0.68 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ergotent ergoter ver 0.43 0.68 0.00 0.07 ind:pre:3p; +ergoter ergoter ver 0.43 0.68 0.16 0.27 inf; +ergoteur ergoteur adj m s 0.02 0.27 0.02 0.07 +ergoteurs ergoteur adj m p 0.02 0.27 0.00 0.07 +ergoteuse ergoteur adj f s 0.02 0.27 0.00 0.14 +ergothérapeute ergothérapeute nom s 0.06 0.00 0.06 0.00 +ergothérapie ergothérapie nom f s 0.07 0.00 0.07 0.00 +ergotons ergoter ver 0.43 0.68 0.10 0.07 imp:pre:1p; +ergots ergot nom m p 0.08 1.08 0.04 1.01 +ergoté ergoté adj m s 0.14 0.00 0.14 0.00 +ergs erg nom m p 0.02 0.07 0.01 0.07 +ermitage ermitage nom m s 0.04 1.69 0.04 1.35 +ermitages ermitage nom m p 0.04 1.69 0.00 0.34 +ermite ermite nom m s 2.28 2.50 2.23 2.03 +ermites ermite nom m p 2.28 2.50 0.05 0.47 +erpétologiste erpétologiste nom s 0.02 0.00 0.02 0.00 +erra errer ver 10.44 27.36 0.41 2.16 ind:pas:3s; +errai errer ver 10.44 27.36 0.04 0.54 ind:pas:1s; +erraient errer ver 10.44 27.36 0.15 2.23 ind:imp:3p; +errais errer ver 10.44 27.36 0.12 1.28 ind:imp:1s;ind:imp:2s; +errait errer ver 10.44 27.36 0.36 3.18 ind:imp:3s; +errance errance nom f s 0.54 4.46 0.51 2.91 +errances errance nom f p 0.54 4.46 0.03 1.55 +errant errant adj m s 2.62 11.96 1.45 3.18 +errante errant adj f s 2.62 11.96 0.47 4.59 +errantes errant adj f p 2.62 11.96 0.04 1.28 +errants errant adj m p 2.62 11.96 0.66 2.91 +errata erratum nom m p 0.02 0.27 0.00 0.27 +erratique erratique adj s 0.22 0.54 0.17 0.20 +erratiques erratique adj p 0.22 0.54 0.04 0.34 +erratum erratum nom m s 0.02 0.27 0.02 0.00 +erre errer ver 10.44 27.36 3.17 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +errements errements nom m p 0.08 1.22 0.08 1.22 +errent errer ver 10.44 27.36 0.99 1.62 ind:pre:3p; +errer errer ver 10.44 27.36 2.44 6.62 inf; +errera errer ver 10.44 27.36 0.14 0.00 ind:fut:3s; +errerai errer ver 10.44 27.36 0.03 0.07 ind:fut:1s; +erreraient errer ver 10.44 27.36 0.00 0.07 cnd:pre:3p; +errerait errer ver 10.44 27.36 0.00 0.07 cnd:pre:3s; +erreras errer ver 10.44 27.36 0.01 0.07 ind:fut:2s; +errerons errer ver 10.44 27.36 0.01 0.00 ind:fut:1p; +erreront errer ver 10.44 27.36 0.01 0.07 ind:fut:3p; +erres errer ver 10.44 27.36 0.23 0.07 ind:pre:2s; +erreur erreur nom f s 124.15 52.09 101.33 37.84 +erreurs erreur nom f p 124.15 52.09 22.82 14.26 +errez errer ver 10.44 27.36 0.10 0.14 imp:pre:2p;ind:pre:2p; +erriez errer ver 10.44 27.36 0.04 0.00 ind:imp:2p; +errions errer ver 10.44 27.36 0.14 0.14 ind:imp:1p; +errâmes errer ver 10.44 27.36 0.00 0.20 ind:pas:1p; +errons errer ver 10.44 27.36 0.05 0.27 imp:pre:1p;ind:pre:1p; +erroné erroné adj m s 2.05 0.74 0.54 0.27 +erronée erroné adj f s 2.05 0.74 0.44 0.07 +erronées erroné adj f p 2.05 0.74 0.68 0.27 +erronés erroné adj m p 2.05 0.74 0.40 0.14 +errèrent errer ver 10.44 27.36 0.01 0.41 ind:pas:3p; +erré errer ver m s 10.44 27.36 0.90 2.57 par:pas; +errés errer ver m p 10.44 27.36 0.01 0.00 par:pas; +ers ers nom m 0.45 0.00 0.45 0.00 +ersatz ersatz nom m 0.21 1.62 0.21 1.62 +es être aux 8074.24 6501.82 539.36 77.70 ind:pre:2s; +esbaudir esbaudir ver 0.00 0.07 0.00 0.07 inf; +esbignais esbigner ver 0.00 0.95 0.00 0.14 ind:imp:1s; +esbignait esbigner ver 0.00 0.95 0.00 0.07 ind:imp:3s; +esbigne esbigner ver 0.00 0.95 0.00 0.20 ind:pre:3s; +esbignent esbigner ver 0.00 0.95 0.00 0.07 ind:pre:3p; +esbigner esbigner ver 0.00 0.95 0.00 0.20 inf; +esbigné esbigner ver m s 0.00 0.95 0.00 0.27 par:pas; +esbroufe esbroufe nom f s 0.20 0.20 0.20 0.20 +esbroufer esbroufer ver 0.10 0.14 0.00 0.07 inf; +esbroufeur esbroufeur nom m s 0.03 0.00 0.02 0.00 +esbroufeurs esbroufeur nom m p 0.03 0.00 0.01 0.00 +esbroufée esbroufer ver f s 0.10 0.14 0.00 0.07 par:pas; +escabeau escabeau nom m s 0.69 5.88 0.67 5.20 +escabeaux escabeau nom m p 0.69 5.88 0.02 0.68 +escabèches escabèche nom f p 0.00 0.07 0.00 0.07 +escadre escadre nom f s 1.54 6.08 1.44 5.00 +escadres escadre nom f p 1.54 6.08 0.10 1.08 +escadrille escadrille nom f s 2.10 5.14 1.67 2.09 +escadrilles escadrille nom f p 2.10 5.14 0.43 3.04 +escadrin escadrin nom m s 0.00 0.07 0.00 0.07 +escadron escadron nom m s 4.68 8.78 3.34 6.55 +escadrons escadron nom m p 4.68 8.78 1.34 2.23 +escagasse escagasser ver 0.27 0.14 0.14 0.07 ind:pre:3s; +escagasser escagasser ver 0.27 0.14 0.14 0.07 inf; +escalada escalader ver 4.87 15.34 0.12 1.55 ind:pas:3s; +escaladaient escalader ver 4.87 15.34 0.02 0.68 ind:imp:3p; +escaladais escalader ver 4.87 15.34 0.03 0.47 ind:imp:1s;ind:imp:2s; +escaladait escalader ver 4.87 15.34 0.18 1.42 ind:imp:3s; +escaladant escalader ver 4.87 15.34 0.30 1.42 par:pre; +escalade escalade nom f s 3.37 4.12 3.26 3.58 +escaladent escalader ver 4.87 15.34 0.36 0.41 ind:pre:3p; +escalader escalader ver 4.87 15.34 2.19 3.85 inf; +escaladera escalader ver 4.87 15.34 0.04 0.20 ind:fut:3s; +escaladerais escalader ver 4.87 15.34 0.00 0.07 cnd:pre:1s; +escaladerait escalader ver 4.87 15.34 0.01 0.07 cnd:pre:3s; +escalades escalade nom f p 3.37 4.12 0.11 0.54 +escaladeur escaladeur nom m s 0.03 0.20 0.03 0.07 +escaladeuse escaladeur nom f s 0.03 0.20 0.00 0.07 +escaladeuses escaladeur nom f p 0.03 0.20 0.00 0.07 +escaladez escalader ver 4.87 15.34 0.29 0.00 imp:pre:2p;ind:pre:2p; +escaladions escalader ver 4.87 15.34 0.00 0.27 ind:imp:1p; +escaladâmes escalader ver 4.87 15.34 0.00 0.14 ind:pas:1p; +escaladons escalader ver 4.87 15.34 0.02 0.07 imp:pre:1p; +escaladèrent escalader ver 4.87 15.34 0.16 0.27 ind:pas:3p; +escaladé escalader ver m s 4.87 15.34 0.48 1.62 par:pas; +escaladée escalader ver f s 4.87 15.34 0.00 0.14 par:pas; +escaladées escalader ver f p 4.87 15.34 0.11 0.20 par:pas; +escaladés escalader ver m p 4.87 15.34 0.00 0.07 par:pas; +escalais escaler ver 0.00 0.14 0.00 0.07 ind:imp:1s; +escalator escalator nom m s 0.50 0.27 0.36 0.20 +escalators escalator nom m p 0.50 0.27 0.13 0.07 +escale escale nom f s 2.32 8.92 2.25 7.16 +escalera escaler ver 0.00 0.14 0.00 0.07 ind:fut:3s; +escales escale nom f p 2.32 8.92 0.07 1.76 +escalier escalier nom m s 32.29 148.85 20.91 125.95 +escaliers escalier nom m p 32.29 148.85 11.38 22.91 +escalope escalope nom f s 1.13 1.42 0.94 0.74 +escalopes escalope nom f p 1.13 1.42 0.18 0.68 +escamota escamoter ver 0.28 4.73 0.00 0.20 ind:pas:3s; +escamotable escamotable adj m s 0.01 0.47 0.00 0.27 +escamotables escamotable adj f p 0.01 0.47 0.01 0.20 +escamotage escamotage nom m s 0.04 0.34 0.03 0.27 +escamotages escamotage nom m p 0.04 0.34 0.01 0.07 +escamotaient escamoter ver 0.28 4.73 0.00 0.07 ind:imp:3p; +escamotait escamoter ver 0.28 4.73 0.02 0.47 ind:imp:3s; +escamotant escamoter ver 0.28 4.73 0.01 0.07 par:pre; +escamote escamoter ver 0.28 4.73 0.02 0.47 imp:pre:2s;ind:pre:3s; +escamoter escamoter ver 0.28 4.73 0.03 0.88 inf; +escamoterai escamoter ver 0.28 4.73 0.00 0.07 ind:fut:1s; +escamoteur escamoteur nom m s 0.01 0.07 0.01 0.07 +escamoté escamoter ver m s 0.28 4.73 0.20 1.42 par:pas; +escamotée escamoter ver f s 0.28 4.73 0.01 0.95 par:pas; +escamotées escamoter ver f p 0.28 4.73 0.00 0.07 par:pas; +escamotés escamoter ver m p 0.28 4.73 0.00 0.07 par:pas; +escampette escampette nom f s 0.26 0.27 0.26 0.27 +escapade escapade nom f s 1.83 3.51 0.89 2.16 +escapades escapade nom f p 1.83 3.51 0.94 1.35 +escape escape nom f s 0.19 0.00 0.19 0.00 +escarbille escarbille nom f s 0.07 1.42 0.05 0.20 +escarbilles escarbille nom f p 0.07 1.42 0.02 1.22 +escarboucle escarboucle nom f s 0.03 0.27 0.03 0.07 +escarboucles escarboucle nom f p 0.03 0.27 0.00 0.20 +escarcelle escarcelle nom f s 0.17 0.41 0.17 0.41 +escargot escargot nom m s 8.07 7.23 2.73 2.84 +escargots escargot nom m p 8.07 7.23 5.34 4.39 +escarmouchaient escarmoucher ver 0.00 0.20 0.00 0.07 ind:imp:3p; +escarmouche escarmouche nom f s 0.41 1.96 0.32 0.47 +escarmouchent escarmoucher ver 0.00 0.20 0.00 0.14 ind:pre:3p; +escarmouches escarmouche nom f p 0.41 1.96 0.09 1.49 +escarpement escarpement nom m s 0.05 1.28 0.03 0.41 +escarpements escarpement nom m p 0.05 1.28 0.02 0.88 +escarpes escarpe nom m p 0.00 0.20 0.00 0.20 +escarpin escarpin nom m s 0.77 5.14 0.07 0.54 +escarpins escarpin nom m p 0.77 5.14 0.69 4.59 +escarpolette escarpolette nom f s 0.01 0.41 0.01 0.27 +escarpolettes escarpolette nom f p 0.01 0.41 0.00 0.14 +escarpé escarper ver m s 0.21 0.54 0.19 0.20 par:pas; +escarpée escarpé adj f s 0.14 2.64 0.03 0.74 +escarpées escarpé adj f p 0.14 2.64 0.03 0.54 +escarpés escarpé adj m p 0.14 2.64 0.04 0.34 +escarre escarre nom f s 0.23 0.27 0.03 0.07 +escarres escarre nom f p 0.23 0.27 0.20 0.20 +eschatologie eschatologie nom f s 0.00 0.14 0.00 0.14 +esche esche nom f s 0.00 0.14 0.00 0.14 +escher escher ver 0.01 0.00 0.01 0.00 inf; +escient escient nom m s 0.62 1.08 0.62 1.08 +esclaffa esclaffer ver 0.43 8.24 0.00 1.69 ind:pas:3s; +esclaffai esclaffer ver 0.43 8.24 0.00 0.07 ind:pas:1s; +esclaffaient esclaffer ver 0.43 8.24 0.02 0.74 ind:imp:3p; +esclaffait esclaffer ver 0.43 8.24 0.00 0.68 ind:imp:3s; +esclaffant esclaffer ver 0.43 8.24 0.01 0.88 par:pre; +esclaffe esclaffer ver 0.43 8.24 0.33 1.15 ind:pre:1s;ind:pre:3s; +esclaffement esclaffement nom m s 0.00 0.14 0.00 0.07 +esclaffements esclaffement nom m p 0.00 0.14 0.00 0.07 +esclaffent esclaffer ver 0.43 8.24 0.00 0.61 ind:pre:3p; +esclaffer esclaffer ver 0.43 8.24 0.04 1.35 inf; +esclafferaient esclaffer ver 0.43 8.24 0.00 0.07 cnd:pre:3p; +esclaffèrent esclaffer ver 0.43 8.24 0.00 0.41 ind:pas:3p; +esclaffé esclaffer ver m s 0.43 8.24 0.00 0.34 par:pas; +esclaffée esclaffer ver f s 0.43 8.24 0.00 0.20 par:pas; +esclaffés esclaffer ver m p 0.43 8.24 0.02 0.07 par:pas; +esclandre esclandre nom m s 0.37 2.36 0.36 2.09 +esclandres esclandre nom m p 0.37 2.36 0.01 0.27 +esclavage esclavage nom m s 7.14 6.96 7.14 6.96 +esclavagea esclavager ver 0.00 0.41 0.00 0.14 ind:pas:3s; +esclavager esclavager ver 0.00 0.41 0.00 0.20 inf; +esclavagisme esclavagisme nom m s 0.07 0.00 0.07 0.00 +esclavagiste esclavagiste nom s 0.73 0.00 0.39 0.00 +esclavagistes esclavagiste nom p 0.73 0.00 0.34 0.00 +esclavagé esclavager ver m s 0.00 0.41 0.00 0.07 par:pas; +esclave esclave nom s 37.52 22.23 15.51 9.86 +esclaves esclave nom m p 37.52 22.23 22.01 12.36 +esclavons esclavon nom m p 0.00 0.20 0.00 0.20 +escogriffe escogriffe nom m s 0.16 1.28 0.16 1.15 +escogriffes escogriffe nom m p 0.16 1.28 0.00 0.14 +escomptai escompter ver 0.67 4.93 0.00 0.07 ind:pas:1s; +escomptaient escompter ver 0.67 4.93 0.01 0.14 ind:imp:3p; +escomptais escompter ver 0.67 4.93 0.04 0.47 ind:imp:1s; +escomptait escompter ver 0.67 4.93 0.02 1.42 ind:imp:3s; +escomptant escompter ver 0.67 4.93 0.01 0.95 par:pre; +escompte escompte nom m s 0.17 0.61 0.17 0.61 +escomptent escompter ver 0.67 4.93 0.01 0.07 ind:pre:3p; +escompter escompter ver 0.67 4.93 0.01 0.34 inf; +escomptes escompter ver 0.67 4.93 0.00 0.07 ind:pre:2s; +escomptez escompter ver 0.67 4.93 0.03 0.00 imp:pre:2p;ind:pre:2p; +escomptions escompter ver 0.67 4.93 0.02 0.00 ind:imp:1p; +escompté escompter ver m s 0.67 4.93 0.09 0.81 par:pas; +escomptée escompter ver f s 0.67 4.93 0.12 0.14 par:pas; +escomptées escompter ver f p 0.67 4.93 0.10 0.07 par:pas; +escomptés escompter ver m p 0.67 4.93 0.07 0.20 par:pas; +escopette escopette nom f s 0.00 0.20 0.00 0.20 +escorta escorter ver 8.21 7.57 0.00 0.34 ind:pas:3s; +escortaient escorter ver 8.21 7.57 0.28 0.54 ind:imp:3p; +escortais escorter ver 8.21 7.57 0.05 0.00 ind:imp:1s; +escortait escorter ver 8.21 7.57 0.16 0.74 ind:imp:3s; +escortant escorter ver 8.21 7.57 0.05 0.27 par:pre; +escorte escorte nom f s 7.28 7.03 6.69 6.76 +escortent escorter ver 8.21 7.57 0.48 0.54 ind:pre:3p; +escorter escorter ver 8.21 7.57 3.02 1.01 inf; +escortera escorter ver 8.21 7.57 0.23 0.07 ind:fut:3s; +escorterai escorter ver 8.21 7.57 0.07 0.00 ind:fut:1s; +escorteraient escorter ver 8.21 7.57 0.01 0.07 cnd:pre:3p; +escorterez escorter ver 8.21 7.57 0.06 0.00 ind:fut:2p; +escorteriez escorter ver 8.21 7.57 0.01 0.00 cnd:pre:2p; +escorterons escorter ver 8.21 7.57 0.15 0.00 ind:fut:1p; +escorteront escorter ver 8.21 7.57 0.32 0.00 ind:fut:3p; +escortes escorte nom f p 7.28 7.03 0.58 0.27 +escorteur escorteur nom m s 0.32 0.81 0.04 0.14 +escorteurs escorteur nom m p 0.32 0.81 0.28 0.68 +escortez escorter ver 8.21 7.57 0.82 0.00 imp:pre:2p;ind:pre:2p; +escortiez escorter ver 8.21 7.57 0.02 0.00 ind:imp:2p; +escortons escorter ver 8.21 7.57 0.16 0.00 ind:pre:1p; +escortèrent escorter ver 8.21 7.57 0.01 0.27 ind:pas:3p; +escorté escorter ver m s 8.21 7.57 1.08 1.42 par:pas; +escortée escorter ver f s 8.21 7.57 0.12 0.88 par:pas; +escortées escorter ver f p 8.21 7.57 0.02 0.07 par:pas; +escortés escorter ver m p 8.21 7.57 0.16 1.35 par:pas; +escot escot nom m s 0.14 0.00 0.14 0.00 +escouade escouade nom f s 1.46 5.41 1.34 3.92 +escouades escouade nom f p 1.46 5.41 0.12 1.49 +escrimai escrimer ver 0.11 2.30 0.00 0.07 ind:pas:1s; +escrimaient escrimer ver 0.11 2.30 0.00 0.20 ind:imp:3p; +escrimais escrimer ver 0.11 2.30 0.01 0.07 ind:imp:1s; +escrimait escrimer ver 0.11 2.30 0.02 0.74 ind:imp:3s; +escrimant escrimer ver 0.11 2.30 0.03 0.27 par:pre; +escrime escrime nom f s 1.50 2.03 1.50 2.03 +escriment escrimer ver 0.11 2.30 0.01 0.20 ind:pre:3p; +escrimer escrimer ver 0.11 2.30 0.03 0.27 inf; +escrimera escrimer ver 0.11 2.30 0.00 0.07 ind:fut:3s; +escrimeraient escrimer ver 0.11 2.30 0.00 0.07 cnd:pre:3p; +escrimes escrimer ver 0.11 2.30 0.00 0.07 ind:pre:2s; +escrimeur escrimeur nom m s 0.38 0.41 0.37 0.27 +escrimeurs escrimeur nom m p 0.38 0.41 0.01 0.07 +escrimeuses escrimeur nom f p 0.38 0.41 0.00 0.07 +escroc escroc nom m s 9.27 4.46 6.77 2.91 +escrocs escroc nom m p 9.27 4.46 2.50 1.55 +escroquant escroquer ver 2.83 1.42 0.13 0.07 par:pre; +escroque escroquer ver 2.83 1.42 0.19 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +escroquent escroquer ver 2.83 1.42 0.03 0.00 ind:pre:3p; +escroquer escroquer ver 2.83 1.42 1.00 0.81 inf; +escroquera escroquer ver 2.83 1.42 0.02 0.00 ind:fut:3s; +escroquerie escroquerie nom f s 3.20 3.11 2.84 2.16 +escroqueries escroquerie nom f p 3.20 3.11 0.36 0.95 +escroques escroquer ver 2.83 1.42 0.00 0.07 ind:pre:2s; +escroqueuse escroqueur nom f s 0.01 0.00 0.01 0.00 +escroquez escroquer ver 2.83 1.42 0.05 0.00 ind:pre:2p; +escroqué escroquer ver m s 2.83 1.42 1.32 0.20 par:pas; +escroquées escroquer ver f p 2.83 1.42 0.01 0.07 par:pas; +escroqués escroquer ver m p 2.83 1.42 0.07 0.07 par:pas; +escudo escudo nom m s 3.03 0.00 0.01 0.00 +escudos escudo nom m p 3.03 0.00 3.02 0.00 +esgourdai esgourder ver 0.00 0.95 0.00 0.07 ind:pas:1s; +esgourdant esgourder ver 0.00 0.95 0.00 0.07 par:pre; +esgourde esgourde nom f s 0.09 2.70 0.01 1.22 +esgourder esgourder ver 0.00 0.95 0.00 0.68 inf; +esgourdes esgourde nom f p 0.09 2.70 0.08 1.49 +esgourdé esgourder ver m s 0.00 0.95 0.00 0.07 par:pas; +esgourdée esgourder ver f s 0.00 0.95 0.00 0.07 par:pas; +eskimo eskimo adj m s 0.02 0.14 0.02 0.07 +eskimos eskimo nom m p 0.04 0.00 0.02 0.00 +espace_temps espace_temps nom m 1.63 0.07 1.63 0.07 +espace espace nom s 43.87 88.51 41.34 78.58 +espacement espacement nom m s 0.10 0.34 0.09 0.34 +espacements espacement nom m p 0.10 0.34 0.01 0.00 +espacent espacer ver 0.52 5.95 0.00 0.47 ind:pre:3p; +espacer espacer ver 0.52 5.95 0.06 0.68 inf; +espacerait espacer ver 0.52 5.95 0.00 0.07 cnd:pre:3s; +espaceront espacer ver 0.52 5.95 0.00 0.07 ind:fut:3p; +espaces espace nom p 43.87 88.51 2.52 9.93 +espacez espacer ver 0.52 5.95 0.02 0.00 imp:pre:2p; +espacions espacer ver 0.52 5.95 0.00 0.14 ind:imp:1p; +espacèrent espacer ver 0.52 5.95 0.01 0.74 ind:pas:3p; +espacé espacé adj m s 0.41 2.50 0.02 0.20 +espacée espacer ver f s 0.52 5.95 0.00 0.07 par:pas; +espacées espacé adj f p 0.41 2.50 0.21 1.15 +espacés espacé adj m p 0.41 2.50 0.19 1.08 +espada espada nom f s 0.00 0.81 0.00 0.74 +espadas espada nom f p 0.00 0.81 0.00 0.07 +espadon espadon nom m s 0.80 0.54 0.71 0.47 +espadons espadon nom m p 0.80 0.54 0.09 0.07 +espadrille espadrille nom f s 0.26 8.58 0.02 0.95 +espadrilles espadrille nom f p 0.26 8.58 0.24 7.64 +espagnol espagnol nom m s 18.43 21.62 11.54 11.01 +espagnole espagnol adj f s 20.94 25.00 6.16 8.78 +espagnoles espagnol adj f p 20.94 25.00 1.48 2.50 +espagnolette espagnolette nom f s 0.00 1.42 0.00 1.42 +espagnols espagnol nom m p 18.43 21.62 5.27 7.64 +espalier espalier nom m s 0.00 1.49 0.00 0.61 +espaliers espalier nom m p 0.00 1.49 0.00 0.88 +espar espar nom m s 0.00 0.07 0.00 0.07 +espars espars nom m 0.00 0.07 0.00 0.07 +espaça espacer ver 0.52 5.95 0.00 0.41 ind:pas:3s; +espaçaient espacer ver 0.52 5.95 0.00 1.01 ind:imp:3p; +espaçait espacer ver 0.52 5.95 0.00 0.27 ind:imp:3s; +espaçant espacer ver 0.52 5.95 0.01 0.41 par:pre; +esperanto esperanto nom m s 0.22 0.07 0.22 0.07 +espingo espingo nom s 0.00 1.55 0.00 0.61 +espingole espingole nom f s 0.00 0.14 0.00 0.07 +espingoles espingole nom f p 0.00 0.14 0.00 0.07 +espingos espingo nom p 0.00 1.55 0.00 0.95 +espingouin espingouin nom s 0.35 0.54 0.32 0.47 +espingouins espingouin nom p 0.35 0.54 0.03 0.07 +espion espion nom m s 22.05 10.20 13.31 4.59 +espionite espionite nom f s 0.01 0.00 0.01 0.00 +espionnage espionnage nom m s 3.32 2.57 3.32 2.57 +espionnaient espionner ver 15.99 4.53 0.03 0.27 ind:imp:3p; +espionnais espionner ver 15.99 4.53 1.36 0.34 ind:imp:1s;ind:imp:2s; +espionnait espionner ver 15.99 4.53 1.52 0.54 ind:imp:3s; +espionnant espionner ver 15.99 4.53 0.21 0.00 par:pre; +espionne espionner ver 15.99 4.53 3.06 0.81 ind:pre:1s;ind:pre:3s; +espionnent espionner ver 15.99 4.53 0.27 0.00 ind:pre:3p; +espionner espionner ver 15.99 4.53 4.71 2.03 inf;; +espionnera espionner ver 15.99 4.53 0.14 0.00 ind:fut:3s; +espionnerai espionner ver 15.99 4.53 0.04 0.00 ind:fut:1s; +espionnerions espionner ver 15.99 4.53 0.01 0.00 cnd:pre:1p; +espionnes espionner ver 15.99 4.53 2.00 0.20 ind:pre:2s;sub:pre:2s; +espionnez espionner ver 15.99 4.53 0.90 0.00 imp:pre:2p;ind:pre:2p; +espionniez espionner ver 15.99 4.53 0.17 0.00 ind:imp:2p; +espionnite espionnite nom f s 0.14 0.27 0.14 0.27 +espionnons espionner ver 15.99 4.53 0.04 0.00 ind:pre:1p; +espionnât espionner ver 15.99 4.53 0.00 0.07 sub:imp:3s; +espionné espionner ver m s 15.99 4.53 0.94 0.20 par:pas; +espionnée espionner ver f s 15.99 4.53 0.13 0.00 par:pas; +espionnés espionner ver m p 15.99 4.53 0.47 0.07 par:pas; +espions espion nom m p 22.05 10.20 6.52 3.72 +espiègle espiègle adj s 0.89 1.42 0.81 1.01 +espièglement espièglement adv 0.00 0.07 0.00 0.07 +espièglerie espièglerie nom f s 0.08 1.01 0.03 0.88 +espiègleries espièglerie nom f p 0.08 1.01 0.04 0.14 +espiègles espiègle adj p 0.89 1.42 0.09 0.41 +esplanade esplanade nom f s 0.64 6.35 0.64 6.01 +esplanades esplanade nom f p 0.64 6.35 0.00 0.34 +espoir espoir nom m s 64.22 101.89 57.62 90.74 +espoirs espoir nom m p 64.22 101.89 6.61 11.15 +esprit_de_sel esprit_de_sel nom m s 0.00 0.07 0.00 0.07 +esprit_de_vin esprit_de_vin nom m s 0.01 0.20 0.01 0.20 +esprit esprit nom m s 155.82 216.28 131.70 182.84 +esprits esprit nom m p 155.82 216.28 24.12 33.45 +espèce espèce nom f s 116.51 141.69 105.04 127.23 +espèces espèce nom f p 116.51 141.69 11.47 14.46 +espère espérer ver 301.08 134.93 209.19 43.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +espèrent espérer ver 301.08 134.93 2.15 2.03 ind:pre:3p; +espères espérer ver 301.08 134.93 4.19 1.08 ind:pre:2s; +espéra espérer ver 301.08 134.93 0.02 1.49 ind:pas:3s; +espérai espérer ver 301.08 134.93 0.16 0.20 ind:pas:1s; +espéraient espérer ver 301.08 134.93 0.85 2.97 ind:imp:3p; +espérais espérer ver 301.08 134.93 25.40 12.64 ind:imp:1s;ind:imp:2s; +espérait espérer ver 301.08 134.93 3.66 18.58 ind:imp:3s; +espérance espérance nom f s 6.42 27.36 4.10 18.31 +espérances espérance nom f p 6.42 27.36 2.32 9.05 +espérant espérer ver 301.08 134.93 6.82 11.76 par:pre; +espérantiste espérantiste nom s 0.00 0.07 0.00 0.07 +espéranto espéranto nom m s 0.02 0.14 0.02 0.14 +espérer espérer ver 301.08 134.93 15.65 23.51 inf; +espérerai espérer ver 301.08 134.93 0.02 0.00 ind:fut:1s; +espérerais espérer ver 301.08 134.93 0.20 0.00 cnd:pre:1s; +espérerait espérer ver 301.08 134.93 0.01 0.00 cnd:pre:3s; +espérez espérer ver 301.08 134.93 3.46 1.69 imp:pre:2p;ind:pre:2p; +espériez espérer ver 301.08 134.93 1.57 0.27 ind:imp:2p;sub:pre:2p; +espérions espérer ver 301.08 134.93 1.24 0.88 ind:imp:1p; +espérâmes espérer ver 301.08 134.93 0.00 0.07 ind:pas:1p; +espérons espérer ver 301.08 134.93 21.77 2.91 imp:pre:1p;ind:pre:1p; +espérât espérer ver 301.08 134.93 0.00 0.14 sub:imp:3s; +espérèrent espérer ver 301.08 134.93 0.00 0.07 ind:pas:3p; +espéré espérer ver m s 301.08 134.93 4.46 8.99 par:pas; +espérée espérer ver f s 301.08 134.93 0.14 1.01 par:pas; +espérées espérer ver f p 301.08 134.93 0.00 0.41 par:pas; +espérés espérer ver m p 301.08 134.93 0.13 0.41 par:pas; +esquif esquif nom m s 0.29 1.76 0.29 1.42 +esquifs esquif nom m p 0.29 1.76 0.00 0.34 +esquille esquille nom f s 0.01 0.81 0.01 0.14 +esquilles esquille nom f p 0.01 0.81 0.00 0.68 +esquimau esquimau nom m s 1.89 1.22 0.91 0.88 +esquimaude esquimaude adj f s 0.10 0.07 0.00 0.07 +esquimaudes esquimaude adj f p 0.10 0.07 0.10 0.00 +esquimaux esquimau nom m p 1.89 1.22 0.97 0.34 +esquintait esquinter ver 2.29 2.70 0.00 0.14 ind:imp:3s; +esquinte esquinter ver 2.29 2.70 0.50 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +esquintement esquintement nom m s 0.00 0.07 0.00 0.07 +esquintent esquinter ver 2.29 2.70 0.12 0.07 ind:pre:3p; +esquinter esquinter ver 2.29 2.70 0.47 1.08 inf; +esquinterais esquinter ver 2.29 2.70 0.01 0.00 cnd:pre:1s; +esquintes esquinter ver 2.29 2.70 0.34 0.07 ind:pre:2s; +esquintez esquinter ver 2.29 2.70 0.13 0.00 imp:pre:2p; +esquinté esquinter ver m s 2.29 2.70 0.57 0.41 par:pas; +esquintée esquinté adj f s 0.51 0.34 0.33 0.27 +esquintées esquinter ver f p 2.29 2.70 0.01 0.07 par:pas; +esquintés esquinté adj m p 0.51 0.34 0.02 0.07 +esquire esquire nom m s 0.31 0.00 0.31 0.00 +esquissa esquisser ver 0.74 16.82 0.02 4.53 ind:pas:3s; +esquissai esquisser ver 0.74 16.82 0.00 0.20 ind:pas:1s; +esquissaient esquisser ver 0.74 16.82 0.00 0.27 ind:imp:3p; +esquissais esquisser ver 0.74 16.82 0.02 0.47 ind:imp:1s; +esquissait esquisser ver 0.74 16.82 0.00 1.62 ind:imp:3s; +esquissant esquisser ver 0.74 16.82 0.12 1.08 par:pre; +esquisse esquisse nom f s 1.06 4.39 0.54 2.43 +esquissent esquisser ver 0.74 16.82 0.01 0.34 ind:pre:3p; +esquisser esquisser ver 0.74 16.82 0.06 2.03 inf; +esquisses esquisse nom f p 1.06 4.39 0.52 1.96 +esquissèrent esquisser ver 0.74 16.82 0.00 0.14 ind:pas:3p; +esquissé esquisser ver m s 0.74 16.82 0.15 2.43 par:pas; +esquissée esquisser ver f s 0.74 16.82 0.10 0.41 par:pas; +esquissées esquisser ver f p 0.74 16.82 0.00 0.20 par:pas; +esquissés esquisser ver m p 0.74 16.82 0.00 0.41 par:pas; +esquiva esquiver ver 4.39 8.38 0.01 1.28 ind:pas:3s; +esquivai esquiver ver 4.39 8.38 0.00 0.14 ind:pas:1s; +esquivaient esquiver ver 4.39 8.38 0.00 0.07 ind:imp:3p; +esquivait esquiver ver 4.39 8.38 0.01 0.88 ind:imp:3s; +esquivant esquiver ver 4.39 8.38 0.04 0.47 par:pre; +esquive esquive nom f s 1.11 0.95 1.06 0.74 +esquivent esquiver ver 4.39 8.38 0.02 0.14 ind:pre:3p; +esquiver esquiver ver 4.39 8.38 1.59 3.04 inf; +esquivera esquiver ver 4.39 8.38 0.19 0.07 ind:fut:3s; +esquiveront esquiver ver 4.39 8.38 0.14 0.00 ind:fut:3p; +esquives esquiver ver 4.39 8.38 0.28 0.00 ind:pre:2s; +esquivèrent esquiver ver 4.39 8.38 0.00 0.14 ind:pas:3p; +esquivé esquiver ver m s 4.39 8.38 1.08 0.95 par:pas; +esquivée esquiver ver f s 4.39 8.38 0.04 0.20 par:pas; +essai essai nom m s 28.78 14.86 20.31 9.93 +essaie essayer ver 670.38 296.69 168.04 39.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +essaient essayer ver 670.38 296.69 10.09 3.65 ind:pre:3p; +essaiera essayer ver 670.38 296.69 3.50 0.95 ind:fut:3s; +essaierai essayer ver 670.38 296.69 11.20 3.31 ind:fut:1s; +essaieraient essayer ver 670.38 296.69 0.38 0.20 cnd:pre:3p; +essaierais essayer ver 670.38 296.69 1.99 0.95 cnd:pre:1s;cnd:pre:2s; +essaierait essayer ver 670.38 296.69 0.94 1.62 cnd:pre:3s; +essaieras essayer ver 670.38 296.69 0.48 0.34 ind:fut:2s; +essaierez essayer ver 670.38 296.69 0.40 0.07 ind:fut:2p; +essaieriez essayer ver 670.38 296.69 0.10 0.00 cnd:pre:2p; +essaierions essayer ver 670.38 296.69 0.16 0.00 cnd:pre:1p; +essaierons essayer ver 670.38 296.69 0.39 0.20 ind:fut:1p; +essaieront essayer ver 670.38 296.69 1.10 0.47 ind:fut:3p; +essaies essayer ver 670.38 296.69 16.09 1.49 ind:pre:2s;sub:pre:2s; +essaim essaim nom m s 0.97 4.53 0.69 3.18 +essaimaient essaimer ver 0.03 0.95 0.01 0.07 ind:imp:3p; +essaimait essaimer ver 0.03 0.95 0.00 0.14 ind:imp:3s; +essaiment essaimer ver 0.03 0.95 0.01 0.14 ind:pre:3p; +essaims essaim nom m p 0.97 4.53 0.28 1.35 +essaimé essaimer ver m s 0.03 0.95 0.01 0.47 par:pas; +essaimées essaimer ver f p 0.03 0.95 0.00 0.07 par:pas; +essaimés essaimer ver m p 0.03 0.95 0.00 0.07 par:pas; +essais essai nom m p 28.78 14.86 8.47 4.93 +essangent essanger ver 0.00 0.07 0.00 0.07 ind:pre:3p; +essartage essartage nom m s 0.00 0.07 0.00 0.07 +essarte essarter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +essarts essart nom m p 0.00 0.07 0.00 0.07 +essartée essarter ver f s 0.00 0.14 0.00 0.07 par:pas; +essaya essayer ver 670.38 296.69 0.65 24.66 ind:pas:3s; +essayage essayage nom m s 1.84 2.84 1.26 1.82 +essayages essayage nom m p 1.84 2.84 0.58 1.01 +essayai essayer ver 670.38 296.69 0.32 9.73 ind:pas:1s; +essayaient essayer ver 670.38 296.69 2.73 6.08 ind:imp:3p; +essayais essayer ver 670.38 296.69 18.67 15.27 ind:imp:1s;ind:imp:2s; +essayait essayer ver 670.38 296.69 14.40 35.81 ind:imp:3s; +essayant essayer ver 670.38 296.69 8.96 22.57 par:pre; +essaye essayer ver 670.38 296.69 56.84 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essayent essayer ver 670.38 296.69 4.07 1.69 ind:pre:3p; +essayer essayer ver 670.38 296.69 134.66 56.42 inf; +essayera essayer ver 670.38 296.69 1.03 0.20 ind:fut:3s; +essayerai essayer ver 670.38 296.69 1.80 0.54 ind:fut:1s; +essayeraient essayer ver 670.38 296.69 0.08 0.07 cnd:pre:3p; +essayerais essayer ver 670.38 296.69 0.66 0.27 cnd:pre:1s;cnd:pre:2s; +essayerait essayer ver 670.38 296.69 0.13 0.27 cnd:pre:3s; +essayeras essayer ver 670.38 296.69 0.10 0.00 ind:fut:2s; +essayerez essayer ver 670.38 296.69 0.16 0.14 ind:fut:2p; +essayeriez essayer ver 670.38 296.69 0.12 0.00 cnd:pre:2p; +essayerons essayer ver 670.38 296.69 0.58 0.00 ind:fut:1p; +essayeront essayer ver 670.38 296.69 0.15 0.00 ind:fut:3p; +essayes essayer ver 670.38 296.69 5.96 0.34 ind:pre:2s;sub:pre:2s; +essayeur essayeur nom m s 0.01 0.20 0.01 0.14 +essayeuses essayeur nom f p 0.01 0.20 0.00 0.07 +essayez essayer ver 670.38 296.69 54.14 6.96 imp:pre:2p;ind:pre:2p; +essayiez essayer ver 670.38 296.69 1.24 0.20 ind:imp:2p; +essayions essayer ver 670.38 296.69 0.75 0.81 ind:imp:1p; +essayiste essayiste nom s 0.01 0.14 0.01 0.07 +essayistes essayiste nom p 0.01 0.14 0.00 0.07 +essayâmes essayer ver 670.38 296.69 0.00 0.20 ind:pas:1p; +essayons essayer ver 670.38 296.69 21.75 3.31 imp:pre:1p;ind:pre:1p; +essayât essayer ver 670.38 296.69 0.00 0.41 sub:imp:3s; +essayèrent essayer ver 670.38 296.69 0.27 0.81 ind:pas:3p; +essayé essayer ver m s 670.38 296.69 124.02 45.68 par:pas;par:pas;par:pas;par:pas; +essayée essayer ver f s 670.38 296.69 0.51 0.34 par:pas; +essayées essayer ver f p 670.38 296.69 0.35 0.14 par:pas; +essayés essayer ver m p 670.38 296.69 0.45 0.47 par:pas; +esse esse nom f s 0.02 0.68 0.02 0.68 +essence essence nom f s 33.24 29.46 32.91 27.77 +essences essence nom f p 33.24 29.46 0.34 1.69 +essential essential adj m s 0.14 0.00 0.14 0.00 +essentialisme essentialisme nom m s 0.00 0.07 0.00 0.07 +essentiel essentiel nom m s 11.64 29.05 11.64 28.78 +essentielle essentiel adj f s 9.85 23.04 2.66 6.89 +essentiellement essentiellement adv 1.65 6.55 1.65 6.55 +essentielles essentiel adj f p 9.85 23.04 1.25 3.11 +essentiels essentiel adj m p 9.85 23.04 0.89 3.38 +esseulement esseulement nom m s 0.00 0.34 0.00 0.34 +esseulé esseulé adj m s 0.88 1.22 0.43 0.14 +esseulée esseulé adj f s 0.88 1.22 0.19 0.54 +esseulées esseulé adj f p 0.88 1.22 0.12 0.20 +esseulés esseulé adj m p 0.88 1.22 0.14 0.34 +essieu essieu nom m s 0.28 0.41 0.28 0.41 +essieux essieux nom m p 0.10 0.95 0.10 0.95 +essor essor nom m s 0.70 3.78 0.70 3.78 +essora essorer ver 0.18 2.50 0.00 0.20 ind:pas:3s; +essorage essorage nom m s 0.11 0.20 0.11 0.20 +essoraient essorer ver 0.18 2.50 0.00 0.14 ind:imp:3p; +essorait essorer ver 0.18 2.50 0.01 0.27 ind:imp:3s; +essorant essorer ver 0.18 2.50 0.00 0.14 par:pre; +essore essorer ver 0.18 2.50 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essorent essorer ver 0.18 2.50 0.00 0.14 ind:pre:3p; +essorer essorer ver 0.18 2.50 0.08 1.08 inf; +essorerait essorer ver 0.18 2.50 0.00 0.07 cnd:pre:3s; +essoreuse essoreuse nom f s 0.36 0.07 0.36 0.07 +essorillé essoriller ver m s 0.00 0.07 0.00 0.07 par:pas; +essoré essorer ver m s 0.18 2.50 0.02 0.07 par:pas; +essorée essorer ver f s 0.18 2.50 0.00 0.20 par:pas; +essorés essoré adj m p 0.02 0.20 0.01 0.00 +essouffla essouffler ver 1.03 7.91 0.00 0.20 ind:pas:3s; +essoufflaient essouffler ver 1.03 7.91 0.00 0.34 ind:imp:3p; +essoufflais essouffler ver 1.03 7.91 0.01 0.07 ind:imp:1s; +essoufflait essouffler ver 1.03 7.91 0.01 0.88 ind:imp:3s; +essoufflant essouffler ver 1.03 7.91 0.00 0.20 par:pre; +essouffle essouffler ver 1.03 7.91 0.26 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essoufflement essoufflement nom m s 0.19 1.62 0.16 1.55 +essoufflements essoufflement nom m p 0.19 1.62 0.03 0.07 +essoufflent essouffler ver 1.03 7.91 0.01 0.07 ind:pre:3p; +essouffler essouffler ver 1.03 7.91 0.08 0.34 inf; +essouffleront essouffler ver 1.03 7.91 0.00 0.07 ind:fut:3p; +essouffles essouffler ver 1.03 7.91 0.01 0.07 ind:pre:2s; +essoufflez essouffler ver 1.03 7.91 0.00 0.14 ind:pre:2p; +essoufflèrent essouffler ver 1.03 7.91 0.00 0.07 ind:pas:3p; +essoufflé essouffler ver m s 1.03 7.91 0.38 1.76 par:pas; +essoufflée essouffler ver f s 1.03 7.91 0.25 1.28 par:pas; +essoufflées essoufflé adj f p 0.55 9.39 0.00 0.14 +essoufflés essoufflé adj m p 0.55 9.39 0.12 1.28 +essuie_glace essuie_glace nom m s 1.00 2.91 0.38 1.01 +essuie_glace essuie_glace nom m p 1.00 2.91 0.62 1.89 +essuie_mains essuie_mains nom m 0.23 0.27 0.23 0.27 +essuie_tout essuie_tout nom m 0.11 0.14 0.11 0.14 +essuie essuyer ver 11.82 55.00 3.98 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essuient essuyer ver 11.82 55.00 0.05 0.68 ind:pre:3p; +essuiera essuyer ver 11.82 55.00 0.04 0.00 ind:fut:3s; +essuierais essuyer ver 11.82 55.00 0.02 0.00 cnd:pre:1s; +essuieras essuyer ver 11.82 55.00 0.01 0.07 ind:fut:2s; +essuierez essuyer ver 11.82 55.00 0.04 0.00 ind:fut:2p; +essuierions essuyer ver 11.82 55.00 0.00 0.07 cnd:pre:1p; +essuies essuyer ver 11.82 55.00 0.23 0.07 ind:pre:2s; +essuya essuyer ver 11.82 55.00 0.14 12.84 ind:pas:3s; +essuyage essuyage nom m s 0.01 0.20 0.01 0.14 +essuyages essuyage nom m p 0.01 0.20 0.00 0.07 +essuyai essuyer ver 11.82 55.00 0.00 0.61 ind:pas:1s; +essuyaient essuyer ver 11.82 55.00 0.03 0.61 ind:imp:3p; +essuyais essuyer ver 11.82 55.00 0.07 0.68 ind:imp:1s;ind:imp:2s; +essuyait essuyer ver 11.82 55.00 0.41 6.42 ind:imp:3s; +essuyant essuyer ver 11.82 55.00 0.15 7.09 par:pre; +essuyer essuyer ver 11.82 55.00 3.39 11.35 inf;; +essuyeur essuyeur nom m s 0.02 0.00 0.02 0.00 +essuyez essuyer ver 11.82 55.00 1.41 0.27 imp:pre:2p;ind:pre:2p; +essuyions essuyer ver 11.82 55.00 0.00 0.07 ind:imp:1p; +essuyons essuyer ver 11.82 55.00 0.07 0.00 imp:pre:1p;ind:pre:1p; +essuyèrent essuyer ver 11.82 55.00 0.01 0.20 ind:pas:3p; +essuyé essuyer ver m s 11.82 55.00 1.68 5.00 par:pas; +essuyée essuyer ver f s 11.82 55.00 0.04 0.61 par:pas; +essuyées essuyer ver f p 11.82 55.00 0.02 0.34 par:pas; +essuyés essuyer ver m p 11.82 55.00 0.03 0.07 par:pas; +est_africain est_africain adj m s 0.01 0.00 0.01 0.00 +est_allemand est_allemand adj m s 0.67 0.00 0.31 0.00 +est_allemand est_allemand adj f s 0.67 0.00 0.23 0.00 +est_allemand est_allemand adj m p 0.67 0.00 0.13 0.00 +est_ce_que est_ce_que adv 1.34 0.20 1.34 0.20 +est_ce_qu est_ce_qu adv 3.41 0.07 3.41 0.07 +est_ce_que est_ce_que adv 1159.41 322.23 1159.41 322.23 +est_ce est_ce adv 0.05 0.20 0.05 0.20 +est_ouest est_ouest adj 0.38 0.41 0.38 0.41 +est être aux 8074.24 6501.82 3318.95 1600.27 ind:pre:3s; +establishment establishment nom m s 0.26 0.20 0.26 0.20 +estacade estacade nom f s 0.14 0.61 0.14 0.47 +estacades estacade nom f p 0.14 0.61 0.00 0.14 +estafette estafette nom f s 0.33 3.78 0.33 2.43 +estafettes estafette nom f p 0.33 3.78 0.00 1.35 +estafier estafier nom m s 0.00 0.14 0.00 0.07 +estafiers estafier nom m p 0.00 0.14 0.00 0.07 +estafilade estafilade nom f s 0.05 0.88 0.05 0.74 +estafilades estafilade nom f p 0.05 0.88 0.00 0.14 +estagnon estagnon nom m s 0.00 0.07 0.00 0.07 +estaminet estaminet nom m s 0.01 1.35 0.01 1.08 +estaminets estaminet nom m p 0.01 1.35 0.00 0.27 +estampage estampage nom m s 0.02 0.00 0.02 0.00 +estampe estampe nom f s 0.42 2.23 0.12 0.68 +estamper estamper ver 0.03 0.27 0.02 0.20 inf; +estampes estampe nom f p 0.42 2.23 0.30 1.55 +estampilla estampiller ver 0.07 0.47 0.00 0.14 ind:pas:3s; +estampillaient estampiller ver 0.07 0.47 0.00 0.07 ind:imp:3p; +estampille estampille nom f s 0.01 0.47 0.01 0.47 +estampiller estampiller ver 0.07 0.47 0.00 0.07 inf; +estampillé estampiller ver m s 0.07 0.47 0.04 0.07 par:pas; +estampillées estampillé adj f p 0.00 0.47 0.00 0.07 +estampillés estampiller ver m p 0.07 0.47 0.03 0.14 par:pas; +estampé estamper ver m s 0.03 0.27 0.01 0.00 par:pas; +estampée estamper ver f s 0.03 0.27 0.00 0.07 par:pas; +estancia estancia nom f s 0.06 0.41 0.06 0.20 +estancias estancia nom f p 0.06 0.41 0.00 0.20 +este este nom m s 0.50 0.41 0.50 0.14 +ester ester nom m s 0.25 0.00 0.25 0.00 +estes este nom m p 0.50 0.41 0.00 0.27 +esthète esthète nom s 0.29 2.57 0.27 1.49 +esthètes esthète nom p 0.29 2.57 0.02 1.08 +esthésiomètre esthésiomètre nom m s 0.00 0.07 0.00 0.07 +esthéticien esthéticien nom m s 1.14 0.54 0.11 0.14 +esthéticienne esthéticien nom f s 1.14 0.54 1.02 0.41 +esthéticiennes esthéticienne nom f p 0.03 0.00 0.03 0.00 +esthétique esthétique adj s 3.09 4.66 2.64 3.45 +esthétiquement esthétiquement adv 0.11 0.07 0.11 0.07 +esthétiques esthétique adj p 3.09 4.66 0.46 1.22 +esthétisait esthétiser ver 0.00 0.07 0.00 0.07 ind:imp:3s; +esthétisme esthétisme nom m s 0.04 1.08 0.04 1.08 +estima estimer ver 21.41 37.64 0.14 1.89 ind:pas:3s; +estimable estimable adj s 0.54 1.69 0.40 1.42 +estimables estimable adj p 0.54 1.69 0.14 0.27 +estimai estimer ver 21.41 37.64 0.00 0.14 ind:pas:1s; +estimaient estimer ver 21.41 37.64 0.04 1.49 ind:imp:3p; +estimais estimer ver 21.41 37.64 0.25 2.16 ind:imp:1s;ind:imp:2s; +estimait estimer ver 21.41 37.64 0.73 7.77 ind:imp:3s; +estimant estimer ver 21.41 37.64 0.17 2.97 par:pre; +estimation estimation nom f s 3.55 1.22 2.40 1.01 +estimations estimation nom f p 3.55 1.22 1.15 0.20 +estime estimer ver 21.41 37.64 8.02 8.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +estiment estimer ver 21.41 37.64 1.28 1.49 ind:pre:3p; +estimer estimer ver 21.41 37.64 2.37 3.18 inf; +estimera estimer ver 21.41 37.64 0.08 0.14 ind:fut:3s; +estimerai estimer ver 21.41 37.64 0.03 0.20 ind:fut:1s; +estimerais estimer ver 21.41 37.64 0.04 0.07 cnd:pre:1s; +estimerait estimer ver 21.41 37.64 0.00 0.20 cnd:pre:3s; +estimeras estimer ver 21.41 37.64 0.04 0.00 ind:fut:2s; +estimerez estimer ver 21.41 37.64 0.14 0.14 ind:fut:2p; +estimes estimer ver 21.41 37.64 0.90 0.34 ind:pre:2s; +estimez estimer ver 21.41 37.64 1.41 1.28 imp:pre:2p;ind:pre:2p; +estimiez estimer ver 21.41 37.64 0.27 0.07 ind:imp:2p; +estimions estimer ver 21.41 37.64 0.01 0.68 ind:imp:1p; +estimons estimer ver 21.41 37.64 0.95 0.54 imp:pre:1p;ind:pre:1p; +estimât estimer ver 21.41 37.64 0.00 0.34 sub:imp:3s; +estimèrent estimer ver 21.41 37.64 0.01 0.14 ind:pas:3p; +estimé estimer ver m s 21.41 37.64 2.71 2.64 par:pas; +estimée estimer ver f s 21.41 37.64 0.77 0.41 par:pas; +estimées estimer ver f p 21.41 37.64 0.10 0.07 par:pas; +estimés estimer ver m p 21.41 37.64 0.97 0.41 par:pas; +estival estival adj m s 0.53 1.76 0.35 0.47 +estivale estival adj f s 0.53 1.76 0.11 0.74 +estivales estival adj f p 0.53 1.76 0.04 0.27 +estivant estivant nom m s 0.29 2.23 0.00 0.27 +estivante estivant nom f s 0.29 2.23 0.00 0.07 +estivantes estivant nom f p 0.29 2.23 0.00 0.07 +estivants estivant nom m p 0.29 2.23 0.29 1.82 +estivaux estival adj m p 0.53 1.76 0.04 0.27 +estoc estoc nom m s 0.16 0.34 0.16 0.20 +estocade estocade nom f s 0.03 0.47 0.03 0.41 +estocades estocade nom f p 0.03 0.47 0.00 0.07 +estocs estoc nom m p 0.16 0.34 0.00 0.14 +estom estom nom m s 0.00 0.20 0.00 0.20 +estomac estomac nom m s 23.56 30.95 23.06 30.14 +estomacs estomac nom m p 23.56 30.95 0.50 0.81 +estomaquait estomaquer ver 0.26 2.16 0.00 0.07 ind:imp:3s; +estomaquant estomaquer ver 0.26 2.16 0.00 0.07 par:pre; +estomaque estomaquer ver 0.26 2.16 0.16 0.14 ind:pre:1s;ind:pre:3s; +estomaquer estomaquer ver 0.26 2.16 0.00 0.14 inf; +estomaqué estomaquer ver m s 0.26 2.16 0.06 1.42 par:pas; +estomaquée estomaquer ver f s 0.26 2.16 0.03 0.20 par:pas; +estomaqués estomaquer ver m p 0.26 2.16 0.01 0.14 par:pas; +estompa estomper ver 1.54 8.85 0.00 0.81 ind:pas:3s; +estompaient estomper ver 1.54 8.85 0.01 1.08 ind:imp:3p; +estompait estomper ver 1.54 8.85 0.11 1.76 ind:imp:3s; +estompant estomper ver 1.54 8.85 0.00 0.47 par:pre; +estompe estomper ver 1.54 8.85 0.40 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +estompent estomper ver 1.54 8.85 0.42 1.22 ind:pre:3p; +estomper estomper ver 1.54 8.85 0.25 0.68 inf; +estompera estomper ver 1.54 8.85 0.21 0.00 ind:fut:3s; +estomperont estomper ver 1.54 8.85 0.07 0.00 ind:fut:3p; +estompes estomper ver 1.54 8.85 0.00 0.14 ind:pre:2s; +estompât estomper ver 1.54 8.85 0.00 0.14 sub:imp:3s; +estompèrent estomper ver 1.54 8.85 0.00 0.20 ind:pas:3p; +estompé estomper ver m s 1.54 8.85 0.02 0.14 par:pas; +estompée estomper ver f s 1.54 8.85 0.04 0.34 par:pas; +estompées estomper ver f p 1.54 8.85 0.00 0.47 par:pas; +estompés estomper ver m p 1.54 8.85 0.02 0.27 par:pas; +estonien estonien adj m s 0.01 0.07 0.01 0.07 +estonienne estonienne nom f s 0.10 0.00 0.10 0.00 +estoniens estonien nom m p 0.00 0.20 0.00 0.14 +estoqua estoquer ver 0.00 0.34 0.00 0.07 ind:pas:3s; +estoque estoquer ver 0.00 0.34 0.00 0.14 ind:pre:3s; +estoquer estoquer ver 0.00 0.34 0.00 0.07 inf; +estoqué estoquer ver m s 0.00 0.34 0.00 0.07 par:pas; +estouffade estouffade nom f s 0.00 0.07 0.00 0.07 +estourbi estourbir ver m s 0.14 2.36 0.03 0.41 par:pas; +estourbie estourbir ver f s 0.14 2.36 0.01 0.41 par:pas; +estourbies estourbir ver f p 0.14 2.36 0.01 0.00 par:pas; +estourbir estourbir ver 0.14 2.36 0.07 0.88 inf; +estourbirait estourbir ver 0.14 2.36 0.00 0.07 cnd:pre:3s; +estourbis estourbir ver m p 0.14 2.36 0.01 0.14 ind:pre:1s;par:pas; +estourbissais estourbir ver 0.14 2.36 0.00 0.07 ind:imp:1s; +estourbissant estourbir ver 0.14 2.36 0.00 0.07 par:pre; +estourbisse estourbir ver 0.14 2.36 0.00 0.07 sub:pre:1s; +estourbit estourbir ver 0.14 2.36 0.00 0.27 ind:pre:3s;ind:pas:3s; +estrade estrade nom f s 1.64 11.28 1.63 10.68 +estrades estrade nom f p 1.64 11.28 0.01 0.61 +estragon estragon nom m s 0.70 0.81 0.70 0.81 +estrangers estranger nom m p 0.00 0.20 0.00 0.20 +estrapade estrapade nom f s 0.14 0.47 0.14 0.41 +estrapades estrapade nom f p 0.14 0.47 0.00 0.07 +estrapassée estrapasser ver f s 0.01 0.00 0.01 0.00 par:pas; +estrogène estrogène nom s 0.03 0.00 0.03 0.00 +estropiait estropier ver 1.39 1.15 0.00 0.07 ind:imp:3s; +estropie estropier ver 1.39 1.15 0.02 0.14 ind:pre:1s;ind:pre:3s; +estropier estropier ver 1.39 1.15 0.39 0.14 inf; +estropierai estropier ver 1.39 1.15 0.01 0.00 ind:fut:1s; +estropierait estropier ver 1.39 1.15 0.01 0.00 cnd:pre:3s; +estropiez estropier ver 1.39 1.15 0.04 0.00 imp:pre:2p;ind:pre:2p; +estropié estropié adj m s 1.42 1.15 0.89 0.47 +estropiée estropié adj f s 1.42 1.15 0.25 0.14 +estropiés estropié adj m p 1.42 1.15 0.28 0.54 +estuaire estuaire nom m s 0.49 2.64 0.48 2.43 +estuaires estuaire nom m p 0.49 2.64 0.01 0.20 +estudiantin estudiantin adj m s 0.17 0.68 0.05 0.20 +estudiantine estudiantin adj f s 0.17 0.68 0.12 0.34 +estudiantines estudiantin adj f p 0.17 0.68 0.00 0.07 +estudiantins estudiantin adj m p 0.17 0.68 0.00 0.07 +esturgeon esturgeon nom m s 0.47 0.07 0.39 0.07 +esturgeons esturgeon nom m p 0.47 0.07 0.07 0.00 +et_caetera et_caetera adv 0.72 0.88 0.72 0.88 +et_cetera et_cetera adv 1.14 0.74 1.14 0.74 +et_seq et_seq adv 0.00 0.07 0.00 0.07 +et et con 12909.08 20879.73 12909.08 20879.73 +etc etc adv 13.90 55.00 13.90 55.00 +etc. etc. adv 0.03 0.74 0.03 0.74 +etcetera etcetera adv 0.00 0.07 0.00 0.07 +ethmoïdal ethmoïdal adj m s 0.03 0.00 0.01 0.00 +ethmoïdaux ethmoïdal adj m p 0.03 0.00 0.01 0.00 +ethnicité ethnicité nom f s 0.02 0.00 0.02 0.00 +ethnie ethnie nom f s 0.28 0.20 0.08 0.07 +ethnies ethnie nom f p 0.28 0.20 0.20 0.14 +ethnique ethnique adj s 1.37 1.01 0.85 0.68 +ethniquement ethniquement adv 0.01 0.00 0.01 0.00 +ethniques ethnique adj p 1.37 1.01 0.52 0.34 +ethnobotaniste ethnobotaniste nom s 0.01 0.00 0.01 0.00 +ethnographe ethnographe nom s 0.10 0.07 0.10 0.07 +ethnographie ethnographie nom f s 0.00 0.20 0.00 0.20 +ethnographique ethnographique adj m s 0.10 0.07 0.10 0.07 +ethnologie ethnologie nom f s 0.01 0.41 0.01 0.41 +ethnologique ethnologique adj s 0.00 0.27 0.00 0.20 +ethnologiques ethnologique adj m p 0.00 0.27 0.00 0.07 +ethnologue ethnologue nom s 0.14 0.47 0.14 0.34 +ethnologues ethnologue nom p 0.14 0.47 0.00 0.14 +ets pas adv_sup 18189.04 8795.20 0.19 0.00 +eu avoir aux m s 18559.23 12800.81 18.39 22.36 par:pas; +eubage eubage nom m s 0.00 0.41 0.00 0.41 +eubine eubine nom f s 0.00 0.27 0.00 0.27 +eucalyptus eucalyptus nom m 0.83 3.11 0.83 3.11 +eucharistie eucharistie nom f s 0.34 0.61 0.34 0.61 +eucharistique eucharistique adj s 0.00 0.41 0.00 0.34 +eucharistiques eucharistique adj m p 0.00 0.41 0.00 0.07 +euclidien euclidien adj m s 0.04 0.14 0.01 0.00 +euclidienne euclidien adj f s 0.04 0.14 0.01 0.00 +euclidiens euclidien adj m p 0.04 0.14 0.01 0.14 +eudistes eudiste nom m p 0.00 0.07 0.00 0.07 +eue avoir aux f s 18559.23 12800.81 0.27 0.54 par:pas; +eues avoir aux f p 18559.23 12800.81 0.01 0.07 par:pas; +eugénique eugénique adj f s 0.01 0.07 0.01 0.07 +eugénisme eugénisme nom m s 0.45 0.00 0.45 0.00 +euh euh ono 108.86 15.47 108.86 15.47 +eulogie eulogie nom f s 0.00 0.07 0.00 0.07 +eunuque eunuque nom m s 1.79 8.45 1.27 2.43 +eunuques_espion eunuques_espion nom m p 0.00 0.14 0.00 0.14 +eunuques eunuque nom m p 1.79 8.45 0.53 6.01 +euphonie euphonie nom f s 0.00 0.07 0.00 0.07 +euphonique euphonique adj m s 0.00 0.34 0.00 0.27 +euphoniquement euphoniquement adv 0.00 0.07 0.00 0.07 +euphoniques euphonique adj p 0.00 0.34 0.00 0.07 +euphorbe euphorbe nom f s 0.00 0.41 0.00 0.07 +euphorbes euphorbe nom f p 0.00 0.41 0.00 0.34 +euphorie euphorie nom f s 0.98 8.11 0.98 8.11 +euphorique euphorique adj s 0.56 1.22 0.56 1.22 +euphorisant euphorisant adj m s 0.06 0.20 0.04 0.07 +euphorisante euphorisant adj f s 0.06 0.20 0.02 0.07 +euphorisants euphorisant nom m p 0.02 0.47 0.02 0.41 +euphorisent euphoriser ver 0.00 0.20 0.00 0.07 ind:pre:3p; +euphorisé euphoriser ver m s 0.00 0.20 0.00 0.07 par:pas; +euphorisée euphoriser ver f s 0.00 0.20 0.00 0.07 par:pas; +euphémisme euphémisme nom m s 1.52 1.55 1.11 1.01 +euphémismes euphémisme nom m p 1.52 1.55 0.41 0.54 +eurafricaine eurafricain adj f s 0.10 0.07 0.00 0.07 +eurafricains eurafricain adj m p 0.10 0.07 0.10 0.00 +eurasien eurasien nom m s 0.03 0.00 0.02 0.00 +eurasienne eurasienne adj f s 0.01 0.07 0.01 0.07 +eurent avoir aux 18559.23 12800.81 0.44 9.32 ind:pas:3p; +euro_africain euro_africain adj f p 0.00 0.07 0.00 0.07 +euro euro nom m s 9.84 0.00 0.84 0.00 +eurodollar eurodollar nom m s 0.01 0.00 0.01 0.00 +euromarché euromarché nom m s 0.00 0.07 0.00 0.07 +européen européen adj m s 9.45 15.88 2.78 3.78 +européenne européen adj f s 9.45 15.88 3.92 6.76 +européennes européen adj f p 9.45 15.88 0.96 1.42 +européens européen nom m p 3.32 7.30 2.44 4.05 +euros euro nom m p 9.84 0.00 8.99 0.00 +eurêka eurêka ono 0.00 0.20 0.00 0.20 +eurythmiques eurythmique adj m p 0.00 0.07 0.00 0.07 +eus avoir aux m p 18559.23 12800.81 0.67 13.04 par:pas; +euskera euskera nom m s 1.30 0.00 1.30 0.00 +eusse avoir aux 18559.23 12800.81 0.52 7.30 sub:imp:1s; +eussent avoir aux 18559.23 12800.81 0.13 20.20 sub:imp:3p; +eusses avoir aux 18559.23 12800.81 0.00 0.07 sub:imp:2s; +eussiez avoir aux 18559.23 12800.81 0.52 0.47 sub:imp:2p; +eussions avoir aux 18559.23 12800.81 0.00 1.35 sub:imp:1p; +eussé avoir aux 18559.23 12800.81 0.00 0.95 sub:imp:1s; +eustache eustache nom m s 0.00 0.20 0.00 0.07 +eustaches eustache nom m p 0.00 0.20 0.00 0.14 +eut avoir aux 18559.23 12800.81 2.15 54.26 ind:pas:3s; +euthanasie euthanasie nom f s 1.48 0.61 1.44 0.54 +euthanasies euthanasie nom f p 1.48 0.61 0.04 0.07 +eux_mêmes eux_mêmes pro_per m p 9.96 48.04 9.96 48.04 +eux eux pro_per m p 295.35 504.26 295.35 504.26 +event event nom m s 0.14 0.00 0.14 0.00 +evzones evzone nom m p 0.00 0.07 0.00 0.07 +ex_abbé ex_abbé nom m s 0.00 0.07 0.00 0.07 +ex_acteur ex_acteur nom m s 0.00 0.07 0.00 0.07 +ex_adjudant ex_adjudant nom m s 0.00 0.14 0.00 0.14 +ex_agent ex_agent nom m s 0.09 0.00 0.09 0.00 +ex_alcoolo ex_alcoolo nom s 0.01 0.00 0.01 0.00 +ex_allée ex_allée nom f s 0.00 0.07 0.00 0.07 +ex_amant ex_amant nom m s 0.19 0.34 0.17 0.07 +ex_amant ex_amant nom f s 0.19 0.34 0.01 0.27 +ex_amant ex_amant nom m p 0.19 0.34 0.01 0.00 +ex_ambassadeur ex_ambassadeur nom m s 0.01 0.00 0.01 0.00 +ex_amour ex_amour nom m s 0.01 0.00 0.01 0.00 +ex_appartement ex_appartement nom m s 0.00 0.07 0.00 0.07 +ex_apprenti ex_apprenti nom m s 0.00 0.07 0.00 0.07 +ex_arriviste ex_arriviste nom s 0.00 0.07 0.00 0.07 +ex_artiste ex_artiste nom s 0.00 0.07 0.00 0.07 +ex_assistant ex_assistant nom m s 0.07 0.00 0.02 0.00 +ex_assistant ex_assistant nom f s 0.07 0.00 0.04 0.00 +ex_associé ex_associé nom m s 0.13 0.07 0.08 0.07 +ex_associé ex_associé nom m p 0.13 0.07 0.05 0.00 +ex_ballerine ex_ballerine nom f s 0.01 0.00 0.01 0.00 +ex_banquier ex_banquier nom m s 0.01 0.00 0.01 0.00 +ex_barman ex_barman nom m s 0.01 0.07 0.01 0.07 +ex_basketteur ex_basketteur nom m s 0.00 0.07 0.00 0.07 +ex_batteur ex_batteur nom m s 0.00 0.07 0.00 0.07 +ex_beatnik ex_beatnik nom s 0.00 0.07 0.00 0.07 +ex_belle_mère ex_belle_mère nom f s 0.05 0.00 0.05 0.00 +ex_bibliothécaire ex_bibliothécaire nom s 0.00 0.07 0.00 0.07 +ex_boss ex_boss nom m 0.01 0.00 0.01 0.00 +ex_boxeur ex_boxeur nom m s 0.16 0.00 0.16 0.00 +ex_branleur ex_branleur nom m p 0.00 0.07 0.00 0.07 +ex_buteur ex_buteur nom m s 0.01 0.00 0.01 0.00 +ex_caïd ex_caïd nom m s 0.01 0.00 0.01 0.00 +ex_camarade ex_camarade nom p 0.01 0.00 0.01 0.00 +ex_capitaine ex_capitaine nom m s 0.04 0.00 0.04 0.00 +ex_champion ex_champion nom m s 0.75 0.14 0.71 0.14 +ex_champion ex_champion nom f s 0.75 0.14 0.01 0.00 +ex_champion ex_champion nom m p 0.75 0.14 0.03 0.00 +ex_chanteur ex_chanteur nom m s 0.02 0.07 0.00 0.07 +ex_chanteur ex_chanteur nom f s 0.02 0.07 0.02 0.00 +ex_chauffeur ex_chauffeur nom m s 0.14 0.07 0.14 0.07 +ex_chef ex_chef nom s 0.20 0.14 0.20 0.14 +ex_chiropracteur ex_chiropracteur nom m s 0.01 0.00 0.01 0.00 +ex_citation ex_citation nom f s 0.01 0.00 0.01 0.00 +ex_citoyen ex_citoyen nom m s 0.01 0.00 0.01 0.00 +ex_civil ex_civil nom m p 0.01 0.00 0.01 0.00 +ex_collabo ex_collabo nom s 0.00 0.07 0.00 0.07 +ex_collègue ex_collègue nom s 0.30 0.14 0.03 0.14 +ex_collègue ex_collègue nom p 0.30 0.14 0.27 0.00 +ex_colonel ex_colonel nom m s 0.01 0.14 0.01 0.14 +ex_commando ex_commando nom m s 0.05 0.00 0.05 0.00 +ex_concierge ex_concierge nom s 0.00 0.07 0.00 0.07 +ex_contrebandier ex_contrebandier nom m s 0.02 0.00 0.02 0.00 +ex_copain ex_copain nom m s 0.28 0.00 0.26 0.00 +ex_copain ex_copain nom m p 0.28 0.00 0.02 0.00 +ex_copine ex_copine nom f s 0.71 0.00 0.54 0.00 +ex_copine ex_copine nom f p 0.71 0.00 0.18 0.00 +ex_corps ex_corps nom m 0.01 0.00 0.01 0.00 +ex_couple ex_couple nom m s 0.01 0.00 0.01 0.00 +ex_danseur ex_danseur nom f s 0.01 0.14 0.01 0.14 +ex_dealer ex_dealer nom m s 0.02 0.00 0.02 0.00 +ex_dieu ex_dieu nom m s 0.01 0.00 0.01 0.00 +ex_diva ex_diva nom f s 0.00 0.07 0.00 0.07 +ex_drôlesse ex_drôlesse nom f s 0.00 0.07 0.00 0.07 +ex_drifter ex_drifter nom m s 0.00 0.07 0.00 0.07 +ex_dulcinée ex_dulcinée nom f s 0.00 0.07 0.00 0.07 +ex_démon ex_démon nom m s 0.10 0.00 0.09 0.00 +ex_démon ex_démon nom m p 0.10 0.00 0.01 0.00 +ex_enseigne ex_enseigne nom m s 0.00 0.07 0.00 0.07 +ex_enzyme ex_enzyme nom f p 0.00 0.07 0.00 0.07 +ex_esclavagiste ex_esclavagiste nom p 0.01 0.00 0.01 0.00 +ex_femme ex_femme nom f s 6.75 1.62 6.32 1.62 +ex_femme ex_femme nom f p 6.75 1.62 0.43 0.00 +ex_fiancé ex_fiancé nom m s 0.18 0.07 0.10 0.00 +ex_fiancé ex_fiancé nom f s 0.18 0.07 0.08 0.07 +ex_fils ex_fils nom m 0.00 0.07 0.00 0.07 +ex_flic ex_flic nom m s 0.27 0.07 0.24 0.07 +ex_flic ex_flic nom m p 0.27 0.07 0.03 0.00 +ex_forçat ex_forçat nom m p 0.01 0.00 0.01 0.00 +ex_fusilleur ex_fusilleur nom m p 0.00 0.07 0.00 0.07 +ex_gang ex_gang nom m s 0.00 0.07 0.00 0.07 +ex_garde ex_garde nom f s 0.14 0.20 0.00 0.14 +ex_garde ex_garde nom f p 0.14 0.20 0.14 0.07 +ex_gauchiste ex_gauchiste adj m s 0.00 0.07 0.00 0.07 +ex_gauchiste ex_gauchiste nom s 0.00 0.07 0.00 0.07 +ex_gendre ex_gendre nom m s 0.01 0.00 0.01 0.00 +ex_gonzesse ex_gonzesse nom f s 0.00 0.14 0.00 0.14 +ex_gouverneur ex_gouverneur nom m s 0.06 0.14 0.06 0.14 +ex_gravosse ex_gravosse nom f s 0.00 0.07 0.00 0.07 +ex_griot ex_griot nom m s 0.00 0.07 0.00 0.07 +ex_griveton ex_griveton nom m s 0.00 0.07 0.00 0.07 +ex_grognasse ex_grognasse nom f s 0.00 0.07 0.00 0.07 +ex_groupe ex_groupe nom m s 0.00 0.07 0.00 0.07 +ex_guenille ex_guenille nom f p 0.00 0.07 0.00 0.07 +ex_guitariste ex_guitariste nom s 0.00 0.07 0.00 0.07 +ex_génie ex_génie nom m s 0.00 0.07 0.00 0.07 +ex_hôpital ex_hôpital nom m s 0.00 0.07 0.00 0.07 +ex_hippie ex_hippie nom p 0.02 0.00 0.02 0.00 +ex_homme_grenouille ex_homme_grenouille nom m s 0.01 0.00 0.01 0.00 +ex_homme ex_homme nom m s 0.06 0.00 0.06 0.00 +ex_immeuble ex_immeuble nom m s 0.00 0.07 0.00 0.07 +ex_inspecteur ex_inspecteur nom m s 0.03 0.00 0.02 0.00 +ex_inspecteur ex_inspecteur nom m p 0.03 0.00 0.01 0.00 +ex_journaliste ex_journaliste nom s 0.02 0.07 0.02 0.07 +ex_junkie ex_junkie nom m s 0.03 0.00 0.03 0.00 +ex_kid ex_kid nom m s 0.00 0.27 0.00 0.27 +ex_leader ex_leader nom m s 0.02 0.00 0.02 0.00 +ex_libris ex_libris nom m 0.00 0.14 0.00 0.14 +ex_lieutenant ex_lieutenant nom m s 0.01 0.00 0.01 0.00 +ex_lit ex_lit nom m s 0.00 0.07 0.00 0.07 +ex_légionnaire ex_légionnaire nom m s 0.00 0.07 0.00 0.07 +ex_lycée ex_lycée nom m s 0.00 0.07 0.00 0.07 +ex_maître ex_maître nom m s 0.00 0.07 0.00 0.07 +ex_madame ex_madame nom f 0.03 0.07 0.03 0.07 +ex_maire ex_maire nom m s 0.01 0.00 0.01 0.00 +ex_mari ex_mari nom m s 5.05 1.08 4.87 1.08 +ex_marine ex_marine nom f s 0.07 0.00 0.07 0.00 +ex_mari ex_mari nom m p 5.05 1.08 0.19 0.00 +ex_mec ex_mec nom m p 0.10 0.00 0.10 0.00 +ex_membre ex_membre nom m s 0.03 0.00 0.03 0.00 +ex_mercenaire ex_mercenaire nom p 0.01 0.00 0.01 0.00 +ex_militaire ex_militaire nom s 0.08 0.00 0.05 0.00 +ex_militaire ex_militaire nom p 0.08 0.00 0.03 0.00 +ex_ministre ex_ministre nom m s 0.06 0.41 0.04 0.41 +ex_ministre ex_ministre nom m p 0.06 0.41 0.01 0.00 +ex_miss ex_miss nom f 0.05 0.00 0.05 0.00 +ex_monteur ex_monteur nom m s 0.02 0.00 0.02 0.00 +ex_motard ex_motard nom m s 0.01 0.00 0.01 0.00 +ex_nana ex_nana nom f s 0.12 0.00 0.12 0.00 +ex_officier ex_officier nom m s 0.05 0.14 0.05 0.14 +ex_opérateur ex_opérateur nom m s 0.00 0.07 0.00 0.07 +ex_palme ex_palme nom f p 0.14 0.00 0.14 0.00 +ex_para ex_para nom m s 0.02 0.14 0.02 0.14 +ex_partenaire ex_partenaire nom s 0.18 0.00 0.18 0.00 +ex_patron ex_patron nom m s 0.20 0.00 0.20 0.00 +ex_pensionnaire ex_pensionnaire nom p 0.00 0.07 0.00 0.07 +ex_perroquet ex_perroquet nom m s 0.01 0.00 0.01 0.00 +ex_petit ex_petit nom m s 0.68 0.00 0.38 0.00 +ex_petit ex_petit nom f s 0.68 0.00 0.28 0.00 +ex_petit ex_petit nom m p 0.68 0.00 0.03 0.00 +ex_pharmacien ex_pharmacien nom f p 0.00 0.07 0.00 0.07 +ex_pilote ex_pilote adj m s 0.00 0.14 0.00 0.14 +ex_planète ex_planète nom f s 0.01 0.00 0.01 0.00 +ex_planton ex_planton nom m s 0.00 0.07 0.00 0.07 +ex_plaqué ex_plaqué adj f s 0.00 0.07 0.00 0.07 +ex_plâtrier ex_plâtrier nom m s 0.00 0.07 0.00 0.07 +ex_poivrot ex_poivrot nom m p 0.01 0.00 0.01 0.00 +ex_premier ex_premier adj m s 0.01 0.00 0.01 0.00 +ex_premier ex_premier nom m s 0.01 0.00 0.01 0.00 +ex_primaire ex_primaire nom s 0.00 0.07 0.00 0.07 +ex_prison ex_prison nom f s 0.01 0.00 0.01 0.00 +ex_procureur ex_procureur nom m s 0.03 0.00 0.03 0.00 +ex_profession ex_profession nom f s 0.00 0.07 0.00 0.07 +ex_profileur ex_profileur nom m s 0.01 0.00 0.01 0.00 +ex_promoteur ex_promoteur nom m s 0.01 0.00 0.01 0.00 +ex_propriétaire ex_propriétaire nom s 0.04 0.07 0.04 0.07 +ex_présentateur ex_présentateur nom m s 0.00 0.07 0.00 0.07 +ex_président ex_président nom m s 0.71 0.00 0.60 0.00 +ex_président ex_président nom m p 0.71 0.00 0.11 0.00 +ex_prêtre ex_prêtre nom m s 0.01 0.00 0.01 0.00 +ex_putain ex_putain nom f s 0.00 0.07 0.00 0.07 +ex_pute ex_pute nom f p 0.01 0.00 0.01 0.00 +ex_quincaillerie ex_quincaillerie nom f s 0.00 0.14 0.00 0.14 +ex_quincaillier ex_quincaillier nom m s 0.00 0.27 0.00 0.27 +ex_rebelle ex_rebelle adj s 0.00 0.07 0.00 0.07 +ex_reine ex_reine nom f s 0.02 0.00 0.02 0.00 +ex_roi ex_roi nom m s 0.01 0.20 0.01 0.20 +ex_république ex_république nom f p 0.01 0.00 0.01 0.00 +ex_résidence ex_résidence nom f s 0.01 0.00 0.01 0.00 +ex_révolutionnaire ex_révolutionnaire nom s 0.00 0.07 0.00 0.07 +ex_sac ex_sac nom m p 0.00 0.07 0.00 0.07 +ex_secrétaire ex_secrétaire nom s 0.07 0.00 0.07 0.00 +ex_sergent ex_sergent nom m s 0.02 0.14 0.02 0.07 +ex_sergent ex_sergent nom m p 0.02 0.14 0.00 0.07 +ex_soldat ex_soldat nom m p 0.00 0.07 0.00 0.07 +ex_soliste ex_soliste nom p 0.00 0.07 0.00 0.07 +ex_standardiste ex_standardiste nom s 0.00 0.07 0.00 0.07 +ex_star ex_star nom f s 0.14 0.00 0.14 0.00 +ex_strip_teaseur ex_strip_teaseur nom f s 0.00 0.07 0.00 0.07 +ex_séminariste ex_séminariste nom s 0.00 0.07 0.00 0.07 +ex_sénateur ex_sénateur nom m s 0.00 0.14 0.00 0.14 +ex_super ex_super adj m s 0.14 0.00 0.14 0.00 +ex_sévère ex_sévère adj f s 0.00 0.07 0.00 0.07 +ex_taulard ex_taulard nom m s 0.38 0.14 0.28 0.07 +ex_taulard ex_taulard nom m p 0.38 0.14 0.10 0.07 +ex_teinturier ex_teinturier nom m s 0.01 0.00 0.01 0.00 +ex_tirailleur ex_tirailleur nom m s 0.00 0.07 0.00 0.07 +ex_tueur ex_tueur nom m s 0.01 0.00 0.01 0.00 +ex_tuteur ex_tuteur nom m s 0.01 0.00 0.01 0.00 +ex_élève ex_élève nom s 0.02 0.07 0.02 0.07 +ex_union ex_union nom f s 0.00 0.07 0.00 0.07 +ex_épouse ex_épouse nom f s 0.30 0.27 0.28 0.27 +ex_épouse ex_épouse nom f p 0.30 0.27 0.02 0.00 +ex_équipier ex_équipier nom m s 0.07 0.00 0.07 0.00 +ex_usine ex_usine nom f s 0.01 0.00 0.01 0.00 +ex_vedette ex_vedette nom f s 0.11 0.07 0.11 0.07 +ex_violeur ex_violeur nom m p 0.01 0.00 0.01 0.00 +ex_voto ex_voto nom m 0.48 1.69 0.48 1.69 +ex_abrupto ex_abrupto adv 0.00 0.07 0.00 0.07 +ex_nihilo ex_nihilo adv 0.00 0.14 0.00 0.14 +exacerba exacerber ver 0.33 1.42 0.00 0.07 ind:pas:3s; +exacerbant exacerber ver 0.33 1.42 0.00 0.07 par:pre; +exacerbation exacerbation nom f s 0.00 0.07 0.00 0.07 +exacerbe exacerber ver 0.33 1.42 0.03 0.20 imp:pre:2s;ind:pre:3s; +exacerbent exacerber ver 0.33 1.42 0.01 0.20 ind:pre:3p; +exacerber exacerber ver 0.33 1.42 0.08 0.34 inf; +exacerbé exacerbé adj m s 0.19 1.15 0.04 0.47 +exacerbée exacerber ver f s 0.33 1.42 0.14 0.14 par:pas; +exacerbées exacerbé adj f p 0.19 1.15 0.02 0.20 +exacerbés exacerbé adj m p 0.19 1.15 0.12 0.00 +exact exact adj m s 86.80 38.58 76.66 19.86 +exacte exact adj f s 86.80 38.58 7.55 13.92 +exactement exactement adv 144.62 92.36 144.62 92.36 +exactes exact adj f p 86.80 38.58 1.08 2.97 +exaction exaction nom f s 0.32 1.69 0.01 0.00 +exactions exaction nom f p 0.32 1.69 0.31 1.69 +exactitude exactitude nom f s 1.26 5.00 1.26 4.93 +exactitudes exactitude nom f p 1.26 5.00 0.00 0.07 +exacts exact adj m p 86.80 38.58 1.51 1.82 +exagère exagérer ver 26.93 22.57 7.30 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exagèrent exagérer ver 26.93 22.57 0.60 0.47 ind:pre:3p; +exagères exagérer ver 26.93 22.57 7.75 1.89 ind:pre:2s; +exagéra exagérer ver 26.93 22.57 0.00 0.27 ind:pas:3s; +exagérai exagérer ver 26.93 22.57 0.00 0.07 ind:pas:1s; +exagéraient exagérer ver 26.93 22.57 0.02 0.07 ind:imp:3p; +exagérais exagérer ver 26.93 22.57 0.07 0.54 ind:imp:1s;ind:imp:2s; +exagérait exagérer ver 26.93 22.57 0.14 3.11 ind:imp:3s; +exagérant exagérer ver 26.93 22.57 0.15 0.68 par:pre; +exagération exagération nom f s 0.67 2.36 0.61 1.69 +exagérations exagération nom f p 0.67 2.36 0.06 0.68 +exagérer exagérer ver 26.93 22.57 2.86 3.85 inf; +exagérerais exagérer ver 26.93 22.57 0.00 0.07 cnd:pre:1s; +exagérerait exagérer ver 26.93 22.57 0.00 0.07 cnd:pre:3s; +exagérerons exagérer ver 26.93 22.57 0.01 0.00 ind:fut:1p; +exagérez exagérer ver 26.93 22.57 3.31 1.22 imp:pre:2p;ind:pre:2p; +exagérions exagérer ver 26.93 22.57 0.00 0.07 ind:imp:1p; +exagérons exagérer ver 26.93 22.57 1.53 1.76 imp:pre:1p;ind:pre:1p; +exagérèrent exagérer ver 26.93 22.57 0.00 0.07 ind:pas:3p; +exagéré exagérer ver m s 26.93 22.57 2.80 2.30 par:pas; +exagérée exagéré adj f s 2.56 4.53 0.65 1.49 +exagérées exagéré adj f p 2.56 4.53 0.17 0.34 +exagérément exagérément adv 0.26 3.38 0.26 3.38 +exagérés exagérer ver m p 26.93 22.57 0.08 0.14 par:pas; +exalta exalter ver 1.86 13.78 0.00 0.41 ind:pas:3s; +exaltai exalter ver 1.86 13.78 0.00 0.07 ind:pas:1s; +exaltaient exalter ver 1.86 13.78 0.00 1.01 ind:imp:3p; +exaltais exalter ver 1.86 13.78 0.00 0.34 ind:imp:1s; +exaltait exalter ver 1.86 13.78 0.00 3.51 ind:imp:3s; +exaltant exaltant adj m s 1.17 6.76 0.81 2.36 +exaltante exaltant adj f s 1.17 6.76 0.27 3.11 +exaltantes exaltant adj f p 1.17 6.76 0.04 0.68 +exaltants exaltant adj m p 1.17 6.76 0.05 0.61 +exaltation exaltation nom f s 0.98 16.22 0.98 15.00 +exaltations exaltation nom f p 0.98 16.22 0.00 1.22 +exalte exalter ver 1.86 13.78 0.49 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaltent exalter ver 1.86 13.78 0.12 0.47 ind:pre:3p; +exalter exalter ver 1.86 13.78 0.42 1.96 inf; +exalterait exalter ver 1.86 13.78 0.00 0.07 cnd:pre:3s; +exaltes exalter ver 1.86 13.78 0.00 0.14 ind:pre:2s; +exaltons exalter ver 1.86 13.78 0.00 0.07 ind:pre:1p; +exaltèrent exalter ver 1.86 13.78 0.00 0.07 ind:pas:3p; +exalté exalté adj m s 1.36 4.26 0.55 1.49 +exaltée exalté adj f s 1.36 4.26 0.55 2.03 +exaltées exalté adj f p 1.36 4.26 0.10 0.27 +exaltés exalté nom m p 0.56 2.23 0.27 0.34 +exam exam nom m s 3.08 0.00 2.06 0.00 +examen examen nom m s 47.77 27.16 30.37 18.31 +examens examen nom m p 47.77 27.16 17.40 8.85 +examina examiner ver 36.36 50.68 0.17 9.19 ind:pas:3s; +examinai examiner ver 36.36 50.68 0.03 0.68 ind:pas:1s; +examinaient examiner ver 36.36 50.68 0.14 1.69 ind:imp:3p; +examinais examiner ver 36.36 50.68 0.33 0.88 ind:imp:1s;ind:imp:2s; +examinait examiner ver 36.36 50.68 0.30 5.61 ind:imp:3s; +examinant examiner ver 36.36 50.68 0.64 5.00 par:pre; +examinateur examinateur nom m s 1.11 1.49 0.95 0.95 +examinateurs examinateur nom m p 1.11 1.49 0.16 0.47 +examinatrice examinateur nom f s 1.11 1.49 0.00 0.07 +examine examiner ver 36.36 50.68 3.94 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +examinent examiner ver 36.36 50.68 0.66 0.54 ind:pre:3p; +examiner examiner ver 36.36 50.68 16.47 14.19 inf; +examinera examiner ver 36.36 50.68 0.91 0.20 ind:fut:3s; +examinerai examiner ver 36.36 50.68 0.52 0.00 ind:fut:1s; +examineraient examiner ver 36.36 50.68 0.01 0.20 cnd:pre:3p; +examinerais examiner ver 36.36 50.68 0.03 0.00 cnd:pre:1s; +examinerait examiner ver 36.36 50.68 0.03 0.14 cnd:pre:3s; +examinerez examiner ver 36.36 50.68 0.04 0.00 ind:fut:2p; +examineriez examiner ver 36.36 50.68 0.01 0.00 cnd:pre:2p; +examinerons examiner ver 36.36 50.68 0.32 0.07 ind:fut:1p; +examineront examiner ver 36.36 50.68 0.06 0.07 ind:fut:3p; +examines examiner ver 36.36 50.68 0.12 0.07 ind:pre:2s; +examinez examiner ver 36.36 50.68 2.22 0.07 imp:pre:2p;ind:pre:2p; +examiniez examiner ver 36.36 50.68 0.29 0.00 ind:imp:2p; +examinions examiner ver 36.36 50.68 0.05 0.14 ind:imp:1p; +examinons examiner ver 36.36 50.68 1.57 0.47 imp:pre:1p;ind:pre:1p; +examinèrent examiner ver 36.36 50.68 0.00 0.47 ind:pas:3p; +examiné examiner ver m s 36.36 50.68 5.51 3.11 par:pas; +examinée examiner ver f s 36.36 50.68 1.30 0.88 par:pas; +examinées examiner ver f p 36.36 50.68 0.32 0.34 par:pas; +examinés examiner ver m p 36.36 50.68 0.39 0.41 par:pas; +exams exam nom m p 3.08 0.00 1.01 0.00 +exarque exarque nom m s 0.00 0.07 0.00 0.07 +exaspère exaspérer ver 2.31 19.66 0.93 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaspèrent exaspérer ver 2.31 19.66 0.07 0.54 ind:pre:3p; +exaspéra exaspérer ver 2.31 19.66 0.00 0.74 ind:pas:3s; +exaspéraient exaspérer ver 2.31 19.66 0.00 1.15 ind:imp:3p; +exaspérais exaspérer ver 2.31 19.66 0.00 0.20 ind:imp:1s; +exaspérait exaspérer ver 2.31 19.66 0.11 3.58 ind:imp:3s; +exaspérant exaspérant adj m s 0.64 2.43 0.32 1.15 +exaspérante exaspérant adj f s 0.64 2.43 0.19 1.01 +exaspérantes exaspérant adj f p 0.64 2.43 0.01 0.07 +exaspérants exaspérant adj m p 0.64 2.43 0.12 0.20 +exaspération exaspération nom f s 0.55 4.46 0.55 4.39 +exaspérations exaspération nom f p 0.55 4.46 0.00 0.07 +exaspérer exaspérer ver 2.31 19.66 0.52 1.96 inf; +exaspérera exaspérer ver 2.31 19.66 0.00 0.07 ind:fut:3s; +exaspéreraient exaspérer ver 2.31 19.66 0.00 0.07 cnd:pre:3p; +exaspérerait exaspérer ver 2.31 19.66 0.01 0.00 cnd:pre:3s; +exaspérez exaspérer ver 2.31 19.66 0.11 0.00 ind:pre:2p; +exaspérât exaspérer ver 2.31 19.66 0.00 0.07 sub:imp:3s; +exaspérèrent exaspérer ver 2.31 19.66 0.00 0.14 ind:pas:3p; +exaspéré exaspérer ver m s 2.31 19.66 0.52 5.34 par:pas; +exaspérée exaspérer ver f s 2.31 19.66 0.02 1.89 par:pas; +exaspérées exaspérer ver f p 2.31 19.66 0.00 0.47 par:pas; +exaspérés exaspérer ver m p 2.31 19.66 0.01 0.61 par:pas; +exauce exaucer ver 6.80 4.26 1.21 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaucement exaucement nom m s 0.00 0.07 0.00 0.07 +exaucent exaucer ver 6.80 4.26 0.03 0.00 ind:pre:3p; +exaucer exaucer ver 6.80 4.26 1.14 0.81 inf; +exaucera exaucer ver 6.80 4.26 0.16 0.00 ind:fut:3s; +exaucerai exaucer ver 6.80 4.26 0.17 0.00 ind:fut:1s; +exaucez exaucer ver 6.80 4.26 0.04 0.14 imp:pre:2p;ind:pre:2p; +exaucé exaucer ver m s 6.80 4.26 2.88 1.15 par:pas; +exaucée exaucer ver f s 6.80 4.26 0.27 0.68 par:pas; +exaucées exaucer ver f p 6.80 4.26 0.30 0.14 par:pas; +exaucés exaucer ver m p 6.80 4.26 0.51 0.41 par:pas; +exauça exaucer ver 6.80 4.26 0.00 0.07 ind:pas:3s; +exauçai exaucer ver 6.80 4.26 0.00 0.07 ind:pas:1s; +exauçaient exaucer ver 6.80 4.26 0.00 0.07 ind:imp:3p; +exauçant exaucer ver 6.80 4.26 0.06 0.07 par:pre; +exauçons exaucer ver 6.80 4.26 0.03 0.00 imp:pre:1p;ind:pre:1p; +exauçât exaucer ver 6.80 4.26 0.00 0.07 sub:imp:3s; +excavateur excavateur nom m s 0.04 0.14 0.02 0.07 +excavateurs excavateur nom m p 0.04 0.14 0.02 0.00 +excavation excavation nom f s 0.17 1.28 0.12 0.95 +excavations excavation nom f p 0.17 1.28 0.04 0.34 +excavatrice excavateur nom f s 0.04 0.14 0.00 0.07 +excaver excaver ver 0.04 0.07 0.03 0.00 inf; +excavée excaver ver f s 0.04 0.07 0.01 0.00 par:pas; +excavées excaver ver f p 0.04 0.07 0.00 0.07 par:pas; +excella exceller ver 2.38 3.78 0.00 0.07 ind:pas:3s; +excellaient exceller ver 2.38 3.78 0.00 0.41 ind:imp:3p; +excellais exceller ver 2.38 3.78 0.00 0.07 ind:imp:1s; +excellait exceller ver 2.38 3.78 0.08 1.28 ind:imp:3s; +excellant exceller ver 2.38 3.78 0.00 0.20 par:pre; +excelle exceller ver 2.38 3.78 0.85 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excellemment excellemment adv 0.16 0.07 0.16 0.07 +excellence excellence nom f s 23.29 17.43 22.73 17.09 +excellences excellence nom f p 23.29 17.43 0.56 0.34 +excellent excellent adj m s 76.43 33.92 46.87 16.01 +excellente excellent adj f s 76.43 33.92 21.04 11.76 +excellentes excellent adj f p 76.43 33.92 4.28 2.91 +excellentissime excellentissime adj s 0.01 0.07 0.01 0.07 +excellents excellent adj m p 76.43 33.92 4.25 3.24 +exceller exceller ver 2.38 3.78 0.16 0.41 inf; +excelleraient exceller ver 2.38 3.78 0.00 0.07 cnd:pre:3p; +excelles exceller ver 2.38 3.78 0.07 0.00 ind:pre:2s; +excellez exceller ver 2.38 3.78 0.09 0.00 ind:pre:2p; +excellé exceller ver m s 2.38 3.78 0.31 0.00 par:pas; +excentrer excentrer ver 0.02 0.00 0.01 0.00 inf; +excentricité excentricité nom f s 0.39 1.55 0.29 0.95 +excentricités excentricité nom f p 0.39 1.55 0.10 0.61 +excentrique excentrique adj s 2.34 2.09 1.97 1.35 +excentriques excentrique adj p 2.34 2.09 0.37 0.74 +excentré excentré adj m s 0.05 0.00 0.04 0.00 +excentrée excentré adj f s 0.05 0.00 0.01 0.00 +exceptais excepter ver 0.72 2.64 0.00 0.07 ind:imp:1s; +exceptait excepter ver 0.72 2.64 0.00 0.14 ind:imp:3s; +exceptant excepter ver 0.72 2.64 0.00 0.14 par:pre; +excepte excepter ver 0.72 2.64 0.23 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excepter excepter ver 0.72 2.64 0.00 0.41 inf; +exceptes excepter ver 0.72 2.64 0.00 0.07 ind:pre:2s; +exception exception nom f s 15.97 24.80 14.32 20.41 +exceptionnel exceptionnel adj m s 16.68 20.07 9.72 6.89 +exceptionnelle exceptionnel adj f s 16.68 20.07 3.47 8.24 +exceptionnellement exceptionnellement adv 1.03 4.19 1.03 4.19 +exceptionnelles exceptionnel adj f p 16.68 20.07 1.78 3.04 +exceptionnels exceptionnel adj m p 16.68 20.07 1.71 1.89 +exceptions exception nom f p 15.97 24.80 1.65 4.39 +excepté excepté pre 5.59 4.05 5.59 4.05 +exceptée excepté adj f s 0.34 0.68 0.24 0.27 +exceptées excepté adj f p 0.34 0.68 0.01 0.00 +exceptés excepté adj m p 0.34 0.68 0.04 0.20 +excessif excessif adj m s 4.79 15.54 2.05 5.68 +excessifs excessif adj m p 4.79 15.54 0.35 1.28 +excessive excessif adj f s 4.79 15.54 2.29 7.09 +excessivement excessivement adv 1.14 3.11 1.14 3.11 +excessives excessif adj f p 4.79 15.54 0.09 1.49 +excipent exciper ver 0.00 0.27 0.00 0.07 ind:pre:3p; +exciper exciper ver 0.00 0.27 0.00 0.20 inf; +excisant exciser ver 0.16 0.41 0.02 0.00 par:pre; +excise exciser ver 0.16 0.41 0.05 0.00 ind:pre:1s;ind:pre:3s; +exciser exciser ver 0.16 0.41 0.05 0.27 inf; +exciseuse exciseur nom f s 0.00 0.20 0.00 0.14 +exciseuses exciseur nom f p 0.00 0.20 0.00 0.07 +excision excision nom f s 0.08 0.81 0.08 0.81 +excisé exciser ver m s 0.16 0.41 0.01 0.00 par:pas; +excisée exciser ver f s 0.16 0.41 0.01 0.00 par:pas; +excisées exciser ver f p 0.16 0.41 0.01 0.14 par:pas; +excita exciter ver 28.01 26.55 0.00 0.61 ind:pas:3s; +excitable excitable adj m s 0.03 0.00 0.03 0.00 +excitaient exciter ver 28.01 26.55 0.17 1.55 ind:imp:3p; +excitais exciter ver 28.01 26.55 0.03 0.07 ind:imp:1s;ind:imp:2s; +excitait exciter ver 28.01 26.55 0.79 4.80 ind:imp:3s; +excitant excitant adj m s 16.14 7.36 12.44 3.92 +excitante excitant adj f s 16.14 7.36 2.83 2.30 +excitantes excitant adj f p 16.14 7.36 0.60 0.47 +excitants excitant adj m p 16.14 7.36 0.27 0.68 +excitation excitation nom f s 3.81 16.69 3.81 16.55 +excitations excitation nom f p 3.81 16.69 0.00 0.14 +excite exciter ver 28.01 26.55 10.38 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excitent exciter ver 28.01 26.55 1.28 1.15 ind:pre:3p; +exciter exciter ver 28.01 26.55 2.60 5.81 inf; +excitera exciter ver 28.01 26.55 0.15 0.20 ind:fut:3s; +exciterait exciter ver 28.01 26.55 0.81 0.34 cnd:pre:3s; +exciterez exciter ver 28.01 26.55 0.00 0.07 ind:fut:2p; +exciteriez exciter ver 28.01 26.55 0.00 0.07 cnd:pre:2p; +exciteront exciter ver 28.01 26.55 0.02 0.07 ind:fut:3p; +excites exciter ver 28.01 26.55 1.59 0.47 ind:pre:2s; +exciteur exciteur nom m s 0.00 0.07 0.00 0.07 +excitez exciter ver 28.01 26.55 0.64 0.20 imp:pre:2p;ind:pre:2p; +excitions exciter ver 28.01 26.55 0.00 0.07 ind:imp:1p; +excitons exciter ver 28.01 26.55 0.01 0.07 imp:pre:1p;ind:pre:1p;; +excitèrent exciter ver 28.01 26.55 0.00 0.14 ind:pas:3p; +excité exciter ver m s 28.01 26.55 5.17 2.36 par:pas; +excitée exciter ver f s 28.01 26.55 3.17 1.15 par:pas; +excitées excité adj f p 6.88 6.96 0.10 0.47 +excités exciter ver m p 28.01 26.55 0.86 0.74 par:pas; +exclût exclure ver 11.32 16.22 0.00 0.07 sub:imp:3s; +exclama exclamer ver 0.26 18.99 0.01 8.04 ind:pas:3s; +exclamai exclamer ver 0.26 18.99 0.00 0.20 ind:pas:1s; +exclamaient exclamer ver 0.26 18.99 0.01 0.54 ind:imp:3p; +exclamais exclamer ver 0.26 18.99 0.00 0.07 ind:imp:1s; +exclamait exclamer ver 0.26 18.99 0.00 1.62 ind:imp:3s; +exclamant exclamer ver 0.26 18.99 0.01 0.47 par:pre; +exclamatif exclamatif adj m s 0.01 0.14 0.00 0.07 +exclamation exclamation nom f s 1.27 11.76 1.11 5.27 +exclamations exclamation nom f p 1.27 11.76 0.16 6.49 +exclamative exclamatif adj f s 0.01 0.14 0.01 0.07 +exclame exclamer ver 0.26 18.99 0.03 3.72 ind:pre:3s; +exclament exclamer ver 0.26 18.99 0.14 0.34 ind:pre:3p; +exclamer exclamer ver 0.26 18.99 0.03 1.49 inf; +exclameraient exclamer ver 0.26 18.99 0.00 0.07 cnd:pre:3p; +exclamerait exclamer ver 0.26 18.99 0.00 0.14 cnd:pre:3s; +exclamâmes exclamer ver 0.26 18.99 0.00 0.14 ind:pas:1p; +exclamèrent exclamer ver 0.26 18.99 0.00 0.27 ind:pas:3p; +exclamé exclamer ver m s 0.26 18.99 0.02 1.08 par:pas; +exclamée exclamer ver f s 0.26 18.99 0.01 0.81 par:pas; +exclu exclure ver m s 11.32 16.22 3.21 3.31 par:pas; +excluaient exclure ver 11.32 16.22 0.00 0.81 ind:imp:3p; +excluais exclure ver 11.32 16.22 0.02 0.20 ind:imp:1s; +excluait exclure ver 11.32 16.22 0.02 2.77 ind:imp:3s; +excluant exclure ver 11.32 16.22 0.12 1.15 par:pre; +exclue exclure ver f s 11.32 16.22 1.10 1.62 par:pas;sub:pre:1s;sub:pre:3s; +excluent exclure ver 11.32 16.22 0.54 0.20 ind:pre:3p; +exclues exclure ver f p 11.32 16.22 0.41 0.14 par:pas;sub:pre:2s; +excluez exclure ver 11.32 16.22 0.16 0.00 imp:pre:2p;ind:pre:2p; +excluions exclure ver 11.32 16.22 0.00 0.07 ind:imp:1p; +excluons exclure ver 11.32 16.22 0.19 0.00 imp:pre:1p;ind:pre:1p; +exclura exclure ver 11.32 16.22 0.01 0.14 ind:fut:3s; +exclurais exclure ver 11.32 16.22 0.23 0.00 cnd:pre:1s; +exclure exclure ver 11.32 16.22 2.17 2.50 inf; +exclus exclure ver m p 11.32 16.22 1.14 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:2s;par:pas; +exclusif exclusif adj m s 3.35 7.43 1.47 3.38 +exclusifs exclusif adj m p 3.35 7.43 0.46 0.20 +exclusion exclusion nom f s 1.02 3.92 1.02 3.72 +exclusions exclusion nom f p 1.02 3.92 0.00 0.20 +exclusive exclusif adj f s 3.35 7.43 1.32 2.97 +exclusivement exclusivement adv 2.05 10.34 2.05 10.34 +exclusives exclusif adj f p 3.35 7.43 0.10 0.88 +exclusivité exclusivité nom f s 3.21 2.16 3.06 2.03 +exclusivités exclusivité nom f p 3.21 2.16 0.15 0.14 +exclut exclure ver 11.32 16.22 2.02 1.62 ind:pre:3s;ind:pas:3s; +excommuniaient excommunier ver 0.80 1.82 0.00 0.07 ind:imp:3p; +excommuniait excommunier ver 0.80 1.82 0.00 0.07 ind:imp:3s; +excommuniant excommunier ver 0.80 1.82 0.00 0.07 par:pre; +excommunication excommunication nom f s 0.82 1.28 0.72 1.15 +excommunications excommunication nom f p 0.82 1.28 0.10 0.14 +excommunie excommunier ver 0.80 1.82 0.11 0.14 ind:pre:1s;ind:pre:3s; +excommunient excommunier ver 0.80 1.82 0.00 0.07 ind:pre:3p; +excommunier excommunier ver 0.80 1.82 0.19 0.34 inf; +excommuniez excommunier ver 0.80 1.82 0.00 0.07 imp:pre:2p; +excommunié excommunier ver m s 0.80 1.82 0.33 0.68 par:pas; +excommuniée excommunier ver f s 0.80 1.82 0.05 0.00 par:pas; +excommuniés excommunier ver m p 0.80 1.82 0.12 0.34 par:pas; +excoriée excorier ver f s 0.00 0.14 0.00 0.07 par:pas; +excoriées excorier ver f p 0.00 0.14 0.00 0.07 par:pas; +excroissance excroissance nom f s 0.38 1.55 0.24 0.81 +excroissances excroissance nom f p 0.38 1.55 0.14 0.74 +excrément excrément nom m s 1.83 3.99 0.36 0.61 +excrémentiel excrémentiel adj m s 0.00 0.14 0.00 0.07 +excrémentielle excrémentiel adj f s 0.00 0.14 0.00 0.07 +excréments excrément nom m p 1.83 3.99 1.48 3.38 +excréter excréter ver 0.04 0.07 0.02 0.00 inf; +excrétera excréter ver 0.04 0.07 0.01 0.00 ind:fut:3s; +excrétion excrétion nom f s 0.06 0.14 0.01 0.00 +excrétions excrétion nom f p 0.06 0.14 0.04 0.14 +excrété excréter ver m s 0.04 0.07 0.01 0.07 par:pas; +excède excéder ver 0.65 9.80 0.10 0.34 ind:pre:3s; +excèdent excéder ver 0.65 9.80 0.05 0.20 ind:pre:3p; +excès excès nom m 7.67 22.23 7.67 22.23 +excédaient excéder ver 0.65 9.80 0.00 0.54 ind:imp:3p; +excédais excéder ver 0.65 9.80 0.00 0.07 ind:imp:1s; +excédait excéder ver 0.65 9.80 0.02 0.41 ind:imp:3s; +excédant excédant adj m s 0.13 0.14 0.13 0.14 +excédent excédent nom m s 0.87 0.74 0.76 0.54 +excédentaire excédentaire adj m s 0.06 0.20 0.04 0.14 +excédentaires excédentaire adj m p 0.06 0.20 0.01 0.07 +excédents excédent nom m p 0.87 0.74 0.11 0.20 +excéder excéder ver 0.65 9.80 0.16 0.27 inf; +excédera excéder ver 0.65 9.80 0.01 0.00 ind:fut:3s; +excédât excéder ver 0.65 9.80 0.00 0.07 sub:imp:3s; +excédé excéder ver m s 0.65 9.80 0.21 5.20 par:pas; +excédée excéder ver f s 0.65 9.80 0.03 1.89 par:pas; +excédées excéder ver f p 0.65 9.80 0.00 0.07 par:pas; +excédés excéder ver m p 0.65 9.80 0.02 0.20 par:pas; +excursion excursion nom f s 3.67 4.59 3.09 3.04 +excursionnaient excursionner ver 0.00 0.20 0.00 0.07 ind:imp:3p; +excursionnant excursionner ver 0.00 0.20 0.00 0.07 par:pre; +excursionner excursionner ver 0.00 0.20 0.00 0.07 inf; +excursionniste excursionniste nom s 0.04 0.14 0.04 0.00 +excursionnistes excursionniste nom p 0.04 0.14 0.00 0.14 +excursions excursion nom f p 3.67 4.59 0.58 1.55 +excusa excuser ver 399.18 61.82 0.02 3.45 ind:pas:3s; +excusable excusable adj s 0.40 1.62 0.39 1.55 +excusables excusable adj m p 0.40 1.62 0.01 0.07 +excusai excuser ver 399.18 61.82 0.00 0.34 ind:pas:1s; +excusaient excuser ver 399.18 61.82 0.00 0.47 ind:imp:3p; +excusais excuser ver 399.18 61.82 0.11 0.14 ind:imp:1s;ind:imp:2s; +excusait excuser ver 399.18 61.82 0.16 3.45 ind:imp:3s; +excusant excuser ver 399.18 61.82 0.21 3.18 par:pre; +excuse excuser ver 399.18 61.82 111.82 14.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +excusent excuser ver 399.18 61.82 0.30 0.34 ind:pre:1p;ind:pre:3p; +excuser excuser ver 399.18 61.82 43.00 12.03 inf; +excusera excuser ver 399.18 61.82 0.41 0.41 ind:fut:3s; +excuserai excuser ver 399.18 61.82 0.49 0.14 ind:fut:1s; +excuserais excuser ver 399.18 61.82 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +excuserait excuser ver 399.18 61.82 0.06 0.27 cnd:pre:3s; +excuseras excuser ver 399.18 61.82 0.80 1.15 ind:fut:2s; +excuserez excuser ver 399.18 61.82 2.34 1.28 ind:fut:2p; +excuseriez excuser ver 399.18 61.82 0.02 0.00 cnd:pre:2p; +excuserons excuser ver 399.18 61.82 0.01 0.14 ind:fut:1p; +excuseront excuser ver 399.18 61.82 0.18 0.00 ind:fut:3p; +excuses excuse nom f p 61.58 23.51 32.15 12.23 +excusez excuser ver 399.18 61.82 230.25 16.08 imp:pre:2p;ind:pre:2p; +excusiez excuser ver 399.18 61.82 0.09 0.07 ind:imp:2p; +excusions excuser ver 399.18 61.82 0.00 0.07 ind:imp:1p; +excusâmes excuser ver 399.18 61.82 0.00 0.07 ind:pas:1p; +excusons excuser ver 399.18 61.82 0.48 0.14 imp:pre:1p;ind:pre:1p; +excusât excuser ver 399.18 61.82 0.00 0.41 sub:imp:3s; +excusèrent excuser ver 399.18 61.82 0.00 0.20 ind:pas:3p; +excusé excuser ver m s 399.18 61.82 4.25 1.89 par:pas; +excusée excuser ver f s 399.18 61.82 0.72 0.47 par:pas; +excusées excuser ver f p 399.18 61.82 0.04 0.07 par:pas; +excusés excuser ver m p 399.18 61.82 0.22 0.20 par:pas; +exeat exeat nom m 0.01 0.27 0.01 0.27 +exemplaire exemplaire adj s 4.42 9.12 4.06 7.57 +exemplairement exemplairement adv 0.10 0.07 0.10 0.07 +exemplaires exemplaire nom m p 6.32 14.26 2.52 7.57 +exemplarité exemplarité nom f s 0.01 0.00 0.01 0.00 +exemple exemple nom m s 93.20 126.62 91.83 119.19 +exemples exemple nom m p 93.20 126.62 1.38 7.43 +exemplifier exemplifier ver 0.10 0.00 0.10 0.00 inf; +exempt exempt adj m s 0.28 1.96 0.12 1.15 +exempte exempt adj f s 0.28 1.96 0.09 0.27 +exempter exempter ver 1.16 0.54 0.22 0.07 inf; +exemptes exempt adj f p 0.28 1.96 0.02 0.27 +exemptiez exempter ver 1.16 0.54 0.01 0.00 ind:imp:2p; +exemption exemption nom f s 0.60 0.68 0.54 0.20 +exemptions exemption nom f p 0.60 0.68 0.06 0.47 +exempts exempt adj m p 0.28 1.96 0.05 0.27 +exempté exempter ver m s 1.16 0.54 0.52 0.14 par:pas; +exemptée exempter ver f s 1.16 0.54 0.05 0.14 par:pas; +exemptés exempter ver m p 1.16 0.54 0.28 0.00 par:pas; +exequatur exequatur nom m 0.00 0.07 0.00 0.07 +exerce exercer ver 14.53 44.26 3.82 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exercent exercer ver 14.53 44.26 0.60 1.55 ind:pre:3p; +exercer exercer ver 14.53 44.26 5.67 14.39 inf; +exercera exercer ver 14.53 44.26 0.07 0.20 ind:fut:3s; +exercerai exercer ver 14.53 44.26 0.10 0.14 ind:fut:1s; +exerceraient exercer ver 14.53 44.26 0.00 0.14 cnd:pre:3p; +exercerais exercer ver 14.53 44.26 0.01 0.07 cnd:pre:1s; +exercerait exercer ver 14.53 44.26 0.05 0.41 cnd:pre:3s; +exercerez exercer ver 14.53 44.26 0.14 0.14 ind:fut:2p; +exercerons exercer ver 14.53 44.26 0.01 0.07 ind:fut:1p; +exerceront exercer ver 14.53 44.26 0.02 0.14 ind:fut:3p; +exerces exercer ver 14.53 44.26 0.20 0.14 ind:pre:2s; +exercez exercer ver 14.53 44.26 0.86 0.27 imp:pre:2p;ind:pre:2p; +exercice exercice nom m s 22.66 27.36 17.54 17.50 +exercices exercice nom m p 22.66 27.36 5.12 9.86 +exerciez exercer ver 14.53 44.26 0.24 0.07 ind:imp:2p; +exercèrent exercer ver 14.53 44.26 0.00 0.07 ind:pas:3p; +exercé exercer ver m s 14.53 44.26 0.96 2.97 par:pas; +exercée exercer ver f s 14.53 44.26 0.56 2.03 par:pas; +exercées exercer ver f p 14.53 44.26 0.05 0.47 par:pas; +exercés exercer ver m p 14.53 44.26 0.20 0.68 par:pas; +exergue exergue nom m s 0.22 0.68 0.22 0.68 +exerça exercer ver 14.53 44.26 0.02 0.81 ind:pas:3s; +exerçai exercer ver 14.53 44.26 0.01 0.34 ind:pas:1s; +exerçaient exercer ver 14.53 44.26 0.04 1.89 ind:imp:3p; +exerçais exercer ver 14.53 44.26 0.12 0.74 ind:imp:1s;ind:imp:2s; +exerçait exercer ver 14.53 44.26 0.31 7.03 ind:imp:3s; +exerçant exercer ver 14.53 44.26 0.44 1.89 par:pre; +exerçassent exercer ver 14.53 44.26 0.00 0.07 sub:imp:3p; +exerçons exercer ver 14.53 44.26 0.04 0.20 imp:pre:1p;ind:pre:1p; +exerçât exercer ver 14.53 44.26 0.00 0.68 sub:imp:3s; +exfiltration exfiltration nom f s 0.04 0.07 0.04 0.07 +exfiltrer exfiltrer ver 0.05 0.00 0.03 0.00 inf; +exfiltré exfiltrer ver m s 0.05 0.00 0.02 0.00 par:pas; +exfoliant exfoliant adj m s 0.08 0.00 0.08 0.00 +exfolier exfolier ver 0.01 0.14 0.01 0.00 inf; +exfolions exfolier ver 0.01 0.14 0.00 0.07 ind:pre:1p; +exfoliée exfolier ver f s 0.01 0.14 0.00 0.07 par:pas; +exhala exhaler ver 0.80 10.81 0.03 0.81 ind:pas:3s; +exhalaient exhaler ver 0.80 10.81 0.00 0.47 ind:imp:3p; +exhalaison exhalaison nom f s 0.02 1.69 0.00 0.88 +exhalaisons exhalaison nom f p 0.02 1.69 0.02 0.81 +exhalait exhaler ver 0.80 10.81 0.16 2.50 ind:imp:3s; +exhalant exhaler ver 0.80 10.81 0.00 2.64 par:pre; +exhalation exhalation nom f s 0.01 0.00 0.01 0.00 +exhale exhaler ver 0.80 10.81 0.32 1.76 imp:pre:2s;ind:pre:3s; +exhalent exhaler ver 0.80 10.81 0.01 0.47 ind:pre:3p; +exhaler exhaler ver 0.80 10.81 0.27 1.08 inf; +exhaleraient exhaler ver 0.80 10.81 0.00 0.07 cnd:pre:3p; +exhalâmes exhaler ver 0.80 10.81 0.00 0.07 ind:pas:1p; +exhalât exhaler ver 0.80 10.81 0.00 0.14 sub:imp:3s; +exhalé exhaler ver m s 0.80 10.81 0.00 0.47 par:pas; +exhalée exhaler ver f s 0.80 10.81 0.00 0.34 par:pas; +exhaussait exhausser ver 0.03 0.47 0.00 0.07 ind:imp:3s; +exhausse exhausser ver 0.03 0.47 0.00 0.20 ind:pre:3s; +exhaussement exhaussement nom m s 0.00 0.07 0.00 0.07 +exhausser exhausser ver 0.03 0.47 0.00 0.07 inf; +exhaussé exhausser ver m s 0.03 0.47 0.01 0.07 par:pas; +exhaussée exhausser ver f s 0.03 0.47 0.01 0.07 par:pas; +exhaustif exhaustif adj m s 0.61 0.54 0.30 0.41 +exhaustifs exhaustif adj m p 0.61 0.54 0.02 0.00 +exhaustion exhaustion nom f s 0.00 0.34 0.00 0.34 +exhaustive exhaustif adj f s 0.61 0.54 0.29 0.14 +exhaustivement exhaustivement adv 0.00 0.14 0.00 0.14 +exhaustivité exhaustivité nom f s 0.00 0.07 0.00 0.07 +exhiba exhiber ver 2.87 13.31 0.00 0.61 ind:pas:3s; +exhibai exhiber ver 2.87 13.31 0.00 0.14 ind:pas:1s; +exhibaient exhiber ver 2.87 13.31 0.01 0.61 ind:imp:3p; +exhibais exhiber ver 2.87 13.31 0.03 0.00 ind:imp:2s; +exhibait exhiber ver 2.87 13.31 0.16 2.03 ind:imp:3s; +exhibant exhiber ver 2.87 13.31 0.16 1.69 par:pre; +exhibe exhiber ver 2.87 13.31 0.58 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exhibent exhiber ver 2.87 13.31 0.05 0.74 ind:pre:3p; +exhiber exhiber ver 2.87 13.31 0.98 3.78 inf; +exhibera exhiber ver 2.87 13.31 0.20 0.07 ind:fut:3s; +exhiberait exhiber ver 2.87 13.31 0.01 0.14 cnd:pre:3s; +exhiberas exhiber ver 2.87 13.31 0.00 0.07 ind:fut:2s; +exhibez exhiber ver 2.87 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +exhibions exhiber ver 2.87 13.31 0.01 0.07 ind:imp:1p; +exhibition exhibition nom f s 0.44 2.77 0.36 2.09 +exhibitionnisme exhibitionnisme nom m s 0.20 0.81 0.20 0.81 +exhibitionniste exhibitionniste nom s 1.08 1.55 0.85 1.01 +exhibitionnistes exhibitionniste nom p 1.08 1.55 0.23 0.54 +exhibitions exhibition nom f p 0.44 2.77 0.08 0.68 +exhibé exhiber ver m s 2.87 13.31 0.30 1.15 par:pas; +exhibée exhiber ver f s 2.87 13.31 0.32 0.20 par:pas; +exhibées exhiber ver f p 2.87 13.31 0.00 0.20 par:pas; +exhibés exhiber ver m p 2.87 13.31 0.02 0.34 par:pas; +exhorta exhorter ver 0.66 3.51 0.00 0.68 ind:pas:3s; +exhortai exhorter ver 0.66 3.51 0.00 0.07 ind:pas:1s; +exhortaient exhorter ver 0.66 3.51 0.02 0.07 ind:imp:3p; +exhortais exhorter ver 0.66 3.51 0.00 0.34 ind:imp:1s; +exhortait exhorter ver 0.66 3.51 0.01 0.54 ind:imp:3s; +exhortant exhorter ver 0.66 3.51 0.01 0.27 par:pre; +exhortation exhortation nom f s 0.13 1.69 0.02 0.47 +exhortations exhortation nom f p 0.13 1.69 0.11 1.22 +exhorte exhorter ver 0.66 3.51 0.34 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exhortent exhorter ver 0.66 3.51 0.01 0.14 ind:pre:3p; +exhorter exhorter ver 0.66 3.51 0.06 0.54 inf; +exhortions exhorter ver 0.66 3.51 0.00 0.07 ind:imp:1p; +exhortâmes exhorter ver 0.66 3.51 0.00 0.07 ind:pas:1p; +exhortons exhorter ver 0.66 3.51 0.04 0.00 ind:pre:1p; +exhorté exhorter ver m s 0.66 3.51 0.17 0.07 par:pas; +exhuma exhumer ver 1.62 3.85 0.00 0.14 ind:pas:3s; +exhumaient exhumer ver 1.62 3.85 0.00 0.20 ind:imp:3p; +exhumais exhumer ver 1.62 3.85 0.00 0.07 ind:imp:1s; +exhumait exhumer ver 1.62 3.85 0.02 0.07 ind:imp:3s; +exhumant exhumer ver 1.62 3.85 0.01 0.14 par:pre; +exhumation exhumation nom f s 0.30 0.27 0.30 0.27 +exhume exhumer ver 1.62 3.85 0.07 0.34 imp:pre:2s;ind:pre:3s; +exhumer exhumer ver 1.62 3.85 0.81 0.88 inf; +exhumera exhumer ver 1.62 3.85 0.02 0.07 ind:fut:3s; +exhumeront exhumer ver 1.62 3.85 0.00 0.07 ind:fut:3p; +exhumé exhumer ver m s 1.62 3.85 0.41 0.95 par:pas; +exhumée exhumer ver f s 1.62 3.85 0.04 0.27 par:pas; +exhumées exhumer ver f p 1.62 3.85 0.01 0.20 par:pas; +exhumés exhumer ver m p 1.62 3.85 0.22 0.47 par:pas; +exige exiger ver 34.96 60.07 18.93 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exigea exiger ver 34.96 60.07 0.05 1.96 ind:pas:3s; +exigeai exiger ver 34.96 60.07 0.00 0.34 ind:pas:1s; +exigeaient exiger ver 34.96 60.07 0.05 3.04 ind:imp:3p; +exigeais exiger ver 34.96 60.07 0.04 0.41 ind:imp:1s; +exigeait exiger ver 34.96 60.07 1.21 13.11 ind:imp:3s; +exigeant exigeant adj m s 3.79 7.84 1.77 2.97 +exigeante exigeant adj f s 3.79 7.84 1.59 3.18 +exigeantes exigeant adj f p 3.79 7.84 0.14 0.41 +exigeants exigeant adj m p 3.79 7.84 0.28 1.28 +exigeassent exiger ver 34.96 60.07 0.00 0.14 sub:imp:3p; +exigence exigence nom f s 5.17 17.36 1.22 5.14 +exigences exigence nom f p 5.17 17.36 3.96 12.23 +exigent exiger ver 34.96 60.07 2.80 2.97 ind:pre:3p; +exigeons exiger ver 34.96 60.07 1.21 0.14 imp:pre:1p;ind:pre:1p; +exiger exiger ver 34.96 60.07 3.13 8.11 inf; +exigera exiger ver 34.96 60.07 0.26 0.88 ind:fut:3s; +exigerai exiger ver 34.96 60.07 0.25 0.20 ind:fut:1s; +exigeraient exiger ver 34.96 60.07 0.00 0.27 cnd:pre:3p; +exigerais exiger ver 34.96 60.07 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +exigerait exiger ver 34.96 60.07 0.14 1.01 cnd:pre:3s; +exigerez exiger ver 34.96 60.07 0.03 0.14 ind:fut:2p; +exigeriez exiger ver 34.96 60.07 0.02 0.00 cnd:pre:2p; +exigerions exiger ver 34.96 60.07 0.01 0.00 cnd:pre:1p; +exigerons exiger ver 34.96 60.07 0.13 0.00 ind:fut:1p; +exigeront exiger ver 34.96 60.07 0.21 0.14 ind:fut:3p; +exiges exiger ver 34.96 60.07 0.61 0.20 ind:pre:2s; +exigez exiger ver 34.96 60.07 0.61 0.41 imp:pre:2p;ind:pre:2p; +exigible exigible adj m s 0.01 0.07 0.01 0.07 +exigiez exiger ver 34.96 60.07 0.16 0.00 ind:imp:2p; +exigèrent exiger ver 34.96 60.07 0.00 0.14 ind:pas:3p; +exigu exigu adj m s 0.53 4.66 0.38 1.89 +exigé exiger ver m s 34.96 60.07 3.58 6.49 par:pas; +exiguïté exiguïté nom f s 0.00 1.76 0.00 1.76 +exigée exiger ver f s 34.96 60.07 0.56 1.01 par:pas; +exigées exiger ver f p 34.96 60.07 0.17 0.07 par:pas; +exigus exigu adj m p 0.53 4.66 0.00 0.41 +exigés exiger ver m p 34.96 60.07 0.01 0.47 par:pas; +exiguë exigu adj f s 0.53 4.66 0.12 1.69 +exiguës exigu adj f p 0.53 4.66 0.02 0.68 +exil exil nom m s 6.04 13.99 5.91 13.58 +exila exiler ver 2.41 4.32 0.04 0.20 ind:pas:3s; +exilaient exiler ver 2.41 4.32 0.00 0.07 ind:imp:3p; +exilait exiler ver 2.41 4.32 0.00 0.14 ind:imp:3s; +exilant exiler ver 2.41 4.32 0.00 0.07 par:pre; +exile exiler ver 2.41 4.32 0.43 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exilent exiler ver 2.41 4.32 0.00 0.07 ind:pre:3p; +exiler exiler ver 2.41 4.32 0.73 0.61 inf; +exiles exiler ver 2.41 4.32 0.14 0.00 ind:pre:2s; +exilez exiler ver 2.41 4.32 0.01 0.00 imp:pre:2p; +exilât exiler ver 2.41 4.32 0.00 0.07 sub:imp:3s; +exils exil nom m p 6.04 13.99 0.14 0.41 +exilé exilé nom m s 2.23 4.05 0.88 1.62 +exilée exilé nom f s 2.23 4.05 0.25 0.34 +exilées exilé adj f p 0.50 1.89 0.00 0.14 +exilés exilé nom m p 2.23 4.05 1.12 2.03 +exista exister ver 136.24 148.18 0.00 0.41 ind:pas:3s; +existai exister ver 136.24 148.18 0.00 0.07 ind:pas:1s; +existaient exister ver 136.24 148.18 1.88 7.16 ind:imp:3p; +existais exister ver 136.24 148.18 2.05 2.36 ind:imp:1s;ind:imp:2s; +existait exister ver 136.24 148.18 9.58 32.57 ind:imp:3s; +existant existant adj m s 1.43 2.03 0.19 0.54 +existante existant adj f s 1.43 2.03 0.48 0.41 +existantes existant adj f p 1.43 2.03 0.23 0.54 +existants existant adj m p 1.43 2.03 0.52 0.54 +existe exister ver 136.24 148.18 85.86 57.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +existence existence nom f s 24.98 97.36 24.66 93.85 +existences existence nom f p 24.98 97.36 0.33 3.51 +existent exister ver 136.24 148.18 10.74 8.24 ind:pre:3p; +existentialisme existentialisme nom m s 0.07 0.61 0.07 0.61 +existentialiste existentialiste adj m s 0.06 0.20 0.05 0.07 +existentialistes existentialiste nom p 0.03 0.34 0.02 0.27 +existentiel existentiel adj m s 0.35 0.88 0.14 0.20 +existentielle existentiel adj f s 0.35 0.88 0.13 0.54 +existentielles existentiel adj f p 0.35 0.88 0.08 0.14 +exister exister ver 136.24 148.18 8.62 20.20 inf; +existera exister ver 136.24 148.18 1.52 0.41 ind:fut:3s; +existerai exister ver 136.24 148.18 0.05 0.20 ind:fut:1s; +existeraient exister ver 136.24 148.18 0.07 0.20 cnd:pre:3p; +existerais exister ver 136.24 148.18 0.47 0.14 cnd:pre:1s;cnd:pre:2s; +existerait exister ver 136.24 148.18 0.97 0.95 cnd:pre:3s; +existeras exister ver 136.24 148.18 0.20 0.00 ind:fut:2s; +existeriez exister ver 136.24 148.18 0.11 0.00 cnd:pre:2p; +existerions exister ver 136.24 148.18 0.15 0.00 cnd:pre:1p; +existerons exister ver 136.24 148.18 0.03 0.00 ind:fut:1p; +existeront exister ver 136.24 148.18 0.15 0.20 ind:fut:3p; +existes exister ver 136.24 148.18 3.56 1.08 ind:pre:2s;sub:pre:2s; +existez exister ver 136.24 148.18 1.46 0.41 imp:pre:2p;ind:pre:2p; +existiez exister ver 136.24 148.18 0.41 0.14 ind:imp:2p; +existions exister ver 136.24 148.18 0.12 0.27 ind:imp:1p; +existons exister ver 136.24 148.18 0.60 0.41 imp:pre:1p;ind:pre:1p; +existât exister ver 136.24 148.18 0.00 1.55 sub:imp:3s; +existèrent exister ver 136.24 148.18 0.00 0.27 ind:pas:3p; +existé exister ver m s 136.24 148.18 7.42 11.42 par:pas; +existée exister ver f s 136.24 148.18 0.03 0.00 par:pas; +existés exister ver m p 136.24 148.18 0.04 0.00 par:pas; +exit exit ver 0.20 0.27 0.20 0.27 inf; +exo exo nom m s 0.11 0.27 0.04 0.20 +exobiologie exobiologie nom f s 0.02 0.00 0.02 0.00 +exocet exocet nom m s 0.01 0.00 0.01 0.00 +exode exode nom m s 0.43 4.53 0.42 4.32 +exodes exode nom m p 0.43 4.53 0.01 0.20 +exogamie exogamie nom f s 0.00 0.41 0.00 0.41 +exogamique exogamique adj m s 0.00 0.27 0.00 0.27 +exogène exogène adj f s 0.01 0.00 0.01 0.00 +exonérait exonérer ver 0.08 0.20 0.00 0.07 ind:imp:3s; +exonération exonération nom f s 0.25 0.00 0.25 0.00 +exonérer exonérer ver 0.08 0.20 0.06 0.07 inf; +exonérera exonérer ver 0.08 0.20 0.01 0.00 ind:fut:3s; +exonérées exonérer ver f p 0.08 0.20 0.01 0.07 par:pas; +exophtalmique exophtalmique adj m s 0.00 0.07 0.00 0.07 +exorable exorable adj s 0.00 0.14 0.00 0.14 +exorbitaient exorbiter ver 0.00 0.81 0.00 0.20 ind:imp:3p; +exorbitait exorbiter ver 0.00 0.81 0.00 0.07 ind:imp:3s; +exorbitant exorbitant adj m s 0.83 2.30 0.53 0.54 +exorbitante exorbitant adj f s 0.83 2.30 0.05 1.08 +exorbitantes exorbitant adj f p 0.83 2.30 0.05 0.47 +exorbitants exorbitant adj m p 0.83 2.30 0.21 0.20 +exorbiter exorbiter ver 0.00 0.81 0.00 0.07 inf; +exorbité exorbité adj m s 0.36 2.84 0.00 0.27 +exorbitées exorbité adj f p 0.36 2.84 0.00 0.14 +exorbités exorbité adj m p 0.36 2.84 0.36 2.43 +exorcisa exorciser ver 2.00 2.70 0.00 0.14 ind:pas:3s; +exorcisait exorciser ver 2.00 2.70 0.01 0.14 ind:imp:3s; +exorcisant exorciser ver 2.00 2.70 0.02 0.00 par:pre; +exorcise exorciser ver 2.00 2.70 0.85 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exorcisent exorciser ver 2.00 2.70 0.02 0.00 ind:pre:3p; +exorciser exorciser ver 2.00 2.70 0.48 1.35 inf; +exorciserait exorciser ver 2.00 2.70 0.00 0.07 cnd:pre:3s; +exorcisez exorciser ver 2.00 2.70 0.01 0.07 imp:pre:2p;ind:pre:2p; +exorcisions exorciser ver 2.00 2.70 0.01 0.07 ind:imp:1p; +exorcisme exorcisme nom m s 2.09 1.82 1.86 1.49 +exorcismes exorcisme nom m p 2.09 1.82 0.23 0.34 +exorciste exorciste nom s 0.60 0.14 0.57 0.07 +exorcistes exorciste nom p 0.60 0.14 0.03 0.07 +exorcisé exorciser ver m s 2.00 2.70 0.43 0.54 par:pas; +exorcisée exorciser ver f s 2.00 2.70 0.16 0.07 par:pas; +exorcisées exorciser ver f p 2.00 2.70 0.00 0.07 par:pas; +exorcisés exorciser ver m p 2.00 2.70 0.00 0.07 par:pas; +exorde exorde nom m s 0.01 0.54 0.01 0.47 +exordes exorde nom m p 0.01 0.54 0.00 0.07 +exos exo nom m p 0.11 0.27 0.07 0.07 +exosphère exosphère nom f s 0.01 0.00 0.01 0.00 +exosquelette exosquelette nom m s 0.36 0.00 0.36 0.00 +exostose exostose nom f s 0.03 0.00 0.02 0.00 +exostoses exostose nom f p 0.03 0.00 0.01 0.00 +exothermique exothermique adj f s 0.03 0.00 0.03 0.00 +exotique exotique adj s 4.19 8.99 2.86 5.00 +exotiquement exotiquement adv 0.00 0.07 0.00 0.07 +exotiques exotique adj p 4.19 8.99 1.33 3.99 +exotisme exotisme nom m s 0.23 2.77 0.23 2.77 +expansible expansible adj s 0.02 0.00 0.02 0.00 +expansif expansif adj m s 0.33 1.35 0.15 0.81 +expansifs expansif adj m p 0.33 1.35 0.01 0.07 +expansion expansion nom f s 1.89 2.50 1.89 2.50 +expansionnisme expansionnisme nom m s 0.01 0.07 0.01 0.07 +expansionniste expansionniste adj f s 0.02 0.00 0.02 0.00 +expansionnistes expansionniste nom p 0.10 0.07 0.10 0.00 +expansive expansif adj f s 0.33 1.35 0.15 0.41 +expansives expansif adj f p 0.33 1.35 0.02 0.07 +expansé expansé adj m s 0.00 0.07 0.00 0.07 +expatriait expatrier ver 0.39 0.81 0.00 0.07 ind:imp:3s; +expatriation expatriation nom f s 0.00 0.07 0.00 0.07 +expatrier expatrier ver 0.39 0.81 0.25 0.41 inf; +expatrièrent expatrier ver 0.39 0.81 0.00 0.07 ind:pas:3p; +expatrié expatrié nom m s 0.35 0.14 0.21 0.00 +expatriée expatrier ver f s 0.39 0.81 0.00 0.07 par:pas; +expatriés expatrié nom m p 0.35 0.14 0.14 0.14 +expectatif expectatif adj m s 0.00 0.07 0.00 0.07 +expectation expectation nom f s 0.02 0.00 0.02 0.00 +expectative expectative nom f s 0.09 1.01 0.06 1.01 +expectatives expectative nom f p 0.09 1.01 0.02 0.00 +expectora expectorer ver 0.02 0.41 0.00 0.07 ind:pas:3s; +expectorant expectorant nom m s 0.01 0.00 0.01 0.00 +expectoration expectoration nom f s 0.02 0.27 0.02 0.27 +expectorer expectorer ver 0.02 0.41 0.00 0.14 inf; +expectoré expectorer ver m s 0.02 0.41 0.01 0.14 par:pas; +expectorées expectorer ver f p 0.02 0.41 0.01 0.00 par:pas; +expert_comptable expert_comptable nom m s 0.23 0.20 0.23 0.20 +expert expert nom m s 20.14 5.00 12.70 1.96 +experte expert adj f s 7.66 6.15 3.45 2.16 +expertement expertement adv 0.00 0.07 0.00 0.07 +expertes expert adj f p 7.66 6.15 0.34 1.15 +expertisaient expertiser ver 0.26 0.47 0.00 0.07 ind:imp:3p; +expertisait expertiser ver 0.26 0.47 0.00 0.07 ind:imp:3s; +expertisant expertiser ver 0.26 0.47 0.00 0.07 par:pre; +expertise expertise nom f s 2.88 0.68 2.69 0.61 +expertiser expertiser ver 0.26 0.47 0.24 0.27 inf; +expertises expertise nom f p 2.88 0.68 0.20 0.07 +experts expert nom m p 20.14 5.00 7.44 3.04 +expiaient expier ver 2.42 2.30 0.00 0.07 ind:imp:3p; +expiait expier ver 2.42 2.30 0.00 0.27 ind:imp:3s; +expiant expier ver 2.42 2.30 0.04 0.00 par:pre; +expiation expiation nom f s 0.44 0.88 0.44 0.88 +expiatoire expiatoire adj s 0.17 0.95 0.16 0.74 +expiatoires expiatoire adj p 0.17 0.95 0.01 0.20 +expiatrice expiateur adj f s 0.00 0.07 0.00 0.07 +expie expier ver 2.42 2.30 0.29 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expier expier ver 2.42 2.30 1.73 1.35 inf; +expieras expier ver 2.42 2.30 0.02 0.00 ind:fut:2s; +expira expirer ver 6.06 4.59 0.00 0.61 ind:pas:3s; +expirais expirer ver 6.06 4.59 0.00 0.07 ind:imp:1s; +expirait expirer ver 6.06 4.59 0.04 0.88 ind:imp:3s; +expirant expirer ver 6.06 4.59 0.01 0.14 par:pre; +expirante expirant adj f s 0.00 0.41 0.00 0.07 +expirantes expirant adj f p 0.00 0.41 0.00 0.07 +expiration expiration nom f s 1.29 1.28 1.29 1.08 +expirations expiration nom f p 1.29 1.28 0.00 0.20 +expire expirer ver 6.06 4.59 2.63 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expirent expirer ver 6.06 4.59 0.20 0.20 ind:pre:3p; +expirer expirer ver 6.06 4.59 0.72 0.95 inf; +expirera expirer ver 6.06 4.59 0.07 0.00 ind:fut:3s; +expirerait expirer ver 6.06 4.59 0.00 0.14 cnd:pre:3s; +expirez expirer ver 6.06 4.59 0.54 0.14 imp:pre:2p;ind:pre:2p; +expirons expirer ver 6.06 4.59 0.00 0.07 ind:pre:1p; +expiré expirer ver m s 6.06 4.59 1.73 0.34 par:pas; +expirée expirer ver f s 6.06 4.59 0.09 0.14 par:pas; +expirés expirer ver m p 6.06 4.59 0.01 0.07 par:pas; +expié expier ver m s 2.42 2.30 0.33 0.20 par:pas; +expiée expier ver f s 2.42 2.30 0.00 0.07 par:pas; +expiés expier ver m p 2.42 2.30 0.00 0.07 par:pas; +explicable explicable adj s 0.19 1.42 0.19 1.22 +explicables explicable adj m p 0.19 1.42 0.00 0.20 +explicatif explicatif adj m s 0.03 1.15 0.01 0.20 +explicatifs explicatif adj m p 0.03 1.15 0.00 0.20 +explication explication nom f s 31.74 46.28 24.60 28.85 +explications explication nom f p 31.74 46.28 7.14 17.43 +explicative explicatif adj f s 0.03 1.15 0.02 0.54 +explicatives explicatif adj f p 0.03 1.15 0.00 0.20 +explicitant expliciter ver 0.06 0.68 0.00 0.07 par:pre; +explicite explicite adj s 1.78 2.16 1.34 1.82 +explicitement explicitement adv 0.48 1.55 0.48 1.55 +expliciter expliciter ver 0.06 0.68 0.06 0.54 inf; +explicites explicite adj p 1.78 2.16 0.45 0.34 +expliqua expliquer ver 200.93 233.92 0.77 36.42 ind:pas:3s; +expliquai expliquer ver 200.93 233.92 0.26 2.70 ind:pas:1s; +expliquaient expliquer ver 200.93 233.92 0.12 1.08 ind:imp:3p; +expliquais expliquer ver 200.93 233.92 1.25 1.82 ind:imp:1s;ind:imp:2s; +expliquait expliquer ver 200.93 233.92 1.40 21.62 ind:imp:3s; +expliquant expliquer ver 200.93 233.92 0.50 6.28 par:pre; +explique expliquer ver 200.93 233.92 48.02 38.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +expliquent expliquer ver 200.93 233.92 0.78 2.09 ind:pre:3p; +expliquer expliquer ver 200.93 233.92 89.21 76.55 inf;;inf;;inf;; +expliquera expliquer ver 200.93 233.92 3.69 1.89 ind:fut:3s; +expliquerai expliquer ver 200.93 233.92 13.85 5.81 ind:fut:1s; +expliqueraient expliquer ver 200.93 233.92 0.06 0.27 cnd:pre:3p; +expliquerais expliquer ver 200.93 233.92 0.55 0.20 cnd:pre:1s;cnd:pre:2s; +expliquerait expliquer ver 200.93 233.92 3.30 2.03 cnd:pre:3s; +expliqueras expliquer ver 200.93 233.92 1.19 0.74 ind:fut:2s; +expliquerez expliquer ver 200.93 233.92 1.29 0.54 ind:fut:2p; +expliqueriez expliquer ver 200.93 233.92 0.05 0.07 cnd:pre:2p; +expliquerons expliquer ver 200.93 233.92 0.11 0.20 ind:fut:1p; +expliqueront expliquer ver 200.93 233.92 0.25 0.14 ind:fut:3p; +expliques expliquer ver 200.93 233.92 3.97 1.62 ind:pre:2s;sub:pre:2s; +expliquez expliquer ver 200.93 233.92 14.34 3.11 imp:pre:2p;ind:pre:2p; +expliquiez expliquer ver 200.93 233.92 0.61 0.27 ind:imp:2p;sub:pre:2p; +expliquions expliquer ver 200.93 233.92 0.03 0.20 ind:imp:1p; +expliquâmes expliquer ver 200.93 233.92 0.00 0.07 ind:pas:1p; +expliquons expliquer ver 200.93 233.92 0.23 0.20 imp:pre:1p;ind:pre:1p; +expliquât expliquer ver 200.93 233.92 0.00 0.34 sub:imp:3s; +expliquèrent expliquer ver 200.93 233.92 0.00 0.41 ind:pas:3p; +expliqué expliquer ver m s 200.93 233.92 14.18 27.57 par:pas; +expliquée expliquer ver f s 200.93 233.92 0.36 0.34 par:pas; +expliquées expliquer ver f p 200.93 233.92 0.14 0.47 par:pas; +expliqués expliquer ver m p 200.93 233.92 0.35 0.61 par:pas; +exploit exploit nom m s 8.00 15.61 3.97 5.20 +exploita exploiter ver 9.47 11.15 0.00 0.14 ind:pas:3s; +exploitable exploitable adj s 0.19 0.41 0.14 0.34 +exploitables exploitable adj p 0.19 0.41 0.05 0.07 +exploitai exploiter ver 9.47 11.15 0.00 0.07 ind:pas:1s; +exploitaient exploiter ver 9.47 11.15 0.05 0.34 ind:imp:3p; +exploitais exploiter ver 9.47 11.15 0.00 0.07 ind:imp:1s; +exploitait exploiter ver 9.47 11.15 0.10 0.54 ind:imp:3s; +exploitant exploiter ver 9.47 11.15 0.27 0.41 par:pre; +exploitante exploitant nom f s 0.46 0.41 0.14 0.00 +exploitants exploitant nom m p 0.46 0.41 0.06 0.34 +exploitation exploitation nom f s 4.25 6.82 3.86 6.62 +exploitations exploitation nom f p 4.25 6.82 0.40 0.20 +exploite exploiter ver 9.47 11.15 1.23 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exploitent exploiter ver 9.47 11.15 0.58 0.54 ind:pre:3p; +exploiter exploiter ver 9.47 11.15 4.18 5.07 inf; +exploitera exploiter ver 9.47 11.15 0.05 0.00 ind:fut:3s; +exploiterais exploiter ver 9.47 11.15 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +exploiterait exploiter ver 9.47 11.15 0.04 0.07 cnd:pre:3s; +exploiteront exploiter ver 9.47 11.15 0.03 0.00 ind:fut:3p; +exploites exploiter ver 9.47 11.15 0.19 0.14 ind:pre:2s; +exploiteur exploiteur nom m s 0.57 1.22 0.29 0.27 +exploiteurs exploiteur nom m p 0.57 1.22 0.28 0.88 +exploiteuses exploiteur nom f p 0.57 1.22 0.00 0.07 +exploitez exploiter ver 9.47 11.15 0.27 0.20 imp:pre:2p;ind:pre:2p; +exploitions exploiter ver 9.47 11.15 0.00 0.07 ind:imp:1p; +exploitons exploiter ver 9.47 11.15 0.02 0.00 imp:pre:1p;ind:pre:1p; +exploitât exploiter ver 9.47 11.15 0.00 0.14 sub:imp:3s; +exploits exploit nom m p 8.00 15.61 4.03 10.41 +exploitèrent exploiter ver 9.47 11.15 0.00 0.07 ind:pas:3p; +exploité exploiter ver m s 9.47 11.15 1.64 0.88 par:pas; +exploitée exploiter ver f s 9.47 11.15 0.35 0.68 par:pas; +exploitées exploité adj f p 0.27 0.88 0.15 0.20 +exploités exploiter ver m p 9.47 11.15 0.33 0.27 par:pas; +explora explorer ver 10.00 12.03 0.02 0.54 ind:pas:3s; +explorai explorer ver 10.00 12.03 0.00 0.07 ind:pas:1s; +exploraient explorer ver 10.00 12.03 0.03 0.27 ind:imp:3p; +explorais explorer ver 10.00 12.03 0.17 0.27 ind:imp:1s;ind:imp:2s; +explorait explorer ver 10.00 12.03 0.23 0.74 ind:imp:3s; +explorant explorer ver 10.00 12.03 0.42 0.81 par:pre; +explorateur explorateur nom m s 1.47 2.64 0.69 1.62 +explorateurs explorateur nom m p 1.47 2.64 0.72 0.95 +exploration exploration nom f s 2.06 4.53 1.81 3.31 +explorations exploration nom f p 2.06 4.53 0.25 1.22 +exploratoire exploratoire adj f s 0.10 0.07 0.10 0.00 +exploratoires exploratoire adj f p 0.10 0.07 0.00 0.07 +exploratrice explorateur adj f s 0.70 0.95 0.25 0.00 +exploratrices explorateur adj f p 0.70 0.95 0.00 0.07 +explore explorer ver 10.00 12.03 0.98 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +explorent explorer ver 10.00 12.03 0.12 0.07 ind:pre:3p; +explorer explorer ver 10.00 12.03 5.50 6.76 ind:pre:2p;inf; +explorera explorer ver 10.00 12.03 0.05 0.00 ind:fut:3s; +explorerai explorer ver 10.00 12.03 0.08 0.00 ind:fut:1s; +explorerez explorer ver 10.00 12.03 0.01 0.00 ind:fut:2p; +explorerons explorer ver 10.00 12.03 0.17 0.00 ind:fut:1p; +exploreur exploreur nom m s 0.01 0.00 0.01 0.00 +explorez explorer ver 10.00 12.03 0.33 0.00 imp:pre:2p;ind:pre:2p; +explorions explorer ver 10.00 12.03 0.06 0.20 ind:imp:1p; +explorons explorer ver 10.00 12.03 0.46 0.00 imp:pre:1p;ind:pre:1p; +explorèrent explorer ver 10.00 12.03 0.02 0.27 ind:pas:3p; +exploré explorer ver m s 10.00 12.03 1.00 0.68 par:pas; +explorée explorer ver f s 10.00 12.03 0.26 0.34 par:pas; +explorées explorer ver f p 10.00 12.03 0.04 0.14 par:pas; +explorés explorer ver m p 10.00 12.03 0.04 0.20 par:pas; +explosa exploser ver 53.79 24.05 0.36 2.97 ind:pas:3s; +explosai exploser ver 53.79 24.05 0.00 0.07 ind:pas:1s; +explosaient exploser ver 53.79 24.05 0.18 1.15 ind:imp:3p; +explosais exploser ver 53.79 24.05 0.04 0.00 ind:imp:1s; +explosait exploser ver 53.79 24.05 0.23 1.69 ind:imp:3s; +explosant exploser ver 53.79 24.05 0.35 0.81 par:pre; +explose exploser ver 53.79 24.05 10.22 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +explosent exploser ver 53.79 24.05 1.54 1.62 ind:pre:3p; +exploser exploser ver 53.79 24.05 25.11 7.36 imp:pre:2p;inf; +explosera exploser ver 53.79 24.05 1.87 0.14 ind:fut:3s; +exploserai exploser ver 53.79 24.05 0.13 0.00 ind:fut:1s; +exploseraient exploser ver 53.79 24.05 0.12 0.00 cnd:pre:3p; +exploserais exploser ver 53.79 24.05 0.07 0.00 cnd:pre:1s; +exploserait exploser ver 53.79 24.05 0.68 0.20 cnd:pre:3s; +exploseras exploser ver 53.79 24.05 0.05 0.07 ind:fut:2s; +exploserez exploser ver 53.79 24.05 0.23 0.00 ind:fut:2p; +exploseront exploser ver 53.79 24.05 0.18 0.00 ind:fut:3p; +exploses exploser ver 53.79 24.05 0.13 0.00 ind:pre:2s;sub:pre:2s; +exploseur exploseur nom m s 0.01 0.07 0.01 0.07 +explosez exploser ver 53.79 24.05 0.27 0.00 imp:pre:2p;ind:pre:2p; +explosif explosif nom m s 10.04 2.70 2.05 0.61 +explosifs explosif nom m p 10.04 2.70 7.97 1.96 +explosion explosion nom f s 26.14 25.68 23.11 17.64 +explosions explosion nom f p 26.14 25.68 3.02 8.04 +explosive explosif adj f s 4.07 2.77 1.18 0.95 +explosives explosif adj f p 4.07 2.77 0.52 0.14 +explosons exploser ver 53.79 24.05 0.15 0.00 imp:pre:1p;ind:pre:1p; +explosât exploser ver 53.79 24.05 0.00 0.14 sub:imp:3s; +explosèrent exploser ver 53.79 24.05 0.01 0.41 ind:pas:3p; +explosé exploser ver m s 53.79 24.05 11.10 3.31 par:pas; +explosée exploser ver f s 53.79 24.05 0.59 0.20 par:pas; +explosées exploser ver f p 53.79 24.05 0.04 0.14 par:pas; +explosés exploser ver m p 53.79 24.05 0.13 0.00 par:pas; +explétif explétif nom m s 0.00 0.07 0.00 0.07 +explétive explétif adj f s 0.01 0.07 0.01 0.07 +expo expo nom f s 3.77 0.54 3.26 0.47 +exponentiel exponentiel adj m s 0.39 0.20 0.14 0.07 +exponentielle exponentiel adj f s 0.39 0.20 0.20 0.07 +exponentiellement exponentiellement adv 0.17 0.00 0.17 0.00 +exponentielles exponentiel adj f p 0.39 0.20 0.04 0.07 +export export nom m s 0.58 0.20 0.53 0.20 +exporta exporter ver 0.83 0.88 0.00 0.07 ind:pas:3s; +exportaient exporter ver 0.83 0.88 0.14 0.07 ind:imp:3p; +exportant exporter ver 0.83 0.88 0.02 0.00 par:pre; +exportateur exportateur adj m s 0.07 0.14 0.05 0.07 +exportateurs exportateur adj m p 0.07 0.14 0.01 0.07 +exportation exportation nom f s 0.88 1.96 0.76 1.49 +exportations exportation nom f p 0.88 1.96 0.11 0.47 +exporte exporter ver 0.83 0.88 0.15 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exporter exporter ver 0.83 0.88 0.17 0.34 inf; +exportera exporter ver 0.83 0.88 0.01 0.00 ind:fut:3s; +exporterons exporter ver 0.83 0.88 0.01 0.00 ind:fut:1p; +exportez exporter ver 0.83 0.88 0.01 0.00 ind:pre:2p; +exports export nom m p 0.58 0.20 0.06 0.00 +exporté exporter ver m s 0.83 0.88 0.02 0.00 par:pas; +exportée exporter ver f s 0.83 0.88 0.01 0.00 par:pas; +exportées exporter ver f p 0.83 0.88 0.02 0.00 par:pas; +exportés exporter ver m p 0.83 0.88 0.27 0.20 par:pas; +expos expo nom f p 3.77 0.54 0.51 0.07 +exposa exposer ver 22.40 38.18 0.05 2.50 ind:pas:3s; +exposai exposer ver 22.40 38.18 0.00 0.81 ind:pas:1s; +exposaient exposer ver 22.40 38.18 0.01 0.41 ind:imp:3p; +exposais exposer ver 22.40 38.18 0.05 0.61 ind:imp:1s; +exposait exposer ver 22.40 38.18 0.44 3.38 ind:imp:3s; +exposant exposant nom m s 0.25 0.14 0.25 0.14 +expose exposer ver 22.40 38.18 3.38 3.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exposent exposer ver 22.40 38.18 0.31 0.74 ind:pre:3p; +exposer exposer ver 22.40 38.18 6.56 10.41 inf; +exposera exposer ver 22.40 38.18 0.11 0.14 ind:fut:3s; +exposerai exposer ver 22.40 38.18 0.16 0.07 ind:fut:1s; +exposerais exposer ver 22.40 38.18 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +exposerait exposer ver 22.40 38.18 0.04 0.41 cnd:pre:3s; +exposerez exposer ver 22.40 38.18 0.04 0.07 ind:fut:2p; +exposerions exposer ver 22.40 38.18 0.01 0.07 cnd:pre:1p; +exposeront exposer ver 22.40 38.18 0.02 0.00 ind:fut:3p; +exposes exposer ver 22.40 38.18 1.06 0.14 ind:pre:2s; +exposez exposer ver 22.40 38.18 1.17 0.41 imp:pre:2p;ind:pre:2p; +exposiez exposer ver 22.40 38.18 0.17 0.07 ind:imp:2p; +exposition exposition nom f s 12.36 13.99 11.25 11.42 +expositions exposition nom f p 12.36 13.99 1.11 2.57 +exposâmes exposer ver 22.40 38.18 0.00 0.14 ind:pas:1p; +exposons exposer ver 22.40 38.18 0.03 0.07 imp:pre:1p;ind:pre:1p; +exposèrent exposer ver 22.40 38.18 0.00 0.07 ind:pas:3p; +exposé exposer ver m s 22.40 38.18 5.00 5.54 par:pas; +exposée exposer ver f s 22.40 38.18 1.42 3.24 par:pas; +exposées exposer ver f p 22.40 38.18 0.42 1.49 par:pas; +exposés exposer ver m p 22.40 38.18 1.71 1.55 par:pas; +express express adj 2.77 1.28 2.77 1.28 +expresse exprès adj f s 24.06 26.22 0.38 0.95 +expresses exprès adj f p 24.06 26.22 0.00 0.47 +expressif expressif adj m s 1.12 2.09 0.53 0.88 +expressifs expressif adj m p 1.12 2.09 0.26 0.34 +expression expression nom f s 19.22 76.89 17.70 69.26 +expressionnisme expressionnisme nom m s 0.07 0.14 0.07 0.14 +expressionniste expressionniste adj s 0.71 0.20 0.57 0.14 +expressionnistes expressionniste nom p 0.19 0.00 0.16 0.00 +expressions expression nom f p 19.22 76.89 1.51 7.64 +expressive expressif adj f s 1.12 2.09 0.33 0.47 +expressivement expressivement adv 0.00 0.07 0.00 0.07 +expressives expressif adj f p 1.12 2.09 0.01 0.41 +expressément expressément adv 0.34 1.55 0.34 1.55 +exprima exprimer ver 30.02 72.64 0.10 2.57 ind:pas:3s; +exprimable exprimable adj s 0.01 0.00 0.01 0.00 +exprimai exprimer ver 30.02 72.64 0.00 0.61 ind:pas:1s; +exprimaient exprimer ver 30.02 72.64 0.08 4.66 ind:imp:3p; +exprimais exprimer ver 30.02 72.64 0.14 0.61 ind:imp:1s;ind:imp:2s; +exprimait exprimer ver 30.02 72.64 0.56 11.76 ind:imp:3s; +exprimant exprimer ver 30.02 72.64 0.23 2.84 par:pre; +exprime exprimer ver 30.02 72.64 4.67 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expriment exprimer ver 30.02 72.64 0.79 3.38 ind:pre:3p; +exprimer exprimer ver 30.02 72.64 18.13 25.95 inf;; +exprimera exprimer ver 30.02 72.64 0.16 0.07 ind:fut:3s; +exprimerai exprimer ver 30.02 72.64 0.02 0.07 ind:fut:1s; +exprimerais exprimer ver 30.02 72.64 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +exprimerait exprimer ver 30.02 72.64 0.05 0.81 cnd:pre:3s; +exprimeras exprimer ver 30.02 72.64 0.03 0.00 ind:fut:2s; +exprimerez exprimer ver 30.02 72.64 0.03 0.14 ind:fut:2p; +exprimeront exprimer ver 30.02 72.64 0.01 0.07 ind:fut:3p; +exprimes exprimer ver 30.02 72.64 0.39 0.14 ind:pre:2s; +exprimez exprimer ver 30.02 72.64 0.82 0.27 imp:pre:2p;ind:pre:2p; +exprimiez exprimer ver 30.02 72.64 0.03 0.00 ind:imp:2p; +exprimions exprimer ver 30.02 72.64 0.00 0.20 ind:imp:1p; +exprimons exprimer ver 30.02 72.64 0.30 0.00 imp:pre:1p;ind:pre:1p; +exprimât exprimer ver 30.02 72.64 0.00 0.47 sub:imp:3s; +exprimèrent exprimer ver 30.02 72.64 0.00 0.54 ind:pas:3p; +exprimé exprimer ver m s 30.02 72.64 2.41 3.58 par:pas; +exprimée exprimer ver f s 30.02 72.64 0.75 1.96 par:pas; +exprimées exprimer ver f p 30.02 72.64 0.05 0.95 par:pas; +exprimés exprimer ver m p 30.02 72.64 0.22 0.61 par:pas; +expropria exproprier ver 0.21 0.34 0.01 0.00 ind:pas:3s; +expropriation expropriation nom f s 0.32 0.41 0.28 0.27 +expropriations expropriation nom f p 0.32 0.41 0.03 0.14 +exproprie exproprier ver 0.21 0.34 0.01 0.07 ind:pre:3s; +exproprier exproprier ver 0.21 0.34 0.04 0.00 inf; +exproprierait exproprier ver 0.21 0.34 0.00 0.07 cnd:pre:3s; +exproprié exproprier ver m s 0.21 0.34 0.11 0.07 par:pas; +expropriée exproprié nom f s 0.10 0.00 0.10 0.00 +expropriées exproprier ver f p 0.21 0.34 0.00 0.07 par:pas; +expropriés exproprier ver m p 0.21 0.34 0.01 0.00 par:pas; +exprès exprès adj m 24.06 26.22 23.68 24.80 +expédia expédier ver 8.69 23.78 0.00 1.49 ind:pas:3s; +expédiai expédier ver 8.69 23.78 0.00 0.47 ind:pas:1s; +expédiaient expédier ver 8.69 23.78 0.00 0.34 ind:imp:3p; +expédiais expédier ver 8.69 23.78 0.05 0.20 ind:imp:1s;ind:imp:2s; +expédiait expédier ver 8.69 23.78 0.06 2.36 ind:imp:3s; +expédiant expédier ver 8.69 23.78 0.05 1.01 par:pre; +expédie expédier ver 8.69 23.78 1.73 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expédient expédier ver 8.69 23.78 0.26 0.47 ind:pre:3p; +expédientes expédient adj f p 0.03 0.34 0.01 0.00 +expédients expédient nom m p 0.36 2.64 0.20 1.82 +expédier expédier ver 8.69 23.78 2.09 5.41 inf; +expédiera expédier ver 8.69 23.78 0.13 0.27 ind:fut:3s; +expédierai expédier ver 8.69 23.78 0.02 0.14 ind:fut:1s; +expédierait expédier ver 8.69 23.78 0.00 0.20 cnd:pre:3s; +expédieras expédier ver 8.69 23.78 0.00 0.07 ind:fut:2s; +expédieriez expédier ver 8.69 23.78 0.02 0.00 cnd:pre:2p; +expédierons expédier ver 8.69 23.78 0.01 0.07 ind:fut:1p; +expédieront expédier ver 8.69 23.78 0.01 0.14 ind:fut:3p; +expédies expédier ver 8.69 23.78 0.04 0.07 ind:pre:2s;sub:pre:2s; +expédiez expédier ver 8.69 23.78 0.72 0.00 imp:pre:2p;ind:pre:2p; +expédions expédier ver 8.69 23.78 0.28 0.07 imp:pre:1p;ind:pre:1p; +expéditeur expéditeur nom m s 1.40 1.01 1.35 0.81 +expéditeurs expéditeur nom m p 1.40 1.01 0.03 0.20 +expéditif expéditif adj m s 0.47 2.03 0.05 1.08 +expéditifs expéditif adj m p 0.47 2.03 0.03 0.34 +expédition expédition nom f s 10.74 15.14 9.05 11.76 +expéditionnaire expéditionnaire adj s 0.18 2.77 0.16 2.43 +expéditionnaires expéditionnaire adj f p 0.18 2.77 0.02 0.34 +expéditions expédition nom f p 10.74 15.14 1.69 3.38 +expéditive expéditif adj f s 0.47 2.03 0.36 0.34 +expéditives expéditif adj f p 0.47 2.03 0.02 0.27 +expéditrice expéditeur nom f s 1.40 1.01 0.02 0.00 +expédié expédier ver m s 8.69 23.78 1.92 4.39 par:pas; +expédiée expédier ver f s 8.69 23.78 0.52 1.49 par:pas; +expédiées expédier ver f p 8.69 23.78 0.34 0.68 par:pas; +expédiés expédier ver m p 8.69 23.78 0.42 1.28 par:pas; +expulsa expulser ver 9.28 8.24 0.00 0.41 ind:pas:3s; +expulsai expulser ver 9.28 8.24 0.00 0.07 ind:pas:1s; +expulsaient expulser ver 9.28 8.24 0.01 0.27 ind:imp:3p; +expulsais expulser ver 9.28 8.24 0.00 0.14 ind:imp:1s; +expulsait expulser ver 9.28 8.24 0.02 0.27 ind:imp:3s; +expulsant expulser ver 9.28 8.24 0.03 0.20 par:pre; +expulse expulser ver 9.28 8.24 0.67 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expulsent expulser ver 9.28 8.24 0.24 0.07 ind:pre:3p; +expulser expulser ver 9.28 8.24 4.03 2.30 inf;; +expulsera expulser ver 9.28 8.24 0.10 0.07 ind:fut:3s; +expulserai expulser ver 9.28 8.24 0.03 0.00 ind:fut:1s; +expulserait expulser ver 9.28 8.24 0.12 0.07 cnd:pre:3s; +expulseront expulser ver 9.28 8.24 0.01 0.00 ind:fut:3p; +expulsez expulser ver 9.28 8.24 0.15 0.14 imp:pre:2p;ind:pre:2p; +expulsion expulsion nom f s 2.97 1.76 2.51 1.55 +expulsions expulsion nom f p 2.97 1.76 0.46 0.20 +expulsive expulsif adj f s 0.01 0.00 0.01 0.00 +expulsons expulser ver 9.28 8.24 0.02 0.00 imp:pre:1p;ind:pre:1p; +expulsât expulser ver 9.28 8.24 0.00 0.07 sub:imp:3s; +expulsé expulser ver m s 9.28 8.24 2.37 1.76 par:pas; +expulsée expulser ver f s 9.28 8.24 0.42 0.41 par:pas; +expulsées expulser ver f p 9.28 8.24 0.19 0.14 par:pas; +expulsés expulser ver m p 9.28 8.24 0.88 0.81 par:pas; +expurgeait expurger ver 0.13 0.81 0.00 0.14 ind:imp:3s; +expurger expurger ver 0.13 0.81 0.00 0.14 inf; +expurgera expurger ver 0.13 0.81 0.00 0.07 ind:fut:3s; +expurgé expurger ver m s 0.13 0.81 0.03 0.07 par:pas; +expurgée expurger ver f s 0.13 0.81 0.10 0.27 par:pas; +expurgés expurger ver m p 0.13 0.81 0.00 0.14 par:pas; +expérience expérience nom f s 72.04 58.72 55.52 48.11 +expériences expérience nom f p 72.04 58.72 16.52 10.61 +expérimenta expérimenter ver 3.92 2.97 0.03 0.07 ind:pas:3s; +expérimentai expérimenter ver 3.92 2.97 0.01 0.07 ind:pas:1s; +expérimentaient expérimenter ver 3.92 2.97 0.13 0.20 ind:imp:3p; +expérimentais expérimenter ver 3.92 2.97 0.07 0.20 ind:imp:1s; +expérimentait expérimenter ver 3.92 2.97 0.08 0.14 ind:imp:3s; +expérimental expérimental adj m s 2.74 1.01 1.90 0.07 +expérimentale expérimental adj f s 2.74 1.01 0.48 0.61 +expérimentalement expérimentalement adv 0.01 0.07 0.01 0.07 +expérimentales expérimental adj f p 2.74 1.01 0.10 0.14 +expérimentant expérimenter ver 3.92 2.97 0.03 0.14 par:pre; +expérimentateur expérimentateur nom m s 0.14 0.07 0.14 0.07 +expérimentation expérimentation nom f s 1.30 2.91 0.87 2.16 +expérimentations expérimentation nom f p 1.30 2.91 0.43 0.74 +expérimentaux expérimental adj m p 2.74 1.01 0.26 0.20 +expérimente expérimenter ver 3.92 2.97 0.33 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expérimentent expérimenter ver 3.92 2.97 0.18 0.00 ind:pre:3p; +expérimenter expérimenter ver 3.92 2.97 1.23 0.47 inf; +expérimenteras expérimenter ver 3.92 2.97 0.02 0.00 ind:fut:2s; +expérimentez expérimenter ver 3.92 2.97 0.18 0.00 imp:pre:2p;ind:pre:2p; +expérimentiez expérimenter ver 3.92 2.97 0.04 0.00 ind:imp:2p; +expérimentons expérimenter ver 3.92 2.97 0.02 0.07 imp:pre:1p;ind:pre:1p; +expérimenté expérimenté adj m s 2.42 1.62 1.33 0.68 +expérimentée expérimenté adj f s 2.42 1.62 0.52 0.34 +expérimentées expérimenté adj f p 2.42 1.62 0.14 0.14 +expérimentés expérimenté adj m p 2.42 1.62 0.42 0.47 +exquis exquis adj m 6.38 17.36 3.20 7.23 +exquise exquis adj f s 6.38 17.36 2.51 7.97 +exquises exquis adj f p 6.38 17.36 0.66 2.16 +exsangue exsangue adj s 0.45 4.19 0.44 2.84 +exsangues exsangue adj p 0.45 4.19 0.01 1.35 +exsudaient exsuder ver 0.05 0.41 0.00 0.07 ind:imp:3p; +exsudait exsuder ver 0.05 0.41 0.00 0.07 ind:imp:3s; +exsudant exsuder ver 0.05 0.41 0.00 0.14 par:pre; +exsudat exsudat nom m s 0.00 0.07 0.00 0.07 +exsudation exsudation nom f s 0.01 0.00 0.01 0.00 +exsude exsuder ver 0.05 0.41 0.01 0.07 ind:pre:3s; +exsuder exsuder ver 0.05 0.41 0.04 0.00 inf; +exsudé exsuder ver m s 0.05 0.41 0.00 0.07 par:pas; +extase extase nom f s 3.67 11.55 3.43 10.54 +extases extase nom f p 3.67 11.55 0.24 1.01 +extasia extasier ver 0.68 7.30 0.00 1.22 ind:pas:3s; +extasiaient extasier ver 0.68 7.30 0.14 0.41 ind:imp:3p; +extasiais extasier ver 0.68 7.30 0.00 0.34 ind:imp:1s;ind:imp:2s; +extasiait extasier ver 0.68 7.30 0.02 1.35 ind:imp:3s; +extasiant extasier ver 0.68 7.30 0.01 0.27 par:pre; +extasiantes extasiant adj f p 0.00 0.14 0.00 0.07 +extasie extasier ver 0.68 7.30 0.16 0.68 ind:pre:1s;ind:pre:3s; +extasient extasier ver 0.68 7.30 0.02 0.07 ind:pre:3p; +extasier extasier ver 0.68 7.30 0.26 0.88 inf; +extasieront extasier ver 0.68 7.30 0.00 0.14 ind:fut:3p; +extasiez extasier ver 0.68 7.30 0.02 0.00 ind:pre:2p; +extasions extasier ver 0.68 7.30 0.01 0.20 ind:pre:1p; +extasiât extasier ver 0.68 7.30 0.00 0.07 sub:imp:3s; +extasièrent extasier ver 0.68 7.30 0.00 0.07 ind:pas:3p; +extasié extasier ver m s 0.68 7.30 0.04 0.61 par:pas; +extasiée extasié adj f s 0.11 1.89 0.10 0.47 +extasiées extasier ver f p 0.68 7.30 0.00 0.20 par:pas; +extasiés extasié adj m p 0.11 1.89 0.00 0.47 +extatique extatique adj s 0.22 1.22 0.22 1.01 +extatiquement extatiquement adv 0.00 0.14 0.00 0.14 +extatiques extatique adj p 0.22 1.22 0.00 0.20 +extenseur extenseur nom m s 0.07 0.14 0.06 0.14 +extenseurs extenseur nom m p 0.07 0.14 0.01 0.00 +extensible extensible adj s 0.10 0.61 0.09 0.47 +extensibles extensible adj m p 0.10 0.61 0.01 0.14 +extension extension nom f s 2.60 2.77 2.43 2.57 +extensions extension nom f p 2.60 2.77 0.17 0.20 +extensive extensif adj f s 0.04 0.00 0.04 0.00 +extermina exterminer ver 6.85 4.05 0.13 0.07 ind:pas:3s; +exterminaient exterminer ver 6.85 4.05 0.03 0.14 ind:imp:3p; +exterminais exterminer ver 6.85 4.05 0.02 0.07 ind:imp:1s; +exterminait exterminer ver 6.85 4.05 0.00 0.14 ind:imp:3s; +exterminant exterminer ver 6.85 4.05 0.12 0.00 par:pre; +exterminateur exterminateur nom m s 0.72 0.07 0.56 0.07 +exterminateurs exterminateur nom m p 0.72 0.07 0.17 0.00 +extermination extermination nom f s 2.09 1.08 2.08 1.01 +exterminations extermination nom f p 2.09 1.08 0.01 0.07 +exterminatrice exterminateur adj f s 0.39 0.88 0.10 0.00 +exterminatrices exterminateur adj f p 0.39 0.88 0.00 0.14 +extermine exterminer ver 6.85 4.05 0.53 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exterminent exterminer ver 6.85 4.05 0.18 0.00 ind:pre:3p; +exterminer exterminer ver 6.85 4.05 3.07 1.89 inf; +exterminera exterminer ver 6.85 4.05 0.23 0.00 ind:fut:3s; +exterminerait exterminer ver 6.85 4.05 0.00 0.07 cnd:pre:3s; +exterminerons exterminer ver 6.85 4.05 0.01 0.00 ind:fut:1p; +extermineront exterminer ver 6.85 4.05 0.04 0.00 ind:fut:3p; +exterminez exterminer ver 6.85 4.05 0.13 0.00 imp:pre:2p;ind:pre:2p; +exterminions exterminer ver 6.85 4.05 0.01 0.00 ind:imp:1p; +exterminons exterminer ver 6.85 4.05 0.04 0.00 imp:pre:1p;ind:pre:1p; +exterminé exterminer ver m s 6.85 4.05 0.85 0.41 par:pas; +exterminée exterminer ver f s 6.85 4.05 0.26 0.20 par:pas; +exterminées exterminer ver f p 6.85 4.05 0.15 0.07 par:pas; +exterminés exterminer ver m p 6.85 4.05 1.05 0.88 par:pas; +externalité externalité nom f s 0.01 0.00 0.01 0.00 +externat externat nom m s 0.01 0.07 0.01 0.07 +externe externe adj s 3.53 0.88 2.48 0.54 +externes externe adj p 3.53 0.88 1.05 0.34 +exterritorialité exterritorialité nom f s 0.00 0.07 0.00 0.07 +exècre exécrer ver 0.48 3.18 0.41 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exècrent exécrer ver 0.48 3.18 0.00 0.07 ind:pre:3p; +extincteur extincteur nom m s 1.93 0.95 1.49 0.88 +extincteurs extincteur nom m p 1.93 0.95 0.44 0.07 +extinction extinction nom f s 3.42 3.65 3.42 3.65 +extinctrice extinctrice adj f s 0.01 0.00 0.01 0.00 +extirpa extirper ver 1.35 10.07 0.00 1.42 ind:pas:3s; +extirpaient extirper ver 1.35 10.07 0.00 0.20 ind:imp:3p; +extirpais extirper ver 1.35 10.07 0.01 0.07 ind:imp:1s; +extirpait extirper ver 1.35 10.07 0.02 0.47 ind:imp:3s; +extirpant extirper ver 1.35 10.07 0.02 0.34 par:pre; +extirpation extirpation nom f s 0.01 0.00 0.01 0.00 +extirpe extirper ver 1.35 10.07 0.05 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extirpent extirper ver 1.35 10.07 0.02 0.34 ind:pre:3p; +extirper extirper ver 1.35 10.07 0.88 3.51 inf; +extirpera extirper ver 1.35 10.07 0.02 0.07 ind:fut:3s; +extirperai extirper ver 1.35 10.07 0.20 0.00 ind:fut:1s; +extirperais extirper ver 1.35 10.07 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +extirperait extirper ver 1.35 10.07 0.00 0.07 cnd:pre:3s; +extirpé extirper ver m s 1.35 10.07 0.09 1.08 par:pas; +extirpée extirper ver f s 1.35 10.07 0.00 0.27 par:pas; +extirpées extirper ver f p 1.35 10.07 0.01 0.07 par:pas; +extirpés extirper ver m p 1.35 10.07 0.01 0.34 par:pas; +extorquai extorquer ver 1.35 2.03 0.00 0.07 ind:pas:1s; +extorquais extorquer ver 1.35 2.03 0.00 0.07 ind:imp:1s; +extorquait extorquer ver 1.35 2.03 0.01 0.20 ind:imp:3s; +extorque extorquer ver 1.35 2.03 0.05 0.00 ind:pre:3s; +extorquent extorquer ver 1.35 2.03 0.02 0.00 ind:pre:3p; +extorquer extorquer ver 1.35 2.03 0.90 0.68 inf; +extorqueur extorqueur nom m s 0.02 0.00 0.02 0.00 +extorquez extorquer ver 1.35 2.03 0.01 0.00 ind:pre:2p; +extorquèrent extorquer ver 1.35 2.03 0.00 0.07 ind:pas:3p; +extorqué extorquer ver m s 1.35 2.03 0.28 0.61 par:pas; +extorquée extorquer ver f s 1.35 2.03 0.03 0.07 par:pas; +extorquées extorquer ver f p 1.35 2.03 0.03 0.07 par:pas; +extorqués extorquer ver m p 1.35 2.03 0.03 0.20 par:pas; +extorsion extorsion nom f s 1.79 0.14 1.57 0.14 +extorsions extorsion nom f p 1.79 0.14 0.23 0.00 +extra_dry extra_dry nom m 0.00 0.07 0.00 0.07 +extra_fin extra_fin adj m s 0.00 0.34 0.00 0.27 +extra_fin extra_fin adj m p 0.00 0.34 0.00 0.07 +extra_fort extra_fort adj m s 0.11 0.20 0.04 0.07 +extra_fort extra_fort adj f s 0.11 0.20 0.08 0.14 +extra_lucide extra_lucide adj f s 0.05 0.20 0.04 0.14 +extra_lucide extra_lucide adj p 0.05 0.20 0.01 0.07 +extra_muros extra_muros adj f p 0.00 0.07 0.00 0.07 +extra_muros extra_muros adv 0.00 0.07 0.00 0.07 +extra_sensoriel extra_sensoriel adj m s 0.06 0.00 0.02 0.00 +extra_sensoriel extra_sensoriel adj f s 0.06 0.00 0.04 0.00 +extra_souple extra_souple adj f p 0.00 0.07 0.00 0.07 +extra_terrestre extra_terrestre nom s 3.71 0.34 1.35 0.27 +extra_terrestre extra_terrestre nom p 3.71 0.34 2.36 0.07 +extra_utérin extra_utérin adj m s 0.10 0.00 0.03 0.00 +extra_utérin extra_utérin adj f s 0.10 0.00 0.07 0.00 +extra extra adj_sup 6.78 1.42 6.78 1.42 +extraconjugal extraconjugal adj m s 0.10 0.07 0.03 0.00 +extraconjugale extraconjugal adj f s 0.10 0.07 0.02 0.00 +extraconjugales extraconjugal adj f p 0.10 0.07 0.04 0.07 +extraconjugaux extraconjugal adj m p 0.10 0.07 0.01 0.00 +extracorporelle extracorporel adj f s 0.01 0.00 0.01 0.00 +extracteur extracteur nom m s 0.04 0.00 0.04 0.00 +extracteurs extracteur nom m p 0.04 0.00 0.01 0.00 +extraction extraction nom f s 1.82 1.42 1.79 1.35 +extractions extraction nom f p 1.82 1.42 0.03 0.07 +extractive extractif adj f s 0.01 0.00 0.01 0.00 +extradaient extrader ver 0.66 0.20 0.00 0.07 ind:imp:3p; +extrade extrader ver 0.66 0.20 0.04 0.07 imp:pre:2s;ind:pre:3s; +extrader extrader ver 0.66 0.20 0.36 0.07 inf; +extradition extradition nom f s 0.78 0.14 0.78 0.14 +extradé extrader ver m s 0.66 0.20 0.26 0.00 par:pas; +extradée extradé adj f s 0.02 0.07 0.01 0.00 +extraforte extrafort adj f s 0.01 0.00 0.01 0.00 +extragalactique extragalactique adj f s 0.02 0.00 0.02 0.00 +extraient extraire ver 8.55 13.24 0.19 0.27 ind:pre:3p; +extraira extraire ver 8.55 13.24 0.04 0.00 ind:fut:3s; +extrairai extraire ver 8.55 13.24 0.04 0.00 ind:fut:1s; +extraire extraire ver 8.55 13.24 4.71 5.68 inf; +extrairons extraire ver 8.55 13.24 0.03 0.00 ind:fut:1p; +extrairont extraire ver 8.55 13.24 0.03 0.00 ind:fut:3p; +extrais extraire ver 8.55 13.24 0.17 0.41 imp:pre:2s;ind:pre:1s; +extrait extraire ver m s 8.55 13.24 1.90 3.51 ind:pre:3s;par:pas;par:pas; +extraite extraire ver f s 8.55 13.24 0.80 0.61 par:pas; +extraites extraire ver f p 8.55 13.24 0.11 0.54 par:pas; +extraits extrait nom m p 3.06 4.19 1.17 2.09 +extralucide extralucide adj m s 0.20 0.07 0.19 0.00 +extralucides extralucide adj p 0.20 0.07 0.01 0.07 +extraordinaire extraordinaire adj s 27.36 42.84 23.71 36.01 +extraordinairement extraordinairement adv 0.46 8.51 0.46 8.51 +extraordinaires extraordinaire adj p 27.36 42.84 3.65 6.82 +extrapolant extrapoler ver 0.37 0.34 0.04 0.00 par:pre; +extrapolation extrapolation nom f s 0.14 0.27 0.12 0.14 +extrapolations extrapolation nom f p 0.14 0.27 0.02 0.14 +extrapole extrapoler ver 0.37 0.34 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extrapolent extrapoler ver 0.37 0.34 0.00 0.07 ind:pre:3p; +extrapoler extrapoler ver 0.37 0.34 0.14 0.07 inf; +extrapolez extrapoler ver 0.37 0.34 0.05 0.00 imp:pre:2p;ind:pre:2p; +extrapolons extrapoler ver 0.37 0.34 0.00 0.07 imp:pre:1p; +extrapolé extrapoler ver m s 0.37 0.34 0.06 0.00 par:pas; +extrapolée extrapoler ver f s 0.37 0.34 0.01 0.00 par:pas; +extrapolées extrapoler ver f p 0.37 0.34 0.00 0.07 par:pas; +extras extra nom_sup m p 4.93 1.55 1.04 0.68 +extrascolaire extrascolaire adj s 0.23 0.00 0.11 0.00 +extrascolaires extrascolaire adj p 0.23 0.00 0.13 0.00 +extrasensoriel extrasensoriel adj m s 0.51 0.00 0.02 0.00 +extrasensorielle extrasensoriel adj f s 0.51 0.00 0.25 0.00 +extrasensoriels extrasensoriel adj m p 0.51 0.00 0.25 0.00 +extrasystole extrasystole nom f s 0.03 0.00 0.03 0.00 +extraterrestre extraterrestre adj s 6.66 0.41 4.46 0.14 +extraterrestres extraterrestre nom p 9.81 1.01 6.37 0.68 +extraterritoriale extraterritorial adj f s 0.02 0.00 0.02 0.00 +extravagance extravagance nom f s 0.94 3.78 0.31 2.43 +extravagances extravagance nom f p 0.94 3.78 0.63 1.35 +extravagant extravagant adj m s 2.26 6.55 0.91 2.16 +extravagante extravagant adj f s 2.26 6.55 0.56 1.62 +extravagantes extravagant adj f p 2.26 6.55 0.36 1.15 +extravagants extravagant adj m p 2.26 6.55 0.43 1.62 +extravaguait extravaguer ver 0.00 0.27 0.00 0.07 ind:imp:3s; +extravague extravaguer ver 0.00 0.27 0.00 0.07 ind:pre:3s; +extravaguer extravaguer ver 0.00 0.27 0.00 0.07 inf; +extravagué extravaguer ver m s 0.00 0.27 0.00 0.07 par:pas; +extravasation extravasation nom f s 0.01 0.00 0.01 0.00 +extraverti extraverti adj m s 0.11 0.00 0.06 0.00 +extravertie extraverti adj f s 0.11 0.00 0.05 0.00 +extravéhiculaire extravéhiculaire adj s 0.07 0.00 0.07 0.00 +extrayaient extraire ver 8.55 13.24 0.00 0.34 ind:imp:3p; +extrayait extraire ver 8.55 13.24 0.04 0.95 ind:imp:3s; +extrayant extraire ver 8.55 13.24 0.04 0.41 par:pre; +extrayez extraire ver 8.55 13.24 0.18 0.00 imp:pre:2p;ind:pre:2p; +extrayions extraire ver 8.55 13.24 0.01 0.00 ind:imp:1p; +extroverti extroverti adj m s 0.03 0.00 0.01 0.00 +extrovertie extroverti adj f s 0.03 0.00 0.01 0.00 +extrême_onction extrême_onction nom f s 0.42 1.62 0.42 1.55 +extrême_orient extrême_orient nom m s 0.00 0.07 0.00 0.07 +extrême_oriental extrême_oriental adj f s 0.00 0.07 0.00 0.07 +extrême extrême adj s 12.08 45.54 9.07 41.62 +extrêmement extrêmement adv 14.69 16.96 14.69 16.96 +extrême_onction extrême_onction nom f p 0.42 1.62 0.00 0.07 +extrêmes extrême adj p 12.08 45.54 3.01 3.92 +extrémisme extrémisme nom m s 0.13 0.20 0.13 0.20 +extrémiste extrémiste nom s 1.03 0.61 0.42 0.27 +extrémistes extrémiste nom p 1.03 0.61 0.61 0.34 +extrémité extrémité nom f s 2.95 27.09 2.12 20.27 +extrémités extrémité nom f p 2.95 27.09 0.83 6.82 +extrusion extrusion nom f s 0.03 0.00 0.03 0.00 +exténua exténuer ver 0.81 3.18 0.00 0.14 ind:pas:3s; +exténuait exténuer ver 0.81 3.18 0.00 0.20 ind:imp:3s; +exténuant exténuant adj m s 0.16 1.49 0.07 0.68 +exténuante exténuant adj f s 0.16 1.49 0.04 0.68 +exténuantes exténuant adj f p 0.16 1.49 0.03 0.07 +exténuants exténuant adj m p 0.16 1.49 0.02 0.07 +exténuation exténuation nom f s 0.10 0.00 0.10 0.00 +exténue exténuer ver 0.81 3.18 0.00 0.27 ind:pre:3s; +exténuement exténuement nom m s 0.00 0.27 0.00 0.27 +exténuent exténuer ver 0.81 3.18 0.00 0.07 ind:pre:3p; +exténuer exténuer ver 0.81 3.18 0.01 0.14 inf; +exténuerait exténuer ver 0.81 3.18 0.00 0.07 cnd:pre:3s; +exténué exténuer ver m s 0.81 3.18 0.35 0.74 par:pas; +exténuée exténuer ver f s 0.81 3.18 0.27 0.74 par:pas; +exténuées exténué adj f p 0.26 5.07 0.00 0.47 +exténués exténuer ver m p 0.81 3.18 0.19 0.54 par:pas; +extérieur extérieur nom m s 25.53 24.39 24.97 23.72 +extérieure extérieur adj f s 11.01 29.86 3.36 7.84 +extérieurement extérieurement adv 0.23 0.81 0.23 0.81 +extérieures extérieur adj f p 11.01 29.86 1.24 5.34 +extérieurs extérieur adj m p 11.01 29.86 1.52 4.46 +extériorisa extérioriser ver 0.61 1.15 0.00 0.14 ind:pas:3s; +extériorisaient extérioriser ver 0.61 1.15 0.00 0.07 ind:imp:3p; +extériorisait extérioriser ver 0.61 1.15 0.00 0.20 ind:imp:3s; +extériorisation extériorisation nom f s 0.05 0.00 0.05 0.00 +extériorise extérioriser ver 0.61 1.15 0.22 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extérioriser extérioriser ver 0.61 1.15 0.34 0.41 inf; +extériorisez extérioriser ver 0.61 1.15 0.01 0.00 ind:pre:2p; +extériorisé extérioriser ver m s 0.61 1.15 0.03 0.14 par:pas; +extériorisés extérioriser ver m p 0.61 1.15 0.01 0.00 par:pas; +extériorité extériorité nom f s 0.00 0.14 0.00 0.14 +exubérance exubérance nom f s 0.47 3.99 0.47 3.92 +exubérances exubérance nom f p 0.47 3.99 0.00 0.07 +exubérant exubérant adj m s 0.85 2.77 0.32 0.88 +exubérante exubérant adj f s 0.85 2.77 0.32 1.22 +exubérantes exubérant adj f p 0.85 2.77 0.00 0.54 +exubérants exubérant adj m p 0.85 2.77 0.21 0.14 +exécra exécrer ver 0.48 3.18 0.00 0.07 ind:pas:3s; +exécrable exécrable adj s 1.13 2.16 1.08 1.89 +exécrables exécrable adj p 1.13 2.16 0.06 0.27 +exécrais exécrer ver 0.48 3.18 0.01 0.14 ind:imp:1s; +exécrait exécrer ver 0.48 3.18 0.01 0.68 ind:imp:3s; +exécration exécration nom f s 0.00 1.28 0.00 1.22 +exécrations exécration nom f p 0.00 1.28 0.00 0.07 +exécrer exécrer ver 0.48 3.18 0.02 0.27 inf; +exécré exécrer ver m s 0.48 3.18 0.02 0.54 par:pas; +exécrée exécrer ver f s 0.48 3.18 0.02 0.34 par:pas; +exécrées exécrer ver f p 0.48 3.18 0.00 0.07 par:pas; +exécrés exécrer ver m p 0.48 3.18 0.00 0.14 par:pas; +exécuta exécuter ver 25.02 37.77 0.29 2.64 ind:pas:3s; +exécutai exécuter ver 25.02 37.77 0.01 0.54 ind:pas:1s; +exécutaient exécuter ver 25.02 37.77 0.04 1.28 ind:imp:3p; +exécutais exécuter ver 25.02 37.77 0.07 0.41 ind:imp:1s; +exécutait exécuter ver 25.02 37.77 0.14 2.57 ind:imp:3s; +exécutant exécutant nom m s 0.31 1.15 0.15 0.54 +exécutants exécutant nom m p 0.31 1.15 0.16 0.61 +exécute exécuter ver 25.02 37.77 3.07 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +exécutent exécuter ver 25.02 37.77 0.22 1.01 ind:pre:3p; +exécuter exécuter ver 25.02 37.77 7.53 11.22 ind:pre:2p;inf; +exécutera exécuter ver 25.02 37.77 0.31 0.00 ind:fut:3s; +exécuterai exécuter ver 25.02 37.77 0.20 0.07 ind:fut:1s; +exécuteraient exécuter ver 25.02 37.77 0.02 0.00 cnd:pre:3p; +exécuterais exécuter ver 25.02 37.77 0.05 0.07 cnd:pre:1s; +exécuterait exécuter ver 25.02 37.77 0.02 0.27 cnd:pre:3s; +exécuteras exécuter ver 25.02 37.77 0.03 0.00 ind:fut:2s; +exécuterez exécuter ver 25.02 37.77 0.05 0.14 ind:fut:2p; +exécuteriez exécuter ver 25.02 37.77 0.10 0.00 cnd:pre:2p; +exécuterons exécuter ver 25.02 37.77 0.03 0.07 ind:fut:1p; +exécuteront exécuter ver 25.02 37.77 0.07 0.14 ind:fut:3p; +exécutes exécuter ver 25.02 37.77 0.46 0.07 ind:pre:2s; +exécuteur exécuteur nom m s 1.07 0.88 0.97 0.47 +exécuteurs exécuteur nom m p 1.07 0.88 0.08 0.41 +exécutez exécuter ver 25.02 37.77 1.53 0.14 imp:pre:2p;ind:pre:2p; +exécutiez exécuter ver 25.02 37.77 0.03 0.00 ind:imp:2p; +exécutif exécutif adj m s 2.13 1.62 1.26 1.42 +exécutifs exécutif adj m p 2.13 1.62 0.70 0.00 +exécution exécution nom f s 17.49 23.51 15.60 20.68 +exécutions exécution nom f p 17.49 23.51 1.89 2.84 +exécutive exécutif adj f s 2.13 1.62 0.17 0.20 +exécutoire exécutoire adj f s 0.42 0.14 0.42 0.07 +exécutoires exécutoire adj p 0.42 0.14 0.00 0.07 +exécutons exécuter ver 25.02 37.77 0.27 0.00 imp:pre:1p;ind:pre:1p; +exécutrice exécuteur nom f s 1.07 0.88 0.02 0.00 +exécutèrent exécuter ver 25.02 37.77 0.11 0.27 ind:pas:3p; +exécuté exécuter ver m s 25.02 37.77 6.92 6.89 par:pas; +exécutée exécuter ver f s 25.02 37.77 0.96 2.30 par:pas; +exécutées exécuter ver f p 25.02 37.77 0.66 1.01 par:pas; +exécutés exécuter ver m p 25.02 37.77 1.69 2.30 par:pas; +exégèse exégèse nom f s 0.14 0.61 0.14 0.41 +exégèses exégèse nom f p 0.14 0.61 0.00 0.20 +exégète exégète nom s 0.00 0.54 0.00 0.20 +exégètes exégète nom p 0.00 0.54 0.00 0.34 +exulta exulter ver 0.61 4.26 0.00 0.54 ind:pas:3s; +exultai exulter ver 0.61 4.26 0.00 0.20 ind:pas:1s; +exultaient exulter ver 0.61 4.26 0.00 0.14 ind:imp:3p; +exultais exulter ver 0.61 4.26 0.01 0.27 ind:imp:1s; +exultait exulter ver 0.61 4.26 0.01 1.15 ind:imp:3s; +exultant exulter ver 0.61 4.26 0.01 0.27 par:pre; +exultante exultant adj f s 0.01 0.61 0.01 0.20 +exultantes exultant adj f p 0.01 0.61 0.00 0.07 +exultants exultant adj m p 0.01 0.61 0.00 0.07 +exultation exultation nom f s 0.05 0.68 0.05 0.68 +exulte exulter ver 0.61 4.26 0.50 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exultent exulter ver 0.61 4.26 0.01 0.07 ind:pre:3p; +exulter exulter ver 0.61 4.26 0.07 0.14 inf; +exultons exulter ver 0.61 4.26 0.00 0.07 ind:pre:1p; +exultèrent exulter ver 0.61 4.26 0.00 0.14 ind:pas:3p; +exutoire exutoire nom m s 0.67 0.54 0.67 0.47 +exutoires exutoire nom m p 0.67 0.54 0.00 0.07 +eye_liner eye_liner nom m s 0.22 0.27 0.22 0.27 +eyeliner eyeliner nom m s 0.12 0.00 0.12 0.00 +f f nom m s 26.65 7.09 26.65 7.09 +fîmes faire ver 8813.53 5328.99 0.29 5.47 ind:pas:1p; +fît faire ver 8813.53 5328.99 0.46 14.19 sub:imp:3s; +fîtes faire ver 8813.53 5328.99 0.38 0.07 ind:pas:2p; +fûmes être aux 8074.24 6501.82 0.72 4.05 ind:pas:1p; +fût être aux 8074.24 6501.82 2.16 54.66 sub:imp:3s; +fûtes être aux 8074.24 6501.82 0.14 0.27 ind:pas:2p; +fûts fût nom m p 2.58 17.30 1.01 3.24 +führer führer nom m s 23.86 4.59 23.84 4.59 +führers führer nom m p 23.86 4.59 0.02 0.00 +fa fa nom m 5.23 1.08 5.23 1.08 +faînes faîne nom m p 0.00 0.07 0.00 0.07 +faîtage faîtage nom m s 0.00 0.47 0.00 0.27 +faîtages faîtage nom m p 0.00 0.47 0.00 0.20 +faîte faîte nom m s 56.42 7.03 56.42 7.03 +faîtes_la_moi faîtes_la_moi nom m p 0.01 0.00 0.01 0.00 +faîtière faîtier adj f s 0.02 0.07 0.02 0.00 +faîtières faîtier adj f p 0.02 0.07 0.00 0.07 +faïence faïence nom f s 0.28 9.86 0.28 8.85 +faïencerie faïencerie nom f s 0.00 0.14 0.00 0.14 +faïences faïence nom f p 0.28 9.86 0.00 1.01 +faïencier faïencier nom m s 0.00 0.14 0.00 0.07 +faïenciers faïencier nom m p 0.00 0.14 0.00 0.07 +fabiens fabien nom m p 0.00 0.07 0.00 0.07 +fable fable nom f s 2.59 9.80 1.79 5.81 +fables fable nom f p 2.59 9.80 0.80 3.99 +fabliau fabliau nom m s 0.00 0.41 0.00 0.27 +fabliaux fabliau nom m p 0.00 0.41 0.00 0.14 +fabricant fabricant nom m s 3.67 3.45 2.55 2.23 +fabricante fabricant nom f s 3.67 3.45 0.00 0.07 +fabricantes fabricant nom f p 3.67 3.45 0.00 0.07 +fabricants fabricant nom m p 3.67 3.45 1.12 1.08 +fabrication fabrication nom f s 4.07 7.97 4.06 6.55 +fabrications fabrication nom f p 4.07 7.97 0.01 1.42 +fabriqua fabriquer ver 40.37 47.57 0.05 0.47 ind:pas:3s; +fabriquai fabriquer ver 40.37 47.57 0.00 0.20 ind:pas:1s; +fabriquaient fabriquer ver 40.37 47.57 0.40 1.15 ind:imp:3p; +fabriquais fabriquer ver 40.37 47.57 0.46 0.95 ind:imp:1s;ind:imp:2s; +fabriquait fabriquer ver 40.37 47.57 0.93 4.53 ind:imp:3s; +fabriquant fabriquer ver 40.37 47.57 0.67 0.95 par:pre; +fabrique fabriquer ver 40.37 47.57 7.50 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fabriquent fabriquer ver 40.37 47.57 3.06 1.35 ind:pre:3p; +fabriquer fabriquer ver 40.37 47.57 6.97 13.51 inf; +fabriquera fabriquer ver 40.37 47.57 0.19 0.07 ind:fut:3s; +fabriquerai fabriquer ver 40.37 47.57 0.06 0.14 ind:fut:1s; +fabriquerais fabriquer ver 40.37 47.57 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +fabriquerait fabriquer ver 40.37 47.57 0.00 0.47 cnd:pre:3s; +fabriquerez fabriquer ver 40.37 47.57 0.04 0.00 ind:fut:2p; +fabriquerons fabriquer ver 40.37 47.57 0.01 0.00 ind:fut:1p; +fabriqueront fabriquer ver 40.37 47.57 0.01 0.00 ind:fut:3p; +fabriques fabriquer ver 40.37 47.57 6.32 0.88 ind:pre:2s; +fabriquez fabriquer ver 40.37 47.57 1.72 0.54 imp:pre:2p;ind:pre:2p; +fabriquiez fabriquer ver 40.37 47.57 0.22 0.07 ind:imp:2p; +fabriquions fabriquer ver 40.37 47.57 0.02 0.34 ind:imp:1p; +fabriquons fabriquer ver 40.37 47.57 0.35 0.20 imp:pre:1p;ind:pre:1p; +fabriquèrent fabriquer ver 40.37 47.57 0.02 0.20 ind:pas:3p; +fabriqué fabriquer ver m s 40.37 47.57 7.51 8.18 par:pas; +fabriquée fabriquer ver f s 40.37 47.57 1.93 2.97 par:pas; +fabriquées fabriquer ver f p 40.37 47.57 0.84 1.49 par:pas; +fabriqués fabriquer ver m p 40.37 47.57 0.93 2.43 par:pas; +fabulateur fabulateur adj m s 0.00 0.07 0.00 0.07 +fabulation fabulation nom f s 0.14 0.41 0.03 0.20 +fabulations fabulation nom f p 0.14 0.41 0.11 0.20 +fabulatrice fabulateur nom f s 0.00 0.07 0.00 0.07 +fabule fabuler ver 0.42 0.34 0.31 0.07 ind:pre:1s;ind:pre:3s; +fabuler fabuler ver 0.42 0.34 0.02 0.20 inf; +fabuleuse fabuleux adj f s 15.34 17.50 3.48 4.73 +fabuleusement fabuleusement adv 0.29 0.74 0.29 0.74 +fabuleuses fabuleux adj f p 15.34 17.50 0.76 2.91 +fabuleux fabuleux adj m 15.34 17.50 11.10 9.86 +fabulez fabuler ver 0.42 0.34 0.06 0.00 ind:pre:2p; +fabuliste fabuliste nom s 0.00 0.07 0.00 0.07 +fabulé fabuler ver m s 0.42 0.34 0.02 0.07 par:pas; +fac_similé fac_similé nom m s 0.03 0.34 0.02 0.27 +fac_similé fac_similé nom m p 0.03 0.34 0.01 0.07 +fac fac nom f s 29.65 2.36 28.94 2.09 +face_à_face face_à_face nom m 0.00 0.47 0.00 0.47 +face_à_main face_à_main nom m s 0.00 0.54 0.00 0.54 +face face nom f s 125.32 270.88 124.33 262.16 +faces_à_main faces_à_main nom m p 0.00 0.07 0.00 0.07 +faces face nom f p 125.32 270.88 0.98 8.72 +facette facette nom f s 1.21 3.18 0.67 0.07 +facettes facette nom f p 1.21 3.18 0.55 3.11 +facettés facetter ver m p 0.00 0.07 0.00 0.07 par:pas; +facho facho nom m s 1.17 0.54 0.48 0.00 +fachos facho nom m p 1.17 0.54 0.69 0.54 +facial facial adj m s 2.29 0.54 0.69 0.20 +faciale facial adj f s 2.29 0.54 1.04 0.20 +faciales facial adj f p 2.29 0.54 0.21 0.07 +faciaux facial adj m p 2.29 0.54 0.34 0.07 +facile facile adj s 159.35 98.65 153.57 88.65 +facilement facilement adv 26.85 37.03 26.85 37.03 +faciles facile adj p 159.35 98.65 5.78 10.00 +facilita faciliter ver 8.75 12.57 0.01 0.07 ind:pas:3s; +facilitaient faciliter ver 8.75 12.57 0.01 0.47 ind:imp:3p; +facilitait faciliter ver 8.75 12.57 0.16 1.42 ind:imp:3s; +facilitant faciliter ver 8.75 12.57 0.09 0.14 par:pre; +facilitateur facilitateur nom m s 0.03 0.00 0.03 0.00 +facilitation facilitation nom f s 0.03 0.00 0.03 0.00 +facilite faciliter ver 8.75 12.57 1.39 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +facilitent faciliter ver 8.75 12.57 0.08 0.54 ind:pre:3p; +faciliter faciliter ver 8.75 12.57 4.07 5.14 inf; +facilitera faciliter ver 8.75 12.57 0.73 0.07 ind:fut:3s; +faciliterai faciliter ver 8.75 12.57 0.06 0.00 ind:fut:1s; +faciliteraient faciliter ver 8.75 12.57 0.00 0.07 cnd:pre:3p; +faciliterais faciliter ver 8.75 12.57 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +faciliterait faciliter ver 8.75 12.57 0.69 0.74 cnd:pre:3s; +faciliteront faciliter ver 8.75 12.57 0.04 0.14 ind:fut:3p; +facilitez faciliter ver 8.75 12.57 0.33 0.00 imp:pre:2p;ind:pre:2p; +facilitons faciliter ver 8.75 12.57 0.01 0.00 ind:pre:1p; +facilité facilité nom f s 2.09 15.07 1.47 11.55 +facilitée faciliter ver f s 8.75 12.57 0.06 0.47 par:pas; +facilitées faciliter ver f p 8.75 12.57 0.02 0.20 par:pas; +facilités facilité nom f p 2.09 15.07 0.62 3.51 +faciès faciès nom m 0.21 2.09 0.21 2.09 +faconde faconde nom f s 0.00 1.62 0.00 1.62 +facs fac nom f p 29.65 2.36 0.71 0.27 +facteur facteur nom m s 12.26 14.32 9.67 12.36 +facteurs facteur nom m p 12.26 14.32 2.54 1.96 +factice factice adj s 0.79 3.65 0.43 2.77 +factices factice adj p 0.79 3.65 0.36 0.88 +factieux factieux nom m 0.24 0.14 0.24 0.14 +faction faction nom f s 1.52 4.73 0.69 3.72 +factionnaire factionnaire nom s 0.04 1.69 0.00 0.95 +factionnaires factionnaire nom p 0.04 1.69 0.04 0.74 +factions faction nom f p 1.52 4.73 0.83 1.01 +factor factor nom m s 0.03 0.00 0.03 0.00 +factorielle factoriel nom f s 0.01 0.14 0.01 0.07 +factorielles factoriel nom f p 0.01 0.14 0.00 0.07 +factorisation factorisation nom f s 0.01 0.00 0.01 0.00 +factoriser factoriser ver 0.04 0.00 0.04 0.00 inf; +factotum factotum nom m s 0.66 1.15 0.66 0.95 +factotums factotum nom m p 0.66 1.15 0.00 0.20 +factrice facteur nom f s 12.26 14.32 0.06 0.00 +factuel factuel adj m s 0.15 0.00 0.11 0.00 +factuelles factuel adj f p 0.15 0.00 0.03 0.00 +factuels factuel adj m p 0.15 0.00 0.01 0.00 +factum factum nom m s 0.00 0.34 0.00 0.27 +factums factum nom m p 0.00 0.34 0.00 0.07 +facturation facturation nom f s 0.26 0.07 0.26 0.07 +facture facture nom f s 22.61 8.72 12.24 4.66 +facturent facturer ver 1.90 0.14 0.09 0.00 ind:pre:3p; +facturer facturer ver 1.90 0.14 0.56 0.00 inf; +facturera facturer ver 1.90 0.14 0.05 0.00 ind:fut:3s; +facturerait facturer ver 1.90 0.14 0.00 0.07 cnd:pre:3s; +factures facture nom f p 22.61 8.72 10.37 4.05 +facturette facturette nom f s 0.01 0.00 0.01 0.00 +facturez facturer ver 1.90 0.14 0.20 0.00 imp:pre:2p;ind:pre:2p; +facturier facturier nom m s 0.14 0.14 0.14 0.00 +facturière facturier nom f s 0.14 0.14 0.00 0.14 +facturons facturer ver 1.90 0.14 0.05 0.07 imp:pre:1p;ind:pre:1p; +facturé facturer ver m s 1.90 0.14 0.30 0.00 par:pas; +facturée facturer ver f s 1.90 0.14 0.05 0.00 par:pas; +facturées facturer ver f p 1.90 0.14 0.02 0.00 par:pas; +facturés facturer ver m p 1.90 0.14 0.04 0.00 par:pas; +facultatif facultatif adj m s 0.44 0.47 0.14 0.14 +facultatifs facultatif adj m p 0.44 0.47 0.09 0.14 +facultative facultatif adj f s 0.44 0.47 0.21 0.20 +faculté faculté nom f s 8.73 17.30 5.93 13.85 +facultés faculté nom f p 8.73 17.30 2.80 3.45 +facétie facétie nom f s 0.17 1.96 0.14 0.54 +facéties facétie nom f p 0.17 1.96 0.02 1.42 +facétieuse facétieux adj f s 0.08 1.49 0.01 0.47 +facétieusement facétieusement adv 0.00 0.34 0.00 0.34 +facétieuses facétieux adj f p 0.08 1.49 0.00 0.14 +facétieux facétieux adj m s 0.08 1.49 0.07 0.88 +fada fada adj m s 1.81 0.47 1.81 0.47 +fadaise fadaise nom f s 0.62 1.49 0.00 0.07 +fadaises fadaise nom f p 0.62 1.49 0.62 1.42 +fadas fada nom p 0.70 0.68 0.28 0.34 +fadasse fadasse adj s 0.04 1.08 0.04 0.88 +fadasses fadasse adj f p 0.04 1.08 0.00 0.20 +fade fade adj s 2.06 14.93 1.51 10.34 +fadement fadement adv 0.00 0.07 0.00 0.07 +fadent fader ver 0.01 1.76 0.00 0.07 ind:pre:3p; +fader fader ver 0.01 1.76 0.01 0.61 inf; +faderas fader ver 0.01 1.76 0.00 0.07 ind:fut:2s; +fades fade adj p 2.06 14.93 0.55 4.59 +fadette fadette nom f s 0.00 0.47 0.00 0.47 +fadeur fadeur nom f s 0.32 1.82 0.32 1.49 +fadeurs fadeur nom f p 0.32 1.82 0.00 0.34 +fading fading nom m s 0.01 0.07 0.01 0.07 +fado fado nom m s 3.33 0.00 3.33 0.00 +fadé fader ver m s 0.01 1.76 0.00 0.27 par:pas; +fadée fadé adj f s 0.00 0.34 0.00 0.14 +fadés fader ver m p 0.01 1.76 0.00 0.07 par:pas; +faena faena nom f s 0.00 0.07 0.00 0.07 +faf faf nom m s 0.07 0.88 0.04 0.00 +fafiot fafiot nom m s 0.28 0.74 0.00 0.07 +fafiots fafiot nom m p 0.28 0.74 0.28 0.68 +fafs faf nom m p 0.07 0.88 0.03 0.88 +fagne fagne nom f s 0.00 0.34 0.00 0.20 +fagnes fagne nom f p 0.00 0.34 0.00 0.14 +fagot fagot nom m s 0.19 10.68 0.03 2.64 +fagotage fagotage nom m s 0.00 0.07 0.00 0.07 +fagotait fagoter ver 0.05 1.15 0.00 0.07 ind:imp:3s; +fagotant fagoter ver 0.05 1.15 0.00 0.07 par:pre; +fagote fagoter ver 0.05 1.15 0.00 0.07 ind:pre:1s; +fagoter fagoter ver 0.05 1.15 0.00 0.27 inf; +fagotiers fagotier nom m p 0.00 0.07 0.00 0.07 +fagotin fagotin nom m s 0.00 0.27 0.00 0.14 +fagotins fagotin nom m p 0.00 0.27 0.00 0.14 +fagots fagot nom m p 0.19 10.68 0.16 8.04 +fagoté fagoté adj m s 0.30 0.74 0.13 0.34 +fagotée fagoté adj f s 0.30 0.74 0.09 0.27 +fagotées fagoté adj f p 0.30 0.74 0.02 0.14 +fagotés fagoté adj m p 0.30 0.74 0.06 0.00 +fahrenheit fahrenheit adj m p 0.15 0.07 0.15 0.07 +faiblît faiblir ver 2.62 7.03 0.00 0.14 sub:imp:3s; +faiblard faiblard adj m s 0.23 1.76 0.19 1.15 +faiblarde faiblard adj f s 0.23 1.76 0.03 0.27 +faiblards faiblard adj m p 0.23 1.76 0.01 0.34 +faible faible adj s 38.78 53.65 31.03 40.95 +faiblement faiblement adv 0.65 16.89 0.65 16.89 +faibles faible adj p 38.78 53.65 7.75 12.70 +faiblesse faiblesse nom f s 14.71 31.62 11.32 25.34 +faiblesses faiblesse nom f p 14.71 31.62 3.38 6.28 +faibli faiblir ver m s 2.62 7.03 0.15 0.74 par:pas; +faiblir faiblir ver 2.62 7.03 0.73 2.77 inf; +faiblira faiblir ver 2.62 7.03 0.08 0.07 ind:fut:3s; +faiblirent faiblir ver 2.62 7.03 0.00 0.14 ind:pas:3p; +faiblis faiblir ver 2.62 7.03 0.16 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +faiblissaient faiblir ver 2.62 7.03 0.00 0.27 ind:imp:3p; +faiblissais faiblir ver 2.62 7.03 0.00 0.14 ind:imp:1s; +faiblissait faiblir ver 2.62 7.03 0.04 1.15 ind:imp:3s; +faiblissant faiblir ver 2.62 7.03 0.00 0.20 par:pre; +faiblissante faiblissant adj f s 0.16 0.07 0.02 0.00 +faiblissantes faiblissant adj f p 0.16 0.07 0.14 0.07 +faiblisse faiblir ver 2.62 7.03 0.11 0.14 sub:pre:3s; +faiblissent faiblir ver 2.62 7.03 0.11 0.27 ind:pre:3p; +faiblissez faiblir ver 2.62 7.03 0.01 0.00 ind:pre:2p; +faiblissions faiblir ver 2.62 7.03 0.14 0.07 ind:imp:1p; +faiblit faiblir ver 2.62 7.03 1.10 0.88 ind:pre:3s;ind:pas:3s; +faignant faignant nom m s 0.16 0.20 0.01 0.07 +faignante faignanter ver 0.10 0.00 0.10 0.00 sub:pre:3s; +faignants faignant nom m p 0.16 0.20 0.14 0.14 +faillîmes faillir ver 44.19 43.65 0.01 0.07 ind:pas:1p; +faillait failler ver 1.84 1.96 0.01 0.00 ind:imp:3s; +faille faille nom f s 4.71 9.59 3.85 7.43 +failles faille nom f p 4.71 9.59 0.86 2.16 +failli faillir ver m s 44.19 43.65 42.70 22.43 par:pas; +faillibilité faillibilité nom f s 0.01 0.07 0.01 0.00 +faillibilités faillibilité nom f p 0.01 0.07 0.00 0.07 +faillible faillible adj s 0.09 0.34 0.06 0.27 +faillibles faillible adj m p 0.09 0.34 0.04 0.07 +faillie faillie adj m p 0.10 0.07 0.10 0.00 +faillies faillie adj m p 0.10 0.07 0.00 0.07 +faillir faillir ver 44.19 43.65 0.39 0.95 inf; +faillirai faillir ver 44.19 43.65 0.03 0.07 ind:fut:1s; +faillirent faillir ver 44.19 43.65 0.14 0.81 ind:pas:3p; +faillis faillir ver 44.19 43.65 0.27 3.11 ind:pas:1s;ind:pas:2s; +faillit faillir ver 44.19 43.65 0.66 16.22 ind:pas:3s; +faillite faillite nom f s 6.94 7.77 6.74 7.16 +faillites faillite nom f p 6.94 7.77 0.20 0.61 +faim faim nom f s 128.04 75.95 127.49 74.93 +faims faim nom f p 128.04 75.95 0.55 1.01 +faine faine nom f s 1.77 0.07 1.77 0.07 +fainéant fainéant nom m s 3.87 1.69 1.59 0.81 +fainéantais fainéanter ver 0.07 0.34 0.00 0.07 ind:imp:1s; +fainéantant fainéanter ver 0.07 0.34 0.00 0.07 par:pre; +fainéante fainéant nom f s 3.87 1.69 0.37 0.14 +fainéanter fainéanter ver 0.07 0.34 0.04 0.14 inf; +fainéantes fainéant adj f p 1.66 1.89 0.12 0.00 +fainéantise fainéantise nom f s 0.04 0.34 0.04 0.34 +fainéants fainéant nom m p 3.87 1.69 1.81 0.74 +fair_play fair_play nom m 0.60 0.14 0.60 0.14 +faire_part faire_part nom m 0.65 3.04 0.65 3.04 +faire_valoir faire_valoir nom m 0.20 0.68 0.20 0.68 +faire faire ver 8813.53 5328.99 2735.96 1555.14 inf;;inf;;inf;;inf;; +fais faire ver 8813.53 5328.99 1390.92 224.26 imp:pre:2s;ind:pre:1s;ind:pre:2s; +faisabilité faisabilité nom f s 0.19 0.00 0.19 0.00 +faisable faisable adj s 3.63 0.95 3.63 0.95 +faisaient faire ver 8813.53 5328.99 20.25 123.38 ind:imp:3p; +faisais faire ver 8813.53 5328.99 75.81 60.54 ind:imp:1s;ind:imp:2s; +faisait faire ver 8813.53 5328.99 134.90 524.73 ind:imp:3s; +faisan faisan nom m s 1.13 4.12 0.98 1.69 +faisander faisander ver 0.06 0.41 0.04 0.07 inf; +faisanderie faisanderie nom f s 0.00 0.27 0.00 0.27 +faisandé faisandé adj m s 0.12 1.15 0.02 0.47 +faisandée faisandé adj f s 0.12 1.15 0.10 0.41 +faisandées faisandé adj f p 0.12 1.15 0.00 0.07 +faisandés faisandé adj m p 0.12 1.15 0.00 0.20 +faisane faisan nom f s 1.13 4.12 0.00 0.34 +faisans faisan nom m p 1.13 4.12 0.14 2.09 +faisant faire ver 8813.53 5328.99 30.88 118.11 par:pre; +faisceau faisceau nom m s 1.71 10.00 1.27 6.82 +faisceaux faisceau nom m p 1.71 10.00 0.44 3.18 +faiseur faiseur nom m s 1.86 3.24 0.88 1.42 +faiseurs faiseur nom m p 1.86 3.24 0.60 0.74 +faiseuse faiseur nom f s 1.86 3.24 0.38 0.54 +faiseuses faiseuse nom f p 0.04 0.00 0.04 0.00 +faisiez faire ver 8813.53 5328.99 15.98 3.31 ind:imp:2p; +faisions faire ver 8813.53 5328.99 5.01 12.16 ind:imp:1p; +faisons faire ver 8813.53 5328.99 64.49 15.88 imp:pre:1p;ind:pre:1p; +fait_divers fait_divers nom m 0.00 0.20 0.00 0.20 +fait_tout fait_tout nom m 0.01 0.74 0.01 0.74 +fait faire ver m s 8813.53 5328.99 2751.99 1459.26 ind:pre:3s;par:pas;par:pas; +faite faire ver f s 8813.53 5328.99 0.14 59.39 par:pas; +faites faire ver f p 8813.53 5328.99 541.80 93.31 imp:pre:2p;ind:pre:2p;par:pas;;imp:pre:2p;ind:pre:2p;par:pas; +faitout faitout nom m s 0.20 0.14 0.20 0.07 +faitouts faitout nom m p 0.20 0.14 0.00 0.07 +faits_divers faits_divers nom m p 0.00 0.07 0.00 0.07 +faits fait nom m p 412.07 355.54 27.36 30.27 +faix faix nom m 0.10 0.68 0.10 0.68 +fakir fakir nom m s 0.72 1.22 0.45 0.88 +fakirs fakir nom m p 0.72 1.22 0.28 0.34 +falaise falaise nom f s 5.85 20.68 4.45 15.47 +falaises falaise nom f p 5.85 20.68 1.41 5.20 +falbala falbala nom m s 0.16 1.55 0.14 0.41 +falbalas falbala nom m p 0.16 1.55 0.02 1.15 +falciforme falciforme adj s 0.01 0.07 0.01 0.07 +falerne falerne nom m s 0.00 0.07 0.00 0.07 +fallût falloir ver_sup 1653.77 1250.41 0.01 0.27 sub:imp:3s; +fallacieuse fallacieux adj f s 0.23 2.30 0.13 0.54 +fallacieusement fallacieusement adv 0.01 0.20 0.01 0.20 +fallacieuses fallacieux adj f p 0.23 2.30 0.00 0.41 +fallacieux fallacieux adj m 0.23 2.30 0.10 1.35 +fallait falloir ver_sup 1653.77 1250.41 110.88 310.61 ind:imp:3s; +falloir falloir ver_sup 1653.77 1250.41 39.78 17.77 inf; +fallu falloir ver_sup m s 1653.77 1250.41 23.82 68.04 par:pas; +fallut falloir ver_sup 1653.77 1250.41 1.35 26.89 ind:pas:3s; +falot falot nom m s 0.11 0.88 0.11 0.68 +falote falot adj f s 0.04 1.76 0.01 0.54 +falotes falot adj f p 0.04 1.76 0.00 0.14 +falots falot adj m p 0.04 1.76 0.01 0.20 +falsifiaient falsifier ver 2.50 1.35 0.01 0.00 ind:imp:3p; +falsifiais falsifier ver 2.50 1.35 0.00 0.07 ind:imp:1s; +falsifiait falsifier ver 2.50 1.35 0.15 0.07 ind:imp:3s; +falsifiant falsifier ver 2.50 1.35 0.01 0.07 par:pre; +falsification falsification nom f s 0.37 0.27 0.37 0.27 +falsifient falsifier ver 2.50 1.35 0.02 0.00 ind:pre:3p; +falsifier falsifier ver 2.50 1.35 0.68 0.20 inf; +falsifiez falsifier ver 2.50 1.35 0.02 0.00 imp:pre:2p;ind:pre:2p; +falsifié falsifier ver m s 2.50 1.35 0.86 0.27 par:pas; +falsifiée falsifier ver f s 2.50 1.35 0.41 0.27 par:pas; +falsifiées falsifier ver f p 2.50 1.35 0.10 0.20 par:pas; +falsifiés falsifier ver m p 2.50 1.35 0.25 0.20 par:pas; +faluche faluche nom f s 0.00 0.14 0.00 0.14 +falzar falzar nom m s 0.36 1.01 0.29 0.88 +falzars falzar nom m p 0.36 1.01 0.07 0.14 +fameuse fameux adj f s 18.67 53.11 4.74 16.28 +fameusement fameusement adv 0.02 0.07 0.02 0.07 +fameuses fameux adj f p 18.67 53.11 1.17 3.51 +fameux fameux adj m 18.67 53.11 12.77 33.31 +familial familial adj m s 15.66 32.84 5.00 12.36 +familiale familial adj f s 15.66 32.84 7.22 12.97 +familiales familial adj f p 15.66 32.84 1.97 4.80 +familialiste familialiste nom s 0.00 0.07 0.00 0.07 +familiarisa familiariser ver 0.89 2.36 0.00 0.20 ind:pas:3s; +familiarisaient familiariser ver 0.89 2.36 0.00 0.07 ind:imp:3p; +familiarisais familiariser ver 0.89 2.36 0.00 0.07 ind:imp:1s; +familiarisait familiariser ver 0.89 2.36 0.03 0.14 ind:imp:3s; +familiarisant familiariser ver 0.89 2.36 0.00 0.14 par:pre; +familiarise familiariser ver 0.89 2.36 0.10 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +familiarisent familiariser ver 0.89 2.36 0.00 0.07 ind:pre:3p; +familiariser familiariser ver 0.89 2.36 0.51 0.68 inf; +familiariserez familiariser ver 0.89 2.36 0.02 0.00 ind:fut:2p; +familiarisez familiariser ver 0.89 2.36 0.03 0.00 imp:pre:2p;ind:pre:2p; +familiarisé familiariser ver m s 0.89 2.36 0.17 0.61 par:pas; +familiarisée familiariser ver f s 0.89 2.36 0.02 0.27 par:pas; +familiarisés familiariser ver m p 0.89 2.36 0.01 0.07 par:pas; +familiarité familiarité nom f s 1.43 7.30 0.97 7.09 +familiarités familiarité nom f p 1.43 7.30 0.46 0.20 +familiaux familial adj m p 15.66 32.84 1.47 2.70 +familier familier adj m s 11.30 47.91 7.77 18.31 +familiers familier adj m p 11.30 47.91 1.54 11.55 +familistère familistère nom m s 0.00 0.07 0.00 0.07 +familière familier adj f s 11.30 47.91 1.63 13.11 +familièrement familièrement adv 0.15 2.09 0.15 2.09 +familières familier adj f p 11.30 47.91 0.37 4.93 +famille famille nom f s 384.92 274.39 357.75 241.69 +familles famille nom f p 384.92 274.39 27.16 32.70 +famine famine nom f s 4.88 6.76 4.40 5.61 +famines famine nom f p 4.88 6.76 0.48 1.15 +famé famé adj m s 0.52 1.49 0.38 0.68 +famée famé adj f s 0.52 1.49 0.04 0.14 +famées famé adj f p 0.52 1.49 0.02 0.34 +famélique famélique adj s 0.32 2.57 0.17 1.15 +faméliques famélique adj p 0.32 2.57 0.15 1.42 +famulus famulus nom m 0.00 0.14 0.00 0.14 +famés famé adj m p 0.52 1.49 0.08 0.34 +fan_club fan_club nom m s 0.28 0.14 0.28 0.14 +fan fan nom s 21.43 2.91 13.27 1.49 +fana fana nom s 0.61 0.27 0.43 0.07 +fanaient faner ver 3.73 5.54 0.02 0.47 ind:imp:3p; +fanait faner ver 3.73 5.54 0.00 0.27 ind:imp:3s; +fanal fanal nom m s 0.34 3.24 0.34 2.36 +fanant faner ver 3.73 5.54 0.01 0.00 par:pre; +fanas fana nom p 0.61 0.27 0.18 0.20 +fanatique fanatique nom s 3.56 3.92 1.22 1.69 +fanatiquement fanatiquement adv 0.02 0.34 0.02 0.34 +fanatiques fanatique nom p 3.56 3.92 2.34 2.23 +fanatisait fanatiser ver 0.02 0.81 0.00 0.07 ind:imp:3s; +fanatise fanatiser ver 0.02 0.81 0.00 0.07 ind:pre:3s; +fanatiser fanatiser ver 0.02 0.81 0.00 0.07 inf; +fanatisme fanatisme nom m s 0.54 2.84 0.54 2.70 +fanatismes fanatisme nom m p 0.54 2.84 0.00 0.14 +fanatisé fanatiser ver m s 0.02 0.81 0.00 0.20 par:pas; +fanatisés fanatiser ver m p 0.02 0.81 0.02 0.41 par:pas; +fanaux fanal nom m p 0.34 3.24 0.00 0.88 +fanchon fanchon nom f s 0.00 0.07 0.00 0.07 +fandango fandango nom m s 0.38 0.00 0.38 0.00 +fane faner ver 3.73 5.54 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fanent faner ver 3.73 5.54 0.95 0.47 ind:pre:3p; +faner faner ver 3.73 5.54 0.89 1.01 inf; +fanera faner ver 3.73 5.54 0.28 0.07 ind:fut:3s; +faneraient faner ver 3.73 5.54 0.01 0.07 cnd:pre:3p; +fanerait faner ver 3.73 5.54 0.00 0.07 cnd:pre:3s; +faneras faner ver 3.73 5.54 0.10 0.07 ind:fut:2s; +fanerions faner ver 3.73 5.54 0.10 0.00 cnd:pre:1p; +faneront faner ver 3.73 5.54 0.05 0.00 ind:fut:3p; +fanes faner ver 3.73 5.54 0.01 0.00 ind:pre:2s; +faneuse faneur nom f s 0.00 0.27 0.00 0.20 +faneuses faneur nom f p 0.00 0.27 0.00 0.07 +fanez faner ver 3.73 5.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +fanfan fanfan nom m s 1.22 0.00 1.22 0.00 +fanfare fanfare nom f s 4.07 5.27 3.80 3.72 +fanfares fanfare nom f p 4.07 5.27 0.27 1.55 +fanfaron fanfaron nom m s 0.90 0.47 0.68 0.20 +fanfaronna fanfaronner ver 0.42 0.74 0.00 0.14 ind:pas:3s; +fanfaronnade fanfaronnade nom f s 0.40 0.74 0.18 0.54 +fanfaronnades fanfaronnade nom f p 0.40 0.74 0.22 0.20 +fanfaronnaient fanfaronner ver 0.42 0.74 0.00 0.14 ind:imp:3p; +fanfaronnait fanfaronner ver 0.42 0.74 0.00 0.14 ind:imp:3s; +fanfaronnant fanfaronner ver 0.42 0.74 0.02 0.07 par:pre; +fanfaronne fanfaronner ver 0.42 0.74 0.34 0.14 imp:pre:2s;ind:pre:3s; +fanfaronner fanfaronner ver 0.42 0.74 0.05 0.07 inf; +fanfaronnes fanfaronner ver 0.42 0.74 0.01 0.00 ind:pre:2s; +fanfaronné fanfaronner ver m s 0.42 0.74 0.00 0.07 par:pas; +fanfarons fanfaron nom m p 0.90 0.47 0.22 0.20 +fanfreluche fanfreluche nom f s 0.16 1.42 0.02 0.00 +fanfreluches fanfreluche nom f p 0.16 1.42 0.14 1.42 +fang fang adj f s 0.03 0.07 0.03 0.07 +fange fange nom f s 0.74 1.96 0.74 1.89 +fanges fange nom f p 0.74 1.96 0.00 0.07 +fangeuse fangeux adj f s 0.18 2.09 0.14 0.54 +fangeuses fangeux adj f p 0.18 2.09 0.01 0.14 +fangeux fangeux adj m 0.18 2.09 0.02 1.42 +fanion fanion nom m s 0.25 3.51 0.16 2.64 +fanions fanion nom m p 0.25 3.51 0.09 0.88 +fanny fanny adj f s 1.06 0.14 1.06 0.14 +fanon fanon nom m s 0.04 0.61 0.03 0.07 +fanons fanon nom m p 0.04 0.61 0.01 0.54 +fans fan nom p 21.43 2.91 8.17 1.42 +fantôme fantôme nom m s 48.23 35.88 29.71 20.74 +fantômes fantôme nom m p 48.23 35.88 18.52 15.14 +fantaisie fantaisie nom f s 6.98 16.89 5.57 14.26 +fantaisies fantaisie nom f p 6.98 16.89 1.41 2.64 +fantaisiste fantaisiste adj s 0.80 1.76 0.59 0.68 +fantaisistes fantaisiste adj p 0.80 1.76 0.20 1.08 +fantasia fantasia nom f s 0.33 0.54 0.33 0.54 +fantasmagorie fantasmagorie nom f s 0.17 0.88 0.17 0.81 +fantasmagories fantasmagorie nom f p 0.17 0.88 0.00 0.07 +fantasmagorique fantasmagorique adj m s 0.00 0.14 0.00 0.14 +fantasmaient fantasmer ver 2.04 1.08 0.01 0.07 ind:imp:3p; +fantasmais fantasmer ver 2.04 1.08 0.04 0.07 ind:imp:1s;ind:imp:2s; +fantasmait fantasmer ver 2.04 1.08 0.03 0.20 ind:imp:3s; +fantasmatique fantasmatique adj f s 0.03 0.14 0.03 0.14 +fantasmatiquement fantasmatiquement adv 0.00 0.14 0.00 0.14 +fantasme fantasme nom m s 9.18 6.35 4.64 1.49 +fantasment fantasmer ver 2.04 1.08 0.04 0.00 ind:pre:3p; +fantasmer fantasmer ver 2.04 1.08 0.86 0.34 inf; +fantasmes fantasme nom m p 9.18 6.35 4.54 4.86 +fantasmez fantasmer ver 2.04 1.08 0.21 0.00 imp:pre:2p;ind:pre:2p; +fantasmé fantasmer ver m s 2.04 1.08 0.33 0.07 par:pas; +fantasmés fantasmer ver m p 2.04 1.08 0.01 0.00 par:pas; +fantasque fantasque adj s 0.88 3.72 0.52 3.04 +fantasquement fantasquement adv 0.00 0.07 0.00 0.07 +fantasques fantasque adj p 0.88 3.72 0.36 0.68 +fantassin fantassin nom m s 0.78 6.62 0.29 1.96 +fantassins fantassin nom m p 0.78 6.62 0.48 4.66 +fantastique fantastique adj s 26.90 10.34 24.20 7.09 +fantastiquement fantastiquement adv 0.07 0.34 0.07 0.34 +fantastiques fantastique adj p 26.90 10.34 2.69 3.24 +fanti fanti nom m s 0.00 0.07 0.00 0.07 +fantoche fantoche nom m s 0.48 1.28 0.21 0.47 +fantoches fantoche nom m p 0.48 1.28 0.27 0.81 +fantomale fantomal adj f s 0.00 0.14 0.00 0.07 +fantomales fantomal adj f p 0.00 0.14 0.00 0.07 +fantomatique fantomatique adj s 0.20 3.65 0.19 2.77 +fantomatiquement fantomatiquement adv 0.00 0.07 0.00 0.07 +fantomatiques fantomatique adj p 0.20 3.65 0.01 0.88 +fané fané adj m s 0.79 7.57 0.04 2.30 +fanée fané adj f s 0.79 7.57 0.40 1.69 +fanées faner ver f p 3.73 5.54 0.53 0.88 par:pas; +fanés fané adj m p 0.79 7.57 0.14 0.88 +fanzine fanzine nom m s 0.49 0.07 0.17 0.00 +fanzines fanzine nom m p 0.49 0.07 0.32 0.07 +faon faon nom m s 0.53 1.08 0.25 0.54 +faons faon nom m p 0.53 1.08 0.29 0.54 +faquin faquin nom m s 0.45 0.34 0.45 0.20 +faquins faquin nom m p 0.45 0.34 0.00 0.14 +far_west far_west nom m s 0.01 0.07 0.01 0.07 +far far nom m s 0.65 0.07 0.65 0.07 +farad farad nom m s 0.75 0.07 0.75 0.00 +farads farad nom m p 0.75 0.07 0.00 0.07 +faramineuse faramineux adj f s 0.23 0.68 0.01 0.14 +faramineuses faramineux adj f p 0.23 0.68 0.01 0.14 +faramineux faramineux adj m 0.23 0.68 0.20 0.41 +farandolaient farandoler ver 0.00 0.07 0.00 0.07 ind:imp:3p; +farandole farandole nom f s 0.32 1.42 0.32 0.95 +farandoles farandole nom f p 0.32 1.42 0.00 0.47 +faraud faraud adj m s 0.03 1.69 0.02 1.08 +faraude faraud nom f s 0.01 0.61 0.01 0.00 +farauder farauder ver 0.00 0.07 0.00 0.07 inf; +faraudes faraud nom f p 0.01 0.61 0.00 0.07 +farauds faraud adj m p 0.03 1.69 0.01 0.41 +farce farce nom f s 9.35 12.50 7.45 8.99 +farces farce nom f p 9.35 12.50 1.90 3.51 +farceur farceur nom m s 2.05 1.69 1.64 1.15 +farceurs farceur nom m p 2.05 1.69 0.21 0.47 +farceuse farceur nom f s 2.05 1.69 0.20 0.00 +farceuses farceuse nom f p 0.01 0.00 0.01 0.00 +farci farcir ver m s 3.39 12.57 0.89 2.50 par:pas; +farcie farcir ver f s 3.39 12.57 0.47 1.35 par:pas; +farcies farci adj f p 2.41 2.23 0.56 0.74 +farcir farcir ver 3.39 12.57 1.23 4.73 inf; +farcirai farcir ver 3.39 12.57 0.02 0.00 ind:fut:1s; +farcirait farcir ver 3.39 12.57 0.01 0.07 cnd:pre:3s; +farcis farcir ver m p 3.39 12.57 0.64 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +farcissaient farcir ver 3.39 12.57 0.00 0.07 ind:imp:3p; +farcissais farcir ver 3.39 12.57 0.02 0.07 ind:imp:1s;ind:imp:2s; +farcissait farcir ver 3.39 12.57 0.00 0.54 ind:imp:3s; +farcissant farcir ver 3.39 12.57 0.00 0.07 par:pre; +farcisse farcir ver 3.39 12.57 0.01 0.54 sub:pre:1s;sub:pre:3s; +farcissez farcir ver 3.39 12.57 0.01 0.14 imp:pre:2p;ind:pre:2p; +farcit farcir ver 3.39 12.57 0.09 0.88 ind:pre:3s;ind:pas:3s; +fard fard nom m s 1.69 7.57 1.44 4.73 +fardaient farder ver 0.20 8.99 0.00 0.20 ind:imp:3p; +fardait farder ver 0.20 8.99 0.00 0.68 ind:imp:3s; +fardant farder ver 0.20 8.99 0.01 0.00 par:pre; +farde farder ver 0.20 8.99 0.00 0.54 ind:pre:3s; +fardeau fardeau nom m s 7.56 7.70 7.00 6.89 +fardeaux fardeau nom m p 7.56 7.70 0.56 0.81 +fardent farder ver 0.20 8.99 0.00 0.14 ind:pre:3p; +farder farder ver 0.20 8.99 0.03 0.61 inf; +fardier fardier nom m s 0.00 0.34 0.00 0.14 +fardiers fardier nom m p 0.00 0.34 0.00 0.20 +fards fard nom m p 1.69 7.57 0.25 2.84 +fardé farder ver m s 0.20 8.99 0.00 1.55 par:pas; +fardée farder ver f s 0.20 8.99 0.14 2.23 par:pas; +fardées farder ver f p 0.20 8.99 0.03 1.96 par:pas; +fardés farder ver m p 0.20 8.99 0.00 1.08 par:pas; +fare fare nom m s 0.00 0.07 0.00 0.07 +farfadet farfadet nom m s 0.45 0.41 0.31 0.14 +farfadets farfadet nom m p 0.45 0.41 0.14 0.27 +farfelu farfelu adj m s 1.77 1.28 0.93 0.61 +farfelue farfelu adj f s 1.77 1.28 0.35 0.20 +farfelues farfelu adj f p 1.77 1.28 0.18 0.14 +farfelus farfelu adj m p 1.77 1.28 0.32 0.34 +farfouilla farfouiller ver 1.17 4.12 0.00 0.54 ind:pas:3s; +farfouillais farfouiller ver 1.17 4.12 0.05 0.07 ind:imp:1s;ind:imp:2s; +farfouillait farfouiller ver 1.17 4.12 0.00 0.47 ind:imp:3s; +farfouillant farfouiller ver 1.17 4.12 0.02 0.14 par:pre; +farfouille farfouiller ver 1.17 4.12 0.34 0.68 ind:pre:1s;ind:pre:3s; +farfouillent farfouiller ver 1.17 4.12 0.00 0.07 ind:pre:3p; +farfouiller farfouiller ver 1.17 4.12 0.42 1.28 inf; +farfouillerait farfouiller ver 1.17 4.12 0.00 0.07 cnd:pre:3s; +farfouilles farfouiller ver 1.17 4.12 0.04 0.20 ind:pre:2s; +farfouilleurs farfouilleur adj m p 0.00 0.07 0.00 0.07 +farfouillez farfouiller ver 1.17 4.12 0.14 0.14 ind:pre:2p; +farfouillé farfouiller ver m s 1.17 4.12 0.15 0.47 par:pas; +faribole faribole nom f s 0.23 1.49 0.00 0.27 +fariboler fariboler ver 0.00 0.07 0.00 0.07 inf; +fariboles faribole nom f p 0.23 1.49 0.23 1.22 +farigoule farigoule nom f s 0.00 0.07 0.00 0.07 +farine farine nom f s 7.95 13.72 7.93 13.51 +farines farine nom f p 7.95 13.72 0.02 0.20 +farineuse farineux adj f s 0.03 1.08 0.00 0.41 +farineuses farineux adj f p 0.03 1.08 0.03 0.14 +farineux farineux adj m s 0.03 1.08 0.00 0.54 +farinée fariner ver f s 0.00 0.14 0.00 0.07 par:pas; +farinés fariner ver m p 0.00 0.14 0.00 0.07 par:pas; +farniente farniente nom m s 0.36 0.47 0.36 0.47 +faro faro nom m s 0.16 0.07 0.16 0.07 +farouche farouche adj s 2.39 15.20 1.90 11.62 +farouchement farouchement adv 0.26 4.05 0.26 4.05 +farouches farouche adj p 2.39 15.20 0.49 3.58 +farsi farsi nom m s 0.39 0.00 0.39 0.00 +fart fart nom m s 0.42 0.00 0.42 0.00 +farter farter ver 0.02 0.00 0.02 0.00 inf; +fascia fascia nom m s 0.07 0.00 0.07 0.00 +fascicule fascicule nom m s 0.02 0.95 0.01 0.34 +fascicules fascicule nom m p 0.02 0.95 0.01 0.61 +fascina fasciner ver 9.34 28.78 0.10 0.68 ind:pas:3s; +fascinaient fasciner ver 9.34 28.78 0.30 1.42 ind:imp:3p; +fascinais fasciner ver 9.34 28.78 0.00 0.07 ind:imp:1s; +fascinait fasciner ver 9.34 28.78 0.62 4.93 ind:imp:3s; +fascinant fascinant adj m s 11.64 5.54 7.78 2.91 +fascinante fascinant adj f s 11.64 5.54 2.47 1.42 +fascinantes fascinant adj f p 11.64 5.54 0.66 0.54 +fascinants fascinant adj m p 11.64 5.54 0.74 0.68 +fascination fascination nom f s 2.67 7.50 2.66 7.30 +fascinations fascination nom f p 2.67 7.50 0.01 0.20 +fascine fasciner ver 9.34 28.78 2.24 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fascinent fasciner ver 9.34 28.78 0.44 0.95 ind:pre:3p; +fasciner fasciner ver 9.34 28.78 0.35 0.88 inf; +fascinerait fasciner ver 9.34 28.78 0.01 0.07 cnd:pre:3s; +fascines fasciner ver 9.34 28.78 0.04 0.00 ind:pre:2s; +fascinez fasciner ver 9.34 28.78 0.04 0.00 ind:pre:2p; +fascinèrent fasciner ver 9.34 28.78 0.00 0.20 ind:pas:3p; +fasciné fasciner ver m s 9.34 28.78 2.67 9.46 par:pas; +fascinée fasciner ver f s 9.34 28.78 0.60 3.72 par:pas; +fascinées fasciner ver f p 9.34 28.78 0.05 0.14 par:pas; +fascinés fasciner ver m p 9.34 28.78 0.58 2.77 par:pas; +fascisme fascisme nom m s 1.94 6.76 1.94 6.76 +fasciste fasciste adj s 6.93 4.93 3.89 3.58 +fascistes fasciste adj p 6.93 4.93 3.04 1.35 +fascisée fasciser ver f s 0.00 0.07 0.00 0.07 par:pas; +faseyaient faseyer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +faseyait faseyer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +fashion fashion nom f s 0.28 0.00 0.28 0.00 +fashionable fashionable adj m s 0.00 0.20 0.00 0.20 +fasse faire ver 8813.53 5328.99 93.83 60.88 sub:pre:1s;sub:pre:3s; +fassent faire ver 8813.53 5328.99 9.05 7.30 sub:pre:3p; +fasses faire ver 8813.53 5328.99 20.20 2.84 sub:pre:2s; +fassiez faire ver 8813.53 5328.99 8.46 2.64 sub:pre:2p; +fassions faire ver 8813.53 5328.99 1.63 2.09 sub:pre:1p; +fast_food fast_food nom m s 2.34 0.47 1.56 0.34 +fast_food fast_food nom m p 2.34 0.47 0.34 0.07 +fast_food fast_food nom m s 2.34 0.47 0.43 0.07 +faste faste adj s 0.57 1.28 0.53 0.61 +fastes faste adj p 0.57 1.28 0.04 0.68 +fastidieuse fastidieux adj f s 1.39 4.12 0.03 1.01 +fastidieusement fastidieusement adv 0.00 0.07 0.00 0.07 +fastidieuses fastidieux adj f p 1.39 4.12 0.26 0.74 +fastidieux fastidieux adj m 1.39 4.12 1.10 2.36 +fastoche fastoche adj m s 1.31 0.41 1.31 0.41 +fastueuse fastueux adj f s 0.38 3.38 0.22 1.08 +fastueusement fastueusement adv 0.00 0.34 0.00 0.34 +fastueuses fastueux adj f p 0.38 3.38 0.02 0.41 +fastueux fastueux adj m 0.38 3.38 0.14 1.89 +fat fat nom m s 2.29 0.34 2.21 0.20 +fatal fatal adj m s 11.69 23.38 5.37 12.30 +fatale fatal adj f s 11.69 23.38 5.37 8.92 +fatalement fatalement adv 0.44 5.07 0.44 5.07 +fatales fatal adj f p 11.69 23.38 0.82 1.49 +fatalise fataliser ver 0.06 0.00 0.04 0.00 imp:pre:2s; +fataliser fataliser ver 0.06 0.00 0.01 0.00 inf; +fatalisme fatalisme nom m s 0.19 1.76 0.19 1.76 +fataliste fataliste adj s 0.06 1.76 0.06 1.69 +fatalistes fataliste adj m p 0.06 1.76 0.00 0.07 +fatalisé fataliser ver m s 0.06 0.00 0.01 0.00 par:pas; +fatalité fatalité nom f s 2.77 8.85 2.66 8.51 +fatalités fatalité nom f p 2.77 8.85 0.11 0.34 +fatals fatal adj m p 11.69 23.38 0.13 0.68 +fate fat adj f s 1.81 1.08 0.13 0.07 +façade façade nom f s 4.60 46.76 4.19 29.66 +façades façade nom f p 4.60 46.76 0.41 17.09 +fathma fathma nom f s 0.10 0.07 0.10 0.07 +fathom fathom nom m s 0.00 0.07 0.00 0.07 +façon façon nom f s 230.48 277.30 212.60 259.26 +façonna façonner ver 1.95 7.16 0.14 0.20 ind:pas:3s; +façonnable façonnable adj m s 0.02 0.00 0.02 0.00 +façonnaient façonner ver 1.95 7.16 0.00 0.20 ind:imp:3p; +façonnait façonner ver 1.95 7.16 0.00 0.47 ind:imp:3s; +façonnant façonner ver 1.95 7.16 0.02 0.27 par:pre; +façonne façonner ver 1.95 7.16 0.17 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +façonnent façonner ver 1.95 7.16 0.03 0.00 ind:pre:3p; +façonner façonner ver 1.95 7.16 0.46 1.22 inf; +façonnera façonner ver 1.95 7.16 0.02 0.00 ind:fut:3s; +façonnerai façonner ver 1.95 7.16 0.12 0.00 ind:fut:1s; +façonnerais façonner ver 1.95 7.16 0.00 0.07 cnd:pre:1s; +façonnerez façonner ver 1.95 7.16 0.03 0.00 ind:fut:2p; +façonneront façonner ver 1.95 7.16 0.00 0.07 ind:fut:3p; +façonnière façonnier nom f s 0.00 0.07 0.00 0.07 +façonné façonner ver m s 1.95 7.16 0.61 1.76 par:pas; +façonnée façonner ver f s 1.95 7.16 0.23 1.08 par:pas; +façonnées façonner ver f p 1.95 7.16 0.04 0.34 par:pas; +façonnés façonner ver m p 1.95 7.16 0.07 0.88 par:pas; +façons façon nom f p 230.48 277.30 17.89 18.04 +fatidique fatidique adj s 0.42 4.05 0.41 3.51 +fatidiques fatidique adj p 0.42 4.05 0.01 0.54 +fatigant fatigant adj m s 4.84 7.84 3.81 5.20 +fatigante fatigant adj f s 4.84 7.84 0.67 1.62 +fatigantes fatigant adj f p 4.84 7.84 0.31 0.27 +fatigants fatigant adj m p 4.84 7.84 0.04 0.74 +fatigua fatiguer ver 78.25 49.05 0.02 0.41 ind:pas:3s; +fatiguai fatiguer ver 78.25 49.05 0.01 0.14 ind:pas:1s; +fatiguaient fatiguer ver 78.25 49.05 0.12 0.54 ind:imp:3p; +fatiguais fatiguer ver 78.25 49.05 0.16 0.41 ind:imp:1s;ind:imp:2s; +fatiguait fatiguer ver 78.25 49.05 0.30 2.36 ind:imp:3s; +fatiguant fatiguer ver 78.25 49.05 1.43 0.14 par:pre; +fatigue fatigue nom f s 9.25 69.46 8.70 65.81 +fatiguent fatiguer ver 78.25 49.05 1.11 1.55 ind:pre:3p; +fatiguer fatiguer ver 78.25 49.05 2.89 3.31 inf; +fatiguera fatiguer ver 78.25 49.05 0.25 0.14 ind:fut:3s; +fatiguerai fatiguer ver 78.25 49.05 0.02 0.07 ind:fut:1s; +fatigueraient fatiguer ver 78.25 49.05 0.00 0.14 cnd:pre:3p; +fatiguerais fatiguer ver 78.25 49.05 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +fatiguerait fatiguer ver 78.25 49.05 0.06 0.61 cnd:pre:3s; +fatigueras fatiguer ver 78.25 49.05 0.10 0.00 ind:fut:2s; +fatigues fatiguer ver 78.25 49.05 3.44 0.54 ind:pre:2s; +fatiguez fatiguer ver 78.25 49.05 2.49 1.08 imp:pre:2p;ind:pre:2p; +fatiguons fatiguer ver 78.25 49.05 0.01 0.00 ind:pre:1p; +fatiguât fatiguer ver 78.25 49.05 0.00 0.14 sub:imp:3s; +fatiguèrent fatiguer ver 78.25 49.05 0.00 0.14 ind:pas:3p; +fatigué fatiguer ver m s 78.25 49.05 31.43 16.01 par:pas;par:pas;par:pas; +fatiguée fatiguer ver f s 78.25 49.05 20.46 9.73 par:pas; +fatiguées fatiguer ver f p 78.25 49.05 1.27 0.95 par:pas; +fatigués fatiguer ver m p 78.25 49.05 4.26 2.97 par:pas; +fatma fatma nom f s 0.16 0.95 0.14 0.54 +fatmas fatma nom f p 0.16 0.95 0.03 0.41 +fatras fatras nom m 0.34 2.91 0.34 2.91 +fats fat adj m p 1.81 1.08 0.33 0.07 +fatuité fatuité nom f s 0.23 0.95 0.23 0.95 +fatum fatum nom m s 0.00 0.47 0.00 0.47 +fau fau nom m s 0.14 0.00 0.14 0.00 +faubert faubert nom m s 0.02 0.07 0.02 0.07 +faubourg faubourg nom m s 1.69 22.09 0.58 14.73 +faubourgs faubourg nom m p 1.69 22.09 1.11 7.36 +faubourien faubourien adj m s 0.00 1.15 0.00 0.54 +faubourienne faubourien adj f s 0.00 1.15 0.00 0.27 +faubouriennes faubourien adj f p 0.00 1.15 0.00 0.14 +faubouriens faubourien adj m p 0.00 1.15 0.00 0.20 +faucardé faucarder ver m s 0.00 0.27 0.00 0.07 par:pas; +faucardée faucarder ver f s 0.00 0.27 0.00 0.07 par:pas; +faucardées faucarder ver f p 0.00 0.27 0.00 0.07 par:pas; +faucardés faucarder ver m p 0.00 0.27 0.00 0.07 par:pas; +faucha faucher ver 14.76 13.51 0.00 0.34 ind:pas:3s; +fauchage fauchage nom m s 0.04 0.34 0.04 0.34 +fauchaient faucher ver 14.76 13.51 0.01 0.34 ind:imp:3p; +fauchais faucher ver 14.76 13.51 0.02 0.14 ind:imp:1s; +fauchaison fauchaison nom f s 0.10 0.20 0.10 0.20 +fauchait faucher ver 14.76 13.51 0.01 0.61 ind:imp:3s; +fauchant faucher ver 14.76 13.51 0.14 0.74 par:pre; +fauchard fauchard nom m s 0.00 0.14 0.00 0.14 +fauche faucher ver 14.76 13.51 0.51 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fauchent faucher ver 14.76 13.51 0.16 0.34 ind:pre:3p; +faucher faucher ver 14.76 13.51 2.54 2.77 inf; +fauchera faucher ver 14.76 13.51 0.03 0.00 ind:fut:3s; +faucherait faucher ver 14.76 13.51 0.02 0.07 cnd:pre:3s; +faucheras faucher ver 14.76 13.51 0.04 0.00 ind:fut:2s; +faucheront faucher ver 14.76 13.51 0.01 0.00 ind:fut:3p; +fauches faucher ver 14.76 13.51 0.41 0.14 ind:pre:2s; +faucheur faucheur nom m s 2.06 0.81 0.42 0.14 +faucheurs faucheur nom m p 2.06 0.81 0.52 0.07 +faucheuse faucheur nom f s 2.06 0.81 1.12 0.54 +faucheuses faucheuse nom f p 0.01 0.00 0.01 0.00 +faucheux faucheux nom m 0.00 0.68 0.00 0.68 +fauchez faucher ver 14.76 13.51 0.27 0.07 imp:pre:2p;ind:pre:2p; +fauchon fauchon nom m s 0.18 0.20 0.18 0.20 +fauché faucher ver m s 14.76 13.51 6.42 4.05 par:pas; +fauchée faucher ver f s 14.76 13.51 2.18 0.95 par:pas; +fauchées faucher ver f p 14.76 13.51 0.30 0.14 par:pas; +fauchés faucher ver m p 14.76 13.51 1.69 1.08 par:pas; +faucille faucille nom f s 0.53 2.57 0.51 2.23 +faucilles faucille nom f p 0.53 2.57 0.03 0.34 +faucillon faucillon nom m s 0.00 0.20 0.00 0.20 +faucon faucon nom m s 5.93 3.51 4.07 2.36 +fauconneau fauconneau nom m s 0.22 0.00 0.22 0.00 +fauconnerie fauconnerie nom f s 0.01 0.07 0.01 0.07 +fauconnier fauconnier nom m s 0.25 0.41 0.15 0.34 +fauconniers fauconnier nom m p 0.25 0.41 0.10 0.07 +faucons faucon nom m p 5.93 3.51 1.86 1.15 +faudra falloir ver_sup 1653.77 1250.41 85.73 61.22 ind:fut:3s; +faudrait falloir ver_sup 1653.77 1250.41 74.08 111.69 cnd:pre:3s; +faufil faufil nom m s 0.01 0.07 0.01 0.07 +faufila faufiler ver 4.41 17.30 0.03 1.35 ind:pas:3s; +faufilai faufiler ver 4.41 17.30 0.01 0.20 ind:pas:1s; +faufilaient faufiler ver 4.41 17.30 0.02 0.54 ind:imp:3p; +faufilais faufiler ver 4.41 17.30 0.08 0.00 ind:imp:1s;ind:imp:2s; +faufilait faufiler ver 4.41 17.30 0.04 2.43 ind:imp:3s; +faufilant faufiler ver 4.41 17.30 0.02 2.09 par:pre; +faufile faufiler ver 4.41 17.30 1.24 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +faufilent faufiler ver 4.41 17.30 0.16 0.88 ind:pre:3p; +faufiler faufiler ver 4.41 17.30 1.86 3.65 inf; +faufilera faufiler ver 4.41 17.30 0.14 0.00 ind:fut:3s; +faufilerai faufiler ver 4.41 17.30 0.02 0.00 ind:fut:1s; +faufilerait faufiler ver 4.41 17.30 0.00 0.07 cnd:pre:3s; +faufileras faufiler ver 4.41 17.30 0.04 0.00 ind:fut:2s; +faufileront faufiler ver 4.41 17.30 0.01 0.00 ind:fut:3p; +faufilez faufiler ver 4.41 17.30 0.05 0.00 imp:pre:2p;ind:pre:2p; +faufilâmes faufiler ver 4.41 17.30 0.00 0.07 ind:pas:1p; +faufilons faufiler ver 4.41 17.30 0.05 0.07 imp:pre:1p;ind:pre:1p; +faufilât faufiler ver 4.41 17.30 0.00 0.07 sub:imp:3s; +faufilèrent faufiler ver 4.41 17.30 0.00 0.20 ind:pas:3p; +faufilé faufiler ver m s 4.41 17.30 0.44 1.08 par:pas; +faufilée faufiler ver f s 4.41 17.30 0.12 0.68 par:pas; +faufilées faufiler ver f p 4.41 17.30 0.00 0.07 par:pas; +faufilés faufiler ver m p 4.41 17.30 0.07 0.27 par:pas; +faune faune nom s 1.48 6.49 1.47 5.95 +faunes faune nom p 1.48 6.49 0.01 0.54 +faunesque faunesque adj f s 0.00 0.14 0.00 0.07 +faunesques faunesque adj p 0.00 0.14 0.00 0.07 +faunesse faunesse nom f s 0.00 0.07 0.00 0.07 +faussa fausser ver 3.51 8.45 0.00 0.27 ind:pas:3s; +faussaient fausser ver 3.51 8.45 0.01 0.00 ind:imp:3p; +faussaire faussaire nom m s 1.22 1.35 0.89 0.95 +faussaires faussaire nom m p 1.22 1.35 0.33 0.41 +faussait fausser ver 3.51 8.45 0.02 0.34 ind:imp:3s; +faussant fausser ver 3.51 8.45 0.00 0.14 par:pre; +fausse_couche fausse_couche nom f s 0.07 0.20 0.07 0.20 +fausse faux adj f s 122.23 109.59 21.98 27.09 +faussement faussement adv 0.66 7.91 0.66 7.91 +faussent fausser ver 3.51 8.45 0.02 0.07 ind:pre:3p; +fausser fausser ver 3.51 8.45 0.34 1.89 inf; +fausseront fausser ver 3.51 8.45 0.00 0.14 ind:fut:3p; +fausses faux adj f p 122.23 109.59 9.26 15.95 +fausset fausset nom m s 0.05 1.55 0.04 1.55 +faussets fausset nom m p 0.05 1.55 0.01 0.00 +fausseté fausseté nom f s 0.75 1.08 0.75 1.08 +faussez fausser ver 3.51 8.45 0.03 0.07 ind:pre:2p; +faussions fausser ver 3.51 8.45 0.01 0.00 ind:imp:1p; +faussât fausser ver 3.51 8.45 0.00 0.07 sub:imp:3s; +faussé fausser ver m s 3.51 8.45 1.19 1.76 par:pas; +faussée fausser ver f s 3.51 8.45 0.23 0.68 par:pas; +faussées fausser ver f p 3.51 8.45 0.06 0.41 par:pas; +faussés fausser ver m p 3.51 8.45 0.04 0.07 par:pas; +faustien faustien adj m s 0.15 0.07 0.14 0.07 +faustienne faustien adj f s 0.15 0.07 0.01 0.00 +faut falloir ver_sup 1653.77 1250.41 1318.11 653.92 ind:pre:3s; +faute faute nom f s 169.26 95.20 163.19 81.08 +fauter fauter ver 1.42 1.76 0.00 0.27 inf; +fautes faute nom f p 169.26 95.20 6.07 14.12 +fauteuil_club fauteuil_club nom m s 0.00 0.27 0.00 0.27 +fauteuil fauteuil nom m s 19.27 102.03 17.16 76.69 +fauteuils_club fauteuils_club nom m p 0.00 0.07 0.00 0.07 +fauteuils fauteuil nom m p 19.27 102.03 2.10 25.34 +fauteur fauteur nom m s 0.88 1.82 0.31 0.88 +fauteurs fauteur nom m p 0.88 1.82 0.52 0.95 +fauteuse fauteur nom f s 0.88 1.82 0.03 0.00 +fautif fautif adj m s 2.96 2.09 1.50 1.08 +fautifs fautif adj m p 2.96 2.09 0.19 0.20 +fautive fautif adj f s 2.96 2.09 1.12 0.74 +fautives fautif adj f p 2.96 2.09 0.15 0.07 +fautrice fauteur nom f s 0.88 1.82 0.02 0.00 +fauté fauter ver m s 1.42 1.76 1.02 0.68 par:pas; +fauve fauve nom m s 3.61 13.38 1.26 7.77 +fauverie fauverie nom f s 0.00 0.14 0.00 0.14 +fauves fauve nom m p 3.61 13.38 2.35 5.61 +fauvette fauvette nom f s 0.60 2.23 0.60 1.62 +fauvettes fauvette nom f p 0.60 2.23 0.00 0.61 +fauvisme fauvisme nom m s 0.01 0.00 0.01 0.00 +faux_bond faux_bond nom m 0.01 0.07 0.01 0.07 +faux_bourdon faux_bourdon nom m s 0.02 0.07 0.02 0.07 +faux_col faux_col nom m s 0.02 0.34 0.02 0.34 +faux_cul faux_cul nom m s 0.41 0.07 0.41 0.07 +faux_filet faux_filet nom m s 0.04 0.34 0.04 0.34 +faux_frère faux_frère adj m s 0.01 0.00 0.01 0.00 +faux_fuyant faux_fuyant nom m s 0.22 1.22 0.02 0.47 +faux_fuyant faux_fuyant nom m p 0.22 1.22 0.20 0.74 +faux_monnayeur faux_monnayeur nom m s 0.26 0.61 0.01 0.14 +faux_monnayeur faux_monnayeur nom m p 0.26 0.61 0.25 0.47 +faux_pas faux_pas nom m 0.38 0.14 0.38 0.14 +faux_pont faux_pont nom m s 0.01 0.00 0.01 0.00 +faux_saunier faux_saunier nom m p 0.00 0.07 0.00 0.07 +faux_semblant faux_semblant nom m s 0.46 1.49 0.37 0.74 +faux_semblant faux_semblant nom m p 0.46 1.49 0.09 0.74 +faux faux adj m 122.23 109.59 90.99 66.55 +favela favela nom f s 1.62 0.07 1.25 0.00 +favelas favela nom f p 1.62 0.07 0.36 0.07 +faveur faveur nom f s 36.65 31.62 31.09 27.64 +faveurs faveur nom f p 36.65 31.62 5.56 3.99 +favorable favorable adj s 5.38 16.62 4.53 11.28 +favorablement favorablement adv 0.47 1.55 0.47 1.55 +favorables favorable adj p 5.38 16.62 0.85 5.34 +favori favori adj m s 8.79 13.99 5.19 5.81 +favoris favori nom m p 3.22 4.19 1.28 2.77 +favorisa favoriser ver 3.26 10.54 0.01 0.14 ind:pas:3s; +favorisaient favoriser ver 3.26 10.54 0.01 0.34 ind:imp:3p; +favorisait favoriser ver 3.26 10.54 0.05 2.03 ind:imp:3s; +favorisant favoriser ver 3.26 10.54 0.06 0.27 par:pre; +favorise favoriser ver 3.26 10.54 1.40 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +favorisent favoriser ver 3.26 10.54 0.51 0.61 ind:pre:3p; +favoriser favoriser ver 3.26 10.54 0.63 2.23 inf; +favorisera favoriser ver 3.26 10.54 0.03 0.07 ind:fut:3s; +favoriserai favoriser ver 3.26 10.54 0.01 0.00 ind:fut:1s; +favoriseraient favoriser ver 3.26 10.54 0.00 0.07 cnd:pre:3p; +favoriserait favoriser ver 3.26 10.54 0.07 0.07 cnd:pre:3s; +favorisez favoriser ver 3.26 10.54 0.03 0.00 ind:pre:2p; +favorisât favoriser ver 3.26 10.54 0.00 0.20 sub:imp:3s; +favorisèrent favoriser ver 3.26 10.54 0.00 0.07 ind:pas:3p; +favorisé favoriser ver m s 3.26 10.54 0.25 1.69 par:pas; +favorisée favoriser ver f s 3.26 10.54 0.05 0.54 par:pas; +favorisées favoriser ver f p 3.26 10.54 0.00 0.34 par:pas; +favorisés favoriser ver m p 3.26 10.54 0.14 0.68 par:pas; +favorite favori adj f s 8.79 13.99 1.92 3.45 +favorites favori adj f p 8.79 13.99 0.51 1.55 +favoritisme favoritisme nom m s 0.47 0.34 0.47 0.34 +fax fax nom m 5.59 0.14 5.59 0.14 +faxe faxer ver 2.58 0.07 0.45 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +faxer faxer ver 2.58 0.07 0.65 0.07 inf; +faxera faxer ver 2.58 0.07 0.04 0.00 ind:fut:3s; +faxerai faxer ver 2.58 0.07 0.09 0.00 ind:fut:1s; +faxes faxer ver 2.58 0.07 0.27 0.00 ind:pre:2s; +faxez faxer ver 2.58 0.07 0.27 0.00 imp:pre:2p;ind:pre:2p; +faxons faxer ver 2.58 0.07 0.01 0.00 imp:pre:1p; +faxé faxer ver m s 2.58 0.07 0.75 0.00 par:pas; +faxés faxer ver m p 2.58 0.07 0.05 0.00 par:pas; +fayard fayard nom m s 0.00 0.27 0.00 0.20 +fayards fayard nom m p 0.00 0.27 0.00 0.07 +fayot fayot adj m s 0.25 0.27 0.25 0.14 +fayotage fayotage nom m s 0.03 0.07 0.03 0.07 +fayotaient fayoter ver 0.09 0.61 0.00 0.07 ind:imp:3p; +fayotais fayoter ver 0.09 0.61 0.00 0.14 ind:imp:1s; +fayotait fayoter ver 0.09 0.61 0.00 0.07 ind:imp:3s; +fayote fayoter ver 0.09 0.61 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fayoter fayoter ver 0.09 0.61 0.01 0.20 inf; +fayots fayot nom m p 0.42 1.28 0.32 1.08 +fayotte fayotter ver 0.25 0.00 0.25 0.00 ind:pre:3s; +fayotée fayoter ver f s 0.09 0.61 0.00 0.07 par:pas; +fazenda fazenda nom f s 0.35 0.00 0.35 0.00 +fedayin fedayin nom m s 0.01 0.00 0.01 0.00 +feed_back feed_back nom m 0.04 0.00 0.04 0.00 +feedback feedback nom m s 0.10 0.07 0.10 0.07 +feeder feeder nom m s 0.01 0.00 0.01 0.00 +feeling feeling nom m s 1.53 0.54 1.30 0.54 +feelings feeling nom m p 1.53 0.54 0.23 0.00 +feignîmes feindre ver 5.92 21.22 0.00 0.14 ind:pas:1p; +feignaient feindre ver 5.92 21.22 0.11 0.61 ind:imp:3p; +feignais feindre ver 5.92 21.22 0.18 0.74 ind:imp:1s;ind:imp:2s; +feignait feindre ver 5.92 21.22 0.13 2.77 ind:imp:3s; +feignant feignant adj m s 0.98 1.35 0.71 1.01 +feignante feignant nom f s 1.51 3.11 0.28 0.00 +feignantes feignant nom f p 1.51 3.11 0.00 0.07 +feignants feignant nom m p 1.51 3.11 0.57 1.35 +feignasse feignasse nom f s 0.72 0.20 0.52 0.14 +feignasses feignasse nom f p 0.72 0.20 0.21 0.07 +feigne feindre ver 5.92 21.22 0.00 0.07 sub:pre:1s; +feignent feindre ver 5.92 21.22 0.13 0.61 ind:pre:3p; +feignez feindre ver 5.92 21.22 0.52 0.00 imp:pre:2p;ind:pre:2p; +feigniez feindre ver 5.92 21.22 0.10 0.00 ind:imp:2p; +feignirent feindre ver 5.92 21.22 0.00 0.20 ind:pas:3p; +feignis feindre ver 5.92 21.22 0.00 0.47 ind:pas:1s; +feignit feindre ver 5.92 21.22 0.10 1.62 ind:pas:3s; +feignons feindre ver 5.92 21.22 0.07 0.34 imp:pre:1p;ind:pre:1p; +feindra feindre ver 5.92 21.22 0.21 0.07 ind:fut:3s; +feindrai feindre ver 5.92 21.22 0.30 0.00 ind:fut:1s; +feindrait feindre ver 5.92 21.22 0.01 0.14 cnd:pre:3s; +feindre feindre ver 5.92 21.22 1.23 4.39 inf; +feins feindre ver 5.92 21.22 0.81 1.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +feint feindre ver m s 5.92 21.22 1.67 4.12 ind:pre:3s;par:pas; +feintait feinter ver 1.47 1.89 0.00 0.07 ind:imp:3s; +feintant feinter ver 1.47 1.89 0.00 0.14 par:pre; +feinte feinte nom f s 1.04 2.36 0.86 1.15 +feinter feinter ver 1.47 1.89 0.27 0.68 inf; +feinterez feinter ver 1.47 1.89 0.01 0.00 ind:fut:2p; +feintes feinte nom f p 1.04 2.36 0.18 1.22 +feinteur feinteur nom m s 0.02 0.00 0.02 0.00 +feintise feintise nom f s 0.00 0.07 0.00 0.07 +feints feint adj m p 1.00 5.61 0.02 0.00 +feinté feinter ver m s 1.47 1.89 0.79 0.07 par:pas; +feintés feinter ver m p 1.47 1.89 0.03 0.20 par:pas; +feld_maréchal feld_maréchal nom m s 0.32 0.27 0.32 0.27 +feldgrau feldgrau nom m 0.00 0.47 0.00 0.47 +feldspath feldspath nom m s 0.03 0.14 0.03 0.14 +feldwebel feldwebel nom m s 0.00 1.42 0.00 1.28 +feldwebels feldwebel nom m p 0.00 1.42 0.00 0.14 +fellaga fellaga nom m s 0.00 0.81 0.00 0.74 +fellagas fellaga nom m p 0.00 0.81 0.00 0.07 +fellagha fellagha nom m s 0.00 0.34 0.00 0.20 +fellaghas fellagha nom m p 0.00 0.34 0.00 0.14 +fellah fellah nom m s 0.14 0.27 0.14 0.20 +fellahs fellah nom m p 0.14 0.27 0.00 0.07 +fellation fellation nom f s 0.98 0.81 0.88 0.74 +fellationne fellationner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +fellations fellation nom f p 0.98 0.81 0.10 0.07 +fellinien fellinien nom m s 0.00 0.07 0.00 0.07 +fellinienne fellinien adj f s 0.10 0.00 0.10 0.00 +felouque felouque nom f s 0.01 1.49 0.01 1.01 +felouques felouque nom f p 0.01 1.49 0.00 0.47 +femelle femelle nom f s 9.38 12.64 6.84 7.84 +femelles femelle nom f p 9.38 12.64 2.53 4.80 +femme_enfant femme_enfant nom f s 0.35 0.27 0.35 0.27 +femme_fleur femme_fleur nom f s 0.00 0.07 0.00 0.07 +femme_objet femme_objet nom f s 0.03 0.07 0.03 0.07 +femme_refuge femme_refuge nom f s 0.00 0.07 0.00 0.07 +femme_robot femme_robot nom f s 0.07 0.00 0.07 0.00 +femme femme nom f s 1049.32 995.74 806.57 680.20 +femmelette femmelette nom f s 1.34 0.47 1.10 0.47 +femmelettes femmelette nom f p 1.34 0.47 0.24 0.00 +femmes femme nom f p 1049.32 995.74 242.75 315.54 +fenaison fenaison nom f s 0.00 0.34 0.00 0.27 +fenaisons fenaison nom f p 0.00 0.34 0.00 0.07 +fend fendre ver 7.76 28.58 1.20 3.58 ind:pre:3s; +fendaient fendre ver 7.76 28.58 0.01 0.88 ind:imp:3p; +fendais fendre ver 7.76 28.58 0.01 0.27 ind:imp:1s; +fendait fendre ver 7.76 28.58 0.26 3.24 ind:imp:3s; +fendant fendre ver 7.76 28.58 0.03 1.96 par:pre; +fendants fendant adj m p 0.01 0.34 0.01 0.00 +fendard fendard adj m s 0.06 0.07 0.06 0.07 +fende fendre ver 7.76 28.58 0.04 0.14 sub:pre:1s;sub:pre:3s; +fendent fendre ver 7.76 28.58 0.15 0.68 ind:pre:3p; +fendeur fendeur nom m s 0.00 0.34 0.00 0.14 +fendeurs fendeur nom m p 0.00 0.34 0.00 0.20 +fendez fendre ver 7.76 28.58 0.49 0.00 imp:pre:2p;ind:pre:2p; +fendillaient fendiller ver 0.01 1.76 0.00 0.07 ind:imp:3p; +fendillait fendiller ver 0.01 1.76 0.00 0.41 ind:imp:3s; +fendille fendiller ver 0.01 1.76 0.00 0.41 ind:pre:1s;ind:pre:3s; +fendillement fendillement nom m s 0.00 0.14 0.00 0.07 +fendillements fendillement nom m p 0.00 0.14 0.00 0.07 +fendiller fendiller ver 0.01 1.76 0.00 0.07 inf; +fendillèrent fendiller ver 0.01 1.76 0.00 0.07 ind:pas:3p; +fendillé fendillé adj m s 0.00 0.74 0.00 0.34 +fendillée fendiller ver f s 0.01 1.76 0.01 0.34 par:pas; +fendillées fendillé adj f p 0.00 0.74 0.00 0.20 +fendillés fendiller ver m p 0.01 1.76 0.00 0.14 par:pas; +fendis fendre ver 7.76 28.58 0.00 0.07 ind:pas:1s; +fendissent fendre ver 7.76 28.58 0.00 0.07 sub:imp:3p; +fendit fendre ver 7.76 28.58 0.03 1.89 ind:pas:3s; +fendoir fendoir nom m s 0.11 0.00 0.11 0.00 +fendons fendre ver 7.76 28.58 0.01 0.07 ind:pre:1p; +fendra fendre ver 7.76 28.58 0.07 0.07 ind:fut:3s; +fendrai fendre ver 7.76 28.58 0.16 0.14 ind:fut:1s; +fendraient fendre ver 7.76 28.58 0.00 0.07 cnd:pre:3p; +fendrait fendre ver 7.76 28.58 0.16 0.07 cnd:pre:3s; +fendre fendre ver 7.76 28.58 2.49 6.89 inf; +fends fendre ver 7.76 28.58 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s; +fendu fendre ver m s 7.76 28.58 1.77 4.12 par:pas; +fendue fendu adj f s 0.69 4.46 0.38 1.62 +fendues fendu adj f p 0.69 4.46 0.04 0.68 +fendus fendre ver m p 7.76 28.58 0.14 0.74 par:pas; +fenestrages fenestrage nom m p 0.00 0.07 0.00 0.07 +fenestrelle fenestrelle nom f s 0.14 0.00 0.14 0.00 +fenians fenian nom m p 0.00 0.07 0.00 0.07 +fenil fenil nom m s 0.02 0.41 0.02 0.27 +fenils fenil nom m p 0.02 0.41 0.00 0.14 +fennec fennec nom m s 0.01 0.20 0.01 0.00 +fennecs fennec nom m p 0.01 0.20 0.00 0.20 +fenouil fenouil nom m s 1.14 0.74 1.14 0.74 +fente fente nom f s 3.93 15.61 3.61 10.54 +fentes fente nom f p 3.93 15.61 0.32 5.07 +fenton fenton nom m s 0.43 0.00 0.43 0.00 +fenugrec fenugrec nom m s 0.03 0.00 0.03 0.00 +fenêtre fenêtre nom f s 90.55 280.20 70.20 199.39 +fenêtres fenêtre nom f p 90.55 280.20 20.35 80.81 +fer_blanc fer_blanc nom m s 0.08 2.84 0.08 2.84 +fer fer nom m s 37.08 114.19 33.65 106.28 +fera faire ver 8813.53 5328.99 170.70 59.66 ind:fut:3s; +ferai faire ver 8813.53 5328.99 146.11 31.69 ind:fut:1s; +feraient faire ver 8813.53 5328.99 10.80 13.11 cnd:pre:3p; +ferais faire ver 8813.53 5328.99 110.19 26.96 cnd:pre:1s;cnd:pre:2s; +ferait faire ver 8813.53 5328.99 86.88 77.23 cnd:pre:3s; +feras faire ver 8813.53 5328.99 42.91 13.18 ind:fut:2s; +ferblanterie ferblanterie nom f s 0.00 0.27 0.00 0.27 +ferblantier ferblantier nom m s 0.10 0.34 0.10 0.07 +ferblantiers ferblantier nom m p 0.10 0.34 0.00 0.27 +ferez faire ver 8813.53 5328.99 27.63 10.54 ind:fut:2p; +feria feria nom f s 0.17 0.20 0.02 0.14 +ferias feria nom f p 0.17 0.20 0.15 0.07 +feriez faire ver 8813.53 5328.99 23.97 5.54 cnd:pre:2p; +ferions faire ver 8813.53 5328.99 3.59 2.70 cnd:pre:1p; +ferlage ferlage nom f s 0.10 0.00 0.10 0.00 +ferlez ferler ver 0.03 0.14 0.03 0.00 imp:pre:2p; +ferlée ferler ver f s 0.03 0.14 0.00 0.14 par:pas; +ferma fermer ver 238.65 197.16 0.59 23.99 ind:pas:3s; +fermage fermage nom m s 0.03 0.74 0.02 0.54 +fermages fermage nom m p 0.03 0.74 0.01 0.20 +fermai fermer ver 238.65 197.16 0.06 3.24 ind:pas:1s; +fermaient fermer ver 238.65 197.16 0.29 5.27 ind:imp:3p; +fermais fermer ver 238.65 197.16 0.92 3.18 ind:imp:1s;ind:imp:2s; +fermait fermer ver 238.65 197.16 1.36 16.42 ind:imp:3s; +fermant fermer ver 238.65 197.16 0.88 9.05 par:pre; +ferme fermer ver 238.65 197.16 79.68 28.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fermement fermement adv 2.60 10.07 2.60 10.07 +ferment fermer ver 238.65 197.16 3.65 3.65 ind:pre:3p;sub:pre:3p; +fermentaient fermenter ver 0.14 2.16 0.00 0.14 ind:imp:3p; +fermentais fermenter ver 0.14 2.16 0.00 0.07 ind:imp:1s; +fermentait fermenter ver 0.14 2.16 0.01 0.20 ind:imp:3s; +fermentation fermentation nom f s 0.29 1.28 0.29 0.95 +fermentations fermentation nom f p 0.29 1.28 0.00 0.34 +fermente fermenter ver 0.14 2.16 0.04 0.74 ind:pre:3s; +fermenter fermenter ver 0.14 2.16 0.05 0.54 inf; +ferments ferment nom m p 0.20 1.76 0.14 0.61 +fermentèrent fermenter ver 0.14 2.16 0.00 0.07 ind:pas:3p; +fermenté fermenté adj m s 0.57 1.28 0.44 0.81 +fermentée fermenté adj f s 0.57 1.28 0.11 0.20 +fermentées fermenté adj f p 0.57 1.28 0.00 0.14 +fermentés fermenté adj m p 0.57 1.28 0.02 0.14 +fermer fermer ver 238.65 197.16 48.85 32.97 inf;; +fermera fermer ver 238.65 197.16 1.11 0.34 ind:fut:3s; +fermerai fermer ver 238.65 197.16 2.11 0.61 ind:fut:1s; +fermeraient fermer ver 238.65 197.16 0.05 0.14 cnd:pre:3p; +fermerais fermer ver 238.65 197.16 0.58 0.14 cnd:pre:1s;cnd:pre:2s; +fermerait fermer ver 238.65 197.16 0.18 0.95 cnd:pre:3s; +fermeras fermer ver 238.65 197.16 0.35 0.00 ind:fut:2s; +fermerez fermer ver 238.65 197.16 0.54 0.00 ind:fut:2p; +fermeriez fermer ver 238.65 197.16 0.11 0.00 cnd:pre:2p; +fermerons fermer ver 238.65 197.16 0.10 0.00 ind:fut:1p; +fermeront fermer ver 238.65 197.16 0.55 0.14 ind:fut:3p; +fermes_hôtel fermes_hôtel nom f p 0.00 0.07 0.00 0.07 +fermes fermer ver 238.65 197.16 7.41 1.01 ind:pre:2s;sub:pre:2s; +fermette fermette nom f s 0.11 0.34 0.11 0.34 +fermeté fermeté nom f s 2.12 10.47 2.12 10.47 +fermeture fermeture nom f s 11.54 15.74 11.06 14.86 +fermetures fermeture nom f p 11.54 15.74 0.48 0.88 +fermez fermer ver 238.65 197.16 30.74 1.69 imp:pre:2p;ind:pre:2p; +fermi fermi nom m s 0.01 0.00 0.01 0.00 +fermier fermier nom m s 8.82 12.36 4.54 5.61 +fermiers fermier nom m p 8.82 12.36 3.22 4.05 +fermiez fermer ver 238.65 197.16 0.57 0.20 ind:imp:2p; +fermions fermer ver 238.65 197.16 0.03 0.54 ind:imp:1p; +fermière fermier nom f s 8.82 12.36 1.05 2.23 +fermières fermière nom f p 0.03 0.00 0.03 0.00 +fermium fermium nom m s 0.01 0.00 0.01 0.00 +fermoir fermoir nom m s 0.38 2.09 0.38 1.76 +fermoirs fermoir nom m p 0.38 2.09 0.00 0.34 +fermons fermer ver 238.65 197.16 1.69 0.68 imp:pre:1p;ind:pre:1p; +fermât fermer ver 238.65 197.16 0.00 0.14 sub:imp:3s; +fermèrent fermer ver 238.65 197.16 0.29 1.62 ind:pas:3p; +fermé fermer ver m s 238.65 197.16 34.73 30.54 par:pas; +fermée fermer ver f s 238.65 197.16 13.72 16.15 par:pas; +fermées fermer ver f p 238.65 197.16 3.31 6.42 par:pas; +fermés fermé adj m p 21.46 56.35 7.20 21.08 +ferons faire ver 8813.53 5328.99 21.07 6.96 ind:fut:1p; +feront faire ver 8813.53 5328.99 23.12 11.01 ind:fut:3p; +ferra ferrer ver 1.96 6.96 0.03 0.14 ind:pas:3s; +ferrage ferrage nom m s 0.00 0.47 0.00 0.27 +ferrages ferrage nom m p 0.00 0.47 0.00 0.20 +ferrai ferrer ver 1.96 6.96 0.01 0.00 ind:pas:1s; +ferrailla ferrailler ver 0.17 0.95 0.00 0.07 ind:pas:3s; +ferraillaient ferrailler ver 0.17 0.95 0.00 0.14 ind:imp:3p; +ferraillait ferrailler ver 0.17 0.95 0.00 0.14 ind:imp:3s; +ferraillant ferrailler ver 0.17 0.95 0.14 0.14 par:pre; +ferraillante ferraillant adj f s 0.00 0.47 0.00 0.14 +ferraille ferraille nom f s 4.36 13.72 4.22 10.88 +ferraillement ferraillement nom m s 0.00 0.68 0.00 0.68 +ferrailler ferrailler ver 0.17 0.95 0.01 0.20 inf; +ferrailles ferraille nom f p 4.36 13.72 0.14 2.84 +ferrailleur ferrailleur nom m s 0.53 1.62 0.51 0.68 +ferrailleurs ferrailleur nom m p 0.53 1.62 0.02 0.95 +ferraillé ferrailler ver m s 0.17 0.95 0.00 0.07 par:pas; +ferrais ferrer ver 1.96 6.96 0.17 0.00 ind:imp:1s;ind:imp:2s; +ferrait ferrer ver 1.96 6.96 0.03 0.74 ind:imp:3s; +ferrant ferrer ver 1.96 6.96 0.01 0.20 par:pre; +ferrasse ferrer ver 1.96 6.96 0.14 0.00 sub:imp:1s; +ferre ferrer ver 1.96 6.96 0.03 0.54 ind:pre:1s;ind:pre:3s; +ferrer ferrer ver 1.96 6.96 0.25 2.03 inf; +ferrera ferrer ver 1.96 6.96 0.00 0.07 ind:fut:3s; +ferrerait ferrer ver 1.96 6.96 0.00 0.07 cnd:pre:3s; +ferrets ferret nom m p 0.14 0.20 0.14 0.20 +ferreuse ferreux adj f s 0.16 0.54 0.01 0.00 +ferreux ferreux adj m 0.16 0.54 0.14 0.54 +ferrez ferrer ver 1.96 6.96 0.08 0.00 imp:pre:2p;ind:pre:2p; +ferries ferry nom m p 2.12 0.61 0.14 0.00 +ferriques ferrique adj m p 0.00 0.07 0.00 0.07 +ferrite ferrite nom s 0.03 0.00 0.03 0.00 +ferro ferro nom m s 0.00 0.07 0.00 0.07 +ferrocérium ferrocérium nom m s 0.00 0.07 0.00 0.07 +ferrocyanure ferrocyanure nom m s 0.00 0.07 0.00 0.07 +ferronnerie ferronnerie nom f s 0.13 0.68 0.13 0.34 +ferronneries ferronnerie nom f p 0.13 0.68 0.00 0.34 +ferronnier ferronnier nom m s 0.02 0.68 0.01 0.34 +ferronniers ferronnier nom m p 0.02 0.68 0.00 0.34 +ferronnière ferronnier nom f s 0.02 0.68 0.01 0.00 +ferrons ferrer ver 1.96 6.96 0.02 0.00 ind:pre:1p; +ferroviaire ferroviaire adj s 1.29 1.49 1.22 0.88 +ferroviaires ferroviaire adj p 1.29 1.49 0.07 0.61 +ferré ferrer ver m s 1.96 6.96 0.31 1.08 par:pas; +ferrée ferré adj f s 2.91 6.76 2.27 3.04 +ferrées ferré adj f p 2.91 6.76 0.52 1.82 +ferrugineuse ferrugineux adj f s 0.00 1.15 0.00 0.27 +ferrugineuses ferrugineux adj f p 0.00 1.15 0.00 0.20 +ferrugineux ferrugineux adj m 0.00 1.15 0.00 0.68 +ferrure ferrure nom f s 0.01 1.42 0.01 0.14 +ferrures ferrure nom f p 0.01 1.42 0.00 1.28 +ferrés ferré adj m p 2.91 6.76 0.08 1.35 +ferry_boat ferry_boat nom m s 0.14 0.20 0.14 0.20 +ferry ferry nom m s 2.12 0.61 1.98 0.61 +fers fer nom m p 37.08 114.19 3.42 7.70 +fertile fertile adj s 3.17 3.18 2.72 2.57 +fertiles fertile adj p 3.17 3.18 0.45 0.61 +fertilisable fertilisable adj m s 0.00 0.07 0.00 0.07 +fertilisait fertiliser ver 0.97 0.95 0.01 0.20 ind:imp:3s; +fertilisant fertilisant nom m s 0.07 0.07 0.07 0.07 +fertilisateur fertilisateur adj m s 0.00 0.07 0.00 0.07 +fertilisation fertilisation nom f s 0.07 0.14 0.07 0.14 +fertilise fertiliser ver 0.97 0.95 0.27 0.14 ind:pre:3s; +fertilisent fertiliser ver 0.97 0.95 0.03 0.00 ind:pre:3p; +fertiliser fertiliser ver 0.97 0.95 0.18 0.34 inf; +fertilisera fertiliser ver 0.97 0.95 0.02 0.00 ind:fut:3s; +fertiliserons fertiliser ver 0.97 0.95 0.00 0.07 ind:fut:1p; +fertilisez fertiliser ver 0.97 0.95 0.02 0.00 imp:pre:2p; +fertilisèrent fertiliser ver 0.97 0.95 0.00 0.07 ind:pas:3p; +fertilisé fertiliser ver m s 0.97 0.95 0.19 0.07 par:pas; +fertilisée fertiliser ver f s 0.97 0.95 0.00 0.07 par:pas; +fertilisés fertiliser ver m p 0.97 0.95 0.23 0.00 par:pas; +fertilité fertilité nom f s 1.13 1.01 1.13 1.01 +ferté ferté nom f s 0.00 0.27 0.00 0.27 +fervent fervent adj m s 2.13 4.53 1.22 2.03 +fervente fervent adj f s 2.13 4.53 0.42 1.22 +ferventes fervent adj f p 2.13 4.53 0.12 0.14 +fervents fervent adj m p 2.13 4.53 0.37 1.15 +ferveur ferveur nom f s 1.69 10.88 1.69 10.61 +ferveurs ferveur nom f p 1.69 10.88 0.00 0.27 +fessait fesser ver 1.10 0.74 0.00 0.14 ind:imp:3s; +fesse_mathieu fesse_mathieu nom m s 0.00 0.07 0.00 0.07 +fesse fesse nom f s 36.32 45.14 1.81 6.42 +fesser fesser ver 1.10 0.74 0.26 0.27 inf; +fesserai fesser ver 1.10 0.74 0.02 0.07 ind:fut:1s; +fesserais fesser ver 1.10 0.74 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +fesses fesse nom f p 36.32 45.14 34.52 38.72 +fesseur fesseur nom m s 0.01 0.14 0.01 0.07 +fesseuse fesseur nom f s 0.01 0.14 0.00 0.07 +fessier fessier nom m s 0.33 0.68 0.23 0.54 +fessiers fessier adj m p 0.34 0.27 0.21 0.07 +fessiez fesser ver 1.10 0.74 0.01 0.00 ind:imp:2p; +fessière fessier adj f s 0.34 0.27 0.03 0.07 +fessières fessier adj f p 0.34 0.27 0.00 0.14 +fessé fesser ver m s 1.10 0.74 0.25 0.07 par:pas; +fessu fessu adj m s 0.01 0.81 0.00 0.27 +fessée fessée nom f s 4.44 1.76 4.02 1.15 +fessue fessu adj f s 0.01 0.81 0.01 0.34 +fessées fessée nom f p 4.44 1.76 0.41 0.61 +fessues fessu adj f p 0.01 0.81 0.00 0.20 +fessés fesser ver m p 1.10 0.74 0.01 0.07 par:pas; +festif festif adj m s 0.88 0.34 0.70 0.07 +festin festin nom m s 4.50 5.68 4.05 4.46 +festins festin nom m p 4.50 5.68 0.45 1.22 +festival festival nom m s 7.65 5.27 7.51 4.93 +festivalier festivalier nom m s 0.01 0.07 0.01 0.07 +festivals festival nom m p 7.65 5.27 0.14 0.34 +festive festif adj f s 0.88 0.34 0.17 0.07 +festives festif adj f p 0.88 0.34 0.01 0.20 +festivité festivité nom f s 1.21 1.01 0.02 0.00 +festivités festivité nom f p 1.21 1.01 1.19 1.01 +festoie festoyer ver 1.26 1.01 0.55 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +festoient festoyer ver 1.26 1.01 0.13 0.07 ind:pre:3p; +festoiera festoyer ver 1.26 1.01 0.02 0.00 ind:fut:3s; +festoierons festoyer ver 1.26 1.01 0.02 0.00 ind:fut:1p; +feston feston nom m s 0.17 1.49 0.02 0.14 +festonnaient festonner ver 0.03 1.01 0.00 0.07 ind:imp:3p; +festonnait festonner ver 0.03 1.01 0.00 0.14 ind:imp:3s; +festonne festonner ver 0.03 1.01 0.00 0.07 ind:pre:1s; +festonnements festonnement nom m p 0.00 0.07 0.00 0.07 +festonner festonner ver 0.03 1.01 0.02 0.00 inf; +festonné festonner ver m s 0.03 1.01 0.01 0.07 par:pas; +festonnée festonner ver f s 0.03 1.01 0.00 0.27 par:pas; +festonnées festonner ver f p 0.03 1.01 0.00 0.20 par:pas; +festonnés festonner ver m p 0.03 1.01 0.00 0.20 par:pas; +festons feston nom m p 0.17 1.49 0.14 1.35 +festoya festoyer ver 1.26 1.01 0.00 0.20 ind:pas:3s; +festoyaient festoyer ver 1.26 1.01 0.03 0.14 ind:imp:3p; +festoyant festoyer ver 1.26 1.01 0.03 0.00 par:pre; +festoyer festoyer ver 1.26 1.01 0.34 0.47 inf; +festoyez festoyer ver 1.26 1.01 0.03 0.00 imp:pre:2p; +festoyé festoyer ver m s 1.26 1.01 0.11 0.07 par:pas; +feta feta nom f s 0.09 0.00 0.09 0.00 +fettucine fettucine nom f 0.05 0.00 0.05 0.00 +feu feu nom m s 233.96 236.15 215.87 199.39 +feudataire feudataire nom m s 0.00 0.07 0.00 0.07 +feue feu adj f s 22.07 16.42 0.14 0.34 +feuillage feuillage nom m s 1.68 23.72 1.30 10.47 +feuillages feuillage nom m p 1.68 23.72 0.38 13.24 +feuillaison feuillaison nom f s 0.00 0.14 0.00 0.14 +feuillantines feuillantine nom f p 0.00 0.20 0.00 0.20 +feuille_morte feuille_morte adj f s 0.00 0.07 0.00 0.07 +feuille feuille nom f s 30.10 138.04 13.24 46.35 +feuilles feuille nom f p 30.10 138.04 16.86 91.69 +feuillet feuillet nom m s 0.26 10.00 0.06 2.16 +feuilleta feuilleter ver 2.21 21.49 0.00 2.70 ind:pas:3s; +feuilletage feuilletage nom m s 0.00 0.20 0.00 0.20 +feuilletai feuilleter ver 2.21 21.49 0.02 0.34 ind:pas:1s; +feuilletaient feuilleter ver 2.21 21.49 0.00 0.47 ind:imp:3p; +feuilletais feuilleter ver 2.21 21.49 0.23 0.81 ind:imp:1s;ind:imp:2s; +feuilletait feuilleter ver 2.21 21.49 0.00 2.91 ind:imp:3s; +feuilletant feuilleter ver 2.21 21.49 0.04 3.11 par:pre; +feuilleter feuilleter ver 2.21 21.49 0.65 4.05 inf; +feuilletez feuilleter ver 2.21 21.49 0.00 0.07 ind:pre:2p; +feuilletiez feuilleter ver 2.21 21.49 0.01 0.07 ind:imp:2p; +feuilletions feuilleter ver 2.21 21.49 0.00 0.07 ind:imp:1p; +feuilleton feuilleton nom m s 2.81 6.28 2.06 4.66 +feuilletoniste feuilletoniste nom s 0.00 0.34 0.00 0.34 +feuilletons feuilleton nom m p 2.81 6.28 0.75 1.62 +feuillets feuillet nom m p 0.26 10.00 0.20 7.84 +feuillette feuilleter ver 2.21 21.49 0.41 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +feuillettement feuillettement nom m s 0.00 0.14 0.00 0.14 +feuillettent feuilleter ver 2.21 21.49 0.00 0.14 ind:pre:3p; +feuillettes feuilleter ver 2.21 21.49 0.16 0.00 ind:pre:2s; +feuilletèrent feuilleter ver 2.21 21.49 0.00 0.07 ind:pas:3p; +feuilleté feuilleter ver m s 2.21 21.49 0.65 2.36 par:pas; +feuilletée feuilleté adj f s 0.19 0.61 0.12 0.27 +feuilletées feuilleté adj f p 0.19 0.61 0.01 0.07 +feuilletés feuilleté nom m p 0.79 0.34 0.30 0.14 +feuillu feuillu adj m s 0.18 2.43 0.12 0.47 +feuillée feuillée nom f s 0.14 1.42 0.00 0.41 +feuillue feuillu adj f s 0.18 2.43 0.05 1.08 +feuillées feuillée nom f p 0.14 1.42 0.14 1.01 +feuillues feuillu adj f p 0.18 2.43 0.01 0.47 +feuillure feuillure nom f s 0.03 0.14 0.00 0.07 +feuillures feuillure nom f p 0.03 0.14 0.03 0.07 +feuillus feuillu nom m p 0.10 0.14 0.10 0.00 +feuj feuj nom s 0.04 0.00 0.04 0.00 +feula feuler ver 0.10 0.54 0.00 0.07 ind:pas:3s; +feulait feuler ver 0.10 0.54 0.00 0.07 ind:imp:3s; +feulant feuler ver 0.10 0.54 0.00 0.14 par:pre; +feule feuler ver 0.10 0.54 0.00 0.07 ind:pre:3s; +feulement feulement nom m s 0.00 1.08 0.00 0.81 +feulements feulement nom m p 0.00 1.08 0.00 0.27 +feulent feuler ver 0.10 0.54 0.00 0.07 ind:pre:3p; +feuler feuler ver 0.10 0.54 0.10 0.07 inf; +feulée feuler ver f s 0.10 0.54 0.00 0.07 par:pas; +feurre feurre nom m s 0.00 0.07 0.00 0.07 +feutra feutrer ver 0.19 5.34 0.00 0.07 ind:pas:3s; +feutrage feutrage nom m s 0.00 0.41 0.00 0.34 +feutrages feutrage nom m p 0.00 0.41 0.00 0.07 +feutrait feutrer ver 0.19 5.34 0.00 0.14 ind:imp:3s; +feutrant feutrer ver 0.19 5.34 0.00 0.07 par:pre; +feutre feutre nom m s 1.45 13.99 1.33 13.18 +feutrent feutrer ver 0.19 5.34 0.00 0.14 ind:pre:3p; +feutrer feutrer ver 0.19 5.34 0.00 0.14 inf; +feutres feutrer ver 0.19 5.34 0.14 0.27 sub:pre:2s; +feutrine feutrine nom f s 0.00 0.74 0.00 0.74 +feutré feutré adj m s 0.29 5.74 0.03 1.96 +feutrée feutré adj f s 0.29 5.74 0.21 2.03 +feutrées feutré adj f p 0.29 5.74 0.01 0.54 +feutrés feutré adj m p 0.29 5.74 0.04 1.22 +feux feu nom m p 233.96 236.15 18.10 36.76 +fez fez nom m s 0.42 1.15 0.42 1.15 +fi fi ono 4.92 4.66 4.92 4.66 +fia fier ver 14.26 8.99 0.00 0.14 ind:pas:3s; +fiabilité fiabilité nom f s 0.37 0.34 0.37 0.34 +fiable fiable adj s 6.85 1.28 5.36 1.08 +fiables fiable adj p 6.85 1.28 1.50 0.20 +fiacre fiacre nom m s 1.39 5.20 1.39 4.05 +fiacres fiacre nom m p 1.39 5.20 0.00 1.15 +fiaient fier ver 14.26 8.99 0.03 0.07 ind:imp:3p; +fiais fier ver 14.26 8.99 0.23 0.14 ind:imp:1s;ind:imp:2s; +fiait fier ver 14.26 8.99 0.21 0.34 ind:imp:3s; +fiance fiancer ver 13.30 4.80 0.46 0.20 imp:pre:2s;ind:pre:3s;sub:pre:3s; +fiancent fiancer ver 13.30 4.80 0.03 0.00 ind:pre:3p; +fiancer fiancer ver 13.30 4.80 1.22 0.47 inf; +fiancerais fiancer ver 13.30 4.80 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +fiancerons fiancer ver 13.30 4.80 0.00 0.07 ind:fut:1p; +fiancez fiancer ver 13.30 4.80 0.00 0.07 ind:pre:2p; +fiancèrent fiancer ver 13.30 4.80 0.01 0.07 ind:pas:3p; +fiancé fiancé nom m s 51.51 23.11 21.89 9.73 +fiancée fiancé nom f s 51.51 23.11 27.84 9.93 +fiancées fiancé nom f p 51.51 23.11 0.68 0.88 +fiancés fiancer ver m p 13.30 4.80 4.10 0.74 par:pas; +fiant fier ver 14.26 8.99 0.28 0.81 par:pre; +fiança fiancer ver 13.30 4.80 0.01 0.14 ind:pas:3s; +fiançailles fiançailles nom f p 5.63 6.96 5.63 6.96 +fiançais fiancer ver 13.30 4.80 0.01 0.00 ind:imp:1s; +fiançons fiancer ver 13.30 4.80 0.12 0.00 imp:pre:1p;ind:pre:1p; +fias fier ver 14.26 8.99 0.00 0.81 ind:pas:2s; +fiasco fiasco nom m s 1.96 2.16 1.95 1.89 +fiascos fiasco nom m p 1.96 2.16 0.01 0.27 +fiasque fiasque nom f s 0.04 0.41 0.02 0.27 +fiasques fiasque nom f p 0.04 0.41 0.01 0.14 +fiassent fier ver 14.26 8.99 0.00 0.07 sub:imp:3p; +fiat fiat nom m s 0.02 0.07 0.02 0.07 +fibre fibre nom f s 6.65 7.43 2.67 2.50 +fibres fibre nom f p 6.65 7.43 3.97 4.93 +fibreuse fibreux adj f s 0.17 0.54 0.01 0.27 +fibreuses fibreux adj f p 0.17 0.54 0.00 0.07 +fibreux fibreux adj m 0.17 0.54 0.16 0.20 +fibrillation fibrillation nom f s 0.69 0.00 0.69 0.00 +fibrille fibrille nom f s 0.37 0.61 0.37 0.07 +fibrilles fibrille nom f p 0.37 0.61 0.00 0.54 +fibrilleux fibrilleux adj m s 0.00 0.07 0.00 0.07 +fibrillé fibrillé nom m s 0.01 0.00 0.01 0.00 +fibrine fibrine nom f s 0.01 0.14 0.01 0.14 +fibrinogène fibrinogène nom m s 0.03 0.00 0.03 0.00 +fibrociment fibrociment nom m s 0.00 0.27 0.00 0.27 +fibromateuse fibromateux adj f s 0.00 0.14 0.00 0.14 +fibrome fibrome nom m s 0.06 1.01 0.01 0.95 +fibromes fibrome nom m p 0.06 1.01 0.05 0.07 +fibroscope fibroscope nom m s 0.08 0.00 0.08 0.00 +fibroscopie fibroscopie nom f s 0.05 0.00 0.05 0.00 +fibrose fibrose nom f s 0.28 0.00 0.28 0.00 +fibrotoxine fibrotoxine nom f s 0.00 0.14 0.00 0.14 +fibré fibré adj m s 0.00 0.20 0.00 0.20 +fibule fibule nom f s 0.00 0.07 0.00 0.07 +fic fic nom m s 0.01 0.00 0.01 0.00 +ficaires ficaire nom f p 0.00 0.07 0.00 0.07 +ficela ficeler ver 0.86 6.76 0.00 0.41 ind:pas:3s; +ficelai ficeler ver 0.86 6.76 0.00 0.07 ind:pas:1s; +ficelaient ficeler ver 0.86 6.76 0.01 0.14 ind:imp:3p; +ficelait ficeler ver 0.86 6.76 0.00 0.47 ind:imp:3s; +ficelant ficeler ver 0.86 6.76 0.00 0.07 par:pre; +ficeler ficeler ver 0.86 6.76 0.17 0.68 inf; +ficelez ficeler ver 0.86 6.76 0.01 0.00 imp:pre:2p; +ficelle ficelle nom f s 6.31 21.22 3.13 13.38 +ficellerait ficeler ver 0.86 6.76 0.00 0.07 cnd:pre:3s; +ficelles ficelle nom f p 6.31 21.22 3.19 7.84 +ficelèrent ficeler ver 0.86 6.76 0.00 0.07 ind:pas:3p; +ficelé ficeler ver m s 0.86 6.76 0.36 2.03 par:pas; +ficelée ficeler ver f s 0.86 6.76 0.17 1.15 par:pas; +ficelées ficelé adj f p 0.61 3.18 0.04 0.47 +ficelés ficelé adj m p 0.61 3.18 0.11 1.15 +ficha ficher ver 97.84 29.32 0.01 0.54 ind:pas:3s; +fichage fichage nom m s 0.01 0.00 0.01 0.00 +fichaient ficher ver 97.84 29.32 0.27 0.61 ind:imp:3p; +fichais ficher ver 97.84 29.32 1.67 0.81 ind:imp:1s;ind:imp:2s; +fichaise fichaise nom f s 0.03 0.20 0.01 0.07 +fichaises fichaise nom f p 0.03 0.20 0.02 0.14 +fichait ficher ver 97.84 29.32 2.31 3.38 ind:imp:3s; +fichant ficher ver 97.84 29.32 0.20 0.81 par:pre; +fiche ficher ver 97.84 29.32 60.95 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +fichent ficher ver 97.84 29.32 2.87 1.49 ind:pre:3p; +ficher ficher ver 97.84 29.32 1.90 1.42 inf; +fichera ficher ver 97.84 29.32 0.50 0.14 ind:fut:3s; +ficherai ficher ver 97.84 29.32 0.34 0.20 ind:fut:1s; +ficheraient ficher ver 97.84 29.32 0.21 0.00 cnd:pre:3p; +ficherais ficher ver 97.84 29.32 0.75 0.00 cnd:pre:1s;cnd:pre:2s; +ficherait ficher ver 97.84 29.32 0.21 0.20 cnd:pre:3s; +ficheras ficher ver 97.84 29.32 0.07 0.00 ind:fut:2s; +ficherons ficher ver 97.84 29.32 0.00 0.07 ind:fut:1p; +ficheront ficher ver 97.84 29.32 0.17 0.14 ind:fut:3p; +fiches ficher ver 97.84 29.32 6.86 1.22 ind:pre:2s; +fichez ficher ver 97.84 29.32 12.73 1.35 imp:pre:2p;ind:pre:2p; +fichier fichier nom m s 11.10 2.91 5.42 1.89 +fichiers fichier nom m p 11.10 2.91 5.69 1.01 +fichiez ficher ver 97.84 29.32 0.48 0.00 ind:imp:2p; +fichions ficher ver 97.84 29.32 0.00 0.07 ind:imp:1p; +fichons ficher ver 97.84 29.32 2.67 0.07 imp:pre:1p;ind:pre:1p; +fichât ficher ver 97.84 29.32 0.00 0.14 sub:imp:3s; +fichtre fichtre ono 1.23 1.01 1.23 1.01 +fichtrement fichtrement adv 0.27 0.47 0.27 0.47 +fiché ficher ver m s 97.84 29.32 1.99 2.16 par:pas; +fichu fichu adj m s 27.51 12.03 17.34 7.70 +fichée ficher ver f s 97.84 29.32 0.35 1.82 par:pas; +fichue fichu adj f s 27.51 12.03 6.34 3.04 +fichées ficher ver f p 97.84 29.32 0.14 1.22 par:pas; +fichues fichu adj f p 27.51 12.03 1.04 0.20 +fichés ficher ver m p 97.84 29.32 0.20 1.08 par:pas; +fichus fichu adj m p 27.51 12.03 2.79 1.08 +fictif fictif adj m s 1.99 2.84 0.94 1.22 +fictifs fictif adj m p 1.99 2.84 0.57 0.34 +fiction fiction nom f s 6.46 5.14 6.25 4.32 +fictionnel fictionnel adj m s 0.02 0.00 0.02 0.00 +fictions fiction nom f p 6.46 5.14 0.21 0.81 +fictive fictif adj f s 1.99 2.84 0.41 0.88 +fictivement fictivement adv 0.00 0.20 0.00 0.20 +fictives fictif adj f p 1.99 2.84 0.06 0.41 +ficus ficus nom m 0.17 0.20 0.17 0.20 +fidèle fidèle adj s 24.61 35.61 20.04 27.43 +fidèlement fidèlement adv 1.12 4.53 1.12 4.53 +fidèles fidèle adj p 24.61 35.61 4.57 8.18 +fiduciaire fiduciaire adj s 0.17 0.68 0.13 0.68 +fiduciaires fiduciaire adj f p 0.17 0.68 0.04 0.00 +fiducie fiducie nom f s 0.06 0.00 0.06 0.00 +fidéicommis fidéicommis nom m 0.42 0.07 0.42 0.07 +fidéliser fidéliser ver 0.04 0.00 0.03 0.00 inf; +fidéliseras fidéliser ver 0.04 0.00 0.01 0.00 ind:fut:2s; +fidélité fidélité nom f s 10.26 18.31 10.26 17.43 +fidélités fidélité nom f p 10.26 18.31 0.00 0.88 +fie fier ver 14.26 8.99 4.10 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fief fief nom m s 3.38 3.45 3.22 2.70 +fieffé fieffé adj m s 0.95 0.61 0.77 0.20 +fieffée fieffé adj f s 0.95 0.61 0.00 0.27 +fieffés fieffé adj m p 0.95 0.61 0.19 0.14 +fiefs fief nom m p 3.38 3.45 0.16 0.74 +fiel fiel nom m s 1.36 2.50 1.36 2.50 +field field nom m s 0.47 0.00 0.47 0.00 +fielleuse fielleux adj f s 0.42 0.95 0.11 0.20 +fielleusement fielleusement adv 0.00 0.07 0.00 0.07 +fielleuses fielleux adj f p 0.42 0.95 0.00 0.27 +fielleux fielleux adj m 0.42 0.95 0.31 0.47 +fient fier ver 14.26 8.99 0.18 0.00 ind:pre:3p; +fiente fiente nom f s 0.79 2.70 0.72 1.96 +fientes fiente nom f p 0.79 2.70 0.07 0.74 +fienteuse fienteux adj f s 0.00 0.14 0.00 0.07 +fienteux fienteux adj m p 0.00 0.14 0.00 0.07 +fienté fienter ver m s 0.20 0.20 0.00 0.14 par:pas; +fier_à_bras fier_à_bras nom m 0.00 0.14 0.00 0.14 +fier fier adj m s 79.13 58.18 46.07 31.42 +fiera fier ver 14.26 8.99 0.11 0.00 ind:fut:3s; +fierai fier ver 14.26 8.99 0.02 0.00 ind:fut:1s; +fierais fier ver 14.26 8.99 0.29 0.07 cnd:pre:1s;cnd:pre:2s; +fieras fier ver 14.26 8.99 0.01 0.00 ind:fut:2s; +fiers_à_bras fiers_à_bras nom m p 0.00 0.27 0.00 0.27 +fiers fier adj m p 79.13 58.18 12.36 8.38 +fierté fierté nom f s 13.58 29.93 13.56 29.66 +fiertés fierté nom f p 13.58 29.93 0.02 0.27 +fiesta fiesta nom f s 2.14 2.43 2.07 1.96 +fiestas fiesta nom f p 2.14 2.43 0.07 0.47 +fieu fieu nom m s 0.00 0.07 0.00 0.07 +fieux fieux nom m p 0.02 0.00 0.02 0.00 +fiez fier ver 14.26 8.99 1.58 0.41 imp:pre:2p;ind:pre:2p; +fifi fifi nom m s 0.98 7.77 0.96 7.36 +fifille fifille nom f s 0.65 1.35 0.65 1.35 +fifis fifi nom m p 0.98 7.77 0.02 0.41 +fifre fifre nom m s 0.10 2.09 0.07 1.22 +fifrelin fifrelin nom m s 0.13 0.54 0.03 0.41 +fifrelins fifrelin nom m p 0.13 0.54 0.10 0.14 +fifres fifre nom m p 0.10 2.09 0.03 0.88 +fifties fifties nom p 0.03 0.07 0.03 0.07 +fifty_fifty fifty_fifty adv 0.66 0.14 0.66 0.14 +fifty fifty nom m s 0.05 0.47 0.05 0.47 +figaro figaro nom m s 0.00 1.42 0.00 1.35 +figaros figaro nom m p 0.00 1.42 0.00 0.07 +fige figer ver 4.49 33.18 1.04 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +figea figer ver 4.49 33.18 0.00 2.97 ind:pas:3s; +figeaient figer ver 4.49 33.18 0.00 0.95 ind:imp:3p; +figeais figer ver 4.49 33.18 0.03 0.14 ind:imp:1s; +figeait figer ver 4.49 33.18 0.04 1.89 ind:imp:3s; +figeant figer ver 4.49 33.18 0.01 0.68 par:pre; +figent figer ver 4.49 33.18 0.17 0.34 ind:pre:3p; +figer figer ver 4.49 33.18 1.16 2.50 inf; +figera figer ver 4.49 33.18 0.04 0.14 ind:fut:3s; +figerai figer ver 4.49 33.18 0.07 0.07 ind:fut:1s; +figeraient figer ver 4.49 33.18 0.00 0.14 cnd:pre:3p; +figerait figer ver 4.49 33.18 0.00 0.27 cnd:pre:3s; +figez figer ver 4.49 33.18 0.05 0.00 imp:pre:2p;ind:pre:2p; +fignard fignard nom m s 0.00 0.07 0.00 0.07 +fignola fignoler ver 0.48 3.85 0.00 0.27 ind:pas:3s; +fignolage fignolage nom m s 0.11 0.41 0.11 0.20 +fignolages fignolage nom m p 0.11 0.41 0.00 0.20 +fignolaient fignoler ver 0.48 3.85 0.00 0.07 ind:imp:3p; +fignolait fignoler ver 0.48 3.85 0.00 0.41 ind:imp:3s; +fignolant fignoler ver 0.48 3.85 0.00 0.61 par:pre; +fignole fignoler ver 0.48 3.85 0.20 0.27 ind:pre:1s;ind:pre:3s; +fignolent fignoler ver 0.48 3.85 0.00 0.14 ind:pre:3p; +fignoler fignoler ver 0.48 3.85 0.16 0.95 inf; +fignolerai fignoler ver 0.48 3.85 0.00 0.07 ind:fut:1s; +fignolerais fignoler ver 0.48 3.85 0.01 0.00 cnd:pre:1s; +fignolerait fignoler ver 0.48 3.85 0.00 0.07 cnd:pre:3s; +fignoleur fignoleur nom m s 0.01 0.00 0.01 0.00 +fignolons fignoler ver 0.48 3.85 0.00 0.07 ind:pre:1p; +fignolé fignoler ver m s 0.48 3.85 0.09 0.61 par:pas; +fignolée fignoler ver f s 0.48 3.85 0.01 0.27 par:pas; +fignolés fignoler ver m p 0.48 3.85 0.01 0.07 par:pas; +figèrent figer ver 4.49 33.18 0.00 0.27 ind:pas:3p; +figé figer ver m s 4.49 33.18 1.02 9.32 par:pas; +figue figue nom f s 7.38 3.58 3.44 1.28 +figée figer ver f s 4.49 33.18 0.49 5.00 par:pas; +figues figue nom f p 7.38 3.58 3.94 2.30 +figées figé adj f p 0.94 11.82 0.05 0.88 +figuier figuier nom m s 1.79 3.58 1.36 1.82 +figuiers figuier nom m p 1.79 3.58 0.43 1.76 +figura figurer ver 14.41 57.23 0.07 0.41 ind:pas:3s; +figurai figurer ver 14.41 57.23 0.14 0.34 ind:pas:1s; +figuraient figurer ver 14.41 57.23 0.21 3.99 ind:imp:3p; +figurais figurer ver 14.41 57.23 0.03 1.96 ind:imp:1s;ind:imp:2s; +figurait figurer ver 14.41 57.23 0.81 7.97 ind:imp:3s; +figurant figurant nom m s 2.99 5.07 0.68 1.62 +figurante figurant nom f s 2.99 5.07 0.37 0.54 +figurantes figurant nom f p 2.99 5.07 0.02 0.14 +figurants figurant nom m p 2.99 5.07 1.93 2.77 +figuratif figuratif adj m s 0.20 0.68 0.20 0.27 +figuratifs figuratif adj m p 0.20 0.68 0.00 0.14 +figuration figuration nom f s 0.41 2.57 0.40 1.96 +figurations figuration nom f p 0.41 2.57 0.01 0.61 +figurative figuratif adj f s 0.20 0.68 0.01 0.14 +figurativement figurativement adv 0.01 0.07 0.01 0.07 +figuratives figuratif adj f p 0.20 0.68 0.00 0.14 +figure figure nom f s 25.18 95.34 22.49 77.70 +figurent figurer ver 14.41 57.23 0.56 4.46 ind:pre:3p; +figurer figurer ver 14.41 57.23 1.43 7.30 inf; +figurera figurer ver 14.41 57.23 0.42 0.34 ind:fut:3s; +figureraient figurer ver 14.41 57.23 0.01 0.27 cnd:pre:3p; +figurerait figurer ver 14.41 57.23 0.03 0.27 cnd:pre:3s; +figures figure nom f p 25.18 95.34 2.69 17.64 +figurez figurer ver 14.41 57.23 3.06 6.15 imp:pre:2p;ind:pre:2p; +figuriez figurer ver 14.41 57.23 0.03 0.07 ind:imp:2p; +figurine figurine nom f s 2.18 2.43 1.19 0.88 +figurines figurine nom f p 2.18 2.43 0.99 1.55 +figurions figurer ver 14.41 57.23 0.00 0.14 ind:imp:1p; +figurât figurer ver 14.41 57.23 0.00 0.34 sub:imp:3s; +figurèrent figurer ver 14.41 57.23 0.00 0.07 ind:pas:3p; +figuré figuré adj m s 0.57 1.08 0.56 0.95 +figurée figuré adj f s 0.57 1.08 0.02 0.00 +figurées figurer ver f p 14.41 57.23 0.00 0.47 par:pas; +figurés figurer ver m p 14.41 57.23 0.00 0.74 par:pas; +figés figer ver m p 4.49 33.18 0.36 3.92 par:pas; +fil_à_fil fil_à_fil nom m 0.00 0.34 0.00 0.34 +fil fil nom m s 64.92 99.73 51.83 75.95 +fila filer ver 100.96 88.51 0.41 4.93 ind:pas:3s; +filage filage nom m s 0.06 0.14 0.06 0.14 +filai filer ver 100.96 88.51 0.00 0.61 ind:pas:1s; +filaient filer ver 100.96 88.51 0.34 3.38 ind:imp:3p; +filaire filaire adj f s 0.01 0.00 0.01 0.00 +filais filer ver 100.96 88.51 0.54 1.15 ind:imp:1s;ind:imp:2s; +filait filer ver 100.96 88.51 1.39 10.27 ind:imp:3s; +filament filament nom m s 0.40 2.16 0.29 0.27 +filamenteux filamenteux adj m 0.01 0.07 0.01 0.07 +filaments filament nom m p 0.40 2.16 0.11 1.89 +filandres filandre nom f p 0.00 0.07 0.00 0.07 +filandreuse filandreux adj f s 0.07 1.62 0.00 0.54 +filandreuses filandreux adj f p 0.07 1.62 0.03 0.61 +filandreux filandreux adj m 0.07 1.62 0.05 0.47 +filant filer ver 100.96 88.51 0.26 3.38 par:pre; +filante filant adj f s 1.64 3.38 0.60 1.28 +filantes filant adj f p 1.64 3.38 0.82 1.22 +filaos filao nom m p 0.00 0.07 0.00 0.07 +filariose filariose nom f s 0.05 0.00 0.05 0.00 +filasse filasse nom f s 0.06 0.47 0.02 0.34 +filasses filasse nom f p 0.06 0.47 0.04 0.14 +filateur filateur nom m s 0.00 0.27 0.00 0.07 +filateurs filateur nom m p 0.00 0.27 0.00 0.20 +filature filature nom f s 2.10 1.42 1.85 0.88 +filatures filature nom f p 2.10 1.42 0.24 0.54 +file_la_moi file_la_moi nom f s 0.01 0.00 0.01 0.00 +file filer ver 100.96 88.51 36.47 17.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +filent filer ver 100.96 88.51 2.21 3.18 ind:pre:3p; +filer filer ver 100.96 88.51 25.85 21.76 inf; +filera filer ver 100.96 88.51 1.03 0.61 ind:fut:3s; +filerai filer ver 100.96 88.51 0.71 0.68 ind:fut:1s; +fileraient filer ver 100.96 88.51 0.03 0.07 cnd:pre:3p; +filerais filer ver 100.96 88.51 0.35 0.20 cnd:pre:1s;cnd:pre:2s; +filerait filer ver 100.96 88.51 0.27 0.34 cnd:pre:3s; +fileras filer ver 100.96 88.51 0.22 0.14 ind:fut:2s; +filerez filer ver 100.96 88.51 0.16 0.14 ind:fut:2p; +fileriez filer ver 100.96 88.51 0.03 0.00 cnd:pre:2p; +filerons filer ver 100.96 88.51 0.21 0.07 ind:fut:1p; +fileront filer ver 100.96 88.51 0.11 0.20 ind:fut:3p; +files filer ver 100.96 88.51 4.95 1.89 ind:pre:1p;ind:pre:2s;sub:pre:2s; +filet filet nom m s 15.44 41.49 10.99 26.35 +filetage filetage nom m s 0.09 0.07 0.09 0.07 +filets filet nom m p 15.44 41.49 4.45 15.14 +fileté fileté adj m s 0.03 0.34 0.03 0.07 +filetée fileter ver f s 0.01 0.14 0.01 0.07 par:pas; +fileur fileur nom m s 0.06 0.14 0.04 0.07 +fileuse fileur nom f s 0.06 0.14 0.01 0.07 +filez filer ver 100.96 88.51 7.90 1.49 imp:pre:2p;ind:pre:2p; +filial filial adj m s 0.63 3.85 0.14 1.76 +filiale filiale nom f s 1.33 0.81 0.84 0.54 +filialement filialement adv 0.00 0.20 0.00 0.20 +filiales filiale nom f p 1.33 0.81 0.48 0.27 +filiation filiation nom f s 0.23 2.36 0.23 1.89 +filiations filiation nom f p 0.23 2.36 0.00 0.47 +filiaux filial adj m p 0.63 3.85 0.00 0.34 +filiez filer ver 100.96 88.51 0.17 0.14 ind:imp:2p; +filiforme filiforme adj s 0.03 1.55 0.03 1.01 +filiformes filiforme adj p 0.03 1.55 0.00 0.54 +filigrane filigrane nom m s 0.45 2.97 0.43 2.30 +filigranes filigrane nom m p 0.45 2.97 0.02 0.68 +filigranés filigraner ver m p 0.00 0.07 0.00 0.07 par:pas; +filin filin nom m s 0.44 2.64 0.25 1.42 +filins filin nom m p 0.44 2.64 0.19 1.22 +filions filer ver 100.96 88.51 0.01 0.07 ind:imp:1p; +filioque filioque adj m s 0.00 0.54 0.00 0.54 +filière filière nom f s 0.78 3.18 0.73 2.70 +filières filière nom f p 0.78 3.18 0.05 0.47 +fillasses fillasse nom f p 0.00 0.07 0.00 0.07 +fille_mère fille_mère nom f s 0.39 0.41 0.39 0.41 +fille fille nom f s 841.56 592.23 627.59 417.03 +filles fille nom f p 841.56 592.23 213.97 175.20 +fillette fillette nom f s 13.26 22.97 11.59 16.69 +fillettes fillette nom f p 13.26 22.97 1.67 6.28 +filleul filleul nom m s 2.72 1.82 2.42 1.22 +filleule filleul nom f s 2.72 1.82 0.29 0.47 +filleuls filleul nom m p 2.72 1.82 0.01 0.14 +fillér fillér nom m s 0.01 0.00 0.01 0.00 +film_livre film_livre nom m s 0.00 0.07 0.00 0.07 +film film nom m s 252.66 74.12 195.10 49.53 +filma filmer ver 40.08 3.45 0.27 0.00 ind:pas:3s; +filmage filmage nom m s 0.02 0.00 0.02 0.00 +filmaient filmer ver 40.08 3.45 0.44 0.07 ind:imp:3p; +filmais filmer ver 40.08 3.45 0.51 0.00 ind:imp:1s;ind:imp:2s; +filmait filmer ver 40.08 3.45 0.80 0.14 ind:imp:3s; +filmant filmer ver 40.08 3.45 0.42 0.14 par:pre; +filme filmer ver 40.08 3.45 7.17 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +filment filmer ver 40.08 3.45 0.56 0.14 ind:pre:3p; +filmer filmer ver 40.08 3.45 12.89 1.28 inf; +filmera filmer ver 40.08 3.45 0.26 0.00 ind:fut:3s; +filmerai filmer ver 40.08 3.45 0.20 0.00 ind:fut:1s; +filmerais filmer ver 40.08 3.45 0.20 0.00 cnd:pre:2s; +filmerait filmer ver 40.08 3.45 0.01 0.00 cnd:pre:3s; +filmerez filmer ver 40.08 3.45 0.11 0.00 ind:fut:2p; +filmeront filmer ver 40.08 3.45 0.16 0.00 ind:fut:3p; +filmes filmer ver 40.08 3.45 1.93 0.07 ind:pre:2s; +filmez filmer ver 40.08 3.45 1.64 0.07 imp:pre:2p;ind:pre:2p; +filmiez filmer ver 40.08 3.45 0.03 0.00 ind:imp:2p;sub:pre:2p; +filmions filmer ver 40.08 3.45 0.16 0.00 ind:imp:1p; +filmique filmique adj s 0.15 0.00 0.15 0.00 +filmographie filmographie nom f s 0.03 0.00 0.03 0.00 +filmons filmer ver 40.08 3.45 0.53 0.00 imp:pre:1p;ind:pre:1p; +filmothèque filmothèque nom f s 0.01 0.00 0.01 0.00 +films_annonce films_annonce nom m p 0.00 0.07 0.00 0.07 +films film nom m p 252.66 74.12 57.56 24.59 +filmé filmer ver m s 40.08 3.45 7.96 0.61 par:pas; +filmée filmer ver f s 40.08 3.45 1.45 0.34 par:pas; +filmées filmer ver f p 40.08 3.45 0.51 0.20 par:pas; +filmés filmer ver m p 40.08 3.45 1.88 0.07 par:pas; +filochard filochard nom m s 0.05 0.20 0.05 0.20 +filoche filoche nom f s 0.14 0.47 0.14 0.47 +filocher filocher ver 0.02 0.34 0.01 0.20 inf; +filochez filocher ver 0.02 0.34 0.01 0.00 imp:pre:2p; +filoché filocher ver m s 0.02 0.34 0.00 0.14 par:pas; +filoguidé filoguidé adj m s 0.01 0.00 0.01 0.00 +filâmes filer ver 100.96 88.51 0.01 0.07 ind:pas:1p; +filon filon nom m s 5.61 2.64 1.77 1.82 +filons filon nom m p 5.61 2.64 3.83 0.81 +filoselle filoselle nom f s 0.00 0.34 0.00 0.34 +filât filer ver 100.96 88.51 0.00 0.20 sub:imp:3s; +filou filou nom m s 2.48 1.28 1.79 1.08 +filous filou nom m p 2.48 1.28 0.68 0.20 +filouter filouter ver 0.53 0.20 0.19 0.07 inf; +filouterie filouterie nom f s 0.17 0.34 0.14 0.20 +filouteries filouterie nom f p 0.17 0.34 0.02 0.14 +filoutes filouter ver 0.53 0.20 0.00 0.07 ind:pre:2s; +filouté filouter ver m s 0.53 0.20 0.03 0.00 par:pas; +filoutés filouter ver m p 0.53 0.20 0.31 0.07 par:pas; +fils fils nom m 480.15 247.64 480.15 247.64 +filèrent filer ver 100.96 88.51 0.03 0.74 ind:pas:3p; +filtra filtrer ver 2.58 13.58 0.00 0.27 ind:pas:3s; +filtrage filtrage nom m s 0.26 0.07 0.26 0.07 +filtraient filtrer ver 2.58 13.58 0.00 1.15 ind:imp:3p; +filtrais filtrer ver 2.58 13.58 0.01 0.00 ind:imp:1s; +filtrait filtrer ver 2.58 13.58 0.04 2.64 ind:imp:3s; +filtrant filtrant adj m s 0.20 0.41 0.19 0.27 +filtrantes filtrant adj f p 0.20 0.41 0.00 0.07 +filtrants filtrant adj m p 0.20 0.41 0.01 0.07 +filtration filtration nom f s 0.20 0.14 0.20 0.07 +filtrations filtration nom f p 0.20 0.14 0.00 0.07 +filtre filtre nom m s 4.54 2.64 3.52 2.16 +filtrent filtrer ver 2.58 13.58 0.08 0.20 ind:pre:3p; +filtrer filtrer ver 2.58 13.58 1.01 3.72 inf; +filtrerait filtrer ver 2.58 13.58 0.01 0.14 cnd:pre:3s; +filtres filtre nom m p 4.54 2.64 1.02 0.47 +filtrez filtrer ver 2.58 13.58 0.23 0.00 imp:pre:2p;ind:pre:2p; +filtrèrent filtrer ver 2.58 13.58 0.00 0.14 ind:pas:3p; +filtré filtrer ver m s 2.58 13.58 0.27 0.95 par:pas; +filtrée filtrer ver f s 2.58 13.58 0.05 0.47 par:pas; +filtrées filtrer ver f p 2.58 13.58 0.00 0.34 par:pas; +filtrés filtrer ver m p 2.58 13.58 0.01 0.07 par:pas; +filé filer ver m s 100.96 88.51 15.18 13.51 par:pas; +filée filer ver f s 100.96 88.51 0.36 0.41 par:pas; +filées filer ver f p 100.96 88.51 0.07 0.14 par:pas; +filés filer ver m p 100.96 88.51 0.34 0.54 par:pas; +fin fin nom s 213.37 314.53 207.34 303.31 +finîmes finir ver 557.61 417.97 0.14 0.41 ind:pas:1p; +finît finir ver 557.61 417.97 0.00 0.68 sub:imp:3s; +finage finage nom m s 0.00 0.07 0.00 0.07 +final final adj m s 18.20 19.39 9.73 11.55 +finale final adj f s 18.20 19.39 7.67 7.50 +finalement finalement adv 45.89 58.92 45.89 58.92 +finales finale nom p 5.45 2.84 0.58 0.34 +finalisation finalisation nom f s 0.07 0.00 0.07 0.00 +finaliser finaliser ver 0.64 0.00 0.25 0.00 inf; +finaliste finaliste nom s 0.78 0.07 0.19 0.07 +finalistes finaliste nom p 0.78 0.07 0.59 0.00 +finalisé finaliser ver m s 0.64 0.00 0.39 0.00 par:pas; +finalisées finaliser ver f p 0.64 0.00 0.01 0.00 par:pas; +finalité finalité nom f s 0.46 0.41 0.46 0.34 +finalités finalité nom f p 0.46 0.41 0.00 0.07 +finals final nom m p 3.76 1.69 0.02 0.07 +finance finance nom f s 8.03 8.78 2.13 1.76 +financement financement nom m s 2.90 0.47 2.55 0.47 +financements financement nom m p 2.90 0.47 0.34 0.00 +financent financer ver 9.92 2.70 0.46 0.07 ind:pre:3p; +financer financer ver 9.92 2.70 3.96 1.08 inf; +financera financer ver 9.92 2.70 0.11 0.00 ind:fut:3s; +financerai financer ver 9.92 2.70 0.32 0.00 ind:fut:1s; +financeraient financer ver 9.92 2.70 0.01 0.00 cnd:pre:3p; +financerait financer ver 9.92 2.70 0.12 0.07 cnd:pre:3s; +financeras financer ver 9.92 2.70 0.11 0.00 ind:fut:2s; +financerons financer ver 9.92 2.70 0.02 0.00 ind:fut:1p; +financeront financer ver 9.92 2.70 0.16 0.07 ind:fut:3p; +finances finance nom f p 8.03 8.78 5.89 7.03 +financez financer ver 9.92 2.70 0.14 0.20 imp:pre:2p;ind:pre:2p; +financier financier adj m s 11.02 9.32 4.00 2.30 +financiers financier adj m p 11.02 9.32 2.17 2.36 +financiez financer ver 9.92 2.70 0.01 0.00 ind:imp:2p; +financière financier adj f s 11.02 9.32 3.49 2.43 +financièrement financièrement adv 2.21 0.47 2.21 0.47 +financières financier adj f p 11.02 9.32 1.36 2.23 +financé financer ver m s 9.92 2.70 1.70 0.34 par:pas; +financée financer ver f s 9.92 2.70 0.64 0.14 par:pas; +financés financer ver m p 9.92 2.70 0.29 0.00 par:pas; +finançai financer ver 9.92 2.70 0.00 0.07 ind:pas:1s; +finançaient financer ver 9.92 2.70 0.03 0.00 ind:imp:3p; +finançait financer ver 9.92 2.70 0.19 0.27 ind:imp:3s; +finançant financer ver 9.92 2.70 0.03 0.14 par:pre; +finançons financer ver 9.92 2.70 0.03 0.00 imp:pre:1p;ind:pre:1p; +finassait finasser ver 0.15 0.41 0.00 0.07 ind:imp:3s; +finasse finasser ver 0.15 0.41 0.00 0.20 ind:pre:3s; +finasser finasser ver 0.15 0.41 0.06 0.14 inf; +finasserie finasserie nom f s 0.01 0.20 0.00 0.07 +finasseries finasserie nom f p 0.01 0.20 0.01 0.14 +finasses finasser ver 0.15 0.41 0.01 0.00 ind:pre:2s; +finassons finasser ver 0.15 0.41 0.01 0.00 imp:pre:1p; +finassé finasser ver m s 0.15 0.41 0.07 0.00 par:pas; +finaud finaud adj m s 0.34 1.28 0.18 1.01 +finaude finaud adj f s 0.34 1.28 0.16 0.20 +finauds finaud nom m p 0.22 0.34 0.03 0.07 +finaux final adj m p 18.20 19.39 0.29 0.00 +fine fin adj f s 26.95 97.97 10.16 33.99 +finement finement adv 1.03 5.88 1.03 5.88 +fines fin adj f p 26.95 97.97 2.35 19.05 +finesse finesse nom f s 2.38 9.32 2.21 7.84 +finesses finesse nom f p 2.38 9.32 0.17 1.49 +finet finet adj m s 0.00 0.27 0.00 0.27 +finette finette nom f s 0.00 0.68 0.00 0.68 +fini finir ver m s 557.61 417.97 292.55 149.26 par:pas; +finie finir ver f s 557.61 417.97 26.99 12.23 par:pas; +finies finir ver f p 557.61 417.97 3.04 2.57 par:pas; +finir finir ver 557.61 417.97 96.48 68.92 inf; +finira finir ver 557.61 417.97 20.35 8.99 ind:fut:3s; +finirai finir ver 557.61 417.97 5.65 1.89 ind:fut:1s; +finiraient finir ver 557.61 417.97 0.34 1.76 cnd:pre:3p; +finirais finir ver 557.61 417.97 2.05 2.30 cnd:pre:1s;cnd:pre:2s; +finirait finir ver 557.61 417.97 4.51 11.28 cnd:pre:3s; +finiras finir ver 557.61 417.97 7.36 1.96 ind:fut:2s; +finirent finir ver 557.61 417.97 0.27 2.30 ind:pas:3p; +finirez finir ver 557.61 417.97 3.10 0.95 ind:fut:2p; +finiriez finir ver 557.61 417.97 0.36 0.14 cnd:pre:2p; +finirions finir ver 557.61 417.97 0.34 0.54 cnd:pre:1p; +finirons finir ver 557.61 417.97 1.63 1.08 ind:fut:1p; +finiront finir ver 557.61 417.97 3.31 2.09 ind:fut:3p; +finis finir ver m p 557.61 417.97 21.82 11.28 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +finish finish nom m s 0.32 0.61 0.32 0.61 +finissaient finir ver 557.61 417.97 0.44 8.38 ind:imp:3p; +finissais finir ver 557.61 417.97 1.06 3.38 ind:imp:1s;ind:imp:2s; +finissait finir ver 557.61 417.97 2.68 30.00 ind:imp:3s; +finissant finir ver 557.61 417.97 0.48 3.85 par:pre; +finissante finissant adj f s 0.22 2.57 0.12 0.54 +finissantes finissant adj f p 0.22 2.57 0.00 0.14 +finissants finissant adj m p 0.22 2.57 0.07 0.07 +finisse finir ver 557.61 417.97 9.34 6.49 sub:pre:1s;sub:pre:3s; +finissent finir ver 557.61 417.97 8.49 10.41 ind:pre:3p; +finisses finir ver 557.61 417.97 0.63 0.14 sub:pre:2s; +finisseur finisseur nom m s 0.03 0.00 0.02 0.00 +finisseuse finisseur nom f s 0.03 0.00 0.01 0.00 +finissez finir ver 557.61 417.97 5.80 1.15 imp:pre:2p;ind:pre:2p; +finissiez finir ver 557.61 417.97 0.41 0.20 ind:imp:2p; +finissions finir ver 557.61 417.97 0.20 1.08 ind:imp:1p; +finissons finir ver 557.61 417.97 7.82 1.82 imp:pre:1p;ind:pre:1p; +finit finir ver 557.61 417.97 29.97 70.47 ind:pre:3s;ind:pas:3s; +finition finition nom f s 1.12 1.28 0.61 1.01 +finitions finition nom f p 1.12 1.28 0.50 0.27 +finitude finitude nom f s 0.00 0.20 0.00 0.20 +finlandais finlandais adj m 1.35 0.61 0.76 0.27 +finlandaise finlandais adj f s 1.35 0.61 0.56 0.27 +finlandaises finlandais adj f p 1.35 0.61 0.04 0.07 +finlandisation finlandisation nom f s 0.00 0.07 0.00 0.07 +finnois finnois nom m 0.54 0.07 0.54 0.07 +fins fin nom p 213.37 314.53 6.03 11.22 +fiole fiole nom f s 1.93 5.14 1.50 3.11 +fioles fiole nom f p 1.93 5.14 0.42 2.03 +fion fion nom m s 1.77 2.64 1.75 2.57 +fions fier ver 14.26 8.99 0.25 0.00 imp:pre:1p;ind:pre:1p; +fiord fiord nom m s 0.00 0.07 0.00 0.07 +fioriture fioriture nom f s 0.25 2.09 0.01 0.74 +fioritures fioriture nom f p 0.25 2.09 0.24 1.35 +fioul fioul nom m s 0.06 0.00 0.06 0.00 +firent faire ver 8813.53 5328.99 3.00 37.16 ind:pas:3p; +firmament firmament nom m s 1.57 2.09 1.57 2.03 +firmaments firmament nom m p 1.57 2.09 0.00 0.07 +firman firman nom m s 0.04 0.20 0.04 0.14 +firmans firman nom m p 0.04 0.20 0.00 0.07 +firme firme nom f s 4.32 2.70 4.07 1.96 +firmes firme nom f p 4.32 2.70 0.25 0.74 +fis faire ver 8813.53 5328.99 4.35 40.74 ind:pas:1s;ind:pas:2s; +fisc fisc nom m s 2.53 1.28 2.53 1.28 +fiscal fiscal adj m s 4.54 1.22 1.41 0.14 +fiscale fiscal adj f s 4.54 1.22 1.97 0.47 +fiscalement fiscalement adv 0.01 0.07 0.01 0.07 +fiscales fiscal adj f p 4.54 1.22 0.41 0.27 +fiscaliste fiscaliste nom s 0.08 0.00 0.08 0.00 +fiscalité fiscalité nom f s 0.09 0.07 0.09 0.07 +fiscaux fiscal adj m p 4.54 1.22 0.76 0.34 +fissa fissa adv 1.84 3.24 1.84 3.24 +fisse faire ver 8813.53 5328.99 0.54 0.74 sub:imp:1s; +fissent faire ver 8813.53 5328.99 0.00 2.16 sub:imp:3p; +fissible fissible adj s 0.07 0.00 0.04 0.00 +fissibles fissible adj p 0.07 0.00 0.04 0.00 +fissiez faire ver 8813.53 5328.99 0.01 0.20 sub:imp:2p; +fission fission nom f s 0.52 0.20 0.52 0.20 +fissionner fissionner ver 0.02 0.00 0.01 0.00 inf; +fissionné fissionner ver m s 0.02 0.00 0.01 0.00 par:pas; +fissions faire ver 8813.53 5328.99 0.00 0.14 sub:imp:1p; +fissurait fissurer ver 0.69 1.76 0.01 0.07 ind:imp:3s; +fissurant fissurer ver 0.69 1.76 0.01 0.07 par:pre; +fissure fissure nom f s 2.74 8.11 1.25 4.66 +fissurent fissurer ver 0.69 1.76 0.00 0.07 ind:pre:3p; +fissurer fissurer ver 0.69 1.76 0.06 0.14 inf; +fissures fissure nom f p 2.74 8.11 1.49 3.45 +fissuré fissurer ver m s 0.69 1.76 0.24 0.68 par:pas; +fissurée fissurer ver f s 0.69 1.76 0.05 0.27 par:pas; +fissurées fissurer ver f p 0.69 1.76 0.05 0.07 par:pas; +fissurés fissurer ver m p 0.69 1.76 0.14 0.07 par:pas; +fiston fiston nom m s 30.43 2.97 30.38 2.84 +fistons fiston nom m p 30.43 2.97 0.05 0.14 +fistule fistule nom f s 0.06 0.00 0.04 0.00 +fistules fistule nom f p 0.06 0.00 0.02 0.00 +fit faire ver 8813.53 5328.99 20.63 469.66 ind:pas:3s; +fière fier adj f s 79.13 58.18 19.68 16.69 +fièrement fièrement adv 1.45 7.64 1.45 7.64 +fières fier adj f p 79.13 58.18 1.02 1.69 +fièvre fièvre nom f s 25.00 42.64 24.23 38.58 +fièvres fièvre nom f p 25.00 42.64 0.77 4.05 +fitness fitness nom m 0.39 0.00 0.39 0.00 +fitzgéraldiennes fitzgéraldien adj f p 0.00 0.07 0.00 0.07 +fié fier ver m s 14.26 8.99 0.04 0.34 par:pas; +fiée fier ver f s 14.26 8.99 0.41 0.00 par:pas; +fiérot fiérot nom m s 0.01 0.07 0.01 0.07 +fiérote fiérot adj f s 0.00 0.41 0.00 0.14 +fiérots fiérot adj m p 0.00 0.41 0.00 0.07 +fiés fier ver m p 14.26 8.99 0.03 0.00 par:pas; +fiévreuse fiévreux adj f s 1.18 11.01 0.10 2.64 +fiévreusement fiévreusement adv 0.03 2.70 0.03 2.70 +fiévreuses fiévreux adj f p 1.18 11.01 0.12 1.28 +fiévreux fiévreux adj m 1.18 11.01 0.95 7.09 +five_o_clock five_o_clock nom m 0.01 0.14 0.01 0.14 +fivete fivete nom f s 0.00 0.20 0.00 0.20 +fixa fixer ver 32.73 140.95 0.27 10.47 ind:pas:3s; +fixage fixage nom m s 0.00 0.14 0.00 0.14 +fixai fixer ver 32.73 140.95 0.10 1.62 ind:pas:1s; +fixaient fixer ver 32.73 140.95 0.40 3.72 ind:imp:3p; +fixais fixer ver 32.73 140.95 0.28 1.62 ind:imp:1s;ind:imp:2s; +fixait fixer ver 32.73 140.95 0.95 17.50 ind:imp:3s; +fixant fixer ver 32.73 140.95 0.54 12.84 par:pre; +fixateur fixateur nom m s 0.05 0.00 0.05 0.00 +fixatif fixatif nom m s 0.00 0.07 0.00 0.07 +fixation fixation nom f s 1.94 1.96 1.47 1.89 +fixations fixation nom f p 1.94 1.96 0.47 0.07 +fixe_chaussette fixe_chaussette nom f p 0.13 0.20 0.13 0.20 +fixe fixe adj s 11.12 39.53 9.83 27.97 +fixement fixement adv 1.89 8.92 1.89 8.92 +fixent fixer ver 32.73 140.95 0.76 2.09 ind:pre:3p; +fixer fixer ver 32.73 140.95 7.04 24.80 inf; +fixera fixer ver 32.73 140.95 0.33 0.41 ind:fut:3s; +fixerai fixer ver 32.73 140.95 0.05 0.14 ind:fut:1s; +fixeraient fixer ver 32.73 140.95 0.01 0.14 cnd:pre:3p; +fixerais fixer ver 32.73 140.95 0.12 0.00 cnd:pre:1s; +fixerait fixer ver 32.73 140.95 0.00 0.54 cnd:pre:3s; +fixeras fixer ver 32.73 140.95 0.11 0.00 ind:fut:2s; +fixerez fixer ver 32.73 140.95 0.04 0.07 ind:fut:2p; +fixeriez fixer ver 32.73 140.95 0.00 0.14 cnd:pre:2p; +fixerons fixer ver 32.73 140.95 0.22 0.07 ind:fut:1p; +fixeront fixer ver 32.73 140.95 0.03 0.00 ind:fut:3p; +fixes fixer ver 32.73 140.95 1.77 0.07 ind:pre:2s; +fixette fixette nom f s 0.24 0.07 0.24 0.07 +fixez fixer ver 32.73 140.95 1.98 0.27 imp:pre:2p;ind:pre:2p; +fixiez fixer ver 32.73 140.95 0.03 0.00 ind:imp:2p; +fixing fixing nom m s 0.08 0.00 0.08 0.00 +fixions fixer ver 32.73 140.95 0.00 0.14 ind:imp:1p; +fixité fixité nom f s 0.14 4.86 0.14 4.86 +fixâmes fixer ver 32.73 140.95 0.00 0.07 ind:pas:1p; +fixons fixer ver 32.73 140.95 0.47 0.20 imp:pre:1p;ind:pre:1p; +fixât fixer ver 32.73 140.95 0.00 0.14 sub:imp:3s; +fixèrent fixer ver 32.73 140.95 0.10 1.28 ind:pas:3p; +fixé fixer ver m s 32.73 140.95 6.34 25.14 par:pas; +fixée fixer ver f s 32.73 140.95 2.47 7.70 par:pas; +fixées fixer ver f p 32.73 140.95 0.34 2.97 par:pas; +fixés fixer ver m p 32.73 140.95 1.84 14.19 par:pas; +fjord fjord nom m s 1.07 0.68 0.96 0.27 +fjords fjord nom m p 1.07 0.68 0.11 0.41 +flûta flûter ver 0.14 0.20 0.00 0.07 ind:pas:3s; +flûte flûte nom f s 10.13 10.61 9.11 8.92 +flûter flûter ver 0.14 0.20 0.14 0.07 inf; +flûtes flûte nom f p 10.13 10.61 1.02 1.69 +flûtiau flûtiau nom m s 0.10 0.07 0.10 0.07 +flûtiste flûtiste nom s 0.19 0.34 0.16 0.34 +flûtistes flûtiste nom p 0.19 0.34 0.03 0.00 +flûté flûté adj m s 0.01 0.81 0.00 0.34 +flûtée flûté adj f s 0.01 0.81 0.01 0.41 +flûtés flûté adj m p 0.01 0.81 0.00 0.07 +fla fla nom m 0.03 0.00 0.03 0.00 +flac flac ono 0.01 1.08 0.01 1.08 +flaccide flaccide adj s 0.01 0.07 0.01 0.07 +flaccidité flaccidité nom f s 0.01 0.07 0.01 0.07 +flache flache nom f s 0.00 0.27 0.00 0.07 +flaches flache nom f p 0.00 0.27 0.00 0.20 +flacon flacon nom m s 4.93 19.46 4.12 11.82 +flacons flacon nom m p 4.93 19.46 0.81 7.64 +flafla flafla nom m s 0.00 0.20 0.00 0.20 +flag flag nom m 0.57 0.41 0.57 0.41 +flagada flagada adj 0.06 0.14 0.06 0.14 +flagella flageller ver 0.82 1.89 0.00 0.14 ind:pas:3s; +flagellaient flageller ver 0.82 1.89 0.10 0.07 ind:imp:3p; +flagellait flageller ver 0.82 1.89 0.01 0.14 ind:imp:3s; +flagellant flageller ver 0.82 1.89 0.10 0.00 par:pre; +flagellants flagellant nom m p 0.11 0.07 0.10 0.07 +flagellateur flagellateur nom m s 0.01 0.00 0.01 0.00 +flagellation flagellation nom f s 0.47 0.81 0.44 0.61 +flagellations flagellation nom f p 0.47 0.81 0.02 0.20 +flagelle flageller ver 0.82 1.89 0.03 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flagellent flageller ver 0.82 1.89 0.11 0.20 ind:pre:3p; +flageller flageller ver 0.82 1.89 0.17 0.41 inf; +flagellerez flageller ver 0.82 1.89 0.14 0.00 ind:fut:2p; +flagelleront flageller ver 0.82 1.89 0.14 0.00 ind:fut:3p; +flagellé flagellé adj m s 0.28 0.27 0.27 0.14 +flagellée flageller ver f s 0.82 1.89 0.01 0.27 par:pas; +flagellées flageller ver f p 0.82 1.89 0.01 0.07 par:pas; +flagellés flageller ver m p 0.82 1.89 0.01 0.14 par:pas; +flageola flageoler ver 0.13 2.16 0.00 0.07 ind:pas:3s; +flageolai flageoler ver 0.13 2.16 0.00 0.07 ind:pas:1s; +flageolaient flageoler ver 0.13 2.16 0.00 0.20 ind:imp:3p; +flageolait flageoler ver 0.13 2.16 0.00 0.20 ind:imp:3s; +flageolant flageoler ver 0.13 2.16 0.01 0.54 par:pre; +flageolante flageolant adj f s 0.04 1.35 0.00 0.20 +flageolantes flageolant adj f p 0.04 1.35 0.03 0.81 +flageolants flageolant adj m p 0.04 1.35 0.00 0.07 +flageole flageoler ver 0.13 2.16 0.00 0.27 ind:pre:1s;ind:pre:3s; +flageolent flageoler ver 0.13 2.16 0.12 0.34 ind:pre:3p; +flageoler flageoler ver 0.13 2.16 0.00 0.34 inf; +flageoleront flageoler ver 0.13 2.16 0.00 0.07 ind:fut:3p; +flageolet flageolet nom m s 0.51 1.49 0.27 0.34 +flageolets flageolet nom m p 0.51 1.49 0.24 1.15 +flageolèrent flageoler ver 0.13 2.16 0.00 0.07 ind:pas:3p; +flagornait flagorner ver 0.01 0.20 0.00 0.07 ind:imp:3s; +flagornent flagorner ver 0.01 0.20 0.01 0.07 ind:pre:3p; +flagorner flagorner ver 0.01 0.20 0.00 0.07 inf; +flagornerie flagornerie nom f s 0.07 0.68 0.04 0.54 +flagorneries flagornerie nom f p 0.07 0.68 0.04 0.14 +flagorneur flagorneur nom m s 0.33 0.07 0.14 0.00 +flagorneurs flagorneur nom m p 0.33 0.07 0.19 0.07 +flagorneuse flagorneur adj f s 0.02 0.07 0.02 0.07 +flagrance flagrance nom f s 0.01 0.00 0.01 0.00 +flagrant flagrant adj m s 3.89 7.36 3.01 5.20 +flagrante flagrant adj f s 3.89 7.36 0.70 1.76 +flagrantes flagrant adj f p 3.89 7.36 0.14 0.14 +flagrants flagrant adj m p 3.89 7.36 0.04 0.27 +flahutes flahute nom p 0.00 0.07 0.00 0.07 +flair flair nom m s 2.32 4.80 2.32 4.80 +flaira flairer ver 4.47 14.73 0.00 1.69 ind:pas:3s; +flairaient flairer ver 4.47 14.73 0.02 0.34 ind:imp:3p; +flairais flairer ver 4.47 14.73 0.37 0.14 ind:imp:1s; +flairait flairer ver 4.47 14.73 0.05 2.16 ind:imp:3s; +flairant flairer ver 4.47 14.73 0.02 1.42 par:pre; +flaire flairer ver 4.47 14.73 1.67 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flairent flairer ver 4.47 14.73 0.23 0.61 ind:pre:3p; +flairer flairer ver 4.47 14.73 0.93 2.70 inf; +flairera flairer ver 4.47 14.73 0.02 0.00 ind:fut:3s; +flairerait flairer ver 4.47 14.73 0.00 0.14 cnd:pre:3s; +flaires flairer ver 4.47 14.73 0.04 0.27 ind:pre:2s; +flaireur flaireur nom m s 0.00 0.27 0.00 0.14 +flaireurs flaireur nom m p 0.00 0.27 0.00 0.07 +flaireuse flaireur nom f s 0.00 0.27 0.00 0.07 +flairez flairer ver 4.47 14.73 0.02 0.00 ind:pre:2p; +flairé flairer ver m s 4.47 14.73 1.00 2.50 par:pas; +flairée flairer ver f s 4.47 14.73 0.00 0.14 par:pas; +flairés flairer ver m p 4.47 14.73 0.11 0.07 par:pas; +flamand flamand nom m s 1.37 2.30 0.85 1.35 +flamande flamand adj f s 0.79 2.43 0.28 0.54 +flamandes flamand adj f p 0.79 2.43 0.02 0.41 +flamands flamand nom m p 1.37 2.30 0.53 0.47 +flamant flamant nom m s 1.29 1.15 0.39 0.07 +flamants flamant nom m p 1.29 1.15 0.90 1.08 +flamba flamber ver 4.80 13.99 0.10 0.41 ind:pas:3s; +flambaient flamber ver 4.80 13.99 0.00 1.28 ind:imp:3p; +flambait flamber ver 4.80 13.99 0.13 3.11 ind:imp:3s; +flambant flambant adj m s 0.88 2.30 0.83 1.49 +flambante flambant adj f s 0.88 2.30 0.03 0.27 +flambantes flambant adj f p 0.88 2.30 0.00 0.20 +flambants flambant adj m p 0.88 2.30 0.02 0.34 +flambard flambard nom m s 0.00 0.34 0.00 0.34 +flambe flamber ver 4.80 13.99 2.05 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flambeau flambeau nom m s 3.04 7.09 2.66 3.58 +flambeaux flambeau nom m p 3.04 7.09 0.38 3.51 +flambent flamber ver 4.80 13.99 0.26 0.74 ind:pre:3p; +flamber flamber ver 4.80 13.99 0.84 3.45 inf; +flambera flamber ver 4.80 13.99 0.12 0.00 ind:fut:3s; +flamberaient flamber ver 4.80 13.99 0.00 0.07 cnd:pre:3p; +flamberait flamber ver 4.80 13.99 0.03 0.07 cnd:pre:3s; +flamberge flamberge nom f s 0.00 0.07 0.00 0.07 +flamberont flamber ver 4.80 13.99 0.00 0.07 ind:fut:3p; +flambes flamber ver 4.80 13.99 0.05 0.00 ind:pre:2s; +flambeur flambeur nom m s 1.18 1.89 0.82 0.88 +flambeurs flambeur nom m p 1.18 1.89 0.34 0.88 +flambeuse flambeur nom f s 1.18 1.89 0.01 0.14 +flambez flamber ver 4.80 13.99 0.02 0.07 imp:pre:2p;ind:pre:2p; +flamboie flamboyer ver 0.54 3.11 0.22 0.68 imp:pre:2s;ind:pre:3s; +flamboiement flamboiement nom m s 0.04 1.49 0.04 1.22 +flamboiements flamboiement nom m p 0.04 1.49 0.00 0.27 +flamboient flamboyer ver 0.54 3.11 0.01 0.47 ind:pre:3p;sub:pre:3p; +flamboierait flamboyer ver 0.54 3.11 0.00 0.07 cnd:pre:3s; +flambons flamber ver 4.80 13.99 0.01 0.00 imp:pre:1p; +flamboya flamboyer ver 0.54 3.11 0.00 0.07 ind:pas:3s; +flamboyaient flamboyer ver 0.54 3.11 0.14 0.14 ind:imp:3p; +flamboyait flamboyer ver 0.54 3.11 0.00 0.81 ind:imp:3s; +flamboyance flamboyance nom f s 0.01 0.00 0.01 0.00 +flamboyant flamboyant adj m s 1.07 5.41 0.80 2.57 +flamboyante flamboyant adj f s 1.07 5.41 0.07 1.55 +flamboyantes flamboyant adj f p 1.07 5.41 0.03 0.54 +flamboyants flamboyant adj m p 1.07 5.41 0.17 0.74 +flamboyer flamboyer ver 0.54 3.11 0.00 0.07 inf; +flamboyèrent flamboyer ver 0.54 3.11 0.00 0.07 ind:pas:3p; +flambèrent flamber ver 4.80 13.99 0.00 0.27 ind:pas:3p; +flambé flamber ver m s 4.80 13.99 0.63 1.28 par:pas; +flambée flambée nom f s 0.59 3.31 0.59 2.70 +flambées flamber ver f p 4.80 13.99 0.06 0.20 par:pas; +flambés flambé adj m p 0.21 0.14 0.04 0.07 +flamenco flamenco nom m s 1.04 0.88 1.04 0.88 +flamencos flamenco adj m p 0.14 0.74 0.00 0.07 +flamine flamine nom m s 0.01 0.00 0.01 0.00 +flamme flamme nom f s 26.93 71.82 12.61 38.38 +flammes flamme nom f p 26.93 71.82 14.32 33.45 +flammèche flammèche nom f s 0.17 2.57 0.14 0.47 +flammèches flammèche nom f p 0.17 2.57 0.02 2.09 +flammé flammé adj m s 0.00 0.27 0.00 0.14 +flammée flammé adj f s 0.00 0.27 0.00 0.07 +flammés flammé adj m p 0.00 0.27 0.00 0.07 +flan flan nom m s 2.36 2.77 2.30 2.64 +flanc_garde flanc_garde nom f s 0.04 0.27 0.00 0.14 +flanc flanc nom m s 5.57 46.89 4.01 29.53 +flancha flancher ver 3.04 2.70 0.00 0.20 ind:pas:3s; +flanchais flancher ver 3.04 2.70 0.02 0.00 ind:imp:1s; +flanchait flancher ver 3.04 2.70 0.03 0.27 ind:imp:3s; +flanche flancher ver 3.04 2.70 1.27 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flanchent flancher ver 3.04 2.70 0.08 0.14 ind:pre:3p; +flancher flancher ver 3.04 2.70 0.67 0.54 inf; +flanchera flancher ver 3.04 2.70 0.04 0.07 ind:fut:3s; +flancherai flancher ver 3.04 2.70 0.01 0.00 ind:fut:1s; +flancheraient flancher ver 3.04 2.70 0.01 0.00 cnd:pre:3p; +flancherait flancher ver 3.04 2.70 0.11 0.07 cnd:pre:3s; +flanchet flanchet nom m s 0.00 0.07 0.00 0.07 +flanché flancher ver m s 3.04 2.70 0.80 0.41 par:pas; +flanc_garde flanc_garde nom f p 0.04 0.27 0.04 0.14 +flancs flanc nom m p 5.57 46.89 1.56 17.36 +flandrin flandrin nom m s 0.00 0.41 0.00 0.41 +flanelle flanelle nom f s 0.83 8.99 0.68 8.78 +flanelles flanelle nom f p 0.83 8.99 0.16 0.20 +flanqua flanquer ver 5.82 21.22 0.00 0.54 ind:pas:3s; +flanquaient flanquer ver 5.82 21.22 0.00 0.68 ind:imp:3p; +flanquait flanquer ver 5.82 21.22 0.01 1.22 ind:imp:3s; +flanquant flanquer ver 5.82 21.22 0.00 0.68 par:pre; +flanque flanquer ver 5.82 21.22 1.66 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flanquement flanquement nom m s 0.00 0.07 0.00 0.07 +flanquent flanquer ver 5.82 21.22 0.19 0.54 ind:pre:3p; +flanquer flanquer ver 5.82 21.22 1.34 2.16 inf; +flanquera flanquer ver 5.82 21.22 0.07 0.14 ind:fut:3s; +flanquerai flanquer ver 5.82 21.22 0.22 0.07 ind:fut:1s; +flanqueraient flanquer ver 5.82 21.22 0.00 0.07 cnd:pre:3p; +flanquerais flanquer ver 5.82 21.22 0.16 0.14 cnd:pre:1s; +flanquerait flanquer ver 5.82 21.22 0.01 0.20 cnd:pre:3s; +flanquerez flanquer ver 5.82 21.22 0.01 0.00 ind:fut:2p; +flanques flanquer ver 5.82 21.22 0.17 0.14 ind:pre:2s; +flanquez flanquer ver 5.82 21.22 0.28 0.34 imp:pre:2p;ind:pre:2p; +flanquons flanquer ver 5.82 21.22 0.20 0.00 imp:pre:1p; +flanqué flanquer ver m s 5.82 21.22 1.09 6.42 par:pas; +flanquée flanquer ver f s 5.82 21.22 0.31 3.51 par:pas; +flanquées flanquer ver f p 5.82 21.22 0.00 0.74 par:pas; +flanqués flanquer ver m p 5.82 21.22 0.10 1.42 par:pas; +flans flan nom m p 2.36 2.77 0.05 0.14 +flapi flapi adj m s 0.07 0.54 0.05 0.20 +flapie flapi adj f s 0.07 0.54 0.02 0.14 +flapies flapi adj f p 0.07 0.54 0.00 0.07 +flapis flapi adj m p 0.07 0.54 0.00 0.14 +flaque flaque nom f s 3.53 23.99 2.31 10.07 +flaques flaque nom f p 3.53 23.99 1.21 13.92 +flash_back flash_back nom m 0.33 0.74 0.33 0.74 +flash flash nom m s 8.52 4.59 7.78 4.59 +flashage flashage nom m s 0.14 0.00 0.14 0.00 +flashaient flasher ver 1.10 0.61 0.00 0.07 ind:imp:3p; +flashant flasher ver 1.10 0.61 0.01 0.00 par:pre; +flashe flasher ver 1.10 0.61 0.16 0.34 ind:pre:1s;ind:pre:3s; +flashent flasher ver 1.10 0.61 0.08 0.07 ind:pre:3p; +flasher flasher ver 1.10 0.61 0.17 0.00 inf; +flashes flashe nom m p 0.46 2.16 0.46 2.16 +flasheur flasheur nom m s 0.03 0.00 0.03 0.00 +flashs flash nom m p 8.52 4.59 0.74 0.00 +flashé flasher ver m s 1.10 0.61 0.68 0.14 par:pas; +flask flask nom m s 0.01 0.07 0.01 0.07 +flasque flasque adj s 1.07 6.89 0.58 4.26 +flasques flasque adj p 1.07 6.89 0.50 2.64 +flat flat adj m s 1.61 0.00 1.02 0.00 +flats flat adj m p 1.61 0.00 0.58 0.00 +flatta flatter ver 12.36 24.05 0.00 1.22 ind:pas:3s; +flattai flatter ver 12.36 24.05 0.00 0.14 ind:pas:1s; +flattaient flatter ver 12.36 24.05 0.00 0.88 ind:imp:3p; +flattais flatter ver 12.36 24.05 0.04 0.74 ind:imp:1s;ind:imp:2s; +flattait flatter ver 12.36 24.05 0.03 3.45 ind:imp:3s; +flattant flatter ver 12.36 24.05 0.03 0.95 par:pre; +flattasse flatter ver 12.36 24.05 0.00 0.07 sub:imp:1s; +flattassent flatter ver 12.36 24.05 0.00 0.07 sub:imp:3p; +flatte flatter ver 12.36 24.05 2.60 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +flattent flatter ver 12.36 24.05 0.19 0.14 ind:pre:3p; +flatter flatter ver 12.36 24.05 1.53 3.78 inf; +flatteras flatter ver 12.36 24.05 0.00 0.07 ind:fut:2s; +flatterie flatterie nom f s 1.40 2.64 0.78 1.69 +flatteries flatterie nom f p 1.40 2.64 0.62 0.95 +flatteront flatter ver 12.36 24.05 0.00 0.07 ind:fut:3p; +flattes flatter ver 12.36 24.05 0.63 0.07 ind:pre:2s; +flatteur flatteur adj m s 3.51 6.49 2.65 2.16 +flatteurs flatteur adj m p 3.51 6.49 0.20 0.88 +flatteuse flatteur adj f s 3.51 6.49 0.59 2.30 +flatteuses flatteur adj f p 3.51 6.49 0.08 1.15 +flattez flatter ver 12.36 24.05 1.54 0.14 imp:pre:2p;ind:pre:2p; +flattions flatter ver 12.36 24.05 0.00 0.14 ind:imp:1p; +flattons flatter ver 12.36 24.05 0.04 0.00 imp:pre:1p;ind:pre:1p; +flattèrent flatter ver 12.36 24.05 0.00 0.20 ind:pas:3p; +flatté flatter ver m s 12.36 24.05 3.56 4.86 par:pas; +flattée flatter ver f s 12.36 24.05 1.78 2.70 par:pas; +flattées flatter ver f p 12.36 24.05 0.12 0.27 par:pas; +flattés flatter ver m p 12.36 24.05 0.26 0.61 par:pas; +flatulence flatulence nom f s 0.25 0.47 0.07 0.20 +flatulences flatulence nom f p 0.25 0.47 0.18 0.27 +flatulent flatulent adj m s 0.04 0.07 0.03 0.00 +flatulents flatulent adj m p 0.04 0.07 0.01 0.07 +flatuosité flatuosité nom f s 0.00 0.07 0.00 0.07 +flatus_vocis flatus_vocis nom m 0.00 0.07 0.00 0.07 +flave flave adj s 0.00 0.07 0.00 0.07 +flaveur flaveur nom f s 0.01 0.00 0.01 0.00 +flegmatique flegmatique adj m s 0.03 0.95 0.02 0.74 +flegmatiquement flegmatiquement adv 0.00 0.07 0.00 0.07 +flegmatiques flegmatique adj m p 0.03 0.95 0.01 0.20 +flegmatisme flegmatisme nom m s 0.00 0.07 0.00 0.07 +flegme flegme nom m s 0.22 2.43 0.22 2.43 +flemmard flemmard nom m s 0.80 0.41 0.63 0.20 +flemmardais flemmarder ver 0.25 0.20 0.10 0.07 ind:imp:1s; +flemmardant flemmarder ver 0.25 0.20 0.01 0.00 par:pre; +flemmarde flemmard nom f s 0.80 0.41 0.04 0.07 +flemmarder flemmarder ver 0.25 0.20 0.10 0.14 inf; +flemmardes flemmard adj f p 0.48 0.41 0.01 0.00 +flemmardise flemmardise nom f s 0.01 0.07 0.01 0.07 +flemmards flemmard nom m p 0.80 0.41 0.13 0.14 +flemme flemme nom f s 0.49 1.62 0.49 1.62 +flemmer flemmer ver 0.02 0.00 0.02 0.00 inf; +fleur fleur nom f s 99.75 164.39 25.20 42.97 +fleurage fleurage nom m s 0.00 0.27 0.00 0.27 +fleuraient fleurer ver 0.18 3.31 0.00 0.47 ind:imp:3p; +fleurais fleurer ver 0.18 3.31 0.00 0.07 ind:imp:1s; +fleurait fleurer ver 0.18 3.31 0.10 1.08 ind:imp:3s; +fleurant fleurer ver 0.18 3.31 0.01 1.42 par:pre; +fleurdelisé fleurdelisé adj m s 0.14 0.34 0.14 0.20 +fleurdelisée fleurdelisé adj f s 0.14 0.34 0.00 0.07 +fleurdelisés fleurdelisé adj m p 0.14 0.34 0.00 0.07 +fleure fleurer ver 0.18 3.31 0.02 0.20 ind:pre:3s; +fleurent fleurer ver 0.18 3.31 0.02 0.07 ind:pre:3p; +fleurer fleurer ver 0.18 3.31 0.03 0.00 inf; +fleuret fleuret nom m s 0.97 2.43 0.29 1.28 +fleuretais fleureter ver 0.01 0.07 0.01 0.00 ind:imp:2s; +fleuretait fleureter ver 0.01 0.07 0.00 0.07 ind:imp:3s; +fleurets fleuret nom m p 0.97 2.43 0.68 1.15 +fleurette fleurette nom f s 0.29 2.97 0.29 0.74 +fleurettes fleurette nom f p 0.29 2.97 0.00 2.23 +fleuri fleurir ver m s 3.95 16.49 0.69 2.30 par:pas; +fleurie fleuri adj f s 1.48 10.14 0.42 2.70 +fleuries fleuri adj f p 1.48 10.14 0.14 1.82 +fleurir fleurir ver 3.95 16.49 1.00 2.91 inf; +fleurira fleurir ver 3.95 16.49 0.04 0.07 ind:fut:3s; +fleuriraient fleurir ver 3.95 16.49 0.00 0.07 cnd:pre:3p; +fleurirent fleurir ver 3.95 16.49 0.01 0.07 ind:pas:3p; +fleuriront fleurir ver 3.95 16.49 0.23 0.27 ind:fut:3p; +fleuris fleuri adj m p 1.48 10.14 0.31 2.84 +fleurissaient fleurir ver 3.95 16.49 0.05 1.76 ind:imp:3p; +fleurissait fleurir ver 3.95 16.49 0.10 1.15 ind:imp:3s; +fleurissant fleurir ver 3.95 16.49 0.14 0.20 par:pre; +fleurisse fleurir ver 3.95 16.49 0.25 0.00 sub:pre:3s; +fleurissement fleurissement nom m s 0.00 0.14 0.00 0.14 +fleurissent fleurir ver 3.95 16.49 0.78 2.16 ind:pre:3p; +fleurissiez fleurir ver 3.95 16.49 0.01 0.00 ind:imp:2p; +fleurissons fleurir ver 3.95 16.49 0.01 0.00 ind:pre:1p; +fleuriste fleuriste nom s 4.08 8.51 3.73 7.23 +fleuristes fleuriste nom p 4.08 8.51 0.35 1.28 +fleurit fleurir ver 3.95 16.49 0.53 2.23 ind:pre:3s;ind:pas:3s; +fleuron fleuron nom m s 0.46 1.15 0.31 0.54 +fleuronner fleuronner ver 0.00 0.07 0.00 0.07 inf; +fleuronnée fleuronné adj f s 0.01 0.00 0.01 0.00 +fleurons fleuron nom m p 0.46 1.15 0.16 0.61 +fleurs fleur nom f p 99.75 164.39 74.56 121.42 +fleuve fleuve nom m s 21.58 46.89 19.81 39.32 +fleuves fleuve nom m p 21.58 46.89 1.77 7.57 +flexibilité flexibilité nom f s 0.44 0.34 0.44 0.34 +flexible flexible adj s 1.43 3.18 0.77 2.09 +flexibles flexible adj p 1.43 3.18 0.66 1.08 +flexion flexion nom f s 0.97 0.74 0.71 0.14 +flexions flexion nom f p 0.97 0.74 0.26 0.61 +flexuosité flexuosité nom f s 0.00 0.07 0.00 0.07 +flibuste flibuste nom f s 0.14 0.14 0.14 0.14 +flibustier flibustier nom m s 0.21 0.74 0.04 0.68 +flibustiers flibustier nom m p 0.21 0.74 0.17 0.07 +flic flic nom m s 153.50 72.43 67.53 30.95 +flicage flicage nom m s 0.01 0.14 0.01 0.14 +flicaille flicaille nom f s 0.20 1.28 0.20 1.22 +flicailles flicaille nom f p 0.20 1.28 0.00 0.07 +flicard flicard nom m s 0.31 2.03 0.29 1.28 +flicarde flicard adj f s 0.35 0.54 0.00 0.14 +flicardes flicard adj f p 0.35 0.54 0.00 0.07 +flicards flicard adj m p 0.35 0.54 0.13 0.00 +flics flic nom m p 153.50 72.43 85.97 41.49 +flingage flingage nom m s 0.01 0.27 0.01 0.27 +flingot flingot nom m s 0.02 0.41 0.02 0.20 +flingots flingot nom m p 0.02 0.41 0.00 0.20 +flingoté flingoter ver m s 0.00 0.07 0.00 0.07 par:pas; +flinguait flinguer ver 11.35 4.12 0.01 0.14 ind:imp:3s; +flinguant flinguer ver 11.35 4.12 0.03 0.00 par:pre; +flingue flingue nom m s 44.48 12.57 38.34 10.88 +flinguent flinguer ver 11.35 4.12 0.40 0.00 ind:pre:3p; +flinguer flinguer ver 11.35 4.12 4.05 2.36 inf; +flinguera flinguer ver 11.35 4.12 0.18 0.00 ind:fut:3s; +flinguerai flinguer ver 11.35 4.12 0.11 0.00 ind:fut:1s; +flingueraient flinguer ver 11.35 4.12 0.01 0.00 cnd:pre:3p; +flinguerais flinguer ver 11.35 4.12 0.24 0.00 cnd:pre:1s;cnd:pre:2s; +flingueront flinguer ver 11.35 4.12 0.02 0.00 ind:fut:3p; +flingues flingue nom m p 44.48 12.57 6.13 1.69 +flingueur flingueur nom m s 0.60 0.14 0.50 0.07 +flingueurs flingueur nom m p 0.60 0.14 0.10 0.07 +flingueuse flingueur nom f s 0.60 0.14 0.01 0.00 +flingueuses flingueuse nom f p 0.01 0.00 0.01 0.00 +flinguez flinguer ver 11.35 4.12 0.47 0.14 imp:pre:2p;ind:pre:2p; +flinguons flinguer ver 11.35 4.12 0.02 0.00 imp:pre:1p; +flinguât flinguer ver 11.35 4.12 0.00 0.07 sub:imp:3s; +flingué flinguer ver m s 11.35 4.12 2.30 0.81 par:pas; +flinguée flinguer ver f s 11.35 4.12 0.24 0.20 par:pas; +flingués flinguer ver m p 11.35 4.12 0.22 0.07 par:pas; +flint flint nom m s 0.00 0.07 0.00 0.07 +flip_flap flip_flap nom m 0.00 0.14 0.00 0.14 +flip_flop flip_flop nom m 0.07 0.00 0.07 0.00 +flip flip nom m s 1.63 1.42 1.58 1.28 +flippais flipper ver 14.29 3.65 0.08 0.07 ind:imp:1s;ind:imp:2s; +flippait flipper ver 14.29 3.65 0.26 0.47 ind:imp:3s; +flippant flipper ver 14.29 3.65 2.60 0.27 par:pre; +flippe flipper ver 14.29 3.65 1.98 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flippent flipper ver 14.29 3.65 0.21 0.07 ind:pre:3p; +flipper flipper ver 14.29 3.65 6.58 1.69 inf; +flipperais flipper ver 14.29 3.65 0.04 0.00 cnd:pre:1s; +flipperait flipper ver 14.29 3.65 0.09 0.00 cnd:pre:3s; +flipperont flipper ver 14.29 3.65 0.11 0.00 ind:fut:3p; +flippers flipper nom m p 1.93 2.43 0.32 0.95 +flippes flipper ver 14.29 3.65 0.69 0.00 ind:pre:2s; +flippé flipper ver m s 14.29 3.65 1.57 0.27 par:pas; +flippée flippé adj f s 0.32 0.20 0.13 0.14 +flippés flippé nom m p 0.11 0.95 0.04 0.07 +flips flip nom m p 1.63 1.42 0.05 0.14 +fliquer fliquer ver 0.00 0.07 0.00 0.07 inf; +fliquesse fliquesse nom f s 0.02 0.00 0.02 0.00 +fliqué fliqué adj m s 0.14 0.07 0.00 0.07 +fliqués fliqué adj m p 0.14 0.07 0.14 0.00 +flirt flirt nom m s 2.29 3.65 1.98 2.64 +flirta flirter ver 7.06 3.04 0.02 0.14 ind:pas:3s; +flirtaient flirter ver 7.06 3.04 0.01 0.07 ind:imp:3p; +flirtais flirter ver 7.06 3.04 0.51 0.07 ind:imp:1s;ind:imp:2s; +flirtait flirter ver 7.06 3.04 0.55 0.81 ind:imp:3s; +flirtant flirter ver 7.06 3.04 0.29 0.14 par:pre; +flirtation flirtation nom f s 0.01 0.00 0.01 0.00 +flirte flirter ver 7.06 3.04 1.42 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flirtent flirter ver 7.06 3.04 0.07 0.07 ind:pre:3p; +flirter flirter ver 7.06 3.04 2.91 0.54 inf; +flirteront flirter ver 7.06 3.04 0.00 0.07 ind:fut:3p; +flirtes flirter ver 7.06 3.04 0.38 0.00 ind:pre:2s; +flirteur flirteur adj m s 0.11 0.14 0.10 0.07 +flirteuse flirteur nom f s 0.11 0.07 0.01 0.07 +flirteuses flirteur adj f p 0.11 0.14 0.00 0.07 +flirtez flirter ver 7.06 3.04 0.14 0.00 imp:pre:2p;ind:pre:2p; +flirtiez flirter ver 7.06 3.04 0.04 0.00 ind:imp:2p; +flirtons flirter ver 7.06 3.04 0.02 0.00 imp:pre:1p;ind:pre:1p; +flirts flirt nom m p 2.29 3.65 0.31 1.01 +flirtèrent flirter ver 7.06 3.04 0.00 0.14 ind:pas:3p; +flirté flirter ver m s 7.06 3.04 0.71 0.41 par:pas; +floc floc ono 0.33 2.57 0.33 2.57 +floche floche adj f s 0.03 0.20 0.03 0.00 +floches floche nom f p 0.00 0.27 0.00 0.20 +flocon flocon nom m s 2.61 8.92 0.19 1.35 +floconne floconner ver 0.00 0.34 0.00 0.27 ind:pre:3s; +floconnent floconner ver 0.00 0.34 0.00 0.07 ind:pre:3p; +floconneuse floconneux adj f s 0.08 0.54 0.04 0.20 +floconneuses floconneux adj f p 0.08 0.54 0.00 0.14 +floconneux floconneux adj m 0.08 0.54 0.05 0.20 +flocons flocon nom m p 2.61 8.92 2.42 7.57 +floculation floculation nom f s 0.01 0.00 0.01 0.00 +floculent floculer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +flâna flâner ver 1.15 9.05 0.00 0.20 ind:pas:3s; +flânai flâner ver 1.15 9.05 0.00 0.07 ind:pas:1s; +flânaient flâner ver 1.15 9.05 0.00 0.47 ind:imp:3p; +flânais flâner ver 1.15 9.05 0.03 0.07 ind:imp:1s; +flânait flâner ver 1.15 9.05 0.12 0.68 ind:imp:3s; +flânant flâner ver 1.15 9.05 0.02 1.55 par:pre; +flâne flâner ver 1.15 9.05 0.19 0.68 ind:pre:1s;ind:pre:3s; +flânent flâner ver 1.15 9.05 0.01 0.41 ind:pre:3p; +flâner flâner ver 1.15 9.05 0.70 3.65 inf; +flânera flâner ver 1.15 9.05 0.00 0.07 ind:fut:3s; +flânerais flâner ver 1.15 9.05 0.01 0.00 cnd:pre:1s; +flânerait flâner ver 1.15 9.05 0.01 0.00 cnd:pre:3s; +flânerie flânerie nom f s 0.11 2.43 0.01 1.76 +flâneries flânerie nom f p 0.11 2.43 0.10 0.68 +flâneront flâner ver 1.15 9.05 0.00 0.07 ind:fut:3p; +flâneur flâneur nom m s 0.03 1.69 0.01 0.88 +flâneurs flâneur nom m p 0.03 1.69 0.01 0.68 +flâneuse flâneuse nom f s 0.01 0.00 0.01 0.00 +flâneuses flâneur nom f p 0.03 1.69 0.00 0.14 +flonflon flonflon nom m s 0.22 1.35 0.00 0.07 +flonflons flonflon nom m p 0.22 1.35 0.22 1.28 +flânions flâner ver 1.15 9.05 0.02 0.14 ind:imp:1p; +flânochent flânocher ver 0.00 0.14 0.00 0.07 ind:pre:3p; +flânocher flânocher ver 0.00 0.14 0.00 0.07 inf; +flânons flâner ver 1.15 9.05 0.00 0.07 ind:pre:1p; +flâné flâner ver m s 1.15 9.05 0.03 0.95 par:pas; +flood flood adj s 0.33 0.00 0.33 0.00 +flop flop ono 0.14 0.20 0.14 0.20 +flops flop nom m p 0.76 0.27 0.08 0.00 +flopée flopée nom f s 0.27 0.74 0.26 0.61 +flopées flopée nom f p 0.27 0.74 0.01 0.14 +floraison floraison nom f s 0.53 4.12 0.29 3.18 +floraisons floraison nom f p 0.53 4.12 0.24 0.95 +floral floral adj m s 0.69 1.49 0.28 0.34 +florale floral adj f s 0.69 1.49 0.32 0.27 +florales floral adj f p 0.69 1.49 0.05 0.41 +floralies floralies nom f p 0.02 0.07 0.02 0.07 +floraux floral adj m p 0.69 1.49 0.04 0.47 +flore flore nom f s 0.59 1.55 0.56 1.35 +florence florence nom f s 0.00 0.07 0.00 0.07 +florentin florentin adj m s 0.58 1.49 0.21 0.47 +florentine florentin adj f s 0.58 1.49 0.20 0.41 +florentines florentin adj f p 0.58 1.49 0.14 0.14 +florentins florentin adj m p 0.58 1.49 0.04 0.47 +flores flore nom f p 0.59 1.55 0.02 0.20 +florilège florilège nom m s 0.00 0.14 0.00 0.14 +florin florin nom m s 3.55 1.76 1.08 0.27 +florins florin nom m p 3.55 1.76 2.48 1.49 +florissaient florissaient ver 0.00 0.07 0.00 0.07 inf; +florissait florissait ver 0.00 0.14 0.00 0.14 inf; +florissant florissant adj m s 0.97 2.30 0.28 0.74 +florissante florissant adj f s 0.97 2.30 0.32 0.81 +florissantes florissant adj f p 0.97 2.30 0.33 0.47 +florissants florissant adj m p 0.97 2.30 0.04 0.27 +florès florès adv 0.00 0.54 0.00 0.54 +floréal floréal nom m s 0.00 0.20 0.00 0.20 +flot flot nom m s 10.28 45.95 4.66 29.59 +flots flot nom m p 10.28 45.95 5.62 16.35 +flotta flotter ver 12.79 63.85 0.01 0.81 ind:pas:3s; +flottabilité flottabilité nom f s 0.02 0.00 0.02 0.00 +flottage flottage nom m s 0.00 0.07 0.00 0.07 +flottaient flotter ver 12.79 63.85 0.47 6.62 ind:imp:3p; +flottais flotter ver 12.79 63.85 0.54 0.81 ind:imp:1s;ind:imp:2s; +flottaison flottaison nom f s 0.12 1.28 0.12 1.22 +flottaisons flottaison nom f p 0.12 1.28 0.00 0.07 +flottait flotter ver 12.79 63.85 0.96 19.80 ind:imp:3s; +flottant flottant adj m s 2.21 13.31 1.01 4.12 +flottante flottant adj f s 2.21 13.31 0.93 4.59 +flottantes flottant adj f p 2.21 13.31 0.12 2.43 +flottants flottant adj m p 2.21 13.31 0.15 2.16 +flottation flottation nom f s 0.01 0.00 0.01 0.00 +flotte flotte nom f s 16.36 27.64 16.22 26.22 +flottement flottement nom m s 0.30 2.43 0.30 2.30 +flottements flottement nom m p 0.30 2.43 0.00 0.14 +flottent flotter ver 12.79 63.85 1.07 5.34 ind:pre:3p; +flotter flotter ver 12.79 63.85 3.16 10.68 inf; +flottera flotter ver 12.79 63.85 0.58 0.00 ind:fut:3s; +flotteraient flotter ver 12.79 63.85 0.00 0.14 cnd:pre:3p; +flotterait flotter ver 12.79 63.85 0.04 0.20 cnd:pre:3s; +flotteras flotter ver 12.79 63.85 0.05 0.00 ind:fut:2s; +flotterez flotter ver 12.79 63.85 0.04 0.00 ind:fut:2p; +flotteront flotter ver 12.79 63.85 0.01 0.07 ind:fut:3p; +flottes flotter ver 12.79 63.85 0.30 0.07 ind:pre:2s; +flotteur flotteur nom m s 0.70 1.62 0.39 0.68 +flotteurs flotteur nom m p 0.70 1.62 0.31 0.95 +flottez flotter ver 12.79 63.85 0.30 0.20 imp:pre:2p;ind:pre:2p; +flottiez flotter ver 12.79 63.85 0.14 0.07 ind:imp:2p; +flottille flottille nom f s 0.28 1.76 0.28 1.42 +flottilles flottille nom f p 0.28 1.76 0.00 0.34 +flottions flotter ver 12.79 63.85 0.00 0.14 ind:imp:1p; +flottât flotter ver 12.79 63.85 0.00 0.07 sub:imp:3s; +flottèrent flotter ver 12.79 63.85 0.01 0.54 ind:pas:3p; +flotté flotter ver m s 12.79 63.85 0.37 1.15 par:pas; +flottée flotter ver f s 12.79 63.85 0.00 0.20 par:pas; +flottées flotter ver f p 12.79 63.85 0.00 0.20 par:pas; +flottés flotter ver m p 12.79 63.85 0.00 0.27 par:pas; +flou flou adj m s 8.18 16.15 4.91 6.08 +flouant flouer ver 0.84 0.95 0.00 0.07 par:pre; +floue flou adj f s 8.18 16.15 2.25 4.39 +flouer flouer ver 0.84 0.95 0.07 0.00 inf; +flouerie flouerie nom f s 0.00 0.07 0.00 0.07 +floues flou adj f p 8.18 16.15 0.76 2.57 +flous flou adj m p 8.18 16.15 0.27 3.11 +flouse flouse nom m s 0.01 0.14 0.01 0.14 +floué flouer ver m s 0.84 0.95 0.39 0.54 par:pas; +flouée flouer ver f s 0.84 0.95 0.06 0.07 par:pas; +floués flouer ver m p 0.84 0.95 0.30 0.07 par:pas; +flouve flouve nom f s 0.00 0.07 0.00 0.07 +flouzaille flouzaille nom f s 0.00 0.07 0.00 0.07 +flouze flouze nom m s 0.23 0.34 0.23 0.34 +flèche flèche nom f s 12.76 25.00 8.21 15.54 +flèches flèche nom f p 12.76 25.00 4.55 9.46 +fluaient fluer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +fluait fluer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +fléau fléau nom m s 5.10 4.39 4.47 3.04 +fléaux fléau nom m p 5.10 4.39 0.63 1.35 +flubes fluber ver 0.00 0.88 0.00 0.88 ind:pre:2s; +flécher flécher ver 0.02 0.54 0.01 0.07 inf; +fléchette fléchette nom f s 1.60 1.28 0.33 0.34 +fléchettes fléchette nom f p 1.60 1.28 1.27 0.95 +fléchi fléchir ver m s 1.54 9.32 0.21 1.08 par:pas; +fléchie fléchir ver f s 1.54 9.32 0.14 0.34 par:pas; +fléchies fléchir ver f p 1.54 9.32 0.00 0.34 par:pas; +fléchir fléchir ver 1.54 9.32 0.58 2.64 inf; +fléchiraient fléchir ver 1.54 9.32 0.01 0.00 cnd:pre:3p; +fléchirait fléchir ver 1.54 9.32 0.00 0.07 cnd:pre:3s; +fléchirent fléchir ver 1.54 9.32 0.00 0.07 ind:pas:3p; +fléchis fléchir ver m p 1.54 9.32 0.17 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fléchissaient fléchir ver 1.54 9.32 0.00 0.41 ind:imp:3p; +fléchissais fléchir ver 1.54 9.32 0.00 0.07 ind:imp:1s; +fléchissait fléchir ver 1.54 9.32 0.01 0.61 ind:imp:3s; +fléchissant fléchir ver 1.54 9.32 0.00 0.61 par:pre; +fléchisse fléchir ver 1.54 9.32 0.00 0.20 sub:pre:3s; +fléchissement fléchissement nom m s 0.01 1.15 0.01 1.01 +fléchissements fléchissement nom m p 0.01 1.15 0.00 0.14 +fléchissent fléchir ver 1.54 9.32 0.02 0.47 ind:pre:3p; +fléchisseur fléchisseur adj m s 0.01 0.00 0.01 0.00 +fléchissez fléchir ver 1.54 9.32 0.02 0.00 imp:pre:2p;ind:pre:2p; +fléchissions fléchir ver 1.54 9.32 0.00 0.07 ind:imp:1p; +fléchissons fléchir ver 1.54 9.32 0.01 0.00 ind:pre:1p; +fléchit fléchir ver 1.54 9.32 0.37 1.76 ind:pre:3s;ind:pas:3s; +fléché flécher ver m s 0.02 0.54 0.01 0.14 par:pas; +fléchée fléché adj f s 0.09 0.54 0.08 0.14 +fléchées flécher ver f p 0.02 0.54 0.00 0.07 par:pas; +fléchées fléché adj f p 0.09 0.54 0.00 0.07 +fléchés fléché adj m p 0.09 0.54 0.01 0.07 +fluctuait fluctuer ver 0.17 0.68 0.01 0.07 ind:imp:3s; +fluctuant fluctuant adj m s 0.11 0.41 0.07 0.20 +fluctuante fluctuant adj f s 0.11 0.41 0.04 0.20 +fluctuation fluctuation nom f s 0.85 0.95 0.29 0.07 +fluctuations fluctuation nom f p 0.85 0.95 0.56 0.88 +fluctue fluctuer ver 0.17 0.68 0.11 0.27 ind:pre:3s; +fluctuent fluctuer ver 0.17 0.68 0.03 0.07 ind:pre:3p; +fluctuer fluctuer ver 0.17 0.68 0.02 0.07 inf; +fluctuerait fluctuer ver 0.17 0.68 0.00 0.07 cnd:pre:3s; +fluctué fluctuer ver m s 0.17 0.68 0.00 0.14 par:pas; +fluence fluence nom f s 0.01 0.00 0.01 0.00 +fluet fluet adj m s 0.32 4.32 0.23 1.69 +fluets fluet adj m p 0.32 4.32 0.00 0.34 +fluette fluet adj f s 0.32 4.32 0.08 2.03 +fluettes fluet adj f p 0.32 4.32 0.00 0.27 +fluide fluide adj s 1.73 4.80 1.58 3.78 +fluidement fluidement adv 0.00 0.14 0.00 0.14 +fluides fluide nom m p 3.27 2.43 1.78 0.68 +fluidifiant fluidifiant nom m s 0.03 0.00 0.03 0.00 +fluidifier fluidifier ver 0.03 0.07 0.01 0.07 inf; +fluidifié fluidifier ver m s 0.03 0.07 0.01 0.00 par:pas; +fluidiques fluidique adj p 0.00 0.07 0.00 0.07 +fluidité fluidité nom f s 0.39 1.35 0.39 1.35 +fluo fluo adj 0.56 0.20 0.56 0.20 +fléole fléole nom f s 0.00 0.07 0.00 0.07 +fluor fluor nom m s 0.12 0.00 0.12 0.00 +fluorescence fluorescence nom f s 0.05 0.14 0.05 0.14 +fluorescent fluorescent adj m s 0.60 0.95 0.14 0.47 +fluorescente fluorescent adj f s 0.60 0.95 0.12 0.07 +fluorescentes fluorescent adj f p 0.60 0.95 0.26 0.20 +fluorescents fluorescent adj m p 0.60 0.95 0.08 0.20 +fluorescéine fluorescéine nom f s 0.01 0.00 0.01 0.00 +fluorhydrique fluorhydrique adj m s 0.01 0.00 0.01 0.00 +fluorite fluorite nom f s 0.04 0.00 0.04 0.00 +fluorée fluoré adj f s 0.04 0.00 0.04 0.00 +fluorure fluorure nom m s 0.17 0.07 0.17 0.07 +flush flush nom m s 1.17 0.07 1.17 0.07 +flétan flétan nom m s 0.26 0.07 0.23 0.07 +flétans flétan nom m p 0.26 0.07 0.02 0.00 +flétrît flétrir ver 1.78 6.08 0.00 0.07 sub:imp:3s; +flétri flétrir ver m s 1.78 6.08 0.32 1.69 par:pas; +flétrie flétrir ver f s 1.78 6.08 0.23 1.01 par:pas; +flétries flétrir ver f p 1.78 6.08 0.03 1.08 par:pas; +flétrir flétrir ver 1.78 6.08 0.23 0.27 inf; +flétrira flétrir ver 1.78 6.08 0.01 0.07 ind:fut:3s; +flétrirai flétrir ver 1.78 6.08 0.01 0.00 ind:fut:1s; +flétrirent flétrir ver 1.78 6.08 0.00 0.07 ind:pas:3p; +flétriront flétrir ver 1.78 6.08 0.01 0.00 ind:fut:3p; +flétris flétrir ver m p 1.78 6.08 0.33 0.95 par:pas; +flétrissaient flétrir ver 1.78 6.08 0.00 0.14 ind:imp:3p; +flétrissait flétrir ver 1.78 6.08 0.01 0.41 ind:imp:3s; +flétrissant flétrissant adj m s 0.00 0.07 0.00 0.07 +flétrissement flétrissement nom m s 0.10 0.00 0.10 0.00 +flétrissent flétrir ver 1.78 6.08 0.06 0.14 ind:pre:3p; +flétrissure flétrissure nom f s 0.00 0.88 0.00 0.61 +flétrissures flétrissure nom f p 0.00 0.88 0.00 0.27 +flétrit flétrir ver 1.78 6.08 0.54 0.20 ind:pre:3s;ind:pas:3s; +fluvial fluvial adj m s 0.60 1.35 0.16 0.74 +fluviale fluvial adj f s 0.60 1.35 0.33 0.27 +fluviales fluvial adj f p 0.60 1.35 0.11 0.07 +fluviatile fluviatile adj m s 0.00 0.07 0.00 0.07 +fluviaux fluvial adj m p 0.60 1.35 0.01 0.27 +flux flux nom m 4.07 6.42 4.07 6.42 +fluxe fluxer ver 0.01 0.00 0.01 0.00 ind:pre:3s; +fluxion fluxion nom f s 0.29 0.47 0.29 0.47 +foc foc nom m s 0.31 1.28 0.29 1.22 +focal focal adj m s 0.68 0.07 0.25 0.07 +focale focal adj f s 0.68 0.07 0.36 0.00 +focales focal adj f p 0.68 0.07 0.05 0.00 +focalisation focalisation nom f s 0.01 0.00 0.01 0.00 +focalise focaliser ver 1.81 0.34 0.52 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +focaliser focaliser ver 1.81 0.34 0.59 0.07 inf; +focalisez focaliser ver 1.81 0.34 0.22 0.00 imp:pre:2p;ind:pre:2p; +focalisons focaliser ver 1.81 0.34 0.05 0.00 imp:pre:1p;ind:pre:1p; +focalisé focaliser ver m s 1.81 0.34 0.35 0.00 par:pas; +focalisés focaliser ver m p 1.81 0.34 0.08 0.07 par:pas; +focaux focal adj m p 0.68 0.07 0.01 0.00 +fâcha fâcher ver 46.63 21.96 0.04 1.42 ind:pas:3s; +fâchai fâcher ver 46.63 21.96 0.00 0.07 ind:pas:1s; +fâchaient fâcher ver 46.63 21.96 0.01 0.27 ind:imp:3p; +fâchais fâcher ver 46.63 21.96 0.01 0.07 ind:imp:1s; +fâchait fâcher ver 46.63 21.96 0.04 1.01 ind:imp:3s; +fâche fâcher ver 46.63 21.96 11.69 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fâchent fâcher ver 46.63 21.96 0.10 0.20 ind:pre:3p; +fâcher fâcher ver 46.63 21.96 5.08 4.05 inf; +fâchera fâcher ver 46.63 21.96 0.49 0.07 ind:fut:3s; +fâcherai fâcher ver 46.63 21.96 0.43 0.07 ind:fut:1s; +fâcherais fâcher ver 46.63 21.96 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +fâcherait fâcher ver 46.63 21.96 0.28 0.20 cnd:pre:3s; +fâcheras fâcher ver 46.63 21.96 0.16 0.07 ind:fut:2s; +fâcherie fâcherie nom f s 0.14 0.47 0.14 0.20 +fâcheries fâcherie nom f p 0.14 0.47 0.00 0.27 +fâcheront fâcher ver 46.63 21.96 0.01 0.00 ind:fut:3p; +fâches fâcher ver 46.63 21.96 1.60 0.34 ind:pre:2s; +fâcheuse fâcheux adj f s 3.79 8.85 0.80 2.70 +fâcheusement fâcheusement adv 0.03 0.88 0.03 0.88 +fâcheuses fâcheux adj f p 3.79 8.85 0.85 1.76 +fâcheux fâcheux adj m 3.79 8.85 2.13 4.39 +fâchez fâcher ver 46.63 21.96 2.25 0.74 imp:pre:2p;ind:pre:2p; +fâchiez fâcher ver 46.63 21.96 0.01 0.00 ind:imp:2p; +fâchions fâcher ver 46.63 21.96 0.10 0.00 ind:imp:1p; +fâchons fâcher ver 46.63 21.96 0.05 0.00 imp:pre:1p; +fâchèrent fâcher ver 46.63 21.96 0.00 0.14 ind:pas:3p; +fâché fâcher ver m s 46.63 21.96 12.81 4.73 par:pas; +fâchée fâcher ver f s 46.63 21.96 8.90 2.16 par:pas; +fâchées fâcher ver f p 46.63 21.96 0.43 0.20 par:pas; +fâchés fâcher ver m p 46.63 21.96 2.13 1.08 par:pas; +focs foc nom m p 0.31 1.28 0.02 0.07 +foehn foehn nom m s 0.04 0.00 0.04 0.00 +foetal foetal adj m s 1.05 1.35 0.27 0.34 +foetale foetal adj f s 1.05 1.35 0.69 1.01 +foetales foetal adj f p 1.05 1.35 0.01 0.00 +foetaux foetal adj m p 1.05 1.35 0.08 0.00 +foetus foetus nom m 3.06 2.57 3.06 2.57 +fofolle fofolle adj f s 0.27 0.00 0.25 0.00 +fofolles fofolle adj f p 0.27 0.00 0.02 0.00 +foi foi nom f s 54.06 76.49 54.06 76.49 +foie foie nom m s 23.48 17.97 22.27 15.47 +foies foie nom m p 23.48 17.97 1.21 2.50 +foil foil nom m s 0.01 0.00 0.01 0.00 +foin foin nom m s 6.73 17.91 6.06 16.01 +foins foin nom m p 6.73 17.91 0.67 1.89 +foira foirer ver 14.76 2.09 0.00 0.07 ind:pas:3s; +foirade foirade nom f s 0.00 0.34 0.00 0.20 +foirades foirade nom f p 0.00 0.34 0.00 0.14 +foiraient foirer ver 14.76 2.09 0.01 0.14 ind:imp:3p; +foirail foirail nom m s 0.00 0.47 0.00 0.41 +foirails foirail nom m p 0.00 0.47 0.00 0.07 +foirais foirer ver 14.76 2.09 0.01 0.00 ind:imp:1s; +foirait foirer ver 14.76 2.09 0.07 0.20 ind:imp:3s; +foire foire nom f s 11.83 15.95 11.11 13.78 +foirent foirer ver 14.76 2.09 0.16 0.07 ind:pre:3p; +foirer foirer ver 14.76 2.09 4.60 0.34 inf; +foirera foirer ver 14.76 2.09 0.05 0.00 ind:fut:3s; +foires foire nom f p 11.83 15.95 0.72 2.16 +foireuse foireux adj f s 3.20 4.05 0.37 0.41 +foireuses foireux adj f p 3.20 4.05 0.26 0.61 +foireux foireux adj m 3.20 4.05 2.57 3.04 +foirez foirer ver 14.76 2.09 0.15 0.00 imp:pre:2p;ind:pre:2p; +foiridon foiridon nom m s 0.00 0.20 0.00 0.20 +foiré foirer ver m s 14.76 2.09 6.96 0.74 par:pas; +foirée foirer ver f s 14.76 2.09 0.11 0.00 par:pas; +foirées foirer ver f p 14.76 2.09 0.02 0.07 par:pas; +foirés foirer ver m p 14.76 2.09 0.03 0.07 par:pas; +fois fois nom f p 899.25 1140.00 899.25 1140.00 +foison foison nom f s 0.31 1.15 0.31 1.15 +foisonnaient foisonner ver 0.09 1.42 0.00 0.41 ind:imp:3p; +foisonnait foisonner ver 0.09 1.42 0.00 0.07 ind:imp:3s; +foisonnant foisonner ver 0.09 1.42 0.01 0.14 par:pre; +foisonnante foisonnant adj f s 0.10 0.88 0.10 0.34 +foisonnantes foisonnant adj f p 0.10 0.88 0.00 0.20 +foisonne foisonner ver 0.09 1.42 0.02 0.14 ind:pre:3s; +foisonnement foisonnement nom m s 0.00 1.55 0.00 1.55 +foisonnent foisonner ver 0.09 1.42 0.04 0.47 ind:pre:3p; +foisonner foisonner ver 0.09 1.42 0.01 0.14 inf; +foisonneraient foisonner ver 0.09 1.42 0.00 0.07 cnd:pre:3p; +foisonneront foisonner ver 0.09 1.42 0.01 0.00 ind:fut:3p; +fol fol adj m s 0.66 1.62 0.41 1.28 +folasse folasse nom f s 0.01 0.00 0.01 0.00 +foldingue foldingue adj s 0.24 0.20 0.24 0.07 +foldingues foldingue nom p 0.07 0.07 0.03 0.00 +foliacée foliacé adj f s 0.01 0.00 0.01 0.00 +folichon folichon adj m s 0.72 0.27 0.69 0.20 +folichonnait folichonner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +folichonne folichon adj f s 0.72 0.27 0.02 0.00 +folichonneries folichonnerie nom f p 0.00 0.07 0.00 0.07 +folichonnes folichon adj f p 0.72 0.27 0.01 0.07 +folie folie nom f s 52.39 60.74 49.01 52.43 +folies folie nom f p 52.39 60.74 3.38 8.31 +folingue folingue adj m s 0.02 0.68 0.02 0.61 +folingues folingue adj p 0.02 0.68 0.00 0.07 +folio folio nom m s 0.02 0.54 0.02 0.41 +folioles foliole nom f p 0.00 0.14 0.00 0.14 +folios folio nom m p 0.02 0.54 0.00 0.14 +folique folique adj m s 0.13 0.00 0.13 0.00 +folk folk nom m s 1.73 2.64 1.30 2.64 +folklo folklo adj s 0.04 0.47 0.04 0.47 +folklore folklore nom m s 0.86 3.78 0.85 3.72 +folklores folklore nom m p 0.86 3.78 0.01 0.07 +folklorique folklorique adj s 1.73 1.96 0.79 0.95 +folkloriques folklorique adj p 1.73 1.96 0.94 1.01 +folkloriste folkloriste nom s 0.00 0.20 0.00 0.14 +folkloristes folkloriste nom p 0.00 0.20 0.00 0.07 +folks folk nom m p 1.73 2.64 0.42 0.00 +folle fou adj f s 321.31 164.32 84.38 46.01 +folledingue folledingue nom s 0.02 0.00 0.02 0.00 +follement follement adv 4.15 6.42 4.15 6.42 +folles fou adj f p 321.31 164.32 6.47 11.62 +follet follet adj m s 0.30 3.11 0.08 1.15 +follets follet adj m p 0.30 3.11 0.23 1.55 +follette follet adj f s 0.30 3.11 0.00 0.20 +follettes follet adj f p 0.30 3.11 0.00 0.20 +folliculaire folliculaire adj f s 0.05 0.00 0.05 0.00 +folliculaires folliculaire nom m p 0.00 0.07 0.00 0.07 +follicule follicule nom m s 0.36 0.00 0.15 0.00 +follicules follicule nom m p 0.36 0.00 0.21 0.00 +folliculite folliculite nom f s 0.02 0.00 0.02 0.00 +follingue follingue adj s 0.00 0.07 0.00 0.07 +folâtraient folâtrer ver 0.36 0.95 0.00 0.34 ind:imp:3p; +folâtrait folâtrer ver 0.36 0.95 0.02 0.14 ind:imp:3s; +folâtre folâtrer ver 0.36 0.95 0.30 0.20 imp:pre:2s;ind:pre:3s; +folâtrent folâtrer ver 0.36 0.95 0.00 0.07 ind:pre:3p; +folâtrer folâtrer ver 0.36 0.95 0.04 0.20 inf; +folâtreries folâtrerie nom f p 0.01 0.07 0.01 0.07 +folâtres folâtre adj p 0.28 0.74 0.01 0.34 +fols fol adj m p 0.66 1.62 0.25 0.34 +fomentaient fomenter ver 0.44 1.35 0.00 0.07 ind:imp:3p; +fomentait fomenter ver 0.44 1.35 0.00 0.20 ind:imp:3s; +fomentateurs fomentateur nom m p 0.01 0.00 0.01 0.00 +fomente fomenter ver 0.44 1.35 0.24 0.07 ind:pre:1s;ind:pre:3s; +fomentent fomenter ver 0.44 1.35 0.04 0.14 ind:pre:3p; +fomenter fomenter ver 0.44 1.35 0.06 0.61 inf; +fomenté fomenter ver m s 0.44 1.35 0.11 0.20 par:pas; +fomentée fomenter ver f s 0.44 1.35 0.00 0.07 par:pas; +fonce foncer ver 30.27 41.82 16.31 12.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +foncent foncer ver 30.27 41.82 1.44 2.09 ind:pre:3p; +foncer foncer ver 30.27 41.82 3.34 6.01 inf; +foncera foncer ver 30.27 41.82 0.05 0.00 ind:fut:3s; +foncerai foncer ver 30.27 41.82 0.03 0.00 ind:fut:1s; +fonceraient foncer ver 30.27 41.82 0.03 0.14 cnd:pre:3p; +foncerais foncer ver 30.27 41.82 0.04 0.00 cnd:pre:1s; +foncerait foncer ver 30.27 41.82 0.03 0.07 cnd:pre:3s; +foncerons foncer ver 30.27 41.82 0.02 0.00 ind:fut:1p; +fonceront foncer ver 30.27 41.82 0.04 0.07 ind:fut:3p; +fonces foncer ver 30.27 41.82 1.16 0.20 ind:pre:2s;sub:pre:2s; +fonceur fonceur nom m s 0.72 0.14 0.42 0.14 +fonceurs fonceur nom m p 0.72 0.14 0.15 0.00 +fonceuse fonceur nom f s 0.72 0.14 0.16 0.00 +foncez foncer ver 30.27 41.82 2.69 0.27 imp:pre:2p;ind:pre:2p; +foncier foncier adj m s 1.20 2.64 0.33 1.28 +fonciers foncier adj m p 1.20 2.64 0.62 0.41 +fonciez foncer ver 30.27 41.82 0.02 0.00 ind:imp:2p; +foncions foncer ver 30.27 41.82 0.00 0.14 ind:imp:1p; +foncière foncier adj f s 1.20 2.64 0.20 0.81 +foncièrement foncièrement adv 0.18 2.09 0.18 2.09 +foncières foncier adj f p 1.20 2.64 0.05 0.14 +foncteur foncteur nom m s 0.01 0.00 0.01 0.00 +foncèrent foncer ver 30.27 41.82 0.05 0.47 ind:pas:3p; +fonction fonction nom f s 21.95 37.91 13.12 21.76 +fonctionna fonctionner ver 42.51 24.39 0.04 0.34 ind:pas:3s; +fonctionnaient fonctionner ver 42.51 24.39 0.48 1.42 ind:imp:3p; +fonctionnaire fonctionnaire nom s 8.13 26.89 5.03 11.28 +fonctionnaires fonctionnaire nom p 8.13 26.89 3.10 15.61 +fonctionnais fonctionner ver 42.51 24.39 0.03 0.00 ind:imp:1s; +fonctionnait fonctionner ver 42.51 24.39 1.24 5.47 ind:imp:3s; +fonctionnaliste fonctionnaliste adj f s 0.00 0.07 0.00 0.07 +fonctionnalité fonctionnalité nom f s 0.07 0.00 0.07 0.00 +fonctionnant fonctionner ver 42.51 24.39 0.17 1.22 par:pre; +fonctionnarisé fonctionnariser ver m s 0.00 0.14 0.00 0.07 par:pas; +fonctionnarisée fonctionnariser ver f s 0.00 0.14 0.00 0.07 par:pas; +fonctionnassent fonctionner ver 42.51 24.39 0.00 0.07 sub:imp:3p; +fonctionne fonctionner ver 42.51 24.39 23.76 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fonctionnel fonctionnel adj m s 2.05 1.55 1.28 0.47 +fonctionnelle fonctionnel adj f s 2.05 1.55 0.60 0.54 +fonctionnellement fonctionnellement adv 0.00 0.07 0.00 0.07 +fonctionnelles fonctionnel adj f p 2.05 1.55 0.04 0.20 +fonctionnels fonctionnel adj m p 2.05 1.55 0.13 0.34 +fonctionnement fonctionnement nom m s 2.69 6.01 2.69 6.01 +fonctionnent fonctionner ver 42.51 24.39 5.29 1.42 ind:pre:3p; +fonctionner fonctionner ver 42.51 24.39 6.59 7.03 inf; +fonctionnera fonctionner ver 42.51 24.39 0.91 0.07 ind:fut:3s; +fonctionneraient fonctionner ver 42.51 24.39 0.02 0.00 cnd:pre:3p; +fonctionnerait fonctionner ver 42.51 24.39 0.52 0.07 cnd:pre:3s; +fonctionneront fonctionner ver 42.51 24.39 0.13 0.07 ind:fut:3p; +fonctionnes fonctionner ver 42.51 24.39 0.20 0.00 ind:pre:2s; +fonctionnez fonctionner ver 42.51 24.39 0.07 0.00 ind:pre:2p; +fonctionnons fonctionner ver 42.51 24.39 0.07 0.00 ind:pre:1p; +fonctionnât fonctionner ver 42.51 24.39 0.00 0.34 sub:imp:3s; +fonctionné fonctionner ver m s 42.51 24.39 2.98 0.81 par:pas; +fonctions fonction nom f p 21.95 37.91 8.83 16.15 +foncé foncer ver m s 30.27 41.82 3.40 6.55 par:pas; +foncée foncé adj f s 4.06 11.08 0.75 1.62 +foncées foncé adj f p 4.06 11.08 0.14 0.47 +foncés foncé adj m p 4.06 11.08 0.69 1.08 +fond fond nom m s 110.07 376.15 110.07 376.15 +fondît fondre ver 17.29 38.18 0.00 0.07 sub:imp:3s; +fonda fonder ver 15.97 34.66 0.22 1.15 ind:pas:3s; +fondaient fonder ver 15.97 34.66 0.08 3.24 ind:imp:3p; +fondais fonder ver 15.97 34.66 0.11 0.81 ind:imp:1s;ind:imp:2s; +fondait fonder ver 15.97 34.66 0.25 7.97 ind:imp:3s; +fondamental fondamental adj m s 4.69 9.19 1.45 2.64 +fondamentale fondamental adj f s 4.69 9.19 1.55 4.39 +fondamentalement fondamentalement adv 2.03 1.15 2.03 1.15 +fondamentales fondamental adj f p 4.69 9.19 0.89 1.28 +fondamentalisme fondamentalisme nom m s 0.02 0.00 0.02 0.00 +fondamentaliste fondamentaliste adj s 0.19 0.00 0.11 0.00 +fondamentalistes fondamentaliste nom p 0.48 0.00 0.46 0.00 +fondamentaux fondamental adj m p 4.69 9.19 0.80 0.88 +fondant fondant nom m s 0.23 0.68 0.21 0.61 +fondante fondant adj f s 0.18 2.70 0.05 1.08 +fondantes fondant adj f p 0.18 2.70 0.00 0.20 +fondants fondant adj m p 0.18 2.70 0.03 0.20 +fondateur fondateur nom m s 5.10 2.16 2.40 1.69 +fondateurs fondateur nom m p 5.10 2.16 2.64 0.20 +fondation fondation nom f s 9.74 7.64 6.39 3.99 +fondations fondation nom f p 9.74 7.64 3.35 3.65 +fondatrice fondateur adj f s 1.91 1.55 0.09 0.07 +fondatrices fondatrice nom f p 0.01 0.00 0.01 0.00 +fonde fonder ver 15.97 34.66 2.23 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fondement fondement nom m s 2.47 3.78 1.76 2.43 +fondements fondement nom m p 2.47 3.78 0.71 1.35 +fondent fonder ver 15.97 34.66 1.21 3.85 ind:pre:3p;sub:pre:3p; +fonder fonder ver 15.97 34.66 4.21 4.26 inf; +fondera fonder ver 15.97 34.66 0.15 0.00 ind:fut:3s; +fonderais fonder ver 15.97 34.66 0.04 0.00 cnd:pre:1s; +fonderait fonder ver 15.97 34.66 0.02 0.00 cnd:pre:3s; +fonderez fonder ver 15.97 34.66 0.02 0.00 ind:fut:2p; +fonderie fonderie nom f s 0.53 1.42 0.51 0.41 +fonderies fonderie nom f p 0.53 1.42 0.03 1.01 +fonderons fonder ver 15.97 34.66 0.02 0.00 ind:fut:1p; +fonderont fonder ver 15.97 34.66 0.14 0.07 ind:fut:3p; +fondeur fondeur nom m s 0.34 0.41 0.34 0.41 +fondez fonder ver 15.97 34.66 0.33 0.00 imp:pre:2p;ind:pre:2p; +fondions fonder ver 15.97 34.66 0.02 0.07 ind:imp:1p; +fondirent fondre ver 17.29 38.18 0.02 0.68 ind:pas:3p; +fondis fondre ver 17.29 38.18 0.00 0.07 ind:pas:1s; +fondit fondre ver 17.29 38.18 0.04 2.97 ind:pas:3s; +fondons fonder ver 15.97 34.66 0.20 0.00 imp:pre:1p;ind:pre:1p; +fondât fonder ver 15.97 34.66 0.00 0.14 sub:imp:3s; +fondouk fondouk nom m s 0.00 0.07 0.00 0.07 +fondra fondre ver 17.29 38.18 0.28 0.27 ind:fut:3s; +fondrai fondre ver 17.29 38.18 0.16 0.00 ind:fut:1s; +fondraient fondre ver 17.29 38.18 0.01 0.20 cnd:pre:3p; +fondrait fondre ver 17.29 38.18 0.11 0.27 cnd:pre:3s; +fondras fondre ver 17.29 38.18 0.03 0.00 ind:fut:2s; +fondre fondre ver 17.29 38.18 8.03 17.70 inf; +fondriez fondre ver 17.29 38.18 0.01 0.00 cnd:pre:2p; +fondrière fondrière nom f s 0.01 1.96 0.00 0.61 +fondrières fondrière nom f p 0.01 1.96 0.01 1.35 +fonds fonds nom m 15.10 16.62 15.10 16.62 +fondèrent fonder ver 15.97 34.66 0.17 0.07 ind:pas:3p; +fondé fonder ver m s 15.97 34.66 4.09 4.73 par:pas; +fondu fondre ver m s 17.29 38.18 3.42 5.95 par:pas; +fondée fonder ver f s 15.97 34.66 1.28 3.31 par:pas; +fondue fondue nom f s 1.08 0.81 1.04 0.74 +fondées fonder ver f p 15.97 34.66 0.52 0.54 par:pas; +fondues fondre ver f p 17.29 38.18 0.11 0.81 par:pas; +fondés fonder ver m p 15.97 34.66 0.46 0.88 par:pas; +fondus fondu adj m p 1.82 2.84 0.22 0.47 +fongible fongible adj s 0.04 0.00 0.04 0.00 +fongicide fongicide nom m s 0.04 0.00 0.04 0.00 +fongique fongique adj s 0.05 0.00 0.05 0.00 +fongueuse fongueux adj f s 0.00 0.14 0.00 0.07 +fongueuses fongueux adj f p 0.00 0.14 0.00 0.07 +fongus fongus nom m 0.04 0.00 0.04 0.00 +font faire ver 8813.53 5328.99 193.61 153.92 ind:pre:3p; +fontaine fontaine nom f s 7.72 24.46 6.62 17.36 +fontaines fontaine nom f p 7.72 24.46 1.11 7.09 +fontainette fontainette nom f s 0.00 0.27 0.00 0.27 +fontainier fontainier nom m s 0.27 0.00 0.27 0.00 +fontanelle fontanelle nom f s 0.19 0.20 0.19 0.20 +fonte fonte nom f s 0.74 8.78 0.74 8.31 +fontes fonte nom f p 0.74 8.78 0.00 0.47 +fonça foncer ver 30.27 41.82 0.17 3.18 ind:pas:3s; +fonçai foncer ver 30.27 41.82 0.01 0.81 ind:pas:1s; +fonçaient foncer ver 30.27 41.82 0.21 1.76 ind:imp:3p; +fonçais foncer ver 30.27 41.82 0.14 0.81 ind:imp:1s;ind:imp:2s; +fonçait foncer ver 30.27 41.82 0.23 3.85 ind:imp:3s; +fonçant foncer ver 30.27 41.82 0.26 2.30 par:pre; +fonçons foncer ver 30.27 41.82 0.23 0.34 imp:pre:1p;ind:pre:1p; +fonts fonts nom m p 0.10 1.08 0.10 1.08 +foot foot nom m s 24.18 5.54 24.18 5.54 +football football nom m s 13.93 6.28 13.93 6.28 +footballeur_vedette footballeur_vedette nom m s 0.01 0.00 0.01 0.00 +footballeur footballeur nom m s 2.76 1.01 2.01 0.54 +footballeurs footballeur nom m p 2.76 1.01 0.71 0.47 +footballeuse footballeur nom f s 2.76 1.01 0.04 0.00 +footballistique footballistique adj f s 0.03 0.07 0.02 0.00 +footballistiques footballistique adj f p 0.03 0.07 0.01 0.07 +footeuse footeux adj f s 0.01 0.00 0.01 0.00 +footeux footeux nom m 0.04 0.00 0.04 0.00 +footing footing nom m s 0.45 0.34 0.45 0.34 +for for nom m s 21.32 8.51 21.32 8.51 +forage forage nom m s 0.91 0.27 0.82 0.20 +forages forage nom m p 0.91 0.27 0.09 0.07 +foraient forer ver 1.66 1.69 0.02 0.14 ind:imp:3p; +forain forain adj m s 2.14 6.22 0.39 1.42 +foraine forain adj f s 2.14 6.22 1.52 3.24 +foraines forain adj f p 2.14 6.22 0.23 1.08 +forains forain nom m p 0.44 2.50 0.34 1.01 +forait forer ver 1.66 1.69 0.14 0.27 ind:imp:3s; +foramen foramen nom m s 0.03 0.00 0.03 0.00 +foraminifères foraminifère nom m p 0.01 0.00 0.01 0.00 +forant forer ver 1.66 1.69 0.02 0.20 par:pre; +forban forban nom m s 0.19 1.01 0.03 0.74 +forbans forban nom m p 0.19 1.01 0.16 0.27 +force force adj_ind 1.41 4.86 1.41 4.86 +forcement forcement nom m s 0.81 0.07 0.81 0.07 +forcent forcer ver 64.64 75.41 1.14 1.08 ind:pre:3p; +forcené forcené nom m s 0.94 2.23 0.75 1.35 +forcenée forcené nom f s 0.94 2.23 0.02 0.20 +forcenées forcené nom f p 0.94 2.23 0.01 0.00 +forcenés forcené nom m p 0.94 2.23 0.16 0.68 +forceps forceps nom m 0.72 0.95 0.72 0.95 +forcer forcer ver 64.64 75.41 16.33 18.04 inf; +forcera forcer ver 64.64 75.41 0.76 0.34 ind:fut:3s; +forcerai forcer ver 64.64 75.41 0.47 0.20 ind:fut:1s; +forcerais forcer ver 64.64 75.41 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +forcerait forcer ver 64.64 75.41 0.14 0.20 cnd:pre:3s; +forceras forcer ver 64.64 75.41 0.05 0.00 ind:fut:2s; +forcerez forcer ver 64.64 75.41 0.11 0.00 ind:fut:2p; +forceront forcer ver 64.64 75.41 0.12 0.00 ind:fut:3p; +forces force nom f p 151.96 344.73 43.67 126.35 +forceur forceur nom m s 0.02 0.20 0.02 0.07 +forceurs forceur nom m p 0.02 0.20 0.00 0.14 +forcez forcer ver 64.64 75.41 2.81 0.74 imp:pre:2p;ind:pre:2p; +forci forcir ver m s 0.14 1.08 0.02 0.74 par:pas; +forciez forcer ver 64.64 75.41 0.06 0.00 ind:imp:2p; +forcing forcing nom m s 0.13 0.88 0.13 0.88 +forcions forcer ver 64.64 75.41 0.03 0.20 ind:imp:1p; +forcir forcir ver 0.14 1.08 0.01 0.20 inf; +forcis forcir ver m p 0.14 1.08 0.00 0.07 par:pas; +forcissait forcir ver 0.14 1.08 0.00 0.07 ind:imp:3s; +forcit forcir ver 0.14 1.08 0.11 0.00 ind:pre:3s; +forcèrent forcer ver 64.64 75.41 0.04 0.68 ind:pas:3p; +forcé forcer ver m s 64.64 75.41 16.33 16.55 par:pas; +forcée forcer ver f s 64.64 75.41 6.41 4.46 par:pas; +forcées forcer ver f p 64.64 75.41 0.94 0.61 par:pas; +forcément forcément adv 24.23 29.12 24.23 29.12 +forcés forcer ver m p 64.64 75.41 2.67 2.64 par:pas; +fore forer ver 1.66 1.69 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +foreign_office foreign_office nom m s 0.00 2.50 0.00 2.50 +forent forer ver 1.66 1.69 0.01 0.07 ind:pre:3p; +forer forer ver 1.66 1.69 0.80 0.47 inf; +forestier forestier adj m s 3.19 6.42 2.13 2.09 +forestiers forestier adj m p 3.19 6.42 0.42 0.61 +forestière forestier adj f s 3.19 6.42 0.49 2.91 +forestières forestier adj f p 3.19 6.42 0.14 0.81 +foret foret nom m s 1.56 0.54 1.16 0.14 +forets foret nom m p 1.56 0.54 0.40 0.41 +foreur foreur adj m s 0.43 0.00 0.42 0.00 +foreurs foreur nom m p 1.04 0.20 0.13 0.07 +foreuse foreur nom f s 1.04 0.20 0.68 0.14 +foreuses foreuse nom f p 0.17 0.00 0.17 0.00 +forez forer ver 1.66 1.69 0.03 0.00 ind:pre:2p; +forfait forfait nom m s 2.03 4.59 1.50 3.38 +forfaitaire forfaitaire adj s 0.05 0.20 0.05 0.14 +forfaitaires forfaitaire adj f p 0.05 0.20 0.00 0.07 +forfaits forfait nom m p 2.03 4.59 0.53 1.22 +forfaiture forfaiture nom f s 0.02 0.61 0.02 0.61 +forfanterie forfanterie nom f s 0.17 0.74 0.17 0.68 +forfanteries forfanterie nom f p 0.17 0.74 0.00 0.07 +forficules forficule nom f p 0.00 0.07 0.00 0.07 +forge forger ver 9.02 11.82 1.78 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +forgea forger ver 9.02 11.82 0.00 0.07 ind:pas:3s; +forgeage forgeage nom m s 0.14 0.00 0.14 0.00 +forgeaient forger ver 9.02 11.82 0.00 0.07 ind:imp:3p; +forgeais forger ver 9.02 11.82 0.00 0.07 ind:imp:1s; +forgeait forger ver 9.02 11.82 0.12 0.61 ind:imp:3s; +forgeant forger ver 9.02 11.82 0.10 0.27 par:pre; +forgent forger ver 9.02 11.82 0.31 0.20 ind:pre:3p; +forgeons forger ver 9.02 11.82 0.02 0.14 imp:pre:1p;ind:pre:1p; +forger forger ver 9.02 11.82 3.16 1.62 inf; +forgera forger ver 9.02 11.82 0.21 0.07 ind:fut:3s; +forgerai forger ver 9.02 11.82 0.20 0.00 ind:fut:1s; +forgeries forgerie nom f p 0.00 0.07 0.00 0.07 +forgeron forgeron nom m s 3.76 4.39 3.49 3.38 +forgeronne forgeron nom f s 3.76 4.39 0.02 0.00 +forgerons forgeron nom m p 3.76 4.39 0.25 1.01 +forges forge nom f p 1.64 8.58 0.13 0.95 +forgeur forgeur nom m s 0.15 0.00 0.15 0.00 +forgions forger ver 9.02 11.82 0.10 0.07 ind:imp:1p; +forgèrent forger ver 9.02 11.82 0.03 0.00 ind:pas:3p; +forgé forger ver m s 9.02 11.82 1.55 5.81 par:pas; +forgée forger ver f s 9.02 11.82 0.92 0.41 par:pas; +forgées forger ver f p 9.02 11.82 0.05 0.88 par:pas; +forgés forger ver m p 9.02 11.82 0.45 0.74 par:pas; +forints forint nom m p 0.14 0.00 0.14 0.00 +forlane forlane nom f s 0.10 0.00 0.10 0.00 +forlonger forlonger ver 0.00 0.14 0.00 0.07 inf; +forlongés forlonger ver m p 0.00 0.14 0.00 0.07 par:pas; +forma former ver 39.69 110.27 0.16 2.16 ind:pas:3s; +formage formage nom m s 0.00 0.07 0.00 0.07 +formai former ver 39.69 110.27 0.00 0.07 ind:pas:1s; +formaient former ver 39.69 110.27 0.73 16.96 ind:imp:3p; +formais former ver 39.69 110.27 0.01 0.47 ind:imp:1s; +formait former ver 39.69 110.27 1.42 11.69 ind:imp:3s; +formaldéhyde formaldéhyde nom m s 0.34 0.00 0.34 0.00 +formalisa formaliser ver 0.43 2.23 0.00 0.34 ind:pas:3s; +formalisaient formaliser ver 0.43 2.23 0.00 0.07 ind:imp:3p; +formalisais formaliser ver 0.43 2.23 0.00 0.14 ind:imp:1s; +formalisait formaliser ver 0.43 2.23 0.00 0.41 ind:imp:3s; +formalise formaliser ver 0.43 2.23 0.13 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +formaliser formaliser ver 0.43 2.23 0.04 0.68 inf; +formalisera formaliser ver 0.43 2.23 0.01 0.00 ind:fut:3s; +formaliserait formaliser ver 0.43 2.23 0.00 0.14 cnd:pre:3s; +formalisez formaliser ver 0.43 2.23 0.25 0.07 imp:pre:2p;ind:pre:2p; +formalisme formalisme nom m s 0.12 0.34 0.12 0.34 +formalisât formaliser ver 0.43 2.23 0.00 0.07 sub:imp:3s; +formaliste formaliste adj m s 0.02 0.27 0.02 0.07 +formalistes formaliste adj f p 0.02 0.27 0.00 0.20 +formalisé formalisé adj m s 0.01 0.00 0.01 0.00 +formalisée formaliser ver f s 0.43 2.23 0.00 0.07 par:pas; +formalisés formaliser ver m p 0.43 2.23 0.00 0.07 par:pas; +formalité formalité nom f s 7.08 7.03 3.77 2.97 +formalités formalité nom f p 7.08 7.03 3.30 4.05 +formant former ver 39.69 110.27 0.56 7.91 par:pre; +format format nom m s 1.90 8.11 1.80 6.96 +formatage formatage nom m s 0.07 0.00 0.07 0.00 +formater formater ver 0.13 0.00 0.04 0.00 inf; +formateur formateur adj m s 0.42 0.20 0.19 0.07 +formation formation nom f s 14.40 12.16 13.68 9.32 +formations formation nom f p 14.40 12.16 0.72 2.84 +formatrice formateur adj f s 0.42 0.20 0.12 0.14 +formatrices formateur adj f p 0.42 0.20 0.11 0.00 +formats format nom m p 1.90 8.11 0.10 1.15 +formaté formater ver m s 0.13 0.00 0.09 0.00 par:pas; +forme forme nom f s 94.19 176.69 82.61 137.91 +formel formel adj m s 4.55 9.05 2.40 3.31 +formelle formel adj f s 4.55 9.05 1.13 3.99 +formellement formellement adv 1.48 4.53 1.48 4.53 +formelles formel adj f p 4.55 9.05 0.40 0.81 +formels formel adj m p 4.55 9.05 0.62 0.95 +forment former ver 39.69 110.27 4.51 11.01 ind:pre:3p;sub:pre:3p; +former former ver 39.69 110.27 8.18 15.95 inf; +formera former ver 39.69 110.27 0.59 0.07 ind:fut:3s; +formerai former ver 39.69 110.27 0.10 0.07 ind:fut:1s; +formeraient former ver 39.69 110.27 0.28 0.54 cnd:pre:3p; +formerais former ver 39.69 110.27 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +formerait former ver 39.69 110.27 0.09 0.34 cnd:pre:3s; +formerez former ver 39.69 110.27 0.22 0.07 ind:fut:2p; +formeriez former ver 39.69 110.27 0.13 0.00 cnd:pre:2p; +formerons former ver 39.69 110.27 0.52 0.14 ind:fut:1p; +formeront former ver 39.69 110.27 0.42 0.41 ind:fut:3p; +formes forme nom f p 94.19 176.69 11.58 38.78 +formez former ver 39.69 110.27 2.70 0.27 imp:pre:2p;ind:pre:2p; +formica formica nom m s 0.28 2.03 0.28 1.96 +formicas formica nom m p 0.28 2.03 0.00 0.07 +formid formid adj f s 0.02 0.20 0.02 0.14 +formidable formidable adj s 54.23 34.32 51.79 30.07 +formidablement formidablement adv 0.24 1.42 0.24 1.42 +formidables formidable adj p 54.23 34.32 2.44 4.26 +formide formide adj s 0.01 0.27 0.01 0.20 +formides formide adj f p 0.01 0.27 0.00 0.07 +formids formid adj p 0.02 0.20 0.00 0.07 +formiez former ver 39.69 110.27 0.30 0.07 ind:imp:2p; +formions former ver 39.69 110.27 0.24 1.62 ind:imp:1p; +formique formique adj m s 0.04 0.07 0.04 0.07 +formol formol nom m s 0.88 0.74 0.88 0.74 +formons former ver 39.69 110.27 1.94 0.88 imp:pre:1p;ind:pre:1p; +formèrent former ver 39.69 110.27 0.28 1.42 ind:pas:3p; +formé former ver m s 39.69 110.27 5.50 14.32 par:pas; +formée former ver f s 39.69 110.27 2.00 5.47 ind:imp:3p;par:pas; +formées former ver f p 39.69 110.27 0.25 2.23 par:pas; +formula formuler ver 3.52 15.54 0.01 0.54 ind:pas:3s; +formulai formuler ver 3.52 15.54 0.00 0.14 ind:pas:1s; +formulaient formuler ver 3.52 15.54 0.00 0.14 ind:imp:3p; +formulaire formulaire nom m s 9.73 1.55 6.93 0.81 +formulaires formulaire nom m p 9.73 1.55 2.80 0.74 +formulais formuler ver 3.52 15.54 0.11 0.34 ind:imp:1s; +formulait formuler ver 3.52 15.54 0.01 1.08 ind:imp:3s; +formulant formuler ver 3.52 15.54 0.00 0.54 par:pre; +formulation formulation nom f s 0.41 1.15 0.28 1.01 +formulations formulation nom f p 0.41 1.15 0.14 0.14 +formule formule nom f s 12.53 34.39 10.97 22.84 +formulent formuler ver 3.52 15.54 0.01 0.20 ind:pre:3p; +formuler formuler ver 3.52 15.54 1.88 7.50 inf; +formulera formuler ver 3.52 15.54 0.00 0.20 ind:fut:3s; +formules formule nom f p 12.53 34.39 1.56 11.55 +formulettes formulette nom f p 0.00 0.07 0.00 0.07 +formulez formuler ver 3.52 15.54 0.07 0.14 imp:pre:2p;ind:pre:2p; +formulons formuler ver 3.52 15.54 0.04 0.07 imp:pre:1p;ind:pre:1p; +formulât formuler ver 3.52 15.54 0.00 0.07 sub:imp:3s; +formulé formuler ver m s 3.52 15.54 0.44 1.22 par:pas; +formulée formulé adj f s 0.26 1.69 0.13 0.54 +formulées formuler ver f p 3.52 15.54 0.08 1.15 par:pas; +formulés formulé adj m p 0.26 1.69 0.01 0.27 +formés former ver m p 39.69 110.27 1.49 3.92 par:pas; +fornicateur fornicateur nom m s 0.51 0.34 0.21 0.14 +fornicateurs fornicateur nom m p 0.51 0.34 0.11 0.20 +fornication fornication nom f s 1.06 1.22 1.05 0.95 +fornications fornication nom f p 1.06 1.22 0.01 0.27 +fornicatrice fornicateur nom f s 0.51 0.34 0.19 0.00 +forniquaient forniquer ver 0.89 1.22 0.01 0.14 ind:imp:3p; +forniquait forniquer ver 0.89 1.22 0.01 0.27 ind:imp:3s; +forniquant forniquer ver 0.89 1.22 0.05 0.07 par:pre; +fornique forniquer ver 0.89 1.22 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +forniquent forniquer ver 0.89 1.22 0.07 0.07 ind:pre:3p; +forniquer forniquer ver 0.89 1.22 0.51 0.47 inf; +forniqué forniquer ver m s 0.89 1.22 0.19 0.14 par:pas; +fors fors pre 0.01 0.27 0.01 0.27 +forsythias forsythia nom m p 0.00 0.07 0.00 0.07 +fort fort adv_sup 171.91 212.77 171.91 212.77 +forte fort adj_sup f s 95.28 140.27 42.42 62.64 +fortement fortement adv 4.25 15.68 4.25 15.68 +forteresse forteresse nom f s 7.53 16.96 7.38 14.05 +forteresses forteresse nom f p 7.53 16.96 0.14 2.91 +fortes fort adj_sup f p 95.28 140.27 7.92 16.35 +força forcer ver 64.64 75.41 0.34 3.38 ind:pas:3s; +forçage forçage nom m s 0.04 0.14 0.04 0.14 +forçai forcer ver 64.64 75.41 0.11 0.34 ind:pas:1s; +forçaient forcer ver 64.64 75.41 0.05 0.61 ind:imp:3p; +forçais forcer ver 64.64 75.41 0.22 1.35 ind:imp:1s;ind:imp:2s; +forçait forcer ver 64.64 75.41 0.70 6.76 ind:imp:3s; +forçant forcer ver 64.64 75.41 0.91 4.86 par:pre; +forçat forçat nom m s 1.26 3.11 0.30 1.35 +forçats forçat nom m p 1.26 3.11 0.96 1.76 +forçons forcer ver 64.64 75.41 0.27 0.14 imp:pre:1p;ind:pre:1p; +forçât forcer ver 64.64 75.41 0.00 0.20 sub:imp:3s; +fortiche fortiche adj s 1.14 2.03 0.84 1.49 +fortiches fortiche adj p 1.14 2.03 0.30 0.54 +fortifia fortifier ver 2.19 6.55 0.11 0.27 ind:pas:3s; +fortifiaient fortifier ver 2.19 6.55 0.01 0.14 ind:imp:3p; +fortifiais fortifier ver 2.19 6.55 0.00 0.07 ind:imp:1s; +fortifiait fortifier ver 2.19 6.55 0.00 0.81 ind:imp:3s; +fortifiant fortifiant nom m s 0.26 0.54 0.23 0.34 +fortifiants fortifiant nom m p 0.26 0.54 0.04 0.20 +fortification fortification nom f s 0.68 2.36 0.22 0.34 +fortifications fortification nom f p 0.68 2.36 0.46 2.03 +fortifie fortifier ver 2.19 6.55 0.74 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fortifient fortifier ver 2.19 6.55 0.04 0.34 ind:pre:3p; +fortifier fortifier ver 2.19 6.55 0.47 1.22 inf; +fortifiera fortifier ver 2.19 6.55 0.13 0.00 ind:fut:3s; +fortifierait fortifier ver 2.19 6.55 0.00 0.07 cnd:pre:3s; +fortifiez fortifier ver 2.19 6.55 0.01 0.07 imp:pre:2p; +fortifions fortifier ver 2.19 6.55 0.10 0.07 imp:pre:1p; +fortifiât fortifier ver 2.19 6.55 0.00 0.07 sub:imp:3s; +fortifièrent fortifier ver 2.19 6.55 0.01 0.00 ind:pas:3p; +fortifié fortifier ver m s 2.19 6.55 0.22 1.01 par:pas; +fortifiée fortifié adj f s 0.43 1.82 0.29 0.68 +fortifiées fortifier ver f p 2.19 6.55 0.02 0.27 par:pas; +fortifiés fortifier ver m p 2.19 6.55 0.14 0.14 par:pas; +fortifs fortif nom f p 0.00 1.01 0.00 1.01 +fortin fortin nom m s 0.33 3.31 0.32 2.70 +fortins fortin nom m p 0.33 3.31 0.01 0.61 +fortissimo fortissimo nom_sup m s 0.11 0.20 0.11 0.20 +fortitude fortitude nom f s 0.05 0.07 0.05 0.07 +fortraiture fortraiture nom f s 0.00 0.07 0.00 0.07 +forts fort adj_sup m p 95.28 140.27 17.00 17.43 +fortuit fortuit adj m s 1.96 3.38 0.55 1.22 +fortuite fortuit adj f s 1.96 3.38 1.29 1.28 +fortuitement fortuitement adv 0.17 0.34 0.17 0.34 +fortuites fortuit adj f p 1.96 3.38 0.07 0.68 +fortuits fortuit adj m p 1.96 3.38 0.05 0.20 +fortune fortune nom f s 33.62 51.49 32.35 46.49 +fortunes fortune nom f p 33.62 51.49 1.27 5.00 +fortuné fortuné adj m s 2.84 3.45 1.24 1.35 +fortunée fortuné adj f s 2.84 3.45 0.48 0.41 +fortunées fortuné adj f p 2.84 3.45 0.17 0.47 +fortunés fortuné adj m p 2.84 3.45 0.95 1.22 +foré forer ver m s 1.66 1.69 0.23 0.14 par:pas; +forée forer ver f s 1.66 1.69 0.01 0.14 par:pas; +forum forum nom m s 1.40 1.08 1.14 0.95 +forums forum nom m p 1.40 1.08 0.26 0.14 +forés forer ver m p 1.66 1.69 0.14 0.14 par:pas; +forêt forêt nom f s 34.94 113.31 29.57 91.89 +forêts forêt nom f p 34.94 113.31 5.37 21.42 +fosse fosse nom f s 7.92 14.05 6.64 10.74 +fosses fosse nom f p 7.92 14.05 1.27 3.31 +fossette fossette nom f s 0.86 4.32 0.44 2.09 +fossettes fossette nom f p 0.86 4.32 0.42 2.23 +fossile fossile nom m s 2.02 0.74 1.40 0.20 +fossiles fossile nom m p 2.02 0.74 0.62 0.54 +fossilisation fossilisation nom f s 0.13 0.07 0.13 0.07 +fossilisé fossiliser ver m s 0.17 0.68 0.08 0.41 par:pas; +fossilisés fossiliser ver m p 0.17 0.68 0.09 0.27 par:pas; +fossoyeur fossoyeur nom m s 2.77 2.70 2.00 1.42 +fossoyeurs fossoyeur nom m p 2.77 2.70 0.77 1.28 +fossoyeuse fossoyeuse nom f s 0.01 0.00 0.01 0.00 +fossé fossé nom m s 4.71 26.42 4.10 20.07 +fossés fossé nom m p 4.71 26.42 0.61 6.35 +fou_fou fou_fou adj m s 0.08 0.00 0.08 0.00 +fou_rire fou_rire nom m s 0.02 0.14 0.02 0.14 +fou fou adj m s 321.31 164.32 181.51 82.03 +fouaces fouace nom f p 0.00 0.07 0.00 0.07 +fouailla fouailler ver 0.00 1.55 0.00 0.20 ind:pas:3s; +fouaillai fouailler ver 0.00 1.55 0.00 0.07 ind:pas:1s; +fouaillaient fouailler ver 0.00 1.55 0.00 0.14 ind:imp:3p; +fouaillait fouailler ver 0.00 1.55 0.00 0.07 ind:imp:3s; +fouaillant fouailler ver 0.00 1.55 0.00 0.14 par:pre; +fouaille fouaille nom f s 0.00 1.22 0.00 1.22 +fouailler fouailler ver 0.00 1.55 0.00 0.34 inf; +fouaillé fouailler ver m s 0.00 1.55 0.00 0.20 par:pas; +fouaillée fouailler ver f s 0.00 1.55 0.00 0.14 par:pas; +fouaillées fouailler ver f p 0.00 1.55 0.00 0.07 par:pas; +foucade foucade nom f s 0.01 0.47 0.01 0.14 +foucades foucade nom f p 0.01 0.47 0.00 0.34 +fouchtra fouchtra ono 0.00 0.27 0.00 0.27 +foudre foudre nom s 12.94 14.46 12.50 12.64 +foudres foudre nom p 12.94 14.46 0.44 1.82 +foudroie foudroyer ver 2.36 8.99 0.34 0.41 ind:pre:1s;ind:pre:3s; +foudroiement foudroiement nom m s 0.01 0.00 0.01 0.00 +foudroient foudroyer ver 2.36 8.99 0.00 0.14 ind:pre:3p; +foudroiera foudroyer ver 2.36 8.99 0.01 0.07 ind:fut:3s; +foudroieraient foudroyer ver 2.36 8.99 0.00 0.07 cnd:pre:3p; +foudroierait foudroyer ver 2.36 8.99 0.00 0.07 cnd:pre:3s; +foudroya foudroyer ver 2.36 8.99 0.01 0.41 ind:pas:3s; +foudroyaient foudroyer ver 2.36 8.99 0.00 0.14 ind:imp:3p; +foudroyait foudroyer ver 2.36 8.99 0.00 0.47 ind:imp:3s; +foudroyant foudroyant adj m s 0.52 6.62 0.41 2.23 +foudroyante foudroyant adj f s 0.52 6.62 0.10 3.24 +foudroyantes foudroyant adj f p 0.52 6.62 0.00 0.54 +foudroyants foudroyant adj m p 0.52 6.62 0.01 0.61 +foudroyer foudroyer ver 2.36 8.99 0.39 1.35 inf; +foudroyions foudroyer ver 2.36 8.99 0.01 0.00 ind:imp:1p; +foudroyèrent foudroyer ver 2.36 8.99 0.00 0.07 ind:pas:3p; +foudroyé foudroyer ver m s 2.36 8.99 0.91 2.84 par:pas; +foudroyée foudroyer ver f s 2.36 8.99 0.36 0.95 par:pas; +foudroyées foudroyer ver f p 2.36 8.99 0.04 0.27 par:pas; +foudroyés foudroyer ver m p 2.36 8.99 0.28 1.42 par:pas; +fouet fouet nom m s 8.56 18.31 7.92 16.69 +fouets fouet nom m p 8.56 18.31 0.63 1.62 +fouetta fouetter ver 7.61 17.36 0.14 0.68 ind:pas:3s; +fouettaient fouetter ver 7.61 17.36 0.02 0.41 ind:imp:3p; +fouettais fouetter ver 7.61 17.36 0.04 0.27 ind:imp:1s; +fouettait fouetter ver 7.61 17.36 0.09 2.36 ind:imp:3s; +fouettant fouetter ver 7.61 17.36 0.03 1.42 par:pre; +fouettard fouettard adj m s 0.34 0.68 0.34 0.47 +fouettards fouettard adj m p 0.34 0.68 0.00 0.20 +fouette fouetter ver 7.61 17.36 1.65 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fouettement fouettement nom m s 0.01 0.27 0.01 0.20 +fouettements fouettement nom m p 0.01 0.27 0.00 0.07 +fouettent fouetter ver 7.61 17.36 0.07 0.68 ind:pre:3p; +fouetter fouetter ver 7.61 17.36 2.27 4.26 inf; +fouettera fouetter ver 7.61 17.36 0.06 0.00 ind:fut:3s; +fouetterai fouetter ver 7.61 17.36 0.12 0.00 ind:fut:1s; +fouetterait fouetter ver 7.61 17.36 0.03 0.07 cnd:pre:3s; +fouetteront fouetter ver 7.61 17.36 0.02 0.07 ind:fut:3p; +fouettes fouetter ver 7.61 17.36 0.12 0.07 ind:pre:2s; +fouetteur fouetteur nom m s 0.16 0.41 0.02 0.00 +fouetteurs fouetteur nom m p 0.16 0.41 0.14 0.07 +fouetteuse fouetteur nom f s 0.16 0.41 0.00 0.34 +fouettez fouetter ver 7.61 17.36 0.36 0.14 imp:pre:2p;ind:pre:2p; +fouettons fouetter ver 7.61 17.36 0.02 0.14 imp:pre:1p;ind:pre:1p; +fouettèrent fouetter ver 7.61 17.36 0.00 0.14 ind:pas:3p; +fouetté fouetter ver m s 7.61 17.36 0.81 1.69 par:pas; +fouettée fouetter ver f s 7.61 17.36 1.50 1.69 par:pas; +fouettées fouetter ver f p 7.61 17.36 0.04 0.54 par:pas; +fouettés fouetter ver m p 7.61 17.36 0.22 0.47 par:pas; +foufou foufou adj m s 0.44 0.00 0.42 0.00 +foufoune foufoune nom f s 0.69 0.00 0.57 0.00 +foufounes foufoune nom f p 0.69 0.00 0.12 0.00 +foufounette foufounette nom f s 0.01 0.20 0.01 0.20 +foufous foufou adj m p 0.44 0.00 0.01 0.00 +fougasse fougasse nom f s 2.54 0.14 2.54 0.14 +fouge fouger ver 0.10 0.00 0.10 0.00 imp:pre:2s; +fougeraie fougeraie nom f s 0.00 0.61 0.00 0.54 +fougeraies fougeraie nom f p 0.00 0.61 0.00 0.07 +fougère fougère nom f s 0.76 8.11 0.48 0.74 +fougères fougère nom f p 0.76 8.11 0.27 7.36 +fougue fougue nom f s 1.17 5.14 1.17 5.07 +fougues fougue nom f p 1.17 5.14 0.00 0.07 +fougueuse fougueux adj f s 1.72 3.45 0.26 0.74 +fougueusement fougueusement adv 0.05 0.47 0.05 0.47 +fougueuses fougueux adj f p 1.72 3.45 0.05 0.27 +fougueux fougueux adj m 1.72 3.45 1.41 2.43 +foui fouir ver m s 0.04 0.95 0.02 0.34 par:pas; +fouie fouir ver f s 0.04 0.95 0.01 0.07 par:pas; +fouies fouir ver f p 0.04 0.95 0.00 0.07 par:pas; +fouilla fouiller ver 42.37 47.16 0.01 5.27 ind:pas:3s; +fouillai fouiller ver 42.37 47.16 0.01 0.47 ind:pas:1s; +fouillaient fouiller ver 42.37 47.16 0.08 1.76 ind:imp:3p; +fouillais fouiller ver 42.37 47.16 0.37 0.95 ind:imp:1s;ind:imp:2s; +fouillait fouiller ver 42.37 47.16 0.37 5.81 ind:imp:3s; +fouillant fouiller ver 42.37 47.16 1.43 5.14 par:pre; +fouillasse fouiller ver 42.37 47.16 0.00 0.07 sub:imp:1s; +fouille fouiller ver 42.37 47.16 6.09 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fouillent fouiller ver 42.37 47.16 1.46 1.82 ind:pre:3p; +fouiller fouiller ver 42.37 47.16 12.87 11.76 inf; +fouillera fouiller ver 42.37 47.16 0.30 0.07 ind:fut:3s; +fouillerai fouiller ver 42.37 47.16 0.10 0.07 ind:fut:1s; +fouillerais fouiller ver 42.37 47.16 0.03 0.00 cnd:pre:1s; +fouillerait fouiller ver 42.37 47.16 0.17 0.07 cnd:pre:3s; +fouilleras fouiller ver 42.37 47.16 0.03 0.00 ind:fut:2s; +fouillerons fouiller ver 42.37 47.16 0.07 0.00 ind:fut:1p; +fouilleront fouiller ver 42.37 47.16 0.10 0.00 ind:fut:3p; +fouilles fouille nom f p 5.00 11.28 1.81 4.53 +fouillette fouillette nom f s 0.00 0.20 0.00 0.20 +fouilleur fouilleur nom m s 0.05 0.41 0.03 0.27 +fouilleurs fouilleur adj m p 0.03 0.07 0.01 0.07 +fouilleuse fouilleur nom f s 0.05 0.41 0.03 0.07 +fouillez fouiller ver 42.37 47.16 6.79 0.41 imp:pre:2p;ind:pre:2p; +fouilliez fouiller ver 42.37 47.16 0.21 0.00 ind:imp:2p; +fouillis fouillis nom m 0.81 7.16 0.81 7.16 +fouillons fouiller ver 42.37 47.16 0.61 0.07 imp:pre:1p;ind:pre:1p; +fouillèrent fouiller ver 42.37 47.16 0.01 0.81 ind:pas:3p; +fouillé fouiller ver m s 42.37 47.16 8.89 4.05 par:pas; +fouillée fouiller ver f s 42.37 47.16 0.85 0.74 par:pas; +fouillées fouiller ver f p 42.37 47.16 0.07 0.27 par:pas; +fouillés fouiller ver m p 42.37 47.16 0.51 0.27 par:pas; +fouinaient fouiner ver 5.54 2.43 0.02 0.20 ind:imp:3p; +fouinais fouiner ver 5.54 2.43 0.17 0.07 ind:imp:1s;ind:imp:2s; +fouinait fouiner ver 5.54 2.43 0.19 0.47 ind:imp:3s; +fouinant fouiner ver 5.54 2.43 0.05 0.20 par:pre; +fouinard fouinard nom m s 0.13 0.00 0.11 0.00 +fouinards fouinard nom m p 0.13 0.00 0.02 0.00 +fouine fouine nom f s 2.87 2.43 2.45 1.89 +fouinent fouiner ver 5.54 2.43 0.36 0.07 ind:pre:3p; +fouiner fouiner ver 5.54 2.43 3.31 1.08 inf; +fouinera fouiner ver 5.54 2.43 0.01 0.00 ind:fut:3s; +fouineriez fouiner ver 5.54 2.43 0.01 0.00 cnd:pre:2p; +fouines fouine nom f p 2.87 2.43 0.42 0.54 +fouineur fouineur nom m s 0.80 0.07 0.23 0.07 +fouineurs fouineur nom m p 0.80 0.07 0.27 0.00 +fouineuse fouineur nom f s 0.80 0.07 0.29 0.00 +fouinez fouiner ver 5.54 2.43 0.14 0.07 imp:pre:2p;ind:pre:2p; +fouiniez fouiner ver 5.54 2.43 0.03 0.00 ind:imp:2p; +fouiné fouiner ver m s 5.54 2.43 0.39 0.00 par:pas; +fouir fouir ver 0.04 0.95 0.00 0.20 inf; +fouissait fouir ver 0.04 0.95 0.00 0.07 ind:imp:3s; +fouissant fouir ver 0.04 0.95 0.00 0.07 par:pre; +fouissent fouir ver 0.04 0.95 0.00 0.07 ind:pre:3p; +fouisseur fouisseur adj m s 0.01 0.34 0.01 0.07 +fouisseurs fouisseur adj m p 0.01 0.34 0.00 0.07 +fouisseuse fouisseur adj f s 0.01 0.34 0.00 0.14 +fouisseuses fouisseur adj f p 0.01 0.34 0.00 0.07 +fouit fouir ver 0.04 0.95 0.01 0.07 ind:pre:3s; +foula fouler ver 3.06 9.59 0.04 0.14 ind:pas:3s; +foulage foulage nom m s 0.00 0.07 0.00 0.07 +foulaient fouler ver 3.06 9.59 0.00 0.61 ind:imp:3p; +foulais fouler ver 3.06 9.59 0.05 0.27 ind:imp:1s; +foulait fouler ver 3.06 9.59 0.14 0.41 ind:imp:3s; +foulant fouler ver 3.06 9.59 0.13 1.01 par:pre; +foulard foulard nom m s 4.44 19.19 3.94 15.95 +foulards foulard nom m p 4.44 19.19 0.50 3.24 +foulbé foulbé adj s 0.00 0.07 0.00 0.07 +foule foule nom f s 27.81 112.30 25.95 101.62 +foulent fouler ver 3.06 9.59 0.16 0.27 ind:pre:3p; +fouler fouler ver 3.06 9.59 0.65 2.57 inf; +foulera fouler ver 3.06 9.59 0.04 0.00 ind:fut:3s; +fouleraient fouler ver 3.06 9.59 0.00 0.07 cnd:pre:3p; +foulerait fouler ver 3.06 9.59 0.00 0.07 cnd:pre:3s; +foulerez fouler ver 3.06 9.59 0.03 0.00 ind:fut:2p; +foules foule nom f p 27.81 112.30 1.86 10.68 +fouleur fouleur nom m s 0.01 0.00 0.01 0.00 +foulions fouler ver 3.06 9.59 0.01 0.14 ind:imp:1p; +fouloir fouloir nom m s 0.00 0.14 0.00 0.14 +foulon foulon nom m s 0.14 0.00 0.14 0.00 +foulons fouler ver 3.06 9.59 0.11 0.14 ind:pre:1p; +foulque foulque nom f s 0.03 0.07 0.01 0.00 +foulques foulque nom f p 0.03 0.07 0.01 0.07 +foulèrent fouler ver 3.06 9.59 0.04 0.20 ind:pas:3p; +foulé fouler ver m s 3.06 9.59 1.11 1.49 par:pas; +foulée foulée nom f s 0.56 7.30 0.50 5.34 +foulées foulée nom f p 0.56 7.30 0.06 1.96 +foulure foulure nom f s 0.21 0.20 0.17 0.20 +foulures foulure nom f p 0.21 0.20 0.03 0.00 +foulés fouler ver m p 3.06 9.59 0.03 0.41 par:pas; +foëne foëne nom f s 0.00 0.07 0.00 0.07 +four four nom m s 15.44 28.99 13.95 25.07 +fourbais fourber ver 0.00 0.14 0.00 0.07 ind:imp:1s; +fourbe fourbe adj s 1.70 1.08 1.32 0.68 +fourber fourber ver 0.00 0.14 0.00 0.07 inf; +fourberie fourberie nom f s 0.65 1.28 0.52 0.88 +fourberies fourberie nom f p 0.65 1.28 0.14 0.41 +fourbes fourbe nom p 1.52 0.81 0.41 0.20 +fourbi fourbi nom m s 0.78 3.18 0.77 2.91 +fourbie fourbir ver f s 0.03 1.55 0.00 0.07 par:pas; +fourbir fourbir ver 0.03 1.55 0.01 0.34 inf; +fourbis fourbi nom m p 0.78 3.18 0.01 0.27 +fourbissaient fourbir ver 0.03 1.55 0.00 0.14 ind:imp:3p; +fourbissais fourbir ver 0.03 1.55 0.00 0.07 ind:imp:1s; +fourbissait fourbir ver 0.03 1.55 0.00 0.27 ind:imp:3s; +fourbissant fourbir ver 0.03 1.55 0.00 0.20 par:pre; +fourbit fourbir ver 0.03 1.55 0.01 0.14 ind:pre:3s; +fourbu fourbu adj m s 0.42 6.01 0.12 2.84 +fourbue fourbu adj f s 0.42 6.01 0.14 0.81 +fourbues fourbu adj f p 0.42 6.01 0.01 0.74 +fourbus fourbu adj m p 0.42 6.01 0.16 1.62 +fourcha fourcher ver 0.33 0.27 0.00 0.14 ind:pas:3s; +fourche fourche nom f s 1.57 8.18 1.21 5.61 +fourchent fourcher ver 0.33 0.27 0.01 0.00 ind:pre:3p; +fourcher fourcher ver 0.33 0.27 0.03 0.00 inf; +fourches fourche nom f p 1.57 8.18 0.36 2.57 +fourchet fourchet nom m s 0.00 0.14 0.00 0.07 +fourchets fourchet nom m p 0.00 0.14 0.00 0.07 +fourchette fourchette nom f s 5.85 14.19 4.98 10.95 +fourchettes fourchette nom f p 5.85 14.19 0.87 3.24 +fourchez fourcher ver 0.33 0.27 0.03 0.00 imp:pre:2p; +fourché fourcher ver m s 0.33 0.27 0.15 0.14 par:pas; +fourchu fourchu adj m s 0.75 1.42 0.17 0.27 +fourchée fourcher ver f s 0.33 0.27 0.01 0.00 par:pas; +fourchue fourchu adj f s 0.75 1.42 0.20 0.54 +fourchues fourchu adj f p 0.75 1.42 0.01 0.07 +fourchures fourchure nom f p 0.00 0.14 0.00 0.14 +fourchus fourchu adj m p 0.75 1.42 0.37 0.54 +fourgon fourgon nom m s 8.69 7.70 7.87 5.14 +fourgonnait fourgonner ver 0.00 0.61 0.00 0.14 ind:imp:3s; +fourgonnas fourgonner ver 0.00 0.61 0.00 0.07 ind:pas:2s; +fourgonne fourgonner ver 0.00 0.61 0.00 0.07 ind:pre:3s; +fourgonner fourgonner ver 0.00 0.61 0.00 0.34 inf; +fourgonnette fourgonnette nom f s 1.31 1.76 1.26 1.62 +fourgonnettes fourgonnette nom f p 1.31 1.76 0.05 0.14 +fourgons fourgon nom m p 8.69 7.70 0.82 2.57 +fourguais fourguer ver 2.47 5.07 0.03 0.07 ind:imp:1s; +fourguait fourguer ver 2.47 5.07 0.02 0.61 ind:imp:3s; +fourguant fourguer ver 2.47 5.07 0.03 0.20 par:pre; +fourgue fourguer ver 2.47 5.07 0.28 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fourguent fourguer ver 2.47 5.07 0.16 0.14 ind:pre:3p; +fourguer fourguer ver 2.47 5.07 1.10 1.82 inf; +fourgueraient fourguer ver 2.47 5.07 0.00 0.07 cnd:pre:3p; +fourguerais fourguer ver 2.47 5.07 0.00 0.07 cnd:pre:1s; +fourguerait fourguer ver 2.47 5.07 0.00 0.07 cnd:pre:3s; +fourgues fourguer ver 2.47 5.07 0.06 0.00 ind:pre:2s; +fourguez fourguer ver 2.47 5.07 0.02 0.00 ind:pre:2p; +fourgué fourguer ver m s 2.47 5.07 0.59 0.88 par:pas; +fourguée fourguer ver f s 2.47 5.07 0.15 0.20 par:pas; +fourguées fourguer ver f p 2.47 5.07 0.01 0.07 par:pas; +fourgués fourguer ver m p 2.47 5.07 0.02 0.14 par:pas; +fourme fourme nom f s 0.00 0.41 0.00 0.34 +fourmes fourme nom f p 0.00 0.41 0.00 0.07 +fourmi_lion fourmi_lion nom m s 0.00 0.14 0.00 0.07 +fourmi fourmi nom f s 9.61 12.77 2.78 5.14 +fourmilier fourmilier nom m s 1.10 3.11 0.12 0.07 +fourmilion fourmilion nom m s 0.00 0.14 0.00 0.14 +fourmilière fourmilier nom f s 1.10 3.11 0.98 2.84 +fourmilières fourmilière nom f p 0.01 0.00 0.01 0.00 +fourmillaient fourmiller ver 0.53 3.18 0.00 0.20 ind:imp:3p; +fourmillait fourmiller ver 0.53 3.18 0.00 0.74 ind:imp:3s; +fourmillant fourmiller ver 0.53 3.18 0.00 0.47 par:pre; +fourmillante fourmillant adj f s 0.00 1.15 0.00 0.81 +fourmillants fourmillant adj m p 0.00 1.15 0.00 0.20 +fourmille fourmiller ver 0.53 3.18 0.42 0.68 ind:pre:1s;ind:pre:3s; +fourmillement fourmillement nom m s 0.16 2.36 0.07 1.82 +fourmillements fourmillement nom m p 0.16 2.36 0.08 0.54 +fourmillent fourmiller ver 0.53 3.18 0.09 0.47 ind:pre:3p; +fourmiller fourmiller ver 0.53 3.18 0.01 0.54 inf; +fourmillé fourmiller ver m s 0.53 3.18 0.00 0.07 par:pas; +fourmi_lion fourmi_lion nom m p 0.00 0.14 0.00 0.07 +fourmis fourmi nom f p 9.61 12.77 6.83 7.64 +fournîmes fournir ver 25.67 56.28 0.00 0.07 ind:pas:1p; +fournît fournir ver 25.67 56.28 0.00 0.14 sub:imp:3s; +fournaise fournaise nom f s 0.62 3.18 0.59 3.04 +fournaises fournaise nom f p 0.62 3.18 0.03 0.14 +fourneau fourneau nom m s 1.96 15.34 1.13 12.30 +fourneaux fourneau nom m p 1.96 15.34 0.83 3.04 +fourni fournir ver m s 25.67 56.28 4.21 8.11 par:pas; +fournie fournir ver f s 25.67 56.28 0.59 1.69 par:pas; +fournier fournier nom m s 0.00 0.07 0.00 0.07 +fournies fournir ver f p 25.67 56.28 0.42 1.42 par:pas; +fournil fournil nom m s 0.26 3.92 0.26 3.92 +fourniment fourniment nom m s 0.13 1.01 0.13 0.88 +fourniments fourniment nom m p 0.13 1.01 0.00 0.14 +fournir fournir ver 25.67 56.28 8.43 19.46 inf; +fournira fournir ver 25.67 56.28 1.18 0.81 ind:fut:3s; +fournirai fournir ver 25.67 56.28 0.43 0.07 ind:fut:1s; +fourniraient fournir ver 25.67 56.28 0.00 0.47 cnd:pre:3p; +fournirait fournir ver 25.67 56.28 0.29 1.08 cnd:pre:3s; +fournirent fournir ver 25.67 56.28 0.00 0.47 ind:pas:3p; +fournirez fournir ver 25.67 56.28 0.24 0.14 ind:fut:2p; +fournirons fournir ver 25.67 56.28 0.22 0.00 ind:fut:1p; +fourniront fournir ver 25.67 56.28 0.06 0.27 ind:fut:3p; +fournis fournir ver m p 25.67 56.28 2.11 3.72 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fournissaient fournir ver 25.67 56.28 0.28 2.16 ind:imp:3p; +fournissais fournir ver 25.67 56.28 0.08 0.34 ind:imp:1s;ind:imp:2s; +fournissait fournir ver 25.67 56.28 0.87 5.47 ind:imp:3s; +fournissant fournir ver 25.67 56.28 0.18 1.22 par:pre; +fournisse fournir ver 25.67 56.28 0.13 0.07 sub:pre:1s;sub:pre:3s; +fournissent fournir ver 25.67 56.28 0.77 1.89 ind:pre:3p; +fournisseur fournisseur nom m s 4.75 4.39 2.62 1.76 +fournisseurs fournisseur nom m p 4.75 4.39 2.13 2.57 +fournisseuses fournisseur nom f p 4.75 4.39 0.00 0.07 +fournissez fournir ver 25.67 56.28 1.31 0.20 imp:pre:2p;ind:pre:2p; +fournissiez fournir ver 25.67 56.28 0.14 0.07 ind:imp:2p; +fournissions fournir ver 25.67 56.28 0.02 0.20 ind:imp:1p; +fournissons fournir ver 25.67 56.28 0.65 0.20 imp:pre:1p;ind:pre:1p; +fournit fournir ver 25.67 56.28 3.04 6.55 ind:pre:3s;ind:pas:3s; +fourniture fourniture nom f s 2.04 2.77 0.16 0.61 +fournitures fourniture nom f p 2.04 2.77 1.88 2.16 +fournée fournée nom f s 0.47 2.36 0.46 1.82 +fournées fournée nom f p 0.47 2.36 0.01 0.54 +fourra fourrer ver 14.05 23.58 0.12 2.77 ind:pas:3s; +fourrage fourrage nom m s 0.63 2.30 0.58 1.89 +fourragea fourrager ver 0.03 3.99 0.00 0.74 ind:pas:3s; +fourrageaient fourrager ver 0.03 3.99 0.00 0.07 ind:imp:3p; +fourrageais fourrager ver 0.03 3.99 0.00 0.07 ind:imp:2s; +fourrageait fourrager ver 0.03 3.99 0.00 0.88 ind:imp:3s; +fourrageant fourrager ver 0.03 3.99 0.00 0.61 par:pre; +fourragement fourragement nom m s 0.00 0.07 0.00 0.07 +fourrager fourrager ver 0.03 3.99 0.02 0.61 inf; +fourragerait fourrager ver 0.03 3.99 0.00 0.07 cnd:pre:3s; +fourrages fourrage nom m p 0.63 2.30 0.05 0.41 +fourrageurs fourrageur nom m p 0.00 0.27 0.00 0.27 +fourragère fourrager adj f s 0.14 0.41 0.14 0.14 +fourragères fourrager adj f p 0.14 0.41 0.00 0.20 +fourragé fourrager ver m s 0.03 3.99 0.00 0.20 par:pas; +fourrai fourrer ver 14.05 23.58 0.00 0.74 ind:pas:1s; +fourraient fourrer ver 14.05 23.58 0.12 0.34 ind:imp:3p; +fourrais fourrer ver 14.05 23.58 0.06 0.14 ind:imp:1s;ind:imp:2s; +fourrait fourrer ver 14.05 23.58 0.25 1.55 ind:imp:3s; +fourrant fourrer ver 14.05 23.58 0.07 1.15 par:pre; +fourre_tout fourre_tout nom m 0.28 0.54 0.28 0.54 +fourre fourrer ver 14.05 23.58 2.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fourreau fourreau nom m s 0.79 4.32 0.78 3.85 +fourreaux fourreau nom m p 0.79 4.32 0.01 0.47 +fourrent fourrer ver 14.05 23.58 0.17 0.54 ind:pre:3p; +fourrer fourrer ver 14.05 23.58 4.36 6.82 inf;; +fourrerai fourrer ver 14.05 23.58 0.19 0.07 ind:fut:1s; +fourreur fourreur nom m s 0.08 0.68 0.07 0.61 +fourreurs fourreur nom m p 0.08 0.68 0.01 0.07 +fourrez fourrer ver 14.05 23.58 0.35 0.14 imp:pre:2p;ind:pre:2p; +fourrier fourrier nom m s 0.01 1.82 0.01 1.69 +fourriers fourrier nom m p 0.01 1.82 0.00 0.14 +fourriez fourrer ver 14.05 23.58 0.03 0.00 ind:imp:2p; +fourrions fourrer ver 14.05 23.58 0.00 0.14 ind:imp:1p; +fourrière fourrière nom f s 2.83 0.81 2.83 0.81 +fourrons fourrer ver 14.05 23.58 0.04 0.07 imp:pre:1p;ind:pre:1p; +fourrât fourrer ver 14.05 23.58 0.00 0.07 sub:imp:3s; +fourrèrent fourrer ver 14.05 23.58 0.00 0.07 ind:pas:3p; +fourré fourrer ver m s 14.05 23.58 3.42 3.51 par:pas; +fourrée fourrer ver f s 14.05 23.58 1.24 1.28 par:pas; +fourrées fourré adj f p 2.60 5.47 0.17 0.54 +fourrure fourrure nom f s 7.53 21.42 5.56 16.89 +fourrures fourrure nom f p 7.53 21.42 1.97 4.53 +fourrés fourré nom m p 1.18 15.00 0.72 6.15 +fours four nom m p 15.44 28.99 1.48 3.92 +fourvoie fourvoyer ver 0.52 2.57 0.04 0.27 imp:pre:2s;ind:pre:3s; +fourvoiement fourvoiement nom m s 0.00 0.14 0.00 0.07 +fourvoiements fourvoiement nom m p 0.00 0.14 0.00 0.07 +fourvoient fourvoyer ver 0.52 2.57 0.01 0.00 ind:pre:3p; +fourvoierais fourvoyer ver 0.52 2.57 0.00 0.07 cnd:pre:1s; +fourvoierait fourvoyer ver 0.52 2.57 0.00 0.07 cnd:pre:3s; +fourvoyaient fourvoyer ver 0.52 2.57 0.00 0.14 ind:imp:3p; +fourvoyait fourvoyer ver 0.52 2.57 0.00 0.07 ind:imp:3s; +fourvoyant fourvoyer ver 0.52 2.57 0.01 0.14 par:pre; +fourvoyer fourvoyer ver 0.52 2.57 0.14 0.20 inf; +fourvoyâmes fourvoyer ver 0.52 2.57 0.00 0.07 ind:pas:1p; +fourvoyé fourvoyer ver m s 0.52 2.57 0.11 0.88 par:pas; +fourvoyée fourvoyer ver f s 0.52 2.57 0.04 0.20 par:pas; +fourvoyées fourvoyé adj f p 0.04 0.41 0.01 0.00 +fourvoyés fourvoyer ver m p 0.52 2.57 0.17 0.27 par:pas; +fous foutre ver 400.67 172.30 133.75 34.46 ind:pre:1p;ind:pre:1s;ind:pre:2s; +fout foutre ver 400.67 172.30 51.51 25.20 ind:pre:3s; +foutît foutre ver 400.67 172.30 0.00 0.07 sub:imp:3s; +fouta fouta nom s 0.01 0.07 0.01 0.07 +foutaient foutre ver 400.67 172.30 0.61 1.96 ind:imp:3p; +foutais foutre ver 400.67 172.30 4.42 3.72 ind:imp:1s;ind:imp:2s; +foutaise foutaise nom f s 8.66 2.70 1.80 0.74 +foutaises foutaise nom f p 8.66 2.70 6.86 1.96 +foutait foutre ver 400.67 172.30 2.80 11.69 ind:imp:3s; +foutant foutre ver 400.67 172.30 0.18 0.81 par:pre; +foute foutre ver 400.67 172.30 3.35 3.99 sub:pre:1s;sub:pre:3s; +foutent foutre ver 400.67 172.30 8.34 7.36 ind:pre:3p; +fouterie fouterie nom f s 0.00 0.34 0.00 0.20 +fouteries fouterie nom f p 0.00 0.34 0.00 0.14 +foutes foutre ver 400.67 172.30 0.27 0.00 sub:pre:2s; +fouteur fouteur nom m s 0.54 0.07 0.46 0.07 +fouteurs fouteur nom m p 0.54 0.07 0.07 0.00 +foutez foutre ver 400.67 172.30 32.65 7.57 imp:pre:2p;ind:pre:2p; +foutiez foutre ver 400.67 172.30 0.56 0.14 ind:imp:2p; +foutions foutre ver 400.67 172.30 0.00 0.07 ind:imp:1p; +foutit foutre ver 400.67 172.30 0.00 0.14 ind:pas:3s; +foutoir foutoir nom m s 2.15 1.62 2.15 1.49 +foutoirs foutoir nom m p 2.15 1.62 0.00 0.14 +foutons foutre ver 400.67 172.30 1.68 0.34 imp:pre:1p;ind:pre:1p; +foutra foutre ver 400.67 172.30 1.58 1.42 ind:fut:3s; +foutrai foutre ver 400.67 172.30 0.85 1.15 ind:fut:1s; +foutraient foutre ver 400.67 172.30 0.08 0.20 cnd:pre:3p; +foutrais foutre ver 400.67 172.30 1.48 1.35 cnd:pre:1s;cnd:pre:2s; +foutrait foutre ver 400.67 172.30 0.60 1.01 cnd:pre:3s; +foutral foutral adj m s 0.05 0.20 0.05 0.14 +foutrale foutral adj f s 0.05 0.20 0.00 0.07 +foutraque foutraque adj m s 0.01 0.07 0.01 0.07 +foutras foutre ver 400.67 172.30 0.24 0.20 ind:fut:2s; +foutre foutre ver 400.67 172.30 97.99 42.70 inf;; +foutrement foutrement adv 1.24 0.61 1.24 0.61 +foutrerie foutrerie nom f s 0.01 0.00 0.01 0.00 +foutrez foutre ver 400.67 172.30 0.20 0.14 ind:fut:2p; +foutriquet foutriquet nom m s 0.04 0.20 0.04 0.14 +foutriquets foutriquet nom m p 0.04 0.20 0.00 0.07 +foutrons foutre ver 400.67 172.30 0.02 0.07 ind:fut:1p; +foutront foutre ver 400.67 172.30 0.16 0.27 ind:fut:3p; +foutu foutre ver m s 400.67 172.30 41.96 19.05 par:pas; +foutue foutu adj f s 33.23 16.76 10.35 6.22 +foutues foutu adj f p 33.23 16.76 2.50 0.74 +foutument foutument adv 0.03 0.20 0.03 0.20 +foutus foutre ver m p 400.67 172.30 6.54 2.91 par:pas; +fox_terrier fox_terrier nom m s 0.04 0.47 0.04 0.41 +fox_terrier fox_terrier nom m p 0.04 0.47 0.00 0.07 +fox_trot fox_trot nom m 0.50 1.62 0.50 1.62 +fox fox nom m 0.48 0.41 0.48 0.41 +foyard foyard nom m s 0.00 0.27 0.00 0.20 +foyards foyard nom m p 0.00 0.27 0.00 0.07 +foyer foyer nom m s 28.95 30.88 25.57 25.81 +foyers foyer nom m p 28.95 30.88 3.38 5.07 +frôla frôler ver 4.45 25.41 0.03 2.30 ind:pas:3s; +frôlai frôler ver 4.45 25.41 0.00 0.34 ind:pas:1s; +frôlaient frôler ver 4.45 25.41 0.01 1.49 ind:imp:3p; +frôlais frôler ver 4.45 25.41 0.00 0.27 ind:imp:1s; +frôlait frôler ver 4.45 25.41 0.14 3.18 ind:imp:3s; +frôlant frôler ver 4.45 25.41 0.14 3.72 par:pre; +frôle frôler ver 4.45 25.41 0.88 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frôlement frôlement nom m s 0.11 6.01 0.11 3.85 +frôlements frôlement nom m p 0.11 6.01 0.00 2.16 +frôlent frôler ver 4.45 25.41 0.14 1.62 ind:pre:3p; +frôler frôler ver 4.45 25.41 0.68 4.19 inf; +frôlerais frôler ver 4.45 25.41 0.00 0.07 cnd:pre:1s; +frôlerait frôler ver 4.45 25.41 0.00 0.14 cnd:pre:3s; +frôles frôler ver 4.45 25.41 0.04 0.07 ind:pre:2s; +frôleur frôleur adj m s 0.00 0.74 0.00 0.34 +frôleurs frôleur nom m p 0.01 0.07 0.01 0.07 +frôleuse frôleur adj f s 0.00 0.74 0.00 0.20 +frôleuses frôleur adj f p 0.00 0.74 0.00 0.14 +frôlez frôler ver 4.45 25.41 0.20 0.00 imp:pre:2p;ind:pre:2p; +frôlions frôler ver 4.45 25.41 0.00 0.14 ind:imp:1p; +frôlons frôler ver 4.45 25.41 0.02 0.27 ind:pre:1p; +frôlât frôler ver 4.45 25.41 0.01 0.00 sub:imp:3s; +frôlèrent frôler ver 4.45 25.41 0.00 0.34 ind:pas:3p; +frôlé frôler ver m s 4.45 25.41 1.80 2.09 par:pas; +frôlée frôler ver f s 4.45 25.41 0.16 0.54 par:pas; +frôlées frôler ver f p 4.45 25.41 0.00 0.14 par:pas; +frôlés frôler ver m p 4.45 25.41 0.21 0.47 par:pas; +fra fra nom m s 0.93 0.34 0.93 0.34 +fraîche frais adj f s 46.43 111.69 13.59 42.91 +fraîchement fraîchement adv 1.17 8.31 1.17 8.31 +fraîches frais adj f p 46.43 111.69 5.44 12.57 +fraîcheur fraîcheur nom f s 3.24 35.47 3.24 35.00 +fraîcheurs fraîcheur nom f p 3.24 35.47 0.00 0.47 +fraîchi fraîchir ver m s 0.29 2.43 0.02 0.61 par:pas; +fraîchir fraîchir ver 0.29 2.43 0.01 0.34 inf; +fraîchira fraîchir ver 0.29 2.43 0.00 0.14 ind:fut:3s; +fraîchissait fraîchir ver 0.29 2.43 0.00 0.61 ind:imp:3s; +fraîchissant fraîchir ver 0.29 2.43 0.00 0.27 par:pre; +fraîchissent fraîchir ver 0.29 2.43 0.01 0.07 ind:pre:3p; +fraîchit fraîchir ver 0.29 2.43 0.25 0.41 ind:pre:3s;ind:pas:3s; +frac frac nom m s 0.89 2.23 0.77 1.96 +fracas fracas nom m 4.17 18.18 4.17 18.18 +fracassa fracasser ver 3.85 7.84 0.00 0.74 ind:pas:3s; +fracassaient fracasser ver 3.85 7.84 0.02 0.68 ind:imp:3p; +fracassait fracasser ver 3.85 7.84 0.01 0.27 ind:imp:3s; +fracassant fracassant adj m s 0.58 2.16 0.24 0.88 +fracassante fracassant adj f s 0.58 2.16 0.23 0.95 +fracassantes fracassant adj f p 0.58 2.16 0.05 0.14 +fracassants fracassant adj m p 0.58 2.16 0.06 0.20 +fracasse fracasser ver 3.85 7.84 0.60 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fracassent fracasser ver 3.85 7.84 0.05 0.14 ind:pre:3p; +fracasser fracasser ver 3.85 7.84 0.91 2.23 inf; +fracassera fracasser ver 3.85 7.84 0.16 0.00 ind:fut:3s; +fracasserait fracasser ver 3.85 7.84 0.00 0.14 cnd:pre:3s; +fracassez fracasser ver 3.85 7.84 0.04 0.00 imp:pre:2p; +fracassât fracasser ver 3.85 7.84 0.00 0.07 sub:imp:3s; +fracassé fracasser ver m s 3.85 7.84 1.43 0.81 par:pas; +fracassée fracasser ver f s 3.85 7.84 0.56 0.41 par:pas; +fracassées fracasser ver f p 3.85 7.84 0.03 0.27 par:pas; +fracassés fracasser ver m p 3.85 7.84 0.02 0.34 par:pas; +fracs frac nom m p 0.89 2.23 0.12 0.27 +fractal fractal adj m s 0.34 0.00 0.05 0.00 +fractale fractal adj f s 0.34 0.00 0.12 0.00 +fractales fractal adj f p 0.34 0.00 0.17 0.00 +fraction fraction nom f s 2.03 10.88 1.34 6.76 +fractionnait fractionner ver 0.07 0.54 0.00 0.07 ind:imp:3s; +fractionnant fractionner ver 0.07 0.54 0.00 0.14 par:pre; +fractionne fractionner ver 0.07 0.54 0.02 0.07 ind:pre:3s; +fractionnel fractionnel adj m s 0.00 0.14 0.00 0.07 +fractionnelles fractionnel adj f p 0.00 0.14 0.00 0.07 +fractionnement fractionnement nom m s 0.00 0.20 0.00 0.20 +fractionner fractionner ver 0.07 0.54 0.02 0.14 inf; +fractionné fractionner ver m s 0.07 0.54 0.00 0.07 par:pas; +fractionnée fractionner ver f s 0.07 0.54 0.01 0.00 par:pas; +fractionnées fractionner ver f p 0.07 0.54 0.01 0.07 par:pas; +fractions fraction nom f p 2.03 10.88 0.69 4.12 +fractura fracturer ver 1.75 1.22 0.00 0.27 ind:pas:3s; +fracturant fracturer ver 1.75 1.22 0.00 0.20 par:pre; +fracture fracture nom f s 7.88 2.57 5.62 1.82 +fracturent fracturer ver 1.75 1.22 0.10 0.00 ind:pre:3p; +fracturer fracturer ver 1.75 1.22 0.27 0.47 inf; +fractures fracture nom f p 7.88 2.57 2.26 0.74 +fracturé fracturer ver m s 1.75 1.22 0.80 0.14 par:pas; +fracturée fracturer ver f s 1.75 1.22 0.29 0.07 par:pas; +fracturées fracturé adj f p 0.79 0.34 0.04 0.00 +fracturés fracturé adj m p 0.79 0.34 0.09 0.07 +fractus fractus nom m 0.00 0.07 0.00 0.07 +fragile fragile adj s 15.89 45.34 12.94 35.68 +fragilement fragilement adv 0.00 0.07 0.00 0.07 +fragiles fragile adj p 15.89 45.34 2.95 9.66 +fragilise fragiliser ver 0.14 0.07 0.04 0.07 ind:pre:3s; +fragiliser fragiliser ver 0.14 0.07 0.02 0.00 inf; +fragilisé fragiliser ver m s 0.14 0.07 0.04 0.00 par:pas; +fragilisée fragiliser ver f s 0.14 0.07 0.03 0.00 par:pas; +fragilisés fragiliser ver m p 0.14 0.07 0.01 0.00 par:pas; +fragilité fragilité nom f s 1.19 8.65 1.18 8.31 +fragilités fragilité nom f p 1.19 8.65 0.01 0.34 +fragment fragment nom m s 4.57 15.88 1.58 6.01 +fragmentaient fragmenter ver 0.31 0.74 0.00 0.14 ind:imp:3p; +fragmentaire fragmentaire adj s 0.02 1.69 0.01 0.61 +fragmentaires fragmentaire adj p 0.02 1.69 0.01 1.08 +fragmentait fragmenter ver 0.31 0.74 0.00 0.07 ind:imp:3s; +fragmentant fragmenter ver 0.31 0.74 0.01 0.00 par:pre; +fragmentation fragmentation nom f s 0.77 0.14 0.77 0.14 +fragmente fragmenter ver 0.31 0.74 0.07 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fragmentent fragmenter ver 0.31 0.74 0.02 0.07 ind:pre:3p; +fragmenter fragmenter ver 0.31 0.74 0.03 0.00 inf; +fragments fragment nom m p 4.57 15.88 2.99 9.86 +fragmentèrent fragmenter ver 0.31 0.74 0.00 0.07 ind:pas:3p; +fragmenté fragmenter ver m s 0.31 0.74 0.07 0.07 par:pas; +fragmentée fragmenter ver f s 0.31 0.74 0.07 0.14 par:pas; +fragmentées fragmenter ver f p 0.31 0.74 0.03 0.00 par:pas; +fragmentés fragmenté adj m p 0.05 0.27 0.01 0.14 +fragrance fragrance nom f s 0.30 1.08 0.29 0.68 +fragrances fragrance nom f p 0.30 1.08 0.01 0.41 +fragrant fragrant adj m s 0.00 0.07 0.00 0.07 +frai frai nom m s 0.03 0.07 0.03 0.07 +fraie frayer ver 2.54 11.55 0.08 0.61 ind:pre:1s;ind:pre:3s; +fraient frayer ver 2.54 11.55 0.01 0.14 ind:pre:3p; +fraies frayer ver 2.54 11.55 0.01 0.00 ind:pre:2s; +frairie frairie nom f s 0.00 0.41 0.00 0.41 +frais frais adj m 46.43 111.69 27.41 56.22 +fraise fraise nom f s 12.00 10.07 5.28 3.92 +fraiser fraiser ver 1.52 0.14 1.39 0.00 inf; +fraises fraise nom f p 12.00 10.07 6.72 6.15 +fraiseur_outilleur fraiseur_outilleur nom m s 0.00 0.07 0.00 0.07 +fraiseur fraiseur nom m s 0.07 0.27 0.00 0.07 +fraiseurs fraiseur nom m p 0.07 0.27 0.00 0.20 +fraiseuse fraiseur nom f s 0.07 0.27 0.07 0.00 +fraisier fraisier nom m s 0.28 0.68 0.14 0.20 +fraisiers fraisier nom m p 0.28 0.68 0.14 0.47 +fraisil fraisil nom m s 0.00 0.07 0.00 0.07 +fraisées fraiser ver f p 1.52 0.14 0.00 0.07 par:pas; +framboise framboise nom f s 2.50 4.86 1.95 3.92 +framboises framboise nom f p 2.50 4.86 0.55 0.95 +framboisier framboisier nom m s 0.27 0.47 0.27 0.00 +framboisiers framboisier nom m p 0.27 0.47 0.00 0.47 +franc_comtois franc_comtois nom m 0.00 0.07 0.00 0.07 +franc_comtois franc_comtois adj f s 0.00 0.07 0.00 0.07 +franc_jeu franc_jeu nom m s 0.56 0.00 0.56 0.00 +franc_maçon franc_maçon nom m s 0.94 2.09 0.38 0.54 +franc_maçon franc_maçon nom f s 0.94 2.09 0.00 0.27 +franc_maçonnerie franc_maçonnerie nom f s 0.17 0.81 0.17 0.81 +franc_parler franc_parler nom m s 0.53 0.27 0.53 0.27 +franc_tireur franc_tireur nom m s 0.64 2.30 0.10 0.81 +franc franc adj m s 21.67 23.45 12.84 10.95 +francatu francatu nom m s 0.00 0.07 0.00 0.07 +francfort francfort nom f s 0.10 0.14 0.07 0.07 +francforts francfort nom f p 0.10 0.14 0.03 0.07 +franchîmes franchir ver 18.93 64.80 0.14 0.14 ind:pas:1p; +franchît franchir ver 18.93 64.80 0.00 0.07 sub:imp:3s; +franche franc adj f s 21.67 23.45 5.93 7.03 +franchement franchement adv 35.09 28.24 35.09 28.24 +franches franc adj f p 21.67 23.45 0.53 1.96 +franchi franchir ver m s 18.93 64.80 4.49 12.09 par:pas; +franchie franchir ver f s 18.93 64.80 0.60 2.50 par:pas; +franchies franchir ver f p 18.93 64.80 0.17 0.54 par:pas; +franchir franchir ver 18.93 64.80 7.88 22.36 inf; +franchira franchir ver 18.93 64.80 0.46 0.47 ind:fut:3s; +franchirai franchir ver 18.93 64.80 0.25 0.14 ind:fut:1s; +franchiraient franchir ver 18.93 64.80 0.01 0.07 cnd:pre:3p; +franchirais franchir ver 18.93 64.80 0.01 0.07 cnd:pre:1s; +franchirait franchir ver 18.93 64.80 0.05 0.54 cnd:pre:3s; +franchiras franchir ver 18.93 64.80 0.09 0.00 ind:fut:2s; +franchirent franchir ver 18.93 64.80 0.01 1.55 ind:pas:3p; +franchirez franchir ver 18.93 64.80 0.12 0.00 ind:fut:2p; +franchirions franchir ver 18.93 64.80 0.03 0.07 cnd:pre:1p; +franchirons franchir ver 18.93 64.80 0.05 0.14 ind:fut:1p; +franchiront franchir ver 18.93 64.80 0.09 0.00 ind:fut:3p; +franchis franchir ver m p 18.93 64.80 0.99 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +franchisage franchisage nom m s 0.03 0.00 0.03 0.00 +franchisant franchiser ver 0.17 0.00 0.01 0.00 par:pre; +franchise franchise nom f s 5.75 7.97 5.62 7.70 +franchiser franchiser ver 0.17 0.00 0.09 0.00 inf; +franchises franchise nom f p 5.75 7.97 0.14 0.27 +franchissables franchissable adj p 0.00 0.07 0.00 0.07 +franchissaient franchir ver 18.93 64.80 0.03 1.82 ind:imp:3p; +franchissais franchir ver 18.93 64.80 0.04 0.47 ind:imp:1s; +franchissait franchir ver 18.93 64.80 0.32 3.04 ind:imp:3s; +franchissant franchir ver 18.93 64.80 0.48 4.53 par:pre; +franchisse franchir ver 18.93 64.80 0.17 0.14 sub:pre:1s;sub:pre:3s; +franchissement franchissement nom m s 0.11 1.08 0.11 0.88 +franchissements franchissement nom m p 0.11 1.08 0.00 0.20 +franchissent franchir ver 18.93 64.80 0.27 0.81 ind:pre:3p; +franchissez franchir ver 18.93 64.80 0.29 0.00 imp:pre:2p;ind:pre:2p; +franchissions franchir ver 18.93 64.80 0.00 0.14 ind:imp:1p; +franchissons franchir ver 18.93 64.80 0.07 0.74 imp:pre:1p;ind:pre:1p; +franchisé franchiser ver m s 0.17 0.00 0.04 0.00 par:pas; +franchisée franchiser ver f s 0.17 0.00 0.03 0.00 par:pas; +franchit franchir ver 18.93 64.80 1.83 9.66 ind:pre:3s;ind:pas:3s; +franchouillard franchouillard adj m s 0.01 0.34 0.01 0.27 +franchouillarde franchouillard adj f s 0.01 0.34 0.00 0.07 +franchouillards franchouillard nom m p 0.00 0.41 0.00 0.34 +francisant franciser ver 0.00 0.68 0.00 0.07 par:pre; +francisation francisation nom f s 0.00 0.14 0.00 0.14 +franciscain franciscain adj m s 1.49 0.61 0.29 0.41 +franciscaine franciscain adj f s 1.49 0.61 0.14 0.07 +franciscains franciscain adj m p 1.49 0.61 1.07 0.14 +franciser franciser ver 0.00 0.68 0.00 0.20 inf; +francisque francisque nom f s 0.00 0.47 0.00 0.41 +francisques francisque nom f p 0.00 0.47 0.00 0.07 +francisé franciser ver m s 0.00 0.68 0.00 0.27 par:pas; +francisés franciser ver m p 0.00 0.68 0.00 0.14 par:pas; +francité francité nom f s 0.00 0.68 0.00 0.68 +franco_africain franco_africain adj m s 0.14 0.07 0.14 0.07 +franco_algérien franco_algérien adj f s 0.00 0.07 0.00 0.07 +franco_allemand franco_allemand adj m s 0.11 0.61 0.00 0.14 +franco_allemand franco_allemand adj f s 0.11 0.61 0.11 0.34 +franco_allemand franco_allemand adj f p 0.11 0.61 0.00 0.14 +franco_américain franco_américain adj m s 0.04 0.68 0.01 0.07 +franco_américain franco_américain adj f s 0.04 0.68 0.03 0.27 +franco_américain franco_américain adj f p 0.04 0.68 0.00 0.20 +franco_américain franco_américain adj m p 0.04 0.68 0.00 0.14 +franco_anglais franco_anglais adj m s 0.01 0.74 0.01 0.27 +franco_anglais franco_anglais adj f s 0.01 0.74 0.00 0.41 +franco_anglais franco_anglais nom f p 0.01 0.00 0.01 0.00 +franco_belge franco_belge adj f s 0.00 0.14 0.00 0.14 +franco_britannique franco_britannique adj f s 0.14 2.43 0.00 1.35 +franco_britannique franco_britannique adj p 0.14 2.43 0.14 1.08 +franco_canadien franco_canadien nom m s 0.01 0.00 0.01 0.00 +franco_chinois franco_chinois adj f p 0.00 0.07 0.00 0.07 +franco_italienne franco_italienne adj f s 0.01 0.00 0.01 0.00 +franco_japonais franco_japonais adj f s 0.01 0.00 0.01 0.00 +franco_libanais franco_libanais adj m p 0.00 0.14 0.00 0.14 +franco_mongol franco_mongol adj f s 0.00 0.14 0.00 0.14 +franco_polonais franco_polonais adj f s 0.00 0.07 0.00 0.07 +franco_russe franco_russe adj s 0.00 1.42 0.00 1.42 +franco_russe franco_russe nom p 0.00 0.20 0.00 0.07 +franco_soviétique franco_soviétique adj s 0.00 0.14 0.00 0.14 +franco_syrien franco_syrien adj m s 0.00 0.14 0.00 0.14 +franco_turque franco_turque adj f s 0.00 0.14 0.00 0.14 +franco_vietnamien franco_vietnamien adj m s 0.00 0.07 0.00 0.07 +franco franco adv_sup 3.87 2.70 3.87 2.70 +francomanie francomanie nom f s 0.00 0.07 0.00 0.07 +francophile francophile adj s 0.00 0.20 0.00 0.14 +francophiles francophile adj p 0.00 0.20 0.00 0.07 +francophilie francophilie nom f s 0.00 0.27 0.00 0.27 +francophobie francophobie nom f s 0.00 0.07 0.00 0.07 +francophone francophone adj s 0.12 0.74 0.10 0.61 +francophones francophone adj m p 0.12 0.74 0.02 0.14 +francophonie francophonie nom f s 0.00 0.20 0.00 0.20 +francs_bourgeois francs_bourgeois nom m p 0.00 0.20 0.00 0.20 +franc_maçon franc_maçon nom m p 0.94 2.09 0.57 1.28 +franc_tireur franc_tireur nom m p 0.64 2.30 0.54 1.49 +francs franc nom m p 17.64 82.84 16.43 78.11 +frange frange nom f s 0.97 13.45 0.69 8.04 +frangeaient franger ver 0.00 3.65 0.00 0.14 ind:imp:3p; +frangeait franger ver 0.00 3.65 0.00 0.20 ind:imp:3s; +frangeant franger ver 0.00 3.65 0.00 0.07 par:pre; +frangent franger ver 0.00 3.65 0.00 0.07 ind:pre:3p; +franges frange nom f p 0.97 13.45 0.28 5.41 +frangin frangin nom m s 9.03 18.78 7.29 7.43 +frangine frangin nom f s 9.03 18.78 1.30 6.28 +frangines frangin nom f p 9.03 18.78 0.11 2.91 +frangins frangin nom m p 9.03 18.78 0.34 2.16 +frangipane frangipane nom f s 0.00 0.34 0.00 0.14 +frangipanes frangipane nom f p 0.00 0.34 0.00 0.20 +frangipaniers frangipanier nom m p 0.00 0.07 0.00 0.07 +franglais franglais nom m 0.00 0.20 0.00 0.20 +frangé franger ver m s 0.00 3.65 0.00 0.81 par:pas; +frangée franger ver f s 0.00 3.65 0.00 0.68 par:pas; +frangées franger ver f p 0.00 3.65 0.00 0.74 par:pas; +frangés franger ver m p 0.00 3.65 0.00 0.81 par:pas; +frankaoui frankaoui nom s 0.00 0.07 0.00 0.07 +franklin franklin nom m s 0.04 0.07 0.04 0.07 +franque franque adj f s 0.00 4.53 0.00 3.58 +franques franque adj f p 0.00 4.53 0.00 0.95 +franquette franquette nom f s 0.32 0.88 0.32 0.88 +franquisme franquisme nom m s 0.50 0.07 0.50 0.07 +franquiste franquiste adj s 0.77 0.68 0.14 0.34 +franquistes franquiste nom p 0.90 0.54 0.80 0.47 +français français nom m s 39.49 164.59 34.94 148.72 +française français adj f s 43.06 298.85 11.03 105.07 +françaises français adj f p 43.06 298.85 2.25 45.07 +frapadingue frapadingue adj m s 0.06 0.27 0.05 0.20 +frapadingues frapadingue adj m p 0.06 0.27 0.01 0.07 +frappa frapper ver 160.04 168.31 1.64 21.49 ind:pas:3s; +frappadingue frappadingue adj m s 0.09 0.27 0.07 0.14 +frappadingues frappadingue adj m p 0.09 0.27 0.01 0.14 +frappai frapper ver 160.04 168.31 0.12 1.55 ind:pas:1s; +frappaient frapper ver 160.04 168.31 0.22 3.92 ind:imp:3p; +frappais frapper ver 160.04 168.31 1.05 0.61 ind:imp:1s;ind:imp:2s; +frappait frapper ver 160.04 168.31 2.86 17.97 ind:imp:3s; +frappant frapper ver 160.04 168.31 1.00 8.45 par:pre; +frappante frappant adj f s 1.69 3.65 0.78 1.28 +frappantes frappant adj f p 1.69 3.65 0.11 0.14 +frappants frappant adj m p 1.69 3.65 0.01 0.27 +frappe frapper ver 160.04 168.31 41.37 20.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +frappement frappement nom m s 0.01 0.20 0.00 0.20 +frappements frappement nom m p 0.01 0.20 0.01 0.00 +frappent frapper ver 160.04 168.31 3.24 5.34 ind:pre:3p; +frapper frapper ver 160.04 168.31 37.08 32.09 ind:pre:2p;inf; +frappera frapper ver 160.04 168.31 1.71 0.34 ind:fut:3s; +frapperai frapper ver 160.04 168.31 1.68 0.07 ind:fut:1s; +frapperaient frapper ver 160.04 168.31 0.05 0.41 cnd:pre:3p; +frapperais frapper ver 160.04 168.31 0.37 0.20 cnd:pre:1s;cnd:pre:2s; +frapperait frapper ver 160.04 168.31 0.32 1.15 cnd:pre:3s; +frapperas frapper ver 160.04 168.31 0.29 0.14 ind:fut:2s; +frapperez frapper ver 160.04 168.31 0.33 0.00 ind:fut:2p; +frapperiez frapper ver 160.04 168.31 0.03 0.00 cnd:pre:2p; +frapperons frapper ver 160.04 168.31 0.23 0.14 ind:fut:1p; +frapperont frapper ver 160.04 168.31 0.27 0.14 ind:fut:3p; +frappes frapper ver 160.04 168.31 3.92 0.14 ind:pre:2s;sub:pre:2s; +frappeur frappeur nom m s 0.55 0.34 0.40 0.20 +frappeurs frappeur nom m p 0.55 0.34 0.15 0.14 +frappez frapper ver 160.04 168.31 7.81 1.08 imp:pre:2p;ind:pre:2p; +frappiez frapper ver 160.04 168.31 0.16 0.07 ind:imp:2p; +frappions frapper ver 160.04 168.31 0.01 0.14 ind:imp:1p; +frappons frapper ver 160.04 168.31 0.40 0.00 imp:pre:1p;ind:pre:1p; +frappât frapper ver 160.04 168.31 0.00 0.14 sub:imp:3s; +frappèrent frapper ver 160.04 168.31 0.04 1.28 ind:pas:3p; +frappé frapper ver m s 160.04 168.31 43.83 35.68 par:pas; +frappée frapper ver f s 160.04 168.31 8.21 8.45 par:pas; +frappées frappé adj f p 1.19 3.99 0.15 0.47 +frappés frapper ver m p 160.04 168.31 1.72 5.81 par:pas; +fraser fraser ver 0.01 0.00 0.01 0.00 inf; +frasque frasque nom f s 0.51 1.76 0.14 0.07 +frasques frasque nom f p 0.51 1.76 0.37 1.69 +frater frater nom m s 0.01 0.07 0.01 0.07 +fraternel fraternel adj m s 2.06 10.27 1.13 4.32 +fraternelle fraternel adj f s 2.06 10.27 0.39 3.11 +fraternellement fraternellement adv 0.11 1.62 0.11 1.62 +fraternelles fraternel adj f p 2.06 10.27 0.20 0.81 +fraternels fraternel adj m p 2.06 10.27 0.34 2.03 +fraternisa fraterniser ver 0.61 0.95 0.00 0.07 ind:pas:3s; +fraternisaient fraterniser ver 0.61 0.95 0.00 0.20 ind:imp:3p; +fraternisant fraterniser ver 0.61 0.95 0.00 0.07 par:pre; +fraternisation fraternisation nom f s 0.06 0.34 0.06 0.34 +fraternise fraterniser ver 0.61 0.95 0.30 0.00 imp:pre:2s;ind:pre:3s; +fraternisent fraterniser ver 0.61 0.95 0.03 0.07 ind:pre:3p; +fraterniser fraterniser ver 0.61 0.95 0.23 0.20 inf; +fraterniserait fraterniser ver 0.61 0.95 0.00 0.14 cnd:pre:3s; +fraternisiez fraterniser ver 0.61 0.95 0.01 0.00 ind:imp:2p; +fraternisons fraterniser ver 0.61 0.95 0.01 0.00 ind:pre:1p; +fraternisèrent fraterniser ver 0.61 0.95 0.00 0.07 ind:pas:3p; +fraternisé fraterniser ver m s 0.61 0.95 0.04 0.14 par:pas; +fraternité fraternité nom f s 3.63 7.43 3.49 7.30 +fraternités fraternité nom f p 3.63 7.43 0.14 0.14 +fratricide fratricide adj s 0.41 0.54 0.28 0.34 +fratricides fratricide adj p 0.41 0.54 0.14 0.20 +fratrie fratrie nom f s 0.08 0.14 0.07 0.14 +fratries fratrie nom f p 0.08 0.14 0.01 0.00 +frauda frauder ver 0.49 0.41 0.00 0.07 ind:pas:3s; +fraudais frauder ver 0.49 0.41 0.01 0.07 ind:imp:1s;ind:imp:2s; +fraude fraude nom f s 5.54 3.24 4.82 2.84 +frauder frauder ver 0.49 0.41 0.16 0.14 inf; +fraudes fraude nom f p 5.54 3.24 0.72 0.41 +fraudeur fraudeur nom m s 0.78 0.14 0.06 0.07 +fraudeurs fraudeur nom m p 0.78 0.14 0.37 0.07 +fraudeuse fraudeur nom f s 0.78 0.14 0.35 0.00 +fraudé frauder ver m s 0.49 0.41 0.27 0.07 par:pas; +frauduleuse frauduleux adj f s 0.58 0.68 0.14 0.41 +frauduleusement frauduleusement adv 0.03 0.14 0.03 0.14 +frauduleuses frauduleux adj f p 0.58 0.68 0.19 0.14 +frauduleux frauduleux adj m 0.58 0.68 0.25 0.14 +fraya frayer ver 2.54 11.55 0.01 0.81 ind:pas:3s; +frayai frayer ver 2.54 11.55 0.00 0.14 ind:pas:1s; +frayaient frayer ver 2.54 11.55 0.01 0.47 ind:imp:3p; +frayais frayer ver 2.54 11.55 0.02 0.20 ind:imp:1s; +frayait frayer ver 2.54 11.55 0.15 1.35 ind:imp:3s; +frayant frayer ver 2.54 11.55 0.25 0.81 par:pre; +fraye frayer ver 2.54 11.55 0.29 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frayent frayer ver 2.54 11.55 0.02 0.34 ind:pre:3p; +frayer frayer ver 2.54 11.55 1.03 4.86 inf; +frayes frayer ver 2.54 11.55 0.03 0.07 ind:pre:2s; +frayeur frayeur nom f s 3.86 6.89 3.43 5.88 +frayeurs frayeur nom f p 3.86 6.89 0.43 1.01 +frayez frayer ver 2.54 11.55 0.26 0.00 imp:pre:2p;ind:pre:2p; +frayons frayer ver 2.54 11.55 0.01 0.07 imp:pre:1p;ind:pre:1p; +frayèrent frayer ver 2.54 11.55 0.00 0.07 ind:pas:3p; +frayé frayer ver m s 2.54 11.55 0.27 0.74 par:pas; +frayée frayer ver f s 2.54 11.55 0.10 0.27 par:pas; +freak freak nom m s 0.24 0.14 0.16 0.14 +freaks freak nom m p 0.24 0.14 0.08 0.00 +fredaines fredaine nom f p 0.06 0.20 0.06 0.20 +fredonna fredonner ver 1.69 9.66 0.00 1.28 ind:pas:3s; +fredonnaient fredonner ver 1.69 9.66 0.00 0.47 ind:imp:3p; +fredonnais fredonner ver 1.69 9.66 0.04 0.27 ind:imp:1s;ind:imp:2s; +fredonnait fredonner ver 1.69 9.66 0.08 2.23 ind:imp:3s; +fredonnant fredonner ver 1.69 9.66 0.26 1.15 par:pre; +fredonne fredonner ver 1.69 9.66 0.81 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fredonnement fredonnement nom m s 0.04 0.14 0.04 0.14 +fredonnent fredonner ver 1.69 9.66 0.04 0.00 ind:pre:3p; +fredonner fredonner ver 1.69 9.66 0.23 2.03 inf; +fredonnera fredonner ver 1.69 9.66 0.02 0.00 ind:fut:3s; +fredonnerai fredonner ver 1.69 9.66 0.01 0.00 ind:fut:1s; +fredonnerait fredonner ver 1.69 9.66 0.00 0.07 cnd:pre:3s; +fredonneras fredonner ver 1.69 9.66 0.01 0.00 ind:fut:2s; +fredonnez fredonner ver 1.69 9.66 0.16 0.00 imp:pre:2p;ind:pre:2p; +fredonnâmes fredonner ver 1.69 9.66 0.00 0.07 ind:pas:1p; +fredonnons fredonner ver 1.69 9.66 0.00 0.07 ind:pre:1p; +fredonnèrent fredonner ver 1.69 9.66 0.00 0.14 ind:pas:3p; +fredonné fredonner ver m s 1.69 9.66 0.04 0.41 par:pas; +fredonnée fredonner ver f s 1.69 9.66 0.00 0.07 par:pas; +fredonnées fredonner ver f p 1.69 9.66 0.00 0.07 par:pas; +fredonnés fredonner ver m p 1.69 9.66 0.00 0.07 par:pas; +free_jazz free_jazz nom m 0.00 0.07 0.00 0.07 +free_lance free_lance nom s 0.20 0.07 0.20 0.07 +free_jazz free_jazz nom m 0.00 0.07 0.00 0.07 +freelance freelance nom f s 0.40 0.07 0.40 0.07 +freesia freesia nom m s 0.05 0.07 0.01 0.00 +freesias freesia nom m p 0.05 0.07 0.04 0.07 +freezer freezer nom m s 1.08 0.00 1.08 0.00 +frein frein nom m s 10.25 13.18 4.87 7.91 +freina freiner ver 7.43 13.04 0.00 2.09 ind:pas:3s; +freinage freinage nom m s 0.97 0.74 0.84 0.68 +freinages freinage nom m p 0.97 0.74 0.14 0.07 +freinai freiner ver 7.43 13.04 0.00 0.14 ind:pas:1s; +freinaient freiner ver 7.43 13.04 0.00 0.34 ind:imp:3p; +freinais freiner ver 7.43 13.04 0.00 0.07 ind:imp:1s; +freinait freiner ver 7.43 13.04 0.00 0.68 ind:imp:3s; +freinant freiner ver 7.43 13.04 0.00 0.41 par:pre; +freine freiner ver 7.43 13.04 3.52 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +freinent freiner ver 7.43 13.04 0.15 0.41 ind:pre:3p; +freiner freiner ver 7.43 13.04 1.63 3.11 inf; +freinera freiner ver 7.43 13.04 0.07 0.00 ind:fut:3s; +freinerais freiner ver 7.43 13.04 0.01 0.00 cnd:pre:1s; +freinerez freiner ver 7.43 13.04 0.02 0.00 ind:fut:2p; +freines freiner ver 7.43 13.04 0.34 0.14 ind:pre:2s; +freineurs freineur nom m p 0.01 0.00 0.01 0.00 +freinez freiner ver 7.43 13.04 0.50 0.00 imp:pre:2p;ind:pre:2p; +freinons freiner ver 7.43 13.04 0.10 0.07 imp:pre:1p;ind:pre:1p; +freins frein nom m p 10.25 13.18 5.38 5.27 +freinèrent freiner ver 7.43 13.04 0.00 0.07 ind:pas:3p; +freiné freiner ver m s 7.43 13.04 1.04 1.08 par:pas; +freinée freiner ver f s 7.43 13.04 0.01 0.47 par:pas; +freinées freiner ver f p 7.43 13.04 0.01 0.07 par:pas; +freinés freiner ver m p 7.43 13.04 0.02 0.07 par:pas; +frelater frelater ver 0.06 0.07 0.01 0.00 inf; +frelaté frelaté adj m s 0.18 0.81 0.02 0.34 +frelatée frelaté adj f s 0.18 0.81 0.06 0.27 +frelatées frelaté adj f p 0.18 0.81 0.00 0.20 +frelatés frelaté adj m p 0.18 0.81 0.10 0.00 +frelon frelon nom m s 0.78 1.82 0.59 0.81 +frelons frelon nom m p 0.78 1.82 0.18 1.01 +freluquet freluquet nom m s 0.51 0.68 0.46 0.34 +freluquets freluquet nom m p 0.51 0.68 0.05 0.34 +french french nom m s 0.20 0.41 0.20 0.41 +fresque fresque nom f s 3.18 6.76 1.37 3.24 +fresques fresque nom f p 3.18 6.76 1.81 3.51 +fresquiste fresquiste nom s 0.01 0.00 0.01 0.00 +fret fret nom m s 1.19 0.74 1.18 0.68 +fretin fretin nom m s 0.64 0.61 0.63 0.61 +fretins fretin nom m p 0.64 0.61 0.01 0.00 +frets fret nom m p 1.19 0.74 0.01 0.07 +fretta fretter ver 0.00 0.07 0.00 0.07 ind:pas:3s; +frette frette nom f s 0.16 0.27 0.16 0.27 +freudien freudien adj m s 0.49 0.61 0.23 0.34 +freudienne freudien adj f s 0.49 0.61 0.13 0.20 +freudiennes freudien adj f p 0.49 0.61 0.04 0.07 +freudiens freudien adj m p 0.49 0.61 0.10 0.00 +freudisme freudisme nom m s 0.02 0.14 0.02 0.14 +freux freux nom m 0.02 0.20 0.02 0.20 +friabilité friabilité nom f s 0.00 0.14 0.00 0.14 +friable friable adj s 0.12 2.91 0.10 1.82 +friables friable adj p 0.12 2.91 0.03 1.08 +friand friand adj m s 0.47 3.31 0.29 1.49 +friande friand adj f s 0.47 3.31 0.02 0.74 +friandes friand adj f p 0.47 3.31 0.01 0.27 +friandise friandise nom f s 2.28 4.05 0.46 1.49 +friandises friandise nom f p 2.28 4.05 1.82 2.57 +friands friand adj m p 0.47 3.31 0.15 0.81 +fribourgeoise fribourgeois nom f s 0.00 0.14 0.00 0.14 +fric_frac fric_frac nom m 0.25 0.41 0.25 0.41 +fric fric nom m s 109.01 26.42 108.99 26.35 +fricadelle fricadelle nom f s 1.21 0.00 0.67 0.00 +fricadelles fricadelle nom f p 1.21 0.00 0.54 0.00 +fricandeau fricandeau nom m s 0.00 0.27 0.00 0.14 +fricandeaux fricandeau nom m p 0.00 0.27 0.00 0.14 +fricasse fricasser ver 0.01 0.34 0.01 0.14 ind:pre:1s;ind:pre:3s; +fricasserai fricasser ver 0.01 0.34 0.00 0.07 ind:fut:1s; +fricassé fricasser ver m s 0.01 0.34 0.00 0.14 par:pas; +fricassée fricassée nom f s 0.46 0.68 0.46 0.47 +fricassées fricassée nom f p 0.46 0.68 0.00 0.20 +fricatif fricatif adj m s 0.00 0.20 0.00 0.20 +fricatives fricative nom f p 0.01 0.00 0.01 0.00 +friche friche nom f s 0.32 7.91 0.28 4.59 +friches friche nom f p 0.32 7.91 0.04 3.31 +frichti frichti nom m s 0.03 4.39 0.03 4.12 +frichtis frichti nom m p 0.03 4.39 0.00 0.27 +fricot fricot nom m s 0.01 0.81 0.01 0.54 +fricotage fricotage nom m s 0.03 0.20 0.03 0.00 +fricotages fricotage nom m p 0.03 0.20 0.00 0.20 +fricotaient fricoter ver 1.86 1.55 0.01 0.07 ind:imp:3p; +fricotais fricoter ver 1.86 1.55 0.06 0.07 ind:imp:1s;ind:imp:2s; +fricotait fricoter ver 1.86 1.55 0.08 0.27 ind:imp:3s; +fricotant fricoter ver 1.86 1.55 0.01 0.00 par:pre; +fricote fricoter ver 1.86 1.55 0.41 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fricotent fricoter ver 1.86 1.55 0.21 0.00 ind:pre:3p; +fricoter fricoter ver 1.86 1.55 0.47 0.41 inf; +fricotes fricoter ver 1.86 1.55 0.28 0.14 ind:pre:2s; +fricoteur fricoteur nom m s 0.11 0.07 0.10 0.00 +fricoteurs fricoteur nom m p 0.11 0.07 0.01 0.07 +fricotez fricoter ver 1.86 1.55 0.09 0.00 ind:pre:2p; +fricotiez fricoter ver 1.86 1.55 0.04 0.07 ind:imp:2p; +fricots fricot nom m p 0.01 0.81 0.00 0.27 +fricoté fricoter ver m s 1.86 1.55 0.20 0.14 par:pas; +frics fric nom m p 109.01 26.42 0.02 0.07 +friction friction nom f s 1.14 2.36 0.87 0.54 +frictionna frictionner ver 0.59 2.64 0.00 0.54 ind:pas:3s; +frictionnais frictionner ver 0.59 2.64 0.10 0.00 ind:imp:1s; +frictionnait frictionner ver 0.59 2.64 0.11 0.41 ind:imp:3s; +frictionnant frictionner ver 0.59 2.64 0.00 0.27 par:pre; +frictionne frictionner ver 0.59 2.64 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frictionnent frictionner ver 0.59 2.64 0.01 0.14 ind:pre:3p; +frictionner frictionner ver 0.59 2.64 0.06 0.47 inf; +frictionnerai frictionner ver 0.59 2.64 0.00 0.07 ind:fut:1s; +frictionnerait frictionner ver 0.59 2.64 0.00 0.07 cnd:pre:3s; +frictionnez frictionner ver 0.59 2.64 0.14 0.07 imp:pre:2p;ind:pre:2p; +frictionnèrent frictionner ver 0.59 2.64 0.00 0.07 ind:pas:3p; +frictionné frictionner ver m s 0.59 2.64 0.01 0.27 par:pas; +frictions friction nom f p 1.14 2.36 0.27 1.82 +fridolin fridolin nom m s 0.16 0.34 0.01 0.00 +fridolins fridolin nom m p 0.16 0.34 0.14 0.34 +frigidaire frigidaire nom m s 1.20 3.45 1.16 3.18 +frigidaires frigidaire nom m p 1.20 3.45 0.05 0.27 +frigide frigide adj s 0.69 0.81 0.65 0.68 +frigides frigide adj f p 0.69 0.81 0.04 0.14 +frigidité frigidité nom f s 0.06 0.34 0.06 0.34 +frigo frigo nom m s 19.29 7.97 19.07 7.50 +frigorifiant frigorifier ver 0.34 0.47 0.01 0.07 par:pre; +frigorifier frigorifier ver 0.34 0.47 0.01 0.00 inf; +frigorifique frigorifique adj m s 0.26 0.14 0.10 0.00 +frigorifiques frigorifique adj f p 0.26 0.14 0.16 0.14 +frigorifié frigorifier ver m s 0.34 0.47 0.23 0.07 par:pas; +frigorifiée frigorifier ver f s 0.34 0.47 0.08 0.07 par:pas; +frigorifiées frigorifié adj f p 0.13 0.61 0.01 0.07 +frigorifiés frigorifié adj m p 0.13 0.61 0.02 0.00 +frigorigène frigorigène adj m s 0.01 0.00 0.01 0.00 +frigorigène frigorigène nom m s 0.01 0.00 0.01 0.00 +frigos frigo nom m p 19.29 7.97 0.22 0.47 +frileuse frileux adj f s 1.08 5.88 0.31 1.55 +frileusement frileusement adv 0.00 1.96 0.00 1.96 +frileuses frileux adj f p 1.08 5.88 0.03 0.68 +frileux frileux adj m 1.08 5.88 0.74 3.65 +frilosité frilosité nom f s 0.01 0.07 0.01 0.07 +frima frimer ver 3.67 4.32 0.00 0.07 ind:pas:3s; +frimaient frimer ver 3.67 4.32 0.00 0.07 ind:imp:3p; +frimaire frimaire nom m s 0.00 0.07 0.00 0.07 +frimais frimer ver 3.67 4.32 0.30 0.41 ind:imp:1s;ind:imp:2s; +frimait frimer ver 3.67 4.32 0.04 0.20 ind:imp:3s; +frimant frimer ver 3.67 4.32 0.01 0.20 par:pre; +frimas frimas nom m 0.11 1.15 0.11 1.15 +frime frimer ver 3.67 4.32 1.37 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +friment frimer ver 3.67 4.32 0.02 0.07 ind:pre:3p; +frimer frimer ver 3.67 4.32 1.73 1.62 inf; +frimerais frimer ver 3.67 4.32 0.00 0.07 cnd:pre:2s; +frimes frimer ver 3.67 4.32 0.08 0.00 ind:pre:2s; +frimeur frimeur nom m s 1.43 0.47 0.86 0.27 +frimeurs frimeur nom m p 1.43 0.47 0.51 0.20 +frimeuse frimeur nom f s 1.43 0.47 0.05 0.00 +frimez frimer ver 3.67 4.32 0.01 0.00 ind:pre:2p; +frimiez frimer ver 3.67 4.32 0.02 0.00 ind:imp:2p; +frimousse frimousse nom f s 0.81 1.82 0.81 1.49 +frimousses frimousse nom f p 0.81 1.82 0.00 0.34 +frimé frimer ver m s 3.67 4.32 0.08 0.20 par:pas; +frimée frimer ver f s 3.67 4.32 0.00 0.07 par:pas; +frimées frimer ver f p 3.67 4.32 0.00 0.07 par:pas; +frimés frimer ver m p 3.67 4.32 0.01 0.14 par:pas; +fringale fringale nom f s 0.46 2.70 0.40 2.23 +fringales fringale nom f p 0.46 2.70 0.05 0.47 +fringant fringant adj m s 0.86 2.77 0.63 1.96 +fringante fringant adj f s 0.86 2.77 0.19 0.41 +fringantes fringant adj f p 0.86 2.77 0.02 0.00 +fringants fringant adj m p 0.86 2.77 0.03 0.41 +fringillidé fringillidé nom m s 0.01 0.07 0.01 0.07 +fringuait fringuer ver 1.28 3.31 0.02 0.27 ind:imp:3s; +fringue fringue nom f s 13.12 11.82 0.23 0.20 +fringuent fringuer ver 1.28 3.31 0.14 0.14 ind:pre:3p; +fringuer fringuer ver 1.28 3.31 0.29 0.47 inf; +fringues fringue nom f p 13.12 11.82 12.88 11.62 +fringuez fringuer ver 1.28 3.31 0.01 0.00 imp:pre:2p; +fringué fringuer ver m s 1.28 3.31 0.47 0.81 par:pas; +fringuée fringuer ver f s 1.28 3.31 0.10 0.88 par:pas; +fringuées fringuer ver f p 1.28 3.31 0.03 0.14 par:pas; +fringués fringuer ver m p 1.28 3.31 0.04 0.41 par:pas; +frio frio adj s 0.01 0.07 0.01 0.07 +fripa friper ver 0.11 1.89 0.00 0.07 ind:pas:3s; +fripaient friper ver 0.11 1.89 0.00 0.14 ind:imp:3p; +fripant friper ver 0.11 1.89 0.00 0.07 par:pre; +fripe fripe nom f s 0.58 0.95 0.22 0.61 +fripent friper ver 0.11 1.89 0.01 0.07 ind:pre:3p; +friper friper ver 0.11 1.89 0.01 0.20 inf; +friperie friperie nom f s 0.37 0.20 0.37 0.20 +fripes fripe nom f p 0.58 0.95 0.36 0.34 +fripier fripier nom m s 0.04 1.01 0.02 0.61 +fripiers fripier nom m p 0.04 1.01 0.02 0.41 +fripon fripon nom m s 0.86 0.68 0.44 0.34 +friponne fripon nom f s 0.86 0.68 0.33 0.07 +friponnerie friponnerie nom f s 0.13 0.14 0.13 0.14 +friponnes friponne nom f p 0.02 0.00 0.02 0.00 +fripons fripon nom m p 0.86 0.68 0.09 0.20 +fripouille fripouille nom f s 2.08 2.23 1.99 1.15 +fripouillerie fripouillerie nom f s 0.00 0.20 0.00 0.14 +fripouilleries fripouillerie nom f p 0.00 0.20 0.00 0.07 +fripouilles fripouille nom f p 2.08 2.23 0.10 1.08 +frippe frippe nom f s 0.00 0.07 0.00 0.07 +fripé fripé adj m s 0.57 5.88 0.33 1.49 +fripée fripé adj f s 0.57 5.88 0.17 1.82 +fripées fripé adj f p 0.57 5.88 0.04 1.01 +fripés fripé adj m p 0.57 5.88 0.03 1.55 +friqué friqué adj m s 1.05 0.74 0.32 0.20 +friquée friqué adj f s 1.05 0.74 0.16 0.14 +friquées friqué adj f p 1.05 0.74 0.11 0.07 +friqués friqué adj m p 1.05 0.74 0.46 0.34 +frire frire ver 6.63 4.73 2.26 1.82 inf; +fris frire ver 6.63 4.73 0.32 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +frisa friser ver 2.54 7.70 0.00 0.14 ind:pas:3s; +frisaient friser ver 2.54 7.70 0.14 0.27 ind:imp:3p; +frisais friser ver 2.54 7.70 0.10 0.07 ind:imp:1s;ind:imp:2s; +frisait friser ver 2.54 7.70 0.16 0.95 ind:imp:3s; +frisant frisant adj m s 0.02 0.95 0.02 0.20 +frisante frisant adj f s 0.02 0.95 0.00 0.68 +frisants frisant adj m p 0.02 0.95 0.00 0.07 +frisbee frisbee nom m s 1.35 0.00 1.35 0.00 +frise_poulet frise_poulet nom m s 0.01 0.00 0.01 0.00 +frise friser ver 2.54 7.70 0.80 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +friseler friseler ver 0.00 0.07 0.00 0.07 inf; +friselis friselis nom m 0.00 1.35 0.00 1.35 +friselée friselée nom f s 0.00 0.07 0.00 0.07 +frisent friser ver 2.54 7.70 0.04 0.27 ind:pre:3p; +friser friser ver 2.54 7.70 0.42 1.42 inf; +friserai friser ver 2.54 7.70 0.00 0.07 ind:fut:1s; +frises frise nom f p 0.37 3.45 0.14 0.41 +frisette frisette nom f s 0.06 1.42 0.03 0.88 +frisettes frisette nom f p 0.06 1.42 0.03 0.54 +friseur friseur nom m s 0.00 0.20 0.00 0.20 +frisez friser ver 2.54 7.70 0.02 0.00 ind:pre:2p; +frisâmes friser ver 2.54 7.70 0.00 0.07 ind:pas:1p; +frison frison nom m s 0.10 0.54 0.10 0.00 +frisonne frison adj f s 0.00 0.27 0.00 0.14 +frisonnes frison adj f p 0.00 0.27 0.00 0.07 +frisons friser ver 2.54 7.70 0.14 0.00 ind:pre:1p; +frisottaient frisotter ver 0.01 0.61 0.00 0.14 ind:imp:3p; +frisottant frisottant adj m s 0.00 0.27 0.00 0.07 +frisottants frisottant adj m p 0.00 0.27 0.00 0.20 +frisottement frisottement nom m s 0.00 0.07 0.00 0.07 +frisottent frisotter ver 0.01 0.61 0.00 0.14 ind:pre:3p; +frisotter frisotter ver 0.01 0.61 0.00 0.07 inf; +frisottis frisottis nom m 0.01 0.14 0.01 0.14 +frisotté frisotter ver m s 0.01 0.61 0.01 0.00 par:pas; +frisottée frisotté adj f s 0.00 0.68 0.00 0.41 +frisottées frisotter ver f p 0.01 0.61 0.00 0.07 par:pas; +frisottés frisotter ver m p 0.01 0.61 0.00 0.14 par:pas; +frisous frisou nom m p 0.14 0.07 0.14 0.07 +frisquet frisquet adj m s 1.25 1.01 1.16 0.68 +frisquette frisquet adj f s 1.25 1.01 0.10 0.34 +frisselis frisselis nom m 0.00 0.14 0.00 0.14 +frisson frisson nom m s 8.62 21.69 4.23 14.26 +frissonna frissonner ver 2.21 20.34 0.01 4.39 ind:pas:3s; +frissonnai frissonner ver 2.21 20.34 0.01 0.34 ind:pas:1s; +frissonnaient frissonner ver 2.21 20.34 0.00 1.01 ind:imp:3p; +frissonnais frissonner ver 2.21 20.34 0.03 0.68 ind:imp:1s; +frissonnait frissonner ver 2.21 20.34 0.21 3.38 ind:imp:3s; +frissonnant frissonner ver 2.21 20.34 0.14 2.09 par:pre; +frissonnante frissonnant adj f s 0.20 3.92 0.07 1.82 +frissonnantes frissonnant adj f p 0.20 3.92 0.00 0.61 +frissonnants frissonnant adj m p 0.20 3.92 0.02 0.54 +frissonne frissonner ver 2.21 20.34 0.75 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frissonnement frissonnement nom m s 0.01 0.61 0.01 0.41 +frissonnements frissonnement nom m p 0.01 0.61 0.00 0.20 +frissonnent frissonner ver 2.21 20.34 0.03 0.47 ind:pre:3p; +frissonner frissonner ver 2.21 20.34 0.73 4.12 inf; +frissonnes frissonner ver 2.21 20.34 0.11 0.00 ind:pre:2s; +frissonnez frissonner ver 2.21 20.34 0.04 0.00 ind:pre:2p; +frissonnèrent frissonner ver 2.21 20.34 0.00 0.07 ind:pas:3p; +frissonné frissonner ver m s 2.21 20.34 0.14 0.61 par:pas; +frissons frisson nom m p 8.62 21.69 4.39 7.43 +frisé frisé adj m s 2.72 10.20 1.56 3.24 +frisée frisé adj f s 2.72 10.20 0.40 1.28 +frisées frisé adj f p 2.72 10.20 0.04 0.68 +frisure frisure nom f s 0.00 0.34 0.00 0.14 +frisures frisure nom f p 0.00 0.34 0.00 0.20 +frisés frisé adj m p 2.72 10.20 0.73 5.00 +frit frire ver m s 6.63 4.73 2.74 1.82 ind:pre:3s;par:pas; +frite frite nom f s 9.33 5.47 0.66 0.54 +friterie friterie nom f s 0.18 0.47 0.18 0.14 +friteries friterie nom f p 0.18 0.47 0.00 0.34 +frites frite nom f p 9.33 5.47 8.68 4.93 +friteuse friteur nom f s 0.34 0.41 0.34 0.20 +friteuses friteuse nom f p 0.02 0.00 0.02 0.00 +fritillaires fritillaire nom f p 0.01 0.07 0.01 0.07 +fritons friton nom m p 0.00 0.07 0.00 0.07 +frits frire ver m p 6.63 4.73 1.32 1.08 par:pas; +fritte fritte nom f s 0.01 0.00 0.01 0.00 +fritter fritter ver 0.04 0.00 0.04 0.00 inf; +frittés fritter ver m p 0.04 0.00 0.01 0.00 par:pas; +friture friture nom f s 1.88 3.78 1.81 3.24 +fritures friture nom f p 1.88 3.78 0.06 0.54 +friturier friturier nom m s 0.00 0.07 0.00 0.07 +fritz fritz nom m 1.72 1.82 1.72 1.82 +frivole frivole adj s 2.22 5.81 1.75 4.26 +frivoles frivole adj p 2.22 5.81 0.47 1.55 +frivolité frivolité nom f s 0.48 2.84 0.40 2.30 +frivolités frivolité nom f p 0.48 2.84 0.08 0.54 +froc froc nom m s 6.92 7.64 6.61 6.89 +frocard frocard nom m s 0.00 0.20 0.00 0.14 +frocards frocard nom m p 0.00 0.20 0.00 0.07 +frocs froc nom m p 6.92 7.64 0.31 0.74 +froid froid adj m s 127.22 161.69 98.43 94.86 +froidasse froidasse adj f s 0.00 0.07 0.00 0.07 +froide froid adj f s 127.22 161.69 21.48 49.59 +froidement froidement adv 0.94 9.05 0.94 9.05 +froides froid adj f p 127.22 161.69 4.07 10.00 +froideur froideur nom f s 1.94 7.84 1.94 7.57 +froideurs froideur nom f p 1.94 7.84 0.00 0.27 +froidi froidir ver m s 0.00 0.20 0.00 0.07 par:pas; +froidir froidir ver 0.00 0.20 0.00 0.07 inf; +froidissait froidir ver 0.00 0.20 0.00 0.07 ind:imp:3s; +froids froid adj m p 127.22 161.69 3.24 7.23 +froidure froidure nom f s 0.12 1.69 0.11 1.55 +froidures froidure nom f p 0.12 1.69 0.01 0.14 +froissa froisser ver 3.74 12.50 0.00 0.88 ind:pas:3s; +froissaient froisser ver 3.74 12.50 0.00 0.54 ind:imp:3p; +froissais froisser ver 3.74 12.50 0.01 0.14 ind:imp:1s; +froissait froisser ver 3.74 12.50 0.01 1.55 ind:imp:3s; +froissant froisser ver 3.74 12.50 0.00 1.08 par:pre; +froisse froisser ver 3.74 12.50 0.64 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +froissement froissement nom m s 0.23 10.54 0.23 8.38 +froissements froissement nom m p 0.23 10.54 0.01 2.16 +froissent froisser ver 3.74 12.50 0.04 0.47 ind:pre:3p; +froisser froisser ver 3.74 12.50 1.60 1.96 inf; +froissera froisser ver 3.74 12.50 0.01 0.00 ind:fut:3s; +froisserais froisser ver 3.74 12.50 0.00 0.07 cnd:pre:1s; +froisserait froisser ver 3.74 12.50 0.02 0.00 cnd:pre:3s; +froisses froisser ver 3.74 12.50 0.05 0.14 ind:pre:2s; +froissez froisser ver 3.74 12.50 0.04 0.00 imp:pre:2p;ind:pre:2p; +froissions froisser ver 3.74 12.50 0.00 0.07 ind:imp:1p; +froissèrent froisser ver 3.74 12.50 0.00 0.07 ind:pas:3p; +froissé froisser ver m s 3.74 12.50 0.66 2.30 par:pas; +froissée froisser ver f s 3.74 12.50 0.59 0.81 par:pas; +froissées froissé adj f p 0.96 9.46 0.01 1.22 +froissés froissé adj m p 0.96 9.46 0.21 2.03 +fromage fromage nom m s 27.22 26.96 25.68 20.81 +fromager fromager nom m s 0.32 0.47 0.30 0.34 +fromagerie fromagerie nom f s 0.01 0.41 0.01 0.41 +fromagers fromager nom m p 0.32 0.47 0.02 0.14 +fromages fromage nom m p 27.22 26.96 1.54 6.15 +fromagère fromager adj f s 0.04 0.27 0.00 0.14 +fromegi fromegi nom m s 0.00 0.07 0.00 0.07 +froment froment nom m s 0.21 1.35 0.21 1.35 +fromental fromental nom m s 0.00 0.07 0.00 0.07 +frometon frometon nom m s 0.04 0.47 0.04 0.27 +frometons frometon nom m p 0.04 0.47 0.00 0.20 +fronce fronce nom f s 0.36 0.54 0.34 0.07 +froncement froncement nom m s 0.27 1.69 0.16 1.08 +froncements froncement nom m p 0.27 1.69 0.11 0.61 +froncer froncer ver 0.52 15.88 0.08 0.88 inf; +froncerait froncer ver 0.52 15.88 0.01 0.20 cnd:pre:3s; +fronces froncer ver 0.52 15.88 0.04 0.07 ind:pre:2s; +froncez froncer ver 0.52 15.88 0.06 0.00 imp:pre:2p;ind:pre:2p; +froncèrent froncer ver 0.52 15.88 0.00 0.07 ind:pas:3p; +froncé froncer ver m s 0.52 15.88 0.04 1.08 par:pas; +froncée froncé adj f s 0.14 5.61 0.10 0.20 +froncées froncé adj f p 0.14 5.61 0.00 0.14 +froncés froncé adj m p 0.14 5.61 0.01 4.19 +frondaient fronder ver 0.00 0.27 0.00 0.07 ind:imp:3p; +frondaison frondaison nom f s 0.01 3.92 0.00 0.61 +frondaisons frondaison nom f p 0.01 3.92 0.01 3.31 +fronde fronde nom f s 1.02 1.82 0.86 1.69 +frondent fronder ver 0.00 0.27 0.00 0.07 ind:pre:3p; +frondes fronde nom f p 1.02 1.82 0.16 0.14 +frondeur frondeur adj m s 0.01 0.61 0.01 0.34 +frondeurs frondeur nom m p 0.02 0.00 0.02 0.00 +frondeuse frondeur adj f s 0.01 0.61 0.00 0.14 +frondé fronder ver m s 0.00 0.27 0.00 0.07 par:pas; +front front nom m s 41.03 159.12 38.81 152.57 +frontal frontal adj m s 1.62 1.55 1.15 0.74 +frontale frontal adj f s 1.62 1.55 0.35 0.81 +frontalier frontalier adj m s 0.60 1.22 0.04 0.07 +frontaliers frontalier adj m p 0.60 1.22 0.04 0.34 +frontalière frontalier adj f s 0.60 1.22 0.32 0.68 +frontalières frontalier adj f p 0.60 1.22 0.20 0.14 +frontaux frontal adj m p 1.62 1.55 0.12 0.00 +fronteau fronteau nom m s 0.00 0.07 0.00 0.07 +fronça froncer ver 0.52 15.88 0.00 5.61 ind:pas:3s; +fronçai froncer ver 0.52 15.88 0.00 0.14 ind:pas:1s; +fronçaient froncer ver 0.52 15.88 0.00 0.14 ind:imp:3p; +fronçais froncer ver 0.52 15.88 0.01 0.07 ind:imp:1s; +fronçait froncer ver 0.52 15.88 0.01 1.01 ind:imp:3s; +fronçant froncer ver 0.52 15.88 0.01 3.58 par:pre; +frontispice frontispice nom m s 0.01 0.34 0.01 0.27 +frontispices frontispice nom m p 0.01 0.34 0.00 0.07 +frontière frontière nom f s 34.54 40.47 28.54 26.42 +frontières frontière nom f p 34.54 40.47 6.00 14.05 +fronton fronton nom m s 0.10 5.47 0.10 4.39 +frontons fronton nom m p 0.10 5.47 0.00 1.08 +fronts front nom m p 41.03 159.12 2.23 6.55 +frotta frotter ver 12.52 50.14 0.01 7.70 ind:pas:3s; +frottage frottage nom m s 0.05 0.27 0.05 0.20 +frottages frottage nom m p 0.05 0.27 0.00 0.07 +frottai frotter ver 12.52 50.14 0.01 0.14 ind:pas:1s; +frottaient frotter ver 12.52 50.14 0.16 1.42 ind:imp:3p; +frottais frotter ver 12.52 50.14 0.33 1.01 ind:imp:1s;ind:imp:2s; +frottait frotter ver 12.52 50.14 0.29 8.38 ind:imp:3s; +frottant frotter ver 12.52 50.14 0.27 7.03 par:pre; +frotte frotter ver 12.52 50.14 3.90 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +frottement frottement nom m s 0.68 5.07 0.31 3.72 +frottements frottement nom m p 0.68 5.07 0.37 1.35 +frottent frotter ver 12.52 50.14 0.16 1.01 ind:pre:3p; +frotter frotter ver 12.52 50.14 4.01 8.99 inf; +frottera frotter ver 12.52 50.14 0.25 0.00 ind:fut:3s; +frotterai frotter ver 12.52 50.14 0.05 0.14 ind:fut:1s; +frotterais frotter ver 12.52 50.14 0.06 0.00 cnd:pre:1s; +frotterait frotter ver 12.52 50.14 0.01 0.20 cnd:pre:3s; +frotteras frotter ver 12.52 50.14 0.02 0.07 ind:fut:2s; +frotterons frotter ver 12.52 50.14 0.00 0.07 ind:fut:1p; +frottes frotter ver 12.52 50.14 0.58 0.07 ind:pre:2s; +frotteur frotteur adj m s 0.01 0.14 0.01 0.07 +frotteurs frotteur nom m p 0.00 0.68 0.00 0.14 +frotteuse frotteur nom f s 0.00 0.68 0.00 0.14 +frotteuses frotteur nom f p 0.00 0.68 0.00 0.07 +frottez frotter ver 12.52 50.14 0.74 0.14 imp:pre:2p;ind:pre:2p; +frotti_frotta frotti_frotta nom m 0.04 0.20 0.04 0.20 +frottiez frotter ver 12.52 50.14 0.05 0.00 ind:imp:2p; +frottin frottin nom m s 0.01 0.20 0.01 0.20 +frottions frotter ver 12.52 50.14 0.00 0.07 ind:imp:1p; +frottis frottis nom m 0.39 0.34 0.39 0.34 +frottoir frottoir nom m s 0.00 0.41 0.00 0.34 +frottoirs frottoir nom m p 0.00 0.41 0.00 0.07 +frottons frotton nom m p 0.06 0.14 0.06 0.14 +frottèrent frotter ver 12.52 50.14 0.00 0.27 ind:pas:3p; +frotté frotter ver m s 12.52 50.14 1.25 2.64 par:pas; +frottée frotter ver f s 12.52 50.14 0.30 0.61 par:pas; +frottées frotter ver f p 12.52 50.14 0.01 0.81 par:pas; +frottés frotter ver m p 12.52 50.14 0.03 0.81 par:pas; +frou_frou frou_frou nom m s 0.23 0.47 0.09 0.41 +frouement frouement nom m s 0.00 0.27 0.00 0.20 +frouements frouement nom m p 0.00 0.27 0.00 0.07 +froufrou froufrou nom m s 0.32 0.41 0.23 0.14 +froufrous froufrou nom m p 0.32 0.41 0.08 0.27 +froufroutait froufrouter ver 0.02 0.07 0.00 0.07 ind:imp:3s; +froufroutant froufrouter ver 0.02 0.07 0.01 0.00 par:pre; +froufroutante froufroutant adj f s 0.01 0.41 0.00 0.07 +froufroutantes froufroutant adj f p 0.01 0.41 0.00 0.20 +froufroutants froufroutant adj m p 0.01 0.41 0.01 0.07 +froufroutement froufroutement nom m s 0.00 0.07 0.00 0.07 +froufrouter froufrouter ver 0.02 0.07 0.01 0.00 inf; +frou_frou frou_frou nom m p 0.23 0.47 0.14 0.07 +froussard froussard nom m s 1.99 0.61 1.33 0.41 +froussarde froussard nom f s 1.99 0.61 0.26 0.00 +froussards froussard nom m p 1.99 0.61 0.40 0.20 +frousse frousse nom f s 3.13 2.36 2.90 2.16 +frousses frousse nom f p 3.13 2.36 0.23 0.20 +frère frère nom m s 390.39 216.35 311.45 142.36 +frères frère nom m p 390.39 216.35 78.94 73.99 +frète fréter ver 0.01 0.74 0.00 0.07 ind:pre:1s; +fructidor fructidor nom m s 0.01 0.07 0.01 0.07 +fructifiaient fructifier ver 0.55 1.28 0.00 0.07 ind:imp:3p; +fructifiant fructifier ver 0.55 1.28 0.01 0.07 par:pre; +fructification fructification nom f s 0.00 0.14 0.00 0.14 +fructifier fructifier ver 0.55 1.28 0.53 1.08 inf; +fructifié fructifier ver m s 0.55 1.28 0.01 0.07 par:pas; +fructose fructose nom m s 0.07 0.00 0.07 0.00 +fructueuse fructueux adj f s 1.05 3.24 0.54 1.28 +fructueuses fructueux adj f p 1.05 3.24 0.19 0.61 +fructueux fructueux adj m 1.05 3.24 0.32 1.35 +frugal frugal adj m s 0.19 1.28 0.18 0.61 +frugale frugal adj f s 0.19 1.28 0.01 0.41 +frugalement frugalement adv 0.01 0.07 0.01 0.07 +frugales frugal adj f p 0.19 1.28 0.00 0.07 +frugalité frugalité nom f s 0.01 0.47 0.01 0.47 +frégate frégate nom f s 0.63 3.11 0.46 1.82 +frégates frégate nom f p 0.63 3.11 0.17 1.28 +frugaux frugal adj m p 0.19 1.28 0.00 0.20 +frugivore frugivore adj s 0.02 0.00 0.02 0.00 +fruit fruit nom m s 39.45 64.05 15.99 21.96 +fruiter fruiter ver 0.04 0.41 0.00 0.07 inf; +fruiteries fruiterie nom f p 0.00 0.14 0.00 0.14 +fruiteux fruiteux adj m s 0.00 0.07 0.00 0.07 +fruitier fruitier adj m s 0.39 2.43 0.15 0.47 +fruitiers fruitier adj m p 0.39 2.43 0.22 1.82 +fruitière fruitier adj f s 0.39 2.43 0.01 0.07 +fruitières fruitier adj f p 0.39 2.43 0.01 0.07 +fruits fruit nom m p 39.45 64.05 23.45 42.09 +fruité fruité adj m s 0.38 1.01 0.31 0.34 +fruitée fruité adj f s 0.38 1.01 0.01 0.54 +fruitées fruité adj f p 0.38 1.01 0.00 0.07 +fruités fruité adj m p 0.38 1.01 0.06 0.07 +frêle frêle adj s 1.19 12.03 1.00 9.80 +frêles frêle adj p 1.19 12.03 0.19 2.23 +frémi frémir ver m s 3.86 24.26 0.43 1.49 par:pas; +frémir frémir ver 3.86 24.26 1.38 6.22 inf; +frémirait frémir ver 3.86 24.26 0.14 0.07 cnd:pre:3s; +frémirent frémir ver 3.86 24.26 0.00 1.08 ind:pas:3p; +frémiront frémir ver 3.86 24.26 0.00 0.07 ind:fut:3p; +frémis frémir ver m p 3.86 24.26 1.06 1.08 ind:pre:1s;ind:pre:2s;par:pas; +frémissaient frémir ver 3.86 24.26 0.00 2.23 ind:imp:3p; +frémissais frémir ver 3.86 24.26 0.00 0.41 ind:imp:1s; +frémissait frémir ver 3.86 24.26 0.02 2.16 ind:imp:3s; +frémissant frémissant adj m s 0.77 8.45 0.39 2.03 +frémissante frémissant adj f s 0.77 8.45 0.14 3.24 +frémissantes frémissant adj f p 0.77 8.45 0.10 1.69 +frémissants frémissant adj m p 0.77 8.45 0.14 1.49 +frémisse frémir ver 3.86 24.26 0.00 0.07 sub:pre:3s; +frémissement frémissement nom m s 0.66 10.34 0.55 8.58 +frémissements frémissement nom m p 0.66 10.34 0.11 1.76 +frémissent frémir ver 3.86 24.26 0.34 1.82 ind:pre:3p; +frémissez frémir ver 3.86 24.26 0.00 0.07 ind:pre:2p; +frémit frémir ver 3.86 24.26 0.46 5.68 ind:pre:3s;ind:pas:3s; +frêne frêne nom m s 1.81 2.50 1.71 1.62 +frênes frêne nom m p 1.81 2.50 0.10 0.88 +frénésie frénésie nom f s 1.25 8.51 1.23 7.77 +frénésies frénésie nom f p 1.25 8.51 0.02 0.74 +frénétique frénétique adj s 0.61 6.28 0.52 4.12 +frénétiquement frénétiquement adv 0.26 2.97 0.26 2.97 +frénétiques frénétique adj p 0.61 6.28 0.09 2.16 +fréon fréon nom m s 0.21 0.00 0.21 0.00 +fréquemment fréquemment adv 1.16 8.24 1.16 8.24 +fréquence fréquence nom f s 10.12 2.43 7.61 2.23 +fréquences fréquence nom f p 10.12 2.43 2.51 0.20 +fréquent fréquent adj m s 4.14 12.09 2.39 3.78 +fréquenta fréquenter ver 18.97 30.81 0.01 0.68 ind:pas:3s; +fréquentable fréquentable adj m s 0.37 1.01 0.22 0.34 +fréquentables fréquentable adj m p 0.37 1.01 0.15 0.68 +fréquentai fréquenter ver 18.97 30.81 0.00 0.34 ind:pas:1s; +fréquentaient fréquenter ver 18.97 30.81 0.24 2.30 ind:imp:3p; +fréquentais fréquenter ver 18.97 30.81 0.96 1.22 ind:imp:1s;ind:imp:2s; +fréquentait fréquenter ver 18.97 30.81 1.55 5.54 ind:imp:3s; +fréquentant fréquenter ver 18.97 30.81 0.04 0.81 par:pre; +fréquentation fréquentation nom f s 2.81 5.74 0.46 2.97 +fréquentations fréquentation nom f p 2.81 5.74 2.35 2.77 +fréquente fréquenter ver 18.97 30.81 4.76 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fréquentent fréquenter ver 18.97 30.81 0.64 0.74 ind:pre:3p; +fréquenter fréquenter ver 18.97 30.81 4.57 6.76 ind:pre:2p;inf; +fréquenterais fréquenter ver 18.97 30.81 0.39 0.14 cnd:pre:1s;cnd:pre:2s; +fréquenterait fréquenter ver 18.97 30.81 0.11 0.00 cnd:pre:3s; +fréquenteras fréquenter ver 18.97 30.81 0.03 0.00 ind:fut:2s; +fréquenterez fréquenter ver 18.97 30.81 0.01 0.07 ind:fut:2p; +fréquentes fréquenter ver 18.97 30.81 2.01 0.61 ind:pre:2s; +fréquentez fréquenter ver 18.97 30.81 0.65 0.47 imp:pre:2p;ind:pre:2p; +fréquentiez fréquenter ver 18.97 30.81 0.17 0.14 ind:imp:2p; +fréquentions fréquenter ver 18.97 30.81 0.14 0.47 ind:imp:1p; +fréquentons fréquenter ver 18.97 30.81 0.09 0.14 ind:pre:1p; +fréquentât fréquenter ver 18.97 30.81 0.00 0.20 sub:imp:3s; +fréquents fréquent adj m p 4.14 12.09 0.27 3.11 +fréquentèrent fréquenter ver 18.97 30.81 0.00 0.07 ind:pas:3p; +fréquenté fréquenter ver m s 18.97 30.81 2.31 3.65 par:pas; +fréquentée fréquenté adj f s 0.86 3.51 0.38 0.74 +fréquentées fréquenter ver f p 18.97 30.81 0.02 0.68 par:pas; +fréquentés fréquenter ver m p 18.97 30.81 0.12 1.42 par:pas; +frérot frérot nom m s 2.50 0.81 2.46 0.68 +frérots frérot nom m p 2.50 0.81 0.04 0.14 +frusquer frusquer ver 0.00 0.14 0.00 0.07 inf; +frusques frusque nom f p 0.64 3.24 0.64 3.24 +frusquée frusquer ver f s 0.00 0.14 0.00 0.07 par:pas; +fruste fruste adj s 0.51 4.86 0.37 3.11 +frustes fruste adj p 0.51 4.86 0.14 1.76 +frustra frustrer ver 2.68 3.38 0.00 0.07 ind:pas:3s; +frustrait frustrer ver 2.68 3.38 0.14 0.27 ind:imp:3s; +frustrant frustrant adj m s 1.39 0.14 1.23 0.00 +frustrante frustrant adj f s 1.39 0.14 0.14 0.14 +frustrantes frustrant adj f p 1.39 0.14 0.02 0.00 +frustration frustration nom f s 3.06 3.85 2.73 3.24 +frustrations frustration nom f p 3.06 3.85 0.33 0.61 +frustre frustrer ver 2.68 3.38 0.37 0.00 ind:pre:3s; +frustrer frustrer ver 2.68 3.38 0.08 0.34 inf; +frustrât frustrer ver 2.68 3.38 0.00 0.14 sub:imp:3s; +frustré frustré adj m s 1.98 2.43 1.14 1.15 +frustrée frustré adj f s 1.98 2.43 0.62 0.68 +frustrées frustré nom f p 0.78 0.81 0.04 0.07 +frustrés frustrer ver m p 2.68 3.38 0.49 0.74 par:pas; +fréta fréter ver 0.01 0.74 0.00 0.14 ind:pas:3s; +frétait fréter ver 0.01 0.74 0.00 0.07 ind:imp:3s; +frétant fréter ver 0.01 0.74 0.00 0.07 par:pre; +fréter fréter ver 0.01 0.74 0.01 0.14 inf; +frétilla frétiller ver 0.60 3.58 0.00 0.14 ind:pas:3s; +frétillaient frétiller ver 0.60 3.58 0.01 0.27 ind:imp:3p; +frétillait frétiller ver 0.60 3.58 0.10 0.61 ind:imp:3s; +frétillant frétillant adj m s 0.22 1.89 0.07 0.61 +frétillante frétillant adj f s 0.22 1.89 0.13 0.47 +frétillantes frétillant adj f p 0.22 1.89 0.00 0.27 +frétillants frétillant adj m p 0.22 1.89 0.02 0.54 +frétillard frétillard adj m s 0.00 0.14 0.00 0.07 +frétillarde frétillard adj f s 0.00 0.14 0.00 0.07 +frétille frétiller ver 0.60 3.58 0.30 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frétillement frétillement nom m s 0.00 0.34 0.00 0.27 +frétillements frétillement nom m p 0.00 0.34 0.00 0.07 +frétillent frétiller ver 0.60 3.58 0.06 0.27 ind:pre:3p; +frétiller frétiller ver 0.60 3.58 0.08 0.54 inf; +frétillon frétillon adj m s 0.00 0.20 0.00 0.20 +frétillé frétiller ver m s 0.60 3.58 0.00 0.07 par:pas; +frétèrent fréter ver 0.01 0.74 0.00 0.07 ind:pas:3p; +frété fréter ver m s 0.01 0.74 0.00 0.14 par:pas; +frétée fréter ver f s 0.01 0.74 0.00 0.07 par:pas; +fèces fèces nom f p 0.32 0.20 0.32 0.20 +fère fer nom f s 37.08 114.19 0.02 0.20 +fève fève nom f s 1.12 1.89 0.44 0.61 +fèves fève nom f p 1.12 1.89 0.68 1.28 +féal féal adj m s 0.01 0.20 0.01 0.14 +féaux féal adj m p 0.01 0.20 0.00 0.07 +fébrile fébrile adj s 0.98 7.16 0.94 5.27 +fébrilement fébrilement adv 0.24 4.53 0.24 4.53 +fébriles fébrile adj p 0.98 7.16 0.05 1.89 +fébrilité fébrilité nom f s 0.01 2.36 0.01 2.36 +fécal fécal adj m s 0.27 0.88 0.05 0.27 +fécale fécal adj f s 0.27 0.88 0.06 0.47 +fécales fécal adj f p 0.27 0.88 0.13 0.07 +fécalome fécalome nom m s 0.01 0.00 0.01 0.00 +fécaux fécal adj m p 0.27 0.88 0.03 0.07 +fuchsia fuchsia adj 0.06 0.34 0.06 0.34 +fuchsias fuchsia nom m p 0.04 0.34 0.00 0.20 +fécond fécond adj m s 0.94 3.92 0.04 0.68 +fécondais féconder ver 1.46 3.04 0.00 0.07 ind:imp:1s; +fécondait féconder ver 1.46 3.04 0.00 0.20 ind:imp:3s; +fécondant féconder ver 1.46 3.04 0.10 0.00 par:pre; +fécondante fécondant adj f s 0.00 0.20 0.00 0.07 +fécondateur fécondateur nom m s 0.10 0.00 0.10 0.00 +fécondation fécondation nom f s 0.42 0.74 0.41 0.47 +fécondations fécondation nom f p 0.42 0.74 0.01 0.27 +féconde fécond adj f s 0.94 3.92 0.73 2.09 +fécondent féconder ver 1.46 3.04 0.01 0.14 ind:pre:3p; +féconder féconder ver 1.46 3.04 0.49 0.88 inf; +féconderai féconder ver 1.46 3.04 0.01 0.00 ind:fut:1s; +féconderait féconder ver 1.46 3.04 0.01 0.07 cnd:pre:3s; +fécondes féconder ver 1.46 3.04 0.10 0.00 ind:pre:2s; +fécondez féconder ver 1.46 3.04 0.02 0.00 imp:pre:2p; +fécondité fécondité nom f s 0.44 2.03 0.44 2.03 +féconds fécond adj m p 0.94 3.92 0.10 0.34 +fécondé féconder ver m s 1.46 3.04 0.28 0.68 par:pas; +fécondée féconder ver f s 1.46 3.04 0.28 0.47 par:pas; +fécondées féconder ver f p 1.46 3.04 0.02 0.14 par:pas; +fécondés féconder ver m p 1.46 3.04 0.03 0.07 par:pas; +fécule fécule nom f s 0.17 0.07 0.17 0.07 +féculent féculent nom m s 0.20 0.34 0.02 0.00 +féculents féculent nom m p 0.20 0.34 0.18 0.34 +fédéral fédéral adj m s 13.92 1.76 6.94 0.68 +fédérale fédéral adj f s 13.92 1.76 4.56 0.81 +fédérales fédéral adj f p 13.92 1.76 0.88 0.07 +fédéralisme fédéralisme nom m s 0.14 0.07 0.14 0.07 +fédéraliste fédéraliste adj s 0.03 0.00 0.03 0.00 +fédérateur fédérateur adj m s 0.03 0.00 0.03 0.00 +fédération fédération nom f s 2.56 2.36 2.56 2.23 +fédérations fédération nom f p 2.56 2.36 0.00 0.14 +fédérative fédératif adj f s 0.00 0.07 0.00 0.07 +fédératrice fédérateur nom f s 0.01 0.07 0.01 0.00 +fédéraux fédéral nom m p 4.25 0.14 3.91 0.07 +fédérer fédérer ver 0.09 0.20 0.00 0.07 inf; +fédéré fédéré nom m s 0.15 0.34 0.01 0.07 +fédérée fédéré adj f s 0.03 0.34 0.01 0.07 +fédérées fédéré adj f p 0.03 0.34 0.00 0.07 +fédérés fédéré nom m p 0.15 0.34 0.14 0.27 +fée fée nom f s 15.32 11.35 8.30 6.62 +fuel_oil fuel_oil nom m s 0.00 0.07 0.00 0.07 +fuel fuel nom m s 1.03 0.27 1.03 0.27 +féerie féerie nom f s 0.46 3.72 0.46 3.18 +féeries féerie nom f p 0.46 3.72 0.00 0.54 +féerique féerique adj s 0.46 3.18 0.42 2.36 +féeriquement féeriquement adv 0.00 0.27 0.00 0.27 +féeriques féerique adj p 0.46 3.18 0.04 0.81 +fées fée nom f p 15.32 11.35 7.01 4.73 +fugace fugace adj s 0.85 4.39 0.68 3.18 +fugacement fugacement adv 0.00 0.54 0.00 0.54 +fugaces fugace adj p 0.85 4.39 0.17 1.22 +fugacité fugacité nom f s 0.11 0.07 0.11 0.07 +fugitif fugitif nom m s 4.84 3.78 2.41 1.28 +fugitifs fugitif nom m p 4.84 3.78 1.96 1.69 +fugitive fugitif nom f s 4.84 3.78 0.47 0.74 +fugitivement fugitivement adv 0.00 2.57 0.00 2.57 +fugitives fugitive nom f p 0.12 0.00 0.12 0.00 +fugu fugu nom m s 0.27 0.00 0.27 0.00 +fuguaient fuguer ver 2.81 0.41 0.01 0.00 ind:imp:3p; +fuguait fuguer ver 2.81 0.41 0.00 0.14 ind:imp:3s; +fugue fugue nom f s 4.16 7.16 3.61 5.68 +fuguent fuguer ver 2.81 0.41 0.23 0.00 ind:pre:3p; +fuguer fuguer ver 2.81 0.41 0.42 0.14 inf; +fuguerais fuguer ver 2.81 0.41 0.01 0.00 cnd:pre:1s; +fugues fugue nom f p 4.16 7.16 0.55 1.49 +fugueur fugueur nom m s 0.81 0.81 0.16 0.27 +fugueurs fugueur nom m p 0.81 0.81 0.14 0.07 +fugueuse fugueur nom f s 0.81 0.81 0.51 0.27 +fugueuses fugueuse nom f p 0.02 0.00 0.02 0.00 +fuguèrent fuguer ver 2.81 0.41 0.01 0.00 ind:pas:3p; +fugué fuguer ver m s 2.81 0.41 1.72 0.07 par:pas; +fuguées fugué adj f p 0.00 0.07 0.00 0.07 +fui fuir ver m s 76.82 76.42 10.68 8.24 par:pas; +fuie fuir ver f s 76.82 76.42 0.58 0.47 par:pas;sub:pre:1s;sub:pre:3s; +fuient fuir ver 76.82 76.42 2.81 2.43 ind:pre:3p; +fuies fuir ver 76.82 76.42 0.21 0.00 sub:pre:2s; +fuir fuir ver 76.82 76.42 30.95 35.88 inf; +fuira fuir ver 76.82 76.42 0.20 0.00 ind:fut:3s; +fuirai fuir ver 76.82 76.42 0.31 0.07 ind:fut:1s; +fuiraient fuir ver 76.82 76.42 0.02 0.07 cnd:pre:3p; +fuirais fuir ver 76.82 76.42 0.25 0.14 cnd:pre:1s;cnd:pre:2s; +fuirait fuir ver 76.82 76.42 0.17 0.14 cnd:pre:3s; +fuiras fuir ver 76.82 76.42 0.27 0.07 ind:fut:2s; +fuirent fuir ver 76.82 76.42 0.20 0.20 ind:pas:3p; +fuirez fuir ver 76.82 76.42 0.03 0.00 ind:fut:2p; +fuiriez fuir ver 76.82 76.42 0.02 0.00 cnd:pre:2p; +fuirions fuir ver 76.82 76.42 0.00 0.07 cnd:pre:1p; +fuirons fuir ver 76.82 76.42 0.16 0.00 ind:fut:1p; +fuiront fuir ver 76.82 76.42 0.31 0.14 ind:fut:3p; +fuis fuir ver m p 76.82 76.42 9.63 2.09 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fuisse fuir ver 76.82 76.42 0.01 0.07 sub:imp:1s; +fuit fuir ver 76.82 76.42 6.78 4.86 ind:pre:3s;ind:pas:3s; +fuite fuite nom f s 29.09 34.26 26.02 31.82 +fuiter fuiter ver 0.01 0.07 0.01 0.07 inf; +fuites fuite nom f p 29.09 34.26 3.07 2.43 +fêla fêler ver 1.74 1.89 0.00 0.14 ind:pas:3s; +fêlant fêler ver 1.74 1.89 0.00 0.07 par:pre; +fêle fêle nom f s 0.10 0.00 0.10 0.00 +fêler fêler ver 1.74 1.89 0.14 0.27 inf; +fêles fêler ver 1.74 1.89 0.00 0.07 ind:pre:2s; +fulgores fulgore nom m p 0.00 0.07 0.00 0.07 +fulgura fulgurer ver 0.05 1.15 0.00 0.07 ind:pas:3s; +fulguraient fulgurer ver 0.05 1.15 0.00 0.07 ind:imp:3p; +fulgurait fulgurer ver 0.05 1.15 0.00 0.07 ind:imp:3s; +fulgurance fulgurance nom f s 0.04 0.68 0.03 0.47 +fulgurances fulgurance nom f p 0.04 0.68 0.01 0.20 +fulgurant fulgurant adj m s 0.57 7.84 0.12 2.57 +fulgurante fulgurant adj f s 0.57 7.84 0.40 3.31 +fulgurantes fulgurant adj f p 0.57 7.84 0.01 1.15 +fulgurants fulgurant adj m p 0.57 7.84 0.04 0.81 +fulguration fulguration nom f s 0.01 0.41 0.00 0.20 +fulgurations fulguration nom f p 0.01 0.41 0.01 0.20 +fulgure fulgurer ver 0.05 1.15 0.00 0.07 ind:pre:3s; +fulgurent fulgurer ver 0.05 1.15 0.00 0.14 ind:pre:3p; +fulgurer fulgurer ver 0.05 1.15 0.00 0.07 inf; +fulgurèrent fulgurer ver 0.05 1.15 0.00 0.14 ind:pas:3p; +fulguré fulgurer ver m s 0.05 1.15 0.01 0.20 par:pas; +félibre félibre nom m s 0.00 0.27 0.00 0.07 +félibres félibre nom m p 0.00 0.27 0.00 0.20 +félibrige félibrige nom m s 0.14 0.14 0.14 0.14 +félicita féliciter ver 15.72 24.66 0.01 3.24 ind:pas:3s; +félicitai féliciter ver 15.72 24.66 0.01 0.81 ind:pas:1s; +félicitaient féliciter ver 15.72 24.66 0.02 0.88 ind:imp:3p; +félicitais féliciter ver 15.72 24.66 0.05 1.01 ind:imp:1s; +félicitait féliciter ver 15.72 24.66 0.11 2.77 ind:imp:3s; +félicitant féliciter ver 15.72 24.66 0.06 0.47 par:pre; +félicitation félicitation nom f s 60.08 5.07 0.84 0.00 +félicitations félicitation nom f p 60.08 5.07 59.23 5.07 +félicite féliciter ver 15.72 24.66 5.46 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +félicitent féliciter ver 15.72 24.66 0.17 0.34 ind:pre:3p; +féliciter féliciter ver 15.72 24.66 7.10 6.15 inf;;inf;;inf;; +félicitera féliciter ver 15.72 24.66 0.06 0.07 ind:fut:3s; +féliciterai féliciter ver 15.72 24.66 0.21 0.07 ind:fut:1s; +féliciteraient féliciter ver 15.72 24.66 0.01 0.07 cnd:pre:3p; +féliciterais féliciter ver 15.72 24.66 0.01 0.00 cnd:pre:1s; +féliciterait féliciter ver 15.72 24.66 0.00 0.20 cnd:pre:3s; +féliciteras féliciter ver 15.72 24.66 0.01 0.00 ind:fut:2s; +féliciteriez féliciter ver 15.72 24.66 0.00 0.07 cnd:pre:2p; +félicitez féliciter ver 15.72 24.66 0.38 0.20 imp:pre:2p;ind:pre:2p; +félicitiez féliciter ver 15.72 24.66 0.00 0.07 ind:imp:2p; +félicitions féliciter ver 15.72 24.66 0.00 0.27 ind:imp:1p; +félicitâmes féliciter ver 15.72 24.66 0.00 0.07 ind:pas:1p; +félicitons féliciter ver 15.72 24.66 0.37 0.34 imp:pre:1p;ind:pre:1p; +félicitèrent féliciter ver 15.72 24.66 0.00 0.54 ind:pas:3p; +félicité félicité nom f s 2.12 3.38 2.10 2.97 +félicitée féliciter ver f s 15.72 24.66 0.07 0.41 par:pas; +félicités féliciter ver m p 15.72 24.66 0.25 0.14 par:pas; +félidé félidé nom m s 0.00 0.07 0.00 0.07 +fuligineuse fuligineux adj f s 0.01 1.69 0.00 0.47 +fuligineuses fuligineux adj f p 0.01 1.69 0.00 0.14 +fuligineux fuligineux adj m 0.01 1.69 0.01 1.08 +fuligule fuligule nom m s 0.02 0.00 0.02 0.00 +félin félin nom m s 0.35 1.08 0.26 0.88 +féline félin adj f s 0.34 2.09 0.20 1.22 +félinement félinement adv 0.00 0.07 0.00 0.07 +félines félin adj f p 0.34 2.09 0.03 0.27 +félinité félinité nom f s 0.01 0.00 0.01 0.00 +félins félin nom m p 0.35 1.08 0.09 0.20 +full_contact full_contact nom m s 0.04 0.00 0.04 0.00 +full full nom m s 2.28 0.41 2.27 0.27 +fullerène fullerène nom m s 0.04 0.00 0.04 0.00 +fulls full nom m p 2.28 0.41 0.01 0.14 +fulmicoton fulmicoton nom m s 0.00 0.14 0.00 0.14 +fulmina fulminer ver 0.30 2.77 0.00 0.74 ind:pas:3s; +fulminaient fulminer ver 0.30 2.77 0.00 0.07 ind:imp:3p; +fulminais fulminer ver 0.30 2.77 0.00 0.14 ind:imp:1s; +fulminait fulminer ver 0.30 2.77 0.01 0.74 ind:imp:3s; +fulminant fulminant adj m s 0.43 1.01 0.21 0.34 +fulminante fulminant adj f s 0.43 1.01 0.22 0.34 +fulminantes fulminant adj f p 0.43 1.01 0.00 0.14 +fulminants fulminant adj m p 0.43 1.01 0.00 0.20 +fulminate fulminate nom m s 0.05 0.07 0.05 0.07 +fulmination fulmination nom f s 0.02 0.41 0.02 0.27 +fulminations fulmination nom f p 0.02 0.41 0.00 0.14 +fulmine fulminer ver 0.30 2.77 0.07 0.61 ind:pre:1s;ind:pre:3s; +fulminement fulminement nom m s 0.00 0.07 0.00 0.07 +fulminent fulminer ver 0.30 2.77 0.00 0.14 ind:pre:3p; +fulminer fulminer ver 0.30 2.77 0.10 0.27 inf; +fulminera fulminer ver 0.30 2.77 0.01 0.00 ind:fut:3s; +félon félon nom m s 0.50 0.27 0.33 0.27 +félonie félonie nom f s 0.17 0.34 0.17 0.34 +félonne félon adj f s 0.09 0.20 0.01 0.00 +félons félon nom m p 0.50 0.27 0.17 0.00 +fêlé fêler ver m s 1.74 1.89 0.84 0.68 par:pas; +fêlée fêler ver f s 1.74 1.89 0.50 0.47 par:pas; +fêlées fêler ver f p 1.74 1.89 0.16 0.00 par:pas; +fêlure fêlure nom f s 0.26 1.76 0.23 1.55 +fêlures fêlure nom f p 0.26 1.76 0.03 0.20 +fêlés fêlé nom m p 1.00 0.41 0.36 0.14 +fuma fumer ver 98.49 84.39 0.24 1.55 ind:pas:3s; +fumaga fumaga nom f s 0.00 0.07 0.00 0.07 +fumage fumage nom m s 0.07 0.07 0.07 0.07 +fumai fumer ver 98.49 84.39 0.00 0.20 ind:pas:1s; +fumaient fumer ver 98.49 84.39 0.52 5.20 ind:imp:3p; +fumailler fumailler ver 0.00 0.14 0.00 0.07 inf; +fumaillé fumailler ver m s 0.00 0.14 0.00 0.07 par:pas; +fumais fumer ver 98.49 84.39 1.65 1.28 ind:imp:1s;ind:imp:2s; +fumaison fumaison nom f s 0.00 0.07 0.00 0.07 +fumait fumer ver 98.49 84.39 2.70 15.07 ind:imp:3s; +fumant fumant adj m s 1.78 11.35 1.04 4.12 +fumante fumant adj f s 1.78 11.35 0.37 2.91 +fumantes fumant adj f p 1.78 11.35 0.06 2.36 +fumants fumant adj m p 1.78 11.35 0.31 1.96 +fumasse fumasse adj s 0.12 0.20 0.12 0.20 +fume_cigarette fume_cigarette nom m s 0.27 2.09 0.17 1.82 +fume_cigarette fume_cigarette nom m p 0.27 2.09 0.10 0.27 +fume fumer ver 98.49 84.39 29.46 15.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fument fumer ver 98.49 84.39 2.66 3.72 ind:pre:3p; +fumer fumer ver 98.49 84.39 35.91 20.88 inf; +fumera fumer ver 98.49 84.39 0.08 0.07 ind:fut:3s; +fumerai fumer ver 98.49 84.39 0.34 0.27 ind:fut:1s; +fumeraient fumer ver 98.49 84.39 0.00 0.14 cnd:pre:3p; +fumerais fumer ver 98.49 84.39 0.15 0.20 cnd:pre:1s;cnd:pre:2s; +fumerait fumer ver 98.49 84.39 0.03 0.20 cnd:pre:3s; +fumeras fumer ver 98.49 84.39 0.22 0.00 ind:fut:2s; +fumerez fumer ver 98.49 84.39 0.17 0.00 ind:fut:2p; +fumerie fumerie nom f s 0.48 0.68 0.46 0.27 +fumeries fumerie nom f p 0.48 0.68 0.03 0.41 +fumerolles fumerolle nom f p 0.01 0.81 0.01 0.81 +fumeron fumeron nom m s 0.00 0.14 0.00 0.07 +fumeronne fumeronner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +fumerons fumer ver 98.49 84.39 0.00 0.14 ind:fut:1p; +fumes fumer ver 98.49 84.39 9.68 1.49 ind:pre:2s; +fumet fumet nom m s 0.25 4.26 0.24 3.51 +fumets fumet nom m p 0.25 4.26 0.01 0.74 +fumette fumette nom f s 0.28 0.07 0.28 0.07 +fumeur fumeur nom m s 3.82 3.04 2.09 1.96 +fumeurs fumeur nom m p 3.82 3.04 1.56 0.88 +fumeuse fumeux adj f s 0.36 3.38 0.23 0.95 +fumeuses fumeux adj f p 0.36 3.38 0.08 0.95 +fumeux fumeux adj m 0.36 3.38 0.05 1.49 +fumez fumer ver 98.49 84.39 5.75 1.28 imp:pre:2p;ind:pre:2p; +fumier fumier nom m s 18.74 16.69 15.66 13.11 +fumiers fumier nom m p 18.74 16.69 3.08 3.45 +fumiez fumer ver 98.49 84.39 0.34 0.14 ind:imp:2p; +fumigateur fumigateur nom m s 0.01 0.00 0.01 0.00 +fumigation fumigation nom f s 0.34 0.54 0.25 0.14 +fumigations fumigation nom f p 0.34 0.54 0.10 0.41 +fumiger fumiger ver 0.13 0.00 0.09 0.00 inf; +fumigène fumigène adj s 0.96 0.47 0.33 0.27 +fumigènes fumigène adj p 0.96 0.47 0.63 0.20 +fumigé fumiger ver m s 0.13 0.00 0.04 0.00 par:pas; +féminin féminin adj m s 16.88 32.91 7.51 11.28 +féminine féminin adj f s 16.88 32.91 6.50 13.38 +féminines féminin adj f p 16.88 32.91 0.98 3.92 +féminins féminin adj m p 16.88 32.91 1.89 4.32 +féminisaient féminiser ver 0.00 0.20 0.00 0.07 ind:imp:3p; +féminisation féminisation nom f s 0.01 0.00 0.01 0.00 +féminiser féminiser ver 0.00 0.20 0.00 0.07 inf; +féminisme féminisme nom m s 0.46 0.41 0.46 0.41 +féministe féministe adj s 1.12 2.03 0.79 1.62 +féministes féministe nom p 1.42 1.15 0.70 0.81 +féminisé féminiser ver m s 0.00 0.20 0.00 0.07 par:pas; +féminité féminité nom f s 1.87 4.80 1.87 4.73 +féminitude féminitude nom f s 0.00 0.07 0.00 0.07 +féminités féminité nom f p 1.87 4.80 0.00 0.07 +fumions fumer ver 98.49 84.39 0.10 0.27 ind:imp:1p; +fumiste fumiste nom s 0.63 0.20 0.59 0.07 +fumisterie fumisterie nom f s 0.30 0.34 0.29 0.27 +fumisteries fumisterie nom f p 0.30 0.34 0.01 0.07 +fumistes fumiste nom p 0.63 0.20 0.03 0.14 +fumière fumier nom f s 18.74 16.69 0.00 0.14 +fumoir fumoir nom m s 0.31 1.49 0.31 1.49 +fumâmes fumer ver 98.49 84.39 0.00 0.14 ind:pas:1p; +fumons fumer ver 98.49 84.39 0.68 0.81 imp:pre:1p;ind:pre:1p; +fémoral fémoral adj m s 0.94 0.34 0.11 0.00 +fémorale fémoral adj f s 0.94 0.34 0.59 0.20 +fémorales fémoral adj f p 0.94 0.34 0.01 0.14 +fémoraux fémoral adj m p 0.94 0.34 0.23 0.00 +fumât fumer ver 98.49 84.39 0.00 0.07 sub:imp:3s; +fumèrent fumer ver 98.49 84.39 0.01 1.01 ind:pas:3p; +fumé fumer ver m s 98.49 84.39 6.75 4.19 par:pas; +fumée fumée nom f s 20.25 67.36 19.91 55.88 +fumées fumée nom f p 20.25 67.36 0.34 11.49 +fémur fémur nom m s 1.48 0.81 1.42 0.61 +fumure fumure nom f s 0.00 0.07 0.00 0.07 +fémurs fémur nom m p 1.48 0.81 0.06 0.20 +fumés fumer ver m p 98.49 84.39 0.23 0.27 par:pas; +fun fun nom m s 2.85 0.07 2.85 0.07 +funambule funambule nom s 0.80 1.62 0.52 1.35 +funambules funambule nom p 0.80 1.62 0.28 0.27 +funambulesque funambulesque adj s 0.00 0.07 0.00 0.07 +fénelonienne fénelonien adj f s 0.00 0.07 0.00 0.07 +funeste funeste adj s 4.97 4.86 4.22 3.11 +funestement funestement adv 0.00 0.07 0.00 0.07 +funestes funeste adj p 4.97 4.86 0.75 1.76 +fung fung adj m s 0.13 0.00 0.13 0.00 +funiculaire funiculaire nom m s 0.20 1.01 0.20 0.88 +funiculaires funiculaire nom m p 0.20 1.01 0.00 0.14 +funk funk adj 1.06 0.14 1.06 0.14 +funky funky adj 1.51 0.07 1.51 0.07 +funèbre funèbre adj s 8.07 16.35 4.21 11.69 +funèbres funèbre adj p 8.07 16.35 3.86 4.66 +funérailles funérailles nom f p 9.75 4.53 9.75 4.53 +funéraire funéraire adj s 1.68 4.59 1.39 2.84 +funéraires funéraire adj p 1.68 4.59 0.29 1.76 +funérarium funérarium nom m s 0.55 0.07 0.54 0.07 +funérariums funérarium nom m p 0.55 0.07 0.01 0.00 +féodal féodal adj m s 0.38 2.70 0.13 1.22 +féodale féodal adj f s 0.38 2.70 0.10 0.61 +féodales féodal adj f p 0.38 2.70 0.11 0.20 +féodalisme féodalisme nom m s 0.02 0.14 0.02 0.14 +féodalité féodalité nom f s 0.02 0.27 0.02 0.27 +féodaux féodal adj m p 0.38 2.70 0.04 0.68 +fur_et_à_mesure fur_et_à_mesure nom m s 1.62 17.84 1.62 17.84 +féra féra nom f s 0.00 0.14 0.00 0.07 +féras féra nom f p 0.00 0.14 0.00 0.07 +furax furax adj m 4.51 0.81 4.51 0.81 +furent être aux 8074.24 6501.82 8.96 40.74 ind:pas:3p; +furet furet nom m s 0.87 0.20 0.69 0.14 +fureta fureter ver 0.55 2.64 0.00 0.07 ind:pas:3s; +furetage furetage nom m s 0.02 0.07 0.02 0.07 +furetai fureter ver 0.55 2.64 0.00 0.07 ind:pas:1s; +furetaient fureter ver 0.55 2.64 0.00 0.07 ind:imp:3p; +furetait fureter ver 0.55 2.64 0.00 0.20 ind:imp:3s; +furetant fureter ver 0.55 2.64 0.06 0.54 par:pre; +fureter fureter ver 0.55 2.64 0.40 1.08 inf; +fureteur fureteur adj m s 0.01 1.62 0.01 0.54 +fureteurs fureteur adj m p 0.01 1.62 0.00 0.81 +fureteuse fureteur adj f s 0.01 1.62 0.00 0.07 +fureteuses fureteur adj f p 0.01 1.62 0.00 0.20 +furetez fureter ver 0.55 2.64 0.00 0.07 ind:pre:2p; +furets furet nom m p 0.87 0.20 0.19 0.07 +furette furette nom f s 0.00 0.14 0.00 0.14 +fureté fureter ver m s 0.55 2.64 0.05 0.20 par:pas; +fureur fureur nom f s 7.87 33.92 7.03 30.61 +fureurs fureur nom f p 7.87 33.92 0.84 3.31 +féria féria nom f s 0.80 0.34 0.80 0.20 +furia furia nom f s 0.02 0.27 0.02 0.27 +férias féria nom f p 0.80 0.34 0.00 0.14 +furibard furibard adj m s 0.19 1.42 0.17 1.01 +furibarde furibard adj f s 0.19 1.42 0.02 0.34 +furibardes furibard adj f p 0.19 1.42 0.00 0.07 +furibond furibond adj m s 0.37 2.64 0.25 1.35 +furibonde furibond adj f s 0.37 2.64 0.10 0.74 +furibondes furibond adj f p 0.37 2.64 0.00 0.20 +furibonds furibond adj m p 0.37 2.64 0.02 0.34 +furie furie nom f s 2.58 5.74 2.05 5.54 +furies furie nom f p 2.58 5.74 0.53 0.20 +furieuse furieux adj f s 25.31 44.59 6.95 12.30 +furieusement furieusement adv 0.87 7.30 0.87 7.30 +furieuses furieux adj f p 25.31 44.59 0.30 2.77 +furieux furieux adj m 25.31 44.59 18.06 29.53 +furioso furioso adj m s 0.46 0.14 0.46 0.14 +férir férir ver 0.04 0.88 0.04 0.88 inf; +férié férié adj m s 0.97 1.82 0.52 0.81 +fériés férié adj m p 0.97 1.82 0.46 1.01 +féroce féroce adj s 6.33 16.22 4.39 12.30 +férocement férocement adv 0.62 2.97 0.62 2.97 +féroces féroce adj p 6.33 16.22 1.94 3.92 +férocité férocité nom f s 1.20 3.85 1.20 3.72 +férocités férocité nom f p 1.20 3.85 0.00 0.14 +furoncle furoncle nom m s 1.27 0.88 0.61 0.34 +furoncles furoncle nom m p 1.27 0.88 0.66 0.54 +furonculeux furonculeux adj m 0.00 0.07 0.00 0.07 +furonculose furonculose nom f s 0.00 0.14 0.00 0.07 +furonculoses furonculose nom f p 0.00 0.14 0.00 0.07 +furète fureter ver 0.55 2.64 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +furètent fureter ver 0.55 2.64 0.01 0.07 ind:pre:3p; +furèterais fureter ver 0.55 2.64 0.01 0.00 cnd:pre:1s; +furtif furtif adj m s 2.12 14.59 1.41 5.54 +furtifs furtif adj m p 2.12 14.59 0.26 4.46 +furtive furtif adj f s 2.12 14.59 0.42 3.04 +furtivement furtivement adv 1.13 5.07 1.13 5.07 +furtives furtif adj f p 2.12 14.59 0.04 1.55 +furtivité furtivité nom f s 0.07 0.00 0.07 0.00 +féru féru adj m s 0.30 1.96 0.23 0.81 +férue féru adj f s 0.30 1.96 0.03 0.27 +férues féru adj f p 0.30 1.96 0.00 0.07 +férule férule nom f s 0.07 1.01 0.07 1.01 +férus féru adj m p 0.30 1.96 0.05 0.81 +fus être aux 8074.24 6501.82 3.58 29.53 ind:pas:2s; +fusa fuser ver 1.24 10.14 0.00 0.41 ind:pas:3s; +fusaient fuser ver 1.24 10.14 0.14 2.03 ind:imp:3p; +fusain fusain nom m s 0.33 3.72 0.30 1.76 +fusains fusain nom m p 0.33 3.72 0.02 1.96 +fusait fuser ver 1.24 10.14 0.03 1.28 ind:imp:3s; +fusant fuser ver 1.24 10.14 0.00 0.95 par:pre; +fusante fusant adj f s 0.00 0.74 0.00 0.20 +fusants fusant nom m p 0.00 1.55 0.00 1.28 +fuse fuser ver 1.24 10.14 0.33 1.35 ind:pre:1s;ind:pre:3s; +fuseau fuseau nom m s 0.61 2.43 0.39 0.88 +fuseaux fuseau nom m p 0.61 2.43 0.22 1.55 +fuselage fuselage nom m s 0.44 0.54 0.44 0.47 +fuselages fuselage nom m p 0.44 0.54 0.00 0.07 +fuselé fuseler ver m s 0.01 0.20 0.01 0.00 par:pas; +fuselée fuselé adj f s 0.14 0.81 0.00 0.07 +fuselées fuselé adj f p 0.14 0.81 0.14 0.14 +fuselés fuselé adj m p 0.14 0.81 0.00 0.41 +fusent fuser ver 1.24 10.14 0.21 0.88 ind:pre:3p; +fuser fuser ver 1.24 10.14 0.34 1.22 inf; +fusible fusible nom m s 3.23 0.54 1.59 0.14 +fusibles fusible nom m p 3.23 0.54 1.64 0.41 +fusiforme fusiforme adj m s 0.00 0.20 0.00 0.20 +fusil_mitrailleur fusil_mitrailleur nom m s 0.37 0.41 0.37 0.34 +fusil fusil nom m s 48.61 55.68 36.52 39.32 +fusilier fusilier nom m s 0.63 0.95 0.23 0.00 +fusilier_marin fusilier_marin nom m p 0.04 1.08 0.04 1.08 +fusiliers fusilier nom m p 0.63 0.95 0.40 0.95 +fusilla fusiller ver 6.63 18.24 0.00 0.20 ind:pas:3s; +fusillade fusillade nom f s 9.63 9.39 8.35 8.18 +fusillades fusillade nom f p 9.63 9.39 1.27 1.22 +fusillaient fusiller ver 6.63 18.24 0.00 0.88 ind:imp:3p; +fusillait fusiller ver 6.63 18.24 0.01 0.88 ind:imp:3s; +fusillant fusiller ver 6.63 18.24 0.01 0.20 par:pre; +fusille fusiller ver 6.63 18.24 0.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fusillent fusiller ver 6.63 18.24 0.26 0.54 ind:pre:3p; +fusiller fusiller ver 6.63 18.24 2.19 6.49 inf; +fusillera fusiller ver 6.63 18.24 0.29 0.14 ind:fut:3s; +fusilleraient fusiller ver 6.63 18.24 0.01 0.00 cnd:pre:3p; +fusillerait fusiller ver 6.63 18.24 0.02 0.20 cnd:pre:3s; +fusillerons fusiller ver 6.63 18.24 0.01 0.00 ind:fut:1p; +fusilleront fusiller ver 6.63 18.24 0.04 0.07 ind:fut:3p; +fusilleurs fusilleur nom m p 0.00 0.14 0.00 0.14 +fusillez fusiller ver 6.63 18.24 0.19 0.07 imp:pre:2p;ind:pre:2p; +fusillions fusiller ver 6.63 18.24 0.01 0.07 ind:imp:1p; +fusillons fusiller ver 6.63 18.24 0.14 0.00 ind:pre:1p; +fusillé fusiller ver m s 6.63 18.24 1.96 5.07 par:pas; +fusillée fusillé adj f s 1.29 2.50 0.30 0.07 +fusillées fusiller ver f p 6.63 18.24 0.20 0.07 par:pas; +fusillés fusiller ver m p 6.63 18.24 0.66 2.36 par:pas; +fusil_mitrailleur fusil_mitrailleur nom m p 0.37 0.41 0.00 0.07 +fusils fusil nom m p 48.61 55.68 12.10 16.35 +fusion fusion nom f s 6.64 5.95 6.29 5.74 +fusionnaient fusionner ver 2.36 0.34 0.01 0.07 ind:imp:3p; +fusionnant fusionner ver 2.36 0.34 0.15 0.00 par:pre; +fusionne fusionner ver 2.36 0.34 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fusionnel fusionnel adj m s 0.01 0.20 0.00 0.14 +fusionnelle fusionnel adj f s 0.01 0.20 0.01 0.07 +fusionnement fusionnement nom m s 0.01 0.00 0.01 0.00 +fusionnent fusionner ver 2.36 0.34 0.40 0.14 ind:pre:3p; +fusionner fusionner ver 2.36 0.34 1.01 0.00 inf; +fusionneraient fusionner ver 2.36 0.34 0.01 0.00 cnd:pre:3p; +fusionnerait fusionner ver 2.36 0.34 0.01 0.00 cnd:pre:3s; +fusionneront fusionner ver 2.36 0.34 0.04 0.00 ind:fut:3p; +fusionnons fusionner ver 2.36 0.34 0.29 0.00 imp:pre:1p; +fusionné fusionner ver m s 2.36 0.34 0.28 0.07 par:pas; +fusionnés fusionner ver m p 2.36 0.34 0.03 0.00 par:pas; +fusions fusion nom f p 6.64 5.95 0.36 0.20 +fusse être aux 8074.24 6501.82 0.02 1.69 sub:imp:1s; +fussent être aux 8074.24 6501.82 0.30 15.88 sub:imp:3p; +fusses être aux 8074.24 6501.82 0.01 0.07 sub:imp:2s; +fussiez être aux 8074.24 6501.82 0.00 0.07 sub:imp:2p; +fussions être aux 8074.24 6501.82 0.00 0.95 sub:imp:1p; +fustanelle fustanelle nom f s 0.00 0.07 0.00 0.07 +fusèrent fuser ver 1.24 10.14 0.00 1.35 ind:pas:3p; +fustigation fustigation nom f s 0.01 0.14 0.01 0.00 +fustigations fustigation nom f p 0.01 0.14 0.00 0.14 +fustige fustiger ver 0.51 1.22 0.03 0.14 imp:pre:2s;ind:pre:3s; +fustigea fustiger ver 0.51 1.22 0.00 0.14 ind:pas:3s; +fustigeaient fustiger ver 0.51 1.22 0.00 0.07 ind:imp:3p; +fustigeais fustiger ver 0.51 1.22 0.01 0.07 ind:imp:1s; +fustigeait fustiger ver 0.51 1.22 0.00 0.07 ind:imp:3s; +fustigeant fustiger ver 0.51 1.22 0.01 0.07 par:pre; +fustiger fustiger ver 0.51 1.22 0.05 0.41 inf; +fustigez fustiger ver 0.51 1.22 0.10 0.00 imp:pre:2p; +fustigé fustiger ver m s 0.51 1.22 0.14 0.07 par:pas; +fustigée fustiger ver f s 0.51 1.22 0.14 0.14 par:pas; +fustigés fustiger ver m p 0.51 1.22 0.03 0.07 par:pas; +fusé fuser ver m s 1.24 10.14 0.03 0.61 par:pas; +fusée fusée nom f s 10.09 9.26 6.00 4.59 +fusées fusée nom f p 10.09 9.26 4.08 4.66 +fut être aux 8074.24 6501.82 32.92 180.41 ind:pas:3s; +fêta fêter ver 37.10 16.01 0.34 0.34 ind:pas:3s; +futaie futaie nom f s 0.02 5.27 0.00 2.50 +fêtaient fêter ver 37.10 16.01 0.12 0.47 ind:imp:3p; +futaies futaie nom f p 0.02 5.27 0.02 2.77 +futaille futaille nom f s 0.00 1.69 0.00 0.88 +futailles futaille nom f p 0.00 1.69 0.00 0.81 +futaine futaine nom f s 0.10 0.00 0.10 0.00 +fêtait fêter ver 37.10 16.01 0.93 1.08 ind:imp:3s; +futal futal nom m s 0.72 0.54 0.68 0.47 +futals futal nom m p 0.72 0.54 0.04 0.07 +fêtant fêter ver 37.10 16.01 0.05 0.20 par:pre; +fêtard fêtard nom m s 0.77 1.22 0.34 0.20 +fêtards fêtard nom m p 0.77 1.22 0.42 1.01 +fête_dieu fête_dieu nom f s 0.14 0.54 0.14 0.54 +fête fête nom f s 155.97 94.05 138.03 70.41 +fêtent fêter ver 37.10 16.01 0.95 0.41 ind:pre:3p; +fêter fêter ver 37.10 16.01 20.03 7.70 inf; +fêtera fêter ver 37.10 16.01 1.06 0.20 ind:fut:3s; +fêterait fêter ver 37.10 16.01 0.05 0.20 cnd:pre:3s; +fêterons fêter ver 37.10 16.01 0.60 0.41 ind:fut:1p; +fêtes fête nom f p 155.97 94.05 17.94 23.65 +fêtez fêter ver 37.10 16.01 1.02 0.14 imp:pre:2p;ind:pre:2p; +fétiche fétiche nom m s 1.48 5.27 1.03 4.39 +fétiches fétiche nom m p 1.48 5.27 0.45 0.88 +féticheur féticheur nom m s 0.01 0.47 0.00 0.20 +féticheurs féticheur nom m p 0.01 0.47 0.01 0.27 +fétichisations fétichisation nom f p 0.00 0.07 0.00 0.07 +fétichisme fétichisme nom m s 0.64 0.54 0.63 0.54 +fétichismes fétichisme nom m p 0.64 0.54 0.01 0.00 +fétichiste fétichiste nom s 0.43 0.27 0.40 0.14 +fétichistes fétichiste nom p 0.43 0.27 0.04 0.14 +fétide fétide adj s 1.18 2.70 1.10 2.23 +fétides fétide adj p 1.18 2.70 0.08 0.47 +fétidité fétidité nom f s 0.00 0.34 0.00 0.34 +futile futile adj s 2.94 8.31 2.23 4.86 +futilement futilement adv 0.00 0.14 0.00 0.14 +futiles futile adj p 2.94 8.31 0.71 3.45 +futilité futilité nom f s 0.65 3.51 0.22 2.23 +futilités futilité nom f p 0.65 3.51 0.43 1.28 +fêtions fêter ver 37.10 16.01 0.22 0.14 ind:imp:1p; +fêtâmes fêter ver 37.10 16.01 0.00 0.07 ind:pas:1p; +futon futon nom m s 0.32 0.00 0.28 0.00 +fêtons fêter ver 37.10 16.01 2.34 0.34 imp:pre:1p;ind:pre:1p; +futons futon nom m p 0.32 0.00 0.03 0.00 +fêtèrent fêter ver 37.10 16.01 0.00 0.20 ind:pas:3p; +fêté fêter ver m s 37.10 16.01 1.67 1.82 par:pas; +fétu fétu nom m s 0.20 1.69 0.17 0.81 +futé futé adj m s 9.23 1.89 5.96 1.28 +fêtée fêter ver f s 37.10 16.01 0.22 0.27 par:pas; +futée futé adj f s 9.23 1.89 1.74 0.27 +futées futé adj f p 9.23 1.89 0.55 0.14 +fétuque fétuque nom f s 0.01 0.07 0.01 0.07 +futur futur nom m s 26.33 11.89 25.73 10.61 +future futur adj f s 23.20 36.35 7.50 9.86 +futures futur adj f p 23.20 36.35 2.51 5.81 +futurisme futurisme nom m s 0.00 0.07 0.00 0.07 +futuriste futuriste adj s 0.59 0.47 0.36 0.41 +futuristes futuriste adj p 0.59 0.47 0.23 0.07 +futurologue futurologue nom s 0.10 0.00 0.10 0.00 +futurs futur adj m p 23.20 36.35 3.79 6.76 +fêtés fêter ver m p 37.10 16.01 0.13 0.14 par:pas; +fétus fétu nom m p 0.20 1.69 0.03 0.88 +futés futé adj m p 9.23 1.89 0.97 0.20 +fuégien fuégien nom m s 0.00 0.07 0.00 0.07 +féveroles féverole nom f p 0.00 0.14 0.00 0.14 +février février nom m 8.03 22.50 8.03 22.50 +fuyaient fuir ver 76.82 76.42 0.44 4.73 ind:imp:3p; +fuyais fuir ver 76.82 76.42 1.52 1.22 ind:imp:1s;ind:imp:2s; +fuyait fuir ver 76.82 76.42 1.27 8.65 ind:imp:3s; +fuyant fuir ver 76.82 76.42 1.54 5.20 par:pre; +fuyante fuyant adj f s 1.09 8.31 0.19 2.91 +fuyantes fuyant adj f p 1.09 8.31 0.11 0.47 +fuyants fuyant adj m p 1.09 8.31 0.11 1.01 +fuyard fuyard nom m s 1.15 4.73 0.40 1.15 +fuyarde fuyard adj f s 0.04 0.47 0.01 0.14 +fuyards fuyard nom m p 1.15 4.73 0.75 3.45 +fuyez fuir ver 76.82 76.42 4.78 0.47 imp:pre:2p;ind:pre:2p; +fuyiez fuir ver 76.82 76.42 0.26 0.00 ind:imp:2p;sub:pre:2p; +fuyions fuir ver 76.82 76.42 0.18 0.47 ind:imp:1p; +fuyons fuir ver 76.82 76.42 3.23 0.74 imp:pre:1p;ind:pre:1p; +fy fy nom m s 0.01 0.00 0.01 0.00 +g g nom m 10.92 4.66 10.92 4.66 +gît gésir ver 4.77 15.68 2.15 2.64 ind:pre:3s; +gîta gîter ver 0.03 1.28 0.01 0.07 ind:pas:3s; +gîtait gîter ver 0.03 1.28 0.00 0.61 ind:imp:3s; +gîte gîte nom s 1.20 6.49 1.05 5.81 +gîtent gîter ver 0.03 1.28 0.00 0.14 ind:pre:3p; +gîter gîter ver 0.03 1.28 0.00 0.34 inf; +gîtera gîter ver 0.03 1.28 0.02 0.00 ind:fut:3s; +gîtes gîte nom m p 1.20 6.49 0.14 0.68 +gîté gîter ver m s 0.03 1.28 0.00 0.14 par:pas; +gaîment gaîment adv 0.03 0.47 0.03 0.47 +gaîté gaîté nom f s 0.55 6.35 0.55 6.28 +gaîtés gaîté nom f p 0.55 6.35 0.00 0.07 +gaba gaba nom m s 0.01 0.00 0.01 0.00 +gabardine gabardine nom f s 0.25 3.45 0.23 3.11 +gabardines gabardine nom f p 0.25 3.45 0.03 0.34 +gabare gabare nom f s 0.10 0.20 0.10 0.20 +gabariers gabarier nom m p 0.00 0.07 0.00 0.07 +gabarit gabarit nom m s 0.33 1.82 0.30 1.62 +gabarits gabarit nom m p 0.33 1.82 0.03 0.20 +gabarres gabarre nom f p 0.00 0.07 0.00 0.07 +gabbro gabbro nom m s 0.01 0.00 0.01 0.00 +gabe gaber ver 1.01 0.00 1.01 0.00 imp:pre:2s;ind:pre:1s; +gabegie gabegie nom f s 0.04 0.34 0.04 0.34 +gabelle gabelle nom f s 0.02 0.07 0.02 0.07 +gabelou gabelou nom m s 0.00 0.07 0.00 0.07 +gabier gabier nom m s 0.13 0.34 0.09 0.20 +gabiers gabier nom m p 0.13 0.34 0.04 0.14 +gabion gabion nom m s 0.00 0.20 0.00 0.07 +gabions gabion nom m p 0.00 0.20 0.00 0.14 +gable gable nom m s 0.14 0.27 0.01 0.14 +gables gable nom m p 0.14 0.27 0.14 0.14 +gabonais gabonais nom m 0.00 0.34 0.00 0.34 +gabonaise gabonais adj f s 0.00 0.27 0.00 0.07 +gade gade nom m s 0.00 0.07 0.00 0.07 +gadget gadget nom m s 2.80 1.62 1.31 0.41 +gadgets gadget nom m p 2.80 1.62 1.50 1.22 +gadin gadin nom m s 0.12 0.68 0.12 0.54 +gadins gadin nom m p 0.12 0.68 0.00 0.14 +gadjo gadjo nom m s 0.54 0.00 0.54 0.00 +gadolinium gadolinium nom m s 0.01 0.00 0.01 0.00 +gadoue gadoue nom f s 0.37 4.93 0.37 2.36 +gadoues gadoue nom f p 0.37 4.93 0.00 2.57 +gadouille gadouille nom f s 0.00 0.47 0.00 0.47 +gaffa gaffer ver 5.20 5.88 0.00 0.07 ind:pas:3s; +gaffaient gaffer ver 5.20 5.88 0.00 0.07 ind:imp:3p; +gaffais gaffer ver 5.20 5.88 0.00 0.07 ind:imp:1s; +gaffait gaffer ver 5.20 5.88 0.00 0.27 ind:imp:3s; +gaffant gaffer ver 5.20 5.88 0.00 0.20 par:pre; +gaffe gaffe nom f s 34.68 20.47 33.92 17.57 +gaffent gaffer ver 5.20 5.88 0.01 0.27 ind:pre:3p; +gaffer gaffer ver 5.20 5.88 0.07 1.55 inf; +gafferai gaffer ver 5.20 5.88 0.00 0.07 ind:fut:1s; +gaffes gaffe nom f p 34.68 20.47 0.76 2.91 +gaffeur gaffeur nom m s 0.10 0.14 0.08 0.07 +gaffeurs gaffeur nom m p 0.10 0.14 0.01 0.07 +gaffeuse gaffeur nom f s 0.10 0.14 0.01 0.00 +gaffeuses gaffeur adj f p 0.04 0.27 0.00 0.07 +gaffez gaffer ver 5.20 5.88 0.11 0.00 imp:pre:2p; +gaffé gaffer ver m s 5.20 5.88 0.35 0.61 par:pas; +gaffée gaffer ver f s 5.20 5.88 0.00 0.14 par:pas; +gaffés gaffer ver m p 5.20 5.88 0.00 0.07 par:pas; +gag gag nom m s 3.03 1.28 2.41 1.08 +gaga gaga adj 0.61 1.01 0.58 0.88 +gagas gaga adj p 0.61 1.01 0.02 0.14 +gage gage nom m s 15.31 6.76 9.24 4.05 +gageaient gager ver 1.87 1.42 0.00 0.14 ind:imp:3p; +gageons gager ver 1.87 1.42 0.17 0.41 imp:pre:1p; +gager gager ver 1.87 1.42 0.34 0.07 inf; +gagerai gager ver 1.87 1.42 0.01 0.00 ind:fut:1s; +gagerais gager ver 1.87 1.42 0.15 0.20 cnd:pre:1s; +gages gage nom m p 15.31 6.76 6.06 2.70 +gageure gageure nom f s 0.49 1.28 0.35 1.28 +gageures gageure nom f p 0.49 1.28 0.14 0.00 +gagez gager ver 1.87 1.42 0.02 0.00 imp:pre:2p; +gagna gagner ver 294.44 180.88 0.78 12.77 ind:pas:3s; +gagnage gagnage nom m s 0.00 0.20 0.00 0.14 +gagnages gagnage nom m p 0.00 0.20 0.00 0.07 +gagnai gagner ver 294.44 180.88 0.00 2.23 ind:pas:1s; +gagnaient gagner ver 294.44 180.88 0.74 3.99 ind:imp:3p; +gagnais gagner ver 294.44 180.88 2.11 1.76 ind:imp:1s;ind:imp:2s; +gagnait gagner ver 294.44 180.88 2.96 14.12 ind:imp:3s; +gagnant gagnant nom m s 12.56 1.76 8.45 1.35 +gagnante gagnant nom f s 12.56 1.76 1.34 0.14 +gagnantes gagnant nom f p 12.56 1.76 0.10 0.00 +gagnants gagnant nom m p 12.56 1.76 2.68 0.27 +gagne_pain gagne_pain nom m 2.01 1.82 2.01 1.82 +gagne_petit gagne_petit nom m 0.16 0.68 0.16 0.68 +gagne gagner ver 294.44 180.88 53.39 19.66 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +gagnent gagner ver 294.44 180.88 7.02 4.05 ind:pre:3p; +gagner gagner ver 294.44 180.88 92.72 64.59 ind:pre:2p;inf; +gagnera gagner ver 294.44 180.88 5.08 1.49 ind:fut:3s; +gagnerai gagner ver 294.44 180.88 2.14 0.41 ind:fut:1s; +gagneraient gagner ver 294.44 180.88 0.34 0.34 cnd:pre:3p; +gagnerais gagner ver 294.44 180.88 1.52 0.61 cnd:pre:1s;cnd:pre:2s; +gagnerait gagner ver 294.44 180.88 1.95 1.69 cnd:pre:3s; +gagneras gagner ver 294.44 180.88 2.56 0.74 ind:fut:2s; +gagnerez gagner ver 294.44 180.88 2.09 0.68 ind:fut:2p; +gagneriez gagner ver 294.44 180.88 0.38 0.00 cnd:pre:2p; +gagnerions gagner ver 294.44 180.88 0.28 0.00 cnd:pre:1p; +gagnerons gagner ver 294.44 180.88 1.37 0.27 ind:fut:1p; +gagneront gagner ver 294.44 180.88 0.82 0.61 ind:fut:3p; +gagnes gagner ver 294.44 180.88 11.04 1.76 ind:pre:2s;sub:pre:2s; +gagneur gagneur nom m s 0.76 0.74 0.04 0.00 +gagneurs gagneur nom m p 0.76 0.74 0.05 0.07 +gagneuse gagneur nom f s 0.76 0.74 0.67 0.54 +gagneuses gagneuse nom f p 0.02 0.00 0.02 0.00 +gagnez gagner ver 294.44 180.88 7.04 0.41 imp:pre:2p;ind:pre:2p; +gagniez gagner ver 294.44 180.88 0.38 0.07 ind:imp:2p; +gagnions gagner ver 294.44 180.88 0.12 0.41 ind:imp:1p; +gagnâmes gagner ver 294.44 180.88 0.00 0.41 ind:pas:1p; +gagnons gagner ver 294.44 180.88 1.74 0.88 imp:pre:1p;ind:pre:1p; +gagnât gagner ver 294.44 180.88 0.00 0.34 sub:imp:3s; +gagnèrent gagner ver 294.44 180.88 0.09 3.11 ind:pas:3p; +gagné gagner ver m s 294.44 180.88 89.92 33.51 par:pas; +gagnée gagner ver f s 294.44 180.88 2.85 4.46 par:pas; +gagnées gagner ver f p 294.44 180.88 0.29 0.88 par:pas; +gagnés gagner ver m p 294.44 180.88 1.02 1.76 par:pas; +gags gag nom m p 3.03 1.28 0.61 0.20 +gagé gager ver m s 1.87 1.42 0.16 0.00 par:pas; +gagée gager ver f s 1.87 1.42 0.02 0.00 par:pas; +gai gai adj m s 20.00 41.76 10.74 22.64 +gaie gai adj f s 20.00 41.76 6.58 12.70 +gaiement gaiement adv 2.58 16.22 2.58 16.22 +gaies gai adj f p 20.00 41.76 0.88 2.30 +gaieté gaieté nom f s 2.81 27.36 2.81 27.09 +gaietés gaieté nom f p 2.81 27.36 0.00 0.27 +gail gail nom f s 0.00 0.61 0.00 0.61 +gaillard gaillard nom m s 3.40 10.34 2.47 7.30 +gaillarde gaillard adj f s 0.95 3.18 0.25 0.68 +gaillardement gaillardement adv 0.10 0.95 0.10 0.95 +gaillardes gaillard adj f p 0.95 3.18 0.14 0.47 +gaillardise gaillardise nom f s 0.00 0.14 0.00 0.14 +gaillards gaillard nom m p 3.40 10.34 0.90 2.64 +gaillet gaillet nom m s 0.01 0.07 0.01 0.07 +gaillette gaillette nom f s 0.00 0.20 0.00 0.14 +gaillettes gaillette nom f p 0.00 0.20 0.00 0.07 +gain gain nom m s 5.60 5.88 2.58 4.32 +gainaient gainer ver 0.08 3.11 0.00 0.07 ind:imp:3p; +gainait gainer ver 0.08 3.11 0.00 0.14 ind:imp:3s; +gaine_culotte gaine_culotte nom f s 0.01 0.07 0.01 0.07 +gaine gaine nom f s 2.15 3.85 1.16 3.11 +gainent gainer ver 0.08 3.11 0.00 0.07 ind:pre:3p; +gainer gainer ver 0.08 3.11 0.05 0.00 inf; +gaines gaine nom f p 2.15 3.85 0.99 0.74 +gainiers gainier nom m p 0.00 0.07 0.00 0.07 +gains gain nom m p 5.60 5.88 3.02 1.55 +gainé gainer ver m s 0.08 3.11 0.00 0.74 par:pas; +gainée gainer ver f s 0.08 3.11 0.01 0.68 par:pas; +gainées gainer ver f p 0.08 3.11 0.01 0.95 par:pas; +gainés gainer ver m p 0.08 3.11 0.01 0.47 par:pas; +gais gai adj m p 20.00 41.76 1.81 4.12 +gal gal adv 1.18 0.00 1.18 0.00 +gala gala nom m s 3.90 3.65 3.31 2.97 +galactique galactique adj s 1.13 0.14 0.94 0.07 +galactiques galactique adj p 1.13 0.14 0.19 0.07 +galactophore galactophore adj s 0.01 0.00 0.01 0.00 +galago galago nom m s 0.02 0.00 0.02 0.00 +galalithe galalithe nom f s 0.00 0.20 0.00 0.20 +galamment galamment adv 0.07 1.22 0.07 1.22 +galant galant adj m s 5.39 5.81 4.66 2.77 +galante galant adj f s 5.39 5.81 0.11 1.28 +galanterie galanterie nom f s 1.14 2.50 1.00 1.82 +galanteries galanterie nom f p 1.14 2.50 0.13 0.68 +galantes galant adj f p 5.39 5.81 0.16 1.08 +galantine galantine nom f s 0.01 0.88 0.01 0.74 +galantines galantine nom f p 0.01 0.88 0.00 0.14 +galantins galantin nom m p 0.01 0.14 0.01 0.14 +galantisait galantiser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +galantisé galantiser ver m s 0.00 0.14 0.00 0.07 par:pas; +galants galant adj m p 5.39 5.81 0.48 0.68 +galapiat galapiat nom m s 0.01 0.27 0.01 0.14 +galapiats galapiat nom m p 0.01 0.27 0.00 0.14 +galas gala nom m p 3.90 3.65 0.59 0.68 +galate galate nom s 0.05 0.00 0.01 0.00 +galates galate nom p 0.05 0.00 0.04 0.00 +galathée galathée nom f s 0.00 0.07 0.00 0.07 +galaxie galaxie nom f s 9.53 4.12 8.29 2.16 +galaxies galaxie nom f p 9.53 4.12 1.23 1.96 +galbait galber ver 0.10 0.47 0.00 0.07 ind:imp:3s; +galbe galbe nom m s 0.06 1.28 0.05 1.08 +galber galber ver 0.10 0.47 0.00 0.07 inf; +galbes galbe nom m p 0.06 1.28 0.01 0.20 +galbé galbé adj m s 0.04 0.74 0.00 0.20 +galbée galbé adj f s 0.04 0.74 0.02 0.14 +galbées galbé adj f p 0.04 0.74 0.01 0.27 +galbés galber ver m p 0.10 0.47 0.10 0.00 par:pas; +gale gale nom f s 3.52 0.47 3.50 0.47 +galerie_refuge galerie_refuge nom f s 0.00 0.07 0.00 0.07 +galerie galerie nom f s 15.69 32.16 13.64 21.22 +galeries_refuge galeries_refuge nom f p 0.00 0.07 0.00 0.07 +galeries galerie nom f p 15.69 32.16 2.05 10.95 +galeriste galeriste nom s 0.10 0.00 0.10 0.00 +galernes galerne nom f p 0.00 0.07 0.00 0.07 +gales gale nom f p 3.52 0.47 0.03 0.00 +galet galet nom m s 1.18 15.74 0.54 2.70 +galetas galetas nom m 0.14 1.28 0.14 1.28 +galetouse galetouse nom f s 0.00 0.20 0.00 0.20 +galets galet nom m p 1.18 15.74 0.65 13.04 +galette galette nom f s 1.86 6.42 0.67 4.26 +galettes galette nom f p 1.86 6.42 1.19 2.16 +galetteux galetteux adj m 0.00 0.14 0.00 0.14 +galeuse galeux adj f s 2.09 3.18 0.88 1.22 +galeuses galeux adj f p 2.09 3.18 0.24 0.41 +galeux galeux adj m 2.09 3.18 0.97 1.55 +galibot galibot nom m s 0.00 0.14 0.00 0.07 +galibots galibot nom m p 0.00 0.14 0.00 0.07 +galicien galicien nom m s 0.34 0.07 0.34 0.00 +galiciennes galicien adj f p 0.00 0.07 0.00 0.07 +galiciens galicien nom m p 0.34 0.07 0.00 0.07 +galiléen galiléen nom m s 0.06 0.00 0.06 0.00 +galimatias galimatias nom m 0.11 0.47 0.11 0.47 +galion galion nom m s 0.23 1.15 0.21 0.81 +galions galion nom m p 0.23 1.15 0.03 0.34 +galiote galiote nom f s 0.00 0.54 0.00 0.34 +galiotes galiote nom f p 0.00 0.54 0.00 0.20 +galipette galipette nom f s 0.86 1.55 0.21 0.34 +galipettes galipette nom f p 0.86 1.55 0.65 1.22 +gallant galler ver 0.47 0.20 0.47 0.20 par:pre; +galle galle nom f s 0.02 0.20 0.00 0.07 +galles galle nom f p 0.02 0.20 0.02 0.14 +gallicanes gallican adj f p 0.00 0.07 0.00 0.07 +gallicanisme gallicanisme nom m s 0.00 0.14 0.00 0.14 +gallinacé gallinacé nom m s 0.00 0.14 0.00 0.14 +galline galline adj f s 0.27 0.00 0.27 0.00 +gallique gallique adj f s 0.00 0.07 0.00 0.07 +gallium gallium nom m s 0.06 0.07 0.06 0.07 +gallo_romain gallo_romain adj m s 0.00 0.14 0.00 0.07 +gallo_romain gallo_romain adj m p 0.00 0.14 0.00 0.07 +gallo gallo adj s 1.54 0.14 1.54 0.07 +gallois gallois adj m 0.65 0.14 0.49 0.07 +galloise gallois adj f s 0.65 0.14 0.12 0.07 +galloises gallois adj f p 0.65 0.14 0.04 0.00 +gallon gallon nom m s 0.63 0.68 0.18 0.07 +gallons gallon nom m p 0.63 0.68 0.45 0.61 +gallos gallo adj p 1.54 0.14 0.00 0.07 +galoche galoche nom f s 0.09 6.62 0.00 1.69 +galoches galoche nom f p 0.09 6.62 0.09 4.93 +galoché galocher ver m s 0.00 0.14 0.00 0.07 par:pas; +galochés galocher ver m p 0.00 0.14 0.00 0.07 par:pas; +galon galon nom m s 3.16 14.73 0.89 4.12 +galonnage galonnage nom m s 0.00 0.07 0.00 0.07 +galonnait galonner ver 0.01 1.22 0.00 0.07 ind:imp:3s; +galonne galonner ver 0.01 1.22 0.00 0.07 ind:pre:3s; +galonné galonné adj m s 0.09 2.09 0.03 0.74 +galonnée galonné adj f s 0.09 2.09 0.01 0.54 +galonnées galonné adj f p 0.09 2.09 0.01 0.27 +galonnés galonné adj m p 0.09 2.09 0.03 0.54 +galons galon nom m p 3.16 14.73 2.28 10.61 +galop galop nom m s 2.83 13.72 2.83 12.77 +galopa galoper ver 3.14 13.31 0.14 0.61 ind:pas:3s; +galopade galopade nom f s 0.00 3.65 0.00 2.03 +galopades galopade nom f p 0.00 3.65 0.00 1.62 +galopaient galoper ver 3.14 13.31 0.03 1.49 ind:imp:3p; +galopais galoper ver 3.14 13.31 0.01 0.27 ind:imp:1s;ind:imp:2s; +galopait galoper ver 3.14 13.31 0.05 1.55 ind:imp:3s; +galopant galoper ver 3.14 13.31 0.09 1.62 par:pre; +galopante galopant adj f s 0.31 1.89 0.22 1.15 +galopantes galopant adj f p 0.31 1.89 0.01 0.07 +galopants galopant adj m p 0.31 1.89 0.00 0.14 +galope galoper ver 3.14 13.31 0.63 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +galopent galoper ver 3.14 13.31 0.18 1.42 ind:pre:3p; +galoper galoper ver 3.14 13.31 0.95 3.78 inf; +galopera galoper ver 3.14 13.31 0.02 0.00 ind:fut:3s; +galoperaient galoper ver 3.14 13.31 0.00 0.07 cnd:pre:3p; +galoperez galoper ver 3.14 13.31 0.01 0.00 ind:fut:2p; +galopes galoper ver 3.14 13.31 0.13 0.00 ind:pre:2s; +galopez galoper ver 3.14 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +galopin galopin nom m s 0.88 4.05 0.32 1.69 +galopine galopin nom f s 0.88 4.05 0.00 0.41 +galopiner galopiner ver 0.00 0.07 0.00 0.07 inf; +galopines galopin nom f p 0.88 4.05 0.00 0.07 +galopins galopin nom m p 0.88 4.05 0.56 1.89 +galopons galoper ver 3.14 13.31 0.27 0.07 imp:pre:1p;ind:pre:1p; +galops galop nom m p 2.83 13.72 0.00 0.95 +galopèrent galoper ver 3.14 13.31 0.00 0.07 ind:pas:3p; +galopé galoper ver m s 3.14 13.31 0.60 0.41 par:pas; +galoubet galoubet nom m s 0.01 0.00 0.01 0.00 +galoup galoup nom m s 0.00 0.20 0.00 0.20 +galène galène nom f s 0.23 0.41 0.23 0.41 +galère galère nom f s 10.26 10.47 8.12 6.08 +galèrent galérer ver 0.91 0.74 0.06 0.00 ind:pre:3p; +galères galère nom f p 10.26 10.47 2.14 4.39 +galtouse galtouse nom f s 0.00 1.28 0.00 1.01 +galtouses galtouse nom f p 0.00 1.28 0.00 0.27 +galéasses galéasse nom f p 0.00 0.14 0.00 0.14 +galuchat galuchat nom m s 0.00 0.34 0.00 0.34 +galée galée nom f s 0.04 0.34 0.00 0.20 +galées galée nom f p 0.04 0.34 0.04 0.14 +galéjade galéjade nom f s 0.29 0.41 0.28 0.34 +galéjades galéjade nom f p 0.29 0.41 0.01 0.07 +galéjeur galéjeur adj m s 0.00 0.07 0.00 0.07 +galéniste galéniste nom m s 0.00 0.07 0.00 0.07 +galérais galérer ver 0.91 0.74 0.01 0.00 ind:imp:1s; +galérait galérer ver 0.91 0.74 0.00 0.07 ind:imp:3s; +galure galure nom m s 0.09 1.08 0.08 0.88 +galérer galérer ver 0.91 0.74 0.36 0.20 inf; +galures galure nom m p 0.09 1.08 0.01 0.20 +galérien galérien nom m s 0.09 1.01 0.07 0.41 +galériens galérien nom m p 0.09 1.01 0.02 0.61 +galurin galurin nom m s 0.04 0.41 0.04 0.41 +galéré galérer ver m s 0.91 0.74 0.23 0.20 par:pas; +galvanique galvanique adj f s 0.00 0.07 0.00 0.07 +galvanisa galvaniser ver 0.51 1.96 0.00 0.07 ind:pas:3s; +galvanisait galvaniser ver 0.51 1.96 0.00 0.20 ind:imp:3s; +galvanisant galvaniser ver 0.51 1.96 0.03 0.14 par:pre; +galvanise galvaniser ver 0.51 1.96 0.02 0.20 ind:pre:3s; +galvaniser galvaniser ver 0.51 1.96 0.20 0.34 inf; +galvanisme galvanisme nom m s 0.02 0.00 0.02 0.00 +galvanisé galvaniser ver m s 0.51 1.96 0.26 0.54 par:pas; +galvanisée galvaniser ver f s 0.51 1.96 0.01 0.34 par:pas; +galvanisées galvaniser ver f p 0.51 1.96 0.00 0.07 par:pas; +galvanisés galvaniser ver m p 0.51 1.96 0.00 0.07 par:pas; +galvaudait galvauder ver 0.16 0.88 0.00 0.07 ind:imp:3s; +galvaudant galvauder ver 0.16 0.88 0.00 0.07 par:pre; +galvaude galvauder ver 0.16 0.88 0.00 0.14 ind:pre:3s; +galvaudent galvauder ver 0.16 0.88 0.00 0.07 ind:pre:3p; +galvauder galvauder ver 0.16 0.88 0.10 0.14 inf; +galvaudeux galvaudeux nom m 0.00 0.14 0.00 0.14 +galvaudez galvauder ver 0.16 0.88 0.00 0.07 imp:pre:2p; +galvaudiez galvauder ver 0.16 0.88 0.00 0.07 ind:imp:2p; +galvaudé galvauder ver m s 0.16 0.88 0.04 0.20 par:pas; +galvaudée galvauder ver f s 0.16 0.88 0.02 0.07 par:pas; +gamahuche gamahucher ver 0.00 0.07 0.00 0.07 ind:pre:3s; +gamay gamay nom m s 0.00 0.07 0.00 0.07 +gambada gambader ver 0.80 2.64 0.00 0.07 ind:pas:3s; +gambadaient gambader ver 0.80 2.64 0.00 0.14 ind:imp:3p; +gambadais gambader ver 0.80 2.64 0.01 0.00 ind:imp:1s; +gambadait gambader ver 0.80 2.64 0.05 0.61 ind:imp:3s; +gambadant gambader ver 0.80 2.64 0.05 0.20 par:pre; +gambadante gambadant adj f s 0.02 0.14 0.00 0.07 +gambade gambader ver 0.80 2.64 0.16 0.54 ind:pre:1s;ind:pre:3s; +gambadent gambader ver 0.80 2.64 0.12 0.27 ind:pre:3p; +gambader gambader ver 0.80 2.64 0.38 0.74 inf; +gambades gambade nom f p 0.01 0.61 0.01 0.47 +gambadeurs gambadeur nom m p 0.00 0.07 0.00 0.07 +gambadez gambader ver 0.80 2.64 0.02 0.00 imp:pre:2p; +gambadèrent gambader ver 0.80 2.64 0.00 0.07 ind:pas:3p; +gambas gamba nom f p 0.45 0.14 0.45 0.14 +gambe gambe nom f s 0.34 0.07 0.34 0.07 +gamberge gamberger ver 0.69 7.70 0.11 1.89 ind:pre:1s;ind:pre:3s; +gambergea gamberger ver 0.69 7.70 0.00 0.07 ind:pas:3s; +gambergeaient gamberger ver 0.69 7.70 0.00 0.07 ind:imp:3p; +gambergeailler gambergeailler ver 0.00 0.07 0.00 0.07 inf; +gambergeais gamberger ver 0.69 7.70 0.01 0.61 ind:imp:1s; +gambergeait gamberger ver 0.69 7.70 0.04 0.74 ind:imp:3s; +gambergeant gamberger ver 0.69 7.70 0.00 0.54 par:pre; +gambergent gamberger ver 0.69 7.70 0.01 0.07 ind:pre:3p; +gambergeons gamberger ver 0.69 7.70 0.00 0.07 imp:pre:1p; +gamberger gamberger ver 0.69 7.70 0.23 2.50 inf; +gamberges gamberger ver 0.69 7.70 0.19 0.20 ind:pre:2s; +gambergez gamberger ver 0.69 7.70 0.02 0.00 imp:pre:2p;ind:pre:2p; +gambergé gamberger ver m s 0.69 7.70 0.09 0.95 par:pas; +gambette gambette nom s 0.33 0.74 0.02 0.20 +gambettes gambette nom p 0.33 0.74 0.31 0.54 +gambillait gambiller ver 0.08 1.35 0.00 0.07 ind:imp:3s; +gambillant gambiller ver 0.08 1.35 0.00 0.20 par:pre; +gambille gambiller ver 0.08 1.35 0.03 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gambiller gambiller ver 0.08 1.35 0.03 0.14 inf; +gambilles gambiller ver 0.08 1.35 0.02 0.27 ind:pre:2s; +gambilleurs gambilleur nom m p 0.00 0.20 0.00 0.14 +gambilleuses gambilleur nom f p 0.00 0.20 0.00 0.07 +gambillé gambiller ver m s 0.08 1.35 0.00 0.07 par:pas; +gambit gambit nom m s 0.04 0.00 0.04 0.00 +game game nom m s 0.64 0.14 0.64 0.14 +gamelan gamelan nom m s 0.25 0.07 0.25 0.07 +gamelle gamelle nom f s 1.64 13.72 1.29 8.45 +gamelles gamelle nom f p 1.64 13.72 0.34 5.27 +gamin gamin nom m s 92.22 38.78 55.94 19.53 +gaminas gaminer ver 0.00 0.07 0.00 0.07 ind:pas:2s; +gamine gamin nom f s 92.22 38.78 12.00 7.16 +gaminement gaminement nom m s 0.00 0.07 0.00 0.07 +gaminerie gaminerie nom f s 0.40 0.61 0.08 0.20 +gamineries gaminerie nom f p 0.40 0.61 0.32 0.41 +gamines gamin nom f p 92.22 38.78 2.13 2.77 +gamins gamin nom m p 92.22 38.78 22.15 9.32 +gamma gamma nom m 1.94 1.01 1.94 1.01 +gammaglobuline gammaglobuline nom f s 0.03 0.34 0.00 0.20 +gammaglobulines gammaglobuline nom f p 0.03 0.34 0.03 0.14 +gammas gammas nom m 0.04 0.00 0.04 0.00 +gamme gamme nom f s 3.22 7.91 2.67 5.74 +gammes gamme nom f p 3.22 7.91 0.55 2.16 +gammée gammée adj f s 1.27 3.45 0.20 2.43 +gammées gammée adj f p 1.27 3.45 1.07 1.01 +gamète gamète nom m s 0.03 0.20 0.01 0.14 +gamètes gamète nom m p 0.03 0.20 0.02 0.07 +gan gan nom m s 0.27 0.00 0.27 0.00 +ganache ganache nom f s 0.04 0.61 0.04 0.61 +ganaderia ganaderia nom f s 0.00 0.20 0.00 0.14 +ganaderias ganaderia nom f p 0.00 0.20 0.00 0.07 +gandin gandin nom m s 0.56 1.28 0.56 0.95 +gandins gandin nom m p 0.56 1.28 0.00 0.34 +gandoura gandoura nom f s 0.01 0.68 0.01 0.54 +gandourah gandourah nom f s 0.00 0.20 0.00 0.20 +gandouras gandoura nom f p 0.01 0.68 0.00 0.14 +gang gang nom m s 17.48 3.85 12.44 3.04 +ganglion ganglion nom m s 0.61 1.01 0.18 0.41 +ganglionnaires ganglionnaire adj f p 0.00 0.07 0.00 0.07 +ganglions ganglion nom m p 0.61 1.01 0.44 0.61 +gangrena gangrener ver 0.50 0.61 0.00 0.07 ind:pas:3s; +gangrener gangrener ver 0.50 0.61 0.21 0.07 inf; +gangreneux gangreneux adj m s 0.01 0.00 0.01 0.00 +gangrené gangrené adj m s 0.19 0.41 0.17 0.27 +gangrenée gangrener ver f s 0.50 0.61 0.10 0.14 par:pas; +gangrenées gangrené adj f p 0.19 0.41 0.01 0.00 +gangrenés gangrener ver m p 0.50 0.61 0.01 0.07 par:pas; +gangrène gangrène nom f s 1.74 2.23 1.74 2.16 +gangrènes gangrène nom f p 1.74 2.23 0.00 0.07 +gangs gang nom m p 17.48 3.85 5.05 0.81 +gangster gangster nom m s 10.43 6.35 6.75 3.11 +gangsters gangster nom m p 10.43 6.35 3.68 3.24 +gangstérisme gangstérisme nom m s 0.00 0.07 0.00 0.07 +gangue gangue nom f s 0.01 2.03 0.01 1.89 +gangues gangue nom f p 0.01 2.03 0.00 0.14 +ganja ganja nom f s 0.18 0.00 0.18 0.00 +ganse ganse nom f s 0.04 0.68 0.02 0.34 +ganses ganse nom f p 0.04 0.68 0.02 0.34 +gansé ganser ver m s 0.00 0.41 0.00 0.07 par:pas; +gansée ganser ver f s 0.00 0.41 0.00 0.34 par:pas; +gant gant nom m s 25.02 36.01 9.86 7.97 +gantait ganter ver 0.14 3.72 0.00 0.07 ind:imp:3s; +gantant ganter ver 0.14 3.72 0.00 0.07 par:pre; +gante ganter ver 0.14 3.72 0.00 0.07 ind:pre:3s; +gantelet gantelet nom m s 0.37 0.14 0.36 0.07 +gantelets gantelet nom m p 0.37 0.14 0.01 0.07 +ganterie ganterie nom f s 0.00 0.07 0.00 0.07 +gantier gantier nom m s 0.24 0.07 0.24 0.00 +gantières gantier nom f p 0.24 0.07 0.00 0.07 +gants gant nom m p 25.02 36.01 15.16 28.04 +ganté ganté adj m s 0.06 2.50 0.04 0.20 +gantée ganter ver f s 0.14 3.72 0.01 1.82 par:pas; +gantées ganter ver f p 0.14 3.72 0.01 0.74 par:pas; +gantés ganter ver m p 0.14 3.72 0.10 0.20 par:pas; +ganymèdes ganymède nom m p 0.00 0.07 0.00 0.07 +gap gap nom m s 0.01 0.00 0.01 0.00 +gaperon gaperon nom m s 0.00 0.07 0.00 0.07 +gapette gapette nom f s 0.01 0.68 0.01 0.54 +gapettes gapette nom f p 0.01 0.68 0.00 0.14 +gara garer ver 27.18 18.04 0.04 1.15 ind:pas:3s; +garage garage nom m s 25.25 24.12 24.41 22.23 +garages garage nom m p 25.25 24.12 0.83 1.89 +garagiste garagiste nom s 1.25 5.27 1.25 5.00 +garagistes garagiste nom p 1.25 5.27 0.00 0.27 +garaient garer ver 27.18 18.04 0.02 0.20 ind:imp:3p; +garais garer ver 27.18 18.04 0.07 0.07 ind:imp:1s;ind:imp:2s; +garait garer ver 27.18 18.04 0.05 0.34 ind:imp:3s; +garance garance adj 0.01 0.27 0.01 0.27 +garancière garancière nom f s 0.00 0.27 0.00 0.27 +garant garant adj m s 2.39 2.09 2.19 0.81 +garantît garantir ver 19.74 16.82 0.00 0.07 sub:imp:3s; +garante garant adj f s 2.39 2.09 0.16 0.68 +garantes garant adj f p 2.39 2.09 0.00 0.07 +garanti garantir ver m s 19.74 16.82 2.32 2.70 par:pas; +garantie garantie nom f s 9.16 8.24 6.84 5.14 +garanties garantie nom f p 9.16 8.24 2.32 3.11 +garantir garantir ver 19.74 16.82 4.86 4.59 inf; +garantira garantir ver 19.74 16.82 0.20 0.54 ind:fut:3s; +garantirais garantir ver 19.74 16.82 0.01 0.00 cnd:pre:1s; +garantirait garantir ver 19.74 16.82 0.04 0.27 cnd:pre:3s; +garantiriez garantir ver 19.74 16.82 0.01 0.00 cnd:pre:2p; +garantirons garantir ver 19.74 16.82 0.00 0.07 ind:fut:1p; +garantiront garantir ver 19.74 16.82 0.04 0.00 ind:fut:3p; +garantis garantir ver m p 19.74 16.82 7.15 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +garantissaient garantir ver 19.74 16.82 0.01 0.34 ind:imp:3p; +garantissais garantir ver 19.74 16.82 0.01 0.07 ind:imp:1s; +garantissait garantir ver 19.74 16.82 0.11 0.95 ind:imp:3s; +garantissant garantir ver 19.74 16.82 0.13 0.68 par:pre; +garantisse garantir ver 19.74 16.82 0.18 0.14 sub:pre:1s;sub:pre:3s; +garantissent garantir ver 19.74 16.82 0.07 0.14 ind:pre:3p; +garantissez garantir ver 19.74 16.82 0.26 0.00 imp:pre:2p;ind:pre:2p; +garantissons garantir ver 19.74 16.82 0.25 0.00 imp:pre:1p;ind:pre:1p; +garantit garantir ver 19.74 16.82 2.30 1.22 ind:pre:3s;ind:pas:3s; +garants garant nom m p 0.97 1.62 0.24 0.34 +garbure garbure nom f s 0.14 0.14 0.14 0.14 +garce garce nom f s 21.71 8.78 20.25 7.36 +garces garce nom f p 21.71 8.78 1.46 1.42 +garcette garcette nom f s 0.00 0.20 0.00 0.07 +garcettes garcette nom f p 0.00 0.20 0.00 0.14 +garda garder ver 338.40 257.50 0.40 11.89 ind:pas:3s; +gardai garder ver 338.40 257.50 0.12 3.65 ind:pas:1s; +gardaient garder ver 338.40 257.50 0.89 8.45 ind:imp:3p; +gardais garder ver 338.40 257.50 3.00 5.74 ind:imp:1s;ind:imp:2s; +gardait garder ver 338.40 257.50 4.52 37.30 ind:imp:3s; +gardant garder ver 338.40 257.50 2.06 9.46 par:pre; +garde_barrière garde_barrière nom m s 0.00 0.95 0.00 0.95 +garde_boue garde_boue nom m 0.05 1.08 0.05 1.08 +garde_côte garde_côte nom m s 1.90 0.14 0.54 0.07 +garde_côte garde_côte nom m p 1.90 0.14 1.36 0.07 +garde_champêtre garde_champêtre nom m s 0.00 0.54 0.00 0.47 +garde_chasse garde_chasse nom m s 0.22 1.42 0.22 1.42 +garde_chiourme garde_chiourme nom m s 0.11 0.74 0.06 0.54 +garde_corps garde_corps nom m 0.01 0.34 0.01 0.34 +garde_feu garde_feu nom m 0.05 0.00 0.05 0.00 +garde_forestier garde_forestier nom s 0.16 0.14 0.16 0.14 +garde_fou garde_fou nom m s 0.30 1.89 0.25 1.49 +garde_fou garde_fou nom m p 0.30 1.89 0.05 0.41 +garde_frontière garde_frontière nom m s 0.16 0.00 0.16 0.00 +garde_malade garde_malade nom s 0.44 1.15 0.44 1.15 +garde_manger garde_manger nom m 0.68 2.77 0.68 2.77 +garde_meuble garde_meuble nom m 0.34 0.20 0.34 0.20 +garde_meubles garde_meubles nom m 0.16 0.34 0.16 0.34 +garde_à_vous garde_à_vous nom m 0.00 5.88 0.00 5.88 +garde_pêche garde_pêche nom m s 0.01 0.07 0.01 0.07 +garde_robe garde_robe nom f s 2.19 2.77 2.17 2.70 +garde_robe garde_robe nom f p 2.19 2.77 0.03 0.07 +garde_voie garde_voie nom m s 0.00 0.07 0.00 0.07 +garde_vue garde_vue nom m 0.25 0.00 0.25 0.00 +garde garder ver 338.40 257.50 93.72 37.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +garden_party garden_party nom f s 0.22 0.34 0.22 0.34 +gardent garder ver 338.40 257.50 6.04 6.35 ind:pre:3p;sub:pre:3p; +garder garder ver 338.40 257.50 123.07 68.31 inf;;inf;;inf;;inf;; +gardera garder ver 338.40 257.50 3.31 2.30 ind:fut:3s; +garderai garder ver 338.40 257.50 5.83 1.89 ind:fut:1s; +garderaient garder ver 338.40 257.50 0.15 0.61 cnd:pre:3p; +garderais garder ver 338.40 257.50 1.19 0.95 cnd:pre:1s;cnd:pre:2s; +garderait garder ver 338.40 257.50 0.74 2.97 cnd:pre:3s; +garderas garder ver 338.40 257.50 1.42 0.61 ind:fut:2s; +garderez garder ver 338.40 257.50 0.72 0.74 ind:fut:2p; +garderie garderie nom f s 1.96 0.61 1.67 0.47 +garderies garderie nom f p 1.96 0.61 0.29 0.14 +garderiez garder ver 338.40 257.50 0.45 0.07 cnd:pre:2p; +garderions garder ver 338.40 257.50 0.03 0.14 cnd:pre:1p; +garderons garder ver 338.40 257.50 1.30 0.41 ind:fut:1p; +garderont garder ver 338.40 257.50 1.05 0.47 ind:fut:3p; +gardes_barrière gardes_barrière nom p 0.00 0.14 0.00 0.14 +gardes_côte gardes_côte nom m p 0.31 0.00 0.31 0.00 +garde_champêtre garde_champêtre nom m p 0.00 0.54 0.00 0.07 +gardes_chasse gardes_chasse nom m s 0.03 0.41 0.03 0.41 +garde_chiourme garde_chiourme nom m p 0.11 0.74 0.04 0.20 +gardes_chiourme gardes_chiourme nom p 0.03 0.14 0.03 0.14 +garde_française garde_française nom m p 0.00 0.07 0.00 0.07 +gardes_frontière gardes_frontière nom m p 0.03 0.41 0.03 0.41 +gardes_voie gardes_voie nom m p 0.00 0.07 0.00 0.07 +gardes garde nom p 104.47 112.09 27.70 22.23 +gardeur gardeur nom m s 0.00 0.34 0.00 0.07 +gardeurs gardeur nom m p 0.00 0.34 0.00 0.07 +gardeuse gardeur nom f s 0.00 0.34 0.00 0.14 +gardeuses gardeur nom f p 0.00 0.34 0.00 0.07 +gardez garder ver 338.40 257.50 39.17 5.20 imp:pre:2p;ind:pre:2p; +gardian gardian nom m s 0.00 0.20 0.00 0.14 +gardians gardian nom m p 0.00 0.20 0.00 0.07 +gardien_chef gardien_chef nom m s 0.22 0.27 0.22 0.27 +gardien gardien nom m s 31.56 31.96 18.55 18.45 +gardiennage gardiennage nom m s 0.05 0.27 0.05 0.27 +gardiennait gardienner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +gardienne gardien nom f s 31.56 31.96 2.81 3.31 +gardiennes gardienne nom f p 0.36 0.00 0.36 0.00 +gardiens gardien nom m p 31.56 31.96 10.20 9.59 +gardiez garder ver 338.40 257.50 1.23 0.61 ind:imp:2p; +gardions garder ver 338.40 257.50 0.56 0.88 ind:imp:1p; +gardois gardois adj m s 0.00 0.07 0.00 0.07 +gardâmes garder ver 338.40 257.50 0.00 0.20 ind:pas:1p; +gardon gardon nom m s 1.06 1.08 0.44 0.41 +gardons garder ver 338.40 257.50 4.58 2.03 imp:pre:1p;ind:pre:1p; +gardât garder ver 338.40 257.50 0.00 0.68 sub:imp:3s; +gardèrent garder ver 338.40 257.50 0.12 0.61 ind:pas:3p; +gardé garder ver m s 338.40 257.50 24.98 36.89 imp:pre:2s;par:pas;par:pas; +gardée garder ver f s 338.40 257.50 3.87 4.93 par:pas; +gardées garder ver f p 338.40 257.50 1.30 0.88 par:pas; +gardénal gardénal nom m s 0.00 1.08 0.00 1.08 +gardénia gardénia nom m s 0.27 0.54 0.11 0.14 +gardénias gardénia nom m p 0.27 0.54 0.16 0.41 +gardés garder ver m p 338.40 257.50 1.50 2.77 par:pas; +gare gare ono 10.79 2.84 10.79 2.84 +garenne garenne nom s 0.66 1.01 0.64 0.68 +garennes garenne nom f p 0.66 1.01 0.02 0.34 +garent garer ver 27.18 18.04 0.14 0.14 ind:pre:3p; +garer garer ver 27.18 18.04 6.70 3.24 inf; +garerai garer ver 27.18 18.04 0.17 0.00 ind:fut:1s; +garerais garer ver 27.18 18.04 0.01 0.00 cnd:pre:1s; +garerait garer ver 27.18 18.04 0.01 0.07 cnd:pre:3s; +gareront garer ver 27.18 18.04 0.01 0.00 ind:fut:3p; +gares gare nom_sup f p 42.15 84.53 1.87 5.95 +garez garer ver 27.18 18.04 2.48 0.27 imp:pre:2p;ind:pre:2p; +gargamelle gargamelle nom f s 0.00 0.07 0.00 0.07 +gargantua gargantua nom m s 0.01 0.00 0.01 0.00 +gargantuesque gargantuesque adj s 0.38 0.41 0.33 0.34 +gargantuesques gargantuesque adj m p 0.38 0.41 0.05 0.07 +gargarisa gargariser ver 0.41 0.74 0.00 0.07 ind:pas:3s; +gargarisaient gargariser ver 0.41 0.74 0.00 0.07 ind:imp:3p; +gargarisait gargariser ver 0.41 0.74 0.01 0.14 ind:imp:3s; +gargarisant gargariser ver 0.41 0.74 0.00 0.14 par:pre; +gargarise gargariser ver 0.41 0.74 0.20 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gargarisent gargariser ver 0.41 0.74 0.03 0.14 ind:pre:3p; +gargariser gargariser ver 0.41 0.74 0.15 0.07 inf; +gargarisme gargarisme nom m s 0.06 0.34 0.02 0.20 +gargarismes gargarisme nom m p 0.06 0.34 0.04 0.14 +gargarisé gargariser ver m s 0.41 0.74 0.01 0.00 par:pas; +gargote gargote nom f s 0.47 1.55 0.26 0.95 +gargotes gargote nom f p 0.47 1.55 0.21 0.61 +gargotier gargotier nom m s 0.14 0.20 0.14 0.07 +gargotiers gargotier nom m p 0.14 0.20 0.00 0.14 +gargouilla gargouiller ver 0.55 2.36 0.00 0.14 ind:pas:3s; +gargouillaient gargouiller ver 0.55 2.36 0.00 0.07 ind:imp:3p; +gargouillait gargouiller ver 0.55 2.36 0.03 0.54 ind:imp:3s; +gargouillant gargouiller ver 0.55 2.36 0.01 0.14 par:pre; +gargouillante gargouillant adj f s 0.01 0.14 0.00 0.07 +gargouille gargouiller ver 0.55 2.36 0.42 0.81 ind:pre:1s;ind:pre:3s; +gargouillement gargouillement nom m s 0.04 1.15 0.02 0.61 +gargouillements gargouillement nom m p 0.04 1.15 0.02 0.54 +gargouillent gargouiller ver 0.55 2.36 0.03 0.14 ind:pre:3p; +gargouiller gargouiller ver 0.55 2.36 0.05 0.47 inf; +gargouilles gargouille nom f p 0.73 1.82 0.41 0.74 +gargouillette gargouillette nom f s 0.00 0.07 0.00 0.07 +gargouillis gargouillis nom m 0.23 2.50 0.23 2.50 +gargouillé gargouiller ver m s 0.55 2.36 0.01 0.07 par:pas; +gargoulette gargoulette nom f s 0.00 0.47 0.00 0.41 +gargoulettes gargoulette nom f p 0.00 0.47 0.00 0.07 +gargousses gargousse nom f p 0.00 0.07 0.00 0.07 +gari gari nom m s 0.00 0.14 0.00 0.14 +garibaldien garibaldien adj m s 0.14 0.07 0.14 0.00 +garibaldiens garibaldien nom m p 0.40 0.00 0.40 0.00 +garions garer ver 27.18 18.04 0.01 0.07 ind:imp:1p; +garnement garnement nom m s 1.94 2.64 1.42 1.22 +garnements garnement nom m p 1.94 2.64 0.52 1.42 +garni garnir ver m s 1.04 16.42 0.26 3.99 par:pas; +garnie garnir ver f s 1.04 16.42 0.34 4.19 par:pas; +garnies garnir ver f p 1.04 16.42 0.07 2.30 par:pas; +garnir garnir ver 1.04 16.42 0.16 1.89 inf; +garnirent garnir ver 1.04 16.42 0.00 0.07 ind:pas:3p; +garniront garnir ver 1.04 16.42 0.00 0.07 ind:fut:3p; +garnis garni adj m p 0.66 6.01 0.21 1.96 +garnison garnison nom f s 3.23 11.35 3.13 8.38 +garnisons garnison nom f p 3.23 11.35 0.10 2.97 +garnissage garnissage nom m s 0.01 0.00 0.01 0.00 +garnissaient garnir ver 1.04 16.42 0.00 0.68 ind:imp:3p; +garnissais garnir ver 1.04 16.42 0.01 0.07 ind:imp:1s; +garnissait garnir ver 1.04 16.42 0.00 0.95 ind:imp:3s; +garnissant garnir ver 1.04 16.42 0.00 0.34 par:pre; +garnissent garnir ver 1.04 16.42 0.01 0.34 ind:pre:3p; +garnissez garnir ver 1.04 16.42 0.00 0.07 imp:pre:2p; +garnit garnir ver 1.04 16.42 0.02 0.54 ind:pre:3s;ind:pas:3s; +garniture garniture nom f s 1.03 2.30 0.80 1.28 +garnitures garniture nom f p 1.03 2.30 0.23 1.01 +garno garno nom m s 0.00 0.07 0.00 0.07 +garons garer ver 27.18 18.04 0.04 0.07 imp:pre:1p;ind:pre:1p; +garou garou nom m s 0.03 0.14 0.03 0.14 +garrick garrick nom m s 0.00 0.07 0.00 0.07 +garrigue garrigue nom f s 0.54 1.96 0.54 1.49 +garrigues garrigue nom f p 0.54 1.96 0.00 0.47 +garrot garrot nom m s 1.58 2.43 1.55 2.30 +garrots garrot nom m p 1.58 2.43 0.03 0.14 +garrottaient garrotter ver 0.35 0.68 0.00 0.07 ind:imp:3p; +garrotte garrotter ver 0.35 0.68 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +garrottent garrotter ver 0.35 0.68 0.01 0.00 ind:pre:3p; +garrotter garrotter ver 0.35 0.68 0.01 0.07 inf; +garrotté garrotter ver m s 0.35 0.68 0.03 0.07 par:pas; +garrottée garrotter ver f s 0.35 0.68 0.01 0.14 par:pas; +garrottés garrotter ver m p 0.35 0.68 0.01 0.14 par:pas; +gars gars nom m 289.63 59.26 289.63 59.26 +garçon garçon nom m s 251.51 262.50 188.41 186.96 +garçonne garçonne nom f s 0.00 0.88 0.00 0.88 +garçonnet garçonnet nom m s 0.27 3.65 0.21 2.50 +garçonnets garçonnet nom m p 0.27 3.65 0.06 1.15 +garçonnier garçonnier adj m s 0.02 1.15 0.00 0.20 +garçonniers garçonnier adj m p 0.02 1.15 0.00 0.14 +garçonnière garçonnière nom f s 1.51 1.22 1.51 1.08 +garçonnières garçonnière nom f p 1.51 1.22 0.00 0.14 +garçons garçon nom m p 251.51 262.50 63.09 75.54 +garèrent garer ver 27.18 18.04 0.00 0.14 ind:pas:3p; +garé garer ver m s 27.18 18.04 4.28 3.45 par:pas; +garée garer ver f s 27.18 18.04 4.08 3.72 par:pas; +garées garer ver f p 27.18 18.04 0.30 0.88 par:pas; +garés garer ver m p 27.18 18.04 0.78 0.81 par:pas; +gas_oil gas_oil nom m s 0.02 0.27 0.02 0.27 +gascon gascon adj m s 0.58 0.20 0.47 0.07 +gasconne gascon adj f s 0.58 0.20 0.10 0.07 +gascons gascon nom m p 0.44 0.27 0.06 0.20 +gasoil gasoil nom m s 0.49 0.34 0.49 0.34 +gaspacho gaspacho nom m s 1.38 0.00 1.38 0.00 +gaspard gaspard nom m s 0.54 1.01 0.54 0.20 +gaspards gaspard nom m p 0.54 1.01 0.00 0.81 +gaspilla gaspiller ver 11.50 6.08 0.01 0.00 ind:pas:3s; +gaspillage gaspillage nom m s 1.92 2.30 1.81 2.16 +gaspillages gaspillage nom m p 1.92 2.30 0.10 0.14 +gaspillaient gaspiller ver 11.50 6.08 0.00 0.14 ind:imp:3p; +gaspillait gaspiller ver 11.50 6.08 0.10 0.27 ind:imp:3s; +gaspillant gaspiller ver 11.50 6.08 0.04 0.20 par:pre; +gaspillasse gaspiller ver 11.50 6.08 0.00 0.07 sub:imp:1s; +gaspille gaspiller ver 11.50 6.08 2.57 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gaspillent gaspiller ver 11.50 6.08 0.41 0.00 ind:pre:3p; +gaspiller gaspiller ver 11.50 6.08 3.06 2.43 inf; +gaspillerai gaspiller ver 11.50 6.08 0.05 0.00 ind:fut:1s; +gaspilleraient gaspiller ver 11.50 6.08 0.00 0.07 cnd:pre:3p; +gaspillerais gaspiller ver 11.50 6.08 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +gaspillerez gaspiller ver 11.50 6.08 0.00 0.07 ind:fut:2p; +gaspilles gaspiller ver 11.50 6.08 0.82 0.14 ind:pre:2s; +gaspilleur gaspilleur adj m s 0.02 0.00 0.01 0.00 +gaspilleurs gaspilleur nom m p 0.02 0.20 0.02 0.14 +gaspilleuse gaspilleur adj f s 0.02 0.00 0.01 0.00 +gaspilleuses gaspilleur nom f p 0.02 0.20 0.00 0.07 +gaspillez gaspiller ver 11.50 6.08 1.32 0.20 imp:pre:2p;ind:pre:2p; +gaspillons gaspiller ver 11.50 6.08 0.26 0.14 imp:pre:1p;ind:pre:1p; +gaspillât gaspiller ver 11.50 6.08 0.00 0.07 sub:imp:3s; +gaspillé gaspiller ver m s 11.50 6.08 1.79 0.81 par:pas; +gaspillée gaspiller ver f s 11.50 6.08 0.48 0.34 par:pas; +gaspillées gaspiller ver f p 11.50 6.08 0.12 0.20 par:pas; +gaspillés gaspiller ver m p 11.50 6.08 0.28 0.41 par:pas; +gaster gaster nom m s 0.01 0.14 0.01 0.14 +gastralgie gastralgie nom f s 0.01 0.07 0.01 0.00 +gastralgies gastralgie nom f p 0.01 0.07 0.00 0.07 +gastrectomie gastrectomie nom f s 0.01 0.00 0.01 0.00 +gastrique gastrique adj s 1.35 0.61 1.13 0.34 +gastriques gastrique adj p 1.35 0.61 0.22 0.27 +gastrite gastrite nom f s 0.21 0.07 0.20 0.00 +gastrites gastrite nom f p 0.21 0.07 0.01 0.07 +gastro_entérite gastro_entérite nom f s 0.04 0.07 0.04 0.07 +gastro_entérologue gastro_entérologue nom s 0.04 0.14 0.04 0.07 +gastro_entérologue gastro_entérologue nom p 0.04 0.14 0.00 0.07 +gastro_intestinal gastro_intestinal adj m s 0.12 0.00 0.04 0.00 +gastro_intestinal gastro_intestinal adj f s 0.12 0.00 0.02 0.00 +gastro_intestinal gastro_intestinal adj m p 0.12 0.00 0.05 0.00 +gastro gastro nom s 0.66 0.07 0.66 0.07 +gastroentérologue gastroentérologue nom s 0.02 0.00 0.02 0.00 +gastrolâtre gastrolâtre adj m s 0.00 0.07 0.00 0.07 +gastrolâtre gastrolâtre nom s 0.00 0.07 0.00 0.07 +gastronome gastronome nom s 0.07 0.81 0.04 0.68 +gastronomes gastronome nom p 0.07 0.81 0.04 0.14 +gastronomie gastronomie nom f s 0.58 0.61 0.58 0.61 +gastronomique gastronomique adj s 0.48 1.96 0.40 0.88 +gastronomiques gastronomique adj p 0.48 1.96 0.08 1.08 +gastrula gastrula nom f s 0.01 0.00 0.01 0.00 +gastéropode gastéropode nom m s 0.02 0.14 0.00 0.07 +gastéropodes gastéropode nom m p 0.02 0.14 0.02 0.07 +gatte gatte nom f s 0.02 0.00 0.02 0.00 +gauche gauche nom s 71.78 134.59 71.66 133.78 +gauchement gauchement adv 0.10 3.45 0.10 3.45 +gaucher gaucher adj m s 2.29 0.81 1.93 0.20 +gaucherie gaucherie nom f s 0.12 2.50 0.12 2.43 +gaucheries gaucherie nom f p 0.12 2.50 0.00 0.07 +gauchers gaucher nom m p 1.10 0.27 0.28 0.14 +gauches gauche adj p 45.88 89.59 0.36 1.55 +gauchi gauchir ver m s 0.02 0.88 0.01 0.00 par:pas; +gauchie gauchir ver f s 0.02 0.88 0.01 0.34 par:pas; +gauchir gauchir ver 0.02 0.88 0.00 0.34 inf; +gauchis gauchir ver m p 0.02 0.88 0.00 0.07 par:pas; +gauchisante gauchisant adj f s 0.00 0.14 0.00 0.07 +gauchisantes gauchisant adj f p 0.00 0.14 0.00 0.07 +gauchisme gauchisme nom m s 0.00 0.20 0.00 0.14 +gauchismes gauchisme nom m p 0.00 0.20 0.00 0.07 +gauchissaient gauchir ver 0.02 0.88 0.00 0.07 ind:imp:3p; +gauchissait gauchir ver 0.02 0.88 0.00 0.07 ind:imp:3s; +gauchissement gauchissement nom m s 0.00 0.07 0.00 0.07 +gauchiste gauchiste adj s 1.02 1.08 0.79 0.74 +gauchistes gauchiste adj p 1.02 1.08 0.23 0.34 +gaucho gaucho nom m s 0.35 1.28 0.28 0.27 +gauchos gaucho nom m p 0.35 1.28 0.07 1.01 +gauchère gaucher adj f s 2.29 0.81 0.18 0.61 +gaudriole gaudriole nom f s 0.04 1.01 0.02 0.68 +gaudrioles gaudriole nom f p 0.04 1.01 0.02 0.34 +gaufre gaufre nom f s 3.03 1.96 0.58 0.68 +gaufres gaufre nom f p 3.03 1.96 2.44 1.28 +gaufrette gaufrette nom f s 0.08 0.88 0.01 0.27 +gaufrettes gaufrette nom f p 0.08 0.88 0.07 0.61 +gaufrier gaufrier nom m s 0.17 0.27 0.17 0.27 +gaufré gaufré adj m s 0.04 0.95 0.04 0.47 +gaufrée gaufrer ver f s 0.04 0.81 0.01 0.07 par:pas; +gaufrées gaufré adj f p 0.04 0.95 0.00 0.14 +gaufrés gaufrer ver m p 0.04 0.81 0.00 0.20 par:pas; +gaulant gauler ver 0.75 1.28 0.00 0.07 par:pre; +gauldo gauldo nom f s 0.00 0.14 0.00 0.07 +gauldos gauldo nom f p 0.00 0.14 0.00 0.07 +gaule gaule nom f s 0.85 2.91 0.75 1.89 +gauleiter gauleiter nom m s 0.12 0.68 0.12 0.68 +gauler gauler ver 0.75 1.28 0.35 0.95 inf; +gaulerais gauler ver 0.75 1.28 0.01 0.00 cnd:pre:1s; +gaulerait gauler ver 0.75 1.28 0.00 0.07 cnd:pre:3s; +gaules gaule nom f p 0.85 2.91 0.10 1.01 +gaélique gaélique nom s 0.17 0.14 0.17 0.14 +gaulis gaulis nom m 0.00 0.34 0.00 0.34 +gaulle gaulle nom f s 0.00 0.07 0.00 0.07 +gaullisme gaullisme nom m s 0.00 1.49 0.00 1.49 +gaulliste gaulliste adj s 0.01 2.43 0.01 1.62 +gaullistes gaulliste nom p 0.00 4.05 0.00 3.58 +gaulois gaulois nom m 2.48 8.85 2.47 2.64 +gauloise gaulois adj f s 1.36 3.04 0.17 1.28 +gauloisement gauloisement adv 0.00 0.07 0.00 0.07 +gauloiseries gauloiserie nom f p 0.00 0.07 0.00 0.07 +gauloises gaulois adj f p 1.36 3.04 0.19 0.47 +gaulèrent gauler ver 0.75 1.28 0.00 0.07 ind:pas:3p; +gaulthérie gaulthérie nom f s 0.01 0.00 0.01 0.00 +gaulé gauler ver m s 0.75 1.28 0.20 0.14 par:pas; +gaulée gauler ver f s 0.75 1.28 0.19 0.00 par:pas; +gaupe gaupe nom f s 0.00 0.07 0.00 0.07 +gauss gauss nom m 0.01 0.00 0.01 0.00 +gaussaient gausser ver 0.15 2.64 0.00 0.68 ind:imp:3p; +gaussait gausser ver 0.15 2.64 0.01 0.61 ind:imp:3s; +gaussant gausser ver 0.15 2.64 0.01 0.14 par:pre; +gausse gausser ver 0.15 2.64 0.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gaussent gausser ver 0.15 2.64 0.03 0.07 ind:pre:3p; +gausser gausser ver 0.15 2.64 0.02 0.41 inf; +gausserai gausser ver 0.15 2.64 0.00 0.07 ind:fut:1s; +gausserait gausser ver 0.15 2.64 0.00 0.07 cnd:pre:3s; +gaussez gausser ver 0.15 2.64 0.01 0.00 imp:pre:2p; +gaussèrent gausser ver 0.15 2.64 0.00 0.14 ind:pas:3p; +gaussé gausser ver m s 0.15 2.64 0.00 0.14 par:pas; +gaussée gausser ver f s 0.15 2.64 0.00 0.07 par:pas; +gava gaver ver 4.19 9.39 0.00 0.07 ind:pas:3s; +gavage gavage nom m s 0.06 0.54 0.06 0.54 +gavai gaver ver 4.19 9.39 0.00 0.07 ind:pas:1s; +gavaient gaver ver 4.19 9.39 0.03 0.34 ind:imp:3p; +gavais gaver ver 4.19 9.39 0.02 0.07 ind:imp:1s; +gavait gaver ver 4.19 9.39 0.23 0.88 ind:imp:3s; +gavant gaver ver 4.19 9.39 0.05 0.54 par:pre; +gave gaver ver 4.19 9.39 1.22 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gavent gaver ver 4.19 9.39 0.19 0.34 ind:pre:3p; +gaver gaver ver 4.19 9.39 0.50 1.55 inf; +gavera gaver ver 4.19 9.39 0.01 0.07 ind:fut:3s; +gaveraient gaver ver 4.19 9.39 0.01 0.07 cnd:pre:3p; +gaves gaver ver 4.19 9.39 0.11 0.00 ind:pre:2s; +gavez gaver ver 4.19 9.39 0.30 0.07 imp:pre:2p;ind:pre:2p; +gavial gavial nom m s 0.00 0.07 0.00 0.07 +gaviot gaviot nom m s 0.00 0.20 0.00 0.20 +gavons gaver ver 4.19 9.39 0.03 0.07 imp:pre:1p;ind:pre:1p;;imp:pre:1p; +gavroche gavroche nom m s 0.01 0.34 0.01 0.27 +gavroches gavroche nom m p 0.01 0.34 0.00 0.07 +gavé gaver ver m s 4.19 9.39 0.61 1.76 par:pas; +gavée gaver ver f s 4.19 9.39 0.43 1.08 par:pas; +gavées gaver ver f p 4.19 9.39 0.01 0.34 par:pas; +gavés gaver ver m p 4.19 9.39 0.43 1.08 par:pas; +gay gay adj m s 20.33 0.34 18.27 0.34 +gayac gayac nom m s 0.00 0.07 0.00 0.07 +gays gay nom m p 7.60 0.14 3.94 0.07 +gaz gaz nom m 36.33 28.65 36.33 28.65 +gazage gazage nom m s 0.02 0.07 0.02 0.07 +gazait gazer ver 5.39 1.82 0.02 0.41 ind:imp:3s; +gaze gazer ver 5.39 1.82 3.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gazelle gazelle nom f s 2.39 3.92 1.98 2.77 +gazelles gazelle nom f p 2.39 3.92 0.40 1.15 +gazer gazer ver 5.39 1.82 0.68 0.20 inf; +gazera gazer ver 5.39 1.82 0.11 0.00 ind:fut:3s; +gazerait gazer ver 5.39 1.82 0.00 0.07 cnd:pre:3s; +gazes gaze nom f p 0.93 3.85 0.11 0.34 +gazette gazette nom f s 0.42 2.43 0.26 1.01 +gazettes gazette nom f p 0.42 2.43 0.16 1.42 +gazeuse gazeux adj f s 2.26 1.89 1.42 1.35 +gazeuses gazeux adj f p 2.26 1.89 0.48 0.27 +gazeux gazeux adj m 2.26 1.89 0.37 0.27 +gazez gazer ver 5.39 1.82 0.01 0.00 ind:pre:2p; +gazier gazier nom m s 0.03 1.08 0.02 0.68 +gaziers gazier nom m p 0.03 1.08 0.01 0.41 +gazinière gazinière nom f s 0.14 0.14 0.01 0.14 +gazinières gazinière nom f p 0.14 0.14 0.12 0.00 +gazoduc gazoduc nom m s 0.22 0.00 0.22 0.00 +gazogène gazogène nom m s 0.00 1.62 0.00 1.49 +gazogènes gazogène nom m p 0.00 1.62 0.00 0.14 +gazole gazole nom m s 0.22 0.00 0.22 0.00 +gazoline gazoline nom f s 0.01 0.14 0.01 0.14 +gazomètre gazomètre nom m s 0.02 0.07 0.02 0.07 +gazométrie gazométrie nom f s 0.02 0.00 0.02 0.00 +gazon gazon nom m s 3.81 7.77 3.58 6.96 +gazonné gazonné adj m s 0.05 0.27 0.00 0.14 +gazonnée gazonné adj f s 0.05 0.27 0.05 0.14 +gazons gazon nom m p 3.81 7.77 0.22 0.81 +gazouilla gazouiller ver 0.79 0.95 0.00 0.07 ind:pas:3s; +gazouillaient gazouiller ver 0.79 0.95 0.12 0.07 ind:imp:3p; +gazouillait gazouiller ver 0.79 0.95 0.03 0.20 ind:imp:3s; +gazouillant gazouiller ver 0.79 0.95 0.20 0.20 par:pre; +gazouillante gazouillant adj f s 0.14 0.27 0.00 0.14 +gazouillants gazouillant adj m p 0.14 0.27 0.00 0.07 +gazouille gazouiller ver 0.79 0.95 0.13 0.14 imp:pre:2s;ind:pre:3s; +gazouillement gazouillement nom m s 0.13 0.20 0.12 0.14 +gazouillements gazouillement nom m p 0.13 0.20 0.01 0.07 +gazouillent gazouiller ver 0.79 0.95 0.17 0.14 ind:pre:3p; +gazouiller gazouiller ver 0.79 0.95 0.11 0.14 inf; +gazouilles gazouiller ver 0.79 0.95 0.03 0.00 ind:pre:2s; +gazouilleurs gazouilleur adj m p 0.00 0.07 0.00 0.07 +gazouillis gazouillis nom m 0.30 1.62 0.30 1.62 +gazpacho gazpacho nom m s 0.22 0.00 0.22 0.00 +gazé gazé adj m s 0.32 0.20 0.17 0.07 +gazée gazer ver f s 5.39 1.82 0.01 0.07 par:pas; +gazées gazer ver f p 5.39 1.82 0.02 0.00 par:pas; +gazéifier gazéifier ver 0.02 0.00 0.01 0.00 inf; +gazéifiée gazéifier ver f s 0.02 0.00 0.01 0.00 par:pas; +gazés gazer ver m p 5.39 1.82 0.75 0.07 par:pas; +geôle geôle nom f s 0.27 2.36 0.09 1.89 +geôles geôle nom f p 0.27 2.36 0.18 0.47 +geôlier geôlier nom m s 1.60 5.00 1.05 2.97 +geôliers geôlier nom m p 1.60 5.00 0.54 1.55 +geôlière geôlier nom f s 1.60 5.00 0.01 0.27 +geôlières geôlier nom f p 1.60 5.00 0.00 0.20 +geai geai nom m s 0.27 1.62 0.24 0.81 +geais geai nom m p 0.27 1.62 0.03 0.81 +gecko gecko nom m s 0.32 0.00 0.26 0.00 +geckos gecko nom m p 0.32 0.00 0.07 0.00 +geez geez nom m s 0.13 0.00 0.13 0.00 +geignaient geindre ver 0.59 5.68 0.00 0.07 ind:imp:3p; +geignais geindre ver 0.59 5.68 0.02 0.00 ind:imp:2s; +geignait geindre ver 0.59 5.68 0.02 1.35 ind:imp:3s; +geignant geignant adj m s 0.10 0.74 0.10 0.27 +geignante geignant adj f s 0.10 0.74 0.00 0.34 +geignantes geignant adj f p 0.10 0.74 0.00 0.14 +geignard geignard nom m s 0.22 0.34 0.16 0.20 +geignarde geignard adj f s 0.22 2.43 0.10 1.01 +geignardes geignard adj f p 0.22 2.43 0.00 0.47 +geignardises geignardise nom f p 0.00 0.07 0.00 0.07 +geignards geignard adj m p 0.22 2.43 0.04 0.14 +geignement geignement nom m s 0.11 0.61 0.01 0.27 +geignements geignement nom m p 0.11 0.61 0.10 0.34 +geignent geindre ver 0.59 5.68 0.04 0.14 ind:pre:3p; +geignez geindre ver 0.59 5.68 0.00 0.14 imp:pre:2p;ind:pre:2p; +geignit geindre ver 0.59 5.68 0.00 0.27 ind:pas:3s; +geindre geindre nom m s 1.41 1.96 1.41 1.96 +geins geindre ver 0.59 5.68 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +geint geindre ver m s 0.59 5.68 0.14 1.35 ind:pre:3s;par:pas; +geisha geisha nom f s 2.60 0.47 2.23 0.34 +geishas geisha nom f p 2.60 0.47 0.37 0.14 +gel gel nom m s 4.75 6.69 4.61 6.22 +gela geler ver 23.41 17.03 0.00 0.20 ind:pas:3s; +gelaient geler ver 23.41 17.03 0.02 0.47 ind:imp:3p; +gelais geler ver 23.41 17.03 0.07 0.07 ind:imp:1s;ind:imp:2s; +gelait geler ver 23.41 17.03 0.91 1.69 ind:imp:3s; +gelant geler ver 23.41 17.03 0.17 0.27 par:pre; +geler geler ver 23.41 17.03 3.18 2.09 inf; +gelez geler ver 23.41 17.03 0.19 0.14 imp:pre:2p;ind:pre:2p; +geline geline nom f s 0.01 0.00 0.01 0.00 +gelinotte gelinotte nom f s 0.00 0.07 0.00 0.07 +gelons geler ver 23.41 17.03 0.03 0.00 imp:pre:1p;ind:pre:1p; +gelât geler ver 23.41 17.03 0.00 0.07 sub:imp:3s; +gels gel nom m p 4.75 6.69 0.15 0.47 +gelé geler ver m s 23.41 17.03 5.20 2.43 par:pas; +gelée gelée nom f s 4.31 7.57 3.92 6.42 +gelées geler ver f p 23.41 17.03 0.71 2.09 par:pas; +gelure gelure nom f s 0.15 0.34 0.02 0.27 +gelures gelure nom f p 0.15 0.34 0.13 0.07 +gelés geler ver m p 23.41 17.03 0.96 0.68 par:pas; +gemme gemme nom f s 0.30 0.88 0.12 0.41 +gemmes gemme nom f p 0.30 0.88 0.19 0.47 +gemmologie gemmologie nom f s 0.01 0.00 0.01 0.00 +gencive gencive nom f s 1.35 4.26 0.18 0.81 +gencives gencive nom f p 1.35 4.26 1.17 3.45 +gendarme gendarme nom m s 13.67 43.72 5.53 16.15 +gendarmer gendarmer ver 0.01 0.00 0.01 0.00 inf; +gendarmerie gendarmerie nom f s 4.46 9.32 4.44 8.78 +gendarmeries gendarmerie nom f p 4.46 9.32 0.01 0.54 +gendarmes gendarme nom m p 13.67 43.72 8.14 27.57 +gendelettres gendelettre nom m p 0.00 0.07 0.00 0.07 +gendre gendre nom m s 5.71 8.11 5.71 7.50 +gendres gendre nom m p 5.71 8.11 0.00 0.61 +genet genet nom m s 0.01 0.00 0.01 0.00 +genevois genevois adj m 0.00 0.54 0.00 0.27 +genevoises genevois adj f p 0.00 0.54 0.00 0.27 +gengis_khan gengis_khan nom m s 0.00 0.14 0.00 0.14 +gengiskhanide gengiskhanide adj s 0.00 0.07 0.00 0.07 +genièvre genièvre nom m s 0.63 2.16 0.63 2.16 +genou genou nom m s 54.24 127.91 11.43 23.92 +genouillère genouillère nom f s 0.19 0.20 0.01 0.00 +genouillères genouillère nom f p 0.19 0.20 0.17 0.20 +genoux genou nom m p 54.24 127.91 42.82 103.99 +genre genre nom m s 221.51 157.91 219.66 155.20 +genres genre nom m p 221.51 157.91 1.85 2.70 +genreux genreux adj m 0.00 0.07 0.00 0.07 +gens gens nom p 594.29 409.39 594.29 409.39 +gent gent nom f s 0.49 1.15 0.40 1.15 +gentamicine gentamicine nom f s 0.04 0.00 0.04 0.00 +gente gent adj f s 1.56 1.08 1.39 0.41 +gentes gent adj f p 1.56 1.08 0.18 0.68 +genèse genèse nom f s 0.15 1.01 0.15 1.01 +gentiane gentiane nom f s 0.15 0.95 0.14 0.61 +gentianes gentiane nom f p 0.15 0.95 0.01 0.34 +gentil gentil adj m s 192.64 64.86 134.11 37.36 +gentilhomme gentilhomme nom m s 6.89 3.51 5.43 2.43 +gentilhommière gentilhommier nom f s 0.01 0.68 0.00 0.41 +gentilhommières gentilhommier nom f p 0.01 0.68 0.01 0.27 +gentilice gentilice adj m s 0.00 0.07 0.00 0.07 +gentille gentil adj f s 192.64 64.86 41.44 18.31 +gentilles gentil adj f p 192.64 64.86 3.12 2.77 +gentillesse gentillesse nom f s 7.56 17.50 6.96 15.27 +gentillesses gentillesse nom f p 7.56 17.50 0.60 2.23 +gentillet gentillet adj m s 0.17 0.47 0.04 0.34 +gentillets gentillet adj m p 0.17 0.47 0.11 0.07 +gentillette gentillet adj f s 0.17 0.47 0.02 0.07 +gentils gentil adj m p 192.64 64.86 13.98 6.42 +gentilshommes gentilhomme nom m p 6.89 3.51 1.47 1.08 +gentiment gentiment adv 11.32 21.76 11.32 21.76 +gentleman_farmer gentleman_farmer nom m s 0.14 0.27 0.14 0.20 +gentleman gentleman nom m s 13.08 4.19 10.31 2.97 +gentleman_farmer gentleman_farmer nom m p 0.14 0.27 0.00 0.07 +gentlemen gentleman nom m p 13.08 4.19 2.77 1.22 +gentry gentry nom f s 0.28 0.00 0.28 0.00 +gents gent nom f p 0.49 1.15 0.09 0.00 +genêt genêt nom m s 0.25 5.34 0.23 1.49 +genêtière genêtière nom f s 0.00 0.07 0.00 0.07 +genêts genêt nom m p 0.25 5.34 0.01 3.85 +genévrier genévrier nom m s 0.29 0.88 0.27 0.27 +genévriers genévrier nom m p 0.29 0.88 0.02 0.61 +gerba gerber ver 8.28 4.66 0.13 0.07 ind:pas:3s; +gerbaient gerber ver 8.28 4.66 0.02 0.00 ind:imp:3p; +gerbais gerber ver 8.28 4.66 0.10 0.14 ind:imp:1s;ind:imp:2s; +gerbait gerber ver 8.28 4.66 0.06 0.20 ind:imp:3s; +gerbant gerber ver 8.28 4.66 0.17 0.14 par:pre; +gerbe gerbe nom f s 2.06 14.19 1.69 6.49 +gerbent gerber ver 8.28 4.66 0.05 0.07 ind:pre:3p; +gerber gerber ver 8.28 4.66 6.49 2.64 inf; +gerberais gerber ver 8.28 4.66 0.01 0.00 cnd:pre:1s; +gerberas gerbera nom m p 0.01 0.20 0.01 0.20 +gerbes gerbe nom f p 2.06 14.19 0.38 7.70 +gerbeuse gerbeur nom f s 0.04 0.14 0.04 0.07 +gerbeuses gerbeur nom f p 0.04 0.14 0.00 0.07 +gerbier gerbier nom m s 0.45 0.14 0.45 0.07 +gerbille gerbille nom f s 0.29 0.00 0.29 0.00 +gerbière gerbier nom f s 0.45 0.14 0.00 0.07 +gerboise gerboise nom f s 0.06 0.14 0.04 0.14 +gerboises gerboise nom f p 0.06 0.14 0.02 0.00 +gerbèrent gerber ver 8.28 4.66 0.01 0.00 ind:pas:3p; +gerbé gerber ver m s 8.28 4.66 0.82 0.68 par:pas; +gerbée gerber ver f s 8.28 4.66 0.00 0.07 par:pas; +gerbées gerber ver f p 8.28 4.66 0.00 0.07 par:pas; +gerbés gerber ver m p 8.28 4.66 0.00 0.07 par:pas; +gerce gercer ver 0.26 1.76 0.01 0.00 ind:pre:3s; +gercent gercer ver 0.26 1.76 0.00 0.14 ind:pre:3p; +gercer gercer ver 0.26 1.76 0.01 0.07 inf; +gerces gerce nom f p 0.00 0.07 0.00 0.07 +gercèrent gercer ver 0.26 1.76 0.00 0.07 ind:pas:3p; +gercé gercer ver m s 0.26 1.76 0.01 0.20 par:pas; +gercée gercer ver f s 0.26 1.76 0.00 0.27 par:pas; +gercées gercer ver f p 0.26 1.76 0.23 0.68 par:pas; +gercés gercer ver m p 0.26 1.76 0.00 0.27 par:pas; +gerfaut gerfaut nom m s 0.03 0.07 0.03 0.00 +gerfauts gerfaut nom m p 0.03 0.07 0.00 0.07 +germa germer ver 1.02 3.04 0.02 0.14 ind:pas:3s; +germaient germer ver 1.02 3.04 0.00 0.14 ind:imp:3p; +germain germain adj m s 1.38 2.23 0.91 0.88 +germaine germain adj f s 1.38 2.23 0.25 0.47 +germaines germain adj f p 1.38 2.23 0.01 0.27 +germains germain nom m p 0.45 1.15 0.45 1.15 +germait germer ver 1.02 3.04 0.10 0.27 ind:imp:3s; +germanique germanique adj s 1.18 4.73 0.69 3.45 +germaniques germanique adj p 1.18 4.73 0.49 1.28 +germanisation germanisation nom f s 0.01 0.00 0.01 0.00 +germanisme germanisme nom m s 0.00 0.20 0.00 0.20 +germaniste germaniste nom s 0.00 0.07 0.00 0.07 +germanité germanité nom f s 0.02 0.00 0.02 0.00 +germanium germanium nom m s 0.00 0.07 0.00 0.07 +germano_anglais germano_anglais adj f p 0.00 0.07 0.00 0.07 +germano_belge germano_belge adj f s 0.01 0.00 0.01 0.00 +germano_irlandais germano_irlandais adj m 0.03 0.00 0.03 0.00 +germano_russe germano_russe adj m s 0.00 0.27 0.00 0.27 +germano_soviétique germano_soviétique adj s 0.00 1.82 0.00 1.82 +germano germano adv 0.20 0.00 0.20 0.00 +germanophile germanophile nom s 0.00 0.07 0.00 0.07 +germanophilie germanophilie nom f s 0.00 0.07 0.00 0.07 +germanophone germanophone adj s 0.01 0.00 0.01 0.00 +germant germant adj m s 0.00 0.07 0.00 0.07 +germe germe nom m s 1.98 3.78 0.55 2.03 +germen germen nom m s 0.00 0.07 0.00 0.07 +germent germer ver 1.02 3.04 0.05 0.20 ind:pre:3p; +germer germer ver 1.02 3.04 0.23 1.01 inf; +germera germer ver 1.02 3.04 0.01 0.00 ind:fut:3s; +germerait germer ver 1.02 3.04 0.10 0.07 cnd:pre:3s; +germes germe nom m p 1.98 3.78 1.42 1.76 +germinal germinal nom m s 0.00 0.14 0.00 0.14 +germinale germinal adj f s 0.01 0.14 0.01 0.07 +germination germination nom f s 0.01 0.54 0.00 0.34 +germinations germination nom f p 0.01 0.54 0.01 0.20 +germé germer ver m s 1.02 3.04 0.39 0.47 par:pas; +germée germer ver f s 1.02 3.04 0.00 0.07 par:pas; +germées germé adj f p 0.02 0.27 0.00 0.20 +gerris gerris nom m 0.03 0.00 0.03 0.00 +gerçait gercer ver 0.26 1.76 0.00 0.07 ind:imp:3s; +gerçures gerçure nom f p 0.01 0.61 0.01 0.61 +gestapiste gestapiste nom m s 0.00 0.14 0.00 0.14 +gestapo gestapo nom f s 0.69 1.69 0.69 1.69 +gestation gestation nom f s 0.53 1.82 0.53 1.76 +gestations gestation nom f p 0.53 1.82 0.00 0.07 +geste geste nom s 40.78 271.08 31.41 172.03 +gestes geste nom p 40.78 271.08 9.36 99.05 +gesticula gesticuler ver 0.99 6.96 0.00 0.14 ind:pas:3s; +gesticulai gesticuler ver 0.99 6.96 0.00 0.07 ind:pas:1s; +gesticulaient gesticuler ver 0.99 6.96 0.00 0.54 ind:imp:3p; +gesticulais gesticuler ver 0.99 6.96 0.00 0.07 ind:imp:1s; +gesticulait gesticuler ver 0.99 6.96 0.02 1.62 ind:imp:3s; +gesticulant gesticuler ver 0.99 6.96 0.01 1.49 par:pre; +gesticulante gesticulant adj f s 0.01 1.42 0.00 0.47 +gesticulantes gesticulant adj f p 0.01 1.42 0.00 0.07 +gesticulants gesticulant adj m p 0.01 1.42 0.00 0.41 +gesticulateurs gesticulateur nom m p 0.01 0.07 0.01 0.07 +gesticulation gesticulation nom f s 0.21 1.69 0.15 0.88 +gesticulations gesticulation nom f p 0.21 1.69 0.06 0.81 +gesticulatoire gesticulatoire adj s 0.00 0.07 0.00 0.07 +gesticule gesticuler ver 0.99 6.96 0.35 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gesticulent gesticuler ver 0.99 6.96 0.00 0.68 ind:pre:3p; +gesticuler gesticuler ver 0.99 6.96 0.58 1.35 inf; +gesticules gesticuler ver 0.99 6.96 0.01 0.00 ind:pre:2s; +gesticulé gesticuler ver m s 0.99 6.96 0.01 0.07 par:pas; +gestion gestion nom f s 4.23 2.30 4.23 2.30 +gestionnaire gestionnaire nom s 0.15 0.14 0.08 0.07 +gestionnaires gestionnaire nom p 0.15 0.14 0.07 0.07 +gestuel gestuel adj m s 0.04 0.07 0.02 0.00 +gestuelle gestuel nom f s 0.07 0.14 0.07 0.14 +geyser geyser nom m s 0.22 1.01 0.17 0.61 +geysers geyser nom m p 0.22 1.01 0.05 0.41 +ghanéens ghanéen adj m p 0.00 0.07 0.00 0.07 +ghetto ghetto nom m s 5.42 3.24 5.00 2.77 +ghettos ghetto nom m p 5.42 3.24 0.41 0.47 +ghât ghât nom m s 0.00 0.27 0.00 0.27 +gi gi adv 1.18 0.14 1.18 0.14 +giaour giaour nom m s 0.10 0.54 0.10 0.34 +giaours giaour nom m p 0.10 0.54 0.00 0.20 +gibbeuse gibbeux adj f s 0.00 0.20 0.00 0.07 +gibbeux gibbeux adj m s 0.00 0.20 0.00 0.14 +gibbon gibbon nom m s 0.19 0.14 0.02 0.07 +gibbons gibbon nom m p 0.19 0.14 0.16 0.07 +gibbosité gibbosité nom f s 0.00 0.14 0.00 0.14 +gibecière gibecière nom f s 0.00 1.55 0.00 1.28 +gibecières gibecière nom f p 0.00 1.55 0.00 0.27 +gibelet gibelet nom m s 0.00 0.20 0.00 0.20 +gibelin gibelin nom m s 0.01 0.14 0.01 0.00 +gibeline gibelin adj f s 0.00 0.07 0.00 0.07 +gibelins gibelin nom m p 0.01 0.14 0.00 0.14 +gibelotte gibelotte nom f s 0.00 0.47 0.00 0.41 +gibelottes gibelotte nom f p 0.00 0.47 0.00 0.07 +giberne giberne nom f s 0.00 0.68 0.00 0.34 +gibernes giberne nom f p 0.00 0.68 0.00 0.34 +gibet gibet nom m s 1.43 1.89 1.09 1.35 +gibets gibet nom m p 1.43 1.89 0.34 0.54 +gibier gibier nom m s 6.50 11.69 5.79 10.88 +gibiers gibier nom m p 6.50 11.69 0.70 0.81 +giboulée giboulée nom f s 0.03 1.28 0.03 0.34 +giboulées giboulée nom f p 0.03 1.28 0.00 0.95 +giboyeuse giboyeux adj f s 0.01 0.68 0.00 0.41 +giboyeuses giboyeux adj f p 0.01 0.68 0.00 0.07 +giboyeux giboyeux adj m 0.01 0.68 0.01 0.20 +gibus gibus nom m 0.01 1.01 0.01 1.01 +gicla gicler ver 3.68 7.97 0.00 0.74 ind:pas:3s; +giclaient gicler ver 3.68 7.97 0.00 0.41 ind:imp:3p; +giclais gicler ver 3.68 7.97 0.00 0.14 ind:imp:1s; +giclait gicler ver 3.68 7.97 0.07 1.76 ind:imp:3s; +giclant gicler ver 3.68 7.97 0.00 0.20 par:pre; +gicle gicler ver 3.68 7.97 1.69 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +giclement giclement nom m s 0.00 0.14 0.00 0.07 +giclements giclement nom m p 0.00 0.14 0.00 0.07 +giclent gicler ver 3.68 7.97 0.04 0.20 ind:pre:3p; +gicler gicler ver 3.68 7.97 0.76 2.16 inf; +giclera gicler ver 3.68 7.97 0.02 0.00 ind:fut:3s; +gicleront gicler ver 3.68 7.97 0.01 0.00 ind:fut:3p; +gicles gicler ver 3.68 7.97 0.45 0.00 ind:pre:2s; +gicleur gicleur nom m s 0.45 0.07 0.45 0.07 +giclez gicler ver 3.68 7.97 0.01 0.00 imp:pre:2p; +giclèrent gicler ver 3.68 7.97 0.00 0.07 ind:pas:3p; +giclé gicler ver m s 3.68 7.97 0.62 0.47 par:pas; +giclée giclée nom f s 0.38 3.65 0.35 2.77 +giclées giclée nom f p 0.38 3.65 0.02 0.88 +gidien gidien adj m s 0.00 0.20 0.00 0.07 +gidienne gidien adj f s 0.00 0.20 0.00 0.07 +gidiennes gidien adj f p 0.00 0.20 0.00 0.07 +gidouille gidouille nom f s 0.00 0.20 0.00 0.20 +gifla gifler ver 6.77 15.88 0.11 2.70 ind:pas:3s; +giflai gifler ver 6.77 15.88 0.00 0.07 ind:pas:1s; +giflaient gifler ver 6.77 15.88 0.01 0.41 ind:imp:3p; +giflais gifler ver 6.77 15.88 0.16 0.07 ind:imp:1s; +giflait gifler ver 6.77 15.88 0.07 1.35 ind:imp:3s; +giflant gifler ver 6.77 15.88 0.01 0.68 par:pre; +gifle gifle nom f s 4.47 16.01 3.60 9.86 +giflent gifler ver 6.77 15.88 0.00 0.41 ind:pre:3p; +gifler gifler ver 6.77 15.88 1.96 4.05 inf; +giflera gifler ver 6.77 15.88 0.03 0.00 ind:fut:3s; +giflerai gifler ver 6.77 15.88 0.01 0.00 ind:fut:1s; +giflerais gifler ver 6.77 15.88 0.10 0.14 cnd:pre:1s;cnd:pre:2s; +giflerait gifler ver 6.77 15.88 0.07 0.00 cnd:pre:3s; +gifles gifle nom f p 4.47 16.01 0.88 6.15 +gifleuse gifleur nom f s 0.01 0.07 0.01 0.07 +giflez gifler ver 6.77 15.88 0.14 0.00 imp:pre:2p;ind:pre:2p; +giflât gifler ver 6.77 15.88 0.00 0.20 sub:imp:3s; +giflé gifler ver m s 6.77 15.88 1.63 2.36 par:pas; +giflée gifler ver f s 6.77 15.88 0.84 1.08 par:pas; +giflées gifler ver f p 6.77 15.88 0.01 0.14 par:pas; +giflés gifler ver m p 6.77 15.88 0.00 0.41 par:pas; +gifts gift nom m p 0.02 0.00 0.02 0.00 +gig gig nom m s 0.15 0.14 0.15 0.14 +giga giga adj s 0.23 0.14 0.19 0.14 +gigabits gigabit nom m p 0.05 0.00 0.05 0.00 +gigahertz gigahertz nom m 0.07 0.00 0.07 0.00 +gigantesque gigantesque adj s 4.59 21.69 3.87 15.81 +gigantesques gigantesque adj p 4.59 21.69 0.72 5.88 +gigantisme gigantisme nom m s 0.20 0.34 0.20 0.27 +gigantismes gigantisme nom m p 0.20 0.34 0.00 0.07 +gigantomachie gigantomachie nom f s 0.00 0.14 0.00 0.14 +gigaoctets gigaoctet nom m p 0.01 0.00 0.01 0.00 +gigas giga adj p 0.23 0.14 0.04 0.00 +gigogne gigogne adj f s 0.03 0.81 0.01 0.54 +gigognes gigogne adj p 0.03 0.81 0.02 0.27 +gigolette gigolette nom f s 0.14 0.14 0.14 0.14 +gigolo gigolo nom m s 1.23 2.30 1.01 1.69 +gigolos gigolo nom m p 1.23 2.30 0.22 0.61 +gigolpince gigolpince nom m s 0.01 1.01 0.01 0.81 +gigolpinces gigolpince nom m p 0.01 1.01 0.00 0.20 +gigot gigot nom m s 1.46 3.92 1.41 3.18 +gigota gigoter ver 1.85 3.31 0.00 0.07 ind:pas:3s; +gigotaient gigoter ver 1.85 3.31 0.01 0.47 ind:imp:3p; +gigotait gigoter ver 1.85 3.31 0.05 0.68 ind:imp:3s; +gigotant gigoter ver 1.85 3.31 0.03 0.34 par:pre; +gigote gigoter ver 1.85 3.31 0.43 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gigotements gigotement nom m p 0.00 0.34 0.00 0.34 +gigotent gigoter ver 1.85 3.31 0.04 0.47 ind:pre:3p; +gigoter gigoter ver 1.85 3.31 1.07 0.88 inf; +gigotes gigoter ver 1.85 3.31 0.04 0.00 ind:pre:2s; +gigotez gigoter ver 1.85 3.31 0.17 0.00 imp:pre:2p;ind:pre:2p; +gigots gigot nom m p 1.46 3.92 0.05 0.74 +gigoté gigoter ver m s 1.85 3.31 0.01 0.00 par:pas; +gigue gigue nom f s 0.32 1.22 0.32 1.22 +gilbert gilbert nom m s 0.00 0.20 0.00 0.20 +gilet gilet nom m s 6.06 15.14 5.13 13.72 +giletières giletier nom f p 0.00 0.07 0.00 0.07 +gilets gilet nom m p 6.06 15.14 0.93 1.42 +gilles gille nom m p 2.43 0.41 2.43 0.41 +gimmick gimmick nom m s 0.01 0.14 0.01 0.07 +gimmicks gimmick nom m p 0.01 0.14 0.00 0.07 +gin_fizz gin_fizz nom m 0.04 1.01 0.04 1.01 +gin_rami gin_rami nom m s 0.04 0.07 0.04 0.07 +gin_rummy gin_rummy nom m s 0.05 0.14 0.05 0.14 +gin gin nom m s 6.24 4.39 6.15 4.32 +gineste gineste nom m s 0.01 0.41 0.01 0.41 +gingembre gingembre nom m s 1.50 0.88 1.50 0.88 +gingin gingin nom m s 0.00 0.14 0.00 0.14 +gingivite gingivite nom f s 0.18 0.00 0.18 0.00 +ginkgo ginkgo nom m s 0.06 0.00 0.06 0.00 +gins gin nom m p 6.24 4.39 0.09 0.07 +ginseng ginseng nom m s 0.49 0.20 0.49 0.20 +giocoso giocoso adj m s 0.00 0.07 0.00 0.07 +gipsy gipsy nom s 0.03 0.00 0.03 0.00 +girafe girafe nom f s 3.50 3.18 2.71 1.89 +girafeau girafeau nom m s 0.01 0.00 0.01 0.00 +girafes girafe nom f p 3.50 3.18 0.79 1.28 +girafon girafon nom m s 0.01 0.00 0.01 0.00 +girandes girande nom f p 0.00 0.07 0.00 0.07 +girandole girandole nom f s 0.00 0.74 0.00 0.07 +girandoles girandole nom f p 0.00 0.74 0.00 0.68 +giration giration nom f s 0.01 0.68 0.00 0.61 +girations giration nom f p 0.01 0.68 0.01 0.07 +giratoire giratoire adj f s 0.02 0.07 0.02 0.07 +giraudistes giraudiste nom p 0.00 0.07 0.00 0.07 +gire gire nom m s 0.00 0.14 0.00 0.07 +girelles girel nom f p 0.00 0.07 0.00 0.07 +girer girer ver 0.00 0.07 0.00 0.07 inf; +gires gire nom m p 0.00 0.14 0.00 0.07 +girie girie nom f s 0.00 0.27 0.00 0.07 +giries girie nom f p 0.00 0.27 0.00 0.20 +girl_scout girl_scout nom f s 0.06 0.14 0.06 0.14 +girl_friend girl_friend nom f s 0.14 0.00 0.14 0.00 +girl girl nom f s 7.47 9.59 4.41 1.89 +girls girl nom f p 7.47 9.59 3.06 7.70 +girofle girofle nom m s 0.83 0.81 0.81 0.74 +girofles girofle nom m p 0.83 0.81 0.01 0.07 +giroflier giroflier nom m s 0.00 0.07 0.00 0.07 +giroflée giroflée nom f s 0.24 0.88 0.22 0.07 +giroflées giroflée nom f p 0.24 0.88 0.02 0.81 +girolle girolle nom f s 0.29 0.88 0.01 0.07 +girolles girolle nom f p 0.29 0.88 0.28 0.81 +giron giron nom m s 0.39 2.03 0.39 2.03 +girond girond adj m s 0.17 1.96 0.01 0.07 +gironde girond adj f s 0.17 1.96 0.15 1.35 +girondes girond adj f p 0.17 1.96 0.00 0.47 +girondin girondin adj m s 0.00 0.54 0.00 0.14 +girondine girondin adj f s 0.00 0.54 0.00 0.07 +girondines girondin adj f p 0.00 0.54 0.00 0.07 +girondins girondin adj m p 0.00 0.54 0.00 0.27 +gironds girond adj m p 0.17 1.96 0.01 0.07 +girouettait girouetter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +girouettant girouetter ver 0.00 0.14 0.00 0.07 par:pre; +girouette girouette nom f s 0.66 2.36 0.47 1.76 +girouettes girouette nom f p 0.66 2.36 0.19 0.61 +gis gésir ver 4.77 15.68 0.26 0.00 ind:pre:1s;ind:pre:2s; +gisaient gésir ver 4.77 15.68 0.11 2.50 ind:imp:3p; +gisais gésir ver 4.77 15.68 0.49 0.27 ind:imp:1s;ind:imp:2s; +gisait gésir ver 4.77 15.68 1.20 7.30 ind:imp:3s; +gisant gésir ver 4.77 15.68 0.33 1.35 par:pre; +gisante gisant adj f s 0.33 1.89 0.14 0.41 +gisantes gisant adj f p 0.33 1.89 0.00 0.14 +gisants gisant nom m p 0.02 2.57 0.00 1.22 +gisement gisement nom m s 1.25 0.95 0.73 0.61 +gisements gisement nom m p 1.25 0.95 0.53 0.34 +gisent gésir ver 4.77 15.68 0.22 1.42 ind:pre:3p; +gisions gésir ver 4.77 15.68 0.00 0.14 ind:imp:1p; +gisquette gisquette nom f s 0.00 1.42 0.00 0.68 +gisquettes gisquette nom f p 0.00 1.42 0.00 0.74 +gitan gitan nom m s 7.50 8.72 1.60 1.89 +gitane gitan nom f s 7.50 8.72 2.32 3.11 +gitanes gitan nom f p 7.50 8.72 0.18 1.76 +gitans gitan nom m p 7.50 8.72 3.39 1.96 +giton giton nom m s 1.25 0.68 1.23 0.47 +gitons giton nom m p 1.25 0.68 0.02 0.20 +givrage givrage nom m s 0.01 0.00 0.01 0.00 +givrait givrer ver 1.59 1.35 0.01 0.20 ind:imp:3s; +givrante givrant adj f s 0.01 0.07 0.01 0.07 +givre givre nom m s 0.33 5.14 0.32 5.07 +givrer givrer ver 1.59 1.35 0.01 0.14 inf; +givres givre nom m p 0.33 5.14 0.01 0.07 +givré givré adj m s 1.52 2.23 1.00 0.61 +givrée givrer ver f s 1.59 1.35 0.67 0.34 par:pas; +givrées givré adj f p 1.52 2.23 0.04 0.14 +givrés givré adj m p 1.52 2.23 0.22 0.47 +gla_gla gla_gla adj m s 0.00 0.14 0.00 0.14 +glaïeul glaïeul nom m s 0.38 1.89 0.01 0.00 +glaïeuls glaïeul nom m p 0.38 1.89 0.36 1.89 +glabelle glabelle nom f s 0.01 0.00 0.01 0.00 +glabre glabre adj s 0.06 2.64 0.05 1.69 +glabres glabre adj p 0.06 2.64 0.01 0.95 +glace glace nom f s 66.82 91.01 58.09 76.01 +glacent glacer ver 7.21 25.74 0.03 0.81 ind:pre:3p; +glacer glacer ver 7.21 25.74 0.30 0.95 inf; +glacera glacer ver 7.21 25.74 0.04 0.00 ind:fut:3s; +glaceront glacer ver 7.21 25.74 0.00 0.07 ind:fut:3p; +glaces glace nom f p 66.82 91.01 8.73 15.00 +glacez glacer ver 7.21 25.74 0.01 0.00 ind:pre:2p; +glaciaire glaciaire adj s 0.58 0.34 0.50 0.14 +glaciaires glaciaire adj p 0.58 0.34 0.09 0.20 +glacial glacial adj m s 3.81 13.92 2.44 8.18 +glaciale glacial adj f s 3.81 13.92 1.30 4.46 +glacialement glacialement adv 0.10 0.07 0.10 0.07 +glaciales glacial adj f p 3.81 13.92 0.07 1.01 +glacials glacial adj m p 3.81 13.92 0.00 0.14 +glaciation glaciation nom f s 0.03 0.34 0.03 0.27 +glaciations glaciation nom f p 0.03 0.34 0.00 0.07 +glaciaux glacial adj m p 3.81 13.92 0.00 0.14 +glacier glacier nom m s 5.00 3.72 4.34 2.16 +glaciers glacier nom m p 5.00 3.72 0.67 1.55 +glaciologue glaciologue nom s 0.14 0.00 0.14 0.00 +glacis glacis nom m 0.02 3.58 0.02 3.58 +glacière glacière nom f s 1.60 2.91 1.44 2.64 +glacières glacière nom f p 1.60 2.91 0.17 0.27 +glacèrent glacer ver 7.21 25.74 0.14 0.20 ind:pas:3p; +glacé glacé adj m s 11.42 40.27 5.28 17.50 +glacée glacé adj f s 11.42 40.27 4.67 13.85 +glacées glacé adj f p 11.42 40.27 0.64 4.59 +glacés glacé adj m p 11.42 40.27 0.84 4.32 +gladiateur gladiateur nom m s 2.84 1.62 1.38 0.74 +gladiateurs gladiateur nom m p 2.84 1.62 1.46 0.88 +gladiatrices gladiatrice nom f p 0.04 0.00 0.04 0.00 +glaglate glaglater ver 0.00 0.54 0.00 0.47 ind:pre:1s;ind:pre:3s; +glaglater glaglater ver 0.00 0.54 0.00 0.07 inf; +glaire glaire nom f s 0.48 1.35 0.22 0.34 +glaires glaire nom f p 0.48 1.35 0.26 1.01 +glaireuse glaireux adj f s 0.02 1.42 0.00 0.41 +glaireuses glaireux adj f p 0.02 1.42 0.00 0.20 +glaireux glaireux adj m 0.02 1.42 0.02 0.81 +glaise glaise nom f s 1.71 8.85 1.71 8.72 +glaises glaise nom f p 1.71 8.85 0.00 0.14 +glaiseuse glaiseux adj f s 0.00 1.15 0.00 0.14 +glaiseuses glaiseux adj f p 0.00 1.15 0.00 0.07 +glaiseux glaiseux adj m 0.00 1.15 0.00 0.95 +glaive glaive nom m s 1.95 4.39 1.71 3.85 +glaives glaive nom m p 1.95 4.39 0.24 0.54 +glamour glamour nom m s 1.49 0.07 1.49 0.07 +glana glaner ver 1.20 4.93 0.00 0.14 ind:pas:3s; +glanage glanage nom m s 0.18 0.00 0.18 0.00 +glanaient glaner ver 1.20 4.93 0.00 0.14 ind:imp:3p; +glanais glaner ver 1.20 4.93 0.00 0.07 ind:imp:1s; +glanait glaner ver 1.20 4.93 0.02 0.68 ind:imp:3s; +glanant glaner ver 1.20 4.93 0.14 0.41 par:pre; +gland gland nom m s 2.95 5.27 2.14 3.04 +glandage glandage nom m s 0.03 0.00 0.03 0.00 +glandais glander ver 2.88 2.57 0.05 0.07 ind:imp:1s; +glandait glander ver 2.88 2.57 0.03 0.14 ind:imp:3s; +glande glander ver 2.88 2.57 0.86 0.88 ind:pre:1s;ind:pre:3s; +glandent glander ver 2.88 2.57 0.04 0.20 ind:pre:3p; +glander glander ver 2.88 2.57 1.37 1.15 inf; +glandes glande nom f p 2.20 4.66 1.46 4.32 +glandeur glandeur nom m s 0.48 0.41 0.33 0.14 +glandeurs glandeur nom m p 0.48 0.41 0.15 0.27 +glandez glander ver 2.88 2.57 0.08 0.07 ind:pre:2p; +glandiez glander ver 2.88 2.57 0.02 0.00 ind:imp:2p; +glandilleuse glandilleuse adj m s 0.00 0.68 0.00 0.34 +glandilleuses glandilleuse adj m p 0.00 0.68 0.00 0.34 +glandilleux glandilleux adj m 0.00 1.22 0.00 1.22 +glandons glander ver 2.88 2.57 0.01 0.00 ind:pre:1p; +glandouillant glandouiller ver 0.13 0.74 0.01 0.00 par:pre; +glandouille glandouiller ver 0.13 0.74 0.01 0.27 ind:pre:1s;ind:pre:3s; +glandouiller glandouiller ver 0.13 0.74 0.10 0.41 inf; +glandouilleur glandouilleur nom m s 0.00 0.07 0.00 0.07 +glandouillez glandouiller ver 0.13 0.74 0.01 0.00 ind:pre:2p; +glandouillé glandouiller ver m s 0.13 0.74 0.00 0.07 par:pas; +glands gland nom m p 2.95 5.27 0.81 2.23 +glandé glander ver m s 2.88 2.57 0.21 0.07 par:pas; +glandu glandu nom s 0.57 0.00 0.31 0.00 +glandulaire glandulaire adj s 0.19 0.74 0.06 0.41 +glandulaires glandulaire adj p 0.19 0.74 0.12 0.34 +glanduleuse glanduleux adj f s 0.00 0.07 0.00 0.07 +glandus glandu nom p 0.57 0.00 0.26 0.00 +glane glaner ver 1.20 4.93 0.25 0.20 ind:pre:1s;ind:pre:3s; +glanent glaner ver 1.20 4.93 0.02 0.14 ind:pre:3p; +glaner glaner ver 1.20 4.93 0.62 1.69 inf; +glanes glane nom f p 0.00 0.14 0.00 0.07 +glaneur glaneur nom m s 0.18 0.00 0.06 0.00 +glaneuse glaneur nom f s 0.18 0.00 0.13 0.00 +glanez glaner ver 1.20 4.93 0.01 0.00 ind:pre:2p; +glané glaner ver m s 1.20 4.93 0.09 0.27 par:pas; +glanée glaner ver f s 1.20 4.93 0.00 0.27 par:pas; +glanées glaner ver f p 1.20 4.93 0.01 0.47 par:pas; +glanure glanure nom f s 0.00 0.07 0.00 0.07 +glanés glaner ver m p 1.20 4.93 0.05 0.47 par:pas; +glapi glapir ver m s 0.23 6.76 0.00 0.41 par:pas; +glapie glapir ver f s 0.23 6.76 0.00 0.07 par:pas; +glapir glapir ver 0.23 6.76 0.04 1.22 inf; +glapirent glapir ver 0.23 6.76 0.00 0.14 ind:pas:3p; +glapissaient glapir ver 0.23 6.76 0.14 0.20 ind:imp:3p; +glapissait glapir ver 0.23 6.76 0.00 0.81 ind:imp:3s; +glapissant glapir ver 0.23 6.76 0.01 0.61 par:pre; +glapissante glapissant adj f s 0.01 0.61 0.00 0.34 +glapissantes glapissant adj f p 0.01 0.61 0.00 0.07 +glapissants glapissant adj m p 0.01 0.61 0.01 0.07 +glapissement glapissement nom m s 0.02 1.76 0.02 0.81 +glapissements glapissement nom m p 0.02 1.76 0.00 0.95 +glapissent glapir ver 0.23 6.76 0.00 0.14 ind:pre:3p; +glapisseurs glapisseur adj m p 0.01 0.00 0.01 0.00 +glapissions glapir ver 0.23 6.76 0.00 0.07 ind:imp:1p; +glapit glapir ver 0.23 6.76 0.04 3.11 ind:pre:3s;ind:pas:3s; +glaréole glaréole nom f s 0.04 0.00 0.04 0.00 +glas glas nom m 1.28 4.05 1.28 4.05 +glasnost glasnost nom f s 0.03 0.00 0.03 0.00 +glass glass nom m 1.23 1.28 1.05 1.28 +glasses glass nom m p 1.23 1.28 0.17 0.00 +glaça glacer ver 7.21 25.74 0.01 1.49 ind:pas:3s; +glaçage glaçage nom m s 0.77 0.07 0.75 0.07 +glaçages glaçage nom m p 0.77 0.07 0.01 0.00 +glaçaient glacer ver 7.21 25.74 0.01 0.47 ind:imp:3p; +glaçais glacer ver 7.21 25.74 0.00 0.07 ind:imp:1s; +glaçait glacer ver 7.21 25.74 0.06 2.97 ind:imp:3s; +glaçant glacer ver 7.21 25.74 0.04 0.07 par:pre; +glaçante glaçant adj f s 0.04 0.27 0.01 0.27 +glaçon glaçon nom m s 7.40 5.47 1.55 0.95 +glaçons glaçon nom m p 7.40 5.47 5.85 4.53 +glaçure glaçure nom f s 0.00 0.14 0.00 0.07 +glaçures glaçure nom f p 0.00 0.14 0.00 0.07 +glaucome glaucome nom m s 0.27 0.20 0.27 0.20 +glauque glauque adj s 1.40 9.32 1.12 6.82 +glauquement glauquement adv 0.00 0.07 0.00 0.07 +glauques glauque adj p 1.40 9.32 0.28 2.50 +glaviot glaviot nom m s 0.13 1.35 0.11 0.74 +glaviotaient glavioter ver 0.02 1.22 0.00 0.07 ind:imp:3p; +glaviotait glavioter ver 0.02 1.22 0.00 0.14 ind:imp:3s; +glaviotant glavioter ver 0.02 1.22 0.00 0.14 par:pre; +glaviote glavioter ver 0.02 1.22 0.01 0.34 ind:pre:1s;ind:pre:3s; +glavioter glavioter ver 0.02 1.22 0.01 0.54 inf; +glavioteurs glavioteur nom m p 0.00 0.07 0.00 0.07 +glaviots glaviot nom m p 0.13 1.35 0.02 0.61 +glaviotte glaviotter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +glide glide nom m s 0.07 0.00 0.07 0.00 +glioblastome glioblastome nom m s 0.04 0.00 0.04 0.00 +gliome gliome nom m s 0.05 0.00 0.05 0.00 +glissa glisser ver 34.74 229.32 0.78 30.61 ind:pas:3s; +glissade glissade nom f s 0.64 4.26 0.57 2.50 +glissades glissade nom f p 0.64 4.26 0.07 1.76 +glissai glisser ver 34.74 229.32 0.05 2.43 ind:pas:1s; +glissaient glisser ver 34.74 229.32 0.35 10.14 ind:imp:3p; +glissais glisser ver 34.74 229.32 0.09 2.30 ind:imp:1s;ind:imp:2s; +glissait glisser ver 34.74 229.32 1.00 27.97 ind:imp:3s; +glissandi glissando nom m p 0.01 0.27 0.00 0.07 +glissando glissando nom m s 0.01 0.27 0.01 0.14 +glissandos glissando nom m p 0.01 0.27 0.00 0.07 +glissant glissant adj m s 3.54 8.24 1.76 3.18 +glissante glissant adj f s 3.54 8.24 1.34 2.64 +glissantes glissant adj f p 3.54 8.24 0.35 1.49 +glissants glissant adj m p 3.54 8.24 0.09 0.95 +glisse_la_moi glisse_la_moi nom f s 0.10 0.00 0.10 0.00 +glisse glisser ver 34.74 229.32 8.99 31.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +glissement glissement nom m s 0.48 7.50 0.35 6.62 +glissements glissement nom m p 0.48 7.50 0.13 0.88 +glissent glisser ver 34.74 229.32 1.22 8.65 ind:pre:3p; +glisser glisser ver 34.74 229.32 9.01 61.62 ind:pre:2p;inf; +glissera glisser ver 34.74 229.32 0.17 0.68 ind:fut:3s; +glisserai glisser ver 34.74 229.32 0.41 0.27 ind:fut:1s; +glisseraient glisser ver 34.74 229.32 0.01 0.41 cnd:pre:3p; +glisserais glisser ver 34.74 229.32 0.04 0.54 cnd:pre:1s;cnd:pre:2s; +glisserait glisser ver 34.74 229.32 0.15 0.95 cnd:pre:3s; +glisserez glisser ver 34.74 229.32 0.12 0.00 ind:fut:2p; +glisseriez glisser ver 34.74 229.32 0.02 0.07 cnd:pre:2p; +glisserons glisser ver 34.74 229.32 0.01 0.07 ind:fut:1p; +glisseront glisser ver 34.74 229.32 0.05 0.27 ind:fut:3p; +glisses glisser ver 34.74 229.32 0.72 0.41 ind:pre:2s; +glissez glisser ver 34.74 229.32 1.08 0.27 imp:pre:2p;ind:pre:2p; +glissions glisser ver 34.74 229.32 0.03 1.01 ind:imp:1p; +glissière glissière nom f s 0.24 1.96 0.22 1.69 +glissières glissière nom f p 0.24 1.96 0.03 0.27 +glissoire glissoire nom f s 0.04 0.00 0.04 0.00 +glissâmes glisser ver 34.74 229.32 0.00 0.20 ind:pas:1p; +glissons glisser ver 34.74 229.32 0.47 0.54 imp:pre:1p;ind:pre:1p; +glissât glisser ver 34.74 229.32 0.00 0.34 sub:imp:3s; +glissèrent glisser ver 34.74 229.32 0.01 2.50 ind:pas:3p; +glissé glisser ver m s 34.74 229.32 8.77 22.97 par:pas; +glissée glisser ver f s 34.74 229.32 0.39 5.20 par:pas; +glissées glisser ver f p 34.74 229.32 0.04 1.01 par:pas; +glissés glisser ver m p 34.74 229.32 0.07 2.43 par:pas; +global global adj m s 3.59 2.57 2.38 1.15 +globale global adj f s 3.59 2.57 1.19 1.42 +globalement globalement adv 0.68 0.61 0.68 0.61 +globalisation globalisation nom f s 0.19 0.00 0.19 0.00 +globalisé globaliser ver m s 0.01 0.00 0.01 0.00 par:pas; +globalité globalité nom f s 0.04 0.07 0.04 0.07 +globaux global adj m p 3.59 2.57 0.02 0.00 +globe_trotter globe_trotter nom m s 0.22 0.41 0.20 0.27 +globe_trotter globe_trotter nom m p 0.22 0.41 0.02 0.14 +globe globe nom m s 4.21 11.89 3.17 8.58 +globes globe nom m p 4.21 11.89 1.04 3.31 +globulaire globulaire adj s 0.09 0.34 0.04 0.14 +globulaires globulaire adj p 0.09 0.34 0.04 0.20 +globule globule nom m s 3.25 1.28 0.38 0.27 +globules globule nom m p 3.25 1.28 2.88 1.01 +globuleuse globuleux adj f s 0.27 4.80 0.00 0.14 +globuleux globuleux adj m 0.27 4.80 0.27 4.66 +globuline globuline nom f s 0.01 0.00 0.01 0.00 +glockenspiel glockenspiel nom m s 0.03 0.07 0.03 0.07 +gloire gloire nom s 35.27 50.88 34.78 48.51 +gloires gloire nom f p 35.27 50.88 0.48 2.36 +glomérule glomérule nom m s 0.00 0.07 0.00 0.07 +glop glop nom f s 0.01 0.27 0.01 0.27 +gloria gloria nom m s 2.66 0.81 2.66 0.81 +gloriette gloriette nom f s 0.10 0.34 0.10 0.27 +gloriettes gloriette nom f p 0.10 0.34 0.00 0.07 +glorieuse glorieux adj f s 7.41 18.31 2.44 5.54 +glorieusement glorieusement adv 0.34 1.82 0.34 1.82 +glorieuses glorieux adj f p 7.41 18.31 0.28 1.96 +glorieux glorieux adj m 7.41 18.31 4.68 10.81 +glorifia glorifier ver 1.82 3.65 0.01 0.14 ind:pas:3s; +glorifiaient glorifier ver 1.82 3.65 0.01 0.27 ind:imp:3p; +glorifiait glorifier ver 1.82 3.65 0.12 0.27 ind:imp:3s; +glorifiant glorifier ver 1.82 3.65 0.02 0.20 par:pre; +glorification glorification nom f s 0.22 0.20 0.22 0.20 +glorifie glorifier ver 1.82 3.65 0.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +glorifient glorifier ver 1.82 3.65 0.22 0.20 ind:pre:3p; +glorifier glorifier ver 1.82 3.65 0.56 1.22 inf; +glorifiez glorifier ver 1.82 3.65 0.08 0.07 imp:pre:2p;ind:pre:2p; +glorifions glorifier ver 1.82 3.65 0.05 0.07 imp:pre:1p;ind:pre:1p; +glorifié glorifier ver m s 1.82 3.65 0.21 0.54 par:pas; +glorifiées glorifier ver f p 1.82 3.65 0.00 0.07 par:pas; +glorifiés glorifier ver m p 1.82 3.65 0.00 0.14 par:pas; +gloriole gloriole nom f s 0.03 1.69 0.03 1.69 +glosaient gloser ver 0.00 0.61 0.00 0.07 ind:imp:3p; +glose glose nom f s 0.01 0.61 0.01 0.20 +gloser gloser ver 0.00 0.61 0.00 0.27 inf; +gloses glose nom f p 0.01 0.61 0.00 0.41 +glossaire glossaire nom m s 0.04 0.07 0.04 0.07 +glossateurs glossateur nom m p 0.00 0.07 0.00 0.07 +glossématique glossématique nom f s 0.00 0.07 0.00 0.07 +glosé gloser ver m s 0.00 0.61 0.00 0.07 par:pas; +glosées gloser ver f p 0.00 0.61 0.00 0.07 par:pas; +glotte glotte nom f s 0.12 2.03 0.12 2.03 +glottique glottique adj m s 0.00 0.07 0.00 0.07 +glouglou glouglou nom m s 0.24 1.22 0.23 0.61 +glouglous glouglou nom m p 0.24 1.22 0.01 0.61 +glougloutait glouglouter ver 0.00 0.61 0.00 0.14 ind:imp:3s; +glougloutant glouglouter ver 0.00 0.61 0.00 0.14 par:pre; +glougloute glouglouter ver 0.00 0.61 0.00 0.27 ind:pre:3s; +glougloutement glougloutement nom m s 0.01 0.14 0.01 0.14 +glouglouter glouglouter ver 0.00 0.61 0.00 0.07 inf; +gloussa glousser ver 0.98 5.61 0.00 1.08 ind:pas:3s; +gloussaient glousser ver 0.98 5.61 0.00 0.41 ind:imp:3p; +gloussait glousser ver 0.98 5.61 0.03 0.88 ind:imp:3s; +gloussant glousser ver 0.98 5.61 0.04 0.61 par:pre; +gloussante gloussant adj f s 0.01 0.54 0.01 0.14 +gloussantes gloussant adj f p 0.01 0.54 0.00 0.14 +gloussants gloussant adj m p 0.01 0.54 0.00 0.07 +glousse glousser ver 0.98 5.61 0.38 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gloussement gloussement nom m s 0.26 3.72 0.21 1.22 +gloussements gloussement nom m p 0.26 3.72 0.05 2.50 +gloussent glousser ver 0.98 5.61 0.03 0.07 ind:pre:3p; +glousser glousser ver 0.98 5.61 0.43 1.42 inf; +glousserait glousser ver 0.98 5.61 0.00 0.07 cnd:pre:3s; +gloussez glousser ver 0.98 5.61 0.02 0.00 ind:pre:2p; +gloussèrent glousser ver 0.98 5.61 0.00 0.07 ind:pas:3p; +gloussé glousser ver m s 0.98 5.61 0.05 0.34 par:pas; +glouton glouton nom m s 1.10 0.54 0.78 0.34 +gloutonnant gloutonner ver 0.00 0.14 0.00 0.14 par:pre; +gloutonne glouton adj f s 0.69 1.69 0.22 0.74 +gloutonnement gloutonnement adv 0.00 0.54 0.00 0.54 +gloutonnerie gloutonnerie nom f s 0.27 0.74 0.27 0.74 +gloutons glouton nom m p 1.10 0.54 0.32 0.07 +gloxinias gloxinia nom m p 0.00 0.07 0.00 0.07 +glèbe glèbe nom f s 0.51 0.95 0.51 0.88 +glèbes glèbe nom f p 0.51 0.95 0.00 0.07 +glène glène nom f s 0.00 0.07 0.00 0.07 +glu glu nom f s 0.56 2.57 0.56 2.43 +gluant gluant adj m s 1.96 15.20 1.23 4.73 +gluante gluant adj f s 1.96 15.20 0.40 5.81 +gluantes gluant adj f p 1.96 15.20 0.07 2.09 +gluants gluant adj m p 1.96 15.20 0.26 2.57 +glucagon glucagon nom m s 0.04 0.00 0.04 0.00 +glucide glucide nom m s 0.51 0.20 0.00 0.07 +glucides glucide nom m p 0.51 0.20 0.51 0.14 +gluconique gluconique adj s 0.01 0.00 0.01 0.00 +glucose glucose nom m s 2.08 0.20 2.08 0.20 +glue gluer ver 0.42 1.22 0.35 0.14 ind:pre:3s; +gluent gluer ver 0.42 1.22 0.00 0.07 ind:pre:3p; +glénoïde glénoïde adj f s 0.03 0.00 0.03 0.00 +gluon gluon nom m s 0.04 0.00 0.04 0.00 +glus glu nom f p 0.56 2.57 0.00 0.14 +glutamate glutamate nom m s 0.16 0.00 0.16 0.00 +gluten gluten nom m s 0.06 0.07 0.06 0.07 +glycine glycine nom f s 0.26 4.26 0.21 1.96 +glycines glycine nom f p 0.26 4.26 0.05 2.30 +glycol glycol nom m s 0.12 0.00 0.12 0.00 +glycoprotéine glycoprotéine nom f s 0.03 0.00 0.03 0.00 +glycémie glycémie nom f s 0.44 0.00 0.44 0.00 +glycérine glycérine nom f s 1.04 0.14 1.04 0.14 +glycérol glycérol nom m s 0.01 0.00 0.01 0.00 +glyphe glyphe nom m s 0.24 0.00 0.06 0.00 +glyphes glyphe nom m p 0.24 0.00 0.18 0.00 +gnôle gnôle nom f s 3.24 1.55 3.24 1.55 +gna_gna gna_gna ono 0.14 0.14 0.14 0.14 +gnafron gnafron nom m s 0.01 0.34 0.01 0.20 +gnafrons gnafron nom m p 0.01 0.34 0.00 0.14 +gnagnagna gnagnagna ono 0.01 1.35 0.01 1.35 +gnangnan gnangnan adj 0.23 0.47 0.23 0.47 +gnard gnard nom m s 0.00 0.34 0.00 0.20 +gnards gnard nom m p 0.00 0.34 0.00 0.14 +gnaule gnaule nom f s 0.01 0.00 0.01 0.00 +gnian_gnian gnian_gnian nom m s 0.01 0.00 0.01 0.00 +gniard gniard nom m s 0.00 1.15 0.00 0.27 +gniards gniard nom m p 0.00 1.15 0.00 0.88 +gniouf gniouf nom f s 0.00 0.27 0.00 0.27 +gnocchi gnocchi nom m s 2.02 0.07 1.06 0.00 +gnocchis gnocchi nom m p 2.02 0.07 0.96 0.07 +gnognote gnognote nom f s 0.04 0.41 0.04 0.41 +gnognotte gnognotte nom f s 0.23 0.20 0.23 0.20 +gnole gnole nom f s 0.55 1.01 0.55 1.01 +gnome gnome nom m s 2.95 2.03 2.36 1.01 +gnomes gnome nom m p 2.95 2.03 0.59 1.01 +gnon gnon nom m s 1.02 1.82 0.42 0.54 +gnons gnon nom m p 1.02 1.82 0.59 1.28 +gnose gnose nom f s 0.00 0.07 0.00 0.07 +gnosticisme gnosticisme nom m s 0.01 0.07 0.01 0.07 +gnostique gnostique adj m s 0.04 0.00 0.01 0.00 +gnostiques gnostique adj m p 0.04 0.00 0.03 0.00 +gnou gnou nom m s 0.20 0.27 0.17 0.00 +gnouf gnouf nom m s 0.41 1.01 0.41 1.01 +gnous gnou nom m p 0.20 0.27 0.03 0.27 +go go nom m s 15.32 2.70 15.32 2.70 +goût goût nom m s 57.94 141.82 50.51 124.80 +goûta goûter ver 42.27 39.86 0.00 1.89 ind:pas:3s; +goûtables goûtable adj m p 0.00 0.07 0.00 0.07 +goûtai goûter ver 42.27 39.86 0.02 0.34 ind:pas:1s; +goûtaient goûter ver 42.27 39.86 0.02 0.68 ind:imp:3p; +goûtais goûter ver 42.27 39.86 0.21 1.49 ind:imp:1s;ind:imp:2s; +goûtait goûter ver 42.27 39.86 0.09 3.85 ind:imp:3s; +goûtant goûter ver 42.27 39.86 0.05 0.74 par:pre; +goûte goûter ver 42.27 39.86 9.85 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +goûtent goûter ver 42.27 39.86 0.14 0.61 ind:pre:3p; +goûter goûter ver 42.27 39.86 15.91 15.20 inf; +goûtera goûter ver 42.27 39.86 0.24 0.07 ind:fut:3s; +goûterai goûter ver 42.27 39.86 0.50 0.07 ind:fut:1s; +goûterais goûter ver 42.27 39.86 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +goûterait goûter ver 42.27 39.86 0.02 0.07 cnd:pre:3s; +goûteras goûter ver 42.27 39.86 0.08 0.00 ind:fut:2s; +goûterez goûter ver 42.27 39.86 0.33 0.27 ind:fut:2p; +goûterons goûter ver 42.27 39.86 0.02 0.00 ind:fut:1p;; +goûteront goûter ver 42.27 39.86 0.06 0.00 ind:fut:3p; +goûters goûter nom m p 2.26 7.84 0.42 2.09 +goûtes goûter ver 42.27 39.86 1.15 0.00 ind:pre:2s; +goûteur goûteur nom m s 0.14 0.00 0.12 0.00 +goûteuse goûteur nom f s 0.14 0.00 0.03 0.00 +goûteuses goûteux adj f p 0.13 0.27 0.02 0.07 +goûteux goûteux adj m s 0.13 0.27 0.09 0.14 +goûtez goûter ver 42.27 39.86 4.28 0.88 imp:pre:2p;ind:pre:2p; +goûtiez goûter ver 42.27 39.86 0.43 0.00 ind:imp:2p; +goûtions goûter ver 42.27 39.86 0.03 0.61 ind:imp:1p; +goûtâmes goûter ver 42.27 39.86 0.14 0.00 ind:pas:1p; +goûtons goûter ver 42.27 39.86 0.72 0.54 imp:pre:1p;ind:pre:1p; +goûts goût nom m p 57.94 141.82 7.43 17.03 +goûtèrent goûter ver 42.27 39.86 0.00 0.54 ind:pas:3p; +goûté goûter ver m s 42.27 39.86 7.01 6.42 par:pas; +goûtée goûter ver f s 42.27 39.86 0.57 0.47 par:pas; +goûtées goûter ver f p 42.27 39.86 0.23 0.34 par:pas; +goûtés goûter ver m p 42.27 39.86 0.06 0.27 par:pas; +goal goal nom m s 1.32 1.55 1.32 1.49 +goals goal nom m p 1.32 1.55 0.00 0.07 +goba gober ver 5.90 5.68 0.01 0.34 ind:pas:3s; +gobage gobage nom m s 0.04 0.27 0.04 0.07 +gobages gobage nom m p 0.04 0.27 0.00 0.20 +gobaient gober ver 5.90 5.68 0.01 0.14 ind:imp:3p; +gobais gober ver 5.90 5.68 0.04 0.07 ind:imp:1s; +gobait gober ver 5.90 5.68 0.06 0.27 ind:imp:3s; +gobant gober ver 5.90 5.68 0.03 0.41 par:pre; +gobe_mouches gobe_mouches nom m 0.02 0.14 0.02 0.14 +gobe gober ver 5.90 5.68 0.86 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gobelet gobelet nom m s 3.25 4.46 2.21 2.16 +gobelets gobelet nom m p 3.25 4.46 1.04 2.30 +gobelin gobelin nom m s 0.19 0.41 0.04 0.00 +gobelins gobelin nom m p 0.19 0.41 0.14 0.41 +gobelottes gobelotter ver 0.00 0.07 0.00 0.07 ind:pre:2s; +gobent gober ver 5.90 5.68 0.19 0.34 ind:pre:3p; +gober gober ver 5.90 5.68 2.50 2.09 inf; +gobera gober ver 5.90 5.68 0.06 0.00 ind:fut:3s; +goberaient gober ver 5.90 5.68 0.04 0.00 cnd:pre:3p; +goberait gober ver 5.90 5.68 0.02 0.07 cnd:pre:3s; +goberge goberger ver 0.03 0.74 0.01 0.27 ind:pre:1s;ind:pre:3s; +gobergeait goberger ver 0.03 0.74 0.00 0.07 ind:imp:3s; +gobergent goberger ver 0.03 0.74 0.01 0.14 ind:pre:3p; +goberger goberger ver 0.03 0.74 0.00 0.14 inf; +gobergez goberger ver 0.03 0.74 0.01 0.07 imp:pre:2p; +gobergé goberger ver m s 0.03 0.74 0.00 0.07 par:pas; +goberont gober ver 5.90 5.68 0.04 0.00 ind:fut:3p; +gobes gober ver 5.90 5.68 0.28 0.14 ind:pre:2s; +gobet gobet nom m s 0.00 0.14 0.00 0.07 +gobets gobet nom m p 0.00 0.14 0.00 0.07 +gobette gobeter ver 0.00 0.41 0.00 0.41 ind:pre:3s; +gobeur gobeur nom m s 0.04 0.07 0.03 0.00 +gobeurs gobeur nom m p 0.04 0.07 0.00 0.07 +gobeuse gobeuse nom f s 0.08 0.00 0.08 0.00 +gobez gober ver 5.90 5.68 0.31 0.00 imp:pre:2p;ind:pre:2p; +gobions gober ver 5.90 5.68 0.00 0.07 ind:imp:1p; +gobèrent gober ver 5.90 5.68 0.00 0.07 ind:pas:3p; +gobé gober ver m s 5.90 5.68 1.44 0.74 par:pas; +gobée gober ver f s 5.90 5.68 0.00 0.14 par:pas; +gobées gober ver f p 5.90 5.68 0.02 0.00 par:pas; +gobés gober ver m p 5.90 5.68 0.00 0.14 par:pas; +gâcha gâcher ver 49.57 18.51 0.00 0.27 ind:pas:3s; +gâchage gâchage nom m s 0.00 0.07 0.00 0.07 +gâchaient gâcher ver 49.57 18.51 0.02 0.47 ind:imp:3p; +gâchais gâcher ver 49.57 18.51 0.10 0.14 ind:imp:1s;ind:imp:2s; +gâchait gâcher ver 49.57 18.51 0.19 1.49 ind:imp:3s; +gâchant gâcher ver 49.57 18.51 0.03 0.14 par:pre; +gâche gâcher ver 49.57 18.51 7.08 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +gâchent gâcher ver 49.57 18.51 0.66 0.34 ind:pre:3p; +gâcher gâcher ver 49.57 18.51 18.26 6.49 inf; +gâchera gâcher ver 49.57 18.51 0.31 0.00 ind:fut:3s; +gâcherai gâcher ver 49.57 18.51 0.70 0.00 ind:fut:1s; +gâcheraient gâcher ver 49.57 18.51 0.03 0.00 cnd:pre:3p; +gâcherais gâcher ver 49.57 18.51 0.26 0.00 cnd:pre:1s;cnd:pre:2s; +gâcherait gâcher ver 49.57 18.51 0.56 0.20 cnd:pre:3s; +gâcheras gâcher ver 49.57 18.51 0.08 0.00 ind:fut:2s; +gâcherez gâcher ver 49.57 18.51 0.05 0.00 ind:fut:2p; +gâcheriez gâcher ver 49.57 18.51 0.26 0.00 cnd:pre:2p; +gâches gâcher ver 49.57 18.51 2.24 0.41 ind:pre:2s; +gâchette gâchette nom f s 5.09 1.82 4.89 1.82 +gâchettes gâchette nom f p 5.09 1.82 0.19 0.00 +gâcheur gâcheur nom m s 0.01 0.07 0.01 0.00 +gâcheurs gâcheur nom m p 0.01 0.07 0.00 0.07 +gâcheuse gâcheur adj f s 0.00 0.14 0.00 0.14 +gâchez gâcher ver 49.57 18.51 1.53 0.41 imp:pre:2p;ind:pre:2p; +gâchiez gâcher ver 49.57 18.51 0.04 0.00 ind:imp:2p; +gâchis gâchis nom m 6.24 3.85 6.24 3.85 +gâchons gâcher ver 49.57 18.51 0.90 0.20 imp:pre:1p;ind:pre:1p; +gâchât gâcher ver 49.57 18.51 0.00 0.07 sub:imp:3s; +gâché gâcher ver m s 49.57 18.51 14.10 4.19 par:pas; +gâchée gâcher ver f s 49.57 18.51 1.77 1.28 par:pas; +gâchées gâcher ver f p 49.57 18.51 0.30 0.74 par:pas; +gâchés gâcher ver m p 49.57 18.51 0.10 0.27 par:pas; +goda goder ver 0.70 1.62 0.01 0.00 ind:pas:3s; +godaille godailler ver 0.01 0.27 0.01 0.14 ind:pre:3s; +godaillera godailler ver 0.01 0.27 0.00 0.07 ind:fut:3s; +godailles godailler ver 0.01 0.27 0.00 0.07 ind:pre:2s; +godait goder ver 0.70 1.62 0.00 0.07 ind:imp:3s; +godant goder ver 0.70 1.62 0.00 0.07 par:pre; +godasse godasse nom f s 2.99 8.92 0.46 1.55 +godasses godasse nom f p 2.99 8.92 2.53 7.36 +goddam goddam ono 0.01 0.00 0.01 0.00 +gode goder ver 0.70 1.62 0.32 0.68 imp:pre:2s;ind:pre:3s; +godelureau godelureau nom m s 0.01 0.34 0.01 0.20 +godelureaux godelureau nom m p 0.01 0.34 0.00 0.14 +godemiché godemiché nom m s 0.63 0.81 0.59 0.61 +godemichés godemiché nom m p 0.63 0.81 0.04 0.20 +godent goder ver 0.70 1.62 0.00 0.07 ind:pre:3p; +goder goder ver 0.70 1.62 0.00 0.61 inf; +goderas goder ver 0.70 1.62 0.00 0.07 ind:fut:2s; +godes goder ver 0.70 1.62 0.36 0.07 ind:pre:2s; +godet godet nom m s 0.33 7.50 0.29 4.32 +godets godet nom m p 0.33 7.50 0.04 3.18 +godiche godiche nom f s 0.09 0.00 0.07 0.00 +godiches godiche adj p 0.07 0.95 0.02 0.27 +godillais godiller ver 0.00 0.61 0.00 0.07 ind:imp:1s; +godillait godiller ver 0.00 0.61 0.00 0.07 ind:imp:3s; +godillant godiller ver 0.00 0.61 0.00 0.20 par:pre; +godille godille nom f s 0.20 0.88 0.00 0.88 +godiller godiller ver 0.00 0.61 0.00 0.14 inf; +godilles godille nom f p 0.20 0.88 0.20 0.00 +godilleur godilleur nom m s 0.00 0.14 0.00 0.14 +godillot godillot nom m s 0.35 3.24 0.04 0.47 +godillots godillot nom m p 0.35 3.24 0.32 2.77 +godillé godiller ver m s 0.00 0.61 0.00 0.07 par:pas; +godronnés godronner ver m p 0.00 0.07 0.00 0.07 par:pas; +godrons godron nom m p 0.00 0.07 0.00 0.07 +goglu goglu nom m s 0.02 0.00 0.02 0.00 +gogo gogo nom m s 2.19 1.96 1.85 1.42 +gogol gogol adj s 0.30 0.14 0.29 0.07 +gogols gogol adj p 0.30 0.14 0.01 0.07 +gogos gogo nom m p 2.19 1.96 0.35 0.54 +gogs gog nom m p 0.03 0.88 0.03 0.88 +goguenard goguenard adj m s 0.01 6.15 0.01 3.85 +goguenarda goguenarder ver 0.00 0.20 0.00 0.07 ind:pas:3s; +goguenarde goguenard adj f s 0.01 6.15 0.00 1.01 +goguenardes goguenard adj f p 0.01 6.15 0.00 0.14 +goguenards goguenard adj m p 0.01 6.15 0.00 1.15 +goguenots goguenot nom m p 0.00 0.20 0.00 0.20 +gogues gogues nom m p 0.23 2.57 0.23 2.57 +goguette goguette nom f s 0.47 1.35 0.47 1.15 +goguettes goguette nom f p 0.47 1.35 0.00 0.20 +goinfraient goinfrer ver 0.98 1.62 0.00 0.07 ind:imp:3p; +goinfrait goinfrer ver 0.98 1.62 0.00 0.14 ind:imp:3s; +goinfre goinfre nom s 0.52 0.61 0.34 0.34 +goinfrent goinfrer ver 0.98 1.62 0.03 0.07 ind:pre:3p; +goinfrer goinfrer ver 0.98 1.62 0.67 0.95 inf; +goinfreras goinfrer ver 0.98 1.62 0.00 0.07 ind:fut:2s; +goinfrerie goinfrerie nom f s 0.12 0.41 0.12 0.41 +goinfres goinfre nom p 0.52 0.61 0.17 0.27 +goinfrez goinfrer ver 0.98 1.62 0.03 0.07 imp:pre:2p;ind:pre:2p; +goinfré goinfrer ver m s 0.98 1.62 0.06 0.00 par:pas; +goinfrée goinfrer ver f s 0.98 1.62 0.01 0.07 par:pas; +goinfrés goinfrer ver m p 0.98 1.62 0.01 0.07 par:pas; +goitre goitre nom m s 0.11 0.68 0.10 0.54 +goitres goitre nom m p 0.11 0.68 0.01 0.14 +goitreux goitreux nom m 0.00 0.34 0.00 0.34 +gold gold adj 3.11 0.41 3.11 0.41 +golden golden nom s 2.37 0.68 2.37 0.61 +goldens golden nom p 2.37 0.68 0.00 0.07 +goldo goldo nom f s 0.00 0.61 0.00 0.54 +goldos goldo nom f p 0.00 0.61 0.00 0.07 +golem golem nom m s 0.10 0.07 0.10 0.07 +golf_club golf_club nom m s 0.01 0.07 0.01 0.07 +golf golf nom m s 14.14 7.30 14.05 7.16 +golfe golfe nom m s 1.69 6.49 1.55 5.95 +golfes golfe nom m p 1.69 6.49 0.14 0.54 +golfeur golfeur nom m s 0.85 0.34 0.58 0.07 +golfeurs golfeur nom m p 0.85 0.34 0.22 0.07 +golfeuse golfeur nom f s 0.85 0.34 0.05 0.07 +golfeuses golfeuse nom f p 0.01 0.00 0.01 0.00 +golfs golf nom m p 14.14 7.30 0.09 0.14 +golgotha golgotha nom m s 0.00 0.07 0.00 0.07 +goliath goliath nom m s 0.00 0.07 0.00 0.07 +gombo gombo nom m s 2.44 0.14 2.00 0.14 +gombos gombo nom m p 2.44 0.14 0.43 0.00 +gomina gomina nom f s 0.14 1.01 0.14 1.01 +gominer gominer ver 0.29 1.82 0.00 0.07 inf; +gominé gominer ver m s 0.29 1.82 0.04 0.61 par:pas; +gominée gominer ver f s 0.29 1.82 0.00 0.34 par:pas; +gominées gominer ver f p 0.29 1.82 0.00 0.07 par:pas; +gominés gominer ver m p 0.29 1.82 0.25 0.74 par:pas; +gomma gommer ver 0.57 4.73 0.00 0.20 ind:pas:3s; +gommage gommage nom m s 0.25 0.07 0.25 0.07 +gommait gommer ver 0.57 4.73 0.00 0.47 ind:imp:3s; +gommant gommer ver 0.57 4.73 0.02 0.20 par:pre; +gomme gomme nom f s 3.81 9.93 3.21 9.26 +gomment gommer ver 0.57 4.73 0.00 0.07 ind:pre:3p; +gommer gommer ver 0.57 4.73 0.26 1.69 inf; +gommerait gommer ver 0.57 4.73 0.00 0.20 cnd:pre:3s; +gommes gomme nom f p 3.81 9.93 0.60 0.68 +gommette gommette nom f s 0.03 0.00 0.03 0.00 +gommeuse gommeux adj f s 0.00 0.34 0.00 0.14 +gommeux gommeux nom m 0.05 0.68 0.05 0.68 +gommier gommier nom m s 0.06 0.27 0.05 0.00 +gommiers gommier nom m p 0.06 0.27 0.01 0.27 +gommé gommer ver m s 0.57 4.73 0.19 0.68 par:pas; +gommée gommer ver f s 0.57 4.73 0.01 0.41 par:pas; +gommées gommer ver f p 0.57 4.73 0.01 0.14 par:pas; +gommés gommer ver m p 0.57 4.73 0.01 0.14 par:pas; +goménol goménol nom m s 0.00 0.07 0.00 0.07 +goménolée goménolé adj f s 0.00 0.14 0.00 0.14 +gon gon nom m s 0.86 0.00 0.86 0.00 +gonade gonade nom f s 0.16 0.07 0.04 0.00 +gonades gonade nom f p 0.16 0.07 0.12 0.07 +gonadotropes gonadotrope adj f p 0.01 0.00 0.01 0.00 +gonadotrophine gonadotrophine nom f s 0.01 0.00 0.01 0.00 +goncier goncier nom m s 0.00 0.14 0.00 0.14 +gond gond nom m s 0.91 2.97 0.04 0.14 +gonde gonder ver 0.01 0.07 0.00 0.07 ind:pre:3s; +gonder gonder ver 0.01 0.07 0.01 0.00 inf; +gondolaient gondoler ver 0.11 2.70 0.00 0.47 ind:imp:3p; +gondolais gondoler ver 0.11 2.70 0.00 0.14 ind:imp:1s;ind:imp:2s; +gondolait gondoler ver 0.11 2.70 0.00 0.27 ind:imp:3s; +gondolant gondoler ver 0.11 2.70 0.00 0.20 par:pre; +gondole gondole nom f s 1.26 4.93 1.01 3.31 +gondolement gondolement nom m s 0.00 0.07 0.00 0.07 +gondolent gondoler ver 0.11 2.70 0.01 0.20 ind:pre:3p; +gondoler gondoler ver 0.11 2.70 0.02 0.41 inf; +gondolera gondoler ver 0.11 2.70 0.00 0.07 ind:fut:3s; +gondoles gondole nom f p 1.26 4.93 0.25 1.62 +gondolier gondolier nom m s 0.72 1.15 0.59 0.74 +gondoliers gondolier nom m p 0.72 1.15 0.11 0.41 +gondolière gondolier nom f s 0.72 1.15 0.03 0.00 +gondolèrent gondoler ver 0.11 2.70 0.00 0.07 ind:pas:3p; +gondolé gondoler ver m s 0.11 2.70 0.01 0.14 par:pas; +gondolée gondolé adj f s 0.01 0.68 0.00 0.27 +gondolées gondolé adj f p 0.01 0.68 0.00 0.20 +gondolés gondolé adj m p 0.01 0.68 0.00 0.14 +gonds gond nom m p 0.91 2.97 0.87 2.84 +gone gone nom m s 1.00 0.14 1.00 0.14 +gonelle gonelle nom f s 0.00 0.14 0.00 0.14 +gonfalon gonfalon nom m s 0.00 0.20 0.00 0.14 +gonfaloniers gonfalonier nom m p 0.00 0.07 0.00 0.07 +gonfalons gonfalon nom m p 0.00 0.20 0.00 0.07 +gonfanon gonfanon nom m s 0.00 0.20 0.00 0.14 +gonfanons gonfanon nom m p 0.00 0.20 0.00 0.07 +gonfla gonfler ver 16.52 47.57 0.02 2.36 ind:pas:3s; +gonflable gonflable adj s 1.35 0.95 0.92 0.54 +gonflables gonflable adj p 1.35 0.95 0.44 0.41 +gonflage gonflage nom m s 0.00 0.20 0.00 0.20 +gonflaient gonfler ver 16.52 47.57 0.00 1.96 ind:imp:3p; +gonflais gonfler ver 16.52 47.57 0.02 0.07 ind:imp:1s; +gonflait gonfler ver 16.52 47.57 0.60 7.91 ind:imp:3s; +gonflant gonflant adj m s 0.21 0.54 0.19 0.34 +gonflante gonflant adj f s 0.21 0.54 0.01 0.14 +gonflantes gonflant adj f p 0.21 0.54 0.00 0.07 +gonflants gonflant adj m p 0.21 0.54 0.01 0.00 +gonfle gonfler ver 16.52 47.57 4.14 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gonflement gonflement nom m s 0.24 1.15 0.20 0.88 +gonflements gonflement nom m p 0.24 1.15 0.04 0.27 +gonflent gonfler ver 16.52 47.57 0.50 2.09 ind:pre:3p; +gonfler gonfler ver 16.52 47.57 3.17 5.68 inf; +gonflera gonfler ver 16.52 47.57 0.07 0.07 ind:fut:3s; +gonflerait gonfler ver 16.52 47.57 0.02 0.14 cnd:pre:3s; +gonfles gonfler ver 16.52 47.57 1.16 0.14 ind:pre:2s; +gonflette gonflette nom f s 0.46 0.00 0.46 0.00 +gonfleur gonfleur nom m s 0.00 0.20 0.00 0.20 +gonflez gonfler ver 16.52 47.57 1.20 0.07 imp:pre:2p;ind:pre:2p; +gonflèrent gonfler ver 16.52 47.57 0.01 0.61 ind:pas:3p; +gonflé gonfler ver m s 16.52 47.57 3.96 7.30 par:pas; +gonflée gonfler ver f s 16.52 47.57 0.80 3.92 par:pas; +gonflées gonflé adj f p 3.56 12.64 0.34 3.24 +gonflés gonflé adj m p 3.56 12.64 1.20 3.18 +gong gong nom m s 2.41 3.65 2.35 3.51 +gongoriste gongoriste adj m s 0.00 0.07 0.00 0.07 +gongs gong nom m p 2.41 3.65 0.06 0.14 +goniomètre goniomètre nom m s 0.00 0.07 0.00 0.07 +gonococcie gonococcie nom f s 0.03 0.00 0.03 0.00 +gonococcique gonococcique adj s 0.01 0.00 0.01 0.00 +gonocoque gonocoque nom m s 0.01 0.41 0.00 0.20 +gonocoques gonocoque nom m p 0.01 0.41 0.01 0.20 +gonorrhée gonorrhée nom f s 0.08 0.00 0.08 0.00 +gonze gonze nom m s 0.07 6.89 0.06 4.05 +gonzes gonze nom m p 0.07 6.89 0.01 2.84 +gonzesse gonzesse nom f s 11.29 15.61 7.74 7.57 +gonzesses gonzesse nom f p 11.29 15.61 3.56 8.04 +gopak gopak nom m s 0.00 0.07 0.00 0.07 +gâpette gâpette nom f s 0.00 0.07 0.00 0.07 +gopher gopher nom m s 0.02 0.07 0.02 0.07 +gord gord nom m s 0.25 0.00 0.25 0.00 +gordien gordien adj m s 0.00 0.20 0.00 0.14 +gordiens gordien adj m p 0.00 0.20 0.00 0.07 +gore gore adj s 0.57 0.14 0.57 0.14 +goret goret nom m s 0.85 1.28 0.81 0.95 +gorets goret nom m p 0.85 1.28 0.04 0.34 +gorge_de_pigeon gorge_de_pigeon adj m s 0.01 0.14 0.01 0.14 +gorge gorge nom s 30.87 86.82 29.57 82.64 +gorgea gorger ver 1.52 8.04 0.01 0.14 ind:pas:3s; +gorgeai gorger ver 1.52 8.04 0.00 0.14 ind:pas:1s; +gorgeaient gorger ver 1.52 8.04 0.00 0.14 ind:imp:3p; +gorgeais gorger ver 1.52 8.04 0.00 0.07 ind:imp:1s; +gorgeait gorger ver 1.52 8.04 0.01 0.47 ind:imp:3s; +gorgeant gorger ver 1.52 8.04 0.01 0.20 par:pre; +gorgent gorger ver 1.52 8.04 0.02 0.07 ind:pre:3p; +gorgeon gorgeon nom m s 0.01 1.01 0.01 0.95 +gorgeons gorger ver 1.52 8.04 0.00 0.07 ind:pre:1p; +gorger gorger ver 1.52 8.04 0.03 0.47 inf; +gorgerette gorgerette nom f s 0.00 0.07 0.00 0.07 +gorgerin gorgerin nom m s 0.01 0.07 0.01 0.07 +gorges gorge nom f p 30.87 86.82 1.30 4.19 +gorget gorget nom m s 0.00 0.07 0.00 0.07 +gorgez gorger ver 1.52 8.04 0.00 0.07 imp:pre:2p; +gorgone gorgone nom f s 0.02 0.41 0.02 0.41 +gorgonzola gorgonzola nom m s 0.22 0.34 0.22 0.34 +gorgèrent gorger ver 1.52 8.04 0.00 0.07 ind:pas:3p; +gorgé gorger ver m s 1.52 8.04 0.19 1.76 par:pas; +gorgée gorgée nom f s 5.70 20.27 4.97 13.31 +gorgées gorgée nom f p 5.70 20.27 0.72 6.96 +gorgés gorger ver m p 1.52 8.04 0.40 1.35 par:pas; +gorille gorille nom m s 6.06 2.77 3.55 2.03 +gorilles gorille nom m p 6.06 2.77 2.51 0.74 +gosier gosier nom m s 1.20 4.93 1.20 4.26 +gosiers gosier nom m p 1.20 4.93 0.00 0.68 +gospel gospel nom m s 0.61 0.00 0.61 0.00 +gosplan gosplan nom m s 0.10 0.07 0.10 0.07 +gosse gosse nom s 109.96 61.76 62.92 34.12 +gosseline gosseline nom f s 0.00 0.14 0.00 0.07 +gosselines gosseline nom f p 0.00 0.14 0.00 0.07 +gosses gosse nom p 109.96 61.76 47.03 27.64 +gâta gâter ver 10.97 14.26 0.00 0.14 ind:pas:3s; +gâtaient gâter ver 10.97 14.26 0.04 0.34 ind:imp:3p; +gâtais gâter ver 10.97 14.26 0.03 0.07 ind:imp:1s; +gâtait gâter ver 10.97 14.26 0.03 0.95 ind:imp:3s; +gâtant gâter ver 10.97 14.26 0.23 0.14 par:pre; +gâte_bois gâte_bois nom m 0.00 0.07 0.00 0.07 +gâte_sauce gâte_sauce nom m s 0.00 0.14 0.00 0.14 +gâte gâter ver 10.97 14.26 2.96 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gâteau gâteau nom m s 55.19 32.16 42.33 13.92 +gâteaux gâteau nom m p 55.19 32.16 12.85 18.24 +gâtent gâter ver 10.97 14.26 0.54 0.14 ind:pre:3p; +gâter gâter ver 10.97 14.26 1.80 3.45 inf; +gâtera gâter ver 10.97 14.26 0.35 0.14 ind:fut:3s; +gâterais gâter ver 10.97 14.26 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +gâterait gâter ver 10.97 14.26 0.02 0.07 cnd:pre:3s; +gâterie gâterie nom f s 1.35 2.91 0.98 0.81 +gâteries gâterie nom f p 1.35 2.91 0.36 2.09 +gâteront gâter ver 10.97 14.26 0.00 0.14 ind:fut:3p; +gâtes gâter ver 10.97 14.26 1.22 0.20 ind:pre:2s; +gâteuse gâteux adj f s 1.71 3.92 0.25 0.88 +gâteuses gâteux adj f p 1.71 3.92 0.00 0.07 +gâteux gâteux adj m 1.71 3.92 1.47 2.97 +gâtez gâter ver 10.97 14.26 0.46 0.20 imp:pre:2p;ind:pre:2p; +goth goth nom s 0.04 0.14 0.02 0.00 +gotha gotha nom m s 0.04 0.14 0.04 0.07 +gothas gotha nom m p 0.04 0.14 0.00 0.07 +gothique gothique adj s 0.99 6.55 0.89 3.85 +gothiques gothique adj p 0.99 6.55 0.10 2.70 +goths goth nom p 0.04 0.14 0.01 0.14 +gâtifie gâtifier ver 0.00 0.07 0.00 0.07 ind:pre:3s; +gâtine gâtine nom f s 0.00 0.07 0.00 0.07 +gâtisme gâtisme nom m s 0.02 0.95 0.02 0.95 +goton goton nom f s 0.00 0.07 0.00 0.07 +gâtât gâter ver 10.97 14.26 0.00 0.07 sub:imp:3s; +gâtèrent gâter ver 10.97 14.26 0.00 0.27 ind:pas:3p; +gâté gâter ver m s 10.97 14.26 1.54 3.58 par:pas; +gâtée gâté adj f s 3.66 4.73 1.68 1.28 +gâtées gâté adj f p 3.66 4.73 0.15 0.61 +gâtés gâté adj m p 3.66 4.73 0.54 0.68 +gouache gouache nom f s 0.04 1.55 0.04 1.22 +gouaches gouache nom f p 0.04 1.55 0.00 0.34 +gouachez gouacher ver 0.01 0.00 0.01 0.00 ind:pre:2p; +gouailla gouailler ver 0.00 0.41 0.00 0.27 ind:pas:3s; +gouaille gouaille nom f s 0.01 1.49 0.01 1.49 +gouailleur gouailleur adj m s 0.00 1.28 0.00 0.61 +gouailleurs gouailleur adj m p 0.00 1.28 0.00 0.07 +gouailleuse gouailleur adj f s 0.00 1.28 0.00 0.54 +gouailleuses gouailleur adj f p 0.00 1.28 0.00 0.07 +gouaillé gouailler ver m s 0.00 0.41 0.00 0.07 par:pas; +goualante goualante nom f s 0.01 1.08 0.01 0.81 +goualantes goualante nom f p 0.01 1.08 0.00 0.27 +goualer goualer ver 0.00 0.14 0.00 0.14 inf; +gouape gouape nom f s 0.39 1.08 0.38 0.74 +gouapes gouape nom f p 0.39 1.08 0.01 0.34 +gouda gouda nom m s 0.03 0.07 0.03 0.07 +goudou goudou nom f s 0.09 0.14 0.06 0.07 +goudous goudou nom f p 0.09 0.14 0.03 0.07 +goudron goudron nom m s 3.40 7.64 3.40 7.50 +goudronnage goudronnage nom m s 0.00 0.14 0.00 0.14 +goudronne goudronner ver 0.38 1.01 0.00 0.07 ind:pre:3s; +goudronner goudronner ver 0.38 1.01 0.05 0.20 inf; +goudronneux goudronneux adj m 0.00 0.20 0.00 0.20 +goudronnez goudronner ver 0.38 1.01 0.14 0.00 imp:pre:2p; +goudronné goudronner ver m s 0.38 1.01 0.06 0.41 par:pas; +goudronnée goudronné adj f s 0.39 3.04 0.23 1.01 +goudronnées goudronné adj f p 0.39 3.04 0.14 0.54 +goudronnés goudronné adj m p 0.39 3.04 0.00 0.27 +goudrons goudron nom m p 3.40 7.64 0.00 0.14 +gouet gouet nom m s 0.00 0.07 0.00 0.07 +gouffre gouffre nom m s 3.84 13.38 3.43 11.35 +gouffres gouffre nom m p 3.84 13.38 0.40 2.03 +gouge gouge nom f s 0.02 1.01 0.01 0.74 +gouges gouge nom f p 0.02 1.01 0.01 0.27 +gougnafier gougnafier nom m s 0.00 1.96 0.00 0.61 +gougnafiers gougnafier nom m p 0.00 1.96 0.00 1.35 +gougnottes gougnotter ver 0.01 0.07 0.01 0.07 ind:pre:2s; +gougoutte gougoutte nom f s 0.01 0.07 0.01 0.00 +gougouttes gougoutte nom f p 0.01 0.07 0.00 0.07 +gougère gougère nom f s 0.00 0.20 0.00 0.07 +gougères gougère nom f p 0.00 0.20 0.00 0.14 +gouine gouine nom f s 4.00 0.88 3.29 0.47 +gouines gouine nom f p 4.00 0.88 0.71 0.41 +goujat goujat nom m s 1.68 2.09 1.23 1.69 +goujaterie goujaterie nom f s 0.16 0.47 0.16 0.47 +goujats goujat nom m p 1.68 2.09 0.45 0.41 +goujon goujon nom m s 0.50 1.35 0.50 0.81 +goujons goujon nom m p 0.50 1.35 0.00 0.54 +goulûment goulûment adv 0.14 2.70 0.14 2.70 +goulache goulache nom m s 0.46 0.00 0.46 0.00 +goulafre goulafre nom s 0.00 0.14 0.00 0.07 +goulafres goulafre nom p 0.00 0.14 0.00 0.07 +goulag goulag nom m s 0.31 1.01 0.31 0.74 +goulags goulag nom m p 0.31 1.01 0.00 0.27 +goéland goéland nom m s 0.53 2.91 0.31 0.81 +goélands goéland nom m p 0.53 2.91 0.23 2.09 +goulasch goulasch nom m s 0.27 0.14 0.27 0.14 +goule goule nom f s 0.61 0.07 0.26 0.07 +goules goule nom f p 0.61 0.07 0.36 0.00 +goulet goulet nom m s 0.09 0.74 0.09 0.74 +goélette goélette nom f s 0.60 0.68 0.60 0.61 +goulette goulette nom f s 0.94 0.14 0.94 0.14 +goélettes goélette nom f p 0.60 0.68 0.00 0.07 +gouleyant gouleyant adj m s 0.00 0.14 0.00 0.14 +goulot goulot nom m s 0.50 10.81 0.49 10.14 +goulots goulot nom m p 0.50 10.81 0.01 0.68 +goulotte goulotte nom f s 0.00 0.07 0.00 0.07 +goulu goulu adj m s 0.14 1.55 0.02 0.34 +goulée goulée nom f s 0.01 2.64 0.00 1.55 +goulue goulu adj f s 0.14 1.55 0.02 0.68 +goulées goulée nom f p 0.01 2.64 0.01 1.08 +goulues goulu nom f p 0.02 0.41 0.01 0.07 +goulus goulu adj m p 0.14 1.55 0.10 0.34 +goum goum nom m s 0.04 0.41 0.00 0.34 +goumi goumi nom m s 0.00 0.34 0.00 0.34 +goumier goumier nom m s 0.00 0.54 0.00 0.07 +goumiers goumier nom m p 0.00 0.54 0.00 0.47 +goémon goémon nom m s 0.14 0.88 0.00 0.41 +goémons goémon nom m p 0.14 0.88 0.14 0.47 +goums goum nom m p 0.04 0.41 0.04 0.07 +goupil goupil nom m s 0.03 0.27 0.03 0.27 +goupillait goupiller ver 0.27 1.69 0.01 0.20 ind:imp:3s; +goupille goupille nom f s 0.74 0.47 0.72 0.34 +goupiller goupiller ver 0.27 1.69 0.04 0.34 inf; +goupilles goupille nom f p 0.74 0.47 0.02 0.14 +goupillon goupillon nom m s 0.16 1.62 0.16 1.55 +goupillons goupillon nom m p 0.16 1.62 0.00 0.07 +goupillé goupiller ver m s 0.27 1.69 0.04 0.47 par:pas; +goupillée goupiller ver f s 0.27 1.69 0.02 0.07 par:pas; +gour gour nom m 0.02 0.61 0.01 0.54 +goura goura nom m s 0.00 0.07 0.00 0.07 +gouraient gourer ver 2.33 6.28 0.00 0.07 ind:imp:3p; +gourais gourer ver 2.33 6.28 0.01 0.68 ind:imp:1s;ind:imp:2s; +gourait gourer ver 2.33 6.28 0.01 0.47 ind:imp:3s; +gourance gourance nom f s 0.00 1.28 0.00 1.15 +gourances gourance nom f p 0.00 1.28 0.00 0.14 +gourbi gourbi nom m s 0.17 2.91 0.12 1.69 +gourbis gourbi nom m p 0.17 2.91 0.06 1.22 +gourd gourd adj m s 0.00 2.70 0.00 0.68 +gourde gourde nom f s 2.85 4.59 2.56 4.59 +gourdes gourde nom f p 2.85 4.59 0.29 0.00 +gourdin gourdin nom m s 1.59 2.84 1.51 1.82 +gourdins gourdin nom m p 1.59 2.84 0.08 1.01 +gourds gourd adj m p 0.00 2.70 0.00 2.03 +goure gourer ver 2.33 6.28 0.30 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gourent gourer ver 2.33 6.28 0.03 0.27 ind:pre:3p; +gourer gourer ver 2.33 6.28 0.22 1.35 inf; +gourerait gourer ver 2.33 6.28 0.00 0.07 cnd:pre:3s; +goures gourer ver 2.33 6.28 0.77 0.34 ind:pre:2s; +gourez gourer ver 2.33 6.28 0.19 0.07 ind:pre:2p; +gourgandine gourgandine nom f s 0.06 0.34 0.06 0.20 +gourgandines gourgandine nom f p 0.06 0.34 0.00 0.14 +gourmand gourmand adj m s 2.79 9.86 1.81 4.53 +gourmandai gourmander ver 0.11 0.81 0.00 0.07 ind:pas:1s; +gourmandais gourmander ver 0.11 0.81 0.00 0.07 ind:imp:1s; +gourmandait gourmander ver 0.11 0.81 0.00 0.07 ind:imp:3s; +gourmandant gourmander ver 0.11 0.81 0.00 0.07 par:pre; +gourmande gourmand adj f s 2.79 9.86 0.54 3.45 +gourmandement gourmandement adv 0.00 0.07 0.00 0.07 +gourmandent gourmander ver 0.11 0.81 0.00 0.07 ind:pre:3p; +gourmander gourmander ver 0.11 0.81 0.00 0.14 inf; +gourmandes gourmand adj f p 2.79 9.86 0.14 1.08 +gourmandise gourmandise nom f s 0.51 6.49 0.47 5.54 +gourmandises gourmandise nom f p 0.51 6.49 0.04 0.95 +gourmands gourmand adj m p 2.79 9.86 0.32 0.81 +gourmandé gourmander ver m s 0.11 0.81 0.01 0.00 par:pas; +gourme gourme nom f s 0.06 0.41 0.06 0.41 +gourmet gourmet nom m s 0.97 1.55 0.89 0.81 +gourmets gourmet nom m p 0.97 1.55 0.08 0.74 +gourmette gourmette nom f s 1.25 2.43 1.25 2.09 +gourmettes gourmette nom f p 1.25 2.43 0.01 0.34 +gourmé gourmé adj m s 0.01 0.81 0.01 0.34 +gourmée gourmé adj f s 0.01 0.81 0.00 0.20 +gourmés gourmé adj m p 0.01 0.81 0.00 0.27 +gourou gourou nom m s 1.84 1.42 1.63 1.28 +gourous gourou nom m p 1.84 1.42 0.22 0.14 +gours gour nom m p 0.02 0.61 0.01 0.07 +gouré gourer ver m s 2.33 6.28 0.64 1.22 par:pas; +gourée gourer ver f s 2.33 6.28 0.07 0.54 par:pas; +gourées gourer ver f p 2.33 6.28 0.00 0.07 par:pas; +gourés gourer ver m p 2.33 6.28 0.10 0.27 par:pas; +gousse gousse nom f s 0.58 1.28 0.51 0.81 +gousses gousse nom f p 0.58 1.28 0.07 0.47 +gousset gousset nom m s 0.27 2.23 0.27 1.69 +goussets gousset nom m p 0.27 2.23 0.00 0.54 +goétie goétie nom f s 0.02 0.00 0.02 0.00 +gouttait goutter ver 0.73 2.36 0.01 0.34 ind:imp:3s; +gouttant goutter ver 0.73 2.36 0.01 0.20 par:pre; +goutte goutte nom f s 28.03 64.32 19.09 30.34 +gouttelaient goutteler ver 0.00 0.14 0.00 0.07 ind:imp:3p; +gouttelait goutteler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +gouttelette gouttelette nom f s 0.25 5.88 0.04 0.41 +gouttelettes gouttelette nom f p 0.25 5.88 0.21 5.47 +goutter goutter ver 0.73 2.36 0.01 0.41 inf; +gouttera goutter ver 0.73 2.36 0.01 0.00 ind:fut:3s; +goutterais goutter ver 0.73 2.36 0.01 0.00 cnd:pre:1s; +gouttereau gouttereau adj m s 0.00 0.20 0.00 0.14 +gouttereaux gouttereau adj m p 0.00 0.20 0.00 0.07 +gouttes goutte nom f p 28.03 64.32 8.94 33.99 +goutteuse goutteur nom f s 0.01 0.00 0.01 0.00 +goutteuses goutteux adj f p 0.01 0.41 0.00 0.14 +goutteux goutteux adj m 0.01 0.41 0.01 0.20 +gouttière gouttière nom f s 2.99 10.95 2.47 6.82 +gouttières gouttière nom f p 2.99 10.95 0.52 4.12 +gouvernable gouvernable adj s 0.01 0.00 0.01 0.00 +gouvernaient gouverner ver 7.60 8.78 0.17 0.14 ind:imp:3p; +gouvernail gouvernail nom m s 2.87 1.69 2.81 1.62 +gouvernails gouvernail nom m p 2.87 1.69 0.06 0.07 +gouvernait gouverner ver 7.60 8.78 0.21 1.69 ind:imp:3s; +gouvernance gouvernance nom f s 0.01 0.00 0.01 0.00 +gouvernant gouvernant nom m s 0.45 2.09 0.14 0.07 +gouvernante gouvernante nom f s 4.60 4.73 4.52 3.85 +gouvernantes gouvernante nom f p 4.60 4.73 0.08 0.88 +gouvernants gouvernant nom m p 0.45 2.09 0.30 2.03 +gouverne gouverner ver 7.60 8.78 1.58 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gouvernement gouvernement nom m s 62.66 132.03 59.82 119.73 +gouvernemental gouvernemental adj m s 2.93 1.69 0.98 0.61 +gouvernementale gouvernemental adj f s 2.93 1.69 0.82 0.74 +gouvernementales gouvernemental adj f p 2.93 1.69 0.72 0.34 +gouvernementaux gouvernemental adj m p 2.93 1.69 0.40 0.00 +gouvernements gouvernement nom m p 62.66 132.03 2.83 12.30 +gouvernent gouverner ver 7.60 8.78 0.72 0.41 ind:pre:3p; +gouverner gouverner ver 7.60 8.78 3.18 3.24 inf; +gouvernera gouverner ver 7.60 8.78 0.56 0.07 ind:fut:3s; +gouvernerai gouverner ver 7.60 8.78 0.03 0.14 ind:fut:1s; +gouvernerait gouverner ver 7.60 8.78 0.01 0.14 cnd:pre:3s; +gouverneras gouverner ver 7.60 8.78 0.02 0.00 ind:fut:2s; +gouvernerez gouverner ver 7.60 8.78 0.04 0.07 ind:fut:2p; +gouvernerons gouverner ver 7.60 8.78 0.03 0.00 ind:fut:1p; +gouverneront gouverner ver 7.60 8.78 0.06 0.07 ind:fut:3p; +gouvernes gouverner ver 7.60 8.78 0.17 0.00 ind:pre:2s; +gouverneur gouverneur nom m s 21.73 18.38 20.96 16.35 +gouverneurs gouverneur nom m p 21.73 18.38 0.77 2.03 +gouvernez gouverner ver 7.60 8.78 0.14 0.00 imp:pre:2p;ind:pre:2p; +gouverniez gouverner ver 7.60 8.78 0.01 0.00 ind:imp:2p; +gouvernorat gouvernorat nom m s 0.01 0.14 0.01 0.00 +gouvernorats gouvernorat nom m p 0.01 0.14 0.00 0.14 +gouvernât gouverner ver 7.60 8.78 0.00 0.14 sub:imp:3s; +gouverné gouverner ver m s 7.60 8.78 0.38 0.81 par:pas; +gouvernée gouverner ver f s 7.60 8.78 0.17 0.47 par:pas; +gouvernés gouverner ver m p 7.60 8.78 0.07 0.07 par:pas; +gouzi_gouzi gouzi_gouzi nom m 0.06 0.07 0.06 0.07 +goy goy nom m s 0.13 0.47 0.13 0.47 +goyave goyave nom f s 0.06 0.20 0.06 0.20 +goyesque goyesque nom s 0.00 0.20 0.00 0.14 +goyesques goyesque nom p 0.00 0.20 0.00 0.07 +graal graal nom m s 0.04 0.34 0.04 0.34 +grabat grabat nom m s 0.36 2.09 0.23 1.96 +grabataire grabataire adj s 0.13 0.27 0.11 0.27 +grabataires grabataire adj m p 0.13 0.27 0.02 0.00 +grabats grabat nom m p 0.36 2.09 0.14 0.14 +graben graben nom m s 0.14 0.00 0.14 0.00 +grabuge grabuge nom m s 2.55 0.54 2.55 0.54 +gracia gracier ver 3.62 1.22 0.00 0.07 ind:pas:3s; +graciai gracier ver 3.62 1.22 0.00 0.07 ind:pas:1s; +gracias gracier ver 3.62 1.22 1.58 0.20 ind:pas:2s; +gracie gracier ver 3.62 1.22 0.81 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gracier gracier ver 3.62 1.22 0.39 0.41 inf; +graciera gracier ver 3.62 1.22 0.01 0.00 ind:fut:3s; +gracierai gracier ver 3.62 1.22 0.04 0.00 ind:fut:1s; +gracieras gracier ver 3.62 1.22 0.02 0.00 ind:fut:2s; +gracieuse gracieux adj f s 4.54 15.81 1.84 6.08 +gracieusement gracieusement adv 0.54 2.70 0.54 2.70 +gracieuses gracieux adj f p 4.54 15.81 0.29 2.09 +gracieuseté gracieuseté nom f s 0.20 0.41 0.06 0.14 +gracieusetés gracieuseté nom f p 0.20 0.41 0.14 0.27 +gracieusé gracieusé adj m s 0.00 0.07 0.00 0.07 +gracieux gracieux adj m 4.54 15.81 2.42 7.64 +graciez gracier ver 3.62 1.22 0.04 0.00 imp:pre:2p;ind:pre:2p; +gracile gracile adj s 0.16 2.50 0.16 1.69 +graciles gracile adj f p 0.16 2.50 0.00 0.81 +gracilité gracilité nom f s 0.00 0.07 0.00 0.07 +graciât gracier ver 3.62 1.22 0.00 0.07 sub:imp:3s; +gracié gracier ver m s 3.62 1.22 0.51 0.00 par:pas; +graciée gracier ver f s 3.62 1.22 0.06 0.07 par:pas; +graciés gracier ver m p 3.62 1.22 0.16 0.07 par:pas; +gradaille gradaille nom f s 0.00 0.07 0.00 0.07 +gradation gradation nom f s 0.01 0.54 0.00 0.34 +gradations gradation nom f p 0.01 0.54 0.01 0.20 +grade grade nom m s 6.44 8.18 5.78 7.03 +grader grader nom m s 0.00 0.07 0.00 0.07 +grades grade nom m p 6.44 8.18 0.66 1.15 +gradient gradient nom m s 0.04 0.00 0.03 0.00 +gradients gradient nom m p 0.04 0.00 0.01 0.00 +gradin gradin nom m s 1.06 5.07 0.01 0.41 +gradins gradin nom m p 1.06 5.07 1.05 4.66 +gradé gradé adj m s 1.61 1.22 1.36 0.68 +graduation graduation nom f s 0.12 0.41 0.11 0.27 +graduations graduation nom f p 0.12 0.41 0.01 0.14 +gradée gradé adj f s 1.61 1.22 0.09 0.07 +graduel graduel adj m s 0.09 0.14 0.01 0.00 +graduelle graduel adj f s 0.09 0.14 0.07 0.14 +graduellement graduellement adv 0.24 0.81 0.24 0.81 +graduer graduer ver 0.18 0.41 0.01 0.14 inf; +gradés gradé nom m p 1.94 8.45 0.82 6.49 +gradus gradus nom m 0.00 0.07 0.00 0.07 +gradué graduer ver m s 0.18 0.41 0.03 0.20 par:pas; +graduée graduer ver f s 0.18 0.41 0.14 0.00 par:pas; +graduées graduer ver f p 0.18 0.41 0.01 0.00 par:pas; +gradués gradué nom m p 0.02 0.00 0.02 0.00 +graff graff nom m s 0.05 0.00 0.05 0.00 +graffeur graffeur nom m s 0.06 0.00 0.06 0.00 +graffita graffiter ver 0.01 0.27 0.00 0.07 ind:pas:3s; +graffiter graffiter ver 0.01 0.27 0.01 0.07 inf; +graffiteur graffiteur nom m s 0.09 0.07 0.02 0.00 +graffiteurs graffiteur nom m p 0.09 0.07 0.07 0.07 +graffiti graffiti nom m 2.73 4.19 1.93 3.45 +graffitis graffiti nom m p 2.73 4.19 0.80 0.74 +graffito graffito nom m s 0.00 0.20 0.00 0.20 +graffité graffiter ver m s 0.01 0.27 0.00 0.14 par:pas; +grafigner grafigner ver 0.14 0.07 0.14 0.07 inf; +graillant grailler ver 0.21 2.64 0.00 0.07 par:pre; +graille grailler ver 0.21 2.64 0.05 0.95 imp:pre:2s;ind:pre:3s; +grailler grailler ver 0.21 2.64 0.15 0.00 inf; +graillon graillon nom m s 0.08 1.22 0.08 1.01 +graillonna graillonner ver 0.14 0.20 0.00 0.07 ind:pas:3s; +graillonnait graillonner ver 0.14 0.20 0.00 0.07 ind:imp:3s; +graillonnant graillonnant adj m s 0.00 0.07 0.00 0.07 +graillonne graillonner ver 0.14 0.20 0.14 0.07 ind:pre:3s; +graillonnements graillonnement nom m p 0.00 0.07 0.00 0.07 +graillonneuse graillonneur nom f s 0.00 0.27 0.00 0.20 +graillonneuses graillonneur nom f p 0.00 0.27 0.00 0.07 +graillonneux graillonneux adj m 0.00 0.14 0.00 0.14 +graillons graillon nom m p 0.08 1.22 0.00 0.20 +graillé grailler ver m s 0.21 2.64 0.01 0.14 par:pas; +graillée grailler ver f s 0.21 2.64 0.00 1.49 par:pas; +grain grain nom m s 14.32 35.95 10.74 24.26 +graine graine nom f s 11.41 13.51 5.51 8.04 +grainer grainer ver 0.00 0.20 0.00 0.07 inf; +graines graine nom f p 11.41 13.51 5.90 5.47 +graineterie graineterie nom f s 0.00 0.20 0.00 0.20 +grainetier grainetier nom m s 0.00 0.34 0.00 0.20 +grainetiers grainetier nom m p 0.00 0.34 0.00 0.14 +grains grain nom m p 14.32 35.95 3.57 11.69 +grainé grainer ver m s 0.00 0.20 0.00 0.14 par:pas; +graissa graisser ver 2.48 4.53 0.00 0.34 ind:pas:3s; +graissage graissage nom m s 0.24 0.27 0.23 0.20 +graissages graissage nom m p 0.24 0.27 0.01 0.07 +graissait graisser ver 2.48 4.53 0.01 0.61 ind:imp:3s; +graissant graisser ver 2.48 4.53 0.00 0.20 par:pre; +graisse graisse nom f s 9.09 18.31 8.38 17.64 +graissent graisser ver 2.48 4.53 0.03 0.54 ind:pre:3p; +graisser graisser ver 2.48 4.53 1.10 1.49 inf; +graissera graisser ver 2.48 4.53 0.02 0.00 ind:fut:3s; +graisserai graisser ver 2.48 4.53 0.01 0.07 ind:fut:1s; +graisses graisse nom f p 9.09 18.31 0.70 0.68 +graisseur graisseur adj m s 0.02 0.00 0.02 0.00 +graisseuse graisseux adj f s 0.82 5.07 0.10 1.42 +graisseuses graisseux adj f p 0.82 5.07 0.07 0.88 +graisseux graisseux adj m 0.82 5.07 0.65 2.77 +graissez graisser ver 2.48 4.53 0.09 0.07 imp:pre:2p;ind:pre:2p; +graissât graisser ver 2.48 4.53 0.00 0.07 sub:imp:3s; +graissé graisser ver m s 2.48 4.53 0.42 0.47 par:pas; +graissée graissé adj f s 0.30 1.08 0.01 0.47 +graissées graisser ver f p 2.48 4.53 0.01 0.07 par:pas; +graissés graisser ver m p 2.48 4.53 0.26 0.00 par:pas; +gram gram nom m s 0.28 0.00 0.28 0.00 +gramen gramen nom m s 0.01 0.20 0.01 0.00 +gramens gramen nom m p 0.01 0.20 0.00 0.20 +graminée graminée nom f s 0.01 1.89 0.01 0.54 +graminées graminée nom f p 0.01 1.89 0.00 1.35 +grammage grammage nom m s 0.03 0.07 0.03 0.00 +grammages grammage nom m p 0.03 0.07 0.00 0.07 +grammaire grammaire nom f s 1.73 6.01 1.73 5.47 +grammaires grammaire nom f p 1.73 6.01 0.00 0.54 +grammairien grammairien nom m s 0.01 1.08 0.01 0.41 +grammairienne grammairien nom f s 0.01 1.08 0.00 0.14 +grammairiennes grammairien nom f p 0.01 1.08 0.00 0.07 +grammairiens grammairien nom m p 0.01 1.08 0.00 0.47 +grammatical grammatical adj m s 0.17 0.68 0.14 0.07 +grammaticale grammatical adj f s 0.17 0.68 0.02 0.41 +grammaticalement grammaticalement adv 0.14 0.14 0.14 0.14 +grammaticales grammatical adj f p 0.17 0.68 0.01 0.07 +grammaticaux grammatical adj m p 0.17 0.68 0.00 0.14 +gramme gramme nom m s 5.81 4.93 1.76 1.22 +grammer grammer ver 0.03 0.00 0.03 0.00 inf; +grammes gramme nom m p 5.81 4.93 4.05 3.72 +gramophone gramophone nom m s 1.14 1.08 1.13 1.01 +gramophones gramophone nom m p 1.14 1.08 0.01 0.07 +grana grana nom m s 0.00 0.14 0.00 0.07 +granas grana nom m p 0.00 0.14 0.00 0.07 +grand_angle grand_angle nom m s 0.06 0.00 0.06 0.00 +grand_chose grand_chose pro_ind m s 28.01 36.08 28.01 36.08 +grand_duc grand_duc nom m s 2.03 1.76 1.90 0.88 +grand_ducal grand_ducal adj f s 0.00 0.07 0.00 0.07 +grand_duché grand_duché nom m s 0.01 0.07 0.01 0.07 +grand_faim grand_faim adv 0.00 0.20 0.00 0.20 +grand_guignol grand_guignol nom m s 0.01 0.00 0.01 0.00 +grand_guignolesque grand_guignolesque adj s 0.01 0.00 0.01 0.00 +grand_hôtel grand_hôtel nom m s 0.00 0.07 0.00 0.07 +grand_hâte grand_hâte adv 0.00 0.07 0.00 0.07 +grand_maître grand_maître nom m s 0.10 0.07 0.10 0.07 +grand_papa grand_papa nom f s 2.35 0.95 0.84 0.27 +grand_messe grand_messe nom f s 0.29 1.28 0.29 1.28 +grand_mère grand_mère nom f s 73.22 94.59 72.39 91.76 +grand_mère grand_mère nom f p 73.22 94.59 0.53 2.16 +grand_neige grand_neige nom m s 0.00 0.07 0.00 0.07 +grand_officier grand_officier nom m s 0.00 0.07 0.00 0.07 +grand_oncle grand_oncle nom m s 0.45 4.26 0.45 3.65 +grand_papa grand_papa nom m s 2.35 0.95 1.50 0.68 +grand_peine grand_peine adv 0.25 4.86 0.25 4.86 +grand_peur grand_peur adv 0.00 0.20 0.00 0.20 +grand_place grand_place nom f s 0.12 1.35 0.12 1.35 +grand_prêtre grand_prêtre nom m s 0.11 0.20 0.11 0.20 +grand_père grand_père nom m s 75.64 96.49 75.19 95.20 +grand_quartier grand_quartier nom m s 0.00 0.34 0.00 0.34 +grand_route grand_route nom f s 0.27 3.65 0.27 3.58 +grand_route grand_route nom f p 0.27 3.65 0.00 0.07 +grand_rue grand_rue nom f s 0.64 2.36 0.64 2.36 +grand_salle grand_salle nom f s 0.00 0.20 0.00 0.20 +grand_tante grand_tante nom f s 1.17 1.76 1.17 1.22 +grand_tante grand_tante nom f p 1.17 1.76 0.00 0.47 +grand_vergue grand_vergue nom f s 0.05 0.00 0.05 0.00 +grand_voile grand_voile nom f s 0.23 0.27 0.23 0.27 +grand grand adj m s 638.72 1244.66 338.27 537.97 +grandît grandir ver 63.99 46.69 0.01 0.07 sub:imp:3s; +grand_duc grand_duc nom f s 2.03 1.76 0.09 0.34 +grande grand adj f s 638.72 1244.66 198.25 378.65 +grandement grandement adv 1.59 2.84 1.59 2.84 +grande_duchesse grande_duchesse nom f p 0.01 0.14 0.01 0.14 +grandes grand adj f p 638.72 1244.66 42.68 126.49 +grandesse grandesse nom f s 0.00 0.14 0.00 0.14 +grandet grandet adj m s 0.00 0.14 0.00 0.14 +grandeur grandeur nom f s 8.75 28.38 7.71 26.49 +grandeurs grandeur nom f p 8.75 28.38 1.04 1.89 +grandi grandir ver m s 63.99 46.69 30.06 13.45 par:pas; +grandie grandir ver f s 63.99 46.69 0.17 0.74 par:pas; +grandiloque grandiloque adj m s 0.00 0.07 0.00 0.07 +grandiloquence grandiloquence nom f s 0.06 0.81 0.06 0.81 +grandiloquent grandiloquent adj m s 0.15 1.69 0.15 0.54 +grandiloquente grandiloquent adj f s 0.15 1.69 0.00 0.74 +grandiloquentes grandiloquent adj f p 0.15 1.69 0.00 0.14 +grandiloquents grandiloquent adj m p 0.15 1.69 0.00 0.27 +grandiose grandiose adj s 4.70 10.00 4.16 8.24 +grandiosement grandiosement adv 0.00 0.14 0.00 0.14 +grandioses grandiose adj p 4.70 10.00 0.53 1.76 +grandir grandir ver 63.99 46.69 13.31 11.22 inf; +grandira grandir ver 63.99 46.69 1.07 0.27 ind:fut:3s; +grandirai grandir ver 63.99 46.69 0.07 0.00 ind:fut:1s; +grandiraient grandir ver 63.99 46.69 0.03 0.07 cnd:pre:3p; +grandirais grandir ver 63.99 46.69 0.01 0.00 cnd:pre:2s; +grandirait grandir ver 63.99 46.69 0.14 0.27 cnd:pre:3s; +grandiras grandir ver 63.99 46.69 0.70 0.20 ind:fut:2s; +grandirent grandir ver 63.99 46.69 0.08 0.41 ind:pas:3p; +grandirez grandir ver 63.99 46.69 0.05 0.07 ind:fut:2p; +grandiriez grandir ver 63.99 46.69 0.01 0.00 cnd:pre:2p; +grandirons grandir ver 63.99 46.69 0.01 0.07 ind:fut:1p; +grandiront grandir ver 63.99 46.69 0.24 0.20 ind:fut:3p; +grandis grandir ver m p 63.99 46.69 2.44 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +grandissaient grandir ver 63.99 46.69 0.44 1.22 ind:imp:3p; +grandissais grandir ver 63.99 46.69 0.17 0.47 ind:imp:1s;ind:imp:2s; +grandissait grandir ver 63.99 46.69 1.28 5.61 ind:imp:3s; +grandissant grandir ver 63.99 46.69 1.52 2.09 par:pre; +grandissante grandissant adj f s 0.87 5.47 0.38 3.11 +grandissantes grandissant adj f p 0.87 5.47 0.03 0.07 +grandissants grandissant adj m p 0.87 5.47 0.01 0.07 +grandisse grandir ver 63.99 46.69 1.36 0.27 sub:pre:1s;sub:pre:3s; +grandissement grandissement nom m s 0.00 0.07 0.00 0.07 +grandissent grandir ver 63.99 46.69 2.55 1.76 ind:pre:3p; +grandisses grandir ver 63.99 46.69 0.31 0.07 sub:pre:2s; +grandissez grandir ver 63.99 46.69 0.28 0.00 imp:pre:2p;ind:pre:2p; +grandissime grandissime adj s 0.03 0.07 0.03 0.07 +grandissions grandir ver 63.99 46.69 0.01 0.07 ind:imp:1p; +grandissons grandir ver 63.99 46.69 0.04 0.07 imp:pre:1p;ind:pre:1p; +grandit grandir ver 63.99 46.69 7.64 6.89 ind:pre:3s;ind:pas:3s; +grand_croix grand_croix nom m p 0.00 0.07 0.00 0.07 +grand_duc grand_duc nom m p 2.03 1.76 0.05 0.54 +grand_mère grand_mère nom f p 73.22 94.59 0.30 0.68 +grand_oncle grand_oncle nom m p 0.45 4.26 0.00 0.61 +grands_parents grands_parents nom m p 4.59 9.19 4.59 9.19 +grand_père grand_père nom m p 75.64 96.49 0.45 1.28 +grand_tante grand_tante nom f p 1.17 1.76 0.00 0.07 +grands grand adj m p 638.72 1244.66 59.52 201.55 +grange grange nom f s 7.33 46.01 6.95 40.74 +granges grange nom f p 7.33 46.01 0.38 5.27 +grangette grangette nom f s 0.00 0.14 0.00 0.14 +granit granit nom m s 1.74 10.07 1.74 9.80 +granita graniter ver 0.00 0.20 0.00 0.14 ind:pas:3s; +granite granite nom m s 0.34 0.47 0.34 0.47 +granitique granitique adj s 0.14 0.61 0.14 0.20 +granitiques granitique adj p 0.14 0.61 0.00 0.41 +granito granito nom m s 0.00 0.07 0.00 0.07 +granits granit nom m p 1.74 10.07 0.00 0.27 +granité granité nom m s 0.17 0.07 0.12 0.07 +granitée graniter ver f s 0.00 0.20 0.00 0.07 par:pas; +granités granité nom m p 0.17 0.07 0.05 0.00 +granulaire granulaire adj m s 0.01 0.00 0.01 0.00 +granulait granuler ver 0.00 0.27 0.00 0.14 ind:imp:3s; +granulation granulation nom f s 0.01 0.34 0.01 0.07 +granulations granulation nom f p 0.01 0.34 0.00 0.27 +granule granuler ver 0.00 0.27 0.00 0.07 ind:pre:3s; +granules granule nom m p 0.11 0.14 0.11 0.14 +granuleuse granuleux adj f s 0.22 1.55 0.17 0.95 +granuleuses granuleux adj f p 0.22 1.55 0.01 0.07 +granuleux granuleux adj m s 0.22 1.55 0.04 0.54 +granulie granulie nom f s 0.01 0.00 0.01 0.00 +granulome granulome nom m s 0.03 0.00 0.03 0.00 +granulé granulé nom m s 0.32 0.47 0.00 0.14 +granulée granuler ver f s 0.00 0.27 0.00 0.07 par:pas; +granulés granulé nom m p 0.32 0.47 0.32 0.34 +grape_fruit grape_fruit nom m s 0.00 0.27 0.00 0.27 +graph graph nom s 0.01 0.00 0.01 0.00 +graphe graphe nom m s 0.14 0.00 0.12 0.00 +graphes graphe nom m p 0.14 0.00 0.03 0.00 +graphie graphie nom f s 0.02 0.61 0.02 0.41 +graphies graphie nom f p 0.02 0.61 0.00 0.20 +graphique graphique nom s 1.31 0.61 0.72 0.20 +graphiques graphique nom p 1.31 0.61 0.59 0.41 +graphisme graphisme nom m s 0.28 0.41 0.23 0.41 +graphismes graphisme nom m p 0.28 0.41 0.04 0.00 +graphiste graphiste nom s 0.18 0.00 0.18 0.00 +graphite graphite nom m s 0.29 0.07 0.29 0.00 +graphites graphite nom m p 0.29 0.07 0.00 0.07 +graphologie graphologie nom f s 0.15 0.00 0.15 0.00 +graphologique graphologique adj m s 0.01 0.07 0.01 0.07 +graphologue graphologue nom s 0.18 0.20 0.17 0.14 +graphologues graphologue nom p 0.18 0.20 0.01 0.07 +graphomane graphomane nom s 0.01 0.14 0.01 0.00 +graphomanes graphomane nom p 0.01 0.14 0.00 0.14 +graphomanie graphomanie nom f s 0.00 0.07 0.00 0.07 +graphomètre graphomètre nom m s 0.00 0.07 0.00 0.07 +graphophone graphophone nom m s 0.01 0.00 0.01 0.00 +grappa grappa nom f s 0.72 0.34 0.72 0.34 +grappe grappe nom f s 2.51 12.30 1.93 4.39 +grappes grappe nom f p 2.51 12.30 0.59 7.91 +grappillage grappillage nom m s 0.07 0.00 0.07 0.00 +grappillais grappiller ver 0.13 0.95 0.00 0.14 ind:imp:1s; +grappillait grappiller ver 0.13 0.95 0.01 0.20 ind:imp:3s; +grappillent grappiller ver 0.13 0.95 0.00 0.07 ind:pre:3p; +grappiller grappiller ver 0.13 0.95 0.08 0.41 inf; +grappilleur grappilleur nom m s 0.01 0.00 0.01 0.00 +grappillon grappillon nom m s 0.00 0.14 0.00 0.07 +grappillons grappillon nom m p 0.00 0.14 0.00 0.07 +grappillé grappiller ver m s 0.13 0.95 0.01 0.07 par:pas; +grappillées grappiller ver f p 0.13 0.95 0.03 0.07 par:pas; +grappin grappin nom m s 1.54 0.81 1.36 0.68 +grappins grappin nom m p 1.54 0.81 0.18 0.14 +gras_double gras_double nom m s 0.22 1.08 0.22 1.01 +gras_double gras_double nom m p 0.22 1.08 0.00 0.07 +gras gras adj m 14.31 48.92 10.55 25.61 +grasse gras adj f s 14.31 48.92 2.19 14.12 +grassement grassement adv 0.24 0.81 0.24 0.81 +grasses gras adj f p 14.31 48.92 1.57 9.19 +grasseya grasseyer ver 0.00 0.61 0.00 0.20 ind:pas:3s; +grasseyait grasseyer ver 0.00 0.61 0.00 0.14 ind:imp:3s; +grasseyant grasseyant adj m s 0.00 0.61 0.00 0.20 +grasseyante grasseyant adj f s 0.00 0.61 0.00 0.41 +grasseyement grasseyement nom m s 0.00 0.41 0.00 0.27 +grasseyements grasseyement nom m p 0.00 0.41 0.00 0.14 +grasseyer grasseyer ver 0.00 0.61 0.00 0.07 inf; +grasseyé grasseyer ver m s 0.00 0.61 0.00 0.07 par:pas; +grassouillet grassouillet adj m s 1.08 1.96 0.66 0.88 +grassouillets grassouillet adj m p 1.08 1.96 0.06 0.14 +grassouillette grassouillet adj f s 1.08 1.96 0.28 0.74 +grassouillettes grassouillet adj f p 1.08 1.96 0.08 0.20 +gratifia gratifier ver 0.76 4.26 0.00 0.74 ind:pas:3s; +gratifiaient gratifier ver 0.76 4.26 0.00 0.14 ind:imp:3p; +gratifiait gratifier ver 0.76 4.26 0.01 0.20 ind:imp:3s; +gratifiant gratifiant adj m s 0.99 0.27 0.78 0.14 +gratifiante gratifiant adj f s 0.99 0.27 0.21 0.14 +gratification gratification nom f s 0.34 0.68 0.29 0.34 +gratifications gratification nom f p 0.34 0.68 0.04 0.34 +gratifie gratifier ver 0.76 4.26 0.17 0.68 ind:pre:1s;ind:pre:3s; +gratifier gratifier ver 0.76 4.26 0.19 0.54 inf; +gratifierait gratifier ver 0.76 4.26 0.00 0.07 cnd:pre:3s; +gratifies gratifier ver 0.76 4.26 0.00 0.07 ind:pre:2s; +gratifiez gratifier ver 0.76 4.26 0.01 0.00 ind:pre:2p; +gratifièrent gratifier ver 0.76 4.26 0.01 0.07 ind:pas:3p; +gratifié gratifier ver m s 0.76 4.26 0.14 1.15 par:pas; +gratifiée gratifier ver f s 0.76 4.26 0.03 0.20 par:pas; +gratifiés gratifier ver m p 0.76 4.26 0.10 0.27 par:pas; +gratin gratin nom m s 1.63 2.16 1.63 2.09 +gratiner gratiner ver 0.29 0.81 0.01 0.07 inf; +gratins gratin nom m p 1.63 2.16 0.00 0.07 +gratiné gratiner ver m s 0.29 0.81 0.04 0.20 par:pas; +gratinée gratiner ver f s 0.29 0.81 0.05 0.34 par:pas; +gratinées gratiner ver f p 0.29 0.81 0.17 0.20 par:pas; +gratinés gratiner ver m p 0.29 0.81 0.03 0.00 par:pas; +gratis_pro_deo gratis_pro_deo adv 0.00 0.14 0.00 0.14 +gratis gratis adv 4.39 3.11 4.39 3.11 +gratitude gratitude nom f s 7.61 8.38 7.61 8.24 +gratitudes gratitude nom f p 7.61 8.38 0.00 0.14 +gratos gratos adv 3.94 0.68 3.94 0.68 +gratouillait gratouiller ver 0.17 0.41 0.00 0.07 ind:imp:3s; +gratouillant gratouiller ver 0.17 0.41 0.00 0.07 par:pre; +gratouille gratouiller ver 0.17 0.41 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gratouillerait gratouiller ver 0.17 0.41 0.00 0.07 cnd:pre:3s; +gratouillis gratouillis nom m 0.00 0.07 0.00 0.07 +gratta gratter ver 12.11 38.51 0.00 5.81 ind:pas:3s; +grattage grattage nom m s 0.10 0.41 0.10 0.34 +grattages grattage nom m p 0.10 0.41 0.00 0.07 +grattai gratter ver 12.11 38.51 0.00 0.20 ind:pas:1s; +grattaient gratter ver 12.11 38.51 0.14 0.88 ind:imp:3p; +grattais gratter ver 12.11 38.51 0.13 0.88 ind:imp:1s;ind:imp:2s; +grattait gratter ver 12.11 38.51 0.25 5.14 ind:imp:3s; +grattant gratter ver 12.11 38.51 0.12 3.85 par:pre; +gratte_ciel gratte_ciel nom m 1.40 3.04 1.14 3.04 +gratte_ciel gratte_ciel nom m p 1.40 3.04 0.26 0.00 +gratte_cul gratte_cul nom m 0.00 0.14 0.00 0.14 +gratte_dos gratte_dos nom m 0.11 0.00 0.11 0.00 +gratte_papier gratte_papier nom m 0.67 0.54 0.45 0.54 +gratte_papier gratte_papier nom m p 0.67 0.54 0.22 0.00 +gratte_pieds gratte_pieds nom m 0.00 0.20 0.00 0.20 +gratte gratter ver 12.11 38.51 3.75 7.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grattement grattement nom m s 0.15 1.49 0.05 1.22 +grattements grattement nom m p 0.15 1.49 0.10 0.27 +grattent gratter ver 12.11 38.51 0.51 1.15 ind:pre:3p; +gratter gratter ver 12.11 38.51 5.03 8.85 inf; +grattera gratter ver 12.11 38.51 0.03 0.14 ind:fut:3s; +gratterai gratter ver 12.11 38.51 0.10 0.07 ind:fut:1s; +gratteraient gratter ver 12.11 38.51 0.00 0.07 cnd:pre:3p; +gratterait gratter ver 12.11 38.51 0.01 0.20 cnd:pre:3s; +gratterez gratter ver 12.11 38.51 0.00 0.07 ind:fut:2p; +gratterons gratteron nom m p 0.00 0.20 0.00 0.20 +grattes gratter ver 12.11 38.51 0.49 0.27 ind:pre:2s; +gratteur gratteur nom m s 0.05 0.34 0.04 0.07 +gratteurs gratteur nom m p 0.05 0.34 0.01 0.27 +grattez gratter ver 12.11 38.51 0.80 0.07 imp:pre:2p;ind:pre:2p; +grattoir grattoir nom m s 0.09 1.49 0.08 1.15 +grattoirs grattoir nom m p 0.09 1.49 0.01 0.34 +grattons gratter ver 12.11 38.51 0.02 0.00 ind:pre:1p; +grattât gratter ver 12.11 38.51 0.10 0.07 sub:imp:3s; +grattouillant grattouiller ver 0.01 0.27 0.00 0.07 par:pre; +grattouillent grattouiller ver 0.01 0.27 0.00 0.07 ind:pre:3p; +grattouiller grattouiller ver 0.01 0.27 0.01 0.00 inf; +grattouilles grattouiller ver 0.01 0.27 0.00 0.07 ind:pre:2s; +grattouillis grattouillis nom m 0.05 0.07 0.05 0.07 +grattouillé grattouiller ver m s 0.01 0.27 0.00 0.07 par:pas; +gratté gratter ver m s 12.11 38.51 0.56 2.43 par:pas; +grattée gratter ver f s 12.11 38.51 0.03 0.47 par:pas; +grattées gratter ver f p 12.11 38.51 0.01 0.41 par:pas; +gratture gratture nom f s 0.00 0.07 0.00 0.07 +grattés gratter ver m p 12.11 38.51 0.04 0.41 par:pas; +gratuit gratuit adj m s 24.28 13.11 12.15 5.81 +gratuite gratuit adj f s 24.28 13.11 6.43 4.73 +gratuitement gratuitement adv 6.37 2.91 6.37 2.91 +gratuites gratuit adj f p 24.28 13.11 1.81 1.15 +gratuits gratuit adj m p 24.28 13.11 3.89 1.42 +gratuité gratuité nom f s 0.05 1.69 0.05 1.69 +grau grau nom m s 0.01 0.00 0.01 0.00 +grava graver ver 10.34 18.38 0.04 0.47 ind:pas:3s; +gravai graver ver 10.34 18.38 0.00 0.07 ind:pas:1s; +gravaient graver ver 10.34 18.38 0.02 0.27 ind:imp:3p; +gravais graver ver 10.34 18.38 0.02 0.20 ind:imp:1s; +gravait graver ver 10.34 18.38 0.16 0.68 ind:imp:3s; +gravant graver ver 10.34 18.38 0.02 0.34 par:pre; +gravats gravats nom m p 0.34 4.12 0.34 4.12 +grave grave adj s 142.48 93.78 134.19 74.86 +graveleuse graveleux adj f s 0.06 1.35 0.01 0.20 +graveleuses graveleux adj f p 0.06 1.35 0.00 0.47 +graveleux graveleux adj m s 0.06 1.35 0.04 0.68 +gravelle gravelle nom f s 0.00 0.34 0.00 0.27 +gravelles gravelle nom f p 0.00 0.34 0.00 0.07 +gravelé graveler ver m s 0.00 0.14 0.00 0.07 par:pas; +gravelés graveler ver m p 0.00 0.14 0.00 0.07 par:pas; +gravement gravement adv 6.43 19.73 6.43 19.73 +gravent graver ver 10.34 18.38 0.04 0.20 ind:pre:3p; +graver graver ver 10.34 18.38 1.94 1.76 inf; +graveraient graver ver 10.34 18.38 0.00 0.14 cnd:pre:3p; +graverais graver ver 10.34 18.38 0.01 0.00 cnd:pre:1s; +graverait graver ver 10.34 18.38 0.01 0.00 cnd:pre:3s; +graves grave adj p 142.48 93.78 8.29 18.92 +graveur graveur nom m s 0.40 1.08 0.38 0.81 +graveurs graveur nom m p 0.40 1.08 0.02 0.27 +gravez graver ver 10.34 18.38 0.47 0.00 imp:pre:2p;ind:pre:2p; +gravi gravir ver m s 2.60 17.16 0.44 2.16 par:pas; +gravide gravide adj s 0.04 0.00 0.04 0.00 +gravidité gravidité nom f s 0.01 0.00 0.01 0.00 +gravie gravir ver f s 2.60 17.16 0.00 0.20 par:pas; +gravier gravier nom m s 2.32 15.41 1.40 11.35 +graviers gravier nom m p 2.32 15.41 0.92 4.05 +gravies gravir ver f p 2.60 17.16 0.10 0.07 par:pas; +gravillon gravillon nom m s 0.10 1.22 0.00 0.20 +gravillonnée gravillonner ver f s 0.00 0.20 0.00 0.14 par:pas; +gravillonnées gravillonner ver f p 0.00 0.20 0.00 0.07 par:pas; +gravillons gravillon nom m p 0.10 1.22 0.10 1.01 +gravir gravir ver 2.60 17.16 1.30 5.41 inf; +gravirai gravir ver 2.60 17.16 0.05 0.00 ind:fut:1s; +gravirait gravir ver 2.60 17.16 0.00 0.07 cnd:pre:3s; +gravirent gravir ver 2.60 17.16 0.01 0.68 ind:pas:3p; +gravirons gravir ver 2.60 17.16 0.01 0.07 ind:fut:1p; +gravis gravir ver m p 2.60 17.16 0.40 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +gravissaient gravir ver 2.60 17.16 0.00 0.41 ind:imp:3p; +gravissais gravir ver 2.60 17.16 0.01 0.20 ind:imp:1s;ind:imp:2s; +gravissait gravir ver 2.60 17.16 0.01 0.95 ind:imp:3s; +gravissant gravir ver 2.60 17.16 0.05 0.81 par:pre; +gravisse gravir ver 2.60 17.16 0.00 0.07 sub:pre:1s; +gravissent gravir ver 2.60 17.16 0.00 0.41 ind:pre:3p; +gravissime gravissime adj f s 0.41 0.14 0.17 0.07 +gravissimes gravissime adj p 0.41 0.14 0.25 0.07 +gravissions gravir ver 2.60 17.16 0.00 0.14 ind:imp:1p; +gravissons gravir ver 2.60 17.16 0.01 0.47 imp:pre:1p;ind:pre:1p; +gravit gravir ver 2.60 17.16 0.22 3.92 ind:pre:3s;ind:pas:3s; +gravitaient graviter ver 0.39 1.08 0.00 0.34 ind:imp:3p; +gravitait graviter ver 0.39 1.08 0.03 0.20 ind:imp:3s; +gravitant graviter ver 0.39 1.08 0.00 0.07 par:pre; +gravitation gravitation nom f s 0.98 1.22 0.98 1.22 +gravitationnel gravitationnel adj m s 1.66 0.00 0.61 0.00 +gravitationnelle gravitationnel adj f s 1.66 0.00 0.59 0.00 +gravitationnelles gravitationnel adj f p 1.66 0.00 0.44 0.00 +gravitationnels gravitationnel adj m p 1.66 0.00 0.01 0.00 +gravite graviter ver 0.39 1.08 0.21 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +graviter graviter ver 0.39 1.08 0.04 0.27 inf; +gravières gravière nom f p 0.00 0.07 0.00 0.07 +gravitons graviton nom m p 0.02 0.00 0.02 0.00 +gravité gravité nom f s 7.58 17.16 7.58 17.16 +gravons graver ver 10.34 18.38 0.05 0.00 imp:pre:1p; +gravos gravos adj m 0.01 0.20 0.01 0.20 +gravosse gravosse nom f s 0.00 1.42 0.00 1.35 +gravosses gravosse nom f p 0.00 1.42 0.00 0.07 +gravât graver ver 10.34 18.38 0.00 0.07 sub:imp:3s; +gravèrent graver ver 10.34 18.38 0.14 0.07 ind:pas:3p; +gravé graver ver m s 10.34 18.38 3.58 6.08 par:pas; +gravée graver ver f s 10.34 18.38 1.05 2.57 par:pas; +gravées graver ver f p 10.34 18.38 0.82 1.69 par:pas; +gravure gravure nom f s 1.45 10.00 0.88 3.85 +gravures gravure nom f p 1.45 10.00 0.57 6.15 +gravés graver ver m p 10.34 18.38 1.13 3.11 par:pas; +gray gray nom m s 0.10 0.07 0.03 0.00 +grays gray nom m p 0.10 0.07 0.08 0.07 +grec grec nom m s 11.36 26.22 6.31 14.86 +grecque grec adj f s 12.14 29.46 3.69 9.26 +grecques grec adj f p 12.14 29.46 0.96 3.18 +grecs grec nom m p 11.36 26.22 4.58 8.51 +gredin gredin nom m s 1.82 0.61 1.25 0.34 +gredine gredin nom f s 1.82 0.61 0.02 0.07 +gredins gredin nom m p 1.82 0.61 0.55 0.20 +green green nom m s 1.13 0.27 1.04 0.07 +greens green nom m p 1.13 0.27 0.09 0.20 +greffage greffage nom m s 0.01 0.00 0.01 0.00 +greffaient greffer ver 2.33 2.30 0.00 0.07 ind:imp:3p; +greffais greffer ver 2.33 2.30 0.01 0.00 ind:imp:1s; +greffait greffer ver 2.33 2.30 0.00 0.14 ind:imp:3s; +greffant greffer ver 2.33 2.30 0.01 0.27 par:pre; +greffe greffe nom s 4.25 5.41 3.31 4.86 +greffent greffer ver 2.33 2.30 0.14 0.14 ind:pre:3p; +greffer greffer ver 2.33 2.30 0.84 0.61 inf; +greffera greffer ver 2.33 2.30 0.01 0.07 ind:fut:3s; +grefferais greffer ver 2.33 2.30 0.00 0.07 cnd:pre:1s; +grefferons greffer ver 2.33 2.30 0.00 0.07 ind:fut:1p; +grefferont greffer ver 2.33 2.30 0.00 0.07 ind:fut:3p; +greffes greffe nom p 4.25 5.41 0.94 0.54 +greffier greffier nom m s 1.54 3.65 1.42 3.18 +greffiers greffier nom m p 1.54 3.65 0.04 0.47 +greffière greffier nom f s 1.54 3.65 0.08 0.00 +greffon greffon nom m s 0.33 0.20 0.18 0.00 +greffons greffon nom m p 0.33 0.20 0.16 0.20 +greffé greffer ver m s 2.33 2.30 0.44 0.47 par:pas; +greffée greffé adj f s 0.34 0.41 0.26 0.34 +greffées greffer ver f p 2.33 2.30 0.01 0.00 par:pas; +greffés greffer ver m p 2.33 2.30 0.20 0.07 par:pas; +grelot grelot nom m s 0.43 4.66 0.11 1.82 +grelots grelot nom m p 0.43 4.66 0.32 2.84 +grelotta grelotter ver 1.25 10.27 0.00 0.20 ind:pas:3s; +grelottaient grelotter ver 1.25 10.27 0.00 0.41 ind:imp:3p; +grelottais grelotter ver 1.25 10.27 0.01 0.47 ind:imp:1s; +grelottait grelotter ver 1.25 10.27 0.27 1.76 ind:imp:3s; +grelottant grelottant adj m s 0.11 2.16 0.10 0.74 +grelottante grelottant adj f s 0.11 2.16 0.00 0.68 +grelottantes grelottant adj f p 0.11 2.16 0.00 0.34 +grelottants grelottant adj m p 0.11 2.16 0.01 0.41 +grelotte grelotter ver 1.25 10.27 0.65 1.49 ind:pre:1s;ind:pre:3s; +grelottement grelottement nom m s 0.00 0.95 0.00 0.88 +grelottements grelottement nom m p 0.00 0.95 0.00 0.07 +grelottent grelotter ver 1.25 10.27 0.00 0.47 ind:pre:3p; +grelotter grelotter ver 1.25 10.27 0.14 2.03 inf; +grelottes grelotter ver 1.25 10.27 0.01 0.20 ind:pre:2s; +grelotteux grelotteux nom m 0.00 0.07 0.00 0.07 +grelottions grelotter ver 1.25 10.27 0.14 0.07 ind:imp:1p; +grelottons grelotter ver 1.25 10.27 0.00 0.20 ind:pre:1p; +grelottèrent grelotter ver 1.25 10.27 0.00 0.07 ind:pas:3p; +grelotté grelotter ver m s 1.25 10.27 0.01 0.27 par:pas; +grelottée grelotter ver f s 1.25 10.27 0.00 0.07 par:pas; +greluche greluche nom f s 0.57 1.01 0.29 0.47 +greluches greluche nom f p 0.57 1.01 0.28 0.54 +greluchon greluchon nom m s 0.00 0.20 0.00 0.20 +grenache grenache nom m s 0.00 0.27 0.00 0.27 +grenadage grenadage nom m s 0.03 0.00 0.03 0.00 +grenade grenade nom f s 11.67 12.97 6.32 6.49 +grenader grenader ver 0.05 0.20 0.05 0.07 inf; +grenades grenade nom f p 11.67 12.97 5.35 6.49 +grenadeur grenadeur nom m s 0.01 0.00 0.01 0.00 +grenadier grenadier nom m s 0.14 4.05 0.04 1.42 +grenadiers grenadier nom m p 0.14 4.05 0.10 2.64 +grenadine grenadine nom f s 0.41 3.99 0.14 3.72 +grenadines grenadine nom f p 0.41 3.99 0.27 0.27 +grenadé grenader ver m s 0.05 0.20 0.00 0.14 par:pas; +grenaille grenaille nom f s 0.00 0.14 0.00 0.07 +grenailles grenaille nom f p 0.00 0.14 0.00 0.07 +grenat grenat adj 0.16 3.85 0.16 3.85 +grenats grenat nom m p 0.06 0.61 0.04 0.27 +grenelle greneler ver 0.00 0.07 0.00 0.07 imp:pre:2s; +greneta greneter ver 0.00 0.07 0.00 0.07 ind:pas:3s; +greneuse greneur nom f s 0.00 0.07 0.00 0.07 +grenier grenier nom m s 9.39 24.39 9.05 19.53 +greniers grenier nom m p 9.39 24.39 0.34 4.86 +grenoblois grenoblois nom m s 0.00 0.14 0.00 0.14 +grenouillage grenouillage nom m s 0.14 0.00 0.14 0.00 +grenouillait grenouiller ver 0.00 0.07 0.00 0.07 ind:imp:3s; +grenouillard grenouillard adj m s 0.01 0.00 0.01 0.00 +grenouille_taureau grenouille_taureau nom f s 0.01 0.00 0.01 0.00 +grenouille grenouille nom f s 9.09 10.47 5.74 4.59 +grenouilles grenouille nom f p 9.09 10.47 3.35 5.88 +grenouillettes grenouillette nom f p 0.00 0.07 0.00 0.07 +grenouillère grenouiller nom f s 0.06 0.00 0.06 0.00 +grenouillères grenouillère nom f p 0.05 0.00 0.05 0.00 +grené grener ver m s 0.00 0.34 0.00 0.07 par:pas; +grenu grenu adj m s 0.01 1.89 0.01 0.74 +grenée grener ver f s 0.00 0.34 0.00 0.07 par:pas; +grenue grenu adj f s 0.01 1.89 0.00 0.68 +grenées grener ver f p 0.00 0.34 0.00 0.07 par:pas; +grenues grenu adj f p 0.01 1.89 0.00 0.34 +grenures grenure nom f p 0.00 0.14 0.00 0.14 +grenus grenu adj m p 0.01 1.89 0.00 0.14 +gressin gressin nom m s 0.04 0.27 0.03 0.20 +gressins gressin nom m p 0.04 0.27 0.01 0.07 +gretchen gretchen nom f s 1.89 0.41 1.89 0.34 +gretchens gretchen nom f p 1.89 0.41 0.00 0.07 +grevaient grever ver 0.18 0.81 0.00 0.07 ind:imp:3p; +grever grever ver 0.18 0.81 0.02 0.07 inf; +grevé grever ver m s 0.18 0.81 0.01 0.14 par:pas; +grevée grever ver f s 0.18 0.81 0.00 0.20 par:pas; +grevés grever ver m p 0.18 0.81 0.00 0.07 par:pas; +gri_gri gri_gri nom m s 0.21 0.14 0.21 0.14 +gribiche gribiche adj f s 0.00 0.14 0.00 0.14 +gribouilla gribouiller ver 0.60 1.69 0.00 0.07 ind:pas:3s; +gribouillage gribouillage nom m s 0.66 0.54 0.51 0.20 +gribouillages gribouillage nom m p 0.66 0.54 0.16 0.34 +gribouillais gribouiller ver 0.60 1.69 0.02 0.00 ind:imp:1s; +gribouillait gribouiller ver 0.60 1.69 0.01 0.14 ind:imp:3s; +gribouillant gribouiller ver 0.60 1.69 0.01 0.07 par:pre; +gribouille gribouiller ver 0.60 1.69 0.19 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gribouillent gribouiller ver 0.60 1.69 0.00 0.07 ind:pre:3p; +gribouiller gribouiller ver 0.60 1.69 0.13 0.41 inf; +gribouilles gribouiller ver 0.60 1.69 0.01 0.07 ind:pre:2s; +gribouilleur gribouilleur nom m s 0.06 0.07 0.06 0.07 +gribouillez gribouiller ver 0.60 1.69 0.03 0.00 imp:pre:2p;ind:pre:2p; +gribouillis gribouillis nom m 0.85 1.01 0.85 1.01 +gribouillé gribouiller ver m s 0.60 1.69 0.18 0.14 par:pas; +gribouillée gribouiller ver f s 0.60 1.69 0.01 0.07 par:pas; +gribouillées gribouiller ver f p 0.60 1.69 0.00 0.14 par:pas; +gribouillés gribouiller ver m p 0.60 1.69 0.00 0.20 par:pas; +grief grief nom m s 0.77 7.43 0.23 2.91 +griefs grief nom m p 0.77 7.43 0.54 4.53 +griffa griffer ver 3.28 9.53 0.00 0.68 ind:pas:3s; +griffage griffage nom m s 0.00 0.07 0.00 0.07 +griffai griffer ver 3.28 9.53 0.00 0.07 ind:pas:1s; +griffaient griffer ver 3.28 9.53 0.02 0.95 ind:imp:3p; +griffais griffer ver 3.28 9.53 0.01 0.07 ind:imp:1s; +griffait griffer ver 3.28 9.53 0.10 0.88 ind:imp:3s; +griffant griffer ver 3.28 9.53 0.05 0.68 par:pre; +griffe griffe nom f s 8.11 13.92 1.06 2.70 +griffent griffer ver 3.28 9.53 0.20 0.20 ind:pre:3p; +griffer griffer ver 3.28 9.53 0.64 2.57 inf; +griffera griffer ver 3.28 9.53 0.02 0.14 ind:fut:3s; +grifferait griffer ver 3.28 9.53 0.00 0.07 cnd:pre:3s; +griffes griffe nom f p 8.11 13.92 7.04 11.22 +griffeur griffeur nom m s 0.01 0.00 0.01 0.00 +griffon griffon nom m s 0.59 1.42 0.57 1.01 +griffonna griffonner ver 0.65 7.97 0.00 0.68 ind:pas:3s; +griffonnage griffonnage nom m s 0.07 0.61 0.04 0.20 +griffonnages griffonnage nom m p 0.07 0.61 0.04 0.41 +griffonnai griffonner ver 0.65 7.97 0.00 0.14 ind:pas:1s; +griffonnaient griffonner ver 0.65 7.97 0.00 0.07 ind:imp:3p; +griffonnais griffonner ver 0.65 7.97 0.01 0.20 ind:imp:1s;ind:imp:2s; +griffonnait griffonner ver 0.65 7.97 0.16 0.61 ind:imp:3s; +griffonnant griffonner ver 0.65 7.97 0.03 0.47 par:pre; +griffonne griffonner ver 0.65 7.97 0.18 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +griffonnent griffonner ver 0.65 7.97 0.00 0.14 ind:pre:3p; +griffonner griffonner ver 0.65 7.97 0.10 1.55 inf; +griffonnes griffonner ver 0.65 7.97 0.03 0.07 ind:pre:2s; +griffonneur griffonneur nom m s 0.14 0.00 0.14 0.00 +griffonnez griffonner ver 0.65 7.97 0.02 0.00 imp:pre:2p;ind:pre:2p; +griffonné griffonner ver m s 0.65 7.97 0.04 1.15 par:pas; +griffonnée griffonner ver f s 0.65 7.97 0.03 0.34 par:pas; +griffonnées griffonner ver f p 0.65 7.97 0.01 0.74 par:pas; +griffonnés griffonner ver m p 0.65 7.97 0.04 0.74 par:pas; +griffons griffon nom m p 0.59 1.42 0.03 0.41 +grifftons griffton nom m p 0.00 0.07 0.00 0.07 +griffé griffer ver m s 3.28 9.53 1.40 0.74 par:pas; +griffu griffu adj m s 0.21 1.89 0.16 0.27 +griffée griffer ver f s 3.28 9.53 0.21 0.34 par:pas; +griffue griffu adj f s 0.21 1.89 0.00 0.34 +griffées griffé adj f p 0.14 0.81 0.01 0.14 +griffues griffu adj f p 0.21 1.89 0.01 0.95 +griffure griffure nom f s 0.82 0.81 0.19 0.20 +griffures griffure nom f p 0.82 0.81 0.63 0.61 +griffés griffer ver m p 3.28 9.53 0.05 0.20 par:pas; +griffus griffu adj m p 0.21 1.89 0.04 0.34 +grifton grifton nom m s 0.00 0.14 0.00 0.14 +grignota grignoter ver 3.52 10.27 0.00 0.68 ind:pas:3s; +grignotage grignotage nom m s 0.10 0.34 0.10 0.20 +grignotages grignotage nom m p 0.10 0.34 0.00 0.14 +grignotaient grignoter ver 3.52 10.27 0.02 0.61 ind:imp:3p; +grignotais grignoter ver 3.52 10.27 0.03 0.27 ind:imp:1s; +grignotait grignoter ver 3.52 10.27 0.03 1.69 ind:imp:3s; +grignotant grignoter ver 3.52 10.27 0.16 1.22 par:pre; +grignote grignoter ver 3.52 10.27 0.60 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +grignotement grignotement nom m s 0.04 0.88 0.04 0.88 +grignotent grignoter ver 3.52 10.27 0.14 0.47 ind:pre:3p; +grignoter grignoter ver 3.52 10.27 1.69 2.57 inf; +grignotera grignoter ver 3.52 10.27 0.01 0.07 ind:fut:3s; +grignoterai grignoter ver 3.52 10.27 0.16 0.00 ind:fut:1s; +grignoteraient grignoter ver 3.52 10.27 0.00 0.07 cnd:pre:3p; +grignoterons grignoter ver 3.52 10.27 0.10 0.00 ind:fut:1p; +grignoteront grignoter ver 3.52 10.27 0.01 0.00 ind:fut:3p; +grignoteurs grignoteur nom m p 0.00 0.07 0.00 0.07 +grignoteuses grignoteur adj f p 0.00 0.14 0.00 0.14 +grignotions grignoter ver 3.52 10.27 0.00 0.14 ind:imp:1p; +grignotis grignotis nom m 0.00 0.14 0.00 0.14 +grignotons grignoter ver 3.52 10.27 0.02 0.07 imp:pre:1p;ind:pre:1p; +grignotèrent grignoter ver 3.52 10.27 0.00 0.14 ind:pas:3p; +grignoté grignoter ver m s 3.52 10.27 0.51 0.74 par:pas; +grignotée grignoter ver f s 3.52 10.27 0.01 0.14 par:pas; +grignotées grignoter ver f p 3.52 10.27 0.02 0.07 par:pas; +grignotés grignoter ver m p 3.52 10.27 0.00 0.07 par:pas; +grigou grigou nom m s 0.02 0.41 0.02 0.41 +grigri grigri nom m s 0.48 0.61 0.46 0.07 +grigris grigri nom m p 0.48 0.61 0.02 0.54 +gril gril nom m s 0.68 1.76 0.64 1.49 +grill_room grill_room nom m s 0.00 0.27 0.00 0.27 +grill grill nom m s 1.66 0.14 1.66 0.14 +grilla griller ver 14.20 12.70 0.00 0.27 ind:pas:3s; +grillade grillade nom f s 0.69 1.08 0.41 0.54 +grilladerie grilladerie nom f s 0.02 0.00 0.02 0.00 +grillades grillade nom f p 0.69 1.08 0.28 0.54 +grillage grillage nom m s 1.48 12.03 1.47 9.59 +grillageront grillager ver 0.18 0.88 0.00 0.07 ind:fut:3p; +grillages grillage nom m p 1.48 12.03 0.01 2.43 +grillagez grillager ver 0.18 0.88 0.01 0.00 imp:pre:2p; +grillagé grillager ver m s 0.18 0.88 0.01 0.20 par:pas; +grillagée grillager ver f s 0.18 0.88 0.12 0.34 par:pas; +grillagées grillager ver f p 0.18 0.88 0.04 0.20 par:pas; +grillagés grillagé adj m p 0.14 2.64 0.14 0.20 +grillaient griller ver 14.20 12.70 0.00 0.14 ind:imp:3p; +grillais griller ver 14.20 12.70 0.01 0.14 ind:imp:1s; +grillait griller ver 14.20 12.70 0.06 1.35 ind:imp:3s; +grillant griller ver 14.20 12.70 0.16 0.88 par:pre; +grille_pain grille_pain nom m 2.90 0.27 2.90 0.27 +grille grille nom f s 11.01 58.24 9.09 43.85 +grillent griller ver 14.20 12.70 0.24 0.27 ind:pre:3p; +griller griller ver 14.20 12.70 4.97 4.05 inf; +grillera griller ver 14.20 12.70 0.16 0.00 ind:fut:3s; +grillerai griller ver 14.20 12.70 0.02 0.00 ind:fut:1s; +grilleraient griller ver 14.20 12.70 0.02 0.07 cnd:pre:3p; +grillerais griller ver 14.20 12.70 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +grillerait griller ver 14.20 12.70 0.01 0.00 cnd:pre:3s; +grilleras griller ver 14.20 12.70 0.28 0.00 ind:fut:2s; +grillerez griller ver 14.20 12.70 0.12 0.07 ind:fut:2p; +grillerions griller ver 14.20 12.70 0.14 0.00 cnd:pre:1p; +grilleront griller ver 14.20 12.70 0.01 0.07 ind:fut:3p; +grilles grille nom f p 11.01 58.24 1.92 14.39 +grillez griller ver 14.20 12.70 0.16 0.00 imp:pre:2p;ind:pre:2p; +grilliez griller ver 14.20 12.70 0.01 0.00 ind:imp:2p; +grilloirs grilloir nom m p 0.00 0.07 0.00 0.07 +grillon grillon nom m s 1.45 4.59 0.98 2.09 +grillons grillon nom m p 1.45 4.59 0.46 2.50 +grillots grillot nom m p 0.00 0.07 0.00 0.07 +grillé griller ver m s 14.20 12.70 4.10 2.70 par:pas; +grillée grillé adj f s 4.30 7.57 0.76 1.15 +grillées grillé adj f p 4.30 7.57 0.50 1.62 +grillés grillé adj m p 4.30 7.57 0.91 1.49 +grils gril nom m p 0.68 1.76 0.04 0.27 +grima grimer ver 0.20 0.81 0.04 0.00 ind:pas:3s; +grimace_éclair grimace_éclair nom f s 0.01 0.00 0.01 0.00 +grimace grimace nom f s 4.50 31.49 2.28 22.57 +grimacement grimacement nom m s 0.00 0.07 0.00 0.07 +grimacent grimacer ver 0.49 12.36 0.04 0.14 ind:pre:3p; +grimacer grimacer ver 0.49 12.36 0.16 1.96 inf; +grimaceries grimacerie nom f p 0.00 0.07 0.00 0.07 +grimaces grimace nom f p 4.50 31.49 2.23 8.92 +grimacez grimacer ver 0.49 12.36 0.03 0.07 imp:pre:2p;ind:pre:2p; +grimacier grimacier nom m s 0.27 0.34 0.00 0.34 +grimaciers grimacier nom m p 0.27 0.34 0.27 0.00 +grimaciez grimacer ver 0.49 12.36 0.00 0.07 ind:imp:2p; +grimacions grimacer ver 0.49 12.36 0.00 0.07 ind:imp:1p; +grimacèrent grimacer ver 0.49 12.36 0.00 0.07 ind:pas:3p; +grimacé grimacer ver m s 0.49 12.36 0.05 0.88 par:pas; +grimage grimage nom m s 0.02 0.20 0.02 0.20 +grimait grimer ver 0.20 0.81 0.00 0.14 ind:imp:3s; +grimant grimer ver 0.20 0.81 0.00 0.07 par:pre; +grimasse grimer ver 0.20 0.81 0.01 0.00 sub:imp:1s; +grimaça grimacer ver 0.49 12.36 0.01 1.62 ind:pas:3s; +grimaçai grimacer ver 0.49 12.36 0.00 0.07 ind:pas:1s; +grimaçaient grimacer ver 0.49 12.36 0.00 0.54 ind:imp:3p; +grimaçais grimacer ver 0.49 12.36 0.00 0.14 ind:imp:1s; +grimaçait grimacer ver 0.49 12.36 0.02 2.09 ind:imp:3s; +grimaçant grimaçant adj m s 0.16 3.04 0.14 1.62 +grimaçante grimaçant adj f s 0.16 3.04 0.00 0.68 +grimaçantes grimaçant adj f p 0.16 3.04 0.00 0.34 +grimaçants grimaçant adj m p 0.16 3.04 0.02 0.41 +grimaçons grimacer ver 0.49 12.36 0.00 0.07 imp:pre:1p; +grimauds grimaud nom m p 0.00 0.07 0.00 0.07 +griment grimer ver 0.20 0.81 0.00 0.07 ind:pre:3p; +grimer grimer ver 0.20 0.81 0.01 0.07 inf; +grimes grime nom m p 0.48 0.00 0.48 0.00 +grimoire grimoire nom m s 0.49 1.22 0.47 0.47 +grimoires grimoire nom m p 0.49 1.22 0.02 0.74 +grimpa grimper ver 21.05 51.15 0.19 5.81 ind:pas:3s; +grimpai grimper ver 21.05 51.15 0.00 0.95 ind:pas:1s; +grimpaient grimper ver 21.05 51.15 0.04 2.03 ind:imp:3p; +grimpais grimper ver 21.05 51.15 0.51 1.01 ind:imp:1s;ind:imp:2s; +grimpait grimper ver 21.05 51.15 0.39 5.47 ind:imp:3s; +grimpant grimper ver 21.05 51.15 0.13 2.36 par:pre; +grimpante grimpant adj f s 0.18 1.55 0.11 0.14 +grimpantes grimpant adj f p 0.18 1.55 0.04 0.61 +grimpants grimpant adj m p 0.18 1.55 0.01 0.27 +grimpe grimper ver 21.05 51.15 6.12 8.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grimpent grimper ver 21.05 51.15 0.82 2.03 ind:pre:3p; +grimper grimper ver 21.05 51.15 7.48 14.05 inf; +grimpera grimper ver 21.05 51.15 0.20 0.14 ind:fut:3s; +grimperai grimper ver 21.05 51.15 0.03 0.07 ind:fut:1s; +grimperaient grimper ver 21.05 51.15 0.14 0.14 cnd:pre:3p; +grimperais grimper ver 21.05 51.15 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +grimperait grimper ver 21.05 51.15 0.06 0.14 cnd:pre:3s; +grimperez grimper ver 21.05 51.15 0.02 0.00 ind:fut:2p; +grimperons grimper ver 21.05 51.15 0.01 0.00 ind:fut:1p; +grimperont grimper ver 21.05 51.15 0.20 0.00 ind:fut:3p; +grimpette grimpette nom f s 0.29 1.01 0.29 0.81 +grimpettes grimpette nom f p 0.29 1.01 0.00 0.20 +grimpeur grimpeur nom m s 0.91 0.41 0.61 0.34 +grimpeurs grimpeur nom m p 0.91 0.41 0.25 0.07 +grimpeuse grimpeur nom f s 0.91 0.41 0.06 0.00 +grimpez grimper ver 21.05 51.15 1.59 0.14 imp:pre:2p;ind:pre:2p; +grimpiez grimper ver 21.05 51.15 0.19 0.00 ind:imp:2p; +grimpions grimper ver 21.05 51.15 0.01 0.61 ind:imp:1p; +grimpâmes grimper ver 21.05 51.15 0.01 0.07 ind:pas:1p; +grimpons grimper ver 21.05 51.15 0.29 0.54 imp:pre:1p;ind:pre:1p; +grimpât grimper ver 21.05 51.15 0.00 0.07 sub:imp:3s; +grimpèrent grimper ver 21.05 51.15 0.12 1.49 ind:pas:3p; +grimpé grimper ver m s 21.05 51.15 2.01 4.93 par:pas; +grimpée grimper ver f s 21.05 51.15 0.14 0.14 par:pas; +grimpées grimper ver f p 21.05 51.15 0.14 0.00 par:pas; +grimpés grimper ver m p 21.05 51.15 0.04 0.68 par:pas; +grimé grimer ver m s 0.20 0.81 0.13 0.14 par:pas; +grimée grimer ver f s 0.20 0.81 0.00 0.07 par:pas; +grimées grimer ver f p 0.20 0.81 0.00 0.07 par:pas; +grimés grimer ver m p 0.20 0.81 0.00 0.20 par:pas; +grince grincer ver 2.84 19.53 1.37 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grincement grincement nom m s 1.57 9.59 0.71 6.49 +grincements grincement nom m p 1.57 9.59 0.86 3.11 +grincent grincer ver 2.84 19.53 0.26 0.95 ind:pre:3p; +grincer grincer ver 2.84 19.53 0.59 4.46 inf; +grincerait grincer ver 2.84 19.53 0.01 0.07 cnd:pre:3s; +grinces grincer ver 2.84 19.53 0.04 0.00 ind:pre:2s; +grincez grincer ver 2.84 19.53 0.00 0.07 imp:pre:2p; +grinche grinche adj s 0.02 0.00 0.02 0.00 +grincheuse grincheux adj f s 1.52 1.22 0.34 0.14 +grincheuses grincheux adj f p 1.52 1.22 0.02 0.07 +grincheux grincheux adj m 1.52 1.22 1.16 1.01 +grinchir grinchir ver 0.00 0.14 0.00 0.14 inf; +grincèrent grincer ver 2.84 19.53 0.00 0.47 ind:pas:3p; +grincé grincer ver m s 2.84 19.53 0.35 0.95 par:pas; +gringalet gringalet nom m s 0.44 0.61 0.40 0.41 +gringalets gringalet nom m p 0.44 0.61 0.04 0.20 +gringo gringo nom m s 4.64 0.00 3.66 0.00 +gringos gringo nom m p 4.64 0.00 0.98 0.00 +gringue gringue nom m s 0.35 1.15 0.35 1.15 +gringuer gringuer ver 0.00 0.14 0.00 0.14 inf; +grinça grincer ver 2.84 19.53 0.00 2.64 ind:pas:3s; +grinçaient grincer ver 2.84 19.53 0.00 1.35 ind:imp:3p; +grinçais grincer ver 2.84 19.53 0.00 0.07 ind:imp:1s; +grinçait grincer ver 2.84 19.53 0.19 2.97 ind:imp:3s; +grinçant grinçant adj m s 0.47 3.78 0.32 1.35 +grinçante grinçant adj f s 0.47 3.78 0.02 1.49 +grinçantes grinçant adj f p 0.47 3.78 0.10 0.34 +grinçants grinçant adj m p 0.47 3.78 0.03 0.61 +grinçât grincer ver 2.84 19.53 0.00 0.07 sub:imp:3s; +griot griot nom m s 0.58 1.55 0.16 1.08 +griots griot nom m p 0.58 1.55 0.43 0.47 +griotte griotte nom f s 0.13 3.18 0.00 0.07 +griottes griotte nom f p 0.13 3.18 0.13 3.11 +grip grip nom m s 0.20 0.00 0.20 0.00 +grippa gripper ver 0.71 1.22 0.00 0.14 ind:pas:3s; +grippaient gripper ver 0.71 1.22 0.00 0.07 ind:imp:3p; +grippal grippal adj m s 0.03 0.00 0.01 0.00 +grippant gripper ver 0.71 1.22 0.00 0.07 par:pre; +grippaux grippal adj m p 0.03 0.00 0.02 0.00 +grippe_sou grippe_sou nom m s 0.25 0.14 0.13 0.07 +grippe_sou grippe_sou nom m p 0.25 0.14 0.12 0.07 +grippe grippe nom f s 8.22 5.54 8.02 4.86 +grippements grippement nom m p 0.00 0.07 0.00 0.07 +gripper gripper ver 0.71 1.22 0.04 0.00 inf; +gripperait gripper ver 0.71 1.22 0.00 0.07 cnd:pre:3s; +grippes grippe nom f p 8.22 5.54 0.21 0.68 +grippé gripper ver m s 0.71 1.22 0.15 0.20 par:pas; +grippée gripper ver f s 0.71 1.22 0.25 0.27 par:pas; +grippés gripper ver m p 0.71 1.22 0.14 0.07 par:pas; +gris_blanc gris_blanc adj m s 0.00 0.20 0.00 0.20 +gris_bleu gris_bleu adj m s 0.30 1.69 0.30 1.69 +gris_gris gris_gris nom m 0.22 0.74 0.22 0.74 +gris_jaune gris_jaune adj m s 0.00 0.20 0.00 0.20 +gris_perle gris_perle adj m s 0.01 0.14 0.01 0.14 +gris_rose gris_rose adj 0.00 0.41 0.00 0.41 +gris_vert gris_vert adj m s 0.01 1.55 0.01 1.55 +gris gris adj m 19.64 154.86 11.05 88.31 +grisa griser ver 1.03 10.27 0.00 0.47 ind:pas:3s; +grisai griser ver 1.03 10.27 0.00 0.14 ind:pas:1s; +grisaient griser ver 1.03 10.27 0.00 0.20 ind:imp:3p; +grisaille grisaille nom f s 0.25 7.77 0.25 7.36 +grisailles grisaille nom f p 0.25 7.77 0.00 0.41 +grisaillèrent grisailler ver 0.00 0.07 0.00 0.07 ind:pas:3p; +grisais griser ver 1.03 10.27 0.00 0.14 ind:imp:1s; +grisait griser ver 1.03 10.27 0.00 1.35 ind:imp:3s; +grisant grisant adj m s 0.54 3.24 0.29 1.28 +grisante grisant adj f s 0.54 3.24 0.21 1.28 +grisantes grisant adj f p 0.54 3.24 0.01 0.34 +grisants grisant adj m p 0.54 3.24 0.03 0.34 +grisassent griser ver 1.03 10.27 0.00 0.07 sub:imp:3p; +grisbi grisbi nom m s 0.15 1.22 0.15 1.22 +grise gris adj f s 19.64 154.86 7.25 49.39 +grisent griser ver 1.03 10.27 0.02 0.20 ind:pre:3p; +griser griser ver 1.03 10.27 0.09 1.55 inf; +grisera griser ver 1.03 10.27 0.00 0.07 ind:fut:3s; +griserie griserie nom f s 0.02 2.23 0.02 2.16 +griseries griserie nom f p 0.02 2.23 0.00 0.07 +grises gris adj f p 19.64 154.86 1.34 17.16 +grisette grisette nom f s 0.00 0.41 0.00 0.14 +grisettes grisette nom f p 0.00 0.41 0.00 0.27 +grison grison nom m s 0.01 0.00 0.01 0.00 +grisonnaient grisonner ver 0.32 0.88 0.00 0.27 ind:imp:3p; +grisonnait grisonner ver 0.32 0.88 0.01 0.14 ind:imp:3s; +grisonnant grisonnant adj m s 0.48 3.04 0.18 0.81 +grisonnante grisonnant adj f s 0.48 3.04 0.03 0.74 +grisonnantes grisonnant adj f p 0.48 3.04 0.12 0.20 +grisonnants grisonnant adj m p 0.48 3.04 0.15 1.28 +grisonne grisonner ver 0.32 0.88 0.14 0.00 ind:pre:1s; +grisonnent grisonner ver 0.32 0.88 0.01 0.14 ind:pre:3p; +grisonner grisonner ver 0.32 0.88 0.01 0.14 inf; +grisonné grisonner ver m s 0.32 0.88 0.01 0.07 par:pas; +grisons grison adj m p 0.01 0.14 0.00 0.14 +grisâtre grisâtre adj s 0.12 13.04 0.10 9.53 +grisâtres grisâtre adj p 0.12 13.04 0.02 3.51 +grisotte grisotte nom f s 0.00 0.07 0.00 0.07 +grisou grisou nom m s 0.01 1.22 0.01 1.22 +grisé grisé adj m s 0.16 0.61 0.14 0.41 +grisée griser ver f s 1.03 10.27 0.00 0.61 par:pas; +grisées griser ver f p 1.03 10.27 0.00 0.07 par:pas; +grisés griser ver m p 1.03 10.27 0.14 0.61 par:pas; +grièvement grièvement adv 1.68 1.55 1.68 1.55 +grive grive nom f s 1.73 1.82 0.52 0.74 +grivelle griveler ver 0.00 0.20 0.00 0.20 ind:pre:3s; +grivelée grivelé adj f s 0.00 0.07 0.00 0.07 +grivelures grivelure nom f p 0.00 0.07 0.00 0.07 +grives grive nom f p 1.73 1.82 1.21 1.08 +grivet grivet nom m s 0.01 0.00 0.01 0.00 +griveton griveton nom m s 0.00 1.08 0.00 0.47 +grivetons griveton nom m p 0.00 1.08 0.00 0.61 +grivois grivois adj m 0.38 0.95 0.25 0.27 +grivoise grivois adj f s 0.38 0.95 0.12 0.14 +grivoiserie grivoiserie nom f s 0.03 0.20 0.00 0.14 +grivoiseries grivoiserie nom f p 0.03 0.20 0.03 0.07 +grivoises grivois adj f p 0.38 0.95 0.01 0.54 +grivèlerie grivèlerie nom f s 0.00 0.20 0.00 0.20 +grizzli grizzli nom m s 0.57 0.00 0.19 0.00 +grizzlis grizzli nom m p 0.57 0.00 0.38 0.00 +grizzly grizzly nom m s 0.74 0.20 0.72 0.14 +grizzlys grizzly nom m p 0.74 0.20 0.02 0.07 +grâce grâce pre 85.61 78.85 85.61 78.85 +grâces grâce nom f p 34.59 57.70 2.50 8.04 +groenlandais groenlandais adj m p 0.10 0.07 0.10 0.07 +grog grog nom m s 0.63 1.42 0.52 1.15 +groggy groggy adj s 0.71 0.54 0.71 0.54 +grogna grogner ver 3.01 31.42 0.02 11.96 ind:pas:3s; +grognai grogner ver 3.01 31.42 0.00 0.07 ind:pas:1s; +grognaient grogner ver 3.01 31.42 0.23 0.41 ind:imp:3p; +grognais grogner ver 3.01 31.42 0.00 0.07 ind:imp:1s; +grognait grogner ver 3.01 31.42 0.07 4.19 ind:imp:3s; +grognant grognant adj m s 0.10 0.27 0.10 0.27 +grognard grognard nom m s 0.03 0.74 0.03 0.27 +grognards grognard nom m p 0.03 0.74 0.00 0.47 +grognassaient grognasser ver 0.00 0.20 0.00 0.07 ind:imp:3p; +grognasse grognasse nom f s 0.17 0.95 0.14 0.61 +grognasser grognasser ver 0.00 0.20 0.00 0.14 inf; +grognasses grognasse nom f p 0.17 0.95 0.03 0.34 +grogne grogner ver 3.01 31.42 1.55 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grognement grognement nom m s 1.33 9.53 0.65 4.46 +grognements grognement nom m p 1.33 9.53 0.68 5.07 +grognent grogner ver 3.01 31.42 0.08 0.54 ind:pre:3p; +grogner grogner ver 3.01 31.42 0.69 2.30 inf; +grognera grogner ver 3.01 31.42 0.00 0.14 ind:fut:3s; +grognes grogner ver 3.01 31.42 0.25 0.41 ind:pre:2s; +grogneurs grogneur adj m p 0.00 0.20 0.00 0.07 +grogneuse grogneur adj f s 0.00 0.20 0.00 0.14 +grognions grogner ver 3.01 31.42 0.00 0.14 ind:imp:1p; +grognon grognon adj m s 0.79 1.22 0.71 0.88 +grognonna grognonner ver 0.01 0.20 0.00 0.07 ind:pas:3s; +grognonne grognon adj f s 0.79 1.22 0.01 0.20 +grognonner grognonner ver 0.01 0.20 0.01 0.07 inf; +grognons grognon adj m p 0.79 1.22 0.06 0.14 +grognèrent grogner ver 3.01 31.42 0.00 0.20 ind:pas:3p; +grogné grogner ver m s 3.01 31.42 0.11 2.30 par:pas; +grognées grogner ver f p 3.01 31.42 0.00 0.07 par:pas; +grogs grog nom m p 0.63 1.42 0.12 0.27 +groin groin nom m s 0.43 1.89 0.32 1.76 +groins groin nom m p 0.43 1.89 0.11 0.14 +grole grole nom f s 0.07 0.34 0.04 0.14 +groles grole nom f p 0.07 0.34 0.03 0.20 +grolle grolle nom f s 0.13 1.49 0.04 0.41 +grolles grolle nom f p 0.13 1.49 0.10 1.08 +grommela grommeler ver 0.14 13.92 0.01 5.61 ind:pas:3s; +grommelai grommeler ver 0.14 13.92 0.00 0.14 ind:pas:1s; +grommelaient grommeler ver 0.14 13.92 0.01 0.14 ind:imp:3p; +grommelait grommeler ver 0.14 13.92 0.01 1.96 ind:imp:3s; +grommelant grommeler ver 0.14 13.92 0.02 2.36 par:pre; +grommeler grommeler ver 0.14 13.92 0.03 0.81 inf; +grommelez grommeler ver 0.14 13.92 0.02 0.00 ind:pre:2p; +grommelle grommeler ver 0.14 13.92 0.01 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grommellement grommellement nom m s 0.01 0.74 0.01 0.47 +grommellements grommellement nom m p 0.01 0.74 0.00 0.27 +grommellent grommeler ver 0.14 13.92 0.02 0.07 ind:pre:3p; +grommellerait grommeler ver 0.14 13.92 0.00 0.07 cnd:pre:3s; +grommelèrent grommeler ver 0.14 13.92 0.00 0.07 ind:pas:3p; +grommelé grommeler ver m s 0.14 13.92 0.01 0.88 par:pas; +grommelée grommeler ver f s 0.14 13.92 0.00 0.07 par:pas; +gronda gronder ver 8.74 22.70 0.04 4.66 ind:pas:3s; +grondai gronder ver 8.74 22.70 0.00 0.34 ind:pas:1s; +grondaient gronder ver 8.74 22.70 0.02 0.81 ind:imp:3p; +grondais gronder ver 8.74 22.70 0.10 0.20 ind:imp:1s;ind:imp:2s; +grondait gronder ver 8.74 22.70 0.15 4.66 ind:imp:3s; +grondant gronder ver 8.74 22.70 0.30 2.36 par:pre; +grondante grondant adj f s 0.23 1.42 0.01 0.81 +grondants grondant adj m p 0.23 1.42 0.00 0.14 +gronde gronder ver 8.74 22.70 4.75 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grondement grondement nom m s 1.30 14.80 1.18 12.36 +grondements grondement nom m p 1.30 14.80 0.13 2.43 +grondent gronder ver 8.74 22.70 0.15 0.27 ind:pre:3p; +gronder gronder ver 8.74 22.70 2.14 3.58 inf; +grondera gronder ver 8.74 22.70 0.28 0.07 ind:fut:3s; +gronderai gronder ver 8.74 22.70 0.01 0.07 ind:fut:1s; +gronderait gronder ver 8.74 22.70 0.04 0.34 cnd:pre:3s; +gronderies gronderie nom f p 0.00 0.14 0.00 0.14 +grondes gronder ver 8.74 22.70 0.15 0.07 ind:pre:2s; +grondeur grondeur adj m s 0.00 1.35 0.00 0.47 +grondeurs grondeur adj m p 0.00 1.35 0.00 0.07 +grondeuse grondeur adj f s 0.00 1.35 0.00 0.68 +grondeuses grondeur adj f p 0.00 1.35 0.00 0.14 +grondez gronder ver 8.74 22.70 0.15 0.20 imp:pre:2p;ind:pre:2p; +grondin grondin nom m s 0.00 1.69 0.00 1.55 +grondins grondin nom m p 0.00 1.69 0.00 0.14 +grondèrent gronder ver 8.74 22.70 0.01 0.14 ind:pas:3p; +grondé gronder ver m s 8.74 22.70 0.33 0.95 par:pas; +grondée gronder ver f s 8.74 22.70 0.12 0.34 par:pas; +grondés gronder ver m p 8.74 22.70 0.01 0.14 par:pas; +groom groom nom m s 1.17 2.57 1.02 1.89 +grooms groom nom m p 1.17 2.57 0.14 0.68 +gros_bec gros_bec nom m s 0.06 0.07 0.06 0.00 +gros_bec gros_bec nom m p 0.06 0.07 0.00 0.07 +gros_cul gros_cul nom m s 0.04 0.14 0.04 0.14 +gros_grain gros_grain nom m s 0.00 0.41 0.00 0.41 +gros_porteur gros_porteur nom m s 0.02 0.00 0.02 0.00 +gros gros adj m 266.95 353.45 180.91 216.01 +groschen groschen nom m s 0.00 0.07 0.00 0.07 +groseille groseille adj f s 0.30 0.20 0.30 0.20 +groseilles groseille nom f p 1.23 1.89 0.94 1.35 +groseillier groseillier nom m s 0.17 0.61 0.01 0.14 +groseilliers groseillier nom m p 0.17 0.61 0.16 0.47 +grosse gros adj f s 266.95 353.45 70.63 85.81 +grosses gros adj f p 266.95 353.45 15.41 51.62 +grossesse grossesse nom f s 7.09 4.93 6.63 3.92 +grossesses grossesse nom f p 7.09 4.93 0.46 1.01 +grosseur grosseur nom f s 1.12 2.97 1.08 2.57 +grosseurs grosseur nom f p 1.12 2.97 0.04 0.41 +grossi grossir ver m s 10.57 14.80 3.85 2.57 par:pas; +grossie grossir ver f s 10.57 14.80 0.00 0.54 par:pas; +grossier grossier adj m s 11.64 22.57 6.77 8.99 +grossiers grossier adj m p 11.64 22.57 0.90 4.05 +grossies grossir ver f p 10.57 14.80 0.00 0.34 par:pas; +grossir grossir ver 10.57 14.80 3.30 4.93 inf; +grossira grossir ver 10.57 14.80 0.05 0.14 ind:fut:3s; +grossirent grossir ver 10.57 14.80 0.00 0.07 ind:pas:3p; +grossirez grossir ver 10.57 14.80 0.00 0.07 ind:fut:2p; +grossiront grossir ver 10.57 14.80 0.04 0.07 ind:fut:3p; +grossis grossir ver m p 10.57 14.80 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +grossissaient grossir ver 10.57 14.80 0.02 0.74 ind:imp:3p; +grossissais grossir ver 10.57 14.80 0.02 0.07 ind:imp:1s; +grossissait grossir ver 10.57 14.80 0.32 1.62 ind:imp:3s; +grossissant grossissant adj m s 0.34 1.28 0.04 1.01 +grossissante grossissant adj f s 0.34 1.28 0.03 0.00 +grossissantes grossissant adj f p 0.34 1.28 0.00 0.14 +grossissants grossissant adj m p 0.34 1.28 0.28 0.14 +grossisse grossir ver 10.57 14.80 0.09 0.14 sub:pre:1s;sub:pre:3s; +grossissement grossissement nom m s 0.06 0.81 0.06 0.81 +grossissent grossir ver 10.57 14.80 0.43 0.68 ind:pre:3p; +grossisses grossir ver 10.57 14.80 0.02 0.00 sub:pre:2s; +grossissez grossir ver 10.57 14.80 0.07 0.07 imp:pre:2p;ind:pre:2p; +grossiste grossiste nom s 0.70 0.81 0.50 0.54 +grossistes grossiste nom p 0.70 0.81 0.20 0.27 +grossit grossir ver 10.57 14.80 1.96 1.82 ind:pre:3s;ind:pas:3s; +grossière grossier adj f s 11.64 22.57 3.30 6.28 +grossièrement grossièrement adv 0.61 5.41 0.61 5.41 +grossières grossier adj f p 11.64 22.57 0.67 3.24 +grossièreté grossièreté nom f s 2.71 6.15 1.96 4.80 +grossièretés grossièreté nom f p 2.71 6.15 0.74 1.35 +grossium grossium nom m s 0.01 0.88 0.00 0.54 +grossiums grossium nom m p 0.01 0.88 0.01 0.34 +grosso_modo grosso_modo adv 0.44 1.89 0.44 1.89 +grotesque grotesque adj s 5.58 12.97 5.01 9.12 +grotesquement grotesquement adv 0.04 0.95 0.04 0.95 +grotesques grotesque adj p 5.58 12.97 0.57 3.85 +grotte grotte nom f s 12.23 21.96 8.96 17.84 +grottes grotte nom f p 12.23 21.96 3.28 4.12 +grouillaient grouiller ver 22.39 15.54 0.06 2.23 ind:imp:3p; +grouillais grouiller ver 22.39 15.54 0.00 0.07 ind:imp:1s; +grouillait grouiller ver 22.39 15.54 0.27 2.64 ind:imp:3s; +grouillant grouiller ver 22.39 15.54 0.11 1.28 par:pre; +grouillante grouillant adj f s 0.14 4.73 0.04 2.09 +grouillantes grouillant adj f p 0.14 4.73 0.03 0.88 +grouillants grouillant adj m p 0.14 4.73 0.03 1.01 +grouille grouiller ver 22.39 15.54 15.56 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grouillement grouillement nom m s 0.16 4.73 0.02 4.53 +grouillements grouillement nom m p 0.16 4.73 0.14 0.20 +grouillent grouiller ver 22.39 15.54 0.65 1.35 ind:pre:3p; +grouiller grouiller ver 22.39 15.54 0.89 1.62 inf; +grouillera grouiller ver 22.39 15.54 0.05 0.00 ind:fut:3s; +grouillerait grouiller ver 22.39 15.54 0.04 0.00 cnd:pre:3s; +grouilleront grouiller ver 22.39 15.54 0.01 0.00 ind:fut:3p; +grouilles grouiller ver 22.39 15.54 0.48 0.07 ind:pre:2s; +grouillez grouiller ver 22.39 15.54 4.08 0.95 imp:pre:2p;ind:pre:2p; +grouillis grouillis nom m 0.00 0.47 0.00 0.47 +grouillons grouiller ver 22.39 15.54 0.19 0.41 imp:pre:1p;ind:pre:1p; +grouillot grouillot nom m s 0.12 0.74 0.10 0.61 +grouillots grouillot nom m p 0.12 0.74 0.03 0.14 +grouillèrent grouiller ver 22.39 15.54 0.00 0.07 ind:pas:3p; +grouillé grouiller ver m s 22.39 15.54 0.02 0.07 par:pas; +grouillées grouiller ver f p 22.39 15.54 0.00 0.07 par:pas; +grouiner grouiner ver 0.01 0.00 0.01 0.00 inf; +groumais groumer ver 0.00 1.22 0.00 0.07 ind:imp:1s; +groumait groumer ver 0.00 1.22 0.00 0.27 ind:imp:3s; +groumant groumer ver 0.00 1.22 0.00 0.07 par:pre; +groume groumer ver 0.00 1.22 0.00 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +groumer groumer ver 0.00 1.22 0.00 0.14 inf; +ground ground nom m s 0.27 0.00 0.27 0.00 +group group nom m s 7.65 0.34 7.41 0.34 +groupa grouper ver 3.10 13.31 0.00 0.20 ind:pas:3s; +groupage groupage nom m s 0.01 0.00 0.01 0.00 +groupaient grouper ver 3.10 13.31 0.00 1.08 ind:imp:3p; +groupais grouper ver 3.10 13.31 0.00 0.07 ind:imp:1s; +groupait grouper ver 3.10 13.31 0.01 0.68 ind:imp:3s; +groupant grouper ver 3.10 13.31 0.00 0.54 par:pre; +groupe groupe nom m s 104.38 122.50 90.16 85.88 +groupement groupement nom m s 0.98 6.22 0.96 4.19 +groupements groupement nom m p 0.98 6.22 0.02 2.03 +groupent grouper ver 3.10 13.31 0.00 0.95 ind:pre:3p; +grouper grouper ver 3.10 13.31 0.44 2.03 inf; +grouperaient grouper ver 3.10 13.31 0.00 0.07 cnd:pre:3p; +grouperont grouper ver 3.10 13.31 0.10 0.07 ind:fut:3p; +groupes groupe nom m p 104.38 122.50 14.21 36.62 +groupez grouper ver 3.10 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +groupie groupie nom f s 1.34 0.74 0.86 0.34 +groupies groupie nom f p 1.34 0.74 0.48 0.41 +groupons grouper ver 3.10 13.31 0.20 0.07 imp:pre:1p;ind:pre:1p; +groupât grouper ver 3.10 13.31 0.00 0.07 sub:imp:3s; +groups group nom m p 7.65 0.34 0.25 0.00 +groupèrent grouper ver 3.10 13.31 0.00 0.41 ind:pas:3p; +groupé grouper ver m s 3.10 13.31 0.25 0.34 par:pas; +groupée grouper ver f s 3.10 13.31 0.11 0.61 par:pas; +groupées grouper ver f p 3.10 13.31 0.10 0.88 par:pas; +groupés grouper ver m p 3.10 13.31 1.25 4.19 par:pas; +groupuscule groupuscule nom m s 0.36 0.54 0.20 0.20 +groupuscules groupuscule nom m p 0.36 0.54 0.16 0.34 +grouse grouse nom f s 0.28 0.68 0.28 0.14 +grouses grouse nom f p 0.28 0.68 0.00 0.54 +grèbe grèbe nom m s 0.02 0.07 0.02 0.00 +grèbes grèbe nom m p 0.02 0.07 0.00 0.07 +grège grège adj s 0.00 1.28 0.00 1.22 +grèges grège adj p 0.00 1.28 0.00 0.07 +grègues grègues nom f p 0.00 0.07 0.00 0.07 +grène grener ver 0.00 0.34 0.00 0.07 ind:pre:3s; +grènera grener ver 0.00 0.34 0.00 0.07 ind:fut:3s; +grès grès nom m 0.31 4.05 0.31 4.05 +grève grève nom f s 15.87 26.55 14.54 22.36 +grèvent grever ver 0.18 0.81 0.00 0.14 ind:pre:3p; +grèverait grever ver 0.18 0.81 0.00 0.07 cnd:pre:3s; +grèves grève nom f p 15.87 26.55 1.33 4.19 +gré gré nom m s 11.36 28.04 11.36 28.04 +gréage gréage nom m s 0.01 0.00 0.01 0.00 +gruau gruau nom m s 0.73 0.54 0.69 0.54 +gruaux gruau nom m p 0.73 0.54 0.04 0.00 +grébiche grébiche nom f s 0.01 0.00 0.01 0.00 +gréco_latin gréco_latin adj f s 0.00 0.34 0.00 0.27 +gréco_latin gréco_latin adj f p 0.00 0.34 0.00 0.07 +gréco_romain gréco_romain adj m s 0.46 0.68 0.03 0.14 +gréco_romain gréco_romain adj f s 0.46 0.68 0.42 0.34 +gréco_romain gréco_romain adj f p 0.46 0.68 0.01 0.14 +gréco_romain gréco_romain adj m p 0.46 0.68 0.00 0.07 +gréco gréco adv 0.15 0.14 0.15 0.14 +grue grue nom f s 4.76 6.22 3.54 2.84 +gréement gréement nom m s 0.26 0.34 0.26 0.20 +gréements gréement nom m p 0.26 0.34 0.00 0.14 +gréer gréer ver 0.07 0.61 0.03 0.07 inf; +grues grue nom f p 4.76 6.22 1.22 3.38 +gréez gréer ver 0.07 0.61 0.01 0.00 imp:pre:2p; +grégaire grégaire adj s 0.11 0.47 0.11 0.47 +gruge gruger ver 0.48 0.47 0.04 0.07 ind:pre:3s; +grugeaient gruger ver 0.48 0.47 0.00 0.07 ind:imp:3p; +grugeait gruger ver 0.48 0.47 0.01 0.07 ind:imp:3s; +grugeant gruger ver 0.48 0.47 0.00 0.07 par:pre; +grégeois grégeois adj m 0.05 0.34 0.05 0.34 +gruger gruger ver 0.48 0.47 0.21 0.14 inf; +grégorien grégorien adj m s 0.06 1.35 0.03 1.01 +grégorienne grégorien adj f s 0.06 1.35 0.00 0.14 +grégoriens grégorien adj m p 0.06 1.35 0.02 0.20 +grugé gruger ver m s 0.48 0.47 0.21 0.07 par:pas; +grugée gruger ver f s 0.48 0.47 0.01 0.00 par:pas; +grêlaient grêler ver 0.24 1.49 0.00 0.07 ind:imp:3p; +grêlait grêler ver 0.24 1.49 0.00 0.07 ind:imp:3s; +grêle grêle nom f s 1.05 6.15 1.05 5.81 +grêlent grêler ver 0.24 1.49 0.00 0.20 ind:pre:3p; +grêler grêler ver 0.24 1.49 0.03 0.14 inf; +grêleraient grêler ver 0.24 1.49 0.00 0.07 cnd:pre:3p; +grêles grêle adj p 0.54 8.24 0.01 3.38 +grêlon grêlon nom m s 0.33 1.01 0.00 0.14 +grêlons grêlon nom m p 0.33 1.01 0.33 0.88 +grêlé grêlé adj m s 0.31 0.47 0.30 0.34 +grêlée grêlé adj f s 0.31 0.47 0.01 0.07 +grêlées grêler ver f p 0.24 1.49 0.00 0.14 par:pas; +grêlés grêler ver m p 0.24 1.49 0.00 0.14 par:pas; +grume grume nom f s 0.12 0.47 0.01 0.20 +grumeau grumeau nom m s 0.28 1.01 0.02 0.14 +grumeaux grumeau nom m p 0.28 1.01 0.26 0.88 +grumeleuse grumeleux adj f s 0.33 1.89 0.01 1.15 +grumeleuses grumeleux adj f p 0.33 1.89 0.02 0.14 +grumeleux grumeleux adj m 0.33 1.89 0.29 0.61 +grumes grume nom f p 0.12 0.47 0.11 0.27 +grumier grumier nom m s 0.01 0.00 0.01 0.00 +grunge grunge nom m s 0.27 0.00 0.27 0.00 +gruppetto gruppetto nom m s 0.00 0.14 0.00 0.14 +grésil grésil nom m s 0.00 0.41 0.00 0.41 +grésilla grésiller ver 0.35 5.61 0.00 0.41 ind:pas:3s; +grésillaient grésiller ver 0.35 5.61 0.00 0.68 ind:imp:3p; +grésillait grésiller ver 0.35 5.61 0.00 1.28 ind:imp:3s; +grésillant grésillant adj m s 0.15 0.68 0.01 0.41 +grésillante grésillant adj f s 0.15 0.68 0.14 0.14 +grésillantes grésillant adj f p 0.15 0.68 0.00 0.14 +grésille grésiller ver 0.35 5.61 0.16 0.88 ind:pre:1s;ind:pre:3s; +grésillement grésillement nom m s 0.46 3.85 0.17 3.38 +grésillements grésillement nom m p 0.46 3.85 0.29 0.47 +grésillent grésiller ver 0.35 5.61 0.03 0.07 ind:pre:3p; +grésiller grésiller ver 0.35 5.61 0.16 1.01 inf; +grésillerait grésiller ver 0.35 5.61 0.00 0.07 cnd:pre:3s; +grésillé grésiller ver m s 0.35 5.61 0.00 0.20 par:pas; +gruta gruter ver 0.00 0.14 0.00 0.07 ind:pas:3s; +grute gruter ver 0.00 0.14 0.00 0.07 ind:pre:1s; +grutier grutier nom m s 0.14 2.30 0.14 0.34 +grutiers grutier nom m p 0.14 2.30 0.00 1.89 +grutière grutier nom f s 0.14 2.30 0.00 0.07 +gréé gréer ver m s 0.07 0.61 0.01 0.34 par:pas; +gréée gréer ver f s 0.07 0.61 0.02 0.14 par:pas; +gréées gréer ver f p 0.07 0.61 0.00 0.07 par:pas; +gréviste gréviste nom s 1.50 2.36 0.28 0.41 +grévistes gréviste nom p 1.50 2.36 1.22 1.96 +gruyère gruyère nom m s 1.02 4.80 1.02 4.80 +gèle geler ver 23.41 17.03 6.57 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gèlent geler ver 23.41 17.03 0.58 0.27 ind:pre:3p; +gèlera geler ver 23.41 17.03 0.48 0.14 ind:fut:3s; +gèlerai geler ver 23.41 17.03 0.30 0.00 ind:fut:1s; +gèlerait geler ver 23.41 17.03 0.18 0.14 cnd:pre:3s; +gèles geler ver 23.41 17.03 0.26 0.07 ind:pre:2s; +gène gène nom m s 8.07 0.74 4.18 0.20 +gènes gène nom m p 8.07 0.74 3.90 0.54 +gère gérer ver 27.51 3.31 6.08 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gèrent gérer ver 27.51 3.31 0.37 0.07 ind:pre:3p; +guacamole guacamole nom m s 0.43 0.00 0.43 0.00 +guadeloupéenne guadeloupéenne nom f s 0.00 0.14 0.00 0.14 +guanaco guanaco nom m s 0.01 0.00 0.01 0.00 +guanine guanine nom f s 0.04 0.00 0.04 0.00 +guano guano nom m s 0.23 0.14 0.23 0.14 +géant géant adj m s 13.91 21.42 8.60 8.99 +géante géant adj f s 13.91 21.42 2.81 6.08 +géantes géant adj f p 13.91 21.42 0.94 2.97 +géants géant nom m p 11.67 22.91 4.19 3.78 +guaracha guaracha nom f s 0.02 0.00 0.02 0.00 +guarani guarani adj m s 0.00 0.07 0.00 0.07 +guatémaltèque guatémaltèque adj m s 0.07 0.00 0.07 0.00 +guelfe guelfe nom m s 0.10 0.20 0.10 0.07 +guelfes guelfe nom m p 0.10 0.20 0.00 0.14 +guenille guenille nom f s 0.41 4.46 0.04 1.08 +guenilles guenille nom f p 0.41 4.46 0.37 3.38 +guenilleux guenilleux adj m p 0.00 0.54 0.00 0.54 +guenillons guenillon nom m p 0.00 0.07 0.00 0.07 +guenipe guenipe nom f s 0.00 0.07 0.00 0.07 +guenon guenon nom f s 0.58 1.89 0.37 1.55 +guenons guenon nom f p 0.58 1.89 0.20 0.34 +guerre_éclair guerre_éclair nom f s 0.01 0.14 0.01 0.14 +guerre guerre nom f s 221.65 354.59 212.82 338.65 +guerres guerre nom f p 221.65 354.59 8.83 15.95 +guerrier guerrier nom m s 16.75 10.00 9.07 3.85 +guerriers guerrier nom m p 16.75 10.00 7.68 6.15 +guerrière guerrier adj f s 6.70 8.85 0.88 2.30 +guerrières guerrier adj f p 6.70 8.85 1.41 1.62 +guerroient guerroyer ver 0.30 1.08 0.00 0.07 ind:pre:3p; +guerroyai guerroyer ver 0.30 1.08 0.00 0.07 ind:pas:1s; +guerroyaient guerroyer ver 0.30 1.08 0.00 0.07 ind:imp:3p; +guerroyait guerroyer ver 0.30 1.08 0.00 0.27 ind:imp:3s; +guerroyant guerroyer ver 0.30 1.08 0.14 0.07 par:pre; +guerroyer guerroyer ver 0.30 1.08 0.14 0.41 inf; +guerroyeur guerroyeur nom m s 0.00 0.07 0.00 0.07 +guerroyé guerroyer ver m s 0.30 1.08 0.03 0.14 par:pas; +guet_apens guet_apens nom m 0.68 0.74 0.68 0.74 +guet guet nom m s 3.29 7.70 3.29 7.43 +guets_apens guets_apens nom m p 0.00 0.07 0.00 0.07 +guets guet nom m p 3.29 7.70 0.00 0.27 +guetta guetter ver 8.52 51.01 0.00 0.74 ind:pas:3s; +guettai guetter ver 8.52 51.01 0.00 0.81 ind:pas:1s; +guettaient guetter ver 8.52 51.01 0.16 2.50 ind:imp:3p; +guettais guetter ver 8.52 51.01 0.24 2.50 ind:imp:1s;ind:imp:2s; +guettait guetter ver 8.52 51.01 0.52 9.53 ind:imp:3s; +guettant guetter ver 8.52 51.01 0.30 6.82 par:pre; +guette guetter ver 8.52 51.01 3.79 9.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +guettent guetter ver 8.52 51.01 1.13 3.04 ind:pre:3p; +guetter guetter ver 8.52 51.01 1.01 10.00 inf;; +guettera guetter ver 8.52 51.01 0.00 0.20 ind:fut:3s; +guetterai guetter ver 8.52 51.01 0.05 0.20 ind:fut:1s; +guetterais guetter ver 8.52 51.01 0.00 0.07 cnd:pre:1s; +guetterait guetter ver 8.52 51.01 0.11 0.27 cnd:pre:3s; +guetterez guetter ver 8.52 51.01 0.01 0.00 ind:fut:2p; +guetterons guetter ver 8.52 51.01 0.02 0.14 ind:fut:1p; +guetteront guetter ver 8.52 51.01 0.02 0.00 ind:fut:3p; +guettes guetter ver 8.52 51.01 0.23 0.47 ind:pre:2s; +guetteur guetteur nom m s 1.09 4.46 0.60 2.50 +guetteurs guetteur nom m p 1.09 4.46 0.49 1.55 +guetteuse guetteur nom f s 1.09 4.46 0.00 0.27 +guetteuses guetteur nom f p 1.09 4.46 0.00 0.14 +guettez guetter ver 8.52 51.01 0.23 0.00 imp:pre:2p;ind:pre:2p; +guettiez guetter ver 8.52 51.01 0.01 0.07 ind:imp:2p; +guettions guetter ver 8.52 51.01 0.14 1.01 ind:imp:1p; +guettons guetter ver 8.52 51.01 0.12 0.00 ind:pre:1p; +guettât guetter ver 8.52 51.01 0.00 0.07 sub:imp:3s; +guettèrent guetter ver 8.52 51.01 0.00 0.14 ind:pas:3p; +guetté guetter ver m s 8.52 51.01 0.41 2.50 par:pas; +guettée guetter ver f s 8.52 51.01 0.02 0.20 par:pas; +guettées guetter ver f p 8.52 51.01 0.00 0.07 par:pas; +guettés guetter ver m p 8.52 51.01 0.00 0.61 par:pas; +gueugueule gueugueule nom f s 0.00 0.07 0.00 0.07 +gueula gueuler ver 9.81 27.30 0.00 1.28 ind:pas:3s; +gueulai gueuler ver 9.81 27.30 0.00 0.20 ind:pas:1s; +gueulaient gueuler ver 9.81 27.30 0.13 0.41 ind:imp:3p; +gueulais gueuler ver 9.81 27.30 0.17 0.47 ind:imp:1s;ind:imp:2s; +gueulait gueuler ver 9.81 27.30 0.23 4.26 ind:imp:3s; +gueulant gueuler ver 9.81 27.30 0.31 1.69 par:pre; +gueulante gueulante nom f s 0.14 1.49 0.13 1.01 +gueulantes gueulante nom f p 0.14 1.49 0.01 0.47 +gueulard gueulard nom m s 0.23 0.88 0.20 0.68 +gueularde gueulard nom f s 0.23 0.88 0.02 0.00 +gueulards gueulard nom m p 0.23 0.88 0.01 0.20 +gueule_de_loup gueule_de_loup nom f s 0.03 0.07 0.03 0.07 +gueule gueule nom f s 125.22 109.93 118.45 100.14 +gueulement gueulement nom m s 0.00 0.81 0.00 0.14 +gueulements gueulement nom m p 0.00 0.81 0.00 0.68 +gueulent gueuler ver 9.81 27.30 0.18 1.42 ind:pre:3p; +gueuler gueuler ver 9.81 27.30 3.97 6.62 inf; +gueulera gueuler ver 9.81 27.30 0.03 0.07 ind:fut:3s; +gueulerai gueuler ver 9.81 27.30 0.02 0.07 ind:fut:1s; +gueulerais gueuler ver 9.81 27.30 0.00 0.14 cnd:pre:1s;cnd:pre:2s; +gueulerait gueuler ver 9.81 27.30 0.01 0.14 cnd:pre:3s; +gueules_de_loup gueules_de_loup nom f p 0.00 0.14 0.00 0.14 +gueules gueule nom p 125.22 109.93 6.77 9.80 +gueuleton gueuleton nom m s 0.65 1.08 0.52 0.74 +gueuletonnait gueuletonner ver 0.00 0.20 0.00 0.07 ind:imp:3s; +gueuletonner gueuletonner ver 0.00 0.20 0.00 0.14 inf; +gueuletons gueuleton nom m p 0.65 1.08 0.12 0.34 +gueulette gueulette nom f s 0.01 0.14 0.01 0.07 +gueulettes gueulette nom f p 0.01 0.14 0.00 0.07 +gueulez gueuler ver 9.81 27.30 0.07 0.07 imp:pre:2p;ind:pre:2p; +gueuloir gueuloir nom m s 0.00 0.07 0.00 0.07 +gueulé gueuler ver m s 9.81 27.30 0.79 3.38 par:pas; +gueulée gueuler ver f s 9.81 27.30 0.00 0.07 par:pas; +gueulés gueuler ver m p 9.81 27.30 0.00 0.07 par:pas; +gueusant gueuser ver 0.00 0.07 0.00 0.07 par:pre; +gueusards gueusard nom m p 0.00 0.14 0.00 0.14 +gueuse gueux nom f s 2.87 4.66 0.73 0.88 +gueuserie gueuserie nom f s 0.00 0.47 0.00 0.47 +gueuses gueuse nom f p 0.01 0.00 0.01 0.00 +gueux gueux nom m 2.87 4.66 2.14 3.65 +gueuze gueuze nom f s 0.00 0.07 0.00 0.07 +gégène gégène nom f s 0.12 0.41 0.12 0.41 +gugusse gugusse nom m s 1.12 0.27 1.06 0.27 +gugusses gugusse nom m p 1.12 0.27 0.06 0.00 +géhenne géhenne nom f s 0.58 0.34 0.57 0.34 +géhennes géhenne nom f p 0.58 0.34 0.01 0.00 +gui gui nom m s 2.90 2.50 2.90 2.50 +guibole guibole nom f s 0.14 0.34 0.05 0.00 +guiboles guibole nom f p 0.14 0.34 0.08 0.34 +guibolle guibolle nom f s 0.11 4.93 0.00 0.74 +guibolles guibolle nom f p 0.11 4.93 0.11 4.19 +guiche guiche nom f s 0.06 0.27 0.06 0.14 +guiches guiche nom f p 0.06 0.27 0.00 0.14 +guichet guichet nom m s 3.81 8.45 2.92 6.42 +guichetier guichetier nom m s 0.31 0.47 0.16 0.07 +guichetiers guichetier nom m p 0.31 0.47 0.01 0.07 +guichetière guichetier nom f s 0.31 0.47 0.14 0.34 +guichets guichet nom m p 3.81 8.45 0.89 2.03 +guida guider ver 24.79 26.22 0.31 2.03 ind:pas:3s; +guidage guidage nom m s 1.19 0.00 1.19 0.00 +guidai guider ver 24.79 26.22 0.00 0.14 ind:pas:1s; +guidaient guider ver 24.79 26.22 0.17 1.08 ind:imp:3p; +guidais guider ver 24.79 26.22 0.00 0.27 ind:imp:1s; +guidait guider ver 24.79 26.22 0.13 2.30 ind:imp:3s; +guidance guidance nom f s 0.01 0.00 0.01 0.00 +guidant guider ver 24.79 26.22 0.20 1.96 par:pre; +guide_interprète guide_interprète nom s 0.00 0.07 0.00 0.07 +guide guide nom s 17.52 22.84 14.69 16.69 +guident guider ver 24.79 26.22 0.39 0.74 ind:pre:3p; +guider guider ver 24.79 26.22 7.29 6.76 inf; +guidera guider ver 24.79 26.22 1.57 0.14 ind:fut:3s; +guiderai guider ver 24.79 26.22 0.80 0.00 ind:fut:1s; +guiderait guider ver 24.79 26.22 0.20 0.14 cnd:pre:3s; +guideras guider ver 24.79 26.22 0.06 0.00 ind:fut:2s; +guiderez guider ver 24.79 26.22 0.09 0.00 ind:fut:2p; +guideront guider ver 24.79 26.22 0.27 0.20 ind:fut:3p; +guides guide nom p 17.52 22.84 2.84 6.15 +guidez guider ver 24.79 26.22 0.85 0.14 imp:pre:2p;ind:pre:2p; +guidiez guider ver 24.79 26.22 0.09 0.00 ind:imp:2p; +guidon guidon nom m s 1.27 7.03 1.26 6.15 +guidons guider ver 24.79 26.22 0.16 0.14 imp:pre:1p;ind:pre:1p; +guidèrent guider ver 24.79 26.22 0.00 0.20 ind:pas:3p; +guidé guider ver m s 24.79 26.22 2.81 3.38 par:pas; +guidée guider ver f s 24.79 26.22 1.55 1.82 par:pas; +guidées guider ver f p 24.79 26.22 0.40 0.27 par:pas; +guidés guider ver m p 24.79 26.22 1.25 1.22 par:pas; +guigna guigner ver 0.04 1.69 0.00 0.14 ind:pas:3s; +guignaient guigner ver 0.04 1.69 0.01 0.00 ind:imp:3p; +guignais guigner ver 0.04 1.69 0.01 0.14 ind:imp:1s; +guignait guigner ver 0.04 1.69 0.01 0.47 ind:imp:3s; +guignant guigner ver 0.04 1.69 0.00 0.20 par:pre; +guigne guigne nom f s 0.93 1.35 0.93 1.28 +guigner guigner ver 0.04 1.69 0.00 0.34 inf; +guignes guigne nom f p 0.93 1.35 0.00 0.07 +guignol guignol nom m s 3.29 6.15 2.14 3.58 +guignolades guignolade nom f p 0.00 0.14 0.00 0.14 +guignolesque guignolesque adj m s 0.00 0.07 0.00 0.07 +guignolet guignolet nom m s 0.00 0.20 0.00 0.20 +guignols guignol nom m p 3.29 6.15 1.16 2.57 +guignon guignon nom m s 0.00 0.20 0.00 0.20 +guilde guilde nom f s 0.57 0.00 0.56 0.00 +guildes guilde nom f p 0.57 0.00 0.01 0.00 +guili_guili guili_guili nom m 0.16 0.14 0.16 0.14 +guillaume guillaume nom m s 0.00 0.20 0.00 0.14 +guillaumes guillaume nom m p 0.00 0.20 0.00 0.07 +guilledou guilledou nom m s 0.02 0.20 0.02 0.20 +guillemet guillemet nom m s 0.52 1.55 0.01 0.00 +guillemets guillemet nom m p 0.52 1.55 0.50 1.55 +guillemot guillemot nom m s 0.11 0.00 0.11 0.00 +guilleret guilleret adj m s 0.22 3.24 0.14 2.09 +guillerets guilleret adj m p 0.22 3.24 0.01 0.34 +guillerette guilleret adj f s 0.22 3.24 0.07 0.74 +guillerettes guilleret adj f p 0.22 3.24 0.00 0.07 +guilloche guillocher ver 0.02 0.47 0.01 0.00 ind:pre:3s; +guilloché guillocher ver m s 0.02 0.47 0.00 0.27 par:pas; +guillochée guillocher ver f s 0.02 0.47 0.01 0.07 par:pas; +guillochées guillocher ver f p 0.02 0.47 0.00 0.07 par:pas; +guillochures guillochure nom f p 0.00 0.07 0.00 0.07 +guillochés guillocher ver m p 0.02 0.47 0.00 0.07 par:pas; +guillotina guillotiner ver 0.80 1.89 0.00 0.07 ind:pas:3s; +guillotinaient guillotiner ver 0.80 1.89 0.00 0.07 ind:imp:3p; +guillotinait guillotiner ver 0.80 1.89 0.00 0.14 ind:imp:3s; +guillotine guillotine nom f s 1.07 5.61 1.07 5.54 +guillotinent guillotiner ver 0.80 1.89 0.01 0.07 ind:pre:3p; +guillotiner guillotiner ver 0.80 1.89 0.45 0.47 inf; +guillotines guillotin nom f p 0.01 0.00 0.01 0.00 +guillotineur guillotineur nom m s 0.00 0.14 0.00 0.07 +guillotineurs guillotineur nom m p 0.00 0.14 0.00 0.07 +guillotiné guillotiner ver m s 0.80 1.89 0.20 0.68 par:pas; +guillotinée guillotiner ver f s 0.80 1.89 0.00 0.20 par:pas; +guillotinées guillotiné adj f p 0.01 0.47 0.00 0.07 +guillotinés guillotiner ver m p 0.80 1.89 0.01 0.14 par:pas; +guimauve guimauve nom f s 1.49 2.43 1.25 2.23 +guimauves guimauve nom f p 1.49 2.43 0.24 0.20 +guimbarde guimbarde nom f s 0.61 1.69 0.57 1.01 +guimbardes guimbarde nom f p 0.61 1.69 0.03 0.68 +guimpe guimpe nom f s 0.19 1.15 0.19 0.54 +guimpes guimpe nom f p 0.19 1.15 0.00 0.61 +guinchait guincher ver 0.11 0.20 0.00 0.07 ind:imp:3s; +guinche guinche nom m s 0.00 0.47 0.00 0.27 +guincher guincher ver 0.11 0.20 0.10 0.14 inf; +guinches guincher ver 0.11 0.20 0.01 0.00 ind:pre:2s; +guindaient guinder ver 0.16 1.55 0.00 0.14 ind:imp:3p; +guindait guinder ver 0.16 1.55 0.00 0.07 ind:imp:3s; +guindal guindal nom m s 0.00 0.61 0.00 0.41 +guindals guindal nom m p 0.00 0.61 0.00 0.20 +guindant guindant nom m s 0.10 0.00 0.10 0.00 +guinde guinder ver 0.16 1.55 0.01 0.54 imp:pre:2s;ind:pre:3s; +guindeau guindeau nom m s 0.02 0.07 0.02 0.07 +guinder guinder ver 0.16 1.55 0.00 0.20 inf; +guindé guindé adj m s 0.67 2.43 0.55 0.88 +guindée guindé adj f s 0.67 2.43 0.06 0.81 +guindées guindé adj f p 0.67 2.43 0.03 0.34 +guindés guindé adj m p 0.67 2.43 0.04 0.41 +guinguette guinguette nom f s 0.14 3.04 0.14 2.36 +guinguettes guinguette nom f p 0.14 3.04 0.00 0.68 +guinée guinée nom f s 1.40 0.07 0.10 0.07 +guinéen guinéen adj m s 0.00 0.41 0.00 0.14 +guinéenne guinéen adj f s 0.00 0.41 0.00 0.14 +guinéennes guinéen adj f p 0.00 0.41 0.00 0.07 +guinéens guinéen adj m p 0.00 0.41 0.00 0.07 +guinées guinée nom f p 1.40 0.07 1.30 0.00 +guipure guipure nom f s 0.27 1.15 0.14 0.61 +guipures guipure nom f p 0.27 1.15 0.14 0.54 +guirlande guirlande nom f s 1.65 9.05 0.62 2.30 +guirlandes guirlande nom f p 1.65 9.05 1.03 6.76 +guise guise nom f s 6.26 20.61 6.26 20.61 +guises guis nom f p 0.00 0.07 0.00 0.07 +guitare guitare nom f s 13.86 14.80 12.78 11.55 +guitares guitare nom f p 13.86 14.80 1.08 3.24 +guitariste guitariste nom s 2.29 4.39 1.76 3.38 +guitaristes guitariste nom p 2.29 4.39 0.53 1.01 +guitoune guitoune nom f s 0.00 5.68 0.00 3.51 +guitounes guitoune nom f p 0.00 5.68 0.00 2.16 +gélatine gélatine nom f s 0.87 1.35 0.87 1.22 +gélatines gélatine nom f p 0.87 1.35 0.00 0.14 +gélatineuse gélatineux adj f s 0.16 1.62 0.01 0.54 +gélatineuses gélatineux adj f p 0.16 1.62 0.01 0.20 +gélatineux gélatineux adj m 0.16 1.62 0.13 0.88 +gélatino_bromure gélatino_bromure nom m s 0.00 0.07 0.00 0.07 +gulden gulden nom m s 0.10 0.00 0.10 0.00 +gélifiant gélifiant nom m s 0.01 0.00 0.01 0.00 +gélification gélification nom f s 0.00 0.07 0.00 0.07 +gélifié gélifier ver m s 0.00 0.07 0.00 0.07 par:pas; +géline géline nom f s 0.01 0.20 0.01 0.00 +gélines géline nom f p 0.01 0.20 0.00 0.20 +gélinotte gélinotte nom f s 0.00 0.07 0.00 0.07 +gélolevure gélolevure nom f s 0.00 0.07 0.00 0.07 +gélose gélose nom f s 0.01 0.07 0.01 0.07 +gélule gélule nom f s 0.38 0.88 0.04 0.14 +gélules gélule nom f p 0.38 0.88 0.33 0.74 +gémeau gémeau nom m s 0.40 0.07 0.12 0.00 +gémeaux gémeau nom m p 0.40 0.07 0.29 0.07 +gémellaire gémellaire adj s 0.01 7.43 0.01 7.09 +gémellaires gémellaire adj p 0.01 7.43 0.00 0.34 +gémellité gémellité nom f s 0.17 3.38 0.17 3.38 +gémi gémir ver m s 9.19 36.89 0.28 1.96 par:pas; +gémie gémir ver f s 9.19 36.89 0.01 0.07 par:pas; +gémir gémir ver 9.19 36.89 2.38 8.18 inf; +gémira gémir ver 9.19 36.89 0.04 0.07 ind:fut:3s; +gémirai gémir ver 9.19 36.89 0.01 0.00 ind:fut:1s; +gémiraient gémir ver 9.19 36.89 0.00 0.07 cnd:pre:3p; +gémirais gémir ver 9.19 36.89 0.10 0.00 cnd:pre:1s; +gémirait gémir ver 9.19 36.89 0.00 0.20 cnd:pre:3s; +gémirent gémir ver 9.19 36.89 0.00 0.20 ind:pas:3p; +gémis gémir ver m p 9.19 36.89 0.93 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +gémissaient gémir ver 9.19 36.89 0.12 1.28 ind:imp:3p; +gémissais gémir ver 9.19 36.89 0.07 0.27 ind:imp:1s;ind:imp:2s; +gémissait gémir ver 9.19 36.89 0.52 6.01 ind:imp:3s; +gémissant gémir ver 9.19 36.89 0.19 4.80 par:pre; +gémissante gémissant adj f s 0.08 2.64 0.00 1.15 +gémissantes gémissant adj f p 0.08 2.64 0.02 0.54 +gémissants gémissant adj m p 0.08 2.64 0.02 0.14 +gémisse gémir ver 9.19 36.89 0.03 0.07 sub:pre:3s; +gémissement gémissement nom m s 5.16 16.76 0.97 9.32 +gémissements gémissement nom m p 5.16 16.76 4.18 7.43 +gémissent gémir ver 9.19 36.89 0.45 0.81 ind:pre:3p; +gémisseur gémisseur adj m s 0.00 0.20 0.00 0.07 +gémisseurs gémisseur adj m p 0.00 0.20 0.00 0.14 +gémissez gémir ver 9.19 36.89 0.17 0.07 imp:pre:2p;ind:pre:2p; +gémissiez gémir ver 9.19 36.89 0.01 0.00 ind:imp:2p; +gémit gémir ver 9.19 36.89 3.88 12.30 ind:pre:3s;ind:pas:3s; +gémonies gémonies nom f p 0.01 0.07 0.01 0.07 +gun gun nom m s 1.51 0.14 1.15 0.07 +guna guna nom m 0.04 0.00 0.04 0.00 +gêna gêner ver 57.76 71.01 0.01 1.22 ind:pas:3s; +gênaient gêner ver 57.76 71.01 0.16 2.84 ind:imp:3p; +gênais gêner ver 57.76 71.01 0.34 0.61 ind:imp:1s;ind:imp:2s; +gênait gêner ver 57.76 71.01 1.64 11.96 ind:imp:3s; +gênant gênant adj m s 10.33 10.27 8.89 6.08 +gênante gênant adj f s 10.33 10.27 0.65 2.43 +gênantes gênant adj f p 10.33 10.27 0.27 0.95 +gênants gênant adj m p 10.33 10.27 0.52 0.81 +gêne gêner ver 57.76 71.01 29.21 13.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gênent gêner ver 57.76 71.01 1.81 2.16 ind:pre:3p; +gêner gêner ver 57.76 71.01 5.48 9.80 inf;; +gênera gêner ver 57.76 71.01 1.36 0.68 ind:fut:3s; +gênerai gêner ver 57.76 71.01 0.47 0.14 ind:fut:1s; +gêneraient gêner ver 57.76 71.01 0.02 0.14 cnd:pre:3p; +gênerais gêner ver 57.76 71.01 0.34 0.68 cnd:pre:1s;cnd:pre:2s; +gênerait gêner ver 57.76 71.01 1.77 1.15 cnd:pre:3s; +gênerons gêner ver 57.76 71.01 0.01 0.07 ind:fut:1p; +gêneront gêner ver 57.76 71.01 0.19 0.07 ind:fut:3p; +gênes gêner ver 57.76 71.01 1.19 0.68 ind:pre:2s;sub:pre:2s; +gêneur gêneur nom m s 0.95 1.01 0.85 0.54 +gêneurs gêneur nom m p 0.95 1.01 0.09 0.34 +gêneuse gêneur nom f s 0.95 1.01 0.01 0.07 +gêneuses gêneur nom f p 0.95 1.01 0.00 0.07 +gênez gêner ver 57.76 71.01 3.52 1.28 imp:pre:2p;ind:pre:2p; +génial génial adj m s 134.47 10.20 115.27 5.95 +géniale génial adj f s 134.47 10.20 15.86 3.31 +génialement génialement adv 0.04 0.20 0.04 0.20 +géniales génial adj f p 134.47 10.20 1.62 0.27 +génialité génialité nom f s 0.00 0.07 0.00 0.07 +géniaux génial adj m p 134.47 10.20 1.72 0.68 +génie génie nom m s 38.01 51.62 34.65 47.43 +génies génie nom m p 38.01 51.62 3.36 4.19 +gêniez gêner ver 57.76 71.01 0.00 0.07 ind:imp:2p; +génique génique adj s 0.40 0.00 0.40 0.00 +génisse génisse nom f s 0.83 1.76 0.69 1.42 +génisses génisse nom f p 0.83 1.76 0.15 0.34 +génital génital adj m s 2.43 1.55 0.16 0.34 +génitale génital adj f s 2.43 1.55 0.08 0.27 +génitales génital adj f p 2.43 1.55 0.81 0.34 +génitalité génitalité nom f s 0.00 0.07 0.00 0.07 +génitaux génital adj m p 2.43 1.55 1.38 0.61 +géniteur géniteur nom m s 0.49 2.50 0.33 1.01 +géniteurs géniteur nom m p 0.49 2.50 0.03 1.08 +génitoires génitoire nom f p 0.00 0.41 0.00 0.41 +génitrice géniteur nom f s 0.49 2.50 0.14 0.27 +génitrices génitrice nom f p 0.02 0.00 0.02 0.00 +génocidaire génocidaire adj s 0.04 0.00 0.04 0.00 +génocide génocide nom m s 1.25 1.15 1.18 0.81 +génocides génocide nom m p 1.25 1.15 0.08 0.34 +génois génois adj m 0.17 0.34 0.17 0.34 +génoise génois nom f s 0.16 1.42 0.12 0.54 +génoises génoise nom f p 0.21 0.00 0.21 0.00 +génome génome nom m s 0.63 0.00 0.63 0.00 +génomique génomique adj s 0.11 0.00 0.09 0.00 +génomiques génomique adj p 0.11 0.00 0.02 0.00 +gênons gêner ver 57.76 71.01 0.17 0.00 imp:pre:1p;ind:pre:1p; +gênât gêner ver 57.76 71.01 0.00 0.20 sub:imp:3s; +génotype génotype nom m s 0.11 0.00 0.08 0.00 +génotypes génotype nom m p 0.11 0.00 0.04 0.00 +génovéfains génovéfain nom m p 0.00 0.07 0.00 0.07 +guns gun nom m p 1.51 0.14 0.36 0.07 +génère générer ver 2.83 0.00 0.93 0.00 imp:pre:2s;ind:pre:3s; +génères générer ver 2.83 0.00 0.03 0.00 ind:pre:2s; +gêné gêner ver m s 57.76 71.01 5.44 14.53 par:pas; +généalogie généalogie nom f s 0.28 1.96 0.28 1.62 +généalogies généalogie nom f p 0.28 1.96 0.00 0.34 +généalogique généalogique adj s 0.76 2.50 0.69 1.89 +généalogiques généalogique adj p 0.76 2.50 0.07 0.61 +généalogiste généalogiste nom s 0.17 0.14 0.04 0.14 +généalogistes généalogiste nom p 0.17 0.14 0.14 0.00 +gênée gêner ver f s 57.76 71.01 3.26 4.12 par:pas; +gênées gêner ver f p 57.76 71.01 0.18 0.34 par:pas; +génuflexion génuflexion nom f s 0.03 1.01 0.03 0.68 +génuflexions génuflexion nom f p 0.03 1.01 0.00 0.34 +génuine génuine adj f s 0.00 0.07 0.00 0.07 +général général nom m s 124.83 236.89 119.61 223.99 +générale général adj f s 41.31 95.41 10.27 34.73 +généralement généralement adv 7.79 16.89 7.79 16.89 +générales général adj f p 41.31 95.41 0.95 3.65 +généralife généralife nom m s 0.00 0.20 0.00 0.20 +généralisable généralisable adj s 0.00 0.07 0.00 0.07 +généralisait généraliser ver 0.66 1.22 0.00 0.14 ind:imp:3s; +généralisant généraliser ver 0.66 1.22 0.00 0.07 par:pre; +généralisation généralisation nom f s 0.07 0.61 0.05 0.20 +généralisations généralisation nom f p 0.07 0.61 0.02 0.41 +généralise généraliser ver 0.66 1.22 0.14 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +généraliser généraliser ver 0.66 1.22 0.44 0.34 inf; +généralisez généraliser ver 0.66 1.22 0.01 0.20 imp:pre:2p;ind:pre:2p; +généralisions généraliser ver 0.66 1.22 0.00 0.07 ind:imp:1p; +généralissime généralissime nom m s 0.12 1.82 0.12 1.82 +généraliste généraliste nom s 0.72 0.54 0.45 0.41 +généralistes généraliste nom p 0.72 0.54 0.27 0.14 +généralisé généralisé adj m s 0.33 2.30 0.25 0.68 +généralisée généralisé adj f s 0.33 2.30 0.08 1.49 +généralisées généralisé adj f p 0.33 2.30 0.00 0.14 +généralité généralité nom f s 0.41 1.96 0.11 0.47 +généralités généralité nom f p 0.41 1.96 0.30 1.49 +générant générer ver 2.83 0.00 0.07 0.00 par:pre; +générateur générateur nom m s 8.93 0.34 6.44 0.14 +générateurs générateur nom m p 8.93 0.34 2.20 0.07 +génératif génératif adj m s 0.02 0.00 0.01 0.00 +génération génération nom f s 20.51 37.77 13.38 21.01 +générationnel générationnel adj m s 0.27 0.00 0.27 0.00 +générations génération nom f p 20.51 37.77 7.13 16.76 +générative génératif adj f s 0.02 0.00 0.01 0.00 +génératrice générateur nom f s 8.93 0.34 0.29 0.14 +génératrices génératrice nom f p 0.02 0.00 0.02 0.00 +généraux général nom m p 124.83 236.89 3.83 11.08 +générer générer ver 2.83 0.00 1.05 0.00 inf; +généreuse généreux adj f s 23.32 23.72 6.00 8.04 +généreusement généreusement adv 1.81 4.53 1.81 4.53 +généreuses généreux adj f p 23.32 23.72 0.74 1.69 +généreux généreux adj m 23.32 23.72 16.57 13.99 +générez générer ver 2.83 0.00 0.05 0.00 ind:pre:2p; +générique générique nom m s 1.71 0.88 1.64 0.54 +génériques générique adj p 0.56 0.41 0.19 0.07 +générosité générosité nom f s 6.15 11.55 6.15 10.95 +générosités générosité nom f p 6.15 11.55 0.00 0.61 +généré générer ver m s 2.83 0.00 0.34 0.00 par:pas; +générée générer ver f s 2.83 0.00 0.14 0.00 par:pas; +générés générer ver m p 2.83 0.00 0.20 0.00 par:pas; +gênés gêner ver m p 57.76 71.01 0.92 2.91 par:pas; +génésique génésique adj s 0.00 0.07 0.00 0.07 +généticien généticien nom m s 0.60 0.07 0.26 0.07 +généticienne généticien nom f s 0.60 0.07 0.01 0.00 +généticiens généticien nom m p 0.60 0.07 0.33 0.00 +génétique génétique adj s 8.06 1.35 6.33 1.01 +génétiquement génétiquement adv 1.90 0.20 1.90 0.20 +génétiques génétique adj p 8.06 1.35 1.73 0.34 +géo géo nom f s 0.30 1.22 0.30 1.22 +géocorises géocorise nom f p 0.00 0.07 0.00 0.07 +géode géode nom f s 0.04 0.00 0.04 0.00 +géodésiens géodésien adj m p 0.00 0.14 0.00 0.14 +géodésigraphe géodésigraphe nom m s 0.00 0.07 0.00 0.07 +géodésique géodésique adj s 0.18 0.27 0.17 0.20 +géodésiques géodésique adj m p 0.18 0.27 0.01 0.07 +géographe géographe nom s 0.10 0.95 0.04 0.54 +géographes géographe nom f p 0.10 0.95 0.06 0.41 +géographie géographie nom f s 2.26 8.51 2.26 8.11 +géographies géographie nom f p 2.26 8.51 0.00 0.41 +géographique géographique adj s 0.97 3.51 0.83 2.36 +géographiquement géographiquement adv 0.10 0.47 0.10 0.47 +géographiques géographique adj p 0.97 3.51 0.14 1.15 +géologie géologie nom f s 0.40 0.61 0.40 0.61 +géologique géologique adj s 0.59 0.81 0.39 0.34 +géologiquement géologiquement adv 0.03 0.00 0.03 0.00 +géologiques géologique adj p 0.59 0.81 0.20 0.47 +géologue géologue nom s 1.11 0.61 0.73 0.27 +géologues géologue nom p 1.11 0.61 0.38 0.34 +géomagnétique géomagnétique adj f s 0.03 0.00 0.02 0.00 +géomagnétiques géomagnétique adj p 0.03 0.00 0.01 0.00 +géomancie géomancie nom f s 0.01 0.07 0.01 0.07 +géomètre géomètre nom s 6.20 0.54 6.02 0.27 +géomètres géomètre nom p 6.20 0.54 0.19 0.27 +géométrie géométrie nom f s 1.06 5.20 1.06 4.80 +géométries géométrie nom f p 1.06 5.20 0.00 0.41 +géométrique géométrique adj s 0.77 4.80 0.58 2.57 +géométriquement géométriquement adv 0.08 0.41 0.08 0.41 +géométriques géométrique adj p 0.77 4.80 0.19 2.23 +géophysiciens géophysicien nom m p 0.01 0.00 0.01 0.00 +géophysique géophysique nom f s 0.17 0.00 0.17 0.00 +géopolitique géopolitique adj s 0.07 0.14 0.07 0.14 +géorgien géorgien adj m s 0.45 0.68 0.44 0.27 +géorgienne géorgien adj f s 0.45 0.68 0.01 0.27 +géorgiennes géorgien adj f p 0.45 0.68 0.00 0.07 +géorgiens géorgien adj m p 0.45 0.68 0.00 0.07 +géosciences géoscience nom f p 0.01 0.00 0.01 0.00 +géostationnaire géostationnaire adj s 0.04 0.00 0.04 0.00 +géostratégie géostratégie nom f s 0.00 0.07 0.00 0.07 +géosynchrone géosynchrone adj f s 0.02 0.00 0.02 0.00 +géothermale géothermal adj f s 0.01 0.00 0.01 0.00 +géothermie géothermie nom f s 0.01 0.00 0.01 0.00 +géothermique géothermique adj s 0.13 0.00 0.13 0.00 +géotropique géotropique adj m s 0.00 0.20 0.00 0.14 +géotropiques géotropique adj m p 0.00 0.20 0.00 0.07 +guppy guppy nom m s 0.55 0.00 0.55 0.00 +géra gérer ver 27.51 3.31 0.00 0.14 ind:pas:3s; +gérable gérable adj s 0.29 0.00 0.25 0.00 +gérables gérable adj p 0.29 0.00 0.04 0.00 +gérais gérer ver 27.51 3.31 0.27 0.07 ind:imp:1s;ind:imp:2s; +gérait gérer ver 27.51 3.31 0.40 0.41 ind:imp:3s; +gérance gérance nom f s 0.29 1.15 0.29 1.15 +géranium géranium nom m s 1.09 4.12 0.77 0.95 +géraniums géranium nom m p 1.09 4.12 0.32 3.18 +gérant gérant nom m s 6.45 8.72 5.54 8.04 +gérante gérant nom f s 6.45 8.72 0.69 0.68 +gérants gérant nom m p 6.45 8.72 0.21 0.00 +gérer gérer ver 27.51 3.31 16.57 1.22 inf; +gérera gérer ver 27.51 3.31 0.21 0.00 ind:fut:3s; +gérerai gérer ver 27.51 3.31 0.15 0.00 ind:fut:1s; +gérerais gérer ver 27.51 3.31 0.02 0.00 cnd:pre:1s; +gérerez gérer ver 27.51 3.31 0.01 0.07 ind:fut:2p; +géreriez gérer ver 27.51 3.31 0.01 0.00 cnd:pre:2p; +gérez gérer ver 27.51 3.31 0.69 0.07 imp:pre:2p;ind:pre:2p; +gériatrie gériatrie nom f s 0.07 0.07 0.07 0.07 +gériatrique gériatrique adj s 0.09 0.00 0.07 0.00 +gériatriques gériatrique adj f p 0.09 0.00 0.01 0.00 +gérons gérer ver 27.51 3.31 0.12 0.00 imp:pre:1p;ind:pre:1p; +géronte géronte nom m s 0.00 0.14 0.00 0.07 +gérontes géronte nom m p 0.00 0.14 0.00 0.07 +gérontisme gérontisme nom m s 0.01 0.00 0.01 0.00 +gérontologie gérontologie nom f s 0.05 0.27 0.05 0.27 +gérontologue gérontologue nom s 0.01 0.07 0.01 0.07 +gérontophiles gérontophile nom p 0.00 0.07 0.00 0.07 +guru guru nom m s 0.08 0.07 0.08 0.07 +géré gérer ver m s 27.51 3.31 1.83 0.41 par:pas; +gérée gérer ver f s 27.51 3.31 0.28 0.34 par:pas; +gérées gérer ver f p 27.51 3.31 0.06 0.00 par:pas; +gérés gérer ver m p 27.51 3.31 0.07 0.00 par:pas; +gus gus nom m 8.50 1.96 8.50 1.96 +gésier gésier nom m s 0.07 0.88 0.05 0.74 +gésiers gésier nom m p 0.07 0.88 0.02 0.14 +gésine gésine nom f s 0.10 0.34 0.10 0.34 +gésir gésir ver 4.77 15.68 0.02 0.07 inf; +gusse gusse nom m s 0.14 0.00 0.14 0.00 +gustatif gustatif adj m s 0.21 0.14 0.05 0.14 +gustation gustation nom f s 0.00 0.14 0.00 0.14 +gustative gustatif adj f s 0.21 0.14 0.02 0.00 +gustatives gustatif adj f p 0.21 0.14 0.14 0.00 +gusto gusto adv 0.88 0.14 0.88 0.14 +gut gut nom m s 0.64 0.20 0.64 0.20 +guède guède nom f s 0.02 0.00 0.02 0.00 +guère guère adv 17.02 110.68 17.02 110.68 +gutta_percha gutta_percha nom f s 0.03 0.00 0.03 0.00 +guttural guttural adj m s 0.07 2.97 0.04 1.08 +gutturale guttural adj f s 0.07 2.97 0.01 0.95 +gutturales guttural adj f p 0.07 2.97 0.00 0.34 +gutturaux guttural adj m p 0.07 2.97 0.01 0.61 +gué gué ono 0.02 0.00 0.02 0.00 +guéable guéable adj f s 0.00 0.07 0.00 0.07 +guéguerre guéguerre nom f s 0.07 0.41 0.04 0.20 +guéguerres guéguerre nom f p 0.07 0.41 0.02 0.20 +guépard guépard nom m s 0.44 0.74 0.27 0.34 +guépards guépard nom m p 0.44 0.74 0.17 0.41 +guêpe guêpe nom f s 3.37 6.42 2.73 2.84 +guêpes guêpe nom f p 3.37 6.42 0.64 3.58 +guêpier guêpier nom m s 0.27 0.68 0.27 0.68 +guêpière guêpière nom f s 0.06 1.22 0.05 0.95 +guêpières guêpière nom f p 0.06 1.22 0.01 0.27 +guérît guérir ver 44.74 30.27 0.00 0.07 sub:imp:3s; +guéret guéret nom m s 0.01 0.27 0.00 0.07 +guérets guéret nom m p 0.01 0.27 0.01 0.20 +guéri guérir ver m s 44.74 30.27 9.04 5.95 par:pas; +guéridon guéridon nom m s 0.70 11.42 0.69 8.31 +guéridons guéridon nom m p 0.70 11.42 0.01 3.11 +guérie guérir ver f s 44.74 30.27 3.84 3.65 par:pas; +guéries guéri adj f p 3.46 4.05 0.16 0.27 +guérilla guérilla nom f s 2.17 1.55 1.89 1.35 +guérillas guérilla nom f p 2.17 1.55 0.28 0.20 +guérillero guérillero nom m s 2.81 0.27 0.67 0.14 +guérilleros guérillero nom m p 2.81 0.27 2.14 0.14 +guérir guérir ver 44.74 30.27 17.70 11.49 inf; +guérira guérir ver 44.74 30.27 2.28 0.81 ind:fut:3s; +guérirai guérir ver 44.74 30.27 0.69 0.34 ind:fut:1s; +guérirais guérir ver 44.74 30.27 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +guérirait guérir ver 44.74 30.27 0.29 0.47 cnd:pre:3s; +guériras guérir ver 44.74 30.27 0.66 0.54 ind:fut:2s; +guérirez guérir ver 44.74 30.27 0.33 0.14 ind:fut:2p; +guérirons guérir ver 44.74 30.27 0.02 0.07 ind:fut:1p; +guériront guérir ver 44.74 30.27 0.28 0.07 ind:fut:3p; +guéris guérir ver m p 44.74 30.27 2.03 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +guérison guérison nom f s 5.84 5.20 5.43 4.93 +guérisons guérison nom f p 5.84 5.20 0.41 0.27 +guérissable guérissable adj m s 0.01 0.20 0.01 0.07 +guérissables guérissable adj f p 0.01 0.20 0.00 0.14 +guérissaient guérir ver 44.74 30.27 0.16 0.34 ind:imp:3p; +guérissais guérir ver 44.74 30.27 0.02 0.07 ind:imp:1s; +guérissait guérir ver 44.74 30.27 0.14 0.74 ind:imp:3s; +guérissant guérir ver 44.74 30.27 0.10 0.07 par:pre; +guérisse guérir ver 44.74 30.27 1.95 0.27 sub:pre:1s;sub:pre:3s; +guérissent guérir ver 44.74 30.27 0.86 0.41 ind:pre:3p; +guérisses guérir ver 44.74 30.27 0.05 0.07 sub:pre:2s; +guérisseur guérisseur nom m s 3.10 2.23 1.95 1.42 +guérisseurs guérisseur nom m p 3.10 2.23 0.24 0.27 +guérisseuse guérisseur nom f s 3.10 2.23 0.92 0.47 +guérisseuses guérisseuse nom f p 0.10 0.00 0.10 0.00 +guérissez guérir ver 44.74 30.27 0.35 0.27 imp:pre:2p;ind:pre:2p; +guérissiez guérir ver 44.74 30.27 0.04 0.07 ind:imp:2p; +guérissons guérir ver 44.74 30.27 0.11 0.00 ind:pre:1p; +guérit guérir ver 44.74 30.27 3.62 3.24 ind:pre:3s;ind:pas:3s; +guérite guérite nom f s 0.06 5.07 0.05 4.12 +guérites guérite nom f p 0.06 5.07 0.01 0.95 +guêtre guêtre nom f s 0.39 4.80 0.03 0.41 +guêtres guêtre nom f p 0.39 4.80 0.36 4.39 +guêtré guêtrer ver m s 0.00 0.14 0.00 0.07 par:pas; +guêtrés guêtrer ver m p 0.00 0.14 0.00 0.07 par:pas; +guévariste guévariste nom s 0.00 0.14 0.00 0.14 +guyanais guyanais adj m p 0.00 0.07 0.00 0.07 +guzla guzla nom f s 0.00 0.07 0.00 0.07 +gy gy ono 0.00 1.15 0.00 1.15 +gym gym nom f s 9.18 2.23 9.18 2.23 +gymkhana gymkhana nom m s 0.05 0.27 0.05 0.27 +gymnase gymnase nom m s 4.28 2.43 4.11 2.09 +gymnases gymnase nom m p 4.28 2.43 0.17 0.34 +gymnasium gymnasium nom m s 0.00 0.14 0.00 0.14 +gymnaste gymnaste nom s 0.35 1.35 0.26 0.61 +gymnastes gymnaste nom p 0.35 1.35 0.10 0.74 +gymnastique gymnastique nom f s 2.85 10.00 2.74 9.39 +gymnastiques gymnastique nom f p 2.85 10.00 0.11 0.61 +gymnique gymnique adj f s 0.00 0.14 0.00 0.07 +gymniques gymnique adj f p 0.00 0.14 0.00 0.07 +gymnopédie gymnopédie nom f s 0.00 0.07 0.00 0.07 +gymnosophiste gymnosophiste nom s 0.00 0.14 0.00 0.07 +gymnosophistes gymnosophiste nom p 0.00 0.14 0.00 0.07 +gynéco gynéco nom s 0.96 0.54 0.96 0.54 +gynécologie gynécologie nom f s 0.28 0.07 0.28 0.07 +gynécologique gynécologique adj s 0.17 0.27 0.15 0.27 +gynécologiques gynécologique adj m p 0.17 0.27 0.02 0.00 +gynécologue gynécologue nom s 1.56 3.85 1.38 3.65 +gynécologues gynécologue nom p 1.56 3.85 0.17 0.20 +gynécomastie gynécomastie nom f s 0.03 0.00 0.03 0.00 +gynécée gynécée nom m s 0.01 0.20 0.01 0.14 +gynécées gynécée nom m p 0.01 0.20 0.00 0.07 +gypaète gypaète nom m s 0.08 0.00 0.08 0.00 +gypse gypse nom m s 0.09 0.34 0.09 0.27 +gypses gypse nom m p 0.09 0.34 0.00 0.07 +gypseuse gypseux adj f s 0.00 0.14 0.00 0.07 +gypseux gypseux adj m s 0.00 0.14 0.00 0.07 +gypsophile gypsophile nom f s 0.08 0.00 0.06 0.00 +gypsophiles gypsophile nom f p 0.08 0.00 0.02 0.00 +gyrins gyrin nom m p 0.00 0.07 0.00 0.07 +gyrocompas gyrocompas nom m 0.14 0.00 0.14 0.00 +gyrophare gyrophare nom m s 0.56 1.42 0.30 0.81 +gyrophares gyrophare nom m p 0.56 1.42 0.26 0.61 +gyroscope gyroscope nom m s 0.50 0.61 0.46 0.47 +gyroscopes gyroscope nom m p 0.50 0.61 0.04 0.14 +gyroscopique gyroscopique adj s 0.02 0.07 0.02 0.07 +gyrus gyrus nom m 0.01 0.07 0.01 0.07 +hôpital hôpital nom m s 133.15 54.93 126.08 50.41 +hôpitaux hôpital nom m p 133.15 54.93 7.07 4.53 +hôte hôte nom m s 19.43 20.20 13.43 10.81 +hôtel_dieu hôtel_dieu nom m s 0.01 0.81 0.01 0.81 +hôtel_restaurant hôtel_restaurant nom m s 0.00 0.14 0.00 0.14 +hôtel hôtel nom m s 114.67 158.92 107.73 143.78 +hôtelier hôtelier nom m s 0.44 1.35 0.43 1.08 +hôteliers hôtelier nom m p 0.44 1.35 0.01 0.20 +hôtelière hôtelière adj f s 0.63 0.34 0.61 0.27 +hôtelières hôtelière adj f p 0.63 0.34 0.01 0.07 +hôtellerie hôtellerie nom f s 0.57 1.82 0.57 1.76 +hôtelleries hôtellerie nom f p 0.57 1.82 0.00 0.07 +hôtels hôtel nom m p 114.67 158.92 6.94 15.14 +hôtes hôte nom m p 19.43 20.20 6.00 9.39 +hôtesse hôtesse nom f s 8.34 8.31 6.79 7.43 +hôtesses hôtesse nom f p 8.34 8.31 1.55 0.88 +ha ha ono 21.54 7.70 21.54 7.70 +haï haïr ver m s 55.42 35.68 0.86 2.03 par:pas; +haïe haïr ver f s 55.42 35.68 0.40 0.54 par:pas; +haïes haïr ver f p 55.42 35.68 0.00 0.20 par:pas; +haïk haïk nom m s 0.00 0.61 0.00 0.41 +haïkaï haïkaï nom m s 0.00 0.07 0.00 0.07 +haïks haïk nom m p 0.00 0.61 0.00 0.20 +haïku haïku nom m s 0.30 0.07 0.29 0.07 +haïkus haïku nom m p 0.30 0.07 0.01 0.00 +haïr haïr ver 55.42 35.68 5.91 7.09 inf; +haïra haïr ver 55.42 35.68 0.52 0.00 ind:fut:3s; +haïrai haïr ver 55.42 35.68 0.39 0.07 ind:fut:1s; +haïraient haïr ver 55.42 35.68 0.04 0.07 cnd:pre:3p; +haïrais haïr ver 55.42 35.68 0.05 0.74 cnd:pre:1s;cnd:pre:2s; +haïrait haïr ver 55.42 35.68 0.10 0.14 cnd:pre:3s; +haïras haïr ver 55.42 35.68 0.32 0.00 ind:fut:2s; +haïrez haïr ver 55.42 35.68 0.03 0.00 ind:fut:2p; +haïriez haïr ver 55.42 35.68 0.01 0.00 cnd:pre:2p; +haïrons haïr ver 55.42 35.68 0.00 0.07 ind:fut:1p; +haïront haïr ver 55.42 35.68 0.39 0.00 ind:fut:3p; +haïs haïr ver m p 55.42 35.68 0.34 1.01 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +haïssable haïssable adj s 0.07 1.62 0.07 1.15 +haïssables haïssable adj p 0.07 1.62 0.01 0.47 +haïssaient haïr ver 55.42 35.68 0.17 0.74 ind:imp:3p; +haïssais haïr ver 55.42 35.68 1.20 2.09 ind:imp:1s;ind:imp:2s; +haïssait haïr ver 55.42 35.68 1.10 6.08 ind:imp:3s; +haïssant haïr ver 55.42 35.68 0.05 0.27 par:pre; +haïsse haïr ver 55.42 35.68 0.25 0.14 sub:pre:1s;sub:pre:3s; +haïssent haïr ver 55.42 35.68 2.44 1.08 ind:pre:3p; +haïsses haïr ver 55.42 35.68 0.21 0.00 sub:pre:2s; +haïssez haïr ver 55.42 35.68 1.19 0.27 imp:pre:2p;ind:pre:2p; +haïssiez haïr ver 55.42 35.68 0.40 0.27 ind:imp:2p; +haïssions haïr ver 55.42 35.68 0.00 0.14 ind:imp:1p; +haïssons haïr ver 55.42 35.68 0.29 0.20 imp:pre:1p;ind:pre:1p; +haït haïr ver 55.42 35.68 0.03 0.00 ind:pas:3s; +haïtien haïtien adj m s 0.70 0.34 0.35 0.07 +haïtienne haïtien adj f s 0.70 0.34 0.32 0.00 +haïtiens haïtien nom m p 0.58 1.01 0.53 0.14 +habanera habanera nom f s 0.01 0.00 0.01 0.00 +habile habile adj s 6.44 17.16 5.60 13.11 +habilement habilement adv 0.58 5.20 0.58 5.20 +habiles habile adj p 6.44 17.16 0.84 4.05 +habileté habileté nom f s 2.05 10.88 2.03 10.54 +habiletés habileté nom f p 2.05 10.88 0.02 0.34 +habilitation habilitation nom f s 0.22 0.07 0.19 0.07 +habilitations habilitation nom f p 0.22 0.07 0.03 0.00 +habilite habiliter ver 0.77 1.01 0.04 0.00 imp:pre:2s;ind:pre:3s; +habilité habilité nom f s 0.58 0.14 0.51 0.14 +habilitée habiliter ver f s 0.77 1.01 0.17 0.14 par:pas; +habilitées habilité adj f p 0.43 0.20 0.15 0.00 +habilités habiliter ver m p 0.77 1.01 0.11 0.20 par:pas; +habilla habiller ver 58.22 67.36 0.13 3.78 ind:pas:3s; +habillage habillage nom m s 0.14 0.14 0.14 0.14 +habillai habiller ver 58.22 67.36 0.00 0.95 ind:pas:1s; +habillaient habiller ver 58.22 67.36 0.14 0.88 ind:imp:3p; +habillais habiller ver 58.22 67.36 0.56 0.68 ind:imp:1s;ind:imp:2s; +habillait habiller ver 58.22 67.36 0.86 6.08 ind:imp:3s; +habillant habiller ver 58.22 67.36 0.10 0.95 par:pre; +habillas habiller ver 58.22 67.36 0.00 0.07 ind:pas:2s; +habille habiller ver 58.22 67.36 16.95 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +habillement habillement nom m s 0.55 2.50 0.55 2.50 +habillent habiller ver 58.22 67.36 0.77 1.35 ind:pre:3p; +habiller habiller ver 58.22 67.36 17.05 15.27 inf;; +habillera habiller ver 58.22 67.36 0.39 0.14 ind:fut:3s; +habillerai habiller ver 58.22 67.36 0.29 0.14 ind:fut:1s; +habilleraient habiller ver 58.22 67.36 0.01 0.07 cnd:pre:3p; +habillerais habiller ver 58.22 67.36 0.06 0.14 cnd:pre:1s; +habillerait habiller ver 58.22 67.36 0.14 0.34 cnd:pre:3s; +habilleras habiller ver 58.22 67.36 0.03 0.20 ind:fut:2s; +habillerez habiller ver 58.22 67.36 0.23 0.00 ind:fut:2p; +habillerons habiller ver 58.22 67.36 0.12 0.07 ind:fut:1p; +habilles habiller ver 58.22 67.36 2.26 0.27 ind:pre:2s; +habilleur habilleur nom m s 0.70 0.34 0.06 0.07 +habilleurs habilleur nom m p 0.70 0.34 0.02 0.00 +habilleuse habilleur nom f s 0.70 0.34 0.62 0.20 +habilleuses habilleuse nom f p 0.02 0.00 0.02 0.00 +habillez habiller ver 58.22 67.36 3.65 0.20 imp:pre:2p;ind:pre:2p; +habilliez habiller ver 58.22 67.36 0.04 0.00 ind:imp:2p; +habillions habiller ver 58.22 67.36 0.01 0.07 ind:imp:1p; +habillâmes habiller ver 58.22 67.36 0.00 0.07 ind:pas:1p; +habillons habiller ver 58.22 67.36 0.34 0.20 imp:pre:1p;ind:pre:1p; +habillât habiller ver 58.22 67.36 0.00 0.14 sub:imp:3s; +habillèrent habiller ver 58.22 67.36 0.00 0.27 ind:pas:3p; +habillé habiller ver m s 58.22 67.36 7.24 12.03 par:pas; +habillée habiller ver f s 58.22 67.36 4.51 8.04 par:pas; +habillées habillé adj f p 10.45 17.23 0.59 1.62 +habillés habiller ver m p 58.22 67.36 2.07 5.20 par:pas; +habit habit nom m s 27.64 27.50 8.34 11.08 +habita habiter ver 128.30 112.50 0.02 1.08 ind:pas:3s; +habitabilité habitabilité nom f s 0.00 0.07 0.00 0.07 +habitable habitable adj s 0.57 2.09 0.34 1.69 +habitables habitable adj p 0.57 2.09 0.23 0.41 +habitacle habitacle nom m s 0.27 1.69 0.26 1.62 +habitacles habitacle nom m p 0.27 1.69 0.01 0.07 +habitai habiter ver 128.30 112.50 0.00 0.07 ind:pas:1s; +habitaient habiter ver 128.30 112.50 2.04 8.24 ind:imp:3p; +habitais habiter ver 128.30 112.50 3.27 4.39 ind:imp:1s;ind:imp:2s; +habitait habiter ver 128.30 112.50 8.94 31.01 ind:imp:3s; +habitant habitant nom m s 16.68 29.46 1.38 4.32 +habitante habitant nom f s 16.68 29.46 0.09 0.14 +habitants habitant nom m p 16.68 29.46 15.21 25.00 +habitassent habiter ver 128.30 112.50 0.00 0.07 sub:imp:3p; +habitat habitat nom m s 1.38 0.95 1.31 0.88 +habitation habitation nom f s 1.77 5.61 0.82 3.58 +habitations habitation nom f p 1.77 5.61 0.95 2.03 +habitats habitat nom m p 1.38 0.95 0.06 0.07 +habite habiter ver 128.30 112.50 59.55 22.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +habitent habiter ver 128.30 112.50 6.92 4.80 ind:pre:3p; +habiter habiter ver 128.30 112.50 12.73 13.51 inf; +habitera habiter ver 128.30 112.50 0.98 0.34 ind:fut:3s; +habiterai habiter ver 128.30 112.50 0.80 0.14 ind:fut:1s; +habiteraient habiter ver 128.30 112.50 0.01 0.14 cnd:pre:3p; +habiterais habiter ver 128.30 112.50 0.42 0.14 cnd:pre:1s;cnd:pre:2s; +habiterait habiter ver 128.30 112.50 0.64 0.34 cnd:pre:3s; +habiteras habiter ver 128.30 112.50 0.43 0.41 ind:fut:2s; +habiterez habiter ver 128.30 112.50 0.41 0.07 ind:fut:2p; +habiterions habiter ver 128.30 112.50 0.01 0.27 cnd:pre:1p; +habiterons habiter ver 128.30 112.50 0.24 0.14 ind:fut:1p; +habiteront habiter ver 128.30 112.50 0.01 0.14 ind:fut:3p; +habites habiter ver 128.30 112.50 11.71 1.96 ind:pre:2s; +habitez habiter ver 128.30 112.50 8.83 1.82 imp:pre:2p;ind:pre:2p; +habitiez habiter ver 128.30 112.50 1.50 0.14 ind:imp:2p; +habitions habiter ver 128.30 112.50 0.39 2.16 ind:imp:1p; +habitons habiter ver 128.30 112.50 1.72 1.55 imp:pre:1p;ind:pre:1p; +habitât habiter ver 128.30 112.50 0.00 0.34 sub:imp:3s; +habits habit nom m p 27.64 27.50 19.29 16.42 +habitèrent habiter ver 128.30 112.50 0.00 0.47 ind:pas:3p; +habité habiter ver m s 128.30 112.50 4.83 8.51 par:pas; +habitua habituer ver 31.89 46.42 0.02 0.74 ind:pas:3s; +habituai habituer ver 31.89 46.42 0.10 0.07 ind:pas:1s; +habituaient habituer ver 31.89 46.42 0.00 0.88 ind:imp:3p; +habituais habituer ver 31.89 46.42 0.03 0.74 ind:imp:1s; +habituait habituer ver 31.89 46.42 0.17 1.76 ind:imp:3s; +habituant habituer ver 31.89 46.42 0.01 0.74 par:pre; +habitude habitude nom f s 98.22 154.46 89.71 128.51 +habitudes habitude nom f p 98.22 154.46 8.52 25.95 +habitée habiter ver f s 128.30 112.50 1.19 3.58 par:pas; +habitue habituer ver 31.89 46.42 5.36 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +habituel habituel adj m s 15.66 39.93 5.35 14.86 +habituelle habituel adj f s 15.66 39.93 4.95 13.65 +habituellement habituellement adv 4.02 7.70 4.02 7.70 +habituelles habituel adj f p 15.66 39.93 2.00 5.41 +habituels habituel adj m p 15.66 39.93 3.36 6.01 +habituent habituer ver 31.89 46.42 0.47 0.61 ind:pre:3p; +habituer habituer ver 31.89 46.42 8.95 9.26 inf;;inf;;inf;; +habituera habituer ver 31.89 46.42 0.21 0.20 ind:fut:3s; +habituerai habituer ver 31.89 46.42 0.46 0.27 ind:fut:1s; +habitueraient habituer ver 31.89 46.42 0.00 0.14 cnd:pre:3p; +habituerais habituer ver 31.89 46.42 0.08 0.14 cnd:pre:1s; +habituerait habituer ver 31.89 46.42 0.04 0.47 cnd:pre:3s; +habitueras habituer ver 31.89 46.42 1.45 0.14 ind:fut:2s; +habituerez habituer ver 31.89 46.42 0.33 0.14 ind:fut:2p; +habituerons habituer ver 31.89 46.42 0.00 0.07 ind:fut:1p; +habitueront habituer ver 31.89 46.42 0.07 0.07 ind:fut:3p; +habitées habité adj f p 1.40 3.85 0.08 0.27 +habitues habituer ver 31.89 46.42 0.71 0.34 ind:pre:2s;sub:pre:2s; +habituez habituer ver 31.89 46.42 0.37 0.27 imp:pre:2p;ind:pre:2p; +habituons habituer ver 31.89 46.42 0.02 0.00 imp:pre:1p; +habituât habituer ver 31.89 46.42 0.00 0.14 sub:imp:3s; +habités habité adj m p 1.40 3.85 0.38 0.61 +habitus habitus nom m 0.00 0.14 0.00 0.14 +habituèrent habituer ver 31.89 46.42 0.11 0.34 ind:pas:3p; +habitué habituer ver m s 31.89 46.42 6.32 10.47 par:pas; +habituée habituer ver f s 31.89 46.42 3.75 7.70 par:pas; +habituées habituer ver f p 31.89 46.42 0.63 0.47 par:pas; +habitués habituer ver m p 31.89 46.42 2.24 5.74 par:pas; +hacha hacher ver 2.18 6.01 0.10 0.07 ind:pas:3s; +hachage hachage nom m s 0.01 0.00 0.01 0.00 +hachaient hacher ver 2.18 6.01 0.00 0.14 ind:imp:3p; +hachait hacher ver 2.18 6.01 0.02 0.74 ind:imp:3s; +hachant hacher ver 2.18 6.01 0.02 0.47 par:pre; +hachard hachard nom m s 0.00 0.07 0.00 0.07 +hache_paille hache_paille nom m p 0.00 0.14 0.00 0.14 +hache hache nom f s 10.23 13.65 8.73 11.76 +hachent hacher ver 2.18 6.01 0.03 0.34 ind:pre:3p; +hacher hacher ver 2.18 6.01 0.35 0.74 inf; +hacherai hacher ver 2.18 6.01 0.03 0.00 ind:fut:1s; +hacherait hacher ver 2.18 6.01 0.02 0.00 cnd:pre:3s; +haches hache nom f p 10.23 13.65 1.50 1.89 +hachette hachette nom f s 0.22 0.74 0.20 0.74 +hachettes hachette nom f p 0.22 0.74 0.02 0.00 +hacheur hacheur nom m s 0.11 0.27 0.01 0.14 +hacheurs hacheur nom m p 0.11 0.27 0.10 0.14 +hachez hacher ver 2.18 6.01 0.67 0.14 imp:pre:2p;ind:pre:2p; +hachis hachis nom m p 1.07 1.22 1.07 1.22 +hachisch hachisch nom m s 0.01 0.07 0.01 0.07 +hachoir hachoir nom m s 0.70 0.81 0.68 0.61 +hachoirs hachoir nom m p 0.70 0.81 0.02 0.20 +hachèrent hacher ver 2.18 6.01 0.00 0.07 ind:pas:3p; +haché haché adj m s 1.50 5.07 0.73 1.01 +hachée haché adj f s 1.50 5.07 0.66 2.70 +hachées hacher ver f p 2.18 6.01 0.01 0.41 par:pas; +hachuraient hachurer ver 0.03 1.08 0.00 0.14 ind:imp:3p; +hachurait hachurer ver 0.03 1.08 0.00 0.07 ind:imp:3s; +hachurant hachurer ver 0.03 1.08 0.00 0.07 par:pre; +hachure hachure nom f s 0.00 1.55 0.00 0.20 +hachures hachure nom f p 0.00 1.55 0.00 1.35 +hachuré hachurer ver m s 0.03 1.08 0.03 0.34 par:pas; +hachurée hachurer ver f s 0.03 1.08 0.00 0.14 par:pas; +hachurées hachurer ver f p 0.03 1.08 0.00 0.14 par:pas; +hachurés hachurer ver m p 0.03 1.08 0.00 0.14 par:pas; +hachés haché adj m p 1.50 5.07 0.11 0.81 +hacienda hacienda nom f s 0.93 0.20 0.90 0.20 +haciendas hacienda nom f p 0.93 0.20 0.03 0.00 +hack hack nom m s 0.23 0.00 0.23 0.00 +hacker hacker nom m s 0.99 0.00 0.66 0.00 +hackers hacker nom m p 0.99 0.00 0.33 0.00 +haddock haddock nom m s 0.23 0.54 0.23 0.54 +hadith hadith nom m s 0.01 0.00 0.01 0.00 +hadj hadj nom m s 1.88 0.00 1.88 0.00 +hadji hadji nom m p 0.47 0.27 0.47 0.27 +hagard hagard adj m s 0.46 13.18 0.24 6.96 +hagarde hagard adj f s 0.46 13.18 0.03 3.51 +hagardes hagard adj f p 0.46 13.18 0.00 0.41 +hagards hagard adj m p 0.46 13.18 0.19 2.30 +haggadah haggadah nom f s 0.02 0.00 0.02 0.00 +haggis haggis nom m p 0.27 0.00 0.27 0.00 +hagiographe hagiographe nom m s 0.00 0.47 0.00 0.47 +hagiographie hagiographie nom f s 0.01 0.20 0.01 0.20 +haha haha ono 0.59 1.22 0.59 1.22 +hai hai ono 1.28 0.07 1.28 0.07 +haie haie nom f s 3.36 26.08 2.60 14.80 +haies haie nom f p 3.36 26.08 0.76 11.28 +haillon haillon nom m s 1.78 3.78 0.01 0.47 +haillonneuse haillonneux adj f s 0.00 0.20 0.00 0.14 +haillonneux haillonneux adj m p 0.00 0.20 0.00 0.07 +haillons haillon nom m p 1.78 3.78 1.77 3.31 +haine haine nom f s 33.10 52.50 31.49 49.39 +haines haine nom f p 33.10 52.50 1.62 3.11 +haineuse haineux adj f s 0.96 6.42 0.07 1.76 +haineusement haineusement adv 0.01 0.68 0.01 0.68 +haineuses haineux adj f p 0.96 6.42 0.07 0.34 +haineux haineux adj m 0.96 6.42 0.82 4.32 +haire haire nom f s 0.00 0.20 0.00 0.14 +haires haire nom f p 0.00 0.20 0.00 0.07 +hais haïr ver 55.42 35.68 31.21 8.85 imp:pre:2s;ind:pre:1s;ind:pre:2s; +hait haïr ver 55.42 35.68 7.53 3.58 ind:pre:3s; +haka haka nom m s 0.01 0.00 0.01 0.00 +hakka hakka nom m s 0.01 0.00 0.01 0.00 +hala haler ver 0.16 2.30 0.00 0.07 ind:pas:3s; +halage halage nom m s 0.16 1.55 0.16 1.49 +halages halage nom m p 0.16 1.55 0.00 0.07 +halaient haler ver 0.16 2.30 0.00 0.34 ind:imp:3p; +halait haler ver 0.16 2.30 0.00 0.20 ind:imp:3s; +halal halal adj f s 0.24 0.00 0.24 0.00 +halant haler ver 0.16 2.30 0.00 0.34 par:pre; +halcyon halcyon nom m s 0.02 0.00 0.02 0.00 +hale hale nom m s 0.00 0.07 0.00 0.07 +haleine haleine nom f s 8.00 23.04 7.55 21.82 +haleines haleine nom f p 8.00 23.04 0.45 1.22 +halent haler ver 0.16 2.30 0.10 0.20 ind:pre:3p; +haler haler ver 0.16 2.30 0.02 0.54 inf; +haleta haleter ver 0.79 11.76 0.02 0.95 ind:pas:3s; +haletaient haleter ver 0.79 11.76 0.00 0.27 ind:imp:3p; +haletais haleter ver 0.79 11.76 0.03 0.14 ind:imp:1s;ind:imp:2s; +haletait haleter ver 0.79 11.76 0.00 3.58 ind:imp:3s; +haletant haleter ver 0.79 11.76 0.06 4.26 par:pre; +haletante haletant adj f s 0.47 9.80 0.40 4.66 +haletantes haletant adj f p 0.47 9.80 0.00 0.41 +haletants haletant adj m p 0.47 9.80 0.01 1.76 +haleter haleter ver 0.79 11.76 0.20 1.28 inf; +haleté haleter ver m s 0.79 11.76 0.02 0.20 par:pas; +haleur haleur nom m s 0.11 0.34 0.01 0.07 +haleurs haleur nom m p 0.11 0.34 0.10 0.27 +halez haler ver 0.16 2.30 0.02 0.07 imp:pre:2p; +half_track half_track nom m s 0.05 0.14 0.04 0.14 +half_track half_track nom m p 0.05 0.14 0.01 0.00 +halieutiques halieutique adj f p 0.00 0.07 0.00 0.07 +hall hall nom m s 9.90 26.76 9.73 25.81 +hallali hallali nom m s 0.14 1.35 0.14 1.35 +halle halle nom f s 0.83 9.32 0.26 1.01 +hallebarde hallebarde nom f s 0.06 1.28 0.05 0.27 +hallebardes hallebarde nom f p 0.06 1.28 0.01 1.01 +hallebardier hallebardier nom m s 0.03 0.68 0.02 0.20 +hallebardiers hallebardier nom m p 0.03 0.68 0.01 0.47 +halles halle nom f p 0.83 9.32 0.57 8.31 +hallier hallier nom m s 0.02 1.76 0.01 0.81 +halliers hallier nom m p 0.02 1.76 0.01 0.95 +halloween halloween nom f s 0.04 0.00 0.04 0.00 +halls hall nom m p 9.90 26.76 0.17 0.95 +hallucinais halluciner ver 3.44 0.95 0.08 0.07 ind:imp:1s;ind:imp:2s; +hallucinant hallucinant adj m s 1.56 2.91 1.40 0.81 +hallucinante hallucinant adj f s 1.56 2.91 0.10 1.62 +hallucinantes hallucinant adj f p 1.56 2.91 0.02 0.14 +hallucinants hallucinant adj m p 1.56 2.91 0.04 0.34 +hallucination hallucination nom f s 7.88 5.61 3.46 3.51 +hallucinations hallucination nom f p 7.88 5.61 4.43 2.09 +hallucinatoire hallucinatoire adj s 0.39 0.20 0.23 0.14 +hallucinatoires hallucinatoire adj p 0.39 0.20 0.16 0.07 +hallucine halluciner ver 3.44 0.95 1.87 0.20 ind:pre:1s;ind:pre:3s; +halluciner halluciner ver 3.44 0.95 0.95 0.14 inf; +hallucinez halluciner ver 3.44 0.95 0.05 0.00 imp:pre:2p;ind:pre:2p; +hallucinogène hallucinogène adj s 0.61 0.14 0.18 0.00 +hallucinogènes hallucinogène adj p 0.61 0.14 0.44 0.14 +hallucinons halluciner ver 3.44 0.95 0.01 0.00 ind:pre:1p; +halluciné halluciner ver m s 3.44 0.95 0.41 0.34 par:pas; +hallucinée halluciné adj f s 0.25 1.35 0.11 0.47 +hallucinées halluciné adj f p 0.25 1.35 0.01 0.07 +hallucinés halluciné nom m p 0.03 0.95 0.01 0.27 +halo halo nom m s 1.36 8.38 1.30 7.50 +halogène halogène nom m s 0.12 0.00 0.04 0.00 +halogènes halogène nom m p 0.12 0.00 0.08 0.00 +halogénure halogénure nom m s 0.01 0.00 0.01 0.00 +halon halon nom m s 0.08 0.07 0.08 0.00 +halons halon nom m p 0.08 0.07 0.00 0.07 +halopéridol halopéridol nom m s 0.12 0.00 0.12 0.00 +halos halo nom m p 1.36 8.38 0.05 0.88 +halothane halothane nom m s 0.50 0.00 0.50 0.00 +halte_garderie halte_garderie nom f s 0.02 0.00 0.02 0.00 +halte halte ono 14.27 3.85 14.27 3.85 +halter halter ver 0.07 0.20 0.03 0.00 inf; +haltes halte nom f p 3.77 12.77 0.03 1.89 +halèrent haler ver 0.16 2.30 0.02 0.07 ind:pas:3p; +halète haleter ver 0.79 11.76 0.34 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +halètement halètement nom m s 0.45 3.72 0.00 2.57 +halètements halètement nom m p 0.45 3.72 0.45 1.15 +halètent haleter ver 0.79 11.76 0.10 0.20 ind:pre:3p; +halètes haleter ver 0.79 11.76 0.01 0.00 ind:pre:2s; +haltère haltère nom m s 0.95 1.35 0.06 0.07 +haltères haltère nom m p 0.95 1.35 0.89 1.28 +haltérophile haltérophile nom s 0.11 0.27 0.06 0.20 +haltérophiles haltérophile nom p 0.11 0.27 0.04 0.07 +haltérophilie haltérophilie nom f s 0.18 0.14 0.18 0.14 +halé haler ver m s 0.16 2.30 0.00 0.20 par:pas; +halée haler ver f s 0.16 2.30 0.00 0.14 par:pas; +halés haler ver m p 0.16 2.30 0.00 0.14 par:pas; +halva halva nom m s 0.01 0.07 0.01 0.07 +hamac hamac nom m s 1.84 3.78 1.63 3.11 +hamacs hamac nom m p 1.84 3.78 0.22 0.68 +hamada hamada nom f s 0.17 0.07 0.17 0.07 +hamadryade hamadryade nom f s 0.01 0.00 0.01 0.00 +hamadryas hamadryas nom m 0.01 0.00 0.01 0.00 +hamamélis hamamélis nom m 0.01 0.00 0.01 0.00 +hambourgeois hambourgeois adj m s 0.02 0.20 0.02 0.20 +hambourgeoises hambourgeois nom f p 0.00 0.20 0.00 0.07 +hamburger hamburger nom m s 7.47 0.68 4.10 0.41 +hamburgers hamburger nom m p 7.47 0.68 3.38 0.27 +hameau hameau nom m s 0.81 10.61 0.79 7.91 +hameaux hameau nom m p 0.81 10.61 0.03 2.70 +hameçon hameçon nom m s 3.08 3.24 2.61 2.50 +hameçonne hameçonner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +hameçons hameçon nom m p 3.08 3.24 0.47 0.74 +hammam hammam nom m s 0.73 1.55 0.58 1.49 +hammams hammam nom m p 0.73 1.55 0.14 0.07 +hammerless hammerless nom m p 0.27 0.07 0.27 0.07 +hampe hampe nom f s 0.52 3.11 0.52 1.82 +hampes hampe nom f p 0.52 3.11 0.00 1.28 +hamster hamster nom m s 2.51 1.22 2.18 0.68 +hamsters hamster nom m p 2.51 1.22 0.33 0.54 +han han adj m s 1.96 1.49 1.96 1.49 +hanap hanap nom m s 0.01 0.34 0.01 0.20 +hanaps hanap nom m p 0.01 0.34 0.00 0.14 +hanche hanche nom f s 8.90 32.36 3.42 9.59 +hanches hanche nom f p 8.90 32.36 5.48 22.77 +hanchée hancher ver f s 0.00 0.07 0.00 0.07 par:pas; +hand_ball hand_ball nom m s 0.08 0.00 0.08 0.00 +handball handball nom m s 0.52 0.00 0.52 0.00 +handicap handicap nom m s 3.70 2.70 3.40 2.30 +handicapait handicaper ver 2.32 0.74 0.02 0.00 ind:imp:3s; +handicapant handicapant adj m s 0.15 0.00 0.15 0.00 +handicape handicaper ver 2.32 0.74 0.20 0.07 imp:pre:2s;ind:pre:3s; +handicaper handicaper ver 2.32 0.74 0.05 0.07 inf;; +handicapera handicaper ver 2.32 0.74 0.02 0.00 ind:fut:3s; +handicapeur handicapeur nom m s 0.06 0.00 0.06 0.00 +handicaps handicap nom m p 3.70 2.70 0.30 0.41 +handicapé handicaper ver m s 2.32 0.74 1.12 0.41 par:pas; +handicapée handicaper ver f s 2.32 0.74 0.66 0.14 par:pas; +handicapées handicaper ver f p 2.32 0.74 0.03 0.00 par:pas; +handicapés handicapé nom m p 4.83 1.15 3.46 0.41 +hangar hangar nom m s 5.65 18.85 5.44 12.97 +hangars hangar nom m p 5.65 18.85 0.20 5.88 +hanneton hanneton nom m s 0.50 5.34 0.05 2.70 +hannetons hanneton nom m p 0.50 5.34 0.45 2.64 +hanoukka hanoukka nom f s 0.31 0.00 0.31 0.00 +hanovrien hanovrien adj m s 0.00 0.07 0.00 0.07 +hanovriens hanovrien nom m p 0.14 0.00 0.14 0.00 +hanséatique hanséatique adj f s 0.10 0.00 0.10 0.00 +hanta hanter ver 11.37 15.20 0.06 0.27 ind:pas:3s; +hantaient hanter ver 11.37 15.20 0.02 0.74 ind:imp:3p; +hantais hanter ver 11.37 15.20 0.18 0.00 ind:imp:1s;ind:imp:2s; +hantait hanter ver 11.37 15.20 0.42 2.36 ind:imp:3s; +hantant hanter ver 11.37 15.20 0.01 0.14 par:pre; +hantavirus hantavirus nom m 0.03 0.00 0.03 0.00 +hante hanter ver 11.37 15.20 2.70 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hantent hanter ver 11.37 15.20 1.28 0.95 ind:pre:3p; +hanter hanter ver 11.37 15.20 1.92 2.23 inf; +hantera hanter ver 11.37 15.20 0.19 0.07 ind:fut:3s; +hanterai hanter ver 11.37 15.20 0.04 0.00 ind:fut:1s; +hanterait hanter ver 11.37 15.20 0.08 0.07 cnd:pre:3s; +hanteront hanter ver 11.37 15.20 0.15 0.00 ind:fut:3p; +hantes hanter ver 11.37 15.20 0.39 0.00 ind:pre:2s; +hanteur hanteur adj m s 0.00 0.07 0.00 0.07 +hantez hanter ver 11.37 15.20 0.33 0.07 imp:pre:2p;ind:pre:2p; +hantise hantise nom f s 0.19 5.07 0.07 4.46 +hantises hantise nom f p 0.19 5.07 0.12 0.61 +hanté hanter ver m s 11.37 15.20 1.91 3.04 par:pas; +hantée hanter ver f s 11.37 15.20 1.15 0.81 par:pas; +hantées hanté adj f p 1.99 1.55 0.17 0.27 +hantés hanter ver m p 11.37 15.20 0.47 1.08 par:pas; +happa happer ver 0.99 8.24 0.00 0.34 ind:pas:3s; +happai happer ver 0.99 8.24 0.00 0.07 ind:pas:1s; +happaient happer ver 0.99 8.24 0.00 0.27 ind:imp:3p; +happait happer ver 0.99 8.24 0.00 0.54 ind:imp:3s; +happant happer ver 0.99 8.24 0.00 0.34 par:pre; +happe happer ver 0.99 8.24 0.16 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +happement happement nom m s 0.00 0.20 0.00 0.20 +happening happening nom m s 0.41 0.54 0.39 0.41 +happenings happening nom m p 0.41 0.54 0.02 0.14 +happent happer ver 0.99 8.24 0.11 0.34 ind:pre:3p; +happer happer ver 0.99 8.24 0.24 0.88 inf; +happerait happer ver 0.99 8.24 0.00 0.07 cnd:pre:3s; +happeurs happeur nom m p 0.00 0.07 0.00 0.07 +happé happer ver m s 0.99 8.24 0.11 2.23 par:pas; +happée happer ver f s 0.99 8.24 0.32 1.15 par:pas; +happées happer ver f p 0.99 8.24 0.01 0.41 par:pas; +happés happer ver m p 0.99 8.24 0.04 0.61 par:pas; +happy_end happy_end nom m s 0.51 0.27 0.45 0.27 +happy_end happy_end nom m p 0.51 0.27 0.05 0.00 +happy_few happy_few nom m p 0.00 0.14 0.00 0.14 +haptoglobine haptoglobine nom f s 0.01 0.00 0.01 0.00 +haque haque nom f s 0.41 1.62 0.41 1.62 +haquenée haquenée nom f s 0.00 0.07 0.00 0.07 +haquet haquet nom m s 0.00 0.20 0.00 0.14 +haquets haquet nom m p 0.00 0.20 0.00 0.07 +hara_kiri hara_kiri nom m s 0.29 0.41 0.29 0.41 +harangua haranguer ver 0.09 1.89 0.00 0.27 ind:pas:3s; +haranguaient haranguer ver 0.09 1.89 0.00 0.14 ind:imp:3p; +haranguait haranguer ver 0.09 1.89 0.00 0.34 ind:imp:3s; +haranguant haranguer ver 0.09 1.89 0.00 0.41 par:pre; +harangue harangue nom f s 0.01 1.22 0.01 0.81 +haranguer haranguer ver 0.09 1.89 0.06 0.20 inf; +haranguerais haranguer ver 0.09 1.89 0.00 0.07 cnd:pre:1s; +harangues harangue nom f p 0.01 1.22 0.00 0.41 +haranguez haranguer ver 0.09 1.89 0.01 0.00 ind:pre:2p; +harangué haranguer ver m s 0.09 1.89 0.00 0.20 par:pas; +haranguée haranguer ver f s 0.09 1.89 0.01 0.07 par:pas; +harangués haranguer ver m p 0.09 1.89 0.00 0.14 par:pas; +harari harari nom m p 0.02 0.00 0.02 0.00 +haras haras nom m p 0.19 1.01 0.19 1.01 +harassaient harasser ver 0.17 1.28 0.01 0.14 ind:imp:3p; +harassant harassant adj m s 0.19 1.42 0.03 0.20 +harassante harassant adj f s 0.19 1.42 0.15 0.47 +harassantes harassant adj f p 0.19 1.42 0.00 0.47 +harassants harassant adj m p 0.19 1.42 0.00 0.27 +harasse harasser ver 0.17 1.28 0.00 0.07 ind:pre:3s; +harassement harassement nom m s 0.27 0.20 0.27 0.20 +harassent harasser ver 0.17 1.28 0.11 0.07 ind:pre:3p; +harasser harasser ver 0.17 1.28 0.00 0.07 inf; +harassé harassé adj m s 0.12 2.50 0.01 1.15 +harassée harassé adj f s 0.12 2.50 0.01 0.41 +harassées harassé adj f p 0.12 2.50 0.00 0.14 +harassés harassé adj m p 0.12 2.50 0.10 0.81 +harcela harceler ver 11.12 8.24 0.00 0.14 ind:pas:3s; +harcelai harceler ver 11.12 8.24 0.00 0.07 ind:pas:1s; +harcelaient harceler ver 11.12 8.24 0.30 0.74 ind:imp:3p; +harcelais harceler ver 11.12 8.24 0.11 0.20 ind:imp:1s;ind:imp:2s; +harcelait harceler ver 11.12 8.24 0.62 0.88 ind:imp:3s; +harcelant harceler ver 11.12 8.24 0.13 0.61 par:pre; +harcelante harcelant adj f s 0.04 0.61 0.00 0.27 +harcelantes harcelant adj f p 0.04 0.61 0.01 0.14 +harcelants harcelant adj m p 0.04 0.61 0.00 0.07 +harceler harceler ver 11.12 8.24 3.00 1.82 inf; +harceleur harceleur nom m s 0.17 0.07 0.16 0.00 +harceleuse harceleur nom f s 0.17 0.07 0.01 0.07 +harcelez harceler ver 11.12 8.24 0.92 0.00 imp:pre:2p;ind:pre:2p; +harceliez harceler ver 11.12 8.24 0.06 0.00 ind:imp:2p; +harcelèrent harceler ver 11.12 8.24 0.00 0.07 ind:pas:3p; +harcelé harceler ver m s 11.12 8.24 1.16 1.62 par:pas; +harcelée harceler ver f s 11.12 8.24 0.67 0.34 par:pas; +harcelées harceler ver f p 11.12 8.24 0.04 0.07 par:pas; +harcelés harceler ver m p 11.12 8.24 0.37 0.61 par:pas; +harcèle harceler ver 11.12 8.24 2.88 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +harcèlement harcèlement nom m s 3.69 1.49 3.65 1.35 +harcèlements harcèlement nom m p 3.69 1.49 0.05 0.14 +harcèlent harceler ver 11.12 8.24 0.41 0.27 ind:pre:3p; +harcèlera harceler ver 11.12 8.24 0.17 0.00 ind:fut:3s; +harcèlerai harceler ver 11.12 8.24 0.11 0.00 ind:fut:1s; +harcèleraient harceler ver 11.12 8.24 0.00 0.14 cnd:pre:3p; +harcèlerez harceler ver 11.12 8.24 0.01 0.00 ind:fut:2p; +harcèlerons harceler ver 11.12 8.24 0.14 0.00 ind:fut:1p; +harcèleront harceler ver 11.12 8.24 0.02 0.00 ind:fut:3p; +hard_top hard_top nom m s 0.01 0.00 0.01 0.00 +hard_edge hard_edge nom m s 0.01 0.00 0.01 0.00 +hard hard adj 2.72 1.08 2.72 1.08 +harde harde nom f s 0.15 8.99 0.00 3.85 +hardent harder ver 0.18 0.07 0.01 0.00 ind:pre:3p; +harder harder ver 0.18 0.07 0.17 0.07 inf; +hardes harde nom f p 0.15 8.99 0.15 5.14 +hardi hardi ono 0.01 0.61 0.01 0.61 +hardie hardi adj f s 2.22 10.68 0.63 1.35 +hardies hardi adj f p 2.22 10.68 0.11 0.88 +hardiesse hardiesse nom f s 0.46 2.64 0.46 2.03 +hardiesses hardiesse nom f p 0.46 2.64 0.00 0.61 +hardiment hardiment adv 1.20 1.62 1.20 1.62 +hardis hardi adj m p 2.22 10.68 0.19 1.96 +hare hare ono 0.49 0.07 0.49 0.07 +harem harem nom m s 1.78 15.95 1.60 15.74 +harems harem nom m p 1.78 15.95 0.17 0.20 +hareng hareng nom m s 2.78 6.08 1.90 2.91 +harengs hareng nom m p 2.78 6.08 0.89 3.18 +harengère harengère nom f s 0.10 0.14 0.10 0.14 +harenguet harenguet nom m s 0.01 0.00 0.01 0.00 +harenguier harenguier nom m s 0.10 0.00 0.10 0.00 +haret haret adj m s 0.00 0.07 0.00 0.07 +harfang harfang nom m s 0.00 0.07 0.00 0.07 +hargne hargne nom f s 0.42 4.53 0.42 4.26 +hargnes hargne nom f p 0.42 4.53 0.00 0.27 +hargneuse hargneux adj f s 1.13 9.46 0.14 3.11 +hargneusement hargneusement adv 0.00 1.42 0.00 1.42 +hargneuses hargneux adj f p 1.13 9.46 0.01 0.81 +hargneux hargneux adj m 1.13 9.46 0.98 5.54 +haricot haricot nom m s 8.85 13.45 1.40 1.22 +haricots haricot nom m p 8.85 13.45 7.45 12.23 +haridelle haridelle nom f s 0.01 0.61 0.01 0.41 +haridelles haridelle nom f p 0.01 0.61 0.00 0.20 +harissa harissa nom f s 0.00 0.20 0.00 0.20 +harki harki nom m s 0.00 0.41 0.00 0.14 +harkis harki nom m p 0.00 0.41 0.00 0.27 +harmattan harmattan nom m s 0.02 0.07 0.02 0.07 +harmonica harmonica nom m s 1.41 1.76 1.38 1.69 +harmonicas harmonica nom m p 1.41 1.76 0.03 0.07 +harmoniciste harmoniciste nom s 0.02 0.00 0.02 0.00 +harmonie harmonie nom f s 6.80 16.22 6.36 15.61 +harmonies harmonie nom f p 6.80 16.22 0.44 0.61 +harmonieuse harmonieux adj f s 1.16 7.09 0.27 2.43 +harmonieusement harmonieusement adv 0.06 1.28 0.06 1.28 +harmonieuses harmonieux adj f p 1.16 7.09 0.05 0.61 +harmonieux harmonieux adj m 1.16 7.09 0.84 4.05 +harmonique harmonique adj s 0.43 0.61 0.36 0.47 +harmoniquement harmoniquement adv 0.01 0.00 0.01 0.00 +harmoniques harmonique nom m p 0.22 0.41 0.18 0.41 +harmonisaient harmoniser ver 0.35 1.42 0.00 0.07 ind:imp:3p; +harmonisait harmoniser ver 0.35 1.42 0.05 0.54 ind:imp:3s; +harmonisant harmoniser ver 0.35 1.42 0.01 0.14 par:pre; +harmonisateurs harmonisateur adj m p 0.00 0.20 0.00 0.07 +harmonisation harmonisation nom f s 0.05 0.07 0.05 0.07 +harmonisatrices harmonisateur adj f p 0.00 0.20 0.00 0.14 +harmonise harmoniser ver 0.35 1.42 0.04 0.20 ind:pre:3s; +harmonisent harmoniser ver 0.35 1.42 0.01 0.07 ind:pre:3p; +harmoniser harmoniser ver 0.35 1.42 0.22 0.27 inf; +harmonisera harmoniser ver 0.35 1.42 0.01 0.00 ind:fut:3s; +harmonisez harmoniser ver 0.35 1.42 0.01 0.00 ind:pre:2p; +harmonisèrent harmoniser ver 0.35 1.42 0.00 0.07 ind:pas:3p; +harmonisé harmoniser ver m s 0.35 1.42 0.01 0.00 par:pas; +harmonisés harmoniser ver m p 0.35 1.42 0.00 0.07 par:pas; +harmonium harmonium nom m s 0.05 3.51 0.05 3.45 +harmoniums harmonium nom m p 0.05 3.51 0.00 0.07 +harnacha harnacher ver 0.19 1.62 0.00 0.07 ind:pas:3s; +harnachaient harnacher ver 0.19 1.62 0.00 0.07 ind:imp:3p; +harnachais harnacher ver 0.19 1.62 0.00 0.07 ind:imp:1s; +harnachait harnacher ver 0.19 1.62 0.00 0.27 ind:imp:3s; +harnachement harnachement nom m s 0.06 1.55 0.06 1.28 +harnachements harnachement nom m p 0.06 1.55 0.00 0.27 +harnacher harnacher ver 0.19 1.62 0.04 0.07 inf; +harnachiez harnacher ver 0.19 1.62 0.00 0.07 ind:imp:2p; +harnachèrent harnacher ver 0.19 1.62 0.00 0.07 ind:pas:3p; +harnaché harnacher ver m s 0.19 1.62 0.14 0.47 par:pas; +harnachée harnacher ver f s 0.19 1.62 0.00 0.07 par:pas; +harnachées harnacher ver f p 0.19 1.62 0.00 0.14 par:pas; +harnachés harnaché adj m p 0.02 0.88 0.02 0.41 +harnais harnais nom m 1.29 3.92 1.29 3.92 +harnois harnois nom m p 0.01 0.20 0.01 0.20 +haro haro nom m s 0.03 1.35 0.03 1.35 +harpagon harpagon nom m s 0.01 0.00 0.01 0.00 +harpe harpe nom f s 1.14 5.34 0.94 4.86 +harper harper ver 7.25 0.14 7.25 0.00 inf; +harpes harpe nom f p 1.14 5.34 0.20 0.47 +harpie harpie nom f s 0.73 1.42 0.64 1.22 +harpies harpie nom f p 0.73 1.42 0.09 0.20 +harpin harpin nom m s 0.00 0.07 0.00 0.07 +harpions harper ver 7.25 0.14 0.00 0.14 ind:imp:1p; +harpiste harpiste nom s 0.08 0.27 0.08 0.27 +harpon harpon nom m s 1.18 2.03 0.75 1.76 +harponna harponner ver 0.34 1.22 0.00 0.07 ind:pas:3s; +harponnage harponnage nom m s 0.17 0.07 0.17 0.07 +harponne harponner ver 0.34 1.22 0.02 0.20 ind:pre:1s;ind:pre:3s; +harponnent harponner ver 0.34 1.22 0.00 0.07 ind:pre:3p; +harponner harponner ver 0.34 1.22 0.23 0.47 inf; +harponnera harponner ver 0.34 1.22 0.01 0.00 ind:fut:3s; +harponneur harponneur nom m s 0.04 0.20 0.03 0.14 +harponneurs harponneur nom m p 0.04 0.20 0.01 0.07 +harponné harponner ver m s 0.34 1.22 0.04 0.20 par:pas; +harponnée harponner ver f s 0.34 1.22 0.02 0.20 par:pas; +harponnés harponner ver m p 0.34 1.22 0.01 0.00 par:pas; +harpons harpon nom m p 1.18 2.03 0.43 0.27 +harpyes harpye nom f p 0.00 0.07 0.00 0.07 +hart hart nom f s 0.07 0.41 0.07 0.27 +harts hart nom f p 0.07 0.41 0.00 0.14 +haruspices haruspice nom m p 0.01 0.14 0.01 0.14 +has_been has_been nom m 0.18 0.20 0.18 0.20 +hasard hasard nom m s 48.07 124.19 46.98 118.99 +hasarda hasarder ver 1.10 6.35 0.01 1.35 ind:pas:3s; +hasardai hasarder ver 1.10 6.35 0.00 0.54 ind:pas:1s; +hasardaient hasarder ver 1.10 6.35 0.00 0.20 ind:imp:3p; +hasardais hasarder ver 1.10 6.35 0.00 0.14 ind:imp:1s; +hasardait hasarder ver 1.10 6.35 0.00 0.68 ind:imp:3s; +hasardant hasarder ver 1.10 6.35 0.00 0.41 par:pre; +hasarde hasarder ver 1.10 6.35 0.29 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hasardent hasarder ver 1.10 6.35 0.01 0.20 ind:pre:3p; +hasarder hasarder ver 1.10 6.35 0.74 0.68 inf; +hasardera hasarder ver 1.10 6.35 0.00 0.07 ind:fut:3s; +hasarderais hasarder ver 1.10 6.35 0.03 0.00 cnd:pre:1s; +hasardeuse hasardeux adj f s 0.66 2.77 0.35 1.08 +hasardeusement hasardeusement adv 0.00 0.07 0.00 0.07 +hasardeuses hasardeux adj f p 0.66 2.77 0.03 0.47 +hasardeux hasardeux adj m 0.66 2.77 0.28 1.22 +hasards hasard nom m p 48.07 124.19 1.09 5.20 +hasardé hasarder ver m s 1.10 6.35 0.00 0.27 par:pas; +hasardée hasardé adj f s 0.10 0.07 0.10 0.07 +hasch hasch nom m s 2.16 0.47 2.16 0.47 +haschich haschich nom m s 0.39 0.47 0.39 0.47 +haschisch haschisch nom m s 0.11 0.41 0.11 0.41 +hase hase nom f s 0.02 0.27 0.02 0.14 +haseki haseki nom f s 0.00 0.20 0.00 0.07 +hasekis haseki nom f p 0.00 0.20 0.00 0.14 +hases hase nom f p 0.02 0.27 0.00 0.14 +hassidim hassidim nom m p 0.22 0.00 0.22 0.00 +hassidique hassidique adj s 0.09 0.00 0.09 0.00 +hassidisme hassidisme nom m s 0.00 0.07 0.00 0.07 +hauban hauban nom m s 0.37 1.01 0.02 0.20 +haubans hauban nom m p 0.37 1.01 0.35 0.81 +haubanée haubaner ver f s 0.00 0.27 0.00 0.07 par:pas; +haubanés haubaner ver m p 0.00 0.27 0.00 0.20 par:pas; +haubert haubert nom m s 0.01 0.54 0.01 0.54 +haussa hausser ver 1.76 71.96 0.00 34.46 ind:pas:3s; +haussai hausser ver 1.76 71.96 0.27 2.09 ind:pas:1s; +haussaient hausser ver 1.76 71.96 0.10 1.01 ind:imp:3p; +haussais hausser ver 1.76 71.96 0.00 0.41 ind:imp:1s; +haussait hausser ver 1.76 71.96 0.01 4.86 ind:imp:3s; +haussant hausser ver 1.76 71.96 0.03 8.38 par:pre; +hausse hausse nom f s 3.38 2.36 3.31 2.09 +haussement haussement nom m s 0.06 5.68 0.06 5.07 +haussements haussement nom m p 0.06 5.68 0.00 0.61 +haussent hausser ver 1.76 71.96 0.10 0.61 ind:pre:3p; +hausser hausser ver 1.76 71.96 0.43 4.86 inf; +hausserait hausser ver 1.76 71.96 0.01 0.14 cnd:pre:3s; +hausses hausser ver 1.76 71.96 0.23 0.20 ind:pre:2s; +haussez hausser ver 1.76 71.96 0.20 0.07 imp:pre:2p;ind:pre:2p; +haussier haussier adj m s 0.02 0.00 0.01 0.00 +haussière haussière nom f s 0.03 0.14 0.03 0.07 +haussières haussière nom f p 0.03 0.14 0.00 0.07 +haussons hausser ver 1.76 71.96 0.00 0.14 imp:pre:1p;ind:pre:1p; +haussât hausser ver 1.76 71.96 0.00 0.14 sub:imp:3s; +haussèrent hausser ver 1.76 71.96 0.00 0.27 ind:pas:3p; +haussé hausser ver m s 1.76 71.96 0.10 5.00 par:pas; +haussée hausser ver f s 1.76 71.96 0.01 0.27 par:pas; +haussées hausser ver f p 1.76 71.96 0.00 0.07 par:pas; +haussés hausser ver m p 1.76 71.96 0.00 0.27 par:pas; +haut_commandement haut_commandement nom m s 0.00 1.22 0.00 1.22 +haut_commissaire haut_commissaire nom m s 0.03 7.97 0.03 7.57 +haut_commissariat haut_commissariat nom m s 0.02 0.81 0.02 0.81 +haut_de_chausse haut_de_chausse nom f s 0.15 0.07 0.14 0.07 +haut_de_chausses haut_de_chausses nom m 0.00 0.20 0.00 0.20 +haut_de_forme haut_de_forme nom m s 0.45 1.62 0.30 1.42 +haut_fond haut_fond nom m s 0.08 1.08 0.02 0.61 +haut_le_coeur haut_le_coeur nom m 0.04 1.01 0.04 1.01 +haut_le_corps haut_le_corps nom m 0.00 1.76 0.00 1.76 +haut_parleur haut_parleur nom m s 3.65 7.36 2.61 3.99 +haut_parleur haut_parleur nom m p 3.65 7.36 1.04 3.38 +haut_relief haut_relief nom m s 0.00 0.20 0.00 0.20 +haut haut nom m s 77.86 125.07 75.22 121.01 +hautain hautain adj m s 0.84 10.88 0.51 4.12 +hautaine hautain adj f s 0.84 10.88 0.27 5.07 +hautainement hautainement adv 0.00 0.07 0.00 0.07 +hautaines hautain adj f p 0.84 10.88 0.03 0.81 +hautains hautain adj m p 0.84 10.88 0.03 0.88 +hautbois hautbois nom m 0.38 1.62 0.38 1.62 +haute_fidélité haute_fidélité nom f s 0.03 0.07 0.03 0.07 +haute haut adj f s 68.05 196.76 32.44 88.11 +hautement hautement adv 4.83 4.73 4.83 4.73 +hautes haut adj f p 68.05 196.76 6.72 37.43 +hautesse hautesse nom f s 0.00 1.42 0.00 1.42 +hauteur hauteur nom f s 19.99 77.70 18.19 66.15 +hauteurs hauteur nom f p 19.99 77.70 1.80 11.55 +hautin hautin nom m s 0.11 0.00 0.10 0.00 +hautins hautin nom m p 0.11 0.00 0.01 0.00 +haut_commissaire haut_commissaire nom m p 0.03 7.97 0.00 0.41 +haut_de_chausse haut_de_chausse nom m p 0.15 0.07 0.01 0.00 +haut_de_forme haut_de_forme nom m p 0.45 1.62 0.14 0.20 +haut_fond haut_fond nom m p 0.08 1.08 0.06 0.47 +haut_fourneau haut_fourneau nom m p 0.01 0.27 0.01 0.27 +hauts haut adj m p 68.05 196.76 5.48 29.26 +hauturière hauturier adj f s 0.00 0.14 0.00 0.14 +havanais havanais nom m 0.00 0.07 0.00 0.07 +havanaise havanaise nom f s 0.01 0.00 0.01 0.00 +havane havane nom m s 0.50 0.95 0.17 0.47 +havanes havane nom m p 0.50 0.95 0.33 0.47 +have haver ver 10.73 0.74 10.67 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +haveneau haveneau nom m s 0.00 0.14 0.00 0.07 +haveneaux haveneau nom m p 0.00 0.14 0.00 0.07 +haver haver ver 10.73 0.74 0.07 0.00 inf; +haves haver ver 10.73 0.74 0.00 0.07 ind:pre:2s; +havrais havrais adj m s 0.00 0.07 0.00 0.07 +havre havre nom m s 0.89 3.11 0.85 3.04 +havres havre nom m p 0.89 3.11 0.04 0.07 +havresac havresac nom m s 0.12 2.16 0.12 1.49 +havresacs havresac nom m p 0.12 2.16 0.00 0.68 +hawaïen hawaïen adj m s 0.00 0.20 0.00 0.07 +hawaïenne hawaïen adj f s 0.00 0.20 0.00 0.14 +hawaiienne hawaiien adj f s 0.00 0.14 0.00 0.07 +hawaiiennes hawaiien adj f p 0.00 0.14 0.00 0.07 +hayon hayon nom m s 0.06 0.14 0.06 0.07 +hayons hayon nom m p 0.06 0.14 0.00 0.07 +heaume heaume nom m s 0.55 1.01 0.51 0.88 +heaumes heaume nom m p 0.55 1.01 0.04 0.14 +hebdo hebdo nom m s 0.20 1.49 0.18 1.08 +hebdomadaire hebdomadaire adj s 1.64 4.19 1.30 3.51 +hebdomadairement hebdomadairement adv 0.00 0.20 0.00 0.20 +hebdomadaires hebdomadaire adj p 1.64 4.19 0.34 0.68 +hebdos hebdo nom m p 0.20 1.49 0.03 0.41 +hectare hectare nom m s 2.95 6.35 0.27 0.14 +hectares hectare nom m p 2.95 6.35 2.68 6.22 +hecto hecto nom m s 0.00 0.07 0.00 0.07 +hectolitres hectolitre nom m p 0.01 0.20 0.01 0.20 +hectomètres hectomètre nom m p 0.00 0.07 0.00 0.07 +hein hein ono 437.20 88.45 437.20 88.45 +hello hello ono 10.82 1.49 10.82 1.49 +hellène hellène adj s 0.02 0.34 0.02 0.20 +hellènes hellène nom p 0.01 0.68 0.01 0.47 +hellénique hellénique adj s 0.03 0.81 0.03 0.54 +helléniques hellénique adj f p 0.03 0.81 0.00 0.27 +helléniser helléniser ver 0.00 0.27 0.00 0.20 inf; +hellénisme hellénisme nom m s 0.00 0.34 0.00 0.34 +helléniste helléniste nom s 0.01 0.27 0.01 0.14 +hellénistes helléniste nom p 0.01 0.27 0.00 0.14 +hellénistique hellénistique adj s 0.02 0.14 0.02 0.07 +hellénistiques hellénistique adj m p 0.02 0.14 0.00 0.07 +hellénisé helléniser ver m s 0.00 0.27 0.00 0.07 par:pas; +helminthe helminthe nom m s 0.00 0.07 0.00 0.07 +helvelles helvelle nom f p 0.00 0.07 0.00 0.07 +helvète helvète adj m s 0.00 0.20 0.00 0.14 +helvètes helvète nom p 0.00 0.20 0.00 0.20 +helvétien helvétien adj m s 0.00 0.07 0.00 0.07 +helvétique helvétique adj f s 0.00 0.81 0.00 0.68 +helvétiques helvétique adj m p 0.00 0.81 0.00 0.14 +hem hem ono 0.10 0.20 0.10 0.20 +hemlock hemlock nom m s 0.23 0.00 0.23 0.00 +hennin hennin nom m s 0.00 0.34 0.00 0.34 +hennir hennir ver 0.07 1.55 0.03 0.00 inf; +hennirent hennir ver 0.07 1.55 0.00 0.14 ind:pas:3p; +hennissaient hennir ver 0.07 1.55 0.00 0.27 ind:imp:3p; +hennissait hennir ver 0.07 1.55 0.00 0.07 ind:imp:3s; +hennissant hennissant adj m s 0.01 0.34 0.01 0.27 +hennissantes hennissant adj f p 0.01 0.34 0.00 0.07 +hennissement hennissement nom m s 0.45 2.91 0.14 1.76 +hennissements hennissement nom m p 0.45 2.91 0.30 1.15 +hennissent hennir ver 0.07 1.55 0.02 0.07 ind:pre:3p; +hennit hennir ver 0.07 1.55 0.02 0.74 ind:pre:3s;ind:pas:3s; +henné henné nom m s 1.15 0.95 1.15 0.95 +henry henry nom m s 0.15 0.00 0.15 0.00 +hep hep ono 1.94 1.96 1.94 1.96 +heptagone heptagone nom m s 0.00 0.14 0.00 0.14 +heptaméron heptaméron nom m s 0.00 0.07 0.00 0.07 +heptane heptane nom m s 0.04 0.00 0.04 0.00 +herba herber ver 0.23 0.07 0.02 0.07 ind:pas:3s; +herbage herbage nom m s 0.10 1.35 0.04 0.74 +herbagers herbager nom m p 0.00 0.07 0.00 0.07 +herbages herbage nom m p 0.10 1.35 0.06 0.61 +herbe herbe nom f s 34.81 118.51 27.64 86.08 +herber herber ver 0.23 0.07 0.20 0.00 inf; +herbes herbe nom f p 34.81 118.51 7.17 32.43 +herbette herbette nom f s 0.00 0.14 0.00 0.07 +herbettes herbette nom f p 0.00 0.14 0.00 0.07 +herbeuse herbeux adj f s 0.02 1.01 0.00 0.20 +herbeuses herbeux adj f p 0.02 1.01 0.01 0.07 +herbeux herbeux adj m 0.02 1.01 0.01 0.74 +herbicide herbicide nom m s 0.32 0.00 0.32 0.00 +herbier herbier nom m s 0.16 1.28 0.16 0.81 +herbiers herbier nom m p 0.16 1.28 0.00 0.47 +herbivore herbivore nom m s 0.20 0.27 0.14 0.14 +herbivores herbivore nom m p 0.20 0.27 0.06 0.14 +herborisais herboriser ver 0.00 0.54 0.00 0.07 ind:imp:1s; +herborisait herboriser ver 0.00 0.54 0.00 0.14 ind:imp:3s; +herboriser herboriser ver 0.00 0.54 0.00 0.34 inf; +herboriste herboriste nom s 0.74 0.88 0.64 0.68 +herboristerie herboristerie nom f s 0.08 0.14 0.04 0.07 +herboristeries herboristerie nom f p 0.08 0.14 0.04 0.07 +herboristes herboriste nom p 0.74 0.88 0.10 0.20 +herbu herbu adj m s 0.01 1.82 0.00 0.81 +herbue herbu adj f s 0.01 1.82 0.01 0.54 +herbues herbu adj f p 0.01 1.82 0.00 0.41 +herbus herbu adj m p 0.01 1.82 0.00 0.07 +hercher hercher ver 0.03 0.00 0.03 0.00 inf; +hercule hercule nom m s 0.77 0.68 0.19 0.41 +hercules hercule nom m p 0.77 0.68 0.58 0.27 +herculéen herculéen adj m s 0.03 0.74 0.02 0.34 +herculéenne herculéen adj f s 0.03 0.74 0.01 0.07 +herculéennes herculéen adj f p 0.03 0.74 0.00 0.07 +herculéens herculéen adj m p 0.03 0.74 0.00 0.27 +hercynien hercynien adj m s 0.00 0.14 0.00 0.07 +hercyniennes hercynien adj f p 0.00 0.14 0.00 0.07 +hermaphrodisme hermaphrodisme nom m s 0.00 0.07 0.00 0.07 +hermaphrodite hermaphrodite adj s 0.37 0.20 0.11 0.14 +hermaphrodites hermaphrodite adj p 0.37 0.20 0.26 0.07 +hermaphroditisme hermaphroditisme nom m s 0.00 0.07 0.00 0.07 +hermine hermine nom f s 0.28 1.69 0.28 1.62 +hermines hermine nom f p 0.28 1.69 0.00 0.07 +herminette herminette nom f s 0.01 0.14 0.01 0.07 +herminettes herminette nom f p 0.01 0.14 0.00 0.07 +herminé herminé adj m s 0.00 0.07 0.00 0.07 +hermès hermès nom m 0.73 0.00 0.73 0.00 +herméneutique herméneutique adj f s 0.01 0.00 0.01 0.00 +hermétique hermétique adj s 0.98 3.11 0.82 1.96 +hermétiquement hermétiquement adv 0.61 1.55 0.61 1.55 +hermétiques hermétique adj p 0.98 3.11 0.16 1.15 +hermétisme hermétisme nom m s 0.14 0.20 0.14 0.20 +hermétistes hermétiste nom p 0.00 0.14 0.00 0.14 +herniaire herniaire adj s 0.06 0.41 0.06 0.27 +herniaires herniaire adj m p 0.06 0.41 0.00 0.14 +hernie hernie nom f s 2.91 1.01 2.85 0.61 +hernies hernie nom f p 2.91 1.01 0.06 0.41 +hernieux hernieux adj m p 0.00 0.07 0.00 0.07 +herpès herpès nom m 0.86 0.20 0.86 0.20 +herpétique herpétique adj f s 0.03 0.00 0.03 0.00 +herpétologie herpétologie nom f s 0.04 0.00 0.04 0.00 +herpétologiste herpétologiste nom s 0.01 0.00 0.01 0.00 +hersait herser ver 0.00 0.34 0.00 0.07 ind:imp:3s; +herse herse nom f s 0.27 2.57 0.26 1.69 +herser herser ver 0.00 0.34 0.00 0.14 inf; +herses herse nom f p 0.27 2.57 0.01 0.88 +hersé herser ver m s 0.00 0.34 0.00 0.07 par:pas; +hersés herser ver m p 0.00 0.34 0.00 0.07 par:pas; +hertz hertz nom m 0.09 0.00 0.09 0.00 +hertzienne hertzien adj f s 0.10 0.07 0.03 0.00 +hertziennes hertzien adj f p 0.10 0.07 0.06 0.07 +hertziens hertzien adj m p 0.10 0.07 0.01 0.00 +hessois hessois adj m 0.00 0.14 0.00 0.07 +hessoise hessois adj f s 0.00 0.14 0.00 0.07 +hetman hetman nom m s 0.34 0.07 0.34 0.07 +heu heu ono 35.17 6.69 35.17 6.69 +heur heur nom m s 0.28 1.15 0.05 0.41 +heure heure nom f s 709.79 924.05 415.40 439.86 +heures heure nom f p 709.79 924.05 294.39 484.19 +heureuse heureux adj f s 248.45 190.00 88.71 58.11 +heureusement heureusement adv 39.78 51.35 39.78 51.35 +heureuses heureux adj f p 248.45 190.00 3.94 6.49 +heureux heureux adj m 248.45 190.00 155.80 125.41 +heuristique heuristique adj f s 0.03 0.00 0.03 0.00 +heurs heur nom m p 0.28 1.15 0.01 0.20 +heurt heurt nom m s 0.49 6.15 0.29 2.84 +heurta heurter ver 9.79 39.05 0.17 5.14 ind:pas:3s; +heurtai heurter ver 9.79 39.05 0.01 0.68 ind:pas:1s; +heurtaient heurter ver 9.79 39.05 0.06 2.36 ind:imp:3p; +heurtais heurter ver 9.79 39.05 0.05 0.41 ind:imp:1s; +heurtait heurter ver 9.79 39.05 0.04 4.32 ind:imp:3s; +heurtant heurter ver 9.79 39.05 0.22 4.19 par:pre; +heurte heurter ver 9.79 39.05 1.15 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +heurtent heurter ver 9.79 39.05 0.29 1.96 ind:pre:3p; +heurter heurter ver 9.79 39.05 1.81 7.50 inf; +heurtera heurter ver 9.79 39.05 0.04 0.20 ind:fut:3s; +heurterai heurter ver 9.79 39.05 0.00 0.07 ind:fut:1s; +heurteraient heurter ver 9.79 39.05 0.00 0.07 cnd:pre:3p; +heurterait heurter ver 9.79 39.05 0.04 0.20 cnd:pre:3s; +heurterions heurter ver 9.79 39.05 0.00 0.07 cnd:pre:1p; +heurtez heurter ver 9.79 39.05 0.07 0.14 imp:pre:2p;ind:pre:2p; +heurtions heurter ver 9.79 39.05 0.00 0.41 ind:imp:1p; +heurtoir heurtoir nom m s 0.03 0.61 0.03 0.47 +heurtoirs heurtoir nom m p 0.03 0.61 0.00 0.14 +heurtons heurter ver 9.79 39.05 0.00 0.14 ind:pre:1p; +heurtât heurter ver 9.79 39.05 0.00 0.14 sub:imp:3s; +heurts heurt nom m p 0.49 6.15 0.20 3.31 +heurtèrent heurter ver 9.79 39.05 0.01 0.95 ind:pas:3p; +heurté heurter ver m s 9.79 39.05 4.92 3.85 par:pas; +heurtée heurter ver f s 9.79 39.05 0.61 0.68 par:pas; +heurtées heurter ver f p 9.79 39.05 0.05 0.07 par:pas; +heurtés heurter ver m p 9.79 39.05 0.22 0.88 par:pas; +hexagonal hexagonal adj m s 0.03 1.96 0.01 0.61 +hexagonale hexagonal adj f s 0.03 1.96 0.01 0.68 +hexagonales hexagonal adj f p 0.03 1.96 0.01 0.47 +hexagonaux hexagonal adj m p 0.03 1.96 0.00 0.20 +hexagone hexagone nom m s 0.23 0.61 0.23 0.47 +hexagones hexagone nom m p 0.23 0.61 0.00 0.14 +hexamètres hexamètre nom m p 0.02 0.14 0.02 0.14 +hi_fi hi_fi nom f s 0.87 0.81 0.87 0.81 +hi_han hi_han ono 0.20 0.14 0.20 0.14 +hi hi ono 3.81 5.41 3.81 5.41 +hiatale hiatal adj f s 0.29 0.00 0.29 0.00 +hiatus hiatus nom m 0.04 1.01 0.04 1.01 +hibernaient hiberner ver 0.65 0.34 0.02 0.00 ind:imp:3p; +hibernait hiberner ver 0.65 0.34 0.03 0.07 ind:imp:3s; +hibernation hibernation nom f s 0.82 0.27 0.82 0.27 +hiberne hiberner ver 0.65 0.34 0.16 0.07 ind:pre:1s;ind:pre:3s; +hibernent hiberner ver 0.65 0.34 0.05 0.00 ind:pre:3p; +hiberner hiberner ver 0.65 0.34 0.21 0.07 inf; +hiberné hiberner ver m s 0.65 0.34 0.17 0.14 par:pas; +hibiscus hibiscus nom m 0.13 1.08 0.13 1.08 +hibou hibou nom m s 5.01 2.97 4.08 2.36 +hiboux hibou nom m p 5.01 2.97 0.94 0.61 +hic_et_nunc hic_et_nunc adv 0.00 0.41 0.00 0.41 +hic hic nom_sup m 2.21 2.91 2.21 2.91 +hickory hickory nom m s 0.14 0.07 0.14 0.07 +hidalgo hidalgo nom m s 0.08 0.61 0.06 0.27 +hidalgos hidalgo nom m p 0.08 0.61 0.02 0.34 +hideur hideur nom f s 0.00 0.81 0.00 0.61 +hideurs hideur nom f p 0.00 0.81 0.00 0.20 +hideuse hideux adj f s 3.31 9.26 0.99 2.70 +hideusement hideusement adv 0.03 0.34 0.03 0.34 +hideuses hideux adj f p 3.31 9.26 0.39 1.28 +hideux hideux adj m 3.31 9.26 1.93 5.27 +hier hier adv_sup 223.77 92.64 223.77 92.64 +high_life high_life nom m s 0.27 0.14 0.27 0.14 +high_tech high_tech adj 0.32 0.14 0.29 0.07 +high_life high_life nom m s 0.04 0.41 0.04 0.41 +high_tech high_tech adj s 0.32 0.14 0.04 0.07 +highlander highlander nom m s 0.30 0.14 0.14 0.00 +highlanders highlander nom m p 0.30 0.14 0.16 0.14 +higoumène higoumène nom m s 0.00 0.07 0.00 0.07 +hilaire hilaire adj f s 0.02 0.00 0.02 0.00 +hilarant hilarant adj m s 2.37 0.47 1.94 0.20 +hilarante hilarant adj f s 2.37 0.47 0.25 0.00 +hilarantes hilarant adj f p 2.37 0.47 0.09 0.14 +hilarants hilarant adj m p 2.37 0.47 0.10 0.14 +hilare hilare adj s 0.14 8.72 0.14 6.15 +hilares hilare adj p 0.14 8.72 0.00 2.57 +hilarité hilarité nom f s 0.32 4.12 0.32 4.05 +hilarités hilarité nom f p 0.32 4.12 0.00 0.07 +hile hile nom m s 0.24 0.00 0.24 0.00 +hiloire hiloire nom f s 0.00 0.07 0.00 0.07 +hilotes hilote nom m p 0.00 0.07 0.00 0.07 +himalaya himalaya nom m s 0.01 0.14 0.01 0.14 +himalayenne himalayen adj f s 0.20 0.07 0.20 0.00 +himalayens himalayen adj m p 0.20 0.07 0.00 0.07 +hindi hindi nom m s 0.14 0.07 0.14 0.07 +hindou hindou nom m s 1.79 1.22 0.93 0.47 +hindoue hindou adj f s 1.27 2.03 0.47 0.68 +hindoues hindou adj f p 1.27 2.03 0.17 0.27 +hindouisme hindouisme nom m s 0.28 0.00 0.28 0.00 +hindous hindou nom m p 1.79 1.22 0.73 0.74 +hindoustani hindoustani nom m s 0.03 0.00 0.03 0.00 +hip_hop hip_hop nom m s 1.74 0.00 1.74 0.00 +hip hip ono 4.43 1.22 4.43 1.22 +hippie hippie nom s 3.68 0.27 1.33 0.14 +hippies hippie nom p 3.68 0.27 2.36 0.14 +hippique hippique adj s 0.59 2.91 0.49 1.42 +hippiques hippique adj p 0.59 2.91 0.11 1.49 +hippisme hippisme nom m s 0.02 0.00 0.02 0.00 +hippo hippo nom m s 0.41 45.61 0.41 45.61 +hippocampe hippocampe nom m s 0.63 0.41 0.58 0.27 +hippocampes hippocampe nom m p 0.63 0.41 0.05 0.14 +hippocratique hippocratique adj m s 0.00 0.14 0.00 0.14 +hippodrome hippodrome nom m s 0.53 1.35 0.52 0.81 +hippodromes hippodrome nom m p 0.53 1.35 0.01 0.54 +hippogriffe hippogriffe nom m s 0.19 0.14 0.19 0.14 +hippomobile hippomobile adj m s 0.10 0.00 0.10 0.00 +hippophagique hippophagique adj s 0.00 0.14 0.00 0.07 +hippophagiques hippophagique adj f p 0.00 0.14 0.00 0.07 +hippopotame hippopotame nom m s 2.52 1.01 1.45 0.54 +hippopotames hippopotame nom m p 2.52 1.01 1.07 0.47 +hippopotamesque hippopotamesque adj f s 0.00 0.07 0.00 0.07 +hippy hippy nom m s 0.25 0.14 0.25 0.14 +hirondelle hirondeau nom f s 1.87 9.66 1.87 3.24 +hirondelles hirondelle nom f p 0.69 0.00 0.69 0.00 +hirsute hirsute adj s 1.53 5.61 1.44 3.78 +hirsutes hirsute adj p 1.53 5.61 0.09 1.82 +hirsutisme hirsutisme nom m s 0.02 0.00 0.02 0.00 +hirudine hirudine nom f s 0.01 0.00 0.01 0.00 +hispanique hispanique adj s 0.50 0.27 0.47 0.14 +hispaniques hispanique nom p 0.27 0.00 0.10 0.00 +hispanisante hispanisant adj f s 0.00 0.14 0.00 0.07 +hispanisants hispanisant adj m p 0.00 0.14 0.00 0.07 +hispano_américain hispano_américain nom m s 0.01 0.00 0.01 0.00 +hispano_américain hispano_américain adj f s 0.03 0.27 0.03 0.20 +hispano_cubain hispano_cubain adj m s 0.00 0.07 0.00 0.07 +hispano_mauresque hispano_mauresque adj m s 0.00 0.07 0.00 0.07 +hispano hispano adv 0.06 0.54 0.06 0.54 +hispanophone hispanophone nom s 0.02 0.00 0.02 0.00 +hissa hisser ver 8.09 22.36 0.13 2.30 ind:pas:3s; +hissai hisser ver 8.09 22.36 0.14 0.27 ind:pas:1s; +hissaient hisser ver 8.09 22.36 0.02 0.47 ind:imp:3p; +hissais hisser ver 8.09 22.36 0.02 0.14 ind:imp:1s; +hissait hisser ver 8.09 22.36 0.16 2.09 ind:imp:3s; +hissant hisser ver 8.09 22.36 0.01 1.62 par:pre; +hisse hisse ono 0.88 0.07 0.88 0.07 +hissent hisser ver 8.09 22.36 0.12 0.34 ind:pre:3p; +hisser hisser ver 8.09 22.36 1.37 6.22 inf; +hissera hisser ver 8.09 22.36 0.13 0.14 ind:fut:3s; +hisserai hisser ver 8.09 22.36 0.00 0.14 ind:fut:1s; +hissez hisser ver 8.09 22.36 1.76 0.00 imp:pre:2p;ind:pre:2p; +hissâmes hisser ver 8.09 22.36 0.01 0.14 ind:pas:1p; +hissons hisser ver 8.09 22.36 0.04 0.20 imp:pre:1p;ind:pre:1p; +hissèrent hisser ver 8.09 22.36 0.00 0.81 ind:pas:3p; +hissé hisser ver m s 8.09 22.36 1.21 2.64 par:pas; +hissée hisser ver f s 8.09 22.36 0.05 1.28 par:pas; +hissées hisser ver f p 8.09 22.36 0.10 0.14 par:pas; +hissés hisser ver m p 8.09 22.36 0.07 0.81 par:pas; +histamine histamine nom f s 0.15 0.00 0.15 0.00 +histaminique histaminique adj s 0.03 0.00 0.03 0.00 +hister hister nom m s 0.02 0.00 0.02 0.00 +histocompatibilité histocompatibilité nom f s 0.14 0.00 0.14 0.00 +histocompatibles histocompatible adj p 0.00 0.07 0.00 0.07 +histoire histoire nom f s 359.92 359.53 295.32 292.23 +histoires histoire nom f p 359.92 359.53 64.60 67.30 +histologie histologie nom f s 0.11 0.00 0.11 0.00 +histologique histologique adj s 0.06 0.07 0.06 0.07 +histopathologie histopathologie nom f s 0.03 0.00 0.03 0.00 +histoplasmose histoplasmose nom f s 0.01 0.00 0.01 0.00 +historia historier ver 0.00 0.34 0.00 0.20 ind:pas:3s; +historicité historicité nom f s 0.00 0.14 0.00 0.14 +historico_culturel historico_culturel adj f s 0.00 0.07 0.00 0.07 +historien historien nom m s 2.32 6.28 1.49 3.11 +historienne historien nom f s 2.32 6.28 0.21 0.34 +historiens historien nom m p 2.32 6.28 0.63 2.84 +historiette historiette nom f s 0.00 0.34 0.00 0.14 +historiettes historiette nom f p 0.00 0.34 0.00 0.20 +historiographe historiographe nom s 0.01 0.00 0.01 0.00 +historiographie historiographie nom f s 0.11 0.00 0.11 0.00 +historique historique adj s 11.31 18.24 8.83 11.69 +historiquement historiquement adv 0.99 0.47 0.99 0.47 +historiques historique adj p 11.31 18.24 2.48 6.55 +historiée historier ver f s 0.00 0.34 0.00 0.07 par:pas; +historiés historié adj m p 0.00 0.20 0.00 0.14 +histrion histrion nom m s 0.34 0.41 0.23 0.27 +histrions histrion nom m p 0.34 0.41 0.10 0.14 +hit_parade hit_parade nom m s 0.73 0.68 0.69 0.68 +hit_parade hit_parade nom m p 0.73 0.68 0.04 0.00 +hit hit nom m s 1.59 0.47 1.37 0.41 +hitchcockien hitchcockien adj m s 0.03 0.14 0.03 0.14 +hitlérien hitlérien adj m s 0.48 4.59 0.26 1.08 +hitlérienne hitlérien adj f s 0.48 4.59 0.14 2.16 +hitlériennes hitlérienne adj f p 0.20 0.00 0.20 0.00 +hitlériens hitlérien nom m p 0.00 1.15 0.00 0.88 +hitlérisme hitlérisme nom m s 0.01 0.68 0.01 0.68 +hits hit nom m p 1.59 0.47 0.22 0.07 +hittite hittite adj m s 0.04 0.41 0.04 0.20 +hittites hittite adj p 0.04 0.41 0.00 0.20 +hiérarchie hiérarchie nom f s 2.59 9.86 2.56 8.65 +hiérarchies hiérarchie nom f p 2.59 9.86 0.03 1.22 +hiérarchique hiérarchique adj s 0.59 1.49 0.57 1.28 +hiérarchiquement hiérarchiquement adv 0.01 0.20 0.01 0.20 +hiérarchiques hiérarchique adj p 0.59 1.49 0.02 0.20 +hiérarchisait hiérarchiser ver 0.01 0.14 0.00 0.07 ind:imp:3s; +hiérarchisation hiérarchisation nom f s 0.00 0.07 0.00 0.07 +hiérarchise hiérarchiser ver 0.01 0.14 0.01 0.00 ind:pre:3s; +hiérarchisé hiérarchisé adj m s 0.00 0.34 0.00 0.07 +hiérarchisée hiérarchisé adj f s 0.00 0.34 0.00 0.20 +hiérarchisés hiérarchisé adj m p 0.00 0.34 0.00 0.07 +hiératique hiératique adj s 0.02 1.69 0.01 1.22 +hiératiquement hiératiquement adv 0.00 0.07 0.00 0.07 +hiératiques hiératique adj p 0.02 1.69 0.01 0.47 +hiératisme hiératisme nom m s 0.00 0.54 0.00 0.54 +hiéroglyphe hiéroglyphe nom m s 1.25 1.49 0.20 0.20 +hiéroglyphes hiéroglyphe nom m p 1.25 1.49 1.05 1.28 +hiéroglyphique hiéroglyphique adj s 0.03 0.00 0.01 0.00 +hiéroglyphiques hiéroglyphique adj m p 0.03 0.00 0.02 0.00 +hiéronymites hiéronymite nom m p 0.00 0.07 0.00 0.07 +hiérophante hiérophante nom m s 0.00 0.20 0.00 0.20 +hiv hiv adj s 0.00 1.62 0.00 1.62 +hiver hiver nom m s 38.96 99.53 37.44 96.28 +hivernage hivernage nom m s 0.00 0.95 0.00 0.95 +hivernaient hiverner ver 0.02 0.81 0.00 0.07 ind:imp:3p; +hivernait hiverner ver 0.02 0.81 0.00 0.14 ind:imp:3s; +hivernal hivernal adj m s 0.17 1.82 0.08 0.74 +hivernale hivernal adj f s 0.17 1.82 0.04 0.88 +hivernales hivernal adj f p 0.17 1.82 0.05 0.14 +hivernant hivernant adj m s 0.00 0.20 0.00 0.07 +hivernante hivernant adj f s 0.00 0.20 0.00 0.07 +hivernantes hivernant adj f p 0.00 0.20 0.00 0.07 +hivernants hivernant nom m p 0.00 0.07 0.00 0.07 +hivernaux hivernal adj m p 0.17 1.82 0.00 0.07 +hiverne hiverner ver 0.02 0.81 0.00 0.14 ind:pre:1s;ind:pre:3s; +hiverner hiverner ver 0.02 0.81 0.02 0.34 inf; +hivernons hiverner ver 0.02 0.81 0.00 0.07 ind:pre:1p; +hiverné hiverner ver m s 0.02 0.81 0.00 0.07 par:pas; +hivers hiver nom m p 38.96 99.53 1.52 3.24 +ho ho ono 20.06 4.73 20.06 4.73 +hobbies hobby nom m p 3.11 0.20 0.61 0.20 +hobby hobby nom m s 3.11 0.20 2.50 0.00 +hobereau hobereau nom m s 0.03 1.82 0.02 1.01 +hobereaux hobereau nom m p 0.03 1.82 0.01 0.81 +hâblerie hâblerie nom f s 0.00 0.34 0.00 0.07 +hâbleries hâblerie nom f p 0.00 0.34 0.00 0.27 +hâbleur hâbleur nom m s 0.19 0.54 0.06 0.34 +hâbleurs hâbleur nom m p 0.19 0.54 0.14 0.20 +hocha hocher ver 1.80 41.15 0.16 14.12 ind:pas:3s; +hochai hocher ver 1.80 41.15 0.00 0.41 ind:pas:1s; +hochaient hocher ver 1.80 41.15 0.00 1.15 ind:imp:3p; +hochais hocher ver 1.80 41.15 0.00 0.27 ind:imp:1s; +hochait hocher ver 1.80 41.15 0.02 5.27 ind:imp:3s; +hochant hocher ver 1.80 41.15 0.27 8.38 par:pre; +hoche hocher ver 1.80 41.15 0.41 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hochement hochement nom m s 0.10 5.68 0.08 3.78 +hochements hochement nom m p 0.10 5.68 0.02 1.89 +hochent hocher ver 1.80 41.15 0.01 0.47 ind:pre:3p; +hochepot hochepot nom m s 0.00 0.14 0.00 0.14 +hocher hocher ver 1.80 41.15 0.18 1.42 inf; +hocheraient hocher ver 1.80 41.15 0.00 0.07 cnd:pre:3p; +hocheront hocher ver 1.80 41.15 0.00 0.07 ind:fut:3p; +hoches hocher ver 1.80 41.15 0.34 0.00 ind:pre:2s; +hochet hochet nom m s 0.88 2.23 0.43 1.01 +hochets hochet nom m p 0.88 2.23 0.45 1.22 +hocheurs hocheur nom m p 0.00 0.07 0.00 0.07 +hochez hocher ver 1.80 41.15 0.14 0.14 imp:pre:2p;ind:pre:2p; +hochions hocher ver 1.80 41.15 0.00 0.14 ind:imp:1p; +hochèrent hocher ver 1.80 41.15 0.00 0.68 ind:pas:3p; +hoché hocher ver m s 1.80 41.15 0.27 2.23 par:pas; +hockey hockey nom m s 6.38 0.14 6.38 0.14 +hockeyeur hockeyeur nom m s 0.50 0.14 0.43 0.07 +hockeyeurs hockeyeur nom m p 0.50 0.14 0.07 0.07 +hodgkinien hodgkinien adj m s 0.01 0.00 0.01 0.00 +hodja hodja nom m s 0.19 0.00 0.19 0.00 +hoirie hoirie nom f s 0.00 0.34 0.00 0.27 +hoiries hoirie nom f p 0.00 0.34 0.00 0.07 +hâlait hâler ver 0.01 1.08 0.00 0.07 ind:imp:3s; +hâlant hâler ver 0.01 1.08 0.00 0.07 par:pre; +hold_up hold_up nom m 7.78 3.38 7.59 3.38 +hold_up hold_up nom m 7.78 3.38 0.20 0.00 +holding holding nom s 0.73 0.27 0.67 0.14 +holdings holding nom p 0.73 0.27 0.06 0.14 +hâle hâle nom m s 0.15 3.04 0.15 2.84 +hâles hâle nom m p 0.15 3.04 0.00 0.20 +holistique holistique adj s 0.15 0.00 0.14 0.00 +holistiques holistique adj m p 0.15 0.00 0.01 0.00 +hollandais hollandais nom m p 2.90 3.11 2.90 2.97 +hollandaise hollandais adj f s 3.87 5.47 1.01 2.09 +hollandaises hollandais adj f p 3.87 5.47 0.28 0.34 +hollande hollande nom f s 0.02 0.07 0.02 0.07 +hollywoodien hollywoodien adj m s 0.00 1.28 0.00 0.34 +hollywoodienne hollywoodien adj f s 0.00 1.28 0.00 0.34 +hollywoodiennes hollywoodien adj f p 0.00 1.28 0.00 0.07 +hollywoodiens hollywoodien adj m p 0.00 1.28 0.00 0.54 +holà holà ono 4.87 1.62 4.87 1.62 +holocauste holocauste nom m s 1.61 1.15 1.61 0.95 +holocaustes holocauste nom m p 1.61 1.15 0.00 0.20 +hologramme hologramme nom m s 1.93 0.00 1.45 0.00 +hologrammes hologramme nom m p 1.93 0.00 0.48 0.00 +holographe holographe adj s 0.04 0.00 0.02 0.00 +holographes holographe adj p 0.04 0.00 0.02 0.00 +holographie holographie nom f s 0.06 0.07 0.06 0.07 +holographique holographique adj s 0.56 0.00 0.47 0.00 +holographiques holographique adj p 0.56 0.00 0.09 0.00 +holoèdres holoèdre adj f p 0.00 0.07 0.00 0.07 +holothuries holothurie nom f p 0.00 0.07 0.00 0.07 +holster holster nom m s 0.07 0.27 0.07 0.27 +hâlé hâlé adj m s 0.05 2.57 0.03 1.15 +hâlée hâlé adj f s 0.05 2.57 0.02 0.68 +hâlées hâlé adj f p 0.05 2.57 0.00 0.20 +hâlés hâlé adj m p 0.05 2.57 0.00 0.54 +hom hom ono 0.54 0.00 0.54 0.00 +homard homard nom m s 4.96 5.34 3.79 3.51 +homardiers homardier nom m p 0.01 0.00 0.01 0.00 +homards homard nom m p 4.96 5.34 1.18 1.82 +hombre hombre nom m s 1.60 0.61 1.60 0.61 +home_trainer home_trainer nom m s 0.01 0.00 0.01 0.00 +home home nom m s 4.00 2.16 3.75 1.96 +homeland homeland nom m s 0.14 0.00 0.14 0.00 +homes home nom m p 4.00 2.16 0.24 0.20 +homicide homicide nom m s 12.07 0.47 10.30 0.47 +homicides homicide nom m p 12.07 0.47 1.77 0.00 +hominien hominien nom m s 0.00 0.14 0.00 0.07 +hominiens hominien nom m p 0.00 0.14 0.00 0.07 +hominisation hominisation nom f s 0.00 0.07 0.00 0.07 +hommage hommage nom m s 16.45 16.69 11.11 13.31 +hommages hommage nom m p 16.45 16.69 5.34 3.38 +hommasse hommasse adj s 0.05 0.61 0.05 0.47 +hommasses hommasse adj f p 0.05 0.61 0.00 0.14 +homme_chien homme_chien nom m s 0.09 0.14 0.09 0.14 +homme_clé homme_clé nom m s 0.04 0.00 0.04 0.00 +homme_femme homme_femme nom m s 0.36 0.07 0.36 0.07 +homme_grenouille homme_grenouille nom m s 0.35 0.20 0.20 0.07 +homme_loup homme_loup nom m s 0.05 0.00 0.05 0.00 +homme_machine homme_machine nom m s 0.04 0.00 0.04 0.00 +homme_oiseau homme_oiseau nom m s 0.05 0.00 0.05 0.00 +homme_orchestre homme_orchestre nom m s 0.03 0.07 0.03 0.07 +homme_poisson homme_poisson nom m s 0.06 0.00 0.06 0.00 +homme_robot homme_robot nom m s 0.07 0.00 0.07 0.00 +homme_sandwich homme_sandwich nom m s 0.00 0.41 0.00 0.41 +homme_serpent homme_serpent nom m s 0.02 0.27 0.02 0.27 +homme homme nom m s 1123.55 1398.85 781.11 852.23 +homme_grenouille homme_grenouille nom m p 0.35 0.20 0.16 0.14 +hommes homme nom m p 1123.55 1398.85 342.44 546.62 +homo_erectus homo_erectus nom m 0.04 0.00 0.04 0.00 +homo_habilis homo_habilis nom m 0.00 0.07 0.00 0.07 +homo homo adj s 8.15 0.41 7.18 0.41 +homogène homogène adj s 0.44 2.77 0.40 2.43 +homogènes homogène adj p 0.44 2.77 0.04 0.34 +homogénéisateur homogénéisateur nom m s 0.14 0.00 0.14 0.00 +homogénéisation homogénéisation nom f s 0.03 0.07 0.03 0.07 +homogénéisé homogénéisé adj m s 0.05 0.07 0.02 0.00 +homogénéisée homogénéisé adj f s 0.05 0.07 0.03 0.07 +homogénéité homogénéité nom f s 0.04 0.34 0.04 0.34 +homologable homologable adj s 0.00 0.07 0.00 0.07 +homologation homologation nom f s 0.10 0.20 0.10 0.20 +homologue homologue nom s 0.30 0.27 0.20 0.07 +homologuer homologuer ver 0.14 0.41 0.12 0.20 inf; +homologues homologue nom p 0.30 0.27 0.11 0.20 +homologué homologué adj m s 0.01 0.27 0.01 0.14 +homologuée homologuer ver f s 0.14 0.41 0.01 0.00 par:pas; +homologués homologuer ver m p 0.14 0.41 0.01 0.07 par:pas; +homoncule homoncule nom m s 0.02 0.07 0.02 0.07 +homonyme homonyme nom s 0.25 0.47 0.21 0.47 +homonymes homonyme nom p 0.25 0.47 0.04 0.00 +homonymie homonymie nom f s 0.00 0.27 0.00 0.27 +homonymique homonymique adj s 0.00 0.07 0.00 0.07 +homophile homophile nom m s 0.01 0.14 0.01 0.14 +homophilie homophilie nom f s 0.00 0.07 0.00 0.07 +homophobe homophobe adj s 0.73 0.07 0.57 0.07 +homophobes homophobe adj f p 0.73 0.07 0.16 0.00 +homophone homophone nom m s 0.01 0.00 0.01 0.00 +homophonie homophonie nom f s 0.00 0.07 0.00 0.07 +homos homo nom p 4.51 0.95 2.31 0.20 +homosexualité homosexualité nom f s 4.81 2.57 4.81 2.57 +homosexuel homosexuel adj m s 5.81 3.11 3.77 1.76 +homosexuelle homosexuel adj f s 5.81 3.11 0.63 0.34 +homosexuelles homosexuel adj f p 5.81 3.11 0.66 0.34 +homosexuels homosexuel nom m p 3.62 4.32 2.51 2.43 +homozygote homozygote adj s 0.01 0.00 0.01 0.00 +homélie homélie nom f s 0.33 0.81 0.31 0.47 +homélies homélie nom f p 0.33 0.81 0.02 0.34 +homuncule homuncule nom m s 0.14 0.00 0.14 0.00 +homéopathe homéopathe adj m s 0.15 0.00 0.15 0.00 +homéopathie homéopathie nom f s 0.58 0.14 0.58 0.14 +homéopathique homéopathique adj s 0.17 0.14 0.17 0.07 +homéopathiques homéopathique adj f p 0.17 0.14 0.00 0.07 +homéostatique homéostatique adj s 0.01 0.00 0.01 0.00 +homéothermie homéothermie nom f s 0.01 0.00 0.01 0.00 +homérique homérique adj s 0.05 0.95 0.04 0.54 +homériques homérique adj f p 0.05 0.95 0.01 0.41 +hon hon ono 0.57 1.01 0.57 1.01 +hondurien hondurien adj m s 0.01 0.00 0.01 0.00 +hondurien hondurien nom m s 0.01 0.00 0.01 0.00 +hong_kong hong_kong nom s 0.03 0.00 0.03 0.00 +hongkongais hongkongais nom m 0.14 0.00 0.14 0.00 +hongre hongre adj m s 0.18 0.20 0.17 0.14 +hongres hongre adj m p 0.18 0.20 0.01 0.07 +hongrois hongrois nom m 1.73 2.36 1.73 2.36 +hongroise hongroise nom f s 1.08 0.47 0.97 0.47 +hongroises hongroise nom f p 1.08 0.47 0.10 0.00 +honneur honneur nom m s 130.69 97.36 126.78 87.64 +honneurs honneur nom m p 130.69 97.36 3.92 9.73 +honni honni adj m s 0.56 0.61 0.55 0.41 +honnie honnir ver f s 0.19 1.01 0.03 0.20 par:pas; +honnir honnir ver 0.19 1.01 0.00 0.07 inf; +honnis honnir ver m p 0.19 1.01 0.01 0.14 ind:pre:2s;par:pas; +honnissait honnir ver 0.19 1.01 0.00 0.20 ind:imp:3s; +honnissant honnir ver 0.19 1.01 0.00 0.07 par:pre; +honnissent honnir ver 0.19 1.01 0.00 0.07 ind:pre:3p; +honnit honnir ver 0.19 1.01 0.01 0.07 ind:pre:3s; +honnête honnête adj s 53.89 28.24 43.60 20.20 +honnêtement honnêtement adv 12.06 4.73 12.06 4.73 +honnêtes honnête adj p 53.89 28.24 10.29 8.04 +honnêteté honnêteté nom f s 7.20 6.42 7.20 6.42 +honora honorer ver 22.65 13.24 0.03 0.27 ind:pas:3s; +honorabilité honorabilité nom f s 0.20 1.15 0.20 1.15 +honorable honorable adj s 11.44 10.81 9.31 8.24 +honorablement honorablement adv 0.41 1.55 0.41 1.55 +honorables honorable adj p 11.44 10.81 2.13 2.57 +honorai honorer ver 22.65 13.24 0.00 0.07 ind:pas:1s; +honoraient honorer ver 22.65 13.24 0.01 0.47 ind:imp:3p; +honoraire honoraire adj s 0.90 0.81 0.77 0.68 +honoraires honoraire nom m p 3.06 1.49 3.06 1.49 +honorais honorer ver 22.65 13.24 0.01 0.07 ind:imp:1s; +honorait honorer ver 22.65 13.24 0.08 1.49 ind:imp:3s; +honorant honorer ver 22.65 13.24 0.03 0.20 par:pre; +honore honorer ver 22.65 13.24 4.41 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +honorent honorer ver 22.65 13.24 0.80 0.54 ind:pre:3p; +honorer honorer ver 22.65 13.24 6.13 5.07 inf; +honorera honorer ver 22.65 13.24 0.14 0.00 ind:fut:3s; +honorerai honorer ver 22.65 13.24 0.34 0.00 ind:fut:1s; +honorerait honorer ver 22.65 13.24 0.05 0.14 cnd:pre:3s; +honoreras honorer ver 22.65 13.24 0.23 0.00 ind:fut:2s; +honorerez honorer ver 22.65 13.24 0.23 0.00 ind:fut:2p; +honorerons honorer ver 22.65 13.24 0.15 0.00 ind:fut:1p; +honoreront honorer ver 22.65 13.24 0.03 0.00 ind:fut:3p; +honores honorer ver 22.65 13.24 0.65 0.00 ind:pre:2s; +honorez honorer ver 22.65 13.24 1.54 0.07 imp:pre:2p;ind:pre:2p; +honoriez honorer ver 22.65 13.24 0.02 0.07 ind:imp:2p; +honorifique honorifique adj s 0.65 0.68 0.61 0.54 +honorifiques honorifique adj p 0.65 0.68 0.03 0.14 +honoris_causa honoris_causa adv 0.16 0.27 0.16 0.27 +honorons honorer ver 22.65 13.24 0.52 0.00 imp:pre:1p;ind:pre:1p; +honorât honorer ver 22.65 13.24 0.00 0.07 sub:imp:3s; +honorèrent honorer ver 22.65 13.24 0.00 0.07 ind:pas:3p; +honoré honorer ver m s 22.65 13.24 5.09 1.89 par:pas; +honorée honorer ver f s 22.65 13.24 0.92 0.54 par:pas; +honorées honorer ver f p 22.65 13.24 0.13 0.27 par:pas; +honorés honorer ver m p 22.65 13.24 1.10 0.34 par:pas; +honte honte nom f s 103.40 83.45 103.26 82.64 +hontes honte nom f p 103.40 83.45 0.14 0.81 +honteuse honteux adj f s 9.52 22.30 1.91 6.89 +honteusement honteusement adv 0.58 2.43 0.58 2.43 +honteuses honteux adj f p 9.52 22.30 0.45 2.36 +honteux honteux adj m 9.52 22.30 7.17 13.04 +hooligan hooligan nom m s 0.72 0.14 0.10 0.07 +hooligans hooligan nom m p 0.72 0.14 0.62 0.07 +hop hop ono 26.52 14.19 26.52 14.19 +hopak hopak nom m s 0.01 0.00 0.01 0.00 +hopi hopi adj f s 0.01 0.14 0.01 0.07 +hopis hopi adj m p 0.01 0.14 0.00 0.07 +hoplite hoplite nom m s 0.00 0.07 0.00 0.07 +hoquet hoquet nom m s 1.73 7.91 1.57 4.32 +hoqueta hoqueter ver 0.03 5.54 0.00 1.55 ind:pas:3s; +hoquetai hoqueter ver 0.03 5.54 0.00 0.14 ind:pas:1s; +hoquetais hoqueter ver 0.03 5.54 0.00 0.14 ind:imp:1s; +hoquetait hoqueter ver 0.03 5.54 0.00 1.15 ind:imp:3s; +hoquetant hoqueter ver 0.03 5.54 0.01 1.35 par:pre; +hoqueter hoqueter ver 0.03 5.54 0.01 0.41 inf; +hoquetons hoqueter ver 0.03 5.54 0.00 0.07 ind:pre:1p; +hoquets hoquet nom m p 1.73 7.91 0.16 3.58 +hoquette hoqueter ver 0.03 5.54 0.01 0.47 ind:pre:3s;sub:pre:3s; +hoqueté hoqueter ver m s 0.03 5.54 0.00 0.27 par:pas; +horaire horaire nom m s 8.94 7.91 2.64 3.58 +horaires horaire nom m p 8.94 7.91 6.30 4.32 +horde horde nom f s 2.95 7.03 2.33 3.78 +hordes horde nom f p 2.95 7.03 0.62 3.24 +horion horion nom m s 0.00 0.88 0.00 0.14 +horions horion nom m p 0.00 0.88 0.00 0.74 +horizon horizon nom m s 9.04 66.15 7.80 61.08 +horizons horizon nom m p 9.04 66.15 1.24 5.07 +horizontal horizontal adj m s 1.47 10.47 0.88 2.84 +horizontale horizontale nom f s 1.37 3.04 0.87 2.77 +horizontalement horizontalement adv 0.15 1.96 0.15 1.96 +horizontales horizontale nom f p 1.37 3.04 0.50 0.27 +horizontalité horizontalité nom f s 0.00 0.20 0.00 0.20 +horizontaux horizontal adj m p 1.47 10.47 0.03 1.69 +horloge horloge nom f s 10.48 16.49 9.37 13.99 +horloger horloger nom m s 0.39 5.41 0.34 2.23 +horlogerie horlogerie nom f s 0.29 1.08 0.29 1.08 +horlogers horloger nom m p 0.39 5.41 0.05 0.54 +horloges horloge nom f p 10.48 16.49 1.11 2.50 +horlogère horloger nom f s 0.39 5.41 0.00 2.64 +hormis hormis pre 3.23 5.74 3.23 5.74 +hormonal hormonal adj m s 0.77 0.34 0.51 0.14 +hormonale hormonal adj f s 0.77 0.34 0.19 0.20 +hormonales hormonal adj f p 0.77 0.34 0.04 0.00 +hormonaux hormonal adj m p 0.77 0.34 0.03 0.00 +hormone hormone nom f s 4.69 0.68 0.57 0.20 +hormones hormone nom f p 4.69 0.68 4.12 0.47 +hormonés hormoner ver m p 0.00 0.07 0.00 0.07 par:pas; +hornblende hornblende nom f s 0.01 0.00 0.01 0.00 +horoscope horoscope nom m s 2.90 1.96 2.47 1.28 +horoscopes horoscope nom m p 2.90 1.96 0.43 0.68 +horreur horreur nom f s 46.19 69.46 39.79 61.35 +horreurs horreur nom f p 46.19 69.46 6.40 8.11 +horrible horrible adj s 67.22 25.47 57.16 20.74 +horriblement horriblement adv 3.23 4.53 3.23 4.53 +horribles horrible adj p 67.22 25.47 10.07 4.73 +horrifia horrifier ver 1.37 3.04 0.00 0.14 ind:pas:3s; +horrifiaient horrifier ver 1.37 3.04 0.00 0.07 ind:imp:3p; +horrifiait horrifier ver 1.37 3.04 0.02 0.20 ind:imp:3s; +horrifiant horrifiant adj m s 0.24 1.49 0.19 1.08 +horrifiante horrifiant adj f s 0.24 1.49 0.04 0.07 +horrifiants horrifiant adj m p 0.24 1.49 0.01 0.34 +horrifie horrifier ver 1.37 3.04 0.14 0.14 ind:pre:1s;ind:pre:3s; +horrifier horrifier ver 1.37 3.04 0.01 0.27 inf; +horrifique horrifique adj f s 0.04 0.14 0.04 0.14 +horrifièrent horrifier ver 1.37 3.04 0.00 0.07 ind:pas:3p; +horrifié horrifier ver m s 1.37 3.04 0.61 1.35 par:pas; +horrifiée horrifier ver f s 1.37 3.04 0.42 0.54 par:pas; +horrifiées horrifier ver f p 1.37 3.04 0.02 0.07 par:pas; +horrifiés horrifié adj m p 0.28 2.16 0.21 0.34 +horripilaient horripiler ver 0.24 1.49 0.00 0.07 ind:imp:3p; +horripilais horripiler ver 0.24 1.49 0.00 0.07 ind:imp:1s; +horripilait horripiler ver 0.24 1.49 0.00 0.34 ind:imp:3s; +horripilant horripilant adj m s 0.28 0.68 0.19 0.20 +horripilante horripilant adj f s 0.28 0.68 0.07 0.20 +horripilantes horripilant adj f p 0.28 0.68 0.03 0.07 +horripilants horripilant adj m p 0.28 0.68 0.00 0.20 +horripilation horripilation nom f s 0.01 0.20 0.01 0.14 +horripilations horripilation nom f p 0.01 0.20 0.00 0.07 +horripile horripiler ver 0.24 1.49 0.21 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +horripilent horripiler ver 0.24 1.49 0.01 0.07 ind:pre:3p; +horripiler horripiler ver 0.24 1.49 0.01 0.07 inf; +horripilé horripiler ver m s 0.24 1.49 0.00 0.14 par:pas; +horripilée horripiler ver f s 0.24 1.49 0.01 0.20 par:pas; +horripilés horripiler ver m p 0.24 1.49 0.00 0.07 par:pas; +hors_bord hors_bord nom m p 0.45 0.61 0.45 0.61 +hors_cote hors_cote adj 0.01 0.00 0.01 0.00 +hors_d_oeuvre hors_d_oeuvre nom m 0.56 1.96 0.56 1.96 +hors_jeu hors_jeu adj 1.13 0.20 1.13 0.20 +hors_la_loi hors_la_loi nom m p 3.21 1.49 3.21 1.49 +hors_piste hors_piste nom m p 0.45 0.00 0.45 0.00 +hors_série hors_série adj f s 0.01 0.20 0.01 0.20 +hors hors pre 71.94 92.43 71.94 92.43 +horse_guard horse_guard nom m s 0.02 0.14 0.00 0.07 +horse_guard horse_guard nom m p 0.02 0.14 0.02 0.07 +hortensia hortensia nom m s 0.66 2.03 0.30 0.34 +hortensias hortensia nom m p 0.66 2.03 0.36 1.69 +horticoles horticole adj m p 0.00 0.07 0.00 0.07 +horticulteur horticulteur nom m s 0.07 0.54 0.06 0.34 +horticulteurs horticulteur nom m p 0.07 0.54 0.01 0.20 +horticultrice horticultrice nom f s 0.01 0.00 0.01 0.00 +horticulture horticulture nom f s 0.23 0.27 0.23 0.27 +hortillonnage hortillonnage nom m s 0.00 0.07 0.00 0.07 +hosanna hosanna nom m s 0.54 0.54 0.23 0.41 +hosannah hosannah nom m s 0.00 0.27 0.00 0.27 +hosannas hosanna nom m p 0.54 0.54 0.30 0.14 +hospice hospice nom m s 3.12 6.96 3.06 6.28 +hospices hospice nom m p 3.12 6.96 0.05 0.68 +hospitalier hospitalier adj m s 1.87 2.91 1.38 1.22 +hospitaliers hospitalier adj m p 1.87 2.91 0.26 0.74 +hospitalisation hospitalisation nom f s 0.85 0.27 0.71 0.27 +hospitalisations hospitalisation nom f p 0.85 0.27 0.14 0.00 +hospitaliser hospitaliser ver 5.19 2.36 1.46 0.54 inf; +hospitaliserons hospitaliser ver 5.19 2.36 0.01 0.00 ind:fut:1p; +hospitalisé hospitaliser ver m s 5.19 2.36 1.95 1.01 par:pas; +hospitalisée hospitaliser ver f s 5.19 2.36 1.42 0.61 par:pas; +hospitalisées hospitaliser ver f p 5.19 2.36 0.03 0.00 par:pas; +hospitalisés hospitaliser ver m p 5.19 2.36 0.32 0.20 par:pas; +hospitalière hospitalier adj f s 1.87 2.91 0.21 0.61 +hospitalières hospitalier adj f p 1.87 2.91 0.02 0.34 +hospitalité hospitalité nom f s 6.72 3.85 6.72 3.85 +hospodar hospodar nom m s 0.00 0.54 0.00 0.27 +hospodars hospodar nom m p 0.00 0.54 0.00 0.27 +hostau hostau nom m s 0.00 0.20 0.00 0.20 +hostellerie hostellerie nom f s 0.10 1.22 0.10 1.08 +hostelleries hostellerie nom f p 0.10 1.22 0.00 0.14 +hostie hostie nom f s 2.31 3.85 1.74 3.45 +hosties hostie nom f p 2.31 3.85 0.57 0.41 +hostile hostile adj s 8.56 21.15 6.32 15.47 +hostilement hostilement adv 0.00 0.20 0.00 0.20 +hostiles hostile adj p 8.56 21.15 2.24 5.68 +hostilité hostilité nom f s 3.52 15.81 2.70 11.89 +hostilités hostilité nom f p 3.52 15.81 0.82 3.92 +hosto hosto nom m s 5.74 5.81 5.69 5.41 +hostos hosto nom m p 5.74 5.81 0.05 0.41 +hot_dog hot_dog nom m s 6.09 0.27 3.12 0.07 +hot_dog hot_dog nom m p 6.09 0.27 2.98 0.20 +hot_dog hot_dog nom m s 2.69 0.14 1.31 0.14 +hot_dog hot_dog nom m p 2.69 0.14 1.38 0.00 +hot hot adj 1.67 0.20 1.67 0.20 +hâta hâter ver 5.63 24.05 0.10 4.05 ind:pas:3s; +hâtai hâter ver 5.63 24.05 0.01 1.28 ind:pas:1s; +hâtaient hâter ver 5.63 24.05 0.02 1.69 ind:imp:3p; +hâtais hâter ver 5.63 24.05 0.01 0.47 ind:imp:1s; +hâtait hâter ver 5.63 24.05 0.14 2.09 ind:imp:3s; +hâtant hâter ver 5.63 24.05 0.01 2.64 par:pre; +hâte hâte nom f s 18.83 45.20 18.83 44.80 +hâtent hâter ver 5.63 24.05 0.32 0.34 ind:pre:3p; +hâter hâter ver 5.63 24.05 1.32 5.54 inf; +hâtera hâter ver 5.63 24.05 0.01 0.20 ind:fut:3s; +hâteraient hâter ver 5.63 24.05 0.00 0.07 cnd:pre:3p; +hâterait hâter ver 5.63 24.05 0.00 0.27 cnd:pre:3s; +hâtes hâter ver 5.63 24.05 0.01 0.00 ind:pre:2s; +hâtez hâter ver 5.63 24.05 0.93 0.14 imp:pre:2p;ind:pre:2p; +hâtif hâtif adj m s 2.43 5.61 0.65 1.76 +hâtifs hâtif adj m p 2.43 5.61 0.02 1.15 +hâtions hâter ver 5.63 24.05 0.00 0.14 ind:imp:1p; +hâtive hâtif adj f s 2.43 5.61 0.61 1.76 +hâtivement hâtivement adv 0.12 5.54 0.12 5.54 +hâtives hâtif adj f p 2.43 5.61 1.15 0.95 +hotline hotline nom f s 0.52 0.00 0.52 0.00 +hâtâmes hâter ver 5.63 24.05 0.00 0.14 ind:pas:1p; +hâtons hâter ver 5.63 24.05 0.37 0.14 imp:pre:1p;ind:pre:1p; +hâtât hâter ver 5.63 24.05 0.00 0.07 sub:imp:3s; +hotte hotte nom f s 1.23 2.57 1.00 2.43 +hotter hotter ver 0.01 0.00 0.01 0.00 inf; +hottes hotte nom f p 1.23 2.57 0.24 0.14 +hâtèrent hâter ver 5.63 24.05 0.00 0.61 ind:pas:3p; +hottée hottée nom f s 0.00 0.07 0.00 0.07 +hâté hâter ver m s 5.63 24.05 0.26 1.01 par:pas; +hotu hotu nom m s 0.00 0.81 0.00 0.41 +hâtée hâter ver f s 5.63 24.05 0.01 0.20 par:pas; +hâtés hâter ver m p 5.63 24.05 0.00 0.14 par:pas; +hotus hotu nom m p 0.00 0.81 0.00 0.41 +hou hou ono 8.65 5.27 8.65 5.27 +houa houer ver 0.07 0.00 0.07 0.00 ind:pas:3s; +houari houari nom m s 0.00 0.07 0.00 0.07 +houblon houblon nom m s 0.31 0.61 0.31 0.54 +houblonnés houblonner ver m p 0.00 0.07 0.00 0.07 par:pas; +houblons houblon nom m p 0.31 0.61 0.00 0.07 +houe houe nom f s 0.37 0.34 0.37 0.34 +houhou houhou ono 0.46 0.27 0.46 0.27 +houille houille nom f s 0.00 0.88 0.00 0.81 +houiller houiller adj m s 0.01 0.20 0.00 0.14 +houilles houille nom f p 0.00 0.88 0.00 0.07 +houillère houiller nom f s 0.05 0.00 0.05 0.00 +houillères houillère nom f p 0.00 0.41 0.00 0.41 +houle houle nom f s 0.46 10.07 0.44 8.85 +houler houler ver 0.00 0.07 0.00 0.07 inf; +houles houle nom f p 0.46 10.07 0.02 1.22 +houlette houlette nom f s 0.82 0.81 0.82 0.81 +houleuse houleux adj f s 0.79 2.16 0.66 1.35 +houleuses houleux adj f p 0.79 2.16 0.01 0.27 +houleux houleux adj m 0.79 2.16 0.11 0.54 +houligan houligan nom m s 0.00 0.07 0.00 0.07 +houliganisme houliganisme nom m s 0.00 0.20 0.00 0.20 +houlà houlà ono 0.13 0.61 0.13 0.61 +houlque houlque nom f s 0.00 0.07 0.00 0.07 +houp houp ono 0.07 0.14 0.07 0.14 +houppe houppe nom f s 0.02 0.68 0.01 0.54 +houppelande houppelande nom f s 0.03 2.09 0.03 1.96 +houppelandes houppelande nom f p 0.03 2.09 0.00 0.14 +houppes houppe nom f p 0.02 0.68 0.01 0.14 +houppette houppette nom f s 0.02 2.43 0.02 2.09 +houppettes houppette nom f p 0.02 2.43 0.00 0.34 +hourdis hourdis nom m 0.00 0.07 0.00 0.07 +hourds hourd nom m p 0.00 0.20 0.00 0.20 +houri houri nom f s 0.10 0.61 0.10 0.41 +houris houri nom f p 0.10 0.61 0.00 0.20 +hourra hourra ono 5.18 0.81 5.18 0.81 +hourrah hourrah nom m s 0.77 0.41 0.77 0.34 +hourrahs hourrah nom m p 0.77 0.41 0.00 0.07 +hourras hourra nom_sup m p 2.38 1.42 0.27 0.68 +hourvari hourvari nom m s 0.27 0.54 0.27 0.41 +hourvaris hourvari nom m p 0.27 0.54 0.00 0.14 +housards housard nom m p 0.00 0.14 0.00 0.14 +house_boat house_boat nom m s 0.04 0.07 0.02 0.00 +house_boat house_boat nom m p 0.04 0.07 0.01 0.07 +house_music house_music nom f s 0.01 0.00 0.01 0.00 +house house nom f s 4.74 0.27 4.74 0.27 +houseau houseau nom m s 0.10 1.08 0.00 0.20 +houseaux houseau nom m p 0.10 1.08 0.10 0.88 +houspilla houspiller ver 0.41 2.77 0.00 0.07 ind:pas:3s; +houspillaient houspiller ver 0.41 2.77 0.00 0.14 ind:imp:3p; +houspillait houspiller ver 0.41 2.77 0.01 0.47 ind:imp:3s; +houspillant houspiller ver 0.41 2.77 0.00 0.34 par:pre; +houspille houspiller ver 0.41 2.77 0.16 0.27 ind:pre:1s;ind:pre:3s; +houspillent houspiller ver 0.41 2.77 0.00 0.07 ind:pre:3p; +houspiller houspiller ver 0.41 2.77 0.22 0.81 inf; +houspillâmes houspiller ver 0.41 2.77 0.00 0.07 ind:pas:1p; +houspillèrent houspiller ver 0.41 2.77 0.00 0.07 ind:pas:3p; +houspillé houspiller ver m s 0.41 2.77 0.02 0.14 par:pas; +houspillée houspiller ver f s 0.41 2.77 0.00 0.20 par:pas; +houspillées houspiller ver f p 0.41 2.77 0.00 0.07 par:pas; +houspillés houspiller ver m p 0.41 2.77 0.00 0.07 par:pas; +housse housse nom f s 0.83 5.68 0.35 3.11 +housses housse nom f p 0.83 5.68 0.49 2.57 +houssés housser ver m p 0.00 0.07 0.00 0.07 par:pas; +houx houx nom m 0.07 1.28 0.07 1.28 +hâve hâve adj s 0.01 1.28 0.01 0.61 +hovercraft hovercraft nom m s 0.01 0.00 0.01 0.00 +hâves hâve adj p 0.01 1.28 0.00 0.68 +hoyau hoyau nom m s 0.00 0.14 0.00 0.14 +hèle héler ver 0.35 6.49 0.05 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hère hère nom m s 0.17 0.74 0.04 0.41 +hères hère nom m p 0.17 0.74 0.13 0.34 +hé hé ono 288.29 30.00 288.29 30.00 +huître huître nom f s 4.00 7.64 1.41 2.70 +huîtres huître nom f p 4.00 7.64 2.59 4.93 +huîtrier huîtrier nom m s 0.01 0.07 0.01 0.00 +huîtriers huîtrier nom m p 0.01 0.07 0.00 0.07 +huîtrière huîtrière nom f s 0.00 0.07 0.00 0.07 +hua huer ver 1.24 2.30 0.09 0.00 ind:pas:3s; +huaient huer ver 1.24 2.30 0.01 0.00 ind:imp:3p; +huait huer ver 1.24 2.30 0.02 0.07 ind:imp:3s; +huant huer ver 1.24 2.30 0.03 0.07 par:pre; +huard huard nom m s 0.59 0.27 0.52 0.07 +huards huard nom m p 0.59 0.27 0.08 0.20 +huart huart nom m s 0.00 0.27 0.00 0.27 +héberge héberger ver 5.77 6.49 0.87 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hébergea héberger ver 5.77 6.49 0.00 0.20 ind:pas:3s; +hébergeai héberger ver 5.77 6.49 0.00 0.07 ind:pas:1s; +hébergeaient héberger ver 5.77 6.49 0.11 0.27 ind:imp:3p; +hébergeais héberger ver 5.77 6.49 0.01 0.14 ind:imp:1s;ind:imp:2s; +hébergeait héberger ver 5.77 6.49 0.02 0.41 ind:imp:3s; +hébergeant héberger ver 5.77 6.49 0.12 0.20 par:pre; +hébergement hébergement nom m s 0.68 0.68 0.68 0.68 +hébergent héberger ver 5.77 6.49 0.04 0.07 ind:pre:3p; +hébergeons héberger ver 5.77 6.49 0.12 0.00 imp:pre:1p;ind:pre:1p; +héberger héberger ver 5.77 6.49 2.80 2.70 inf; +hébergera héberger ver 5.77 6.49 0.19 0.07 ind:fut:3s; +hébergerait héberger ver 5.77 6.49 0.00 0.14 cnd:pre:3s; +hébergeras héberger ver 5.77 6.49 0.00 0.07 ind:fut:2s; +hébergez héberger ver 5.77 6.49 0.19 0.00 imp:pre:2p;ind:pre:2p; +hébergiez héberger ver 5.77 6.49 0.02 0.00 ind:imp:2p; +hébergions héberger ver 5.77 6.49 0.00 0.07 ind:imp:1p; +hébergé héberger ver m s 5.77 6.49 0.78 1.15 par:pas; +hébergée héberger ver f s 5.77 6.49 0.24 0.27 par:pas; +hébergées héberger ver f p 5.77 6.49 0.01 0.07 par:pas; +hébergés héberger ver m p 5.77 6.49 0.24 0.34 par:pas; +hébertisme hébertisme nom m s 0.00 0.27 0.00 0.27 +hublot hublot nom m s 2.61 7.77 1.77 4.66 +hublots hublot nom m p 2.61 7.77 0.84 3.11 +hébraïque hébraïque adj s 0.11 1.08 0.09 0.88 +hébraïquement hébraïquement adv 0.00 0.07 0.00 0.07 +hébraïques hébraïque adj p 0.11 1.08 0.02 0.20 +hébraïsant hébraïsant adj m s 0.00 0.07 0.00 0.07 +hébreu hébreu nom m s 1.67 2.97 1.67 2.97 +hébreux hébreux nom m p 0.40 0.07 0.40 0.07 +hébètent hébéter ver 0.35 2.03 0.00 0.07 ind:pre:3p; +hébéphrénique hébéphrénique adj f s 0.02 0.00 0.02 0.00 +hébéta hébéter ver 0.35 2.03 0.00 0.07 ind:pas:3s; +hébétait hébéter ver 0.35 2.03 0.00 0.07 ind:imp:3s; +hébétement hébétement nom m s 0.00 0.07 0.00 0.07 +hébété hébété adj m s 0.54 4.73 0.29 2.84 +hébétude hébétude nom f s 0.14 4.05 0.14 4.05 +hébétée hébété adj f s 0.54 4.73 0.23 0.95 +hébétées hébété adj f p 0.54 4.73 0.00 0.20 +hébétés hébéter ver m p 0.35 2.03 0.03 0.34 par:pas; +hécatombe hécatombe nom f s 0.20 1.69 0.20 1.28 +hécatombes hécatombe nom f p 0.20 1.69 0.00 0.41 +huche huche nom f s 0.19 0.47 0.19 0.34 +huches huche nom f p 0.19 0.47 0.00 0.14 +huchet huchet nom m s 0.00 0.27 0.00 0.27 +hédonisme hédonisme nom m s 0.05 0.20 0.05 0.20 +hédoniste hédoniste adj s 0.21 0.14 0.21 0.07 +hédonistes hédoniste adj m p 0.21 0.14 0.00 0.07 +hue hue ono 2.63 1.08 2.63 1.08 +huer huer ver 1.24 2.30 0.25 0.27 inf; +huerta huerta nom f s 0.53 0.95 0.53 0.95 +huez huer ver 1.24 2.30 0.02 0.14 imp:pre:2p;ind:pre:2p; +hugh hugh ono 1.38 0.27 1.38 0.27 +hégire hégire nom f s 0.38 0.27 0.38 0.27 +hugolien hugolien adj m s 0.00 0.14 0.00 0.07 +hugoliens hugolien adj m p 0.00 0.14 0.00 0.07 +huguenot huguenot nom m s 0.23 0.47 0.11 0.20 +huguenote huguenote nom f s 0.10 0.00 0.10 0.00 +huguenots huguenot nom m p 0.23 0.47 0.12 0.20 +hégélianisme hégélianisme nom m s 0.00 0.07 0.00 0.07 +hégélien hégélien adj m s 0.16 0.14 0.00 0.07 +hégélienne hégélien adj f s 0.16 0.14 0.16 0.00 +hégéliens hégélien adj m p 0.16 0.14 0.00 0.07 +hégémonie hégémonie nom f s 0.04 1.42 0.04 1.42 +hui hui nom s 2.36 0.47 2.36 0.47 +huilai huiler ver 0.59 1.76 0.00 0.07 ind:pas:1s; +huilait huiler ver 0.59 1.76 0.10 0.07 ind:imp:3s; +huile huile nom f s 22.68 38.18 20.23 36.22 +huilent huiler ver 0.59 1.76 0.00 0.07 ind:pre:3p; +huiler huiler ver 0.59 1.76 0.12 0.41 inf; +huilerai huiler ver 0.59 1.76 0.02 0.00 ind:fut:1s; +huiles huile nom f p 22.68 38.18 2.46 1.96 +huileuse huileux adj f s 0.37 4.26 0.09 1.89 +huileuses huileux adj f p 0.37 4.26 0.01 0.54 +huileux huileux adj m 0.37 4.26 0.27 1.82 +huilez huiler ver 0.59 1.76 0.05 0.00 imp:pre:2p; +huilier huilier nom m s 0.10 0.07 0.10 0.07 +huiliers huilier adj m p 0.01 0.07 0.00 0.07 +huilé huilé adj m s 0.57 3.24 0.21 1.15 +huilée huilé adj f s 0.57 3.24 0.21 1.08 +huilées huiler ver f p 0.59 1.76 0.05 0.07 par:pas; +huilés huilé adj m p 0.57 3.24 0.15 0.81 +huipil huipil nom m s 0.00 0.54 0.00 0.47 +huipils huipil nom m p 0.00 0.54 0.00 0.07 +huis huis nom m 0.48 1.82 0.48 1.82 +huisserie huisserie nom f s 0.04 0.34 0.04 0.14 +huisseries huisserie nom f p 0.04 0.34 0.00 0.20 +huissier huissier nom m s 2.84 5.95 2.06 3.72 +huissiers huissier nom m p 2.84 5.95 0.78 2.23 +huit_reflets huit_reflets nom m 0.00 0.27 0.00 0.27 +huit huit adj_num 58.47 102.50 58.47 102.50 +huitaine huitaine nom f s 0.20 1.01 0.20 1.01 +huitième huitième nom s 1.29 2.09 0.88 1.96 +huitièmes huitième nom p 1.29 2.09 0.41 0.14 +héla héler ver 0.35 6.49 0.01 1.69 ind:pas:3s; +hélai héler ver 0.35 6.49 0.00 0.14 ind:pas:1s; +hélaient héler ver 0.35 6.49 0.00 0.47 ind:imp:3p; +hélait héler ver 0.35 6.49 0.01 0.14 ind:imp:3s; +hélant héler ver 0.35 6.49 0.00 0.47 par:pre; +hélas hélas ono 24.21 34.73 24.21 34.73 +héler héler ver 0.35 6.49 0.11 1.08 inf; +hélez héler ver 0.35 6.49 0.01 0.00 imp:pre:2p; +hélianthes hélianthe nom m p 0.00 0.34 0.00 0.34 +hélice hélice nom f s 2.83 3.85 1.90 2.36 +hélices hélice nom f p 2.83 3.85 0.93 1.49 +hélico hélico adv 0.01 0.00 0.01 0.00 +hélicoïdal hélicoïdal adj m s 0.01 0.07 0.00 0.07 +hélicoïdale hélicoïdal adj f s 0.01 0.07 0.01 0.00 +hélicoptère hélicoptère nom m s 13.96 3.72 10.98 2.43 +hélicoptères hélicoptère nom m p 13.96 3.72 2.98 1.28 +hélio hélio nom f s 0.00 0.07 0.00 0.07 +héliographe héliographe nom m s 0.01 0.00 0.01 0.00 +héliogravure héliogravure nom f s 0.00 0.07 0.00 0.07 +héliophanie héliophanie nom f s 0.00 0.07 0.00 0.07 +héliotrope héliotrope nom m s 0.07 0.41 0.04 0.27 +héliotropes héliotrope nom m p 0.07 0.41 0.03 0.14 +héliport héliport nom m s 0.12 0.14 0.12 0.14 +héliporter héliporter ver 0.08 0.07 0.01 0.07 inf; +héliporté héliporter ver m s 0.08 0.07 0.05 0.00 par:pas; +héliportée héliporté adj f s 0.06 0.14 0.05 0.00 +héliportés héliporter ver m p 0.08 0.07 0.01 0.00 par:pas; +hélitreuiller hélitreuiller ver 0.01 0.00 0.01 0.00 inf; +hélium hélium nom m s 0.99 0.47 0.99 0.47 +hélix hélix nom m 0.07 0.07 0.07 0.07 +hulotte hulotte nom f s 0.10 0.61 0.10 0.34 +hulottes hulotte nom f p 0.10 0.61 0.00 0.27 +hélèrent héler ver 0.35 6.49 0.00 0.20 ind:pas:3p; +hélé héler ver m s 0.35 6.49 0.11 0.68 par:pas; +hulula hululer ver 0.18 1.35 0.00 0.20 ind:pas:3s; +hululaient hululer ver 0.18 1.35 0.00 0.14 ind:imp:3p; +hululait hululer ver 0.18 1.35 0.00 0.34 ind:imp:3s; +hululant hululer ver 0.18 1.35 0.00 0.27 par:pre; +hulule hululer ver 0.18 1.35 0.14 0.14 ind:pre:1s;ind:pre:3s; +hululement hululement nom m s 0.27 1.82 0.00 1.22 +hululements hululement nom m p 0.27 1.82 0.27 0.61 +hululent hululer ver 0.18 1.35 0.02 0.07 ind:pre:3p; +hululer hululer ver 0.18 1.35 0.01 0.14 inf; +hululée hululer ver f s 0.18 1.35 0.00 0.07 par:pas; +hélés héler ver m p 0.35 6.49 0.00 0.07 par:pas; +hum hum ono 33.59 5.68 33.59 5.68 +huma humer ver 0.73 9.53 0.03 1.49 ind:pas:3s; +humai humer ver 0.73 9.53 0.00 0.07 ind:pas:1s; +humaient humer ver 0.73 9.53 0.00 0.34 ind:imp:3p; +humain_robot humain_robot adj m s 0.03 0.00 0.03 0.00 +humain humain adj m s 107.10 111.55 50.53 35.81 +humaine humain adj f s 107.10 111.55 32.37 47.43 +humainement humainement adv 0.86 0.95 0.86 0.95 +humaines humain adj f p 107.10 111.55 6.36 14.93 +humains humain nom m p 30.00 18.31 18.15 10.00 +humais humer ver 0.73 9.53 0.01 0.07 ind:imp:1s; +humait humer ver 0.73 9.53 0.00 1.28 ind:imp:3s; +humanisait humaniser ver 0.27 1.35 0.00 0.27 ind:imp:3s; +humanisant humaniser ver 0.27 1.35 0.01 0.07 par:pre; +humanisation humanisation nom f s 0.00 0.14 0.00 0.14 +humanise humaniser ver 0.27 1.35 0.03 0.07 imp:pre:2s;ind:pre:3s; +humanisent humaniser ver 0.27 1.35 0.00 0.07 ind:pre:3p; +humaniser humaniser ver 0.27 1.35 0.09 0.41 inf; +humanisme humanisme nom m s 0.41 2.30 0.41 2.30 +humaniste humaniste adj s 0.72 0.68 0.72 0.54 +humanistes humaniste nom p 0.45 1.08 0.01 0.47 +humanisé humaniser ver m s 0.27 1.35 0.00 0.20 par:pas; +humanisée humaniser ver f s 0.27 1.35 0.14 0.07 par:pas; +humanisées humaniser ver f p 0.27 1.35 0.00 0.14 par:pas; +humanisés humaniser ver m p 0.27 1.35 0.01 0.07 par:pas; +humanitaire humanitaire adj s 2.02 1.55 1.52 1.22 +humanitaires humanitaire adj p 2.02 1.55 0.50 0.34 +humanitarisme humanitarisme nom m s 0.11 0.07 0.11 0.07 +humanité humanité nom f s 23.31 24.32 23.15 23.85 +humanités humanité nom f p 23.31 24.32 0.16 0.47 +humano humano adv 0.16 0.00 0.16 0.00 +humanoïde humanoïde adj s 0.46 0.00 0.42 0.00 +humanoïdes humanoïde nom p 0.21 0.41 0.11 0.27 +humant humer ver 0.73 9.53 0.11 1.69 par:pre; +hématie hématie nom f s 0.12 0.07 0.00 0.07 +hématies hématie nom f p 0.12 0.07 0.12 0.00 +hématine hématine nom f s 0.05 0.00 0.05 0.00 +hématite hématite nom f s 0.00 0.07 0.00 0.07 +hématocrite hématocrite nom m s 0.60 0.00 0.60 0.00 +hématocèle hématocèle nom f s 0.00 0.07 0.00 0.07 +hématologie hématologie nom f s 0.10 0.07 0.10 0.07 +hématologique hématologique adj f s 0.01 0.00 0.01 0.00 +hématologue hématologue nom s 0.14 0.07 0.14 0.07 +hématome hématome nom m s 1.53 0.61 1.08 0.41 +hématomes hématome nom m p 1.53 0.61 0.45 0.20 +hématopoïèse hématopoïèse nom f s 0.00 0.07 0.00 0.07 +hématose hématose nom f s 0.00 0.07 0.00 0.07 +hématurie hématurie nom f s 0.02 0.00 0.02 0.00 +humble humble adj s 12.43 18.45 9.66 12.84 +humblement humblement adv 2.26 3.65 2.26 3.65 +humbles humble adj p 12.43 18.45 2.77 5.61 +humbug humbug adj s 0.01 0.00 0.01 0.00 +hume humer ver 0.73 9.53 0.13 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humecta humecter ver 0.35 4.53 0.14 0.27 ind:pas:3s; +humectage humectage nom m s 0.01 0.00 0.01 0.00 +humectai humecter ver 0.35 4.53 0.00 0.14 ind:pas:1s; +humectaient humecter ver 0.35 4.53 0.00 0.07 ind:imp:3p; +humectais humecter ver 0.35 4.53 0.00 0.07 ind:imp:1s; +humectait humecter ver 0.35 4.53 0.00 0.41 ind:imp:3s; +humectant humectant adj m s 0.05 0.00 0.05 0.00 +humecte humecter ver 0.35 4.53 0.00 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humectent humecter ver 0.35 4.53 0.00 0.07 ind:pre:3p; +humecter humecter ver 0.35 4.53 0.16 1.01 inf; +humecté humecter ver m s 0.35 4.53 0.00 0.54 par:pas; +humectée humecter ver f s 0.35 4.53 0.03 0.41 par:pas; +humectées humecter ver f p 0.35 4.53 0.01 0.20 par:pas; +humectés humecter ver m p 0.35 4.53 0.01 0.34 par:pas; +hument humer ver 0.73 9.53 0.11 0.14 ind:pre:3p; +humer humer ver 0.73 9.53 0.28 1.76 inf; +humeras humer ver 0.73 9.53 0.00 0.07 ind:fut:2s; +humeur humeur nom f s 31.26 58.04 29.80 52.57 +humeurs humeur nom f p 31.26 58.04 1.46 5.47 +humez humer ver 0.73 9.53 0.04 0.07 imp:pre:2p; +hémi hémi adv 0.00 0.07 0.00 0.07 +hémicycle hémicycle nom m s 0.03 0.34 0.03 0.34 +humide humide adj s 11.23 53.31 8.24 38.24 +humidement humidement adv 0.00 0.07 0.00 0.07 +humides humide adj p 11.23 53.31 2.98 15.07 +humidifia humidifier ver 0.31 0.47 0.00 0.07 ind:pas:3s; +humidifiant humidifier ver 0.31 0.47 0.15 0.07 par:pre; +humidificateur humidificateur nom m s 0.20 0.07 0.20 0.07 +humidification humidification nom f s 0.03 0.00 0.03 0.00 +humidifient humidifier ver 0.31 0.47 0.04 0.07 ind:pre:3p; +humidifier humidifier ver 0.31 0.47 0.06 0.14 inf; +humidifié humidifier ver m s 0.31 0.47 0.06 0.07 par:pas; +humidifiés humidifier ver m p 0.31 0.47 0.00 0.07 par:pas; +humidité humidité nom f s 4.09 14.86 4.09 14.86 +humilia humilier ver 16.01 14.26 0.00 0.07 ind:pas:3s; +humiliaient humilier ver 16.01 14.26 0.00 0.20 ind:imp:3p; +humiliais humilier ver 16.01 14.26 0.02 0.00 ind:imp:2s; +humiliait humilier ver 16.01 14.26 0.05 0.95 ind:imp:3s; +humiliant humiliant adj m s 5.08 3.78 3.35 1.89 +humiliante humiliant adj f s 5.08 3.78 0.73 0.88 +humiliantes humiliant adj f p 5.08 3.78 0.56 0.34 +humiliants humiliant adj m p 5.08 3.78 0.45 0.68 +humiliassent humilier ver 16.01 14.26 0.00 0.07 sub:imp:3p; +humiliation humiliation nom f s 7.60 13.65 6.72 10.68 +humiliations humiliation nom f p 7.60 13.65 0.89 2.97 +humilie humilier ver 16.01 14.26 2.15 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humilient humilier ver 16.01 14.26 0.15 0.14 ind:pre:3p; +humilier humilier ver 16.01 14.26 5.68 4.32 inf;; +humiliera humilier ver 16.01 14.26 0.05 0.00 ind:fut:3s; +humilierai humilier ver 16.01 14.26 0.04 0.00 ind:fut:1s; +humilieraient humilier ver 16.01 14.26 0.00 0.14 cnd:pre:3p; +humilierais humilier ver 16.01 14.26 0.01 0.00 cnd:pre:1s; +humilierait humilier ver 16.01 14.26 0.01 0.14 cnd:pre:3s; +humilies humilier ver 16.01 14.26 0.62 0.27 ind:pre:2s; +humiliez humilier ver 16.01 14.26 0.14 0.27 imp:pre:2p;ind:pre:2p; +humilité humilité nom f s 4.24 12.09 4.24 11.96 +humilités humilité nom f p 4.24 12.09 0.00 0.14 +humilié humilier ver m s 16.01 14.26 3.65 3.18 par:pas; +humiliée humilier ver f s 16.01 14.26 1.93 1.62 par:pas; +humiliées humilié adj f p 2.45 4.32 0.40 0.07 +humiliés humilier ver m p 16.01 14.26 1.12 0.88 par:pas; +humions humer ver 0.73 9.53 0.00 0.07 ind:imp:1p; +hémiplégie hémiplégie nom f s 0.20 0.41 0.20 0.41 +hémiplégique hémiplégique adj s 0.01 0.07 0.01 0.07 +hémiptère hémiptère nom m s 0.00 0.07 0.00 0.07 +hémisphère hémisphère nom m s 1.38 1.76 0.96 0.88 +hémisphères hémisphère nom m p 1.38 1.76 0.41 0.88 +hémisphérique hémisphérique adj s 0.01 0.41 0.01 0.34 +hémisphériques hémisphérique adj m p 0.01 0.41 0.00 0.07 +hémistiche hémistiche nom m s 0.01 0.20 0.00 0.07 +hémistiches hémistiche nom m p 0.01 0.20 0.01 0.14 +hémièdres hémièdre adj f p 0.00 0.07 0.00 0.07 +hémoculture hémoculture nom f s 0.17 0.00 0.09 0.00 +hémocultures hémoculture nom f p 0.17 0.00 0.09 0.00 +hémodialyse hémodialyse nom f s 0.04 0.00 0.04 0.00 +hémodynamique hémodynamique nom f s 0.05 0.00 0.05 0.00 +hémoglobine hémoglobine nom f s 1.15 0.34 1.14 0.27 +hémoglobines hémoglobine nom f p 1.15 0.34 0.01 0.07 +hémogramme hémogramme nom m s 0.12 0.00 0.12 0.00 +hémolyse hémolyse nom f s 0.07 0.00 0.07 0.00 +hémolytique hémolytique adj f s 0.12 0.00 0.12 0.00 +humons humer ver 0.73 9.53 0.00 0.07 ind:pre:1p; +hémophile hémophile adj m s 0.10 0.07 0.07 0.07 +hémophiles hémophile adj m p 0.10 0.07 0.03 0.00 +hémophilie hémophilie nom f s 0.14 0.07 0.14 0.07 +hémoptysie hémoptysie nom f s 0.01 0.68 0.00 0.34 +hémoptysies hémoptysie nom f p 0.01 0.68 0.01 0.34 +humoral humoral adj m s 0.00 0.07 0.00 0.07 +humoriste humoriste adj s 0.33 0.20 0.33 0.14 +humoristes humoriste nom p 0.11 0.74 0.02 0.41 +humoristique humoristique adj s 0.30 1.22 0.20 0.61 +humoristiques humoristique adj p 0.30 1.22 0.10 0.61 +hémorragie hémorragie nom f s 9.35 3.11 8.39 2.43 +hémorragies hémorragie nom f p 9.35 3.11 0.96 0.68 +hémorragique hémorragique adj s 0.25 0.00 0.25 0.00 +hémorroïdaire hémorroïdaire adj s 0.01 0.00 0.01 0.00 +hémorroïdale hémorroïdal adj f s 0.01 0.00 0.01 0.00 +hémorroïde hémorroïde nom f s 1.69 0.41 0.23 0.00 +hémorroïdes hémorroïde nom f p 1.69 0.41 1.46 0.41 +hémostase hémostase nom f s 0.13 0.00 0.13 0.00 +hémostatique hémostatique adj s 0.14 0.07 0.14 0.07 +humour humour nom m s 17.22 16.76 17.22 16.76 +humèrent humer ver 0.73 9.53 0.00 0.07 ind:pas:3p; +humé humer ver m s 0.73 9.53 0.02 0.47 par:pas; +humée humer ver f s 0.73 9.53 0.00 0.07 par:pas; +humérale huméral adj f s 0.04 0.00 0.04 0.00 +humérus humérus nom m 0.22 0.34 0.22 0.34 +humés humer ver m p 0.73 9.53 0.00 0.07 par:pas; +humus humus nom m 0.32 5.74 0.32 5.74 +hun hun nom m s 0.16 0.68 0.11 0.47 +hune hune nom f s 0.06 0.41 0.06 0.34 +hunes hune nom f p 0.06 0.41 0.00 0.07 +hunier hunier nom m s 0.17 0.14 0.12 0.07 +huniers hunier nom m p 0.17 0.14 0.05 0.07 +huns hun nom m p 0.16 0.68 0.05 0.20 +hunter hunter nom m s 0.02 0.00 0.02 0.00 +héparine héparine nom f s 0.28 0.00 0.28 0.00 +hépatique hépatique adj s 0.50 0.41 0.32 0.27 +hépatiques hépatique adj p 0.50 0.41 0.18 0.14 +hépatite hépatite nom f s 2.12 0.74 2.04 0.74 +hépatites hépatite nom f p 2.12 0.74 0.08 0.00 +hépatomégalie hépatomégalie nom f s 0.01 0.00 0.01 0.00 +huppe huppe nom f s 0.06 0.34 0.06 0.34 +huppé huppé adj m s 0.45 2.09 0.17 0.68 +huppée huppé adj f s 0.45 2.09 0.10 0.61 +huppées huppé adj f p 0.45 2.09 0.05 0.27 +huppés huppé adj m p 0.45 2.09 0.13 0.54 +héraclitienne héraclitien adj f s 0.00 0.07 0.00 0.07 +héraclitéen héraclitéen adj m s 0.00 0.20 0.00 0.14 +héraclitéenne héraclitéen adj f s 0.00 0.20 0.00 0.07 +héraldique héraldique adj s 0.00 1.22 0.00 0.81 +héraldiques héraldique adj p 0.00 1.22 0.00 0.41 +héraut héraut nom m s 0.36 0.81 0.35 0.20 +hérauts héraut nom m p 0.36 0.81 0.01 0.61 +hure hure nom f s 0.11 2.36 0.11 0.34 +hures hure nom f p 0.11 2.36 0.00 2.03 +hérissa hérisser ver 0.64 13.99 0.10 0.14 ind:pas:3s; +hérissaient hérisser ver 0.64 13.99 0.00 0.74 ind:imp:3p; +hérissait hérisser ver 0.64 13.99 0.01 1.08 ind:imp:3s; +hérissant hérisser ver 0.64 13.99 0.00 0.27 par:pre; +hérisse hérisser ver 0.64 13.99 0.11 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hérissement hérissement nom m s 0.00 0.34 0.00 0.14 +hérissements hérissement nom m p 0.00 0.34 0.00 0.20 +hérissent hérisser ver 0.64 13.99 0.03 0.41 ind:pre:3p; +hérisser hérisser ver 0.64 13.99 0.03 0.41 inf; +hérisseraient hérisser ver 0.64 13.99 0.00 0.14 cnd:pre:3p; +hérisses hérisser ver 0.64 13.99 0.01 0.07 ind:pre:2s; +hérisson hérisson nom m s 0.75 2.57 0.69 1.76 +hérissons hérisson nom m p 0.75 2.57 0.06 0.81 +hérissât hérisser ver 0.64 13.99 0.00 0.07 sub:imp:3s; +hérissèrent hérisser ver 0.64 13.99 0.00 0.14 ind:pas:3p; +hérissé hérisser ver m s 0.64 13.99 0.14 3.38 par:pas; +hérissée hérissé adj f s 0.41 4.86 0.21 1.28 +hérissées hérissé adj f p 0.41 4.86 0.14 1.22 +hérissés hérisser ver m p 0.64 13.99 0.05 2.50 par:pas; +hérita hériter ver 11.93 12.84 0.18 0.34 ind:pas:3s; +héritage héritage nom m s 12.37 12.03 12.18 11.15 +héritages héritage nom m p 12.37 12.03 0.19 0.88 +héritai hériter ver 11.93 12.84 0.00 0.20 ind:pas:1s; +héritaient hériter ver 11.93 12.84 0.00 0.14 ind:imp:3p; +héritais hériter ver 11.93 12.84 0.11 0.14 ind:imp:1s;ind:imp:2s; +héritait hériter ver 11.93 12.84 0.03 0.20 ind:imp:3s; +hérite hériter ver 11.93 12.84 1.52 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +héritent hériter ver 11.93 12.84 0.21 0.00 ind:pre:3p; +hériter hériter ver 11.93 12.84 1.86 1.35 inf; +héritera hériter ver 11.93 12.84 0.38 0.14 ind:fut:3s; +hériterai hériter ver 11.93 12.84 0.05 0.07 ind:fut:1s; +hériteraient hériter ver 11.93 12.84 0.02 0.00 cnd:pre:3p; +hériterait hériter ver 11.93 12.84 0.07 0.14 cnd:pre:3s; +hériteras hériter ver 11.93 12.84 0.22 0.00 ind:fut:2s; +hériterez hériter ver 11.93 12.84 0.20 0.07 ind:fut:2p; +hériteront hériter ver 11.93 12.84 0.11 0.00 ind:fut:3p; +hérites hériter ver 11.93 12.84 0.34 0.14 ind:pre:2s; +héritez hériter ver 11.93 12.84 0.25 0.14 imp:pre:2p;ind:pre:2p; +héritier héritier nom m s 10.77 13.45 7.76 7.16 +héritiers héritier nom m p 10.77 13.45 1.39 3.18 +héritière héritier nom f s 10.77 13.45 1.62 2.70 +héritières héritière nom f p 0.05 0.00 0.05 0.00 +héritons hériter ver 11.93 12.84 0.11 0.00 ind:pre:1p; +hérité hériter ver m s 11.93 12.84 6.00 6.89 par:pas; +héritée hériter ver f s 11.93 12.84 0.10 1.42 par:pas; +héritées hériter ver f p 11.93 12.84 0.01 0.27 par:pas; +hérités hériter ver m p 11.93 12.84 0.15 0.61 par:pas; +hurla hurler ver 33.17 88.65 0.46 13.78 ind:pas:3s; +hurlai hurler ver 33.17 88.65 0.00 1.08 ind:pas:1s; +hurlaient hurler ver 33.17 88.65 0.64 3.38 ind:imp:3p; +hurlais hurler ver 33.17 88.65 0.69 0.88 ind:imp:1s;ind:imp:2s; +hurlait hurler ver 33.17 88.65 2.19 10.54 ind:imp:3s; +hurlant hurler ver 33.17 88.65 2.08 12.36 par:pre; +hurlante hurlant adj f s 0.69 7.50 0.14 2.03 +hurlantes hurlant adj f p 0.69 7.50 0.09 1.01 +hurlants hurlant adj m p 0.69 7.50 0.06 0.95 +hurle hurler ver 33.17 88.65 8.34 18.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hurlement hurlement nom m s 4.59 20.95 2.16 9.86 +hurlements hurlement nom m p 4.59 20.95 2.43 11.08 +hurlent hurler ver 33.17 88.65 2.52 2.36 ind:pre:3p; +hurler hurler ver 33.17 88.65 10.38 17.23 inf; +hurlera hurler ver 33.17 88.65 0.09 0.00 ind:fut:3s; +hurlerai hurler ver 33.17 88.65 0.08 0.20 ind:fut:1s; +hurleraient hurler ver 33.17 88.65 0.01 0.14 cnd:pre:3p; +hurlerais hurler ver 33.17 88.65 0.06 0.20 cnd:pre:1s; +hurlerait hurler ver 33.17 88.65 0.04 0.20 cnd:pre:3s; +hurlerez hurler ver 33.17 88.65 0.08 0.00 ind:fut:2p; +hurleront hurler ver 33.17 88.65 0.18 0.07 ind:fut:3p; +hurles hurler ver 33.17 88.65 0.69 0.07 ind:pre:2s; +hurleur hurleur nom m s 0.22 0.47 0.11 0.07 +hurleurs hurleur nom m p 0.22 0.47 0.12 0.41 +hurlez hurler ver 33.17 88.65 1.47 0.00 imp:pre:2p;ind:pre:2p; +hurlions hurler ver 33.17 88.65 0.14 0.14 ind:imp:1p; +hurlât hurler ver 33.17 88.65 0.00 0.07 sub:imp:3s; +hurlèrent hurler ver 33.17 88.65 0.00 1.01 ind:pas:3p; +hurlé hurler ver m s 33.17 88.65 3.06 6.15 par:pas; +hurluberlu hurluberlu nom m s 0.23 0.61 0.20 0.14 +hurluberlus hurluberlu nom m p 0.23 0.61 0.04 0.47 +hurlée hurler ver f s 33.17 88.65 0.00 0.14 par:pas; +hurlées hurler ver f p 33.17 88.65 0.00 0.34 par:pas; +hurlés hurler ver m p 33.17 88.65 0.00 0.07 par:pas; +héro héro nom f s 4.38 1.35 4.38 1.35 +héroïde héroïde nom f s 0.00 0.07 0.00 0.07 +héroïne héros nom f s 76.58 52.77 10.32 7.23 +héroïnes héros nom f p 76.58 52.77 0.10 1.89 +héroïnomane héroïnomane nom s 0.02 0.00 0.02 0.00 +héroïque héroïque adj s 4.73 11.28 3.31 7.57 +héroïquement héroïquement adv 0.14 0.74 0.14 0.74 +héroïques héroïque adj p 4.73 11.28 1.42 3.72 +héroïsme héroïsme nom m s 1.06 5.95 1.06 5.95 +héron héron nom m s 0.64 2.36 0.27 1.08 +huron huron adj m s 0.04 0.07 0.01 0.00 +huronne huron adj f s 0.04 0.07 0.03 0.07 +hérons héron nom m p 0.64 2.36 0.37 1.28 +héros héros nom m 76.58 52.77 66.17 43.65 +hurrah hurrah ono 0.17 0.61 0.17 0.61 +hurrahs hurrah nom m p 0.01 0.07 0.00 0.07 +hurricane hurricane nom m s 0.56 0.34 0.52 0.27 +hurricanes hurricane nom m p 0.56 0.34 0.05 0.07 +héréditaire héréditaire adj s 2.59 4.59 2.21 3.85 +héréditairement héréditairement adv 0.00 0.20 0.00 0.20 +héréditaires héréditaire adj p 2.59 4.59 0.38 0.74 +hérédité hérédité nom f s 0.71 3.99 0.71 3.99 +hérédo hérédo adv 0.00 0.07 0.00 0.07 +hérésiarque hérésiarque nom s 0.00 0.20 0.00 0.07 +hérésiarques hérésiarque nom p 0.00 0.20 0.00 0.14 +hérésie hérésie nom f s 1.72 7.91 1.52 7.16 +hérésies hérésie nom f p 1.72 7.91 0.20 0.74 +hérétique hérétique nom s 3.15 18.65 2.08 2.77 +hérétiques hérétique nom p 3.15 18.65 1.08 15.88 +hésita hésiter ver 30.06 122.43 0.30 36.15 ind:pas:3s; +hésitai hésiter ver 30.06 122.43 0.01 4.26 ind:pas:1s; +hésitaient hésiter ver 30.06 122.43 0.01 3.11 ind:imp:3p; +hésitais hésiter ver 30.06 122.43 0.33 3.38 ind:imp:1s;ind:imp:2s; +hésitait hésiter ver 30.06 122.43 1.01 15.07 ind:imp:3s; +hésitant hésiter ver 30.06 122.43 0.23 6.22 par:pre; +hésitante hésitant adj f s 0.56 12.09 0.32 5.88 +hésitantes hésitant adj f p 0.56 12.09 0.04 0.61 +hésitants hésitant adj m p 0.56 12.09 0.09 1.69 +hésitation hésitation nom f s 2.90 25.14 2.27 19.80 +hésitations hésitation nom f p 2.90 25.14 0.63 5.34 +hésite hésiter ver 30.06 122.43 8.21 18.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hésitent hésiter ver 30.06 122.43 0.47 2.30 ind:pre:3p; +hésiter hésiter ver 30.06 122.43 4.57 16.28 inf; +hésitera hésiter ver 30.06 122.43 0.20 0.34 ind:fut:3s; +hésiterai hésiter ver 30.06 122.43 0.92 0.20 ind:fut:1s; +hésiteraient hésiter ver 30.06 122.43 0.22 0.41 cnd:pre:3p; +hésiterais hésiter ver 30.06 122.43 0.72 0.61 cnd:pre:1s;cnd:pre:2s; +hésiterait hésiter ver 30.06 122.43 0.51 0.47 cnd:pre:3s; +hésiteras hésiter ver 30.06 122.43 0.16 0.00 ind:fut:2s; +hésiterez hésiter ver 30.06 122.43 0.04 0.07 ind:fut:2p; +hésiteriez hésiter ver 30.06 122.43 0.10 0.00 cnd:pre:2p; +hésiterions hésiter ver 30.06 122.43 0.00 0.07 cnd:pre:1p; +hésiterons hésiter ver 30.06 122.43 0.05 0.07 ind:fut:1p; +hésiteront hésiter ver 30.06 122.43 0.34 0.00 ind:fut:3p; +hésites hésiter ver 30.06 122.43 1.09 0.47 ind:pre:2s; +hésitez hésiter ver 30.06 122.43 6.28 1.89 imp:pre:2p;ind:pre:2p; +hésitiez hésiter ver 30.06 122.43 0.05 0.00 ind:imp:2p; +hésitions hésiter ver 30.06 122.43 0.00 0.20 ind:imp:1p; +hésitons hésiter ver 30.06 122.43 0.42 0.14 imp:pre:1p;ind:pre:1p; +hésitât hésiter ver 30.06 122.43 0.00 0.20 sub:imp:3s; +hésitèrent hésiter ver 30.06 122.43 0.00 0.95 ind:pas:3p; +hésité hésiter ver m s 30.06 122.43 3.83 11.01 par:pas; +huskies huskies nom m p 0.20 0.00 0.20 0.00 +husky husky nom m s 0.28 0.00 0.28 0.00 +hussard hussard nom m s 0.71 3.45 0.17 1.42 +hussarde hussard nom f s 0.71 3.45 0.01 0.27 +hussards hussard nom m p 0.71 3.45 0.53 1.76 +husseinites husseinite nom p 0.00 0.14 0.00 0.14 +hussite hussite nom m s 0.00 0.20 0.00 0.14 +hussites hussite nom m p 0.00 0.20 0.00 0.07 +hétaïre hétaïre nom f s 0.00 0.27 0.00 0.14 +hétaïres hétaïre nom f p 0.00 0.27 0.00 0.14 +huèrent huer ver 1.24 2.30 0.00 0.07 ind:pas:3p; +hêtraie hêtraie nom f s 0.00 0.68 0.00 0.54 +hêtraies hêtraie nom f p 0.00 0.68 0.00 0.14 +hêtre hêtre nom m s 0.65 10.20 0.18 3.38 +hêtres hêtre nom m p 0.65 10.20 0.47 6.82 +hutte hutte nom f s 3.90 7.84 3.25 4.93 +hutter hutter ver 0.77 0.00 0.77 0.00 inf; +huttes hutte nom f p 3.90 7.84 0.65 2.91 +hétéro hétéro adj s 3.91 0.74 3.16 0.61 +hétérochromie hétérochromie nom f s 0.03 0.00 0.03 0.00 +hétéroclite hétéroclite adj s 0.17 4.73 0.02 2.57 +hétéroclites hétéroclite adj p 0.17 4.73 0.16 2.16 +hétérodoxes hétérodoxe nom p 0.01 0.14 0.01 0.14 +hétérodoxie hétérodoxie nom f s 0.00 0.07 0.00 0.07 +hétérogène hétérogène adj m s 0.14 0.34 0.14 0.07 +hétérogènes hétérogène adj p 0.14 0.34 0.00 0.27 +hétérogénéité hétérogénéité nom f s 0.00 0.14 0.00 0.14 +hétéroptère hétéroptère nom m s 0.00 0.07 0.00 0.07 +hétéros hétéro nom p 3.50 0.34 1.87 0.00 +hétérosexualité hétérosexualité nom f s 0.08 0.81 0.08 0.81 +hétérosexuel hétérosexuel adj m s 0.97 3.58 0.60 1.49 +hétérosexuelle hétérosexuel adj f s 0.97 3.58 0.13 0.88 +hétérosexuelles hétérosexuel adj f p 0.97 3.58 0.07 0.07 +hétérosexuels hétérosexuel adj m p 0.97 3.58 0.17 1.15 +hétérozygote hétérozygote adj s 0.01 0.07 0.01 0.00 +hétérozygotes hétérozygote adj p 0.01 0.07 0.00 0.07 +hué huer ver m s 1.24 2.30 0.05 0.34 par:pas; +huée huer ver f s 1.24 2.30 0.02 0.00 par:pas; +huées huée nom f p 0.64 1.49 0.64 1.42 +hués huer ver m p 1.24 2.30 0.02 0.14 par:pas; +hévéa hévéa nom m s 0.23 0.20 0.01 0.14 +hévéas hévéa nom m p 0.23 0.20 0.22 0.07 +hyacinthe hyacinthe nom f s 0.04 0.07 0.04 0.07 +hyades hyade nom f p 0.10 0.07 0.10 0.07 +hybridation hybridation nom f s 0.05 0.00 0.05 0.00 +hybride hybride nom m s 1.97 0.41 1.20 0.27 +hybrides hybride nom m p 1.97 0.41 0.77 0.14 +hybridé hybrider ver m s 0.01 0.00 0.01 0.00 par:pas; +hydatique hydatique adj s 0.01 0.00 0.01 0.00 +hydne hydne nom m s 0.00 0.07 0.00 0.07 +hydratant hydratant adj m s 0.38 0.27 0.04 0.07 +hydratante hydratant adj f s 0.38 0.27 0.26 0.20 +hydratantes hydratant adj f p 0.38 0.27 0.07 0.00 +hydratants hydratant adj m p 0.38 0.27 0.01 0.00 +hydratation hydratation nom f s 0.13 0.00 0.13 0.00 +hydrate hydrate nom m s 0.42 0.00 0.18 0.00 +hydrater hydrater ver 0.58 0.00 0.12 0.00 inf; +hydrates hydrate nom m p 0.42 0.00 0.25 0.00 +hydratez hydrater ver 0.58 0.00 0.15 0.00 imp:pre:2p; +hydraté hydrater ver m s 0.58 0.00 0.17 0.00 par:pas; +hydratée hydrater ver f s 0.58 0.00 0.07 0.00 par:pas; +hydraulicien hydraulicien nom m s 0.01 0.00 0.01 0.00 +hydraulique hydraulique adj s 1.41 1.15 1.15 1.01 +hydrauliques hydraulique adj p 1.41 1.15 0.26 0.14 +hydravion hydravion nom m s 0.47 0.61 0.43 0.27 +hydravions hydravion nom m p 0.47 0.61 0.04 0.34 +hydre hydre nom f s 0.17 0.34 0.17 0.34 +hydrique hydrique adj s 0.07 0.00 0.07 0.00 +hydro_électrique hydro_électrique adj s 0.00 0.07 0.00 0.07 +hydro hydro adv 0.17 0.07 0.17 0.07 +hydrocarbure hydrocarbure nom m s 0.50 0.34 0.11 0.07 +hydrocarbures hydrocarbure nom m p 0.50 0.34 0.39 0.27 +hydrochlorique hydrochlorique adj m s 0.09 0.00 0.09 0.00 +hydrocortisone hydrocortisone nom f s 0.03 0.00 0.03 0.00 +hydrocèle hydrocèle nom f s 0.00 0.07 0.00 0.07 +hydrocéphale hydrocéphale adj s 0.22 0.14 0.12 0.07 +hydrocéphales hydrocéphale adj m p 0.22 0.14 0.10 0.07 +hydrocéphalie hydrocéphalie nom f s 0.01 0.00 0.01 0.00 +hydrocution hydrocution nom f s 0.00 0.07 0.00 0.07 +hydrodynamique hydrodynamique adj f s 0.01 0.00 0.01 0.00 +hydrofoil hydrofoil nom m s 0.01 0.00 0.01 0.00 +hydroglisseur hydroglisseur nom m s 0.06 0.00 0.06 0.00 +hydrographe hydrographe adj m s 0.14 0.00 0.14 0.00 +hydrographie hydrographie nom f s 0.01 0.07 0.01 0.07 +hydrographique hydrographique adj m s 0.27 0.14 0.27 0.07 +hydrographiques hydrographique adj p 0.27 0.14 0.00 0.07 +hydrogène hydrogène nom m s 1.76 0.88 1.75 0.88 +hydrogènes hydrogène nom m p 1.76 0.88 0.01 0.00 +hydrogénisation hydrogénisation nom f s 0.00 0.14 0.00 0.14 +hydrogéné hydrogéné adj m s 0.04 0.00 0.02 0.00 +hydrogénée hydrogéné adj f s 0.04 0.00 0.02 0.00 +hydrolase hydrolase nom f s 0.10 0.00 0.10 0.00 +hydrologie hydrologie nom f s 0.02 0.00 0.02 0.00 +hydrolyse hydrolyse nom f s 0.03 0.00 0.03 0.00 +hydromel hydromel nom m s 0.52 0.20 0.52 0.20 +hydromètres hydromètre nom f p 0.00 0.07 0.00 0.07 +hydrophile hydrophile adj m s 0.10 1.01 0.10 0.88 +hydrophiles hydrophile adj f p 0.10 1.01 0.00 0.14 +hydrophobe hydrophobe adj f s 0.01 0.00 0.01 0.00 +hydrophobie hydrophobie nom f s 0.04 0.07 0.04 0.07 +hydrophone hydrophone nom m s 0.25 0.00 0.25 0.00 +hydrophyte hydrophyte nom f s 0.01 0.00 0.01 0.00 +hydropique hydropique adj f s 0.14 0.14 0.14 0.14 +hydropisie hydropisie nom f s 0.01 0.27 0.01 0.27 +hydropneumatique hydropneumatique adj m s 0.01 0.14 0.01 0.14 +hydroponique hydroponique adj s 0.28 0.00 0.20 0.00 +hydroponiques hydroponique adj p 0.28 0.00 0.09 0.00 +hydroptère hydroptère nom m s 0.02 0.00 0.02 0.00 +hydroquinone hydroquinone nom f s 0.00 0.14 0.00 0.14 +hydrostatique hydrostatique adj s 0.04 0.00 0.04 0.00 +hydrothérapie hydrothérapie nom f s 0.08 0.14 0.08 0.14 +hydroélectrique hydroélectrique adj f s 0.36 0.14 0.36 0.14 +hydrox hydrox nom m 0.01 0.00 0.01 0.00 +hydroxyde hydroxyde nom m s 0.13 0.00 0.13 0.00 +hygiaphone hygiaphone nom m s 0.00 0.20 0.00 0.20 +hygiène hygiène nom f s 4.42 6.35 4.40 6.28 +hygiènes hygiène nom f p 4.42 6.35 0.01 0.07 +hygiénique hygiénique adj s 1.74 4.12 1.48 2.84 +hygiéniquement hygiéniquement adv 0.01 0.07 0.01 0.07 +hygiéniques hygiénique adj p 1.74 4.12 0.26 1.28 +hygiéniste hygiéniste nom s 0.20 0.14 0.19 0.00 +hygiénistes hygiéniste nom p 0.20 0.14 0.01 0.14 +hygroma hygroma nom m s 0.03 0.00 0.03 0.00 +hygromètre hygromètre nom m s 0.01 0.14 0.00 0.07 +hygromètres hygromètre nom m p 0.01 0.14 0.01 0.07 +hygrométrie hygrométrie nom f s 0.14 0.07 0.14 0.07 +hygrométrique hygrométrique adj s 0.00 0.14 0.00 0.07 +hygrométriques hygrométrique adj f p 0.00 0.14 0.00 0.07 +hylémorphique hylémorphique adj f s 0.00 0.07 0.00 0.07 +hymen hymen nom m s 2.05 0.34 2.05 0.34 +hymne hymne nom s 6.25 8.72 5.37 6.69 +hymnes hymne nom p 6.25 8.72 0.88 2.03 +hyménoptère hyménoptère nom m s 0.02 0.27 0.00 0.07 +hyménoptères hyménoptère nom m p 0.02 0.27 0.02 0.20 +hyménée hyménée nom m s 0.34 0.07 0.34 0.00 +hyménées hyménée nom m p 0.34 0.07 0.00 0.07 +hyoïde hyoïde adj f s 0.16 0.00 0.16 0.00 +hypallage hypallage nom f s 0.00 0.07 0.00 0.07 +hyper hyper adv 6.66 0.95 6.66 0.95 +hyperacidité hyperacidité nom f s 0.01 0.00 0.01 0.00 +hyperactif hyperactif adj m s 0.20 0.00 0.13 0.00 +hyperactive hyperactif adj f s 0.20 0.00 0.08 0.00 +hyperactivité hyperactivité nom f s 0.17 0.00 0.17 0.00 +hyperbare hyperbare adj m s 0.07 0.00 0.07 0.00 +hyperbole hyperbole nom f s 0.12 0.34 0.09 0.20 +hyperboles hyperbole nom f p 0.12 0.34 0.04 0.14 +hyperbolique hyperbolique adj s 0.01 0.20 0.01 0.20 +hyperboliquement hyperboliquement adv 0.00 0.07 0.00 0.07 +hyperborée hyperborée nom f s 0.00 0.07 0.00 0.07 +hyperboréen hyperboréen adj m s 0.00 0.54 0.00 0.14 +hyperboréenne hyperboréen adj f s 0.00 0.54 0.00 0.27 +hyperboréens hyperboréen adj m p 0.00 0.54 0.00 0.14 +hypercalcémie hypercalcémie nom f s 0.07 0.00 0.07 0.00 +hypercholestérolémie hypercholestérolémie nom f s 0.03 0.00 0.03 0.00 +hypercoagulabilité hypercoagulabilité nom f s 0.03 0.00 0.03 0.00 +hyperespace hyperespace nom m s 1.89 0.00 1.89 0.00 +hyperesthésie hyperesthésie nom f s 0.00 0.07 0.00 0.07 +hyperglycémies hyperglycémie nom f p 0.00 0.07 0.00 0.07 +hyperkaliémie hyperkaliémie nom f s 0.03 0.00 0.03 0.00 +hyperlipidémie hyperlipidémie nom f s 0.00 0.07 0.00 0.07 +hyperlipémie hyperlipémie nom f s 0.01 0.00 0.01 0.00 +hypermarché hypermarché nom m s 0.15 0.27 0.12 0.14 +hypermarchés hypermarché nom m p 0.15 0.27 0.03 0.14 +hypermnésie hypermnésie nom f s 0.00 0.07 0.00 0.07 +hypernerveuse hypernerveux adj f s 0.00 0.27 0.00 0.07 +hypernerveux hypernerveux adj m 0.00 0.27 0.00 0.20 +hyperplan hyperplan nom m s 0.01 0.00 0.01 0.00 +hyperplasie hyperplasie nom f s 0.04 0.00 0.04 0.00 +hyperréactivité hyperréactivité nom f s 0.01 0.00 0.01 0.00 +hyperréalisme hyperréalisme nom m s 0.00 0.07 0.00 0.07 +hyperréaliste hyperréaliste adj s 0.00 0.14 0.00 0.07 +hyperréaliste hyperréaliste nom s 0.00 0.14 0.00 0.07 +hyperréalistes hyperréaliste adj p 0.00 0.14 0.00 0.07 +hyperréalistes hyperréaliste nom p 0.00 0.14 0.00 0.07 +hypersensibilité hypersensibilité nom f s 0.22 0.14 0.22 0.14 +hypersensible hypersensible adj s 0.31 0.34 0.27 0.07 +hypersensibles hypersensible adj m p 0.31 0.34 0.04 0.27 +hypersomnie hypersomnie nom f s 0.03 0.00 0.03 0.00 +hypersonique hypersonique adj m s 0.01 0.00 0.01 0.00 +hypersustentateur hypersustentateur nom m s 0.06 0.00 0.06 0.00 +hypertendu hypertendu adj m s 0.20 0.07 0.04 0.07 +hypertendue hypertendu adj f s 0.20 0.07 0.16 0.00 +hypertendus hypertendu nom m p 0.01 0.00 0.01 0.00 +hypertension hypertension nom f s 0.71 0.20 0.70 0.07 +hypertensions hypertension nom f p 0.71 0.20 0.01 0.14 +hyperthermie hyperthermie nom f s 0.15 0.00 0.15 0.00 +hyperthyroïdien hyperthyroïdien adj m s 0.00 0.07 0.00 0.07 +hypertonique hypertonique adj s 0.06 0.00 0.06 0.00 +hypertrichose hypertrichose nom f s 0.03 0.00 0.03 0.00 +hypertrophie hypertrophie nom f s 0.56 0.27 0.56 0.27 +hypertrophique hypertrophique adj f s 0.07 0.00 0.07 0.00 +hypertrophié hypertrophié adj m s 0.20 0.27 0.17 0.07 +hypertrophiée hypertrophier ver f s 0.16 0.20 0.01 0.07 par:pas; +hypertrophiés hypertrophié adj m p 0.20 0.27 0.03 0.14 +hyperémotive hyperémotif adj f s 0.01 0.00 0.01 0.00 +hyperémotivité hyperémotivité nom f s 0.00 0.07 0.00 0.07 +hyperventilation hyperventilation nom f s 0.23 0.00 0.23 0.00 +hypholomes hypholome nom m p 0.00 0.07 0.00 0.07 +hypnagogique hypnagogique adj s 0.04 0.07 0.04 0.00 +hypnagogiques hypnagogique adj f p 0.04 0.07 0.00 0.07 +hypnogène hypnogène adj s 0.00 0.54 0.00 0.54 +hypnogènes hypnogène nom m p 0.00 0.20 0.00 0.07 +hypnose hypnose nom f s 3.29 1.28 3.29 1.22 +hypnoses hypnose nom f p 3.29 1.28 0.00 0.07 +hypnotique hypnotique adj s 1.16 0.74 0.99 0.68 +hypnotiquement hypnotiquement adv 0.00 0.14 0.00 0.14 +hypnotiques hypnotique adj p 1.16 0.74 0.17 0.07 +hypnotisa hypnotiser ver 3.73 4.19 0.00 0.07 ind:pas:3s; +hypnotisaient hypnotiser ver 3.73 4.19 0.14 0.07 ind:imp:3p; +hypnotisais hypnotiser ver 3.73 4.19 0.00 0.07 ind:imp:1s; +hypnotisait hypnotiser ver 3.73 4.19 0.03 0.14 ind:imp:3s; +hypnotisant hypnotiser ver 3.73 4.19 0.09 0.41 par:pre; +hypnotise hypnotiser ver 3.73 4.19 0.47 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hypnotisent hypnotiser ver 3.73 4.19 0.04 0.14 ind:pre:3p; +hypnotiser hypnotiser ver 3.73 4.19 1.05 0.27 inf;; +hypnotiseur hypnotiseur nom m s 0.63 0.27 0.60 0.07 +hypnotiseurs hypnotiseur nom m p 0.63 0.27 0.02 0.20 +hypnotiseuse hypnotiseur nom f s 0.63 0.27 0.01 0.00 +hypnotisme hypnotisme nom m s 0.30 0.27 0.30 0.27 +hypnotisé hypnotiser ver m s 3.73 4.19 0.90 1.22 par:pas; +hypnotisée hypnotiser ver f s 3.73 4.19 0.71 0.47 par:pas; +hypnotisées hypnotiser ver f p 3.73 4.19 0.01 0.27 par:pas; +hypnotisés hypnotiser ver m p 3.73 4.19 0.31 0.54 par:pas; +hypo hypo adv 0.19 0.07 0.19 0.07 +hypoallergénique hypoallergénique adj f s 0.09 0.07 0.06 0.07 +hypoallergéniques hypoallergénique adj m p 0.09 0.07 0.02 0.00 +hypocalcémie hypocalcémie nom f s 0.03 0.00 0.03 0.00 +hypocapnie hypocapnie nom f s 0.01 0.00 0.01 0.00 +hypocauste hypocauste nom m s 0.01 0.07 0.01 0.00 +hypocaustes hypocauste nom m p 0.01 0.07 0.00 0.07 +hypocentre hypocentre nom m s 0.01 0.00 0.01 0.00 +hypochlorite hypochlorite nom m s 0.01 0.00 0.01 0.00 +hypochondriaque hypochondriaque adj s 0.12 0.00 0.12 0.00 +hypochondriaques hypochondriaque nom p 0.05 0.00 0.03 0.00 +hypocondre hypocondre nom m s 0.00 0.14 0.00 0.14 +hypocondriaque hypocondriaque adj m s 0.17 0.34 0.17 0.20 +hypocondriaques hypocondriaque nom p 0.17 0.14 0.07 0.07 +hypocondrie hypocondrie nom f s 0.04 0.27 0.04 0.27 +hypocras hypocras nom m 0.00 0.20 0.00 0.20 +hypocrisie hypocrisie nom f s 4.41 5.61 4.06 5.47 +hypocrisies hypocrisie nom f p 4.41 5.61 0.35 0.14 +hypocrite hypocrite nom s 5.41 2.91 3.66 1.96 +hypocritement hypocritement adv 0.14 1.69 0.14 1.69 +hypocrites hypocrite nom p 5.41 2.91 1.75 0.95 +hypoderme hypoderme nom m s 0.00 0.07 0.00 0.07 +hypodermique hypodermique adj s 0.40 0.14 0.36 0.14 +hypodermiques hypodermique adj f p 0.40 0.14 0.04 0.00 +hypoglycémie hypoglycémie nom f s 0.40 0.20 0.40 0.20 +hypoglycémique hypoglycémique adj m s 0.14 0.20 0.13 0.14 +hypoglycémiques hypoglycémique adj f p 0.14 0.20 0.01 0.07 +hypogonadisme hypogonadisme nom m s 0.03 0.00 0.03 0.00 +hypogée hypogée nom m s 0.00 0.81 0.00 0.47 +hypogées hypogée nom m p 0.00 0.81 0.00 0.34 +hypokhâgne hypokhâgne nom f s 0.00 1.28 0.00 1.22 +hypokhâgnes hypokhâgne nom f p 0.00 1.28 0.00 0.07 +hypomaniaques hypomaniaque nom p 0.01 0.00 0.01 0.00 +hyponatrémie hyponatrémie nom f s 0.05 0.00 0.05 0.00 +hyponomeutes hyponomeute nom m p 0.00 0.07 0.00 0.07 +hypophysaire hypophysaire adj s 0.01 0.07 0.01 0.07 +hypophyse hypophyse nom f s 0.07 0.14 0.07 0.07 +hypophyses hypophyse nom f p 0.07 0.14 0.00 0.07 +hypoplasie hypoplasie nom f s 0.01 0.00 0.01 0.00 +hypospadias hypospadias nom m 0.01 0.00 0.01 0.00 +hypostase hypostase nom f s 0.01 0.07 0.01 0.00 +hypostases hypostase nom f p 0.01 0.07 0.00 0.07 +hyposulfite hyposulfite nom m s 0.00 0.20 0.00 0.20 +hypotaupe hypotaupe nom f s 0.00 0.07 0.00 0.07 +hypotendu hypotendu nom m s 0.03 0.00 0.03 0.00 +hypotendue hypotendu adj f s 0.03 0.00 0.01 0.00 +hypotensif hypotensif adj m s 0.03 0.00 0.01 0.00 +hypotension hypotension nom f s 0.28 0.00 0.28 0.00 +hypotensive hypotensif adj f s 0.03 0.00 0.01 0.00 +hypothalamus hypothalamus nom m 0.29 0.20 0.29 0.20 +hypothermie hypothermie nom f s 0.80 0.00 0.80 0.00 +hypothermique hypothermique adj m s 0.04 0.00 0.04 0.00 +hypothèque hypothèque nom f s 2.78 1.96 2.48 0.88 +hypothèquent hypothéquer ver 1.43 1.42 0.00 0.07 ind:pre:3p; +hypothèques hypothèque nom f p 2.78 1.96 0.29 1.08 +hypothèse hypothèse nom f s 8.97 16.82 7.47 12.91 +hypothèses hypothèse nom f p 8.97 16.82 1.50 3.92 +hypothécaire hypothécaire adj s 0.09 0.07 0.05 0.00 +hypothécaires hypothécaire adj m p 0.09 0.07 0.04 0.07 +hypothéquait hypothéquer ver 1.43 1.42 0.01 0.14 ind:imp:3s; +hypothéquant hypothéquer ver 1.43 1.42 0.01 0.07 par:pre; +hypothéquer hypothéquer ver 1.43 1.42 0.57 0.34 inf; +hypothéqueraient hypothéquer ver 1.43 1.42 0.00 0.07 cnd:pre:3p; +hypothéquez hypothéquer ver 1.43 1.42 0.10 0.07 imp:pre:2p;ind:pre:2p; +hypothéquions hypothéquer ver 1.43 1.42 0.00 0.07 ind:imp:1p; +hypothéqué hypothéquer ver m s 1.43 1.42 0.23 0.14 par:pas; +hypothéquée hypothéquer ver f s 1.43 1.42 0.04 0.41 par:pas; +hypothétique hypothétique adj s 0.71 2.23 0.65 1.62 +hypothétiquement hypothétiquement adv 0.23 0.07 0.23 0.07 +hypothétiques hypothétique adj p 0.71 2.23 0.07 0.61 +hypothyroïdie hypothyroïdie nom f s 0.04 0.00 0.04 0.00 +hypotonie hypotonie nom f s 0.01 0.00 0.01 0.00 +hypoténuse hypoténuse nom f s 0.09 0.07 0.09 0.07 +hypoxie hypoxie nom f s 0.13 0.00 0.13 0.00 +hypoxique hypoxique adj s 0.16 0.00 0.16 0.00 +hysope hysope nom f s 0.01 0.14 0.01 0.07 +hysopes hysope nom f p 0.01 0.14 0.00 0.07 +hystérectomie hystérectomie nom f s 0.26 0.07 0.26 0.07 +hystérie hystérie nom f s 3.48 3.38 3.48 3.31 +hystéries hystérie nom f p 3.48 3.38 0.00 0.07 +hystérique hystérique adj s 6.61 5.20 5.60 3.45 +hystériquement hystériquement adv 0.03 0.27 0.03 0.27 +hystériques hystérique adj p 6.61 5.20 1.01 1.76 +hystéro hystéro adj f s 0.02 0.34 0.02 0.34 +hyène hyène nom f s 2.37 2.43 1.64 1.76 +hyènes hyène nom f p 2.37 2.43 0.73 0.68 +i i nom s 71.21 31.15 71.21 31.15 +i.e. i.e. nom m s 0.02 0.00 0.02 0.00 +iambe iambe nom m s 0.02 0.00 0.02 0.00 +iambique iambique adj m s 0.15 0.00 0.08 0.00 +iambiques iambique adj m p 0.15 0.00 0.07 0.00 +ibex ibex nom m 0.11 0.00 0.11 0.00 +ibis ibis nom m 0.00 0.81 0.00 0.81 +ibm ibm nom m s 0.00 0.07 0.00 0.07 +ibo ibo adj f s 0.02 0.07 0.02 0.07 +iboga iboga nom m s 0.04 0.00 0.04 0.00 +ibère ibère nom s 0.01 0.00 0.01 0.00 +ibères ibère adj m p 0.00 0.14 0.00 0.07 +ibérique ibérique adj s 0.11 0.61 0.11 0.47 +ibériques ibérique adj p 0.11 0.61 0.00 0.14 +icône icône nom f s 1.81 4.73 1.25 2.16 +icônes icône nom f p 1.81 4.73 0.55 2.57 +icarienne icarienne adj f s 0.04 0.00 0.04 0.00 +ice_cream ice_cream nom m s 0.02 0.34 0.00 0.27 +ice_cream ice_cream nom m p 0.02 0.34 0.00 0.07 +ice_cream ice_cream nom m s 0.02 0.34 0.02 0.00 +iceberg iceberg nom m s 1.88 1.42 1.50 1.08 +icebergs iceberg nom m p 1.88 1.42 0.39 0.34 +icelle icelle pro_ind f s 0.00 0.34 0.00 0.34 +icelles icelles pro_ind f p 0.00 0.20 0.00 0.20 +icelui icelui pro_ind m s 0.00 0.07 0.00 0.07 +ichtyologie ichtyologie nom f s 0.15 0.00 0.15 0.00 +ichtyologiste ichtyologiste nom s 0.02 0.00 0.02 0.00 +ici_bas ici_bas adv 3.58 2.97 3.58 2.97 +ici ici adv_sup 2411.21 483.58 2411.21 483.58 +icoglan icoglan nom m s 0.00 0.14 0.00 0.07 +icoglans icoglan nom m p 0.00 0.14 0.00 0.07 +iconoclaste iconoclaste nom s 0.11 0.47 0.10 0.27 +iconoclastes iconoclaste adj f p 0.02 0.41 0.02 0.07 +iconographe iconographe nom s 0.00 0.07 0.00 0.07 +iconographie iconographie nom f s 0.04 0.61 0.03 0.54 +iconographies iconographie nom f p 0.04 0.61 0.01 0.07 +iconographique iconographique adj f s 0.00 0.07 0.00 0.07 +iconostase iconostase nom f s 0.00 0.20 0.00 0.20 +icosaèdre icosaèdre nom m s 0.03 0.00 0.03 0.00 +ictère ictère nom m s 0.16 0.07 0.16 0.07 +ictérique ictérique adj s 0.01 0.00 0.01 0.00 +ictus ictus nom m 0.00 0.07 0.00 0.07 +ide ide nom m s 0.47 0.07 0.47 0.07 +idem idem adv 1.86 2.64 1.86 2.64 +identifia identifier ver 38.52 18.92 0.26 0.68 ind:pas:3s; +identifiable identifiable adj s 0.67 1.49 0.55 0.47 +identifiables identifiable adj p 0.67 1.49 0.12 1.01 +identifiai identifier ver 38.52 18.92 0.00 0.41 ind:pas:1s; +identifiaient identifier ver 38.52 18.92 0.03 0.14 ind:imp:3p; +identifiais identifier ver 38.52 18.92 0.05 0.95 ind:imp:1s;ind:imp:2s; +identifiait identifier ver 38.52 18.92 0.31 1.55 ind:imp:3s; +identifiant identifier ver 38.52 18.92 0.22 0.34 par:pre; +identifiassent identifier ver 38.52 18.92 0.00 0.07 sub:imp:3p; +identificateur identificateur nom m s 0.07 0.00 0.07 0.00 +identification identification nom f s 7.14 1.82 6.88 1.76 +identifications identification nom f p 7.14 1.82 0.26 0.07 +identifie identifier ver 38.52 18.92 2.39 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +identifient identifier ver 38.52 18.92 0.29 0.27 ind:pre:3p; +identifier identifier ver 38.52 18.92 16.52 8.45 inf; +identifiera identifier ver 38.52 18.92 0.66 0.07 ind:fut:3s; +identifierai identifier ver 38.52 18.92 0.02 0.00 ind:fut:1s; +identifierais identifier ver 38.52 18.92 0.01 0.20 cnd:pre:1s; +identifierait identifier ver 38.52 18.92 0.06 0.14 cnd:pre:3s; +identifierez identifier ver 38.52 18.92 0.19 0.00 ind:fut:2p; +identifieront identifier ver 38.52 18.92 0.03 0.00 ind:fut:3p; +identifiez identifier ver 38.52 18.92 2.04 0.00 imp:pre:2p;ind:pre:2p; +identifions identifier ver 38.52 18.92 0.24 0.00 imp:pre:1p;ind:pre:1p; +identifiât identifier ver 38.52 18.92 0.00 0.07 sub:imp:3s; +identifièrent identifier ver 38.52 18.92 0.00 0.07 ind:pas:3p; +identifié identifier ver m s 38.52 18.92 10.78 2.50 par:pas; +identifiée identifier ver f s 38.52 18.92 2.02 0.68 par:pas; +identifiées identifier ver f p 38.52 18.92 0.40 0.14 par:pas; +identifiés identifier ver m p 38.52 18.92 2.00 0.47 par:pas; +identique identique adj s 7.90 15.41 4.02 8.04 +identiquement identiquement adv 0.00 0.54 0.00 0.54 +identiques identique adj p 7.90 15.41 3.88 7.36 +identitaire identitaire adj s 0.05 0.41 0.05 0.34 +identitaires identitaire adj f p 0.05 0.41 0.00 0.07 +identitarisme identitarisme nom m s 0.00 0.20 0.00 0.20 +identité identité nom f s 34.78 24.19 32.83 22.64 +identités identité nom f p 34.78 24.19 1.96 1.55 +ides ides nom f p 0.29 0.54 0.29 0.54 +idiolectes idiolecte nom m p 0.00 0.07 0.00 0.07 +idiomatique idiomatique adj s 0.02 0.07 0.01 0.00 +idiomatiques idiomatique adj f p 0.02 0.07 0.01 0.07 +idiome idiome nom m s 0.06 1.35 0.06 0.88 +idiomes idiome nom m p 0.06 1.35 0.00 0.47 +idiopathique idiopathique adj s 0.06 0.00 0.06 0.00 +idiosyncrasie idiosyncrasie nom f s 0.06 0.20 0.04 0.07 +idiosyncrasies idiosyncrasie nom f p 0.06 0.20 0.02 0.14 +idiosyncrasique idiosyncrasique adj m s 0.01 0.00 0.01 0.00 +idiot idiot nom m s 90.57 22.03 55.73 12.64 +idiote idiot nom f s 90.57 22.03 18.40 5.07 +idiotement idiotement adv 0.00 0.61 0.00 0.61 +idiotes idiot adj f p 74.06 33.24 3.62 2.16 +idiotie idiotie nom f s 5.27 2.97 1.81 1.96 +idioties idiotie nom f p 5.27 2.97 3.46 1.01 +idiotisme idiotisme nom m s 0.14 0.14 0.14 0.07 +idiotismes idiotisme nom m p 0.14 0.14 0.00 0.07 +idiots idiot nom m p 90.57 22.03 15.08 3.92 +idoine idoine adj s 0.02 0.95 0.01 0.74 +idoines idoine adj p 0.02 0.95 0.01 0.20 +idole idole nom f s 5.43 10.07 4.77 6.35 +idoles idole nom f p 5.43 10.07 0.66 3.72 +idolâtraient idolâtrer ver 1.03 1.15 0.00 0.07 ind:imp:3p; +idolâtrait idolâtrer ver 1.03 1.15 0.11 0.61 ind:imp:3s; +idolâtrant idolâtrer ver 1.03 1.15 0.14 0.07 par:pre; +idolâtre idolâtrer ver 1.03 1.15 0.17 0.07 ind:pre:1s;ind:pre:3s; +idolâtrent idolâtrer ver 1.03 1.15 0.17 0.00 ind:pre:3p; +idolâtrer idolâtrer ver 1.03 1.15 0.12 0.27 inf; +idolâtres idolâtre nom p 0.16 0.61 0.14 0.34 +idolâtrie idolâtrie nom f s 0.38 1.08 0.38 0.95 +idolâtries idolâtrie nom f p 0.38 1.08 0.00 0.14 +idolâtré idolâtrer ver m s 1.03 1.15 0.05 0.00 par:pas; +idolâtrée idolâtrer ver f s 1.03 1.15 0.23 0.07 par:pas; +idéal idéal adj m s 21.85 16.35 15.80 7.97 +idéale idéal adj f s 21.85 16.35 5.32 7.03 +idéalement idéalement adv 0.28 1.22 0.28 1.22 +idéales idéal adj f p 21.85 16.35 0.40 1.15 +idéalisait idéaliser ver 0.68 0.81 0.02 0.07 ind:imp:3s; +idéalisant idéaliser ver 0.68 0.81 0.02 0.07 par:pre; +idéalisation idéalisation nom f s 0.16 0.14 0.16 0.14 +idéalise idéaliser ver 0.68 0.81 0.34 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +idéalisent idéaliser ver 0.68 0.81 0.01 0.07 ind:pre:3p; +idéaliser idéaliser ver 0.68 0.81 0.13 0.20 inf; +idéalisme idéalisme nom m s 0.98 1.96 0.98 1.82 +idéalismes idéalisme nom m p 0.98 1.96 0.00 0.14 +idéaliste idéaliste nom s 1.61 1.69 1.33 1.08 +idéalistes idéaliste adj p 1.20 1.15 0.44 0.20 +idéalisé idéaliser ver m s 0.68 0.81 0.08 0.14 par:pas; +idéalisée idéaliser ver f s 0.68 0.81 0.07 0.20 par:pas; +idéalisées idéaliser ver f p 0.68 0.81 0.01 0.00 par:pas; +idéalisés idéaliser ver m p 0.68 0.81 0.01 0.07 par:pas; +idéals idéal adj m p 21.85 16.35 0.01 0.00 +idéation idéation nom f s 0.03 0.00 0.03 0.00 +idéaux idéal nom m p 11.22 12.23 3.22 0.74 +idée_clé idée_clé nom f s 0.01 0.00 0.01 0.00 +idée_force idée_force nom f s 0.01 0.20 0.01 0.07 +idée idée nom f s 389.77 328.45 330.39 241.08 +idéel idéel adj m s 0.01 0.00 0.01 0.00 +idée_force idée_force nom f p 0.01 0.20 0.00 0.14 +idées idée nom f p 389.77 328.45 59.38 87.36 +idéogramme idéogramme nom m s 0.39 0.74 0.17 0.00 +idéogrammes idéogramme nom m p 0.39 0.74 0.22 0.74 +idéographie idéographie nom f s 0.01 0.00 0.01 0.00 +idéographique idéographique adj m s 0.00 0.07 0.00 0.07 +idéologie idéologie nom f s 2.59 4.05 2.07 2.97 +idéologies idéologie nom f p 2.59 4.05 0.52 1.08 +idéologique idéologique adj s 1.80 2.70 1.41 1.89 +idéologiquement idéologiquement adv 0.10 0.27 0.10 0.27 +idéologiques idéologique adj p 1.80 2.70 0.39 0.81 +idéologue idéologue nom s 0.38 0.54 0.28 0.34 +idéologues idéologue nom p 0.38 0.54 0.10 0.20 +idylle idylle nom f s 1.13 3.31 1.07 2.70 +idylles idylle nom f p 1.13 3.31 0.06 0.61 +idyllique idyllique adj s 0.82 1.76 0.79 1.35 +idylliques idyllique adj p 0.82 1.76 0.03 0.41 +if if nom m s 7.19 1.55 7.17 0.81 +ifs if nom m p 7.19 1.55 0.02 0.74 +iftar iftar nom m s 0.00 0.07 0.00 0.07 +igloo igloo nom m s 1.08 0.27 0.54 0.07 +igloos igloo nom m p 1.08 0.27 0.55 0.20 +igname igname nom f s 0.18 0.34 0.05 0.07 +ignames igname nom f p 0.18 0.34 0.13 0.27 +ignare ignare adj s 0.75 1.42 0.55 0.88 +ignares ignare nom p 0.78 0.61 0.30 0.34 +ignifuge ignifuge adj f s 0.00 0.07 0.00 0.07 +ignifugeant ignifuger ver 0.17 0.07 0.01 0.00 par:pre; +ignifuger ignifuger ver 0.17 0.07 0.00 0.07 inf; +ignifugé ignifugé adj m s 0.07 0.20 0.04 0.07 +ignifugée ignifugé adj f s 0.07 0.20 0.02 0.07 +ignifugées ignifuger ver f p 0.17 0.07 0.14 0.00 par:pas; +ignifugés ignifugé adj m p 0.07 0.20 0.01 0.07 +ignition ignition nom f s 0.05 0.34 0.05 0.34 +ignoble ignoble adj s 8.11 12.30 6.95 9.19 +ignoblement ignoblement adv 0.16 0.88 0.16 0.88 +ignobles ignoble adj p 8.11 12.30 1.16 3.11 +ignominie ignominie nom f s 0.88 3.72 0.76 3.18 +ignominies ignominie nom f p 0.88 3.72 0.13 0.54 +ignominieuse ignominieux adj f s 0.39 0.88 0.12 0.54 +ignominieusement ignominieusement adv 0.00 0.47 0.00 0.47 +ignominieuses ignominieux adj f p 0.39 0.88 0.01 0.07 +ignominieux ignominieux adj m s 0.39 0.88 0.26 0.27 +ignora ignorer ver 156.55 108.45 0.26 1.49 ind:pas:3s; +ignorai ignorer ver 156.55 108.45 0.02 0.14 ind:pas:1s; +ignoraient ignorer ver 156.55 108.45 1.20 4.46 ind:imp:3p; +ignorais ignorer ver 156.55 108.45 24.82 10.61 ind:imp:1s;ind:imp:2s; +ignorait ignorer ver 156.55 108.45 5.32 26.01 ind:imp:3s; +ignorance ignorance nom f s 6.54 16.82 6.54 16.35 +ignorances ignorance nom f p 6.54 16.82 0.00 0.47 +ignorant ignorant adj m s 3.90 6.22 1.79 2.50 +ignorante ignorant adj f s 3.90 6.22 0.61 1.55 +ignorantes ignorant adj f p 3.90 6.22 0.15 0.41 +ignorantins ignorantin adj m p 0.00 0.14 0.00 0.14 +ignorants ignorant nom m p 3.41 3.45 1.36 1.08 +ignorassent ignorer ver 156.55 108.45 0.00 0.07 sub:imp:3p; +ignore ignorer ver 156.55 108.45 76.78 22.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ignorent ignorer ver 156.55 108.45 5.09 5.07 ind:pre:3p; +ignorer ignorer ver 156.55 108.45 13.04 16.89 inf; +ignorera ignorer ver 156.55 108.45 0.31 0.27 ind:fut:3s; +ignorerai ignorer ver 156.55 108.45 0.13 0.41 ind:fut:1s; +ignoreraient ignorer ver 156.55 108.45 0.01 0.00 cnd:pre:3p; +ignorerais ignorer ver 156.55 108.45 0.15 0.00 cnd:pre:1s;cnd:pre:2s; +ignorerait ignorer ver 156.55 108.45 0.04 0.27 cnd:pre:3s; +ignoreras ignorer ver 156.55 108.45 0.04 0.00 ind:fut:2s; +ignoreriez ignorer ver 156.55 108.45 0.09 0.00 cnd:pre:2p; +ignorerons ignorer ver 156.55 108.45 0.02 0.00 ind:fut:1p; +ignoreront ignorer ver 156.55 108.45 0.10 0.00 ind:fut:3p; +ignores ignorer ver 156.55 108.45 5.89 1.42 ind:pre:2s;sub:pre:2s; +ignorez ignorer ver 156.55 108.45 9.84 2.50 imp:pre:2p;ind:pre:2p; +ignoriez ignorer ver 156.55 108.45 1.84 0.61 ind:imp:2p;sub:pre:2p; +ignorions ignorer ver 156.55 108.45 0.73 1.49 ind:imp:1p; +ignorons ignorer ver 156.55 108.45 4.50 1.28 imp:pre:1p;ind:pre:1p; +ignorât ignorer ver 156.55 108.45 0.00 0.54 sub:imp:3s; +ignorèrent ignorer ver 156.55 108.45 0.00 0.20 ind:pas:3p; +ignoré ignorer ver m s 156.55 108.45 3.36 3.58 par:pas; +ignorée ignorer ver f s 156.55 108.45 0.70 1.28 par:pas; +ignorées ignorer ver f p 156.55 108.45 0.14 0.34 par:pas; +ignorés ignorer ver m p 156.55 108.45 0.41 0.74 par:pas; +igné igné adj m s 0.02 0.20 0.00 0.20 +ignée igné adj f s 0.02 0.20 0.02 0.00 +iguane iguane nom m s 0.69 0.74 0.63 0.20 +iguanes iguane nom m p 0.69 0.74 0.06 0.54 +iguanodon iguanodon nom m s 0.00 0.14 0.00 0.07 +iguanodons iguanodon nom m p 0.00 0.14 0.00 0.07 +igue igue nom f s 0.01 0.07 0.01 0.00 +igues igue nom f p 0.01 0.07 0.00 0.07 +ikebana ikebana nom m s 0.02 0.07 0.02 0.07 +il il pro_per m s 13222.93 15832.09 13222.93 15832.09 +iles ile nom m p 1.25 0.20 1.25 0.20 +iliaque iliaque adj f s 0.14 0.20 0.14 0.07 +iliaques iliaque adj f p 0.14 0.20 0.01 0.14 +ilium ilium nom m s 0.01 0.00 0.01 0.00 +illettrisme illettrisme nom m s 0.05 0.07 0.05 0.07 +illettré illettré adj m s 1.54 1.01 1.04 0.41 +illettrée illettré adj f s 1.54 1.01 0.33 0.47 +illettrés illettré nom m p 0.62 0.68 0.20 0.27 +illicite illicite adj s 1.07 1.42 0.44 0.74 +illicitement illicitement adv 0.01 0.00 0.01 0.00 +illicites illicite adj p 1.07 1.42 0.63 0.68 +illico illico adv_sup 2.19 7.16 2.19 7.16 +illimité illimité adj m s 2.56 3.92 1.52 1.49 +illimitée illimité adj f s 2.56 3.92 0.60 1.69 +illimitées illimité adj f p 2.56 3.92 0.26 0.54 +illimités illimité adj m p 2.56 3.92 0.18 0.20 +illisible illisible adj s 0.83 6.76 0.68 5.68 +illisibles illisible adj p 0.83 6.76 0.14 1.08 +illogique illogique adj s 0.46 0.88 0.39 0.81 +illogiquement illogiquement adv 0.00 0.07 0.00 0.07 +illogiques illogique adj p 0.46 0.88 0.07 0.07 +illogisme illogisme nom m s 0.01 0.47 0.01 0.34 +illogismes illogisme nom m p 0.01 0.47 0.00 0.14 +illégal illégal adj m s 19.88 1.76 11.93 0.88 +illégale illégal adj f s 19.88 1.76 4.03 0.47 +illégalement illégalement adv 1.87 0.20 1.87 0.20 +illégales illégal adj f p 19.88 1.76 2.28 0.41 +illégalistes illégaliste nom p 0.00 0.07 0.00 0.07 +illégalité illégalité nom f s 0.55 0.81 0.55 0.81 +illégaux illégal adj m p 19.88 1.76 1.65 0.00 +illégitime illégitime adj s 1.52 0.95 1.18 0.61 +illégitimement illégitimement adv 0.02 0.00 0.02 0.00 +illégitimes illégitime adj p 1.52 0.95 0.34 0.34 +illégitimité illégitimité nom f s 0.04 0.20 0.04 0.20 +illumina illuminer ver 6.43 20.00 0.14 2.57 ind:pas:3s; +illuminaient illuminer ver 6.43 20.00 0.21 1.35 ind:imp:3p; +illuminait illuminer ver 6.43 20.00 0.27 3.11 ind:imp:3s; +illuminant illuminer ver 6.43 20.00 0.20 1.01 par:pre; +illuminateurs illuminateur nom m p 0.00 0.07 0.00 0.07 +illumination illumination nom f s 1.89 4.19 1.63 3.11 +illuminations illumination nom f p 1.89 4.19 0.26 1.08 +illumine illuminer ver 6.43 20.00 2.10 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +illuminent illuminer ver 6.43 20.00 0.36 0.54 ind:pre:3p; +illuminer illuminer ver 6.43 20.00 1.12 1.08 inf; +illuminera illuminer ver 6.43 20.00 0.17 0.07 ind:fut:3s; +illuminerai illuminer ver 6.43 20.00 0.02 0.00 ind:fut:1s; +illuminerait illuminer ver 6.43 20.00 0.00 0.20 cnd:pre:3s; +illumineront illuminer ver 6.43 20.00 0.01 0.07 ind:fut:3p; +illuminez illuminer ver 6.43 20.00 0.17 0.00 imp:pre:2p; +illuministes illuministe adj f p 0.00 0.07 0.00 0.07 +illuminèrent illuminer ver 6.43 20.00 0.00 0.47 ind:pas:3p; +illuminé illuminer ver m s 6.43 20.00 1.05 2.91 par:pas; +illuminée illuminer ver f s 6.43 20.00 0.56 2.03 par:pas; +illuminées illuminé adj f p 0.60 7.57 0.01 1.08 +illuminés illuminé nom m p 0.80 2.50 0.16 0.81 +illusion illusion nom f s 19.14 47.36 11.19 30.27 +illusionnait illusionner ver 0.25 1.01 0.00 0.20 ind:imp:3s; +illusionne illusionner ver 0.25 1.01 0.05 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +illusionnent illusionner ver 0.25 1.01 0.00 0.07 ind:pre:3p; +illusionner illusionner ver 0.25 1.01 0.10 0.41 inf; +illusionnez illusionner ver 0.25 1.01 0.10 0.07 imp:pre:2p;ind:pre:2p; +illusionnisme illusionnisme nom m s 0.01 0.34 0.01 0.34 +illusionniste illusionniste nom s 0.17 0.61 0.14 0.54 +illusionnistes illusionniste nom p 0.17 0.61 0.04 0.07 +illusions illusion nom f p 19.14 47.36 7.95 17.09 +illusoire illusoire adj s 0.95 5.81 0.81 4.59 +illusoirement illusoirement adv 0.00 0.14 0.00 0.14 +illusoires illusoire adj p 0.95 5.81 0.15 1.22 +illustra illustrer ver 2.59 11.55 0.04 0.27 ind:pas:3s; +illustraient illustrer ver 2.59 11.55 0.01 0.61 ind:imp:3p; +illustrait illustrer ver 2.59 11.55 0.04 0.68 ind:imp:3s; +illustrant illustrer ver 2.59 11.55 0.08 1.15 par:pre; +illustrateur illustrateur nom m s 0.15 0.20 0.10 0.20 +illustration illustration nom f s 1.37 7.91 0.67 4.86 +illustrations illustration nom f p 1.37 7.91 0.70 3.04 +illustratrice illustrateur nom f s 0.15 0.20 0.05 0.00 +illustre illustre adj s 4.38 9.66 2.60 6.22 +illustrement illustrement adv 0.00 0.20 0.00 0.20 +illustrent illustrer ver 2.59 11.55 0.08 0.54 ind:pre:3p; +illustrer illustrer ver 2.59 11.55 1.08 3.18 inf; +illustrera illustrer ver 2.59 11.55 0.01 0.07 ind:fut:3s; +illustrerai illustrer ver 2.59 11.55 0.01 0.00 ind:fut:1s; +illustrerait illustrer ver 2.59 11.55 0.01 0.07 cnd:pre:3s; +illustres illustre adj p 4.38 9.66 1.78 3.45 +illustrions illustrer ver 2.59 11.55 0.00 0.07 ind:imp:1p; +illustrissime illustrissime adj f s 0.00 0.54 0.00 0.27 +illustrissimes illustrissime adj f p 0.00 0.54 0.00 0.27 +illustré illustré adj m s 0.74 2.77 0.10 1.55 +illustrée illustrer ver f s 2.59 11.55 0.34 0.61 par:pas; +illustrées illustré adj f p 0.74 2.77 0.15 0.07 +illustrés illustré adj m p 0.74 2.77 0.39 0.74 +ilote ilote nom m s 0.00 0.61 0.00 0.27 +ilotes ilote nom m p 0.00 0.61 0.00 0.34 +ilotisme ilotisme nom m s 0.14 0.00 0.14 0.00 +ils ils pro_per m p 3075.07 2809.53 3075.07 2809.53 +iléaux iléal adj m p 0.01 0.00 0.01 0.00 +iléus iléus nom m 0.03 0.00 0.03 0.00 +image image nom f s 82.13 188.92 51.34 119.39 +imageant imager ver 0.73 1.76 0.01 0.00 par:pre; +imager imager ver 0.73 1.76 0.02 0.07 inf; +imagerie imagerie nom f s 0.54 2.09 0.54 1.89 +imageries imagerie nom f p 0.54 2.09 0.00 0.20 +images image nom f p 82.13 188.92 30.79 69.53 +imageur imageur nom m s 0.03 0.00 0.02 0.00 +imageurs imageur nom m p 0.03 0.00 0.01 0.00 +imagier imagier nom m s 0.00 1.01 0.00 0.27 +imagiers imagier nom m p 0.00 1.01 0.00 0.74 +imagina imaginer ver 194.28 241.15 0.29 8.78 ind:pas:3s; +imaginable imaginable adj s 0.79 2.36 0.20 1.08 +imaginables imaginable adj p 0.79 2.36 0.58 1.28 +imaginai imaginer ver 194.28 241.15 0.05 3.72 ind:pas:1s; +imaginaient imaginer ver 194.28 241.15 0.27 2.91 ind:imp:3p; +imaginaire imaginaire adj s 5.34 19.32 3.80 12.36 +imaginairement imaginairement adv 0.00 0.14 0.00 0.14 +imaginaires imaginaire adj p 5.34 19.32 1.54 6.96 +imaginais imaginer ver 194.28 241.15 11.64 19.66 ind:imp:1s;ind:imp:2s; +imaginait imaginer ver 194.28 241.15 1.63 27.84 ind:imp:3s; +imaginant imaginer ver 194.28 241.15 0.78 7.57 par:pre; +imaginatif imaginatif adj m s 0.75 2.09 0.44 1.08 +imaginatifs imaginatif adj m p 0.75 2.09 0.02 0.34 +imagination imagination nom f s 27.64 48.58 27.14 45.81 +imaginations imagination nom f p 27.64 48.58 0.50 2.77 +imaginative imaginatif adj f s 0.75 2.09 0.15 0.54 +imaginatives imaginatif adj f p 0.75 2.09 0.14 0.14 +imagine imaginer ver 194.28 241.15 77.33 53.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +imaginent imaginer ver 194.28 241.15 2.05 4.46 ind:pre:3p; +imaginer imaginer ver 194.28 241.15 37.09 64.26 inf; +imaginerai imaginer ver 194.28 241.15 0.08 0.14 ind:fut:1s; +imagineraient imaginer ver 194.28 241.15 0.23 0.41 cnd:pre:3p; +imaginerais imaginer ver 194.28 241.15 0.03 0.27 cnd:pre:1s; +imaginerait imaginer ver 194.28 241.15 0.13 0.81 cnd:pre:3s; +imagineras imaginer ver 194.28 241.15 0.05 0.00 ind:fut:2s; +imaginerez imaginer ver 194.28 241.15 0.20 0.00 ind:fut:2p; +imagineriez imaginer ver 194.28 241.15 0.00 0.07 cnd:pre:2p; +imaginerons imaginer ver 194.28 241.15 0.00 0.07 ind:fut:1p; +imagineront imaginer ver 194.28 241.15 0.04 0.14 ind:fut:3p; +imagines imaginer ver 194.28 241.15 19.91 9.46 ind:pre:2s;sub:pre:2s; +imaginez imaginer ver 194.28 241.15 23.35 10.54 imp:pre:2p;ind:pre:2p; +imaginiez imaginer ver 194.28 241.15 0.86 0.41 ind:imp:2p;sub:pre:2p; +imaginions imaginer ver 194.28 241.15 0.48 1.55 ind:imp:1p; +imaginâmes imaginer ver 194.28 241.15 0.00 0.14 ind:pas:1p; +imaginons imaginer ver 194.28 241.15 2.80 0.74 imp:pre:1p;ind:pre:1p; +imaginât imaginer ver 194.28 241.15 0.00 0.20 sub:imp:3s; +imaginèrent imaginer ver 194.28 241.15 0.02 0.41 ind:pas:3p; +imaginé imaginer ver m s 194.28 241.15 13.33 18.38 par:pas; +imaginée imaginer ver f s 194.28 241.15 1.34 2.77 par:pas; +imaginées imaginer ver f p 194.28 241.15 0.09 1.01 par:pas; +imaginés imaginer ver m p 194.28 241.15 0.21 0.88 par:pas; +imago imago nom m s 0.00 0.07 0.00 0.07 +imagé imagé adj m s 0.10 1.01 0.08 0.34 +imagée imagé adj f s 0.10 1.01 0.02 0.34 +imagées imager ver f p 0.73 1.76 0.01 0.07 par:pas; +imagés imagé adj m p 0.10 1.01 0.00 0.20 +imam imam nom m s 1.27 0.34 1.11 0.14 +imams imam nom m p 1.27 0.34 0.16 0.20 +iman iman nom m s 0.02 0.07 0.02 0.07 +imbaisable imbaisable adj s 0.14 0.07 0.14 0.07 +imbattable imbattable adj s 2.12 2.43 1.86 2.03 +imbattables imbattable adj m p 2.12 2.43 0.27 0.41 +imberbe imberbe adj s 0.27 1.35 0.21 0.95 +imberbes imberbe adj p 0.27 1.35 0.06 0.41 +imbiba imbiber ver 1.28 7.36 0.00 0.14 ind:pas:3s; +imbibaient imbiber ver 1.28 7.36 0.00 0.20 ind:imp:3p; +imbibais imbiber ver 1.28 7.36 0.01 0.00 ind:imp:1s; +imbibait imbiber ver 1.28 7.36 0.00 0.61 ind:imp:3s; +imbibant imbiber ver 1.28 7.36 0.01 0.41 par:pre; +imbibe imbiber ver 1.28 7.36 0.03 0.54 ind:pre:3s; +imbiber imbiber ver 1.28 7.36 0.30 0.34 inf; +imbiberai imbiber ver 1.28 7.36 0.02 0.00 ind:fut:1s; +imbiberais imbiber ver 1.28 7.36 0.00 0.07 cnd:pre:1s; +imbiberait imbiber ver 1.28 7.36 0.01 0.07 cnd:pre:3s; +imbibition imbibition nom f s 0.00 0.07 0.00 0.07 +imbibé imbiber ver m s 1.28 7.36 0.39 2.77 par:pas; +imbibée imbiber ver f s 1.28 7.36 0.27 1.15 par:pas; +imbibées imbibé adj f p 0.36 0.81 0.14 0.00 +imbibés imbiber ver m p 1.28 7.36 0.21 0.88 par:pas; +imbitable imbitable adj m s 0.03 0.07 0.01 0.07 +imbitables imbitable adj m p 0.03 0.07 0.02 0.00 +imbittable imbittable adj s 0.00 0.07 0.00 0.07 +imbrication imbrication nom f s 0.00 0.61 0.00 0.47 +imbrications imbrication nom f p 0.00 0.61 0.00 0.14 +imbriquaient imbriquer ver 0.23 1.35 0.00 0.07 ind:imp:3p; +imbriquait imbriquer ver 0.23 1.35 0.00 0.14 ind:imp:3s; +imbriquant imbriquer ver 0.23 1.35 0.00 0.14 par:pre; +imbrique imbriquer ver 0.23 1.35 0.04 0.20 ind:pre:3s; +imbriquent imbriquer ver 0.23 1.35 0.03 0.27 ind:pre:3p; +imbriquer imbriquer ver 0.23 1.35 0.10 0.07 inf; +imbriqué imbriqué adj m s 0.05 0.74 0.00 0.14 +imbriquée imbriquer ver f s 0.23 1.35 0.01 0.07 par:pas; +imbriquées imbriqué adj f p 0.05 0.74 0.03 0.47 +imbriqués imbriquer ver m p 0.23 1.35 0.04 0.20 par:pas; +imbrisable imbrisable adj s 0.01 0.00 0.01 0.00 +imbroglio imbroglio nom m s 0.46 1.69 0.33 1.55 +imbroglios imbroglio nom m p 0.46 1.69 0.13 0.14 +imbu imbu adj m s 0.56 1.42 0.41 0.88 +imbécile imbécile nom s 43.42 30.68 35.01 20.47 +imbécilement imbécilement adv 0.00 0.27 0.00 0.27 +imbéciles imbécile nom p 43.42 30.68 8.42 10.20 +imbécillité imbécillité nom f s 0.25 2.70 0.20 2.23 +imbécillités imbécillité nom f p 0.25 2.70 0.05 0.47 +imbue imbu adj f s 0.56 1.42 0.09 0.27 +imbues imbu adj f p 0.56 1.42 0.01 0.07 +imbus imbu adj m p 0.56 1.42 0.05 0.20 +imbuvable imbuvable adj f s 0.60 0.47 0.60 0.47 +imidazole imidazole nom m s 0.03 0.00 0.03 0.00 +imita imiter ver 14.69 41.35 0.01 3.51 ind:pas:3s; +imitable imitable adj m s 0.00 0.14 0.00 0.07 +imitables imitable adj m p 0.00 0.14 0.00 0.07 +imitai imiter ver 14.69 41.35 0.01 0.07 ind:pas:1s; +imitaient imiter ver 14.69 41.35 0.14 0.95 ind:imp:3p; +imitais imiter ver 14.69 41.35 0.45 0.81 ind:imp:1s;ind:imp:2s; +imitait imiter ver 14.69 41.35 0.45 4.12 ind:imp:3s; +imitant imiter ver 14.69 41.35 0.46 7.64 par:pre; +imitateur imitateur nom m s 1.00 0.47 0.48 0.34 +imitateurs imitateur nom m p 1.00 0.47 0.39 0.14 +imitation imitation nom f s 4.25 7.30 3.33 5.68 +imitations imitation nom f p 4.25 7.30 0.92 1.62 +imitative imitatif adj f s 0.00 0.20 0.00 0.14 +imitatives imitatif adj f p 0.00 0.20 0.00 0.07 +imitatrice imitateur nom f s 1.00 0.47 0.13 0.00 +imite imiter ver 14.69 41.35 3.85 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imitent imiter ver 14.69 41.35 0.78 0.95 ind:pre:3p; +imiter imiter ver 14.69 41.35 6.00 12.97 inf; +imitera imiter ver 14.69 41.35 0.11 0.07 ind:fut:3s; +imiterai imiter ver 14.69 41.35 0.05 0.07 ind:fut:1s; +imiteraient imiter ver 14.69 41.35 0.01 0.07 cnd:pre:3p; +imiterais imiter ver 14.69 41.35 0.01 0.07 cnd:pre:1s; +imiterait imiter ver 14.69 41.35 0.04 0.14 cnd:pre:3s; +imiteront imiter ver 14.69 41.35 0.08 0.07 ind:fut:3p; +imites imiter ver 14.69 41.35 0.70 0.07 ind:pre:2s; +imitez imiter ver 14.69 41.35 0.50 0.07 imp:pre:2p;ind:pre:2p; +imitiez imiter ver 14.69 41.35 0.04 0.07 ind:imp:2p; +imitions imiter ver 14.69 41.35 0.01 0.07 ind:imp:1p; +imitâmes imiter ver 14.69 41.35 0.00 0.07 ind:pas:1p; +imitons imiter ver 14.69 41.35 0.26 0.14 imp:pre:1p;ind:pre:1p; +imitât imiter ver 14.69 41.35 0.00 0.07 sub:imp:3s; +imitèrent imiter ver 14.69 41.35 0.00 1.08 ind:pas:3p; +imité imiter ver m s 14.69 41.35 0.40 2.57 par:pas; +imitée imiter ver f s 14.69 41.35 0.28 0.68 par:pas; +imitées imiter ver f p 14.69 41.35 0.02 0.41 par:pas; +imités imiter ver m p 14.69 41.35 0.03 0.68 par:pas; +immaculation immaculation nom f s 0.00 0.54 0.00 0.54 +immaculé immaculé adj m s 2.29 9.39 1.05 2.84 +immaculée immaculé adj f s 2.29 9.39 0.66 3.85 +immaculées immaculé adj f p 2.29 9.39 0.27 1.08 +immaculés immaculé adj m p 2.29 9.39 0.32 1.62 +immanence immanence nom f s 0.00 0.07 0.00 0.07 +immanent immanent adj m s 0.07 1.01 0.00 0.14 +immanente immanent adj f s 0.07 1.01 0.07 0.88 +immanentisme immanentisme nom m s 0.00 0.07 0.00 0.07 +immangeable immangeable adj m s 0.74 0.68 0.69 0.54 +immangeables immangeable adj p 0.74 0.68 0.05 0.14 +immanquable immanquable adj s 0.04 0.14 0.04 0.07 +immanquablement immanquablement adv 0.10 3.24 0.10 3.24 +immanquables immanquable adj p 0.04 0.14 0.00 0.07 +immarcescible immarcescible adj s 0.00 0.07 0.00 0.07 +immatriculation immatriculation nom f s 4.64 0.95 4.13 0.88 +immatriculations immatriculation nom f p 4.64 0.95 0.51 0.07 +immatriculer immatriculer ver 0.95 1.15 0.04 0.00 inf; +immatriculé immatriculé adj m s 1.68 0.07 0.28 0.00 +immatriculée immatriculé adj f s 1.68 0.07 1.40 0.07 +immatriculées immatriculer ver f p 0.95 1.15 0.03 0.27 par:pas; +immature immature adj s 2.98 0.27 2.42 0.20 +immatures immature adj p 2.98 0.27 0.56 0.07 +immatérialité immatérialité nom f s 0.00 0.07 0.00 0.07 +immatériel immatériel adj m s 0.42 3.72 0.23 1.76 +immatérielle immatériel adj f s 0.42 3.72 0.17 1.49 +immatérielles immatériel adj f p 0.42 3.72 0.00 0.20 +immatériels immatériel adj m p 0.42 3.72 0.03 0.27 +immaturité immaturité nom f s 0.48 0.34 0.48 0.34 +immense immense adj s 21.56 106.89 19.01 83.99 +immenses immense adj p 21.56 106.89 2.55 22.91 +immensité immensité nom f s 1.53 8.45 1.52 7.97 +immensités immensité nom f p 1.53 8.45 0.01 0.47 +immensément immensément adv 0.39 2.30 0.39 2.30 +immensurable immensurable adj s 0.00 0.14 0.00 0.14 +immerge immerger ver 1.95 2.84 0.17 0.14 ind:pre:1s;ind:pre:3s; +immergea immerger ver 1.95 2.84 0.00 0.14 ind:pas:3s; +immergeait immerger ver 1.95 2.84 0.00 0.27 ind:imp:3s; +immergeant immerger ver 1.95 2.84 0.01 0.00 par:pre; +immergent immerger ver 1.95 2.84 0.00 0.07 ind:pre:3p; +immergeons immerger ver 1.95 2.84 0.10 0.00 imp:pre:1p; +immerger immerger ver 1.95 2.84 0.39 0.41 inf; +immergerons immerger ver 1.95 2.84 0.01 0.00 ind:fut:1p; +immergez immerger ver 1.95 2.84 0.03 0.00 imp:pre:2p; +immergiez immerger ver 1.95 2.84 0.00 0.07 ind:imp:2p; +immergèrent immerger ver 1.95 2.84 0.10 0.07 ind:pas:3p; +immergé immerger ver m s 1.95 2.84 0.67 0.81 par:pas; +immergée immerger ver f s 1.95 2.84 0.22 0.41 par:pas; +immergées immergé adj f p 0.29 1.42 0.11 0.34 +immergés immerger ver m p 1.95 2.84 0.25 0.27 par:pas; +immersion immersion nom f s 1.29 1.15 1.29 1.15 +immettable immettable adj s 0.16 0.14 0.16 0.14 +immeuble immeuble nom m s 30.03 68.78 24.54 50.88 +immeubles immeuble nom m p 30.03 68.78 5.49 17.91 +immigrai immigrer ver 0.68 0.34 0.00 0.07 ind:pas:1s; +immigrant immigrant nom m s 1.46 0.88 0.43 0.20 +immigrante immigrant nom f s 1.46 0.88 0.06 0.00 +immigrants immigrant nom m p 1.46 0.88 0.96 0.68 +immigration immigration nom f s 4.91 0.81 4.91 0.81 +immigrer immigrer ver 0.68 0.34 0.29 0.07 inf; +immigré immigré nom m s 1.54 2.84 0.42 0.20 +immigrée immigré adj f s 0.83 1.28 0.28 0.07 +immigrées immigré adj f p 0.83 1.28 0.01 0.20 +immigrés immigré nom m p 1.54 2.84 1.02 2.50 +imminence imminence nom f s 0.12 3.38 0.12 3.38 +imminent imminent adj m s 4.63 7.64 1.79 2.03 +imminente imminent adj f s 4.63 7.64 2.58 4.73 +imminentes imminent adj f p 4.63 7.64 0.17 0.41 +imminents imminent adj m p 4.63 7.64 0.08 0.47 +immisce immiscer ver 1.56 1.62 0.15 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immiscent immiscer ver 1.56 1.62 0.07 0.07 ind:pre:3p; +immiscer immiscer ver 1.56 1.62 1.17 1.08 inf; +immiscerait immiscer ver 1.56 1.62 0.02 0.00 cnd:pre:3s; +immisces immiscer ver 1.56 1.62 0.01 0.00 ind:pre:2s; +immiscibles immiscible adj m p 0.00 0.07 0.00 0.07 +immiscé immiscer ver m s 1.56 1.62 0.06 0.07 par:pas; +immiscée immiscer ver f s 1.56 1.62 0.04 0.00 par:pas; +immisçaient immiscer ver 1.56 1.62 0.00 0.14 ind:imp:3p; +immisçait immiscer ver 1.56 1.62 0.01 0.14 ind:imp:3s; +immisçant immiscer ver 1.56 1.62 0.02 0.14 par:pre; +immixtion immixtion nom f s 0.10 0.54 0.10 0.47 +immixtions immixtion nom f p 0.10 0.54 0.00 0.07 +immobile immobile adj s 8.03 116.42 6.67 87.50 +immobiles immobile adj p 8.03 116.42 1.35 28.92 +immobilier immobilier adj m s 6.43 3.45 3.27 1.76 +immobiliers immobilier adj m p 6.43 3.45 1.13 0.47 +immobilisa immobiliser ver 3.23 30.27 0.00 8.24 ind:pas:3s; +immobilisai immobiliser ver 3.23 30.27 0.00 0.27 ind:pas:1s; +immobilisaient immobiliser ver 3.23 30.27 0.00 0.54 ind:imp:3p; +immobilisais immobiliser ver 3.23 30.27 0.00 0.14 ind:imp:1s; +immobilisait immobiliser ver 3.23 30.27 0.14 2.23 ind:imp:3s; +immobilisant immobiliser ver 3.23 30.27 0.01 1.76 par:pre; +immobilisation immobilisation nom f s 0.08 0.34 0.08 0.27 +immobilisations immobilisation nom f p 0.08 0.34 0.00 0.07 +immobilise immobiliser ver 3.23 30.27 0.53 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +immobilisent immobiliser ver 3.23 30.27 0.01 0.81 ind:pre:3p; +immobiliser immobiliser ver 3.23 30.27 0.75 2.91 imp:pre:2p;inf; +immobilisera immobiliser ver 3.23 30.27 0.07 0.07 ind:fut:3s; +immobiliserait immobiliser ver 3.23 30.27 0.01 0.07 cnd:pre:3s; +immobiliseront immobiliser ver 3.23 30.27 0.02 0.07 ind:fut:3p; +immobilises immobiliser ver 3.23 30.27 0.01 0.07 ind:pre:2s; +immobilisez immobiliser ver 3.23 30.27 0.24 0.00 imp:pre:2p; +immobilisme immobilisme nom m s 0.04 0.27 0.04 0.27 +immobilisons immobiliser ver 3.23 30.27 0.00 0.07 ind:pre:1p; +immobilisèrent immobiliser ver 3.23 30.27 0.00 1.15 ind:pas:3p; +immobilisé immobiliser ver m s 3.23 30.27 0.61 3.58 par:pas; +immobilisée immobiliser ver f s 3.23 30.27 0.33 2.84 par:pas; +immobilisées immobiliser ver f p 3.23 30.27 0.02 0.41 par:pas; +immobilisés immobiliser ver m p 3.23 30.27 0.48 2.16 par:pas; +immobilière immobilier adj f s 6.43 3.45 1.75 0.81 +immobilières immobilier adj f p 6.43 3.45 0.28 0.41 +immobilité immobilité nom f s 0.66 21.96 0.66 21.62 +immobilités immobilité nom f p 0.66 21.96 0.00 0.34 +immodeste immodeste adj f s 0.13 0.20 0.13 0.07 +immodestes immodeste adj f p 0.13 0.20 0.00 0.14 +immodestie immodestie nom f s 0.01 0.07 0.01 0.07 +immodéré immodéré adj m s 0.13 1.22 0.13 0.81 +immodérée immodéré adj f s 0.13 1.22 0.00 0.14 +immodérées immodéré adj f p 0.13 1.22 0.00 0.07 +immodérément immodérément adv 0.00 0.20 0.00 0.20 +immodérés immodéré adj m p 0.13 1.22 0.00 0.20 +immola immoler ver 2.54 1.01 0.01 0.07 ind:pas:3s; +immolation immolation nom f s 0.05 0.20 0.05 0.14 +immolations immolation nom f p 0.05 0.20 0.00 0.07 +immole immoler ver 2.54 1.01 0.82 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immolent immoler ver 2.54 1.01 0.03 0.00 ind:pre:3p; +immoler immoler ver 2.54 1.01 0.73 0.20 inf; +immolé immoler ver m s 2.54 1.01 0.77 0.41 par:pas; +immolée immoler ver f s 2.54 1.01 0.01 0.07 par:pas; +immolés immoler ver m p 2.54 1.01 0.17 0.20 par:pas; +immonde immonde adj s 5.12 6.28 4.48 4.12 +immondes immonde adj p 5.12 6.28 0.64 2.16 +immondice immondice nom f s 0.46 2.36 0.02 0.14 +immondices immondice nom f p 0.46 2.36 0.44 2.23 +immoral immoral adj m s 3.88 1.76 2.96 0.81 +immorale immoral adj f s 3.88 1.76 0.59 0.27 +immoralement immoralement adv 0.27 0.00 0.27 0.00 +immorales immoral adj f p 3.88 1.76 0.07 0.14 +immoralisme immoralisme nom m s 0.00 0.20 0.00 0.20 +immoraliste immoraliste nom s 0.00 0.07 0.00 0.07 +immoralité immoralité nom f s 0.67 0.61 0.67 0.61 +immoraux immoral adj m p 3.88 1.76 0.26 0.54 +immortalisa immortaliser ver 1.17 1.62 0.01 0.14 ind:pas:3s; +immortalisait immortaliser ver 1.17 1.62 0.00 0.20 ind:imp:3s; +immortalisant immortaliser ver 1.17 1.62 0.00 0.14 par:pre; +immortalisation immortalisation nom f s 0.00 0.07 0.00 0.07 +immortalise immortaliser ver 1.17 1.62 0.09 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immortaliser immortaliser ver 1.17 1.62 0.55 0.74 inf; +immortaliseraient immortaliser ver 1.17 1.62 0.01 0.00 cnd:pre:3p; +immortaliseront immortaliser ver 1.17 1.62 0.02 0.00 ind:fut:3p; +immortalisez immortaliser ver 1.17 1.62 0.01 0.00 imp:pre:2p; +immortalisé immortaliser ver m s 1.17 1.62 0.28 0.07 par:pas; +immortalisée immortaliser ver f s 1.17 1.62 0.03 0.14 par:pas; +immortalisées immortaliser ver f p 1.17 1.62 0.11 0.07 par:pas; +immortalisés immortaliser ver m p 1.17 1.62 0.06 0.14 par:pas; +immortalité immortalité nom f s 3.67 4.53 3.67 4.46 +immortalités immortalité nom f p 3.67 4.53 0.00 0.07 +immortel immortel adj m s 6.66 5.74 2.88 2.30 +immortelle immortel adj f s 6.66 5.74 2.12 1.89 +immortelles immortel adj f p 6.66 5.74 0.36 0.54 +immortels immortel adj m p 6.66 5.74 1.29 1.01 +immortifiées immortifié adj f p 0.00 0.07 0.00 0.07 +immotivée immotivé adj f s 0.01 0.14 0.00 0.07 +immotivés immotivé adj m p 0.01 0.14 0.01 0.07 +immuabilité immuabilité nom f s 0.01 0.20 0.01 0.20 +immuable immuable adj s 1.64 9.80 1.24 7.84 +immuablement immuablement adv 0.01 0.74 0.01 0.74 +immuables immuable adj p 1.64 9.80 0.40 1.96 +immédiat immédiat adj m s 9.77 24.59 4.59 9.59 +immédiate immédiat adj f s 9.77 24.59 4.19 10.61 +immédiatement immédiatement adv 56.35 42.64 56.35 42.64 +immédiates immédiat adj f p 9.77 24.59 0.44 1.96 +immédiateté immédiateté nom f s 0.02 0.07 0.02 0.07 +immédiats immédiat adj m p 9.77 24.59 0.54 2.43 +immémorial immémorial adj m s 0.04 4.93 0.00 1.89 +immémoriale immémorial adj f s 0.04 4.93 0.01 1.15 +immémoriales immémorial adj f p 0.04 4.93 0.01 1.01 +immémoriaux immémorial adj m p 0.04 4.93 0.02 0.88 +immune immun adj f s 0.01 0.07 0.01 0.07 +immunisait immuniser ver 1.96 0.68 0.00 0.14 ind:imp:3s; +immunisation immunisation nom f s 0.08 0.07 0.08 0.07 +immunise immuniser ver 1.96 0.68 0.04 0.07 ind:pre:3s; +immunisent immuniser ver 1.96 0.68 0.03 0.00 ind:pre:3p; +immuniser immuniser ver 1.96 0.68 0.09 0.20 inf; +immunisé immuniser ver m s 1.96 0.68 0.97 0.20 par:pas; +immunisée immuniser ver f s 1.96 0.68 0.36 0.07 par:pas; +immunisés immuniser ver m p 1.96 0.68 0.48 0.00 par:pas; +immunitaire immunitaire adj s 1.73 0.54 1.64 0.20 +immunitaires immunitaire adj p 1.73 0.54 0.09 0.34 +immunité immunité nom f s 2.99 1.42 2.92 1.42 +immunités immunité nom f p 2.99 1.42 0.06 0.00 +immunodéficience immunodéficience nom f s 0.04 0.00 0.04 0.00 +immunodéficitaire immunodéficitaire adj f s 0.03 0.00 0.03 0.00 +immunodéprimé immunodéprimé adj m s 0.02 0.00 0.02 0.00 +immunogène immunogène adj f s 0.00 0.14 0.00 0.14 +immunologie immunologie nom f s 0.02 0.00 0.02 0.00 +immunologique immunologique adj s 0.05 0.07 0.05 0.07 +immunologiste immunologiste nom s 0.09 0.00 0.09 0.00 +immunostimulant immunostimulant nom m s 0.01 0.00 0.01 0.00 +immunothérapie immunothérapie nom f s 0.01 0.00 0.01 0.00 +immérité immérité adj m s 0.24 0.88 0.20 0.27 +imméritée immérité adj f s 0.24 0.88 0.02 0.27 +imméritées immérité adj f p 0.24 0.88 0.00 0.20 +immérités immérité adj m p 0.24 0.88 0.03 0.14 +immutabilité immutabilité nom f s 0.14 0.00 0.14 0.00 +impôt impôt nom m s 15.14 6.55 2.67 1.76 +impôts impôt nom m p 15.14 6.55 12.47 4.80 +impact impact nom m s 9.54 2.50 8.36 2.30 +impacts impact nom m p 9.54 2.50 1.19 0.20 +impair impair adj m s 0.58 1.08 0.20 0.68 +impaire impair adj f s 0.58 1.08 0.03 0.00 +impaires impair adj f p 0.58 1.08 0.00 0.14 +impairs impair adj m p 0.58 1.08 0.36 0.27 +impala impala nom m s 0.19 1.22 0.17 1.01 +impalas impala nom m p 0.19 1.22 0.02 0.20 +impalpabilité impalpabilité nom f s 0.00 0.07 0.00 0.07 +impalpable impalpable adj s 0.60 5.27 0.60 3.72 +impalpablement impalpablement adv 0.00 0.07 0.00 0.07 +impalpables impalpable adj p 0.60 5.27 0.00 1.55 +imparable imparable adj s 0.43 0.81 0.41 0.68 +imparablement imparablement adv 0.00 0.07 0.00 0.07 +imparables imparable adj f p 0.43 0.81 0.02 0.14 +impardonnable impardonnable adj s 2.84 3.11 2.46 2.70 +impardonnablement impardonnablement adv 0.00 0.07 0.00 0.07 +impardonnables impardonnable adj p 2.84 3.11 0.39 0.41 +imparfait imparfait adj m s 1.51 3.11 0.74 1.01 +imparfaite imparfait adj f s 1.51 3.11 0.23 1.22 +imparfaitement imparfaitement adv 0.02 0.81 0.02 0.81 +imparfaites imparfait adj f p 1.51 3.11 0.13 0.20 +imparfaits imparfait adj m p 1.51 3.11 0.41 0.68 +impartageable impartageable adj s 0.00 0.07 0.00 0.07 +imparti imparti adj m s 0.27 0.07 0.27 0.07 +impartial impartial adj m s 1.72 1.28 0.81 0.74 +impartiale impartial adj f s 1.72 1.28 0.69 0.27 +impartialement impartialement adv 0.04 0.34 0.04 0.34 +impartiales impartial adj f p 1.72 1.28 0.01 0.07 +impartialité impartialité nom f s 0.32 0.95 0.32 0.95 +impartiaux impartial adj m p 1.72 1.28 0.22 0.20 +impartie impartir ver f s 0.19 0.95 0.00 0.14 par:pas; +impartir impartir ver 0.19 0.95 0.00 0.14 inf; +impartis impartir ver m p 0.19 0.95 0.00 0.27 par:pas; +impassable impassable adj s 0.02 0.00 0.02 0.00 +impasse impasse nom f s 6.95 10.47 6.30 9.19 +impasses impasse nom f p 6.95 10.47 0.65 1.28 +impassibilité impassibilité nom f s 0.00 2.43 0.00 2.43 +impassible impassible adj s 1.48 11.49 1.29 9.66 +impassiblement impassiblement adv 0.00 0.14 0.00 0.14 +impassibles impassible adj p 1.48 11.49 0.18 1.82 +impatiemment impatiemment adv 0.79 2.50 0.79 2.50 +impatience impatience nom f s 7.59 33.78 7.59 33.11 +impatiences impatience nom f p 7.59 33.78 0.00 0.68 +impatiens impatiens nom f 0.01 0.00 0.01 0.00 +impatient impatient adj m s 12.64 16.76 7.40 9.19 +impatienta impatienter ver 2.74 10.54 0.00 1.28 ind:pas:3s; +impatientai impatienter ver 2.74 10.54 0.01 0.14 ind:pas:1s; +impatientaient impatienter ver 2.74 10.54 0.01 0.47 ind:imp:3p; +impatientais impatienter ver 2.74 10.54 0.00 0.27 ind:imp:1s; +impatientait impatienter ver 2.74 10.54 0.18 2.43 ind:imp:3s; +impatientant impatienter ver 2.74 10.54 0.00 0.14 par:pre; +impatiente impatient adj f s 12.64 16.76 3.34 3.99 +impatientent impatienter ver 2.74 10.54 0.63 0.34 ind:pre:3p; +impatienter impatienter ver 2.74 10.54 0.72 0.95 inf; +impatienterait impatienter ver 2.74 10.54 0.00 0.07 cnd:pre:3s; +impatientes impatient adj f p 12.64 16.76 0.26 0.68 +impatientez impatienter ver 2.74 10.54 0.01 0.27 imp:pre:2p;ind:pre:2p; +impatients impatient adj m p 12.64 16.76 1.63 2.91 +impatientèrent impatienter ver 2.74 10.54 0.00 0.14 ind:pas:3p; +impatienté impatienter ver m s 2.74 10.54 0.01 0.81 par:pas; +impatientée impatienter ver f s 2.74 10.54 0.01 0.34 par:pas; +impatientés impatienter ver m p 2.74 10.54 0.01 0.00 par:pas; +impatronisait impatroniser ver 0.00 0.20 0.00 0.07 ind:imp:3s; +impatroniser impatroniser ver 0.00 0.20 0.00 0.07 inf; +impatronisé impatroniser ver m s 0.00 0.20 0.00 0.07 par:pas; +impavide impavide adj s 0.29 1.89 0.29 1.28 +impavides impavide adj f p 0.29 1.89 0.00 0.61 +impayable impayable adj m s 0.36 0.81 0.30 0.74 +impayables impayable adj p 0.36 0.81 0.06 0.07 +impayé impayé adj m s 0.96 0.47 0.11 0.00 +impayée impayé adj f s 0.96 0.47 0.23 0.20 +impayées impayé adj f p 0.96 0.47 0.35 0.14 +impayés impayé adj m p 0.96 0.47 0.27 0.14 +impeachment impeachment nom m s 0.07 0.00 0.07 0.00 +impec impec adj 1.06 1.96 1.06 1.96 +impeccabilité impeccabilité nom f s 0.00 0.07 0.00 0.07 +impeccable impeccable adj s 6.96 10.07 5.67 8.24 +impeccablement impeccablement adv 0.09 2.64 0.09 2.64 +impeccables impeccable adj p 6.96 10.07 1.29 1.82 +impedimenta impedimenta nom m p 0.00 0.07 0.00 0.07 +impensable impensable adj s 2.94 2.57 2.91 2.23 +impensables impensable adj f p 2.94 2.57 0.03 0.34 +impensé impensé adj m s 0.00 0.14 0.00 0.14 +imper imper nom m s 2.08 2.91 1.95 2.50 +imperator imperator nom m s 0.09 0.20 0.09 0.20 +imperceptible imperceptible adj s 0.61 15.27 0.45 12.16 +imperceptiblement imperceptiblement adv 0.14 9.73 0.14 9.73 +imperceptibles imperceptible adj p 0.61 15.27 0.16 3.11 +imperfectible imperfectible adj s 0.01 0.00 0.01 0.00 +imperfection imperfection nom f s 1.00 1.69 0.34 0.61 +imperfections imperfection nom f p 1.00 1.69 0.66 1.08 +imperium imperium nom m s 0.08 0.07 0.08 0.07 +imperméabilisant imperméabilisant nom m s 0.01 0.00 0.01 0.00 +imperméabiliser imperméabiliser ver 0.23 0.00 0.01 0.00 inf; +imperméabilisé imperméabiliser ver m s 0.23 0.00 0.23 0.00 par:pas; +imperméabilité imperméabilité nom f s 0.00 0.14 0.00 0.14 +imperméable imperméable nom m s 2.14 11.62 1.95 10.14 +imperméables imperméable nom m p 2.14 11.62 0.19 1.49 +impers imper nom m p 2.08 2.91 0.13 0.41 +impersonnaliser impersonnaliser ver 0.01 0.00 0.01 0.00 inf; +impersonnalité impersonnalité nom f s 0.00 0.34 0.00 0.34 +impersonnel impersonnel adj m s 0.86 5.00 0.68 1.82 +impersonnelle impersonnel adj f s 0.86 5.00 0.15 2.43 +impersonnelles impersonnel adj f p 0.86 5.00 0.01 0.27 +impersonnels impersonnel adj m p 0.86 5.00 0.03 0.47 +impertinemment impertinemment adv 0.00 0.07 0.00 0.07 +impertinence impertinence nom f s 0.47 1.69 0.34 1.35 +impertinences impertinence nom f p 0.47 1.69 0.14 0.34 +impertinent impertinent adj m s 1.14 1.01 0.92 0.41 +impertinente impertinent adj f s 1.14 1.01 0.17 0.41 +impertinentes impertinent adj f p 1.14 1.01 0.04 0.20 +impertinents impertinent nom m p 0.97 0.20 0.27 0.07 +imperturbable imperturbable adj s 0.18 6.42 0.15 5.54 +imperturbablement imperturbablement adv 0.00 1.01 0.00 1.01 +imperturbables imperturbable adj p 0.18 6.42 0.04 0.88 +impie impie adj s 1.66 1.96 1.19 0.95 +impies impie nom p 1.09 1.28 0.94 0.54 +impitoyable impitoyable adj s 5.34 10.68 4.40 8.18 +impitoyablement impitoyablement adv 0.40 1.82 0.40 1.82 +impitoyables impitoyable adj p 5.34 10.68 0.94 2.50 +impiété impiété nom f s 0.74 1.08 0.74 0.95 +impiétés impiété nom f p 0.74 1.08 0.00 0.14 +implacabilité implacabilité nom f s 0.02 0.07 0.02 0.07 +implacable implacable adj s 2.02 10.54 1.77 9.46 +implacablement implacablement adv 0.11 0.20 0.11 0.20 +implacables implacable adj p 2.02 10.54 0.24 1.08 +implant implant nom m s 5.11 0.14 2.00 0.00 +implanta implanter ver 3.39 2.64 0.14 0.07 ind:pas:3s; +implantable implantable adj m s 0.01 0.00 0.01 0.00 +implantaient implanter ver 3.39 2.64 0.00 0.14 ind:imp:3p; +implantais implanter ver 3.39 2.64 0.01 0.07 ind:imp:1s; +implantait implanter ver 3.39 2.64 0.00 0.14 ind:imp:3s; +implantant implanter ver 3.39 2.64 0.05 0.07 par:pre; +implantation implantation nom f s 0.66 0.81 0.53 0.81 +implantations implantation nom f p 0.66 0.81 0.12 0.00 +implante implanter ver 3.39 2.64 0.39 0.07 ind:pre:3s; +implantent implanter ver 3.39 2.64 0.05 0.14 ind:pre:3p; +implanter implanter ver 3.39 2.64 1.10 0.95 inf; +implantez implanter ver 3.39 2.64 0.04 0.00 imp:pre:2p;ind:pre:2p; +implantiez implanter ver 3.39 2.64 0.02 0.00 ind:imp:2p; +implantons implanter ver 3.39 2.64 0.05 0.00 imp:pre:1p;ind:pre:1p; +implants implant nom m p 5.11 0.14 3.11 0.14 +implanté implanter ver m s 3.39 2.64 1.20 0.47 par:pas; +implantée implanter ver f s 3.39 2.64 0.17 0.20 par:pas; +implantées implanter ver f p 3.39 2.64 0.03 0.07 par:pas; +implantés implanter ver m p 3.39 2.64 0.14 0.27 par:pas; +implication implication nom f s 2.96 1.01 2.01 0.27 +implications implication nom f p 2.96 1.01 0.95 0.74 +implicite implicite adj s 0.26 1.28 0.23 1.08 +implicitement implicitement adv 0.19 1.15 0.19 1.15 +implicites implicite adj p 0.26 1.28 0.03 0.20 +impliqua impliquer ver 36.80 12.09 0.11 0.07 ind:pas:3s; +impliquaient impliquer ver 36.80 12.09 0.05 0.27 ind:imp:3p; +impliquait impliquer ver 36.80 12.09 0.66 2.91 ind:imp:3s; +impliquant impliquer ver 36.80 12.09 1.37 1.08 par:pre; +implique impliquer ver 36.80 12.09 6.73 3.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impliquent impliquer ver 36.80 12.09 0.60 0.61 ind:pre:3p; +impliquer impliquer ver 36.80 12.09 4.07 0.47 inf; +impliquera impliquer ver 36.80 12.09 0.07 0.07 ind:fut:3s; +impliquerai impliquer ver 36.80 12.09 0.04 0.00 ind:fut:1s; +impliquerais impliquer ver 36.80 12.09 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +impliquerait impliquer ver 36.80 12.09 0.52 0.41 cnd:pre:3s; +impliquerons impliquer ver 36.80 12.09 0.01 0.00 ind:fut:1p; +impliqueront impliquer ver 36.80 12.09 0.01 0.00 ind:fut:3p; +impliquez impliquer ver 36.80 12.09 0.34 0.00 imp:pre:2p;ind:pre:2p; +impliquions impliquer ver 36.80 12.09 0.01 0.00 ind:imp:1p; +impliquons impliquer ver 36.80 12.09 0.04 0.00 imp:pre:1p;ind:pre:1p; +impliquât impliquer ver 36.80 12.09 0.00 0.14 sub:imp:3s; +impliqué impliquer ver m s 36.80 12.09 13.38 1.28 par:pas; +impliquée impliquer ver f s 36.80 12.09 4.05 0.34 par:pas; +impliquées impliquer ver f p 36.80 12.09 1.21 0.07 par:pas; +impliqués impliquer ver m p 36.80 12.09 3.46 0.41 par:pas; +implora implorer ver 11.88 8.11 0.13 1.08 ind:pas:3s; +implorai implorer ver 11.88 8.11 0.00 0.14 ind:pas:1s; +imploraient implorer ver 11.88 8.11 0.05 0.20 ind:imp:3p; +implorais implorer ver 11.88 8.11 0.06 0.14 ind:imp:1s;ind:imp:2s; +implorait implorer ver 11.88 8.11 0.30 1.15 ind:imp:3s; +implorant implorer ver 11.88 8.11 0.49 1.22 par:pre; +implorante implorant adj f s 0.50 3.31 0.04 1.15 +implorantes implorant adj f p 0.50 3.31 0.11 0.20 +implorants implorant adj m p 0.50 3.31 0.12 0.81 +imploration imploration nom f s 0.01 1.01 0.01 0.88 +implorations imploration nom f p 0.01 1.01 0.00 0.14 +implore implorer ver 11.88 8.11 5.87 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +implorent implorer ver 11.88 8.11 0.90 0.41 ind:pre:3p; +implorer implorer ver 11.88 8.11 1.75 1.76 inf; +implorera implorer ver 11.88 8.11 0.02 0.07 ind:fut:3s; +implorerai implorer ver 11.88 8.11 0.03 0.07 ind:fut:1s; +implorerais implorer ver 11.88 8.11 0.01 0.00 cnd:pre:2s; +implorerez implorer ver 11.88 8.11 0.04 0.00 ind:fut:2p; +imploreront implorer ver 11.88 8.11 0.01 0.00 ind:fut:3p; +implorez implorer ver 11.88 8.11 0.24 0.07 imp:pre:2p;ind:pre:2p; +imploriez implorer ver 11.88 8.11 0.14 0.07 ind:imp:2p; +implorons implorer ver 11.88 8.11 1.13 0.07 imp:pre:1p;ind:pre:1p; +implorèrent implorer ver 11.88 8.11 0.01 0.07 ind:pas:3p; +imploré implorer ver m s 11.88 8.11 0.52 0.34 par:pas; +implorée implorer ver f s 11.88 8.11 0.19 0.00 par:pas; +implose imploser ver 0.47 0.34 0.07 0.27 ind:pre:1s;ind:pre:3s; +implosent imploser ver 0.47 0.34 0.02 0.07 ind:pre:3p; +imploser imploser ver 0.47 0.34 0.32 0.00 inf; +implosera imploser ver 0.47 0.34 0.04 0.00 ind:fut:3s; +implosez imploser ver 0.47 0.34 0.01 0.00 ind:pre:2p; +implosif implosif adj m s 0.06 0.07 0.04 0.00 +implosifs implosif adj m p 0.06 0.07 0.01 0.07 +implosion implosion nom f s 0.23 0.14 0.23 0.14 +implosive implosive nom f s 0.00 0.07 0.00 0.07 +implosives implosif adj f p 0.06 0.07 0.01 0.00 +implémentation implémentation nom f s 0.04 0.00 0.04 0.00 +implémenter implémenter ver 0.05 0.00 0.05 0.00 inf; +impoli impoli adj m s 4.76 0.68 3.32 0.47 +impolie impoli adj f s 4.76 0.68 0.95 0.20 +impoliment impoliment adv 0.03 0.00 0.03 0.00 +impolis impoli adj m p 4.76 0.68 0.48 0.00 +impolitesse impolitesse nom f s 1.01 0.88 1.00 0.81 +impolitesses impolitesse nom f p 1.01 0.88 0.01 0.07 +impollu impollu adj m s 0.00 0.07 0.00 0.07 +impolluable impolluable adj f s 0.00 0.07 0.00 0.07 +impollué impollué adj m s 0.00 0.47 0.00 0.14 +impolluée impollué adj f s 0.00 0.47 0.00 0.14 +impolluées impollué adj f p 0.00 0.47 0.00 0.07 +impollués impollué adj m p 0.00 0.47 0.00 0.14 +impondérable impondérable nom m s 0.10 0.61 0.03 0.20 +impondérables impondérable nom m p 0.10 0.61 0.07 0.41 +impopulaire impopulaire adj s 1.14 0.14 0.95 0.07 +impopulaires impopulaire adj m p 1.14 0.14 0.19 0.07 +impopularité impopularité nom f s 0.01 0.27 0.01 0.27 +import_export import_export nom m s 0.47 0.41 0.47 0.41 +import import nom m s 0.43 0.27 0.32 0.14 +importa importer ver 259.50 173.11 0.11 0.20 ind:pas:3s; +importable importable adj s 0.16 0.00 0.01 0.00 +importables importable adj p 0.16 0.00 0.15 0.00 +importaient importer ver 259.50 173.11 0.09 1.35 ind:imp:3p; +importait importer ver 259.50 173.11 2.25 15.68 ind:imp:3s; +importance importance nom f s 57.32 75.81 57.32 75.54 +importances importance nom f p 57.32 75.81 0.00 0.27 +important important adj m s 229.36 86.76 168.62 49.66 +importante important adj f s 229.36 86.76 35.29 18.31 +importantes important adj f p 229.36 86.76 13.80 8.99 +importants important adj m p 229.36 86.76 11.65 9.80 +importateur importateur nom m s 0.24 0.34 0.19 0.27 +importateurs importateur nom m p 0.24 0.34 0.05 0.07 +importation importation nom f s 1.23 2.23 0.73 1.01 +importations importation nom f p 1.23 2.23 0.50 1.22 +importe importer ver 259.50 173.11 251.39 151.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +importent importer ver 259.50 173.11 2.16 1.76 ind:pre:3p; +importer importer ver 259.50 173.11 1.01 0.68 inf; +importera importer ver 259.50 173.11 0.25 0.34 ind:fut:3s; +importeraient importer ver 259.50 173.11 0.01 0.00 cnd:pre:3p; +importerait importer ver 259.50 173.11 0.10 0.41 cnd:pre:3s; +importes importer ver 259.50 173.11 0.20 0.07 ind:pre:2s; +importât importer ver 259.50 173.11 0.00 0.07 sub:imp:3s; +imports import nom m p 0.43 0.27 0.11 0.14 +importé importer ver m s 259.50 173.11 1.05 0.61 par:pas; +importée importé adj f s 1.45 0.54 0.26 0.20 +importées importer ver f p 259.50 173.11 0.28 0.27 par:pas; +importun importun nom m s 0.36 1.82 0.32 1.01 +importuna importuner ver 4.66 3.38 0.00 0.07 ind:pas:3s; +importunaient importuner ver 4.66 3.38 0.00 0.20 ind:imp:3p; +importunais importuner ver 4.66 3.38 0.03 0.07 ind:imp:1s; +importunait importuner ver 4.66 3.38 0.14 0.68 ind:imp:3s; +importune importuner ver 4.66 3.38 0.51 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +importunent importuner ver 4.66 3.38 0.04 0.14 ind:pre:3p; +importuner importuner ver 4.66 3.38 2.79 0.95 inf; +importunerai importuner ver 4.66 3.38 0.07 0.00 ind:fut:1s; +importunerait importuner ver 4.66 3.38 0.01 0.00 cnd:pre:3s; +importunerez importuner ver 4.66 3.38 0.02 0.07 ind:fut:2p; +importunerons importuner ver 4.66 3.38 0.11 0.00 ind:fut:1p; +importunes importuner ver 4.66 3.38 0.27 0.00 ind:pre:2s; +importunez importuner ver 4.66 3.38 0.28 0.20 imp:pre:2p;ind:pre:2p; +importunités importunité nom f p 0.00 0.20 0.00 0.20 +importunât importuner ver 4.66 3.38 0.00 0.07 sub:imp:3s; +importuns importun adj m p 0.70 2.23 0.16 0.20 +importuné importuner ver m s 4.66 3.38 0.14 0.47 par:pas; +importunée importuner ver f s 4.66 3.38 0.20 0.20 par:pas; +importunés importuner ver m p 4.66 3.38 0.06 0.07 par:pas; +importés importé adj m p 1.45 0.54 0.39 0.20 +imposa imposer ver 23.62 78.38 0.79 3.72 ind:pas:3s; +imposable imposable adj s 0.29 0.14 0.20 0.07 +imposables imposable adj m p 0.29 0.14 0.09 0.07 +imposai imposer ver 23.62 78.38 0.00 0.20 ind:pas:1s; +imposaient imposer ver 23.62 78.38 0.08 2.50 ind:imp:3p; +imposais imposer ver 23.62 78.38 0.04 0.68 ind:imp:1s;ind:imp:2s; +imposait imposer ver 23.62 78.38 1.07 14.66 ind:imp:3s; +imposant imposant adj m s 1.47 9.39 0.97 3.72 +imposante imposant adj f s 1.47 9.39 0.42 4.39 +imposantes imposant adj f p 1.47 9.39 0.05 0.95 +imposants imposant adj m p 1.47 9.39 0.03 0.34 +imposassent imposer ver 23.62 78.38 0.00 0.07 sub:imp:3p; +impose imposer ver 23.62 78.38 6.92 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +imposent imposer ver 23.62 78.38 1.62 4.12 ind:pre:3p; +imposer imposer ver 23.62 78.38 7.19 19.53 inf; +imposera imposer ver 23.62 78.38 0.27 0.47 ind:fut:3s; +imposerai imposer ver 23.62 78.38 0.23 0.14 ind:fut:1s; +imposeraient imposer ver 23.62 78.38 0.01 0.20 cnd:pre:3p; +imposerais imposer ver 23.62 78.38 0.03 0.07 cnd:pre:1s; +imposerait imposer ver 23.62 78.38 0.07 1.08 cnd:pre:3s; +imposerez imposer ver 23.62 78.38 0.03 0.00 ind:fut:2p; +imposerions imposer ver 23.62 78.38 0.00 0.14 cnd:pre:1p; +imposerons imposer ver 23.62 78.38 0.05 0.14 ind:fut:1p; +imposeront imposer ver 23.62 78.38 0.03 0.14 ind:fut:3p; +imposes imposer ver 23.62 78.38 0.35 0.34 ind:pre:2s; +imposez imposer ver 23.62 78.38 0.41 0.20 imp:pre:2p;ind:pre:2p; +imposiez imposer ver 23.62 78.38 0.00 0.14 ind:imp:2p; +imposition imposition nom f s 0.69 0.41 0.69 0.34 +impositions imposition nom f p 0.69 0.41 0.00 0.07 +imposons imposer ver 23.62 78.38 0.30 0.14 imp:pre:1p;ind:pre:1p; +imposât imposer ver 23.62 78.38 0.01 0.54 sub:imp:3s; +impossibilité impossibilité nom f s 0.96 7.50 0.94 7.16 +impossibilités impossibilité nom f p 0.96 7.50 0.02 0.34 +impossible impossible adj s 124.54 96.01 122.32 90.07 +impossibles impossible adj p 124.54 96.01 2.22 5.95 +imposte imposte nom f s 0.01 0.68 0.01 0.68 +imposteur imposteur nom m s 6.04 1.96 5.43 1.42 +imposteurs imposteur nom m p 6.04 1.96 0.61 0.54 +imposèrent imposer ver 23.62 78.38 0.00 0.61 ind:pas:3p; +imposture imposture nom f s 1.82 3.38 1.78 3.18 +impostures imposture nom f p 1.82 3.38 0.04 0.20 +imposé imposer ver m s 23.62 78.38 2.46 6.42 par:pas; +imposée imposer ver f s 23.62 78.38 0.53 4.19 par:pas; +imposées imposer ver f p 23.62 78.38 0.52 1.62 par:pas; +imposés imposer ver m p 23.62 78.38 0.21 0.68 par:pas; +impotence impotence nom f s 0.01 0.07 0.01 0.07 +impotent impotent adj m s 0.90 1.22 0.64 0.47 +impotente impotent adj f s 0.90 1.22 0.21 0.61 +impotentes impotent adj f p 0.90 1.22 0.00 0.07 +impotents impotent adj m p 0.90 1.22 0.05 0.07 +impraticabilité impraticabilité nom f s 0.01 0.00 0.01 0.00 +impraticable impraticable adj s 0.33 1.35 0.15 0.95 +impraticables impraticable adj p 0.33 1.35 0.18 0.41 +impratique impratique adj s 0.00 0.07 0.00 0.07 +imprenable imprenable adj s 0.76 2.30 0.74 1.82 +imprenables imprenable adj p 0.76 2.30 0.02 0.47 +impresarii impresario nom m p 0.39 2.36 0.00 0.14 +impresario impresario nom m s 0.39 2.36 0.38 2.03 +impresarios impresario nom m p 0.39 2.36 0.01 0.20 +imprescriptible imprescriptible adj s 0.02 0.41 0.01 0.27 +imprescriptibles imprescriptible adj m p 0.02 0.41 0.01 0.14 +impression impression nom f s 90.19 155.27 88.30 146.28 +impressionna impressionner ver 24.98 24.26 0.01 1.49 ind:pas:3s; +impressionnable impressionnable adj s 1.02 0.68 0.78 0.68 +impressionnables impressionnable adj m p 1.02 0.68 0.24 0.00 +impressionnaient impressionner ver 24.98 24.26 0.00 0.61 ind:imp:3p; +impressionnais impressionner ver 24.98 24.26 0.14 0.00 ind:imp:1s;ind:imp:2s; +impressionnait impressionner ver 24.98 24.26 0.13 2.84 ind:imp:3s; +impressionnant impressionnant adj m s 15.91 9.86 12.98 4.59 +impressionnante impressionnant adj f s 15.91 9.86 2.09 3.78 +impressionnantes impressionnant adj f p 15.91 9.86 0.40 0.95 +impressionnants impressionnant adj m p 15.91 9.86 0.45 0.54 +impressionne impressionner ver 24.98 24.26 3.54 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impressionnent impressionner ver 24.98 24.26 0.42 0.47 ind:pre:3p; +impressionner impressionner ver 24.98 24.26 5.97 4.66 inf; +impressionnera impressionner ver 24.98 24.26 0.26 0.00 ind:fut:3s; +impressionnerait impressionner ver 24.98 24.26 0.06 0.27 cnd:pre:3s; +impressionneras impressionner ver 24.98 24.26 0.02 0.00 ind:fut:2s; +impressionneront impressionner ver 24.98 24.26 0.00 0.07 ind:fut:3p; +impressionnes impressionner ver 24.98 24.26 0.82 0.07 ind:pre:1p;ind:pre:2s; +impressionnez impressionner ver 24.98 24.26 0.94 0.07 imp:pre:2p;ind:pre:2p; +impressionnisme impressionnisme nom m s 0.16 0.20 0.16 0.20 +impressionniste impressionniste adj s 0.28 1.15 0.11 0.54 +impressionnistes impressionniste adj p 0.28 1.15 0.17 0.61 +impressionnât impressionner ver 24.98 24.26 0.00 0.07 sub:imp:3s; +impressionnèrent impressionner ver 24.98 24.26 0.00 0.07 ind:pas:3p; +impressionné impressionner ver m s 24.98 24.26 6.91 7.16 par:pas; +impressionnée impressionner ver f s 24.98 24.26 3.34 1.89 par:pas; +impressionnées impressionner ver f p 24.98 24.26 0.07 0.20 par:pas; +impressionnés impressionner ver m p 24.98 24.26 1.50 1.55 par:pas; +impressions impression nom f p 90.19 155.27 1.89 8.99 +impressive impressif adj f s 0.03 0.00 0.03 0.00 +imprima imprimer ver 8.67 28.24 0.02 0.54 ind:pas:3s; +imprimable imprimable adj s 0.01 0.00 0.01 0.00 +imprimaient imprimer ver 8.67 28.24 0.03 0.68 ind:imp:3p; +imprimais imprimer ver 8.67 28.24 0.06 0.07 ind:imp:1s; +imprimait imprimer ver 8.67 28.24 0.03 2.23 ind:imp:3s; +imprimant imprimer ver 8.67 28.24 0.11 0.74 par:pre; +imprimante imprimante nom f s 0.95 0.07 0.95 0.07 +imprimatur imprimatur nom m 0.00 0.07 0.00 0.07 +imprime imprimer ver 8.67 28.24 1.82 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impriment imprimer ver 8.67 28.24 0.31 0.47 ind:pre:3p; +imprimer imprimer ver 8.67 28.24 2.82 3.58 inf; +imprimera imprimer ver 8.67 28.24 0.03 0.14 ind:fut:3s; +imprimerai imprimer ver 8.67 28.24 0.04 0.00 ind:fut:1s; +imprimerait imprimer ver 8.67 28.24 0.01 0.07 cnd:pre:3s; +imprimeras imprimer ver 8.67 28.24 0.01 0.00 ind:fut:2s; +imprimerie imprimerie nom f s 1.63 9.53 1.60 9.12 +imprimeries imprimerie nom f p 1.63 9.53 0.03 0.41 +imprimerons imprimer ver 8.67 28.24 0.00 0.07 ind:fut:1p; +imprimeur imprimeur nom m s 1.12 2.97 1.01 2.09 +imprimeurs imprimeur nom m p 1.12 2.97 0.10 0.88 +imprimez imprimer ver 8.67 28.24 0.47 0.14 imp:pre:2p;ind:pre:2p; +imprimèrent imprimer ver 8.67 28.24 0.01 0.20 ind:pas:3p; +imprimé imprimer ver m s 8.67 28.24 1.79 7.91 par:pas; +imprimée imprimer ver f s 8.67 28.24 0.36 4.05 par:pas; +imprimées imprimer ver f p 8.67 28.24 0.22 2.84 par:pas; +imprimés imprimer ver m p 8.67 28.24 0.53 2.97 par:pas; +impro impro nom f s 0.82 0.14 0.82 0.14 +improbabilité improbabilité nom f s 0.11 0.20 0.11 0.20 +improbable improbable adj s 2.87 7.70 2.77 5.68 +improbables improbable adj p 2.87 7.70 0.09 2.03 +improductif improductif adj m s 0.85 0.54 0.20 0.20 +improductifs improductif adj m p 0.85 0.54 0.40 0.07 +improductive improductif adj f s 0.85 0.54 0.25 0.14 +improductives improductif adj f p 0.85 0.54 0.00 0.14 +impromptu impromptu adj m s 0.40 2.43 0.25 1.42 +impromptue impromptu adj f s 0.40 2.43 0.11 0.68 +impromptues impromptu adj f p 0.40 2.43 0.02 0.27 +impromptus impromptu nom m p 0.14 0.61 0.14 0.07 +imprononcé imprononcé adj m s 0.00 0.07 0.00 0.07 +imprononçable imprononçable adj m s 0.19 0.47 0.16 0.41 +imprononçables imprononçable adj m p 0.19 0.47 0.02 0.07 +impropre impropre adj s 0.50 1.62 0.48 1.22 +improprement improprement adv 0.11 0.07 0.11 0.07 +impropres impropre adj f p 0.50 1.62 0.02 0.41 +impropriétés impropriété nom f p 0.00 0.14 0.00 0.14 +improuva improuver ver 0.00 0.07 0.00 0.07 ind:pas:3s; +improuvable improuvable adj s 0.03 0.00 0.03 0.00 +improvisa improviser ver 7.09 8.92 0.03 0.68 ind:pas:3s; +improvisade improvisade nom f s 0.01 0.00 0.01 0.00 +improvisai improviser ver 7.09 8.92 0.00 0.07 ind:pas:1s; +improvisaient improviser ver 7.09 8.92 0.00 0.34 ind:imp:3p; +improvisais improviser ver 7.09 8.92 0.03 0.14 ind:imp:1s; +improvisait improviser ver 7.09 8.92 0.20 0.95 ind:imp:3s; +improvisant improviser ver 7.09 8.92 0.02 0.88 par:pre; +improvisateur improvisateur nom m s 0.01 0.27 0.01 0.20 +improvisateurs improvisateur nom m p 0.01 0.27 0.00 0.07 +improvisation improvisation nom f s 0.91 3.78 0.72 2.70 +improvisations improvisation nom f p 0.91 3.78 0.19 1.08 +improvise improviser ver 7.09 8.92 1.92 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +improvisent improviser ver 7.09 8.92 0.22 0.41 ind:pre:3p; +improviser improviser ver 7.09 8.92 2.79 1.42 inf; +improvisera improviser ver 7.09 8.92 0.21 0.14 ind:fut:3s; +improviserai improviser ver 7.09 8.92 0.19 0.00 ind:fut:1s; +improviserons improviser ver 7.09 8.92 0.01 0.00 ind:fut:1p; +improvisez improviser ver 7.09 8.92 0.14 0.00 imp:pre:2p;ind:pre:2p; +improvisions improviser ver 7.09 8.92 0.00 0.07 ind:imp:1p; +improvisons improviser ver 7.09 8.92 0.20 0.00 imp:pre:1p;ind:pre:1p; +improvisèrent improviser ver 7.09 8.92 0.00 0.14 ind:pas:3p; +improvisé improviser ver m s 7.09 8.92 0.82 1.28 par:pas; +improvisée improviser ver f s 7.09 8.92 0.26 0.34 par:pas; +improvisées improvisé adj f p 0.60 4.19 0.04 0.20 +improvisés improviser ver m p 7.09 8.92 0.04 0.54 par:pas; +imprègne imprégner ver 1.76 17.70 0.25 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imprègnent imprégner ver 1.76 17.70 0.03 0.34 ind:pre:3p; +imprécateur imprécateur nom m s 0.00 0.07 0.00 0.07 +imprécation imprécation nom f s 0.12 3.38 0.11 0.34 +imprécations imprécation nom f p 0.12 3.38 0.01 3.04 +imprécis imprécis adj m 0.36 7.36 0.28 2.77 +imprécisable imprécisable nom s 0.00 0.20 0.00 0.20 +imprécise imprécis adj f s 0.36 7.36 0.07 2.97 +imprécises imprécis adj f p 0.36 7.36 0.01 1.62 +imprécision imprécision nom f s 0.06 1.01 0.04 0.95 +imprécisions imprécision nom f p 0.06 1.01 0.02 0.07 +imprudemment imprudemment adv 0.34 1.28 0.34 1.28 +imprudence imprudence nom f s 2.04 6.15 1.56 4.73 +imprudences imprudence nom f p 2.04 6.15 0.48 1.42 +imprudent imprudent adj m s 4.34 4.80 3.10 2.50 +imprudente imprudent adj f s 4.34 4.80 0.87 1.22 +imprudentes imprudent adj f p 4.34 4.80 0.08 0.61 +imprudents imprudent adj m p 4.34 4.80 0.30 0.47 +imprégna imprégner ver 1.76 17.70 0.00 0.34 ind:pas:3s; +imprégnaient imprégner ver 1.76 17.70 0.02 0.61 ind:imp:3p; +imprégnais imprégner ver 1.76 17.70 0.00 0.07 ind:imp:1s; +imprégnait imprégner ver 1.76 17.70 0.12 1.96 ind:imp:3s; +imprégnant imprégner ver 1.76 17.70 0.00 0.41 par:pre; +imprégnation imprégnation nom f s 0.01 0.68 0.01 0.54 +imprégnations imprégnation nom f p 0.01 0.68 0.00 0.14 +imprégner imprégner ver 1.76 17.70 0.27 2.36 inf; +imprégnez imprégner ver 1.76 17.70 0.04 0.00 imp:pre:2p; +imprégnèrent imprégner ver 1.76 17.70 0.01 0.07 ind:pas:3p; +imprégné imprégner ver m s 1.76 17.70 0.63 4.19 par:pas; +imprégnée imprégner ver f s 1.76 17.70 0.10 2.09 par:pas; +imprégnées imprégner ver f p 1.76 17.70 0.10 1.28 par:pas; +imprégnés imprégner ver m p 1.76 17.70 0.18 1.55 par:pas; +impréparation impréparation nom f s 0.00 0.14 0.00 0.14 +imprésario imprésario nom m s 1.21 1.49 1.05 1.22 +imprésarios imprésario nom m p 1.21 1.49 0.16 0.27 +imprésentable imprésentable adj s 0.00 0.20 0.00 0.14 +imprésentables imprésentable adj f p 0.00 0.20 0.00 0.07 +imprévisibilité imprévisibilité nom f s 0.17 0.20 0.17 0.20 +imprévisible imprévisible adj s 4.92 12.43 4.01 7.30 +imprévisiblement imprévisiblement adv 0.11 0.00 0.11 0.00 +imprévisibles imprévisible adj p 4.92 12.43 0.91 5.14 +imprévision imprévision nom f s 0.00 0.07 0.00 0.07 +imprévoyance imprévoyance nom f s 0.10 0.47 0.10 0.47 +imprévoyant imprévoyant adj m s 0.00 0.27 0.00 0.07 +imprévoyante imprévoyant adj f s 0.00 0.27 0.00 0.07 +imprévoyants imprévoyant adj m p 0.00 0.27 0.00 0.14 +imprévu imprévu nom m s 3.22 5.47 2.67 4.86 +imprévue imprévu adj f s 2.72 8.99 1.56 3.18 +imprévues imprévu adj f p 2.72 8.99 0.28 0.95 +imprévus imprévu nom m p 3.22 5.47 0.55 0.61 +impubliable impubliable adj s 0.01 0.34 0.01 0.27 +impubliables impubliable adj p 0.01 0.34 0.00 0.07 +impubère impubère adj f s 0.00 0.61 0.00 0.41 +impubères impubère adj p 0.00 0.61 0.00 0.20 +impécunieuse impécunieux adj f s 0.00 0.27 0.00 0.14 +impécunieux impécunieux adj m p 0.00 0.27 0.00 0.14 +impécuniosité impécuniosité nom f s 0.00 0.07 0.00 0.07 +impédance impédance nom f s 0.04 0.00 0.04 0.00 +impudemment impudemment adv 0.13 0.27 0.13 0.27 +impudence impudence nom f s 1.27 1.35 1.27 1.28 +impudences impudence nom f p 1.27 1.35 0.00 0.07 +impudent impudent adj m s 1.13 1.35 0.47 0.61 +impudente impudent adj f s 1.13 1.35 0.30 0.47 +impudentes impudent adj f p 1.13 1.35 0.02 0.00 +impudents impudent adj m p 1.13 1.35 0.34 0.27 +impudeur impudeur nom f s 0.25 4.19 0.25 4.05 +impudeurs impudeur nom f p 0.25 4.19 0.00 0.14 +impudicité impudicité nom f s 0.03 0.20 0.03 0.20 +impudique impudique adj s 0.65 3.04 0.63 2.23 +impudiquement impudiquement adv 0.01 0.20 0.01 0.20 +impudiques impudique adj p 0.65 3.04 0.03 0.81 +impuissance impuissance nom f s 2.50 16.62 2.50 16.28 +impuissances impuissance nom f p 2.50 16.62 0.00 0.34 +impuissant impuissant adj m s 7.58 11.55 4.49 4.93 +impuissante impuissant adj f s 7.58 11.55 1.14 4.46 +impuissantes impuissant adj f p 7.58 11.55 0.23 0.34 +impuissants impuissant adj m p 7.58 11.55 1.72 1.82 +impulsif impulsif adj m s 2.24 1.96 1.40 1.28 +impulsifs impulsif adj m p 2.24 1.96 0.26 0.14 +impulsion impulsion nom f s 4.58 8.38 3.00 6.01 +impulsions impulsion nom f p 4.58 8.38 1.58 2.36 +impulsive impulsif adj f s 2.24 1.96 0.54 0.47 +impulsivement impulsivement adv 0.07 0.34 0.07 0.34 +impulsives impulsif adj f p 2.24 1.96 0.04 0.07 +impulsivité impulsivité nom f s 0.13 0.07 0.13 0.07 +impuni impuni adj m s 1.48 0.74 0.89 0.34 +impunie impuni adj f s 1.48 0.74 0.46 0.07 +impunis impuni adj m p 1.48 0.74 0.13 0.34 +impénitent impénitent adj m s 0.07 1.35 0.03 0.68 +impénitente impénitent adj f s 0.07 1.35 0.01 0.00 +impénitents impénitent adj m p 0.07 1.35 0.03 0.68 +impunité impunité nom f s 0.93 1.42 0.93 1.42 +impunément impunément adv 1.90 3.24 1.90 3.24 +impénétrabilité impénétrabilité nom f s 0.00 0.20 0.00 0.20 +impénétrable impénétrable adj s 3.08 6.89 1.29 4.66 +impénétrables impénétrable adj p 3.08 6.89 1.79 2.23 +impur impur adj m s 3.91 4.53 1.44 2.23 +impératif impératif adj m s 1.38 3.78 1.21 1.55 +impératifs impératif nom m p 0.69 3.04 0.32 1.22 +impérative impératif adj f s 1.38 3.78 0.16 1.35 +impérativement impérativement adv 0.55 0.68 0.55 0.68 +impératives impératif adj f p 1.38 3.78 0.00 0.47 +impératrice impératrice nom f s 3.03 6.35 2.96 6.08 +impératrices impératrice nom f p 3.03 6.35 0.07 0.27 +impure impur adj f s 3.91 4.53 0.89 0.95 +impures impur adj f p 3.91 4.53 0.95 0.88 +impureté impureté nom f s 0.71 1.42 0.41 1.01 +impuretés impureté nom f p 0.71 1.42 0.31 0.41 +impérial impérial adj m s 6.77 19.12 2.10 7.64 +impériale impérial adj f s 6.77 19.12 4.21 7.77 +impériales impérial adj f p 6.77 19.12 0.13 2.09 +impérialisation impérialisation nom f s 0.01 0.00 0.01 0.00 +impérialisme impérialisme nom m s 0.64 1.35 0.64 1.35 +impérialiste impérialiste adj s 0.84 1.01 0.48 0.34 +impérialistes impérialiste adj p 0.84 1.01 0.35 0.68 +impériaux impérial adj m p 6.77 19.12 0.33 1.62 +impérieuse impérieux adj f s 0.54 12.09 0.03 4.66 +impérieusement impérieusement adv 0.00 1.69 0.00 1.69 +impérieuses impérieux adj f p 0.54 12.09 0.13 0.88 +impérieux impérieux adj m 0.54 12.09 0.38 6.55 +impérissable impérissable adj s 0.11 2.03 0.09 1.55 +impérissables impérissable adj p 0.11 2.03 0.02 0.47 +impéritie impéritie nom f s 0.00 0.20 0.00 0.20 +impurs impur adj m p 3.91 4.53 0.63 0.47 +imputable imputable adj s 0.03 0.74 0.02 0.54 +imputables imputable adj m p 0.03 0.74 0.01 0.20 +imputai imputer ver 0.90 2.77 0.00 0.07 ind:pas:1s; +imputaient imputer ver 0.90 2.77 0.02 0.20 ind:imp:3p; +imputais imputer ver 0.90 2.77 0.00 0.14 ind:imp:1s; +imputait imputer ver 0.90 2.77 0.00 0.41 ind:imp:3s; +imputant imputer ver 0.90 2.77 0.00 0.07 par:pre; +imputasse imputer ver 0.90 2.77 0.01 0.00 sub:imp:1s; +imputation imputation nom f s 0.04 0.54 0.03 0.20 +imputations imputation nom f p 0.04 0.54 0.01 0.34 +impute imputer ver 0.90 2.77 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imputer imputer ver 0.90 2.77 0.26 0.81 inf; +imputera imputer ver 0.90 2.77 0.00 0.07 ind:fut:3s; +imputerai imputer ver 0.90 2.77 0.01 0.07 ind:fut:1s; +imputeront imputer ver 0.90 2.77 0.01 0.00 ind:fut:3p; +impétigo impétigo nom m s 0.08 0.41 0.08 0.41 +imputât imputer ver 0.90 2.77 0.00 0.07 sub:imp:3s; +impétrant impétrant nom m s 0.02 0.27 0.01 0.20 +impétrante impétrant nom f s 0.02 0.27 0.00 0.07 +impétrants impétrant nom m p 0.02 0.27 0.01 0.00 +imputrescible imputrescible adj s 0.00 0.47 0.00 0.41 +imputrescibles imputrescible adj m p 0.00 0.47 0.00 0.07 +imputèrent imputer ver 0.90 2.77 0.00 0.14 ind:pas:3p; +imputé imputer ver m s 0.90 2.77 0.03 0.14 par:pas; +imputée imputer ver f s 0.90 2.77 0.30 0.27 par:pas; +imputées imputer ver f p 0.90 2.77 0.01 0.07 par:pas; +impétueuse impétueux adj f s 1.44 2.97 0.55 0.81 +impétueusement impétueusement adv 0.01 0.41 0.01 0.41 +impétueuses impétueux adj f p 1.44 2.97 0.00 0.14 +impétueux impétueux adj m 1.44 2.97 0.89 2.03 +impétuosité impétuosité nom f s 0.18 0.95 0.18 0.95 +imputés imputer ver m p 0.90 2.77 0.03 0.20 par:pas; +in_bord in_bord adj m s 0.01 0.00 0.01 0.00 +in_bord in_bord nom m s 0.01 0.00 0.01 0.00 +in_folio in_folio nom m 0.00 0.61 0.00 0.61 +in_folios in_folios nom m 0.00 0.20 0.00 0.20 +in_octavo in_octavo nom m 0.01 0.34 0.01 0.34 +in_octavos in_octavos nom m 0.00 0.07 0.00 0.07 +in_quarto in_quarto adj 0.00 0.07 0.00 0.07 +in_quarto in_quarto nom m 0.00 0.07 0.00 0.07 +in_seize in_seize nom m 0.00 0.07 0.00 0.07 +in_absentia in_absentia adv 0.02 0.00 0.02 0.00 +in_abstracto in_abstracto adv 0.00 0.20 0.00 0.20 +in_anima_vili in_anima_vili adv 0.00 0.07 0.00 0.07 +in_cauda_venenum in_cauda_venenum adv 0.00 0.14 0.00 0.14 +in_extenso in_extenso adv 0.00 0.54 0.00 0.54 +in_extremis in_extremis adv 0.07 2.64 0.07 2.64 +in_memoriam in_memoriam adv 0.15 0.00 0.15 0.00 +in_pace in_pace nom m 0.16 0.07 0.16 0.07 +in_petto in_petto adv 0.00 1.22 0.00 1.22 +in_utero in_utero adj f p 0.05 0.00 0.05 0.00 +in_utero in_utero adv 0.05 0.00 0.05 0.00 +in_vino_veritas in_vino_veritas adv 0.05 0.00 0.05 0.00 +in_vitro in_vitro adj 0.22 0.34 0.22 0.34 +in_vivo in_vivo adv 0.00 0.07 0.00 0.07 +in in adj_sup 47.17 11.62 47.17 11.62 +inabordable inabordable adj s 0.22 0.34 0.22 0.34 +inabouti inabouti adj m s 0.00 0.14 0.00 0.07 +inaboutie inabouti adj f s 0.00 0.14 0.00 0.07 +inacceptable inacceptable adj s 4.09 2.70 3.75 2.36 +inacceptables inacceptable adj p 4.09 2.70 0.33 0.34 +inaccessibilité inaccessibilité nom f s 0.01 0.27 0.01 0.27 +inaccessible inaccessible adj s 2.74 10.88 2.32 8.04 +inaccessibles inaccessible adj p 2.74 10.88 0.42 2.84 +inaccompli inaccompli adj m s 0.04 0.47 0.03 0.34 +inaccomplis inaccompli adj m p 0.04 0.47 0.01 0.14 +inaccomplissement inaccomplissement nom m s 0.00 0.07 0.00 0.07 +inaccoutumé inaccoutumé adj m s 0.02 0.61 0.02 0.20 +inaccoutumée inaccoutumé adj f s 0.02 0.61 0.00 0.34 +inaccoutumées inaccoutumé adj f p 0.02 0.61 0.00 0.07 +inachevé inachevé adj m s 3.44 7.09 1.24 3.04 +inachevée inachevé adj f s 3.44 7.09 1.73 2.57 +inachevées inachevé adj f p 3.44 7.09 0.18 0.95 +inachevés inachevé adj m p 3.44 7.09 0.29 0.54 +inachèvement inachèvement nom m s 0.01 0.54 0.01 0.54 +inactif inactif adj m s 1.29 1.22 0.74 0.34 +inactifs inactif adj m p 1.29 1.22 0.39 0.14 +inaction inaction nom f s 0.12 2.36 0.12 2.36 +inactivation inactivation nom f s 0.01 0.00 0.01 0.00 +inactive inactif adj f s 1.29 1.22 0.12 0.61 +inactives inactif adj f p 1.29 1.22 0.04 0.14 +inactivité inactivité nom f s 0.17 0.74 0.17 0.74 +inactivé inactivé adj m s 0.01 0.00 0.01 0.00 +inactuel inactuel adj m s 0.00 0.07 0.00 0.07 +inadaptable inadaptable adj s 0.00 0.07 0.00 0.07 +inadaptation inadaptation nom f s 0.05 0.54 0.05 0.54 +inadapté inadapté adj m s 0.39 0.54 0.16 0.34 +inadaptée inadapté adj f s 0.39 0.54 0.05 0.07 +inadaptées inadapté adj f p 0.39 0.54 0.01 0.00 +inadaptés inadapté adj m p 0.39 0.54 0.17 0.14 +inadmissible inadmissible adj s 2.29 3.04 2.24 2.64 +inadmissibles inadmissible adj p 2.29 3.04 0.05 0.41 +inadéquat inadéquat adj m s 0.61 0.81 0.14 0.27 +inadéquate inadéquat adj f s 0.61 0.81 0.29 0.07 +inadéquatement inadéquatement adv 0.01 0.00 0.01 0.00 +inadéquates inadéquat adj f p 0.61 0.81 0.04 0.07 +inadéquation inadéquation nom f s 0.01 0.07 0.01 0.07 +inadéquats inadéquat adj m p 0.61 0.81 0.15 0.41 +inadvertance inadvertance nom f s 0.58 1.55 0.58 1.49 +inadvertances inadvertance nom f p 0.58 1.55 0.00 0.07 +inaliénable inaliénable adj s 0.16 0.14 0.11 0.07 +inaliénables inaliénable adj m p 0.16 0.14 0.05 0.07 +inaltérable inaltérable adj s 0.58 5.14 0.47 4.66 +inaltérables inaltérable adj p 0.58 5.14 0.11 0.47 +inaltéré inaltéré adj m s 0.03 0.34 0.01 0.14 +inaltérée inaltéré adj f s 0.03 0.34 0.02 0.07 +inaltérées inaltéré adj f p 0.03 0.34 0.00 0.07 +inaltérés inaltéré adj m p 0.03 0.34 0.00 0.07 +inamical inamical adj m s 0.23 0.41 0.04 0.34 +inamicale inamical adj f s 0.23 0.41 0.17 0.07 +inamicaux inamical adj m p 0.23 0.41 0.02 0.00 +inamovible inamovible adj s 0.17 0.95 0.16 0.41 +inamovibles inamovible adj p 0.17 0.95 0.01 0.54 +inanalysable inanalysable adj f s 0.00 0.34 0.00 0.07 +inanalysables inanalysable adj p 0.00 0.34 0.00 0.27 +inane inane adj s 0.00 0.07 0.00 0.07 +inanimation inanimation nom f s 0.00 0.07 0.00 0.07 +inanimé inanimé adj m s 0.94 3.11 0.48 1.62 +inanimée inanimé adj f s 0.94 3.11 0.12 0.74 +inanimées inanimé adj f p 0.94 3.11 0.03 0.20 +inanimés inanimé adj m p 0.94 3.11 0.32 0.54 +inanition inanition nom f s 0.02 1.62 0.02 1.62 +inanité inanité nom f s 0.14 1.28 0.14 1.28 +inapaisable inapaisable adj s 0.00 0.47 0.00 0.47 +inapaisée inapaisé adj f s 0.01 0.14 0.00 0.07 +inapaisées inapaisé adj f p 0.01 0.14 0.00 0.07 +inapaisés inapaisé adj m p 0.01 0.14 0.01 0.00 +inaperçu inaperçu adj m s 3.37 7.57 1.66 2.91 +inaperçue inaperçu adj f s 3.37 7.57 0.81 2.97 +inaperçues inaperçu adj f p 3.37 7.57 0.23 0.68 +inaperçus inaperçu adj m p 3.37 7.57 0.68 1.01 +inapplicable inapplicable adj s 0.03 0.07 0.02 0.00 +inapplicables inapplicable adj m p 0.03 0.07 0.01 0.07 +inapplication inapplication nom f s 0.00 0.07 0.00 0.07 +inapprivoisables inapprivoisable adj p 0.00 0.07 0.00 0.07 +inapprochable inapprochable adj s 0.04 0.00 0.04 0.00 +inapproprié inapproprié adj m s 1.59 0.07 0.86 0.00 +inappropriée inapproprié adj f s 1.59 0.07 0.52 0.07 +inappropriées inapproprié adj f p 1.59 0.07 0.13 0.00 +inappropriés inapproprié adj m p 1.59 0.07 0.08 0.00 +inappréciable inappréciable adj s 0.00 0.68 0.00 0.61 +inappréciables inappréciable adj m p 0.00 0.68 0.00 0.07 +inappréciée inapprécié adj f s 0.01 0.00 0.01 0.00 +inappétence inappétence nom f s 0.00 0.27 0.00 0.27 +inapte inapte adj s 2.00 2.03 1.30 1.55 +inaptes inapte adj m p 2.00 2.03 0.70 0.47 +inaptitude inaptitude nom f s 0.30 1.01 0.29 1.01 +inaptitudes inaptitude nom f p 0.30 1.01 0.01 0.00 +inarrangeable inarrangeable adj s 0.00 0.07 0.00 0.07 +inarticulé inarticulé adj m s 0.15 1.55 0.03 0.20 +inarticulée inarticulé adj f s 0.15 1.55 0.02 0.14 +inarticulées inarticulé adj f p 0.15 1.55 0.00 0.20 +inarticulés inarticulé adj m p 0.15 1.55 0.10 1.01 +inassimilable inassimilable adj s 0.00 0.14 0.00 0.07 +inassimilables inassimilable adj p 0.00 0.14 0.00 0.07 +inassouvi inassouvi adj m s 0.09 1.96 0.04 0.41 +inassouvie inassouvi adj f s 0.09 1.96 0.02 0.47 +inassouvies inassouvi adj f p 0.09 1.96 0.00 0.20 +inassouvis inassouvi adj m p 0.09 1.96 0.02 0.88 +inassouvissable inassouvissable adj m s 0.00 0.27 0.00 0.14 +inassouvissables inassouvissable adj p 0.00 0.27 0.00 0.14 +inassouvissement inassouvissement nom m s 0.00 0.07 0.00 0.07 +inassurable inassurable adj s 0.02 0.00 0.02 0.00 +inattaquable inattaquable adj s 0.52 1.15 0.48 1.08 +inattaquables inattaquable adj m p 0.52 1.15 0.03 0.07 +inatteignable inatteignable adj m s 0.19 0.34 0.16 0.34 +inatteignables inatteignable adj p 0.19 0.34 0.04 0.00 +inattendu inattendu adj m s 6.10 25.14 3.58 10.41 +inattendue inattendu adj f s 6.10 25.14 1.90 10.41 +inattendues inattendu adj f p 6.10 25.14 0.43 2.16 +inattendus inattendu adj m p 6.10 25.14 0.20 2.16 +inattentif inattentif adj m s 0.17 1.62 0.16 0.88 +inattentifs inattentif adj m p 0.17 1.62 0.00 0.34 +inattention inattention nom f s 0.52 2.30 0.52 2.30 +inattentive inattentif adj f s 0.17 1.62 0.01 0.27 +inattentives inattentif adj f p 0.17 1.62 0.00 0.14 +inattrapable inattrapable adj s 0.00 0.07 0.00 0.07 +inaudible inaudible adj s 5.34 3.65 4.68 2.23 +inaudibles inaudible adj p 5.34 3.65 0.66 1.42 +inaugura inaugurer ver 2.41 5.54 0.00 0.20 ind:pas:3s; +inaugurai inaugurer ver 2.41 5.54 0.00 0.20 ind:pas:1s; +inaugurais inaugurer ver 2.41 5.54 0.00 0.07 ind:imp:1s; +inaugurait inaugurer ver 2.41 5.54 0.04 0.81 ind:imp:3s; +inaugural inaugural adj m s 0.26 1.01 0.22 0.41 +inaugurale inaugural adj f s 0.26 1.01 0.04 0.54 +inaugurales inaugural adj f p 0.26 1.01 0.00 0.07 +inaugurant inaugurer ver 2.41 5.54 0.01 0.41 par:pre; +inauguration inauguration nom f s 3.12 2.77 2.99 2.57 +inaugurations inauguration nom f p 3.12 2.77 0.12 0.20 +inaugure inaugurer ver 2.41 5.54 0.86 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inaugurer inaugurer ver 2.41 5.54 0.62 1.28 inf; +inaugurera inaugurer ver 2.41 5.54 0.23 0.00 ind:fut:3s; +inaugurions inaugurer ver 2.41 5.54 0.00 0.07 ind:imp:1p; +inaugurons inaugurer ver 2.41 5.54 0.01 0.14 imp:pre:1p;ind:pre:1p; +inaugurèrent inaugurer ver 2.41 5.54 0.00 0.14 ind:pas:3p; +inauguré inaugurer ver m s 2.41 5.54 0.55 1.15 par:pas; +inaugurée inaugurer ver f s 2.41 5.54 0.07 0.41 par:pas; +inaugurés inaugurer ver m p 2.41 5.54 0.01 0.14 par:pas; +inauthenticité inauthenticité nom f s 0.00 0.07 0.00 0.07 +inaverti inaverti adj m s 0.00 0.07 0.00 0.07 +inavouable inavouable adj s 1.27 2.84 0.96 1.76 +inavouablement inavouablement adv 0.00 0.07 0.00 0.07 +inavouables inavouable adj p 1.27 2.84 0.32 1.08 +inavoué inavoué adj m s 0.28 2.09 0.13 0.81 +inavouée inavoué adj f s 0.28 2.09 0.01 0.81 +inavouées inavoué adj f p 0.28 2.09 0.00 0.34 +inavoués inavoué adj m p 0.28 2.09 0.14 0.14 +inca inca adj 0.45 0.61 0.37 0.34 +incalculable incalculable adj s 0.94 2.09 0.77 1.55 +incalculables incalculable adj p 0.94 2.09 0.17 0.54 +incandescence incandescence nom f s 0.06 1.15 0.06 1.01 +incandescences incandescence nom f p 0.06 1.15 0.00 0.14 +incandescent incandescent adj m s 0.60 4.73 0.15 1.96 +incandescente incandescent adj f s 0.60 4.73 0.42 1.15 +incandescentes incandescent adj f p 0.60 4.73 0.01 1.15 +incandescents incandescent adj m p 0.60 4.73 0.02 0.47 +incantation incantation nom f s 1.92 2.50 1.33 1.08 +incantations incantation nom f p 1.92 2.50 0.59 1.42 +incantatoire incantatoire adj s 0.01 1.01 0.01 0.74 +incantatoires incantatoire adj p 0.01 1.01 0.00 0.27 +incantatrice incantateur nom f s 0.00 0.07 0.00 0.07 +incapable incapable adj s 20.93 46.22 17.38 38.72 +incapables incapable adj p 20.93 46.22 3.55 7.50 +incapacitant incapacitant adj m s 0.07 0.07 0.05 0.07 +incapacitante incapacitant adj f s 0.07 0.07 0.01 0.00 +incapacitants incapacitant adj m p 0.07 0.07 0.01 0.00 +incapacité incapacité nom f s 2.75 3.99 2.71 3.85 +incapacités incapacité nom f p 2.75 3.99 0.04 0.14 +incarcère incarcérer ver 1.70 1.35 0.06 0.07 imp:pre:2s;ind:pre:3s; +incarcération incarcération nom f s 0.84 0.81 0.84 0.81 +incarcérer incarcérer ver 1.70 1.35 0.24 0.07 inf; +incarcérez incarcérer ver 1.70 1.35 0.01 0.00 imp:pre:2p; +incarcéré incarcérer ver m s 1.70 1.35 1.19 0.74 par:pas; +incarcérée incarcérer ver f s 1.70 1.35 0.10 0.07 par:pas; +incarcérées incarcérer ver f p 1.70 1.35 0.01 0.07 par:pas; +incarcérés incarcérer ver m p 1.70 1.35 0.09 0.34 par:pas; +incarna incarner ver 3.31 16.28 0.00 0.20 ind:pas:3s; +incarnadines incarnadin adj f p 0.00 0.14 0.00 0.14 +incarnai incarner ver 3.31 16.28 0.00 0.07 ind:pas:1s; +incarnaient incarner ver 3.31 16.28 0.00 1.22 ind:imp:3p; +incarnais incarner ver 3.31 16.28 0.04 0.47 ind:imp:1s;ind:imp:2s; +incarnait incarner ver 3.31 16.28 0.15 4.32 ind:imp:3s; +incarnant incarner ver 3.31 16.28 0.20 0.88 par:pre; +incarnat incarnat nom m s 0.02 0.41 0.02 0.41 +incarnation incarnation nom f s 1.03 5.20 0.96 4.26 +incarnations incarnation nom f p 1.03 5.20 0.07 0.95 +incarne incarner ver 3.31 16.28 1.28 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incarnent incarner ver 3.31 16.28 0.12 0.54 ind:pre:3p; +incarner incarner ver 3.31 16.28 0.36 2.70 inf; +incarnera incarner ver 3.31 16.28 0.04 0.07 ind:fut:3s; +incarneraient incarner ver 3.31 16.28 0.00 0.07 cnd:pre:3p; +incarnerais incarner ver 3.31 16.28 0.01 0.00 cnd:pre:1s; +incarnerait incarner ver 3.31 16.28 0.01 0.07 cnd:pre:3s; +incarnerez incarner ver 3.31 16.28 0.01 0.00 ind:fut:2p; +incarnes incarner ver 3.31 16.28 0.17 0.07 ind:pre:2s; +incarnez incarner ver 3.31 16.28 0.08 0.00 ind:pre:2p; +incarniez incarner ver 3.31 16.28 0.01 0.00 ind:imp:2p; +incarnions incarner ver 3.31 16.28 0.00 0.20 ind:imp:1p; +incarnât incarner ver 3.31 16.28 0.01 0.07 sub:imp:3s; +incarné incarné adj m s 1.69 1.22 0.98 0.47 +incarnée incarné adj f s 1.69 1.22 0.63 0.61 +incarnées incarné adj f p 1.69 1.22 0.01 0.14 +incarnés incarné adj m p 1.69 1.22 0.06 0.00 +incartade incartade nom f s 0.11 2.03 0.11 0.81 +incartades incartade nom f p 0.11 2.03 0.00 1.22 +incas inca adj p 0.45 0.61 0.09 0.27 +incassable incassable adj s 0.88 0.88 0.80 0.54 +incassables incassable adj p 0.88 0.88 0.08 0.34 +incendia incendier ver 4.37 5.81 0.01 0.34 ind:pas:3s; +incendiaient incendier ver 4.37 5.81 0.00 0.14 ind:imp:3p; +incendiaire incendiaire nom s 1.35 0.81 0.83 0.41 +incendiaires incendiaire nom p 1.35 0.81 0.51 0.41 +incendiait incendier ver 4.37 5.81 0.04 1.01 ind:imp:3s; +incendiant incendier ver 4.37 5.81 0.01 0.41 par:pre; +incendie incendie nom m s 19.84 22.43 17.75 18.04 +incendient incendier ver 4.37 5.81 0.02 0.20 ind:pre:3p; +incendier incendier ver 4.37 5.81 0.93 1.89 inf; +incendieras incendier ver 4.37 5.81 0.01 0.00 ind:fut:2s; +incendies incendie nom m p 19.84 22.43 2.09 4.39 +incendiez incendier ver 4.37 5.81 0.13 0.00 imp:pre:2p;ind:pre:2p; +incendièrent incendier ver 4.37 5.81 0.00 0.07 ind:pas:3p; +incendié incendier ver m s 4.37 5.81 1.42 0.81 par:pas; +incendiée incendier ver f s 4.37 5.81 0.20 0.27 par:pas; +incendiées incendié adj f p 0.89 2.43 0.28 0.54 +incendiés incendier ver m p 4.37 5.81 0.04 0.07 par:pas; +incernable incernable adj m s 0.00 0.14 0.00 0.14 +incertain incertain adj m s 4.23 20.95 1.49 8.78 +incertaine incertain adj f s 4.23 20.95 1.27 6.76 +incertaines incertain adj f p 4.23 20.95 0.40 2.64 +incertains incertain adj m p 4.23 20.95 1.08 2.77 +incertitude incertitude nom f s 2.52 11.89 2.31 10.00 +incertitudes incertitude nom f p 2.52 11.89 0.21 1.89 +incessamment incessamment adv 0.48 3.58 0.48 3.58 +incessant incessant adj m s 1.79 12.23 0.65 4.12 +incessante incessant adj f s 1.79 12.23 0.33 3.31 +incessantes incessant adj f p 1.79 12.23 0.44 2.97 +incessants incessant adj m p 1.79 12.23 0.37 1.82 +inceste inceste nom m s 2.11 3.04 2.08 2.97 +incestes inceste nom m p 2.11 3.04 0.03 0.07 +incestueuse incestueux adj f s 0.69 1.76 0.17 0.41 +incestueuses incestueux adj f p 0.69 1.76 0.02 0.34 +incestueux incestueux adj m 0.69 1.76 0.50 1.01 +inch_allah inch_allah ono 0.27 0.47 0.27 0.47 +inchangeable inchangeable adj f s 0.02 0.07 0.02 0.07 +inchangé inchangé adj m s 1.22 1.69 0.37 0.68 +inchangée inchangé adj f s 1.22 1.69 0.54 0.61 +inchangées inchangé adj f p 1.22 1.69 0.16 0.14 +inchangés inchangé adj m p 1.22 1.69 0.15 0.27 +inchavirable inchavirable adj s 0.01 0.00 0.01 0.00 +inchiffrable inchiffrable adj s 0.00 0.14 0.00 0.14 +incidemment incidemment adv 0.27 1.28 0.27 1.28 +incidence incidence nom f s 0.82 1.35 0.68 0.81 +incidences incidence nom f p 0.82 1.35 0.14 0.54 +incident incident nom m s 20.35 29.93 17.73 21.08 +incidente incident adj f s 1.20 1.69 0.00 0.14 +incidentes incident adj f p 1.20 1.69 0.00 0.14 +incidents incident nom m p 20.35 29.93 2.62 8.85 +incinère incinérer ver 3.79 1.76 0.13 0.07 ind:pre:1s;ind:pre:3s; +incinérait incinérer ver 3.79 1.76 0.00 0.07 ind:imp:3s; +incinérant incinérer ver 3.79 1.76 0.01 0.00 par:pre; +incinérateur incinérateur nom m s 0.67 0.27 0.63 0.20 +incinérateurs incinérateur nom m p 0.67 0.27 0.04 0.07 +incinération incinération nom f s 0.48 1.62 0.48 1.62 +incinérer incinérer ver 3.79 1.76 1.50 0.54 inf; +incinérez incinérer ver 3.79 1.76 0.06 0.00 imp:pre:2p;ind:pre:2p; +incinéré incinérer ver m s 3.79 1.76 1.02 0.54 par:pas; +incinérée incinérer ver f s 3.79 1.76 0.66 0.47 par:pas; +incinérés incinérer ver m p 3.79 1.76 0.41 0.07 par:pas; +incirconcis incirconcis adj m 0.01 0.27 0.01 0.27 +incisa inciser ver 1.05 1.82 0.00 0.07 ind:pas:3s; +incisaient inciser ver 1.05 1.82 0.00 0.20 ind:imp:3p; +incisait inciser ver 1.05 1.82 0.00 0.27 ind:imp:3s; +incisant inciser ver 1.05 1.82 0.11 0.41 par:pre; +incise inciser ver 1.05 1.82 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inciser inciser ver 1.05 1.82 0.36 0.27 inf; +incisera inciser ver 1.05 1.82 0.00 0.07 ind:fut:3s; +incises inciser ver 1.05 1.82 0.02 0.00 ind:pre:2s; +incisez inciser ver 1.05 1.82 0.04 0.07 imp:pre:2p;ind:pre:2p; +incisif incisif adj m s 0.18 1.89 0.07 0.88 +incisifs incisif adj m p 0.18 1.89 0.03 0.41 +incision incision nom f s 2.62 0.68 2.27 0.47 +incisions incision nom f p 2.62 0.68 0.35 0.20 +incisive incisive nom f s 0.67 1.42 0.28 0.20 +incisives incisive nom f p 0.67 1.42 0.39 1.22 +incisé inciser ver m s 1.05 1.82 0.19 0.07 par:pas; +incisée inciser ver f s 1.05 1.82 0.12 0.07 par:pas; +incisées inciser ver f p 1.05 1.82 0.03 0.07 par:pas; +incisés inciser ver m p 1.05 1.82 0.01 0.07 par:pas; +incita inciter ver 6.32 10.47 0.14 0.47 ind:pas:3s; +incitaient inciter ver 6.32 10.47 0.01 0.88 ind:imp:3p; +incitait inciter ver 6.32 10.47 0.38 2.16 ind:imp:3s; +incitant inciter ver 6.32 10.47 0.08 0.47 par:pre; +incitateur incitateur nom m s 0.04 0.07 0.04 0.00 +incitatif incitatif adj m s 0.01 0.07 0.01 0.07 +incitation incitation nom f s 1.24 0.54 1.24 0.54 +incitatrice incitateur nom f s 0.04 0.07 0.00 0.07 +incite inciter ver 6.32 10.47 1.61 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incitent inciter ver 6.32 10.47 0.37 0.68 ind:pre:3p; +inciter inciter ver 6.32 10.47 2.01 2.43 inf; +incitera inciter ver 6.32 10.47 0.10 0.14 ind:fut:3s; +inciterai inciter ver 6.32 10.47 0.14 0.00 ind:fut:1s; +inciteraient inciter ver 6.32 10.47 0.01 0.07 cnd:pre:3p; +inciterais inciter ver 6.32 10.47 0.02 0.00 cnd:pre:1s; +inciterait inciter ver 6.32 10.47 0.14 0.20 cnd:pre:3s; +inciteront inciter ver 6.32 10.47 0.01 0.00 ind:fut:3p; +incitez inciter ver 6.32 10.47 0.23 0.07 imp:pre:2p;ind:pre:2p; +incitiez inciter ver 6.32 10.47 0.03 0.00 sub:pre:2p; +incitèrent inciter ver 6.32 10.47 0.01 0.14 ind:pas:3p; +incité inciter ver m s 6.32 10.47 0.77 0.61 par:pas; +incitée inciter ver f s 6.32 10.47 0.06 0.47 par:pas; +incités inciter ver m p 6.32 10.47 0.20 0.07 par:pas; +incivil incivil adj m s 0.00 0.20 0.00 0.07 +incivils incivil adj m p 0.00 0.20 0.00 0.14 +inclassable inclassable adj m s 0.30 0.20 0.02 0.14 +inclassables inclassable adj p 0.30 0.20 0.28 0.07 +inclina incliner ver 7.25 50.00 0.23 8.85 ind:pas:3s; +inclinable inclinable adj m s 0.07 0.07 0.04 0.07 +inclinables inclinable adj m p 0.07 0.07 0.03 0.00 +inclinai incliner ver 7.25 50.00 0.00 0.68 ind:pas:1s; +inclinaient incliner ver 7.25 50.00 0.10 2.30 ind:imp:3p; +inclinais incliner ver 7.25 50.00 0.00 1.08 ind:imp:1s; +inclinaison inclinaison nom f s 0.78 3.04 0.73 2.77 +inclinaisons inclinaison nom f p 0.78 3.04 0.05 0.27 +inclinait incliner ver 7.25 50.00 0.13 4.12 ind:imp:3s; +inclinant incliner ver 7.25 50.00 0.21 4.19 par:pre; +inclinante inclinant adj f s 0.00 0.07 0.00 0.07 +inclination inclination nom f s 0.52 2.57 0.38 2.03 +inclinations inclination nom f p 0.52 2.57 0.14 0.54 +incline incliner ver 7.25 50.00 3.79 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +inclinent incliner ver 7.25 50.00 0.41 1.96 ind:pre:3p; +incliner incliner ver 7.25 50.00 0.78 5.81 inf; +inclinerai incliner ver 7.25 50.00 0.04 0.00 ind:fut:1s; +inclineraient incliner ver 7.25 50.00 0.00 0.20 cnd:pre:3p; +inclinerais incliner ver 7.25 50.00 0.16 0.14 cnd:pre:1s; +inclinerait incliner ver 7.25 50.00 0.00 0.34 cnd:pre:3s; +inclineras incliner ver 7.25 50.00 0.03 0.00 ind:fut:2s; +inclinerez incliner ver 7.25 50.00 0.01 0.00 ind:fut:2p; +inclineront incliner ver 7.25 50.00 0.12 0.07 ind:fut:3p; +inclinez incliner ver 7.25 50.00 0.46 0.00 imp:pre:2p;ind:pre:2p; +inclinions incliner ver 7.25 50.00 0.00 0.14 ind:imp:1p; +inclinomètre inclinomètre nom m s 0.01 0.00 0.01 0.00 +inclinons incliner ver 7.25 50.00 0.23 0.00 imp:pre:1p;ind:pre:1p; +inclinât incliner ver 7.25 50.00 0.00 0.20 sub:imp:3s; +inclinèrent incliner ver 7.25 50.00 0.01 0.61 ind:pas:3p; +incliné incliner ver m s 7.25 50.00 0.33 5.74 par:pas; +inclinée incliné adj f s 0.19 5.54 0.12 1.35 +inclinées incliner ver f p 7.25 50.00 0.10 0.34 par:pas; +inclinés incliner ver m p 7.25 50.00 0.08 0.81 par:pas; +incluais inclure ver 8.12 3.51 0.00 0.07 ind:imp:1s; +incluait inclure ver 8.12 3.51 0.20 0.41 ind:imp:3s; +incluant inclure ver 8.12 3.51 0.91 0.27 par:pre; +inclue inclure ver 8.12 3.51 0.40 0.07 sub:pre:1s;sub:pre:3s; +incluent inclure ver 8.12 3.51 0.25 0.00 ind:pre:3p; +incluez inclure ver 8.12 3.51 0.10 0.00 imp:pre:2p;ind:pre:2p; +inclémence inclémence nom f s 0.00 0.27 0.00 0.20 +inclémences inclémence nom f p 0.00 0.27 0.00 0.07 +inclément inclément adj m s 0.02 0.07 0.02 0.00 +inclémente inclément adj f s 0.02 0.07 0.00 0.07 +incluons inclure ver 8.12 3.51 0.00 0.07 ind:pre:1p; +inclura inclure ver 8.12 3.51 0.02 0.00 ind:fut:3s; +inclurai inclure ver 8.12 3.51 0.03 0.00 ind:fut:1s; +inclurait inclure ver 8.12 3.51 0.06 0.00 cnd:pre:3s; +inclure inclure ver 8.12 3.51 1.85 0.95 ind:pre:2p;inf; +inclus inclure ver m 8.12 3.51 2.53 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +incluse inclus adj f s 0.70 0.81 0.45 0.41 +incluses inclus adj f p 0.70 0.81 0.04 0.20 +inclusion inclusion nom f s 0.11 0.14 0.11 0.14 +inclusive inclusif adj f s 0.01 0.07 0.01 0.07 +inclusivement inclusivement adv 0.01 0.27 0.01 0.27 +inclut inclure ver 8.12 3.51 1.78 0.54 ind:pre:3s;ind:pas:3s; +incoercible incoercible adj s 0.12 0.61 0.11 0.34 +incoerciblement incoerciblement adv 0.00 0.20 0.00 0.20 +incoercibles incoercible adj p 0.12 0.61 0.01 0.27 +incognito incognito adv 1.87 2.36 1.87 2.36 +incognitos incognito nom m p 0.30 1.55 0.00 0.07 +incohérence incohérence nom f s 1.11 2.70 0.77 2.09 +incohérences incohérence nom f p 1.11 2.70 0.34 0.61 +incohérent incohérent adj m s 0.86 5.27 0.27 1.76 +incohérente incohérent adj f s 0.86 5.27 0.29 1.28 +incohérentes incohérent adj f p 0.86 5.27 0.06 1.15 +incohérents incohérent adj m p 0.86 5.27 0.25 1.08 +incoiffables incoiffable adj m p 0.01 0.14 0.01 0.14 +incollable incollable adj m s 0.10 0.14 0.10 0.14 +incolore incolore adj s 0.14 5.00 0.14 3.92 +incolores incolore adj p 0.14 5.00 0.00 1.08 +incombaient incomber ver 1.43 5.95 0.01 0.61 ind:imp:3p; +incombait incomber ver 1.43 5.95 0.04 2.70 ind:imp:3s; +incombant incomber ver 1.43 5.95 0.02 0.07 par:pre; +incombe incomber ver 1.43 5.95 1.28 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incombent incomber ver 1.43 5.95 0.03 0.34 ind:pre:3p; +incomber incomber ver 1.43 5.95 0.02 0.14 inf; +incombera incomber ver 1.43 5.95 0.02 0.07 ind:fut:3s; +incomberait incomber ver 1.43 5.95 0.01 0.20 cnd:pre:3s; +incombèrent incomber ver 1.43 5.95 0.00 0.07 ind:pas:3p; +incombustible incombustible adj f s 0.02 0.00 0.01 0.00 +incombustibles incombustible adj p 0.02 0.00 0.01 0.00 +incomestible incomestible adj f s 0.00 0.14 0.00 0.14 +incommensurable incommensurable adj s 0.28 1.89 0.16 1.82 +incommensurablement incommensurablement adv 0.00 0.14 0.00 0.14 +incommensurables incommensurable adj p 0.28 1.89 0.12 0.07 +incommodait incommoder ver 0.85 1.96 0.01 0.61 ind:imp:3s; +incommodant incommodant adj m s 0.05 0.07 0.04 0.00 +incommodante incommodant adj f s 0.05 0.07 0.00 0.07 +incommodantes incommodant adj f p 0.05 0.07 0.01 0.00 +incommode incommoder ver 0.85 1.96 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incommoder incommoder ver 0.85 1.96 0.05 0.34 inf; +incommodera incommoder ver 0.85 1.96 0.14 0.00 ind:fut:3s; +incommoderai incommoder ver 0.85 1.96 0.11 0.00 ind:fut:1s; +incommodes incommode adj p 0.23 1.55 0.00 0.47 +incommodez incommoder ver 0.85 1.96 0.17 0.00 imp:pre:2p;ind:pre:2p; +incommodité incommodité nom f s 0.00 0.68 0.00 0.41 +incommodités incommodité nom f p 0.00 0.68 0.00 0.27 +incommodé incommoder ver m s 0.85 1.96 0.07 0.47 par:pas; +incommodée incommoder ver f s 0.85 1.96 0.03 0.14 par:pas; +incommodées incommoder ver f p 0.85 1.96 0.00 0.07 par:pas; +incommodés incommoder ver m p 0.85 1.96 0.00 0.14 par:pas; +incommunicabilité incommunicabilité nom f s 0.12 0.07 0.12 0.07 +incommunicable incommunicable adj s 0.00 1.42 0.00 1.35 +incommunicables incommunicable adj p 0.00 1.42 0.00 0.07 +incomparable incomparable adj s 1.95 9.32 1.64 7.43 +incomparablement incomparablement adv 0.01 1.08 0.01 1.08 +incomparables incomparable adj p 1.95 9.32 0.31 1.89 +incompatibilité incompatibilité nom f s 0.71 0.61 0.59 0.47 +incompatibilités incompatibilité nom f p 0.71 0.61 0.11 0.14 +incompatible incompatible adj s 1.23 3.11 0.66 1.89 +incompatibles incompatible adj p 1.23 3.11 0.56 1.22 +incomplet incomplet adj m s 2.27 2.43 1.14 1.15 +incomplets incomplet adj m p 2.27 2.43 0.17 0.27 +incomplète incomplet adj f s 2.27 2.43 0.57 0.54 +incomplètement incomplètement adv 0.00 0.20 0.00 0.20 +incomplètes incomplet adj f p 2.27 2.43 0.40 0.47 +incomplétude incomplétude nom f s 0.01 0.00 0.01 0.00 +incompressible incompressible adj s 0.03 0.00 0.03 0.00 +incompris incompris adj m 0.93 1.35 0.73 0.74 +incomprise incompris adj f s 0.93 1.35 0.18 0.54 +incomprises incompris nom f p 0.29 0.34 0.10 0.07 +incompréhensible incompréhensible adj s 5.16 17.97 4.54 11.89 +incompréhensiblement incompréhensiblement adv 0.00 0.47 0.00 0.47 +incompréhensibles incompréhensible adj p 5.16 17.97 0.63 6.08 +incompréhensif incompréhensif adj m s 0.01 0.47 0.01 0.27 +incompréhensifs incompréhensif adj m p 0.01 0.47 0.00 0.20 +incompréhension incompréhension nom f s 0.65 4.59 0.65 4.53 +incompréhensions incompréhension nom f p 0.65 4.59 0.00 0.07 +incompétence incompétence nom f s 1.64 1.35 1.62 1.28 +incompétences incompétence nom f p 1.64 1.35 0.02 0.07 +incompétent incompétent adj m s 2.30 0.81 1.25 0.41 +incompétente incompétent adj f s 2.30 0.81 0.35 0.14 +incompétents incompétent adj m p 2.30 0.81 0.69 0.27 +inconcevable inconcevable adj s 1.91 5.68 1.75 5.27 +inconcevablement inconcevablement adv 0.00 0.07 0.00 0.07 +inconcevables inconcevable adj p 1.91 5.68 0.16 0.41 +inconciliable inconciliable adj m s 0.35 1.22 0.01 0.61 +inconciliables inconciliable adj p 0.35 1.22 0.34 0.61 +inconditionnel inconditionnel adj m s 1.20 0.54 0.45 0.27 +inconditionnelle inconditionnel adj f s 1.20 0.54 0.71 0.27 +inconditionnellement inconditionnellement adv 0.05 0.00 0.05 0.00 +inconditionnelles inconditionnel adj f p 1.20 0.54 0.02 0.00 +inconditionnels inconditionnel adj m p 1.20 0.54 0.01 0.00 +inconditionné inconditionné adj m s 0.00 0.20 0.00 0.07 +inconditionnée inconditionné adj f s 0.00 0.20 0.00 0.14 +inconduite inconduite nom f s 0.06 0.68 0.06 0.68 +inconfiance inconfiance nom f s 0.00 0.14 0.00 0.14 +inconfort inconfort nom m s 0.37 2.16 0.37 2.16 +inconfortable inconfortable adj s 1.90 2.09 1.77 1.89 +inconfortablement inconfortablement adv 0.01 0.34 0.01 0.34 +inconfortables inconfortable adj p 1.90 2.09 0.13 0.20 +incongelables incongelable adj f p 0.00 0.07 0.00 0.07 +incongru incongru adj m s 0.32 7.50 0.25 3.72 +incongrue incongru adj f s 0.32 7.50 0.05 2.03 +incongrues incongru adj f p 0.32 7.50 0.00 0.68 +incongruité incongruité nom f s 0.11 1.49 0.01 1.22 +incongruités incongruité nom f p 0.11 1.49 0.10 0.27 +incongrus incongru adj m p 0.32 7.50 0.02 1.08 +inconnaissable inconnaissable adj f s 0.01 0.41 0.01 0.41 +inconnaissance inconnaissance nom f s 0.00 0.07 0.00 0.07 +inconnu inconnu nom m s 24.25 40.41 13.29 22.97 +inconnue inconnu adj f s 23.13 61.82 7.24 17.16 +inconnues inconnu adj f p 23.13 61.82 2.23 9.05 +inconnus inconnu nom m p 24.25 40.41 5.50 9.19 +inconsciemment inconsciemment adv 2.00 6.28 2.00 6.28 +inconscience inconscience nom f s 1.23 6.69 1.23 6.55 +inconsciences inconscience nom f p 1.23 6.69 0.00 0.14 +inconscient inconscient adj m s 10.45 10.74 6.06 4.93 +inconsciente inconscient adj f s 10.45 10.74 3.35 3.85 +inconscientes inconscient adj f p 10.45 10.74 0.21 0.41 +inconscients inconscient adj m p 10.45 10.74 0.83 1.55 +inconsidéré inconsidéré adj m s 0.86 1.22 0.42 0.41 +inconsidérée inconsidéré adj f s 0.86 1.22 0.05 0.20 +inconsidérées inconsidéré adj f p 0.86 1.22 0.39 0.34 +inconsidérément inconsidérément adv 0.07 0.41 0.07 0.41 +inconsidérés inconsidéré adj m p 0.86 1.22 0.00 0.27 +inconsistance inconsistance nom f s 0.00 0.88 0.00 0.88 +inconsistant inconsistant adj m s 0.21 2.50 0.01 1.42 +inconsistante inconsistant adj f s 0.21 2.50 0.03 0.34 +inconsistantes inconsistant adj f p 0.21 2.50 0.03 0.20 +inconsistants inconsistant adj m p 0.21 2.50 0.14 0.54 +inconsolable inconsolable adj s 1.41 1.69 1.37 1.42 +inconsolables inconsolable adj m p 1.41 1.69 0.05 0.27 +inconsolé inconsolé adj m s 0.00 0.47 0.00 0.07 +inconsolée inconsolé adj f s 0.00 0.47 0.00 0.14 +inconsolées inconsolé adj f p 0.00 0.47 0.00 0.07 +inconsolés inconsolé adj m p 0.00 0.47 0.00 0.20 +inconsommable inconsommable adj s 0.00 0.14 0.00 0.14 +inconstance inconstance nom f s 0.26 0.95 0.26 0.95 +inconstant inconstant adj m s 0.85 0.54 0.32 0.34 +inconstante inconstant adj f s 0.85 0.54 0.26 0.20 +inconstants inconstant adj m p 0.85 0.54 0.28 0.00 +inconstitutionnel inconstitutionnel adj m s 0.24 0.14 0.08 0.07 +inconstitutionnelle inconstitutionnel adj f s 0.24 0.14 0.16 0.07 +inconstructibles inconstructible adj m p 0.01 0.00 0.01 0.00 +inconséquence inconséquence nom f s 0.04 1.42 0.04 1.08 +inconséquences inconséquence nom f p 0.04 1.42 0.00 0.34 +inconséquent inconséquent adj m s 0.27 0.88 0.13 0.27 +inconséquente inconséquent adj f s 0.27 0.88 0.11 0.34 +inconséquents inconséquent adj m p 0.27 0.88 0.04 0.27 +incontestable incontestable adj s 1.29 1.89 0.87 1.42 +incontestablement incontestablement adv 0.61 2.09 0.61 2.09 +incontestables incontestable adj p 1.29 1.89 0.43 0.47 +incontesté incontesté adj m s 0.64 1.69 0.40 1.15 +incontestée incontesté adj f s 0.64 1.69 0.23 0.34 +incontestés incontesté adj m p 0.64 1.69 0.01 0.20 +incontinence incontinence nom f s 0.28 0.68 0.28 0.34 +incontinences incontinence nom f p 0.28 0.68 0.00 0.34 +incontinent incontinent adj m s 0.29 1.49 0.20 1.08 +incontinente incontinent adj f s 0.29 1.49 0.06 0.07 +incontinentes incontinent adj f p 0.29 1.49 0.01 0.07 +incontinents incontinent adj m p 0.29 1.49 0.02 0.27 +incontournable incontournable adj s 0.58 0.54 0.50 0.41 +incontournables incontournable adj p 0.58 0.54 0.08 0.14 +incontrôlable incontrôlable adj s 2.65 1.82 2.08 1.01 +incontrôlables incontrôlable adj p 2.65 1.82 0.57 0.81 +incontrôlé incontrôlé adj m s 0.73 1.01 0.13 0.14 +incontrôlée incontrôlé adj f s 0.73 1.01 0.40 0.34 +incontrôlées incontrôlé adj f p 0.73 1.01 0.17 0.27 +incontrôlés incontrôlé adj m p 0.73 1.01 0.03 0.27 +inconvenance inconvenance nom f s 0.32 1.28 0.29 0.95 +inconvenances inconvenance nom f p 0.32 1.28 0.02 0.34 +inconvenant inconvenant adj m s 1.67 2.97 1.14 1.28 +inconvenante inconvenant adj f s 1.67 2.97 0.36 0.68 +inconvenantes inconvenant adj f p 1.67 2.97 0.05 0.74 +inconvenants inconvenant adj m p 1.67 2.97 0.12 0.27 +inconvertible inconvertible adj s 0.00 0.07 0.00 0.07 +inconvertissable inconvertissable adj m s 0.00 0.07 0.00 0.07 +inconvénient inconvénient nom m s 5.23 9.05 3.58 5.54 +inconvénients inconvénient nom m p 5.23 9.05 1.65 3.51 +incoordination incoordination nom f s 0.01 0.00 0.01 0.00 +incorpora incorporer ver 1.54 7.23 0.01 0.07 ind:pas:3s; +incorporable incorporable adj m s 0.01 0.00 0.01 0.00 +incorporaient incorporer ver 1.54 7.23 0.00 0.34 ind:imp:3p; +incorporait incorporer ver 1.54 7.23 0.02 0.41 ind:imp:3s; +incorporant incorporer ver 1.54 7.23 0.03 0.47 par:pre; +incorporation incorporation nom f s 0.46 1.35 0.46 1.28 +incorporations incorporation nom f p 0.46 1.35 0.00 0.07 +incorpore incorporer ver 1.54 7.23 0.24 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incorporel incorporel adj m s 0.28 0.27 0.28 0.07 +incorporelle incorporel adj f s 0.28 0.27 0.00 0.14 +incorporelles incorporel adj f p 0.28 0.27 0.00 0.07 +incorporent incorporer ver 1.54 7.23 0.00 0.34 ind:pre:3p; +incorporer incorporer ver 1.54 7.23 0.32 1.42 inf; +incorporez incorporer ver 1.54 7.23 0.01 0.07 imp:pre:2p; +incorporé incorporer ver m s 1.54 7.23 0.56 1.22 par:pas; +incorporée incorporer ver f s 1.54 7.23 0.19 0.81 par:pas; +incorporées incorporer ver f p 1.54 7.23 0.01 0.34 par:pas; +incorporés incorporer ver m p 1.54 7.23 0.15 1.42 par:pas; +incorrect incorrect adj m s 2.34 0.68 1.67 0.27 +incorrecte incorrect adj f s 2.34 0.68 0.61 0.34 +incorrectement incorrectement adv 0.06 0.07 0.06 0.07 +incorrection incorrection nom f s 0.02 0.34 0.02 0.34 +incorrects incorrect adj m p 2.34 0.68 0.06 0.07 +incorrigible incorrigible adj s 1.89 2.23 1.72 1.89 +incorrigiblement incorrigiblement adv 0.00 0.07 0.00 0.07 +incorrigibles incorrigible adj p 1.89 2.23 0.16 0.34 +incorruptibilité incorruptibilité nom f s 0.03 0.14 0.03 0.14 +incorruptible incorruptible adj s 0.53 1.01 0.47 0.68 +incorruptibles incorruptible adj p 0.53 1.01 0.06 0.34 +increvable increvable adj s 0.52 0.95 0.35 0.61 +increvables increvable adj m p 0.52 0.95 0.17 0.34 +incrimina incriminer ver 1.25 0.54 0.00 0.07 ind:pas:3s; +incriminant incriminer ver 1.25 0.54 0.19 0.00 par:pre; +incrimination incrimination nom f s 0.01 0.00 0.01 0.00 +incrimine incriminer ver 1.25 0.54 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incriminent incriminer ver 1.25 0.54 0.06 0.00 ind:pre:3p; +incriminer incriminer ver 1.25 0.54 0.57 0.20 inf; +incriminé incriminer ver m s 1.25 0.54 0.30 0.07 par:pas; +incriminée incriminer ver f s 1.25 0.54 0.03 0.07 par:pas; +incriminées incriminer ver f p 1.25 0.54 0.01 0.07 par:pas; +incrochetable incrochetable adj s 0.01 0.00 0.01 0.00 +incroyable incroyable adj s 74.67 22.64 69.22 19.32 +incroyablement incroyablement adv 5.55 4.53 5.55 4.53 +incroyables incroyable adj p 74.67 22.64 5.46 3.31 +incroyance incroyance nom f s 0.20 0.34 0.20 0.34 +incroyant incroyant nom m s 0.16 1.08 0.06 0.34 +incroyante incroyant nom f s 0.16 1.08 0.00 0.14 +incroyants incroyant nom m p 0.16 1.08 0.10 0.61 +incrédibilité incrédibilité nom f s 0.00 0.20 0.00 0.20 +incrédule incrédule adj s 0.46 9.86 0.14 8.45 +incrédules incrédule adj p 0.46 9.86 0.32 1.42 +incrédulité incrédulité nom f s 0.58 5.00 0.58 5.00 +incrusta incruster ver 2.77 14.46 0.00 0.47 ind:pas:3s; +incrustaient incruster ver 2.77 14.46 0.12 0.27 ind:imp:3p; +incrustais incruster ver 2.77 14.46 0.00 0.34 ind:imp:1s;ind:imp:2s; +incrustait incruster ver 2.77 14.46 0.01 1.01 ind:imp:3s; +incrustant incruster ver 2.77 14.46 0.00 0.68 par:pre; +incrustation incrustation nom f s 0.12 1.62 0.06 0.20 +incrustations incrustation nom f p 0.12 1.62 0.06 1.42 +incruste incruster ver 2.77 14.46 0.59 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incrustent incruster ver 2.77 14.46 0.00 0.61 ind:pre:3p; +incruster incruster ver 2.77 14.46 0.84 0.68 inf; +incrusterait incruster ver 2.77 14.46 0.00 0.14 cnd:pre:3s; +incrustez incruster ver 2.77 14.46 0.02 0.00 imp:pre:2p;ind:pre:2p; +incrustèrent incruster ver 2.77 14.46 0.00 0.07 ind:pas:3p; +incrusté incruster ver m s 2.77 14.46 0.43 2.70 par:pas; +incrustée incruster ver f s 2.77 14.46 0.44 2.77 par:pas; +incrustées incruster ver f p 2.77 14.46 0.17 1.55 par:pas; +incrustés incruster ver m p 2.77 14.46 0.14 2.23 par:pas; +incréé incréé adj m s 0.14 0.14 0.14 0.00 +incréée incréé adj f s 0.14 0.14 0.00 0.14 +incubateur incubateur nom m s 0.41 0.07 0.34 0.00 +incubateurs incubateur nom m p 0.41 0.07 0.07 0.07 +incubation incubation nom f s 0.53 0.54 0.53 0.54 +incube incube nom m s 0.10 0.14 0.07 0.07 +incuber incuber ver 0.17 0.00 0.05 0.00 inf; +incubes incube nom m p 0.10 0.14 0.03 0.07 +incubé incuber ver m s 0.17 0.00 0.12 0.00 par:pas; +inculcation inculcation nom f s 0.00 0.07 0.00 0.07 +inculpa inculper ver 7.40 1.22 0.01 0.07 ind:pas:3s; +inculpant inculper ver 7.40 1.22 0.03 0.00 par:pre; +inculpation inculpation nom f s 2.55 1.55 2.05 1.42 +inculpations inculpation nom f p 2.55 1.55 0.51 0.14 +inculpe inculper ver 7.40 1.22 0.64 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inculpent inculper ver 7.40 1.22 0.03 0.00 ind:pre:3p; +inculper inculper ver 7.40 1.22 2.95 0.54 ind:pre:2p;inf; +inculpera inculper ver 7.40 1.22 0.15 0.00 ind:fut:3s; +inculperai inculper ver 7.40 1.22 0.04 0.00 ind:fut:1s; +inculperais inculper ver 7.40 1.22 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +inculperont inculper ver 7.40 1.22 0.01 0.00 ind:fut:3p; +inculpez inculper ver 7.40 1.22 0.33 0.00 imp:pre:2p;ind:pre:2p; +inculpons inculper ver 7.40 1.22 0.04 0.00 imp:pre:1p;ind:pre:1p; +inculpé inculper ver m s 7.40 1.22 2.33 0.41 par:pas; +inculpée inculper ver f s 7.40 1.22 0.49 0.00 par:pas; +inculpés inculper ver m p 7.40 1.22 0.33 0.20 par:pas; +inculqua inculquer ver 1.19 4.05 0.01 0.20 ind:pas:3s; +inculquait inculquer ver 1.19 4.05 0.10 0.27 ind:imp:3s; +inculquant inculquer ver 1.19 4.05 0.01 0.00 par:pre; +inculque inculquer ver 1.19 4.05 0.10 0.20 ind:pre:1s;ind:pre:3s; +inculquent inculquer ver 1.19 4.05 0.00 0.07 ind:pre:3p; +inculquer inculquer ver 1.19 4.05 0.62 1.42 inf; +inculquons inculquer ver 1.19 4.05 0.01 0.00 ind:pre:1p; +inculquât inculquer ver 1.19 4.05 0.00 0.07 sub:imp:3s; +inculqué inculquer ver m s 1.19 4.05 0.29 0.74 par:pas; +inculquée inculquer ver f s 1.19 4.05 0.04 0.54 par:pas; +inculquées inculquer ver f p 1.19 4.05 0.01 0.14 par:pas; +inculqués inculquer ver m p 1.19 4.05 0.00 0.41 par:pas; +inculte inculte adj s 2.20 2.23 1.53 1.49 +incultes inculte adj p 2.20 2.23 0.67 0.74 +incultivable incultivable adj f s 0.00 0.27 0.00 0.20 +incultivables incultivable adj m p 0.00 0.27 0.00 0.07 +inculture inculture nom f s 0.00 0.41 0.00 0.41 +incunables incunable nom m p 0.00 0.47 0.00 0.47 +incurable incurable adj s 2.44 2.84 2.26 2.36 +incurablement incurablement adv 0.12 0.41 0.12 0.41 +incurables incurable nom p 0.80 0.20 0.36 0.07 +incurie incurie nom f s 0.11 0.68 0.11 0.68 +incurieux incurieux adj m s 0.00 0.07 0.00 0.07 +incuriosité incuriosité nom f s 0.00 0.34 0.00 0.34 +incursion incursion nom f s 0.48 4.26 0.41 2.64 +incursions incursion nom f p 0.48 4.26 0.08 1.62 +incurvaient incurver ver 0.06 3.11 0.01 0.07 ind:imp:3p; +incurvait incurver ver 0.06 3.11 0.00 0.81 ind:imp:3s; +incurvant incurver ver 0.06 3.11 0.00 0.27 par:pre; +incurvation incurvation nom f s 0.14 0.07 0.14 0.07 +incurve incurver ver 0.06 3.11 0.01 0.95 imp:pre:2s;ind:pre:3s; +incurvent incurver ver 0.06 3.11 0.00 0.20 ind:pre:3p; +incurver incurver ver 0.06 3.11 0.01 0.27 inf; +incurvèrent incurver ver 0.06 3.11 0.00 0.07 ind:pas:3p; +incurvé incurvé adj m s 0.09 1.42 0.07 0.74 +incurvée incurvé adj f s 0.09 1.42 0.02 0.41 +incurvées incurver ver f p 0.06 3.11 0.00 0.07 par:pas; +incurvés incurvé adj m p 0.09 1.42 0.00 0.20 +incus incus adj 0.01 0.00 0.01 0.00 +indûment indûment adv 0.22 0.81 0.22 0.81 +indansable indansable adj s 0.01 0.00 0.01 0.00 +inde inde nom m s 0.24 0.54 0.24 0.14 +indemne indemne adj s 2.66 3.11 2.13 2.30 +indemnes indemne adj p 2.66 3.11 0.53 0.81 +indemnisable indemnisable adj s 0.01 0.00 0.01 0.00 +indemnisation indemnisation nom f s 0.36 0.14 0.32 0.07 +indemnisations indemnisation nom f p 0.36 0.14 0.04 0.07 +indemnise indemniser ver 0.78 0.20 0.14 0.00 ind:pre:3s; +indemniser indemniser ver 0.78 0.20 0.32 0.07 inf; +indemniserai indemniser ver 0.78 0.20 0.11 0.00 ind:fut:1s; +indemniseraient indemniser ver 0.78 0.20 0.00 0.07 cnd:pre:3p; +indemnisez indemniser ver 0.78 0.20 0.11 0.00 imp:pre:2p; +indemnisé indemniser ver m s 0.78 0.20 0.06 0.00 par:pas; +indemnisés indemniser ver m p 0.78 0.20 0.03 0.07 par:pas; +indemnité indemnité nom f s 3.17 2.36 1.84 1.69 +indemnités_repas indemnités_repas nom f p 0.01 0.00 0.01 0.00 +indemnités indemnité nom f p 3.17 2.36 1.33 0.68 +indentation indentation nom f s 0.03 0.14 0.03 0.14 +indenter indenter ver 0.04 0.00 0.01 0.00 inf; +indentification indentification nom f s 0.01 0.00 0.01 0.00 +indenté indenter ver m s 0.04 0.00 0.03 0.00 par:pas; +indes inde nom m p 0.24 0.54 0.00 0.41 +indescriptible indescriptible adj s 1.88 2.70 1.71 2.50 +indescriptiblement indescriptiblement adv 0.00 0.07 0.00 0.07 +indescriptibles indescriptible adj p 1.88 2.70 0.17 0.20 +indestructibilité indestructibilité nom f s 0.00 0.14 0.00 0.14 +indestructible indestructible adj s 1.92 4.46 1.49 3.38 +indestructibles indestructible adj p 1.92 4.46 0.43 1.08 +index index nom m 2.18 32.43 2.18 32.43 +indexation indexation nom f s 0.12 0.00 0.12 0.00 +indexer indexer ver 0.09 0.27 0.04 0.00 inf; +indexeur indexeur nom m s 0.02 0.00 0.02 0.00 +indexé indexer ver m s 0.09 0.27 0.04 0.20 par:pas; +indexée indexer ver f s 0.09 0.27 0.01 0.07 par:pas; +indianisés indianiser ver m p 0.00 0.07 0.00 0.07 par:pas; +indic indic nom m s 5.36 1.35 4.33 0.54 +indicateur indicateur nom m s 1.77 2.50 0.98 1.89 +indicateurs indicateur nom m p 1.77 2.50 0.79 0.61 +indicatif indicatif nom m s 0.81 1.55 0.79 1.49 +indicatifs indicatif nom m p 0.81 1.55 0.02 0.07 +indication indication nom f s 3.59 12.43 1.42 5.74 +indications indication nom f p 3.59 12.43 2.18 6.69 +indicatrice indicateur adj f s 0.39 1.49 0.00 0.14 +indicatrices indicateur adj f p 0.39 1.49 0.01 0.20 +indice indice nom m s 22.13 9.39 13.29 4.66 +indices indice nom m p 22.13 9.39 8.85 4.73 +indiciaire indiciaire adj f s 0.01 0.07 0.01 0.00 +indiciaires indiciaire adj f p 0.01 0.07 0.00 0.07 +indicible indicible adj s 0.82 6.35 0.76 5.41 +indiciblement indiciblement adv 0.01 0.47 0.01 0.47 +indicibles indicible adj p 0.82 6.35 0.07 0.95 +indics indic nom m p 5.36 1.35 1.03 0.81 +indien indien adj m s 11.62 11.22 5.75 3.18 +indienne indien adj f s 11.62 11.22 3.33 4.53 +indienneries indiennerie nom f p 0.00 0.34 0.00 0.34 +indiennes indien adj f p 11.62 11.22 0.65 1.42 +indiens indien nom m p 12.79 7.16 5.92 3.65 +indiffère indifférer ver 0.60 1.22 0.47 0.74 ind:pre:1s;ind:pre:3s; +indiffèrent indifférer ver 0.60 1.22 0.09 0.07 ind:pre:3p; +indiffères indifférer ver 0.60 1.22 0.01 0.00 ind:pre:2s; +indifféraient indifférer ver 0.60 1.22 0.00 0.20 ind:imp:3p; +indifférait indifférer ver 0.60 1.22 0.02 0.14 ind:imp:3s; +indifféremment indifféremment adv 0.06 3.45 0.06 3.45 +indifférence indifférence nom f s 3.62 38.31 3.62 38.04 +indifférences indifférence nom f p 3.62 38.31 0.00 0.27 +indifférenciation indifférenciation nom f s 0.01 0.14 0.01 0.14 +indifférencié indifférencié adj m s 0.02 0.74 0.00 0.20 +indifférenciée indifférencié adj f s 0.02 0.74 0.02 0.34 +indifférenciés indifférencié adj m p 0.02 0.74 0.00 0.20 +indifférent indifférent adj m s 4.48 30.14 2.42 16.22 +indifférente indifférent adj f s 4.48 30.14 1.21 8.24 +indifférentes indifférent adj f p 4.48 30.14 0.11 1.42 +indifférentisme indifférentisme nom m s 0.00 0.07 0.00 0.07 +indifférents indifférent adj m p 4.48 30.14 0.74 4.26 +indifféré indifférer ver m s 0.60 1.22 0.01 0.07 par:pas; +indigence indigence nom f s 0.44 1.96 0.44 1.96 +indigent indigent nom m s 0.57 0.95 0.07 0.20 +indigente indigent nom f s 0.57 0.95 0.02 0.00 +indigentes indigent adj f p 0.12 0.68 0.04 0.00 +indigents indigent nom m p 0.57 0.95 0.48 0.61 +indigeste indigeste adj s 0.53 1.15 0.24 0.81 +indigestes indigeste adj p 0.53 1.15 0.29 0.34 +indigestion indigestion nom f s 1.59 2.03 1.56 1.82 +indigestionner indigestionner ver 0.00 0.07 0.00 0.07 inf; +indigestions indigestion nom f p 1.59 2.03 0.04 0.20 +indigna indigner ver 4.23 17.23 0.01 2.43 ind:pas:3s; +indignai indigner ver 4.23 17.23 0.00 0.20 ind:pas:1s; +indignaient indigner ver 4.23 17.23 0.00 0.41 ind:imp:3p; +indignais indigner ver 4.23 17.23 0.00 0.07 ind:imp:1s; +indignait indigner ver 4.23 17.23 0.01 3.04 ind:imp:3s; +indignant indigner ver 4.23 17.23 0.00 0.14 par:pre; +indignassent indigner ver 4.23 17.23 0.00 0.07 sub:imp:3p; +indignation indignation nom f s 1.56 16.28 1.45 15.68 +indignations indignation nom f p 1.56 16.28 0.11 0.61 +indigne indigne adj s 8.75 10.61 6.99 7.91 +indignement indignement adv 0.28 0.54 0.28 0.54 +indignent indigner ver 4.23 17.23 0.72 0.61 ind:pre:3p; +indigner indigner ver 4.23 17.23 0.37 2.84 inf; +indignera indigner ver 4.23 17.23 0.10 0.14 ind:fut:3s; +indignes indigne adj p 8.75 10.61 1.75 2.70 +indignité indignité nom f s 0.50 2.36 0.47 2.30 +indignités indignité nom f p 0.50 2.36 0.03 0.07 +indignèrent indigner ver 4.23 17.23 0.00 0.14 ind:pas:3p; +indigné indigner ver m s 4.23 17.23 0.43 2.64 par:pas; +indignée indigner ver f s 4.23 17.23 0.45 1.08 par:pas; +indignées indigner ver f p 4.23 17.23 0.03 0.14 par:pas; +indignés indigné adj m p 0.34 6.35 0.16 1.15 +indigo indigo nom m s 0.45 0.81 0.45 0.81 +indigène indigène adj s 1.04 4.19 0.68 2.57 +indigènes indigène nom p 3.24 5.27 2.85 4.19 +indiqua indiquer ver 36.48 54.12 0.02 4.86 ind:pas:3s; +indiquai indiquer ver 36.48 54.12 0.00 0.88 ind:pas:1s; +indiquaient indiquer ver 36.48 54.12 0.25 1.96 ind:imp:3p; +indiquais indiquer ver 36.48 54.12 0.05 0.47 ind:imp:1s;ind:imp:2s; +indiquait indiquer ver 36.48 54.12 0.84 9.73 ind:imp:3s; +indiquant indiquer ver 36.48 54.12 1.81 5.54 par:pre; +indique indiquer ver 36.48 54.12 14.13 10.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +indiquent indiquer ver 36.48 54.12 5.18 1.22 ind:pre:3p; +indiquer indiquer ver 36.48 54.12 5.74 7.91 inf; +indiquera indiquer ver 36.48 54.12 0.67 0.27 ind:fut:3s; +indiquerai indiquer ver 36.48 54.12 0.14 0.20 ind:fut:1s; +indiqueraient indiquer ver 36.48 54.12 0.09 0.07 cnd:pre:3p; +indiquerais indiquer ver 36.48 54.12 0.04 0.00 cnd:pre:1s; +indiquerait indiquer ver 36.48 54.12 0.53 0.41 cnd:pre:3s; +indiqueras indiquer ver 36.48 54.12 0.03 0.00 ind:fut:2s; +indiquerez indiquer ver 36.48 54.12 0.03 0.07 ind:fut:2p; +indiqueriez indiquer ver 36.48 54.12 0.00 0.14 cnd:pre:2p; +indiquerons indiquer ver 36.48 54.12 0.03 0.07 ind:fut:1p; +indiquez indiquer ver 36.48 54.12 0.82 0.27 imp:pre:2p;ind:pre:2p; +indiquiez indiquer ver 36.48 54.12 0.01 0.14 ind:imp:2p; +indiquions indiquer ver 36.48 54.12 0.00 0.07 ind:imp:1p; +indiquons indiquer ver 36.48 54.12 0.01 0.00 imp:pre:1p; +indiquât indiquer ver 36.48 54.12 0.00 0.47 sub:imp:3s; +indiquèrent indiquer ver 36.48 54.12 0.02 0.47 ind:pas:3p; +indiqué indiquer ver m s 36.48 54.12 4.81 5.61 par:pas; +indiquée indiquer ver f s 36.48 54.12 0.60 1.69 par:pas; +indiquées indiquer ver f p 36.48 54.12 0.27 0.41 par:pas; +indiqués indiquer ver m p 36.48 54.12 0.36 1.01 par:pas; +indirect indirect adj m s 1.25 3.78 0.23 1.42 +indirecte indirect adj f s 1.25 3.78 0.55 1.42 +indirectement indirectement adv 1.05 2.57 1.05 2.57 +indirectes indirect adj f p 1.25 3.78 0.36 0.20 +indirects indirect adj m p 1.25 3.78 0.11 0.74 +indiscernable indiscernable adj s 0.02 1.69 0.02 0.88 +indiscernables indiscernable adj p 0.02 1.69 0.00 0.81 +indiscipline indiscipline nom f s 0.21 1.01 0.21 1.01 +indiscipliné indiscipliné adj m s 1.49 0.68 0.23 0.20 +indisciplinée indiscipliné adj f s 1.49 0.68 0.36 0.07 +indisciplinées indiscipliné adj f p 1.49 0.68 0.27 0.07 +indisciplinés indiscipliné adj m p 1.49 0.68 0.63 0.34 +indiscret indiscret adj m s 4.56 8.45 2.25 3.38 +indiscrets indiscret adj m p 4.56 8.45 0.38 1.76 +indiscrète indiscret adj f s 4.56 8.45 1.68 2.03 +indiscrètement indiscrètement adv 0.00 0.47 0.00 0.47 +indiscrètes indiscret adj f p 4.56 8.45 0.25 1.28 +indiscrétion indiscrétion nom f s 2.24 5.74 1.90 4.53 +indiscrétions indiscrétion nom f p 2.24 5.74 0.34 1.22 +indiscutable indiscutable adj s 1.13 5.27 0.95 4.19 +indiscutablement indiscutablement adv 0.25 1.96 0.25 1.96 +indiscutables indiscutable adj p 1.13 5.27 0.18 1.08 +indiscuté indiscuté adj m s 0.01 0.41 0.01 0.20 +indiscutée indiscuté adj f s 0.01 0.41 0.00 0.14 +indiscutés indiscuté adj m p 0.01 0.41 0.00 0.07 +indispensable indispensable adj s 9.21 21.76 8.52 15.68 +indispensables indispensable adj p 9.21 21.76 0.69 6.08 +indisponibilité indisponibilité nom f s 0.03 0.00 0.03 0.00 +indisponible indisponible adj s 0.52 0.20 0.43 0.07 +indisponibles indisponible adj p 0.52 0.20 0.09 0.14 +indisposa indisposer ver 0.96 2.64 0.00 0.14 ind:pas:3s; +indisposaient indisposer ver 0.96 2.64 0.00 0.14 ind:imp:3p; +indisposait indisposer ver 0.96 2.64 0.01 0.41 ind:imp:3s; +indispose indispos adj f s 0.12 0.54 0.12 0.54 +indisposent indisposer ver 0.96 2.64 0.10 0.27 ind:pre:3p; +indisposer indisposer ver 0.96 2.64 0.16 0.74 inf; +indisposerait indisposer ver 0.96 2.64 0.02 0.07 cnd:pre:3s; +indisposition indisposition nom f s 0.02 0.61 0.02 0.61 +indisposons indisposer ver 0.96 2.64 0.00 0.07 ind:pre:1p; +indisposèrent indisposer ver 0.96 2.64 0.00 0.07 ind:pas:3p; +indisposé indisposer ver m s 0.96 2.64 0.53 0.41 par:pas; +indisposée indisposé adj f s 0.42 0.14 0.17 0.07 +indisposés indisposer ver m p 0.96 2.64 0.01 0.14 par:pas; +indissociable indissociable adj s 0.25 0.14 0.02 0.07 +indissociables indissociable adj m p 0.25 0.14 0.23 0.07 +indissociés indissocié adj m p 0.00 0.07 0.00 0.07 +indissoluble indissoluble adj s 0.14 0.95 0.12 0.74 +indissolublement indissolublement adv 0.01 0.54 0.01 0.54 +indissolubles indissoluble adj m p 0.14 0.95 0.02 0.20 +indistinct indistinct adj m s 0.54 8.24 0.30 2.64 +indistincte indistinct adj f s 0.54 8.24 0.23 2.23 +indistinctement indistinctement adv 0.01 1.55 0.01 1.55 +indistinctes indistinct adj f p 0.54 8.24 0.00 2.09 +indistinction indistinction nom f s 0.00 0.34 0.00 0.34 +indistincts indistinct adj m p 0.54 8.24 0.00 1.28 +individu individu nom m s 15.38 31.42 9.04 19.53 +individualiser individualiser ver 0.01 0.20 0.01 0.00 inf; +individualisme individualisme nom m s 0.50 1.35 0.50 1.35 +individualiste individualiste nom s 0.30 0.20 0.17 0.14 +individualistes individualiste nom p 0.30 0.20 0.13 0.07 +individualisé individualiser ver m s 0.01 0.20 0.00 0.07 par:pas; +individualisés individualiser ver m p 0.01 0.20 0.00 0.14 par:pas; +individualité individualité nom f s 0.58 0.88 0.57 0.74 +individualités individualité nom f p 0.58 0.88 0.01 0.14 +individuel individuel adj m s 3.99 8.11 0.97 2.23 +individuelle individuel adj f s 3.99 8.11 1.36 2.23 +individuellement individuellement adv 1.22 0.95 1.22 0.95 +individuelles individuel adj f p 3.99 8.11 0.99 2.36 +individuels individuel adj m p 3.99 8.11 0.67 1.28 +individus individu nom m p 15.38 31.42 6.34 11.89 +individuée individué adj f s 0.00 0.07 0.00 0.07 +indivis indivis adj m 0.10 0.34 0.10 0.27 +indivises indivis adj f p 0.10 0.34 0.00 0.07 +indivisibilité indivisibilité nom f s 0.00 0.07 0.00 0.07 +indivisible indivisible adj s 0.44 1.15 0.40 1.15 +indivisibles indivisible adj p 0.44 1.15 0.03 0.00 +indivision indivision nom f s 0.00 0.07 0.00 0.07 +indivisé indivisé adj m s 0.00 0.07 0.00 0.07 +indo_européen indo_européen adj m s 0.11 0.27 0.10 0.00 +indo_européen indo_européen adj f s 0.11 0.27 0.01 0.07 +indo_européen indo_européen adj f p 0.11 0.27 0.00 0.14 +indo_européen indo_européen adj m p 0.11 0.27 0.00 0.07 +indo indo adv 0.03 0.54 0.03 0.54 +indochinois indochinois nom m 0.10 0.34 0.10 0.34 +indochinoise indochinois adj f s 0.01 1.28 0.00 0.68 +indochinoises indochinois adj f p 0.01 1.28 0.00 0.20 +indocile indocile adj s 0.23 0.74 0.23 0.74 +indocilité indocilité nom f s 0.00 0.07 0.00 0.07 +indole indole nom m s 0.01 0.00 0.01 0.00 +indolemment indolemment adv 0.00 0.54 0.00 0.54 +indolence indolence nom f s 0.27 2.57 0.27 2.50 +indolences indolence nom f p 0.27 2.57 0.00 0.07 +indolent indolent adj m s 1.29 2.91 0.38 0.95 +indolente indolent adj f s 1.29 2.91 0.13 1.22 +indolentes indolent adj f p 1.29 2.91 0.10 0.34 +indolents indolent adj m p 1.29 2.91 0.68 0.41 +indolore indolore adj s 0.77 0.68 0.69 0.47 +indolores indolore adj p 0.77 0.68 0.08 0.20 +indomptable indomptable adj s 1.07 1.28 0.91 1.01 +indomptables indomptable adj m p 1.07 1.28 0.16 0.27 +indompté indompté adj m s 0.24 0.27 0.07 0.00 +indomptée indompté adj f s 0.24 0.27 0.07 0.20 +indomptés indompté adj m p 0.24 0.27 0.10 0.07 +indonésien indonésien adj m s 0.20 0.20 0.18 0.00 +indonésienne indonésien nom f s 0.26 0.00 0.10 0.00 +indonésiens indonésien nom m p 0.26 0.00 0.14 0.00 +indoor indoor adj m s 0.05 0.00 0.05 0.00 +indosable indosable adj f s 0.00 0.07 0.00 0.07 +indou indou adj m s 0.03 0.27 0.03 0.07 +indous indou adj m p 0.03 0.27 0.00 0.20 +indu indu adj m s 0.29 0.81 0.02 0.07 +indubitable indubitable adj s 0.31 0.88 0.29 0.81 +indubitablement indubitablement adv 0.70 0.61 0.70 0.61 +indubitables indubitable adj f p 0.31 0.88 0.03 0.07 +indécelable indécelable adj s 0.22 0.20 0.20 0.14 +indécelables indécelable adj p 0.22 0.20 0.02 0.07 +indécemment indécemment adv 0.01 0.27 0.01 0.27 +indécence indécence nom f s 0.28 2.16 0.28 1.96 +indécences indécence nom f p 0.28 2.16 0.00 0.20 +indécent indécent adj m s 2.09 5.27 1.36 2.43 +indécente indécent adj f s 2.09 5.27 0.60 1.96 +indécentes indécent adj f p 2.09 5.27 0.07 0.47 +indécents indécent adj m p 2.09 5.27 0.05 0.41 +indéchiffrable indéchiffrable adj s 0.14 2.97 0.08 1.69 +indéchiffrables indéchiffrable adj p 0.14 2.97 0.06 1.28 +indéchirable indéchirable adj s 0.02 0.14 0.01 0.14 +indéchirables indéchirable adj f p 0.02 0.14 0.01 0.00 +indécidable indécidable adj s 0.00 0.27 0.00 0.20 +indécidables indécidable adj m p 0.00 0.27 0.00 0.07 +indécis indécis adj m 1.15 11.42 0.66 6.49 +indécise indécis adj f s 1.15 11.42 0.35 3.58 +indécises indécis adj f p 1.15 11.42 0.14 1.35 +indécision indécision nom f s 0.27 2.16 0.17 1.89 +indécisions indécision nom f p 0.27 2.16 0.10 0.27 +indécodable indécodable adj s 0.03 0.00 0.03 0.00 +indécollable indécollable adj s 0.01 0.07 0.01 0.00 +indécollables indécollable adj m p 0.01 0.07 0.00 0.07 +indécrassables indécrassable adj m p 0.00 0.14 0.00 0.14 +indécrottable indécrottable adj s 0.17 1.22 0.16 1.01 +indécrottablement indécrottablement adv 0.00 0.07 0.00 0.07 +indécrottables indécrottable adj m p 0.17 1.22 0.01 0.20 +inducteur inducteur nom m s 0.02 0.00 0.02 0.00 +inductif inductif adj m s 0.01 0.07 0.01 0.00 +induction induction nom f s 0.43 0.54 0.42 0.47 +inductions induction nom f p 0.43 0.54 0.01 0.07 +inductive inductif adj f s 0.01 0.07 0.00 0.07 +inductrice inducteur adj f s 0.00 0.07 0.00 0.07 +indue indu adj f s 0.29 0.81 0.27 0.27 +indues indu adj f p 0.29 0.81 0.00 0.41 +indéfectible indéfectible adj s 0.25 1.01 0.24 0.88 +indéfectiblement indéfectiblement adv 0.00 0.41 0.00 0.41 +indéfectibles indéfectible adj m p 0.25 1.01 0.01 0.14 +indéfendable indéfendable adj f s 0.19 0.34 0.19 0.34 +indéfini indéfini adj m s 0.43 2.16 0.21 0.95 +indéfinie indéfini adj f s 0.43 2.16 0.23 0.81 +indéfinies indéfini adj f p 0.43 2.16 0.00 0.20 +indéfiniment indéfiniment adv 2.08 11.22 2.08 11.22 +indéfinis indéfini adj m p 0.43 2.16 0.00 0.20 +indéfinissable indéfinissable adj s 0.29 6.01 0.16 5.54 +indéfinissablement indéfinissablement adv 0.00 0.14 0.00 0.14 +indéfinissables indéfinissable adj p 0.29 6.01 0.14 0.47 +indéfinition indéfinition nom f s 0.00 0.07 0.00 0.07 +indéformables indéformable adj p 0.00 0.07 0.00 0.07 +indéfriché indéfriché adj m s 0.00 0.14 0.00 0.14 +indéfrisable indéfrisable nom f s 0.01 1.49 0.00 1.01 +indéfrisables indéfrisable nom f p 0.01 1.49 0.01 0.47 +induiraient induire ver 1.68 1.69 0.00 0.07 cnd:pre:3p; +induirait induire ver 1.68 1.69 0.01 0.07 cnd:pre:3s; +induire induire ver 1.68 1.69 0.54 0.54 inf; +induis induire ver 1.68 1.69 0.17 0.07 imp:pre:2s;ind:pre:1s; +induisaient induire ver 1.68 1.69 0.00 0.14 ind:imp:3p; +induisait induire ver 1.68 1.69 0.02 0.07 ind:imp:3s; +induisant induire ver 1.68 1.69 0.06 0.00 par:pre; +induisez induire ver 1.68 1.69 0.03 0.00 ind:pre:2p; +induisit induire ver 1.68 1.69 0.00 0.14 ind:pas:3s; +induit induire ver m s 1.68 1.69 0.60 0.34 ind:pre:3s;par:pas; +induite induire ver f s 1.68 1.69 0.05 0.07 par:pas; +induits induire ver m p 1.68 1.69 0.19 0.20 par:pas; +indulgence indulgence nom f s 2.46 16.35 2.46 15.41 +indulgences indulgence nom f p 2.46 16.35 0.01 0.95 +indulgent indulgent adj m s 3.31 7.09 1.89 4.19 +indulgente indulgent adj f s 3.31 7.09 0.66 2.30 +indulgentes indulgent adj f p 3.31 7.09 0.01 0.34 +indulgents indulgent adj m p 3.31 7.09 0.75 0.27 +indélicat indélicat adj m s 0.44 0.74 0.32 0.41 +indélicate indélicat adj f s 0.44 0.74 0.11 0.07 +indélicatesse indélicatesse nom f s 0.02 0.74 0.02 0.54 +indélicatesses indélicatesse nom f p 0.02 0.74 0.00 0.20 +indélicats indélicat adj m p 0.44 0.74 0.01 0.27 +indélivrable indélivrable adj m s 0.00 0.07 0.00 0.07 +indélogeable indélogeable adj f s 0.01 0.14 0.01 0.07 +indélogeables indélogeable adj p 0.01 0.14 0.00 0.07 +indélébile indélébile adj s 0.75 3.78 0.71 2.97 +indélébiles indélébile adj p 0.75 3.78 0.04 0.81 +indémaillable indémaillable adj s 0.00 0.41 0.00 0.27 +indémaillables indémaillable adj p 0.00 0.41 0.00 0.14 +indémodable indémodable adj s 0.14 0.07 0.14 0.00 +indémodables indémodable adj m p 0.14 0.07 0.00 0.07 +indémontrable indémontrable adj m s 0.00 0.14 0.00 0.07 +indémontrables indémontrable adj m p 0.00 0.14 0.00 0.07 +indémêlables indémêlable adj m p 0.00 0.07 0.00 0.07 +indéniable indéniable adj s 0.97 1.82 0.89 1.22 +indéniablement indéniablement adv 0.33 0.74 0.33 0.74 +indéniables indéniable adj p 0.97 1.82 0.08 0.61 +indénombrables indénombrable adj m p 0.02 0.07 0.02 0.07 +indénouable indénouable adj s 0.20 0.14 0.20 0.14 +indépassable indépassable adj m s 0.00 0.20 0.00 0.20 +indépendamment indépendamment adv 0.55 3.45 0.55 3.45 +indépendance indépendance nom f s 6.59 27.16 6.59 27.16 +indépendant indépendant adj m s 11.11 9.46 5.03 3.04 +indépendante indépendant adj s 11.11 9.46 4.08 3.78 +indépendantes indépendant adj f p 11.11 9.46 0.54 0.88 +indépendantisme indépendantisme nom m s 0.10 0.00 0.10 0.00 +indépendantiste indépendantiste adj m s 0.23 0.07 0.11 0.00 +indépendantistes indépendantiste nom p 0.27 0.00 0.27 0.00 +indépendants indépendant adj m p 11.11 9.46 1.46 1.76 +indéracinable indéracinable adj s 0.00 0.54 0.00 0.47 +indéracinables indéracinable adj p 0.00 0.54 0.00 0.07 +induré indurer ver m s 0.00 0.14 0.00 0.07 par:pas; +indurée induré adj f s 0.00 0.07 0.00 0.07 +indurées indurer ver f p 0.00 0.14 0.00 0.07 par:pas; +indéréglables indéréglable adj f p 0.00 0.20 0.00 0.20 +indus indu adj m p 0.29 0.81 0.00 0.07 +indésirable indésirable adj s 1.08 1.08 0.56 0.74 +indésirables indésirable nom p 0.69 0.74 0.53 0.47 +industrialisation industrialisation nom f s 0.01 0.20 0.01 0.20 +industrialiser industrialiser ver 0.04 0.14 0.00 0.14 inf; +industrialisé industrialiser ver m s 0.04 0.14 0.04 0.00 par:pas; +industrialisée industrialisé adj f s 0.16 0.14 0.01 0.07 +industrialisés industrialisé adj m p 0.16 0.14 0.14 0.07 +industrie_clé industrie_clé nom f s 0.01 0.00 0.01 0.00 +industrie industrie nom f s 12.51 11.82 9.66 10.34 +industriel industriel adj m s 6.66 7.70 2.68 3.04 +industrielle industriel adj f s 6.66 7.70 1.78 3.04 +industriellement industriellement adv 0.00 0.20 0.00 0.20 +industrielles industriel adj f p 6.66 7.70 0.55 0.61 +industriels industriel adj m p 6.66 7.70 1.66 1.01 +industries industrie nom f p 12.51 11.82 2.85 1.49 +industrieuse industrieux adj f s 0.02 1.08 0.01 0.34 +industrieusement industrieusement adv 0.00 0.07 0.00 0.07 +industrieuses industrieux adj f p 0.02 1.08 0.00 0.07 +industrieux industrieux adj m 0.02 1.08 0.01 0.68 +indétectable indétectable adj s 0.77 0.14 0.65 0.07 +indétectables indétectable adj f p 0.77 0.14 0.12 0.07 +indéterminable indéterminable adj s 0.01 0.07 0.01 0.07 +indétermination indétermination nom f s 0.01 0.34 0.01 0.34 +indéterminé indéterminé adj m s 1.49 2.36 0.21 1.08 +indéterminée indéterminé adj f s 1.49 2.36 1.23 0.95 +indéterminées indéterminé adj f p 1.49 2.36 0.03 0.20 +indéterminés indéterminé adj m p 1.49 2.36 0.03 0.14 +ineffable ineffable adj s 0.06 4.46 0.04 3.92 +ineffablement ineffablement adv 0.02 0.07 0.02 0.07 +ineffables ineffable adj p 0.06 4.46 0.02 0.54 +ineffaçable ineffaçable adj s 0.13 1.22 0.13 1.08 +ineffaçablement ineffaçablement adv 0.00 0.07 0.00 0.07 +ineffaçables ineffaçable adj f p 0.13 1.22 0.00 0.14 +inefficace inefficace adj s 1.25 1.28 0.98 0.61 +inefficaces inefficace adj p 1.25 1.28 0.27 0.68 +inefficacité inefficacité nom f s 0.27 0.61 0.27 0.61 +inemploi inemploi nom m s 0.10 0.00 0.10 0.00 +inemployable inemployable adj s 0.03 0.07 0.03 0.00 +inemployables inemployable adj p 0.03 0.07 0.00 0.07 +inemployé inemployé adj m s 0.02 0.88 0.00 0.27 +inemployée inemployé adj f s 0.02 0.88 0.00 0.27 +inemployées inemployé adj f p 0.02 0.88 0.00 0.27 +inemployés inemployé adj m p 0.02 0.88 0.02 0.07 +inentamable inentamable adj f s 0.01 0.14 0.01 0.14 +inentamé inentamé adj m s 0.01 0.81 0.00 0.54 +inentamée inentamé adj f s 0.01 0.81 0.01 0.20 +inentamées inentamé adj f p 0.01 0.81 0.00 0.07 +inenvisageable inenvisageable adj s 0.05 0.00 0.05 0.00 +inepte inepte adj s 0.69 3.24 0.52 1.69 +ineptement ineptement adv 0.00 0.07 0.00 0.07 +ineptes inepte adj p 0.69 3.24 0.17 1.55 +ineptie ineptie nom f s 1.48 1.89 0.77 1.01 +inepties ineptie nom f p 1.48 1.89 0.71 0.88 +inerte inerte adj s 0.96 14.53 0.67 10.61 +inertes inerte adj p 0.96 14.53 0.29 3.92 +inertie inertie nom f s 0.95 6.62 0.95 6.49 +inertiel inertiel adj m s 0.11 0.00 0.06 0.00 +inertielle inertiel adj f s 0.11 0.00 0.05 0.00 +inerties inertie nom f p 0.95 6.62 0.00 0.14 +inespoir inespoir nom m s 0.00 0.07 0.00 0.07 +inespérable inespérable adj s 0.00 0.07 0.00 0.07 +inespéré inespéré adj m s 0.35 4.32 0.17 1.62 +inespérée inespéré adj f s 0.35 4.32 0.18 2.43 +inespérées inespéré adj f p 0.35 4.32 0.00 0.27 +inespérément inespérément adv 0.00 0.07 0.00 0.07 +inessentiel inessentiel adj m s 0.00 0.07 0.00 0.07 +inesthétique inesthétique adj m s 0.02 0.27 0.02 0.07 +inesthétiques inesthétique adj m p 0.02 0.27 0.00 0.20 +inestimable inestimable adj s 2.19 2.91 1.79 1.89 +inestimables inestimable adj p 2.19 2.91 0.40 1.01 +inexact inexact adj m s 1.01 1.28 0.65 0.47 +inexacte inexact adj f s 1.01 1.28 0.19 0.47 +inexactement inexactement adv 0.01 0.14 0.01 0.14 +inexactes inexact adj f p 1.01 1.28 0.16 0.27 +inexactitude inexactitude nom f s 0.08 0.54 0.03 0.20 +inexactitudes inexactitude nom f p 0.08 0.54 0.05 0.34 +inexacts inexact adj m p 1.01 1.28 0.01 0.07 +inexcusable inexcusable adj s 0.77 0.54 0.64 0.47 +inexcusables inexcusable adj p 0.77 0.54 0.13 0.07 +inexistant inexistant adj m s 1.29 3.65 0.39 1.28 +inexistante inexistant adj f s 1.29 3.65 0.46 0.88 +inexistantes inexistant adj f p 1.29 3.65 0.10 0.54 +inexistants inexistant adj m p 1.29 3.65 0.35 0.95 +inexistence inexistence nom f s 0.02 1.62 0.02 1.62 +inexorabilité inexorabilité nom f s 0.00 0.14 0.00 0.14 +inexorable inexorable adj s 0.33 4.19 0.33 3.78 +inexorablement inexorablement adv 0.33 3.92 0.33 3.92 +inexorables inexorable adj m p 0.33 4.19 0.00 0.41 +inexperte inexpert adj f s 0.00 0.14 0.00 0.14 +inexpiable inexpiable adj s 0.10 0.54 0.10 0.54 +inexplicable inexplicable adj s 3.25 7.16 1.96 5.61 +inexplicablement inexplicablement adv 0.23 3.18 0.23 3.18 +inexplicables inexplicable adj p 3.25 7.16 1.29 1.55 +inexpliqué inexpliqué adj m s 1.23 1.55 0.28 0.61 +inexpliquée inexpliqué adj f s 1.23 1.55 0.41 0.54 +inexpliquées inexpliqué adj f p 1.23 1.55 0.34 0.07 +inexpliqués inexpliqué adj m p 1.23 1.55 0.21 0.34 +inexploitable inexploitable adj s 0.02 0.00 0.02 0.00 +inexploité inexploité adj m s 0.22 0.14 0.06 0.00 +inexploitée inexploité adj f s 0.22 0.14 0.11 0.00 +inexploitées inexploité adj f p 0.22 0.14 0.04 0.14 +inexploités inexploité adj m p 0.22 0.14 0.01 0.00 +inexploré inexploré adj m s 1.11 0.61 0.32 0.27 +inexplorée inexploré adj f s 1.11 0.61 0.32 0.07 +inexplorées inexploré adj f p 1.11 0.61 0.26 0.14 +inexplorés inexploré adj m p 1.11 0.61 0.22 0.14 +inexplosible inexplosible adj s 0.00 0.27 0.00 0.07 +inexplosibles inexplosible adj m p 0.00 0.27 0.00 0.20 +inexpressif inexpressif adj m s 0.17 2.64 0.04 1.49 +inexpressifs inexpressif adj m p 0.17 2.64 0.12 0.74 +inexpression inexpression nom f s 0.00 0.07 0.00 0.07 +inexpressive inexpressif adj f s 0.17 2.64 0.00 0.41 +inexpressives inexpressif adj f p 0.17 2.64 0.01 0.00 +inexprimable inexprimable adj s 0.40 3.18 0.40 3.04 +inexprimablement inexprimablement adv 0.00 0.20 0.00 0.20 +inexprimables inexprimable adj m p 0.40 3.18 0.00 0.14 +inexprimé inexprimé adj m s 0.10 0.47 0.05 0.27 +inexprimée inexprimé adj f s 0.10 0.47 0.05 0.20 +inexpugnable inexpugnable adj f s 0.13 0.41 0.13 0.34 +inexpugnablement inexpugnablement adv 0.00 0.07 0.00 0.07 +inexpugnables inexpugnable adj f p 0.13 0.41 0.00 0.07 +inexpérience inexpérience nom f s 0.28 2.03 0.28 1.96 +inexpériences inexpérience nom f p 0.28 2.03 0.00 0.07 +inexpérimenté inexpérimenté adj m s 1.28 1.01 0.54 0.34 +inexpérimentée inexpérimenté adj f s 1.28 1.01 0.55 0.47 +inexpérimentées inexpérimenté adj f p 1.28 1.01 0.01 0.07 +inexpérimentés inexpérimenté adj m p 1.28 1.01 0.18 0.14 +inextinguible inextinguible adj s 0.18 0.81 0.18 0.74 +inextinguibles inextinguible adj m p 0.18 0.81 0.00 0.07 +inextirpable inextirpable adj f s 0.00 0.07 0.00 0.07 +inextricable inextricable adj s 0.58 3.31 0.44 2.70 +inextricablement inextricablement adv 0.15 0.81 0.15 0.81 +inextricables inextricable adj p 0.58 3.31 0.14 0.61 +infaillibilité infaillibilité nom f s 0.28 0.95 0.28 0.95 +infaillible infaillible adj s 2.37 6.28 2.10 6.01 +infailliblement infailliblement adv 0.27 1.82 0.27 1.82 +infaillibles infaillible adj m p 2.37 6.28 0.27 0.27 +infaisable infaisable adj s 0.39 0.14 0.39 0.14 +infalsifiable infalsifiable adj s 0.01 0.00 0.01 0.00 +infamant infamant adj m s 0.18 2.43 0.02 1.08 +infamante infamant adj f s 0.18 2.43 0.15 0.74 +infamantes infamant adj f p 0.18 2.43 0.01 0.27 +infamants infamant adj m p 0.18 2.43 0.00 0.34 +infamie infamie nom f s 2.22 3.72 2.01 3.11 +infamies infamie nom f p 2.22 3.72 0.21 0.61 +infant infant nom m s 5.52 1.76 4.98 0.54 +infante infant nom f s 5.52 1.76 0.54 0.88 +infanterie infanterie nom f s 3.79 10.07 3.79 10.00 +infanteries infanterie nom f p 3.79 10.07 0.00 0.07 +infantes infant nom f p 5.52 1.76 0.00 0.07 +infanticide infanticide nom s 0.34 0.41 0.34 0.27 +infanticides infanticide nom p 0.34 0.41 0.00 0.14 +infantile infantile adj s 3.30 3.24 2.57 2.30 +infantilement infantilement adv 0.00 0.07 0.00 0.07 +infantiles infantile adj p 3.30 3.24 0.73 0.95 +infantiliser infantiliser ver 0.04 0.00 0.02 0.00 inf; +infantilisme infantilisme nom m s 0.06 0.74 0.05 0.74 +infantilismes infantilisme nom m p 0.06 0.74 0.01 0.00 +infantilisé infantiliser ver m s 0.04 0.00 0.02 0.00 par:pas; +infants infant nom m p 5.52 1.76 0.00 0.27 +infarctus infarctus nom m 4.87 1.62 4.87 1.62 +infatigable infatigable adj s 0.46 4.80 0.29 3.31 +infatigablement infatigablement adv 0.00 0.61 0.00 0.61 +infatigables infatigable adj p 0.46 4.80 0.17 1.49 +infatuation infatuation nom f s 0.01 0.41 0.01 0.41 +infatuer infatuer ver 0.02 0.34 0.01 0.00 inf; +infatué infatué adj m s 0.02 0.14 0.02 0.07 +infatués infatuer ver m p 0.02 0.34 0.00 0.07 par:pas; +infect infect adj m s 3.61 6.28 2.03 2.91 +infectaient infecter ver 9.96 2.64 0.01 0.14 ind:imp:3p; +infectait infecter ver 9.96 2.64 0.02 0.14 ind:imp:3s; +infectant infecter ver 9.96 2.64 0.06 0.00 par:pre; +infectassent infecter ver 9.96 2.64 0.00 0.07 sub:imp:3p; +infecte infect adj f s 3.61 6.28 1.31 1.62 +infectement infectement adv 0.00 0.07 0.00 0.07 +infectent infecter ver 9.96 2.64 0.21 0.14 ind:pre:3p; +infecter infecter ver 9.96 2.64 1.84 0.68 inf; +infectera infecter ver 9.96 2.64 0.05 0.00 ind:fut:3s; +infectes infect adj f p 3.61 6.28 0.05 1.08 +infectez infecter ver 9.96 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +infectieuse infectieux adj f s 0.66 0.47 0.14 0.14 +infectieuses infectieux adj f p 0.66 0.47 0.26 0.27 +infectieux infectieux adj m 0.66 0.47 0.26 0.07 +infectiologie infectiologie nom f s 0.01 0.00 0.01 0.00 +infection infection nom f s 10.62 1.89 9.55 1.69 +infections infection nom f p 10.62 1.89 1.07 0.20 +infects infect adj m p 3.61 6.28 0.22 0.68 +infecté infecter ver m s 9.96 2.64 3.23 0.54 par:pas; +infectée infecter ver f s 9.96 2.64 1.92 0.54 par:pas; +infectées infecté adj f p 3.40 0.61 0.66 0.27 +infectés infecter ver m p 9.96 2.64 0.99 0.07 par:pas; +infernal infernal adj m s 6.66 13.38 3.36 5.41 +infernale infernal adj f s 6.66 13.38 2.61 5.95 +infernalement infernalement adv 0.00 0.20 0.00 0.20 +infernales infernal adj f p 6.66 13.38 0.46 1.55 +infernaux infernal adj m p 6.66 13.38 0.24 0.47 +infertile infertile adj s 0.08 0.41 0.08 0.34 +infertiles infertile adj p 0.08 0.41 0.00 0.07 +infertilité infertilité nom f s 0.03 0.07 0.03 0.07 +infestaient infester ver 2.05 2.84 0.01 0.68 ind:imp:3p; +infestait infester ver 2.05 2.84 0.00 0.14 ind:imp:3s; +infestant infester ver 2.05 2.84 0.01 0.07 par:pre; +infestation infestation nom f s 0.12 0.00 0.12 0.00 +infeste infester ver 2.05 2.84 0.02 0.07 ind:pre:3s; +infestent infester ver 2.05 2.84 0.12 0.20 ind:pre:3p; +infester infester ver 2.05 2.84 0.09 0.00 inf; +infesteront infester ver 2.05 2.84 0.10 0.07 ind:fut:3p; +infestât infester ver 2.05 2.84 0.00 0.07 sub:imp:3s; +infestèrent infester ver 2.05 2.84 0.00 0.07 ind:pas:3p; +infesté infester ver m s 2.05 2.84 0.57 0.34 par:pas; +infestée infester ver f s 2.05 2.84 0.56 0.61 par:pas; +infestées infester ver f p 2.05 2.84 0.38 0.20 par:pas; +infestés infester ver m p 2.05 2.84 0.19 0.34 par:pas; +infibulation infibulation nom f s 0.03 0.00 0.03 0.00 +infidèle infidèle adj s 3.83 2.97 2.84 2.50 +infidèles infidèle nom p 2.33 2.57 1.25 1.49 +infidélité infidélité nom f s 1.40 2.57 1.11 1.62 +infidélités infidélité nom f p 1.40 2.57 0.28 0.95 +infigurable infigurable adj s 0.00 0.07 0.00 0.07 +infiltra infiltrer ver 6.88 6.35 0.11 0.07 ind:pas:3s; +infiltraient infiltrer ver 6.88 6.35 0.01 0.27 ind:imp:3p; +infiltrait infiltrer ver 6.88 6.35 0.05 1.42 ind:imp:3s; +infiltrant infiltrer ver 6.88 6.35 0.08 0.07 par:pre; +infiltrat infiltrat nom m s 0.01 0.00 0.01 0.00 +infiltration infiltration nom f s 1.71 1.55 1.38 0.95 +infiltrations infiltration nom f p 1.71 1.55 0.34 0.61 +infiltre infiltrer ver 6.88 6.35 0.73 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +infiltrent infiltrer ver 6.88 6.35 0.20 0.20 ind:pre:3p; +infiltrer infiltrer ver 6.88 6.35 2.38 1.82 inf; +infiltrera infiltrer ver 6.88 6.35 0.05 0.00 ind:fut:3s; +infiltreront infiltrer ver 6.88 6.35 0.10 0.00 ind:fut:3p; +infiltrez infiltrer ver 6.88 6.35 0.05 0.00 imp:pre:2p;ind:pre:2p; +infiltriez infiltrer ver 6.88 6.35 0.01 0.00 ind:imp:2p; +infiltrions infiltrer ver 6.88 6.35 0.00 0.07 ind:imp:1p; +infiltrons infiltrer ver 6.88 6.35 0.01 0.07 imp:pre:1p;ind:pre:1p; +infiltrèrent infiltrer ver 6.88 6.35 0.00 0.07 ind:pas:3p; +infiltré infiltrer ver m s 6.88 6.35 2.22 0.61 par:pas; +infiltrée infiltrer ver f s 6.88 6.35 0.25 0.34 par:pas; +infiltrées infiltrer ver f p 6.88 6.35 0.04 0.07 par:pas; +infiltrés infiltrer ver m p 6.88 6.35 0.58 0.27 par:pas; +infime infime adj s 2.09 11.89 1.53 6.55 +infimes infime adj p 2.09 11.89 0.56 5.34 +infini infini adj m s 9.21 27.03 3.86 6.69 +infinie infini adj f s 9.21 27.03 4.11 12.16 +infinies infini adj f p 9.21 27.03 0.76 4.86 +infiniment infiniment adv 10.29 17.43 10.29 17.43 +infinis infini adj m p 9.21 27.03 0.47 3.31 +infinitif infinitif nom m s 0.03 0.14 0.01 0.07 +infinitifs infinitif nom m p 0.03 0.14 0.01 0.07 +infinitive infinitif adj f s 0.01 0.00 0.01 0.00 +infinité infinité nom f s 0.62 2.57 0.60 2.50 +infinitude infinitude nom f s 0.00 0.14 0.00 0.14 +infinités infinité nom f p 0.62 2.57 0.01 0.07 +infinitésimal infinitésimal adj m s 0.07 1.22 0.03 0.27 +infinitésimale infinitésimal adj f s 0.07 1.22 0.03 0.34 +infinitésimalement infinitésimalement adv 0.00 0.07 0.00 0.07 +infinitésimales infinitésimal adj f p 0.07 1.22 0.00 0.61 +infinitésimaux infinitésimal adj m p 0.07 1.22 0.01 0.00 +infirma infirmer ver 0.14 1.15 0.00 0.20 ind:pas:3s; +infirmait infirmer ver 0.14 1.15 0.00 0.14 ind:imp:3s; +infirmant infirmer ver 0.14 1.15 0.00 0.07 par:pre; +infirme infirme adj s 2.27 3.65 2.00 3.04 +infirment infirmer ver 0.14 1.15 0.01 0.07 ind:pre:3p; +infirmer infirmer ver 0.14 1.15 0.07 0.07 inf; +infirmerie infirmerie nom f s 7.14 7.43 7.13 7.30 +infirmeries infirmerie nom f p 7.14 7.43 0.01 0.14 +infirmeront infirmer ver 0.14 1.15 0.00 0.07 ind:fut:3p; +infirmes infirme nom p 2.32 6.15 0.64 2.64 +infirmier infirmier nom m s 32.31 36.28 3.17 3.58 +infirmiers infirmier nom m p 32.31 36.28 2.00 4.80 +infirmière_major infirmière_major nom f s 0.14 0.14 0.14 0.14 +infirmière infirmier nom f s 32.31 36.28 27.14 22.97 +infirmières infirmière nom f p 7.25 0.00 7.25 0.00 +infirmité infirmité nom f s 0.93 5.88 0.83 4.53 +infirmités infirmité nom f p 0.93 5.88 0.10 1.35 +infirmé infirmer ver m s 0.14 1.15 0.00 0.07 par:pas; +inflammabilité inflammabilité nom f s 0.02 0.00 0.02 0.00 +inflammable inflammable adj s 0.92 0.14 0.66 0.14 +inflammables inflammable adj p 0.92 0.14 0.26 0.00 +inflammation inflammation nom f s 0.88 0.54 0.88 0.54 +inflammatoire inflammatoire adj s 0.04 0.00 0.01 0.00 +inflammatoires inflammatoire adj p 0.04 0.00 0.02 0.00 +inflation inflation nom f s 1.72 2.30 1.72 2.30 +inflationniste inflationniste adj s 0.14 0.07 0.14 0.07 +inflexibilité inflexibilité nom f s 0.01 0.20 0.01 0.20 +inflexible inflexible adj s 0.61 4.59 0.56 3.85 +inflexiblement inflexiblement adv 0.00 0.14 0.00 0.14 +inflexibles inflexible adj p 0.61 4.59 0.05 0.74 +inflexion inflexion nom f s 0.23 4.86 0.08 1.82 +inflexions inflexion nom f p 0.23 4.86 0.16 3.04 +infliction infliction nom f s 0.03 0.00 0.03 0.00 +inflige infliger ver 6.54 14.05 0.75 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +infligea infliger ver 6.54 14.05 0.01 0.14 ind:pas:3s; +infligeaient infliger ver 6.54 14.05 0.02 0.54 ind:imp:3p; +infligeais infliger ver 6.54 14.05 0.00 0.07 ind:imp:1s; +infligeait infliger ver 6.54 14.05 0.06 1.69 ind:imp:3s; +infligeant infliger ver 6.54 14.05 0.08 0.47 par:pre; +infligent infliger ver 6.54 14.05 0.36 0.20 ind:pre:3p; +infligeâmes infliger ver 6.54 14.05 0.00 0.07 ind:pas:1p; +infligeons infliger ver 6.54 14.05 0.00 0.07 ind:pre:1p; +infliger infliger ver 6.54 14.05 2.46 3.65 inf; +infligera infliger ver 6.54 14.05 0.02 0.00 ind:fut:3s; +infligerai infliger ver 6.54 14.05 0.07 0.00 ind:fut:1s; +infligeraient infliger ver 6.54 14.05 0.03 0.07 cnd:pre:3p; +infligerais infliger ver 6.54 14.05 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +infligerait infliger ver 6.54 14.05 0.02 0.07 cnd:pre:3s; +infligerez infliger ver 6.54 14.05 0.01 0.00 ind:fut:2p; +infligerions infliger ver 6.54 14.05 0.00 0.07 cnd:pre:1p; +infliges infliger ver 6.54 14.05 0.20 0.00 ind:pre:2s;sub:pre:2s; +infligez infliger ver 6.54 14.05 0.32 0.14 imp:pre:2p;ind:pre:2p; +infligèrent infliger ver 6.54 14.05 0.00 0.14 ind:pas:3p; +infligé infliger ver m s 6.54 14.05 0.97 2.30 par:pas; +infligée infliger ver f s 6.54 14.05 0.63 1.69 par:pas; +infligées infliger ver f p 6.54 14.05 0.36 0.88 par:pas; +infligés infliger ver m p 6.54 14.05 0.15 0.47 par:pas; +inflorescence inflorescence nom f s 0.01 0.07 0.01 0.00 +inflorescences inflorescence nom f p 0.01 0.07 0.00 0.07 +influaient influer ver 1.31 1.82 0.10 0.07 ind:imp:3p; +influait influer ver 1.31 1.82 0.01 0.00 ind:imp:3s; +influant influer ver 1.31 1.82 0.15 0.00 par:pre; +infléchi infléchir ver m s 0.10 2.77 0.00 0.14 par:pas; +infléchie infléchir ver f s 0.10 2.77 0.01 0.07 par:pas; +infléchies infléchi adj f p 0.00 0.27 0.00 0.07 +infléchir infléchir ver 0.10 2.77 0.05 1.28 inf; +infléchirai infléchir ver 0.10 2.77 0.01 0.00 ind:fut:1s; +infléchissaient infléchir ver 0.10 2.77 0.00 0.14 ind:imp:3p; +infléchissant infléchir ver 0.10 2.77 0.00 0.27 par:pre; +infléchissement infléchissement nom m s 0.00 0.07 0.00 0.07 +infléchissent infléchir ver 0.10 2.77 0.00 0.20 ind:pre:3p; +infléchissez infléchir ver 0.10 2.77 0.01 0.00 imp:pre:2p; +infléchit infléchir ver 0.10 2.77 0.01 0.68 ind:pre:3s;ind:pas:3s; +influe influer ver 1.31 1.82 0.24 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +influence influence nom f s 13.96 23.51 13.32 19.73 +influencent influencer ver 8.30 4.53 0.25 0.07 ind:pre:3p; +influencer influencer ver 8.30 4.53 3.19 1.82 ind:pre:2p;inf; +influencera influencer ver 8.30 4.53 0.25 0.00 ind:fut:3s; +influencerait influencer ver 8.30 4.53 0.02 0.00 cnd:pre:3s; +influencerez influencer ver 8.30 4.53 0.04 0.07 ind:fut:2p; +influenceriez influencer ver 8.30 4.53 0.00 0.07 cnd:pre:2p; +influenceront influencer ver 8.30 4.53 0.17 0.00 ind:fut:3p; +influences influence nom f p 13.96 23.51 0.63 3.78 +influencé influencer ver m s 8.30 4.53 1.98 1.15 par:pas; +influencée influencer ver f s 8.30 4.53 0.70 0.47 par:pas; +influencés influencer ver m p 8.30 4.53 0.58 0.07 par:pas; +influent influent adj m s 2.75 1.62 1.38 0.54 +influente influent adj f s 2.75 1.62 0.33 0.27 +influentes influent adj f p 2.75 1.62 0.11 0.14 +influença influencer ver 8.30 4.53 0.04 0.00 ind:pas:3s; +influençable influençable adj s 0.73 0.27 0.56 0.27 +influençables influençable adj p 0.73 0.27 0.17 0.00 +influençaient influencer ver 8.30 4.53 0.02 0.07 ind:imp:3p; +influençait influencer ver 8.30 4.53 0.15 0.20 ind:imp:3s; +influençant influencer ver 8.30 4.53 0.04 0.00 par:pre; +influents influent adj m p 2.75 1.62 0.93 0.68 +influenza influenza nom f s 0.01 0.07 0.01 0.07 +influer influer ver 1.31 1.82 0.60 0.68 inf; +influera influer ver 1.31 1.82 0.03 0.14 ind:fut:3s; +influeraient influer ver 1.31 1.82 0.01 0.07 cnd:pre:3p; +influeront influer ver 1.31 1.82 0.02 0.07 ind:fut:3p; +influé influer ver m s 1.31 1.82 0.01 0.27 par:pas; +influx influx nom m 0.25 0.61 0.25 0.61 +info info nom f s 25.50 0.47 6.71 0.00 +infographie infographie nom f s 0.04 0.00 0.04 0.00 +infâme infâme adj s 7.71 7.91 6.00 5.27 +infâmes infâme adj p 7.71 7.91 1.71 2.64 +infondé infondé adj m s 0.81 0.00 0.05 0.00 +infondée infondé adj f s 0.81 0.00 0.08 0.00 +infondées infondé adj f p 0.81 0.00 0.31 0.00 +infondés infondé adj m p 0.81 0.00 0.36 0.00 +informa informer ver 37.41 21.69 0.17 3.18 ind:pas:3s; +informai informer ver 37.41 21.69 0.00 0.14 ind:pas:1s; +informaient informer ver 37.41 21.69 0.11 0.34 ind:imp:3p; +informais informer ver 37.41 21.69 0.10 0.00 ind:imp:1s; +informait informer ver 37.41 21.69 0.23 1.82 ind:imp:3s; +informant informer ver 37.41 21.69 0.29 0.54 par:pre; +informateur informateur nom m s 4.15 2.30 3.01 0.74 +informateurs informateur nom m p 4.15 2.30 1.05 1.55 +informaticien informaticien nom m s 1.03 0.47 0.72 0.14 +informaticienne informaticien nom f s 1.03 0.47 0.02 0.14 +informaticiens informaticien nom m p 1.03 0.47 0.29 0.20 +informatif informatif adj m s 0.10 0.00 0.06 0.00 +information information nom f s 63.20 36.55 23.90 16.22 +informations information nom f p 63.20 36.55 39.30 20.34 +informatique informatique nom f s 4.60 0.81 4.60 0.81 +informatiquement informatiquement adv 0.15 0.00 0.15 0.00 +informatiques informatique adj p 5.24 0.20 0.91 0.00 +informatiser informatiser ver 0.31 0.00 0.01 0.00 inf; +informatisé informatisé adj m s 0.39 0.00 0.25 0.00 +informatisée informatiser ver f s 0.31 0.00 0.16 0.00 par:pas; +informatisées informatisé adj f p 0.39 0.00 0.03 0.00 +informatisés informatiser ver m p 0.31 0.00 0.03 0.00 par:pas; +informative informatif adj f s 0.10 0.00 0.03 0.00 +informatives informatif adj f p 0.10 0.00 0.01 0.00 +informatrice informateur nom f s 4.15 2.30 0.09 0.00 +informe informer ver 37.41 21.69 5.76 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +informel informel adj m s 0.78 0.74 0.34 0.41 +informelle informel adj f s 0.78 0.74 0.39 0.20 +informelles informel adj f p 0.78 0.74 0.01 0.14 +informels informel adj m p 0.78 0.74 0.03 0.00 +informent informer ver 37.41 21.69 1.15 0.07 ind:pre:3p; +informer informer ver 37.41 21.69 12.56 6.42 inf; +informera informer ver 37.41 21.69 0.35 0.07 ind:fut:3s; +informerai informer ver 37.41 21.69 1.21 0.07 ind:fut:1s; +informerais informer ver 37.41 21.69 0.03 0.00 cnd:pre:1s; +informeras informer ver 37.41 21.69 0.03 0.00 ind:fut:2s; +informerez informer ver 37.41 21.69 0.15 0.00 ind:fut:2p; +informerons informer ver 37.41 21.69 0.16 0.00 ind:fut:1p; +informeront informer ver 37.41 21.69 0.11 0.00 ind:fut:3p; +informes informe adj p 0.79 9.53 0.12 3.11 +informez informer ver 37.41 21.69 2.06 0.14 imp:pre:2p;ind:pre:2p; +informiez informer ver 37.41 21.69 0.07 0.00 ind:imp:2p; +informions informer ver 37.41 21.69 0.00 0.07 ind:imp:1p; +informons informer ver 37.41 21.69 0.86 0.07 imp:pre:1p;ind:pre:1p; +informèrent informer ver 37.41 21.69 0.00 0.20 ind:pas:3p; +informé informer ver m s 37.41 21.69 8.00 3.65 par:pas; +informée informer ver f s 37.41 21.69 1.45 1.01 par:pas; +informées informer ver f p 37.41 21.69 0.19 0.14 par:pas; +informulable informulable adj f s 0.00 0.27 0.00 0.20 +informulables informulable adj m p 0.00 0.27 0.00 0.07 +informulé informulé adj m s 0.00 1.01 0.00 0.47 +informulée informulé adj f s 0.00 1.01 0.00 0.41 +informulées informulé adj f p 0.00 1.01 0.00 0.14 +informés informer ver m p 37.41 21.69 2.27 0.95 par:pas; +infortune infortune nom f s 1.30 4.19 1.21 3.72 +infortunes infortune nom f p 1.30 4.19 0.09 0.47 +infortuné infortuné adj m s 1.65 2.57 0.73 1.76 +infortunée infortuné adj f s 1.65 2.57 0.58 0.34 +infortunées infortuné adj f p 1.65 2.57 0.01 0.00 +infortunés infortuné adj m p 1.65 2.57 0.33 0.47 +infos info nom f p 25.50 0.47 18.78 0.47 +infoutu infoutu adj m s 0.06 0.14 0.04 0.00 +infoutue infoutu adj f s 0.06 0.14 0.00 0.07 +infoutus infoutu adj m p 0.06 0.14 0.02 0.07 +infra infra adv 0.59 0.27 0.59 0.27 +infraction infraction nom f s 3.95 1.22 2.91 0.95 +infractions infraction nom f p 3.95 1.22 1.04 0.27 +infranchi infranchi adj m s 0.00 0.07 0.00 0.07 +infranchissable infranchissable adj s 0.93 3.18 0.77 2.64 +infranchissables infranchissable adj p 0.93 3.18 0.17 0.54 +infrangible infrangible adj f s 0.01 0.27 0.01 0.27 +infrarouge infrarouge nom m s 1.31 0.07 0.85 0.00 +infrarouges infrarouge adj p 1.09 0.00 0.48 0.00 +infrason infrason nom m s 0.01 0.00 0.01 0.00 +infrastructure infrastructure nom f s 0.93 0.27 0.60 0.20 +infrastructures infrastructure nom f p 0.93 0.27 0.32 0.07 +infroissable infroissable adj m s 0.18 0.14 0.18 0.14 +infructueuse infructueux adj f s 0.34 1.22 0.07 0.00 +infructueuses infructueux adj f p 0.34 1.22 0.08 0.34 +infructueux infructueux adj m 0.34 1.22 0.19 0.88 +infréquentable infréquentable adj m s 0.03 0.20 0.01 0.07 +infréquentables infréquentable adj m p 0.03 0.20 0.02 0.14 +infréquentée infréquenté adj f s 0.00 0.14 0.00 0.07 +infréquentés infréquenté adj m p 0.00 0.14 0.00 0.07 +inféconde infécond adj f s 0.16 0.20 0.14 0.20 +infécondes infécond adj f p 0.16 0.20 0.01 0.00 +infécondité infécondité nom f s 0.00 0.07 0.00 0.07 +inféode inféoder ver 0.00 0.34 0.00 0.07 ind:pre:3s; +inféoder inféoder ver 0.00 0.34 0.00 0.20 inf; +inféodée inféoder ver f s 0.00 0.34 0.00 0.07 par:pas; +inférai inférer ver 0.00 0.20 0.00 0.07 ind:pas:1s; +inférer inférer ver 0.00 0.20 0.00 0.07 inf; +inférieur inférieur adj m s 8.15 16.89 2.63 3.45 +inférieure inférieur adj f s 8.15 16.89 3.27 11.22 +inférieures inférieur adj f p 8.15 16.89 0.70 0.88 +inférieurs inférieur adj m p 8.15 16.89 1.54 1.35 +inférioriser inférioriser ver 0.01 0.00 0.01 0.00 inf; +infériorité infériorité nom f s 1.06 3.45 1.06 3.38 +infériorités infériorité nom f p 1.06 3.45 0.00 0.07 +inféré inférer ver m s 0.00 0.20 0.00 0.07 par:pas; +infus infus adj m s 0.27 0.34 0.00 0.14 +infusaient infuser ver 0.20 1.82 0.00 0.14 ind:imp:3p; +infusait infuser ver 0.20 1.82 0.00 0.34 ind:imp:3s; +infusant infuser ver 0.20 1.82 0.00 0.14 par:pre; +infuse infus adj f s 0.27 0.34 0.27 0.14 +infusent infuser ver 0.20 1.82 0.00 0.14 ind:pre:3p; +infuser infuser ver 0.20 1.82 0.10 0.20 inf; +infuses infus adj f p 0.27 0.34 0.00 0.07 +infusion infusion nom f s 0.57 2.77 0.54 2.43 +infusions infusion nom f p 0.57 2.77 0.03 0.34 +infusoires infusoire nom m p 0.00 0.07 0.00 0.07 +infusé infuser ver m s 0.20 1.82 0.04 0.41 par:pas; +infusée infuser ver f s 0.20 1.82 0.01 0.07 par:pas; +infusées infuser ver f p 0.20 1.82 0.01 0.07 par:pas; +ingagnable ingagnable adj f s 0.06 0.00 0.06 0.00 +ingambe ingambe adj s 0.00 0.41 0.00 0.20 +ingambes ingambe adj m p 0.00 0.41 0.00 0.20 +ingestion ingestion nom f s 0.17 0.20 0.17 0.20 +inglorieusement inglorieusement adv 0.00 0.07 0.00 0.07 +inglorieux inglorieux adj m 0.00 0.14 0.00 0.14 +ingouvernable ingouvernable adj f s 0.11 0.27 0.11 0.27 +ingrat ingrat adj m s 5.61 8.31 3.46 4.86 +ingrate ingrat adj f s 5.61 8.31 1.42 2.09 +ingratement ingratement adv 0.00 0.07 0.00 0.07 +ingrates ingrat nom f p 3.11 2.50 0.29 0.00 +ingratitude ingratitude nom f s 1.32 3.11 1.32 3.11 +ingrats ingrat nom m p 3.11 2.50 0.55 0.34 +ingrédient ingrédient nom m s 4.22 1.82 1.48 0.27 +ingrédients ingrédient nom m p 4.22 1.82 2.75 1.55 +ingère ingérer ver 1.29 0.61 0.23 0.00 ind:pre:1s;ind:pre:3s; +ingèrent ingérer ver 1.29 0.61 0.05 0.07 ind:pre:3p; +inguinal inguinal adj m s 0.00 0.14 0.00 0.07 +inguinales inguinal adj f p 0.00 0.14 0.00 0.07 +ingénia ingénier ver 0.03 3.11 0.00 0.27 ind:pas:3s; +ingéniai ingénier ver 0.03 3.11 0.00 0.14 ind:pas:1s; +ingéniaient ingénier ver 0.03 3.11 0.00 0.14 ind:imp:3p; +ingéniais ingénier ver 0.03 3.11 0.00 0.14 ind:imp:1s; +ingéniait ingénier ver 0.03 3.11 0.00 1.35 ind:imp:3s; +ingéniant ingénier ver 0.03 3.11 0.00 0.27 par:pre; +ingénie ingénier ver 0.03 3.11 0.01 0.34 ind:pre:1s;ind:pre:3s; +ingénient ingénier ver 0.03 3.11 0.00 0.07 ind:pre:3p; +ingénier ingénier ver 0.03 3.11 0.00 0.14 inf; +ingénierie ingénierie nom f s 0.94 0.00 0.94 0.00 +ingénieur_chimiste ingénieur_chimiste nom m s 0.00 0.07 0.00 0.07 +ingénieur_conseil ingénieur_conseil nom m s 0.00 0.14 0.00 0.14 +ingénieur ingénieur nom m s 21.12 12.36 18.92 9.12 +ingénieurs ingénieur nom m p 21.12 12.36 2.20 3.24 +ingénieuse ingénieux adj f s 3.55 4.32 0.62 0.95 +ingénieusement ingénieusement adv 0.06 0.41 0.06 0.41 +ingénieuses ingénieux adj f p 3.55 4.32 0.02 0.61 +ingénieux ingénieux adj m 3.55 4.32 2.90 2.77 +ingéniosité ingéniosité nom f s 0.70 3.45 0.70 3.31 +ingéniosités ingéniosité nom f p 0.70 3.45 0.00 0.14 +ingénié ingénier ver m s 0.03 3.11 0.02 0.20 par:pas; +ingéniés ingénier ver m p 0.03 3.11 0.00 0.07 par:pas; +ingénu ingénu nom m s 0.99 0.81 0.37 0.14 +ingénue ingénu adj f s 1.03 1.96 0.36 0.54 +ingénues ingénu nom f p 0.99 0.81 0.28 0.27 +ingénuité ingénuité nom f s 0.52 1.15 0.52 1.08 +ingénuités ingénuité nom f p 0.52 1.15 0.00 0.07 +ingénument ingénument adv 0.00 0.95 0.00 0.95 +ingénus ingénu adj m p 1.03 1.96 0.23 0.47 +ingérable ingérable adj m s 0.16 0.00 0.16 0.00 +ingérant ingérer ver 1.29 0.61 0.03 0.07 par:pre; +ingérence ingérence nom f s 0.23 1.76 0.21 1.01 +ingérences ingérence nom f p 0.23 1.76 0.02 0.74 +ingérer ingérer ver 1.29 0.61 0.38 0.34 inf; +ingurgita ingurgiter ver 0.99 4.66 0.00 0.20 ind:pas:3s; +ingurgitaient ingurgiter ver 0.99 4.66 0.00 0.20 ind:imp:3p; +ingurgitais ingurgiter ver 0.99 4.66 0.00 0.07 ind:imp:1s; +ingurgitait ingurgiter ver 0.99 4.66 0.01 0.47 ind:imp:3s; +ingurgitant ingurgiter ver 0.99 4.66 0.00 0.41 par:pre; +ingurgitation ingurgitation nom f s 0.00 0.14 0.00 0.14 +ingurgite ingurgiter ver 0.99 4.66 0.15 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ingurgitent ingurgiter ver 0.99 4.66 0.02 0.07 ind:pre:3p; +ingurgiter ingurgiter ver 0.99 4.66 0.40 1.96 inf; +ingurgiterait ingurgiter ver 0.99 4.66 0.00 0.07 cnd:pre:3s; +ingurgité ingurgiter ver m s 0.99 4.66 0.40 0.54 par:pas; +ingurgitée ingurgiter ver f s 0.99 4.66 0.00 0.27 par:pas; +ingurgitées ingurgiter ver f p 0.99 4.66 0.00 0.07 par:pas; +ingurgités ingurgiter ver m p 0.99 4.66 0.00 0.14 par:pas; +ingérons ingérer ver 1.29 0.61 0.01 0.00 ind:pre:1p; +ingéré ingérer ver m s 1.29 0.61 0.41 0.00 par:pas; +ingérée ingérer ver f s 1.29 0.61 0.14 0.00 par:pas; +ingérées ingérer ver f p 1.29 0.61 0.02 0.07 par:pas; +ingérés ingérer ver m p 1.29 0.61 0.02 0.07 par:pas; +inguérissable inguérissable adj f s 0.03 1.62 0.03 1.15 +inguérissables inguérissable adj f p 0.03 1.62 0.00 0.47 +inhabile inhabile adj s 0.01 0.14 0.01 0.14 +inhabitable inhabitable adj s 0.54 1.08 0.51 0.81 +inhabitables inhabitable adj m p 0.54 1.08 0.04 0.27 +inhabité inhabité adj m s 1.71 2.57 0.60 1.08 +inhabitée inhabité adj f s 1.71 2.57 1.00 1.22 +inhabituel inhabituel adj m s 10.23 7.16 7.04 2.70 +inhabituelle inhabituel adj f s 10.23 7.16 1.83 3.58 +inhabituellement inhabituellement adv 0.11 0.20 0.11 0.20 +inhabituelles inhabituel adj f p 10.23 7.16 0.75 0.41 +inhabituels inhabituel adj m p 10.23 7.16 0.61 0.47 +inhabitées inhabité adj f p 1.71 2.57 0.07 0.27 +inhabités inhabité adj m p 1.71 2.57 0.04 0.00 +inhala inhaler ver 0.77 0.47 0.00 0.14 ind:pas:3s; +inhalais inhaler ver 0.77 0.47 0.00 0.07 ind:imp:1s; +inhalait inhaler ver 0.77 0.47 0.05 0.07 ind:imp:3s; +inhalant inhaler ver 0.77 0.47 0.03 0.07 par:pre; +inhalateur inhalateur nom m s 0.93 0.27 0.86 0.20 +inhalateurs inhalateur nom m p 0.93 0.27 0.06 0.07 +inhalation inhalation nom f s 0.67 0.41 0.60 0.20 +inhalations inhalation nom f p 0.67 0.41 0.07 0.20 +inhaler inhaler ver 0.77 0.47 0.17 0.14 inf; +inhalera inhaler ver 0.77 0.47 0.02 0.00 ind:fut:3s; +inhalez inhaler ver 0.77 0.47 0.06 0.00 imp:pre:2p;ind:pre:2p; +inhalé inhaler ver m s 0.77 0.47 0.44 0.00 par:pas; +inharmonieux inharmonieux adj m s 0.01 0.00 0.01 0.00 +inhibait inhiber ver 0.47 0.61 0.00 0.07 ind:imp:3s; +inhibant inhiber ver 0.47 0.61 0.04 0.20 par:pre; +inhibe inhiber ver 0.47 0.61 0.19 0.00 ind:pre:3s; +inhibent inhiber ver 0.47 0.61 0.02 0.00 ind:pre:3p; +inhiber inhiber ver 0.47 0.61 0.12 0.07 inf; +inhibiteur inhibiteur nom m s 0.84 0.00 0.69 0.00 +inhibiteurs inhibiteur nom m p 0.84 0.00 0.15 0.00 +inhibition inhibition nom f s 1.51 1.22 0.66 0.74 +inhibitions inhibition nom f p 1.51 1.22 0.85 0.47 +inhibitrice inhibiteur adj f s 0.22 0.00 0.03 0.00 +inhibât inhiber ver 0.47 0.61 0.00 0.07 sub:imp:3s; +inhibé inhibé adj m s 0.34 0.27 0.18 0.07 +inhibée inhibé adj f s 0.34 0.27 0.03 0.14 +inhibés inhibé adj m p 0.34 0.27 0.14 0.07 +inhospitalier inhospitalier adj m s 0.19 1.08 0.11 0.47 +inhospitaliers inhospitalier adj m p 0.19 1.08 0.02 0.07 +inhospitalière inhospitalier adj f s 0.19 1.08 0.05 0.27 +inhospitalières inhospitalier adj f p 0.19 1.08 0.01 0.27 +inhospitalité inhospitalité nom f s 0.01 0.07 0.01 0.07 +inhuma inhumer ver 1.11 1.89 0.00 0.27 ind:pas:3s; +inhumaient inhumer ver 1.11 1.89 0.00 0.07 ind:imp:3p; +inhumain inhumain adj m s 4.46 8.85 3.21 4.12 +inhumaine inhumain adj f s 4.46 8.85 0.32 3.24 +inhumainement inhumainement adv 0.01 0.34 0.01 0.34 +inhumaines inhumain adj f p 4.46 8.85 0.45 0.74 +inhumains inhumain adj m p 4.46 8.85 0.48 0.74 +inhumait inhumer ver 1.11 1.89 0.00 0.07 ind:imp:3s; +inhumanité inhumanité nom f s 0.28 0.68 0.28 0.68 +inhumation inhumation nom f s 0.31 1.28 0.31 1.22 +inhumations inhumation nom f p 0.31 1.28 0.00 0.07 +inhume inhumer ver 1.11 1.89 0.01 0.00 ind:pre:3s; +inhumer inhumer ver 1.11 1.89 0.42 0.54 inf; +inhumons inhumer ver 1.11 1.89 0.00 0.07 imp:pre:1p; +inhumé inhumer ver m s 1.11 1.89 0.36 0.61 par:pas; +inhumée inhumer ver f s 1.11 1.89 0.12 0.07 par:pas; +inhumés inhumer ver m p 1.11 1.89 0.19 0.20 par:pas; +inhérent inhérent adj m s 0.75 1.82 0.38 0.61 +inhérente inhérent adj f s 0.75 1.82 0.14 0.41 +inhérentes inhérent adj f p 0.75 1.82 0.13 0.47 +inhérents inhérent adj m p 0.75 1.82 0.09 0.34 +inidentifiable inidentifiable adj m s 0.00 0.34 0.00 0.14 +inidentifiables inidentifiable adj p 0.00 0.34 0.00 0.20 +inimaginable inimaginable adj s 3.17 4.80 2.48 3.58 +inimaginablement inimaginablement adv 0.01 0.07 0.01 0.07 +inimaginables inimaginable adj p 3.17 4.80 0.69 1.22 +inimitable inimitable adj s 0.64 3.51 0.64 3.51 +inimitablement inimitablement adv 0.00 0.07 0.00 0.07 +inimitié inimitié nom f s 0.33 1.08 0.31 0.74 +inimitiés inimitié nom f p 0.33 1.08 0.01 0.34 +inimité inimité adj m s 0.11 0.00 0.11 0.00 +ininflammable ininflammable adj m s 0.19 0.00 0.19 0.00 +inintelligence inintelligence nom f s 0.00 0.14 0.00 0.14 +inintelligent inintelligent adj m s 0.11 0.34 0.01 0.14 +inintelligents inintelligent adj m p 0.11 0.34 0.10 0.20 +inintelligible inintelligible adj m s 0.18 2.16 0.08 1.28 +inintelligibles inintelligible adj p 0.18 2.16 0.10 0.88 +ininterprétables ininterprétable adj f p 0.00 0.07 0.00 0.07 +ininterrompu ininterrompu adj m s 0.61 4.05 0.08 2.23 +ininterrompue ininterrompu adj f s 0.61 4.05 0.29 1.49 +ininterrompues ininterrompu adj f p 0.61 4.05 0.22 0.20 +ininterrompus ininterrompu adj m p 0.61 4.05 0.02 0.14 +inintéressant inintéressant adj m s 0.41 0.54 0.06 0.20 +inintéressante inintéressant adj f s 0.41 0.54 0.17 0.14 +inintéressantes inintéressant adj f p 0.41 0.54 0.02 0.14 +inintéressants inintéressant adj m p 0.41 0.54 0.15 0.07 +inintérêt inintérêt nom m s 0.00 0.14 0.00 0.14 +inique inique adj s 0.28 0.34 0.27 0.20 +iniques inique adj p 0.28 0.34 0.01 0.14 +iniquité iniquité nom f s 1.06 1.35 0.98 1.08 +iniquités iniquité nom f p 1.06 1.35 0.09 0.27 +initia initier ver 3.59 8.78 0.06 0.54 ind:pas:3s; +initiai initier ver 3.59 8.78 0.01 0.14 ind:pas:1s; +initiaient initier ver 3.59 8.78 0.00 0.27 ind:imp:3p; +initiais initier ver 3.59 8.78 0.00 0.20 ind:imp:1s; +initiait initier ver 3.59 8.78 0.15 0.47 ind:imp:3s; +initial initial adj m s 2.86 7.23 1.30 4.19 +initiale initial adj f s 2.86 7.23 1.09 1.96 +initialement initialement adv 0.27 1.49 0.27 1.49 +initiales initiale nom f p 4.02 7.36 3.61 6.89 +initialisation initialisation nom f s 0.55 0.00 0.55 0.00 +initialise initialiser ver 0.14 0.00 0.04 0.00 imp:pre:2s;ind:pre:1s; +initialiser initialiser ver 0.14 0.00 0.06 0.00 inf; +initialisez initialiser ver 0.14 0.00 0.03 0.00 imp:pre:2p; +initialisé initialisé adj m s 0.15 0.00 0.07 0.00 +initialisée initialisé adj f s 0.15 0.00 0.04 0.00 +initialisés initialisé adj m p 0.15 0.00 0.03 0.00 +initiant initier ver 3.59 8.78 0.01 0.20 par:pre; +initiateur initiateur adj m s 0.16 0.20 0.14 0.14 +initiateurs initiateur nom m p 0.11 1.01 0.11 0.14 +initiation initiation nom f s 1.63 4.39 1.58 4.05 +initiations initiation nom f p 1.63 4.39 0.05 0.34 +initiatique initiatique adj s 0.22 1.82 0.21 1.42 +initiatiques initiatique adj p 0.22 1.82 0.01 0.41 +initiative initiative nom f s 8.76 16.82 7.08 14.46 +initiatives initiative nom f p 8.76 16.82 1.67 2.36 +initiatrice initiateur nom f s 0.11 1.01 0.00 0.27 +initiatrices initiateur nom f p 0.11 1.01 0.00 0.07 +initiaux initial adj m p 2.86 7.23 0.14 0.27 +initie initier ver 3.59 8.78 0.37 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +initier initier ver 3.59 8.78 1.27 3.45 inf; +initiera initier ver 3.59 8.78 0.00 0.07 ind:fut:3s; +initierai initier ver 3.59 8.78 0.04 0.14 ind:fut:1s; +initierait initier ver 3.59 8.78 0.00 0.07 cnd:pre:3s; +initierons initier ver 3.59 8.78 0.00 0.07 ind:fut:1p; +initiez initier ver 3.59 8.78 0.10 0.00 imp:pre:2p;ind:pre:2p; +initiâmes initier ver 3.59 8.78 0.00 0.07 ind:pas:1p; +initiât initier ver 3.59 8.78 0.00 0.07 sub:imp:3s; +initièrent initier ver 3.59 8.78 0.00 0.20 ind:pas:3p; +initié initier ver m s 3.59 8.78 1.00 1.89 par:pas; +initiée initier ver f s 3.59 8.78 0.40 0.34 par:pas; +initiées initier ver f p 3.59 8.78 0.03 0.00 par:pas; +initiés initié nom m p 0.97 3.04 0.56 2.30 +injecta injecter ver 6.81 3.11 0.00 0.07 ind:pas:3s; +injectable injectable adj s 0.05 0.00 0.05 0.00 +injectaient injecter ver 6.81 3.11 0.02 0.14 ind:imp:3p; +injectait injecter ver 6.81 3.11 0.14 0.07 ind:imp:3s; +injectant injecter ver 6.81 3.11 0.28 0.14 par:pre; +injecte injecter ver 6.81 3.11 1.32 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +injectent injecter ver 6.81 3.11 0.25 0.07 ind:pre:3p; +injecter injecter ver 6.81 3.11 1.41 0.61 inf; +injectera injecter ver 6.81 3.11 0.03 0.00 ind:fut:3s; +injecteras injecter ver 6.81 3.11 0.04 0.00 ind:fut:2s; +injectes injecter ver 6.81 3.11 0.06 0.07 ind:pre:2s; +injecteur injecteur nom m s 0.60 0.07 0.08 0.07 +injecteurs injecteur nom m p 0.60 0.07 0.52 0.00 +injectez injecter ver 6.81 3.11 0.29 0.00 imp:pre:2p;ind:pre:2p; +injection injection nom f s 8.98 1.42 7.83 0.95 +injections injection nom f p 8.98 1.42 1.16 0.47 +injecté injecter ver m s 6.81 3.11 1.97 0.88 par:pas; +injectée injecter ver f s 6.81 3.11 0.40 0.00 par:pas; +injectés injecter ver m p 6.81 3.11 0.61 0.81 par:pas; +injoignable injoignable adj s 1.21 0.07 1.10 0.07 +injoignables injoignable adj p 1.21 0.07 0.12 0.00 +injonction injonction nom f s 1.58 4.26 1.30 2.36 +injonctions injonction nom f p 1.58 4.26 0.28 1.89 +injouable injouable adj s 0.02 0.00 0.02 0.00 +injure injure nom f s 4.58 16.69 2.22 4.93 +injures injure nom f p 4.58 16.69 2.35 11.76 +injuria injurier ver 1.81 6.55 0.00 0.61 ind:pas:3s; +injuriai injurier ver 1.81 6.55 0.10 0.07 ind:pas:1s; +injuriaient injurier ver 1.81 6.55 0.00 0.27 ind:imp:3p; +injuriais injurier ver 1.81 6.55 0.00 0.14 ind:imp:1s; +injuriait injurier ver 1.81 6.55 0.17 1.15 ind:imp:3s; +injuriant injurier ver 1.81 6.55 0.02 0.54 par:pre; +injurie injurier ver 1.81 6.55 0.05 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +injurient injurier ver 1.81 6.55 0.01 0.07 ind:pre:3p; +injurier injurier ver 1.81 6.55 0.49 1.89 inf; +injuries injurier ver 1.81 6.55 0.05 0.00 ind:pre:2s; +injurieuse injurieux adj f s 0.13 1.15 0.04 0.27 +injurieusement injurieusement adv 0.00 0.07 0.00 0.07 +injurieux injurieux adj m 0.13 1.15 0.09 0.88 +injurié injurier ver m s 1.81 6.55 0.78 0.47 par:pas; +injuriée injurier ver f s 1.81 6.55 0.14 0.27 par:pas; +injuriés injurier ver m p 1.81 6.55 0.01 0.20 par:pas; +injuste injuste adj s 17.46 15.47 15.94 13.38 +injustement injustement adv 1.58 2.23 1.58 2.23 +injustes injuste adj p 17.46 15.47 1.52 2.09 +injustice injustice nom f s 6.59 13.51 4.61 11.49 +injustices injustice nom f p 6.59 13.51 1.98 2.03 +injustifiable injustifiable adj f s 0.06 0.95 0.06 0.88 +injustifiables injustifiable adj m p 0.06 0.95 0.00 0.07 +injustifié injustifié adj m s 1.33 1.42 0.41 0.27 +injustifiée injustifié adj f s 1.33 1.42 0.70 0.61 +injustifiées injustifié adj f p 1.33 1.42 0.05 0.41 +injustifiés injustifié adj m p 1.33 1.42 0.17 0.14 +inlassable inlassable adj s 0.38 4.19 0.24 3.31 +inlassablement inlassablement adv 0.38 9.59 0.38 9.59 +inlassables inlassable adj p 0.38 4.19 0.14 0.88 +innervant innerver ver 0.02 0.20 0.02 0.00 par:pre; +innervation innervation nom f s 0.00 0.27 0.00 0.27 +innerver innerver ver 0.02 0.20 0.00 0.07 inf; +innervé innerver ver m s 0.02 0.20 0.00 0.14 par:pas; +innocemment innocemment adv 0.64 3.18 0.64 3.18 +innocence innocence nom f s 10.63 20.00 10.63 19.59 +innocences innocence nom f p 10.63 20.00 0.00 0.41 +innocent innocent adj m s 39.31 23.11 23.49 11.22 +innocentait innocenter ver 2.56 1.42 0.01 0.14 ind:imp:3s; +innocentant innocenter ver 2.56 1.42 0.03 0.00 par:pre; +innocente innocent adj f s 39.31 23.11 8.15 5.14 +innocenter innocenter ver 2.56 1.42 0.76 0.61 inf; +innocentera innocenter ver 2.56 1.42 0.27 0.00 ind:fut:3s; +innocenterai innocenter ver 2.56 1.42 0.01 0.00 ind:fut:1s; +innocenterait innocenter ver 2.56 1.42 0.02 0.14 cnd:pre:3s; +innocentes innocent adj f p 39.31 23.11 2.73 2.43 +innocents innocent nom m p 24.68 13.18 11.03 5.95 +innocenté innocenter ver m s 2.56 1.42 0.94 0.14 par:pas; +innocentée innocenter ver f s 2.56 1.42 0.15 0.00 par:pas; +innocuité innocuité nom f s 0.00 0.20 0.00 0.20 +innombrable innombrable adj s 3.15 29.53 0.02 4.12 +innombrablement innombrablement adv 0.00 0.07 0.00 0.07 +innombrables innombrable adj p 3.15 29.53 3.13 25.41 +innominés innominé adj m p 0.00 0.14 0.00 0.14 +innommable innommable adj s 0.49 3.85 0.33 2.50 +innommables innommable adj p 0.49 3.85 0.17 1.35 +innommé innommé adj m s 0.05 0.27 0.00 0.14 +innommée innommé adj f s 0.05 0.27 0.05 0.00 +innommés innommé adj m p 0.05 0.27 0.00 0.14 +innova innover ver 0.93 0.88 0.00 0.07 ind:pas:3s; +innovais innover ver 0.93 0.88 0.00 0.07 ind:imp:1s; +innovait innover ver 0.93 0.88 0.02 0.07 ind:imp:3s; +innovant innovant adj m s 0.07 0.07 0.04 0.07 +innovante innovant adj f s 0.07 0.07 0.03 0.00 +innovateur innovateur adj m s 0.07 0.00 0.06 0.00 +innovation innovation nom f s 1.06 2.03 0.55 1.49 +innovations innovation nom f p 1.06 2.03 0.51 0.54 +innovatrice innovateur adj f s 0.07 0.00 0.01 0.00 +innove innover ver 0.93 0.88 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +innover innover ver 0.93 0.88 0.55 0.34 inf; +innovez innover ver 0.93 0.88 0.00 0.07 ind:pre:2p; +innové innover ver m s 0.93 0.88 0.09 0.14 par:pas; +inné inné adj m s 1.26 2.97 0.95 1.35 +innée inné adj f s 1.26 2.97 0.26 1.28 +innées inné adj f p 1.26 2.97 0.03 0.07 +innés inné adj m p 1.26 2.97 0.01 0.27 +inoccupations inoccupation nom f p 0.00 0.07 0.00 0.07 +inoccupé inoccupé adj m s 0.67 3.24 0.11 0.88 +inoccupée inoccupé adj f s 0.67 3.24 0.48 1.49 +inoccupées inoccupé adj f p 0.67 3.24 0.04 0.34 +inoccupés inoccupé adj m p 0.67 3.24 0.02 0.54 +inoculant inoculer ver 0.93 0.95 0.01 0.00 par:pre; +inoculation inoculation nom f s 0.24 0.07 0.24 0.07 +inocule inoculer ver 0.93 0.95 0.05 0.14 ind:pre:1s;ind:pre:3s; +inoculent inoculer ver 0.93 0.95 0.00 0.07 ind:pre:3p; +inoculer inoculer ver 0.93 0.95 0.09 0.20 inf; +inoculerait inoculer ver 0.93 0.95 0.00 0.07 cnd:pre:3s; +inoculé inoculer ver m s 0.93 0.95 0.55 0.34 par:pas; +inoculée inoculer ver f s 0.93 0.95 0.07 0.14 par:pas; +inoculées inoculer ver f p 0.93 0.95 0.16 0.00 par:pas; +inodore inodore adj s 0.15 0.54 0.14 0.47 +inodores inodore adj p 0.15 0.54 0.01 0.07 +inoffensif inoffensif adj m s 7.78 8.04 4.62 3.45 +inoffensifs inoffensif adj m p 7.78 8.04 1.35 2.03 +inoffensive inoffensif adj f s 7.78 8.04 1.38 1.49 +inoffensives inoffensif adj f p 7.78 8.04 0.43 1.08 +inonda inonder ver 6.69 15.14 0.13 1.42 ind:pas:3s; +inondable inondable adj f s 0.01 0.20 0.00 0.07 +inondables inondable adj f p 0.01 0.20 0.01 0.14 +inondaient inonder ver 6.69 15.14 0.01 0.74 ind:imp:3p; +inondait inonder ver 6.69 15.14 0.18 3.04 ind:imp:3s; +inondant inonder ver 6.69 15.14 0.21 1.35 par:pre; +inondation inondation nom f s 3.21 3.78 2.15 2.43 +inondations inondation nom f p 3.21 3.78 1.06 1.35 +inonde inonder ver 6.69 15.14 0.73 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inondent inonder ver 6.69 15.14 0.26 0.14 ind:pre:3p; +inonder inonder ver 6.69 15.14 1.37 1.35 inf; +inondera inonder ver 6.69 15.14 0.03 0.00 ind:fut:3s; +inonderai inonder ver 6.69 15.14 0.02 0.07 ind:fut:1s; +inonderait inonder ver 6.69 15.14 0.05 0.00 cnd:pre:3s; +inonderons inonder ver 6.69 15.14 0.02 0.00 ind:fut:1p; +inondez inonder ver 6.69 15.14 0.09 0.00 imp:pre:2p;ind:pre:2p; +inondiez inonder ver 6.69 15.14 0.02 0.00 ind:imp:2p; +inondât inonder ver 6.69 15.14 0.00 0.07 sub:imp:3s; +inondèrent inonder ver 6.69 15.14 0.00 0.07 ind:pas:3p; +inondé inonder ver m s 6.69 15.14 2.13 2.70 par:pas; +inondée inonder ver f s 6.69 15.14 0.74 1.35 par:pas; +inondées inonder ver f p 6.69 15.14 0.22 0.14 par:pas; +inondés inonder ver m p 6.69 15.14 0.48 0.61 par:pas; +inopiné inopiné adj m s 0.26 1.15 0.04 0.20 +inopinée inopiné adj f s 0.26 1.15 0.09 0.68 +inopinées inopiné adj f p 0.26 1.15 0.14 0.27 +inopinément inopinément adv 0.41 1.42 0.41 1.42 +inopportun inopportun adj m s 0.86 1.82 0.71 0.68 +inopportune inopportun adj f s 0.86 1.82 0.13 0.61 +inopportunes inopportun adj f p 0.86 1.82 0.01 0.34 +inopportunité inopportunité nom f s 0.00 0.07 0.00 0.07 +inopportuns inopportun adj m p 0.86 1.82 0.01 0.20 +inopportunément inopportunément adv 0.02 0.07 0.02 0.07 +inopérable inopérable adj s 0.26 0.00 0.24 0.00 +inopérables inopérable adj m p 0.26 0.00 0.02 0.00 +inopérant inopérant adj m s 0.35 0.88 0.07 0.34 +inopérante inopérant adj f s 0.35 0.88 0.07 0.07 +inopérantes inopérant adj f p 0.35 0.88 0.01 0.20 +inopérants inopérant adj m p 0.35 0.88 0.19 0.27 +inorganique inorganique adj f s 0.01 0.14 0.01 0.14 +inorganisé inorganisé adj m s 0.04 0.20 0.02 0.00 +inorganisée inorganisé adj f s 0.04 0.20 0.02 0.07 +inorganisées inorganisé adj f p 0.04 0.20 0.00 0.14 +inouï inouï adj m s 3.23 15.20 1.79 6.28 +inouïe inouï adj f s 3.23 15.20 0.97 5.27 +inouïes inouï adj f p 3.23 15.20 0.09 2.09 +inouïs inouï adj m p 3.23 15.20 0.38 1.55 +inoubliable inoubliable adj s 5.07 7.50 4.21 4.80 +inoubliablement inoubliablement adv 0.00 0.07 0.00 0.07 +inoubliables inoubliable adj p 5.07 7.50 0.86 2.70 +inoublié inoublié adj m s 0.00 0.14 0.00 0.07 +inoubliées inoublié adj f p 0.00 0.14 0.00 0.07 +inox inox nom m 0.13 0.27 0.13 0.27 +inoxydable inoxydable nom m s 0.23 0.14 0.23 0.14 +inoxydables inoxydable adj m p 0.16 0.61 0.01 0.14 +input input nom m s 0.00 0.07 0.00 0.07 +inqualifiable inqualifiable adj s 0.30 1.08 0.29 0.95 +inqualifiables inqualifiable adj m p 0.30 1.08 0.01 0.14 +inquiet inquiet adj m s 34.96 46.55 17.90 23.38 +inquiets inquiet adj m p 34.96 46.55 4.28 6.28 +inquilisme inquilisme nom m s 0.00 0.07 0.00 0.07 +inquisiteur inquisiteur adj m s 0.83 2.70 0.80 1.69 +inquisiteurs inquisiteur nom m p 1.45 2.43 0.67 1.35 +inquisition inquisition nom f s 3.15 4.66 3.13 4.26 +inquisitionner inquisitionner ver 0.00 0.07 0.00 0.07 inf; +inquisitions inquisition nom f p 3.15 4.66 0.01 0.41 +inquisitive inquisitif adj f s 0.00 0.07 0.00 0.07 +inquisitorial inquisitorial adj m s 0.10 0.54 0.10 0.07 +inquisitoriale inquisitorial adj f s 0.10 0.54 0.00 0.27 +inquisitoriales inquisitorial adj f p 0.10 0.54 0.00 0.14 +inquisitoriaux inquisitorial adj m p 0.10 0.54 0.00 0.07 +inquisitrice inquisiteur adj f s 0.83 2.70 0.02 0.14 +inquiète inquiéter ver 212.16 71.01 114.06 22.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +inquiètent inquiéter ver 212.16 71.01 3.02 1.01 ind:pre:3p; +inquiètes inquiéter ver 212.16 71.01 13.85 0.68 ind:pre:2s;sub:pre:2s; +inquiéta inquiéter ver 212.16 71.01 0.03 4.39 ind:pas:3s; +inquiétai inquiéter ver 212.16 71.01 0.00 0.34 ind:pas:1s; +inquiétaient inquiéter ver 212.16 71.01 0.12 2.16 ind:imp:3p; +inquiétais inquiéter ver 212.16 71.01 4.12 1.08 ind:imp:1s;ind:imp:2s; +inquiétait inquiéter ver 212.16 71.01 3.56 11.08 ind:imp:3s; +inquiétant inquiétant adj m s 5.72 20.88 3.88 8.72 +inquiétante inquiétant adj f s 5.72 20.88 1.18 7.03 +inquiétantes inquiétant adj f p 5.72 20.88 0.32 2.36 +inquiétants inquiétant adj m p 5.72 20.88 0.35 2.77 +inquiétassent inquiéter ver 212.16 71.01 0.00 0.07 sub:imp:3p; +inquiéter inquiéter ver 212.16 71.01 27.98 12.36 inf;; +inquiétera inquiéter ver 212.16 71.01 0.32 0.27 ind:fut:3s; +inquiéterai inquiéter ver 212.16 71.01 0.12 0.07 ind:fut:1s; +inquiéteraient inquiéter ver 212.16 71.01 0.06 0.07 cnd:pre:3p; +inquiéterais inquiéter ver 212.16 71.01 0.51 0.07 cnd:pre:1s;cnd:pre:2s; +inquiéterait inquiéter ver 212.16 71.01 0.23 0.61 cnd:pre:3s; +inquiéteras inquiéter ver 212.16 71.01 0.04 0.07 ind:fut:2s; +inquiéteriez inquiéter ver 212.16 71.01 0.01 0.00 cnd:pre:2p; +inquiéteront inquiéter ver 212.16 71.01 0.05 0.00 ind:fut:3p; +inquiéteur inquiéteur nom m s 0.00 0.07 0.00 0.07 +inquiétez inquiéter ver 212.16 71.01 38.80 3.85 imp:pre:2p;ind:pre:2p; +inquiétiez inquiéter ver 212.16 71.01 0.23 0.07 ind:imp:2p; +inquiétions inquiéter ver 212.16 71.01 0.15 0.07 ind:imp:1p; +inquiétons inquiéter ver 212.16 71.01 0.45 0.07 imp:pre:1p;ind:pre:1p; +inquiétât inquiéter ver 212.16 71.01 0.00 0.27 sub:imp:3s; +inquiétèrent inquiéter ver 212.16 71.01 0.00 0.54 ind:pas:3p; +inquiété inquiéter ver m s 212.16 71.01 2.21 4.26 par:pas; +inquiétude inquiétude nom f s 10.04 46.76 8.20 41.35 +inquiétudes inquiétude nom f p 10.04 46.76 1.84 5.41 +inquiétée inquiéter ver f s 212.16 71.01 1.41 1.62 par:pas; +inquiétées inquiéter ver f p 212.16 71.01 0.04 0.00 par:pas; +inquiétés inquiéter ver m p 212.16 71.01 0.50 0.95 par:pas; +inracontables inracontable adj f p 0.14 0.00 0.14 0.00 +insaisissable insaisissable adj s 1.16 6.15 1.08 5.47 +insaisissables insaisissable adj p 1.16 6.15 0.08 0.68 +insalissable insalissable adj s 0.00 0.07 0.00 0.07 +insalubre insalubre adj s 0.36 0.95 0.35 0.68 +insalubres insalubre adj p 0.36 0.95 0.01 0.27 +insalubrité insalubrité nom f s 0.00 0.27 0.00 0.27 +insane insane adj m s 0.05 0.41 0.05 0.07 +insanes insane adj p 0.05 0.41 0.00 0.34 +insanité insanité nom f s 0.44 1.49 0.22 0.27 +insanités insanité nom f p 0.44 1.49 0.22 1.22 +insatiable insatiable adj s 2.50 3.45 1.73 2.84 +insatiablement insatiablement adv 0.00 0.34 0.00 0.34 +insatiables insatiable adj p 2.50 3.45 0.77 0.61 +insatisfaction insatisfaction nom f s 0.22 1.15 0.21 1.08 +insatisfactions insatisfaction nom f p 0.22 1.15 0.01 0.07 +insatisfaisant insatisfaisant adj m s 0.24 0.14 0.18 0.14 +insatisfaisante insatisfaisant adj f s 0.24 0.14 0.05 0.00 +insatisfaisantes insatisfaisant adj f p 0.24 0.14 0.01 0.00 +insatisfait insatisfait adj m s 1.71 1.89 0.64 1.01 +insatisfaite insatisfait adj f s 1.71 1.89 0.53 0.34 +insatisfaites insatisfait adj f p 1.71 1.89 0.20 0.27 +insatisfaits insatisfait adj m p 1.71 1.89 0.34 0.27 +inscription inscription nom f s 7.17 19.32 5.04 12.97 +inscriptions inscription nom f p 7.17 19.32 2.13 6.35 +inscrira inscrire ver 25.41 42.70 0.25 0.27 ind:fut:3s; +inscrirai inscrire ver 25.41 42.70 0.55 0.00 ind:fut:1s; +inscriraient inscrire ver 25.41 42.70 0.01 0.07 cnd:pre:3p; +inscrirais inscrire ver 25.41 42.70 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +inscrirait inscrire ver 25.41 42.70 0.02 0.41 cnd:pre:3s; +inscriras inscrire ver 25.41 42.70 0.00 0.07 ind:fut:2s; +inscrire inscrire ver 25.41 42.70 7.84 9.86 inf; +inscris inscrire ver 25.41 42.70 2.63 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s; +inscrit inscrire ver m s 25.41 42.70 7.01 13.04 ind:pre:3s;par:pas; +inscrite inscrire ver f s 25.41 42.70 2.32 3.92 par:pas; +inscrites inscrire ver f p 25.41 42.70 0.29 0.81 par:pas; +inscrits inscrire ver m p 25.41 42.70 1.69 2.70 par:pas; +inscrivaient inscrire ver 25.41 42.70 0.02 1.55 ind:imp:3p; +inscrivais inscrire ver 25.41 42.70 0.02 0.20 ind:imp:1s;ind:imp:2s; +inscrivait inscrire ver 25.41 42.70 0.18 2.97 ind:imp:3s; +inscrivant inscrire ver 25.41 42.70 0.07 1.28 par:pre; +inscrive inscrire ver 25.41 42.70 0.33 0.34 sub:pre:1s;sub:pre:3s; +inscrivent inscrire ver 25.41 42.70 0.34 1.28 ind:pre:3p; +inscrivez inscrire ver 25.41 42.70 1.58 0.27 imp:pre:2p;ind:pre:2p; +inscrivirent inscrire ver 25.41 42.70 0.01 0.14 ind:pas:3p; +inscrivis inscrire ver 25.41 42.70 0.00 0.61 ind:pas:1s; +inscrivit inscrire ver 25.41 42.70 0.01 2.03 ind:pas:3s; +inscrivons inscrire ver 25.41 42.70 0.20 0.00 imp:pre:1p; +inscrutable inscrutable adj f s 0.00 0.14 0.00 0.14 +insecte insecte nom m s 13.79 22.70 5.46 8.04 +insectes insecte nom m p 13.79 22.70 8.32 14.66 +insecticide insecticide nom m s 1.05 0.61 0.92 0.47 +insecticides insecticide nom m p 1.05 0.61 0.14 0.14 +insectivore insectivore adj f s 0.02 0.00 0.02 0.00 +insensibilisait insensibiliser ver 0.18 0.27 0.00 0.07 ind:imp:3s; +insensibiliser insensibiliser ver 0.18 0.27 0.04 0.00 inf; +insensibilisé insensibiliser ver m s 0.18 0.27 0.13 0.14 par:pas; +insensibilisée insensibiliser ver f s 0.18 0.27 0.01 0.07 par:pas; +insensibilité insensibilité nom f s 0.28 1.55 0.28 1.55 +insensible insensible adj s 5.13 12.16 4.04 9.39 +insensiblement insensiblement adv 0.10 10.41 0.10 10.41 +insensibles insensible adj p 5.13 12.16 1.09 2.77 +insensé insensé adj m s 11.32 11.82 7.51 6.28 +insensée insensé adj f s 11.32 11.82 1.92 2.97 +insensées insensé adj f p 11.32 11.82 0.79 1.35 +insensément insensément adv 0.00 0.07 0.00 0.07 +insensés insensé adj m p 11.32 11.82 1.09 1.22 +insert insert nom m s 0.30 0.00 0.12 0.00 +insertion insertion nom f s 0.64 0.54 0.64 0.54 +inserts insert nom m p 0.30 0.00 0.19 0.00 +insidieuse insidieux adj f s 0.62 4.12 0.15 2.43 +insidieusement insidieusement adv 0.04 2.16 0.04 2.16 +insidieuses insidieux adj f p 0.62 4.12 0.16 0.34 +insidieux insidieux adj m 0.62 4.12 0.31 1.35 +insight insight nom m s 0.03 0.07 0.02 0.00 +insights insight nom m p 0.03 0.07 0.01 0.07 +insigne insigne nom m s 5.56 3.18 4.42 1.69 +insignes insigne nom m p 5.56 3.18 1.14 1.49 +insignifiance insignifiance nom f s 0.18 3.99 0.18 3.65 +insignifiances insignifiance nom f p 0.18 3.99 0.00 0.34 +insignifiant insignifiant adj m s 5.27 13.92 2.26 5.20 +insignifiante insignifiant adj f s 5.27 13.92 1.50 3.18 +insignifiantes insignifiant adj f p 5.27 13.92 0.66 2.50 +insignifiants insignifiant adj m p 5.27 13.92 0.85 3.04 +insincère insincère adj s 0.00 0.14 0.00 0.14 +insincérité insincérité nom f s 0.03 0.41 0.03 0.41 +insinua insinuer ver 9.90 9.73 0.01 1.22 ind:pas:3s; +insinuai insinuer ver 9.90 9.73 0.00 0.07 ind:pas:1s; +insinuaient insinuer ver 9.90 9.73 0.14 0.41 ind:imp:3p; +insinuais insinuer ver 9.90 9.73 0.11 0.07 ind:imp:1s;ind:imp:2s; +insinuait insinuer ver 9.90 9.73 0.10 1.22 ind:imp:3s; +insinuant insinuer ver 9.90 9.73 0.15 0.54 par:pre; +insinuante insinuant adj f s 0.10 2.09 0.00 0.74 +insinuantes insinuant adj f p 0.10 2.09 0.00 0.14 +insinuants insinuant adj m p 0.10 2.09 0.00 0.14 +insinuation insinuation nom f s 1.62 1.55 0.49 0.47 +insinuations insinuation nom f p 1.62 1.55 1.12 1.08 +insinue insinuer ver 9.90 9.73 1.19 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insinuent insinuer ver 9.90 9.73 0.09 0.61 ind:pre:3p; +insinuer insinuer ver 9.90 9.73 1.63 2.03 inf; +insinuerai insinuer ver 9.90 9.73 0.01 0.00 ind:fut:1s; +insinuerait insinuer ver 9.90 9.73 0.01 0.00 cnd:pre:3s; +insinues insinuer ver 9.90 9.73 2.36 0.41 ind:pre:2s; +insinuez insinuer ver 9.90 9.73 3.56 0.14 imp:pre:2p;ind:pre:2p; +insinuiez insinuer ver 9.90 9.73 0.03 0.00 ind:imp:2p; +insinué insinuer ver m s 9.90 9.73 0.38 0.34 par:pas; +insinuée insinuer ver f s 9.90 9.73 0.14 0.34 par:pas; +insipide insipide adj s 0.88 4.05 0.54 2.84 +insipides insipide adj p 0.88 4.05 0.34 1.22 +insipidité insipidité nom f s 0.00 0.14 0.00 0.14 +insista insister ver 42.16 67.03 0.18 13.04 ind:pas:3s; +insistai insister ver 42.16 67.03 0.00 3.31 ind:pas:1s; +insistaient insister ver 42.16 67.03 0.02 1.08 ind:imp:3p; +insistais insister ver 42.16 67.03 0.23 1.28 ind:imp:1s;ind:imp:2s; +insistait insister ver 42.16 67.03 1.11 7.97 ind:imp:3s; +insistance insistance nom f s 1.53 14.59 1.52 14.53 +insistances insistance nom f p 1.53 14.59 0.01 0.07 +insistant insister ver 42.16 67.03 0.64 3.45 par:pre; +insistante insistant adj f s 0.68 5.20 0.13 2.57 +insistantes insistant adj f p 0.68 5.20 0.01 0.54 +insistants insistant adj m p 0.68 5.20 0.19 0.68 +insiste insister ver 42.16 67.03 17.50 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insistent insister ver 42.16 67.03 0.52 0.68 ind:pre:3p; +insister insister ver 42.16 67.03 6.09 9.19 inf; +insistera insister ver 42.16 67.03 0.03 0.07 ind:fut:3s; +insisterai insister ver 42.16 67.03 0.28 0.07 ind:fut:1s; +insisteraient insister ver 42.16 67.03 0.14 0.00 cnd:pre:3p; +insisterais insister ver 42.16 67.03 0.17 0.00 cnd:pre:1s; +insisterait insister ver 42.16 67.03 0.08 0.07 cnd:pre:3s; +insisteras insister ver 42.16 67.03 0.01 0.00 ind:fut:2s; +insisterons insister ver 42.16 67.03 0.02 0.07 ind:fut:1p; +insistes insister ver 42.16 67.03 2.00 0.47 ind:pre:2s; +insistez insister ver 42.16 67.03 5.11 1.22 imp:pre:2p;ind:pre:2p; +insistiez insister ver 42.16 67.03 0.02 0.07 ind:imp:2p; +insistions insister ver 42.16 67.03 0.00 0.07 ind:imp:1p; +insistons insister ver 42.16 67.03 0.27 0.20 imp:pre:1p;ind:pre:1p; +insistât insister ver 42.16 67.03 0.00 0.07 sub:imp:3s; +insistèrent insister ver 42.16 67.03 0.00 0.27 ind:pas:3p; +insisté insister ver m s 42.16 67.03 7.75 9.86 par:pas; +insociable insociable adj s 0.02 0.20 0.02 0.20 +insolant insoler ver 0.00 0.20 0.00 0.07 par:pre; +insolation insolation nom f s 0.56 1.62 0.55 1.35 +insolations insolation nom f p 0.56 1.62 0.01 0.27 +insolemment insolemment adv 0.14 2.03 0.14 2.03 +insolence insolence nom f s 2.75 9.80 2.69 8.78 +insolences insolence nom f p 2.75 9.80 0.06 1.01 +insolent insolent adj m s 5.88 9.12 3.48 3.92 +insolente insolent adj f s 5.88 9.12 2.23 3.24 +insolentes insolent adj f p 5.88 9.12 0.03 0.47 +insolents insolent nom m p 1.31 0.88 0.16 0.20 +insolite insolite adj s 2.90 18.99 2.24 15.81 +insolitement insolitement adv 0.00 0.07 0.00 0.07 +insolites insolite adj p 2.90 18.99 0.66 3.18 +insolé insoler ver m s 0.00 0.20 0.00 0.07 par:pas; +insoluble insoluble adj s 0.69 2.16 0.50 1.28 +insolubles insoluble adj p 0.69 2.16 0.19 0.88 +insolvable insolvable adj m s 0.14 0.07 0.12 0.00 +insolvables insolvable adj m p 0.14 0.07 0.02 0.07 +insomniaque insomniaque adj s 0.77 0.95 0.62 0.68 +insomniaques insomniaque nom p 0.28 0.54 0.23 0.14 +insomnie insomnie nom f s 3.69 8.24 2.55 6.08 +insomnies insomnie nom f p 3.69 8.24 1.14 2.16 +insomnieuse insomnieux nom f s 0.00 0.27 0.00 0.07 +insomnieux insomnieux nom m 0.00 0.27 0.00 0.20 +insondable insondable adj s 0.95 4.32 0.38 3.58 +insondablement insondablement adv 0.00 0.14 0.00 0.14 +insondables insondable adj p 0.95 4.32 0.58 0.74 +insonore insonore adj m s 0.27 0.34 0.27 0.34 +insonorisation insonorisation nom f s 0.02 0.07 0.02 0.07 +insonoriser insonoriser ver 0.58 0.47 0.05 0.14 inf; +insonorisé insonoriser ver m s 0.58 0.47 0.32 0.00 par:pas; +insonorisée insonoriser ver f s 0.58 0.47 0.12 0.34 par:pas; +insonorisées insonoriser ver f p 0.58 0.47 0.03 0.00 par:pas; +insonorisés insonoriser ver m p 0.58 0.47 0.07 0.00 par:pas; +insonorité insonorité nom f s 0.00 0.07 0.00 0.07 +insortable insortable adj s 0.01 0.07 0.01 0.00 +insortables insortable adj p 0.01 0.07 0.00 0.07 +insouciance insouciance nom f s 1.15 7.91 1.15 7.91 +insouciant insouciant adj m s 3.27 6.55 1.75 2.16 +insouciante insouciant adj f s 3.27 6.55 0.58 2.70 +insouciantes insouciant adj f p 3.27 6.55 0.33 0.34 +insouciants insouciant adj m p 3.27 6.55 0.61 1.35 +insoucieuse insoucieux adj f s 0.04 1.28 0.00 0.27 +insoucieusement insoucieusement adv 0.00 0.07 0.00 0.07 +insoucieux insoucieux adj m 0.04 1.28 0.04 1.01 +insoulevables insoulevable adj p 0.00 0.07 0.00 0.07 +insoumis insoumis nom m 0.36 0.88 0.20 0.81 +insoumise insoumis adj f s 0.37 1.08 0.20 0.14 +insoumission insoumission nom f s 0.03 0.81 0.03 0.81 +insoupçonnable insoupçonnable adj s 0.24 1.62 0.23 0.88 +insoupçonnables insoupçonnable adj p 0.24 1.62 0.01 0.74 +insoupçonné insoupçonné adj m s 0.16 2.57 0.04 0.47 +insoupçonnée insoupçonné adj f s 0.16 2.57 0.03 0.88 +insoupçonnées insoupçonné adj f p 0.16 2.57 0.06 0.68 +insoupçonnés insoupçonné adj m p 0.16 2.57 0.04 0.54 +insoutenable insoutenable adj s 1.04 4.86 0.88 4.39 +insoutenables insoutenable adj p 1.04 4.86 0.16 0.47 +inspecta inspecter ver 7.54 13.99 0.02 1.28 ind:pas:3s; +inspectai inspecter ver 7.54 13.99 0.01 0.54 ind:pas:1s; +inspectaient inspecter ver 7.54 13.99 0.01 0.41 ind:imp:3p; +inspectais inspecter ver 7.54 13.99 0.04 0.20 ind:imp:1s; +inspectait inspecter ver 7.54 13.99 0.04 1.55 ind:imp:3s; +inspectant inspecter ver 7.54 13.99 0.09 0.95 par:pre; +inspecte inspecter ver 7.54 13.99 1.17 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inspectent inspecter ver 7.54 13.99 0.06 0.27 ind:pre:3p; +inspecter inspecter ver 7.54 13.99 3.61 5.14 inf; +inspectera inspecter ver 7.54 13.99 0.07 0.00 ind:fut:3s; +inspecterais inspecter ver 7.54 13.99 0.01 0.07 cnd:pre:1s; +inspecterez inspecter ver 7.54 13.99 0.01 0.00 ind:fut:2p; +inspecteront inspecter ver 7.54 13.99 0.03 0.00 ind:fut:3p; +inspectes inspecter ver 7.54 13.99 0.04 0.07 ind:pre:2s; +inspecteur inspecteur nom m s 69.77 19.66 64.12 15.74 +inspecteurs inspecteur nom m p 69.77 19.66 4.99 3.92 +inspectez inspecter ver 7.54 13.99 0.41 0.00 imp:pre:2p;ind:pre:2p; +inspectiez inspecter ver 7.54 13.99 0.02 0.00 ind:imp:2p; +inspection inspection nom f s 7.80 9.39 6.97 8.18 +inspections inspection nom f p 7.80 9.39 0.83 1.22 +inspectons inspecter ver 7.54 13.99 0.08 0.07 imp:pre:1p;ind:pre:1p; +inspectrice inspecteur nom f s 69.77 19.66 0.67 0.00 +inspectèrent inspecter ver 7.54 13.99 0.00 0.07 ind:pas:3p; +inspecté inspecter ver m s 7.54 13.99 1.29 1.55 par:pas; +inspectée inspecter ver f s 7.54 13.99 0.18 0.20 par:pas; +inspectées inspecter ver f p 7.54 13.99 0.15 0.00 par:pas; +inspectés inspecter ver m p 7.54 13.99 0.06 0.14 par:pas; +inspira inspirer ver 26.56 45.00 0.11 2.23 ind:pas:3s; +inspirai inspirer ver 26.56 45.00 0.00 0.07 ind:pas:1s; +inspiraient inspirer ver 26.56 45.00 0.08 3.04 ind:imp:3p; +inspirais inspirer ver 26.56 45.00 0.11 0.34 ind:imp:1s;ind:imp:2s; +inspirait inspirer ver 26.56 45.00 0.86 10.81 ind:imp:3s; +inspirant inspirer ver 26.56 45.00 0.60 2.43 par:pre; +inspirante inspirant adj f s 0.28 0.47 0.11 0.00 +inspirantes inspirant adj f p 0.28 0.47 0.01 0.27 +inspirants inspirant adj m p 0.28 0.47 0.00 0.07 +inspirateur inspirateur nom m s 0.11 1.08 0.03 0.61 +inspirateurs inspirateur nom m p 0.11 1.08 0.00 0.14 +inspiration inspiration nom f s 7.38 18.04 7.04 17.16 +inspirations inspiration nom f p 7.38 18.04 0.34 0.88 +inspiratoire inspiratoire adj m s 0.00 0.07 0.00 0.07 +inspiratrice inspirateur nom f s 0.11 1.08 0.08 0.27 +inspiratrices inspiratrice nom f p 0.02 0.00 0.02 0.00 +inspire inspirer ver 26.56 45.00 9.34 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +inspirent inspirer ver 26.56 45.00 0.94 1.49 ind:pre:3p; +inspirer inspirer ver 26.56 45.00 3.21 5.95 inf; +inspirera inspirer ver 26.56 45.00 0.20 0.34 ind:fut:3s; +inspireraient inspirer ver 26.56 45.00 0.00 0.07 cnd:pre:3p; +inspirerait inspirer ver 26.56 45.00 0.10 0.47 cnd:pre:3s; +inspireras inspirer ver 26.56 45.00 0.00 0.14 ind:fut:2s; +inspireront inspirer ver 26.56 45.00 0.01 0.07 ind:fut:3p; +inspires inspirer ver 26.56 45.00 0.47 0.07 ind:pre:2s; +inspirez inspirer ver 26.56 45.00 1.79 0.27 imp:pre:2p;ind:pre:2p; +inspiriez inspirer ver 26.56 45.00 0.01 0.00 ind:imp:2p; +inspirions inspirer ver 26.56 45.00 0.00 0.07 ind:imp:1p; +inspirât inspirer ver 26.56 45.00 0.00 0.20 sub:imp:3s; +inspirèrent inspirer ver 26.56 45.00 0.02 0.34 ind:pas:3p; +inspiré inspirer ver m s 26.56 45.00 5.89 5.47 par:pas; +inspirée inspirer ver f s 26.56 45.00 1.55 1.76 par:pas; +inspirées inspirer ver f p 26.56 45.00 0.56 0.81 par:pas; +inspirés inspirer ver m p 26.56 45.00 0.71 1.76 par:pas; +instabilité instabilité nom f s 0.93 0.81 0.93 0.81 +instable instable adj s 5.00 4.93 4.20 3.92 +instables instable adj p 5.00 4.93 0.80 1.01 +installa installer ver 70.76 162.23 0.27 16.35 ind:pas:3s; +installai installer ver 70.76 162.23 0.02 2.09 ind:pas:1s; +installaient installer ver 70.76 162.23 0.12 3.38 ind:imp:3p; +installais installer ver 70.76 162.23 0.44 1.22 ind:imp:1s;ind:imp:2s; +installait installer ver 70.76 162.23 0.69 11.49 ind:imp:3s; +installant installer ver 70.76 162.23 0.22 2.16 par:pre; +installasse installer ver 70.76 162.23 0.00 0.07 sub:imp:1s; +installateur installateur nom m s 0.07 0.00 0.07 0.00 +installation installation nom f s 6.75 12.57 4.16 9.80 +installations installation nom f p 6.75 12.57 2.59 2.77 +installe installer ver 70.76 162.23 12.89 15.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +installent installer ver 70.76 162.23 1.38 2.97 ind:pre:3p; +installer installer ver 70.76 162.23 22.76 29.73 ind:pre:2p;inf; +installera installer ver 70.76 162.23 1.01 0.88 ind:fut:3s; +installerai installer ver 70.76 162.23 0.63 0.54 ind:fut:1s; +installeraient installer ver 70.76 162.23 0.10 0.14 cnd:pre:3p; +installerais installer ver 70.76 162.23 0.23 0.54 cnd:pre:1s;cnd:pre:2s; +installerait installer ver 70.76 162.23 0.29 0.68 cnd:pre:3s; +installeras installer ver 70.76 162.23 0.29 0.07 ind:fut:2s; +installerez installer ver 70.76 162.23 0.14 0.00 ind:fut:2p; +installerions installer ver 70.76 162.23 0.10 0.07 cnd:pre:1p; +installerons installer ver 70.76 162.23 0.19 0.14 ind:fut:1p; +installeront installer ver 70.76 162.23 0.23 0.27 ind:fut:3p; +installes installer ver 70.76 162.23 1.39 0.34 ind:pre:2s; +installeur installeur nom m s 0.00 0.07 0.00 0.07 +installez installer ver 70.76 162.23 6.66 0.61 imp:pre:2p;ind:pre:2p; +installiez installer ver 70.76 162.23 0.10 0.00 ind:imp:2p; +installions installer ver 70.76 162.23 0.03 1.22 ind:imp:1p; +installâmes installer ver 70.76 162.23 0.00 1.62 ind:pas:1p; +installons installer ver 70.76 162.23 0.60 0.61 imp:pre:1p;ind:pre:1p; +installât installer ver 70.76 162.23 0.00 0.20 sub:imp:3s; +installèrent installer ver 70.76 162.23 0.09 3.99 ind:pas:3p; +installé installer ver m s 70.76 162.23 11.02 33.51 par:pas; +installée installer ver f s 70.76 162.23 4.78 14.26 par:pas; +installées installer ver f p 70.76 162.23 0.74 3.18 par:pas; +installés installer ver m p 70.76 162.23 3.34 14.05 par:pas; +instamment instamment adv 0.12 1.35 0.12 1.35 +instance instance nom f s 2.12 4.59 1.62 1.76 +instances instance nom f p 2.12 4.59 0.50 2.84 +instant instant nom m s 189.41 340.20 182.14 285.88 +instantané instantané adj m s 2.31 2.97 1.22 1.22 +instantanée instantané adj f s 2.31 2.97 0.98 1.35 +instantanées instantané adj f p 2.31 2.97 0.03 0.20 +instantanéité instantanéité nom f s 0.00 0.07 0.00 0.07 +instantanément instantanément adv 2.15 7.57 2.15 7.57 +instantanés instantané nom m p 0.33 1.01 0.12 0.41 +instante instant adj f s 3.55 18.78 0.00 0.20 +instantes instant adj f p 3.55 18.78 0.01 0.47 +instants instant nom m p 189.41 340.20 7.27 54.32 +instaura instaurer ver 2.63 4.66 0.26 0.34 ind:pas:3s; +instaurai instaurer ver 2.63 4.66 0.00 0.07 ind:pas:1s; +instaurait instaurer ver 2.63 4.66 0.00 0.47 ind:imp:3s; +instaurant instaurer ver 2.63 4.66 0.00 0.14 par:pre; +instauration instauration nom f s 0.02 0.27 0.02 0.27 +instauratrice instaurateur nom f s 0.00 0.07 0.00 0.07 +instaure instaurer ver 2.63 4.66 0.16 0.41 ind:pre:1s;ind:pre:3s; +instaurer instaurer ver 2.63 4.66 1.31 1.35 inf; +instaurera instaurer ver 2.63 4.66 0.02 0.00 ind:fut:3s; +instaurerions instaurer ver 2.63 4.66 0.00 0.07 cnd:pre:1p; +instaurions instaurer ver 2.63 4.66 0.00 0.07 ind:imp:1p; +instaurèrent instaurer ver 2.63 4.66 0.00 0.07 ind:pas:3p; +instauré instaurer ver m s 2.63 4.66 0.63 1.22 par:pas; +instaurée instaurer ver f s 2.63 4.66 0.21 0.14 par:pas; +instaurées instaurer ver f p 2.63 4.66 0.02 0.14 par:pas; +instaurés instaurer ver m p 2.63 4.66 0.02 0.20 par:pas; +insère insérer ver 2.92 4.26 0.57 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insèrent insérer ver 2.92 4.26 0.05 0.14 ind:pre:3p; +instigateur instigateur nom m s 1.04 1.01 0.88 0.47 +instigateurs instigateur nom m p 1.04 1.01 0.07 0.34 +instigation instigation nom f s 0.14 0.88 0.14 0.88 +instigatrice instigateur nom f s 1.04 1.01 0.09 0.20 +instilla instiller ver 0.24 0.74 0.00 0.14 ind:pas:3s; +instille instiller ver 0.24 0.74 0.00 0.07 ind:pre:3s; +instiller instiller ver 0.24 0.74 0.20 0.20 inf; +instillera instiller ver 0.24 0.74 0.00 0.07 ind:fut:3s; +instillé instiller ver m s 0.24 0.74 0.04 0.20 par:pas; +instillées instiller ver f p 0.24 0.74 0.00 0.07 par:pas; +instinct instinct nom m s 16.95 35.27 14.27 31.01 +instinctif instinctif adj m s 1.26 9.59 0.72 4.59 +instinctifs instinctif adj m p 1.26 9.59 0.01 0.34 +instinctive instinctif adj f s 1.26 9.59 0.51 4.39 +instinctivement instinctivement adv 1.50 9.46 1.50 9.46 +instinctives instinctif adj f p 1.26 9.59 0.01 0.27 +instinctivo instinctivo adv 0.00 0.07 0.00 0.07 +instincts instinct nom m p 16.95 35.27 2.69 4.26 +instinctuel instinctuel adj m s 0.01 0.00 0.01 0.00 +instit instit nom s 1.09 1.49 0.98 1.15 +instits instit nom p 1.09 1.49 0.11 0.34 +institua instituer ver 0.41 6.42 0.00 0.20 ind:pas:3s; +instituai instituer ver 0.41 6.42 0.00 0.14 ind:pas:1s; +instituaient instituer ver 0.41 6.42 0.00 0.07 ind:imp:3p; +instituait instituer ver 0.41 6.42 0.00 0.54 ind:imp:3s; +instituant instituer ver 0.41 6.42 0.00 0.68 par:pre; +institue instituer ver 0.41 6.42 0.11 0.14 ind:pre:3s; +instituent instituer ver 0.41 6.42 0.00 0.07 ind:pre:3p; +instituer instituer ver 0.41 6.42 0.05 1.69 inf; +instituons instituer ver 0.41 6.42 0.01 0.00 imp:pre:1p; +institut institut nom m s 5.49 4.53 5.37 3.85 +instituteur instituteur nom m s 11.49 23.31 7.29 13.18 +instituteurs instituteur nom m p 11.49 23.31 0.79 2.91 +instituèrent instituer ver 0.41 6.42 0.00 0.07 ind:pas:3p; +institution institution nom f s 9.41 17.23 6.23 7.57 +institutionnalisé institutionnaliser ver m s 0.03 0.00 0.03 0.00 par:pas; +institutionnel institutionnel adj m s 0.50 0.27 0.17 0.14 +institutionnelle institutionnel adj f s 0.50 0.27 0.30 0.14 +institutionnels institutionnel adj m p 0.50 0.27 0.03 0.00 +institutions institution nom f p 9.41 17.23 3.19 9.66 +institutrice instituteur nom f s 11.49 23.31 3.42 6.08 +institutrices institutrice nom f p 0.30 0.00 0.30 0.00 +instituts institut nom m p 5.49 4.53 0.12 0.68 +institué instituer ver m s 0.41 6.42 0.19 2.30 par:pas; +instituée instituer ver f s 0.41 6.42 0.01 0.41 par:pas; +instituées instituer ver f p 0.41 6.42 0.02 0.14 par:pas; +institués instituer ver m p 0.41 6.42 0.01 0.00 par:pas; +instructeur instructeur nom m s 1.60 2.09 1.12 1.22 +instructeurs instructeur nom m p 1.60 2.09 0.48 0.88 +instructif instructif adj m s 2.08 2.91 1.54 1.55 +instructifs instructif adj m p 2.08 2.91 0.19 0.14 +instruction instruction nom f s 22.37 30.27 6.91 16.08 +instructions instruction nom f p 22.37 30.27 15.46 14.19 +instructive instructif adj f s 2.08 2.91 0.14 0.88 +instructives instructif adj f p 2.08 2.91 0.22 0.34 +instruira instruire ver 5.85 11.96 0.16 0.07 ind:fut:3s; +instruirai instruire ver 5.85 11.96 0.02 0.00 ind:fut:1s; +instruiraient instruire ver 5.85 11.96 0.00 0.07 cnd:pre:3p; +instruirait instruire ver 5.85 11.96 0.02 0.41 cnd:pre:3s; +instruire instruire ver 5.85 11.96 2.49 5.81 inf; +instruis instruire ver 5.85 11.96 0.39 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +instruisîmes instruire ver 5.85 11.96 0.00 0.07 ind:pas:1p; +instruisaient instruire ver 5.85 11.96 0.00 0.14 ind:imp:3p; +instruisais instruire ver 5.85 11.96 0.01 0.20 ind:imp:1s; +instruisait instruire ver 5.85 11.96 0.00 0.41 ind:imp:3s; +instruisant instruire ver 5.85 11.96 0.04 0.07 par:pre; +instruise instruire ver 5.85 11.96 0.04 0.27 sub:pre:1s;sub:pre:3s; +instruisent instruire ver 5.85 11.96 0.12 0.47 ind:pre:3p; +instruisez instruire ver 5.85 11.96 0.08 0.00 imp:pre:2p;ind:pre:2p; +instruisirent instruire ver 5.85 11.96 0.00 0.07 ind:pas:3p; +instruisis instruire ver 5.85 11.96 0.01 0.00 ind:pas:1s; +instruisit instruire ver 5.85 11.96 0.10 0.41 ind:pas:3s; +instruit instruit adj m s 3.58 3.31 2.37 1.69 +instruite instruire ver f s 5.85 11.96 0.28 0.61 par:pas; +instruites instruit adj f p 3.58 3.31 0.11 0.20 +instruits instruit adj m p 3.58 3.31 1.02 1.01 +instrument instrument nom m s 22.67 36.08 14.59 21.62 +instrumentais instrumenter ver 0.01 0.20 0.00 0.07 ind:imp:1s; +instrumental instrumental adj m s 0.20 0.41 0.16 0.07 +instrumentale instrumental adj f s 0.20 0.41 0.04 0.34 +instrumentation instrumentation nom f s 0.23 0.07 0.23 0.07 +instrumentaux instrumental adj m p 0.20 0.41 0.01 0.00 +instrumenter instrumenter ver 0.01 0.20 0.01 0.14 inf; +instrumentiste instrumentiste nom s 0.03 0.27 0.01 0.14 +instrumentistes instrumentiste nom p 0.03 0.27 0.02 0.14 +instruments instrument nom m p 22.67 36.08 8.08 14.46 +insu insu nom m s 3.74 10.20 3.74 10.20 +insubmersible insubmersible adj m s 0.11 0.20 0.09 0.14 +insubmersibles insubmersible adj f p 0.11 0.20 0.02 0.07 +insubordination insubordination nom f s 1.17 0.74 1.16 0.74 +insubordinations insubordination nom f p 1.17 0.74 0.01 0.00 +insubordonné insubordonné adj m s 0.14 0.00 0.13 0.00 +insubordonnée insubordonné adj f s 0.14 0.00 0.01 0.00 +insécable insécable adj s 0.00 0.07 0.00 0.07 +insuccès insuccès nom m 0.02 0.20 0.02 0.20 +insécurité insécurité nom f s 0.92 1.49 0.86 1.42 +insécurités insécurité nom f p 0.92 1.49 0.05 0.07 +insuffisamment insuffisamment adv 0.03 0.68 0.03 0.68 +insuffisance insuffisance nom f s 1.40 3.85 1.20 2.50 +insuffisances insuffisance nom f p 1.40 3.85 0.20 1.35 +insuffisant insuffisant adj m s 3.45 5.54 1.74 2.57 +insuffisante insuffisant adj f s 3.45 5.54 0.79 1.08 +insuffisantes insuffisant adj f p 3.45 5.54 0.42 0.74 +insuffisants insuffisant adj m p 3.45 5.54 0.51 1.15 +insufflaient insuffler ver 0.89 1.62 0.00 0.07 ind:imp:3p; +insufflait insuffler ver 0.89 1.62 0.03 0.20 ind:imp:3s; +insufflant insuffler ver 0.89 1.62 0.03 0.00 par:pre; +insufflateur insufflateur nom m s 0.00 0.07 0.00 0.07 +insuffle insuffler ver 0.89 1.62 0.10 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insufflent insuffler ver 0.89 1.62 0.00 0.07 ind:pre:3p; +insuffler insuffler ver 0.89 1.62 0.53 0.74 inf; +insufflera insuffler ver 0.89 1.62 0.00 0.07 ind:fut:3s; +insufflé insuffler ver m s 0.89 1.62 0.18 0.27 par:pas; +insufflée insuffler ver f s 0.89 1.62 0.01 0.07 par:pas; +insufflées insuffler ver f p 0.89 1.62 0.01 0.00 par:pas; +insula insula nom f s 0.01 0.00 0.01 0.00 +insulaire insulaire adj s 0.09 1.01 0.03 0.81 +insulaires insulaire adj p 0.09 1.01 0.06 0.20 +insularité insularité nom f s 0.00 0.07 0.00 0.07 +insulation insulation nom f s 0.01 0.00 0.01 0.00 +insuline insuline nom f s 1.45 1.15 1.45 1.15 +insulinique insulinique adj m s 0.01 0.41 0.01 0.41 +insulta insulter ver 26.93 18.24 0.01 0.61 ind:pas:3s; +insultaient insulter ver 26.93 18.24 0.28 0.74 ind:imp:3p; +insultais insulter ver 26.93 18.24 0.09 0.34 ind:imp:1s;ind:imp:2s; +insultait insulter ver 26.93 18.24 0.20 1.35 ind:imp:3s; +insultant insultant adj m s 1.90 3.24 1.38 1.62 +insultante insultant adj f s 1.90 3.24 0.41 0.68 +insultantes insultant adj f p 1.90 3.24 0.06 0.20 +insultants insultant adj m p 1.90 3.24 0.05 0.74 +insulte insulter ver 26.93 18.24 6.13 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insultent insulter ver 26.93 18.24 0.88 0.81 ind:pre:3p;sub:pre:3p; +insulter insulter ver 26.93 18.24 6.76 6.42 inf;; +insulterai insulter ver 26.93 18.24 0.04 0.00 ind:fut:1s; +insulterais insulter ver 26.93 18.24 0.06 0.20 cnd:pre:1s;cnd:pre:2s; +insulteras insulter ver 26.93 18.24 0.01 0.00 ind:fut:2s; +insultes insulte nom f p 10.49 15.88 5.25 8.92 +insulteur insulteur nom m s 0.00 0.27 0.00 0.20 +insulteurs insulteur nom m p 0.00 0.27 0.00 0.07 +insultez insulter ver 26.93 18.24 2.52 0.27 imp:pre:2p;ind:pre:2p; +insultions insulter ver 26.93 18.24 0.00 0.07 ind:imp:1p; +insultons insulter ver 26.93 18.24 0.03 0.00 imp:pre:1p;ind:pre:1p; +insulté insulter ver m s 26.93 18.24 5.95 1.62 par:pas; +insultée insulter ver f s 26.93 18.24 1.28 0.54 par:pas; +insultées insulté ver f p 0.00 0.07 0.00 0.07 par:pas; +insultés insulter ver m p 26.93 18.24 0.37 0.34 par:pas; +inséminateur inséminateur nom m s 0.27 0.00 0.27 0.00 +insémination insémination nom f s 0.67 0.81 0.67 0.41 +inséminations insémination nom f p 0.67 0.81 0.00 0.41 +inséminer inséminer ver 0.50 0.34 0.17 0.07 inf; +inséminé inséminer ver m s 0.50 0.34 0.02 0.00 par:pas; +inséminée inséminer ver f s 0.50 0.34 0.31 0.14 par:pas; +inséminés inséminer ver m p 0.50 0.34 0.00 0.14 par:pas; +inséparabilité inséparabilité nom f s 0.00 0.07 0.00 0.07 +inséparable inséparable adj s 3.08 6.28 0.34 3.18 +inséparablement inséparablement adv 0.00 0.14 0.00 0.14 +inséparables inséparable adj p 3.08 6.28 2.73 3.11 +insupportable insupportable adj s 11.42 25.74 11.01 22.23 +insupportablement insupportablement adv 0.25 0.41 0.25 0.41 +insupportables insupportable adj p 11.42 25.74 0.41 3.51 +insupportaient insupporter ver 0.43 0.27 0.00 0.14 ind:imp:3p; +insupporte insupporter ver 0.43 0.27 0.29 0.07 ind:pre:3s; +insupportent insupporter ver 0.43 0.27 0.14 0.07 ind:pre:3p; +inséra insérer ver 2.92 4.26 0.00 0.07 ind:pas:3s; +inséraient insérer ver 2.92 4.26 0.00 0.07 ind:imp:3p; +insérait insérer ver 2.92 4.26 0.03 0.47 ind:imp:3s; +insérant insérer ver 2.92 4.26 0.06 0.34 par:pre; +insérer insérer ver 2.92 4.26 1.01 1.69 inf; +insérera insérer ver 2.92 4.26 0.01 0.00 ind:fut:3s; +insérerait insérer ver 2.92 4.26 0.00 0.07 cnd:pre:3s; +insérerons insérer ver 2.92 4.26 0.01 0.00 ind:fut:1p; +insérez insérer ver 2.92 4.26 0.39 0.00 imp:pre:2p;ind:pre:2p; +insurge insurger ver 0.57 3.58 0.10 0.88 ind:pre:1s;ind:pre:3s; +insurgea insurger ver 0.57 3.58 0.00 0.41 ind:pas:3s; +insurgeai insurger ver 0.57 3.58 0.00 0.07 ind:pas:1s; +insurgeaient insurger ver 0.57 3.58 0.00 0.14 ind:imp:3p; +insurgeais insurger ver 0.57 3.58 0.00 0.20 ind:imp:1s; +insurgeait insurger ver 0.57 3.58 0.01 0.20 ind:imp:3s; +insurgeant insurger ver 0.57 3.58 0.00 0.07 par:pre; +insurgent insurger ver 0.57 3.58 0.01 0.14 ind:pre:3p; +insurgeons insurger ver 0.57 3.58 0.00 0.07 ind:pre:1p; +insurgeât insurger ver 0.57 3.58 0.00 0.07 sub:imp:3s; +insurger insurger ver 0.57 3.58 0.42 0.54 inf; +insurgera insurger ver 0.57 3.58 0.00 0.07 ind:fut:3s; +insurgerai insurger ver 0.57 3.58 0.00 0.07 ind:fut:1s; +insurgerait insurger ver 0.57 3.58 0.02 0.14 cnd:pre:3s; +insurgèrent insurger ver 0.57 3.58 0.00 0.07 ind:pas:3p; +insurgé insurger ver m s 0.57 3.58 0.01 0.20 par:pas; +insurgée insurgé nom f s 0.33 2.91 0.01 0.00 +insurgés insurgé nom m p 0.33 2.91 0.31 2.70 +insurmontable insurmontable adj s 0.77 2.77 0.64 2.36 +insurmontables insurmontable adj p 0.77 2.77 0.14 0.41 +insérons insérer ver 2.92 4.26 0.01 0.00 imp:pre:1p; +insurpassable insurpassable adj s 0.16 0.54 0.16 0.54 +insurpassé insurpassé adj m s 0.00 0.07 0.00 0.07 +insurrection insurrection nom f s 1.40 3.72 1.39 3.51 +insurrectionnel insurrectionnel adj m s 0.01 0.34 0.00 0.14 +insurrectionnelle insurrectionnel adj f s 0.01 0.34 0.01 0.20 +insurrections insurrection nom f p 1.40 3.72 0.01 0.20 +insérèrent insérer ver 2.92 4.26 0.00 0.07 ind:pas:3p; +inséré insérer ver m s 2.92 4.26 0.63 0.34 par:pas; +insérée insérer ver f s 2.92 4.26 0.09 0.27 par:pas; +insérées insérer ver f p 2.92 4.26 0.02 0.14 par:pas; +insérés insérer ver m p 2.92 4.26 0.02 0.27 par:pas; +intact intact adj m s 11.89 31.89 6.21 11.69 +intacte intact adj f s 11.89 31.89 3.51 11.35 +intactes intact adj f p 11.89 31.89 0.88 4.19 +intacts intact adj m p 11.89 31.89 1.29 4.66 +intaille intaille nom f s 0.00 0.20 0.00 0.14 +intailles intaille nom f p 0.00 0.20 0.00 0.07 +intangibilité intangibilité nom f s 0.01 0.07 0.01 0.07 +intangible intangible adj s 0.09 0.68 0.05 0.47 +intangibles intangible adj p 0.09 0.68 0.04 0.20 +intarissable intarissable adj s 0.45 3.85 0.44 2.97 +intarissablement intarissablement adv 0.00 0.27 0.00 0.27 +intarissables intarissable adj p 0.45 3.85 0.01 0.88 +intellect intellect nom m s 1.14 0.95 1.14 0.95 +intellectualisation intellectualisation nom f s 0.01 0.00 0.01 0.00 +intellectualise intellectualiser ver 0.00 0.20 0.00 0.07 ind:pre:3s; +intellectualiser intellectualiser ver 0.00 0.20 0.00 0.07 inf; +intellectualisme intellectualisme nom m s 0.01 0.20 0.01 0.20 +intellectualiste intellectualiste nom s 0.00 0.07 0.00 0.07 +intellectualisées intellectualiser ver f p 0.00 0.20 0.00 0.07 par:pas; +intellectuel_phare intellectuel_phare nom m s 0.00 0.07 0.00 0.07 +intellectuel intellectuel adj m s 6.52 15.20 2.47 4.59 +intellectuelle intellectuel adj f s 6.52 15.20 2.04 6.08 +intellectuellement intellectuellement adv 0.97 0.81 0.97 0.81 +intellectuelles intellectuel adj f p 6.52 15.20 0.66 2.77 +intellectuels intellectuel nom m p 5.06 15.27 2.42 8.58 +intellige intelliger ver 0.00 0.07 0.00 0.07 ind:pre:1s; +intelligemment intelligemment adv 1.28 1.49 1.28 1.49 +intelligence intelligence nom f s 18.41 37.16 18.27 36.22 +intelligences intelligence nom f p 18.41 37.16 0.14 0.95 +intelligent intelligent adj m s 57.51 35.68 31.92 19.32 +intelligente intelligent adj f s 57.51 35.68 17.42 8.45 +intelligentes intelligent adj f p 57.51 35.68 2.53 1.82 +intelligents intelligent adj m p 57.51 35.68 5.65 6.08 +intelligentsia intelligentsia nom f s 0.44 0.95 0.44 0.95 +intelligibilité intelligibilité nom f s 0.01 0.27 0.01 0.27 +intelligible intelligible adj s 0.06 1.96 0.05 1.69 +intelligiblement intelligiblement adv 0.01 0.20 0.01 0.20 +intelligibles intelligible adj p 0.06 1.96 0.01 0.27 +intello intello nom s 3.11 1.08 1.96 0.34 +intellos intello nom p 3.11 1.08 1.16 0.74 +intempestif intempestif adj m s 0.38 2.84 0.15 0.74 +intempestifs intempestif adj m p 0.38 2.84 0.04 0.34 +intempestive intempestif adj f s 0.38 2.84 0.14 1.22 +intempestivement intempestivement adv 0.00 0.07 0.00 0.07 +intempestives intempestif adj f p 0.38 2.84 0.04 0.54 +intemporalité intemporalité nom f s 0.00 0.14 0.00 0.14 +intemporel intemporel adj m s 0.31 1.49 0.21 0.68 +intemporelle intemporel adj f s 0.31 1.49 0.07 0.74 +intemporelles intemporel adj f p 0.31 1.49 0.03 0.07 +intempérance intempérance nom f s 0.17 0.41 0.16 0.41 +intempérances intempérance nom f p 0.17 0.41 0.01 0.00 +intempérante intempérant adj f s 0.02 0.00 0.02 0.00 +intempéries intempérie nom f p 0.42 3.51 0.42 3.51 +intenable intenable adj s 0.91 3.31 0.83 2.97 +intenables intenable adj p 0.91 3.31 0.08 0.34 +intendance intendance nom f s 1.37 4.05 1.37 3.99 +intendances intendance nom f p 1.37 4.05 0.00 0.07 +intendant intendant nom m s 4.55 4.73 4.02 3.24 +intendante intendant nom f s 4.55 4.73 0.46 1.35 +intendants intendant nom m p 4.55 4.73 0.08 0.14 +intense intense adj s 8.45 22.57 7.20 20.27 +intenses intense adj p 8.45 22.57 1.25 2.30 +intensif intensif adj m s 3.50 1.55 1.02 0.47 +intensifia intensifier ver 1.22 1.28 0.00 0.07 ind:pas:3s; +intensifiaient intensifier ver 1.22 1.28 0.01 0.14 ind:imp:3p; +intensifiait intensifier ver 1.22 1.28 0.03 0.34 ind:imp:3s; +intensifiant intensifier ver 1.22 1.28 0.03 0.14 par:pre; +intensification intensification nom f s 0.02 0.14 0.02 0.14 +intensifie intensifier ver 1.22 1.28 0.18 0.20 imp:pre:2s;ind:pre:3s; +intensifient intensifier ver 1.22 1.28 0.27 0.00 ind:pre:3p; +intensifier intensifier ver 1.22 1.28 0.31 0.41 inf; +intensifiez intensifier ver 1.22 1.28 0.04 0.00 imp:pre:2p; +intensifié intensifier ver m s 1.22 1.28 0.20 0.00 par:pas; +intensifiée intensifier ver f s 1.22 1.28 0.04 0.00 par:pas; +intensifiées intensifier ver f p 1.22 1.28 0.11 0.00 par:pas; +intensifs intensif adj m p 3.50 1.55 1.75 0.14 +intension intension nom f s 0.04 0.00 0.04 0.00 +intensité intensité nom f s 3.11 13.24 3.11 13.18 +intensités intensité nom f p 3.11 13.24 0.00 0.07 +intensive intensif adj f s 3.50 1.55 0.66 0.95 +intensivement intensivement adv 0.14 0.14 0.14 0.14 +intensives intensif adj f p 3.50 1.55 0.07 0.00 +intensément intensément adv 0.87 8.58 0.87 8.58 +intenta intenter ver 1.34 0.68 0.01 0.07 ind:pas:3s; +intentait intenter ver 1.34 0.68 0.00 0.14 ind:imp:3s; +intente intenter ver 1.34 0.68 0.54 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intenter intenter ver 1.34 0.68 0.42 0.27 inf; +intentera intenter ver 1.34 0.68 0.03 0.00 ind:fut:3s; +intenterai intenter ver 1.34 0.68 0.04 0.00 ind:fut:1s; +intention intention nom f s 51.11 68.65 40.00 53.99 +intentionnalité intentionnalité nom f s 0.01 0.00 0.01 0.00 +intentionnel intentionnel adj m s 0.85 0.47 0.69 0.27 +intentionnelle intentionnel adj f s 0.85 0.47 0.15 0.14 +intentionnellement intentionnellement adv 1.04 0.81 1.04 0.81 +intentionnels intentionnel adj m p 0.85 0.47 0.01 0.07 +intentionné intentionné adj m s 0.43 1.22 0.27 0.20 +intentionnée intentionné adj f s 0.43 1.22 0.05 0.14 +intentionnées intentionné adj f p 0.43 1.22 0.02 0.20 +intentionnés intentionné adj m p 0.43 1.22 0.09 0.68 +intentions intention nom f p 51.11 68.65 11.12 14.66 +intenté intenter ver m s 1.34 0.68 0.12 0.07 par:pas; +intentée intenter ver f s 1.34 0.68 0.01 0.00 par:pas; +intentées intenter ver f p 1.34 0.68 0.01 0.07 par:pas; +intentés intenter ver m p 1.34 0.68 0.02 0.07 par:pas; +inter_école inter_école nom f p 0.03 0.00 0.03 0.00 +inter inter nom_sup m s 0.84 0.95 0.84 0.88 +interactif interactif adj m s 0.44 0.00 0.30 0.00 +interactifs interactif adj m p 0.44 0.00 0.07 0.00 +interaction interaction nom f s 0.92 0.20 0.76 0.14 +interactions interaction nom f p 0.92 0.20 0.16 0.07 +interactive interactif adj f s 0.44 0.00 0.06 0.00 +interactivité interactivité nom f s 0.05 0.00 0.05 0.00 +interagir interagir ver 0.30 0.00 0.17 0.00 inf; +interagis interagir ver 0.30 0.00 0.04 0.00 imp:pre:2s;ind:pre:2s; +interagissais interagir ver 0.30 0.00 0.01 0.00 ind:imp:1s; +interagissant interagir ver 0.30 0.00 0.03 0.00 par:pre; +interagit interagir ver 0.30 0.00 0.05 0.00 ind:pre:3s; +interallié interallié adj m s 0.02 2.97 0.00 2.43 +interalliée interallié adj f s 0.02 2.97 0.01 0.27 +interalliées interallié adj f p 0.02 2.97 0.00 0.14 +interalliés interallié adj m p 0.02 2.97 0.01 0.14 +interarmes interarmes adj f p 0.12 0.07 0.12 0.07 +interarmées interarmées adj m s 0.05 0.07 0.05 0.07 +intercalaient intercaler ver 0.20 1.82 0.00 0.14 ind:imp:3p; +intercalaire intercalaire adj m s 0.00 0.20 0.00 0.14 +intercalaires intercalaire adj m p 0.00 0.20 0.00 0.07 +intercalait intercaler ver 0.20 1.82 0.01 0.27 ind:imp:3s; +intercalant intercaler ver 0.20 1.82 0.00 0.27 par:pre; +intercale intercaler ver 0.20 1.82 0.00 0.41 ind:pre:1s;ind:pre:3s; +intercalent intercaler ver 0.20 1.82 0.00 0.07 ind:pre:3p; +intercaler intercaler ver 0.20 1.82 0.05 0.41 inf; +intercalera intercaler ver 0.20 1.82 0.00 0.07 ind:fut:3s; +intercalerai intercaler ver 0.20 1.82 0.01 0.00 ind:fut:1s; +intercalerez intercaler ver 0.20 1.82 0.10 0.00 ind:fut:2p; +intercalé intercaler ver m s 0.20 1.82 0.03 0.00 par:pas; +intercalée intercalé adj f s 0.00 0.20 0.00 0.07 +intercalées intercaler ver f p 0.20 1.82 0.00 0.14 par:pas; +intercalés intercaler ver m p 0.20 1.82 0.00 0.07 par:pas; +intercellulaire intercellulaire adj m s 0.01 0.00 0.01 0.00 +intercepta intercepter ver 6.64 3.65 0.01 0.47 ind:pas:3s; +interceptai intercepter ver 6.64 3.65 0.00 0.14 ind:pas:1s; +interceptais intercepter ver 6.64 3.65 0.01 0.00 ind:imp:1s; +interceptait intercepter ver 6.64 3.65 0.15 0.07 ind:imp:3s; +interceptant intercepter ver 6.64 3.65 0.03 0.07 par:pre; +intercepte intercepter ver 6.64 3.65 0.56 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interceptent intercepter ver 6.64 3.65 0.13 0.07 ind:pre:3p; +intercepter intercepter ver 6.64 3.65 1.81 1.28 inf; +interceptera intercepter ver 6.64 3.65 0.04 0.00 ind:fut:3s; +intercepterait intercepter ver 6.64 3.65 0.01 0.00 cnd:pre:3s; +intercepterez intercepter ver 6.64 3.65 0.01 0.00 ind:fut:2p; +intercepterons intercepter ver 6.64 3.65 0.04 0.00 ind:fut:1p; +intercepteur intercepteur nom m s 0.45 0.00 0.19 0.00 +intercepteurs intercepteur nom m p 0.45 0.00 0.26 0.00 +interceptez intercepter ver 6.64 3.65 0.69 0.00 imp:pre:2p;ind:pre:2p; +interception interception nom f s 1.20 0.27 1.10 0.20 +interceptions interception nom f p 1.20 0.27 0.09 0.07 +interceptèrent intercepter ver 6.64 3.65 0.00 0.07 ind:pas:3p; +intercepté intercepter ver m s 6.64 3.65 2.50 0.95 par:pas; +interceptée intercepter ver f s 6.64 3.65 0.15 0.07 par:pas; +interceptées intercepter ver f p 6.64 3.65 0.08 0.00 par:pas; +interceptés intercepter ver m p 6.64 3.65 0.41 0.20 par:pas; +intercesseur intercesseur nom m s 0.00 1.22 0.00 0.54 +intercesseurs intercesseur nom m p 0.00 1.22 0.00 0.68 +intercession intercession nom f s 0.20 1.01 0.20 1.01 +interchangeable interchangeable adj s 0.32 2.50 0.07 0.74 +interchangeables interchangeable adj p 0.32 2.50 0.24 1.76 +interchanger interchanger ver 0.13 0.14 0.00 0.14 inf; +interchangé interchanger ver m s 0.13 0.14 0.13 0.00 par:pas; +interclasse interclasse nom m s 0.03 0.07 0.01 0.00 +interclasses interclasse nom m p 0.03 0.07 0.01 0.07 +interclubs interclubs adj 0.01 0.00 0.01 0.00 +intercommunal intercommunal adj m s 0.01 0.00 0.01 0.00 +intercommunautaire intercommunautaire adj s 0.01 0.00 0.01 0.00 +intercommunication intercommunication nom f s 0.03 0.00 0.03 0.00 +interconnecté interconnecter ver m s 0.06 0.00 0.05 0.00 par:pas; +interconnectée interconnecter ver f s 0.06 0.00 0.01 0.00 par:pas; +interconnexion interconnexion nom f s 0.01 0.00 0.01 0.00 +intercontinental intercontinental adj m s 0.63 0.41 0.58 0.20 +intercontinentale intercontinental adj f s 0.63 0.41 0.00 0.07 +intercontinentales intercontinental adj f p 0.63 0.41 0.00 0.07 +intercontinentaux intercontinental adj m p 0.63 0.41 0.04 0.07 +intercostal intercostal adj m s 0.30 0.14 0.17 0.00 +intercostale intercostal adj f s 0.30 0.14 0.10 0.07 +intercostaux intercostal adj m p 0.30 0.14 0.03 0.07 +intercours intercours nom m 0.00 0.07 0.00 0.07 +intercourse intercourse nom f s 0.05 0.07 0.05 0.07 +intercède intercéder ver 0.63 0.68 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intercéda intercéder ver 0.63 0.68 0.00 0.14 ind:pas:3s; +intercédait intercéder ver 0.63 0.68 0.14 0.07 ind:imp:3s; +intercédant intercéder ver 0.63 0.68 0.00 0.07 par:pre; +intercéder intercéder ver 0.63 0.68 0.37 0.41 inf; +intercédera intercéder ver 0.63 0.68 0.02 0.00 ind:fut:3s; +intercéderai intercéder ver 0.63 0.68 0.03 0.00 ind:fut:1s; +intercédé intercéder ver m s 0.63 0.68 0.03 0.00 par:pas; +interculturel interculturel adj m s 0.01 0.07 0.00 0.07 +interculturels interculturel adj m p 0.01 0.07 0.01 0.00 +interdît interdire ver 63.72 54.39 0.00 0.07 sub:imp:3s; +interdiction interdiction nom f s 3.11 6.76 3.02 5.95 +interdictions interdiction nom f p 3.11 6.76 0.09 0.81 +interdira interdire ver 63.72 54.39 0.41 0.07 ind:fut:3s; +interdirai interdire ver 63.72 54.39 0.15 0.07 ind:fut:1s; +interdiraient interdire ver 63.72 54.39 0.02 0.14 cnd:pre:3p; +interdirais interdire ver 63.72 54.39 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +interdirait interdire ver 63.72 54.39 0.21 0.47 cnd:pre:3s; +interdire interdire ver 63.72 54.39 4.38 5.95 inf; +interdirent interdire ver 63.72 54.39 0.00 0.20 ind:pas:3p; +interdis interdire ver 63.72 54.39 7.55 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s; +interdisaient interdire ver 63.72 54.39 0.18 1.69 ind:imp:3p; +interdisais interdire ver 63.72 54.39 0.10 0.14 ind:imp:1s;ind:imp:2s; +interdisait interdire ver 63.72 54.39 0.51 9.46 ind:imp:3s; +interdisant interdire ver 63.72 54.39 0.64 1.35 par:pre; +interdisciplinaires interdisciplinaire adj f p 0.01 0.07 0.01 0.07 +interdise interdire ver 63.72 54.39 0.34 0.34 sub:pre:1s;sub:pre:3s; +interdisent interdire ver 63.72 54.39 0.77 1.15 ind:pre:3p; +interdisez interdire ver 63.72 54.39 0.18 0.07 imp:pre:2p;ind:pre:2p; +interdisiez interdire ver 63.72 54.39 0.13 0.00 ind:imp:2p; +interdisons interdire ver 63.72 54.39 0.02 0.00 ind:pre:1p; +interdissent interdire ver 63.72 54.39 0.01 0.07 sub:imp:3p; +interdit interdire ver m s 63.72 54.39 42.13 24.12 ind:pre:3s;par:pas; +interdite interdit adj f s 10.31 15.34 3.63 3.72 +interdites interdire ver f p 63.72 54.39 0.67 1.08 par:pas; +interdits interdire ver m p 63.72 54.39 2.27 1.69 par:pas; +interdépartementaux interdépartemental adj m p 0.01 0.00 0.01 0.00 +interdépendance interdépendance nom f s 0.11 0.74 0.11 0.74 +interdépendant interdépendant adj m s 0.02 0.00 0.02 0.00 +interethnique interethnique adj s 0.00 0.14 0.00 0.14 +interface interface nom f s 1.35 0.00 1.30 0.00 +interfacer interfacer ver 0.07 0.00 0.07 0.00 inf; +interfaces interface nom f p 1.35 0.00 0.04 0.00 +interfère interférer ver 2.75 0.68 0.80 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interfèrent interférer ver 2.75 0.68 0.14 0.14 ind:pre:3p; +interféraient interférer ver 2.75 0.68 0.03 0.00 ind:imp:3p; +interférait interférer ver 2.75 0.68 0.02 0.00 ind:imp:3s; +interférant interférer ver 2.75 0.68 0.07 0.07 par:pre; +interférence interférence nom f s 3.00 1.62 1.33 0.68 +interférences interférence nom f p 3.00 1.62 1.68 0.95 +interférent interférent adj m s 0.01 0.00 0.01 0.00 +interférer interférer ver 2.75 0.68 1.39 0.41 ind:pre:2p;inf; +interférez interférer ver 2.75 0.68 0.14 0.00 imp:pre:2p;ind:pre:2p; +interférométrie interférométrie nom f s 0.01 0.00 0.01 0.00 +interféron interféron nom m s 0.12 0.00 0.12 0.00 +interférons interférer ver 2.75 0.68 0.01 0.00 ind:pre:1p; +interféré interférer ver m s 2.75 0.68 0.16 0.00 par:pas; +intergalactique intergalactique adj s 1.07 0.14 0.85 0.14 +intergalactiques intergalactique adj p 1.07 0.14 0.22 0.00 +interglaciaire interglaciaire adj m s 0.14 0.00 0.14 0.00 +intergouvernemental intergouvernemental adj m s 0.03 0.00 0.01 0.00 +intergouvernementale intergouvernemental adj f s 0.03 0.00 0.01 0.00 +interjecter interjecter ver 0.00 0.07 0.00 0.07 inf; +interjection interjection nom f s 0.01 1.28 0.01 0.27 +interjections interjection nom f p 0.01 1.28 0.00 1.01 +interjeta interjeter ver 0.01 0.07 0.00 0.07 ind:pas:3s; +interjeter interjeter ver 0.01 0.07 0.01 0.00 inf; +interligne interligne nom m s 0.04 0.14 0.04 0.00 +interlignes interligne nom m p 0.04 0.14 0.00 0.14 +interlignés interligner ver m p 0.00 0.07 0.00 0.07 par:pas; +interlocuteur interlocuteur nom m s 1.28 14.73 0.98 10.27 +interlocuteurs interlocuteur nom m p 1.28 14.73 0.28 3.85 +interlocutoire interlocutoire adj f s 0.01 0.07 0.01 0.00 +interlocutoires interlocutoire adj p 0.01 0.07 0.00 0.07 +interlocutrice interlocuteur nom f s 1.28 14.73 0.01 0.41 +interlocutrices interlocuteur nom f p 1.28 14.73 0.00 0.20 +interlope interlope nom m s 0.03 0.00 0.03 0.00 +interlopes interlope adj m p 0.00 0.54 0.00 0.20 +interloque interloquer ver 0.04 1.62 0.00 0.27 ind:pre:1s;ind:pre:3s; +interloqué interloqué adj m s 0.02 3.11 0.02 1.62 +interloquée interloquer ver f s 0.04 1.62 0.01 0.47 par:pas; +interloquées interloqué adj f p 0.02 3.11 0.00 0.07 +interloqués interloquer ver m p 0.04 1.62 0.01 0.20 par:pas; +interlude interlude nom m s 0.30 0.34 0.29 0.27 +interludes interlude nom m p 0.30 0.34 0.01 0.07 +intermezzo intermezzo nom m s 0.10 0.07 0.10 0.07 +interminable interminable adj s 4.11 38.65 2.56 22.16 +interminablement interminablement adv 0.05 5.34 0.05 5.34 +interminables interminable adj p 4.11 38.65 1.54 16.49 +interministérielles interministériel adj f p 0.00 0.14 0.00 0.07 +interministériels interministériel adj m p 0.00 0.14 0.00 0.07 +intermission intermission nom f s 0.00 0.07 0.00 0.07 +intermittence intermittence nom f s 0.57 3.78 0.57 2.77 +intermittences intermittence nom f p 0.57 3.78 0.00 1.01 +intermittent intermittent adj m s 0.67 3.38 0.30 0.74 +intermittente intermittent adj f s 0.67 3.38 0.19 1.35 +intermittentes intermittent adj f p 0.67 3.38 0.14 0.95 +intermittents intermittent adj m p 0.67 3.38 0.05 0.34 +intermède intermède nom m s 0.89 2.84 0.77 2.30 +intermèdes intermède nom m p 0.89 2.84 0.11 0.54 +intermédiaire intermédiaire nom s 4.43 7.30 3.44 6.01 +intermédiaires intermédiaire nom p 4.43 7.30 1.00 1.28 +internat internat nom m s 2.37 3.04 2.25 2.64 +international international adj m s 16.65 24.86 8.04 9.12 +internationale international adj f s 16.65 24.86 5.29 10.00 +internationalement internationalement adv 0.07 0.14 0.07 0.14 +internationales international adj f p 16.65 24.86 1.63 3.99 +internationalisation internationalisation nom f s 0.01 0.07 0.01 0.07 +internationalisme internationalisme nom m s 0.00 0.61 0.00 0.61 +internationaliste internationaliste adj s 0.11 0.14 0.01 0.00 +internationalistes internationaliste adj p 0.11 0.14 0.10 0.14 +internationalisée internationaliser ver f s 0.00 0.14 0.00 0.07 par:pas; +internationalisés internationaliser ver m p 0.00 0.14 0.00 0.07 par:pas; +internationaux international adj m p 16.65 24.86 1.69 1.76 +internats internat nom m p 2.37 3.04 0.12 0.41 +internaute internaute nom s 0.11 0.00 0.01 0.00 +internautes internaute nom p 0.11 0.00 0.10 0.00 +interne interne adj s 13.15 7.30 8.86 5.47 +internement internement nom m s 0.51 1.22 0.51 1.22 +interner interner ver 4.21 1.15 1.71 0.27 inf; +internes interne adj p 13.15 7.30 4.29 1.82 +internet internet nom s 5.61 0.00 5.61 0.00 +internez interner ver 4.21 1.15 0.01 0.00 imp:pre:2p; +interniste interniste nom s 0.02 0.00 0.02 0.00 +interné interner ver m s 4.21 1.15 1.25 0.54 par:pas; +internée interner ver f s 4.21 1.15 0.76 0.07 par:pas; +internées interner ver f p 4.21 1.15 0.03 0.00 par:pas; +internés interner ver m p 4.21 1.15 0.07 0.27 par:pas; +interpella interpeller ver 1.52 15.54 0.00 3.04 ind:pas:3s; +interpellai interpeller ver 1.52 15.54 0.00 0.07 ind:pas:1s; +interpellaient interpeller ver 1.52 15.54 0.00 1.42 ind:imp:3p; +interpellais interpeller ver 1.52 15.54 0.00 0.14 ind:imp:1s; +interpellait interpeller ver 1.52 15.54 0.01 1.15 ind:imp:3s; +interpellant interpeller ver 1.52 15.54 0.00 1.08 par:pre; +interpellateur interpellateur nom m s 0.00 0.27 0.00 0.20 +interpellateurs interpellateur nom m p 0.00 0.27 0.00 0.07 +interpellation interpellation nom f s 0.23 1.15 0.07 0.47 +interpellations interpellation nom f p 0.23 1.15 0.17 0.68 +interpelle interpeller ver 1.52 15.54 0.36 2.43 ind:pre:1s;ind:pre:3s; +interpellent interpeller ver 1.52 15.54 0.46 1.15 ind:pre:3p; +interpeller interpeller ver 1.52 15.54 0.16 1.69 inf; +interpellerait interpeller ver 1.52 15.54 0.04 0.07 cnd:pre:3s; +interpellez interpeller ver 1.52 15.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +interpellèrent interpeller ver 1.52 15.54 0.00 0.27 ind:pas:3p; +interpellé interpeller ver m s 1.52 15.54 0.34 1.96 par:pas; +interpellée interpeller ver f s 1.52 15.54 0.06 0.74 par:pas; +interpellées interpeller ver f p 1.52 15.54 0.01 0.07 par:pas; +interpellés interpeller ver m p 1.52 15.54 0.05 0.27 par:pas; +interphase interphase nom f s 0.01 0.00 0.01 0.00 +interphone interphone nom m s 1.87 1.22 1.58 1.15 +interphones interphone nom m p 1.87 1.22 0.28 0.07 +interplanétaire interplanétaire adj s 0.80 0.20 0.53 0.07 +interplanétaires interplanétaire adj p 0.80 0.20 0.26 0.14 +interpolateur interpolateur nom m s 0.01 0.00 0.01 0.00 +interpolation interpolation nom f s 0.01 0.14 0.01 0.00 +interpolations interpolation nom f p 0.01 0.14 0.00 0.14 +interpole interpoler ver 0.01 0.07 0.01 0.00 ind:pre:3s; +interpolez interpoler ver 0.01 0.07 0.00 0.07 imp:pre:2p; +interposa interposer ver 1.69 6.76 0.10 0.68 ind:pas:3s; +interposai interposer ver 1.69 6.76 0.00 0.20 ind:pas:1s; +interposaient interposer ver 1.69 6.76 0.01 0.20 ind:imp:3p; +interposais interposer ver 1.69 6.76 0.00 0.07 ind:imp:1s; +interposait interposer ver 1.69 6.76 0.04 1.08 ind:imp:3s; +interposant interposer ver 1.69 6.76 0.00 0.68 par:pre; +interpose interposer ver 1.69 6.76 0.26 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interposent interposer ver 1.69 6.76 0.02 0.27 ind:pre:3p; +interposer interposer ver 1.69 6.76 0.80 1.49 inf; +interposera interposer ver 1.69 6.76 0.04 0.07 ind:fut:3s; +interposeront interposer ver 1.69 6.76 0.03 0.00 ind:fut:3p; +interposez interposer ver 1.69 6.76 0.04 0.00 imp:pre:2p;ind:pre:2p; +interposition interposition nom f s 0.01 0.07 0.01 0.07 +interposèrent interposer ver 1.69 6.76 0.00 0.14 ind:pas:3p; +interposé interposer ver m s 1.69 6.76 0.29 0.41 par:pas; +interposée interposer ver f s 1.69 6.76 0.07 0.20 par:pas; +interposées interposé adj f p 0.13 2.30 0.02 0.74 +interposés interposé adj m p 0.13 2.30 0.04 0.20 +interprofessionnelle interprofessionnel adj f s 0.00 0.07 0.00 0.07 +interprète interprète nom s 4.81 8.58 4.01 7.16 +interprètent interpréter ver 9.50 12.64 0.17 0.47 ind:pre:3p; +interprètes interprète nom p 4.81 8.58 0.80 1.42 +interpréta interpréter ver 9.50 12.64 0.01 0.61 ind:pas:3s; +interprétable interprétable adj m s 0.01 0.00 0.01 0.00 +interprétai interpréter ver 9.50 12.64 0.00 0.07 ind:pas:1s; +interprétaient interpréter ver 9.50 12.64 0.03 0.34 ind:imp:3p; +interprétais interpréter ver 9.50 12.64 0.17 0.27 ind:imp:1s;ind:imp:2s; +interprétait interpréter ver 9.50 12.64 0.04 0.95 ind:imp:3s; +interprétant interpréter ver 9.50 12.64 0.21 0.20 par:pre; +interprétante interprétant adj f s 0.00 0.07 0.00 0.07 +interprétatif interprétatif adj m s 0.04 0.20 0.02 0.14 +interprétation interprétation nom f s 5.49 7.77 4.90 5.68 +interprétations interprétation nom f p 5.49 7.77 0.59 2.09 +interprétative interprétatif adj f s 0.04 0.20 0.02 0.00 +interprétatives interprétatif adj f p 0.04 0.20 0.00 0.07 +interpréter interpréter ver 9.50 12.64 3.38 4.80 inf; +interprétera interpréter ver 9.50 12.64 0.17 0.00 ind:fut:3s; +interpréteraient interpréter ver 9.50 12.64 0.00 0.07 cnd:pre:3p; +interpréterait interpréter ver 9.50 12.64 0.01 0.14 cnd:pre:3s; +interpréteriez interpréter ver 9.50 12.64 0.00 0.07 cnd:pre:2p; +interpréteur interpréteur nom m s 0.01 0.00 0.01 0.00 +interprétez interpréter ver 9.50 12.64 0.20 0.20 imp:pre:2p;ind:pre:2p; +interprétât interpréter ver 9.50 12.64 0.00 0.07 sub:imp:3s; +interprétèrent interpréter ver 9.50 12.64 0.10 0.14 ind:pas:3p; +interprété interpréter ver m s 9.50 12.64 2.59 1.69 par:pas; +interprétée interpréter ver f s 9.50 12.64 0.32 0.95 par:pas; +interprétées interpréter ver f p 9.50 12.64 0.15 0.14 par:pas; +interprétés interpréter ver m p 9.50 12.64 0.10 0.07 par:pas; +interpénètre interpénétrer ver 0.02 0.14 0.00 0.07 ind:pre:3s; +interpénètrent interpénétrer ver 0.02 0.14 0.01 0.07 ind:pre:3p; +interpénétration interpénétration nom f s 0.01 0.14 0.01 0.07 +interpénétrations interpénétration nom f p 0.01 0.14 0.00 0.07 +interpénétrer interpénétrer ver 0.02 0.14 0.01 0.00 inf; +interracial interracial adj m s 0.08 0.00 0.01 0.00 +interraciale interracial adj f s 0.08 0.00 0.03 0.00 +interraciaux interracial adj m p 0.08 0.00 0.04 0.00 +interrelations interrelation nom f p 0.02 0.00 0.02 0.00 +interrogateur interrogateur nom m s 0.21 0.20 0.18 0.20 +interrogateurs interrogateur nom m p 0.21 0.20 0.03 0.00 +interrogatif interrogatif adj m s 0.03 1.89 0.01 0.74 +interrogatifs interrogatif adj m p 0.03 1.89 0.00 0.34 +interrogation interrogation nom f s 2.26 8.92 1.85 7.09 +interrogations interrogation nom f p 2.26 8.92 0.41 1.82 +interrogative interrogatif adj f s 0.03 1.89 0.02 0.68 +interrogativement interrogativement adv 0.00 0.07 0.00 0.07 +interrogatives interrogatif adj f p 0.03 1.89 0.00 0.14 +interrogatoire interrogatoire nom m s 11.66 10.14 9.56 6.96 +interrogatoires interrogatoire nom m p 11.66 10.14 2.10 3.18 +interrogatrice interrogateur nom f s 0.21 0.20 0.01 0.00 +interroge interroger ver 44.31 73.04 8.37 12.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +interrogea interroger ver 44.31 73.04 0.04 9.59 ind:pas:3s; +interrogeai interroger ver 44.31 73.04 0.13 2.23 ind:pas:1s; +interrogeaient interroger ver 44.31 73.04 0.10 2.09 ind:imp:3p; +interrogeais interroger ver 44.31 73.04 0.60 2.57 ind:imp:1s;ind:imp:2s; +interrogeait interroger ver 44.31 73.04 0.79 8.24 ind:imp:3s; +interrogeant interroger ver 44.31 73.04 0.39 2.36 par:pre; +interrogent interroger ver 44.31 73.04 1.04 1.42 ind:pre:3p; +interrogeâmes interroger ver 44.31 73.04 0.00 0.14 ind:pas:1p; +interrogeons interroger ver 44.31 73.04 0.65 0.27 imp:pre:1p;ind:pre:1p; +interrogeât interroger ver 44.31 73.04 0.00 0.34 sub:imp:3s; +interroger interroger ver 44.31 73.04 16.22 18.58 inf;;inf;;inf;; +interrogera interroger ver 44.31 73.04 0.62 0.27 ind:fut:3s; +interrogerai interroger ver 44.31 73.04 0.65 0.07 ind:fut:1s; +interrogeraient interroger ver 44.31 73.04 0.02 0.07 cnd:pre:3p; +interrogerais interroger ver 44.31 73.04 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +interrogerait interroger ver 44.31 73.04 0.03 0.20 cnd:pre:3s; +interrogeras interroger ver 44.31 73.04 0.00 0.07 ind:fut:2s; +interrogerez interroger ver 44.31 73.04 0.02 0.00 ind:fut:2p; +interrogerons interroger ver 44.31 73.04 0.12 0.00 ind:fut:1p; +interrogeront interroger ver 44.31 73.04 0.28 0.20 ind:fut:3p; +interroges interroger ver 44.31 73.04 0.94 0.20 ind:pre:2s; +interrogez interroger ver 44.31 73.04 2.46 0.41 imp:pre:2p;ind:pre:2p; +interrogiez interroger ver 44.31 73.04 0.11 0.20 ind:imp:2p;sub:pre:2p; +interrogions interroger ver 44.31 73.04 0.05 0.20 ind:imp:1p;sub:pre:1p; +interrogèrent interroger ver 44.31 73.04 0.01 0.61 ind:pas:3p; +interrogé interroger ver m s 44.31 73.04 7.52 7.16 par:pas; +interrogée interroger ver f s 44.31 73.04 1.93 2.03 par:pas; +interrogées interroger ver f p 44.31 73.04 0.12 0.27 par:pas; +interrogés interroger ver m p 44.31 73.04 1.09 0.74 par:pas; +interrompît interrompre ver 27.47 64.32 0.00 0.27 sub:imp:3s; +interrompaient interrompre ver 27.47 64.32 0.00 1.01 ind:imp:3p; +interrompais interrompre ver 27.47 64.32 0.03 0.27 ind:imp:1s;ind:imp:2s; +interrompait interrompre ver 27.47 64.32 0.05 3.65 ind:imp:3s; +interrompant interrompre ver 27.47 64.32 0.19 4.39 par:pre; +interrompe interrompre ver 27.47 64.32 0.32 0.14 sub:pre:1s;sub:pre:3s; +interrompent interrompre ver 27.47 64.32 0.04 0.95 ind:pre:3p; +interrompes interrompre ver 27.47 64.32 0.03 0.00 sub:pre:2s; +interrompez interrompre ver 27.47 64.32 2.61 0.14 imp:pre:2p;ind:pre:2p; +interrompiez interrompre ver 27.47 64.32 0.01 0.07 ind:imp:2p; +interrompirent interrompre ver 27.47 64.32 0.01 0.54 ind:pas:3p; +interrompis interrompre ver 27.47 64.32 0.01 0.88 ind:pas:1s; +interrompisse interrompre ver 27.47 64.32 0.00 0.07 sub:imp:1s; +interrompit interrompre ver 27.47 64.32 0.06 20.07 ind:pas:3s; +interrompons interrompre ver 27.47 64.32 1.22 0.00 imp:pre:1p;ind:pre:1p; +interrompra interrompre ver 27.47 64.32 0.09 0.00 ind:fut:3s; +interromprai interrompre ver 27.47 64.32 0.03 0.00 ind:fut:1s; +interromprais interrompre ver 27.47 64.32 0.03 0.07 cnd:pre:1s; +interromprait interrompre ver 27.47 64.32 0.27 0.14 cnd:pre:3s; +interrompras interrompre ver 27.47 64.32 0.00 0.07 ind:fut:2s; +interrompre interrompre ver 27.47 64.32 12.47 11.96 inf; +interromps interrompre ver 27.47 64.32 3.13 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +interrompt interrompre ver 27.47 64.32 1.07 5.81 ind:pre:3s; +interrompu interrompre ver m s 27.47 64.32 3.62 7.70 par:pas; +interrompue interrompre ver f s 27.47 64.32 0.76 3.11 par:pas; +interrompues interrompre ver f p 27.47 64.32 0.49 0.81 par:pas; +interrompus interrompre ver m p 27.47 64.32 0.93 1.08 par:pas; +interrègne interrègne nom m s 0.04 0.14 0.04 0.14 +interrupteur interrupteur nom m s 2.94 2.30 2.58 2.09 +interrupteurs interrupteur nom m p 2.94 2.30 0.36 0.20 +interruption interruption nom f s 2.88 5.61 2.15 4.86 +interruptions interruption nom f p 2.88 5.61 0.73 0.74 +inters inter nom_sup m p 0.84 0.95 0.00 0.07 +intersaison intersaison nom f s 0.03 0.00 0.03 0.00 +interscolaire interscolaire adj s 0.01 0.00 0.01 0.00 +intersectant intersecter ver 0.00 0.07 0.00 0.07 par:pre; +intersection intersection nom f s 1.16 1.42 1.10 1.35 +intersections intersection nom f p 1.16 1.42 0.06 0.07 +interservices interservices adj 0.04 0.00 0.04 0.00 +intersidéral intersidéral adj m s 0.34 0.20 0.32 0.14 +intersidérale intersidéral adj f s 0.34 0.20 0.01 0.07 +intersidéraux intersidéral adj m p 0.34 0.20 0.01 0.00 +interstellaire interstellaire adj s 0.65 0.07 0.47 0.00 +interstellaires interstellaire adj p 0.65 0.07 0.18 0.07 +interstice interstice nom m s 0.33 3.99 0.20 1.42 +interstices interstice nom m p 0.33 3.99 0.14 2.57 +intersubjectif intersubjectif adj m s 0.01 0.00 0.01 0.00 +intertitre intertitre nom m s 0.00 0.07 0.00 0.07 +intertribal intertribal adj m s 0.01 0.00 0.01 0.00 +interurbain interurbain adj m s 0.39 0.07 0.38 0.00 +interurbaine interurbain adj f s 0.39 0.07 0.01 0.07 +interétatique interétatique adj f s 0.01 0.00 0.01 0.00 +intervînt intervenir ver 22.39 35.34 0.00 0.14 sub:imp:3s; +intervalle intervalle nom m s 2.82 19.12 1.98 6.69 +intervalles intervalle nom m p 2.82 19.12 0.83 12.43 +intervenaient intervenir ver 22.39 35.34 0.14 0.54 ind:imp:3p; +intervenais intervenir ver 22.39 35.34 0.02 0.20 ind:imp:1s;ind:imp:2s; +intervenait intervenir ver 22.39 35.34 0.07 2.70 ind:imp:3s; +intervenant intervenir ver 22.39 35.34 0.24 0.54 par:pre; +intervenante intervenant nom f s 0.35 0.14 0.01 0.00 +intervenants intervenant nom m p 0.35 0.14 0.19 0.00 +intervenez intervenir ver 22.39 35.34 1.25 0.07 imp:pre:2p;ind:pre:2p; +interveniez intervenir ver 22.39 35.34 0.12 0.00 ind:imp:2p; +intervenir intervenir ver 22.39 35.34 9.82 13.58 inf; +intervenons intervenir ver 22.39 35.34 0.20 0.34 imp:pre:1p;ind:pre:1p; +intervention intervention nom f s 13.33 16.01 12.37 13.24 +interventionnisme interventionnisme nom m s 0.01 0.00 0.01 0.00 +interventionniste interventionniste adj s 0.04 0.14 0.04 0.00 +interventionnistes interventionniste nom p 0.11 0.00 0.10 0.00 +interventions intervention nom f p 13.33 16.01 0.96 2.77 +interventriculaire interventriculaire adj s 0.01 0.00 0.01 0.00 +intervenu intervenir ver m s 22.39 35.34 1.66 1.62 par:pas; +intervenue intervenir ver f s 22.39 35.34 0.93 0.61 par:pas; +intervenues intervenir ver f p 22.39 35.34 0.04 0.14 par:pas; +intervenus intervenir ver m p 22.39 35.34 0.67 0.54 par:pas; +interversion interversion nom f s 0.04 0.20 0.04 0.07 +interversions interversion nom f p 0.04 0.20 0.00 0.14 +interverti intervertir ver m s 0.56 0.95 0.17 0.00 par:pas; +intervertir intervertir ver 0.56 0.95 0.26 0.34 inf; +intervertirai intervertir ver 0.56 0.95 0.01 0.00 ind:fut:1s; +intervertis intervertir ver m p 0.56 0.95 0.08 0.14 ind:pre:1s;ind:pre:2s;par:pas; +intervertissait intervertir ver 0.56 0.95 0.01 0.07 ind:imp:3s; +intervertissent intervertir ver 0.56 0.95 0.01 0.07 ind:pre:3p; +intervertissiez intervertir ver 0.56 0.95 0.01 0.00 ind:imp:2p; +intervertissons intervertir ver 0.56 0.95 0.00 0.07 imp:pre:1p; +intervertit intervertir ver 0.56 0.95 0.01 0.27 ind:pre:3s;ind:pas:3s; +intervertébral intervertébral adj m s 0.04 0.07 0.04 0.00 +intervertébraux intervertébral adj m p 0.04 0.07 0.00 0.07 +interviendra intervenir ver 22.39 35.34 0.57 0.20 ind:fut:3s; +interviendrai intervenir ver 22.39 35.34 0.20 0.07 ind:fut:1s; +interviendraient intervenir ver 22.39 35.34 0.02 0.00 cnd:pre:3p; +interviendrais intervenir ver 22.39 35.34 0.17 0.00 cnd:pre:1s; +interviendrait intervenir ver 22.39 35.34 0.04 0.47 cnd:pre:3s; +interviendrez intervenir ver 22.39 35.34 0.20 0.00 ind:fut:2p; +interviendrons intervenir ver 22.39 35.34 0.09 0.07 ind:fut:1p; +interviendront intervenir ver 22.39 35.34 0.09 0.00 ind:fut:3p; +intervienne intervenir ver 22.39 35.34 0.78 0.81 sub:pre:1s;sub:pre:3s; +interviennent intervenir ver 22.39 35.34 0.47 0.47 ind:pre:3p; +interviens intervenir ver 22.39 35.34 1.40 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +intervient intervenir ver 22.39 35.34 3.16 4.32 ind:pre:3s; +interview interview nom f s 0.00 7.30 0.00 5.07 +interviewaient interviewer ver 0.00 1.69 0.00 0.14 ind:imp:3p; +interviewais interviewer ver 0.00 1.69 0.00 0.14 ind:imp:1s; +interviewait interviewer ver 0.00 1.69 0.00 0.41 ind:imp:3s; +interviewe interviewer ver 0.00 1.69 0.00 0.07 ind:pre:1s; +interviewer interviewer nom m s 0.00 1.22 0.00 1.15 +interviewers interviewer nom m p 0.00 1.22 0.00 0.07 +intervieweur intervieweur nom m s 0.00 0.07 0.00 0.07 +interviews interview nom f p 0.00 7.30 0.00 2.23 +interviewèrent interviewer ver 0.00 1.69 0.00 0.07 ind:pas:3p; +interviewé interviewer ver m s 0.00 1.69 0.00 0.41 par:pas; +interviewée interviewer ver f s 0.00 1.69 0.00 0.14 par:pas; +interviewés interviewer ver m p 0.00 1.69 0.00 0.07 par:pas; +intervinrent intervenir ver 22.39 35.34 0.01 0.07 ind:pas:3p; +intervins intervenir ver 22.39 35.34 0.00 0.41 ind:pas:1s; +intervinsse intervenir ver 22.39 35.34 0.00 0.07 sub:imp:1s; +intervint intervenir ver 22.39 35.34 0.03 6.55 ind:pas:3s; +interzones interzone adj f p 0.00 0.14 0.00 0.14 +intestat intestat adj m s 0.01 0.20 0.01 0.20 +intestats intestat nom m p 0.00 0.07 0.00 0.07 +intestin intestin nom m s 4.29 3.92 1.71 1.82 +intestinal intestinal adj m s 2.13 2.03 0.66 0.27 +intestinale intestinal adj f s 2.13 2.03 0.67 0.95 +intestinales intestinal adj f p 2.13 2.03 0.18 0.34 +intestinaux intestinal adj m p 2.13 2.03 0.63 0.47 +intestine intestin adj f s 0.68 1.28 0.04 0.20 +intestines intestin adj f p 0.68 1.28 0.45 0.74 +intestins intestin nom m p 4.29 3.92 2.58 2.09 +inti inti nom m s 0.02 0.00 0.02 0.00 +intifada intifada nom m s 0.42 0.00 0.42 0.00 +intima intimer ver 0.50 3.92 0.00 1.08 ind:pas:3s;;ind:pas:3s; +intimait intimer ver 0.50 3.92 0.00 0.54 ind:imp:3s; +intimant intimer ver 0.50 3.92 0.00 0.20 par:pre; +intimation intimation nom f s 0.00 0.14 0.00 0.14 +intime intime adj s 15.78 34.66 9.09 23.85 +intimement intimement adv 0.84 4.26 0.84 4.26 +intimer intimer ver 0.50 3.92 0.28 0.54 inf; +intimerait intimer ver 0.50 3.92 0.00 0.07 cnd:pre:3s; +intimes intime adj p 15.78 34.66 6.69 10.81 +intimida intimider ver 6.97 17.16 0.14 0.27 ind:pas:3s; +intimidable intimidable adj s 0.01 0.00 0.01 0.00 +intimidaient intimider ver 6.97 17.16 0.02 0.88 ind:imp:3p; +intimidais intimider ver 6.97 17.16 0.12 0.07 ind:imp:1s;ind:imp:2s; +intimidait intimider ver 6.97 17.16 0.09 2.43 ind:imp:3s; +intimidant intimidant adj m s 0.78 1.89 0.61 1.08 +intimidante intimidant adj f s 0.78 1.89 0.13 0.74 +intimidants intimidant adj m p 0.78 1.89 0.04 0.07 +intimidateur intimidateur nom m s 0.01 0.00 0.01 0.00 +intimidation intimidation nom f s 0.77 1.76 0.71 1.76 +intimidations intimidation nom f p 0.77 1.76 0.05 0.00 +intimide intimider ver 6.97 17.16 1.13 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intimident intimider ver 6.97 17.16 0.13 0.34 ind:pre:3p; +intimider intimider ver 6.97 17.16 2.40 2.77 inf; +intimiderait intimider ver 6.97 17.16 0.00 0.07 cnd:pre:3s; +intimides intimider ver 6.97 17.16 0.22 0.14 ind:pre:2s; +intimidez intimider ver 6.97 17.16 0.49 0.20 imp:pre:2p;ind:pre:2p; +intimidiez intimider ver 6.97 17.16 0.00 0.07 ind:imp:2p; +intimidât intimider ver 6.97 17.16 0.00 0.07 sub:imp:3s; +intimidé intimider ver m s 6.97 17.16 1.22 5.34 par:pas; +intimidée intimider ver f s 6.97 17.16 0.71 2.03 par:pas; +intimidées intimider ver f p 6.97 17.16 0.01 0.27 par:pas; +intimidés intimider ver m p 6.97 17.16 0.22 1.28 par:pas; +intimiste intimiste adj m s 0.04 0.20 0.01 0.00 +intimistes intimiste adj p 0.04 0.20 0.03 0.20 +intimité intimité nom f s 10.80 24.12 10.79 23.65 +intimités intimité nom f p 10.80 24.12 0.01 0.47 +intimât intimer ver 0.50 3.92 0.00 0.07 sub:imp:3s; +intimèrent intimer ver 0.50 3.92 0.00 0.07 ind:pas:3p; +intimé intimer ver m s 0.50 3.92 0.20 0.41 par:pas; +intimés intimer ver m p 0.50 3.92 0.00 0.07 par:pas; +intirable intirable adj s 0.00 0.07 0.00 0.07 +intitula intituler ver 4.72 9.53 0.00 0.27 ind:pas:3s; +intitulai intituler ver 4.72 9.53 0.00 0.07 ind:pas:1s; +intitulaient intituler ver 4.72 9.53 0.00 0.14 ind:imp:3p; +intitulais intituler ver 4.72 9.53 0.00 0.07 ind:imp:1s; +intitulait intituler ver 4.72 9.53 0.17 1.28 ind:imp:3s; +intitulant intituler ver 4.72 9.53 0.01 0.07 par:pre; +intitule intituler ver 4.72 9.53 1.60 0.81 ind:pre:1s;ind:pre:3s; +intituler intituler ver 4.72 9.53 0.11 0.34 inf; +intitulerait intituler ver 4.72 9.53 0.00 0.07 cnd:pre:3s; +intitulé intituler ver m s 4.72 9.53 1.43 3.65 par:pas; +intitulée intituler ver f s 4.72 9.53 1.29 2.30 par:pas; +intitulées intituler ver f p 4.72 9.53 0.10 0.14 par:pas; +intitulés intitulé nom m p 0.38 1.69 0.02 0.14 +intolérable intolérable adj s 4.23 11.28 3.74 10.47 +intolérablement intolérablement adv 0.02 0.20 0.02 0.20 +intolérables intolérable adj p 4.23 11.28 0.49 0.81 +intolérance intolérance nom f s 0.93 1.35 0.93 1.35 +intolérant intolérant adj m s 0.63 0.34 0.15 0.20 +intolérante intolérant adj f s 0.63 0.34 0.33 0.00 +intolérants intolérant adj m p 0.63 0.34 0.15 0.14 +intonation intonation nom f s 0.55 10.07 0.42 5.95 +intonations intonation nom f p 0.55 10.07 0.12 4.12 +intouchable intouchable adj s 1.52 2.84 1.23 1.96 +intouchables intouchable adj p 1.52 2.84 0.28 0.88 +intouché intouché adj m s 0.12 0.47 0.10 0.07 +intouchée intouché adj f s 0.12 0.47 0.00 0.20 +intouchées intouché adj f p 0.12 0.47 0.02 0.14 +intouchés intouché adj m p 0.12 0.47 0.00 0.07 +intox intox nom f 0.34 0.14 0.21 0.14 +intoxe intox nom f s 0.34 0.14 0.14 0.00 +intoxicant intoxicant adj m s 0.02 0.00 0.02 0.00 +intoxication intoxication nom f s 1.51 0.74 1.38 0.74 +intoxications intoxication nom f p 1.51 0.74 0.13 0.00 +intoxiquant intoxiquer ver 0.53 0.74 0.01 0.07 par:pre; +intoxique intoxiquer ver 0.53 0.74 0.01 0.14 ind:pre:3s; +intoxiquer intoxiquer ver 0.53 0.74 0.01 0.27 inf; +intoxiqué intoxiquer ver m s 0.53 0.74 0.38 0.20 par:pas; +intoxiquée intoxiquer ver f s 0.53 0.74 0.09 0.07 par:pas; +intoxiquées intoxiqué nom f p 0.04 0.20 0.00 0.07 +intoxiqués intoxiquer ver m p 0.53 0.74 0.03 0.00 par:pas; +intra_atomique intra_atomique adj s 0.00 0.07 0.00 0.07 +intra_muros intra_muros adv 0.01 0.07 0.01 0.07 +rachidien rachidien adj f s 0.23 0.14 0.01 0.00 +intra_utérin intra_utérin adj f s 0.14 0.07 0.04 0.00 +intra_utérin intra_utérin adj f p 0.14 0.07 0.10 0.07 +intra_muros intra_muros adv 0.01 0.07 0.01 0.07 +intra intra adv 0.02 0.00 0.02 0.00 +intracardiaque intracardiaque adj f s 0.08 0.00 0.08 0.00 +intracrânien intracrânien adj m s 0.14 0.00 0.01 0.00 +intracrânienne intracrânien adj f s 0.14 0.00 0.13 0.00 +intracérébrale intracérébral adj f s 0.03 0.00 0.03 0.00 +intradermique intradermique adj m s 0.03 0.00 0.03 0.00 +intrados intrados nom f s 0.00 0.07 0.00 0.07 +intraduisible intraduisible adj s 0.13 0.61 0.12 0.27 +intraduisibles intraduisible adj p 0.13 0.61 0.01 0.34 +intrait intrait nom m s 0.00 0.14 0.00 0.14 +intraitable intraitable adj s 0.51 2.91 0.45 2.64 +intraitables intraitable adj f p 0.51 2.91 0.06 0.27 +intramusculaire intramusculaire adj s 0.19 0.07 0.16 0.00 +intramusculaires intramusculaire adj f p 0.19 0.07 0.03 0.07 +intranet intranet nom m s 0.08 0.00 0.08 0.00 +intransgressible intransgressible adj s 0.00 0.07 0.00 0.07 +intransigeance intransigeance nom f s 0.04 3.04 0.04 2.91 +intransigeances intransigeance nom f p 0.04 3.04 0.00 0.14 +intransigeant intransigeant adj m s 0.86 2.30 0.64 1.15 +intransigeante intransigeant adj f s 0.86 2.30 0.09 0.81 +intransigeantes intransigeant adj f p 0.86 2.30 0.00 0.27 +intransigeants intransigeant adj m p 0.86 2.30 0.14 0.07 +intransitif intransitif nom m s 0.00 0.07 0.00 0.07 +intransmissible intransmissible adj m s 0.01 0.14 0.01 0.14 +intransportable intransportable adj f s 0.02 0.20 0.02 0.14 +intransportables intransportable adj m p 0.02 0.20 0.00 0.07 +intraoculaire intraoculaire adj f s 0.01 0.00 0.01 0.00 +intravasculaire intravasculaire adj s 0.04 0.00 0.04 0.00 +intraveineuse intraveineux adj f s 1.13 0.34 1.02 0.07 +intraveineuses intraveineux adj f p 1.13 0.34 0.09 0.20 +intraveineux intraveineux adj m 1.13 0.34 0.01 0.07 +intrigant intrigant adj m s 1.77 1.42 0.44 0.81 +intrigante intrigant adj f s 1.77 1.42 1.23 0.14 +intrigantes intrigant adj f p 1.77 1.42 0.04 0.00 +intrigants intrigant adj m p 1.77 1.42 0.06 0.47 +intrigua intriguer ver 5.58 19.73 0.02 1.01 ind:pas:3s; +intriguaient intriguer ver 5.58 19.73 0.04 0.88 ind:imp:3p; +intriguait intriguer ver 5.58 19.73 0.46 3.58 ind:imp:3s; +intriguant intriguer ver 5.58 19.73 0.38 0.27 par:pre; +intriguassent intriguer ver 5.58 19.73 0.00 0.07 sub:imp:3p; +intrigue intrigue nom f s 4.80 13.18 2.56 5.07 +intriguent intriguer ver 5.58 19.73 0.25 0.27 ind:pre:3p; +intriguer intriguer ver 5.58 19.73 0.12 1.82 inf; +intriguera intriguer ver 5.58 19.73 0.03 0.07 ind:fut:3s; +intriguerait intriguer ver 5.58 19.73 0.02 0.14 cnd:pre:3s; +intrigues intrigue nom f p 4.80 13.18 2.24 8.11 +intriguez intriguer ver 5.58 19.73 0.14 0.20 imp:pre:2p;ind:pre:2p; +intriguât intriguer ver 5.58 19.73 0.00 0.07 sub:imp:3s; +intriguèrent intriguer ver 5.58 19.73 0.00 0.14 ind:pas:3p; +intrigué intriguer ver m s 5.58 19.73 1.19 6.42 par:pas; +intriguée intriguer ver f s 5.58 19.73 0.40 1.76 par:pas; +intrigués intriguer ver m p 5.58 19.73 0.13 1.22 par:pas; +intrinsèque intrinsèque adj s 0.13 0.41 0.13 0.41 +intrinsèquement intrinsèquement adv 0.35 0.07 0.35 0.07 +introït introït nom m s 0.00 0.20 0.00 0.20 +introducteur introducteur nom m s 0.05 0.34 0.05 0.27 +introductif introductif adj m s 0.03 0.14 0.03 0.14 +introduction introduction nom f s 2.45 3.04 2.27 2.97 +introductions introduction nom f p 2.45 3.04 0.18 0.07 +introductrice introducteur nom f s 0.05 0.34 0.00 0.07 +introduira introduire ver 12.55 30.54 0.17 0.20 ind:fut:3s; +introduirai introduire ver 12.55 30.54 0.11 0.07 ind:fut:1s; +introduiraient introduire ver 12.55 30.54 0.00 0.07 cnd:pre:3p; +introduirais introduire ver 12.55 30.54 0.01 0.07 cnd:pre:1s; +introduirait introduire ver 12.55 30.54 0.03 0.20 cnd:pre:3s; +introduire introduire ver 12.55 30.54 3.95 8.04 ind:pre:2p;inf; +introduirez introduire ver 12.55 30.54 0.01 0.00 ind:fut:2p; +introduirions introduire ver 12.55 30.54 0.00 0.07 cnd:pre:1p; +introduis introduire ver 12.55 30.54 0.78 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +introduisît introduire ver 12.55 30.54 0.00 0.14 sub:imp:3s; +introduisaient introduire ver 12.55 30.54 0.00 0.54 ind:imp:3p; +introduisais introduire ver 12.55 30.54 0.02 0.07 ind:imp:1s;ind:imp:2s; +introduisait introduire ver 12.55 30.54 0.05 2.09 ind:imp:3s; +introduisant introduire ver 12.55 30.54 0.17 1.55 par:pre; +introduise introduire ver 12.55 30.54 0.19 0.34 sub:pre:1s;sub:pre:3s; +introduisent introduire ver 12.55 30.54 0.38 0.34 ind:pre:3p; +introduisez introduire ver 12.55 30.54 0.89 0.00 imp:pre:2p;ind:pre:2p; +introduisirent introduire ver 12.55 30.54 0.01 0.20 ind:pas:3p; +introduisis introduire ver 12.55 30.54 0.00 0.34 ind:pas:1s;ind:pas:2s; +introduisit introduire ver 12.55 30.54 0.16 3.45 ind:pas:3s; +introduisons introduire ver 12.55 30.54 0.07 0.20 imp:pre:1p;ind:pre:1p; +introduit introduire ver m s 12.55 30.54 4.18 8.99 ind:pre:3s;par:pas; +introduite introduire ver f s 12.55 30.54 0.86 1.08 par:pas; +introduites introduire ver f p 12.55 30.54 0.23 0.47 par:pas; +introduits introduire ver m p 12.55 30.54 0.28 1.89 par:pas; +intromission intromission nom f s 0.00 0.14 0.00 0.14 +intronisa introniser ver 0.12 0.34 0.00 0.07 ind:pas:3s; +intronisait introniser ver 0.12 0.34 0.01 0.07 ind:imp:3s; +intronisation intronisation nom f s 0.02 0.41 0.02 0.41 +intronise introniser ver 0.12 0.34 0.00 0.07 ind:pre:3s; +introniser introniser ver 0.12 0.34 0.05 0.00 inf; +intronisé introniser ver m s 0.12 0.34 0.06 0.14 par:pas; +introspecter introspecter ver 0.01 0.00 0.01 0.00 inf; +introspectif introspectif adj m s 0.08 0.07 0.06 0.00 +introspection introspection nom f s 0.33 0.20 0.33 0.14 +introspections introspection nom f p 0.33 0.20 0.00 0.07 +introspective introspectif adj f s 0.08 0.07 0.01 0.00 +introspectives introspectif adj f p 0.08 0.07 0.01 0.07 +introuvable introuvable adj s 3.66 3.92 3.27 2.77 +introuvables introuvable adj p 3.66 3.92 0.39 1.15 +introversions introversion nom f p 0.00 0.07 0.00 0.07 +introverti introverti adj m s 0.33 0.00 0.22 0.00 +introvertie introverti adj f s 0.33 0.00 0.09 0.00 +introvertis introverti nom m p 0.27 0.00 0.14 0.00 +intrépide intrépide adj s 1.63 3.78 1.37 2.77 +intrépidement intrépidement adv 0.00 0.14 0.00 0.14 +intrépides intrépide adj p 1.63 3.78 0.26 1.01 +intrépidité intrépidité nom f s 0.04 0.74 0.04 0.74 +intrus intrus nom m s 4.35 5.47 4.29 4.46 +intruse intrus nom f s 4.35 5.47 0.06 0.81 +intruses intrus nom f p 4.35 5.47 0.00 0.20 +intrusif intrusif adj m s 0.04 0.00 0.04 0.00 +intrusion intrusion nom f s 4.61 3.78 4.48 3.24 +intrusions intrusion nom f p 4.61 3.78 0.13 0.54 +intègre intègre adj s 1.70 1.35 1.50 0.81 +intègrent intégrer ver 7.98 6.89 0.06 0.14 ind:pre:3p; +intègres intègre adj p 1.70 1.35 0.19 0.54 +intubation intubation nom f s 0.86 0.00 0.86 0.00 +intube intuber ver 2.33 0.00 0.42 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intuber intuber ver 2.33 0.00 1.25 0.00 inf; +intubez intuber ver 2.33 0.00 0.15 0.00 imp:pre:2p;ind:pre:2p; +intubé intuber ver m s 2.33 0.00 0.42 0.00 par:pas; +intubée intuber ver f s 2.33 0.00 0.09 0.00 par:pas; +intégra intégrer ver 7.98 6.89 0.01 0.07 ind:pas:3s; +intégraient intégrer ver 7.98 6.89 0.01 0.20 ind:imp:3p; +intégrait intégrer ver 7.98 6.89 0.08 0.47 ind:imp:3s; +intégral intégral adj m s 1.35 5.27 0.56 3.18 +intégrale intégral adj f s 1.35 5.27 0.80 1.76 +intégralement intégralement adv 0.57 3.24 0.57 3.24 +intégrales intégrale nom f p 0.45 0.27 0.02 0.00 +intégralisme intégralisme nom m s 0.00 0.07 0.00 0.07 +intégralité intégralité nom f s 0.43 0.74 0.43 0.74 +intégrant intégrer ver 7.98 6.89 0.19 0.14 par:pre; +intégrante intégrant adj f s 0.34 1.01 0.34 1.01 +intégrateur intégrateur nom m s 0.02 0.00 0.02 0.00 +intégration intégration nom f s 1.28 1.08 1.28 1.08 +intégraux intégral adj m p 1.35 5.27 0.00 0.07 +intégrer intégrer ver 7.98 6.89 3.71 2.57 inf; +intégrera intégrer ver 7.98 6.89 0.16 0.14 ind:fut:3s; +intégrerais intégrer ver 7.98 6.89 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +intégreras intégrer ver 7.98 6.89 0.02 0.07 ind:fut:2s; +intégrerez intégrer ver 7.98 6.89 0.16 0.00 ind:fut:2p; +intégreront intégrer ver 7.98 6.89 0.03 0.00 ind:fut:3p; +intégrez intégrer ver 7.98 6.89 0.08 0.00 imp:pre:2p;ind:pre:2p; +intégriez intégrer ver 7.98 6.89 0.01 0.00 ind:imp:2p; +intégrisme intégrisme nom m s 0.04 0.14 0.03 0.00 +intégrismes intégrisme nom m p 0.04 0.14 0.01 0.14 +intégriste intégriste adj m s 0.22 0.00 0.15 0.00 +intégristes intégriste adj p 0.22 0.00 0.07 0.00 +intégrité intégrité nom f s 4.10 4.32 4.10 4.26 +intégrités intégrité nom f p 4.10 4.32 0.00 0.07 +intégrèrent intégrer ver 7.98 6.89 0.01 0.00 ind:pas:3p; +intégré intégrer ver m s 7.98 6.89 1.25 1.22 par:pas; +intégrée intégrer ver f s 7.98 6.89 0.39 0.68 par:pas; +intégrées intégrer ver f p 7.98 6.89 0.28 0.14 par:pas; +intégrés intégrer ver m p 7.98 6.89 0.43 0.47 par:pas; +intuitif intuitif adj m s 0.81 0.61 0.24 0.27 +intuitifs intuitif adj m p 0.81 0.61 0.02 0.00 +intuition intuition nom f s 9.37 11.08 8.64 9.80 +intuitions intuition nom f p 9.37 11.08 0.73 1.28 +intuitive intuitif adj f s 0.81 0.61 0.50 0.27 +intuitivement intuitivement adv 0.17 0.74 0.17 0.74 +intuitives intuitif adj f p 0.81 0.61 0.05 0.07 +intumescence intumescence nom f s 0.01 0.00 0.01 0.00 +intéressa intéresser ver 140.80 117.36 0.02 1.69 ind:pas:3s; +intéressai intéresser ver 140.80 117.36 0.00 0.34 ind:pas:1s; +intéressaient intéresser ver 140.80 117.36 0.73 4.93 ind:imp:3p; +intéressais intéresser ver 140.80 117.36 1.20 2.70 ind:imp:1s;ind:imp:2s; +intéressait intéresser ver 140.80 117.36 7.29 22.57 ind:imp:3s; +intéressant intéressant adj m s 69.17 28.65 47.07 15.47 +intéressante intéressant adj f s 69.17 28.65 13.05 5.95 +intéressantes intéressant adj f p 69.17 28.65 4.82 3.58 +intéressants intéressant adj m p 69.17 28.65 4.24 3.65 +intéresse intéresser ver 140.80 117.36 75.20 34.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +intéressement intéressement nom m s 0.05 0.07 0.05 0.07 +intéressent intéresser ver 140.80 117.36 9.68 7.23 ind:pre:3p; +intéresser intéresser ver 140.80 117.36 12.94 22.70 ind:pre:2p;inf; +intéressera intéresser ver 140.80 117.36 1.65 0.88 ind:fut:3s; +intéresserai intéresser ver 140.80 117.36 0.24 0.00 ind:fut:1s; +intéresseraient intéresser ver 140.80 117.36 0.29 0.41 cnd:pre:3p; +intéresserais intéresser ver 140.80 117.36 0.14 0.20 cnd:pre:1s;cnd:pre:2s; +intéresserait intéresser ver 140.80 117.36 3.42 2.57 cnd:pre:3s; +intéresseras intéresser ver 140.80 117.36 0.01 0.07 ind:fut:2s; +intéresseriez intéresser ver 140.80 117.36 0.01 0.00 cnd:pre:2p; +intéresserons intéresser ver 140.80 117.36 0.00 0.07 ind:fut:1p; +intéresseront intéresser ver 140.80 117.36 0.25 0.34 ind:fut:3p; +intéresses intéresser ver 140.80 117.36 6.81 1.01 ind:pre:2s; +intéressez intéresser ver 140.80 117.36 2.03 0.81 imp:pre:2p;ind:pre:2p; +intéressiez intéresser ver 140.80 117.36 0.46 0.34 ind:imp:2p; +intéressions intéresser ver 140.80 117.36 0.01 0.07 ind:imp:1p; +intéressons intéresser ver 140.80 117.36 0.31 0.07 imp:pre:1p;ind:pre:1p; +intéressât intéresser ver 140.80 117.36 0.01 0.74 sub:imp:3s; +intéressèrent intéresser ver 140.80 117.36 0.00 0.27 ind:pas:3p; +intéressé intéresser ver m s 140.80 117.36 9.31 6.22 par:pas; +intéressée intéresser ver f s 140.80 117.36 3.02 2.36 par:pas; +intéressées intéressé adj f p 7.20 7.77 0.46 0.68 +intéressés intéresser ver m p 140.80 117.36 2.82 1.76 par:pas; +intérieur intérieur nom m s 90.11 135.88 89.75 133.51 +intérieure intérieur adj f s 13.17 50.61 6.75 23.38 +intérieurement intérieurement adv 1.29 6.01 1.29 6.01 +intérieures intérieur adj f p 13.17 50.61 0.84 4.86 +intérieurs intérieur adj m p 13.17 50.61 0.84 3.38 +intérim intérim nom m s 1.10 2.03 1.10 1.89 +intérimaire intérimaire nom s 0.77 0.47 0.49 0.20 +intérimaires intérimaire nom p 0.77 0.47 0.28 0.27 +intérims intérim nom m p 1.10 2.03 0.00 0.14 +intériorisa intérioriser ver 0.35 0.34 0.00 0.07 ind:pas:3s; +intériorisait intérioriser ver 0.35 0.34 0.01 0.00 ind:imp:3s; +intériorisation intériorisation nom f s 0.14 0.07 0.14 0.07 +intériorise intérioriser ver 0.35 0.34 0.09 0.07 ind:pre:1s;ind:pre:3s; +intériorisent intérioriser ver 0.35 0.34 0.14 0.00 ind:pre:3p; +intérioriser intérioriser ver 0.35 0.34 0.09 0.00 inf; +intériorisée intérioriser ver f s 0.35 0.34 0.03 0.07 par:pas; +intériorisées intérioriser ver f p 0.35 0.34 0.00 0.07 par:pas; +intériorisés intérioriser ver m p 0.35 0.34 0.00 0.07 par:pas; +intériorité intériorité nom f s 0.10 0.41 0.10 0.41 +intérêt intérêt nom m s 81.09 97.36 63.63 75.00 +intérêts intérêt nom m p 81.09 97.36 17.46 22.36 +intussusception intussusception nom f s 0.03 0.00 0.03 0.00 +inébranlable inébranlable adj s 1.20 3.72 1.05 3.04 +inébranlablement inébranlablement adv 0.14 0.20 0.14 0.20 +inébranlables inébranlable adj p 1.20 3.72 0.15 0.68 +inébranlé inébranlé adj m s 0.00 0.07 0.00 0.07 +inéchangeable inéchangeable adj f s 0.00 0.07 0.00 0.07 +inécoutée inécouté adj f s 0.00 0.07 0.00 0.07 +inédit inédit adj m s 1.10 5.34 0.65 0.95 +inédite inédit adj f s 1.10 5.34 0.28 2.50 +inédites inédit adj f p 1.10 5.34 0.12 0.95 +inédits inédit adj m p 1.10 5.34 0.06 0.95 +inéducable inéducable adj s 0.01 0.00 0.01 0.00 +inégal inégal adj m s 0.68 8.11 0.23 2.84 +inégalable inégalable adj s 0.38 1.22 0.36 0.95 +inégalables inégalable adj f p 0.38 1.22 0.01 0.27 +inégale inégal adj f s 0.68 8.11 0.29 1.69 +inégalement inégalement adv 0.03 1.01 0.03 1.01 +inégales inégal adj f p 0.68 8.11 0.08 1.76 +inégalité inégalité nom f s 0.67 1.62 0.33 1.35 +inégalités inégalité nom f p 0.67 1.62 0.34 0.27 +inégalé inégalé adj m s 0.17 0.54 0.06 0.20 +inégalée inégaler ver f s 0.22 0.41 0.18 0.27 par:pas; +inégalées inégalé adj f p 0.17 0.54 0.00 0.07 +inégaux inégal adj m p 0.68 8.11 0.07 1.82 +inuit inuit nom f s 0.04 0.00 0.04 0.00 +inéligibilité inéligibilité nom f s 0.14 0.00 0.14 0.00 +inéligible inéligible adj s 0.03 0.07 0.03 0.07 +inéluctabilité inéluctabilité nom f s 0.00 0.14 0.00 0.14 +inéluctable inéluctable adj s 1.01 5.74 0.97 5.34 +inéluctablement inéluctablement adv 0.27 1.01 0.27 1.01 +inéluctables inéluctable adj p 1.01 5.74 0.04 0.41 +inélégamment inélégamment adv 0.00 0.07 0.00 0.07 +inélégance inélégance nom f s 0.14 0.00 0.14 0.00 +inélégant inélégant adj m s 0.39 0.14 0.39 0.07 +inélégantes inélégant adj f p 0.39 0.14 0.00 0.07 +inénarrable inénarrable adj s 0.12 0.95 0.11 0.47 +inénarrables inénarrable adj p 0.12 0.95 0.01 0.47 +inupik inupik nom m s 0.00 0.07 0.00 0.07 +inépuisable inépuisable adj s 0.97 9.53 0.68 7.57 +inépuisablement inépuisablement adv 0.00 0.74 0.00 0.74 +inépuisables inépuisable adj p 0.97 9.53 0.28 1.96 +inépuisées inépuisé adj f p 0.00 0.14 0.00 0.14 +inéquitable inéquitable adj m s 0.04 0.00 0.04 0.00 +inusabilité inusabilité nom f s 0.00 0.07 0.00 0.07 +inusable inusable adj s 0.17 1.96 0.16 1.55 +inusables inusable adj p 0.17 1.96 0.01 0.41 +inusité inusité adj m s 0.30 1.42 0.22 0.47 +inusitée inusité adj f s 0.30 1.42 0.07 0.68 +inusitées inusité adj f p 0.30 1.42 0.01 0.20 +inusités inusité adj m p 0.30 1.42 0.00 0.07 +inusuelle inusuel adj f s 0.00 0.07 0.00 0.07 +inutile inutile adj s 72.71 70.34 64.05 53.04 +inutilement inutilement adv 1.83 4.66 1.83 4.66 +inutiles inutile adj p 72.71 70.34 8.66 17.30 +inutilisable inutilisable adj s 1.72 2.03 1.14 0.95 +inutilisables inutilisable adj p 1.72 2.03 0.58 1.08 +inutilisation inutilisation nom f s 0.00 0.14 0.00 0.14 +inutilisé inutilisé adj m s 0.37 0.81 0.08 0.14 +inutilisée inutilisé adj f s 0.37 0.81 0.13 0.27 +inutilisées inutilisé adj f p 0.37 0.81 0.09 0.20 +inutilisés inutilisé adj m p 0.37 0.81 0.07 0.20 +inutilité inutilité nom f s 0.56 3.58 0.56 3.51 +inutilités inutilité nom f p 0.56 3.58 0.00 0.07 +inévaluable inévaluable adj s 0.00 0.07 0.00 0.07 +inévitabilité inévitabilité nom f s 0.04 0.00 0.04 0.00 +inévitable inévitable adj s 7.44 16.49 6.96 13.38 +inévitablement inévitablement adv 1.02 3.51 1.02 3.51 +inévitables inévitable adj p 7.44 16.49 0.48 3.11 +invagination invagination nom f s 0.03 0.00 0.03 0.00 +invaincu invaincu adj m s 0.84 0.61 0.50 0.34 +invaincue invaincu adj f s 0.84 0.61 0.08 0.14 +invaincues invaincu adj f p 0.84 0.61 0.00 0.07 +invaincus invaincu adj m p 0.84 0.61 0.26 0.07 +invalidant invalidant adj m s 0.04 0.00 0.02 0.00 +invalidante invalidant adj f s 0.04 0.00 0.02 0.00 +invalidation invalidation nom f s 0.02 0.00 0.02 0.00 +invalide invalide adj s 1.77 0.81 1.48 0.27 +invalider invalider ver 0.59 0.27 0.10 0.00 inf; +invalides invalide nom p 2.03 4.39 1.41 3.85 +invalidité invalidité nom f s 0.99 0.27 0.99 0.20 +invalidités invalidité nom f p 0.99 0.27 0.00 0.07 +invalidé invalider ver m s 0.59 0.27 0.14 0.14 par:pas; +invalidés invalider ver m p 0.59 0.27 0.00 0.07 par:pas; +invariable invariable adj s 0.08 1.89 0.07 1.55 +invariablement invariablement adv 0.64 4.86 0.64 4.86 +invariables invariable adj p 0.08 1.89 0.01 0.34 +invariance invariance nom f s 0.01 0.00 0.01 0.00 +invasif invasif adj m s 0.28 0.00 0.11 0.00 +invasion invasion nom f s 7.15 11.22 6.96 9.32 +invasions invasion nom f p 7.15 11.22 0.19 1.89 +invasive invasif adj f s 0.28 0.00 0.14 0.00 +invasives invasif adj f p 0.28 0.00 0.03 0.00 +invectiva invectiver ver 0.14 1.82 0.00 0.20 ind:pas:3s; +invectivai invectiver ver 0.14 1.82 0.00 0.07 ind:pas:1s; +invectivaient invectiver ver 0.14 1.82 0.00 0.07 ind:imp:3p; +invectivait invectiver ver 0.14 1.82 0.00 0.41 ind:imp:3s; +invectivant invectiver ver 0.14 1.82 0.00 0.34 par:pre; +invective invectiver ver 0.14 1.82 0.12 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +invectivent invectiver ver 0.14 1.82 0.00 0.07 ind:pre:3p; +invectiver invectiver ver 0.14 1.82 0.02 0.47 inf; +invectives invective nom f p 0.25 2.84 0.24 2.03 +invendable invendable adj m s 0.20 0.27 0.19 0.14 +invendables invendable adj m p 0.20 0.27 0.01 0.14 +invendu invendu nom m s 0.47 0.41 0.01 0.00 +invendues invendu adj f p 0.17 0.68 0.12 0.20 +invendus invendu nom m p 0.47 0.41 0.46 0.41 +inventa inventer ver 53.96 69.73 0.65 1.69 ind:pas:3s; +inventai inventer ver 53.96 69.73 0.02 1.22 ind:pas:1s; +inventaient inventer ver 53.96 69.73 0.02 0.81 ind:imp:3p; +inventaire inventaire nom m s 4.02 7.50 3.86 6.62 +inventaires inventaire nom m p 4.02 7.50 0.16 0.88 +inventais inventer ver 53.96 69.73 0.43 1.69 ind:imp:1s;ind:imp:2s; +inventait inventer ver 53.96 69.73 0.55 3.85 ind:imp:3s; +inventant inventer ver 53.96 69.73 0.21 1.42 par:pre; +invente inventer ver 53.96 69.73 7.53 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inventent inventer ver 53.96 69.73 1.68 1.62 ind:pre:3p; +inventer inventer ver 53.96 69.73 11.35 17.43 ind:pre:2p;inf; +inventera inventer ver 53.96 69.73 0.33 0.54 ind:fut:3s; +inventerai inventer ver 53.96 69.73 0.69 0.34 ind:fut:1s; +inventeraient inventer ver 53.96 69.73 0.01 0.07 cnd:pre:3p; +inventerais inventer ver 53.96 69.73 0.35 0.41 cnd:pre:1s;cnd:pre:2s; +inventerait inventer ver 53.96 69.73 0.14 0.68 cnd:pre:3s; +inventeras inventer ver 53.96 69.73 0.14 0.07 ind:fut:2s; +inventerez inventer ver 53.96 69.73 0.04 0.00 ind:fut:2p; +inventeriez inventer ver 53.96 69.73 0.11 0.00 cnd:pre:2p; +inventerions inventer ver 53.96 69.73 0.01 0.00 cnd:pre:1p; +inventerons inventer ver 53.96 69.73 0.04 0.00 ind:fut:1p; +inventeront inventer ver 53.96 69.73 0.07 0.20 ind:fut:3p; +inventes inventer ver 53.96 69.73 2.11 1.08 ind:pre:2s;sub:pre:2s; +inventeur inventeur nom m s 3.34 2.03 2.91 1.76 +inventeurs inventeur nom m p 3.34 2.03 0.42 0.27 +inventez inventer ver 53.96 69.73 1.17 0.07 imp:pre:2p;ind:pre:2p; +inventiez inventer ver 53.96 69.73 0.04 0.00 ind:imp:2p; +inventif inventif adj m s 0.36 1.28 0.22 0.74 +inventifs inventif adj m p 0.36 1.28 0.04 0.14 +invention invention nom f s 10.37 15.68 7.88 10.81 +inventions invention nom f p 10.37 15.68 2.49 4.86 +inventive inventif adj f s 0.36 1.28 0.10 0.41 +inventivité inventivité nom f s 0.02 0.07 0.02 0.00 +inventivités inventivité nom f p 0.02 0.07 0.00 0.07 +inventons inventer ver 53.96 69.73 0.14 0.07 imp:pre:1p;ind:pre:1p; +inventoria inventorier ver 0.23 1.55 0.00 0.07 ind:pas:3s; +inventoriai inventorier ver 0.23 1.55 0.00 0.07 ind:pas:1s; +inventoriaient inventorier ver 0.23 1.55 0.00 0.07 ind:imp:3p; +inventoriait inventorier ver 0.23 1.55 0.00 0.14 ind:imp:3s; +inventorient inventorier ver 0.23 1.55 0.00 0.07 ind:pre:3p; +inventorier inventorier ver 0.23 1.55 0.19 0.74 inf; +inventorié inventorier ver m s 0.23 1.55 0.03 0.20 par:pas; +inventoriée inventorier ver f s 0.23 1.55 0.00 0.07 par:pas; +inventoriées inventorier ver f p 0.23 1.55 0.02 0.14 par:pas; +inventât inventer ver 53.96 69.73 0.00 0.07 sub:imp:3s; +inventèrent inventer ver 53.96 69.73 0.11 0.34 ind:pas:3p; +inventé inventer ver m s 53.96 69.73 23.20 17.97 par:pas; +inventée inventer ver f s 53.96 69.73 1.53 3.58 par:pas; +inventées inventer ver f p 53.96 69.73 0.56 1.62 par:pas; +inventés inventer ver m p 53.96 69.73 0.72 2.23 par:pas; +inversa inverser ver 6.29 7.57 0.00 0.14 ind:pas:3s; +inversaient inverser ver 6.29 7.57 0.00 0.14 ind:imp:3p; +inversait inverser ver 6.29 7.57 0.13 0.20 ind:imp:3s; +inversant inverser ver 6.29 7.57 0.07 0.41 par:pre; +inverse inverse nom s 6.40 6.22 6.40 6.22 +inversement inversement adv 0.47 2.64 0.47 2.64 +inversent inverser ver 6.29 7.57 0.13 0.20 ind:pre:3p; +inverser inverser ver 6.29 7.57 1.36 1.01 inf; +inversera inverser ver 6.29 7.57 0.06 0.00 ind:fut:3s; +inverserais inverser ver 6.29 7.57 0.01 0.00 cnd:pre:1s; +inverserait inverser ver 6.29 7.57 0.02 0.00 cnd:pre:3s; +inverses inverser ver 6.29 7.57 0.04 0.00 ind:pre:2s; +inverseur inverseur nom m s 0.02 0.00 0.02 0.00 +inversez inverser ver 6.29 7.57 0.21 0.07 imp:pre:2p;ind:pre:2p; +inversible inversible adj f s 0.00 0.07 0.00 0.07 +inversion inversion nom f s 0.76 3.65 0.75 3.38 +inversions inversion nom f p 0.76 3.65 0.01 0.27 +inversons inverser ver 6.29 7.57 0.04 0.00 imp:pre:1p; +inversèrent inverser ver 6.29 7.57 0.00 0.07 ind:pas:3p; +inversé inverser ver m s 6.29 7.57 2.00 1.96 par:pas; +inversée inverser ver f s 6.29 7.57 0.85 1.49 par:pas; +inversées inverser ver f p 6.29 7.57 0.20 0.54 par:pas; +inversés inverser ver m p 6.29 7.57 0.71 0.95 par:pas; +inverti invertir ver m s 0.16 0.00 0.16 0.00 par:pas; +invertis inverti nom m p 0.56 0.41 0.44 0.34 +invertébré invertébré adj m s 0.19 0.27 0.07 0.07 +invertébrée invertébré adj f s 0.19 0.27 0.01 0.07 +invertébrés invertébré nom m p 0.20 0.14 0.19 0.07 +investît investir ver 16.50 9.46 0.01 0.00 sub:imp:3s; +investi investir ver m s 16.50 9.46 5.49 2.91 par:pas; +investie investir ver f s 16.50 9.46 0.15 0.81 par:pas; +investies investir ver f p 16.50 9.46 0.02 0.07 par:pas; +investigateur investigateur nom m s 0.13 0.00 0.03 0.00 +investigateurs investigateur nom m p 0.13 0.00 0.07 0.00 +investigation investigation nom f s 3.26 2.57 1.95 1.08 +investigations investigation nom f p 3.26 2.57 1.31 1.49 +investigatrice investigateur adj f s 0.14 0.27 0.11 0.00 +investigatrices investigateur adj f p 0.14 0.27 0.01 0.07 +investiguant investiguer ver 0.03 0.00 0.01 0.00 par:pre; +investiguer investiguer ver 0.03 0.00 0.01 0.00 inf; +investir investir ver 16.50 9.46 5.85 2.36 inf; +investira investir ver 16.50 9.46 0.14 0.00 ind:fut:3s; +investirais investir ver 16.50 9.46 0.07 0.00 cnd:pre:1s; +investirait investir ver 16.50 9.46 0.16 0.00 cnd:pre:3s; +investirent investir ver 16.50 9.46 0.02 0.07 ind:pas:3p; +investirons investir ver 16.50 9.46 0.02 0.00 ind:fut:1p; +investiront investir ver 16.50 9.46 0.17 0.00 ind:fut:3p; +investis investir ver m p 16.50 9.46 1.53 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +investissaient investir ver 16.50 9.46 0.14 0.14 ind:imp:3p; +investissais investir ver 16.50 9.46 0.02 0.14 ind:imp:1s;ind:imp:2s; +investissait investir ver 16.50 9.46 0.05 0.20 ind:imp:3s; +investissant investir ver 16.50 9.46 0.04 0.41 par:pre; +investisse investir ver 16.50 9.46 0.06 0.14 sub:pre:1s;sub:pre:3s; +investissement investissement nom m s 7.38 2.77 5.05 1.35 +investissements investissement nom m p 7.38 2.77 2.33 1.42 +investissent investir ver 16.50 9.46 0.29 0.20 ind:pre:3p; +investisseur investisseur nom m s 2.64 0.07 0.66 0.00 +investisseurs investisseur nom m p 2.64 0.07 1.98 0.07 +investissez investir ver 16.50 9.46 0.67 0.00 imp:pre:2p;ind:pre:2p; +investissons investir ver 16.50 9.46 0.06 0.00 imp:pre:1p;ind:pre:1p; +investit investir ver 16.50 9.46 1.56 1.22 ind:pre:3s;ind:pas:3s; +investiture investiture nom f s 0.38 0.47 0.38 0.34 +investitures investiture nom f p 0.38 0.47 0.00 0.14 +invincibilité invincibilité nom f s 0.11 0.27 0.11 0.27 +invincible invincible adj s 3.60 5.07 2.92 4.59 +invinciblement invinciblement adv 0.01 1.22 0.01 1.22 +invincibles invincible adj p 3.60 5.07 0.68 0.47 +inviolabilité inviolabilité nom f s 0.13 0.14 0.13 0.14 +inviolable inviolable adj s 0.39 1.35 0.26 0.95 +inviolables inviolable adj p 0.39 1.35 0.13 0.41 +inviolé inviolé adj m s 0.10 0.34 0.04 0.20 +inviolée inviolé adj f s 0.10 0.34 0.03 0.00 +inviolées inviolé adj f p 0.10 0.34 0.02 0.00 +inviolés inviolé adj m p 0.10 0.34 0.01 0.14 +invisibilité invisibilité nom f s 0.45 0.27 0.45 0.27 +invisible_piston invisible_piston nom m s 0.00 0.07 0.00 0.07 +invisible invisible adj s 16.21 52.36 12.85 36.35 +invisiblement invisiblement adv 0.01 0.41 0.01 0.41 +invisibles invisible adj p 16.21 52.36 3.36 16.01 +invita inviter ver 116.83 82.30 0.45 9.93 ind:pas:3s; +invitai inviter ver 116.83 82.30 0.11 1.49 ind:pas:1s; +invitaient inviter ver 116.83 82.30 0.06 2.36 ind:imp:3p; +invitais inviter ver 116.83 82.30 0.50 1.01 ind:imp:1s;ind:imp:2s; +invitait inviter ver 116.83 82.30 0.90 8.92 ind:imp:3s; +invitant inviter ver 116.83 82.30 0.63 3.72 par:pre; +invitante invitant adj f s 0.01 0.68 0.01 0.34 +invitantes invitant adj f p 0.01 0.68 0.00 0.14 +invitants invitant adj m p 0.01 0.68 0.00 0.07 +invitation invitation nom f s 18.27 18.24 15.08 14.53 +invitations invitation nom f p 18.27 18.24 3.18 3.72 +invite inviter ver 116.83 82.30 29.01 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +invitent inviter ver 116.83 82.30 3.12 1.42 ind:pre:3p; +inviter inviter ver 116.83 82.30 22.63 14.05 inf;;inf;;inf;; +invitera inviter ver 116.83 82.30 0.65 0.47 ind:fut:3s; +inviterai inviter ver 116.83 82.30 1.36 0.34 ind:fut:1s; +inviteraient inviter ver 116.83 82.30 0.03 0.14 cnd:pre:3p; +inviterais inviter ver 116.83 82.30 0.80 0.20 cnd:pre:1s;cnd:pre:2s; +inviterait inviter ver 116.83 82.30 0.20 0.54 cnd:pre:3s; +inviteras inviter ver 116.83 82.30 0.19 0.14 ind:fut:2s; +inviterez inviter ver 116.83 82.30 0.17 0.07 ind:fut:2p; +inviteriez inviter ver 116.83 82.30 0.05 0.14 cnd:pre:2p; +inviterions inviter ver 116.83 82.30 0.00 0.07 cnd:pre:1p; +inviterons inviter ver 116.83 82.30 0.07 0.14 ind:fut:1p; +inviteront inviter ver 116.83 82.30 0.02 0.00 ind:fut:3p; +invites inviter ver 116.83 82.30 3.64 0.14 ind:pre:2s;sub:pre:2s; +inviteur inviteur nom m s 0.00 0.14 0.00 0.07 +inviteurs inviteur nom m p 0.00 0.14 0.00 0.07 +invitez inviter ver 116.83 82.30 3.09 0.47 imp:pre:2p;ind:pre:2p; +invitiez inviter ver 116.83 82.30 0.24 0.14 ind:imp:2p; +invitions inviter ver 116.83 82.30 0.03 0.20 ind:imp:1p; +invitâmes inviter ver 116.83 82.30 0.00 0.14 ind:pas:1p; +invitons inviter ver 116.83 82.30 0.93 0.20 imp:pre:1p;ind:pre:1p; +invitât inviter ver 116.83 82.30 0.00 0.20 sub:imp:3s; +invitèrent inviter ver 116.83 82.30 0.11 0.74 ind:pas:3p; +invité inviter ver m s 116.83 82.30 28.27 14.05 par:pas; +invitée inviter ver f s 116.83 82.30 12.14 5.20 par:pas; +invitées inviter ver f p 116.83 82.30 0.66 0.74 par:pas; +invités invité nom m p 41.19 27.16 24.84 18.51 +invivable invivable adj s 0.43 1.22 0.43 1.22 +invocation invocation nom f s 0.69 1.96 0.55 1.28 +invocations invocation nom f p 0.69 1.96 0.14 0.68 +invocatoire invocatoire adj m s 0.00 0.07 0.00 0.07 +involontaire involontaire adj s 3.40 6.62 3.10 5.61 +involontairement involontairement adv 0.57 3.18 0.57 3.18 +involontaires involontaire adj p 3.40 6.62 0.30 1.01 +involutif involutif adj m s 0.00 0.14 0.00 0.07 +involutifs involutif adj m p 0.00 0.14 0.00 0.07 +involution involution nom f s 0.00 0.07 0.00 0.07 +invoqua invoquer ver 8.13 10.95 0.26 0.61 ind:pas:3s; +invoquai invoquer ver 8.13 10.95 0.00 0.20 ind:pas:1s; +invoquaient invoquer ver 8.13 10.95 0.01 0.34 ind:imp:3p; +invoquais invoquer ver 8.13 10.95 0.00 0.34 ind:imp:1s; +invoquait invoquer ver 8.13 10.95 0.01 1.28 ind:imp:3s; +invoquant invoquer ver 8.13 10.95 0.67 2.09 par:pre; +invoque invoquer ver 8.13 10.95 1.55 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +invoquent invoquer ver 8.13 10.95 0.31 0.27 ind:pre:3p; +invoquer invoquer ver 8.13 10.95 2.23 2.57 inf; +invoquera invoquer ver 8.13 10.95 0.06 0.07 ind:fut:3s; +invoquerai invoquer ver 8.13 10.95 0.04 0.14 ind:fut:1s; +invoquerais invoquer ver 8.13 10.95 0.11 0.07 cnd:pre:1s;cnd:pre:2s; +invoquerait invoquer ver 8.13 10.95 0.02 0.00 cnd:pre:3s; +invoquerez invoquer ver 8.13 10.95 0.00 0.07 ind:fut:2p; +invoquerons invoquer ver 8.13 10.95 0.02 0.00 ind:fut:1p; +invoques invoquer ver 8.13 10.95 0.15 0.14 ind:pre:2s; +invoquez invoquer ver 8.13 10.95 0.35 0.34 imp:pre:2p;ind:pre:2p; +invoquons invoquer ver 8.13 10.95 0.33 0.00 imp:pre:1p;ind:pre:1p; +invoquât invoquer ver 8.13 10.95 0.00 0.07 sub:imp:3s; +invoqué invoquer ver m s 8.13 10.95 1.52 1.22 par:pas; +invoquée invoquer ver f s 8.13 10.95 0.20 0.27 par:pas; +invoquées invoquer ver f p 8.13 10.95 0.12 0.07 par:pas; +invoqués invoquer ver m p 8.13 10.95 0.17 0.14 par:pas; +invraisemblable invraisemblable adj s 2.11 9.53 1.62 7.30 +invraisemblablement invraisemblablement adv 0.00 0.14 0.00 0.14 +invraisemblables invraisemblable adj p 2.11 9.53 0.48 2.23 +invraisemblance invraisemblance nom f s 0.17 1.76 0.14 1.35 +invraisemblances invraisemblance nom f p 0.17 1.76 0.04 0.41 +invulnérabilité invulnérabilité nom f s 0.28 0.54 0.28 0.54 +invulnérable invulnérable adj s 1.12 3.18 0.90 2.57 +invulnérables invulnérable adj p 1.12 3.18 0.22 0.61 +invérifiable invérifiable adj s 0.02 0.34 0.01 0.14 +invérifiables invérifiable adj f p 0.02 0.34 0.01 0.20 +invétéré invétéré adj m s 0.79 1.69 0.65 1.01 +invétérée invétéré adj f s 0.79 1.69 0.08 0.34 +invétérées invétéré adj f p 0.79 1.69 0.00 0.14 +invétérés invétéré adj m p 0.79 1.69 0.06 0.20 +iode iode nom m s 1.15 3.58 1.15 3.58 +iodle iodler ver 0.07 0.00 0.03 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +iodler iodler ver 0.07 0.00 0.03 0.00 inf; +iodoforme iodoforme nom m s 0.01 0.07 0.01 0.07 +iodé iodé adj m s 0.14 0.20 0.00 0.07 +iodée iodé adj f s 0.14 0.20 0.14 0.14 +iodure iodure nom m s 0.05 0.00 0.05 0.00 +ion ion nom m s 0.85 0.14 0.37 0.07 +ionien ionien adj m s 0.00 0.20 0.00 0.07 +ionienne ionienne adj f s 0.01 0.07 0.01 0.07 +ioniennes ioniennes adj f s 0.00 0.20 0.00 0.20 +ioniens ionien adj m p 0.00 0.20 0.00 0.07 +ionique ionique adj s 0.45 0.07 0.35 0.07 +ioniques ionique adj p 0.45 0.07 0.10 0.00 +ionisant ionisant adj m s 0.05 0.00 0.04 0.00 +ionisante ionisant adj f s 0.05 0.00 0.01 0.00 +ionisation ionisation nom f s 0.23 0.14 0.23 0.14 +ioniser ioniser ver 0.04 0.00 0.02 0.00 inf; +ionisez ioniser ver 0.04 0.00 0.01 0.00 imp:pre:2p; +ionisé ionisé adj m s 0.15 0.07 0.05 0.07 +ionisée ionisé adj f s 0.15 0.07 0.10 0.00 +ionosphère ionosphère nom f s 0.20 0.07 0.20 0.07 +ions ion nom m p 0.85 0.14 0.48 0.07 +iota iota nom m 0.22 0.34 0.22 0.34 +ipomée ipomée nom f s 0.00 0.07 0.00 0.07 +ippon ippon nom m s 0.03 0.00 0.03 0.00 +ipse ipse nom m s 0.01 0.14 0.01 0.14 +ipso_facto ipso_facto adv 0.21 0.61 0.21 0.61 +ipéca ipéca nom m s 0.32 0.20 0.32 0.14 +ipécas ipéca nom m p 0.32 0.20 0.00 0.07 +ira aller ver 9992.78 2854.93 148.34 28.31 ind:fut:3s; +irai aller ver 9992.78 2854.93 71.96 27.70 ind:fut:1s; +iraient aller ver 9992.78 2854.93 1.65 5.47 cnd:pre:3p; +irais aller ver 9992.78 2854.93 20.14 11.96 cnd:pre:1s;cnd:pre:2s; +irait aller ver 9992.78 2854.93 22.44 26.01 cnd:pre:3s; +irakien irakien adj m s 1.12 0.34 0.86 0.07 +irakienne irakienne adj f s 0.08 0.00 0.08 0.00 +irakiens irakien nom m p 0.64 0.07 0.56 0.07 +iranien iranien adj m s 0.41 0.41 0.20 0.07 +iranienne iranien adj f s 0.41 0.41 0.12 0.07 +iraniennes iranien adj f p 0.41 0.41 0.01 0.14 +iraniens iranien nom m p 0.34 0.47 0.28 0.14 +iraquien iraquien adj m s 0.16 0.00 0.09 0.00 +iraquienne iraquien adj f s 0.16 0.00 0.07 0.00 +iraquiens iraquien nom m p 0.11 0.00 0.08 0.00 +iras aller ver 9992.78 2854.93 24.90 6.76 ind:fut:2s; +irascible irascible adj s 0.65 1.55 0.52 1.28 +irascibles irascible adj m p 0.65 1.55 0.14 0.27 +ire ire nom f s 0.58 0.81 0.55 0.74 +ires ire nom f p 0.58 0.81 0.03 0.07 +irez aller ver 9992.78 2854.93 14.29 5.41 ind:fut:2p; +iridescence iridescence nom f s 0.01 0.00 0.01 0.00 +iridescent iridescent adj m s 0.01 0.07 0.01 0.00 +iridescentes iridescent adj f p 0.01 0.07 0.00 0.07 +iridium iridium nom m s 0.18 0.34 0.18 0.34 +iridologie iridologie nom f s 0.01 0.00 0.01 0.00 +iriez aller ver 9992.78 2854.93 2.02 1.08 cnd:pre:2p; +irions aller ver 9992.78 2854.93 1.10 2.91 cnd:pre:1p; +iris iris nom m 3.93 6.42 3.93 6.42 +irisaient iriser ver 0.01 2.03 0.00 0.14 ind:imp:3p; +irisait iriser ver 0.01 2.03 0.00 0.20 ind:imp:3s; +irisant iriser ver 0.01 2.03 0.00 0.07 par:pre; +irisation irisation nom f s 0.00 0.81 0.00 0.47 +irisations irisation nom f p 0.00 0.81 0.00 0.34 +irise iriser ver 0.01 2.03 0.01 0.14 ind:pre:3s; +irisent iriser ver 0.01 2.03 0.00 0.14 ind:pre:3p; +iriser iriser ver 0.01 2.03 0.00 0.07 inf; +iriserait iriser ver 0.01 2.03 0.00 0.07 cnd:pre:3s; +irish_coffee irish_coffee nom m s 0.16 0.14 0.16 0.14 +irisé irisé adj m s 0.05 1.96 0.00 0.41 +irisée irisé adj f s 0.05 1.96 0.00 0.61 +irisées irisé adj f p 0.05 1.96 0.03 0.54 +irisés irisé adj m p 0.05 1.96 0.02 0.41 +irlandais irlandais adj m 4.75 3.78 3.71 2.43 +irlandaise irlandais adj f s 4.75 3.78 0.89 1.08 +irlandaises irlandais adj f p 4.75 3.78 0.15 0.27 +ironie ironie nom f s 6.05 24.19 6.00 23.78 +ironies ironie nom f p 6.05 24.19 0.05 0.41 +ironique ironique adj s 3.73 16.28 3.67 13.72 +ironiquement ironiquement adv 0.95 2.77 0.95 2.77 +ironiques ironique adj p 3.73 16.28 0.06 2.57 +ironisa ironiser ver 0.44 2.50 0.00 1.01 ind:pas:3s; +ironisai ironiser ver 0.44 2.50 0.00 0.07 ind:pas:1s; +ironisais ironiser ver 0.44 2.50 0.00 0.14 ind:imp:1s;ind:imp:2s; +ironisait ironiser ver 0.44 2.50 0.00 0.14 ind:imp:3s; +ironise ironiser ver 0.44 2.50 0.01 0.34 imp:pre:2s;ind:pre:3s; +ironisent ironiser ver 0.44 2.50 0.01 0.07 ind:pre:3p; +ironiser ironiser ver 0.44 2.50 0.42 0.47 inf; +ironisme ironisme nom m s 0.00 0.07 0.00 0.07 +ironiste ironiste nom s 0.00 0.14 0.00 0.14 +ironisé ironiser ver m s 0.44 2.50 0.00 0.27 par:pas; +irons aller ver 9992.78 2854.93 15.36 9.32 ind:fut:1p; +iront aller ver 9992.78 2854.93 7.43 4.73 ind:fut:3p; +iroquois iroquois nom m 0.05 0.00 0.05 0.00 +iroquoise iroquois adj f s 0.22 0.27 0.17 0.00 +irradia irradier ver 0.65 4.32 0.00 0.14 ind:pas:3s; +irradiaient irradier ver 0.65 4.32 0.00 0.20 ind:imp:3p; +irradiait irradier ver 0.65 4.32 0.03 1.28 ind:imp:3s; +irradiant irradiant adj m s 0.11 0.54 0.03 0.20 +irradiante irradiant adj f s 0.11 0.54 0.05 0.34 +irradiantes irradiant adj f p 0.11 0.54 0.04 0.00 +irradiation irradiation nom f s 0.27 0.34 0.26 0.20 +irradiations irradiation nom f p 0.27 0.34 0.01 0.14 +irradie irradier ver 0.65 4.32 0.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +irradier irradier ver 0.65 4.32 0.01 0.68 inf; +irradiera irradier ver 0.65 4.32 0.01 0.00 ind:fut:3s; +irradiez irradier ver 0.65 4.32 0.00 0.07 ind:pre:2p; +irradié irradier ver m s 0.65 4.32 0.27 0.27 par:pas; +irradiée irradier ver f s 0.65 4.32 0.06 0.07 par:pas; +irradiées irradier ver f p 0.65 4.32 0.03 0.00 par:pas; +irradiés irradier ver m p 0.65 4.32 0.10 0.00 par:pas; +irraisonnable irraisonnable adj s 0.01 0.07 0.01 0.07 +irraisonné irraisonné adj m s 0.07 1.49 0.03 0.27 +irraisonnée irraisonné adj f s 0.07 1.49 0.02 1.15 +irraisonnés irraisonné adj m p 0.07 1.49 0.01 0.07 +irrationalité irrationalité nom f s 0.04 0.07 0.04 0.07 +irrationnel irrationnel adj m s 1.63 1.15 0.61 0.81 +irrationnelle irrationnel adj f s 1.63 1.15 0.77 0.14 +irrationnellement irrationnellement adv 0.01 0.07 0.01 0.07 +irrationnelles irrationnel adj f p 1.63 1.15 0.16 0.14 +irrationnels irrationnel adj m p 1.63 1.15 0.10 0.07 +irrattrapable irrattrapable adj m s 0.12 0.27 0.12 0.14 +irrattrapables irrattrapable adj p 0.12 0.27 0.00 0.14 +irrecevabilité irrecevabilité nom f s 0.02 0.14 0.02 0.14 +irrecevable irrecevable adj s 0.72 0.14 0.61 0.14 +irrecevables irrecevable adj p 0.72 0.14 0.12 0.00 +irremplaçable irremplaçable adj s 1.23 5.14 1.11 4.26 +irremplaçables irremplaçable adj p 1.23 5.14 0.13 0.88 +irreprésentable irreprésentable adj s 0.00 0.07 0.00 0.07 +irrespect irrespect nom m s 0.13 0.68 0.13 0.68 +irrespectueuse irrespectueux adj f s 0.71 1.01 0.04 0.27 +irrespectueusement irrespectueusement adv 0.02 0.07 0.02 0.07 +irrespectueuses irrespectueux adj f p 0.71 1.01 0.00 0.07 +irrespectueux irrespectueux adj m 0.71 1.01 0.68 0.68 +irrespirable irrespirable adj s 0.61 2.57 0.61 2.43 +irrespirables irrespirable adj f p 0.61 2.57 0.00 0.14 +irresponsabilité irresponsabilité nom f s 1.45 1.49 1.45 1.49 +irresponsable irresponsable adj s 6.29 2.70 4.99 2.09 +irresponsables irresponsable adj p 6.29 2.70 1.30 0.61 +irrigateur irrigateur adj m s 0.01 0.00 0.01 0.00 +irrigateurs irrigateur nom m p 0.00 0.07 0.00 0.07 +irrigation irrigation nom f s 0.86 1.55 0.86 1.55 +irriguaient irriguer ver 0.50 2.84 0.00 0.14 ind:imp:3p; +irriguait irriguer ver 0.50 2.84 0.00 0.34 ind:imp:3s; +irriguant irriguer ver 0.50 2.84 0.01 0.14 par:pre; +irrigue irriguer ver 0.50 2.84 0.14 0.20 imp:pre:2s;ind:pre:3s; +irriguent irriguer ver 0.50 2.84 0.01 0.07 ind:pre:3p; +irriguer irriguer ver 0.50 2.84 0.17 0.47 inf; +irriguera irriguer ver 0.50 2.84 0.02 0.00 ind:fut:3s; +irrigueraient irriguer ver 0.50 2.84 0.00 0.07 cnd:pre:3p; +irriguerait irriguer ver 0.50 2.84 0.00 0.20 cnd:pre:3s; +irriguons irriguer ver 0.50 2.84 0.00 0.07 imp:pre:1p; +irrigué irriguer ver m s 0.50 2.84 0.08 0.41 par:pas; +irriguée irriguer ver f s 0.50 2.84 0.03 0.47 par:pas; +irriguées irriguer ver f p 0.50 2.84 0.03 0.07 par:pas; +irrigués irriguer ver m p 0.50 2.84 0.01 0.20 par:pas; +irrita irriter ver 6.70 24.93 0.11 1.35 ind:pas:3s; +irritabilité irritabilité nom f s 0.20 0.07 0.20 0.07 +irritable irritable adj s 1.71 1.55 1.56 1.22 +irritables irritable adj f p 1.71 1.55 0.15 0.34 +irritai irriter ver 6.70 24.93 0.00 0.20 ind:pas:1s; +irritaient irriter ver 6.70 24.93 0.01 0.68 ind:imp:3p; +irritais irriter ver 6.70 24.93 0.01 0.81 ind:imp:1s; +irritait irriter ver 6.70 24.93 0.44 5.68 ind:imp:3s; +irritant irritant adj m s 1.18 4.26 0.80 1.89 +irritante irritant adj f s 1.18 4.26 0.17 1.42 +irritantes irritant adj f p 1.18 4.26 0.01 0.47 +irritants irritant adj m p 1.18 4.26 0.20 0.47 +irritation irritation nom f s 1.00 9.39 0.80 9.19 +irritations irritation nom f p 1.00 9.39 0.20 0.20 +irrite irriter ver 6.70 24.93 2.62 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +irritent irriter ver 6.70 24.93 0.20 0.68 ind:pre:3p; +irriter irriter ver 6.70 24.93 0.79 2.36 inf; +irritera irriter ver 6.70 24.93 0.01 0.00 ind:fut:3s; +irriterait irriter ver 6.70 24.93 0.02 0.20 cnd:pre:3s; +irriterons irriter ver 6.70 24.93 0.01 0.00 ind:fut:1p; +irritez irriter ver 6.70 24.93 0.08 0.07 imp:pre:2p;ind:pre:2p; +irritons irriter ver 6.70 24.93 0.00 0.07 ind:pre:1p; +irritât irriter ver 6.70 24.93 0.00 0.14 sub:imp:3s; +irritèrent irriter ver 6.70 24.93 0.00 0.14 ind:pas:3p; +irrité irriter ver m s 6.70 24.93 1.29 5.00 par:pas; +irritée irriter ver f s 6.70 24.93 0.82 3.24 par:pas; +irritées irriter ver f p 6.70 24.93 0.22 0.41 par:pas; +irrités irriter ver m p 6.70 24.93 0.07 0.47 par:pas; +irroration irroration nom f s 0.00 0.07 0.00 0.07 +irréalisable irréalisable adj s 0.51 1.08 0.47 0.88 +irréalisables irréalisable adj m p 0.51 1.08 0.03 0.20 +irréalisait irréaliser ver 0.00 0.14 0.00 0.07 ind:imp:3s; +irréalise irréaliser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +irréalisme irréalisme nom m s 0.00 0.07 0.00 0.07 +irréaliste irréaliste adj s 0.46 0.14 0.35 0.14 +irréalistes irréaliste adj p 0.46 0.14 0.10 0.00 +irréalisé irréalisé adj m s 0.00 0.14 0.00 0.07 +irréalisés irréalisé adj m p 0.00 0.14 0.00 0.07 +irréalité irréalité nom f s 0.14 3.51 0.14 3.51 +irréconciliable irréconciliable adj s 0.32 0.20 0.28 0.14 +irréconciliables irréconciliable adj f p 0.32 0.20 0.04 0.07 +irrécupérable irrécupérable adj s 0.98 2.03 0.81 1.42 +irrécupérables irrécupérable adj p 0.98 2.03 0.18 0.61 +irrécusable irrécusable adj s 0.02 1.01 0.02 0.81 +irrécusables irrécusable adj m p 0.02 1.01 0.00 0.20 +irréductible irréductible adj s 0.29 2.64 0.00 1.49 +irréductiblement irréductiblement adv 0.01 0.14 0.01 0.14 +irréductibles irréductible adj p 0.29 2.64 0.29 1.15 +irréel irréel adj m s 2.84 12.43 1.87 5.27 +irréelle irréel adj f s 2.84 12.43 0.86 4.53 +irréellement irréellement adv 0.00 0.20 0.00 0.20 +irréelles irréel adj f p 2.84 12.43 0.07 1.15 +irréels irréel adj m p 2.84 12.43 0.04 1.49 +irréfléchi irréfléchi adj m s 0.92 0.54 0.40 0.14 +irréfléchie irréfléchi adj f s 0.92 0.54 0.34 0.41 +irréfléchis irréfléchi adj m p 0.92 0.54 0.18 0.00 +irréfragable irréfragable adj s 0.07 0.20 0.07 0.20 +irréfutable irréfutable adj s 1.58 2.77 0.97 2.09 +irréfutablement irréfutablement adv 0.03 0.20 0.03 0.20 +irréfutables irréfutable adj p 1.58 2.77 0.60 0.68 +irrégularité irrégularité nom f s 0.96 1.55 0.54 0.74 +irrégularités irrégularité nom f p 0.96 1.55 0.42 0.81 +irrégulier irrégulier adj m s 2.70 7.64 1.44 1.82 +irréguliers irrégulier adj m p 2.70 7.64 0.38 2.09 +irrégulière irrégulier adj f s 2.70 7.64 0.59 2.16 +irrégulièrement irrégulièrement adv 0.03 1.76 0.03 1.76 +irrégulières irrégulier adj f p 2.70 7.64 0.29 1.55 +irréligieuse irréligieux adj f s 0.04 0.07 0.01 0.00 +irréligieux irréligieux adj m s 0.04 0.07 0.03 0.07 +irréligiosité irréligiosité nom f s 0.00 0.07 0.00 0.07 +irrémissible irrémissible adj s 0.16 0.27 0.16 0.27 +irrémédiable irrémédiable adj s 0.57 5.34 0.52 5.07 +irrémédiablement irrémédiablement adv 1.12 4.19 1.12 4.19 +irrémédiables irrémédiable adj p 0.57 5.34 0.06 0.27 +irréparable irréparable adj s 1.73 4.39 1.33 3.58 +irréparablement irréparablement adv 0.00 0.14 0.00 0.14 +irréparables irréparable adj p 1.73 4.39 0.40 0.81 +irrépressible irrépressible adj s 0.95 3.99 0.79 3.24 +irrépressibles irrépressible adj p 0.95 3.99 0.16 0.74 +irréprochable irréprochable adj s 2.38 4.46 1.82 3.38 +irréprochablement irréprochablement adv 0.00 0.20 0.00 0.20 +irréprochables irréprochable adj p 2.38 4.46 0.56 1.08 +irruption irruption nom f s 2.82 11.69 2.79 11.35 +irruptions irruption nom f p 2.82 11.69 0.03 0.34 +irrésistible irrésistible adj s 4.67 15.34 4.33 13.78 +irrésistiblement irrésistiblement adv 0.14 4.66 0.14 4.66 +irrésistibles irrésistible adj p 4.67 15.34 0.33 1.55 +irrésolu irrésolu adj m s 0.33 0.68 0.04 0.47 +irrésolue irrésolu adj f s 0.33 0.68 0.17 0.00 +irrésolues irrésolu adj f p 0.33 0.68 0.07 0.07 +irrésolus irrésolu adj m p 0.33 0.68 0.05 0.14 +irrésolution irrésolution nom f s 0.01 0.20 0.01 0.20 +irrétrécissable irrétrécissable adj s 0.01 0.00 0.01 0.00 +irréversibilité irréversibilité nom f s 0.00 0.27 0.00 0.27 +irréversible irréversible adj s 1.92 2.43 1.33 1.96 +irréversiblement irréversiblement adv 0.15 0.34 0.15 0.34 +irréversibles irréversible adj p 1.92 2.43 0.59 0.47 +irrévocabilité irrévocabilité nom f s 0.01 0.00 0.01 0.00 +irrévocable irrévocable adj s 0.82 0.81 0.68 0.68 +irrévocablement irrévocablement adv 0.21 0.47 0.21 0.47 +irrévocables irrévocable adj p 0.82 0.81 0.14 0.14 +irrévérence irrévérence nom f s 0.30 0.20 0.30 0.20 +irrévérencieuse irrévérencieux adj f s 0.16 0.27 0.10 0.07 +irrévérencieusement irrévérencieusement adv 0.00 0.14 0.00 0.14 +irrévérencieuses irrévérencieux adj f p 0.16 0.27 0.00 0.14 +irrévérencieux irrévérencieux adj m s 0.16 0.27 0.06 0.07 +isabelle isabelle adj 1.85 0.47 1.85 0.47 +isard isard nom m s 0.00 0.54 0.00 0.34 +isards isard nom m p 0.00 0.54 0.00 0.20 +isatis isatis nom m 0.00 0.07 0.00 0.07 +isba isba nom f s 0.40 5.34 0.40 4.05 +isbas isba nom f p 0.40 5.34 0.00 1.28 +ischion ischion nom m s 0.01 0.14 0.01 0.14 +ischémie ischémie nom f s 0.23 0.00 0.23 0.00 +ischémique ischémique adj s 0.13 0.00 0.13 0.00 +islam islam nom m s 2.84 2.30 2.84 2.30 +islamique islamique adj s 1.49 0.54 1.30 0.47 +islamiques islamique adj p 1.49 0.54 0.20 0.07 +islamisants islamisant adj m p 0.00 0.07 0.00 0.07 +islamiser islamiser ver 0.01 0.07 0.01 0.00 inf; +islamisme islamisme nom m s 0.01 0.07 0.01 0.07 +islamiste islamiste adj s 0.19 0.00 0.15 0.00 +islamistes islamiste nom p 0.09 0.14 0.09 0.14 +islamisée islamisé adj f s 0.00 0.07 0.00 0.07 +islamisées islamiser ver f p 0.01 0.07 0.00 0.07 par:pas; +islandais islandais adj m s 0.44 0.81 0.29 0.34 +islandaise islandais adj f s 0.44 0.81 0.15 0.47 +ismaïliens ismaïlien nom m p 0.00 0.07 0.00 0.07 +ismaélien ismaélien nom m s 0.01 0.07 0.01 0.00 +ismaéliens ismaélien nom m p 0.01 0.07 0.00 0.07 +ismaélite ismaélite adj m s 0.01 0.00 0.01 0.00 +isme isme nom m s 0.34 0.00 0.34 0.00 +isochronisme isochronisme nom m s 0.01 0.00 0.01 0.00 +isocèle isocèle adj s 0.05 0.14 0.05 0.14 +isola isoler ver 14.10 23.45 0.04 1.28 ind:pas:3s; +isolables isolable adj m p 0.00 0.07 0.00 0.07 +isolai isoler ver 14.10 23.45 0.00 0.14 ind:pas:1s; +isolaient isoler ver 14.10 23.45 0.02 0.47 ind:imp:3p; +isolais isoler ver 14.10 23.45 0.01 0.14 ind:imp:1s;ind:imp:2s; +isolait isoler ver 14.10 23.45 0.05 2.57 ind:imp:3s; +isolant isolant nom m s 0.45 0.14 0.45 0.14 +isolante isolant adj f s 0.27 0.14 0.13 0.07 +isolateur isolateur nom m s 0.00 0.14 0.00 0.07 +isolateurs isolateur adj m p 0.01 0.07 0.01 0.00 +isolation isolation nom f s 1.02 0.34 1.02 0.20 +isolationnisme isolationnisme nom m s 0.05 0.20 0.05 0.20 +isolationniste isolationniste adj f s 0.02 0.07 0.02 0.07 +isolations isolation nom f p 1.02 0.34 0.00 0.14 +isole isoler ver 14.10 23.45 1.36 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +isolement isolement nom m s 5.63 7.97 5.63 7.91 +isolements isolement nom m p 5.63 7.97 0.00 0.07 +isolent isoler ver 14.10 23.45 0.46 0.47 ind:pre:3p; +isoler isoler ver 14.10 23.45 4.62 5.74 inf; +isolera isoler ver 14.10 23.45 0.03 0.00 ind:fut:3s; +isoleraient isoler ver 14.10 23.45 0.00 0.14 cnd:pre:3p; +isolerait isoler ver 14.10 23.45 0.01 0.27 cnd:pre:3s; +isoleront isoler ver 14.10 23.45 0.02 0.00 ind:fut:3p; +isolez isoler ver 14.10 23.45 0.65 0.00 imp:pre:2p;ind:pre:2p; +isoliez isoler ver 14.10 23.45 0.00 0.07 ind:imp:2p; +isolions isoler ver 14.10 23.45 0.03 0.00 ind:imp:1p; +isoloir isoloir nom m s 0.75 0.14 0.58 0.14 +isoloirs isoloir nom m p 0.75 0.14 0.16 0.00 +isolèrent isoler ver 14.10 23.45 0.00 0.20 ind:pas:3p; +isolé isolé adj m s 8.17 14.80 4.08 4.46 +isolée isolé adj f s 8.17 14.80 1.98 4.12 +isolées isoler ver f p 14.10 23.45 0.35 1.01 par:pas; +isolément isolément adv 0.14 1.28 0.14 1.28 +isolés isolé adj m p 8.17 14.80 1.79 4.66 +isomère isomère adj f s 0.25 0.00 0.25 0.00 +isométrique isométrique adj f s 0.02 0.00 0.02 0.00 +isoniazide isoniazide nom m s 0.01 0.00 0.01 0.00 +isorel isorel nom m s 0.00 0.14 0.00 0.14 +isotherme isotherme adj m s 0.11 0.00 0.11 0.00 +isothermique isothermique adj f s 0.01 0.00 0.01 0.00 +isotonique isotonique adj f s 0.10 0.00 0.10 0.00 +isotope isotope nom m s 0.64 0.00 0.37 0.00 +isotopes isotope nom m p 0.64 0.00 0.26 0.00 +isotopique isotopique adj f s 0.04 0.00 0.04 0.00 +israélien israélien adj m s 5.63 0.54 2.22 0.47 +israélienne israélien adj f s 5.63 0.54 1.54 0.07 +israéliennes israélien adj f p 5.63 0.54 0.15 0.00 +israéliens israélien nom m p 4.49 1.08 4.00 0.74 +israélite israélite adj s 0.70 0.81 0.57 0.41 +israélites israélite nom p 0.41 0.68 0.39 0.54 +israélo_arabe israélo_arabe adj f s 0.01 0.00 0.01 0.00 +israélo_syrien israélo_syrien adj f s 0.14 0.00 0.14 0.00 +issu issu adj m s 5.24 8.51 2.10 3.58 +issue issue nom f s 16.52 22.70 13.70 19.26 +issues issue nom f p 16.52 22.70 2.82 3.45 +issus issu adj m p 5.24 8.51 1.29 2.16 +isthme isthme nom m s 0.19 0.61 0.19 0.54 +isthmes isthme nom m p 0.19 0.61 0.00 0.07 +isthmique isthmique adj f s 0.01 0.00 0.01 0.00 +italianisme italianisme nom m s 0.00 0.14 0.00 0.14 +italiano italiano nom m s 0.24 0.07 0.24 0.07 +italien italien adj m s 26.66 35.74 13.01 13.51 +italienne italien adj f s 26.66 35.74 7.56 11.62 +italiennes italien adj f p 26.66 35.74 1.54 4.05 +italiens italien nom m p 23.24 27.57 9.07 9.73 +italique italique adj m s 0.14 0.68 0.12 0.07 +italiques italique adj f p 0.14 0.68 0.02 0.61 +italo_allemand italo_allemand adj f s 0.00 0.20 0.00 0.07 +italo_allemand italo_allemand adj f p 0.00 0.20 0.00 0.14 +italo_américain italo_américain adj m s 0.20 0.00 0.15 0.00 +italo_américain italo_américain adj f s 0.20 0.00 0.04 0.00 +italo_brésilien italo_brésilien adj m s 0.00 0.07 0.00 0.07 +italo_français italo_français adj m 0.00 0.14 0.00 0.07 +italo_français italo_français adj f p 0.00 0.14 0.00 0.07 +italo_irlandais italo_irlandais adj m 0.01 0.00 0.01 0.00 +italo_polonais italo_polonais adj m 0.00 0.07 0.00 0.07 +italo_égyptien italo_égyptien adj m s 0.00 0.07 0.00 0.07 +ite_missa_est ite_missa_est nom m 0.00 0.14 0.00 0.14 +item item nom m s 0.09 1.49 0.09 1.49 +ithos ithos nom m 0.00 0.07 0.00 0.07 +ithyphallique ithyphallique adj m s 0.00 0.14 0.00 0.14 +itinéraire itinéraire nom m s 4.18 10.47 3.25 8.45 +itinéraires itinéraire nom m p 4.18 10.47 0.93 2.03 +itinérant itinérant adj m s 0.51 0.74 0.39 0.20 +itinérante itinérant adj f s 0.51 0.74 0.06 0.27 +itinérantes itinérant adj f p 0.51 0.74 0.01 0.07 +itinérants itinérant nom m p 0.20 0.00 0.20 0.00 +itou itou adv_sup 0.30 1.82 0.30 1.82 +iules iule nom m p 0.00 0.07 0.00 0.07 +ive ive nom f s 0.81 0.68 0.01 0.68 +ives ive nom f p 0.81 0.68 0.81 0.00 +ivoire ivoire nom m s 1.98 8.38 1.96 7.84 +ivoires ivoire nom m p 1.98 8.38 0.02 0.54 +ivoirien ivoirien adj m s 0.00 0.14 0.00 0.14 +ivoirienne ivoirienne nom f s 0.00 0.07 0.00 0.07 +ivoirin ivoirin adj m s 0.00 0.74 0.00 0.68 +ivoirine ivoirin nom f s 0.00 0.41 0.00 0.27 +ivoirines ivoirin nom f p 0.00 0.41 0.00 0.14 +ivoirins ivoirin adj m p 0.00 0.74 0.00 0.07 +ivraie ivraie nom f s 0.21 0.68 0.21 0.68 +ivre ivre adj s 18.32 27.70 16.59 21.76 +ivres ivre adj p 18.32 27.70 1.72 5.95 +ivresse ivresse nom f s 3.56 18.11 3.29 17.50 +ivresses ivresse nom f p 3.56 18.11 0.27 0.61 +ivrognait ivrogner ver 0.00 0.20 0.00 0.07 ind:imp:3s; +ivrognasse ivrogner ver 0.00 0.20 0.00 0.07 sub:imp:1s; +ivrogne ivrogne nom s 10.60 13.92 7.81 8.72 +ivrogner ivrogner ver 0.00 0.20 0.00 0.07 inf; +ivrognerie ivrognerie nom f s 0.21 0.88 0.21 0.88 +ivrognes ivrogne nom p 10.60 13.92 2.79 5.20 +ivrognesse ivrognesse nom f s 0.01 0.07 0.01 0.07 +ixe ixer ver 0.00 0.34 0.00 0.34 ind:pre:3s; +ixième ixième adj f s 0.00 0.07 0.00 0.07 +j j pro_per s 3.16 0.88 3.16 0.88 +jaïnistes jaïniste nom p 0.00 0.07 0.00 0.07 +jabadao jabadao nom m s 0.00 0.20 0.00 0.20 +jabot jabot nom m s 0.16 2.16 0.15 1.89 +jaboter jaboter ver 0.00 0.07 0.00 0.07 inf; +jabots jabot nom m p 0.16 2.16 0.01 0.27 +jacarandas jacaranda nom m p 0.00 0.20 0.00 0.20 +jacassaient jacasser ver 1.58 2.09 0.01 0.47 ind:imp:3p; +jacassais jacasser ver 1.58 2.09 0.01 0.00 ind:imp:1s; +jacassait jacasser ver 1.58 2.09 0.04 0.20 ind:imp:3s; +jacassant jacasser ver 1.58 2.09 0.03 0.41 par:pre; +jacassante jacassant adj f s 0.00 0.61 0.00 0.14 +jacassantes jacassant adj f p 0.00 0.61 0.00 0.27 +jacassants jacassant adj m p 0.00 0.61 0.00 0.07 +jacasse jacasser ver 1.58 2.09 0.33 0.20 ind:pre:1s;ind:pre:3s; +jacassement jacassement nom m s 0.06 0.81 0.03 0.47 +jacassements jacassement nom m p 0.06 0.81 0.04 0.34 +jacassent jacasser ver 1.58 2.09 0.13 0.07 ind:pre:3p; +jacasser jacasser ver 1.58 2.09 0.91 0.61 inf; +jacasseraient jacasser ver 1.58 2.09 0.00 0.07 cnd:pre:3p; +jacasserie jacasserie nom f s 0.04 0.34 0.00 0.07 +jacasseries jacasserie nom f p 0.04 0.34 0.04 0.27 +jacasses jacasser ver 1.58 2.09 0.05 0.00 ind:pre:2s; +jacasseur jacasseur nom m s 0.04 0.07 0.03 0.00 +jacasseurs jacasseur nom m p 0.04 0.07 0.00 0.07 +jacasseuse jacasseur nom f s 0.04 0.07 0.01 0.00 +jacassez jacasser ver 1.58 2.09 0.04 0.00 imp:pre:2p;ind:pre:2p; +jacassiers jacassier nom m p 0.00 0.20 0.00 0.07 +jacassiez jacasser ver 1.58 2.09 0.00 0.07 ind:imp:2p; +jacassière jacassier nom f s 0.00 0.20 0.00 0.14 +jacassé jacasser ver m s 1.58 2.09 0.03 0.00 par:pas; +jachère jachère nom f s 0.12 0.88 0.12 0.74 +jachères jachère nom f p 0.12 0.88 0.00 0.14 +jacinthe jacinthe nom f s 0.15 1.28 0.01 0.54 +jacinthes jacinthe nom f p 0.15 1.28 0.14 0.74 +jack jack nom m s 2.26 0.07 1.86 0.07 +jacket jacket nom f s 0.23 0.14 0.04 0.07 +jackets jacket nom f p 0.23 0.14 0.19 0.07 +jackpot jackpot nom m s 1.96 0.27 1.96 0.27 +jacks jack nom m p 2.26 0.07 0.40 0.00 +jacob jacob nom m s 0.09 0.20 0.09 0.20 +jacobin jacobin adj m s 0.11 0.14 0.10 0.00 +jacobine jacobin adj f s 0.11 0.14 0.00 0.14 +jacobins jacobin adj m p 0.11 0.14 0.01 0.00 +jacobite jacobite adj m s 0.07 0.20 0.05 0.20 +jacobites jacobite nom p 0.18 0.14 0.14 0.14 +jacobées jacobée nom f p 0.00 0.07 0.00 0.07 +jacot jacot nom m s 0.00 0.41 0.00 0.41 +jacquard jacquard nom m s 0.11 1.28 0.11 1.28 +jacqueline jacqueline nom f s 0.01 0.00 0.01 0.00 +jacquemart jacquemart nom m s 0.00 0.20 0.00 0.07 +jacquemarts jacquemart nom m p 0.00 0.20 0.00 0.14 +jacqueries jacquerie nom f p 0.00 0.14 0.00 0.14 +jacques jacques nom m 3.12 4.73 3.12 4.73 +jacquet jacquet nom m s 0.25 2.57 0.25 2.57 +jacquier jacquier nom m s 0.00 0.68 0.00 0.68 +jacquot jacquot nom m s 0.01 0.00 0.01 0.00 +jactais jacter ver 0.36 9.53 0.00 0.07 ind:imp:1s; +jactait jacter ver 0.36 9.53 0.00 1.01 ind:imp:3s; +jactance jactance nom f s 0.40 3.85 0.40 3.85 +jactancier jactancier adj m s 0.00 0.07 0.00 0.07 +jactant jacter ver 0.36 9.53 0.00 0.14 par:pre; +jacte jacter ver 0.36 9.53 0.17 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jactent jacter ver 0.36 9.53 0.00 0.34 ind:pre:3p; +jacter jacter ver 0.36 9.53 0.14 3.92 inf; +jacteraient jacter ver 0.36 9.53 0.00 0.07 cnd:pre:3p; +jacterais jacter ver 0.36 9.53 0.01 0.00 cnd:pre:2s; +jactes jacter ver 0.36 9.53 0.01 0.20 ind:pre:2s; +jacteur jacteur nom m s 0.00 0.14 0.00 0.14 +jactez jacter ver 0.36 9.53 0.01 0.14 imp:pre:2p;ind:pre:2p; +jactions jacter ver 0.36 9.53 0.00 0.07 ind:imp:1p; +jacté jacter ver m s 0.36 9.53 0.02 1.01 par:pas; +jaculatoire jaculatoire adj f s 0.00 0.07 0.00 0.07 +jacuzzi jacuzzi nom m s 3.46 0.14 3.32 0.07 +jacuzzis jacuzzi nom m p 3.46 0.14 0.14 0.07 +jade jade nom m s 0.66 3.51 0.63 3.38 +jades jade nom m p 0.66 3.51 0.03 0.14 +jadis jadis adv_sup 11.55 52.30 11.55 52.30 +jaffa jaffer ver 5.41 0.20 0.79 0.00 ind:pas:3s; +jaffas jaffer ver 5.41 0.20 4.57 0.00 ind:pas:2s; +jaffe jaffe nom f s 0.17 0.74 0.17 0.74 +jaffer jaffer ver 5.41 0.20 0.05 0.20 inf; +jaguar jaguar nom m s 0.91 0.61 0.65 0.41 +jaguarondi jaguarondi nom m s 0.01 0.00 0.01 0.00 +jaguars jaguar nom m p 0.91 0.61 0.27 0.20 +jaillît jaillir ver 5.79 43.24 0.00 0.07 sub:imp:3s; +jailli jaillir ver m s 5.79 43.24 0.69 5.47 par:pas; +jaillie jaillir ver f s 5.79 43.24 0.05 1.01 par:pas; +jaillies jaillir ver f p 5.79 43.24 0.00 0.68 par:pas; +jaillir jaillir ver 5.79 43.24 2.03 9.73 inf; +jaillira jaillir ver 5.79 43.24 0.34 0.27 ind:fut:3s; +jailliraient jaillir ver 5.79 43.24 0.00 0.07 cnd:pre:3p; +jaillirait jaillir ver 5.79 43.24 0.01 0.27 cnd:pre:3s; +jaillirent jaillir ver 5.79 43.24 0.06 1.42 ind:pas:3p; +jailliront jaillir ver 5.79 43.24 0.03 0.07 ind:fut:3p; +jaillis jaillir ver m p 5.79 43.24 0.15 1.28 ind:pre:1s;ind:pre:2s;par:pas; +jaillissaient jaillir ver 5.79 43.24 0.07 2.57 ind:imp:3p; +jaillissait jaillir ver 5.79 43.24 0.17 3.85 ind:imp:3s; +jaillissant jaillir ver 5.79 43.24 0.17 2.03 par:pre; +jaillissante jaillissant adj f s 0.02 1.69 0.01 0.74 +jaillissantes jaillissant adj f p 0.02 1.69 0.01 0.14 +jaillissants jaillissant adj m p 0.02 1.69 0.00 0.07 +jaillisse jaillir ver 5.79 43.24 0.08 0.41 sub:pre:3s; +jaillissement jaillissement nom m s 0.25 1.82 0.25 1.49 +jaillissements jaillissement nom m p 0.25 1.82 0.00 0.34 +jaillissent jaillir ver 5.79 43.24 0.53 3.99 ind:pre:3p; +jaillit jaillir ver 5.79 43.24 1.43 10.07 ind:pre:3s;ind:pas:3s; +jais jais nom m 0.43 6.82 0.43 6.82 +jaja jaja nom m s 0.20 0.61 0.20 0.61 +jalmince jalmince adj s 0.00 1.22 0.00 0.95 +jalminces jalmince adj p 0.00 1.22 0.00 0.27 +jalon jalon nom m s 0.17 2.70 0.03 1.08 +jalonnaient jalonner ver 0.12 5.00 0.01 1.08 ind:imp:3p; +jalonnais jalonner ver 0.12 5.00 0.00 0.07 ind:imp:1s; +jalonnait jalonner ver 0.12 5.00 0.00 0.20 ind:imp:3s; +jalonnant jalonner ver 0.12 5.00 0.02 0.27 par:pre; +jalonne jalonner ver 0.12 5.00 0.01 0.07 ind:pre:1s;ind:pre:3s; +jalonnent jalonner ver 0.12 5.00 0.04 1.28 ind:pre:3p; +jalonner jalonner ver 0.12 5.00 0.00 0.20 inf; +jalonné jalonner ver m s 0.12 5.00 0.02 0.61 par:pas; +jalonnée jalonner ver f s 0.12 5.00 0.02 0.95 par:pas; +jalonnés jalonner ver m p 0.12 5.00 0.00 0.27 par:pas; +jalons jalon nom m p 0.17 2.70 0.14 1.62 +jalousaient jalouser ver 0.93 2.09 0.02 0.20 ind:imp:3p; +jalousais jalouser ver 0.93 2.09 0.00 0.27 ind:imp:1s; +jalousait jalouser ver 0.93 2.09 0.01 0.54 ind:imp:3s; +jalousant jalouser ver 0.93 2.09 0.03 0.07 par:pre; +jalouse jalouse adj f s 14.80 9.05 14.20 7.84 +jalousement jalousement adv 0.95 2.50 0.95 2.50 +jalousent jalouser ver 0.93 2.09 0.14 0.20 ind:pre:3p; +jalouser jalouser ver 0.93 2.09 0.01 0.20 inf; +jalouserais jalouser ver 0.93 2.09 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +jalouses jalouse adj f p 14.80 9.05 0.60 1.22 +jalousie jalousie nom f s 13.67 25.20 13.20 22.09 +jalousies jalousie nom f p 13.67 25.20 0.47 3.11 +jalousé jalouser ver m s 0.93 2.09 0.04 0.14 par:pas; +jalousée jalouser ver f s 0.93 2.09 0.00 0.07 par:pas; +jaloux jaloux adj m 29.87 15.14 29.87 15.14 +jam_session jam_session nom f s 0.16 0.00 0.14 0.00 +jam_session jam_session nom f p 0.16 0.00 0.01 0.00 +jam jam nom f s 0.05 0.07 0.05 0.07 +jamaïcain jamaïcain adj m s 0.27 0.20 0.14 0.20 +jamaïcaine jamaïcain adj f s 0.27 0.20 0.10 0.00 +jamaïcains jamaïcain nom m p 0.19 0.00 0.09 0.00 +jamaïquain jamaïquain adj m s 0.05 0.07 0.05 0.00 +jamaïquains jamaïquain nom m p 0.04 0.00 0.02 0.00 +jamais_vu jamais_vu nom m 0.00 0.07 0.00 0.07 +jamais jamais adv_sup 1360.22 1122.97 1360.22 1122.97 +jambage jambage nom m s 0.02 1.08 0.01 0.20 +jambages jambage nom m p 0.02 1.08 0.01 0.88 +jambart jambart nom m s 0.00 0.07 0.00 0.07 +jambe jambe nom f s 113.80 220.95 46.31 49.93 +jambes jambe nom f p 113.80 220.95 67.49 171.01 +jambier jambier nom m s 0.01 0.00 0.01 0.00 +jambière jambière nom f s 0.26 0.61 0.02 0.00 +jambières jambière nom f p 0.26 0.61 0.23 0.61 +jambon jambon nom m s 9.43 13.24 8.94 11.01 +jambonneau jambonneau nom m s 0.04 1.01 0.00 0.68 +jambonneaux jambonneau nom m p 0.04 1.01 0.04 0.34 +jambons jambon nom m p 9.43 13.24 0.48 2.23 +jamboree jamboree nom m s 0.09 0.07 0.09 0.07 +janissaire janissaire nom m s 0.00 6.42 0.00 0.68 +janissaires janissaire nom m p 0.00 6.42 0.00 5.74 +jans jan nom m p 0.11 0.61 0.10 0.61 +jansénisme jansénisme nom m s 0.00 0.54 0.00 0.54 +janséniste janséniste adj s 0.00 0.95 0.00 0.88 +jansénistes janséniste nom p 0.00 0.74 0.00 0.27 +jante jante nom f s 1.22 0.68 0.22 0.47 +jantes jante nom f p 1.22 0.68 0.99 0.20 +janvier janvier nom m 8.34 30.61 8.34 30.61 +jap jap nom s 2.26 0.20 0.23 0.14 +japon japon nom m s 0.20 0.27 0.20 0.20 +japonais japonais nom m 13.23 12.64 10.99 11.49 +japonaise japonais adj f s 11.90 14.66 3.20 3.99 +japonaiserie japonaiserie nom f s 0.00 0.07 0.00 0.07 +japonaises japonais adj f p 11.90 14.66 1.00 1.49 +japonerie japonerie nom f s 0.00 0.14 0.00 0.07 +japoneries japonerie nom f p 0.00 0.14 0.00 0.07 +japonisants japonisant nom m p 0.00 0.07 0.00 0.07 +japoniser japoniser ver 0.01 0.00 0.01 0.00 inf; +japons japon nom m p 0.20 0.27 0.00 0.07 +jappa japper ver 0.48 2.64 0.00 0.20 ind:pas:3s; +jappaient japper ver 0.48 2.64 0.00 0.07 ind:imp:3p; +jappait japper ver 0.48 2.64 0.02 0.34 ind:imp:3s; +jappant japper ver 0.48 2.64 0.01 0.34 par:pre; +jappe japper ver 0.48 2.64 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jappement jappement nom m s 0.07 2.03 0.04 0.88 +jappements jappement nom m p 0.07 2.03 0.03 1.15 +jappent japper ver 0.48 2.64 0.00 0.14 ind:pre:3p; +japper japper ver 0.48 2.64 0.11 0.61 inf; +jappeur jappeur nom m s 0.01 0.07 0.01 0.07 +jappèrent japper ver 0.48 2.64 0.00 0.07 ind:pas:3p; +jappé japper ver m s 0.48 2.64 0.00 0.27 par:pas; +japs jap nom p 2.26 0.20 2.04 0.07 +jaquelin jaquelin nom m s 0.00 0.20 0.00 0.20 +jaquemart jaquemart nom m s 0.01 0.07 0.01 0.00 +jaquemarts jaquemart nom m p 0.01 0.07 0.00 0.07 +jaquet jaquet nom m s 0.00 0.14 0.00 0.14 +jaquette jaquette nom f s 1.34 2.91 1.30 2.57 +jaquettes jaquette nom f p 1.34 2.91 0.04 0.34 +jar jar nom m s 0.12 0.07 0.12 0.07 +jardin jardin nom m s 60.21 185.81 54.01 148.72 +jardinage jardinage nom m s 1.65 2.03 1.65 2.03 +jardinait jardiner ver 1.01 0.68 0.01 0.14 ind:imp:3s; +jardinant jardiner ver 1.01 0.68 0.02 0.07 par:pre; +jardine jardiner ver 1.01 0.68 0.62 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jardinent jardiner ver 1.01 0.68 0.01 0.07 ind:pre:3p; +jardiner jardiner ver 1.01 0.68 0.31 0.27 inf; +jardinerai jardiner ver 1.01 0.68 0.01 0.00 ind:fut:1s; +jardineras jardiner ver 1.01 0.68 0.00 0.07 ind:fut:2s; +jardinerie jardinerie nom f s 0.04 0.07 0.04 0.07 +jardinet jardinet nom m s 0.18 6.62 0.18 3.65 +jardinets jardinet nom m p 0.18 6.62 0.00 2.97 +jardinier jardinier nom m s 7.67 11.89 6.90 6.22 +jardiniers jardinier nom m p 7.67 11.89 0.39 4.05 +jardinière jardinier nom f s 7.67 11.89 0.38 1.35 +jardinières jardinière nom f p 0.01 0.20 0.01 0.00 +jardins jardin nom m p 60.21 185.81 6.20 37.09 +jardiné jardiner ver m s 1.01 0.68 0.03 0.00 par:pas; +jargon jargon nom m s 1.91 4.32 1.90 4.26 +jargonnant jargonner ver 0.00 0.47 0.00 0.14 par:pre; +jargonne jargonner ver 0.00 0.47 0.00 0.14 ind:pre:3s; +jargonnent jargonner ver 0.00 0.47 0.00 0.07 ind:pre:3p; +jargonner jargonner ver 0.00 0.47 0.00 0.07 inf; +jargonné jargonner ver m s 0.00 0.47 0.00 0.07 par:pas; +jargons jargon nom m p 1.91 4.32 0.01 0.07 +jarnicoton jarnicoton ono 0.00 0.07 0.00 0.07 +jarre jarre nom f s 1.25 3.92 1.17 1.49 +jarres jarre nom f p 1.25 3.92 0.08 2.43 +jarret jarret nom m s 1.31 3.92 1.16 1.28 +jarretelle jarretelle nom f s 0.14 1.82 0.02 0.47 +jarretelles jarretelle nom f p 0.14 1.82 0.12 1.35 +jarretière jarretière nom f s 1.65 0.47 1.28 0.27 +jarretières jarretière nom f p 1.65 0.47 0.38 0.20 +jarrets jarret nom m p 1.31 3.92 0.15 2.64 +jars jars nom m 0.09 0.74 0.09 0.74 +jas jas nom m 0.03 0.07 0.03 0.07 +jasaient jaser ver 2.72 1.62 0.01 0.07 ind:imp:3p; +jasait jaser ver 2.72 1.62 0.00 0.20 ind:imp:3s; +jase jaser ver 2.72 1.62 0.51 0.41 imp:pre:2s;ind:pre:3s; +jasent jaser ver 2.72 1.62 0.47 0.00 ind:pre:3p; +jaser jaser ver 2.72 1.62 1.56 0.81 inf; +jaserait jaser ver 2.72 1.62 0.16 0.00 cnd:pre:3s; +jases jaser ver 2.72 1.62 0.00 0.07 ind:pre:2s; +jaseur jaseur nom m s 0.00 0.20 0.00 0.20 +jasmin jasmin nom m s 1.57 5.14 1.57 4.19 +jasmins jasmin nom m p 1.57 5.14 0.00 0.95 +jaspaient jasper ver 0.11 0.27 0.00 0.07 ind:imp:3p; +jaspe jaspe nom m s 0.00 0.27 0.00 0.27 +jasper jasper ver 0.11 0.27 0.11 0.00 inf; +jaspin jaspin nom m s 0.00 0.07 0.00 0.07 +jaspinaient jaspiner ver 0.00 1.08 0.00 0.07 ind:imp:3p; +jaspinais jaspiner ver 0.00 1.08 0.00 0.07 ind:imp:1s; +jaspinait jaspiner ver 0.00 1.08 0.00 0.14 ind:imp:3s; +jaspine jaspiner ver 0.00 1.08 0.00 0.61 ind:pre:1s;ind:pre:3s; +jaspinent jaspiner ver 0.00 1.08 0.00 0.07 ind:pre:3p; +jaspiner jaspiner ver 0.00 1.08 0.00 0.07 inf; +jaspiné jaspiner ver m s 0.00 1.08 0.00 0.07 par:pas; +jaspé jasper ver m s 0.11 0.27 0.00 0.07 par:pas; +jaspées jasper ver f p 0.11 0.27 0.00 0.07 par:pas; +jaspés jasper ver m p 0.11 0.27 0.00 0.07 par:pas; +jasé jaser ver m s 2.72 1.62 0.01 0.07 par:pas; +jatte jatte nom f s 0.18 0.81 0.18 0.41 +jattes jatte nom f p 0.18 0.81 0.00 0.41 +jauge jauge nom f s 1.44 0.54 1.25 0.47 +jaugea jauger ver 1.17 4.66 0.00 0.68 ind:pas:3s; +jaugeait jauger ver 1.17 4.66 0.01 1.01 ind:imp:3s; +jaugeant jauger ver 1.17 4.66 0.00 0.34 par:pre; +jaugent jauger ver 1.17 4.66 0.06 0.14 ind:pre:3p; +jauger jauger ver 1.17 4.66 0.64 0.88 inf; +jauges jauge nom f p 1.44 0.54 0.18 0.07 +jaugez jauger ver 1.17 4.66 0.28 0.00 imp:pre:2p;ind:pre:2p; +jaugé jauger ver m s 1.17 4.66 0.00 0.41 par:pas; +jaugée jauger ver f s 1.17 4.66 0.01 0.27 par:pas; +jaugés jauger ver m p 1.17 4.66 0.01 0.07 par:pas; +jaunasse jaunasse adj s 0.00 0.34 0.00 0.14 +jaunasses jaunasse adj f p 0.00 0.34 0.00 0.20 +jaune_vert jaune_vert adj s 0.01 0.20 0.01 0.20 +jaune jaune adj s 21.09 109.86 15.48 75.81 +jaunes jaune adj p 21.09 109.86 5.62 34.05 +jaunets jaunet nom m p 0.00 0.20 0.00 0.20 +jauni jaunir ver m s 0.92 8.31 0.50 1.55 par:pas; +jaunie jaunir ver f s 0.92 8.31 0.02 1.62 par:pas; +jaunies jauni adj f p 0.28 8.38 0.26 1.96 +jaunir jaunir ver 0.92 8.31 0.21 0.68 inf; +jaunira jaunir ver 0.92 8.31 0.00 0.07 ind:fut:3s; +jauniront jaunir ver 0.92 8.31 0.00 0.07 ind:fut:3p; +jaunis jauni adj m p 0.28 8.38 0.02 2.43 +jaunissaient jaunir ver 0.92 8.31 0.00 0.47 ind:imp:3p; +jaunissait jaunir ver 0.92 8.31 0.00 1.08 ind:imp:3s; +jaunissant jaunissant adj m s 0.16 0.68 0.16 0.00 +jaunissante jaunissant adj f s 0.16 0.68 0.00 0.14 +jaunissantes jaunissant adj f p 0.16 0.68 0.00 0.41 +jaunissants jaunissant adj m p 0.16 0.68 0.00 0.14 +jaunisse jaunisse nom f s 0.51 0.41 0.51 0.34 +jaunissement jaunissement nom m s 0.01 0.07 0.01 0.07 +jaunissent jaunir ver 0.92 8.31 0.02 0.27 ind:pre:3p; +jaunisses jaunisse nom f p 0.51 0.41 0.00 0.07 +jaunit jaunir ver 0.92 8.31 0.14 0.54 ind:pre:3s;ind:pas:3s; +jaunâtre jaunâtre adj s 0.10 9.93 0.08 7.50 +jaunâtres jaunâtre adj p 0.10 9.93 0.02 2.43 +java java nom f s 0.46 2.30 0.44 1.89 +javanais javanais adj m s 0.07 0.27 0.06 0.20 +javanaise javanais adj f s 0.07 0.27 0.01 0.00 +javanaises javanais adj f p 0.07 0.27 0.00 0.07 +javas java nom f p 0.46 2.30 0.02 0.41 +javel javel nom f s 1.33 3.45 1.33 3.45 +javeline javeline nom f s 0.00 0.07 0.00 0.07 +javelle javelle nom f s 0.01 0.34 0.01 0.00 +javelles javelle nom f p 0.01 0.34 0.00 0.34 +javellise javelliser ver 0.02 0.34 0.00 0.07 ind:pre:3s; +javelliser javelliser ver 0.02 0.34 0.01 0.00 inf; +javellisé javelliser ver m s 0.02 0.34 0.00 0.07 par:pas; +javellisée javelliser ver f s 0.02 0.34 0.01 0.14 par:pas; +javellisées javelliser ver f p 0.02 0.34 0.00 0.07 par:pas; +javelot javelot nom m s 0.71 1.35 0.44 0.95 +javelots javelot nom m p 0.71 1.35 0.27 0.41 +javotte javotte nom f s 0.00 0.07 0.00 0.07 +jazz_band jazz_band nom m s 0.02 0.20 0.02 0.20 +jazz_rock jazz_rock nom m 0.14 0.07 0.14 0.07 +jazz jazz nom m 7.38 8.11 7.38 8.11 +jazzman jazzman nom m s 0.34 0.20 0.27 0.14 +jazzmen jazzman nom m p 0.34 0.20 0.07 0.07 +jazzy jazzy adj f 0.14 0.00 0.14 0.00 +je_m_en_fichiste je_m_en_fichiste adj f s 0.01 0.00 0.01 0.00 +je_m_en_foutisme je_m_en_foutisme nom m s 0.01 0.14 0.01 0.14 +je_m_en_foutiste je_m_en_foutiste adj s 0.01 0.00 0.01 0.00 +je_m_en_foutiste je_m_en_foutiste nom p 0.03 0.07 0.03 0.07 +je_ne_sais_quoi je_ne_sais_quoi nom m 0.34 0.47 0.34 0.47 +je je pro_per s 25983.20 10862.77 25983.20 10862.77 +jeûna jeûner ver 2.59 1.35 0.01 0.07 ind:pas:3s; +jeûnaient jeûner ver 2.59 1.35 0.00 0.14 ind:imp:3p; +jeûnait jeûner ver 2.59 1.35 0.00 0.07 ind:imp:3s; +jeûnant jeûner ver 2.59 1.35 0.03 0.07 par:pre; +jeûne jeûne nom m s 1.84 4.46 1.62 3.72 +jeûnent jeûner ver 2.59 1.35 0.17 0.07 ind:pre:3p; +jeûner jeûner ver 2.59 1.35 1.10 0.61 inf; +jeûnerai jeûner ver 2.59 1.35 0.02 0.07 ind:fut:1s; +jeûnerait jeûner ver 2.59 1.35 0.00 0.07 cnd:pre:3s; +jeûneras jeûner ver 2.59 1.35 0.01 0.07 ind:fut:2s; +jeûnerons jeûner ver 2.59 1.35 0.01 0.00 ind:fut:1p; +jeûnes jeûner ver 2.59 1.35 0.32 0.00 ind:pre:2s; +jeûneurs jeûneur nom m p 0.00 0.07 0.00 0.07 +jeûnez jeûner ver 2.59 1.35 0.16 0.00 imp:pre:2p;ind:pre:2p; +jeûné jeûner ver m s 2.59 1.35 0.33 0.07 par:pas; +jean_foutre jean_foutre nom m 0.41 1.28 0.41 1.28 +jean_le_blanc jean_le_blanc nom m 0.00 0.07 0.00 0.07 +jean jean nom m s 6.55 10.20 3.62 6.96 +jeanneton jeanneton nom f s 0.02 0.68 0.02 0.68 +jeannette jeannette nom f s 0.27 0.20 0.02 0.20 +jeannettes jeannette nom f p 0.27 0.20 0.25 0.00 +jeannot jeannot nom m s 0.00 0.07 0.00 0.07 +jeans jean nom m p 6.55 10.20 2.93 3.24 +jeep jeep nom f s 4.65 2.97 4.18 2.16 +jeeps jeep nom f p 4.65 2.97 0.47 0.81 +jellaba jellaba nom f s 0.00 0.14 0.00 0.14 +jenny jenny nom f s 0.12 9.32 0.12 9.32 +jerez jerez nom m 0.67 0.68 0.67 0.68 +jerk jerk nom m s 0.11 0.54 0.11 0.54 +jerrican jerrican nom m s 0.37 0.20 0.34 0.07 +jerricane jerricane nom m s 0.19 0.07 0.19 0.00 +jerricanes jerricane nom m p 0.19 0.07 0.00 0.07 +jerricans jerrican nom m p 0.37 0.20 0.04 0.14 +jerrycan jerrycan nom m s 0.42 0.68 0.25 0.27 +jerrycans jerrycan nom m p 0.42 0.68 0.18 0.41 +jersey jersey nom m s 0.51 1.69 0.51 1.62 +jerseys jersey nom m p 0.51 1.69 0.00 0.07 +jet_set jet_set nom m s 0.42 0.07 0.42 0.07 +jet_stream jet_stream nom m s 0.01 0.00 0.01 0.00 +jet_society jet_society nom f s 0.00 0.07 0.00 0.07 +jet jet nom m s 10.49 20.95 7.96 14.53 +jeta jeter ver 192.17 336.82 1.63 60.95 ind:pas:3s; +jetable jetable adj s 1.16 0.54 0.54 0.34 +jetables jetable adj p 1.16 0.54 0.62 0.20 +jetai jeter ver 192.17 336.82 0.26 6.89 ind:pas:1s; +jetaient jeter ver 192.17 336.82 0.96 9.26 ind:imp:3p; +jetais jeter ver 192.17 336.82 1.24 3.04 ind:imp:1s;ind:imp:2s; +jetait jeter ver 192.17 336.82 0.00 33.85 ind:imp:3s; +jetant jeter ver 192.17 336.82 1.53 22.30 par:pre; +jetas jeter ver 192.17 336.82 0.02 0.00 ind:pas:2s; +jeter jeter ver 192.17 336.82 59.27 61.89 inf;; +jeteur jeteur nom m s 0.23 0.47 0.04 0.14 +jeteurs jeteur nom m p 0.23 0.47 0.17 0.14 +jeteuse jeteur nom f s 0.23 0.47 0.00 0.14 +jeteuses jeteur nom f p 0.23 0.47 0.00 0.07 +jetez jeter ver 192.17 336.82 17.07 1.69 imp:pre:2p;ind:pre:2p; +jetiez jeter ver 192.17 336.82 0.29 0.27 ind:imp:2p; +jetions jeter ver 192.17 336.82 0.34 1.89 ind:imp:1p; +jetâmes jeter ver 192.17 336.82 0.01 0.20 ind:pas:1p; +jeton jeton nom m s 10.27 10.27 2.88 4.32 +jetons jeton nom m p 10.27 10.27 7.39 5.95 +jetât jeter ver 192.17 336.82 0.00 0.27 sub:imp:3s; +jets jet nom m p 10.49 20.95 2.53 6.42 +jette jeter ver 192.17 336.82 43.48 45.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +jettent jeter ver 192.17 336.82 3.44 6.89 ind:pre:3p;sub:pre:3p; +jettera jeter ver 192.17 336.82 2.10 1.01 ind:fut:3s; +jetterai jeter ver 192.17 336.82 2.38 0.61 ind:fut:1s; +jetteraient jeter ver 192.17 336.82 0.16 0.95 cnd:pre:3p; +jetterais jeter ver 192.17 336.82 1.02 0.34 cnd:pre:1s;cnd:pre:2s; +jetterait jeter ver 192.17 336.82 0.39 2.50 cnd:pre:3s; +jetteras jeter ver 192.17 336.82 0.31 0.14 ind:fut:2s; +jetterez jeter ver 192.17 336.82 0.09 0.20 ind:fut:2p; +jetteriez jeter ver 192.17 336.82 0.19 0.07 cnd:pre:2p; +jetterions jeter ver 192.17 336.82 0.00 0.14 cnd:pre:1p; +jetterons jeter ver 192.17 336.82 0.41 0.07 ind:fut:1p; +jetteront jeter ver 192.17 336.82 0.59 0.68 ind:fut:3p; +jettes jeter ver 192.17 336.82 4.77 0.47 ind:pre:2s;sub:pre:2s; +jetèrent jeter ver 192.17 336.82 0.29 3.72 ind:pas:3p; +jeté jeter ver m s 192.17 336.82 33.21 45.07 par:pas; +jetée jeter ver f s 192.17 336.82 9.01 13.38 par:pas; +jetées jeter ver f p 192.17 336.82 1.11 3.38 par:pas; +jetés jeter ver m p 192.17 336.82 3.73 8.72 par:pas; +jeu_concours jeu_concours nom m 0.10 0.14 0.10 0.14 +jeu jeu nom m s 190.44 173.31 156.79 130.68 +jeudi jeudi nom m s 26.09 23.51 24.58 21.01 +jeudis jeudi nom m p 26.09 23.51 1.51 2.50 +jeune_homme jeune_homme adj s 0.10 0.00 0.10 0.00 +jeune jeune adj s 297.01 569.19 234.90 432.64 +jeunement jeunement adv 0.00 0.27 0.00 0.27 +jeunes jeune adj p 297.01 569.19 62.12 136.55 +jeunesse jeunesse nom f s 28.71 85.14 27.21 83.24 +jeunesses jeunesse nom f p 28.71 85.14 1.50 1.89 +jeunet jeunet nom m s 0.11 0.00 0.11 0.00 +jeunets jeunet adj m p 0.13 0.68 0.00 0.07 +jeunette jeunette nom f s 0.17 0.95 0.12 0.61 +jeunettes jeunette nom f p 0.17 0.95 0.04 0.34 +jeunot jeunot nom m s 1.56 3.11 0.94 1.22 +jeunots jeunot nom m p 1.56 3.11 0.62 1.89 +jeux jeu nom m p 190.44 173.31 33.65 42.64 +jigger jigger nom m s 0.04 0.00 0.04 0.00 +jihad jihad nom s 0.28 0.00 0.28 0.00 +jingle jingle nom m s 1.14 0.07 0.88 0.07 +jingles jingle nom m p 1.14 0.07 0.26 0.00 +jinjin jinjin nom m s 0.00 0.27 0.00 0.27 +jiu_jitsu jiu_jitsu nom m 0.35 0.14 0.35 0.14 +jivaro jivaro adj m s 0.00 0.14 0.00 0.14 +jà jà adv 1.02 0.41 1.02 0.41 +joaillerie joaillerie nom f s 0.07 0.47 0.07 0.47 +joaillier joaillier nom m s 0.39 0.68 0.33 0.47 +joailliers joaillier nom m p 0.39 0.68 0.06 0.20 +job job nom m s 28.62 2.77 27.24 2.43 +jobard jobard nom m s 0.46 0.47 0.41 0.14 +jobardes jobard adj f p 0.05 0.47 0.00 0.07 +jobardise jobardise nom f s 0.00 0.20 0.00 0.20 +jobards jobard nom m p 0.46 0.47 0.06 0.34 +jobs job nom m p 28.62 2.77 1.38 0.34 +jociste jociste nom s 0.00 0.41 0.00 0.34 +jocistes jociste nom p 0.00 0.41 0.00 0.07 +jockey jockey nom s 1.69 8.24 1.37 6.82 +jockeys jockey nom p 1.69 8.24 0.33 1.42 +jocko jocko adj m s 0.17 0.00 0.17 0.00 +jocrisse jocrisse nom m s 0.02 0.27 0.00 0.20 +jocrisses jocrisse nom m p 0.02 0.27 0.02 0.07 +jodhpurs jodhpur nom m p 0.04 0.07 0.04 0.07 +jodler jodler ver 0.23 0.00 0.23 0.00 inf; +jogger jogger nom m s 0.34 0.07 0.25 0.07 +joggers jogger nom m p 0.34 0.07 0.09 0.00 +joggeur joggeur nom m s 0.26 0.00 0.07 0.00 +joggeurs joggeur nom m p 0.26 0.00 0.16 0.00 +joggeuse joggeur nom f s 0.26 0.00 0.03 0.00 +jogging jogging nom m s 2.21 1.28 2.20 1.22 +joggings jogging nom m p 2.21 1.28 0.01 0.07 +johannisberg johannisberg nom m s 0.00 0.07 0.00 0.07 +joice joice adj s 0.01 0.95 0.01 0.81 +joices joice adj p 0.01 0.95 0.00 0.14 +joie joie nom f s 75.09 150.20 71.07 134.12 +joies joie nom f p 75.09 150.20 4.03 16.08 +joignîmes joindre ver 46.37 32.70 0.00 0.07 ind:pas:1p; +joignable joignable adj m s 0.60 0.07 0.60 0.07 +joignaient joindre ver 46.37 32.70 0.10 1.28 ind:imp:3p; +joignais joindre ver 46.37 32.70 0.07 0.20 ind:imp:1s;ind:imp:2s; +joignait joindre ver 46.37 32.70 0.22 1.89 ind:imp:3s; +joignant joindre ver 46.37 32.70 0.45 2.03 par:pre; +joigne joindre ver 46.37 32.70 0.72 0.20 sub:pre:1s;sub:pre:3s; +joignent joindre ver 46.37 32.70 0.69 0.61 ind:pre:3p; +joignes joindre ver 46.37 32.70 0.19 0.00 sub:pre:2s; +joignez joindre ver 46.37 32.70 2.71 0.20 imp:pre:2p;ind:pre:2p; +joigniez joindre ver 46.37 32.70 0.28 0.00 ind:imp:2p; +joignions joindre ver 46.37 32.70 0.15 0.07 ind:imp:1p; +joignirent joindre ver 46.37 32.70 0.01 0.68 ind:pas:3p; +joignis joindre ver 46.37 32.70 0.00 0.27 ind:pas:1s; +joignissent joindre ver 46.37 32.70 0.00 0.07 sub:imp:3p; +joignit joindre ver 46.37 32.70 0.07 2.77 ind:pas:3s; +joignons joindre ver 46.37 32.70 0.46 0.14 imp:pre:1p;ind:pre:1p; +joindra joindre ver 46.37 32.70 0.38 0.14 ind:fut:3s; +joindrai joindre ver 46.37 32.70 0.11 0.00 ind:fut:1s; +joindraient joindre ver 46.37 32.70 0.01 0.14 cnd:pre:3p; +joindrais joindre ver 46.37 32.70 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +joindrait joindre ver 46.37 32.70 0.02 0.07 cnd:pre:3s; +joindras joindre ver 46.37 32.70 0.07 0.00 ind:fut:2s; +joindre joindre ver 46.37 32.70 32.91 14.19 inf;; +joindrez joindre ver 46.37 32.70 0.26 0.00 ind:fut:2p; +joindriez joindre ver 46.37 32.70 0.12 0.00 cnd:pre:2p; +joindrons joindre ver 46.37 32.70 0.01 0.00 ind:fut:1p; +joindront joindre ver 46.37 32.70 0.37 0.07 ind:fut:3p; +joins joindre ver 46.37 32.70 3.00 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +joint_venture joint_venture nom f s 0.16 0.00 0.16 0.00 +joint joint nom m s 8.38 6.62 5.78 4.53 +jointe joint adj f s 2.80 15.00 0.43 2.09 +jointes joint adj f p 2.80 15.00 0.60 7.64 +jointif jointif adj m s 0.02 0.27 0.00 0.14 +jointifs jointif adj m p 0.02 0.27 0.01 0.07 +jointives jointif adj f p 0.02 0.27 0.01 0.07 +jointoyaient jointoyer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +joints joint nom m p 8.38 6.62 2.61 2.09 +jointée jointé adj f s 0.00 0.07 0.00 0.07 +jointure jointure nom f s 0.52 4.05 0.22 1.28 +jointures jointure nom f p 0.52 4.05 0.29 2.77 +jointés jointer ver m p 0.01 0.07 0.00 0.07 par:pas; +jojo jojo adj s 1.40 1.15 1.37 1.08 +jojoba jojoba nom m s 0.03 0.00 0.03 0.00 +jojos jojo adj m p 1.40 1.15 0.03 0.07 +jokari jokari nom m s 0.00 0.07 0.00 0.07 +joker joker nom m s 3.54 0.14 3.44 0.14 +jokers joker nom m p 3.54 0.14 0.10 0.00 +joli_coeur joli_coeur adj m s 0.01 0.00 0.01 0.00 +joli_joli joli_joli adj m s 0.26 0.41 0.26 0.41 +joli joli adj m s 226.45 120.00 94.55 44.53 +jolibois jolibois nom m 0.00 0.14 0.00 0.14 +jolie joli adj f s 226.45 120.00 101.54 51.76 +jolies joli adj f p 226.45 120.00 20.99 15.68 +joliesse joliesse nom f s 0.03 0.54 0.02 0.41 +joliesses joliesse nom f p 0.03 0.54 0.01 0.14 +joliet joliet adj m s 0.01 0.14 0.01 0.00 +joliette joliet adj f s 0.01 0.14 0.00 0.14 +joliment joliment adv 2.19 5.41 2.19 5.41 +jolis joli adj m p 226.45 120.00 9.37 8.04 +jonc jonc nom m s 0.24 7.09 0.19 1.89 +joncaille joncaille nom f s 0.00 0.41 0.00 0.41 +jonchaie jonchaie nom f s 0.00 0.20 0.00 0.14 +jonchaient joncher ver 0.67 9.39 0.01 2.30 ind:imp:3p; +jonchaies jonchaie nom f p 0.00 0.20 0.00 0.07 +jonchait joncher ver 0.67 9.39 0.01 0.07 ind:imp:3s; +jonchant joncher ver 0.67 9.39 0.01 0.95 par:pre; +jonchent joncher ver 0.67 9.39 0.20 1.01 ind:pre:3p; +joncher joncher ver 0.67 9.39 0.11 0.07 inf; +joncheraies joncheraie nom f p 0.00 0.07 0.00 0.07 +jonchet jonchet nom m s 0.00 0.95 0.00 0.27 +jonchets jonchet nom m p 0.00 0.95 0.00 0.68 +jonchère jonchère nom f s 0.00 0.14 0.00 0.14 +jonché joncher ver m s 0.67 9.39 0.09 2.77 par:pas; +jonchée joncher ver f s 0.67 9.39 0.22 1.28 par:pas; +jonchées joncher ver f p 0.67 9.39 0.02 0.41 par:pas; +jonchés joncher ver m p 0.67 9.39 0.01 0.54 par:pas; +joncs jonc nom m p 0.24 7.09 0.05 5.20 +jonction jonction nom f s 0.60 1.96 0.50 1.89 +jonctions jonction nom f p 0.60 1.96 0.10 0.07 +jonglage jonglage nom m s 0.03 0.00 0.03 0.00 +jonglaient jongler ver 2.13 3.85 0.00 0.14 ind:imp:3p; +jonglais jongler ver 2.13 3.85 0.04 0.20 ind:imp:1s;ind:imp:2s; +jonglait jongler ver 2.13 3.85 0.04 0.47 ind:imp:3s; +jonglant jongler ver 2.13 3.85 0.05 0.61 par:pre; +jongle jongler ver 2.13 3.85 0.54 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jonglent jongler ver 2.13 3.85 0.03 0.07 ind:pre:3p; +jongler jongler ver 2.13 3.85 0.83 1.82 inf; +jonglera jongler ver 2.13 3.85 0.03 0.00 ind:fut:3s; +jonglerie jonglerie nom f s 0.02 0.20 0.02 0.14 +jongleries jonglerie nom f p 0.02 0.20 0.00 0.07 +jongles jongler ver 2.13 3.85 0.20 0.00 ind:pre:2s; +jongleur jongleur nom m s 0.58 2.23 0.46 0.74 +jongleurs jongleur nom m p 0.58 2.23 0.12 1.22 +jongleuse jongleur nom f s 0.58 2.23 0.00 0.14 +jongleuses jongleur nom f p 0.58 2.23 0.00 0.14 +jonglez jongler ver 2.13 3.85 0.20 0.00 imp:pre:2p;ind:pre:2p; +jonglé jongler ver m s 2.13 3.85 0.16 0.14 par:pas; +jonkheer jonkheer nom m s 0.34 0.00 0.34 0.00 +jonque jonque nom f s 0.34 1.42 0.33 0.74 +jonques jonque nom f p 0.34 1.42 0.02 0.68 +jonquille jonquille nom f s 0.39 0.81 0.04 0.07 +jonquilles jonquille nom f p 0.39 0.81 0.35 0.74 +jordanienne jordanien adj f s 0.01 0.07 0.01 0.00 +jordaniens jordanien nom m p 0.03 0.00 0.03 0.00 +jordonner jordonner ver 0.00 0.07 0.00 0.07 inf; +joseph joseph nom m s 0.17 1.08 0.17 1.08 +joua jouer ver 570.12 337.23 0.80 5.61 ind:pas:3s; +jouable jouable adj m s 0.46 0.07 0.46 0.07 +jouai jouer ver 570.12 337.23 0.13 1.01 ind:pas:1s; +jouaient jouer ver 570.12 337.23 3.86 20.00 ind:imp:3p; +jouais jouer ver 570.12 337.23 12.89 5.95 ind:imp:1s;ind:imp:2s; +jouait jouer ver 570.12 337.23 21.59 49.93 ind:imp:3s; +jouant jouer ver 570.12 337.23 5.66 19.19 par:pre; +jouasse jouasse adj m s 0.02 1.22 0.02 1.01 +jouasses jouasse adj p 0.02 1.22 0.00 0.20 +joubarbe joubarbe nom f s 0.00 0.07 0.00 0.07 +joue jouer ver 570.12 337.23 122.88 40.47 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +jouent jouer ver 570.12 337.23 16.41 14.59 ind:pre:3p; +jouer jouer ver 570.12 337.23 225.84 121.82 inf;; +jouera jouer ver 570.12 337.23 5.56 1.89 ind:fut:3s; +jouerai jouer ver 570.12 337.23 4.22 0.41 ind:fut:1s; +joueraient jouer ver 570.12 337.23 0.24 0.41 cnd:pre:3p; +jouerais jouer ver 570.12 337.23 1.54 0.47 cnd:pre:1s;cnd:pre:2s; +jouerait jouer ver 570.12 337.23 1.24 3.04 cnd:pre:3s; +joueras jouer ver 570.12 337.23 2.30 0.47 ind:fut:2s; +jouerez jouer ver 570.12 337.23 0.98 0.34 ind:fut:2p; +joueriez jouer ver 570.12 337.23 0.22 0.07 cnd:pre:2p; +jouerions jouer ver 570.12 337.23 0.01 0.07 cnd:pre:1p; +jouerons jouer ver 570.12 337.23 0.54 0.41 ind:fut:1p; +joueront jouer ver 570.12 337.23 0.74 0.47 ind:fut:3p; +joues jouer ver 570.12 337.23 33.70 2.50 ind:pre:2s;sub:pre:2s; +jouet jouet nom m s 25.50 21.01 11.82 7.03 +jouets jouet nom m p 25.50 21.01 13.68 13.99 +joueur joueur nom m s 28.32 19.86 17.22 9.05 +joueurs joueur nom m p 28.32 19.86 9.95 9.53 +joueuse joueur nom f s 28.32 19.86 1.15 0.74 +joueuses joueuse nom f p 0.14 0.00 0.14 0.00 +jouez jouer ver 570.12 337.23 24.66 3.18 imp:pre:2p;ind:pre:2p; +joufflu joufflu nom m s 0.47 0.20 0.46 0.20 +joufflue joufflu adj f s 0.31 2.36 0.16 0.34 +joufflues joufflu adj f p 0.31 2.36 0.01 0.20 +joufflus joufflu adj m p 0.31 2.36 0.02 0.41 +joug joug nom m s 2.48 2.50 2.47 2.36 +jougs joug nom m p 2.48 2.50 0.01 0.14 +joui jouir ver m s 22.06 39.19 3.33 3.65 par:pas; +jouiez jouer ver 570.12 337.23 2.11 0.41 ind:imp:2p; +jouions jouer ver 570.12 337.23 1.44 1.42 ind:imp:1p; +jouir jouir ver 22.06 39.19 10.42 15.68 inf; +jouira jouir ver 22.06 39.19 0.32 0.34 ind:fut:3s; +jouirai jouir ver 22.06 39.19 0.02 0.07 ind:fut:1s; +jouiraient jouir ver 22.06 39.19 0.01 0.07 cnd:pre:3p; +jouirait jouir ver 22.06 39.19 0.00 0.14 cnd:pre:3s; +jouiras jouir ver 22.06 39.19 0.07 0.07 ind:fut:2s; +jouirent jouir ver 22.06 39.19 0.00 0.14 ind:pas:3p; +jouirions jouir ver 22.06 39.19 0.00 0.07 cnd:pre:1p; +jouirons jouir ver 22.06 39.19 0.02 0.07 ind:fut:1p; +jouis jouir ver m p 22.06 39.19 2.65 1.76 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +jouissaient jouir ver 22.06 39.19 0.14 1.28 ind:imp:3p; +jouissais jouir ver 22.06 39.19 0.21 1.49 ind:imp:1s;ind:imp:2s; +jouissait jouir ver 22.06 39.19 0.33 5.61 ind:imp:3s; +jouissance jouissance nom f s 1.96 14.19 1.82 12.36 +jouissances jouissance nom f p 1.96 14.19 0.14 1.82 +jouissant jouir ver 22.06 39.19 0.05 1.42 par:pre; +jouissants jouissant adj m p 0.00 0.07 0.00 0.07 +jouisse jouir ver 22.06 39.19 0.33 0.54 sub:pre:1s;sub:pre:3s; +jouissent jouir ver 22.06 39.19 0.69 1.22 ind:pre:3p; +jouisses jouir ver 22.06 39.19 0.34 0.07 sub:pre:2s; +jouisseur jouisseur adj m s 0.01 0.68 0.01 0.41 +jouisseurs jouisseur nom m p 0.01 0.81 0.00 0.34 +jouisseuse jouisseur nom f s 0.01 0.81 0.01 0.07 +jouissez jouir ver 22.06 39.19 0.28 0.41 imp:pre:2p;ind:pre:2p; +jouissif jouissif adj m s 0.16 1.15 0.14 0.74 +jouissifs jouissif adj m p 0.16 1.15 0.00 0.14 +jouissions jouir ver 22.06 39.19 0.04 0.41 ind:imp:1p; +jouissive jouissif adj f s 0.16 1.15 0.01 0.14 +jouissives jouissif adj f p 0.16 1.15 0.00 0.14 +jouissons jouir ver 22.06 39.19 0.82 0.41 imp:pre:1p;ind:pre:1p; +jouit jouir ver 22.06 39.19 1.99 4.32 ind:pre:3s;ind:pas:3s; +joujou joujou nom m s 1.63 1.49 1.63 1.49 +joujoux joujoux nom m p 0.82 0.88 0.82 0.88 +joules joule nom m p 0.22 0.07 0.22 0.07 +jouâmes jouer ver 570.12 337.23 0.01 0.34 ind:pas:1p; +jouons jouer ver 570.12 337.23 7.81 2.57 imp:pre:1p;ind:pre:1p; +jouât jouer ver 570.12 337.23 0.00 0.81 sub:imp:3s; +jour jour nom m s 1061.92 1341.76 635.22 826.35 +journal journal nom m s 110.80 197.70 72.50 124.32 +journaleuse journaleux nom f s 0.12 0.74 0.00 0.14 +journaleux journaleux nom m 0.12 0.74 0.12 0.61 +journalier journalier adj m s 1.02 2.16 0.52 0.88 +journaliers journalier adj m p 1.02 2.16 0.18 0.20 +journalisme journalisme nom m s 3.25 3.51 3.25 3.51 +journaliste journaliste nom s 35.29 30.34 24.26 15.95 +journalistes journaliste nom p 35.29 30.34 11.03 14.39 +journalistique journalistique adj s 0.63 0.68 0.57 0.34 +journalistiques journalistique adj p 0.63 0.68 0.07 0.34 +journalière journalier adj f s 1.02 2.16 0.30 0.68 +journalières journalière nom f p 0.10 0.00 0.10 0.00 +journaux journal nom m p 110.80 197.70 38.30 73.38 +journellement journellement adv 0.15 0.88 0.15 0.88 +journée journée nom f s 174.89 179.39 165.35 140.74 +journées journée nom f p 174.89 179.39 9.54 38.65 +jours jour nom m p 1061.92 1341.76 426.70 515.41 +joute joute nom f s 1.25 2.03 0.97 1.08 +jouter jouter ver 0.10 0.00 0.06 0.00 inf; +joutes joute nom f p 1.25 2.03 0.28 0.95 +jouteur jouteur nom m s 0.00 0.20 0.00 0.07 +jouteurs jouteur nom m p 0.00 0.20 0.00 0.07 +jouteuse jouteur nom f s 0.00 0.20 0.00 0.07 +joutez jouter ver 0.10 0.00 0.03 0.00 imp:pre:2p;ind:pre:2p; +jouèrent jouer ver 570.12 337.23 0.18 1.89 ind:pas:3p; +jouté jouter ver m s 0.10 0.00 0.01 0.00 par:pas; +joué jouer ver m s 570.12 337.23 69.83 33.58 par:pas;par:pas;par:pas; +jouée jouer ver f s 570.12 337.23 2.01 2.91 par:pas; +jouées jouer ver f p 570.12 337.23 0.27 0.47 par:pas; +joués jouer ver m p 570.12 337.23 0.45 0.54 par:pas; +jouvence jouvence nom f s 0.81 1.35 0.81 1.35 +jouvenceau jouvenceau nom m s 0.28 0.74 0.08 0.27 +jouvenceaux jouvenceau nom m p 0.28 0.74 0.02 0.14 +jouvencelle jouvenceau nom f s 0.28 0.74 0.18 0.14 +jouvencelles jouvenceau nom f p 0.28 0.74 0.00 0.20 +jouxtaient jouxter ver 0.07 2.23 0.00 0.20 ind:imp:3p; +jouxtait jouxter ver 0.07 2.23 0.02 1.28 ind:imp:3s; +jouxtant jouxter ver 0.07 2.23 0.00 0.68 par:pre; +jouxte jouxte pre 0.05 0.07 0.05 0.07 +jovial jovial adj m s 0.61 6.22 0.48 4.46 +joviale jovial adj f s 0.61 6.22 0.12 1.49 +jovialement jovialement adv 0.00 0.54 0.00 0.54 +joviales jovial adj f p 0.61 6.22 0.00 0.14 +jovialité jovialité nom f s 0.04 1.28 0.04 1.28 +joviaux jovial adj m p 0.61 6.22 0.01 0.14 +joyau joyau nom m s 3.60 3.24 2.67 1.96 +joyaux joyau nom m p 3.60 3.24 0.93 1.28 +joyciennes joycien adj f p 0.00 0.07 0.00 0.07 +joyeuse joyeux adj f s 39.89 45.61 6.07 14.86 +joyeusement joyeusement adv 1.14 9.39 1.14 9.39 +joyeuses joyeux adj f p 39.89 45.61 2.01 4.05 +joyeuseté joyeuseté nom f s 0.01 0.34 0.00 0.20 +joyeusetés joyeuseté nom f p 0.01 0.34 0.01 0.14 +joyeux joyeux adj m 39.89 45.61 31.81 26.69 +joystick joystick nom m s 0.11 0.00 0.11 0.00 +jèze jèze adj m s 0.00 0.07 0.00 0.07 +jèzes jèze nom p 0.00 0.07 0.00 0.07 +juan juan nom m s 0.01 0.20 0.01 0.20 +jubila jubiler ver 1.20 5.07 0.01 0.34 ind:pas:3s; +jubilai jubiler ver 1.20 5.07 0.00 0.14 ind:pas:1s; +jubilaient jubiler ver 1.20 5.07 0.00 0.07 ind:imp:3p; +jubilaire jubilaire adj s 0.40 0.07 0.40 0.07 +jubilais jubiler ver 1.20 5.07 0.04 0.41 ind:imp:1s;ind:imp:2s; +jubilait jubiler ver 1.20 5.07 0.05 1.76 ind:imp:3s; +jubilant jubilant adj m s 0.02 0.88 0.02 0.14 +jubilante jubilant adj f s 0.02 0.88 0.00 0.41 +jubilantes jubilant adj f p 0.02 0.88 0.00 0.07 +jubilants jubilant adj m p 0.02 0.88 0.00 0.27 +jubilation jubilation nom f s 0.32 6.55 0.32 6.42 +jubilations jubilation nom f p 0.32 6.55 0.00 0.14 +jubilatoire jubilatoire adj s 0.02 0.20 0.02 0.14 +jubilatoires jubilatoire adj m p 0.02 0.20 0.00 0.07 +jubile jubiler ver 1.20 5.07 0.38 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jubilent jubiler ver 1.20 5.07 0.03 0.07 ind:pre:3p; +jubiler jubiler ver 1.20 5.07 0.40 0.61 inf; +jubilera jubiler ver 1.20 5.07 0.00 0.07 ind:fut:3s; +jubileraient jubiler ver 1.20 5.07 0.00 0.07 cnd:pre:3p; +jubiles jubiler ver 1.20 5.07 0.10 0.07 ind:pre:2s; +jubilèrent jubiler ver 1.20 5.07 0.00 0.07 ind:pas:3p; +jubilé jubilé nom m s 0.33 0.41 0.33 0.41 +jubilée jubiler ver f s 1.20 5.07 0.08 0.00 par:pas; +jubé jubé nom m s 0.00 0.20 0.00 0.20 +jucha jucher ver 0.24 10.61 0.00 0.47 ind:pas:3s; +juchai jucher ver 0.24 10.61 0.00 0.07 ind:pas:1s; +juchaient jucher ver 0.24 10.61 0.00 0.14 ind:imp:3p; +juchais jucher ver 0.24 10.61 0.00 0.14 ind:imp:1s; +juchait jucher ver 0.24 10.61 0.00 0.41 ind:imp:3s; +juchant jucher ver 0.24 10.61 0.00 0.14 par:pre; +juche jucher ver 0.24 10.61 0.00 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +juchent jucher ver 0.24 10.61 0.00 0.20 ind:pre:3p; +jucher jucher ver 0.24 10.61 0.00 0.54 inf; +jucheront jucher ver 0.24 10.61 0.00 0.07 ind:fut:3p; +juchions jucher ver 0.24 10.61 0.00 0.07 ind:imp:1p; +juché jucher ver m s 0.24 10.61 0.17 5.00 par:pas; +juchée jucher ver f s 0.24 10.61 0.04 0.74 par:pas; +juchées jucher ver f p 0.24 10.61 0.00 0.74 par:pas; +juchés jucher ver m p 0.24 10.61 0.03 1.55 par:pas; +judaïcité judaïcité nom f s 0.01 0.00 0.01 0.00 +judaïque judaïque adj f s 0.06 0.14 0.06 0.07 +judaïques judaïque adj m p 0.06 0.14 0.00 0.07 +judaïsant judaïsant nom m s 0.00 0.07 0.00 0.07 +judaïser judaïser ver 0.00 0.14 0.00 0.07 inf; +judaïsme judaïsme nom m s 0.51 1.15 0.51 1.15 +judaïsées judaïser ver f p 0.00 0.14 0.00 0.07 par:pas; +judaïté judaïté nom f s 0.00 0.07 0.00 0.07 +judas judas nom m 1.28 1.76 1.28 1.76 +judiciaire judiciaire adj s 10.80 5.61 9.29 4.26 +judiciaires judiciaire adj p 10.80 5.61 1.51 1.35 +judicieuse judicieux adj f s 2.36 2.16 0.51 0.74 +judicieusement judicieusement adv 0.17 0.61 0.17 0.61 +judicieuses judicieux adj f p 2.36 2.16 0.13 0.07 +judicieux judicieux adj m 2.36 2.16 1.72 1.35 +judo judo nom m s 0.90 1.22 0.90 1.22 +judoka judoka nom s 0.21 0.20 0.21 0.20 +judéen judéen adj m s 0.07 0.00 0.07 0.00 +judéenne judéenne nom f s 0.01 0.14 0.01 0.14 +judéité judéité nom f s 0.02 0.00 0.02 0.00 +judéo_christianisme judéo_christianisme nom m s 0.01 0.00 0.01 0.00 +judéo_chrétien judéo_chrétien adj f s 0.06 0.20 0.04 0.07 +judéo_chrétien judéo_chrétien adj f p 0.06 0.20 0.01 0.07 +judéo_chrétien judéo_chrétien adj m p 0.06 0.20 0.00 0.07 +judéo judéo adv 0.01 0.20 0.01 0.20 +juge juge nom m s 66.45 44.46 56.40 29.80 +jugea juger ver 56.12 96.96 0.42 5.34 ind:pas:3s; +jugeai juger ver 56.12 96.96 0.01 1.49 ind:pas:1s; +jugeaient juger ver 56.12 96.96 0.05 2.70 ind:imp:3p; +jugeais juger ver 56.12 96.96 0.34 2.91 ind:imp:1s;ind:imp:2s; +jugeait juger ver 56.12 96.96 0.40 12.64 ind:imp:3s; +jugeant juger ver 56.12 96.96 0.24 3.72 par:pre; +jugement jugement nom m s 21.43 29.26 19.92 24.12 +jugements jugement nom m p 21.43 29.26 1.51 5.14 +jugent juger ver 56.12 96.96 1.06 1.55 ind:pre:3p; +jugeâmes juger ver 56.12 96.96 0.00 0.14 ind:pas:1p; +jugeons juger ver 56.12 96.96 0.98 0.41 imp:pre:1p;ind:pre:1p; +jugeât juger ver 56.12 96.96 0.00 0.54 sub:imp:3s; +jugeote jugeote nom f s 1.07 1.01 1.07 1.01 +juger juger ver 56.12 96.96 18.06 28.65 ind:pre:2p;inf; +jugera juger ver 56.12 96.96 1.42 1.49 ind:fut:3s; +jugerai juger ver 56.12 96.96 0.72 0.00 ind:fut:1s; +jugeraient juger ver 56.12 96.96 0.05 0.07 cnd:pre:3p; +jugerais juger ver 56.12 96.96 0.09 0.07 cnd:pre:1s; +jugerait juger ver 56.12 96.96 0.08 0.81 cnd:pre:3s; +jugeras juger ver 56.12 96.96 0.39 0.27 ind:fut:2s; +jugerez juger ver 56.12 96.96 0.81 0.88 ind:fut:2p; +jugeriez juger ver 56.12 96.96 0.05 0.41 cnd:pre:2p; +jugerons juger ver 56.12 96.96 0.22 0.07 ind:fut:1p; +jugeront juger ver 56.12 96.96 0.23 0.54 ind:fut:3p; +juges juge nom m p 66.45 44.46 10.06 14.66 +jugeur jugeur nom m s 0.01 0.00 0.01 0.00 +jugez juger ver 56.12 96.96 4.25 1.62 imp:pre:2p;ind:pre:2p; +jugiez juger ver 56.12 96.96 0.13 0.34 ind:imp:2p; +jugions juger ver 56.12 96.96 0.02 0.54 ind:imp:1p; +jugèrent juger ver 56.12 96.96 0.03 0.68 ind:pas:3p; +jugé juger ver m s 56.12 96.96 9.18 11.62 par:pas; +jugée juger ver f s 56.12 96.96 2.01 2.70 par:pas; +jugées juger ver f p 56.12 96.96 0.11 0.95 par:pas; +jugula juguler ver 0.39 0.61 0.00 0.14 ind:pas:3s; +jugulaire jugulaire nom f s 0.60 1.96 0.53 1.89 +jugulaires jugulaire nom f p 0.60 1.96 0.07 0.07 +jugulant juguler ver 0.39 0.61 0.00 0.07 par:pre; +jugule juguler ver 0.39 0.61 0.13 0.00 ind:pre:3s; +juguler juguler ver 0.39 0.61 0.21 0.27 inf; +jugulé juguler ver m s 0.39 0.61 0.05 0.00 par:pas; +jugulée juguler ver f s 0.39 0.61 0.00 0.14 par:pas; +jugés juger ver m p 56.12 96.96 1.88 1.89 par:pas; +juif juif adj m s 30.62 36.76 17.23 19.86 +juifs juif nom m p 45.08 55.74 29.03 30.88 +juillet juillet nom m 11.97 47.57 11.96 47.57 +juillets juillet nom m p 11.97 47.57 0.01 0.00 +juin juin nom m 13.40 51.28 13.40 51.28 +juive juif adj f s 30.62 36.76 8.43 8.99 +juiverie juiverie nom f s 0.10 0.61 0.10 0.47 +juiveries juiverie nom f p 0.10 0.61 0.00 0.14 +juives juif adj f p 30.62 36.76 0.54 1.35 +jujube jujube nom m s 0.06 0.54 0.02 0.54 +jujubes jujube nom m p 0.06 0.54 0.04 0.00 +jujubiers jujubier nom m p 0.00 0.27 0.00 0.27 +jéjunale jéjunal adj f s 0.01 0.00 0.01 0.00 +jéjunum jéjunum nom m s 0.04 0.00 0.04 0.00 +juke_box juke_box nom m 1.61 1.89 1.58 1.69 +juke_box juke_box nom m p 1.61 1.89 0.03 0.20 +julep julep nom m s 0.02 0.41 0.02 0.27 +juleps julep nom m p 0.02 0.41 0.00 0.14 +jules jules nom m 4.13 3.51 4.13 3.51 +julien julien adj m s 0.47 2.84 0.47 1.76 +julienne julien nom f s 0.04 0.68 0.04 0.68 +juliennes julien adj f p 0.47 2.84 0.00 0.07 +julot julot nom m s 0.12 2.36 0.12 1.76 +julots julot nom m p 0.12 2.36 0.00 0.61 +jumbo jumbo nom m s 0.52 0.20 0.52 0.20 +jumeau jumeau adj m s 5.68 8.99 1.34 2.09 +jumeaux jumeau nom m p 13.74 17.77 12.47 16.01 +jumelage jumelage nom m s 0.01 0.07 0.01 0.07 +jumeler jumeler ver 0.17 0.54 0.00 0.07 inf; +jumelle jumeau adj f s 5.68 8.99 1.17 2.36 +jumellera jumeler ver 0.17 0.54 0.00 0.07 ind:fut:3s; +jumelles jumelle nom f p 5.61 14.66 4.89 12.70 +jumelé jumeler ver m s 0.17 0.54 0.00 0.14 par:pas; +jumelée jumeler ver f s 0.17 0.54 0.00 0.07 par:pas; +jumelée jumelé adj f s 0.03 0.54 0.00 0.07 +jumelées jumeler ver f p 0.17 0.54 0.02 0.07 par:pas; +jumelés jumelé adj m p 0.03 0.54 0.02 0.20 +jument jument nom f s 6.67 10.34 5.71 8.51 +jumenterie jumenterie nom f s 0.00 0.07 0.00 0.07 +juments jument nom f p 6.67 10.34 0.96 1.82 +jumper jumper nom m s 2.26 0.00 2.26 0.00 +jumping jumping nom m s 0.21 0.00 0.21 0.00 +jungien jungien adj m s 0.04 0.14 0.03 0.07 +jungiens jungien adj m p 0.04 0.14 0.01 0.07 +jungle jungle nom f s 16.47 8.38 16.25 7.43 +jungles jungle nom f p 16.47 8.38 0.22 0.95 +junior junior adj s 2.35 1.22 2.27 0.95 +juniors junior nom p 2.05 0.54 0.35 0.41 +junker junker nom m s 0.02 0.54 0.02 0.41 +junkers junker nom m p 0.02 0.54 0.00 0.14 +junkie junkie nom m s 5.15 1.42 3.22 0.81 +junkies junkie nom m p 5.15 1.42 1.93 0.61 +junky junky nom m s 0.15 0.07 0.15 0.07 +junte junte nom f s 0.17 0.14 0.17 0.14 +jupe_culotte jupe_culotte nom f s 0.02 0.34 0.02 0.27 +jupe jupe nom f s 12.76 49.59 10.12 34.05 +jupe_culotte jupe_culotte nom m p 0.02 0.34 0.00 0.07 +jupes jupe nom f p 12.76 49.59 2.64 15.54 +jupette jupette nom f s 0.66 1.55 0.63 1.42 +jupettes jupette nom f p 0.66 1.55 0.04 0.14 +jupiers jupier nom m p 0.00 0.07 0.00 0.07 +jupitérien jupitérien adj m s 0.02 0.34 0.02 0.14 +jupitérienne jupitérien adj f s 0.02 0.34 0.00 0.14 +jupitériens jupitérien adj m p 0.02 0.34 0.00 0.07 +jupon jupon nom m s 3.00 6.89 1.35 2.77 +juponnée juponner ver f s 0.00 0.27 0.00 0.14 par:pas; +juponnés juponner ver m p 0.00 0.27 0.00 0.14 par:pas; +jupons jupon nom m p 3.00 6.89 1.65 4.12 +jupée jupé adj f s 0.00 0.14 0.00 0.07 +jupées jupé adj f p 0.00 0.14 0.00 0.07 +jura jurer ver 148.40 81.76 0.20 5.54 ind:pas:3s; +jurai jurer ver 148.40 81.76 0.16 0.41 ind:pas:1s; +juraient jurer ver 148.40 81.76 0.17 1.62 ind:imp:3p; +jurais jurer ver 148.40 81.76 0.34 1.22 ind:imp:1s;ind:imp:2s; +jurait jurer ver 148.40 81.76 1.06 4.46 ind:imp:3s; +jurant jurer ver 148.40 81.76 0.58 4.93 par:pre; +jurançon jurançon nom m s 0.00 0.07 0.00 0.07 +jurassien jurassien adj m s 0.00 0.14 0.00 0.07 +jurassien jurassien nom m s 0.00 0.14 0.00 0.07 +jurassiens jurassien adj m p 0.00 0.14 0.00 0.07 +jurassiens jurassien nom m p 0.00 0.14 0.00 0.07 +jurassique jurassique adj m s 0.29 0.00 0.28 0.00 +jurassiques jurassique adj f p 0.29 0.00 0.01 0.00 +jure jurer ver 148.40 81.76 104.04 31.62 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +jurent jurer ver 148.40 81.76 1.01 1.01 ind:pre:3p; +jurer jurer ver 148.40 81.76 7.57 7.57 inf; +jurera jurer ver 148.40 81.76 0.08 0.00 ind:fut:3s; +jurerai jurer ver 148.40 81.76 0.72 0.07 ind:fut:1s; +jurerais jurer ver 148.40 81.76 1.62 1.69 cnd:pre:1s;cnd:pre:2s; +jurerait jurer ver 148.40 81.76 0.38 2.16 cnd:pre:3s; +jureras jurer ver 148.40 81.76 0.16 0.07 ind:fut:2s; +jurerez jurer ver 148.40 81.76 0.05 0.00 ind:fut:2p; +jureriez jurer ver 148.40 81.76 0.05 0.14 cnd:pre:2p; +jureront jurer ver 148.40 81.76 0.04 0.07 ind:fut:3p; +jures jurer ver 148.40 81.76 4.75 1.01 ind:pre:2s; +jurez jurer ver 148.40 81.76 6.55 0.47 imp:pre:2p;ind:pre:2p; +juridiction juridiction nom f s 2.63 1.49 2.53 1.15 +juridictionnel juridictionnel adj m s 0.04 0.00 0.01 0.00 +juridictionnelle juridictionnel adj f s 0.04 0.00 0.04 0.00 +juridictions juridiction nom f p 2.63 1.49 0.09 0.34 +juridique juridique adj s 5.20 2.50 4.24 1.62 +juridiquement juridiquement adv 0.14 0.27 0.14 0.27 +juridiques juridique adj p 5.20 2.50 0.95 0.88 +juriez jurer ver 148.40 81.76 0.13 0.00 ind:imp:2p; +jurisprudence jurisprudence nom f s 0.82 0.34 0.82 0.34 +juriste juriste nom s 2.57 0.88 1.95 0.34 +juristes juriste nom p 2.57 0.88 0.62 0.54 +jéroboam jéroboam nom m s 0.01 0.07 0.01 0.00 +jéroboams jéroboam nom m p 0.01 0.07 0.00 0.07 +jurâmes jurer ver 148.40 81.76 0.00 0.07 ind:pas:1p; +juron juron nom m s 2.10 9.93 0.42 3.31 +jurons juron nom m p 2.10 9.93 1.68 6.62 +jurèrent jurer ver 148.40 81.76 0.02 0.54 ind:pas:3p; +juré jurer ver m s 148.40 81.76 17.59 16.69 par:pas; +jurée jurer ver f s 148.40 81.76 0.45 0.14 par:pas; +jurées jurer ver f p 148.40 81.76 0.01 0.00 par:pas; +jérémiade jérémiade nom f s 0.93 1.89 0.14 0.14 +jérémiades jérémiade nom f p 0.93 1.89 0.79 1.76 +jurés juré nom m p 8.82 4.73 5.59 3.92 +jury jury nom m s 18.80 5.27 18.65 5.14 +jurys jury nom m p 18.80 5.27 0.15 0.14 +jus jus nom m 22.36 23.04 22.36 23.04 +jusant jusant nom m s 0.01 1.76 0.01 1.76 +jusqu_au jusqu_au pre 0.34 0.07 0.34 0.07 +jusqu_à jusqu_à pre 0.81 0.27 0.81 0.27 +jusqu jusqu pre 2.26 0.07 2.26 0.07 +jusque_là jusque_là adv 7.81 29.53 7.81 29.53 +jusque jusque pre 15.05 37.50 15.05 37.50 +jusques jusques adv 0.00 1.15 0.00 1.15 +jusquiame jusquiame nom f s 0.11 0.07 0.11 0.07 +justaucorps justaucorps nom m 0.22 0.61 0.22 0.61 +juste_milieu juste_milieu nom m 0.00 0.07 0.00 0.07 +juste juste adj_sup s 656.86 153.45 653.49 147.77 +justement justement adv 62.08 78.18 62.08 78.18 +justes juste adj_sup p 656.86 153.45 3.36 5.68 +justesse justesse nom f s 1.91 8.58 1.91 8.58 +justice justice nom s 50.96 46.28 50.96 46.22 +justices justice nom f p 50.96 46.28 0.00 0.07 +justiciable justiciable adj m s 0.10 0.47 0.10 0.27 +justiciables justiciable adj p 0.10 0.47 0.00 0.20 +justicier justicier nom m s 1.97 3.78 1.45 1.96 +justiciers justicier nom m p 1.97 3.78 0.48 1.35 +justicière justicier nom f s 1.97 3.78 0.03 0.47 +justifia justifier ver 15.55 36.01 0.00 0.27 ind:pas:3s; +justifiable justifiable adj m s 0.08 0.34 0.06 0.14 +justifiables justifiable adj f p 0.08 0.34 0.02 0.20 +justifiaient justifier ver 15.55 36.01 0.00 1.28 ind:imp:3p; +justifiais justifier ver 15.55 36.01 0.01 0.20 ind:imp:1s;ind:imp:2s; +justifiait justifier ver 15.55 36.01 0.17 4.53 ind:imp:3s; +justifiant justifier ver 15.55 36.01 0.07 0.68 par:pre; +justificatif justificatif nom m s 0.49 0.20 0.26 0.20 +justificatifs justificatif nom m p 0.49 0.20 0.23 0.00 +justification justification nom f s 0.96 6.76 0.84 5.00 +justifications justification nom f p 0.96 6.76 0.13 1.76 +justificative justificatif adj f s 0.02 0.34 0.01 0.20 +justificatives justificatif adj f p 0.02 0.34 0.00 0.14 +justifie justifier ver 15.55 36.01 3.94 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +justifient justifier ver 15.55 36.01 0.42 0.68 ind:pre:3p; +justifier justifier ver 15.55 36.01 7.37 14.93 inf; +justifiera justifier ver 15.55 36.01 0.08 0.27 ind:fut:3s; +justifierai justifier ver 15.55 36.01 0.04 0.07 ind:fut:1s; +justifieraient justifier ver 15.55 36.01 0.01 0.14 cnd:pre:3p; +justifierais justifier ver 15.55 36.01 0.01 0.07 cnd:pre:1s; +justifierait justifier ver 15.55 36.01 0.20 0.61 cnd:pre:3s; +justifiez justifier ver 15.55 36.01 0.52 0.14 imp:pre:2p;ind:pre:2p; +justifiât justifier ver 15.55 36.01 0.00 0.47 sub:imp:3s; +justifié justifier ver m s 15.55 36.01 1.38 2.91 par:pas; +justifiée justifier ver f s 15.55 36.01 0.84 2.36 par:pas; +justifiées justifier ver f p 15.55 36.01 0.27 0.68 par:pas; +justifiés justifier ver m p 15.55 36.01 0.23 1.01 par:pas; +justinien justinien adj m s 0.00 0.07 0.00 0.07 +jésuite jésuite nom m s 1.54 5.07 0.61 2.09 +jésuites jésuite nom m p 1.54 5.07 0.92 2.97 +jésuitique jésuitique adj s 0.02 0.41 0.02 0.34 +jésuitiques jésuitique adj m p 0.02 0.41 0.00 0.07 +jésuitière jésuitière nom f s 0.00 0.07 0.00 0.07 +jésus jésus nom m s 8.19 0.88 8.19 0.88 +juta juter ver 0.03 0.95 0.00 0.07 ind:pas:3s; +jutait juter ver 0.03 0.95 0.00 0.14 ind:imp:3s; +jute jute nom m s 0.64 2.77 0.64 2.77 +juter juter ver 0.03 0.95 0.03 0.61 inf; +juteuse juteux adj f s 2.86 2.64 0.75 1.01 +juteuses juteux adj f p 2.86 2.64 0.53 0.47 +juteux juteux adj m 2.86 2.64 1.58 1.15 +juté juter ver m s 0.03 0.95 0.00 0.14 par:pas; +juvénile juvénile adj s 1.48 6.89 1.24 5.27 +juvéniles juvénile adj p 1.48 6.89 0.23 1.62 +juvénilité juvénilité nom f s 0.00 0.20 0.00 0.20 +juxtaposaient juxtaposer ver 0.07 0.95 0.00 0.07 ind:imp:3p; +juxtaposais juxtaposer ver 0.07 0.95 0.00 0.07 ind:imp:1s; +juxtaposait juxtaposer ver 0.07 0.95 0.01 0.07 ind:imp:3s; +juxtaposant juxtaposer ver 0.07 0.95 0.02 0.00 par:pre; +juxtapose juxtaposer ver 0.07 0.95 0.03 0.07 ind:pre:1s;ind:pre:3s; +juxtaposent juxtaposer ver 0.07 0.95 0.00 0.14 ind:pre:3p; +juxtaposer juxtaposer ver 0.07 0.95 0.00 0.20 inf; +juxtaposition juxtaposition nom f s 0.17 0.68 0.17 0.54 +juxtapositions juxtaposition nom f p 0.17 0.68 0.00 0.14 +juxtaposèrent juxtaposer ver 0.07 0.95 0.00 0.07 ind:pas:3p; +juxtaposées juxtaposé adj f p 0.00 0.68 0.00 0.47 +juxtaposés juxtaposer ver m p 0.07 0.95 0.00 0.20 par:pas; +k_o k_o adj 0.02 0.07 0.02 0.07 +k_way k_way nom m s 0.06 0.20 0.06 0.20 +k k nom m 9.93 3.78 9.93 3.78 +ka ka nom m s 0.29 0.07 0.29 0.07 +kabarde kabarde adj f s 0.00 0.07 0.00 0.07 +kabbale kabbale nom f s 0.20 0.47 0.20 0.47 +kabbalistique kabbalistique adj s 0.00 0.07 0.00 0.07 +kabuki kabuki nom m s 0.42 0.14 0.42 0.14 +kabyle kabyle adj s 0.01 1.01 0.01 0.61 +kabyles kabyle adj p 0.01 1.01 0.00 0.41 +kacha kacha nom f s 0.00 0.34 0.00 0.34 +kacher kacher adj m s 0.02 0.14 0.02 0.14 +kachoube kachoube adj 0.10 0.00 0.10 0.00 +kaddisch kaddisch nom m s 0.00 0.07 0.00 0.07 +kaddish kaddish nom m s 0.20 0.00 0.20 0.00 +kadi kadi nom m s 0.11 0.00 0.11 0.00 +kafir kafir nom m s 0.05 0.00 0.05 0.00 +kafkaïen kafkaïen adj m s 0.02 0.07 0.02 0.07 +kaftan kaftan adj m s 0.04 0.00 0.02 0.00 +kaftans kaftan adj m p 0.04 0.00 0.01 0.00 +kaiser kaiser nom m s 0.02 0.14 0.02 0.14 +kaki kaki adj 0.46 5.34 0.46 5.34 +kakis kaki nom m p 0.68 1.15 0.29 0.27 +kala_azar kala_azar nom m s 0.00 0.07 0.00 0.07 +kalachnikovs kalachnikov nom f p 0.17 0.00 0.17 0.00 +kali kali nom m s 0.19 0.00 0.19 0.00 +kaliémie kaliémie nom f s 0.01 0.00 0.01 0.00 +kalmouk kalmouk adj m s 0.00 0.14 0.00 0.07 +kalmouks kalmouk adj m p 0.00 0.14 0.00 0.07 +kalpa kalpa nom m s 0.01 0.07 0.01 0.07 +kaléidoscope kaléidoscope nom m s 0.21 1.42 0.18 1.22 +kaléidoscopes kaléidoscope nom m p 0.21 1.42 0.04 0.20 +kama kama nom s 0.14 0.00 0.14 0.00 +kamala kamala nom m s 0.07 0.00 0.07 0.00 +kami kami nom m s 0.20 0.07 0.20 0.07 +kamikaze kamikaze nom m s 1.26 2.09 0.73 1.01 +kamikazes kamikaze nom m p 1.26 2.09 0.53 1.08 +kan kan nom m s 0.12 0.27 0.12 0.27 +kana kana nom m s 0.12 0.07 0.12 0.07 +kandjar kandjar nom m s 0.00 0.07 0.00 0.07 +kangourou kangourou nom m s 1.85 1.42 1.42 1.15 +kangourous kangourou nom m p 1.85 1.42 0.42 0.27 +kanji kanji nom m s 0.04 0.00 0.04 0.00 +kantien kantien adj m s 0.01 0.07 0.01 0.07 +kantisme kantisme nom m s 0.00 0.20 0.00 0.20 +kaolin kaolin nom m s 0.01 0.34 0.01 0.34 +kaori kaori nom m s 0.01 0.00 0.01 0.00 +kapo kapo nom m s 0.29 0.34 0.29 0.14 +kapok kapok nom m s 0.04 0.34 0.04 0.34 +kapokier kapokier nom m s 0.01 0.00 0.01 0.00 +kapos kapo nom m p 0.29 0.34 0.00 0.20 +kaposi kaposi nom m s 0.09 0.20 0.09 0.20 +kapout kapout nom m s 0.01 0.20 0.01 0.20 +kappa kappa nom m s 0.17 0.00 0.17 0.00 +karaoké karaoké nom m s 0.99 0.00 0.97 0.00 +karaokés karaoké nom m p 0.99 0.00 0.02 0.00 +karaté karaté nom m s 2.64 0.95 2.64 0.95 +karatéka karatéka nom s 0.20 0.14 0.20 0.07 +karatékas karatéka nom p 0.20 0.14 0.00 0.07 +karen karen adj s 0.43 0.00 0.43 0.00 +kari kari nom m s 0.19 0.07 0.19 0.07 +karité karité nom m s 0.01 0.14 0.01 0.14 +karma karma nom m s 10.73 0.14 10.73 0.14 +karmique karmique adj s 0.16 0.00 0.16 0.00 +kart kart nom m s 0.30 0.00 0.30 0.00 +karting karting nom m s 0.34 0.00 0.34 0.00 +kasbah kasbah nom f 0.00 0.27 0.00 0.27 +kascher kascher adj s 0.13 0.27 0.13 0.27 +kasher kasher adj 0.63 0.41 0.63 0.41 +kastro kastro nom m s 0.00 0.54 0.00 0.47 +kastros kastro nom m p 0.00 0.54 0.00 0.07 +kata kata nom m s 0.02 0.00 0.01 0.00 +katal katal nom m s 0.01 0.00 0.01 0.00 +katangais katangais nom m 0.10 0.14 0.10 0.14 +katas kata nom m p 0.02 0.00 0.01 0.00 +katchinas katchina nom m p 0.00 0.07 0.00 0.07 +katiba katiba nom f s 0.00 0.07 0.00 0.07 +kava kava nom m s 0.01 0.00 0.01 0.00 +kawa kawa nom m s 0.00 3.11 0.00 3.11 +kayac kayac nom m s 0.01 0.00 0.01 0.00 +kayak kayak nom m s 0.34 0.14 0.34 0.14 +kayakiste kayakiste nom s 0.01 0.00 0.01 0.00 +kazakh kazakh adj m s 0.33 0.07 0.13 0.00 +kazakhs kazakh adj m p 0.33 0.07 0.20 0.07 +kebab kebab nom m s 0.78 0.07 0.55 0.07 +kebabs kebab nom m p 0.78 0.07 0.23 0.00 +kebla kebla adj s 0.00 0.14 0.00 0.07 +keblas kebla adj f p 0.00 0.14 0.00 0.07 +keepsake keepsake nom m s 0.05 0.00 0.05 0.00 +keffieh keffieh nom m s 0.01 0.00 0.01 0.00 +keiretsu keiretsu nom m s 0.07 0.00 0.07 0.00 +kekchose kekchose nom f s 0.01 0.07 0.01 0.07 +kelvins kelvin nom m p 0.03 0.00 0.03 0.00 +kendo kendo nom m s 0.24 0.00 0.24 0.00 +kermesse kermesse nom f s 0.96 2.77 0.93 2.30 +kermesses kermesse nom f p 0.96 2.77 0.04 0.47 +kerrie kerrie nom f s 0.04 0.00 0.04 0.00 +ket ket nom m s 0.07 0.07 0.07 0.07 +ketch ketch nom m s 0.11 0.07 0.11 0.07 +ketchup ketchup nom m s 4.45 0.54 4.45 0.54 +keuf keuf nom f s 2.83 0.88 1.00 0.00 +keufs keuf nom f p 2.83 0.88 1.83 0.88 +keum keum nom m s 0.35 0.20 0.27 0.20 +keums keum nom m p 0.35 0.20 0.08 0.00 +kevlar kevlar nom m s 0.26 0.00 0.26 0.00 +khôl khôl nom m s 0.00 0.81 0.00 0.81 +khalife khalife nom m s 0.02 0.27 0.02 0.27 +khamsin khamsin nom m s 0.00 0.20 0.00 0.20 +khan khan nom m s 0.30 6.55 0.21 1.49 +khanat khanat nom m s 0.00 0.07 0.00 0.07 +khans khan nom m p 0.30 6.55 0.10 5.07 +khat khat nom m s 0.01 0.00 0.01 0.00 +khazar khazar adj s 0.00 0.14 0.00 0.14 +khmer khmer adj m s 0.28 0.00 0.27 0.00 +khmère khmer adj f s 0.28 0.00 0.01 0.00 +khâgne khâgne nom f s 0.00 1.55 0.00 1.42 +khâgnes khâgne nom f p 0.00 1.55 0.00 0.14 +khâgneux khâgneux nom m 0.00 0.34 0.00 0.34 +khédival khédival adj m s 0.00 0.07 0.00 0.07 +khédive khédive nom m s 0.03 0.88 0.03 0.88 +kibboutz kibboutz nom m 1.85 0.27 1.85 0.27 +kibboutzim kibboutzim nom m p 0.00 0.07 0.00 0.07 +kick kick nom m s 0.47 0.34 0.42 0.34 +kicker kicker nom m s 0.14 0.00 0.14 0.00 +kicks kick nom m p 0.47 0.34 0.05 0.00 +kid kid nom m s 6.62 7.36 5.71 6.82 +kidnappa kidnapper ver 15.21 1.08 0.00 0.07 ind:pas:3s; +kidnappait kidnapper ver 15.21 1.08 0.04 0.07 ind:imp:3s; +kidnappant kidnapper ver 15.21 1.08 0.04 0.00 par:pre; +kidnappe kidnapper ver 15.21 1.08 0.69 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +kidnappent kidnapper ver 15.21 1.08 0.15 0.00 ind:pre:3p; +kidnapper kidnapper ver 15.21 1.08 2.54 0.20 inf; +kidnapperai kidnapper ver 15.21 1.08 0.14 0.00 ind:fut:1s; +kidnapperaient kidnapper ver 15.21 1.08 0.11 0.00 cnd:pre:3p; +kidnapperas kidnapper ver 15.21 1.08 0.01 0.00 ind:fut:2s; +kidnapperez kidnapper ver 15.21 1.08 0.02 0.00 ind:fut:2p; +kidnappeur kidnappeur nom m s 3.55 0.27 2.20 0.07 +kidnappeurs kidnappeur nom m p 3.55 0.27 1.35 0.20 +kidnappez kidnapper ver 15.21 1.08 0.10 0.00 imp:pre:2p;ind:pre:2p; +kidnappiez kidnapper ver 15.21 1.08 0.03 0.00 ind:imp:2p; +kidnapping kidnapping nom m s 5.58 0.54 5.33 0.54 +kidnappings kidnapping nom m p 5.58 0.54 0.25 0.00 +kidnappons kidnapper ver 15.21 1.08 0.01 0.00 imp:pre:1p; +kidnappé kidnapper ver m s 15.21 1.08 6.66 0.20 par:pas; +kidnappée kidnapper ver f s 15.21 1.08 3.65 0.20 par:pas; +kidnappées kidnapper ver f p 15.21 1.08 0.28 0.14 par:pas; +kidnappés kidnapper ver m p 15.21 1.08 0.75 0.07 par:pas; +kids kid nom m p 6.62 7.36 0.91 0.54 +kief kief nom m s 0.02 0.00 0.02 0.00 +kierkegaardienne kierkegaardien nom f s 0.00 0.07 0.00 0.07 +kif_kif kif_kif adj s 0.20 0.81 0.20 0.81 +kif kif nom m s 1.25 2.77 1.25 2.77 +kiki kiki nom m s 0.53 0.74 0.53 0.74 +kil kil nom m s 0.17 0.54 0.16 0.34 +kilbus kilbus nom m 0.00 0.27 0.00 0.27 +kilim kilim nom m s 0.28 0.00 0.28 0.00 +killer killer nom s 1.19 0.07 1.19 0.07 +kilo kilo nom m s 22.54 24.19 5.19 5.27 +kilogramme kilogramme nom m s 0.17 0.14 0.14 0.07 +kilogrammes kilogramme nom m p 0.17 0.14 0.03 0.07 +kilohertz kilohertz nom m 0.14 0.00 0.14 0.00 +kilomètre kilomètre nom m s 24.80 62.23 3.73 6.28 +kilomètre_heure kilomètre_heure nom m p 0.14 0.41 0.14 0.41 +kilomètres kilomètre nom m p 24.80 62.23 21.07 55.95 +kilométrage kilométrage nom m s 0.50 0.27 0.49 0.14 +kilométrages kilométrage nom m p 0.50 0.27 0.01 0.14 +kilométrique kilométrique adj s 0.04 0.68 0.04 0.34 +kilométriques kilométrique adj f p 0.04 0.68 0.00 0.34 +kilos kilo nom m p 22.54 24.19 17.35 18.92 +kilotonnes kilotonne nom m p 0.10 0.14 0.10 0.14 +kilowattheure kilowattheure nom m s 0.00 0.07 0.00 0.07 +kilowatts kilowatt nom m p 0.00 0.34 0.00 0.34 +kils kil nom m p 0.17 0.54 0.01 0.20 +kilt kilt nom m s 0.55 0.68 0.50 0.68 +kilts kilt nom m p 0.55 0.68 0.05 0.00 +kimono kimono nom m s 2.11 2.43 1.84 1.89 +kimonos kimono nom m p 2.11 2.43 0.27 0.54 +kinase kinase nom f s 0.03 0.00 0.03 0.00 +kinescope kinescope nom m s 0.01 0.00 0.01 0.00 +kinesthésie kinesthésie nom f s 0.01 0.00 0.01 0.00 +king_charles king_charles nom m 0.00 0.07 0.00 0.07 +kinnor kinnor nom m s 0.00 0.07 0.00 0.07 +kino kino nom m s 0.00 0.07 0.00 0.07 +kiné kiné nom s 1.28 0.00 1.28 0.00 +kinésiques kinésique nom f p 0.01 0.00 0.01 0.00 +kinésithérapeute kinésithérapeute nom s 0.05 0.20 0.05 0.20 +kinésithérapie kinésithérapie nom f s 0.07 0.00 0.07 0.00 +kiosk kiosk nom m s 0.00 1.82 0.00 1.55 +kiosks kiosk nom m p 0.00 1.82 0.00 0.27 +kiosque kiosque nom m s 4.05 8.18 3.95 5.88 +kiosques kiosque nom m p 4.05 8.18 0.10 2.30 +kip kip nom m s 0.63 0.00 0.62 0.00 +kipa kipa nom f s 0.01 1.89 0.01 1.89 +kippa kippa nom f s 0.52 0.07 0.52 0.07 +kipper kipper nom m s 0.04 0.07 0.04 0.00 +kippers kipper nom m p 0.04 0.07 0.00 0.07 +kips kip nom m p 0.63 0.00 0.01 0.00 +kir kir nom m s 0.63 1.28 0.62 0.95 +kirghiz kirghiz nom m 0.00 0.20 0.00 0.20 +kirghize kirghize nom s 0.14 0.00 0.14 0.00 +kirghizes kirghize adj f p 0.00 0.14 0.00 0.07 +kirs kir nom m p 0.63 1.28 0.01 0.34 +kirsch kirsch nom m s 0.56 1.22 0.56 1.22 +kit kit nom m s 7.33 0.34 6.99 0.34 +kitch kitch adj f s 0.17 0.00 0.17 0.00 +kitchenette kitchenette nom f s 0.19 0.27 0.19 0.27 +kits kit nom m p 7.33 0.34 0.34 0.00 +kitsch kitsch adj 0.23 0.68 0.23 0.68 +kiva kiva nom f s 0.03 0.00 0.03 0.00 +kiwi kiwi nom m s 0.00 0.14 0.00 0.07 +kiwis kiwi nom m p 0.00 0.14 0.00 0.07 +klaxon klaxon nom m s 5.55 5.74 4.89 3.24 +klaxonna klaxonner ver 4.29 3.24 0.03 0.27 ind:pas:3s; +klaxonnai klaxonner ver 4.29 3.24 0.00 0.14 ind:pas:1s; +klaxonnaient klaxonner ver 4.29 3.24 0.02 0.14 ind:imp:3p; +klaxonnais klaxonner ver 4.29 3.24 0.04 0.00 ind:imp:1s; +klaxonnait klaxonner ver 4.29 3.24 0.05 0.27 ind:imp:3s; +klaxonnant klaxonner ver 4.29 3.24 0.00 0.68 par:pre; +klaxonne klaxonner ver 4.29 3.24 2.26 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +klaxonnent klaxonner ver 4.29 3.24 0.07 0.14 ind:pre:3p; +klaxonner klaxonner ver 4.29 3.24 0.75 0.61 inf; +klaxonnera klaxonner ver 4.29 3.24 0.01 0.07 ind:fut:3s; +klaxonnerai klaxonner ver 4.29 3.24 0.26 0.00 ind:fut:1s; +klaxonnes klaxonner ver 4.29 3.24 0.23 0.00 ind:pre:2s; +klaxonnez klaxonner ver 4.29 3.24 0.39 0.07 imp:pre:2p;ind:pre:2p; +klaxonné klaxonner ver m s 4.29 3.24 0.19 0.41 par:pas; +klaxons klaxon nom m p 5.55 5.74 0.66 2.50 +klebs klebs nom m 0.01 0.00 0.01 0.00 +kleenex kleenex nom m 1.35 2.91 1.35 2.91 +kleptomane kleptomane nom s 0.16 0.00 0.14 0.00 +kleptomanes kleptomane nom p 0.16 0.00 0.02 0.00 +kleptomanie kleptomanie nom f s 0.02 0.00 0.02 0.00 +klystron klystron nom m s 0.12 0.00 0.12 0.00 +km km adv 0.01 0.00 0.01 0.00 +knickerbockers knickerbocker nom m p 0.01 0.07 0.01 0.07 +knickers knicker nom m p 0.03 0.07 0.03 0.07 +knock_out knock_out adj m s 0.19 0.20 0.19 0.20 +knout knout nom m s 0.00 0.20 0.00 0.20 +koala koala nom m s 0.19 0.14 0.15 0.14 +koalas koala nom m p 0.19 0.14 0.04 0.00 +kobold kobold nom m s 0.37 0.07 0.22 0.07 +kobolds kobold nom m p 0.37 0.07 0.15 0.00 +kodak kodak nom m s 0.01 0.47 0.01 0.47 +kodiak kodiak nom m s 0.31 0.00 0.31 0.00 +kohl kohl nom m s 0.00 0.14 0.00 0.14 +kola kola nom m s 0.02 0.20 0.02 0.20 +kolatiers kolatier nom m p 0.00 0.20 0.00 0.20 +kolkhoze kolkhoze nom m s 1.11 0.41 1.11 0.41 +kolkhozien kolkhozien nom m s 0.20 0.68 0.00 0.07 +kolkhozienne kolkhozien nom f s 0.20 0.68 0.10 0.20 +kolkhoziennes kolkhozien nom f p 0.20 0.68 0.00 0.14 +kolkhoziens kolkhozien nom m p 0.20 0.68 0.10 0.27 +komi komi adj s 0.03 0.00 0.03 0.00 +komintern komintern nom m s 0.01 0.54 0.01 0.54 +kommandantur kommandantur nom f s 0.27 0.68 0.27 0.68 +kommando kommando nom m s 0.28 0.14 0.28 0.14 +komsomol komsomol nom m s 0.25 0.81 0.25 0.54 +komsomols komsomol nom m p 0.25 0.81 0.00 0.27 +kondo kondo nom m s 0.12 0.00 0.12 0.00 +kopeck kopeck nom m s 1.52 0.61 1.30 0.47 +kopecks kopeck nom m p 1.52 0.61 0.22 0.14 +kopeks kopek nom m p 0.14 0.00 0.14 0.00 +kora kora nom f s 0.01 0.00 0.01 0.00 +koran koran nom m s 0.00 0.14 0.00 0.14 +korrigan korrigan nom m s 0.03 0.20 0.01 0.07 +korrigans korrigan nom m p 0.03 0.20 0.02 0.14 +korè korè nom f s 0.00 0.07 0.00 0.07 +koré koré nom f s 0.00 0.34 0.00 0.34 +kosovar kosovar nom m s 0.01 0.00 0.01 0.00 +kot kot nom m s 0.33 0.00 0.33 0.00 +koto koto nom m s 0.02 0.07 0.02 0.07 +kouglof kouglof nom m s 0.02 0.14 0.02 0.14 +koulak koulak nom m s 0.11 0.47 0.00 0.27 +koulaks koulak nom m p 0.11 0.47 0.11 0.20 +kouros kouros nom m 0.00 0.27 0.00 0.27 +kraal kraal nom m s 0.03 0.00 0.03 0.00 +krach krach nom m s 0.15 0.41 0.15 0.34 +krachs krach nom m p 0.15 0.41 0.00 0.07 +kraft kraft nom m s 0.80 0.95 0.80 0.95 +krak krak nom m s 0.01 0.00 0.01 0.00 +kraken kraken nom m s 0.14 0.00 0.14 0.00 +kremlin kremlin nom m s 0.00 0.07 0.00 0.07 +kreutzer kreutzer nom m s 0.00 0.07 0.00 0.07 +kriegspiel kriegspiel nom m s 0.00 0.14 0.00 0.14 +krill krill nom m s 0.17 0.00 0.17 0.00 +kriss kriss nom m 0.09 0.00 0.09 0.00 +kroumir kroumir nom m s 0.01 0.27 0.01 0.20 +kroumirs kroumir nom m p 0.01 0.27 0.00 0.07 +krypton krypton nom m s 1.04 0.00 1.04 0.00 +ksar ksar nom m s 0.00 0.07 0.00 0.07 +kébour kébour nom m s 0.00 0.41 0.00 0.34 +kébours kébour nom m p 0.00 0.41 0.00 0.07 +kéfir kéfir nom m s 0.00 0.27 0.00 0.20 +kéfirs kéfir nom m p 0.00 0.27 0.00 0.07 +kugelhof kugelhof nom m s 0.04 0.07 0.04 0.07 +kula kula nom f s 0.01 0.07 0.01 0.07 +kummel kummel nom m s 0.01 0.34 0.01 0.34 +kumquat kumquat nom m s 0.16 0.07 0.13 0.00 +kumquats kumquat nom m p 0.16 0.07 0.03 0.07 +kung_fu kung_fu nom m s 1.12 0.00 1.01 0.00 +kung_fu kung_fu nom m s 1.12 0.00 0.10 0.00 +kényan kényan adj m s 0.02 0.00 0.02 0.00 +képi képi nom m s 2.39 15.81 1.85 12.91 +képis képi nom m p 2.39 15.81 0.55 2.91 +kérabau kérabau nom m s 0.10 0.00 0.10 0.00 +kératinisée kératinisé adj f s 0.01 0.00 0.01 0.00 +kératoplastie kératoplastie nom f s 0.01 0.00 0.01 0.00 +kératose kératose nom f s 0.01 0.00 0.01 0.00 +kurde kurde adj s 0.17 0.20 0.16 0.07 +kurdes kurde adj p 0.17 0.20 0.01 0.14 +kérosène kérosène nom m s 0.91 0.20 0.91 0.14 +kérosènes kérosène nom m p 0.91 0.20 0.00 0.07 +kursaal kursaal nom m s 0.20 0.07 0.20 0.07 +kurus kuru nom m p 0.00 0.07 0.00 0.07 +kvas kvas nom m 0.20 0.00 0.20 0.00 +kyrie_eleison kyrie_eleison nom m 0.41 0.07 0.41 0.07 +kyrie kyrie nom m 0.00 0.54 0.00 0.54 +kyrielle kyrielle nom f s 0.03 1.42 0.03 1.22 +kyrielles kyrielle nom f p 0.03 1.42 0.00 0.20 +kyste kyste nom m s 0.57 0.20 0.51 0.07 +kystes kyste nom m p 0.57 0.20 0.06 0.14 +kystique kystique adj f s 0.03 0.00 0.03 0.00 +l l art_def m s 8129.41 12746.76 8129.41 12746.76 +l_un l_un pro_ind 127.72 208.92 127.72 208.92 +l_une l_une pro_ind f 36.12 93.58 36.12 93.58 +l_dopa l_dopa nom f s 0.05 0.00 0.05 0.00 +lûmes lire ver 281.09 324.80 0.01 0.20 ind:pas:1p; +lût lire ver 281.09 324.80 0.00 0.47 sub:imp:3s; +la_la_la la_la_la art_def f s 0.14 0.07 0.14 0.07 +la_plata la_plata nom s 0.01 0.14 0.01 0.14 +la_plupart_de la_plupart_de adj_ind 3.94 7.30 3.94 7.30 +la_plupart_des la_plupart_des adj_ind 23.41 29.26 23.41 29.26 +la_plupart_du la_plupart_du adj_ind 5.07 7.91 5.07 7.91 +la_plupart la_plupart pro_ind p 14.72 23.24 14.72 23.24 +la la art_def f s 14946.48 23633.92 14946.48 23633.92 +laîche laîche nom f s 0.06 0.07 0.06 0.00 +laîches laîche nom f p 0.06 0.07 0.00 0.07 +laïc laïc adj m s 0.33 0.88 0.33 0.74 +laïciser laïciser ver 0.14 0.00 0.14 0.00 inf; +laïcité laïcité nom f s 0.29 0.47 0.29 0.47 +laïcs laïc nom p 0.32 0.95 0.16 0.68 +laïque laïque adj s 0.58 3.45 0.43 2.43 +laïques laïque adj p 0.58 3.45 0.15 1.01 +laïus laïus nom m 1.78 1.08 1.78 1.08 +laïusse laïusser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +labbe labbe nom m s 0.00 0.14 0.00 0.07 +labbes labbe nom m p 0.00 0.14 0.00 0.07 +label label nom m s 1.59 0.54 1.30 0.47 +labelle labelle nom m s 0.09 0.00 0.09 0.00 +labels label nom m p 1.59 0.54 0.29 0.07 +labeur labeur nom m s 3.73 9.80 3.71 8.85 +labeurs labeur nom m p 3.73 9.80 0.03 0.95 +labial labial adj m s 0.02 0.41 0.00 0.27 +labiale labial adj f s 0.02 0.41 0.02 0.00 +labiales labial adj f p 0.02 0.41 0.00 0.07 +labialisant labialiser ver 0.00 0.07 0.00 0.07 par:pre; +labiaux labial adj m p 0.02 0.41 0.00 0.07 +labile labile adj s 0.01 0.27 0.01 0.27 +labo labo nom m s 29.95 1.42 28.36 1.22 +laborantin laborantin nom m s 0.12 0.27 0.09 0.07 +laborantine laborantin nom f s 0.12 0.27 0.02 0.07 +laborantins laborantin nom m p 0.12 0.27 0.01 0.14 +laboratoire laboratoire nom m s 14.74 13.99 13.24 12.91 +laboratoires laboratoire nom m p 14.74 13.99 1.51 1.08 +laborieuse laborieux adj f s 1.21 7.16 0.34 1.96 +laborieusement laborieusement adv 0.02 1.62 0.02 1.62 +laborieuses laborieux adj f p 1.21 7.16 0.28 1.89 +laborieux laborieux adj m 1.21 7.16 0.60 3.31 +labos labo nom m p 29.95 1.42 1.60 0.20 +labour labour nom m s 0.67 6.62 0.39 2.64 +laboura labourer ver 2.56 7.03 0.00 0.07 ind:pas:3s; +labourable labourable adj s 0.01 0.00 0.01 0.00 +labourage labourage nom m s 0.14 0.41 0.14 0.41 +labouraient labourer ver 2.56 7.03 0.01 0.41 ind:imp:3p; +labourais labourer ver 2.56 7.03 0.03 0.00 ind:imp:1s;ind:imp:2s; +labourait labourer ver 2.56 7.03 0.14 0.61 ind:imp:3s; +labourant labourer ver 2.56 7.03 0.03 0.54 par:pre; +laboure labourer ver 2.56 7.03 0.27 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +labourent labourer ver 2.56 7.03 0.13 0.20 ind:pre:3p; +labourer labourer ver 2.56 7.03 1.41 1.22 inf; +labourerait labourer ver 2.56 7.03 0.01 0.07 cnd:pre:3s; +laboureur laboureur nom m s 0.20 2.43 0.17 1.42 +laboureurs laboureur nom m p 0.20 2.43 0.02 1.01 +labours labour nom m p 0.67 6.62 0.28 3.99 +labouré labourer ver m s 2.56 7.03 0.47 1.15 par:pas; +labourée labourer ver f s 2.56 7.03 0.02 1.08 par:pas; +labourées labourer ver f p 2.56 7.03 0.02 0.47 par:pas; +labourés labourer ver m p 2.56 7.03 0.01 0.54 par:pas; +labrador labrador nom m s 0.36 0.34 0.30 0.27 +labradors labrador nom m p 0.36 0.34 0.06 0.07 +labre labre nom m s 0.00 0.20 0.00 0.07 +labres labre nom m p 0.00 0.20 0.00 0.14 +labri labri nom m s 0.02 0.00 0.01 0.00 +labris labri nom m p 0.02 0.00 0.01 0.00 +labyrinthe labyrinthe nom m s 5.05 8.31 4.90 7.03 +labyrinthes labyrinthe nom m p 5.05 8.31 0.15 1.28 +labyrinthique labyrinthique adj s 0.05 0.27 0.02 0.20 +labyrinthiques labyrinthique adj p 0.05 0.27 0.03 0.07 +lac lac nom m s 31.16 32.84 31.16 32.84 +lacandon lacandon adj s 0.00 0.07 0.00 0.07 +lacanien lacanien adj m s 0.01 0.07 0.01 0.07 +lacaniens lacanien nom m p 0.00 0.14 0.00 0.07 +lace lacer ver 0.81 2.23 0.15 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lacent lacer ver 0.81 2.23 0.00 0.07 ind:pre:3p; +lacer lacer ver 0.81 2.23 0.56 0.68 inf; +lacet lacet nom m s 4.40 13.78 0.83 5.27 +lacets lacet nom m p 4.40 13.78 3.57 8.51 +lacis lacis nom m 0.00 1.89 0.00 1.89 +lack lack nom m s 0.16 0.00 0.16 0.00 +laconique laconique adj s 0.08 2.43 0.06 1.55 +laconiquement laconiquement adv 0.01 0.61 0.01 0.61 +laconiques laconique adj p 0.08 2.43 0.02 0.88 +laconisme laconisme nom m s 0.01 0.47 0.01 0.47 +lacrima_christi lacrima_christi nom m 0.00 0.07 0.00 0.07 +lacryma_christi lacryma_christi nom m s 0.00 0.34 0.00 0.20 +lacryma_christi lacryma_christi nom m s 0.00 0.34 0.00 0.14 +lacrymal lacrymal adj m s 0.42 0.68 0.03 0.14 +lacrymale lacrymal adj f s 0.42 0.68 0.00 0.07 +lacrymales lacrymal adj f p 0.42 0.68 0.25 0.47 +lacrymaux lacrymal adj m p 0.42 0.68 0.14 0.00 +lacrymogène lacrymogène adj s 1.22 0.81 0.54 0.41 +lacrymogènes lacrymogène adj p 1.22 0.81 0.69 0.41 +lacs lacs nom m 3.60 8.58 3.60 8.58 +lactaires lactaire nom m p 0.00 0.20 0.00 0.20 +lactate lactate nom m s 0.06 0.00 0.06 0.00 +lactation lactation nom f s 0.05 0.00 0.05 0.00 +lactescent lactescent adj m s 0.00 0.14 0.00 0.07 +lactescente lactescent adj f s 0.00 0.14 0.00 0.07 +lacère lacérer ver 1.38 4.05 0.18 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lacèrent lacérer ver 1.38 4.05 0.14 0.20 ind:pre:3p; +lactifère lactifère adj f s 0.01 0.00 0.01 0.00 +lactique lactique adj s 0.12 0.00 0.12 0.00 +lactose lactose nom m s 0.69 0.00 0.69 0.00 +lacté lacté adj m s 0.85 1.69 0.10 0.20 +lactée lacté adj f s 0.85 1.69 0.75 1.42 +lactés lacté adj m p 0.85 1.69 0.00 0.07 +lacé lacer ver m s 0.81 2.23 0.04 0.07 par:pas; +lacédémoniens lacédémonien nom m p 0.00 0.07 0.00 0.07 +lacée lacer ver f s 0.81 2.23 0.00 0.07 par:pas; +lacées lacer ver f p 0.81 2.23 0.02 0.54 par:pas; +lacunaire lacunaire adj s 0.08 0.34 0.08 0.34 +lacune lacune nom f s 0.44 2.23 0.09 0.68 +lacunes lacune nom f p 0.44 2.23 0.35 1.55 +lacéra lacérer ver 1.38 4.05 0.00 0.20 ind:pas:3s; +lacéraient lacérer ver 1.38 4.05 0.00 0.14 ind:imp:3p; +lacérait lacérer ver 1.38 4.05 0.00 0.14 ind:imp:3s; +lacérant lacérer ver 1.38 4.05 0.15 0.41 par:pre; +lacération lacération nom f s 1.64 0.00 1.00 0.00 +lacérations lacération nom f p 1.64 0.00 0.64 0.00 +lacérer lacérer ver 1.38 4.05 0.34 1.01 inf; +lacérions lacérer ver 1.38 4.05 0.00 0.07 ind:imp:1p; +lacéré lacérer ver m s 1.38 4.05 0.26 0.68 par:pas; +lacérée lacérer ver f s 1.38 4.05 0.04 0.34 par:pas; +lacérées lacéré adj f p 0.10 1.22 0.02 0.34 +lacérés lacérer ver m p 1.38 4.05 0.26 0.27 par:pas; +lacés lacer ver m p 0.81 2.23 0.00 0.20 par:pas; +lacustre lacustre adj s 0.02 0.61 0.02 0.47 +lacustres lacustre adj m p 0.02 0.61 0.00 0.14 +lad lad nom m s 0.20 0.74 0.17 0.54 +ladies ladies nom f p 0.91 0.14 0.91 0.14 +ladino ladino nom m s 0.00 0.07 0.00 0.07 +ladite ladite adj f s 0.33 1.82 0.33 1.82 +ladre ladre nom s 0.01 0.27 0.01 0.20 +ladrerie ladrerie nom f s 0.00 0.20 0.00 0.14 +ladreries ladrerie nom f p 0.00 0.20 0.00 0.07 +ladres ladre nom p 0.01 0.27 0.00 0.07 +lads lad nom m p 0.20 0.74 0.03 0.20 +lady lady nom f s 13.48 3.24 13.47 3.24 +ladys lady nom f p 13.48 3.24 0.01 0.00 +lagan lagan nom m s 0.05 0.00 0.05 0.00 +lagon lagon nom m s 0.84 0.88 0.71 0.74 +lagons lagon nom m p 0.84 0.88 0.13 0.14 +laguiole laguiole nom m s 0.00 0.07 0.00 0.07 +lagunaire lagunaire adj m s 0.00 0.20 0.00 0.20 +lagune lagune nom f s 2.84 8.92 2.40 6.69 +lagunes lagune nom f p 2.84 8.92 0.44 2.23 +lai lai adj m s 1.05 0.14 1.04 0.14 +laid laid adj m s 18.54 26.82 9.52 10.41 +laide laid adj f s 18.54 26.82 6.23 9.73 +laidement laidement adv 0.00 0.47 0.00 0.47 +laideron laideron nom m s 0.47 0.68 0.26 0.20 +laiderons laideron nom m p 0.47 0.68 0.21 0.47 +laides laid adj f p 18.54 26.82 1.51 3.11 +laideur laideur nom f s 1.44 8.99 1.44 8.78 +laideurs laideur nom f p 1.44 8.99 0.00 0.20 +laids laid adj m p 18.54 26.82 1.28 3.58 +laie laie nom f s 0.01 1.76 0.01 1.62 +laies laie nom f p 0.01 1.76 0.00 0.14 +lainage lainage nom m s 0.17 4.59 0.01 2.50 +lainages lainage nom m p 0.17 4.59 0.16 2.09 +laine laine nom f s 6.41 37.03 6.27 34.86 +laines laine nom f p 6.41 37.03 0.14 2.16 +laineurs laineur nom m p 0.00 0.14 0.00 0.07 +laineuse laineux adj f s 0.06 1.89 0.00 0.47 +laineuses laineux adj f p 0.06 1.89 0.00 0.34 +laineux laineux adj m s 0.06 1.89 0.06 1.08 +lainier lainier adj m s 0.00 0.20 0.00 0.14 +lainière lainier adj f s 0.00 0.20 0.00 0.07 +laird laird nom m s 0.36 0.07 0.36 0.07 +lais lai adj m p 1.05 0.14 0.01 0.00 +laissa laisser ver 1334.05 851.55 2.52 67.97 ind:pas:3s; +laissai laisser ver 1334.05 851.55 0.41 8.11 ind:pas:1s; +laissaient laisser ver 1334.05 851.55 1.69 23.92 ind:imp:3p; +laissais laisser ver 1334.05 851.55 4.54 12.36 ind:imp:1s;ind:imp:2s; +laissait laisser ver 1334.05 851.55 7.78 82.77 ind:imp:3s; +laissant laisser ver 1334.05 851.55 10.80 58.51 par:pre; +laissassent laisser ver 1334.05 851.55 0.00 0.07 sub:imp:3p; +laisse_la_moi laisse_la_moi nom f s 0.14 0.00 0.14 0.00 +laisse laisser ver 1334.05 851.55 479.63 143.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +laissent laisser ver 1334.05 851.55 15.24 22.30 ind:pre:3p;sub:pre:3p; +laisser_aller laisser_aller nom m 0.75 3.38 0.75 3.38 +laisser_faire laisser_faire nom m 0.01 0.07 0.01 0.07 +laisser laisser ver 1334.05 851.55 243.08 192.03 inf;;inf;;inf;;inf;;inf;; +laissera laisser ver 1334.05 851.55 13.78 6.62 ind:fut:3s; +laisserai laisser ver 1334.05 851.55 28.33 5.81 ind:fut:1s; +laisseraient laisser ver 1334.05 851.55 1.23 2.09 cnd:pre:3p; +laisserais laisser ver 1334.05 851.55 7.47 2.64 cnd:pre:1s;cnd:pre:2s; +laisserait laisser ver 1334.05 851.55 5.18 8.72 cnd:pre:3s; +laisseras laisser ver 1334.05 851.55 3.19 0.74 ind:fut:2s; +laisserez laisser ver 1334.05 851.55 1.93 1.22 ind:fut:2p; +laisseriez laisser ver 1334.05 851.55 0.93 0.54 cnd:pre:2p; +laisserions laisser ver 1334.05 851.55 0.10 0.34 cnd:pre:1p; +laisserons laisser ver 1334.05 851.55 2.93 0.81 ind:fut:1p; +laisseront laisser ver 1334.05 851.55 5.74 2.50 ind:fut:3p; +laisses laisser ver 1334.05 851.55 36.40 5.00 ind:pre:2s;sub:pre:1p;sub:pre:2s; +laissez_faire laissez_faire nom m 0.01 0.00 0.01 0.00 +laissez_passer laissez_passer nom m 4.00 1.96 4.00 1.96 +laissez laisser ver 1334.05 851.55 265.61 31.42 imp:pre:2p;ind:pre:2p; +laissiez laisser ver 1334.05 851.55 2.39 0.95 ind:imp:2p;sub:pre:2p; +laissions laisser ver 1334.05 851.55 0.54 2.50 ind:imp:1p; +laissâmes laisser ver 1334.05 851.55 0.00 0.54 ind:pas:1p; +laissons laisser ver 1334.05 851.55 20.73 6.76 imp:pre:1p;ind:pre:1p; +laissât laisser ver 1334.05 851.55 0.01 2.97 sub:imp:3s; +laissèrent laisser ver 1334.05 851.55 0.42 4.73 ind:pas:3p; +laissé_pour_compte laissé_pour_compte nom m s 0.00 0.07 0.00 0.07 +laissé laisser ver m s 1334.05 851.55 139.96 117.57 par:pas;par:pas;par:pas;par:pas; +laissée laisser ver f s 1334.05 851.55 20.90 20.47 ind:imp:3p;par:pas; +laissées laisser ver f p 1334.05 851.55 3.47 6.01 par:pas; +laissés_pour_compte laissés_pour_compte nom m p 0.23 0.07 0.23 0.07 +laissés laisser ver m p 1334.05 851.55 7.12 9.26 par:pas; +lait lait nom m s 59.62 62.91 59.41 62.23 +laitage laitage nom m s 0.41 0.88 0.22 0.54 +laitages laitage nom m p 0.41 0.88 0.20 0.34 +laitance laitance nom f s 0.27 0.47 0.27 0.34 +laitances laitance nom f p 0.27 0.47 0.00 0.14 +laiterie laiterie nom f s 0.32 0.61 0.29 0.47 +laiteries laiterie nom f p 0.32 0.61 0.03 0.14 +laites laite nom f p 0.00 0.07 0.00 0.07 +laiteuse laiteux adj f s 0.32 10.41 0.10 4.86 +laiteuses laiteux adj f p 0.32 10.41 0.00 1.42 +laiteux laiteux adj m 0.32 10.41 0.22 4.12 +laitier laitier nom m s 1.29 2.43 1.18 1.49 +laitiers laitier adj m p 1.26 0.74 0.66 0.07 +laitière laitier adj f s 1.26 0.74 0.38 0.47 +laitières laitier adj f p 1.26 0.74 0.05 0.14 +laiton laiton nom m s 0.21 1.55 0.21 1.55 +laits lait nom m p 59.62 62.91 0.21 0.68 +laitue laitue nom f s 2.52 2.43 1.97 1.62 +laitues laitue nom f p 2.52 2.43 0.56 0.81 +laizes laize nom f p 0.00 0.14 0.00 0.14 +lala lala ono 0.66 0.07 0.66 0.07 +lama lama nom m s 2.13 0.74 1.23 0.47 +lamaïsme lamaïsme nom m s 0.00 0.07 0.00 0.07 +lamais lamer ver 0.01 0.20 0.00 0.07 ind:imp:1s; +lamantin lamantin nom m s 0.84 0.20 0.54 0.14 +lamantins lamantin nom m p 0.84 0.20 0.29 0.07 +lamartiniennes lamartinien nom f p 0.00 0.07 0.00 0.07 +lamas lama nom m p 2.13 0.74 0.90 0.27 +lambada lambada nom f s 0.13 0.00 0.13 0.00 +lambda lambda nom m s 0.74 0.07 0.72 0.00 +lambdas lambda nom m p 0.74 0.07 0.02 0.07 +lambeau lambeau nom m s 2.41 14.26 0.61 3.51 +lambeaux lambeau nom m p 2.41 14.26 1.80 10.74 +lambel lambel nom m s 0.01 0.00 0.01 0.00 +lambi lambi nom m s 0.00 0.07 0.00 0.07 +lambic lambic nom m s 0.00 0.07 0.00 0.07 +lambin lambin adj m s 0.04 0.14 0.02 0.14 +lambinaient lambiner ver 0.62 1.15 0.00 0.14 ind:imp:3p; +lambinais lambiner ver 0.62 1.15 0.00 0.07 ind:imp:1s; +lambinait lambiner ver 0.62 1.15 0.00 0.07 ind:imp:3s; +lambinant lambiner ver 0.62 1.15 0.00 0.07 par:pre; +lambine lambiner ver 0.62 1.15 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lambiner lambiner ver 0.62 1.15 0.22 0.54 inf; +lambines lambiner ver 0.62 1.15 0.02 0.00 ind:pre:2s; +lambinez lambiner ver 0.62 1.15 0.05 0.00 imp:pre:2p;ind:pre:2p; +lambiniez lambiner ver 0.62 1.15 0.01 0.00 ind:imp:2p; +lambinions lambiner ver 0.62 1.15 0.00 0.07 ind:imp:1p; +lambinons lambiner ver 0.62 1.15 0.01 0.07 imp:pre:1p; +lambins lambin nom m p 0.16 0.20 0.15 0.00 +lambiné lambiner ver m s 0.62 1.15 0.05 0.00 par:pas; +lambrequins lambrequin nom m p 0.00 0.20 0.00 0.20 +lambris lambris nom m 0.04 1.55 0.04 1.55 +lambrissage lambrissage nom m s 0.01 0.07 0.01 0.07 +lambrissé lambrisser ver m s 0.02 0.27 0.01 0.07 par:pas; +lambrissée lambrissé adj f s 0.00 0.41 0.00 0.20 +lambrissées lambrisser ver f p 0.02 0.27 0.01 0.00 par:pas; +lambrusques lambrusque nom f p 0.00 0.07 0.00 0.07 +lambswool lambswool nom m s 0.00 0.14 0.00 0.14 +lame lame nom f s 14.22 37.09 11.05 25.81 +lamedé lamedé nom f s 0.00 0.81 0.00 0.68 +lamedu lamedu nom m s 0.00 0.14 0.00 0.14 +lamedés lamedé nom f p 0.00 0.81 0.00 0.14 +lamelle lamelle nom f s 0.72 2.64 0.14 0.54 +lamelles lamelle nom f p 0.72 2.64 0.59 2.09 +lamellibranches lamellibranche nom m p 0.00 0.07 0.00 0.07 +lamelliforme lamelliforme adj m s 0.00 0.07 0.00 0.07 +lamenta lamenter ver 3.37 7.43 0.00 0.61 ind:pas:3s; +lamentable lamentable adj s 5.70 9.26 5.33 7.36 +lamentablement lamentablement adv 0.44 1.82 0.44 1.82 +lamentables lamentable adj p 5.70 9.26 0.37 1.89 +lamentaient lamenter ver 3.37 7.43 0.00 0.47 ind:imp:3p; +lamentais lamenter ver 3.37 7.43 0.02 0.00 ind:imp:1s;ind:imp:2s; +lamentait lamenter ver 3.37 7.43 0.20 2.09 ind:imp:3s; +lamentant lamenter ver 3.37 7.43 0.06 0.41 par:pre; +lamentation lamentation nom f s 1.35 4.80 0.47 0.95 +lamentations lamentation nom f p 1.35 4.80 0.89 3.85 +lamente lamenter ver 3.37 7.43 1.31 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lamentent lamenter ver 3.37 7.43 0.15 0.54 ind:pre:3p; +lamenter lamenter ver 3.37 7.43 1.20 1.55 ind:pre:2p;inf; +lamentera lamenter ver 3.37 7.43 0.14 0.07 ind:fut:3s; +lamenterait lamenter ver 3.37 7.43 0.01 0.07 cnd:pre:3s; +lamenteront lamenter ver 3.37 7.43 0.02 0.07 ind:fut:3p; +lamentez lamenter ver 3.37 7.43 0.03 0.07 imp:pre:2p;ind:pre:2p; +lamentions lamenter ver 3.37 7.43 0.00 0.07 ind:imp:1p; +lamento lamento nom m s 0.01 1.22 0.01 1.22 +lamentons lamenter ver 3.37 7.43 0.10 0.00 ind:pre:1p; +lamentèrent lamenter ver 3.37 7.43 0.00 0.07 ind:pas:3p; +lamenté lamenter ver m s 3.37 7.43 0.14 0.27 par:pas; +lamentés lamenter ver m p 3.37 7.43 0.00 0.07 par:pas; +lamer mettre ver 1004.84 1083.65 0.01 0.00 imp:pre:2p; +lames lame nom f p 14.22 37.09 3.17 11.28 +lamie lamie nom f s 0.00 0.07 0.00 0.07 +lamifié lamifié adj m s 0.00 0.14 0.00 0.07 +lamifiés lamifié adj m p 0.00 0.14 0.00 0.07 +laminage laminage nom m s 0.01 0.07 0.01 0.00 +laminages laminage nom m p 0.01 0.07 0.00 0.07 +laminaire laminaire nom f s 0.00 0.14 0.00 0.07 +laminaires laminaire nom f p 0.00 0.14 0.00 0.07 +laminait laminer ver 0.70 1.55 0.00 0.14 ind:imp:3s; +laminant laminer ver 0.70 1.55 0.01 0.00 par:pre; +lamine laminer ver 0.70 1.55 0.05 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +laminectomie laminectomie nom f s 0.01 0.00 0.01 0.00 +laminer laminer ver 0.70 1.55 0.44 0.34 inf; +lamineront laminer ver 0.70 1.55 0.01 0.00 ind:fut:3p; +lamines laminer ver 0.70 1.55 0.00 0.07 ind:pre:2s; +laminoir laminoir nom m s 0.01 0.47 0.00 0.34 +laminoirs laminoir nom m p 0.01 0.47 0.01 0.14 +laminé laminer ver m s 0.70 1.55 0.11 0.47 par:pas; +laminée laminer ver f s 0.70 1.55 0.02 0.07 par:pas; +laminées laminer ver f p 0.70 1.55 0.01 0.14 par:pas; +laminés laminer ver m p 0.70 1.55 0.05 0.14 par:pas; +lampa lamper ver 0.41 1.69 0.14 0.20 ind:pas:3s; +lampadaire lampadaire nom m s 1.89 6.76 1.61 2.84 +lampadaires lampadaire nom m p 1.89 6.76 0.28 3.92 +lampadophore lampadophore adj s 0.00 0.14 0.00 0.14 +lampais lamper ver 0.41 1.69 0.00 0.07 ind:imp:1s; +lampait lamper ver 0.41 1.69 0.00 0.41 ind:imp:3s; +lampant lamper ver 0.41 1.69 0.00 0.20 par:pre; +lamparos lamparo nom m p 0.00 0.14 0.00 0.14 +lampas lampas nom m 0.00 0.07 0.00 0.07 +lampe_phare lampe_phare nom f s 0.00 0.07 0.00 0.07 +lampe_tempête lampe_tempête nom f s 0.00 0.95 0.00 0.68 +lampe lampe nom f s 25.86 93.11 22.22 70.88 +lampent lamper ver 0.41 1.69 0.01 0.00 ind:pre:3p; +lamper lamper ver 0.41 1.69 0.00 0.20 inf; +lampe_tempête lampe_tempête nom f p 0.00 0.95 0.00 0.27 +lampes lampe nom f p 25.86 93.11 3.63 22.23 +lampez lamper ver 0.41 1.69 0.00 0.07 ind:pre:2p; +lampion lampion nom m s 0.28 3.99 0.01 0.81 +lampions lampion nom m p 0.28 3.99 0.27 3.18 +lampiste lampiste nom m s 0.03 0.20 0.01 0.00 +lampisterie lampisterie nom f s 0.00 0.27 0.00 0.20 +lampisteries lampisterie nom f p 0.00 0.27 0.00 0.07 +lampistes lampiste nom m p 0.03 0.20 0.02 0.20 +lampons lampon nom m p 0.00 0.07 0.00 0.07 +lamproie lamproie nom f s 0.04 0.41 0.03 0.07 +lamproies lamproie nom f p 0.04 0.41 0.01 0.34 +lampé lamper ver m s 0.41 1.69 0.00 0.20 par:pas; +lampée lampée nom f s 0.26 3.31 0.25 2.50 +lampées lampée nom f p 0.26 3.31 0.01 0.81 +lampyres lampyre nom m p 0.01 0.07 0.01 0.07 +lamé lamé adj m s 0.56 1.22 0.56 0.81 +lamée lamé adj f s 0.56 1.22 0.00 0.07 +lamées lamer ver f p 0.01 0.20 0.00 0.07 par:pas; +lamés lamé adj m p 0.56 1.22 0.00 0.34 +lance_engins lance_engins nom m 0.02 0.00 0.02 0.00 +lance_flamme lance_flamme nom m s 0.06 0.00 0.06 0.00 +lance_flammes lance_flammes nom m 1.06 0.61 1.06 0.61 +lance_fusée lance_fusée nom m s 0.01 0.00 0.01 0.00 +lance_fusées lance_fusées nom m 0.12 0.61 0.12 0.61 +lance_grenade lance_grenade nom m s 0.02 0.00 0.02 0.00 +lance_grenades lance_grenades nom m 0.34 0.00 0.34 0.00 +lance_missiles lance_missiles nom m 0.26 0.07 0.26 0.07 +lance_pierre lance_pierre nom m s 0.25 0.07 0.25 0.07 +lance_pierres lance_pierres nom m 0.39 1.42 0.39 1.42 +lance_roquette lance_roquette nom m s 0.06 0.00 0.06 0.00 +lance_roquettes lance_roquettes nom m 0.72 0.14 0.72 0.14 +lance_torpille lance_torpille nom m s 0.00 0.07 0.00 0.07 +lance_torpilles lance_torpilles nom m 0.03 0.41 0.03 0.41 +lance lancer ver 75.08 165.07 18.30 19.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +lancelot lancelot nom m s 0.00 0.14 0.00 0.14 +lancement lancement nom m s 8.88 2.03 8.63 1.96 +lancements lancement nom m p 8.88 2.03 0.25 0.07 +lancent lancer ver 75.08 165.07 1.31 4.05 ind:pre:3p; +lancequine lancequiner ver 0.00 0.34 0.00 0.27 ind:pre:1s;ind:pre:3s; +lancequiner lancequiner ver 0.00 0.34 0.00 0.07 inf; +lancer lancer ver 75.08 165.07 18.42 26.08 inf; +lancera lancer ver 75.08 165.07 0.90 0.41 ind:fut:3s; +lancerai lancer ver 75.08 165.07 0.65 0.20 ind:fut:1s; +lanceraient lancer ver 75.08 165.07 0.01 0.07 cnd:pre:3p; +lancerais lancer ver 75.08 165.07 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +lancerait lancer ver 75.08 165.07 0.15 0.68 cnd:pre:3s; +lanceras lancer ver 75.08 165.07 0.18 0.07 ind:fut:2s; +lancerez lancer ver 75.08 165.07 0.26 0.00 ind:fut:2p; +lancerons lanceron nom m p 0.18 0.00 0.18 0.00 +lanceront lancer ver 75.08 165.07 0.16 0.14 ind:fut:3p; +lancers lancer nom m p 4.04 2.03 0.68 0.34 +lances lancer ver 75.08 165.07 1.91 0.47 ind:pre:2s;sub:pre:2s; +lancette lancette nom f s 0.29 0.27 0.29 0.27 +lanceur lanceur nom m s 2.25 0.54 1.84 0.34 +lanceurs lanceur nom m p 2.25 0.54 0.39 0.20 +lanceuse lanceur nom f s 2.25 0.54 0.02 0.00 +lancez lancer ver 75.08 165.07 5.83 0.47 imp:pre:2p;ind:pre:2p; +lancier lancier nom m s 0.55 0.88 0.23 0.14 +lanciers lancier nom m p 0.55 0.88 0.31 0.74 +lanciez lancer ver 75.08 165.07 0.10 0.00 ind:imp:2p; +lancinait lanciner ver 0.14 0.74 0.00 0.14 ind:imp:3s; +lancinance lancinance nom f s 0.00 0.07 0.00 0.07 +lancinant lancinant adj m s 0.48 5.34 0.19 1.89 +lancinante lancinant adj f s 0.48 5.34 0.29 2.16 +lancinantes lancinant adj f p 0.48 5.34 0.01 0.95 +lancinants lancinant adj m p 0.48 5.34 0.00 0.34 +lancine lanciner ver 0.14 0.74 0.04 0.07 ind:pre:1s;ind:pre:3s; +lanciné lanciner ver m s 0.14 0.74 0.00 0.14 par:pas; +lancions lancer ver 75.08 165.07 0.05 0.20 ind:imp:1p; +lancèrent lancer ver 75.08 165.07 0.21 1.42 ind:pas:3p; +lancé lancer ver m s 75.08 165.07 17.31 24.66 par:pas; +lancée lancer ver f s 75.08 165.07 3.02 6.76 par:pas; +lancées lancer ver f p 75.08 165.07 0.68 2.84 par:pas; +lancéolés lancéolé adj m p 0.00 0.07 0.00 0.07 +lancés lancer ver m p 75.08 165.07 1.20 5.27 par:pas; +land land nom m s 2.77 1.96 2.56 1.96 +landais landais adj m 0.01 0.74 0.01 0.20 +landaise landais nom f s 0.01 0.07 0.01 0.00 +landaises landais adj f p 0.01 0.74 0.00 0.14 +landau landau nom m s 1.01 4.59 0.98 3.65 +landaulet landaulet nom m s 0.00 0.07 0.00 0.07 +landaus landau nom m p 1.01 4.59 0.04 0.95 +lande lande nom f s 1.69 10.47 1.57 8.04 +landerneau landerneau nom m s 0.00 0.07 0.00 0.07 +landes lande nom f p 1.69 10.47 0.12 2.43 +landiers landier nom m p 0.00 0.20 0.00 0.20 +landing landing nom m s 0.10 0.00 0.10 0.00 +landlord landlord nom m s 0.01 0.00 0.01 0.00 +lands land nom m p 2.77 1.96 0.21 0.00 +landsturm landsturm nom m s 0.00 0.14 0.00 0.14 +landwehr landwehr nom f s 0.00 0.27 0.00 0.27 +langage langage nom m s 16.68 37.36 16.56 36.01 +langages langage nom m p 16.68 37.36 0.11 1.35 +langagiers langagier adj m p 0.00 0.20 0.00 0.20 +lange langer ver 1.06 1.15 0.55 0.00 ind:pre:3s; +langeait langer ver 1.06 1.15 0.00 0.14 ind:imp:3s; +langeant langer ver 1.06 1.15 0.00 0.07 par:pre; +langer langer ver 1.06 1.15 0.23 0.68 inf; +langes lange nom m p 0.85 1.62 0.75 1.55 +langoureuse langoureux adj f s 0.77 3.04 0.09 1.08 +langoureusement langoureusement adv 0.02 0.47 0.02 0.47 +langoureuses langoureux adj f p 0.77 3.04 0.01 0.27 +langoureux langoureux adj m 0.77 3.04 0.67 1.69 +langouste langouste nom f s 2.98 4.19 1.99 2.09 +langoustes langouste nom f p 2.98 4.19 0.99 2.09 +langoustine langoustine nom f s 0.48 0.47 0.22 0.00 +langoustines langoustine nom f p 0.48 0.47 0.26 0.47 +langé langer ver m s 1.06 1.15 0.28 0.20 par:pas; +langue langue nom f s 69.11 126.28 58.95 103.78 +langée langer ver f s 1.06 1.15 0.00 0.07 par:pas; +languedociens languedocien nom m p 0.00 0.07 0.00 0.07 +langues langue nom f p 69.11 126.28 10.17 22.50 +languette languette nom f s 0.10 0.81 0.09 0.54 +languettes languette nom f p 0.10 0.81 0.01 0.27 +langueur langueur nom f s 0.36 4.66 0.36 3.78 +langueurs langueur nom f p 0.36 4.66 0.00 0.88 +langui languir ver m s 5.99 3.72 0.34 0.20 par:pas; +languide languide adj s 0.20 1.55 0.10 1.28 +languides languide adj m p 0.20 1.55 0.10 0.27 +languir languir ver 5.99 3.72 1.45 1.08 inf; +languirait languir ver 5.99 3.72 0.01 0.07 cnd:pre:3s; +languirent languir ver 5.99 3.72 0.01 0.07 ind:pas:3p; +languiront languir ver 5.99 3.72 0.00 0.07 ind:fut:3p; +languis languir ver m p 5.99 3.72 1.80 0.27 ind:pre:1s;ind:pre:2s;par:pas; +languissaient languir ver 5.99 3.72 0.12 0.14 ind:imp:3p; +languissais languir ver 5.99 3.72 0.46 0.41 ind:imp:1s;ind:imp:2s; +languissait languir ver 5.99 3.72 0.49 0.68 ind:imp:3s; +languissamment languissamment adv 0.01 0.34 0.01 0.34 +languissant languissant adj m s 0.91 2.16 0.49 0.81 +languissante languissant adj f s 0.91 2.16 0.28 0.74 +languissantes languissant adj f p 0.91 2.16 0.15 0.20 +languissants languissant adj m p 0.91 2.16 0.00 0.41 +languisse languir ver 5.99 3.72 0.02 0.00 sub:pre:1s;sub:pre:3s; +languissent languir ver 5.99 3.72 0.03 0.07 ind:pre:3p; +languisses languir ver 5.99 3.72 0.01 0.00 sub:pre:2s; +languissons languir ver 5.99 3.72 0.14 0.00 ind:pre:1p; +languit languir ver 5.99 3.72 1.10 0.47 ind:pre:3s;ind:pas:3s; +lanière lanière nom f s 0.85 6.69 0.42 2.64 +lanières lanière nom f p 0.85 6.69 0.43 4.05 +lanlaire lanlaire adv 0.00 0.14 0.00 0.14 +lanoline lanoline nom f s 0.09 0.14 0.09 0.14 +lansquenet lansquenet nom m s 1.36 1.76 1.36 0.41 +lansquenets lansquenet nom m p 1.36 1.76 0.00 1.35 +lansquine lansquine nom f s 0.00 0.07 0.00 0.07 +lansquiner lansquiner ver 0.00 0.07 0.00 0.07 inf; +lanternant lanterner ver 0.10 0.20 0.00 0.07 par:pre; +lanterne_tempête lanterne_tempête nom f s 0.00 0.07 0.00 0.07 +lanterne lanterne nom f s 3.09 16.82 2.35 11.55 +lanterner lanterner ver 0.10 0.20 0.06 0.14 inf; +lanternes lanterne nom f p 3.09 16.82 0.73 5.27 +lanternez lanterner ver 0.10 0.20 0.02 0.00 imp:pre:2p;ind:pre:2p; +lanternier lanternier nom m s 0.00 0.14 0.00 0.14 +lanterné lanterner ver m s 0.10 0.20 0.01 0.00 par:pas; +lança lancer ver 75.08 165.07 0.79 38.72 ind:pas:3s; +lançai lancer ver 75.08 165.07 0.04 1.49 ind:pas:1s; +lançaient lancer ver 75.08 165.07 0.63 5.81 ind:imp:3p; +lançais lancer ver 75.08 165.07 0.41 1.49 ind:imp:1s;ind:imp:2s; +lançait lancer ver 75.08 165.07 0.89 15.41 ind:imp:3s; +lanthane lanthane nom m s 0.01 0.00 0.01 0.00 +lançant lancer ver 75.08 165.07 0.60 8.11 par:pre; +lanças lancer ver 75.08 165.07 0.00 0.14 ind:pas:2s; +lançâmes lancer ver 75.08 165.07 0.00 0.14 ind:pas:1p; +lançons lancer ver 75.08 165.07 0.81 0.34 imp:pre:1p;ind:pre:1p; +lançât lancer ver 75.08 165.07 0.00 0.41 sub:imp:3s; +lao lao nom m s 0.02 0.14 0.01 0.07 +laos lao nom m p 0.02 0.14 0.01 0.07 +laotien laotien adj m s 0.02 0.20 0.02 0.00 +laotienne laotien adj f s 0.02 0.20 0.00 0.14 +laotiens laotien nom m p 0.05 0.00 0.05 0.00 +lap lap nom m s 0.08 0.27 0.08 0.27 +lapais laper ver 1.41 2.36 0.00 0.07 ind:imp:1s; +lapait laper ver 1.41 2.36 0.00 0.41 ind:imp:3s; +lapalissade lapalissade nom f s 0.01 0.00 0.01 0.00 +lapant laper ver 1.41 2.36 0.00 0.47 par:pre; +laparoscopie laparoscopie nom f s 0.09 0.00 0.09 0.00 +laparotomie laparotomie nom f s 0.22 0.07 0.22 0.07 +lape laper ver 1.41 2.36 1.33 0.41 imp:pre:2s;ind:pre:3s; +lapement lapement nom m s 0.00 0.27 0.00 0.07 +lapements lapement nom m p 0.00 0.27 0.00 0.20 +lapent laper ver 1.41 2.36 0.00 0.07 ind:pre:3p; +laper laper ver 1.41 2.36 0.07 0.68 inf; +lapereau lapereau nom m s 0.31 0.27 0.29 0.00 +lapereaux lapereau nom m p 0.31 0.27 0.02 0.27 +lapida lapider ver 0.93 1.35 0.00 0.07 ind:pas:3s; +lapidaire lapidaire adj s 0.03 0.88 0.01 0.34 +lapidaires lapidaire adj p 0.03 0.88 0.02 0.54 +lapidait lapider ver 0.93 1.35 0.02 0.14 ind:imp:3s; +lapidant lapider ver 0.93 1.35 0.00 0.07 par:pre; +lapidation lapidation nom f s 0.27 0.14 0.25 0.07 +lapidations lapidation nom f p 0.27 0.14 0.02 0.07 +lapide lapider ver 0.93 1.35 0.13 0.07 ind:pre:3s; +lapident lapider ver 0.93 1.35 0.01 0.00 ind:pre:3p; +lapider lapider ver 0.93 1.35 0.27 0.34 inf; +lapiderait lapider ver 0.93 1.35 0.01 0.07 cnd:pre:3s; +lapideras lapider ver 0.93 1.35 0.01 0.00 ind:fut:2s; +lapidez lapider ver 0.93 1.35 0.07 0.00 imp:pre:2p; +lapidification lapidification nom f s 0.00 0.07 0.00 0.07 +lapidifiés lapidifier ver m p 0.00 0.07 0.00 0.07 par:pas; +lapidèrent lapider ver 0.93 1.35 0.14 0.00 ind:pas:3p; +lapidé lapider ver m s 0.93 1.35 0.19 0.41 par:pas; +lapidée lapider ver f s 0.93 1.35 0.07 0.07 par:pas; +lapidés lapider ver m p 0.93 1.35 0.01 0.14 par:pas; +lapin lapin nom m s 39.16 32.43 26.59 16.76 +lapine lapin nom f s 39.16 32.43 0.25 0.41 +lapiner lapiner ver 0.00 0.07 0.00 0.07 inf; +lapines lapine nom f p 0.13 0.00 0.13 0.00 +lapinière lapinière nom f s 0.01 0.00 0.01 0.00 +lapins lapin nom m p 39.16 32.43 12.32 15.14 +lapis_lazuli lapis_lazuli nom m 0.01 0.41 0.01 0.41 +lapis lapis nom m 0.03 0.14 0.03 0.14 +lapon lapon nom m s 2.21 0.14 2.21 0.07 +lapone lapon adj f s 1.44 0.14 0.01 0.07 +lapones lapon adj f p 1.44 0.14 0.00 0.07 +laponne lapon adj f s 1.44 0.14 0.10 0.00 +lapons lapon nom m p 2.21 0.14 0.01 0.00 +lappant lapper ver 0.00 0.47 0.00 0.14 par:pre; +lapper lapper ver 0.00 0.47 0.00 0.27 inf; +lappé lapper ver m s 0.00 0.47 0.00 0.07 par:pas; +laps laps nom m 0.57 2.23 0.57 2.23 +lapsus lapsus nom m 0.93 1.62 0.93 1.62 +lapé laper ver m s 1.41 2.36 0.00 0.27 par:pas; +lapées laper ver f p 1.41 2.36 0.01 0.00 par:pas; +laquaient laquer ver 0.12 3.72 0.00 0.07 ind:imp:3p; +laquais laquais nom m 1.15 2.36 1.15 2.36 +laquait laquer ver 0.12 3.72 0.00 0.07 ind:imp:3s; +laque laque nom f s 0.79 2.70 0.79 2.09 +laquelle laquelle pro_rel f s 68.94 185.27 66.95 182.36 +laquer laquer ver 0.12 3.72 0.01 0.07 inf; +laquerai laquer ver 0.12 3.72 0.00 0.07 ind:fut:1s; +laques laque nom f p 0.79 2.70 0.00 0.61 +laqué laqué adj m s 0.66 3.38 0.47 1.49 +laquée laqué adj f s 0.66 3.38 0.14 0.81 +laquées laqué adj f p 0.66 3.38 0.01 0.14 +laqués laqué adj m p 0.66 3.38 0.04 0.95 +larbin larbin nom m s 3.17 3.72 2.24 1.96 +larbineries larbinerie nom f p 0.00 0.07 0.00 0.07 +larbins larbin nom m p 3.17 3.72 0.93 1.76 +larcin larcin nom m s 0.60 2.30 0.43 1.22 +larcins larcin nom m p 0.60 2.30 0.17 1.08 +lard lard nom m s 8.62 11.28 8.49 11.01 +larda larder ver 0.07 1.35 0.00 0.07 ind:pas:3s; +lardage lardage nom m s 0.00 0.07 0.00 0.07 +lardais larder ver 0.07 1.35 0.00 0.07 ind:imp:1s; +lardait larder ver 0.07 1.35 0.00 0.14 ind:imp:3s; +lardant larder ver 0.07 1.35 0.00 0.07 par:pre; +larde larder ver 0.07 1.35 0.01 0.14 ind:pre:1s;ind:pre:3s; +larder larder ver 0.07 1.35 0.04 0.41 inf; +lardeuss lardeuss nom m 0.00 0.68 0.00 0.68 +lardeux lardeux adj m 0.00 0.07 0.00 0.07 +lardon lardon nom m s 0.83 1.76 0.57 0.61 +lardons lardon nom m p 0.83 1.76 0.26 1.15 +lards lard nom m p 8.62 11.28 0.13 0.27 +lardé larder ver m s 0.07 1.35 0.02 0.27 par:pas; +lardu lardu nom m s 0.03 3.85 0.01 1.49 +lardée larder ver f s 0.07 1.35 0.00 0.07 par:pas; +lardées larder ver f p 0.07 1.35 0.00 0.07 par:pas; +lardus lardu nom m p 0.03 3.85 0.02 2.36 +lare lare adj m s 0.27 0.14 0.00 0.07 +lares lare adj m p 0.27 0.14 0.27 0.07 +larfeuil larfeuil nom m s 0.13 0.27 0.13 0.20 +larfeuille larfeuille nom m s 0.16 0.41 0.16 0.34 +larfeuilles larfeuille nom m p 0.16 0.41 0.00 0.07 +larfeuils larfeuil nom m p 0.13 0.27 0.00 0.07 +largable largable adj f s 0.02 0.00 0.02 0.00 +largage largage nom m s 1.36 0.07 1.34 0.07 +largages largage nom m p 1.36 0.07 0.02 0.00 +large large adj s 18.66 107.50 14.25 70.54 +largement largement adv 5.98 26.76 5.98 26.76 +larges large adj p 18.66 107.50 4.41 36.96 +largesse largesse nom f s 0.42 2.23 0.08 0.88 +largesses largesse nom f p 0.42 2.23 0.34 1.35 +largeur largeur nom f s 1.58 11.89 1.55 11.42 +largeurs largeur nom f p 1.58 11.89 0.02 0.47 +larghetto larghetto nom m s 0.00 0.07 0.00 0.07 +largo largo adv 0.94 0.00 0.94 0.00 +largua larguer ver 14.61 6.89 0.03 0.20 ind:pas:3s; +larguaient larguer ver 14.61 6.89 0.01 0.07 ind:imp:3p; +larguais larguer ver 14.61 6.89 0.05 0.14 ind:imp:1s; +larguait larguer ver 14.61 6.89 0.08 0.41 ind:imp:3s; +larguant larguer ver 14.61 6.89 0.08 0.20 par:pre; +largue larguer ver 14.61 6.89 2.13 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +larguent larguer ver 14.61 6.89 0.27 0.20 ind:pre:3p; +larguer larguer ver 14.61 6.89 4.16 2.30 inf; +larguera larguer ver 14.61 6.89 0.16 0.00 ind:fut:3s; +larguerai larguer ver 14.61 6.89 0.04 0.07 ind:fut:1s; +larguerait larguer ver 14.61 6.89 0.03 0.07 cnd:pre:3s; +larguerez larguer ver 14.61 6.89 0.02 0.00 ind:fut:2p; +largueront larguer ver 14.61 6.89 0.02 0.00 ind:fut:3p; +largues larguer ver 14.61 6.89 0.30 0.07 ind:pre:2s; +largueur largueur nom m s 0.02 0.00 0.02 0.00 +larguez larguer ver 14.61 6.89 1.01 0.20 imp:pre:2p;ind:pre:2p; +larguiez larguer ver 14.61 6.89 0.00 0.07 ind:imp:2p; +larguons larguer ver 14.61 6.89 0.00 0.07 imp:pre:1p; +largué larguer ver m s 14.61 6.89 4.20 1.28 par:pas; +larguée larguer ver f s 14.61 6.89 1.49 0.61 par:pas; +larguées largué adj f p 0.87 0.95 0.21 0.14 +largués larguer ver m p 14.61 6.89 0.45 0.27 par:pas; +larigot larigot nom m s 0.00 0.41 0.00 0.41 +larme larme nom f s 45.71 133.51 5.15 10.81 +larmes larme nom f p 45.71 133.51 40.56 122.70 +larmichette larmichette nom f s 0.01 0.27 0.01 0.20 +larmichettes larmichette nom f p 0.01 0.27 0.00 0.07 +larmiers larmier nom m p 0.00 0.07 0.00 0.07 +larmoie larmoyer ver 0.28 1.28 0.10 0.27 ind:pre:3s; +larmoiement larmoiement nom m s 0.00 0.20 0.00 0.14 +larmoiements larmoiement nom m p 0.00 0.20 0.00 0.07 +larmoient larmoyer ver 0.28 1.28 0.00 0.07 ind:pre:3p; +larmoyait larmoyer ver 0.28 1.28 0.01 0.20 ind:imp:3s; +larmoyant larmoyant adj m s 0.84 2.91 0.32 0.54 +larmoyante larmoyant adj f s 0.84 2.91 0.27 1.35 +larmoyantes larmoyant adj f p 0.84 2.91 0.09 0.20 +larmoyants larmoyant adj m p 0.84 2.91 0.16 0.81 +larmoyer larmoyer ver 0.28 1.28 0.15 0.41 inf; +larmoyeur larmoyeur adj m s 0.00 0.07 0.00 0.07 +larmoyons larmoyer ver 0.28 1.28 0.00 0.07 imp:pre:1p; +larmoyé larmoyer ver m s 0.28 1.28 0.00 0.07 par:pas; +larron larron nom m s 0.51 1.82 0.34 0.95 +larronne larronner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +larrons larron nom m p 0.51 1.82 0.17 0.88 +larsen larsen nom m s 0.89 0.34 0.89 0.34 +larvaire larvaire adj s 0.09 1.08 0.07 0.68 +larvaires larvaire adj p 0.09 1.08 0.03 0.41 +larve larve nom f s 3.52 3.92 1.92 1.69 +larves larve nom f p 3.52 3.92 1.61 2.23 +larvicide larvicide nom m s 0.01 0.00 0.01 0.00 +larvé larvé adj m s 0.03 0.88 0.00 0.14 +larvée larvé adj f s 0.03 0.88 0.03 0.61 +larvées larvé adj f p 0.03 0.88 0.00 0.14 +laryngite laryngite nom f s 0.27 0.14 0.27 0.14 +laryngologique laryngologique adj f s 0.00 0.07 0.00 0.07 +laryngologiste laryngologiste nom s 0.00 0.14 0.00 0.14 +laryngoscope laryngoscope nom m s 0.19 0.07 0.18 0.00 +laryngoscopes laryngoscope nom m p 0.19 0.07 0.01 0.07 +laryngoscopie laryngoscopie nom f s 0.10 0.00 0.10 0.00 +laryngé laryngé adj m s 0.09 0.07 0.09 0.00 +laryngée laryngé adj f s 0.09 0.07 0.00 0.07 +larynx larynx nom m 0.94 1.55 0.94 1.55 +las las ono 0.12 0.74 0.12 0.74 +lasagne lasagne nom f s 1.94 0.41 0.15 0.00 +lasagnes lasagne nom f p 1.94 0.41 1.79 0.41 +lascar lascar nom m s 1.34 3.92 0.79 1.89 +lascars lascar nom m p 1.34 3.92 0.55 2.03 +lascif lascif adj m s 1.52 2.50 0.46 0.74 +lascifs lascif adj m p 1.52 2.50 0.05 0.27 +lascive lascif adj f s 1.52 2.50 0.21 0.54 +lascivement lascivement adv 0.02 0.27 0.02 0.27 +lascives lascif adj f p 1.52 2.50 0.80 0.95 +lascivité lascivité nom f s 0.16 0.34 0.16 0.27 +lascivités lascivité nom f p 0.16 0.34 0.00 0.07 +laser laser nom m s 7.87 0.95 5.87 0.81 +lasers laser nom m p 7.87 0.95 2.00 0.14 +lassa lasser ver 7.43 24.32 0.05 0.74 ind:pas:3s; +lassai lasser ver 7.43 24.32 0.00 0.20 ind:pas:1s; +lassaient lasser ver 7.43 24.32 0.01 0.95 ind:imp:3p; +lassais lasser ver 7.43 24.32 0.08 0.68 ind:imp:1s;ind:imp:2s; +lassait lasser ver 7.43 24.32 0.06 2.91 ind:imp:3s; +lassant lassant adj m s 0.67 1.28 0.58 0.61 +lassante lassant adj f s 0.67 1.28 0.05 0.41 +lassantes lassant adj f p 0.67 1.28 0.02 0.20 +lassants lassant adj m p 0.67 1.28 0.02 0.07 +lasse las adj f s 16.46 35.00 8.33 10.07 +lassent lasser ver 7.43 24.32 0.50 0.74 ind:pre:3p; +lasser lasser ver 7.43 24.32 1.22 5.88 inf; +lassera lasser ver 7.43 24.32 0.39 0.00 ind:fut:3s; +lasserai lasser ver 7.43 24.32 0.22 0.47 ind:fut:1s; +lasseraient lasser ver 7.43 24.32 0.00 0.14 cnd:pre:3p; +lasserais lasser ver 7.43 24.32 0.04 0.27 cnd:pre:1s;cnd:pre:2s; +lasserait lasser ver 7.43 24.32 0.01 0.20 cnd:pre:3s; +lasserez lasser ver 7.43 24.32 0.02 0.00 ind:fut:2p; +lasseront lasser ver 7.43 24.32 0.04 0.07 ind:fut:3p; +lasses lasser ver 7.43 24.32 0.18 0.00 ind:pre:2s; +lassez lasser ver 7.43 24.32 0.10 0.14 imp:pre:2p;ind:pre:2p; +lassitude lassitude nom f s 1.57 17.09 1.57 16.82 +lassitudes lassitude nom f p 1.57 17.09 0.00 0.27 +lasso lasso nom m s 1.02 1.28 0.94 1.08 +lassons lasser ver 7.43 24.32 0.00 0.07 ind:pre:1p; +lassos lasso nom m p 1.02 1.28 0.09 0.20 +lassèrent lasser ver 7.43 24.32 0.00 0.27 ind:pas:3p; +lassé lasser ver m s 7.43 24.32 1.78 3.31 par:pas; +lassée lasser ver f s 7.43 24.32 0.42 1.42 par:pas; +lassées lasser ver f p 7.43 24.32 0.02 0.34 par:pas; +lassés lasser ver m p 7.43 24.32 0.23 0.68 par:pas; +lasure lasure nom f s 0.01 0.00 0.01 0.00 +latence latence nom f s 0.08 0.14 0.08 0.07 +latences latence nom f p 0.08 0.14 0.00 0.07 +latent latent adj m s 1.25 2.84 0.21 0.88 +latente latent adj f s 1.25 2.84 0.76 1.22 +latentes latent adj f p 1.25 2.84 0.14 0.47 +latents latent adj m p 1.25 2.84 0.14 0.27 +latex latex nom m 1.65 0.47 1.65 0.47 +laça lacer ver 0.81 2.23 0.00 0.20 ind:pas:3s; +laçage laçage nom m s 0.03 0.41 0.03 0.41 +laçais lacer ver 0.81 2.23 0.01 0.00 ind:imp:2s; +laçait lacer ver 0.81 2.23 0.01 0.14 ind:imp:3s; +laçant lacer ver 0.81 2.23 0.01 0.14 par:pre; +laticlave laticlave nom m s 0.00 0.07 0.00 0.07 +latifundistes latifundiste nom p 0.00 0.07 0.00 0.07 +latin latin nom m s 6.62 15.07 6.53 14.93 +latine latin adj f s 4.52 12.64 2.37 4.05 +latines latin adj f p 4.52 12.64 0.27 1.82 +latinisaient latiniser ver 0.00 0.20 0.00 0.07 ind:imp:3p; +latinismes latinisme nom m p 0.00 0.07 0.00 0.07 +latiniste latiniste nom s 0.03 0.27 0.02 0.20 +latinistes latiniste nom p 0.03 0.27 0.01 0.07 +latinisé latiniser ver m s 0.00 0.20 0.00 0.07 par:pas; +latinisée latiniser ver f s 0.00 0.20 0.00 0.07 par:pas; +latinité latinité nom f s 0.00 0.20 0.00 0.14 +latinités latinité nom f p 0.00 0.20 0.00 0.07 +latino_américain latino_américain nom m s 0.10 0.07 0.03 0.07 +latino_américain latino_américain nom f s 0.10 0.07 0.03 0.00 +latino_américain latino_américain nom m p 0.10 0.07 0.04 0.00 +latino latino nom m s 2.89 0.00 1.61 0.00 +latinos latino nom m p 2.89 0.00 1.27 0.00 +latins latin adj m p 4.52 12.64 0.10 2.30 +latitude latitude nom f s 1.45 2.91 1.09 1.76 +latitudes latitude nom f p 1.45 2.91 0.36 1.15 +latrine latrine nom f s 0.82 2.50 0.14 0.14 +latrines latrine nom f p 0.82 2.50 0.67 2.36 +lats lats nom m 0.09 0.00 0.09 0.00 +latte latte nom f s 1.15 9.46 0.76 2.03 +latter latter ver 0.29 0.07 0.11 0.07 inf; +lattes latte nom f p 1.15 9.46 0.39 7.43 +lattis lattis nom m 0.15 0.00 0.15 0.00 +latté latter ver m s 0.29 0.07 0.08 0.00 par:pas; +lattés latter ver m p 0.29 0.07 0.01 0.00 par:pas; +latéral latéral adj m s 2.10 5.68 0.77 0.81 +latérale latéral adj f s 2.10 5.68 1.00 2.77 +latéralement latéralement adv 0.25 1.08 0.25 1.08 +latérales latéral adj f p 2.10 5.68 0.15 1.35 +latéralisée latéralisé adj f s 0.02 0.00 0.02 0.00 +latéralité latéralité nom f s 0.00 0.07 0.00 0.07 +latéraux latéral adj m p 2.10 5.68 0.17 0.74 +latérite latérite nom f s 0.00 0.61 0.00 0.61 +latviens latvien nom m p 0.01 0.00 0.01 0.00 +laubé laubé nom s 0.00 0.07 0.00 0.07 +laudanum laudanum nom m s 0.45 0.20 0.45 0.20 +laudateur laudateur adj m s 0.00 0.07 0.00 0.07 +laudative laudatif adj f s 0.00 0.07 0.00 0.07 +laudes laude nom f p 0.00 0.47 0.00 0.47 +laurier_cerise laurier_cerise nom m s 0.00 0.20 0.00 0.07 +laurier_rose laurier_rose nom m s 0.14 1.69 0.04 0.20 +laurier laurier nom m s 2.27 9.32 0.90 3.58 +laurier_cerise laurier_cerise nom m p 0.00 0.20 0.00 0.14 +laurier_rose laurier_rose nom m p 0.14 1.69 0.10 1.49 +lauriers laurier nom m p 2.27 9.32 1.37 5.74 +lauréat lauréat nom m s 0.46 0.68 0.41 0.41 +lauréate lauréat adj f s 0.19 0.20 0.06 0.00 +lauréats lauréat nom m p 0.46 0.68 0.05 0.27 +lausannoises lausannois adj f p 0.00 0.07 0.00 0.07 +lauzes lauze nom f p 0.00 0.07 0.00 0.07 +lav lav nom m 0.01 0.14 0.01 0.14 +lava laver ver 74.35 69.53 0.07 3.38 ind:pas:3s; +lavable lavable adj s 0.06 0.47 0.05 0.27 +lavables lavable adj m p 0.06 0.47 0.01 0.20 +lavabo lavabo nom m s 3.38 16.89 2.56 13.85 +lavabos lavabo nom m p 3.38 16.89 0.82 3.04 +lavage lavage nom m s 5.09 3.24 5.01 2.64 +lavages lavage nom m p 5.09 3.24 0.09 0.61 +lavai laver ver 74.35 69.53 0.00 0.41 ind:pas:1s; +lavaient laver ver 74.35 69.53 0.05 1.69 ind:imp:3p; +lavais laver ver 74.35 69.53 1.36 0.95 ind:imp:1s;ind:imp:2s; +lavait laver ver 74.35 69.53 1.23 5.88 ind:imp:3s; +lavallière lavallière nom f s 0.03 0.95 0.02 0.88 +lavallières lavallière nom f p 0.03 0.95 0.01 0.07 +lavande lavande nom f s 1.53 7.23 1.53 6.82 +lavandes lavande nom f p 1.53 7.23 0.00 0.41 +lavandin lavandin nom m s 0.00 0.07 0.00 0.07 +lavandière lavandière nom f s 0.31 1.49 0.30 0.47 +lavandières lavandière nom f p 0.31 1.49 0.01 1.01 +lavant laver ver 74.35 69.53 0.56 2.03 par:pre; +lavasse lavasse nom f s 0.23 0.47 0.23 0.47 +lave_auto lave_auto nom m s 0.06 0.00 0.06 0.00 +lave_glace lave_glace nom m s 0.03 0.20 0.03 0.20 +lave_linge lave_linge nom m 0.83 0.00 0.83 0.00 +lave_mains lave_mains nom m 0.00 0.07 0.00 0.07 +lave_pont lave_pont nom m s 0.00 0.14 0.00 0.07 +lave_pont lave_pont nom m p 0.00 0.14 0.00 0.07 +lave_vaisselle lave_vaisselle nom m 0.88 0.20 0.88 0.20 +lave laver ver 74.35 69.53 16.98 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +lavedu lavedu nom s 0.00 0.07 0.00 0.07 +lavement lavement nom m s 1.38 0.68 1.21 0.68 +lavements lavement nom m p 1.38 0.68 0.17 0.00 +lavent laver ver 74.35 69.53 0.94 0.88 ind:pre:3p; +laver laver ver 74.35 69.53 34.01 30.68 ind:pre:2p;inf; +lavera laver ver 74.35 69.53 0.87 0.27 ind:fut:3s; +laverai laver ver 74.35 69.53 1.25 0.61 ind:fut:1s; +laverais laver ver 74.35 69.53 0.05 0.14 cnd:pre:1s;cnd:pre:2s; +laverait laver ver 74.35 69.53 0.04 0.54 cnd:pre:3s; +laveras laver ver 74.35 69.53 0.26 0.20 ind:fut:2s; +laverez laver ver 74.35 69.53 0.27 0.00 ind:fut:2p; +laverie laverie nom f s 2.42 1.01 2.27 0.88 +laveries laverie nom f p 2.42 1.01 0.14 0.14 +laverions laver ver 74.35 69.53 0.00 0.07 cnd:pre:1p; +laverons laver ver 74.35 69.53 0.04 0.07 ind:fut:1p; +laveront laver ver 74.35 69.53 0.01 0.14 ind:fut:3p; +laves laver ver 74.35 69.53 3.24 0.41 ind:pre:2s; +lavette lavette nom f s 1.57 1.28 1.20 1.22 +lavettes lavette nom f p 1.57 1.28 0.38 0.07 +laveur laveur nom m s 2.47 1.89 1.51 0.88 +laveurs laveur nom m p 2.47 1.89 0.95 0.14 +laveuse laveur nom f s 2.47 1.89 0.01 0.74 +laveuses laveuse nom f p 0.03 0.00 0.03 0.00 +lavez laver ver 74.35 69.53 2.68 0.34 imp:pre:2p;ind:pre:2p; +lavions laver ver 74.35 69.53 0.01 0.20 ind:imp:1p; +lavis lavis nom m 0.00 0.41 0.00 0.41 +lavoir lavoir nom m s 0.15 5.34 0.15 5.14 +lavoirs lavoir nom m p 0.15 5.34 0.00 0.20 +lavons laver ver 74.35 69.53 0.45 0.00 imp:pre:1p;ind:pre:1p; +lavèrent laver ver 74.35 69.53 0.01 0.34 ind:pas:3p; +lavé laver ver m s 74.35 69.53 6.95 8.38 par:pas; +lavée laver ver f s 74.35 69.53 1.91 2.64 par:pas; +lavées lavé adj f p 1.18 7.16 0.27 1.15 +lavure lavure nom f s 0.00 0.14 0.00 0.07 +lavures lavure nom f p 0.00 0.14 0.00 0.07 +lavés laver ver m p 74.35 69.53 0.86 1.01 par:pas; +laxatif laxatif nom m s 0.98 0.41 0.73 0.34 +laxatifs laxatif nom m p 0.98 0.41 0.24 0.07 +laxative laxatif adj f s 0.10 0.14 0.05 0.07 +laxatives laxatif adj f p 0.10 0.14 0.00 0.07 +laxisme laxisme nom m s 0.28 0.20 0.28 0.20 +laxiste laxiste adj s 0.45 0.20 0.25 0.20 +laxistes laxiste adj p 0.45 0.20 0.20 0.00 +laxité laxité nom f s 0.02 0.00 0.02 0.00 +laya layer ver 0.03 0.47 0.00 0.34 ind:pas:3s; +layer layer ver 0.03 0.47 0.03 0.14 inf; +layette layette nom f s 0.18 2.09 0.18 1.35 +layettes layette nom f p 0.18 2.09 0.00 0.74 +layon layon nom m s 0.00 6.89 0.00 5.95 +layons layon nom m p 0.00 6.89 0.00 0.95 +lazaret lazaret nom m s 0.07 0.20 0.06 0.07 +lazarets lazaret nom m p 0.07 0.20 0.01 0.14 +lazaro lazaro nom m s 0.27 0.14 0.27 0.14 +lazingue lazingue nom m s 0.00 0.27 0.00 0.27 +lazzi lazzi nom m s 0.00 1.35 0.00 0.68 +lazzis lazzi nom m p 0.00 1.35 0.00 0.68 +le le art_def m s 13652.76 18310.95 13652.76 18310.95 +leader leader nom m s 12.72 1.69 10.28 0.95 +leaders leader nom m p 12.72 1.69 2.44 0.74 +leadership leadership nom m s 0.38 0.14 0.38 0.14 +leasing leasing nom m s 0.24 0.00 0.24 0.00 +lebel lebel nom m s 0.00 1.35 0.00 0.81 +lebels lebel nom m p 0.00 1.35 0.00 0.54 +leben leben nom m s 0.02 0.27 0.02 0.27 +lecteur lecteur nom m s 6.09 25.81 2.86 12.03 +lecteurs lecteur nom m p 6.09 25.81 2.92 11.28 +lectorat lectorat nom m s 0.15 0.00 0.15 0.00 +lectrice lecteur nom f s 6.09 25.81 0.32 1.49 +lectrices lectrice nom f p 0.22 0.00 0.22 0.00 +lecture lecture nom f s 15.80 54.53 13.97 42.16 +lectures lecture nom f p 15.80 54.53 1.83 12.36 +ledit ledit adj m s 0.32 4.46 0.32 4.46 +legato legato adv 0.01 0.00 0.01 0.00 +leggins leggins nom f p 0.00 0.61 0.00 0.61 +leghorns leghorn nom f p 0.00 0.07 0.00 0.07 +lego lego nom m s 0.44 0.07 0.35 0.07 +legos lego nom m p 0.44 0.07 0.09 0.00 +legs legs nom m 1.34 1.49 1.34 1.49 +lei lei nom m p 0.80 0.34 0.80 0.34 +leishmaniose leishmaniose nom f s 0.06 0.00 0.06 0.00 +leitmotiv leitmotiv nom m s 0.06 1.22 0.06 1.22 +leitmotive leitmotive nom m p 0.00 0.07 0.00 0.07 +lek lek nom m s 0.01 0.00 0.01 0.00 +lem lem nom m s 0.16 0.00 0.16 0.00 +lemmes lemme nom m p 0.00 0.07 0.00 0.07 +lemming lemming nom m s 0.16 0.07 0.07 0.00 +lemmings lemming nom m p 0.16 0.07 0.09 0.07 +lendemain lendemain nom_sup m s 29.29 149.26 28.58 145.54 +lendemains lendemain nom_sup m p 29.29 149.26 0.71 3.72 +lent lent adj m s 16.41 64.12 9.15 23.31 +lente lent adj f s 16.41 64.12 4.67 21.55 +lentement lentement adv 26.48 156.55 26.48 156.55 +lentes lent adj f p 16.41 64.12 0.94 7.23 +lenteur lenteur nom f s 1.16 22.50 1.15 21.96 +lenteurs lenteur nom f p 1.16 22.50 0.01 0.54 +lenticulaires lenticulaire adj m p 0.01 0.00 0.01 0.00 +lenticules lenticule nom f p 0.00 0.07 0.00 0.07 +lentille lentille nom f s 4.66 8.24 1.22 0.74 +lentilles lentille nom f p 4.66 8.24 3.44 7.50 +lentisque lentisque nom m s 0.00 0.88 0.00 0.07 +lentisques lentisque nom m p 0.00 0.88 0.00 0.81 +lento lento adv 0.05 0.14 0.05 0.14 +lents lent adj m p 16.41 64.12 1.65 12.03 +lepton lepton nom m s 0.08 0.00 0.06 0.00 +leptonique leptonique adj m s 0.07 0.00 0.07 0.00 +leptons lepton nom m p 0.08 0.00 0.02 0.00 +lequel lequel pro_rel m s 64.31 137.09 59.66 133.99 +lerch lerch adv 0.00 0.07 0.00 0.07 +lerche lerche adv 0.00 4.12 0.00 4.12 +les les art_def p 8720.38 14662.30 8720.38 14662.30 +lesbianisme lesbianisme nom m s 0.12 0.07 0.12 0.07 +lesbien lesbien adj m s 8.24 1.15 0.49 0.00 +lesbienne lesbien adj f s 8.24 1.15 6.80 0.81 +lesbiennes lesbien nom f p 5.38 0.41 2.56 0.34 +lesdites lesdites adj f p 0.00 0.20 0.00 0.20 +lesdits lesdits adj m p 0.13 0.54 0.13 0.54 +lesquelles lesquelles pro_rel f p 11.75 43.11 11.60 41.55 +lesquels lesquels pro_rel m p 10.42 47.91 10.00 45.14 +lessiva lessiver ver 0.91 3.31 0.00 0.07 ind:pas:3s; +lessivage lessivage nom m s 0.02 0.20 0.02 0.20 +lessivaient lessiver ver 0.91 3.31 0.00 0.07 ind:imp:3p; +lessivait lessiver ver 0.91 3.31 0.00 0.14 ind:imp:3s; +lessivant lessiver ver 0.91 3.31 0.00 0.14 par:pre; +lessive lessive nom f s 8.51 8.78 8.09 7.70 +lessiver lessiver ver 0.91 3.31 0.12 0.88 inf; +lessiverait lessiver ver 0.91 3.31 0.00 0.07 cnd:pre:3s; +lessives lessive nom f p 8.51 8.78 0.42 1.08 +lessiveuse lessiveur nom f s 0.04 2.70 0.04 2.30 +lessiveuses lessiveuse nom f p 0.02 0.00 0.02 0.00 +lessivons lessiver ver 0.91 3.31 0.05 0.00 imp:pre:1p; +lessivé lessiver ver m s 0.91 3.31 0.50 1.08 par:pas; +lessivée lessiver ver f s 0.91 3.31 0.06 0.27 par:pas; +lessivés lessiver ver m p 0.91 3.31 0.05 0.54 par:pas; +lest lest nom m s 0.97 0.68 0.97 0.68 +leste leste adj s 0.61 1.42 0.50 0.95 +lestement lestement adv 0.02 0.68 0.02 0.68 +lester lester ver 2.27 2.70 1.97 0.41 inf; +lestera lester ver 2.27 2.70 0.01 0.00 ind:fut:3s; +lesterait lester ver 2.27 2.70 0.00 0.07 cnd:pre:3s; +lestes lester ver 2.27 2.70 0.14 0.00 ind:pre:2s; +lestez lester ver 2.27 2.70 0.01 0.00 ind:pre:2p; +lesté lester ver m s 2.27 2.70 0.07 1.08 par:pas; +lestée lester ver f s 2.27 2.70 0.03 0.41 par:pas; +lestées lester ver f p 2.27 2.70 0.01 0.07 par:pas; +lestés lester ver m p 2.27 2.70 0.01 0.54 par:pas; +let let adj 3.56 0.47 3.56 0.47 +letchis letchi nom m p 0.00 0.07 0.00 0.07 +leçon leçon nom f s 41.48 48.72 29.24 22.64 +leçons leçon nom f p 41.48 48.72 12.23 26.08 +lette lette nom s 0.03 0.00 0.01 0.00 +lettes lette nom p 0.03 0.00 0.01 0.00 +letton letton nom m s 0.14 0.34 0.10 0.07 +lettone letton adj f s 0.10 0.34 0.03 0.07 +lettonne letton adj f s 0.10 0.34 0.00 0.07 +lettonnes letton adj f p 0.10 0.34 0.00 0.07 +lettons letton nom m p 0.14 0.34 0.04 0.27 +lettrage lettrage nom m s 0.03 0.00 0.03 0.00 +lettre_clé lettre_clé nom f s 0.14 0.00 0.14 0.00 +lettre lettre nom f s 156.77 256.01 108.79 140.88 +lettres lettre nom f p 156.77 256.01 47.98 115.14 +lettreur lettreur nom m s 0.00 0.07 0.00 0.07 +lettrine lettrine nom f s 0.00 0.20 0.00 0.14 +lettrines lettrine nom f p 0.00 0.20 0.00 0.07 +lettriques lettrique adj m p 0.00 0.07 0.00 0.07 +lettristes lettriste adj p 0.00 0.07 0.00 0.07 +lettré lettré nom m s 0.31 2.30 0.19 1.35 +lettrée lettré adj f s 0.23 0.95 0.01 0.07 +lettrés lettré adj m p 0.23 0.95 0.16 0.41 +leu leu nom m s 0.92 4.73 0.92 4.73 +leucocytaire leucocytaire adj f s 0.01 0.00 0.01 0.00 +leucocyte leucocyte nom m s 0.10 0.20 0.01 0.00 +leucocytes leucocyte nom m p 0.10 0.20 0.09 0.20 +leucocytose leucocytose nom f s 0.03 0.00 0.03 0.00 +leucoplasie leucoplasie nom f s 0.01 0.07 0.01 0.07 +leucopénie leucopénie nom f s 0.01 0.07 0.01 0.07 +leucose leucose nom f s 0.00 0.41 0.00 0.41 +leucotomie leucotomie nom f s 0.00 0.07 0.00 0.07 +leucémie leucémie nom f s 1.90 0.61 1.72 0.54 +leucémies leucémie nom f p 1.90 0.61 0.17 0.07 +leucémique leucémique nom s 0.05 0.00 0.05 0.00 +leur leur pro_per p 283.82 427.50 277.53 415.00 +leurrais leurrer ver 1.36 1.96 0.01 0.07 ind:imp:1s; +leurrait leurrer ver 1.36 1.96 0.00 0.27 ind:imp:3s; +leurre leurre nom m s 2.67 2.91 2.12 2.16 +leurrent leurrer ver 1.36 1.96 0.01 0.07 ind:pre:3p; +leurrer leurrer ver 1.36 1.96 0.55 0.68 inf; +leurres leurre nom m p 2.67 2.91 0.55 0.74 +leurrez leurrer ver 1.36 1.96 0.09 0.07 imp:pre:2p;ind:pre:2p; +leurrons leurrer ver 1.36 1.96 0.14 0.27 imp:pre:1p; +leurré leurrer ver m s 1.36 1.96 0.09 0.27 par:pas; +leurrés leurrer ver m p 1.36 1.96 0.03 0.07 par:pas; +leurs leurs adj_pos 243.56 886.55 243.56 886.55 +lev lev nom m s 0.68 0.00 0.68 0.00 +leva lever ver 165.98 440.74 1.28 123.58 ind:pas:3s; +levage levage nom m s 0.02 0.34 0.02 0.34 +levai lever ver 165.98 440.74 0.07 10.27 ind:pas:1s; +levaient lever ver 165.98 440.74 0.20 5.88 ind:imp:3p; +levain levain nom m s 0.18 0.88 0.18 0.88 +levais lever ver 165.98 440.74 0.69 4.39 ind:imp:1s;ind:imp:2s; +levait lever ver 165.98 440.74 1.17 32.84 ind:imp:3s; +levant lever ver 165.98 440.74 1.36 28.78 par:pre; +levante levant adj f s 0.93 2.43 0.02 0.14 +levantin levantin adj m s 0.02 0.20 0.02 0.14 +levantines levantin nom f p 0.01 0.47 0.00 0.07 +levantins levantin nom m p 0.01 0.47 0.00 0.20 +lever lever ver 165.98 440.74 35.90 66.89 inf; +levers lever nom m p 4.92 9.12 0.16 0.34 +leveur leveur nom m s 0.03 0.34 0.02 0.07 +leveurs leveur nom m p 0.03 0.34 0.01 0.07 +leveuse leveur nom f s 0.03 0.34 0.00 0.20 +levez lever ver 165.98 440.74 22.23 2.23 imp:pre:2p;ind:pre:2p; +levier levier nom m s 3.46 5.27 3.24 3.45 +leviers levier nom m p 3.46 5.27 0.23 1.82 +leviez lever ver 165.98 440.74 0.35 0.07 ind:imp:2p; +levions lever ver 165.98 440.74 0.03 1.08 ind:imp:1p; +levâmes lever ver 165.98 440.74 0.00 0.34 ind:pas:1p; +levons lever ver 165.98 440.74 2.52 1.49 imp:pre:1p;ind:pre:1p; +levât lever ver 165.98 440.74 0.00 0.68 sub:imp:3s; +levreau levreau nom m s 0.00 0.14 0.00 0.07 +levreaux levreau nom m p 0.00 0.14 0.00 0.07 +levrette levrette nom f s 0.65 1.01 0.65 0.95 +levrettes levrette nom f p 0.65 1.01 0.00 0.07 +levèrent lever ver 165.98 440.74 0.12 7.50 ind:pas:3p; +levé lever ver m s 165.98 440.74 13.40 40.41 par:pas; +levée lever ver f s 165.98 440.74 6.41 13.78 par:pas; +levées lever ver f p 165.98 440.74 0.41 1.55 par:pas; +levure levure nom f s 1.05 0.81 1.00 0.81 +levures levure nom f p 1.05 0.81 0.05 0.00 +levés lever ver m p 165.98 440.74 0.58 6.08 par:pas; +lexical lexical adj m s 0.00 0.07 0.00 0.07 +lexicographes lexicographe nom p 0.00 0.07 0.00 0.07 +lexie lexie nom f s 0.05 0.07 0.05 0.07 +lexique lexique nom m s 0.11 0.95 0.11 0.68 +lexiques lexique nom m p 0.11 0.95 0.00 0.27 +lez lez pre 0.36 0.14 0.36 0.14 +li li nom m s 2.56 1.76 2.56 1.76 +lia lier ver 37.17 46.08 0.49 0.95 ind:pas:3s; +liage liage nom m s 0.01 0.00 0.01 0.00 +liai lier ver 37.17 46.08 0.00 0.41 ind:pas:1s; +liaient lier ver 37.17 46.08 0.14 0.95 ind:imp:3p; +liais lier ver 37.17 46.08 0.02 0.20 ind:imp:1s; +liaison liaison nom f s 20.34 31.96 18.41 26.69 +liaisons liaison nom f p 20.34 31.96 1.94 5.27 +liait lier ver 37.17 46.08 0.71 3.72 ind:imp:3s; +liane liane nom f s 0.77 4.59 0.34 1.08 +lianes liane nom f p 0.77 4.59 0.43 3.51 +liant lier ver 37.17 46.08 0.12 0.81 par:pre; +liante liant adj f s 0.20 0.54 0.14 0.14 +liants liant adj m p 0.20 0.54 0.02 0.14 +liard liard nom m s 0.23 0.54 0.19 0.27 +liardais liarder ver 0.00 0.07 0.00 0.07 ind:imp:1s; +liards liard nom m p 0.23 0.54 0.03 0.27 +liasse liasse nom f s 1.24 11.69 0.64 7.36 +liasses liasse nom f p 1.24 11.69 0.60 4.32 +libanais libanais nom m 0.87 1.69 0.85 1.42 +libanaise libanais adj f s 0.41 4.19 0.03 0.88 +libanaises libanaise nom f p 0.05 0.00 0.03 0.00 +libation libation nom f s 0.07 1.49 0.05 0.20 +libations libation nom f p 0.07 1.49 0.02 1.28 +libeccio libeccio nom m s 0.00 0.20 0.00 0.20 +libelle libelle nom m s 0.14 0.54 0.13 0.27 +libeller libeller ver 0.04 0.47 0.00 0.07 inf; +libelles libelle nom m p 0.14 0.54 0.01 0.27 +libellé libeller ver m s 0.04 0.47 0.04 0.07 par:pas; +libellée libeller ver f s 0.04 0.47 0.01 0.20 par:pas; +libellées libeller ver f p 0.04 0.47 0.00 0.14 par:pas; +libellule libellule nom f s 1.17 3.38 1.07 2.16 +libellules libellule nom f p 1.17 3.38 0.10 1.22 +liber liber nom m s 0.03 0.14 0.03 0.14 +libera libera nom m 0.16 0.07 0.16 0.07 +libero libero nom m s 0.00 0.07 0.00 0.07 +libertaire libertaire adj s 0.56 0.47 0.56 0.34 +libertaires libertaire nom p 0.02 0.14 0.01 0.07 +liberticide liberticide adj s 0.03 0.00 0.03 0.00 +libertin libertin nom m s 1.25 3.24 1.05 1.69 +libertinage libertinage nom m s 0.39 1.35 0.39 1.35 +libertine libertin adj f s 1.29 1.76 0.35 0.47 +libertines libertin adj f p 1.29 1.76 0.38 0.20 +libertins libertin nom m p 1.25 3.24 0.16 0.95 +liberté liberté nom f s 79.53 97.97 76.28 93.31 +libertés liberté nom f p 79.53 97.97 3.26 4.66 +libidinal libidinal adj m s 0.00 0.47 0.00 0.20 +libidinale libidinal adj f s 0.00 0.47 0.00 0.07 +libidinales libidinal adj f p 0.00 0.47 0.00 0.07 +libidinaux libidinal adj m p 0.00 0.47 0.00 0.14 +libidineuse libidineux adj f s 0.36 0.81 0.04 0.14 +libidineuses libidineux adj f p 0.36 0.81 0.00 0.07 +libidineux libidineux adj m 0.36 0.81 0.32 0.61 +libido libido nom f s 1.79 1.22 1.79 1.22 +libraire libraire nom s 2.10 5.34 1.67 4.26 +libraires libraire nom p 2.10 5.34 0.43 1.08 +librairie_papeterie librairie_papeterie nom f s 0.00 0.20 0.00 0.20 +librairie librairie nom f s 5.97 9.59 5.02 8.24 +librairies librairie nom f p 5.97 9.59 0.95 1.35 +libre_arbitre libre_arbitre nom m s 0.12 0.14 0.12 0.14 +libre_penseur libre_penseur nom m s 0.04 0.14 0.04 0.14 +libre_penseur libre_penseur nom f s 0.04 0.14 0.01 0.00 +libre_service libre_service nom m s 0.04 0.34 0.04 0.34 +libre_échange libre_échange nom m 0.32 0.14 0.32 0.14 +libre_échangiste libre_échangiste nom s 0.03 0.00 0.03 0.00 +libre libre adj s 134.42 167.91 110.36 130.14 +librement librement adv 6.80 12.84 6.80 12.84 +libres libre adj p 134.42 167.91 24.06 37.77 +librettiste librettiste nom s 0.01 0.14 0.01 0.07 +librettistes librettiste nom p 0.01 0.14 0.00 0.07 +libretto libretto nom m s 0.04 0.00 0.04 0.00 +libère libérer ver 75.77 48.51 11.66 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +libèrent libérer ver 75.77 48.51 0.91 0.68 ind:pre:3p; +libères libérer ver 75.77 48.51 1.74 0.00 ind:pre:1p;ind:pre:2s; +libéra libérer ver 75.77 48.51 0.14 2.09 ind:pas:3s; +libérable libérable nom s 0.09 0.00 0.07 0.00 +libérables libérable adj m p 0.07 0.27 0.01 0.00 +libérai libérer ver 75.77 48.51 0.02 0.07 ind:pas:1s; +libéraient libérer ver 75.77 48.51 0.16 0.81 ind:imp:3p; +libérais libérer ver 75.77 48.51 0.18 0.14 ind:imp:1s;ind:imp:2s; +libérait libérer ver 75.77 48.51 0.23 2.23 ind:imp:3s; +libéral libéral adj m s 3.07 7.23 1.12 3.04 +libérale libéral adj f s 3.07 7.23 1.11 2.03 +libéralement libéralement adv 0.00 0.47 0.00 0.47 +libérales libéral adj f p 3.07 7.23 0.14 1.49 +libéralisation libéralisation nom f s 0.04 0.27 0.04 0.27 +libéralisme libéralisme nom m s 0.22 1.49 0.22 1.49 +libéralité libéralité nom f s 0.11 0.54 0.11 0.14 +libéralités libéralité nom f p 0.11 0.54 0.00 0.41 +libérant libérer ver 75.77 48.51 0.23 2.16 par:pre; +libérateur libérateur nom m s 1.70 1.01 0.61 0.47 +libérateurs libérateur nom m p 1.70 1.01 1.07 0.47 +libération libération nom f s 8.43 45.00 8.31 44.86 +libérations libération nom f p 8.43 45.00 0.12 0.14 +libératoire libératoire adj f s 0.10 0.07 0.10 0.07 +libératrice libérateur adj f s 0.99 2.43 0.34 0.74 +libératrices libérateur adj f p 0.99 2.43 0.02 0.34 +libéraux libéral nom m p 1.47 1.62 0.97 0.61 +libérer libérer ver 75.77 48.51 26.16 14.53 inf;;inf;;inf;; +libérera libérer ver 75.77 48.51 1.48 0.27 ind:fut:3s; +libérerai libérer ver 75.77 48.51 0.62 0.00 ind:fut:1s; +libéreraient libérer ver 75.77 48.51 0.01 0.20 cnd:pre:3p; +libérerais libérer ver 75.77 48.51 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +libérerait libérer ver 75.77 48.51 0.63 0.41 cnd:pre:3s; +libéreras libérer ver 75.77 48.51 0.14 0.00 ind:fut:2s; +libérerez libérer ver 75.77 48.51 0.10 0.07 ind:fut:2p; +libérerons libérer ver 75.77 48.51 0.22 0.07 ind:fut:1p; +libéreront libérer ver 75.77 48.51 0.41 0.07 ind:fut:3p; +libérez libérer ver 75.77 48.51 6.65 0.34 imp:pre:2p;ind:pre:2p; +libérien libérien adj m s 0.01 0.00 0.01 0.00 +libériez libérer ver 75.77 48.51 0.12 0.00 ind:imp:2p; +libérions libérer ver 75.77 48.51 0.04 0.00 ind:imp:1p;sub:pre:1p; +libéro libéro nom m s 0.01 0.00 0.01 0.00 +libérons libérer ver 75.77 48.51 0.34 0.14 imp:pre:1p;ind:pre:1p; +libérât libérer ver 75.77 48.51 0.00 0.14 sub:imp:3s; +libérèrent libérer ver 75.77 48.51 0.04 0.34 ind:pas:3p; +libéré libérer ver m s 75.77 48.51 15.75 10.20 par:pas; +libérée libérer ver f s 75.77 48.51 3.60 4.46 par:pas; +libérées libérer ver f p 75.77 48.51 0.41 0.81 par:pas; +libérés libérer ver m p 75.77 48.51 3.59 3.65 par:pas; +libyen libyen adj m s 0.18 0.20 0.02 0.14 +libyenne libyen adj f s 0.18 0.20 0.14 0.07 +libyens libyen nom m p 0.11 0.07 0.10 0.00 +lice lice nom f s 0.63 1.42 0.63 1.22 +licence licence nom f s 8.27 7.84 7.37 7.03 +licences licence nom f p 8.27 7.84 0.90 0.81 +licencia licencier ver 5.93 1.49 0.01 0.00 ind:pas:3s; +licenciables licenciable adj p 0.00 0.07 0.00 0.07 +licenciai licencier ver 5.93 1.49 0.00 0.07 ind:pas:1s; +licenciaient licencier ver 5.93 1.49 0.01 0.07 ind:imp:3p; +licenciait licencier ver 5.93 1.49 0.16 0.07 ind:imp:3s; +licenciant licencier ver 5.93 1.49 0.02 0.00 par:pre; +licencie licencier ver 5.93 1.49 0.16 0.00 ind:pre:1s;ind:pre:3s; +licenciement licenciement nom m s 3.93 0.41 2.62 0.20 +licenciements licenciement nom m p 3.93 0.41 1.31 0.20 +licencient licencier ver 5.93 1.49 0.26 0.07 ind:pre:3p; +licencier licencier ver 5.93 1.49 1.61 0.27 inf; +licenciera licencier ver 5.93 1.49 0.02 0.00 ind:fut:3s; +licencieuse licencieux adj f s 0.68 0.68 0.12 0.14 +licencieuses licencieux adj f p 0.68 0.68 0.15 0.20 +licencieux licencieux adj m 0.68 0.68 0.41 0.34 +licenciez licencier ver 5.93 1.49 0.20 0.07 imp:pre:2p;ind:pre:2p; +licencié licencier ver m s 5.93 1.49 2.57 0.47 par:pas; +licenciée licencier ver f s 5.93 1.49 0.60 0.34 par:pas; +licenciées licencié nom f p 0.68 0.54 0.00 0.07 +licenciés licencier ver m p 5.93 1.49 0.31 0.07 par:pas; +lices lice nom f p 0.63 1.42 0.00 0.20 +lichant licher ver 0.27 0.61 0.00 0.20 par:pre; +lichas licher ver 0.27 0.61 0.27 0.00 ind:pas:2s; +liche liche nom m s 0.00 0.20 0.00 0.20 +lichen lichen nom m s 0.11 2.70 0.10 1.28 +lichens lichen nom m p 0.11 2.70 0.01 1.42 +licher licher ver 0.27 0.61 0.00 0.14 inf; +lichette lichette nom f s 0.15 0.74 0.15 0.61 +lichettes lichette nom f p 0.15 0.74 0.00 0.14 +lichotter lichotter ver 0.00 0.07 0.00 0.07 inf; +liché licher ver m s 0.27 0.61 0.00 0.07 par:pas; +lichée licher ver f s 0.27 0.61 0.00 0.14 par:pas; +lichées licher ver f p 0.27 0.61 0.00 0.07 par:pas; +liciers licier nom m p 0.00 0.07 0.00 0.07 +licite licite adj s 0.32 0.74 0.29 0.61 +licites licite adj f p 0.32 0.74 0.03 0.14 +licol licol nom m s 0.00 0.61 0.00 0.47 +licols licol nom m p 0.00 0.61 0.00 0.14 +licorne licorne nom f s 1.98 1.82 1.41 1.28 +licornes licorne nom f p 1.98 1.82 0.57 0.54 +licou licou nom m s 0.03 0.61 0.03 0.54 +licous licou nom m p 0.03 0.61 0.00 0.07 +licteur licteur nom m s 0.00 0.34 0.00 0.07 +licteurs licteur nom m p 0.00 0.34 0.00 0.27 +licéité licéité nom f s 0.00 0.07 0.00 0.07 +lido lido nom m s 0.07 0.00 0.07 0.00 +lidocaïne lidocaïne nom f s 0.36 0.00 0.36 0.00 +lie_de_vin lie_de_vin adj 0.00 1.08 0.00 1.08 +lie lier ver 37.17 46.08 4.02 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lied lied nom m s 0.06 0.54 0.01 0.07 +lieder lied nom m p 0.06 0.54 0.04 0.47 +lien lien nom m s 35.89 38.38 23.47 18.18 +liens lien nom m p 35.89 38.38 12.42 20.20 +lient lier ver 37.17 46.08 0.61 0.27 ind:pre:3p; +lier lier ver 37.17 46.08 5.07 6.62 inf; +liera lier ver 37.17 46.08 0.05 0.07 ind:fut:3s; +lierais lier ver 37.17 46.08 0.02 0.00 cnd:pre:1s; +lierait lier ver 37.17 46.08 0.02 0.27 cnd:pre:3s; +lieras lier ver 37.17 46.08 0.14 0.07 ind:fut:2s; +lieront lier ver 37.17 46.08 0.03 0.14 ind:fut:3p; +lierre lierre nom m s 0.43 6.35 0.42 6.08 +lierres lierre nom m p 0.43 6.35 0.01 0.27 +lies lier ver 37.17 46.08 0.29 0.00 ind:pre:2s;sub:pre:2s; +liesse liesse nom f s 1.39 2.23 1.39 2.16 +liesses liesse nom f p 1.39 2.23 0.00 0.07 +lieu_dit lieu_dit nom m s 0.00 0.88 0.00 0.88 +lieu lieu nom m s 182.00 267.57 153.12 213.38 +lieudit lieudit nom m s 0.00 0.14 0.00 0.07 +lieudits lieudit nom m p 0.00 0.14 0.00 0.07 +lieue lieue nom f s 1.93 10.47 0.19 1.08 +lieues lieue nom f p 1.93 10.47 1.74 9.39 +lieur lieur nom m s 0.01 0.14 0.01 0.00 +lieus lieu nom m p 182.00 267.57 0.15 0.07 +lieuse lieur nom f s 0.01 0.14 0.00 0.14 +lieutenant_colonel lieutenant_colonel nom m s 1.74 1.42 1.73 1.42 +lieutenant_pilote lieutenant_pilote nom m s 0.00 0.07 0.00 0.07 +lieutenant lieutenant nom m s 80.99 54.93 80.05 52.36 +lieutenant_colonel lieutenant_colonel nom m p 1.74 1.42 0.01 0.00 +lieutenants lieutenant nom m p 80.99 54.93 0.94 2.57 +lieux_dits lieux_dits nom m p 0.00 0.41 0.00 0.41 +lieux lieu nom m p 182.00 267.57 28.73 54.12 +liez lier ver 37.17 46.08 0.15 0.07 imp:pre:2p;ind:pre:2p; +lift lift nom m s 0.61 0.07 0.52 0.07 +lifter lifter ver 0.27 0.07 0.22 0.00 inf; +liftier liftier nom m s 0.39 0.54 0.36 0.41 +liftiers liftier nom m p 0.39 0.54 0.00 0.14 +lifting lifting nom m s 1.40 0.07 1.19 0.07 +liftings lifting nom m p 1.40 0.07 0.22 0.00 +liftière liftier nom f s 0.39 0.54 0.02 0.00 +lifts lift nom m p 0.61 0.07 0.10 0.00 +lifté lifté adj m s 0.05 0.14 0.00 0.07 +liftée lifté adj f s 0.05 0.14 0.04 0.07 +liftées lifter ver f p 0.27 0.07 0.01 0.07 par:pas; +ligament ligament nom m s 1.12 0.47 0.29 0.00 +ligamentaire ligamentaire adj f s 0.02 0.00 0.02 0.00 +ligaments ligament nom m p 1.12 0.47 0.83 0.47 +ligature ligature nom f s 0.46 0.20 0.30 0.07 +ligaturer ligaturer ver 0.13 0.47 0.05 0.14 inf; +ligatures ligature nom f p 0.46 0.20 0.16 0.14 +ligaturez ligaturer ver 0.13 0.47 0.01 0.07 imp:pre:2p;ind:pre:2p; +ligaturé ligaturer ver m s 0.13 0.47 0.04 0.14 par:pas; +ligaturée ligaturer ver f s 0.13 0.47 0.02 0.14 par:pas; +lige lige adj s 0.14 0.20 0.14 0.14 +liges lige adj m p 0.14 0.20 0.00 0.07 +light light adj 3.76 0.27 3.76 0.27 +ligna ligner ver 0.06 0.20 0.00 0.07 ind:pas:3s; +lignage lignage nom m s 0.13 0.41 0.13 0.34 +lignages lignage nom m p 0.13 0.41 0.00 0.07 +lignards lignard nom m p 0.00 0.07 0.00 0.07 +ligne ligne nom f s 89.83 162.30 69.42 101.01 +ligner ligner ver 0.06 0.20 0.00 0.07 inf; +lignes ligne nom f p 89.83 162.30 20.41 61.28 +ligneuses ligneux adj f p 0.00 0.41 0.00 0.20 +ligneux ligneux adj m p 0.00 0.41 0.00 0.20 +lignite lignite nom m s 0.14 0.61 0.00 0.54 +lignites lignite nom m p 0.14 0.61 0.14 0.07 +ligné ligner ver m s 0.06 0.20 0.01 0.07 par:pas; +lignée lignée nom f s 4.83 5.07 4.67 4.80 +lignées lignée nom f p 4.83 5.07 0.16 0.27 +ligot ligot nom m s 0.01 0.27 0.01 0.00 +ligota ligoter ver 4.49 5.07 0.10 0.20 ind:pas:3s; +ligotage ligotage nom m s 0.01 0.20 0.01 0.20 +ligotaient ligoter ver 4.49 5.07 0.00 0.20 ind:imp:3p; +ligotait ligoter ver 4.49 5.07 0.01 0.27 ind:imp:3s; +ligotant ligoter ver 4.49 5.07 0.01 0.07 par:pre; +ligote ligoter ver 4.49 5.07 0.91 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ligotent ligoter ver 4.49 5.07 0.16 0.61 ind:pre:3p; +ligoter ligoter ver 4.49 5.07 0.48 0.61 inf; +ligoterai ligoter ver 4.49 5.07 0.14 0.00 ind:fut:1s; +ligoterait ligoter ver 4.49 5.07 0.01 0.00 cnd:pre:3s; +ligoterons ligoter ver 4.49 5.07 0.10 0.00 ind:fut:1p; +ligotez ligoter ver 4.49 5.07 0.80 0.00 imp:pre:2p;ind:pre:2p; +ligotons ligoter ver 4.49 5.07 0.01 0.00 imp:pre:1p; +ligots ligot nom m p 0.01 0.27 0.00 0.27 +ligotèrent ligoter ver 4.49 5.07 0.00 0.07 ind:pas:3p; +ligoté ligoter ver m s 4.49 5.07 0.91 1.69 par:pas; +ligotée ligoter ver f s 4.49 5.07 0.29 0.54 par:pas; +ligotées ligoter ver f p 4.49 5.07 0.01 0.14 par:pas; +ligotés ligoter ver m p 4.49 5.07 0.53 0.34 par:pas; +liguaient liguer ver 1.07 1.76 0.01 0.14 ind:imp:3p; +liguait liguer ver 1.07 1.76 0.01 0.27 ind:imp:3s; +liguant liguer ver 1.07 1.76 0.01 0.07 par:pre; +ligue ligue nom f s 2.97 2.09 2.74 1.42 +liguent liguer ver 1.07 1.76 0.17 0.00 ind:pre:3p; +liguer liguer ver 1.07 1.76 0.22 0.27 inf; +ligues ligue nom f p 2.97 2.09 0.23 0.68 +ligueur ligueur nom m s 0.00 0.27 0.00 0.14 +ligueurs ligueur nom m p 0.00 0.27 0.00 0.14 +liguez liguer ver 1.07 1.76 0.16 0.00 ind:pre:2p; +ligure ligure adj f s 0.00 0.20 0.00 0.14 +ligures ligure adj p 0.00 0.20 0.00 0.07 +liguèrent liguer ver 1.07 1.76 0.00 0.07 ind:pas:3p; +ligué liguer ver m s 1.07 1.76 0.15 0.00 par:pas; +liguées liguer ver f p 1.07 1.76 0.03 0.34 par:pas; +ligués liguer ver m p 1.07 1.76 0.13 0.41 par:pas; +lilas lilas nom m 2.28 5.47 2.28 5.47 +liliacées liliacée nom f p 0.14 0.00 0.14 0.00 +lilial lilial adj m s 0.00 0.68 0.00 0.41 +liliale lilial adj f s 0.00 0.68 0.00 0.27 +lilium lilium nom m s 0.01 0.07 0.01 0.07 +lilliputien lilliputien adj m s 0.36 0.68 0.12 0.41 +lilliputienne lilliputien adj f s 0.36 0.68 0.02 0.20 +lilliputiens lilliputien adj m p 0.36 0.68 0.22 0.07 +lillois lillois nom m 0.00 0.27 0.00 0.20 +lilloise lillois nom f s 0.00 0.27 0.00 0.07 +lima limer ver 1.07 3.11 0.00 0.07 ind:pas:3s; +limace limace nom f s 4.01 6.35 2.89 4.05 +limaces limace nom f p 4.01 6.35 1.12 2.30 +limage limage nom m s 0.26 0.14 0.26 0.14 +limaient limer ver 1.07 3.11 0.00 0.07 ind:imp:3p; +limaille limaille nom f s 0.02 1.55 0.02 1.55 +limait limer ver 1.07 3.11 0.00 0.54 ind:imp:3s; +liman liman nom m s 0.01 0.00 0.01 0.00 +limande limande nom f s 0.09 0.68 0.08 0.61 +limandes limande nom f p 0.09 0.68 0.01 0.07 +limant limer ver 1.07 3.11 0.00 0.14 par:pre; +limaçon limaçon nom m s 0.02 0.54 0.01 0.27 +limaçons limaçon nom m p 0.02 0.54 0.01 0.27 +limbe limbe nom m s 0.81 3.18 0.00 0.07 +limbes limbe nom m p 0.81 3.18 0.81 3.11 +limbique limbique adj s 0.31 0.00 0.31 0.00 +limbo limbo nom m s 0.36 0.00 0.36 0.00 +lime lime nom f s 1.56 3.65 1.48 2.91 +liment limer ver 1.07 3.11 0.01 0.07 ind:pre:3p; +limer limer ver 1.07 3.11 0.50 0.74 inf; +limerick limerick nom m s 0.04 0.07 0.03 0.00 +limericks limerick nom m p 0.04 0.07 0.01 0.07 +limes lime nom f p 1.56 3.65 0.08 0.74 +limette limette nom f s 0.07 0.00 0.07 0.00 +limez limer ver 1.07 3.11 0.00 0.07 ind:pre:2p; +limier limier nom m s 1.12 0.88 0.77 0.54 +limiers limier nom m p 1.12 0.88 0.35 0.34 +liminaire liminaire adj s 0.07 0.00 0.07 0.00 +limions limer ver 1.07 3.11 0.00 0.07 ind:imp:1p; +limita limiter ver 11.19 19.26 0.01 0.00 ind:pas:3s; +limitai limiter ver 11.19 19.26 0.00 0.20 ind:pas:1s; +limitaient limiter ver 11.19 19.26 0.12 0.41 ind:imp:3p; +limitais limiter ver 11.19 19.26 0.02 0.07 ind:imp:1s;ind:imp:2s; +limitait limiter ver 11.19 19.26 0.13 2.36 ind:imp:3s; +limitant limiter ver 11.19 19.26 0.09 1.28 par:pre; +limitatif limitatif adj m s 0.00 0.27 0.00 0.14 +limitation limitation nom f s 0.74 0.95 0.27 0.61 +limitations limitation nom f p 0.74 0.95 0.47 0.34 +limitative limitatif adj f s 0.00 0.27 0.00 0.14 +limite limite nom f s 32.77 47.23 13.69 21.76 +limitent limiter ver 11.19 19.26 0.23 0.74 ind:pre:3p; +limiter limiter ver 11.19 19.26 2.62 4.46 inf; +limitera limiter ver 11.19 19.26 0.13 0.14 ind:fut:3s; +limiterai limiter ver 11.19 19.26 0.14 0.07 ind:fut:1s; +limiteraient limiter ver 11.19 19.26 0.01 0.20 cnd:pre:3p; +limiterait limiter ver 11.19 19.26 0.05 0.07 cnd:pre:3s; +limiteront limiter ver 11.19 19.26 0.05 0.00 ind:fut:3p; +limites limite nom f p 32.77 47.23 19.09 25.47 +limiteur limiteur nom m s 0.02 0.00 0.02 0.00 +limitez limiter ver 11.19 19.26 0.36 0.00 imp:pre:2p;ind:pre:2p; +limitions limiter ver 11.19 19.26 0.01 0.07 ind:imp:1p; +limitons limiter ver 11.19 19.26 0.14 0.07 imp:pre:1p;ind:pre:1p; +limitrophe limitrophe adj s 0.00 0.54 0.00 0.07 +limitrophes limitrophe adj p 0.00 0.54 0.00 0.47 +limité limiter ver m s 11.19 19.26 2.10 2.30 par:pas; +limitée limité adj f s 3.66 6.35 1.30 1.28 +limitées limité adj f p 3.66 6.35 0.68 1.35 +limités limiter ver m p 11.19 19.26 0.36 0.68 par:pas; +limoge limoger ver 0.51 0.34 0.00 0.07 ind:pre:3s; +limogeage limogeage nom m s 0.11 0.07 0.11 0.07 +limoger limoger ver 0.51 0.34 0.18 0.00 inf; +limoges limoger ver 0.51 0.34 0.01 0.20 ind:pre:2s; +limogé limoger ver m s 0.51 0.34 0.32 0.07 par:pas; +limon limon nom m s 0.53 3.45 0.53 2.97 +limonade limonade nom f s 6.17 6.15 6.06 5.68 +limonades limonade nom f p 6.17 6.15 0.11 0.47 +limonadier limonadier nom m s 0.03 0.54 0.03 0.14 +limonadiers limonadier nom m p 0.03 0.54 0.00 0.27 +limonadière limonadier nom f s 0.03 0.54 0.00 0.14 +limonaire limonaire nom m s 0.00 0.54 0.00 0.54 +limoneuse limoneux adj f s 0.01 0.61 0.01 0.27 +limoneuses limoneux adj f p 0.01 0.61 0.00 0.14 +limoneux limoneux adj m s 0.01 0.61 0.00 0.20 +limonier limonier nom m s 0.00 0.14 0.00 0.07 +limonière limonier nom f s 0.00 0.14 0.00 0.07 +limons limon nom m p 0.53 3.45 0.00 0.47 +limoselle limoselle nom f s 0.01 0.00 0.01 0.00 +limousin limousin adj m s 2.04 1.15 0.00 0.14 +limousine limousine nom f s 3.93 3.65 3.34 2.97 +limousines limousine nom f p 3.93 3.65 0.58 0.68 +limousins limousin adj m p 2.04 1.15 0.00 0.07 +limpide limpide adj s 2.66 12.16 2.32 9.86 +limpides limpide adj p 2.66 12.16 0.34 2.30 +limpidité limpidité nom f s 0.01 1.62 0.01 1.62 +limé limer ver m s 1.07 3.11 0.16 0.54 par:pas; +limée limer ver f s 1.07 3.11 0.01 0.14 par:pas; +lin lin nom m s 2.35 6.08 1.76 6.01 +linaire linaire nom f s 0.00 0.07 0.00 0.07 +linceul linceul nom m s 1.98 2.70 1.94 2.30 +linceuls linceul nom m p 1.98 2.70 0.04 0.41 +lindor lindor nom m s 0.27 0.00 0.27 0.00 +line line nom f s 1.08 0.07 1.08 0.07 +linga linga nom m s 0.01 0.00 0.01 0.00 +lingala lingala nom m s 0.02 0.00 0.02 0.00 +lingam lingam nom m s 0.54 0.07 0.54 0.07 +linge linge nom m s 17.04 47.30 16.75 44.53 +linger linger adj m s 0.02 0.41 0.01 0.14 +lingerie lingerie nom f s 4.13 5.34 4.11 4.73 +lingeries lingerie nom f p 4.13 5.34 0.02 0.61 +linges linge nom m p 17.04 47.30 0.30 2.77 +lingette lingette nom f s 0.66 0.00 0.48 0.00 +lingettes lingette nom f p 0.66 0.00 0.18 0.00 +lingot lingot nom m s 1.58 2.36 0.47 1.15 +lingotière lingotier nom f s 0.00 0.07 0.00 0.07 +lingots lingot nom m p 1.58 2.36 1.11 1.22 +lingère lingère nom f s 0.04 0.68 0.04 0.47 +lingères lingère nom f p 0.04 0.68 0.00 0.20 +lingual lingual adj m s 0.04 0.00 0.01 0.00 +linguale lingual adj f s 0.04 0.00 0.02 0.00 +linguaux lingual adj m p 0.04 0.00 0.01 0.00 +linguiste linguiste nom s 0.50 0.68 0.46 0.41 +linguistes linguiste nom p 0.50 0.68 0.04 0.27 +linguistique linguistique nom f s 0.54 0.61 0.54 0.61 +linguistiquement linguistiquement adv 0.01 0.07 0.01 0.07 +linguistiques linguistique adj p 0.38 1.55 0.14 0.74 +liniment liniment nom m s 0.03 0.07 0.03 0.07 +lino lino nom m s 0.38 1.69 0.38 1.55 +linoléum linoléum nom m s 0.18 2.64 0.18 2.36 +linoléums linoléum nom m p 0.18 2.64 0.00 0.27 +linon linon nom m s 0.05 0.74 0.05 0.68 +linons linon nom m p 0.05 0.74 0.00 0.07 +linos lino nom m p 0.38 1.69 0.00 0.14 +linotte linotte nom f s 0.81 0.54 0.69 0.27 +linottes linotte nom f p 0.81 0.54 0.12 0.27 +linotype linotype nom f s 0.01 0.41 0.01 0.14 +linotypes linotype nom f p 0.01 0.41 0.00 0.27 +linotypistes linotypiste nom p 0.00 0.20 0.00 0.20 +lins lin nom m p 2.35 6.08 0.59 0.07 +linteau linteau nom m s 0.24 1.08 0.17 0.95 +linteaux linteau nom m p 0.24 1.08 0.07 0.14 +linter linter nom m s 0.01 0.00 0.01 0.00 +linéaire linéaire adj s 0.39 1.08 0.30 0.88 +linéairement linéairement adv 0.01 0.00 0.01 0.00 +linéaires linéaire adj p 0.39 1.08 0.09 0.20 +linéaments linéament nom m p 0.00 0.54 0.00 0.54 +liâmes lier ver 37.17 46.08 0.00 0.14 ind:pas:1p; +lion lion nom m s 20.70 33.04 14.58 20.14 +lionceau lionceau nom m s 0.21 1.01 0.21 0.61 +lionceaux lionceau nom m p 0.21 1.01 0.00 0.41 +lionne lion nom f s 20.70 33.04 0.79 2.43 +lionnes lionne nom f p 0.16 0.00 0.16 0.00 +lions lion nom m p 20.70 33.04 5.33 8.24 +liât lier ver 37.17 46.08 0.00 0.34 sub:imp:3s; +lipase lipase nom f s 0.01 0.00 0.01 0.00 +lipide lipide nom m s 0.06 0.20 0.01 0.07 +lipides lipide nom m p 0.06 0.20 0.04 0.14 +lipiodol lipiodol nom m s 0.01 0.00 0.01 0.00 +lipome lipome nom m s 0.03 0.00 0.03 0.00 +liposome liposome nom m s 0.01 0.00 0.01 0.00 +liposuccion liposuccion nom f s 1.04 0.00 0.75 0.00 +liposuccions liposuccion nom f p 1.04 0.00 0.29 0.00 +liposucer liposucer ver 0.20 0.00 0.20 0.00 inf; +lipothymie lipothymie nom f s 0.10 0.00 0.10 0.00 +lippe lippe nom f s 0.14 1.89 0.14 1.69 +lippes lippe nom f p 0.14 1.89 0.00 0.20 +lippu lippu adj m s 0.17 1.01 0.17 0.41 +lippue lippu adj f s 0.17 1.01 0.00 0.47 +lippées lippée nom f p 0.00 0.07 0.00 0.07 +lippues lippu adj f p 0.17 1.01 0.00 0.07 +lippus lippu adj m p 0.17 1.01 0.00 0.07 +liquette liquette nom f s 0.19 1.49 0.19 1.22 +liquettes liquette nom f p 0.19 1.49 0.00 0.27 +liqueur liqueur nom f s 5.00 4.26 3.46 2.36 +liqueurs liqueur nom f p 5.00 4.26 1.55 1.89 +liquida liquider ver 9.76 10.74 0.10 0.27 ind:pas:3s; +liquidai liquider ver 9.76 10.74 0.00 0.07 ind:pas:1s; +liquidaient liquider ver 9.76 10.74 0.00 0.20 ind:imp:3p; +liquidait liquider ver 9.76 10.74 0.02 0.20 ind:imp:3s; +liquidambars liquidambar nom m p 0.00 0.07 0.00 0.07 +liquidant liquider ver 9.76 10.74 0.02 0.20 par:pre; +liquidateur liquidateur nom m s 0.07 0.20 0.05 0.14 +liquidateurs liquidateur nom m p 0.07 0.20 0.01 0.07 +liquidation liquidation nom f s 0.81 3.11 0.70 3.04 +liquidations liquidation nom f p 0.81 3.11 0.11 0.07 +liquidative liquidatif adj f s 0.02 0.00 0.02 0.00 +liquide liquide nom m s 18.41 19.19 17.74 17.91 +liquident liquider ver 9.76 10.74 0.04 0.07 ind:pre:3p; +liquider liquider ver 9.76 10.74 3.78 4.93 inf; +liquidera liquider ver 9.76 10.74 0.06 0.14 ind:fut:3s; +liquiderai liquider ver 9.76 10.74 0.04 0.00 ind:fut:1s; +liquiderais liquider ver 9.76 10.74 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +liquiderait liquider ver 9.76 10.74 0.14 0.07 cnd:pre:3s; +liquiderons liquider ver 9.76 10.74 0.04 0.00 ind:fut:1p; +liquideront liquider ver 9.76 10.74 0.00 0.14 ind:fut:3p; +liquides liquide nom m p 18.41 19.19 0.68 1.28 +liquidez liquider ver 9.76 10.74 0.37 0.00 imp:pre:2p;ind:pre:2p; +liquidions liquider ver 9.76 10.74 0.00 0.07 ind:imp:1p; +liquidité liquidité nom f s 0.70 0.54 0.03 0.07 +liquidités liquidité nom f p 0.70 0.54 0.67 0.47 +liquidons liquider ver 9.76 10.74 0.26 0.07 imp:pre:1p;ind:pre:1p; +liquidé liquider ver m s 9.76 10.74 2.45 1.62 par:pas; +liquidée liquider ver f s 9.76 10.74 0.31 0.95 par:pas; +liquidées liquider ver f p 9.76 10.74 0.02 0.20 par:pas; +liquidés liquider ver m p 9.76 10.74 0.54 0.61 par:pas; +liquor liquor nom m s 0.04 0.00 0.04 0.00 +liquoreux liquoreux adj m s 0.00 0.27 0.00 0.27 +liquoriste liquoriste nom s 0.01 0.07 0.01 0.07 +liquéfaction liquéfaction nom f s 0.04 0.27 0.04 0.27 +liquéfiaient liquéfier ver 1.09 2.43 0.00 0.27 ind:imp:3p; +liquéfiait liquéfier ver 1.09 2.43 0.00 0.47 ind:imp:3s; +liquéfiante liquéfiant adj f s 0.00 0.07 0.00 0.07 +liquéfie liquéfier ver 1.09 2.43 0.78 0.20 ind:pre:1s;ind:pre:3s; +liquéfient liquéfier ver 1.09 2.43 0.04 0.14 ind:pre:3p; +liquéfier liquéfier ver 1.09 2.43 0.14 0.47 inf; +liquéfièrent liquéfier ver 1.09 2.43 0.00 0.07 ind:pas:3p; +liquéfié liquéfier ver m s 1.09 2.43 0.04 0.27 par:pas; +liquéfiée liquéfier ver f s 1.09 2.43 0.03 0.34 par:pas; +liquéfiées liquéfier ver f p 1.09 2.43 0.01 0.14 par:pas; +liquéfiés liquéfier ver m p 1.09 2.43 0.05 0.07 par:pas; +lira lire ver 281.09 324.80 1.88 1.82 ind:fut:3s; +lirai lire ver 281.09 324.80 3.36 1.28 ind:fut:1s; +liraient lire ver 281.09 324.80 0.03 0.34 cnd:pre:3p; +lirais lire ver 281.09 324.80 0.74 0.81 cnd:pre:1s;cnd:pre:2s; +lirait lire ver 281.09 324.80 0.30 3.31 cnd:pre:3s; +liras lire ver 281.09 324.80 1.97 0.81 ind:fut:2s; +lire lire ver 281.09 324.80 89.58 103.58 inf; +lires lire nom f p 28.88 10.27 18.98 1.42 +lirette lirette nom f s 0.02 0.00 0.02 0.00 +lirez lire ver 281.09 324.80 0.68 0.81 ind:fut:2p; +liriez lire ver 281.09 324.80 0.09 0.00 cnd:pre:2p; +liron liron nom m s 0.14 0.54 0.14 0.54 +lirons lire ver 281.09 324.80 0.08 0.07 ind:fut:1p; +liront lire ver 281.09 324.80 0.17 0.27 ind:fut:3p; +lis lire ver 281.09 324.80 39.81 16.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +lisaient lire ver 281.09 324.80 0.22 4.73 ind:imp:3p; +lisais lire ver 281.09 324.80 5.08 10.54 ind:imp:1s;ind:imp:2s; +lisait lire ver 281.09 324.80 3.88 39.12 ind:imp:3s; +lisant lire ver 281.09 324.80 2.95 13.31 par:pre; +lise lire ver 281.09 324.80 3.20 2.09 sub:pre:1s;sub:pre:3s; +lisent lire ver 281.09 324.80 2.67 3.72 ind:pre:3p; +liseron liseron nom m s 0.02 1.08 0.01 0.61 +liserons liseron nom m p 0.02 1.08 0.01 0.47 +liseré liseré nom m s 0.02 0.81 0.02 0.74 +liserée liserer ver f s 0.00 0.14 0.00 0.07 par:pas; +liserés liseré nom m p 0.02 0.81 0.00 0.07 +lises lire ver 281.09 324.80 1.12 0.41 sub:pre:2s; +liseur liseur nom m s 0.06 1.49 0.00 0.68 +liseuse liseur nom f s 0.06 1.49 0.06 0.68 +liseuses liseur nom f p 0.06 1.49 0.00 0.14 +lisez lire ver 281.09 324.80 16.78 5.00 imp:pre:2p;ind:pre:2p; +lisibilité lisibilité nom f s 0.01 0.00 0.01 0.00 +lisible lisible adj s 0.84 3.58 0.40 2.50 +lisiblement lisiblement adv 0.11 0.20 0.11 0.20 +lisibles lisible adj p 0.84 3.58 0.44 1.08 +lisier lisier nom m s 0.01 0.00 0.01 0.00 +lisiez lire ver 281.09 324.80 0.96 0.95 ind:imp:2p; +lisions lire ver 281.09 324.80 0.27 1.55 ind:imp:1p; +lisière lisière nom f s 0.67 18.24 0.67 16.49 +lisières lisière nom f p 0.67 18.24 0.00 1.76 +lisons lire ver 281.09 324.80 1.56 0.81 imp:pre:1p;ind:pre:1p; +lissa lisser ver 2.04 11.35 0.02 1.15 ind:pas:3s; +lissage lissage nom m s 0.01 0.14 0.01 0.14 +lissai lisser ver 2.04 11.35 0.00 0.14 ind:pas:1s; +lissaient lisser ver 2.04 11.35 0.00 0.34 ind:imp:3p; +lissais lisser ver 2.04 11.35 0.00 0.07 ind:imp:1s; +lissait lisser ver 2.04 11.35 0.00 1.42 ind:imp:3s; +lissant lisser ver 2.04 11.35 0.00 1.96 par:pre; +lisse lisse adj s 3.48 33.58 2.71 24.26 +lissent lisser ver 2.04 11.35 0.00 0.34 ind:pre:3p; +lisser lisser ver 2.04 11.35 0.34 1.49 inf; +lissera lisser ver 2.04 11.35 0.00 0.07 ind:fut:3s; +lisserait lisser ver 2.04 11.35 0.00 0.14 cnd:pre:3s; +lisses lisse adj p 3.48 33.58 0.77 9.32 +lisseur lisseur nom m s 0.00 0.14 0.00 0.07 +lisseurs lisseur nom m p 0.00 0.14 0.00 0.07 +lissez lisser ver 2.04 11.35 0.70 0.00 imp:pre:2p; +lissons lisser ver 2.04 11.35 0.14 0.14 imp:pre:1p;ind:pre:1p; +lissotriche lissotriche adj s 0.00 0.07 0.00 0.07 +lissèrent lisser ver 2.04 11.35 0.00 0.07 ind:pas:3p; +lissé lisser ver m s 2.04 11.35 0.22 0.88 par:pas; +lissée lisser ver f s 2.04 11.35 0.15 0.34 par:pas; +lissées lisser ver f p 2.04 11.35 0.10 0.20 par:pas; +lissés lisser ver m p 2.04 11.35 0.01 0.68 par:pas; +liste liste nom f s 71.56 24.32 69.07 18.92 +listel listel nom m s 0.00 0.07 0.00 0.07 +lister lister ver 1.60 0.00 1.07 0.00 inf; +listeria listeria nom f 0.01 0.00 0.01 0.00 +listes liste nom f p 71.56 24.32 2.49 5.41 +listez lister ver 1.60 0.00 0.07 0.00 imp:pre:2p; +listing listing nom m s 0.26 0.00 0.23 0.00 +listings listing nom m p 0.26 0.00 0.02 0.00 +liston liston nom m s 4.14 0.00 4.14 0.00 +listé lister ver m s 1.60 0.00 0.23 0.00 par:pas; +listée lister ver f s 1.60 0.00 0.10 0.00 par:pas; +listées lister ver f p 1.60 0.00 0.04 0.00 par:pas; +listés lister ver m p 1.60 0.00 0.09 0.00 par:pas; +lisérait lisérer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +liséré liséré nom m s 0.00 2.50 0.00 2.16 +lisérés liséré nom m p 0.00 2.50 0.00 0.34 +lit_bateau lit_bateau nom m s 0.00 0.81 0.00 0.81 +lit_cage lit_cage nom m s 0.01 1.62 0.01 1.15 +lit_divan lit_divan nom m s 0.00 0.20 0.00 0.20 +lit lit nom m s 184.27 338.18 176.10 315.74 +lita liter ver 0.82 0.00 0.34 0.00 ind:pas:3s; +litanie litanie nom f s 0.59 7.09 0.56 4.53 +litanies litanie nom f p 0.59 7.09 0.03 2.57 +lite liter ver 0.82 0.00 0.08 0.00 imp:pre:2s;ind:pre:3s; +liteaux liteau nom m p 0.00 0.07 0.00 0.07 +liter liter ver 0.82 0.00 0.27 0.00 inf; +literie literie nom f s 0.29 2.03 0.28 1.96 +literies literie nom f p 0.29 2.03 0.01 0.07 +liège liège nom m s 0.46 3.78 0.46 3.58 +lièges liège nom m p 0.46 3.78 0.00 0.20 +lithiase lithiase nom f s 0.04 0.00 0.04 0.00 +lithinés lithiné adj m p 0.00 0.27 0.00 0.27 +lithique lithique adj s 0.01 0.00 0.01 0.00 +lithium lithium nom m s 0.94 0.14 0.94 0.14 +litho litho nom f s 0.02 0.20 0.01 0.14 +lithographe lithographe nom s 0.00 0.14 0.00 0.14 +lithographie lithographie nom f s 0.26 0.54 0.25 0.41 +lithographies lithographie nom f p 0.26 0.54 0.01 0.14 +lithographié lithographier ver m s 0.00 0.07 0.00 0.07 par:pas; +lithophages lithophage adj m p 0.00 0.07 0.00 0.07 +lithos litho nom f p 0.02 0.20 0.01 0.07 +lithosphère lithosphère nom f s 0.03 0.00 0.03 0.00 +lithotripsie lithotripsie nom f s 0.03 0.00 0.03 0.00 +lithotriteur lithotriteur nom m s 0.01 0.00 0.01 0.00 +lièrent lier ver 37.17 46.08 0.03 0.34 ind:pas:3p; +lithuanien lithuanien adj m s 0.08 0.27 0.07 0.20 +lithuanienne lithuanien adj f s 0.08 0.27 0.01 0.00 +lithuaniennes lithuanien adj f p 0.08 0.27 0.00 0.07 +lièvre lièvre nom m s 4.30 7.03 3.36 4.73 +lièvres lièvre nom m p 4.30 7.03 0.94 2.30 +litige litige nom m s 0.78 1.42 0.57 0.74 +litiges litige nom m p 0.78 1.42 0.20 0.68 +litigieuse litigieux adj f s 0.07 0.34 0.02 0.20 +litigieux litigieux adj m s 0.07 0.34 0.04 0.14 +litière litière nom f s 0.82 6.15 0.81 5.68 +litières litière nom f p 0.82 6.15 0.01 0.47 +litorne litorne nom f s 0.00 0.07 0.00 0.07 +litote litote nom f s 0.03 0.41 0.03 0.20 +litotes litote nom f p 0.03 0.41 0.00 0.20 +litre litre nom s 10.19 18.51 2.75 10.20 +litrer litrer ver 0.00 0.07 0.00 0.07 inf; +litres litre nom p 10.19 18.51 7.44 8.31 +litron litron nom m s 0.20 3.18 0.20 1.82 +litronaient litroner ver 0.00 0.14 0.00 0.07 ind:imp:3p; +litrons litron nom m p 0.20 3.18 0.00 1.35 +litroné litroner ver m s 0.00 0.14 0.00 0.07 par:pas; +lit_cage lit_cage nom m p 0.01 1.62 0.00 0.47 +lits lit nom m p 184.27 338.18 8.17 22.43 +littoral littoral nom m s 0.21 3.11 0.20 3.11 +littorale littoral adj f s 0.23 0.34 0.07 0.14 +littoraux littoral nom m p 0.21 3.11 0.01 0.00 +littéraire littéraire adj s 3.09 17.16 2.64 11.82 +littérairement littérairement adv 0.01 0.14 0.01 0.14 +littéraires littéraire adj p 3.09 17.16 0.45 5.34 +littéral littéral adj m s 1.08 1.49 0.72 0.61 +littérale littéral adj f s 1.08 1.49 0.34 0.74 +littéralement littéralement adv 5.27 10.95 5.27 10.95 +littérales littéral adj f p 1.08 1.49 0.00 0.14 +littéralité littéralité nom f s 0.00 0.07 0.00 0.07 +littérateur littérateur nom m s 0.23 1.01 0.23 0.47 +littérateurs littérateur nom m p 0.23 1.01 0.00 0.54 +littérature littérature nom f s 8.48 36.89 8.48 36.82 +littératures littérature nom f p 8.48 36.89 0.00 0.07 +littéraux littéral adj m p 1.08 1.49 0.01 0.00 +lité liter ver m s 0.82 0.00 0.14 0.00 par:pas; +lituanien lituanien adj m s 0.69 0.88 0.44 0.07 +lituanienne lituanien adj f s 0.69 0.88 0.25 0.27 +lituaniennes lituanien adj f p 0.69 0.88 0.00 0.34 +lituaniens lituanien nom m p 0.21 0.47 0.21 0.27 +litée litée nom f s 0.00 0.07 0.00 0.07 +liturgie liturgie nom f s 0.03 2.16 0.03 2.09 +liturgies liturgie nom f p 0.03 2.16 0.00 0.07 +liturgique liturgique adj s 0.16 1.08 0.16 0.54 +liturgiques liturgique adj p 0.16 1.08 0.00 0.54 +lié lier ver m s 37.17 46.08 12.54 10.68 par:pas; +liée lier ver f s 37.17 46.08 3.96 7.50 par:pas; +liées lier ver f p 37.17 46.08 2.58 2.84 par:pas; +liégeois liégeois adj m 0.00 0.14 0.00 0.14 +liés lier ver m p 37.17 46.08 6.12 6.55 par:pas; +livarot livarot nom m s 0.00 0.27 0.00 0.27 +live live adj 3.90 0.27 3.90 0.27 +livide livide adj s 0.74 10.54 0.62 8.78 +livides livide adj p 0.74 10.54 0.12 1.76 +lividité lividité nom f s 0.40 0.00 0.40 0.00 +living_room living_room nom m s 0.23 2.23 0.23 2.23 +living living nom m s 0.87 2.84 0.87 2.77 +livings living nom m p 0.87 2.84 0.00 0.07 +livoniennes livonienne nom f p 0.00 0.07 0.00 0.07 +livra livrer ver 56.53 84.93 0.14 2.50 ind:pas:3s; +livrable livrable adj s 0.02 0.07 0.00 0.07 +livrables livrable adj f p 0.02 0.07 0.02 0.00 +livrai livrer ver 56.53 84.93 0.01 0.34 ind:pas:1s; +livraient livrer ver 56.53 84.93 0.44 4.19 ind:imp:3p; +livrais livrer ver 56.53 84.93 0.38 1.22 ind:imp:1s;ind:imp:2s; +livraison livraison nom f s 13.68 8.58 10.69 5.47 +livraisons livraison nom f p 13.68 8.58 2.98 3.11 +livrait livrer ver 56.53 84.93 0.74 7.91 ind:imp:3s; +livrant livrer ver 56.53 84.93 0.98 3.65 par:pre; +livre_cassette livre_cassette nom m s 0.03 0.00 0.03 0.00 +livre livre nom 198.11 286.49 112.43 151.76 +livrent livrer ver 56.53 84.93 1.44 2.84 ind:pre:3p; +livrer livrer ver 56.53 84.93 21.42 25.20 inf;;inf;;inf;; +livrera livrer ver 56.53 84.93 0.97 0.34 ind:fut:3s; +livrerai livrer ver 56.53 84.93 0.62 0.41 ind:fut:1s; +livreraient livrer ver 56.53 84.93 0.04 0.54 cnd:pre:3p; +livrerais livrer ver 56.53 84.93 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +livrerait livrer ver 56.53 84.93 0.18 0.95 cnd:pre:3s; +livreras livrer ver 56.53 84.93 0.24 0.14 ind:fut:2s; +livrerez livrer ver 56.53 84.93 0.14 0.00 ind:fut:2p; +livrerons livrer ver 56.53 84.93 0.10 0.07 ind:fut:1p; +livreront livrer ver 56.53 84.93 0.47 0.20 ind:fut:3p; +livres_club livres_club nom m p 0.00 0.07 0.00 0.07 +livres livre nom p 198.11 286.49 85.69 134.73 +livresque livresque adj s 0.02 0.74 0.02 0.68 +livresques livresque adj f p 0.02 0.74 0.00 0.07 +livret livret nom m s 3.26 5.41 3.10 4.73 +livrets livret nom m p 3.26 5.41 0.16 0.68 +livreur livreur nom m s 4.46 3.99 3.81 2.91 +livreurs livreur nom m p 4.46 3.99 0.57 1.08 +livreuse livreur nom f s 4.46 3.99 0.08 0.00 +livrez livrer ver 56.53 84.93 3.28 0.20 imp:pre:2p;ind:pre:2p; +livrions livrer ver 56.53 84.93 0.02 0.20 ind:imp:1p; +livrâmes livrer ver 56.53 84.93 0.01 0.14 ind:pas:1p; +livrons livrer ver 56.53 84.93 0.70 0.27 imp:pre:1p;ind:pre:1p; +livrât livrer ver 56.53 84.93 0.00 0.54 sub:imp:3s; +livrèrent livrer ver 56.53 84.93 0.06 0.61 ind:pas:3p; +livré livrer ver m s 56.53 84.93 8.03 11.08 par:pas; +livrée livrer ver f s 56.53 84.93 1.91 4.73 par:pas; +livrées livrer ver f p 56.53 84.93 0.57 1.96 par:pas; +livrés livrer ver m p 56.53 84.93 2.64 4.59 par:pas; +livèche livèche nom f s 0.14 0.00 0.14 0.00 +llanos llano nom m p 0.00 0.07 0.00 0.07 +lloyd lloyd nom m s 0.01 0.00 0.01 0.00 +là_bas là_bas adv 263.15 117.70 263.15 117.70 +là_dedans là_dedans adv 74.00 23.58 74.00 23.58 +là_dehors là_dehors adv 1.30 0.00 1.30 0.00 +là_derrière là_derrière adv 1.14 0.14 1.14 0.14 +là_dessous là_dessous adv 7.12 4.32 7.12 4.32 +là_dessus là_dessus adv 30.89 32.50 30.89 32.50 +là_devant là_devant adv 0.00 0.14 0.00 0.14 +là_haut là_haut adv 67.78 42.70 67.78 42.70 +là là ono 38.53 4.26 38.53 4.26 +loader loader nom m s 0.14 0.00 0.14 0.00 +lob lob nom m s 0.04 0.27 0.04 0.20 +lobaire lobaire adj f s 0.01 0.00 0.01 0.00 +lobbies lobbies nom m p 0.29 0.00 0.29 0.00 +lobby lobby nom m s 0.83 0.27 0.83 0.27 +lobbying lobbying nom m s 0.07 0.00 0.07 0.00 +lobe lobe nom m s 3.58 2.09 2.84 1.35 +lobectomie lobectomie nom f s 0.03 0.07 0.03 0.07 +lober lober ver 0.05 0.00 0.03 0.00 inf; +lobes lobe nom m p 3.58 2.09 0.74 0.74 +lobotomie lobotomie nom f s 0.83 0.14 0.83 0.14 +lobotomiser lobotomiser ver 0.31 0.07 0.04 0.00 inf; +lobotomisé lobotomiser ver m s 0.31 0.07 0.25 0.07 par:pas; +lobotomisée lobotomiser ver f s 0.31 0.07 0.03 0.00 par:pas; +lobs lob nom m p 0.04 0.27 0.00 0.07 +lobé lober ver m s 0.05 0.00 0.02 0.00 par:pas; +lobée lobé adj f s 0.01 0.00 0.01 0.00 +lobulaire lobulaire adj m s 0.00 0.07 0.00 0.07 +local local adj m s 18.11 22.84 6.05 6.76 +locale local adj f s 18.11 22.84 7.31 6.69 +localement localement adv 0.22 0.88 0.22 0.88 +locales local adj f p 18.11 22.84 2.93 4.80 +localisa localiser ver 12.87 2.84 0.00 0.34 ind:pas:3s; +localisable localisable adj m s 0.04 0.07 0.04 0.07 +localisaient localiser ver 12.87 2.84 0.00 0.07 ind:imp:3p; +localisais localiser ver 12.87 2.84 0.01 0.07 ind:imp:1s;ind:imp:2s; +localisait localiser ver 12.87 2.84 0.02 0.00 ind:imp:3s; +localisant localiser ver 12.87 2.84 0.02 0.07 par:pre; +localisateur localisateur adj m s 0.30 0.00 0.30 0.00 +localisation localisation nom f s 2.06 0.20 1.99 0.20 +localisations localisation nom f p 2.06 0.20 0.08 0.00 +localise localiser ver 12.87 2.84 0.76 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +localisent localiser ver 12.87 2.84 0.08 0.07 ind:pre:3p; +localiser localiser ver 12.87 2.84 7.41 1.76 inf; +localisera localiser ver 12.87 2.84 0.14 0.00 ind:fut:3s; +localiseront localiser ver 12.87 2.84 0.02 0.00 ind:fut:3p; +localisez localiser ver 12.87 2.84 0.48 0.00 imp:pre:2p;ind:pre:2p; +localisions localiser ver 12.87 2.84 0.01 0.00 ind:imp:1p; +localisons localiser ver 12.87 2.84 0.06 0.00 imp:pre:1p;ind:pre:1p; +localisé localiser ver m s 12.87 2.84 3.31 0.34 par:pas; +localisée localiser ver f s 12.87 2.84 0.25 0.00 par:pas; +localisées localiser ver f p 12.87 2.84 0.02 0.00 par:pas; +localisés localiser ver m p 12.87 2.84 0.26 0.00 par:pas; +localité localité nom f s 0.36 1.55 0.23 0.81 +localités localité nom f p 0.36 1.55 0.13 0.74 +locataire locataire nom s 7.22 14.46 3.29 6.22 +locataires locataire nom p 7.22 14.46 3.94 8.24 +locateurs locateur nom m p 0.01 0.00 0.01 0.00 +locatif locatif adj m s 0.04 0.07 0.01 0.00 +location location nom f s 5.51 5.34 5.29 5.00 +locations location nom f p 5.51 5.34 0.22 0.34 +locative locatif adj f s 0.04 0.07 0.01 0.00 +locatives locatif adj f p 0.04 0.07 0.02 0.07 +locature locature nom f s 0.00 0.07 0.00 0.07 +locaux local nom m p 5.78 11.89 2.23 4.26 +locdu locdu adj m s 0.00 0.27 0.00 0.27 +loch loch nom m s 0.65 0.41 0.65 0.41 +lâcha lâcher ver 171.08 89.19 0.03 12.70 ind:pas:3s; +lâchage lâchage nom m s 0.02 0.20 0.02 0.20 +lâchai lâcher ver 171.08 89.19 0.03 0.95 ind:pas:1s; +lâchaient lâcher ver 171.08 89.19 0.09 1.49 ind:imp:3p; +lâchais lâcher ver 171.08 89.19 0.20 0.81 ind:imp:1s;ind:imp:2s; +lâchait lâcher ver 171.08 89.19 1.08 5.68 ind:imp:3s; +lâchant lâcher ver 171.08 89.19 0.25 4.59 par:pre; +lâche lâcher ver 171.08 89.19 75.31 14.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +loche loche nom f s 0.56 1.08 0.12 1.01 +lâchement lâchement adv 1.07 2.97 1.07 2.97 +lâchent lâcher ver 171.08 89.19 2.52 2.50 ind:pre:3p; +lâcher lâcher ver 171.08 89.19 19.41 20.41 inf;; +lâchera lâcher ver 171.08 89.19 1.24 1.35 ind:fut:3s; +lâcherai lâcher ver 171.08 89.19 2.86 0.47 ind:fut:1s; +lâcheraient lâcher ver 171.08 89.19 0.05 0.07 cnd:pre:3p; +lâcherais lâcher ver 171.08 89.19 0.32 0.07 cnd:pre:1s;cnd:pre:2s; +lâcherait lâcher ver 171.08 89.19 0.35 0.81 cnd:pre:3s; +lâcheras lâcher ver 171.08 89.19 0.35 0.07 ind:fut:2s; +lâcherez lâcher ver 171.08 89.19 0.11 0.14 ind:fut:2p; +lâcheriez lâcher ver 171.08 89.19 0.02 0.07 cnd:pre:2p; +lâcherons lâcher ver 171.08 89.19 0.08 0.07 ind:fut:1p; +lâcheront lâcher ver 171.08 89.19 0.69 0.34 ind:fut:3p; +lâchers lâcher nom m p 0.95 0.88 0.01 0.07 +lâches lâche nom p 27.16 5.81 7.65 2.57 +loches loche nom f p 0.56 1.08 0.44 0.07 +lâcheté lâcheté nom f s 4.17 10.00 3.91 9.12 +lâchetés lâcheté nom f p 4.17 10.00 0.26 0.88 +lâcheur lâcheur nom m s 0.67 0.81 0.30 0.47 +lâcheurs lâcheur nom m p 0.67 0.81 0.25 0.14 +lâcheuse lâcheur nom f s 0.67 0.81 0.13 0.20 +lâchez lâcher ver 171.08 89.19 48.02 2.09 imp:pre:2p;ind:pre:2p; +lâchiez lâcher ver 171.08 89.19 0.13 0.00 ind:imp:2p; +lâchions lâcher ver 171.08 89.19 0.03 0.07 ind:imp:1p; +lâchons lâcher ver 171.08 89.19 0.17 0.27 imp:pre:1p;ind:pre:1p; +lâchât lâcher ver 171.08 89.19 0.00 0.27 sub:imp:3s; +lâchèrent lâcher ver 171.08 89.19 0.01 0.88 ind:pas:3p; +lâché lâcher ver m s 171.08 89.19 11.35 14.80 par:pas; +lâchée lâcher ver f s 171.08 89.19 1.07 1.69 par:pas; +lâchées lâcher ver f p 171.08 89.19 0.21 0.81 par:pas; +lâchés lâcher ver m p 171.08 89.19 1.05 1.42 par:pas; +lock_out lock_out nom m 0.11 0.00 0.11 0.00 +lock_outer lock_outer ver m p 0.00 0.07 0.00 0.07 par:pas; +loco loco adv 1.48 1.08 1.48 1.08 +locomobile locomobile nom f s 0.00 0.07 0.00 0.07 +locomoteur locomoteur adj m s 0.01 0.07 0.01 0.00 +locomoteurs locomoteur adj m p 0.01 0.07 0.00 0.07 +locomotion locomotion nom f s 0.26 0.88 0.26 0.88 +locomotive locomotive nom f s 3.95 13.11 3.69 10.61 +locomotives locomotive nom f p 3.95 13.11 0.25 2.50 +locomotrice locomoteur nom f s 0.00 0.07 0.00 0.07 +locos loco nom m p 0.73 1.35 0.16 0.47 +locus locus nom m 0.15 0.20 0.15 0.20 +locuste locuste nom f s 0.06 0.00 0.01 0.00 +locustes locuste nom f p 0.06 0.00 0.05 0.00 +locuteur locuteur nom m s 0.02 0.00 0.01 0.00 +locution locution nom f s 0.04 1.01 0.04 0.41 +locutions locution nom f p 0.04 1.01 0.01 0.61 +locutrice locuteur nom f s 0.02 0.00 0.01 0.00 +loden loden nom m s 0.27 0.81 0.27 0.74 +lodens loden nom m p 0.27 0.81 0.00 0.07 +lof lof nom m s 0.02 0.00 0.02 0.00 +lofe lofer ver 0.02 0.00 0.01 0.00 ind:pre:3s; +lofez lofer ver 0.02 0.00 0.01 0.00 imp:pre:2p; +loft loft nom m s 1.36 0.47 1.11 0.47 +lofts loft nom m p 1.36 0.47 0.26 0.00 +logarithme logarithme nom m s 0.09 0.34 0.05 0.00 +logarithmes logarithme nom m p 0.09 0.34 0.04 0.34 +logarithmique logarithmique adj s 0.02 0.00 0.02 0.00 +loge loge nom f s 13.69 22.36 12.15 18.11 +logea loger ver 18.36 26.42 0.03 0.41 ind:pas:3s; +logeable logeable adj m s 0.00 0.14 0.00 0.07 +logeables logeable adj m p 0.00 0.14 0.00 0.07 +logeai loger ver 18.36 26.42 0.00 0.14 ind:pas:1s; +logeaient loger ver 18.36 26.42 0.06 1.69 ind:imp:3p; +logeais loger ver 18.36 26.42 0.16 0.47 ind:imp:1s;ind:imp:2s; +logeait loger ver 18.36 26.42 0.55 3.72 ind:imp:3s; +logeant loger ver 18.36 26.42 0.01 0.47 par:pre; +logeassent loger ver 18.36 26.42 0.00 0.07 sub:imp:3p; +logement logement nom m s 11.13 13.65 8.37 11.08 +logements logement nom m p 11.13 13.65 2.76 2.57 +logent loger ver 18.36 26.42 0.38 1.08 ind:pre:3p; +loger loger ver 18.36 26.42 5.84 7.23 inf; +logera loger ver 18.36 26.42 0.39 0.00 ind:fut:3s; +logerai loger ver 18.36 26.42 0.30 0.20 ind:fut:1s; +logeraient loger ver 18.36 26.42 0.00 0.14 cnd:pre:3p; +logerait loger ver 18.36 26.42 0.17 0.27 cnd:pre:3s; +logeras loger ver 18.36 26.42 0.24 0.07 ind:fut:2s; +logerez loger ver 18.36 26.42 0.38 0.07 ind:fut:2p; +logerions loger ver 18.36 26.42 0.00 0.07 cnd:pre:1p; +logerons loger ver 18.36 26.42 0.03 0.00 ind:fut:1p; +logeront loger ver 18.36 26.42 0.29 0.14 ind:fut:3p; +loges loge nom f p 13.69 22.36 1.54 4.26 +logettes logette nom f p 0.00 0.14 0.00 0.14 +logeur logeur nom m s 1.16 3.72 0.25 0.07 +logeurs logeur nom m p 1.16 3.72 0.00 0.27 +logeuse logeur nom f s 1.16 3.72 0.91 3.31 +logeuses logeuse nom f p 0.36 0.00 0.01 0.00 +logez loger ver 18.36 26.42 1.29 0.41 imp:pre:2p;ind:pre:2p; +loggia loggia nom f s 0.10 3.85 0.10 3.11 +loggias loggia nom f p 0.10 3.85 0.00 0.74 +logiciel logiciel nom m s 3.61 0.14 2.31 0.14 +logiciels logiciel nom m p 3.61 0.14 1.30 0.00 +logicien logicien nom m s 0.03 0.41 0.03 0.20 +logicienne logicien nom f s 0.03 0.41 0.00 0.07 +logiciens logicien nom m p 0.03 0.41 0.00 0.14 +logiez loger ver 18.36 26.42 0.45 0.07 ind:imp:2p; +login login adj m s 0.04 0.00 0.04 0.00 +logions loger ver 18.36 26.42 0.11 0.20 ind:imp:1p; +logique logique adj s 14.40 12.03 13.79 11.22 +logiquement logiquement adv 1.33 3.24 1.33 3.24 +logiques logique adj p 14.40 12.03 0.61 0.81 +logis logis nom m 2.70 12.84 2.70 12.84 +logisticien logisticien nom m s 0.01 0.00 0.01 0.00 +logistique logistique nom f s 0.80 0.27 0.80 0.27 +logistiques logistique adj p 0.41 0.20 0.20 0.07 +logo logo nom m s 1.65 0.00 1.65 0.00 +logogriphe logogriphe nom m s 0.01 0.14 0.01 0.07 +logogriphes logogriphe nom m p 0.01 0.14 0.00 0.07 +logomachie logomachie nom f s 0.00 0.14 0.00 0.14 +logorrhée logorrhée nom f s 0.06 0.27 0.06 0.27 +logos logos nom m 0.16 0.81 0.16 0.81 +logosphère logosphère nom f s 0.00 0.14 0.00 0.14 +logothètes logothète nom m p 0.00 0.07 0.00 0.07 +logèrent loger ver 18.36 26.42 0.00 0.14 ind:pas:3p; +logé loger ver m s 18.36 26.42 1.77 3.45 par:pas; +logue loguer ver 0.02 0.00 0.02 0.00 imp:pre:2s;ind:pre:3s; +logée loger ver f s 18.36 26.42 1.23 1.08 par:pas; +logées loger ver f p 18.36 26.42 0.16 0.20 par:pas; +logés logé adj m p 0.89 1.76 0.36 0.81 +loi loi nom f s 110.12 72.30 87.37 44.46 +loin loin adv_sup 248.34 452.36 248.34 452.36 +lointain lointain adj m s 10.12 91.96 5.05 33.18 +lointaine lointain adj f s 10.12 91.96 2.89 32.50 +lointainement lointainement adv 0.00 0.47 0.00 0.47 +lointaines lointain adj f p 10.12 91.96 1.15 12.64 +lointains lointain adj m p 10.12 91.96 1.02 13.65 +loir loir nom m s 0.69 1.62 0.51 0.74 +loirs loir nom m p 0.69 1.62 0.18 0.88 +lois loi nom f p 110.12 72.30 22.75 27.84 +loisible loisible adj s 0.00 0.74 0.00 0.74 +loisir loisir nom m s 5.09 20.81 2.41 13.24 +loisirs loisir nom m p 5.09 20.81 2.68 7.57 +lokoum lokoum nom m s 0.00 0.14 0.00 0.14 +lolita lolita nom f s 0.10 0.07 0.04 0.00 +lolitas lolita nom f p 0.10 0.07 0.06 0.07 +lolo lolo nom m s 1.81 0.41 0.70 0.34 +lolos lolo nom m p 1.81 0.41 1.12 0.07 +lombaire lombaire adj s 1.37 0.34 1.06 0.20 +lombaires lombaire adj f p 1.37 0.34 0.30 0.14 +lombalgie lombalgie nom f s 0.01 0.00 0.01 0.00 +lombard lombard adj m s 0.14 0.74 0.00 0.20 +lombarde lombard adj f s 0.14 0.74 0.14 0.14 +lombardes lombard adj f p 0.14 0.74 0.00 0.14 +lombardo lombardo nom m 0.01 0.00 0.01 0.00 +lombards lombard adj m p 0.14 0.74 0.00 0.27 +lombes lombes nom f p 0.00 0.41 0.00 0.41 +lombostats lombostat nom m p 0.00 0.07 0.00 0.07 +lombric lombric nom m s 0.28 0.74 0.08 0.41 +lombrics lombric nom m p 0.28 0.74 0.20 0.34 +lompe lompe nom m s 0.01 0.00 0.01 0.00 +londonien londonien adj m s 1.09 0.95 0.44 0.47 +londonienne londonien adj f s 1.09 0.95 0.20 0.20 +londoniennes londonien adj f p 1.09 0.95 0.04 0.07 +londoniens londonien adj m p 1.09 0.95 0.41 0.20 +londrès londrès nom m 0.00 0.07 0.00 0.07 +long_courrier long_courrier nom m s 0.26 0.61 0.25 0.47 +long_courrier long_courrier nom m p 0.26 0.61 0.01 0.14 +long_métrage long_métrage nom m s 0.06 0.00 0.06 0.00 +long long adj m s 164.02 444.86 79.18 153.51 +longane longane nom m s 0.14 0.00 0.14 0.00 +longanimité longanimité nom f s 0.00 0.14 0.00 0.14 +longe longer ver 2.98 34.32 0.55 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +longea longer ver 2.98 34.32 0.01 3.65 ind:pas:3s; +longeai longer ver 2.98 34.32 0.00 0.27 ind:pas:1s; +longeaient longer ver 2.98 34.32 0.00 1.82 ind:imp:3p; +longeais longer ver 2.98 34.32 0.12 0.81 ind:imp:1s; +longeait longer ver 2.98 34.32 0.03 6.76 ind:imp:3s; +longeant longer ver 2.98 34.32 0.40 5.68 par:pre; +longent longer ver 2.98 34.32 0.14 0.74 ind:pre:3p; +longeâmes longer ver 2.98 34.32 0.00 0.41 ind:pas:1p; +longeons longer ver 2.98 34.32 0.02 0.81 imp:pre:1p;ind:pre:1p; +longer longer ver 2.98 34.32 0.61 2.57 inf; +longera longer ver 2.98 34.32 0.16 0.00 ind:fut:3s; +longeraient longer ver 2.98 34.32 0.00 0.07 cnd:pre:3p; +longerait longer ver 2.98 34.32 0.00 0.14 cnd:pre:3s; +longerions longer ver 2.98 34.32 0.00 0.07 cnd:pre:1p; +longeron longeron nom m s 0.00 0.20 0.00 0.07 +longerons longer ver 2.98 34.32 0.01 0.00 ind:fut:1p; +longeront longer ver 2.98 34.32 0.01 0.20 ind:fut:3p; +longes longe nom f p 0.11 1.35 0.03 0.07 +longez longer ver 2.98 34.32 0.43 0.14 imp:pre:2p;ind:pre:2p; +longicornes longicorne nom m p 0.00 0.07 0.00 0.07 +longiez longer ver 2.98 34.32 0.01 0.00 ind:imp:2p; +longiforme longiforme adj s 0.00 0.07 0.00 0.07 +longiligne longiligne adj m s 0.02 0.88 0.00 0.81 +longilignes longiligne adj m p 0.02 0.88 0.02 0.07 +longions longer ver 2.98 34.32 0.10 0.74 ind:imp:1p; +longitude longitude nom f s 0.46 0.41 0.46 0.41 +longitudinal longitudinal adj m s 0.19 0.54 0.03 0.00 +longitudinale longitudinal adj f s 0.19 0.54 0.01 0.07 +longitudinalement longitudinalement adv 0.00 0.07 0.00 0.07 +longitudinales longitudinal adj f p 0.19 0.54 0.15 0.41 +longitudinaux longitudinal adj m p 0.19 0.54 0.00 0.07 +longrines longrine nom f p 0.00 0.07 0.00 0.07 +longs long adj m p 164.02 444.86 17.65 65.47 +longtemps longtemps adv_sup 290.36 335.54 290.36 335.54 +longèrent longer ver 2.98 34.32 0.00 1.55 ind:pas:3p; +longé longer ver m s 2.98 34.32 0.38 1.76 par:pas; +longue_vue longue_vue nom f s 0.30 2.64 0.29 2.50 +longue long adj f s 164.02 444.86 54.12 138.31 +longée longer ver f s 2.98 34.32 0.01 0.14 par:pas; +longuement longuement adv 3.71 58.45 3.71 58.45 +longue_vue longue_vue nom f p 0.30 2.64 0.01 0.14 +longues long adj f p 164.02 444.86 13.07 87.57 +longuet longuet adj m s 0.02 0.41 0.01 0.20 +longuette longuet adj f s 0.02 0.41 0.01 0.14 +longuettes longuet adj f p 0.02 0.41 0.00 0.07 +longueur longueur nom f s 9.42 28.45 8.36 26.82 +longueurs longueur nom f p 9.42 28.45 1.06 1.62 +longés longer ver m p 2.98 34.32 0.00 0.07 par:pas; +longévité longévité nom f s 0.71 0.88 0.71 0.88 +look look nom m s 10.93 1.96 10.47 1.82 +looks look nom m p 10.93 1.96 0.46 0.14 +looping looping nom m s 0.33 0.68 0.27 0.54 +loopings looping nom m p 0.33 0.68 0.06 0.14 +looser looser nom m s 1.09 0.00 0.82 0.00 +loosers looser nom m p 1.09 0.00 0.27 0.00 +lopaille lopaille nom f s 0.00 0.07 0.00 0.07 +lope lope nom f s 1.01 1.69 0.53 1.08 +lopes lope nom f p 1.01 1.69 0.48 0.61 +lopette lopette nom f s 1.25 0.47 1.11 0.41 +lopettes lopette nom f p 1.25 0.47 0.15 0.07 +lopin lopin nom m s 0.62 0.41 0.52 0.34 +lopins lopin nom m p 0.62 0.41 0.10 0.07 +loquace loquace adj s 0.61 2.43 0.58 2.03 +loquaces loquace adj f p 0.61 2.43 0.03 0.41 +loquacité loquacité nom f s 0.01 0.00 0.01 0.00 +loquait loquer ver 0.41 0.27 0.00 0.07 ind:imp:3s; +loque loque nom f s 2.20 9.66 1.72 3.24 +loquedu loquedu nom s 0.07 2.50 0.01 1.08 +loquedus loquedu nom p 0.07 2.50 0.06 1.42 +loquer loquer ver 0.41 0.27 0.00 0.14 inf; +loques loque nom f p 2.20 9.66 0.48 6.42 +loquet loquet nom m s 0.60 4.39 0.60 4.05 +loqueteau loqueteau nom m s 0.00 0.07 0.00 0.07 +loqueteuse loqueteux adj f s 0.06 1.89 0.00 0.07 +loqueteuses loqueteux adj f p 0.06 1.89 0.00 0.07 +loqueteux loqueteux adj m 0.06 1.89 0.06 1.76 +loquets loquet nom m p 0.60 4.39 0.00 0.34 +loquette loqueter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +loqué loquer ver m s 0.41 0.27 0.41 0.00 par:pas; +loqués loquer ver m p 0.41 0.27 0.00 0.07 par:pas; +loran loran nom m s 0.14 0.00 0.14 0.00 +lord_maire lord_maire nom m s 0.02 0.07 0.02 0.07 +lord lord nom m s 1.41 7.57 1.26 6.69 +lordose lordose nom f s 0.00 0.07 0.00 0.07 +lords lord nom m p 1.41 7.57 0.15 0.88 +lorette lorette nom f s 0.01 0.07 0.01 0.00 +lorettes lorette nom f p 0.01 0.07 0.00 0.07 +lorgna lorgner ver 1.07 7.09 0.00 0.88 ind:pas:3s; +lorgnaient lorgner ver 1.07 7.09 0.02 0.54 ind:imp:3p; +lorgnais lorgner ver 1.07 7.09 0.04 0.20 ind:imp:1s;ind:imp:2s; +lorgnait lorgner ver 1.07 7.09 0.13 1.69 ind:imp:3s; +lorgnant lorgner ver 1.07 7.09 0.01 1.15 par:pre; +lorgne lorgner ver 1.07 7.09 0.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lorgnent lorgner ver 1.07 7.09 0.07 0.47 ind:pre:3p; +lorgner lorgner ver 1.07 7.09 0.14 0.88 inf; +lorgnerai lorgner ver 1.07 7.09 0.00 0.07 ind:fut:1s; +lorgnerez lorgner ver 1.07 7.09 0.00 0.07 ind:fut:2p; +lorgnette lorgnette nom f s 0.13 2.09 0.13 1.08 +lorgnettes lorgnette nom f p 0.13 2.09 0.00 1.01 +lorgnez lorgner ver 1.07 7.09 0.13 0.00 ind:pre:2p; +lorgnon lorgnon nom m s 0.02 5.41 0.02 2.84 +lorgnons lorgnon nom m p 0.02 5.41 0.00 2.57 +lorgnèrent lorgner ver 1.07 7.09 0.00 0.07 ind:pas:3p; +lorgné lorgner ver m s 1.07 7.09 0.00 0.47 par:pas; +lorgnées lorgner ver f p 1.07 7.09 0.00 0.07 par:pas; +lorgnés lorgner ver m p 1.07 7.09 0.00 0.07 par:pas; +lori lori nom m s 0.01 0.00 0.01 0.00 +loriot loriot nom m s 0.05 2.36 0.02 2.16 +loriots loriot nom m p 0.05 2.36 0.03 0.20 +loris loris nom m 0.04 0.00 0.04 0.00 +lorrain lorrain adj m s 0.06 1.49 0.00 0.47 +lorraine lorrain adj f s 0.06 1.49 0.06 0.74 +lorraines lorrain adj f p 0.06 1.49 0.00 0.20 +lorrains lorrain nom m p 0.00 0.81 0.00 0.54 +lors lors adv_sup 35.79 70.27 35.79 70.27 +lorsqu lorsqu con 0.04 0.00 0.04 0.00 +lorsque lorsque con 49.36 207.09 49.36 207.09 +los los nom m 5.08 2.77 5.08 2.77 +losange losange nom m s 0.11 3.92 0.08 1.49 +losanges losange nom m p 0.11 3.92 0.03 2.43 +losangé losangé adj m s 0.00 0.34 0.00 0.07 +losangée losangé adj f s 0.00 0.34 0.00 0.07 +losangés losangé adj m p 0.00 0.34 0.00 0.20 +loser loser nom m s 4.77 0.07 3.27 0.07 +losers loser nom m p 4.77 0.07 1.51 0.00 +lot lot nom m s 13.28 17.16 11.87 15.68 +loterie loterie nom f s 7.25 4.86 7.16 4.32 +loteries loterie nom f p 7.25 4.86 0.09 0.54 +loti loti adj m s 0.69 1.22 0.09 0.34 +lotie lotir ver f s 0.26 0.54 0.23 0.14 par:pas; +lotier lotier nom m s 0.00 0.07 0.00 0.07 +loties loti adj f p 0.69 1.22 0.00 0.07 +lotion lotion nom f s 1.68 0.74 1.53 0.54 +lotionnés lotionner ver m p 0.00 0.07 0.00 0.07 par:pas; +lotions lotion nom f p 1.68 0.74 0.15 0.20 +lotir lotir ver 0.26 0.54 0.01 0.34 inf; +lotis loti adj m p 0.69 1.22 0.47 0.47 +lotissement lotissement nom m s 0.77 1.01 0.59 0.47 +lotissements lotissement nom m p 0.77 1.01 0.19 0.54 +loto loto nom m s 6.75 1.35 6.75 1.15 +lotos loto nom m p 6.75 1.35 0.00 0.20 +lots lot nom m p 13.28 17.16 1.42 1.49 +lotta lotta nom f s 0.16 0.41 0.16 0.41 +lotte lotte nom f s 0.18 0.14 0.18 0.07 +lottes lotte nom f p 0.18 0.14 0.00 0.07 +lotus lotus nom m 0.58 1.08 0.58 1.08 +loua louer ver 48.08 29.46 0.17 1.08 ind:pas:3s; +louable louable adj s 1.37 1.89 1.04 1.42 +louablement louablement adv 0.14 0.00 0.14 0.00 +louables louable adj p 1.37 1.89 0.33 0.47 +louage louage nom m s 0.07 0.88 0.07 0.88 +louai louer ver 48.08 29.46 0.00 0.41 ind:pas:1s; +louaient louer ver 48.08 29.46 0.33 1.15 ind:imp:3p; +louais louer ver 48.08 29.46 0.42 0.34 ind:imp:1s;ind:imp:2s; +louait louer ver 48.08 29.46 1.46 3.24 ind:imp:3s; +louange louange nom f s 3.06 6.35 0.97 1.82 +louangea louanger ver 0.13 0.74 0.00 0.14 ind:pas:3s; +louangeaient louanger ver 0.13 0.74 0.00 0.07 ind:imp:3p; +louangeant louanger ver 0.13 0.74 0.00 0.07 par:pre; +louanger louanger ver 0.13 0.74 0.12 0.20 inf; +louanges louange nom f p 3.06 6.35 2.09 4.53 +louangeur louangeur adj m s 0.00 0.20 0.00 0.14 +louangeuses louangeur adj f p 0.00 0.20 0.00 0.07 +louangé louanger ver m s 0.13 0.74 0.00 0.07 par:pas; +louangée louanger ver f s 0.13 0.74 0.00 0.07 par:pas; +louangés louanger ver m p 0.13 0.74 0.01 0.07 par:pas; +louant louer ver 48.08 29.46 0.23 0.54 par:pre; +loubard loubard nom m s 1.73 3.04 1.04 1.01 +loubarde loubard nom f s 1.73 3.04 0.00 0.34 +loubards loubard nom m p 1.73 3.04 0.69 1.69 +loucha loucher ver 2.54 6.35 0.00 0.27 ind:pas:3s; +louchai loucher ver 2.54 6.35 0.00 0.07 ind:pas:1s; +louchaient loucher ver 2.54 6.35 0.00 0.41 ind:imp:3p; +louchais loucher ver 2.54 6.35 0.01 0.20 ind:imp:1s;ind:imp:2s; +louchait loucher ver 2.54 6.35 0.20 1.08 ind:imp:3s; +louchant loucher ver 2.54 6.35 0.04 1.42 par:pre; +louche louche adj s 7.63 9.05 5.71 5.88 +louchebem louchebem nom m s 0.00 0.27 0.00 0.27 +louchement louchement nom m s 0.00 0.07 0.00 0.07 +louchent loucher ver 2.54 6.35 0.15 0.14 ind:pre:3p; +loucher loucher ver 2.54 6.35 0.40 0.61 inf; +louches louche adj p 7.63 9.05 1.92 3.18 +louchet louchet nom m s 0.00 0.07 0.00 0.07 +loucheur loucheur nom m s 0.05 0.27 0.05 0.14 +loucheuse loucheur nom f s 0.05 0.27 0.00 0.14 +louchez loucher ver 2.54 6.35 0.09 0.07 ind:pre:2p; +louchon louchon nom m s 0.00 0.14 0.00 0.07 +louchons loucher ver 2.54 6.35 0.01 0.14 ind:pre:1p; +louchât loucher ver 2.54 6.35 0.00 0.07 sub:imp:3s; +louché loucher ver m s 2.54 6.35 0.01 0.41 par:pas; +louchébème louchébème nom m s 0.00 0.07 0.00 0.07 +louchée loucher ver f s 2.54 6.35 0.01 0.14 par:pas; +loue louer ver 48.08 29.46 6.01 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +louent louer ver 48.08 29.46 0.76 0.41 ind:pre:3p; +louer louer ver 48.08 29.46 15.03 7.57 ind:pre:2p;inf; +louera louer ver 48.08 29.46 0.33 0.14 ind:fut:3s; +louerai louer ver 48.08 29.46 0.29 0.14 ind:fut:1s; +loueraient louer ver 48.08 29.46 0.01 0.07 cnd:pre:3p; +louerais louer ver 48.08 29.46 0.31 0.14 cnd:pre:1s;cnd:pre:2s; +louerait louer ver 48.08 29.46 0.05 0.41 cnd:pre:3s; +loueras louer ver 48.08 29.46 0.18 0.00 ind:fut:2s; +loueriez louer ver 48.08 29.46 0.01 0.07 cnd:pre:2p; +louerons louer ver 48.08 29.46 0.17 0.07 ind:fut:1p; +loues louer ver 48.08 29.46 0.58 0.07 ind:pre:2s; +loueur loueur nom m s 0.65 1.62 0.41 1.49 +loueurs loueur nom m p 0.65 1.62 0.23 0.07 +loueuse loueur nom f s 0.65 1.62 0.01 0.07 +louez louer ver 48.08 29.46 1.96 0.20 imp:pre:2p;ind:pre:2p; +louf louf adj m s 0.47 1.55 0.47 1.55 +loufer loufer ver 0.00 0.20 0.00 0.07 inf; +loufes loufer ver 0.00 0.20 0.00 0.14 ind:pre:2s; +loufiat loufiat nom m s 0.20 6.76 0.14 5.27 +loufiats loufiat nom m p 0.20 6.76 0.05 1.49 +loufoque loufoque adj s 0.87 0.41 0.68 0.34 +loufoquerie loufoquerie nom f s 0.04 0.27 0.04 0.20 +loufoqueries loufoquerie nom f p 0.04 0.27 0.00 0.07 +loufoques loufoque adj f p 0.87 0.41 0.19 0.07 +louftingue louftingue adj s 0.00 0.07 0.00 0.07 +louions louer ver 48.08 29.46 0.12 0.07 ind:imp:1p; +louis_philippard louis_philippard adj m s 0.00 0.34 0.00 0.07 +louis_philippard louis_philippard adj f s 0.00 0.34 0.00 0.14 +louis_philippard louis_philippard adj m p 0.00 0.34 0.00 0.14 +louis louis nom m s 5.01 5.07 5.01 5.07 +louise_bonne louise_bonne nom f s 0.00 0.07 0.00 0.07 +louisianais louisianais adj m s 0.02 0.00 0.02 0.00 +loukoum loukoum nom m s 0.07 2.57 0.02 0.95 +loukoums loukoum nom m p 0.07 2.57 0.05 1.62 +loulou loulou nom m s 1.48 19.32 1.45 18.72 +loulous loulou nom m p 1.48 19.32 0.03 0.61 +louloute louloute nom f s 0.45 0.20 0.35 0.07 +louloutes louloute nom f p 0.45 0.20 0.10 0.14 +louloutte louloutte nom f s 0.00 0.07 0.00 0.07 +louâmes louer ver 48.08 29.46 0.00 0.07 ind:pas:1p; +louons louer ver 48.08 29.46 1.35 0.27 imp:pre:1p;ind:pre:1p; +loup_cervier loup_cervier nom m s 0.00 0.14 0.00 0.07 +loup_garou loup_garou nom m s 3.98 1.22 3.35 0.88 +loup loup nom m s 30.40 44.39 20.97 22.30 +loupa louper ver 12.06 9.46 0.03 0.14 ind:pas:3s; +loupai louper ver 12.06 9.46 0.00 0.07 ind:pas:1s; +loupaient louper ver 12.06 9.46 0.00 0.07 ind:imp:3p; +loupais louper ver 12.06 9.46 0.00 0.07 ind:imp:1s; +loupait louper ver 12.06 9.46 0.02 0.27 ind:imp:3s; +loupe loupe nom f s 1.71 5.47 1.66 4.86 +loupent louper ver 12.06 9.46 0.06 0.07 ind:pre:3p; +louper louper ver 12.06 9.46 3.81 3.04 inf; +loupera louper ver 12.06 9.46 0.26 0.20 ind:fut:3s; +louperai louper ver 12.06 9.46 0.15 0.07 ind:fut:1s; +louperais louper ver 12.06 9.46 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +louperait louper ver 12.06 9.46 0.00 0.07 cnd:pre:3s; +louperas louper ver 12.06 9.46 0.02 0.00 ind:fut:2s; +louperez louper ver 12.06 9.46 0.03 0.00 ind:fut:2p; +loupes louper ver 12.06 9.46 0.69 0.14 ind:pre:2s; +loupez louper ver 12.06 9.46 0.17 0.07 imp:pre:2p;ind:pre:2p; +loupiat loupiat nom m s 0.00 0.14 0.00 0.14 +loupiez louper ver 12.06 9.46 0.04 0.07 ind:imp:2p; +loupiot loupiot nom m s 0.13 0.41 0.12 0.20 +loupiote loupiote nom f s 0.06 1.01 0.02 0.68 +loupiotes loupiote nom f p 0.06 1.01 0.03 0.34 +loupiots loupiot nom m p 0.13 0.41 0.01 0.20 +loupiotte loupiotte nom f s 0.00 0.14 0.00 0.07 +loupiottes loupiotte nom f p 0.00 0.14 0.00 0.07 +loup_cervier loup_cervier nom m p 0.00 0.14 0.00 0.07 +loup_garou loup_garou nom m p 3.98 1.22 0.63 0.34 +loups loup nom m p 30.40 44.39 8.41 18.24 +loupé louper ver m s 12.06 9.46 5.37 2.64 par:pas; +loupée louper ver f s 12.06 9.46 0.40 0.20 par:pas; +loupées louper ver f p 12.06 9.46 0.04 0.14 par:pas; +loupés louper ver m p 12.06 9.46 0.18 0.27 par:pas; +lourant lourer ver 0.00 0.07 0.00 0.07 par:pre; +lourd lourd adv 16.09 21.35 16.09 21.35 +lourdait lourder ver 0.38 1.69 0.00 0.07 ind:imp:3s; +lourdant lourder ver 0.38 1.69 0.00 0.07 par:pre; +lourdaud lourdaud nom m s 0.64 0.95 0.48 0.74 +lourdaude lourdaud adj f s 0.35 0.68 0.00 0.14 +lourdaudes lourdaud adj f p 0.35 0.68 0.00 0.07 +lourdauds lourdaud nom m p 0.64 0.95 0.16 0.20 +lourde lourd adj f s 29.45 145.88 8.46 56.62 +lourdement lourdement adv 1.87 14.66 1.87 14.66 +lourder lourder ver 0.38 1.69 0.22 0.61 inf; +lourderie lourderie nom f s 0.00 0.07 0.00 0.07 +lourdes lourd adj f p 29.45 145.88 4.26 23.18 +lourdeur lourdeur nom f s 0.20 5.47 0.19 4.86 +lourdeurs lourdeur nom f p 0.20 5.47 0.01 0.61 +lourdingue lourdingue adj f s 0.14 0.88 0.07 0.34 +lourdingues lourdingue adj m p 0.14 0.88 0.07 0.54 +lourds lourd adj m p 29.45 145.88 6.58 23.58 +lourdé lourder ver m s 0.38 1.69 0.10 0.34 par:pas; +lourdée lourder ver f s 0.38 1.69 0.05 0.27 par:pas; +lourdées lourder ver f p 0.38 1.69 0.00 0.14 par:pas; +lourdés lourder ver m p 0.38 1.69 0.01 0.20 par:pas; +loustic loustic nom m s 0.08 1.49 0.06 0.95 +loustics loustic nom m p 0.08 1.49 0.02 0.54 +loute loute nom f s 0.07 0.14 0.07 0.14 +louèrent louer ver 48.08 29.46 0.02 0.47 ind:pas:3p; +loutre loutre nom f s 2.52 1.62 1.30 1.35 +loutres loutre nom f p 2.52 1.62 1.22 0.27 +loué louer ver m s 48.08 29.46 16.22 7.91 par:pas; +louée louer ver f s 48.08 29.46 1.64 2.09 par:pas; +louées loué adj f p 1.67 1.82 0.12 0.14 +loués louer ver m p 48.08 29.46 0.37 0.34 par:pas; +louve loup nom f s 30.40 44.39 1.02 3.51 +louves louve nom f p 0.02 0.00 0.02 0.00 +louvet louvet adj m s 0.01 2.91 0.01 2.91 +louveteau louveteau nom m s 0.23 2.36 0.13 0.54 +louveteaux louveteau nom m p 0.23 2.36 0.11 1.82 +louvetiers louvetier nom m p 0.00 0.07 0.00 0.07 +louvoie louvoyer ver 0.31 2.97 0.07 0.81 ind:pre:1s;ind:pre:3s; +louvoiements louvoiement nom m p 0.00 0.14 0.00 0.14 +louvoient louvoyer ver 0.31 2.97 0.01 0.07 ind:pre:3p; +louvoyaient louvoyer ver 0.31 2.97 0.00 0.07 ind:imp:3p; +louvoyait louvoyer ver 0.31 2.97 0.01 0.20 ind:imp:3s; +louvoyant louvoyer ver 0.31 2.97 0.00 0.61 par:pre; +louvoyants louvoyant adj m p 0.00 0.20 0.00 0.07 +louvoyer louvoyer ver 0.31 2.97 0.18 0.88 inf; +louvoyons louvoyer ver 0.31 2.97 0.00 0.07 ind:pre:1p; +louvoyât louvoyer ver 0.31 2.97 0.00 0.07 sub:imp:3s; +louvoyé louvoyer ver m s 0.31 2.97 0.04 0.20 par:pas; +lova lover ver 8.85 7.03 0.00 0.20 ind:pas:3s; +lovaient lover ver 8.85 7.03 0.00 0.07 ind:imp:3p; +lovais lover ver 8.85 7.03 0.01 0.00 ind:imp:1s; +lovait lover ver 8.85 7.03 0.00 0.34 ind:imp:3s; +lovant lover ver 8.85 7.03 0.00 0.14 par:pre; +love lover ver 8.85 7.03 8.64 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lovent lover ver 8.85 7.03 0.00 0.07 ind:pre:3p; +lover lover ver 8.85 7.03 0.14 1.01 inf; +lové lover ver m s 8.85 7.03 0.04 1.15 par:pas; +lovée lover ver f s 8.85 7.03 0.02 0.95 par:pas; +lovées lover ver f p 8.85 7.03 0.00 0.14 par:pas; +lovés lover ver m p 8.85 7.03 0.00 0.47 par:pas; +loyal loyal adj m s 10.96 7.36 5.87 3.72 +loyale loyal adj f s 10.96 7.36 2.13 1.82 +loyalement loyalement adv 0.81 1.42 0.81 1.42 +loyales loyal adj f p 10.96 7.36 0.19 0.00 +loyalisme loyalisme nom m s 0.08 1.15 0.08 1.15 +loyaliste loyaliste adj f s 0.07 0.07 0.03 0.00 +loyalistes loyaliste nom p 0.07 0.07 0.06 0.00 +loyauté loyauté nom f s 9.38 3.11 9.36 2.97 +loyautés loyauté nom f p 9.38 3.11 0.02 0.14 +loyaux loyal adj m p 10.96 7.36 2.76 1.82 +loyer loyer nom m s 17.18 6.49 16.20 5.07 +loyers loyer nom m p 17.18 6.49 0.98 1.42 +lsd lsd nom m 0.08 0.00 0.08 0.00 +lèche_botte lèche_botte nom m s 0.11 0.00 0.11 0.00 +lèche_bottes lèche_bottes nom m 0.68 0.34 0.68 0.34 +lèche_cul lèche_cul nom m s 1.29 0.61 1.29 0.61 +lèche_vitrine lèche_vitrine nom m s 0.26 0.07 0.26 0.07 +lèche_vitrines lèche_vitrines nom m 0.07 0.20 0.07 0.20 +lèche lécher ver 14.09 23.11 4.03 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lèchefrite lèchefrite nom f s 0.00 0.07 0.00 0.07 +lèchent lécher ver 14.09 23.11 0.50 0.34 ind:pre:3p; +lècheries lècherie nom f p 0.00 0.07 0.00 0.07 +lèches lécher ver 14.09 23.11 0.50 0.07 ind:pre:2s; +lègue léguer ver 4.98 5.61 1.47 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lèpre lèpre nom f s 1.40 3.65 1.40 3.51 +lèpres lèpre nom f p 1.40 3.65 0.00 0.14 +lès lès pre 0.00 0.07 0.00 0.07 +lèse_majesté lèse_majesté nom f 0.03 0.27 0.03 0.27 +lèse léser ver 1.36 1.08 0.06 0.07 ind:pre:3s; +lève lever ver 165.98 440.74 67.72 77.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +lèvent lever ver 165.98 440.74 1.67 8.45 ind:pre:3p;sub:pre:3p; +lèvera lever ver 165.98 440.74 1.91 1.89 ind:fut:3s; +lèverai lever ver 165.98 440.74 0.70 0.95 ind:fut:1s; +lèveraient lever ver 165.98 440.74 0.05 0.34 cnd:pre:3p; +lèverais lever ver 165.98 440.74 0.26 0.41 cnd:pre:1s;cnd:pre:2s; +lèverait lever ver 165.98 440.74 0.48 1.35 cnd:pre:3s; +lèveras lever ver 165.98 440.74 0.32 0.07 ind:fut:2s; +lèverez lever ver 165.98 440.74 0.17 0.07 ind:fut:2p; +lèverons lever ver 165.98 440.74 0.31 0.14 ind:fut:1p; +lèveront lever ver 165.98 440.74 0.26 0.20 ind:fut:3p; +lèves lever ver 165.98 440.74 5.42 1.35 ind:pre:2s;sub:pre:2s; +lèvre lèvre nom f s 37.91 222.03 4.00 20.74 +lèvres lèvre nom f p 37.91 222.03 33.91 201.28 +lé lé nom m s 2.30 2.03 2.28 1.35 +lu lire ver m s 281.09 324.80 82.12 57.97 par:pas; +lubie lubie nom f s 2.41 2.77 1.37 1.35 +lubies lubie nom f p 2.41 2.77 1.04 1.42 +lubricité lubricité nom f s 0.57 0.74 0.57 0.74 +lubrifiant lubrifiant nom m s 0.63 0.68 0.58 0.54 +lubrifiante lubrifiant adj f s 0.10 0.07 0.00 0.07 +lubrifiants lubrifiant nom m p 0.63 0.68 0.05 0.14 +lubrification lubrification nom f s 0.14 0.00 0.14 0.00 +lubrifie lubrifier ver 0.53 0.41 0.19 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lubrifient lubrifier ver 0.53 0.41 0.01 0.00 ind:pre:3p; +lubrifier lubrifier ver 0.53 0.41 0.24 0.20 inf; +lubrifié lubrifié adj m s 0.17 0.20 0.11 0.07 +lubrifiée lubrifier ver f s 0.53 0.41 0.03 0.00 par:pas; +lubrifiées lubrifié adj f p 0.17 0.20 0.02 0.14 +lubrifiés lubrifié adj m p 0.17 0.20 0.01 0.00 +lubrique lubrique adj s 1.60 3.31 1.04 2.03 +lubriques lubrique adj p 1.60 3.31 0.56 1.28 +lucarne lucarne nom f s 0.95 10.00 0.78 8.24 +lucarnes lucarne nom f p 0.95 10.00 0.17 1.76 +luce luce nom f s 0.01 0.00 0.01 0.00 +lucet lucet nom m s 0.00 0.07 0.00 0.07 +lécha lécher ver 14.09 23.11 0.01 1.96 ind:pas:3s; +léchage léchage nom m s 0.19 0.27 0.17 0.14 +léchages léchage nom m p 0.19 0.27 0.01 0.14 +léchaient lécher ver 14.09 23.11 0.08 0.74 ind:imp:3p; +léchais lécher ver 14.09 23.11 0.11 0.27 ind:imp:1s;ind:imp:2s; +léchait lécher ver 14.09 23.11 0.37 3.45 ind:imp:3s; +léchant lécher ver 14.09 23.11 0.57 2.09 par:pre; +léchassions lécher ver 14.09 23.11 0.00 0.07 sub:imp:1p; +lécher lécher ver 14.09 23.11 5.73 6.89 inf; +léchera lécher ver 14.09 23.11 0.05 0.07 ind:fut:3s; +lécherai lécher ver 14.09 23.11 0.08 0.00 ind:fut:1s; +lécherais lécher ver 14.09 23.11 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +lécherait lécher ver 14.09 23.11 0.01 0.14 cnd:pre:3s; +lécheras lécher ver 14.09 23.11 0.04 0.07 ind:fut:2s; +lécheront lécher ver 14.09 23.11 0.05 0.00 ind:fut:3p; +lécheur lécheur nom m s 0.47 0.34 0.30 0.14 +lécheurs lécheur nom m p 0.47 0.34 0.17 0.07 +lécheuse lécheur nom f s 0.47 0.34 0.01 0.07 +lécheuses lécheur nom f p 0.47 0.34 0.00 0.07 +léchez lécher ver 14.09 23.11 0.35 0.20 imp:pre:2p;ind:pre:2p; +léchouillait léchouiller ver 0.04 0.20 0.00 0.07 ind:imp:3s; +léchouillent léchouiller ver 0.04 0.20 0.00 0.07 ind:pre:3p; +léchouiller léchouiller ver 0.04 0.20 0.02 0.07 inf; +léchouilles léchouiller ver 0.04 0.20 0.02 0.00 ind:pre:2s; +léchèrent lécher ver 14.09 23.11 0.00 0.14 ind:pas:3p; +léché lécher ver m s 14.09 23.11 0.93 1.42 par:pas; +léchée lécher ver f s 14.09 23.11 0.45 1.01 par:pas; +léchées lécher ver f p 14.09 23.11 0.14 0.41 par:pas; +léchés lécher ver m p 14.09 23.11 0.03 0.20 par:pas; +lucide lucide adj s 3.20 12.43 2.76 10.54 +lucidement lucidement adv 0.02 0.68 0.02 0.68 +lucides lucide adj m p 3.20 12.43 0.44 1.89 +lucidité lucidité nom f s 1.92 10.95 1.92 10.74 +lucidités lucidité nom f p 1.92 10.95 0.00 0.20 +luciférien luciférien adj m s 0.01 0.34 0.00 0.20 +luciférienne luciférien adj f s 0.01 0.34 0.01 0.07 +lucifériens luciférien adj m p 0.01 0.34 0.00 0.07 +lucilie lucilie nom f s 0.02 0.00 0.02 0.00 +luciole luciole nom f s 1.50 2.30 1.01 0.54 +lucioles luciole nom f p 1.50 2.30 0.48 1.76 +lucite lucite nom f s 0.01 0.00 0.01 0.00 +lécithine lécithine nom f s 0.15 0.00 0.15 0.00 +lucratif lucratif adj m s 1.54 0.95 0.88 0.27 +lucratifs lucratif adj m p 1.54 0.95 0.02 0.14 +lucrative lucratif adj f s 1.54 0.95 0.57 0.41 +lucratives lucratif adj f p 1.54 0.95 0.08 0.14 +lucre lucre nom m s 0.14 0.54 0.14 0.54 +luddite luddite nom m s 0.01 0.00 0.01 0.00 +ludion ludion nom m s 0.00 0.61 0.00 0.54 +ludions ludion nom m p 0.00 0.61 0.00 0.07 +ludique ludique adj s 0.42 0.61 0.41 0.54 +ludiques ludique adj p 0.42 0.61 0.01 0.07 +lue lire ver f s 281.09 324.80 2.82 3.18 par:pas; +lues lire ver f p 281.09 324.80 1.12 1.69 par:pas; +luette luette nom f s 0.03 1.28 0.03 1.22 +luettes luette nom f p 0.03 1.28 0.00 0.07 +lueur lueur nom f s 6.65 64.19 5.37 49.12 +lueurs lueur nom f p 6.65 64.19 1.28 15.07 +luffa luffa nom m s 0.04 0.00 0.04 0.00 +légal légal adj m s 16.79 6.49 9.80 2.43 +légale légal adj f s 16.79 6.49 4.51 2.03 +légalement légalement adv 5.09 2.03 5.09 2.03 +légales légal adj f p 16.79 6.49 1.48 1.42 +légalisant légaliser ver 0.76 0.14 0.03 0.07 par:pre; +légalisation légalisation nom f s 0.09 0.00 0.09 0.00 +légalise légaliser ver 0.76 0.14 0.04 0.00 ind:pre:1s;ind:pre:3s; +légaliser légaliser ver 0.76 0.14 0.30 0.00 inf; +légalisez légaliser ver 0.76 0.14 0.14 0.07 imp:pre:2p; +légaliste légaliste adj s 0.00 0.14 0.00 0.07 +légalistes légaliste adj m p 0.00 0.14 0.00 0.07 +légalisé légaliser ver m s 0.76 0.14 0.12 0.00 par:pas; +légalisée légaliser ver f s 0.76 0.14 0.14 0.00 par:pas; +légalité légalité nom f s 2.39 2.50 2.39 2.50 +légat légat nom m s 0.15 2.23 0.00 1.96 +légataire légataire nom s 0.15 0.34 0.14 0.34 +légataires légataire nom p 0.15 0.34 0.01 0.00 +légation légation nom f s 0.06 2.91 0.06 1.89 +légations légation nom f p 0.06 2.91 0.00 1.01 +légats légat nom m p 0.15 2.23 0.15 0.27 +légaux légal adj m p 16.79 6.49 1.00 0.61 +luge luge nom f s 1.22 1.55 1.19 1.42 +légendaire légendaire adj s 4.10 7.50 3.57 5.74 +légendaires légendaire adj p 4.10 7.50 0.53 1.76 +légende légende nom f s 20.41 27.43 16.07 21.49 +légender légender ver 0.00 0.14 0.00 0.07 inf; +légendes légende nom f p 20.41 27.43 4.33 5.95 +légendée légender ver f s 0.00 0.14 0.00 0.07 par:pas; +léger léger adj m s 37.77 151.01 17.03 74.93 +luger luger nom m s 0.38 0.47 0.36 0.47 +légers léger adj m p 37.77 151.01 2.57 17.16 +lugers luger nom m p 0.38 0.47 0.01 0.00 +luges luge nom f p 1.22 1.55 0.03 0.14 +légifère légiférer ver 0.22 0.27 0.01 0.07 ind:pre:3s; +légiférait légiférer ver 0.22 0.27 0.00 0.07 ind:imp:3s; +légiférer légiférer ver 0.22 0.27 0.19 0.14 inf; +légiféré légiférer ver m s 0.22 0.27 0.01 0.00 par:pas; +légion légion nom f s 6.66 16.35 4.17 13.65 +légionellose légionellose nom f s 0.03 0.00 0.03 0.00 +légionnaire légionnaire nom m s 1.23 4.26 0.71 2.57 +légionnaires légionnaire nom m p 1.23 4.26 0.52 1.69 +légions légion nom f p 6.66 16.35 2.50 2.70 +législateur législateur nom m s 0.47 1.08 0.30 0.68 +législateurs législateur nom m p 0.47 1.08 0.17 0.41 +législatif législatif adj m s 0.73 2.03 0.41 0.74 +législatifs législatif adj m p 0.73 2.03 0.03 0.14 +législation législation nom f s 1.16 1.42 1.16 1.42 +législative législatif adj f s 0.73 2.03 0.11 0.54 +législatives législatif adj f p 0.73 2.03 0.18 0.61 +législature législature nom f s 0.20 0.14 0.20 0.14 +légiste légiste nom s 7.97 1.42 7.28 1.35 +légistes légiste nom p 7.97 1.42 0.69 0.07 +légitimaient légitimer ver 0.30 1.62 0.00 0.14 ind:imp:3p; +légitimait légitimer ver 0.30 1.62 0.00 0.14 ind:imp:3s; +légitimant légitimer ver 0.30 1.62 0.02 0.07 par:pre; +légitimation légitimation nom f s 0.03 0.07 0.03 0.00 +légitimations légitimation nom f p 0.03 0.07 0.00 0.07 +légitime légitime adj s 14.08 16.22 12.82 13.24 +légitimement légitimement adv 0.27 1.22 0.27 1.22 +légitiment légitimer ver 0.30 1.62 0.00 0.07 ind:pre:3p; +légitimer légitimer ver 0.30 1.62 0.19 0.47 inf; +légitimera légitimer ver 0.30 1.62 0.01 0.07 ind:fut:3s; +légitimes légitime adj p 14.08 16.22 1.26 2.97 +légitimiste légitimiste adj m s 0.00 0.34 0.00 0.34 +légitimistes légitimiste nom p 0.00 0.07 0.00 0.07 +légitimité légitimité nom f s 0.76 1.76 0.76 1.76 +légitimé légitimer ver m s 0.30 1.62 0.05 0.27 par:pas; +légitimée légitimer ver f s 0.30 1.62 0.00 0.07 par:pas; +légère léger adj f s 37.77 151.01 15.71 47.84 +légèrement légèrement adv 6.35 65.20 6.35 65.20 +légères léger adj f p 37.77 151.01 2.45 11.08 +légèreté légèreté nom f s 1.35 12.70 1.35 12.50 +légèretés légèreté nom f p 1.35 12.70 0.00 0.20 +légua léguer ver 4.98 5.61 0.02 0.27 ind:pas:3s; +léguaient léguer ver 4.98 5.61 0.00 0.07 ind:imp:3p; +léguais léguer ver 4.98 5.61 0.00 0.07 ind:imp:1s; +léguait léguer ver 4.98 5.61 0.04 0.20 ind:imp:3s; +léguant léguer ver 4.98 5.61 0.31 0.27 par:pre; +lugubre lugubre adj s 3.25 10.41 3.00 7.97 +lugubrement lugubrement adv 0.00 0.81 0.00 0.81 +lugubres lugubre adj p 3.25 10.41 0.25 2.43 +léguer léguer ver 4.98 5.61 0.67 1.22 inf; +léguera léguer ver 4.98 5.61 0.00 0.07 ind:fut:3s; +léguerai léguer ver 4.98 5.61 0.01 0.20 ind:fut:1s; +léguerais léguer ver 4.98 5.61 0.01 0.07 cnd:pre:2s; +léguerez léguer ver 4.98 5.61 0.01 0.00 ind:fut:2p; +léguerons léguer ver 4.98 5.61 0.01 0.00 ind:fut:1p; +légueront léguer ver 4.98 5.61 0.01 0.00 ind:fut:3p; +léguez léguer ver 4.98 5.61 0.16 0.00 imp:pre:2p;ind:pre:2p; +légume légume nom m s 15.16 23.45 3.20 2.09 +légumes légume nom m p 15.16 23.45 11.96 21.35 +légumier légumier nom m s 0.00 0.07 0.00 0.07 +légumineuse légumineux nom f s 0.00 0.07 0.00 0.07 +légumineux légumineux adj m 0.00 0.07 0.00 0.07 +légué léguer ver m s 4.98 5.61 1.99 1.96 par:pas; +léguée léguer ver f s 4.98 5.61 0.09 0.47 par:pas; +léguées léguer ver f p 4.98 5.61 0.02 0.14 par:pas; +légués léguer ver m p 4.98 5.61 0.17 0.07 par:pas; +lui_même lui_même pro_per m s 46.58 202.30 46.58 202.30 +lui lui pro_per s 2308.74 4225.14 2308.74 4225.14 +luira luire ver 15.67 37.57 0.03 0.00 ind:fut:3s; +luiraient luire ver 15.67 37.57 0.00 0.07 cnd:pre:3p; +luirait luire ver 15.67 37.57 0.00 0.07 cnd:pre:3s; +luire luire ver 15.67 37.57 0.95 4.19 inf; +luirent luire ver 15.67 37.57 0.00 0.07 ind:pas:3p; +luis luire ver 15.67 37.57 6.61 1.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +luisaient luire ver 15.67 37.57 0.03 5.00 ind:imp:3p; +luisait luire ver 15.67 37.57 0.31 5.95 ind:imp:3s; +luisance luisance nom f s 0.00 1.08 0.00 0.88 +luisances luisance nom f p 0.00 1.08 0.00 0.20 +luisant luisant adj m s 0.81 28.51 0.52 8.45 +luisante luisant adj f s 0.81 28.51 0.09 7.43 +luisantes luisant adj f p 0.81 28.51 0.03 5.95 +luisants luisant adj m p 0.81 28.51 0.17 6.69 +luise luire ver 15.67 37.57 0.00 0.14 sub:pre:3s; +luisent luire ver 15.67 37.57 0.06 2.50 ind:pre:3p; +luit luire ver 15.67 37.57 2.02 3.31 ind:pre:3s;ind:pas:3s; +lulu lulu nom m s 0.03 0.74 0.03 0.61 +lulus lulu nom m p 0.03 0.74 0.00 0.14 +lumbago lumbago nom m s 0.16 0.68 0.14 0.47 +lumbagos lumbago nom m p 0.16 0.68 0.01 0.20 +lumen lumen nom m s 0.05 0.34 0.05 0.34 +lumignon lumignon nom m s 0.00 2.09 0.00 1.42 +lumignons lumignon nom m p 0.00 2.09 0.00 0.68 +luminaire luminaire nom m s 0.05 0.68 0.00 0.27 +luminaires luminaire nom m p 0.05 0.68 0.05 0.41 +luminescence luminescence nom f s 0.05 0.14 0.05 0.14 +luminescent luminescent adj m s 0.04 0.95 0.00 0.34 +luminescente luminescent adj f s 0.04 0.95 0.01 0.14 +luminescentes luminescent adj f p 0.04 0.95 0.03 0.34 +luminescents luminescent adj m p 0.04 0.95 0.00 0.14 +lumineuse lumineux adj f s 7.36 39.46 2.21 11.42 +lumineusement lumineusement adv 0.10 0.27 0.10 0.27 +lumineuses lumineux adj f p 7.36 39.46 0.35 4.80 +lumineux lumineux adj m 7.36 39.46 4.79 23.24 +luminosité luminosité nom f s 0.66 2.03 0.66 1.82 +luminosités luminosité nom f p 0.66 2.03 0.00 0.20 +lumière lumière nom f s 134.83 274.26 116.02 238.65 +lumières lumière nom f p 134.83 274.26 18.81 35.61 +lump lump nom m s 0.14 0.07 0.14 0.07 +lémur lémur nom m s 0.01 0.00 0.01 0.00 +lémure lémure nom m s 0.00 0.27 0.00 0.14 +lémures lémure nom m p 0.00 0.27 0.00 0.14 +lémurien lémurien nom m s 0.34 0.41 0.30 0.00 +lémuriens lémurien nom m p 0.34 0.41 0.04 0.41 +lunaire lunaire adj s 3.82 4.66 3.58 3.78 +lunaires lunaire adj p 3.82 4.66 0.24 0.88 +lunaison lunaison nom f s 0.01 0.14 0.01 0.07 +lunaisons lunaison nom f p 0.01 0.14 0.00 0.07 +lunatique lunatique adj s 1.79 1.15 1.58 0.88 +lunatiques lunatique adj m p 1.79 1.15 0.21 0.27 +lunch lunch nom m s 0.54 1.22 0.54 1.22 +luncher luncher ver 0.14 0.00 0.14 0.00 inf; +lunches lunche nom m p 0.00 0.14 0.00 0.14 +lundi lundi nom m s 36.94 24.46 36.01 23.51 +lundis lundi nom m p 36.94 24.46 0.93 0.95 +lune lune nom f s 61.02 66.69 58.29 63.24 +lunes lune nom f p 61.02 66.69 2.74 3.45 +lunetier lunetier nom m s 0.00 0.07 0.00 0.07 +lunette lunette nom f s 33.33 75.27 1.71 7.43 +lunetteries lunetterie nom f p 0.00 0.07 0.00 0.07 +lunettes lunette nom f p 33.33 75.27 31.61 67.84 +lunetteux lunetteux adj m s 0.00 0.20 0.00 0.20 +lunetté lunetté adj m s 0.00 0.20 0.00 0.20 +lénifiait lénifier ver 0.00 0.07 0.00 0.07 ind:imp:3s; +lénifiant lénifiant adj m s 0.04 1.01 0.01 0.07 +lénifiante lénifiant adj f s 0.04 1.01 0.01 0.68 +lénifiantes lénifiant adj f p 0.04 1.01 0.00 0.20 +lénifiants lénifiant adj m p 0.04 1.01 0.01 0.07 +lénification lénification nom f s 0.00 0.07 0.00 0.07 +léninisme léninisme nom m s 0.27 0.20 0.27 0.20 +léniniste léniniste adj f s 0.14 0.27 0.14 0.20 +léninistes léniniste nom p 0.00 0.34 0.00 0.34 +lénitive lénitif adj f s 0.00 0.27 0.00 0.20 +lénitives lénitif adj f p 0.00 0.27 0.00 0.07 +luné luné adj m s 0.84 0.68 0.66 0.47 +lunée luné adj f s 0.84 0.68 0.18 0.07 +lunule lunule nom f s 0.00 1.01 0.00 0.34 +lunules lunule nom f p 0.00 1.01 0.00 0.68 +lunés luné adj m p 0.84 0.68 0.00 0.14 +léonard léonard adj m s 0.05 0.14 0.05 0.14 +léonin léonin adj m s 0.00 0.68 0.00 0.27 +léonine léonin adj f s 0.00 0.68 0.00 0.34 +léonins léonin adj m p 0.00 0.68 0.00 0.07 +léopard léopard nom m s 3.64 2.70 3.18 2.57 +léopards léopard nom m p 3.64 2.70 0.46 0.14 +léopardé léopardé adj m s 0.00 0.07 0.00 0.07 +lupanar lupanar nom m s 0.21 0.95 0.07 0.74 +lupanars lupanar nom m p 0.21 0.95 0.14 0.20 +lépidoptère lépidoptère nom m s 0.00 0.20 0.00 0.14 +lépidoptères lépidoptère nom m p 0.00 0.20 0.00 0.07 +lupin lupin nom m s 0.25 0.47 0.15 0.20 +lupins lupin nom m p 0.25 0.47 0.10 0.27 +lépiotes lépiote nom f p 0.00 0.07 0.00 0.07 +lépontique lépontique nom m s 0.00 0.14 0.00 0.14 +lépreuse lépreux adj f s 0.41 2.57 0.15 0.41 +lépreuses lépreuse nom f p 0.04 0.00 0.04 0.00 +lépreux lépreux nom m 2.61 2.64 2.54 2.57 +léprologie léprologie nom f s 0.01 0.00 0.01 0.00 +léproserie léproserie nom f s 0.32 0.81 0.32 0.74 +léproseries léproserie nom f p 0.32 0.81 0.00 0.07 +lupus lupus nom m 1.28 0.27 1.28 0.27 +lur lur nom m s 0.00 0.07 0.00 0.07 +lurent lire ver 281.09 324.80 0.01 0.54 ind:pas:3p; +lurex lurex nom m 0.20 0.14 0.20 0.14 +luron luron nom m s 0.69 0.88 0.27 0.61 +luronne luron nom f s 0.69 0.88 0.29 0.00 +luronnes luron nom f p 0.69 0.88 0.00 0.14 +lurons luron nom m p 0.69 0.88 0.13 0.14 +lérot lérot nom m s 0.01 0.14 0.01 0.00 +lérots lérot nom m p 0.01 0.14 0.00 0.14 +lés lé nom m p 2.30 2.03 0.02 0.68 +lus lire ver m p 281.09 324.80 3.06 7.97 ind:pas:1s;ind:pas:2s;par:pas; +lésaient léser ver 1.36 1.08 0.00 0.07 ind:imp:3p; +lésais léser ver 1.36 1.08 0.00 0.07 ind:imp:1s; +léser léser ver 1.36 1.08 0.33 0.07 inf; +lésina lésiner ver 1.01 2.30 0.00 0.07 ind:pas:3s; +lésinaient lésiner ver 1.01 2.30 0.00 0.14 ind:imp:3p; +lésinait lésiner ver 1.01 2.30 0.00 0.20 ind:imp:3s; +lésine lésiner ver 1.01 2.30 0.47 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lésinent lésiner ver 1.01 2.30 0.00 0.20 ind:pre:3p; +lésiner lésiner ver 1.01 2.30 0.36 0.88 inf; +lésinerie lésinerie nom f s 0.00 0.07 0.00 0.07 +lésines lésine nom f p 0.00 0.20 0.00 0.07 +lésinez lésiner ver 1.01 2.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +lésiné lésiner ver m s 1.01 2.30 0.09 0.47 par:pas; +lésion lésion nom f s 4.37 1.28 1.84 0.47 +lésionnaire lésionnaire adj s 0.01 0.00 0.01 0.00 +lésions lésion nom f p 4.37 1.28 2.53 0.81 +lusitanienne lusitanien adj f s 0.00 0.07 0.00 0.07 +lésons léser ver 1.36 1.08 0.01 0.00 ind:pre:1p; +lustra lustrer ver 0.80 2.43 0.00 0.07 ind:pas:3s; +lustrage lustrage nom m s 0.05 0.00 0.05 0.00 +lustraient lustrer ver 0.80 2.43 0.00 0.07 ind:imp:3p; +lustrait lustrer ver 0.80 2.43 0.00 0.20 ind:imp:3s; +lustral lustral adj m s 0.00 1.35 0.00 0.74 +lustrale lustral adj f s 0.00 1.35 0.00 0.41 +lustrales lustral adj f p 0.00 1.35 0.00 0.20 +lustrant lustrer ver 0.80 2.43 0.01 0.07 par:pre; +lustre lustre nom m s 3.92 15.14 0.93 7.30 +lustrer lustrer ver 0.80 2.43 0.51 0.68 inf; +lustres lustre nom m p 3.92 15.14 2.99 7.84 +lustreur lustreur nom m s 0.01 0.07 0.01 0.00 +lustreuse lustreur nom f s 0.01 0.07 0.00 0.07 +lustrine lustrine nom f s 0.00 0.74 0.00 0.74 +lustré lustrer ver m s 0.80 2.43 0.04 0.41 par:pas; +lustrée lustrer ver f s 0.80 2.43 0.06 0.41 par:pas; +lustrées lustré adj f p 0.09 2.23 0.02 0.27 +lustrés lustré adj m p 0.09 2.23 0.02 0.47 +lustucru lustucru nom m s 0.01 0.07 0.01 0.07 +lésé léser ver m s 1.36 1.08 0.43 0.41 par:pas; +lésée léser ver f s 1.36 1.08 0.35 0.14 par:pas; +lésées léser ver f p 1.36 1.08 0.02 0.00 par:pas; +lésés léser ver m p 1.36 1.08 0.15 0.27 par:pas; +lut lire ver 281.09 324.80 0.36 15.88 ind:pas:3s; +létal létal adj m s 0.29 0.07 0.03 0.00 +létale létal adj f s 0.29 0.07 0.23 0.07 +létales létal adj f p 0.29 0.07 0.03 0.00 +létalité létalité nom f s 0.02 0.00 0.02 0.00 +luth luth nom m s 0.17 1.62 0.17 1.28 +léthargie léthargie nom f s 0.76 2.16 0.75 2.09 +léthargies léthargie nom f p 0.76 2.16 0.01 0.07 +léthargique léthargique adj s 0.22 0.81 0.18 0.54 +léthargiques léthargique adj m p 0.22 0.81 0.04 0.27 +lutherie lutherie nom f s 0.00 0.07 0.00 0.07 +luthier luthier nom m s 0.11 0.20 0.11 0.20 +luths luth nom m p 0.17 1.62 0.00 0.34 +luthéranisme luthéranisme nom m s 0.01 0.14 0.01 0.14 +luthérianisme luthérianisme nom m s 0.00 0.07 0.00 0.07 +luthérien luthérien adj m s 0.36 0.81 0.10 0.47 +luthérienne luthérien adj f s 0.36 0.81 0.20 0.27 +luthériennes luthérienne adj f p 0.01 0.00 0.01 0.00 +luthériens luthérien adj m p 0.36 0.81 0.06 0.00 +lutin lutin nom m s 2.14 1.01 1.45 0.61 +lutinaient lutiner ver 0.26 1.15 0.00 0.07 ind:imp:3p; +lutinait lutiner ver 0.26 1.15 0.01 0.20 ind:imp:3s; +lutinant lutiner ver 0.26 1.15 0.00 0.07 par:pre; +lutine lutin adj f s 0.63 0.61 0.01 0.07 +lutinent lutiner ver 0.26 1.15 0.00 0.14 ind:pre:3p; +lutiner lutiner ver 0.26 1.15 0.21 0.27 inf; +lutinerais lutiner ver 0.26 1.15 0.01 0.07 cnd:pre:1s; +lutins lutin nom m p 2.14 1.01 0.69 0.41 +lutinèrent lutiner ver 0.26 1.15 0.00 0.07 ind:pas:3p; +lutiné lutiner ver m s 0.26 1.15 0.02 0.14 par:pas; +lutinée lutiner ver f s 0.26 1.15 0.00 0.07 par:pas; +lutrin lutrin nom m s 0.00 1.35 0.00 1.15 +lutrins lutrin nom m p 0.00 1.35 0.00 0.20 +lutta lutter ver 25.41 48.78 0.05 1.42 ind:pas:3s; +luttai lutter ver 25.41 48.78 0.14 0.27 ind:pas:1s; +luttaient lutter ver 25.41 48.78 0.32 2.03 ind:imp:3p; +luttais lutter ver 25.41 48.78 0.29 0.88 ind:imp:1s;ind:imp:2s; +luttait lutter ver 25.41 48.78 0.76 5.54 ind:imp:3s; +luttant lutter ver 25.41 48.78 1.56 5.20 par:pre; +lutte lutte nom f s 23.18 41.82 22.00 37.36 +luttent lutter ver 25.41 48.78 1.56 1.76 ind:pre:3p; +lutter lutter ver 25.41 48.78 10.24 20.81 inf;; +luttera lutter ver 25.41 48.78 0.06 0.00 ind:fut:3s; +lutterai lutter ver 25.41 48.78 0.11 0.20 ind:fut:1s; +lutterais lutter ver 25.41 48.78 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +lutterait lutter ver 25.41 48.78 0.13 0.20 cnd:pre:3s; +lutterions lutter ver 25.41 48.78 0.00 0.07 cnd:pre:1p; +lutterons lutter ver 25.41 48.78 0.19 0.00 ind:fut:1p; +lutteront lutter ver 25.41 48.78 0.10 0.00 ind:fut:3p; +luttes lutte nom f p 23.18 41.82 1.19 4.46 +lutteur lutteur nom m s 1.27 3.78 0.88 1.62 +lutteurs lutteur nom m p 1.27 3.78 0.24 1.08 +lutteuse lutteur nom f s 1.27 3.78 0.14 0.27 +lutteuses lutteur nom f p 1.27 3.78 0.01 0.81 +luttez lutter ver 25.41 48.78 0.92 0.14 imp:pre:2p;ind:pre:2p; +luttiez lutter ver 25.41 48.78 0.07 0.00 ind:imp:2p; +luttions lutter ver 25.41 48.78 0.02 0.27 ind:imp:1p; +luttons lutter ver 25.41 48.78 0.80 0.41 imp:pre:1p;ind:pre:1p; +luttât lutter ver 25.41 48.78 0.00 0.14 sub:imp:3s; +luttèrent lutter ver 25.41 48.78 0.14 0.41 ind:pas:3p; +lutté lutter ver m s 25.41 48.78 3.27 4.26 par:pas; +luté luter ver m s 0.00 0.14 0.00 0.14 par:pas; +lutécien lutécien adj m s 0.00 0.07 0.00 0.07 +lutz lutz nom m 4.52 0.14 4.52 0.14 +léviathan léviathan nom m s 0.27 0.27 0.27 0.27 +lévitation lévitation nom f s 0.46 0.61 0.46 0.61 +lévite lévite nom s 0.10 0.54 0.09 0.41 +lévitent léviter ver 0.47 0.07 0.01 0.07 ind:pre:3p; +léviter léviter ver 0.47 0.07 0.46 0.00 inf; +lévites lévite nom p 0.10 0.54 0.01 0.14 +lévitique lévitique adj s 0.02 0.00 0.02 0.00 +lévitique lévitique nom s 0.02 0.00 0.02 0.00 +lévrier lévrier nom m s 0.94 2.30 0.31 1.55 +lévriers lévrier nom m p 0.94 2.30 0.63 0.74 +lux lux nom m 0.34 0.34 0.34 0.34 +luxa luxer ver 0.16 0.34 0.01 0.00 ind:pas:3s; +luxation luxation nom f s 0.38 0.14 0.37 0.07 +luxations luxation nom f p 0.38 0.14 0.01 0.07 +luxe luxe nom m s 15.62 38.85 15.42 38.65 +luxembourgeois luxembourgeois adj m 0.00 0.74 0.00 0.47 +luxembourgeoise luxembourgeois adj f s 0.00 0.74 0.00 0.27 +luxer luxer ver 0.16 0.34 0.01 0.00 inf; +luxes luxe nom m p 15.62 38.85 0.20 0.20 +luxé luxer ver m s 0.16 0.34 0.03 0.07 par:pas; +luxueuse luxueux adj f s 2.59 7.43 0.50 1.82 +luxueusement luxueusement adv 0.39 0.81 0.39 0.81 +luxueuses luxueux adj f p 2.59 7.43 0.12 0.95 +luxueux luxueux adj m 2.59 7.43 1.98 4.66 +luxure luxure nom f s 2.92 2.30 2.92 2.30 +luxuriance luxuriance nom f s 0.10 0.47 0.10 0.47 +luxuriant luxuriant adj m s 0.41 1.62 0.18 0.34 +luxuriante luxuriant adj f s 0.41 1.62 0.17 0.81 +luxuriantes luxuriant adj f p 0.41 1.62 0.04 0.14 +luxuriants luxuriant adj m p 0.41 1.62 0.02 0.34 +luxurieuse luxurieux adj f s 0.03 0.54 0.01 0.20 +luxurieux luxurieux adj m 0.03 0.54 0.02 0.34 +lézard lézard nom m s 6.16 11.42 4.90 7.50 +lézardaient lézarder ver 0.27 1.89 0.00 0.20 ind:imp:3p; +lézardait lézarder ver 0.27 1.89 0.00 0.41 ind:imp:3s; +lézarde lézard nom f s 6.16 11.42 0.03 0.88 +lézardent lézarder ver 0.27 1.89 0.23 0.00 ind:pre:3p; +lézarder lézarder ver 0.27 1.89 0.01 0.34 inf; +lézardes lézard nom f p 6.16 11.42 0.01 1.22 +lézards lézard nom m p 6.16 11.42 1.22 1.82 +lézardé lézarder ver m s 0.27 1.89 0.01 0.07 par:pas; +lézardée lézardé adj f s 0.02 0.88 0.01 0.27 +lézardées lézardé adj f p 0.02 0.88 0.00 0.27 +lézardés lézarder ver m p 0.27 1.89 0.00 0.27 par:pas; +luzerne luzerne nom f s 0.44 3.04 0.44 2.84 +luzernes luzerne nom f p 0.44 3.04 0.00 0.20 +luzernières luzernière nom f p 0.00 0.07 0.00 0.07 +lycanthrope lycanthrope nom m s 0.10 0.00 0.09 0.00 +lycanthropes lycanthrope nom m p 0.10 0.00 0.01 0.00 +lycanthropie lycanthropie nom f s 0.18 0.00 0.18 0.00 +lycaons lycaon nom m p 0.00 0.07 0.00 0.07 +lychee lychee nom m s 0.16 0.14 0.14 0.00 +lychees lychee nom m p 0.16 0.14 0.01 0.14 +lychnis lychnis nom m 0.00 0.07 0.00 0.07 +lycien lycien nom m s 0.00 0.20 0.00 0.07 +lyciennes lycien nom f p 0.00 0.20 0.00 0.14 +lycoperdon lycoperdon nom m s 0.00 0.14 0.00 0.07 +lycoperdons lycoperdon nom m p 0.00 0.14 0.00 0.07 +lycra lycra nom m s 0.28 0.14 0.28 0.14 +lycée lycée nom m s 42.56 38.78 41.96 36.42 +lycéen lycéen nom m s 3.13 10.61 0.64 1.42 +lycéenne lycéen nom f s 3.13 10.61 0.68 5.95 +lycéennes lycéenne nom f p 0.41 0.00 0.41 0.00 +lycéens lycéen nom m p 3.13 10.61 1.81 1.69 +lycées lycée nom m p 42.56 38.78 0.59 2.36 +lymphangite lymphangite nom f s 0.00 0.07 0.00 0.07 +lymphatique lymphatique adj s 0.67 0.47 0.44 0.27 +lymphatiques lymphatique adj p 0.67 0.47 0.24 0.20 +lymphatisme lymphatisme nom m s 0.00 0.07 0.00 0.07 +lymphe lymphe nom f s 0.20 0.47 0.20 0.41 +lymphes lymphe nom f p 0.20 0.47 0.00 0.07 +lymphoïde lymphoïde adj s 0.01 0.00 0.01 0.00 +lymphocytaire lymphocytaire adj s 0.02 0.14 0.02 0.07 +lymphocytaires lymphocytaire adj p 0.02 0.14 0.00 0.07 +lymphocyte lymphocyte nom m s 0.18 0.20 0.03 0.00 +lymphocytes lymphocyte nom m p 0.18 0.20 0.14 0.20 +lymphocytose lymphocytose nom f s 0.01 0.00 0.01 0.00 +lymphome lymphome nom m s 0.30 0.07 0.29 0.07 +lymphomes lymphome nom m p 0.30 0.07 0.01 0.00 +lymphopénie lymphopénie nom f s 0.00 0.07 0.00 0.07 +lymphosarcome lymphosarcome nom m s 0.01 0.00 0.01 0.00 +lynch lynch nom m s 0.29 0.27 0.29 0.27 +lynchage lynchage nom m s 0.99 0.81 0.81 0.68 +lynchages lynchage nom m p 0.99 0.81 0.18 0.14 +lynchait lyncher ver 1.04 0.81 0.01 0.07 ind:imp:3s; +lynchent lyncher ver 1.04 0.81 0.01 0.00 ind:pre:3p; +lyncher lyncher ver 1.04 0.81 0.58 0.47 inf; +lyncheurs lyncheur nom m p 0.06 0.00 0.06 0.00 +lynchez lyncher ver 1.04 0.81 0.02 0.00 imp:pre:2p;ind:pre:2p; +lynchiez lyncher ver 1.04 0.81 0.01 0.00 ind:imp:2p; +lynchons lyncher ver 1.04 0.81 0.02 0.00 imp:pre:1p; +lynché lyncher ver m s 1.04 0.81 0.33 0.14 par:pas; +lynchée lyncher ver f s 1.04 0.81 0.01 0.07 par:pas; +lynchés lyncher ver m p 1.04 0.81 0.05 0.07 par:pas; +lynx lynx nom m 1.73 1.22 1.73 1.22 +lyonnais lyonnais adj m 0.28 1.01 0.27 0.81 +lyonnaise lyonnais adj f s 0.28 1.01 0.01 0.20 +lyophilisant lyophiliser ver 0.07 0.00 0.01 0.00 par:pre; +lyophiliser lyophiliser ver 0.07 0.00 0.05 0.00 inf; +lyophilisé lyophilisé adj m s 0.15 0.07 0.06 0.00 +lyophilisée lyophilisé adj f s 0.15 0.07 0.04 0.00 +lyophilisés lyophilisé adj m p 0.15 0.07 0.04 0.07 +lyre lyre nom f s 0.71 1.42 0.55 1.15 +lyres lyre nom f p 0.71 1.42 0.16 0.27 +lyrique lyrique adj s 0.95 5.20 0.92 4.26 +lyriques lyrique adj p 0.95 5.20 0.03 0.95 +lyriser lyriser ver 0.00 0.07 0.00 0.07 inf; +lyrisme lyrisme nom m s 0.26 3.11 0.26 3.11 +lys lys nom m 2.41 3.38 2.41 3.38 +lyse lyse nom f s 0.04 0.00 0.04 0.00 +lysergique lysergique adj m s 0.07 0.14 0.07 0.14 +lysimaque lysimaque nom f s 0.01 0.00 0.01 0.00 +lysine lysine nom f s 0.04 0.07 0.04 0.07 +lysosomes lysosome nom m p 0.14 0.00 0.14 0.00 +m_as_tu_vu m_as_tu_vu adj s 0.03 0.00 0.03 0.00 +m m pro_per s 13.94 0.27 13.94 0.27 +mîmes mettre ver 1004.84 1083.65 0.00 1.42 ind:pas:1p; +mît mettre ver 1004.84 1083.65 0.00 3.51 sub:imp:3s; +môle môle nom s 1.60 3.92 1.60 3.45 +môles môle nom p 1.60 3.92 0.00 0.47 +môme môme nom s 28.15 61.08 18.88 37.03 +mômeries mômerie nom f p 0.00 0.14 0.00 0.14 +mômes môme nom p 28.15 61.08 9.28 24.05 +mû mouvoir ver m s 1.75 13.18 0.19 1.96 par:pas; +mûr mûr adj m s 9.89 19.73 3.60 8.31 +mûre mûr adj f s 9.89 19.73 2.98 4.80 +mûrement mûrement adv 0.40 0.34 0.40 0.34 +mûres mûr adj f p 9.89 19.73 2.04 2.70 +mûri mûrir ver m s 3.77 8.24 1.32 1.42 par:pas; +mûrie mûrir ver f s 3.77 8.24 0.21 0.54 par:pas; +mûrier mûrier nom m s 0.48 0.74 0.20 0.27 +mûriers mûrier nom m p 0.48 0.74 0.28 0.47 +mûries mûrir ver f p 3.77 8.24 0.00 0.20 par:pas; +mûrir mûrir ver 3.77 8.24 1.11 2.70 inf; +mûrira mûrir ver 3.77 8.24 0.16 0.07 ind:fut:3s; +mûriraient mûrir ver 3.77 8.24 0.01 0.07 cnd:pre:3p; +mûrirez mûrir ver 3.77 8.24 0.00 0.07 ind:fut:2p; +mûris mûrir ver m p 3.77 8.24 0.23 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +mûrissaient mûrir ver 3.77 8.24 0.14 0.27 ind:imp:3p; +mûrissait mûrir ver 3.77 8.24 0.00 0.74 ind:imp:3s; +mûrissant mûrir ver 3.77 8.24 0.02 0.00 par:pre; +mûrissante mûrissant adj f s 0.02 0.61 0.00 0.20 +mûrissantes mûrissant adj f p 0.02 0.61 0.01 0.14 +mûrissants mûrissant adj m p 0.02 0.61 0.00 0.14 +mûrisse mûrir ver 3.77 8.24 0.11 0.14 sub:pre:1s;sub:pre:3s; +mûrissement mûrissement nom m s 0.10 0.54 0.10 0.41 +mûrissements mûrissement nom m p 0.10 0.54 0.00 0.14 +mûrissent mûrir ver 3.77 8.24 0.15 0.61 ind:pre:3p; +mûrisseries mûrisserie nom f p 0.00 0.07 0.00 0.07 +mûrit mûrir ver 3.77 8.24 0.30 1.15 ind:pre:3s;ind:pas:3s; +mûron mûron nom m s 0.00 0.07 0.00 0.07 +mûrs mûr adj m p 9.89 19.73 1.27 3.92 +ma_jong ma_jong nom m s 0.02 0.07 0.02 0.07 +ma ma adj_pos 2346.90 1667.16 2346.90 1667.16 +maître_assistant maître_assistant nom m s 0.00 0.07 0.00 0.07 +maître_autel maître_autel nom m s 0.00 0.61 0.00 0.61 +maître_chanteur maître_chanteur nom m s 0.21 0.20 0.21 0.20 +maître_chien maître_chien nom m s 0.11 0.00 0.11 0.00 +maître_coq maître_coq nom m s 0.01 0.00 0.01 0.00 +maître_nageur maître_nageur nom m s 0.45 0.27 0.45 0.27 +maître_à_danser maître_à_danser nom m s 0.00 0.07 0.00 0.07 +maître_queux maître_queux nom m s 0.00 0.14 0.00 0.14 +maître maître nom m s 128.55 151.49 118.88 125.74 +maîtres maître nom m p 128.55 151.49 9.67 25.74 +maîtresse maîtresse nom f s 26.59 53.92 25.22 47.43 +maîtresses maîtresse nom f p 26.59 53.92 1.38 6.49 +maîtrisa maîtriser ver 15.57 14.93 0.01 0.81 ind:pas:3s; +maîtrisable maîtrisable adj f s 0.06 0.14 0.06 0.07 +maîtrisables maîtrisable adj p 0.06 0.14 0.00 0.07 +maîtrisaient maîtriser ver 15.57 14.93 0.05 0.34 ind:imp:3p; +maîtrisais maîtriser ver 15.57 14.93 0.16 0.07 ind:imp:1s;ind:imp:2s; +maîtrisait maîtriser ver 15.57 14.93 0.37 0.54 ind:imp:3s; +maîtrisant maîtriser ver 15.57 14.93 0.19 1.22 par:pre; +maîtrise maîtrise nom f s 4.22 7.70 4.16 7.70 +maîtrisent maîtriser ver 15.57 14.93 0.39 0.27 ind:pre:3p; +maîtriser maîtriser ver 15.57 14.93 5.85 8.24 inf; +maîtrisera maîtriser ver 15.57 14.93 0.08 0.00 ind:fut:3s; +maîtriserai maîtriser ver 15.57 14.93 0.16 0.00 ind:fut:1s; +maîtriseraient maîtriser ver 15.57 14.93 0.00 0.07 cnd:pre:3p; +maîtriserait maîtriser ver 15.57 14.93 0.01 0.07 cnd:pre:3s; +maîtriseras maîtriser ver 15.57 14.93 0.01 0.00 ind:fut:2s; +maîtriserez maîtriser ver 15.57 14.93 0.03 0.00 ind:fut:2p; +maîtriseriez maîtriser ver 15.57 14.93 0.02 0.00 cnd:pre:2p; +maîtriserons maîtriser ver 15.57 14.93 0.20 0.07 ind:fut:1p; +maîtriseront maîtriser ver 15.57 14.93 0.02 0.00 ind:fut:3p; +maîtrises maîtriser ver 15.57 14.93 0.81 0.00 ind:pre:2s; +maîtrisez maîtriser ver 15.57 14.93 1.05 0.20 imp:pre:2p;ind:pre:2p; +maîtrisiez maîtriser ver 15.57 14.93 0.05 0.00 ind:imp:2p; +maîtrisions maîtriser ver 15.57 14.93 0.03 0.07 ind:imp:1p;sub:pre:1p; +maîtrisons maîtriser ver 15.57 14.93 0.43 0.00 imp:pre:1p;ind:pre:1p; +maîtrisèrent maîtriser ver 15.57 14.93 0.02 0.07 ind:pas:3p; +maîtrisé maîtriser ver m s 15.57 14.93 1.23 1.01 par:pas; +maîtrisée maîtriser ver f s 15.57 14.93 0.29 0.41 par:pas; +maîtrisées maîtriser ver f p 15.57 14.93 0.01 0.14 par:pas; +maîtrisés maîtrisé adj m p 0.60 1.35 0.20 0.14 +maïa maïa nom m s 0.00 3.51 0.00 3.51 +maïs maïs nom m 6.33 6.42 6.33 6.42 +maïzena maïzena nom f s 0.03 0.20 0.03 0.20 +maboul maboul adj m s 0.97 1.35 0.61 0.68 +maboule maboul adj f s 0.97 1.35 0.30 0.47 +maboules maboul adj f p 0.97 1.35 0.03 0.14 +mabouls maboul nom m p 0.34 0.95 0.09 0.00 +mac mac nom m s 7.74 1.82 6.81 1.49 +macabre macabre adj s 2.63 3.51 2.26 2.70 +macabres macabre adj p 2.63 3.51 0.37 0.81 +macache macache adv 0.06 0.74 0.06 0.74 +macadam macadam nom m s 0.23 4.53 0.23 4.53 +macadamia macadamia nom m s 0.11 0.00 0.11 0.00 +macaque macaque nom s 1.72 0.41 1.44 0.14 +macaques macaque nom p 1.72 0.41 0.28 0.27 +macarel macarel ono 0.00 0.07 0.00 0.07 +macarelle macarelle ono 0.00 0.14 0.00 0.14 +macareux macareux nom m 0.01 0.27 0.01 0.27 +macaron macaron nom m s 0.34 1.35 0.12 0.61 +macaroni macaroni nom m s 3.11 2.43 1.37 1.01 +macaronique macaronique adj m s 0.00 0.14 0.00 0.14 +macaronis macaroni nom m p 3.11 2.43 1.74 1.42 +macarons macaron nom m p 0.34 1.35 0.22 0.74 +macassar macassar nom m s 0.00 0.14 0.00 0.14 +maccarthysme maccarthysme nom m s 0.05 0.00 0.05 0.00 +macchab macchab nom m s 0.09 0.74 0.07 0.47 +macchabs macchab nom m p 0.09 0.74 0.02 0.27 +macchabée macchabée nom m s 2.63 1.96 1.86 0.95 +macchabées macchabée nom m p 2.63 1.96 0.77 1.01 +macfarlane macfarlane nom m s 0.34 0.07 0.34 0.07 +mach mach nom m 0.07 0.07 0.07 0.07 +machaon machaon nom m s 0.01 0.00 0.01 0.00 +machette machette nom f s 2.64 1.35 1.88 1.22 +machettes machette nom f p 2.64 1.35 0.77 0.14 +machiavélique machiavélique adj s 0.57 0.54 0.50 0.54 +machiavéliques machiavélique adj p 0.57 0.54 0.07 0.00 +machiavélisme machiavélisme nom m s 0.01 0.47 0.01 0.41 +machiavélismes machiavélisme nom m p 0.01 0.47 0.00 0.07 +machin machin nom m s 14.60 14.32 12.34 10.07 +machina machiner ver 0.07 0.88 0.03 0.07 ind:pas:3s; +machinaient machiner ver 0.07 0.88 0.00 0.07 ind:imp:3p; +machinal machinal adj m s 0.20 6.01 0.16 4.26 +machinale machinal adj f s 0.20 6.01 0.02 0.74 +machinalement machinalement adv 0.39 22.77 0.39 22.77 +machinales machinal adj f p 0.20 6.01 0.01 0.41 +machination machination nom f s 1.51 2.16 1.14 1.55 +machinations machination nom f p 1.51 2.16 0.37 0.61 +machinaux machinal adj m p 0.20 6.01 0.01 0.61 +machinchouette machinchouette nom s 0.00 0.14 0.00 0.14 +machine_outil machine_outil nom f s 0.11 0.47 0.00 0.07 +machine machine nom f s 67.72 85.00 44.94 58.99 +machiner machiner ver 0.07 0.88 0.02 0.14 inf; +machinerie machinerie nom f s 0.23 2.97 0.18 2.77 +machineries machinerie nom f p 0.23 2.97 0.05 0.20 +machine_outil machine_outil nom f p 0.11 0.47 0.11 0.41 +machines machine nom f p 67.72 85.00 22.79 26.01 +machinette machinette nom f s 0.01 0.07 0.01 0.07 +machinique machinique adj f s 0.00 0.07 0.00 0.07 +machinisme machinisme nom m s 0.00 0.74 0.00 0.74 +machiniste machiniste nom s 1.51 1.15 1.30 0.61 +machinistes machiniste nom p 1.51 1.15 0.20 0.54 +machino machino nom m s 0.02 0.07 0.01 0.00 +machinos machino nom m p 0.02 0.07 0.01 0.07 +machins machin nom m p 14.60 14.32 2.26 4.26 +machiné machiner ver m s 0.07 0.88 0.02 0.27 par:pas; +machinée machiner ver f s 0.07 0.88 0.00 0.14 par:pas; +machinées machiner ver f p 0.07 0.88 0.00 0.14 par:pas; +machinés machiner ver m p 0.07 0.88 0.00 0.07 par:pas; +machisme machisme nom m s 0.36 0.20 0.36 0.20 +machiste machiste adj s 0.41 0.41 0.38 0.34 +machistes machiste adj p 0.41 0.41 0.02 0.07 +machmètre machmètre nom m s 0.02 0.00 0.02 0.00 +macho macho nom m s 3.19 0.74 2.34 0.54 +machos macho nom m p 3.19 0.74 0.84 0.20 +macintosh macintosh nom m s 0.26 0.07 0.26 0.07 +macis macis nom m 0.01 0.00 0.01 0.00 +mackintosh mackintosh nom m s 0.00 0.27 0.00 0.27 +macoute macoute adj m s 0.14 0.07 0.03 0.00 +macoutes macoute adj m p 0.14 0.07 0.11 0.07 +macramé macramé nom m s 0.14 0.68 0.14 0.68 +macres macre nom f p 0.00 0.27 0.00 0.27 +macreuse macreuse nom f s 0.02 0.07 0.02 0.00 +macreuses macreuse nom f p 0.02 0.07 0.00 0.07 +macro macro nom s 0.20 0.00 0.20 0.00 +macrobiotique macrobiotique adj s 0.16 0.20 0.16 0.20 +macroclimat macroclimat nom m s 0.00 0.07 0.00 0.07 +macrocosme macrocosme nom m s 0.00 0.14 0.00 0.14 +macrolide macrolide nom m s 0.01 0.00 0.01 0.00 +macrophage macrophage nom m s 0.01 0.00 0.01 0.00 +macroscopique macroscopique adj m s 0.00 0.07 0.00 0.07 +macroéconomie macroéconomie nom f s 0.02 0.00 0.02 0.00 +macs mac nom m p 7.74 1.82 0.93 0.34 +macère macérer ver 0.32 1.82 0.03 0.07 imp:pre:2s;ind:pre:3s; +macèrent macérer ver 0.32 1.82 0.00 0.14 ind:pre:3p; +macédoine macédoine nom f s 0.14 0.54 0.14 0.41 +macédoines macédoine nom f p 0.14 0.54 0.00 0.14 +macédonien macédonien nom m s 0.23 0.20 0.23 0.20 +macédonienne macédonien adj f s 0.19 0.14 0.15 0.00 +macédoniennes macédonien adj f p 0.19 0.14 0.01 0.00 +macula macula nom f s 0.01 0.00 0.01 0.00 +maculage maculage nom m s 0.00 0.07 0.00 0.07 +maculaient maculer ver 0.59 7.70 0.00 0.20 ind:imp:3p; +maculait maculer ver 0.59 7.70 0.00 0.20 ind:imp:3s; +maculant maculer ver 0.59 7.70 0.01 0.27 par:pre; +maculation maculation nom f s 0.00 0.07 0.00 0.07 +maculature maculature nom f s 0.00 0.07 0.00 0.07 +macule maculer ver 0.59 7.70 0.10 0.14 ind:pre:3s; +maculent maculer ver 0.59 7.70 0.01 0.14 ind:pre:3p; +maculer maculer ver 0.59 7.70 0.02 0.27 inf; +macules macule nom f p 0.00 0.20 0.00 0.14 +maculèrent maculer ver 0.59 7.70 0.00 0.07 ind:pas:3p; +maculé maculer ver m s 0.59 7.70 0.28 1.96 par:pas; +maculée maculer ver f s 0.59 7.70 0.06 1.08 par:pas; +maculées maculer ver f p 0.59 7.70 0.04 1.49 par:pas; +maculés maculer ver m p 0.59 7.70 0.08 1.82 par:pas; +macumba macumba nom f s 1.20 0.00 1.20 0.00 +macérai macérer ver 0.32 1.82 0.00 0.07 ind:pas:1s; +macéraient macérer ver 0.32 1.82 0.00 0.07 ind:imp:3p; +macérait macérer ver 0.32 1.82 0.00 0.07 ind:imp:3s; +macération macération nom f s 0.04 0.74 0.04 0.47 +macérations macération nom f p 0.04 0.74 0.00 0.27 +macérer macérer ver 0.32 1.82 0.23 0.54 inf; +macéré macérer ver m s 0.32 1.82 0.04 0.41 par:pas; +macérée macérer ver f s 0.32 1.82 0.00 0.41 par:pas; +macérés macérer ver m p 0.32 1.82 0.02 0.07 par:pas; +madame madame nom_sup f 307.36 203.45 249.32 198.72 +madapolam madapolam nom m s 0.00 0.20 0.00 0.20 +made_in made_in adv 1.06 0.88 1.06 0.88 +madeleine madeleine nom f s 0.98 1.89 0.37 0.95 +madeleines madeleine nom f p 0.98 1.89 0.61 0.95 +mademoiselle mademoiselle nom f s 73.98 62.36 73.98 62.30 +mademoiselles mademoiselle nom f p 73.98 62.36 0.00 0.07 +madone madone nom f s 5.25 5.14 4.90 4.39 +madones madone nom f p 5.25 5.14 0.35 0.74 +madrague madrague nom f s 0.02 0.00 0.02 0.00 +madras madras nom m 0.03 1.49 0.03 1.49 +madre_de_dios madre_de_dios nom s 0.00 0.07 0.00 0.07 +madre madre nom m s 0.62 0.00 0.62 0.00 +madrier madrier nom m s 0.14 3.24 0.00 0.61 +madriers madrier nom m p 0.14 3.24 0.14 2.64 +madrigal madrigal nom m s 0.14 1.28 0.12 0.68 +madrigaux madrigal nom m p 0.14 1.28 0.03 0.61 +madrilène madrilène adj s 0.30 0.61 0.30 0.47 +madrilènes madrilène nom p 0.37 0.27 0.10 0.20 +madré madré adj m s 0.00 0.27 0.00 0.20 +madrée madré adj f s 0.00 0.27 0.00 0.07 +madrépore madrépore nom m s 0.00 0.27 0.00 0.14 +madrépores madrépore nom m p 0.00 0.27 0.00 0.14 +madrés madré nom m p 0.00 0.07 0.00 0.07 +madère madère nom m s 0.11 0.68 0.11 0.68 +maelström maelström nom m s 0.00 0.41 0.00 0.41 +maelstrom maelstrom nom m s 0.14 0.07 0.14 0.07 +maestria maestria nom f s 0.02 0.41 0.02 0.41 +maestro maestro nom m s 5.96 0.47 5.96 0.47 +maffia maffia nom f s 0.00 0.54 0.00 0.54 +maffieux maffieux nom m 0.01 0.00 0.01 0.00 +maffiosi maffioso nom m p 0.01 0.00 0.01 0.00 +mafflu mafflu adj m s 0.00 0.41 0.00 0.27 +mafflue mafflu adj f s 0.00 0.41 0.00 0.07 +mafflus mafflu adj m p 0.00 0.41 0.00 0.07 +mafia mafia nom f s 11.56 2.97 11.34 2.91 +mafias mafia nom f p 11.56 2.97 0.23 0.07 +mafieuse mafieux adj f s 1.18 0.20 0.34 0.14 +mafieuses mafieux adj f p 1.18 0.20 0.25 0.00 +mafieux mafieux nom m 0.94 0.00 0.94 0.00 +mafiosi mafioso nom m p 0.73 0.14 0.20 0.00 +mafioso mafioso nom m s 0.73 0.14 0.54 0.14 +maganer maganer ver 0.03 0.00 0.03 0.00 inf; +magasin magasin nom m s 60.62 65.54 51.97 45.61 +magasinage magasinage nom m s 0.03 0.00 0.03 0.00 +magasine magasiner ver 0.83 0.00 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +magasiner magasiner ver 0.83 0.00 0.27 0.00 inf; +magasines magasiner ver 0.83 0.00 0.20 0.00 ind:pre:2s; +magasinier magasinier nom m s 0.55 1.15 0.53 0.68 +magasiniers magasinier nom m p 0.55 1.15 0.01 0.47 +magasinière magasinier nom f s 0.55 1.15 0.01 0.00 +magasins magasin nom m p 60.62 65.54 8.65 19.93 +magazine magazine nom m s 21.42 16.15 14.03 7.03 +magazines magazine nom m p 21.42 16.15 7.39 9.12 +magdalénien magdalénien adj m s 0.14 0.20 0.00 0.07 +magdaléniennes magdalénien adj f p 0.14 0.20 0.14 0.14 +mage mage nom m s 1.57 2.57 0.53 0.95 +magenta magenta adj p 0.07 0.00 0.07 0.00 +mages mage nom m p 1.57 2.57 1.04 1.62 +maghrébin maghrébin adj m s 0.14 0.54 0.14 0.27 +maghrébine maghrébin nom f s 0.81 0.95 0.00 0.14 +maghrébines maghrébin nom f p 0.81 0.95 0.00 0.41 +maghrébins maghrébin nom m p 0.81 0.95 0.67 0.34 +maghzen maghzen nom m s 0.00 0.07 0.00 0.07 +magicien magicien nom m s 13.76 4.05 12.07 2.77 +magicienne magicien nom f s 13.76 4.05 0.53 0.61 +magiciens magicien nom m p 13.76 4.05 1.17 0.68 +magico magico adv 0.03 0.00 0.03 0.00 +magie magie nom f s 25.66 15.20 25.58 15.14 +magies magie nom f p 25.66 15.20 0.07 0.07 +magique magique adj s 26.93 25.88 21.84 19.80 +magiquement magiquement adv 0.14 1.35 0.14 1.35 +magiques magique adj p 26.93 25.88 5.09 6.08 +magister magister nom m s 0.10 1.08 0.10 0.95 +magisters magister nom m p 0.10 1.08 0.00 0.14 +magistral magistral adj m s 1.69 3.72 1.34 2.09 +magistrale magistral adj f s 1.69 3.72 0.33 1.22 +magistralement magistralement adv 0.07 0.54 0.07 0.54 +magistrales magistral adj f p 1.69 3.72 0.01 0.27 +magistrat magistrat nom m s 3.28 6.01 2.71 2.64 +magistrate magistrat nom f s 3.28 6.01 0.16 0.00 +magistrats magistrat nom m p 3.28 6.01 0.41 3.38 +magistrature magistrature nom f s 1.12 0.95 1.12 0.88 +magistratures magistrature nom f p 1.12 0.95 0.00 0.07 +magistraux magistral adj m p 1.69 3.72 0.01 0.14 +magistère magistère nom m s 0.00 0.07 0.00 0.07 +magma magma nom m s 0.33 3.45 0.33 3.38 +magmas magma nom m p 0.33 3.45 0.00 0.07 +magmatique magmatique adj f s 0.04 0.00 0.03 0.00 +magmatiques magmatique adj p 0.04 0.00 0.01 0.00 +magna magner ver 6.36 2.23 0.22 0.00 ind:pas:3s; +magnait magner ver 6.36 2.23 0.00 0.07 ind:imp:3s; +magnaneries magnanerie nom f p 0.00 0.14 0.00 0.14 +magnanime magnanime adj s 1.09 2.09 1.03 1.55 +magnanimes magnanime adj p 1.09 2.09 0.06 0.54 +magnanimité magnanimité nom f s 0.13 0.68 0.13 0.68 +magnans magnan nom m p 0.00 0.07 0.00 0.07 +magnat magnat nom m s 0.96 1.42 0.83 1.28 +magnats magnat nom m p 0.96 1.42 0.13 0.14 +magne magner ver 6.36 2.23 2.38 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +magnent magner ver 6.36 2.23 0.05 0.00 ind:pre:3p; +magner magner ver 6.36 2.23 0.20 0.41 inf; +magnes magner ver 6.36 2.23 0.11 0.47 ind:pre:2s;sub:pre:2s; +magnez magner ver 6.36 2.23 3.34 0.00 imp:pre:2p;ind:pre:2p; +magnifiaient magnifier ver 0.56 2.43 0.00 0.07 ind:imp:3p; +magnifiais magnifier ver 0.56 2.43 0.00 0.07 ind:imp:1s; +magnifiait magnifier ver 0.56 2.43 0.10 0.34 ind:imp:3s; +magnifiant magnifier ver 0.56 2.43 0.00 0.20 par:pre; +magnificat magnificat nom m 0.00 0.54 0.00 0.54 +magnificence magnificence nom f s 0.27 1.96 0.27 1.82 +magnificences magnificence nom f p 0.27 1.96 0.00 0.14 +magnifie magnifier ver 0.56 2.43 0.03 0.20 imp:pre:2s;ind:pre:3s; +magnifient magnifier ver 0.56 2.43 0.00 0.14 ind:pre:3p; +magnifier magnifier ver 0.56 2.43 0.15 0.54 inf; +magnifiez magnifier ver 0.56 2.43 0.00 0.14 ind:pre:2p; +magnifique magnifique adj s 88.22 27.70 78.72 22.91 +magnifiquement magnifiquement adv 1.43 2.77 1.43 2.77 +magnifiques magnifique adj p 88.22 27.70 9.51 4.80 +magnifié magnifier ver m s 0.56 2.43 0.00 0.20 par:pas; +magnifiée magnifier ver f s 0.56 2.43 0.29 0.34 par:pas; +magnifiées magnifier ver f p 0.56 2.43 0.00 0.07 par:pas; +magnifiés magnifier ver m p 0.56 2.43 0.00 0.14 par:pas; +magnitude magnitude nom f s 0.25 0.00 0.25 0.00 +magnolia magnolia nom m s 0.14 3.04 0.10 1.49 +magnolias magnolia nom m p 0.14 3.04 0.05 1.55 +magnons magner ver 6.36 2.23 0.04 0.07 imp:pre:1p; +magné magner ver m s 6.36 2.23 0.01 0.00 par:pas; +magnum magnum nom m s 3.69 1.76 3.62 1.55 +magnums magnum nom m p 3.69 1.76 0.07 0.20 +magnésie magnésie nom f s 0.07 0.14 0.07 0.14 +magnésium magnésium nom m s 0.75 1.08 0.75 1.08 +magnétique magnétique adj s 5.11 3.38 3.74 2.64 +magnétiquement magnétiquement adv 0.13 0.00 0.13 0.00 +magnétiques magnétique adj p 5.11 3.38 1.37 0.74 +magnétisait magnétiser ver 0.14 0.41 0.01 0.07 ind:imp:3s; +magnétise magnétiser ver 0.14 0.41 0.00 0.07 ind:pre:3s; +magnétiseur magnétiseur nom m s 0.01 0.07 0.01 0.00 +magnétiseuses magnétiseur nom f p 0.01 0.07 0.00 0.07 +magnétisme magnétisme nom m s 1.41 0.68 1.41 0.61 +magnétismes magnétisme nom m p 1.41 0.68 0.00 0.07 +magnétisé magnétiser ver m s 0.14 0.41 0.04 0.07 par:pas; +magnétisée magnétiser ver f s 0.14 0.41 0.03 0.07 par:pas; +magnétisées magnétiser ver f p 0.14 0.41 0.04 0.00 par:pas; +magnétisés magnétiser ver m p 0.14 0.41 0.03 0.14 par:pas; +magnétite magnétite nom f s 0.07 0.00 0.07 0.00 +magnéto magnéto nom s 2.89 1.62 2.78 1.35 +magnétomètre magnétomètre nom m s 0.04 0.00 0.04 0.00 +magnétophone magnétophone nom m s 2.70 3.51 2.27 3.24 +magnétophones magnétophone nom m p 2.70 3.51 0.43 0.27 +magnétos magnéto nom p 2.89 1.62 0.11 0.27 +magnétoscope magnétoscope nom m s 2.12 0.81 1.98 0.34 +magnétoscopes magnétoscope nom m p 2.12 0.81 0.14 0.47 +magnétron magnétron nom m s 0.01 0.00 0.01 0.00 +magot magot nom m s 2.24 4.39 2.24 3.51 +magots magot nom m p 2.24 4.39 0.00 0.88 +magouillais magouiller ver 0.69 0.41 0.01 0.14 ind:imp:1s;ind:imp:2s; +magouillait magouiller ver 0.69 0.41 0.03 0.00 ind:imp:3s; +magouillant magouiller ver 0.69 0.41 0.03 0.00 par:pre; +magouille magouille nom f s 2.73 1.35 1.03 0.68 +magouiller magouiller ver 0.69 0.41 0.14 0.14 inf; +magouilles magouille nom f p 2.73 1.35 1.69 0.68 +magouilleur magouilleur nom m s 0.43 0.20 0.29 0.00 +magouilleurs magouilleur nom m p 0.43 0.20 0.14 0.20 +magouillez magouiller ver 0.69 0.41 0.06 0.07 ind:pre:2p; +magouillé magouiller ver m s 0.69 0.41 0.42 0.07 par:pas; +magret magret nom m s 0.01 0.00 0.01 0.00 +magyar magyar adj m s 0.11 0.14 0.10 0.00 +magyare magyar adj f s 0.11 0.14 0.01 0.00 +magyares magyar adj f p 0.11 0.14 0.00 0.07 +magyars magyar nom m p 0.10 0.00 0.10 0.00 +mah_jong mah_jong nom m s 1.54 0.20 1.54 0.20 +maharadja maharadja nom m s 0.14 0.00 0.13 0.00 +maharadjah maharadjah nom m s 1.47 0.68 1.47 0.47 +maharadjahs maharadjah nom m p 1.47 0.68 0.00 0.20 +maharadjas maharadja nom m p 0.14 0.00 0.01 0.00 +maharaja maharaja nom m s 0.02 0.07 0.02 0.00 +maharajah maharajah nom m s 0.51 0.20 0.48 0.07 +maharajahs maharajah nom m p 0.51 0.20 0.02 0.14 +maharajas maharaja nom m p 0.02 0.07 0.00 0.07 +maharani maharani nom f s 1.12 0.14 1.12 0.14 +mahatma mahatma nom m s 0.04 0.07 0.04 0.00 +mahatmas mahatma nom m p 0.04 0.07 0.00 0.07 +mahométan mahométan nom m s 0.01 0.27 0.01 0.07 +mahométane mahométan adj f s 0.01 0.20 0.00 0.07 +mahométans mahométan adj m p 0.01 0.20 0.01 0.07 +mahonia mahonia nom m s 0.00 0.61 0.00 0.41 +mahonias mahonia nom m p 0.00 0.61 0.00 0.20 +mahousse mahousse adj f s 0.03 1.35 0.01 1.08 +mahousses mahousse adj f p 0.03 1.35 0.02 0.27 +mai mai nom s 24.34 45.88 24.34 45.88 +maid maid nom f s 0.13 0.07 0.13 0.07 +maie maie nom f s 0.01 1.22 0.00 1.08 +maies maie nom f p 0.01 1.22 0.01 0.14 +maigre maigre adj s 12.73 62.70 11.10 41.82 +maigrelet maigrelet nom m s 0.27 0.00 0.27 0.00 +maigrelets maigrelet adj m p 0.10 1.01 0.02 0.14 +maigrelette maigrelet adj f s 0.10 1.01 0.00 0.27 +maigrelettes maigrelet adj f p 0.10 1.01 0.01 0.07 +maigrement maigrement adv 0.00 0.27 0.00 0.27 +maigres maigre adj p 12.73 62.70 1.64 20.88 +maigreur maigreur nom f s 0.04 3.99 0.04 3.99 +maigri maigrir ver m s 5.70 8.99 2.81 4.19 par:pas; +maigrichon maigrichon adj m s 1.25 2.30 0.69 0.81 +maigrichonne maigrichon adj f s 1.25 2.30 0.43 0.81 +maigrichonnes maigrichon adj f p 1.25 2.30 0.10 0.41 +maigrichons maigrichon nom m p 0.93 0.61 0.08 0.00 +maigrie maigrir ver f s 5.70 8.99 0.00 0.20 par:pas; +maigriot maigriot nom m s 0.01 0.14 0.01 0.14 +maigrir maigrir ver 5.70 8.99 2.10 2.23 inf; +maigris maigrir ver m p 5.70 8.99 0.36 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +maigrissais maigrir ver 5.70 8.99 0.00 0.27 ind:imp:1s; +maigrissait maigrir ver 5.70 8.99 0.02 0.68 ind:imp:3s; +maigrissant maigrir ver 5.70 8.99 0.01 0.07 par:pre; +maigrisse maigrir ver 5.70 8.99 0.04 0.07 sub:pre:1s;sub:pre:3s; +maigrissent maigrir ver 5.70 8.99 0.03 0.14 ind:pre:3p; +maigrisses maigrir ver 5.70 8.99 0.14 0.14 sub:pre:2s; +maigrissez maigrir ver 5.70 8.99 0.05 0.07 imp:pre:2p;ind:pre:2p; +maigrit maigrir ver 5.70 8.99 0.14 0.61 ind:pre:3s;ind:pas:3s; +mail_coach mail_coach nom m s 0.00 0.14 0.00 0.14 +mail mail nom m s 3.29 1.62 2.23 1.62 +mailer mailer ver 0.18 0.00 0.08 0.00 inf; +mailing mailing nom m s 0.04 0.00 0.04 0.00 +maillait mailler ver 0.02 0.27 0.00 0.07 ind:imp:3s; +maille maille nom f s 1.09 9.66 0.71 2.70 +maillechort maillechort nom m s 0.00 0.14 0.00 0.14 +mailler mailler ver 0.02 0.27 0.02 0.00 inf; +mailles maille nom f p 1.09 9.66 0.39 6.96 +maillet maillet nom m s 0.46 2.16 0.41 1.69 +maillets maillet nom m p 0.46 2.16 0.05 0.47 +mailloche mailloche nom f s 0.00 0.47 0.00 0.47 +maillon maillon nom m s 1.12 3.18 0.94 1.89 +maillons maillon nom m p 1.12 3.18 0.19 1.28 +maillot maillot nom m s 9.88 18.99 8.44 15.27 +maillotin maillotin nom m s 0.00 0.14 0.00 0.07 +maillotins maillotin nom m p 0.00 0.14 0.00 0.07 +maillots maillot nom m p 9.88 18.99 1.44 3.72 +maillé maillé adj m s 0.01 0.14 0.00 0.14 +maillés maillé adj m p 0.01 0.14 0.01 0.00 +mails mail nom m p 3.29 1.62 1.05 0.00 +mailé mailer ver m s 0.18 0.00 0.10 0.00 par:pas; +main_courante main_courante nom f s 0.01 0.07 0.01 0.07 +main_d_oeuvre main_d_oeuvre nom f s 0.89 1.62 0.89 1.62 +main_forte main_forte nom f 0.36 0.41 0.36 0.41 +main main nom s 499.60 1229.39 286.62 788.72 +mainate mainate nom m s 0.03 0.74 0.03 0.74 +maincourantier maincourantier nom m s 0.00 0.07 0.00 0.07 +mainlevée mainlevée nom f s 0.01 0.00 0.01 0.00 +mainmise mainmise nom f s 0.14 1.42 0.14 1.42 +mains main nom f p 499.60 1229.39 212.97 440.68 +maint maint adj_ind m s 1.27 0.41 1.27 0.41 +maintînt maintenir ver 121.36 98.51 0.00 0.07 sub:imp:3s; +mainte mainte adj_ind f s 0.20 1.22 0.20 1.22 +maintenaient maintenir ver 121.36 98.51 0.23 2.09 ind:imp:3p; +maintenais maintenir ver 121.36 98.51 0.27 0.47 ind:imp:1s;ind:imp:2s; +maintenait maintenir ver 121.36 98.51 0.32 7.36 ind:imp:3s; +maintenance maintenance nom f s 3.89 0.14 3.89 0.14 +maintenant maintenant adv_sup 1028.86 496.76 1028.86 496.76 +mainteneur mainteneur nom m s 0.00 0.14 0.00 0.07 +mainteneurs mainteneur nom m p 0.00 0.14 0.00 0.07 +maintenez maintenir ver 121.36 98.51 4.28 0.34 imp:pre:2p;ind:pre:2p; +mainteniez maintenir ver 121.36 98.51 0.01 0.00 ind:imp:2p; +maintenions maintenir ver 121.36 98.51 0.04 0.20 ind:imp:1p; +maintenir maintenir ver 121.36 98.51 10.27 21.76 inf; +maintenons maintenir ver 121.36 98.51 0.58 0.34 imp:pre:1p;ind:pre:1p; +maintenu maintenir ver m s 121.36 98.51 1.73 3.78 par:pas; +maintenue maintenir ver f s 121.36 98.51 0.95 2.43 par:pas; +maintenues maintenir ver f p 121.36 98.51 0.14 1.35 par:pas; +maintenus maintenir ver m p 121.36 98.51 0.20 2.23 par:pas; +maintes maintes adj_ind f p 2.36 9.86 2.36 9.86 +maintien maintien nom m s 2.13 10.14 1.87 10.14 +maintiendra maintenir ver 121.36 98.51 0.25 0.34 ind:fut:3s; +maintiendrai maintenir ver 121.36 98.51 0.19 0.14 ind:fut:1s; +maintiendraient maintenir ver 121.36 98.51 0.01 0.14 cnd:pre:3p; +maintiendrait maintenir ver 121.36 98.51 0.02 0.20 cnd:pre:3s; +maintiendras maintenir ver 121.36 98.51 0.04 0.07 ind:fut:2s; +maintiendriez maintenir ver 121.36 98.51 0.00 0.07 cnd:pre:2p; +maintiendrons maintenir ver 121.36 98.51 0.25 0.07 ind:fut:1p; +maintiendront maintenir ver 121.36 98.51 0.08 0.14 ind:fut:3p; +maintienne maintenir ver 121.36 98.51 0.41 0.41 sub:pre:1s;sub:pre:3s; +maintiennent maintenir ver 121.36 98.51 0.44 1.28 ind:pre:3p; +maintiennes maintenir ver 121.36 98.51 0.05 0.00 sub:pre:2s; +maintiens maintenir ver 121.36 98.51 2.17 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s; +maintient maintenir ver 121.36 98.51 2.63 4.39 ind:pre:3s; +maintinrent maintenir ver 121.36 98.51 0.00 0.34 ind:pas:3p; +maintins maintenir ver 121.36 98.51 0.01 0.34 ind:pas:1s; +maintint maintenir ver 121.36 98.51 0.14 2.03 ind:pas:3s; +maints maints adj_ind m p 0.34 4.39 0.34 4.39 +maire maire nom m s 28.17 13.85 27.91 13.11 +maires maire nom m p 28.17 13.85 0.27 0.61 +mairesse maire nom f s 28.17 13.85 0.00 0.14 +mairie mairie nom f s 13.55 15.95 13.48 15.00 +mairies mairie nom f p 13.55 15.95 0.07 0.95 +mais mais con 5179.05 4463.72 5179.05 4463.72 +maison_mère maison_mère nom f s 0.12 0.14 0.12 0.14 +maison maison nom s 605.75 575.34 570.30 461.55 +maisonnette maisonnette nom f s 0.57 7.97 0.56 5.68 +maisonnettes maisonnette nom f p 0.57 7.97 0.02 2.30 +maisonnée maisonnée nom f s 0.33 1.82 0.33 1.76 +maisonnées maisonnée nom f p 0.33 1.82 0.00 0.07 +maisons maison nom f p 605.75 575.34 35.44 113.78 +maja maja nom f s 0.54 0.14 0.54 0.14 +majesté majesté nom f s 43.43 22.57 42.84 22.30 +majestueuse majestueux adj f s 1.79 11.08 0.53 4.80 +majestueusement majestueusement adv 0.06 1.22 0.06 1.22 +majestueuses majestueux adj f p 1.79 11.08 0.17 0.81 +majestueux majestueux adj m 1.79 11.08 1.09 5.47 +majestés majesté nom f p 43.43 22.57 0.58 0.27 +majeur majeur adj m s 10.45 11.55 4.29 3.85 +majeure majeur adj f s 10.45 11.55 4.81 5.20 +majeures majeur adj f p 10.45 11.55 0.55 1.15 +majeurs majeur adj m p 10.45 11.55 0.81 1.35 +majo majo adj m s 0.00 0.14 0.00 0.14 +majolique majolique nom f s 0.01 0.14 0.01 0.14 +major_général major_général nom s 0.02 0.34 0.02 0.34 +major major nom s 16.95 8.38 16.45 8.04 +majora majorer ver 0.05 0.34 0.00 0.07 ind:pas:3s; +majoral majoral nom m s 0.00 0.07 0.00 0.07 +majorat majorat nom m s 0.00 0.20 0.00 0.20 +majoration majoration nom f s 0.03 0.27 0.03 0.27 +majordome majordome nom m s 2.87 1.42 2.66 1.28 +majordomes majordome nom m p 2.87 1.42 0.20 0.14 +majore majorer ver 0.05 0.34 0.00 0.14 ind:pre:1s;ind:pre:3s; +majorer majorer ver 0.05 0.34 0.04 0.14 inf; +majorette majorette nom f s 1.11 0.61 0.57 0.27 +majorettes majorette nom f p 1.11 0.61 0.54 0.34 +majoritaire majoritaire adj s 1.04 0.61 0.52 0.54 +majoritairement majoritairement adv 0.12 0.00 0.12 0.00 +majoritaires majoritaire adj f p 1.04 0.61 0.52 0.07 +majorité majorité nom f s 11.43 12.57 11.41 12.36 +majorités majorité nom f p 11.43 12.57 0.01 0.20 +majors major nom p 16.95 8.38 0.49 0.34 +majorée majorer ver f s 0.05 0.34 0.01 0.00 par:pas; +majuscule majuscule adj s 0.80 1.69 0.76 0.88 +majuscules majuscule nom f p 0.85 2.84 0.76 2.03 +maki maki nom m s 0.12 0.00 0.12 0.00 +mal_aimé mal_aimé nom m s 0.21 0.07 0.03 0.00 +mal_aimé mal_aimé nom f s 0.21 0.07 0.01 0.07 +mal_aimé mal_aimé nom m p 0.21 0.07 0.17 0.00 +mal_baisé mal_baisé nom m s 0.00 0.20 0.00 0.07 +mal_baisé mal_baisé nom f s 0.00 0.20 0.00 0.14 +mal_pensant mal_pensant adj f s 0.00 0.07 0.00 0.07 +mal_pensant mal_pensant nom m p 0.14 0.07 0.14 0.07 +mal_être mal_être nom m s 0.34 0.20 0.34 0.20 +mal mal adv_sup 453.95 349.46 453.95 349.46 +malabar malabar adj m s 1.30 0.00 1.27 0.00 +malabars malabar nom m p 1.52 1.28 0.46 0.68 +malachite malachite nom f s 0.01 0.27 0.01 0.27 +malade malade adj s 158.27 73.92 147.50 66.22 +malades malade nom f p 41.24 43.18 15.57 17.03 +maladie maladie nom f s 66.04 60.68 52.18 49.59 +maladies maladie nom f p 66.04 60.68 13.86 11.08 +maladif maladif adj m s 1.44 5.14 0.86 2.03 +maladifs maladif adj m p 1.44 5.14 0.02 0.14 +maladive maladif adj f s 1.44 5.14 0.53 2.84 +maladivement maladivement adv 0.45 0.20 0.45 0.20 +maladives maladif adj f p 1.44 5.14 0.02 0.14 +maladrerie maladrerie nom f s 0.01 0.00 0.01 0.00 +maladresse maladresse nom f s 1.02 9.73 0.97 8.24 +maladresses maladresse nom f p 1.02 9.73 0.05 1.49 +maladroit maladroit adj m s 7.52 18.58 4.57 7.77 +maladroite maladroit adj f s 7.52 18.58 2.29 4.53 +maladroitement maladroitement adv 0.27 9.59 0.27 9.59 +maladroites maladroit adj f p 7.52 18.58 0.11 2.16 +maladroits maladroit adj m p 7.52 18.58 0.55 4.12 +malaga malaga nom m s 0.84 1.28 0.84 1.28 +malaire malaire adj s 0.10 0.00 0.10 0.00 +malais malais adj m 0.58 0.61 0.58 0.61 +malaise malaise nom s 6.55 25.14 6.34 23.38 +malaises malaise nom p 6.55 25.14 0.21 1.76 +malaisien malaisien adj m s 0.06 0.00 0.04 0.00 +malaisienne malaisien adj f s 0.06 0.00 0.02 0.00 +malaisiens malaisien nom m p 0.06 0.00 0.02 0.00 +malaisé malaisé adj m s 0.16 2.36 0.13 1.28 +malaisée malaisé adj f s 0.16 2.36 0.01 0.47 +malaisées malaisé adj f p 0.16 2.36 0.01 0.20 +malaisément malaisément adv 0.00 0.95 0.00 0.95 +malaisés malaisé adj m p 0.16 2.36 0.01 0.41 +malandrin malandrin nom m s 0.32 0.61 0.04 0.14 +malandrins malandrin nom m p 0.32 0.61 0.28 0.47 +malappris malappris nom m 0.17 0.20 0.16 0.20 +malapprise malappris nom f s 0.17 0.20 0.01 0.00 +malard malard nom m s 0.01 0.74 0.00 0.68 +malards malard nom m p 0.01 0.74 0.01 0.07 +malaria malaria nom f s 1.57 0.54 1.57 0.47 +malarias malaria nom f p 1.57 0.54 0.00 0.07 +malaventures malaventure nom f p 0.00 0.07 0.00 0.07 +malavisé malavisé adj m s 0.20 0.07 0.17 0.07 +malavisée malavisé adj f s 0.20 0.07 0.04 0.00 +malaxa malaxer ver 0.76 1.89 0.00 0.07 ind:pas:3s; +malaxaient malaxer ver 0.76 1.89 0.00 0.14 ind:imp:3p; +malaxait malaxer ver 0.76 1.89 0.00 0.20 ind:imp:3s; +malaxant malaxer ver 0.76 1.89 0.00 0.20 par:pre; +malaxe malaxer ver 0.76 1.89 0.28 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +malaxer malaxer ver 0.76 1.89 0.45 0.34 inf; +malaxera malaxer ver 0.76 1.89 0.00 0.07 ind:fut:3s; +malaxeur malaxeur nom m s 0.04 0.00 0.04 0.00 +malaxez malaxer ver 0.76 1.89 0.00 0.07 imp:pre:2p; +malaxé malaxer ver m s 0.76 1.89 0.02 0.20 par:pas; +malaxée malaxer ver f s 0.76 1.89 0.00 0.20 par:pas; +malaxées malaxer ver f p 0.76 1.89 0.00 0.07 par:pas; +malaxés malaxer ver m p 0.76 1.89 0.00 0.07 par:pas; +malchance malchance nom f s 5.68 4.80 5.68 4.53 +malchances malchance nom f p 5.68 4.80 0.00 0.27 +malchanceuse malchanceux adj f s 0.94 1.42 0.27 0.27 +malchanceuses malchanceux adj f p 0.94 1.42 0.04 0.07 +malchanceux malchanceux nom m 0.80 0.81 0.79 0.81 +malcommode malcommode adj m s 0.04 0.54 0.04 0.47 +malcommodes malcommode adj p 0.04 0.54 0.00 0.07 +malcontent malcontent adj m s 0.00 0.14 0.00 0.07 +malcontents malcontent adj m p 0.00 0.14 0.00 0.07 +maldonne maldonne nom f s 0.14 1.15 0.14 1.01 +maldonnes maldonne nom f p 0.14 1.15 0.00 0.14 +male mal adj_sup f s 14.55 11.42 0.44 0.14 +malencontre malencontre nom f s 0.00 0.68 0.00 0.41 +malencontres malencontre nom f p 0.00 0.68 0.00 0.27 +malencontreuse malencontreux adj f s 0.89 1.08 0.12 0.47 +malencontreusement malencontreusement adv 0.26 0.88 0.26 0.88 +malencontreuses malencontreux adj f p 0.89 1.08 0.14 0.07 +malencontreux malencontreux adj m 0.89 1.08 0.64 0.54 +malentendant malentendant adj m s 0.04 0.00 0.02 0.00 +malentendant malentendant nom m s 0.38 0.00 0.02 0.00 +malentendante malentendant adj f s 0.04 0.00 0.02 0.00 +malentendants malentendant nom m p 0.38 0.00 0.36 0.00 +malentendu malentendu nom m s 11.82 10.20 10.70 7.30 +malentendus malentendu nom m p 11.82 10.20 1.13 2.91 +males mal adj_sup f p 14.55 11.42 0.28 0.07 +malfaisance malfaisance nom f s 0.19 1.08 0.17 0.88 +malfaisances malfaisance nom f p 0.19 1.08 0.01 0.20 +malfaisant malfaisant adj m s 2.58 3.38 0.96 1.76 +malfaisante malfaisant adj f s 2.58 3.38 0.46 0.61 +malfaisantes malfaisant adj f p 2.58 3.38 0.19 0.34 +malfaisants malfaisant adj m p 2.58 3.38 0.97 0.68 +malfaiteur malfaiteur nom m s 2.93 3.24 1.18 1.82 +malfaiteurs malfaiteur nom m p 2.93 3.24 1.75 1.42 +malfamé malfamé adj m s 0.13 0.27 0.05 0.07 +malfamée malfamé adj f s 0.13 0.27 0.05 0.07 +malfamés malfamé adj m p 0.13 0.27 0.02 0.14 +malfaçon malfaçon nom f s 0.08 0.34 0.04 0.27 +malfaçons malfaçon nom f p 0.08 0.34 0.04 0.07 +malformation malformation nom f s 0.50 0.54 0.50 0.54 +malformé malformé adj m s 0.01 0.00 0.01 0.00 +malfrat malfrat nom m s 1.53 4.73 0.73 1.96 +malfrats malfrat nom m p 1.53 4.73 0.79 2.77 +malgache malgache adj s 0.00 0.61 0.00 0.34 +malgaches malgache nom p 0.02 0.27 0.02 0.27 +malgracieuse malgracieux adj f s 0.01 0.41 0.00 0.07 +malgracieux malgracieux adj m 0.01 0.41 0.01 0.34 +malgré malgré pre 46.50 191.55 46.50 191.55 +malhabile malhabile adj s 0.14 3.24 0.13 2.23 +malhabilement malhabilement adv 0.00 0.07 0.00 0.07 +malhabiles malhabile adj p 0.14 3.24 0.01 1.01 +malherbe malherbe nom f s 0.00 0.07 0.00 0.07 +malheur malheur nom m s 56.89 92.64 49.16 72.84 +malheureuse malheureux adj f s 37.96 58.85 12.48 16.08 +malheureusement malheureusement adv 35.35 21.08 35.35 21.08 +malheureuses malheureux adj f p 37.96 58.85 0.93 2.50 +malheureux malheureux adj m 37.96 58.85 24.55 40.27 +malheurs malheur nom m p 56.89 92.64 7.72 19.80 +malhonnête malhonnête adj s 4.29 1.82 3.34 0.95 +malhonnêtement malhonnêtement adv 0.22 0.27 0.22 0.27 +malhonnêtes malhonnête adj p 4.29 1.82 0.96 0.88 +malhonnêteté malhonnêteté nom f s 0.50 1.89 0.50 1.82 +malhonnêtetés malhonnêteté nom f p 0.50 1.89 0.00 0.07 +mali mali nom m s 0.00 0.07 0.00 0.07 +malice malice nom f s 1.29 10.95 1.22 10.47 +malices malice nom f p 1.29 10.95 0.07 0.47 +malicieuse malicieux adj f s 0.41 4.39 0.17 1.01 +malicieusement malicieusement adv 0.02 0.81 0.02 0.81 +malicieuses malicieux adj f p 0.41 4.39 0.02 0.07 +malicieux malicieux adj m 0.41 4.39 0.21 3.31 +malien malien nom m s 0.00 0.14 0.00 0.07 +malienne malien adj f s 0.02 0.14 0.02 0.00 +maliens malien adj m p 0.02 0.14 0.00 0.14 +maligne malin adj f s 41.49 20.20 3.91 3.45 +malignement malignement adv 0.01 0.68 0.01 0.68 +malignes malin adj f p 41.49 20.20 0.35 0.68 +malignité malignité nom f s 0.04 2.23 0.04 2.03 +malignités malignité nom f p 0.04 2.23 0.00 0.20 +malin malin adj m s 41.49 20.20 33.11 13.38 +maline malin nom f s 22.65 8.18 0.42 0.14 +malines malin nom f p 22.65 8.18 0.06 0.20 +malingre malingre adj s 0.04 3.78 0.03 2.97 +malingres malingre adj p 0.04 3.78 0.01 0.81 +malinké malinké nom m s 0.00 0.07 0.00 0.07 +malinois malinois nom m 0.01 0.20 0.01 0.20 +malins malin adj m p 41.49 20.20 4.13 2.70 +malintentionné malintentionné adj m s 0.17 0.41 0.02 0.20 +malintentionnée malintentionné adj f s 0.17 0.41 0.10 0.07 +malintentionnés malintentionné adj m p 0.17 0.41 0.04 0.14 +mallarméen mallarméen adj m s 0.00 0.07 0.00 0.07 +malle malle nom f s 7.96 15.14 6.53 10.27 +malles malle nom f p 7.96 15.14 1.43 4.86 +mallette mallette nom f s 9.30 6.62 8.97 5.88 +mallettes mallette nom f p 9.30 6.62 0.33 0.74 +mallophages mallophage nom m p 0.00 0.07 0.00 0.07 +malléabilité malléabilité nom f s 0.03 0.14 0.03 0.14 +malléable malléable adj s 0.31 1.42 0.25 1.08 +malléables malléable adj p 0.31 1.42 0.06 0.34 +malléolaire malléolaire adj s 0.03 0.00 0.03 0.00 +malléole malléole nom f s 0.05 0.00 0.05 0.00 +malm malm nom m s 0.01 0.00 0.01 0.00 +malmenage malmenage nom m s 0.01 0.00 0.01 0.00 +malmenaient malmener ver 2.08 3.72 0.00 0.20 ind:imp:3p; +malmenais malmener ver 2.08 3.72 0.01 0.00 ind:imp:1s; +malmenait malmener ver 2.08 3.72 0.06 0.47 ind:imp:3s; +malmenant malmener ver 2.08 3.72 0.04 0.34 par:pre; +malmener malmener ver 2.08 3.72 0.63 0.74 inf; +malmenez malmener ver 2.08 3.72 0.13 0.00 imp:pre:2p;ind:pre:2p; +malmené malmener ver m s 2.08 3.72 0.50 0.61 par:pas; +malmenée malmener ver f s 2.08 3.72 0.25 0.27 par:pas; +malmenées malmener ver f p 2.08 3.72 0.01 0.34 par:pas; +malmenés malmener ver m p 2.08 3.72 0.22 0.34 par:pas; +malmène malmener ver 2.08 3.72 0.18 0.34 imp:pre:2s;ind:pre:3s; +malmènent malmener ver 2.08 3.72 0.05 0.00 ind:pre:3p; +malmèneront malmener ver 2.08 3.72 0.01 0.07 ind:fut:3p; +malnutrition malnutrition nom f s 0.58 0.07 0.58 0.07 +malodorant malodorant adj m s 0.80 2.30 0.25 1.01 +malodorante malodorant adj f s 0.80 2.30 0.27 0.61 +malodorantes malodorant adj f p 0.80 2.30 0.14 0.47 +malodorants malodorant adj m p 0.80 2.30 0.13 0.20 +malotru malotru nom m s 0.46 1.01 0.43 0.81 +malotrus malotru nom m p 0.46 1.01 0.03 0.20 +malouin malouin adj m s 0.00 0.27 0.00 0.07 +malouine malouin adj f s 0.00 0.27 0.00 0.07 +malouines malouin adj f p 0.00 0.27 0.00 0.07 +malouins malouin adj m p 0.00 0.27 0.00 0.07 +malpoli malpoli adj m s 1.04 0.34 0.89 0.14 +malpolie malpoli adj f s 1.04 0.34 0.13 0.07 +malpolis malpoli adj m p 1.04 0.34 0.02 0.14 +malpropre malpropre nom s 0.69 0.74 0.65 0.54 +malproprement malproprement adv 0.00 0.07 0.00 0.07 +malpropres malpropre nom p 0.69 0.74 0.04 0.20 +malpropreté malpropreté nom f s 0.00 0.14 0.00 0.14 +malsain malsain adj m s 5.05 9.05 3.85 4.93 +malsaine malsain adj f s 5.05 9.05 0.95 2.36 +malsainement malsainement adv 0.00 0.07 0.00 0.07 +malsaines malsain adj f p 5.05 9.05 0.18 1.42 +malsains malsain adj m p 5.05 9.05 0.08 0.34 +malsonnants malsonnant adj m p 0.00 0.07 0.00 0.07 +malséance malséance nom f s 0.00 0.07 0.00 0.07 +malséant malséant adj m s 0.06 0.61 0.06 0.54 +malséante malséant adj f s 0.06 0.61 0.00 0.07 +malt malt nom m s 0.68 0.14 0.68 0.14 +malta malter ver 0.23 0.00 0.14 0.00 ind:pas:3s; +maltais maltais nom m 0.16 0.34 0.16 0.34 +maltaises maltais adj f p 0.03 0.27 0.00 0.07 +maltraitaient maltraiter ver 6.31 4.12 0.17 0.00 ind:imp:3p; +maltraitais maltraiter ver 6.31 4.12 0.04 0.07 ind:imp:1s; +maltraitait maltraiter ver 6.31 4.12 0.21 0.34 ind:imp:3s; +maltraitance maltraitance nom f s 0.66 0.00 0.61 0.00 +maltraitances maltraitance nom f p 0.66 0.00 0.05 0.00 +maltraitant maltraiter ver 6.31 4.12 0.01 0.07 par:pre; +maltraite maltraiter ver 6.31 4.12 0.65 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maltraitent maltraiter ver 6.31 4.12 0.47 0.07 ind:pre:3p; +maltraiter maltraiter ver 6.31 4.12 0.99 0.54 inf; +maltraitera maltraiter ver 6.31 4.12 0.03 0.00 ind:fut:3s; +maltraiterez maltraiter ver 6.31 4.12 0.02 0.00 ind:fut:2p; +maltraitez maltraiter ver 6.31 4.12 0.48 0.07 imp:pre:2p;ind:pre:2p; +maltraitât maltraiter ver 6.31 4.12 0.00 0.07 sub:imp:3s; +maltraitèrent maltraiter ver 6.31 4.12 0.00 0.07 ind:pas:3p; +maltraité maltraiter ver m s 6.31 4.12 1.77 0.88 par:pas; +maltraitée maltraiter ver f s 6.31 4.12 1.06 0.54 par:pas; +maltraitées maltraiter ver f p 6.31 4.12 0.02 0.14 par:pas; +maltraités maltraiter ver m p 6.31 4.12 0.40 0.81 par:pas; +malté malter ver m s 0.23 0.00 0.08 0.00 par:pas; +maltée malter ver f s 0.23 0.00 0.01 0.00 par:pas; +malédiction malédiction nom f s 14.17 9.46 13.27 7.57 +malédictions malédiction nom f p 14.17 9.46 0.90 1.89 +maléfice maléfice nom m s 0.89 1.69 0.56 0.74 +maléfices maléfice nom m p 0.89 1.69 0.33 0.95 +maléficier maléficier ver 0.00 0.07 0.00 0.07 inf; +maléficié maléficié adj m s 0.00 0.07 0.00 0.07 +maléfique maléfique adj s 6.16 4.86 4.71 3.51 +maléfiques maléfique adj p 6.16 4.86 1.44 1.35 +malus malus nom m 0.04 0.00 0.04 0.00 +malveillance malveillance nom f s 0.40 3.85 0.39 3.72 +malveillances malveillance nom f p 0.40 3.85 0.01 0.14 +malveillant malveillant adj m s 0.95 2.23 0.44 0.68 +malveillante malveillant adj f s 0.95 2.23 0.28 0.14 +malveillantes malveillant adj f p 0.95 2.23 0.09 0.81 +malveillants malveillant adj m p 0.95 2.23 0.15 0.61 +malvenu malvenu adj m s 0.37 0.34 0.14 0.34 +malvenue malvenu adj f s 0.37 0.34 0.07 0.00 +malvenus malvenu adj m p 0.37 0.34 0.16 0.00 +malversation malversation nom f s 0.55 0.54 0.07 0.14 +malversations malversation nom f p 0.55 0.54 0.48 0.41 +malvoisie malvoisie nom m s 0.01 0.07 0.01 0.00 +malvoisies malvoisie nom m p 0.01 0.07 0.00 0.07 +mam_selle mam_selle nom f s 0.11 0.07 0.11 0.07 +mam_zelle mam_zelle nom f s 0.03 0.00 0.03 0.00 +mam mam nom f s 0.63 1.62 0.63 0.95 +mamaliga mamaliga nom f s 0.00 0.07 0.00 0.07 +mamamouchi mamamouchi nom m s 0.00 0.14 0.00 0.14 +maman maman nom f s 540.21 144.39 537.44 140.20 +mamans maman nom f p 540.21 144.39 2.76 4.19 +mamba mamba nom m s 0.10 0.00 0.10 0.00 +mambo mambo nom m s 1.58 1.62 1.56 1.62 +mambos mambo nom m p 1.58 1.62 0.02 0.00 +mame mam nom f s 0.63 1.62 0.00 0.68 +mamelle mamelle nom f s 0.83 3.72 0.19 1.01 +mamelles mamelle nom f p 0.83 3.72 0.65 2.70 +mamelon mamelon nom m s 1.49 7.16 0.50 3.85 +mamelonnée mamelonné adj f s 0.00 0.14 0.00 0.14 +mamelons mamelon nom m p 1.49 7.16 0.99 3.31 +mamelouk mamelouk nom m s 0.01 0.34 0.01 0.14 +mamelouks mamelouk nom m p 0.01 0.34 0.00 0.20 +mamelu mamelu adj m s 0.01 0.41 0.00 0.14 +mamelue mamelu adj f s 0.01 0.41 0.01 0.14 +mamelues mamelu adj f p 0.01 0.41 0.00 0.07 +mameluk mameluk nom m s 0.00 2.03 0.00 0.81 +mameluks mameluk nom m p 0.00 2.03 0.00 1.22 +mamelus mamelu adj m p 0.01 0.41 0.00 0.07 +mamie mamie nom f s 18.66 2.30 18.56 2.23 +mamies mamie nom f p 18.66 2.30 0.10 0.07 +mamma mamma nom f s 2.27 0.27 2.27 0.27 +mammaire mammaire adj s 0.58 0.14 0.20 0.07 +mammaires mammaire adj p 0.58 0.14 0.38 0.07 +mammectomie mammectomie nom f s 0.02 0.00 0.02 0.00 +mammifère mammifère nom m s 1.27 1.28 0.40 0.47 +mammifères mammifère nom m p 1.27 1.28 0.87 0.81 +mammographie mammographie nom f s 0.15 0.00 0.15 0.00 +mammoplastie mammoplastie nom f s 0.01 0.00 0.01 0.00 +mammouth mammouth nom m s 1.38 8.18 1.16 7.84 +mammouths mammouth nom m p 1.38 8.18 0.21 0.34 +mammy mammy nom f s 0.41 0.07 0.41 0.07 +mamours mamours nom m p 0.46 0.47 0.46 0.47 +mamy mamy nom f s 0.69 0.00 0.66 0.00 +mamys mamy nom f p 0.69 0.00 0.04 0.00 +mamzelle mamzelle nom f s 0.10 0.07 0.10 0.07 +man man nom s 19.31 6.82 19.31 6.82 +manœuvre manœuvre nom s 2.04 0.00 2.04 0.00 +mana mana nom m s 0.03 0.88 0.03 0.88 +manade manade nom f s 0.00 0.27 0.00 0.07 +manades manade nom f p 0.00 0.27 0.00 0.20 +manage manager ver 1.54 0.47 0.30 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manageait manager ver 1.54 0.47 0.02 0.00 ind:imp:3s; +management management nom m s 0.57 0.07 0.57 0.07 +manager manager nom m s 8.08 2.57 7.54 1.89 +managerais manager ver 1.54 0.47 0.01 0.00 cnd:pre:2s; +managers manager nom m p 8.08 2.57 0.54 0.68 +manageur manageur nom m s 0.01 0.00 0.01 0.00 +manant manant nom m s 0.40 1.22 0.24 0.27 +manants manant nom m p 0.40 1.22 0.16 0.95 +manceau manceau adj m s 0.00 0.07 0.00 0.07 +mancenillier mancenillier nom m s 0.01 0.14 0.01 0.14 +manche manche nom s 14.25 59.39 10.12 35.41 +mancheron mancheron nom m s 0.00 0.27 0.00 0.07 +mancherons mancheron nom m p 0.00 0.27 0.00 0.20 +manches manche nom p 14.25 59.39 4.13 23.99 +manchette manchette nom f s 2.34 6.22 1.69 1.76 +manchettes manchette nom f p 2.34 6.22 0.65 4.46 +manchon manchon nom m s 0.09 1.76 0.08 1.35 +manchons manchon nom m p 0.09 1.76 0.01 0.41 +manchot manchot nom m s 1.56 1.89 1.47 1.49 +manchote manchot adj f s 1.00 1.55 0.07 0.14 +manchotes manchot nom f p 1.56 1.89 0.00 0.07 +manchots manchot nom m p 1.56 1.89 0.09 0.27 +mandai mander ver 1.26 3.31 0.00 0.14 ind:pas:1s; +mandaient mander ver 1.26 3.31 0.00 0.07 ind:imp:3p; +mandait mander ver 1.26 3.31 0.00 0.27 ind:imp:3s; +mandala mandala nom m s 1.76 0.07 1.76 0.00 +mandalas mandala nom m p 1.76 0.07 0.00 0.07 +mandale mandale nom f s 0.03 0.88 0.03 0.54 +mandales mandale nom f p 0.03 0.88 0.00 0.34 +mandant mandant nom m s 0.10 0.34 0.09 0.00 +mandants mandant nom m p 0.10 0.34 0.01 0.34 +mandarin mandarin nom m s 0.47 1.82 0.43 1.22 +mandarine mandarine nom f s 1.17 3.11 0.60 2.09 +mandarines mandarine nom f p 1.17 3.11 0.56 1.01 +mandarinier mandarinier nom m s 0.00 0.34 0.00 0.07 +mandariniers mandarinier nom m p 0.00 0.34 0.00 0.27 +mandarins mandarin nom m p 0.47 1.82 0.04 0.61 +mandas mander ver 1.26 3.31 0.01 0.00 ind:pas:2s; +mandat_carte mandat_carte nom m s 0.01 0.00 0.01 0.00 +mandat_lettre mandat_lettre nom m s 0.00 0.07 0.00 0.07 +mandat_poste mandat_poste nom m s 0.03 0.07 0.03 0.07 +mandat mandat nom m s 25.25 14.32 23.45 11.76 +mandataire mandataire nom s 0.37 1.82 0.32 0.74 +mandataires mandataire nom p 0.37 1.82 0.05 1.08 +mandatait mandater ver 1.14 0.95 0.00 0.14 ind:imp:3s; +mandatant mandater ver 1.14 0.95 0.00 0.07 par:pre; +mandatement mandatement nom m s 0.00 0.07 0.00 0.07 +mandater mandater ver 1.14 0.95 0.02 0.00 inf; +mandatez mandater ver 1.14 0.95 0.01 0.00 imp:pre:2p; +mandats mandat nom m p 25.25 14.32 1.80 2.57 +mandaté mandater ver m s 1.14 0.95 0.60 0.47 par:pas; +mandatée mandater ver f s 1.14 0.95 0.07 0.00 par:pas; +mandatés mandater ver m p 1.14 0.95 0.44 0.27 par:pas; +mandchoue mandchou adj f s 0.03 0.20 0.03 0.20 +mandchous mandchou nom m p 0.02 0.07 0.02 0.07 +mande mander ver 1.26 3.31 0.60 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mandement mandement nom m s 0.03 0.07 0.01 0.00 +mandements mandement nom m p 0.03 0.07 0.02 0.07 +mander mander ver 1.26 3.31 0.34 1.15 inf; +mandera mander ver 1.26 3.31 0.01 0.14 ind:fut:3s; +manderai mander ver 1.26 3.31 0.00 0.07 ind:fut:1s; +manderaient mander ver 1.26 3.31 0.01 0.00 cnd:pre:3p; +manderais mander ver 1.26 3.31 0.00 0.07 cnd:pre:1s; +mandes mander ver 1.26 3.31 0.00 0.07 ind:pre:2s; +mandez mander ver 1.26 3.31 0.01 0.20 imp:pre:2p; +mandibulaire mandibulaire adj f s 0.02 0.00 0.02 0.00 +mandibule mandibule nom f s 0.55 2.36 0.17 0.07 +mandibules mandibule nom f p 0.55 2.36 0.38 2.30 +mandingue mandingue adj s 0.01 0.00 0.01 0.00 +mandingues mandingue nom p 0.30 0.00 0.30 0.00 +mandoline mandoline nom f s 0.55 1.15 0.54 0.88 +mandolines mandoline nom f p 0.55 1.15 0.01 0.27 +mandore mandore nom f s 0.00 1.55 0.00 1.55 +mandorle mandorle nom f s 0.00 0.34 0.00 0.27 +mandorles mandorle nom f p 0.00 0.34 0.00 0.07 +mandragore mandragore nom f s 0.47 1.69 0.42 1.01 +mandragores mandragore nom f p 0.47 1.69 0.05 0.68 +mandrill mandrill nom m s 0.01 0.00 0.01 0.00 +mandrin mandrin nom m s 0.15 0.41 0.15 0.27 +mandrins mandrin nom m p 0.15 0.41 0.00 0.14 +mandèrent mander ver 1.26 3.31 0.00 0.07 ind:pas:3p; +mandé mander ver m s 1.26 3.31 0.28 0.27 par:pas; +manducation manducation nom f s 0.00 0.07 0.00 0.07 +mandée mander ver f s 1.26 3.31 0.00 0.14 par:pas; +manette manette nom f s 1.08 2.64 0.65 0.95 +manettes manette nom f p 1.08 2.64 0.43 1.69 +manga manga nom m s 0.37 0.47 0.04 0.47 +manganite manganite nom m s 0.14 0.00 0.14 0.00 +manganèse manganèse nom m s 0.23 0.07 0.23 0.07 +mangas manga nom m p 0.37 0.47 0.32 0.00 +mange_disque mange_disque nom m s 0.11 0.07 0.10 0.00 +mange_disque mange_disque nom m p 0.11 0.07 0.01 0.07 +mange_tout mange_tout nom m 0.01 0.07 0.01 0.07 +mange manger ver 467.86 280.61 103.81 31.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mangea manger ver 467.86 280.61 0.66 5.54 ind:pas:3s; +mangeable mangeable adj s 0.72 0.68 0.68 0.54 +mangeables mangeable adj m p 0.72 0.68 0.04 0.14 +mangeai manger ver 467.86 280.61 0.02 1.55 ind:pas:1s; +mangeaient manger ver 467.86 280.61 0.99 7.91 ind:imp:3p; +mangeaille mangeaille nom f s 0.14 1.28 0.14 1.08 +mangeailles mangeaille nom f p 0.14 1.28 0.00 0.20 +mangeais manger ver 467.86 280.61 2.31 2.91 ind:imp:1s;ind:imp:2s; +mangeait manger ver 467.86 280.61 4.93 20.14 ind:imp:3s; +mangeant manger ver 467.86 280.61 3.13 7.57 par:pre; +mangeas manger ver 467.86 280.61 0.10 0.07 ind:pas:2s; +mangeasse manger ver 467.86 280.61 0.00 0.07 sub:imp:1s; +mangent manger ver 467.86 280.61 13.77 8.18 ind:pre:3p;sub:pre:3p; +mangeoire mangeoire nom f s 0.46 1.08 0.23 0.95 +mangeoires mangeoire nom f p 0.46 1.08 0.22 0.14 +mangeâmes manger ver 467.86 280.61 0.01 0.47 ind:pas:1p; +mangeons manger ver 467.86 280.61 4.05 1.82 imp:pre:1p;ind:pre:1p; +mangeât manger ver 467.86 280.61 0.00 0.34 sub:imp:3s; +manger manger ver 467.86 280.61 207.63 134.26 inf;; +mangera manger ver 467.86 280.61 4.91 1.35 ind:fut:3s; +mangerai manger ver 467.86 280.61 5.01 1.42 ind:fut:1s; +mangeraient manger ver 467.86 280.61 0.13 0.54 cnd:pre:3p; +mangerais manger ver 467.86 280.61 2.84 1.08 cnd:pre:1s;cnd:pre:2s; +mangerait manger ver 467.86 280.61 1.88 1.96 cnd:pre:3s; +mangeras manger ver 467.86 280.61 2.54 1.49 ind:fut:2s; +mangerez manger ver 467.86 280.61 1.43 0.54 ind:fut:2p; +mangerie mangerie nom f s 0.00 0.07 0.00 0.07 +mangeriez manger ver 467.86 280.61 0.32 0.07 cnd:pre:2p; +mangerions manger ver 467.86 280.61 0.03 0.27 cnd:pre:1p; +mangerons manger ver 467.86 280.61 1.49 0.74 ind:fut:1p; +mangeront manger ver 467.86 280.61 1.43 0.81 ind:fut:3p; +manges manger ver 467.86 280.61 20.56 4.46 ind:pre:2s;sub:pre:2s; +mangetout mangetout nom m 0.00 0.07 0.00 0.07 +mangeur mangeur nom m s 3.37 3.04 1.49 1.01 +mangeurs mangeur nom m p 3.37 3.04 1.07 1.55 +mangeuse mangeur nom f s 3.37 3.04 0.81 0.27 +mangeuses mangeuse nom f p 0.08 0.00 0.08 0.00 +mangez manger ver 467.86 280.61 17.85 3.31 imp:pre:2p;ind:pre:2p; +mangiez manger ver 467.86 280.61 0.91 0.20 ind:imp:2p; +mangions manger ver 467.86 280.61 0.34 1.89 ind:imp:1p; +mango mango nom s 0.07 0.00 0.07 0.00 +mangonneaux mangonneau nom m p 0.00 0.54 0.00 0.54 +mangouste mangouste nom f s 0.33 0.00 0.33 0.00 +mangrove mangrove nom f s 0.02 0.07 0.01 0.07 +mangroves mangrove nom f p 0.02 0.07 0.01 0.00 +mangèrent manger ver 467.86 280.61 0.33 3.72 ind:pas:3p; +mangé manger ver m s 467.86 280.61 60.43 27.50 par:pas; +mangue mangue nom f s 1.44 2.09 0.73 0.74 +mangée manger ver f s 467.86 280.61 1.98 3.04 par:pas; +mangues mangue nom f p 1.44 2.09 0.71 1.35 +mangées manger ver f p 467.86 280.61 0.38 1.01 par:pas; +manguier manguier nom m s 0.05 1.42 0.03 0.20 +manguiers manguier nom m p 0.05 1.42 0.02 1.22 +mangés manger ver m p 467.86 280.61 1.66 2.43 par:pas; +manhattan manhattan nom s 0.07 0.14 0.07 0.14 +mania manier ver 5.70 16.22 0.61 0.14 ind:pas:3s; +maniabilité maniabilité nom f s 0.03 0.00 0.03 0.00 +maniable maniable adj s 0.51 0.95 0.27 0.88 +maniables maniable adj p 0.51 0.95 0.24 0.07 +maniaco_dépressif maniaco_dépressif adj m s 0.38 0.14 0.17 0.00 +maniaco_dépressif maniaco_dépressif adj m p 0.38 0.14 0.08 0.14 +maniaco_dépressif maniaco_dépressif adj f s 0.38 0.14 0.13 0.00 +maniacodépressif maniacodépressif adj m s 0.06 0.00 0.03 0.00 +maniacodépressive maniacodépressif adj f s 0.06 0.00 0.03 0.00 +maniaient manier ver 5.70 16.22 0.00 0.74 ind:imp:3p; +maniais manier ver 5.70 16.22 0.02 0.20 ind:imp:1s; +maniait manier ver 5.70 16.22 0.08 2.43 ind:imp:3s; +maniant manier ver 5.70 16.22 0.20 1.49 par:pre; +maniaque maniaque nom s 5.63 4.39 5.11 3.04 +maniaquement maniaquement adv 0.00 0.27 0.00 0.27 +maniaquerie maniaquerie nom f s 0.00 0.34 0.00 0.27 +maniaqueries maniaquerie nom f p 0.00 0.34 0.00 0.07 +maniaques maniaque nom p 5.63 4.39 0.52 1.35 +manichéen manichéen adj m s 0.04 0.27 0.04 0.27 +manichéisme manichéisme nom m s 0.00 0.61 0.00 0.61 +manichéiste manichéiste nom s 0.00 0.07 0.00 0.07 +manie manie nom f s 6.63 18.38 5.42 13.18 +maniement maniement nom m s 0.50 3.72 0.50 3.58 +maniements maniement nom m p 0.50 3.72 0.00 0.14 +manient manier ver 5.70 16.22 0.17 0.54 ind:pre:3p; +manier manier ver 5.70 16.22 2.96 7.23 inf; +manierais manier ver 5.70 16.22 0.01 0.00 cnd:pre:1s; +manieront manier ver 5.70 16.22 0.00 0.07 ind:fut:3p; +manies manie nom f p 6.63 18.38 1.21 5.20 +manieur manieur nom m s 0.03 0.47 0.03 0.27 +manieurs manieur nom m p 0.03 0.47 0.00 0.14 +manieuse manieur nom f s 0.03 0.47 0.00 0.07 +maniez manier ver 5.70 16.22 0.24 0.00 imp:pre:2p;ind:pre:2p; +manif manif nom f s 4.98 2.16 3.33 1.49 +manifesta manifester ver 10.28 38.04 0.02 3.31 ind:pas:3s; +manifestai manifester ver 10.28 38.04 0.00 0.14 ind:pas:1s; +manifestaient manifester ver 10.28 38.04 0.22 2.30 ind:imp:3p; +manifestais manifester ver 10.28 38.04 0.04 0.27 ind:imp:1s;ind:imp:2s; +manifestait manifester ver 10.28 38.04 0.52 6.82 ind:imp:3s; +manifestant manifester ver 10.28 38.04 0.21 1.42 par:pre; +manifestante manifestant nom f s 2.06 2.30 0.01 0.07 +manifestantes manifestant nom f p 2.06 2.30 0.01 0.14 +manifestants manifestant nom m p 2.06 2.30 1.96 2.03 +manifestation manifestation nom f s 8.90 17.16 5.96 9.80 +manifestations manifestation nom f p 8.90 17.16 2.94 7.36 +manifeste manifester ver 10.28 38.04 1.77 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manifestement manifestement adv 5.79 6.76 5.79 6.76 +manifestent manifester ver 10.28 38.04 0.92 1.28 ind:pre:3p; +manifester manifester ver 10.28 38.04 3.16 9.80 inf; +manifestera manifester ver 10.28 38.04 0.21 0.00 ind:fut:3s; +manifesterai manifester ver 10.28 38.04 0.01 0.07 ind:fut:1s; +manifesteraient manifester ver 10.28 38.04 0.14 0.00 cnd:pre:3p; +manifesterais manifester ver 10.28 38.04 0.02 0.00 cnd:pre:2s; +manifesterait manifester ver 10.28 38.04 0.02 0.14 cnd:pre:3s; +manifesteront manifester ver 10.28 38.04 0.19 0.07 ind:fut:3p; +manifestes manifeste adj p 1.10 3.45 0.23 0.41 +manifestez manifester ver 10.28 38.04 0.38 0.20 imp:pre:2p;ind:pre:2p; +manifestiez manifester ver 10.28 38.04 0.06 0.00 ind:imp:2p; +manifestions manifester ver 10.28 38.04 0.00 0.07 ind:imp:1p; +manifestons manifester ver 10.28 38.04 0.01 0.00 ind:pre:1p; +manifestât manifester ver 10.28 38.04 0.00 0.41 sub:imp:3s; +manifestèrent manifester ver 10.28 38.04 0.00 0.27 ind:pas:3p; +manifesté manifester ver m s 10.28 38.04 1.53 5.14 par:pas; +manifestée manifester ver f s 10.28 38.04 0.57 1.35 par:pas; +manifestées manifester ver f p 10.28 38.04 0.11 0.07 par:pas; +manifestés manifester ver m p 10.28 38.04 0.08 0.41 par:pas; +manifold manifold nom m s 0.00 0.20 0.00 0.14 +manifolds manifold nom m p 0.00 0.20 0.00 0.07 +manifs manif nom f p 4.98 2.16 1.66 0.68 +manigance manigancer ver 5.03 1.35 0.92 0.34 ind:pre:1s;ind:pre:3s; +manigancent manigancer ver 5.03 1.35 0.41 0.14 ind:pre:3p; +manigancer manigancer ver 5.03 1.35 0.45 0.14 inf; +manigancerait manigancer ver 5.03 1.35 0.00 0.07 cnd:pre:3s; +manigances manigancer ver 5.03 1.35 0.70 0.07 ind:pre:2s; +manigancez manigancer ver 5.03 1.35 0.56 0.07 ind:pre:2p; +maniganciez manigancer ver 5.03 1.35 0.05 0.00 ind:imp:2p; +manigancé manigancer ver m s 5.03 1.35 1.59 0.27 par:pas; +manigancée manigancer ver f s 5.03 1.35 0.01 0.14 par:pas; +manigançaient manigancer ver 5.03 1.35 0.04 0.00 ind:imp:3p; +manigançais manigancer ver 5.03 1.35 0.03 0.00 ind:imp:1s;ind:imp:2s; +manigançait manigancer ver 5.03 1.35 0.28 0.14 ind:imp:3s; +manilla maniller ver 0.02 0.00 0.02 0.00 ind:pas:3s; +manille manille nom f s 0.40 0.95 0.40 0.81 +manilles manille nom f p 0.40 0.95 0.00 0.14 +manilleurs manilleur nom m p 0.00 0.07 0.00 0.07 +manillon manillon nom m s 0.27 0.00 0.27 0.00 +manioc manioc nom m s 0.23 0.88 0.23 0.88 +manip manip nom f s 0.09 0.14 0.09 0.07 +manipe manip nom f s 0.09 0.14 0.00 0.07 +manipula manipuler ver 12.35 6.01 0.14 0.41 ind:pas:3s; +manipulable manipulable adj s 0.14 0.27 0.09 0.14 +manipulables manipulable adj m p 0.14 0.27 0.05 0.14 +manipulaient manipuler ver 12.35 6.01 0.03 0.14 ind:imp:3p; +manipulais manipuler ver 12.35 6.01 0.02 0.07 ind:imp:1s;ind:imp:2s; +manipulait manipuler ver 12.35 6.01 0.31 0.61 ind:imp:3s; +manipulant manipuler ver 12.35 6.01 0.13 0.61 par:pre; +manipulateur manipulateur nom m s 1.44 0.54 0.81 0.41 +manipulateurs manipulateur nom m p 1.44 0.54 0.23 0.14 +manipulation manipulation nom f s 2.63 2.16 2.00 1.01 +manipulations manipulation nom f p 2.63 2.16 0.63 1.15 +manipulatrice manipulateur nom f s 1.44 0.54 0.40 0.00 +manipulatrices manipulatrice nom f p 0.02 0.00 0.02 0.00 +manipule manipuler ver 12.35 6.01 2.02 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manipulent manipuler ver 12.35 6.01 0.27 0.20 ind:pre:3p; +manipuler manipuler ver 12.35 6.01 4.36 1.82 inf; +manipulera manipuler ver 12.35 6.01 0.02 0.00 ind:fut:3s; +manipulerai manipuler ver 12.35 6.01 0.03 0.00 ind:fut:1s; +manipulerait manipuler ver 12.35 6.01 0.01 0.00 cnd:pre:3s; +manipuleras manipuler ver 12.35 6.01 0.03 0.00 ind:fut:2s; +manipules manipuler ver 12.35 6.01 0.28 0.00 ind:pre:2s; +manipulez manipuler ver 12.35 6.01 0.40 0.07 imp:pre:2p;ind:pre:2p; +manipulons manipuler ver 12.35 6.01 0.03 0.07 ind:pre:1p; +manipulé manipuler ver m s 12.35 6.01 2.40 0.68 par:pas; +manipulée manipuler ver f s 12.35 6.01 1.01 0.14 par:pas; +manipulées manipuler ver f p 12.35 6.01 0.13 0.07 par:pas; +manipulés manipuler ver m p 12.35 6.01 0.74 0.61 par:pas; +manière manière nom f s 72.31 157.77 55.43 134.66 +manièrent manier ver 5.70 16.22 0.00 0.07 ind:pas:3p; +manières manière nom f p 72.31 157.77 16.89 23.11 +manitoba manitoba nom m s 0.00 0.07 0.00 0.07 +manitou manitou nom m s 0.51 0.88 0.47 0.74 +manitous manitou nom m p 0.51 0.88 0.04 0.14 +manié manier ver m s 5.70 16.22 0.33 1.01 par:pas; +maniée manier ver f s 5.70 16.22 0.01 0.27 par:pas; +maniées manier ver f p 5.70 16.22 0.00 0.14 par:pas; +maniérisme maniérisme nom m s 0.07 0.34 0.05 0.27 +maniérismes maniérisme nom m p 0.07 0.34 0.02 0.07 +maniériste maniériste adj s 0.01 0.00 0.01 0.00 +maniéristes maniériste nom p 0.00 0.07 0.00 0.07 +maniéré maniéré adj m s 0.16 0.74 0.04 0.20 +maniérée maniéré adj f s 0.16 0.74 0.11 0.07 +maniérées maniéré adj f p 0.16 0.74 0.01 0.20 +maniérés maniéré adj m p 0.16 0.74 0.00 0.27 +maniés manier ver m p 5.70 16.22 0.00 0.34 par:pas; +manivelle manivelle nom f s 1.55 31.96 1.54 31.22 +manivelles manivelle nom f p 1.55 31.96 0.01 0.74 +manne manne nom f s 0.65 1.35 0.52 1.22 +mannequin mannequin nom s 12.33 10.68 8.43 6.01 +mannequine mannequiner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +mannequins mannequin nom p 12.33 10.68 3.90 4.66 +mannes manne nom f p 0.65 1.35 0.14 0.14 +mannezingue mannezingue nom m s 0.00 0.20 0.00 0.20 +mannitol mannitol nom m s 0.19 0.00 0.19 0.00 +manoeuvra manoeuvrer ver 1.79 13.78 0.00 0.88 ind:pas:3s; +manoeuvrabilité manoeuvrabilité nom f s 0.04 0.00 0.04 0.00 +manoeuvrable manoeuvrable adj f s 0.04 0.07 0.04 0.07 +manoeuvraient manoeuvrer ver 1.79 13.78 0.14 0.61 ind:imp:3p; +manoeuvrais manoeuvrer ver 1.79 13.78 0.01 0.20 ind:imp:1s; +manoeuvrait manoeuvrer ver 1.79 13.78 0.04 1.89 ind:imp:3s; +manoeuvrant manoeuvrer ver 1.79 13.78 0.00 1.22 par:pre; +manoeuvre manoeuvre nom s 7.22 26.42 4.76 16.08 +manoeuvrent manoeuvrer ver 1.79 13.78 0.00 0.54 ind:pre:3p; +manoeuvrer manoeuvrer ver 1.79 13.78 0.85 5.20 inf; +manoeuvres manoeuvre nom p 7.22 26.42 2.46 10.34 +manoeuvrez manoeuvrer ver 1.79 13.78 0.02 0.00 imp:pre:2p;ind:pre:2p; +manoeuvrier manoeuvrier adj m s 0.00 0.41 0.00 0.14 +manoeuvriers manoeuvrier nom m p 0.00 0.14 0.00 0.07 +manoeuvrière manoeuvrier adj f s 0.00 0.41 0.00 0.14 +manoeuvrières manoeuvrier adj f p 0.00 0.41 0.00 0.14 +manoeuvrons manoeuvrer ver 1.79 13.78 0.01 0.07 imp:pre:1p;ind:pre:1p; +manoeuvrèrent manoeuvrer ver 1.79 13.78 0.00 0.07 ind:pas:3p; +manoeuvré manoeuvrer ver m s 1.79 13.78 0.12 1.15 par:pas; +manoeuvrée manoeuvrer ver f s 1.79 13.78 0.01 0.34 par:pas; +manoeuvrées manoeuvrer ver f p 1.79 13.78 0.00 0.14 par:pas; +manoeuvrés manoeuvrer ver m p 1.79 13.78 0.00 0.07 par:pas; +manoir manoir nom m s 6.08 9.59 5.87 9.05 +manoirs manoir nom m p 6.08 9.59 0.21 0.54 +manomètre manomètre nom m s 0.47 0.27 0.42 0.14 +manomètres manomètre nom m p 0.47 0.27 0.05 0.14 +manouche manouche nom s 0.13 0.88 0.09 0.68 +manouches manouche nom p 0.13 0.88 0.05 0.20 +manouvrier manouvrier nom m s 0.01 0.00 0.01 0.00 +manqua manquer ver 253.94 197.64 0.79 6.01 ind:pas:3s; +manquai manquer ver 253.94 197.64 0.01 0.68 ind:pas:1s; +manquaient manquer ver 253.94 197.64 1.38 12.09 ind:imp:3p; +manquais manquer ver 253.94 197.64 2.85 3.51 ind:imp:1s;ind:imp:2s; +manquait manquer ver 253.94 197.64 18.13 48.78 ind:imp:3s; +manquant manquant adj m s 4.74 2.23 1.75 0.95 +manquante manquant adj f s 4.74 2.23 0.85 0.27 +manquantes manquant adj f p 4.74 2.23 1.23 0.47 +manquants manquant adj m p 4.74 2.23 0.92 0.54 +manquassent manquer ver 253.94 197.64 0.14 0.07 sub:imp:3p; +manque manquer ver 253.94 197.64 98.77 41.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +manquement manquement nom m s 0.54 1.55 0.39 1.08 +manquements manquement nom m p 0.54 1.55 0.15 0.47 +manquent manquer ver 253.94 197.64 10.51 8.99 ind:pre:3p;sub:pre:3p; +manquer manquer ver 253.94 197.64 30.61 24.39 inf; +manquera manquer ver 253.94 197.64 5.21 2.36 ind:fut:3s; +manquerai manquer ver 253.94 197.64 3.86 0.54 ind:fut:1s; +manqueraient manquer ver 253.94 197.64 0.17 1.82 cnd:pre:3p; +manquerais manquer ver 253.94 197.64 0.90 1.01 cnd:pre:1s;cnd:pre:2s; +manquerait manquer ver 253.94 197.64 3.97 6.22 cnd:pre:3s; +manqueras manquer ver 253.94 197.64 2.88 0.54 ind:fut:2s; +manquerez manquer ver 253.94 197.64 1.54 0.61 ind:fut:2p; +manqueriez manquer ver 253.94 197.64 0.25 0.00 cnd:pre:2p; +manquerions manquer ver 253.94 197.64 0.02 0.20 cnd:pre:1p; +manquerons manquer ver 253.94 197.64 0.22 0.20 ind:fut:1p; +manqueront manquer ver 253.94 197.64 1.03 1.28 ind:fut:3p; +manques manquer ver 253.94 197.64 20.07 1.76 ind:pre:2s;sub:pre:2s; +manquez manquer ver 253.94 197.64 5.98 1.89 imp:pre:2p;ind:pre:2p; +manquiez manquer ver 253.94 197.64 0.92 0.14 ind:imp:2p; +manquions manquer ver 253.94 197.64 0.31 0.61 ind:imp:1p; +manquâmes manquer ver 253.94 197.64 0.01 0.34 ind:pas:1p; +manquons manquer ver 253.94 197.64 2.06 1.15 imp:pre:1p;ind:pre:1p; +manquât manquer ver 253.94 197.64 0.00 0.61 sub:imp:3s; +manquèrent manquer ver 253.94 197.64 0.16 0.88 ind:pas:3p; +manqué manquer ver m s 253.94 197.64 38.94 24.53 par:pas; +manquée manquer ver f s 253.94 197.64 1.48 1.42 par:pas; +manquées manqué adj f p 2.43 4.80 0.30 0.74 +manqués manquer ver m p 253.94 197.64 0.32 0.20 par:pas; +mansard mansarde nom m s 0.50 5.27 0.00 0.07 +mansarde mansarde nom f s 0.50 5.27 0.46 3.38 +mansardes mansarde nom f p 0.50 5.27 0.03 1.82 +mansardé mansarder ver m s 0.10 0.41 0.10 0.07 par:pas; +mansardée mansardé adj f s 0.00 1.22 0.00 0.61 +mansardées mansarder ver f p 0.10 0.41 0.00 0.27 par:pas; +mansion mansion nom f s 0.05 0.00 0.01 0.00 +mansions mansion nom f p 0.05 0.00 0.04 0.00 +mansuétude mansuétude nom f s 0.17 2.09 0.17 2.03 +mansuétudes mansuétude nom f p 0.17 2.09 0.00 0.07 +manta manta nom f s 0.72 0.00 0.72 0.00 +mante mante nom f s 0.72 1.69 0.57 0.47 +manteau manteau nom m s 39.97 68.11 36.16 58.99 +manteaux manteau nom m p 39.97 68.11 3.81 9.12 +mantelet mantelet nom m s 0.00 0.27 0.00 0.20 +mantelets mantelet nom m p 0.00 0.27 0.00 0.07 +mantelure mantelure nom f s 0.00 0.07 0.00 0.07 +mantes mante nom f p 0.72 1.69 0.15 1.22 +manège manège nom m s 5.92 15.27 5.22 13.51 +manèges manège nom m p 5.92 15.27 0.70 1.76 +mantille mantille nom f s 0.02 1.35 0.01 0.81 +mantilles mantille nom f p 0.02 1.35 0.01 0.54 +mantique mantique nom f s 0.00 0.07 0.00 0.07 +mantra mantra nom m s 0.34 0.07 0.34 0.07 +manu_militari manu_militari adv 0.16 0.20 0.16 0.20 +manubrium manubrium nom m s 0.03 0.00 0.03 0.00 +manécanterie manécanterie nom f s 0.00 0.27 0.00 0.27 +manucure manucure nom s 2.15 1.55 1.95 1.15 +manucurer manucurer ver 0.27 0.95 0.10 0.00 inf; +manucures manucure nom p 2.15 1.55 0.19 0.41 +manucuré manucurer ver m s 0.27 0.95 0.03 0.07 par:pas; +manucurée manucurer ver f s 0.27 0.95 0.01 0.14 par:pas; +manucurées manucurer ver f p 0.27 0.95 0.03 0.27 par:pas; +manucurés manucurer ver m p 0.27 0.95 0.09 0.27 par:pas; +manuel manuel nom m s 6.63 8.18 4.94 3.85 +manuelle manuel adj f s 5.70 3.85 1.16 0.61 +manuellement manuellement adv 1.40 0.14 1.40 0.14 +manuelles manuel adj f p 5.70 3.85 0.28 0.20 +manuels manuel nom m p 6.63 8.18 1.52 4.05 +manufacture manufacture nom f s 0.37 2.03 0.35 1.49 +manufacturer manufacturer ver 0.11 0.74 0.02 0.14 inf; +manufactures manufacture nom f p 0.37 2.03 0.02 0.54 +manufacturiers manufacturier nom m p 0.10 0.00 0.10 0.00 +manufacturons manufacturer ver 0.11 0.74 0.01 0.00 ind:pre:1p; +manufacturé manufacturer ver m s 0.11 0.74 0.04 0.07 par:pas; +manufacturée manufacturer ver f s 0.11 0.74 0.03 0.00 par:pas; +manufacturées manufacturer ver f p 0.11 0.74 0.00 0.07 par:pas; +manufacturés manufacturer ver m p 0.11 0.74 0.00 0.47 par:pas; +manégés manéger ver m p 0.00 0.07 0.00 0.07 par:pas; +manuscrit manuscrit nom m s 5.48 17.36 3.87 12.09 +manuscrite manuscrit adj f s 0.27 2.64 0.10 0.68 +manuscrites manuscrit adj f p 0.27 2.64 0.02 0.74 +manuscrits manuscrit nom m p 5.48 17.36 1.61 5.27 +manutention manutention nom f s 0.04 0.61 0.04 0.54 +manutentionnaire manutentionnaire nom s 0.14 0.41 0.12 0.27 +manutentionnaires manutentionnaire nom p 0.14 0.41 0.01 0.14 +manutentionner manutentionner ver 0.20 0.00 0.20 0.00 inf; +manutentions manutention nom f p 0.04 0.61 0.00 0.07 +manuélin manuélin adj m s 0.00 0.07 0.00 0.07 +manzanilla manzanilla nom m s 0.00 0.61 0.00 0.61 +mao mao nom s 0.21 0.68 0.21 0.41 +maoïsme maoïsme nom m s 0.01 0.07 0.01 0.07 +maoïste maoïste adj s 0.00 0.34 0.00 0.34 +maori maori adj m s 0.17 0.00 0.15 0.00 +maorie maori adj f s 0.17 0.00 0.02 0.00 +maos mao nom p 0.21 0.68 0.00 0.27 +maous maous adj m 0.09 0.74 0.09 0.74 +maousse maousse adj f s 0.14 0.54 0.14 0.54 +mappemonde mappemonde nom f s 0.07 1.76 0.06 1.42 +mappemondes mappemonde nom f p 0.07 1.76 0.01 0.34 +maquaient maquer ver 0.88 1.35 0.00 0.07 ind:imp:3p; +maque maquer ver 0.88 1.35 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maquent maquer ver 0.88 1.35 0.00 0.07 ind:pre:3p; +maquer maquer ver 0.88 1.35 0.15 0.68 inf; +maquereau maquereau nom m s 7.23 7.03 5.32 3.38 +maquereautage maquereautage nom m s 0.10 0.14 0.10 0.14 +maquereauter maquereauter ver 0.13 0.00 0.13 0.00 inf; +maquereautins maquereautin nom m p 0.00 0.07 0.00 0.07 +maquereaux maquereau nom m p 7.23 7.03 1.35 2.03 +maquerellage maquerellage nom m s 0.10 0.00 0.10 0.00 +maquerelle maquereau nom f s 7.23 7.03 0.56 1.35 +maquerelles maquerelle nom f p 0.27 0.14 0.27 0.14 +maques maquer ver 0.88 1.35 0.01 0.00 ind:pre:2s; +maquette maquette nom f s 4.58 3.92 2.57 2.43 +maquettes maquette nom f p 4.58 3.92 2.01 1.49 +maquettiste maquettiste nom s 0.02 0.54 0.01 0.41 +maquettistes maquettiste nom p 0.02 0.54 0.01 0.14 +maquignon maquignon nom m s 0.35 2.57 0.21 1.76 +maquignonnage maquignonnage nom m s 0.01 0.14 0.00 0.07 +maquignonnages maquignonnage nom m p 0.01 0.14 0.01 0.07 +maquignonne maquignonner ver 0.00 0.20 0.00 0.07 ind:pre:3s; +maquignonné maquignonner ver m s 0.00 0.20 0.00 0.07 par:pas; +maquignonnés maquignonner ver m p 0.00 0.20 0.00 0.07 par:pas; +maquignons maquignon nom m p 0.35 2.57 0.14 0.81 +maquilla maquiller ver 11.14 15.81 0.00 0.14 ind:pas:3s; +maquillage maquillage nom m s 11.39 11.62 11.36 11.08 +maquillages maquillage nom m p 11.39 11.62 0.03 0.54 +maquillai maquiller ver 11.14 15.81 0.00 0.07 ind:pas:1s; +maquillais maquiller ver 11.14 15.81 0.19 0.20 ind:imp:1s;ind:imp:2s; +maquillait maquiller ver 11.14 15.81 0.28 1.55 ind:imp:3s; +maquillant maquiller ver 11.14 15.81 0.22 0.07 par:pre; +maquille maquiller ver 11.14 15.81 2.39 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maquillent maquiller ver 11.14 15.81 0.22 0.34 ind:pre:3p; +maquiller maquiller ver 11.14 15.81 3.10 3.18 inf; +maquillerai maquiller ver 11.14 15.81 0.17 0.07 ind:fut:1s; +maquillerais maquiller ver 11.14 15.81 0.01 0.07 cnd:pre:1s; +maquilleras maquiller ver 11.14 15.81 0.01 0.00 ind:fut:2s; +maquilles maquiller ver 11.14 15.81 0.62 0.27 ind:pre:2s; +maquilleur maquilleur nom m s 0.79 0.47 0.28 0.14 +maquilleurs maquilleur nom m p 0.79 0.47 0.07 0.07 +maquilleuse maquilleur nom f s 0.79 0.47 0.44 0.20 +maquilleuses maquilleuse nom f p 0.03 0.00 0.03 0.00 +maquillez maquiller ver 11.14 15.81 0.08 0.07 imp:pre:2p;ind:pre:2p; +maquilliez maquiller ver 11.14 15.81 0.10 0.00 ind:imp:2p; +maquillons maquiller ver 11.14 15.81 0.01 0.00 imp:pre:1p; +maquillé maquiller ver m s 11.14 15.81 1.99 1.96 par:pas; +maquillée maquiller ver f s 11.14 15.81 1.37 4.39 par:pas; +maquillées maquiller ver f p 11.14 15.81 0.07 1.15 par:pas; +maquillés maquiller ver m p 11.14 15.81 0.32 0.88 par:pas; +maquis maquis nom m 0.91 16.01 0.91 16.01 +maquisard maquisard nom m s 0.16 5.81 0.14 0.68 +maquisarde maquisard nom f s 0.16 5.81 0.00 0.20 +maquisardes maquisard nom f p 0.16 5.81 0.00 0.14 +maquisards maquisard nom m p 0.16 5.81 0.02 4.80 +maqué maquer ver m s 0.88 1.35 0.07 0.07 par:pas; +maquée maquer ver f s 0.88 1.35 0.42 0.27 par:pas; +maqués maquer ver m p 0.88 1.35 0.03 0.14 par:pas; +mara mara nom m s 0.41 0.00 0.41 0.00 +maraîcher maraîcher nom m s 0.37 2.16 0.35 0.47 +maraîchers maraîcher nom m p 0.37 2.16 0.01 0.95 +maraîchère maraîcher nom f s 0.37 2.16 0.01 0.20 +maraîchères maraîchère nom f p 0.01 0.00 0.01 0.00 +marabout marabout nom m s 0.07 1.28 0.05 0.88 +marabouts marabout nom m p 0.07 1.28 0.02 0.41 +maracas maraca nom f p 0.12 0.41 0.12 0.41 +marae marae nom m s 0.02 0.00 0.02 0.00 +marais marais nom m 6.91 10.68 6.91 10.68 +maranta maranta nom m s 0.01 0.00 0.01 0.00 +marante marante nom f s 0.02 0.07 0.02 0.07 +marasme marasme nom m s 0.42 1.01 0.41 0.95 +marasmes marasme nom m p 0.42 1.01 0.01 0.07 +marasquin marasquin nom m s 0.06 0.74 0.06 0.74 +marathon marathon nom m s 2.12 1.28 1.98 1.28 +marathonien marathonien nom m s 0.17 0.14 0.17 0.07 +marathonienne marathonien nom f s 0.17 0.14 0.00 0.07 +marathons marathon nom m p 2.12 1.28 0.14 0.00 +maraud maraud nom m s 0.68 2.09 0.45 0.20 +maraudaient marauder ver 0.05 0.81 0.00 0.07 ind:imp:3p; +maraudait marauder ver 0.05 0.81 0.01 0.27 ind:imp:3s; +maraude maraud nom f s 0.68 2.09 0.22 1.28 +marauder marauder ver 0.05 0.81 0.03 0.34 inf; +maraudes maraud nom f p 0.68 2.09 0.01 0.27 +maraudeur maraudeur nom m s 1.99 1.49 1.50 0.61 +maraudeurs maraudeur nom m p 1.99 1.49 0.48 0.88 +maraudeuse maraudeur nom f s 1.99 1.49 0.01 0.00 +marauds maraud nom m p 0.68 2.09 0.00 0.34 +maraudé marauder ver m s 0.05 0.81 0.00 0.07 par:pas; +maraudés marauder ver m p 0.05 0.81 0.00 0.07 par:pas; +maravédis maravédis nom m 0.11 0.20 0.11 0.20 +marbra marbrer ver 0.28 1.82 0.00 0.07 ind:pas:3s; +marbraient marbrer ver 0.28 1.82 0.00 0.07 ind:imp:3p; +marbrait marbrer ver 0.28 1.82 0.00 0.20 ind:imp:3s; +marbre marbre nom m s 7.31 43.04 6.28 41.49 +marbrent marbrer ver 0.28 1.82 0.00 0.07 ind:pre:3p; +marbrerie marbrerie nom f s 0.00 0.14 0.00 0.07 +marbreries marbrerie nom f p 0.00 0.14 0.00 0.07 +marbres marbre nom m p 7.31 43.04 1.03 1.55 +marbrier marbrier adj m s 0.04 0.00 0.04 0.00 +marbré marbré adj m s 0.04 0.47 0.04 0.20 +marbrée marbrer ver f s 0.28 1.82 0.17 0.27 par:pas; +marbrées marbrer ver f p 0.28 1.82 0.00 0.34 par:pas; +marbrure marbrure nom f s 0.00 1.15 0.00 0.07 +marbrures marbrure nom f p 0.00 1.15 0.00 1.08 +marbrés marbrer ver m p 0.28 1.82 0.00 0.20 par:pas; +marc marc nom m s 1.28 3.38 1.18 2.91 +marcassin marcassin nom m s 0.02 0.88 0.02 0.74 +marcassins marcassin nom m p 0.02 0.88 0.00 0.14 +marcel marcel nom m s 0.06 0.20 0.06 0.20 +marceline marceline nom f s 0.00 0.07 0.00 0.07 +marcha marcher ver 364.36 325.61 0.28 21.96 ind:pas:3s; +marchai marcher ver 364.36 325.61 0.04 2.64 ind:pas:1s; +marchaient marcher ver 364.36 325.61 1.82 13.92 ind:imp:3p; +marchais marcher ver 364.36 325.61 3.51 7.91 ind:imp:1s;ind:imp:2s; +marchait marcher ver 364.36 325.61 12.13 48.65 ind:imp:3s; +marchand marchand nom m s 15.32 45.81 8.66 24.12 +marchandage marchandage nom m s 0.57 2.50 0.54 1.08 +marchandages marchandage nom m p 0.57 2.50 0.04 1.42 +marchandaient marchander ver 2.84 3.18 0.00 0.27 ind:imp:3p; +marchandais marchander ver 2.84 3.18 0.01 0.07 ind:imp:1s;ind:imp:2s; +marchandait marchander ver 2.84 3.18 0.15 0.34 ind:imp:3s; +marchandant marchander ver 2.84 3.18 0.01 0.41 par:pre; +marchande marchand nom f s 15.32 45.81 2.85 6.01 +marchandent marchander ver 2.84 3.18 0.14 0.00 ind:pre:3p; +marchander marchander ver 2.84 3.18 1.43 1.35 inf; +marchandera marchander ver 2.84 3.18 0.01 0.00 ind:fut:3s; +marchanderais marchander ver 2.84 3.18 0.00 0.07 cnd:pre:1s; +marchanderez marchander ver 2.84 3.18 0.01 0.00 ind:fut:2p; +marchandes marchander ver 2.84 3.18 0.11 0.00 ind:pre:2s; +marchandeuse marchandeur nom f s 0.00 0.07 0.00 0.07 +marchandez marchander ver 2.84 3.18 0.07 0.00 imp:pre:2p;ind:pre:2p; +marchandise marchandise nom f s 15.21 15.81 10.54 8.78 +marchandises marchandise nom f p 15.21 15.81 4.67 7.03 +marchandiseur marchandiseur nom m s 0.01 0.00 0.01 0.00 +marchandons marchander ver 2.84 3.18 0.05 0.00 imp:pre:1p;ind:pre:1p; +marchands marchand nom m p 15.32 45.81 3.71 14.46 +marchandé marchander ver m s 2.84 3.18 0.30 0.27 par:pas; +marchandée marchander ver f s 2.84 3.18 0.00 0.07 par:pas; +marchant marcher ver 364.36 325.61 4.32 24.86 par:pre; +marchante marchant adj f s 0.22 2.36 0.00 0.20 +marchantes marchant adj f p 0.22 2.36 0.00 0.07 +marche marcher ver 364.36 325.61 154.71 58.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +marchent marcher ver 364.36 325.61 11.64 10.61 ind:pre:3p; +marchepied marchepied nom m s 0.64 5.54 0.36 4.59 +marchepieds marchepied nom m p 0.64 5.54 0.28 0.95 +marcher marcher ver 364.36 325.61 85.33 80.88 inf; +marchera marcher ver 364.36 325.61 17.43 1.62 ind:fut:3s; +marcherai marcher ver 364.36 325.61 1.23 1.15 ind:fut:1s; +marcheraient marcher ver 364.36 325.61 0.06 0.74 cnd:pre:3p; +marcherais marcher ver 364.36 325.61 0.59 0.81 cnd:pre:1s;cnd:pre:2s; +marcherait marcher ver 364.36 325.61 4.10 2.30 cnd:pre:3s; +marcheras marcher ver 364.36 325.61 0.57 0.27 ind:fut:2s; +marcherez marcher ver 364.36 325.61 0.25 0.20 ind:fut:2p; +marcheriez marcher ver 364.36 325.61 0.06 0.07 cnd:pre:2p; +marcherions marcher ver 364.36 325.61 0.03 0.00 cnd:pre:1p; +marcherons marcher ver 364.36 325.61 0.55 0.41 ind:fut:1p; +marcheront marcher ver 364.36 325.61 1.03 0.34 ind:fut:3p; +marches marche nom f p 53.17 152.97 6.56 52.97 +marcheur marcheur nom m s 0.56 1.96 0.14 0.81 +marcheurs marcheur nom m p 0.56 1.96 0.38 0.81 +marcheuse marcheur nom f s 0.56 1.96 0.04 0.27 +marcheuses marcheuse nom f p 0.14 0.00 0.14 0.00 +marchez marcher ver 364.36 325.61 7.39 1.69 imp:pre:2p;ind:pre:2p; +marchiez marcher ver 364.36 325.61 0.48 0.20 ind:imp:2p;sub:pre:2p; +marchions marcher ver 364.36 325.61 0.74 5.27 ind:imp:1p; +marchâmes marcher ver 364.36 325.61 0.11 1.01 ind:pas:1p; +marchons marcher ver 364.36 325.61 4.30 6.82 imp:pre:1p;ind:pre:1p; +marchât marcher ver 364.36 325.61 0.00 0.47 sub:imp:3s; +marchèrent marcher ver 364.36 325.61 0.24 6.96 ind:pas:3p; +marché marché nom m s 74.36 62.43 72.73 57.36 +marchées marcher ver f p 364.36 325.61 0.01 0.00 par:pas; +marchés marché nom m p 74.36 62.43 1.64 5.07 +marconi marconi adj 0.01 0.07 0.01 0.07 +marcotin marcotin nom m s 0.00 0.07 0.00 0.07 +marcotte marcotte nom f s 0.01 0.00 0.01 0.00 +marcs marc nom m p 1.28 3.38 0.10 0.47 +mardi mardi nom m s 23.65 16.28 22.38 15.47 +mardis mardi nom m p 23.65 16.28 1.27 0.81 +mare mare nom f s 3.78 13.18 3.66 10.00 +marelle marelle nom f s 0.64 2.23 0.64 1.76 +marelles marelle nom f p 0.64 2.23 0.00 0.47 +marengo marengo adj m s 0.01 0.07 0.01 0.07 +marennes marennes nom f 0.00 0.41 0.00 0.41 +mares mare nom f p 3.78 13.18 0.12 3.18 +mareyeur mareyeur nom m s 0.00 0.41 0.00 0.20 +mareyeurs mareyeur nom m p 0.00 0.41 0.00 0.07 +mareyeuse mareyeur nom f s 0.00 0.41 0.00 0.07 +mareyeuses mareyeur nom f p 0.00 0.41 0.00 0.07 +margarine margarine nom f s 0.64 1.35 0.64 1.35 +margaux margaux nom m 0.04 0.14 0.04 0.14 +margay margay nom m s 0.00 1.49 0.00 1.49 +marge marge nom f s 14.40 14.86 14.21 12.64 +margeait marger ver 0.00 0.27 0.00 0.14 ind:imp:3s; +margelle margelle nom f s 0.04 2.09 0.04 2.03 +margelles margelle nom f p 0.04 2.09 0.00 0.07 +marger marger ver 0.00 0.27 0.00 0.14 inf; +marges marge nom f p 14.40 14.86 0.19 2.23 +margeuse margeur nom f s 0.00 0.07 0.00 0.07 +margina marginer ver 0.00 0.14 0.00 0.07 ind:pas:3s; +marginal marginal adj m s 0.59 1.82 0.35 0.47 +marginale marginal adj f s 0.59 1.82 0.15 0.54 +marginalement marginalement adv 0.01 0.00 0.01 0.00 +marginales marginal adj f p 0.59 1.82 0.01 0.54 +marginalisant marginaliser ver 0.36 0.41 0.00 0.07 par:pre; +marginaliser marginaliser ver 0.36 0.41 0.25 0.07 inf; +marginaliseraient marginaliser ver 0.36 0.41 0.01 0.00 cnd:pre:3p; +marginalisé marginaliser ver m s 0.36 0.41 0.03 0.00 par:pas; +marginalisée marginaliser ver f s 0.36 0.41 0.05 0.14 par:pas; +marginalisés marginaliser ver m p 0.36 0.41 0.03 0.14 par:pas; +marginalité marginalité nom f s 0.00 0.34 0.00 0.34 +marginaux marginal nom m p 0.58 1.49 0.39 0.81 +marginée marginer ver f s 0.00 0.14 0.00 0.07 par:pas; +margis margis nom m 0.00 0.27 0.00 0.27 +margot margot nom m s 1.17 0.00 1.17 0.00 +margotait margoter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +margotin margotin nom m s 0.00 0.14 0.00 0.07 +margotins margotin nom m p 0.00 0.14 0.00 0.07 +margoton margoton nom f s 0.00 0.07 0.00 0.07 +margotte margotter ver 0.00 0.27 0.00 0.20 ind:pre:3s; +margottons margotter ver 0.00 0.27 0.00 0.07 imp:pre:1p; +margouillat margouillat nom m s 0.00 0.74 0.00 0.41 +margouillats margouillat nom m p 0.00 0.74 0.00 0.34 +margouillis margouillis nom m 0.00 0.07 0.00 0.07 +margoulette margoulette nom f s 0.00 0.34 0.00 0.34 +margoulin margoulin nom m s 0.04 0.61 0.03 0.34 +margoulins margoulin nom m p 0.04 0.61 0.01 0.27 +margrave margrave nom m s 0.60 0.00 0.60 0.00 +margraviat margraviat nom m s 0.00 0.07 0.00 0.07 +marguerite marguerite nom f s 1.58 2.97 0.25 0.54 +marguerites marguerite nom f p 1.58 2.97 1.33 2.43 +marguillier marguillier nom m s 0.03 0.41 0.03 0.34 +marguilliers marguillier nom m p 0.03 0.41 0.00 0.07 +mari mari nom m s 264.15 124.26 254.92 118.38 +maria marier ver 220.51 65.07 19.11 3.24 ind:pas:3s; +mariable mariable adj m s 0.01 0.14 0.01 0.14 +mariachi mariachi nom m s 0.90 0.00 0.63 0.00 +mariachis mariachi nom m p 0.90 0.00 0.28 0.00 +mariage mariage nom m s 167.39 78.72 158.58 70.68 +mariages mariage nom m p 167.39 78.72 8.81 8.04 +mariai marier ver 220.51 65.07 0.00 0.07 ind:pas:1s; +mariaient marier ver 220.51 65.07 0.08 0.95 ind:imp:3p; +mariais marier ver 220.51 65.07 0.55 0.14 ind:imp:1s;ind:imp:2s; +mariait marier ver 220.51 65.07 1.08 2.03 ind:imp:3s; +mariales marial adj f p 0.00 0.20 0.00 0.20 +marianne marian nom f s 0.27 0.00 0.27 0.00 +mariant marier ver 220.51 65.07 0.64 0.88 par:pre; +marias marier ver 220.51 65.07 0.00 0.07 ind:pas:2s; +mariassent marier ver 220.51 65.07 0.00 0.07 sub:imp:3p; +marida marida nom s 0.00 0.81 0.00 0.74 +maridas marida nom p 0.00 0.81 0.00 0.07 +marie_couche_toi_là marie_couche_toi_là nom f 0.06 0.27 0.06 0.27 +marie_jeanne marie_jeanne nom f s 0.26 0.07 0.26 0.07 +marie_louise marie_louise nom f s 0.00 0.07 0.00 0.07 +marie_salope marie_salope nom f s 0.00 0.07 0.00 0.07 +marie marier ver 220.51 65.07 22.00 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +marient marier ver 220.51 65.07 4.04 1.42 ind:pre:3p; +marier marier ver 220.51 65.07 63.88 16.49 ind:pre:2p;inf; +mariera marier ver 220.51 65.07 2.80 0.81 ind:fut:3s; +marierai marier ver 220.51 65.07 2.58 0.61 ind:fut:1s; +marieraient marier ver 220.51 65.07 0.00 0.54 cnd:pre:3p; +marierais marier ver 220.51 65.07 0.80 0.20 cnd:pre:1s;cnd:pre:2s; +marierait marier ver 220.51 65.07 0.66 0.74 cnd:pre:3s; +marieras marier ver 220.51 65.07 1.11 0.41 ind:fut:2s; +marierez marier ver 220.51 65.07 0.49 0.47 ind:fut:2p; +marieriez marier ver 220.51 65.07 0.01 0.00 cnd:pre:2p; +marierions marier ver 220.51 65.07 0.02 0.14 cnd:pre:1p; +marierons marier ver 220.51 65.07 1.20 0.27 ind:fut:1p; +marieront marier ver 220.51 65.07 0.47 0.14 ind:fut:3p; +maries marier ver 220.51 65.07 4.27 0.54 ind:pre:2s;sub:pre:2s; +marieur marieur nom m s 0.69 0.27 0.43 0.00 +marieuse marieur nom f s 0.69 0.27 0.27 0.20 +marieuses marieuse nom f p 0.40 0.00 0.40 0.00 +mariez marier ver 220.51 65.07 2.44 0.41 imp:pre:2p;ind:pre:2p; +marigot marigot nom m s 0.16 1.69 0.16 1.15 +marigots marigot nom m p 0.16 1.69 0.00 0.54 +marihuana marihuana nom f s 0.07 0.14 0.07 0.14 +mariions marier ver 220.51 65.07 0.00 0.14 ind:imp:1p; +marijuana marijuana nom f s 3.77 0.41 3.77 0.41 +marimba marimba nom m s 0.02 0.00 0.02 0.00 +marin_pêcheur marin_pêcheur nom m s 0.01 0.14 0.01 0.14 +marin marin nom m s 13.96 33.38 8.48 15.34 +marina marina nom f s 1.16 0.14 1.14 0.07 +marinade marinade nom f s 1.46 0.27 1.44 0.20 +marinades marinade nom f p 1.46 0.27 0.03 0.07 +marinage marinage nom m s 0.00 0.07 0.00 0.07 +marinaient mariner ver 1.42 2.84 0.00 0.14 ind:imp:3p; +marinait mariner ver 1.42 2.84 0.00 0.14 ind:imp:3s; +marinant mariner ver 1.42 2.84 0.00 0.34 par:pre; +marinas marina nom f p 1.16 0.14 0.02 0.07 +marine marine adj s 7.26 20.34 5.90 17.97 +mariner mariner ver 1.42 2.84 0.84 1.15 inf; +marinera mariner ver 1.42 2.84 0.00 0.07 ind:fut:3s; +marines marine adj p 7.26 20.34 1.36 2.36 +maringoins maringoin nom m p 0.00 0.07 0.00 0.07 +marinier marinier nom m s 0.06 1.49 0.04 0.41 +mariniers marinier nom m p 0.06 1.49 0.02 1.08 +marinière marinière nom f s 0.26 0.54 0.23 0.41 +marinières marinière nom f p 0.26 0.54 0.02 0.14 +marins marin nom m p 13.96 33.38 5.48 18.04 +mariné mariné adj m s 0.34 0.47 0.18 0.20 +marinée mariner ver f s 1.42 2.84 0.13 0.00 par:pas; +marinées mariner ver f p 1.42 2.84 0.12 0.07 par:pas; +marinés mariné adj m p 0.34 0.47 0.16 0.27 +mariol mariol nom s 0.04 0.00 0.04 0.00 +mariole mariole nom s 0.68 0.81 0.58 0.54 +marioles mariole nom p 0.68 0.81 0.10 0.27 +mariolle mariolle nom s 0.99 0.61 0.59 0.41 +mariolles mariolle nom p 0.99 0.61 0.40 0.20 +marionnette marionnette nom f s 5.11 5.95 2.87 2.77 +marionnettes marionnette nom f p 5.11 5.95 2.24 3.18 +marionnettiste marionnettiste nom s 0.36 0.07 0.36 0.07 +marions marier ver 220.51 65.07 2.53 0.07 imp:pre:1p;ind:pre:1p; +mariât marier ver 220.51 65.07 0.00 0.07 sub:imp:3s; +maris mari nom m p 264.15 124.26 9.23 5.88 +maristes mariste nom p 0.00 0.14 0.00 0.14 +marital marital adj m s 0.59 0.14 0.14 0.00 +maritale marital adj f s 0.59 0.14 0.31 0.00 +maritalement maritalement adv 0.03 0.20 0.03 0.20 +maritales marital adj f p 0.59 0.14 0.01 0.07 +maritaux marital adj m p 0.59 0.14 0.13 0.07 +marièrent marier ver 220.51 65.07 0.42 0.88 ind:pas:3p; +maritime maritime adj s 2.37 6.22 1.74 3.58 +maritimes maritime adj p 2.37 6.22 0.63 2.64 +maritorne maritorne nom f s 0.00 0.27 0.00 0.27 +marié marier ver m s 220.51 65.07 35.76 10.47 par:pas; +mariée marier ver f s 220.51 65.07 30.55 10.74 ind:imp:3p;par:pas; +mariées marier ver f p 220.51 65.07 1.50 0.61 par:pas; +mariés marier ver m p 220.51 65.07 21.53 5.20 par:pas; +marivaudage marivaudage nom m s 0.03 0.41 0.03 0.20 +marivaudages marivaudage nom m p 0.03 0.41 0.00 0.20 +marivaudant marivauder ver 0.02 0.07 0.00 0.07 par:pre; +marivauder marivauder ver 0.02 0.07 0.02 0.00 inf; +marjolaine marjolaine nom f s 0.24 0.61 0.24 0.61 +mark mark nom m s 13.24 1.76 1.31 0.61 +marker marker nom m s 0.08 0.14 0.08 0.14 +marketing marketing nom m s 1.88 0.88 1.88 0.81 +marketings marketing nom m p 1.88 0.88 0.00 0.07 +marks mark nom m p 13.24 1.76 11.93 1.15 +marle marle adj m s 0.04 1.55 0.00 1.35 +marles marle adj p 0.04 1.55 0.04 0.20 +marlin marlin nom m s 0.50 0.00 0.50 0.00 +marlou marlou nom m s 0.24 0.88 0.14 0.54 +marloupin marloupin nom m s 0.00 0.34 0.00 0.14 +marloupinerie marloupinerie nom f s 0.00 0.27 0.00 0.20 +marloupineries marloupinerie nom f p 0.00 0.27 0.00 0.07 +marloupins marloupin nom m p 0.00 0.34 0.00 0.20 +marlous marlou nom m p 0.24 0.88 0.10 0.34 +marmaille marmaille nom f s 0.30 4.26 0.30 4.12 +marmailles marmaille nom f p 0.30 4.26 0.00 0.14 +marmelade marmelade nom f s 0.73 2.91 0.73 2.77 +marmelades marmelade nom f p 0.73 2.91 0.00 0.14 +marmitage marmitage nom m s 0.00 0.47 0.00 0.41 +marmitages marmitage nom m p 0.00 0.47 0.00 0.07 +marmite marmite nom f s 3.21 14.66 2.35 8.38 +marmiter marmiter ver 0.14 0.07 0.14 0.00 inf; +marmites marmite nom f p 3.21 14.66 0.86 6.28 +marmiteuse marmiteux adj f s 0.14 0.14 0.00 0.07 +marmiteux marmiteux adj m 0.14 0.14 0.14 0.07 +marmiton marmiton nom m s 0.13 1.15 0.12 0.41 +marmitons marmiton nom m p 0.13 1.15 0.01 0.74 +marmitées marmitée nom f p 0.00 0.14 0.00 0.14 +marmités marmiter ver m p 0.14 0.07 0.00 0.07 par:pas; +marmonna marmonner ver 1.74 13.51 0.14 3.04 ind:pas:3s; +marmonnaient marmonner ver 1.74 13.51 0.00 0.27 ind:imp:3p; +marmonnait marmonner ver 1.74 13.51 0.15 2.43 ind:imp:3s; +marmonnant marmonner ver 1.74 13.51 0.07 1.89 par:pre; +marmonne marmonner ver 1.74 13.51 0.56 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +marmonnement marmonnement nom m s 0.32 0.61 0.29 0.61 +marmonnements marmonnement nom m p 0.32 0.61 0.02 0.00 +marmonnent marmonner ver 1.74 13.51 0.03 0.20 ind:pre:3p; +marmonner marmonner ver 1.74 13.51 0.31 1.35 inf; +marmonnes marmonner ver 1.74 13.51 0.20 0.07 ind:pre:2s; +marmonnez marmonner ver 1.74 13.51 0.11 0.00 imp:pre:2p;ind:pre:2p; +marmonniez marmonner ver 1.74 13.51 0.01 0.00 ind:imp:2p; +marmonné marmonner ver m s 1.74 13.51 0.12 1.28 par:pas; +marmonnée marmonner ver f s 1.74 13.51 0.01 0.07 par:pas; +marmonnés marmonner ver m p 1.74 13.51 0.02 0.00 par:pas; +marmoréen marmoréen adj m s 0.01 0.61 0.00 0.27 +marmoréenne marmoréen adj f s 0.01 0.61 0.01 0.20 +marmoréens marmoréen adj m p 0.01 0.61 0.00 0.14 +marmot marmot nom m s 1.52 2.36 1.21 1.42 +marmots marmot nom m p 1.52 2.36 0.32 0.95 +marmotta marmotter ver 0.34 1.28 0.10 0.47 ind:pas:3s; +marmottages marmottage nom m p 0.00 0.07 0.00 0.07 +marmottait marmotter ver 0.34 1.28 0.00 0.20 ind:imp:3s; +marmottant marmotter ver 0.34 1.28 0.00 0.20 par:pre; +marmotte marmotte nom f s 3.15 1.22 2.84 0.74 +marmottement marmottement nom m s 0.00 0.07 0.00 0.07 +marmotter marmotter ver 0.34 1.28 0.00 0.27 inf; +marmottes marmotte nom f p 3.15 1.22 0.32 0.47 +marmotté marmotter ver m s 0.34 1.28 0.00 0.07 par:pas; +marmouset marmouset nom m s 0.10 0.07 0.10 0.00 +marmousets marmouset nom m p 0.10 0.07 0.00 0.07 +marna marner ver 0.10 1.15 0.05 0.00 ind:pas:3s; +marnaise marnais adj f s 0.00 0.07 0.00 0.07 +marnait marner ver 0.10 1.15 0.00 0.07 ind:imp:3s; +marne marne nom f s 0.03 2.84 0.03 0.34 +marnent marner ver 0.10 1.15 0.00 0.14 ind:pre:3p; +marner marner ver 0.10 1.15 0.05 0.61 inf; +marnes marne nom f p 0.03 2.84 0.00 2.50 +marneuse marneux adj f s 0.00 0.20 0.00 0.20 +marnières marnière nom f p 0.00 0.07 0.00 0.07 +marné marner ver m s 0.10 1.15 0.00 0.14 par:pas; +marocain marocain nom m s 2.28 2.09 1.06 1.49 +marocaine marocain adj f s 0.54 5.14 0.19 2.03 +marocaines marocain nom f p 2.28 2.09 0.14 0.07 +marocains marocain nom m p 2.28 2.09 1.07 0.47 +maronite maronite adj s 0.00 0.20 0.00 0.14 +maronites maronite nom p 0.00 0.14 0.00 0.14 +maronner maronner ver 0.01 0.07 0.01 0.00 inf; +maronné maronner ver m s 0.01 0.07 0.00 0.07 par:pas; +maroquin maroquin nom m s 0.11 1.76 0.11 1.69 +maroquinerie maroquinerie nom f s 0.05 1.15 0.05 1.01 +maroquineries maroquinerie nom f p 0.05 1.15 0.00 0.14 +maroquinier maroquinier nom m s 0.01 0.61 0.01 0.47 +maroquiniers maroquinier nom m p 0.01 0.61 0.00 0.14 +maroquins maroquin nom m p 0.11 1.76 0.00 0.07 +marâtre marâtre nom f s 0.38 1.22 0.37 1.08 +marâtres marâtre nom f p 0.38 1.22 0.01 0.14 +marotte marotte nom f s 0.26 2.09 0.20 1.55 +marottes marotte nom f p 0.26 2.09 0.05 0.54 +marouette marouette nom f s 0.01 0.00 0.01 0.00 +maroufle maroufle nom f s 0.14 0.41 0.14 0.27 +maroufler maroufler ver 0.00 0.07 0.00 0.07 inf; +maroufles maroufle nom f p 0.14 0.41 0.00 0.14 +marqua marquer ver 43.78 101.08 0.32 8.04 ind:pas:3s; +marquage marquage nom m s 0.65 0.14 0.65 0.14 +marquai marquer ver 43.78 101.08 0.00 0.74 ind:pas:1s; +marquaient marquer ver 43.78 101.08 0.12 4.39 ind:imp:3p; +marquais marquer ver 43.78 101.08 0.06 0.41 ind:imp:1s;ind:imp:2s; +marquait marquer ver 43.78 101.08 0.56 12.03 ind:imp:3s; +marquant marquer ver 43.78 101.08 0.30 5.20 par:pre; +marquante marquant adj f s 0.56 1.49 0.04 0.14 +marquantes marquant adj f p 0.56 1.49 0.01 0.07 +marquants marquant adj m p 0.56 1.49 0.29 0.61 +marque_page marque_page nom m s 0.25 0.14 0.24 0.07 +marque_page marque_page nom m p 0.25 0.14 0.01 0.07 +marque marque nom f s 40.29 37.70 23.91 26.89 +marquent marquer ver 43.78 101.08 0.86 2.77 ind:pre:3p; +marquer marquer ver 43.78 101.08 7.69 16.82 inf; +marquera marquer ver 43.78 101.08 0.85 0.74 ind:fut:3s; +marquerai marquer ver 43.78 101.08 0.42 0.07 ind:fut:1s; +marqueraient marquer ver 43.78 101.08 0.11 0.14 cnd:pre:3p; +marquerait marquer ver 43.78 101.08 0.07 0.47 cnd:pre:3s; +marqueras marquer ver 43.78 101.08 0.03 0.07 ind:fut:2s; +marquerez marquer ver 43.78 101.08 0.01 0.14 ind:fut:2p; +marquerons marquer ver 43.78 101.08 0.01 0.00 ind:fut:1p; +marqueront marquer ver 43.78 101.08 0.08 0.14 ind:fut:3p; +marques marque nom f p 40.29 37.70 16.39 10.81 +marqueterie marqueterie nom f s 0.11 2.09 0.11 1.62 +marqueteries marqueterie nom f p 0.11 2.09 0.00 0.47 +marquette marqueter ver 0.02 0.27 0.01 0.07 imp:pre:2s;ind:pre:3s; +marqueté marqueter ver m s 0.02 0.27 0.01 0.07 par:pas; +marquetées marqueter ver f p 0.02 0.27 0.00 0.07 par:pas; +marquetés marqueter ver m p 0.02 0.27 0.00 0.07 par:pas; +marqueur marqueur nom m s 2.02 0.47 1.25 0.47 +marqueurs marqueur nom m p 2.02 0.47 0.77 0.00 +marquez marquer ver 43.78 101.08 1.98 0.41 imp:pre:2p;ind:pre:2p; +marquiez marquer ver 43.78 101.08 0.28 0.07 ind:imp:2p; +marquions marquer ver 43.78 101.08 0.00 0.07 ind:imp:1p; +marquis marquis nom m 16.69 18.31 14.98 9.86 +marquisat marquisat nom m s 0.00 0.27 0.00 0.20 +marquisats marquisat nom m p 0.00 0.27 0.00 0.07 +marquise marquis nom f s 16.69 18.31 1.64 7.36 +marquises marquis nom f p 16.69 18.31 0.07 1.08 +marquisien marquisien adj m s 0.00 0.20 0.00 0.07 +marquisiens marquisien adj m p 0.00 0.20 0.00 0.14 +marquons marquer ver 43.78 101.08 0.04 0.14 imp:pre:1p;ind:pre:1p; +marquât marquer ver 43.78 101.08 0.00 0.41 sub:imp:3s; +marquèrent marquer ver 43.78 101.08 0.01 0.68 ind:pas:3p; +marqué marquer ver m s 43.78 101.08 15.81 20.07 par:pas; +marquée marquer ver f s 43.78 101.08 2.84 9.26 par:pas; +marquées marquer ver f p 43.78 101.08 0.51 2.50 par:pas; +marqués marquer ver m p 43.78 101.08 1.68 4.32 par:pas; +marra marrer ver 16.13 32.57 0.10 0.34 ind:pas:3s; +marrade marrade nom f s 0.01 0.68 0.01 0.68 +marraient marrer ver 16.13 32.57 0.14 0.54 ind:imp:3p; +marraine marraine nom f s 2.74 8.78 2.52 8.38 +marraines marraine nom f p 2.74 8.78 0.22 0.41 +marrais marrer ver 16.13 32.57 0.14 0.34 ind:imp:1s; +marrait marrer ver 16.13 32.57 0.27 2.30 ind:imp:3s; +marrane marrane nom m s 0.00 0.27 0.00 0.14 +marranes marrane nom m p 0.00 0.27 0.00 0.14 +marrant marrant adj m s 35.70 12.36 30.41 9.19 +marrante marrant adj f s 35.70 12.36 3.15 1.42 +marrantes marrant adj f p 35.70 12.36 0.81 0.54 +marrants marrant adj m p 35.70 12.36 1.33 1.22 +marre marre adv 57.48 20.68 57.48 20.68 +marrent marrer ver 16.13 32.57 0.54 1.76 ind:pre:3p; +marrer marrer ver 16.13 32.57 6.45 12.50 inf; +marrera marrer ver 16.13 32.57 0.22 0.07 ind:fut:3s; +marrerais marrer ver 16.13 32.57 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +marrerait marrer ver 16.13 32.57 0.00 0.14 cnd:pre:3s; +marres marrer ver 16.13 32.57 1.12 0.34 ind:pre:2s; +marrez marrer ver 16.13 32.57 0.47 0.41 imp:pre:2p;ind:pre:2p; +marri marri adj m s 0.52 0.41 0.03 0.41 +marrie marri adj f s 0.52 0.41 0.45 0.00 +marrions marrer ver 16.13 32.57 0.05 0.00 ind:imp:1p; +marris marri adj m p 0.52 0.41 0.04 0.00 +marron marron adj 5.33 13.72 5.33 13.72 +marronnais marronner ver 0.00 0.41 0.00 0.07 ind:imp:2s; +marronnasse marronnasse adj s 0.00 0.07 0.00 0.07 +marronner marronner ver 0.00 0.41 0.00 0.20 inf; +marronnera marronner ver 0.00 0.41 0.00 0.07 ind:fut:3s; +marronnier marronnier nom m s 0.61 9.39 0.46 2.57 +marronniers marronnier nom m p 0.61 9.39 0.15 6.82 +marronné marronner ver m s 0.00 0.41 0.00 0.07 par:pas; +marrons marron nom m p 4.89 7.36 2.80 3.92 +marré marrer ver m s 16.13 32.57 0.72 1.76 par:pas; +marrée marrer ver f s 16.13 32.57 0.15 0.07 par:pas; +marrés marrer ver m p 16.13 32.57 0.18 0.61 par:pas; +mars mars nom m 9.75 31.42 9.75 31.42 +marsala marsala nom m s 0.38 0.14 0.38 0.14 +marsaules marsaule nom m p 0.00 0.27 0.00 0.27 +marseillais marseillais nom m 1.27 1.82 1.27 0.81 +marseillaise marseillais nom f s 1.27 1.82 0.00 1.01 +marseillaises marseillais adj f p 1.22 1.35 0.00 0.34 +marshal marshal nom m s 3.11 0.00 2.74 0.00 +marshals marshal nom m p 3.11 0.00 0.37 0.00 +marsouin marsouin nom m s 0.11 0.68 0.08 0.47 +marsouins marsouin nom m p 0.11 0.68 0.03 0.20 +marsupial marsupial nom m s 0.10 0.00 0.04 0.00 +marsupiaux marsupial nom m p 0.10 0.00 0.06 0.00 +marsupilami marsupilami nom m s 0.00 0.20 0.00 0.14 +marsupilamis marsupilami nom m p 0.00 0.20 0.00 0.07 +martagon martagon nom m s 0.00 0.07 0.00 0.07 +marteau_pilon marteau_pilon nom m s 0.07 0.41 0.07 0.34 +marteau_piqueur marteau_piqueur nom m s 0.42 0.07 0.42 0.07 +marteau marteau nom m s 12.63 15.61 11.84 13.31 +marteau_pilon marteau_pilon nom m p 0.07 0.41 0.00 0.07 +marteaux marteau nom m p 12.63 15.61 0.79 2.30 +martel martel nom m s 0.05 0.47 0.05 0.34 +martela marteler ver 1.45 10.41 0.00 0.68 ind:pas:3s; +martelage martelage nom m s 0.00 0.14 0.00 0.14 +martelai marteler ver 1.45 10.41 0.00 0.07 ind:pas:1s; +martelaient marteler ver 1.45 10.41 0.02 0.74 ind:imp:3p; +martelait marteler ver 1.45 10.41 0.01 1.15 ind:imp:3s; +martelant marteler ver 1.45 10.41 0.29 2.30 par:pre; +marteler marteler ver 1.45 10.41 0.41 1.35 inf; +martelet martelet nom m s 0.00 0.07 0.00 0.07 +marteleur marteleur nom m s 0.04 0.00 0.04 0.00 +martelez marteler ver 1.45 10.41 0.01 0.00 ind:pre:2p; +martels martel nom m p 0.05 0.47 0.00 0.14 +martelèrent marteler ver 1.45 10.41 0.00 0.07 ind:pas:3p; +martelé marteler ver m s 1.45 10.41 0.16 1.42 par:pas; +martelée marteler ver f s 1.45 10.41 0.02 0.54 par:pas; +martelées marteler ver f p 1.45 10.41 0.00 0.27 par:pas; +martelés marteler ver m p 1.45 10.41 0.00 0.47 par:pas; +martial martial adj m s 8.02 4.26 0.85 1.76 +martiale martial adj f s 8.02 4.26 5.63 1.22 +martiales martial adj f p 8.02 4.26 0.01 0.34 +martialités martialité nom f p 0.00 0.07 0.00 0.07 +martiaux martial adj m p 8.02 4.26 1.53 0.95 +martien martien nom m s 1.96 1.49 0.59 0.61 +martienne martienne nom f s 0.51 0.34 0.35 0.27 +martiennes martienne nom f p 0.51 0.34 0.16 0.07 +martiens martien nom m p 1.96 1.49 1.37 0.88 +martin_pêcheur martin_pêcheur nom m s 0.02 0.41 0.01 0.27 +martin martin nom m s 1.69 0.07 0.08 0.00 +martine martiner ver 2.56 0.47 0.00 0.14 ind:pre:3s; +martinet martinet nom m s 0.26 2.64 0.24 1.15 +martinets martinet nom m p 0.26 2.64 0.02 1.49 +martinez martiner ver 2.56 0.47 2.56 0.34 imp:pre:2p;ind:pre:2p; +martingale martingale nom f s 0.12 1.28 0.12 1.08 +martingales martingale nom f p 0.12 1.28 0.00 0.20 +martini martini nom m s 3.85 2.23 2.76 1.89 +martiniquais martiniquais nom m 0.03 1.69 0.02 0.68 +martiniquaise martiniquais nom f s 0.03 1.69 0.01 0.95 +martiniquaises martiniquais nom f p 0.03 1.69 0.00 0.07 +martinis martini nom m p 3.85 2.23 1.09 0.34 +martin_pêcheur martin_pêcheur nom m p 0.02 0.41 0.01 0.14 +martins martin nom m p 1.69 0.07 1.62 0.07 +martre martre nom f s 0.53 1.22 0.16 1.01 +martres martre nom f p 0.53 1.22 0.37 0.20 +martèle marteler ver 1.45 10.41 0.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +martèlement martèlement nom m s 0.43 3.65 0.41 3.51 +martèlements martèlement nom m p 0.43 3.65 0.02 0.14 +martèlent marteler ver 1.45 10.41 0.32 0.27 ind:pre:3p; +martèlera marteler ver 1.45 10.41 0.00 0.14 ind:fut:3s; +martyr martyr nom m s 5.50 6.76 3.68 3.24 +martyre martyre nom s 3.75 6.35 3.32 6.08 +martyres martyre nom p 3.75 6.35 0.42 0.27 +martyrisaient martyriser ver 0.94 3.38 0.00 0.07 ind:imp:3p; +martyrisait martyriser ver 0.94 3.38 0.01 0.47 ind:imp:3s; +martyrisant martyriser ver 0.94 3.38 0.00 0.14 par:pre; +martyrise martyriser ver 0.94 3.38 0.24 0.07 ind:pre:3s; +martyrisent martyriser ver 0.94 3.38 0.02 0.07 ind:pre:3p; +martyriser martyriser ver 0.94 3.38 0.22 0.74 inf; +martyriserait martyriser ver 0.94 3.38 0.01 0.00 cnd:pre:3s; +martyrisé martyriser ver m s 0.94 3.38 0.24 0.68 par:pas; +martyrisée martyriser ver f s 0.94 3.38 0.04 0.74 par:pas; +martyrisées martyriser ver f p 0.94 3.38 0.01 0.07 par:pas; +martyrisés martyriser ver m p 0.94 3.38 0.15 0.34 par:pas; +martyrologe martyrologe nom m s 0.00 0.20 0.00 0.14 +martyrologes martyrologe nom m p 0.00 0.20 0.00 0.07 +martyrs martyr nom m p 5.50 6.76 1.82 3.51 +marécage marécage nom m s 3.18 6.15 2.31 2.77 +marécages marécage nom m p 3.18 6.15 0.87 3.38 +marécageuse marécageux adj f s 0.47 1.62 0.02 0.41 +marécageuses marécageux adj f p 0.47 1.62 0.01 0.34 +marécageux marécageux adj m 0.47 1.62 0.44 0.88 +maréchal_ferrant maréchal_ferrant nom m s 0.22 1.96 0.22 1.96 +maréchal maréchal nom m s 2.84 41.69 2.67 38.24 +maréchalat maréchalat nom m s 0.00 0.07 0.00 0.07 +maréchale maréchal nom f s 2.84 41.69 0.14 0.07 +maréchalerie maréchalerie nom f s 0.00 0.27 0.00 0.27 +maréchalistes maréchaliste nom p 0.00 0.07 0.00 0.07 +maréchaussée maréchaussée nom f s 0.00 0.88 0.00 0.88 +maréchaux_ferrants maréchaux_ferrants nom m p 0.00 0.41 0.00 0.41 +maréchaux maréchal nom m p 2.84 41.69 0.04 3.38 +marée marée nom f s 6.31 26.89 5.21 21.28 +marées marée nom f p 6.31 26.89 1.10 5.61 +marémotrice marémoteur adj f s 0.01 0.00 0.01 0.00 +marxisme_léninisme marxisme_léninisme nom m s 0.50 0.68 0.50 0.68 +marxisme marxisme nom m s 0.94 3.92 0.94 3.92 +marxiste_léniniste marxiste_léniniste adj s 0.41 0.41 0.27 0.41 +marxiste marxiste adj s 0.91 2.84 0.67 2.36 +marxiste_léniniste marxiste_léniniste adj p 0.41 0.41 0.14 0.00 +marxistes marxiste adj p 0.91 2.84 0.24 0.47 +mary mary nom m s 0.56 0.20 0.56 0.20 +maryland maryland nom m s 0.04 0.14 0.04 0.14 +mas mas nom m 2.21 5.07 2.21 5.07 +masaï masaï nom s 0.01 3.99 0.01 3.99 +mascara mascara nom m s 1.15 0.47 1.15 0.47 +mascarade mascarade nom f s 2.71 2.03 2.58 1.76 +mascarades mascarade nom f p 2.71 2.03 0.13 0.27 +mascaret mascaret nom m s 0.00 0.54 0.00 0.54 +mascaron mascaron nom m s 0.00 0.14 0.00 0.07 +mascarons mascaron nom m p 0.00 0.14 0.00 0.07 +mascarpone mascarpone nom m s 0.11 0.00 0.11 0.00 +mascotte mascotte nom f s 2.36 0.88 1.91 0.74 +mascottes mascotte nom f p 2.36 0.88 0.45 0.14 +masculin masculin adj m s 8.14 10.14 4.49 4.05 +masculine masculin adj f s 8.14 10.14 2.66 3.92 +masculines masculin adj f p 8.14 10.14 0.40 0.95 +masculiniser masculiniser ver 0.02 0.07 0.01 0.00 inf; +masculinisée masculiniser ver f s 0.02 0.07 0.01 0.07 par:pas; +masculinité masculinité nom f s 0.21 0.00 0.21 0.00 +masculins masculin adj m p 8.14 10.14 0.59 1.22 +maser maser nom m s 0.01 0.00 0.01 0.00 +maskinongé maskinongé nom m s 0.00 0.07 0.00 0.07 +maso maso nom s 0.38 0.34 0.24 0.34 +masochisme masochisme nom m s 0.42 1.01 0.42 1.01 +masochiste masochiste adj s 0.34 0.81 0.30 0.68 +masochistes masochiste nom p 0.29 0.47 0.04 0.07 +masos maso adj p 0.35 0.88 0.15 0.00 +masqua masquer ver 3.74 19.12 0.01 0.27 ind:pas:3s; +masquage masquage nom m s 0.02 0.00 0.01 0.00 +masquages masquage nom m p 0.02 0.00 0.01 0.00 +masquaient masquer ver 3.74 19.12 0.04 1.22 ind:imp:3p; +masquait masquer ver 3.74 19.12 0.08 3.11 ind:imp:3s; +masquant masquer ver 3.74 19.12 0.05 1.82 par:pre; +masque_espion masque_espion nom m s 0.01 0.00 0.01 0.00 +masque masque nom m s 29.18 38.65 23.16 28.45 +masquent masquer ver 3.74 19.12 0.09 0.68 ind:pre:3p; +masquer masquer ver 3.74 19.12 1.39 4.32 inf; +masqueraient masquer ver 3.74 19.12 0.00 0.07 cnd:pre:3p; +masques masque nom m p 29.18 38.65 6.02 10.20 +masquons masquer ver 3.74 19.12 0.03 0.00 ind:pre:1p; +masqué masqué adj m s 3.26 3.85 2.42 1.69 +masquée masquer ver f s 3.74 19.12 0.15 1.42 par:pas; +masquées masquer ver f p 3.74 19.12 0.02 0.47 par:pas; +masqués masqué adj m p 3.26 3.85 0.73 0.68 +mass_media mass_media nom m p 0.17 0.07 0.17 0.07 +massa masser ver 5.69 12.84 0.00 1.28 ind:pas:3s; +massacra massacrer ver 17.01 14.66 0.05 0.14 ind:pas:3s; +massacraient massacrer ver 17.01 14.66 0.01 0.47 ind:imp:3p; +massacrais massacrer ver 17.01 14.66 0.01 0.00 ind:imp:1s; +massacrait massacrer ver 17.01 14.66 0.05 0.74 ind:imp:3s; +massacrant massacrer ver 17.01 14.66 0.33 0.47 par:pre; +massacrante massacrant adj f s 0.45 0.34 0.40 0.34 +massacre massacre nom m s 13.71 16.49 11.71 10.27 +massacrent massacrer ver 17.01 14.66 0.36 0.20 ind:pre:3p;sub:pre:3p; +massacrer massacrer ver 17.01 14.66 5.73 4.12 inf; +massacrera massacrer ver 17.01 14.66 0.27 0.07 ind:fut:3s; +massacrerai massacrer ver 17.01 14.66 0.03 0.07 ind:fut:1s; +massacreraient massacrer ver 17.01 14.66 0.01 0.20 cnd:pre:3p; +massacrerait massacrer ver 17.01 14.66 0.00 0.14 cnd:pre:3s; +massacrerons massacrer ver 17.01 14.66 0.16 0.00 ind:fut:1p; +massacreront massacrer ver 17.01 14.66 0.08 0.07 ind:fut:3p; +massacres massacre nom m p 13.71 16.49 2.00 6.22 +massacreur massacreur nom m s 0.06 0.34 0.06 0.20 +massacreurs massacreur nom m p 0.06 0.34 0.00 0.14 +massacrez massacrer ver 17.01 14.66 0.57 0.07 imp:pre:2p;ind:pre:2p; +massacrons massacrer ver 17.01 14.66 0.20 0.00 imp:pre:1p;ind:pre:1p; +massacrât massacrer ver 17.01 14.66 0.00 0.07 sub:imp:3s; +massacrèrent massacrer ver 17.01 14.66 0.16 0.20 ind:pas:3p; +massacré massacrer ver m s 17.01 14.66 3.17 2.70 par:pas; +massacrée massacrer ver f s 17.01 14.66 0.81 0.81 par:pas; +massacrées massacrer ver f p 17.01 14.66 0.09 0.20 par:pas; +massacrés massacrer ver m p 17.01 14.66 1.92 3.04 par:pas; +massage massage nom m s 9.57 3.18 7.76 2.23 +massages massage nom m p 9.57 3.18 1.81 0.95 +massaient masser ver 5.69 12.84 0.00 0.27 ind:imp:3p; +massais masser ver 5.69 12.84 0.08 0.00 ind:imp:1s; +massait masser ver 5.69 12.84 0.02 1.01 ind:imp:3s; +massant masser ver 5.69 12.84 0.04 0.68 par:pre; +masse masse nom f s 16.73 79.80 11.64 60.54 +massent masser ver 5.69 12.84 0.01 0.41 ind:pre:3p; +massepain massepain nom m s 0.29 0.34 0.17 0.00 +massepains massepain nom m p 0.29 0.34 0.12 0.34 +masser masser ver 5.69 12.84 2.98 2.09 inf; +massera masser ver 5.69 12.84 0.21 0.00 ind:fut:3s; +masserai masser ver 5.69 12.84 0.05 0.00 ind:fut:1s; +masseraient masser ver 5.69 12.84 0.00 0.07 cnd:pre:3p; +masserais masser ver 5.69 12.84 0.01 0.00 cnd:pre:2s; +masseras masser ver 5.69 12.84 0.02 0.00 ind:fut:2s; +masserez masser ver 5.69 12.84 0.01 0.00 ind:fut:2p; +masses masse nom f p 16.73 79.80 5.09 19.26 +massettes massette nom f p 0.00 0.14 0.00 0.14 +masseur masseur nom m s 1.91 1.69 0.70 1.15 +masseurs masseur nom m p 1.91 1.69 0.06 0.14 +masseuse masseur nom f s 1.91 1.69 1.12 0.27 +masseuses masseur nom f p 1.91 1.69 0.03 0.14 +massez masser ver 5.69 12.84 0.21 0.00 imp:pre:2p; +massicot massicot nom m s 0.20 0.61 0.10 0.54 +massicoter massicoter ver 0.00 0.14 0.00 0.07 inf; +massicotier massicotier nom m s 0.00 0.41 0.00 0.41 +massicots massicot nom m p 0.20 0.61 0.10 0.07 +massicoté massicoter ver m s 0.00 0.14 0.00 0.07 par:pas; +massif massif adj m s 7.16 22.30 2.52 8.92 +massifs massif adj m p 7.16 22.30 0.40 2.03 +massive massif adj f s 7.16 22.30 3.68 8.38 +massivement massivement adv 0.21 1.01 0.21 1.01 +massives massif adj f p 7.16 22.30 0.55 2.97 +massivité massivité nom f s 0.00 0.20 0.00 0.20 +massèrent masser ver 5.69 12.84 0.00 0.14 ind:pas:3p; +massé masser ver m s 5.69 12.84 0.40 1.01 par:pas; +massée masser ver f s 5.69 12.84 0.11 1.62 par:pas; +massue massue nom f s 0.71 2.84 0.57 2.30 +massées masser ver f p 5.69 12.84 0.03 0.47 par:pas; +massues massue nom f p 0.71 2.84 0.14 0.54 +massés masser ver m p 5.69 12.84 0.05 1.69 par:pas; +mastaba mastaba nom m s 0.01 0.20 0.01 0.14 +mastabas mastaba nom m p 0.01 0.20 0.00 0.07 +mastar mastar nom m s 0.02 0.07 0.02 0.07 +mastard mastard adj m s 0.80 0.88 0.80 0.74 +mastards mastard adj m p 0.80 0.88 0.00 0.14 +mastectomie mastectomie nom f s 0.22 0.00 0.22 0.00 +master master nom m s 3.43 0.07 1.41 0.07 +masters master nom m p 3.43 0.07 2.02 0.00 +mastic mastic nom m s 0.26 1.62 0.26 1.62 +masticage masticage nom m s 0.00 0.07 0.00 0.07 +masticateurs masticateur adj m p 0.01 0.07 0.01 0.07 +mastication mastication nom f s 0.16 0.81 0.16 0.74 +mastications mastication nom f p 0.16 0.81 0.00 0.07 +mastiff mastiff nom m s 0.02 0.07 0.02 0.07 +mastiqua mastiquer ver 0.32 4.32 0.00 0.14 ind:pas:3s; +mastiquaient mastiquer ver 0.32 4.32 0.00 0.14 ind:imp:3p; +mastiquais mastiquer ver 0.32 4.32 0.00 0.07 ind:imp:1s; +mastiquait mastiquer ver 0.32 4.32 0.01 0.81 ind:imp:3s; +mastiquant mastiquer ver 0.32 4.32 0.00 0.81 par:pre; +mastique mastiquer ver 0.32 4.32 0.10 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mastiquent mastiquer ver 0.32 4.32 0.01 0.07 ind:pre:3p; +mastiquer mastiquer ver 0.32 4.32 0.14 1.35 inf; +mastiquez mastiquer ver 0.32 4.32 0.01 0.07 imp:pre:2p; +mastiquons mastiquer ver 0.32 4.32 0.00 0.07 ind:pre:1p; +mastiqué mastiquer ver m s 0.32 4.32 0.04 0.14 par:pas; +mastiqués mastiquer ver m p 0.32 4.32 0.01 0.07 par:pas; +mastite mastite nom f s 0.12 0.00 0.12 0.00 +mastoïde mastoïde adj s 0.93 0.07 0.93 0.07 +mastoc mastoc adj s 1.28 0.68 1.28 0.68 +mastodonte mastodonte nom m s 0.17 0.61 0.13 0.47 +mastodontes mastodonte nom m p 0.17 0.61 0.04 0.14 +mastroquet mastroquet nom m s 0.16 0.34 0.14 0.20 +mastroquets mastroquet nom m p 0.16 0.34 0.01 0.14 +mastère mastère nom m s 0.02 0.00 0.02 0.00 +masturbais masturber ver 3.89 1.69 0.08 0.00 ind:imp:1s;ind:imp:2s; +masturbait masturber ver 3.89 1.69 0.44 0.20 ind:imp:3s; +masturbant masturber ver 3.89 1.69 0.43 0.20 par:pre; +masturbateur masturbateur adj m s 0.06 0.00 0.06 0.00 +masturbation masturbation nom f s 1.57 2.03 1.57 1.89 +masturbations masturbation nom f p 1.57 2.03 0.00 0.14 +masturbatoire masturbatoire adj m s 0.05 0.14 0.02 0.14 +masturbatoires masturbatoire adj p 0.05 0.14 0.03 0.00 +masturbe masturber ver 3.89 1.69 1.02 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +masturbent masturber ver 3.89 1.69 0.19 0.14 ind:pre:3p; +masturber masturber ver 3.89 1.69 1.16 0.47 inf; +masturberas masturber ver 3.89 1.69 0.01 0.00 ind:fut:2s; +masturbez masturber ver 3.89 1.69 0.04 0.00 ind:pre:2p; +masturbé masturber ver m s 3.89 1.69 0.18 0.07 par:pas; +masturbée masturber ver f s 3.89 1.69 0.34 0.00 par:pas; +masturbés masturber ver m p 3.89 1.69 0.01 0.07 par:pas; +masure masure nom f s 0.47 4.32 0.19 2.30 +masures masure nom f p 0.47 4.32 0.28 2.03 +mat mat nom m s 6.84 4.32 1.95 0.88 +mat mat nom m s 6.84 4.32 4.54 3.31 +mata mater ver 17.27 14.93 0.41 0.20 ind:pas:3s; +matador matador nom m s 1.25 2.03 1.15 1.76 +matadors matador nom m p 1.25 2.03 0.10 0.27 +mataf mataf nom m s 0.13 0.61 0.02 0.54 +matafs mataf nom m p 0.13 0.61 0.11 0.07 +mataient mater ver 17.27 14.93 0.04 0.20 ind:imp:3p; +matais mater ver 17.27 14.93 0.52 0.54 ind:imp:1s;ind:imp:2s; +matait mater ver 17.27 14.93 0.64 0.61 ind:imp:3s; +matamore matamore nom m s 0.27 0.61 0.14 0.27 +matamores matamore nom m p 0.27 0.61 0.14 0.34 +matant mater ver 17.27 14.93 0.10 0.41 par:pre; +match match nom m s 63.48 10.00 58.26 9.39 +matcha matcher ver 0.01 0.07 0.00 0.07 ind:pas:3s; +matche matcher ver 0.01 0.07 0.01 0.00 ind:pre:3s; +matches matche nom m p 1.42 1.42 1.42 1.42 +matchiche matchiche nom f s 0.00 0.20 0.00 0.20 +matchs match nom m p 63.48 10.00 5.22 0.61 +mate mater ver 17.27 14.93 4.55 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +matelas matelas nom m 8.98 25.95 8.98 25.95 +matelassent matelasser ver 0.00 1.01 0.00 0.07 ind:pre:3p; +matelasser matelasser ver 0.00 1.01 0.00 0.07 inf; +matelassier matelassier nom m s 0.00 0.41 0.00 0.20 +matelassiers matelassier nom m p 0.00 0.41 0.00 0.07 +matelassière matelassier nom f s 0.00 0.41 0.00 0.07 +matelassières matelassier nom f p 0.00 0.41 0.00 0.07 +matelassé matelassé adj m s 0.15 0.47 0.14 0.14 +matelassée matelassé adj f s 0.15 0.47 0.01 0.34 +matelassées matelasser ver f p 0.00 1.01 0.00 0.20 par:pas; +matelassés matelasser ver m p 0.00 1.01 0.00 0.07 par:pas; +matelot matelot nom m s 7.04 6.96 4.78 4.26 +matelote matelote nom f s 0.04 0.20 0.04 0.20 +matelots matelot nom m p 7.04 6.96 2.27 2.70 +matent mater ver 17.27 14.93 0.51 0.41 ind:pre:3p; +mater_dolorosa mater_dolorosa nom f 0.00 0.47 0.00 0.47 +mater mater ver 17.27 14.93 5.91 6.22 inf; +matera mater ver 17.27 14.93 0.16 0.07 ind:fut:3s; +materai mater ver 17.27 14.93 0.17 0.07 ind:fut:1s; +materais mater ver 17.27 14.93 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +materait mater ver 17.27 14.93 0.01 0.14 cnd:pre:3s; +maternage maternage nom m s 0.04 0.00 0.04 0.00 +maternalisme maternalisme nom m s 0.00 0.20 0.00 0.20 +maternant materner ver 0.68 0.14 0.01 0.00 par:pre; +maternel maternel adj m s 5.21 23.72 2.71 8.99 +maternelle maternel nom f s 3.17 2.43 3.17 2.30 +maternellement maternellement adv 0.00 0.54 0.00 0.54 +maternelles maternel adj f p 5.21 23.72 0.35 1.76 +maternels maternel adj m p 5.21 23.72 0.24 1.82 +materner materner ver 0.68 0.14 0.52 0.14 inf; +maternera materner ver 0.68 0.14 0.11 0.00 ind:fut:3s; +materniser materniser ver 0.30 0.00 0.01 0.00 inf; +maternisé materniser ver m s 0.30 0.00 0.29 0.00 par:pas; +maternité maternité nom f s 3.49 4.73 3.47 4.05 +maternités maternité nom f p 3.49 4.73 0.03 0.68 +materné materner ver m s 0.68 0.14 0.04 0.00 par:pas; +materons mater ver 17.27 14.93 0.01 0.14 ind:fut:1p; +materont mater ver 17.27 14.93 0.00 0.07 ind:fut:3p; +mates mater ver 17.27 14.93 1.56 0.41 ind:pre:2s; +mateur mateur nom m s 0.37 0.27 0.11 0.07 +mateurs mateur nom m p 0.37 0.27 0.20 0.14 +mateuse mateur nom f s 0.37 0.27 0.06 0.07 +matez mater ver 17.27 14.93 1.40 0.34 imp:pre:2p;ind:pre:2p; +math math nom f p 1.55 0.74 1.55 0.74 +matheuse matheux nom f s 0.10 0.27 0.02 0.07 +matheux matheux nom m 0.10 0.27 0.08 0.20 +maçon maçon nom m s 3.79 6.76 3.48 3.31 +maçonnant maçonner ver 0.01 1.69 0.00 0.14 par:pre; +maçonne maçon nom f s 3.79 6.76 0.00 0.14 +maçonnent maçonner ver 0.01 1.69 0.00 0.07 ind:pre:3p; +maçonner maçonner ver 0.01 1.69 0.00 0.07 inf; +maçonnerie maçonnerie nom f s 0.69 3.04 0.69 2.97 +maçonneries maçonnerie nom f p 0.69 3.04 0.00 0.07 +maçonnique maçonnique adj s 0.35 0.74 0.32 0.34 +maçonniques maçonnique adj p 0.35 0.74 0.04 0.41 +maçonné maçonner ver m s 0.01 1.69 0.00 0.54 par:pas; +maçonnée maçonner ver f s 0.01 1.69 0.00 0.20 par:pas; +maçonnées maçonner ver f p 0.01 1.69 0.00 0.47 par:pas; +maçonnés maçonner ver m p 0.01 1.69 0.01 0.20 par:pas; +maçons maçon nom m p 3.79 6.76 0.32 3.31 +maths maths nom f p 10.66 3.38 10.66 3.38 +mathématicien mathématicien nom m s 0.96 0.68 0.65 0.54 +mathématicienne mathématicien nom f s 0.96 0.68 0.02 0.07 +mathématiciens mathématicien nom m p 0.96 0.68 0.28 0.07 +mathématique mathématique adj s 1.78 2.36 1.27 1.42 +mathématiquement mathématiquement adv 0.35 0.34 0.35 0.34 +mathématiques mathématique nom f p 1.80 7.03 1.64 5.68 +mathématiser mathématiser ver 0.00 0.07 0.00 0.07 inf; +mathurins mathurin nom m p 0.00 0.07 0.00 0.07 +mathusalems mathusalem nom m p 0.00 0.07 0.00 0.07 +mati mati adj m s 0.18 0.00 0.18 0.00 +matiez mater ver 17.27 14.93 0.03 0.00 ind:imp:2p; +matin matin nom m s 275.01 396.76 265.03 376.89 +matinal matinal adj m s 5.81 10.74 2.56 3.78 +matinale matinal adj f s 5.81 10.74 2.51 5.20 +matinalement matinalement adv 0.00 0.14 0.00 0.14 +matinales matinal adj f p 5.81 10.74 0.42 0.95 +matinaux matinal adj m p 5.81 10.74 0.32 0.81 +matines mâtine nom f p 0.57 1.22 0.56 1.01 +matineux matineux adj m p 0.00 0.14 0.00 0.14 +matins matin nom m p 275.01 396.76 9.98 19.86 +matinée matinée nom f s 12.51 34.05 12.10 32.23 +matinées matinée nom f p 12.51 34.05 0.41 1.82 +matis matir ver m p 0.20 0.14 0.00 0.07 par:pas; +matisse matir ver 0.20 0.14 0.19 0.07 sub:pre:1s;sub:pre:3s; +matière matière nom f s 16.99 58.45 14.20 49.80 +matières matière nom f p 16.99 58.45 2.79 8.65 +matité matité nom f s 0.00 0.54 0.00 0.54 +matois matois nom m 0.01 0.07 0.01 0.07 +matoise matois adj f s 0.00 0.41 0.00 0.07 +matoiserie matoiserie nom f s 0.00 0.14 0.00 0.14 +maton maton nom m s 1.41 6.08 0.50 3.11 +matonne maton nom f s 1.41 6.08 0.00 0.14 +matonnes maton nom f p 1.41 6.08 0.00 0.27 +matons maton nom m p 1.41 6.08 0.91 2.57 +matos matos nom m 5.72 1.55 5.72 1.55 +matou matou nom m s 1.21 4.12 1.04 3.18 +matous matou nom m p 1.21 4.12 0.17 0.95 +matouse matouser ver 0.00 0.20 0.00 0.07 ind:pre:3s; +matouser matouser ver 0.00 0.20 0.00 0.14 inf; +matraqua matraquer ver 0.59 1.49 0.00 0.14 ind:pas:3s; +matraquage matraquage nom m s 0.14 0.14 0.14 0.07 +matraquages matraquage nom m p 0.14 0.14 0.00 0.07 +matraquaient matraquer ver 0.59 1.49 0.00 0.07 ind:imp:3p; +matraquais matraquer ver 0.59 1.49 0.00 0.07 ind:imp:1s; +matraquait matraquer ver 0.59 1.49 0.01 0.07 ind:imp:3s; +matraquant matraquer ver 0.59 1.49 0.00 0.20 par:pre; +matraque matraque nom f s 1.80 5.41 1.41 4.46 +matraquer matraquer ver 0.59 1.49 0.11 0.14 inf; +matraques matraque nom f p 1.80 5.41 0.39 0.95 +matraqueur matraqueur nom m s 0.01 0.07 0.00 0.07 +matraqueurs matraqueur nom m p 0.01 0.07 0.01 0.00 +matraquez matraquer ver 0.59 1.49 0.15 0.07 imp:pre:2p;ind:pre:2p; +matraqué matraquer ver m s 0.59 1.49 0.23 0.34 par:pas; +matraquée matraquer ver f s 0.59 1.49 0.04 0.14 par:pas; +matraqués matraquer ver m p 0.59 1.49 0.00 0.07 par:pas; +matras matras nom m 0.00 0.47 0.00 0.47 +matriarcal matriarcal adj m s 0.01 0.41 0.01 0.14 +matriarcale matriarcal adj f s 0.01 0.41 0.00 0.20 +matriarcales matriarcal adj f p 0.01 0.41 0.00 0.07 +matriarcat matriarcat nom m s 0.14 0.74 0.14 0.74 +matriarche matriarche nom f s 0.09 0.00 0.09 0.00 +matrice matrice nom f s 2.16 2.03 2.00 1.96 +matrices matrice nom f p 2.16 2.03 0.16 0.07 +matricide matricide nom s 0.01 0.00 0.01 0.00 +matriciel matriciel adj m s 0.02 0.27 0.01 0.07 +matricielle matriciel adj f s 0.02 0.27 0.01 0.07 +matricielles matriciel adj f p 0.02 0.27 0.00 0.07 +matriciels matriciel adj m p 0.02 0.27 0.00 0.07 +matriculaire matriculaire nom s 0.00 0.07 0.00 0.07 +matricule matricule nom s 3.49 3.38 3.15 2.84 +matricules matricule nom p 3.49 3.38 0.34 0.54 +matrilinéaire matrilinéaire adj s 0.00 0.20 0.00 0.14 +matrilinéaires matrilinéaire adj f p 0.00 0.20 0.00 0.07 +matrilocales matrilocal adj f p 0.00 0.07 0.00 0.07 +matrimonial matrimonial adj m s 1.40 1.28 0.69 0.54 +matrimoniale matrimonial adj f s 1.40 1.28 0.17 0.47 +matrimoniales matrimonial adj f p 1.40 1.28 0.40 0.27 +matrimoniaux matrimonial adj m p 1.40 1.28 0.13 0.00 +matriochka matriochka nom f s 0.00 0.07 0.00 0.07 +matrone matrone nom f s 0.36 3.72 0.23 2.16 +matrones matrone nom f p 0.36 3.72 0.14 1.55 +mats mat nom m p 6.84 4.32 0.35 0.14 +matte matte nom f s 0.52 0.07 0.35 0.07 +matter matter ver 0.64 0.07 0.64 0.07 inf; +mattes matte nom f p 0.52 0.07 0.16 0.00 +matèrent mater ver 17.27 14.93 0.00 0.14 ind:pas:3p; +maté maté nom m s 1.62 0.20 1.62 0.14 +matuche matuche nom m s 0.00 0.41 0.00 0.41 +matée mater ver f s 17.27 14.93 0.20 0.07 par:pas; +matées mater ver f p 17.27 14.93 0.16 0.14 par:pas; +maturation maturation nom f s 0.07 0.68 0.07 0.54 +maturations maturation nom f p 0.07 0.68 0.00 0.14 +mature mature adj s 1.83 0.00 1.65 0.00 +maturer maturer ver 0.00 0.07 0.00 0.07 inf; +matures mature adj p 1.83 0.00 0.17 0.00 +matérialisa matérialiser ver 1.05 4.32 0.00 0.20 ind:pas:3s; +matérialisaient matérialiser ver 1.05 4.32 0.01 0.07 ind:imp:3p; +matérialisait matérialiser ver 1.05 4.32 0.01 0.47 ind:imp:3s; +matérialisant matérialiser ver 1.05 4.32 0.04 0.14 par:pre; +matérialisation matérialisation nom f s 0.17 0.54 0.15 0.54 +matérialisations matérialisation nom f p 0.17 0.54 0.02 0.00 +matérialise matérialiser ver 1.05 4.32 0.25 0.61 ind:pre:1s;ind:pre:3s; +matérialisent matérialiser ver 1.05 4.32 0.05 0.14 ind:pre:3p; +matérialiser matérialiser ver 1.05 4.32 0.34 0.74 inf; +matérialisera matérialiser ver 1.05 4.32 0.00 0.07 ind:fut:3s; +matérialiseront matérialiser ver 1.05 4.32 0.01 0.00 ind:fut:3p; +matérialisions matérialiser ver 1.05 4.32 0.00 0.07 ind:imp:1p; +matérialisme matérialisme nom m s 0.38 1.49 0.38 1.49 +matérialiste matérialiste adj s 0.82 0.88 0.65 0.61 +matérialistes matérialiste adj p 0.82 0.88 0.17 0.27 +matérialisèrent matérialiser ver 1.05 4.32 0.00 0.07 ind:pas:3p; +matérialisé matérialiser ver m s 1.05 4.32 0.17 0.34 par:pas; +matérialisée matérialiser ver f s 1.05 4.32 0.13 0.68 par:pas; +matérialisées matérialiser ver f p 1.05 4.32 0.01 0.27 par:pas; +matérialisés matérialiser ver m p 1.05 4.32 0.02 0.47 par:pas; +matérialité matérialité nom f s 0.01 0.47 0.01 0.47 +matériau matériau nom m s 3.78 5.14 0.95 1.62 +matériaux matériau nom m p 3.78 5.14 2.83 3.51 +matériel matériel nom m s 25.26 26.22 25.15 25.47 +matérielle matériel adj f s 5.54 16.89 1.17 5.14 +matériellement matériellement adv 0.31 3.04 0.31 3.04 +matérielles matériel adj f p 5.54 16.89 0.45 3.31 +matériels matériel adj m p 5.54 16.89 1.38 3.45 +maturité maturité nom f s 2.61 5.00 2.61 5.00 +matés mater ver m p 17.27 14.93 0.05 0.34 par:pas; +matutinal matutinal adj m s 0.00 0.34 0.00 0.07 +matutinale matutinal adj f s 0.00 0.34 0.00 0.14 +matutinales matutinal adj f p 0.00 0.34 0.00 0.07 +matutinaux matutinal adj m p 0.00 0.34 0.00 0.07 +maudira maudire ver 7.97 10.47 0.14 0.00 ind:fut:3s; +maudirai maudire ver 7.97 10.47 0.05 0.34 ind:fut:1s; +maudirais maudire ver 7.97 10.47 0.01 0.00 cnd:pre:2s; +maudirait maudire ver 7.97 10.47 0.21 0.07 cnd:pre:3s; +maudire maudire ver 7.97 10.47 1.65 2.64 inf; +maudirent maudire ver 7.97 10.47 0.00 0.07 ind:pas:3p; +maudirons maudire ver 7.97 10.47 0.01 0.00 ind:fut:1p; +maudiront maudire ver 7.97 10.47 0.02 0.00 ind:fut:3p; +maudis maudire ver m p 7.97 10.47 3.36 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +maudissaient maudire ver 7.97 10.47 0.01 0.20 ind:imp:3p; +maudissais maudire ver 7.97 10.47 0.04 0.47 ind:imp:1s;ind:imp:2s; +maudissait maudire ver 7.97 10.47 0.25 1.55 ind:imp:3s; +maudissant maudire ver 7.97 10.47 0.21 2.23 par:pre; +maudisse maudire ver 7.97 10.47 0.95 0.14 sub:pre:1s;sub:pre:3s; +maudissent maudire ver 7.97 10.47 0.26 0.20 ind:pre:3p; +maudissez maudire ver 7.97 10.47 0.20 0.14 imp:pre:2p;ind:pre:2p; +maudissions maudire ver 7.97 10.47 0.00 0.20 ind:imp:1p; +maudit maudit adj m s 37.18 17.50 17.59 7.43 +maudite maudit adj f s 37.18 17.50 12.65 5.47 +maudites maudit adj f p 37.18 17.50 1.71 1.42 +maudits maudit adj m p 37.18 17.50 5.23 3.18 +maugréa maugréer ver 0.29 5.41 0.00 1.15 ind:pas:3s; +maugréai maugréer ver 0.29 5.41 0.00 0.14 ind:pas:1s; +maugréaient maugréer ver 0.29 5.41 0.00 0.14 ind:imp:3p; +maugréait maugréer ver 0.29 5.41 0.00 0.61 ind:imp:3s; +maugréant maugréer ver 0.29 5.41 0.00 2.57 par:pre; +maugrée maugréer ver 0.29 5.41 0.27 0.27 imp:pre:2s;ind:pre:3s; +maugréer maugréer ver 0.29 5.41 0.03 0.54 inf; +maure maure adj s 1.11 0.81 0.90 0.41 +maures maure nom p 0.96 1.15 0.31 0.14 +mauresque mauresque adj s 0.12 2.91 0.12 2.09 +mauresques mauresque adj p 0.12 2.91 0.00 0.81 +mauricienne mauricien adj f s 0.00 0.07 0.00 0.07 +mauritanienne mauritanien adj f s 0.00 0.07 0.00 0.07 +maurrassien maurrassien nom m s 0.00 0.14 0.00 0.14 +maurrassisme maurrassisme nom m s 0.00 0.07 0.00 0.07 +mauser mauser nom m s 0.57 3.04 0.56 2.09 +mausers mauser nom m p 0.57 3.04 0.01 0.95 +mausolée mausolée nom m s 1.66 3.11 1.64 2.91 +mausolées mausolée nom m p 1.66 3.11 0.02 0.20 +maussade maussade adj s 1.09 7.97 1.04 6.82 +maussadement maussadement adv 0.00 0.27 0.00 0.27 +maussaderie maussaderie nom f s 0.00 0.34 0.00 0.27 +maussaderies maussaderie nom f p 0.00 0.34 0.00 0.07 +maussades maussade adj p 1.09 7.97 0.05 1.15 +mauvais mauvais adj m 252.69 200.61 138.04 108.65 +mauvaise mauvais adj f s 252.69 200.61 88.33 70.88 +mauvaisement mauvaisement adv 0.00 0.27 0.00 0.27 +mauvaises mauvais adj f p 252.69 200.61 26.32 21.08 +mauvaiseté mauvaiseté nom f s 0.00 0.20 0.00 0.20 +mauve mauve adj s 0.70 17.64 0.63 10.68 +mauves mauve adj p 0.70 17.64 0.07 6.96 +mauviette mauviette nom f s 4.86 0.88 3.49 0.61 +mauviettes mauviette nom f p 4.86 0.88 1.37 0.27 +maux mal nom_sup m p 326.58 193.92 8.31 8.78 +max max nom m s 5.94 2.30 5.94 2.30 +maxi maxi adj 1.71 0.27 1.71 0.27 +maxillaire maxillaire nom m s 0.27 1.76 0.25 0.54 +maxillaires maxillaire adj f p 0.08 0.14 0.05 0.07 +maxillo_facial maxillo_facial adj m s 0.01 0.00 0.01 0.00 +maxima maximum nom m p 14.79 15.81 0.22 0.41 +maximal maximal adj m s 3.04 0.61 0.34 0.20 +maximale maximal adj f s 3.04 0.61 2.53 0.41 +maximales maximal adj f p 3.04 0.61 0.16 0.00 +maximalise maximaliser ver 0.03 0.00 0.01 0.00 ind:pre:3s; +maximaliser maximaliser ver 0.03 0.00 0.02 0.00 inf; +maximalisme maximalisme nom m s 0.00 0.14 0.00 0.14 +maxime maxime nom f s 0.67 2.09 0.64 1.22 +maximes maxime nom f p 0.67 2.09 0.03 0.88 +maximisation maximisation nom f s 0.01 0.00 0.01 0.00 +maximiser maximiser ver 0.26 0.00 0.26 0.00 inf; +maximum maximum nom m s 14.79 15.81 14.55 15.34 +maximums maximum adj m p 5.80 1.96 0.04 0.00 +maxis maxi nom m p 0.58 0.95 0.04 0.00 +maxiton maxiton nom m s 0.00 0.14 0.00 0.14 +maya maya adj s 0.56 0.20 0.44 0.20 +mayas maya adj p 0.56 0.20 0.12 0.00 +mayo mayo nom f s 0.77 0.00 0.77 0.00 +mayonnaise mayonnaise nom f s 3.64 3.45 3.63 3.45 +mayonnaises mayonnaise nom f p 3.64 3.45 0.01 0.00 +mazagran mazagran nom m s 0.00 0.20 0.00 0.07 +mazagrans mazagran nom m p 0.00 0.20 0.00 0.14 +mazas mazer ver 0.01 0.27 0.00 0.07 ind:pas:2s; +mazdéens mazdéen adj m p 0.00 0.07 0.00 0.07 +maze mazer ver 0.01 0.27 0.01 0.14 imp:pre:2s;ind:pre:3s; +mazet mazet nom m s 0.00 0.41 0.00 0.41 +mazette mazette ono 0.32 0.81 0.32 0.81 +mazettes mazette nom_sup f p 0.02 0.07 0.01 0.00 +mazout mazout nom m s 1.42 2.64 1.42 2.64 +mazouté mazouter ver m s 0.00 0.07 0.00 0.07 par:pas; +mazoutés mazouté adj m p 0.00 0.14 0.00 0.14 +mazé mazer ver m s 0.01 0.27 0.00 0.07 par:pas; +mazurka mazurka nom f s 0.58 0.41 0.58 0.34 +mazurkas mazurka nom f p 0.58 0.41 0.00 0.07 +me me pro_per s 4929.44 4264.32 4929.44 4264.32 +mea_culpa mea_culpa nom m 0.07 0.14 0.07 0.14 +mea_culpa mea_culpa nom m 0.70 0.68 0.70 0.68 +mec mec nom m s 325.54 72.30 252.94 50.41 +meccano meccano nom m s 0.29 1.01 0.29 0.95 +meccanos meccano nom m p 0.29 1.01 0.00 0.07 +mechta mechta nom f s 0.00 0.34 0.00 0.14 +mechtas mechta nom f p 0.00 0.34 0.00 0.20 +mecklembourgeois mecklembourgeois nom m 0.00 0.07 0.00 0.07 +mecs mec nom m p 325.54 72.30 72.61 21.89 +mecton mecton nom m s 0.03 0.74 0.03 0.27 +mectons mecton nom m p 0.03 0.74 0.00 0.47 +media media nom f s 7.72 0.07 7.72 0.07 +medicine_ball medicine_ball nom m s 0.00 0.07 0.00 0.07 +medium medium nom m s 0.59 0.07 0.59 0.07 +meeting meeting nom m s 4.23 6.82 3.49 4.73 +meetings meeting nom m p 4.23 6.82 0.74 2.09 +meiji meiji adj m s 0.02 0.07 0.02 0.07 +meilleur meilleur adj m s 221.17 86.82 99.59 34.32 +meilleure meilleur adj f s 221.17 86.82 73.69 24.86 +meilleures meilleur adj f p 221.17 86.82 15.25 10.41 +meilleurs meilleur adj m p 221.17 86.82 32.64 17.23 +melba melba adj 0.03 0.20 0.03 0.20 +melkites melkite nom p 0.00 0.14 0.00 0.14 +melliflues melliflue adj f p 0.00 0.07 0.00 0.07 +mellifère mellifère adj s 0.00 0.07 0.00 0.07 +mellifères mellifère nom m p 0.00 0.07 0.00 0.07 +melon melon nom m s 7.11 6.96 4.92 5.20 +melons melon nom m p 7.11 6.96 2.19 1.76 +melting_pot melting_pot nom m s 0.14 0.07 0.13 0.00 +melting_pot melting_pot nom m s 0.14 0.07 0.01 0.07 +membranaire membranaire adj f s 0.01 0.00 0.01 0.00 +membrane membrane nom f s 1.23 2.97 0.89 1.69 +membranes membrane nom f p 1.23 2.97 0.34 1.28 +membraneuse membraneux adj f s 0.01 0.34 0.00 0.07 +membraneuses membraneux adj f p 0.01 0.34 0.01 0.14 +membraneux membraneux adj m 0.01 0.34 0.00 0.14 +membre membre nom m s 56.06 64.86 26.72 15.20 +membres membre nom m p 56.06 64.86 29.34 49.66 +membré membré adj m s 0.05 0.07 0.05 0.07 +membrues membru adj f p 0.00 0.07 0.00 0.07 +membrure membrure nom f s 0.03 0.61 0.02 0.34 +membrures membrure nom f p 0.03 0.61 0.01 0.27 +mena mener ver 99.86 137.70 0.40 3.85 ind:pas:3s; +menace menace nom f s 30.36 44.12 21.07 26.01 +menacent menacer ver 49.61 52.57 2.46 2.50 ind:pre:3p; +menacer menacer ver 49.61 52.57 5.33 5.34 inf; +menacera menacer ver 49.61 52.57 0.09 0.07 ind:fut:3s; +menaceraient menacer ver 49.61 52.57 0.04 0.00 cnd:pre:3p; +menacerait menacer ver 49.61 52.57 0.10 0.27 cnd:pre:3s; +menaceras menacer ver 49.61 52.57 0.01 0.00 ind:fut:2s; +menaceriez menacer ver 49.61 52.57 0.03 0.00 cnd:pre:2p; +menaceront menacer ver 49.61 52.57 0.15 0.14 ind:fut:3p; +menaces menace nom f p 30.36 44.12 9.28 18.11 +menacez menacer ver 49.61 52.57 1.41 0.20 imp:pre:2p;ind:pre:2p; +menaciez menacer ver 49.61 52.57 0.25 0.00 ind:imp:2p; +menacions menacer ver 49.61 52.57 0.01 0.07 ind:imp:1p; +menacèrent menacer ver 49.61 52.57 0.01 0.20 ind:pas:3p; +menacé menacer ver m s 49.61 52.57 14.44 7.84 par:pas; +menacée menacer ver f s 49.61 52.57 4.83 4.05 par:pas; +menacées menacer ver f p 49.61 52.57 0.50 0.95 par:pas; +menacés menacer ver m p 49.61 52.57 1.44 2.30 par:pas; +menai mener ver 99.86 137.70 0.02 0.20 ind:pas:1s; +menaient mener ver 99.86 137.70 0.49 6.96 ind:imp:3p; +menais mener ver 99.86 137.70 0.70 2.30 ind:imp:1s;ind:imp:2s; +menait mener ver 99.86 137.70 2.56 24.80 ind:imp:3s; +menant mener ver 99.86 137.70 1.68 7.03 par:pre; +menassent mener ver 99.86 137.70 0.00 0.07 sub:imp:3p; +menaça menacer ver 49.61 52.57 0.16 1.82 ind:pas:3s; +menaçaient menacer ver 49.61 52.57 1.07 3.04 ind:imp:3p; +menaçais menacer ver 49.61 52.57 0.34 0.34 ind:imp:1s;ind:imp:2s; +menaçait menacer ver 49.61 52.57 2.95 10.07 ind:imp:3s; +menaçant menaçant adj m s 3.56 16.69 1.76 7.09 +menaçante menaçant adj f s 3.56 16.69 1.33 5.61 +menaçantes menaçant adj f p 3.56 16.69 0.06 1.28 +menaçants menaçant adj m p 3.56 16.69 0.41 2.70 +menaçons menacer ver 49.61 52.57 0.19 0.00 ind:pre:1p; +menaçât menacer ver 49.61 52.57 0.01 0.07 sub:imp:3s; +mencheviks menchevik nom p 0.00 0.07 0.00 0.07 +mendia mendier ver 4.07 6.49 0.01 0.00 ind:pas:3s; +mendiaient mendier ver 4.07 6.49 0.01 0.34 ind:imp:3p; +mendiais mendier ver 4.07 6.49 0.27 0.07 ind:imp:1s;ind:imp:2s; +mendiait mendier ver 4.07 6.49 0.24 0.68 ind:imp:3s; +mendiant mendiant nom m s 6.86 11.76 3.44 5.20 +mendiante mendiant nom f s 6.86 11.76 0.34 0.95 +mendiantes mendiant nom f p 6.86 11.76 0.00 0.14 +mendiants mendiant nom m p 6.86 11.76 3.07 5.47 +mendicité mendicité nom f s 0.44 0.95 0.44 0.88 +mendicités mendicité nom f p 0.44 0.95 0.00 0.07 +mendie mendier ver 4.07 6.49 0.61 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mendient mendier ver 4.07 6.49 0.23 0.14 ind:pre:3p; +mendier mendier ver 4.07 6.49 2.07 3.11 inf; +mendierait mendier ver 4.07 6.49 0.00 0.07 cnd:pre:3s; +mendieras mendier ver 4.07 6.49 0.00 0.07 ind:fut:2s; +mendies mendier ver 4.07 6.49 0.01 0.00 ind:pre:2s; +mendiez mendier ver 4.07 6.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +mendigot mendigot nom m s 0.30 0.81 0.30 0.07 +mendigotant mendigoter ver 0.00 0.14 0.00 0.07 par:pre; +mendigote mendigot nom f s 0.30 0.81 0.00 0.07 +mendigoter mendigoter ver 0.00 0.14 0.00 0.07 inf; +mendigots mendigot nom m p 0.30 0.81 0.00 0.68 +mendions mendier ver 4.07 6.49 0.10 0.07 ind:pre:1p; +mendié mendier ver m s 4.07 6.49 0.10 0.34 par:pas; +mendiée mendier ver f s 4.07 6.49 0.00 0.07 par:pas; +mendiées mendier ver f p 4.07 6.49 0.00 0.07 par:pas; +mendé mendé adj s 0.01 0.00 0.01 0.00 +meneau meneau nom m s 2.18 0.54 0.00 0.07 +meneaux meneau nom m p 2.18 0.54 2.18 0.47 +mener mener ver 99.86 137.70 22.45 29.53 inf;; +meneur meneur nom m s 2.94 3.51 1.67 2.03 +meneurs meneur nom m p 2.94 3.51 0.69 1.35 +meneuse meneur nom f s 2.94 3.51 0.59 0.14 +menez mener ver 99.86 137.70 2.96 0.41 imp:pre:2p;ind:pre:2p; +menhaden menhaden nom m s 0.01 0.00 0.01 0.00 +menhir menhir nom m s 0.41 0.68 0.41 0.20 +menhirs menhir nom m p 0.41 0.68 0.00 0.47 +meniez mener ver 99.86 137.70 0.22 0.00 ind:imp:2p;sub:pre:2p; +menions mener ver 99.86 137.70 0.06 0.88 ind:imp:1p; +mennonite mennonite nom m s 0.09 0.14 0.04 0.07 +mennonites mennonite nom m p 0.09 0.14 0.05 0.07 +menon menon nom m s 0.03 0.07 0.02 0.00 +menons mener ver 99.86 137.70 1.20 0.81 imp:pre:1p;ind:pre:1p; +menora menora nom f s 0.03 0.00 0.03 0.00 +menât mener ver 99.86 137.70 0.00 0.20 sub:imp:3s; +menotte menotte nom f s 11.65 7.84 0.78 0.61 +menotter menotter ver 2.65 0.27 0.31 0.00 inf; +menottes menotte nom f p 11.65 7.84 10.88 7.23 +menottez menotter ver 2.65 0.27 0.83 0.00 imp:pre:2p;ind:pre:2p; +menotté menotter ver m s 2.65 0.27 1.06 0.27 par:pas; +menottée menotter ver f s 2.65 0.27 0.28 0.00 par:pas; +menottés menotter ver m p 2.65 0.27 0.17 0.00 par:pas; +mens mentir ver 185.16 52.03 42.12 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mensonge mensonge nom m s 61.05 35.41 33.64 21.89 +mensonger mensonger adj m s 1.29 1.96 0.29 0.47 +mensongers mensonger adj m p 1.29 1.96 0.14 0.14 +mensonges mensonge nom m p 61.05 35.41 27.41 13.51 +mensongère mensonger adj f s 1.29 1.96 0.48 0.81 +mensongèrement mensongèrement adv 0.00 0.20 0.00 0.20 +mensongères mensonger adj f p 1.29 1.96 0.38 0.54 +menstruation menstruation nom f s 0.40 0.00 0.28 0.00 +menstruations menstruation nom f p 0.40 0.00 0.13 0.00 +menstruel menstruel adj m s 0.29 0.54 0.22 0.27 +menstruelle menstruel adj f s 0.29 0.54 0.01 0.07 +menstruelles menstruel adj f p 0.29 0.54 0.02 0.14 +menstruels menstruel adj m p 0.29 0.54 0.04 0.07 +menstrues menstrue nom f p 0.00 0.14 0.00 0.14 +mensualité mensualité nom f s 0.72 1.01 0.15 0.81 +mensualités mensualité nom f p 0.72 1.01 0.56 0.20 +mensuel mensuel adj m s 2.13 2.50 0.73 0.81 +mensuelle mensuel adj f s 2.13 2.50 0.87 0.88 +mensuellement mensuellement adv 0.01 0.14 0.01 0.14 +mensuelles mensuel adj f p 2.13 2.50 0.23 0.34 +mensuels mensuel adj m p 2.13 2.50 0.30 0.47 +mensuration mensuration nom f s 0.58 1.42 0.00 0.20 +mensurations mensuration nom f p 0.58 1.42 0.58 1.22 +ment mentir ver 185.16 52.03 24.08 5.81 ind:pre:3s; +mentît mentir ver 185.16 52.03 0.00 0.14 sub:imp:3s; +mentaient mentir ver 185.16 52.03 0.44 0.88 ind:imp:3p; +mentais mentir ver 185.16 52.03 3.64 1.55 ind:imp:1s;ind:imp:2s; +mentait mentir ver 185.16 52.03 2.54 5.88 ind:imp:3s; +mental mental adj m s 18.15 11.35 5.84 4.05 +mentale mental adj f s 18.15 11.35 6.92 4.80 +mentalement mentalement adv 4.37 6.42 4.37 6.42 +mentales mental adj f p 18.15 11.35 1.68 1.01 +mentaliser mentaliser ver 0.00 0.07 0.00 0.07 inf; +mentalité mentalité nom f s 2.79 5.95 2.15 5.27 +mentalités mentalité nom f p 2.79 5.95 0.64 0.68 +mentant mentir ver 185.16 52.03 0.72 0.54 par:pre; +mentaux mental adj m p 18.15 11.35 3.71 1.49 +mente mentir ver 185.16 52.03 1.94 0.41 sub:pre:1s;sub:pre:3s; +mentent mentir ver 185.16 52.03 5.57 1.15 ind:pre:3p; +menterie menterie nom f s 0.12 0.74 0.10 0.14 +menteries menterie nom f p 0.12 0.74 0.02 0.61 +mentes mentir ver 185.16 52.03 0.32 0.00 sub:pre:2s; +menteur menteur nom m s 36.31 5.34 23.57 3.38 +menteurs menteur nom m p 36.31 5.34 4.46 1.01 +menteuse menteur nom f s 36.31 5.34 8.28 0.95 +menteuses menteur adj f p 8.49 4.80 0.36 0.27 +mentez mentir ver 185.16 52.03 10.29 1.22 imp:pre:2p;ind:pre:2p; +menthe menthe nom f s 5.51 9.53 5.21 9.39 +menthes menthe nom f p 5.51 9.53 0.30 0.14 +menthol menthol nom m s 0.44 0.41 0.36 0.34 +menthols menthol nom m p 0.44 0.41 0.08 0.07 +mentholé mentholé adj m s 0.19 0.34 0.04 0.00 +mentholée mentholé adj f s 0.19 0.34 0.10 0.20 +mentholées mentholé adj f p 0.19 0.34 0.04 0.14 +mentholés mentholé nom m p 0.03 0.00 0.01 0.00 +menèrent mener ver 99.86 137.70 0.09 0.88 ind:pas:3p; +menti mentir ver m s 185.16 52.03 47.32 9.59 par:pas; +mentiez mentir ver 185.16 52.03 0.61 0.20 ind:imp:2p; +mention mention nom f s 4.27 6.01 4.03 5.54 +mentionna mentionner ver 15.61 9.32 0.10 0.61 ind:pas:3s; +mentionnai mentionner ver 15.61 9.32 0.00 0.07 ind:pas:1s; +mentionnaient mentionner ver 15.61 9.32 0.03 0.47 ind:imp:3p; +mentionnais mentionner ver 15.61 9.32 0.10 0.07 ind:imp:1s;ind:imp:2s; +mentionnait mentionner ver 15.61 9.32 0.33 1.01 ind:imp:3s; +mentionnant mentionner ver 15.61 9.32 0.05 0.47 par:pre; +mentionne mentionner ver 15.61 9.32 2.33 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mentionnent mentionner ver 15.61 9.32 0.64 0.27 ind:pre:3p; +mentionner mentionner ver 15.61 9.32 2.86 2.03 inf; +mentionnerai mentionner ver 15.61 9.32 0.11 0.14 ind:fut:1s; +mentionnerais mentionner ver 15.61 9.32 0.01 0.07 cnd:pre:1s; +mentionnerait mentionner ver 15.61 9.32 0.14 0.00 cnd:pre:3s; +mentionneras mentionner ver 15.61 9.32 0.02 0.00 ind:fut:2s; +mentionnerez mentionner ver 15.61 9.32 0.04 0.00 ind:fut:2p; +mentionnes mentionner ver 15.61 9.32 0.14 0.00 ind:pre:2s; +mentionnez mentionner ver 15.61 9.32 0.70 0.00 imp:pre:2p;ind:pre:2p; +mentionniez mentionner ver 15.61 9.32 0.07 0.00 ind:imp:2p; +mentionnons mentionner ver 15.61 9.32 0.11 0.07 imp:pre:1p; +mentionnât mentionner ver 15.61 9.32 0.01 0.00 sub:imp:3s; +mentionné mentionner ver m s 15.61 9.32 6.56 2.36 par:pas; +mentionnée mentionner ver f s 15.61 9.32 0.42 0.61 par:pas; +mentionnées mentionner ver f p 15.61 9.32 0.39 0.34 par:pas; +mentionnés mentionner ver m p 15.61 9.32 0.45 0.20 par:pas; +mentions mention nom f p 4.27 6.01 0.24 0.47 +mentir mentir ver 185.16 52.03 37.01 15.20 inf; +mentira mentir ver 185.16 52.03 0.51 0.07 ind:fut:3s; +mentirai mentir ver 185.16 52.03 1.60 0.14 ind:fut:1s; +mentiraient mentir ver 185.16 52.03 0.30 0.14 cnd:pre:3p; +mentirais mentir ver 185.16 52.03 3.47 1.35 cnd:pre:1s;cnd:pre:2s; +mentirait mentir ver 185.16 52.03 1.55 0.07 cnd:pre:3s; +mentiras mentir ver 185.16 52.03 0.24 0.07 ind:fut:2s; +mentirez mentir ver 185.16 52.03 0.05 0.00 ind:fut:2p; +mentiriez mentir ver 185.16 52.03 0.19 0.00 cnd:pre:2p; +mentirons mentir ver 185.16 52.03 0.04 0.07 ind:fut:1p; +mentiront mentir ver 185.16 52.03 0.05 0.00 ind:fut:3p; +mentis mentir ver 185.16 52.03 0.25 0.47 ind:pas:1s; +mentissent mentir ver 185.16 52.03 0.00 0.07 sub:imp:3p; +mentit mentir ver 185.16 52.03 0.06 1.01 ind:pas:3s; +menton menton nom m s 6.58 60.00 6.45 58.65 +mentonnet mentonnet nom m s 0.00 0.07 0.00 0.07 +mentonnier mentonnier adj m s 0.00 0.14 0.00 0.07 +mentonnière mentonnier nom f s 0.00 0.34 0.00 0.34 +mentons mentir ver 185.16 52.03 0.24 0.14 imp:pre:1p;ind:pre:1p; +mentor mentor nom m s 1.72 0.74 1.62 0.61 +mentors mentor nom m p 1.72 0.74 0.10 0.14 +mentule mentule nom f s 0.00 0.07 0.00 0.07 +mené mener ver m s 99.86 137.70 10.41 10.07 par:pas; +menu menu nom m s 11.15 14.53 9.87 12.03 +menée mener ver f s 99.86 137.70 3.89 8.65 par:pas; +menue menu adj f s 2.29 27.77 0.69 5.68 +menées mener ver f p 99.86 137.70 0.82 2.57 par:pas; +menues menu adj f p 2.29 27.77 0.19 4.32 +menuet menuet nom m s 0.75 0.95 0.62 0.81 +menuets menuet nom m p 0.75 0.95 0.14 0.14 +menuise menuise nom f s 0.14 0.00 0.14 0.00 +menuiser menuiser ver 0.00 0.14 0.00 0.07 inf; +menuisera menuiser ver 0.00 0.14 0.00 0.07 ind:fut:3s; +menuiserie menuiserie nom f s 0.46 1.22 0.46 1.22 +menuisier menuisier nom m s 3.54 4.46 2.88 4.05 +menuisiers menuisier nom m p 3.54 4.46 0.65 0.41 +menés mener ver m p 99.86 137.70 2.51 2.97 par:pas; +menus menu nom m p 11.15 14.53 1.28 2.50 +mer_air mer_air adj f s 0.01 0.00 0.01 0.00 +mer mer nom f s 106.61 257.57 99.49 246.55 +mercanti mercanti nom m s 0.27 0.20 0.14 0.14 +mercantile mercantile adj s 0.10 0.95 0.10 0.54 +mercantiles mercantile adj p 0.10 0.95 0.00 0.41 +mercantilisme mercantilisme nom m s 0.04 0.14 0.04 0.14 +mercantis mercanti nom m p 0.27 0.20 0.14 0.07 +mercaptan mercaptan nom m s 0.01 0.00 0.01 0.00 +mercenaire mercenaire nom s 2.87 2.30 1.33 0.54 +mercenaires mercenaire nom p 2.87 2.30 1.54 1.76 +mercerie mercerie nom f s 0.94 9.32 0.94 8.99 +merceries mercerie nom f p 0.94 9.32 0.00 0.34 +mercerisé merceriser ver m s 0.02 0.27 0.02 0.27 par:pas; +merchandising merchandising nom m s 0.16 0.00 0.16 0.00 +merci merci ono 936.01 42.36 936.01 42.36 +mercier mercier nom m s 0.14 4.26 0.14 0.34 +merciers mercier nom m p 0.14 4.26 0.00 0.14 +mercis merci nom m p 379.38 53.51 0.94 0.27 +mercière mercière nom f s 0.01 0.00 0.01 0.00 +mercières mercier nom f p 0.14 4.26 0.00 0.07 +mercredi mercredi nom m s 21.48 12.64 20.38 11.82 +mercredis mercredi nom m p 21.48 12.64 1.11 0.81 +mercure mercure nom m s 1.13 1.76 1.13 1.76 +mercurey mercurey nom m s 0.00 0.27 0.00 0.27 +mercuriale mercuriale nom f s 0.00 0.14 0.00 0.07 +mercuriales mercuriale nom f p 0.00 0.14 0.00 0.07 +mercurochrome mercurochrome nom m s 0.07 1.22 0.07 1.22 +merda merder ver 16.50 3.58 0.42 0.00 ind:pas:3s; +merdait merder ver 16.50 3.58 0.19 0.00 ind:imp:3s; +merdasse merdasse ono 0.02 0.07 0.02 0.07 +merde merde ono 221.46 33.85 221.46 33.85 +merdent merder ver 16.50 3.58 0.08 0.00 ind:pre:3p; +merder merder ver 16.50 3.58 0.89 0.00 inf; +merderai merder ver 16.50 3.58 0.02 0.00 ind:fut:1s; +merdes merde nom f p 213.05 62.77 6.37 1.49 +merdeuse merdeux adj f s 3.56 2.57 0.82 0.54 +merdeuses merdeux adj f p 3.56 2.57 0.01 0.54 +merdeux merdeux nom m 5.22 1.82 5.22 1.82 +merdez merder ver 16.50 3.58 0.16 0.00 imp:pre:2p;ind:pre:2p; +merdier merdier nom m s 5.34 1.96 5.33 1.89 +merdiers merdier nom m p 5.34 1.96 0.01 0.07 +merdique merdique adj s 7.82 2.16 6.53 1.42 +merdiques merdique adj p 7.82 2.16 1.29 0.74 +merdoie merdoyer ver 0.00 0.20 0.00 0.14 imp:pre:2s; +merdouille merdouille nom f s 0.20 0.34 0.20 0.34 +merdouillé merdouiller ver m s 0.01 0.00 0.01 0.00 par:pas; +merdoyait merdoyer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +merdre merdre ono 0.04 0.07 0.04 0.07 +merdé merder ver m s 16.50 3.58 9.14 0.20 par:pas; +merdée merder ver f s 16.50 3.58 0.04 0.07 par:pas; +merguez merguez nom f 0.70 2.16 0.70 2.16 +meringue meringue nom f s 0.51 1.35 0.47 0.81 +meringues meringue nom f p 0.51 1.35 0.04 0.54 +meringué meringuer ver m s 0.20 0.27 0.01 0.07 par:pas; +meringuée meringuer ver f s 0.20 0.27 0.20 0.14 par:pas; +meringuées meringuer ver f p 0.20 0.27 0.00 0.07 par:pas; +merise merise nom f s 0.01 0.07 0.01 0.00 +merises merise nom f p 0.01 0.07 0.00 0.07 +merisier merisier nom m s 0.13 1.15 0.13 0.81 +merisiers merisier nom m p 0.13 1.15 0.00 0.34 +merl merl nom m s 0.26 0.00 0.26 0.00 +merlan merlan nom m s 1.81 3.78 1.76 3.45 +merlans merlan nom m p 1.81 3.78 0.05 0.34 +merle merle nom m s 2.24 4.19 1.80 2.64 +merleau merleau nom m s 0.00 0.07 0.00 0.07 +merles merle nom m p 2.24 4.19 0.45 1.55 +merlette merlette nom f s 0.00 0.20 0.00 0.20 +merlin merlin nom m s 0.02 0.20 0.02 0.20 +merlot merlot nom m s 1.90 0.00 1.90 0.00 +merlu merlu nom m s 0.01 0.14 0.01 0.14 +merluche merluche nom f s 0.01 0.27 0.01 0.20 +merluches merluche nom f p 0.01 0.27 0.00 0.07 +merrain merrain nom m s 0.00 0.61 0.00 0.41 +merrains merrain nom m p 0.00 0.61 0.00 0.20 +mers mer nom f p 106.61 257.57 7.12 11.01 +merveille merveille nom f s 21.16 33.31 15.64 22.50 +merveilles merveille nom f p 21.16 33.31 5.52 10.81 +merveilleuse merveilleux adj f s 79.25 40.34 20.93 14.80 +merveilleusement merveilleusement adv 3.63 7.03 3.63 7.03 +merveilleuses merveilleux adj f p 79.25 40.34 3.88 4.26 +merveilleux merveilleux adj m 79.25 40.34 54.44 21.28 +merveillosité merveillosité nom f s 0.01 0.00 0.01 0.00 +mes mes adj_pos 1102.23 1023.11 1102.23 1023.11 +mesa mesa nom f s 0.51 0.07 0.51 0.07 +mescal mescal nom m s 0.26 0.00 0.26 0.00 +mescaline mescaline nom f s 0.25 0.07 0.25 0.07 +mesclun mesclun nom m s 0.05 0.00 0.05 0.00 +mesdames madame nom_sup f p 307.36 203.45 58.03 4.73 +mesdemoiselles mesdemoiselles nom f p 7.36 0.74 7.36 0.74 +mesmérisme mesmérisme nom m s 0.04 0.00 0.04 0.00 +mesnils mesnil nom m p 0.00 0.07 0.00 0.07 +mesquin mesquin adj m s 2.93 6.96 1.64 2.91 +mesquine mesquin adj f s 2.93 6.96 0.74 1.62 +mesquinement mesquinement adv 0.00 0.14 0.00 0.14 +mesquinerie mesquinerie nom f s 0.51 1.96 0.20 1.42 +mesquineries mesquinerie nom f p 0.51 1.96 0.31 0.54 +mesquines mesquin adj f p 2.93 6.96 0.21 1.35 +mesquins mesquin adj m p 2.93 6.96 0.34 1.08 +mess mess nom m 1.74 2.57 1.74 2.57 +message message nom m s 117.11 42.57 99.70 31.15 +messager messager nom m s 10.87 6.28 9.60 3.38 +messagerie messagerie nom f s 1.05 0.68 1.02 0.14 +messageries messagerie nom f p 1.05 0.68 0.03 0.54 +messagers messager nom m p 10.87 6.28 1.06 2.09 +messages message nom m p 117.11 42.57 17.41 11.42 +messagère messager nom f s 10.87 6.28 0.21 0.61 +messagères messager nom f p 10.87 6.28 0.00 0.20 +messaliste messaliste adj s 0.00 0.20 0.00 0.20 +messalistes messaliste nom p 0.00 0.20 0.00 0.14 +messe messe nom f s 18.36 35.68 16.14 32.70 +messeigneurs messeigneurs nom m p 0.50 0.14 0.50 0.14 +messer messer nom m s 1.50 0.95 1.50 0.95 +messes messe nom f p 18.36 35.68 2.22 2.97 +messianique messianique adj s 0.05 0.27 0.03 0.20 +messianiques messianique adj f p 0.05 0.27 0.02 0.07 +messianisme messianisme nom m s 0.00 0.07 0.00 0.07 +messidor messidor nom m s 0.00 0.07 0.00 0.07 +messie messie nom m s 0.69 0.54 0.61 0.54 +messies messie nom m p 0.69 0.54 0.08 0.00 +messieurs_dames messieurs_dames nom m p 0.48 0.68 0.48 0.68 +messieurs monsieur nom_sup m p 739.12 324.86 155.66 38.11 +messine messin adj f s 0.02 0.07 0.02 0.07 +messire messire nom m s 5.69 0.47 5.21 0.41 +messires messire nom m p 5.69 0.47 0.48 0.07 +messéance messéance nom f s 0.00 0.07 0.00 0.07 +mestre mestre nom m s 0.01 0.00 0.01 0.00 +mesura mesurer ver 19.65 47.30 0.01 1.76 ind:pas:3s; +mesurable mesurable adj s 0.22 0.95 0.19 0.74 +mesurables mesurable adj f p 0.22 0.95 0.02 0.20 +mesurai mesurer ver 19.65 47.30 0.00 0.54 ind:pas:1s; +mesuraient mesurer ver 19.65 47.30 0.16 0.95 ind:imp:3p; +mesurais mesurer ver 19.65 47.30 0.35 1.82 ind:imp:1s;ind:imp:2s; +mesurait mesurer ver 19.65 47.30 0.79 4.53 ind:imp:3s; +mesurant mesurer ver 19.65 47.30 0.42 2.23 par:pre; +mesurassent mesurer ver 19.65 47.30 0.00 0.07 sub:imp:3p; +mesure mesure nom f s 32.15 132.84 21.02 112.16 +mesurent mesurer ver 19.65 47.30 1.01 1.08 ind:pre:3p; +mesurer mesurer ver 19.65 47.30 6.63 16.35 inf; +mesurera mesurer ver 19.65 47.30 0.37 0.20 ind:fut:3s; +mesurerait mesurer ver 19.65 47.30 0.06 0.00 cnd:pre:3s; +mesurerez mesurer ver 19.65 47.30 0.00 0.07 ind:fut:2p; +mesurerons mesurer ver 19.65 47.30 0.00 0.07 ind:fut:1p; +mesureront mesurer ver 19.65 47.30 0.07 0.00 ind:fut:3p; +mesures mesure nom f p 32.15 132.84 11.14 20.68 +mesurette mesurette nom f s 0.01 0.00 0.01 0.00 +mesureur mesureur nom m s 0.01 0.27 0.01 0.27 +mesurez mesurer ver 19.65 47.30 0.91 0.34 imp:pre:2p;ind:pre:2p; +mesuriez mesurer ver 19.65 47.30 0.03 0.07 ind:imp:2p; +mesurions mesurer ver 19.65 47.30 0.10 0.20 ind:imp:1p; +mesurons mesurer ver 19.65 47.30 0.11 0.00 imp:pre:1p; +mesurât mesurer ver 19.65 47.30 0.00 0.14 sub:imp:3s; +mesurèrent mesurer ver 19.65 47.30 0.00 0.20 ind:pas:3p; +mesuré mesurer ver m s 19.65 47.30 1.81 4.05 par:pas; +mesurée mesurer ver f s 19.65 47.30 0.19 1.35 par:pas; +mesurées mesurer ver f p 19.65 47.30 0.23 0.27 par:pas; +mesurés mesurer ver m p 19.65 47.30 0.03 0.54 par:pas; +met mettre ver 1004.84 1083.65 89.25 86.69 ind:pre:3s; +mets_la_toi mets_la_toi nom m 0.01 0.00 0.01 0.00 +mets mettre ver 1004.84 1083.65 151.83 33.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mettable mettable adj s 0.02 0.14 0.02 0.14 +mettaient mettre ver 1004.84 1083.65 1.81 19.39 ind:imp:3p; +mettais mettre ver 1004.84 1083.65 5.16 9.46 ind:imp:1s;ind:imp:2s; +mettait mettre ver 1004.84 1083.65 10.14 75.54 ind:imp:3s; +mettant mettre ver 1004.84 1083.65 5.61 20.41 par:pre; +mette mettre ver 1004.84 1083.65 16.36 12.97 sub:pre:1s;sub:pre:3s; +mettent mettre ver 1004.84 1083.65 17.98 23.24 ind:pre:3p;sub:pre:3p; +mettes mettre ver 1004.84 1083.65 3.34 1.08 sub:pre:2s; +metteur metteur nom m s 5.50 7.70 5.24 6.01 +metteurs metteur nom m p 5.50 7.70 0.25 1.69 +metteuse metteur nom f s 5.50 7.70 0.01 0.00 +mettez mettre ver 1004.84 1083.65 85.44 9.86 imp:pre:2p;ind:pre:2p; +mettiez mettre ver 1004.84 1083.65 2.17 0.74 ind:imp:2p; +mettions mettre ver 1004.84 1083.65 0.27 2.16 ind:imp:1p; +mettons mettre ver 1004.84 1083.65 15.80 9.32 imp:pre:1p;ind:pre:1p; +mettra mettre ver 1004.84 1083.65 15.12 7.50 ind:fut:3s; +mettrai mettre ver 1004.84 1083.65 12.42 4.59 ind:fut:1s; +mettraient mettre ver 1004.84 1083.65 1.01 2.23 cnd:pre:3p; +mettrais mettre ver 1004.84 1083.65 5.11 2.91 cnd:pre:1s;cnd:pre:2s; +mettrait mettre ver 1004.84 1083.65 4.91 7.64 cnd:pre:3s; +mettras mettre ver 1004.84 1083.65 4.67 1.35 ind:fut:2s; +mettre mettre ver 1004.84 1083.65 271.05 230.20 inf;;inf;;inf;;inf;; +mettrez mettre ver 1004.84 1083.65 2.03 1.22 ind:fut:2p; +mettriez mettre ver 1004.84 1083.65 0.87 0.14 cnd:pre:2p; +mettrions mettre ver 1004.84 1083.65 0.05 0.20 cnd:pre:1p; +mettrons mettre ver 1004.84 1083.65 2.00 0.81 ind:fut:1p; +mettront mettre ver 1004.84 1083.65 2.31 1.01 ind:fut:3p; +meubla meubler ver 0.54 10.61 0.00 0.07 ind:pas:3s; +meublaient meubler ver 0.54 10.61 0.00 0.20 ind:imp:3p; +meublais meubler ver 0.54 10.61 0.00 0.07 ind:imp:1s; +meublait meubler ver 0.54 10.61 0.01 0.47 ind:imp:3s; +meublant meubler ver 0.54 10.61 0.00 0.14 par:pre; +meuble meuble nom m s 19.48 53.99 2.46 11.76 +meublent meubler ver 0.54 10.61 0.00 0.27 ind:pre:3p; +meubler meubler ver 0.54 10.61 0.38 3.85 inf; +meubles meuble nom m p 19.48 53.99 17.01 42.23 +meublèrent meubler ver 0.54 10.61 0.00 0.07 ind:pas:3p; +meublé meublé adj m s 0.90 4.53 0.65 2.16 +meublée meublé adj f s 0.90 4.53 0.23 1.08 +meublées meublé adj f p 0.90 4.53 0.00 0.68 +meublés meublé adj m p 0.90 4.53 0.02 0.61 +meuf meuf nom f s 8.29 2.57 6.22 2.30 +meufs meuf nom f p 8.29 2.57 2.08 0.27 +meugla meugler ver 0.28 1.08 0.00 0.20 ind:pas:3s; +meuglaient meugler ver 0.28 1.08 0.00 0.34 ind:imp:3p; +meuglait meugler ver 0.28 1.08 0.02 0.07 ind:imp:3s; +meuglant meugler ver 0.28 1.08 0.00 0.14 par:pre; +meugle meugler ver 0.28 1.08 0.12 0.07 ind:pre:3s; +meuglement meuglement nom m s 0.56 1.35 0.03 0.61 +meuglements meuglement nom m p 0.56 1.35 0.54 0.74 +meugler meugler ver 0.28 1.08 0.13 0.27 inf; +meuglé meugler ver m s 0.28 1.08 0.01 0.00 par:pas; +meuh meuh ono 0.78 0.14 0.78 0.14 +meulage meulage nom m s 0.01 0.00 0.01 0.00 +meule meule nom f s 1.39 8.38 1.17 4.73 +meuler meuler ver 0.06 0.27 0.02 0.14 inf; +meules meule nom f p 1.39 8.38 0.22 3.65 +meuleuse meuleuse nom f s 0.01 0.07 0.01 0.07 +meulez meuler ver 0.06 0.27 0.01 0.00 ind:pre:2p; +meulière meulier nom f s 0.00 0.81 0.00 0.68 +meulières meulier nom f p 0.00 0.81 0.00 0.14 +meunier meunier nom m s 0.96 0.95 0.76 0.74 +meuniers meunier nom m p 0.96 0.95 0.17 0.14 +meunière meunier adj f s 0.44 0.41 0.23 0.14 +meure mourir ver 916.42 391.08 14.97 5.54 sub:pre:1s;sub:pre:3s; +meurent mourir ver 916.42 391.08 19.13 10.47 ind:pre:3p; +meures mourir ver 916.42 391.08 1.88 0.14 sub:pre:2s; +meurette meurette nom f s 0.00 0.34 0.00 0.34 +meurs mourir ver 916.42 391.08 43.90 5.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +meursault meursault nom m s 0.00 0.20 0.00 0.20 +meurt mourir ver 916.42 391.08 44.29 20.41 ind:pre:3s; +meurtre_suicide meurtre_suicide nom m s 0.04 0.00 0.04 0.00 +meurtre meurtre nom m s 104.45 15.47 81.94 12.30 +meurtres meurtre nom m p 104.45 15.47 22.51 3.18 +meurtri meurtrir ver m s 0.80 6.35 0.34 1.35 par:pas; +meurtrie meurtri adj f s 0.66 5.00 0.32 1.76 +meurtrier meurtrier nom m s 24.42 4.59 19.57 1.69 +meurtriers meurtrier nom m p 24.42 4.59 2.48 0.54 +meurtries meurtri adj f p 0.66 5.00 0.03 0.74 +meurtrir meurtrir ver 0.80 6.35 0.04 1.69 inf; +meurtrira meurtrir ver 0.80 6.35 0.00 0.07 ind:fut:3s; +meurtriront meurtrir ver 0.80 6.35 0.00 0.07 ind:fut:3p; +meurtris meurtrir ver m p 0.80 6.35 0.29 0.34 ind:pre:1s;ind:pre:2s;par:pas; +meurtrissaient meurtrir ver 0.80 6.35 0.00 0.34 ind:imp:3p; +meurtrissais meurtrir ver 0.80 6.35 0.00 0.07 ind:imp:1s; +meurtrissait meurtrir ver 0.80 6.35 0.00 0.27 ind:imp:3s; +meurtrissant meurtrir ver 0.80 6.35 0.00 0.27 par:pre; +meurtrissent meurtrir ver 0.80 6.35 0.00 0.14 ind:pre:3p; +meurtrissure meurtrissure nom f s 0.09 1.42 0.04 0.88 +meurtrissures meurtrissure nom f p 0.09 1.42 0.05 0.54 +meurtrit meurtrir ver 0.80 6.35 0.04 0.20 ind:pre:3s;ind:pas:3s; +meurtrière meurtrier nom f s 24.42 4.59 2.36 1.22 +meurtrières meurtrière nom f p 0.96 0.00 0.96 0.00 +meus mouvoir ver 1.75 13.18 0.02 0.14 imp:pre:2s;ind:pre:1s; +meusien meusien adj m s 0.00 0.54 0.00 0.20 +meusienne meusien adj f s 0.00 0.54 0.00 0.07 +meusiennes meusien adj f p 0.00 0.54 0.00 0.14 +meusiens meusien adj m p 0.00 0.54 0.00 0.14 +meut mouvoir ver 1.75 13.18 0.41 1.28 ind:pre:3s; +meute meute nom f s 2.45 7.36 2.25 6.55 +meutes meute nom f p 2.45 7.36 0.20 0.81 +meuvent mouvoir ver 1.75 13.18 0.17 0.68 ind:pre:3p; +mexicain mexicain nom m s 8.06 2.43 3.98 1.62 +mexicaine mexicain adj f s 7.74 4.05 2.42 1.49 +mexicaines mexicain adj f p 7.74 4.05 0.59 0.68 +mexicains mexicain nom m p 8.06 2.43 3.22 0.41 +mexico mexico adv 0.54 0.07 0.54 0.07 +mezcal mezcal nom m s 0.13 0.00 0.13 0.00 +mezza_voce mezza_voce adv 0.00 0.07 0.00 0.07 +mezza_voce mezza_voce adv 0.00 0.20 0.00 0.20 +mezzanine mezzanine nom f s 0.13 0.47 0.12 0.27 +mezzanines mezzanine nom f p 0.13 0.47 0.01 0.20 +mezzo_soprano mezzo_soprano nom s 0.20 0.00 0.20 0.00 +mezzo mezzo nom s 0.03 0.14 0.03 0.07 +mezzos mezzo nom p 0.03 0.14 0.00 0.07 +mi_accablé mi_accablé adj m s 0.00 0.07 0.00 0.07 +mi_africains mi_africains nom m 0.00 0.07 0.00 0.07 +mi_airain mi_airain nom m s 0.00 0.07 0.00 0.07 +mi_allemand mi_allemand nom m 0.00 0.07 0.00 0.07 +mi_allongé mi_allongé adj m s 0.00 0.07 0.00 0.07 +mi_américaine mi_américaine nom m 0.02 0.00 0.02 0.00 +mi_ange mi_ange nom m s 0.01 0.00 0.01 0.00 +mi_angevins mi_angevins nom m 0.00 0.07 0.00 0.07 +mi_animal mi_animal adj m s 0.05 0.00 0.05 0.00 +mi_animaux mi_animaux adj m 0.00 0.07 0.00 0.07 +mi_août mi_août nom f s 0.00 0.20 0.00 0.20 +mi_appointé mi_appointé adj f p 0.00 0.07 0.00 0.07 +mi_appréhension mi_appréhension nom f s 0.00 0.07 0.00 0.07 +mi_arabe mi_arabe adj s 0.00 0.07 0.00 0.07 +mi_artisan mi_artisan nom m s 0.00 0.07 0.00 0.07 +mi_automne mi_automne nom f s 0.00 0.14 0.00 0.14 +mi_bandit mi_bandit nom m s 0.00 0.07 0.00 0.07 +mi_bas mi_bas nom m 0.14 0.14 0.14 0.14 +mi_biblique mi_biblique adj f s 0.00 0.07 0.00 0.07 +mi_black mi_black adj m s 0.14 0.00 0.14 0.00 +mi_blanc mi_blanc nom m 0.00 0.14 0.00 0.14 +mi_blancs mi_blancs nom m 0.00 0.07 0.00 0.07 +mi_bleu mi_bleu adj 0.00 0.07 0.00 0.07 +mi_bois mi_bois nom m 0.00 0.07 0.00 0.07 +mi_bordel mi_bordel nom m s 0.00 0.07 0.00 0.07 +mi_bourgeois mi_bourgeois adj m s 0.00 0.07 0.00 0.07 +mi_bovins mi_bovins nom m 0.00 0.07 0.00 0.07 +mi_braconnier mi_braconnier nom m p 0.00 0.07 0.00 0.07 +mi_bras mi_bras nom m 0.00 0.14 0.00 0.14 +mi_britannique mi_britannique adj s 0.00 0.07 0.00 0.07 +mi_building mi_building nom m s 0.00 0.07 0.00 0.07 +mi_bureaucrate mi_bureaucrate adj m p 0.00 0.07 0.00 0.07 +mi_bête mi_bête adj m s 0.04 0.00 0.04 0.00 +mi_côte mi_côte nom f s 0.00 0.20 0.00 0.20 +mi_café mi_café adj 0.00 0.07 0.00 0.07 +mi_café mi_café nom m s 0.00 0.07 0.00 0.07 +mi_campagnarde mi_campagnarde nom m 0.00 0.07 0.00 0.07 +mi_canard mi_canard nom m s 0.00 0.07 0.00 0.07 +mi_capacité mi_capacité nom f s 0.02 0.00 0.02 0.00 +mi_carrier mi_carrier nom f s 0.01 0.00 0.01 0.00 +mi_carême mi_carême nom f s 0.01 0.61 0.01 0.61 +mi_chair mi_chair adj m s 0.00 0.20 0.00 0.20 +mi_chat mi_chat nom m s 0.00 0.07 0.00 0.07 +mi_chatte mi_chatte nom f s 0.01 0.00 0.01 0.00 +mi_chauve mi_chauve adj s 0.00 0.07 0.00 0.07 +mi_chemin mi_chemin nom m s 3.72 6.35 3.72 6.35 +mi_châtaignier mi_châtaignier nom m p 0.00 0.07 0.00 0.07 +mi_chou mi_chou nom m s 0.00 0.07 0.00 0.07 +mi_chourineur mi_chourineur nom m s 0.00 0.07 0.00 0.07 +mi_chèvre mi_chèvre nom f s 0.00 0.07 0.00 0.07 +mi_chêne mi_chêne nom m p 0.00 0.07 0.00 0.07 +mi_clair mi_clair adj m s 0.00 0.07 0.00 0.07 +mi_cloître mi_cloître nom m s 0.00 0.07 0.00 0.07 +mi_clos mi_clos adj m 0.21 7.16 0.11 6.08 +mi_clos mi_clos adj f s 0.21 7.16 0.00 0.20 +mi_clos mi_clos adj f p 0.21 7.16 0.10 0.88 +mi_comique mi_comique adj m s 0.00 0.14 0.00 0.14 +mi_complice mi_complice adj m p 0.00 0.07 0.00 0.07 +mi_compote mi_compote nom f s 0.00 0.07 0.00 0.07 +mi_confit mi_confit nom m 0.00 0.07 0.00 0.07 +mi_confondu mi_confondu adj m p 0.00 0.07 0.00 0.07 +mi_connu mi_connu adj f s 0.01 0.00 0.01 0.00 +mi_consterné mi_consterné adj m s 0.00 0.07 0.00 0.07 +mi_contrarié mi_contrarié adj m p 0.00 0.07 0.00 0.07 +mi_corbeaux mi_corbeaux nom m p 0.00 0.07 0.00 0.07 +mi_corps mi_corps nom m 0.01 1.55 0.01 1.55 +mi_course mi_course nom f s 0.08 0.27 0.08 0.27 +mi_courtois mi_courtois adj m 0.00 0.07 0.00 0.07 +mi_cousin mi_cousin nom f s 0.00 0.14 0.00 0.07 +mi_cousin mi_cousin nom m p 0.00 0.14 0.00 0.07 +mi_coutume mi_coutume nom f s 0.00 0.07 0.00 0.07 +mi_crabe mi_crabe nom m s 0.00 0.07 0.00 0.07 +mi_croyant mi_croyant nom m 0.00 0.07 0.00 0.07 +mi_créature mi_créature nom f s 0.00 0.07 0.00 0.07 +mi_cruel mi_cruel adj m s 0.00 0.07 0.00 0.07 +mi_cuisse mi_cuisse nom f s 0.06 1.35 0.04 0.81 +mi_cuisse mi_cuisse nom f p 0.06 1.35 0.01 0.54 +mi_céleste mi_céleste adj m s 0.00 0.07 0.00 0.07 +mi_curieux mi_curieux adj m p 0.00 0.14 0.00 0.14 +mi_cérémonieux mi_cérémonieux adj m 0.00 0.07 0.00 0.07 +mi_dentelle mi_dentelle nom f s 0.00 0.07 0.00 0.07 +mi_didactique mi_didactique adj s 0.00 0.07 0.00 0.07 +mi_distance mi_distance nom f s 0.04 0.34 0.04 0.34 +mi_douce mi_douce adj f s 0.00 0.07 0.00 0.07 +mi_décadents mi_décadents nom m 0.00 0.07 0.00 0.07 +mi_décembre mi_décembre nom m 0.01 0.27 0.01 0.27 +mi_démon mi_démon nom m s 0.02 0.00 0.02 0.00 +mi_désir mi_désir nom m s 0.00 0.07 0.00 0.07 +mi_effrayé mi_effrayé adj f s 0.00 0.20 0.00 0.07 +mi_effrayé mi_effrayé adj m p 0.00 0.20 0.00 0.14 +mi_effrontée mi_effrontée nom m 0.00 0.07 0.00 0.07 +mi_enfant mi_enfant nom s 0.01 0.07 0.01 0.07 +mi_enjoué mi_enjoué adj f s 0.00 0.07 0.00 0.07 +mi_enterré mi_enterré adj m s 0.00 0.07 0.00 0.07 +mi_envieux mi_envieux adj m p 0.00 0.07 0.00 0.07 +mi_espagnol mi_espagnol nom m 0.00 0.07 0.00 0.07 +mi_européen mi_européen nom m 0.00 0.14 0.00 0.14 +mi_excitation mi_excitation nom f s 0.00 0.07 0.00 0.07 +mi_farceur mi_farceur nom m 0.00 0.07 0.00 0.07 +mi_faux mi_faux adj m 0.00 0.07 0.00 0.07 +mi_femme mi_femme nom f s 0.12 0.07 0.12 0.07 +mi_fermiers mi_fermiers nom m 0.00 0.07 0.00 0.07 +mi_fiel mi_fiel nom m s 0.00 0.07 0.00 0.07 +mi_figue mi_figue nom f s 0.02 0.54 0.02 0.54 +mi_flanc mi_flanc nom m s 0.00 0.14 0.00 0.14 +mi_fleuve mi_fleuve nom m s 0.08 0.00 0.08 0.00 +mi_français mi_français nom m 0.00 0.14 0.00 0.14 +mi_furieux mi_furieux adj m s 0.00 0.07 0.00 0.07 +mi_février mi_février nom f s 0.01 0.07 0.01 0.07 +mi_garçon mi_garçon nom m s 0.00 0.07 0.00 0.07 +mi_geste mi_geste nom m s 0.00 0.07 0.00 0.07 +mi_gigolpince mi_gigolpince nom m s 0.00 0.07 0.00 0.07 +mi_gnon mi_gnon nom m s 0.00 0.07 0.00 0.07 +mi_goguenard mi_goguenard adj f s 0.00 0.07 0.00 0.07 +mi_gonzesse mi_gonzesse nom f s 0.00 0.07 0.00 0.07 +mi_goéland mi_goéland nom m p 0.00 0.07 0.00 0.07 +mi_grave mi_grave adj p 0.00 0.07 0.00 0.07 +mi_grenier mi_grenier nom m s 0.00 0.07 0.00 0.07 +mi_grognon mi_grognon nom m 0.00 0.07 0.00 0.07 +mi_grondeur mi_grondeur adj m s 0.00 0.07 0.00 0.07 +mi_grossier mi_grossier adj f p 0.00 0.07 0.00 0.07 +mi_haute mi_haute adj f s 0.00 0.07 0.00 0.07 +mi_hauteur mi_hauteur nom f s 0.17 2.91 0.17 2.91 +mi_historique mi_historique adj f p 0.00 0.07 0.00 0.07 +mi_homme mi_homme nom m s 0.44 0.14 0.44 0.14 +mi_humain mi_humain nom m 0.08 0.00 0.08 0.00 +mi_humaine mi_humaine nom m 0.01 0.07 0.01 0.07 +mi_humains mi_humains nom m 0.01 0.07 0.01 0.07 +mi_hésitant mi_hésitant adj m s 0.00 0.07 0.00 0.07 +mi_idiotes mi_idiotes nom m 0.00 0.07 0.00 0.07 +mi_image mi_image nom f p 0.00 0.14 0.00 0.14 +mi_indien mi_indien nom m 0.01 0.07 0.01 0.07 +mi_indifférente mi_indifférente nom m 0.00 0.07 0.00 0.07 +mi_indigné mi_indigné adj f s 0.00 0.07 0.00 0.07 +mi_indigène mi_indigène adj s 0.00 0.07 0.00 0.07 +mi_indulgent mi_indulgent adj m s 0.00 0.14 0.00 0.14 +mi_inquiet mi_inquiet adj f s 0.00 0.14 0.00 0.14 +mi_ironique mi_ironique adj m s 0.00 0.41 0.00 0.27 +mi_ironique mi_ironique adj p 0.00 0.41 0.00 0.14 +mi_jambe mi_jambe nom f s 0.00 0.74 0.00 0.47 +mi_jambe mi_jambe nom f p 0.00 0.74 0.00 0.27 +mi_janvier mi_janvier nom f s 0.12 0.20 0.12 0.20 +mi_jaune mi_jaune adj s 0.00 0.14 0.00 0.07 +mi_jaune mi_jaune adj p 0.00 0.14 0.00 0.07 +mi_jersey mi_jersey nom m s 0.00 0.14 0.00 0.14 +mi_joue mi_joue nom f s 0.00 0.07 0.00 0.07 +mi_jour mi_jour nom m s 0.00 0.07 0.00 0.07 +mi_journée mi_journée nom f s 0.20 0.27 0.20 0.27 +mi_juif mi_juif nom m 0.00 0.07 0.00 0.07 +mi_juillet mi_juillet nom f s 0.02 0.41 0.02 0.41 +mi_juin mi_juin nom f s 0.01 0.07 0.01 0.07 +mi_laiton mi_laiton nom m s 0.00 0.07 0.00 0.07 +mi_lent mi_lent adj m s 0.01 0.00 0.01 0.00 +mi_londrès mi_londrès nom m 0.00 0.07 0.00 0.07 +mi_longs mi_longs nom m 0.15 0.34 0.15 0.34 +mi_longueur mi_longueur nom f s 0.00 0.07 0.00 0.07 +mi_lourd mi_lourd adj m s 0.17 0.14 0.17 0.14 +mi_machine mi_machine nom f s 0.07 0.00 0.06 0.00 +mi_machine mi_machine nom f p 0.07 0.00 0.01 0.00 +mi_mai mi_mai nom f s 0.01 0.00 0.01 0.00 +mi_mao mi_mao nom s 0.00 0.07 0.00 0.07 +mi_marchande mi_marchande nom m 0.00 0.07 0.00 0.07 +mi_mars mi_mars nom f s 0.04 0.20 0.04 0.20 +mi_marécage mi_marécage nom m p 0.00 0.07 0.00 0.07 +mi_menaçant mi_menaçant adj f s 0.00 0.07 0.00 0.07 +mi_meublé mi_meublé nom m 0.00 0.07 0.00 0.07 +mi_mexicain mi_mexicain nom m 0.01 0.00 0.01 0.00 +mi_miel mi_miel adj m s 0.00 0.07 0.00 0.07 +mi_mollet mi_mollet nom m 0.01 0.20 0.01 0.20 +mi_mollets mi_mollets nom m 0.00 0.27 0.00 0.27 +mi_mondaine mi_mondaine nom m 0.00 0.07 0.00 0.07 +mi_moqueur mi_moqueur nom m 0.00 0.14 0.00 0.14 +mi_mot mi_mot nom m s 0.03 0.27 0.03 0.20 +mi_mot mi_mot nom m p 0.03 0.27 0.00 0.07 +mi_mouton mi_mouton nom m s 0.00 0.07 0.00 0.07 +mi_moyen mi_moyen adj m s 0.10 0.07 0.08 0.00 +mi_moyen mi_moyen adj m p 0.10 0.07 0.02 0.07 +mi_métal mi_métal nom m s 0.00 0.07 0.00 0.07 +mi_narquoise mi_narquoise adj f s 0.00 0.07 0.00 0.07 +mi_noir mi_noir nom m 0.00 0.07 0.00 0.07 +mi_novembre mi_novembre nom f s 0.13 0.27 0.13 0.27 +mi_nuit mi_nuit nom f s 0.00 0.07 0.00 0.07 +mi_obscur mi_obscur adj f s 0.00 0.07 0.00 0.07 +mi_octobre mi_octobre nom f s 0.02 0.14 0.02 0.14 +mi_officiel mi_officiel nom m 0.00 0.14 0.00 0.14 +mi_ogre mi_ogre nom m s 0.00 0.07 0.00 0.07 +mi_oiseau mi_oiseau nom m s 0.10 0.00 0.10 0.00 +mi_oriental mi_oriental nom m 0.00 0.07 0.00 0.07 +mi_parcours mi_parcours nom m 0.25 0.34 0.25 0.34 +mi_parti mi_parti adj f s 0.00 0.61 0.00 0.61 +mi_pathétique mi_pathétique adj s 0.00 0.07 0.00 0.07 +mi_patio mi_patio nom m s 0.00 0.07 0.00 0.07 +mi_patois mi_patois nom m 0.00 0.07 0.00 0.07 +mi_peau mi_peau nom f s 0.00 0.07 0.00 0.07 +mi_pelouse mi_pelouse nom f s 0.00 0.07 0.00 0.07 +mi_pensée mi_pensée nom f p 0.00 0.14 0.00 0.14 +mi_pente mi_pente nom f s 0.02 0.81 0.02 0.81 +mi_pierre mi_pierre nom f s 0.00 0.07 0.00 0.07 +mi_pincé mi_pincé adj m s 0.00 0.07 0.00 0.07 +mi_plaintif mi_plaintif adj m s 0.00 0.20 0.00 0.20 +mi_plaisant mi_plaisant nom m 0.00 0.07 0.00 0.07 +mi_pleurant mi_pleurant nom m 0.00 0.07 0.00 0.07 +mi_pleurnichard mi_pleurnichard nom m 0.00 0.07 0.00 0.07 +mi_plombier mi_plombier nom m p 0.00 0.07 0.00 0.07 +mi_poisson mi_poisson nom m s 0.00 0.14 0.00 0.14 +mi_poitrine mi_poitrine nom f s 0.00 0.07 0.00 0.07 +mi_porcine mi_porcine nom m 0.00 0.07 0.00 0.07 +mi_porté mi_porté nom m 0.00 0.07 0.00 0.07 +mi_portugaise mi_portugaise nom m 0.00 0.07 0.00 0.07 +mi_poucet mi_poucet nom m s 0.00 0.07 0.00 0.07 +mi_poulet mi_poulet nom m s 0.00 0.07 0.00 0.07 +mi_prestidigitateur mi_prestidigitateur nom m s 0.00 0.07 0.00 0.07 +mi_promenoir mi_promenoir nom m s 0.00 0.07 0.00 0.07 +mi_protecteur mi_protecteur nom m 0.00 0.14 0.00 0.14 +mi_pêcheur mi_pêcheur nom m p 0.00 0.07 0.00 0.07 +mi_putain mi_putain nom f s 0.00 0.07 0.00 0.07 +mi_rageur mi_rageur adj m s 0.00 0.07 0.00 0.07 +mi_raide mi_raide adj f s 0.00 0.07 0.00 0.07 +mi_railleur mi_railleur nom m 0.00 0.14 0.00 0.14 +mi_raisin mi_raisin nom m s 0.02 0.61 0.02 0.61 +mi_renaissance mi_renaissance nom f s 0.00 0.07 0.00 0.07 +mi_respectueux mi_respectueux adj f s 0.00 0.07 0.00 0.07 +mi_riant mi_riant adj m s 0.00 0.27 0.00 0.27 +mi_rose mi_rose nom s 0.00 0.07 0.00 0.07 +mi_roulotte mi_roulotte nom f s 0.00 0.07 0.00 0.07 +mi_route mi_route nom f s 0.00 0.07 0.00 0.07 +mi_réalité mi_réalité nom f s 0.00 0.07 0.00 0.07 +mi_régime mi_régime nom m s 0.00 0.07 0.00 0.07 +mi_réprobateur mi_réprobateur adj m s 0.00 0.07 0.00 0.07 +mi_résigné mi_résigné nom m 0.00 0.07 0.00 0.07 +mi_russe mi_russe adj m s 0.14 0.07 0.14 0.07 +mi_saison mi_saison nom f s 0.14 0.00 0.14 0.00 +mi_salade mi_salade nom f s 0.01 0.00 0.01 0.00 +mi_salaire mi_salaire nom m s 0.01 0.00 0.01 0.00 +mi_samoan mi_samoan adj m s 0.01 0.00 0.01 0.00 +mi_sanglotant mi_sanglotant adj m s 0.00 0.07 0.00 0.07 +mi_satin mi_satin nom m s 0.00 0.07 0.00 0.07 +mi_satisfait mi_satisfait adj m s 0.00 0.07 0.00 0.07 +mi_sceptique mi_sceptique adj m s 0.00 0.07 0.00 0.07 +mi_scientifique mi_scientifique adj f p 0.00 0.07 0.00 0.07 +mi_secours mi_secours nom m 0.00 0.07 0.00 0.07 +mi_seigneur mi_seigneur nom m s 0.00 0.07 0.00 0.07 +mi_sel mi_sel nom m s 0.00 0.07 0.00 0.07 +mi_septembre mi_septembre nom f s 0.03 0.27 0.03 0.27 +mi_sidéré mi_sidéré adj f s 0.00 0.07 0.00 0.07 +mi_singe mi_singe nom m s 0.01 0.00 0.01 0.00 +mi_sombre mi_sombre adj m s 0.00 0.07 0.00 0.07 +mi_sommet mi_sommet nom m s 0.00 0.07 0.00 0.07 +mi_songe mi_songe nom m s 0.00 0.07 0.00 0.07 +mi_souriant mi_souriant adj m s 0.00 0.14 0.00 0.07 +mi_souriant mi_souriant adj f s 0.00 0.14 0.00 0.07 +mi_suisse mi_suisse adj s 0.00 0.07 0.00 0.07 +mi_série mi_série nom f s 0.01 0.00 0.01 0.00 +mi_sérieux mi_sérieux adj m 0.00 0.20 0.00 0.20 +mi_tantouse mi_tantouse nom f s 0.00 0.07 0.00 0.07 +mi_tendre mi_tendre nom m 0.00 0.14 0.00 0.14 +mi_terrorisé mi_terrorisé adj m s 0.00 0.07 0.00 0.07 +mi_timide mi_timide adj s 0.00 0.07 0.00 0.07 +mi_tortue mi_tortue adj f s 0.00 0.07 0.00 0.07 +mi_tour mi_tour nom s 0.00 0.07 0.00 0.07 +mi_tout mi_tout nom m 0.00 0.07 0.00 0.07 +mi_tragique mi_tragique adj m s 0.00 0.07 0.00 0.07 +mi_trimestre mi_trimestre nom m s 0.01 0.00 0.01 0.00 +mi_épaule mi_épaule nom f s 0.00 0.07 0.00 0.07 +mi_étage mi_étage nom m s 0.00 0.47 0.00 0.47 +mi_étendue mi_étendue nom f s 0.00 0.07 0.00 0.07 +mi_étonné mi_étonné adj m s 0.00 0.14 0.00 0.14 +mi_été mi_été nom m 0.00 0.27 0.00 0.27 +mi_étudiant mi_étudiant nom m 0.00 0.07 0.00 0.07 +mi_éveillé mi_éveillé adj f s 0.00 0.14 0.00 0.14 +mi_velours mi_velours nom m 0.00 0.07 0.00 0.07 +mi_verre mi_verre nom m s 0.00 0.14 0.00 0.14 +mi_vie mi_vie nom f s 0.00 0.07 0.00 0.07 +mi_voix mi_voix nom f 0.31 14.39 0.31 14.39 +mi_voluptueux mi_voluptueux adj m 0.00 0.07 0.00 0.07 +mi_vrais mi_vrais nom m 0.00 0.07 0.00 0.07 +mi_végétal mi_végétal nom m 0.01 0.00 0.01 0.00 +mi_vénitien mi_vénitien nom m 0.00 0.07 0.00 0.07 +mi mi nom_sup m 8.97 5.61 8.97 5.61 +miam_miam miam_miam ono 0.56 0.68 0.56 0.68 +miam miam ono 2.19 1.69 2.19 1.69 +miao miao adj m s 0.06 0.00 0.06 0.00 +miaou miaou nom m s 0.46 1.55 0.45 1.35 +miaous miaou nom m p 0.46 1.55 0.01 0.20 +miasme miasme nom m s 0.06 1.28 0.01 0.14 +miasmes miasme nom m p 0.06 1.28 0.05 1.15 +miaula miauler ver 1.15 6.15 0.00 0.54 ind:pas:3s; +miaulaient miauler ver 1.15 6.15 0.00 0.34 ind:imp:3p; +miaulais miauler ver 1.15 6.15 0.00 0.07 ind:imp:1s; +miaulait miauler ver 1.15 6.15 0.01 0.81 ind:imp:3s; +miaulant miauler ver 1.15 6.15 0.02 0.74 par:pre; +miaule miauler ver 1.15 6.15 0.88 1.15 imp:pre:2s;ind:pre:3s; +miaulement miaulement nom m s 1.35 2.57 0.64 1.55 +miaulements miaulement nom m p 1.35 2.57 0.70 1.01 +miaulent miauler ver 1.15 6.15 0.03 0.34 ind:pre:3p; +miauler miauler ver 1.15 6.15 0.20 1.62 inf; +miauleur miauleur adj m s 0.01 0.00 0.01 0.00 +miaulez miauler ver 1.15 6.15 0.01 0.07 ind:pre:2p; +miaulé miauler ver m s 1.15 6.15 0.00 0.47 par:pas; +mica mica nom m s 0.34 2.77 0.34 2.50 +micacées micacé adj f p 0.00 0.14 0.00 0.14 +micas mica nom m p 0.34 2.77 0.00 0.27 +miche miche nom f s 2.20 9.80 0.70 4.59 +micheline micheline nom f s 0.00 0.20 0.00 0.20 +miches miche nom f p 2.20 9.80 1.50 5.20 +micheton micheton nom m s 0.59 5.41 0.46 3.51 +michetonnais michetonner ver 0.01 0.54 0.01 0.07 ind:imp:1s; +michetonne michetonner ver 0.01 0.54 0.00 0.20 ind:pre:1s;ind:pre:3s; +michetonner michetonner ver 0.01 0.54 0.00 0.14 inf; +michetonnes michetonner ver 0.01 0.54 0.00 0.14 ind:pre:2s; +michetonneuse michetonneuse nom f s 0.00 0.14 0.00 0.07 +michetonneuses michetonneuse nom f p 0.00 0.14 0.00 0.07 +michetons micheton nom m p 0.59 5.41 0.13 1.89 +miché miché nom m s 0.03 2.91 0.02 1.76 +michés miché nom m p 0.03 2.91 0.01 1.15 +mickeys mickey nom m p 0.19 0.20 0.19 0.20 +micmac micmac nom m s 0.14 0.61 0.12 0.34 +micmacs micmac nom m p 0.14 0.61 0.02 0.27 +micocoulier micocoulier nom m s 0.00 0.34 0.00 0.14 +micocouliers micocoulier nom m p 0.00 0.34 0.00 0.20 +micro_cravate micro_cravate nom m s 0.01 0.00 0.01 0.00 +micro_onde micro_onde nom f s 0.38 0.00 0.38 0.00 +micro_ondes micro_ondes nom m 2.45 0.14 2.45 0.14 +micro_ordinateur micro_ordinateur nom m s 0.01 0.14 0.01 0.07 +micro_ordinateur micro_ordinateur nom m p 0.01 0.14 0.00 0.07 +micro_organisme micro_organisme nom m s 0.08 0.00 0.08 0.00 +micro_trottoir micro_trottoir nom m s 0.01 0.00 0.01 0.00 +micro micro nom s 15.03 8.31 11.25 6.82 +microanalyse microanalyse nom f s 0.02 0.00 0.02 0.00 +microbe microbe nom m s 6.00 4.26 1.86 1.15 +microbes microbe nom m p 6.00 4.26 4.14 3.11 +microbienne microbien adj f s 0.04 0.07 0.01 0.07 +microbiens microbien adj m p 0.04 0.07 0.02 0.00 +microbiologie microbiologie nom f s 0.14 0.00 0.14 0.00 +microbiologiste microbiologiste nom s 0.06 0.00 0.06 0.00 +microbus microbus nom m 0.01 0.00 0.01 0.00 +microcassette microcassette nom f s 0.00 0.07 0.00 0.07 +microchimie microchimie nom f s 0.03 0.00 0.03 0.00 +microchirurgie microchirurgie nom f s 0.06 0.07 0.06 0.07 +microcircuit microcircuit nom m s 0.07 0.00 0.02 0.00 +microcircuits microcircuit nom m p 0.07 0.00 0.05 0.00 +microclimat microclimat nom m s 0.16 0.14 0.16 0.14 +microcomposants microcomposant nom m p 0.01 0.00 0.01 0.00 +microcopie microcopie nom f s 0.01 0.00 0.01 0.00 +microcosme microcosme nom m s 0.23 0.34 0.23 0.34 +microcéphale microcéphale nom m s 0.10 0.07 0.10 0.00 +microcéphales microcéphale adj p 0.00 0.27 0.00 0.07 +microcycles microcycle nom m p 0.01 0.00 0.01 0.00 +microfiches microfiche nom f p 0.04 0.00 0.04 0.00 +microfilm microfilm nom m s 0.58 0.20 0.51 0.00 +microfilms microfilm nom m p 0.58 0.20 0.07 0.20 +microgramme microgramme nom m s 0.02 0.00 0.02 0.00 +microgravité microgravité nom f s 0.01 0.00 0.01 0.00 +microlithes microlithe nom m p 0.00 0.07 0.00 0.07 +micromètre micromètre nom m s 0.04 0.00 0.02 0.00 +micromètres micromètre nom m p 0.04 0.00 0.01 0.00 +micron micron nom m s 0.74 0.27 0.24 0.20 +microns micron nom m p 0.74 0.27 0.50 0.07 +microphone microphone nom m s 0.73 0.68 0.48 0.34 +microphones microphone nom m p 0.73 0.68 0.25 0.34 +microprocesseur microprocesseur nom m s 0.36 0.20 0.17 0.07 +microprocesseurs microprocesseur nom m p 0.36 0.20 0.20 0.14 +micros micro nom p 15.03 8.31 3.78 1.49 +microscope microscope nom m s 3.94 1.62 3.71 1.35 +microscopes microscope nom m p 3.94 1.62 0.23 0.27 +microscopie microscopie nom f s 0.04 0.00 0.04 0.00 +microscopique microscopique adj s 1.04 2.23 0.62 0.88 +microscopiquement microscopiquement adv 0.01 0.07 0.01 0.07 +microscopiques microscopique adj p 1.04 2.23 0.42 1.35 +microseconde microseconde nom f s 0.10 0.00 0.06 0.00 +microsecondes microseconde nom f p 0.10 0.00 0.04 0.00 +microsillon microsillon nom m s 0.00 0.27 0.00 0.14 +microsillons microsillon nom m p 0.00 0.27 0.00 0.14 +microsociologie microsociologie nom f s 0.00 0.07 0.00 0.07 +microsonde microsonde nom f s 0.01 0.00 0.01 0.00 +microstructure microstructure nom f s 0.03 0.07 0.03 0.00 +microstructures microstructure nom f p 0.03 0.07 0.00 0.07 +microédition microédition nom f s 0.01 0.00 0.01 0.00 +miction miction nom f s 0.04 0.07 0.03 0.00 +mictions miction nom f p 0.04 0.07 0.01 0.07 +middle_west middle_west nom m s 0.05 0.14 0.05 0.14 +middle_class middle_class nom f s 0.00 0.07 0.00 0.07 +midi midi nom m 35.19 68.38 35.15 68.11 +midinette midinette nom f s 0.13 2.23 0.06 1.62 +midinettes midinette nom f p 0.13 2.23 0.07 0.61 +midis midi nom m p 35.19 68.38 0.04 0.27 +midrash midrash nom m s 0.02 0.00 0.02 0.00 +midship midship nom m s 0.00 0.20 0.00 0.20 +mie mie nom f s 1.41 5.74 1.39 5.68 +miel miel nom m s 17.36 15.54 17.34 15.41 +miellat miellat nom m s 0.01 0.00 0.01 0.00 +mielle mielle nom f s 0.00 0.07 0.00 0.07 +mielleuse mielleux adj f s 0.81 1.82 0.20 0.41 +mielleuses mielleux adj f p 0.81 1.82 0.17 0.20 +mielleux mielleux adj m 0.81 1.82 0.44 1.22 +miellé miellé adj m s 0.00 0.07 0.00 0.07 +miellée miellé nom f s 0.00 0.20 0.00 0.14 +miellées miellé nom f p 0.00 0.20 0.00 0.07 +miels miel nom m p 17.36 15.54 0.03 0.14 +mien mien pro_pos m s 54.06 36.08 54.06 36.08 +mienne mienne pro_pos f s 50.46 41.28 50.46 41.28 +miennes miennes pro_pos m p 9.31 9.59 9.31 9.59 +miens miens pro_pos m p 16.32 21.15 16.32 21.15 +mies mie nom f p 1.41 5.74 0.03 0.07 +miette miette nom f s 8.68 17.16 2.54 4.12 +miettes miette nom f p 8.68 17.16 6.13 13.04 +mieux_être mieux_être nom m 0.12 0.20 0.12 0.20 +mieux_vivre mieux_vivre nom m s 0.00 0.07 0.00 0.07 +mieux mieux adv_sup 651.73 398.38 651.73 398.38 +mignard mignard adj m s 0.00 1.35 0.00 0.34 +mignardant mignarder ver 0.00 0.20 0.00 0.07 par:pre; +mignarde mignard adj f s 0.00 1.35 0.00 0.81 +mignardement mignardement adv 0.00 0.07 0.00 0.07 +mignardes mignard adj f p 0.00 1.35 0.00 0.14 +mignardise mignardise nom f s 0.03 0.88 0.02 0.14 +mignardises mignardise nom f p 0.03 0.88 0.01 0.74 +mignards mignard adj m p 0.00 1.35 0.00 0.07 +mignardé mignarder ver m s 0.00 0.20 0.00 0.07 par:pas; +mignon mignon adj m s 69.71 13.58 46.14 6.49 +mignonne mignon adj f s 69.71 13.58 17.41 4.73 +mignonnement mignonnement adv 0.00 0.14 0.00 0.14 +mignonnes mignon adj f p 69.71 13.58 1.37 0.74 +mignonnet mignonnet adj m s 0.17 0.27 0.07 0.14 +mignonnets mignonnet adj m p 0.17 0.27 0.00 0.07 +mignonnette mignonnet adj f s 0.17 0.27 0.10 0.00 +mignonnettes mignonnette nom f p 0.06 0.14 0.01 0.07 +mignons mignon adj m p 69.71 13.58 4.78 1.62 +mignoter mignoter ver 0.01 0.41 0.01 0.27 inf; +mignoteront mignoter ver 0.01 0.41 0.00 0.07 ind:fut:3p; +mignoté mignoter ver m s 0.01 0.41 0.00 0.07 par:pas; +migraine migraine nom f s 10.32 6.01 7.51 4.05 +migraines migraine nom f p 10.32 6.01 2.80 1.96 +migraineuse migraineuse nom f s 0.01 0.07 0.01 0.07 +migraineux migraineux nom m 0.04 0.00 0.04 0.00 +migrait migrer ver 0.83 0.14 0.01 0.00 ind:imp:3s; +migrant migrer ver 0.83 0.14 0.01 0.00 par:pre; +migrante migrant adj f s 0.00 0.14 0.00 0.07 +migrants migrant nom m p 0.03 0.54 0.03 0.27 +migrateur migrateur adj m s 0.35 1.55 0.19 0.41 +migrateurs migrateur adj m p 0.35 1.55 0.16 1.08 +migration migration nom f s 0.74 2.64 0.71 1.76 +migrations migration nom f p 0.74 2.64 0.03 0.88 +migratoire migratoire adj s 0.06 0.14 0.02 0.00 +migratoires migratoire adj p 0.06 0.14 0.04 0.14 +migratrice migrateur adj f s 0.35 1.55 0.01 0.00 +migratrices migrateur adj f p 0.35 1.55 0.00 0.07 +migre migrer ver 0.83 0.14 0.03 0.07 ind:pre:3s; +migrent migrer ver 0.83 0.14 0.24 0.00 ind:pre:3p; +migrer migrer ver 0.83 0.14 0.44 0.00 inf; +migres migrer ver 0.83 0.14 0.01 0.00 ind:pre:2s; +migré migrer ver m s 0.83 0.14 0.08 0.07 par:pas; +mijaurée mijaurée nom f s 0.61 1.01 0.57 0.68 +mijaurées mijaurée nom f p 0.61 1.01 0.04 0.34 +mijota mijoter ver 6.98 7.57 0.00 0.07 ind:pas:3s; +mijotaient mijoter ver 6.98 7.57 0.00 0.34 ind:imp:3p; +mijotais mijoter ver 6.98 7.57 0.05 0.14 ind:imp:1s;ind:imp:2s; +mijotait mijoter ver 6.98 7.57 0.28 1.49 ind:imp:3s; +mijotant mijoter ver 6.98 7.57 0.00 0.27 par:pre; +mijote mijoter ver 6.98 7.57 1.85 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mijotent mijoter ver 6.98 7.57 0.51 0.34 ind:pre:3p; +mijoter mijoter ver 6.98 7.57 1.28 1.55 inf; +mijotera mijoter ver 6.98 7.57 0.00 0.07 ind:fut:3s; +mijotes mijoter ver 6.98 7.57 1.73 0.34 ind:pre:2s; +mijoteuse mijoteuse nom f s 0.01 0.07 0.01 0.07 +mijotez mijoter ver 6.98 7.57 0.75 0.07 imp:pre:2p;ind:pre:2p; +mijotions mijoter ver 6.98 7.57 0.00 0.07 ind:imp:1p; +mijotons mijoter ver 6.98 7.57 0.00 0.14 imp:pre:1p;ind:pre:1p; +mijoté mijoter ver m s 6.98 7.57 0.34 0.88 par:pas; +mijotées mijoter ver f p 6.98 7.57 0.01 0.07 par:pas; +mijotés mijoter ver m p 6.98 7.57 0.17 0.34 par:pas; +mikado mikado nom m s 0.28 0.88 0.28 0.88 +mil mil adj_num 0.46 0.61 0.46 0.61 +milady milady nom f s 3.18 0.34 3.18 0.34 +milan milan nom m s 0.14 0.34 0.14 0.14 +milanais milanais adj m 0.37 0.47 0.23 0.14 +milanaise milanais adj f s 0.37 0.47 0.14 0.27 +milanaises milanais nom f p 0.23 0.27 0.00 0.14 +milans milan nom m p 0.14 0.34 0.01 0.20 +mildiou mildiou nom m s 0.04 0.00 0.04 0.00 +mile mile nom m s 8.34 1.28 0.90 0.07 +miles mile nom m p 8.34 1.28 7.44 1.22 +milice milice nom f s 3.77 4.39 3.25 2.43 +milices milice nom f p 3.77 4.39 0.53 1.96 +milicien milicien nom m s 0.78 8.92 0.20 1.35 +miliciennes milicienne nom f p 0.01 0.00 0.01 0.00 +miliciens milicien nom m p 0.78 8.92 0.57 7.50 +milieu milieu nom m s 70.27 256.08 68.60 246.69 +milieux milieu nom m p 70.27 256.08 1.67 9.39 +milita militer ver 1.10 4.26 0.00 0.14 ind:pas:3s; +militaient militer ver 1.10 4.26 0.00 0.07 ind:imp:3p; +militaire militaire adj s 43.73 96.22 35.09 69.19 +militairement militairement adv 0.12 1.15 0.12 1.15 +militaires militaire nom p 13.24 18.99 9.74 11.96 +militait militer ver 1.10 4.26 0.16 0.95 ind:imp:3s; +militant militant nom m s 2.92 11.55 1.18 4.86 +militante militant adj f s 0.92 3.45 0.19 1.22 +militantes militant nom f p 2.92 11.55 0.06 0.14 +militantisme militantisme nom m s 0.06 0.74 0.06 0.74 +militants militant nom m p 2.92 11.55 1.54 5.61 +militarisation militarisation nom f s 0.04 0.00 0.04 0.00 +militariser militariser ver 0.05 0.07 0.03 0.00 inf; +militarisme militarisme nom m s 0.03 0.20 0.03 0.20 +militariste militariste adj s 0.03 0.47 0.02 0.34 +militaristes militariste adj p 0.03 0.47 0.01 0.14 +militarisé militariser ver m s 0.05 0.07 0.02 0.07 par:pas; +militaro_industriel militaro_industriel adj m s 0.06 0.00 0.05 0.00 +militaro_industriel militaro_industriel adj f s 0.06 0.00 0.01 0.00 +militaro militaro adv 0.01 0.00 0.01 0.00 +milite militer ver 1.10 4.26 0.58 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +militent militer ver 1.10 4.26 0.03 0.27 ind:pre:3p; +militer militer ver 1.10 4.26 0.09 0.95 inf; +militerai militer ver 1.10 4.26 0.00 0.07 ind:fut:1s; +milites militer ver 1.10 4.26 0.04 0.07 ind:pre:2s; +militons militer ver 1.10 4.26 0.02 0.00 ind:pre:1p; +militèrent militer ver 1.10 4.26 0.00 0.07 ind:pas:3p; +milité militer ver m s 1.10 4.26 0.15 0.95 par:pas; +milk_bar milk_bar nom m s 0.03 0.20 0.03 0.14 +milk_bar milk_bar nom m p 0.03 0.20 0.00 0.07 +milk_shake milk_shake nom m s 1.85 0.14 1.27 0.14 +milk_shake milk_shake nom m p 1.85 0.14 0.45 0.00 +milk_shake milk_shake nom m s 1.85 0.14 0.13 0.00 +mille_feuille mille_feuille nom m s 0.03 1.08 0.02 0.20 +mille_feuille mille_feuille nom m p 0.03 1.08 0.01 0.88 +mille_pattes mille_pattes nom m 0.39 2.09 0.39 2.09 +mille mille adj_num 55.43 142.09 55.43 142.09 +millefeuille millefeuille nom s 0.10 0.54 0.09 0.34 +millefeuilles millefeuille nom p 0.10 0.54 0.01 0.20 +millenium millenium nom m s 0.08 0.07 0.08 0.07 +milles mille nom_sup m p 29.63 30.68 3.46 3.04 +millet millet nom m s 0.17 0.61 0.17 0.61 +milli milli adv 0.16 0.14 0.16 0.14 +milliaire milliaire adj f s 0.00 0.14 0.00 0.14 +milliard milliard nom m s 17.52 14.39 4.02 2.43 +milliardaire milliardaire nom s 2.13 2.77 1.69 1.55 +milliardaires milliardaire nom p 2.13 2.77 0.44 1.22 +milliardième milliardième adj 0.02 0.00 0.02 0.00 +milliards milliard nom m p 17.52 14.39 13.49 11.96 +millier millier nom m s 37.94 42.43 3.15 2.36 +milliers millier nom m p 37.94 42.43 34.78 40.07 +milligramme milligramme nom m s 1.06 0.34 0.23 0.27 +milligrammes milligramme nom m p 1.06 0.34 0.83 0.07 +millilitre millilitre nom m s 0.04 0.00 0.04 0.00 +millimètre millimètre nom m s 2.77 6.76 1.58 4.46 +millimètres millimètre nom m p 2.77 6.76 1.20 2.30 +millimétrique millimétrique adj s 0.15 0.27 0.14 0.14 +millimétriques millimétrique adj p 0.15 0.27 0.01 0.14 +millimétré millimétré adj m s 0.02 0.47 0.02 0.34 +millimétrées millimétré adj f p 0.02 0.47 0.00 0.07 +millimétrés millimétré adj m p 0.02 0.47 0.00 0.07 +million million nom_sup m s 124.70 54.05 36.78 7.84 +millionième millionième adj 0.22 0.34 0.22 0.34 +millionnaire millionnaire adj s 3.59 0.88 2.82 0.61 +millionnaires millionnaire adj p 3.59 0.88 0.78 0.27 +millions million nom_sup m p 124.70 54.05 87.92 46.22 +milliseconde milliseconde nom f s 0.16 0.14 0.09 0.07 +millisecondes milliseconde nom f p 0.16 0.14 0.08 0.07 +millième millième nom m s 0.29 0.95 0.17 0.88 +millièmes millième nom m p 0.29 0.95 0.12 0.07 +millénaire millénaire nom m s 3.45 5.41 2.10 0.74 +millénaires millénaire nom m p 3.45 5.41 1.36 4.66 +millénarisme millénarisme nom m s 0.01 0.00 0.01 0.00 +millénariste millénariste adj f s 0.02 0.00 0.02 0.00 +millénium millénium nom m s 0.13 0.00 0.13 0.00 +millésime millésime nom m s 0.27 1.01 0.25 0.61 +millésimes millésime nom m p 0.27 1.01 0.02 0.41 +millésimé millésimer ver m s 0.22 0.54 0.17 0.20 par:pas; +millésimée millésimer ver f s 0.22 0.54 0.01 0.00 par:pas; +millésimées millésimer ver f p 0.22 0.54 0.00 0.14 par:pas; +millésimés millésimer ver m p 0.22 0.54 0.03 0.20 par:pas; +milonga milonga nom f s 0.03 0.00 0.03 0.00 +milord milord nom m s 2.72 0.88 2.66 0.81 +milords milord nom m p 2.72 0.88 0.07 0.07 +milouin milouin nom m s 0.01 0.00 0.01 0.00 +milésiennes milésien adj f p 0.00 0.07 0.00 0.07 +mima mimer ver 0.93 9.86 0.00 1.22 ind:pas:3s; +mimaient mimer ver 0.93 9.86 0.00 0.14 ind:imp:3p; +mimais mimer ver 0.93 9.86 0.12 0.27 ind:imp:1s;ind:imp:2s; +mimait mimer ver 0.93 9.86 0.13 1.96 ind:imp:3s; +mimant mimer ver 0.93 9.86 0.16 1.69 par:pre; +mimas mimer ver 0.93 9.86 0.01 0.00 ind:pas:2s; +mime mime nom m s 5.35 1.08 5.11 0.88 +miment mimer ver 0.93 9.86 0.02 0.47 ind:pre:3p; +mimer mimer ver 0.93 9.86 0.11 1.96 inf; +mimerai mimer ver 0.93 9.86 0.00 0.07 ind:fut:1s; +mimerait mimer ver 0.93 9.86 0.00 0.14 cnd:pre:3s; +mimes mime nom m p 5.35 1.08 0.25 0.20 +mimi mimi nom m s 0.44 0.14 0.41 0.14 +mimique mimique nom f s 0.19 6.22 0.01 3.58 +mimiques mimique nom f p 0.19 6.22 0.18 2.64 +mimis mimi nom m p 0.44 0.14 0.02 0.00 +mimodrames mimodrame nom m p 0.00 0.07 0.00 0.07 +mimolette mimolette nom f s 0.01 0.00 0.01 0.00 +mimâmes mimer ver 0.93 9.86 0.00 0.07 ind:pas:1p; +mimosa mimosa nom m s 1.75 2.91 0.97 1.35 +mimosas mimosa nom m p 1.75 2.91 0.77 1.55 +mimosées mimosée nom f p 0.00 0.07 0.00 0.07 +mimèrent mimer ver 0.93 9.86 0.00 0.27 ind:pas:3p; +mimé mimer ver m s 0.93 9.86 0.03 0.54 par:pas; +mimée mimer ver f s 0.93 9.86 0.01 0.20 par:pas; +mimétique mimétique adj s 0.04 0.07 0.04 0.07 +mimétisme mimétisme nom m s 0.17 1.55 0.17 1.55 +min min nom m 7.85 1.08 7.85 1.08 +mina miner ver 4.83 10.47 0.17 0.00 ind:pas:3s; +minable minable adj s 15.58 11.55 13.06 8.72 +minablement minablement adv 0.14 0.07 0.14 0.07 +minables minable adj p 15.58 11.55 2.52 2.84 +minage minage nom m s 0.01 0.07 0.01 0.07 +minait miner ver 4.83 10.47 0.18 0.54 ind:imp:3s; +minant miner ver 4.83 10.47 0.17 0.00 par:pre; +minaret minaret nom m s 0.34 1.96 0.21 0.88 +minarets minaret nom m p 0.34 1.96 0.13 1.08 +minas miner ver 4.83 10.47 0.04 0.00 ind:pas:2s; +minauda minauder ver 0.17 3.38 0.00 0.68 ind:pas:3s; +minaudaient minauder ver 0.17 3.38 0.00 0.07 ind:imp:3p; +minaudait minauder ver 0.17 3.38 0.02 0.54 ind:imp:3s; +minaudant minauder ver 0.17 3.38 0.01 0.81 par:pre; +minaudants minaudant adj m p 0.01 0.07 0.00 0.07 +minaude minauder ver 0.17 3.38 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +minaudent minauder ver 0.17 3.38 0.01 0.14 ind:pre:3p; +minauder minauder ver 0.17 3.38 0.07 0.47 inf; +minauderait minauder ver 0.17 3.38 0.00 0.07 cnd:pre:3s; +minauderie minauderie nom f s 0.12 0.88 0.00 0.27 +minauderies minauderie nom f p 0.12 0.88 0.12 0.61 +minaudeur minaudeur adj m s 0.00 0.07 0.00 0.07 +minaudez minauder ver 0.17 3.38 0.01 0.00 ind:pre:2p; +minaudière minaudier adj f s 0.00 0.27 0.00 0.27 +minaudé minauder ver m s 0.17 3.38 0.00 0.14 par:pas; +minbar minbar nom m s 0.12 0.00 0.12 0.00 +mince mince ono 14.62 2.84 14.62 2.84 +minces mince adj p 16.27 78.51 2.17 18.18 +minceur minceur nom f s 0.20 2.36 0.20 2.30 +minceurs minceur nom f p 0.20 2.36 0.00 0.07 +minci mincir ver m s 0.55 0.20 0.21 0.14 par:pas; +mincir mincir ver 0.55 0.20 0.32 0.00 inf; +mincirait mincir ver 0.55 0.20 0.01 0.00 cnd:pre:3s; +mincis mincir ver 0.55 0.20 0.01 0.00 ind:pre:2s; +mincissaient mincir ver 0.55 0.20 0.00 0.07 ind:imp:3p; +mine mine nom f s 48.08 65.88 36.84 48.18 +minent miner ver 4.83 10.47 0.02 0.20 ind:pre:3p; +miner miner ver 4.83 10.47 0.58 1.35 inf; +minera miner ver 4.83 10.47 0.02 0.00 ind:fut:3s; +minerai minerai nom m s 1.38 1.01 1.21 0.95 +minerais minerai nom m p 1.38 1.01 0.17 0.07 +minerval minerval nom m s 0.01 0.00 0.01 0.00 +minerve minerve nom f s 0.69 0.07 0.69 0.07 +mines mine nom f p 48.08 65.88 11.24 17.70 +minestrone minestrone nom m s 0.27 0.07 0.27 0.07 +minet minet nom m s 5.87 6.42 2.22 2.23 +minets minet nom m p 5.87 6.42 0.68 1.22 +minette minet nom f s 5.87 6.42 2.98 2.03 +minettes minette nom f p 1.21 0.00 1.21 0.00 +mineur mineur adj m s 8.01 6.62 3.79 2.70 +mineure mineur adj f s 8.01 6.62 1.96 1.62 +mineures mineur adj f p 8.01 6.62 0.53 0.74 +mineurs mineur nom m p 8.79 11.96 4.09 6.01 +ming ming adj s 0.04 0.00 0.04 0.00 +mini_chaîne mini_chaîne nom f s 0.14 0.07 0.14 0.07 +mini_jupe mini_jupe nom f s 0.62 0.54 0.56 0.34 +mini_jupe mini_jupe nom f p 0.62 0.54 0.06 0.20 +mini_ordinateur mini_ordinateur nom m s 0.02 0.00 0.02 0.00 +mini mini adj 1.69 0.14 1.69 0.14 +miniature miniature nom f s 2.18 10.07 1.62 7.09 +miniatures miniature nom f p 2.18 10.07 0.56 2.97 +miniaturisation miniaturisation nom f s 0.15 0.14 0.15 0.14 +miniaturise miniaturiser ver 0.22 0.34 0.03 0.00 ind:pre:3s; +miniaturiser miniaturiser ver 0.22 0.34 0.08 0.07 inf; +miniaturiste miniaturiste nom s 0.01 0.47 0.01 0.47 +miniaturisé miniaturiser ver m s 0.22 0.34 0.06 0.14 par:pas; +miniaturisée miniaturiser ver f s 0.22 0.34 0.02 0.07 par:pas; +miniaturisées miniaturiser ver f p 0.22 0.34 0.01 0.00 par:pas; +miniaturisés miniaturiser ver m p 0.22 0.34 0.01 0.07 par:pas; +minibar minibar nom m s 0.26 0.00 0.26 0.00 +minibus minibus nom m 1.99 0.54 1.99 0.54 +minicassette minicassette nom s 0.02 0.27 0.01 0.20 +minicassettes minicassette nom p 0.02 0.27 0.01 0.07 +minier minier adj m s 1.09 1.42 0.28 0.47 +miniers minier adj m p 1.09 1.42 0.20 0.20 +minigolf minigolf nom m s 0.23 0.00 0.23 0.00 +minijupe minijupe nom f s 1.20 0.54 0.82 0.41 +minijupes minijupe nom f p 1.20 0.54 0.38 0.14 +minima minimum nom m p 7.12 11.82 0.04 0.34 +minimal minimal adj m s 1.39 0.81 0.28 0.34 +minimale minimal adj f s 1.39 0.81 0.83 0.34 +minimales minimal adj f p 1.39 0.81 0.22 0.07 +minimaliser minimaliser ver 0.01 0.00 0.01 0.00 inf; +minimalisme minimalisme nom m s 0.06 0.00 0.06 0.00 +minimaliste minimaliste adj s 0.10 0.00 0.10 0.00 +minimaux minimal adj m p 1.39 0.81 0.04 0.07 +minimax minimax nom m 0.01 0.00 0.01 0.00 +minime minime adj s 1.87 2.84 1.04 2.16 +minimes minime adj p 1.87 2.84 0.82 0.68 +minimisa minimiser ver 2.10 2.57 0.01 0.00 ind:pas:3s; +minimisaient minimiser ver 2.10 2.57 0.00 0.07 ind:imp:3p; +minimisait minimiser ver 2.10 2.57 0.00 0.07 ind:imp:3s; +minimisant minimiser ver 2.10 2.57 0.05 0.20 par:pre; +minimisation minimisation nom f s 0.00 0.07 0.00 0.07 +minimise minimiser ver 2.10 2.57 0.39 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +minimisent minimiser ver 2.10 2.57 0.03 0.07 ind:pre:3p; +minimiser minimiser ver 2.10 2.57 1.42 1.42 inf; +minimiserons minimiser ver 2.10 2.57 0.01 0.00 ind:fut:1p; +minimises minimiser ver 2.10 2.57 0.02 0.07 ind:pre:2s; +minimisez minimiser ver 2.10 2.57 0.09 0.00 imp:pre:2p;ind:pre:2p; +minimisons minimiser ver 2.10 2.57 0.01 0.00 imp:pre:1p; +minimisé minimiser ver m s 2.10 2.57 0.04 0.14 par:pas; +minimisée minimiser ver f s 2.10 2.57 0.03 0.00 par:pas; +minimisées minimiser ver f p 2.10 2.57 0.01 0.07 par:pas; +minimum minimum nom m s 7.12 11.82 7.07 11.49 +minimums minimum adj p 3.77 1.76 0.05 0.00 +minis mini nom p 1.01 1.01 0.14 0.00 +ministrables ministrable adj p 0.00 0.07 0.00 0.07 +ministre ministre nom s 41.41 81.15 38.10 61.01 +ministres ministre nom m p 41.41 81.15 3.31 20.14 +ministère ministère nom m s 17.47 17.50 16.91 14.32 +ministères ministère nom m p 17.47 17.50 0.55 3.18 +ministériel ministériel adj m s 0.40 2.77 0.38 0.95 +ministérielle ministériel adj f s 0.40 2.77 0.01 0.74 +ministérielles ministériel adj f p 0.40 2.77 0.00 0.41 +ministériels ministériel adj m p 0.40 2.77 0.01 0.68 +minitel minitel nom m s 0.00 0.34 0.00 0.34 +minière minier adj f s 1.09 1.42 0.53 0.54 +minières minier adj f p 1.09 1.42 0.08 0.20 +minium minium nom m s 0.04 0.95 0.04 0.95 +mino mino adj m s 1.13 0.27 1.13 0.27 +minoen minoen nom m s 0.01 0.20 0.01 0.07 +minoenne minoen adj f s 0.07 0.34 0.06 0.14 +minoens minoen adj m p 0.07 0.34 0.01 0.00 +minois minois nom m 1.11 1.55 1.11 1.55 +minoritaire minoritaire adj s 0.60 0.61 0.17 0.34 +minoritaires minoritaire adj p 0.60 0.61 0.44 0.27 +minorité minorité nom f s 4.03 2.84 3.15 2.36 +minorités minorité nom f p 4.03 2.84 0.89 0.47 +minot minot nom m s 0.58 1.35 0.58 1.08 +minotaure minotaure nom m s 0.03 0.14 0.02 0.07 +minotaures minotaure nom m p 0.03 0.14 0.01 0.07 +minoteries minoterie nom f p 0.00 0.14 0.00 0.14 +minotier minotier nom m s 0.00 0.61 0.00 0.61 +minots minot nom m p 0.58 1.35 0.00 0.27 +minou minou nom m s 7.00 1.55 6.46 1.55 +minouche minouche adj s 0.17 0.81 0.17 0.81 +minous minou nom m p 7.00 1.55 0.55 0.00 +miné miner ver m s 4.83 10.47 1.04 2.50 par:pas; +minée miner ver f s 4.83 10.47 0.20 1.01 par:pas; +minées miner ver f p 4.83 10.47 0.02 0.27 par:pas; +minuit minuit nom m s 38.51 29.86 38.47 29.80 +minuits minuit nom m p 38.51 29.86 0.03 0.07 +minéral minéral nom m s 1.03 0.81 0.28 0.74 +minérale minéral adj f s 4.20 8.78 3.28 5.88 +minérales minéral adj f p 4.20 8.78 0.31 0.74 +minéraliers minéralier nom m p 0.00 0.07 0.00 0.07 +minéralisation minéralisation nom f s 0.01 0.00 0.01 0.00 +minéralisés minéraliser ver m p 0.00 0.07 0.00 0.07 par:pas; +minéralisés minéralisé adj m p 0.00 0.07 0.00 0.07 +minéralogique minéralogique adj s 0.38 0.74 0.31 0.34 +minéralogiques minéralogique adj p 0.38 0.74 0.07 0.41 +minéraux minéral nom m p 1.03 0.81 0.76 0.07 +minus_habens minus_habens nom m 0.00 0.14 0.00 0.14 +minés miner ver m p 4.83 10.47 0.10 0.34 par:pas; +minus minus nom m 8.35 2.50 8.35 2.50 +minuscule minuscule adj s 7.26 62.09 5.07 38.04 +minuscules minuscule adj p 7.26 62.09 2.19 24.05 +minutage minutage nom m s 0.08 0.34 0.08 0.34 +minute minute nom f s 342.28 201.42 144.83 60.74 +minuter minuter ver 2.04 1.69 0.17 0.00 inf; +minuterie minuterie nom f s 1.34 2.36 1.21 2.36 +minuteries minuterie nom f p 1.34 2.36 0.13 0.00 +minutes minute nom f p 342.28 201.42 197.45 140.68 +minuteur minuteur nom m s 1.21 0.00 0.98 0.00 +minuteurs minuteur nom m p 1.21 0.00 0.22 0.00 +minutie minutie nom f s 0.62 3.58 0.48 3.45 +minuties minutie nom f p 0.62 3.58 0.14 0.14 +minutieuse minutieux adj f s 1.81 7.03 0.57 2.84 +minutieusement minutieusement adv 0.74 4.73 0.74 4.73 +minutieuses minutieux adj f p 1.81 7.03 0.02 1.08 +minutieux minutieux adj m 1.81 7.03 1.21 3.11 +minutions minuter ver 2.04 1.69 0.02 0.00 ind:imp:1p; +minutât minuter ver 2.04 1.69 0.00 0.07 sub:imp:3s; +minuté minuter ver m s 2.04 1.69 0.27 0.81 par:pas; +minutée minuter ver f s 2.04 1.69 0.04 0.07 par:pas; +minutés minuter ver m p 2.04 1.69 0.00 0.07 par:pas; +mioche mioche nom s 1.07 2.30 0.54 1.08 +mioches mioche nom p 1.07 2.30 0.53 1.22 +miquette miquette nom f s 0.00 0.34 0.00 0.34 +mir mir nom m s 0.33 0.68 0.33 0.68 +mira mirer ver 0.48 2.57 0.14 0.20 ind:pas:3s; +mirabelle mirabelle nom f s 0.01 1.96 0.00 0.74 +mirabelles mirabelle nom f p 0.01 1.96 0.01 1.22 +mirabellier mirabellier nom m s 0.00 0.34 0.00 0.14 +mirabelliers mirabellier nom m p 0.00 0.34 0.00 0.20 +mirabilis mirabilis nom m 0.12 0.14 0.12 0.14 +miracle miracle nom m s 56.89 42.16 39.78 34.12 +miracles miracle nom m p 56.89 42.16 17.10 8.04 +miraculant miraculant adj m s 0.00 0.14 0.00 0.07 +miraculantes miraculant adj f p 0.00 0.14 0.00 0.07 +miraculeuse miraculeux adj f s 4.43 9.26 1.73 3.99 +miraculeusement miraculeusement adv 1.34 4.53 1.34 4.53 +miraculeuses miraculeux adj f p 4.43 9.26 0.45 1.08 +miraculeux miraculeux adj m 4.43 9.26 2.25 4.19 +miraculé miraculé nom m s 0.55 0.88 0.45 0.41 +miraculée miraculé nom f s 0.55 0.88 0.05 0.34 +miraculés miraculé nom m p 0.55 0.88 0.05 0.14 +mirador mirador nom m s 0.23 4.73 0.15 3.04 +miradors mirador nom m p 0.23 4.73 0.08 1.69 +mirage mirage nom m s 1.83 10.07 1.42 6.08 +mirages mirage nom m p 1.83 10.07 0.42 3.99 +miraient mirer ver 0.48 2.57 0.00 0.14 ind:imp:3p; +mirais mirer ver 0.48 2.57 0.00 0.07 ind:imp:1s; +mirait mirer ver 0.48 2.57 0.14 0.41 ind:imp:3s; +mirant mirer ver 0.48 2.57 0.00 0.20 par:pre; +miraud miraud adj m s 0.02 0.14 0.02 0.07 +mirauds miraud adj m p 0.02 0.14 0.00 0.07 +mire mire nom f s 1.81 2.16 1.81 2.03 +mirent mettre ver 1004.84 1083.65 1.38 27.36 ind:pas:3p; +mirepoix mirepoix nom f 0.01 0.00 0.01 0.00 +mirer mirer ver 0.48 2.57 0.05 0.61 inf; +mirerais mirer ver 0.48 2.57 0.00 0.07 cnd:pre:2s; +mires mire nom f p 1.81 2.16 0.00 0.14 +mirette mirette nom f s 0.16 6.01 0.00 4.32 +mirettes mirette nom f p 0.16 6.01 0.16 1.69 +mirez mirer ver 0.48 2.57 0.00 0.07 imp:pre:2p; +mirifique mirifique adj s 0.03 1.08 0.02 0.61 +mirifiques mirifique adj p 0.03 1.08 0.01 0.47 +mirliflore mirliflore nom m s 0.00 0.07 0.00 0.07 +mirliton mirliton nom m s 0.05 1.15 0.04 0.34 +mirlitons mirliton nom m p 0.05 1.15 0.01 0.81 +mirmidon mirmidon nom m s 0.14 0.00 0.14 0.00 +miro miro adj s 1.32 0.61 1.32 0.54 +mirobolant mirobolant adj m s 0.17 1.42 0.14 0.54 +mirobolante mirobolant adj f s 0.17 1.42 0.01 0.27 +mirobolantes mirobolant adj f p 0.17 1.42 0.02 0.34 +mirobolants mirobolant adj m p 0.17 1.42 0.00 0.27 +miroir miroir nom m s 28.35 63.99 24.89 48.58 +miroirs miroir nom m p 28.35 63.99 3.46 15.41 +miroita miroiter ver 0.39 5.74 0.00 0.20 ind:pas:3s; +miroitaient miroiter ver 0.39 5.74 0.01 0.47 ind:imp:3p; +miroitait miroiter ver 0.39 5.74 0.01 0.68 ind:imp:3s; +miroitant miroiter ver 0.39 5.74 0.03 0.34 par:pre; +miroitante miroitant adj f s 0.04 3.51 0.01 1.82 +miroitantes miroitant adj f p 0.04 3.51 0.00 0.61 +miroitants miroitant adj m p 0.04 3.51 0.02 0.34 +miroite miroiter ver 0.39 5.74 0.03 0.81 ind:pre:3s; +miroitement miroitement nom m s 0.04 2.43 0.04 1.89 +miroitements miroitement nom m p 0.04 2.43 0.00 0.54 +miroitent miroiter ver 0.39 5.74 0.03 0.54 ind:pre:3p; +miroiter miroiter ver 0.39 5.74 0.29 2.70 inf; +miroiterie miroiterie nom f s 0.02 0.07 0.02 0.07 +miroitier miroitier nom m s 0.02 0.20 0.02 0.14 +miroitiers miroitier nom m p 0.02 0.20 0.00 0.07 +miroités miroité adj m p 0.00 0.07 0.00 0.07 +mironton mironton nom m s 0.01 1.08 0.01 0.81 +mirontons mironton nom m p 0.01 1.08 0.00 0.27 +miros miro adj p 1.32 0.61 0.00 0.07 +miroton miroton nom m s 0.01 0.34 0.01 0.34 +mirée mirer ver f s 0.48 2.57 0.00 0.07 par:pas; +mirus mirus nom m 0.09 0.54 0.09 0.54 +mis mettre ver m 1004.84 1083.65 228.57 245.61 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +misa miser ver 11.80 3.78 0.34 0.14 ind:pas:3s; +misai miser ver 11.80 3.78 0.00 0.07 ind:pas:1s; +misaient miser ver 11.80 3.78 0.04 0.07 ind:imp:3p; +misaine misaine nom f s 0.23 0.27 0.23 0.20 +misaines misaine nom f p 0.23 0.27 0.00 0.07 +misais miser ver 11.80 3.78 0.03 0.20 ind:imp:1s; +misait miser ver 11.80 3.78 0.07 0.47 ind:imp:3s; +misant miser ver 11.80 3.78 0.20 0.27 par:pre; +misanthrope misanthrope nom s 0.27 0.47 0.27 0.47 +misanthropes misanthrope adj p 0.06 0.61 0.00 0.07 +misanthropie misanthropie nom f s 0.01 0.41 0.01 0.41 +misanthropiques misanthropique adj p 0.00 0.07 0.00 0.07 +miscible miscible adj m s 0.01 0.00 0.01 0.00 +mise mettre ver f s 1004.84 1083.65 35.33 46.69 par:pas; +misent miser ver 11.80 3.78 0.36 0.14 ind:pre:3p; +miser miser ver 11.80 3.78 2.79 0.74 inf; +misera miser ver 11.80 3.78 0.10 0.00 ind:fut:3s; +miserais miser ver 11.80 3.78 0.26 0.00 cnd:pre:1s;cnd:pre:2s; +miseras miser ver 11.80 3.78 0.02 0.00 ind:fut:2s; +miserere miserere nom m 0.80 0.34 0.80 0.34 +miseriez miser ver 11.80 3.78 0.14 0.00 cnd:pre:2p; +miseront miser ver 11.80 3.78 0.01 0.00 ind:fut:3p; +mises mettre ver f p 1004.84 1083.65 5.36 9.05 par:pas; +misez miser ver 11.80 3.78 1.42 0.00 imp:pre:2p;ind:pre:2p; +misiez miser ver 11.80 3.78 0.21 0.00 ind:imp:2p; +misogyne misogyne adj s 0.32 0.54 0.29 0.47 +misogynes misogyne adj p 0.32 0.54 0.02 0.07 +misogynie misogynie nom f s 0.23 1.01 0.23 1.01 +misons miser ver 11.80 3.78 0.20 0.00 imp:pre:1p;ind:pre:1p; +misât miser ver 11.80 3.78 0.00 0.07 sub:imp:3s; +miss miss nom f 39.08 9.86 39.08 9.86 +missel missel nom m s 0.59 3.38 0.53 3.04 +missels missel nom m p 0.59 3.38 0.06 0.34 +missent mettre ver 1004.84 1083.65 0.00 0.41 sub:imp:3p; +missile missile nom m s 16.70 0.74 7.47 0.41 +missiles missile nom m p 16.70 0.74 9.23 0.34 +missilier missilier nom m s 0.16 0.00 0.16 0.00 +mission_suicide mission_suicide nom f s 0.03 0.07 0.03 0.07 +mission mission nom f s 85.24 48.45 80.02 42.36 +missionna missionner ver 0.11 0.14 0.00 0.07 ind:pas:3s; +missionnaire missionnaire nom s 2.29 2.16 1.27 0.95 +missionnaires missionnaire nom p 2.29 2.16 1.02 1.22 +missionné missionner ver m s 0.11 0.14 0.11 0.00 par:pas; +missionnés missionner ver m p 0.11 0.14 0.00 0.07 par:pas; +missions mission nom f p 85.24 48.45 5.22 6.08 +missive missive nom f s 0.92 2.97 0.81 1.82 +missives missive nom f p 0.92 2.97 0.11 1.15 +mister mister nom m s 2.14 1.22 2.14 1.22 +misère misère nom f s 18.77 47.23 16.85 39.46 +misères misère nom f p 18.77 47.23 1.92 7.77 +mistigri mistigri nom m s 0.00 0.14 0.00 0.07 +mistigris mistigri nom m p 0.00 0.14 0.00 0.07 +mistonne miston nom f s 0.00 0.41 0.00 0.20 +mistonnes miston nom f p 0.00 0.41 0.00 0.20 +mistoufle mistoufle nom f s 0.00 0.81 0.00 0.68 +mistoufles mistoufle nom f p 0.00 0.81 0.00 0.14 +mistral mistral nom m s 0.02 2.03 0.02 1.96 +mistrals mistral nom m p 0.02 2.03 0.00 0.07 +misé miser ver m s 11.80 3.78 2.68 0.95 par:pas; +misérabilisme misérabilisme nom m s 0.01 0.14 0.01 0.14 +misérabiliste misérabiliste adj m s 0.01 0.14 0.01 0.14 +misérable misérable adj s 13.16 22.97 10.17 16.22 +misérablement misérablement adv 0.36 2.16 0.36 2.16 +misérables misérable adj p 13.16 22.97 2.98 6.76 +miséreuse miséreux adj f s 0.23 0.54 0.02 0.27 +miséreuses miséreuse nom f p 0.01 0.00 0.01 0.00 +miséreux miséreux nom m 0.89 1.35 0.88 1.35 +miséricorde miséricorde nom f s 8.79 5.20 8.77 5.07 +miséricordes miséricorde nom f p 8.79 5.20 0.02 0.14 +miséricordieuse miséricordieux adj f s 4.69 1.76 0.36 0.61 +miséricordieusement miséricordieusement adv 0.00 0.07 0.00 0.07 +miséricordieuses miséricordieux adj f p 4.69 1.76 0.10 0.14 +miséricordieux miséricordieux adj m s 4.69 1.76 4.23 1.01 +mit mettre ver 1004.84 1083.65 7.48 185.20 ind:pas:3s; +mita mita nom f s 0.06 0.07 0.06 0.07 +mitaine mitaine nom f s 0.32 0.95 0.06 0.07 +mitaines mitaine nom f p 0.32 0.95 0.26 0.88 +mitan mitan nom m s 0.40 3.58 0.40 3.58 +mitard mitard nom m s 1.91 4.32 1.91 4.26 +mitarder mitarder ver 0.00 0.20 0.00 0.07 inf; +mitards mitard nom m p 1.91 4.32 0.00 0.07 +mitardés mitarder ver m p 0.00 0.20 0.00 0.14 par:pas; +mitchouriniens mitchourinien adj m p 0.00 0.07 0.00 0.07 +mite mite nom f s 1.18 2.23 0.36 0.54 +mitent miter ver 0.23 0.34 0.00 0.07 ind:pre:3p; +miter miter ver 0.23 0.34 0.20 0.00 inf; +mites mite nom f p 1.18 2.23 0.81 1.69 +miteuse miteux adj f s 1.98 4.86 0.25 1.08 +miteusement miteusement adv 0.00 0.07 0.00 0.07 +miteuserie miteuserie nom f s 0.00 0.14 0.00 0.14 +miteuses miteux adj f p 1.98 4.86 0.02 0.41 +miteux miteux adj m 1.98 4.86 1.72 3.38 +mithriaque mithriaque adj m s 0.00 0.14 0.00 0.14 +mithridatisation mithridatisation nom f s 0.00 0.07 0.00 0.07 +mithridatisé mithridatiser ver m s 0.00 0.20 0.00 0.07 par:pas; +mithridatisés mithridatiser ver m p 0.00 0.20 0.00 0.14 par:pas; +mièvre mièvre adj s 0.20 1.35 0.20 0.95 +mièvrement mièvrement adv 0.01 0.00 0.01 0.00 +mièvrerie mièvrerie nom f s 0.14 1.01 0.01 0.81 +mièvreries mièvrerie nom f p 0.14 1.01 0.13 0.20 +mièvres mièvre adj p 0.20 1.35 0.01 0.41 +mitigea mitiger ver 0.22 0.34 0.00 0.07 ind:pas:3s; +mitiger mitiger ver 0.22 0.34 0.05 0.07 inf; +mitigeurs mitigeur nom m p 0.00 0.07 0.00 0.07 +mitigé mitiger ver m s 0.22 0.34 0.10 0.20 par:pas; +mitigée mitiger ver f s 0.22 0.34 0.03 0.00 par:pas; +mitigées mitigé adj f p 0.07 0.47 0.02 0.07 +mitigés mitiger ver m p 0.22 0.34 0.03 0.00 par:pas; +mitochondrial mitochondrial adj m s 0.03 0.00 0.03 0.00 +mitochondrie mitochondrie nom f s 0.33 0.00 0.04 0.00 +mitochondries mitochondrie nom f p 0.33 0.00 0.29 0.00 +miton miton nom m s 0.00 0.07 0.00 0.07 +mitonnaient mitonner ver 0.19 2.70 0.00 0.07 ind:imp:3p; +mitonnait mitonner ver 0.19 2.70 0.00 0.07 ind:imp:3s; +mitonnant mitonner ver 0.19 2.70 0.00 0.14 par:pre; +mitonne mitonner ver 0.19 2.70 0.03 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mitonnent mitonner ver 0.19 2.70 0.00 0.20 ind:pre:3p; +mitonner mitonner ver 0.19 2.70 0.14 0.74 inf; +mitonnerait mitonner ver 0.19 2.70 0.00 0.07 cnd:pre:3s; +mitonné mitonner ver m s 0.19 2.70 0.02 0.27 par:pas; +mitonnée mitonner ver f s 0.19 2.70 0.00 0.27 par:pas; +mitonnées mitonner ver f p 0.19 2.70 0.00 0.27 par:pas; +mitonnés mitonner ver m p 0.19 2.70 0.00 0.14 par:pas; +mitose mitose nom f s 0.14 0.00 0.14 0.00 +mitotique mitotique adj f s 0.03 0.00 0.03 0.00 +mitoufle mitoufle nom f s 0.00 0.07 0.00 0.07 +mitoyen mitoyen adj m s 0.43 1.55 0.26 1.01 +mitoyenne mitoyen adj f s 0.43 1.55 0.02 0.27 +mitoyennes mitoyen adj f p 0.43 1.55 0.02 0.07 +mitoyenneté mitoyenneté nom f s 0.00 0.20 0.00 0.20 +mitoyens mitoyen adj m p 0.43 1.55 0.14 0.20 +mitra mitrer ver 0.00 0.20 0.00 0.07 ind:pas:3s; +mitrailla mitrailler ver 1.55 3.85 0.00 0.20 ind:pas:3s; +mitraillade mitraillade nom f s 0.00 1.01 0.00 0.88 +mitraillades mitraillade nom f p 0.00 1.01 0.00 0.14 +mitraillage mitraillage nom m s 0.15 0.07 0.12 0.07 +mitraillages mitraillage nom m p 0.15 0.07 0.03 0.00 +mitraillaient mitrailler ver 1.55 3.85 0.01 0.14 ind:imp:3p; +mitraillait mitrailler ver 1.55 3.85 0.00 0.27 ind:imp:3s; +mitraillant mitrailler ver 1.55 3.85 0.04 0.61 par:pre; +mitraille mitraille nom f s 0.65 3.18 0.65 3.04 +mitraillent mitrailler ver 1.55 3.85 0.08 0.27 ind:pre:3p; +mitrailler mitrailler ver 1.55 3.85 0.59 0.61 inf; +mitrailleraient mitrailler ver 1.55 3.85 0.00 0.07 cnd:pre:3p; +mitrailles mitrailler ver 1.55 3.85 0.02 0.00 ind:pre:2s; +mitraillette mitraillette nom f s 3.88 11.35 2.62 7.09 +mitraillettes mitraillette nom f p 3.88 11.35 1.26 4.26 +mitrailleur mitrailleur nom m s 6.19 15.47 0.44 0.74 +mitrailleurs mitrailleur nom m p 6.19 15.47 0.43 1.15 +mitrailleuse mitrailleur nom f s 6.19 15.47 5.32 7.03 +mitrailleuses mitrailleuse nom f p 3.40 0.00 3.40 0.00 +mitrailliez mitrailler ver 1.55 3.85 0.01 0.00 ind:imp:2p; +mitraillèrent mitrailler ver 1.55 3.85 0.00 0.20 ind:pas:3p; +mitraillé mitrailler ver m s 1.55 3.85 0.09 0.61 par:pas; +mitraillée mitrailler ver f s 1.55 3.85 0.04 0.07 par:pas; +mitraillées mitrailler ver f p 1.55 3.85 0.10 0.07 par:pas; +mitraillés mitrailler ver m p 1.55 3.85 0.14 0.54 par:pas; +mitral mitral adj m s 0.30 0.00 0.04 0.00 +mitrale mitral adj f s 0.30 0.00 0.27 0.00 +mitre mitre nom f s 0.26 1.96 0.26 1.49 +mitres mitre nom f p 0.26 1.96 0.00 0.47 +mitron mitron nom m s 0.14 3.58 0.14 2.91 +mitrons mitron nom m p 0.14 3.58 0.00 0.68 +mitré mitré adj m s 0.00 0.61 0.00 0.47 +mitrés mitré adj m p 0.00 0.61 0.00 0.14 +mité mité adj m s 0.03 1.01 0.03 0.27 +mitée mité adj f s 0.03 1.01 0.00 0.20 +mitées mité adj f p 0.03 1.01 0.00 0.20 +mités mité adj m p 0.03 1.01 0.00 0.34 +mixage mixage nom m s 0.86 0.27 0.86 0.27 +mixait mixer ver 1.11 0.27 0.01 0.07 ind:imp:3s; +mixe mixer ver 1.11 0.27 0.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mixer mixer ver 1.11 0.27 0.78 0.00 inf; +mixers mixer nom m p 0.78 0.14 0.11 0.07 +mixeur mixeur nom m s 1.21 0.14 1.05 0.14 +mixeurs mixeur nom m p 1.21 0.14 0.15 0.00 +mixité mixité nom f s 0.07 0.14 0.07 0.14 +mixte mixte adj s 2.81 3.45 2.23 2.30 +mixtes mixte adj p 2.81 3.45 0.59 1.15 +mixture mixture nom f s 0.93 1.62 0.92 1.35 +mixtures mixture nom f p 0.93 1.62 0.01 0.27 +mixé mixer ver m s 1.11 0.27 0.13 0.14 par:pas; +mixée mixer ver f s 1.11 0.27 0.05 0.07 par:pas; +mixés mixer ver m p 1.11 0.27 0.03 0.00 par:pas; +ml ml adj_num 0.03 0.00 0.03 0.00 +mlle mlle nom_sup f s 45.69 6.55 45.69 6.55 +mm mm nom_sup m 3.79 1.35 3.79 1.35 +mme mme nom_sup f s 81.64 33.24 81.64 33.24 +mn mn nom m s 0.02 0.00 0.02 0.00 +mnémonique mnémonique adj m s 0.05 0.07 0.05 0.00 +mnémoniques mnémonique adj m p 0.05 0.07 0.00 0.07 +mnémotechnie mnémotechnie nom f s 0.00 0.07 0.00 0.07 +mnémotechnique mnémotechnique adj s 0.03 0.00 0.03 0.00 +mnésiques mnésique adj m p 0.00 0.07 0.00 0.07 +moï moï adj m s 0.00 0.27 0.00 0.27 +moïse moïse nom m s 0.05 0.47 0.05 0.47 +moût moût nom m s 0.00 0.68 0.00 0.54 +moûts moût nom m p 0.00 0.68 0.00 0.14 +mob mob nom f s 0.93 0.68 0.93 0.68 +mobil_home mobil_home nom m s 0.07 0.00 0.07 0.00 +mobile mobile nom m s 8.01 2.84 7.03 1.15 +mobiles mobile nom m p 8.01 2.84 0.98 1.69 +mobilier mobilier nom m s 1.70 5.74 1.66 5.27 +mobiliers mobilier nom m p 1.70 5.74 0.04 0.47 +mobilisa mobiliser ver 3.99 9.39 0.02 0.27 ind:pas:3s; +mobilisable mobilisable adj m s 0.00 0.74 0.00 0.47 +mobilisables mobilisable adj f p 0.00 0.74 0.00 0.27 +mobilisaient mobiliser ver 3.99 9.39 0.01 0.27 ind:imp:3p; +mobilisais mobiliser ver 3.99 9.39 0.00 0.14 ind:imp:1s; +mobilisait mobiliser ver 3.99 9.39 0.01 0.41 ind:imp:3s; +mobilisant mobiliser ver 3.99 9.39 0.06 0.34 par:pre; +mobilisateur mobilisateur adj m s 0.01 0.34 0.01 0.20 +mobilisateurs mobilisateur adj m p 0.01 0.34 0.00 0.14 +mobilisation mobilisation nom f s 0.86 4.39 0.86 4.39 +mobilise mobiliser ver 3.99 9.39 0.42 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mobilisent mobiliser ver 3.99 9.39 0.11 0.14 ind:pre:3p; +mobiliser mobiliser ver 3.99 9.39 1.13 1.35 inf; +mobilisera mobiliser ver 3.99 9.39 0.03 0.00 ind:fut:3s; +mobiliserait mobiliser ver 3.99 9.39 0.01 0.07 cnd:pre:3s; +mobiliserons mobiliser ver 3.99 9.39 0.01 0.07 ind:fut:1p; +mobilisez mobiliser ver 3.99 9.39 0.28 0.00 imp:pre:2p;ind:pre:2p; +mobilisions mobiliser ver 3.99 9.39 0.01 0.00 ind:imp:1p; +mobilisons mobiliser ver 3.99 9.39 0.01 0.00 ind:pre:1p; +mobilisé mobiliser ver m s 3.99 9.39 0.83 2.97 par:pas; +mobilisée mobiliser ver f s 3.99 9.39 0.53 0.27 par:pas; +mobilisées mobiliser ver f p 3.99 9.39 0.08 0.27 par:pas; +mobilisés mobiliser ver m p 3.99 9.39 0.43 2.23 par:pas; +mobilière mobilier adj f s 0.22 0.88 0.00 0.20 +mobilières mobilier adj f p 0.22 0.88 0.04 0.27 +mobilité mobilité nom f s 0.40 1.96 0.40 1.96 +mobylette mobylette nom f s 0.89 2.09 0.87 1.82 +mobylettes mobylette nom f p 0.89 2.09 0.02 0.27 +mocassin mocassin nom m s 0.63 2.50 0.06 0.07 +mocassins mocassin nom m p 0.63 2.50 0.57 2.43 +mâcha mâcher ver 5.00 12.30 0.00 0.47 ind:pas:3s; +mâchage mâchage nom m s 0.00 0.07 0.00 0.07 +mâchaient mâcher ver 5.00 12.30 0.01 0.47 ind:imp:3p; +mâchais mâcher ver 5.00 12.30 0.10 0.07 ind:imp:1s; +mâchait mâcher ver 5.00 12.30 0.14 2.09 ind:imp:3s; +mâchant mâcher ver 5.00 12.30 0.16 1.82 par:pre; +mochard mochard adj m s 0.00 0.41 0.00 0.20 +mocharde mochard adj f s 0.00 0.41 0.00 0.20 +mâche mâcher ver 5.00 12.30 1.37 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +moche moche adj s 28.73 17.77 25.64 14.32 +mâchefer mâchefer nom m s 0.01 2.57 0.01 2.57 +mâchent mâcher ver 5.00 12.30 0.16 0.20 ind:pre:3p; +mâcher mâcher ver 5.00 12.30 1.61 3.78 inf; +mâcherai mâcher ver 5.00 12.30 0.04 0.07 ind:fut:1s; +mâcherais mâcher ver 5.00 12.30 0.01 0.00 cnd:pre:1s; +mâcherait mâcher ver 5.00 12.30 0.01 0.07 cnd:pre:3s; +mâcherez mâcher ver 5.00 12.30 0.00 0.07 ind:fut:2p; +mâches mâcher ver 5.00 12.30 0.15 0.00 ind:pre:2s; +moches moche adj p 28.73 17.77 3.09 3.45 +mocheté mocheté nom f s 0.75 0.88 0.66 0.41 +mochetés mocheté nom f p 0.75 0.88 0.08 0.47 +mâcheur mâcheur nom m s 0.05 0.07 0.04 0.00 +mâcheurs mâcheur nom m p 0.05 0.07 0.00 0.07 +mâcheuse mâcheur nom f s 0.05 0.07 0.01 0.00 +mâchez mâcher ver 5.00 12.30 0.31 0.00 imp:pre:2p;ind:pre:2p; +mâchicoulis mâchicoulis nom m 0.00 0.34 0.00 0.34 +mâchoire mâchoire nom f s 7.90 23.58 6.80 11.28 +mâchoires mâchoire nom f p 7.90 23.58 1.09 12.30 +mâchonna mâchonner ver 0.22 4.59 0.00 0.41 ind:pas:3s; +mâchonnaient mâchonner ver 0.22 4.59 0.00 0.20 ind:imp:3p; +mâchonnais mâchonner ver 0.22 4.59 0.00 0.07 ind:imp:1s; +mâchonnait mâchonner ver 0.22 4.59 0.01 0.61 ind:imp:3s; +mâchonnant mâchonner ver 0.22 4.59 0.16 1.01 par:pre; +mâchonne mâchonner ver 0.22 4.59 0.01 0.68 ind:pre:3s; +mâchonnements mâchonnement nom m p 0.00 0.14 0.00 0.14 +mâchonnent mâchonner ver 0.22 4.59 0.00 0.14 ind:pre:3p; +mâchonner mâchonner ver 0.22 4.59 0.04 1.01 inf; +mâchonné mâchonner ver m s 0.22 4.59 0.00 0.34 par:pas; +mâchonnés mâchonner ver m p 0.22 4.59 0.00 0.14 par:pas; +mâchons mâcher ver 5.00 12.30 0.00 0.07 imp:pre:1p; +mâchouilla mâchouiller ver 0.31 1.62 0.00 0.27 ind:pas:3s; +mâchouillait mâchouiller ver 0.31 1.62 0.00 0.34 ind:imp:3s; +mâchouillant mâchouiller ver 0.31 1.62 0.02 0.61 par:pre; +mâchouille mâchouiller ver 0.31 1.62 0.10 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mâchouiller mâchouiller ver 0.31 1.62 0.04 0.20 inf; +mâchouilles mâchouiller ver 0.31 1.62 0.07 0.00 ind:pre:2s; +mâchouilleur mâchouilleur nom m s 0.02 0.07 0.02 0.07 +mâchouillé mâchouiller ver m s 0.31 1.62 0.07 0.07 par:pas; +mâchouillée mâchouiller ver f s 0.31 1.62 0.01 0.07 par:pas; +mâchèrent mâcher ver 5.00 12.30 0.00 0.07 ind:pas:3p; +mâché mâcher ver m s 5.00 12.30 0.91 1.42 par:pas; +mâchée mâcher ver f s 5.00 12.30 0.01 0.14 par:pas; +mâchuré mâchurer ver m s 0.00 0.14 0.00 0.07 par:pas; +mâchurée mâchurer ver f s 0.00 0.14 0.00 0.07 par:pas; +mâchés mâcher ver m p 5.00 12.30 0.01 0.20 par:pas; +moco moco nom m s 0.19 0.00 0.19 0.00 +mâconnaise mâconnais adj f s 0.00 0.14 0.00 0.07 +mâconnaises mâconnais adj f p 0.00 0.14 0.00 0.07 +mod mod nom m s 0.01 0.00 0.01 0.00 +modalité modalité nom f s 0.41 2.30 0.01 0.00 +modalités modalité nom f p 0.41 2.30 0.40 2.30 +mode mode nom s 31.67 51.69 30.79 46.96 +model model nom m s 0.99 0.00 0.99 0.00 +modela modeler ver 2.42 8.24 0.00 0.20 ind:pas:3s; +modelable modelable adj s 0.00 0.07 0.00 0.07 +modelage modelage nom m s 0.04 0.20 0.04 0.20 +modelaient modeler ver 2.42 8.24 0.00 0.20 ind:imp:3p; +modelais modeler ver 2.42 8.24 0.00 0.27 ind:imp:1s; +modelait modeler ver 2.42 8.24 0.01 0.47 ind:imp:3s; +modelant modeler ver 2.42 8.24 0.00 0.34 par:pre; +modeler modeler ver 2.42 8.24 1.16 2.03 inf; +modeleur modeleur nom m s 0.04 0.00 0.04 0.00 +modelez modeler ver 2.42 8.24 0.28 0.00 imp:pre:2p;ind:pre:2p; +modelé modeler ver m s 2.42 8.24 0.35 1.22 par:pas; +modelée modeler ver f s 2.42 8.24 0.18 1.01 par:pas; +modelées modeler ver f p 2.42 8.24 0.14 0.54 par:pas; +modelés modeler ver m p 2.42 8.24 0.01 0.54 par:pas; +modem modem nom m s 0.43 0.00 0.37 0.00 +modems modem nom m p 0.43 0.00 0.06 0.00 +moderato moderato adv 0.00 0.81 0.00 0.81 +modern_style modern_style nom m s 0.00 0.27 0.00 0.27 +modern_style modern_style nom m 0.01 0.00 0.01 0.00 +moderne moderne adj s 21.30 34.73 16.77 24.46 +modernes moderne adj p 21.30 34.73 4.53 10.27 +modernisaient moderniser ver 0.81 1.69 0.00 0.07 ind:imp:3p; +modernisait moderniser ver 0.81 1.69 0.00 0.07 ind:imp:3s; +modernisation modernisation nom f s 0.36 0.74 0.36 0.68 +modernisations modernisation nom f p 0.36 0.74 0.00 0.07 +modernise moderniser ver 0.81 1.69 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modernisent moderniser ver 0.81 1.69 0.03 0.14 ind:pre:3p; +moderniser moderniser ver 0.81 1.69 0.48 0.81 inf; +modernisme modernisme nom m s 0.08 1.15 0.08 1.15 +modernisons moderniser ver 0.81 1.69 0.01 0.07 imp:pre:1p;ind:pre:1p; +modernissime modernissime adj s 0.00 0.07 0.00 0.07 +moderniste moderniste adj f s 0.01 0.20 0.01 0.07 +modernistes moderniste nom p 0.04 0.00 0.03 0.00 +modernisé moderniser ver m s 0.81 1.69 0.14 0.27 par:pas; +modernisée moderniser ver f s 0.81 1.69 0.04 0.14 par:pas; +modernisés moderniser ver m p 0.81 1.69 0.05 0.07 par:pas; +modernité modernité nom f s 0.71 1.35 0.71 1.22 +modernités modernité nom f p 0.71 1.35 0.00 0.14 +modes mode nom p 31.67 51.69 0.89 4.73 +modeste modeste adj s 10.64 31.69 9.06 23.38 +modestement modestement adv 0.52 4.39 0.52 4.39 +modestes modeste adj p 10.64 31.69 1.58 8.31 +modestie modestie nom f s 3.96 10.34 3.96 10.27 +modesties modestie nom f p 3.96 10.34 0.00 0.07 +modicité modicité nom f s 0.00 0.20 0.00 0.20 +modifia modifier ver 10.90 18.85 0.00 0.61 ind:pas:3s; +modifiable modifiable adj f s 0.05 0.20 0.04 0.14 +modifiables modifiable adj p 0.05 0.20 0.01 0.07 +modifiaient modifier ver 10.90 18.85 0.00 0.95 ind:imp:3p; +modifiais modifier ver 10.90 18.85 0.01 0.00 ind:imp:1s; +modifiait modifier ver 10.90 18.85 0.04 1.76 ind:imp:3s; +modifiant modifier ver 10.90 18.85 0.20 0.81 par:pre; +modificateur modificateur adj m s 0.03 0.00 0.03 0.00 +modification modification nom f s 2.69 4.26 1.00 1.96 +modifications modification nom f p 2.69 4.26 1.69 2.30 +modifie modifier ver 10.90 18.85 1.04 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modifient modifier ver 10.90 18.85 0.17 0.34 ind:pre:3p; +modifier modifier ver 10.90 18.85 4.17 6.96 inf; +modifiera modifier ver 10.90 18.85 0.03 0.00 ind:fut:3s; +modifierai modifier ver 10.90 18.85 0.02 0.00 ind:fut:1s; +modifieraient modifier ver 10.90 18.85 0.00 0.20 cnd:pre:3p; +modifierais modifier ver 10.90 18.85 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +modifierait modifier ver 10.90 18.85 0.04 0.34 cnd:pre:3s; +modifiez modifier ver 10.90 18.85 0.22 0.00 imp:pre:2p;ind:pre:2p; +modifions modifier ver 10.90 18.85 0.17 0.00 imp:pre:1p;ind:pre:1p; +modifiât modifier ver 10.90 18.85 0.00 0.14 sub:imp:3s; +modifièrent modifier ver 10.90 18.85 0.02 0.14 ind:pas:3p; +modifié modifier ver m s 10.90 18.85 3.38 3.18 par:pas; +modifiée modifier ver f s 10.90 18.85 0.64 1.15 par:pas; +modifiées modifier ver f p 10.90 18.85 0.21 0.34 par:pas; +modifiés modifier ver m p 10.90 18.85 0.53 0.20 par:pas; +modillon modillon nom m s 0.00 0.47 0.00 0.07 +modillons modillon nom m p 0.00 0.47 0.00 0.41 +modique modique adj s 0.33 0.95 0.32 0.74 +modiques modique adj f p 0.33 0.95 0.01 0.20 +modiste modiste nom s 0.15 1.55 0.14 1.15 +modistes modiste nom p 0.15 1.55 0.01 0.41 +modèle modèle nom m s 25.06 35.95 19.56 27.50 +modèlent modeler ver 2.42 8.24 0.00 0.14 ind:pre:3p; +modèles modèle nom m p 25.06 35.95 5.50 8.45 +modère modérer ver 1.32 3.51 0.41 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modula moduler ver 0.20 4.19 0.00 0.41 ind:pas:3s; +modulable modulable adj m s 0.07 0.14 0.03 0.07 +modulables modulable adj m p 0.07 0.14 0.04 0.07 +modulai moduler ver 0.20 4.19 0.00 0.07 ind:pas:1s; +modulaire modulaire adj m s 0.11 0.00 0.06 0.00 +modulaires modulaire adj p 0.11 0.00 0.04 0.00 +modulais moduler ver 0.20 4.19 0.00 0.07 ind:imp:1s; +modulait moduler ver 0.20 4.19 0.00 0.14 ind:imp:3s; +modulant moduler ver 0.20 4.19 0.00 0.34 par:pre; +modulateur modulateur adj m s 0.47 0.00 0.47 0.00 +modulation modulation nom f s 0.19 2.36 0.16 1.01 +modulations modulation nom f p 0.19 2.36 0.04 1.35 +module module nom m s 7.03 0.61 6.49 0.54 +modulent moduler ver 0.20 4.19 0.00 0.07 ind:pre:3p; +moduler moduler ver 0.20 4.19 0.07 0.47 inf; +modules module nom m p 7.03 0.61 0.54 0.07 +modélisation modélisation nom f s 0.04 0.00 0.04 0.00 +modélisme modélisme nom m s 0.03 0.00 0.03 0.00 +modéliste modéliste nom s 0.04 0.27 0.04 0.27 +modélisé modéliser ver m s 0.02 0.00 0.01 0.00 par:pas; +modélisée modéliser ver f s 0.02 0.00 0.01 0.00 par:pas; +modulé moduler ver m s 0.20 4.19 0.01 0.95 par:pas; +modulée moduler ver f s 0.20 4.19 0.01 0.68 par:pas; +modulées moduler ver f p 0.20 4.19 0.00 0.14 par:pas; +modulés moduler ver m p 0.20 4.19 0.00 0.47 par:pas; +modéra modérer ver 1.32 3.51 0.00 0.07 ind:pas:3s; +modérai modérer ver 1.32 3.51 0.00 0.07 ind:pas:1s; +modérait modérer ver 1.32 3.51 0.00 0.07 ind:imp:3s; +modérant modérer ver 1.32 3.51 0.00 0.14 par:pre; +modérateur modérateur nom m s 0.01 0.14 0.01 0.07 +modérateurs modérateur nom m p 0.01 0.14 0.00 0.07 +modération modération nom f s 1.30 2.36 1.30 2.30 +modérations modération nom f p 1.30 2.36 0.00 0.07 +modérer modérer ver 1.32 3.51 0.34 1.62 inf; +modéreras modérer ver 1.32 3.51 0.01 0.00 ind:fut:2s; +modérez modérer ver 1.32 3.51 0.06 0.20 imp:pre:2p; +modéré modéré adj m s 0.52 3.18 0.25 1.22 +modérée modérer ver f s 1.32 3.51 0.20 0.00 par:pas; +modérées modérer ver f p 1.32 3.51 0.03 0.14 par:pas; +modérément modérément adv 0.21 2.36 0.21 2.36 +modérés modéré nom m p 0.45 1.42 0.14 0.95 +modus_operandi modus_operandi nom m s 0.32 0.00 0.32 0.00 +modus_vivendi modus_vivendi nom m 0.01 0.47 0.01 0.47 +moelle moelle nom f s 4.23 6.15 4.21 5.34 +moelles moelle nom f p 4.23 6.15 0.01 0.81 +moelleuse moelleux adj f s 1.22 6.22 0.14 1.49 +moelleusement moelleusement adv 0.00 0.27 0.00 0.27 +moelleuses moelleux adj f p 1.22 6.22 0.10 0.20 +moelleux moelleux adj m 1.22 6.22 0.98 4.53 +moellon moellon nom m s 0.01 2.50 0.00 0.41 +moellons moellon nom m p 0.01 2.50 0.01 2.09 +moeurs moeurs nom f p 3.08 21.08 3.08 21.08 +moghol moghol nom m s 0.01 0.00 0.01 0.00 +mogol mogol adj m s 0.00 0.14 0.00 0.14 +mohair mohair nom m s 0.29 0.54 0.29 0.47 +mohairs mohair nom m p 0.29 0.54 0.00 0.07 +mohican mohican nom m s 0.01 0.00 0.01 0.00 +moho moho nom m s 0.03 0.00 0.03 0.00 +moi_moi_moi moi_moi_moi nom m 0.00 0.07 0.00 0.07 +moi_même moi_même pro_per s 83.25 107.30 83.25 107.30 +moi moi pro_per s 3675.68 1877.57 3675.68 1877.57 +moignon moignon nom m s 0.57 4.05 0.36 1.82 +moignons moignon nom m p 0.57 4.05 0.20 2.23 +moindre moindre adj_sup s 50.12 130.27 46.74 116.96 +moindrement moindrement adv 0.02 0.07 0.02 0.07 +moindres moindre adj_sup p 50.12 130.27 3.38 13.31 +moine moine nom m s 11.82 34.73 8.21 18.04 +moineau moineau nom m s 5.65 8.38 2.92 4.32 +moineaux moineau nom m p 5.65 8.38 2.73 4.05 +moines moine nom m p 11.82 34.73 3.62 16.69 +moinillon moinillon nom m s 0.04 0.54 0.04 0.41 +moinillons moinillon nom m p 0.04 0.54 0.00 0.14 +moins moins adv_sup 478.75 718.18 478.75 718.18 +moiraient moirer ver 0.00 0.81 0.00 0.07 ind:imp:3p; +moire moire nom f s 0.04 1.76 0.02 1.28 +moires moire nom f p 0.04 1.76 0.02 0.47 +moiré moiré adj m s 0.04 1.96 0.02 0.61 +moirée moiré adj f s 0.04 1.96 0.01 0.74 +moirées moiré adj f p 0.04 1.96 0.00 0.27 +moirure moirure nom f s 0.00 0.34 0.00 0.07 +moirures moirure nom f p 0.00 0.34 0.00 0.27 +moirés moiré adj m p 0.04 1.96 0.01 0.34 +mois mois nom m 312.31 304.86 312.31 304.86 +moise moise nom f s 0.37 0.00 0.27 0.00 +moises moise nom f p 0.37 0.00 0.10 0.00 +moisi moisir ver m s 3.85 5.00 0.56 0.47 par:pas; +moisie moisi adj f s 0.61 4.46 0.19 0.74 +moisies moisi adj f p 0.61 4.46 0.02 1.01 +moisir moisir ver 3.85 5.00 2.46 2.09 inf; +moisira moisir ver 3.85 5.00 0.01 0.07 ind:fut:3s; +moisirai moisir ver 3.85 5.00 0.03 0.07 ind:fut:1s; +moisiraient moisir ver 3.85 5.00 0.00 0.07 cnd:pre:3p; +moisirais moisir ver 3.85 5.00 0.01 0.00 cnd:pre:1s; +moisirait moisir ver 3.85 5.00 0.00 0.07 cnd:pre:3s; +moisiras moisir ver 3.85 5.00 0.05 0.00 ind:fut:2s; +moisirez moisir ver 3.85 5.00 0.04 0.00 ind:fut:2p; +moisiront moisir ver 3.85 5.00 0.00 0.14 ind:fut:3p; +moisis moisir ver m p 3.85 5.00 0.25 0.14 ind:pre:1s;par:pas; +moisissaient moisir ver 3.85 5.00 0.00 0.14 ind:imp:3p; +moisissais moisir ver 3.85 5.00 0.00 0.14 ind:imp:1s; +moisissait moisir ver 3.85 5.00 0.00 0.47 ind:imp:3s; +moisissant moisir ver 3.85 5.00 0.13 0.07 par:pre; +moisisse moisir ver 3.85 5.00 0.04 0.07 sub:pre:1s;sub:pre:3s; +moisissent moisir ver 3.85 5.00 0.04 0.14 ind:pre:3p; +moisissez moisir ver 3.85 5.00 0.03 0.00 imp:pre:2p;ind:pre:2p; +moisissure moisissure nom f s 1.39 3.78 1.15 2.57 +moisissures moisissure nom f p 1.39 3.78 0.25 1.22 +moisit moisir ver 3.85 5.00 0.13 0.41 ind:pre:3s;ind:pas:3s; +moisson moisson nom f s 3.08 7.91 2.62 4.05 +moissonnait moissonner ver 1.01 1.01 0.00 0.07 ind:imp:3s; +moissonnant moissonner ver 1.01 1.01 0.00 0.07 par:pre; +moissonne moissonner ver 1.01 1.01 0.11 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +moissonnent moissonner ver 1.01 1.01 0.16 0.00 ind:pre:3p; +moissonner moissonner ver 1.01 1.01 0.18 0.41 inf; +moissonnera moissonner ver 1.01 1.01 0.02 0.00 ind:fut:3s; +moissonnerai moissonner ver 1.01 1.01 0.12 0.00 ind:fut:1s; +moissonneur moissonneur nom m s 0.73 1.22 0.09 0.07 +moissonneurs moissonneur nom m p 0.73 1.22 0.30 0.81 +moissonneuse_batteuse moissonneuse_batteuse nom f s 0.04 0.47 0.04 0.27 +moissonneuse_lieuse moissonneuse_lieuse nom f s 0.00 0.14 0.00 0.07 +moissonneuse moissonneur nom f s 0.73 1.22 0.34 0.14 +moissonneuse_batteuse moissonneuse_batteuse nom f p 0.04 0.47 0.00 0.20 +moissonneuse_lieuse moissonneuse_lieuse nom f p 0.00 0.14 0.00 0.07 +moissonneuses moissonneuse nom f p 0.01 0.00 0.01 0.00 +moissonnez moissonner ver 1.01 1.01 0.16 0.00 imp:pre:2p;ind:pre:2p; +moissonné moissonner ver m s 1.01 1.01 0.26 0.14 par:pas; +moissonnée moissonner ver f s 1.01 1.01 0.01 0.00 par:pas; +moissonnées moissonner ver f p 1.01 1.01 0.00 0.07 par:pas; +moissonnés moissonner ver m p 1.01 1.01 0.00 0.14 par:pas; +moissons moisson nom f p 3.08 7.91 0.45 3.85 +moite moite adj s 1.98 15.14 1.01 10.00 +moites moite adj p 1.98 15.14 0.97 5.14 +moiteur moiteur nom f s 0.77 4.93 0.77 4.66 +moiteurs moiteur nom f p 0.77 4.93 0.00 0.27 +moiti moitir ver m s 0.04 0.00 0.04 0.00 par:pas; +moitié_moitié moitié_moitié adv 0.00 0.14 0.00 0.14 +moitié moitié nom f s 74.77 79.05 74.25 76.96 +moitiés moitié nom f p 74.77 79.05 0.52 2.09 +moka moka nom m s 0.64 1.89 0.55 1.55 +mokas moka nom m p 0.64 1.89 0.09 0.34 +moko moko nom m s 0.14 0.14 0.14 0.14 +mol mol adj m s 1.10 1.28 1.07 1.15 +molaire molaire nom f s 0.96 1.76 0.40 0.74 +molaires molaire nom f p 0.96 1.76 0.56 1.01 +molard molard nom m s 0.01 0.00 0.01 0.00 +molasse molasse nom f s 0.02 0.20 0.02 0.20 +moldave moldave nom s 0.27 0.00 0.27 0.00 +moldaves moldave adj p 0.02 0.14 0.00 0.14 +mâle mâle nom m s 11.72 15.95 8.96 10.00 +mole mole nom f s 0.27 0.47 0.27 0.41 +mâles mâle nom m p 11.72 15.95 2.76 5.95 +moles mole nom f p 0.27 0.47 0.00 0.07 +moleskine moleskine nom f s 0.01 3.31 0.01 3.31 +molesquine molesquine nom f s 0.00 0.88 0.00 0.88 +molesta molester ver 0.74 0.88 0.01 0.07 ind:pas:3s; +molestaient molester ver 0.74 0.88 0.00 0.07 ind:imp:3p; +molestant molester ver 0.74 0.88 0.01 0.07 par:pre; +molestation molestation nom f s 0.00 0.07 0.00 0.07 +moleste molester ver 0.74 0.88 0.03 0.07 ind:pre:3s; +molester molester ver 0.74 0.88 0.21 0.20 inf; +molestez molester ver 0.74 0.88 0.02 0.00 imp:pre:2p;ind:pre:2p; +molesté molester ver m s 0.74 0.88 0.33 0.27 par:pas; +molestée molester ver f s 0.74 0.88 0.11 0.00 par:pas; +molestés molester ver m p 0.74 0.88 0.02 0.14 par:pas; +moleta moleter ver 0.20 0.00 0.20 0.00 ind:pas:3s; +molette molette nom f s 0.43 1.01 0.42 0.88 +molettes molette nom f p 0.43 1.01 0.01 0.14 +moliéresque moliéresque adj f s 0.00 0.07 0.00 0.07 +mollah mollah nom m s 0.89 0.14 0.36 0.00 +mollahs mollah nom m p 0.89 0.14 0.53 0.14 +mollard mollard nom m s 0.20 1.82 0.16 1.69 +mollarder mollarder ver 0.02 0.07 0.00 0.07 inf; +mollards mollard nom m p 0.20 1.82 0.03 0.14 +mollardé mollarder ver m s 0.02 0.07 0.02 0.00 par:pas; +mollasse mollasse adj s 0.25 0.95 0.25 0.81 +mollasses mollasse adj m p 0.25 0.95 0.00 0.14 +mollasson mollasson nom m s 0.40 0.20 0.38 0.20 +mollassonne mollasson adj f s 0.30 0.27 0.04 0.07 +mollassons mollasson adj m p 0.30 0.27 0.02 0.07 +molle mou,mol adj f s 5.37 34.53 3.92 22.70 +mollement mollement adv 0.33 11.55 0.33 11.55 +molles mou,mol adj f p 5.37 34.53 1.45 11.82 +mollesse mollesse nom f s 0.44 6.42 0.44 6.28 +mollesses mollesse nom f p 0.44 6.42 0.00 0.14 +mollet mollet nom m s 1.77 14.93 0.67 5.27 +molletière molletière nom f s 0.10 3.18 0.00 0.14 +molletières molletière nom f p 0.10 3.18 0.10 3.04 +molleton molleton nom m s 0.00 0.88 0.00 0.81 +molletonneux molletonneux adj m p 0.00 0.07 0.00 0.07 +molletonné molletonner ver m s 0.01 0.07 0.01 0.00 par:pas; +molletonnée molletonné adj f s 0.00 0.14 0.00 0.07 +molletons molleton nom m p 0.00 0.88 0.00 0.07 +mollets mollet nom m p 1.77 14.93 1.11 9.66 +mollette mollet adj f s 0.06 0.61 0.01 0.00 +mollettes mollet adj f p 0.06 0.61 0.00 0.07 +molli mollir ver m s 1.18 2.57 0.03 0.34 par:pas; +mollie mollir ver f s 1.18 2.57 0.59 0.00 par:pas; +mollir mollir ver 1.18 2.57 0.04 0.61 inf; +mollis mollir ver 1.18 2.57 0.07 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mollissaient mollir ver 1.18 2.57 0.00 0.20 ind:imp:3p; +mollissait mollir ver 1.18 2.57 0.01 0.74 ind:imp:3s; +mollissant mollir ver 1.18 2.57 0.00 0.07 par:pre; +mollisse mollir ver 1.18 2.57 0.00 0.07 sub:pre:3s; +mollissent mollir ver 1.18 2.57 0.04 0.14 ind:pre:3p; +mollissez mollir ver 1.18 2.57 0.14 0.00 imp:pre:2p; +mollit mollir ver 1.18 2.57 0.26 0.41 ind:pre:3s;ind:pas:3s; +mollo mollo adv 5.23 2.30 5.23 2.30 +mollusque mollusque nom m s 0.93 1.22 0.57 0.81 +mollusques mollusque nom m p 0.93 1.22 0.35 0.41 +moloch moloch nom m s 0.00 0.07 0.00 0.07 +molosse molosse nom m s 0.54 1.76 0.24 0.74 +molosses molosse nom m p 0.54 1.76 0.30 1.01 +mols mol adj m p 1.10 1.28 0.03 0.14 +molènes molène nom f p 0.00 0.07 0.00 0.07 +molto molto adv 0.28 0.27 0.28 0.27 +moléculaire moléculaire adj s 2.40 0.41 2.30 0.27 +moléculaires moléculaire adj p 2.40 0.41 0.10 0.14 +molécule molécule nom f s 2.15 1.62 0.76 0.88 +molécules molécule nom f p 2.15 1.62 1.39 0.74 +moly moly nom m s 0.04 0.00 0.04 0.00 +molybdène molybdène nom m s 0.01 0.00 0.01 0.00 +moman moman nom f s 0.04 0.27 0.04 0.27 +mombin mombin nom m s 0.00 0.07 0.00 0.07 +moment_clé moment_clé nom m s 0.04 0.00 0.04 0.00 +moment moment nom m s 433.59 688.24 403.25 611.62 +momentané momentané adj m s 0.96 2.57 0.47 1.08 +momentanée momentané adj f s 0.96 2.57 0.34 1.15 +momentanées momentané adj f p 0.96 2.57 0.00 0.07 +momentanément momentanément adv 1.29 5.20 1.29 5.20 +momentanés momentané adj m p 0.96 2.57 0.16 0.27 +moments_clé moments_clé nom m p 0.01 0.00 0.01 0.00 +moments moment nom m p 433.59 688.24 30.34 76.62 +momerie momerie nom f s 0.14 0.61 0.00 0.27 +momeries momerie nom f p 0.14 0.61 0.14 0.34 +momichons momichon nom m p 0.00 0.07 0.00 0.07 +momie momie nom f s 4.66 4.86 3.89 3.31 +momies momie nom f p 4.66 4.86 0.76 1.55 +momifiait momifier ver 0.25 1.55 0.00 0.27 ind:imp:3s; +momifiant momifier ver 0.25 1.55 0.00 0.07 par:pre; +momification momification nom f s 0.07 0.00 0.07 0.00 +momifie momifier ver 0.25 1.55 0.00 0.07 ind:pre:3s; +momifier momifier ver 0.25 1.55 0.07 0.27 inf; +momifié momifier ver m s 0.25 1.55 0.14 0.20 par:pas; +momifiée momifié adj f s 0.24 1.22 0.02 0.41 +momifiées momifier ver f p 0.25 1.55 0.00 0.07 par:pas; +momifiés momifié adj m p 0.24 1.22 0.18 0.14 +mominette mominette nom f s 0.00 0.41 0.00 0.41 +mon mon adj_pos 3848.99 2307.97 3848.99 2307.97 +monômes monôme nom m p 0.00 0.14 0.00 0.14 +monacal monacal adj m s 0.01 1.22 0.00 0.41 +monacale monacal adj f s 0.01 1.22 0.01 0.68 +monacales monacal adj f p 0.01 1.22 0.00 0.14 +monachisme monachisme nom m s 0.00 0.07 0.00 0.07 +monades monade nom f p 0.00 0.07 0.00 0.07 +monadologie monadologie nom f s 0.01 0.00 0.01 0.00 +monarchie monarchie nom f s 1.10 4.86 1.10 4.53 +monarchies monarchie nom f p 1.10 4.86 0.00 0.34 +monarchique monarchique adj s 0.00 0.34 0.00 0.34 +monarchiste monarchiste adj s 0.61 1.28 0.31 1.08 +monarchistes monarchiste adj m p 0.61 1.28 0.30 0.20 +monarque monarque nom m s 1.37 1.96 1.16 1.55 +monarques monarque nom m p 1.37 1.96 0.20 0.41 +monastique monastique adj s 0.02 1.08 0.02 0.95 +monastiques monastique adj p 0.02 1.08 0.00 0.14 +monastère monastère nom m s 4.86 7.97 4.51 6.28 +monastères monastère nom m p 4.86 7.97 0.35 1.69 +monbazillac monbazillac nom m s 0.00 0.54 0.00 0.54 +monceau monceau nom m s 0.97 7.84 0.95 4.59 +monceaux monceau nom m p 0.97 7.84 0.02 3.24 +monda monder ver 0.15 0.07 0.10 0.00 ind:pas:3s; +mondain mondain adj m s 2.73 13.24 1.17 4.26 +mondaine mondain adj f s 2.73 13.24 0.84 4.53 +mondainement mondainement adv 0.00 0.14 0.00 0.14 +mondaines mondain adj f p 2.73 13.24 0.43 2.64 +mondains mondain adj m p 2.73 13.24 0.28 1.82 +mondanisaient mondaniser ver 0.00 0.14 0.00 0.07 ind:imp:3p; +mondanisé mondaniser ver m s 0.00 0.14 0.00 0.07 par:pas; +mondanité mondanité nom f s 0.33 2.64 0.01 0.81 +mondanités mondanité nom f p 0.33 2.64 0.32 1.82 +monde monde nom m s 830.72 741.35 823.62 732.43 +monder monder ver 0.15 0.07 0.01 0.00 inf; +mondes monde nom m p 830.72 741.35 7.11 8.92 +mondial mondial adj m s 13.79 16.35 4.27 2.50 +mondiale mondial adj f s 13.79 16.35 8.17 12.03 +mondialement mondialement adv 0.53 0.14 0.53 0.14 +mondiales mondial adj f p 13.79 16.35 0.80 0.74 +mondialisation mondialisation nom f s 0.13 0.00 0.13 0.00 +mondialisent mondialiser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +mondialistes mondialiste adj m p 0.00 0.07 0.00 0.07 +mondiaux mondial adj m p 13.79 16.35 0.55 1.08 +mondovision mondovision nom f s 0.03 0.07 0.03 0.07 +mondée monder ver f s 0.15 0.07 0.00 0.07 par:pas; +mânes mânes nom m p 0.01 0.41 0.01 0.41 +mongo mongo nom s 0.19 0.00 0.19 0.00 +mongol mongol adj m s 0.81 3.92 0.49 2.03 +mongole mongol nom f s 0.69 1.69 0.22 0.41 +mongoles mongol nom f p 0.69 1.69 0.12 0.00 +mongolie mongolie nom f s 0.00 0.07 0.00 0.07 +mongolien mongolien adj m s 0.56 0.07 0.39 0.00 +mongolienne mongolien adj f s 0.56 0.07 0.15 0.07 +mongoliennes mongolien adj f p 0.56 0.07 0.01 0.00 +mongoliens mongolien nom m p 0.38 1.01 0.01 0.34 +mongolique mongolique adj f s 0.00 0.14 0.00 0.07 +mongoliques mongolique adj m p 0.00 0.14 0.00 0.07 +mongoloïde mongoloïde adj s 0.00 0.07 0.00 0.07 +mongols mongol adj m p 0.81 3.92 0.17 0.27 +moniale moniale nom f s 0.00 0.14 0.00 0.14 +moniales moniale adj f p 0.00 0.07 0.00 0.07 +moniteur moniteur nom m s 4.26 5.61 2.44 1.89 +moniteurs moniteur nom m p 4.26 5.61 1.61 2.03 +monition monition nom f s 0.14 0.00 0.14 0.00 +monitor monitor nom m s 0.11 0.00 0.11 0.00 +monitorage monitorage nom m s 0.04 0.00 0.04 0.00 +monitoring monitoring nom m s 0.13 0.00 0.13 0.00 +monitrice moniteur nom f s 4.26 5.61 0.22 0.68 +monitrices moniteur nom f p 4.26 5.61 0.00 1.01 +monnaie_du_pape monnaie_du_pape nom f s 0.00 0.07 0.00 0.07 +monnaie monnaie nom f s 27.31 28.99 26.82 25.34 +monnaiera monnayer ver 0.70 1.49 0.00 0.07 ind:fut:3s; +monnaierai monnayer ver 0.70 1.49 0.01 0.00 ind:fut:1s; +monnaies_du_pape monnaies_du_pape nom f p 0.00 0.07 0.00 0.07 +monnaies monnaie nom f p 27.31 28.99 0.48 3.65 +monnaya monnayer ver 0.70 1.49 0.00 0.07 ind:pas:3s; +monnayable monnayable adj s 0.02 0.27 0.02 0.20 +monnayables monnayable adj m p 0.02 0.27 0.00 0.07 +monnayait monnayer ver 0.70 1.49 0.01 0.20 ind:imp:3s; +monnayant monnayer ver 0.70 1.49 0.00 0.07 par:pre; +monnaye monnayer ver 0.70 1.49 0.02 0.07 ind:pre:3s; +monnayer monnayer ver 0.70 1.49 0.29 0.74 inf; +monnayeur monnayeur nom m s 0.03 0.14 0.01 0.00 +monnayeurs monnayeur nom m p 0.03 0.14 0.02 0.14 +monnayé monnayer ver m s 0.70 1.49 0.03 0.20 par:pas; +monnayée monnayer ver f s 0.70 1.49 0.00 0.07 par:pas; +mono mono nom s 3.02 0.20 3.02 0.20 +monoamine monoamine nom f s 0.03 0.00 0.03 0.00 +monobloc monobloc nom m s 0.00 0.07 0.00 0.07 +monocellulaire monocellulaire adj f s 0.01 0.00 0.01 0.00 +monochrome monochrome adj m s 0.07 0.41 0.04 0.20 +monochromes monochrome adj f p 0.07 0.41 0.02 0.20 +monochromie monochromie nom f s 0.00 0.07 0.00 0.07 +monocle monocle nom m s 0.56 4.05 0.53 3.92 +monocles monocle nom m p 0.56 4.05 0.02 0.14 +monoclonal monoclonal adj m s 0.02 0.00 0.01 0.00 +monoclonaux monoclonal adj m p 0.02 0.00 0.01 0.00 +monoclé monoclé adj m s 0.00 0.14 0.00 0.14 +monocoque monocoque adj s 0.10 0.00 0.10 0.00 +monocorde monocorde adj s 0.03 2.57 0.02 2.09 +monocordes monocorde adj f p 0.03 2.57 0.01 0.47 +monocratie monocratie nom f s 0.01 0.00 0.01 0.00 +monoculaire monoculaire adj m s 0.01 0.07 0.00 0.07 +monoculaires monoculaire adj p 0.01 0.07 0.01 0.00 +monoculture monoculture nom f s 0.00 0.07 0.00 0.07 +monocycle monocycle nom m s 0.07 0.00 0.07 0.00 +monocylindre monocylindre nom m s 0.01 0.00 0.01 0.00 +monodie monodie nom f s 0.10 0.07 0.10 0.07 +monofilament monofilament nom m s 0.02 0.00 0.02 0.00 +monogame monogame adj s 0.50 0.47 0.31 0.34 +monogames monogame adj p 0.50 0.47 0.18 0.14 +monogamie monogamie nom f s 0.59 0.07 0.59 0.07 +monogramme monogramme nom m s 0.21 0.95 0.21 0.81 +monogrammes monogramme nom m p 0.21 0.95 0.00 0.14 +monogrammées monogrammé adj f p 0.01 0.00 0.01 0.00 +monographie monographie nom f s 0.20 0.61 0.19 0.27 +monographies monographie nom f p 0.20 0.61 0.01 0.34 +monokini monokini nom m s 0.32 0.00 0.32 0.00 +monolinguisme monolinguisme nom m s 0.10 0.00 0.10 0.00 +monolithe monolithe nom m s 0.13 0.14 0.12 0.07 +monolithes monolithe nom m p 0.13 0.14 0.01 0.07 +monolithique monolithique adj s 0.03 0.68 0.02 0.61 +monolithiques monolithique adj f p 0.03 0.68 0.01 0.07 +monolithisme monolithisme nom m s 0.00 0.07 0.00 0.07 +monologua monologuer ver 0.16 1.01 0.01 0.00 ind:pas:3s; +monologuaient monologuer ver 0.16 1.01 0.00 0.07 ind:imp:3p; +monologuais monologuer ver 0.16 1.01 0.00 0.14 ind:imp:1s; +monologuait monologuer ver 0.16 1.01 0.00 0.20 ind:imp:3s; +monologuant monologuer ver 0.16 1.01 0.00 0.34 par:pre; +monologue monologue nom m s 1.86 6.28 1.44 5.68 +monologuer monologuer ver 0.16 1.01 0.01 0.14 inf; +monologues monologue nom m p 1.86 6.28 0.42 0.61 +monomane monomane nom s 0.01 0.00 0.01 0.00 +monomanes monomane adj p 0.00 0.07 0.00 0.07 +monomaniaque monomaniaque adj s 0.04 0.20 0.04 0.07 +monomaniaques monomaniaque adj p 0.04 0.20 0.00 0.14 +monomanie monomanie nom f s 0.01 0.14 0.01 0.14 +monomoteur monomoteur nom m s 0.01 0.07 0.01 0.07 +monomoteurs monomoteur adj m p 0.03 0.00 0.03 0.00 +mononucléaire mononucléaire adj f s 0.00 0.07 0.00 0.07 +mononucléose mononucléose nom f s 0.40 0.07 0.40 0.07 +monoparental monoparental adj m s 0.09 0.00 0.01 0.00 +monoparentale monoparental adj f s 0.09 0.00 0.04 0.00 +monoparentales monoparental adj f p 0.09 0.00 0.01 0.00 +monoparentaux monoparental adj m p 0.09 0.00 0.03 0.00 +monophasée monophasé adj f s 0.00 0.07 0.00 0.07 +monoplace monoplace adj m s 0.04 0.14 0.04 0.14 +monoplaces monoplace nom p 0.02 0.07 0.02 0.00 +monoplan monoplan nom m s 0.10 0.47 0.09 0.34 +monoplans monoplan nom m p 0.10 0.47 0.01 0.14 +monopode monopode adj m s 0.01 0.00 0.01 0.00 +monopole monopole nom m s 1.61 3.11 1.32 2.91 +monopoles monopole nom m p 1.61 3.11 0.29 0.20 +monopolisa monopoliser ver 0.61 0.88 0.02 0.00 ind:pas:3s; +monopolisaient monopoliser ver 0.61 0.88 0.00 0.07 ind:imp:3p; +monopolisais monopoliser ver 0.61 0.88 0.00 0.07 ind:imp:1s; +monopolisait monopoliser ver 0.61 0.88 0.04 0.14 ind:imp:3s; +monopolise monopoliser ver 0.61 0.88 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +monopolisent monopoliser ver 0.61 0.88 0.15 0.00 ind:pre:3p; +monopoliser monopoliser ver 0.61 0.88 0.07 0.41 inf; +monopolisera monopoliser ver 0.61 0.88 0.01 0.00 ind:fut:3s; +monopolisez monopoliser ver 0.61 0.88 0.03 0.00 imp:pre:2p;ind:pre:2p; +monopolisèrent monopoliser ver 0.61 0.88 0.00 0.07 ind:pas:3p; +monopolisé monopoliser ver m s 0.61 0.88 0.04 0.00 par:pas; +monopolisés monopoliser ver m p 0.61 0.88 0.01 0.07 par:pas; +monopoly monopoly nom m s 1.37 0.41 1.37 0.41 +monoprix monoprix nom m 0.21 0.27 0.21 0.27 +monorail monorail nom m s 0.55 0.00 0.48 0.00 +monorails monorail nom m p 0.55 0.00 0.07 0.00 +monospace monospace nom m s 0.18 0.00 0.18 0.00 +monosyllabe monosyllabe nom m s 0.06 1.35 0.00 0.27 +monosyllabes monosyllabe nom m p 0.06 1.35 0.06 1.08 +monosyllabique monosyllabique adj m s 0.04 0.14 0.02 0.07 +monosyllabiques monosyllabique adj m p 0.04 0.14 0.01 0.07 +monothéisme monothéisme nom m s 0.00 0.34 0.00 0.27 +monothéismes monothéisme nom m p 0.00 0.34 0.00 0.07 +monothéiste monothéiste adj f s 0.00 0.14 0.00 0.07 +monothéistes monothéiste adj p 0.00 0.14 0.00 0.07 +monotone monotone adj s 1.48 15.47 1.30 13.24 +monotonement monotonement adv 0.10 0.41 0.10 0.41 +monotones monotone adj p 1.48 15.47 0.18 2.23 +monotonie monotonie nom f s 0.87 4.93 0.87 4.93 +monotype monotype nom m s 0.00 0.07 0.00 0.07 +monoxyde monoxyde nom m s 0.40 0.07 0.40 0.07 +monoxyle monoxyle adj f s 0.00 0.07 0.00 0.07 +mons mons nom s 0.41 0.07 0.41 0.07 +monseigneur monseigneur nom_sup m s 26.26 5.34 26.26 5.34 +monsieur monsieur nom_sup m s 739.12 324.86 583.45 286.76 +monsignor monsignor nom m s 0.17 0.14 0.17 0.14 +monsignore monsignore nom m s 0.16 0.07 0.16 0.07 +monstrance monstrance nom f s 0.00 0.14 0.00 0.07 +monstrances monstrance nom f p 0.00 0.14 0.00 0.07 +monstre monstre nom m s 62.56 26.96 48.42 18.18 +monstres monstre nom m p 62.56 26.96 14.14 8.78 +monstrueuse monstrueux adj f s 8.93 20.88 1.89 7.97 +monstrueusement monstrueusement adv 0.30 1.69 0.30 1.69 +monstrueuses monstrueux adj f p 8.93 20.88 0.41 2.30 +monstrueux monstrueux adj m 8.93 20.88 6.63 10.61 +monstruosité monstruosité nom f s 0.93 2.77 0.40 2.16 +monstruosités monstruosité nom f p 0.93 2.77 0.53 0.61 +mont_blanc mont_blanc nom m s 1.84 0.47 1.64 0.41 +mont_de_piété mont_de_piété nom m s 0.98 0.81 0.98 0.81 +mont mont nom m s 12.63 18.92 9.04 12.36 +monta monter ver 277.19 404.59 1.07 34.05 ind:pas:3s; +montage montage nom m s 6.66 2.91 6.35 2.77 +montages montage nom m p 6.66 2.91 0.31 0.14 +montagnard montagnard nom m s 1.05 2.03 0.28 0.61 +montagnarde montagnard adj f s 0.42 1.22 0.16 0.27 +montagnardes montagnard adj f p 0.42 1.22 0.00 0.20 +montagnards montagnard nom m p 1.05 2.03 0.74 1.22 +montagne montagne nom f s 62.01 81.82 36.76 49.80 +montagnes montagne nom f p 62.01 81.82 25.25 32.03 +montagneuse montagneux adj f s 0.41 1.35 0.05 0.41 +montagneuses montagneux adj f p 0.41 1.35 0.02 0.27 +montagneux montagneux adj m 0.41 1.35 0.33 0.68 +montai monter ver 277.19 404.59 0.04 4.86 ind:pas:1s; +montaient monter ver 277.19 404.59 0.83 21.96 ind:imp:3p; +montais monter ver 277.19 404.59 1.52 3.58 ind:imp:1s;ind:imp:2s; +montaison montaison nom f s 0.00 0.07 0.00 0.07 +montait monter ver 277.19 404.59 3.95 62.57 ind:imp:3s; +montant montant nom m s 5.97 12.84 5.31 8.38 +montante montant adj f s 1.65 8.38 0.86 4.59 +montantes montant adj f p 1.65 8.38 0.30 1.15 +montants montant nom m p 5.97 12.84 0.66 4.46 +monte_charge monte_charge nom m 0.51 0.54 0.51 0.54 +monte_charges monte_charges nom m 0.01 0.07 0.01 0.07 +monte_en_l_air monte_en_l_air nom m 0.12 0.20 0.12 0.20 +monte_plat monte_plat nom m s 0.01 0.00 0.01 0.00 +monte_plats monte_plats nom m 0.04 0.07 0.04 0.07 +monte monter ver 277.19 404.59 109.76 70.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +montent monter ver 277.19 404.59 4.86 14.39 ind:pre:3p; +monter monter ver 277.19 404.59 85.57 96.89 inf; +montera monter ver 277.19 404.59 2.36 1.82 ind:fut:3s; +monterai monter ver 277.19 404.59 1.61 1.22 ind:fut:1s; +monteraient monter ver 277.19 404.59 0.10 0.41 cnd:pre:3p; +monterais monter ver 277.19 404.59 0.53 0.41 cnd:pre:1s;cnd:pre:2s; +monterait monter ver 277.19 404.59 0.55 2.84 cnd:pre:3s; +monteras monter ver 277.19 404.59 0.76 0.47 ind:fut:2s; +monterez monter ver 277.19 404.59 0.23 0.34 ind:fut:2p; +monteriez monter ver 277.19 404.59 0.03 0.00 cnd:pre:2p; +monterons monter ver 277.19 404.59 0.31 0.34 ind:fut:1p; +monteront monter ver 277.19 404.59 0.34 0.34 ind:fut:3p; +montes monter ver 277.19 404.59 6.27 2.30 ind:pre:2s;sub:pre:2s; +monteur monteur nom m s 1.46 0.68 1.07 0.27 +monteurs monteur nom m p 1.46 0.68 0.09 0.27 +monteuse monteur nom f s 1.46 0.68 0.30 0.14 +montez monter ver 277.19 404.59 15.38 1.89 imp:pre:2p;ind:pre:2p; +montgolfière montgolfière nom f s 0.81 0.95 0.78 0.81 +montgolfières montgolfière nom f p 0.81 0.95 0.04 0.14 +monticule monticule nom m s 0.60 3.78 0.58 1.96 +monticules monticule nom m p 0.60 3.78 0.02 1.82 +montiez monter ver 277.19 404.59 0.64 0.14 ind:imp:2p; +montions monter ver 277.19 404.59 0.19 1.69 ind:imp:1p; +montjoie montjoie nom f s 0.05 0.34 0.05 0.34 +montmartrois montmartrois adj m 0.00 0.74 0.00 0.41 +montmartroise montmartrois adj f s 0.00 0.74 0.00 0.20 +montmartroises montmartrois adj f p 0.00 0.74 0.00 0.14 +montâmes monter ver 277.19 404.59 0.00 1.55 ind:pas:1p; +montons monter ver 277.19 404.59 3.44 2.70 imp:pre:1p;ind:pre:1p; +montât monter ver 277.19 404.59 0.00 0.54 sub:imp:3s; +montparno montparno nom m s 0.00 0.20 0.00 0.20 +montpelliéraine montpelliérain nom f s 0.00 0.07 0.00 0.07 +montra montrer ver 327.33 276.55 0.77 29.46 ind:pas:3s; +montrable montrable adj s 0.02 0.41 0.02 0.34 +montrables montrable adj f p 0.02 0.41 0.00 0.07 +montrai montrer ver 327.33 276.55 0.42 1.76 ind:pas:1s; +montraient montrer ver 327.33 276.55 0.98 8.78 ind:imp:3p; +montrais montrer ver 327.33 276.55 1.72 2.43 ind:imp:1s;ind:imp:2s; +montrait montrer ver 327.33 276.55 3.27 33.65 ind:imp:3s; +montrant montrer ver 327.33 276.55 2.02 23.24 par:pre; +montrassent montrer ver 327.33 276.55 0.00 0.14 sub:imp:3p; +montre_bracelet montre_bracelet nom f s 0.08 2.09 0.07 1.82 +montre_gousset montre_gousset nom f s 0.01 0.07 0.01 0.07 +montre_la_moi montre_la_moi nom f s 0.14 0.00 0.14 0.00 +montre montrer ver 327.33 276.55 85.44 38.99 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +montrent montrer ver 327.33 276.55 8.82 4.93 ind:pre:3p; +montrer montrer ver 327.33 276.55 136.20 81.15 inf;; +montrera montrer ver 327.33 276.55 4.71 1.96 ind:fut:3s; +montrerai montrer ver 327.33 276.55 7.58 3.18 ind:fut:1s; +montreraient montrer ver 327.33 276.55 0.11 0.14 cnd:pre:3p; +montrerais montrer ver 327.33 276.55 1.05 0.34 cnd:pre:1s;cnd:pre:2s; +montrerait montrer ver 327.33 276.55 0.78 2.57 cnd:pre:3s; +montreras montrer ver 327.33 276.55 1.46 0.61 ind:fut:2s; +montrerez montrer ver 327.33 276.55 1.02 0.27 ind:fut:2p; +montreriez montrer ver 327.33 276.55 0.16 0.00 cnd:pre:2p; +montrerons montrer ver 327.33 276.55 0.83 0.14 ind:fut:1p; +montreront montrer ver 327.33 276.55 0.54 0.07 ind:fut:3p; +montre_bracelet montre_bracelet nom f p 0.08 2.09 0.01 0.27 +montres montrer ver 327.33 276.55 5.93 1.08 ind:pre:1p;ind:pre:2s;sub:pre:2s; +montreur montreur nom m s 0.48 1.35 0.45 0.81 +montreurs montreur nom m p 0.48 1.35 0.02 0.41 +montreuse montreur nom f s 0.48 1.35 0.01 0.07 +montreuses montreur nom f p 0.48 1.35 0.00 0.07 +montrez montrer ver 327.33 276.55 26.48 2.57 imp:pre:2p;ind:pre:2p; +montriez montrer ver 327.33 276.55 0.70 0.41 ind:imp:2p; +montrions montrer ver 327.33 276.55 0.05 0.27 ind:imp:1p; +montrâmes montrer ver 327.33 276.55 0.00 0.07 ind:pas:1p; +montrons montrer ver 327.33 276.55 2.77 0.27 imp:pre:1p;ind:pre:1p; +montrât montrer ver 327.33 276.55 0.00 1.01 sub:imp:3s; +montrèrent montrer ver 327.33 276.55 0.01 1.82 ind:pas:3p; +montré montrer ver m s 327.33 276.55 29.65 28.11 par:pas; +montrée montrer ver f s 327.33 276.55 2.61 4.39 ind:imp:3p;par:pas; +montrées montrer ver f p 327.33 276.55 0.42 0.88 par:pas; +montrés montrer ver m p 327.33 276.55 0.81 1.89 par:pas; +mont_blanc mont_blanc nom m p 1.84 0.47 0.20 0.07 +monts mont nom m p 12.63 18.92 3.59 6.55 +montèrent monter ver 277.19 404.59 0.07 7.97 ind:pas:3p; +monté monter ver m s 277.19 404.59 23.72 28.72 par:pas; +montée monter ver f s 277.19 404.59 6.11 13.18 par:pas; +montées monter ver f p 277.19 404.59 0.70 3.18 par:pas; +montueuse montueux adj f s 0.00 0.47 0.00 0.20 +montueuses montueux adj f p 0.00 0.47 0.00 0.14 +montueux montueux adj m 0.00 0.47 0.00 0.14 +monténégrin monténégrin adj m s 0.01 0.07 0.01 0.00 +monténégrines monténégrin adj f p 0.01 0.07 0.00 0.07 +monture monture nom f s 2.21 16.62 1.61 11.55 +montures monture nom f p 2.21 16.62 0.60 5.07 +montés monter ver m p 277.19 404.59 3.94 9.73 par:pas; +monument monument nom m s 6.68 19.32 5.07 10.54 +monumental monumental adj m s 1.67 12.03 0.62 4.32 +monumentale monumental adj f s 1.67 12.03 0.71 5.20 +monumentalement monumentalement adv 0.03 0.00 0.03 0.00 +monumentales monumental adj f p 1.67 12.03 0.29 1.96 +monumentalité monumentalité nom f s 0.01 0.00 0.01 0.00 +monumentaux monumental adj m p 1.67 12.03 0.04 0.54 +monuments monument nom m p 6.68 19.32 1.61 8.78 +monétaire monétaire adj s 0.90 2.16 0.81 1.49 +monétaires monétaire adj p 0.90 2.16 0.10 0.68 +monétariste monétariste adj s 0.01 0.00 0.01 0.00 +moonisme moonisme nom m s 0.00 0.07 0.00 0.07 +moonistes mooniste nom p 0.03 0.00 0.03 0.00 +mooré mooré nom m s 0.03 0.00 0.03 0.00 +moos moos nom m 0.03 0.00 0.03 0.00 +moose moose adj s 0.60 0.00 0.60 0.00 +moqua moquer ver 71.13 50.34 0.01 0.88 ind:pas:3s; +moquai moquer ver 71.13 50.34 0.01 0.20 ind:pas:1s; +moquaient moquer ver 71.13 50.34 0.96 2.70 ind:imp:3p; +moquais moquer ver 71.13 50.34 0.75 1.42 ind:imp:1s;ind:imp:2s; +moquait moquer ver 71.13 50.34 2.20 9.39 ind:imp:3s; +moquant moquer ver 71.13 50.34 0.78 1.89 par:pre; +moque moquer ver 71.13 50.34 25.79 11.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +moquent moquer ver 71.13 50.34 4.18 2.36 ind:pre:3p; +moquer moquer ver 71.13 50.34 11.47 9.46 ind:pre:2p;inf; +moquera moquer ver 71.13 50.34 0.72 0.27 ind:fut:3s; +moquerai moquer ver 71.13 50.34 0.09 0.00 ind:fut:1s; +moqueraient moquer ver 71.13 50.34 0.03 0.00 cnd:pre:3p; +moquerais moquer ver 71.13 50.34 0.29 0.14 cnd:pre:1s;cnd:pre:2s; +moquerait moquer ver 71.13 50.34 0.56 0.27 cnd:pre:3s; +moqueras moquer ver 71.13 50.34 0.06 0.07 ind:fut:2s; +moquerez moquer ver 71.13 50.34 0.28 0.07 ind:fut:2p; +moquerie moquerie nom f s 1.69 6.35 0.64 3.72 +moqueries moquerie nom f p 1.69 6.35 1.05 2.64 +moqueriez moquer ver 71.13 50.34 0.01 0.07 cnd:pre:2p; +moqueront moquer ver 71.13 50.34 0.10 0.07 ind:fut:3p; +moques moquer ver 71.13 50.34 9.60 0.95 ind:pre:2s;sub:pre:2s; +moquette moquette nom f s 3.63 15.95 3.37 14.73 +moquettes moquette nom f p 3.63 15.95 0.27 1.22 +moquetté moquetter ver m s 0.00 0.20 0.00 0.07 par:pas; +moquettées moquetter ver f p 0.00 0.20 0.00 0.07 par:pas; +moquettés moquetter ver m p 0.00 0.20 0.00 0.07 par:pas; +moqueur moqueur adj m s 0.82 9.12 0.41 4.73 +moqueurs moqueur adj m p 0.82 9.12 0.28 1.01 +moqueuse moqueur adj f s 0.82 9.12 0.11 2.97 +moqueusement moqueusement adv 0.00 0.27 0.00 0.27 +moqueuses moqueur adj f p 0.82 9.12 0.02 0.41 +moquez moquer ver 71.13 50.34 7.98 1.15 imp:pre:2p;ind:pre:2p; +moquiez moquer ver 71.13 50.34 0.23 0.20 ind:imp:2p; +moquions moquer ver 71.13 50.34 0.00 1.01 ind:imp:1p; +moquons moquer ver 71.13 50.34 0.34 0.07 imp:pre:1p;ind:pre:1p; +moquât moquer ver 71.13 50.34 0.00 0.68 sub:imp:3s; +moquèrent moquer ver 71.13 50.34 0.00 0.61 ind:pas:3p; +moqué moquer ver m s 71.13 50.34 2.64 2.84 par:pas; +moquée moquer ver f s 71.13 50.34 1.02 1.15 par:pas; +moquées moquer ver f p 71.13 50.34 0.17 0.14 par:pas; +moqués moquer ver m p 71.13 50.34 0.84 0.47 par:pas; +moraillon moraillon nom m s 0.00 0.07 0.00 0.07 +moraine moraine nom f s 0.08 0.47 0.07 0.07 +moraines moraine nom f p 0.08 0.47 0.01 0.41 +morainique morainique adj s 0.01 0.20 0.01 0.14 +morainiques morainique adj p 0.01 0.20 0.00 0.07 +moral moral nom m s 10.27 14.19 10.17 14.19 +morale morale nom f s 13.13 21.49 12.89 21.01 +moralement moralement adv 1.98 7.30 1.98 7.30 +morales moral adj f p 16.39 34.53 2.26 4.93 +moralisante moralisant adj f s 0.00 0.14 0.00 0.14 +moralisateur moralisateur nom m s 0.73 0.00 0.47 0.00 +moralisateurs moralisateur nom m p 0.73 0.00 0.26 0.00 +moralisation moralisation nom f s 0.01 0.07 0.01 0.07 +moralisatrice moralisateur adj f s 0.20 0.68 0.04 0.07 +moralise moraliser ver 0.03 0.41 0.00 0.14 ind:pre:3s; +moraliser moraliser ver 0.03 0.41 0.03 0.20 inf; +moralisme moralisme nom m s 0.15 0.27 0.15 0.27 +moraliste moraliste nom s 0.48 1.49 0.40 0.74 +moralistes moraliste adj p 0.55 0.41 0.16 0.20 +moralisée moraliser ver f s 0.03 0.41 0.00 0.07 par:pas; +moralité moralité nom f s 4.86 3.04 4.57 2.91 +moralités moralité nom f p 4.86 3.04 0.29 0.14 +morasse morasse nom f s 0.00 0.81 0.00 0.61 +morasses morasse nom f p 0.00 0.81 0.00 0.20 +moratoire moratoire nom m s 0.17 0.07 0.17 0.07 +moraux moral adj m p 16.39 34.53 1.59 1.76 +morave morave adj m s 0.02 0.00 0.01 0.00 +moraves morave adj m p 0.02 0.00 0.01 0.00 +morbac morbac nom m s 0.17 0.20 0.14 0.14 +morbacs morbac nom m p 0.17 0.20 0.02 0.07 +morbaque morbaque nom m s 0.02 0.54 0.01 0.14 +morbaques morbaque nom m p 0.02 0.54 0.01 0.41 +morbide morbide adj s 3.92 4.73 2.83 3.99 +morbidement morbidement adv 0.01 0.07 0.01 0.07 +morbides morbide adj p 3.92 4.73 1.09 0.74 +morbidesse morbidesse nom f s 0.00 0.14 0.00 0.14 +morbidité morbidité nom f s 0.07 0.14 0.07 0.14 +morbier morbier nom m s 0.00 0.07 0.00 0.07 +morbleu morbleu ono 0.54 0.14 0.54 0.14 +morceau morceau nom m s 64.78 99.32 40.65 57.84 +morceaux morceau nom m p 64.78 99.32 24.13 41.49 +morcela morceler ver 0.47 1.28 0.00 0.07 ind:pas:3s; +morcelait morceler ver 0.47 1.28 0.00 0.27 ind:imp:3s; +morcelant morceler ver 0.47 1.28 0.00 0.20 par:pre; +morceler morceler ver 0.47 1.28 0.03 0.14 inf; +morcellement morcellement nom m s 0.00 0.34 0.00 0.27 +morcellements morcellement nom m p 0.00 0.34 0.00 0.07 +morcellent morceler ver 0.47 1.28 0.00 0.27 ind:pre:3p; +morcellera morceler ver 0.47 1.28 0.01 0.00 ind:fut:3s; +morcelé morceler ver m s 0.47 1.28 0.29 0.20 par:pas; +morcelée morcelé adj f s 0.11 0.61 0.11 0.20 +morcelées morceler ver f p 0.47 1.28 0.01 0.07 par:pas; +morcelés morceler ver m p 0.47 1.28 0.01 0.00 par:pas; +morcif morcif nom m s 0.00 0.34 0.00 0.20 +morcifs morcif nom m p 0.00 0.34 0.00 0.14 +mord mordre ver 44.85 48.45 7.95 4.80 ind:pre:3s; +mordît mordre ver 44.85 48.45 0.00 0.07 sub:imp:3s; +mordaient mordre ver 44.85 48.45 0.22 1.49 ind:imp:3p; +mordais mordre ver 44.85 48.45 0.36 0.54 ind:imp:1s;ind:imp:2s; +mordait mordre ver 44.85 48.45 1.09 5.74 ind:imp:3s; +mordant mordant nom m s 0.60 1.49 0.60 1.49 +mordante mordant adj f s 0.35 2.70 0.10 0.81 +mordantes mordant adj f p 0.35 2.70 0.01 0.07 +mordançage mordançage nom m s 0.00 0.14 0.00 0.14 +mordants mordant adj m p 0.35 2.70 0.01 0.20 +morde mordre ver 44.85 48.45 0.47 0.20 sub:pre:1s;sub:pre:3s; +mordent mordre ver 44.85 48.45 1.74 1.35 ind:pre:3p; +mordes mordre ver 44.85 48.45 0.15 0.07 sub:pre:2s; +mordeur mordeur nom m s 0.04 0.00 0.03 0.00 +mordeurs mordeur adj m p 0.03 0.14 0.01 0.07 +mordeuse mordeuse nom f s 0.03 0.00 0.03 0.00 +mordez mordre ver 44.85 48.45 0.92 0.41 imp:pre:2p;ind:pre:2p; +mordicus mordicus adv_sup 0.19 0.54 0.19 0.54 +mordieu mordieu ono 0.20 0.00 0.20 0.00 +mordilla mordiller ver 0.76 5.61 0.00 0.61 ind:pas:3s; +mordillage mordillage nom m s 0.00 0.07 0.00 0.07 +mordillaient mordiller ver 0.76 5.61 0.01 0.14 ind:imp:3p; +mordillais mordiller ver 0.76 5.61 0.00 0.07 ind:imp:1s; +mordillait mordiller ver 0.76 5.61 0.00 1.96 ind:imp:3s; +mordillant mordiller ver 0.76 5.61 0.02 1.01 par:pre; +mordille mordiller ver 0.76 5.61 0.30 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mordillement mordillement nom m s 0.00 0.61 0.00 0.27 +mordillements mordillement nom m p 0.00 0.61 0.00 0.34 +mordillent mordiller ver 0.76 5.61 0.00 0.14 ind:pre:3p; +mordiller mordiller ver 0.76 5.61 0.25 0.68 inf; +mordillera mordiller ver 0.76 5.61 0.00 0.07 ind:fut:3s; +mordillez mordiller ver 0.76 5.61 0.01 0.00 imp:pre:2p; +mordillé mordiller ver m s 0.76 5.61 0.14 0.07 par:pas; +mordillée mordiller ver f s 0.76 5.61 0.02 0.20 par:pas; +mordillées mordiller ver f p 0.76 5.61 0.00 0.07 par:pas; +mordillés mordiller ver m p 0.76 5.61 0.00 0.14 par:pas; +mordions mordre ver 44.85 48.45 0.01 0.14 ind:imp:1p; +mordirent mordre ver 44.85 48.45 0.00 0.20 ind:pas:3p; +mordis mordre ver 44.85 48.45 0.00 0.41 ind:pas:1s;ind:pas:2s; +mordissent mordre ver 44.85 48.45 0.00 0.07 sub:imp:3p; +mordit mordre ver 44.85 48.45 0.09 6.01 ind:pas:3s; +mordorait mordorer ver 0.00 0.34 0.00 0.07 ind:imp:3s; +mordoré mordoré adj m s 0.04 2.16 0.01 0.41 +mordorée mordoré adj f s 0.04 2.16 0.00 0.61 +mordorées mordoré adj f p 0.04 2.16 0.02 0.34 +mordorés mordoré adj m p 0.04 2.16 0.01 0.81 +mordra mordre ver 44.85 48.45 0.80 0.20 ind:fut:3s; +mordrai mordre ver 44.85 48.45 0.40 0.00 ind:fut:1s; +mordraient mordre ver 44.85 48.45 0.01 0.14 cnd:pre:3p; +mordrais mordre ver 44.85 48.45 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +mordrait mordre ver 44.85 48.45 0.35 0.41 cnd:pre:3s; +mordras mordre ver 44.85 48.45 0.22 0.00 ind:fut:2s; +mordre mordre ver 44.85 48.45 8.83 12.36 inf;; +mordrez mordre ver 44.85 48.45 0.25 0.00 ind:fut:2p; +mordront mordre ver 44.85 48.45 0.58 0.07 ind:fut:3p; +mords mordre ver 44.85 48.45 6.30 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mordu mordre ver m s 44.85 48.45 10.22 6.28 par:pas; +mordue mordre ver f s 44.85 48.45 2.77 1.08 par:pas; +mordues mordre ver f p 44.85 48.45 0.32 0.34 par:pas; +mordus mordre ver m p 44.85 48.45 0.45 0.54 par:pas; +more more adj s 3.69 0.07 3.68 0.07 +moreau moreau adj m s 0.02 0.00 0.02 0.00 +morelle morelle nom f s 0.01 0.00 0.01 0.00 +mores more nom p 0.55 0.14 0.01 0.07 +moresque moresque nom f s 0.27 0.00 0.27 0.00 +morfal morfal adj m s 0.04 0.47 0.01 0.07 +morfale morfal adj f s 0.04 0.47 0.01 0.20 +morfaler morfaler ver 0.00 0.41 0.00 0.14 inf; +morfales morfal adj f p 0.04 0.47 0.01 0.07 +morfalou morfalou nom m s 0.00 0.07 0.00 0.07 +morfals morfal adj m p 0.04 0.47 0.00 0.14 +morfalé morfaler ver m s 0.00 0.41 0.00 0.07 par:pas; +morfalée morfaler ver f s 0.00 0.41 0.00 0.07 par:pas; +morfalés morfaler ver m p 0.00 0.41 0.00 0.07 par:pas; +morfil morfil nom m s 0.00 0.07 0.00 0.07 +morflais morfler ver 2.01 2.91 0.00 0.14 ind:imp:2s; +morflait morfler ver 2.01 2.91 0.01 0.14 ind:imp:3s; +morfle morfler ver 2.01 2.91 0.38 0.41 ind:pre:1s;ind:pre:3s; +morfler morfler ver 2.01 2.91 0.93 0.88 inf; +morflera morfler ver 2.01 2.91 0.01 0.14 ind:fut:3s; +morfleras morfler ver 2.01 2.91 0.01 0.00 ind:fut:2s; +morflerez morfler ver 2.01 2.91 0.01 0.00 ind:fut:2p; +morfles morfler ver 2.01 2.91 0.04 0.00 ind:pre:2s; +morflé morfler ver m s 2.01 2.91 0.62 1.08 par:pas; +morflée morfler ver f s 2.01 2.91 0.00 0.14 par:pas; +morfond morfondre ver 1.26 2.50 0.34 0.34 ind:pre:3s; +morfondaient morfondre ver 1.26 2.50 0.00 0.20 ind:imp:3p; +morfondais morfondre ver 1.26 2.50 0.00 0.07 ind:imp:1s; +morfondait morfondre ver 1.26 2.50 0.14 0.68 ind:imp:3s; +morfondant morfondre ver 1.26 2.50 0.00 0.14 par:pre; +morfonde morfondre ver 1.26 2.50 0.01 0.07 sub:pre:1s;sub:pre:3s; +morfondis morfondre ver 1.26 2.50 0.00 0.07 ind:pas:1s; +morfondra morfondre ver 1.26 2.50 0.01 0.00 ind:fut:3s; +morfondre morfondre ver 1.26 2.50 0.47 0.68 inf; +morfonds morfondre ver 1.26 2.50 0.28 0.07 imp:pre:2s;ind:pre:1s; +morfondu morfondre ver m s 1.26 2.50 0.02 0.20 par:pas; +morfondue morfondu adj f s 0.00 0.68 0.00 0.27 +morgana morganer ver 0.26 0.34 0.24 0.00 ind:pas:3s; +morganatique morganatique adj m s 0.00 0.14 0.00 0.07 +morganatiques morganatique adj f p 0.00 0.14 0.00 0.07 +morgane morganer ver 0.26 0.34 0.02 0.14 imp:pre:2s;ind:pre:3s; +morganer morganer ver 0.26 0.34 0.00 0.14 inf; +morganerai morganer ver 0.26 0.34 0.00 0.07 ind:fut:1s; +morgeline morgeline nom f s 0.01 0.00 0.01 0.00 +morgon morgon nom m s 0.01 0.00 0.01 0.00 +morgue morgue nom f s 10.12 7.03 9.95 6.76 +morgues morgue nom f p 10.12 7.03 0.17 0.27 +moria moria nom f s 0.08 0.00 0.08 0.00 +moribond moribond adj m s 0.65 2.50 0.52 1.35 +moribonde moribond adj f s 0.65 2.50 0.05 0.54 +moribondes moribond adj f p 0.65 2.50 0.03 0.20 +moribonds moribond nom m p 0.45 2.23 0.14 0.47 +moricaud moricaud nom m s 0.16 0.95 0.07 0.07 +moricaude moricaud nom f s 0.16 0.95 0.01 0.74 +moricaudes moricaud nom f p 0.16 0.95 0.00 0.07 +moricauds moricaud nom m p 0.16 0.95 0.08 0.07 +morigène morigéner ver 0.00 1.22 0.00 0.14 ind:pre:3s; +morigéna morigéner ver 0.00 1.22 0.00 0.07 ind:pas:3s; +morigénai morigéner ver 0.00 1.22 0.00 0.07 ind:pas:1s; +morigénais morigéner ver 0.00 1.22 0.00 0.07 ind:imp:1s; +morigénait morigéner ver 0.00 1.22 0.00 0.07 ind:imp:3s; +morigénant morigéner ver 0.00 1.22 0.00 0.27 par:pre; +morigéner morigéner ver 0.00 1.22 0.00 0.20 inf; +morigéné morigéner ver m s 0.00 1.22 0.00 0.20 par:pas; +morigénée morigéner ver f s 0.00 1.22 0.00 0.14 par:pas; +morille morille nom f s 0.17 0.61 0.00 0.14 +morilles morille nom f p 0.17 0.61 0.17 0.47 +morillon morillon nom m s 0.14 0.88 0.14 0.81 +morillons morillon nom m p 0.14 0.88 0.00 0.07 +morlingue morlingue nom m s 0.00 1.28 0.00 1.01 +morlingues morlingue nom m p 0.00 1.28 0.00 0.27 +mormon mormon adj m s 0.44 0.14 0.24 0.07 +mormone mormon adj f s 0.44 0.14 0.06 0.07 +mormones mormon adj f p 0.44 0.14 0.03 0.00 +mormons mormon nom m p 0.75 0.14 0.55 0.14 +morne morne adj s 1.06 19.66 0.81 14.46 +mornement mornement adv 0.01 0.07 0.01 0.07 +mornes morne adj p 1.06 19.66 0.25 5.20 +mornifle mornifle nom f s 0.00 0.81 0.00 0.81 +moro moro adj s 0.01 0.00 0.01 0.00 +morose morose adj s 1.23 8.78 1.00 7.23 +morosement morosement adv 0.00 0.07 0.00 0.07 +moroses morose adj p 1.23 8.78 0.24 1.55 +morosité morosité nom f s 0.07 1.08 0.07 1.01 +morosités morosité nom f p 0.07 1.08 0.00 0.07 +morphine morphine nom f s 7.37 1.62 7.37 1.62 +morphing morphing nom m s 0.01 0.00 0.01 0.00 +morphinomane morphinomane adj m s 0.14 0.14 0.14 0.14 +morphique morphique adj s 0.04 0.00 0.04 0.00 +morpho morpho adv 0.03 0.00 0.03 0.00 +morphogenèse morphogenèse nom f s 0.01 0.00 0.01 0.00 +morphogénétique morphogénétique adj m s 0.11 0.00 0.11 0.00 +morphologie morphologie nom f s 0.33 0.81 0.33 0.81 +morphologique morphologique adj s 0.01 0.14 0.00 0.07 +morphologiques morphologique adj f p 0.01 0.14 0.01 0.07 +morpion morpion nom m s 2.14 1.76 0.46 0.95 +morpions morpion nom m p 2.14 1.76 1.68 0.81 +mors mors nom m 0.64 1.89 0.64 1.89 +morse morse nom m s 3.50 0.88 3.50 0.88 +morsure morsure nom f s 6.31 5.95 3.90 4.26 +morsures morsure nom f p 6.31 5.95 2.41 1.69 +mort_aux_rats mort_aux_rats nom f 0.61 0.47 0.61 0.47 +mort_né mort_né adj m s 0.80 0.61 0.53 0.34 +mort_né mort_né adj f s 0.80 0.61 0.23 0.00 +mort_né mort_né adj f p 0.80 0.61 0.00 0.07 +mort_né mort_né adj m p 0.80 0.61 0.04 0.20 +mort_vivant mort_vivant nom m s 1.46 0.81 0.41 0.27 +mort mort nom 460.05 452.70 372.07 373.99 +mortadelle mortadelle nom f s 0.79 0.34 0.79 0.34 +mortaise mortaise nom f s 0.16 0.20 0.14 0.00 +mortaiser mortaiser ver 0.01 0.20 0.01 0.20 inf; +mortaises mortaise nom f p 0.16 0.20 0.01 0.20 +mortaiseuse mortaiseur nom f s 0.00 0.14 0.00 0.14 +mortalité mortalité nom f s 1.51 0.61 1.51 0.61 +morte_saison morte_saison nom f s 0.01 1.08 0.01 1.01 +morte mourir ver f s 916.42 391.08 112.36 44.93 par:pas; +mortel mortel adj m s 24.13 20.07 14.62 8.38 +mortelle mortel adj f s 24.13 20.07 5.69 6.69 +mortellement mortellement adv 2.03 3.18 2.03 3.18 +mortelles mortel adj f p 24.13 20.07 1.22 2.30 +mortels mortel nom m p 6.89 4.80 3.32 3.31 +mortes_eaux mortes_eaux nom f p 0.00 0.07 0.00 0.07 +morte_saison morte_saison nom f p 0.01 1.08 0.00 0.07 +mortes mourir ver f p 916.42 391.08 5.32 3.04 par:pas; +mortibus mortibus adj m s 0.02 0.34 0.02 0.34 +mortier mortier nom m s 2.06 5.61 1.30 3.51 +mortiers mortier nom m p 2.06 5.61 0.76 2.09 +mortifia mortifier ver 1.63 3.78 0.00 0.07 ind:pas:3s; +mortifiai mortifier ver 1.63 3.78 0.00 0.07 ind:pas:1s; +mortifiaient mortifier ver 1.63 3.78 0.00 0.07 ind:imp:3p; +mortifiait mortifier ver 1.63 3.78 0.00 0.54 ind:imp:3s; +mortifiant mortifiant adj m s 0.05 0.41 0.05 0.20 +mortifiante mortifiant adj f s 0.05 0.41 0.00 0.07 +mortifiantes mortifiant adj f p 0.05 0.41 0.00 0.07 +mortifiants mortifiant adj m p 0.05 0.41 0.00 0.07 +mortification mortification nom f s 0.56 1.22 0.54 0.68 +mortifications mortification nom f p 0.56 1.22 0.02 0.54 +mortifie mortifier ver 1.63 3.78 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mortifier mortifier ver 1.63 3.78 0.19 0.68 inf; +mortifié mortifier ver m s 1.63 3.78 0.91 1.28 par:pas; +mortifiée mortifier ver f s 1.63 3.78 0.49 0.74 par:pas; +mortifiés mortifier ver m p 1.63 3.78 0.00 0.27 par:pas; +mortifère mortifère adj s 0.02 0.34 0.01 0.20 +mortifères mortifère adj m p 0.02 0.34 0.01 0.14 +mort_vivant mort_vivant nom m p 1.46 0.81 1.05 0.54 +morts mort nom p 460.05 452.70 78.09 66.15 +mortuaire mortuaire adj s 1.86 5.47 1.61 4.59 +mortuaires mortuaire adj p 1.86 5.47 0.25 0.88 +morue morue nom f s 3.67 5.61 3.46 4.86 +morues morue nom f p 3.67 5.61 0.20 0.74 +morula morula nom f s 0.01 0.00 0.01 0.00 +morvandiau morvandiau adj m s 0.00 0.20 0.00 0.20 +morve morve nom f s 1.60 1.96 1.60 1.82 +morves morve nom f p 1.60 1.96 0.00 0.14 +morveuse morveux nom f s 4.97 2.43 0.46 0.14 +morveuses morveux adj f p 2.11 1.22 0.01 0.07 +morveux morveux nom m 4.97 2.43 4.51 2.30 +mos mos nom m 0.01 0.00 0.01 0.00 +mosaïque mosaïque nom f s 0.58 4.53 0.53 2.77 +mosaïques mosaïque nom f p 0.58 4.53 0.06 1.76 +mosaïquée mosaïqué adj f s 0.00 0.14 0.00 0.07 +mosaïqués mosaïqué adj m p 0.00 0.14 0.00 0.07 +mosaïste mosaïste nom m s 0.00 0.14 0.00 0.14 +moscoutaire moscoutaire nom s 0.00 0.07 0.00 0.07 +moscovite moscovite adj s 0.68 1.42 0.34 1.15 +moscovites moscovite adj p 0.68 1.42 0.34 0.27 +mosellane mosellan adj f s 0.00 0.20 0.00 0.14 +mosellanes mosellan adj f p 0.00 0.20 0.00 0.07 +mosquée mosquée nom f s 3.43 5.68 2.71 4.32 +mosquées mosquée nom f p 3.43 5.68 0.72 1.35 +mot_clé mot_clé nom m s 0.58 0.34 0.41 0.14 +mot_valise mot_valise nom m s 0.01 0.00 0.01 0.00 +mât mât nom m s 1.67 9.59 1.47 5.95 +mot mot nom m s 279.55 553.78 174.83 260.47 +motard motard nom m s 4.10 6.89 1.79 3.45 +motarde motard nom f s 4.10 6.89 0.07 0.14 +motardes motard nom f p 4.10 6.89 0.01 0.07 +motards motard nom m p 4.10 6.89 2.23 3.24 +mâte mâter ver 0.04 0.14 0.01 0.07 imp:pre:2s;ind:pre:3s; +motel motel nom m s 9.43 1.28 8.62 1.22 +motels motel nom m p 9.43 1.28 0.82 0.07 +mâter mâter ver 0.04 0.14 0.03 0.00 inf; +motesse motesse nom f s 0.00 0.07 0.00 0.07 +motet motet nom m s 0.03 0.27 0.03 0.20 +motets motet nom m p 0.03 0.27 0.00 0.07 +moteur_fusée moteur_fusée nom m s 0.04 0.00 0.01 0.00 +moteur moteur nom m s 33.63 51.08 26.31 41.28 +moteur_fusée moteur_fusée nom m p 0.04 0.00 0.04 0.00 +moteurs moteur nom m p 33.63 51.08 7.32 9.80 +motif motif nom m s 16.56 31.15 12.20 15.74 +motifs motif nom m p 16.56 31.15 4.36 15.41 +motilité motilité nom f s 0.02 0.00 0.02 0.00 +mâtin mâtin ono 0.00 0.07 0.00 0.07 +mâtinant mâtiner ver 0.03 0.81 0.00 0.07 par:pre; +mâtine mâtine nom f s 0.57 1.22 0.00 0.14 +mâtines mâtine nom f p 0.57 1.22 0.01 0.07 +mâtins mâtin nom m p 0.26 0.20 0.00 0.07 +mâtiné mâtiné adj m s 0.03 0.00 0.03 0.00 +mâtinée mâtiner ver f s 0.03 0.81 0.01 0.14 par:pas; +mâtinés mâtiner ver m p 0.03 0.81 0.00 0.14 par:pas; +motion motion nom f s 3.10 1.28 2.87 0.68 +motions motion nom f p 3.10 1.28 0.22 0.61 +motiva motiver ver 5.50 2.43 0.00 0.14 ind:pas:3s; +motivai motiver ver 5.50 2.43 0.00 0.07 ind:pas:1s; +motivaient motiver ver 5.50 2.43 0.00 0.14 ind:imp:3p; +motivais motiver ver 5.50 2.43 0.01 0.00 ind:imp:2s; +motivait motiver ver 5.50 2.43 0.08 0.27 ind:imp:3s; +motivant motivant adj m s 0.24 0.00 0.21 0.00 +motivante motivant adj f s 0.24 0.00 0.03 0.00 +motivateur motivateur nom m s 0.05 0.00 0.05 0.00 +motivation motivation nom f s 4.81 1.28 3.02 0.81 +motivations motivation nom f p 4.81 1.28 1.79 0.47 +motive motiver ver 5.50 2.43 1.33 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +motivent motiver ver 5.50 2.43 0.04 0.20 ind:pre:3p; +motiver motiver ver 5.50 2.43 1.30 0.34 inf; +motivera motiver ver 5.50 2.43 0.02 0.00 ind:fut:3s; +motivez motiver ver 5.50 2.43 0.01 0.00 imp:pre:2p; +motivé motiver ver m s 5.50 2.43 1.67 0.20 par:pas; +motivée motiver ver f s 5.50 2.43 0.42 0.47 par:pas; +motivées motiver ver f p 5.50 2.43 0.04 0.07 par:pas; +motivés motiver ver m p 5.50 2.43 0.53 0.14 par:pas; +moto_club moto_club nom f s 0.00 0.14 0.00 0.14 +moto_cross moto_cross nom m 0.04 0.07 0.04 0.07 +moto moto nom f s 25.23 19.26 22.61 15.27 +motocross motocross nom m 0.19 0.00 0.19 0.00 +motoculteur motoculteur nom m s 0.00 0.14 0.00 0.14 +motoculture motoculture nom f s 0.14 0.00 0.14 0.00 +motocycles motocycle nom m p 0.00 0.07 0.00 0.07 +motocyclette motocyclette nom f s 0.40 4.19 0.36 3.31 +motocyclettes motocyclette nom f p 0.40 4.19 0.04 0.88 +motocyclisme motocyclisme nom m s 0.02 0.00 0.02 0.00 +motocycliste motocycliste nom s 0.07 2.64 0.04 1.28 +motocyclistes motocycliste nom p 0.07 2.64 0.03 1.35 +motoneige motoneige nom f s 0.60 0.00 0.34 0.00 +motoneiges motoneige nom f p 0.60 0.00 0.26 0.00 +motoneurone motoneurone nom m s 0.01 0.00 0.01 0.00 +motorisation motorisation nom f s 0.01 0.27 0.01 0.27 +motoriser motoriser ver 0.09 1.42 0.00 0.07 inf; +motorisé motorisé adj m s 0.47 2.23 0.12 0.41 +motorisée motorisé adj f s 0.47 2.23 0.20 0.68 +motorisées motoriser ver f p 0.09 1.42 0.01 0.14 par:pas; +motorisés motorisé adj m p 0.47 2.23 0.16 0.68 +motos moto nom f p 25.23 19.26 2.62 3.99 +motrice moteur adj f s 4.17 2.43 0.26 0.34 +motrices moteur adj f p 4.17 2.43 0.20 0.14 +motricité motricité nom f s 0.42 0.00 0.42 0.00 +mot_clef mot_clef nom m p 0.00 0.07 0.00 0.07 +mot_clé mot_clé nom m p 0.58 0.34 0.17 0.20 +mots_croisés mots_croisés nom m p 0.07 0.00 0.07 0.00 +mâts mât nom m p 1.67 9.59 0.20 3.65 +mots mot nom m p 279.55 553.78 104.72 293.31 +motte motte nom f s 0.51 9.19 0.26 2.97 +mottereau mottereau nom m s 0.00 0.07 0.00 0.07 +mottes motte nom f p 0.51 9.19 0.24 6.22 +motteux motteux nom m 0.00 0.07 0.00 0.07 +motu_proprio motu_proprio adv 0.00 0.07 0.00 0.07 +mâtée mâter ver f s 0.04 0.14 0.00 0.07 par:pas; +mâture mâture nom f s 0.14 1.62 0.14 1.08 +mâtures mâture nom f p 0.14 1.62 0.00 0.54 +motus motus ono 0.88 1.01 0.88 1.01 +mou mou adj m s 6.99 22.50 5.53 17.09 +mouais mouais ono 1.15 0.20 1.15 0.20 +moucha moucher ver 2.55 6.55 0.00 1.82 ind:pas:3s; +mouchachou mouchachou nom m s 0.00 0.07 0.00 0.07 +mouchage mouchage nom m s 0.01 0.00 0.01 0.00 +mouchai moucher ver 2.55 6.55 0.00 0.14 ind:pas:1s; +mouchaient moucher ver 2.55 6.55 0.00 0.20 ind:imp:3p; +mouchait moucher ver 2.55 6.55 0.15 0.41 ind:imp:3s; +mouchant moucher ver 2.55 6.55 0.00 0.20 par:pre; +mouchard mouchard nom m s 6.00 2.77 4.16 1.62 +moucharda moucharder ver 1.54 0.88 0.00 0.07 ind:pas:3s; +mouchardage mouchardage nom m s 0.04 0.20 0.04 0.20 +mouchardait moucharder ver 1.54 0.88 0.01 0.07 ind:imp:3s; +moucharde mouchard nom f s 6.00 2.77 0.56 0.27 +mouchardent moucharder ver 1.54 0.88 0.04 0.00 ind:pre:3p; +moucharder moucharder ver 1.54 0.88 0.46 0.54 inf; +mouchardera moucharder ver 1.54 0.88 0.02 0.00 ind:fut:3s; +moucharderait moucharder ver 1.54 0.88 0.01 0.07 cnd:pre:3s; +mouchardes moucharder ver 1.54 0.88 0.14 0.07 ind:pre:2s; +mouchards mouchard nom m p 6.00 2.77 1.28 0.88 +mouchardé moucharder ver m s 1.54 0.88 0.61 0.07 par:pas; +mouche mouche nom f s 24.65 46.89 15.36 18.72 +mouchent moucher ver 2.55 6.55 0.00 0.20 ind:pre:3p; +moucher moucher ver 2.55 6.55 0.76 1.28 inf; +moucheron moucheron nom m s 2.19 2.43 1.93 0.74 +moucherons moucheron nom m p 2.19 2.43 0.26 1.69 +mouches mouche nom f p 24.65 46.89 9.29 28.18 +mouchetait moucheter ver 0.03 1.15 0.00 0.07 ind:imp:3s; +mouchetant moucheter ver 0.03 1.15 0.00 0.07 par:pre; +mouchette mouchette nom f s 0.00 0.14 0.00 0.14 +moucheté moucheté adj m s 0.30 1.15 0.10 0.41 +mouchetée moucheté adj f s 0.30 1.15 0.10 0.20 +mouchetées moucheté adj f p 0.30 1.15 0.10 0.20 +moucheture moucheture nom f s 0.02 0.41 0.01 0.00 +mouchetures moucheture nom f p 0.02 0.41 0.01 0.41 +mouchetés moucheter ver m p 0.03 1.15 0.01 0.20 par:pas; +moucheur moucheur nom m s 0.01 0.07 0.01 0.07 +mouchez moucher ver 2.55 6.55 0.22 0.07 imp:pre:2p;ind:pre:2p; +mouchoir mouchoir nom m s 11.53 34.59 9.84 28.85 +mouchoirs mouchoir nom m p 11.53 34.59 1.69 5.74 +mouchons moucher ver 2.55 6.55 0.00 0.07 ind:pre:1p; +mouché moucher ver m s 2.55 6.55 0.39 0.81 par:pas; +mouchée moucher ver f s 2.55 6.55 0.06 0.20 par:pas; +mouchés moucher ver m p 2.55 6.55 0.04 0.07 par:pas; +moud moudre ver 1.43 2.57 0.38 0.14 ind:pre:3s; +moudjahiddine moudjahiddine nom m s 0.03 0.07 0.03 0.07 +moudjahidin moudjahidin nom m p 0.16 0.00 0.16 0.00 +moudjahidine moudjahidine nom m p 0.01 0.00 0.01 0.00 +moudrai moudre ver 1.43 2.57 0.10 0.00 ind:fut:1s; +moudre moudre ver 1.43 2.57 0.72 1.22 inf; +mouds moudre ver 1.43 2.57 0.00 0.07 ind:pre:1s; +moue moue nom f s 0.78 18.58 0.76 17.43 +moues moue nom f p 0.78 18.58 0.02 1.15 +mouette mouette nom f s 3.24 15.81 1.43 5.47 +mouettes mouette nom f p 3.24 15.81 1.81 10.34 +moufetait moufeter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +moufette moufette nom f s 0.04 0.00 0.04 0.00 +moufeté moufeter ver m s 0.00 0.14 0.00 0.07 par:pas; +mouffette mouffette nom f s 0.08 0.54 0.08 0.54 +moufle moufle nom f s 0.73 1.76 0.28 0.34 +moufles moufle nom f p 0.73 1.76 0.45 1.42 +mouflet mouflet nom m s 0.41 5.68 0.17 3.18 +mouflets mouflet nom m p 0.41 5.68 0.24 2.50 +mouflette mouflette nom f s 0.19 2.43 0.19 2.09 +mouflettes mouflette nom f p 0.19 2.43 0.00 0.34 +mouflon mouflon nom m s 0.05 0.47 0.04 0.14 +mouflons mouflon nom m p 0.05 0.47 0.01 0.34 +mouftaient moufter ver 0.20 4.12 0.01 0.00 ind:imp:3p; +mouftais moufter ver 0.20 4.12 0.00 0.07 ind:imp:1s; +mouftait moufter ver 0.20 4.12 0.00 0.61 ind:imp:3s; +moufte moufter ver 0.20 4.12 0.02 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mouftent moufter ver 0.20 4.12 0.01 0.27 ind:pre:3p; +moufter moufter ver 0.20 4.12 0.06 1.22 inf; +mouftera moufter ver 0.20 4.12 0.01 0.07 ind:fut:3s; +mouftes moufter ver 0.20 4.12 0.01 0.07 ind:pre:2s; +mouftez moufter ver 0.20 4.12 0.01 0.07 ind:pre:2p; +moufté moufter ver m s 0.20 4.12 0.06 0.47 par:pas; +mouilla mouiller ver 19.36 38.92 0.01 2.03 ind:pas:3s; +mouillage mouillage nom m s 0.14 1.22 0.14 1.15 +mouillages mouillage nom m p 0.14 1.22 0.00 0.07 +mouillaient mouiller ver 19.36 38.92 0.14 0.88 ind:imp:3p; +mouillais mouiller ver 19.36 38.92 0.04 0.27 ind:imp:1s;ind:imp:2s; +mouillait mouiller ver 19.36 38.92 0.32 2.64 ind:imp:3s; +mouillant mouiller ver 19.36 38.92 0.11 1.15 par:pre; +mouillante mouillant adj f s 0.00 0.14 0.00 0.07 +mouillasse mouiller ver 19.36 38.92 0.00 0.07 sub:imp:1s; +mouille mouiller ver 19.36 38.92 3.26 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mouillent mouiller ver 19.36 38.92 0.24 0.88 ind:pre:3p; +mouiller mouiller ver 19.36 38.92 4.43 7.50 inf; +mouillera mouiller ver 19.36 38.92 0.44 0.00 ind:fut:3s; +mouillerai mouiller ver 19.36 38.92 0.02 0.07 ind:fut:1s; +mouillerais mouiller ver 19.36 38.92 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +mouillerait mouiller ver 19.36 38.92 0.01 0.20 cnd:pre:3s; +mouilleras mouiller ver 19.36 38.92 0.01 0.07 ind:fut:2s; +mouilleront mouiller ver 19.36 38.92 0.16 0.07 ind:fut:3p; +mouilles mouiller ver 19.36 38.92 0.64 0.41 ind:pre:2s;sub:pre:2s; +mouillette mouillette nom f s 0.25 0.68 0.04 0.41 +mouillettes mouillette nom f p 0.25 0.68 0.21 0.27 +mouilleur mouilleur nom m s 0.01 0.00 0.01 0.00 +mouilleuse mouilleur adj f s 0.00 0.07 0.00 0.07 +mouillez mouiller ver 19.36 38.92 0.32 0.14 imp:pre:2p;ind:pre:2p; +mouillon mouillon nom m s 0.04 0.07 0.00 0.07 +mouillons mouillon nom m p 0.04 0.07 0.04 0.00 +mouillèrent mouiller ver 19.36 38.92 0.00 0.27 ind:pas:3p; +mouillé mouiller ver m s 19.36 38.92 5.70 8.58 par:pas; +mouillée mouillé adj f s 12.92 33.51 5.26 10.54 +mouillées mouillé adj f p 12.92 33.51 1.60 3.92 +mouillure mouillure nom f s 0.00 0.34 0.00 0.27 +mouillures mouillure nom f p 0.00 0.34 0.00 0.07 +mouillés mouillé adj m p 12.92 33.51 1.96 5.74 +mouise mouise nom f s 0.81 1.01 0.81 1.01 +moujahid moujahid nom m s 0.00 0.47 0.00 0.47 +moujik moujik nom m s 0.80 1.15 0.30 0.54 +moujiks moujik nom m p 0.80 1.15 0.50 0.61 +moujingue moujingue nom s 0.00 1.28 0.00 0.47 +moujingues moujingue nom p 0.00 1.28 0.00 0.81 +moukère moukère nom f s 0.00 0.41 0.00 0.20 +moukères moukère nom f p 0.00 0.41 0.00 0.20 +moula mouler ver 1.56 8.78 0.00 0.07 ind:pas:3s; +moulage moulage nom m s 0.80 1.15 0.53 0.54 +moulages moulage nom m p 0.80 1.15 0.27 0.61 +moulaient mouler ver 1.56 8.78 0.01 0.41 ind:imp:3p; +moulait mouler ver 1.56 8.78 0.12 2.03 ind:imp:3s; +moulant moulant adj m s 1.75 1.76 0.71 1.15 +moulante moulant adj f s 1.75 1.76 0.31 0.27 +moulantes moulant adj f p 1.75 1.76 0.03 0.00 +moulants moulant adj m p 1.75 1.76 0.69 0.34 +moule moule nom s 6.12 9.26 3.56 3.99 +moulent mouler ver 1.56 8.78 0.04 0.14 ind:pre:3p; +mouler mouler ver 1.56 8.78 0.15 0.47 inf; +mouleraient mouler ver 1.56 8.78 0.00 0.07 cnd:pre:3p; +moulerait mouler ver 1.56 8.78 0.00 0.07 cnd:pre:3s; +moules moule nom p 6.12 9.26 2.56 5.27 +mouleur mouleur nom m s 0.00 0.07 0.00 0.07 +moulez mouler ver 1.56 8.78 0.21 0.00 imp:pre:2p;ind:pre:2p; +moulin_à_vent moulin_à_vent nom m 0.00 0.14 0.00 0.14 +moulin moulin nom m s 7.75 19.05 6.80 15.61 +moulinage moulinage nom m s 0.01 0.00 0.01 0.00 +moulinait mouliner ver 0.06 0.88 0.01 0.14 ind:imp:3s; +mouline mouliner ver 0.06 0.88 0.02 0.14 imp:pre:2s;ind:pre:3s; +moulinent mouliner ver 0.06 0.88 0.00 0.07 ind:pre:3p; +mouliner mouliner ver 0.06 0.88 0.00 0.47 inf; +moulines mouliner ver 0.06 0.88 0.00 0.07 ind:pre:2s; +moulinet moulinet nom m s 0.50 3.18 0.44 1.82 +moulinets moulinet nom m p 0.50 3.18 0.06 1.35 +moulinette moulinette nom f s 0.27 0.68 0.23 0.61 +moulinettes moulinette nom f p 0.27 0.68 0.05 0.07 +moulinez mouliner ver 0.06 0.88 0.02 0.00 imp:pre:2p; +moulins moulin nom m p 7.75 19.05 0.94 3.45 +moult moult adv 0.33 3.18 0.33 3.18 +moulé mouler ver m s 1.56 8.78 0.42 1.62 par:pas; +moulu moulu adj m s 0.48 0.88 0.26 0.47 +moulée mouler ver f s 1.56 8.78 0.14 1.69 par:pas; +moulue moudre ver f s 1.43 2.57 0.11 0.27 par:pas; +moulées mouler ver f p 1.56 8.78 0.01 0.74 par:pas; +moulues moulu adj f p 0.48 0.88 0.20 0.14 +moulurations mouluration nom f p 0.00 0.07 0.00 0.07 +moulure moulure nom f s 0.22 2.70 0.06 0.54 +moulures moulure nom f p 0.22 2.70 0.16 2.16 +mouluré moulurer ver m s 0.00 0.20 0.00 0.20 par:pas; +moulés moulé adj m p 0.24 1.49 0.02 0.07 +moulus moulu adj m p 0.48 0.88 0.02 0.20 +moulut moudre ver 1.43 2.57 0.00 0.07 ind:pas:3s; +moumounes moumoune nom f p 0.00 0.14 0.00 0.14 +moumoute moumoute nom f s 0.87 0.61 0.86 0.47 +moumoutes moumoute nom f p 0.87 0.61 0.01 0.14 +mound mound nom m s 0.02 0.00 0.02 0.00 +mouquère mouquère nom f s 0.00 0.27 0.00 0.27 +mourût mourir ver 916.42 391.08 0.02 0.61 sub:imp:3s; +mourûtes mourir ver 916.42 391.08 0.00 0.07 ind:pas:2p; +mouraient mourir ver 916.42 391.08 1.22 5.95 ind:imp:3p; +mourais mourir ver 916.42 391.08 2.23 1.89 ind:imp:1s;ind:imp:2s; +mourait mourir ver 916.42 391.08 2.92 11.35 ind:imp:3s; +mourant mourant adj m s 9.56 5.74 6.18 3.04 +mourante mourant adj f s 9.56 5.74 2.71 1.89 +mourantes mourant adj f p 9.56 5.74 0.27 0.54 +mourants mourant nom m p 2.87 5.14 1.11 1.35 +mourez mourir ver 916.42 391.08 2.77 1.08 imp:pre:2p;ind:pre:2p; +mourides mouride adj f p 0.00 0.07 0.00 0.07 +mouriez mourir ver 916.42 391.08 0.73 0.00 ind:imp:2p; +mourions mourir ver 916.42 391.08 0.41 0.27 ind:imp:1p; +mourir mourir ver 916.42 391.08 234.74 130.61 inf;; +mouroir mouroir nom m s 0.07 0.27 0.07 0.27 +mouron mouron nom m s 0.73 4.26 0.53 4.12 +mouronne mouronner ver 0.00 0.14 0.00 0.07 ind:pre:1s; +mouronner mouronner ver 0.00 0.14 0.00 0.07 inf; +mourons mourir ver 916.42 391.08 1.33 0.47 imp:pre:1p;ind:pre:1p; +mourra mourir ver 916.42 391.08 13.63 4.93 ind:fut:3s; +mourrai mourir ver 916.42 391.08 7.54 3.04 ind:fut:1s; +mourraient mourir ver 916.42 391.08 1.38 0.61 cnd:pre:3p; +mourrais mourir ver 916.42 391.08 4.22 1.28 cnd:pre:1s;cnd:pre:2s; +mourrait mourir ver 916.42 391.08 3.45 3.78 cnd:pre:3s; +mourras mourir ver 916.42 391.08 7.67 1.15 ind:fut:2s; +mourre mourre nom f s 0.03 0.07 0.03 0.07 +mourrez mourir ver 916.42 391.08 4.99 0.95 ind:fut:2p; +mourriez mourir ver 916.42 391.08 0.29 0.07 cnd:pre:2p; +mourrions mourir ver 916.42 391.08 0.16 0.07 cnd:pre:1p; +mourrons mourir ver 916.42 391.08 3.41 1.15 ind:fut:1p; +mourront mourir ver 916.42 391.08 3.86 1.08 ind:fut:3p; +moururent mourir ver 916.42 391.08 0.91 1.22 ind:pas:3p; +mourus mourir ver 916.42 391.08 0.11 0.34 ind:pas:1s;ind:pas:2s; +mourussent mourir ver 916.42 391.08 0.00 0.07 sub:imp:3p; +mourut mourir ver 916.42 391.08 5.62 11.35 ind:pas:3s; +mous mou adj m p 6.99 22.50 1.46 5.41 +mouscaille mouscaille nom f s 0.00 0.81 0.00 0.74 +mouscailles mouscaille nom f p 0.00 0.81 0.00 0.07 +mousmé mousmé nom f s 0.22 0.20 0.21 0.14 +mousmés mousmé nom f p 0.22 0.20 0.01 0.07 +mousquet mousquet nom m s 1.31 0.95 0.48 0.54 +mousquetades mousquetade nom f p 0.01 0.00 0.01 0.00 +mousquetaire mousquetaire nom m s 3.02 3.65 0.82 1.15 +mousquetaires mousquetaire nom m p 3.02 3.65 2.19 2.50 +mousqueterie mousqueterie nom f s 0.01 0.20 0.01 0.20 +mousqueton mousqueton nom m s 0.72 4.39 0.41 3.18 +mousquetons mousqueton nom m p 0.72 4.39 0.32 1.22 +mousquets mousquet nom m p 1.31 0.95 0.83 0.41 +moussage moussage nom m s 0.00 0.07 0.00 0.07 +moussaient mousser ver 0.89 3.51 0.00 0.20 ind:imp:3p; +moussaillon moussaillon nom m s 0.59 0.34 0.34 0.34 +moussaillons moussaillon nom m p 0.59 0.34 0.25 0.00 +moussait mousser ver 0.89 3.51 0.00 0.68 ind:imp:3s; +moussaka moussaka nom f s 0.07 0.27 0.07 0.14 +moussakas moussaka nom f p 0.07 0.27 0.00 0.14 +moussant moussant adj m s 0.75 0.61 0.63 0.27 +moussante moussant adj f s 0.75 0.61 0.01 0.14 +moussants moussant adj m p 0.75 0.61 0.11 0.20 +mousse mousse nom s 6.47 27.16 6.24 23.04 +mousseline mousseline nom f s 0.36 4.73 0.36 4.19 +mousselines mousseline nom f p 0.36 4.73 0.00 0.54 +moussent mousser ver 0.89 3.51 0.00 0.07 ind:pre:3p; +mousser mousser ver 0.89 3.51 0.66 1.82 inf;; +mousseron mousseron nom m s 0.00 1.62 0.00 0.20 +mousserons mousseron nom m p 0.00 1.62 0.00 1.42 +mousses mousse nom p 6.47 27.16 0.24 4.12 +mousseuse mousseux adj f s 0.23 3.72 0.02 1.28 +mousseuses mousseux adj f p 0.23 3.72 0.00 0.41 +mousseux mousseux nom m 1.45 1.82 1.45 1.82 +mousson mousson nom f s 0.84 17.36 0.73 17.23 +moussons mousson nom f p 0.84 17.36 0.11 0.14 +moussu moussu adj m s 0.04 2.23 0.00 0.68 +moussue moussu adj f s 0.04 2.23 0.03 0.41 +moussues moussu adj f p 0.04 2.23 0.01 0.47 +moussus moussu adj m p 0.04 2.23 0.00 0.68 +moustache moustache nom f s 12.79 45.07 10.65 28.92 +moustaches moustache nom f p 12.79 45.07 2.13 16.15 +moustachu moustachu adj m s 0.84 8.99 0.63 6.55 +moustachue moustachu adj f s 0.84 8.99 0.04 0.54 +moustachues moustachu adj f p 0.84 8.99 0.01 0.27 +moustachus moustachu adj m p 0.84 8.99 0.17 1.62 +moustagache moustagache nom f s 0.00 0.54 0.00 0.34 +moustagaches moustagache nom f p 0.00 0.54 0.00 0.20 +moustiquaire moustiquaire nom f s 0.45 2.09 0.38 1.22 +moustiquaires moustiquaire nom f p 0.45 2.09 0.07 0.88 +moustique moustique nom m s 5.97 7.57 2.53 1.49 +moustiques moustique nom m p 5.97 7.57 3.44 6.08 +moutard moutard nom m s 0.86 3.31 0.54 1.49 +moutarde moutarde nom f s 3.95 5.00 3.94 4.93 +moutardes moutarde nom f p 3.95 5.00 0.01 0.07 +moutardier moutardier nom m s 0.00 0.14 0.00 0.14 +moutards moutard nom m p 0.86 3.31 0.32 1.82 +moutardé moutarder ver m s 0.00 0.07 0.00 0.07 par:pas; +moutier moutier nom m s 0.14 0.00 0.14 0.00 +mouton mouton nom m s 15.20 30.47 6.08 14.12 +moutonnaient moutonner ver 0.01 1.01 0.00 0.07 ind:imp:3p; +moutonnait moutonner ver 0.01 1.01 0.00 0.27 ind:imp:3s; +moutonnant moutonner ver 0.01 1.01 0.00 0.20 par:pre; +moutonnante moutonnant adj f s 0.00 0.47 0.00 0.20 +moutonnantes moutonnant adj f p 0.00 0.47 0.00 0.14 +moutonnants moutonnant adj m p 0.00 0.47 0.00 0.07 +moutonne moutonner ver 0.01 1.01 0.01 0.14 ind:pre:3s; +moutonnement moutonnement nom m s 0.00 1.42 0.00 1.35 +moutonnements moutonnement nom m p 0.00 1.42 0.00 0.07 +moutonnent moutonner ver 0.01 1.01 0.00 0.20 ind:pre:3p; +moutonner moutonner ver 0.01 1.01 0.00 0.14 inf; +moutonnerie moutonnerie nom f s 0.00 0.07 0.00 0.07 +moutonneux moutonneux adj m s 0.00 0.20 0.00 0.20 +moutonnier moutonnier adj m s 0.00 0.27 0.00 0.07 +moutonniers moutonnier adj m p 0.00 0.27 0.00 0.07 +moutonnière moutonnier adj f s 0.00 0.27 0.00 0.14 +moutons mouton nom m p 15.20 30.47 9.13 16.35 +mouture mouture nom f s 0.06 0.20 0.06 0.14 +moutures mouture nom f p 0.06 0.20 0.00 0.07 +mouvaient mouvoir ver 1.75 13.18 0.10 1.01 ind:imp:3p; +mouvais mouvoir ver 1.75 13.18 0.11 0.14 ind:imp:1s; +mouvait mouvoir ver 1.75 13.18 0.10 1.22 ind:imp:3s; +mouvance mouvance nom f s 0.02 0.20 0.01 0.20 +mouvances mouvance nom f p 0.02 0.20 0.01 0.00 +mouvant mouvant adj m s 1.77 13.18 0.39 3.45 +mouvante mouvant adj f s 1.77 13.18 0.55 4.39 +mouvantes mouvant adj f p 1.77 13.18 0.04 2.84 +mouvants mouvant adj m p 1.77 13.18 0.81 2.50 +mouvement mouvement nom m s 40.33 182.97 29.26 134.80 +mouvementent mouvementer ver 0.51 0.41 0.00 0.07 ind:pre:3p; +mouvements mouvement nom m p 40.33 182.97 11.07 48.18 +mouvementé mouvementé adj m s 0.92 1.42 0.16 0.34 +mouvementée mouvementé adj f s 0.92 1.42 0.47 0.74 +mouvementées mouvementé adj f p 0.92 1.42 0.16 0.34 +mouvementés mouvementé adj m p 0.92 1.42 0.12 0.00 +mouvoir mouvoir ver 1.75 13.18 0.58 4.26 inf; +moyen_âge moyen_âge nom m s 1.15 0.20 1.15 0.20 +moyen_oriental moyen_oriental adj m s 0.03 0.00 0.03 0.00 +moyen_orientaux moyen_orientaux adj m p 0.01 0.00 0.01 0.00 +moyen moyen nom m s 83.47 107.03 53.27 48.72 +moyennant moyennant pre 0.49 4.53 0.49 4.53 +moyenne moyenne nom f s 7.22 7.77 6.81 7.50 +moyennement moyennement adv 0.42 0.54 0.42 0.54 +moyenner moyenner ver 0.06 0.20 0.00 0.07 inf; +moyennes moyen adj f p 50.69 41.69 0.63 0.81 +moyenâgeuse moyenâgeux adj f s 0.09 1.69 0.01 0.14 +moyenâgeuses moyenâgeux adj f p 0.09 1.69 0.01 0.47 +moyenâgeux moyenâgeux adj m 0.09 1.69 0.06 1.08 +moyens moyen nom m p 83.47 107.03 30.20 58.31 +moyer moyer ver 0.10 0.00 0.10 0.00 inf; +moyeu moyeu nom m s 0.01 0.68 0.01 0.68 +moyeux moyeux nom m p 0.11 0.41 0.11 0.41 +mozarabe mozarabe adj s 0.20 0.14 0.20 0.14 +mozartiennes mozartien adj f p 0.00 0.07 0.00 0.07 +mozzarella mozzarella nom f s 0.64 0.14 0.64 0.14 +mozzarelle mozzarelle nom f s 0.03 0.00 0.03 0.00 +mèche mèche nom f s 9.87 31.01 8.21 19.12 +mèches mèche nom f p 9.87 31.01 1.66 11.89 +mène mener ver 99.86 137.70 31.86 21.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mènent mener ver 99.86 137.70 6.42 7.57 ind:pre:3p; +mènera mener ver 99.86 137.70 4.70 1.28 ind:fut:3s; +mènerai mener ver 99.86 137.70 0.73 0.41 ind:fut:1s; +mèneraient mener ver 99.86 137.70 0.05 0.68 cnd:pre:3p; +mènerais mener ver 99.86 137.70 0.25 0.14 cnd:pre:1s;cnd:pre:2s; +mènerait mener ver 99.86 137.70 0.98 2.30 cnd:pre:3s; +mèneras mener ver 99.86 137.70 0.19 0.00 ind:fut:2s; +mènerez mener ver 99.86 137.70 0.08 0.14 ind:fut:2p; +mènerons mener ver 99.86 137.70 0.26 0.07 ind:fut:1p; +mèneront mener ver 99.86 137.70 1.04 0.47 ind:fut:3p; +mènes mener ver 99.86 137.70 2.84 1.01 ind:pre:2s; +mère_grand mère_grand nom f s 0.89 0.34 0.89 0.34 +mère_patrie mère_patrie nom f s 0.04 0.41 0.04 0.41 +mère mère nom f s 686.79 761.28 672.00 737.09 +mères mère nom f p 686.79 761.28 14.79 24.19 +mètre mètre nom m s 43.49 130.07 6.03 21.82 +mètres mètre nom m p 43.49 130.07 37.46 108.24 +mua muer ver 1.63 7.03 0.14 0.68 ind:pas:3s; +muai muer ver 1.63 7.03 0.00 0.07 ind:pas:1s; +muaient muer ver 1.63 7.03 0.00 0.14 ind:imp:3p; +muait muer ver 1.63 7.03 0.02 1.01 ind:imp:3s; +méandre méandre nom m s 0.72 3.72 0.14 0.54 +méandres méandre nom m p 0.72 3.72 0.58 3.18 +méandreux méandreux adj m s 0.00 0.07 0.00 0.07 +méandrine méandrine nom f s 0.00 0.07 0.00 0.07 +muant muer ver 1.63 7.03 0.00 0.20 par:pre; +méat méat nom m s 0.00 0.14 0.00 0.14 +mécanicien mécanicien nom m s 5.80 7.50 5.38 5.34 +mécanicienne mécanicien nom f s 5.80 7.50 0.05 0.00 +mécaniciennes mécanicienne nom f p 0.01 0.00 0.01 0.00 +mécaniciens mécanicien nom m p 5.80 7.50 0.38 2.16 +mécanique mécanique adj s 3.47 21.82 2.83 15.47 +mécaniquement mécaniquement adv 0.12 3.65 0.12 3.65 +mécaniques mécanique nom f p 3.75 15.14 0.93 2.70 +mécanisait mécaniser ver 0.29 0.88 0.00 0.14 ind:imp:3s; +mécanisation mécanisation nom f s 0.01 0.14 0.01 0.14 +mécanise mécaniser ver 0.29 0.88 0.00 0.07 ind:pre:3s; +mécaniser mécaniser ver 0.29 0.88 0.02 0.07 inf; +mécanisme mécanisme nom m s 4.59 10.34 3.79 6.62 +mécanismes mécanisme nom m p 4.59 10.34 0.80 3.72 +mécanistes mécaniste adj m p 0.00 0.07 0.00 0.07 +mécanisé mécaniser ver m s 0.29 0.88 0.04 0.47 par:pas; +mécanisée mécaniser ver f s 0.29 0.88 0.20 0.14 par:pas; +mécanisées mécaniser ver f p 0.29 0.88 0.01 0.00 par:pas; +mécanisés mécaniser ver m p 0.29 0.88 0.02 0.00 par:pas; +mécano mécano nom m s 2.50 4.05 1.68 3.45 +mécanographiques mécanographique adj p 0.00 0.07 0.00 0.07 +mécanos mécano nom m p 2.50 4.05 0.82 0.61 +muchacho muchacho nom m s 1.56 0.07 1.03 0.00 +muchachos muchacho nom m p 1.56 0.07 0.54 0.07 +méchait mécher ver 0.77 0.61 0.00 0.07 ind:imp:3s; +méchamment méchamment adv 2.04 6.42 2.04 6.42 +méchanceté méchanceté nom f s 4.13 12.97 3.38 11.22 +méchancetés méchanceté nom f p 4.13 12.97 0.75 1.76 +méchant méchant adj m s 53.37 34.05 30.23 16.01 +méchante méchant adj f s 53.37 34.05 14.73 9.12 +méchantes méchant adj f p 53.37 34.05 1.73 1.62 +méchants méchant nom m p 14.82 6.89 7.21 3.92 +muchas mucher ver 0.53 0.00 0.52 0.00 ind:pas:2s; +muche mucher ver 0.53 0.00 0.01 0.00 ind:pre:3s; +mécher mécher ver 0.77 0.61 0.01 0.00 inf; +méchoui méchoui nom m s 0.04 0.47 0.03 0.41 +méchouis méchoui nom m p 0.04 0.47 0.01 0.07 +mucilage mucilage nom m s 0.01 0.00 0.01 0.00 +mucilagineuse mucilagineux adj f s 0.00 0.07 0.00 0.07 +mécompte mécompte nom m s 0.00 0.81 0.00 0.27 +mécomptes mécompte nom m p 0.00 0.81 0.00 0.54 +méconduite méconduite nom f s 0.01 0.00 0.01 0.00 +méconium méconium nom m s 0.03 0.00 0.03 0.00 +méconnaîtra méconnaître ver 0.27 4.93 0.00 0.07 ind:fut:3s; +méconnaître méconnaître ver 0.27 4.93 0.10 2.23 inf; +méconnais méconnaître ver 0.27 4.93 0.10 0.27 ind:pre:1s;ind:pre:2s; +méconnaissable méconnaissable adj s 1.82 6.22 1.53 4.86 +méconnaissables méconnaissable adj p 1.82 6.22 0.29 1.35 +méconnaissais méconnaître ver 0.27 4.93 0.00 0.20 ind:imp:1s; +méconnaissance méconnaissance nom f s 0.03 0.81 0.03 0.81 +méconnaissant méconnaître ver 0.27 4.93 0.00 0.14 par:pre; +méconnaisse méconnaître ver 0.27 4.93 0.00 0.27 sub:pre:1s;sub:pre:3s; +méconnaissent méconnaître ver 0.27 4.93 0.01 0.14 ind:pre:3p; +méconnu méconnu adj m s 0.26 2.16 0.17 1.01 +méconnue méconnaître ver f s 0.27 4.93 0.05 0.41 par:pas; +méconnues méconnaître ver f p 0.27 4.93 0.00 0.20 par:pas; +méconnus méconnu adj m p 0.26 2.16 0.06 0.54 +mécontent mécontent adj m s 3.04 9.53 1.54 6.96 +mécontenta mécontenter ver 0.20 0.81 0.00 0.07 ind:pas:3s; +mécontentait mécontenter ver 0.20 0.81 0.00 0.07 ind:imp:3s; +mécontente mécontent adj f s 3.04 9.53 0.50 1.42 +mécontentement mécontentement nom m s 1.62 4.05 1.60 3.58 +mécontentements mécontentement nom m p 1.62 4.05 0.02 0.47 +mécontenter mécontenter ver 0.20 0.81 0.03 0.34 inf; +mécontentes mécontent adj f p 3.04 9.53 0.04 0.27 +mécontents mécontent adj m p 3.04 9.53 0.96 0.88 +mécontenté mécontenter ver m s 0.20 0.81 0.14 0.07 par:pas; +mécontentés mécontenter ver m p 0.20 0.81 0.00 0.07 par:pas; +mucor mucor nom m s 0.01 0.00 0.01 0.00 +mucosité mucosité nom f s 0.06 0.20 0.01 0.07 +mucosités mucosité nom f p 0.06 0.20 0.05 0.14 +mucoviscidose mucoviscidose nom f s 0.14 0.00 0.14 0.00 +mécru mécroire ver m s 0.00 0.07 0.00 0.07 par:pas; +mécréance mécréance nom f s 0.00 0.20 0.00 0.20 +mécréant mécréant nom m s 1.41 1.35 1.09 0.81 +mécréante mécréant adj f s 0.37 0.47 0.14 0.00 +mécréants mécréant nom m p 1.41 1.35 0.31 0.54 +mécène mécène nom m s 0.82 1.89 0.69 1.49 +mécènes mécène nom m p 0.82 1.89 0.14 0.41 +mécénat mécénat nom m s 0.04 0.00 0.04 0.00 +mucus mucus nom m 0.38 0.20 0.38 0.20 +médaille médaille nom f s 16.32 16.08 12.44 9.53 +médailles médaille nom f p 16.32 16.08 3.89 6.55 +médailleurs médailleur nom m p 0.00 0.07 0.00 0.07 +médaillon médaillon nom m s 1.77 3.65 1.44 2.16 +médaillons médaillon nom m p 1.77 3.65 0.33 1.49 +médaillé médaillé nom m s 0.24 0.20 0.24 0.14 +médaillée médailler ver f s 0.13 0.07 0.02 0.00 par:pas; +médecin_chef médecin_chef nom m s 0.56 2.09 0.56 2.09 +médecin_conseil médecin_conseil nom m s 0.01 0.00 0.01 0.00 +médecin_général médecin_général nom m s 0.01 0.20 0.01 0.20 +médecin_major médecin_major nom m s 0.70 0.14 0.70 0.14 +médecin médecin nom m s 140.19 75.61 112.35 60.68 +médecine_ball médecine_ball nom m s 0.01 0.00 0.01 0.00 +médecine médecine nom f s 23.51 12.43 23.29 12.36 +médecines médecine nom f p 23.51 12.43 0.22 0.07 +médecins médecin nom m p 140.19 75.61 27.84 14.93 +média média nom m s 10.23 1.22 0.77 0.07 +médian médian adj m s 0.29 2.50 0.04 0.41 +médiane médian adj f s 0.29 2.50 0.21 1.96 +médianes médian adj f p 0.29 2.50 0.02 0.14 +médianoche médianoche nom m s 0.00 0.47 0.00 0.47 +médians médian adj m p 0.29 2.50 0.01 0.00 +médias média nom m p 10.23 1.22 9.46 1.15 +médiascope médiascope nom m s 0.14 0.00 0.14 0.00 +médiastin médiastin nom m s 0.20 0.00 0.20 0.00 +médiateur médiateur nom m s 0.60 0.41 0.41 0.20 +médiateurs médiateur nom m p 0.60 0.41 0.08 0.07 +médiation médiation nom f s 0.46 0.74 0.46 0.74 +médiatique médiatique adj s 1.72 0.61 1.61 0.41 +médiatiques médiatique adj p 1.72 0.61 0.11 0.20 +médiatisant médiatiser ver 0.36 0.00 0.01 0.00 par:pre; +médiatisation médiatisation nom f s 0.23 0.00 0.23 0.00 +médiatisé médiatiser ver m s 0.36 0.00 0.12 0.00 par:pas; +médiatisée médiatiser ver f s 0.36 0.00 0.21 0.00 par:pas; +médiatisées médiatiser ver f p 0.36 0.00 0.01 0.00 par:pas; +médiatisés médiatiser ver m p 0.36 0.00 0.01 0.00 par:pas; +médiator médiator nom m s 0.09 0.00 0.09 0.00 +médiatrice médiateur nom f s 0.60 0.41 0.12 0.07 +médiatrices médiateur nom f p 0.60 0.41 0.00 0.07 +médical médical adj m s 31.48 11.89 13.65 4.80 +médicale médical adj f s 31.48 11.89 10.41 3.85 +médicalement médicalement adv 1.03 0.61 1.03 0.61 +médicales médical adj f p 31.48 11.89 2.81 1.76 +médicalisation médicalisation nom f s 0.01 0.00 0.01 0.00 +médicalisé médicaliser ver m s 0.04 0.07 0.04 0.00 par:pas; +médicalisée médicaliser ver f s 0.04 0.07 0.01 0.07 par:pas; +médicament médicament nom m s 41.82 12.57 12.03 4.12 +médicamentait médicamenter ver 0.03 0.14 0.00 0.07 ind:imp:3s; +médicamentation médicamentation nom f s 0.04 0.07 0.04 0.07 +médicamenter médicamenter ver 0.03 0.14 0.02 0.07 inf; +médicamenteuse médicamenteux adj f s 0.10 0.07 0.07 0.00 +médicamenteux médicamenteux adj m 0.10 0.07 0.02 0.07 +médicaments médicament nom m p 41.82 12.57 29.80 8.45 +médicamenté médicamenter ver m s 0.03 0.14 0.01 0.00 par:pas; +médicastre médicastre nom m s 0.00 0.41 0.00 0.14 +médicastres médicastre nom m p 0.00 0.41 0.00 0.27 +médication médication nom f s 0.23 0.27 0.22 0.07 +médications médication nom f p 0.23 0.27 0.01 0.20 +médicaux médical adj m p 31.48 11.89 4.62 1.49 +médicinal médicinal adj m s 0.85 0.54 0.23 0.00 +médicinale médicinal adj f s 0.85 0.54 0.10 0.07 +médicinales médicinal adj f p 0.85 0.54 0.52 0.41 +médicinaux médicinal adj m p 0.85 0.54 0.01 0.07 +médicine médiciner ver 0.07 0.00 0.07 0.00 ind:pre:1s;ind:pre:3s; +médico_légal médico_légal adj m s 1.06 0.54 0.63 0.41 +médico_légal médico_légal adj f s 1.06 0.54 0.25 0.14 +médico_légal médico_légal adj f p 1.06 0.54 0.13 0.00 +médico_légal médico_légal adj m p 1.06 0.54 0.05 0.00 +médico_psychologique médico_psychologique adj m s 0.01 0.00 0.01 0.00 +médico_social médico_social adj m s 0.01 0.07 0.01 0.07 +médina médina nom f s 0.37 1.28 0.37 1.08 +médinas médina nom f p 0.37 1.28 0.00 0.20 +médiocre médiocre adj s 3.36 15.88 2.59 11.89 +médiocrement médiocrement adv 0.28 2.43 0.28 2.43 +médiocres médiocre adj p 3.36 15.88 0.77 3.99 +médiocrité médiocrité nom f s 2.04 5.54 2.02 5.34 +médiocrités médiocrité nom f p 2.04 5.54 0.02 0.20 +médire médire ver 0.35 1.15 0.11 0.41 inf; +médis médire ver 0.35 1.15 0.02 0.07 imp:pre:2s;ind:pre:2s; +médisaient médire ver 0.35 1.15 0.00 0.07 ind:imp:3p; +médisait médire ver 0.35 1.15 0.01 0.07 ind:imp:3s; +médisance médisance nom f s 0.13 1.62 0.04 0.88 +médisances médisance nom f p 0.13 1.62 0.09 0.74 +médisant médisant adj m s 0.06 0.14 0.04 0.07 +médisante médisant adj f s 0.06 0.14 0.02 0.07 +médisants médisant nom m p 0.17 0.68 0.16 0.47 +médise médire ver 0.35 1.15 0.00 0.07 sub:pre:3s; +médisent médire ver 0.35 1.15 0.00 0.20 ind:pre:3p; +médisez médire ver 0.35 1.15 0.02 0.00 imp:pre:2p; +médisons médire ver 0.35 1.15 0.00 0.14 imp:pre:1p;ind:pre:1p; +médit médire ver m s 0.35 1.15 0.17 0.14 ind:pre:3s;par:pas; +médita méditer ver 5.49 14.86 0.01 0.81 ind:pas:3s; +méditai méditer ver 5.49 14.86 0.00 0.14 ind:pas:1s; +méditaient méditer ver 5.49 14.86 0.01 0.47 ind:imp:3p; +méditais méditer ver 5.49 14.86 0.19 0.54 ind:imp:1s;ind:imp:2s; +méditait méditer ver 5.49 14.86 0.12 2.50 ind:imp:3s; +méditant méditer ver 5.49 14.86 0.07 1.22 par:pre; +méditatif méditatif adj m s 0.20 4.59 0.08 2.36 +méditatifs méditatif adj m p 0.20 4.59 0.00 0.74 +méditation méditation nom f s 3.14 10.47 2.72 7.50 +méditations méditation nom f p 3.14 10.47 0.42 2.97 +méditative méditatif adj f s 0.20 4.59 0.12 1.28 +méditativement méditativement adv 0.00 0.34 0.00 0.34 +méditatives méditatif adj f p 0.20 4.59 0.00 0.20 +médite méditer ver 5.49 14.86 0.68 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +méditent méditer ver 5.49 14.86 0.28 0.41 ind:pre:3p; +méditer méditer ver 5.49 14.86 2.44 4.80 inf; +méditera méditer ver 5.49 14.86 0.03 0.07 ind:fut:3s; +méditerait méditer ver 5.49 14.86 0.00 0.07 cnd:pre:3s; +méditeras méditer ver 5.49 14.86 0.01 0.00 ind:fut:2s; +méditerranée méditerrané adj f s 0.04 0.95 0.04 0.95 +méditerranéen méditerranéen adj m s 0.74 5.34 0.08 2.64 +méditerranéenne méditerranéen adj f s 0.74 5.34 0.33 1.49 +méditerranéennes méditerranéenne nom f p 0.03 0.14 0.03 0.14 +méditerranéens méditerranéen nom m p 0.45 0.27 0.45 0.07 +médites méditer ver 5.49 14.86 0.31 0.07 ind:pre:2s; +méditez méditer ver 5.49 14.86 0.56 0.27 imp:pre:2p;ind:pre:2p; +méditiez méditer ver 5.49 14.86 0.02 0.00 ind:imp:2p; +méditons méditer ver 5.49 14.86 0.07 0.00 imp:pre:1p;ind:pre:1p; +méditèrent méditer ver 5.49 14.86 0.01 0.07 ind:pas:3p; +médité méditer ver m s 5.49 14.86 0.67 1.35 par:pas; +méditée méditer ver f s 5.49 14.86 0.01 0.27 par:pas; +méditées méditer ver f p 5.49 14.86 0.00 0.14 par:pas; +médités méditer ver m p 5.49 14.86 0.00 0.14 par:pas; +médium médium nom m s 6.07 1.82 4.97 1.08 +médiumnique médiumnique adj s 0.21 0.14 0.11 0.14 +médiumniques médiumnique adj p 0.21 0.14 0.10 0.00 +médiumnité médiumnité nom f s 0.03 0.00 0.03 0.00 +médiums médium nom m p 6.07 1.82 1.10 0.74 +médius médius nom m 0.16 1.69 0.16 1.69 +médiéval médiéval adj m s 1.66 4.26 0.70 1.15 +médiévale médiéval adj f s 1.66 4.26 0.50 1.62 +médiévales médiéval adj f p 1.66 4.26 0.42 0.88 +médiévaux médiéval adj m p 1.66 4.26 0.04 0.61 +médiéviste médiéviste nom s 0.00 0.20 0.00 0.07 +médiévistes médiéviste nom p 0.00 0.20 0.00 0.14 +médoc médoc nom m s 1.48 1.35 0.19 0.14 +médocs médoc nom m p 1.48 1.35 1.29 1.22 +mudéjar mudéjar adj m s 0.10 0.20 0.10 0.14 +mudéjare mudéjar adj f s 0.10 0.20 0.00 0.07 +médulla médulla nom f s 0.01 0.00 0.01 0.00 +médullaire médullaire adj s 0.07 0.00 0.07 0.00 +médusa méduser ver 0.48 1.96 0.10 0.14 ind:pas:3s; +médusait méduser ver 0.48 1.96 0.00 0.14 ind:imp:3s; +médusant méduser ver 0.48 1.96 0.00 0.07 par:pre; +méduse méduse nom f s 1.50 3.92 0.66 1.42 +médusent méduser ver 0.48 1.96 0.00 0.07 ind:pre:3p; +méduser méduser ver 0.48 1.96 0.01 0.00 inf; +méduses méduse nom f p 1.50 3.92 0.84 2.50 +médusé méduser ver m s 0.48 1.96 0.15 0.47 par:pas; +médusée méduser ver f s 0.48 1.96 0.00 0.41 par:pas; +médusées médusé adj f p 0.02 1.96 0.00 0.14 +médusés méduser ver m p 0.48 1.96 0.21 0.61 par:pas; +mue muer ver 1.63 7.03 0.26 0.88 ind:pre:1s;ind:pre:3s; +muent muer ver 1.63 7.03 0.16 0.20 ind:pre:3p; +muer muer ver 1.63 7.03 0.65 0.95 inf; +muera muer ver 1.63 7.03 0.02 0.00 ind:fut:3s; +mueront muer ver 1.63 7.03 0.00 0.07 ind:fut:3p; +mues muer ver 1.63 7.03 0.02 0.07 ind:pre:2s;sub:pre:2s; +muesli muesli nom m s 0.06 0.00 0.06 0.00 +muet muet adj m s 14.23 45.74 8.69 16.55 +muets muet adj m p 14.23 45.74 2.43 6.01 +muette muet adj f s 14.23 45.74 2.68 19.12 +muettement muettement adv 0.00 0.68 0.00 0.68 +muettes muet adj f p 14.23 45.74 0.43 4.05 +muezzin muezzin nom m s 0.14 0.61 0.14 0.41 +muezzins muezzin nom m p 0.14 0.61 0.00 0.20 +méfait méfait nom m s 1.85 2.64 0.46 0.74 +méfaits méfait nom m p 1.85 2.64 1.39 1.89 +muffin muffin nom m s 2.96 0.34 1.30 0.00 +muffins muffin nom m p 2.96 0.34 1.65 0.34 +méfiaient méfier ver 26.68 35.95 0.03 0.88 ind:imp:3p; +méfiais méfier ver 26.68 35.95 0.29 1.42 ind:imp:1s;ind:imp:2s; +méfiait méfier ver 26.68 35.95 0.16 4.05 ind:imp:3s; +méfiance méfiance nom f s 2.21 19.46 2.18 18.99 +méfiances méfiance nom f p 2.21 19.46 0.02 0.47 +méfiant méfiant adj m s 3.64 9.93 2.07 5.14 +méfiante méfiant adj f s 3.64 9.93 1.12 2.36 +méfiantes méfiant adj f p 3.64 9.93 0.01 0.47 +méfiants méfiant adj m p 3.64 9.93 0.44 1.96 +méfie méfier ver 26.68 35.95 10.95 8.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +méfient méfier ver 26.68 35.95 1.31 1.15 ind:pre:3p; +méfier méfier ver 26.68 35.95 7.18 13.11 inf; +méfiera méfier ver 26.68 35.95 0.15 0.07 ind:fut:3s; +méfierai méfier ver 26.68 35.95 0.26 0.14 ind:fut:1s; +méfierais méfier ver 26.68 35.95 0.36 0.41 cnd:pre:1s; +méfierait méfier ver 26.68 35.95 0.30 0.07 cnd:pre:3s; +méfieront méfier ver 26.68 35.95 0.19 0.00 ind:fut:3p; +méfies méfier ver 26.68 35.95 0.61 0.20 ind:pre:2s; +méfiez méfier ver 26.68 35.95 3.63 2.70 imp:pre:2p;ind:pre:2p; +méfiions méfier ver 26.68 35.95 0.00 0.14 ind:imp:1p; +méfions méfier ver 26.68 35.95 0.73 0.34 imp:pre:1p;ind:pre:1p; +méfièrent méfier ver 26.68 35.95 0.02 0.07 ind:pas:3p; +méfié méfier ver m s 26.68 35.95 0.22 1.22 par:pas; +méfiée méfier ver f s 26.68 35.95 0.19 0.41 par:pas; +méfiés méfier ver m p 26.68 35.95 0.01 0.68 par:pas; +mufle mufle nom m s 1.70 6.89 1.56 6.08 +muflerie muflerie nom f s 0.12 1.01 0.12 0.81 +mufleries muflerie nom f p 0.12 1.01 0.00 0.20 +mufles mufle nom m p 1.70 6.89 0.14 0.81 +muflier muflier nom m s 0.68 0.07 0.68 0.00 +mufliers muflier nom m p 0.68 0.07 0.00 0.07 +muflée muflée nom f s 0.01 0.20 0.01 0.20 +méforme méforme nom f s 0.02 0.00 0.02 0.00 +mufti mufti nom m s 0.26 0.41 0.25 0.14 +muftis mufti nom m p 0.26 0.41 0.01 0.27 +méga méga adj s 4.75 0.81 4.75 0.81 +mégacôlon mégacôlon nom m s 0.01 0.00 0.01 0.00 +mégahertz mégahertz nom m 0.05 0.00 0.05 0.00 +mégajoules mégajoule nom m p 0.02 0.00 0.02 0.00 +mégalithe mégalithe nom m s 0.01 0.14 0.01 0.14 +mégalithique mégalithique adj f s 0.00 0.14 0.00 0.14 +mégalo mégalo adj m s 0.34 0.00 0.32 0.00 +mégalomane mégalomane adj s 0.42 0.47 0.41 0.34 +mégalomanes mégalomane adj m p 0.42 0.47 0.01 0.14 +mégalomaniaque mégalomaniaque adj s 0.01 0.14 0.01 0.14 +mégalomanie mégalomanie nom f s 0.25 0.61 0.25 0.61 +mégalopole mégalopole nom f s 0.02 0.00 0.02 0.00 +mégalos mégalo nom p 0.03 0.20 0.03 0.00 +mégalosaure mégalosaure nom m s 0.01 0.00 0.01 0.00 +mégaphone mégaphone nom m s 0.89 0.61 0.58 0.54 +mégaphones mégaphone nom m p 0.89 0.61 0.30 0.07 +mégapole mégapole nom f s 0.01 0.27 0.01 0.27 +mégaron mégaron nom m s 0.00 0.14 0.00 0.14 +mégathériums mégathérium nom m p 0.00 0.07 0.00 0.07 +mégatonne mégatonne nom f s 0.39 0.14 0.04 0.00 +mégatonnes mégatonne nom f p 0.39 0.14 0.35 0.14 +mégawatts mégawatt nom m p 0.00 0.07 0.00 0.07 +muges muge nom m p 0.00 0.07 0.00 0.07 +mugi mugir ver m s 0.33 2.84 0.01 0.20 par:pas; +mugir mugir ver 0.33 2.84 0.04 0.95 inf; +mugis mugir ver 0.33 2.84 0.00 0.07 ind:pre:2s; +mugissaient mugir ver 0.33 2.84 0.00 0.07 ind:imp:3p; +mugissait mugir ver 0.33 2.84 0.00 0.34 ind:imp:3s; +mugissant mugissant adj m s 0.20 0.54 0.10 0.20 +mugissante mugissant adj f s 0.20 0.54 0.10 0.14 +mugissantes mugissant adj f p 0.20 0.54 0.00 0.14 +mugissants mugissant adj m p 0.20 0.54 0.00 0.07 +mugissement mugissement nom m s 0.09 2.97 0.04 1.76 +mugissements mugissement nom m p 0.09 2.97 0.04 1.22 +mugissent mugir ver 0.33 2.84 0.01 0.14 ind:pre:3p; +mégisserie mégisserie nom f s 0.00 0.47 0.00 0.47 +mégissiers mégissier nom m p 0.00 0.07 0.00 0.07 +mugit mugir ver 0.33 2.84 0.26 0.88 ind:pre:3s;ind:pas:3s; +mégot mégot nom m s 2.66 17.30 1.20 9.53 +mégotage mégotage nom m s 0.01 0.20 0.01 0.14 +mégotages mégotage nom m p 0.01 0.20 0.00 0.07 +mégotaient mégoter ver 0.43 0.47 0.00 0.07 ind:imp:3p; +mégotait mégoter ver 0.43 0.47 0.00 0.07 ind:imp:3s; +mégote mégoter ver 0.43 0.47 0.02 0.14 ind:pre:3s; +mégoter mégoter ver 0.43 0.47 0.41 0.14 inf; +mégots mégot nom m p 2.66 17.30 1.46 7.77 +mégoté mégoter ver m s 0.43 0.47 0.00 0.07 par:pas; +mégère mégère nom f s 1.01 0.81 0.83 0.54 +mégères mégère nom f p 1.01 0.81 0.18 0.27 +muguet muguet nom m s 0.40 3.92 0.38 3.85 +muguets muguet nom m p 0.40 3.92 0.02 0.07 +muguette mugueter ver 0.00 0.07 0.00 0.07 imp:pre:2s; +méhari méhari nom m s 0.14 0.41 0.14 0.41 +méhariste méhariste nom s 0.01 0.27 0.00 0.07 +méharistes méhariste nom p 0.01 0.27 0.01 0.20 +muids muid nom m p 0.00 0.14 0.00 0.14 +méiose méiose nom f s 0.04 0.00 0.04 0.00 +méjugement méjugement nom m s 0.00 0.07 0.00 0.07 +méjugez méjuger ver 0.05 0.07 0.03 0.00 imp:pre:2p;ind:pre:2p; +méjugé méjuger ver m s 0.05 0.07 0.01 0.00 par:pas; +méjugés méjuger ver m p 0.05 0.07 0.01 0.07 par:pas; +mêla mêler ver 53.84 112.64 0.04 2.50 ind:pas:3s; +mêlai mêler ver 53.84 112.64 0.00 0.54 ind:pas:1s; +mêlaient mêler ver 53.84 112.64 0.07 11.15 ind:imp:3p; +mêlais mêler ver 53.84 112.64 0.21 0.61 ind:imp:1s;ind:imp:2s; +mêlait mêler ver 53.84 112.64 0.14 13.31 ind:imp:3s; +mélancolie mélancolie nom f s 2.60 21.01 2.60 20.68 +mélancolies mélancolie nom f p 2.60 21.01 0.00 0.34 +mélancolieux mélancolieux adj m 0.00 0.07 0.00 0.07 +mélancolique mélancolique adj s 4.41 16.62 4.10 13.45 +mélancoliquement mélancoliquement adv 0.00 1.82 0.00 1.82 +mélancoliques mélancolique adj p 4.41 16.62 0.31 3.18 +mélancoliser mélancoliser ver 0.00 0.07 0.00 0.07 inf; +mélange mélange nom m s 9.90 31.01 9.56 28.58 +mélangea mélanger ver 14.36 22.84 0.01 0.61 ind:pas:3s; +mélangeaient mélanger ver 14.36 22.84 0.01 1.76 ind:imp:3p; +mélangeais mélanger ver 14.36 22.84 0.04 0.20 ind:imp:1s;ind:imp:2s; +mélangeait mélanger ver 14.36 22.84 0.10 2.50 ind:imp:3s; +mélangeant mélanger ver 14.36 22.84 0.27 1.96 par:pre; +mélangent mélanger ver 14.36 22.84 0.95 1.28 ind:pre:3p; +mélangeons mélanger ver 14.36 22.84 0.31 0.20 imp:pre:1p;ind:pre:1p; +mélanger mélanger ver 14.36 22.84 4.46 3.18 inf;; +mélangera mélanger ver 14.36 22.84 0.17 0.07 ind:fut:3s; +mélangerai mélanger ver 14.36 22.84 0.01 0.00 ind:fut:1s; +mélangeraient mélanger ver 14.36 22.84 0.00 0.07 cnd:pre:3p; +mélanges mélanger ver 14.36 22.84 0.88 0.47 ind:pre:2s;sub:pre:2s; +mélangeur mélangeur nom m s 0.05 0.20 0.05 0.14 +mélangeurs mélangeur nom m p 0.05 0.20 0.00 0.07 +mélangez mélanger ver 14.36 22.84 0.94 0.34 imp:pre:2p;ind:pre:2p; +mélangions mélanger ver 14.36 22.84 0.00 0.14 ind:imp:1p; +mélangèrent mélanger ver 14.36 22.84 0.00 0.20 ind:pas:3p; +mélangé mélanger ver m s 14.36 22.84 2.08 2.50 par:pas; +mélangée mélanger ver f s 14.36 22.84 0.24 1.42 par:pas; +mélangées mélangé adj f p 1.22 2.97 0.31 0.74 +mélangés mélanger ver m p 14.36 22.84 0.51 1.08 par:pas; +mélanine mélanine nom f s 0.04 0.00 0.04 0.00 +mélanome mélanome nom m s 0.52 0.00 0.42 0.00 +mélanomes mélanome nom m p 0.52 0.00 0.09 0.00 +mêlant mêler ver 53.84 112.64 0.70 4.86 par:pre; +mélanésiennes mélanésien adj f p 0.01 0.00 0.01 0.00 +mulard mulard adj m s 0.01 0.00 0.01 0.00 +mélasse mélasse nom f s 1.31 1.42 1.31 1.42 +mêlasse mêler ver 53.84 112.64 0.00 0.07 sub:imp:1s; +mélatonine mélatonine nom f s 0.11 0.00 0.11 0.00 +mêle_tout mêle_tout nom m 0.01 0.00 0.01 0.00 +mêle mêler ver 53.84 112.64 18.97 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +mule mule nom f s 9.62 8.99 7.29 4.26 +mêlent mêler ver 53.84 112.64 1.77 6.01 ind:pre:3p; +mêler mêler ver 53.84 112.64 11.24 17.23 inf;; +mêlera mêler ver 53.84 112.64 0.41 0.14 ind:fut:3s; +mêlerai mêler ver 53.84 112.64 0.30 0.20 ind:fut:1s; +mêleraient mêler ver 53.84 112.64 0.02 0.07 cnd:pre:3p; +mêlerais mêler ver 53.84 112.64 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +mêlerait mêler ver 53.84 112.64 0.16 0.07 cnd:pre:3s; +mêleront mêler ver 53.84 112.64 0.31 0.14 ind:fut:3p; +mêles mêler ver 53.84 112.64 3.03 0.68 ind:pre:2s; +mules mule nom f p 9.62 8.99 2.33 4.73 +mulet mulet nom m s 3.67 7.43 3.19 2.77 +muleta muleta nom f s 0.15 0.27 0.15 0.27 +muletier muletier adj m s 0.05 0.41 0.05 0.27 +muletiers muletier nom m p 0.37 0.27 0.32 0.27 +muletière muletier adj f s 0.05 0.41 0.00 0.14 +mulets mulet nom m p 3.67 7.43 0.49 4.66 +mulettes mulette nom f p 0.01 0.00 0.01 0.00 +mêlez mêler ver 53.84 112.64 4.26 0.88 imp:pre:2p;ind:pre:2p; +mulhousien mulhousien adj m s 0.00 0.07 0.00 0.07 +méli_mélo méli_mélo nom m s 0.39 0.81 0.39 0.68 +mêliez mêler ver 53.84 112.64 0.11 0.14 ind:imp:2p; +mélilot mélilot nom m s 0.00 0.07 0.00 0.07 +mélinite mélinite nom f s 0.00 0.14 0.00 0.14 +mêlions mêler ver 53.84 112.64 0.01 0.07 ind:imp:1p; +méli_mélo méli_mélo nom m p 0.39 0.81 0.00 0.14 +mélisse mélisse nom f s 0.00 0.34 0.00 0.34 +mullah mullah nom m s 0.05 0.00 0.05 0.00 +mélo mélo nom m s 0.89 1.08 0.84 0.95 +mélodie mélodie nom f s 4.08 7.77 3.61 5.95 +mélodies mélodie nom f p 4.08 7.77 0.47 1.82 +mélodieuse mélodieux adj f s 0.49 2.97 0.11 0.95 +mélodieusement mélodieusement adv 0.01 0.07 0.01 0.07 +mélodieuses mélodieux adj f p 0.49 2.97 0.01 0.14 +mélodieux mélodieux adj m 0.49 2.97 0.37 1.89 +mélodique mélodique adj s 0.06 0.47 0.03 0.34 +mélodiques mélodique adj p 0.06 0.47 0.03 0.14 +mélodramatique mélodramatique adj s 0.64 0.68 0.51 0.68 +mélodramatiques mélodramatique adj p 0.64 0.68 0.13 0.00 +mélodrame mélodrame nom m s 1.09 1.49 1.04 1.35 +mélodrames mélodrame nom m p 1.09 1.49 0.05 0.14 +mélomane mélomane adj m s 0.21 0.54 0.21 0.54 +mélomanes mélomane nom p 0.44 0.81 0.27 0.27 +mulon mulon nom m s 0.00 0.07 0.00 0.07 +mêlons mêler ver 53.84 112.64 0.19 0.20 imp:pre:1p;ind:pre:1p; +mélopée mélopée nom f s 0.02 3.51 0.01 2.84 +mélopées mélopée nom f p 0.02 3.51 0.01 0.68 +mélos mélo nom m p 0.89 1.08 0.05 0.14 +mêlât mêler ver 53.84 112.64 0.00 0.47 sub:imp:3s; +mulot mulot nom m s 0.06 1.55 0.04 0.88 +mulâtre mulâtre nom m s 0.77 1.08 0.50 0.74 +mulâtres mulâtre nom m p 0.77 1.08 0.27 0.34 +mulâtresse mulâtresse nom f s 0.14 0.34 0.01 0.20 +mulâtresses mulâtresse nom f p 0.14 0.34 0.14 0.14 +mulots mulot nom m p 0.06 1.55 0.01 0.68 +mêlèrent mêler ver 53.84 112.64 0.01 1.22 ind:pas:3p; +mélèze mélèze nom m s 0.04 1.08 0.03 0.41 +mélèzes mélèze nom m p 0.04 1.08 0.01 0.68 +multi_tâches multi_tâches adj f s 0.05 0.00 0.05 0.00 +multi multi adv 2.37 0.61 2.37 0.61 +multicellulaire multicellulaire adj s 0.02 0.00 0.02 0.00 +multicolore multicolore adj s 0.42 13.72 0.19 3.04 +multicolores multicolore adj p 0.42 13.72 0.23 10.68 +multiconfessionnel multiconfessionnel adj m s 0.01 0.00 0.01 0.00 +multicouche multicouche adj m s 0.01 0.00 0.01 0.00 +multiculturalisme multiculturalisme nom m s 0.01 0.00 0.01 0.00 +multiculturel multiculturel adj m s 0.10 0.00 0.03 0.00 +multiculturelle multiculturel adj f s 0.10 0.00 0.07 0.00 +multidimensionnel multidimensionnel adj m s 0.12 0.00 0.04 0.00 +multidimensionnelle multidimensionnel adj f s 0.12 0.00 0.06 0.00 +multidimensionnels multidimensionnel adj m p 0.12 0.00 0.01 0.00 +multidisciplinaire multidisciplinaire adj s 0.01 0.07 0.01 0.07 +multifamilial multifamilial adj m s 0.01 0.00 0.01 0.00 +multifonction multifonction adj m s 0.04 0.00 0.04 0.00 +multifonctionnel multifonctionnel adj m s 0.01 0.00 0.01 0.00 +multifonctions multifonctions adj m s 0.14 0.00 0.14 0.00 +multiforme multiforme adj s 0.04 0.74 0.02 0.47 +multiformes multiforme adj f p 0.04 0.74 0.01 0.27 +multifréquences multifréquence adj m p 0.01 0.00 0.01 0.00 +multigrade multigrade adj f s 0.00 0.34 0.00 0.34 +multimilliardaire multimilliardaire adj f s 0.04 0.00 0.04 0.00 +multimilliardaire multimilliardaire nom s 0.04 0.00 0.04 0.00 +multimillionnaire multimillionnaire nom s 0.13 0.00 0.09 0.00 +multimillionnaires multimillionnaire nom p 0.13 0.00 0.04 0.00 +multimédia multimédia adj s 0.08 0.00 0.08 0.00 +multinational multinational adj m s 0.53 0.27 0.07 0.07 +multinationale multinationale nom f s 1.71 0.41 0.48 0.27 +multinationales multinationale nom f p 1.71 0.41 1.22 0.14 +multinationaux multinational adj m p 0.53 0.27 0.00 0.07 +multipare multipare nom f s 0.00 0.07 0.00 0.07 +multipartite multipartite adj s 0.10 0.00 0.10 0.00 +multiple multiple adj s 6.60 18.18 0.84 3.92 +multiples multiple adj p 6.60 18.18 5.76 14.26 +multiplex multiplex nom m 0.09 0.00 0.09 0.00 +multiplexe multiplexe nom m s 0.04 0.00 0.01 0.00 +multiplexer multiplexer ver 0.02 0.00 0.01 0.00 inf; +multiplexes multiplexe nom m p 0.04 0.00 0.03 0.00 +multiplexé multiplexer ver m s 0.02 0.00 0.01 0.00 par:pas; +multiplia multiplier ver 6.07 22.91 0.00 0.81 ind:pas:3s; +multipliai multiplier ver 6.07 22.91 0.00 0.20 ind:pas:1s; +multipliaient multiplier ver 6.07 22.91 0.07 2.91 ind:imp:3p; +multipliais multiplier ver 6.07 22.91 0.00 0.20 ind:imp:1s; +multipliait multiplier ver 6.07 22.91 0.07 2.50 ind:imp:3s; +multipliant multiplier ver 6.07 22.91 0.10 2.23 par:pre; +multiplicateur multiplicateur adj m s 0.04 0.00 0.04 0.00 +multiplication multiplication nom f s 0.54 2.36 0.28 2.03 +multiplications multiplication nom f p 0.54 2.36 0.26 0.34 +multiplicité multiplicité nom f s 0.18 1.55 0.17 1.49 +multiplicités multiplicité nom f p 0.18 1.55 0.01 0.07 +multiplie multiplier ver 6.07 22.91 1.06 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +multiplient multiplier ver 6.07 22.91 1.29 2.16 ind:pre:3p; +multiplier multiplier ver 6.07 22.91 1.39 3.51 inf; +multiplierai multiplier ver 6.07 22.91 0.00 0.07 ind:fut:1s; +multiplieraient multiplier ver 6.07 22.91 0.00 0.14 cnd:pre:3p; +multiplierait multiplier ver 6.07 22.91 0.00 0.07 cnd:pre:3s; +multiplierons multiplier ver 6.07 22.91 0.02 0.00 ind:fut:1p; +multiplieront multiplier ver 6.07 22.91 0.04 0.14 ind:fut:3p; +multiplies multiplier ver 6.07 22.91 0.14 0.07 ind:pre:2s; +multipliez multiplier ver 6.07 22.91 0.50 0.27 imp:pre:2p;ind:pre:2p; +multipliions multiplier ver 6.07 22.91 0.00 0.07 ind:imp:1p; +multipliât multiplier ver 6.07 22.91 0.00 0.14 sub:imp:3s; +multiplièrent multiplier ver 6.07 22.91 0.01 0.81 ind:pas:3p; +multiplié multiplier ver m s 6.07 22.91 0.75 1.76 par:pas; +multipliée multiplier ver f s 6.07 22.91 0.27 0.81 par:pas; +multipliées multiplier ver f p 6.07 22.91 0.20 0.88 par:pas; +multipliés multiplier ver m p 6.07 22.91 0.16 0.74 par:pas; +multipoints multipoints adj f s 0.01 0.00 0.01 0.00 +multiprise multiprise nom f s 0.03 0.14 0.03 0.14 +multipropriété multipropriété nom f s 0.23 0.00 0.23 0.00 +multiracial multiracial adj m s 0.14 0.00 0.02 0.00 +multiraciale multiracial adj f s 0.14 0.00 0.10 0.00 +multiraciaux multiracial adj m p 0.14 0.00 0.02 0.00 +multirisque multirisque adj f s 0.14 0.07 0.14 0.07 +multirécidiviste multirécidiviste nom s 0.05 0.00 0.05 0.00 +multiséculaires multiséculaire adj p 0.00 0.07 0.00 0.07 +multitâche multitâche adj m s 0.04 0.00 0.03 0.00 +multitâches multitâche nom m p 0.06 0.00 0.04 0.00 +multitude multitude nom f s 1.38 10.27 1.31 9.66 +multitudes multitude nom f p 1.38 10.27 0.07 0.61 +mêlé_cass mêlé_cass nom m 0.00 0.20 0.00 0.20 +mêlé_casse mêlé_casse nom m 0.00 0.14 0.00 0.14 +mêlé mêler ver m s 53.84 112.64 7.40 13.65 par:pas; +mêlécasse mêlécasse nom m s 0.00 0.07 0.00 0.07 +mêlée mêler ver f s 53.84 112.64 2.98 11.89 par:pas; +mêlées mêler ver f p 53.84 112.64 0.23 6.76 par:pas; +mêlés mêler ver m p 53.84 112.64 1.12 8.72 par:pas; +même même pro_ind s 43.18 55.74 43.18 55.74 +mêmement mêmement adv 0.10 0.34 0.10 0.34 +mémentos mémento nom m p 0.00 0.07 0.00 0.07 +mêmes mêmes pro_ind p 14.48 18.38 14.48 18.38 +mémo mémo nom m s 3.21 0.07 2.72 0.00 +mémoire mémoire nom s 60.87 110.88 56.60 105.74 +mémoires mémoire nom p 60.87 110.88 4.27 5.14 +mémorabilité mémorabilité nom f s 0.00 0.07 0.00 0.07 +mémorable mémorable adj s 2.23 5.34 2.04 4.26 +mémorables mémorable adj p 2.23 5.34 0.19 1.08 +mémorandum mémorandum nom m s 0.10 2.91 0.09 2.91 +mémorandums mémorandum nom m p 0.10 2.91 0.01 0.00 +mémorial mémorial nom m s 0.81 0.41 0.80 0.34 +mémorialiste mémorialiste nom s 0.00 0.54 0.00 0.34 +mémorialistes mémorialiste nom p 0.00 0.54 0.00 0.20 +mémoriaux mémorial nom m p 0.81 0.41 0.01 0.07 +mémoriel mémoriel adj m s 0.18 0.07 0.07 0.00 +mémorielle mémoriel adj f s 0.18 0.07 0.06 0.00 +mémoriels mémoriel adj m p 0.18 0.07 0.04 0.07 +mémorisables mémorisable adj m p 0.00 0.07 0.00 0.07 +mémorisaient mémoriser ver 2.57 0.41 0.00 0.07 ind:imp:3p; +mémorisait mémoriser ver 2.57 0.41 0.02 0.00 ind:imp:3s; +mémorisation mémorisation nom f s 0.02 0.00 0.02 0.00 +mémorise mémoriser ver 2.57 0.41 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mémorisent mémoriser ver 2.57 0.41 0.03 0.00 ind:pre:3p; +mémoriser mémoriser ver 2.57 0.41 1.30 0.14 inf; +mémoriserai mémoriser ver 2.57 0.41 0.03 0.00 ind:fut:1s; +mémoriserais mémoriser ver 2.57 0.41 0.01 0.00 cnd:pre:1s; +mémorisez mémoriser ver 2.57 0.41 0.27 0.00 imp:pre:2p;ind:pre:2p; +mémorisiez mémoriser ver 2.57 0.41 0.02 0.00 ind:imp:2p; +mémorisé mémoriser ver m s 2.57 0.41 0.50 0.00 par:pas; +mémorisée mémoriser ver f s 2.57 0.41 0.08 0.00 par:pas; +mémorisées mémoriser ver f p 2.57 0.41 0.01 0.00 par:pas; +mémorisés mémoriser ver m p 2.57 0.41 0.07 0.14 par:pas; +mémos mémo nom m p 3.21 0.07 0.49 0.07 +mémère mémère nom f s 1.03 5.34 1.00 3.78 +mémères mémère nom f p 1.03 5.34 0.04 1.55 +mémé mémé nom f s 8.21 35.34 8.15 34.39 +mémés mémé nom f p 8.21 35.34 0.06 0.95 +ménade ménade nom f s 0.01 0.20 0.01 0.14 +ménades ménade nom f p 0.01 0.20 0.00 0.07 +ménage ménage nom m s 29.46 32.91 27.55 29.26 +ménagea ménager ver 5.12 23.65 0.01 0.41 ind:pas:3s; +ménageaient ménager ver 5.12 23.65 0.01 0.95 ind:imp:3p; +ménageais ménager ver 5.12 23.65 0.14 0.47 ind:imp:1s; +ménageait ménager ver 5.12 23.65 0.13 1.82 ind:imp:3s; +ménageant ménager ver 5.12 23.65 0.14 1.62 par:pre; +ménagement ménagement nom m s 0.45 5.20 0.42 3.11 +ménagements ménagement nom m p 0.45 5.20 0.03 2.09 +ménagent ménager ver 5.12 23.65 0.16 0.54 ind:pre:3p; +ménageât ménager ver 5.12 23.65 0.00 0.34 sub:imp:3s; +ménager ménager ver 5.12 23.65 1.73 8.45 inf;; +ménagera ménager ver 5.12 23.65 0.01 0.14 ind:fut:3s; +ménagerai ménager ver 5.12 23.65 0.01 0.07 ind:fut:1s; +ménagerait ménager ver 5.12 23.65 0.00 0.27 cnd:pre:3s; +ménageras ménager ver 5.12 23.65 0.01 0.00 ind:fut:2s; +ménagerie ménagerie nom f s 0.56 2.23 0.54 2.09 +ménageries ménagerie nom f p 0.56 2.23 0.02 0.14 +ménagers ménager adj m p 2.87 9.12 1.11 1.76 +ménages ménage nom m p 29.46 32.91 1.91 3.65 +ménagez ménager ver 5.12 23.65 0.83 0.41 imp:pre:2p;ind:pre:2p; +ménagiez ménager ver 5.12 23.65 0.01 0.07 ind:imp:2p; +ménagions ménager ver 5.12 23.65 0.00 0.07 ind:imp:1p; +ménagère ménager nom f s 2.57 8.72 1.57 4.05 +ménagèrent ménager ver 5.12 23.65 0.00 0.14 ind:pas:3p; +ménagères ménager nom f p 2.57 8.72 0.95 4.53 +ménagé ménager ver m s 5.12 23.65 0.43 2.91 par:pas; +ménagée ménager ver f s 5.12 23.65 0.02 1.49 par:pas; +ménagées ménager ver f p 5.12 23.65 0.00 0.47 par:pas; +ménagés ménager ver m p 5.12 23.65 0.01 0.41 par:pas; +ménesse ménesse nom f s 0.00 0.07 0.00 0.07 +ménestrel ménestrel nom m s 0.43 0.14 0.28 0.00 +ménestrels ménestrel nom m p 0.43 0.14 0.14 0.14 +mungo mungo nom m s 0.02 0.00 0.02 0.00 +muni munir ver m s 2.06 14.53 1.14 6.62 par:pas; +munich munich nom s 0.00 0.07 0.00 0.07 +munichois munichois adj m p 0.10 0.14 0.10 0.07 +munichoise munichois adj f s 0.10 0.14 0.00 0.07 +municipal municipal adj m s 9.92 14.53 6.25 7.03 +municipale municipal adj f s 9.92 14.53 1.66 3.18 +municipales municipal adj f p 9.92 14.53 0.54 1.22 +municipalité municipalité nom f s 1.79 3.58 1.77 2.57 +municipalités municipalité nom f p 1.79 3.58 0.03 1.01 +municipaux municipal adj m p 9.92 14.53 1.47 3.11 +municipe municipe nom m s 0.00 0.27 0.00 0.20 +municipes municipe nom m p 0.00 0.27 0.00 0.07 +munie munir ver f s 2.06 14.53 0.29 3.78 par:pas; +munies munir ver f p 2.06 14.53 0.14 1.01 par:pas; +munificence munificence nom f s 0.14 1.01 0.00 0.81 +munificences munificence nom f p 0.14 1.01 0.14 0.20 +munificente munificent adj f s 0.00 0.14 0.00 0.07 +munificents munificent adj m p 0.00 0.14 0.00 0.07 +méninges méninge nom f p 1.08 2.70 1.08 2.70 +méningiome méningiome nom m s 0.01 0.00 0.01 0.00 +méningite méningite nom f s 0.99 0.81 0.96 0.81 +méningites méningite nom f p 0.99 0.81 0.03 0.00 +méningocoque méningocoque nom m s 0.01 0.00 0.01 0.00 +méningée méningé adj f s 0.04 0.07 0.04 0.07 +munir munir ver 2.06 14.53 0.24 0.88 inf; +munis munir ver m p 2.06 14.53 0.25 1.69 imp:pre:2s;ind:pre:1s;par:pas; +ménisque ménisque nom m s 0.39 0.41 0.28 0.27 +ménisques ménisque nom m p 0.39 0.41 0.10 0.14 +munissaient munir ver 2.06 14.53 0.00 0.07 ind:imp:3p; +munissait munir ver 2.06 14.53 0.00 0.14 ind:imp:3s; +munissant munir ver 2.06 14.53 0.00 0.07 par:pre; +munissent munir ver 2.06 14.53 0.00 0.07 ind:pre:3p; +munit munir ver 2.06 14.53 0.01 0.20 ind:pre:3s;ind:pas:3s; +munition munition nom f s 14.68 8.45 0.28 0.07 +munitions munition nom f p 14.68 8.45 14.40 8.38 +ménopause ménopause nom f s 0.83 1.01 0.83 1.01 +ménopausé ménopausé adj m s 0.15 0.14 0.01 0.00 +ménopausée ménopausé adj f s 0.15 0.14 0.10 0.14 +ménopausées ménopausé adj f p 0.15 0.14 0.04 0.00 +munster munster nom m s 0.05 0.20 0.05 0.20 +muon muon nom m s 0.01 0.00 0.01 0.00 +méphistophélique méphistophélique adj s 0.01 0.41 0.01 0.27 +méphistophéliques méphistophélique adj p 0.01 0.41 0.00 0.14 +méphitique méphitique adj f s 0.06 0.68 0.04 0.27 +méphitiques méphitique adj p 0.06 0.68 0.01 0.41 +muphti muphti nom m s 0.00 0.07 0.00 0.07 +méplat méplat nom m s 0.00 0.88 0.00 0.27 +méplats méplat nom m p 0.00 0.88 0.00 0.61 +méprît méprendre ver 4.70 6.15 0.00 0.07 sub:imp:3s; +méprenais méprendre ver 4.70 6.15 0.00 0.07 ind:imp:1s; +méprenait méprendre ver 4.70 6.15 0.00 0.14 ind:imp:3s; +méprenant méprendre ver 4.70 6.15 0.00 0.41 par:pre; +méprend méprendre ver 4.70 6.15 0.08 0.34 ind:pre:3s; +méprendre méprendre ver 4.70 6.15 0.27 2.09 inf; +méprendriez méprendre ver 4.70 6.15 0.00 0.07 cnd:pre:2p; +méprends méprendre ver 4.70 6.15 1.15 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +méprenez méprendre ver 4.70 6.15 2.51 0.27 imp:pre:2p;ind:pre:2p; +mépreniez méprendre ver 4.70 6.15 0.04 0.00 ind:imp:2p; +méprenne méprendre ver 4.70 6.15 0.04 0.27 sub:pre:3s; +méprennent méprendre ver 4.70 6.15 0.09 0.00 ind:pre:3p; +mépris mépris nom m 7.39 36.55 7.39 36.55 +méprisa mépriser ver 15.05 27.57 0.20 0.27 ind:pas:3s; +méprisable méprisable adj s 1.91 2.84 1.41 2.09 +méprisables méprisable adj p 1.91 2.84 0.50 0.74 +méprisai mépriser ver 15.05 27.57 0.00 0.14 ind:pas:1s; +méprisaient mépriser ver 15.05 27.57 0.23 1.22 ind:imp:3p; +méprisais mépriser ver 15.05 27.57 0.13 1.28 ind:imp:1s;ind:imp:2s; +méprisait mépriser ver 15.05 27.57 0.39 5.27 ind:imp:3s; +méprisamment méprisamment adv 0.01 0.00 0.01 0.00 +méprisant méprisant adj m s 0.63 9.86 0.40 4.80 +méprisante méprisant adj f s 0.63 9.86 0.19 3.65 +méprisantes méprisant adj f p 0.63 9.86 0.02 0.20 +méprisants méprisant adj m p 0.63 9.86 0.02 1.22 +méprise mépriser ver 15.05 27.57 6.43 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +méprisent mépriser ver 15.05 27.57 0.73 1.15 ind:pre:3p; +mépriser mépriser ver 15.05 27.57 1.76 4.93 inf; +méprisera mépriser ver 15.05 27.57 0.42 0.07 ind:fut:3s; +mépriserai mépriser ver 15.05 27.57 0.04 0.00 ind:fut:1s; +mépriseraient mépriser ver 15.05 27.57 0.01 0.00 cnd:pre:3p; +mépriserais mépriser ver 15.05 27.57 0.05 0.14 cnd:pre:1s;cnd:pre:2s; +mépriserait mépriser ver 15.05 27.57 0.02 0.20 cnd:pre:3s; +mépriseras mépriser ver 15.05 27.57 0.01 0.07 ind:fut:2s; +mépriseriez mépriser ver 15.05 27.57 0.10 0.07 cnd:pre:2p; +méprises mépriser ver 15.05 27.57 1.50 0.61 ind:pre:2s; +méprisez mépriser ver 15.05 27.57 0.79 0.34 imp:pre:2p;ind:pre:2p; +méprisiez mépriser ver 15.05 27.57 0.04 0.00 ind:imp:2p; +méprisions mépriser ver 15.05 27.57 0.01 0.47 ind:imp:1p;sub:pre:1p; +méprisons mépriser ver 15.05 27.57 0.29 0.14 imp:pre:1p;ind:pre:1p; +méprisé mépriser ver m s 15.05 27.57 0.85 2.77 par:pas; +méprisée mépriser ver f s 15.05 27.57 0.19 0.81 par:pas; +méprisées mépriser ver f p 15.05 27.57 0.30 0.47 par:pas; +méprisés mépriser ver m p 15.05 27.57 0.21 0.68 par:pas; +méprit méprendre ver 4.70 6.15 0.00 0.68 ind:pas:3s; +muqueuse muqueux nom f s 0.11 1.82 0.11 0.61 +muqueuses muqueuse nom f p 0.19 0.00 0.19 0.00 +muqueux muqueux adj m s 0.19 0.47 0.15 0.07 +mur mur nom m s 88.93 317.77 58.90 172.57 +mura murer ver 1.39 6.96 0.11 0.20 ind:pas:3s; +murage murage nom m s 0.01 0.00 0.01 0.00 +muraient murer ver 1.39 6.96 0.00 0.07 ind:imp:3p; +muraille muraille nom f s 2.61 20.88 1.28 11.01 +murailles muraille nom f p 2.61 20.88 1.32 9.86 +murait murer ver 1.39 6.96 0.00 0.34 ind:imp:3s; +mural mural adj m s 0.35 3.24 0.08 1.76 +murale mural adj f s 0.35 3.24 0.20 1.01 +murales mural adj f p 0.35 3.24 0.05 0.47 +murant murer ver 1.39 6.96 0.00 0.14 par:pre; +muraux mural adj m p 0.35 3.24 0.02 0.00 +mure murer ver 1.39 6.96 0.26 0.07 imp:pre:2s;ind:pre:3s; +murent mouvoir ver 1.75 13.18 0.00 0.07 ind:pas:3p; +murer murer ver 1.39 6.96 0.05 1.28 inf; +murerait murer ver 1.39 6.96 0.00 0.07 cnd:pre:3s; +mures murer ver 1.39 6.96 0.01 0.00 ind:pre:2s; +muret muret nom m s 0.28 3.24 0.28 2.64 +muretin muretin nom m s 0.00 0.27 0.00 0.07 +muretins muretin nom m p 0.00 0.27 0.00 0.20 +murets muret nom m p 0.28 3.24 0.00 0.61 +murette murette nom f s 0.00 4.26 0.00 3.31 +murettes murette nom f p 0.00 4.26 0.00 0.95 +murex murex nom m 0.00 0.07 0.00 0.07 +murez murer ver 1.39 6.96 0.00 0.07 imp:pre:2p; +muriatique muriatique adj m s 0.01 0.07 0.01 0.07 +méridien méridien nom m s 0.25 0.95 0.22 0.47 +méridienne méridien adj f s 0.09 0.54 0.04 0.14 +méridiennes méridien adj f p 0.09 0.54 0.00 0.07 +méridiens méridien nom m p 0.25 0.95 0.01 0.14 +méridional méridional adj m s 1.00 2.43 0.32 1.15 +méridionale méridional adj f s 1.00 2.43 0.46 0.88 +méridionales méridional adj f p 1.00 2.43 0.11 0.34 +méridionaux méridional nom m p 0.78 0.47 0.55 0.07 +muridés muridé nom m p 0.02 0.00 0.02 0.00 +murin murin nom m s 0.01 0.00 0.01 0.00 +mérinos mérinos nom m 0.01 0.27 0.01 0.27 +mérita mériter ver 97.06 54.53 0.00 0.14 ind:pas:3s; +méritaient mériter ver 97.06 54.53 1.18 2.30 ind:imp:3p; +méritais mériter ver 97.06 54.53 2.12 1.76 ind:imp:1s;ind:imp:2s; +méritait mériter ver 97.06 54.53 6.08 9.93 ind:imp:3s; +méritant méritant adj m s 0.85 1.89 0.51 0.61 +méritante méritant adj f s 0.85 1.89 0.10 0.34 +méritantes méritant adj f p 0.85 1.89 0.04 0.41 +méritants méritant adj m p 0.85 1.89 0.21 0.54 +méritassent mériter ver 97.06 54.53 0.00 0.07 sub:imp:3p; +mérite mériter ver 97.06 54.53 39.92 13.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +méritent mériter ver 97.06 54.53 6.62 2.64 ind:pre:3p; +mériter mériter ver 97.06 54.53 6.73 6.42 inf; +méritera mériter ver 97.06 54.53 0.11 0.07 ind:fut:3s; +mériterai mériter ver 97.06 54.53 0.02 0.07 ind:fut:1s; +mériteraient mériter ver 97.06 54.53 0.31 0.47 cnd:pre:3p; +mériterais mériter ver 97.06 54.53 1.15 0.54 cnd:pre:1s;cnd:pre:2s; +mériterait mériter ver 97.06 54.53 1.29 1.82 cnd:pre:3s; +mériteras mériter ver 97.06 54.53 0.04 0.14 ind:fut:2s; +mériteriez mériter ver 97.06 54.53 0.31 0.20 cnd:pre:2p; +mériteront mériter ver 97.06 54.53 0.06 0.00 ind:fut:3p; +mérites mériter ver 97.06 54.53 11.08 1.15 ind:pre:2s;sub:pre:2s; +méritez mériter ver 97.06 54.53 5.25 1.01 imp:pre:2p;ind:pre:2p; +méritiez mériter ver 97.06 54.53 0.36 0.34 ind:imp:2p; +méritions mériter ver 97.06 54.53 0.04 0.20 ind:imp:1p; +méritocratie méritocratie nom f s 0.01 0.00 0.01 0.00 +méritoire méritoire adj s 0.47 2.09 0.36 1.62 +méritoires méritoire adj p 0.47 2.09 0.11 0.47 +méritons mériter ver 97.06 54.53 1.16 0.20 imp:pre:1p;ind:pre:1p; +méritât mériter ver 97.06 54.53 0.00 0.20 sub:imp:3s; +mérité mériter ver m s 97.06 54.53 11.34 8.31 par:pas; +méritée mériter ver f s 97.06 54.53 1.43 1.42 par:pas; +méritées mériter ver f p 97.06 54.53 0.28 0.47 par:pas; +mérités mériter ver m p 97.06 54.53 0.05 0.47 par:pas; +murmel murmel nom m s 0.00 0.07 0.00 0.07 +murmura murmurer ver 7.27 123.58 0.80 58.31 ind:pas:3s; +murmurai murmurer ver 7.27 123.58 0.12 3.31 ind:pas:1s; +murmuraient murmurer ver 7.27 123.58 0.35 1.55 ind:imp:3p; +murmurais murmurer ver 7.27 123.58 0.03 0.95 ind:imp:1s;ind:imp:2s; +murmurait murmurer ver 7.27 123.58 0.55 12.50 ind:imp:3s; +murmurant murmurer ver 7.27 123.58 0.38 7.64 par:pre; +murmurante murmurant adj f s 0.14 1.22 0.14 0.41 +murmurantes murmurant adj f p 0.14 1.22 0.00 0.14 +murmurants murmurant adj m p 0.14 1.22 0.00 0.14 +murmuras murmurer ver 7.27 123.58 0.00 0.07 ind:pas:2s; +murmure murmurer ver 7.27 123.58 2.29 14.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +murmurent murmurer ver 7.27 123.58 0.58 0.81 ind:pre:3p; +murmurer murmurer ver 7.27 123.58 1.17 10.14 inf; +murmurera murmurer ver 7.27 123.58 0.01 0.07 ind:fut:3s; +murmureraient murmurer ver 7.27 123.58 0.00 0.07 cnd:pre:3p; +murmurerait murmurer ver 7.27 123.58 0.01 0.27 cnd:pre:3s; +murmureront murmurer ver 7.27 123.58 0.01 0.00 ind:fut:3p; +murmures murmure nom m p 3.40 31.62 1.78 6.49 +murmurez murmurer ver 7.27 123.58 0.12 0.14 imp:pre:2p;ind:pre:2p; +murmurions murmurer ver 7.27 123.58 0.01 0.14 ind:imp:1p; +murmurèrent murmurer ver 7.27 123.58 0.10 0.34 ind:pas:3p; +murmuré murmurer ver m s 7.27 123.58 0.63 10.81 par:pas; +murmurée murmurer ver f s 7.27 123.58 0.00 0.27 par:pas; +murmurées murmurer ver f p 7.27 123.58 0.01 0.81 par:pas; +murmurés murmurer ver m p 7.27 123.58 0.00 0.47 par:pas; +mérou mérou nom m s 0.99 0.14 0.99 0.14 +mérovingien mérovingien adj m s 0.00 0.41 0.00 0.07 +mérovingienne mérovingien adj f s 0.00 0.41 0.00 0.14 +mérovingiennes mérovingien adj f p 0.00 0.41 0.00 0.20 +murs mur nom m p 88.93 317.77 30.04 145.20 +murène murène nom f s 0.56 0.47 0.41 0.20 +murènes murène nom f p 0.56 0.47 0.14 0.27 +murèrent murer ver 1.39 6.96 0.00 0.07 ind:pas:3p; +muré murer ver m s 1.39 6.96 0.38 1.96 par:pas; +murée murer ver f s 1.39 6.96 0.56 1.42 par:pas; +murées murer ver f p 1.39 6.96 0.00 0.61 par:pas; +murés murer ver m p 1.39 6.96 0.02 0.68 par:pas; +mus mu adj m p 0.18 0.00 0.18 0.00 +musa muser ver 0.44 0.74 0.00 0.07 ind:pas:3s; +musagètes musagète adj m p 0.00 0.07 0.00 0.07 +musait muser ver 0.44 0.74 0.00 0.14 ind:imp:3s; +mésalliance mésalliance nom f s 0.05 0.54 0.05 0.47 +mésalliances mésalliance nom f p 0.05 0.54 0.00 0.07 +mésallieras mésallier ver 0.00 0.27 0.00 0.14 ind:fut:2s; +mésallies mésallier ver 0.00 0.27 0.00 0.07 ind:pre:2s; +mésalliés mésallier ver m p 0.00 0.27 0.00 0.07 par:pas; +mésange mésange nom f s 0.42 7.64 0.19 6.89 +mésanges mésange nom f p 0.42 7.64 0.23 0.74 +musant muser ver 0.44 0.74 0.00 0.14 par:pre; +musaraigne musaraigne nom f s 0.07 0.61 0.05 0.47 +musaraignes musaraigne nom f p 0.07 0.61 0.02 0.14 +musard musard adj m s 0.00 0.20 0.00 0.14 +musarda musarder ver 0.03 1.42 0.00 0.07 ind:pas:3s; +musardaient musarder ver 0.03 1.42 0.00 0.14 ind:imp:3p; +musardait musarder ver 0.03 1.42 0.00 0.34 ind:imp:3s; +musardant musarder ver 0.03 1.42 0.00 0.07 par:pre; +musarde musarder ver 0.03 1.42 0.00 0.20 ind:pre:3s; +musarder musarder ver 0.03 1.42 0.03 0.54 inf; +musardez musarder ver 0.03 1.42 0.00 0.07 imp:pre:2p; +musardise musardise nom f s 0.00 0.07 0.00 0.07 +musards musard adj m p 0.00 0.20 0.00 0.07 +mésaventure mésaventure nom f s 0.78 4.26 0.58 3.31 +mésaventures mésaventure nom f p 0.78 4.26 0.20 0.95 +musc musc nom m s 0.28 0.81 0.28 0.81 +muscade muscade nom f s 0.52 1.15 0.52 1.15 +muscadelle muscadelle nom f s 0.00 0.07 0.00 0.07 +muscadet muscadet nom m s 0.30 1.69 0.30 1.69 +muscadin muscadin nom m s 0.00 0.07 0.00 0.07 +muscadine muscadine nom f s 0.00 0.07 0.00 0.07 +muscat muscat nom m s 0.36 1.28 0.36 1.15 +muscats muscat nom m p 0.36 1.28 0.00 0.14 +musclant muscler ver 1.46 2.50 0.01 0.00 par:pre; +muscle muscle nom m s 15.61 34.53 3.86 3.92 +musclent muscler ver 1.46 2.50 0.01 0.14 ind:pre:3p; +muscler muscler ver 1.46 2.50 0.52 0.27 inf; +muscles muscle nom m p 15.61 34.53 11.75 30.61 +musclé musclé adj m s 2.60 7.03 1.52 2.50 +musclée musclé adj f s 2.60 7.03 0.17 1.28 +musclées musclé adj f p 2.60 7.03 0.14 1.28 +musclés musclé adj m p 2.60 7.03 0.76 1.96 +muscovite muscovite nom f s 0.01 0.00 0.01 0.00 +musculaire musculaire adj s 2.55 2.77 1.66 1.82 +musculaires musculaire adj p 2.55 2.77 0.90 0.95 +musculation musculation nom f s 0.48 0.20 0.48 0.20 +musculature musculature nom f s 0.36 1.89 0.36 1.89 +musculeuse musculeux adj f s 0.03 2.30 0.00 0.81 +musculeuses musculeux adj f p 0.03 2.30 0.00 0.41 +musculeux musculeux adj m 0.03 2.30 0.03 1.08 +muse muse nom f s 2.42 1.35 1.82 0.81 +museau museau nom m s 1.86 12.64 1.60 11.76 +museaux museau nom m p 1.86 12.64 0.26 0.88 +muselait museler ver 0.40 1.01 0.00 0.07 ind:imp:3s; +muselant museler ver 0.40 1.01 0.01 0.07 par:pre; +museler museler ver 0.40 1.01 0.19 0.34 inf; +muselière muselière nom f s 0.74 0.81 0.62 0.74 +muselières muselière nom f p 0.74 0.81 0.12 0.07 +muselle museler ver 0.40 1.01 0.01 0.07 imp:pre:2s;ind:pre:3s; +musellerait museler ver 0.40 1.01 0.00 0.07 cnd:pre:3s; +muselons museler ver 0.40 1.01 0.01 0.00 imp:pre:1p; +muselé museler ver m s 0.40 1.01 0.15 0.07 par:pas; +muselée museler ver f s 0.40 1.01 0.01 0.07 par:pas; +muselées museler ver f p 0.40 1.01 0.00 0.07 par:pas; +muselés museler ver m p 0.40 1.01 0.02 0.20 par:pas; +mésencéphale mésencéphale nom m s 0.04 0.00 0.04 0.00 +mésentente mésentente nom f s 0.11 0.61 0.08 0.34 +mésententes mésentente nom f p 0.11 0.61 0.03 0.27 +mésentère mésentère nom m s 0.01 0.00 0.01 0.00 +mésentérique mésentérique adj s 0.11 0.00 0.11 0.00 +muser muser ver 0.44 0.74 0.10 0.07 inf; +muserolle muserolle nom f s 0.00 0.07 0.00 0.07 +muses muse nom f p 2.42 1.35 0.60 0.54 +mésestimant mésestimer ver 0.10 0.20 0.00 0.07 par:pre; +mésestime mésestimer ver 0.10 0.20 0.03 0.00 imp:pre:2s;ind:pre:1s; +mésestimer mésestimer ver 0.10 0.20 0.00 0.07 inf; +mésestimez mésestimer ver 0.10 0.20 0.02 0.07 imp:pre:2p;ind:pre:2p; +mésestimé mésestimer ver m s 0.10 0.20 0.05 0.00 par:pas; +musette musette nom f s 0.77 18.45 0.75 13.78 +musettes_repa musettes_repa nom f p 0.00 0.07 0.00 0.07 +musettes musette nom f p 0.77 18.45 0.02 4.66 +music_hall music_hall nom m s 1.85 4.32 1.70 3.78 +music_hall music_hall nom m p 1.85 4.32 0.13 0.54 +music_hall music_hall nom m s 1.85 4.32 0.02 0.00 +musical musical adj m s 24.76 10.54 17.50 3.45 +musicale musical adj f s 24.76 10.54 4.88 4.19 +musicalement musicalement adv 0.30 0.27 0.30 0.27 +musicales musical adj f p 24.76 10.54 1.63 1.96 +musicalité musicalité nom f s 0.14 0.47 0.14 0.47 +musicaux musical adj m p 24.76 10.54 0.75 0.95 +musicien musicien nom m s 12.90 16.08 4.78 5.88 +musicienne musicien nom f s 12.90 16.08 0.79 0.14 +musiciennes musicienne nom f p 0.40 0.00 0.40 0.00 +musiciens musicien nom m p 12.90 16.08 7.31 9.86 +musico musico adv 0.00 0.68 0.00 0.68 +musicographes musicographe nom p 0.00 0.07 0.00 0.07 +musicologie musicologie nom f s 0.03 0.00 0.03 0.00 +musicologique musicologique adj m s 0.02 0.00 0.02 0.00 +musicologue musicologue nom s 0.01 0.34 0.01 0.07 +musicologues musicologue nom p 0.01 0.34 0.00 0.27 +musicothérapie musicothérapie nom f s 0.01 0.00 0.01 0.00 +mésintelligence mésintelligence nom f s 0.00 0.07 0.00 0.07 +mésinterpréter mésinterpréter ver 0.00 0.14 0.00 0.14 inf; +musiquait musiquer ver 0.27 0.34 0.00 0.07 ind:imp:3s; +musique musique nom f s 169.80 114.32 168.89 109.80 +musiquer musiquer ver 0.27 0.34 0.00 0.14 inf; +musiques musique nom f p 169.80 114.32 0.91 4.53 +musiquette musiquette nom f s 0.00 0.47 0.00 0.34 +musiquettes musiquette nom f p 0.00 0.47 0.00 0.14 +muskogee muskogee nom s 0.01 0.00 0.01 0.00 +mésodermiques mésodermique adj p 0.01 0.00 0.01 0.00 +musoir musoir nom m s 0.00 0.07 0.00 0.07 +mésomorphe mésomorphe adj m s 0.02 0.00 0.02 0.00 +mésomorphique mésomorphique adj s 0.01 0.00 0.01 0.00 +méson méson nom m s 0.04 0.00 0.03 0.00 +mésons méson nom m p 0.04 0.00 0.01 0.00 +mésopotamien mésopotamien adj m s 0.05 0.00 0.04 0.00 +mésopotamienne mésopotamienne nom f s 0.00 0.07 0.00 0.07 +mésopotamiens mésopotamien nom m p 0.03 0.00 0.03 0.00 +mésosphère mésosphère nom f s 0.02 0.00 0.02 0.00 +mésozoïque mésozoïque adj f s 0.04 0.00 0.04 0.00 +musqué musqué adj m s 0.18 1.49 0.14 0.41 +musquée musqué adj f s 0.18 1.49 0.01 0.68 +musquées musqué adj f p 0.18 1.49 0.00 0.14 +musqués musqué adj m p 0.18 1.49 0.04 0.27 +mussais musser ver 0.00 0.41 0.00 0.07 ind:imp:1s; +musse musser ver 0.00 0.41 0.00 0.07 ind:pre:3s; +mussent musser ver 0.00 0.41 0.00 0.07 ind:pre:3p; +mussolinien mussolinien adj m s 0.00 0.41 0.00 0.14 +mussolinienne mussolinien adj f s 0.00 0.41 0.00 0.14 +mussoliniens mussolinien adj m p 0.00 0.41 0.00 0.14 +mussée musser ver f s 0.00 0.41 0.00 0.07 par:pas; +mussés musser ver m p 0.00 0.41 0.00 0.14 par:pas; +must must nom m 3.98 0.54 3.98 0.54 +mustang mustang nom m s 0.75 0.14 0.32 0.07 +mustangs mustang nom m p 0.75 0.14 0.43 0.07 +mustélidés mustélidé nom m p 0.00 0.07 0.00 0.07 +musée musée nom m s 20.70 28.38 18.59 21.55 +musées musée nom m p 20.70 28.38 2.11 6.82 +musulman musulman adj m s 5.84 7.09 2.00 2.09 +musulmane musulman adj f s 5.84 7.09 1.84 2.09 +musulmanes musulman adj f p 5.84 7.09 0.54 0.81 +musulmans musulman nom m p 6.22 6.22 4.00 3.92 +muséologie muséologie nom f s 0.01 0.00 0.01 0.00 +muséologique muséologique adj f s 0.01 0.00 0.01 0.00 +muséologue muséologue nom s 0.01 0.00 0.01 0.00 +mésusage mésusage nom m s 0.00 0.07 0.00 0.07 +mésuser mésuser ver 0.00 0.07 0.00 0.07 inf; +muséum muséum nom m s 0.24 0.20 0.24 0.20 +méta méta nom m s 0.14 0.14 0.14 0.14 +mutabilité mutabilité nom f s 0.03 0.00 0.03 0.00 +mutable mutable adj s 0.03 0.00 0.02 0.00 +mutables mutable adj p 0.03 0.00 0.01 0.00 +métabolique métabolique adj s 0.28 0.00 0.28 0.00 +métaboliser métaboliser ver 0.02 0.00 0.02 0.00 inf; +métabolisme métabolisme nom m s 1.27 0.20 1.22 0.20 +métabolismes métabolisme nom m p 1.27 0.20 0.05 0.00 +métabolite métabolite nom m s 0.07 0.00 0.07 0.00 +métacarpe métacarpe nom m s 0.13 0.00 0.13 0.00 +métacarpien métacarpien nom m s 0.04 0.00 0.03 0.00 +métacarpiens métacarpien nom m p 0.04 0.00 0.01 0.00 +mutagène mutagène adj m s 0.02 0.00 0.02 0.00 +métairie métairie nom f s 0.00 1.15 0.00 0.74 +métairies métairie nom f p 0.00 1.15 0.00 0.41 +métal métal nom m s 14.36 44.73 12.16 41.82 +métallique métallique adj s 3.34 23.78 2.60 16.49 +métalliques métallique adj p 3.34 23.78 0.74 7.30 +métallisation métallisation nom f s 0.01 0.00 0.01 0.00 +métallise métalliser ver 0.62 1.15 0.00 0.07 ind:pre:3s; +métallisent métalliser ver 0.62 1.15 0.00 0.07 ind:pre:3p; +métallisé métalliser ver m s 0.62 1.15 0.48 0.68 par:pas; +métallisée métalliser ver f s 0.62 1.15 0.12 0.20 par:pas; +métallisées métalliser ver f p 0.62 1.15 0.00 0.07 par:pas; +métallisés métalliser ver m p 0.62 1.15 0.01 0.07 par:pas; +métallo métallo nom m s 0.02 1.08 0.02 0.47 +métallographie métallographie nom f s 0.04 0.00 0.04 0.00 +métallos métallo nom m p 0.02 1.08 0.00 0.61 +métallurgie métallurgie nom f s 0.16 0.47 0.16 0.47 +métallurgique métallurgique adj s 0.07 0.54 0.07 0.47 +métallurgiques métallurgique adj f p 0.07 0.54 0.00 0.07 +métallurgiste métallurgiste nom m s 0.27 0.34 0.23 0.07 +métallurgistes métallurgiste nom m p 0.27 0.34 0.04 0.27 +métamorphique métamorphique adj f s 0.01 0.00 0.01 0.00 +métamorphosa métamorphoser ver 0.94 9.26 0.02 0.20 ind:pas:3s; +métamorphosaient métamorphoser ver 0.94 9.26 0.00 0.27 ind:imp:3p; +métamorphosait métamorphoser ver 0.94 9.26 0.00 1.49 ind:imp:3s; +métamorphosant métamorphoser ver 0.94 9.26 0.10 0.27 par:pre; +métamorphose métamorphose nom f s 1.59 11.22 1.22 9.12 +métamorphosent métamorphoser ver 0.94 9.26 0.00 0.20 ind:pre:3p; +métamorphoser métamorphoser ver 0.94 9.26 0.37 1.69 inf; +métamorphoseraient métamorphoser ver 0.94 9.26 0.00 0.07 cnd:pre:3p; +métamorphoserait métamorphoser ver 0.94 9.26 0.00 0.07 cnd:pre:3s; +métamorphoses métamorphose nom f p 1.59 11.22 0.37 2.09 +métamorphosez métamorphoser ver 0.94 9.26 0.00 0.07 ind:pre:2p; +métamorphosions métamorphoser ver 0.94 9.26 0.00 0.07 ind:imp:1p; +métamorphosât métamorphoser ver 0.94 9.26 0.00 0.07 sub:imp:3s; +métamorphosèrent métamorphoser ver 0.94 9.26 0.01 0.00 ind:pas:3p; +métamorphosé métamorphoser ver m s 0.94 9.26 0.22 1.96 par:pas; +métamorphosée métamorphoser ver f s 0.94 9.26 0.11 1.08 par:pas; +métamorphosées métamorphoser ver f p 0.94 9.26 0.00 0.14 par:pas; +métamorphosés métamorphoser ver m p 0.94 9.26 0.01 0.47 par:pas; +mutant mutant nom m s 4.67 0.81 1.93 0.27 +mutante mutant adj f s 2.02 0.07 0.98 0.00 +mutantes mutant adj f p 2.02 0.07 0.10 0.00 +mutants mutant nom m p 4.67 0.81 2.46 0.54 +métaphase métaphase nom f s 0.01 0.00 0.01 0.00 +métaphore métaphore nom f s 4.71 3.31 4.04 1.89 +métaphores métaphore nom f p 4.71 3.31 0.67 1.42 +métaphorique métaphorique adj s 0.27 0.20 0.26 0.20 +métaphoriquement métaphoriquement adv 0.51 0.07 0.51 0.07 +métaphoriques métaphorique adj p 0.27 0.20 0.01 0.00 +métaphysicien métaphysicien nom m s 0.03 0.47 0.02 0.14 +métaphysicienne métaphysicien nom f s 0.03 0.47 0.00 0.07 +métaphysiciens métaphysicien nom m p 0.03 0.47 0.01 0.27 +métaphysique métaphysique adj s 0.91 6.35 0.64 4.12 +métaphysiquement métaphysiquement adv 0.01 0.14 0.01 0.14 +métaphysiques métaphysique adj p 0.91 6.35 0.27 2.23 +métapsychique métapsychique adj s 0.11 0.00 0.11 0.00 +métapsychologie métapsychologie nom f s 0.01 0.07 0.01 0.07 +métapsychologique métapsychologique adj s 0.00 0.07 0.00 0.07 +métastase métastase nom f s 0.28 0.27 0.08 0.20 +métastases métastase nom f p 0.28 0.27 0.20 0.07 +métastasé métastaser ver m s 0.10 0.07 0.10 0.07 par:pas; +métastatique métastatique adj s 0.08 0.00 0.08 0.00 +métatarses métatarse nom m p 0.01 0.00 0.01 0.00 +métatarsienne métatarsien adj f s 0.03 0.00 0.03 0.00 +mutation mutation nom f s 5.53 4.32 4.67 3.18 +mutations mutation nom f p 5.53 4.32 0.85 1.15 +mutatis_mutandis mutatis_mutandis adv 0.00 0.07 0.00 0.07 +métaux métal nom m p 14.36 44.73 2.19 2.91 +métayage métayage nom m s 0.01 0.07 0.01 0.07 +métayer métayer nom m s 0.23 1.49 0.11 0.81 +métayers métayer nom m p 0.23 1.49 0.12 0.68 +métazoaires métazoaire nom m p 0.00 0.07 0.00 0.07 +mute muter ver 7.04 2.09 0.24 0.14 ind:pre:1s;ind:pre:3s; +métempsychose métempsychose nom f s 0.00 0.07 0.00 0.07 +métempsycose métempsycose nom f s 0.14 0.27 0.14 0.27 +mutent muter ver 7.04 2.09 0.08 0.00 ind:pre:3p; +muter muter ver 7.04 2.09 1.88 0.47 inf; +mutera muter ver 7.04 2.09 0.01 0.00 ind:fut:3s; +muterai muter ver 7.04 2.09 0.34 0.00 ind:fut:1s; +muteront muter ver 7.04 2.09 0.01 0.00 ind:fut:3p; +méthacrylate méthacrylate nom m s 0.01 0.00 0.01 0.00 +méthadone méthadone nom f s 0.73 0.00 0.73 0.00 +méthanal méthanal nom m s 0.01 0.00 0.01 0.00 +méthane méthane nom m s 0.70 0.20 0.70 0.20 +méthanol méthanol nom m s 0.13 0.00 0.13 0.00 +méthode méthode nom f s 24.87 24.86 13.83 16.42 +méthodes méthode nom f p 24.87 24.86 11.04 8.45 +méthodique méthodique adj s 0.67 3.18 0.60 2.84 +méthodiquement méthodiquement adv 0.09 4.26 0.09 4.26 +méthodiques méthodique adj p 0.67 3.18 0.07 0.34 +méthodisme méthodisme nom m s 0.00 0.14 0.00 0.14 +méthodiste méthodiste adj s 0.20 0.20 0.15 0.14 +méthodistes méthodiste nom p 0.28 0.07 0.18 0.07 +méthodologie méthodologie nom f s 0.27 0.00 0.27 0.00 +méthodologique méthodologique adj f s 0.02 0.07 0.02 0.07 +méthédrine méthédrine nom f s 0.09 0.00 0.09 0.00 +méthyle méthyle nom m s 0.05 0.00 0.05 0.00 +méthylique méthylique adj s 0.01 0.00 0.01 0.00 +méthylène méthylène nom m s 0.05 0.34 0.05 0.34 +méticuleuse méticuleux adj f s 2.40 6.28 0.52 1.82 +méticuleusement méticuleusement adv 0.37 2.57 0.37 2.57 +méticuleuses méticuleux adj f p 2.40 6.28 0.09 0.34 +méticuleux méticuleux adj m 2.40 6.28 1.79 4.12 +méticulosité méticulosité nom f s 0.00 0.34 0.00 0.34 +métier métier nom m s 55.03 84.53 53.22 75.54 +métiers métier nom m p 55.03 84.53 1.81 8.99 +mutila mutiler ver 2.36 4.39 0.01 0.20 ind:pas:3s; +mutilais mutiler ver 2.36 4.39 0.01 0.00 ind:imp:2s; +mutilait mutiler ver 2.36 4.39 0.02 0.27 ind:imp:3s; +mutilant mutiler ver 2.36 4.39 0.14 0.07 par:pre; +mutilante mutilant adj f s 0.00 0.20 0.00 0.14 +mutilateur mutilateur adj m s 0.03 0.00 0.03 0.00 +mutilation mutilation nom f s 2.02 2.57 1.13 1.82 +mutilations mutilation nom f p 2.02 2.57 0.89 0.74 +mutile mutiler ver 2.36 4.39 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mutilent mutiler ver 2.36 4.39 0.08 0.07 ind:pre:3p; +mutiler mutiler ver 2.36 4.39 0.67 0.81 inf; +mutilera mutiler ver 2.36 4.39 0.00 0.07 ind:fut:3s; +mutileraient mutiler ver 2.36 4.39 0.01 0.07 cnd:pre:3p; +mutilé mutilé adj m s 2.21 6.15 1.22 1.76 +mutilée mutiler ver f s 2.36 4.39 0.40 0.68 par:pas; +mutilées mutilé adj f p 2.21 6.15 0.04 1.01 +mutilés mutilé adj m p 2.21 6.15 0.72 1.96 +mutin mutin adj m s 0.33 0.88 0.27 0.27 +mutina mutiner ver 0.85 0.47 0.03 0.07 ind:pas:3s; +mutinaient mutiner ver 0.85 0.47 0.03 0.07 ind:imp:3p; +mutine mutiner ver 0.85 0.47 0.04 0.07 ind:pre:3s; +mutinent mutiner ver 0.85 0.47 0.11 0.00 ind:pre:3p; +mutiner mutiner ver 0.85 0.47 0.18 0.14 inf; +mutinerie mutinerie nom f s 3.13 1.15 2.97 0.81 +mutineries mutinerie nom f p 3.13 1.15 0.16 0.34 +mutines mutin adj f p 0.33 0.88 0.01 0.07 +mutinez mutiner ver 0.85 0.47 0.01 0.00 ind:pre:2p; +métingue métingue nom m s 0.00 0.14 0.00 0.14 +mutins mutin nom m p 0.70 1.01 0.59 0.61 +mutiné mutiner ver m s 0.85 0.47 0.31 0.14 par:pas; +mutinée mutiner ver f s 0.85 0.47 0.10 0.00 par:pas; +mutinés mutiné adj m p 0.15 0.07 0.05 0.07 +mutique mutique adj m s 0.01 0.07 0.01 0.07 +métis métis nom m 1.91 2.97 1.91 2.97 +mutisme mutisme nom m s 0.97 6.89 0.97 6.82 +mutismes mutisme nom m p 0.97 6.89 0.00 0.07 +métissage métissage nom m s 0.23 1.15 0.23 0.88 +métissages métissage nom m p 0.23 1.15 0.00 0.27 +métisse métisse adj f s 0.23 0.54 0.19 0.34 +métisser métisser ver 0.40 0.34 0.00 0.07 inf; +métisses métisse adj f p 0.23 0.54 0.04 0.20 +métissez métisser ver 0.40 0.34 0.00 0.07 imp:pre:2p; +métissé métisser ver m s 0.40 0.34 0.39 0.14 par:pas; +métissée métisser ver f s 0.40 0.34 0.01 0.07 par:pas; +mutité mutité nom f s 0.00 0.20 0.00 0.20 +métonymie métonymie nom f s 0.00 0.07 0.00 0.07 +métopes métope nom f p 0.00 0.07 0.00 0.07 +mutât muter ver 7.04 2.09 0.00 0.07 sub:imp:3s; +métra métrer ver 0.16 0.61 0.04 0.00 ind:pas:3s; +métrage métrage nom m s 0.91 1.69 0.69 1.08 +métrages métrage nom m p 0.91 1.69 0.22 0.61 +métras métrer ver 0.16 0.61 0.01 0.00 ind:pas:2s; +métreur métreur nom m s 0.01 0.00 0.01 0.00 +métrique métrique adj s 0.24 0.27 0.24 0.27 +métriques métrique nom f p 0.04 0.07 0.01 0.00 +métrite métrite nom f s 0.00 0.14 0.00 0.07 +métrites métrite nom f p 0.00 0.14 0.00 0.07 +métro métro nom m s 18.17 41.35 17.66 40.00 +métronome métronome nom m s 0.16 1.35 0.15 1.28 +métronomes métronome nom m p 0.16 1.35 0.01 0.07 +métropole métropole nom f s 1.17 10.74 0.95 10.34 +métropoles métropole nom f p 1.17 10.74 0.22 0.41 +métropolitain métropolitain adj m s 0.23 3.92 0.07 1.96 +métropolitaine métropolitain adj f s 0.23 3.92 0.11 1.08 +métropolitaines métropolitain adj f p 0.23 3.92 0.03 0.41 +métropolitains métropolitain adj m p 0.23 3.92 0.02 0.47 +métropolite métropolite nom m s 0.00 0.47 0.00 0.47 +métros métro nom m p 18.17 41.35 0.51 1.35 +métèque métèque nom s 1.26 4.19 0.64 2.91 +métèques métèque nom p 1.26 4.19 0.61 1.28 +muté muter ver m s 7.04 2.09 3.59 1.08 par:pas; +mutualisme mutualisme nom m s 0.00 0.07 0.00 0.07 +mutualité mutualité nom f s 0.14 0.34 0.00 0.34 +mutualités mutualité nom f p 0.14 0.34 0.14 0.00 +mutée muter ver f s 7.04 2.09 0.42 0.00 par:pas; +mutuel mutuel adj m s 4.00 3.78 1.50 1.15 +mutuelle mutuel adj f s 4.00 3.78 1.88 2.23 +mutuellement mutuellement adv 3.40 4.59 3.40 4.59 +mutuelles mutuel adj f p 4.00 3.78 0.22 0.34 +mutuels mutuel adj m p 4.00 3.78 0.41 0.07 +mutées muter ver f p 7.04 2.09 0.05 0.00 par:pas; +météo météo nom f s 8.90 1.69 8.90 1.69 +météore météore nom m s 1.06 2.97 0.55 0.81 +météores météore nom m p 1.06 2.97 0.52 2.16 +météorique météorique adj s 0.05 0.14 0.05 0.14 +météoriquement météoriquement adv 0.01 0.07 0.01 0.07 +météorite météorite nom f s 4.87 0.61 2.05 0.47 +météorites météorite nom f p 4.87 0.61 2.82 0.14 +météoritique météoritique adj f s 0.01 0.07 0.01 0.07 +météorologie météorologie nom f s 0.13 1.08 0.13 1.08 +météorologique météorologique adj s 0.71 1.82 0.47 0.88 +météorologiques météorologique adj p 0.71 1.82 0.25 0.95 +météorologiste météorologiste nom s 0.05 0.07 0.05 0.07 +météorologue météorologue nom s 0.40 0.20 0.32 0.00 +météorologues météorologue nom p 0.40 0.20 0.08 0.20 +mutés muter ver m p 7.04 2.09 0.19 0.34 par:pas; +mué muer ver m s 1.63 7.03 0.32 1.62 par:pas; +muée muer ver f s 1.63 7.03 0.03 0.81 par:pas; +muées muer ver f p 1.63 7.03 0.00 0.07 par:pas; +mués muer ver m p 1.63 7.03 0.02 0.27 par:pas; +mévente mévente nom f s 0.00 0.27 0.00 0.27 +mézig mézig pro_per s 0.00 1.15 0.00 1.15 +mézigue mézigue pro_per s 0.02 2.84 0.02 2.84 +myasthénie myasthénie nom f s 0.12 0.00 0.12 0.00 +mycologie mycologie nom f s 0.00 0.07 0.00 0.07 +mycologue mycologue nom s 0.01 0.27 0.00 0.20 +mycologues mycologue nom p 0.01 0.27 0.01 0.07 +mycose mycose nom f s 0.73 0.00 0.73 0.00 +mycène mycène nom m s 0.04 0.00 0.04 0.00 +mycénien mycénien adj m s 0.01 0.14 0.01 0.00 +mycéniennes mycénien adj f p 0.01 0.14 0.00 0.07 +mycéniens mycénien adj m p 0.01 0.14 0.00 0.07 +mygale mygale nom f s 0.05 0.47 0.04 0.27 +mygales mygale nom f p 0.05 0.47 0.01 0.20 +mylord mylord nom m s 0.97 0.14 0.97 0.14 +myocarde myocarde nom m s 0.12 0.20 0.12 0.20 +myocardiopathie myocardiopathie nom f s 0.07 0.00 0.07 0.00 +myocardique myocardique adj f s 0.01 0.00 0.01 0.00 +myocardite myocardite nom f s 0.03 0.07 0.03 0.07 +myoclonie myoclonie nom f s 0.01 0.00 0.01 0.00 +myoglobine myoglobine nom f s 0.04 0.00 0.04 0.00 +myographe myographe nom m s 0.00 0.07 0.00 0.07 +myopathes myopathe nom p 0.02 0.00 0.02 0.00 +myopathie myopathie nom f s 0.03 0.07 0.03 0.07 +myopathique myopathique adj s 0.01 0.00 0.01 0.00 +myope myope adj s 1.76 4.05 1.71 3.24 +myopes myope adj m p 1.76 4.05 0.05 0.81 +myopie myopie nom f s 0.29 2.16 0.29 2.09 +myopies myopie nom f p 0.29 2.16 0.00 0.07 +myosine myosine nom f s 0.01 0.00 0.01 0.00 +myosis myosis nom m 0.04 0.00 0.04 0.00 +myosotis myosotis nom m 0.17 1.49 0.17 1.49 +myriade myriade nom f s 0.78 3.31 0.11 1.08 +myriades myriade nom f p 0.78 3.31 0.67 2.23 +myriophylle myriophylle nom f s 0.00 0.20 0.00 0.20 +myrmidon myrmidon nom m s 0.69 0.00 0.67 0.00 +myrmidons myrmidon nom m p 0.69 0.00 0.02 0.00 +myrrhe myrrhe nom f s 0.43 0.54 0.43 0.54 +myrte myrte nom m s 1.25 1.55 1.25 0.74 +myrtes myrte nom m p 1.25 1.55 0.00 0.81 +myrtille myrtille nom f s 3.43 2.16 1.71 0.34 +myrtilles myrtille nom f p 3.43 2.16 1.72 1.82 +mystagogie mystagogie nom f s 0.00 0.14 0.00 0.14 +mystagogique mystagogique adj f s 0.00 0.14 0.00 0.14 +mystagogue mystagogue nom m s 0.00 0.07 0.00 0.07 +myste myste nom m s 0.01 0.00 0.01 0.00 +mysticisme mysticisme nom m s 0.79 1.89 0.79 1.82 +mysticismes mysticisme nom m p 0.79 1.89 0.00 0.07 +mystificateur mystificateur nom m s 0.09 0.41 0.05 0.34 +mystificateurs mystificateur nom m p 0.09 0.41 0.02 0.07 +mystification mystification nom f s 0.40 1.49 0.16 1.28 +mystifications mystification nom f p 0.40 1.49 0.23 0.20 +mystificatrice mystificateur nom f s 0.09 0.41 0.02 0.00 +mystifie mystifier ver 0.28 1.01 0.10 0.00 ind:pre:3s; +mystifier mystifier ver 0.28 1.01 0.03 0.54 inf; +mystifié mystifier ver m s 0.28 1.01 0.13 0.20 par:pas; +mystifiée mystifier ver f s 0.28 1.01 0.01 0.14 par:pas; +mystifiées mystifier ver f p 0.28 1.01 0.00 0.07 par:pas; +mystifiés mystifier ver m p 0.28 1.01 0.01 0.07 par:pas; +mystique mystique adj s 3.31 8.85 2.75 6.82 +mystiquement mystiquement adv 0.04 0.20 0.04 0.20 +mystiques mystique adj p 3.31 8.85 0.57 2.03 +mystère mystère nom m s 28.03 51.01 22.90 39.53 +mystères mystère nom m p 28.03 51.01 5.13 11.49 +mystérieuse mystérieux adj f s 19.61 53.65 6.56 18.65 +mystérieusement mystérieusement adv 1.63 6.82 1.63 6.82 +mystérieuses mystérieux adj f p 19.61 53.65 1.21 7.64 +mystérieux mystérieux adj m 19.61 53.65 11.84 27.36 +mythe mythe nom m s 6.26 10.41 5.17 5.61 +mythes mythe nom m p 6.26 10.41 1.10 4.80 +mythifiait mythifier ver 0.00 0.14 0.00 0.07 ind:imp:3s; +mythifier mythifier ver 0.00 0.14 0.00 0.07 inf; +mythique mythique adj s 1.15 4.19 1.01 3.11 +mythiques mythique adj p 1.15 4.19 0.14 1.08 +mythisation mythisation nom f s 0.00 0.07 0.00 0.07 +mytho mytho adv 0.36 0.20 0.36 0.20 +mythologie mythologie nom f s 2.06 4.73 2.02 4.12 +mythologies mythologie nom f p 2.06 4.73 0.04 0.61 +mythologique mythologique adj s 0.81 2.03 0.66 1.62 +mythologiques mythologique adj p 0.81 2.03 0.16 0.41 +mythologisé mythologiser ver m s 0.00 0.07 0.00 0.07 par:pas; +mythologue mythologue nom s 0.00 0.14 0.00 0.07 +mythologues mythologue nom p 0.00 0.14 0.00 0.07 +mythomane mythomane adj s 0.43 0.68 0.42 0.68 +mythomanes mythomane adj f p 0.43 0.68 0.01 0.00 +mythomanie mythomanie nom f s 0.10 0.61 0.10 0.61 +myéline myéline nom f s 0.01 0.00 0.01 0.00 +myélite myélite nom f s 0.05 0.07 0.05 0.07 +myéloïde myéloïde adj f s 0.02 0.00 0.02 0.00 +myéloblaste myéloblaste nom m s 0.00 0.20 0.00 0.07 +myéloblastes myéloblaste nom m p 0.00 0.20 0.00 0.14 +myxoedémateuse myxoedémateux adj f s 0.00 0.07 0.00 0.07 +myxoedémateuse myxoedémateux nom f s 0.00 0.07 0.00 0.07 +myxomatose myxomatose nom f s 0.03 0.07 0.03 0.07 +n_est_ce_pas n_est_ce_pas adv 0.10 0.00 0.10 0.00 +n ne adv_sup 22287.83 13841.89 70.36 5.68 +nôtre nôtre pro_pos s 19.00 23.51 19.00 23.51 +nôtres nôtres pro_pos p 22.63 21.35 22.63 21.35 +na na ono 5.66 0.81 5.66 0.81 +naît naître ver 116.11 119.32 5.47 6.82 ind:pre:3s; +naîtra naître ver 116.11 119.32 1.55 0.54 ind:fut:3s; +naîtrai naître ver 116.11 119.32 0.02 0.00 ind:fut:1s; +naîtraient naître ver 116.11 119.32 0.17 0.07 cnd:pre:3p; +naîtrait naître ver 116.11 119.32 0.11 0.34 cnd:pre:3s; +naître naître ver 116.11 119.32 12.74 19.86 inf; +naîtrions naître ver 116.11 119.32 0.00 0.07 cnd:pre:1p; +naîtront naître ver 116.11 119.32 0.34 0.47 ind:fut:3p; +naïade naïade nom f s 0.04 0.54 0.03 0.14 +naïades naïade nom f p 0.04 0.54 0.01 0.41 +naïf naïf adj m s 7.91 21.62 4.22 9.59 +naïfs naïf adj m p 7.91 21.62 0.76 3.18 +naïve naïf adj f s 7.91 21.62 2.76 6.69 +naïvement naïvement adv 0.27 6.01 0.27 6.01 +naïves naïf adj f p 7.91 21.62 0.17 2.16 +naïveté naïveté nom f s 0.95 10.68 0.94 9.86 +naïvetés naïveté nom f p 0.95 10.68 0.01 0.81 +nabab nabab nom m s 0.72 0.68 0.55 0.54 +nababs nabab nom m p 0.72 0.68 0.18 0.14 +nabi nabi nom m s 0.28 0.00 0.28 0.00 +nable nable nom m s 0.02 0.00 0.02 0.00 +nabot nabot nom m s 2.10 2.09 2.01 1.49 +nabote nabot nom f s 2.10 2.09 0.00 0.14 +nabots nabot nom m p 2.10 2.09 0.08 0.47 +nacarat nacarat nom m s 0.00 0.20 0.00 0.20 +nacelle nacelle nom f s 1.24 3.04 1.04 2.36 +nacelles nacelle nom f p 1.24 3.04 0.20 0.68 +nacra nacrer ver 0.00 1.62 0.00 0.07 ind:pas:3s; +nacraient nacrer ver 0.00 1.62 0.00 0.07 ind:imp:3p; +nacre nacre nom f s 0.58 5.34 0.58 5.20 +nacres nacre nom f p 0.58 5.34 0.00 0.14 +nacré nacré adj m s 0.38 3.24 0.05 1.15 +nacrée nacré adj f s 0.38 3.24 0.01 0.74 +nacrées nacré adj f p 0.38 3.24 0.04 0.74 +nacrure nacrure nom f s 0.00 0.14 0.00 0.14 +nacrés nacré adj m p 0.38 3.24 0.28 0.61 +nada nada adv 2.63 0.41 2.63 0.41 +nadir nadir nom m s 0.01 0.20 0.01 0.20 +naevus naevus nom m 0.03 0.14 0.03 0.14 +naga naga nom m 0.05 0.00 0.05 0.00 +nage nage nom f s 5.42 6.28 5.37 6.22 +nagea nager ver 30.36 25.68 0.03 1.15 ind:pas:3s; +nageai nager ver 30.36 25.68 0.00 0.20 ind:pas:1s; +nageaient nager ver 30.36 25.68 0.08 1.82 ind:imp:3p; +nageais nager ver 30.36 25.68 0.57 0.74 ind:imp:1s;ind:imp:2s; +nageait nager ver 30.36 25.68 0.62 3.58 ind:imp:3s; +nageant nager ver 30.36 25.68 0.95 2.30 par:pre; +nageante nageant adj f s 0.03 0.07 0.00 0.07 +nagent nager ver 30.36 25.68 1.24 1.01 ind:pre:3p; +nageoire nageoire nom f s 1.10 2.30 0.53 0.34 +nageoires nageoire nom f p 1.10 2.30 0.57 1.96 +nageons nager ver 30.36 25.68 0.07 0.20 imp:pre:1p;ind:pre:1p; +nageât nager ver 30.36 25.68 0.00 0.07 sub:imp:3s; +nager nager ver 30.36 25.68 18.71 9.32 inf; +nagera nager ver 30.36 25.68 0.15 0.07 ind:fut:3s; +nagerai nager ver 30.36 25.68 0.22 0.00 ind:fut:1s; +nageraient nager ver 30.36 25.68 0.01 0.00 cnd:pre:3p; +nagerais nager ver 30.36 25.68 0.02 0.07 cnd:pre:1s; +nagerait nager ver 30.36 25.68 0.02 0.20 cnd:pre:3s; +nageras nager ver 30.36 25.68 0.03 0.07 ind:fut:2s; +nagerez nager ver 30.36 25.68 0.01 0.14 ind:fut:2p; +nagerons nager ver 30.36 25.68 0.03 0.00 ind:fut:1p; +nageront nager ver 30.36 25.68 0.01 0.00 ind:fut:3p; +nages nager ver 30.36 25.68 0.58 0.14 ind:pre:2s; +nageur nageur nom m s 2.65 4.59 1.43 3.24 +nageurs nageur nom m p 2.65 4.59 0.75 0.95 +nageuse nageur nom f s 2.65 4.59 0.47 0.41 +nageuses nageuse nom f p 0.07 0.00 0.07 0.00 +nagez nager ver 30.36 25.68 0.53 0.27 imp:pre:2p;ind:pre:2p; +nagiez nager ver 30.36 25.68 0.05 0.07 ind:imp:2p; +nagions nager ver 30.36 25.68 0.13 0.34 ind:imp:1p; +nagèrent nager ver 30.36 25.68 0.00 0.34 ind:pas:3p; +nagé nager ver m s 30.36 25.68 1.26 1.22 par:pas; +naguère naguère adv 1.16 23.72 1.16 23.72 +nain nain nom m s 13.87 8.99 9.08 6.69 +naine nain nom f s 13.87 8.99 0.63 0.61 +naines naine nom f p 0.03 0.00 0.03 0.00 +nains nain nom m p 13.87 8.99 4.17 1.62 +naira naira nom m s 0.03 0.00 0.03 0.00 +nais naître ver 116.11 119.32 0.57 0.27 ind:pre:1s;ind:pre:2s; +naissaient naître ver 116.11 119.32 0.16 3.85 ind:imp:3p; +naissain naissain nom m s 0.00 0.07 0.00 0.07 +naissais naître ver 116.11 119.32 0.01 0.07 ind:imp:1s; +naissait naître ver 116.11 119.32 0.24 7.57 ind:imp:3s; +naissance naissance nom f s 39.72 52.91 37.90 49.53 +naissances naissance nom f p 39.72 52.91 1.83 3.38 +naissant naître ver 116.11 119.32 0.42 0.88 par:pre; +naissante naissant adj f s 0.94 5.61 0.33 2.50 +naissantes naissant adj f p 0.94 5.61 0.34 0.68 +naissants naissant adj m p 0.94 5.61 0.01 0.27 +naisse naître ver 116.11 119.32 0.92 0.88 sub:pre:1s;sub:pre:3s; +naissent naître ver 116.11 119.32 3.82 3.58 ind:pre:3p; +naisses naître ver 116.11 119.32 0.03 0.14 sub:pre:2s; +naisseur naisseur adj m s 0.01 0.00 0.01 0.00 +naissez naître ver 116.11 119.32 0.06 0.00 imp:pre:2p;ind:pre:2p; +naissions naître ver 116.11 119.32 0.03 0.14 ind:imp:1p; +naissons naître ver 116.11 119.32 0.21 0.27 ind:pre:1p; +naja naja nom m s 0.02 0.41 0.02 0.34 +najas naja nom m p 0.02 0.41 0.00 0.07 +namibiens namibien nom m p 0.02 0.00 0.02 0.00 +nan nan nom m s 11.92 1.42 11.92 1.42 +nana nana nom f s 39.57 13.65 26.48 7.64 +nanan nanan nom m s 0.04 0.74 0.04 0.74 +nanar nanar nom m s 0.00 0.14 0.00 0.14 +nanard nanard nom m s 0.01 0.07 0.01 0.07 +nanas nana nom f p 39.57 13.65 13.09 6.01 +nancéiens nancéien adj m p 0.00 0.07 0.00 0.07 +nanisme nanisme nom m s 0.02 0.14 0.02 0.14 +nankin nankin nom m s 0.02 0.27 0.02 0.27 +nano nano adv 0.14 0.14 0.14 0.14 +nanomètre nanomètre nom m s 0.07 0.00 0.03 0.00 +nanomètres nanomètre nom m p 0.07 0.00 0.04 0.00 +nanoseconde nanoseconde nom f s 0.05 0.00 0.02 0.00 +nanosecondes nanoseconde nom f p 0.05 0.00 0.03 0.00 +nanotechnologie nanotechnologie nom f s 0.34 0.00 0.34 0.00 +nant nant nom m s 0.32 0.81 0.32 0.81 +nantais nantais adj m s 0.00 0.41 0.00 0.34 +nantaise nantaise nom f s 0.14 0.00 0.14 0.00 +nantaises nantais nom f p 0.00 0.34 0.00 0.07 +nanti nanti nom m s 0.44 1.62 0.17 0.14 +nantie nantir ver f s 0.11 1.96 0.05 0.61 par:pas; +nanties nantir ver f p 0.11 1.96 0.00 0.14 par:pas; +nantir nantir ver 0.11 1.96 0.01 0.20 inf; +nantis nanti nom m p 0.44 1.62 0.25 1.42 +nantissement nantissement nom m s 0.01 0.07 0.01 0.07 +nap nap adj m s 0.05 0.00 0.05 0.00 +napalm napalm nom m s 0.96 0.68 0.96 0.68 +napel napel nom m s 0.01 0.00 0.01 0.00 +naphtaline naphtaline nom f s 0.53 2.30 0.53 2.23 +naphtalines naphtaline nom f p 0.53 2.30 0.00 0.07 +naphtalène naphtalène nom m s 0.09 0.00 0.09 0.00 +naphte naphte nom m s 0.10 0.27 0.10 0.27 +napolitain napolitain adj m s 1.09 1.96 0.73 0.34 +napolitaine napolitain adj f s 1.09 1.96 0.21 0.74 +napolitaines napolitain adj f p 1.09 1.96 0.02 0.27 +napolitains napolitain nom m p 1.21 0.74 0.63 0.07 +napoléon napoléon nom m s 0.18 1.28 0.04 0.81 +napoléonien napoléonien adj m s 0.08 0.61 0.02 0.20 +napoléonienne napoléonien adj f s 0.08 0.61 0.01 0.20 +napoléoniennes napoléonien adj f p 0.08 0.61 0.04 0.14 +napoléoniens napoléonien adj m p 0.08 0.61 0.01 0.07 +napoléons napoléon nom m p 0.18 1.28 0.14 0.47 +nappa napper ver 0.31 1.49 0.22 0.20 ind:pas:3s; +nappage nappage nom m s 0.04 0.00 0.04 0.00 +nappaient napper ver 0.31 1.49 0.00 0.07 ind:imp:3p; +nappait napper ver 0.31 1.49 0.00 0.14 ind:imp:3s; +nappe nappe nom f s 4.34 25.68 3.01 18.18 +napper napper ver 0.31 1.49 0.01 0.07 inf; +napperon napperon nom m s 0.51 3.65 0.31 2.16 +napperons napperon nom m p 0.51 3.65 0.20 1.49 +nappes nappe nom f p 4.34 25.68 1.33 7.50 +nappé napper ver m s 0.31 1.49 0.04 0.41 par:pas; +nappée napper ver f s 0.31 1.49 0.01 0.20 par:pas; +nappées napper ver f p 0.31 1.49 0.01 0.20 par:pas; +nappés napper ver m p 0.31 1.49 0.02 0.14 par:pas; +naquît naître ver 116.11 119.32 0.00 0.20 sub:imp:3s; +naquirent naître ver 116.11 119.32 0.03 0.34 ind:pas:3p; +naquis naître ver 116.11 119.32 0.25 0.27 ind:pas:1s;ind:pas:2s; +naquisse naître ver 116.11 119.32 0.00 0.07 sub:imp:1s; +naquissent naître ver 116.11 119.32 0.00 0.07 sub:imp:3p; +naquit naître ver 116.11 119.32 1.40 3.18 ind:pas:3s; +narbonnais narbonnais adj m s 0.00 0.68 0.00 0.68 +narcisse narcisse nom m s 0.34 0.95 0.04 0.27 +narcisses narcisse nom m p 0.34 0.95 0.31 0.68 +narcissique narcissique adj s 1.16 0.88 0.88 0.61 +narcissiquement narcissiquement adv 0.00 0.07 0.00 0.07 +narcissiques narcissique adj p 1.16 0.88 0.27 0.27 +narcissisme narcissisme nom m s 1.18 1.15 1.18 1.15 +narcissiste narcissiste nom s 0.03 0.00 0.03 0.00 +narco_analyse narco_analyse nom f s 0.01 0.00 0.01 0.00 +narcolepsie narcolepsie nom f s 0.21 0.00 0.21 0.00 +narcoleptique narcoleptique adj s 0.14 0.00 0.14 0.00 +narcose narcose nom f s 0.00 0.14 0.00 0.14 +narcotique narcotique nom m s 1.28 0.47 0.32 0.34 +narcotiques narcotique nom m p 1.28 0.47 0.96 0.14 +narcotrafic narcotrafic nom m s 0.01 0.00 0.01 0.00 +narcotrafiquants narcotrafiquant nom m p 0.19 0.00 0.19 0.00 +nard nard nom m s 0.02 0.14 0.01 0.14 +nards nard nom m p 0.02 0.14 0.01 0.00 +narghileh narghileh nom m s 0.00 0.07 0.00 0.07 +narghilé narghilé nom m s 0.01 0.14 0.01 0.14 +nargua narguer ver 1.93 6.55 0.00 0.14 ind:pas:3s; +narguaient narguer ver 1.93 6.55 0.00 0.34 ind:imp:3p; +narguais narguer ver 1.93 6.55 0.02 0.07 ind:imp:2s; +narguait narguer ver 1.93 6.55 0.02 0.88 ind:imp:3s; +narguant narguer ver 1.93 6.55 0.04 0.47 par:pre; +nargue narguer ver 1.93 6.55 0.88 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +narguent narguer ver 1.93 6.55 0.48 0.20 ind:pre:3p; +narguer narguer ver 1.93 6.55 0.41 3.38 inf; +nargues narguer ver 1.93 6.55 0.01 0.00 ind:pre:2s; +narguez narguer ver 1.93 6.55 0.02 0.07 ind:pre:2p; +narguilé narguilé nom m s 0.08 1.01 0.07 0.81 +narguilés narguilé nom m p 0.08 1.01 0.01 0.20 +narguons narguer ver 1.93 6.55 0.01 0.00 imp:pre:1p; +nargué narguer ver m s 1.93 6.55 0.05 0.07 par:pas; +narguées narguer ver f p 1.93 6.55 0.00 0.07 par:pas; +narine narine nom f s 3.41 25.81 1.11 5.14 +narines narine nom f p 3.41 25.81 2.30 20.68 +narquois narquois adj m 0.26 6.35 0.12 4.73 +narquoise narquois adj f s 0.26 6.35 0.14 1.42 +narquoisement narquoisement adv 0.00 0.27 0.00 0.27 +narquoiserie narquoiserie nom f s 0.00 0.07 0.00 0.07 +narquoises narquois adj f p 0.26 6.35 0.00 0.20 +narra narrer ver 0.24 2.30 0.00 0.20 ind:pas:3s; +narrai narrer ver 0.24 2.30 0.00 0.07 ind:pas:1s; +narrait narrer ver 0.24 2.30 0.01 0.61 ind:imp:3s; +narrant narrer ver 0.24 2.30 0.02 0.27 par:pre; +narrateur narrateur nom m s 0.61 2.36 0.43 2.23 +narratif narratif adj m s 0.20 0.34 0.05 0.34 +narratifs narratif adj m p 0.20 0.34 0.05 0.00 +narration narration nom f s 0.44 2.43 0.43 2.30 +narrations narration nom f p 0.44 2.43 0.01 0.14 +narrative narratif adj f s 0.20 0.34 0.07 0.00 +narratives narratif adj f p 0.20 0.34 0.04 0.00 +narratrice narrateur nom f s 0.61 2.36 0.17 0.14 +narratrices narratrice nom f p 0.14 0.00 0.14 0.00 +narre narrer ver 0.24 2.30 0.01 0.34 ind:pre:1s;ind:pre:3s; +narrer narrer ver 0.24 2.30 0.16 0.47 inf; +narré narrer ver m s 0.24 2.30 0.03 0.20 par:pas; +narrée narrer ver f s 0.24 2.30 0.00 0.07 par:pas; +narrées narrer ver f p 0.24 2.30 0.00 0.07 par:pas; +narthex narthex nom m 0.01 0.61 0.01 0.61 +narval narval nom m s 0.04 0.68 0.04 0.61 +narvals narval nom m p 0.04 0.68 0.00 0.07 +nasal nasal adj m s 1.56 2.50 0.60 0.47 +nasale nasal adj f s 1.56 2.50 0.67 1.08 +nasales nasal adj f p 1.56 2.50 0.24 0.81 +nasard nasard nom m s 0.00 0.14 0.00 0.07 +nasardes nasard nom f p 0.00 0.14 0.00 0.07 +nasaux nasal adj m p 1.56 2.50 0.05 0.14 +nasdaq nasdaq nom m s 0.14 0.00 0.14 0.00 +nase nase adj s 1.84 0.74 1.54 0.68 +naseau naseau nom m s 0.35 5.20 0.14 0.20 +naseaux naseau nom m p 0.35 5.20 0.21 5.00 +nases nase nom m p 1.06 0.20 0.43 0.00 +nasilla nasiller ver 0.01 1.22 0.00 0.07 ind:pas:3s; +nasillaient nasiller ver 0.01 1.22 0.00 0.07 ind:imp:3p; +nasillait nasiller ver 0.01 1.22 0.00 0.41 ind:imp:3s; +nasillant nasiller ver 0.01 1.22 0.00 0.34 par:pre; +nasillard nasillard adj m s 0.02 2.64 0.01 0.54 +nasillarde nasillard adj f s 0.02 2.64 0.01 1.42 +nasillardes nasillard adj f p 0.02 2.64 0.00 0.27 +nasillards nasillard adj m p 0.02 2.64 0.00 0.41 +nasille nasiller ver 0.01 1.22 0.01 0.14 ind:pre:1s;ind:pre:3s; +nasillement nasillement nom m s 0.00 0.41 0.00 0.41 +nasillent nasiller ver 0.01 1.22 0.00 0.07 ind:pre:3p; +nasiller nasiller ver 0.01 1.22 0.00 0.14 inf; +nasillonne nasillonner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +nasique nasique nom m s 0.50 0.00 0.50 0.00 +nasopharynx nasopharynx nom m 0.03 0.00 0.03 0.00 +nasse nasse nom f s 0.54 1.82 0.39 1.22 +nasses nasse nom f p 0.54 1.82 0.14 0.61 +nassérien nassérien adj m s 0.00 0.07 0.00 0.07 +natal natal adj m s 5.71 13.92 2.54 5.47 +natale natal adj f s 5.71 13.92 3.15 7.91 +natales natal adj f p 5.71 13.92 0.02 0.41 +natalité natalité nom f s 0.20 0.54 0.20 0.54 +natals natal adj m p 5.71 13.92 0.00 0.14 +natation natation nom f s 3.59 1.22 3.59 1.22 +natatoire natatoire adj f s 0.01 0.07 0.01 0.07 +natif natif adj m s 0.58 3.65 0.44 1.82 +natifs natif nom m p 0.52 0.68 0.36 0.27 +nation nation nom f s 24.80 47.23 16.97 31.96 +national_socialisme national_socialisme nom m s 0.58 2.03 0.58 2.03 +national_socialiste national_socialiste adj m s 0.23 0.14 0.23 0.14 +national national adj m s 34.61 98.04 12.23 42.70 +nationale_socialiste nationale_socialiste adj f s 0.00 0.14 0.00 0.14 +nationale national adj f s 34.61 98.04 18.59 48.18 +nationalement nationalement adv 0.00 0.14 0.00 0.14 +nationales national adj f p 34.61 98.04 1.43 4.39 +nationalisait nationaliser ver 0.06 0.68 0.00 0.07 ind:imp:3s; +nationalisation nationalisation nom f s 0.11 1.08 0.01 0.61 +nationalisations nationalisation nom f p 0.11 1.08 0.10 0.47 +nationalisent nationaliser ver 0.06 0.68 0.00 0.07 ind:pre:3p; +nationaliser nationaliser ver 0.06 0.68 0.01 0.07 inf; +nationalisme nationalisme nom m s 2.75 3.11 2.75 3.11 +nationalisons nationaliser ver 0.06 0.68 0.00 0.07 imp:pre:1p; +nationaliste nationaliste adj s 1.65 2.57 1.16 1.76 +nationalistes nationaliste nom p 1.45 1.55 1.40 1.22 +nationalisé nationaliser ver m s 0.06 0.68 0.01 0.07 par:pas; +nationalisée nationaliser ver f s 0.06 0.68 0.01 0.14 par:pas; +nationalisées nationaliser ver f p 0.06 0.68 0.01 0.20 par:pas; +nationalisés nationaliser ver m p 0.06 0.68 0.02 0.00 par:pas; +nationalité nationalité nom f s 3.21 6.89 2.77 5.74 +nationalités nationalité nom f p 3.21 6.89 0.43 1.15 +nationaux_socialistes nationaux_socialistes adj p 0.00 0.14 0.00 0.14 +nationaux national adj m p 34.61 98.04 2.35 2.77 +nations nation nom f p 24.80 47.23 7.83 15.27 +native natif adj f s 0.58 3.65 0.06 1.28 +natives natif adj f p 0.58 3.65 0.01 0.20 +nativité nativité nom f s 0.14 1.35 0.14 1.28 +nativités nativité nom f p 0.14 1.35 0.00 0.07 +natron natron nom m s 0.04 0.00 0.04 0.00 +natrum natrum nom m s 0.01 0.00 0.01 0.00 +natrémie natrémie nom f s 0.03 0.00 0.03 0.00 +natta natter ver 0.11 1.01 0.00 0.07 ind:pas:3s; +natte natte nom f s 1.75 10.20 0.88 4.26 +natter natter ver 0.11 1.01 0.01 0.14 inf; +nattes natte nom f p 1.75 10.20 0.87 5.95 +nattier nattier nom m s 0.00 0.14 0.00 0.14 +natté natter ver m s 0.11 1.01 0.00 0.07 par:pas; +nattée natter ver f s 0.11 1.01 0.00 0.20 par:pas; +nattées natter ver f p 0.11 1.01 0.00 0.07 par:pas; +nattés natter ver m p 0.11 1.01 0.10 0.41 par:pas; +naturalisation naturalisation nom f s 0.06 1.01 0.06 1.01 +naturaliser naturaliser ver 0.34 0.68 0.05 0.34 inf; +naturalisme naturalisme nom m s 0.40 0.27 0.40 0.27 +naturaliste naturaliste nom s 0.69 0.68 0.51 0.41 +naturalistes naturaliste nom p 0.69 0.68 0.18 0.27 +naturalisé naturaliser ver m s 0.34 0.68 0.29 0.27 par:pas; +naturalisée naturalisé adj f s 0.04 0.47 0.01 0.00 +naturalisés naturalisé adj m p 0.04 0.47 0.01 0.20 +nature nature nom f s 60.20 95.88 59.80 93.45 +naturel naturel adj m s 39.78 75.68 19.01 38.65 +naturelle naturel adj f s 39.78 75.68 14.02 24.86 +naturellement naturellement adv 21.05 71.96 21.05 71.96 +naturelles naturel adj f p 39.78 75.68 3.90 6.28 +naturels naturel adj m p 39.78 75.68 2.86 5.88 +natures nature nom f p 60.20 95.88 0.40 2.43 +naturisme naturisme nom m s 0.03 0.14 0.03 0.14 +naturiste naturiste adj m s 0.20 0.41 0.18 0.20 +naturistes naturiste nom p 0.03 0.20 0.03 0.14 +naturlich naturlich adv 0.27 0.14 0.27 0.14 +naturopathe naturopathe nom s 0.03 0.00 0.03 0.00 +naufrage naufrage nom m s 3.04 11.62 2.76 10.61 +naufrageant naufrager ver 0.21 0.88 0.00 0.07 par:pre; +naufragent naufrager ver 0.21 0.88 0.00 0.07 ind:pre:3p; +naufrager naufrager ver 0.21 0.88 0.19 0.07 inf; +naufrages naufrage nom m p 3.04 11.62 0.28 1.01 +naufrageur naufrageur nom m s 0.02 0.20 0.00 0.07 +naufrageurs naufrageur nom m p 0.02 0.20 0.02 0.07 +naufrageuse naufrageur nom f s 0.02 0.20 0.00 0.07 +naufragé naufragé nom m s 0.69 3.45 0.30 2.03 +naufragée naufragé nom f s 0.69 3.45 0.00 0.41 +naufragées naufragé adj f p 0.06 1.08 0.00 0.07 +naufragés naufragé nom m p 0.69 3.45 0.38 1.01 +nauséabond nauséabond adj m s 0.63 2.97 0.34 0.95 +nauséabonde nauséabond adj f s 0.63 2.97 0.17 0.88 +nauséabondes nauséabond adj f p 0.63 2.97 0.05 0.95 +nauséabonds nauséabond adj m p 0.63 2.97 0.06 0.20 +nausée nausée nom f s 6.51 10.00 4.75 7.91 +nausées nausée nom f p 6.51 10.00 1.76 2.09 +nauséeuse nauséeux adj f s 0.55 2.03 0.20 0.74 +nauséeuses nauséeux adj f p 0.55 2.03 0.14 0.14 +nauséeux nauséeux adj m 0.55 2.03 0.21 1.15 +nautes naute nom m p 0.00 0.07 0.00 0.07 +nautile nautile nom m s 0.05 0.00 0.05 0.00 +nautilus nautilus nom m 1.26 0.14 1.26 0.14 +nautique nautique adj s 1.89 2.09 0.71 1.15 +nautiques nautique adj p 1.89 2.09 1.17 0.95 +nautonier nautonier nom m s 0.00 0.27 0.00 0.07 +nautoniers nautonier nom m p 0.00 0.27 0.00 0.20 +navaja navaja nom f s 0.15 0.34 0.15 0.27 +navajas navaja nom f p 0.15 0.34 0.00 0.07 +navajo navajo adj s 0.21 0.14 0.18 0.00 +navajos navajo nom p 0.13 0.00 0.09 0.00 +naval naval adj m s 4.37 8.78 2.08 1.08 +navale naval adj f s 4.37 8.78 1.56 3.45 +navales naval adj f p 4.37 8.78 0.27 3.31 +navals naval adj m p 4.37 8.78 0.46 0.95 +navarin navarin nom m s 0.10 0.27 0.10 0.20 +navarins navarin nom m p 0.10 0.27 0.00 0.07 +navarrais navarrais nom m 0.10 0.61 0.10 0.61 +nave nave nom f s 0.02 0.74 0.02 0.74 +navel navel nom f s 0.03 0.00 0.03 0.00 +navet navet nom m s 3.16 2.77 1.25 0.88 +navets navet nom m p 3.16 2.77 1.90 1.89 +navette navette nom f s 9.35 3.65 8.44 3.04 +navettes navette nom f p 9.35 3.65 0.91 0.61 +navicert navicert nom m 0.00 0.07 0.00 0.07 +navigabilité navigabilité nom f s 0.01 0.00 0.01 0.00 +navigable navigable adj m s 0.07 0.27 0.02 0.14 +navigables navigable adj f p 0.07 0.27 0.04 0.14 +navigant navigant adj m s 0.19 0.41 0.16 0.41 +navigante navigant adj f s 0.19 0.41 0.03 0.00 +navigateur navigateur nom m s 2.23 3.78 1.95 1.89 +navigateurs navigateur nom m p 2.23 3.78 0.25 1.82 +navigation navigation nom f s 3.25 5.41 3.25 5.07 +navigations navigation nom f p 3.25 5.41 0.00 0.34 +navigatrice navigateur nom f s 2.23 3.78 0.04 0.07 +navigua naviguer ver 8.71 11.42 0.04 0.27 ind:pas:3s; +naviguaient naviguer ver 8.71 11.42 0.02 1.01 ind:imp:3p; +naviguais naviguer ver 8.71 11.42 0.12 0.27 ind:imp:1s; +naviguait naviguer ver 8.71 11.42 0.20 1.82 ind:imp:3s; +naviguant naviguer ver 8.71 11.42 0.07 1.08 par:pre; +navigue naviguer ver 8.71 11.42 2.18 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +naviguent naviguer ver 8.71 11.42 0.14 0.61 ind:pre:3p; +naviguer naviguer ver 8.71 11.42 3.33 2.57 inf; +naviguera naviguer ver 8.71 11.42 0.10 0.00 ind:fut:3s; +naviguerai naviguer ver 8.71 11.42 0.04 0.00 ind:fut:1s; +navigueraient naviguer ver 8.71 11.42 0.00 0.07 cnd:pre:3p; +naviguerons naviguer ver 8.71 11.42 0.25 0.00 ind:fut:1p; +navigues naviguer ver 8.71 11.42 0.02 0.00 ind:pre:2s; +naviguez naviguer ver 8.71 11.42 0.56 0.00 imp:pre:2p;ind:pre:2p; +naviguiez naviguer ver 8.71 11.42 0.14 0.00 ind:imp:2p; +naviguions naviguer ver 8.71 11.42 0.00 0.41 ind:imp:1p; +naviguons naviguer ver 8.71 11.42 0.19 0.14 imp:pre:1p;ind:pre:1p; +naviguèrent naviguer ver 8.71 11.42 0.02 0.00 ind:pas:3p; +navigué naviguer ver m s 8.71 11.42 1.29 1.35 par:pas; +navire_citerne navire_citerne nom m s 0.14 0.00 0.01 0.00 +navire_hôpital navire_hôpital nom m s 0.04 0.14 0.04 0.14 +navire navire nom m s 21.98 50.20 15.83 28.04 +navire_citerne navire_citerne nom m p 0.14 0.00 0.14 0.00 +navire_école navire_école nom m p 0.00 0.07 0.00 0.07 +navires navire nom m p 21.98 50.20 6.14 22.16 +navra navrer ver 18.68 4.19 0.00 0.20 ind:pas:3s; +navrait navrer ver 18.68 4.19 0.00 0.34 ind:imp:3s; +navrance navrance nom f s 0.00 0.07 0.00 0.07 +navrant navrant adj m s 0.63 2.70 0.51 0.74 +navrante navrant adj f s 0.63 2.70 0.09 1.01 +navrantes navrant adj f p 0.63 2.70 0.02 0.54 +navrants navrant adj m p 0.63 2.70 0.01 0.41 +navre navrer ver 18.68 4.19 0.29 0.47 imp:pre:2s;ind:pre:3s; +navrer navrer ver 18.68 4.19 0.00 0.07 inf; +navres navrer ver 18.68 4.19 0.00 0.07 ind:pre:2s; +navrez navrer ver 18.68 4.19 0.01 0.00 ind:pre:2p; +navré navrer ver m s 18.68 4.19 12.01 1.42 par:pas; +navrée navrer ver f s 18.68 4.19 6.01 0.81 par:pas; +navrées navrer ver f p 18.68 4.19 0.03 0.07 par:pas; +navrés navrer ver m p 18.68 4.19 0.31 0.41 par:pas; +nay nay nom f s 0.01 0.00 0.01 0.00 +nazaréen nazaréen nom m s 0.48 0.14 0.48 0.14 +naze naze adj s 4.82 1.55 4.20 1.55 +nazes naze nom m p 3.27 0.34 1.56 0.07 +nazi nazi nom m s 14.76 7.50 4.13 0.74 +nazie nazi adj f s 7.11 7.70 1.27 1.62 +nazies nazi adj f p 7.11 7.70 0.53 0.88 +nazillons nazillon nom m p 0.01 0.07 0.01 0.07 +nazis nazi nom m p 14.76 7.50 9.81 6.76 +nazisme nazisme nom m s 0.63 1.62 0.63 1.62 +ne_varietur ne_varietur adv 0.00 0.14 0.00 0.14 +ne ne adv_sup 22287.83 13841.89 13357.03 7752.09 +nec nec nom s 0.64 0.27 0.64 0.27 +neck neck nom m s 0.21 0.00 0.21 0.00 +nectar nectar nom m s 2.28 0.81 2.28 0.81 +nectarine nectarine nom f s 0.14 0.00 0.12 0.00 +nectarines nectarine nom f p 0.14 0.00 0.01 0.00 +nef nef nom f s 0.55 6.89 0.41 6.49 +nefs nef nom f p 0.55 6.89 0.13 0.41 +negro_spiritual negro_spiritual nom m s 0.01 0.14 0.01 0.07 +negro_spiritual negro_spiritual nom m p 0.01 0.14 0.00 0.07 +negro negro nom s 0.07 0.07 0.07 0.07 +neige neige nom f s 39.34 80.88 37.52 74.93 +neigeait neiger ver 7.87 3.92 0.89 1.22 ind:imp:3s; +neiger neiger ver 7.87 3.92 0.59 0.61 inf; +neigera neiger ver 7.87 3.92 0.21 0.07 ind:fut:3s; +neigerait neiger ver 7.87 3.92 0.02 0.00 cnd:pre:3s; +neiges neige nom f p 39.34 80.88 1.82 5.95 +neigeuse neigeux adj f s 0.30 4.12 0.04 1.35 +neigeuses neigeux adj f p 0.30 4.12 0.03 1.22 +neigeux neigeux adj m 0.30 4.12 0.23 1.55 +neigé neiger ver m s 7.87 3.92 0.66 0.54 par:pas; +nem nem nom m s 0.62 0.14 0.33 0.07 +nemrod nemrod nom m s 0.00 0.07 0.00 0.07 +nems nem nom m p 0.62 0.14 0.29 0.07 +nenni nenni adv 0.52 0.34 0.52 0.34 +nephtys nephtys nom m 0.00 0.07 0.00 0.07 +neptunienne neptunien adj f s 0.06 0.00 0.03 0.00 +neptuniens neptunien adj m p 0.06 0.00 0.04 0.00 +nerf nerf nom m s 30.12 30.47 8.09 3.92 +nerfs nerf nom m p 30.12 30.47 22.03 26.55 +nerprun nerprun nom m s 0.00 0.20 0.00 0.14 +nerpruns nerprun nom m p 0.00 0.20 0.00 0.07 +nerva nerver ver 0.35 0.07 0.34 0.00 ind:pas:3s; +nerver nerver ver 0.35 0.07 0.02 0.00 inf; +nerveuse nerveux adj f s 41.91 35.81 8.50 10.88 +nerveusement nerveusement adv 0.38 7.36 0.38 7.36 +nerveuses nerveux adj f p 41.91 35.81 0.89 3.11 +nerveux nerveux adj m 41.91 35.81 32.52 21.82 +nervi nervi nom m s 0.05 0.81 0.05 0.47 +nervis nervi nom m p 0.05 0.81 0.00 0.34 +nervosité nervosité nom f s 1.58 5.07 1.58 4.93 +nervosités nervosité nom f p 1.58 5.07 0.00 0.14 +nervé nerver ver m s 0.35 0.07 0.00 0.07 par:pas; +nervure nervure nom f s 0.01 3.24 0.00 0.54 +nervures nervure nom f p 0.01 3.24 0.01 2.70 +nervuré nervurer ver m s 0.01 0.41 0.00 0.20 par:pas; +nervurée nervurer ver f s 0.01 0.41 0.01 0.14 par:pas; +nervurées nervurer ver f p 0.01 0.41 0.00 0.07 par:pas; +nescafé nescafé nom m s 0.20 0.81 0.20 0.81 +nestor nestor nom m s 0.01 0.00 0.01 0.00 +nestorianisme nestorianisme nom m s 0.00 0.34 0.00 0.34 +nestorien nestorien nom m s 0.00 2.09 0.00 1.35 +nestorienne nestorien adj f s 0.00 1.62 0.00 0.34 +nestoriennes nestorien adj f p 0.00 1.62 0.00 0.07 +nestoriens nestorien nom m p 0.00 2.09 0.00 0.74 +net net adj m s 19.95 40.20 14.31 17.09 +nets net adj m p 19.95 40.20 0.94 4.19 +nette net adj f s 19.95 40.20 3.91 14.86 +nettement nettement adv 3.17 20.34 3.17 20.34 +nettes net adj f p 19.95 40.20 0.79 4.05 +netteté netteté nom f s 0.61 9.12 0.61 9.12 +nettoie nettoyer ver 61.93 28.11 12.09 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +nettoiement nettoiement nom m s 0.03 0.27 0.03 0.27 +nettoient nettoyer ver 61.93 28.11 0.67 0.81 ind:pre:3p; +nettoiera nettoyer ver 61.93 28.11 0.33 0.20 ind:fut:3s; +nettoierai nettoyer ver 61.93 28.11 0.75 0.07 ind:fut:1s; +nettoieraient nettoyer ver 61.93 28.11 0.02 0.00 cnd:pre:3p; +nettoierais nettoyer ver 61.93 28.11 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +nettoierait nettoyer ver 61.93 28.11 0.13 0.07 cnd:pre:3s; +nettoieras nettoyer ver 61.93 28.11 0.33 0.00 ind:fut:2s; +nettoierez nettoyer ver 61.93 28.11 0.04 0.14 ind:fut:2p; +nettoierons nettoyer ver 61.93 28.11 0.13 0.00 ind:fut:1p; +nettoies nettoyer ver 61.93 28.11 1.42 0.14 ind:pre:2s;sub:pre:2s; +nettoya nettoyer ver 61.93 28.11 0.02 1.28 ind:pas:3s; +nettoyable nettoyable adj s 0.01 0.07 0.01 0.00 +nettoyables nettoyable adj p 0.01 0.07 0.00 0.07 +nettoyage nettoyage nom m s 7.50 6.35 7.48 5.88 +nettoyages nettoyage nom m p 7.50 6.35 0.02 0.47 +nettoyai nettoyer ver 61.93 28.11 0.00 0.14 ind:pas:1s; +nettoyaient nettoyer ver 61.93 28.11 0.07 0.95 ind:imp:3p; +nettoyais nettoyer ver 61.93 28.11 1.06 0.14 ind:imp:1s;ind:imp:2s; +nettoyait nettoyer ver 61.93 28.11 1.02 2.57 ind:imp:3s; +nettoyant nettoyer ver 61.93 28.11 0.64 1.01 par:pre; +nettoyante nettoyant adj f s 0.10 0.07 0.01 0.00 +nettoyants nettoyant nom m p 0.35 0.07 0.02 0.07 +nettoyer nettoyer ver 61.93 28.11 30.26 10.95 inf; +nettoyeur nettoyeur nom m s 2.51 0.68 1.24 0.34 +nettoyeurs nettoyeur nom m p 2.51 0.68 0.91 0.20 +nettoyeuse nettoyeur nom f s 2.51 0.68 0.36 0.07 +nettoyeuses nettoyeur nom f p 2.51 0.68 0.00 0.07 +nettoyez nettoyer ver 61.93 28.11 2.88 0.00 imp:pre:2p;ind:pre:2p; +nettoyiez nettoyer ver 61.93 28.11 0.14 0.07 ind:imp:2p; +nettoyons nettoyer ver 61.93 28.11 0.46 0.14 imp:pre:1p;ind:pre:1p; +nettoyât nettoyer ver 61.93 28.11 0.00 0.20 sub:imp:3s; +nettoyèrent nettoyer ver 61.93 28.11 0.01 0.07 ind:pas:3p; +nettoyé nettoyer ver m s 61.93 28.11 7.72 4.19 par:pas; +nettoyée nettoyer ver f s 61.93 28.11 0.89 1.08 par:pas; +nettoyées nettoyer ver f p 61.93 28.11 0.29 0.41 par:pas; +nettoyés nettoyer ver m p 61.93 28.11 0.45 0.88 par:pas; +neuf neuf adj_num 59.45 113.18 32.05 56.01 +neufs neuf adj m p 59.45 113.18 3.50 11.89 +neuneu neuneu adj f s 0.49 0.07 0.49 0.07 +neural neural adj m s 1.21 0.00 0.79 0.00 +neurale neural adj f s 1.21 0.00 0.32 0.00 +neurales neural adj f p 1.21 0.00 0.10 0.00 +neurasthénie neurasthénie nom f s 0.14 1.28 0.14 1.28 +neurasthénique neurasthénique adj s 0.71 1.15 0.70 0.81 +neurasthéniques neurasthénique nom p 0.10 0.20 0.10 0.07 +neurinome neurinome nom m s 0.01 0.00 0.01 0.00 +neurobiologie neurobiologie nom f s 0.01 0.00 0.01 0.00 +neurobiologiste neurobiologiste nom s 0.02 0.00 0.02 0.00 +neurochimie neurochimie nom f s 0.03 0.00 0.03 0.00 +neurochimique neurochimique adj s 0.01 0.00 0.01 0.00 +neurochirurgie neurochirurgie nom f s 0.53 0.00 0.53 0.00 +neurochirurgien neurochirurgien nom m s 0.85 0.00 0.79 0.00 +neurochirurgienne neurochirurgien nom f s 0.85 0.00 0.06 0.00 +neurofibromatose neurofibromatose nom f s 0.05 0.00 0.05 0.00 +neuroleptique neuroleptique nom m s 0.07 0.20 0.01 0.07 +neuroleptiques neuroleptique nom m p 0.07 0.20 0.06 0.14 +neurolinguistique neurolinguistique nom f s 0.01 0.00 0.01 0.00 +neurologie neurologie nom f s 0.93 0.00 0.93 0.00 +neurologique neurologique adj s 1.71 0.00 1.26 0.00 +neurologiquement neurologiquement adv 0.02 0.00 0.02 0.00 +neurologiques neurologique adj p 1.71 0.00 0.45 0.00 +neurologiste neurologiste nom s 0.09 0.00 0.09 0.00 +neurologue neurologue nom s 1.56 0.34 1.34 0.34 +neurologues neurologue nom p 1.56 0.34 0.22 0.00 +neuromusculaire neuromusculaire adj m s 0.11 0.00 0.11 0.00 +neuronal neuronal adj m s 0.42 0.00 0.19 0.00 +neuronale neuronal adj f s 0.42 0.00 0.14 0.00 +neuronales neuronal adj f p 0.42 0.00 0.03 0.00 +neuronaux neuronal adj m p 0.42 0.00 0.06 0.00 +neurone neurone nom m s 1.77 1.15 0.38 0.07 +neurones neurone nom m p 1.77 1.15 1.39 1.08 +neuronique neuronique adj f s 0.03 0.00 0.03 0.00 +neuropathie neuropathie nom f s 0.07 0.00 0.07 0.00 +neuropathologie neuropathologie nom f s 0.01 0.00 0.01 0.00 +neuropeptide neuropeptide nom m s 0.01 0.00 0.01 0.00 +neurophysiologie neurophysiologie nom f s 0.02 0.07 0.02 0.07 +neuroplégique neuroplégique adj s 0.02 0.00 0.02 0.00 +neuropsychiatrie neuropsychiatrie nom f s 0.03 0.00 0.03 0.00 +neuropsychologiques neuropsychologique adj p 0.11 0.00 0.11 0.00 +neuropsychologue neuropsychologue nom s 0.02 0.00 0.02 0.00 +neuroscience neuroscience nom f s 0.04 0.00 0.04 0.00 +neurotoxine neurotoxine nom f s 0.05 0.00 0.05 0.00 +neurotoxique neurotoxique adj s 0.14 0.00 0.14 0.00 +neurotransmetteur neurotransmetteur nom m s 0.36 0.00 0.05 0.00 +neurotransmetteurs neurotransmetteur nom m p 0.36 0.00 0.31 0.00 +neutralisaient neutraliser ver 5.31 2.97 0.01 0.14 ind:imp:3p; +neutralisait neutraliser ver 5.31 2.97 0.05 0.07 ind:imp:3s; +neutralisant neutraliser ver 5.31 2.97 0.06 0.20 par:pre; +neutralisante neutralisant adj f s 0.04 0.00 0.02 0.00 +neutralisateur neutralisateur adj m s 0.01 0.07 0.01 0.07 +neutralisation neutralisation nom f s 0.13 1.08 0.13 1.08 +neutralise neutraliser ver 5.31 2.97 0.53 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +neutralisent neutraliser ver 5.31 2.97 0.29 0.00 ind:pre:3p; +neutraliser neutraliser ver 5.31 2.97 2.31 1.28 inf; +neutralisera neutraliser ver 5.31 2.97 0.09 0.00 ind:fut:3s; +neutraliserai neutraliser ver 5.31 2.97 0.02 0.00 ind:fut:1s; +neutraliseraient neutraliser ver 5.31 2.97 0.00 0.07 cnd:pre:3p; +neutraliserait neutraliser ver 5.31 2.97 0.03 0.00 cnd:pre:3s; +neutraliseront neutraliser ver 5.31 2.97 0.04 0.00 ind:fut:3p; +neutralisez neutraliser ver 5.31 2.97 0.19 0.00 imp:pre:2p;ind:pre:2p; +neutralisiez neutraliser ver 5.31 2.97 0.01 0.00 ind:imp:2p; +neutralisons neutraliser ver 5.31 2.97 0.03 0.00 imp:pre:1p;ind:pre:1p; +neutraliste neutraliste nom s 0.16 0.00 0.16 0.00 +neutralisé neutraliser ver m s 5.31 2.97 1.02 0.34 par:pas; +neutralisée neutraliser ver f s 5.31 2.97 0.29 0.27 par:pas; +neutralisées neutraliser ver f p 5.31 2.97 0.02 0.14 par:pas; +neutralisés neutraliser ver m p 5.31 2.97 0.31 0.20 par:pas; +neutralité neutralité nom f s 0.46 2.97 0.46 2.97 +neutre neutre adj s 5.15 11.76 4.32 10.20 +neutres neutre adj p 5.15 11.76 0.83 1.55 +neutrino neutrino nom m s 0.55 0.00 0.15 0.00 +neutrinos neutrino nom m p 0.55 0.00 0.40 0.00 +neutron neutron nom m s 0.68 0.54 0.46 0.14 +neutronique neutronique adj m s 0.01 0.00 0.01 0.00 +neutrons neutron nom m p 0.68 0.54 0.23 0.41 +neutropénie neutropénie nom f s 0.04 0.00 0.04 0.00 +neuvaine neuvaine nom f s 0.38 0.61 0.14 0.14 +neuvaines neuvaine nom f p 0.38 0.61 0.25 0.47 +neuve neuf adj f s 59.45 113.18 10.30 22.43 +neuves neuf adj f p 59.45 113.18 5.02 8.72 +neuvième neuvième adj 1.09 1.49 1.09 1.42 +neuvièmes neuvième nom p 0.55 1.08 0.01 0.00 +neveu neveu nom m s 22.90 26.35 22.90 13.92 +neveux neveux nom m p 2.13 3.72 2.13 3.72 +new_yorkais new_yorkais adj m 0.00 1.42 0.00 0.95 +new_yorkais new_yorkais adj f s 0.00 1.42 0.00 0.34 +new_yorkais new_yorkais adj f p 0.00 1.42 0.00 0.14 +new_wave new_wave nom f 0.00 0.07 0.00 0.07 +new new adj m s 0.74 3.51 0.74 3.51 +news new nom m p 0.08 0.20 0.08 0.20 +ney ney nom m s 1.68 0.14 1.68 0.14 +nez nez nom m 75.18 177.64 75.18 177.64 +ni ni con 377.64 662.36 377.64 662.36 +nia nier ver 24.86 23.58 0.13 1.01 ind:pas:3s; +niable niable adj s 0.00 0.61 0.00 0.61 +niai nier ver 24.86 23.58 0.00 0.20 ind:pas:1s; +niaient nier ver 24.86 23.58 0.03 0.54 ind:imp:3p; +niais niais adj m 1.19 5.68 1.11 3.51 +niaise niais nom f s 0.71 1.49 0.14 0.41 +niaisement niaisement adv 0.11 0.68 0.11 0.68 +niaiser niaiser ver 0.30 0.00 0.17 0.00 inf; +niaiserie niaiserie nom f s 0.89 3.51 0.16 1.89 +niaiseries niaiserie nom f p 0.89 3.51 0.73 1.62 +niaises niaise nom f p 0.11 0.00 0.07 0.00 +niaiseuse niaiseux adj f s 0.05 0.07 0.01 0.00 +niaiseux niaiseux adj m p 0.05 0.07 0.04 0.07 +niaisé niaiser ver m s 0.30 0.00 0.14 0.00 par:pas; +niait nier ver 24.86 23.58 0.11 2.43 ind:imp:3s; +niakoué niakoué nom s 0.07 0.14 0.03 0.07 +niakoués niakoué nom p 0.07 0.14 0.04 0.07 +niant nier ver 24.86 23.58 0.35 0.95 par:pre; +nib nib adv 0.16 2.03 0.16 2.03 +nibard nibard nom m s 1.60 0.68 0.13 0.07 +nibards nibard nom m p 1.60 0.68 1.47 0.61 +nibergue nibergue adj 0.00 0.07 0.00 0.07 +nicaraguayen nicaraguayen adj m s 0.06 0.00 0.04 0.00 +nicaraguayenne nicaraguayen nom f s 0.07 0.00 0.02 0.00 +nicaraguayens nicaraguayen nom m p 0.07 0.00 0.05 0.00 +nice nice nom s 2.00 0.41 2.00 0.41 +nicet nicet adj m s 0.00 0.14 0.00 0.14 +nicha nicher ver 1.52 5.61 0.01 0.07 ind:pas:3s; +nichaient nicher ver 1.52 5.61 0.12 0.34 ind:imp:3p; +nichait nicher ver 1.52 5.61 0.10 0.27 ind:imp:3s; +nichan nichan nom m s 0.00 0.07 0.00 0.07 +nichant nicher ver 1.52 5.61 0.00 0.34 par:pre; +niche niche nom f s 2.27 9.39 2.17 6.35 +nichent nicher ver 1.52 5.61 0.16 0.27 ind:pre:3p; +nicher nicher ver 1.52 5.61 0.35 1.62 inf; +niches niche nom f p 2.27 9.39 0.10 3.04 +nicheurs nicheur adj m p 0.00 0.07 0.00 0.07 +nichions nicher ver 1.52 5.61 0.00 0.07 ind:imp:1p; +nichon nichon nom m s 9.85 6.35 0.67 0.54 +nichonnée nichonnée adj f s 0.00 0.27 0.00 0.14 +nichonnées nichonnée adj f p 0.00 0.27 0.00 0.14 +nichons nichon nom m p 9.85 6.35 9.18 5.81 +nichèrent nicher ver 1.52 5.61 0.00 0.07 ind:pas:3p; +niché nicher ver m s 1.52 5.61 0.23 0.61 par:pas; +nichée nicher ver f s 1.52 5.61 0.14 0.61 par:pas; +nichées nichée nom f p 0.07 1.22 0.01 0.00 +nichés nicher ver m p 1.52 5.61 0.02 0.27 par:pas; +nickel nickel adj 2.78 1.28 2.78 1.28 +nickelle nickeler ver 0.00 0.54 0.00 0.07 ind:pre:3s; +nickels nickel nom m p 1.50 1.55 0.09 0.34 +nickelé nickelé adj m s 0.35 2.03 0.02 0.81 +nickelée nickelé adj f s 0.35 2.03 0.01 0.54 +nickelées nickelé adj f p 0.35 2.03 0.00 0.07 +nickelés nickelé adj m p 0.35 2.03 0.32 0.61 +nicotine nicotine nom f s 1.66 1.28 1.66 1.28 +nicotinisé nicotiniser ver m s 0.00 0.14 0.00 0.07 par:pas; +nicotinisés nicotiniser ver m p 0.00 0.14 0.00 0.07 par:pas; +nictation nictation nom f s 0.00 0.07 0.00 0.07 +nictitant nictitant adj m s 0.01 0.07 0.00 0.07 +nictitante nictitant adj f s 0.01 0.07 0.01 0.00 +nid_de_poule nid_de_poule nom m s 0.20 0.20 0.14 0.07 +nid nid nom m s 12.25 18.85 11.07 14.59 +nidification nidification nom f s 0.04 0.07 0.04 0.07 +nidificatrices nidificateur nom f p 0.00 0.07 0.00 0.07 +nidifie nidifier ver 0.01 0.00 0.01 0.00 ind:pre:3s; +nid_de_poule nid_de_poule nom m p 0.20 0.20 0.06 0.14 +nids nid nom m p 12.25 18.85 1.19 4.26 +nie nier ver 24.86 23.58 7.37 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +nielle nielle nom s 0.00 0.14 0.00 0.14 +niellé nieller ver m s 0.00 0.07 0.00 0.07 par:pas; +nient nier ver 24.86 23.58 0.90 0.95 ind:pre:3p; +nier nier ver 24.86 23.58 7.76 10.68 inf; +niera nier ver 24.86 23.58 0.18 0.00 ind:fut:3s; +nierai nier ver 24.86 23.58 0.62 0.20 ind:fut:1s; +nierais nier ver 24.86 23.58 0.12 0.14 cnd:pre:1s; +nierait nier ver 24.86 23.58 0.19 0.07 cnd:pre:3s; +nieras nier ver 24.86 23.58 0.14 0.00 ind:fut:2s; +nierez nier ver 24.86 23.58 0.04 0.20 ind:fut:2p; +nieriez nier ver 24.86 23.58 0.01 0.00 cnd:pre:2p; +nierons nier ver 24.86 23.58 0.04 0.00 ind:fut:1p; +nieront nier ver 24.86 23.58 0.06 0.07 ind:fut:3p; +nies nier ver 24.86 23.58 2.96 0.20 ind:pre:2s; +niet niet ono 0.33 0.27 0.33 0.27 +nietzschéen nietzschéen nom m s 0.59 0.07 0.59 0.07 +nietzschéenne nietzschéen adj f s 0.79 0.74 0.41 0.20 +nietzschéennes nietzschéen adj f p 0.79 0.74 0.20 0.14 +niez nier ver 24.86 23.58 1.87 0.61 imp:pre:2p;ind:pre:2p; +nigaud nigaud nom m s 1.59 1.42 1.27 0.95 +nigaude nigaud adj f s 0.62 1.15 0.05 0.14 +nigaudement nigaudement adv 0.00 0.07 0.00 0.07 +nigauderie nigauderie nom f s 0.00 0.07 0.00 0.07 +nigauds nigaud nom m p 1.59 1.42 0.28 0.41 +nigelle nigel nom f s 0.01 0.00 0.01 0.00 +night_club night_club nom m s 1.31 0.88 1.16 0.61 +night_club night_club nom m p 1.31 0.88 0.10 0.27 +night_club night_club nom m s 1.31 0.88 0.05 0.00 +niguedouille niguedouille nom s 0.00 0.07 0.00 0.07 +nigérian nigérian adj m s 0.13 0.00 0.08 0.00 +nigérian nigérian nom m s 0.22 0.00 0.08 0.00 +nigériane nigérian adj f s 0.13 0.00 0.01 0.00 +nigérians nigérian nom m p 0.22 0.00 0.14 0.00 +nigérien nigérien adj m s 0.17 0.00 0.17 0.00 +nigériens nigérien nom m p 0.04 0.07 0.03 0.07 +nihil_obstat nihil_obstat adv 0.00 0.20 0.00 0.20 +nihilisme nihilisme nom m s 0.11 1.22 0.11 1.22 +nihiliste nihiliste adj s 0.09 0.74 0.09 0.54 +nihilistes nihiliste nom p 0.16 0.41 0.08 0.00 +nikkei nikkei nom m s 0.05 0.00 0.05 0.00 +nil nil nom s 0.05 0.07 0.05 0.07 +nim nim nom m s 1.78 0.07 1.78 0.07 +nimba nimber ver 0.17 2.50 0.00 0.07 ind:pas:3s; +nimbaient nimber ver 0.17 2.50 0.00 0.07 ind:imp:3p; +nimbait nimber ver 0.17 2.50 0.01 0.74 ind:imp:3s; +nimbant nimber ver 0.17 2.50 0.00 0.14 par:pre; +nimbe nimbe nom m s 0.01 0.88 0.01 0.81 +nimbent nimber ver 0.17 2.50 0.00 0.07 ind:pre:3p; +nimber nimber ver 0.17 2.50 0.00 0.14 inf; +nimbes nimbe nom m p 0.01 0.88 0.00 0.07 +nimbo_stratus nimbo_stratus nom m 0.14 0.00 0.14 0.00 +nimbo nimbo adv 0.00 0.07 0.00 0.07 +nimbostratus nimbostratus nom m 0.00 0.07 0.00 0.07 +nimbé nimber ver m s 0.17 2.50 0.14 0.47 par:pas; +nimbée nimber ver f s 0.17 2.50 0.02 0.61 par:pas; +nimbées nimber ver f p 0.17 2.50 0.00 0.14 par:pas; +nimbés nimber ver m p 0.17 2.50 0.00 0.07 par:pas; +nimbus nimbus nom m 0.09 0.20 0.09 0.20 +ninas ninas nom m 0.01 0.95 0.01 0.95 +niobium niobium nom m s 0.01 0.00 0.01 0.00 +niolo niolo nom m s 0.00 0.14 0.00 0.14 +nions nier ver 24.86 23.58 0.16 0.07 imp:pre:1p;ind:pre:1p; +nioulouque nioulouque adj s 0.00 0.07 0.00 0.07 +nippe nippe nom f s 0.14 2.43 0.01 0.07 +nipper nipper ver 0.38 0.88 0.04 0.14 inf; +nippes nippe nom f p 0.14 2.43 0.13 2.36 +nippez nipper ver 0.38 0.88 0.10 0.07 imp:pre:2p; +nippo nippo adv 0.03 0.00 0.03 0.00 +nippon nippon adj m s 0.34 1.22 0.33 0.41 +nippone nippon adj f s 0.34 1.22 0.01 0.14 +nippones nippon adj f p 0.34 1.22 0.00 0.34 +nipponne nipponne adj f s 0.14 0.00 0.14 0.00 +nippons nippon nom m p 0.06 0.41 0.04 0.41 +nippé nipper ver m s 0.38 0.88 0.02 0.07 par:pas; +nippée nipper ver f s 0.38 0.88 0.02 0.34 par:pas; +nippées nipper ver f p 0.38 0.88 0.10 0.20 par:pas; +niquait niquer ver 7.57 1.35 0.06 0.00 ind:imp:3s; +nique nique nom f s 1.56 0.61 1.56 0.61 +niquedouille niquedouille nom s 0.03 0.20 0.03 0.20 +niquent niquer ver 7.57 1.35 0.23 0.00 ind:pre:3p; +niquer niquer ver 7.57 1.35 3.27 0.74 inf; +niquera niquer ver 7.57 1.35 0.03 0.00 ind:fut:3s; +niquerait niquer ver 7.57 1.35 0.01 0.00 cnd:pre:3s; +niques niquer ver 7.57 1.35 0.11 0.00 ind:pre:2s; +niquez niquer ver 7.57 1.35 0.08 0.00 imp:pre:2p;ind:pre:2p; +niquons niquer ver 7.57 1.35 0.01 0.00 imp:pre:1p; +niqué niquer ver m s 7.57 1.35 2.33 0.20 par:pas; +niquée niquer ver f s 7.57 1.35 0.11 0.00 par:pas; +niqués niquer ver m p 7.57 1.35 0.14 0.20 par:pas; +nirvana nirvana nom m s 0.81 0.74 0.81 0.68 +nirvanas nirvana nom m p 0.81 0.74 0.00 0.07 +nirvâna nirvâna nom m s 0.01 2.09 0.01 2.09 +nisan nisan nom m s 0.00 0.20 0.00 0.20 +nièce nièce nom f s 10.10 0.00 9.28 0.00 +nièces nièce nom f p 10.10 0.00 0.82 0.00 +nième nième nom m s 0.03 0.07 0.03 0.07 +niçois niçois adj m 0.08 1.28 0.00 0.88 +niçoise niçois adj f s 0.08 1.28 0.08 0.34 +niçoises niçois nom f p 0.03 0.47 0.00 0.20 +nière nière nom m s 0.14 0.07 0.14 0.07 +nièrent nier ver 24.86 23.58 0.01 0.07 ind:pas:3p; +nitratant nitrater ver 0.01 0.00 0.01 0.00 par:pre; +nitrate nitrate nom m s 0.64 0.54 0.38 0.41 +nitrates nitrate nom m p 0.64 0.54 0.27 0.14 +nitre nitre nom m s 0.07 0.00 0.07 0.00 +nitreuse nitreux adj f s 0.17 0.00 0.01 0.00 +nitreux nitreux adj m s 0.17 0.00 0.16 0.00 +nitrique nitrique adj s 0.25 0.14 0.25 0.14 +nitrite nitrite nom m s 0.02 0.14 0.02 0.14 +nitroglycérine nitroglycérine nom f s 0.79 0.20 0.79 0.20 +nitrogène nitrogène nom m s 0.17 0.00 0.17 0.00 +nitré nitré adj m s 0.00 0.07 0.00 0.07 +nié nier ver m s 24.86 23.58 1.53 0.88 par:pas; +niébé niébé nom m s 0.02 0.07 0.02 0.07 +niée nier ver f s 24.86 23.58 0.14 0.27 par:pas; +niés nier ver m p 24.86 23.58 0.01 0.07 par:pas; +nivôse nivôse nom m s 0.00 0.41 0.00 0.41 +nivaquine nivaquine nom f s 0.00 0.14 0.00 0.14 +niveau niveau nom m s 50.70 32.91 45.46 30.74 +niveaux niveau nom m p 50.70 32.91 5.24 2.16 +nivelait niveler ver 0.14 1.96 0.00 0.07 ind:imp:3s; +nivelant niveler ver 0.14 1.96 0.04 0.07 par:pre; +niveler niveler ver 0.14 1.96 0.09 0.27 inf; +niveleur niveleur nom m s 0.01 0.27 0.01 0.00 +niveleurs niveleur nom m p 0.01 0.27 0.00 0.20 +niveleuse niveleur nom f s 0.01 0.27 0.00 0.07 +nivelle niveler ver 0.14 1.96 0.00 0.07 ind:pre:1s; +nivellement nivellement nom m s 0.00 0.20 0.00 0.20 +nivellent niveler ver 0.14 1.96 0.00 0.07 ind:pre:3p; +nivelât niveler ver 0.14 1.96 0.00 0.07 sub:imp:3s; +nivelé niveler ver m s 0.14 1.96 0.02 0.68 par:pas; +nivelée niveler ver f s 0.14 1.96 0.00 0.27 par:pas; +nivelées niveler ver f p 0.14 1.96 0.00 0.07 par:pas; +nivelés niveler ver m p 0.14 1.96 0.00 0.34 par:pas; +nivernais nivernais adj m 0.00 0.07 0.00 0.07 +nivernaise nivernaise adj f s 0.00 0.20 0.00 0.20 +nixe nixe nom f s 0.01 0.07 0.01 0.07 +no_man_s_land no_man_s_land nom m s 0.95 1.49 0.95 1.49 +nobiliaire nobiliaire adj s 0.10 0.95 0.10 0.47 +nobiliaires nobiliaire adj p 0.10 0.95 0.00 0.47 +nobilitas nobilitas nom f 0.10 0.00 0.10 0.00 +noblaillon noblaillon nom m s 0.02 0.00 0.02 0.00 +noble noble adj s 28.70 31.62 23.73 20.00 +noblement noblement adv 0.58 2.70 0.58 2.70 +nobles noble adj p 28.70 31.62 4.97 11.62 +noblesse noblesse nom f s 6.09 12.64 6.09 12.43 +noblesses noblesse nom f p 6.09 12.64 0.00 0.20 +nobliau nobliau nom m s 0.01 0.14 0.01 0.00 +nobliaux nobliau nom m p 0.01 0.14 0.00 0.14 +noce noce nom f s 17.05 21.01 4.43 6.55 +nocer nocer ver 0.01 0.00 0.01 0.00 inf; +noces noce nom f p 17.05 21.01 12.62 14.46 +noceur noceur nom m s 0.17 0.88 0.15 0.47 +noceurs noceur nom m p 0.17 0.88 0.02 0.20 +noceuse noceur nom f s 0.17 0.88 0.00 0.14 +noceuses noceur nom f p 0.17 0.88 0.00 0.07 +nocher nocher nom m s 0.02 0.14 0.02 0.14 +nochère nochère nom f s 0.00 0.14 0.00 0.14 +nocif nocif adj m s 1.53 1.69 0.56 0.74 +nocifs nocif adj m p 1.53 1.69 0.38 0.34 +nocive nocif adj f s 1.53 1.69 0.31 0.41 +nocives nocif adj f p 1.53 1.69 0.27 0.20 +nocivité nocivité nom f s 0.16 0.20 0.16 0.20 +noctambule noctambule adj m s 0.51 0.61 0.38 0.27 +noctambules noctambule adj p 0.51 0.61 0.14 0.34 +noctambulisme noctambulisme nom m s 0.00 0.14 0.00 0.14 +nocturnal nocturnal nom m s 0.01 0.07 0.01 0.07 +nocturne nocturne adj s 5.71 37.16 4.09 25.41 +nocturnes nocturne adj p 5.71 37.16 1.62 11.76 +nodal nodal adj m s 0.01 0.41 0.01 0.34 +nodales nodal adj f p 0.01 0.41 0.00 0.07 +nodosités nodosité nom f p 0.01 0.27 0.01 0.27 +nodule nodule nom m s 0.43 0.00 0.12 0.00 +nodules nodule nom m p 0.43 0.00 0.31 0.00 +noduleux noduleux adj m p 0.00 0.14 0.00 0.14 +nodus nodus nom m 0.00 0.07 0.00 0.07 +noeud noeud nom m s 11.12 24.26 7.64 14.46 +noeuds noeud nom m p 11.12 24.26 3.48 9.80 +noie noyer ver 27.29 38.58 4.53 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +noient noyer ver 27.29 38.58 0.48 1.08 ind:pre:3p; +noiera noyer ver 27.29 38.58 0.14 0.07 ind:fut:3s; +noierai noyer ver 27.29 38.58 0.17 0.07 ind:fut:1s; +noieraient noyer ver 27.29 38.58 0.00 0.07 cnd:pre:3p; +noierait noyer ver 27.29 38.58 0.56 0.47 cnd:pre:3s; +noieras noyer ver 27.29 38.58 0.04 0.00 ind:fut:2s; +noierez noyer ver 27.29 38.58 0.10 0.07 ind:fut:2p; +noieront noyer ver 27.29 38.58 0.14 0.00 ind:fut:3p; +noies noyer ver 27.29 38.58 0.71 0.14 ind:pre:2s; +noir noir adj m s 144.81 482.23 72.20 184.86 +noiraud noiraud adj m s 0.70 4.80 0.69 1.28 +noiraude noiraud adj f s 0.70 4.80 0.01 3.31 +noiraudes noiraud adj f p 0.70 4.80 0.00 0.14 +noirauds noiraud nom m p 0.37 0.81 0.01 0.00 +noirceur noirceur nom f s 0.63 3.24 0.63 2.97 +noirceurs noirceur nom f p 0.63 3.24 0.00 0.27 +noirci noirci adj m s 0.66 4.93 0.47 1.35 +noircie noircir ver f s 2.14 10.41 0.15 1.01 par:pas; +noircies noirci adj f p 0.66 4.93 0.04 1.69 +noircir noircir ver 2.14 10.41 0.68 2.16 inf; +noircirai noircir ver 2.14 10.41 0.01 0.00 ind:fut:1s; +noircirais noircir ver 2.14 10.41 0.00 0.07 cnd:pre:1s; +noircirait noircir ver 2.14 10.41 0.00 0.07 cnd:pre:3s; +noircirent noircir ver 2.14 10.41 0.00 0.20 ind:pas:3p; +noircis noircir ver m p 2.14 10.41 0.35 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +noircissaient noircir ver 2.14 10.41 0.14 0.20 ind:imp:3p; +noircissais noircir ver 2.14 10.41 0.00 0.07 ind:imp:1s; +noircissait noircir ver 2.14 10.41 0.01 1.28 ind:imp:3s; +noircissant noircir ver 2.14 10.41 0.00 0.34 par:pre; +noircisse noircir ver 2.14 10.41 0.00 0.07 sub:pre:1s; +noircissent noircir ver 2.14 10.41 0.11 0.20 ind:pre:3p; +noircissez noircir ver 2.14 10.41 0.05 0.07 imp:pre:2p;ind:pre:2p; +noircit noircir ver 2.14 10.41 0.25 0.68 ind:pre:3s;ind:pas:3s; +noire noir adj f s 144.81 482.23 41.57 140.88 +noires noir adj f p 144.81 482.23 9.39 62.64 +noirâtre noirâtre adj s 0.02 6.08 0.02 4.12 +noirâtres noirâtre adj p 0.02 6.08 0.00 1.96 +noirs noir adj m p 144.81 482.23 21.65 93.85 +noise noise nom f s 1.14 0.68 0.35 0.27 +noises noise nom f p 1.14 0.68 0.79 0.41 +noisetier noisetier nom m s 1.12 3.24 1.10 1.62 +noisetiers noisetier nom m p 1.12 3.24 0.03 1.62 +noisette noisette nom f s 2.90 3.99 0.57 1.69 +noisettes noisette nom f p 2.90 3.99 2.33 2.30 +noix noix nom f 12.83 12.23 12.83 12.23 +nok nok adj f s 0.03 0.00 0.03 0.00 +nolis nolis nom m 0.00 0.07 0.00 0.07 +nom nom nom m s 570.67 395.00 528.17 326.89 +nomade nomade nom s 1.32 4.86 0.60 1.62 +nomades nomade nom p 1.32 4.86 0.72 3.24 +nomadisait nomadiser ver 0.00 0.20 0.00 0.07 ind:imp:3s; +nomadisant nomadiser ver 0.00 0.20 0.00 0.07 par:pre; +nomadisent nomadiser ver 0.00 0.20 0.00 0.07 ind:pre:3p; +nomadisme nomadisme nom m s 0.01 0.68 0.01 0.68 +nombre nombre nom m s 40.16 78.38 36.57 76.28 +nombres nombre nom m p 40.16 78.38 3.59 2.09 +nombreuse nombreux adj f s 44.64 60.27 0.74 5.34 +nombreuses nombreux adj f p 44.64 60.27 14.01 17.91 +nombreux nombreux adj m 44.64 60.27 29.89 37.03 +nombril nombril nom m s 4.34 5.54 4.26 5.20 +nombrilisme nombrilisme nom m s 0.03 0.00 0.03 0.00 +nombriliste nombriliste nom s 0.14 0.00 0.14 0.00 +nombrils nombril nom m p 4.34 5.54 0.08 0.34 +nome nome nom m s 0.24 0.07 0.24 0.07 +nomenclature nomenclature nom f s 0.03 1.01 0.03 0.81 +nomenclatures nomenclature nom f p 0.03 1.01 0.00 0.20 +nomenklatura nomenklatura nom f s 0.00 0.14 0.00 0.14 +nominal nominal adj m s 0.39 0.34 0.09 0.14 +nominale nominal adj f s 0.39 0.34 0.10 0.07 +nominalement nominalement adv 0.01 0.00 0.01 0.00 +nominales nominal adj f p 0.39 0.34 0.02 0.14 +nominaliste nominaliste adj m s 0.00 0.07 0.00 0.07 +nominatif nominatif adj m s 0.09 0.47 0.05 0.07 +nominatifs nominatif adj m p 0.09 0.47 0.00 0.20 +nomination nomination nom f s 3.50 3.11 3.10 2.77 +nominations nomination nom f p 3.50 3.11 0.40 0.34 +nominative nominatif adj f s 0.09 0.47 0.03 0.07 +nominatives nominatif adj f p 0.09 0.47 0.01 0.14 +nominaux nominal adj m p 0.39 0.34 0.17 0.00 +nomine nominer ver 1.42 0.34 0.25 0.34 ind:pre:1s;ind:pre:3s; +nominer nominer ver 1.42 0.34 0.04 0.00 inf; +nominé nominer ver m s 1.42 0.34 0.56 0.00 par:pas; +nominée nominer ver f s 1.42 0.34 0.21 0.00 par:pas; +nominées nominer ver f p 1.42 0.34 0.08 0.00 par:pas; +nominés nominer ver m p 1.42 0.34 0.27 0.00 par:pas; +nomma nommer ver 45.60 62.30 0.30 1.82 ind:pas:3s; +nommai nommer ver 45.60 62.30 0.00 0.68 ind:pas:1s; +nommaient nommer ver 45.60 62.30 0.02 1.22 ind:imp:3p; +nommais nommer ver 45.60 62.30 0.02 0.27 ind:imp:1s; +nommait nommer ver 45.60 62.30 0.51 6.82 ind:imp:3s; +nommant nommer ver 45.60 62.30 0.57 0.95 par:pre; +nomme nommer ver 45.60 62.30 9.41 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +nomment nommer ver 45.60 62.30 0.69 1.22 ind:pre:3p; +nommer nommer ver 45.60 62.30 7.41 10.47 inf; +nommera nommer ver 45.60 62.30 0.64 0.27 ind:fut:3s; +nommerai nommer ver 45.60 62.30 1.10 0.27 ind:fut:1s; +nommerais nommer ver 45.60 62.30 0.21 0.00 cnd:pre:1s;cnd:pre:2s; +nommerait nommer ver 45.60 62.30 0.04 0.14 cnd:pre:3s; +nommeras nommer ver 45.60 62.30 0.02 0.00 ind:fut:2s; +nommeriez nommer ver 45.60 62.30 0.02 0.00 cnd:pre:2p; +nommerons nommer ver 45.60 62.30 0.05 0.00 ind:fut:1p; +nommeront nommer ver 45.60 62.30 0.05 0.07 ind:fut:3p; +nommes nommer ver 45.60 62.30 0.61 0.07 ind:pre:2s;sub:pre:2s; +nommez nommer ver 45.60 62.30 1.14 0.61 imp:pre:2p;ind:pre:2p; +nommiez nommer ver 45.60 62.30 0.17 0.00 ind:imp:2p; +nommions nommer ver 45.60 62.30 0.01 0.27 ind:imp:1p; +nommons nommer ver 45.60 62.30 0.34 0.34 imp:pre:1p;ind:pre:1p; +nommât nommer ver 45.60 62.30 0.00 0.14 sub:imp:3s; +nommèrent nommer ver 45.60 62.30 0.15 0.14 ind:pas:3p; +nommé nommer ver m s 45.60 62.30 18.24 20.41 par:pas; +nommée nommer ver f s 45.60 62.30 3.01 3.51 par:pas; +nommées nommer ver f p 45.60 62.30 0.20 0.81 par:pas; +nommément nommément adv 0.10 0.47 0.10 0.47 +nommés nommer ver m p 45.60 62.30 0.68 2.30 par:pas; +noms nom nom m p 570.67 395.00 42.50 68.11 +non_agression non_agression nom f s 0.07 0.61 0.07 0.61 +non_alignement non_alignement nom m s 0.04 0.00 0.04 0.00 +non_aligné non_aligné adj m p 0.09 0.00 0.09 0.00 +non_amour non_amour nom m s 0.10 0.00 0.10 0.00 +non_appartenance non_appartenance nom f s 0.01 0.07 0.01 0.07 +non_assistance non_assistance nom f s 0.10 0.07 0.10 0.07 +non_blanc non_blanc nom m s 0.04 0.07 0.00 0.07 +non_blanc non_blanc nom m p 0.04 0.07 0.04 0.00 +non_combattant non_combattant adj m s 0.15 0.00 0.01 0.00 +non_combattant non_combattant nom m s 0.03 0.00 0.01 0.00 +non_combattant non_combattant adj m p 0.15 0.00 0.14 0.00 +non_comparution non_comparution nom f s 0.01 0.00 0.01 0.00 +non_concurrence non_concurrence nom f s 0.01 0.00 0.01 0.00 +non_conformisme non_conformisme nom m s 0.00 0.20 0.00 0.20 +non_conformiste non_conformiste adj s 0.14 0.00 0.10 0.00 +non_conformiste non_conformiste adj p 0.14 0.00 0.04 0.00 +non_conformité non_conformité nom f s 0.01 0.00 0.01 0.00 +non_consommation non_consommation nom f s 0.03 0.00 0.03 0.00 +non_croyance non_croyance nom f s 0.10 0.00 0.10 0.00 +non_croyant non_croyant nom m s 0.62 0.07 0.21 0.07 +non_croyant non_croyant nom m p 0.62 0.07 0.41 0.00 +non_culpabilité non_culpabilité nom f s 0.01 0.00 0.01 0.00 +non_dit non_dit nom m s 0.27 0.88 0.09 0.74 +non_dit non_dit nom m p 0.27 0.88 0.18 0.14 +non_droit non_droit nom m s 0.22 0.00 0.22 0.00 +non_existence non_existence nom f s 0.07 0.07 0.07 0.07 +non_ferreux non_ferreux nom m 0.01 0.00 0.01 0.00 +non_fumeur non_fumeur adj m s 0.68 0.00 0.68 0.00 +non_fumeurs non_fumeurs adj 0.44 0.07 0.44 0.07 +non_initié non_initié nom m s 0.22 0.34 0.03 0.14 +non_initié non_initié nom m p 0.22 0.34 0.19 0.20 +non_intervention non_intervention nom f s 0.21 0.14 0.21 0.14 +non_lieu non_lieu nom m s 1.08 1.42 1.08 1.42 +non_lieux non_lieux nom m p 0.01 0.20 0.01 0.20 +non_malade non_malade nom p 0.00 0.07 0.00 0.07 +non_paiement non_paiement nom m s 0.10 0.07 0.10 0.07 +non_participation non_participation nom f s 0.01 0.07 0.01 0.07 +non_pesanteur non_pesanteur nom f s 0.00 0.07 0.00 0.07 +non_prolifération non_prolifération nom f s 0.09 0.00 0.09 0.00 +non_présence non_présence nom f s 0.01 0.14 0.01 0.14 +non_recevoir non_recevoir nom m s 0.06 0.20 0.06 0.20 +non_représentation non_représentation nom f s 0.01 0.00 0.01 0.00 +non_respect non_respect nom m s 0.16 0.00 0.16 0.00 +non_retour non_retour nom m s 0.34 0.41 0.34 0.41 +non_résistance non_résistance nom f s 0.00 0.14 0.00 0.14 +non_savoir non_savoir nom m s 0.04 0.07 0.04 0.07 +non_sens non_sens nom m 0.83 0.95 0.83 0.95 +non_spécialiste non_spécialiste nom s 0.02 0.07 0.01 0.00 +non_spécialiste non_spécialiste nom p 0.02 0.07 0.01 0.07 +non_stop non_stop adj 0.89 0.14 0.89 0.14 +non_séparation non_séparation nom f s 0.00 0.07 0.00 0.07 +non_utilisation non_utilisation nom f s 0.01 0.00 0.01 0.00 +non_être non_être nom m 0.00 0.95 0.00 0.95 +non_événement non_événement nom m s 0.02 0.00 0.02 0.00 +non_vie non_vie nom f s 0.04 0.00 0.04 0.00 +non_violence non_violence nom f s 0.63 0.07 0.63 0.07 +non_violent non_violent adj m s 0.31 0.07 0.19 0.07 +non_violent non_violent adj f s 0.31 0.07 0.07 0.00 +non_violent non_violent adj m p 0.31 0.07 0.05 0.00 +non_vouloir non_vouloir nom m s 0.00 0.07 0.00 0.07 +non_voyant non_voyant nom m s 0.32 0.27 0.28 0.20 +non_voyant non_voyant nom f s 0.32 0.27 0.02 0.00 +non_voyant non_voyant nom m p 0.32 0.27 0.03 0.07 +non_troppo non_troppo adv 0.00 0.07 0.00 0.07 +non non pro_per s 0.01 0.00 0.01 0.00 +nonagénaire nonagénaire adj s 0.01 0.54 0.01 0.41 +nonagénaires nonagénaire nom p 0.03 0.14 0.01 0.00 +nonante_huit nonante_huit adj_num 0.00 0.07 0.00 0.07 +nonante nonante adj_num 0.27 0.27 0.27 0.27 +nonce nonce nom m s 0.01 0.68 0.01 0.68 +nonchalamment nonchalamment adv 0.04 2.70 0.04 2.70 +nonchalance nonchalance nom f s 0.47 5.00 0.47 5.00 +nonchalant nonchalant adj m s 0.60 7.64 0.21 3.31 +nonchalante nonchalant adj f s 0.60 7.64 0.27 2.77 +nonchalantes nonchalant adj f p 0.60 7.64 0.11 0.68 +nonchalants nonchalant adj m p 0.60 7.64 0.01 0.88 +nonciature nonciature nom f s 0.14 0.14 0.14 0.14 +none none nom f s 0.67 0.41 0.48 0.07 +nones none nom f p 0.67 0.41 0.19 0.34 +nonette nonette nom s 0.00 0.27 0.00 0.20 +nonettes nonette nom p 0.00 0.27 0.00 0.07 +nonidi nonidi nom m s 0.00 0.07 0.00 0.07 +nonnain nonnain nom m s 0.00 0.61 0.00 0.61 +nonne nonne nom f s 8.46 3.72 5.46 1.69 +nonnes nonne nom f p 8.46 3.72 3.01 2.03 +nonnette nonnette nom f s 0.14 0.41 0.04 0.34 +nonnettes nonnette nom f p 0.14 0.41 0.10 0.07 +nonobstant nonobstant pre 0.16 2.97 0.16 2.97 +nonpareille nonpareil adj f s 0.01 0.14 0.01 0.14 +nonsense nonsense nom m s 0.04 0.07 0.04 0.07 +nope nope nom f s 0.50 0.00 0.50 0.00 +noradrénaline noradrénaline nom f s 0.05 0.00 0.05 0.00 +nord_africain nord_africain adj m s 0.05 1.96 0.02 0.20 +nord_africain nord_africain adj f s 0.05 1.96 0.01 0.95 +nord_africain nord_africain adj f p 0.05 1.96 0.01 0.07 +nord_africain nord_africain adj m p 0.05 1.96 0.01 0.74 +nord_américain nord_américain adj m s 0.32 0.20 0.24 0.07 +nord_américain nord_américain adj f s 0.32 0.20 0.06 0.14 +nord_américain nord_américain nom m p 0.13 0.00 0.03 0.00 +nord_coréen nord_coréen adj m s 0.36 0.00 0.24 0.00 +nord_coréen nord_coréen adj f s 0.36 0.00 0.06 0.00 +nord_coréen nord_coréen adj f p 0.36 0.00 0.02 0.00 +nord_coréen nord_coréen nom m p 0.23 0.07 0.18 0.07 +nord_est nord_est nom m 1.40 2.84 1.40 2.84 +nord_nord_est nord_nord_est nom m s 0.03 0.14 0.03 0.14 +nord_ouest nord_ouest nom m 0.95 1.22 0.95 1.22 +nord_sud nord_sud adj 0.15 0.88 0.15 0.88 +nord_vietnamien nord_vietnamien adj m s 0.11 0.00 0.04 0.00 +nord_vietnamien nord_vietnamien adj f s 0.11 0.00 0.04 0.00 +nord_vietnamien nord_vietnamien nom m p 0.12 0.00 0.11 0.00 +nord nord nom m 50.38 72.30 50.38 72.30 +nordet nordet nom m s 0.00 0.07 0.00 0.07 +nordicité nordicité nom f s 0.01 0.00 0.01 0.00 +nordique nordique adj s 1.43 1.69 1.15 1.22 +nordiques nordique nom p 0.71 0.47 0.31 0.07 +nordiste nordiste adj s 0.47 0.14 0.22 0.14 +nordistes nordiste nom p 0.78 0.07 0.66 0.07 +noria noria nom f s 0.01 0.61 0.01 0.54 +norias noria nom f p 0.01 0.61 0.00 0.07 +normal normal adj m s 127.15 62.77 90.98 42.97 +normale normal adj f s 127.15 62.77 23.74 13.45 +normalement normalement adv 20.37 12.43 20.37 12.43 +normales normal adj f p 127.15 62.77 4.08 2.30 +normalien normalien nom m s 0.00 2.23 0.00 1.35 +normalienne normalien adj f s 0.00 0.34 0.00 0.14 +normaliennes normalien nom f p 0.00 2.23 0.00 0.07 +normaliens normalien nom m p 0.00 2.23 0.00 0.81 +normalisation normalisation nom f s 0.13 0.41 0.13 0.41 +normalise normaliser ver 0.20 0.54 0.04 0.07 ind:pre:3s; +normalisent normaliser ver 0.20 0.54 0.00 0.07 ind:pre:3p; +normaliser normaliser ver 0.20 0.54 0.12 0.27 inf; +normalisons normaliser ver 0.20 0.54 0.00 0.07 ind:pre:1p; +normalisée normaliser ver f s 0.20 0.54 0.03 0.00 par:pas; +normalisées normaliser ver f p 0.20 0.54 0.00 0.07 par:pas; +normalisés normaliser ver m p 0.20 0.54 0.01 0.00 par:pas; +normalité normalité nom f s 1.27 0.74 1.27 0.74 +normand normand adj m s 0.79 6.42 0.45 2.03 +normande normand adj f s 0.79 6.42 0.27 2.97 +normandes normand adj f p 0.79 6.42 0.03 0.74 +normands normand adj m p 0.79 6.42 0.05 0.68 +normatif normatif adj m s 0.01 0.27 0.01 0.14 +normative normatif adj f s 0.01 0.27 0.00 0.14 +normaux normal adj m p 127.15 62.77 8.35 4.05 +norme norme nom f s 5.00 3.78 1.58 1.15 +normes norme nom f p 5.00 3.78 3.42 2.64 +noroît noroît nom m s 0.00 0.34 0.00 0.34 +norroise norrois adj f s 0.01 0.00 0.01 0.00 +norvégien norvégien adj m s 2.96 1.15 1.16 0.54 +norvégienne norvégien adj f s 2.96 1.15 1.00 0.14 +norvégiennes norvégien adj f p 2.96 1.15 0.47 0.14 +norvégiens norvégien adj m p 2.96 1.15 0.34 0.34 +nos nos adj_pos p 524.63 579.19 524.63 579.19 +nosocomiale nosocomial adj f s 0.01 0.00 0.01 0.00 +nostalgie nostalgie nom f s 4.45 20.07 4.44 18.04 +nostalgies nostalgie nom f p 4.45 20.07 0.01 2.03 +nostalgique nostalgique adj s 1.31 5.27 1.11 3.78 +nostalgiquement nostalgiquement adv 0.00 0.20 0.00 0.20 +nostalgiques nostalgique adj p 1.31 5.27 0.20 1.49 +not not nom 0.56 0.07 0.56 0.07 +nota_bene nota_bene adv 0.01 0.07 0.01 0.07 +nota noter ver 31.24 44.53 0.02 4.12 ind:pas:3s; +notabilité notabilité nom f s 0.00 0.74 0.00 0.07 +notabilités notabilité nom f p 0.00 0.74 0.00 0.68 +notable notable adj s 0.69 5.00 0.49 3.65 +notablement notablement adv 0.04 0.74 0.04 0.74 +notables notable nom p 0.63 6.55 0.52 5.20 +notai noter ver 31.24 44.53 0.14 1.62 ind:pas:1s; +notaient noter ver 31.24 44.53 0.03 0.27 ind:imp:3p; +notaire notaire nom m s 4.69 17.23 4.63 14.86 +notaires notaire nom m p 4.69 17.23 0.06 2.36 +notais noter ver 31.24 44.53 0.31 1.01 ind:imp:1s; +notait noter ver 31.24 44.53 0.32 2.70 ind:imp:3s; +notamment notamment adv 2.20 20.20 2.20 20.20 +notant noter ver 31.24 44.53 0.16 1.01 par:pre; +notarial notarial adj m s 0.03 0.20 0.01 0.14 +notariale notarial adj f s 0.03 0.20 0.01 0.00 +notariat notariat nom m s 0.00 0.20 0.00 0.20 +notariaux notarial adj m p 0.03 0.20 0.00 0.07 +notarié notarier ver m s 0.09 0.20 0.05 0.07 par:pas; +notariée notarié adj f s 0.07 0.07 0.01 0.00 +notariées notarier ver f p 0.09 0.20 0.01 0.07 par:pas; +notariés notarier ver m p 0.09 0.20 0.03 0.07 par:pas; +notation notation nom f s 0.21 1.08 0.19 0.54 +notations notation nom f p 0.21 1.08 0.03 0.54 +note note nom f s 62.82 77.43 33.42 39.32 +notent noter ver 31.24 44.53 0.28 0.14 ind:pre:3p; +noter noter ver 31.24 44.53 5.44 8.78 inf; +notera noter ver 31.24 44.53 0.03 0.47 ind:fut:3s; +noterai noter ver 31.24 44.53 0.51 0.20 ind:fut:1s; +noterais noter ver 31.24 44.53 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +noterait noter ver 31.24 44.53 0.04 0.27 cnd:pre:3s; +noteras noter ver 31.24 44.53 0.03 0.07 ind:fut:2s; +noterez noter ver 31.24 44.53 0.19 0.34 ind:fut:2p; +noterons noter ver 31.24 44.53 0.01 0.07 ind:fut:1p; +noteront noter ver 31.24 44.53 0.04 0.00 ind:fut:3p; +notes note nom f p 62.82 77.43 29.40 38.11 +notez noter ver 31.24 44.53 5.74 5.14 imp:pre:2p;ind:pre:2p; +notice notice nom f s 1.23 2.57 0.92 1.96 +notices notice nom f p 1.23 2.57 0.31 0.61 +notiez noter ver 31.24 44.53 0.35 0.00 ind:imp:2p; +notifia notifier ver 0.75 3.18 0.00 0.47 ind:pas:3s; +notifiai notifier ver 0.75 3.18 0.00 0.20 ind:pas:1s; +notifiaient notifier ver 0.75 3.18 0.00 0.07 ind:imp:3p; +notifiait notifier ver 0.75 3.18 0.00 0.20 ind:imp:3s; +notifiant notifier ver 0.75 3.18 0.00 0.20 par:pre; +notification notification nom f s 0.37 0.54 0.37 0.54 +notifier notifier ver 0.75 3.18 0.27 0.74 inf; +notifiez notifier ver 0.75 3.18 0.01 0.00 imp:pre:2p; +notifions notifier ver 0.75 3.18 0.02 0.07 ind:pre:1p; +notifié notifier ver m s 0.75 3.18 0.42 0.88 par:pas; +notifiée notifier ver f s 0.75 3.18 0.02 0.27 par:pas; +notifiées notifié adj f p 0.00 0.20 0.00 0.14 +notion notion nom f s 5.79 14.05 4.99 10.61 +notions notion nom f p 5.79 14.05 0.81 3.45 +notoire notoire adj s 1.81 5.81 1.55 4.39 +notoirement notoirement adv 0.17 0.61 0.17 0.61 +notoires notoire adj p 1.81 5.81 0.26 1.42 +notonecte notonecte nom s 0.00 0.14 0.00 0.07 +notonectes notonecte nom p 0.00 0.14 0.00 0.07 +notons noter ver 31.24 44.53 0.18 0.20 imp:pre:1p;ind:pre:1p; +notoriété notoriété nom f s 0.65 2.84 0.65 2.77 +notoriétés notoriété nom f p 0.65 2.84 0.00 0.07 +notre_dame notre_dame nom f 2.69 8.58 2.69 8.58 +notre notre adj_pos s 1022.94 680.68 1022.94 680.68 +notèrent noter ver 31.24 44.53 0.01 0.07 ind:pas:3p; +noté noter ver m s 31.24 44.53 11.04 8.11 par:pas; +notée noter ver f s 31.24 44.53 0.33 0.27 par:pas; +notées noté adj f p 1.40 0.68 0.16 0.00 +notules notule nom f p 0.00 0.20 0.00 0.20 +notés noter ver m p 31.24 44.53 0.56 0.47 par:pas; +noua nouer ver 3.61 32.50 0.01 3.04 ind:pas:3s; +nouage nouage nom m s 0.01 0.00 0.01 0.00 +nouai nouer ver 3.61 32.50 0.00 0.20 ind:pas:1s; +nouaient nouer ver 3.61 32.50 0.02 1.49 ind:imp:3p; +nouais nouer ver 3.61 32.50 0.00 0.27 ind:imp:1s; +nouait nouer ver 3.61 32.50 0.03 3.85 ind:imp:3s; +nouant nouer ver 3.61 32.50 0.01 1.01 par:pre; +nouas nouer ver 3.61 32.50 0.01 0.00 ind:pas:2s; +nouba nouba nom f s 0.98 0.88 0.95 0.74 +noubas nouba nom f p 0.98 0.88 0.04 0.14 +noue nouer ver 3.61 32.50 0.52 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +nouent nouer ver 3.61 32.50 0.16 1.69 ind:pre:3p; +nouer nouer ver 3.61 32.50 1.67 6.01 inf; +nouera nouer ver 3.61 32.50 0.01 0.07 ind:fut:3s; +nouerais nouer ver 3.61 32.50 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +nouerait nouer ver 3.61 32.50 0.00 0.07 cnd:pre:3s; +nouerez nouer ver 3.61 32.50 0.00 0.07 ind:fut:2p; +noueront nouer ver 3.61 32.50 0.00 0.07 ind:fut:3p; +noueuse noueux adj f s 0.22 5.14 0.00 0.74 +noueuses noueux adj f p 0.22 5.14 0.00 1.62 +noueux noueux adj m 0.22 5.14 0.22 2.77 +nouez nouer ver 3.61 32.50 0.18 0.00 imp:pre:2p;ind:pre:2p; +nougat nougat nom m s 0.94 2.16 0.89 1.49 +nougatine nougatine nom f s 0.04 0.47 0.03 0.41 +nougatines nougatine nom f p 0.04 0.47 0.01 0.07 +nougats nougat nom m p 0.94 2.16 0.05 0.68 +nouille nouille nom f s 4.37 4.26 1.02 0.47 +nouilles nouille nom f p 4.37 4.26 3.35 3.78 +noël noël nom m s 2.98 6.69 2.14 5.95 +noëls noël nom m p 2.98 6.69 0.84 0.74 +noumène noumène nom m s 0.00 0.07 0.00 0.07 +nounou nounou nom f s 4.40 5.00 3.87 4.86 +nounours nounours nom m 3.71 2.03 3.71 2.03 +nounous nounou nom f p 4.40 5.00 0.53 0.14 +nourrît nourrir ver 52.53 64.53 0.00 0.07 sub:imp:3s; +nourri nourrir ver m s 52.53 64.53 6.13 7.43 par:pas; +nourrice nourrice nom f s 6.17 8.38 5.88 7.36 +nourrices nourrice nom f p 6.17 8.38 0.29 1.01 +nourricier nourricier adj m s 0.34 2.91 0.15 1.01 +nourriciers nourricier adj m p 0.34 2.91 0.01 0.61 +nourricière nourricier adj f s 0.34 2.91 0.16 1.15 +nourricières nourricier adj f p 0.34 2.91 0.02 0.14 +nourrie nourrir ver f s 52.53 64.53 0.91 2.97 par:pas; +nourries nourrir ver f p 52.53 64.53 0.11 0.95 par:pas; +nourrir nourrir ver 52.53 64.53 22.08 24.05 inf;; +nourrira nourrir ver 52.53 64.53 0.52 0.47 ind:fut:3s; +nourrirai nourrir ver 52.53 64.53 0.36 0.20 ind:fut:1s; +nourriraient nourrir ver 52.53 64.53 0.01 0.20 cnd:pre:3p; +nourrirais nourrir ver 52.53 64.53 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +nourrirait nourrir ver 52.53 64.53 0.35 0.41 cnd:pre:3s; +nourriras nourrir ver 52.53 64.53 0.03 0.00 ind:fut:2s; +nourrirent nourrir ver 52.53 64.53 0.00 0.14 ind:pas:3p; +nourrirez nourrir ver 52.53 64.53 0.06 0.00 ind:fut:2p; +nourririons nourrir ver 52.53 64.53 0.01 0.00 cnd:pre:1p; +nourrirons nourrir ver 52.53 64.53 0.07 0.07 ind:fut:1p; +nourriront nourrir ver 52.53 64.53 0.18 0.20 ind:fut:3p; +nourris nourrir ver m p 52.53 64.53 6.36 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +nourrissage nourrissage nom m s 0.02 0.14 0.02 0.14 +nourrissaient nourrir ver 52.53 64.53 0.26 1.82 ind:imp:3p; +nourrissais nourrir ver 52.53 64.53 0.54 0.95 ind:imp:1s;ind:imp:2s; +nourrissait nourrir ver 52.53 64.53 1.00 7.91 ind:imp:3s; +nourrissant nourrissant adj m s 1.01 1.49 0.68 0.81 +nourrissante nourrissant adj f s 1.01 1.49 0.28 0.47 +nourrissantes nourrissant adj f p 1.01 1.49 0.00 0.07 +nourrissants nourrissant adj m p 1.01 1.49 0.05 0.14 +nourrisse nourrir ver 52.53 64.53 0.52 0.74 sub:pre:1s;sub:pre:3s; +nourrissent nourrir ver 52.53 64.53 2.46 3.31 ind:pre:3p;sub:imp:3p; +nourrisses nourrir ver 52.53 64.53 0.06 0.14 sub:pre:2s; +nourrisseur nourrisseur nom m s 0.00 0.14 0.00 0.14 +nourrissez nourrir ver 52.53 64.53 0.91 0.27 imp:pre:2p;ind:pre:2p; +nourrissiez nourrir ver 52.53 64.53 0.03 0.07 ind:imp:2p; +nourrissions nourrir ver 52.53 64.53 0.02 0.20 ind:imp:1p; +nourrisson nourrisson nom m s 1.62 4.53 1.13 3.04 +nourrissons nourrisson nom m p 1.62 4.53 0.49 1.49 +nourrit nourrir ver 52.53 64.53 8.78 6.55 ind:pre:3s;ind:pas:3s; +nourriture nourriture nom f s 44.86 31.01 44.59 25.74 +nourritures nourriture nom f p 44.86 31.01 0.27 5.27 +nous_même nous_même pro_per p 1.12 0.61 1.12 0.61 +nous_mêmes nous_mêmes pro_per p 11.11 16.28 11.11 16.28 +nous nous pro_per p 4772.12 3867.84 4772.12 3867.84 +nouèrent nouer ver 3.61 32.50 0.00 0.34 ind:pas:3p; +noué nouer ver m s 3.61 32.50 0.47 5.81 par:pas; +nouée noué adj f s 1.01 6.62 0.45 3.24 +nouées nouer ver f p 3.61 32.50 0.17 1.62 par:pas; +noués nouer ver m p 3.61 32.50 0.21 3.04 par:pas; +nouveau_né nouveau_né nom m s 2.72 4.80 2.27 3.18 +nouveau_né nouveau_né nom m p 2.72 4.80 0.14 1.49 +nouveau nouveau adj m s 400.60 358.11 170.28 138.31 +nouveauté nouveauté nom f s 4.23 8.72 3.23 6.55 +nouveautés nouveauté nom f p 4.23 8.72 1.00 2.16 +nouveau_né nouveau_né nom m p 2.72 4.80 0.30 0.14 +nouveaux nouveau adj m p 400.60 358.11 39.17 47.30 +nouvel nouvel adj m s 30.59 22.23 30.59 22.23 +nouvelle nouveau adj f s 400.60 358.11 152.78 130.81 +nouvellement nouvellement adv 0.27 1.62 0.27 1.62 +nouvelles nouveau nom f p 229.97 285.88 82.08 59.46 +nouvelleté nouvelleté nom f s 0.00 0.07 0.00 0.07 +nouvelliste nouvelliste nom s 0.01 0.00 0.01 0.00 +nova nova nom f s 4.14 0.07 4.14 0.07 +novateur novateur adj m s 0.38 0.68 0.27 0.20 +novateurs novateur nom m p 0.30 0.27 0.27 0.00 +novation novation nom f s 0.14 0.00 0.14 0.00 +novatrice novateur adj f s 0.38 0.68 0.05 0.27 +novatrices novateur adj f p 0.38 0.68 0.02 0.07 +nove nover ver 0.02 0.07 0.00 0.07 imp:pre:2s; +novelettes novelette nom f p 0.01 0.00 0.01 0.00 +novembre novembre nom m 8.79 33.04 8.79 33.04 +novice novice nom s 2.01 2.91 1.05 1.35 +novices novice nom p 2.01 2.91 0.96 1.55 +noviciat noviciat nom m s 0.04 0.61 0.04 0.61 +novilleros novillero nom m p 0.00 0.07 0.00 0.07 +novillo novillo nom m s 0.00 0.14 0.00 0.14 +novocaïne novocaïne nom f s 0.13 0.27 0.13 0.27 +novotique novotique nom f s 0.01 0.00 0.01 0.00 +novélisation novélisation nom f s 0.03 0.00 0.03 0.00 +noya noyer ver 27.29 38.58 0.33 0.74 ind:pas:3s; +noyade noyade nom f s 1.96 2.43 1.85 2.03 +noyades noyade nom f p 1.96 2.43 0.12 0.41 +noyaient noyer ver 27.29 38.58 0.06 1.15 ind:imp:3p; +noyais noyer ver 27.29 38.58 0.30 0.20 ind:imp:1s;ind:imp:2s; +noyait noyer ver 27.29 38.58 0.38 3.24 ind:imp:3s; +noyant noyer ver 27.29 38.58 0.18 1.55 par:pre; +noyau noyau nom m s 4.15 9.66 3.71 7.36 +noyauta noyauter ver 0.01 0.88 0.00 0.07 ind:pas:3s; +noyautage noyautage nom m s 0.01 0.20 0.01 0.20 +noyautant noyauter ver 0.01 0.88 0.00 0.07 par:pre; +noyautent noyauter ver 0.01 0.88 0.00 0.07 ind:pre:3p; +noyauter noyauter ver 0.01 0.88 0.00 0.47 inf; +noyauté noyauter ver m s 0.01 0.88 0.00 0.07 par:pas; +noyautée noyauter ver f s 0.01 0.88 0.01 0.07 par:pas; +noyautées noyauter ver f p 0.01 0.88 0.00 0.07 par:pas; +noyaux noyau nom m p 4.15 9.66 0.45 2.30 +noyer noyer ver 27.29 38.58 9.00 11.49 inf; +noyers noyer nom m p 0.55 2.50 0.03 0.88 +noyez noyer ver 27.29 38.58 0.39 0.14 imp:pre:2p;ind:pre:2p; +noyions noyer ver 27.29 38.58 0.00 0.07 ind:imp:1p; +noyons noyer ver 27.29 38.58 0.13 0.14 imp:pre:1p;ind:pre:1p; +noyèrent noyer ver 27.29 38.58 0.00 0.27 ind:pas:3p; +noyé noyer ver m s 27.29 38.58 4.78 6.69 par:pas; +noyée noyer ver f s 27.29 38.58 3.35 3.11 par:pas; +noyées noyé adj f p 1.80 7.36 0.16 0.68 +noyés noyer ver m p 27.29 38.58 1.40 2.91 par:pas; +nèfles nèfle nom f p 0.17 0.54 0.17 0.54 +nègre nègre nom m s 18.93 27.64 11.26 15.54 +nègres nègre nom m p 18.93 27.64 6.12 7.03 +nèpe nèpe nom f s 0.00 0.14 0.00 0.07 +nèpes nèpe nom f p 0.00 0.14 0.00 0.07 +nu_propriétaire nu_propriétaire nom s 0.00 0.07 0.00 0.07 +nu_tête nu_tête adj m s 0.02 1.35 0.02 1.35 +né naître ver m s 116.11 119.32 53.72 36.01 par:pas; +nu nu adj m s 49.87 168.04 17.39 53.85 +nuage nuage nom m s 30.27 76.82 11.81 26.49 +nuages nuage nom m p 30.27 76.82 18.47 50.34 +nuageuse nuageux adj f s 1.24 1.28 0.22 0.14 +nuageuses nuageux adj f p 1.24 1.28 0.29 0.20 +nuageux nuageux adj m 1.24 1.28 0.73 0.95 +nuance nuance nom f s 1.98 20.81 1.09 10.88 +nuancer nuancer ver 0.05 2.64 0.01 0.54 inf; +nuances nuance nom f p 1.98 20.81 0.89 9.93 +nuancier nuancier nom m s 0.04 0.00 0.04 0.00 +nuancé nuancé adj m s 0.20 0.81 0.16 0.41 +nuancée nuancé adj f s 0.20 0.81 0.04 0.07 +nuancées nuancer ver f p 0.05 2.64 0.00 0.07 par:pas; +nuancés nuancé adj m p 0.20 0.81 0.01 0.27 +néandertalien néandertalien adj m s 0.01 0.00 0.01 0.00 +néandertaliens néandertalien nom m p 0.02 0.00 0.02 0.00 +néanderthalien néanderthalien nom m s 0.01 0.07 0.01 0.07 +néanmoins néanmoins con 2.70 16.35 2.70 16.35 +néant néant nom m s 6.62 23.99 6.62 23.92 +nuança nuancer ver 0.05 2.64 0.00 0.27 ind:pas:3s; +nuançaient nuancer ver 0.05 2.64 0.00 0.14 ind:imp:3p; +nuançait nuancer ver 0.05 2.64 0.00 0.34 ind:imp:3s; +nuançant nuancer ver 0.05 2.64 0.00 0.14 par:pre; +nuançât nuancer ver 0.05 2.64 0.00 0.07 sub:imp:3s; +néantisation néantisation nom f s 0.00 0.07 0.00 0.07 +néantisée néantiser ver f s 0.00 0.07 0.00 0.07 par:pas; +néants néant nom m p 6.62 23.99 0.00 0.07 +nuas nuer ver 0.63 1.96 0.00 0.07 ind:pas:2s; +nubien nubien nom m s 0.13 0.07 0.10 0.00 +nubienne nubienne adj f s 0.04 0.00 0.04 0.00 +nubiens nubien nom m p 0.13 0.07 0.03 0.07 +nubile nubile adj s 0.31 0.54 0.25 0.34 +nubiles nubile adj f p 0.31 0.54 0.06 0.20 +nubilité nubilité nom f s 0.00 0.14 0.00 0.14 +nubuck nubuck nom m s 0.16 0.00 0.16 0.00 +nébuleuse nébuleux nom f s 0.71 1.22 0.71 0.61 +nébuleuses nébuleux adj f p 0.45 1.28 0.04 0.27 +nébuleux nébuleux adj m 0.45 1.28 0.38 0.68 +nébuliseur nébuliseur nom m s 0.01 0.00 0.01 0.00 +nébulosité nébulosité nom f s 0.10 0.14 0.10 0.14 +nucal nucal adj m s 0.01 0.00 0.01 0.00 +nécessaire nécessaire adj s 52.00 68.11 44.29 48.45 +nécessairement nécessairement adv 3.31 7.64 3.31 7.64 +nécessaires nécessaire adj p 52.00 68.11 7.71 19.66 +nécessita nécessiter ver 4.16 4.12 0.01 0.20 ind:pas:3s; +nécessitaient nécessiter ver 4.16 4.12 0.01 0.14 ind:imp:3p; +nécessitait nécessiter ver 4.16 4.12 0.54 1.01 ind:imp:3s; +nécessitant nécessiter ver 4.16 4.12 0.28 0.07 par:pre; +nécessite nécessiter ver 4.16 4.12 2.42 1.08 imp:pre:2s;ind:pre:3s; +nécessitent nécessiter ver 4.16 4.12 0.40 0.34 ind:pre:3p; +nécessiter nécessiter ver 4.16 4.12 0.16 0.07 inf; +nécessitera nécessiter ver 4.16 4.12 0.07 0.00 ind:fut:3s; +nécessiterait nécessiter ver 4.16 4.12 0.11 0.14 cnd:pre:3s; +nécessiteuse nécessiteux adj f s 0.21 0.47 0.01 0.00 +nécessiteuses nécessiteux adj f p 0.21 0.47 0.04 0.07 +nécessiteux nécessiteux nom m 0.76 0.54 0.76 0.54 +nécessité nécessité nom f s 5.93 33.78 5.61 28.78 +nécessitée nécessiter ver f s 4.16 4.12 0.00 0.14 par:pas; +nécessitées nécessiter ver f p 4.16 4.12 0.00 0.07 par:pas; +nécessités nécessité nom f p 5.93 33.78 0.32 5.00 +nucléaire nucléaire adj s 15.49 1.82 11.45 1.22 +nucléaires nucléaire adj p 15.49 1.82 4.04 0.61 +nucléique nucléique adj m s 0.02 0.00 0.02 0.00 +nucléoside nucléoside nom m s 0.01 0.00 0.01 0.00 +nucléotides nucléotide nom m p 0.09 0.00 0.09 0.00 +nucléée nucléé adj f s 0.01 0.00 0.01 0.00 +nucléus nucléus nom m 0.10 0.00 0.10 0.00 +nécro nécro nom f s 0.35 0.07 0.25 0.07 +nécrobioses nécrobiose nom f p 0.00 0.07 0.00 0.07 +nécrologe nécrologe nom m s 0.00 0.14 0.00 0.14 +nécrologie nécrologie nom f s 1.11 0.47 1.03 0.47 +nécrologies nécrologie nom f p 1.11 0.47 0.08 0.00 +nécrologique nécrologique adj s 0.53 0.47 0.41 0.34 +nécrologiques nécrologique adj p 0.53 0.47 0.12 0.14 +nécrologue nécrologue nom s 0.03 0.07 0.03 0.07 +nécromancie nécromancie nom f s 0.09 0.07 0.09 0.07 +nécromancien nécromancien nom m s 0.20 0.27 0.19 0.00 +nécromancienne nécromancien nom f s 0.20 0.27 0.01 0.07 +nécromanciens nécromancien nom m p 0.20 0.27 0.00 0.20 +nécromant nécromant nom m s 0.03 0.07 0.03 0.07 +nécrophage nécrophage adj s 0.03 0.07 0.03 0.07 +nécrophagie nécrophagie nom f s 0.00 0.07 0.00 0.07 +nécrophile nécrophile adj m s 0.25 0.00 0.20 0.00 +nécrophiles nécrophile adj f p 0.25 0.00 0.05 0.00 +nécrophilie nécrophilie nom f s 0.08 0.27 0.08 0.27 +nécropole nécropole nom f s 0.20 1.28 0.20 1.01 +nécropoles nécropole nom f p 0.20 1.28 0.00 0.27 +nécropsie nécropsie nom f s 0.05 0.00 0.05 0.00 +nécros nécro nom f p 0.35 0.07 0.11 0.00 +nécrosant nécroser ver 0.20 0.07 0.10 0.00 par:pre; +nécrose nécrose nom f s 0.45 0.27 0.28 0.14 +nécroser nécroser ver 0.20 0.07 0.01 0.00 inf; +nécroses nécrose nom f p 0.45 0.27 0.17 0.14 +nécrosé nécroser ver m s 0.20 0.07 0.07 0.07 par:pas; +nécrosée nécroser ver f s 0.20 0.07 0.01 0.00 par:pas; +nécrotique nécrotique adj m s 0.05 0.00 0.05 0.00 +nudisme nudisme nom m s 0.25 0.07 0.25 0.07 +nudiste nudiste nom s 2.24 0.47 0.81 0.07 +nudistes nudiste nom p 2.24 0.47 1.43 0.41 +nudité nudité nom f s 2.11 13.51 2.10 12.57 +nudités nudité nom f p 2.11 13.51 0.01 0.95 +nue_propriété nue_propriété nom f s 0.00 0.07 0.00 0.07 +née naître ver f s 116.11 119.32 23.63 22.36 par:pas; +nue nu adj f s 49.87 168.04 15.23 43.85 +nuer nuer ver 0.63 1.96 0.01 0.00 inf; +néerlandais néerlandais adj m 1.47 0.88 1.10 0.47 +néerlandaise néerlandais adj f s 1.47 0.88 0.37 0.14 +néerlandaises néerlandais adj f p 1.47 0.88 0.00 0.27 +nées naître ver f p 116.11 119.32 1.37 3.51 par:pas; +nues nu adj f 49.87 168.04 6.46 21.42 +néfaste néfaste adj s 1.65 4.39 1.27 2.70 +néfastes néfaste adj p 1.65 4.39 0.38 1.69 +néflier néflier nom m s 0.00 0.27 0.00 0.20 +néfliers néflier nom m p 0.00 0.27 0.00 0.07 +négateur négateur adj m s 0.00 0.14 0.00 0.14 +négatif négatif adj m s 16.02 8.31 8.33 3.31 +négatifs négatif adj m p 16.02 8.31 2.13 0.68 +négation négation nom f s 1.83 3.65 1.78 3.38 +négationnisme négationnisme nom m s 0.01 0.00 0.01 0.00 +négations négation nom f p 1.83 3.65 0.04 0.27 +négative négatif adj f s 16.02 8.31 3.33 3.65 +négativement négativement adv 0.12 1.08 0.12 1.08 +négatives négatif adj f p 16.02 8.31 2.23 0.68 +négativisme négativisme nom m s 0.01 0.00 0.01 0.00 +négativiste négativiste nom s 0.01 0.07 0.01 0.07 +négativité négativité nom f s 0.20 0.07 0.20 0.07 +néglige négliger ver 9.42 19.86 1.46 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +négligea négliger ver 9.42 19.86 0.01 1.08 ind:pas:3s; +négligeable négligeable adj s 1.16 5.00 0.82 3.92 +négligeables négligeable adj p 1.16 5.00 0.34 1.08 +négligeai négliger ver 9.42 19.86 0.00 0.20 ind:pas:1s; +négligeaient négliger ver 9.42 19.86 0.00 0.27 ind:imp:3p; +négligeais négliger ver 9.42 19.86 0.30 0.20 ind:imp:1s;ind:imp:2s; +négligeait négliger ver 9.42 19.86 0.12 1.62 ind:imp:3s; +négligeant négliger ver 9.42 19.86 0.17 2.16 par:pre; +négligemment négligemment adv 0.04 8.45 0.04 8.45 +négligence négligence nom f s 3.01 5.00 2.96 4.12 +négligences négligence nom f p 3.01 5.00 0.05 0.88 +négligent négligent adj m s 1.70 3.31 0.92 2.09 +négligente négligent adj f s 1.70 3.31 0.36 0.95 +négligents négligent adj m p 1.70 3.31 0.41 0.27 +négligeons négliger ver 9.42 19.86 0.30 0.00 imp:pre:1p;ind:pre:1p; +négligeât négliger ver 9.42 19.86 0.00 0.20 sub:imp:3s; +négliger négliger ver 9.42 19.86 1.62 4.73 inf; +négligera négliger ver 9.42 19.86 0.00 0.07 ind:fut:3s; +négligerai négliger ver 9.42 19.86 0.14 0.00 ind:fut:1s; +négligerait négliger ver 9.42 19.86 0.01 0.14 cnd:pre:3s; +négligeriez négliger ver 9.42 19.86 0.01 0.00 cnd:pre:2p; +négliges négliger ver 9.42 19.86 0.23 0.20 ind:pre:2s; +négligez négliger ver 9.42 19.86 1.34 0.07 imp:pre:2p;ind:pre:2p; +négligiez négliger ver 9.42 19.86 0.01 0.00 ind:imp:2p; +négligions négliger ver 9.42 19.86 0.00 0.20 ind:imp:1p; +négligèrent négliger ver 9.42 19.86 0.00 0.07 ind:pas:3p; +négligé négliger ver m s 9.42 19.86 2.71 4.46 par:pas; +négligée négligé adj f s 1.37 2.70 0.65 1.08 +négligées négligé adj f p 1.37 2.70 0.11 0.34 +négligés négligé adj m p 1.37 2.70 0.14 0.54 +négoce négoce nom m s 0.20 2.09 0.10 2.03 +négoces négoce nom m p 0.20 2.09 0.10 0.07 +négocia négocier ver 18.82 10.81 0.03 0.14 ind:pas:3s; +négociable négociable adj s 1.31 0.68 1.08 0.41 +négociables négociable adj p 1.31 0.68 0.23 0.27 +négociaient négocier ver 18.82 10.81 0.04 0.34 ind:imp:3p; +négociais négocier ver 18.82 10.81 0.08 0.20 ind:imp:1s; +négociait négocier ver 18.82 10.81 0.23 0.81 ind:imp:3s; +négociant négociant nom m s 0.43 2.43 0.30 0.88 +négociante négociant nom f s 0.43 2.43 0.04 0.00 +négociants négociant nom m p 0.43 2.43 0.10 1.55 +négociateur négociateur nom m s 1.37 1.22 0.94 0.61 +négociateurs négociateur nom m p 1.37 1.22 0.38 0.61 +négociation négociation nom f s 6.70 11.28 2.71 2.84 +négociations négociation nom f p 6.70 11.28 3.99 8.45 +négociatrice négociateur nom f s 1.37 1.22 0.05 0.00 +négociatrices négociatrice nom f p 0.01 0.00 0.01 0.00 +négocie négocier ver 18.82 10.81 2.49 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +négocient négocier ver 18.82 10.81 0.40 0.14 ind:pre:3p; +négocier négocier ver 18.82 10.81 11.88 5.61 inf; +négociera négocier ver 18.82 10.81 0.24 0.00 ind:fut:3s; +négocierai négocier ver 18.82 10.81 0.19 0.14 ind:fut:1s; +négocieraient négocier ver 18.82 10.81 0.00 0.07 cnd:pre:3p; +négocierions négocier ver 18.82 10.81 0.02 0.00 cnd:pre:1p; +négocierons négocier ver 18.82 10.81 0.28 0.00 ind:fut:1p; +négocieront négocier ver 18.82 10.81 0.19 0.00 ind:fut:3p; +négociez négocier ver 18.82 10.81 0.34 0.07 imp:pre:2p;ind:pre:2p; +négocions négocier ver 18.82 10.81 0.45 0.00 imp:pre:1p;ind:pre:1p; +négocié négocier ver m s 18.82 10.81 1.76 1.22 par:pas; +négociée négocier ver f s 18.82 10.81 0.00 0.14 par:pas; +négociées négocier ver f p 18.82 10.81 0.01 0.00 par:pas; +négociés négocier ver m p 18.82 10.81 0.09 0.47 par:pas; +négresse nègre nom f s 18.93 27.64 1.56 3.78 +négresses négresse nom f p 0.15 0.00 0.15 0.00 +négrier négrier adj m s 0.13 0.34 0.12 0.34 +négriers négrier nom m p 0.33 0.54 0.23 0.07 +négril négril nom m s 0.00 0.07 0.00 0.07 +négrillon négrillon nom m s 0.07 1.01 0.04 0.14 +négrillons négrillon nom m p 0.07 1.01 0.04 0.88 +négrière négrier nom f s 0.33 0.54 0.02 0.00 +négritude négritude nom f s 0.44 0.41 0.44 0.41 +négro négro nom m s 6.02 2.97 4.64 2.43 +négroïde négroïde adj s 0.09 1.28 0.07 0.74 +négroïdes négroïde adj p 0.09 1.28 0.02 0.54 +négrophile négrophile adj m s 0.04 0.00 0.02 0.00 +négrophiles négrophile adj f p 0.04 0.00 0.02 0.00 +négros négro nom m p 6.02 2.97 1.38 0.54 +négus négus nom m 0.10 1.55 0.10 1.55 +nui nuire ver m s 14.76 11.22 1.31 0.61 par:pas; +nuira nuire ver 14.76 11.22 0.59 0.14 ind:fut:3s; +nuirai nuire ver 14.76 11.22 0.01 0.00 ind:fut:1s; +nuirait nuire ver 14.76 11.22 0.27 0.34 cnd:pre:3s; +nuiras nuire ver 14.76 11.22 0.11 0.00 ind:fut:2s; +nuire nuire ver 14.76 11.22 5.98 4.46 inf; +nuiront nuire ver 14.76 11.22 0.03 0.00 ind:fut:3p; +nuis nuire ver 14.76 11.22 0.20 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +nuisît nuire ver 14.76 11.22 0.00 0.07 sub:imp:3s; +nuisaient nuire ver 14.76 11.22 0.10 0.07 ind:imp:3p; +nuisait nuire ver 14.76 11.22 0.05 0.61 ind:imp:3s; +nuisance nuisance nom f s 0.67 0.27 0.38 0.14 +nuisances nuisance nom f p 0.67 0.27 0.30 0.14 +nuisant nuire ver 14.76 11.22 0.03 0.07 par:pre; +nuise nuire ver 14.76 11.22 0.22 0.41 sub:pre:1s;sub:pre:3s; +nuisent nuire ver 14.76 11.22 0.54 0.27 ind:pre:3p; +nuisette nuisette nom f s 0.33 0.07 0.33 0.07 +nuisez nuire ver 14.76 11.22 0.02 0.00 ind:pre:2p; +nuisible nuisible adj s 0.83 2.23 0.56 1.42 +nuisibles nuisible adj p 0.83 2.23 0.28 0.81 +nuit nuit nom f s 586.54 738.24 557.56 672.36 +nuitamment nuitamment adv 0.02 0.47 0.02 0.47 +nuitards nuitard nom m p 0.01 0.00 0.01 0.00 +nuiteux nuiteux nom m s 0.01 0.20 0.01 0.20 +nuits nuit nom f p 586.54 738.24 28.98 65.88 +nuitée nuitée nom f s 0.01 0.34 0.00 0.20 +nuitées nuitée nom f p 0.01 0.34 0.01 0.14 +nul nul adj_ind m s 44.53 35.07 28.80 19.93 +nullard nullard nom m s 0.51 0.20 0.20 0.07 +nullarde nullard adj f s 0.17 0.14 0.03 0.07 +nullardes nullard adj f p 0.17 0.14 0.00 0.07 +nullards nullard nom m p 0.51 0.20 0.32 0.14 +nulle nulle adj_ind f s 37.84 32.70 37.84 32.70 +nullement nullement adv 1.45 14.19 1.45 14.19 +nulles nulles adj_ind f p 0.41 0.34 0.41 0.34 +nullissime nullissime adj s 0.01 0.07 0.01 0.07 +nullité nullité nom f s 1.20 2.77 0.96 2.16 +nullités nullité nom f p 1.20 2.77 0.24 0.61 +nullos nullos adj s 0.18 0.00 0.18 0.00 +nuls nuls adj_ind m p 0.63 0.34 0.63 0.34 +nématodes nématode nom m p 0.01 0.00 0.01 0.00 +numerus_clausus numerus_clausus nom m 0.00 0.07 0.00 0.07 +numide numide nom s 0.04 0.14 0.04 0.14 +numides numide adj p 0.00 0.34 0.00 0.27 +numismate numismate nom s 0.01 0.47 0.01 0.34 +numismates numismate nom p 0.01 0.47 0.00 0.14 +numismatique numismatique adj m s 0.01 0.14 0.01 0.14 +numéraire numéraire nom m s 0.01 0.27 0.01 0.27 +numéral numéral adj m s 0.00 0.07 0.00 0.07 +numérateur numérateur nom m s 0.02 0.00 0.02 0.00 +numération numération nom f s 0.23 0.07 0.23 0.07 +numérique numérique adj s 3.34 0.41 2.41 0.27 +numériquement numériquement adv 0.09 0.20 0.09 0.20 +numériques numérique adj p 3.34 0.41 0.93 0.14 +numérisation numérisation nom f s 0.07 0.00 0.07 0.00 +numérise numériser ver 0.22 0.00 0.04 0.00 imp:pre:2s;ind:pre:3s; +numériser numériser ver 0.22 0.00 0.02 0.00 inf; +numérisez numériser ver 0.22 0.00 0.02 0.00 imp:pre:2p; +numérisé numériser ver m s 0.22 0.00 0.09 0.00 par:pas; +numérisée numériser ver f s 0.22 0.00 0.01 0.00 par:pas; +numérisées numériser ver f p 0.22 0.00 0.04 0.00 par:pas; +numéro numéro nom m s 173.48 70.07 162.08 60.00 +numérologie numérologie nom f s 0.14 0.00 0.14 0.00 +numérologue numérologue nom s 0.05 0.00 0.05 0.00 +numéros numéro nom m p 173.48 70.07 11.40 10.07 +numérota numéroter ver 0.50 1.89 0.00 0.07 ind:pas:3s; +numérotage numérotage nom m s 0.00 0.14 0.00 0.14 +numérotaient numéroter ver 0.50 1.89 0.00 0.07 ind:imp:3p; +numérotait numéroter ver 0.50 1.89 0.01 0.20 ind:imp:3s; +numérotation numérotation nom f s 0.12 0.07 0.12 0.07 +numérote numéroter ver 0.50 1.89 0.11 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +numérotent numéroter ver 0.50 1.89 0.01 0.07 ind:pre:3p; +numéroter numéroter ver 0.50 1.89 0.04 0.27 inf; +numérotez numéroter ver 0.50 1.89 0.03 0.07 imp:pre:2p; +numéroté numéroter ver m s 0.50 1.89 0.20 0.14 par:pas; +numérotée numéroté adj f s 0.53 1.62 0.11 0.07 +numérotées numéroté adj f p 0.53 1.62 0.15 0.68 +numérotés numéroté adj m p 0.53 1.62 0.08 0.54 +nunchaku nunchaku nom m s 0.24 0.00 0.05 0.00 +nunchakus nunchaku nom m p 0.24 0.00 0.19 0.00 +nuncupatifs nuncupatif adj m p 0.00 0.07 0.00 0.07 +nénesse nénesse nom m s 0.00 0.27 0.00 0.14 +nénesses nénesse nom m p 0.00 0.27 0.00 0.14 +nénette nénette nom f s 0.85 3.72 0.69 2.77 +nénettes nénette nom f p 0.85 3.72 0.16 0.95 +néné néné nom m s 5.41 3.04 3.76 2.03 +nunuche nunuche adj s 0.51 0.00 0.35 0.00 +nunuches nunuche adj p 0.51 0.00 0.16 0.00 +nénuphar nénuphar nom m s 0.50 2.91 0.25 0.47 +nénuphars nénuphar nom m p 0.50 2.91 0.24 2.43 +nénés néné nom m p 5.41 3.04 1.65 1.01 +néo_barbare néo_barbare adj f p 0.00 0.07 0.00 0.07 +néo_classique néo_classique adj s 0.12 0.34 0.12 0.34 +néo_colonialisme néo_colonialisme nom m s 0.00 0.20 0.00 0.20 +néo_communiste néo_communiste adj f s 0.01 0.00 0.01 0.00 +néo_fascisme néo_fascisme nom m s 0.01 0.07 0.01 0.07 +néo_fasciste néo_fasciste adj p 0.01 0.00 0.01 0.00 +néo_fasciste néo_fasciste nom p 0.01 0.00 0.01 0.00 +néo_figuration néo_figuration nom f s 0.00 0.07 0.00 0.07 +néo_flic néo_flic nom m p 0.02 0.00 0.02 0.00 +néo_gangster néo_gangster nom m s 0.01 0.00 0.01 0.00 +néo_gothique néo_gothique adj f s 0.00 0.20 0.00 0.14 +néo_gothique néo_gothique adj p 0.00 0.20 0.00 0.07 +néo_grec néo_grec adj m s 0.00 0.07 0.00 0.07 +néo_hellénique néo_hellénique adj f p 0.00 0.07 0.00 0.07 +néo_malthusianisme néo_malthusianisme nom m s 0.00 0.14 0.00 0.14 +néo_mauresque néo_mauresque adj m s 0.00 0.14 0.00 0.07 +néo_mauresque néo_mauresque adj f p 0.00 0.14 0.00 0.07 +néo_mouvement néo_mouvement nom m s 0.00 0.07 0.00 0.07 +néo_renaissant néo_renaissant adj m s 0.00 0.07 0.00 0.07 +néo_romantique néo_romantique adj f s 0.01 0.00 0.01 0.00 +néo_réalisme néo_réalisme nom m s 0.10 0.07 0.10 0.07 +néo_réaliste néo_réaliste adj m s 0.00 0.20 0.00 0.07 +néo_réaliste néo_réaliste adj m p 0.00 0.20 0.00 0.14 +néo_russe néo_russe adj s 0.00 0.14 0.00 0.14 +néo_zélandais néo_zélandais adj m 0.11 0.14 0.10 0.14 +néo_zélandais néo_zélandais adj f s 0.11 0.14 0.01 0.00 +néo néo adv 0.62 0.61 0.62 0.61 +nuoc_mâm nuoc_mâm nom m 0.00 0.07 0.00 0.07 +néoclassique néoclassique adj m s 0.01 0.07 0.01 0.07 +néocolonial néocolonial adj m s 0.00 0.07 0.00 0.07 +néocolonialisme néocolonialisme nom m s 0.01 0.00 0.01 0.00 +néocortex néocortex nom m 0.15 0.00 0.15 0.00 +néofascisme néofascisme nom m s 0.01 0.00 0.01 0.00 +néogothique néogothique adj m s 0.14 0.07 0.14 0.07 +néolibéralisme néolibéralisme nom m s 0.14 0.00 0.14 0.00 +néolithique néolithique nom s 0.02 0.14 0.02 0.14 +néolithiques néolithique adj f p 0.01 0.14 0.00 0.07 +néologisme néologisme nom m s 0.01 0.61 0.01 0.27 +néologismes néologisme nom m p 0.01 0.61 0.00 0.34 +néon néon nom m s 1.81 10.81 1.21 7.16 +néonatal néonatal adj m s 0.11 0.00 0.04 0.00 +néonatale néonatal adj f s 0.11 0.00 0.07 0.00 +néonazie néonazi adj f s 0.11 0.00 0.01 0.00 +néonazis néonazi adj m p 0.11 0.00 0.10 0.00 +néons néon nom m p 1.81 10.81 0.61 3.65 +néophyte néophyte nom s 0.17 0.95 0.12 0.54 +néophytes néophyte nom p 0.17 0.95 0.05 0.41 +néoplasie néoplasie nom f s 0.01 0.00 0.01 0.00 +néoplasique néoplasique adj s 0.04 0.00 0.04 0.00 +néoplasme néoplasme nom m s 0.01 0.07 0.01 0.07 +néoplatonisme néoplatonisme nom m s 0.00 0.07 0.00 0.07 +néoprène néoprène nom m s 0.03 0.00 0.03 0.00 +néoréalisme néoréalisme nom m s 0.02 0.00 0.02 0.00 +népalais népalais adj m p 0.03 0.20 0.02 0.07 +népalaise népalais nom f s 0.01 0.20 0.00 0.14 +népalaises népalais adj f p 0.03 0.20 0.01 0.07 +népenthès népenthès nom m 0.04 0.07 0.04 0.07 +néphrectomie néphrectomie nom f s 0.03 0.00 0.03 0.00 +néphrite néphrite nom f s 0.11 0.07 0.11 0.07 +néphrologie néphrologie nom f s 0.05 0.00 0.05 0.00 +néphrologue néphrologue nom s 0.03 0.00 0.03 0.00 +néphrétique néphrétique adj f s 0.02 0.20 0.01 0.07 +néphrétiques néphrétique adj f p 0.02 0.20 0.01 0.14 +népotisme népotisme nom m s 0.13 0.20 0.13 0.20 +nuptial nuptial adj m s 2.92 4.32 1.05 1.35 +nuptiale nuptial adj f s 2.92 4.32 1.56 2.09 +nuptiales nuptial adj f p 2.92 4.32 0.17 0.68 +nuptialité nuptialité nom f s 0.00 0.20 0.00 0.20 +nuptiaux nuptial adj m p 2.92 4.32 0.14 0.20 +nuque nuque nom f s 7.80 50.95 7.58 48.51 +nuques nuque nom f p 7.80 50.95 0.22 2.43 +néroli néroli nom m s 0.03 0.00 0.03 0.00 +nurse nurse nom f s 2.24 3.92 2.14 3.18 +nurseries nurseries nom f p 0.00 0.07 0.00 0.07 +nursery nursery nom f s 1.04 0.74 1.04 0.74 +nurses nurse nom f p 2.24 3.92 0.10 0.74 +nursing nursing nom m s 0.03 0.00 0.03 0.00 +néréide néréide nom f s 0.00 0.20 0.00 0.07 +néréides néréide nom f p 0.00 0.20 0.00 0.14 +nés naître ver m p 116.11 119.32 8.83 7.50 par:pas; +nus nu adj m p 49.87 168.04 10.80 48.92 +nutriment nutriment nom m s 0.21 0.00 0.02 0.00 +nutriments nutriment nom m p 0.21 0.00 0.19 0.00 +nutritif nutritif adj m s 1.05 0.41 0.16 0.20 +nutritifs nutritif adj m p 1.05 0.41 0.21 0.00 +nutrition nutrition nom f s 0.86 0.34 0.86 0.34 +nutritionnel nutritionnel adj m s 0.10 0.07 0.04 0.00 +nutritionnelle nutritionnel adj f s 0.10 0.07 0.06 0.07 +nutritionniste nutritionniste nom s 0.25 0.00 0.25 0.00 +nutritive nutritif adj f s 1.05 0.41 0.51 0.07 +nutritives nutritif adj f p 1.05 0.41 0.18 0.14 +nuée nuée nom f s 1.27 10.74 0.54 3.99 +nuées nuée nom f p 1.27 10.74 0.74 6.76 +névralgie névralgie nom f s 0.21 0.61 0.17 0.34 +névralgies névralgie nom f p 0.21 0.61 0.04 0.27 +névralgique névralgique adj m s 0.12 0.14 0.12 0.00 +névralgiques névralgique adj m p 0.12 0.14 0.00 0.14 +névrite névrite nom f s 0.17 0.07 0.17 0.07 +névropathe névropathe nom s 0.12 0.14 0.12 0.14 +névroptères névroptère nom m p 0.00 0.07 0.00 0.07 +névrose névrose nom f s 1.36 2.50 1.04 1.28 +névroses névrose nom f p 1.36 2.50 0.32 1.22 +névrosé névrosé adj m s 1.20 0.74 0.49 0.14 +névrosée névrosé adj f s 1.20 0.74 0.61 0.41 +névrosées névrosé adj f p 1.20 0.74 0.04 0.14 +névrosés névrosé nom m p 0.58 0.41 0.24 0.20 +névrotique névrotique adj s 0.21 0.27 0.13 0.14 +névrotiques névrotique adj p 0.21 0.27 0.08 0.14 +névé névé nom m s 0.00 0.27 0.00 0.14 +névés névé nom m p 0.00 0.27 0.00 0.14 +nyctalope nyctalope adj s 0.00 0.20 0.00 0.14 +nyctalopes nyctalope nom p 0.00 0.41 0.00 0.34 +nylon nylon nom m s 1.33 6.42 1.27 6.42 +nylons nylon nom m p 1.33 6.42 0.05 0.00 +nymphal nymphal adj m s 0.04 0.00 0.04 0.00 +nymphe nymphe nom f s 1.77 5.81 0.88 1.76 +nymphes nymphe nom f p 1.77 5.81 0.90 4.05 +nymphette nymphette nom f s 0.10 0.68 0.07 0.41 +nymphettes nymphette nom f p 0.10 0.68 0.03 0.27 +nympho nympho nom f s 0.80 0.14 0.69 0.07 +nymphomane nymphomane nom s 0.92 0.20 0.80 0.07 +nymphomanes nymphomane nom p 0.92 0.20 0.13 0.14 +nymphomanie nymphomanie nom f s 0.20 0.00 0.20 0.00 +nymphos nympho nom f p 0.80 0.14 0.11 0.07 +nymphéa nymphéa nom m s 0.00 0.34 0.00 0.07 +nymphéas nymphéa nom m p 0.00 0.34 0.00 0.27 +nymphées nymphée nom m p 0.14 0.07 0.14 0.07 +à_côté à_côté nom m s 0.00 0.68 0.00 0.34 +à_côté à_côté nom m p 0.00 0.68 0.00 0.34 +à_coup à_coup nom m s 0.00 4.80 0.00 0.54 +à_coup à_coup nom m p 0.00 4.80 0.00 4.26 +à_dieu_vat à_dieu_vat ono 0.00 0.07 0.00 0.07 +à_peu_près à_peu_près nom m 0.00 0.74 0.00 0.74 +à_pic à_pic nom m 0.00 1.42 0.00 1.08 +à_pic à_pic nom m p 0.00 1.42 0.00 0.34 +à_plat à_plat nom m s 0.00 0.27 0.00 0.14 +à_plat à_plat nom m p 0.00 0.27 0.00 0.14 +à_propos à_propos nom m 0.00 0.88 0.00 0.88 +à_valoir à_valoir nom m 0.00 0.27 0.00 0.27 +à_brûle_pourpoint à_brûle_pourpoint 0.14 0.00 0.14 0.00 +à_cloche_pied à_cloche_pied 0.22 0.00 0.22 0.00 +à_cropetons à_cropetons adv 0.00 0.07 0.00 0.07 +à_croupetons à_croupetons adv 0.01 0.95 0.01 0.95 +à_fortiori à_fortiori adv 0.16 0.20 0.16 0.20 +à_giorno à_giorno adv 0.00 0.07 0.00 0.07 +à_glagla à_glagla adv 0.00 0.07 0.00 0.07 +à_jeun à_jeun adv 1.45 3.85 1.27 3.85 +à_l_aveuglette à_l_aveuglette adv 1.11 2.16 1.11 2.16 +à_l_encan à_l_encan adv 0.01 0.14 0.01 0.14 +à_l_encontre à_l_encontre pre 2.67 1.89 2.67 1.89 +à_l_envi à_l_envi adv 0.20 0.61 0.20 0.61 +à_l_improviste à_l_improviste adv 2.67 4.53 2.67 4.53 +à_l_instar à_l_instar pre 0.26 6.42 0.26 6.42 +à_la_daumont à_la_daumont adv 0.00 0.07 0.00 0.07 +à_la_saint_glinglin à_la_saint_glinglin adv 0.02 0.00 0.02 0.00 +à_leur_encontre à_leur_encontre adv 0.03 0.07 0.03 0.07 +à_lurelure à_lurelure adv 0.00 0.20 0.00 0.20 +à_mon_encontre à_mon_encontre adv 0.05 0.14 0.05 0.14 +à_notre_encontre à_notre_encontre adv 0.02 0.07 0.02 0.07 +a_posteriori a_posteriori adv 0.05 0.20 0.04 0.07 +a_priori a_priori adv 1.04 3.85 0.41 1.28 +à_rebrousse_poil à_rebrousse_poil 0.08 0.00 0.08 0.00 +à_son_encontre à_son_encontre adv 0.05 0.20 0.05 0.20 +à_tire_larigot à_tire_larigot 0.17 0.00 0.17 0.00 +à_ton_encontre à_ton_encontre adv 0.02 0.00 0.02 0.00 +à_tâtons à_tâtons adv 0.60 8.78 0.60 8.78 +à_touche_touche à_touche_touche 0.01 0.00 0.01 0.00 +à_tue_tête à_tue_tête 0.54 0.00 0.54 0.00 +à_votre_encontre à_votre_encontre adv 0.15 0.00 0.15 0.00 +à à pre 12190.40 19209.05 12190.40 19209.05 +o o nom m 57.07 11.49 57.07 11.49 +où où pro_rel 2177.25 2068.11 1546.44 1767.23 +oïl oïl nom m 0.01 0.00 0.01 0.00 +oaristys oaristys nom f 0.00 0.07 0.00 0.07 +oasis oasis nom f 1.61 6.42 1.61 6.42 +ob ob nom m s 0.25 0.07 0.25 0.07 +obi obi nom f s 0.30 0.07 0.30 0.07 +obituaire obituaire adj s 0.00 0.07 0.00 0.07 +objecta objecter ver 0.87 6.49 0.00 2.43 ind:pas:3s; +objectai objecter ver 0.87 6.49 0.00 0.47 ind:pas:1s; +objectais objecter ver 0.87 6.49 0.01 0.07 ind:imp:1s;ind:imp:2s; +objectait objecter ver 0.87 6.49 0.01 0.68 ind:imp:3s; +objectal objectal adj m s 0.01 0.07 0.00 0.07 +objectale objectal adj f s 0.01 0.07 0.01 0.00 +objectant objecter ver 0.87 6.49 0.00 0.14 par:pre; +objecte objecter ver 0.87 6.49 0.46 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +objectent objecter ver 0.87 6.49 0.00 0.07 ind:pre:3p; +objecter objecter ver 0.87 6.49 0.28 0.54 inf; +objectera objecter ver 0.87 6.49 0.01 0.07 ind:fut:3s; +objecterez objecter ver 0.87 6.49 0.01 0.07 ind:fut:2p; +objecteront objecter ver 0.87 6.49 0.01 0.00 ind:fut:3p; +objecteur objecteur nom m s 0.43 0.20 0.36 0.20 +objecteurs objecteur nom m p 0.43 0.20 0.07 0.00 +objectez objecter ver 0.87 6.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +objectif objectif nom m s 18.91 12.43 15.44 9.19 +objectifs objectif nom m p 18.91 12.43 3.46 3.24 +objection objection nom f s 14.18 7.97 12.07 3.78 +objections objection nom f p 14.18 7.97 2.10 4.19 +objectivation objectivation nom f s 0.11 0.00 0.11 0.00 +objective objectif adj f s 4.30 3.72 1.34 1.42 +objectivement objectivement adv 0.41 1.82 0.41 1.82 +objectivent objectiver ver 0.19 0.07 0.01 0.07 ind:pre:3p; +objectives objectif adj f p 4.30 3.72 0.20 0.41 +objectivité objectivité nom f s 0.89 0.68 0.89 0.68 +objectèrent objecter ver 0.87 6.49 0.00 0.07 ind:pas:3p; +objecté objecter ver m s 0.87 6.49 0.04 0.81 par:pas; +objet objet nom m s 45.94 124.32 26.88 67.09 +objets objet nom m p 45.94 124.32 19.06 57.23 +objurgation objurgation nom f s 0.00 2.03 0.00 0.14 +objurgations objurgation nom f p 0.00 2.03 0.00 1.89 +objurgua objurguer ver 0.00 0.14 0.00 0.07 ind:pas:3s; +objurguant objurguer ver 0.00 0.14 0.00 0.07 par:pre; +oblatif oblatif adj m s 0.00 0.20 0.00 0.07 +oblation oblation nom f s 0.00 0.20 0.00 0.20 +oblative oblatif adj f s 0.00 0.20 0.00 0.14 +oblats oblat nom m p 0.00 0.07 0.00 0.07 +obligado obligado adv 0.00 0.14 0.00 0.14 +obligataire obligataire adj m s 0.02 0.00 0.01 0.00 +obligataires obligataire adj m p 0.02 0.00 0.01 0.00 +obligation obligation nom f s 11.34 15.74 6.66 9.12 +obligations obligation nom f p 11.34 15.74 4.69 6.62 +obligatoire obligatoire adj s 5.57 7.97 5.18 6.49 +obligatoirement obligatoirement adv 1.13 3.04 1.13 3.04 +obligatoires obligatoire adj p 5.57 7.97 0.39 1.49 +oblige obliger ver 91.63 107.57 14.74 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +obligea obliger ver 91.63 107.57 0.47 4.39 ind:pas:3s; +obligeai obliger ver 91.63 107.57 0.00 0.34 ind:pas:1s; +obligeaient obliger ver 91.63 107.57 0.17 2.43 ind:imp:3p; +obligeais obliger ver 91.63 107.57 0.04 0.47 ind:imp:1s;ind:imp:2s; +obligeait obliger ver 91.63 107.57 1.40 9.32 ind:imp:3s; +obligeamment obligeamment adv 0.00 0.68 0.00 0.68 +obligeance obligeance nom f s 0.85 1.62 0.84 1.55 +obligeances obligeance nom f p 0.85 1.62 0.01 0.07 +obligeant obliger ver 91.63 107.57 0.45 4.19 par:pre; +obligeante obligeant adj f s 0.36 1.55 0.14 0.14 +obligeantes obligeant adj f p 0.36 1.55 0.01 0.20 +obligeants obligeant adj m p 0.36 1.55 0.03 0.14 +obligent obliger ver 91.63 107.57 1.93 2.30 ind:pre:3p; +obligeons obliger ver 91.63 107.57 0.06 0.07 imp:pre:1p;ind:pre:1p; +obligeât obliger ver 91.63 107.57 0.00 0.54 sub:imp:3s; +obliger obliger ver 91.63 107.57 6.30 9.39 ind:pre:2p;inf; +obligera obliger ver 91.63 107.57 0.84 0.20 ind:fut:3s; +obligerai obliger ver 91.63 107.57 0.77 0.07 ind:fut:1s; +obligerais obliger ver 91.63 107.57 0.18 0.07 cnd:pre:1s;cnd:pre:2s; +obligerait obliger ver 91.63 107.57 0.78 1.08 cnd:pre:3s; +obligeras obliger ver 91.63 107.57 0.15 0.14 ind:fut:2s; +obligerez obliger ver 91.63 107.57 0.04 0.07 ind:fut:2p; +obligeriez obliger ver 91.63 107.57 0.05 0.14 cnd:pre:2p; +obligeront obliger ver 91.63 107.57 0.06 0.07 ind:fut:3p; +obliges obliger ver 91.63 107.57 1.28 0.34 ind:pre:2s; +obligez obliger ver 91.63 107.57 2.81 0.20 imp:pre:2p;ind:pre:2p; +obligiez obliger ver 91.63 107.57 0.16 0.00 ind:imp:2p; +obligèrent obliger ver 91.63 107.57 0.20 0.61 ind:pas:3p; +obligé obliger ver m s 91.63 107.57 36.43 35.07 par:pas; +obligée obliger ver f s 91.63 107.57 12.01 11.96 par:pas; +obligées obliger ver f p 91.63 107.57 0.75 0.88 par:pas; +obligés obliger ver m p 91.63 107.57 9.56 10.27 par:pas; +obliqua obliquer ver 0.16 5.41 0.00 2.30 ind:pas:3s; +obliquaient obliquer ver 0.16 5.41 0.00 0.14 ind:imp:3p; +obliquait obliquer ver 0.16 5.41 0.00 0.20 ind:imp:3s; +obliquant obliquer ver 0.16 5.41 0.10 0.54 par:pre; +oblique oblique adj s 0.83 11.49 0.81 7.70 +obliquement obliquement adv 0.02 2.23 0.02 2.23 +obliquent obliquer ver 0.16 5.41 0.01 0.14 ind:pre:3p; +obliquer obliquer ver 0.16 5.41 0.00 0.54 inf; +obliques oblique adj p 0.83 11.49 0.02 3.78 +obliquez obliquer ver 0.16 5.41 0.03 0.00 imp:pre:2p; +obliquité obliquité nom f s 0.01 0.07 0.01 0.07 +obliquâmes obliquer ver 0.16 5.41 0.00 0.07 ind:pas:1p; +obliquèrent obliquer ver 0.16 5.41 0.00 0.34 ind:pas:3p; +obliqué obliquer ver m s 0.16 5.41 0.00 0.41 par:pas; +oblitère oblitérer ver 0.17 1.42 0.00 0.27 ind:pre:3s; +oblitèrent oblitérer ver 0.17 1.42 0.00 0.07 ind:pre:3p; +oblitéraient oblitérer ver 0.17 1.42 0.00 0.07 ind:imp:3p; +oblitérait oblitérer ver 0.17 1.42 0.00 0.27 ind:imp:3s; +oblitération oblitération nom f s 0.03 0.07 0.03 0.07 +oblitérer oblitérer ver 0.17 1.42 0.07 0.20 inf; +oblitérons oblitérer ver 0.17 1.42 0.01 0.00 imp:pre:1p; +oblitérèrent oblitérer ver 0.17 1.42 0.00 0.07 ind:pas:3p; +oblitéré oblitérer ver m s 0.17 1.42 0.04 0.14 par:pas; +oblitérée oblitérer ver f s 0.17 1.42 0.02 0.14 par:pas; +oblitérées oblitérer ver f p 0.17 1.42 0.01 0.14 par:pas; +oblitérés oblitérer ver m p 0.17 1.42 0.02 0.07 par:pas; +oblong oblong adj m s 0.05 3.24 0.02 1.01 +oblongs oblong adj m p 0.05 3.24 0.00 0.27 +oblongue oblong adj f s 0.05 3.24 0.03 1.49 +oblongues oblong adj f p 0.05 3.24 0.00 0.47 +obnubila obnubiler ver 0.50 1.82 0.00 0.07 ind:pas:3s; +obnubilait obnubiler ver 0.50 1.82 0.01 0.00 ind:imp:3s; +obnubilant obnubiler ver 0.50 1.82 0.00 0.07 par:pre; +obnubilation obnubilation nom f s 0.00 0.14 0.00 0.14 +obnubile obnubiler ver 0.50 1.82 0.03 0.07 ind:pre:3s; +obnubiler obnubiler ver 0.50 1.82 0.02 0.27 inf; +obnubilé obnubiler ver m s 0.50 1.82 0.22 0.88 par:pas; +obnubilée obnubiler ver f s 0.50 1.82 0.17 0.07 par:pas; +obnubilées obnubiler ver f p 0.50 1.82 0.00 0.07 par:pas; +obnubilés obnubiler ver m p 0.50 1.82 0.04 0.34 par:pas; +obole obole nom f s 0.11 1.22 0.11 1.01 +oboles obole nom f p 0.11 1.22 0.00 0.20 +obscène obscène adj s 4.48 13.04 3.25 7.91 +obscènement obscènement adv 0.01 0.27 0.01 0.27 +obscènes obscène adj p 4.48 13.04 1.23 5.14 +obscénité obscénité nom f s 1.63 3.78 0.92 2.23 +obscénités obscénité nom f p 1.63 3.78 0.71 1.55 +obscur obscur adj m s 11.06 67.57 5.00 29.12 +obscurantisme obscurantisme nom m s 0.14 0.81 0.14 0.74 +obscurantismes obscurantisme nom m p 0.14 0.81 0.00 0.07 +obscurantiste obscurantiste nom s 0.14 0.00 0.14 0.00 +obscurcît obscurcir ver 1.42 6.69 0.00 0.07 sub:imp:3s; +obscurci obscurcir ver m s 1.42 6.69 0.57 1.28 par:pas; +obscurcie obscurcir ver f s 1.42 6.69 0.15 0.74 par:pas; +obscurcies obscurcir ver f p 1.42 6.69 0.00 0.20 par:pas; +obscurcir obscurcir ver 1.42 6.69 0.24 0.88 inf; +obscurcira obscurcir ver 1.42 6.69 0.04 0.14 ind:fut:3s; +obscurcirait obscurcir ver 1.42 6.69 0.00 0.07 cnd:pre:3s; +obscurcis obscurcir ver m p 1.42 6.69 0.00 0.27 par:pas; +obscurcissaient obscurcir ver 1.42 6.69 0.01 0.47 ind:imp:3p; +obscurcissait obscurcir ver 1.42 6.69 0.01 0.68 ind:imp:3s; +obscurcissant obscurcir ver 1.42 6.69 0.00 0.14 par:pre; +obscurcissement obscurcissement nom m s 0.11 0.41 0.11 0.27 +obscurcissements obscurcissement nom m p 0.11 0.41 0.00 0.14 +obscurcissent obscurcir ver 1.42 6.69 0.06 0.47 ind:pre:3p; +obscurcit obscurcir ver 1.42 6.69 0.34 1.28 ind:pre:3s;ind:pas:3s; +obscure obscur adj f s 11.06 67.57 3.46 20.61 +obscures obscur adj f p 11.06 67.57 1.32 9.53 +obscurité obscurité nom f s 14.33 49.39 14.33 48.65 +obscurités obscurité nom f p 14.33 49.39 0.00 0.74 +obscurs obscur adj m p 11.06 67.57 1.28 8.31 +obscurément obscurément adv 0.01 6.96 0.01 6.96 +observa observer ver 42.66 116.01 0.18 19.46 ind:pas:3s; +observable observable adj m s 0.03 0.00 0.03 0.00 +observai observer ver 42.66 116.01 0.01 1.76 ind:pas:1s; +observaient observer ver 42.66 116.01 0.26 3.85 ind:imp:3p; +observais observer ver 42.66 116.01 1.39 5.20 ind:imp:1s;ind:imp:2s; +observait observer ver 42.66 116.01 1.23 19.73 ind:imp:3s; +observance observance nom f s 0.14 0.34 0.14 0.27 +observances observance nom f p 0.14 0.34 0.00 0.07 +observant observer ver 42.66 116.01 1.17 6.89 par:pre; +observateur observateur nom m s 3.08 6.08 1.94 4.53 +observateurs observateur nom m p 3.08 6.08 1.05 1.35 +observation observation nom f s 8.07 15.27 6.91 11.08 +observations observation nom f p 8.07 15.27 1.16 4.19 +observatoire observatoire nom m s 1.25 3.18 1.23 2.84 +observatoires observatoire nom m p 1.25 3.18 0.02 0.34 +observatrice observateur adj f s 1.55 0.68 0.24 0.07 +observatrices observateur nom f p 3.08 6.08 0.00 0.14 +observe observer ver 42.66 116.01 11.48 16.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +observent observer ver 42.66 116.01 1.41 2.16 ind:pre:3p; +observer observer ver 42.66 116.01 11.22 24.26 inf; +observera observer ver 42.66 116.01 0.11 0.07 ind:fut:3s; +observerai observer ver 42.66 116.01 0.51 0.07 ind:fut:1s; +observeraient observer ver 42.66 116.01 0.00 0.14 cnd:pre:3p; +observerais observer ver 42.66 116.01 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +observerait observer ver 42.66 116.01 0.04 0.20 cnd:pre:3s; +observerez observer ver 42.66 116.01 0.05 0.07 ind:fut:2p; +observerons observer ver 42.66 116.01 0.18 0.00 ind:fut:1p; +observeront observer ver 42.66 116.01 0.03 0.00 ind:fut:3p; +observes observer ver 42.66 116.01 0.75 0.34 ind:pre:2s;sub:pre:2s; +observez observer ver 42.66 116.01 3.63 1.35 imp:pre:2p;ind:pre:2p; +observiez observer ver 42.66 116.01 0.15 0.00 ind:imp:2p;sub:pre:2p; +observions observer ver 42.66 116.01 0.13 0.74 ind:imp:1p; +observâmes observer ver 42.66 116.01 0.00 0.20 ind:pas:1p; +observons observer ver 42.66 116.01 1.27 0.47 imp:pre:1p;ind:pre:1p; +observèrent observer ver 42.66 116.01 0.00 1.69 ind:pas:3p; +observé observer ver m s 42.66 116.01 5.53 6.96 par:pas; +observée observer ver f s 42.66 116.01 0.83 2.03 par:pas; +observées observer ver f p 42.66 116.01 0.22 0.54 par:pas; +observés observer ver m p 42.66 116.01 0.86 1.08 par:pas; +obsessif obsessif adj m s 0.20 0.00 0.13 0.00 +obsession obsession nom f s 8.79 11.15 7.76 8.78 +obsessionnel obsessionnel adj m s 1.43 1.15 0.87 0.41 +obsessionnelle obsessionnel adj f s 1.43 1.15 0.37 0.47 +obsessionnellement obsessionnellement adv 0.01 0.41 0.01 0.41 +obsessionnelles obsessionnel adj f p 1.43 1.15 0.06 0.07 +obsessionnels obsessionnel adj m p 1.43 1.15 0.13 0.20 +obsessions obsession nom f p 8.79 11.15 1.02 2.36 +obsessive obsessif adj f s 0.20 0.00 0.08 0.00 +obsidienne obsidienne nom f s 0.03 0.74 0.03 0.74 +obsidional obsidional adj m s 0.00 0.41 0.00 0.07 +obsidionale obsidional adj f s 0.00 0.41 0.00 0.34 +obsolescence obsolescence nom f s 0.02 0.07 0.02 0.07 +obsolète obsolète adj s 1.19 0.14 0.84 0.07 +obsolètes obsolète adj p 1.19 0.14 0.35 0.07 +obstacle obstacle nom m s 10.65 26.01 6.58 14.12 +obstacles obstacle nom m p 10.65 26.01 4.07 11.89 +obsède obséder ver 11.53 9.12 2.15 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obsèdent obséder ver 11.53 9.12 0.19 0.27 ind:pre:3p; +obsèdes obséder ver 11.53 9.12 0.08 0.00 ind:pre:2s; +obsèques obsèques nom f p 4.32 4.80 4.32 4.80 +obstina obstiner ver 3.77 16.49 0.03 0.88 ind:pas:3s; +obstinai obstiner ver 3.77 16.49 0.00 0.14 ind:pas:1s; +obstinaient obstiner ver 3.77 16.49 0.02 0.74 ind:imp:3p; +obstinais obstiner ver 3.77 16.49 0.00 0.68 ind:imp:1s;ind:imp:2s; +obstinait obstiner ver 3.77 16.49 0.03 4.66 ind:imp:3s; +obstinant obstiner ver 3.77 16.49 0.00 0.88 par:pre; +obstination obstination nom f s 1.26 12.23 1.26 12.09 +obstinations obstination nom f p 1.26 12.23 0.00 0.14 +obstine obstiner ver 3.77 16.49 0.94 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obstinent obstiner ver 3.77 16.49 0.16 0.81 ind:pre:3p; +obstiner obstiner ver 3.77 16.49 0.53 1.35 inf; +obstinera obstiner ver 3.77 16.49 0.01 0.07 ind:fut:3s; +obstineraient obstiner ver 3.77 16.49 0.00 0.07 cnd:pre:3p; +obstinerait obstiner ver 3.77 16.49 0.00 0.07 cnd:pre:3s; +obstineras obstiner ver 3.77 16.49 0.00 0.07 ind:fut:2s; +obstinerez obstiner ver 3.77 16.49 0.00 0.14 ind:fut:2p; +obstineriez obstiner ver 3.77 16.49 0.00 0.07 cnd:pre:2p; +obstineront obstiner ver 3.77 16.49 0.00 0.14 ind:fut:3p; +obstines obstiner ver 3.77 16.49 0.77 0.27 ind:pre:2s;sub:pre:2s; +obstinez obstiner ver 3.77 16.49 0.34 0.27 imp:pre:2p;ind:pre:2p; +obstinions obstiner ver 3.77 16.49 0.00 0.14 ind:imp:1p; +obstinons obstiner ver 3.77 16.49 0.01 0.14 ind:pre:1p; +obstinèrent obstiner ver 3.77 16.49 0.00 0.14 ind:pas:3p; +obstiné obstiner ver m s 3.77 16.49 0.51 1.15 par:pas; +obstinée obstiner ver f s 3.77 16.49 0.28 0.41 par:pas; +obstinées obstiné adj f p 0.55 6.96 0.01 0.68 +obstinément obstinément adv 0.48 10.27 0.48 10.27 +obstinés obstiner ver m p 3.77 16.49 0.14 0.34 par:pas; +obstrua obstruer ver 1.35 4.86 0.01 0.14 ind:pas:3s; +obstruaient obstruer ver 1.35 4.86 0.01 0.68 ind:imp:3p; +obstruait obstruer ver 1.35 4.86 0.03 0.61 ind:imp:3s; +obstruant obstruer ver 1.35 4.86 0.03 0.27 par:pre; +obstructif obstructif adj m s 0.03 0.00 0.01 0.00 +obstruction obstruction nom f s 3.64 0.47 3.20 0.47 +obstructionnisme obstructionnisme nom m s 0.01 0.00 0.01 0.00 +obstructions obstruction nom f p 3.64 0.47 0.44 0.00 +obstructive obstructif adj f s 0.03 0.00 0.01 0.00 +obstrue obstruer ver 1.35 4.86 0.55 0.54 imp:pre:2s;ind:pre:3s; +obstruent obstruer ver 1.35 4.86 0.00 0.47 ind:pre:3p; +obstruer obstruer ver 1.35 4.86 0.04 0.27 inf; +obstrueraient obstruer ver 1.35 4.86 0.00 0.07 cnd:pre:3p; +obstrueront obstruer ver 1.35 4.86 0.10 0.00 ind:fut:3p; +obstruez obstruer ver 1.35 4.86 0.02 0.00 imp:pre:2p;ind:pre:2p; +obstrué obstruer ver m s 1.35 4.86 0.31 0.54 par:pas; +obstruée obstruer ver f s 1.35 4.86 0.07 0.81 par:pas; +obstruées obstruer ver f p 1.35 4.86 0.01 0.27 par:pas; +obstrués obstruer ver m p 1.35 4.86 0.17 0.20 par:pas; +obstétrical obstétrical adj m s 0.01 0.00 0.01 0.00 +obstétricien obstétricien nom m s 0.35 0.07 0.28 0.07 +obstétricienne obstétricien nom f s 0.35 0.07 0.04 0.00 +obstétriciens obstétricien nom m p 0.35 0.07 0.04 0.00 +obstétrique obstétrique nom f s 0.83 0.14 0.83 0.14 +obséda obséder ver 11.53 9.12 0.00 0.14 ind:pas:3s; +obsédaient obséder ver 11.53 9.12 0.00 0.34 ind:imp:3p; +obsédais obséder ver 11.53 9.12 0.04 0.00 ind:imp:1s;ind:imp:2s; +obsédait obséder ver 11.53 9.12 0.40 1.82 ind:imp:3s; +obsédant obsédant adj m s 0.22 6.28 0.12 1.69 +obsédante obsédant adj f s 0.22 6.28 0.05 3.58 +obsédantes obsédant adj f p 0.22 6.28 0.02 0.54 +obsédants obsédant adj m p 0.22 6.28 0.03 0.47 +obséder obséder ver 11.53 9.12 0.12 0.61 inf; +obsédèrent obséder ver 11.53 9.12 0.14 0.07 ind:pas:3p; +obsédé obséder ver m s 11.53 9.12 5.12 2.57 par:pas; +obsédée obséder ver f s 11.53 9.12 2.19 0.95 par:pas; +obsédées obséder ver f p 11.53 9.12 0.10 0.20 par:pas; +obsédés obsédé nom m p 3.73 2.23 1.33 0.95 +obséquieuse obséquieux adj f s 0.15 1.01 0.02 0.20 +obséquieusement obséquieusement adv 0.01 0.14 0.01 0.14 +obséquieuses obséquieux adj f p 0.15 1.01 0.00 0.14 +obséquieux obséquieux adj m s 0.15 1.01 0.13 0.68 +obséquiosité obséquiosité nom f s 0.01 0.54 0.01 0.54 +obtînmes obtenir ver 88.10 80.95 0.01 0.07 ind:pas:1p; +obtînt obtenir ver 88.10 80.95 0.00 0.14 sub:imp:3s; +obtempère obtempérer ver 1.12 2.16 0.18 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obtempéra obtempérer ver 1.12 2.16 0.00 0.47 ind:pas:3s; +obtempérai obtempérer ver 1.12 2.16 0.00 0.07 ind:pas:1s; +obtempéraient obtempérer ver 1.12 2.16 0.01 0.07 ind:imp:3p; +obtempérait obtempérer ver 1.12 2.16 0.00 0.14 ind:imp:3s; +obtempérer obtempérer ver 1.12 2.16 0.82 0.74 inf; +obtempérez obtempérer ver 1.12 2.16 0.07 0.00 imp:pre:2p;ind:pre:2p; +obtempérions obtempérer ver 1.12 2.16 0.00 0.07 ind:imp:1p; +obtempérèrent obtempérer ver 1.12 2.16 0.00 0.07 ind:pas:3p; +obtempéré obtempérer ver m s 1.12 2.16 0.04 0.20 par:pas; +obtenaient obtenir ver 88.10 80.95 0.04 0.68 ind:imp:3p; +obtenais obtenir ver 88.10 80.95 0.51 1.08 ind:imp:1s;ind:imp:2s; +obtenait obtenir ver 88.10 80.95 0.35 2.36 ind:imp:3s; +obtenant obtenir ver 88.10 80.95 0.19 1.22 par:pre; +obtenez obtenir ver 88.10 80.95 2.40 0.20 imp:pre:2p;ind:pre:2p; +obteniez obtenir ver 88.10 80.95 0.27 0.00 ind:imp:2p; +obtenions obtenir ver 88.10 80.95 0.06 0.20 ind:imp:1p; +obtenir obtenir ver 88.10 80.95 36.70 37.77 inf; +obtenons obtenir ver 88.10 80.95 0.87 0.41 imp:pre:1p;ind:pre:1p; +obtention obtention nom f s 0.53 0.47 0.53 0.47 +obtenu obtenir ver m s 88.10 80.95 20.36 14.73 par:pas; +obtenue obtenir ver f s 88.10 80.95 0.67 2.03 par:pas; +obtenues obtenir ver f p 88.10 80.95 0.55 0.68 par:pas; +obtenus obtenir ver m p 88.10 80.95 0.91 1.35 par:pas; +obère obérer ver 0.00 0.20 0.00 0.07 ind:pre:1s; +obèse obèse adj s 1.40 3.58 1.11 2.57 +obèses obèse adj p 1.40 3.58 0.29 1.01 +obtiendra obtenir ver 88.10 80.95 1.24 0.41 ind:fut:3s; +obtiendrai obtenir ver 88.10 80.95 1.62 0.20 ind:fut:1s; +obtiendraient obtenir ver 88.10 80.95 0.00 0.34 cnd:pre:3p; +obtiendrais obtenir ver 88.10 80.95 0.86 0.20 cnd:pre:1s;cnd:pre:2s; +obtiendrait obtenir ver 88.10 80.95 0.66 1.22 cnd:pre:3s; +obtiendras obtenir ver 88.10 80.95 0.85 0.07 ind:fut:2s; +obtiendrez obtenir ver 88.10 80.95 1.39 0.47 ind:fut:2p; +obtiendriez obtenir ver 88.10 80.95 0.17 0.00 cnd:pre:2p; +obtiendrions obtenir ver 88.10 80.95 0.03 0.07 cnd:pre:1p; +obtiendrons obtenir ver 88.10 80.95 0.53 0.41 ind:fut:1p; +obtiendront obtenir ver 88.10 80.95 0.55 0.27 ind:fut:3p; +obtienne obtenir ver 88.10 80.95 1.44 0.88 sub:pre:1s;sub:pre:3s; +obtiennent obtenir ver 88.10 80.95 1.23 0.47 ind:pre:3p; +obtiennes obtenir ver 88.10 80.95 0.33 0.07 sub:pre:2s; +obtiens obtenir ver 88.10 80.95 5.46 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +obtient obtenir ver 88.10 80.95 6.75 3.18 ind:pre:3s; +obtinrent obtenir ver 88.10 80.95 0.20 0.74 ind:pas:3p; +obtins obtenir ver 88.10 80.95 0.16 2.57 ind:pas:1s;ind:pas:2s; +obtinsse obtenir ver 88.10 80.95 0.00 0.07 sub:imp:1s; +obtint obtenir ver 88.10 80.95 0.74 5.95 ind:pas:3s; +obtura obturer ver 0.13 0.61 0.00 0.07 ind:pas:3s; +obturait obturer ver 0.13 0.61 0.00 0.14 ind:imp:3s; +obturateur obturateur adj m s 0.13 0.00 0.12 0.00 +obturateurs obturateur nom m p 0.07 0.27 0.01 0.07 +obturation obturation nom f s 0.06 0.00 0.06 0.00 +obture obturer ver 0.13 0.61 0.01 0.20 ind:pre:1s;ind:pre:3s; +obturer obturer ver 0.13 0.61 0.08 0.07 inf; +obturez obturer ver 0.13 0.61 0.01 0.00 imp:pre:2p; +obturé obturer ver m s 0.13 0.61 0.03 0.07 par:pas; +obturée obturer ver f s 0.13 0.61 0.00 0.07 par:pas; +obtus obtus adj m 1.17 4.66 0.85 2.70 +obtuse obtus adj f s 1.17 4.66 0.32 1.89 +obtuses obtus adj f p 1.17 4.66 0.00 0.07 +obéîmes obéir ver 45.12 45.88 0.01 0.07 ind:pas:1p; +obédience obédience nom f s 0.14 2.36 0.14 2.30 +obédiences obédience nom f p 0.14 2.36 0.00 0.07 +obéi obéir ver m s 45.12 45.88 3.38 4.59 par:pas; +obéie obéir ver f s 45.12 45.88 0.01 0.27 par:pas; +obéir obéir ver 45.12 45.88 13.76 14.26 inf;;inf;;inf;; +obéira obéir ver 45.12 45.88 0.86 0.61 ind:fut:3s; +obéirai obéir ver 45.12 45.88 1.47 0.20 ind:fut:1s; +obéiraient obéir ver 45.12 45.88 0.01 0.07 cnd:pre:3p; +obéirais obéir ver 45.12 45.88 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +obéirait obéir ver 45.12 45.88 0.03 0.07 cnd:pre:3s; +obéiras obéir ver 45.12 45.88 0.32 0.14 ind:fut:2s; +obéirent obéir ver 45.12 45.88 0.00 0.54 ind:pas:3p; +obéirez obéir ver 45.12 45.88 0.33 0.07 ind:fut:2p; +obéiriez obéir ver 45.12 45.88 0.03 0.07 cnd:pre:2p; +obéirons obéir ver 45.12 45.88 0.24 0.07 ind:fut:1p; +obéiront obéir ver 45.12 45.88 0.21 0.07 ind:fut:3p; +obéis obéir ver m p 45.12 45.88 10.93 2.91 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +obéissaient obéir ver 45.12 45.88 0.46 1.15 ind:imp:3p; +obéissais obéir ver 45.12 45.88 0.36 0.54 ind:imp:1s;ind:imp:2s; +obéissait obéir ver 45.12 45.88 0.36 4.05 ind:imp:3s; +obéissance obéissance nom f s 4.24 5.07 4.24 5.07 +obéissant obéissant adj m s 2.59 2.30 0.99 1.15 +obéissante obéissant adj f s 2.59 2.30 1.10 0.41 +obéissantes obéissant adj f p 2.59 2.30 0.11 0.34 +obéissants obéissant adj m p 2.59 2.30 0.39 0.41 +obéisse obéir ver 45.12 45.88 0.39 0.41 sub:pre:1s;sub:pre:3s; +obéissent obéir ver 45.12 45.88 2.04 1.55 ind:pre:3p; +obéisses obéir ver 45.12 45.88 0.05 0.07 sub:pre:2s; +obéissez obéir ver 45.12 45.88 4.88 0.27 imp:pre:2p;ind:pre:2p; +obéissiez obéir ver 45.12 45.88 0.19 0.07 ind:imp:2p; +obéissions obéir ver 45.12 45.88 0.00 0.41 ind:imp:1p; +obéissons obéir ver 45.12 45.88 0.49 0.07 imp:pre:1p;ind:pre:1p; +obéit obéir ver 45.12 45.88 3.54 9.66 ind:pre:3s;ind:pas:3s; +obélisque obélisque nom m s 0.36 1.22 0.10 0.74 +obélisques obélisque nom m p 0.36 1.22 0.27 0.47 +obérant obérer ver 0.00 0.20 0.00 0.07 par:pre; +obérer obérer ver 0.00 0.20 0.00 0.07 inf; +obus obus nom m 5.13 31.82 5.13 31.82 +obusier obusier nom m s 0.05 0.68 0.01 0.07 +obusiers obusier nom m p 0.05 0.68 0.04 0.61 +obésité obésité nom f s 0.73 1.08 0.73 0.95 +obésités obésité nom f p 0.73 1.08 0.00 0.14 +obverse obvers nom f s 0.00 0.07 0.00 0.07 +obvie obvie adj s 0.00 0.07 0.00 0.07 +obvier obvier ver 0.00 0.14 0.00 0.14 inf; +ocarina ocarina nom m s 0.03 0.27 0.03 0.20 +ocarinas ocarina nom m p 0.03 0.27 0.00 0.07 +occase occase nom f s 1.25 5.34 1.14 4.53 +occases occase nom f p 1.25 5.34 0.11 0.81 +occasion occasion nom f s 61.89 105.74 55.39 92.09 +occasionna occasionner ver 0.70 1.69 0.00 0.07 ind:pas:3s; +occasionnait occasionner ver 0.70 1.69 0.00 0.14 ind:imp:3s; +occasionnant occasionner ver 0.70 1.69 0.02 0.07 par:pre; +occasionne occasionner ver 0.70 1.69 0.02 0.34 ind:pre:1s;ind:pre:3s; +occasionnel occasionnel adj m s 0.99 1.22 0.46 0.54 +occasionnelle occasionnel adj f s 0.99 1.22 0.33 0.14 +occasionnellement occasionnellement adv 0.59 0.27 0.59 0.27 +occasionnelles occasionnel adj f p 0.99 1.22 0.06 0.14 +occasionnels occasionnel adj m p 0.99 1.22 0.14 0.41 +occasionnent occasionner ver 0.70 1.69 0.01 0.07 ind:pre:3p; +occasionner occasionner ver 0.70 1.69 0.09 0.20 inf; +occasionnèrent occasionner ver 0.70 1.69 0.00 0.07 ind:pas:3p; +occasionné occasionner ver m s 0.70 1.69 0.23 0.07 par:pas; +occasionnée occasionner ver f s 0.70 1.69 0.12 0.14 par:pas; +occasionnées occasionner ver f p 0.70 1.69 0.03 0.20 par:pas; +occasionnés occasionner ver m p 0.70 1.69 0.19 0.34 par:pas; +occasions occasion nom f p 61.89 105.74 6.50 13.65 +occident occident nom m s 0.38 1.69 0.38 1.69 +occidental occidental adj m s 5.07 15.61 1.50 3.65 +occidentale occidental adj f s 5.07 15.61 2.15 8.65 +occidentales occidental adj f p 5.07 15.61 0.36 1.69 +occidentalisation occidentalisation nom f s 0.10 0.14 0.10 0.14 +occidentalise occidentaliser ver 0.01 0.07 0.01 0.07 ind:pre:3s; +occidentalisme occidentalisme nom m s 0.00 0.07 0.00 0.07 +occidentaux occidental adj m p 5.07 15.61 1.06 1.62 +occipital occipital adj m s 0.49 0.20 0.38 0.14 +occipitale occipital adj f s 0.49 0.20 0.08 0.00 +occipitales occipital adj f p 0.49 0.20 0.01 0.07 +occipitaux occipital adj m p 0.49 0.20 0.02 0.00 +occiput occiput nom m s 0.19 1.69 0.19 1.69 +occire occire ver 0.10 0.41 0.10 0.41 inf; +occis occis adj m 0.28 0.68 0.28 0.68 +occitan occitan nom m s 0.00 0.34 0.00 0.34 +occitane occitan adj f s 0.01 0.41 0.01 0.27 +occitans occitan adj m p 0.01 0.41 0.00 0.07 +occlusion occlusion nom f s 0.31 0.34 0.31 0.34 +occlut occlure ver 0.00 0.07 0.00 0.07 ind:pas:3s; +occulta occulter ver 0.86 1.01 0.00 0.07 ind:pas:3s; +occultaient occulter ver 0.86 1.01 0.00 0.07 ind:imp:3p; +occultait occulter ver 0.86 1.01 0.01 0.34 ind:imp:3s; +occultant occulter ver 0.86 1.01 0.04 0.00 par:pre; +occultation occultation nom f s 0.28 0.27 0.28 0.20 +occultations occultation nom f p 0.28 0.27 0.00 0.07 +occulte occulte adj s 2.28 3.24 0.96 1.76 +occultement occultement adv 0.00 0.07 0.00 0.07 +occultent occulter ver 0.86 1.01 0.12 0.07 ind:pre:3p; +occulter occulter ver 0.86 1.01 0.29 0.34 inf; +occultera occulter ver 0.86 1.01 0.01 0.00 ind:fut:3s; +occultes occulte adj p 2.28 3.24 1.33 1.49 +occultez occulter ver 0.86 1.01 0.07 0.00 imp:pre:2p; +occultisme occultisme nom m s 0.33 0.34 0.33 0.27 +occultismes occultisme nom m p 0.33 0.34 0.00 0.07 +occultiste occultiste nom s 0.11 0.14 0.01 0.00 +occultistes occultiste nom p 0.11 0.14 0.10 0.14 +occulté occulter ver m s 0.86 1.01 0.22 0.14 par:pas; +occultée occulter ver f s 0.86 1.01 0.08 0.00 par:pas; +occupa occuper ver 375.14 219.80 0.10 3.78 ind:pas:3s; +occupai occuper ver 375.14 219.80 0.01 0.61 ind:pas:1s; +occupaient occuper ver 375.14 219.80 0.93 10.34 ind:imp:3p; +occupais occuper ver 375.14 219.80 3.37 3.45 ind:imp:1s;ind:imp:2s; +occupait occuper ver 375.14 219.80 4.36 31.42 ind:imp:3s; +occupant occupant nom m s 2.38 10.07 0.62 3.99 +occupante occupant nom f s 2.38 10.07 0.03 0.14 +occupantes occupant adj f p 0.18 0.81 0.01 0.07 +occupants occupant nom m p 2.38 10.07 1.73 5.88 +occupas occuper ver 375.14 219.80 0.00 0.07 ind:pas:2s; +occupation occupation nom f s 6.71 30.61 4.91 22.84 +occupations occupation nom f p 6.71 30.61 1.80 7.77 +occupe occuper ver 375.14 219.80 139.84 37.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +occupent occuper ver 375.14 219.80 6.45 7.30 ind:pre:3p; +occuper occuper ver 375.14 219.80 97.22 56.69 ind:pre:2p;inf; +occupera occuper ver 375.14 219.80 10.27 2.50 ind:fut:3s; +occuperai occuper ver 375.14 219.80 10.51 1.69 ind:fut:1s; +occuperaient occuper ver 375.14 219.80 0.31 0.54 cnd:pre:3p; +occuperais occuper ver 375.14 219.80 1.03 0.34 cnd:pre:1s;cnd:pre:2s; +occuperait occuper ver 375.14 219.80 0.67 2.50 cnd:pre:3s; +occuperas occuper ver 375.14 219.80 1.09 0.41 ind:fut:2s; +occuperez occuper ver 375.14 219.80 0.56 0.20 ind:fut:2p; +occuperions occuper ver 375.14 219.80 0.03 0.07 cnd:pre:1p; +occuperons occuper ver 375.14 219.80 0.79 0.00 ind:fut:1p; +occuperont occuper ver 375.14 219.80 1.61 0.61 ind:fut:3p; +occupes occuper ver 375.14 219.80 12.60 0.95 ind:pre:2s;sub:pre:2s; +occupez occuper ver 375.14 219.80 15.36 2.23 imp:pre:2p;ind:pre:2p; +occupiez occuper ver 375.14 219.80 1.08 0.07 ind:imp:2p; +occupions occuper ver 375.14 219.80 0.06 1.35 ind:imp:1p; +occupons occuper ver 375.14 219.80 2.23 0.95 imp:pre:1p;ind:pre:1p; +occupât occuper ver 375.14 219.80 0.00 0.88 sub:imp:3s; +occupèrent occuper ver 375.14 219.80 0.16 1.08 ind:pas:3p; +occupé occuper ver m s 375.14 219.80 41.37 25.47 par:pas; +occupée occuper ver f s 375.14 219.80 15.71 13.31 par:pas; +occupées occuper ver f p 375.14 219.80 1.67 3.31 par:pas; +occupés occuper ver m p 375.14 219.80 5.24 7.36 par:pas; +occurrence occurrence nom f s 1.57 7.43 1.56 7.16 +occurrences occurrence nom f p 1.57 7.43 0.01 0.27 +occurrentes occurrent adj f p 0.00 0.07 0.00 0.07 +ocelles ocelle nom m p 0.00 0.14 0.00 0.14 +ocellée ocellé adj f s 0.00 0.41 0.00 0.20 +ocellés ocellé adj m p 0.00 0.41 0.00 0.20 +ocelot ocelot nom m s 0.20 0.14 0.17 0.07 +ocelots ocelot nom m p 0.20 0.14 0.03 0.07 +âcre âcre adj s 0.47 11.49 0.45 10.14 +ocre ocre nom s 0.29 4.46 0.26 3.78 +âcrement âcrement adv 0.00 0.14 0.00 0.14 +âcres âcre adj p 0.47 11.49 0.01 1.35 +ocres ocre nom p 0.29 4.46 0.04 0.68 +âcreté âcreté nom f s 0.11 0.95 0.11 0.95 +ocreux ocreux adj m 0.00 0.20 0.00 0.20 +ocré ocrer ver m s 0.00 0.34 0.00 0.07 par:pas; +ocrée ocré adj f s 0.00 0.27 0.00 0.20 +ocrées ocrer ver f p 0.00 0.34 0.00 0.07 par:pas; +ocrés ocrer ver m p 0.00 0.34 0.00 0.14 par:pas; +octane octane nom m s 0.09 0.00 0.09 0.00 +octant octant nom m s 0.00 0.14 0.00 0.14 +octante octante adj_num 0.00 0.14 0.00 0.14 +octave octave nom f s 1.11 1.82 1.07 1.42 +octaves octave nom f p 1.11 1.82 0.03 0.41 +octavia octavier ver 0.34 0.00 0.28 0.00 ind:pas:3s; +octavie octavier ver 0.34 0.00 0.07 0.00 imp:pre:2s; +octavo octavo adv 0.01 0.00 0.01 0.00 +octet octet nom m s 0.02 0.00 0.01 0.00 +octets octet nom m p 0.02 0.00 0.01 0.00 +octidi octidi nom m s 0.00 0.07 0.00 0.07 +octobre octobre nom m 11.78 36.28 11.78 36.28 +octogonal octogonal adj m s 0.23 1.82 0.20 0.74 +octogonale octogonal adj f s 0.23 1.82 0.03 0.95 +octogonales octogonal adj f p 0.23 1.82 0.00 0.07 +octogonaux octogonal adj m p 0.23 1.82 0.00 0.07 +octogone octogone nom m s 0.04 0.61 0.04 0.41 +octogones octogone nom m p 0.04 0.61 0.00 0.20 +octogénaire octogénaire nom s 0.22 0.41 0.21 0.27 +octogénaires octogénaire nom p 0.22 0.41 0.01 0.14 +octosyllabe octosyllabe nom m s 0.14 0.34 0.00 0.07 +octosyllabes octosyllabe nom m p 0.14 0.34 0.14 0.27 +octroi octroi nom m s 0.18 2.03 0.17 1.82 +octroie octroyer ver 1.35 3.58 0.41 0.47 ind:pre:1s;ind:pre:3s; +octroient octroyer ver 1.35 3.58 0.03 0.14 ind:pre:3p; +octroiera octroyer ver 1.35 3.58 0.02 0.07 ind:fut:3s; +octrois octroi nom m p 0.18 2.03 0.01 0.20 +octroya octroyer ver 1.35 3.58 0.01 0.47 ind:pas:3s; +octroyaient octroyer ver 1.35 3.58 0.00 0.27 ind:imp:3p; +octroyait octroyer ver 1.35 3.58 0.01 0.20 ind:imp:3s; +octroyant octroyer ver 1.35 3.58 0.02 0.14 par:pre; +octroyer octroyer ver 1.35 3.58 0.11 0.27 inf; +octroyons octroyer ver 1.35 3.58 0.01 0.07 ind:pre:1p; +octroyât octroyer ver 1.35 3.58 0.00 0.07 sub:imp:3s; +octroyé octroyer ver m s 1.35 3.58 0.59 0.88 par:pas; +octroyée octroyer ver f s 1.35 3.58 0.13 0.27 par:pas; +octroyées octroyer ver f p 1.35 3.58 0.00 0.14 par:pas; +octroyés octroyer ver m p 1.35 3.58 0.00 0.14 par:pas; +octuor octuor nom m s 0.01 0.14 0.01 0.14 +octuple octuple adj f s 0.02 0.00 0.02 0.00 +océan océan nom m s 24.89 28.78 22.86 24.93 +océane océan adj f s 0.02 0.47 0.02 0.47 +océanienne océanien adj f s 0.00 0.07 0.00 0.07 +océanique océanique adj s 0.26 0.81 0.22 0.68 +océaniques océanique adj m p 0.26 0.81 0.04 0.14 +océanographe océanographe nom s 0.07 0.00 0.07 0.00 +océanographie océanographie nom f s 0.05 0.00 0.05 0.00 +océanographique océanographique adj s 0.33 0.00 0.30 0.00 +océanographiques océanographique adj m p 0.33 0.00 0.03 0.00 +océanologie océanologie nom f s 0.01 0.00 0.01 0.00 +océanologue océanologue nom s 0.08 0.00 0.08 0.00 +océans océan nom m p 24.89 28.78 2.03 3.85 +oculaire oculaire adj s 3.36 0.81 1.98 0.20 +oculaires oculaire adj p 3.36 0.81 1.38 0.61 +oculi oculus nom m p 0.02 0.00 0.01 0.00 +oculiste oculiste nom s 0.37 0.81 0.37 0.74 +oculistes oculiste nom p 0.37 0.81 0.00 0.07 +oculomoteur oculomoteur adj m s 0.01 0.00 0.01 0.00 +oculus oculus nom m 0.02 0.00 0.01 0.00 +ocytocine ocytocine nom f s 0.03 0.00 0.03 0.00 +odalisque odalisque nom f s 0.38 1.28 0.22 0.54 +odalisques odalisque nom f p 0.38 1.28 0.16 0.74 +ode ode nom f s 0.96 0.81 0.94 0.61 +odelette odelette nom f s 0.01 0.07 0.01 0.00 +odelettes odelette nom f p 0.01 0.07 0.00 0.07 +odes ode nom f p 0.96 0.81 0.03 0.20 +odeur odeur nom f s 49.57 195.68 47.19 159.86 +odeurs odeur nom f p 49.57 195.68 2.38 35.81 +odieuse odieux adj f s 8.59 14.32 2.14 3.78 +odieusement odieusement adv 0.03 0.61 0.03 0.61 +odieuses odieux adj f p 8.59 14.32 0.23 1.01 +odieux odieux adj m 8.59 14.32 6.22 9.53 +odomètre odomètre nom m s 0.10 0.00 0.10 0.00 +odontologie odontologie nom f s 0.13 0.00 0.13 0.00 +odontologiste odontologiste nom s 0.01 0.00 0.01 0.00 +odontologues odontologue nom p 0.01 0.00 0.01 0.00 +odorant odorant adj m s 0.66 6.82 0.08 1.49 +odorante odorant adj f s 0.66 6.82 0.16 3.11 +odorantes odorant adj f p 0.66 6.82 0.40 1.35 +odorants odorant adj m p 0.66 6.82 0.03 0.88 +odorat odorat nom m s 1.28 2.57 1.28 2.57 +odoriférant odoriférant adj m s 0.01 0.74 0.00 0.14 +odoriférante odoriférant adj f s 0.01 0.74 0.00 0.20 +odoriférantes odoriférant adj f p 0.01 0.74 0.01 0.14 +odoriférants odoriférant adj m p 0.01 0.74 0.00 0.27 +odéon odéon nom m s 0.00 0.34 0.00 0.34 +odyssée odyssée nom f s 0.24 1.01 0.23 0.95 +odyssées odyssée nom f p 0.24 1.01 0.01 0.07 +oecuménique oecuménique adj s 0.33 0.41 0.33 0.34 +oecuméniques oecuménique adj f p 0.33 0.41 0.00 0.07 +oecuménisme oecuménisme nom m s 0.01 0.34 0.01 0.34 +oedipe oedipe nom m s 0.14 0.41 0.14 0.41 +oedipien oedipien adj m s 0.07 0.14 0.06 0.14 +oedipienne oedipien adj f s 0.07 0.14 0.01 0.00 +oedème oedème nom m s 1.26 0.61 1.25 0.54 +oedèmes oedème nom m p 1.26 0.61 0.01 0.07 +oedémateuse oedémateux adj f s 0.01 0.00 0.01 0.00 +oeil_de_boeuf oeil_de_boeuf nom m s 0.00 0.95 0.00 0.47 +oeil oeil nom m s 413.04 1234.59 97.13 278.51 +oeillade oeillade nom f s 0.05 1.82 0.02 0.74 +oeillades oeillade nom f p 0.05 1.82 0.03 1.08 +oeillet oeillet nom m s 3.53 6.08 0.39 2.09 +oeilleton oeilleton nom m s 0.00 1.35 0.00 1.15 +oeilletons oeilleton nom m p 0.00 1.35 0.00 0.20 +oeillets oeillet nom m p 3.53 6.08 3.13 3.99 +oeillette oeillette nom f s 0.00 0.14 0.00 0.14 +oeillère oeillère nom f s 0.44 1.82 0.00 0.07 +oeillères oeillère nom f p 0.44 1.82 0.44 1.76 +oeil_de_boeuf oeil_de_boeuf nom m p 0.00 0.95 0.00 0.47 +oeil_de_perdrix oeil_de_perdrix nom m p 0.00 0.14 0.00 0.14 +oeils oeil nom m p 413.04 1234.59 0.01 0.41 +oenologie oenologie nom f s 0.01 0.00 0.01 0.00 +oenologique oenologique adj f s 0.00 0.07 0.00 0.07 +oenologues oenologue nom p 0.00 0.14 0.00 0.14 +oenophile oenophile adj s 0.00 0.07 0.00 0.07 +oenothera oenothera nom m s 0.01 0.00 0.01 0.00 +oenothère oenothère nom m s 0.00 0.07 0.00 0.07 +oesophage oesophage nom m s 0.48 1.22 0.48 1.08 +oesophages oesophage nom m p 0.48 1.22 0.00 0.14 +oesophagien oesophagien adj m s 0.06 0.00 0.02 0.00 +oesophagienne oesophagien adj f s 0.06 0.00 0.01 0.00 +oesophagiennes oesophagien adj f p 0.06 0.00 0.03 0.00 +oestrogène oestrogène nom m s 0.28 0.14 0.04 0.00 +oestrogènes oestrogène nom m p 0.28 0.14 0.24 0.14 +oeuf oeuf nom m s 39.40 50.14 13.53 20.34 +oeufs oeuf nom m p 39.40 50.14 25.88 29.80 +oeuvraient oeuvrer ver 2.08 4.26 0.00 0.20 ind:imp:3p; +oeuvrait oeuvrer ver 2.08 4.26 0.14 0.61 ind:imp:3s; +oeuvrant oeuvrer ver 2.08 4.26 0.14 0.54 par:pre; +oeuvre oeuvre nom s 30.10 92.23 23.38 68.11 +oeuvrent oeuvrer ver 2.08 4.26 0.16 0.20 ind:pre:3p; +oeuvrer oeuvrer ver 2.08 4.26 0.41 1.01 inf; +oeuvrera oeuvrer ver 2.08 4.26 0.03 0.00 ind:fut:3s; +oeuvres oeuvre nom p 30.10 92.23 6.72 24.12 +oeuvrette oeuvrette nom f s 0.00 0.20 0.00 0.07 +oeuvrettes oeuvrette nom f p 0.00 0.20 0.00 0.14 +oeuvrez oeuvrer ver 2.08 4.26 0.03 0.00 imp:pre:2p; +oeuvrions oeuvrer ver 2.08 4.26 0.00 0.07 ind:imp:1p; +oeuvré oeuvrer ver m s 2.08 4.26 0.11 0.74 par:pas; +off_shore off_shore nom m s 0.07 0.00 0.07 0.00 +off off adj 3.27 0.54 3.27 0.54 +offensa offenser ver 15.78 6.35 0.03 0.07 ind:pas:3s; +offensaient offenser ver 15.78 6.35 0.00 0.20 ind:imp:3p; +offensais offenser ver 15.78 6.35 0.00 0.07 ind:imp:1s; +offensait offenser ver 15.78 6.35 0.13 0.54 ind:imp:3s; +offensant offensant adj m s 0.93 1.01 0.82 0.34 +offensante offensant adj f s 0.93 1.01 0.07 0.41 +offensantes offensant adj f p 0.93 1.01 0.01 0.07 +offensants offensant adj m p 0.93 1.01 0.02 0.20 +offense offense nom f s 7.45 3.24 5.41 2.03 +offensent offenser ver 15.78 6.35 0.34 0.34 ind:pre:3p; +offenser offenser ver 15.78 6.35 6.59 1.76 inf; +offensera offenser ver 15.78 6.35 0.04 0.00 ind:fut:3s; +offenserai offenser ver 15.78 6.35 0.01 0.07 ind:fut:1s; +offenseraient offenser ver 15.78 6.35 0.11 0.14 cnd:pre:3p; +offenserais offenser ver 15.78 6.35 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +offenserez offenser ver 15.78 6.35 0.01 0.00 ind:fut:2p; +offenseront offenser ver 15.78 6.35 0.01 0.00 ind:fut:3p; +offenses offense nom f p 7.45 3.24 2.04 1.22 +offenseur offenseur nom m s 0.66 0.14 0.55 0.14 +offenseurs offenseur nom m p 0.66 0.14 0.11 0.00 +offensez offenser ver 15.78 6.35 0.64 0.07 imp:pre:2p;ind:pre:2p; +offensif offensif adj m s 0.85 2.36 0.32 0.61 +offensifs offensif adj m p 0.85 2.36 0.07 0.07 +offensive offensive nom f s 3.12 12.30 2.91 11.96 +offensives offensive nom f p 3.12 12.30 0.21 0.34 +offensons offenser ver 15.78 6.35 0.00 0.07 ind:pre:1p; +offensèrent offenser ver 15.78 6.35 0.00 0.07 ind:pas:3p; +offensé offenser ver m s 15.78 6.35 4.09 1.55 par:pas; +offensée offenser ver f s 15.78 6.35 0.97 0.47 par:pas; +offensées offensé adj f p 2.19 2.09 0.17 0.14 +offensés offenser ver m p 15.78 6.35 1.15 0.14 par:pas; +offert offrir ver m s 177.80 213.99 34.01 28.51 par:pas; +offerte offrir ver f s 177.80 213.99 5.08 12.03 par:pas; +offertes offrir ver f p 177.80 213.99 0.93 3.85 par:pas; +offertoire offertoire nom m s 0.00 0.34 0.00 0.34 +offerts offrir ver m p 177.80 213.99 1.41 3.45 par:pas; +office office nom s 6.37 25.00 6.13 21.28 +offices office nom m p 6.37 25.00 0.25 3.72 +officiaient officier ver 7.15 6.69 0.00 0.41 ind:imp:3p; +officiais officier ver 7.15 6.69 0.00 0.14 ind:imp:1s; +officiait officier ver 7.15 6.69 0.05 1.08 ind:imp:3s; +official official nom m s 0.03 0.00 0.03 0.00 +officialisait officialiser ver 0.23 0.07 0.00 0.07 ind:imp:3s; +officialise officialiser ver 0.23 0.07 0.03 0.00 ind:pre:1s;ind:pre:3s; +officialiser officialiser ver 0.23 0.07 0.14 0.00 inf; +officialisez officialiser ver 0.23 0.07 0.01 0.00 imp:pre:2p; +officialisé officialiser ver m s 0.23 0.07 0.04 0.00 par:pas; +officialité officialité nom f s 0.00 0.20 0.00 0.20 +officiant officiant nom m s 0.21 1.62 0.21 1.08 +officiants officiant adj m p 0.01 0.20 0.01 0.07 +officie officier ver 7.15 6.69 0.08 0.61 ind:pre:1s;ind:pre:3s; +officiel officiel adj m s 21.36 32.84 9.54 11.89 +officielle officiel adj f s 21.36 32.84 8.45 12.09 +officiellement officiellement adv 10.41 7.36 10.41 7.36 +officielles officiel adj f p 21.36 32.84 1.59 4.05 +officiels officiel adj m p 21.36 32.84 1.78 4.80 +officient officier ver 7.15 6.69 0.01 0.07 ind:pre:3p; +officier officier nom m s 55.35 79.05 35.47 35.68 +officiers officier nom m p 55.35 79.05 19.87 43.38 +officieuse officielle adj f s 0.53 0.47 0.38 0.20 +officieusement officieusement adv 1.13 0.54 1.13 0.54 +officieuses officielle adj f p 0.53 0.47 0.15 0.27 +officieux officieux adj m 0.92 0.88 0.92 0.88 +officiez officier ver 7.15 6.69 0.02 0.00 ind:pre:2p; +officine officine nom f s 0.17 2.64 0.17 1.96 +officines officine nom f p 0.17 2.64 0.00 0.68 +officions officier ver 7.15 6.69 0.01 0.00 ind:pre:1p; +officière officier nom f s 55.35 79.05 0.01 0.00 +officié officier ver m s 7.15 6.69 0.05 0.00 par:pas; +offrît offrir ver 177.80 213.99 0.00 0.47 sub:imp:3s; +offraient offrir ver 177.80 213.99 0.71 8.38 ind:imp:3p; +offrais offrir ver 177.80 213.99 0.81 1.96 ind:imp:1s;ind:imp:2s; +offrait offrir ver 177.80 213.99 2.96 31.76 ind:imp:3s; +offrande offrande nom f s 4.54 6.89 3.97 4.53 +offrandes offrande nom f p 4.54 6.89 0.57 2.36 +offrant offrir ver 177.80 213.99 2.13 10.54 par:pre; +offrante offrant adj f s 1.09 0.47 0.01 0.00 +offrantes offrant adj f p 1.09 0.47 0.00 0.07 +offrants offrant adj m p 1.09 0.47 0.02 0.00 +offre offrir ver 177.80 213.99 51.81 29.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +offrent offrir ver 177.80 213.99 4.29 4.53 ind:pre:3p; +offres offrir ver 177.80 213.99 4.78 0.68 ind:pre:2s;sub:pre:2s; +offrez offrir ver 177.80 213.99 5.50 1.01 imp:pre:2p;ind:pre:2p; +offriez offrir ver 177.80 213.99 0.26 0.14 ind:imp:2p; +offrions offrir ver 177.80 213.99 0.07 0.34 ind:imp:1p; +offrir offrir ver 177.80 213.99 52.06 50.34 inf;; +offrira offrir ver 177.80 213.99 1.15 1.15 ind:fut:3s; +offrirai offrir ver 177.80 213.99 1.92 0.81 ind:fut:1s; +offriraient offrir ver 177.80 213.99 0.02 0.54 cnd:pre:3p; +offrirais offrir ver 177.80 213.99 1.23 0.34 cnd:pre:1s;cnd:pre:2s; +offrirait offrir ver 177.80 213.99 0.70 2.43 cnd:pre:3s; +offriras offrir ver 177.80 213.99 0.73 0.00 ind:fut:2s; +offrirent offrir ver 177.80 213.99 0.02 1.35 ind:pas:3p; +offrirez offrir ver 177.80 213.99 0.13 0.20 ind:fut:2p; +offririez offrir ver 177.80 213.99 0.06 0.07 cnd:pre:2p; +offrirons offrir ver 177.80 213.99 0.37 0.07 ind:fut:1p; +offriront offrir ver 177.80 213.99 0.24 0.27 ind:fut:3p; +offris offrir ver 177.80 213.99 0.06 1.69 ind:pas:1s; +offrit offrir ver 177.80 213.99 1.55 16.55 ind:pas:3s; +offrons offrir ver 177.80 213.99 2.81 0.74 imp:pre:1p;ind:pre:1p; +offset offset nom s 0.01 0.20 0.01 0.20 +offshore offshore adj 0.43 0.00 0.43 0.00 +offuscation offuscation nom f s 0.00 0.14 0.00 0.07 +offuscations offuscation nom f p 0.00 0.14 0.00 0.07 +offusqua offusquer ver 1.04 4.93 0.01 0.47 ind:pas:3s; +offusquaient offusquer ver 1.04 4.93 0.00 0.41 ind:imp:3p; +offusquais offusquer ver 1.04 4.93 0.01 0.07 ind:imp:1s; +offusquait offusquer ver 1.04 4.93 0.01 0.68 ind:imp:3s; +offusquant offusquant adj m s 0.03 0.07 0.03 0.07 +offusque offusquer ver 1.04 4.93 0.30 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +offusquent offusquer ver 1.04 4.93 0.01 0.20 ind:pre:3p; +offusquer offusquer ver 1.04 4.93 0.23 0.74 inf; +offusquerai offusquer ver 1.04 4.93 0.04 0.00 ind:fut:1s; +offusquerait offusquer ver 1.04 4.93 0.01 0.00 cnd:pre:3s; +offusquerez offusquer ver 1.04 4.93 0.01 0.00 ind:fut:2p; +offusques offusquer ver 1.04 4.93 0.00 0.07 ind:pre:2s; +offusquât offusquer ver 1.04 4.93 0.00 0.07 sub:imp:3s; +offusquèrent offusquer ver 1.04 4.93 0.00 0.14 ind:pas:3p; +offusqué offusquer ver m s 1.04 4.93 0.27 0.34 par:pas; +offusquée offusquer ver f s 1.04 4.93 0.12 0.61 par:pas; +offusquées offusquer ver f p 1.04 4.93 0.00 0.14 par:pas; +offusqués offusquer ver m p 1.04 4.93 0.00 0.20 par:pas; +oflag oflag nom m s 0.00 0.27 0.00 0.20 +oflags oflag nom m p 0.00 0.27 0.00 0.07 +âge âge nom m s 152.59 217.43 150.45 205.27 +âges âge nom m p 152.59 217.43 2.13 12.16 +âgisme âgisme nom m s 0.02 0.00 0.02 0.00 +ogival ogival adj m s 0.00 0.41 0.00 0.41 +ogive ogive nom f s 2.35 3.45 1.40 1.69 +ogives ogive nom f p 2.35 3.45 0.95 1.76 +ognons ognon nom m p 0.11 0.00 0.11 0.00 +ogre ogre nom m s 2.83 5.95 2.52 4.66 +ogres ogre nom m p 2.83 5.95 0.30 1.28 +ogresse ogresse nom f s 0.31 1.89 0.31 1.55 +ogresses ogresse nom f p 0.31 1.89 0.00 0.34 +âgé âgé adj m s 19.81 30.74 7.67 14.39 +âgée âgé adj f s 19.81 30.74 7.75 8.92 +âgées âgé adj f p 19.81 30.74 1.91 1.69 +âgés âgé adj m p 19.81 30.74 2.48 5.74 +oh oh ono 897.52 197.09 897.52 197.09 +ohms ohm nom m p 0.02 0.14 0.02 0.14 +ohé ohé ono 5.24 1.28 5.24 1.28 +oie oie nom f s 9.15 9.32 5.42 5.20 +oies oie nom f p 9.15 9.32 3.73 4.12 +oignait oindre ver 0.56 1.62 0.00 0.14 ind:imp:3s; +oignant oindre ver 0.56 1.62 0.00 0.07 par:pre; +oigne oindre ver 0.56 1.62 0.14 0.07 sub:pre:1s;sub:pre:3s; +oignes oindre ver 0.56 1.62 0.00 0.20 sub:pre:2s; +oignez oindre ver 0.56 1.62 0.03 0.00 imp:pre:2p; +oignit oindre ver 0.56 1.62 0.00 0.07 ind:pas:3s; +oignon oignon nom m s 19.98 15.54 4.35 5.34 +oignons oignon nom m p 19.98 15.54 15.63 10.20 +oille oille nom f s 0.00 0.07 0.00 0.07 +oindra oindre ver 0.56 1.62 0.00 0.07 ind:fut:3s; +oindre oindre ver 0.56 1.62 0.12 0.20 inf; +oing oing nom m s 0.00 0.07 0.00 0.07 +oins oindre ver 0.56 1.62 0.16 0.07 ind:pre:1s;ind:pre:2s; +oint oint nom m s 0.10 0.27 0.10 0.14 +ointe oindre ver f s 0.56 1.62 0.00 0.20 par:pas; +ointes oindre ver f p 0.56 1.62 0.00 0.27 par:pas; +oints oint nom m p 0.10 0.27 0.00 0.14 +ois ouïr ver 5.72 3.78 1.16 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +oiseau_clé oiseau_clé nom m s 0.01 0.00 0.01 0.00 +oiseau_lyre oiseau_lyre nom m s 0.00 0.07 0.00 0.07 +oiseau_mouche oiseau_mouche nom m s 0.10 0.27 0.08 0.14 +oiseau_vedette oiseau_vedette nom m s 0.01 0.00 0.01 0.00 +oiseau oiseau nom m s 77.73 113.04 43.78 47.97 +oiseau_mouche oiseau_mouche nom m p 0.10 0.27 0.01 0.14 +oiseaux oiseau nom m p 77.73 113.04 33.96 65.07 +oiselet oiselet nom m s 0.13 0.54 0.12 0.34 +oiselets oiselet nom m p 0.13 0.54 0.01 0.20 +oiseleur oiseleur nom m s 0.07 0.54 0.06 0.47 +oiseleurs oiseleur nom m p 0.07 0.54 0.01 0.07 +oiselez oiseler ver 0.00 0.07 0.00 0.07 imp:pre:2p; +oiselier oiselier nom m s 0.01 0.20 0.00 0.07 +oiseliers oiselier nom m p 0.01 0.20 0.01 0.07 +oiselière oiselier nom f s 0.01 0.20 0.00 0.07 +oiselle oiselle nom f s 0.08 0.41 0.06 0.34 +oisellerie oisellerie nom f s 0.04 0.00 0.04 0.00 +oiselles oiselle nom f p 0.08 0.41 0.02 0.07 +oiseuse oiseux adj f s 0.28 2.36 0.01 0.47 +oiseuses oiseux adj f p 0.28 2.36 0.13 1.01 +oiseux oiseux adj m 0.28 2.36 0.14 0.88 +oisif oisif adj m s 0.85 2.03 0.36 0.41 +oisifs oisif nom m p 0.10 1.28 0.06 1.01 +oisillon oisillon nom m s 0.46 1.22 0.30 0.68 +oisillons oisillon nom m p 0.46 1.22 0.15 0.54 +oisive oisif adj f s 0.85 2.03 0.35 0.95 +oisivement oisivement adv 0.02 0.00 0.02 0.00 +oisives oisif adj f p 0.85 2.03 0.08 0.20 +oisiveté oisiveté nom f s 0.59 3.65 0.59 3.65 +oison oison nom m s 0.02 0.07 0.02 0.00 +oisons oison nom m p 0.02 0.07 0.00 0.07 +oit ouïr ver 5.72 3.78 0.13 0.00 ind:pre:3s; +ok ok adj_sup 234.89 1.15 234.89 1.15 +oka oka nom m s 0.00 0.07 0.00 0.07 +okapi okapi nom m s 0.08 0.00 0.08 0.00 +okoumé okoumé nom m s 0.00 0.14 0.00 0.14 +ola ola nom f s 1.31 0.00 1.31 0.00 +olfactif olfactif adj m s 0.47 1.01 0.11 0.54 +olfactifs olfactif adj m p 0.47 1.01 0.03 0.07 +olfactive olfactif adj f s 0.47 1.01 0.06 0.27 +olfactives olfactif adj f p 0.47 1.01 0.28 0.14 +olfactomètre olfactomètre nom m s 0.00 0.07 0.00 0.07 +olibrius olibrius nom m 0.03 0.20 0.03 0.20 +olifant olifant nom m s 0.14 0.41 0.14 0.41 +oligarchie oligarchie nom f s 0.12 0.07 0.12 0.07 +oligo_élément oligo_élément nom m p 0.00 0.14 0.00 0.14 +olivaies olivaie nom f p 0.00 0.07 0.00 0.07 +olive olive nom f s 5.42 8.85 2.54 4.12 +oliver oliver nom m s 0.06 0.00 0.06 0.00 +oliveraie oliveraie nom f s 1.08 0.47 1.08 0.07 +oliveraies oliveraie nom f p 1.08 0.47 0.00 0.41 +olives olive nom f p 5.42 8.85 2.88 4.73 +olivette olivette nom f s 0.00 0.68 0.00 0.07 +olivettes olivette nom f p 0.00 0.68 0.00 0.61 +olivier olivier nom m s 2.09 12.84 0.77 4.19 +oliviers olivier nom m p 2.09 12.84 1.32 8.65 +olivine olivine nom f s 0.05 0.00 0.05 0.00 +olivâtre olivâtre adj s 0.00 1.15 0.00 0.81 +olivâtres olivâtre adj f p 0.00 1.15 0.00 0.34 +olla_podrida olla_podrida nom f 0.00 0.07 0.00 0.07 +ollé ollé ono 0.02 0.00 0.02 0.00 +olmèque olmèque adj s 0.01 0.00 0.01 0.00 +olmèques olmèque nom p 0.00 0.07 0.00 0.07 +olographe olographe adj m s 0.00 0.14 0.00 0.14 +olé_olé olé_olé adj m p 0.00 0.14 0.00 0.14 +olé olé ono 2.37 0.47 2.37 0.47 +oléagineux oléagineux nom m 0.00 0.07 0.00 0.07 +olécrane olécrane nom m s 0.01 0.00 0.01 0.00 +olécrâne olécrâne nom m s 0.00 0.07 0.00 0.07 +oléfine oléfine nom f s 0.03 0.00 0.03 0.00 +oléiculteurs oléiculteur nom m p 0.00 0.07 0.00 0.07 +oléine oléine nom f s 0.00 0.07 0.00 0.07 +oléoduc oléoduc nom m s 0.31 0.07 0.26 0.00 +oléoducs oléoduc nom m p 0.31 0.07 0.05 0.07 +olympe olympe nom m s 0.01 0.20 0.01 0.14 +olympes olympe nom m p 0.01 0.20 0.00 0.07 +olympiade olympiade nom f s 0.36 0.20 0.10 0.07 +olympiades olympiade nom f p 0.36 0.20 0.26 0.14 +olympien olympien adj m s 0.08 2.03 0.07 1.35 +olympienne olympien adj f s 0.08 2.03 0.00 0.54 +olympiens olympien adj m p 0.08 2.03 0.01 0.14 +olympique olympique adj s 3.62 1.69 1.68 1.28 +olympiques olympique adj p 3.62 1.69 1.94 0.41 +omît omettre ver 2.73 6.42 0.00 0.07 sub:imp:3s; +omani omani adj m s 0.01 0.00 0.01 0.00 +ombelle ombelle nom f s 0.01 0.74 0.00 0.07 +ombelles ombelle nom f p 0.01 0.74 0.01 0.68 +ombellifères ombellifère nom f p 0.00 0.20 0.00 0.20 +ombilic ombilic nom m s 0.07 0.20 0.07 0.20 +ombilical ombilical adj m s 0.78 1.89 0.57 1.76 +ombilicale ombilical adj f s 0.78 1.89 0.19 0.00 +ombilicaux ombilical adj m p 0.78 1.89 0.02 0.14 +omble omble nom m s 0.03 0.14 0.01 0.07 +ombles omble nom m p 0.03 0.14 0.02 0.07 +ombra ombrer ver 0.54 2.50 0.00 0.07 ind:pas:3s; +ombrage ombrage nom m s 0.57 2.64 0.46 1.28 +ombragea ombrager ver 0.03 2.77 0.00 0.07 ind:pas:3s; +ombrageaient ombrager ver 0.03 2.77 0.00 0.20 ind:imp:3p; +ombrageait ombrager ver 0.03 2.77 0.00 0.27 ind:imp:3s; +ombragent ombrager ver 0.03 2.77 0.00 0.27 ind:pre:3p; +ombrager ombrager ver 0.03 2.77 0.00 0.20 inf; +ombrages ombrage nom m p 0.57 2.64 0.11 1.35 +ombrageuse ombrageux adj f s 0.45 2.84 0.14 0.81 +ombrageusement ombrageusement adv 0.00 0.07 0.00 0.07 +ombrageuses ombrageux adj f p 0.45 2.84 0.00 0.14 +ombrageux ombrageux adj m 0.45 2.84 0.31 1.89 +ombragé ombragé adj m s 0.17 0.95 0.13 0.68 +ombragée ombragé adj f s 0.17 0.95 0.01 0.20 +ombragées ombrager ver f p 0.03 2.77 0.00 0.27 par:pas; +ombragés ombragé adj m p 0.17 0.95 0.03 0.00 +ombraient ombrer ver 0.54 2.50 0.00 0.07 ind:imp:3p; +ombrait ombrer ver 0.54 2.50 0.00 0.20 ind:imp:3s; +ombrant ombrer ver 0.54 2.50 0.00 0.14 par:pre; +ombre ombre nom s 45.67 233.45 35.98 190.61 +ombrelle ombrelle nom f s 0.97 4.80 0.86 3.72 +ombrelles ombrelle nom f p 0.97 4.80 0.11 1.08 +ombrer ombrer ver 0.54 2.50 0.13 0.20 inf; +ombres ombre nom p 45.67 233.45 9.70 42.84 +ombreuse ombreux adj f s 0.00 2.43 0.00 0.68 +ombreuses ombreux adj f p 0.00 2.43 0.00 0.95 +ombreux ombreux adj m 0.00 2.43 0.00 0.81 +ombré ombrer ver m s 0.54 2.50 0.01 0.34 par:pas; +ombrée ombrer ver f s 0.54 2.50 0.00 0.27 par:pas; +ombrées ombrée nom f p 0.54 0.07 0.54 0.00 +ombrés ombrer ver m p 0.54 2.50 0.00 0.47 par:pas; +âme_soeur âme_soeur nom f s 0.04 0.14 0.04 0.14 +âme âme nom f s 141.59 151.62 122.22 129.53 +omelette omelette nom f s 6.87 6.42 6.42 5.14 +omelettes omelette nom f p 6.87 6.42 0.45 1.28 +omerta omerta nom f s 0.14 0.14 0.14 0.14 +âmes âme nom f p 141.59 151.62 19.37 22.09 +omet omettre ver 2.73 6.42 0.13 0.20 ind:pre:3s; +omets omettre ver 2.73 6.42 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +omettaient omettre ver 2.73 6.42 0.00 0.07 ind:imp:3p; +omettais omettre ver 2.73 6.42 0.00 0.07 ind:imp:1s; +omettait omettre ver 2.73 6.42 0.00 0.27 ind:imp:3s; +omettant omettre ver 2.73 6.42 0.10 0.54 par:pre; +omette omettre ver 2.73 6.42 0.00 0.07 sub:pre:3s; +omettent omettre ver 2.73 6.42 0.01 0.20 ind:pre:3p; +omettez omettre ver 2.73 6.42 0.24 0.00 imp:pre:2p;ind:pre:2p; +omettiez omettre ver 2.73 6.42 0.01 0.07 ind:imp:2p; +omettrai omettre ver 2.73 6.42 0.03 0.07 ind:fut:1s; +omettre omettre ver 2.73 6.42 0.35 0.74 inf; +omettrez omettre ver 2.73 6.42 0.01 0.00 ind:fut:2p; +omicron omicron nom m s 0.12 0.07 0.12 0.07 +omis omettre ver m 2.73 6.42 1.74 3.58 par:pas; +omise omettre ver f s 2.73 6.42 0.04 0.14 par:pas; +omises omettre ver f p 2.73 6.42 0.03 0.07 par:pas; +omission omission nom f s 1.02 2.09 0.78 1.76 +omissions omission nom f p 1.02 2.09 0.25 0.34 +omit omettre ver 2.73 6.42 0.00 0.20 ind:pas:3s; +omni omni adv 0.21 0.27 0.21 0.27 +omnibus omnibus nom m 0.37 1.28 0.37 1.28 +omnidirectionnel omnidirectionnel adj m s 0.03 0.00 0.02 0.00 +omnidirectionnelle omnidirectionnel adj f s 0.03 0.00 0.01 0.00 +omnipotence omnipotence nom f s 0.16 0.74 0.16 0.74 +omnipotent omnipotent adj m s 0.16 1.28 0.14 0.54 +omnipotente omnipotent adj f s 0.16 1.28 0.01 0.74 +omnipotentes omnipotent adj f p 0.16 1.28 0.01 0.00 +omniprésence omniprésence nom f s 0.11 0.34 0.11 0.34 +omniprésent omniprésent adj m s 0.69 2.16 0.53 0.81 +omniprésente omniprésent adj f s 0.69 2.16 0.08 1.08 +omniprésentes omniprésent adj f p 0.69 2.16 0.03 0.20 +omniprésents omniprésent adj m p 0.69 2.16 0.06 0.07 +omnipuissance omnipuissance nom f s 0.00 0.07 0.00 0.07 +omniscience omniscience nom f s 0.09 0.00 0.09 0.00 +omniscient omniscient adj m s 0.33 0.47 0.14 0.34 +omnisciente omniscient adj f s 0.33 0.47 0.05 0.07 +omniscients omniscient adj m p 0.33 0.47 0.14 0.07 +omnisports omnisports adj m s 0.01 1.28 0.01 1.28 +omnium omnium nom m s 0.00 0.20 0.00 0.20 +omnivore omnivore adj m s 0.16 0.14 0.02 0.07 +omnivores omnivore adj f p 0.16 0.14 0.14 0.07 +omoplate omoplate nom f s 0.66 5.74 0.48 1.55 +omoplates omoplate nom f p 0.66 5.74 0.18 4.19 +omphalos omphalos nom m 0.00 0.07 0.00 0.07 +oméga oméga nom m s 0.88 0.88 0.88 0.88 +on_dit on_dit nom m 0.14 0.81 0.14 0.81 +on_line on_line adv 0.07 0.00 0.07 0.00 +on on pro_per s 8586.40 4838.38 8586.40 4838.38 +onagre onagre nom s 0.00 0.14 0.00 0.14 +onanisme onanisme nom m s 0.10 0.47 0.10 0.41 +onanismes onanisme nom m p 0.10 0.47 0.00 0.07 +onaniste onaniste nom s 0.02 0.14 0.02 0.14 +onc onc adv 0.03 0.14 0.03 0.14 +once once nom f s 4.66 1.89 3.77 1.76 +onces once nom f p 4.66 1.89 0.89 0.14 +oncle oncle nom m s 126.71 127.70 124.11 121.96 +oncles oncle nom m p 126.71 127.70 2.60 5.74 +oncologie oncologie nom f s 0.35 0.00 0.35 0.00 +oncologique oncologique adj f s 0.01 0.00 0.01 0.00 +oncologue oncologue nom s 0.22 0.00 0.21 0.00 +oncologues oncologue nom p 0.22 0.00 0.01 0.00 +onction onction nom f s 0.28 1.28 0.28 1.15 +onctions onction nom f p 0.28 1.28 0.00 0.14 +onctueuse onctueux adj f s 0.24 4.73 0.17 1.96 +onctueusement onctueusement adv 0.00 0.07 0.00 0.07 +onctueuses onctueux adj f p 0.24 4.73 0.00 0.27 +onctueux onctueux adj m 0.24 4.73 0.07 2.50 +onctuosité onctuosité nom f s 0.01 0.61 0.01 0.61 +ondatra ondatra nom m s 0.02 0.00 0.02 0.00 +onde onde nom f s 11.91 17.70 4.39 6.01 +onder onder ver 0.01 0.00 0.01 0.00 inf; +ondes onde nom f p 11.91 17.70 7.52 11.69 +ondin ondin nom m s 0.20 0.81 0.00 0.20 +ondine ondin nom f s 0.20 0.81 0.20 0.34 +ondines ondine nom f p 0.01 0.00 0.01 0.00 +ondins ondin nom m p 0.20 0.81 0.00 0.20 +ondoie ondoyer ver 0.01 2.84 0.00 0.07 ind:pre:1s; +ondoiement ondoiement nom m s 0.00 0.54 0.00 0.47 +ondoiements ondoiement nom m p 0.00 0.54 0.00 0.07 +ondoient ondoyer ver 0.01 2.84 0.00 0.14 ind:pre:3p; +ondoyaient ondoyer ver 0.01 2.84 0.00 0.47 ind:imp:3p; +ondoyait ondoyer ver 0.01 2.84 0.00 0.54 ind:imp:3s; +ondoyant ondoyer ver 0.01 2.84 0.01 0.95 par:pre; +ondoyante ondoyant adj f s 0.10 1.15 0.10 0.47 +ondoyantes ondoyant adj f p 0.10 1.15 0.00 0.14 +ondoyants ondoyant adj m p 0.10 1.15 0.00 0.27 +ondoyer ondoyer ver 0.01 2.84 0.00 0.47 inf; +ondoyons ondoyer ver 0.01 2.84 0.00 0.07 imp:pre:1p; +ondoyé ondoyer ver m s 0.01 2.84 0.00 0.14 par:pas; +ondée ondée adj f s 0.01 0.07 0.01 0.00 +ondées ondée nom f p 0.16 2.30 0.16 0.47 +ondula onduler ver 1.28 12.03 0.00 0.47 ind:pas:3s; +ondulaient onduler ver 1.28 12.03 0.14 0.81 ind:imp:3p; +ondulait onduler ver 1.28 12.03 0.11 2.64 ind:imp:3s; +ondulant onduler ver 1.28 12.03 0.24 1.96 par:pre; +ondulante ondulant adj f s 0.20 1.55 0.17 0.95 +ondulantes ondulant adj f p 0.20 1.55 0.01 0.20 +ondulants ondulant adj m p 0.20 1.55 0.01 0.14 +ondulation ondulation nom f s 0.26 6.01 0.05 2.03 +ondulations ondulation nom f p 0.26 6.01 0.21 3.99 +ondulatoire ondulatoire adj s 0.01 0.34 0.00 0.27 +ondulatoires ondulatoire adj m p 0.01 0.34 0.01 0.07 +ondule onduler ver 1.28 12.03 0.27 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ondulent onduler ver 1.28 12.03 0.23 1.01 ind:pre:3p; +onduler onduler ver 1.28 12.03 0.23 2.09 inf; +ondulerait onduler ver 1.28 12.03 0.00 0.07 cnd:pre:3s; +onduleuse onduleux adj f s 0.00 1.62 0.00 0.68 +onduleuses onduleux adj f p 0.00 1.62 0.00 0.34 +onduleux onduleux adj m s 0.00 1.62 0.00 0.61 +ondulons onduler ver 1.28 12.03 0.00 0.07 ind:pre:1p; +ondulèrent onduler ver 1.28 12.03 0.00 0.07 ind:pas:3p; +ondulé ondulé adj m s 0.73 4.59 0.04 0.95 +ondulée ondulé adj f s 0.73 4.59 0.38 2.03 +ondulées ondulé adj f p 0.73 4.59 0.02 0.41 +ondulés ondulé adj m p 0.73 4.59 0.29 1.22 +ondés ondé adj m p 0.00 0.14 0.00 0.14 +one_step one_step nom m s 0.00 0.20 0.00 0.20 +âne âne nom m s 14.19 18.58 12.33 14.32 +ânerie ânerie nom f s 1.96 2.70 0.32 0.81 +âneries ânerie nom f p 1.96 2.70 1.64 1.89 +ânes âne nom m p 14.19 18.58 1.86 4.26 +ânesse ânesse nom f s 0.90 0.41 0.90 0.20 +ânesses ânesse nom f p 0.90 0.41 0.00 0.20 +ongle ongle nom m s 20.37 45.47 2.35 10.14 +ongles ongle nom m p 20.37 45.47 18.02 35.34 +onglet onglet nom m s 0.67 0.34 0.52 0.14 +onglets onglet nom m p 0.67 0.34 0.14 0.20 +onglon onglon nom m s 0.00 0.07 0.00 0.07 +onglée onglée adj f s 0.01 0.00 0.01 0.00 +onguent onguent nom m s 0.93 1.82 0.79 0.54 +onguents onguent nom m p 0.93 1.82 0.14 1.28 +ongulé ongulé nom m s 0.09 0.00 0.08 0.00 +ongulés ongulé nom m p 0.09 0.00 0.01 0.00 +ânier ânier nom m s 0.00 0.54 0.00 0.54 +onirique onirique adj s 0.17 0.41 0.04 0.34 +oniriques onirique adj p 0.17 0.41 0.13 0.07 +onirisme onirisme nom m s 0.14 0.00 0.14 0.00 +onirologie onirologie nom f s 0.00 0.07 0.00 0.07 +onomatopée onomatopée nom f s 0.05 2.03 0.03 0.74 +onomatopées onomatopée nom f p 0.05 2.03 0.02 1.28 +onomatopéique onomatopéique adj s 0.40 0.00 0.40 0.00 +ânon ânon nom m s 0.17 0.47 0.16 0.41 +ânonna ânonner ver 0.16 2.50 0.00 0.27 ind:pas:3s; +ânonnaient ânonner ver 0.16 2.50 0.00 0.14 ind:imp:3p; +ânonnait ânonner ver 0.16 2.50 0.14 0.68 ind:imp:3s; +ânonnant ânonner ver 0.16 2.50 0.00 0.47 par:pre; +ânonne ânonner ver 0.16 2.50 0.00 0.27 ind:pre:1s;ind:pre:3s; +ânonnement ânonnement nom m s 0.00 0.14 0.00 0.07 +ânonnements ânonnement nom m p 0.00 0.14 0.00 0.07 +ânonner ânonner ver 0.16 2.50 0.02 0.54 inf; +ânonnions ânonner ver 0.16 2.50 0.00 0.07 ind:imp:1p; +ânonnés ânonner ver m p 0.16 2.50 0.00 0.07 par:pas; +ânons ânon nom m p 0.17 0.47 0.01 0.07 +onopordons onopordon nom m p 0.00 0.07 0.00 0.07 +ont avoir aux 18559.23 12800.81 1063.32 553.31 ind:pre:3p; +onto onto adv 0.05 0.07 0.05 0.07 +ontologie ontologie nom f s 0.02 0.14 0.02 0.14 +ontologique ontologique adj s 0.04 0.34 0.04 0.34 +ontologiquement ontologiquement adv 0.02 0.00 0.02 0.00 +onéreuse onéreux adj f s 0.84 1.08 0.21 0.14 +onéreuses onéreux adj f p 0.84 1.08 0.04 0.27 +onéreux onéreux adj m 0.84 1.08 0.60 0.68 +onusienne onusien adj f s 0.03 0.07 0.02 0.00 +onusiennes onusien adj f p 0.03 0.07 0.01 0.00 +onusiens onusien adj m p 0.03 0.07 0.00 0.07 +onyx onyx nom m 0.34 0.61 0.34 0.61 +onze onze adj_num 11.27 38.85 11.27 38.85 +onzième onzième adj 0.34 1.49 0.34 1.49 +opacifiait opacifier ver 0.03 0.54 0.00 0.07 ind:imp:3s; +opacifiant opacifier ver 0.03 0.54 0.00 0.07 par:pre; +opacification opacification nom f s 0.01 0.00 0.01 0.00 +opacifie opacifier ver 0.03 0.54 0.00 0.20 ind:pre:1s;ind:pre:3s; +opacifient opacifier ver 0.03 0.54 0.01 0.07 ind:pre:3p; +opacifier opacifier ver 0.03 0.54 0.01 0.07 inf; +opacifié opacifier ver m s 0.03 0.54 0.00 0.07 par:pas; +opacité opacité nom f s 0.23 2.03 0.21 1.96 +opacités opacité nom f p 0.23 2.03 0.03 0.07 +opale opale nom f s 0.24 0.81 0.16 0.68 +opales opale nom f p 0.24 0.81 0.08 0.14 +opalescence opalescence nom f s 0.00 0.07 0.00 0.07 +opalescent opalescent adj m s 0.00 0.68 0.00 0.27 +opalescente opalescent adj f s 0.00 0.68 0.00 0.27 +opalescentes opalescent adj f p 0.00 0.68 0.00 0.14 +opalin opalin adj m s 0.02 0.74 0.00 0.41 +opaline opalin nom f s 0.02 1.35 0.02 1.28 +opalines opalin nom f p 0.02 1.35 0.00 0.07 +opalins opalin adj m p 0.02 0.74 0.01 0.14 +opaque opaque adj s 0.50 13.11 0.31 9.59 +opaques opaque adj p 0.50 13.11 0.19 3.51 +ope ope nom s 0.08 0.00 0.08 0.00 +open open adj 1.75 0.00 1.75 0.00 +opercule opercule nom m s 0.01 0.07 0.01 0.07 +ophidien ophidien nom m s 0.02 0.07 0.01 0.00 +ophidiens ophidien nom m p 0.02 0.07 0.01 0.07 +ophite ophite nom m s 0.00 0.07 0.00 0.07 +ophtalmique ophtalmique adj f s 0.01 0.00 0.01 0.00 +ophtalmologie ophtalmologie nom f s 0.09 0.07 0.09 0.07 +ophtalmologique ophtalmologique adj m s 0.02 0.00 0.02 0.00 +ophtalmologiste ophtalmologiste nom s 0.09 0.61 0.09 0.54 +ophtalmologistes ophtalmologiste nom p 0.09 0.61 0.00 0.07 +ophtalmologue ophtalmologue nom s 0.04 0.07 0.04 0.07 +ophtalmoscope ophtalmoscope nom m s 0.02 0.00 0.02 0.00 +opiacé opiacé nom m s 0.58 0.00 0.06 0.00 +opiacées opiacé adj f p 0.19 0.00 0.14 0.00 +opiacés opiacé nom m p 0.58 0.00 0.52 0.00 +opiat opiat nom m s 0.03 0.20 0.01 0.00 +opiats opiat nom m p 0.03 0.20 0.01 0.20 +opimes opimes adj f p 0.01 0.00 0.01 0.00 +opina opiner ver 0.38 4.46 0.10 0.95 ind:pas:3s; +opinai opiner ver 0.38 4.46 0.00 0.20 ind:pas:1s; +opinaient opiner ver 0.38 4.46 0.00 0.07 ind:imp:3p; +opinais opiner ver 0.38 4.46 0.00 0.14 ind:imp:1s; +opinait opiner ver 0.38 4.46 0.10 0.47 ind:imp:3s; +opinant opiner ver 0.38 4.46 0.00 0.14 par:pre; +opine opiner ver 0.38 4.46 0.02 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +opinel opinel nom m s 0.00 1.22 0.00 1.15 +opinels opinel nom m p 0.00 1.22 0.00 0.07 +opiner opiner ver 0.38 4.46 0.02 0.41 inf; +opines opiner ver 0.38 4.46 0.11 0.00 ind:pre:2s; +opinion opinion nom f s 33.89 44.66 28.43 33.24 +opinions opinion nom f p 33.89 44.66 5.47 11.42 +opiniâtra opiniâtrer ver 0.02 0.27 0.00 0.14 ind:pas:3s; +opiniâtre opiniâtre adj s 0.06 2.77 0.06 2.23 +opiniâtrement opiniâtrement adv 0.02 0.27 0.02 0.27 +opiniâtres opiniâtre adj p 0.06 2.77 0.00 0.54 +opiniâtreté opiniâtreté nom f s 0.01 1.76 0.01 1.76 +opiniâtrez opiniâtrer ver 0.02 0.27 0.00 0.07 ind:pre:2p; +opinèrent opiner ver 0.38 4.46 0.00 0.07 ind:pas:3p; +opiné opiner ver m s 0.38 4.46 0.01 0.34 par:pas; +opiomane opiomane adj f s 0.03 0.07 0.03 0.07 +opium opium nom m s 3.95 5.61 3.95 5.61 +opopanax opopanax nom m 0.00 0.07 0.00 0.07 +opoponax opoponax nom m 0.00 0.07 0.00 0.07 +opossum opossum nom m s 0.52 0.27 0.41 0.27 +opossums opossum nom m p 0.52 0.27 0.12 0.00 +opothérapiques opothérapique adj f p 0.00 0.07 0.00 0.07 +oppidum oppidum nom m s 0.00 0.27 0.00 0.27 +opportun opportun adj m s 1.68 2.57 1.45 1.89 +opportune opportun adj f s 1.68 2.57 0.08 0.54 +opportunes opportun adj f p 1.68 2.57 0.02 0.00 +opportunisme opportunisme nom m s 0.11 0.20 0.11 0.20 +opportuniste opportuniste adj s 0.44 0.47 0.38 0.34 +opportunistes opportuniste nom p 0.62 0.20 0.26 0.20 +opportunité opportunité nom f s 11.84 2.50 9.50 2.36 +opportunités opportunité nom f p 11.84 2.50 2.33 0.14 +opportuns opportun adj m p 1.68 2.57 0.14 0.14 +opportunément opportunément adv 0.07 0.68 0.07 0.68 +opposa opposer ver 18.20 46.01 0.12 2.30 ind:pas:3s; +opposable opposable adj m s 0.14 0.07 0.05 0.00 +opposables opposable adj p 0.14 0.07 0.09 0.07 +opposai opposer ver 18.20 46.01 0.00 0.34 ind:pas:1s; +opposaient opposer ver 18.20 46.01 0.07 2.23 ind:imp:3p; +opposais opposer ver 18.20 46.01 0.18 0.41 ind:imp:1s;ind:imp:2s; +opposait opposer ver 18.20 46.01 0.53 7.03 ind:imp:3s; +opposant opposer ver 18.20 46.01 0.35 1.69 par:pre; +opposante opposant nom f s 1.63 1.42 0.01 0.00 +opposants opposant nom m p 1.63 1.42 1.28 0.95 +oppose opposer ver 18.20 46.01 4.27 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +opposent opposer ver 18.20 46.01 0.85 1.89 ind:pre:3p; +opposer opposer ver 18.20 46.01 6.48 9.93 ind:pre:2p;inf; +opposera opposer ver 18.20 46.01 0.28 0.54 ind:fut:3s; +opposerai opposer ver 18.20 46.01 0.55 0.00 ind:fut:1s; +opposeraient opposer ver 18.20 46.01 0.01 0.47 cnd:pre:3p; +opposerais opposer ver 18.20 46.01 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +opposerait opposer ver 18.20 46.01 0.15 0.34 cnd:pre:3s; +opposerez opposer ver 18.20 46.01 0.11 0.07 ind:fut:2p; +opposerions opposer ver 18.20 46.01 0.00 0.07 cnd:pre:1p; +opposerons opposer ver 18.20 46.01 0.14 0.07 ind:fut:1p; +opposeront opposer ver 18.20 46.01 0.28 0.00 ind:fut:3p; +opposes opposer ver 18.20 46.01 0.35 0.07 ind:pre:2s; +opposez opposer ver 18.20 46.01 0.29 0.20 imp:pre:2p;ind:pre:2p; +opposions opposer ver 18.20 46.01 0.02 0.27 ind:imp:1p; +opposition opposition nom f s 5.28 11.49 5.26 10.68 +oppositionnel oppositionnel adj m s 0.01 0.07 0.01 0.00 +oppositionnelle oppositionnel adj f s 0.01 0.07 0.00 0.07 +oppositions opposition nom f p 5.28 11.49 0.02 0.81 +opposons opposer ver 18.20 46.01 0.06 0.14 imp:pre:1p;ind:pre:1p; +opposât opposer ver 18.20 46.01 0.00 0.34 sub:imp:3s; +opposèrent opposer ver 18.20 46.01 0.03 0.61 ind:pas:3p; +opposé opposé nom m s 2.38 5.34 2.13 5.20 +opposée opposé adj f s 3.51 14.46 0.92 3.18 +opposées opposé adj f p 3.51 14.46 0.69 1.89 +opposés opposer ver m p 18.20 46.01 0.60 1.42 par:pas; +oppressa oppresser ver 1.11 4.80 0.00 0.07 ind:pas:3s; +oppressaient oppresser ver 1.11 4.80 0.10 0.34 ind:imp:3p; +oppressait oppresser ver 1.11 4.80 0.17 1.35 ind:imp:3s; +oppressant oppressant adj m s 1.01 3.38 0.38 1.49 +oppressante oppressant adj f s 1.01 3.38 0.61 1.55 +oppressantes oppressant adj f p 1.01 3.38 0.01 0.20 +oppressants oppressant adj m p 1.01 3.38 0.01 0.14 +oppresse oppresser ver 1.11 4.80 0.38 1.15 ind:pre:1s;ind:pre:3s; +oppressent oppresser ver 1.11 4.80 0.06 0.27 ind:pre:3p; +oppresser oppresser ver 1.11 4.80 0.14 0.07 inf; +oppresseur oppresseur nom m s 1.26 0.74 0.67 0.41 +oppresseurs oppresseur nom m p 1.26 0.74 0.59 0.34 +oppressif oppressif adj m s 0.06 0.14 0.04 0.07 +oppression oppression nom f s 2.25 6.82 2.17 6.69 +oppressions oppression nom f p 2.25 6.82 0.07 0.14 +oppressive oppressif adj f s 0.06 0.14 0.02 0.07 +oppressé oppresser ver m s 1.11 4.80 0.25 0.68 par:pas; +oppressée oppressé adj f s 0.29 1.08 0.20 0.68 +oppressées oppressé adj f p 0.29 1.08 0.02 0.00 +opprimait opprimer ver 1.69 2.03 0.01 0.20 ind:imp:3s; +opprimant opprimer ver 1.69 2.03 0.01 0.07 par:pre; +opprime opprimer ver 1.69 2.03 0.40 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +oppriment opprimer ver 1.69 2.03 0.06 0.20 ind:pre:3p; +opprimer opprimer ver 1.69 2.03 0.07 0.68 inf; +opprimez opprimer ver 1.69 2.03 0.04 0.00 ind:pre:2p; +opprimé opprimer ver m s 1.69 2.03 0.35 0.20 par:pas; +opprimée opprimer ver f s 1.69 2.03 0.28 0.27 par:pas; +opprimées opprimé nom f p 1.91 1.89 0.22 0.00 +opprimés opprimé nom m p 1.91 1.89 1.48 1.28 +opprobre opprobre nom m s 0.33 1.89 0.33 1.82 +opprobres opprobre nom m p 0.33 1.89 0.00 0.07 +âpre âpre adj s 1.60 9.86 1.32 7.70 +âprement âprement adv 0.13 3.11 0.13 3.11 +âpres âpre adj p 1.60 9.86 0.27 2.16 +âpreté âpreté nom f s 0.04 2.77 0.04 2.70 +âpretés âpreté nom f p 0.04 2.77 0.00 0.07 +opta opter ver 1.98 5.14 0.01 1.08 ind:pas:3s; +optai opter ver 1.98 5.14 0.00 0.34 ind:pas:1s; +optaient opter ver 1.98 5.14 0.00 0.20 ind:imp:3p; +optais opter ver 1.98 5.14 0.03 0.07 ind:imp:1s; +optait opter ver 1.98 5.14 0.01 0.07 ind:imp:3s; +optalidon optalidon nom m s 0.14 0.07 0.14 0.07 +optant optant nom m s 0.00 0.14 0.00 0.14 +optatif optatif adj m s 0.00 0.20 0.00 0.14 +optatifs optatif adj m p 0.00 0.20 0.00 0.07 +opte opter ver 1.98 5.14 0.31 0.54 ind:pre:1s;ind:pre:3s; +optent opter ver 1.98 5.14 0.14 0.14 ind:pre:3p; +opter opter ver 1.98 5.14 0.37 0.88 inf; +opterais opter ver 1.98 5.14 0.04 0.07 cnd:pre:1s; +optes opter ver 1.98 5.14 0.02 0.00 ind:pre:2s; +opère opérer ver 29.59 24.53 4.75 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +opèrent opérer ver 29.59 24.53 1.06 0.47 ind:pre:3p; +opticien opticien nom m s 0.18 0.47 0.13 0.34 +opticienne opticien nom f s 0.18 0.47 0.02 0.00 +opticiens opticien nom m p 0.18 0.47 0.04 0.14 +optima optimum nom m p 0.15 0.14 0.00 0.07 +optimal optimal adj m s 0.48 0.34 0.19 0.20 +optimale optimal adj f s 0.48 0.34 0.24 0.14 +optimales optimal adj f p 0.48 0.34 0.04 0.00 +optimaux optimal adj m p 0.48 0.34 0.02 0.00 +optime optime adv 0.00 0.20 0.00 0.20 +optimisation optimisation nom f s 0.14 0.00 0.14 0.00 +optimise optimiser ver 0.23 0.07 0.06 0.00 ind:pre:1s;ind:pre:3s; +optimiser optimiser ver 0.23 0.07 0.12 0.00 inf; +optimisez optimiser ver 0.23 0.07 0.01 0.00 ind:pre:2p; +optimisme optimisme nom m s 1.66 6.55 1.66 6.55 +optimiste optimiste adj s 4.21 4.19 3.52 3.11 +optimistes optimiste adj p 4.21 4.19 0.70 1.08 +optimisé optimiser ver m s 0.23 0.07 0.05 0.00 par:pas; +optimisées optimiser ver f p 0.23 0.07 0.00 0.07 par:pas; +optimum optimum nom m s 0.15 0.14 0.15 0.07 +option option nom f s 12.31 2.09 7.37 1.08 +optionnel optionnel adj m s 0.19 0.00 0.16 0.00 +optionnelle optionnel adj f s 0.19 0.00 0.03 0.00 +options option nom f p 12.31 2.09 4.94 1.01 +optique optique adj s 1.73 1.08 1.36 1.01 +optiques optique adj p 1.73 1.08 0.38 0.07 +optométrie optométrie nom f s 0.01 0.00 0.01 0.00 +optométriste optométriste nom s 0.05 0.00 0.05 0.00 +optons opter ver 1.98 5.14 0.03 0.00 imp:pre:1p;ind:pre:1p; +optât opter ver 1.98 5.14 0.00 0.14 sub:imp:3s; +optèrent opter ver 1.98 5.14 0.01 0.14 ind:pas:3p; +opté opter ver m s 1.98 5.14 0.90 1.49 par:pas; +opulence opulence nom f s 0.54 3.31 0.54 3.24 +opulences opulence nom f p 0.54 3.31 0.00 0.07 +opulent opulent adj m s 0.47 4.39 0.01 1.08 +opulente opulent adj f s 0.47 4.39 0.32 1.42 +opulentes opulent adj f p 0.47 4.39 0.02 1.08 +opulents opulent adj m p 0.47 4.39 0.11 0.81 +opéra_comique opéra_comique nom m s 0.00 0.34 0.00 0.34 +opéra opéra nom m s 19.61 20.07 18.93 18.99 +opérable opérable adj f s 0.13 0.07 0.13 0.07 +opéraient opérer ver 29.59 24.53 0.03 1.69 ind:imp:3p; +opérais opérer ver 29.59 24.53 0.05 0.34 ind:imp:1s;ind:imp:2s; +opérait opérer ver 29.59 24.53 0.56 3.11 ind:imp:3s; +opérant opérer ver 29.59 24.53 0.26 1.28 par:pre; +opéras opéra nom m p 19.61 20.07 0.68 1.08 +opérateur opérateur nom m s 6.54 2.84 5.07 2.03 +opérateurs opérateur nom m p 6.54 2.84 0.28 0.74 +opération_miracle opération_miracle nom f s 0.00 0.07 0.00 0.07 +opération opération nom f s 61.94 70.20 50.01 41.42 +opérationnel opérationnel adj m s 5.07 0.34 2.21 0.14 +opérationnelle opérationnel adj f s 5.07 0.34 1.19 0.14 +opérationnelles opérationnel adj f p 5.07 0.34 0.26 0.07 +opérationnels opérationnel adj m p 5.07 0.34 1.42 0.00 +opérations opération nom f p 61.94 70.20 11.94 28.78 +opératique opératique adj f s 0.01 0.00 0.01 0.00 +opératoire opératoire adj s 1.54 0.68 1.49 0.68 +opératoires opératoire adj p 1.54 0.68 0.05 0.00 +opératrice opérateur nom f s 6.54 2.84 1.19 0.07 +opératrices opératrice nom f p 0.19 0.00 0.19 0.00 +opérer opérer ver 29.59 24.53 14.94 8.58 ind:pre:2p;inf; +opérera opérer ver 29.59 24.53 0.20 0.27 ind:fut:3s; +opérerai opérer ver 29.59 24.53 0.28 0.00 ind:fut:1s; +opéreraient opérer ver 29.59 24.53 0.00 0.27 cnd:pre:3p; +opérerait opérer ver 29.59 24.53 0.04 0.41 cnd:pre:3s; +opéreras opérer ver 29.59 24.53 0.02 0.00 ind:fut:2s; +opérerez opérer ver 29.59 24.53 0.05 0.07 ind:fut:2p; +opérerons opérer ver 29.59 24.53 0.18 0.00 ind:fut:1p; +opéreront opérer ver 29.59 24.53 0.08 0.07 ind:fut:3p; +opérette opérette nom f s 0.58 4.19 0.54 3.11 +opérettes opérette nom f p 0.58 4.19 0.04 1.08 +opérez opérer ver 29.59 24.53 0.49 0.14 imp:pre:2p;ind:pre:2p; +opériez opérer ver 29.59 24.53 0.13 0.00 ind:imp:2p; +opérions opérer ver 29.59 24.53 0.00 0.27 ind:imp:1p; +opérons opérer ver 29.59 24.53 0.19 0.07 imp:pre:1p;ind:pre:1p; +opérât opérer ver 29.59 24.53 0.00 0.07 sub:imp:3s; +opérèrent opérer ver 29.59 24.53 0.00 0.07 ind:pas:3p; +opéré opérer ver m s 29.59 24.53 4.92 2.43 par:pas; +opérée opérer ver f s 29.59 24.53 1.00 0.88 par:pas; +opérées opérer ver f p 29.59 24.53 0.03 0.14 par:pas; +opérés opérer ver m p 29.59 24.53 0.06 0.54 par:pas; +opus opus nom m 0.35 1.01 0.35 1.01 +opuscule opuscule nom m s 0.04 0.88 0.03 0.61 +opuscules opuscule nom m p 0.04 0.88 0.01 0.27 +or or con 17.13 65.27 17.13 65.27 +oracle oracle nom m s 3.21 2.77 2.32 2.16 +oracles oracle nom m p 3.21 2.77 0.89 0.61 +orage orage nom m s 17.14 35.41 14.50 30.61 +orages orage nom m p 17.14 35.41 2.64 4.80 +orageuse orageux adj f s 0.61 4.12 0.11 1.82 +orageuses orageux adj f p 0.61 4.12 0.17 0.74 +orageux orageux adj m 0.61 4.12 0.33 1.55 +oraison oraison nom f s 0.63 3.65 0.20 3.11 +oraisons oraison nom f p 0.63 3.65 0.43 0.54 +oral oral nom m s 1.42 2.70 1.42 2.70 +orale oral adj f s 2.31 1.96 1.31 0.88 +oralement oralement adv 0.20 0.74 0.20 0.74 +orales oral adj f p 2.31 1.96 0.22 0.27 +oralité oralité nom f s 0.01 0.07 0.01 0.07 +oranais oranais adj m s 0.00 0.41 0.00 0.34 +oranaise oranais adj f s 0.00 0.41 0.00 0.07 +orang_outan orang_outan nom m s 0.28 0.20 0.22 0.07 +orang_outang orang_outang nom m s 0.08 0.74 0.08 0.61 +orange orange nom s 16.29 19.59 11.56 12.03 +orangeade orangeade nom f s 1.91 2.03 1.44 1.76 +orangeades orangeade nom f p 1.91 2.03 0.48 0.27 +oranger oranger nom m s 1.67 5.27 1.03 2.09 +orangeraie orangeraie nom f s 0.31 0.34 0.11 0.20 +orangeraies orangeraie nom f p 0.31 0.34 0.20 0.14 +orangerie orangerie nom f s 0.03 0.41 0.03 0.34 +orangeries orangerie nom f p 0.03 0.41 0.00 0.07 +orangers oranger nom m p 1.67 5.27 0.64 3.18 +oranges orange nom p 16.29 19.59 4.73 7.57 +orangistes orangiste nom p 0.04 0.00 0.04 0.00 +orang_outang orang_outang nom m p 0.08 0.74 0.00 0.14 +orang_outan orang_outan nom m p 0.28 0.20 0.06 0.14 +orangé orangé adj m s 0.32 4.93 0.17 1.96 +orangée orangé adj f s 0.32 4.93 0.14 1.62 +orangées orangé adj f p 0.32 4.93 0.01 0.61 +orangés orangé adj m p 0.32 4.93 0.00 0.74 +orant orant nom m s 0.00 0.47 0.00 0.07 +orante orant nom f s 0.00 0.47 0.00 0.34 +orantes orant adj f p 0.02 0.07 0.02 0.00 +orants orant nom m p 0.00 0.47 0.00 0.07 +orateur orateur nom m s 1.70 5.34 1.42 3.58 +orateurs orateur nom m p 1.70 5.34 0.23 1.76 +oratoire oratoire nom m s 0.42 1.49 0.42 1.28 +oratoires oratoire adj p 0.23 1.76 0.06 0.81 +oratorien oratorien nom m s 0.00 0.34 0.00 0.14 +oratoriens oratorien nom m p 0.00 0.34 0.00 0.20 +oratorio oratorio nom m s 0.02 0.61 0.02 0.54 +oratorios oratorio nom m p 0.02 0.61 0.00 0.07 +oratrice orateur nom f s 1.70 5.34 0.05 0.00 +oraux oral adj m p 2.31 1.96 0.10 0.27 +orbe orbe nom m s 0.59 1.22 0.46 1.01 +orbes orbe nom m p 0.59 1.22 0.14 0.20 +orbiculaire orbiculaire adj m s 0.00 0.14 0.00 0.14 +orbitaire orbitaire adj f s 0.04 0.07 0.02 0.07 +orbitaires orbitaire adj f p 0.04 0.07 0.02 0.00 +orbital orbital adj m s 0.61 0.07 0.17 0.00 +orbitale orbital adj f s 0.61 0.07 0.29 0.07 +orbitales orbital adj f p 0.61 0.07 0.11 0.00 +orbitaux orbital adj m p 0.61 0.07 0.04 0.00 +orbite orbite nom f s 9.81 8.31 8.59 2.64 +orbiter orbiter ver 0.03 0.00 0.01 0.00 inf; +orbites orbite nom f p 9.81 8.31 1.22 5.68 +orbitons orbiter ver 0.03 0.00 0.02 0.00 ind:pre:1p; +orbitèle orbitèle adj m s 0.05 0.00 0.03 0.00 +orbitèles orbitèle adj m p 0.05 0.00 0.02 0.00 +orchestra orchestrer ver 4.29 1.08 2.99 0.00 ind:pas:3s; +orchestraient orchestrer ver 4.29 1.08 0.00 0.07 ind:imp:3p; +orchestrait orchestrer ver 4.29 1.08 0.03 0.07 ind:imp:3s; +orchestral orchestral adj m s 1.10 0.14 0.02 0.00 +orchestrale orchestral adj f s 1.10 0.14 1.08 0.07 +orchestration orchestration nom f s 0.23 0.07 0.22 0.07 +orchestrations orchestration nom f p 0.23 0.07 0.01 0.00 +orchestraux orchestral adj m p 1.10 0.14 0.00 0.07 +orchestre orchestre nom m s 14.69 19.73 13.71 18.04 +orchestrent orchestrer ver 4.29 1.08 0.00 0.07 ind:pre:3p; +orchestrer orchestrer ver 4.29 1.08 0.12 0.20 inf; +orchestres orchestre nom m p 14.69 19.73 0.98 1.69 +orchestré orchestrer ver m s 4.29 1.08 0.85 0.27 par:pas; +orchestrée orchestrer ver f s 4.29 1.08 0.18 0.07 par:pas; +orchestrées orchestrer ver f p 4.29 1.08 0.04 0.07 par:pas; +orchestrés orchestrer ver m p 4.29 1.08 0.03 0.00 par:pas; +orchidée orchidée nom f s 3.88 2.57 1.98 1.42 +orchidées orchidée nom f p 3.88 2.57 1.90 1.15 +orchis orchis nom m 0.14 0.27 0.14 0.27 +ord ord adj m s 0.39 0.00 0.39 0.00 +ordalie ordalie nom f s 0.04 0.20 0.04 0.20 +ordinaire ordinaire adj s 20.55 27.97 15.54 19.86 +ordinairement ordinairement adv 0.21 2.70 0.21 2.70 +ordinaires ordinaire adj p 20.55 27.97 5.01 8.11 +ordinal ordinal adj m s 0.00 0.07 0.00 0.07 +ordinant ordinant nom m s 0.00 0.07 0.00 0.07 +ordinateur ordinateur nom m s 37.15 4.26 30.20 2.30 +ordinateurs ordinateur nom m p 37.15 4.26 6.95 1.96 +ordination ordination nom f s 0.12 0.34 0.12 0.34 +ordo ordo nom m 0.01 0.07 0.01 0.07 +ordonna ordonner ver 36.73 35.68 1.34 9.05 ind:pas:3s; +ordonnai ordonner ver 36.73 35.68 0.10 0.68 ind:pas:1s; +ordonnaient ordonner ver 36.73 35.68 0.02 0.41 ind:imp:3p; +ordonnais ordonner ver 36.73 35.68 0.02 0.27 ind:imp:1s; +ordonnait ordonner ver 36.73 35.68 0.11 3.18 ind:imp:3s; +ordonnance ordonnance nom s 9.71 23.65 7.94 19.66 +ordonnancement ordonnancement nom m s 0.01 0.27 0.01 0.27 +ordonnancer ordonnancer ver 0.00 0.20 0.00 0.14 inf; +ordonnances ordonnance nom p 9.71 23.65 1.78 3.99 +ordonnancée ordonnancer ver f s 0.00 0.20 0.00 0.07 par:pas; +ordonnant ordonner ver 36.73 35.68 0.11 1.15 par:pre; +ordonnateur ordonnateur nom m s 0.16 0.68 0.16 0.47 +ordonnateurs ordonnateur nom m p 0.16 0.68 0.00 0.14 +ordonnatrice ordonnateur nom f s 0.16 0.68 0.00 0.07 +ordonne ordonner ver 36.73 35.68 16.69 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ordonnent ordonner ver 36.73 35.68 0.32 0.88 ind:pre:3p; +ordonner ordonner ver 36.73 35.68 2.36 3.78 inf; +ordonnera ordonner ver 36.73 35.68 0.11 0.20 ind:fut:3s; +ordonnerai ordonner ver 36.73 35.68 0.55 0.14 ind:fut:1s; +ordonnerais ordonner ver 36.73 35.68 0.01 0.00 cnd:pre:1s; +ordonnerait ordonner ver 36.73 35.68 0.05 0.07 cnd:pre:3s; +ordonneront ordonner ver 36.73 35.68 0.01 0.00 ind:fut:3p; +ordonnes ordonner ver 36.73 35.68 0.77 0.00 ind:pre:2s; +ordonnez ordonner ver 36.73 35.68 1.23 0.14 imp:pre:2p;ind:pre:2p; +ordonniez ordonner ver 36.73 35.68 0.01 0.00 ind:imp:2p; +ordonnons ordonner ver 36.73 35.68 0.97 0.41 imp:pre:1p;ind:pre:1p; +ordonnèrent ordonner ver 36.73 35.68 0.02 0.27 ind:pas:3p; +ordonné ordonner ver m s 36.73 35.68 11.52 6.82 par:pas;par:pas;par:pas; +ordonnée ordonné adj f s 0.99 4.39 0.38 1.76 +ordonnées ordonner ver f p 36.73 35.68 0.02 0.41 par:pas; +ordonnés ordonner ver m p 36.73 35.68 0.18 0.47 par:pas; +ordre ordre nom m s 217.25 235.34 132.50 179.26 +ordres ordre nom m p 217.25 235.34 84.75 56.08 +ordure ordure nom f s 31.07 26.55 16.97 10.41 +ordureries ordurerie nom f p 0.00 0.07 0.00 0.07 +ordures ordure nom f p 31.07 26.55 14.10 16.15 +ordurier ordurier adj m s 0.30 2.97 0.16 1.08 +orduriers ordurier adj m p 0.30 2.97 0.08 0.68 +ordurière ordurier adj f s 0.30 2.97 0.04 0.54 +ordurières ordurier adj f p 0.30 2.97 0.03 0.68 +ore ore adv 0.04 0.00 0.04 0.00 +oreille oreille nom f s 73.54 194.12 34.46 103.45 +oreiller oreiller nom m s 9.34 33.72 7.93 26.35 +oreillers oreiller nom m p 9.34 33.72 1.41 7.36 +oreilles oreille nom f p 73.54 194.12 39.08 90.68 +oreillette oreillette nom f s 0.83 1.08 0.69 0.14 +oreillettes oreillette nom f p 0.83 1.08 0.14 0.95 +oreillons oreillon nom m p 1.07 0.54 1.07 0.54 +orfraie orfraie nom f s 0.01 0.14 0.01 0.14 +orfèvre orfèvre nom s 0.80 3.24 0.49 1.35 +orfèvrerie orfèvrerie nom f s 0.02 0.74 0.02 0.54 +orfèvreries orfèvrerie nom f p 0.02 0.74 0.00 0.20 +orfèvres orfèvre nom p 0.80 3.24 0.31 1.89 +orfévrée orfévré adj f s 0.00 0.07 0.00 0.07 +organdi organdi nom m s 0.45 1.22 0.45 1.15 +organdis organdi nom m p 0.45 1.22 0.00 0.07 +organe organe nom m s 13.69 15.68 3.14 6.55 +organes organe nom m p 13.69 15.68 10.55 9.12 +organiciser organiciser adj m s 0.01 0.00 0.01 0.00 +organigramme organigramme nom m s 0.13 0.07 0.13 0.07 +organique organique adj s 3.67 2.77 2.56 2.16 +organiquement organiquement adv 0.02 0.74 0.02 0.74 +organiques organique adj p 3.67 2.77 1.11 0.61 +organisa organiser ver 47.90 47.16 0.38 2.09 ind:pas:3s; +organisai organiser ver 47.90 47.16 0.01 0.34 ind:pas:1s; +organisaient organiser ver 47.90 47.16 0.05 1.76 ind:imp:3p; +organisais organiser ver 47.90 47.16 0.31 0.07 ind:imp:1s;ind:imp:2s; +organisait organiser ver 47.90 47.16 1.08 4.46 ind:imp:3s; +organisant organiser ver 47.90 47.16 0.19 0.81 par:pre; +organisateur organisateur nom m s 2.37 3.24 1.31 1.55 +organisateurs organisateur nom m p 2.37 3.24 0.75 1.69 +organisation organisation nom f s 20.97 39.12 18.96 34.32 +organisationnelle organisationnel adj f s 0.20 0.00 0.20 0.00 +organisations organisation nom f p 20.97 39.12 2.02 4.80 +organisatrice organisateur nom f s 2.37 3.24 0.30 0.00 +organise organiser ver 47.90 47.16 10.59 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +organisent organiser ver 47.90 47.16 1.83 0.88 ind:pre:3p; +organiser organiser ver 47.90 47.16 13.93 16.01 inf; +organisera organiser ver 47.90 47.16 0.38 0.27 ind:fut:3s; +organiserai organiser ver 47.90 47.16 0.38 0.07 ind:fut:1s; +organiserais organiser ver 47.90 47.16 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +organiserait organiser ver 47.90 47.16 0.07 0.41 cnd:pre:3s; +organiserez organiser ver 47.90 47.16 0.05 0.00 ind:fut:2p; +organiseriez organiser ver 47.90 47.16 0.02 0.00 cnd:pre:2p; +organiserons organiser ver 47.90 47.16 0.20 0.07 ind:fut:1p; +organiseront organiser ver 47.90 47.16 0.16 0.00 ind:fut:3p; +organises organiser ver 47.90 47.16 1.29 0.07 ind:pre:2s; +organiseur organiseur nom m s 0.01 0.00 0.01 0.00 +organisez organiser ver 47.90 47.16 1.01 0.07 imp:pre:2p;ind:pre:2p; +organisiez organiser ver 47.90 47.16 0.11 0.07 ind:imp:2p; +organisions organiser ver 47.90 47.16 0.13 0.34 ind:imp:1p; +organisme organisme nom m s 6.84 10.81 4.83 8.45 +organismes organisme nom m p 6.84 10.81 2.02 2.36 +organisâmes organiser ver 47.90 47.16 0.00 0.07 ind:pas:1p; +organisons organiser ver 47.90 47.16 1.55 0.00 imp:pre:1p;ind:pre:1p; +organisât organiser ver 47.90 47.16 0.00 0.14 sub:imp:3s; +organiste organiste nom s 0.52 1.01 0.51 1.01 +organistes organiste nom p 0.52 1.01 0.01 0.00 +organisèrent organiser ver 47.90 47.16 0.11 0.54 ind:pas:3p; +organistique organistique adj m s 0.00 0.07 0.00 0.07 +organisé organiser ver m s 47.90 47.16 10.55 7.16 par:pas; +organisée organiser ver f s 47.90 47.16 2.13 3.99 par:pas; +organisées organisé adj f p 5.58 7.50 0.20 0.61 +organisés organisé adj m p 5.58 7.50 1.33 1.76 +organométallique organométallique adj m s 0.01 0.00 0.01 0.00 +organon organon nom m s 0.01 0.00 0.01 0.00 +orgasme orgasme nom m s 6.37 3.38 4.89 3.18 +orgasmes orgasme nom m p 6.37 3.38 1.48 0.20 +orgasmique orgasmique adj s 0.08 0.00 0.08 0.00 +orgastique orgastique adj m s 0.00 0.14 0.00 0.14 +orge orge nom s 1.98 3.72 1.96 3.58 +orgeat orgeat nom m s 0.19 0.74 0.19 0.74 +orgelet orgelet nom m s 0.89 0.27 0.78 0.07 +orgelets orgelet nom m p 0.89 0.27 0.11 0.20 +orges orge nom p 1.98 3.72 0.01 0.14 +orgiaque orgiaque adj m s 0.31 0.07 0.31 0.07 +orgiastique orgiastique adj m s 0.00 0.14 0.00 0.07 +orgiastiques orgiastique adj p 0.00 0.14 0.00 0.07 +orgie orgie nom f s 3.46 3.72 2.09 2.36 +orgies orgie nom f p 3.46 3.72 1.38 1.35 +orgue orgue nom m s 3.12 8.31 3.08 5.41 +orgueil orgueil nom m s 11.56 33.45 11.56 33.24 +orgueilleuse orgueilleux adj f s 1.81 9.19 0.37 4.59 +orgueilleusement orgueilleusement adv 0.14 1.35 0.14 1.35 +orgueilleuses orgueilleux adj f p 1.81 9.19 0.23 0.54 +orgueilleux orgueilleux adj m 1.81 9.19 1.20 4.05 +orgueils orgueil nom m p 11.56 33.45 0.00 0.20 +orgues orgue nom f p 3.12 8.31 0.04 2.91 +oribus oribus nom m 0.00 0.07 0.00 0.07 +orient orient nom m s 0.78 3.78 0.78 3.72 +orienta orienter ver 3.90 11.89 0.10 0.81 ind:pas:3s; +orientable orientable adj s 0.14 0.34 0.14 0.34 +orientai orienter ver 3.90 11.89 0.01 0.07 ind:pas:1s; +orientaient orienter ver 3.90 11.89 0.01 0.41 ind:imp:3p; +orientais orienter ver 3.90 11.89 0.01 0.20 ind:imp:1s; +orientait orienter ver 3.90 11.89 0.00 0.81 ind:imp:3s; +oriental oriental adj m s 4.16 14.32 0.92 3.51 +orientale oriental adj f s 4.16 14.32 2.52 6.82 +orientales oriental adj f p 4.16 14.32 0.40 2.50 +orientalisme orientalisme nom m s 0.00 0.14 0.00 0.14 +orientaliste orientaliste adj f s 0.01 0.07 0.01 0.07 +orientalistes orientaliste nom p 0.00 0.20 0.00 0.14 +orientant orienter ver 3.90 11.89 0.01 0.54 par:pre; +orientateurs orientateur nom m p 0.00 0.07 0.00 0.07 +orientation orientation nom f s 3.86 6.89 3.76 6.62 +orientations orientation nom f p 3.86 6.89 0.10 0.27 +orientaux oriental adj m p 4.16 14.32 0.32 1.49 +oriente orienter ver 3.90 11.89 0.96 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +orientent orienter ver 3.90 11.89 0.16 0.00 ind:pre:3p; +orienter orienter ver 3.90 11.89 1.39 3.65 inf; +orienterai orienter ver 3.90 11.89 0.04 0.00 ind:fut:1s; +orienterait orienter ver 3.90 11.89 0.01 0.07 cnd:pre:3s; +orienterez orienter ver 3.90 11.89 0.01 0.00 ind:fut:2p; +orienteur orienteur nom m s 0.27 0.14 0.27 0.00 +orienteurs orienteur nom m p 0.27 0.14 0.00 0.07 +orienteuse orienteur nom f s 0.27 0.14 0.00 0.07 +orientez orienter ver 3.90 11.89 0.15 0.07 imp:pre:2p;ind:pre:2p; +orients orient nom m p 0.78 3.78 0.00 0.07 +orientèrent orienter ver 3.90 11.89 0.00 0.07 ind:pas:3p; +orienté orienter ver m s 3.90 11.89 0.40 1.55 par:pas; +orientée orienter ver f s 3.90 11.89 0.27 1.08 par:pas; +orientées orienter ver f p 3.90 11.89 0.20 0.47 par:pas; +orientés orienter ver m p 3.90 11.89 0.17 0.74 par:pas; +orifice orifice nom m s 1.85 4.05 1.23 3.24 +orifices orifice nom m p 1.85 4.05 0.61 0.81 +oriflamme oriflamme nom f s 0.22 2.84 0.01 1.08 +oriflammes oriflamme nom f p 0.22 2.84 0.21 1.76 +origami origami nom m s 0.23 0.07 0.23 0.07 +origan origan nom m s 0.32 0.95 0.32 0.95 +originaire originaire adj s 2.58 5.41 2.06 4.19 +originairement originairement adv 0.00 0.14 0.00 0.14 +originaires originaire adj p 2.58 5.41 0.51 1.22 +original original nom m s 10.44 4.32 8.48 2.84 +originale original adj f s 14.45 10.54 4.15 3.24 +originalement originalement adv 0.01 0.00 0.01 0.00 +originales original adj f p 14.45 10.54 1.03 1.55 +originalité originalité nom f s 1.34 4.53 1.34 4.39 +originalités originalité nom f p 1.34 4.53 0.00 0.14 +originaux original nom m p 10.44 4.32 1.44 1.08 +origine origine nom f s 28.07 46.82 22.18 34.19 +originel originel adj m s 1.84 6.49 1.03 3.11 +originelle originel adj f s 1.84 6.49 0.58 2.91 +originellement originellement adv 0.09 0.34 0.09 0.34 +originelles originel adj f p 1.84 6.49 0.12 0.20 +originels originel adj m p 1.84 6.49 0.11 0.27 +origines origine nom f p 28.07 46.82 5.88 12.64 +orignal orignal nom m s 0.42 0.47 0.26 0.20 +orignaux orignal nom m p 0.42 0.47 0.16 0.27 +orillon orillon nom m s 0.00 0.14 0.00 0.07 +orillons orillon nom m p 0.00 0.14 0.00 0.07 +orin orin nom m s 0.21 0.00 0.21 0.00 +oriol oriol nom m s 0.00 0.14 0.00 0.14 +oripeaux oripeau nom m p 0.38 1.55 0.38 1.55 +orlon orlon nom m s 0.04 0.00 0.04 0.00 +orléanais orléanais adj m 0.00 0.27 0.00 0.07 +orléanaise orléanais adj f s 0.00 0.27 0.00 0.14 +orléanaises orléanais adj f p 0.00 0.27 0.00 0.07 +orléanisme orléanisme nom m s 0.00 0.20 0.00 0.20 +orléaniste orléaniste adj f s 0.14 0.20 0.00 0.14 +orléanistes orléaniste adj f p 0.14 0.20 0.14 0.07 +orme orme nom m s 0.39 3.58 0.33 1.28 +ormeau ormeau nom m s 0.03 1.08 0.01 0.47 +ormeaux ormeau nom m p 0.03 1.08 0.02 0.61 +ormes orme nom m p 0.39 3.58 0.06 2.30 +orna orner ver 3.11 31.15 0.00 0.20 ind:pas:3s; +ornaient orner ver 3.11 31.15 0.10 2.03 ind:imp:3p; +ornait orner ver 3.11 31.15 0.02 3.11 ind:imp:3s; +ornant orner ver 3.11 31.15 0.23 0.88 par:pre; +orne orner ver 3.11 31.15 0.44 1.08 imp:pre:2s;ind:pre:3s; +ornement ornement nom m s 0.96 7.03 0.33 3.24 +ornemental ornemental adj m s 0.17 0.34 0.13 0.14 +ornementale ornemental adj f s 0.17 0.34 0.02 0.20 +ornementales ornemental adj f p 0.17 0.34 0.02 0.00 +ornementation ornementation nom f s 0.14 0.81 0.14 0.74 +ornementations ornementation nom f p 0.14 0.81 0.00 0.07 +ornementer ornementer ver 0.01 0.61 0.00 0.07 inf; +ornements ornement nom m p 0.96 7.03 0.64 3.78 +ornementé ornementer ver m s 0.01 0.61 0.00 0.27 par:pas; +ornementée ornementer ver f s 0.01 0.61 0.01 0.14 par:pas; +ornementés ornementer ver m p 0.01 0.61 0.00 0.14 par:pas; +ornent orner ver 3.11 31.15 0.17 0.81 ind:pre:3p; +orner orner ver 3.11 31.15 1.11 1.82 inf; +ornera orner ver 3.11 31.15 0.07 0.07 ind:fut:3s; +ornerait orner ver 3.11 31.15 0.00 0.07 cnd:pre:3s; +orneront orner ver 3.11 31.15 0.11 0.07 ind:fut:3p; +ornez orner ver 3.11 31.15 0.25 0.00 imp:pre:2p; +ornithologie ornithologie nom f s 0.20 0.07 0.20 0.07 +ornithologique ornithologique adj s 0.17 0.00 0.17 0.00 +ornithologue ornithologue nom s 0.13 0.14 0.12 0.07 +ornithologues ornithologue nom p 0.13 0.14 0.01 0.07 +ornithoptère ornithoptère nom m s 0.01 0.00 0.01 0.00 +ornithorynque ornithorynque nom m s 0.26 0.20 0.25 0.07 +ornithorynques ornithorynque nom m p 0.26 0.20 0.01 0.14 +ornière ornière nom f s 0.49 6.42 0.17 1.42 +ornières ornière nom f p 0.49 6.42 0.31 5.00 +ornât orner ver 3.11 31.15 0.00 0.14 sub:imp:3s; +ornèrent orner ver 3.11 31.15 0.00 0.14 ind:pas:3p; +orné orner ver m s 3.11 31.15 0.26 8.38 par:pas; +ornée orner ver f s 3.11 31.15 0.08 6.01 par:pas; +ornées orner ver f p 3.11 31.15 0.26 2.77 par:pas; +ornés orné adj m p 0.04 0.88 0.03 0.27 +orographie orographie nom f s 0.40 0.00 0.40 0.00 +oronge oronge nom f s 0.00 0.20 0.00 0.07 +oronges oronge nom f p 0.00 0.20 0.00 0.14 +oropharynx oropharynx nom m 0.04 0.00 0.04 0.00 +orpailleur orpailleur nom m s 0.02 0.07 0.01 0.07 +orpailleurs orpailleur nom m p 0.02 0.07 0.01 0.00 +orphelin orphelin adj m s 7.57 6.49 3.92 3.78 +orphelinat orphelinat nom m s 6.13 3.18 5.86 2.91 +orphelinats orphelinat nom m p 6.13 3.18 0.28 0.27 +orpheline orphelin adj f s 7.57 6.49 2.11 1.35 +orphelines orphelin nom f p 7.55 9.53 0.79 0.20 +orphelins orphelin nom m p 7.55 9.53 3.91 2.30 +orphie orphie nom f s 0.02 0.00 0.02 0.00 +orphique orphique adj m s 0.00 0.14 0.00 0.07 +orphiques orphique adj m p 0.00 0.14 0.00 0.07 +orphisme orphisme nom m s 0.00 0.07 0.00 0.07 +orphée orphée nom f s 0.00 0.07 0.00 0.07 +orphéon orphéon nom m s 0.10 0.95 0.10 0.74 +orphéoniste orphéoniste nom s 0.00 0.14 0.00 0.07 +orphéonistes orphéoniste nom p 0.00 0.14 0.00 0.07 +orphéons orphéon nom m p 0.10 0.95 0.00 0.20 +orpiment orpiment nom m s 0.10 0.00 0.10 0.00 +orpin orpin nom m s 0.00 0.14 0.00 0.14 +orque orque nom f s 1.43 0.07 0.61 0.07 +orques orque nom f p 1.43 0.07 0.82 0.00 +ors or nom m p 110.28 130.00 0.32 2.77 +orsec orsec nom m 0.00 0.07 0.00 0.07 +ort ort adj 0.16 0.00 0.16 0.00 +orteil orteil nom m s 9.71 9.12 4.04 1.96 +orteils orteil nom m p 9.71 9.12 5.67 7.16 +ortho ortho adv 0.56 0.27 0.56 0.27 +orthodontie orthodontie nom f s 0.04 0.00 0.04 0.00 +orthodontique orthodontique adj m s 0.01 0.00 0.01 0.00 +orthodontiste orthodontiste nom s 0.28 0.00 0.22 0.00 +orthodontistes orthodontiste nom p 0.28 0.00 0.05 0.00 +orthodoxe orthodoxe adj s 2.13 4.73 1.56 3.24 +orthodoxes orthodoxe nom p 0.73 1.22 0.58 0.88 +orthodoxie orthodoxie nom f s 0.15 1.42 0.15 1.42 +orthogonal orthogonal adj m s 0.04 0.07 0.03 0.00 +orthogonaux orthogonal adj m p 0.04 0.07 0.01 0.07 +orthographe orthographe nom f s 3.34 5.88 3.34 5.88 +orthographiait orthographier ver 0.20 0.47 0.00 0.14 ind:imp:3s; +orthographie orthographier ver 0.20 0.47 0.02 0.07 ind:pre:3s; +orthographier orthographier ver 0.20 0.47 0.04 0.14 inf; +orthographique orthographique adj s 0.02 0.07 0.02 0.00 +orthographiques orthographique adj f p 0.02 0.07 0.00 0.07 +orthographié orthographier ver m s 0.20 0.47 0.13 0.14 par:pas; +orthographiées orthographier ver f p 0.20 0.47 0.01 0.00 par:pas; +orthophonie orthophonie nom f s 0.07 0.00 0.07 0.00 +orthophoniste orthophoniste nom s 0.30 0.14 0.30 0.07 +orthophonistes orthophoniste nom p 0.30 0.14 0.00 0.07 +orthoptère orthoptère nom m s 0.01 0.14 0.01 0.00 +orthoptères orthoptère nom m p 0.01 0.14 0.00 0.14 +orthopédie orthopédie nom f s 0.51 0.14 0.51 0.14 +orthopédique orthopédique adj s 0.28 0.81 0.18 0.54 +orthopédiques orthopédique adj p 0.28 0.81 0.09 0.27 +orthopédiste orthopédiste nom s 0.10 0.00 0.10 0.00 +orthostatique orthostatique adj f s 0.01 0.00 0.01 0.00 +ortie ortie nom f s 2.04 6.82 0.41 0.74 +orties ortie nom f p 2.04 6.82 1.63 6.08 +ortolan ortolan nom m s 0.41 1.89 0.11 0.27 +ortolans ortolan nom m p 0.41 1.89 0.30 1.62 +ortédrine ortédrine nom f s 0.00 0.07 0.00 0.07 +oréade oréade nom f s 0.00 0.07 0.00 0.07 +orée orée nom f s 0.67 4.86 0.67 4.86 +orémus orémus nom m 0.00 0.14 0.00 0.14 +orvet orvet nom m s 0.04 0.14 0.04 0.14 +oryctérope oryctérope nom m s 0.03 0.00 0.03 0.00 +oryx oryx nom m 0.08 0.00 0.08 0.00 +os os nom m 40.77 49.73 40.77 49.73 +osa oser ver 90.06 155.47 0.05 11.35 ind:pas:3s; +osai oser ver 90.06 155.47 0.14 2.36 ind:pas:1s; +osaient oser ver 90.06 155.47 0.17 3.38 ind:imp:3p; +osais oser ver 90.06 155.47 2.73 12.77 ind:imp:1s;ind:imp:2s; +osait oser ver 90.06 155.47 1.91 27.30 ind:imp:3s; +osant oser ver 90.06 155.47 0.05 5.68 par:pre; +oscar oscar nom m s 1.71 0.47 0.65 0.14 +oscars oscar nom m p 1.71 0.47 1.07 0.34 +oscilla osciller ver 0.63 13.11 0.00 0.61 ind:pas:3s; +oscillai osciller ver 0.63 13.11 0.00 0.07 ind:pas:1s; +oscillaient osciller ver 0.63 13.11 0.00 0.81 ind:imp:3p; +oscillais osciller ver 0.63 13.11 0.01 0.20 ind:imp:1s; +oscillait osciller ver 0.63 13.11 0.01 3.18 ind:imp:3s; +oscillant oscillant adj m s 0.06 0.81 0.04 0.47 +oscillante oscillant adj f s 0.06 0.81 0.01 0.14 +oscillants oscillant adj m p 0.06 0.81 0.00 0.20 +oscillateur oscillateur nom m s 0.17 0.07 0.17 0.07 +oscillation oscillation nom f s 0.25 1.96 0.13 0.88 +oscillations oscillation nom f p 0.25 1.96 0.12 1.08 +oscillatoire oscillatoire adj m s 0.01 0.14 0.01 0.07 +oscillatoires oscillatoire adj m p 0.01 0.14 0.00 0.07 +oscille osciller ver 0.63 13.11 0.46 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +oscillent osciller ver 0.63 13.11 0.09 0.61 ind:pre:3p; +osciller osciller ver 0.63 13.11 0.04 1.76 inf; +oscillez osciller ver 0.63 13.11 0.01 0.00 imp:pre:2p; +oscillographe oscillographe nom s 0.07 0.00 0.07 0.00 +oscillomètre oscillomètre nom m s 0.01 0.07 0.01 0.07 +oscilloscope oscilloscope nom m s 0.08 0.00 0.08 0.00 +oscillèrent osciller ver 0.63 13.11 0.00 0.14 ind:pas:3p; +oscillé osciller ver m s 0.63 13.11 0.00 0.27 par:pas; +ose oser ver 90.06 155.47 22.97 28.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +oseille oseille nom f s 1.78 4.32 1.78 4.19 +oseilles oseille nom f p 1.78 4.32 0.00 0.14 +osent oser ver 90.06 155.47 3.23 3.92 ind:pre:3p; +oser oser ver 90.06 155.47 3.15 11.42 inf;; +osera oser ver 90.06 155.47 1.50 1.89 ind:fut:3s; +oserai oser ver 90.06 155.47 1.60 2.03 ind:fut:1s; +oseraie oseraie nom f s 0.00 0.14 0.00 0.07 +oseraient oseraient adv 0.00 0.07 0.00 0.07 +oseraies oseraie nom f p 0.00 0.14 0.00 0.07 +oserais oser ver 90.06 155.47 3.86 3.99 cnd:pre:1s;cnd:pre:2s; +oserait oser ver 90.06 155.47 2.71 5.34 cnd:pre:3s; +oseras oser ver 90.06 155.47 1.42 0.14 ind:fut:2s; +oserez oser ver 90.06 155.47 0.33 0.27 ind:fut:2p; +oseriez oser ver 90.06 155.47 0.91 0.07 cnd:pre:2p; +oserions oser ver 90.06 155.47 0.04 0.14 cnd:pre:1p; +oserons oser ver 90.06 155.47 0.04 0.00 ind:fut:1p; +oseront oser ver 90.06 155.47 0.76 0.47 ind:fut:3p; +oses oser ver 90.06 155.47 18.16 1.89 ind:pre:2s; +osez oser ver 90.06 155.47 10.71 1.49 imp:pre:2p;ind:pre:2p; +osier osier nom m s 0.35 12.64 0.35 12.30 +osiers osier nom m p 0.35 12.64 0.00 0.34 +osiez oser ver 90.06 155.47 0.34 0.14 ind:imp:2p; +osions oser ver 90.06 155.47 0.16 1.55 ind:imp:1p; +osmium osmium nom m s 0.02 0.00 0.02 0.00 +osmonde osmonde nom f s 0.02 0.00 0.02 0.00 +osmose osmose nom f s 0.50 1.08 0.50 1.01 +osmoses osmose nom f p 0.50 1.08 0.00 0.07 +osâmes oser ver 90.06 155.47 0.00 0.20 ind:pas:1p; +osons oser ver 90.06 155.47 0.23 0.81 imp:pre:1p;ind:pre:1p; +osât oser ver 90.06 155.47 0.10 0.88 sub:imp:3s; +ossature ossature nom f s 0.52 1.62 0.52 1.49 +ossatures ossature nom f p 0.52 1.62 0.00 0.14 +osselet osselet nom m s 0.39 3.31 0.00 0.14 +osselets osselet nom m p 0.39 3.31 0.39 3.18 +ossement ossement nom m s 1.33 3.78 0.02 0.14 +ossements ossement nom m p 1.33 3.78 1.30 3.65 +osseuse osseux adj f s 1.73 9.32 1.33 2.64 +osseuses osseux adj f p 1.73 9.32 0.08 1.42 +osseux osseux adj m 1.73 9.32 0.32 5.27 +ossification ossification nom f s 0.00 0.14 0.00 0.14 +ossifié ossifier ver m s 0.00 0.07 0.00 0.07 par:pas; +osso_buco osso_buco nom m s 0.05 0.00 0.05 0.00 +ossuaire ossuaire nom m s 0.43 0.54 0.42 0.41 +ossuaires ossuaire nom m p 0.43 0.54 0.01 0.14 +ossue ossu adj f s 0.00 0.07 0.00 0.07 +ost ost nom m s 0.18 0.00 0.18 0.00 +ostensible ostensible adj s 0.00 0.54 0.00 0.54 +ostensiblement ostensiblement adv 0.04 4.66 0.04 4.66 +ostensoir ostensoir nom m s 0.27 1.62 0.14 1.28 +ostensoirs ostensoir nom m p 0.27 1.62 0.14 0.34 +ostentation ostentation nom f s 0.32 3.38 0.32 3.38 +ostentatoire ostentatoire adj s 0.08 1.42 0.08 1.42 +ostentatoirement ostentatoirement adv 0.00 0.14 0.00 0.14 +osèrent oser ver 90.06 155.47 0.34 0.54 ind:pas:3p; +ostinato ostinato adv 0.02 0.00 0.02 0.00 +ostracisme ostracisme nom m s 0.47 1.08 0.47 1.08 +ostrogoth ostrogoth nom m s 0.02 0.20 0.01 0.14 +ostrogoths ostrogoth nom m p 0.02 0.20 0.01 0.07 +ostréiculteur ostréiculteur nom m s 0.01 0.14 0.00 0.07 +ostréiculteurs ostréiculteur nom m p 0.01 0.14 0.01 0.07 +ostréiculture ostréiculture nom f s 0.01 0.00 0.01 0.00 +ostéoarthrite ostéoarthrite nom f s 0.01 0.00 0.01 0.00 +ostéogenèse ostéogenèse nom f s 0.02 0.00 0.02 0.00 +ostéogéniques ostéogénique adj f p 0.01 0.00 0.01 0.00 +ostéologique ostéologique adj f s 0.01 0.00 0.01 0.00 +ostéomyélite ostéomyélite nom f s 0.03 0.00 0.03 0.00 +ostéopathe ostéopathe nom s 0.36 0.00 0.33 0.00 +ostéopathes ostéopathe nom p 0.36 0.00 0.03 0.00 +ostéopathie ostéopathie nom f s 0.01 0.07 0.01 0.07 +ostéoporose ostéoporose nom f s 0.07 0.00 0.07 0.00 +ostéosarcome ostéosarcome nom m s 0.04 0.00 0.04 0.00 +ostéotomie ostéotomie nom f s 0.01 0.00 0.01 0.00 +osé oser ver m s 90.06 155.47 12.12 26.82 par:pas; +osée oser ver f s 90.06 155.47 0.21 0.07 par:pas; +osées osé adj f p 1.24 0.88 0.39 0.27 +osés osé adj m p 1.24 0.88 0.12 0.14 +otage otage nom m s 26.40 5.74 15.22 2.97 +otages otage nom m p 26.40 5.74 11.17 2.77 +otalgie otalgie nom f s 0.03 0.00 0.03 0.00 +otarie otarie nom f s 1.05 1.15 0.13 0.68 +otaries otarie nom f p 1.05 1.15 0.92 0.47 +otite otite nom f s 1.16 0.81 0.84 0.47 +otites otite nom f p 1.16 0.81 0.31 0.34 +oto_rhino_laryngologique oto_rhino_laryngologique adj f s 0.00 0.07 0.00 0.07 +oto_rhino_laryngologiste oto_rhino_laryngologiste nom s 0.02 0.00 0.02 0.00 +oto_rhino oto_rhino nom s 0.49 1.22 0.48 1.08 +oto_rhino oto_rhino nom p 0.49 1.22 0.01 0.07 +oto_rhino oto_rhino nom s 0.49 1.22 0.00 0.07 +otoscope otoscope nom m s 0.01 0.00 0.01 0.00 +otospongiose otospongiose nom s 0.10 0.00 0.10 0.00 +âtre âtre nom m s 0.10 5.88 0.08 5.61 +âtres âtre nom m p 0.10 5.88 0.01 0.27 +ottoman ottoman adj m s 0.28 1.35 0.18 0.27 +ottomane ottomane nom f s 0.01 0.27 0.01 0.27 +ottomanes ottoman adj f p 0.28 1.35 0.00 0.07 +ottomans ottoman adj m p 0.28 1.35 0.10 0.14 +ou ou con 1583.95 2429.86 1583.95 2429.86 +ouï_dire ouï_dire nom m 0.00 1.01 0.00 1.01 +ouï ouïr ver m s 5.72 3.78 0.87 0.68 par:pas; +ouïe ouïe nom f s 2.38 4.46 2.21 3.38 +ouïes ouïe nom f p 2.38 4.46 0.16 1.08 +ouïgour ouïgour nom s 0.00 0.07 0.00 0.07 +ouïr ouïr ver 5.72 3.78 0.77 1.22 inf; +ouïrais ouïr ver 5.72 3.78 0.00 0.07 cnd:pre:1s; +ouïs ouïr ver m p 5.72 3.78 0.02 0.47 ind:pas:1s;par:pas; +ouït ouïr ver 5.72 3.78 0.00 0.41 ind:pas:3s; +ouah ouah ono 9.30 1.28 9.30 1.28 +ouaille ouaille nom f s 0.57 1.15 0.01 0.07 +ouailles ouaille nom f p 0.57 1.15 0.56 1.08 +ouais ouais adv_sup 533.02 39.05 533.02 39.05 +ouananiche ouananiche nom f s 0.06 0.07 0.04 0.00 +ouananiches ouananiche nom f p 0.06 0.07 0.02 0.07 +ouaouaron ouaouaron nom m s 0.01 0.00 0.01 0.00 +ouata ouater ver 0.00 1.82 0.00 0.07 ind:pas:3s; +ouatant ouater ver 0.00 1.82 0.00 0.07 par:pre; +ouate ouate nom f s 0.27 3.72 0.26 3.58 +ouates ouate nom f p 0.27 3.72 0.01 0.14 +ouateuse ouateux adj f s 0.00 0.14 0.00 0.07 +ouateux ouateux adj m s 0.00 0.14 0.00 0.07 +ouatiner ouatiner ver 0.00 0.41 0.00 0.07 inf; +ouatiné ouatiner ver m s 0.00 0.41 0.00 0.07 par:pas; +ouatinée ouatiner ver f s 0.00 0.41 0.00 0.14 par:pas; +ouatinées ouatiner ver f p 0.00 0.41 0.00 0.14 par:pas; +ouaté ouaté adj m s 0.01 2.23 0.01 0.74 +ouatée ouaté adj f s 0.01 2.23 0.00 1.01 +ouatées ouaté adj f p 0.01 2.23 0.00 0.14 +ouatés ouater ver m p 0.00 1.82 0.00 0.47 par:pas; +oubli oubli nom m s 8.02 29.93 6.92 28.65 +oublia oublier ver 487.06 286.96 0.58 6.15 ind:pas:3s; +oubliable oubliable adj f s 0.03 0.14 0.03 0.14 +oubliai oublier ver 487.06 286.96 0.42 1.96 ind:pas:1s; +oubliaient oublier ver 487.06 286.96 0.17 2.16 ind:imp:3p; +oubliais oublier ver 487.06 286.96 9.17 9.12 ind:imp:1s;ind:imp:2s; +oubliait oublier ver 487.06 286.96 1.22 14.32 ind:imp:3s; +oubliant oublier ver 487.06 286.96 1.52 8.11 par:pre; +oublias oublier ver 487.06 286.96 0.00 0.07 ind:pas:2s; +oubliasse oublier ver 487.06 286.96 0.00 0.07 sub:imp:1s; +oublie oublier ver 487.06 286.96 104.78 34.66 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +oublient oublier ver 487.06 286.96 3.94 3.51 ind:pre:3p; +oublier oublier ver 487.06 286.96 85.96 74.19 ind:pre:2p;inf; +oubliera oublier ver 487.06 286.96 4.03 1.62 ind:fut:3s; +oublierai oublier ver 487.06 286.96 15.98 6.55 ind:fut:1s; +oublieraient oublier ver 487.06 286.96 0.09 0.20 cnd:pre:3p; +oublierais oublier ver 487.06 286.96 2.42 0.34 cnd:pre:1s;cnd:pre:2s; +oublierait oublier ver 487.06 286.96 0.89 2.97 cnd:pre:3s; +oublieras oublier ver 487.06 286.96 4.74 0.81 ind:fut:2s; +oublierez oublier ver 487.06 286.96 1.89 0.54 ind:fut:2p; +oublierions oublier ver 487.06 286.96 0.00 0.07 cnd:pre:1p; +oublierons oublier ver 487.06 286.96 1.56 0.27 ind:fut:1p; +oublieront oublier ver 487.06 286.96 1.10 0.34 ind:fut:3p; +oublies oublier ver 487.06 286.96 15.34 4.39 ind:pre:2s;sub:pre:2s; +oubliette oubliette nom f s 1.21 1.62 0.19 0.14 +oubliettes oubliette nom f p 1.21 1.62 1.01 1.49 +oublieuse oublieux adj f s 0.65 2.23 0.00 0.68 +oublieuses oublieux adj f p 0.65 2.23 0.20 0.27 +oublieux oublieux adj m 0.65 2.23 0.45 1.28 +oubliez oublier ver 487.06 286.96 49.48 11.15 imp:pre:2p;ind:pre:2p; +oubliiez oublier ver 487.06 286.96 0.00 0.07 ind:imp:2p; +oubliions oublier ver 487.06 286.96 0.00 0.27 ind:imp:1p; +oubliâmes oublier ver 487.06 286.96 0.14 0.07 ind:pas:1p; +oublions oublier ver 487.06 286.96 13.28 3.72 imp:pre:1p;ind:pre:1p; +oubliât oublier ver 487.06 286.96 0.00 0.41 sub:imp:3s; +oublis oubli nom m p 8.02 29.93 0.20 1.22 +oublièrent oublier ver 487.06 286.96 0.02 1.08 ind:pas:3p; +oublié oublier ver m s 487.06 286.96 154.09 80.27 par:pas;par:pas;par:pas; +oubliée oublier ver f s 487.06 286.96 8.81 8.92 par:pas; +oubliées oublier ver f p 487.06 286.96 1.65 2.64 par:pas; +oubliés oublier ver m p 487.06 286.96 3.72 5.95 par:pas; +ouche ouche nom f s 0.42 0.07 0.42 0.07 +oued oued nom m s 0.27 0.61 0.27 0.47 +oueds oued nom m p 0.27 0.61 0.00 0.14 +ouest_allemand ouest_allemand adj m s 0.12 0.00 0.12 0.00 +ouest ouest nom m 27.79 27.77 27.79 27.77 +ouf ouf ono 4.57 7.03 4.57 7.03 +ougandais ougandais nom m 0.06 0.07 0.06 0.07 +ougandaise ougandais adj f s 0.04 0.00 0.04 0.00 +ouh ouh ono 5.50 1.28 5.50 1.28 +oui_da oui_da ono 0.27 0.07 0.27 0.07 +oui oui adv_sup 3207.35 637.57 3207.35 637.57 +ouiche ouiche ono 0.02 1.96 0.02 1.96 +ouighour ouighour nom m s 0.00 1.01 0.00 0.61 +ouighours ouighour nom m p 0.00 1.01 0.00 0.41 +ouille ouille ono 0.79 1.69 0.79 1.69 +ouistiti ouistiti nom m s 1.51 0.81 1.46 0.61 +ouistitis ouistiti nom m p 1.51 0.81 0.05 0.20 +oukases oukase nom m p 0.00 0.07 0.00 0.07 +ouléma ouléma nom m s 0.01 1.69 0.01 0.14 +oulémas ouléma nom m p 0.01 1.69 0.00 1.55 +ounce ounce nom f s 0.01 0.00 0.01 0.00 +ouragan ouragan nom m s 6.05 4.19 5.09 3.72 +ouragans ouragan nom m p 6.05 4.19 0.96 0.47 +ouralienne ouralien adj f s 0.00 0.07 0.00 0.07 +ouraniennes ouranien adj f p 0.00 0.07 0.00 0.07 +ourdi ourdir ver m s 0.72 1.55 0.39 0.27 par:pas; +ourdie ourdir ver f s 0.72 1.55 0.10 0.14 par:pas; +ourdies ourdir ver f p 0.72 1.55 0.00 0.07 par:pas; +ourdir ourdir ver 0.72 1.55 0.01 0.14 inf; +ourdira ourdir ver 0.72 1.55 0.00 0.07 ind:fut:3s; +ourdis ourdir ver 0.72 1.55 0.01 0.07 ind:pre:1s;ind:pre:2s; +ourdissage ourdissage nom m s 0.00 0.54 0.00 0.54 +ourdissait ourdir ver 0.72 1.55 0.10 0.07 ind:imp:3s; +ourdissant ourdir ver 0.72 1.55 0.00 0.20 par:pre; +ourdissent ourdir ver 0.72 1.55 0.00 0.14 ind:pre:3p; +ourdisseur ourdisseur nom m s 0.00 0.41 0.00 0.07 +ourdisseurs ourdisseur nom m p 0.00 0.41 0.00 0.07 +ourdisseuses ourdisseur nom f p 0.00 0.41 0.00 0.27 +ourdissoir ourdissoir nom m s 0.00 0.27 0.00 0.27 +ourdit ourdir ver 0.72 1.55 0.11 0.41 ind:pre:3s;ind:pas:3s; +ourdou ourdou nom m s 0.42 0.00 0.42 0.00 +ourlaient ourler ver 0.02 5.14 0.00 0.20 ind:imp:3p; +ourlait ourler ver 0.02 5.14 0.00 0.41 ind:imp:3s; +ourlant ourler ver 0.02 5.14 0.00 0.34 par:pre; +ourle ourler ver 0.02 5.14 0.00 0.34 ind:pre:3s; +ourlent ourler ver 0.02 5.14 0.00 0.20 ind:pre:3p; +ourler ourler ver 0.02 5.14 0.00 0.34 inf; +ourlet ourlet nom m s 0.93 3.11 0.69 2.36 +ourlets ourlet nom m p 0.93 3.11 0.24 0.74 +ourlé ourler ver m s 0.02 5.14 0.00 0.74 par:pas; +ourlée ourler ver f s 0.02 5.14 0.00 0.81 par:pas; +ourlées ourler ver f p 0.02 5.14 0.02 1.42 par:pas; +ourlés ourler ver m p 0.02 5.14 0.00 0.34 par:pas; +ouroboros ouroboros nom m 0.02 0.00 0.02 0.00 +ours ours nom m s 24.57 17.91 23.96 17.36 +ourse ours nom f s 24.57 17.91 0.58 0.47 +ourses ours nom f p 24.57 17.91 0.02 0.07 +oursin oursin nom m s 0.38 2.03 0.04 0.54 +oursins oursin nom m p 0.38 2.03 0.34 1.49 +ourson ourson nom m s 1.62 0.74 1.52 0.41 +oursonne ourson nom f s 1.62 0.74 0.01 0.07 +oursonnes oursonne nom f p 0.01 0.00 0.01 0.00 +oursons ourson nom m p 1.62 0.74 0.09 0.27 +ousque ousque adv 0.01 0.07 0.01 0.07 +oust oust ono 0.25 0.14 0.25 0.14 +oustachi oustachi nom m s 0.28 0.27 0.14 0.00 +oustachis oustachi nom m p 0.28 0.27 0.14 0.27 +ouste ouste ono 5.24 1.82 5.24 1.82 +out out adj 8.04 0.68 8.04 0.68 +outarde outarde nom f s 0.00 0.14 0.00 0.07 +outardes outarde nom f p 0.00 0.14 0.00 0.07 +outil outil nom m s 14.18 30.88 3.63 10.14 +outillage outillage nom m s 0.36 2.70 0.25 2.23 +outillages outillage nom m p 0.36 2.70 0.11 0.47 +outiller outiller ver 0.06 0.20 0.01 0.00 inf; +outilleur outilleur nom m s 0.10 0.00 0.10 0.00 +outillé outiller ver m s 0.06 0.20 0.04 0.07 par:pas; +outillée outillé adj f s 0.01 0.41 0.00 0.07 +outillées outillé adj f p 0.01 0.41 0.00 0.07 +outillés outiller ver m p 0.06 0.20 0.01 0.07 par:pas; +outils outil nom m p 14.18 30.88 10.56 20.74 +outlaw outlaw nom m s 0.00 0.14 0.00 0.07 +outlaws outlaw nom m p 0.00 0.14 0.00 0.07 +outrage outrage nom m s 3.89 5.14 3.40 2.97 +outrageant outrageant adj m s 0.36 0.61 0.15 0.27 +outrageante outrageant adj f s 0.36 0.61 0.20 0.20 +outrageantes outrageant adj f p 0.36 0.61 0.00 0.07 +outrageants outrageant adj m p 0.36 0.61 0.02 0.07 +outragent outrager ver 2.36 4.66 0.01 0.07 ind:pre:3p; +outrager outrager ver 2.36 4.66 0.26 0.27 inf; +outragerais outrager ver 2.36 4.66 0.00 0.07 cnd:pre:1s; +outrages outrage nom m p 3.89 5.14 0.49 2.16 +outrageuse outrageux adj f s 0.10 0.27 0.05 0.00 +outrageusement outrageusement adv 0.08 1.35 0.08 1.35 +outrageuses outrageux adj f p 0.10 0.27 0.01 0.07 +outrageux outrageux adj m s 0.10 0.27 0.03 0.20 +outragez outrager ver 2.36 4.66 0.17 0.00 imp:pre:2p;ind:pre:2p; +outragèrent outrager ver 2.36 4.66 0.00 0.07 ind:pas:3p; +outragé outrager ver m s 2.36 4.66 0.26 1.42 par:pas; +outragée outrager ver f s 2.36 4.66 0.27 1.55 par:pas; +outragées outrager ver f p 2.36 4.66 0.01 0.20 par:pas; +outragés outrager ver m p 2.36 4.66 0.31 0.54 par:pas; +outrait outrer ver 0.57 3.11 0.00 0.34 ind:imp:3s; +outrance outrance nom f s 0.17 3.51 0.17 2.77 +outrances outrance nom f p 0.17 3.51 0.00 0.74 +outrancier outrancier adj m s 0.16 0.68 0.14 0.41 +outrancière outrancier adj f s 0.16 0.68 0.01 0.14 +outrancières outrancier adj f p 0.16 0.68 0.01 0.14 +outrant outrer ver 0.57 3.11 0.00 0.07 par:pre; +outre_atlantique outre_atlantique adv 0.04 0.68 0.04 0.68 +outre_manche outre_manche adv 0.00 0.20 0.00 0.20 +outre_mer outre_mer adv 0.89 4.05 0.89 4.05 +outre_rhin outre_rhin adv 0.00 0.27 0.00 0.27 +outre_tombe outre_tombe adj s 0.26 2.16 0.26 2.16 +outre outre pre 3.03 15.27 3.03 15.27 +outrecuidance outrecuidance nom f s 0.01 0.74 0.01 0.74 +outrecuidant outrecuidant adj m s 0.11 0.54 0.11 0.20 +outrecuidante outrecuidant adj f s 0.11 0.54 0.00 0.14 +outrecuidantes outrecuidant adj f p 0.11 0.54 0.00 0.14 +outrecuidants outrecuidant adj m p 0.11 0.54 0.00 0.07 +outremer outremer nom m s 0.21 0.47 0.21 0.47 +outrepassa outrepasser ver 0.83 0.68 0.01 0.07 ind:pas:3s; +outrepassaient outrepasser ver 0.83 0.68 0.00 0.14 ind:imp:3p; +outrepassait outrepasser ver 0.83 0.68 0.03 0.07 ind:imp:3s; +outrepassant outrepasser ver 0.83 0.68 0.01 0.00 par:pre; +outrepasse outrepasser ver 0.83 0.68 0.13 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +outrepassent outrepasser ver 0.83 0.68 0.02 0.00 ind:pre:3p; +outrepasser outrepasser ver 0.83 0.68 0.23 0.07 inf; +outrepasserai outrepasser ver 0.83 0.68 0.00 0.07 ind:fut:1s; +outrepasses outrepasser ver 0.83 0.68 0.20 0.00 ind:pre:2s; +outrepassez outrepasser ver 0.83 0.68 0.07 0.00 ind:pre:2p; +outrepassé outrepasser ver m s 0.83 0.68 0.13 0.07 par:pas; +outrer outrer ver 0.57 3.11 0.00 0.07 inf; +outres outre nom_sup f p 4.45 24.59 0.02 1.42 +outrigger outrigger nom m s 0.16 0.00 0.16 0.00 +outré outrer ver m s 0.57 3.11 0.27 0.61 par:pas; +outrée outré adj f s 0.47 2.23 0.26 0.68 +outrées outrer ver f p 0.57 3.11 0.01 0.07 par:pas; +outrés outré adj m p 0.47 2.23 0.01 0.34 +outsider outsider nom m s 0.54 0.74 0.44 0.54 +outsiders outsider nom m p 0.54 0.74 0.10 0.20 +ouvert ouvrir ver m s 413.32 492.50 56.83 56.35 par:pas; +ouverte ouvrir ver f s 413.32 492.50 22.29 27.97 par:pas; +ouvertement ouvertement adv 2.50 6.96 2.50 6.96 +ouvertes ouvert adj f p 39.97 132.36 2.88 15.14 +ouverts ouvert adj m p 39.97 132.36 7.22 23.31 +ouverture ouverture nom f s 18.31 26.69 16.87 23.04 +ouvertures ouverture nom f p 18.31 26.69 1.44 3.65 +ouvrîmes ouvrir ver 413.32 492.50 0.00 0.34 ind:pas:1p; +ouvrît ouvrir ver 413.32 492.50 0.01 1.28 sub:imp:3s; +ouvrable ouvrable adj m s 0.31 1.35 0.03 0.47 +ouvrables ouvrable adj p 0.31 1.35 0.28 0.88 +ouvrage ouvrage nom m s 5.50 37.30 4.72 26.15 +ouvrageant ouvrager ver 0.14 0.68 0.00 0.07 par:pre; +ouvrager ouvrager ver 0.14 0.68 0.00 0.07 inf; +ouvrages ouvrage nom m p 5.50 37.30 0.78 11.15 +ouvragé ouvragé adj m s 0.15 2.30 0.02 0.88 +ouvragée ouvragé adj f s 0.15 2.30 0.12 0.54 +ouvragées ouvragé adj f p 0.15 2.30 0.00 0.61 +ouvragés ouvragé adj m p 0.15 2.30 0.01 0.27 +ouvraient ouvrir ver 413.32 492.50 0.52 12.50 ind:imp:3p; +ouvrais ouvrir ver 413.32 492.50 1.39 4.12 ind:imp:1s;ind:imp:2s; +ouvrait ouvrir ver 413.32 492.50 2.40 46.62 ind:imp:3s; +ouvrant ouvrir ver 413.32 492.50 1.86 18.65 par:pre; +ouvrants ouvrant adj m p 0.32 3.18 0.00 0.07 +ouvre_boîte ouvre_boîte nom m s 0.32 0.20 0.32 0.20 +ouvre_boîtes ouvre_boîtes nom m 0.16 0.34 0.16 0.34 +ouvre_bouteille ouvre_bouteille nom m s 0.12 0.14 0.08 0.00 +ouvre_bouteille ouvre_bouteille nom m p 0.12 0.14 0.04 0.14 +ouvre ouvrir ver 413.32 492.50 141.45 80.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ouvrent ouvrir ver 413.32 492.50 6.24 10.88 ind:pre:3p;sub:pre:3p; +ouvrer ouvrer ver 0.02 0.14 0.00 0.07 inf; +ouvres ouvrir ver 413.32 492.50 10.20 1.62 ind:pre:2s;sub:pre:2s; +ouvreur ouvreur nom m s 1.21 2.36 1.00 0.00 +ouvreurs ouvreur nom m p 1.21 2.36 0.01 0.14 +ouvreuse ouvreur nom f s 1.21 2.36 0.20 1.62 +ouvreuses ouvreuse nom f p 0.17 0.00 0.17 0.00 +ouvrez ouvrir ver 413.32 492.50 64.17 6.22 imp:pre:2p;imp:pre:2p;ind:pre:2p; +ouvrier ouvrier nom m s 22.38 51.35 7.17 12.64 +ouvriers ouvrier nom m p 22.38 51.35 14.56 34.46 +ouvriez ouvrir ver 413.32 492.50 0.41 0.00 ind:imp:2p; +ouvrions ouvrir ver 413.32 492.50 0.10 0.88 ind:imp:1p; +ouvrir ouvrir ver 413.32 492.50 79.61 88.58 inf; +ouvrira ouvrir ver 413.32 492.50 4.13 1.96 ind:fut:3s; +ouvrirai ouvrir ver 413.32 492.50 2.45 0.95 ind:fut:1s; +ouvriraient ouvrir ver 413.32 492.50 0.09 1.28 cnd:pre:3p; +ouvrirais ouvrir ver 413.32 492.50 0.41 0.61 cnd:pre:1s;cnd:pre:2s; +ouvrirait ouvrir ver 413.32 492.50 0.75 4.26 cnd:pre:3s; +ouvriras ouvrir ver 413.32 492.50 0.85 0.27 ind:fut:2s; +ouvrirent ouvrir ver 413.32 492.50 0.51 3.78 ind:pas:3p; +ouvrirez ouvrir ver 413.32 492.50 0.60 0.07 ind:fut:2p; +ouvririez ouvrir ver 413.32 492.50 0.18 0.07 cnd:pre:2p; +ouvririons ouvrir ver 413.32 492.50 0.15 0.00 cnd:pre:1p; +ouvrirons ouvrir ver 413.32 492.50 0.77 0.00 ind:fut:1p; +ouvriront ouvrir ver 413.32 492.50 1.35 0.68 ind:fut:3p; +ouvris ouvrir ver 413.32 492.50 0.36 7.97 ind:pas:1s;ind:pas:2s; +ouvrissent ouvrir ver 413.32 492.50 0.00 0.20 sub:imp:3p; +ouvrit ouvrir ver 413.32 492.50 2.54 86.62 ind:pas:3s; +ouvrière ouvrier adj f s 6.07 15.88 2.48 6.69 +ouvrières ouvrière nom f p 1.56 0.00 1.56 0.00 +ouvriérisme ouvriérisme nom m s 0.00 0.07 0.00 0.07 +ouvriériste ouvriériste adj m s 0.00 0.20 0.00 0.20 +ouvroir ouvroir nom m s 0.00 0.88 0.00 0.68 +ouvroirs ouvroir nom m p 0.00 0.88 0.00 0.20 +ouvrons ouvrir ver 413.32 492.50 3.39 0.95 imp:pre:1p;ind:pre:1p; +ouvré ouvrer ver m s 0.02 0.14 0.02 0.07 par:pas; +ouvrées ouvré adj f p 0.04 0.27 0.00 0.14 +ouvrés ouvré adj m p 0.04 0.27 0.03 0.07 +ouzbeks ouzbek adj p 0.00 0.07 0.00 0.07 +ouzo ouzo nom m s 0.58 2.36 0.48 2.30 +ouzos ouzo nom m p 0.58 2.36 0.10 0.07 +ovaire ovaire nom m s 1.20 1.35 0.49 0.14 +ovaires ovaire nom m p 1.20 1.35 0.71 1.22 +ovalaire ovalaire adj f s 0.00 0.07 0.00 0.07 +ovale ovale adj s 1.88 10.54 1.83 8.18 +ovales ovale adj p 1.88 10.54 0.06 2.36 +ovalisées ovaliser ver f p 0.00 0.07 0.00 0.07 par:pas; +ovariectomie ovariectomie nom f s 0.01 0.00 0.01 0.00 +ovarien ovarien adj m s 0.07 0.00 0.02 0.00 +ovarienne ovarien adj f s 0.07 0.00 0.05 0.00 +ovariotomie ovariotomie nom f s 0.00 0.07 0.00 0.07 +ovation ovation nom f s 0.96 2.50 0.91 1.49 +ovationnaient ovationner ver 0.03 0.34 0.00 0.07 ind:imp:3p; +ovationner ovationner ver 0.03 0.34 0.01 0.14 inf; +ovationné ovationner ver m s 0.03 0.34 0.01 0.07 par:pas; +ovationnés ovationner ver m p 0.03 0.34 0.01 0.07 par:pas; +ovations ovation nom f p 0.96 2.50 0.06 1.01 +ove ove nom m s 0.20 0.07 0.20 0.07 +overdose overdose nom f s 5.11 1.28 4.81 1.28 +overdoses overdose nom f p 5.11 1.28 0.29 0.00 +overdrive overdrive nom m s 0.05 0.07 0.05 0.07 +ovibos ovibos nom m 0.00 0.07 0.00 0.07 +ovin ovin adj m s 0.01 0.00 0.01 0.00 +ovins ovin nom m p 0.04 0.07 0.04 0.07 +ovipare ovipare adj s 0.02 0.00 0.01 0.00 +ovipares ovipare adj p 0.02 0.00 0.01 0.00 +ovni ovni nom m 2.98 0.27 1.07 0.14 +ovnis ovni nom m p 2.98 0.27 1.91 0.14 +ovoïdal ovoïdal adj m s 0.01 0.61 0.00 0.61 +ovoïdale ovoïdal adj f s 0.01 0.61 0.01 0.00 +ovoïde ovoïde adj s 0.00 1.08 0.00 0.95 +ovoïdes ovoïde adj p 0.00 1.08 0.00 0.14 +ovocyte ovocyte nom m s 0.03 0.41 0.00 0.14 +ovocytes ovocyte nom m p 0.03 0.41 0.03 0.27 +ovée ové adj f s 0.01 0.00 0.01 0.00 +ovulaire ovulaire adj f s 0.01 0.00 0.01 0.00 +ovulation ovulation nom f s 0.53 0.07 0.53 0.07 +ovule ovule nom m s 1.16 0.47 0.64 0.27 +ovuler ovuler ver 0.11 0.00 0.04 0.00 inf; +ovules ovule nom m p 1.16 0.47 0.52 0.20 +oxalate oxalate nom m s 0.01 0.00 0.01 0.00 +oxer oxer nom m s 0.00 0.07 0.00 0.07 +oxfordien oxfordien adj m s 0.00 0.14 0.00 0.07 +oxfordiennes oxfordien adj f p 0.00 0.14 0.00 0.07 +oxfords oxford nom m p 0.03 0.14 0.03 0.14 +oxhydrique oxhydrique adj s 0.00 0.07 0.00 0.07 +oxo oxo adj 0.00 0.07 0.00 0.07 +oxonienne oxonien nom f s 0.00 0.07 0.00 0.07 +oxychlorure oxychlorure nom m s 0.01 0.00 0.01 0.00 +oxydant oxydant nom m s 0.05 0.00 0.01 0.00 +oxydants oxydant nom m p 0.05 0.00 0.04 0.00 +oxydation oxydation nom f s 0.16 0.20 0.16 0.20 +oxyde oxyde nom m s 1.03 0.41 0.99 0.34 +oxyder oxyder ver 0.10 0.61 0.00 0.07 inf; +oxydes oxyde nom m p 1.03 0.41 0.04 0.07 +oxydé oxyder ver m s 0.10 0.61 0.07 0.14 par:pas; +oxydée oxyder ver f s 0.10 0.61 0.00 0.14 par:pas; +oxydées oxyder ver f p 0.10 0.61 0.00 0.14 par:pas; +oxygène oxygène nom m s 14.03 4.39 14.03 4.39 +oxygènent oxygéner ver 0.53 0.20 0.01 0.07 ind:pre:3p; +oxygénation oxygénation nom f s 0.15 0.07 0.15 0.07 +oxygéner oxygéner ver 0.53 0.20 0.19 0.00 inf; +oxygéné oxygéné adj m s 0.49 0.95 0.05 0.07 +oxygénée oxygéné adj f s 0.49 0.95 0.42 0.54 +oxygénées oxygéné adj f p 0.49 0.95 0.00 0.07 +oxygénés oxygéné adj m p 0.49 0.95 0.02 0.27 +oxymore oxymore nom m s 0.04 0.00 0.03 0.00 +oxymores oxymore nom m p 0.04 0.00 0.01 0.00 +oxymoron oxymoron nom m s 0.05 0.00 0.05 0.00 +oxymétrie oxymétrie nom f s 0.03 0.00 0.03 0.00 +oyant oyant adj m s 0.10 0.00 0.10 0.00 +oyat oyat nom m s 0.11 0.14 0.00 0.07 +oyats oyat nom m p 0.11 0.14 0.11 0.07 +oye oye nom f s 0.21 0.95 0.21 0.95 +oyez ouïr ver 5.72 3.78 1.69 0.20 imp:pre:2p;ind:pre:2p; +oyons ouïr ver 5.72 3.78 0.01 0.07 imp:pre:1p; +ozone ozone nom m s 1.35 0.54 1.35 0.54 +p. p. nom m 3.66 0.34 3.66 0.34 +p.m. p.m. nom m s 0.01 0.00 0.01 0.00 +pôle pôle nom m s 3.59 3.99 3.12 2.77 +pôles pôle nom m p 3.59 3.99 0.47 1.22 +pûmes pouvoir ver_sup 5524.52 2659.80 0.16 1.62 ind:pas:1p; +pût pouvoir ver_sup 5524.52 2659.80 0.50 42.70 sub:imp:3s; +pûtes pouvoir ver_sup 5524.52 2659.80 0.04 0.00 ind:pas:2p; +pa pa art_ind m s 0.01 0.00 0.01 0.00 +paît paître ver 2.29 4.46 0.20 0.00 ind:pre:3s; +paître paître ver 2.29 4.46 0.97 1.76 inf; +paîtront paître ver 2.29 4.46 0.12 0.00 ind:fut:3p; +païen païen adj m s 1.39 3.38 0.51 1.42 +païenne païen adj f s 1.39 3.38 0.39 1.28 +païennes païen adj f p 1.39 3.38 0.29 0.20 +païens païen nom m p 2.22 2.57 1.91 1.28 +pacage pacage nom m s 0.00 0.74 0.00 0.34 +pacages pacage nom m p 0.00 0.74 0.00 0.41 +pacas paca adj m p 0.01 0.00 0.01 0.00 +pacemaker pacemaker nom m s 0.56 0.34 0.41 0.34 +pacemakers pacemaker nom m p 0.56 0.34 0.15 0.00 +pacha pacha nom m s 7.28 11.96 7.11 11.15 +pachas pacha nom m p 7.28 11.96 0.17 0.81 +pachinko pachinko nom m s 0.00 0.07 0.00 0.07 +pachon pachon nom m s 0.00 0.07 0.00 0.07 +pachyderme pachyderme nom m s 0.21 1.01 0.14 0.74 +pachydermes pachyderme nom m p 0.21 1.01 0.07 0.27 +pachydermique pachydermique adj s 0.01 0.74 0.01 0.68 +pachydermiques pachydermique adj p 0.01 0.74 0.00 0.07 +pacifiait pacifier ver 0.65 2.30 0.00 0.14 ind:imp:3s; +pacifiant pacifier ver 0.65 2.30 0.00 0.07 par:pre; +pacifiante pacifiant adj f s 0.00 0.27 0.00 0.20 +pacifiantes pacifiant adj f p 0.00 0.27 0.00 0.07 +pacificateur pacificateur nom m s 4.01 0.07 1.10 0.07 +pacificateurs pacificateur nom m p 4.01 0.07 2.74 0.00 +pacification pacification nom f s 0.12 0.41 0.12 0.41 +pacificatrice pacificateur nom f s 4.01 0.07 0.17 0.00 +pacifie pacifier ver 0.65 2.30 0.00 0.14 ind:pre:3s; +pacifier pacifier ver 0.65 2.30 0.45 0.61 inf; +pacifique pacifique adj s 4.00 4.26 2.90 3.11 +pacifiquement pacifiquement adv 0.93 0.27 0.93 0.27 +pacifiques pacifique adj p 4.00 4.26 1.10 1.15 +pacifisme pacifisme nom m s 0.14 0.54 0.14 0.54 +pacifiste pacifiste adj s 0.98 0.95 0.88 0.61 +pacifistes pacifiste nom p 0.46 0.68 0.17 0.34 +pacifié pacifier ver m s 0.65 2.30 0.17 0.74 par:pas; +pacifiée pacifier ver f s 0.65 2.30 0.03 0.34 par:pas; +pacifiées pacifier ver f p 0.65 2.30 0.00 0.14 par:pas; +pacifiés pacifier ver m p 0.65 2.30 0.00 0.14 par:pas; +pack pack nom m s 1.72 0.88 1.50 0.27 +package package nom m s 0.09 0.00 0.09 0.00 +packaging packaging nom m s 0.01 0.00 0.01 0.00 +packs pack nom m p 1.72 0.88 0.22 0.61 +packson packson nom m s 0.04 0.07 0.04 0.07 +pacotille pacotille nom f s 1.63 3.24 1.61 2.91 +pacotilles pacotille nom f p 1.63 3.24 0.02 0.34 +pacs pacs nom m 0.58 0.00 0.58 0.00 +pacsif pacsif nom m s 0.00 0.34 0.00 0.20 +pacsifs pacsif nom m p 0.00 0.34 0.00 0.14 +pacson pacson nom m s 0.06 0.61 0.04 0.61 +pacsons pacson nom m p 0.06 0.61 0.02 0.00 +pacsés pacser ver m p 0.37 0.00 0.37 0.00 par:pas; +pacte pacte nom m s 8.12 11.89 7.29 11.49 +pactes pacte nom m p 8.12 11.89 0.83 0.41 +pactisaient pactiser ver 0.52 1.42 0.00 0.07 ind:imp:3p; +pactisait pactiser ver 0.52 1.42 0.01 0.20 ind:imp:3s; +pactisant pactiser ver 0.52 1.42 0.00 0.07 par:pre; +pactise pactiser ver 0.52 1.42 0.05 0.07 ind:pre:1s;ind:pre:3s; +pactiser pactiser ver 0.52 1.42 0.25 0.74 inf; +pactiseras pactiser ver 0.52 1.42 0.00 0.07 ind:fut:2s; +pactiseurs pactiseur nom m p 0.00 0.07 0.00 0.07 +pactisez pactiser ver 0.52 1.42 0.01 0.00 imp:pre:2p; +pactisions pactiser ver 0.52 1.42 0.00 0.07 ind:imp:1p; +pactisé pactiser ver m s 0.52 1.42 0.20 0.14 par:pas; +pactole pactole nom m s 1.14 0.74 1.14 0.61 +pactoles pactole nom m p 1.14 0.74 0.00 0.14 +pad pad nom m s 0.11 0.27 0.11 0.27 +paddock paddock nom m s 0.28 2.64 0.27 2.36 +paddocker paddocker ver 0.00 0.07 0.00 0.07 inf; +paddocks paddock nom m p 0.28 2.64 0.01 0.27 +paddy paddy nom m s 1.52 0.47 1.52 0.47 +padouanes padouan adj f p 0.00 0.07 0.00 0.07 +paella paella nom f s 1.98 0.68 1.71 0.54 +paellas paella nom f p 1.98 0.68 0.27 0.14 +paf paf adj 1.31 2.23 1.31 2.23 +pagaïe pagaïe nom f s 0.07 0.74 0.07 0.74 +pagaie pagaie nom f s 0.72 1.08 0.65 0.47 +pagaient pagayer ver 0.42 1.08 0.02 0.00 ind:pre:3p; +pagaiera pagayer ver 0.42 1.08 0.01 0.00 ind:fut:3s; +pagaies pagaie nom f p 0.72 1.08 0.07 0.61 +pagaille pagaille nom f s 5.21 4.80 5.09 4.73 +pagailles pagaille nom f p 5.21 4.80 0.13 0.07 +pagailleux pagailleux adj m 0.00 0.07 0.00 0.07 +paganisme paganisme nom m s 0.04 0.47 0.04 0.47 +pagaya pagayer ver 0.42 1.08 0.00 0.07 ind:pas:3s; +pagayait pagayer ver 0.42 1.08 0.00 0.07 ind:imp:3s; +pagayant pagayer ver 0.42 1.08 0.02 0.07 par:pre; +pagaye pagaye nom f s 0.02 0.41 0.02 0.41 +pagayer pagayer ver 0.42 1.08 0.13 0.34 inf; +pagayeur pagayeur nom m s 0.03 0.14 0.00 0.07 +pagayeurs pagayeur nom m p 0.03 0.14 0.03 0.07 +pagayez pagayer ver 0.42 1.08 0.09 0.00 imp:pre:2p; +pagayèrent pagayer ver 0.42 1.08 0.00 0.07 ind:pas:3p; +pagayé pagayer ver m s 0.42 1.08 0.05 0.14 par:pas; +page page nom s 39.41 115.54 25.16 55.88 +pageais pager ver 1.01 0.61 0.00 0.07 ind:imp:1s; +pageait pager ver 1.01 0.61 0.00 0.07 ind:imp:3s; +pageant pager ver 1.01 0.61 0.01 0.00 par:pre; +pagels pagel nom m p 0.01 0.00 0.01 0.00 +pageot pageot nom m s 0.02 2.09 0.02 1.62 +pageots pageot nom m p 0.02 2.09 0.00 0.47 +pager pager ver 1.01 0.61 0.99 0.27 inf; +pages page nom p 39.41 115.54 14.25 59.66 +pagination pagination nom f s 0.01 0.07 0.01 0.07 +paginer paginer ver 0.01 0.00 0.01 0.00 inf; +pagne pagne nom m s 0.40 1.69 0.37 1.42 +pagnes pagne nom m p 0.40 1.69 0.03 0.27 +pagnon pagnon nom m s 0.00 0.07 0.00 0.07 +pagnote pagnoter ver 0.00 0.14 0.00 0.07 ind:pre:1s; +pagnoter pagnoter ver 0.00 0.14 0.00 0.07 inf; +pagode pagode nom f s 0.40 2.84 0.23 2.36 +pagodes pagode nom f p 0.40 2.84 0.16 0.47 +pagodon pagodon nom m s 0.00 0.07 0.00 0.07 +pagé pager ver m s 1.01 0.61 0.01 0.07 par:pas; +pagée pager ver f s 1.01 0.61 0.00 0.07 par:pas; +pagure pagure nom m s 0.00 0.14 0.00 0.07 +pagures pagure nom m p 0.00 0.14 0.00 0.07 +pagus pagus nom m 0.01 0.07 0.01 0.07 +pagés pager ver m p 1.01 0.61 0.00 0.07 par:pas; +paie payer ver 416.67 150.20 53.51 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +paiement paiement nom m s 5.56 2.03 4.36 1.62 +paiements paiement nom m p 5.56 2.03 1.20 0.41 +paient payer ver 416.67 150.20 6.98 2.09 ind:pre:3p; +paiera payer ver 416.67 150.20 8.71 1.96 ind:fut:3s; +paierai payer ver 416.67 150.20 14.53 2.57 ind:fut:1s; +paieraient payer ver 416.67 150.20 0.93 0.41 cnd:pre:3p; +paierais payer ver 416.67 150.20 2.84 0.41 cnd:pre:1s;cnd:pre:2s; +paierait payer ver 416.67 150.20 2.20 1.62 cnd:pre:3s; +paieras payer ver 416.67 150.20 6.30 1.22 ind:fut:2s; +paierez payer ver 416.67 150.20 4.70 0.34 ind:fut:2p; +paierie paierie nom f s 0.01 0.20 0.01 0.20 +paieriez payer ver 416.67 150.20 0.11 0.00 cnd:pre:2p; +paierions payer ver 416.67 150.20 0.01 0.07 cnd:pre:1p; +paierons payer ver 416.67 150.20 1.01 0.27 ind:fut:1p; +paieront payer ver 416.67 150.20 2.84 0.54 ind:fut:3p; +paies payer ver 416.67 150.20 8.97 0.74 ind:pre:2s; +paillard paillard adj m s 0.35 0.95 0.17 0.61 +paillardait paillarder ver 0.00 0.07 0.00 0.07 ind:imp:3s; +paillarde paillard adj f s 0.35 0.95 0.01 0.14 +paillardement paillardement adv 0.00 0.07 0.00 0.07 +paillardes paillard adj f p 0.35 0.95 0.17 0.14 +paillardise paillardise nom f s 0.16 0.20 0.16 0.20 +paillards paillard adj m p 0.35 0.95 0.00 0.07 +paillasse paillasse nom s 2.38 8.78 1.98 7.43 +paillasses paillasse nom f p 2.38 8.78 0.40 1.35 +paillasson paillasson nom m s 1.06 4.39 0.93 3.51 +paillassons paillasson nom m p 1.06 4.39 0.14 0.88 +paille paille nom f s 9.43 44.05 8.57 42.97 +pailler pailler ver 0.01 0.27 0.01 0.00 inf; +pailles paille nom f p 9.43 44.05 0.86 1.08 +pailleter pailleter ver 0.03 1.35 0.00 0.14 inf; +paillette paillette nom f s 1.71 5.14 0.08 0.41 +paillettes paillette nom f p 1.71 5.14 1.63 4.73 +pailleté pailleter ver m s 0.03 1.35 0.02 0.34 par:pas; +pailletée pailleté adj f s 0.03 1.15 0.01 0.34 +pailletées pailleté adj f p 0.03 1.15 0.01 0.20 +pailletés pailleter ver m p 0.03 1.35 0.00 0.27 par:pas; +pailleux pailleux adj m 0.00 0.07 0.00 0.07 +paillis paillis nom m 0.04 0.00 0.04 0.00 +paillon paillon nom m s 0.00 0.41 0.00 0.20 +paillons paillon nom m p 0.00 0.41 0.00 0.20 +paillot paillot nom m s 0.00 0.81 0.00 0.81 +paillote paillote nom f s 0.02 1.22 0.02 0.34 +paillotes paillote nom f p 0.02 1.22 0.00 0.88 +paillé paillé adj m s 0.00 1.62 0.00 0.14 +paillu paillu adj m s 0.00 0.07 0.00 0.07 +paillée paillé adj f s 0.00 1.62 0.00 0.81 +paillées paillé adj f p 0.00 1.62 0.00 0.68 +paimpolaise paimpolais nom f s 0.00 0.47 0.00 0.41 +paimpolaises paimpolais nom f p 0.00 0.47 0.00 0.07 +pain pain nom m s 67.58 105.41 62.81 99.32 +pains pain nom m p 67.58 105.41 4.77 6.08 +pair pair nom m s 3.54 6.62 2.27 3.92 +paire paire nom f s 21.59 32.84 18.31 26.89 +paires paire nom f p 21.59 32.84 3.28 5.95 +pairesses pairesse nom f p 0.00 0.07 0.00 0.07 +pairie pairie nom f s 0.03 0.07 0.03 0.07 +pairs pair nom m p 3.54 6.62 1.27 2.70 +pais paître ver 2.29 4.46 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +paisible paisible adj s 7.55 36.42 6.32 27.84 +paisiblement paisiblement adv 2.10 9.12 2.10 9.12 +paisibles paisible adj p 7.55 36.42 1.23 8.58 +paissaient paître ver 2.29 4.46 0.01 1.49 ind:imp:3p; +paissait paître ver 2.29 4.46 0.14 0.20 ind:imp:3s; +paissant paître ver 2.29 4.46 0.03 0.34 par:pre; +paissent paître ver 2.29 4.46 0.42 0.61 ind:pre:3p; +paiute paiute nom s 0.05 0.07 0.04 0.07 +paiutes paiute nom p 0.05 0.07 0.01 0.00 +paix paix nom f 144.86 103.72 144.86 103.72 +pakistanais pakistanais nom m 1.56 0.27 1.36 0.20 +pakistanaise pakistanais adj f s 1.22 0.47 0.23 0.20 +pakistanaises pakistanais adj f p 1.22 0.47 0.04 0.00 +pakistano pakistano adv 0.01 0.07 0.01 0.07 +pal pal nom m s 0.19 0.88 0.14 0.68 +palabra palabrer ver 0.64 2.03 0.09 0.07 ind:pas:3s; +palabraient palabrer ver 0.64 2.03 0.00 0.34 ind:imp:3p; +palabrait palabrer ver 0.64 2.03 0.00 0.34 ind:imp:3s; +palabrant palabrer ver 0.64 2.03 0.01 0.20 par:pre; +palabre palabrer ver 0.64 2.03 0.11 0.00 ind:pre:3s; +palabrent palabrer ver 0.64 2.03 0.02 0.20 ind:pre:3p; +palabrer palabrer ver 0.64 2.03 0.35 0.88 inf; +palabres palabre nom p 0.14 3.51 0.13 3.04 +palabreur palabreur nom m s 0.00 0.14 0.00 0.07 +palabreurs palabreur nom m p 0.00 0.14 0.00 0.07 +palabré palabrer ver m s 0.64 2.03 0.06 0.00 par:pas; +palace palace nom m s 4.85 7.77 4.56 5.47 +palaces palace nom m p 4.85 7.77 0.29 2.30 +paladin paladin nom m s 0.18 0.81 0.16 0.54 +paladins paladin nom m p 0.18 0.81 0.03 0.27 +palais palais nom m 29.55 58.72 29.55 58.72 +palan palan nom m s 0.11 0.74 0.07 0.54 +palanche palanche nom f s 0.10 0.14 0.00 0.14 +palanches palanche nom f p 0.10 0.14 0.10 0.00 +palangrotte palangrotte nom f s 0.00 0.14 0.00 0.14 +palanquer palanquer ver 0.01 0.14 0.01 0.00 inf; +palanquin palanquin nom m s 0.32 0.41 0.32 0.34 +palanquins palanquin nom m p 0.32 0.41 0.00 0.07 +palanquée palanquer ver f s 0.01 0.14 0.00 0.07 par:pas; +palanquées palanquer ver f p 0.01 0.14 0.00 0.07 par:pas; +palans palan nom m p 0.11 0.74 0.04 0.20 +palastre palastre nom m s 0.00 0.07 0.00 0.07 +palatales palatal adj f p 0.00 0.07 0.00 0.07 +palatin palatin adj m s 0.03 0.20 0.02 0.14 +palatine palatin adj f s 0.03 0.20 0.01 0.07 +palatines palatine nom f p 0.00 0.07 0.00 0.07 +palatisation palatisation nom f s 0.00 0.07 0.00 0.07 +palazzo palazzo nom m s 0.56 1.62 0.56 1.62 +pale pale nom f s 1.11 1.62 0.74 0.41 +palefrenier palefrenier nom m s 0.69 1.01 0.64 0.68 +palefreniers palefrenier nom m p 0.69 1.01 0.04 0.34 +palefrenière palefrenier nom f s 0.69 1.01 0.01 0.00 +palefroi palefroi nom m s 0.01 0.61 0.01 0.20 +palefrois palefroi nom m p 0.01 0.61 0.00 0.41 +paleron paleron nom m s 0.01 0.00 0.01 0.00 +pales pale nom f p 1.11 1.62 0.37 1.22 +palestinien palestinien adj m s 3.09 0.74 1.78 0.20 +palestinienne palestinien adj f s 3.09 0.74 0.35 0.34 +palestiniens palestinien nom m p 3.22 0.47 2.81 0.47 +palestre palestre nom f s 0.00 0.41 0.00 0.27 +palestres palestre nom f p 0.00 0.41 0.00 0.14 +palet palet nom m s 1.08 0.41 0.93 0.34 +paletot paletot nom m s 0.03 2.03 0.03 1.89 +paletots paletot nom m p 0.03 2.03 0.00 0.14 +palets palet nom m p 1.08 0.41 0.15 0.07 +palette palette nom f s 0.87 5.68 0.28 4.12 +palettes palette nom f p 0.87 5.68 0.58 1.55 +palier palier nom m s 3.47 29.80 3.24 27.91 +paliers palier nom m p 3.47 29.80 0.23 1.89 +palikare palikare nom m s 0.00 0.54 0.00 0.20 +palikares palikare nom m p 0.00 0.54 0.00 0.34 +palilalie palilalie nom f s 0.01 0.00 0.01 0.00 +palimpseste palimpseste nom m s 0.00 0.20 0.00 0.20 +palindrome palindrome nom m s 0.55 0.00 0.45 0.00 +palindromes palindrome nom m p 0.55 0.00 0.10 0.00 +palinodie palinodie nom f s 0.01 0.54 0.00 0.27 +palinodier palinodier ver 0.00 0.07 0.00 0.07 inf; +palinodies palinodie nom f p 0.01 0.54 0.01 0.27 +palis palis nom m 0.00 0.07 0.00 0.07 +palissade palissade nom f s 0.64 5.34 0.59 3.11 +palissades palissade nom f p 0.64 5.34 0.05 2.23 +palissadé palissader ver m s 0.00 0.34 0.00 0.20 par:pas; +palissadée palissader ver f s 0.00 0.34 0.00 0.07 par:pas; +palissadés palissader ver m p 0.00 0.34 0.00 0.07 par:pas; +palissandre palissandre nom m s 0.00 0.74 0.00 0.74 +palissant palisser ver 0.00 0.07 0.00 0.07 par:pre; +palissonnage palissonnage nom m s 0.00 0.07 0.00 0.07 +palière palier adj f s 0.00 0.68 0.00 0.68 +palladiennes palladien adj f p 0.01 0.07 0.01 0.07 +palladium palladium nom m s 0.17 0.34 0.17 0.34 +palle palle nom f s 0.91 0.00 0.91 0.00 +palliait pallier ver 0.47 1.01 0.00 0.07 ind:imp:3s; +palliatif palliatif adj m s 0.14 0.07 0.05 0.07 +palliatifs palliatif adj m p 0.14 0.07 0.09 0.00 +pallient pallier ver 0.47 1.01 0.01 0.00 ind:pre:3p; +pallier pallier ver 0.47 1.01 0.44 0.88 inf; +palliera pallier ver 0.47 1.01 0.01 0.00 ind:fut:3s; +pallié pallier ver m s 0.47 1.01 0.01 0.07 par:pas; +palma_christi palma_christi nom m 0.00 0.07 0.00 0.07 +palmaient palmer ver 0.02 0.47 0.00 0.07 ind:imp:3p; +palmaire palmaire adj m s 0.02 0.07 0.02 0.07 +palmarès palmarès nom m 0.41 1.08 0.41 1.08 +palmas palma nom f p 0.04 0.07 0.04 0.07 +palme palme nom f s 2.09 9.53 1.25 2.91 +palmer palmer nom m s 0.17 0.14 0.17 0.14 +palmeraie palmeraie nom f s 0.31 1.28 0.29 0.74 +palmeraies palmeraie nom f p 0.31 1.28 0.01 0.54 +palmes palme nom f p 2.09 9.53 0.84 6.62 +palmette palmette nom f s 0.00 0.20 0.00 0.07 +palmettes palmette nom f p 0.00 0.20 0.00 0.14 +palmier palmier nom m s 4.57 14.26 1.69 3.04 +palmiers palmier nom m p 4.57 14.26 2.89 11.22 +palmipède palmipède nom m s 0.00 0.27 0.00 0.14 +palmipèdes palmipède adj m p 0.27 0.14 0.27 0.14 +palmiste palmiste nom m s 0.00 0.27 0.00 0.14 +palmistes palmiste nom m p 0.00 0.27 0.00 0.14 +palmé palmer ver m s 0.02 0.47 0.00 0.20 par:pas; +palmée palmé adj f s 0.17 0.41 0.01 0.07 +palmées palmé adj f p 0.17 0.41 0.00 0.27 +palmure palmure nom f s 0.01 0.07 0.01 0.00 +palmures palmure nom f p 0.01 0.07 0.00 0.07 +palmés palmé adj m p 0.17 0.41 0.16 0.07 +palombe palombe nom f s 0.11 0.61 0.01 0.27 +palombes palombe nom f p 0.11 0.61 0.10 0.34 +palonnier palonnier nom m s 0.01 0.07 0.01 0.07 +palot palot nom m s 0.20 0.14 0.05 0.07 +palots palot nom m p 0.20 0.14 0.15 0.07 +palourde palourde nom f s 1.52 0.54 0.34 0.00 +palourdes palourde nom f p 1.52 0.54 1.17 0.54 +palpa palper ver 1.81 13.04 0.00 1.62 ind:pas:3s; +palpable palpable adj s 0.65 2.77 0.52 2.50 +palpables palpable adj p 0.65 2.77 0.13 0.27 +palpaient palper ver 1.81 13.04 0.01 0.74 ind:imp:3p; +palpais palper ver 1.81 13.04 0.01 0.27 ind:imp:1s; +palpait palper ver 1.81 13.04 0.01 1.82 ind:imp:3s; +palpant palper ver 1.81 13.04 0.02 1.08 par:pre; +palpation palpation nom f s 0.04 0.34 0.04 0.27 +palpations palpation nom f p 0.04 0.34 0.00 0.07 +palpe palper ver 1.81 13.04 0.34 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +palpent palper ver 1.81 13.04 0.01 0.34 ind:pre:3p; +palper palper ver 1.81 13.04 0.97 4.19 inf; +palpera palper ver 1.81 13.04 0.01 0.00 ind:fut:3s; +palperai palper ver 1.81 13.04 0.00 0.07 ind:fut:1s; +palpes palper ver 1.81 13.04 0.08 0.00 ind:pre:2s; +palpeur palpeur nom m s 0.02 0.14 0.01 0.07 +palpeurs palpeur nom m p 0.02 0.14 0.01 0.07 +palpez palper ver 1.81 13.04 0.04 0.00 imp:pre:2p;ind:pre:2p; +palpita palpiter ver 1.64 10.41 0.00 0.14 ind:pas:3s; +palpitaient palpiter ver 1.64 10.41 0.01 1.08 ind:imp:3p; +palpitait palpiter ver 1.64 10.41 0.06 2.30 ind:imp:3s; +palpitant palpitant adj m s 2.13 6.82 1.53 3.31 +palpitante palpitant adj f s 2.13 6.82 0.42 1.96 +palpitantes palpitant adj f p 2.13 6.82 0.15 0.61 +palpitants palpitant adj m p 2.13 6.82 0.03 0.95 +palpitation palpitation nom f s 0.86 3.65 0.04 2.30 +palpitations palpitation nom f p 0.86 3.65 0.81 1.35 +palpite palpiter ver 1.64 10.41 1.07 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +palpitement palpitement nom m s 0.00 0.07 0.00 0.07 +palpitent palpiter ver 1.64 10.41 0.16 1.28 ind:pre:3p; +palpiter palpiter ver 1.64 10.41 0.26 1.62 inf; +palpiterait palpiter ver 1.64 10.41 0.00 0.07 cnd:pre:3s; +palpites palpiter ver 1.64 10.41 0.00 0.07 ind:pre:2s; +palpitèrent palpiter ver 1.64 10.41 0.00 0.20 ind:pas:3p; +palpité palpiter ver m s 1.64 10.41 0.00 0.07 par:pas; +palpons palper ver 1.81 13.04 0.00 0.07 imp:pre:1p; +palpèrent palper ver 1.81 13.04 0.00 0.07 ind:pas:3p; +palpé palper ver m s 1.81 13.04 0.28 0.74 par:pas; +palpées palper ver f p 1.81 13.04 0.00 0.07 par:pas; +palpés palper ver m p 1.81 13.04 0.02 0.14 par:pas; +pals pal nom m p 0.19 0.88 0.04 0.20 +palsambleu palsambleu ono 0.03 0.20 0.03 0.20 +paltoquet paltoquet nom m s 0.01 0.20 0.01 0.20 +palé palé adj m s 0.01 0.07 0.01 0.07 +palu palu nom m s 0.80 0.14 0.80 0.14 +paluchait palucher ver 0.20 0.34 0.00 0.07 ind:imp:3s; +paluche paluche nom f s 0.33 5.47 0.20 3.11 +palucher palucher ver 0.20 0.34 0.20 0.27 inf; +paluches paluche nom f p 0.33 5.47 0.13 2.36 +paludamentum paludamentum nom m s 0.00 0.07 0.00 0.07 +paludes palude nom m p 0.00 0.20 0.00 0.20 +paludiers paludier nom m p 0.00 0.14 0.00 0.14 +paludiques paludique adj p 0.00 0.07 0.00 0.07 +paludisme paludisme nom m s 0.25 1.35 0.25 1.35 +paludière paludière nom f s 0.00 0.07 0.00 0.07 +paludéenne paludéen adj f s 0.00 0.34 0.00 0.07 +paludéennes paludéen adj f p 0.00 0.34 0.00 0.20 +paludéens paludéen adj m p 0.00 0.34 0.00 0.07 +paléo paléo adv 0.01 0.00 0.01 0.00 +paléographie paléographie nom f s 0.00 0.14 0.00 0.14 +paléolithique paléolithique adj s 0.03 0.14 0.03 0.07 +paléolithiques paléolithique adj m p 0.03 0.14 0.00 0.07 +paléontologie paléontologie nom f s 0.14 0.14 0.14 0.14 +paléontologiques paléontologique adj m p 0.00 0.07 0.00 0.07 +paléontologiste paléontologiste nom s 0.05 0.00 0.04 0.00 +paléontologistes paléontologiste nom p 0.05 0.00 0.01 0.00 +paléontologue paléontologue nom s 0.20 0.07 0.18 0.00 +paléontologues paléontologue nom p 0.20 0.07 0.02 0.07 +paléozoïque paléozoïque nom m s 0.01 0.00 0.01 0.00 +palus palus nom m 0.01 0.07 0.01 0.07 +palustre palustre adj s 0.00 0.07 0.00 0.07 +palétuvier palétuvier nom m s 0.04 0.81 0.03 0.14 +palétuviers palétuvier nom m p 0.04 0.81 0.01 0.68 +palynologie palynologie nom f s 0.01 0.00 0.01 0.00 +pampa pampa nom f s 0.61 0.95 0.34 0.81 +pampas pampa nom f p 0.61 0.95 0.28 0.14 +pampero pampero nom m s 0.00 0.07 0.00 0.07 +pamphlet pamphlet nom m s 2.84 1.42 1.11 0.68 +pamphlets pamphlet nom m p 2.84 1.42 1.73 0.74 +pamphlétaire pamphlétaire nom s 0.00 0.41 0.00 0.34 +pamphlétaires pamphlétaire nom p 0.00 0.41 0.00 0.07 +pamplemousse pamplemousse nom s 2.01 1.55 1.56 0.95 +pamplemousses pamplemousse nom p 2.01 1.55 0.45 0.61 +pamplemoussier pamplemoussier nom m s 0.00 0.14 0.00 0.07 +pamplemoussiers pamplemoussier nom m p 0.00 0.14 0.00 0.07 +pampre pampre nom m s 0.41 1.01 0.27 0.20 +pampres pampre nom m p 0.41 1.01 0.14 0.81 +pan_bagnat pan_bagnat nom m s 0.00 0.14 0.00 0.14 +pan pan ono 3.57 1.76 3.57 1.76 +pana paner ver 0.13 0.41 0.02 0.00 ind:pas:3s; +panachage panachage nom m s 0.01 0.00 0.01 0.00 +panachait panacher ver 0.03 0.20 0.00 0.07 ind:imp:3s; +panache panache nom m s 1.09 7.36 0.95 5.14 +panacher panacher ver 0.03 0.20 0.01 0.00 inf; +panaches panache nom m p 1.09 7.36 0.14 2.23 +panaché panaché nom m s 0.12 0.47 0.10 0.27 +panachée panacher ver f s 0.03 0.20 0.00 0.07 par:pas; +panachés panaché nom m p 0.12 0.47 0.02 0.20 +panacée panacée nom f s 0.29 0.81 0.27 0.74 +panacées panacée nom f p 0.29 0.81 0.02 0.07 +panade panade nom f s 0.96 1.22 0.96 0.95 +panades panade nom f p 0.96 1.22 0.00 0.27 +panais panais nom m 0.01 0.14 0.01 0.14 +panama panama nom m s 0.15 1.35 0.15 1.22 +panamas panama nom m p 0.15 1.35 0.00 0.14 +panamienne panamien adj f s 0.00 0.14 0.00 0.07 +panamiens panamien adj m p 0.00 0.14 0.00 0.07 +panaméen panaméen adj m s 0.09 0.34 0.09 0.34 +panaméenne panaméenne adj f s 0.14 0.00 0.14 0.00 +panaméricain panaméricain adj m s 0.11 0.00 0.10 0.00 +panaméricaine panaméricain adj f s 0.11 0.00 0.01 0.00 +panarabisme panarabisme nom m s 0.00 0.41 0.00 0.41 +panard panard nom m s 0.26 2.16 0.19 0.74 +panards panard nom m p 0.26 2.16 0.07 1.42 +panaris panaris nom m 0.03 0.34 0.03 0.34 +panatella panatella nom m s 0.01 0.00 0.01 0.00 +panathénaïque panathénaïque adj m s 0.00 0.07 0.00 0.07 +panathénées panathénées nom f p 0.00 0.07 0.00 0.07 +pancake pancake nom m s 2.97 0.20 0.44 0.14 +pancakes pancake nom m p 2.97 0.20 2.54 0.07 +pancarte pancarte nom f s 3.90 8.99 3.28 5.95 +pancartes pancarte nom f p 3.90 8.99 0.61 3.04 +panceltique panceltique adj m s 0.00 0.07 0.00 0.07 +pancetta pancetta nom f s 0.03 0.00 0.03 0.00 +panclastite panclastite nom f s 0.00 0.07 0.00 0.07 +pancrace pancrace nom m s 0.00 0.47 0.00 0.34 +pancraces pancrace nom m p 0.00 0.47 0.00 0.14 +pancréas pancréas nom m 1.13 2.03 1.13 2.03 +pancréatectomie pancréatectomie nom f s 0.09 0.00 0.09 0.00 +pancréatique pancréatique adj s 0.18 0.20 0.06 0.20 +pancréatiques pancréatique adj f p 0.18 0.20 0.12 0.00 +pancréatite pancréatite nom f s 0.14 0.00 0.14 0.00 +panda panda nom m s 1.71 0.14 1.46 0.14 +pandanus pandanus nom m 0.00 0.14 0.00 0.14 +pandas panda nom m p 1.71 0.14 0.26 0.00 +pandit pandit nom m s 0.08 0.00 0.08 0.00 +pandore pandore nom s 0.11 1.08 0.11 0.34 +pandores pandore nom p 0.11 1.08 0.00 0.74 +pandémie pandémie nom f s 0.17 0.00 0.17 0.00 +pandémonium pandémonium nom m s 0.03 0.20 0.02 0.20 +pandémoniums pandémonium nom m p 0.03 0.20 0.01 0.00 +pane paner ver 0.13 0.41 0.02 0.00 ind:pre:3s; +panel panel nom m s 0.28 0.00 0.28 0.00 +paner paner ver 0.13 0.41 0.04 0.00 inf; +panetier panetier nom m s 0.00 0.27 0.00 0.07 +panetière panetier nom f s 0.00 0.27 0.00 0.14 +panetières panetier nom f p 0.00 0.27 0.00 0.07 +pangermanisme pangermanisme nom m s 0.01 0.20 0.01 0.20 +panic panic nom m s 0.46 0.00 0.46 0.00 +panicules panicule nom f p 0.00 0.14 0.00 0.14 +panier_repas panier_repas nom m 0.21 0.07 0.21 0.07 +panier panier nom m s 15.72 33.18 13.82 24.39 +paniers panier nom m p 15.72 33.18 1.90 8.78 +panification panification nom f s 0.00 0.14 0.00 0.14 +panini panini nom m s 0.02 0.00 0.02 0.00 +paniqua paniquer ver 19.76 6.15 0.05 0.20 ind:pas:3s; +paniquaient paniquer ver 19.76 6.15 0.13 0.20 ind:imp:3p; +paniquais paniquer ver 19.76 6.15 0.12 0.20 ind:imp:1s;ind:imp:2s; +paniquait paniquer ver 19.76 6.15 0.22 0.54 ind:imp:3s; +paniquant paniquant adj m s 0.04 0.07 0.04 0.07 +paniquards paniquard nom m p 0.00 0.20 0.00 0.20 +panique panique nom f s 16.23 25.61 16.17 24.86 +paniquent paniquer ver 19.76 6.15 0.63 0.07 ind:pre:3p; +paniquer paniquer ver 19.76 6.15 4.25 0.88 inf; +paniquera paniquer ver 19.76 6.15 0.01 0.00 ind:fut:3s; +paniquerai paniquer ver 19.76 6.15 0.06 0.00 ind:fut:1s; +paniqueraient paniquer ver 19.76 6.15 0.05 0.00 cnd:pre:3p; +paniquerais paniquer ver 19.76 6.15 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +paniqueras paniquer ver 19.76 6.15 0.01 0.00 ind:fut:2s; +paniqueront paniquer ver 19.76 6.15 0.01 0.00 ind:fut:3p; +paniques paniquer ver 19.76 6.15 1.08 0.14 ind:pre:2s;sub:pre:2s; +paniquez paniquer ver 19.76 6.15 1.66 0.00 imp:pre:2p;ind:pre:2p; +paniquons paniquer ver 19.76 6.15 0.34 0.00 imp:pre:1p; +paniquèrent paniquer ver 19.76 6.15 0.02 0.00 ind:pas:3p; +paniqué paniquer ver m s 19.76 6.15 5.56 0.95 par:pas; +paniquée paniquer ver f s 19.76 6.15 0.68 0.34 par:pas; +paniqués paniqué adj m p 1.52 1.01 0.24 0.20 +panis panis nom m 0.14 0.07 0.14 0.07 +panière panière nom f s 0.16 0.54 0.16 0.34 +panières panière nom f p 0.16 0.54 0.00 0.20 +panka panka nom m s 0.00 0.27 0.00 0.07 +pankas panka nom m p 0.00 0.27 0.00 0.20 +panna panner ver 0.14 0.34 0.02 0.07 ind:pas:3s; +pannais panner ver 0.14 0.34 0.00 0.07 ind:imp:1s; +pannait panner ver 0.14 0.34 0.00 0.07 ind:imp:3s; +panne panne nom f s 24.59 11.69 23.84 10.81 +panneau_réclame panneau_réclame nom m s 0.00 0.68 0.00 0.68 +panneau panneau nom m s 12.67 26.69 9.87 16.55 +panneaux panneau nom m p 12.67 26.69 2.80 10.14 +panner panner ver 0.14 0.34 0.00 0.14 inf; +pannes panne nom f p 24.59 11.69 0.74 0.88 +panneton panneton nom m s 0.01 0.00 0.01 0.00 +panné panner ver m s 0.14 0.34 0.11 0.00 par:pas; +pano pano adj m s 0.46 0.00 0.29 0.00 +panonceau panonceau nom m s 0.00 0.88 0.00 0.68 +panonceaux panonceau nom m p 0.00 0.88 0.00 0.20 +panoplie panoplie nom f s 1.44 4.73 1.42 3.99 +panoplies panoplie nom f p 1.44 4.73 0.02 0.74 +panorama panorama nom m s 1.24 5.14 1.11 4.26 +panoramas panorama nom m p 1.24 5.14 0.14 0.88 +panoramique panoramique adj s 0.61 1.15 0.60 0.81 +panoramiquer panoramiquer ver 0.00 0.14 0.00 0.07 inf; +panoramiques panoramique nom m p 0.36 0.14 0.15 0.00 +panoramiqué panoramiquer ver m s 0.00 0.14 0.00 0.07 par:pas; +panos pano adj m p 0.46 0.00 0.17 0.00 +panosse panosse nom f s 0.00 0.14 0.00 0.14 +panouille panouille nom s 0.01 0.54 0.01 0.41 +panouilles panouille nom p 0.01 0.54 0.00 0.14 +pans pan nom m p 3.73 26.01 0.25 12.16 +pansa panser ver 1.34 3.65 0.14 0.20 ind:pas:3s; +pansage pansage nom m s 0.00 0.14 0.00 0.14 +pansait panser ver 1.34 3.65 0.00 0.27 ind:imp:3s; +pansant panser ver 1.34 3.65 0.00 0.07 par:pre; +pansas panser ver 1.34 3.65 0.00 0.07 ind:pas:2s; +panse panse nom f s 2.13 3.04 2.02 2.91 +pansement pansement nom m s 6.52 13.45 4.70 8.38 +pansements pansement nom m p 6.52 13.45 1.82 5.07 +pansent panser ver 1.34 3.65 0.01 0.00 ind:pre:3p; +panser panser ver 1.34 3.65 0.50 1.42 inf; +panserai panser ver 1.34 3.65 0.01 0.00 ind:fut:1s; +panses panse nom f p 2.13 3.04 0.11 0.14 +pansez panser ver 1.34 3.65 0.07 0.07 imp:pre:2p;ind:pre:2p; +pansiez panser ver 1.34 3.65 0.00 0.07 ind:imp:2p; +pansions panser ver 1.34 3.65 0.14 0.00 ind:imp:1p; +panspermie panspermie nom f s 0.01 0.00 0.01 0.00 +pansèrent panser ver 1.34 3.65 0.00 0.07 ind:pas:3p; +pansé panser ver m s 1.34 3.65 0.28 0.54 par:pas; +pansu pansu adj m s 0.00 1.01 0.00 0.34 +pansée panser ver f s 1.34 3.65 0.00 0.14 par:pas; +pansue pansu adj f s 0.00 1.01 0.00 0.14 +pansées panser ver f p 1.34 3.65 0.04 0.14 par:pas; +pansues pansu adj f p 0.00 1.01 0.00 0.34 +pansés panser ver m p 1.34 3.65 0.00 0.14 par:pas; +pansus pansu adj m p 0.00 1.01 0.00 0.20 +pantagruélique pantagruélique adj m s 0.00 0.34 0.00 0.20 +pantagruéliques pantagruélique adj p 0.00 0.34 0.00 0.14 +pantalon pantalon nom m s 37.55 71.76 31.49 57.91 +pantalonnade pantalonnade nom f s 0.00 0.27 0.00 0.20 +pantalonnades pantalonnade nom f p 0.00 0.27 0.00 0.07 +pantalons pantalon nom m p 37.55 71.76 6.06 13.85 +pante pante nom m s 0.01 0.81 0.00 0.27 +pantela panteler ver 0.00 1.01 0.00 0.07 ind:pas:3s; +pantelaient panteler ver 0.00 1.01 0.00 0.07 ind:imp:3p; +pantelait panteler ver 0.00 1.01 0.00 0.20 ind:imp:3s; +pantelant pantelant adj m s 0.10 3.24 0.03 1.35 +pantelante pantelant adj f s 0.10 3.24 0.07 1.22 +pantelantes pantelant adj f p 0.10 3.24 0.00 0.27 +pantelants pantelant adj m p 0.10 3.24 0.00 0.41 +panteler panteler ver 0.00 1.01 0.00 0.14 inf; +pantelle panteler ver 0.00 1.01 0.00 0.20 ind:pre:3s; +pantelé panteler ver m s 0.00 1.01 0.00 0.07 par:pas; +pantes pante nom m p 0.01 0.81 0.01 0.54 +panthère panthère nom f s 2.08 5.41 1.84 3.65 +panthères panthère nom f p 2.08 5.41 0.24 1.76 +panthéisme panthéisme nom m s 0.00 0.20 0.00 0.20 +panthéiste panthéiste adj s 0.03 0.20 0.03 0.20 +panthéon panthéon nom m s 0.79 6.42 0.78 6.35 +panthéons panthéon nom m p 0.79 6.42 0.01 0.07 +pantin pantin nom m s 3.96 5.88 3.25 4.19 +pantins pantin nom m p 3.96 5.88 0.72 1.69 +pantière pantière nom f s 0.00 0.14 0.00 0.14 +pantocrator pantocrator adj m s 0.14 0.00 0.14 0.00 +pantographe pantographe nom m s 0.01 0.07 0.01 0.00 +pantographes pantographe nom m p 0.01 0.07 0.00 0.07 +pantois pantois adj m 0.09 2.30 0.06 2.23 +pantoise pantois adj f s 0.09 2.30 0.01 0.00 +pantoises pantois adj f p 0.09 2.30 0.01 0.07 +pantomime pantomime nom f s 0.41 1.82 0.41 1.42 +pantomimes pantomime nom f p 0.41 1.82 0.00 0.41 +pantomètres pantomètre nom m p 0.00 0.07 0.00 0.07 +pantouflard pantouflard adj m s 0.23 0.07 0.13 0.07 +pantouflarde pantouflard adj f s 0.23 0.07 0.10 0.00 +pantouflards pantouflard nom m p 0.07 0.20 0.02 0.07 +pantoufle pantoufle nom f s 3.08 8.78 0.57 0.95 +pantoufler pantoufler ver 0.01 0.34 0.01 0.00 inf; +pantoufles pantoufle nom f p 3.08 8.78 2.51 7.84 +panty panty nom m s 0.05 0.07 0.05 0.07 +pané pané adj m s 0.19 0.41 0.14 0.14 +panée paner ver f s 0.13 0.41 0.01 0.14 par:pas; +panées pané adj f p 0.19 0.41 0.01 0.20 +panégyrique panégyrique nom m s 0.23 0.34 0.22 0.20 +panégyriques panégyrique nom m p 0.23 0.34 0.01 0.14 +panégyristes panégyriste nom p 0.00 0.07 0.00 0.07 +panurge panurge nom m s 0.04 0.47 0.04 0.47 +panurgisme panurgisme nom m s 0.00 0.07 0.00 0.07 +panés pané adj m p 0.19 0.41 0.04 0.00 +panzer panzer nom m s 0.71 1.42 0.25 0.68 +panzers panzer nom m p 0.71 1.42 0.46 0.74 +paolistes paoliste adj m p 0.00 0.14 0.00 0.14 +paolo paolo nom m s 0.07 0.00 0.07 0.00 +paon paon nom m s 1.30 5.34 0.60 3.85 +paonne paon nom f s 1.30 5.34 0.10 0.07 +paons paon nom m p 1.30 5.34 0.60 1.42 +papa_cadeau papa_cadeau nom m s 0.01 0.00 0.01 0.00 +papa papa nom m s 259.01 77.16 259.01 77.16 +papable papable adj m s 0.00 0.07 0.00 0.07 +papal papal adj m s 0.41 0.68 0.02 0.27 +papale papal adj f s 0.41 0.68 0.37 0.41 +papamobile papamobile nom f s 0.14 0.00 0.14 0.00 +paparazzi paparazzi nom m 1.46 0.34 0.67 0.34 +paparazzis paparazzi nom m p 1.46 0.34 0.79 0.00 +paparazzo paparazzo nom m s 0.03 0.07 0.03 0.07 +papas papas nom m 1.25 1.08 1.25 1.08 +papauté papauté nom f s 0.01 0.81 0.01 0.81 +papaux papal adj m p 0.41 0.68 0.02 0.00 +papaver papaver nom m s 0.01 0.00 0.01 0.00 +papavérine papavérine nom f s 0.00 0.07 0.00 0.07 +papaye papaye nom f s 0.59 0.20 0.49 0.14 +papayer papayer nom m s 0.00 0.14 0.00 0.07 +papayers papayer nom m p 0.00 0.14 0.00 0.07 +papayes papaye nom f p 0.59 0.20 0.10 0.07 +pape pape nom m s 7.17 19.32 6.57 14.59 +papegai papegai nom m s 0.00 0.14 0.00 0.07 +papegais papegai nom m p 0.00 0.14 0.00 0.07 +papelard papelard nom m s 0.17 2.43 0.16 1.62 +papelarde papelard adj f s 0.01 0.27 0.00 0.07 +papelards papelard nom m p 0.17 2.43 0.01 0.81 +paperasse paperasse nom f s 4.80 5.74 4.11 0.95 +paperasser paperasser ver 0.00 0.07 0.00 0.07 inf; +paperasserie paperasserie nom f s 1.07 0.88 1.05 0.74 +paperasseries paperasserie nom f p 1.07 0.88 0.01 0.14 +paperasses paperasse nom f p 4.80 5.74 0.69 4.80 +paperassier paperassier nom m s 0.01 0.07 0.01 0.07 +papes pape nom m p 7.17 19.32 0.60 4.73 +papesse papesse nom f s 0.39 0.14 0.39 0.14 +papet papet nom m s 4.25 0.27 4.25 0.27 +papeterie papeterie nom f s 0.91 2.84 0.82 1.28 +papeteries papeterie nom f p 0.91 2.84 0.08 1.55 +papetier papetier nom m s 0.44 0.27 0.44 0.07 +papetiers papetier nom m p 0.44 0.27 0.00 0.20 +papi papi nom m s 7.23 0.00 7.05 0.00 +papier_cadeau papier_cadeau nom m s 0.07 0.07 0.07 0.07 +papier_monnaie papier_monnaie nom m s 0.00 0.14 0.00 0.14 +papier papier nom m s 120.51 203.11 56.32 144.59 +papier_calque papier_calque nom m p 0.00 0.07 0.00 0.07 +papiers papier nom m p 120.51 203.11 64.19 58.51 +papilionacé papilionacé adj m s 0.01 0.14 0.01 0.00 +papilionacée papilionacé adj f s 0.01 0.14 0.00 0.07 +papilionacées papilionacé adj f p 0.01 0.14 0.00 0.07 +papillaire papillaire adj m s 0.00 0.07 0.00 0.07 +papille papille nom f s 0.35 1.15 0.01 0.07 +papilles papille nom f p 0.35 1.15 0.34 1.08 +papillomavirus papillomavirus nom m 0.04 0.00 0.04 0.00 +papillomes papillome nom m p 0.01 0.14 0.01 0.14 +papillon papillon nom m s 12.28 20.07 8.12 10.68 +papillonna papillonner ver 0.33 0.81 0.00 0.07 ind:pas:3s; +papillonnage papillonnage nom m s 0.01 0.14 0.01 0.14 +papillonnaient papillonner ver 0.33 0.81 0.00 0.07 ind:imp:3p; +papillonnais papillonner ver 0.33 0.81 0.15 0.00 ind:imp:1s; +papillonnait papillonner ver 0.33 0.81 0.03 0.07 ind:imp:3s; +papillonnant papillonnant adj m s 0.00 0.14 0.00 0.07 +papillonnante papillonnant adj f s 0.00 0.14 0.00 0.07 +papillonne papillonner ver 0.33 0.81 0.04 0.27 ind:pre:1s;ind:pre:3s; +papillonnement papillonnement nom m s 0.00 0.14 0.00 0.14 +papillonnent papillonner ver 0.33 0.81 0.01 0.14 ind:pre:3p; +papillonner papillonner ver 0.33 0.81 0.07 0.14 inf; +papillonnes papillonner ver 0.33 0.81 0.02 0.00 ind:pre:2s; +papillonné papillonner ver m s 0.33 0.81 0.00 0.07 par:pas; +papillons papillon nom m p 12.28 20.07 4.16 9.39 +papillotaient papilloter ver 0.00 1.01 0.00 0.41 ind:imp:3p; +papillotait papilloter ver 0.00 1.01 0.00 0.07 ind:imp:3s; +papillotant papillotant adj m s 0.00 0.47 0.00 0.14 +papillotantes papillotant adj f p 0.00 0.47 0.00 0.14 +papillotants papillotant adj m p 0.00 0.47 0.00 0.20 +papillote papillote nom f s 0.33 1.89 0.02 0.07 +papillotent papilloter ver 0.00 1.01 0.00 0.14 ind:pre:3p; +papilloter papilloter ver 0.00 1.01 0.00 0.20 inf; +papillotes papillote nom f p 0.33 1.89 0.31 1.82 +papillotèrent papilloter ver 0.00 1.01 0.00 0.07 ind:pas:3p; +papis papi nom m p 7.23 0.00 0.17 0.00 +papisme papisme nom m s 0.04 0.07 0.04 0.07 +papiste papiste adj s 0.55 0.61 0.43 0.47 +papistes papiste adj f p 0.55 0.61 0.12 0.14 +papotage papotage nom m s 0.27 0.61 0.19 0.14 +papotages papotage nom m p 0.27 0.61 0.08 0.47 +papotaient papoter ver 1.77 1.62 0.02 0.20 ind:imp:3p; +papotait papoter ver 1.77 1.62 0.06 0.20 ind:imp:3s; +papotant papoter ver 1.77 1.62 0.03 0.27 par:pre; +papote papoter ver 1.77 1.62 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +papotent papoter ver 1.77 1.62 0.04 0.00 ind:pre:3p; +papoter papoter ver 1.77 1.62 1.16 0.61 inf; +papotera papoter ver 1.77 1.62 0.03 0.00 ind:fut:3s; +papotez papoter ver 1.77 1.62 0.04 0.00 imp:pre:2p; +papotèrent papoter ver 1.77 1.62 0.00 0.07 ind:pas:3p; +papoté papoter ver m s 1.77 1.62 0.13 0.07 par:pas; +papou papou nom m s 0.04 0.07 0.02 0.00 +papouille papouille nom f s 0.08 0.54 0.00 0.07 +papouillent papouiller ver 0.02 0.14 0.01 0.00 ind:pre:3p; +papouiller papouiller ver 0.02 0.14 0.01 0.00 inf; +papouilles papouille nom f p 0.08 0.54 0.08 0.47 +papouillez papouiller ver 0.02 0.14 0.00 0.07 ind:pre:2p; +papouillé papouiller ver m s 0.02 0.14 0.00 0.07 par:pas; +papous papou nom m p 0.04 0.07 0.02 0.07 +paprika paprika nom m s 0.75 0.61 0.75 0.61 +papé papé nom m s 0.00 0.14 0.00 0.14 +papy papy nom m s 6.79 1.08 6.76 1.08 +papyrus papyrus nom m 1.57 0.95 1.57 0.95 +papys papy nom m p 6.79 1.08 0.04 0.00 +paqson paqson nom m s 0.01 0.00 0.01 0.00 +paquebot paquebot nom m s 1.18 7.43 1.10 5.07 +paquebots paquebot nom m p 1.18 7.43 0.09 2.36 +paquet_cadeau paquet_cadeau nom m s 0.19 0.20 0.19 0.20 +paquet paquet nom m s 44.96 89.19 36.90 62.77 +paqueta paqueter ver 0.04 0.07 0.01 0.07 ind:pas:3s; +paquetage paquetage nom m s 0.60 2.91 0.44 2.16 +paquetages paquetage nom m p 0.60 2.91 0.16 0.74 +paquets_cadeaux paquets_cadeaux nom m p 0.01 0.54 0.01 0.54 +paquets paquet nom m p 44.96 89.19 8.06 26.42 +paquette paqueter ver 0.04 0.07 0.03 0.00 imp:pre:2s; +paqueté paqueté adj m s 0.02 0.00 0.02 0.00 +par_ci par_ci adv 3.10 9.12 3.10 9.12 +par_dedans par_dedans pre 0.00 0.07 0.00 0.07 +par_delà par_delà pre 1.32 9.05 1.32 9.05 +par_derrière par_derrière pre 2.04 6.35 2.04 6.35 +par_dessous par_dessous pre 0.32 2.16 0.32 2.16 +par_dessus par_dessus pre 16.10 69.19 16.10 69.19 +par_devant par_devant pre 0.16 1.96 0.16 1.96 +par_devers par_devers pre 0.01 1.08 0.01 1.08 +par_mégarde par_mégarde adv 0.61 2.91 0.61 2.91 +par par pre 1753.02 3727.09 1753.02 3727.09 +parût paraître ver 122.14 448.11 0.00 4.46 sub:imp:3s; +para_humain para_humain nom m s 0.00 0.14 0.00 0.14 +para parer ver 30.50 19.66 4.71 0.20 ind:pas:3s; +paraît paraître ver 122.14 448.11 81.22 113.92 ind:pre:3s; +paraîtra paraître ver 122.14 448.11 1.99 3.24 ind:fut:3s; +paraîtrai paraître ver 122.14 448.11 0.02 0.14 ind:fut:1s; +paraîtraient paraître ver 122.14 448.11 0.10 0.81 cnd:pre:3p; +paraîtrais paraître ver 122.14 448.11 0.00 0.14 cnd:pre:1s; +paraîtrait paraître ver 122.14 448.11 0.43 3.11 cnd:pre:3s; +paraîtras paraître ver 122.14 448.11 0.25 0.00 ind:fut:2s; +paraître paraître ver 122.14 448.11 15.31 40.27 inf; +paraîtrez paraître ver 122.14 448.11 0.05 0.00 ind:fut:2p; +paraîtront paraître ver 122.14 448.11 0.47 0.61 ind:fut:3p; +parabellum parabellum nom m s 0.24 0.61 0.23 0.54 +parabellums parabellum nom m p 0.24 0.61 0.01 0.07 +parabole parabole nom f s 1.90 2.57 1.78 1.96 +paraboles parabole nom f p 1.90 2.57 0.12 0.61 +parabolique parabolique adj s 0.42 0.47 0.38 0.20 +paraboliquement paraboliquement adv 0.01 0.00 0.01 0.00 +paraboliques parabolique adj p 0.42 0.47 0.04 0.27 +paraboloïde paraboloïde nom m s 0.01 0.00 0.01 0.00 +parachevaient parachever ver 0.57 1.28 0.01 0.07 ind:imp:3p; +parachevait parachever ver 0.57 1.28 0.00 0.14 ind:imp:3s; +parachevant parachever ver 0.57 1.28 0.01 0.14 par:pre; +parachever parachever ver 0.57 1.28 0.28 0.47 inf; +parachevèrent parachever ver 0.57 1.28 0.00 0.07 ind:pas:3p; +parachevé parachever ver m s 0.57 1.28 0.26 0.20 par:pas; +parachèvement parachèvement nom m s 0.01 0.14 0.01 0.14 +parachèvent parachever ver 0.57 1.28 0.00 0.14 ind:pre:3p; +parachèvera parachever ver 0.57 1.28 0.01 0.00 ind:fut:3s; +parachèveraient parachever ver 0.57 1.28 0.00 0.07 cnd:pre:3p; +parachutage parachutage nom m s 0.22 0.95 0.17 0.41 +parachutages parachutage nom m p 0.22 0.95 0.05 0.54 +parachute parachute nom m s 4.79 3.58 4.12 3.04 +parachutent parachuter ver 1.12 1.96 0.01 0.14 ind:pre:3p; +parachuter parachuter ver 1.12 1.96 0.11 0.14 inf; +parachuterais parachuter ver 1.12 1.96 0.01 0.00 cnd:pre:1s; +parachuterons parachuter ver 1.12 1.96 0.01 0.00 ind:fut:1p; +parachutes parachute nom m p 4.79 3.58 0.67 0.54 +parachutez parachuter ver 1.12 1.96 0.01 0.07 imp:pre:2p;ind:pre:2p; +parachutisme parachutisme nom m s 0.29 0.07 0.29 0.07 +parachutiste parachutiste nom s 2.50 4.80 0.57 1.49 +parachutistes parachutiste nom p 2.50 4.80 1.93 3.31 +parachutèrent parachuter ver 1.12 1.96 0.00 0.07 ind:pas:3p; +parachuté parachuter ver m s 1.12 1.96 0.39 0.74 par:pas; +parachutée parachuter ver f s 1.12 1.96 0.02 0.07 par:pas; +parachutées parachuter ver f p 1.12 1.96 0.00 0.14 par:pas; +parachutés parachuter ver m p 1.12 1.96 0.07 0.41 par:pas; +paraclet paraclet nom m s 0.04 0.68 0.04 0.68 +paracétamol paracétamol nom m s 0.11 0.14 0.11 0.14 +parada parader ver 1.48 3.58 0.04 0.07 ind:pas:3s; +paradaient parader ver 1.48 3.58 0.00 0.47 ind:imp:3p; +paradais parader ver 1.48 3.58 0.01 0.14 ind:imp:1s; +paradait parader ver 1.48 3.58 0.14 0.68 ind:imp:3s; +paradant parader ver 1.48 3.58 0.04 0.41 par:pre; +parade parade nom f s 5.10 11.22 4.79 9.93 +paradent parader ver 1.48 3.58 0.10 0.27 ind:pre:3p; +parader parader ver 1.48 3.58 0.72 0.81 inf; +paradera parader ver 1.48 3.58 0.00 0.07 ind:fut:3s; +parades parade nom f p 5.10 11.22 0.30 1.28 +paradeurs paradeur nom m p 0.00 0.07 0.00 0.07 +paradigme paradigme nom m s 0.25 0.20 0.13 0.14 +paradigmes paradigme nom m p 0.25 0.20 0.13 0.07 +paradis paradis nom m 33.23 28.04 33.23 28.04 +paradisiaque paradisiaque adj s 0.61 1.01 0.59 0.95 +paradisiaques paradisiaque adj p 0.61 1.01 0.02 0.07 +paradisiers paradisier nom m p 0.00 0.07 0.00 0.07 +paradons parader ver 1.48 3.58 0.01 0.00 ind:pre:1p; +parador parador nom m s 0.10 0.14 0.10 0.14 +parados parados nom m 0.00 0.81 0.00 0.81 +paradoxal paradoxal adj m s 0.78 5.14 0.65 2.16 +paradoxale paradoxal adj f s 0.78 5.14 0.12 1.96 +paradoxalement paradoxalement adv 0.22 3.78 0.22 3.78 +paradoxales paradoxal adj f p 0.78 5.14 0.01 0.68 +paradoxaux paradoxal adj m p 0.78 5.14 0.00 0.34 +paradoxe paradoxe nom m s 1.90 8.11 1.50 6.01 +paradoxes paradoxe nom m p 1.90 8.11 0.40 2.09 +paradoxie paradoxie nom f s 0.00 0.07 0.00 0.07 +paradèrent parader ver 1.48 3.58 0.00 0.07 ind:pas:3p; +paradé parader ver m s 1.48 3.58 0.01 0.14 par:pas; +paradée parader ver f s 1.48 3.58 0.01 0.00 par:pas; +parafer parafer ver 0.01 0.00 0.01 0.00 inf; +paraffine paraffine nom f s 0.22 0.68 0.22 0.68 +paraffiné paraffiné adj m s 0.01 0.27 0.00 0.20 +paraffinée paraffiné adj f s 0.01 0.27 0.01 0.00 +paraffinés paraffiné adj m p 0.01 0.27 0.00 0.07 +parage parage nom m s 5.99 5.74 0.01 0.00 +parages parage nom m p 5.99 5.74 5.98 5.74 +paragouvernementales paragouvernemental adj f p 0.00 0.07 0.00 0.07 +paragraphe paragraphe nom m s 3.58 3.65 3.21 2.57 +paragraphes paragraphe nom m p 3.58 3.65 0.37 1.08 +paraguayen paraguayen adj m s 0.35 0.47 0.00 0.34 +paraguayenne paraguayen adj f s 0.35 0.47 0.23 0.07 +paraguayennes paraguayen adj f p 0.35 0.47 0.00 0.07 +paraguayens paraguayen nom m p 0.14 0.14 0.14 0.07 +parai parer ver 30.50 19.66 0.02 0.14 ind:pas:1s; +paraient parer ver 30.50 19.66 0.00 0.34 ind:imp:3p; +parais parer ver 30.50 19.66 1.98 0.47 imp:pre:2s;ind:imp:1s;ind:imp:2s; +paraissaient paraître ver 122.14 448.11 0.73 26.96 ind:imp:3p; +paraissais paraître ver 122.14 448.11 0.46 0.61 ind:imp:1s;ind:imp:2s; +paraissait paraître ver 122.14 448.11 4.63 118.31 ind:imp:3s; +paraissant paraître ver 122.14 448.11 0.41 3.51 par:pre; +paraisse paraître ver 122.14 448.11 1.45 2.84 sub:pre:1s;sub:pre:3s; +paraissent paraître ver 122.14 448.11 2.88 13.04 ind:pre:3p; +paraissez paraître ver 122.14 448.11 2.30 0.68 imp:pre:2p;ind:pre:2p; +paraissiez paraître ver 122.14 448.11 0.03 0.41 ind:imp:2p; +paraissions paraître ver 122.14 448.11 0.02 0.14 ind:imp:1p; +paraissons paraître ver 122.14 448.11 0.04 0.27 imp:pre:1p;ind:pre:1p; +parait parer ver 30.50 19.66 12.53 2.09 ind:imp:3s; +parallaxe parallaxe nom f s 0.03 0.07 0.02 0.00 +parallaxes parallaxe nom f p 0.03 0.07 0.01 0.07 +parallèle parallèle adj s 2.79 13.11 1.36 3.51 +parallèlement parallèlement adv 0.20 3.45 0.20 3.45 +parallèles parallèle adj p 2.79 13.11 1.42 9.59 +parallélisme parallélisme nom m s 0.20 0.41 0.20 0.41 +paralléliste paralléliste adj s 0.01 0.00 0.01 0.00 +parallélogramme parallélogramme nom m s 0.00 0.07 0.00 0.07 +parallélépipède parallélépipède nom m s 0.00 0.54 0.00 0.20 +parallélépipèdes parallélépipède nom m p 0.00 0.54 0.00 0.34 +parallélépipédique parallélépipédique adj s 0.00 0.20 0.00 0.20 +paralogismes paralogisme nom m p 0.00 0.07 0.00 0.07 +paralympiques paralympique nom m p 0.10 0.00 0.10 0.00 +paralysa paralyser ver 7.84 13.99 0.05 0.20 ind:pas:3s; +paralysaient paralyser ver 7.84 13.99 0.01 0.47 ind:imp:3p; +paralysais paralyser ver 7.84 13.99 0.00 0.07 ind:imp:1s; +paralysait paralyser ver 7.84 13.99 0.03 2.16 ind:imp:3s; +paralysant paralysant adj m s 0.86 1.01 0.52 0.41 +paralysante paralysant adj f s 0.86 1.01 0.17 0.54 +paralysantes paralysant adj f p 0.86 1.01 0.11 0.07 +paralysants paralysant adj m p 0.86 1.01 0.06 0.00 +paralyse paralyser ver 7.84 13.99 0.72 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +paralysent paralyser ver 7.84 13.99 0.07 0.47 ind:pre:3p; +paralyser paralyser ver 7.84 13.99 0.69 1.08 inf; +paralysera paralyser ver 7.84 13.99 0.15 0.07 ind:fut:3s; +paralyserait paralyser ver 7.84 13.99 0.19 0.00 cnd:pre:3s; +paralyserez paralyser ver 7.84 13.99 0.01 0.00 ind:fut:2p; +paralysie paralysie nom f s 2.61 4.32 2.60 4.19 +paralysies paralysie nom f p 2.61 4.32 0.01 0.14 +paralysât paralyser ver 7.84 13.99 0.00 0.14 sub:imp:3s; +paralysèrent paralyser ver 7.84 13.99 0.00 0.14 ind:pas:3p; +paralysé paralyser ver m s 7.84 13.99 3.69 4.12 par:pas; +paralysée paralyser ver f s 7.84 13.99 1.71 1.96 par:pas; +paralysées paralyser ver f p 7.84 13.99 0.18 0.14 par:pas; +paralysés paralyser ver m p 7.84 13.99 0.27 0.68 par:pas; +paralytique paralytique adj s 0.84 1.76 0.82 1.35 +paralytiques paralytique adj m p 0.84 1.76 0.02 0.41 +paramagnétique paramagnétique adj s 0.01 0.00 0.01 0.00 +paramilitaire paramilitaire adj s 0.30 1.01 0.12 0.27 +paramilitaires paramilitaire adj p 0.30 1.01 0.18 0.74 +paramnésie paramnésie nom f s 0.01 0.14 0.01 0.14 +paramètre paramètre nom m s 1.50 0.41 0.07 0.00 +paramètres paramètre nom m p 1.50 0.41 1.43 0.41 +paramédical paramédical adj m s 0.37 0.14 0.30 0.14 +paramédicale paramédical adj f s 0.37 0.14 0.03 0.00 +paramédicaux paramédical adj m p 0.37 0.14 0.04 0.00 +paramétrique paramétrique adj f s 0.01 0.00 0.01 0.00 +parangon parangon nom m s 0.13 1.22 0.12 1.08 +parangonnages parangonnage nom m p 0.00 0.07 0.00 0.07 +parangons parangon nom m p 0.13 1.22 0.01 0.14 +parano parano adj s 4.23 0.47 3.98 0.47 +paranoïa paranoïa nom f s 2.03 1.15 2.03 1.15 +paranoïaque paranoïaque adj s 3.33 0.54 2.97 0.41 +paranoïaques paranoïaque adj p 3.33 0.54 0.35 0.14 +paranoïde paranoïde adj s 0.09 0.27 0.09 0.27 +paranormal paranormal nom m s 0.61 0.07 0.61 0.07 +paranormale paranormal adj f s 2.04 0.07 1.02 0.07 +paranormales paranormal adj f p 2.04 0.07 0.14 0.00 +paranormaux paranormal adj m p 2.04 0.07 0.57 0.00 +paranos parano adj f p 4.23 0.47 0.25 0.00 +parant parer ver 30.50 19.66 0.01 1.28 par:pre; +paranéoplasique paranéoplasique adj m s 0.07 0.00 0.07 0.00 +parapente parapente nom m s 0.31 0.00 0.31 0.00 +parapet parapet nom m s 0.88 12.91 0.73 10.88 +parapets parapet nom m p 0.88 12.91 0.16 2.03 +paraphait parapher ver 0.64 0.74 0.00 0.07 ind:imp:3s; +paraphant parapher ver 0.64 0.74 0.00 0.14 par:pre; +parapharmacie parapharmacie nom f s 0.03 0.07 0.03 0.07 +paraphe paraphe nom m s 0.10 1.55 0.10 1.01 +parapher parapher ver 0.64 0.74 0.06 0.00 inf; +paraphes parapher ver 0.64 0.74 0.02 0.00 ind:pre:2s; +parapheurs parapheur nom m p 0.00 0.07 0.00 0.07 +paraphez parapher ver 0.64 0.74 0.24 0.00 imp:pre:2p;ind:pre:2p; +paraphrasa paraphraser ver 0.24 0.41 0.00 0.07 ind:pas:3s; +paraphrasait paraphraser ver 0.24 0.41 0.00 0.14 ind:imp:3s; +paraphrasant paraphraser ver 0.24 0.41 0.01 0.00 par:pre; +paraphrase paraphrase nom f s 0.12 0.34 0.12 0.27 +paraphraser paraphraser ver 0.24 0.41 0.13 0.14 inf; +paraphrases paraphraser ver 0.24 0.41 0.01 0.00 ind:pre:2s; +paraphrasé paraphraser ver m s 0.24 0.41 0.00 0.07 par:pas; +paraphé parapher ver m s 0.64 0.74 0.25 0.34 par:pas; +paraphée parapher ver f s 0.64 0.74 0.03 0.07 par:pas; +paraphés parapher ver m p 0.64 0.74 0.02 0.07 par:pas; +paraplégique paraplégique adj s 0.29 0.14 0.25 0.07 +paraplégiques paraplégique adj m p 0.29 0.14 0.04 0.07 +parapluie parapluie nom m s 7.38 16.28 6.37 12.50 +parapluies parapluie nom m p 7.38 16.28 1.01 3.78 +parapsychique parapsychique adj s 0.04 0.00 0.04 0.00 +parapsychologie parapsychologie nom f s 0.61 0.14 0.61 0.14 +parapsychologique parapsychologique adj s 0.03 0.07 0.02 0.00 +parapsychologiques parapsychologique adj m p 0.03 0.07 0.01 0.07 +parapsychologue parapsychologue nom s 0.09 0.00 0.06 0.00 +parapsychologues parapsychologue nom p 0.09 0.00 0.03 0.00 +parareligieuse parareligieux adj f s 0.10 0.00 0.10 0.00 +paras para nom m p 3.23 1.49 0.90 0.61 +parascolaire parascolaire adj m s 0.04 0.07 0.00 0.07 +parascolaires parascolaire adj p 0.04 0.07 0.04 0.00 +parascève parascève nom f s 0.00 0.47 0.00 0.47 +parasitaire parasitaire adj s 0.25 0.81 0.23 0.61 +parasitaires parasitaire adj p 0.25 0.81 0.03 0.20 +parasitait parasiter ver 0.39 0.27 0.00 0.07 ind:imp:3s; +parasite parasite nom m s 8.72 4.53 4.66 1.22 +parasitent parasiter ver 0.39 0.27 0.12 0.00 ind:pre:3p; +parasiter parasiter ver 0.39 0.27 0.07 0.07 inf; +parasites parasite nom m p 8.72 4.53 4.06 3.31 +parasiticide parasiticide adj m s 0.10 0.00 0.10 0.00 +parasitisme parasitisme nom m s 0.01 0.74 0.01 0.74 +parasitologie parasitologie nom f s 0.00 0.07 0.00 0.07 +parasitose parasitose nom f s 0.01 0.00 0.01 0.00 +parasité parasiter ver m s 0.39 0.27 0.05 0.07 par:pas; +parasitée parasiter ver f s 0.39 0.27 0.01 0.07 par:pas; +parasités parasiter ver m p 0.39 0.27 0.06 0.00 par:pas; +parasol parasol nom m s 0.80 6.69 0.72 3.72 +parasols parasol nom m p 0.80 6.69 0.08 2.97 +parathyroïdienne parathyroïdien adj f s 0.01 0.00 0.01 0.00 +paratonnerre paratonnerre nom m s 0.55 0.61 0.41 0.41 +paratonnerres paratonnerre nom m p 0.55 0.61 0.14 0.20 +paravent paravent nom m s 1.77 4.32 1.51 3.85 +paravents paravent nom m p 1.77 4.32 0.26 0.47 +parbleu parbleu ono 1.54 1.96 1.54 1.96 +parc parc nom m s 32.85 43.99 31.02 38.72 +parcage parcage nom m s 0.00 0.07 0.00 0.07 +parce_qu parce_qu con 4.13 2.36 4.13 2.36 +parce_que parce_que con 548.52 327.43 548.52 327.43 +parce parce adv_sup 3.49 0.95 3.49 0.95 +parcellaire parcellaire adj s 0.00 0.34 0.00 0.34 +parcelle parcelle nom f s 2.73 11.15 1.99 7.09 +parcelles parcelle nom f p 2.73 11.15 0.74 4.05 +parchemin parchemin nom m s 3.61 4.80 3.47 3.85 +parchemineuse parchemineux adj f s 0.00 0.07 0.00 0.07 +parchemins parchemin nom m p 3.61 4.80 0.14 0.95 +parcheminé parcheminé adj m s 0.04 1.49 0.03 0.47 +parcheminée parcheminé adj f s 0.04 1.49 0.01 0.47 +parcheminées parcheminé adj f p 0.04 1.49 0.00 0.34 +parcheminés parcheminé adj m p 0.04 1.49 0.00 0.20 +parcimonie parcimonie nom f s 0.22 0.95 0.22 0.95 +parcimonieuse parcimonieux adj f s 0.00 1.55 0.00 0.61 +parcimonieusement parcimonieusement adv 0.00 0.88 0.00 0.88 +parcimonieuses parcimonieux adj f p 0.00 1.55 0.00 0.07 +parcimonieux parcimonieux adj m 0.00 1.55 0.00 0.88 +parcmètre parcmètre nom m s 0.38 0.00 0.22 0.00 +parcmètres parcmètre nom m p 0.38 0.00 0.16 0.00 +parcomètre parcomètre nom m s 0.01 0.00 0.01 0.00 +parcourûmes parcourir ver 15.46 61.82 0.00 0.47 ind:pas:1p; +parcouraient parcourir ver 15.46 61.82 0.16 1.89 ind:imp:3p; +parcourais parcourir ver 15.46 61.82 0.32 1.22 ind:imp:1s; +parcourait parcourir ver 15.46 61.82 0.47 6.28 ind:imp:3s; +parcourant parcourir ver 15.46 61.82 0.50 4.12 par:pre; +parcoure parcourir ver 15.46 61.82 0.06 0.07 sub:pre:1s;sub:pre:3s; +parcourent parcourir ver 15.46 61.82 0.57 1.15 ind:pre:3p; +parcourez parcourir ver 15.46 61.82 0.22 0.07 imp:pre:2p;ind:pre:2p; +parcouriez parcourir ver 15.46 61.82 0.05 0.07 ind:imp:2p; +parcourions parcourir ver 15.46 61.82 0.16 0.14 ind:imp:1p; +parcourir parcourir ver 15.46 61.82 3.50 13.65 inf; +parcourons parcourir ver 15.46 61.82 0.11 0.20 imp:pre:1p;ind:pre:1p; +parcourra parcourir ver 15.46 61.82 0.02 0.00 ind:fut:3s; +parcourrai parcourir ver 15.46 61.82 0.04 0.07 ind:fut:1s; +parcourraient parcourir ver 15.46 61.82 0.01 0.00 cnd:pre:3p; +parcourrais parcourir ver 15.46 61.82 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +parcourrait parcourir ver 15.46 61.82 0.01 0.14 cnd:pre:3s; +parcourrez parcourir ver 15.46 61.82 0.00 0.14 ind:fut:2p; +parcourrions parcourir ver 15.46 61.82 0.10 0.00 cnd:pre:1p; +parcourront parcourir ver 15.46 61.82 0.01 0.00 ind:fut:3p; +parcours parcours nom m 7.42 17.64 7.42 17.64 +parcourt parcourir ver 15.46 61.82 2.30 4.59 ind:pre:3s; +parcouru parcourir ver m s 15.46 61.82 4.74 11.08 par:pas; +parcourue parcourir ver f s 15.46 61.82 0.38 2.97 par:pas; +parcourues parcourir ver f p 15.46 61.82 0.03 1.42 par:pas; +parcoururent parcourir ver 15.46 61.82 0.02 1.55 ind:pas:3p; +parcourus parcourir ver m p 15.46 61.82 0.20 2.77 ind:pas:1s;par:pas; +parcourut parcourir ver 15.46 61.82 0.15 6.49 ind:pas:3s; +parcs parc nom m p 32.85 43.99 1.84 5.27 +pardessus pardessus nom m 1.43 9.05 1.43 9.05 +pardi pardi ono 2.66 6.22 2.66 6.22 +pardieu pardieu ono 0.54 0.20 0.54 0.20 +pardingue pardingue nom m s 0.00 0.07 0.00 0.07 +pardon pardon ono 209.13 18.04 209.13 18.04 +pardonna pardonner ver 139.45 44.59 0.04 0.54 ind:pas:3s; +pardonnable pardonnable adj m s 0.03 0.20 0.03 0.20 +pardonnaient pardonner ver 139.45 44.59 0.00 0.68 ind:imp:3p; +pardonnais pardonner ver 139.45 44.59 0.07 0.07 ind:imp:1s;ind:imp:2s; +pardonnait pardonner ver 139.45 44.59 0.33 2.64 ind:imp:3s; +pardonnant pardonner ver 139.45 44.59 0.05 0.20 par:pre; +pardonne pardonner ver 139.45 44.59 53.11 12.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +pardonnent pardonner ver 139.45 44.59 1.09 0.81 ind:pre:3p; +pardonner pardonner ver 139.45 44.59 21.71 11.49 inf;; +pardonnera pardonner ver 139.45 44.59 3.72 0.74 ind:fut:3s; +pardonnerai pardonner ver 139.45 44.59 4.58 0.81 ind:fut:1s; +pardonneraient pardonner ver 139.45 44.59 0.13 0.07 cnd:pre:3p; +pardonnerais pardonner ver 139.45 44.59 1.02 0.20 cnd:pre:1s;cnd:pre:2s; +pardonnerait pardonner ver 139.45 44.59 0.55 1.08 cnd:pre:3s; +pardonneras pardonner ver 139.45 44.59 1.45 0.14 ind:fut:2s; +pardonnerez pardonner ver 139.45 44.59 0.66 0.81 ind:fut:2p; +pardonneriez pardonner ver 139.45 44.59 0.04 0.00 cnd:pre:2p; +pardonnerons pardonner ver 139.45 44.59 0.02 0.07 ind:fut:1p; +pardonneront pardonner ver 139.45 44.59 0.63 0.27 ind:fut:3p; +pardonnes pardonner ver 139.45 44.59 4.41 0.54 ind:pre:2s;sub:pre:2s; +pardonnez pardonner ver 139.45 44.59 34.31 5.74 imp:pre:2p;ind:pre:2p; +pardonniez pardonner ver 139.45 44.59 0.16 0.07 ind:imp:2p; +pardonnions pardonner ver 139.45 44.59 0.02 0.20 ind:imp:1p; +pardonnons pardonner ver 139.45 44.59 1.02 0.07 imp:pre:1p;ind:pre:1p; +pardonnât pardonner ver 139.45 44.59 0.00 0.07 sub:imp:3s; +pardonnèrent pardonner ver 139.45 44.59 0.02 0.07 ind:pas:3p; +pardonné pardonner ver m s 139.45 44.59 8.31 4.32 par:pas; +pardonnée pardonner ver f s 139.45 44.59 1.18 0.27 par:pas; +pardonnées pardonner ver f p 139.45 44.59 0.02 0.07 par:pas; +pardonnés pardonner ver m p 139.45 44.59 0.80 0.27 par:pas; +pardons pardon nom m p 55.62 26.89 0.92 0.81 +pare_balle pare_balle adj s 0.13 0.00 0.13 0.00 +pare_balles pare_balles adj 1.92 0.34 1.92 0.34 +pare_boue pare_boue nom m 0.04 0.00 0.04 0.00 +pare_brise pare_brise nom m 4.12 7.16 4.08 7.16 +pare_brise pare_brise nom m p 4.12 7.16 0.04 0.00 +pare_chocs pare_chocs nom m 1.85 1.82 1.85 1.82 +pare_feu pare_feu nom m 0.24 0.07 0.24 0.07 +pare_feux pare_feux nom m p 0.05 0.00 0.05 0.00 +pare_soleil pare_soleil nom m 0.26 0.54 0.26 0.54 +pare_éclats pare_éclats nom m 0.00 0.07 0.00 0.07 +pare_étincelles pare_étincelles nom m 0.00 0.07 0.00 0.07 +pare parer ver 30.50 19.66 1.64 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pareil pareil adj m s 133.45 149.66 95.18 70.47 +pareille pareil adj f s 133.45 149.66 21.01 41.22 +pareillement pareillement adv 1.57 3.72 1.57 3.72 +pareilles pareil adj f p 133.45 149.66 6.97 16.82 +pareils pareil adj m p 133.45 149.66 10.29 21.15 +parement parement nom m s 0.03 1.76 0.03 0.00 +parements parement nom m p 0.03 1.76 0.00 1.76 +parenchyme parenchyme nom m s 0.01 0.00 0.01 0.00 +parent parent nom m s 188.38 146.35 10.03 4.53 +parentage parentage nom m s 0.00 0.07 0.00 0.07 +parental parental adj m s 1.65 0.81 0.50 0.07 +parentale parental adj f s 1.65 0.81 0.72 0.61 +parentales parental adj f p 1.65 0.81 0.10 0.07 +parentaux parental adj m p 1.65 0.81 0.32 0.07 +parente parent nom f s 188.38 146.35 1.12 2.30 +parentes parent nom f p 188.38 146.35 0.20 0.81 +parenthèse parenthèse nom f s 1.80 9.32 1.00 5.47 +parenthèses parenthèse nom f p 1.80 9.32 0.80 3.85 +parents parent nom m p 188.38 146.35 177.04 138.72 +parentèle parentèle nom f s 0.11 0.34 0.11 0.27 +parentèles parentèle nom f p 0.11 0.34 0.00 0.07 +parenté parenté nom f s 1.42 6.42 1.42 5.68 +parentés parenté nom f p 1.42 6.42 0.00 0.74 +parer parer ver 30.50 19.66 0.69 5.14 inf; +parerai parer ver 30.50 19.66 0.00 0.07 ind:fut:1s; +parerait parer ver 30.50 19.66 0.00 0.07 cnd:pre:3s; +paressaient paresser ver 0.42 0.95 0.00 0.07 ind:imp:3p; +paressais paresser ver 0.42 0.95 0.02 0.07 ind:imp:1s;ind:imp:2s; +paressait paresser ver 0.42 0.95 0.00 0.20 ind:imp:3s; +paressant paresser ver 0.42 0.95 0.01 0.07 par:pre; +paresse paresse nom f s 2.65 12.43 2.54 11.89 +paresser paresser ver 0.42 0.95 0.25 0.34 inf; +paresses paresse nom f p 2.65 12.43 0.10 0.54 +paresseuse paresseux adj f s 5.46 10.34 2.08 3.65 +paresseusement paresseusement adv 0.01 2.97 0.01 2.97 +paresseuses paresseux adj f p 5.46 10.34 0.20 0.41 +paresseux paresseux adj m 5.46 10.34 3.19 6.28 +paressions paresser ver 0.42 0.95 0.10 0.07 ind:imp:1p; +paressé paresser ver m s 0.42 0.95 0.02 0.14 par:pas; +paresthésie paresthésie nom f s 0.05 0.00 0.05 0.00 +pareur pareur nom m s 0.01 0.00 0.01 0.00 +parez parer ver 30.50 19.66 1.44 0.14 imp:pre:2p;ind:pre:2p; +parfaire parfaire ver 60.06 19.86 0.58 2.64 inf; +parfais parfaire ver 60.06 19.86 0.09 0.00 imp:pre:2s;ind:pre:1s; +parfaisais parfaire ver 60.06 19.86 0.00 0.07 ind:imp:1s; +parfaisait parfaire ver 60.06 19.86 0.00 0.07 ind:imp:3s; +parfait parfaire ver m s 60.06 19.86 45.92 11.89 ind:pre:3s;par:pas; +parfaite parfait adj f s 58.77 43.45 19.32 18.45 +parfaitement parfaitement adv 45.48 71.08 45.48 71.08 +parfaites parfait adj f p 58.77 43.45 1.52 2.03 +parfaits parfait adj m p 58.77 43.45 2.36 2.30 +parferont parfaire ver 60.06 19.86 0.00 0.07 ind:fut:3p; +parfit parfaire ver 60.06 19.86 0.00 0.07 ind:pas:3s; +parfois parfois adv_sup 152.86 287.36 152.86 287.36 +parfum parfum nom m s 30.00 65.74 24.44 52.36 +parfuma parfumer ver 1.89 10.27 0.00 0.41 ind:pas:3s; +parfumaient parfumer ver 1.89 10.27 0.00 0.07 ind:imp:3p; +parfumait parfumer ver 1.89 10.27 0.01 1.22 ind:imp:3s; +parfume parfumer ver 1.89 10.27 0.14 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +parfument parfumer ver 1.89 10.27 0.06 0.41 ind:pre:3p; +parfumer parfumer ver 1.89 10.27 0.27 0.95 inf; +parfumera parfumer ver 1.89 10.27 0.00 0.07 ind:fut:3s; +parfumerie parfumerie nom f s 0.47 1.42 0.47 1.22 +parfumeries parfumerie nom f p 0.47 1.42 0.00 0.20 +parfumeur parfumeur nom m s 0.13 1.15 0.12 0.47 +parfumeurs parfumeur nom m p 0.13 1.15 0.00 0.41 +parfumeuse parfumeur nom f s 0.13 1.15 0.01 0.27 +parfumez parfumer ver 1.89 10.27 0.11 0.00 imp:pre:2p;ind:pre:2p; +parfums parfum nom m p 30.00 65.74 5.55 13.38 +parfumé parfumé adj m s 2.24 10.20 0.64 3.99 +parfumée parfumé adj f s 2.24 10.20 1.12 3.51 +parfumées parfumé adj f p 2.24 10.20 0.23 1.89 +parfumés parfumé adj m p 2.24 10.20 0.25 0.81 +pari pari nom m s 26.61 12.57 13.93 4.59 +paria paria nom m s 1.12 2.09 0.82 1.35 +pariade pariade nom f s 0.01 0.14 0.01 0.14 +pariaient parier ver 81.96 15.61 0.15 0.20 ind:imp:3p; +pariais parier ver 81.96 15.61 0.25 0.07 ind:imp:1s;ind:imp:2s; +pariait parier ver 81.96 15.61 0.48 0.27 ind:imp:3s; +pariant parier ver 81.96 15.61 0.52 0.07 par:pre; +parias paria nom m p 1.12 2.09 0.29 0.74 +parie parier ver 81.96 15.61 52.59 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +parient parier ver 81.96 15.61 0.33 0.00 ind:pre:3p; +parier parier ver 81.96 15.61 9.93 2.70 ind:pre:2p;inf; +parierai parier ver 81.96 15.61 0.51 0.07 ind:fut:1s; +parierais parier ver 81.96 15.61 1.81 1.01 cnd:pre:1s;cnd:pre:2s; +parierait parier ver 81.96 15.61 0.02 0.14 cnd:pre:3s; +parieriez parier ver 81.96 15.61 0.05 0.00 cnd:pre:2p; +paries parier ver 81.96 15.61 3.61 0.54 ind:pre:2s; +parieur parieur nom m s 0.81 0.54 0.39 0.07 +parieurs parieur nom m p 0.81 0.54 0.41 0.47 +parieuse parieur nom f s 0.81 0.54 0.01 0.00 +pariez parier ver 81.96 15.61 1.69 0.14 imp:pre:2p;ind:pre:2p; +parigot parigot adj m s 0.40 1.22 0.27 0.81 +parigote parigot nom f s 0.00 1.01 0.00 0.20 +parigotes parigot adj f p 0.40 1.22 0.00 0.14 +parigots parigot adj m p 0.40 1.22 0.14 0.14 +parions parier ver 81.96 15.61 0.38 0.20 imp:pre:1p;ind:imp:1p;ind:pre:1p; +paris_brest paris_brest nom m 0.19 0.20 0.19 0.20 +paris pari nom m p 26.61 12.57 12.68 7.97 +parisien parisien adj m s 2.73 30.61 0.94 12.09 +parisienne parisien adj f s 2.73 30.61 1.11 10.07 +parisiennes parisien adj f p 2.73 30.61 0.16 2.30 +parisiens parisien nom m p 2.20 9.12 1.36 6.49 +paritaire paritaire adj s 0.00 0.07 0.00 0.07 +parité parité nom f s 0.31 0.14 0.31 0.14 +parié parier ver m s 81.96 15.61 9.61 1.42 par:pas; +pariétal pariétal adj m s 0.26 0.20 0.20 0.14 +pariétale pariétal adj f s 0.26 0.20 0.04 0.07 +pariétaux pariétal adj m p 0.26 0.20 0.02 0.00 +parjurant parjurer ver 0.79 0.47 0.00 0.07 par:pre; +parjure parjure nom m s 1.35 0.74 1.16 0.68 +parjurer parjurer ver 0.79 0.47 0.14 0.34 ind:pre:2p;inf; +parjurera parjurer ver 0.79 0.47 0.01 0.00 ind:fut:3s; +parjures parjure nom m p 1.35 0.74 0.19 0.07 +parjuré parjurer ver m s 0.79 0.47 0.21 0.00 par:pas; +parjurée parjurer ver f s 0.79 0.47 0.03 0.00 par:pas; +parka parka nom m s 0.28 0.41 0.28 0.41 +parking parking nom m s 18.23 9.86 17.38 8.65 +parkings parking nom m p 18.23 9.86 0.84 1.22 +parkinson parkinson nom m 0.03 0.07 0.03 0.07 +parkinsonien parkinsonien adj m s 0.07 0.14 0.04 0.07 +parkinsonienne parkinsonien adj f s 0.07 0.14 0.00 0.07 +parkinsoniens parkinsonien adj m p 0.07 0.14 0.03 0.00 +parla parler ver 1970.58 1086.01 2.71 38.99 ind:pas:3s; +parlai parler ver 1970.58 1086.01 0.59 3.78 ind:pas:1s; +parlaient parler ver 1970.58 1086.01 5.94 40.27 ind:imp:3p; +parlais parler ver 1970.58 1086.01 32.98 19.53 ind:imp:1s;ind:imp:2s; +parlait parler ver 1970.58 1086.01 44.37 157.09 ind:imp:3s; +parlant parler ver 1970.58 1086.01 15.70 36.15 par:pre; +parlante parlant adj f s 5.62 5.47 1.01 0.68 +parlantes parlant adj f p 5.62 5.47 0.46 0.14 +parlants parlant adj m p 5.62 5.47 0.12 0.34 +parlas parler ver 1970.58 1086.01 0.01 0.07 ind:pas:2s; +parlassent parler ver 1970.58 1086.01 0.00 0.20 sub:imp:3p; +parlasses parler ver 1970.58 1086.01 0.00 0.07 sub:imp:2s; +parle parler ver 1970.58 1086.01 451.68 168.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +parlement parlement nom m s 4.71 5.68 4.71 5.54 +parlementaire parlementaire adj s 0.77 3.72 0.72 2.70 +parlementaires parlementaire nom p 0.27 2.91 0.16 2.70 +parlementait parlementer ver 0.82 1.69 0.00 0.34 ind:imp:3s; +parlementant parlementer ver 0.82 1.69 0.00 0.07 par:pre; +parlementarisme parlementarisme nom m s 0.00 0.20 0.00 0.20 +parlementariste parlementariste adj s 0.00 0.07 0.00 0.07 +parlemente parlementer ver 0.82 1.69 0.15 0.27 ind:pre:1s;ind:pre:3s; +parlementent parlementer ver 0.82 1.69 0.01 0.14 ind:pre:3p; +parlementer parlementer ver 0.82 1.69 0.61 0.74 inf; +parlementons parlementer ver 0.82 1.69 0.01 0.07 imp:pre:1p;ind:pre:1p; +parlements parlement nom m p 4.71 5.68 0.00 0.14 +parlementèrent parlementer ver 0.82 1.69 0.00 0.07 ind:pas:3p; +parlementé parlementer ver m s 0.82 1.69 0.04 0.00 par:pas; +parlent parler ver 1970.58 1086.01 32.08 29.39 ind:pre:3p;sub:pre:3p; +parler parler ver 1970.58 1086.01 728.02 341.82 inf;;inf;;inf;;inf;; +parlera parler ver 1970.58 1086.01 23.70 6.22 ind:fut:3s; +parlerai parler ver 1970.58 1086.01 22.47 8.24 ind:fut:1s; +parleraient parler ver 1970.58 1086.01 0.14 1.42 cnd:pre:3p; +parlerais parler ver 1970.58 1086.01 3.96 2.03 cnd:pre:1s;cnd:pre:2s; +parlerait parler ver 1970.58 1086.01 3.17 6.49 cnd:pre:3s; +parleras parler ver 1970.58 1086.01 3.89 1.28 ind:fut:2s; +parlerez parler ver 1970.58 1086.01 2.71 0.47 ind:fut:2p; +parlerie parlerie nom f s 0.00 0.07 0.00 0.07 +parleriez parler ver 1970.58 1086.01 0.50 0.14 cnd:pre:2p; +parlerions parler ver 1970.58 1086.01 0.26 0.47 cnd:pre:1p; +parlerons parler ver 1970.58 1086.01 6.53 2.03 ind:fut:1p; +parleront parler ver 1970.58 1086.01 1.75 1.22 ind:fut:3p; +parlers parler nom m p 11.58 9.05 0.00 0.14 +parles parler ver 1970.58 1086.01 152.20 35.34 ind:pre:2s;sub:pre:2s; +parleur parleur nom m s 1.36 2.03 1.20 1.76 +parleurs parleur nom m p 1.36 2.03 0.16 0.20 +parleuse parleur nom f s 1.36 2.03 0.00 0.07 +parlez parler ver 1970.58 1086.01 120.79 22.03 imp:pre:2p;ind:pre:2p; +parliez parler ver 1970.58 1086.01 10.93 3.11 ind:imp:2p;sub:pre:2p; +parlions parler ver 1970.58 1086.01 6.69 12.16 ind:imp:1p; +parloir parloir nom m s 2.64 4.39 2.64 4.19 +parloirs parloir nom m p 2.64 4.39 0.00 0.20 +parlâmes parler ver 1970.58 1086.01 0.02 1.55 ind:pas:1p; +parlons parler ver 1970.58 1086.01 46.28 16.22 imp:pre:1p;ind:pre:1p; +parlophone parlophone nom s 0.00 0.34 0.00 0.34 +parlât parler ver 1970.58 1086.01 0.10 3.11 sub:imp:3s; +parlotaient parloter ver 0.00 0.14 0.00 0.07 ind:imp:3p; +parlote parlote nom f s 0.27 1.35 0.24 0.27 +parloter parloter ver 0.00 0.14 0.00 0.07 inf; +parlotes parlote nom f p 0.27 1.35 0.03 1.08 +parlotte parlotte nom f s 0.19 0.47 0.16 0.14 +parlottes parlotte nom f p 0.19 0.47 0.04 0.34 +parlèrent parler ver 1970.58 1086.01 0.08 7.77 ind:pas:3p; +parlé parler ver m s 1970.58 1086.01 248.94 118.04 par:pas;par:pas;par:pas;par:pas; +parlée parler ver f s 1970.58 1086.01 0.39 0.27 par:pas; +parlées parler ver f p 1970.58 1086.01 0.30 0.07 par:pas; +parlés parler ver m p 1970.58 1086.01 0.65 0.20 par:pas; +parme parme adj 0.01 0.81 0.01 0.81 +parmentier parmentier nom m s 0.04 0.27 0.04 0.27 +parmentures parmenture nom f p 0.00 0.07 0.00 0.07 +parmesan parmesan nom m s 0.66 0.54 0.66 0.47 +parmesane parmesan adj f s 0.18 0.20 0.01 0.07 +parmesans parmesan nom m p 0.66 0.54 0.00 0.07 +parmi parmi pre 69.17 171.96 69.17 171.96 +parmélies parmélie nom f p 0.00 0.20 0.00 0.20 +parménidien parménidien adj m s 0.00 0.07 0.00 0.07 +parnassienne parnassien adj f s 0.00 0.14 0.00 0.14 +parodiai parodier ver 0.21 1.55 0.00 0.14 ind:pas:1s; +parodiait parodier ver 0.21 1.55 0.00 0.20 ind:imp:3s; +parodiant parodier ver 0.21 1.55 0.04 0.34 par:pre; +parodie parodie nom f s 1.13 2.43 1.09 2.16 +parodier parodier ver 0.21 1.55 0.01 0.61 inf; +parodies parodie nom f p 1.13 2.43 0.05 0.27 +parodique parodique adj s 0.06 1.08 0.05 0.95 +parodiquement parodiquement adv 0.00 0.14 0.00 0.14 +parodiques parodique adj m p 0.06 1.08 0.01 0.14 +parodontal parodontal adj m s 0.02 0.00 0.01 0.00 +parodontale parodontal adj f s 0.02 0.00 0.01 0.00 +paroi paroi nom f s 4.88 30.00 3.01 16.01 +paroir paroir nom m s 0.00 0.14 0.00 0.07 +paroirs paroir nom m p 0.00 0.14 0.00 0.07 +parois paroi nom f p 4.88 30.00 1.87 13.99 +paroisse paroisse nom f s 5.75 6.62 5.42 5.88 +paroisses paroisse nom f p 5.75 6.62 0.33 0.74 +paroissial paroissial adj m s 0.67 1.35 0.24 0.27 +paroissiale paroissial adj f s 0.67 1.35 0.38 0.61 +paroissiales paroissial adj f p 0.67 1.35 0.00 0.20 +paroissiaux paroissial adj m p 0.67 1.35 0.04 0.27 +paroissien paroissien nom m s 1.06 1.76 0.10 0.14 +paroissienne paroissien nom f s 1.06 1.76 0.02 0.00 +paroissiennes paroissienne nom f p 0.04 0.00 0.04 0.00 +paroissiens paroissien nom m p 1.06 1.76 0.94 1.42 +parole parole nom f s 103.48 178.31 71.07 81.82 +paroles parole nom f p 103.48 178.31 32.41 96.49 +paroli paroli nom m s 0.00 0.07 0.00 0.07 +parolier parolier nom m s 0.07 0.07 0.06 0.07 +parolière parolier nom f s 0.07 0.07 0.01 0.00 +paronomasie paronomasie nom f s 0.00 0.07 0.00 0.07 +paros paros nom m 0.27 1.08 0.27 1.08 +parotidienne parotidien adj f s 0.01 0.00 0.01 0.00 +parâtre parâtre nom m s 0.02 0.00 0.02 0.00 +parousie parousie nom f s 0.00 0.27 0.00 0.27 +paroxysme paroxysme nom m s 0.27 3.24 0.27 3.18 +paroxysmes paroxysme nom m p 0.27 3.24 0.00 0.07 +paroxysmique paroxysmique adj f s 0.01 0.07 0.01 0.00 +paroxysmiques paroxysmique adj p 0.01 0.07 0.00 0.07 +paroxystique paroxystique adj s 0.01 0.20 0.01 0.14 +paroxystiques paroxystique adj m p 0.01 0.20 0.00 0.07 +parpaillot parpaillot nom m s 0.00 0.27 0.00 0.14 +parpaillote parpaillot nom f s 0.00 0.27 0.00 0.07 +parpaillotes parpaillot nom f p 0.00 0.27 0.00 0.07 +parpaing parpaing nom m s 0.64 1.42 0.22 0.20 +parpaings parpaing nom m p 0.64 1.42 0.42 1.22 +parquait parquer ver 0.41 2.36 0.00 0.14 ind:imp:3s; +parque parquer ver 0.41 2.36 0.06 0.14 imp:pre:2s;ind:pre:3s; +parquent parquer ver 0.41 2.36 0.14 0.14 ind:pre:3p; +parquer parquer ver 0.41 2.36 0.09 0.20 inf; +parquet parquet nom m s 4.43 22.43 4.12 18.51 +parquetage parquetage nom m s 0.00 0.14 0.00 0.14 +parqueteur parqueteur nom m s 0.00 0.14 0.00 0.07 +parqueteuse parqueteur nom f s 0.00 0.14 0.00 0.07 +parquets parquet nom m p 4.43 22.43 0.32 3.92 +parqueté parqueter ver m s 0.00 0.61 0.00 0.07 par:pas; +parquetée parqueter ver f s 0.00 0.61 0.00 0.47 par:pas; +parquetées parqueter ver f p 0.00 0.61 0.00 0.07 par:pas; +parquez parquer ver 0.41 2.36 0.02 0.00 imp:pre:2p; +parqué parquer ver m s 0.41 2.36 0.05 0.20 par:pas; +parquée parqué adj f s 0.01 0.14 0.01 0.00 +parquées parquer ver f p 0.41 2.36 0.02 0.20 par:pas; +parqués parquer ver m p 0.41 2.36 0.02 1.28 par:pas; +parr parr nom m s 0.12 0.14 0.12 0.14 +parrain parrain nom m s 10.37 7.64 9.76 7.50 +parrainage parrainage nom m s 0.11 0.14 0.11 0.14 +parrainait parrainer ver 0.96 0.27 0.04 0.14 ind:imp:3s; +parrainant parrainer ver 0.96 0.27 0.01 0.07 par:pre; +parraine parrainer ver 0.96 0.27 0.24 0.00 ind:pre:1s;ind:pre:3s; +parrainent parrainer ver 0.96 0.27 0.01 0.00 ind:pre:3p; +parrainer parrainer ver 0.96 0.27 0.26 0.07 inf; +parrainerai parrainer ver 0.96 0.27 0.01 0.00 ind:fut:1s; +parraineuse parraineur nom f s 0.00 0.07 0.00 0.07 +parrains parrain nom m p 10.37 7.64 0.61 0.14 +parrainé parrainer ver m s 0.96 0.27 0.33 0.00 par:pas; +parrainée parrainer ver f s 0.96 0.27 0.03 0.00 par:pas; +parrainés parrainer ver m p 0.96 0.27 0.03 0.00 par:pas; +parricide parricide nom s 0.56 0.20 0.56 0.20 +parricides parricide adj m p 0.01 0.14 0.00 0.14 +pars partir ver 1111.97 485.68 109.45 14.53 imp:pre:2s;ind:pre:1s;ind:pre:2s; +parsec parsec nom m s 0.27 0.07 0.01 0.00 +parsecs parsec nom m p 0.27 0.07 0.25 0.07 +parsemaient parsemer ver 0.35 7.36 0.00 0.68 ind:imp:3p; +parsemant parsemer ver 0.35 7.36 0.01 0.61 par:pre; +parsemer parsemer ver 0.35 7.36 0.01 0.07 inf; +parsemé parsemer ver m s 0.35 7.36 0.10 2.09 par:pas; +parsemée parsemer ver f s 0.35 7.36 0.19 1.76 par:pas; +parsemées parsemer ver f p 0.35 7.36 0.00 0.54 par:pas; +parsemés parsemer ver m p 0.35 7.36 0.01 0.88 par:pas; +parsi parsi adj m s 0.27 0.00 0.27 0.00 +parsis parsi nom m p 0.02 0.14 0.00 0.14 +parsème parsemer ver 0.35 7.36 0.00 0.14 ind:pre:3s; +parsèment parsemer ver 0.35 7.36 0.03 0.61 ind:pre:3p; +part_time part_time nom f s 0.00 0.14 0.00 0.14 +part part nom s 305.89 320.41 299.31 306.22 +partîmes partir ver 1111.97 485.68 0.26 1.76 ind:pas:1p; +partît partir ver 1111.97 485.68 0.00 0.47 sub:imp:3s; +partage partager ver 79.09 78.99 16.43 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +partagea partager ver 79.09 78.99 0.03 1.22 ind:pas:3s; +partageable partageable adj s 0.01 0.07 0.01 0.07 +partageai partager ver 79.09 78.99 0.00 0.41 ind:pas:1s; +partageaient partager ver 79.09 78.99 0.61 4.32 ind:imp:3p; +partageais partager ver 79.09 78.99 0.80 2.77 ind:imp:1s;ind:imp:2s; +partageait partager ver 79.09 78.99 1.74 11.62 ind:imp:3s; +partageant partager ver 79.09 78.99 0.57 2.03 par:pre; +partagent partager ver 79.09 78.99 3.44 3.11 ind:pre:3p; +partageâmes partager ver 79.09 78.99 0.02 0.07 ind:pas:1p; +partageons partager ver 79.09 78.99 3.48 1.15 imp:pre:1p;ind:pre:1p; +partageât partager ver 79.09 78.99 0.00 0.47 sub:imp:3s; +partager partager ver 79.09 78.99 34.05 24.93 inf; +partagera partager ver 79.09 78.99 1.42 0.14 ind:fut:3s; +partagerai partager ver 79.09 78.99 0.66 0.20 ind:fut:1s; +partageraient partager ver 79.09 78.99 0.15 0.41 cnd:pre:3p; +partagerais partager ver 79.09 78.99 0.61 0.47 cnd:pre:1s;cnd:pre:2s; +partagerait partager ver 79.09 78.99 0.33 0.54 cnd:pre:3s; +partageras partager ver 79.09 78.99 0.29 0.00 ind:fut:2s; +partagerez partager ver 79.09 78.99 0.42 0.00 ind:fut:2p; +partageriez partager ver 79.09 78.99 0.09 0.00 cnd:pre:2p; +partagerions partager ver 79.09 78.99 0.04 0.07 cnd:pre:1p; +partagerons partager ver 79.09 78.99 0.69 0.20 ind:fut:1p; +partageront partager ver 79.09 78.99 0.11 0.20 ind:fut:3p; +partages partager ver 79.09 78.99 1.63 0.14 ind:pre:2s; +partageur partageur adj m s 0.02 0.07 0.02 0.00 +partageurs partageur adj m p 0.02 0.07 0.00 0.07 +partageuse partageux adj f s 0.01 0.07 0.01 0.07 +partageux partageux nom m 0.00 0.07 0.00 0.07 +partagez partager ver 79.09 78.99 2.54 0.20 imp:pre:2p;ind:pre:2p; +partagiez partager ver 79.09 78.99 0.21 0.00 ind:imp:2p; +partagions partager ver 79.09 78.99 0.80 1.28 ind:imp:1p; +partagèrent partager ver 79.09 78.99 0.12 1.01 ind:pas:3p; +partagé partager ver m s 79.09 78.99 5.73 8.51 par:pas; +partagée partager ver f s 79.09 78.99 1.01 3.04 par:pas; +partagées partager ver f p 79.09 78.99 0.21 1.35 par:pas; +partagés partager ver m p 79.09 78.99 0.85 1.49 par:pas; +partaient partir ver 1111.97 485.68 1.58 11.62 ind:imp:3p; +partais partir ver 1111.97 485.68 6.69 5.41 ind:imp:1s;ind:imp:2s; +partait partir ver 1111.97 485.68 8.52 25.81 ind:imp:3s; +partance partance nom f s 0.77 1.76 0.77 1.76 +partant partir ver 1111.97 485.68 6.90 13.04 par:pre; +partante partant adj f s 5.07 1.82 1.25 0.20 +partantes partant adj f p 5.07 1.82 0.19 0.07 +partants partant adj m p 5.07 1.82 0.55 0.20 +parte partir ver 1111.97 485.68 22.87 7.84 sub:pre:1s;sub:pre:3s; +partenaire_robot partenaire_robot nom s 0.01 0.00 0.01 0.00 +partenaire partenaire nom s 28.54 15.00 22.22 10.47 +partenaires partenaire nom p 28.54 15.00 6.33 4.53 +partenariat partenariat nom m s 1.47 0.07 1.47 0.07 +partent partir ver 1111.97 485.68 14.19 8.45 ind:pre:3p; +parterre parterre nom m s 2.76 6.82 2.31 4.05 +parterres parterre nom m p 2.76 6.82 0.45 2.77 +partes partir ver 1111.97 485.68 7.50 0.95 sub:pre:2s; +partez partir ver 1111.97 485.68 73.82 6.62 imp:pre:2p;ind:pre:2p; +parthe parthe adj s 0.00 1.15 0.00 0.95 +parthes parthe adj p 0.00 1.15 0.00 0.20 +parthique parthique adj s 0.00 0.07 0.00 0.07 +parthénogenèse parthénogenèse nom f s 0.04 0.07 0.04 0.07 +parthénogénèse parthénogénèse nom f s 0.00 0.07 0.00 0.07 +parthénogénétique parthénogénétique adj m s 0.15 0.00 0.15 0.00 +parti partir ver m s 1111.97 485.68 162.93 58.72 par:pas; +partial partial adj m s 0.51 1.08 0.20 0.81 +partiale partial adj f s 0.51 1.08 0.30 0.20 +partiales partial adj f p 0.51 1.08 0.00 0.07 +partialité partialité nom f s 0.25 1.22 0.25 1.22 +partiaux partial adj m p 0.51 1.08 0.01 0.00 +participa participer ver 33.56 40.07 0.34 0.61 ind:pas:3s; +participai participer ver 33.56 40.07 0.10 0.54 ind:pas:1s; +participaient participer ver 33.56 40.07 0.21 2.36 ind:imp:3p; +participais participer ver 33.56 40.07 0.18 1.15 ind:imp:1s;ind:imp:2s; +participait participer ver 33.56 40.07 0.30 4.73 ind:imp:3s; +participant participer ver 33.56 40.07 0.38 1.22 par:pre; +participante participant nom f s 1.50 2.23 0.04 0.00 +participantes participant nom f p 1.50 2.23 0.04 0.00 +participants participant nom m p 1.50 2.23 1.23 1.96 +participation participation nom f s 3.17 8.58 3.11 8.51 +participations participation nom f p 3.17 8.58 0.05 0.07 +participative participatif adj f s 0.02 0.00 0.02 0.00 +participe participer ver 33.56 40.07 3.29 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +participent participer ver 33.56 40.07 1.47 2.57 ind:pre:3p; +participer participer ver 33.56 40.07 16.02 15.34 inf; +participera participer ver 33.56 40.07 0.49 0.20 ind:fut:3s; +participerai participer ver 33.56 40.07 0.38 0.00 ind:fut:1s; +participeraient participer ver 33.56 40.07 0.03 0.27 cnd:pre:3p; +participerais participer ver 33.56 40.07 0.09 0.07 cnd:pre:1s; +participerait participer ver 33.56 40.07 0.14 0.20 cnd:pre:3s; +participeras participer ver 33.56 40.07 0.16 0.07 ind:fut:2s; +participerez participer ver 33.56 40.07 0.09 0.00 ind:fut:2p; +participerons participer ver 33.56 40.07 0.34 0.00 ind:fut:1p; +participeront participer ver 33.56 40.07 0.13 0.27 ind:fut:3p; +participes participer ver 33.56 40.07 0.67 0.00 ind:pre:2s; +participez participer ver 33.56 40.07 1.25 0.07 imp:pre:2p;ind:pre:2p; +participiez participer ver 33.56 40.07 0.23 0.14 ind:imp:2p; +participions participer ver 33.56 40.07 0.10 0.27 ind:imp:1p; +participons participer ver 33.56 40.07 0.24 0.34 imp:pre:1p;ind:pre:1p; +participât participer ver 33.56 40.07 0.00 0.47 sub:imp:3s; +participèrent participer ver 33.56 40.07 0.01 0.20 ind:pas:3p; +participé participer ver m s 33.56 40.07 6.94 5.07 par:pas; +participés participer ver m p 33.56 40.07 0.01 0.00 par:pas; +particularisme particularisme nom m s 0.00 0.41 0.00 0.14 +particularismes particularisme nom m p 0.00 0.41 0.00 0.27 +particularisées particulariser ver f p 0.00 0.07 0.00 0.07 par:pas; +particularité particularité nom f s 1.16 5.00 0.82 2.50 +particularités particularité nom f p 1.16 5.00 0.34 2.50 +particule particule nom f s 3.46 5.27 0.66 2.03 +particules particule nom f p 3.46 5.27 2.80 3.24 +particulier particulier adj m s 24.91 53.99 13.88 23.65 +particuliers particulier adj m p 24.91 53.99 3.07 6.08 +particulière particulier adj f s 24.91 53.99 6.63 20.00 +particulièrement particulièrement adv 14.78 36.62 14.78 36.62 +particulières particulier adj f p 24.91 53.99 1.33 4.26 +partie partie nom f s 191.19 211.49 177.81 187.97 +partiel partiel adj m s 3.33 2.09 1.19 0.88 +partielle partiel adj f s 3.33 2.09 1.67 0.81 +partiellement partiellement adv 1.03 2.97 1.03 2.97 +partielles partiel adj f p 3.33 2.09 0.41 0.27 +partiels partiel nom m p 1.10 0.27 0.81 0.00 +parties partie nom f p 191.19 211.49 13.39 23.51 +partiez partir ver 1111.97 485.68 5.93 1.42 ind:imp:2p;sub:pre:2p; +partions partir ver 1111.97 485.68 2.24 4.73 ind:imp:1p; +partir partir ver 1111.97 485.68 388.25 167.77 inf; +partira partir ver 1111.97 485.68 12.15 3.18 ind:fut:3s; +partirai partir ver 1111.97 485.68 11.98 3.99 ind:fut:1s; +partiraient partir ver 1111.97 485.68 0.61 0.81 cnd:pre:3p; +partirais partir ver 1111.97 485.68 3.12 2.30 cnd:pre:1s;cnd:pre:2s; +partirait partir ver 1111.97 485.68 2.37 5.47 cnd:pre:3s; +partiras partir ver 1111.97 485.68 4.25 1.01 ind:fut:2s; +partirent partir ver 1111.97 485.68 1.11 5.20 ind:pas:3p; +partirez partir ver 1111.97 485.68 3.31 0.88 ind:fut:2p; +partiriez partir ver 1111.97 485.68 0.27 0.14 cnd:pre:2p; +partirions partir ver 1111.97 485.68 0.34 0.47 cnd:pre:1p; +partirons partir ver 1111.97 485.68 4.76 1.82 ind:fut:1p; +partiront partir ver 1111.97 485.68 1.84 0.61 ind:fut:3p; +partis partir ver m p 1111.97 485.68 46.29 29.66 ind:pas:1s;ind:pas:2s;par:pas; +partisan partisan nom m s 4.75 12.97 1.04 1.69 +partisane partisan adj f s 1.35 2.77 0.20 0.34 +partisanes partisan adj f p 1.35 2.77 0.10 0.20 +partisans partisan nom m p 4.75 12.97 3.70 11.15 +partisse partir ver 1111.97 485.68 0.00 0.07 sub:imp:1s; +partissent partir ver 1111.97 485.68 0.00 0.07 sub:imp:3p; +partit partir ver 1111.97 485.68 4.17 28.78 ind:pas:3s; +partita partita nom f s 0.00 0.20 0.00 0.14 +partitas partita nom f p 0.00 0.20 0.00 0.07 +partitif partitif adj m s 0.00 0.07 0.00 0.07 +partition partition nom f s 3.49 5.95 2.88 3.72 +partitions partition nom f p 3.49 5.95 0.61 2.23 +partner partner nom m s 0.26 0.00 0.26 0.00 +partons partir ver 1111.97 485.68 50.52 7.97 imp:pre:1p;ind:pre:1p;;imp:pre:1p;ind:pre:1p; +partouse partouse nom f s 0.11 0.07 0.11 0.07 +partouser partouser ver 0.01 0.00 0.01 0.00 inf; +partout partout adv_sup 141.94 179.39 141.94 179.39 +partouzait partouzer ver 0.17 0.34 0.00 0.14 ind:imp:3s; +partouzarde partouzard adj f s 0.00 0.20 0.00 0.07 +partouzardes partouzard adj f p 0.00 0.20 0.00 0.07 +partouzards partouzard nom m p 0.01 0.00 0.01 0.00 +partouze partouze nom f s 2.33 2.16 1.95 1.28 +partouzent partouzer ver 0.17 0.34 0.14 0.07 ind:pre:3p; +partouzer partouzer ver 0.17 0.34 0.04 0.14 inf; +partouzes partouze nom f p 2.33 2.16 0.38 0.88 +partouzeur partouzeur nom m s 0.00 0.20 0.00 0.14 +partouzeurs partouzeur nom m p 0.00 0.20 0.00 0.07 +parts part nom f p 305.89 320.41 6.58 14.19 +parturiente parturiente nom f s 0.00 0.34 0.00 0.27 +parturientes parturiente nom f p 0.00 0.34 0.00 0.07 +parturition parturition nom f s 0.01 0.27 0.01 0.14 +parturitions parturition nom f p 0.01 0.27 0.00 0.14 +party party nom f s 1.54 0.81 1.54 0.81 +paré parer ver m s 30.50 19.66 3.62 2.57 par:pas; +paru paraître ver m s 122.14 448.11 5.92 34.12 par:pas; +parée parer ver f s 30.50 19.66 1.21 2.43 par:pas; +parue paraître ver f s 122.14 448.11 0.36 0.61 par:pas; +parées parer ver f p 30.50 19.66 0.19 1.08 par:pas; +parégorique parégorique adj s 0.04 0.34 0.04 0.34 +paréo paréo nom m s 0.01 0.47 0.01 0.20 +paréos paréo nom m p 0.01 0.47 0.00 0.27 +parure parure nom f s 1.00 4.05 0.48 2.70 +parurent paraître ver 122.14 448.11 0.11 7.36 ind:pas:3p; +parures parure nom f p 1.00 4.05 0.52 1.35 +parés parer ver m p 30.50 19.66 2.31 1.62 par:pas; +parus paraître ver m p 122.14 448.11 0.23 0.54 ind:pas:1s;ind:pas:2s;par:pas; +parésie parésie nom f s 0.01 0.00 0.01 0.00 +parussent paraître ver 122.14 448.11 0.00 0.34 sub:imp:3p; +parut paraître ver 122.14 448.11 1.48 71.28 ind:pas:3s; +parution parution nom f s 0.36 1.15 0.36 1.15 +parvînmes parvenir ver 22.73 156.42 0.00 0.47 ind:pas:1p; +parvînt parvenir ver 22.73 156.42 0.01 1.01 sub:imp:3s; +parvenaient parvenir ver 22.73 156.42 0.04 10.68 ind:imp:3p; +parvenais parvenir ver 22.73 156.42 0.30 5.07 ind:imp:1s; +parvenait parvenir ver 22.73 156.42 0.48 25.88 ind:imp:3s; +parvenant parvenir ver 22.73 156.42 0.04 3.65 par:pre; +parvenez parvenir ver 22.73 156.42 0.48 0.20 ind:pre:2p; +parveniez parvenir ver 22.73 156.42 0.07 0.07 ind:imp:2p; +parvenions parvenir ver 22.73 156.42 0.03 0.61 ind:imp:1p; +parvenir parvenir ver 22.73 156.42 6.45 22.70 inf; +parvenons parvenir ver 22.73 156.42 0.52 0.68 imp:pre:1p;ind:pre:1p; +parvenu parvenir ver m s 22.73 156.42 2.63 14.93 par:pas; +parvenue parvenir ver f s 22.73 156.42 0.98 4.53 par:pas; +parvenues parvenir ver f p 22.73 156.42 0.29 1.22 par:pas; +parvenus parvenir ver m p 22.73 156.42 0.81 5.20 par:pas; +parviendra parvenir ver 22.73 156.42 0.80 1.22 ind:fut:3s; +parviendrai parvenir ver 22.73 156.42 0.41 0.54 ind:fut:1s; +parviendraient parvenir ver 22.73 156.42 0.00 0.54 cnd:pre:3p; +parviendrais parvenir ver 22.73 156.42 0.01 0.61 cnd:pre:1s; +parviendrait parvenir ver 22.73 156.42 0.27 3.18 cnd:pre:3s; +parviendras parvenir ver 22.73 156.42 0.12 0.14 ind:fut:2s; +parviendrez parvenir ver 22.73 156.42 0.34 0.07 ind:fut:2p; +parviendrions parvenir ver 22.73 156.42 0.00 0.20 cnd:pre:1p; +parviendrons parvenir ver 22.73 156.42 0.33 0.27 ind:fut:1p; +parviendront parvenir ver 22.73 156.42 0.24 0.54 ind:fut:3p; +parvienne parvenir ver 22.73 156.42 0.62 2.57 sub:pre:1s;sub:pre:3s; +parviennent parvenir ver 22.73 156.42 0.98 6.22 ind:pre:3p; +parviens parvenir ver 22.73 156.42 1.71 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +parvient parvenir ver 22.73 156.42 2.52 12.36 ind:pre:3s; +parvinrent parvenir ver 22.73 156.42 0.04 3.38 ind:pas:3p; +parvins parvenir ver 22.73 156.42 0.24 2.30 ind:pas:1s; +parvinssent parvenir ver 22.73 156.42 0.00 0.14 sub:imp:3p; +parvint parvenir ver 22.73 156.42 0.98 19.39 ind:pas:3s; +parvis parvis nom m 0.19 6.28 0.19 6.28 +pas_de_porte pas_de_porte nom m 0.00 0.20 0.00 0.20 +pas_je pas_je adv 0.01 0.00 0.01 0.00 +pas pas adv_sup 18189.04 8795.20 18188.15 8795.14 +pascal pascal adj m s 0.79 18.24 0.23 17.64 +pascale pascal adj f s 0.79 18.24 0.56 0.41 +pascales pascal adj f p 0.79 18.24 0.00 0.20 +pascalien pascalien adj m s 0.00 0.27 0.00 0.07 +pascaliennes pascalien adj f p 0.00 0.27 0.00 0.14 +pascaliens pascalien adj m p 0.00 0.27 0.00 0.07 +paseo paseo nom m s 0.00 0.88 0.00 0.88 +pasionaria pasionaria nom f s 0.12 0.27 0.02 0.20 +pasionarias pasionaria nom f p 0.12 0.27 0.10 0.07 +paso_doble paso_doble nom m s 0.00 0.07 0.00 0.07 +paso_doble paso_doble nom m 0.69 0.81 0.69 0.81 +paso paso nom m s 0.23 0.14 0.23 0.00 +pasos paso nom m p 0.23 0.14 0.00 0.14 +pasque pasque con 0.05 1.69 0.05 1.69 +pasquins pasquin nom m p 0.00 0.07 0.00 0.07 +passa passer ver 1495.48 1165.27 3.79 82.50 ind:pas:3s; +passable passable adj s 0.36 1.15 0.34 1.01 +passablement passablement adv 0.51 3.72 0.51 3.72 +passables passable adj f p 0.36 1.15 0.02 0.14 +passade passade nom f s 0.82 1.28 0.72 0.95 +passades passade nom f p 0.82 1.28 0.10 0.34 +passage passage nom m s 44.73 154.39 40.20 136.82 +passager passager nom m s 19.23 13.24 3.75 3.24 +passagers passager nom m p 19.23 13.24 14.23 8.31 +passages passage nom m p 44.73 154.39 4.53 17.57 +passagère passager adj f s 5.09 6.82 1.69 3.31 +passagèrement passagèrement adv 0.00 0.74 0.00 0.74 +passagères passager adj f p 5.09 6.82 0.25 0.74 +passai passer ver 1495.48 1165.27 0.25 10.74 ind:pas:1s; +passaient passer ver 1495.48 1165.27 3.44 42.23 ind:imp:3p; +passais passer ver 1495.48 1165.27 13.12 13.92 ind:imp:1s;ind:imp:2s; +passait passer ver 1495.48 1165.27 28.50 131.28 ind:imp:3s; +passant passer ver 1495.48 1165.27 10.91 60.88 par:pre; +passante passant nom f s 2.76 32.57 0.27 1.08 +passantes passant nom f p 2.76 32.57 0.01 0.61 +passants passant nom m p 2.76 32.57 1.82 24.39 +passas passer ver 1495.48 1165.27 0.00 0.14 ind:pas:2s; +passation passation nom f s 0.29 0.34 0.29 0.34 +passavant passavant nom m s 0.44 0.00 0.44 0.00 +passe_boule passe_boule nom m s 0.00 0.07 0.00 0.07 +passe_boules passe_boules nom m 0.00 0.07 0.00 0.07 +passe_crassane passe_crassane nom f 0.00 0.14 0.00 0.14 +passe_droit passe_droit nom m s 0.25 0.47 0.08 0.27 +passe_droit passe_droit nom m p 0.25 0.47 0.17 0.20 +passe_la_moi passe_la_moi nom f s 0.35 0.07 0.35 0.07 +passe_lacet passe_lacet nom m s 0.00 0.20 0.00 0.07 +passe_lacet passe_lacet nom m p 0.00 0.20 0.00 0.14 +passe_montagne passe_montagne nom m s 0.41 1.69 0.39 1.35 +passe_montagne passe_montagne nom m p 0.41 1.69 0.02 0.34 +passe_muraille passe_muraille nom m 0.01 0.07 0.01 0.07 +passe_partout passe_partout nom m 0.45 1.22 0.45 1.22 +passe_passe passe_passe nom m 0.97 1.15 0.97 1.15 +passe_pied passe_pied nom m s 0.00 0.07 0.00 0.07 +passe_plat passe_plat nom m s 0.04 0.14 0.04 0.14 +passe_rose passe_rose nom f p 0.00 0.07 0.00 0.07 +passe_temps passe_temps nom m 4.21 2.77 4.21 2.77 +passe passer ver 1495.48 1165.27 523.58 185.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +passement passement nom m s 0.14 0.07 0.14 0.07 +passementaient passementer ver 0.01 0.20 0.00 0.14 ind:imp:3p; +passementent passementer ver 0.01 0.20 0.00 0.07 ind:pre:3p; +passementerie passementerie nom f s 0.01 1.01 0.01 0.74 +passementeries passementerie nom f p 0.01 1.01 0.00 0.27 +passementier passementier nom m s 0.10 0.14 0.10 0.07 +passementière passementier nom f s 0.10 0.14 0.00 0.07 +passementé passementer ver m s 0.01 0.20 0.01 0.00 par:pas; +passent passer ver 1495.48 1165.27 27.56 37.91 ind:pre:3p;sub:pre:3p; +passepoil passepoil nom m s 0.01 0.14 0.01 0.14 +passeport passeport nom m s 25.55 10.00 19.81 7.16 +passeports passeport nom m p 25.55 10.00 5.75 2.84 +passer passer ver 1495.48 1165.27 345.67 288.78 inf;; +passera passer ver 1495.48 1165.27 39.92 13.99 ind:fut:3s; +passerai passer ver 1495.48 1165.27 15.96 4.39 ind:fut:1s; +passeraient passer ver 1495.48 1165.27 1.19 3.51 cnd:pre:3p; +passerais passer ver 1495.48 1165.27 3.77 2.91 cnd:pre:1s;cnd:pre:2s; +passerait passer ver 1495.48 1165.27 7.09 12.36 cnd:pre:3s; +passeras passer ver 1495.48 1165.27 4.39 1.15 ind:fut:2s; +passereau passereau nom m s 0.55 0.95 0.25 0.34 +passereaux passereau nom m p 0.55 0.95 0.30 0.61 +passerelle passerelle nom f s 4.49 11.49 4.41 8.45 +passerelles passerelle nom f p 4.49 11.49 0.09 3.04 +passerez passer ver 1495.48 1165.27 5.10 1.82 ind:fut:2p; +passeriez passer ver 1495.48 1165.27 0.97 0.20 cnd:pre:2p; +passerions passer ver 1495.48 1165.27 0.22 0.34 cnd:pre:1p; +passerons passer ver 1495.48 1165.27 2.32 2.30 ind:fut:1p; +passeront passer ver 1495.48 1165.27 3.58 1.96 ind:fut:3p; +passeroses passerose nom f p 0.00 0.07 0.00 0.07 +passes passer ver 1495.48 1165.27 21.65 4.39 ind:pre:2s;sub:pre:2s; +passeur passeur nom m s 2.24 2.77 1.65 1.96 +passeurs passeur nom m p 2.24 2.77 0.56 0.74 +passeuse passeur nom f s 2.24 2.77 0.04 0.07 +passez passer ver 1495.48 1165.27 52.84 6.62 imp:pre:2p;ind:pre:2p; +passible passible adj m s 1.04 0.61 0.82 0.34 +passibles passible adj m p 1.04 0.61 0.22 0.27 +passiez passer ver 1495.48 1165.27 2.19 1.08 ind:imp:2p;sub:pre:2p; +passif passif adj m s 4.00 7.23 1.89 1.82 +passiflore passiflore nom f s 0.14 0.07 0.14 0.07 +passifs passif adj m p 4.00 7.23 0.36 0.74 +passim passim adv 0.00 0.07 0.00 0.07 +passing passing nom m s 0.04 0.00 0.04 0.00 +passion passion nom f s 33.78 87.64 30.71 68.72 +passionna passionner ver 5.75 17.50 0.01 0.20 ind:pas:3s; +passionnai passionner ver 5.75 17.50 0.00 0.27 ind:pas:1s; +passionnaient passionner ver 5.75 17.50 0.12 0.27 ind:imp:3p; +passionnais passionner ver 5.75 17.50 0.00 0.34 ind:imp:1s;ind:imp:2s; +passionnait passionner ver 5.75 17.50 0.11 2.57 ind:imp:3s; +passionnant passionnant adj m s 8.93 7.03 6.17 4.19 +passionnante passionnant adj f s 8.93 7.03 2.23 1.42 +passionnantes passionnant adj f p 8.93 7.03 0.30 0.95 +passionnants passionnant adj m p 8.93 7.03 0.23 0.47 +passionne passionner ver 5.75 17.50 1.16 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +passionnel passionnel adj m s 1.43 3.92 1.05 1.89 +passionnelle passionnel adj f s 1.43 3.92 0.13 1.08 +passionnellement passionnellement adv 0.00 0.07 0.00 0.07 +passionnelles passionnel adj f p 1.43 3.92 0.02 0.34 +passionnels passionnel adj m p 1.43 3.92 0.22 0.61 +passionnent passionner ver 5.75 17.50 0.34 0.68 ind:pre:3p; +passionner passionner ver 5.75 17.50 0.41 1.76 inf; +passionnera passionner ver 5.75 17.50 0.01 0.14 ind:fut:3s; +passionnerait passionner ver 5.75 17.50 0.03 0.07 cnd:pre:3s; +passionneras passionner ver 5.75 17.50 0.01 0.00 ind:fut:2s; +passionnons passionner ver 5.75 17.50 0.00 0.14 ind:pre:1p; +passionnèrent passionner ver 5.75 17.50 0.00 0.14 ind:pas:3p; +passionné passionner ver m s 5.75 17.50 1.84 3.58 par:pas; +passionnée passionné adj f s 4.14 14.80 1.44 5.74 +passionnées passionné adj f p 4.14 14.80 0.24 2.09 +passionnément passionnément adv 1.38 9.39 1.38 9.39 +passionnés passionné adj m p 4.14 14.80 0.70 2.03 +passions passion nom f p 33.78 87.64 3.07 18.92 +passive passif adj f s 4.00 7.23 1.73 4.32 +passivement passivement adv 0.29 1.08 0.29 1.08 +passiver passiver ver 0.14 0.27 0.14 0.00 inf; +passives passif adj f p 4.00 7.23 0.03 0.34 +passiveté passiveté nom f s 0.00 0.07 0.00 0.07 +passivité passivité nom f s 0.46 3.38 0.46 3.38 +passoire passoire nom f s 1.44 2.23 1.27 2.09 +passoires passoire nom f p 1.44 2.23 0.17 0.14 +passâmes passer ver 1495.48 1165.27 0.46 3.85 ind:pas:1p; +passons passer ver 1495.48 1165.27 17.85 9.66 imp:pre:1p;ind:pre:1p; +passât passer ver 1495.48 1165.27 0.00 1.35 sub:imp:3s; +passâtes passer ver 1495.48 1165.27 0.00 0.07 ind:pas:2p; +passèrent passer ver 1495.48 1165.27 2.13 20.07 ind:pas:3p; +passé passer ver m s 1495.48 1165.27 297.63 157.09 par:pas;par:pas;par:pas;par:pas; +passée passer ver f s 1495.48 1165.27 32.14 25.68 par:pas; +passées passer ver f p 1495.48 1165.27 7.98 11.89 par:pas; +passéiste passéiste adj f s 0.16 0.07 0.16 0.07 +passés passer ver m p 1495.48 1165.27 18.16 18.18 par:pas; +past past nom m s 0.58 0.00 0.58 0.00 +pastaga pastaga nom m s 0.00 1.69 0.00 1.35 +pastagas pastaga nom m p 0.00 1.69 0.00 0.34 +pastel pastel nom m s 0.55 1.89 0.40 1.01 +pastels pastel nom m p 0.55 1.89 0.14 0.88 +pastenague pastenague nom f s 0.04 0.00 0.04 0.00 +pasteur pasteur nom m s 17.74 11.35 16.61 10.07 +pasteurella pasteurella nom f s 0.02 0.00 0.02 0.00 +pasteurisation pasteurisation nom f s 0.10 0.14 0.10 0.14 +pasteuriser pasteuriser ver 0.00 0.07 0.00 0.07 inf; +pasteurisé pasteurisé adj m s 0.05 0.41 0.05 0.14 +pasteurisée pasteurisé adj f s 0.05 0.41 0.00 0.20 +pasteurisés pasteurisé adj m p 0.05 0.41 0.00 0.07 +pasteurs pasteur nom m p 17.74 11.35 1.13 1.28 +pasticha pasticher ver 0.00 0.41 0.00 0.07 ind:pas:3s; +pastichai pasticher ver 0.00 0.41 0.00 0.07 ind:pas:1s; +pastichait pasticher ver 0.00 0.41 0.00 0.07 ind:imp:3s; +pastiche pastiche nom m s 0.03 1.01 0.03 0.68 +pasticher pasticher ver 0.00 0.41 0.00 0.14 inf; +pastiches pastiche nom m p 0.03 1.01 0.00 0.34 +pasticheur pasticheur nom m s 0.00 0.14 0.00 0.14 +pastiché pasticher ver m s 0.00 0.41 0.00 0.07 par:pas; +pastille pastille nom f s 1.51 5.81 0.56 1.35 +pastiller pastiller ver 0.01 0.00 0.01 0.00 inf; +pastilles pastille nom f p 1.51 5.81 0.95 4.46 +pastis pastis nom m 1.43 4.73 1.43 4.73 +pastophore pastophore nom m s 0.00 0.14 0.00 0.14 +pastoral pastoral adj m s 0.57 1.08 0.14 0.27 +pastorale pastoral adj f s 0.57 1.08 0.33 0.54 +pastorales pastoral adj f p 0.57 1.08 0.10 0.20 +pastoraux pastoral adj m p 0.57 1.08 0.00 0.07 +pastour pastour nom m s 0.00 0.07 0.00 0.07 +pastoureau pastoureau nom m s 0.02 0.41 0.02 0.14 +pastoureaux pastoureau nom m p 0.02 0.41 0.00 0.07 +pastourelle pastoureau nom f s 0.02 0.41 0.00 0.07 +pastourelles pastoureau nom f p 0.02 0.41 0.00 0.14 +pastèque pastèque nom f s 4.16 2.50 2.39 1.62 +pastèques pastèque nom f p 4.16 2.50 1.77 0.88 +pat pat adj m s 0.46 0.34 0.46 0.34 +patache patache nom f s 0.30 0.20 0.30 0.20 +patachon patachon nom m s 0.16 0.54 0.16 0.54 +patafiole patafioler ver 0.04 0.00 0.04 0.00 imp:pre:2s; +patagon patagon adj m s 0.01 0.07 0.01 0.07 +patagonien patagonien adj m s 0.02 0.07 0.02 0.07 +patagons patagon nom m p 0.00 0.07 0.00 0.07 +patapouf patapouf ono 0.03 0.00 0.03 0.00 +patapoufs patapouf nom m p 0.17 0.34 0.00 0.07 +pataquès pataquès nom m 0.02 0.34 0.02 0.34 +patarin patarin nom m s 0.00 0.14 0.00 0.14 +patata patata ono 0.32 1.15 0.32 1.15 +patate patate nom f s 14.47 10.74 4.59 3.38 +patates patate nom f p 14.47 10.74 9.88 7.36 +patati patati ono 0.33 1.76 0.33 1.76 +patatras patatras ono 0.04 0.54 0.04 0.54 +pataud pataud adj m s 0.03 1.35 0.01 0.34 +pataude pataud adj f s 0.03 1.35 0.01 0.41 +pataudes pataud adj f p 0.03 1.35 0.00 0.34 +patauds pataud adj m p 0.03 1.35 0.01 0.27 +pataugas pataugas nom m 0.00 0.68 0.00 0.68 +patauge patauger ver 1.69 8.99 0.42 1.35 ind:pre:1s;ind:pre:3s; +pataugea patauger ver 1.69 8.99 0.00 0.41 ind:pas:3s; +pataugeaient patauger ver 1.69 8.99 0.01 0.81 ind:imp:3p; +pataugeais patauger ver 1.69 8.99 0.02 0.07 ind:imp:1s; +pataugeait patauger ver 1.69 8.99 0.18 0.74 ind:imp:3s; +pataugeant patauger ver 1.69 8.99 0.03 1.96 par:pre; +pataugent patauger ver 1.69 8.99 0.32 0.54 ind:pre:3p; +pataugeoire pataugeoire nom f s 0.04 0.00 0.04 0.00 +pataugeons patauger ver 1.69 8.99 0.04 0.34 imp:pre:1p;ind:pre:1p; +patauger patauger ver 1.69 8.99 0.48 1.89 inf; +pataugera patauger ver 1.69 8.99 0.01 0.00 ind:fut:3s; +pataugerais patauger ver 1.69 8.99 0.01 0.00 cnd:pre:1s; +pataugerons patauger ver 1.69 8.99 0.00 0.07 ind:fut:1p; +patauges patauger ver 1.69 8.99 0.04 0.07 ind:pre:2s; +pataugez patauger ver 1.69 8.99 0.06 0.14 imp:pre:2p;ind:pre:2p; +pataugis pataugis nom m 0.00 0.07 0.00 0.07 +pataugèrent patauger ver 1.69 8.99 0.00 0.14 ind:pas:3p; +pataugé patauger ver m s 1.69 8.99 0.05 0.47 par:pas; +patch patch nom m s 1.11 0.14 0.88 0.07 +patches patch nom m p 1.11 0.14 0.02 0.07 +patchouli patchouli nom m s 0.31 0.20 0.31 0.20 +patchs patch nom m p 1.11 0.14 0.22 0.00 +patchwork patchwork nom m s 0.00 0.61 0.00 0.61 +patelin patelin nom m s 1.62 3.51 1.56 3.31 +pateline patelin adj f s 0.63 0.47 0.01 0.07 +patelins patelin nom m p 1.62 3.51 0.05 0.20 +patellaire patellaire adj m s 0.01 0.00 0.01 0.00 +patelles patelle nom f p 0.00 0.27 0.00 0.27 +patenôtres patenôtre nom f p 0.00 0.41 0.00 0.41 +patent patent adj m s 0.41 1.28 0.14 0.54 +patente patent adj f s 0.41 1.28 0.14 0.54 +patentes patente nom f p 0.16 0.41 0.02 0.14 +patents patent adj m p 0.41 1.28 0.11 0.07 +patenté patenté adj m s 0.20 1.42 0.14 0.61 +patentée patenté adj f s 0.20 1.42 0.01 0.00 +patentées patenté adj f p 0.20 1.42 0.00 0.20 +patentés patenté adj m p 0.20 1.42 0.04 0.61 +pater_familias pater_familias nom m 0.03 0.07 0.03 0.07 +pater_noster pater_noster nom m s 0.10 0.41 0.10 0.41 +pater pater nom m 0.56 1.62 0.56 1.62 +paternalisme paternalisme nom m s 0.12 0.74 0.12 0.74 +paternaliste paternaliste adj s 0.17 0.27 0.16 0.20 +paternalistes paternaliste adj p 0.17 0.27 0.01 0.07 +paterne paterne adj m s 0.00 0.47 0.00 0.47 +paternel paternel adj m s 3.29 13.92 1.33 5.00 +paternelle paternel adj f s 3.29 13.92 1.48 6.82 +paternellement paternellement adv 0.01 0.54 0.01 0.54 +paternelles paternel adj f p 3.29 13.92 0.16 0.88 +paternels paternel adj m p 3.29 13.92 0.32 1.22 +paternité paternité nom f s 1.98 3.11 1.97 3.04 +paternités paternité nom f p 1.98 3.11 0.01 0.07 +pathogène pathogène adj s 0.58 0.14 0.58 0.14 +pathogénique pathogénique adj m s 0.01 0.00 0.01 0.00 +pathologie pathologie nom f s 1.58 0.20 1.58 0.20 +pathologique pathologique adj s 1.26 1.22 1.05 1.08 +pathologiquement pathologiquement adv 0.08 0.14 0.08 0.14 +pathologiques pathologique adj m p 1.26 1.22 0.21 0.14 +pathologiste pathologiste nom s 0.29 0.07 0.29 0.07 +pathos pathos nom m 0.38 0.68 0.38 0.68 +pathétique pathétique adj s 9.17 11.08 7.92 8.18 +pathétiquement pathétiquement adv 0.05 0.41 0.05 0.41 +pathétiques pathétique adj p 9.17 11.08 1.25 2.91 +pathétisme pathétisme nom m s 0.01 0.14 0.01 0.14 +patibulaire patibulaire adj s 0.03 1.96 0.01 0.95 +patibulaires patibulaire adj p 0.03 1.96 0.02 1.01 +patiemment patiemment adv 1.75 11.15 1.75 11.15 +patience patience nom f s 30.68 33.58 29.93 32.97 +patiences patience nom f p 30.68 33.58 0.75 0.61 +patient patient nom m s 61.69 10.00 29.58 4.05 +patienta patienter ver 10.10 8.45 0.01 0.20 ind:pas:3s; +patientai patienter ver 10.10 8.45 0.00 0.07 ind:pas:1s; +patientaient patienter ver 10.10 8.45 0.00 0.34 ind:imp:3p; +patientait patienter ver 10.10 8.45 0.03 0.68 ind:imp:3s; +patientant patienter ver 10.10 8.45 0.01 0.07 par:pre; +patiente patient nom f s 61.69 10.00 7.69 2.16 +patientent patienter ver 10.10 8.45 0.04 0.14 ind:pre:3p; +patienter patienter ver 10.10 8.45 4.71 4.66 inf; +patientera patienter ver 10.10 8.45 0.05 0.00 ind:fut:3s; +patienteraient patienter ver 10.10 8.45 0.00 0.07 cnd:pre:3p; +patienterait patienter ver 10.10 8.45 0.00 0.07 cnd:pre:3s; +patienteras patienter ver 10.10 8.45 0.00 0.07 ind:fut:2s; +patienterez patienter ver 10.10 8.45 0.23 0.07 ind:fut:2p; +patienterons patienter ver 10.10 8.45 0.01 0.00 ind:fut:1p; +patientes patient nom f p 61.69 10.00 1.94 0.27 +patientez patienter ver 10.10 8.45 2.82 0.47 imp:pre:2p;ind:pre:2p; +patientions patienter ver 10.10 8.45 0.00 0.07 ind:imp:1p; +patientons patienter ver 10.10 8.45 0.14 0.07 imp:pre:1p;ind:pre:1p; +patients patient nom m p 61.69 10.00 22.49 3.51 +patientèrent patienter ver 10.10 8.45 0.01 0.07 ind:pas:3p; +patienté patienter ver m s 10.10 8.45 0.54 0.27 par:pas; +patin patin nom m s 3.77 5.61 1.12 1.35 +patina patiner ver 2.54 5.27 0.02 0.07 ind:pas:3s; +patinage patinage nom m s 1.25 0.07 1.25 0.07 +patinaient patiner ver 2.54 5.27 0.00 0.34 ind:imp:3p; +patinais patiner ver 2.54 5.27 0.15 0.00 ind:imp:1s; +patinait patiner ver 2.54 5.27 0.06 0.74 ind:imp:3s; +patinant patiner ver 2.54 5.27 0.01 0.20 par:pre; +patine patiner ver 2.54 5.27 0.36 0.34 ind:pre:1s;ind:pre:3s; +patinent patiner ver 2.54 5.27 0.16 0.41 ind:pre:3p; +patiner patiner ver 2.54 5.27 1.26 0.27 inf; +patinerais patiner ver 2.54 5.27 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +patinerons patiner ver 2.54 5.27 0.00 0.07 ind:fut:1p; +patines patiner ver 2.54 5.27 0.03 0.00 ind:pre:2s; +patinette patinette nom f s 0.02 0.27 0.01 0.20 +patinettes patinette nom f p 0.02 0.27 0.01 0.07 +patineur patineur nom m s 0.67 1.28 0.11 0.34 +patineurs patineur nom m p 0.67 1.28 0.27 0.74 +patineuse patineur nom f s 0.67 1.28 0.29 0.14 +patineuses patineuse nom f p 0.16 0.00 0.16 0.00 +patinez patiner ver 2.54 5.27 0.10 0.00 imp:pre:2p;ind:pre:2p; +patiniez patiner ver 2.54 5.27 0.02 0.00 ind:imp:2p; +patinions patiner ver 2.54 5.27 0.00 0.07 ind:imp:1p; +patinoire patinoire nom f s 1.37 0.41 1.21 0.41 +patinoires patinoire nom f p 1.37 0.41 0.16 0.00 +patinons patiner ver 2.54 5.27 0.03 0.00 imp:pre:1p;ind:pre:1p; +patins patin nom m p 3.77 5.61 2.65 4.26 +patiné patiner ver m s 2.54 5.27 0.27 1.01 par:pas; +patinée patiner ver f s 2.54 5.27 0.01 0.54 par:pas; +patinées patiner ver f p 2.54 5.27 0.02 0.68 par:pas; +patinés patiner ver m p 2.54 5.27 0.01 0.54 par:pas; +patio patio nom m s 2.02 6.42 2.02 4.46 +patios patio nom m p 2.02 6.42 0.00 1.96 +patoche patoche nom f s 0.01 0.14 0.01 0.07 +patoches patoche nom f p 0.01 0.14 0.00 0.07 +patois patois nom m 0.85 8.58 0.85 8.58 +patoisante patoisant adj f s 0.00 0.14 0.00 0.14 +patoise patoiser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +patouillard patouillard nom m s 0.00 0.07 0.00 0.07 +patouille patouiller ver 0.03 0.14 0.03 0.07 imp:pre:2s;ind:pre:3s; +patouillons patouiller ver 0.03 0.14 0.00 0.07 ind:pre:1p; +patraque patraque adj s 0.97 0.81 0.97 0.81 +patri patri adv 0.15 0.07 0.15 0.07 +patriarcal patriarcal adj m s 0.34 1.01 0.04 0.41 +patriarcale patriarcal adj f s 0.34 1.01 0.29 0.27 +patriarcales patriarcal adj f p 0.34 1.01 0.01 0.20 +patriarcat patriarcat nom m s 0.15 0.34 0.15 0.27 +patriarcats patriarcat nom m p 0.15 0.34 0.00 0.07 +patriarcaux patriarcal adj m p 0.34 1.01 0.00 0.14 +patriarche patriarche nom m s 1.30 4.59 1.04 4.12 +patriarches patriarche nom m p 1.30 4.59 0.26 0.47 +patriarchie patriarchie nom f s 0.02 0.00 0.02 0.00 +patriciat patriciat nom m s 0.00 0.07 0.00 0.07 +patricien patricien nom m s 0.21 0.54 0.05 0.20 +patricienne patricien nom f s 0.21 0.54 0.10 0.00 +patriciennes patricien adj f p 0.05 0.88 0.01 0.34 +patriciens patricien nom m p 0.21 0.54 0.06 0.27 +patrie patrie nom f s 23.36 29.19 23.36 28.65 +patries patrie nom f p 23.36 29.19 0.00 0.54 +patrilinéaire patrilinéaire adj f s 0.00 0.07 0.00 0.07 +patrimoine patrimoine nom m s 2.34 2.97 2.19 2.91 +patrimoines patrimoine nom m p 2.34 2.97 0.15 0.07 +patrimonial patrimonial adj m s 0.00 0.34 0.00 0.34 +patriotard patriotard adj m s 0.00 0.34 0.00 0.27 +patriotardes patriotard adj f p 0.00 0.34 0.00 0.07 +patriotards patriotard nom m p 0.00 0.07 0.00 0.07 +patriote patriote nom s 3.29 5.47 1.96 1.76 +patriotes patriote nom p 3.29 5.47 1.33 3.72 +patriotique patriotique adj s 1.95 5.34 1.73 3.31 +patriotiquement patriotiquement adv 0.00 0.07 0.00 0.07 +patriotiques patriotique adj p 1.95 5.34 0.21 2.03 +patriotisme patriotisme nom m s 2.54 3.65 2.54 3.65 +patron patron nom m s 141.18 132.03 122.44 93.85 +patronage patronage nom m s 0.07 2.43 0.07 1.96 +patronages patronage nom m p 0.07 2.43 0.00 0.47 +patronal patronal adj m s 0.30 0.61 0.01 0.07 +patronale patronal adj f s 0.30 0.61 0.14 0.20 +patronales patronal adj f p 0.30 0.61 0.14 0.20 +patronat patronat nom m s 0.51 0.47 0.51 0.47 +patronaux patronal adj m p 0.30 0.61 0.02 0.14 +patronna patronner ver 0.16 0.81 0.01 0.00 ind:pas:3s; +patronne patron nom f s 141.18 132.03 11.23 26.82 +patronner patronner ver 0.16 0.81 0.00 0.14 inf; +patronnes patronne nom f p 0.26 0.00 0.26 0.00 +patronnesse patronnesse adj f s 0.22 0.95 0.14 0.61 +patronnesses patronnesse adj f p 0.22 0.95 0.07 0.34 +patronné patronner ver m s 0.16 0.81 0.03 0.14 par:pas; +patronnée patronner ver f s 0.16 0.81 0.03 0.07 par:pas; +patronnés patronner ver m p 0.16 0.81 0.00 0.07 par:pas; +patrons patron nom m p 141.18 132.03 7.50 10.88 +patronyme patronyme nom m s 0.28 3.24 0.25 2.50 +patronymes patronyme nom m p 0.28 3.24 0.03 0.74 +patronymique patronymique adj m s 0.20 0.20 0.20 0.07 +patronymiques patronymique adj m p 0.20 0.20 0.00 0.14 +patrouilla patrouiller ver 2.54 2.97 0.00 0.14 ind:pas:3s; +patrouillaient patrouiller ver 2.54 2.97 0.14 0.95 ind:imp:3p; +patrouillais patrouiller ver 2.54 2.97 0.08 0.00 ind:imp:1s; +patrouillait patrouiller ver 2.54 2.97 0.12 0.41 ind:imp:3s; +patrouillant patrouiller ver 2.54 2.97 0.09 0.34 par:pre; +patrouille patrouille nom f s 14.45 10.47 10.83 6.42 +patrouillent patrouiller ver 2.54 2.97 0.28 0.27 ind:pre:3p; +patrouiller patrouiller ver 2.54 2.97 1.02 0.41 inf; +patrouillerai patrouiller ver 2.54 2.97 0.03 0.00 ind:fut:1s; +patrouilleras patrouiller ver 2.54 2.97 0.01 0.00 ind:fut:2s; +patrouillerez patrouiller ver 2.54 2.97 0.02 0.00 ind:fut:2p; +patrouilleront patrouiller ver 2.54 2.97 0.01 0.00 ind:fut:3p; +patrouilles patrouille nom f p 14.45 10.47 3.61 4.05 +patrouilleur patrouilleur nom m s 1.43 0.47 1.15 0.07 +patrouilleurs patrouilleur nom m p 1.43 0.47 0.28 0.41 +patrouillez patrouiller ver 2.54 2.97 0.12 0.00 imp:pre:2p;ind:pre:2p; +patrouilliez patrouiller ver 2.54 2.97 0.04 0.00 ind:imp:2p; +patrouillions patrouiller ver 2.54 2.97 0.01 0.00 ind:imp:1p; +patrouillé patrouiller ver m s 2.54 2.97 0.12 0.07 par:pas; +patrouillée patrouiller ver f s 2.54 2.97 0.02 0.00 par:pas; +patrouillées patrouiller ver f p 2.54 2.97 0.02 0.14 par:pas; +patte patte nom f s 34.60 85.14 6.45 21.28 +pattemouille pattemouille nom f s 0.14 0.41 0.14 0.34 +pattemouilles pattemouille nom f p 0.14 0.41 0.00 0.07 +pattern pattern nom m s 0.06 0.00 0.06 0.00 +pattes patte nom f p 34.60 85.14 28.16 63.85 +patène patène nom f s 0.10 0.34 0.10 0.27 +patènes patène nom f p 0.10 0.34 0.00 0.07 +patère patère nom f s 0.08 1.76 0.08 1.08 +patères patère nom f p 0.08 1.76 0.00 0.68 +pattu pattu adj m s 0.00 0.14 0.00 0.07 +pattée patté adj f s 0.00 0.14 0.00 0.14 +pattus pattu adj m p 0.00 0.14 0.00 0.07 +paturon paturon nom m s 0.00 1.42 0.00 0.41 +paturons paturon nom m p 0.00 1.42 0.00 1.01 +pauchouse pauchouse nom f s 0.00 0.20 0.00 0.20 +pauline pauline nom f s 0.00 0.07 0.00 0.07 +paulinienne paulinien adj f s 0.00 0.07 0.00 0.07 +paulownias paulownia nom m p 0.00 0.07 0.00 0.07 +pauma paumer ver 4.27 8.92 0.00 0.14 ind:pas:3s; +paumais paumer ver 4.27 8.92 0.00 0.20 ind:imp:1s; +paumait paumer ver 4.27 8.92 0.00 0.20 ind:imp:3s; +paumant paumer ver 4.27 8.92 0.00 0.34 par:pre; +paume paume nom f s 3.17 35.47 2.18 22.57 +paumelle paumelle nom f s 0.00 0.14 0.00 0.07 +paumelles paumelle nom f p 0.00 0.14 0.00 0.07 +paument paumer ver 4.27 8.92 0.01 0.20 ind:pre:3p; +paumer paumer ver 4.27 8.92 0.38 1.82 inf; +paumes paume nom f p 3.17 35.47 0.99 12.91 +paumé paumer ver m s 4.27 8.92 2.58 2.97 par:pas; +paumée paumer ver f s 4.27 8.92 0.46 0.61 par:pas; +paumées paumé adj f p 2.46 2.84 0.02 0.27 +paumés paumé nom m p 2.23 5.54 0.90 2.23 +paupiette paupiette nom f s 0.19 0.07 0.02 0.00 +paupiettes paupiette nom f p 0.19 0.07 0.17 0.07 +paupière paupière nom f s 4.75 63.45 0.97 7.03 +paupières paupière nom f p 4.75 63.45 3.77 56.42 +paupérisation paupérisation nom f s 0.00 0.27 0.00 0.27 +paupérise paupériser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +paupérisme paupérisme nom m s 0.00 0.20 0.00 0.20 +pause_café pause_café nom f s 0.29 0.14 0.26 0.07 +pause pause nom f s 28.24 11.89 27.30 10.14 +pauser pauser ver 0.02 0.07 0.01 0.07 inf; +pause_café pause_café nom f p 0.29 0.14 0.03 0.07 +pauses_repas pauses_repas nom f p 0.01 0.07 0.01 0.07 +pauses pause nom f p 28.24 11.89 0.94 1.76 +pausez pauser ver 0.02 0.07 0.01 0.00 imp:pre:2p; +pauvre pauvre adj s 178.03 187.77 148.93 148.78 +pauvrement pauvrement adv 0.31 1.89 0.31 1.89 +pauvres pauvre adj p 178.03 187.77 29.09 38.99 +pauvresse pauvresse nom f s 0.34 0.54 0.23 0.47 +pauvresses pauvresse nom f p 0.34 0.54 0.11 0.07 +pauvret pauvret nom m s 0.05 0.41 0.05 0.14 +pauvrets pauvret nom m p 0.05 0.41 0.00 0.27 +pauvrette pauvrette nom f s 1.16 0.95 1.16 0.81 +pauvrettes pauvrette nom f p 1.16 0.95 0.00 0.14 +pauvreté pauvreté nom f s 7.04 10.27 7.04 10.14 +pauvretés pauvreté nom f p 7.04 10.27 0.00 0.14 +pavage pavage nom m s 0.04 1.42 0.04 1.42 +pavait paver ver 0.33 1.01 0.00 0.07 ind:imp:3s; +pavana pavaner ver 1.53 2.23 0.00 0.14 ind:pas:3s; +pavanaient pavaner ver 1.53 2.23 0.03 0.41 ind:imp:3p; +pavanait pavaner ver 1.53 2.23 0.09 0.54 ind:imp:3s; +pavanant pavaner ver 1.53 2.23 0.10 0.27 par:pre; +pavane pavaner ver 1.53 2.23 0.47 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pavanent pavaner ver 1.53 2.23 0.07 0.14 ind:pre:3p; +pavaner pavaner ver 1.53 2.23 0.65 0.34 inf; +pavanera pavaner ver 1.53 2.23 0.01 0.00 ind:fut:3s; +pavanerez pavaner ver 1.53 2.23 0.01 0.07 ind:fut:2p; +pavanes pavaner ver 1.53 2.23 0.08 0.00 ind:pre:2s; +pavanons pavaner ver 1.53 2.23 0.00 0.07 ind:pre:1p; +pavané pavaner ver m s 1.53 2.23 0.03 0.00 par:pas; +pave paver ver 0.33 1.01 0.14 0.14 ind:pre:1s;ind:pre:3s; +pavement pavement nom m s 0.00 1.76 0.00 1.28 +pavements pavement nom m p 0.00 1.76 0.00 0.47 +paver paver ver 0.33 1.01 0.06 0.07 inf; +paveton paveton nom m s 0.00 0.47 0.00 0.34 +pavetons paveton nom m p 0.00 0.47 0.00 0.14 +paveur paveur nom m s 0.00 0.20 0.00 0.14 +paveurs paveur nom m p 0.00 0.20 0.00 0.07 +pavez paver ver 0.33 1.01 0.02 0.07 imp:pre:2p; +pavillon pavillon nom m s 5.95 25.61 5.39 20.07 +pavillonnaire pavillonnaire adj s 0.03 0.20 0.03 0.14 +pavillonnaires pavillonnaire adj m p 0.03 0.20 0.00 0.07 +pavillons pavillon nom m p 5.95 25.61 0.56 5.54 +pavlovien pavlovien adj m s 0.08 0.27 0.05 0.27 +pavlovienne pavlovien adj f s 0.08 0.27 0.03 0.00 +pavois pavois nom m 0.01 1.49 0.01 1.49 +pavoisa pavoiser ver 0.38 3.65 0.00 0.14 ind:pas:3s; +pavoisaient pavoiser ver 0.38 3.65 0.00 0.07 ind:imp:3p; +pavoisait pavoiser ver 0.38 3.65 0.14 0.07 ind:imp:3s; +pavoise pavoiser ver 0.38 3.65 0.03 0.34 imp:pre:2s;ind:pre:3s; +pavoisement pavoisement nom m s 0.00 0.07 0.00 0.07 +pavoisent pavoiser ver 0.38 3.65 0.03 0.54 ind:pre:3p; +pavoiser pavoiser ver 0.38 3.65 0.17 0.61 inf; +pavoisera pavoiser ver 0.38 3.65 0.01 0.00 ind:fut:3s; +pavoiseraient pavoiser ver 0.38 3.65 0.00 0.07 cnd:pre:3p; +pavoisé pavoiser ver m s 0.38 3.65 0.00 0.54 par:pas; +pavoisée pavoiser ver f s 0.38 3.65 0.00 0.61 par:pas; +pavoisées pavoiser ver f p 0.38 3.65 0.00 0.27 par:pas; +pavoisés pavoiser ver m p 0.38 3.65 0.00 0.41 par:pas; +pavot pavot nom m s 0.85 1.49 0.74 1.15 +pavots pavot nom m p 0.85 1.49 0.11 0.34 +pavé pavé nom m s 3.00 26.62 2.08 13.24 +pavée pavé adj f s 0.92 5.68 0.33 3.51 +pavées pavé adj f p 0.92 5.68 0.17 0.74 +pavés pavé nom m p 3.00 26.62 0.92 13.38 +pax_americana pax_americana nom f 0.01 0.00 0.01 0.00 +paxon paxon nom m s 0.07 0.07 0.07 0.07 +paya payer ver 416.67 150.20 0.76 5.14 ind:pas:3s; +payable payable adj s 0.74 0.61 0.58 0.34 +payables payable adj m p 0.74 0.61 0.16 0.27 +payai payer ver 416.67 150.20 0.01 0.41 ind:pas:1s; +payaient payer ver 416.67 150.20 0.66 2.50 ind:imp:3p; +payais payer ver 416.67 150.20 1.07 1.08 ind:imp:1s;ind:imp:2s; +payait payer ver 416.67 150.20 5.12 8.85 ind:imp:3s; +payant payant adj m s 2.09 2.03 1.23 0.74 +payante payant adj f s 2.09 2.03 0.39 0.74 +payantes payant adj f p 2.09 2.03 0.19 0.34 +payants payant adj m p 2.09 2.03 0.28 0.20 +payassent payer ver 416.67 150.20 0.00 0.07 sub:imp:3p; +payassiez payer ver 416.67 150.20 0.00 0.07 sub:imp:2p; +paye payer ver 416.67 150.20 29.91 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +payement payement nom m s 0.06 0.34 0.03 0.34 +payements payement nom m p 0.06 0.34 0.03 0.00 +payent payer ver 416.67 150.20 4.30 1.35 ind:pre:3p; +payer payer ver 416.67 150.20 149.10 58.31 inf;;inf;;inf;; +payera payer ver 416.67 150.20 2.24 0.20 ind:fut:3s; +payerai payer ver 416.67 150.20 2.40 0.34 ind:fut:1s; +payeraient payer ver 416.67 150.20 0.10 0.14 cnd:pre:3p; +payerais payer ver 416.67 150.20 0.33 0.34 cnd:pre:1s;cnd:pre:2s; +payerait payer ver 416.67 150.20 0.20 0.47 cnd:pre:3s; +payeras payer ver 416.67 150.20 0.37 0.34 ind:fut:2s; +payerez payer ver 416.67 150.20 1.49 0.20 ind:fut:2p; +payeriez payer ver 416.67 150.20 0.10 0.07 cnd:pre:2p; +payerons payer ver 416.67 150.20 0.58 0.14 ind:fut:1p; +payeront payer ver 416.67 150.20 0.55 0.14 ind:fut:3p; +payes payer ver 416.67 150.20 4.59 1.15 ind:pre:2s;sub:pre:2s; +payeur payeur nom m s 0.21 0.27 0.07 0.14 +payeurs payeur nom m p 0.21 0.27 0.14 0.14 +payez payer ver 416.67 150.20 13.15 1.01 imp:pre:2p;ind:pre:2p; +payiez payer ver 416.67 150.20 0.55 0.00 ind:imp:2p; +payions payer ver 416.67 150.20 0.03 0.07 ind:imp:1p; +payâmes payer ver 416.67 150.20 0.00 0.07 ind:pas:1p; +payons payer ver 416.67 150.20 1.68 0.74 imp:pre:1p;ind:pre:1p; +payât payer ver 416.67 150.20 0.00 0.34 sub:imp:3s; +pays pays nom m 202.57 241.55 202.57 241.55 +paysage paysage nom m s 13.19 64.12 10.57 50.47 +paysager paysager adj m s 0.06 0.07 0.06 0.07 +paysages paysage nom m p 13.19 64.12 2.62 13.65 +paysagiste paysagiste nom s 0.73 0.68 0.66 0.61 +paysagistes paysagiste nom p 0.73 0.68 0.08 0.07 +paysagé paysagé adj m s 0.00 0.47 0.00 0.41 +paysagés paysagé adj m p 0.00 0.47 0.00 0.07 +paysan paysan nom m s 22.34 57.30 9.06 17.77 +paysanne paysan nom f s 22.34 57.30 2.66 6.82 +paysannerie paysannerie nom f s 0.23 0.54 0.23 0.54 +paysannes paysanne nom f p 0.95 0.00 0.95 0.00 +paysans paysan nom m p 22.34 57.30 10.62 29.80 +payse payse nom m 0.01 0.07 0.01 0.07 +payèrent payer ver 416.67 150.20 0.11 0.41 ind:pas:3p; +payé payer ver m s 416.67 150.20 66.22 23.24 par:pas; +payée payer ver f s 416.67 150.20 9.16 2.91 par:pas; +payées payer ver f p 416.67 150.20 1.53 1.01 par:pas; +payés payer ver m p 416.67 150.20 5.56 3.31 par:pas; +pc pc nom m 0.16 0.00 0.16 0.00 +pchitt pchitt ono 0.00 0.20 0.00 0.20 +peanuts peanuts nom m p 0.07 0.07 0.07 0.07 +peau_rouge peau_rouge nom s 0.51 0.54 0.49 0.27 +peau peau nom f s 87.47 187.77 83.83 174.26 +peaucier peaucier nom m s 0.00 0.14 0.00 0.07 +peauciers peaucier nom m p 0.00 0.14 0.00 0.07 +peaufina peaufiner ver 0.67 1.08 0.00 0.14 ind:pas:3s; +peaufinage peaufinage nom m s 0.01 0.00 0.01 0.00 +peaufinait peaufiner ver 0.67 1.08 0.03 0.20 ind:imp:3s; +peaufinant peaufiner ver 0.67 1.08 0.00 0.07 par:pre; +peaufiner peaufiner ver 0.67 1.08 0.44 0.34 inf; +peaufiné peaufiner ver m s 0.67 1.08 0.20 0.20 par:pas; +peaufinée peaufiner ver f s 0.67 1.08 0.00 0.07 par:pas; +peaufinés peaufiner ver m p 0.67 1.08 0.00 0.07 par:pas; +peausserie peausserie nom f s 0.00 0.27 0.00 0.14 +peausseries peausserie nom f p 0.00 0.27 0.00 0.14 +peaussier peaussier nom m s 0.01 0.07 0.01 0.07 +peau_rouge peau_rouge nom p 0.51 0.54 0.02 0.27 +peaux peau nom f p 87.47 187.77 3.63 13.51 +pec pec adj m s 0.01 0.00 0.01 0.00 +peccable peccable adj m s 0.01 0.00 0.01 0.00 +peccadille peccadille nom f s 0.08 1.08 0.04 0.34 +peccadilles peccadille nom f p 0.08 1.08 0.04 0.74 +peccata peccata nom m s 0.20 0.00 0.20 0.00 +peccavi peccavi nom m s 0.10 0.14 0.10 0.14 +pecnots pecnot nom m p 0.03 0.00 0.03 0.00 +pecorino pecorino nom m s 0.25 0.00 0.25 0.00 +pectoral pectoral adj m s 0.19 1.08 0.07 0.00 +pectorale pectoral adj f s 0.19 1.08 0.04 0.27 +pectorales pectoral adj f p 0.19 1.08 0.03 0.41 +pectoraux pectoral nom m p 0.70 2.09 0.66 1.76 +pedigree pedigree nom m s 0.67 1.82 0.65 1.76 +pedigrees pedigree nom m p 0.67 1.82 0.02 0.07 +pedzouille pedzouille nom m s 0.04 0.54 0.04 0.41 +pedzouilles pedzouille nom m p 0.04 0.54 0.00 0.14 +peeling peeling nom m s 0.14 0.00 0.14 0.00 +peignît peindre ver 36.05 80.27 0.00 0.07 sub:imp:3s; +peigna peigner ver 2.25 4.39 0.00 0.41 ind:pas:3s; +peignaient peindre ver 36.05 80.27 0.16 0.88 ind:imp:3p; +peignais peindre ver 36.05 80.27 0.35 1.42 ind:imp:1s; +peignait peindre ver 36.05 80.27 1.61 4.86 ind:imp:3s; +peignant peindre ver 36.05 80.27 0.51 1.55 par:pre; +peigne_cul peigne_cul nom m s 0.23 0.34 0.07 0.27 +peigne_cul peigne_cul nom m p 0.23 0.34 0.17 0.07 +peigne_zizi peigne_zizi nom s 0.00 0.07 0.00 0.07 +peigne peigne nom m s 6.81 10.81 6.07 8.85 +peignent peindre ver 36.05 80.27 0.43 0.81 ind:pre:3p;sub:pre:3p; +peigner peigner ver 2.25 4.39 0.85 1.28 inf; +peignerais peigner ver 2.25 4.39 0.00 0.07 cnd:pre:2s; +peignerait peigner ver 2.25 4.39 0.00 0.07 cnd:pre:3s; +peignes peigne nom m p 6.81 10.81 0.74 1.96 +peignez peindre ver 36.05 80.27 0.57 0.20 imp:pre:2p;ind:pre:2p; +peigniez peigner ver 2.25 4.39 0.03 0.00 ind:imp:2p; +peignions peigner ver 2.25 4.39 0.00 0.20 ind:imp:1p; +peignis peindre ver 36.05 80.27 0.00 1.22 ind:pas:1s; +peignit peindre ver 36.05 80.27 0.14 1.82 ind:pas:3s; +peignoir peignoir nom m s 6.65 16.96 5.94 14.73 +peignoirs peignoir nom m p 6.65 16.96 0.72 2.23 +peignons peindre ver 36.05 80.27 0.18 0.00 imp:pre:1p;ind:pre:1p; +peigné peigner ver m s 2.25 4.39 0.08 0.41 par:pas; +peignée peignée nom f s 0.17 1.49 0.17 1.22 +peignées peignée nom f p 0.17 1.49 0.00 0.27 +peignés peigné adj m p 0.06 1.89 0.02 1.01 +peina peiner ver 7.65 12.36 0.00 0.14 ind:pas:3s; +peinaient peiner ver 7.65 12.36 0.01 0.61 ind:imp:3p; +peinais peiner ver 7.65 12.36 0.02 0.07 ind:imp:1s; +peinait peiner ver 7.65 12.36 0.03 2.43 ind:imp:3s; +peinant peiner ver 7.65 12.36 0.15 0.68 par:pre; +peinard peinard adj m s 3.92 9.59 2.91 5.88 +peinarde peinard adj f s 3.92 9.59 0.33 1.35 +peinardement peinardement adv 0.00 0.20 0.00 0.20 +peinardes peinard adj f p 3.92 9.59 0.02 0.20 +peinards peinard adj m p 3.92 9.59 0.67 2.16 +peindra peindre ver 36.05 80.27 0.19 0.07 ind:fut:3s; +peindrai peindre ver 36.05 80.27 0.51 0.34 ind:fut:1s; +peindrais peindre ver 36.05 80.27 0.06 0.27 cnd:pre:1s;cnd:pre:2s; +peindrait peindre ver 36.05 80.27 0.16 0.34 cnd:pre:3s; +peindras peindre ver 36.05 80.27 0.17 0.14 ind:fut:2s; +peindre peindre ver 36.05 80.27 12.75 22.64 inf;; +peine peine nom f s 199.75 399.53 193.42 388.24 +peinent peiner ver 7.65 12.36 0.54 0.27 ind:pre:3p; +peiner peiner ver 7.65 12.36 0.45 2.36 ind:pre:2p;inf; +peinera peiner ver 7.65 12.36 0.14 0.07 ind:fut:3s; +peinerait peiner ver 7.65 12.36 0.18 0.00 cnd:pre:3s; +peinerez peiner ver 7.65 12.36 0.01 0.00 ind:fut:2p; +peines peine nom f p 199.75 399.53 6.34 11.28 +peineuse peineuse adj m s 0.00 0.07 0.00 0.07 +peinez peiner ver 7.65 12.36 0.54 0.07 imp:pre:2p;ind:pre:2p; +peinions peiner ver 7.65 12.36 0.00 0.07 ind:imp:1p; +peinons peiner ver 7.65 12.36 0.14 0.07 ind:pre:1p; +peinât peiner ver 7.65 12.36 0.00 0.07 sub:imp:3s; +peins peindre ver 36.05 80.27 3.77 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s; +peint peindre ver m s 36.05 80.27 11.95 17.84 ind:pre:3s;par:pas;par:pas; +peinte peindre ver f s 36.05 80.27 0.95 9.53 par:pas; +peintes peindre ver f p 36.05 80.27 0.61 5.95 par:pas; +peinèrent peiner ver 7.65 12.36 0.00 0.07 ind:pas:3p; +peintre peintre nom s 17.02 45.07 13.60 31.22 +peintres peintre nom p 17.02 45.07 3.42 13.85 +peints peindre ver m p 36.05 80.27 1.00 7.64 par:pas; +peinture peinture nom f s 29.53 67.64 25.83 59.39 +peintures peinture nom f p 29.53 67.64 3.70 8.24 +peinturlure peinturlurer ver 0.47 2.23 0.14 0.00 ind:pre:1s;ind:pre:3s; +peinturlurent peinturlurer ver 0.47 2.23 0.00 0.07 ind:pre:3p; +peinturlurer peinturlurer ver 0.47 2.23 0.11 0.41 inf; +peinturlures peinturlurer ver 0.47 2.23 0.00 0.07 ind:pre:2s; +peinturlureur peinturlureur nom m s 0.00 0.14 0.00 0.07 +peinturlureurs peinturlureur nom m p 0.00 0.14 0.00 0.07 +peinturluré peinturlurer ver m s 0.47 2.23 0.12 0.74 par:pas; +peinturlurée peinturlurer ver f s 0.47 2.23 0.02 0.47 par:pas; +peinturlurées peinturlurer ver f p 0.47 2.23 0.03 0.14 par:pas; +peinturlurés peinturlurer ver m p 0.47 2.23 0.05 0.34 par:pas; +peinturé peinturer ver m s 0.02 0.20 0.02 0.14 par:pas; +peinturée peinturer ver f s 0.02 0.20 0.00 0.07 par:pas; +peiné peiner ver m s 7.65 12.36 1.68 2.50 par:pas; +peinée peiner ver f s 7.65 12.36 0.14 0.74 par:pas; +peinées peiner ver f p 7.65 12.36 0.11 0.00 par:pas; +peinés peiner ver m p 7.65 12.36 0.22 0.20 par:pas; +pela peler ver 1.78 4.93 0.00 0.20 ind:pas:3s; +pelade pelade nom f s 0.16 0.47 0.16 0.41 +pelades pelade nom f p 0.16 0.47 0.00 0.07 +pelage pelage nom m s 0.44 6.01 0.44 5.74 +pelages pelage nom m p 0.44 6.01 0.00 0.27 +pelaient peler ver 1.78 4.93 0.00 0.07 ind:imp:3p; +pelait peler ver 1.78 4.93 0.01 0.41 ind:imp:3s; +pelant peler ver 1.78 4.93 0.00 0.27 par:pre; +peler peler ver 1.78 4.93 0.44 1.22 inf; +pelisse pelisse nom f s 0.11 3.51 0.11 2.84 +pelisses pelisse nom f p 0.11 3.51 0.00 0.68 +pellagre pellagre nom f s 0.04 0.00 0.04 0.00 +pelle_bêche pelle_bêche nom f s 0.00 0.14 0.00 0.07 +pelle_pioche pelle_pioche nom f s 0.00 0.41 0.00 0.07 +pelle pelle nom f s 10.10 15.61 8.75 11.35 +pelle_bêche pelle_bêche nom f p 0.00 0.14 0.00 0.07 +pelle_pioche pelle_pioche nom f p 0.00 0.41 0.00 0.34 +pelles pelle nom f p 10.10 15.61 1.35 4.26 +pelletage pelletage nom m s 0.02 0.00 0.02 0.00 +pelletaient pelleter ver 0.27 0.95 0.00 0.14 ind:imp:3p; +pelletait pelleter ver 0.27 0.95 0.00 0.27 ind:imp:3s; +pelletant pelleter ver 0.27 0.95 0.00 0.14 par:pre; +pelleter pelleter ver 0.27 0.95 0.27 0.34 inf; +pelleterie pelleterie nom f s 0.00 0.07 0.00 0.07 +pelleteur pelleteur nom m s 0.44 0.27 0.04 0.00 +pelleteuse pelleteur nom f s 0.44 0.27 0.40 0.14 +pelleteuses pelleteuse nom f p 0.02 0.00 0.02 0.00 +pelletiers pelletier nom m p 0.02 0.14 0.02 0.14 +pellette pelleter ver 0.27 0.95 0.00 0.07 ind:pre:3s; +pelletée pelletée nom f s 0.31 2.03 0.29 0.47 +pelletées pelletée nom f p 0.31 2.03 0.02 1.55 +pelliculages pelliculage nom m p 0.00 0.07 0.00 0.07 +pelliculaire pelliculaire adj f s 0.00 0.07 0.00 0.07 +pellicule pellicule nom f s 7.52 6.82 6.29 5.68 +pellicules pellicule nom f p 7.52 6.82 1.23 1.15 +pelliculé pelliculer ver m s 0.00 0.14 0.00 0.07 par:pas; +pelliculée pelliculer ver f s 0.00 0.14 0.00 0.07 par:pas; +pelloche pelloche nom f s 0.10 0.20 0.10 0.20 +pelota peloter ver 5.36 3.38 0.10 0.14 ind:pas:3s; +pelotage pelotage nom m s 0.21 0.61 0.19 0.34 +pelotages pelotage nom m p 0.21 0.61 0.02 0.27 +pelotaient peloter ver 5.36 3.38 0.03 0.14 ind:imp:3p; +pelotais peloter ver 5.36 3.38 0.07 0.00 ind:imp:1s;ind:imp:2s; +pelotait peloter ver 5.36 3.38 0.32 0.61 ind:imp:3s; +pelotant peloter ver 5.36 3.38 0.14 0.34 par:pre; +pelote pelote nom f s 0.98 6.01 0.94 4.19 +pelotent peloter ver 5.36 3.38 0.14 0.00 ind:pre:3p; +peloter peloter ver 5.36 3.38 2.90 1.22 inf; +peloterai peloter ver 5.36 3.38 0.04 0.07 ind:fut:1s; +peloterait peloter ver 5.36 3.38 0.01 0.00 cnd:pre:3s; +pelotes peloter ver 5.36 3.38 0.17 0.00 ind:pre:2s; +peloteur peloteur nom m s 0.03 0.14 0.02 0.00 +peloteurs peloteur nom m p 0.03 0.14 0.01 0.14 +peloteuse peloteur adj f s 0.00 0.20 0.00 0.14 +pelotez peloter ver 5.36 3.38 0.11 0.00 imp:pre:2p;ind:pre:2p; +peloton peloton nom m s 7.15 10.74 6.83 9.73 +pelotonna pelotonner ver 0.07 4.12 0.00 0.34 ind:pas:3s; +pelotonnai pelotonner ver 0.07 4.12 0.00 0.14 ind:pas:1s; +pelotonnaient pelotonner ver 0.07 4.12 0.01 0.07 ind:imp:3p; +pelotonnais pelotonner ver 0.07 4.12 0.00 0.07 ind:imp:1s; +pelotonnait pelotonner ver 0.07 4.12 0.00 0.14 ind:imp:3s; +pelotonnant pelotonner ver 0.07 4.12 0.00 0.07 par:pre; +pelotonne pelotonner ver 0.07 4.12 0.00 0.34 ind:pre:1s;ind:pre:3s; +pelotonnent pelotonner ver 0.07 4.12 0.00 0.14 ind:pre:3p; +pelotonner pelotonner ver 0.07 4.12 0.01 0.68 inf; +pelotonné pelotonner ver m s 0.07 4.12 0.00 1.22 par:pas; +pelotonnée pelotonner ver f s 0.07 4.12 0.02 0.61 par:pas; +pelotonnées pelotonner ver f p 0.07 4.12 0.00 0.14 par:pas; +pelotonnés pelotonner ver m p 0.07 4.12 0.02 0.20 par:pas; +pelotons peloton nom m p 7.15 10.74 0.32 1.01 +peloté peloter ver m s 5.36 3.38 0.28 0.00 par:pas; +pelotée peloter ver f s 5.36 3.38 0.38 0.14 par:pas; +pelotés peloter ver m p 5.36 3.38 0.32 0.00 par:pas; +pelouse pelouse nom f s 4.79 19.39 4.28 12.97 +pelouses pelouse nom f p 4.79 19.39 0.52 6.42 +pelé peler ver m s 1.78 4.93 0.14 0.95 par:pas; +peluche peluche nom f s 4.21 5.54 3.25 5.34 +peluches peluche nom f p 4.21 5.54 0.96 0.20 +pelucheuse pelucheux adj f s 0.31 1.76 0.03 0.54 +pelucheuses pelucheux adj f p 0.31 1.76 0.01 0.27 +pelucheux pelucheux adj m 0.31 1.76 0.27 0.95 +peluchée peluché adj f s 0.00 0.20 0.00 0.20 +pelée pelé adj f s 0.44 3.24 0.30 1.08 +pelées peler ver f p 1.78 4.93 0.00 0.34 par:pas; +pelure pelure nom f s 0.37 3.24 0.10 2.03 +pelures pelure nom f p 0.37 3.24 0.28 1.22 +pelés peler ver m p 1.78 4.93 0.02 0.41 par:pas; +pelvien pelvien adj m s 0.55 0.00 0.18 0.00 +pelvienne pelvien adj f s 0.55 0.00 0.37 0.00 +pelvis pelvis nom m 0.34 0.07 0.34 0.07 +pembina pembina nom f s 0.00 0.07 0.00 0.07 +pemmican pemmican nom m s 0.01 0.14 0.01 0.14 +penalties penalties nom m p 0.29 0.14 0.29 0.14 +penalty penalty nom m s 1.50 0.47 1.50 0.47 +penaud penaud adj m s 0.21 4.86 0.20 3.04 +penaude penaud adj f s 0.21 4.86 0.01 0.81 +penaudes penaud adj f p 0.21 4.86 0.00 0.07 +penauds penaud adj m p 0.21 4.86 0.00 0.95 +pence pence nom m p 1.71 0.14 1.71 0.14 +pencha pencher ver 16.90 155.88 0.10 34.05 ind:pas:3s; +penchai pencher ver 16.90 155.88 0.00 2.36 ind:pas:1s; +penchaient pencher ver 16.90 155.88 0.00 2.30 ind:imp:3p; +penchais pencher ver 16.90 155.88 0.23 1.22 ind:imp:1s;ind:imp:2s; +penchait pencher ver 16.90 155.88 0.26 13.92 ind:imp:3s; +penchant penchant nom m s 3.26 5.27 2.54 3.45 +penchante penchant adj f s 0.01 0.74 0.00 0.20 +penchants penchant nom m p 3.26 5.27 0.72 1.82 +penche pencher ver 16.90 155.88 7.30 26.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +penchement penchement nom m s 0.00 0.20 0.00 0.20 +penchent pencher ver 16.90 155.88 0.44 2.91 ind:pre:3p; +pencher pencher ver 16.90 155.88 2.08 11.76 inf; +penchera pencher ver 16.90 155.88 0.18 0.27 ind:fut:3s; +pencherai pencher ver 16.90 155.88 0.20 0.00 ind:fut:1s; +pencheraient pencher ver 16.90 155.88 0.04 0.07 cnd:pre:3p; +pencherais pencher ver 16.90 155.88 0.13 0.34 cnd:pre:1s; +pencherait pencher ver 16.90 155.88 0.04 0.14 cnd:pre:3s; +pencheras pencher ver 16.90 155.88 0.01 0.00 ind:fut:2s; +pencherez pencher ver 16.90 155.88 0.01 0.00 ind:fut:2p; +pencheriez pencher ver 16.90 155.88 0.01 0.00 cnd:pre:2p; +pencherons pencher ver 16.90 155.88 0.01 0.00 ind:fut:1p; +pencheront pencher ver 16.90 155.88 0.37 0.14 ind:fut:3p; +penches pencher ver 16.90 155.88 0.28 0.14 ind:pre:2s; +penchez pencher ver 16.90 155.88 1.75 0.27 imp:pre:2p;ind:pre:2p; +penchiez pencher ver 16.90 155.88 0.04 0.00 ind:imp:2p; +penchions pencher ver 16.90 155.88 0.02 0.34 ind:imp:1p; +penchâmes pencher ver 16.90 155.88 0.01 0.20 ind:pas:1p; +penchons pencher ver 16.90 155.88 0.11 0.27 imp:pre:1p;ind:pre:1p; +penchât pencher ver 16.90 155.88 0.00 0.14 sub:imp:3s; +penchèrent pencher ver 16.90 155.88 0.00 0.81 ind:pas:3p; +penché pencher ver m s 16.90 155.88 1.61 25.07 par:pas; +penchée pencher ver f s 16.90 155.88 1.32 12.36 par:pas; +penchées pencher ver f p 16.90 155.88 0.01 1.35 par:pas; +penchés penché adj m p 1.30 11.01 0.21 1.55 +pend pendre ver 43.03 58.04 2.50 6.69 ind:pre:3s; +pendable pendable adj s 0.04 0.88 0.02 0.61 +pendables pendable adj m p 0.04 0.88 0.02 0.27 +pendaient pendre ver 43.03 58.04 0.51 7.30 ind:imp:3p; +pendais pendre ver 43.03 58.04 0.02 0.00 ind:imp:1s; +pendaison pendaison nom f s 3.02 1.08 2.78 1.08 +pendaisons pendaison nom f p 3.02 1.08 0.24 0.00 +pendait pendre ver 43.03 58.04 0.86 13.38 ind:imp:3s; +pendant pendant pre 312.62 450.14 312.62 450.14 +pendante pendant adj_sup f s 3.56 12.50 0.36 3.24 +pendantes pendant adj_sup f p 3.56 12.50 0.19 3.92 +pendants pendant adj_sup m p 3.56 12.50 0.18 1.49 +pendard pendard nom m s 0.05 0.07 0.03 0.07 +pendarde pendard nom f s 0.05 0.07 0.01 0.00 +pendards pendard nom m p 0.05 0.07 0.01 0.00 +pende pendre ver 43.03 58.04 1.15 0.34 sub:pre:1s;sub:pre:3s; +pendeloque pendeloque nom f s 0.01 1.08 0.01 0.14 +pendeloques pendeloque nom f p 0.01 1.08 0.00 0.95 +pendent pendre ver 43.03 58.04 1.41 4.53 ind:pre:3p; +pendentif pendentif nom m s 1.04 1.22 1.00 0.74 +pendentifs pendentif nom m p 1.04 1.22 0.03 0.47 +penderie penderie nom f s 1.88 3.11 1.84 2.50 +penderies penderie nom f p 1.88 3.11 0.04 0.61 +pendeur pendeur nom m s 0.01 0.00 0.01 0.00 +pendez pendre ver 43.03 58.04 1.60 0.14 imp:pre:2p;ind:pre:2p; +pendillaient pendiller ver 0.01 0.41 0.00 0.14 ind:imp:3p; +pendillait pendiller ver 0.01 0.41 0.00 0.07 ind:imp:3s; +pendillant pendiller ver 0.01 0.41 0.00 0.14 par:pre; +pendille pendiller ver 0.01 0.41 0.01 0.07 ind:pre:3s; +pendirent pendre ver 43.03 58.04 0.00 0.07 ind:pas:3p; +pendit pendre ver 43.03 58.04 0.09 1.08 ind:pas:3s; +pendjabi pendjabi nom m s 0.04 0.00 0.04 0.00 +pendons pendre ver 43.03 58.04 0.63 0.00 imp:pre:1p;ind:pre:1p; +pendouillaient pendouiller ver 0.47 2.23 0.01 0.27 ind:imp:3p; +pendouillait pendouiller ver 0.47 2.23 0.00 0.47 ind:imp:3s; +pendouillant pendouiller ver 0.47 2.23 0.02 0.47 par:pre; +pendouille pendouiller ver 0.47 2.23 0.30 0.61 ind:pre:1s;ind:pre:3s; +pendouillent pendouiller ver 0.47 2.23 0.03 0.27 ind:pre:3p; +pendouiller pendouiller ver 0.47 2.23 0.11 0.07 inf; +pendouilles pendouiller ver 0.47 2.23 0.00 0.07 ind:pre:2s; +pendra pendre ver 43.03 58.04 1.83 0.34 ind:fut:3s; +pendrai pendre ver 43.03 58.04 0.28 0.00 ind:fut:1s; +pendrais pendre ver 43.03 58.04 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +pendrait pendre ver 43.03 58.04 0.28 0.07 cnd:pre:3s; +pendras pendre ver 43.03 58.04 0.17 0.00 ind:fut:2s; +pendre pendre ver 43.03 58.04 12.40 8.51 inf; +pendrez pendre ver 43.03 58.04 0.05 0.00 ind:fut:2p; +pendrons pendre ver 43.03 58.04 0.07 0.00 ind:fut:1p; +pendront pendre ver 43.03 58.04 0.82 0.07 ind:fut:3p; +pends pendre ver 43.03 58.04 1.13 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +pendu pendre ver m s 43.03 58.04 11.02 5.74 par:pas; +pendue pendre ver f s 43.03 58.04 2.19 2.97 par:pas; +pendues pendu adj f p 2.90 3.78 0.18 0.47 +pendulaire pendulaire adj s 0.00 0.20 0.00 0.20 +pendulait penduler ver 0.00 0.07 0.00 0.07 ind:imp:3s; +pendule pendule nom s 4.78 11.82 3.37 9.86 +pendules pendule nom f p 4.78 11.82 1.42 1.96 +pendulette pendulette nom f s 0.03 1.15 0.03 0.95 +pendulettes pendulette nom f p 0.03 1.15 0.00 0.20 +pendus pendre ver m p 43.03 58.04 1.52 2.50 par:pas; +pennage pennage nom m s 0.12 0.00 0.12 0.00 +penne penne nom f s 0.39 0.54 0.34 0.34 +pennes penne nom f p 0.39 0.54 0.05 0.20 +pennies pennies nom m p 0.62 0.20 0.62 0.20 +pennon pennon nom m s 0.02 0.07 0.01 0.00 +pennons pennon nom m p 0.02 0.07 0.01 0.07 +pennées penné adj f p 0.00 0.07 0.00 0.07 +penny penny nom f s 3.49 0.14 3.49 0.14 +penon penon nom m s 0.00 0.07 0.00 0.07 +pensa penser ver 1485.46 869.80 1.52 78.11 ind:pas:3s; +pensable pensable adj f s 0.19 0.81 0.19 0.81 +pensai penser ver 1485.46 869.80 0.86 16.28 ind:pas:1s; +pensaient penser ver 1485.46 869.80 6.32 10.61 ind:imp:3p; +pensais penser ver 1485.46 869.80 199.51 69.66 ind:imp:1s;ind:imp:2s; +pensait penser ver 1485.46 869.80 32.53 109.05 ind:imp:3s; +pensant penser ver 1485.46 869.80 10.22 32.50 par:pre; +pensante pensant adj f s 1.09 6.08 0.19 1.22 +pensantes pensant adj f p 1.09 6.08 0.06 0.14 +pensants pensant adj m p 1.09 6.08 0.03 0.41 +pense_bête pense_bête nom m s 0.34 0.41 0.17 0.41 +pense_bête pense_bête nom m p 0.34 0.41 0.17 0.00 +pense penser ver 1485.46 869.80 517.64 178.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +pensent penser ver 1485.46 869.80 37.42 12.30 ind:pre:3p; +penser penser ver 1485.46 869.80 140.23 161.62 inf; +pensera penser ver 1485.46 869.80 3.66 1.62 ind:fut:3s; +penserai penser ver 1485.46 869.80 3.44 1.28 ind:fut:1s; +penseraient penser ver 1485.46 869.80 0.90 0.88 cnd:pre:3p; +penserais penser ver 1485.46 869.80 2.38 1.22 cnd:pre:1s;cnd:pre:2s; +penserait penser ver 1485.46 869.80 3.17 2.16 cnd:pre:3s; +penseras penser ver 1485.46 869.80 1.84 0.95 ind:fut:2s; +penserez penser ver 1485.46 869.80 0.93 0.61 ind:fut:2p; +penseriez penser ver 1485.46 869.80 0.66 0.20 cnd:pre:2p; +penserions penser ver 1485.46 869.80 0.01 0.20 cnd:pre:1p; +penserons penser ver 1485.46 869.80 0.30 0.14 ind:fut:1p; +penseront penser ver 1485.46 869.80 2.19 0.61 ind:fut:3p; +penses penser ver 1485.46 869.80 186.90 38.24 ind:pre:2s;sub:pre:2s; +penseur penseur nom m s 1.64 3.92 0.84 1.96 +penseurs penseur nom m p 1.64 3.92 0.80 1.69 +penseuse penseur nom f s 1.64 3.92 0.00 0.14 +penseuses penseur nom f p 1.64 3.92 0.00 0.14 +pensez penser ver 1485.46 869.80 148.70 41.69 imp:pre:2p;ind:pre:2p; +pensiez penser ver 1485.46 869.80 12.33 2.16 ind:imp:2p;sub:pre:2p; +pensif pensif adj m s 0.80 9.80 0.58 5.95 +pensifs pensif adj m p 0.80 9.80 0.01 1.42 +pension pension nom f s 17.75 19.19 16.45 18.18 +pensionna pensionner ver 0.02 0.20 0.00 0.07 ind:pas:3s; +pensionnaire pensionnaire nom s 2.41 10.54 1.42 4.19 +pensionnaires pensionnaire nom p 2.41 10.54 0.99 6.35 +pensionnat pensionnat nom m s 1.88 2.77 1.87 2.64 +pensionnats pensionnat nom m p 1.88 2.77 0.01 0.14 +pensionner pensionner ver 0.02 0.20 0.00 0.07 inf; +pensionné pensionner ver m s 0.02 0.20 0.01 0.00 par:pas; +pensionnés pensionné nom m p 0.21 0.20 0.21 0.00 +pensions penser ver 1485.46 869.80 5.41 4.26 ind:imp:1p; +pensive pensif adj f s 0.80 9.80 0.21 2.43 +pensivement pensivement adv 0.01 5.20 0.01 5.20 +pensâmes penser ver 1485.46 869.80 0.00 0.07 ind:pas:1p; +pensons penser ver 1485.46 869.80 13.89 3.65 imp:pre:1p;ind:pre:1p; +pensât penser ver 1485.46 869.80 0.00 0.74 sub:imp:3s; +pensèrent penser ver 1485.46 869.80 0.07 1.01 ind:pas:3p; +pensé penser ver m s 1485.46 869.80 151.67 97.57 imp:pre:2s;par:pas;par:pas;par:pas;par:pas;par:pas; +pensée pensée nom f s 57.87 151.55 26.25 98.92 +pensées pensée nom f p 57.87 151.55 31.61 52.64 +pensum pensum nom m s 0.03 1.22 0.02 0.95 +pensums pensum nom m p 0.03 1.22 0.01 0.27 +pensés penser ver m p 1485.46 869.80 0.09 0.41 par:pas; +pentacle pentacle nom m s 0.57 0.20 0.54 0.20 +pentacles pentacle nom m p 0.57 0.20 0.04 0.00 +pentagonal pentagonal adj m s 0.01 0.00 0.01 0.00 +pentagone pentagone nom m s 0.26 0.20 0.25 0.14 +pentagones pentagone nom m p 0.26 0.20 0.01 0.07 +pentagramme pentagramme nom m s 0.70 0.00 0.67 0.00 +pentagrammes pentagramme nom m p 0.70 0.00 0.04 0.00 +pentamètre pentamètre nom s 0.17 0.00 0.12 0.00 +pentamètres pentamètre nom p 0.17 0.00 0.05 0.00 +pentasyllabe pentasyllabe nom m s 0.00 0.07 0.00 0.07 +pentateuque pentateuque nom m s 0.00 0.07 0.00 0.07 +pentathlon pentathlon nom m s 0.00 0.07 0.00 0.07 +pente pente nom f s 4.82 49.66 4.46 39.19 +pentecôte pentecôte nom f s 0.57 3.85 0.57 3.85 +pentecôtiste pentecôtiste nom s 0.04 0.20 0.02 0.20 +pentecôtistes pentecôtiste nom p 0.04 0.20 0.02 0.00 +pentes pente nom f p 4.82 49.66 0.36 10.47 +penthiobarbital penthiobarbital nom m s 0.01 0.00 0.01 0.00 +penthotal penthotal nom m s 0.06 0.20 0.06 0.20 +penthouse penthouse nom m s 0.90 0.00 0.90 0.00 +pentothal pentothal nom m s 0.17 0.00 0.17 0.00 +pentu pentu adj m s 0.05 1.22 0.05 0.61 +pentue pentu adj f s 0.05 1.22 0.00 0.27 +pentues pentu adj f p 0.05 1.22 0.00 0.07 +pentélique pentélique adj m s 0.00 0.07 0.00 0.07 +penture penture nom f s 0.00 0.14 0.00 0.07 +pentures penture nom f p 0.00 0.14 0.00 0.07 +pentus pentu adj m p 0.05 1.22 0.00 0.27 +people people adj 3.55 0.20 3.55 0.20 +pep pep nom m s 0.33 0.14 0.15 0.14 +peppermint peppermint nom m s 0.05 0.34 0.05 0.34 +peps pep nom m p 0.33 0.14 0.18 0.00 +pepsine pepsine nom f s 0.01 0.00 0.01 0.00 +peptide peptide nom m s 0.03 0.00 0.03 0.00 +peptique peptique adj s 0.03 0.00 0.03 0.00 +percale percale nom f s 0.11 0.68 0.11 0.61 +percales percale nom f p 0.11 0.68 0.00 0.07 +perce_oreille perce_oreille nom m s 0.04 0.20 0.03 0.07 +perce_oreille perce_oreille nom m p 0.04 0.20 0.01 0.14 +perce_pierre perce_pierre nom f s 0.00 0.07 0.00 0.07 +perce percer ver 15.77 42.03 2.09 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +percement percement nom m s 0.01 0.41 0.01 0.41 +percent percer ver 15.77 42.03 0.42 1.08 ind:pre:3p; +percepteur percepteur nom m s 1.03 1.42 0.93 1.28 +percepteurs percepteur nom m p 1.03 1.42 0.09 0.14 +perceptible perceptible adj s 0.46 7.43 0.40 6.01 +perceptibles perceptible adj p 0.46 7.43 0.06 1.42 +perceptif perceptif adj m s 0.09 0.14 0.01 0.14 +perception perception nom f s 2.92 3.72 2.62 2.70 +perceptions perception nom f p 2.92 3.72 0.31 1.01 +perceptive perceptif adj f s 0.09 0.14 0.07 0.00 +perceptives perceptif adj f p 0.09 0.14 0.01 0.00 +perceptrice percepteur nom f s 1.03 1.42 0.01 0.00 +perceptuels perceptuel adj m p 0.01 0.00 0.01 0.00 +percer percer ver 15.77 42.03 6.19 11.22 inf; +percera percer ver 15.77 42.03 0.26 0.20 ind:fut:3s; +percerai percer ver 15.77 42.03 0.08 0.00 ind:fut:1s; +percerait percer ver 15.77 42.03 0.03 0.00 cnd:pre:3s; +percerez percer ver 15.77 42.03 0.11 0.07 ind:fut:2p; +perceur perceur nom m s 1.21 1.01 0.12 0.20 +perceurs perceur nom m p 1.21 1.01 0.12 0.47 +perceuse perceur nom f s 1.21 1.01 0.97 0.20 +perceuses perceuse nom f p 0.01 0.00 0.01 0.00 +percevaient percevoir ver 7.39 41.01 0.01 0.81 ind:imp:3p; +percevais percevoir ver 7.39 41.01 0.26 2.30 ind:imp:1s;ind:imp:2s; +percevait percevoir ver 7.39 41.01 0.15 6.62 ind:imp:3s; +percevant percevoir ver 7.39 41.01 0.20 1.15 par:pre; +percevez percevoir ver 7.39 41.01 0.26 0.00 imp:pre:2p;ind:pre:2p; +perceviez percevoir ver 7.39 41.01 0.00 0.07 ind:imp:2p; +percevions percevoir ver 7.39 41.01 0.01 0.27 ind:imp:1p; +percevoir percevoir ver 7.39 41.01 1.19 9.19 inf; +percevons percevoir ver 7.39 41.01 0.20 0.20 ind:pre:1p; +percevra percevoir ver 7.39 41.01 0.17 0.00 ind:fut:3s; +percevrais percevoir ver 7.39 41.01 0.01 0.00 cnd:pre:1s; +percevrait percevoir ver 7.39 41.01 0.01 0.14 cnd:pre:3s; +percevrez percevoir ver 7.39 41.01 0.01 0.00 ind:fut:2p; +percez percer ver 15.77 42.03 0.33 0.00 imp:pre:2p;ind:pre:2p; +percha percher ver 2.37 12.97 0.04 0.20 ind:pas:3s; +perchaient percher ver 2.37 12.97 0.10 0.34 ind:imp:3p; +perchais percher ver 2.37 12.97 0.01 0.14 ind:imp:1s; +perchait percher ver 2.37 12.97 0.11 0.14 ind:imp:3s; +perche perche nom f s 6.11 7.43 5.67 4.93 +perchent percher ver 2.37 12.97 0.00 0.14 ind:pre:3p; +percher percher ver 2.37 12.97 0.23 0.68 inf;; +percheron percheron nom m s 0.02 2.30 0.02 1.22 +percheronne percheron adj f s 0.00 0.68 0.00 0.14 +percheronnes percheron nom f p 0.02 2.30 0.00 0.07 +percherons percheron nom m p 0.02 2.30 0.00 1.01 +perches perche nom f p 6.11 7.43 0.45 2.50 +perchettes perchette nom f p 0.00 0.07 0.00 0.07 +percheurs percheur adj m p 0.01 0.00 0.01 0.00 +perchiste perchiste nom s 0.00 0.07 0.00 0.07 +perchlorate perchlorate nom m s 0.04 0.00 0.04 0.00 +perchlorique perchlorique adj m s 0.01 0.00 0.01 0.00 +perchman perchman nom m s 0.14 0.07 0.14 0.00 +perchmans perchman nom m p 0.14 0.07 0.00 0.07 +perchoir perchoir nom m s 0.46 3.78 0.43 3.58 +perchoirs perchoir nom m p 0.46 3.78 0.03 0.20 +perchèrent percher ver 2.37 12.97 0.00 0.07 ind:pas:3p; +perché percher ver m s 2.37 12.97 1.12 4.59 par:pas; +perchée percher ver f s 2.37 12.97 0.49 2.97 par:pas; +perchées percher ver f p 2.37 12.97 0.00 0.68 par:pas; +perchés percher ver m p 2.37 12.97 0.10 2.70 par:pas; +percions percer ver 15.77 42.03 0.00 0.07 ind:imp:1p; +perclus perclus adj m 0.03 1.62 0.03 1.28 +percluse perclus adj f s 0.03 1.62 0.00 0.27 +percluses perclus adj f p 0.03 1.62 0.00 0.07 +perco perco nom m s 0.07 0.27 0.07 0.14 +percolateur percolateur nom m s 0.11 1.28 0.09 0.95 +percolateurs percolateur nom m p 0.11 1.28 0.02 0.34 +percolation percolation nom f s 0.01 0.00 0.01 0.00 +percoler percoler ver 0.01 0.00 0.01 0.00 inf; +percos perco nom m p 0.07 0.27 0.00 0.14 +percèrent percer ver 15.77 42.03 0.10 0.47 ind:pas:3p; +percé percer ver m s 15.77 42.03 3.67 7.57 par:pas; +percée percée nom f s 1.37 3.99 1.20 3.58 +percées percer ver f p 15.77 42.03 0.46 2.03 par:pas; +percés percer ver m p 15.77 42.03 0.51 2.77 par:pas; +percussion percussion nom f s 1.04 1.76 0.16 0.61 +percussionniste percussionniste nom s 0.09 0.00 0.08 0.00 +percussionnistes percussionniste nom p 0.09 0.00 0.01 0.00 +percussions percussion nom f p 1.04 1.76 0.89 1.15 +percuta percuter ver 3.87 2.77 0.01 0.61 ind:pas:3s; +percutait percuter ver 3.87 2.77 0.02 0.14 ind:imp:3s; +percutant percutant adj m s 0.38 1.01 0.32 0.41 +percutante percutant adj f s 0.38 1.01 0.01 0.00 +percutantes percutant adj f p 0.38 1.01 0.02 0.07 +percutants percutant adj m p 0.38 1.01 0.03 0.54 +percute percuter ver 3.87 2.77 0.49 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +percutent percuter ver 3.87 2.77 0.04 0.07 ind:pre:3p; +percuter percuter ver 3.87 2.77 0.69 0.74 inf; +percuterait percuter ver 3.87 2.77 0.00 0.07 cnd:pre:3s; +percutes percuter ver 3.87 2.77 0.26 0.00 ind:pre:2s; +percuteur percuteur nom m s 0.25 0.07 0.22 0.07 +percuteurs percuteur nom m p 0.25 0.07 0.02 0.00 +percutez percuter ver 3.87 2.77 0.06 0.00 imp:pre:2p;ind:pre:2p; +percuté percuter ver m s 3.87 2.77 2.07 0.54 par:pas; +percutée percuter ver f s 3.87 2.77 0.12 0.00 par:pas; +percutées percuter ver f p 3.87 2.77 0.02 0.00 par:pas; +percutés percuter ver m p 3.87 2.77 0.06 0.00 par:pas; +perd perdre ver 546.08 377.36 39.97 25.00 ind:pre:3s; +perdîmes perdre ver 546.08 377.36 0.02 0.20 ind:pas:1p; +perdît perdre ver 546.08 377.36 0.00 0.61 sub:imp:3s; +perdaient perdre ver 546.08 377.36 0.53 7.64 ind:imp:3p; +perdais perdre ver 546.08 377.36 2.85 4.80 ind:imp:1s;ind:imp:2s; +perdait perdre ver 546.08 377.36 2.52 24.73 ind:imp:3s; +perdant perdant nom m s 6.71 1.42 4.04 0.74 +perdante perdant nom f s 6.71 1.42 0.68 0.07 +perdants perdant nom m p 6.71 1.42 2.00 0.61 +perde perdre ver 546.08 377.36 5.62 4.19 sub:pre:1s;sub:pre:3s; +perdent perdre ver 546.08 377.36 8.12 8.72 ind:pre:3p; +perdes perdre ver 546.08 377.36 0.89 0.20 sub:pre:2s; +perdez perdre ver 546.08 377.36 15.04 2.16 imp:pre:2p;ind:pre:2p; +perdiez perdre ver 546.08 377.36 0.59 0.20 ind:imp:2p; +perdions perdre ver 546.08 377.36 0.43 0.88 ind:imp:1p; +perdirent perdre ver 546.08 377.36 0.35 1.82 ind:pas:3p; +perdis perdre ver 546.08 377.36 0.27 2.16 ind:pas:1s; +perdisse perdre ver 546.08 377.36 0.00 0.07 sub:imp:1s; +perdit perdre ver 546.08 377.36 1.39 11.35 ind:pas:3s; +perdition perdition nom f s 1.18 2.36 1.18 2.36 +perdons perdre ver 546.08 377.36 9.38 2.36 imp:pre:1p;ind:pre:1p; +perdra perdre ver 546.08 377.36 5.23 1.82 ind:fut:3s; +perdrai perdre ver 546.08 377.36 3.10 0.68 ind:fut:1s; +perdraient perdre ver 546.08 377.36 0.17 0.47 cnd:pre:3p; +perdrais perdre ver 546.08 377.36 2.26 1.01 cnd:pre:1s;cnd:pre:2s; +perdrait perdre ver 546.08 377.36 1.94 3.31 cnd:pre:3s; +perdras perdre ver 546.08 377.36 3.79 0.27 ind:fut:2s; +perdre perdre ver 546.08 377.36 131.47 97.70 inf; +perdreau perdreau nom m s 1.45 2.84 0.84 1.15 +perdreaux perdreau nom m p 1.45 2.84 0.61 1.69 +perdrez perdre ver 546.08 377.36 2.66 0.34 ind:fut:2p; +perdriez perdre ver 546.08 377.36 0.57 0.41 cnd:pre:2p; +perdrions perdre ver 546.08 377.36 0.11 0.68 cnd:pre:1p; +perdrix perdrix nom f 2.83 1.49 2.83 1.49 +perdrons perdre ver 546.08 377.36 1.08 0.34 ind:fut:1p; +perdront perdre ver 546.08 377.36 0.50 0.34 ind:fut:3p; +perds perdre ver 546.08 377.36 48.13 11.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +perdu perdre ver m s 546.08 377.36 217.23 115.07 par:pas; +perdue perdre ver f s 546.08 377.36 22.38 22.70 par:pas; +perdues perdu adj f p 36.46 58.45 3.43 6.15 +perdurable perdurable adj m s 0.00 0.07 0.00 0.07 +perdurait perdurer ver 0.73 0.74 0.01 0.14 ind:imp:3s; +perdure perdurer ver 0.73 0.74 0.32 0.27 ind:pre:3s; +perdurent perdurer ver 0.73 0.74 0.05 0.20 ind:pre:3p; +perdurer perdurer ver 0.73 0.74 0.27 0.07 inf; +perdurera perdurer ver 0.73 0.74 0.05 0.00 ind:fut:3s; +perduré perdurer ver m s 0.73 0.74 0.03 0.07 par:pas; +perdus perdre ver m p 546.08 377.36 12.18 13.31 par:pas; +perestroïka perestroïka nom f s 0.00 0.07 0.00 0.07 +perfectibilité perfectibilité nom f s 0.00 0.07 0.00 0.07 +perfectible perfectible adj f s 0.00 0.14 0.00 0.07 +perfectibles perfectible adj p 0.00 0.14 0.00 0.07 +perfection perfection nom f s 7.76 16.82 7.66 16.01 +perfectionna perfectionner ver 2.27 5.61 0.00 0.14 ind:pas:3s; +perfectionnaient perfectionner ver 2.27 5.61 0.00 0.07 ind:imp:3p; +perfectionnais perfectionner ver 2.27 5.61 0.00 0.07 ind:imp:1s; +perfectionnait perfectionner ver 2.27 5.61 0.02 0.14 ind:imp:3s; +perfectionnant perfectionner ver 2.27 5.61 0.00 0.47 par:pre; +perfectionne perfectionner ver 2.27 5.61 0.09 0.54 ind:pre:1s;ind:pre:3s; +perfectionnement perfectionnement nom m s 0.31 1.35 0.30 0.95 +perfectionnements perfectionnement nom m p 0.31 1.35 0.01 0.41 +perfectionnent perfectionner ver 2.27 5.61 0.00 0.07 ind:pre:3p; +perfectionner perfectionner ver 2.27 5.61 1.01 1.28 inf; +perfectionnerais perfectionner ver 2.27 5.61 0.00 0.07 cnd:pre:1s; +perfectionnions perfectionner ver 2.27 5.61 0.01 0.00 ind:imp:1p; +perfectionnisme perfectionnisme nom m s 0.21 0.14 0.21 0.14 +perfectionniste perfectionniste adj s 0.51 0.14 0.43 0.14 +perfectionnistes perfectionniste adj m p 0.51 0.14 0.09 0.00 +perfectionnèrent perfectionner ver 2.27 5.61 0.02 0.00 ind:pas:3p; +perfectionné perfectionner ver m s 2.27 5.61 0.73 1.62 par:pas; +perfectionnée perfectionner ver f s 2.27 5.61 0.06 0.34 par:pas; +perfectionnées perfectionner ver f p 2.27 5.61 0.13 0.34 par:pas; +perfectionnés perfectionner ver m p 2.27 5.61 0.19 0.47 par:pas; +perfections perfection nom f p 7.76 16.82 0.10 0.81 +perfecto perfecto nom m s 0.19 0.27 0.19 0.20 +perfectos perfecto nom m p 0.19 0.27 0.00 0.07 +perfide perfide adj s 2.48 4.86 1.69 3.18 +perfidement perfidement adv 0.10 0.61 0.10 0.61 +perfides perfide adj p 2.48 4.86 0.79 1.69 +perfidie perfidie nom f s 1.30 3.65 1.17 3.24 +perfidies perfidie nom f p 1.30 3.65 0.14 0.41 +perfora perforer ver 1.45 1.35 0.00 0.14 ind:pas:3s; +perforage perforage nom m s 0.01 0.00 0.01 0.00 +perforait perforer ver 1.45 1.35 0.01 0.14 ind:imp:3s; +perforant perforant adj m s 0.32 0.14 0.04 0.00 +perforante perforant adj f s 0.32 0.14 0.11 0.07 +perforantes perforant adj f p 0.32 0.14 0.05 0.07 +perforants perforant adj m p 0.32 0.14 0.12 0.00 +perforateur perforateur nom m s 0.05 0.14 0.05 0.07 +perforation perforation nom f s 0.67 0.88 0.53 0.47 +perforations perforation nom f p 0.67 0.88 0.14 0.41 +perforatrice perforateur nom f s 0.05 0.14 0.00 0.07 +perfore perforer ver 1.45 1.35 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +perforer perforer ver 1.45 1.35 0.21 0.47 inf; +perforera perforer ver 1.45 1.35 0.01 0.00 ind:fut:3s; +perforeuse perforeuse nom f s 0.04 0.14 0.04 0.14 +perforez perforer ver 1.45 1.35 0.01 0.00 imp:pre:2p; +perforions perforer ver 1.45 1.35 0.00 0.07 ind:imp:1p; +performance performance nom f s 4.71 4.19 3.48 2.23 +performances performance nom f p 4.71 4.19 1.23 1.96 +performant performant adj m s 0.90 0.41 0.48 0.14 +performante performant adj f s 0.90 0.41 0.11 0.00 +performantes performant adj f p 0.90 0.41 0.04 0.07 +performants performant adj m p 0.90 0.41 0.27 0.20 +performer performer nom m s 0.00 0.07 0.00 0.07 +perforé perforer ver m s 1.45 1.35 0.87 0.27 par:pas; +perforée perforer ver f s 1.45 1.35 0.07 0.14 par:pas; +perforées perforé adj f p 0.62 0.81 0.03 0.27 +perforés perforé adj m p 0.62 0.81 0.10 0.14 +perfuse perfuser ver 0.25 0.00 0.15 0.00 ind:pre:3s; +perfuser perfuser ver 0.25 0.00 0.08 0.00 inf; +perfusion perfusion nom f s 2.14 0.81 1.95 0.54 +perfusions perfusion nom f p 2.14 0.81 0.19 0.27 +perfusé perfuser ver m s 0.25 0.00 0.02 0.00 par:pas; +pergola pergola nom f s 0.10 0.68 0.10 0.68 +pergélisol pergélisol nom m s 0.01 0.00 0.01 0.00 +perla perler ver 0.38 7.77 0.01 0.14 ind:pas:3s; +perlaient perler ver 0.38 7.77 0.00 0.81 ind:imp:3p; +perlait perler ver 0.38 7.77 0.00 1.89 ind:imp:3s; +perlant perler ver 0.38 7.77 0.00 0.34 par:pre; +perle perle nom f s 10.57 23.85 4.13 7.30 +perlent perler ver 0.38 7.77 0.14 0.41 ind:pre:3p; +perler perler ver 0.38 7.77 0.02 1.42 inf; +perleront perler ver 0.38 7.77 0.01 0.00 ind:fut:3p; +perles perle nom f p 10.57 23.85 6.44 16.55 +perlimpinpin perlimpinpin nom m s 0.03 0.20 0.03 0.20 +perlière perlière adj f s 0.01 0.00 0.01 0.00 +perlières perlier adj f p 0.00 0.27 0.00 0.07 +perlot perlot nom m s 0.00 0.34 0.00 0.27 +perlots perlot nom m p 0.00 0.34 0.00 0.07 +perlouse perlouse nom f s 0.00 0.74 0.00 0.20 +perlouses perlouse nom f p 0.00 0.74 0.00 0.54 +perlouze perlouze nom f s 0.00 0.47 0.00 0.34 +perlouzes perlouze nom f p 0.00 0.47 0.00 0.14 +perlèrent perler ver 0.38 7.77 0.00 0.07 ind:pas:3p; +perlé perler ver m s 0.38 7.77 0.14 0.20 par:pas; +perlée perlé adj f s 0.11 1.01 0.01 0.34 +perlées perlé adj f p 0.11 1.01 0.00 0.14 +perlés perlé adj m p 0.11 1.01 0.10 0.07 +perm perm nom f s 1.38 1.22 1.38 1.01 +permît permettre ver 172.86 184.19 0.00 2.23 sub:imp:3s; +permafrost permafrost nom m s 0.07 0.14 0.07 0.14 +permalloy permalloy nom m s 0.01 0.00 0.01 0.00 +permane permaner ver 0.00 0.14 0.00 0.14 ind:pre:3s; +permanence permanence nom f s 5.87 12.64 5.85 12.30 +permanences permanence nom f p 5.87 12.64 0.02 0.34 +permanent permanent adj m s 8.86 14.80 3.73 7.97 +permanente permanent adj f s 8.86 14.80 4.03 5.20 +permanenter permanenter ver 0.07 0.14 0.02 0.00 inf; +permanentes permanent adj f p 8.86 14.80 0.63 0.41 +permanents permanent adj m p 8.86 14.80 0.48 1.22 +permanenté permanenter ver m s 0.07 0.14 0.01 0.00 par:pas; +permanentée permanenter ver f s 0.07 0.14 0.01 0.00 par:pas; +permanentés permanenter ver m p 0.07 0.14 0.01 0.14 par:pas; +permanganate permanganate nom m s 0.04 0.20 0.04 0.20 +perme perme nom f s 0.58 1.22 0.57 1.22 +permes perme nom f p 0.58 1.22 0.01 0.00 +permet permettre ver 172.86 184.19 22.88 23.99 ind:pre:3s; +permets permettre ver 172.86 184.19 16.70 6.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +permettaient permettre ver 172.86 184.19 0.17 7.43 ind:imp:3p; +permettais permettre ver 172.86 184.19 0.10 0.61 ind:imp:1s;ind:imp:2s; +permettait permettre ver 172.86 184.19 2.04 26.22 ind:imp:3s; +permettant permettre ver 172.86 184.19 2.23 6.15 par:pre; +permette permettre ver 172.86 184.19 1.68 2.03 sub:pre:1s;sub:pre:3s; +permettent permettre ver 172.86 184.19 4.38 7.23 ind:pre:3p; +permettes permettre ver 172.86 184.19 0.04 0.00 sub:pre:2s; +permettez permettre ver 172.86 184.19 48.28 10.14 imp:pre:2p;ind:pre:2p; +permettiez permettre ver 172.86 184.19 0.03 0.07 ind:imp:2p; +permettions permettre ver 172.86 184.19 0.02 0.27 ind:imp:1p; +permettons permettre ver 172.86 184.19 0.17 0.14 imp:pre:1p;ind:pre:1p; +permettra permettre ver 172.86 184.19 6.38 3.85 ind:fut:3s; +permettrai permettre ver 172.86 184.19 3.96 0.88 ind:fut:1s; +permettraient permettre ver 172.86 184.19 0.42 2.16 cnd:pre:3p; +permettrais permettre ver 172.86 184.19 1.11 0.54 cnd:pre:1s;cnd:pre:2s; +permettrait permettre ver 172.86 184.19 3.11 8.24 cnd:pre:3s; +permettras permettre ver 172.86 184.19 0.05 0.27 ind:fut:2s; +permettre permettre ver 172.86 184.19 26.32 25.81 inf;; +permettrez permettre ver 172.86 184.19 0.84 0.14 ind:fut:2p; +permettriez permettre ver 172.86 184.19 0.02 0.07 cnd:pre:2p; +permettrions permettre ver 172.86 184.19 0.01 0.00 cnd:pre:1p; +permettrons permettre ver 172.86 184.19 0.12 0.00 ind:fut:1p; +permettront permettre ver 172.86 184.19 0.91 1.62 ind:fut:3p; +permirent permettre ver 172.86 184.19 0.24 1.89 ind:pas:3p; +permis permettre ver m 172.86 184.19 28.04 35.54 ind:pas:1s;par:pas;par:pas; +permise permettre ver f s 172.86 184.19 0.94 1.28 par:pas; +permises permettre ver f p 172.86 184.19 0.30 0.47 par:pas; +permissent permettre ver 172.86 184.19 0.00 0.07 sub:imp:3p; +permissifs permissif adj m p 0.09 0.07 0.01 0.07 +permission permission nom f s 31.18 19.12 30.11 17.70 +permissionnaire permissionnaire nom s 0.16 1.96 0.01 0.47 +permissionnaires permissionnaire nom p 0.16 1.96 0.14 1.49 +permissions permission nom f p 31.18 19.12 1.07 1.42 +permissive permissif adj f s 0.09 0.07 0.08 0.00 +permissivité permissivité nom f s 0.00 0.14 0.00 0.14 +permit permettre ver 172.86 184.19 1.39 8.58 ind:pas:3s; +perméabilité perméabilité nom f s 0.01 0.00 0.01 0.00 +perméable perméable adj s 0.23 1.01 0.19 0.88 +perméables perméable adj p 0.23 1.01 0.04 0.14 +permutant permutant adj m s 0.01 0.07 0.01 0.07 +permutation permutation nom f s 0.37 0.81 0.26 0.41 +permutations permutation nom f p 0.37 0.81 0.11 0.41 +permute permuter ver 0.41 0.41 0.24 0.00 ind:pre:1s;ind:pre:3s; +permutent permuter ver 0.41 0.41 0.00 0.07 ind:pre:3p; +permuter permuter ver 0.41 0.41 0.13 0.20 inf; +permutèrent permuter ver 0.41 0.41 0.00 0.07 ind:pas:3p; +permuté permuter ver m s 0.41 0.41 0.03 0.07 par:pas; +pernicieuse pernicieux adj f s 0.40 2.16 0.20 0.74 +pernicieuses pernicieux adj f p 0.40 2.16 0.02 0.34 +pernicieux pernicieux adj m 0.40 2.16 0.18 1.08 +pernod pernod nom m s 0.17 4.73 0.17 4.46 +pernods pernod nom m p 0.17 4.73 0.00 0.27 +peroxydase peroxydase nom f s 0.01 0.00 0.01 0.00 +peroxyde peroxyde nom m s 0.17 0.00 0.17 0.00 +peroxydé peroxyder ver m s 0.15 0.07 0.15 0.07 par:pas; +perpendiculaire perpendiculaire adj s 0.23 1.89 0.21 1.35 +perpendiculairement perpendiculairement adv 0.02 1.15 0.02 1.15 +perpendiculaires perpendiculaire adj p 0.23 1.89 0.02 0.54 +perpette perpette nom f s 0.21 0.41 0.21 0.41 +perpignan perpignan nom m s 0.00 0.14 0.00 0.14 +perplexe perplexe adj s 2.27 10.81 2.03 9.39 +perplexes perplexe adj p 2.27 10.81 0.24 1.42 +perplexité perplexité nom f s 0.21 5.54 0.21 4.66 +perplexités perplexité nom f p 0.21 5.54 0.00 0.88 +perpète perpète adv 1.46 1.49 1.46 1.49 +perpètrent perpétrer ver 1.86 2.03 0.01 0.00 ind:pre:3p; +perpètres perpétrer ver 1.86 2.03 0.00 0.07 ind:pre:2s; +perpétra perpétrer ver 1.86 2.03 0.01 0.00 ind:pas:3s; +perpétrait perpétrer ver 1.86 2.03 0.01 0.14 ind:imp:3s; +perpétration perpétration nom f s 0.11 0.07 0.11 0.07 +perpétrer perpétrer ver 1.86 2.03 0.35 0.68 inf; +perpétrons perpétrer ver 1.86 2.03 0.00 0.07 ind:pre:1p; +perpétré perpétrer ver m s 1.86 2.03 0.94 0.41 par:pas; +perpétrée perpétrer ver f s 1.86 2.03 0.09 0.20 par:pas; +perpétrées perpétrer ver f p 1.86 2.03 0.09 0.07 par:pas; +perpétrés perpétrer ver m p 1.86 2.03 0.36 0.41 par:pas; +perpétua perpétuer ver 2.81 3.92 0.32 0.00 ind:pas:3s; +perpétuaient perpétuer ver 2.81 3.92 0.00 0.47 ind:imp:3p; +perpétuait perpétuer ver 2.81 3.92 0.01 0.47 ind:imp:3s; +perpétuant perpétuer ver 2.81 3.92 0.03 0.07 par:pre; +perpétuation perpétuation nom f s 0.04 0.54 0.04 0.54 +perpétue perpétuer ver 2.81 3.92 0.18 0.68 ind:pre:1s;ind:pre:3s; +perpétuel perpétuel adj m s 3.00 18.24 1.87 8.04 +perpétuelle perpétuel adj f s 3.00 18.24 0.83 7.43 +perpétuellement perpétuellement adv 0.26 4.66 0.26 4.66 +perpétuelles perpétuel adj f p 3.00 18.24 0.15 1.62 +perpétuels perpétuel adj m p 3.00 18.24 0.15 1.15 +perpétuent perpétuer ver 2.81 3.92 0.05 0.20 ind:pre:3p; +perpétuer perpétuer ver 2.81 3.92 1.73 1.62 inf; +perpétuera perpétuer ver 2.81 3.92 0.38 0.00 ind:fut:3s; +perpétuerait perpétuer ver 2.81 3.92 0.00 0.07 cnd:pre:3s; +perpétuité perpétuité nom f s 3.24 2.09 3.11 2.09 +perpétuités perpétuité nom f p 3.24 2.09 0.13 0.00 +perpétué perpétuer ver m s 2.81 3.92 0.09 0.27 par:pas; +perpétuée perpétuer ver f s 2.81 3.92 0.03 0.00 par:pas; +perpétués perpétuer ver m p 2.81 3.92 0.00 0.07 par:pas; +perquise perquise nom f s 0.14 0.54 0.14 0.54 +perquisition perquisition nom f s 3.75 2.30 3.54 1.82 +perquisitionne perquisitionner ver 1.30 0.74 0.14 0.20 ind:pre:1s;ind:pre:3s; +perquisitionnent perquisitionner ver 1.30 0.74 0.11 0.00 ind:pre:3p; +perquisitionner perquisitionner ver 1.30 0.74 0.72 0.47 inf; +perquisitionnera perquisitionner ver 1.30 0.74 0.01 0.00 ind:fut:3s; +perquisitionné perquisitionner ver m s 1.30 0.74 0.31 0.07 par:pas; +perquisitions perquisition nom f p 3.75 2.30 0.21 0.47 +perrier perrier nom m s 0.01 0.00 0.01 0.00 +perrières perrière nom f p 0.00 0.14 0.00 0.14 +perron perron nom m s 1.27 18.24 1.27 17.91 +perrons perron nom m p 1.27 18.24 0.00 0.34 +perroquet perroquet nom m s 5.55 8.78 4.39 7.36 +perroquets perroquet nom m p 5.55 8.78 1.17 1.42 +perré perré nom m s 0.00 0.41 0.00 0.27 +perruche perruche nom f s 0.78 2.84 0.47 0.81 +perruches perruche nom f p 0.78 2.84 0.31 2.03 +perruque perruque nom f s 9.68 9.59 8.03 7.03 +perruques perruque nom f p 9.68 9.59 1.65 2.57 +perruquier perruquier nom m s 0.07 0.27 0.04 0.14 +perruquiers perruquier nom m p 0.07 0.27 0.02 0.07 +perruquière perruquier nom f s 0.07 0.27 0.01 0.07 +perrés perré nom m p 0.00 0.41 0.00 0.14 +pers pers adj m 0.25 0.27 0.25 0.27 +persan persan adj m s 0.53 3.04 0.25 1.08 +persane persan adj f s 0.53 3.04 0.06 0.68 +persanes persan adj f p 0.53 3.04 0.00 0.54 +persans persan adj m p 0.53 3.04 0.22 0.74 +perse perse adj s 0.92 0.74 0.48 0.47 +perses perse adj p 0.92 0.74 0.44 0.27 +persienne persienne nom f s 0.37 7.16 0.01 0.41 +persiennes persienne nom f p 0.37 7.16 0.36 6.76 +persifla persifler ver 0.17 0.68 0.00 0.27 ind:pas:3s; +persiflage persiflage nom m s 0.19 0.41 0.19 0.34 +persiflages persiflage nom m p 0.19 0.41 0.00 0.07 +persiflait persifler ver 0.17 0.68 0.00 0.27 ind:imp:3s; +persifle persifler ver 0.17 0.68 0.02 0.00 ind:pre:3s; +persifler persifler ver 0.17 0.68 0.14 0.14 inf; +persifleur persifleur adj m s 0.00 0.41 0.00 0.20 +persifleurs persifleur nom m p 0.00 0.20 0.00 0.14 +persifleuse persifleur adj f s 0.00 0.41 0.00 0.14 +persiflé persifler ver m s 0.17 0.68 0.01 0.00 par:pas; +persil persil nom m s 1.75 2.36 1.75 2.36 +persillé persillé adj m s 0.01 0.41 0.00 0.34 +persillée persillé adj f s 0.01 0.41 0.01 0.00 +persillées persillé adj f p 0.01 0.41 0.00 0.07 +persique persique adj m s 0.17 0.34 0.17 0.34 +persista persister ver 3.66 15.41 0.02 0.81 ind:pas:3s; +persistai persister ver 3.66 15.41 0.01 0.07 ind:pas:1s; +persistaient persister ver 3.66 15.41 0.02 1.22 ind:imp:3p; +persistais persister ver 3.66 15.41 0.02 0.14 ind:imp:1s; +persistait persister ver 3.66 15.41 0.04 4.32 ind:imp:3s; +persistance persistance nom f s 0.17 1.76 0.17 1.76 +persistant persistant adj m s 0.67 2.64 0.17 1.22 +persistante persistant adj f s 0.67 2.64 0.31 1.08 +persistantes persistant adj f p 0.67 2.64 0.11 0.34 +persistants persistant adj m p 0.67 2.64 0.07 0.00 +persiste persister ver 3.66 15.41 1.11 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persistent persister ver 3.66 15.41 0.32 0.81 ind:pre:3p; +persister persister ver 3.66 15.41 0.27 0.88 inf; +persistera persister ver 3.66 15.41 0.12 0.07 ind:fut:3s; +persisterai persister ver 3.66 15.41 0.01 0.07 ind:fut:1s; +persisterait persister ver 3.66 15.41 0.01 0.07 cnd:pre:3s; +persisteriez persister ver 3.66 15.41 0.00 0.07 cnd:pre:2p; +persistes persister ver 3.66 15.41 0.47 0.34 ind:pre:2s; +persistez persister ver 3.66 15.41 1.06 0.74 imp:pre:2p;ind:pre:2p; +persistions persister ver 3.66 15.41 0.00 0.14 ind:imp:1p; +persistons persister ver 3.66 15.41 0.01 0.07 imp:pre:1p;ind:pre:1p; +persistèrent persister ver 3.66 15.41 0.01 0.07 ind:pas:3p; +persisté persister ver m s 3.66 15.41 0.14 0.54 par:pas; +perso perso adj s 2.38 0.20 2.33 0.20 +persona_grata persona_grata adj 0.01 0.00 0.01 0.00 +persona_non_grata persona_non_grata nom f 0.08 0.07 0.08 0.07 +personnage_clé personnage_clé nom m s 0.02 0.00 0.02 0.00 +personnage personnage nom m s 31.62 86.96 20.65 49.80 +personnages personnage nom m p 31.62 86.96 10.97 37.16 +personnalisaient personnaliser ver 0.30 0.47 0.00 0.07 ind:imp:3p; +personnalisation personnalisation nom f s 0.05 0.00 0.05 0.00 +personnalise personnaliser ver 0.30 0.47 0.00 0.07 ind:pre:3s; +personnalisent personnaliser ver 0.30 0.47 0.00 0.07 ind:pre:3p; +personnaliser personnaliser ver 0.30 0.47 0.10 0.07 inf; +personnalisez personnaliser ver 0.30 0.47 0.01 0.00 imp:pre:2p; +personnalisme personnalisme nom m s 0.00 0.20 0.00 0.20 +personnalisons personnaliser ver 0.30 0.47 0.01 0.00 imp:pre:1p; +personnalisé personnalisé adj m s 0.64 0.27 0.39 0.07 +personnalisée personnalisé adj f s 0.64 0.27 0.20 0.07 +personnalisées personnalisé adj f p 0.64 0.27 0.05 0.14 +personnalité personnalité nom f s 16.90 19.86 13.85 13.24 +personnalités personnalité nom f p 16.90 19.86 3.04 6.62 +personne personne pro_ind m s 577.60 312.16 577.60 312.16 +personnel personnel adj m s 61.02 50.00 28.48 18.38 +personnelle personnel adj f s 61.02 50.00 15.28 17.30 +personnellement personnellement adv 18.39 14.93 18.39 14.93 +personnelles personnel adj f p 61.02 50.00 7.66 7.36 +personnels personnel adj m p 61.02 50.00 9.60 6.96 +personnes personne nom_sup f p 296.74 209.80 105.79 63.85 +personnifiaient personnifier ver 0.28 0.74 0.00 0.07 ind:imp:3p; +personnifiait personnifier ver 0.28 0.74 0.03 0.07 ind:imp:3s; +personnifiant personnifier ver 0.28 0.74 0.00 0.07 par:pre; +personnification personnification nom f s 0.30 0.20 0.30 0.14 +personnifications personnification nom f p 0.30 0.20 0.00 0.07 +personnifie personnifier ver 0.28 0.74 0.05 0.14 ind:pre:1s;ind:pre:3s; +personnifier personnifier ver 0.28 0.74 0.04 0.07 inf; +personnifié personnifié adj m s 0.30 0.54 0.17 0.41 +personnifiée personnifié adj f s 0.30 0.54 0.14 0.14 +persos perso adj p 2.38 0.20 0.06 0.00 +perspective perspective nom f s 7.33 36.76 5.47 27.64 +perspectives perspective nom f p 7.33 36.76 1.86 9.12 +perspicace perspicace adj s 2.31 2.50 2.16 1.69 +perspicaces perspicace adj m p 2.31 2.50 0.15 0.81 +perspicacité perspicacité nom f s 0.95 1.28 0.95 1.28 +perspiration perspiration nom f s 0.03 0.00 0.03 0.00 +persuada persuader ver 19.86 36.55 0.24 1.76 ind:pas:3s; +persuadai persuader ver 19.86 36.55 0.01 0.68 ind:pas:1s; +persuadaient persuader ver 19.86 36.55 0.02 0.34 ind:imp:3p; +persuadais persuader ver 19.86 36.55 0.01 0.88 ind:imp:1s; +persuadait persuader ver 19.86 36.55 0.28 1.15 ind:imp:3s; +persuadant persuader ver 19.86 36.55 0.24 1.22 par:pre; +persuade persuader ver 19.86 36.55 1.55 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persuadent persuader ver 19.86 36.55 0.36 0.07 ind:pre:3p; +persuader persuader ver 19.86 36.55 4.50 12.23 inf; +persuadera persuader ver 19.86 36.55 0.29 0.07 ind:fut:3s; +persuaderai persuader ver 19.86 36.55 0.03 0.07 ind:fut:1s; +persuaderais persuader ver 19.86 36.55 0.02 0.07 cnd:pre:1s; +persuaderait persuader ver 19.86 36.55 0.00 0.14 cnd:pre:3s; +persuaderas persuader ver 19.86 36.55 0.03 0.00 ind:fut:2s; +persuaderez persuader ver 19.86 36.55 0.05 0.00 ind:fut:2p; +persuaderons persuader ver 19.86 36.55 0.02 0.00 ind:fut:1p; +persuadez persuader ver 19.86 36.55 0.83 0.00 imp:pre:2p;ind:pre:2p; +persuadiez persuader ver 19.86 36.55 0.04 0.00 ind:imp:2p; +persuadons persuader ver 19.86 36.55 0.04 0.07 imp:pre:1p;ind:pre:1p; +persuadèrent persuader ver 19.86 36.55 0.01 0.20 ind:pas:3p; +persuadé persuader ver m s 19.86 36.55 7.17 10.07 par:pas; +persuadée persuader ver f s 19.86 36.55 2.65 3.78 ind:imp:3s;par:pas; +persuadées persuader ver f p 19.86 36.55 0.01 0.00 par:pas; +persuadés persuader ver m p 19.86 36.55 1.46 1.62 par:pas; +persuasif persuasif adj m s 1.28 2.50 0.80 1.15 +persuasifs persuasif adj m p 1.28 2.50 0.16 0.27 +persuasion persuasion nom f s 0.81 2.09 0.81 2.09 +persuasive persuasif adj f s 1.28 2.50 0.33 0.81 +persuasives persuasif adj f p 1.28 2.50 0.00 0.27 +persécutaient persécuter ver 4.52 4.19 0.00 0.07 ind:imp:3p; +persécutait persécuter ver 4.52 4.19 0.05 0.07 ind:imp:3s; +persécutant persécuter ver 4.52 4.19 0.01 0.34 par:pre; +persécute persécuter ver 4.52 4.19 1.22 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persécutent persécuter ver 4.52 4.19 0.47 0.27 ind:pre:3p; +persécuter persécuter ver 4.52 4.19 0.75 0.47 inf; +persécuteraient persécuter ver 4.52 4.19 0.00 0.07 cnd:pre:3p; +persécuterez persécuter ver 4.52 4.19 0.14 0.00 ind:fut:2p; +persécutes persécuter ver 4.52 4.19 0.16 0.00 ind:pre:2s; +persécuteur persécuteur nom m s 0.25 0.95 0.05 0.20 +persécuteurs persécuteur nom m p 0.25 0.95 0.20 0.68 +persécutez persécuter ver 4.52 4.19 0.08 0.00 imp:pre:2p;ind:pre:2p; +persécution persécution nom f s 2.40 4.66 1.79 2.09 +persécutions persécution nom f p 2.40 4.66 0.61 2.57 +persécutrices persécuteur nom f p 0.25 0.95 0.00 0.07 +persécuté persécuter ver m s 4.52 4.19 0.60 1.49 par:pas; +persécutée persécuter ver f s 4.52 4.19 0.37 0.20 par:pas; +persécutées persécuter ver f p 4.52 4.19 0.04 0.20 par:pas; +persécutés persécuter ver m p 4.52 4.19 0.63 0.47 par:pas; +perséides perséides nom f p 0.01 0.00 0.01 0.00 +persévère persévérer ver 1.47 3.24 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persévères persévérer ver 1.47 3.24 0.12 0.00 ind:pre:2s; +persévéra persévérer ver 1.47 3.24 0.00 0.14 ind:pas:3s; +persévérai persévérer ver 1.47 3.24 0.00 0.27 ind:pas:1s; +persévéraient persévérer ver 1.47 3.24 0.00 0.07 ind:imp:3p; +persévérait persévérer ver 1.47 3.24 0.01 0.20 ind:imp:3s; +persévéramment persévéramment adv 0.00 0.07 0.00 0.07 +persévérance persévérance nom f s 0.75 2.09 0.75 2.09 +persévérant persévérant adj m s 0.36 0.34 0.30 0.14 +persévérante persévérant adj f s 0.36 0.34 0.04 0.00 +persévérantes persévérant adj f p 0.36 0.34 0.00 0.14 +persévérants persévérant adj m p 0.36 0.34 0.02 0.07 +persévérer persévérer ver 1.47 3.24 0.48 1.28 inf; +persévérerai persévérer ver 1.47 3.24 0.02 0.00 ind:fut:1s; +persévérerait persévérer ver 1.47 3.24 0.01 0.00 cnd:pre:3s; +persévérez persévérer ver 1.47 3.24 0.24 0.20 imp:pre:2p;ind:pre:2p; +persévériez persévérer ver 1.47 3.24 0.00 0.07 ind:imp:2p; +persévérions persévérer ver 1.47 3.24 0.01 0.00 ind:imp:1p; +persévérons persévérer ver 1.47 3.24 0.04 0.20 imp:pre:1p;ind:pre:1p; +persévéré persévérer ver m s 1.47 3.24 0.12 0.27 par:pas; +perte perte nom f s 37.80 36.28 30.20 26.62 +pertes perte nom f p 37.80 36.28 7.60 9.66 +perçût percevoir ver 7.39 41.01 0.00 0.14 sub:imp:3s; +perça percer ver 15.77 42.03 0.04 1.15 ind:pas:3s; +perçage perçage nom m s 0.03 0.07 0.03 0.07 +perçaient percer ver 15.77 42.03 0.23 2.03 ind:imp:3p; +perçais percer ver 15.77 42.03 0.01 0.20 ind:imp:1s; +perçait percer ver 15.77 42.03 0.31 5.00 ind:imp:3s; +perçant perçant adj m s 0.90 5.74 0.41 2.50 +perçante perçant adj f s 0.90 5.74 0.22 0.81 +perçantes perçant adj f p 0.90 5.74 0.00 0.14 +perçants perçant adj m p 0.90 5.74 0.27 2.30 +perçois percevoir ver 7.39 41.01 1.50 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +perçoit percevoir ver 7.39 41.01 0.90 4.73 ind:pre:3s; +perçoive percevoir ver 7.39 41.01 0.13 0.47 sub:pre:1s;sub:pre:3s; +perçoivent percevoir ver 7.39 41.01 0.26 0.81 ind:pre:3p; +perçons percer ver 15.77 42.03 0.05 0.00 imp:pre:1p;ind:pre:1p; +perçât percer ver 15.77 42.03 0.00 0.07 sub:imp:3s; +perçu percevoir ver m s 7.39 41.01 1.41 4.53 par:pas; +perçue percevoir ver f s 7.39 41.01 0.40 0.81 par:pas; +perçues perçu adj f p 0.31 1.35 0.06 0.07 +perçurent percevoir ver 7.39 41.01 0.01 0.41 ind:pas:3p; +perçus percevoir ver m p 7.39 41.01 0.24 1.35 ind:pas:1s;par:pas; +perçut percevoir ver 7.39 41.01 0.05 4.32 ind:pas:3s; +pertinemment pertinemment adv 0.77 1.49 0.77 1.49 +pertinence pertinence nom f s 0.57 0.34 0.57 0.34 +pertinent pertinent adj m s 2.22 1.28 1.10 0.41 +pertinente pertinent adj f s 2.22 1.28 0.58 0.27 +pertinentes pertinent adj f p 2.22 1.28 0.33 0.41 +pertinents pertinent adj m p 2.22 1.28 0.21 0.20 +pertuis pertuis nom m 0.00 0.34 0.00 0.34 +pertuisane pertuisane nom f s 0.00 0.20 0.00 0.07 +pertuisanes pertuisane nom f p 0.00 0.20 0.00 0.14 +perturba perturber ver 11.79 3.58 0.03 0.00 ind:pas:3s; +perturbaient perturber ver 11.79 3.58 0.01 0.07 ind:imp:3p; +perturbait perturber ver 11.79 3.58 0.28 0.27 ind:imp:3s; +perturbant perturbant adj m s 1.00 0.14 0.83 0.07 +perturbante perturbant adj f s 1.00 0.14 0.13 0.00 +perturbants perturbant adj m p 1.00 0.14 0.04 0.07 +perturbateur perturbateur adj m s 0.36 0.54 0.27 0.34 +perturbateurs perturbateur nom m p 0.17 0.20 0.06 0.00 +perturbation perturbation nom f s 1.79 1.55 1.20 0.47 +perturbations perturbation nom f p 1.79 1.55 0.59 1.08 +perturbatrice perturbateur adj f s 0.36 0.54 0.04 0.07 +perturbe perturber ver 11.79 3.58 2.54 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +perturbent perturber ver 11.79 3.58 0.32 0.07 ind:pre:3p; +perturber perturber ver 11.79 3.58 2.66 1.15 inf; +perturbera perturber ver 11.79 3.58 0.10 0.00 ind:fut:3s; +perturberait perturber ver 11.79 3.58 0.12 0.00 cnd:pre:3s; +perturberont perturber ver 11.79 3.58 0.02 0.00 ind:fut:3p; +perturbez perturber ver 11.79 3.58 0.12 0.00 ind:pre:2p; +perturbé perturber ver m s 11.79 3.58 2.83 1.01 par:pas; +perturbée perturber ver f s 11.79 3.58 2.08 0.34 par:pas; +perturbées perturber ver f p 11.79 3.58 0.20 0.00 par:pas; +perturbés perturbé adj m p 3.81 0.74 0.52 0.34 +pervenche pervenche adj 0.33 1.08 0.33 1.08 +pervenches pervenche nom f p 0.37 0.81 0.08 0.47 +pervers pervers nom m 8.01 0.88 7.77 0.54 +perverse pervers adj f s 5.83 6.15 1.27 2.23 +perversement perversement adv 0.00 0.14 0.00 0.14 +perverses pervers adj f p 5.83 6.15 0.41 0.54 +perversion perversion nom f s 3.00 1.69 1.61 1.22 +perversions perversion nom f p 3.00 1.69 1.39 0.47 +perversité perversité nom f s 0.72 1.49 0.72 1.49 +perverti perverti adj m s 0.74 0.61 0.45 0.14 +pervertie pervertir ver f s 1.55 1.49 0.17 0.20 par:pas; +perverties perverti adj f p 0.74 0.61 0.03 0.07 +pervertir pervertir ver 1.55 1.49 0.65 0.74 inf; +pervertis perverti adj m p 0.74 0.61 0.16 0.20 +pervertissaient pervertir ver 1.55 1.49 0.00 0.07 ind:imp:3p; +pervertissait pervertir ver 1.55 1.49 0.00 0.07 ind:imp:3s; +pervertissant pervertir ver 1.55 1.49 0.01 0.00 par:pre; +pervertisse pervertir ver 1.55 1.49 0.02 0.00 sub:pre:1s;sub:pre:3s; +pervertit pervertir ver 1.55 1.49 0.29 0.00 ind:pre:3s; +pesa peser ver 23.41 70.88 0.01 2.16 ind:pas:3s; +pesage pesage nom m s 0.00 0.68 0.00 0.68 +pesai peser ver 23.41 70.88 0.00 0.07 ind:pas:1s; +pesaient peser ver 23.41 70.88 0.35 3.99 ind:imp:3p; +pesais peser ver 23.41 70.88 0.27 0.81 ind:imp:1s;ind:imp:2s; +pesait peser ver 23.41 70.88 1.95 18.72 ind:imp:3s; +pesamment pesamment adv 0.00 4.93 0.00 4.93 +pesant pesant adj m s 2.62 17.64 1.21 6.76 +pesante pesant adj f s 2.62 17.64 0.79 6.69 +pesantes pesant adj f p 2.62 17.64 0.01 2.16 +pesanteur pesanteur nom f s 1.12 6.96 1.12 6.69 +pesanteurs pesanteur nom f p 1.12 6.96 0.00 0.27 +pesants pesant adj m p 2.62 17.64 0.61 2.03 +peser peser ver 23.41 70.88 3.92 13.72 inf; +peseta peseta nom f s 6.92 0.68 0.11 0.07 +pesetas peseta nom f p 6.92 0.68 6.81 0.61 +peseurs peseur nom m p 0.00 0.07 0.00 0.07 +pesez peser ver 23.41 70.88 0.88 0.14 imp:pre:2p;ind:pre:2p; +pesions peser ver 23.41 70.88 0.00 0.14 ind:imp:1p; +peso peso nom m s 11.02 0.81 0.73 0.20 +peson peson nom m s 0.00 0.20 0.00 0.20 +pesons peser ver 23.41 70.88 0.16 0.27 imp:pre:1p;ind:pre:1p; +pesos peso nom m p 11.02 0.81 10.29 0.61 +pesât peser ver 23.41 70.88 0.00 0.07 sub:imp:3s; +pessah pessah nom s 0.03 0.00 0.03 0.00 +pessaire pessaire nom m s 0.01 0.00 0.01 0.00 +pesse pesse nom f s 0.01 0.00 0.01 0.00 +pessimisme pessimisme nom m s 0.75 2.30 0.75 2.30 +pessimiste pessimiste adj s 1.45 3.65 1.38 2.50 +pessimistes pessimiste nom p 0.41 0.81 0.07 0.20 +pesta pester ver 0.34 4.59 0.00 0.54 ind:pas:3s; +pestaient pester ver 0.34 4.59 0.00 0.07 ind:imp:3p; +pestais pester ver 0.34 4.59 0.03 0.14 ind:imp:1s;ind:imp:2s; +pestait pester ver 0.34 4.59 0.01 1.15 ind:imp:3s; +pestant pester ver 0.34 4.59 0.02 1.08 par:pre; +peste peste ono 0.40 0.20 0.40 0.20 +pestent pester ver 0.34 4.59 0.16 0.20 ind:pre:3p; +pester pester ver 0.34 4.59 0.02 0.61 inf; +pestes peste nom f p 16.95 8.31 0.27 0.07 +pesteuse pesteux adj f s 0.00 0.07 0.00 0.07 +pestez pester ver 0.34 4.59 0.00 0.07 ind:pre:2p; +pesèrent peser ver 23.41 70.88 0.01 0.07 ind:pas:3p; +pesticide pesticide nom m s 1.11 0.00 0.21 0.00 +pesticides pesticide nom m p 1.11 0.00 0.90 0.00 +pestiféré pestiféré nom m s 0.71 1.01 0.15 0.20 +pestiférée pestiféré nom f s 0.71 1.01 0.21 0.07 +pestiférées pestiféré nom f p 0.71 1.01 0.00 0.07 +pestiférés pestiféré nom m p 0.71 1.01 0.36 0.68 +pestilence pestilence nom f s 0.08 1.22 0.06 1.15 +pestilences pestilence nom f p 0.08 1.22 0.02 0.07 +pestilentiel pestilentiel adj m s 0.63 1.08 0.27 0.14 +pestilentielle pestilentiel adj f s 0.63 1.08 0.04 0.54 +pestilentielles pestilentiel adj f p 0.63 1.08 0.30 0.27 +pestilentiels pestilentiel adj m p 0.63 1.08 0.01 0.14 +pesté pester ver m s 0.34 4.59 0.00 0.20 par:pas; +pesé peser ver m s 23.41 70.88 0.97 5.27 par:pas; +pesée pesée nom f s 0.61 2.36 0.61 2.09 +pesées peser ver f p 23.41 70.88 0.02 0.14 par:pas; +pesés peser ver m p 23.41 70.88 0.02 0.61 par:pas; +pet_de_loup pet_de_loup nom m s 0.00 0.07 0.00 0.07 +pet pet nom m s 4.30 5.41 3.51 4.53 +petiot petiot adj m s 0.69 1.49 0.56 0.81 +petiote petiot adj f s 0.69 1.49 0.11 0.54 +petiots petiot adj m p 0.69 1.49 0.03 0.14 +petit_beurre petit_beurre nom m s 0.00 0.95 0.00 0.14 +petit_bourgeois petit_bourgeois adj m 0.77 1.42 0.77 1.42 +petit_cousin petit_cousin nom m s 0.00 0.07 0.00 0.07 +petit_déjeuner petit_déjeuner nom m s 13.51 0.07 13.37 0.00 +petit_fils petit_fils nom m 12.90 12.70 12.50 11.01 +petit_four petit_four nom m s 0.08 0.07 0.03 0.00 +petit_gris petit_gris nom m 0.51 0.00 0.27 0.00 +petit_lait petit_lait nom m s 0.05 0.54 0.05 0.54 +petit_maître petit_maître nom m s 0.20 0.07 0.20 0.07 +petit_neveu petit_neveu nom m s 0.04 0.95 0.04 0.61 +petit_nègre petit_nègre nom m s 0.00 0.14 0.00 0.14 +petit_salé petit_salé nom m s 0.00 0.07 0.00 0.07 +petit_suisse petit_suisse nom m s 0.01 0.20 0.01 0.00 +petit petit adj m s 1106.80 1541.96 573.72 653.78 +petite_bourgeoise petite_bourgeoise adj f s 0.11 0.27 0.11 0.27 +petite_cousine petite_cousine nom f s 0.00 0.14 0.00 0.14 +petite_fille petite_fille nom f s 5.30 6.35 4.97 5.74 +petite_nièce petite_nièce nom f s 0.02 0.20 0.02 0.20 +petite petit adj f s 1106.80 1541.96 355.66 491.82 +petitement petitement adv 0.14 1.15 0.14 1.15 +petite_bourgeoise petite_bourgeoise nom f p 0.00 0.34 0.00 0.14 +petite_fille petite_fille nom f p 5.30 6.35 0.33 0.61 +petites petit adj f p 1106.80 1541.96 64.50 152.16 +petitesse petitesse nom f s 0.09 2.16 0.08 1.82 +petitesses petitesse nom f p 0.09 2.16 0.01 0.34 +petit_beurre petit_beurre nom m p 0.00 0.95 0.00 0.81 +petit_bourgeois petit_bourgeois nom m p 0.71 2.16 0.32 1.42 +petit_déjeuner petit_déjeuner nom m p 13.51 0.07 0.14 0.07 +petit_enfant petit_enfant nom m p 5.76 3.04 5.76 3.04 +petit_fils petit_fils nom m p 12.90 12.70 0.40 1.69 +petit_four petit_four nom m p 0.08 0.07 0.04 0.07 +petit_gris petit_gris nom m p 0.51 0.00 0.25 0.00 +petit_neveu petit_neveu nom m p 0.04 0.95 0.00 0.34 +petits_pois petits_pois nom m p 0.10 0.00 0.10 0.00 +petit_suisse petit_suisse nom m p 0.01 0.20 0.00 0.20 +petits petit adj m p 1106.80 1541.96 112.92 244.19 +peton peton nom m s 0.09 0.47 0.01 0.07 +petons peton nom m p 0.09 0.47 0.08 0.41 +petros petro nom m p 0.00 1.28 0.00 1.28 +pet_de_nonne pet_de_nonne nom m p 0.00 0.41 0.00 0.41 +pets pet nom m p 4.30 5.41 0.79 0.88 +petzouille petzouille nom s 0.01 0.20 0.00 0.07 +petzouilles petzouille nom p 0.01 0.20 0.01 0.14 +peu_ou_prou peu_ou_prou adv 0.40 0.68 0.40 0.68 +peu peu nom_sup m 894.78 1023.38 894.78 1023.38 +peuchère peuchère ono 0.14 0.41 0.14 0.41 +peuh peuh ono 0.08 1.96 0.08 1.96 +peuhl peuhl adj m s 0.00 0.14 0.00 0.14 +peul peul adj m s 0.02 0.07 0.02 0.07 +peulh peulh nom s 0.00 0.07 0.00 0.07 +peupla peupler ver 4.58 19.66 0.02 0.34 ind:pas:3s; +peuplade peuplade nom f s 0.16 1.35 0.01 0.61 +peuplades peuplade nom f p 0.16 1.35 0.15 0.74 +peuplaient peupler ver 4.58 19.66 0.00 1.28 ind:imp:3p; +peuplait peupler ver 4.58 19.66 0.04 1.15 ind:imp:3s; +peuplant peupler ver 4.58 19.66 0.12 0.47 par:pre; +peuple peuple nom m s 111.36 107.30 105.65 89.39 +peuplement peuplement nom m s 0.04 0.88 0.04 0.47 +peuplements peuplement nom m p 0.04 0.88 0.00 0.41 +peuplent peupler ver 4.58 19.66 0.56 1.62 ind:pre:3p; +peupler peupler ver 4.58 19.66 0.23 1.22 inf; +peuplera peupler ver 4.58 19.66 0.01 0.00 ind:fut:3s; +peupleraie peupleraie nom f s 0.00 0.07 0.00 0.07 +peuplerait peupler ver 4.58 19.66 0.00 0.14 cnd:pre:3s; +peupleront peupler ver 4.58 19.66 0.11 0.07 ind:fut:3p; +peuples peuple nom m p 111.36 107.30 5.71 17.91 +peuplier peuplier nom m s 1.08 9.93 0.70 3.04 +peupliers peuplier nom m p 1.08 9.93 0.37 6.89 +peuplèrent peupler ver 4.58 19.66 0.01 0.07 ind:pas:3p; +peuplé peupler ver m s 4.58 19.66 1.48 5.27 par:pas; +peuplée peupler ver f s 4.58 19.66 0.80 4.59 par:pas; +peuplées peupler ver f p 4.58 19.66 0.23 1.35 par:pas; +peuplés peupler ver m p 4.58 19.66 0.05 0.74 par:pas; +peur peur nom f s 557.21 311.69 551.83 307.23 +peureuse peureux adj f s 2.31 3.51 0.94 1.15 +peureusement peureusement adv 0.00 0.88 0.00 0.88 +peureuses peureux adj f p 2.31 3.51 0.12 0.20 +peureux peureux adj m 2.31 3.51 1.25 2.16 +peurs peur nom f p 557.21 311.69 5.38 4.46 +peut_être peut_être adv 907.68 697.97 907.68 697.97 +peut pouvoir ver_sup 5524.52 2659.80 1209.64 508.99 ind:pre:3s; +peuvent pouvoir ver_sup 5524.52 2659.80 133.30 69.32 ind:pre:3p; +peux pouvoir ver_sup 5524.52 2659.80 1743.78 245.41 ind:pre:1s;ind:pre:2s; +peyotl peyotl nom m s 0.16 0.07 0.16 0.07 +pfennig pfennig nom m s 0.61 0.14 0.01 0.07 +pfennigs pfennig nom m p 0.61 0.14 0.60 0.07 +pff pff ono 1.59 0.41 1.59 0.41 +pfft pfft ono 0.98 0.27 0.98 0.27 +pfutt pfutt ono 0.00 0.07 0.00 0.07 +ph ph nom m s 0.30 0.20 0.30 0.20 +phacochère phacochère nom m s 0.50 0.20 0.47 0.14 +phacochères phacochère nom m p 0.50 0.20 0.03 0.07 +phagocyte phagocyte nom m s 0.04 0.07 0.01 0.00 +phagocyter phagocyter ver 0.00 0.14 0.00 0.07 inf; +phagocytes phagocyte nom m p 0.04 0.07 0.03 0.07 +phalange phalange nom f s 1.00 5.20 0.58 1.69 +phalanges phalange nom f p 1.00 5.20 0.42 3.51 +phalangettes phalangette nom f p 0.00 0.14 0.00 0.14 +phalangine phalangine nom f s 0.00 0.07 0.00 0.07 +phalangisme phalangisme nom m s 0.00 0.07 0.00 0.07 +phalangiste phalangiste nom s 0.01 0.20 0.00 0.07 +phalangistes phalangiste nom p 0.01 0.20 0.01 0.14 +phalanstère phalanstère nom m s 0.00 0.41 0.00 0.41 +phalarope phalarope nom m s 0.05 0.00 0.05 0.00 +phallique phallique adj s 0.43 1.08 0.38 0.95 +phalliques phallique adj p 0.43 1.08 0.05 0.14 +phallo phallo nom m s 0.14 0.07 0.14 0.07 +phalloïdes phalloïde adj p 0.00 0.07 0.00 0.07 +phallocentrique phallocentrique adj s 0.01 0.00 0.01 0.00 +phallocrate phallocrate adj f s 0.03 0.14 0.03 0.14 +phallocratie phallocratie nom f s 0.01 0.14 0.01 0.14 +phallocratique phallocratique adj m s 0.00 0.14 0.00 0.07 +phallocratiques phallocratique adj p 0.00 0.14 0.00 0.07 +phallologie phallologie nom f s 0.00 0.14 0.00 0.14 +phallophore phallophore nom m s 0.00 0.14 0.00 0.14 +phallus phallus nom m 0.44 1.42 0.44 1.42 +phalène phalène nom f s 0.06 0.68 0.05 0.34 +phalènes phalène nom f p 0.06 0.68 0.01 0.34 +phalère phalère nom f s 0.05 0.20 0.05 0.20 +phantasme phantasme nom m s 0.27 2.36 0.00 0.41 +phantasmes phantasme nom m p 0.27 2.36 0.27 1.96 +phanères phanère nom m p 0.00 0.07 0.00 0.07 +phanérogames phanérogame nom f p 0.00 0.14 0.00 0.14 +pharamineuses pharamineux adj f p 0.01 0.34 0.00 0.14 +pharamineux pharamineux adj m s 0.01 0.34 0.01 0.20 +pharaon pharaon nom m s 3.63 2.64 2.50 1.62 +pharaonique pharaonique adj m s 0.02 0.68 0.01 0.61 +pharaoniques pharaonique adj f p 0.02 0.68 0.01 0.07 +pharaonnes pharaon nom f p 3.63 2.64 0.00 0.07 +pharaons pharaon nom m p 3.63 2.64 1.12 0.95 +phare phare nom m s 11.88 31.49 7.17 10.68 +phares phare nom m p 11.88 31.49 4.70 20.81 +pharisaïque pharisaïque adj s 0.06 0.07 0.04 0.00 +pharisaïques pharisaïque adj f p 0.06 0.07 0.02 0.07 +pharisaïsme pharisaïsme nom m s 0.01 0.20 0.01 0.14 +pharisaïsmes pharisaïsme nom m p 0.01 0.20 0.00 0.07 +pharisien pharisien nom m s 1.46 0.74 0.02 0.14 +pharisiens pharisien nom m p 1.46 0.74 1.44 0.61 +pharma pharma nom s 0.04 0.14 0.04 0.14 +pharmaceutique pharmaceutique adj s 2.82 1.42 1.48 0.54 +pharmaceutiques pharmaceutique adj p 2.82 1.42 1.35 0.88 +pharmacie pharmacie nom f s 10.46 10.20 10.08 9.32 +pharmacien pharmacien nom m s 3.71 7.30 3.19 4.86 +pharmacienne pharmacien nom f s 3.71 7.30 0.35 1.76 +pharmaciens pharmacien nom m p 3.71 7.30 0.17 0.68 +pharmacies pharmacie nom f p 10.46 10.20 0.38 0.88 +pharmaco pharmaco nom f s 0.01 0.20 0.01 0.20 +pharmacognosie pharmacognosie nom f s 0.01 0.00 0.01 0.00 +pharmacologie pharmacologie nom f s 0.37 0.07 0.37 0.07 +pharmacologique pharmacologique adj m s 0.02 0.00 0.02 0.00 +pharmacomanie pharmacomanie nom f s 0.00 0.14 0.00 0.14 +pharmacopée pharmacopée nom f s 0.25 0.20 0.25 0.20 +pharmacothérapie pharmacothérapie nom f s 0.03 0.07 0.03 0.07 +pharyngite pharyngite nom f s 0.01 0.00 0.01 0.00 +pharynx pharynx nom m 0.01 0.41 0.01 0.41 +phascolome phascolome nom m s 0.01 0.00 0.01 0.00 +phase phase nom f s 13.22 9.32 12.42 6.76 +phases phase nom f p 13.22 9.32 0.80 2.57 +phasmes phasme nom m p 0.01 0.07 0.01 0.07 +phaéton phaéton nom m s 0.00 0.27 0.00 0.27 +phi phi nom m 0.39 0.20 0.39 0.20 +philanthrope philanthrope nom s 0.87 0.68 0.84 0.54 +philanthropes philanthrope nom p 0.87 0.68 0.03 0.14 +philanthropie philanthropie nom f s 0.17 0.47 0.17 0.47 +philanthropique philanthropique adj s 0.07 0.54 0.03 0.27 +philanthropiques philanthropique adj f p 0.07 0.54 0.04 0.27 +philarète philarète adj s 0.00 0.07 0.00 0.07 +philarète philarète nom s 0.00 0.07 0.00 0.07 +philatélie philatélie nom f s 0.02 0.00 0.02 0.00 +philatéliste philatéliste nom s 0.12 0.27 0.11 0.14 +philatélistes philatéliste nom p 0.12 0.27 0.01 0.14 +philharmonie philharmonie nom f s 0.21 0.00 0.21 0.00 +philharmonique philharmonique adj m s 0.59 0.34 0.59 0.34 +philhellène philhellène nom m s 0.00 0.14 0.00 0.07 +philhellènes philhellène nom m p 0.00 0.14 0.00 0.07 +philippin philippin nom m s 0.25 0.41 0.03 0.41 +philippine philippin adj f s 0.41 1.15 0.23 0.20 +philippines philippin adj f p 0.41 1.15 0.13 0.54 +philippins philippin nom m p 0.25 0.41 0.22 0.00 +philistin philistin nom m s 0.12 0.07 0.05 0.07 +philistins philistin nom m p 0.12 0.07 0.06 0.00 +philo philo nom f s 2.35 3.24 2.35 3.18 +philodendron philodendron nom m s 0.03 0.74 0.03 0.34 +philodendrons philodendron nom m p 0.03 0.74 0.00 0.41 +philologie philologie nom f s 0.21 0.74 0.21 0.74 +philologique philologique adj f s 0.00 0.14 0.00 0.07 +philologiques philologique adj f p 0.00 0.14 0.00 0.07 +philologue philologue nom s 0.26 1.35 0.26 0.88 +philologues philologue nom p 0.26 1.35 0.00 0.47 +philos philo nom f p 2.35 3.24 0.00 0.07 +philosophaient philosopher ver 0.64 2.09 0.00 0.14 ind:imp:3p; +philosophaillerie philosophaillerie nom f s 0.00 0.14 0.00 0.14 +philosophait philosopher ver 0.64 2.09 0.00 0.27 ind:imp:3s; +philosophal philosophal adj m s 0.07 0.68 0.00 0.07 +philosophale philosophal adj f s 0.07 0.68 0.07 0.54 +philosophales philosophal adj f p 0.07 0.68 0.00 0.07 +philosophant philosopher ver 0.64 2.09 0.00 0.07 par:pre; +philosophard philosophard adj m s 0.00 0.07 0.00 0.07 +philosophe philosophe nom s 6.02 19.39 4.11 11.62 +philosopher philosopher ver 0.64 2.09 0.37 0.81 inf; +philosophes philosophe nom p 6.02 19.39 1.91 7.77 +philosophie philosophie nom f s 10.32 24.73 9.82 24.32 +philosophies philosophie nom f p 10.32 24.73 0.50 0.41 +philosophique philosophique adj s 1.48 4.19 1.06 2.50 +philosophiquement philosophiquement adv 0.09 0.68 0.09 0.68 +philosophiques philosophique adj p 1.48 4.19 0.42 1.69 +philosophons philosopher ver 0.64 2.09 0.01 0.00 imp:pre:1p; +philosophé philosopher ver m s 0.64 2.09 0.10 0.14 par:pas; +philosémites philosémite nom m p 0.00 0.07 0.00 0.07 +philosémitisme philosémitisme nom m s 0.00 0.07 0.00 0.07 +philotechnique philotechnique adj f s 0.00 0.07 0.00 0.07 +philtre philtre nom m s 0.96 1.69 0.84 1.01 +philtres philtre nom m p 0.96 1.69 0.11 0.68 +phimosis phimosis nom m 0.00 0.20 0.00 0.20 +phlox phlox nom m 0.00 0.34 0.00 0.34 +phlébite phlébite nom f s 0.08 0.34 0.08 0.27 +phlébites phlébite nom f p 0.08 0.34 0.00 0.07 +phlébographie phlébographie nom f s 0.01 0.00 0.01 0.00 +phlébologue phlébologue nom s 0.01 0.00 0.01 0.00 +phlébotomie phlébotomie nom f s 0.01 0.00 0.01 0.00 +phobie phobie nom f s 2.62 1.08 1.43 0.47 +phobies phobie nom f p 2.62 1.08 1.20 0.61 +phobique phobique adj f s 0.04 0.14 0.04 0.14 +phobiques phobique adj p 0.04 0.14 0.01 0.00 +phocéenne phocéen adj f s 0.00 0.07 0.00 0.07 +phoenix phoenix nom m 0.48 0.07 0.48 0.07 +phonatoire phonatoire adj s 0.00 0.07 0.00 0.07 +phone phone nom m s 0.67 0.14 0.64 0.07 +phones phone nom m p 0.67 0.14 0.04 0.07 +phonique phonique adj s 0.18 0.00 0.17 0.00 +phoniques phonique adj p 0.18 0.00 0.01 0.00 +phono phono nom m s 0.75 5.47 0.75 5.20 +phonographe phonographe nom m s 0.87 6.01 0.86 5.41 +phonographes phonographe nom m p 0.87 6.01 0.01 0.61 +phonographiques phonographique adj f p 0.00 0.14 0.00 0.14 +phonologie phonologie nom f s 0.00 0.14 0.00 0.14 +phonos phono nom m p 0.75 5.47 0.00 0.27 +phonèmes phonème nom m p 0.00 0.41 0.00 0.41 +phonéticien phonéticien nom m s 0.00 0.07 0.00 0.07 +phonétique phonétique adj s 0.20 0.41 0.19 0.27 +phonétiquement phonétiquement adv 0.03 0.07 0.03 0.07 +phonétiques phonétique adj m p 0.20 0.41 0.01 0.14 +phoque phoque nom m s 2.81 4.19 2.24 2.77 +phoques phoque nom m p 2.81 4.19 0.57 1.42 +phosgène phosgène nom m s 0.23 0.00 0.23 0.00 +phosphatase phosphatase nom f s 0.02 0.00 0.02 0.00 +phosphate phosphate nom m s 0.43 0.68 0.38 0.41 +phosphates phosphate nom m p 0.43 0.68 0.05 0.27 +phosphatine phosphatine nom f s 0.10 0.07 0.10 0.07 +phospholipide phospholipide nom m s 0.01 0.00 0.01 0.00 +phosphore phosphore nom m s 1.46 2.16 1.46 2.16 +phosphorescence phosphorescence nom f s 0.02 0.88 0.02 0.68 +phosphorescences phosphorescence nom f p 0.02 0.88 0.00 0.20 +phosphorescent phosphorescent adj m s 0.38 5.47 0.08 1.42 +phosphorescente phosphorescent adj f s 0.38 5.47 0.23 2.03 +phosphorescentes phosphorescent adj f p 0.38 5.47 0.01 1.01 +phosphorescents phosphorescent adj m p 0.38 5.47 0.06 1.01 +phosphoré phosphorer ver m s 0.14 0.07 0.01 0.00 par:pas; +phosphorylation phosphorylation nom f s 0.03 0.00 0.03 0.00 +phosphène phosphène nom m s 0.00 0.27 0.00 0.07 +phosphènes phosphène nom m p 0.00 0.27 0.00 0.20 +phot phot nom m s 1.00 0.00 1.00 0.00 +photique photique adj f s 0.01 0.00 0.01 0.00 +photo_finish photo_finish nom f s 0.01 0.00 0.01 0.00 +photo_robot photo_robot nom f s 0.01 0.14 0.01 0.14 +photo_électrique photo_électrique adj f s 0.00 0.14 0.00 0.14 +photo photo nom f s 209.10 94.59 122.47 54.66 +photochimique photochimique adj m s 0.01 0.00 0.01 0.00 +photocomposition photocomposition nom f s 0.14 0.07 0.14 0.07 +photoconducteur photoconducteur adj m s 0.01 0.00 0.01 0.00 +photocopie photocopie nom f s 3.89 0.88 1.50 0.41 +photocopient photocopier ver 1.83 0.41 0.01 0.00 ind:pre:3p; +photocopier photocopier ver 1.83 0.41 0.72 0.07 inf; +photocopiera photocopier ver 1.83 0.41 0.01 0.00 ind:fut:3s; +photocopierai photocopier ver 1.83 0.41 0.01 0.00 ind:fut:1s; +photocopies photocopie nom f p 3.89 0.88 2.39 0.47 +photocopieur photocopieur nom m s 2.46 0.20 0.11 0.00 +photocopieurs photocopieur nom m p 2.46 0.20 0.07 0.00 +photocopieuse photocopieur nom f s 2.46 0.20 2.28 0.00 +photocopieuses photocopieuse nom f p 0.14 0.00 0.14 0.00 +photocopié photocopier ver m s 1.83 0.41 0.50 0.07 par:pas; +photocopiée photocopier ver f s 1.83 0.41 0.13 0.07 par:pas; +photocopiées photocopier ver f p 1.83 0.41 0.00 0.07 par:pas; +photocopiés photocopier ver m p 1.83 0.41 0.04 0.07 par:pas; +photogramme photogramme nom m s 0.01 0.00 0.01 0.00 +photographe photographe nom s 15.82 17.64 12.51 11.96 +photographes photographe nom p 15.82 17.64 3.31 5.68 +photographia photographier ver 10.35 13.65 0.03 0.68 ind:pas:3s; +photographiable photographiable nom f s 0.01 0.00 0.01 0.00 +photographiaient photographier ver 10.35 13.65 0.28 0.27 ind:imp:3p; +photographiais photographier ver 10.35 13.65 0.20 0.14 ind:imp:1s;ind:imp:2s; +photographiait photographier ver 10.35 13.65 0.34 0.34 ind:imp:3s; +photographiant photographier ver 10.35 13.65 0.03 0.47 par:pre; +photographie photographie nom f s 8.36 41.08 7.42 23.78 +photographient photographier ver 10.35 13.65 0.19 0.07 ind:pre:3p; +photographier photographier ver 10.35 13.65 4.42 5.54 inf; +photographierai photographier ver 10.35 13.65 0.02 0.07 ind:fut:1s; +photographierait photographier ver 10.35 13.65 0.01 0.27 cnd:pre:3s; +photographierions photographier ver 10.35 13.65 0.00 0.07 cnd:pre:1p; +photographierons photographier ver 10.35 13.65 0.01 0.00 ind:fut:1p; +photographieront photographier ver 10.35 13.65 0.01 0.00 ind:fut:3p; +photographies photographie nom f p 8.36 41.08 0.94 17.30 +photographiez photographier ver 10.35 13.65 0.35 0.00 imp:pre:2p;ind:pre:2p; +photographiât photographier ver 10.35 13.65 0.00 0.07 sub:imp:3s; +photographique photographique adj s 1.30 3.78 1.25 3.24 +photographiques photographique adj p 1.30 3.78 0.05 0.54 +photographièrent photographier ver 10.35 13.65 0.10 0.14 ind:pas:3p; +photographié photographier ver m s 10.35 13.65 1.73 2.57 par:pas; +photographiée photographier ver f s 10.35 13.65 0.23 0.88 par:pas; +photographiées photographier ver f p 10.35 13.65 0.11 0.14 par:pas; +photographiés photographier ver m p 10.35 13.65 0.48 0.95 par:pas; +photograveur photograveur nom m s 0.00 0.07 0.00 0.07 +photogravure photogravure nom f s 0.04 0.07 0.04 0.07 +photogénie photogénie nom f s 0.34 0.07 0.34 0.07 +photogénique photogénique adj s 2.01 0.41 1.97 0.34 +photogéniques photogénique adj p 2.01 0.41 0.04 0.07 +photojournalisme photojournalisme nom m s 0.02 0.00 0.02 0.00 +photojournaliste photojournaliste nom s 0.01 0.00 0.01 0.00 +photomaton photomaton adj m s 0.92 1.01 0.37 0.81 +photomatons photomaton adj m p 0.92 1.01 0.55 0.20 +photomicrographie photomicrographie nom f s 0.01 0.00 0.01 0.00 +photomontage photomontage nom m s 0.00 0.14 0.00 0.07 +photomontages photomontage nom m p 0.00 0.14 0.00 0.07 +photon photon nom m s 0.24 0.00 0.09 0.00 +photonique photonique adj f s 0.15 0.00 0.15 0.00 +photons photon nom m p 0.24 0.00 0.16 0.00 +photophobie photophobie nom f s 0.04 0.00 0.04 0.00 +photopile photopile nom f s 0.12 0.00 0.12 0.00 +photopériodique photopériodique adj f s 0.01 0.00 0.01 0.00 +photos photo nom f p 209.10 94.59 86.63 39.93 +photosensibilité photosensibilité nom f s 0.04 0.00 0.04 0.00 +photosensible photosensible adj m s 0.08 0.07 0.06 0.07 +photosensibles photosensible adj p 0.08 0.07 0.02 0.00 +photostat photostat nom m s 0.06 0.00 0.06 0.00 +photosynthèse photosynthèse nom f s 0.25 0.00 0.25 0.00 +phototaxie phototaxie nom f s 0.02 0.00 0.02 0.00 +phototype phototype nom m s 0.01 0.00 0.01 0.00 +photoélectrique photoélectrique adj s 0.02 0.00 0.02 0.00 +photovoltaïque photovoltaïque adj m s 0.01 0.00 0.01 0.00 +phragmites phragmite nom m p 0.00 0.07 0.00 0.07 +phrase_clé phrase_clé nom f s 0.02 0.00 0.02 0.00 +phrase_robot phrase_robot nom f s 0.00 0.07 0.00 0.07 +phrase phrase nom f s 22.01 140.47 15.40 86.76 +phraser phraser ver 0.19 0.74 0.01 0.00 inf; +phrases_clé phrases_clé nom f p 0.00 0.07 0.00 0.07 +phrases phrase nom f p 22.01 140.47 6.61 53.72 +phraseur phraseur nom m s 0.02 0.14 0.01 0.07 +phraseurs phraseur nom m p 0.02 0.14 0.01 0.07 +phrasé phrasé nom m s 0.05 0.20 0.05 0.20 +phrasée phraser ver f s 0.19 0.74 0.00 0.07 par:pas; +phraséologie phraséologie nom f s 0.02 0.27 0.02 0.20 +phraséologies phraséologie nom f p 0.02 0.27 0.00 0.07 +phraséologique phraséologique adj f s 0.00 0.07 0.00 0.07 +phréatique phréatique adj f s 0.17 0.27 0.16 0.20 +phréatiques phréatique adj f p 0.17 0.27 0.01 0.07 +phrénique phrénique adj m s 0.01 0.00 0.01 0.00 +phrénologie phrénologie nom f s 0.03 0.00 0.03 0.00 +phrénologiste phrénologiste nom s 0.01 0.07 0.01 0.00 +phrénologistes phrénologiste nom p 0.01 0.07 0.00 0.07 +phrénologues phrénologue nom p 0.00 0.07 0.00 0.07 +phrygien phrygien adj m s 0.00 0.74 0.00 0.54 +phrygiens phrygien adj m p 0.00 0.74 0.00 0.20 +phtaléine phtaléine nom f s 0.03 0.00 0.03 0.00 +phtiriasis phtiriasis nom m 0.00 0.07 0.00 0.07 +phtisie phtisie nom f s 0.05 0.81 0.05 0.81 +phtisiologie phtisiologie nom f s 0.00 0.14 0.00 0.14 +phtisique phtisique adj s 0.01 1.22 0.00 0.88 +phtisiques phtisique adj f p 0.01 1.22 0.01 0.34 +phénate phénate nom m s 0.01 0.00 0.01 0.00 +phénicien phénicien nom m s 0.57 0.07 0.04 0.00 +phénicienne phénicien adj f s 0.77 0.41 0.44 0.14 +phéniciennes phénicien adj f p 0.77 0.41 0.01 0.14 +phéniciens phénicien nom m p 0.57 0.07 0.54 0.07 +phénique phénique adj m s 0.00 0.07 0.00 0.07 +phéniqués phéniqué adj m p 0.00 0.07 0.00 0.07 +phénix phénix nom m 0.28 0.68 0.28 0.68 +phénobarbital phénobarbital nom m s 0.10 0.00 0.10 0.00 +phénol phénol nom m s 0.07 0.14 0.07 0.14 +phénomène phénomène nom m s 10.77 13.72 8.62 10.81 +phénomènes phénomène nom m p 10.77 13.72 2.15 2.91 +phénoménal phénoménal adj m s 1.36 1.62 0.77 0.74 +phénoménale phénoménal adj f s 1.36 1.62 0.46 0.68 +phénoménalement phénoménalement adv 0.05 0.00 0.05 0.00 +phénoménales phénoménal adj f p 1.36 1.62 0.05 0.07 +phénoménaux phénoménal adj m p 1.36 1.62 0.08 0.14 +phénoménologie phénoménologie nom f s 0.04 0.34 0.04 0.34 +phénoménologique phénoménologique adj s 0.02 0.00 0.02 0.00 +phénoménologues phénoménologue nom p 0.00 0.07 0.00 0.07 +phénothiazine phénothiazine nom f s 0.01 0.00 0.01 0.00 +phénotype phénotype nom m s 0.01 0.00 0.01 0.00 +phéochromocytome phéochromocytome nom m s 0.07 0.00 0.07 0.00 +phéromone phéromone nom f s 0.69 0.00 0.10 0.00 +phéromones phéromone nom f p 0.69 0.00 0.59 0.00 +phylactère phylactère nom m s 0.00 0.34 0.00 0.34 +phylloxera phylloxera nom m s 0.10 0.00 0.10 0.00 +phylloxéra phylloxéra nom m s 0.10 0.47 0.10 0.47 +phylogenèse phylogenèse nom f s 0.14 0.00 0.14 0.00 +phylum phylum nom m s 0.03 0.00 0.03 0.00 +phynances phynances nom f p 0.00 0.07 0.00 0.07 +physicien physicien nom m s 1.18 1.55 0.75 0.95 +physicienne physicien nom f s 1.18 1.55 0.15 0.07 +physiciennes physicienne nom f p 0.01 0.00 0.01 0.00 +physiciens physicien nom m p 1.18 1.55 0.29 0.54 +physico_chimique physico_chimique adj f p 0.00 0.07 0.00 0.07 +physio physio adv 0.94 0.00 0.94 0.00 +physiologie physiologie nom f s 0.76 1.42 0.75 1.35 +physiologies physiologie nom f p 0.76 1.42 0.01 0.07 +physiologique physiologique adj s 1.59 2.09 0.84 1.49 +physiologiquement physiologiquement adv 0.24 0.27 0.24 0.27 +physiologiques physiologique adj p 1.59 2.09 0.75 0.61 +physiologiste physiologiste adj s 0.10 0.00 0.10 0.00 +physionomie physionomie nom f s 0.48 5.27 0.48 4.93 +physionomies physionomie nom f p 0.48 5.27 0.00 0.34 +physionomique physionomique adj s 0.01 0.14 0.01 0.14 +physionomiste physionomiste nom s 0.12 0.07 0.11 0.07 +physionomistes physionomiste adj p 0.11 0.14 0.02 0.00 +physiothérapie physiothérapie nom f s 0.24 0.00 0.24 0.00 +physique physique adj s 19.42 33.18 14.76 27.50 +physiquement physiquement adv 8.72 8.72 8.72 8.72 +physiques physique adj p 19.42 33.18 4.66 5.68 +phytoplancton phytoplancton nom m s 0.01 0.00 0.01 0.00 +pi pi nom m 0.69 1.28 0.69 1.28 +più più adv 0.01 0.07 0.01 0.07 +piaf piaf nom m s 2.00 5.14 1.75 1.82 +piaffa piaffer ver 0.14 2.57 0.00 0.14 ind:pas:3s; +piaffaient piaffer ver 0.14 2.57 0.00 0.14 ind:imp:3p; +piaffait piaffer ver 0.14 2.57 0.00 0.68 ind:imp:3s; +piaffant piaffer ver 0.14 2.57 0.00 0.54 par:pre; +piaffante piaffant adj f s 0.01 0.74 0.00 0.14 +piaffantes piaffant adj f p 0.01 0.74 0.01 0.14 +piaffants piaffant adj m p 0.01 0.74 0.00 0.20 +piaffe piaffer ver 0.14 2.57 0.12 0.34 ind:pre:1s;ind:pre:3s; +piaffement piaffement nom m s 0.00 0.20 0.00 0.14 +piaffements piaffement nom m p 0.00 0.20 0.00 0.07 +piaffent piaffer ver 0.14 2.57 0.02 0.34 ind:pre:3p; +piaffer piaffer ver 0.14 2.57 0.00 0.20 inf; +piaffes piaffer ver 0.14 2.57 0.00 0.14 ind:pre:2s; +piaffé piaffer ver m s 0.14 2.57 0.00 0.07 par:pas; +piafs piaf nom m p 2.00 5.14 0.25 3.31 +piailla piailler ver 0.84 4.73 0.00 0.14 ind:pas:3s; +piaillaient piailler ver 0.84 4.73 0.02 0.74 ind:imp:3p; +piaillais piailler ver 0.84 4.73 0.00 0.07 ind:imp:2s; +piaillait piailler ver 0.84 4.73 0.22 0.74 ind:imp:3s; +piaillant piailler ver 0.84 4.73 0.00 1.08 par:pre; +piaillante piaillant adj f s 0.00 0.68 0.00 0.27 +piaillantes piaillant adj f p 0.00 0.68 0.00 0.07 +piaillarde piaillard adj f s 0.00 0.14 0.00 0.07 +piaillards piaillard adj m p 0.00 0.14 0.00 0.07 +piaille piailler ver 0.84 4.73 0.26 0.54 ind:pre:1s;ind:pre:3s; +piaillement piaillement nom m s 5.37 2.57 0.70 0.68 +piaillements piaillement nom m p 5.37 2.57 4.67 1.89 +piaillent piailler ver 0.84 4.73 0.13 0.61 ind:pre:3p; +piailler piailler ver 0.84 4.73 0.21 0.68 inf; +piaillerie piaillerie nom f s 0.00 0.20 0.00 0.07 +piailleries piaillerie nom f p 0.00 0.20 0.00 0.14 +piailleurs piailleur adj m p 0.00 0.20 0.00 0.14 +piailleuse piailleur adj f s 0.00 0.20 0.00 0.07 +piaillèrent piailler ver 0.84 4.73 0.00 0.14 ind:pas:3p; +pian pian nom m s 0.03 0.00 0.03 0.00 +pianissimo pianissimo adv_sup 0.12 0.20 0.12 0.20 +pianissimos pianissimo nom_sup m p 0.10 0.14 0.00 0.07 +pianiste pianiste nom s 5.75 5.20 5.52 4.80 +pianistes pianiste nom p 5.75 5.20 0.23 0.41 +piano_bar piano_bar nom m s 0.05 0.00 0.05 0.00 +piano piano nom m s 22.22 31.28 21.50 28.51 +pianola pianola nom m s 0.35 0.14 0.35 0.14 +pianos piano nom m p 22.22 31.28 0.71 2.77 +pianota pianoter ver 0.41 2.36 0.10 0.34 ind:pas:3s; +pianotage pianotage nom m s 0.10 0.07 0.10 0.07 +pianotaient pianoter ver 0.41 2.36 0.00 0.14 ind:imp:3p; +pianotait pianoter ver 0.41 2.36 0.00 0.68 ind:imp:3s; +pianotant pianoter ver 0.41 2.36 0.00 0.27 par:pre; +pianote pianoter ver 0.41 2.36 0.04 0.34 ind:pre:1s;ind:pre:3s; +pianoter pianoter ver 0.41 2.36 0.27 0.41 inf; +pianotèrent pianoter ver 0.41 2.36 0.00 0.07 ind:pas:3p; +pianoté pianoter ver m s 0.41 2.36 0.00 0.07 par:pas; +pianotée pianoter ver f s 0.41 2.36 0.00 0.07 par:pas; +piastre piastre nom f s 1.36 0.54 0.14 0.14 +piastres piastre nom f p 1.36 0.54 1.23 0.41 +piaula piauler ver 0.02 1.49 0.00 0.27 ind:pas:3s; +piaulaient piauler ver 0.02 1.49 0.01 0.27 ind:imp:3p; +piaulait piauler ver 0.02 1.49 0.00 0.20 ind:imp:3s; +piaulant piauler ver 0.02 1.49 0.00 0.20 par:pre; +piaulante piaulant adj f s 0.00 0.14 0.00 0.07 +piaule piaule nom f s 3.36 12.16 3.02 11.42 +piaulement piaulement nom m s 0.00 0.54 0.00 0.14 +piaulements piaulement nom m p 0.00 0.54 0.00 0.41 +piaulent piauler ver 0.02 1.49 0.00 0.07 ind:pre:3p; +piauler piauler ver 0.02 1.49 0.00 0.14 inf; +piaulera piauler ver 0.02 1.49 0.00 0.07 ind:fut:3s; +piaules piaule nom f p 3.36 12.16 0.34 0.74 +piauleur piauleur nom m s 0.00 0.07 0.00 0.07 +piaulèrent piauler ver 0.02 1.49 0.00 0.14 ind:pas:3p; +piaye piaye nom m s 0.00 0.07 0.00 0.07 +piazza piazza nom f s 1.89 3.18 1.89 3.18 +piazzetta piazzetta nom f 0.00 0.20 0.00 0.20 +pibloque pibloque nom m s 0.00 0.34 0.00 0.34 +pic_vert pic_vert nom m s 0.28 0.27 0.27 0.27 +pic pic nom m s 5.30 12.43 4.61 10.34 +pica pica nom m s 0.01 0.07 0.01 0.07 +picador picador nom m s 0.01 0.34 0.00 0.27 +picadors picador nom m p 0.01 0.34 0.01 0.07 +picaillon picaillon nom m s 0.02 0.20 0.01 0.07 +picaillons picaillon nom m p 0.02 0.20 0.01 0.14 +picard picard adj m s 0.00 0.61 0.00 0.14 +picarde picard adj f s 0.00 0.61 0.00 0.07 +picardes picard adj f p 0.00 0.61 0.00 0.20 +picards picard adj m p 0.00 0.61 0.00 0.20 +picaresque picaresque adj s 0.03 0.54 0.03 0.34 +picaresques picaresque adj p 0.03 0.54 0.00 0.20 +picaro picaro nom m s 0.40 0.07 0.40 0.07 +picassien picassien adj m s 0.00 0.07 0.00 0.07 +piccolo piccolo nom m s 0.41 0.07 0.40 0.07 +piccolos piccolo nom m p 0.41 0.07 0.01 0.00 +pichenette pichenette nom f s 0.27 2.30 0.27 2.09 +pichenettes pichenette nom f p 0.27 2.30 0.00 0.20 +pichet pichet nom m s 1.29 1.42 1.21 0.95 +pichets pichet nom m p 1.29 1.42 0.09 0.47 +pick_up pick_up nom m 1.98 2.64 1.98 2.64 +picker picker nom m s 0.19 0.00 0.19 0.00 +pickles pickle nom m p 0.47 0.20 0.47 0.20 +pickpocket pickpocket nom m s 0.87 0.74 0.63 0.47 +pickpockets pickpocket nom m p 0.87 0.74 0.24 0.27 +pico pico adv 0.31 0.20 0.31 0.20 +picolaient picoler ver 5.89 4.66 0.00 0.07 ind:imp:3p; +picolais picoler ver 5.89 4.66 0.09 0.14 ind:imp:1s; +picolait picoler ver 5.89 4.66 0.21 0.14 ind:imp:3s; +picolant picoler ver 5.89 4.66 0.03 0.07 par:pre; +picole picoler ver 5.89 4.66 1.64 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +picolent picoler ver 5.89 4.66 0.08 0.00 ind:pre:3p; +picoler picoler ver 5.89 4.66 2.32 1.76 inf; +picolerait picoler ver 5.89 4.66 0.00 0.07 cnd:pre:3s; +picoles picoler ver 5.89 4.66 0.69 0.14 ind:pre:2s; +picoleur picoleur nom m s 0.00 0.27 0.00 0.20 +picoleurs picoleur nom m p 0.00 0.27 0.00 0.07 +picolez picoler ver 5.89 4.66 0.04 0.00 ind:pre:2p; +picoliez picoler ver 5.89 4.66 0.01 0.00 ind:imp:2p; +picolo picolo nom m s 0.00 0.14 0.00 0.14 +picolé picoler ver m s 5.89 4.66 0.77 1.22 par:pas; +picora picorer ver 0.74 3.58 0.00 0.07 ind:pas:3s; +picoraient picorer ver 0.74 3.58 0.02 0.47 ind:imp:3p; +picorait picorer ver 0.74 3.58 0.00 0.47 ind:imp:3s; +picorant picorer ver 0.74 3.58 0.02 0.14 par:pre; +picore picorer ver 0.74 3.58 0.18 0.34 ind:pre:1s;ind:pre:3s; +picorent picorer ver 0.74 3.58 0.02 0.41 ind:pre:3p; +picorer picorer ver 0.74 3.58 0.33 1.28 inf; +picoreur picoreur nom m s 0.00 0.07 0.00 0.07 +picorez picorer ver 0.74 3.58 0.14 0.00 ind:pre:2p; +picoré picorer ver m s 0.74 3.58 0.02 0.14 par:pas; +picorée picorer ver f s 0.74 3.58 0.00 0.07 par:pas; +picorées picorer ver f p 0.74 3.58 0.00 0.07 par:pas; +picorés picorer ver m p 0.74 3.58 0.01 0.14 par:pas; +picot picot nom m s 0.26 1.35 0.03 1.22 +picota picoter ver 0.74 1.62 0.04 0.14 ind:pas:3s; +picotaient picoter ver 0.74 1.62 0.00 0.27 ind:imp:3p; +picotait picoter ver 0.74 1.62 0.00 0.47 ind:imp:3s; +picotant picoter ver 0.74 1.62 0.02 0.00 par:pre; +picote picoter ver 0.74 1.62 0.63 0.27 ind:pre:1s;ind:pre:3s; +picotement picotement nom m s 0.50 1.62 0.22 0.95 +picotements picotement nom m p 0.50 1.62 0.28 0.68 +picotent picoter ver 0.74 1.62 0.03 0.27 ind:pre:3p; +picoter picoter ver 0.74 1.62 0.01 0.07 inf; +picotin picotin nom m s 0.24 0.61 0.24 0.61 +picotis picotis nom m 0.00 0.07 0.00 0.07 +picots picot nom m p 0.26 1.35 0.23 0.14 +picoté picoter ver m s 0.74 1.62 0.01 0.07 par:pas; +picotées picoter ver f p 0.74 1.62 0.00 0.07 par:pas; +picrate picrate nom m s 0.01 1.35 0.01 1.35 +picrique picrique adj s 0.00 0.27 0.00 0.27 +pic_vert pic_vert nom m p 0.28 0.27 0.01 0.00 +pics pic nom m p 5.30 12.43 0.69 2.09 +picsou picsou nom m s 0.43 0.00 0.43 0.00 +pictogramme pictogramme nom m s 0.14 0.00 0.03 0.00 +pictogrammes pictogramme nom m p 0.14 0.00 0.11 0.00 +picton picton nom s 0.00 0.41 0.00 0.41 +picté picter ver m s 0.00 0.07 0.00 0.07 par:pas; +pictural pictural adj m s 0.15 0.95 0.01 0.47 +picturale pictural adj f s 0.15 0.95 0.14 0.20 +picturalement picturalement adv 0.00 0.07 0.00 0.07 +picturales pictural adj f p 0.15 0.95 0.00 0.27 +pidgin pidgin nom m s 0.00 0.14 0.00 0.14 +pie_grièche pie_grièche nom f s 0.00 0.07 0.00 0.07 +pie_mère pie_mère nom f s 0.01 0.07 0.01 0.07 +pie pie nom f s 1.59 4.32 1.06 3.18 +pied_bot pied_bot nom m s 0.28 0.61 0.28 0.61 +pied_d_alouette pied_d_alouette nom m s 0.01 0.00 0.01 0.00 +pied_d_oeuvre pied_d_oeuvre nom m s 0.00 0.07 0.00 0.07 +pied_de_biche pied_de_biche nom m s 0.32 0.27 0.28 0.20 +pied_de_poule pied_de_poule adj 0.02 0.54 0.02 0.54 +pied_noir pied_noir nom m s 0.28 3.78 0.09 0.54 +pied_plat pied_plat nom m s 0.05 0.00 0.05 0.00 +pied pied nom m s 214.08 486.42 105.51 248.18 +piedmont piedmont nom m s 0.23 0.00 0.23 0.00 +pied_de_biche pied_de_biche nom m p 0.32 0.27 0.04 0.07 +pied_de_coq pied_de_coq nom m p 0.00 0.07 0.00 0.07 +pied_droit pied_droit nom m p 0.00 0.07 0.00 0.07 +pied_noir pied_noir nom m p 0.28 3.78 0.19 3.24 +pieds pied nom m p 214.08 486.42 108.57 238.24 +pier pier nom m s 0.01 0.00 0.01 0.00 +piercing piercing nom m s 1.69 0.00 1.29 0.00 +piercings piercing nom m p 1.69 0.00 0.40 0.00 +pierraille pierraille nom f s 0.12 3.85 0.12 2.23 +pierrailles pierraille nom f p 0.12 3.85 0.00 1.62 +pierre pierre nom f s 67.17 189.86 40.58 119.39 +pierreries pierreries nom f p 0.28 1.89 0.28 1.89 +pierres pierre nom f p 67.17 189.86 26.60 70.47 +pierreuse pierreux adj f s 0.11 2.64 0.11 0.54 +pierreuses pierreux adj f p 0.11 2.64 0.00 0.47 +pierreux pierreux adj m 0.11 2.64 0.00 1.62 +pierrier pierrier nom m s 0.00 0.20 0.00 0.14 +pierriers pierrier nom m p 0.00 0.20 0.00 0.07 +pierrière pierrière nom f s 0.00 0.07 0.00 0.07 +pierrot pierrot nom m s 0.14 1.35 0.14 0.88 +pierrots pierrot nom m p 0.14 1.35 0.01 0.47 +pierrures pierrure nom f p 0.00 0.07 0.00 0.07 +pies pie nom f p 1.59 4.32 0.53 1.15 +pietà pietà nom f s 0.18 0.88 0.18 0.88 +pieu pieu nom m s 5.45 5.34 5.45 5.34 +pieuse pieux adj f s 3.93 12.43 1.33 4.12 +pieusement pieusement adv 0.41 3.11 0.41 3.11 +pieuses pieux adj f p 3.93 12.43 0.75 2.77 +pieutait pieuter ver 1.24 2.03 0.00 0.07 ind:imp:3s; +pieute pieuter ver 1.24 2.03 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pieuter pieuter ver 1.24 2.03 0.85 1.22 inf; +pieuterez pieuter ver 1.24 2.03 0.01 0.00 ind:fut:2p; +pieutes pieuter ver 1.24 2.03 0.03 0.14 ind:pre:2s; +pieutez pieuter ver 1.24 2.03 0.10 0.00 imp:pre:2p; +pieuté pieuter ver m s 1.24 2.03 0.04 0.20 par:pas; +pieutée pieuter ver f s 1.24 2.03 0.00 0.07 par:pas; +pieutés pieuter ver m p 1.24 2.03 0.01 0.07 par:pas; +pieuvre pieuvre nom f s 1.73 2.97 1.65 1.82 +pieuvres pieuvre nom f p 1.73 2.97 0.08 1.15 +pieux pieux adj m 3.93 12.43 1.86 5.54 +pif pif nom m s 1.58 7.23 1.58 7.23 +pifer pifer ver 0.01 0.00 0.01 0.00 inf; +piffait piffer ver 0.16 0.68 0.00 0.14 ind:imp:3s; +piffer piffer ver 0.16 0.68 0.16 0.47 inf; +piffre piffre nom s 0.00 0.07 0.00 0.07 +piffrer piffrer adj m s 0.16 0.00 0.16 0.00 +piffé piffer ver m s 0.16 0.68 0.00 0.07 par:pas; +pifomètre pifomètre nom m s 0.02 0.61 0.02 0.61 +pige piger ver 41.77 11.96 6.40 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pigeais piger ver 41.77 11.96 0.17 0.54 ind:imp:1s;ind:imp:2s; +pigeait piger ver 41.77 11.96 0.09 0.88 ind:imp:3s; +pigent piger ver 41.77 11.96 0.50 0.14 ind:pre:3p; +pigeon_voyageur pigeon_voyageur nom m s 0.14 0.00 0.14 0.00 +pigeon pigeon nom m s 15.05 19.26 8.56 7.97 +pigeonnant pigeonnant adj m s 0.07 0.34 0.07 0.20 +pigeonnante pigeonnant adj f s 0.07 0.34 0.00 0.07 +pigeonnants pigeonnant adj m p 0.07 0.34 0.00 0.07 +pigeonne pigeon nom f s 15.05 19.26 0.03 0.68 +pigeonneau pigeonneau nom m s 0.29 0.34 0.06 0.27 +pigeonneaux pigeonneau nom m p 0.29 0.34 0.23 0.07 +pigeonner pigeonner ver 0.24 0.34 0.05 0.14 inf; +pigeonnier pigeonnier nom m s 0.27 3.45 0.27 3.18 +pigeonniers pigeonnier nom m p 0.27 3.45 0.00 0.27 +pigeonné pigeonner ver m s 0.24 0.34 0.17 0.07 par:pas; +pigeons pigeon nom m p 15.05 19.26 6.46 10.61 +piger piger ver 41.77 11.96 1.78 1.96 inf; +pigera piger ver 41.77 11.96 0.04 0.07 ind:fut:3s; +pigerai piger ver 41.77 11.96 0.01 0.00 ind:fut:1s; +pigeraient piger ver 41.77 11.96 0.01 0.00 cnd:pre:3p; +pigerait piger ver 41.77 11.96 0.02 0.00 cnd:pre:3s; +pigeras piger ver 41.77 11.96 0.06 0.07 ind:fut:2s; +pigerez piger ver 41.77 11.96 0.02 0.00 ind:fut:2p; +piges piger ver 41.77 11.96 10.99 2.03 ind:pre:2s;sub:pre:2s; +pigez piger ver 41.77 11.96 2.08 0.47 imp:pre:2p;ind:pre:2p; +pigiste pigiste nom s 0.24 0.54 0.21 0.27 +pigistes pigiste nom p 0.24 0.54 0.03 0.27 +pigment pigment nom m s 0.35 0.61 0.07 0.34 +pigmentaire pigmentaire adj f s 0.04 0.07 0.04 0.07 +pigmentation pigmentation nom f s 0.51 0.14 0.51 0.14 +pigments pigment nom m p 0.35 0.61 0.28 0.27 +pigne pigne nom f s 0.07 0.47 0.02 0.27 +pigner pigner ver 0.01 0.00 0.01 0.00 inf; +pignes pigne nom f p 0.07 0.47 0.04 0.20 +pignochait pignocher ver 0.00 0.07 0.00 0.07 ind:imp:3s; +pignole pignole nom f s 0.01 0.07 0.01 0.07 +pignon pignon nom m s 4.94 8.31 4.79 6.55 +pignons pignon nom m p 4.94 8.31 0.15 1.76 +pignouf pignouf nom m s 0.27 0.54 0.25 0.34 +pignoufs pignouf nom m p 0.27 0.54 0.02 0.20 +pigé piger ver m s 41.77 11.96 19.46 3.51 par:pas; +pila piler ver 3.34 6.15 0.00 0.34 ind:pas:3s; +pilaf pilaf nom m s 0.26 0.27 0.26 0.27 +pilaient piler ver 3.34 6.15 0.00 0.14 ind:imp:3p; +pilait piler ver 3.34 6.15 0.00 0.54 ind:imp:3s; +pilant piler ver 3.34 6.15 0.07 0.07 par:pre; +pilastre pilastre nom m s 0.03 1.15 0.02 0.20 +pilastres pilastre nom m p 0.03 1.15 0.01 0.95 +pilchards pilchard nom m p 0.00 0.27 0.00 0.27 +pile_poil pile_poil nom f s 0.07 0.00 0.07 0.00 +pile pile nom f s 21.30 32.50 16.22 21.62 +pilent piler ver 3.34 6.15 0.00 0.07 ind:pre:3p; +piler piler ver 3.34 6.15 0.35 0.27 inf; +piles pile nom f p 21.30 32.50 5.08 10.88 +pileuse pileux adj f s 0.06 0.61 0.00 0.20 +pileuses pileux adj f p 0.06 0.61 0.00 0.07 +pileux pileux adj m 0.06 0.61 0.06 0.34 +pilier pilier nom m s 3.82 16.15 2.43 7.23 +piliers pilier nom m p 3.82 16.15 1.39 8.92 +pilifère pilifère adj s 0.00 0.07 0.00 0.07 +pilla piller ver 7.66 8.38 0.01 0.27 ind:pas:3s; +pillage pillage nom m s 1.76 3.38 1.21 2.64 +pillages pillage nom m p 1.76 3.38 0.56 0.74 +pillaient piller ver 7.66 8.38 0.06 0.41 ind:imp:3p; +pillais piller ver 7.66 8.38 0.01 0.00 ind:imp:1s; +pillait piller ver 7.66 8.38 0.16 0.34 ind:imp:3s; +pillant piller ver 7.66 8.38 0.17 0.68 par:pre; +pillard pillard nom m s 1.00 1.89 0.15 0.47 +pillarde pillard nom f s 1.00 1.89 0.00 0.07 +pillards pillard nom m p 1.00 1.89 0.85 1.35 +pille piller ver 7.66 8.38 1.02 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pillent piller ver 7.66 8.38 0.78 0.07 ind:pre:3p; +piller piller ver 7.66 8.38 2.12 2.70 inf; +pillera piller ver 7.66 8.38 0.02 0.00 ind:fut:3s; +pillerait piller ver 7.66 8.38 0.02 0.00 cnd:pre:3s; +pillerons piller ver 7.66 8.38 0.02 0.07 ind:fut:1p; +pilleront piller ver 7.66 8.38 0.16 0.00 ind:fut:3p; +pilles piller ver 7.66 8.38 0.04 0.07 ind:pre:2s; +pilleur pilleur nom m s 1.05 1.35 0.44 0.34 +pilleurs pilleur nom m p 1.05 1.35 0.47 0.95 +pilleuse pilleur nom f s 1.05 1.35 0.14 0.07 +pillez piller ver 7.66 8.38 0.35 0.07 imp:pre:2p;ind:pre:2p; +pilliez piller ver 7.66 8.38 0.02 0.00 ind:imp:2p; +pillons piller ver 7.66 8.38 0.03 0.00 imp:pre:1p;ind:pre:1p; +pillèrent piller ver 7.66 8.38 0.02 0.07 ind:pas:3p; +pillé piller ver m s 7.66 8.38 1.87 1.62 par:pas; +pillée piller ver f s 7.66 8.38 0.58 0.47 par:pas; +pillées piller ver f p 7.66 8.38 0.04 0.47 par:pas; +pillés piller ver m p 7.66 8.38 0.18 0.61 par:pas; +piloches piloche nom f p 0.00 0.07 0.00 0.07 +pilon pilon nom m s 0.62 1.69 0.47 1.28 +pilonnage pilonnage nom m s 0.16 0.61 0.12 0.54 +pilonnages pilonnage nom m p 0.16 0.61 0.04 0.07 +pilonnaient pilonner ver 0.60 1.35 0.01 0.20 ind:imp:3p; +pilonnait pilonner ver 0.60 1.35 0.01 0.20 ind:imp:3s; +pilonnant pilonner ver 0.60 1.35 0.01 0.07 par:pre; +pilonnent pilonner ver 0.60 1.35 0.13 0.14 ind:pre:3p; +pilonner pilonner ver 0.60 1.35 0.10 0.27 inf; +pilonnera pilonner ver 0.60 1.35 0.00 0.07 ind:fut:3s; +pilonneurs pilonneur nom m p 0.00 0.07 0.00 0.07 +pilonnez pilonner ver 0.60 1.35 0.02 0.00 imp:pre:2p;ind:pre:2p; +pilonné pilonner ver m s 0.60 1.35 0.28 0.14 par:pas; +pilonnée pilonner ver f s 0.60 1.35 0.02 0.07 par:pas; +pilonnées pilonner ver f p 0.60 1.35 0.00 0.07 par:pas; +pilonnés pilonner ver m p 0.60 1.35 0.02 0.14 par:pas; +pilons pilon nom m p 0.62 1.69 0.14 0.41 +pilori pilori nom m s 0.79 2.50 0.78 2.36 +piloris pilori nom m p 0.79 2.50 0.01 0.14 +pilosité pilosité nom f s 0.09 0.27 0.09 0.27 +pilot pilot nom m s 1.10 0.00 1.10 0.00 +pilota piloter ver 13.18 4.12 0.00 0.07 ind:pas:3s; +pilotage pilotage nom m s 2.44 1.35 2.44 1.35 +pilotaient piloter ver 13.18 4.12 0.01 0.00 ind:imp:3p; +pilotais piloter ver 13.18 4.12 0.28 0.14 ind:imp:1s;ind:imp:2s; +pilotait piloter ver 13.18 4.12 0.79 0.61 ind:imp:3s; +pilotant piloter ver 13.18 4.12 0.06 0.27 par:pre; +pilote pilote nom s 37.69 8.72 29.10 5.61 +pilotent piloter ver 13.18 4.12 0.06 0.07 ind:pre:3p; +piloter piloter ver 13.18 4.12 6.12 1.82 inf; +pilotera piloter ver 13.18 4.12 0.13 0.00 ind:fut:3s; +piloterai piloter ver 13.18 4.12 0.17 0.00 ind:fut:1s; +piloterait piloter ver 13.18 4.12 0.03 0.14 cnd:pre:3s; +piloteras piloter ver 13.18 4.12 0.02 0.00 ind:fut:2s; +piloteront piloter ver 13.18 4.12 0.01 0.00 ind:fut:3p; +pilotes pilote nom p 37.69 8.72 8.59 3.11 +pilotez piloter ver 13.18 4.12 0.36 0.00 imp:pre:2p;ind:pre:2p; +pilotiez piloter ver 13.18 4.12 0.08 0.00 ind:imp:2p; +pilotin pilotin nom m s 0.10 0.00 0.10 0.00 +pilotis pilotis nom m 0.33 2.30 0.33 2.30 +pilotèrent piloter ver 13.18 4.12 0.00 0.07 ind:pas:3p; +piloté piloter ver m s 13.18 4.12 1.65 0.41 par:pas; +pilotée piloter ver f s 13.18 4.12 0.19 0.00 par:pas; +pilotées piloter ver f p 13.18 4.12 0.01 0.07 par:pas; +pilotés piloter ver m p 13.18 4.12 0.06 0.14 par:pas; +pilou pilou nom m s 0.00 0.95 0.00 0.95 +pilsen pilsen nom f s 0.00 0.07 0.00 0.07 +pilé piler ver m s 3.34 6.15 0.30 1.15 par:pas; +pilée piler ver f s 3.34 6.15 0.19 1.01 par:pas; +pilées piler ver f p 3.34 6.15 0.00 0.27 par:pas; +pilule pilule nom f s 22.64 12.91 6.10 4.86 +pilules pilule nom f p 22.64 12.91 16.54 8.04 +pilum pilum nom m s 0.00 0.07 0.00 0.07 +pilés piler ver m p 3.34 6.15 0.04 0.41 par:pas; +pimbêche pimbêche nom f s 0.45 0.47 0.42 0.34 +pimbêches pimbêche nom f p 0.45 0.47 0.03 0.14 +piment piment nom m s 4.76 4.66 2.94 2.77 +pimenta pimenter ver 0.82 0.88 0.00 0.07 ind:pas:3s; +pimentait pimenter ver 0.82 0.88 0.00 0.20 ind:imp:3s; +pimentant pimenter ver 0.82 0.88 0.00 0.07 par:pre; +pimente pimenter ver 0.82 0.88 0.17 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pimentent pimenter ver 0.82 0.88 0.01 0.00 ind:pre:3p; +pimenter pimenter ver 0.82 0.88 0.56 0.27 inf; +piments piment nom m p 4.76 4.66 1.82 1.89 +pimenté pimenté adj m s 0.13 0.27 0.06 0.20 +pimentée pimenter ver f s 0.82 0.88 0.04 0.07 par:pas; +pimentées pimenté adj f p 0.13 0.27 0.01 0.00 +pimentés pimenté adj m p 0.13 0.27 0.03 0.00 +pimpant pimpant adj m s 0.81 4.05 0.34 0.54 +pimpante pimpant adj f s 0.81 4.05 0.12 2.09 +pimpantes pimpant adj f p 0.81 4.05 0.34 1.22 +pimpants pimpant adj m p 0.81 4.05 0.01 0.20 +pimpon pimpon nom m s 0.01 0.41 0.00 0.14 +pimpons pimpon nom m p 0.01 0.41 0.01 0.27 +pimprenelle pimprenelle nom f s 0.08 0.14 0.08 0.07 +pimprenelles pimprenelle nom f p 0.08 0.14 0.00 0.07 +pin_s pin_s nom m 0.30 0.00 0.30 0.00 +pin_pon pin_pon ono 0.00 0.34 0.00 0.34 +pin_up pin_up nom f 0.71 0.54 0.71 0.54 +pin pin nom m s 5.06 26.62 2.79 9.53 +pina piner ver 0.81 0.20 0.44 0.00 ind:pas:3s; +pinacle pinacle nom m s 0.02 0.61 0.02 0.54 +pinacles pinacle nom m p 0.02 0.61 0.00 0.07 +pinacothèque pinacothèque nom f s 0.00 0.20 0.00 0.20 +pinaillage pinaillage nom m s 0.02 0.00 0.02 0.00 +pinaillait pinailler ver 0.50 0.34 0.00 0.07 ind:imp:3s; +pinaille pinailler ver 0.50 0.34 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pinailler pinailler ver 0.50 0.34 0.41 0.14 inf; +pinailles pinailler ver 0.50 0.34 0.05 0.00 ind:pre:2s; +pinailleur pinailleur nom m s 0.02 0.00 0.02 0.00 +pinaillé pinailler ver m s 0.50 0.34 0.02 0.00 par:pas; +pinard pinard nom m s 0.39 6.89 0.39 6.76 +pinardiers pinardier nom m p 0.00 0.14 0.00 0.07 +pinardière pinardier nom f s 0.00 0.14 0.00 0.07 +pinards pinard nom m p 0.39 6.89 0.00 0.14 +pinasse pinasse nom f s 0.00 0.54 0.00 0.14 +pinasses pinasse nom f p 0.00 0.54 0.00 0.41 +pince_fesse pince_fesse nom m p 0.05 0.14 0.05 0.14 +pince_maille pince_maille nom m p 0.00 0.07 0.00 0.07 +pince_monseigneur pince_monseigneur nom f s 0.03 0.54 0.03 0.54 +pince_nez pince_nez nom m 0.07 1.35 0.07 1.35 +pince_sans_rire pince_sans_rire adj s 0.05 0.47 0.05 0.47 +pince pince nom f s 9.00 14.73 5.62 7.64 +pinceau pinceau nom m s 4.59 17.91 2.96 10.27 +pinceaux pinceau nom m p 4.59 17.91 1.63 7.64 +pincement pincement nom m s 0.19 3.92 0.18 3.65 +pincements pincement nom m p 0.19 3.92 0.01 0.27 +pincent pincer ver 10.84 23.65 0.14 0.54 ind:pre:3p; +pincer pincer ver 10.84 23.65 4.06 3.72 inf; +pincera pincer ver 10.84 23.65 0.20 0.07 ind:fut:3s; +pincerai pincer ver 10.84 23.65 0.02 0.00 ind:fut:1s; +pinceras pincer ver 10.84 23.65 0.01 0.00 ind:fut:2s; +pincerez pincer ver 10.84 23.65 0.01 0.00 ind:fut:2p; +pincerons pincer ver 10.84 23.65 0.01 0.00 ind:fut:1p; +pinces pince nom f p 9.00 14.73 3.38 7.09 +pincette pincette nom f s 0.29 1.49 0.05 0.34 +pincettes pincette nom f p 0.29 1.49 0.25 1.15 +pinceur pinceur nom m s 0.00 0.07 0.00 0.07 +pincez pincer ver 10.84 23.65 0.82 0.00 imp:pre:2p;ind:pre:2p; +pinchart pinchart nom m s 0.00 0.07 0.00 0.07 +pinciez pincer ver 10.84 23.65 0.16 0.00 ind:imp:2p; +pincions pincer ver 10.84 23.65 0.01 0.20 ind:imp:1p; +pincèrent pincer ver 10.84 23.65 0.00 0.07 ind:pas:3p; +pincé pincer ver m s 10.84 23.65 1.27 2.03 par:pas; +pincée pincée nom f s 1.37 3.31 1.30 2.91 +pincées pincer ver f p 10.84 23.65 0.10 3.04 par:pas; +pincés pincer ver m p 10.84 23.65 0.10 0.47 par:pas; +pine pine nom f s 1.59 0.88 1.48 0.68 +pineau pineau nom m s 0.00 0.14 0.00 0.14 +piner piner ver 0.81 0.20 0.16 0.07 inf; +pines pine nom f p 1.59 0.88 0.11 0.20 +ping_pong ping_pong nom m s 2.67 2.36 2.67 2.36 +pinglot pinglot nom m s 0.00 0.14 0.00 0.07 +pinglots pinglot nom m p 0.00 0.14 0.00 0.07 +pingouin pingouin nom m s 3.51 2.64 2.29 1.35 +pingouins pingouin nom m p 3.51 2.64 1.23 1.28 +pingre pingre adj s 0.58 0.74 0.56 0.54 +pingrerie pingrerie nom f s 0.02 0.20 0.02 0.20 +pingres pingre nom p 0.19 0.34 0.15 0.07 +pink pink nom f s 1.00 0.34 1.00 0.34 +pinot pinot nom m s 0.47 0.14 0.46 0.07 +pinots pinot nom m p 0.47 0.14 0.01 0.07 +pins pin nom m p 5.06 26.62 2.27 17.09 +pinson pinson nom m s 2.86 1.82 2.68 1.08 +pinsons pinson nom m p 2.86 1.82 0.18 0.74 +pinta pinter ver 0.33 0.68 0.05 0.20 ind:pas:3s;;ind:pas:3s; +pintade pintade nom f s 0.44 2.16 0.44 0.54 +pintades pintade nom f p 0.44 2.16 0.00 1.62 +pintait pinter ver 0.33 0.68 0.00 0.07 ind:imp:3s; +pinte pinte nom f s 1.34 0.61 0.90 0.34 +pinter pinter ver 0.33 0.68 0.12 0.14 inf; +pintes pinte nom f p 1.34 0.61 0.44 0.27 +pinça pincer ver 10.84 23.65 0.00 2.43 ind:pas:3s; +pinçage pinçage nom m s 0.10 0.00 0.10 0.00 +pinçai pincer ver 10.84 23.65 0.00 0.07 ind:pas:1s; +pinçaient pincer ver 10.84 23.65 0.05 0.61 ind:imp:3p; +pinçais pincer ver 10.84 23.65 0.07 0.34 ind:imp:1s; +pinçait pincer ver 10.84 23.65 0.52 2.23 ind:imp:3s; +pinçant pincer ver 10.84 23.65 0.08 2.09 par:pre; +pinçard pinçard adj m s 0.00 0.07 0.00 0.07 +pinède pinède nom f s 0.72 3.72 0.58 2.70 +pinèdes pinède nom f p 0.72 3.72 0.15 1.01 +pinçon pinçon nom m s 0.04 0.20 0.04 0.07 +pinçons pincer ver 10.84 23.65 0.01 0.00 imp:pre:1p; +pinçotait pinçoter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +pinçotant pinçoter ver 0.00 0.20 0.00 0.07 par:pre; +pinçote pinçoter ver 0.00 0.20 0.00 0.07 ind:pre:3s; +pinçure pinçure nom f s 0.00 0.07 0.00 0.07 +pinté pinter ver m s 0.33 0.68 0.04 0.00 par:pas; +pintée pinter ver f s 0.33 0.68 0.01 0.14 par:pas; +pintés pinter ver m p 0.33 0.68 0.00 0.07 par:pas; +piné piner ver m s 0.81 0.20 0.10 0.00 par:pas; +pinéal pinéal adj m s 0.23 0.07 0.02 0.07 +pinéale pinéal adj f s 0.23 0.07 0.19 0.00 +pinéales pinéal adj f p 0.23 0.07 0.02 0.00 +piochaient piocher ver 1.11 2.91 0.00 0.14 ind:imp:3p; +piochais piocher ver 1.11 2.91 0.00 0.14 ind:imp:1s; +piochait piocher ver 1.11 2.91 0.00 0.54 ind:imp:3s; +piochant piocher ver 1.11 2.91 0.01 0.14 par:pre; +pioche pioche nom f s 4.36 6.42 4.18 4.39 +piochent piocher ver 1.11 2.91 0.01 0.07 ind:pre:3p; +piocher piocher ver 1.11 2.91 0.50 1.42 inf; +pioches pioche nom f p 4.36 6.42 0.18 2.03 +piocheur piocheur nom m s 0.00 0.07 0.00 0.07 +piochez piocher ver 1.11 2.91 0.25 0.00 imp:pre:2p;ind:pre:2p; +pioché piocher ver m s 1.11 2.91 0.18 0.00 par:pas; +piochée piocher ver f s 1.11 2.91 0.00 0.07 par:pas; +piochées piocher ver f p 1.11 2.91 0.00 0.07 par:pas; +piolet piolet nom m s 0.31 0.14 0.31 0.14 +pion pion nom m s 4.91 6.49 2.98 3.58 +pionce pioncer ver 1.63 2.64 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pioncent pioncer ver 1.63 2.64 0.00 0.20 ind:pre:3p; +pioncer pioncer ver 1.63 2.64 0.62 0.81 inf; +pioncera pioncer ver 1.63 2.64 0.01 0.00 ind:fut:3s; +pionces pioncer ver 1.63 2.64 0.15 0.14 ind:pre:2s; +pioncez pioncer ver 1.63 2.64 0.16 0.00 imp:pre:2p;ind:pre:2p; +pioncé pioncer ver m s 1.63 2.64 0.05 0.14 par:pas; +pionne pion nom f s 4.91 6.49 0.01 0.14 +pionner pionner ver 0.01 0.00 0.01 0.00 inf; +pionnier pionnier nom m s 4.17 9.73 1.27 2.50 +pionniers pionnier nom m p 4.17 9.73 2.62 7.03 +pionnière pionnier nom f s 4.17 9.73 0.28 0.07 +pionnières pionnière nom f p 0.03 0.00 0.03 0.00 +pions pion nom m p 4.91 6.49 1.92 2.77 +pionçais pioncer ver 1.63 2.64 0.33 0.07 ind:imp:1s;ind:imp:2s; +pionçait pioncer ver 1.63 2.64 0.03 0.41 ind:imp:3s; +pionçant pioncer ver 1.63 2.64 0.00 0.07 par:pre; +piot piot nom m s 0.00 0.34 0.00 0.14 +piots piot nom m p 0.00 0.34 0.00 0.20 +pioupiou pioupiou nom m s 0.05 0.34 0.05 0.27 +pioupious pioupiou nom m p 0.05 0.34 0.00 0.07 +pipa pipa nom m s 0.02 0.07 0.02 0.07 +pipai piper ver 20.57 2.57 0.00 0.07 ind:pas:1s; +pipais piper ver 20.57 2.57 0.01 0.07 ind:imp:1s; +pipait piper ver 20.57 2.57 0.01 0.14 ind:imp:3s; +pipant piper ver 20.57 2.57 0.10 0.00 par:pre; +pipasse piper ver 20.57 2.57 0.00 0.07 sub:imp:1s; +pipe_line pipe_line nom m s 0.11 0.34 0.09 0.34 +pipe_line pipe_line nom m p 0.11 0.34 0.02 0.00 +pipe pipe nom f s 16.38 32.84 12.74 25.74 +pipeau pipeau nom m s 2.09 1.22 1.84 0.95 +pipeaux pipeau nom m p 2.09 1.22 0.25 0.27 +pipelet pipelet nom m s 0.00 0.47 0.00 0.34 +pipelets pipelet nom m p 0.00 0.47 0.00 0.14 +pipelette pipelette nom f s 0.35 1.82 0.27 1.62 +pipelettes pipelette nom f p 0.35 1.82 0.09 0.20 +pipeline pipeline nom m s 0.51 0.14 0.42 0.07 +pipelines pipeline nom m p 0.51 0.14 0.08 0.07 +piper piper ver 20.57 2.57 19.94 0.88 inf; +pipera piper ver 20.57 2.57 0.01 0.00 ind:fut:3s; +piperade piperade nom f s 0.00 0.07 0.00 0.07 +piperie piperie nom f s 0.00 0.07 0.00 0.07 +pipes pipe nom f p 16.38 32.84 3.64 7.09 +pipette pipette nom f s 0.55 0.68 0.54 0.54 +pipettes pipette nom f p 0.55 0.68 0.01 0.14 +pipeur pipeur nom m s 0.00 0.47 0.00 0.14 +pipeuse pipeur nom f s 0.00 0.47 0.00 0.14 +pipeuses pipeuse nom f p 0.14 0.00 0.14 0.00 +pipi_room pipi_room nom m s 0.05 0.00 0.05 0.00 +pipi pipi nom m s 15.36 10.07 15.33 9.19 +pipiers pipier nom m p 0.00 0.07 0.00 0.07 +pipis pipi nom m p 15.36 10.07 0.03 0.88 +pipistrelle pipistrelle nom f s 0.13 0.00 0.13 0.00 +pipo pipo nom m s 0.18 0.00 0.18 0.00 +pipé piper ver m s 20.57 2.57 0.16 0.20 par:pas; +pipée pipée nom f s 0.02 0.07 0.02 0.00 +pipées pipée nom f p 0.02 0.07 0.00 0.07 +pipés piper ver m p 20.57 2.57 0.24 0.41 par:pas; +piqûre piqûre nom f s 11.41 10.95 7.59 6.08 +piqûres piqûre nom f p 11.41 10.95 3.82 4.86 +piqua piquer ver 50.05 64.86 0.03 3.72 ind:pas:3s; +piquage piquage nom m s 0.02 0.07 0.02 0.00 +piquages piquage nom m p 0.02 0.07 0.00 0.07 +piquai piquer ver 50.05 64.86 0.01 0.34 ind:pas:1s; +piquaient piquer ver 50.05 64.86 0.11 2.36 ind:imp:3p; +piquais piquer ver 50.05 64.86 0.91 0.88 ind:imp:1s;ind:imp:2s; +piquait piquer ver 50.05 64.86 0.90 6.55 ind:imp:3s; +piquant piquant nom m s 1.17 1.76 0.74 1.15 +piquante piquant adj f s 2.59 6.82 1.60 2.57 +piquantes piquant adj f p 2.59 6.82 0.31 1.22 +piquants piquant nom m p 1.17 1.76 0.43 0.61 +pique_assiette pique_assiette nom s 0.39 0.34 0.27 0.27 +pique_assiette pique_assiette nom p 0.39 0.34 0.12 0.07 +pique_boeuf pique_boeuf nom m p 0.00 0.07 0.00 0.07 +pique_feu pique_feu nom m 0.03 0.81 0.03 0.81 +pique_niquer pique_niquer ver 1.03 0.74 0.01 0.00 ind:imp:3p; +pique_nique pique_nique nom m s 6.05 4.12 5.57 3.18 +pique_niquer pique_niquer ver 1.03 0.74 0.03 0.07 ind:pre:3p; +pique_niquer pique_niquer ver 1.03 0.74 0.83 0.47 inf;; +pique_niquer pique_niquer ver 1.03 0.74 0.01 0.00 cnd:pre:3p; +pique_niquer pique_niquer ver 1.03 0.74 0.01 0.00 ind:fut:1p; +pique_nique pique_nique nom m p 6.05 4.12 0.48 0.95 +pique_niqueur pique_niqueur nom m p 0.02 0.27 0.02 0.27 +pique_niquer pique_niquer ver 1.03 0.74 0.01 0.07 ind:pre:2p; +pique_niquer pique_niquer ver m s 1.03 0.74 0.05 0.07 par:pas; +pique piquer ver 50.05 64.86 7.74 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +piquent piquer ver 50.05 64.86 1.54 2.57 ind:pre:3p; +piquer piquer ver 50.05 64.86 15.35 14.26 inf; +piquera piquer ver 50.05 64.86 0.55 0.20 ind:fut:3s; +piquerai piquer ver 50.05 64.86 0.16 0.07 ind:fut:1s; +piqueraient piquer ver 50.05 64.86 0.02 0.07 cnd:pre:3p; +piquerais piquer ver 50.05 64.86 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +piquerait piquer ver 50.05 64.86 0.08 0.27 cnd:pre:3s; +piqueras piquer ver 50.05 64.86 0.17 0.14 ind:fut:2s; +piquerez piquer ver 50.05 64.86 0.01 0.00 ind:fut:2p; +piquerons piqueron nom m p 0.14 0.00 0.14 0.00 +piqueront piquer ver 50.05 64.86 0.04 0.14 ind:fut:3p; +piques piquer ver 50.05 64.86 1.92 0.61 ind:pre:2s; +piquet piquet nom m s 3.64 9.39 1.48 4.73 +piquetage piquetage nom m s 0.00 0.07 0.00 0.07 +piquetaient piqueter ver 0.00 3.18 0.00 0.41 ind:imp:3p; +piquetait piqueter ver 0.00 3.18 0.00 0.07 ind:imp:3s; +piqueter piqueter ver 0.00 3.18 0.00 0.14 inf; +piquetis piquetis nom m 0.00 0.14 0.00 0.14 +piquets piquet nom m p 3.64 9.39 2.16 4.66 +piquette piquette nom f s 0.99 1.15 0.99 1.08 +piquettes piquette nom f p 0.99 1.15 0.00 0.07 +piqueté piqueter ver m s 0.00 3.18 0.00 0.95 par:pas; +piquetée piqueter ver f s 0.00 3.18 0.00 0.88 par:pas; +piquetées piqueter ver f p 0.00 3.18 0.00 0.47 par:pas; +piquetés piqueter ver m p 0.00 3.18 0.00 0.27 par:pas; +piqueur piqueur adj m s 0.76 0.61 0.61 0.54 +piqueurs piqueur nom m p 0.32 1.35 0.14 0.34 +piqueuse piqueur nom f s 0.32 1.35 0.00 0.27 +piqueuses piqueur nom f p 0.32 1.35 0.00 0.41 +piqueux piqueux nom m 0.01 0.20 0.01 0.20 +piquez piquer ver 50.05 64.86 1.15 0.20 imp:pre:2p;ind:pre:2p; +piquier piquier nom m s 0.01 0.07 0.01 0.07 +piquiez piquer ver 50.05 64.86 0.13 0.07 ind:imp:2p; +piquions piquer ver 50.05 64.86 0.00 0.07 ind:imp:1p; +piquons piquer ver 50.05 64.86 0.04 0.27 imp:pre:1p;ind:pre:1p; +piquouse piquouse nom f s 0.04 0.95 0.02 0.54 +piquouser piquouser ver 0.01 0.00 0.01 0.00 inf; +piquouses piquouse nom f p 0.04 0.95 0.02 0.41 +piquouze piquouze nom f s 0.05 0.34 0.02 0.20 +piquouzes piquouze nom f p 0.05 0.34 0.03 0.14 +piquèrent piquer ver 50.05 64.86 0.00 0.47 ind:pas:3p; +piqué piquer ver m s 50.05 64.86 15.18 11.55 par:pas; +piquée piquer ver f s 50.05 64.86 2.79 3.78 par:pas; +piquées piquer ver f p 50.05 64.86 0.38 1.15 par:pas; +piqués piquer ver m p 50.05 64.86 0.58 2.57 par:pas; +pirandellienne pirandellien adj f s 0.00 0.07 0.00 0.07 +piranha piranha nom m s 1.32 0.14 0.26 0.00 +piranhas piranha nom m p 1.32 0.14 1.06 0.14 +piratage piratage nom m s 0.56 0.07 0.53 0.07 +piratages piratage nom m p 0.56 0.07 0.03 0.00 +pirataient pirater ver 2.84 0.47 0.00 0.07 ind:imp:3p; +piratant pirater ver 2.84 0.47 0.02 0.07 par:pre; +pirate pirate nom m s 8.14 5.47 3.88 1.69 +piratent pirater ver 2.84 0.47 0.06 0.00 ind:pre:3p; +pirater pirater ver 2.84 0.47 0.90 0.14 inf; +piraterie piraterie nom f s 0.51 0.61 0.49 0.41 +pirateries piraterie nom f p 0.51 0.61 0.02 0.20 +pirates pirate nom m p 8.14 5.47 4.26 3.78 +piratez pirater ver 2.84 0.47 0.06 0.00 imp:pre:2p;ind:pre:2p; +piraté pirater ver m s 2.84 0.47 1.14 0.14 par:pas; +piratée pirater ver f s 2.84 0.47 0.07 0.00 par:pas; +piratés pirater ver m p 2.84 0.47 0.25 0.07 par:pas; +pire pire adj s 98.83 57.70 83.22 39.80 +pires pire adj p 98.83 57.70 15.61 17.91 +piriforme piriforme adj m s 0.00 0.47 0.00 0.34 +piriformes piriforme adj f p 0.00 0.47 0.00 0.14 +pirogue pirogue nom f s 0.76 4.73 0.65 2.50 +pirogues pirogue nom f p 0.76 4.73 0.11 2.23 +pirojki pirojki nom m 0.28 0.20 0.00 0.14 +pirojkis pirojki nom m p 0.28 0.20 0.28 0.07 +pirolle pirolle nom f s 0.00 0.20 0.00 0.20 +pirouetta pirouetter ver 0.10 0.81 0.00 0.20 ind:pas:3s; +pirouettais pirouetter ver 0.10 0.81 0.00 0.07 ind:imp:1s; +pirouettait pirouetter ver 0.10 0.81 0.00 0.07 ind:imp:3s; +pirouettant pirouetter ver 0.10 0.81 0.00 0.07 par:pre; +pirouette pirouette nom f s 1.39 3.51 0.42 3.04 +pirouetter pirouetter ver 0.10 0.81 0.07 0.20 inf; +pirouettes pirouette nom f p 1.39 3.51 0.96 0.47 +pis_aller pis_aller nom m 0.14 0.81 0.14 0.81 +pis pis adv_sup 30.15 37.16 30.15 37.16 +pisa piser ver 0.50 0.00 0.50 0.00 ind:pas:3s; +pisan pisan adj m s 0.10 0.07 0.10 0.00 +pisans pisan adj m p 0.10 0.07 0.00 0.07 +pisans pisan nom m p 0.00 0.07 0.00 0.07 +piscicole piscicole adj s 0.07 0.07 0.06 0.00 +piscicoles piscicole adj p 0.07 0.07 0.01 0.07 +pisciculteur pisciculteur nom m s 0.01 0.07 0.01 0.07 +pisciculture pisciculture nom f s 0.04 0.14 0.04 0.14 +pisciforme pisciforme adj f s 0.00 0.07 0.00 0.07 +piscine piscine nom f s 23.62 17.09 22.19 15.74 +piscines piscine nom f p 23.62 17.09 1.43 1.35 +pisiforme pisiforme nom m s 0.03 0.00 0.03 0.00 +pissa pisser ver 39.03 26.49 0.01 0.54 ind:pas:3s; +pissaient pisser ver 39.03 26.49 0.04 0.68 ind:imp:3p; +pissais pisser ver 39.03 26.49 0.67 0.27 ind:imp:1s;ind:imp:2s; +pissait pisser ver 39.03 26.49 0.78 1.96 ind:imp:3s; +pissaladière pissaladière nom f s 0.00 0.07 0.00 0.07 +pissant pisser ver 39.03 26.49 0.45 0.68 par:pre; +pissat pissat nom m s 0.10 0.41 0.10 0.41 +pisse_copie pisse_copie nom s 0.01 0.27 0.01 0.20 +pisse_copie pisse_copie nom p 0.01 0.27 0.00 0.07 +pisse_froid pisse_froid nom m 0.10 0.34 0.10 0.34 +pisse_vinaigre pisse_vinaigre nom m 0.04 0.07 0.04 0.07 +pisse pisser ver 39.03 26.49 6.84 5.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pissenlit pissenlit nom m s 1.32 3.24 0.68 1.28 +pissenlits pissenlit nom m p 1.32 3.24 0.65 1.96 +pissent pisser ver 39.03 26.49 0.60 0.68 ind:pre:3p; +pisser pisser ver 39.03 26.49 20.83 13.65 inf; +pissera pisser ver 39.03 26.49 0.25 0.00 ind:fut:3s; +pisserai pisser ver 39.03 26.49 0.43 0.00 ind:fut:1s; +pisseraient pisser ver 39.03 26.49 0.01 0.14 cnd:pre:3p; +pisserais pisser ver 39.03 26.49 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +pisserait pisser ver 39.03 26.49 0.07 0.14 cnd:pre:3s; +pisseras pisser ver 39.03 26.49 0.06 0.27 ind:fut:2s; +pisses pisser ver 39.03 26.49 1.05 0.07 ind:pre:2s; +pissette pissette nom f s 0.14 0.20 0.14 0.20 +pisseur pisseur nom m s 0.51 0.88 0.25 0.14 +pisseurs pisseur nom m p 0.51 0.88 0.03 0.07 +pisseuse pisseux adj f s 0.71 2.84 0.30 0.68 +pisseuses pisseuse nom f p 0.14 0.00 0.14 0.00 +pisseux pisseux adj m 0.71 2.84 0.40 1.89 +pissez pisser ver 39.03 26.49 1.07 0.20 imp:pre:2p;ind:pre:2p; +pissoir pissoir nom m s 0.02 0.00 0.02 0.00 +pissons pisser ver 39.03 26.49 0.14 0.00 imp:pre:1p;ind:pre:1p; +pissât pisser ver 39.03 26.49 0.00 0.07 sub:imp:3s; +pissotière pissotière nom f s 0.61 3.45 0.41 2.03 +pissotières pissotière nom f p 0.61 3.45 0.20 1.42 +pissou pissou nom m s 5.28 0.07 5.28 0.07 +pissèrent pisser ver 39.03 26.49 0.00 0.07 ind:pas:3p; +pissé pisser ver m s 39.03 26.49 5.46 1.89 par:pas; +pissée pisser ver f s 39.03 26.49 0.13 0.00 par:pas; +pista pister ver 1.90 1.28 0.00 0.07 ind:pas:3s; +pistache pistache nom f s 0.69 1.69 0.41 0.74 +pistaches pistache nom f p 0.69 1.69 0.27 0.95 +pistachier pistachier nom m s 0.00 0.14 0.00 0.07 +pistachiers pistachier nom m p 0.00 0.14 0.00 0.07 +pistage pistage nom m s 0.30 0.00 0.30 0.00 +pistais pister ver 1.90 1.28 0.00 0.07 ind:imp:1s; +pistait pister ver 1.90 1.28 0.06 0.07 ind:imp:3s; +pistant pister ver 1.90 1.28 0.00 0.20 par:pre; +pistard pistard nom m s 0.01 0.47 0.01 0.20 +pistards pistard nom m p 0.01 0.47 0.00 0.27 +piste piste nom f s 51.77 41.15 43.01 34.86 +pistent pister ver 1.90 1.28 0.08 0.14 ind:pre:3p; +pister pister ver 1.90 1.28 0.76 0.47 inf; +pistera pister ver 1.90 1.28 0.01 0.00 ind:fut:3s; +pisterai pister ver 1.90 1.28 0.02 0.00 ind:fut:1s; +pistes piste nom f p 51.77 41.15 8.77 6.28 +pisteur pisteur nom m s 0.54 0.95 0.47 0.81 +pisteurs pisteur nom m p 0.54 0.95 0.06 0.14 +pistez pister ver 1.90 1.28 0.15 0.00 imp:pre:2p;ind:pre:2p; +pistil pistil nom m s 0.02 0.81 0.02 0.47 +pistils pistil nom m p 0.02 0.81 0.00 0.34 +pistole pistole nom f s 1.09 0.34 0.16 0.27 +pistolero pistolero nom m s 0.24 0.14 0.08 0.07 +pistoleros pistolero nom m p 0.24 0.14 0.16 0.07 +pistoles pistole nom f p 1.09 0.34 0.93 0.07 +pistolet_mitrailleur pistolet_mitrailleur nom m s 0.02 0.00 0.02 0.00 +pistolet pistolet nom m s 34.92 18.78 31.63 14.80 +pistolets pistolet nom m p 34.92 18.78 3.29 3.99 +pistoleurs pistoleur nom m p 0.00 0.07 0.00 0.07 +pistolétade pistolétade nom f s 0.00 0.14 0.00 0.14 +piston piston nom m s 2.46 3.18 1.79 2.50 +pistonnais pistonner ver 1.03 0.47 0.00 0.07 ind:imp:2s; +pistonner pistonner ver 1.03 0.47 0.29 0.20 inf; +pistonnera pistonner ver 1.03 0.47 0.01 0.00 ind:fut:3s; +pistonnerai pistonner ver 1.03 0.47 0.01 0.00 ind:fut:1s; +pistonnions pistonner ver 1.03 0.47 0.01 0.00 ind:imp:1p; +pistonné pistonner ver m s 1.03 0.47 0.67 0.14 par:pas; +pistonnée pistonner ver f s 1.03 0.47 0.04 0.00 par:pas; +pistonnés pistonné nom m p 0.35 0.07 0.10 0.07 +pistons piston nom m p 2.46 3.18 0.68 0.68 +pistou pistou nom m s 0.38 0.00 0.38 0.00 +pisté pister ver m s 1.90 1.28 0.17 0.14 par:pas; +pistée pister ver f s 1.90 1.28 0.03 0.00 par:pas; +pistées pister ver f p 1.90 1.28 0.00 0.07 par:pas; +pistés pister ver m p 1.90 1.28 0.08 0.00 par:pas; +pisé pisé nom m s 0.02 0.47 0.02 0.47 +pit_bull pit_bull nom m s 0.63 0.00 0.26 0.00 +pit_bull pit_bull nom m p 0.63 0.00 0.06 0.00 +pit_bull pit_bull nom m s 0.63 0.00 0.31 0.00 +pita pita nom m s 0.73 0.00 0.70 0.00 +pitaine pitaine nom m s 0.00 2.09 0.00 2.09 +pitance pitance nom f s 0.35 2.70 0.35 2.57 +pitances pitance nom f p 0.35 2.70 0.00 0.14 +pitancher pitancher ver 0.00 0.14 0.00 0.07 inf; +pitancherai pitancher ver 0.00 0.14 0.00 0.07 ind:fut:1s; +pitancier pitancier nom m s 0.00 0.07 0.00 0.07 +pitas pita nom m p 0.73 0.00 0.03 0.00 +pitbull pitbull nom m s 1.02 0.00 0.82 0.00 +pitbulls pitbull nom m p 1.02 0.00 0.20 0.00 +pitch pitch nom m s 0.29 0.00 0.29 0.00 +pitcher pitcher ver 0.03 0.00 0.03 0.00 inf; +pitchoun pitchoun nom m s 0.03 0.07 0.02 0.00 +pitchoune pitchoun adj f s 0.03 0.00 0.03 0.00 +pitchounet pitchounet nom m s 0.14 0.00 0.14 0.00 +pitchounette pitchounette nom f s 0.14 0.00 0.14 0.00 +pitchpin pitchpin nom m s 0.00 0.47 0.00 0.47 +piteuse piteux adj f s 0.82 4.46 0.12 1.69 +piteusement piteusement adv 0.14 1.42 0.14 1.42 +piteuses piteux adj f p 0.82 4.46 0.00 0.07 +piteux piteux adj m 0.82 4.46 0.70 2.70 +pièce pièce nom f s 151.10 276.35 110.66 193.78 +pièces pièce nom f p 151.10 276.35 40.44 82.57 +piège piège nom m s 33.12 30.20 27.53 19.93 +piègent piéger ver 21.77 7.09 0.20 0.14 ind:pre:3p; +pièges piège nom m p 33.12 30.20 5.59 10.27 +pithiviers pithiviers nom m 0.00 0.07 0.00 0.07 +piète piéter ver 0.01 0.54 0.00 0.07 ind:pre:3s; +piètement piètement nom m s 0.00 0.07 0.00 0.07 +piètre piètre adj s 2.65 4.19 2.47 3.45 +piètrement piètrement adv 0.03 0.00 0.03 0.00 +piètres piètre adj p 2.65 4.19 0.18 0.74 +pithécanthrope pithécanthrope nom m s 0.00 0.34 0.00 0.20 +pithécanthropes pithécanthrope nom m p 0.00 0.34 0.00 0.14 +pitié pitié nom f s 76.38 58.11 76.38 57.91 +pitiés pitié nom f p 76.38 58.11 0.00 0.20 +piton piton nom m s 0.46 7.30 0.40 6.42 +pitonnant pitonner ver 0.00 0.14 0.00 0.07 par:pre; +pitonner pitonner ver 0.00 0.14 0.00 0.07 inf; +pitons piton nom m p 0.46 7.30 0.06 0.88 +pitoyable pitoyable adj s 6.26 9.19 5.63 6.96 +pitoyablement pitoyablement adv 0.17 0.47 0.17 0.47 +pitoyables pitoyable adj p 6.26 9.19 0.63 2.23 +pitre pitre nom m s 1.70 1.96 1.55 1.69 +pitrerie pitrerie nom f s 0.99 1.28 0.16 0.34 +pitreries pitrerie nom f p 0.99 1.28 0.83 0.95 +pitres pitre nom m p 1.70 1.96 0.15 0.27 +pittoresque pittoresque adj s 1.71 6.49 1.47 4.53 +pittoresques pittoresque adj p 1.71 6.49 0.25 1.96 +pituitaire pituitaire adj s 0.15 0.20 0.12 0.14 +pituitaires pituitaire adj p 0.15 0.20 0.03 0.07 +pituite pituite nom f s 0.01 0.07 0.01 0.07 +pityriasis pityriasis nom m 0.01 0.07 0.01 0.07 +piu piu adv 0.02 0.07 0.02 0.07 +piécette piécette nom f s 0.09 1.89 0.07 0.68 +piécettes piécette nom f p 0.09 1.89 0.02 1.22 +piédestal piédestal nom m s 0.80 2.09 0.79 2.09 +piédestaux piédestal nom m p 0.80 2.09 0.01 0.00 +piédroit piédroit nom m s 0.00 0.20 0.00 0.14 +piédroits piédroit nom m p 0.00 0.20 0.00 0.07 +piégeage piégeage nom m s 0.01 0.27 0.01 0.14 +piégeages piégeage nom m p 0.01 0.27 0.00 0.14 +piégeais piéger ver 21.77 7.09 0.02 0.07 ind:imp:1s; +piégeait piéger ver 21.77 7.09 0.04 0.41 ind:imp:3s; +piégeant piéger ver 21.77 7.09 0.04 0.00 par:pre; +piéger piéger ver 21.77 7.09 6.33 2.36 inf; +piégerai piéger ver 21.77 7.09 0.04 0.07 ind:fut:1s; +piégerais piéger ver 21.77 7.09 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +piégerait piéger ver 21.77 7.09 0.01 0.07 cnd:pre:3s; +piégerez piéger ver 21.77 7.09 0.03 0.00 ind:fut:2p; +piégeront piéger ver 21.77 7.09 0.01 0.07 ind:fut:3p; +piégeur piégeur nom m s 0.23 0.34 0.08 0.20 +piégeurs piégeur nom m p 0.23 0.34 0.00 0.07 +piégeuse piégeur nom f s 0.23 0.34 0.15 0.00 +piégeuses piégeur nom f p 0.23 0.34 0.00 0.07 +piégez piéger ver 21.77 7.09 0.07 0.00 imp:pre:2p;ind:pre:2p; +piégé piéger ver m s 21.77 7.09 9.12 1.69 par:pas; +piégée piéger ver f s 21.77 7.09 2.34 0.61 par:pas; +piégées piéger ver f p 21.77 7.09 0.43 0.54 par:pas; +piégés piéger ver m p 21.77 7.09 2.53 0.68 par:pas; +piémont piémont nom m s 0.01 0.14 0.01 0.14 +piémontais piémontais nom m 0.60 0.34 0.60 0.34 +piémontaise piémontais adj f s 0.34 0.34 0.01 0.07 +piéride piéride nom f s 0.00 0.14 0.00 0.07 +piérides piéride nom f p 0.00 0.14 0.00 0.07 +piéta piéta nom f s 0.15 0.07 0.15 0.07 +piétaille piétaille nom f s 0.20 1.28 0.20 1.28 +piétait piéter ver 0.01 0.54 0.00 0.07 ind:imp:3s; +piétant piéter ver 0.01 0.54 0.00 0.07 par:pre; +piétement piétement nom m s 0.00 0.47 0.00 0.47 +piéter piéter ver 0.01 0.54 0.00 0.07 inf; +piétin piétin nom m s 0.00 0.07 0.00 0.07 +piétina piétiner ver 6.78 20.61 0.10 0.74 ind:pas:3s; +piétinai piétiner ver 6.78 20.61 0.00 0.07 ind:pas:1s; +piétinaient piétiner ver 6.78 20.61 0.11 1.62 ind:imp:3p; +piétinais piétiner ver 6.78 20.61 0.29 0.14 ind:imp:1s;ind:imp:2s; +piétinait piétiner ver 6.78 20.61 0.03 1.89 ind:imp:3s; +piétinant piétiner ver 6.78 20.61 0.01 2.43 par:pre; +piétinante piétinant adj f s 0.00 0.34 0.00 0.07 +piétine piétiner ver 6.78 20.61 1.66 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +piétinement piétinement nom m s 0.11 5.34 0.09 4.53 +piétinements piétinement nom m p 0.11 5.34 0.01 0.81 +piétinent piétiner ver 6.78 20.61 0.39 1.28 ind:pre:3p; +piétiner piétiner ver 6.78 20.61 1.39 3.45 inf; +piétinera piétiner ver 6.78 20.61 0.26 0.14 ind:fut:3s; +piétinerai piétiner ver 6.78 20.61 0.14 0.00 ind:fut:1s; +piétinerais piétiner ver 6.78 20.61 0.03 0.00 cnd:pre:2s; +piétinerait piétiner ver 6.78 20.61 0.02 0.00 cnd:pre:3s; +piétineront piétiner ver 6.78 20.61 0.01 0.00 ind:fut:3p; +piétinez piétiner ver 6.78 20.61 0.20 0.07 imp:pre:2p;ind:pre:2p; +piétinons piétiner ver 6.78 20.61 0.02 0.14 ind:pre:1p; +piétinèrent piétiner ver 6.78 20.61 0.00 0.20 ind:pas:3p; +piétiné piétiner ver m s 6.78 20.61 1.35 2.57 par:pas; +piétinée piétiner ver f s 6.78 20.61 0.34 1.55 par:pas; +piétinées piétiner ver f p 6.78 20.61 0.05 0.74 par:pas; +piétinés piétiner ver m p 6.78 20.61 0.37 1.15 par:pas; +piétiste piétiste adj f s 0.00 0.07 0.00 0.07 +piéton piéton nom m s 0.75 3.72 0.54 1.28 +piétonne piéton adj f s 0.85 1.82 0.04 0.14 +piétonnes piéton adj f p 0.85 1.82 0.01 0.00 +piétonnier piétonnier adj m s 0.14 0.20 0.02 0.07 +piétonnière piétonnier adj f s 0.14 0.20 0.02 0.07 +piétonnières piétonnier adj f p 0.14 0.20 0.10 0.07 +piétons piéton adj m p 0.85 1.82 0.26 1.62 +piété piété nom f s 1.47 7.70 1.47 7.70 +pive pive nom f s 0.00 0.07 0.00 0.07 +pivert pivert nom m s 0.22 0.88 0.16 0.81 +piverts pivert nom m p 0.22 0.88 0.06 0.07 +pivoine pivoine nom f s 0.73 1.96 0.19 0.74 +pivoines pivoine nom f p 0.73 1.96 0.54 1.22 +pivot pivot nom m s 0.68 1.69 0.61 1.55 +pivota pivoter ver 1.19 9.39 0.00 2.09 ind:pas:3s; +pivotai pivoter ver 1.19 9.39 0.00 0.07 ind:pas:1s; +pivotaient pivoter ver 1.19 9.39 0.01 0.14 ind:imp:3p; +pivotait pivoter ver 1.19 9.39 0.04 0.54 ind:imp:3s; +pivotant pivotant adj m s 0.08 0.81 0.04 0.47 +pivotante pivotant adj f s 0.08 0.81 0.03 0.20 +pivotantes pivotant adj f p 0.08 0.81 0.00 0.07 +pivotants pivotant adj m p 0.08 0.81 0.00 0.07 +pivote pivoter ver 1.19 9.39 0.36 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pivotement pivotement nom m s 0.01 0.07 0.01 0.07 +pivotent pivoter ver 1.19 9.39 0.01 0.14 ind:pre:3p; +pivoter pivoter ver 1.19 9.39 0.33 2.91 inf; +pivotes pivoter ver 1.19 9.39 0.01 0.00 ind:pre:2s; +pivotez pivoter ver 1.19 9.39 0.29 0.00 imp:pre:2p; +pivots pivot nom m p 0.68 1.69 0.07 0.14 +pivotèrent pivoter ver 1.19 9.39 0.00 0.14 ind:pas:3p; +pivoté pivoter ver m s 1.19 9.39 0.13 0.27 par:pas; +pixel pixel nom m s 0.36 0.00 0.03 0.00 +pixellisés pixelliser ver m p 0.03 0.00 0.03 0.00 par:pas; +pixels pixel nom m p 0.36 0.00 0.34 0.00 +pizza pizza nom f s 23.09 3.24 18.60 2.09 +pizzaiolo pizzaiolo nom m s 0.02 0.00 0.02 0.00 +pizzas pizza nom f p 23.09 3.24 4.49 1.15 +pizzeria pizzeria nom f s 2.12 1.42 2.01 1.35 +pizzerias pizzeria nom f p 2.12 1.42 0.10 0.07 +pizzicato pizzicato nom m s 0.29 0.14 0.29 0.14 +plût plaire ver 607.24 139.80 0.22 1.69 sub:imp:3s; +plaît plaire ver 607.24 139.80 499.91 55.00 ind:pre:3s; +placage placage nom m s 0.22 0.34 0.22 0.20 +placages placage nom m p 0.22 0.34 0.00 0.14 +placard placard nom m s 21.47 34.39 19.26 25.74 +placardait placarder ver 0.56 3.18 0.00 0.20 ind:imp:3s; +placarde placarder ver 0.56 3.18 0.11 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +placarder placarder ver 0.56 3.18 0.04 0.54 inf; +placardes placarder ver 0.56 3.18 0.00 0.07 ind:pre:2s; +placardier placardier nom m s 0.00 0.14 0.00 0.14 +placards placard nom m p 21.47 34.39 2.20 8.65 +placardé placarder ver m s 0.56 3.18 0.16 0.41 par:pas; +placardée placarder ver f s 0.56 3.18 0.07 0.41 par:pas; +placardées placarder ver f p 0.56 3.18 0.02 0.34 par:pas; +placardés placarder ver m p 0.56 3.18 0.16 0.14 par:pas; +place place nom f s 301.30 468.58 280.54 437.97 +placebo placebo nom m s 0.52 0.14 0.47 0.14 +placebos placebo nom m p 0.52 0.14 0.05 0.00 +placement placement nom m s 3.12 3.11 2.13 2.03 +placements placement nom m p 3.12 3.11 0.99 1.08 +placent placer ver 52.95 101.76 0.58 0.74 ind:pre:3p; +placenta placenta nom m s 0.70 0.61 0.69 0.54 +placentaire placentaire adj s 0.04 0.00 0.04 0.00 +placentas placenta nom m p 0.70 0.61 0.02 0.07 +placer placer ver 52.95 101.76 10.24 21.69 inf; +placera placer ver 52.95 101.76 0.35 0.34 ind:fut:3s; +placerai placer ver 52.95 101.76 0.55 0.27 ind:fut:1s; +placeraient placer ver 52.95 101.76 0.00 0.07 cnd:pre:3p; +placerais placer ver 52.95 101.76 0.05 0.27 cnd:pre:1s; +placerait placer ver 52.95 101.76 0.17 0.68 cnd:pre:3s; +placeras placer ver 52.95 101.76 0.08 0.00 ind:fut:2s; +placerez placer ver 52.95 101.76 0.20 0.20 ind:fut:2p; +placerons placer ver 52.95 101.76 0.06 0.20 ind:fut:1p; +placeront placer ver 52.95 101.76 0.25 0.00 ind:fut:3p; +places place nom f p 301.30 468.58 20.76 30.61 +placet placet nom m s 0.01 0.27 0.00 0.20 +placets placet nom m p 0.01 0.27 0.01 0.07 +placette placette nom f s 0.00 1.82 0.00 1.49 +placettes placette nom f p 0.00 1.82 0.00 0.34 +placeur placeur nom m s 0.06 0.34 0.03 0.07 +placeurs placeur nom m p 0.06 0.34 0.03 0.00 +placeuse placeur nom f s 0.06 0.34 0.00 0.20 +placeuses placeur nom f p 0.06 0.34 0.00 0.07 +placez placer ver 52.95 101.76 4.01 1.15 imp:pre:2p;ind:pre:2p; +placide placide adj s 0.29 5.95 0.19 5.20 +placidement placidement adv 0.00 1.35 0.00 1.35 +placides placide adj p 0.29 5.95 0.11 0.74 +placidité placidité nom f s 0.00 2.03 0.00 2.03 +placier placier nom m s 0.03 0.14 0.03 0.07 +placiers placier nom m p 0.03 0.14 0.00 0.07 +placiez placer ver 52.95 101.76 0.03 0.00 ind:imp:2p; +placions placer ver 52.95 101.76 0.04 0.07 ind:imp:1p; +placoplâtre placoplâtre nom m s 0.06 0.00 0.06 0.00 +placèrent placer ver 52.95 101.76 0.14 0.68 ind:pas:3p; +placé placer ver m s 52.95 101.76 11.81 22.91 par:pas; +placée placer ver f s 52.95 101.76 4.51 8.18 par:pas; +placées placer ver f p 52.95 101.76 1.09 2.84 par:pas; +placés placer ver m p 52.95 101.76 2.19 6.96 par:pas; +plafond plafond nom m s 10.34 50.34 9.44 46.35 +plafonds plafond nom m p 10.34 50.34 0.90 3.99 +plafonnant plafonner ver 0.17 0.34 0.00 0.07 par:pre; +plafonne plafonner ver 0.17 0.34 0.07 0.07 imp:pre:2s;ind:pre:3s; +plafonnement plafonnement nom m s 0.04 0.07 0.04 0.07 +plafonner plafonner ver 0.17 0.34 0.05 0.07 inf; +plafonnier plafonnier nom m s 0.13 1.42 0.13 1.15 +plafonniers plafonnier nom m p 0.13 1.42 0.00 0.20 +plafonnière plafonnier nom f s 0.13 1.42 0.00 0.07 +plafonnons plafonner ver 0.17 0.34 0.00 0.07 ind:pre:1p; +plafonné plafonner ver m s 0.17 0.34 0.04 0.07 par:pas; +plafonnée plafonner ver f s 0.17 0.34 0.01 0.00 par:pas; +plafonnées plafonné adj f p 0.01 0.14 0.00 0.14 +plage plage nom f s 48.19 86.89 44.99 72.03 +plages plage nom f p 48.19 86.89 3.20 14.86 +plagiaire plagiaire nom m s 0.19 0.07 0.17 0.00 +plagiaires plagiaire nom m p 0.19 0.07 0.02 0.07 +plagiant plagier ver 0.40 0.47 0.00 0.14 par:pre; +plagiat plagiat nom m s 0.38 0.41 0.35 0.20 +plagiats plagiat nom m p 0.38 0.41 0.02 0.20 +plagie plagier ver 0.40 0.47 0.03 0.07 ind:pre:1s;ind:pre:3s; +plagier plagier ver 0.40 0.47 0.11 0.07 inf; +plagies plagier ver 0.40 0.47 0.01 0.00 ind:pre:2s; +plagioclase plagioclase nom m s 0.01 0.00 0.01 0.00 +plagié plagier ver m s 0.40 0.47 0.25 0.20 par:pas; +plaid plaid nom m s 0.34 1.15 0.28 0.95 +plaida plaider ver 11.46 12.70 0.14 0.81 ind:pas:3s; +plaidable plaidable adj f s 0.02 0.00 0.02 0.00 +plaidai plaider ver 11.46 12.70 0.00 0.07 ind:pas:1s; +plaidaient plaider ver 11.46 12.70 0.00 0.41 ind:imp:3p; +plaidais plaider ver 11.46 12.70 0.01 0.20 ind:imp:1s;ind:imp:2s; +plaidait plaider ver 11.46 12.70 0.06 0.88 ind:imp:3s; +plaidant plaider ver 11.46 12.70 0.21 0.41 par:pre; +plaidants plaidant adj m p 0.00 0.07 0.00 0.07 +plaide plaider ver 11.46 12.70 2.75 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +plaident plaider ver 11.46 12.70 0.13 0.20 ind:pre:3p; +plaider plaider ver 11.46 12.70 4.07 5.61 inf; +plaidera plaider ver 11.46 12.70 0.42 0.00 ind:fut:3s; +plaiderai plaider ver 11.46 12.70 0.61 0.14 ind:fut:1s; +plaiderait plaider ver 11.46 12.70 0.12 0.27 cnd:pre:3s; +plaideras plaider ver 11.46 12.70 0.13 0.07 ind:fut:2s; +plaiderez plaider ver 11.46 12.70 0.24 0.07 ind:fut:2p; +plaiderons plaider ver 11.46 12.70 0.08 0.14 ind:fut:1p; +plaideront plaider ver 11.46 12.70 0.01 0.00 ind:fut:3p; +plaides plaider ver 11.46 12.70 0.24 0.14 ind:pre:2s; +plaideur plaideur nom m s 0.05 0.47 0.04 0.14 +plaideurs plaideur nom m p 0.05 0.47 0.01 0.34 +plaidez plaider ver 11.46 12.70 1.03 0.20 imp:pre:2p;ind:pre:2p; +plaidiez plaider ver 11.46 12.70 0.03 0.07 ind:imp:2p; +plaidions plaider ver 11.46 12.70 0.00 0.07 ind:imp:1p; +plaidoirie plaidoirie nom f s 1.27 2.36 1.14 1.22 +plaidoiries plaidoirie nom f p 1.27 2.36 0.13 1.15 +plaidons plaider ver 11.46 12.70 0.09 0.14 imp:pre:1p;ind:pre:1p; +plaidoyer plaidoyer nom m s 0.64 1.28 0.60 0.88 +plaidoyers plaidoyer nom m p 0.64 1.28 0.04 0.41 +plaids plaid nom m p 0.34 1.15 0.05 0.20 +plaidèrent plaider ver 11.46 12.70 0.00 0.14 ind:pas:3p; +plaidé plaider ver m s 11.46 12.70 1.03 0.81 par:pas; +plaidée plaider ver f s 11.46 12.70 0.05 0.14 par:pas; +plaie plaie nom f s 15.02 24.26 10.42 14.32 +plaies plaie nom f p 15.02 24.26 4.59 9.93 +plaignît plaindre ver 61.25 67.84 0.00 0.20 sub:imp:3s; +plaignaient plaindre ver 61.25 67.84 0.28 2.30 ind:imp:3p; +plaignais plaindre ver 61.25 67.84 0.70 1.49 ind:imp:1s;ind:imp:2s; +plaignait plaindre ver 61.25 67.84 0.94 8.92 ind:imp:3s; +plaignant plaignant nom m s 1.56 0.74 0.86 0.34 +plaignante plaignant nom f s 1.56 0.74 0.33 0.14 +plaignantes plaignant nom f p 1.56 0.74 0.03 0.07 +plaignants plaignant nom m p 1.56 0.74 0.34 0.20 +plaigne plaindre ver 61.25 67.84 0.34 0.81 sub:pre:1s;sub:pre:3s; +plaignent plaindre ver 61.25 67.84 2.71 1.49 ind:pre:3p; +plaignes plaindre ver 61.25 67.84 0.04 0.00 sub:pre:2s; +plaignez plaindre ver 61.25 67.84 1.60 0.74 imp:pre:2p;ind:pre:2p; +plaigniez plaindre ver 61.25 67.84 0.05 0.00 ind:imp:2p; +plaignions plaindre ver 61.25 67.84 0.02 0.20 ind:imp:1p; +plaignirent plaindre ver 61.25 67.84 0.01 0.27 ind:pas:3p; +plaignis plaindre ver 61.25 67.84 0.00 0.20 ind:pas:1s; +plaignit plaindre ver 61.25 67.84 0.14 2.84 ind:pas:3s; +plaignons plaindre ver 61.25 67.84 0.34 0.47 imp:pre:1p;ind:pre:1p; +plain_chant plain_chant nom m s 0.10 0.27 0.10 0.27 +plain_pied plain_pied nom m s 0.12 3.65 0.12 3.65 +plain plain adj m s 0.60 0.27 0.31 0.14 +plaindra plaindre ver 61.25 67.84 0.41 0.07 ind:fut:3s; +plaindrai plaindre ver 61.25 67.84 0.82 0.07 ind:fut:1s; +plaindraient plaindre ver 61.25 67.84 0.16 0.07 cnd:pre:3p; +plaindrais plaindre ver 61.25 67.84 0.40 0.20 cnd:pre:1s;cnd:pre:2s; +plaindrait plaindre ver 61.25 67.84 0.12 0.81 cnd:pre:3s; +plaindras plaindre ver 61.25 67.84 0.05 0.00 ind:fut:2s; +plaindre plaindre ver 61.25 67.84 17.27 24.53 inf;;inf;;inf;;inf;; +plaindrez plaindre ver 61.25 67.84 0.03 0.00 ind:fut:2p; +plaindriez plaindre ver 61.25 67.84 0.01 0.07 cnd:pre:2p; +plaindrions plaindre ver 61.25 67.84 0.00 0.07 cnd:pre:1p; +plaindront plaindre ver 61.25 67.84 0.11 0.14 ind:fut:3p; +plaine plaine nom f s 3.52 39.86 3.52 39.86 +plaines plain nom f p 1.63 7.43 1.63 7.43 +plains plaindre ver 61.25 67.84 12.84 5.61 imp:pre:2s;ind:pre:1s;ind:pre:2s; +plaint plaindre ver m s 61.25 67.84 7.28 7.84 ind:pre:3s;par:pas; +plainte plaindre ver f s 61.25 67.84 13.79 6.35 par:pas; +plaintes plainte nom f p 15.07 26.69 5.46 9.59 +plaintif plaintif adj m s 1.12 6.82 0.81 3.31 +plaintifs plaintif adj m p 1.12 6.82 0.06 1.01 +plaintive plaintif adj f s 1.12 6.82 0.26 2.09 +plaintivement plaintivement adv 0.00 0.81 0.00 0.81 +plaintives plaintif adj f p 1.12 6.82 0.00 0.41 +plaints plaindre ver m p 61.25 67.84 0.44 0.47 par:pas; +plaira plaire ver 607.24 139.80 12.63 3.45 ind:fut:3s; +plairai plaire ver 607.24 139.80 0.16 0.14 ind:fut:1s; +plairaient plaire ver 607.24 139.80 0.21 0.41 cnd:pre:3p; +plairais plaire ver 607.24 139.80 0.61 0.27 cnd:pre:1s;cnd:pre:2s; +plairait plaire ver 607.24 139.80 14.60 4.46 cnd:pre:3s; +plairas plaire ver 607.24 139.80 0.70 0.14 ind:fut:2s; +plaire plaire ver 607.24 139.80 19.00 19.66 inf;; +plairez plaire ver 607.24 139.80 1.07 0.34 ind:fut:2p; +plairiez plaire ver 607.24 139.80 0.30 0.00 cnd:pre:2p; +plairont plaire ver 607.24 139.80 0.81 0.20 ind:fut:3p; +plais plaire ver 607.24 139.80 21.48 4.66 imp:pre:2s;ind:pre:1s;ind:pre:2s; +plaisaient plaire ver 607.24 139.80 0.55 2.97 ind:imp:3p; +plaisais plaire ver 607.24 139.80 1.75 2.70 ind:imp:1s;ind:imp:2s; +plaisait plaire ver 607.24 139.80 8.75 27.50 ind:imp:3s; +plaisamment plaisamment adv 0.02 2.03 0.02 2.03 +plaisance plaisance nom f s 0.35 2.03 0.35 2.03 +plaisancier plaisancier nom m s 0.19 0.20 0.00 0.07 +plaisanciers plaisancier nom m p 0.19 0.20 0.19 0.14 +plaisant plaisant adj m s 4.88 9.73 2.11 4.32 +plaisanta plaisanter ver 87.13 27.43 0.00 2.03 ind:pas:3s; +plaisantai plaisanter ver 87.13 27.43 0.10 0.14 ind:pas:1s; +plaisantaient plaisanter ver 87.13 27.43 0.13 0.68 ind:imp:3p; +plaisantais plaisanter ver 87.13 27.43 7.92 1.22 ind:imp:1s;ind:imp:2s; +plaisantait plaisanter ver 87.13 27.43 2.08 5.95 ind:imp:3s; +plaisantant plaisanter ver 87.13 27.43 0.62 2.64 par:pre; +plaisante plaisanter ver 87.13 27.43 28.50 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +plaisantent plaisanter ver 87.13 27.43 0.61 0.27 ind:pre:3p; +plaisanter plaisanter ver 87.13 27.43 6.24 6.01 inf; +plaisantera plaisanter ver 87.13 27.43 0.00 0.07 ind:fut:3s; +plaisanterai plaisanter ver 87.13 27.43 0.03 0.07 ind:fut:1s; +plaisanteraient plaisanter ver 87.13 27.43 0.00 0.07 cnd:pre:3p; +plaisanterais plaisanter ver 87.13 27.43 0.15 0.00 cnd:pre:1s; +plaisanteras plaisanter ver 87.13 27.43 0.00 0.07 ind:fut:2s; +plaisanterie plaisanterie nom f s 17.75 26.49 13.41 14.05 +plaisanteries plaisanterie nom f p 17.75 26.49 4.33 12.43 +plaisanterons plaisanter ver 87.13 27.43 0.02 0.07 ind:fut:1p; +plaisantes plaisanter ver 87.13 27.43 24.29 0.95 ind:pre:2s; +plaisantez plaisanter ver 87.13 27.43 14.96 1.55 imp:pre:2p;ind:pre:2p; +plaisantiez plaisanter ver 87.13 27.43 0.32 0.00 ind:imp:2p; +plaisantin plaisantin nom m s 0.86 0.95 0.68 0.68 +plaisantins plaisantin nom m p 0.86 0.95 0.19 0.27 +plaisantions plaisanter ver 87.13 27.43 0.04 0.14 ind:imp:1p; +plaisantons plaisanter ver 87.13 27.43 0.28 0.20 imp:pre:1p;ind:pre:1p; +plaisants plaisant adj m p 4.88 9.73 0.22 0.61 +plaisantèrent plaisanter ver 87.13 27.43 0.00 0.07 ind:pas:3p; +plaisanté plaisanter ver m s 87.13 27.43 0.84 1.35 par:pas; +plaise plaire ver 607.24 139.80 6.49 3.65 sub:pre:1s;sub:pre:3s; +plaisent plaire ver 607.24 139.80 6.92 3.45 ind:pre:3p; +plaises plaire ver 607.24 139.80 0.35 0.20 sub:pre:2s; +plaisez plaire ver 607.24 139.80 3.83 1.42 ind:pre:2p; +plaisiez plaire ver 607.24 139.80 0.27 0.20 ind:imp:2p; +plaisions plaire ver 607.24 139.80 0.00 0.27 ind:imp:1p; +plaisir plaisir nom m s 186.37 233.85 177.40 208.78 +plaisirs plaisir nom m p 186.37 233.85 8.97 25.07 +plaisons plaire ver 607.24 139.80 0.04 0.20 ind:pre:1p; +plan_séquence plan_séquence nom m s 0.10 0.00 0.10 0.00 +plan plan nom m s 147.54 88.99 119.54 67.84 +plana planer ver 7.86 16.55 0.00 0.34 ind:pas:3s; +planaient planer ver 7.86 16.55 0.13 0.95 ind:imp:3p; +planais planer ver 7.86 16.55 0.24 0.41 ind:imp:1s;ind:imp:2s; +planait planer ver 7.86 16.55 0.70 3.99 ind:imp:3s; +planant planant adj m s 0.56 1.22 0.25 0.68 +planante planant adj f s 0.56 1.22 0.27 0.20 +planantes planant adj f p 0.56 1.22 0.02 0.34 +planants planant adj m p 0.56 1.22 0.03 0.00 +planas planer ver 7.86 16.55 0.00 0.07 ind:pas:2s; +planchais plancher ver 1.37 1.35 0.02 0.07 ind:imp:1s; +planche planche nom f s 13.37 41.55 10.01 14.53 +planchent plancher ver 1.37 1.35 0.04 0.00 ind:pre:3p; +plancher plancher nom m s 7.50 31.15 6.67 29.39 +planchers plancher nom m p 7.50 31.15 0.84 1.76 +planche_contact planche_contact nom f p 0.00 0.07 0.00 0.07 +planches planche nom f p 13.37 41.55 3.36 27.03 +planchette planchette nom f s 0.01 2.50 0.01 1.82 +planchettes planchette nom f p 0.01 2.50 0.00 0.68 +planchiste planchiste nom s 0.20 0.00 0.20 0.00 +planché plancher ver m s 1.37 1.35 0.24 0.07 par:pas; +plancton plancton nom m s 0.65 0.47 0.52 0.47 +planctons plancton nom m p 0.65 0.47 0.14 0.00 +plane planer ver 7.86 16.55 2.48 2.57 ind:pre:1s;ind:pre:3s;sub:pre:3s; +planelle planelle nom f s 0.01 0.00 0.01 0.00 +planement planement nom m s 0.00 0.07 0.00 0.07 +planent planer ver 7.86 16.55 0.45 0.88 ind:pre:3p; +planer planer ver 7.86 16.55 2.25 3.99 inf;; +planera planer ver 7.86 16.55 0.02 0.00 ind:fut:3s; +planerait planer ver 7.86 16.55 0.00 0.07 cnd:pre:3s; +planerions planer ver 7.86 16.55 0.00 0.07 cnd:pre:1p; +planeront planer ver 7.86 16.55 0.00 0.07 ind:fut:3p; +planes planer ver 7.86 16.55 0.58 0.14 ind:pre:2s; +planeur planeur nom m s 1.31 0.61 0.66 0.27 +planeurs planeur nom m p 1.31 0.61 0.65 0.34 +planez planer ver 7.86 16.55 0.12 0.07 imp:pre:2p;ind:pre:2p; +planiez planer ver 7.86 16.55 0.02 0.00 ind:imp:2p; +planifiable planifiable adj s 0.01 0.00 0.01 0.00 +planifiaient planifier ver 8.15 0.68 0.01 0.00 ind:imp:3p; +planifiait planifier ver 8.15 0.68 0.18 0.00 ind:imp:3s; +planifiant planifier ver 8.15 0.68 0.05 0.07 par:pre; +planificateur planificateur nom m s 0.06 0.00 0.04 0.00 +planification planification nom f s 0.42 0.34 0.42 0.34 +planificatrice planificateur nom f s 0.06 0.00 0.01 0.00 +planifie planifier ver 8.15 0.68 0.87 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +planifient planifier ver 8.15 0.68 0.09 0.00 ind:pre:3p; +planifier planifier ver 8.15 0.68 1.94 0.07 inf; +planifierais planifier ver 8.15 0.68 0.01 0.07 cnd:pre:1s; +planifiez planifier ver 8.15 0.68 0.11 0.00 imp:pre:2p;ind:pre:2p; +planifions planifier ver 8.15 0.68 0.08 0.00 imp:pre:1p;ind:pre:1p; +planifié planifier ver m s 8.15 0.68 4.42 0.27 par:pas; +planifiée planifier ver f s 8.15 0.68 0.31 0.07 par:pas; +planifiés planifier ver m p 8.15 0.68 0.08 0.07 par:pas; +planisphère planisphère nom m s 0.01 1.15 0.01 1.01 +planisphères planisphère nom m p 0.01 1.15 0.00 0.14 +planitude planitude nom f s 0.00 0.14 0.00 0.14 +planning planning nom m s 4.77 0.81 4.55 0.81 +plannings planning nom m p 4.77 0.81 0.22 0.00 +planqua planquer ver 18.79 21.76 0.00 0.07 ind:pas:3s; +planquaient planquer ver 18.79 21.76 0.12 0.41 ind:imp:3p; +planquais planquer ver 18.79 21.76 0.26 0.20 ind:imp:1s;ind:imp:2s; +planquait planquer ver 18.79 21.76 0.21 1.35 ind:imp:3s; +planquant planquer ver 18.79 21.76 0.01 0.27 par:pre; +planque planque nom f s 9.10 7.30 8.21 6.42 +planquent planquer ver 18.79 21.76 0.68 0.74 ind:pre:3p; +planquer planquer ver 18.79 21.76 3.81 6.49 inf; +planquera planquer ver 18.79 21.76 0.05 0.07 ind:fut:3s; +planquerai planquer ver 18.79 21.76 0.02 0.07 ind:fut:1s; +planquerais planquer ver 18.79 21.76 0.04 0.00 cnd:pre:1s; +planquerait planquer ver 18.79 21.76 0.04 0.07 cnd:pre:3s; +planqueras planquer ver 18.79 21.76 0.03 0.00 ind:fut:2s; +planques planque nom f p 9.10 7.30 0.90 0.88 +planquez planquer ver 18.79 21.76 1.77 0.34 imp:pre:2p;ind:pre:2p; +planquiez planquer ver 18.79 21.76 0.00 0.07 ind:imp:2p; +planquions planquer ver 18.79 21.76 0.00 0.07 ind:imp:1p; +planquons planquer ver 18.79 21.76 0.22 0.14 imp:pre:1p;ind:pre:1p; +planquèrent planquer ver 18.79 21.76 0.00 0.07 ind:pas:3p; +planqué planquer ver m s 18.79 21.76 3.87 4.66 par:pas; +planquée planquer ver f s 18.79 21.76 0.94 1.28 par:pas; +planquées planqué adj f p 1.67 1.69 0.14 0.14 +planqués planqué adj m p 1.67 1.69 0.74 0.88 +plans plan nom m p 147.54 88.99 28.00 21.15 +plant plant nom m s 2.54 4.53 1.07 1.62 +planta planter ver 38.29 75.88 0.19 7.84 ind:pas:3s; +plantage plantage nom m s 0.04 0.00 0.04 0.00 +plantai planter ver 38.29 75.88 0.01 0.54 ind:pas:1s; +plantaient planter ver 38.29 75.88 0.14 0.74 ind:imp:3p; +plantain plantain nom m s 0.04 0.14 0.01 0.00 +plantains plantain nom m p 0.04 0.14 0.04 0.14 +plantaire plantaire adj s 0.14 0.20 0.10 0.14 +plantaires plantaire adj f p 0.14 0.20 0.04 0.07 +plantais planter ver 38.29 75.88 0.33 1.01 ind:imp:1s;ind:imp:2s; +plantait planter ver 38.29 75.88 0.43 3.24 ind:imp:3s; +plantant planter ver 38.29 75.88 0.43 2.03 par:pre; +plantation plantation nom f s 5.73 6.35 2.25 3.72 +plantations plantation nom f p 5.73 6.35 3.48 2.64 +plante plante nom f s 21.86 35.00 9.00 11.49 +plantent planter ver 38.29 75.88 0.43 0.61 ind:pre:3p; +planter planter ver 38.29 75.88 10.58 12.16 inf;; +plantera planter ver 38.29 75.88 0.30 0.07 ind:fut:3s; +planterai planter ver 38.29 75.88 0.81 0.07 ind:fut:1s; +planterais planter ver 38.29 75.88 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +planterait planter ver 38.29 75.88 0.06 0.20 cnd:pre:3s; +planteras planter ver 38.29 75.88 0.17 0.00 ind:fut:2s; +planterez planter ver 38.29 75.88 0.02 0.00 ind:fut:2p; +planterons planter ver 38.29 75.88 0.05 0.14 ind:fut:1p; +planteront planter ver 38.29 75.88 0.13 0.00 ind:fut:3p; +plantes plante nom f p 21.86 35.00 12.85 23.51 +planteur planteur nom m s 0.64 2.23 0.42 1.15 +planteurs planteur nom m p 0.64 2.23 0.22 1.08 +plantez planter ver 38.29 75.88 0.68 0.14 imp:pre:2p;ind:pre:2p; +planète planète nom f s 61.11 22.91 55.29 19.86 +planètes planète nom f p 61.11 22.91 5.82 3.04 +plantier plantier nom m s 0.70 0.14 0.70 0.14 +plantiez planter ver 38.29 75.88 0.04 0.07 ind:imp:2p; +plantigrade plantigrade nom m s 0.13 0.20 0.13 0.20 +plantions planter ver 38.29 75.88 0.02 0.14 ind:imp:1p; +plantoir plantoir nom m s 0.14 0.07 0.14 0.07 +planton planton nom m s 0.53 2.91 0.50 2.50 +plantons planter ver 38.29 75.88 0.25 0.14 imp:pre:1p;ind:pre:1p; +plants plant nom m p 2.54 4.53 1.47 2.91 +plantèrent planter ver 38.29 75.88 0.01 0.68 ind:pas:3p; +planté planter ver m s 38.29 75.88 11.20 20.07 par:pas; +plantée planter ver f s 38.29 75.88 2.68 10.47 par:pas; +plantées planter ver f p 38.29 75.88 0.89 3.31 par:pas; +plantureuse plantureux adj f s 0.11 1.42 0.07 0.68 +plantureuses plantureux adj f p 0.11 1.42 0.04 0.27 +plantureux plantureux adj m s 0.11 1.42 0.01 0.47 +plantés planter ver m p 38.29 75.88 2.31 7.09 par:pas; +plané planer ver m s 7.86 16.55 0.76 1.76 par:pas; +planétaire planétaire adj s 2.27 1.35 1.93 0.95 +planétaires planétaire adj p 2.27 1.35 0.34 0.41 +planétarium planétarium nom m s 0.31 0.27 0.31 0.20 +planétariums planétarium nom m p 0.31 0.27 0.00 0.07 +planétoïde planétoïde nom m s 0.04 0.00 0.04 0.00 +plaqua plaquer ver 12.46 27.70 0.01 2.64 ind:pas:3s; +plaquage plaquage nom m s 0.26 0.20 0.22 0.07 +plaquages plaquage nom m p 0.26 0.20 0.04 0.14 +plaquai plaquer ver 12.46 27.70 0.00 0.34 ind:pas:1s; +plaquaient plaquer ver 12.46 27.70 0.01 0.27 ind:imp:3p; +plaquais plaquer ver 12.46 27.70 0.14 0.14 ind:imp:1s;ind:imp:2s; +plaquait plaquer ver 12.46 27.70 0.13 2.23 ind:imp:3s; +plaquant plaquer ver 12.46 27.70 0.02 1.49 par:pre; +plaque plaque nom f s 20.48 46.15 13.87 26.01 +plaqueminiers plaqueminier nom m p 0.00 0.14 0.00 0.14 +plaquent plaquer ver 12.46 27.70 0.14 0.34 ind:pre:3p; +plaquer plaquer ver 12.46 27.70 2.48 3.92 inf; +plaquera plaquer ver 12.46 27.70 0.03 0.00 ind:fut:3s; +plaquerai plaquer ver 12.46 27.70 0.05 0.00 ind:fut:1s; +plaquerais plaquer ver 12.46 27.70 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +plaquerait plaquer ver 12.46 27.70 0.03 0.07 cnd:pre:3s; +plaqueras plaquer ver 12.46 27.70 0.01 0.00 ind:fut:2s; +plaques plaque nom f p 20.48 46.15 6.62 20.14 +plaquettaire plaquettaire adj f s 0.01 0.00 0.01 0.00 +plaquette plaquette nom f s 1.02 4.26 0.28 1.55 +plaquettes plaquette nom f p 1.02 4.26 0.74 2.70 +plaqueur plaqueur nom m s 0.07 0.07 0.07 0.07 +plaquez plaquer ver 12.46 27.70 0.20 0.20 imp:pre:2p;ind:pre:2p; +plaquèrent plaquer ver 12.46 27.70 0.00 0.27 ind:pas:3p; +plaqué plaquer ver m s 12.46 27.70 4.37 5.00 par:pas; +plaquée plaquer ver f s 12.46 27.70 2.07 4.32 par:pas; +plaquées plaquer ver f p 12.46 27.70 0.04 1.76 par:pas; +plaqués plaquer ver m p 12.46 27.70 0.42 1.76 par:pas; +plasma plasma nom m s 2.85 0.34 2.85 0.34 +plasmagène plasmagène adj m s 0.01 0.00 0.01 0.00 +plasmaphérèse plasmaphérèse nom f s 0.08 0.00 0.08 0.00 +plasmique plasmique adj m s 0.01 0.00 0.01 0.00 +plaste plaste nom m s 0.01 0.00 0.01 0.00 +plastic plastic nom m s 0.81 1.15 0.81 1.15 +plasticage plasticage nom m s 0.01 0.34 0.01 0.00 +plasticages plasticage nom m p 0.01 0.34 0.00 0.34 +plasticien plasticien nom m s 0.40 0.00 0.38 0.00 +plasticienne plasticien nom f s 0.40 0.00 0.01 0.00 +plasticité plasticité nom f s 0.04 0.27 0.04 0.27 +plastie plastie nom f s 0.03 0.00 0.03 0.00 +plastifiant plastifiant nom m s 0.01 0.00 0.01 0.00 +plastification plastification nom f s 0.01 0.00 0.01 0.00 +plastifier plastifier ver 0.23 0.95 0.06 0.00 inf; +plastifié plastifier ver m s 0.23 0.95 0.09 0.61 par:pas; +plastifiée plastifier ver f s 0.23 0.95 0.07 0.14 par:pas; +plastifiées plastifier ver f p 0.23 0.95 0.01 0.07 par:pas; +plastifiés plastifier ver m p 0.23 0.95 0.00 0.14 par:pas; +plastiquage plastiquage nom m s 0.16 0.00 0.16 0.00 +plastiquais plastiquer ver 0.41 0.41 0.01 0.00 ind:imp:1s; +plastique plastique nom s 13.44 16.96 12.89 16.82 +plastiquer plastiquer ver 0.41 0.41 0.16 0.07 inf; +plastiques plastique adj p 4.67 6.96 0.72 1.42 +plastiqueur plastiqueur nom m s 0.22 0.14 0.22 0.14 +plastiqué plastiquer ver m s 0.41 0.41 0.18 0.07 par:pas; +plastisol plastisol nom m s 0.01 0.00 0.01 0.00 +plastoc plastoc nom m s 0.09 0.20 0.09 0.20 +plastron plastron nom m s 0.11 2.57 0.09 2.30 +plastronnaient plastronner ver 0.02 1.35 0.00 0.07 ind:imp:3p; +plastronnait plastronner ver 0.02 1.35 0.00 0.20 ind:imp:3s; +plastronnant plastronner ver 0.02 1.35 0.00 0.20 par:pre; +plastronne plastronner ver 0.02 1.35 0.00 0.07 ind:pre:3s; +plastronnent plastronner ver 0.02 1.35 0.00 0.14 ind:pre:3p; +plastronner plastronner ver 0.02 1.35 0.02 0.61 inf; +plastronnes plastronner ver 0.02 1.35 0.00 0.07 ind:pre:2s; +plastronneur plastronneur nom m s 0.00 0.07 0.00 0.07 +plastrons plastron nom m p 0.11 2.57 0.02 0.27 +plat_bord plat_bord nom m s 0.01 0.61 0.00 0.54 +plat_ventre plat_ventre nom m s 0.11 0.07 0.11 0.07 +plat plat nom s 30.24 61.35 21.87 44.26 +platane platane nom m s 0.44 13.99 0.31 4.26 +platanes platane nom m p 0.44 13.99 0.14 9.73 +plate_bande plate_bande nom f s 0.82 2.77 0.12 0.54 +plate_forme plate_forme nom f s 3.06 11.15 2.49 8.45 +plate plat adj f s 14.66 61.76 3.09 17.50 +plateau_repas plateau_repas nom m 0.04 0.14 0.04 0.14 +plateau plateau nom m s 17.17 54.53 15.73 45.74 +plateaux_repas plateaux_repas nom m p 0.04 0.07 0.04 0.07 +plateaux plateau nom m p 17.17 54.53 1.44 8.78 +platebandes platebande nom f p 0.06 0.00 0.06 0.00 +plateforme plateforme nom f s 0.59 0.34 0.59 0.34 +platelage platelage nom m s 0.00 0.07 0.00 0.07 +platement platement adv 0.14 1.08 0.14 1.08 +plateresque plateresque adj m s 0.00 0.20 0.00 0.14 +plateresques plateresque adj f p 0.00 0.20 0.00 0.07 +plate_bande plate_bande nom f p 0.82 2.77 0.70 2.23 +plate_forme plate_forme nom f p 3.06 11.15 0.57 2.70 +plates plat adj f p 14.66 61.76 0.92 7.23 +plaça placer ver 52.95 101.76 0.58 6.76 ind:pas:3s; +plaçai placer ver 52.95 101.76 0.02 0.74 ind:pas:1s; +plaçaient placer ver 52.95 101.76 0.03 1.55 ind:imp:3p; +plaçais placer ver 52.95 101.76 0.07 0.61 ind:imp:1s;ind:imp:2s; +plaçait placer ver 52.95 101.76 0.46 6.01 ind:imp:3s; +plaçant placer ver 52.95 101.76 0.79 3.38 par:pre; +plaçons placer ver 52.95 101.76 0.60 0.14 imp:pre:1p;ind:pre:1p; +plaçât placer ver 52.95 101.76 0.00 0.07 sub:imp:3s; +platine platine nom s 2.06 3.31 1.73 3.18 +platines platine nom p 2.06 3.31 0.32 0.14 +platiné platiné adj m s 0.01 1.15 0.00 0.07 +platinée platiné adj f s 0.01 1.15 0.00 0.61 +platinées platiné adj f p 0.01 1.15 0.01 0.34 +platinés platiné adj m p 0.01 1.15 0.00 0.14 +platière platière nom f s 0.00 0.07 0.00 0.07 +platitude platitude nom f s 0.29 2.30 0.18 1.55 +platitudes platitude nom f p 0.29 2.30 0.12 0.74 +platonicien platonicien adj m s 0.14 0.41 0.00 0.27 +platonicienne platonicien adj f s 0.14 0.41 0.14 0.07 +platoniciens platonicien adj m p 0.14 0.41 0.00 0.07 +platonique platonique adj s 0.76 1.55 0.66 0.88 +platoniquement platoniquement adv 0.05 0.27 0.05 0.27 +platoniques platonique adj p 0.76 1.55 0.10 0.68 +platonisant platonisant adj m s 0.00 0.07 0.00 0.07 +plat_bord plat_bord nom m p 0.01 0.61 0.01 0.07 +plats plat nom m p 30.24 61.35 8.37 17.09 +platée platée nom f s 0.04 0.61 0.04 0.47 +platées platée nom f p 0.04 0.61 0.00 0.14 +platures plature nom m p 0.00 0.14 0.00 0.14 +platyrrhiniens platyrrhinien adj m p 0.00 0.07 0.00 0.07 +plausibilité plausibilité nom f s 0.04 0.00 0.04 0.00 +plausible plausible adj s 2.68 3.92 2.48 3.24 +plausiblement plausiblement adv 0.00 0.07 0.00 0.07 +plausibles plausible adj p 2.68 3.92 0.20 0.68 +play_back play_back nom m 0.59 0.14 0.57 0.14 +play_boy play_boy nom m s 0.69 1.08 0.58 0.95 +play_boy play_boy nom m p 0.69 1.08 0.11 0.14 +play_back play_back nom m 0.59 0.14 0.02 0.00 +play play adv 0.01 0.00 0.01 0.00 +playboy playboy nom m s 0.38 0.00 0.38 0.00 +playmate playmate nom f s 0.36 0.34 0.30 0.27 +playmates playmate nom f p 0.36 0.34 0.06 0.07 +playon playon nom m s 0.02 0.00 0.02 0.00 +plaza plaza nom f s 1.53 2.91 1.53 2.91 +plazza plazza nom f s 0.05 0.14 0.05 0.14 +please please adv 3.18 0.88 3.18 0.88 +plectre plectre nom m s 0.00 0.07 0.00 0.07 +plein_air plein_air adj m s 0.00 0.07 0.00 0.07 +plein_air plein_air nom m s 0.00 0.20 0.00 0.20 +plein_cintre plein_cintre nom m s 0.00 0.07 0.00 0.07 +plein_emploi plein_emploi nom m s 0.01 0.00 0.01 0.00 +plein_temps plein_temps nom m 0.12 0.00 0.12 0.00 +plein plein pre 89.11 52.77 89.11 52.77 +pleine plein adj f s 208.75 370.41 82.13 139.19 +pleinement pleinement adv 3.44 7.77 3.44 7.77 +pleines plein adj f p 208.75 370.41 8.60 32.43 +pleins plein adj m p 208.75 370.41 13.46 40.95 +plessis plessis nom m 0.00 0.07 0.00 0.07 +plet plet nom m s 0.00 0.07 0.00 0.07 +pleur pleur nom m s 9.52 12.50 0.20 0.81 +pleura pleurer ver 191.64 163.31 0.81 5.88 ind:pas:3s; +pleurai pleurer ver 191.64 163.31 0.00 1.22 ind:pas:1s; +pleuraient pleurer ver 191.64 163.31 1.16 3.72 ind:imp:3p; +pleurais pleurer ver 191.64 163.31 4.01 5.07 ind:imp:1s;ind:imp:2s; +pleurait pleurer ver 191.64 163.31 7.54 26.49 ind:imp:3s; +pleural pleural adj m s 0.32 0.00 0.12 0.00 +pleurale pleural adj f s 0.32 0.00 0.20 0.00 +pleurant pleurer ver 191.64 163.31 3.26 7.16 par:pre; +pleurante pleurant adj f s 0.20 2.09 0.00 0.95 +pleurantes pleurant adj f p 0.20 2.09 0.00 0.07 +pleurants pleurant adj m p 0.20 2.09 0.01 0.20 +pleurard pleurard adj m s 0.01 0.54 0.01 0.14 +pleurarde pleurard adj f s 0.01 0.54 0.00 0.20 +pleurards pleurard adj m p 0.01 0.54 0.00 0.20 +pleure pleurer ver 191.64 163.31 60.17 24.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +pleurement pleurement nom m s 0.00 0.20 0.00 0.14 +pleurements pleurement nom m p 0.00 0.20 0.00 0.07 +pleurent pleurer ver 191.64 163.31 5.41 4.19 ind:pre:3p;sub:pre:3p; +pleurer pleurer ver 191.64 163.31 61.60 63.51 inf; +pleurera pleurer ver 191.64 163.31 1.25 0.61 ind:fut:3s; +pleurerai pleurer ver 191.64 163.31 1.34 0.14 ind:fut:1s; +pleureraient pleurer ver 191.64 163.31 0.12 0.00 cnd:pre:3p; +pleurerais pleurer ver 191.64 163.31 1.19 0.47 cnd:pre:1s;cnd:pre:2s; +pleurerait pleurer ver 191.64 163.31 0.38 0.68 cnd:pre:3s; +pleureras pleurer ver 191.64 163.31 0.55 0.14 ind:fut:2s; +pleurerez pleurer ver 191.64 163.31 0.20 0.14 ind:fut:2p; +pleurerons pleurer ver 191.64 163.31 0.02 0.00 ind:fut:1p; +pleureront pleurer ver 191.64 163.31 0.16 0.00 ind:fut:3p; +pleures pleurer ver 191.64 163.31 17.00 2.84 ind:pre:2s; +pleureur pleureur adj m s 0.11 1.15 0.06 0.47 +pleureurs pleureur nom m p 0.33 1.22 0.14 0.14 +pleureuse pleureur nom f s 0.33 1.22 0.17 0.20 +pleureuses pleureuse nom f p 0.14 0.00 0.14 0.00 +pleureux pleureur adj m 0.11 1.15 0.01 0.00 +pleurez pleurer ver 191.64 163.31 7.26 1.08 imp:pre:2p;ind:pre:2p; +pleuriez pleurer ver 191.64 163.31 0.31 0.14 ind:imp:2p; +pleurions pleurer ver 191.64 163.31 0.13 0.34 ind:imp:1p;sub:pre:1p; +pleurite pleurite nom f s 0.10 0.07 0.10 0.07 +pleurnicha pleurnicher ver 5.75 6.08 0.00 0.95 ind:pas:3s; +pleurnichage pleurnichage nom m s 0.03 0.00 0.01 0.00 +pleurnichages pleurnichage nom m p 0.03 0.00 0.01 0.00 +pleurnichais pleurnicher ver 5.75 6.08 0.11 0.07 ind:imp:1s;ind:imp:2s; +pleurnichait pleurnicher ver 5.75 6.08 0.02 0.81 ind:imp:3s; +pleurnichant pleurnicher ver 5.75 6.08 0.05 0.68 par:pre; +pleurnichard pleurnichard nom m s 0.55 0.07 0.47 0.07 +pleurnicharde pleurnichard adj f s 0.34 0.74 0.05 0.20 +pleurnichardes pleurnichard adj f p 0.34 0.74 0.01 0.00 +pleurnichards pleurnichard nom m p 0.55 0.07 0.08 0.00 +pleurniche pleurnicher ver 5.75 6.08 1.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pleurnichement pleurnichement nom m s 0.01 0.34 0.00 0.14 +pleurnichements pleurnichement nom m p 0.01 0.34 0.01 0.20 +pleurnichent pleurnicher ver 5.75 6.08 0.07 0.27 ind:pre:3p; +pleurnicher pleurnicher ver 5.75 6.08 3.35 1.62 inf; +pleurnicherais pleurnicher ver 5.75 6.08 0.01 0.00 cnd:pre:2s; +pleurnicherait pleurnicher ver 5.75 6.08 0.00 0.07 cnd:pre:3s; +pleurnicheras pleurnicher ver 5.75 6.08 0.03 0.00 ind:fut:2s; +pleurnicherie pleurnicherie nom f s 0.20 0.54 0.02 0.07 +pleurnicheries pleurnicherie nom f p 0.20 0.54 0.17 0.47 +pleurniches pleurnicher ver 5.75 6.08 0.54 0.00 ind:pre:2s; +pleurnicheur pleurnicheur adj m s 0.28 0.34 0.22 0.14 +pleurnicheurs pleurnicheur nom m p 0.25 0.14 0.04 0.00 +pleurnicheuse pleurnicheur nom f s 0.25 0.14 0.06 0.07 +pleurnicheuses pleurnicheuse nom f p 0.03 0.00 0.03 0.00 +pleurnichez pleurnicher ver 5.75 6.08 0.14 0.07 imp:pre:2p;ind:pre:2p; +pleurniché pleurnicher ver m s 5.75 6.08 0.08 0.74 par:pas; +pleurons pleurer ver 191.64 163.31 0.73 0.61 imp:pre:1p;ind:pre:1p; +pleurât pleurer ver 191.64 163.31 0.00 0.14 sub:imp:3s; +pleurotes pleurote nom m p 0.00 0.07 0.00 0.07 +pleurs pleur nom m p 9.52 12.50 9.32 11.69 +pleurèrent pleurer ver 191.64 163.31 0.01 0.41 ind:pas:3p; +pleuré pleurer ver m s 191.64 163.31 16.91 13.04 par:pas; +pleurée pleurer ver f s 191.64 163.31 0.07 0.14 par:pas; +pleurées pleurer ver f p 191.64 163.31 0.00 0.20 par:pas; +pleurés pleurer ver m p 191.64 163.31 0.03 0.07 par:pas; +pleurésie pleurésie nom f s 0.17 0.54 0.17 0.54 +pleurétique pleurétique adj f s 0.01 0.00 0.01 0.00 +pleut pleuvoir ver 67.22 47.09 20.50 10.41 ind:pre:3s; +pleutre pleutre nom m s 0.18 0.61 0.16 0.41 +pleutrerie pleutrerie nom f s 0.00 0.14 0.00 0.14 +pleutres pleutre nom m p 0.18 0.61 0.02 0.20 +pleuvaient pleuvoir ver 67.22 47.09 0.13 2.23 ind:imp:3p; +pleuvait pleuvoir ver 67.22 47.09 4.43 11.62 ind:imp:3s; +pleuvant pleuvoir ver 67.22 47.09 0.01 0.20 par:pre; +pleuve pleuvoir ver 67.22 47.09 3.29 0.95 sub:pre:3s; +pleuvent pleuvoir ver 67.22 47.09 0.38 0.88 ind:pre:3p; +pleuvinait pleuviner ver 0.02 0.14 0.00 0.07 ind:imp:3s; +pleuvine pleuviner ver 0.02 0.14 0.02 0.00 ind:pre:3s; +pleuviner pleuviner ver 0.02 0.14 0.00 0.07 inf; +pleuvioter pleuvioter ver 0.00 0.07 0.00 0.07 inf; +pleuvoir pleuvoir ver 67.22 47.09 7.98 6.69 inf; +pleuvra pleuvoir ver 67.22 47.09 0.87 0.68 ind:fut:3s; +pleuvrait pleuvoir ver 67.22 47.09 0.05 0.34 cnd:pre:3s; +plexi plexi nom m s 0.01 0.00 0.01 0.00 +plexiglas plexiglas nom m 0.13 0.47 0.13 0.47 +plexus plexus nom m 0.43 0.88 0.43 0.88 +pleyel pleyel nom m s 0.02 0.07 0.02 0.07 +pli pli nom m s 6.00 41.42 4.42 16.76 +plia plier ver 14.37 50.20 0.00 3.99 ind:pas:3s; +pliable pliable adj s 0.19 0.00 0.19 0.00 +pliage pliage nom m s 0.12 0.54 0.11 0.47 +pliages pliage nom m p 0.12 0.54 0.01 0.07 +pliai plier ver 14.37 50.20 0.00 0.27 ind:pas:1s; +pliaient plier ver 14.37 50.20 0.02 1.08 ind:imp:3p; +pliais plier ver 14.37 50.20 0.01 0.34 ind:imp:1s; +pliait plier ver 14.37 50.20 0.13 3.18 ind:imp:3s; +pliant pliant adj m s 0.54 3.92 0.34 2.09 +pliante pliant adj f s 0.54 3.92 0.06 1.15 +pliantes pliant adj f p 0.54 3.92 0.12 0.27 +pliants pliant adj m p 0.54 3.92 0.03 0.41 +plie plier ver 14.37 50.20 3.54 5.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +plient plier ver 14.37 50.20 0.22 0.74 ind:pre:3p; +plier plier ver 14.37 50.20 5.02 10.68 inf; +pliera plier ver 14.37 50.20 0.08 0.07 ind:fut:3s; +plierai plier ver 14.37 50.20 0.28 0.14 ind:fut:1s; +plieraient plier ver 14.37 50.20 0.02 0.00 cnd:pre:3p; +plierait plier ver 14.37 50.20 0.04 0.27 cnd:pre:3s; +plieras plier ver 14.37 50.20 0.03 0.00 ind:fut:2s; +plierez plier ver 14.37 50.20 0.03 0.07 ind:fut:2p; +plierons plier ver 14.37 50.20 0.17 0.00 ind:fut:1p; +plies plier ver 14.37 50.20 0.28 0.14 ind:pre:2s; +plieur plieur nom m s 0.02 0.00 0.01 0.00 +plieuse plieur nom f s 0.02 0.00 0.01 0.00 +pliez plier ver 14.37 50.20 1.32 0.07 imp:pre:2p;ind:pre:2p; +plinthe plinthe nom f s 0.26 2.43 0.10 1.01 +plinthes plinthe nom f p 0.26 2.43 0.16 1.42 +pliocène pliocène nom m s 0.01 0.00 0.01 0.00 +plioir plioir nom m s 0.00 0.14 0.00 0.14 +plions plier ver 14.37 50.20 0.22 0.00 imp:pre:1p;ind:pre:1p; +pliât plier ver 14.37 50.20 0.00 0.07 sub:imp:3s; +plique plique nom f s 0.03 0.00 0.03 0.00 +plis pli nom m p 6.00 41.42 1.58 24.66 +plissa plisser ver 0.59 16.49 0.00 3.31 ind:pas:3s; +plissai plisser ver 0.59 16.49 0.00 0.14 ind:pas:1s; +plissaient plisser ver 0.59 16.49 0.00 0.54 ind:imp:3p; +plissais plisser ver 0.59 16.49 0.00 0.07 ind:imp:1s; +plissait plisser ver 0.59 16.49 0.00 1.69 ind:imp:3s; +plissant plisser ver 0.59 16.49 0.02 3.38 par:pre; +plisse plisser ver 0.59 16.49 0.10 2.50 imp:pre:2s;ind:pre:3s; +plissement plissement nom m s 0.03 1.08 0.02 0.68 +plissements plissement nom m p 0.03 1.08 0.01 0.41 +plissent plisser ver 0.59 16.49 0.02 0.41 ind:pre:3p; +plisser plisser ver 0.59 16.49 0.15 1.08 inf; +plisseront plisser ver 0.59 16.49 0.00 0.07 ind:fut:3p; +plisseur plisseur nom m s 0.00 0.07 0.00 0.07 +plissèrent plisser ver 0.59 16.49 0.00 0.27 ind:pas:3p; +plissé plisser ver m s 0.59 16.49 0.12 1.42 par:pas; +plissée plissé adj f s 0.33 8.72 0.08 3.18 +plissées plissé adj f p 0.33 8.72 0.02 1.01 +plissure plissure nom f s 0.00 0.20 0.00 0.07 +plissures plissure nom f p 0.00 0.20 0.00 0.14 +plissés plissé adj m p 0.33 8.72 0.17 1.76 +plièrent plier ver 14.37 50.20 0.00 0.20 ind:pas:3p; +plié plier ver m s 14.37 50.20 1.43 10.27 par:pas; +pliée plier ver f s 14.37 50.20 0.68 5.34 par:pas; +pliées plier ver f p 14.37 50.20 0.37 1.62 par:pas; +pliure pliure nom f s 0.03 0.95 0.03 0.41 +pliures pliure nom f p 0.03 0.95 0.00 0.54 +pliés plier ver m p 14.37 50.20 0.32 3.92 par:pas; +ploc ploc ono 0.65 0.61 0.65 0.61 +ploie ployer ver 0.44 7.36 0.03 0.95 ind:pre:1s;ind:pre:3s; +ploiement ploiement nom m s 0.00 0.27 0.00 0.27 +ploient ployer ver 0.44 7.36 0.01 0.34 ind:pre:3p; +plomb plomb nom m s 20.24 22.64 10.62 20.27 +plombage plombage nom m s 0.99 0.41 0.43 0.14 +plombages plombage nom m p 0.99 0.41 0.56 0.27 +plombaient plomber ver 1.77 2.70 0.00 0.14 ind:imp:3p; +plombait plomber ver 1.77 2.70 0.00 0.41 ind:imp:3s; +plombant plomber ver 1.77 2.70 0.01 0.14 par:pre; +plombe plombe nom f s 1.00 7.09 0.45 1.55 +plombent plomber ver 1.77 2.70 0.01 0.07 ind:pre:3p; +plomber plomber ver 1.77 2.70 0.78 0.54 inf; +plomberie plomberie nom f s 2.32 0.81 2.31 0.74 +plomberies plomberie nom f p 2.32 0.81 0.01 0.07 +plombes plombe nom f p 1.00 7.09 0.55 5.54 +plombez plomber ver 1.77 2.70 0.03 0.00 imp:pre:2p;ind:pre:2p; +plombier plombier nom m s 5.85 3.99 5.22 3.31 +plombiers plombier nom m p 5.85 3.99 0.63 0.68 +plombières plombières nom f 0.00 0.20 0.00 0.20 +plombs plomb nom m p 20.24 22.64 9.62 2.36 +plombé plomber ver m s 1.77 2.70 0.32 0.61 par:pas; +plombée plomber ver f s 1.77 2.70 0.16 0.07 par:pas; +plombées plombé adj f p 0.20 3.85 0.01 0.47 +plombure plombure nom f s 0.00 0.07 0.00 0.07 +plombés plombé adj m p 0.20 3.85 0.01 0.54 +plonge plonger ver 31.96 86.22 5.37 12.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +plongea plonger ver 31.96 86.22 0.49 10.88 ind:pas:3s; +plongeai plonger ver 31.96 86.22 0.13 1.22 ind:pas:1s; +plongeaient plonger ver 31.96 86.22 0.16 2.64 ind:imp:3p; +plongeais plonger ver 31.96 86.22 0.29 2.43 ind:imp:1s;ind:imp:2s; +plongeait plonger ver 31.96 86.22 0.41 10.27 ind:imp:3s; +plongeant plonger ver 31.96 86.22 1.41 5.41 par:pre; +plongeante plongeant adj f s 0.20 1.28 0.04 0.47 +plongeantes plongeant adj f p 0.20 1.28 0.00 0.07 +plongeants plongeant adj m p 0.20 1.28 0.00 0.07 +plongement plongement nom m s 0.00 0.07 0.00 0.07 +plongent plonger ver 31.96 86.22 1.04 2.09 ind:pre:3p; +plongeoir plongeoir nom m s 0.44 1.08 0.44 1.01 +plongeoirs plongeoir nom m p 0.44 1.08 0.00 0.07 +plongeâmes plonger ver 31.96 86.22 0.01 0.07 ind:pas:1p; +plongeon plongeon nom m s 2.98 4.05 2.71 3.18 +plongeons plongeon nom m p 2.98 4.05 0.27 0.88 +plongeât plonger ver 31.96 86.22 0.00 0.14 sub:imp:3s; +plonger plonger ver 31.96 86.22 9.36 14.66 inf; +plongera plonger ver 31.96 86.22 0.36 0.27 ind:fut:3s; +plongerai plonger ver 31.96 86.22 0.30 0.00 ind:fut:1s; +plongeraient plonger ver 31.96 86.22 0.02 0.00 cnd:pre:3p; +plongerais plonger ver 31.96 86.22 0.02 0.20 cnd:pre:1s; +plongerait plonger ver 31.96 86.22 0.21 0.47 cnd:pre:3s; +plongeras plonger ver 31.96 86.22 0.15 0.00 ind:fut:2s; +plongerez plonger ver 31.96 86.22 0.44 0.00 ind:fut:2p; +plongeriez plonger ver 31.96 86.22 0.01 0.00 cnd:pre:2p; +plongerons plonger ver 31.96 86.22 0.06 0.00 ind:fut:1p; +plongeront plonger ver 31.96 86.22 0.16 0.07 ind:fut:3p; +plonges plonger ver 31.96 86.22 0.61 0.20 ind:pre:2s; +plongeur plongeur nom m s 3.88 3.11 2.06 1.69 +plongeurs plongeur nom m p 3.88 3.11 1.70 0.68 +plongeuse plongeur nom f s 3.88 3.11 0.13 0.68 +plongeuses plongeuse nom f p 0.01 0.00 0.01 0.00 +plongez plonger ver 31.96 86.22 2.13 0.14 imp:pre:2p;ind:pre:2p; +plongiez plonger ver 31.96 86.22 0.37 0.00 ind:imp:2p; +plongions plonger ver 31.96 86.22 0.04 0.41 ind:imp:1p; +plongèrent plonger ver 31.96 86.22 0.16 0.95 ind:pas:3p; +plongé plonger ver m s 31.96 86.22 5.87 14.19 par:pas; +plongée plongée nom f s 6.74 6.55 6.63 5.34 +plongées plonger ver f p 31.96 86.22 0.13 0.68 par:pas; +plongés plonger ver m p 31.96 86.22 0.72 2.50 par:pas; +plot plot nom m s 0.32 0.61 0.26 0.54 +plâtra plâtrer ver 0.60 0.88 0.00 0.07 ind:pas:3s; +plâtrait plâtrer ver 0.60 0.88 0.00 0.07 ind:imp:3s; +plâtras plâtras nom m 0.00 0.95 0.00 0.95 +plâtre plâtre nom m s 5.42 15.81 5.06 14.59 +plâtrent plâtrer ver 0.60 0.88 0.00 0.07 ind:pre:3p; +plâtrer plâtrer ver 0.60 0.88 0.29 0.00 inf; +plâtres plâtre nom m p 5.42 15.81 0.36 1.22 +plâtreuse plâtreux adj f s 0.00 0.95 0.00 0.20 +plâtreuses plâtreux adj f p 0.00 0.95 0.00 0.07 +plâtreux plâtreux adj m 0.00 0.95 0.00 0.68 +plâtrier plâtrier nom m s 0.10 1.01 0.10 0.88 +plâtriers plâtrier nom m p 0.10 1.01 0.00 0.14 +plâtré plâtré adj m s 0.25 0.47 0.13 0.20 +plâtrée plâtrer ver f s 0.60 0.88 0.05 0.34 par:pas; +plâtrées plâtrer ver f p 0.60 0.88 0.01 0.07 par:pas; +plâtrés plâtré adj m p 0.25 0.47 0.11 0.00 +plots plot nom m p 0.32 0.61 0.06 0.07 +plouc plouc nom m s 3.90 1.82 2.35 0.47 +ploucs plouc nom m p 3.90 1.82 1.55 1.35 +plouf plouf ono 1.31 1.55 1.31 1.55 +plouk plouk nom m s 0.01 0.68 0.01 0.68 +ploutocrate ploutocrate nom m s 0.02 0.07 0.01 0.00 +ploutocrates ploutocrate nom m p 0.02 0.07 0.01 0.07 +ploutocratie ploutocratie nom f s 0.20 0.00 0.20 0.00 +ploya ployer ver 0.44 7.36 0.00 0.14 ind:pas:3s; +ployaient ployer ver 0.44 7.36 0.01 0.34 ind:imp:3p; +ployait ployer ver 0.44 7.36 0.10 0.74 ind:imp:3s; +ployant ployant adj m s 0.01 0.20 0.01 0.07 +ployante ployant adj f s 0.01 0.20 0.00 0.14 +ployer ployer ver 0.44 7.36 0.14 1.42 inf; +ployé ployer ver m s 0.44 7.36 0.14 1.01 par:pas; +ployée ployer ver f s 0.44 7.36 0.00 0.95 par:pas; +ployées ployer ver f p 0.44 7.36 0.00 0.20 par:pas; +ployés ployer ver m p 0.44 7.36 0.00 0.27 par:pas; +plèbe plèbe nom f s 0.70 0.41 0.70 0.41 +plèvre plèvre nom f s 0.31 0.14 0.31 0.07 +plèvres plèvre nom f p 0.31 0.14 0.00 0.07 +plu pleuvoir ver m s 67.22 47.09 29.54 13.11 par:pas; +plébiscite plébiscite nom m s 0.43 0.95 0.42 0.95 +plébisciter plébisciter ver 0.02 0.14 0.01 0.00 inf; +plébiscites plébiscite nom m p 0.43 0.95 0.01 0.00 +plébiscité plébisciter ver m s 0.02 0.14 0.01 0.00 par:pas; +plébiscités plébisciter ver m p 0.02 0.14 0.00 0.07 par:pas; +plébéien plébéien adj m s 0.06 0.68 0.04 0.34 +plébéienne plébéien adj f s 0.06 0.68 0.01 0.14 +plébéiennes plébéien nom f p 0.14 0.07 0.01 0.00 +plébéiens plébéien nom m p 0.14 0.07 0.09 0.00 +pluche plucher ver 0.01 1.01 0.01 0.95 imp:pre:2s;ind:pre:3s; +plucher plucher ver 0.01 1.01 0.00 0.07 inf; +pluches pluches nom f p 0.01 0.54 0.01 0.54 +plue plue adv 0.26 0.00 0.26 0.00 +pléiade pléiade nom f s 0.16 1.82 0.16 1.69 +pléiades pléiade nom f p 0.16 1.82 0.00 0.14 +pluie pluie nom f s 46.10 122.57 42.91 111.76 +pluies pluie nom f p 46.10 122.57 3.19 10.81 +pléistocène pléistocène nom m s 0.02 0.00 0.02 0.00 +plum_pudding plum_pudding nom m s 0.02 0.07 0.02 0.07 +plum plume nom m s 15.29 60.00 0.11 0.61 +pluma plumer ver 2.44 3.78 0.00 0.07 ind:pas:3s; +plumage plumage nom m s 0.41 2.64 0.41 2.30 +plumages plumage nom m p 0.41 2.64 0.00 0.34 +plumaient plumer ver 2.44 3.78 0.00 0.27 ind:imp:3p; +plumait plumer ver 2.44 3.78 0.03 0.47 ind:imp:3s; +plumant plumer ver 2.44 3.78 0.04 0.20 par:pre; +plumard plumard nom m s 0.84 5.95 0.70 5.68 +plumards plumard nom m p 0.84 5.95 0.14 0.27 +plumassière plumassier nom f s 0.00 0.07 0.00 0.07 +plume plume nom f s 15.29 60.00 6.49 33.38 +plumeau plumeau nom m s 0.59 2.70 0.48 2.30 +plumeaux plumeau nom m p 0.59 2.70 0.11 0.41 +plument plumer ver 2.44 3.78 0.01 0.07 ind:pre:3p; +plumer plumer ver 2.44 3.78 1.06 1.01 inf; +plumes plume nom f p 15.29 60.00 8.69 26.01 +plumet plumet nom m s 0.23 2.03 0.23 0.74 +plumetis plumetis nom m 0.00 0.20 0.00 0.20 +plumets plumet nom m p 0.23 2.03 0.00 1.28 +plumeuse plumeux adj f s 0.00 0.74 0.00 0.20 +plumeuses plumeux adj f p 0.00 0.74 0.00 0.20 +plumeux plumeux adj m 0.00 0.74 0.00 0.34 +plumez plumer ver 2.44 3.78 0.04 0.00 imp:pre:2p;ind:pre:2p; +plumier plumier nom m s 0.03 1.35 0.03 0.95 +plumiers plumier nom m p 0.03 1.35 0.00 0.41 +plumitif plumitif nom m s 0.32 1.15 0.31 0.41 +plumitifs plumitif nom m p 0.32 1.15 0.01 0.74 +plumitives plumitive nom f p 0.00 0.07 0.00 0.07 +plumé plumer ver m s 2.44 3.78 0.37 0.47 par:pas; +plumée plumer ver f s 2.44 3.78 0.26 0.27 par:pas; +plumées plumer ver f p 2.44 3.78 0.00 0.14 par:pas; +plumules plumule nom f p 0.00 0.07 0.00 0.07 +plumés plumer ver m p 2.44 3.78 0.08 0.14 par:pas; +plénier plénier adj m s 0.00 1.42 0.00 0.20 +pléniers plénier adj m p 0.00 1.42 0.00 0.07 +plénipotentiaire plénipotentiaire adj m s 0.01 1.15 0.01 1.08 +plénipotentiaires plénipotentiaire nom p 0.00 1.28 0.00 0.41 +plénière plénier adj f s 0.00 1.42 0.00 0.88 +plénières plénier adj f p 0.00 1.42 0.00 0.27 +plénitude plénitude nom f s 1.27 6.96 1.27 6.76 +plénitudes plénitude nom f p 1.27 6.96 0.00 0.20 +plénum plénum nom m s 0.11 0.00 0.11 0.00 +pléonasme pléonasme nom m s 0.17 0.47 0.17 0.27 +pléonasmes pléonasme nom m p 0.17 0.47 0.00 0.20 +pléonastiques pléonastique adj p 0.01 0.00 0.01 0.00 +plupart plupart adv_sup 0.01 0.07 0.01 0.07 +pluralisme pluralisme nom m s 0.16 0.07 0.16 0.07 +pluraliste pluraliste adj f s 0.22 0.14 0.22 0.14 +pluralité pluralité nom f s 0.00 0.27 0.00 0.27 +plurent plaire ver 607.24 139.80 0.11 0.54 ind:pas:3p; +pluriannuel pluriannuel adj m s 0.01 0.00 0.01 0.00 +pluridisciplinaire pluridisciplinaire adj s 0.01 0.00 0.01 0.00 +pluriel pluriel nom m s 0.82 3.11 0.81 2.97 +plurielle pluriel adj f s 0.27 0.41 0.00 0.20 +pluriels pluriel nom m p 0.82 3.11 0.01 0.14 +plurinational plurinational adj m s 0.10 0.00 0.10 0.00 +plus_que_parfait plus_que_parfait nom m s 0.02 0.14 0.02 0.07 +plus_que_parfait plus_que_parfait nom m p 0.02 0.14 0.00 0.07 +plus_value plus_value nom f s 0.72 0.68 0.48 0.54 +plus_value plus_value nom f p 0.72 0.68 0.25 0.14 +plus plus adv_sup 4062.45 5014.53 4062.45 5014.53 +plusieurs plusieurs adj_ind p 66.98 203.58 66.98 203.58 +plésiosaure plésiosaure nom m s 0.02 0.14 0.02 0.14 +plusse plaire ver 607.24 139.80 0.00 0.07 sub:imp:1s; +plut plaire ver 607.24 139.80 0.76 4.86 ind:pas:3p;ind:pas:3s;ind:pas:3s; +plutôt plutôt adv 210.40 280.74 210.40 280.74 +pléthore pléthore nom f s 0.32 0.27 0.32 0.27 +pléthorique pléthorique adj m s 0.00 0.41 0.00 0.34 +pléthoriques pléthorique adj f p 0.00 0.41 0.00 0.07 +pluton pluton nom m s 0.14 0.00 0.14 0.00 +plutonien plutonien adj m s 0.03 0.00 0.02 0.00 +plutonienne plutonien adj f s 0.03 0.00 0.01 0.00 +plutonienne plutonienne adj f s 0.01 0.00 0.01 0.00 +plutonique plutonique adj s 0.01 0.00 0.01 0.00 +plutonium plutonium nom m s 1.48 0.07 1.48 0.07 +pluviôse pluviôse nom m s 0.00 0.14 0.00 0.14 +pluvial pluvial adj m s 0.10 0.00 0.06 0.00 +pluviale pluvial adj f s 0.10 0.00 0.01 0.00 +pluviales pluvial adj f p 0.10 0.00 0.02 0.00 +pluviaux pluvial adj m p 0.10 0.00 0.01 0.00 +pluvier pluvier nom m s 0.04 0.27 0.03 0.07 +pluviers pluvier nom m p 0.04 0.27 0.01 0.20 +pluvieuse pluvieux adj f s 0.79 4.46 0.20 1.89 +pluvieuses pluvieux adj f p 0.79 4.46 0.17 0.27 +pluvieux pluvieux adj m 0.79 4.46 0.42 2.30 +pluviomètre pluviomètre nom m s 0.00 0.14 0.00 0.07 +pluviomètres pluviomètre nom m p 0.00 0.14 0.00 0.07 +pluviométrie pluviométrie nom f s 0.02 0.00 0.02 0.00 +pluviométrique pluviométrique adj s 0.00 0.07 0.00 0.07 +pluviosité pluviosité nom f s 0.01 0.07 0.01 0.07 +pneu pneu nom m s 13.44 17.03 5.64 4.93 +pneumatique pneumatique adj s 0.47 2.16 0.31 1.49 +pneumatiques pneumatique adj p 0.47 2.16 0.17 0.68 +pneumatophore pneumatophore nom m s 0.00 0.07 0.00 0.07 +pneumo pneumo nom m s 0.26 0.34 0.26 0.07 +pneumoconiose pneumoconiose nom f s 0.01 0.00 0.01 0.00 +pneumocoque pneumocoque nom m s 0.01 0.07 0.01 0.00 +pneumocoques pneumocoque nom m p 0.01 0.07 0.00 0.07 +pneumocystose pneumocystose nom f s 0.01 0.34 0.01 0.34 +pneumologue pneumologue nom s 0.01 0.00 0.01 0.00 +pneumonectomie pneumonectomie nom f s 0.01 0.00 0.01 0.00 +pneumonie pneumonie nom f s 4.96 0.81 4.67 0.81 +pneumonies pneumonie nom f p 4.96 0.81 0.29 0.00 +pneumonique pneumonique adj f s 0.09 0.00 0.09 0.00 +pneumopathie pneumopathie nom f s 0.00 0.07 0.00 0.07 +pneumos pneumo nom m p 0.26 0.34 0.00 0.27 +pneumothorax pneumothorax nom m 0.45 0.27 0.45 0.27 +pneus_neige pneus_neige nom m p 0.02 0.00 0.02 0.00 +pneus pneu nom m p 13.44 17.03 7.79 12.09 +pochade pochade nom f s 0.02 0.41 0.02 0.20 +pochades pochade nom f p 0.02 0.41 0.00 0.20 +pochage pochage nom m s 0.00 0.07 0.00 0.07 +pochard pochard nom m s 0.73 1.01 0.49 0.54 +pocharde pochard nom f s 0.73 1.01 0.11 0.34 +pochards pochard nom m p 0.73 1.01 0.13 0.14 +poche_revolver poche_revolver nom s 0.00 0.27 0.00 0.27 +poche poche nom s 49.65 146.28 36.23 101.82 +pocher pocher ver 0.36 0.61 0.07 0.14 inf; +poches poche nom p 49.65 146.28 13.42 44.46 +pochetron pochetron nom m s 0.14 0.14 0.14 0.07 +pochetrons pochetron nom m p 0.14 0.14 0.01 0.07 +pochette_surprise pochette_surprise nom f s 0.20 0.34 0.20 0.20 +pochette pochette nom f s 2.34 8.85 1.89 6.69 +pochette_surprise pochette_surprise nom f p 0.20 0.34 0.00 0.14 +pochettes pochette nom f p 2.34 8.85 0.44 2.16 +pocheté pocheté adj m s 0.00 0.07 0.00 0.07 +pochetée pocheté nom f s 0.00 0.14 0.00 0.07 +pochetées pocheté nom f p 0.00 0.14 0.00 0.07 +pochoir pochoir nom m s 0.08 0.95 0.08 0.95 +pochon pochon nom m s 0.01 0.47 0.01 0.27 +pochons pochon nom m p 0.01 0.47 0.00 0.20 +pochtron pochtron nom m s 0.12 0.00 0.11 0.00 +pochtrons pochtron nom m p 0.12 0.00 0.01 0.00 +poché poché adj m s 0.61 0.81 0.28 0.41 +pochée poché adj f s 0.61 0.81 0.01 0.14 +pochées poché adj f p 0.61 0.81 0.03 0.00 +pochés poché adj m p 0.61 0.81 0.28 0.27 +podagre podagre adj s 0.00 0.20 0.00 0.20 +podestat podestat nom m s 0.00 0.27 0.00 0.07 +podestats podestat nom m p 0.00 0.27 0.00 0.20 +podium podium nom m s 2.16 1.08 2.12 0.95 +podiums podium nom m p 2.16 1.08 0.04 0.14 +podologue podologue nom s 0.05 0.07 0.05 0.07 +podomètre podomètre nom m s 0.01 0.00 0.01 0.00 +poecile poecile nom m s 0.00 0.07 0.00 0.07 +pogne pogne nom f s 0.76 13.38 0.69 8.31 +pognes pogne nom f p 0.76 13.38 0.07 5.07 +pognon pognon nom m s 13.85 11.96 13.85 11.96 +pogo pogo nom m s 0.16 0.00 0.16 0.00 +pogrom pogrom nom m s 0.05 1.08 0.04 0.41 +pogrome pogrome nom m s 0.01 0.47 0.01 0.07 +pogromes pogrome nom m p 0.01 0.47 0.00 0.41 +pogroms pogrom nom m p 0.05 1.08 0.01 0.68 +poids_lourds poids_lourds nom m 0.02 0.07 0.02 0.07 +poids poids nom m 34.42 89.05 34.42 89.05 +poignaient poigner ver 0.17 1.08 0.00 0.14 ind:imp:3p; +poignait poigner ver 0.17 1.08 0.00 0.47 ind:imp:3s; +poignant poignant adj m s 0.78 6.22 0.38 2.23 +poignante poignant adj f s 0.78 6.22 0.22 2.84 +poignantes poignant adj f p 0.78 6.22 0.02 0.47 +poignants poignant adj m p 0.78 6.22 0.16 0.68 +poignard poignard nom m s 9.89 10.14 9.38 8.11 +poignarda poignarder ver 14.32 3.31 0.02 0.07 ind:pas:3s; +poignardaient poignarder ver 14.32 3.31 0.01 0.27 ind:imp:3p; +poignardais poignarder ver 14.32 3.31 0.07 0.00 ind:imp:1s;ind:imp:2s; +poignardait poignarder ver 14.32 3.31 0.07 0.14 ind:imp:3s; +poignardant poignarder ver 14.32 3.31 0.05 0.07 par:pre; +poignarde poignarder ver 14.32 3.31 1.61 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +poignardent poignarder ver 14.32 3.31 0.36 0.00 ind:pre:3p; +poignarder poignarder ver 14.32 3.31 3.25 0.81 inf; +poignardera poignarder ver 14.32 3.31 0.03 0.00 ind:fut:3s; +poignarderai poignarder ver 14.32 3.31 0.07 0.07 ind:fut:1s; +poignarderais poignarder ver 14.32 3.31 0.05 0.00 cnd:pre:1s; +poignarderait poignarder ver 14.32 3.31 0.03 0.00 cnd:pre:3s; +poignarderont poignarder ver 14.32 3.31 0.00 0.07 ind:fut:3p; +poignardez poignarder ver 14.32 3.31 0.07 0.00 imp:pre:2p;ind:pre:2p; +poignards poignard nom m p 9.89 10.14 0.51 2.03 +poignardé poignarder ver m s 14.32 3.31 5.91 0.95 par:pas; +poignardée poignarder ver f s 14.32 3.31 2.39 0.34 par:pas; +poignardées poignarder ver f p 14.32 3.31 0.05 0.00 par:pas; +poignardés poignarder ver m p 14.32 3.31 0.28 0.14 par:pas; +poigne poigne nom f s 1.96 5.41 1.95 5.00 +poignent poigner ver 0.17 1.08 0.00 0.07 ind:pre:3p; +poigner poigner ver 0.17 1.08 0.14 0.00 inf; +poignerait poigner ver 0.17 1.08 0.00 0.07 cnd:pre:3s; +poignes poigne nom f p 1.96 5.41 0.01 0.41 +poignet poignet nom m s 10.00 42.84 6.38 27.70 +poignets poignet nom m p 10.00 42.84 3.62 15.14 +poignons poigner ver 0.17 1.08 0.00 0.07 imp:pre:1p; +poignée poignée nom f s 13.61 46.08 11.65 36.35 +poignées poignée nom f p 13.61 46.08 1.95 9.73 +poil_de_carotte poil_de_carotte nom m s 0.00 0.07 0.00 0.07 +poil poil nom m s 39.33 76.01 27.09 42.91 +poilaient poiler ver 0.06 1.28 0.00 0.07 ind:imp:3p; +poilais poiler ver 0.06 1.28 0.00 0.20 ind:imp:1s; +poilait poiler ver 0.06 1.28 0.00 0.34 ind:imp:3s; +poilant poilant adj m s 0.10 0.14 0.10 0.14 +poile poiler ver 0.06 1.28 0.03 0.07 ind:pre:1s;ind:pre:3s; +poiler poiler ver 0.06 1.28 0.03 0.14 inf; +poileux poileux adj m 0.00 0.07 0.00 0.07 +poils poil nom m p 39.33 76.01 12.24 33.11 +poilé poiler ver m s 0.06 1.28 0.00 0.07 par:pas; +poilu poilu adj m s 4.30 9.05 1.94 3.04 +poilue poilu adj f s 4.30 9.05 0.75 1.42 +poilues poilu adj f p 4.30 9.05 0.70 1.42 +poilés poiler ver m p 0.06 1.28 0.00 0.14 par:pas; +poilus poilu adj m p 4.30 9.05 0.92 3.18 +poindra poindre ver 5.28 5.61 0.11 0.07 ind:fut:3s; +poindre poindre ver 5.28 5.61 0.06 2.70 inf; +poing poing nom m s 17.52 76.08 13.25 47.97 +poings poing nom m p 17.52 76.08 4.27 28.11 +poinsettia poinsettia nom f s 0.04 0.00 0.04 0.00 +point_clé point_clé nom m s 0.02 0.00 0.02 0.00 +point_virgule point_virgule nom m s 0.04 0.07 0.04 0.00 +point point nom_sup m s 225.32 323.58 186.70 272.57 +pointa pointer ver 25.45 38.51 0.03 1.89 ind:pas:3s; +pointage pointage nom m s 0.31 0.41 0.30 0.41 +pointages pointage nom m p 0.31 0.41 0.01 0.00 +pointai pointer ver 25.45 38.51 0.00 0.07 ind:pas:1s; +pointaient pointer ver 25.45 38.51 0.17 2.30 ind:imp:3p; +pointais pointer ver 25.45 38.51 0.11 0.27 ind:imp:1s;ind:imp:2s; +pointait pointer ver 25.45 38.51 0.61 5.00 ind:imp:3s; +pointant pointer ver 25.45 38.51 0.27 3.72 par:pre; +pointe pointe nom f s 13.32 83.85 11.37 69.05 +pointeau pointeau nom m s 0.01 0.14 0.01 0.14 +pointement pointement nom m s 0.00 0.07 0.00 0.07 +pointent pointer ver 25.45 38.51 1.37 1.62 ind:pre:3p; +pointer pointer ver 25.45 38.51 4.63 5.14 inf; +pointera pointer ver 25.45 38.51 0.47 0.27 ind:fut:3s; +pointerai pointer ver 25.45 38.51 0.17 0.00 ind:fut:1s; +pointeraient pointer ver 25.45 38.51 0.01 0.14 cnd:pre:3p; +pointerais pointer ver 25.45 38.51 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +pointerait pointer ver 25.45 38.51 0.07 0.20 cnd:pre:3s; +pointeras pointer ver 25.45 38.51 0.02 0.00 ind:fut:2s; +pointerez pointer ver 25.45 38.51 0.04 0.00 ind:fut:2p; +pointeront pointer ver 25.45 38.51 0.06 0.00 ind:fut:3p; +pointers pointer nom m p 0.12 0.00 0.01 0.00 +pointes pointe nom f p 13.32 83.85 1.96 14.80 +pointeur pointeur nom m s 0.35 0.61 0.03 0.41 +pointeurs pointeur nom m p 0.35 0.61 0.00 0.14 +pointeuse pointeur nom f s 0.35 0.61 0.33 0.07 +pointeuses pointeur adj f p 0.01 0.20 0.00 0.07 +pointez pointer ver 25.45 38.51 2.06 0.20 imp:pre:2p;ind:pre:2p; +poinçon poinçon nom m s 0.37 1.89 0.35 1.55 +poinçonnait poinçonner ver 0.06 0.54 0.00 0.07 ind:imp:3s; +poinçonner poinçonner ver 0.06 0.54 0.04 0.14 inf; +poinçonneraient poinçonner ver 0.06 0.54 0.00 0.07 cnd:pre:3p; +poinçonneur poinçonneur nom m s 0.16 0.20 0.16 0.14 +poinçonneurs poinçonneur nom m p 0.16 0.20 0.00 0.07 +poinçonné poinçonner ver m s 0.06 0.54 0.01 0.07 par:pas; +poinçonnée poinçonner ver f s 0.06 0.54 0.01 0.07 par:pas; +poinçonnés poinçonner ver m p 0.06 0.54 0.00 0.14 par:pas; +poinçons poinçon nom m p 0.37 1.89 0.02 0.34 +pointiez pointer ver 25.45 38.51 0.10 0.00 ind:imp:2p; +pointillaient pointiller ver 0.03 1.62 0.00 0.07 ind:imp:3p; +pointillant pointiller ver 0.03 1.62 0.00 0.27 par:pre; +pointille pointiller ver 0.03 1.62 0.00 0.07 ind:pre:3s; +pointilleuse pointilleux adj f s 1.01 1.76 0.06 0.74 +pointilleuses pointilleux adj f p 1.01 1.76 0.02 0.14 +pointilleux pointilleux adj m 1.01 1.76 0.92 0.88 +pointillisme pointillisme nom m s 0.01 0.00 0.01 0.00 +pointilliste pointilliste adj m s 0.00 0.34 0.00 0.14 +pointillistes pointilliste adj p 0.00 0.34 0.00 0.20 +pointillé pointillé nom m s 0.36 2.97 0.16 1.62 +pointillée pointiller ver f s 0.03 1.62 0.02 0.47 par:pas; +pointillées pointiller ver f p 0.03 1.62 0.00 0.27 par:pas; +pointillés pointillé nom m p 0.36 2.97 0.20 1.35 +pointâmes pointer ver 25.45 38.51 0.00 0.07 ind:pas:1p; +pointons pointer ver 25.45 38.51 0.04 0.00 imp:pre:1p;ind:pre:1p; +point_virgule point_virgule nom m p 0.04 0.07 0.00 0.07 +points point nom_sup m p 225.32 323.58 38.62 51.01 +pointèrent pointer ver 25.45 38.51 0.00 0.34 ind:pas:3p; +pointé pointer ver m s 25.45 38.51 3.17 6.28 par:pas; +pointu pointu adj m s 4.38 21.62 2.17 9.19 +pointée pointer ver f s 25.45 38.51 0.97 1.89 par:pas; +pointue pointu adj f s 4.38 21.62 0.48 3.65 +pointées pointer ver f p 25.45 38.51 0.32 0.20 par:pas; +pointues pointu adj f p 4.38 21.62 0.78 3.72 +pointure pointure nom f s 3.27 1.49 2.67 1.01 +pointures pointure nom f p 3.27 1.49 0.60 0.47 +pointés pointer ver m p 25.45 38.51 0.40 0.88 par:pas; +pointus pointu adj m p 4.38 21.62 0.95 5.07 +poire_vérité poire_vérité nom f s 0.00 0.07 0.00 0.07 +poire poire nom f s 7.58 15.07 5.67 10.81 +poireau poireau nom m s 1.31 2.84 0.61 0.88 +poireautai poireauter ver 1.87 2.30 0.00 0.07 ind:pas:1s; +poireautaient poireauter ver 1.87 2.30 0.00 0.07 ind:imp:3p; +poireautais poireauter ver 1.87 2.30 0.02 0.20 ind:imp:1s; +poireautait poireauter ver 1.87 2.30 0.00 0.20 ind:imp:3s; +poireaute poireauter ver 1.87 2.30 0.58 0.20 ind:pre:1s;ind:pre:3s; +poireauter poireauter ver 1.87 2.30 1.18 1.28 inf; +poireautes poireauter ver 1.87 2.30 0.01 0.07 ind:pre:2s; +poireautions poireauter ver 1.87 2.30 0.00 0.07 ind:imp:1p; +poireauté poireauter ver m s 1.87 2.30 0.08 0.14 par:pas; +poireaux poireau nom m p 1.31 2.84 0.70 1.96 +poirer poirer ver 0.00 0.14 0.00 0.14 inf; +poires poire nom f p 7.58 15.07 1.91 4.26 +poirier poirier nom m s 0.56 3.65 0.42 2.57 +poiriers poirier nom m p 0.56 3.65 0.15 1.08 +poirota poiroter ver 0.02 0.27 0.00 0.14 ind:pas:3s; +poirotait poiroter ver 0.02 0.27 0.00 0.14 ind:imp:3s; +poiroter poiroter ver 0.02 0.27 0.02 0.00 inf; +poiré poiré nom m s 0.00 0.27 0.00 0.14 +poirée poiré nom f s 0.00 0.27 0.00 0.14 +pois pois nom m 8.09 13.72 8.09 13.72 +poiscaille poiscaille nom f s 0.23 0.81 0.21 0.41 +poiscailles poiscaille nom f p 0.23 0.81 0.03 0.41 +poison poison nom m s 19.76 12.23 18.59 9.86 +poisons poison nom m p 19.76 12.23 1.18 2.36 +poissaient poisser ver 0.33 2.64 0.00 0.27 ind:imp:3p; +poissait poisser ver 0.33 2.64 0.00 0.41 ind:imp:3s; +poissard poissard nom m s 0.00 0.14 0.00 0.07 +poissardes poissard nom f p 0.00 0.14 0.00 0.07 +poisse poisse nom f s 5.62 1.42 5.61 1.35 +poissent poisser ver 0.33 2.64 0.00 0.07 ind:pre:3p; +poisser poisser ver 0.33 2.64 0.11 0.61 inf; +poisses poisse nom f p 5.62 1.42 0.01 0.07 +poisseuse poisseux adj f s 0.72 8.99 0.12 3.11 +poisseuses poisseux adj f p 0.72 8.99 0.06 1.89 +poisseux poisseux adj m 0.72 8.99 0.54 3.99 +poisson_chat poisson_chat nom m s 0.64 0.54 0.54 0.34 +poisson_globe poisson_globe nom m s 0.02 0.00 0.02 0.00 +poisson_lune poisson_lune nom m s 0.15 0.07 0.15 0.07 +poisson_pilote poisson_pilote nom m s 0.00 0.07 0.00 0.07 +poisson_épée poisson_épée nom m s 0.09 0.00 0.09 0.00 +poisson poisson nom m s 81.51 54.46 53.61 30.14 +poissonnerie poissonnerie nom f s 0.22 0.47 0.22 0.47 +poissonneuse poissonneux adj f s 0.32 0.47 0.01 0.07 +poissonneuses poissonneux adj f p 0.32 0.47 0.10 0.07 +poissonneux poissonneux adj m 0.32 0.47 0.21 0.34 +poissonnier poissonnier nom m s 0.69 0.88 0.69 0.41 +poissonniers poissonnier nom m p 0.69 0.88 0.01 0.27 +poissonnière poissonnière nom f s 0.09 3.92 0.07 3.92 +poissonnières poissonnière nom f p 0.09 3.92 0.02 0.00 +poisson_chat poisson_chat nom m p 0.64 0.54 0.11 0.20 +poissons poisson nom m p 81.51 54.46 27.90 24.32 +poissé poisser ver m s 0.33 2.64 0.00 0.34 par:pas; +poissée poisser ver f s 0.33 2.64 0.00 0.20 par:pas; +poissées poisser ver f p 0.33 2.64 0.00 0.14 par:pas; +poissés poisser ver m p 0.33 2.64 0.00 0.07 par:pas; +poitevin poitevin adj m s 0.00 0.41 0.00 0.20 +poitevins poitevin adj m p 0.00 0.41 0.00 0.20 +poitrail poitrail nom m s 0.20 5.07 0.20 4.73 +poitrails poitrail nom m p 0.20 5.07 0.00 0.34 +poitrinaire poitrinaire adj s 0.02 1.08 0.02 0.88 +poitrinaires poitrinaire adj m p 0.02 1.08 0.00 0.20 +poitrinant poitriner ver 0.00 0.07 0.00 0.07 par:pre; +poitrine poitrine nom f s 26.45 104.46 25.31 99.59 +poitrines poitrine nom f p 26.45 104.46 1.14 4.86 +poitrinières poitrinière nom f p 0.00 0.14 0.00 0.14 +poivra poivrer ver 0.17 2.30 0.00 0.07 ind:pas:3s; +poivrade poivrade nom f s 0.14 0.68 0.14 0.27 +poivrades poivrade nom f p 0.14 0.68 0.00 0.41 +poivrais poivrer ver 0.17 2.30 0.01 0.07 ind:imp:1s; +poivrait poivrer ver 0.17 2.30 0.00 0.14 ind:imp:3s; +poivre poivre nom m s 3.80 6.89 3.79 6.69 +poivrent poivrer ver 0.17 2.30 0.00 0.14 ind:pre:3p; +poivrer poivrer ver 0.17 2.30 0.03 0.20 inf; +poivres poivre nom m p 3.80 6.89 0.01 0.20 +poivrez poivrer ver 0.17 2.30 0.01 0.07 imp:pre:2p;ind:pre:2p; +poivrier poivrier nom m s 0.08 0.88 0.08 0.34 +poivriers poivrier nom m p 0.08 0.88 0.00 0.54 +poivrière poivrière nom f s 0.08 0.34 0.05 0.07 +poivrières poivrière nom f p 0.08 0.34 0.03 0.27 +poivron poivron nom m s 2.35 1.15 0.51 0.27 +poivrons poivron nom m p 2.35 1.15 1.85 0.88 +poivrot poivrot nom m s 3.53 3.51 2.16 2.03 +poivrote poivrot nom f s 3.53 3.51 0.38 0.20 +poivrotes poivrot nom f p 3.53 3.51 0.00 0.20 +poivrots poivrot nom m p 3.53 3.51 0.99 1.08 +poivré poivrer ver m s 0.17 2.30 0.04 0.20 par:pas; +poivrée poivré adj f s 0.11 1.22 0.09 0.68 +poivrées poivré adj f p 0.11 1.22 0.00 0.14 +poivrés poivrer ver m p 0.17 2.30 0.01 0.20 par:pas; +poix poix nom f 0.14 1.22 0.14 1.22 +poker poker nom m s 10.76 3.92 10.62 3.78 +pokers poker nom m p 10.76 3.92 0.14 0.14 +polack polack nom s 1.48 0.00 1.37 0.00 +polacks polack nom p 1.48 0.00 0.11 0.00 +polaire polaire adj s 2.00 2.50 1.71 1.55 +polaires polaire adj p 2.00 2.50 0.28 0.95 +polak polak nom m s 0.17 0.41 0.12 0.34 +polaks polak nom m p 0.17 0.41 0.05 0.07 +polaque polaque nom m s 0.05 0.47 0.05 0.07 +polaques polaque nom m p 0.05 0.47 0.00 0.41 +polar polar nom m s 0.86 1.49 0.23 1.08 +polarde polard adj f s 0.01 0.27 0.01 0.07 +polardes polard adj f p 0.01 0.27 0.00 0.14 +polards polard adj m p 0.01 0.27 0.00 0.07 +polarisaient polariser ver 0.41 0.34 0.00 0.07 ind:imp:3p; +polarisait polariser ver 0.41 0.34 0.01 0.07 ind:imp:3s; +polarisant polariser ver 0.41 0.34 0.01 0.00 par:pre; +polarisants polarisant adj m p 0.01 0.07 0.00 0.07 +polarisation polarisation nom f s 0.06 0.00 0.06 0.00 +polarise polariser ver 0.41 0.34 0.01 0.00 imp:pre:2s; +polarisent polariser ver 0.41 0.34 0.01 0.00 ind:pre:3p; +polariser polariser ver 0.41 0.34 0.04 0.07 inf; +polarisé polariser ver m s 0.41 0.34 0.16 0.00 par:pas; +polarisée polariser ver f s 0.41 0.34 0.17 0.14 par:pas; +polarité polarité nom f s 0.54 0.00 0.54 0.00 +polaroïd polaroïd nom m s 0.74 0.95 0.47 0.88 +polaroïds polaroïd nom m p 0.74 0.95 0.28 0.07 +polaroid polaroid nom m s 0.39 0.00 0.39 0.00 +polars polar nom m p 0.86 1.49 0.63 0.41 +polder polder nom m s 0.00 0.20 0.00 0.07 +polders polder nom m p 0.00 0.20 0.00 0.14 +pâle pâle adj s 16.50 83.58 14.52 67.23 +pole pole nom m s 0.22 0.00 0.22 0.00 +pâlement pâlement adv 0.00 0.54 0.00 0.54 +polenta polenta nom f s 0.88 0.27 0.88 0.27 +pâles pâle adj p 16.50 83.58 1.98 16.35 +pâleur pâleur nom f s 1.38 10.41 1.38 10.00 +pâleurs pâleur nom f p 1.38 10.41 0.00 0.41 +pâli pâlir ver m s 1.19 15.14 0.31 2.50 par:pas; +poli polir ver m s 9.45 11.01 6.04 5.07 par:pas; +police_secours police_secours nom f s 0.16 0.47 0.16 0.47 +police police nom f s 276.21 83.72 274.31 81.69 +policeman policeman nom m s 0.04 0.41 0.03 0.34 +policemen policeman nom m p 0.04 0.41 0.01 0.07 +policer policer ver 1.27 0.61 0.04 0.00 inf; +polices police nom f p 276.21 83.72 1.90 2.03 +polichinelle polichinelle nom m s 0.50 2.09 0.49 1.76 +polichinelles polichinelle nom m p 0.50 2.09 0.01 0.34 +pâlichon pâlichon adj m s 0.06 0.81 0.06 0.47 +pâlichonne pâlichon adj f s 0.06 0.81 0.00 0.20 +pâlichons pâlichon adj m p 0.06 0.81 0.00 0.14 +policier policier nom m s 34.12 21.62 19.94 10.00 +policiers policier nom m p 34.12 21.62 14.02 11.62 +policière policier adj f s 9.29 6.82 2.31 1.76 +policières policier adj f p 9.29 6.82 0.58 1.01 +policlinique policlinique nom f s 0.10 0.00 0.10 0.00 +policé policer ver m s 1.27 0.61 0.01 0.07 par:pas; +policée policé adj f s 0.02 1.82 0.01 0.54 +policées policer ver f p 1.27 0.61 0.01 0.14 par:pas; +policés policé adj m p 0.02 1.82 0.01 0.27 +pâlie pâlir ver f s 1.19 15.14 0.10 0.68 par:pas; +polie polir ver f s 9.45 11.01 2.23 2.03 par:pas; +pâlies pâlir ver f p 1.19 15.14 0.00 0.54 par:pas; +polies poli adj f p 4.68 16.69 0.08 1.28 +poliment poliment adv 3.29 10.00 3.29 10.00 +polio polio nom f s 1.10 0.34 1.08 0.27 +poliomyélite poliomyélite nom f s 0.28 0.27 0.28 0.27 +poliomyélitique poliomyélitique adj m s 0.01 0.27 0.00 0.14 +poliomyélitiques poliomyélitique adj p 0.01 0.27 0.01 0.14 +poliorcétique poliorcétique adj m s 0.00 0.07 0.00 0.07 +polios polio nom f p 1.10 0.34 0.02 0.07 +pâlir pâlir ver 1.19 15.14 0.54 4.39 inf; +polir polir ver 9.45 11.01 0.38 1.42 inf; +pâlirait pâlir ver 1.19 15.14 0.00 0.07 cnd:pre:3s; +poliras polir ver 9.45 11.01 0.01 0.00 ind:fut:2s; +pâlirent pâlir ver 1.19 15.14 0.00 0.07 ind:pas:3p; +pâlis pâlir ver m p 1.19 15.14 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +polis poli adj m p 4.68 16.69 0.80 2.64 +polish polish nom m s 0.06 0.07 0.06 0.07 +polissage polissage nom m s 0.11 0.41 0.11 0.34 +polissages polissage nom m p 0.11 0.41 0.00 0.07 +pâlissaient pâlir ver 1.19 15.14 0.00 0.68 ind:imp:3p; +polissaient polir ver 9.45 11.01 0.00 0.07 ind:imp:3p; +polissais polir ver 9.45 11.01 0.01 0.07 ind:imp:1s; +pâlissait pâlir ver 1.19 15.14 0.00 1.22 ind:imp:3s; +polissait polir ver 9.45 11.01 0.02 0.14 ind:imp:3s; +pâlissant pâlissant adj m s 0.10 0.74 0.10 0.61 +polissant polir ver 9.45 11.01 0.04 0.34 par:pre; +pâlissante pâlissant adj f s 0.10 0.74 0.00 0.07 +pâlissantes pâlissant adj f p 0.10 0.74 0.00 0.07 +pâlissent pâlir ver 1.19 15.14 0.03 0.61 ind:pre:3p; +polissent polir ver 9.45 11.01 0.01 0.14 ind:pre:3p; +polisseur polisseur nom m s 0.01 0.14 0.01 0.00 +polisseurs polisseur nom m p 0.01 0.14 0.00 0.07 +polisseuse polisseur nom f s 0.01 0.14 0.00 0.07 +pâlissions pâlir ver 1.19 15.14 0.00 0.14 ind:imp:1p; +polissoir polissoir nom m s 0.02 0.07 0.02 0.07 +polisson polisson nom m s 1.12 0.47 0.83 0.27 +polissonnait polissonner ver 0.11 0.07 0.10 0.00 ind:imp:3s; +polissonne polisson adj f s 1.06 0.68 0.16 0.07 +polissonner polissonner ver 0.11 0.07 0.01 0.00 inf; +polissonnerie polissonnerie nom f s 0.00 0.20 0.00 0.14 +polissonneries polissonnerie nom f p 0.00 0.20 0.00 0.07 +polissonnes polisson adj f p 1.06 0.68 0.23 0.14 +polissons polisson nom m p 1.12 0.47 0.28 0.14 +polissure polissure nom f s 0.00 0.07 0.00 0.07 +pâlit pâlir ver 1.19 15.14 0.15 3.18 ind:pre:3s;ind:pas:3s; +polit polir ver 9.45 11.01 0.03 0.20 ind:pre:3s;ind:pas:3s; +politburo politburo nom m s 0.03 0.47 0.03 0.47 +politesse politesse nom f s 5.00 20.54 4.29 17.97 +politesses politesse nom f p 5.00 20.54 0.70 2.57 +politicard politicard nom m s 0.41 0.34 0.08 0.14 +politicards politicard nom m p 0.41 0.34 0.33 0.20 +politicien politicien nom m s 7.67 2.43 2.34 0.61 +politicienne politicien nom f s 7.67 2.43 0.10 0.00 +politiciennes politicien adj f p 0.83 0.68 0.12 0.14 +politiciens politicien nom m p 7.67 2.43 5.23 1.82 +politico_religieux politico_religieux adj f s 0.00 0.07 0.00 0.07 +politico politico adv 0.17 0.27 0.17 0.27 +politique_fiction politique_fiction nom f s 0.00 0.07 0.00 0.07 +politique politique nom s 38.38 70.34 34.84 65.88 +politiquement politiquement adv 2.73 2.77 2.73 2.77 +politiques politique adj p 38.09 70.81 13.20 26.42 +politisation politisation nom f s 0.01 0.00 0.01 0.00 +politiser politiser ver 0.29 0.34 0.07 0.00 inf; +politisé politiser ver m s 0.29 0.34 0.06 0.07 par:pas; +politisée politiser ver f s 0.29 0.34 0.14 0.07 par:pas; +politisés politiser ver m p 0.29 0.34 0.02 0.20 par:pas; +polka polka nom f s 1.98 7.64 1.90 7.50 +polkas polka nom f p 1.98 7.64 0.08 0.14 +pollen pollen nom m s 1.37 1.89 1.20 1.82 +pollens pollen nom m p 1.37 1.89 0.17 0.07 +pollinies pollinie nom f p 0.00 0.07 0.00 0.07 +pollinique pollinique adj f s 0.00 0.07 0.00 0.07 +pollinisateur pollinisateur adj m s 0.03 0.00 0.03 0.00 +pollinisation pollinisation nom f s 0.09 0.00 0.09 0.00 +polliniser polliniser ver 0.02 0.00 0.01 0.00 inf; +pollinisé polliniser ver m s 0.02 0.00 0.01 0.00 par:pas; +pollope pollope ono 0.00 0.07 0.00 0.07 +polluait polluer ver 3.38 2.09 0.12 0.07 ind:imp:3s; +polluant polluer ver 3.38 2.09 0.04 0.00 par:pre; +polluante polluant adj f s 0.21 0.14 0.02 0.00 +polluants polluant adj m p 0.21 0.14 0.16 0.07 +pollue polluer ver 3.38 2.09 0.45 0.07 ind:pre:1s;ind:pre:3s; +polluent polluer ver 3.38 2.09 0.22 0.14 ind:pre:3p; +polluer polluer ver 3.38 2.09 0.65 0.34 inf; +pollueront polluer ver 3.38 2.09 0.01 0.00 ind:fut:3p; +pollues polluer ver 3.38 2.09 0.12 0.07 ind:pre:2s; +pollueur pollueur nom m s 0.25 0.14 0.04 0.00 +pollueurs pollueur nom m p 0.25 0.14 0.18 0.14 +pollueuse pollueur nom f s 0.25 0.14 0.02 0.00 +polluez polluer ver 3.38 2.09 0.04 0.00 imp:pre:2p;ind:pre:2p; +pollution pollution nom f s 2.38 1.28 2.35 1.15 +pollutions pollution nom f p 2.38 1.28 0.04 0.14 +pollué polluer ver m s 3.38 2.09 0.57 0.68 par:pas; +polluée polluer ver f s 3.38 2.09 0.86 0.20 par:pas; +polluées polluer ver f p 3.38 2.09 0.17 0.47 par:pas; +pollués polluer ver m p 3.38 2.09 0.14 0.07 par:pas; +polo polo nom m s 1.51 2.03 1.46 1.96 +poloche poloche nom f s 0.00 0.34 0.00 0.34 +polochon polochon nom m s 0.19 0.81 0.06 0.41 +polochons polochon nom m p 0.19 0.81 0.12 0.41 +polonais polonais nom m 8.26 9.32 7.06 8.18 +polonaise polonais adj f s 8.41 14.73 1.87 4.39 +polonaises polonais adj f p 8.41 14.73 0.27 0.95 +polope polope ono 0.00 0.41 0.00 0.41 +polos polo nom m p 1.51 2.03 0.05 0.07 +pâlot pâlot adj m s 0.60 1.22 0.44 0.34 +pâlots pâlot adj m p 0.60 1.22 0.01 0.20 +pâlotte pâlot adj f s 0.60 1.22 0.15 0.61 +pâlottes pâlot adj f p 0.60 1.22 0.00 0.07 +polski polski nom m s 0.14 0.14 0.14 0.14 +poltron poltron nom m s 0.74 0.41 0.58 0.27 +poltronne poltron adj f s 0.32 0.34 0.03 0.07 +poltronnerie poltronnerie nom f s 0.55 0.00 0.55 0.00 +poltrons poltron nom m p 0.74 0.41 0.16 0.14 +polémique polémique nom f s 0.73 1.35 0.46 1.22 +polémiquer polémiquer ver 0.07 0.14 0.03 0.14 inf; +polémiques polémique nom f p 0.73 1.35 0.27 0.14 +polémiste polémiste nom s 0.14 0.47 0.14 0.41 +polémistes polémiste nom p 0.14 0.47 0.00 0.07 +poly_sexuel poly_sexuel adj f s 0.01 0.00 0.01 0.00 +poly poly nom m s 0.30 0.14 0.30 0.14 +polyacrylate polyacrylate nom m s 0.03 0.00 0.03 0.00 +polyamide polyamide nom m s 0.00 0.20 0.00 0.14 +polyamides polyamide nom m p 0.00 0.20 0.00 0.07 +polyandre polyandre adj f s 0.00 0.07 0.00 0.07 +polyarthrite polyarthrite nom f s 0.03 0.00 0.03 0.00 +polycarbonate polycarbonate nom m s 0.03 0.00 0.03 0.00 +polychlorure polychlorure nom m s 0.01 0.00 0.01 0.00 +polychrome polychrome adj s 0.00 1.08 0.00 0.74 +polychromes polychrome adj m p 0.00 1.08 0.00 0.34 +polychromie polychromie nom f s 0.00 0.27 0.00 0.27 +polychromé polychromé adj m s 0.00 0.27 0.00 0.14 +polychromées polychromé adj f p 0.00 0.27 0.00 0.14 +polyclinique polyclinique nom f s 0.23 0.14 0.23 0.14 +polycopiait polycopier ver 0.12 0.54 0.00 0.07 ind:imp:3s; +polycopie polycopie nom f s 0.01 0.07 0.01 0.07 +polycopier polycopier ver 0.12 0.54 0.01 0.34 inf; +polycopié polycopié nom m s 0.00 0.20 0.00 0.07 +polycopiée polycopier ver f s 0.12 0.54 0.00 0.14 par:pas; +polycopiés polycopier ver m p 0.12 0.54 0.11 0.00 par:pas; +polyculture polyculture nom f s 0.00 0.07 0.00 0.07 +polycéphale polycéphale adj m s 0.01 0.00 0.01 0.00 +polydactylie polydactylie nom f s 0.01 0.00 0.01 0.00 +polyester polyester nom m s 0.46 0.34 0.46 0.34 +polygame polygame adj s 0.15 0.00 0.15 0.00 +polygamie polygamie nom f s 0.49 0.27 0.49 0.27 +polyglotte polyglotte adj s 0.08 1.01 0.08 0.61 +polyglottes polyglotte nom p 0.03 0.14 0.01 0.00 +polygonal polygonal adj m s 0.01 0.20 0.01 0.00 +polygonales polygonal adj f p 0.01 0.20 0.00 0.14 +polygonaux polygonal adj m p 0.01 0.20 0.00 0.07 +polygone polygone nom m s 0.13 0.88 0.12 0.47 +polygones polygone nom m p 0.13 0.88 0.01 0.41 +polygraphe polygraphe nom s 0.37 0.14 0.34 0.07 +polygraphes polygraphe nom p 0.37 0.14 0.04 0.07 +polygénique polygénique adj f s 0.01 0.00 0.01 0.00 +polykystique polykystique adj m s 0.04 0.00 0.04 0.00 +polymorphe polymorphe adj s 0.06 0.07 0.05 0.07 +polymorphes polymorphe adj p 0.06 0.07 0.01 0.00 +polymorphie polymorphie nom f s 0.02 0.00 0.02 0.00 +polymorphismes polymorphisme nom m p 0.03 0.00 0.03 0.00 +polymère polymère nom m s 0.16 0.00 0.16 0.00 +polymérase polymérase nom f s 0.05 0.00 0.05 0.00 +polymérique polymérique adj m s 0.02 0.00 0.01 0.00 +polymériques polymérique adj m p 0.02 0.00 0.01 0.00 +polynésien polynésien adj m s 0.08 0.47 0.03 0.07 +polynésienne polynésienne adj f s 0.03 0.00 0.03 0.00 +polynésiennes polynésien adj f p 0.08 0.47 0.03 0.14 +polynésiens polynésien nom m p 0.04 0.07 0.02 0.00 +polype polype nom m s 0.32 0.74 0.23 0.54 +polypes polype nom m p 0.32 0.74 0.09 0.20 +polyphone polyphone adj s 0.00 0.07 0.00 0.07 +polyphonie polyphonie nom f s 0.02 0.14 0.02 0.14 +polyphonique polyphonique adj m s 0.23 0.14 0.23 0.14 +polypier polypier nom m s 0.00 0.14 0.00 0.07 +polypiers polypier nom m p 0.00 0.14 0.00 0.07 +polypropylène polypropylène nom m s 0.01 0.14 0.01 0.14 +polysaccharides polysaccharide nom m p 0.01 0.00 0.01 0.00 +polystyrène polystyrène nom m s 0.38 0.14 0.38 0.14 +polysyllabe polysyllabe adj s 0.01 0.00 0.01 0.00 +polysyllabique polysyllabique adj m s 0.01 0.07 0.01 0.07 +polytechnicien polytechnicien nom m s 0.25 1.35 0.14 0.81 +polytechnicienne polytechnicien nom f s 0.25 1.35 0.01 0.00 +polytechniciens polytechnicien nom m p 0.25 1.35 0.10 0.54 +polytechnique polytechnique nom f s 0.44 0.47 0.44 0.47 +polyèdre polyèdre nom m s 0.00 0.20 0.00 0.14 +polyèdres polyèdre nom m p 0.00 0.20 0.00 0.07 +polythène polythène nom m s 0.01 0.00 0.01 0.00 +polythéiste polythéiste adj s 0.01 0.00 0.01 0.00 +polytonal polytonal adj m s 0.00 0.07 0.00 0.07 +polytonalité polytonalité nom f s 0.00 0.07 0.00 0.07 +polyuréthane polyuréthane nom m s 0.05 0.00 0.05 0.00 +polyéthylène polyéthylène nom m s 0.13 0.14 0.13 0.14 +polyvalence polyvalence nom f s 0.01 0.14 0.01 0.14 +polyvalent polyvalent adj m s 0.15 0.14 0.02 0.14 +polyvalente polyvalent adj f s 0.15 0.14 0.12 0.00 +polyvalents polyvalent adj m p 0.15 0.14 0.01 0.00 +polyvinyle polyvinyle nom m s 0.01 0.07 0.01 0.07 +polyvinylique polyvinylique adj m s 0.03 0.00 0.03 0.00 +pom_pom_girl pom_pom_girl nom f s 2.06 0.00 0.95 0.00 +pom_pom_girl pom_pom_girl nom f p 2.06 0.00 1.11 0.00 +pâma pâmer ver 0.47 3.18 0.01 0.07 ind:pas:3s; +pâmaient pâmer ver 0.47 3.18 0.01 0.20 ind:imp:3p; +pâmait pâmer ver 0.47 3.18 0.02 0.27 ind:imp:3s; +pâmant pâmer ver 0.47 3.18 0.00 0.27 par:pre; +pâme pâmer ver 0.47 3.18 0.07 0.27 ind:pre:1s;ind:pre:3s; +pomelo pomelo nom m s 0.01 0.00 0.01 0.00 +pâment pâmer ver 0.47 3.18 0.04 0.00 ind:pre:3p; +pâmer pâmer ver 0.47 3.18 0.06 0.61 inf; +pâmerais pâmer ver 0.47 3.18 0.00 0.07 cnd:pre:1s; +pâmerait pâmer ver 0.47 3.18 0.01 0.00 cnd:pre:3s; +pomerols pomerol nom m p 0.00 0.07 0.00 0.07 +pâmeront pâmer ver 0.47 3.18 0.03 0.00 ind:fut:3p; +pâmez pâmer ver 0.47 3.18 0.10 0.07 imp:pre:2p;ind:pre:2p; +pommade pommade nom f s 2.35 3.04 2.21 2.16 +pommader pommader ver 0.02 0.54 0.00 0.41 inf; +pommades pommade nom f p 2.35 3.04 0.14 0.88 +pommadin pommadin nom m s 0.00 0.07 0.00 0.07 +pommadé pommadé adj m s 0.00 0.74 0.00 0.47 +pommadées pommadé adj f p 0.00 0.74 0.00 0.07 +pommadés pommadé adj m p 0.00 0.74 0.00 0.20 +pommaient pommer ver 0.38 1.96 0.00 0.07 ind:imp:3p; +pommard pommard nom m s 0.00 0.20 0.00 0.07 +pommards pommard nom m p 0.00 0.20 0.00 0.14 +pomme pomme nom f s 42.35 82.36 19.77 46.08 +pommeau pommeau nom m s 0.22 4.26 0.22 3.92 +pommeaux pommeau nom m p 0.22 4.26 0.00 0.34 +pommeler pommeler ver 0.00 0.27 0.00 0.07 inf; +pommelé pommelé adj m s 0.28 1.49 0.26 0.95 +pommelées pommelé adj f p 0.28 1.49 0.00 0.07 +pommelés pommelé adj m p 0.28 1.49 0.02 0.47 +pommer pommer ver 0.38 1.96 0.04 0.00 inf; +pommeraie pommeraie nom f s 0.01 0.14 0.01 0.14 +pommes pomme nom f p 42.35 82.36 22.57 36.28 +pommette pommette nom f s 0.90 16.35 0.21 2.70 +pommettes pommette nom f p 0.90 16.35 0.69 13.65 +pommier pommier nom m s 1.93 8.78 1.55 5.88 +pommiers pommier nom m p 1.93 8.78 0.38 2.91 +pommé pommer ver m s 0.38 1.96 0.04 0.07 par:pas; +pommée pommé adj f s 0.01 0.27 0.01 0.07 +pommées pommé adj f p 0.01 0.27 0.00 0.14 +pommés pommé adj m p 0.01 0.27 0.00 0.07 +pâmoison pâmoison nom f s 0.00 1.22 0.00 0.74 +pâmoisons pâmoison nom f p 0.00 1.22 0.00 0.47 +pompadour pompadour adj 0.03 0.00 0.03 0.00 +pompage pompage nom m s 0.35 0.14 0.35 0.14 +pompai pomper ver 5.24 4.59 0.00 0.07 ind:pas:1s; +pompaient pomper ver 5.24 4.59 0.01 0.14 ind:imp:3p; +pompais pomper ver 5.24 4.59 0.02 0.07 ind:imp:1s; +pompait pomper ver 5.24 4.59 0.15 0.61 ind:imp:3s; +pompant pomper ver 5.24 4.59 0.03 0.47 par:pre; +pompe pompe nom f s 22.92 35.14 10.51 18.45 +pompent pomper ver 5.24 4.59 0.24 0.34 ind:pre:3p; +pomper pomper ver 5.24 4.59 1.72 1.15 inf; +pompera pomper ver 5.24 4.59 0.02 0.07 ind:fut:3s; +pomperais pomper ver 5.24 4.59 0.02 0.00 cnd:pre:2s; +pomperait pomper ver 5.24 4.59 0.01 0.00 cnd:pre:3s; +pompes pompe nom f p 22.92 35.14 12.41 16.69 +pompette pompette adj s 1.21 0.41 1.21 0.41 +pompeur pompeur nom m s 0.04 0.27 0.04 0.27 +pompeuse pompeux adj f s 0.97 4.26 0.09 1.15 +pompeusement pompeusement adv 0.01 1.15 0.01 1.15 +pompeuses pompeux adj f p 0.97 4.26 0.04 0.61 +pompeux pompeux adj m 0.97 4.26 0.85 2.50 +pompez pomper ver 5.24 4.59 0.66 0.07 imp:pre:2p;ind:pre:2p; +pompidoliens pompidolien adj m p 0.00 0.07 0.00 0.07 +pompier pompier nom m s 13.01 10.07 2.67 1.01 +pompiers pompier nom m p 13.01 10.07 10.35 9.05 +pompions pomper ver 5.24 4.59 0.00 0.07 ind:imp:1p; +pompiste pompiste nom s 2.10 4.05 2.05 3.51 +pompistes pompiste nom p 2.10 4.05 0.05 0.54 +pompiérisme pompiérisme nom m s 0.00 0.07 0.00 0.07 +pompon pompon nom m s 1.56 3.92 1.22 1.35 +pomponna pomponner ver 0.94 1.69 0.00 0.07 ind:pas:3s; +pomponnaient pomponner ver 0.94 1.69 0.00 0.07 ind:imp:3p; +pomponnait pomponner ver 0.94 1.69 0.00 0.20 ind:imp:3s; +pomponnant pomponner ver 0.94 1.69 0.00 0.07 par:pre; +pomponne pomponner ver 0.94 1.69 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pomponnent pomponner ver 0.94 1.69 0.01 0.00 ind:pre:3p; +pomponner pomponner ver 0.94 1.69 0.32 0.14 inf; +pomponniez pomponner ver 0.94 1.69 0.00 0.07 ind:imp:2p; +pomponné pomponner ver m s 0.94 1.69 0.10 0.34 par:pas; +pomponnée pomponner ver f s 0.94 1.69 0.41 0.34 par:pas; +pomponnées pomponner ver f p 0.94 1.69 0.01 0.27 par:pas; +pomponnés pomponner ver m p 0.94 1.69 0.01 0.07 par:pas; +pompons pompon nom m p 1.56 3.92 0.34 2.57 +pompé pomper ver m s 5.24 4.59 0.40 0.54 par:pas; +pompée pomper ver f s 5.24 4.59 0.25 0.00 par:pas; +pompéien pompéien adj m s 0.17 0.54 0.01 0.20 +pompéienne pompéien adj f s 0.17 0.54 0.01 0.20 +pompéiennes pompéien adj f p 0.17 0.54 0.00 0.07 +pompéiens pompéien adj m p 0.17 0.54 0.15 0.07 +pompés pomper ver m p 5.24 4.59 0.01 0.07 par:pas; +pâmèrent pâmer ver 0.47 3.18 0.01 0.07 ind:pas:3p; +pâmé pâmer ver m s 0.47 3.18 0.10 0.41 par:pas; +pâmée pâmer ver f s 0.47 3.18 0.01 0.54 par:pas; +pâmées pâmer ver f p 0.47 3.18 0.01 0.20 par:pas; +pomélo pomélo nom m s 0.01 0.00 0.01 0.00 +poméranien poméranien adj m s 0.01 0.14 0.01 0.07 +poméranienne poméranien nom f s 0.00 0.47 0.00 0.07 +poméraniennes poméranien nom f p 0.00 0.47 0.00 0.34 +poméraniens poméranien nom m p 0.00 0.47 0.00 0.07 +pâmés pâmer ver m p 0.47 3.18 0.00 0.14 par:pas; +ponant ponant nom m s 0.04 0.34 0.04 0.34 +ponce poncer ver 0.42 2.43 0.18 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ponceau ponceau nom m s 0.00 0.41 0.00 0.34 +ponceaux ponceau nom m p 0.00 0.41 0.00 0.07 +poncer poncer ver 0.42 2.43 0.16 0.07 inf; +ponces poncer ver 0.42 2.43 0.00 0.27 sub:pre:2s; +ponceuse ponceur nom f s 0.31 0.41 0.31 0.41 +poncho poncho nom m s 1.04 0.20 1.00 0.20 +ponchos poncho nom m p 1.04 0.20 0.04 0.00 +poncif poncif nom m s 0.01 0.95 0.00 0.47 +poncifs poncif nom m p 0.01 0.95 0.01 0.47 +ponction ponction nom f s 1.72 1.08 1.68 0.74 +ponctionna ponctionner ver 0.02 0.27 0.00 0.07 ind:pas:3s; +ponctionnait ponctionner ver 0.02 0.27 0.00 0.07 ind:imp:3s; +ponctionne ponctionner ver 0.02 0.27 0.01 0.07 ind:pre:3s; +ponctionner ponctionner ver 0.02 0.27 0.01 0.07 inf; +ponctions ponction nom f p 1.72 1.08 0.04 0.34 +ponctua ponctuer ver 0.12 9.32 0.00 0.27 ind:pas:3s; +ponctuaient ponctuer ver 0.12 9.32 0.00 0.47 ind:imp:3p; +ponctuait ponctuer ver 0.12 9.32 0.01 1.69 ind:imp:3s; +ponctualité ponctualité nom f s 1.01 1.42 1.01 1.42 +ponctuant ponctuer ver 0.12 9.32 0.01 0.88 par:pre; +ponctuation ponctuation nom f s 0.30 1.55 0.30 1.35 +ponctuations ponctuation nom f p 0.30 1.55 0.00 0.20 +ponctue ponctuer ver 0.12 9.32 0.01 0.88 ind:pre:1s;ind:pre:3s; +ponctuel ponctuel adj m s 3.55 1.82 1.82 0.81 +ponctuelle ponctuel adj f s 3.55 1.82 1.13 0.27 +ponctuellement ponctuellement adv 0.26 1.01 0.26 1.01 +ponctuelles ponctuel adj f p 3.55 1.82 0.06 0.41 +ponctuels ponctuel adj m p 3.55 1.82 0.54 0.34 +ponctuent ponctuer ver 0.12 9.32 0.01 0.27 ind:pre:3p; +ponctuer ponctuer ver 0.12 9.32 0.02 0.61 inf; +ponctuèrent ponctuer ver 0.12 9.32 0.00 0.07 ind:pas:3p; +ponctué ponctuer ver m s 0.12 9.32 0.02 2.16 par:pas; +ponctuée ponctuer ver f s 0.12 9.32 0.00 1.08 par:pas; +ponctuées ponctuer ver f p 0.12 9.32 0.00 0.47 par:pas; +ponctués ponctuer ver m p 0.12 9.32 0.03 0.47 par:pas; +poncé poncer ver m s 0.42 2.43 0.07 0.20 par:pas; +poncée poncer ver f s 0.42 2.43 0.00 0.27 par:pas; +poncées poncer ver f p 0.42 2.43 0.00 0.14 par:pas; +poncés poncer ver m p 0.42 2.43 0.00 0.07 par:pas; +pond pondre ver 5.41 6.82 1.18 0.74 ind:pre:3s; +pondaient pondre ver 5.41 6.82 0.01 0.20 ind:imp:3p; +pondait pondre ver 5.41 6.82 0.15 0.41 ind:imp:3s; +pondant pondre ver 5.41 6.82 0.02 0.07 par:pre; +ponde pondre ver 5.41 6.82 0.10 0.00 sub:pre:1s;sub:pre:3s; +pondent pondre ver 5.41 6.82 0.55 0.34 ind:pre:3p; +pondes pondre ver 5.41 6.82 0.00 0.07 sub:pre:2s; +pondeur pondeur nom m s 0.08 0.20 0.00 0.07 +pondeuse pondeur nom f s 0.08 0.20 0.08 0.00 +pondeuses pondeuse nom f p 0.03 0.00 0.03 0.00 +pondez pondre ver 5.41 6.82 0.06 0.00 imp:pre:2p;ind:pre:2p; +pondiez pondre ver 5.41 6.82 0.00 0.07 ind:imp:2p; +pondoir pondoir nom m s 0.00 0.20 0.00 0.14 +pondoirs pondoir nom m p 0.00 0.20 0.00 0.07 +pondra pondre ver 5.41 6.82 0.04 0.07 ind:fut:3s; +pondrai pondre ver 5.41 6.82 0.16 0.07 ind:fut:1s; +pondraient pondre ver 5.41 6.82 0.01 0.14 cnd:pre:3p; +pondrais pondre ver 5.41 6.82 0.00 0.07 cnd:pre:2s; +pondras pondre ver 5.41 6.82 0.02 0.07 ind:fut:2s; +pondre pondre ver 5.41 6.82 1.64 1.69 inf; +pondront pondre ver 5.41 6.82 0.01 0.00 ind:fut:3p; +ponds pondre ver 5.41 6.82 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +pondu pondre ver m s 5.41 6.82 1.39 1.76 par:pas; +pondue pondre ver f s 5.41 6.82 0.01 0.27 par:pas; +pondérable pondérable adj f s 0.00 0.20 0.00 0.14 +pondérables pondérable adj p 0.00 0.20 0.00 0.07 +pondérale pondéral adj f s 0.05 0.00 0.05 0.00 +pondération pondération nom f s 0.12 0.47 0.12 0.47 +pondérer pondérer ver 0.04 0.14 0.01 0.00 inf; +pondéré pondéré adj m s 0.18 1.15 0.03 0.68 +pondérée pondéré adj f s 0.18 1.15 0.13 0.14 +pondérées pondéré adj f p 0.18 1.15 0.00 0.07 +pondérés pondéré adj m p 0.18 1.15 0.02 0.27 +pondus pondre ver m p 5.41 6.82 0.02 0.74 par:pas; +ponette ponette nom f s 0.00 0.47 0.00 0.27 +ponettes ponette nom f p 0.00 0.47 0.00 0.20 +poney poney nom m s 4.80 1.01 3.70 0.47 +poneys poney nom m p 4.80 1.01 1.10 0.54 +pongiste pongiste nom s 0.30 0.00 0.10 0.00 +pongistes pongiste nom p 0.30 0.00 0.20 0.00 +pongo pongo nom m s 1.72 0.00 1.72 0.00 +pongé pongé nom m s 0.00 0.20 0.00 0.20 +pont_l_évêque pont_l_évêque nom m s 0.00 0.07 0.00 0.07 +pont_levis pont_levis nom m 0.46 1.42 0.46 1.42 +pont_neuf pont_neuf nom m s 0.14 2.43 0.14 2.43 +pont_promenade pont_promenade nom m s 0.00 0.07 0.00 0.07 +pont pont nom m s 56.43 90.81 50.45 74.59 +pontage pontage nom m s 0.65 0.07 0.60 0.07 +pontages pontage nom m p 0.65 0.07 0.04 0.00 +ponte ponte nom s 2.35 2.30 1.46 1.62 +ponter ponter ver 0.52 0.20 0.21 0.00 inf; +pontes ponte nom p 2.35 2.30 0.89 0.68 +pontet pontet nom m s 0.01 0.20 0.01 0.14 +pontets pontet nom m p 0.01 0.20 0.00 0.07 +ponçage ponçage nom m s 0.01 0.14 0.01 0.14 +ponçait poncer ver 0.42 2.43 0.01 0.20 ind:imp:3s; +ponçant poncer ver 0.42 2.43 0.00 0.07 par:pre; +pontife pontife nom m s 0.26 1.28 0.23 0.88 +pontifes pontife nom m p 0.26 1.28 0.03 0.41 +pontifia pontifier ver 0.04 0.54 0.00 0.07 ind:pas:3s; +pontifiait pontifier ver 0.04 0.54 0.00 0.14 ind:imp:3s; +pontifiant pontifiant adj m s 0.04 0.41 0.02 0.27 +pontifiante pontifiant adj f s 0.04 0.41 0.02 0.07 +pontifiants pontifiant adj m p 0.04 0.41 0.00 0.07 +pontifical pontifical adj m s 0.30 1.35 0.16 0.47 +pontificale pontifical adj f s 0.30 1.35 0.14 0.47 +pontificales pontifical adj f p 0.30 1.35 0.00 0.27 +pontificat pontificat nom m s 0.01 0.14 0.01 0.14 +pontificaux pontifical adj m p 0.30 1.35 0.00 0.14 +pontifie pontifier ver 0.04 0.54 0.00 0.14 ind:pre:3s; +pontifier pontifier ver 0.04 0.54 0.04 0.07 inf; +pontifièrent pontifier ver 0.04 0.54 0.00 0.07 ind:pas:3p; +pontil pontil nom m s 0.00 0.07 0.00 0.07 +pontin pontin adj m s 0.11 0.20 0.10 0.07 +pontins pontin adj m p 0.11 0.20 0.01 0.14 +ponton ponton nom m s 1.01 3.99 0.98 2.16 +pontonnier pontonnier nom m s 0.00 0.81 0.00 0.14 +pontonniers pontonnier nom m p 0.00 0.81 0.00 0.68 +pontons ponton nom m p 1.01 3.99 0.03 1.82 +ponts_levis ponts_levis nom m p 0.00 0.27 0.00 0.27 +ponts pont nom m p 56.43 90.81 5.97 16.22 +ponté ponter ver m s 0.52 0.20 0.01 0.07 par:pas; +pool pool nom m s 1.19 0.20 1.19 0.20 +pop_club pop_club nom s 0.00 0.07 0.00 0.07 +pop_corn pop_corn nom m 3.79 0.14 3.79 0.14 +pop pop adj s 3.10 1.28 3.10 1.28 +popaul popaul nom m s 0.28 0.07 0.28 0.07 +pope pope nom m s 1.07 6.42 0.83 5.20 +popeline popeline nom f s 0.00 4.66 0.00 4.66 +popes pope nom m p 1.07 6.42 0.23 1.22 +popistes popiste adj f p 0.00 0.07 0.00 0.07 +poplité poplité adj m s 0.05 0.00 0.01 0.00 +poplitée poplité adj f s 0.05 0.00 0.04 0.00 +popote popote nom f s 0.40 2.57 0.39 2.09 +popotes popote nom f p 0.40 2.57 0.01 0.47 +popotin popotin nom m s 0.79 0.74 0.79 0.74 +populace populace nom f s 1.53 2.36 1.53 2.36 +populacier populacier adj m s 0.00 0.68 0.00 0.20 +populacière populacier adj f s 0.00 0.68 0.00 0.20 +populacières populacier adj f p 0.00 0.68 0.00 0.27 +populaire populaire adj s 19.34 31.28 16.23 23.45 +populairement populairement adv 0.14 0.07 0.14 0.07 +populaires populaire adj p 19.34 31.28 3.11 7.84 +populariser populariser ver 0.12 0.14 0.12 0.07 inf; +popularisé populariser ver m s 0.12 0.14 0.00 0.07 par:pas; +popularité popularité nom f s 2.03 1.82 2.03 1.76 +popularités popularité nom f p 2.03 1.82 0.00 0.07 +population population nom f s 15.68 33.65 14.86 23.58 +populations population nom f p 15.68 33.65 0.82 10.07 +populeuse populeux adj f s 0.02 1.15 0.01 0.27 +populeuses populeux adj f p 0.02 1.15 0.00 0.14 +populeux populeux adj m 0.02 1.15 0.01 0.74 +populisme populisme nom m s 0.02 0.14 0.02 0.07 +populismes populisme nom m p 0.02 0.14 0.00 0.07 +populiste populiste adj s 0.17 0.41 0.16 0.27 +populistes populiste adj m p 0.17 0.41 0.01 0.14 +populo populo nom m s 0.17 1.55 0.17 1.55 +poquait poquer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +pâque pâque nom f s 0.51 0.95 0.51 0.95 +poque poque nom f s 0.16 0.07 0.16 0.07 +pâquerette pâquerette nom f s 0.69 2.09 0.27 0.20 +pâquerettes pâquerette nom f p 0.69 2.09 0.43 1.89 +pâques pâques nom m s 0.26 1.01 0.26 1.01 +poquette poquette nom f s 0.00 0.07 0.00 0.07 +pâquis pâquis nom m 0.00 0.07 0.00 0.07 +porc_épic porc_épic nom m s 0.55 0.27 0.55 0.27 +porc porc nom m s 41.07 14.46 30.18 11.15 +porcelaine porcelaine nom f s 3.07 12.43 2.85 10.74 +porcelaines porcelaine nom f p 3.07 12.43 0.22 1.69 +porcelainiers porcelainier nom m p 0.00 0.07 0.00 0.07 +porcelet porcelet nom m s 0.57 0.54 0.44 0.27 +porcelets porcelet nom m p 0.57 0.54 0.13 0.27 +porche porche nom m s 3.10 17.03 2.95 15.34 +porcher porcher nom m s 1.47 0.00 1.46 0.00 +porcherie porcherie nom f s 2.76 1.22 2.73 1.22 +porcheries porcherie nom f p 2.76 1.22 0.03 0.00 +porches porche nom m p 3.10 17.03 0.14 1.69 +porchère porcher nom f s 1.47 0.00 0.01 0.00 +porchères porchère nom f p 0.01 0.00 0.01 0.00 +porcif porcif nom f s 0.00 0.34 0.00 0.14 +porcifs porcif nom f p 0.00 0.34 0.00 0.20 +porcin porcin adj m s 0.29 0.74 0.19 0.20 +porcine porcin adj f s 0.29 0.74 0.06 0.07 +porcins porcin nom m p 0.12 0.00 0.10 0.00 +porcs porc nom m p 41.07 14.46 10.89 3.31 +pore pore nom m s 1.54 3.51 0.57 0.47 +pores pore nom m p 1.54 3.51 0.97 3.04 +poreuse poreux adj f s 0.70 2.84 0.16 1.15 +poreuses poreux adj f p 0.70 2.84 0.04 0.14 +poreux poreux adj m 0.70 2.84 0.49 1.55 +porno porno nom m s 9.77 1.08 8.73 0.47 +pornocrate pornocrate nom s 0.00 0.14 0.00 0.07 +pornocrates pornocrate nom p 0.00 0.14 0.00 0.07 +pornographe pornographe nom s 0.19 0.47 0.17 0.47 +pornographes pornographe nom p 0.19 0.47 0.02 0.00 +pornographie pornographie nom f s 1.81 1.22 1.81 1.15 +pornographies pornographie nom f p 1.81 1.22 0.00 0.07 +pornographique pornographique adj s 1.39 1.82 0.56 0.68 +pornographiques pornographique adj p 1.39 1.82 0.83 1.15 +pornos porno adj p 7.20 2.03 2.07 0.95 +porosité porosité nom f s 0.04 0.34 0.04 0.34 +porphyre porphyre nom m s 0.10 1.49 0.10 1.35 +porphyres porphyre nom m p 0.10 1.49 0.00 0.14 +porphyrie porphyrie nom f s 0.12 0.00 0.12 0.00 +porque porque nom f s 0.32 0.00 0.32 0.00 +porridge porridge nom m s 1.13 0.74 1.13 0.74 +port_salut port_salut nom m 0.00 0.20 0.00 0.20 +port port nom m s 31.68 76.42 29.40 64.86 +porta porter ver 319.85 474.93 1.41 16.55 ind:pas:3s; +portabilité portabilité nom f s 0.01 0.00 0.01 0.00 +portable portable adj s 35.82 0.61 31.70 0.61 +portables portable adj p 35.82 0.61 4.12 0.00 +portage portage nom m s 0.08 0.74 0.08 0.74 +portager portager ver 0.00 0.07 0.00 0.07 inf; +portai porter ver 319.85 474.93 0.12 1.01 ind:pas:1s; +portaient porter ver 319.85 474.93 2.81 28.72 ind:imp:3p; +portail portail nom m s 8.61 22.97 7.97 21.82 +portails portail nom m p 8.61 22.97 0.64 1.15 +portais porter ver 319.85 474.93 7.96 9.19 ind:imp:1s;ind:imp:2s; +portait porter ver 319.85 474.93 25.75 113.85 ind:imp:3s; +portal portal adj m s 0.05 0.14 0.05 0.14 +portance portance nom f s 0.29 0.00 0.29 0.00 +portant portant adj m s 5.46 9.73 5.00 8.72 +portante portant adj f s 5.46 9.73 0.20 0.34 +portants portant adj m p 5.46 9.73 0.26 0.68 +portassent porter ver 319.85 474.93 0.00 0.07 sub:imp:3p; +portatif portatif adj m s 0.65 2.64 0.40 1.08 +portatifs portatif adj m p 0.65 2.64 0.10 0.41 +portative portatif adj f s 0.65 2.64 0.14 0.88 +portatives portatif adj f p 0.65 2.64 0.01 0.27 +porte_aiguille porte_aiguille nom m s 0.07 0.00 0.07 0.00 +porte_avion porte_avion nom m s 0.04 0.07 0.04 0.07 +porte_avions porte_avions nom m 1.21 1.22 1.21 1.22 +porte_bagages porte_bagages nom m 0.02 3.11 0.02 3.11 +porte_bannière porte_bannière nom m s 0.00 0.07 0.00 0.07 +porte_billets porte_billets nom m 0.00 0.14 0.00 0.14 +porte_bois porte_bois nom m 0.00 0.07 0.00 0.07 +porte_bonheur porte_bonheur nom m 4.58 1.08 4.58 1.08 +porte_bouteilles porte_bouteilles nom m 0.00 0.27 0.00 0.27 +porte_bébé porte_bébé nom m s 0.02 0.00 0.02 0.00 +porte_cannes porte_cannes nom m 0.00 0.07 0.00 0.07 +porte_carte porte_carte nom m s 0.00 0.07 0.00 0.07 +porte_cartes porte_cartes nom m 0.00 0.34 0.00 0.34 +porte_chance porte_chance nom m 0.17 0.07 0.17 0.07 +porte_chapeaux porte_chapeaux nom m 0.04 0.00 0.04 0.00 +porte_cigarette porte_cigarette nom m s 0.00 0.20 0.00 0.20 +porte_cigarettes porte_cigarettes nom m 0.65 0.74 0.65 0.74 +porte_clef porte_clef nom m s 0.02 0.14 0.02 0.14 +porte_clefs porte_clefs nom m 0.27 0.34 0.27 0.34 +porte_clé porte_clé nom m s 0.10 0.00 0.10 0.00 +porte_clés porte_clés nom m 1.44 0.54 1.44 0.54 +porte_conteneurs porte_conteneurs nom m 0.01 0.00 0.01 0.00 +porte_coton porte_coton nom m s 0.00 0.07 0.00 0.07 +porte_couilles porte_couilles nom m 0.00 0.07 0.00 0.07 +porte_couteau porte_couteau nom m s 0.00 0.07 0.00 0.07 +porte_couteaux porte_couteaux nom m p 0.00 0.07 0.00 0.07 +porte_cravate porte_cravate nom m s 0.00 0.07 0.00 0.07 +porte_crayon porte_crayon nom m s 0.01 0.00 0.01 0.00 +porte_document porte_document nom m s 0.01 0.00 0.01 0.00 +porte_documents porte_documents nom m 0.86 0.68 0.86 0.68 +porte_drapeau porte_drapeau nom m s 0.19 0.68 0.19 0.68 +porte_drapeaux porte_drapeaux nom m p 0.01 0.07 0.01 0.07 +porte_fanion porte_fanion nom m s 0.00 0.14 0.00 0.14 +porte_fenêtre porte_fenêtre nom f s 0.14 4.46 0.03 3.11 +porte_flingue porte_flingue nom m s 0.08 0.07 0.08 0.00 +porte_flingue porte_flingue nom m p 0.08 0.07 0.00 0.07 +porte_foret porte_foret nom m p 0.00 0.07 0.00 0.07 +porte_glaive porte_glaive nom m 0.10 1.01 0.10 1.01 +porte_jarretelles porte_jarretelles nom m 0.59 1.89 0.59 1.89 +porte_malheur porte_malheur nom m 0.19 0.07 0.19 0.07 +porte_mine porte_mine nom m s 0.00 0.14 0.00 0.14 +porte_monnaie porte_monnaie nom m 2.24 6.01 2.24 6.01 +porte_musique porte_musique nom m s 0.00 0.07 0.00 0.07 +porte_à_faux porte_à_faux nom m 0.00 0.61 0.00 0.61 +porte_à_porte porte_à_porte nom m 0.00 0.41 0.00 0.41 +porte_objet porte_objet nom m s 0.01 0.00 0.01 0.00 +porte_papier porte_papier nom m 0.01 0.07 0.01 0.07 +porte_parapluie porte_parapluie nom m s 0.00 0.07 0.00 0.07 +porte_parapluies porte_parapluies nom m 0.14 0.47 0.14 0.47 +porte_plume porte_plume nom m 0.29 3.78 0.29 3.72 +porte_plume porte_plume nom m p 0.29 3.78 0.00 0.07 +porte_queue porte_queue nom m 0.01 0.00 0.01 0.00 +porte_savon porte_savon nom m s 0.09 0.27 0.09 0.27 +porte_serviette porte_serviette nom m s 0.00 0.20 0.00 0.20 +porte_serviettes porte_serviettes nom m 0.12 0.20 0.12 0.20 +porte_tambour porte_tambour nom m 0.01 0.34 0.01 0.34 +porte_épée porte_épée nom m s 0.00 0.14 0.00 0.14 +porte_étendard porte_étendard nom m s 0.01 0.34 0.01 0.27 +porte_étendard porte_étendard nom m p 0.01 0.34 0.00 0.07 +porte_étrier porte_étrier nom m s 0.00 0.07 0.00 0.07 +porte_voix porte_voix nom m 0.55 2.64 0.55 2.64 +porte porte nom f s 333.85 617.43 288.39 536.96 +portefaix portefaix nom m 0.01 1.15 0.01 1.15 +portefeuille portefeuille nom m s 17.91 21.15 16.53 19.66 +portefeuilles portefeuille nom m p 17.91 21.15 1.38 1.49 +portemanteau portemanteau nom m s 0.36 4.05 0.30 2.97 +portemanteaux portemanteau nom m p 0.36 4.05 0.07 1.08 +portement portement nom m s 0.00 0.07 0.00 0.07 +portent porter ver 319.85 474.93 11.90 19.39 ind:pre:3p;sub:pre:3p; +porter porter ver 319.85 474.93 78.91 79.93 inf; +portera porter ver 319.85 474.93 7.54 3.11 ind:fut:3s; +porterai porter ver 319.85 474.93 5.49 1.62 ind:fut:1s; +porteraient porter ver 319.85 474.93 0.20 1.15 cnd:pre:3p; +porterais porter ver 319.85 474.93 1.14 0.81 cnd:pre:1s;cnd:pre:2s; +porterait porter ver 319.85 474.93 2.16 3.65 cnd:pre:3s; +porteras porter ver 319.85 474.93 2.10 0.47 ind:fut:2s; +porterez porter ver 319.85 474.93 1.53 0.54 ind:fut:2p; +porterie porterie nom f s 0.01 0.14 0.01 0.14 +porteriez porter ver 319.85 474.93 0.30 0.07 cnd:pre:2p; +porterons porter ver 319.85 474.93 0.46 0.27 ind:fut:1p; +porteront porter ver 319.85 474.93 1.73 0.74 ind:fut:3p; +porte_fenêtre porte_fenêtre nom f p 0.14 4.46 0.10 1.35 +portes porte nom f p 333.85 617.43 45.46 80.47 +porteur porteur nom m s 6.15 13.31 4.01 5.54 +porteurs porteur nom m p 6.15 13.31 1.89 6.49 +porteuse porteur adj f s 4.31 11.15 0.98 1.82 +porteuses porteur adj f p 4.31 11.15 0.44 0.88 +portez porter ver 319.85 474.93 16.22 2.84 imp:pre:2p;ind:pre:2p; +portfolio portfolio nom m s 0.68 0.00 0.68 0.00 +portier portier nom m s 7.39 45.00 3.07 6.89 +portiers portier nom m p 7.39 45.00 0.21 0.68 +portiez porter ver 319.85 474.93 2.56 1.15 ind:imp:2p; +portillon portillon nom m s 0.36 3.24 0.35 3.04 +portillons portillon nom m p 0.36 3.24 0.01 0.20 +portion portion nom f s 3.13 7.57 2.30 5.61 +portions portion nom f p 3.13 7.57 0.83 1.96 +portique portique nom m s 0.40 4.53 0.35 3.11 +portiques portique nom m p 0.40 4.53 0.04 1.42 +portière portier nom f s 7.39 45.00 4.12 29.19 +portières portière nom f p 0.84 0.00 0.84 0.00 +portland portland nom m s 0.05 0.07 0.05 0.07 +porto porto nom m s 2.30 5.00 2.27 4.46 +portâmes porter ver 319.85 474.93 0.00 0.14 ind:pas:1p; +portons porter ver 319.85 474.93 4.34 2.43 imp:pre:1p;ind:pre:1p; +portor portor nom m s 0.00 0.07 0.00 0.07 +portoricain portoricain adj m s 1.09 0.07 0.53 0.00 +portoricaine portoricain adj f s 1.09 0.07 0.48 0.00 +portoricaines portoricain adj f p 1.09 0.07 0.03 0.07 +portoricains portoricain nom m p 1.27 0.07 0.80 0.07 +portos porto nom m p 2.30 5.00 0.03 0.54 +portât porter ver 319.85 474.93 0.01 0.95 sub:imp:3s; +portraire portraire ver 0.36 1.01 0.00 0.07 inf; +portrait_robot portrait_robot nom m s 1.17 0.54 0.77 0.47 +portrait portrait nom m s 25.73 54.59 22.64 39.19 +portraitiste portraitiste nom s 0.28 0.47 0.26 0.27 +portraitistes portraitiste nom p 0.28 0.47 0.03 0.20 +portrait_robot portrait_robot nom m p 1.17 0.54 0.40 0.07 +portraits portrait nom m p 25.73 54.59 3.09 15.41 +portraiturant portraiturer ver 0.00 0.54 0.00 0.07 par:pre; +portraiture portraiturer ver 0.00 0.54 0.00 0.14 ind:pre:3s; +portraiturer portraiturer ver 0.00 0.54 0.00 0.20 inf; +portraituré portraiturer ver m s 0.00 0.54 0.00 0.07 par:pas; +portraiturés portraiturer ver m p 0.00 0.54 0.00 0.07 par:pas; +ports port nom m p 31.68 76.42 2.28 11.55 +portèrent porter ver 319.85 474.93 0.29 2.50 ind:pas:3p; +porté porter ver m s 319.85 474.93 20.56 38.65 par:pas;par:pas;par:pas; +portuaire portuaire adj f s 0.56 0.81 0.29 0.54 +portuaires portuaire adj f p 0.56 0.81 0.26 0.27 +portée portée nom f s 13.38 33.85 13.05 33.18 +portées porter ver f p 319.85 474.93 1.00 3.38 par:pas; +portugais portugais nom m 7.89 3.45 7.58 2.70 +portugaise portugais adj f s 3.88 3.51 0.55 1.49 +portugaises portugais adj f p 3.88 3.51 0.30 0.41 +portulan portulan nom m s 0.00 0.61 0.00 0.34 +portulans portulan nom m p 0.00 0.61 0.00 0.27 +portés porter ver m p 319.85 474.93 2.70 7.64 par:pas; +portus portus nom m 0.00 0.07 0.00 0.07 +posa poser ver 217.20 409.05 1.77 65.68 ind:pas:3s; +posada posada nom f s 0.12 0.81 0.12 0.74 +posadas posada nom f p 0.12 0.81 0.00 0.07 +posai poser ver 217.20 409.05 0.03 5.20 ind:pas:1s; +posaient poser ver 217.20 409.05 0.73 7.30 ind:imp:3p; +posais poser ver 217.20 409.05 1.77 5.41 ind:imp:1s;ind:imp:2s; +posait poser ver 217.20 409.05 3.38 32.43 ind:imp:3s; +posant poser ver 217.20 409.05 1.47 16.28 par:pre; +posas poser ver 217.20 409.05 0.00 0.07 ind:pas:2s; +pose_la_moi pose_la_moi nom f s 0.01 0.00 0.01 0.00 +pose poser ver 217.20 409.05 57.41 48.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +posemètre posemètre nom m s 0.02 0.00 0.02 0.00 +posent poser ver 217.20 409.05 3.54 7.50 ind:pre:3p; +poser poser ver 217.20 409.05 73.73 73.85 inf;;inf;;inf;;inf;; +posera poser ver 217.20 409.05 3.04 1.08 ind:fut:3s; +poserai poser ver 217.20 409.05 1.73 0.74 ind:fut:1s; +poseraient poser ver 217.20 409.05 0.06 0.34 cnd:pre:3p; +poserais poser ver 217.20 409.05 0.40 0.14 cnd:pre:1s;cnd:pre:2s; +poserait poser ver 217.20 409.05 0.74 1.76 cnd:pre:3s; +poseras poser ver 217.20 409.05 0.41 0.07 ind:fut:2s; +poserez poser ver 217.20 409.05 0.35 0.07 ind:fut:2p; +poseriez poser ver 217.20 409.05 0.24 0.00 cnd:pre:2p; +poserions poser ver 217.20 409.05 0.01 0.00 cnd:pre:1p; +poserons poser ver 217.20 409.05 0.43 0.07 ind:fut:1p; +poseront poser ver 217.20 409.05 1.02 0.95 ind:fut:3p; +poses poser ver 217.20 409.05 6.12 0.95 ind:pre:2s;sub:pre:2s; +poseur poseur nom m s 0.96 0.95 0.67 0.74 +poseurs poseur nom m p 0.96 0.95 0.23 0.20 +poseuse poseur nom f s 0.96 0.95 0.07 0.00 +posez poser ver 217.20 409.05 23.70 2.77 imp:pre:2p;ind:pre:2p; +posiez poser ver 217.20 409.05 0.47 0.27 ind:imp:2p; +posions poser ver 217.20 409.05 0.06 0.14 ind:imp:1p; +positif positif adj m s 17.27 7.70 9.69 3.99 +positifs positif adj m p 17.27 7.70 1.69 0.54 +position_clé position_clé nom f s 0.01 0.00 0.01 0.00 +position position nom f s 61.74 63.38 55.24 53.85 +positionne positionner ver 1.11 0.14 0.22 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +positionnel positionnel adj m s 0.01 0.00 0.01 0.00 +positionnement positionnement nom m s 0.23 0.07 0.23 0.07 +positionnent positionner ver 1.11 0.14 0.03 0.00 ind:pre:3p; +positionner positionner ver 1.11 0.14 0.57 0.07 inf; +positionnera positionner ver 1.11 0.14 0.02 0.00 ind:fut:3s; +positionneur positionneur nom m s 0.01 0.00 0.01 0.00 +positionné positionner ver m s 1.11 0.14 0.16 0.07 par:pas; +positionnée positionner ver f s 1.11 0.14 0.11 0.00 par:pas; +positions position nom f p 61.74 63.38 6.49 9.53 +positive positif adj f s 17.27 7.70 4.63 2.57 +positivement positivement adv 1.58 3.11 1.58 3.11 +positiver positiver ver 0.23 0.00 0.23 0.00 inf; +positives positif adj f p 17.27 7.70 1.25 0.61 +positivisme positivisme nom m s 0.04 0.14 0.04 0.14 +positiviste positiviste adj s 0.20 0.20 0.20 0.14 +positivistes positiviste adj m p 0.20 0.20 0.00 0.07 +positivité positivité nom f s 0.17 0.07 0.17 0.07 +positon positon nom m s 0.01 0.00 0.01 0.00 +positron positron nom m s 0.04 0.14 0.01 0.07 +positrons positron nom m p 0.04 0.14 0.02 0.07 +posologie posologie nom f s 0.26 0.34 0.15 0.27 +posologies posologie nom f p 0.26 0.34 0.11 0.07 +posâmes poser ver 217.20 409.05 0.00 0.27 ind:pas:1p; +posons poser ver 217.20 409.05 1.38 0.34 imp:pre:1p;ind:pre:1p; +posât poser ver 217.20 409.05 0.00 0.81 sub:imp:3s; +possesseur possesseur nom m s 0.53 3.78 0.50 2.57 +possesseurs possesseur nom m p 0.53 3.78 0.04 1.22 +possessif possessif adj m s 1.04 1.76 0.41 0.81 +possessifs possessif adj m p 1.04 1.76 0.09 0.07 +possession possession nom f s 12.76 27.64 11.56 24.19 +possessions possession nom f p 12.76 27.64 1.20 3.45 +possessive possessif adj f s 1.04 1.76 0.53 0.81 +possessives possessif adj f p 1.04 1.76 0.02 0.07 +possessivité possessivité nom f s 0.03 0.20 0.03 0.20 +possibilité possibilité nom f s 25.87 30.54 16.79 19.46 +possibilités possibilité nom f p 25.87 30.54 9.08 11.08 +possible possible adj s 201.41 211.96 193.91 197.16 +possiblement possiblement adv 0.21 0.20 0.21 0.20 +possibles possible adj p 201.41 211.96 7.50 14.80 +possède posséder ver 42.76 82.23 17.80 20.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +possèdent posséder ver 42.76 82.23 3.27 4.59 ind:pre:3p; +possèdes posséder ver 42.76 82.23 1.44 0.47 ind:pre:2s; +posséda posséder ver 42.76 82.23 0.12 0.61 ind:pas:3s; +possédaient posséder ver 42.76 82.23 0.38 5.14 ind:imp:3p; +possédais posséder ver 42.76 82.23 0.72 3.11 ind:imp:1s;ind:imp:2s; +possédait posséder ver 42.76 82.23 2.84 21.42 ind:imp:3s; +possédant posséder ver 42.76 82.23 0.59 1.55 par:pre; +possédante possédant adj f s 0.27 0.34 0.21 0.20 +possédants possédant nom m p 0.09 0.68 0.01 0.34 +possédasse posséder ver 42.76 82.23 0.00 0.07 sub:imp:1s; +posséder posséder ver 42.76 82.23 6.36 13.24 inf; +possédera posséder ver 42.76 82.23 0.39 0.27 ind:fut:3s; +posséderai posséder ver 42.76 82.23 0.27 0.20 ind:fut:1s; +posséderaient posséder ver 42.76 82.23 0.04 0.07 cnd:pre:3p; +posséderais posséder ver 42.76 82.23 0.00 0.07 cnd:pre:1s; +posséderait posséder ver 42.76 82.23 0.05 0.27 cnd:pre:3s; +posséderas posséder ver 42.76 82.23 0.01 0.07 ind:fut:2s; +posséderez posséder ver 42.76 82.23 0.05 0.00 ind:fut:2p; +posséderont posséder ver 42.76 82.23 0.20 0.07 ind:fut:3p; +possédez posséder ver 42.76 82.23 2.18 0.81 imp:pre:2p;ind:pre:2p; +possédiez posséder ver 42.76 82.23 0.29 0.07 ind:imp:2p; +possédions posséder ver 42.76 82.23 0.13 0.81 ind:imp:1p; +possédons posséder ver 42.76 82.23 1.09 1.01 imp:pre:1p;ind:pre:1p; +possédât posséder ver 42.76 82.23 0.01 0.74 sub:imp:3s; +possédé posséder ver m s 42.76 82.23 2.67 4.93 par:pas; +possédée posséder ver f s 42.76 82.23 1.44 1.55 par:pas; +possédées posséder ver f p 42.76 82.23 0.14 0.14 par:pas; +possédés posséder ver m p 42.76 82.23 0.29 0.95 par:pas; +post_apocalyptique post_apocalyptique adj s 0.04 0.00 0.04 0.00 +post_empire post_empire nom m s 0.00 0.07 0.00 0.07 +post_hypnotique post_hypnotique adj f s 0.02 0.00 0.02 0.00 +post_impressionnisme post_impressionnisme nom m s 0.01 0.00 0.01 0.00 +post_it post_it nom m 1.85 0.00 1.84 0.00 +post_moderne post_moderne adj s 0.14 0.00 0.14 0.00 +post_natal post_natal adj m s 0.18 0.07 0.03 0.07 +post_natal post_natal adj f s 0.18 0.07 0.16 0.00 +post_opératoire post_opératoire adj s 0.19 0.00 0.17 0.00 +post_opératoire post_opératoire adj m p 0.19 0.00 0.02 0.00 +post_partum post_partum nom m 0.04 0.00 0.04 0.00 +post_production post_production nom f s 0.14 0.00 0.14 0.00 +post_punk post_punk nom s 0.00 0.14 0.00 0.14 +post_romantique post_romantique adj m s 0.00 0.07 0.00 0.07 +post_rupture post_rupture nom f s 0.01 0.00 0.01 0.00 +post_scriptum post_scriptum nom m 0.29 1.96 0.29 1.96 +post_surréaliste post_surréaliste adj p 0.00 0.07 0.00 0.07 +post_synchro post_synchro adj s 0.05 0.00 0.05 0.00 +post_traumatique post_traumatique adj s 0.82 0.07 0.79 0.00 +post_traumatique post_traumatique adj p 0.82 0.07 0.03 0.07 +post_victorien post_victorien adj m s 0.01 0.00 0.01 0.00 +post_zoo post_zoo nom m s 0.01 0.00 0.01 0.00 +post_it post_it nom m 1.85 0.00 0.01 0.00 +post_mortem post_mortem adv 0.28 0.20 0.28 0.20 +post post adv 0.69 0.41 0.69 0.41 +posta poster ver 9.54 10.47 0.07 0.95 ind:pas:3s; +postage postage nom m s 0.01 0.00 0.01 0.00 +postai poster ver 9.54 10.47 0.01 0.14 ind:pas:1s; +postaient poster ver 9.54 10.47 0.00 0.07 ind:imp:3p; +postais poster ver 9.54 10.47 0.02 0.14 ind:imp:1s; +postait poster ver 9.54 10.47 0.01 0.20 ind:imp:3s; +postal postal adj m s 9.04 16.76 1.69 1.35 +postale postal adj f s 9.04 16.76 5.18 6.89 +postales postal adj f p 9.04 16.76 1.94 8.11 +postant poster ver 9.54 10.47 0.05 0.14 par:pre; +postaux postal adj m p 9.04 16.76 0.22 0.41 +postcombustion postcombustion nom f s 0.12 0.00 0.12 0.00 +postcure postcure nom f s 0.04 0.27 0.04 0.27 +postdater postdater ver 0.04 0.00 0.01 0.00 inf; +postdaté postdater ver m s 0.04 0.00 0.02 0.00 par:pas; +postdoctoral postdoctoral adj m s 0.01 0.00 0.01 0.00 +poste_clé poste_clé nom s 0.02 0.00 0.02 0.00 +poste poste nom s 82.87 90.68 72.64 73.58 +postent poster ver 9.54 10.47 0.15 0.07 ind:pre:3p; +poster poster ver 9.54 10.47 2.51 2.16 inf; +postera poster ver 9.54 10.47 0.09 0.00 ind:fut:3s; +posterai poster ver 9.54 10.47 0.40 0.27 ind:fut:1s; +posterait poster ver 9.54 10.47 0.01 0.07 cnd:pre:3s; +posteras poster ver 9.54 10.47 0.02 0.07 ind:fut:2s; +posterons poster ver 9.54 10.47 0.12 0.07 ind:fut:1p; +posters poster nom m p 2.41 2.03 0.81 1.01 +postes_clé postes_clé nom p 0.01 0.00 0.01 0.00 +postes poste nom p 82.87 90.68 10.23 17.09 +postez poster ver 9.54 10.47 0.80 0.00 imp:pre:2p;ind:pre:2p; +postface postface nom f s 0.00 0.27 0.00 0.20 +postfaces postface nom f p 0.00 0.27 0.00 0.07 +posèrent poser ver 217.20 409.05 0.02 2.91 ind:pas:3p; +posthume posthume adj s 0.83 4.32 0.81 3.78 +posthumes posthume adj p 0.83 4.32 0.02 0.54 +postiche postiche nom m s 0.48 0.74 0.33 0.34 +postiches postiche adj p 0.44 1.28 0.17 0.61 +postier postier nom m s 0.66 2.03 0.58 0.54 +postiers postier nom m p 0.66 2.03 0.04 1.08 +postillon postillon nom m s 0.22 1.42 0.03 0.68 +postillonna postillonner ver 0.20 2.30 0.00 0.14 ind:pas:3s; +postillonnait postillonner ver 0.20 2.30 0.00 0.34 ind:imp:3s; +postillonnant postillonner ver 0.20 2.30 0.01 0.88 par:pre; +postillonne postillonner ver 0.20 2.30 0.05 0.47 ind:pre:1s;ind:pre:3s; +postillonnent postillonner ver 0.20 2.30 0.02 0.07 ind:pre:3p; +postillonner postillonner ver 0.20 2.30 0.00 0.34 inf; +postillonnes postillonner ver 0.20 2.30 0.04 0.00 ind:pre:2s; +postillonneur postillonneur nom m s 0.01 0.14 0.01 0.00 +postillonneurs postillonneur nom m p 0.01 0.14 0.00 0.14 +postillonnez postillonner ver 0.20 2.30 0.03 0.00 ind:pre:2p; +postillonné postillonner ver m s 0.20 2.30 0.04 0.07 par:pas; +postillons postillon nom m p 0.22 1.42 0.19 0.74 +postière postier nom f s 0.66 2.03 0.04 0.41 +postmoderne postmoderne adj s 0.08 0.07 0.08 0.07 +postmodernisme postmodernisme nom m s 0.01 0.07 0.01 0.07 +postmoderniste postmoderniste adj s 0.01 0.00 0.01 0.00 +postnatal postnatal adj m s 0.02 0.00 0.01 0.00 +postnatale postnatal adj f s 0.02 0.00 0.01 0.00 +postopératoire postopératoire adj s 0.18 0.07 0.13 0.00 +postopératoires postopératoire adj m p 0.18 0.07 0.05 0.07 +postproduction postproduction nom f s 0.02 0.00 0.02 0.00 +postsynchronisation postsynchronisation nom f s 0.00 0.07 0.00 0.07 +posté poster ver m s 9.54 10.47 1.94 2.23 par:pas; +postée poster ver f s 9.54 10.47 0.68 0.74 par:pas; +postées poster ver f p 9.54 10.47 0.14 0.54 par:pas; +postulai postuler ver 2.44 1.49 0.00 0.07 ind:pas:1s; +postulaient postuler ver 2.44 1.49 0.00 0.07 ind:imp:3p; +postulait postuler ver 2.44 1.49 0.07 0.20 ind:imp:3s; +postulant postulant nom m s 0.78 1.28 0.05 0.27 +postulante postulant nom f s 0.78 1.28 0.01 0.14 +postulantes postulant nom f p 0.78 1.28 0.04 0.27 +postulants postulant nom m p 0.78 1.28 0.68 0.61 +postulat postulat nom m s 0.17 0.95 0.14 0.61 +postulations postulation nom f p 0.00 0.07 0.00 0.07 +postulats postulat nom m p 0.17 0.95 0.03 0.34 +postule postuler ver 2.44 1.49 0.36 0.14 ind:pre:1s;ind:pre:3s; +postulent postuler ver 2.44 1.49 0.19 0.07 ind:pre:3p; +postuler postuler ver 2.44 1.49 0.88 0.54 inf; +postuleras postuler ver 2.44 1.49 0.01 0.00 ind:fut:2s; +postules postuler ver 2.44 1.49 0.04 0.00 ind:pre:2s; +postulé postuler ver m s 2.44 1.49 0.87 0.20 par:pas; +posturaux postural adj m p 0.01 0.00 0.01 0.00 +posture posture nom f s 1.30 9.46 1.26 7.84 +postures posture nom f p 1.30 9.46 0.04 1.62 +postérieur postérieur nom m s 0.90 1.35 0.73 1.01 +postérieure postérieur adj f s 0.68 1.76 0.37 0.74 +postérieurement postérieurement adv 0.03 0.27 0.03 0.27 +postérieures postérieur adj f p 0.68 1.76 0.06 0.27 +postérieurs postérieur nom m p 0.90 1.35 0.16 0.34 +postérité postérité nom f s 1.54 2.30 1.54 2.23 +postérités postérité nom f p 1.54 2.30 0.00 0.07 +postés poster ver m p 9.54 10.47 0.70 0.95 par:pas; +posé poser ver m s 217.20 409.05 28.09 69.26 par:pas; +posée poser ver f s 217.20 409.05 2.67 34.80 par:pas; +posées poser ver f p 217.20 409.05 1.13 14.39 par:pas; +posément posément adv 0.10 8.38 0.10 8.38 +posés poser ver m p 217.20 409.05 1.33 14.39 par:pas; +pot_au_feu pot_au_feu nom m 0.90 0.88 0.90 0.88 +pot_bouille pot_bouille nom m 0.01 0.00 0.01 0.00 +pot_de_vin pot_de_vin nom m s 1.22 0.41 1.22 0.41 +pot_pourri pot_pourri nom m s 0.49 0.68 0.34 0.68 +pât pâte nom m s 16.48 24.73 0.10 0.07 +pot pot nom m s 29.89 48.04 25.72 32.30 +pâtît pâtir ver 1.41 2.64 0.00 0.07 sub:imp:3s; +potable potable adj s 2.26 1.28 2.15 1.08 +potables potable adj p 2.26 1.28 0.11 0.20 +potache potache nom m s 0.09 0.54 0.08 0.47 +potaches potache nom m p 0.09 0.54 0.01 0.07 +potage potage nom m s 3.28 6.22 3.07 6.01 +potager potager nom m s 2.21 3.24 1.93 3.04 +potagers potager nom m p 2.21 3.24 0.29 0.20 +potages potage nom m p 3.28 6.22 0.21 0.20 +potagère potager adj f s 0.41 1.35 0.00 0.07 +potagères potager adj f p 0.41 1.35 0.14 0.14 +potard potard nom m s 0.00 0.68 0.00 0.68 +potassa potasser ver 0.83 0.81 0.00 0.07 ind:pas:3s; +potassait potasser ver 0.83 0.81 0.02 0.14 ind:imp:3s; +potasse potasse nom f s 0.21 0.27 0.21 0.27 +potassent potasser ver 0.83 0.81 0.00 0.07 ind:pre:3p; +potasser potasser ver 0.83 0.81 0.17 0.14 inf; +potasserai potasser ver 0.83 0.81 0.00 0.07 ind:fut:1s; +potasses potasser ver 0.83 0.81 0.11 0.00 ind:pre:2s; +potassez potasser ver 0.83 0.81 0.01 0.07 imp:pre:2p; +potassium potassium nom m s 1.68 0.47 1.68 0.47 +potassé potasser ver m s 0.83 0.81 0.37 0.14 par:pas; +pâte pâte nom f s 16.48 24.73 7.04 18.45 +pote pote nom m s 84.92 36.35 65.03 22.97 +poteau poteau nom m s 5.17 13.04 3.88 7.70 +poteaux poteau nom m p 5.17 13.04 1.28 5.34 +potelé potelé adj m s 0.79 3.38 0.33 0.54 +potelée potelé adj f s 0.79 3.38 0.38 1.22 +potelées potelé adj f p 0.79 3.38 0.06 1.15 +potelés potelé adj m p 0.79 3.38 0.02 0.47 +potence potence nom f s 3.40 2.03 3.04 1.35 +potences potence nom f p 3.40 2.03 0.35 0.68 +potencée potencé adj f s 0.00 0.07 0.00 0.07 +potentat potentat nom m s 0.12 0.41 0.10 0.34 +potentats potentat nom m p 0.12 0.41 0.02 0.07 +potentialisation potentialisation nom f s 0.01 0.00 0.01 0.00 +potentialiser potentialiser ver 0.01 0.00 0.01 0.00 inf; +potentialité potentialité nom f s 0.38 0.07 0.38 0.07 +potentiel potentiel nom m s 6.04 1.01 5.94 0.95 +potentielle potentiel adj f s 5.69 0.95 0.88 0.20 +potentiellement potentiellement adv 1.12 0.14 1.12 0.14 +potentielles potentiel adj f p 5.69 0.95 0.54 0.07 +potentiels potentiel adj m p 5.69 0.95 1.96 0.41 +potentiomètre potentiomètre nom m s 0.14 0.20 0.14 0.20 +poter poter ver 0.02 0.00 0.02 0.00 inf; +poterie poterie nom f s 0.95 4.32 0.78 1.89 +poteries poterie nom f p 0.95 4.32 0.17 2.43 +poterne poterne nom f s 0.02 2.03 0.02 1.76 +poternes poterne nom f p 0.02 2.03 0.00 0.27 +pâtes pâte nom f p 16.48 24.73 9.35 6.22 +potes pote nom m p 84.92 36.35 19.89 13.38 +pâteuse pâteux adj f s 0.08 5.07 0.06 2.84 +pâteusement pâteusement adv 0.00 0.20 0.00 0.20 +pâteuses pâteux adj f p 0.08 5.07 0.00 0.27 +pâteux pâteux adj m 0.08 5.07 0.02 1.96 +poème poème nom m s 27.03 31.22 15.98 15.95 +poèmes poème nom m p 27.03 31.22 11.05 15.27 +poète poète nom m s 22.63 35.95 16.98 23.45 +poètes poète nom m p 22.63 35.95 5.17 11.55 +pâti pâtir ver m s 1.41 2.64 0.18 0.61 par:pas; +potiche potiche nom f s 0.64 1.15 0.55 0.61 +potiches potiche nom f p 0.64 1.15 0.09 0.54 +potier potier nom m s 0.47 0.68 0.26 0.61 +potiers potier nom m p 0.47 0.68 0.20 0.07 +potimarron potimarron nom m s 0.01 0.00 0.01 0.00 +potin potin nom m s 2.02 3.85 0.61 1.55 +potinais potiner ver 0.01 0.81 0.00 0.07 ind:imp:1s; +potine potiner ver 0.01 0.81 0.01 0.20 ind:pre:3s; +potines potiner ver 0.01 0.81 0.00 0.54 ind:pre:2s; +potins potin nom m p 2.02 3.85 1.41 2.30 +potion potion nom f s 11.59 2.97 10.01 2.30 +potions potion nom f p 11.59 2.97 1.58 0.68 +pâtir pâtir ver 1.41 2.64 0.56 1.08 inf; +pâtira pâtir ver 1.41 2.64 0.28 0.14 ind:fut:3s; +pâtiraient pâtir ver 1.41 2.64 0.01 0.07 cnd:pre:3p; +pâtirait pâtir ver 1.41 2.64 0.16 0.07 cnd:pre:3s; +pâtirent pâtir ver 1.41 2.64 0.01 0.07 ind:pas:3p; +potiron potiron nom m s 1.08 0.95 0.99 0.61 +potirons potiron nom m p 1.08 0.95 0.09 0.34 +pâtiront pâtir ver 1.41 2.64 0.04 0.00 ind:fut:3p; +pâtis pâtis nom m 0.01 0.54 0.01 0.54 +pâtissaient pâtisser ver 0.38 0.88 0.00 0.07 ind:imp:3p; +pâtissais pâtisser ver 0.38 0.88 0.00 0.14 ind:imp:1s; +pâtissait pâtisser ver 0.38 0.88 0.00 0.14 ind:imp:3s; +pâtisse pâtisser ver 0.38 0.88 0.07 0.14 imp:pre:2s;ind:pre:3s; +pâtissent pâtisser ver 0.38 0.88 0.29 0.27 ind:pre:3p; +pâtisserie pâtisserie nom f s 5.10 13.11 4.20 9.32 +pâtisseries pâtisserie nom f p 5.10 13.11 0.90 3.78 +pâtisses pâtisser ver 0.38 0.88 0.01 0.07 ind:pre:2s; +pâtissez pâtisser ver 0.38 0.88 0.00 0.07 ind:pre:2p; +pâtissier pâtissier nom m s 2.37 8.51 1.81 6.49 +pâtissiers pâtissier nom m p 2.37 8.51 0.16 1.15 +pâtissière pâtissier nom f s 2.37 8.51 0.41 0.88 +pâtissons pâtir ver 1.41 2.64 0.00 0.14 ind:pre:1p; +pâtit pâtir ver 1.41 2.64 0.17 0.34 ind:pre:3s;ind:pas:3s; +potière potier nom f s 0.47 0.68 0.01 0.00 +potlatch potlatch nom m s 0.00 0.20 0.00 0.20 +poto_poto poto_poto nom m s 0.00 0.14 0.00 0.14 +pâton pâton nom m s 0.00 0.20 0.00 0.07 +pâtons pâton nom m p 0.00 0.20 0.00 0.14 +potos potos nom m 0.00 0.07 0.00 0.07 +pâtour pâtour nom m s 0.00 0.07 0.00 0.07 +pâtre pâtre nom m s 0.11 1.62 0.11 1.15 +pâtres pâtre nom m p 0.11 1.62 0.00 0.47 +potron_minet potron_minet nom m s 0.03 0.27 0.03 0.27 +pots_de_vin pots_de_vin nom m p 1.98 0.34 1.98 0.34 +pot_pourri pot_pourri nom m p 0.49 0.68 0.15 0.00 +pots pot nom m p 29.89 48.04 4.17 15.74 +pâté pâté nom m s 7.18 16.55 5.22 11.01 +pâtée pâtée nom f s 1.78 2.97 1.78 2.77 +potée potée nom f s 0.04 1.35 0.04 0.95 +pâtées pâtée nom f p 1.78 2.97 0.00 0.20 +potées potée nom f p 0.04 1.35 0.00 0.41 +pâturage pâturage nom m s 1.98 4.53 0.69 0.81 +pâturages pâturage nom m p 1.98 4.53 1.29 3.72 +pâturaient pâturer ver 0.03 0.74 0.00 0.20 ind:imp:3p; +pâture pâture nom f s 1.94 3.31 1.73 2.77 +pâturent pâturer ver 0.03 0.74 0.00 0.20 ind:pre:3p; +pâturer pâturer ver 0.03 0.74 0.01 0.34 inf; +pâtures pâture nom f p 1.94 3.31 0.22 0.54 +pâturin pâturin nom m s 0.02 0.07 0.02 0.07 +pâturé pâturer ver m s 0.03 0.74 0.01 0.00 par:pas; +pâtés pâté nom m p 7.18 16.55 1.96 5.54 +pou pou nom m s 10.41 8.51 1.92 1.42 +pouacre pouacre nom m s 0.01 0.07 0.01 0.07 +pouah pouah ono 0.89 1.82 0.89 1.82 +poubelle poubelle nom f s 21.34 22.91 14.85 10.27 +poubelles poubelle nom f p 21.34 22.91 6.49 12.64 +pouce_pied pouce_pied nom m s 0.01 0.00 0.01 0.00 +pouce pouce ono 0.50 0.54 0.50 0.54 +pouces pouce nom m p 15.72 35.34 3.83 5.47 +poucet poucet nom m s 0.84 1.08 0.84 0.95 +poucets poucet nom m p 0.84 1.08 0.00 0.14 +poucette poucettes nom f s 1.18 0.00 0.76 0.00 +poucettes poucettes nom f p 1.18 0.00 0.41 0.00 +pouding pouding nom m s 0.16 0.07 0.16 0.07 +poudingue poudingue nom m s 0.00 0.07 0.00 0.07 +poudra poudrer ver 0.95 4.32 0.00 0.14 ind:pas:3s; +poudrage poudrage nom m s 0.01 0.07 0.01 0.07 +poudraient poudrer ver 0.95 4.32 0.00 0.07 ind:imp:3p; +poudrait poudrer ver 0.95 4.32 0.00 0.34 ind:imp:3s; +poudrant poudrer ver 0.95 4.32 0.01 0.34 par:pre; +poudre poudre nom f s 23.11 30.27 22.09 27.57 +poudrent poudrer ver 0.95 4.32 0.14 0.00 ind:pre:3p; +poudrer poudrer ver 0.95 4.32 0.42 0.41 inf; +poudres poudre nom f p 23.11 30.27 1.02 2.70 +poudrette poudrette nom f s 0.00 0.07 0.00 0.07 +poudreuse poudreux nom f s 0.26 0.00 0.26 0.00 +poudreuses poudreux adj f p 0.07 3.18 0.00 0.47 +poudreux poudreux adj m 0.07 3.18 0.02 1.62 +poudrier poudrier nom m s 0.25 1.42 0.25 1.35 +poudriers poudrier nom m p 0.25 1.42 0.00 0.07 +poudrière poudrière nom f s 0.25 0.61 0.25 0.61 +poudroie poudroyer ver 0.00 0.34 0.00 0.20 ind:pre:3s; +poudroiement poudroiement nom m s 0.00 1.15 0.00 1.08 +poudroiements poudroiement nom m p 0.00 1.15 0.00 0.07 +poudroyaient poudroyer ver 0.00 0.34 0.00 0.07 ind:imp:3p; +poudroyait poudroyer ver 0.00 0.34 0.00 0.07 ind:imp:3s; +poudroyante poudroyant adj f s 0.00 0.27 0.00 0.20 +poudroyantes poudroyant adj f p 0.00 0.27 0.00 0.07 +poudré poudrer ver m s 0.95 4.32 0.19 0.81 par:pas; +poudrée poudré adj f s 0.09 2.30 0.02 0.74 +poudrées poudré adj f p 0.09 2.30 0.02 0.47 +poudrés poudré adj m p 0.09 2.30 0.02 0.47 +pouf pouf ono 0.53 0.20 0.53 0.20 +pouffa pouffer ver 0.98 9.12 0.00 1.69 ind:pas:3s; +pouffaient pouffer ver 0.98 9.12 0.00 0.74 ind:imp:3p; +pouffait pouffer ver 0.98 9.12 0.11 0.74 ind:imp:3s; +pouffant pouffer ver 0.98 9.12 0.00 1.22 par:pre; +pouffante pouffant adj f s 0.00 0.27 0.00 0.14 +pouffantes pouffant adj f p 0.00 0.27 0.00 0.07 +pouffe pouffer ver 0.98 9.12 0.41 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pouffement pouffement nom m s 0.00 0.14 0.00 0.07 +pouffements pouffement nom m p 0.00 0.14 0.00 0.07 +pouffent pouffer ver 0.98 9.12 0.27 0.27 ind:pre:3p; +pouffer pouffer ver 0.98 9.12 0.05 1.35 inf; +poufferais pouffer ver 0.98 9.12 0.00 0.14 cnd:pre:1s; +poufferait pouffer ver 0.98 9.12 0.00 0.07 cnd:pre:3s; +pouffes pouffer ver 0.98 9.12 0.14 0.00 ind:pre:2s; +pouffiasse pouffiasse nom f s 3.09 2.09 2.73 1.35 +pouffiasses pouffiasse nom f p 3.09 2.09 0.36 0.74 +pouffions pouffer ver 0.98 9.12 0.00 0.07 ind:imp:1p; +pouffons pouffer ver 0.98 9.12 0.00 0.14 ind:pre:1p; +pouffèrent pouffer ver 0.98 9.12 0.00 0.41 ind:pas:3p; +pouffé pouffer ver m s 0.98 9.12 0.00 0.34 par:pas; +poufiasse poufiasse nom f s 1.64 0.34 1.50 0.20 +poufiasses poufiasse nom f p 1.64 0.34 0.14 0.14 +poufs pouf nom m p 0.83 5.07 0.07 1.15 +pouh pouh ono 0.28 0.14 0.28 0.14 +pouic pouic ono 0.04 0.41 0.04 0.41 +pouille pouille nom f s 0.01 0.07 0.01 0.00 +pouillerie pouillerie nom f s 0.00 0.54 0.00 0.41 +pouilleries pouillerie nom f p 0.00 0.54 0.00 0.14 +pouilles pouille nom f p 0.01 0.07 0.00 0.07 +pouilleuse pouilleux adj f s 0.61 1.22 0.14 0.27 +pouilleuses pouilleux adj f p 0.61 1.22 0.00 0.07 +pouilleux pouilleux nom m 1.27 0.27 1.25 0.27 +pouillot pouillot nom m s 0.01 0.07 0.01 0.00 +pouillots pouillot nom m p 0.01 0.07 0.00 0.07 +pouillés pouillé nom m p 0.01 0.00 0.01 0.00 +pouilly pouilly nom m s 0.01 0.34 0.01 0.34 +poujadisme poujadisme nom m s 0.00 0.07 0.00 0.07 +poujadiste poujadiste nom s 0.10 0.20 0.10 0.14 +poujadistes poujadiste nom p 0.10 0.20 0.00 0.07 +poulaga poulaga nom m s 0.14 2.43 0.14 1.22 +poulagas poulaga nom m p 0.14 2.43 0.00 1.22 +poulaille poulaille nom f s 0.26 0.41 0.26 0.41 +poulailler poulailler nom m s 2.45 3.51 2.43 3.04 +poulaillers poulailler nom m p 2.45 3.51 0.02 0.47 +poulain poulain nom m s 3.46 3.78 3.20 3.04 +poulaine poulain nom f s 3.46 3.78 0.00 0.07 +poulaines poulain nom f p 3.46 3.78 0.00 0.07 +poulains poulain nom m p 3.46 3.78 0.26 0.61 +poularde poularde nom f s 0.16 0.54 0.16 0.27 +poulardes poularde nom f p 0.16 0.54 0.00 0.27 +poulardin poulardin nom m s 0.00 0.34 0.00 0.20 +poulardins poulardin nom m p 0.00 0.34 0.00 0.14 +poulbot poulbot nom m s 0.00 0.54 0.00 0.20 +poulbots poulbot nom m p 0.00 0.54 0.00 0.34 +poule poule nom f s 36.70 31.82 23.50 16.69 +poêle poêle nom s 5.12 19.93 4.58 17.84 +poules poule nom f p 36.70 31.82 13.21 15.14 +poêles poêle nom p 5.12 19.93 0.55 2.09 +poulet poulet nom m s 41.25 25.34 32.33 14.53 +poulets poulet nom m p 41.25 25.34 8.93 10.81 +poulette poulette nom f s 3.41 1.15 2.71 0.95 +poulettes poulette nom f p 3.41 1.15 0.70 0.20 +pouliche pouliche nom f s 1.10 2.09 0.90 1.55 +pouliches pouliche nom f p 1.10 2.09 0.20 0.54 +poulie poulie nom f s 0.83 3.11 0.57 1.49 +poulies poulie nom f p 0.83 3.11 0.27 1.62 +poulinière poulinière adj f s 0.14 0.07 0.14 0.07 +poêlon poêlon nom m s 0.16 0.41 0.16 0.41 +poulot poulot nom m s 0.00 0.20 0.00 0.07 +poulots poulot nom m p 0.00 0.20 0.00 0.14 +poulottant poulotter ver 0.00 0.14 0.00 0.07 par:pre; +poulotter poulotter ver 0.00 0.14 0.00 0.07 inf; +poulpe poulpe nom m s 1.77 3.11 1.48 1.22 +poulpes poulpe nom m p 1.77 3.11 0.29 1.89 +pouls pouls nom m 15.64 5.54 15.64 5.54 +poêlées poêler ver f p 0.10 0.14 0.10 0.07 par:pas; +poumon poumon nom m s 16.65 21.55 4.55 3.58 +poumons poumon nom m p 16.65 21.55 12.09 17.97 +pound pound nom m s 0.20 0.07 0.03 0.00 +pounds pound nom m p 0.20 0.07 0.16 0.07 +poupard poupard nom m s 0.00 0.68 0.00 0.47 +poupards poupard nom m p 0.00 0.68 0.00 0.20 +poupe poupe nom f s 1.30 2.97 1.30 2.97 +poupin poupin adj m s 0.00 1.55 0.00 1.35 +poupine poupin adj f s 0.00 1.55 0.00 0.20 +poupon poupon nom m s 0.33 2.77 0.33 2.30 +pouponnage pouponnage nom m s 0.04 0.07 0.04 0.07 +pouponne pouponner ver 0.21 0.54 0.03 0.00 ind:pre:3s; +pouponnent pouponner ver 0.21 0.54 0.00 0.07 ind:pre:3p; +pouponner pouponner ver 0.21 0.54 0.14 0.47 inf; +pouponnière pouponnière nom f s 0.23 0.20 0.20 0.14 +pouponnières pouponnière nom f p 0.23 0.20 0.03 0.07 +pouponné pouponner ver m s 0.21 0.54 0.04 0.00 par:pas; +poupons poupon nom m p 0.33 2.77 0.00 0.47 +poupoule poupoule nom f s 0.10 0.74 0.10 0.74 +poupée poupée nom f s 27.59 27.57 22.05 18.58 +poupées poupée nom f p 27.59 27.57 5.54 8.99 +pour_cent pour_cent nom m 0.56 0.00 0.56 0.00 +pour pour pre 7078.55 6198.24 7078.55 6198.24 +pourboire pourboire nom m s 8.77 8.24 6.00 5.20 +pourboires pourboire nom m p 8.77 8.24 2.77 3.04 +pourceau pourceau nom m s 0.74 0.95 0.30 0.34 +pourceaux pourceau nom m p 0.74 0.95 0.44 0.61 +pourcent pourcent nom m s 0.45 0.00 0.35 0.00 +pourcentage pourcentage nom m s 4.75 2.43 3.83 1.76 +pourcentages pourcentage nom m p 4.75 2.43 0.93 0.68 +pourcents pourcent nom m p 0.45 0.00 0.10 0.00 +pourchas pourchas nom m 0.00 0.27 0.00 0.27 +pourchassa pourchasser ver 4.66 4.93 0.01 0.34 ind:pas:3s; +pourchassaient pourchasser ver 4.66 4.93 0.08 0.47 ind:imp:3p; +pourchassais pourchasser ver 4.66 4.93 0.07 0.07 ind:imp:1s;ind:imp:2s; +pourchassait pourchasser ver 4.66 4.93 0.14 0.81 ind:imp:3s; +pourchassant pourchasser ver 4.66 4.93 0.14 0.41 par:pre; +pourchasse pourchasser ver 4.66 4.93 0.65 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pourchassent pourchasser ver 4.66 4.93 0.34 0.27 ind:pre:3p; +pourchasser pourchasser ver 4.66 4.93 0.82 0.27 inf; +pourchassera pourchasser ver 4.66 4.93 0.16 0.00 ind:fut:3s; +pourchasserai pourchasser ver 4.66 4.93 0.02 0.00 ind:fut:1s; +pourchasseraient pourchasser ver 4.66 4.93 0.02 0.00 cnd:pre:3p; +pourchasserait pourchasser ver 4.66 4.93 0.03 0.00 cnd:pre:3s; +pourchasserons pourchasser ver 4.66 4.93 0.02 0.00 ind:fut:1p; +pourchasseront pourchasser ver 4.66 4.93 0.09 0.00 ind:fut:3p; +pourchasseur pourchasseur nom m s 0.00 0.07 0.00 0.07 +pourchassez pourchasser ver 4.66 4.93 0.31 0.00 imp:pre:2p;ind:pre:2p; +pourchassons pourchasser ver 4.66 4.93 0.07 0.00 imp:pre:1p;ind:pre:1p; +pourchassèrent pourchasser ver 4.66 4.93 0.00 0.07 ind:pas:3p; +pourchassé pourchasser ver m s 4.66 4.93 1.23 0.81 par:pas; +pourchassée pourchasser ver f s 4.66 4.93 0.26 0.20 par:pas; +pourchassées pourchasser ver f p 4.66 4.93 0.01 0.14 par:pas; +pourchassés pourchasser ver m p 4.66 4.93 0.17 0.81 par:pas; +pourcif pourcif nom m s 0.00 0.07 0.00 0.07 +pourfendait pourfendre ver 0.10 1.01 0.00 0.07 ind:imp:3s; +pourfendant pourfendre ver 0.10 1.01 0.00 0.20 par:pre; +pourfende pourfendre ver 0.10 1.01 0.00 0.07 sub:pre:3s; +pourfendeur pourfendeur nom m s 0.16 0.14 0.16 0.14 +pourfendions pourfendre ver 0.10 1.01 0.00 0.07 ind:imp:1p; +pourfendre pourfendre ver 0.10 1.01 0.04 0.54 inf; +pourfends pourfendre ver 0.10 1.01 0.02 0.00 imp:pre:2s;ind:pre:1s; +pourfendu pourfendre ver m s 0.10 1.01 0.04 0.07 par:pas; +pourim pourim nom m s 0.68 0.27 0.68 0.27 +pourliche pourliche nom m s 0.07 1.76 0.06 0.81 +pourliches pourliche nom m p 0.07 1.76 0.01 0.95 +pourlèche pourlécher ver 0.10 1.35 0.10 0.27 imp:pre:2s;ind:pre:3s; +pourlèchent pourlécher ver 0.10 1.35 0.00 0.20 ind:pre:3p; +pourléchaient pourlécher ver 0.10 1.35 0.00 0.20 ind:imp:3p; +pourléchait pourlécher ver 0.10 1.35 0.00 0.20 ind:imp:3s; +pourléchant pourlécher ver 0.10 1.35 0.00 0.27 par:pre; +pourlécher pourlécher ver 0.10 1.35 0.00 0.14 inf; +pourléchée pourlécher ver f s 0.10 1.35 0.00 0.07 par:pas; +pourparler pourparler nom m s 0.15 0.07 0.15 0.07 +pourparlers pourparlers nom m p 0.96 2.23 0.96 2.23 +pourpier pourpier nom m s 0.00 0.20 0.00 0.14 +pourpiers pourpier nom m p 0.00 0.20 0.00 0.07 +pourpoint pourpoint nom m s 0.59 1.49 0.59 1.15 +pourpoints pourpoint nom m p 0.59 1.49 0.00 0.34 +pourpre pourpre adj s 2.25 6.82 1.35 4.73 +pourpres pourpre adj p 2.25 6.82 0.90 2.09 +pourpré pourpré adj m s 0.01 0.14 0.01 0.00 +pourprée pourpré adj f s 0.01 0.14 0.00 0.14 +pourprées pourprer ver f p 0.00 0.14 0.00 0.07 par:pas; +pourquoi pourquoi con 655.75 297.64 655.75 297.64 +pourra pouvoir ver_sup 5524.52 2659.80 85.18 37.36 ind:fut:3s; +pourrai pouvoir ver_sup 5524.52 2659.80 46.71 23.11 ind:fut:1s; +pourraient pouvoir ver_sup 5524.52 2659.80 32.66 26.62 cnd:pre:3p; +pourrais pouvoir ver_sup 5524.52 2659.80 247.90 64.93 cnd:pre:1s;cnd:pre:2s; +pourrait pouvoir ver_sup 5524.52 2659.80 313.54 159.32 cnd:pre:3s; +pourras pouvoir ver_sup 5524.52 2659.80 44.35 10.00 ind:fut:2s; +pourrez pouvoir ver_sup 5524.52 2659.80 38.28 11.08 ind:fut:2p; +pourri pourri adj m s 18.09 22.84 9.23 8.18 +pourrie pourri adj f s 18.09 22.84 4.95 6.89 +pourries pourri adj f p 18.09 22.84 1.49 4.39 +pourriez pouvoir ver_sup 5524.52 2659.80 82.51 12.09 cnd:pre:2p; +pourrions pouvoir ver_sup 5524.52 2659.80 24.56 12.23 cnd:pre:1p; +pourrir pourrir ver 22.64 21.89 5.79 5.95 inf; +pourrira pourrir ver 22.64 21.89 0.25 0.27 ind:fut:3s; +pourrirai pourrir ver 22.64 21.89 0.30 0.07 ind:fut:1s; +pourrirait pourrir ver 22.64 21.89 0.03 0.07 cnd:pre:3s; +pourriras pourrir ver 22.64 21.89 0.31 0.07 ind:fut:2s; +pourrirent pourrir ver 22.64 21.89 0.00 0.20 ind:pas:3p; +pourrirez pourrir ver 22.64 21.89 0.22 0.00 ind:fut:2p; +pourririez pourrir ver 22.64 21.89 0.14 0.00 cnd:pre:2p; +pourrirons pourrir ver 22.64 21.89 0.02 0.00 ind:fut:1p; +pourriront pourrir ver 22.64 21.89 0.17 0.27 ind:fut:3p; +pourris pourri adj m p 18.09 22.84 2.42 3.38 +pourrissaient pourrir ver 22.64 21.89 0.00 1.49 ind:imp:3p; +pourrissais pourrir ver 22.64 21.89 0.02 0.07 ind:imp:1s; +pourrissait pourrir ver 22.64 21.89 0.18 1.22 ind:imp:3s; +pourrissant pourrissant adj m s 0.26 2.30 0.06 0.81 +pourrissante pourrissant adj f s 0.26 2.30 0.14 0.34 +pourrissantes pourrissant adj f p 0.26 2.30 0.04 0.47 +pourrissants pourrissant adj m p 0.26 2.30 0.02 0.68 +pourrisse pourrir ver 22.64 21.89 1.23 0.20 sub:pre:1s;sub:pre:3s; +pourrissement pourrissement nom m s 0.46 0.88 0.46 0.88 +pourrissent pourrir ver 22.64 21.89 0.84 1.42 ind:pre:3p; +pourrisseur pourrisseur adj m s 0.00 0.07 0.00 0.07 +pourrissez pourrir ver 22.64 21.89 0.20 0.00 imp:pre:2p;ind:pre:2p; +pourrissoir pourrissoir nom m s 0.00 0.41 0.00 0.41 +pourrissons pourrir ver 22.64 21.89 0.03 0.00 imp:pre:1p;ind:pre:1p; +pourrit pourrir ver 22.64 21.89 2.13 1.62 ind:pre:3s;ind:pas:3s; +pourriture pourriture nom f s 4.36 6.89 3.93 6.55 +pourritures pourriture nom f p 4.36 6.89 0.43 0.34 +pourrons pouvoir ver_sup 5524.52 2659.80 15.15 6.08 ind:fut:1p; +pourront pouvoir ver_sup 5524.52 2659.80 12.79 11.35 ind:fut:3p; +poursuis poursuivre ver 64.84 106.42 4.58 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +poursuit poursuivre ver 64.84 106.42 10.56 13.45 ind:pre:3s; +poursuite poursuite nom f s 11.03 15.47 6.92 12.36 +poursuites poursuite nom f p 11.03 15.47 4.11 3.11 +poursuivîmes poursuivre ver 64.84 106.42 0.01 0.07 ind:pas:1p; +poursuivît poursuivre ver 64.84 106.42 0.00 0.14 sub:imp:3s; +poursuivaient poursuivre ver 64.84 106.42 0.68 5.81 ind:imp:3p; +poursuivais poursuivre ver 64.84 106.42 0.34 0.95 ind:imp:1s;ind:imp:2s; +poursuivait poursuivre ver 64.84 106.42 2.43 15.41 ind:imp:3s; +poursuivant poursuivre ver 64.84 106.42 0.90 5.14 par:pre; +poursuivante poursuivant nom f s 0.74 2.43 0.01 0.07 +poursuivants poursuivant nom m p 0.74 2.43 0.41 1.82 +poursuive poursuivre ver 64.84 106.42 0.63 0.68 sub:pre:1s;sub:pre:3s; +poursuivent poursuivre ver 64.84 106.42 2.77 3.11 ind:pre:3p; +poursuives poursuivre ver 64.84 106.42 0.04 0.00 sub:pre:2s; +poursuiveurs poursuiveur nom m p 0.01 0.00 0.01 0.00 +poursuivez poursuivre ver 64.84 106.42 4.81 0.20 imp:pre:2p;ind:pre:2p; +poursuivi poursuivre ver m s 64.84 106.42 6.88 9.59 par:pas; +poursuivie poursuivre ver f s 64.84 106.42 2.40 2.91 par:pas; +poursuivies poursuivre ver f p 64.84 106.42 0.01 0.47 par:pas; +poursuiviez poursuivre ver 64.84 106.42 0.32 0.07 ind:imp:2p; +poursuivions poursuivre ver 64.84 106.42 0.11 0.68 ind:imp:1p; +poursuivirent poursuivre ver 64.84 106.42 0.26 1.35 ind:pas:3p; +poursuivis poursuivre ver m p 64.84 106.42 1.62 3.65 ind:pas:1s;par:pas; +poursuivit poursuivre ver 64.84 106.42 0.72 15.14 ind:pas:3s; +poursuivons poursuivre ver 64.84 106.42 2.50 0.88 imp:pre:1p;ind:pre:1p; +poursuivra poursuivre ver 64.84 106.42 1.45 0.68 ind:fut:3s; +poursuivrai poursuivre ver 64.84 106.42 1.08 0.20 ind:fut:1s; +poursuivraient poursuivre ver 64.84 106.42 0.17 0.20 cnd:pre:3p; +poursuivrais poursuivre ver 64.84 106.42 0.31 0.34 cnd:pre:1s;cnd:pre:2s; +poursuivrait poursuivre ver 64.84 106.42 0.43 1.08 cnd:pre:3s; +poursuivras poursuivre ver 64.84 106.42 0.07 0.00 ind:fut:2s; +poursuivre poursuivre ver 64.84 106.42 17.35 22.23 imp:pre:2p;ind:pre:2p;inf; +poursuivrez poursuivre ver 64.84 106.42 0.05 0.07 ind:fut:2p; +poursuivrions poursuivre ver 64.84 106.42 0.01 0.14 cnd:pre:1p; +poursuivrons poursuivre ver 64.84 106.42 0.96 0.14 ind:fut:1p; +poursuivront poursuivre ver 64.84 106.42 0.36 0.07 ind:fut:3p; +pourtant pourtant adv_sup 95.80 375.68 95.80 375.68 +pourtour pourtour nom m s 0.09 2.84 0.09 2.57 +pourtours pourtour nom m p 0.09 2.84 0.00 0.27 +pourvoi pourvoi nom m s 0.31 0.07 0.31 0.00 +pourvoie pourvoir ver 21.48 33.78 0.02 0.00 sub:pre:3s; +pourvoient pourvoir ver 21.48 33.78 0.15 0.07 ind:pre:3p; +pourvoir pourvoir ver 21.48 33.78 1.25 2.57 inf; +pourvoira pourvoir ver 21.48 33.78 0.32 0.14 ind:fut:3s; +pourvoirai pourvoir ver 21.48 33.78 0.14 0.00 ind:fut:1s; +pourvoiraient pourvoir ver 21.48 33.78 0.00 0.07 cnd:pre:3p; +pourvoirait pourvoir ver 21.48 33.78 0.04 0.07 cnd:pre:3s; +pourvoirons pourvoir ver 21.48 33.78 0.00 0.07 ind:fut:1p; +pourvoiront pourvoir ver 21.48 33.78 0.01 0.07 ind:fut:3p; +pourvois pourvoir ver 21.48 33.78 0.04 0.00 ind:pre:1s;ind:pre:2s; +pourvoit pourvoir ver 21.48 33.78 0.45 0.14 ind:pre:3s; +pourvoyaient pourvoir ver 21.48 33.78 0.10 0.14 ind:imp:3p; +pourvoyait pourvoir ver 21.48 33.78 0.01 0.34 ind:imp:3s; +pourvoyant pourvoir ver 21.48 33.78 0.01 0.07 par:pre; +pourvoyeur pourvoyeur nom m s 0.52 1.35 0.47 0.74 +pourvoyeurs pourvoyeur nom m p 0.52 1.35 0.04 0.41 +pourvoyeuse pourvoyeur nom f s 0.52 1.35 0.01 0.20 +pourvoyons pourvoir ver 21.48 33.78 0.01 0.00 ind:pre:1p; +pourvu pourvoir ver m s 21.48 33.78 18.50 24.59 par:pas; +pourvue pourvoir ver f s 21.48 33.78 0.24 1.89 par:pas; +pourvues pourvoir ver f p 21.48 33.78 0.02 1.15 par:pas; +pourvus pourvoir ver m p 21.48 33.78 0.18 2.30 par:pas; +pourvut pourvoir ver 21.48 33.78 0.00 0.14 ind:pas:3s; +poésie poésie nom f s 19.07 21.89 17.56 19.86 +poésies poésie nom f p 19.07 21.89 1.52 2.03 +poussa pousser ver 125.61 288.92 0.98 37.64 ind:pas:3s; +poussah poussah nom m s 0.00 0.27 0.00 0.27 +poussai pousser ver 125.61 288.92 0.02 4.26 ind:pas:1s; +poussaient pousser ver 125.61 288.92 0.45 12.91 ind:imp:3p; +poussais pousser ver 125.61 288.92 0.46 2.30 ind:imp:1s;ind:imp:2s; +poussait pousser ver 125.61 288.92 2.59 33.78 ind:imp:3s; +poussant pousser ver 125.61 288.92 1.83 30.61 par:pre; +poussas pousser ver 125.61 288.92 0.00 0.07 ind:pas:2s; +pousse_au_crime pousse_au_crime nom m 0.02 0.07 0.02 0.07 +pousse_café pousse_café nom m 0.13 0.68 0.13 0.68 +pousse_cailloux pousse_cailloux nom m s 0.00 0.07 0.00 0.07 +pousse_pousse pousse_pousse nom m 1.43 0.41 1.43 0.41 +pousse pousser ver 125.61 288.92 29.60 41.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +poussent pousser ver 125.61 288.92 5.17 10.00 ind:pre:3p;sub:pre:3p; +pousser pousser ver 125.61 288.92 27.51 45.68 inf; +poussera pousser ver 125.61 288.92 1.25 1.01 ind:fut:3s; +pousserai pousser ver 125.61 288.92 0.50 0.20 ind:fut:1s; +pousseraient pousser ver 125.61 288.92 0.19 0.68 cnd:pre:3p; +pousserais pousser ver 125.61 288.92 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +pousserait pousser ver 125.61 288.92 0.35 2.09 cnd:pre:3s; +pousseras pousser ver 125.61 288.92 0.04 0.14 ind:fut:2s; +pousserez pousser ver 125.61 288.92 0.04 0.07 ind:fut:2p; +pousseriez pousser ver 125.61 288.92 0.02 0.00 cnd:pre:2p; +pousserions pousser ver 125.61 288.92 0.01 0.07 cnd:pre:1p; +pousserons pousser ver 125.61 288.92 0.09 0.00 ind:fut:1p; +pousseront pousser ver 125.61 288.92 0.36 0.14 ind:fut:3p; +pousses pousser ver 125.61 288.92 5.63 1.35 ind:pre:2s; +poussette poussette nom f s 1.96 2.43 1.83 1.96 +poussettes poussette nom f p 1.96 2.43 0.13 0.47 +pousseur pousseur nom m s 0.04 0.34 0.02 0.20 +pousseurs pousseur nom m p 0.04 0.34 0.02 0.14 +poussez pousser ver 125.61 288.92 21.60 1.69 imp:pre:2p;ind:pre:2p; +poussier poussier nom m s 0.00 0.81 0.00 0.81 +poussiez pousser ver 125.61 288.92 0.10 0.07 ind:imp:2p; +poussif poussif adj m s 0.13 3.58 0.02 1.55 +poussifs poussif adj m p 0.13 3.58 0.00 0.95 +poussin poussin nom m s 7.50 3.04 5.81 1.55 +poussine poussine nom f s 0.00 0.07 0.00 0.07 +poussinière poussinière nom f s 0.00 0.07 0.00 0.07 +poussins poussin nom m p 7.50 3.04 1.69 1.49 +poussions pousser ver 125.61 288.92 0.19 0.61 ind:imp:1p; +poussière poussière nom f s 24.40 78.45 22.77 73.38 +poussières poussière nom f p 24.40 78.45 1.63 5.07 +poussiéreuse poussiéreux adj f s 2.02 16.55 0.76 4.53 +poussiéreuses poussiéreux adj f p 2.02 16.55 0.14 3.24 +poussiéreux poussiéreux adj m 2.02 16.55 1.12 8.78 +poussive poussif adj f s 0.13 3.58 0.10 0.88 +poussivement poussivement adv 0.00 0.14 0.00 0.14 +poussives poussif adj f p 0.13 3.58 0.01 0.20 +poussoir poussoir nom m s 0.02 0.07 0.02 0.07 +poussâmes pousser ver 125.61 288.92 0.00 0.41 ind:pas:1p; +poussons pousser ver 125.61 288.92 0.67 0.41 imp:pre:1p;ind:pre:1p; +poussât pousser ver 125.61 288.92 0.00 0.68 sub:imp:3s; +poussèrent pousser ver 125.61 288.92 0.24 3.85 ind:pas:3p; +poussé pousser ver m s 125.61 288.92 18.46 42.03 par:pas; +poussée pousser ver f s 125.61 288.92 4.63 8.24 par:pas; +poussées pousser ver f p 125.61 288.92 0.43 1.15 par:pas; +poussés pousser ver m p 125.61 288.92 1.92 4.93 par:pas; +poutargue poutargue nom f s 0.00 0.07 0.00 0.07 +poétesse poète nom f s 22.63 35.95 0.48 0.95 +poétesses poétesse nom f p 0.02 0.00 0.02 0.00 +poéticien poéticien nom m s 0.00 0.07 0.00 0.07 +poutine poutine adj f s 0.06 0.00 0.06 0.00 +poétique poétique adj s 2.60 8.11 2.34 6.15 +poétiquement poétiquement adv 0.04 0.47 0.04 0.47 +poétiques poétique adj p 2.60 8.11 0.26 1.96 +poétisait poétiser ver 0.00 0.41 0.00 0.07 ind:imp:3s; +poétisant poétiser ver 0.00 0.41 0.00 0.07 par:pre; +poétise poétiser ver 0.00 0.41 0.00 0.14 imp:pre:2s;ind:pre:3s; +poétiser poétiser ver 0.00 0.41 0.00 0.07 inf; +poétisez poétiser ver 0.00 0.41 0.00 0.07 imp:pre:2p; +poutou poutou nom m s 0.06 0.34 0.06 0.34 +poutrages poutrage nom m p 0.00 0.07 0.00 0.07 +poutraison poutraison nom f s 0.00 0.14 0.00 0.14 +poutre poutre nom f s 2.04 15.74 1.38 5.34 +poutrelle poutrelle nom f s 0.30 2.03 0.06 0.41 +poutrelles poutrelle nom f p 0.30 2.03 0.24 1.62 +poutres poutre nom f p 2.04 15.74 0.66 10.41 +pouvaient pouvoir ver_sup 5524.52 2659.80 15.50 67.16 ind:imp:3p; +pouvais pouvoir ver_sup 5524.52 2659.80 122.61 113.24 ind:imp:1s;ind:imp:2s; +pouvait pouvoir ver_sup 5524.52 2659.80 108.02 445.00 ind:imp:3s; +pouvant pouvoir ver_sup 5524.52 2659.80 4.43 18.65 par:pre; +pouvez pouvoir ver_sup 5524.52 2659.80 353.43 53.11 ind:pre:2p; +pouviez pouvoir ver_sup 5524.52 2659.80 17.64 4.59 ind:imp:2p; +pouvions pouvoir ver_sup 5524.52 2659.80 6.86 14.73 ind:imp:1p; +pouvoir pouvoir ver_sup 5524.52 2659.80 134.56 114.39 inf; +pouvoirs pouvoir nom_sup m p 117.87 107.91 28.36 21.42 +pouvons pouvoir ver_sup 5524.52 2659.80 82.09 21.01 ind:pre:1p; +poux pou nom m p 10.41 8.51 8.49 7.09 +pouzzolane pouzzolane nom f s 0.00 0.14 0.00 0.14 +prîmes prendre ver 1913.83 1466.42 0.22 2.77 ind:pas:1p; +prît prendre ver 1913.83 1466.42 0.24 6.42 sub:imp:3s; +prônais prôner ver 1.34 1.49 0.01 0.00 ind:imp:2s; +prônait prôner ver 1.34 1.49 0.15 0.61 ind:imp:3s; +prônant prôner ver 1.34 1.49 0.13 0.20 par:pre; +prône prôner ver 1.34 1.49 0.46 0.27 ind:pre:1s;ind:pre:3s; +prônent prôner ver 1.34 1.49 0.18 0.07 ind:pre:3p; +prôner prôner ver 1.34 1.49 0.10 0.00 inf; +prônera prôner ver 1.34 1.49 0.01 0.00 ind:fut:3s; +prônerez prôner ver 1.34 1.49 0.01 0.00 ind:fut:2p; +prônes prôner ver 1.34 1.49 0.05 0.00 ind:pre:2s; +prôneur prôneur nom m s 0.00 0.07 0.00 0.07 +prônez prôner ver 1.34 1.49 0.05 0.00 ind:pre:2p; +prônons prôner ver 1.34 1.49 0.02 0.00 imp:pre:1p;ind:pre:1p; +prôné prôner ver m s 1.34 1.49 0.03 0.07 par:pas; +prônée prôner ver f s 1.34 1.49 0.14 0.14 par:pas; +prônées prôner ver f p 1.34 1.49 0.00 0.07 par:pas; +prônés prôner ver m p 1.34 1.49 0.00 0.07 par:pas; +practice practice nom m s 0.15 0.00 0.15 0.00 +pradelle pradelle nom f s 0.00 6.08 0.00 6.08 +praesidium praesidium nom m s 0.10 0.14 0.10 0.14 +pragmatique pragmatique adj s 0.51 0.41 0.43 0.34 +pragmatiquement pragmatiquement adv 0.01 0.00 0.01 0.00 +pragmatiques pragmatique adj f p 0.51 0.41 0.08 0.07 +pragmatisme pragmatisme nom m s 0.24 0.27 0.24 0.27 +pragmatiste pragmatiste nom s 0.01 0.07 0.01 0.07 +praire praire nom f s 0.13 0.20 0.01 0.07 +praires praire nom f p 0.13 0.20 0.12 0.14 +prairial prairial nom m s 0.00 0.20 0.00 0.20 +prairie prairie nom f s 3.44 19.66 2.38 9.80 +prairies prairie nom f p 3.44 19.66 1.06 9.86 +praline praline nom f s 0.87 1.76 0.41 0.47 +pralines praline nom f p 0.87 1.76 0.46 1.28 +praliné praliné adj m s 0.05 0.20 0.05 0.07 +pralinés praliné adj m p 0.05 0.20 0.00 0.14 +prang prang nom m s 0.11 0.07 0.11 0.07 +praticable praticable adj s 0.48 1.28 0.30 1.01 +praticables praticable adj p 0.48 1.28 0.18 0.27 +praticien praticien nom m s 0.57 1.76 0.30 1.35 +praticienne praticien nom f s 0.57 1.76 0.00 0.14 +praticiens praticien nom m p 0.57 1.76 0.26 0.27 +pratiqua pratiquer ver 13.87 24.59 0.02 0.34 ind:pas:3s; +pratiquai pratiquer ver 13.87 24.59 0.00 0.07 ind:pas:1s; +pratiquaient pratiquer ver 13.87 24.59 0.64 1.42 ind:imp:3p; +pratiquais pratiquer ver 13.87 24.59 0.11 0.61 ind:imp:1s; +pratiquait pratiquer ver 13.87 24.59 0.34 3.65 ind:imp:3s; +pratiquant pratiquant adj m s 0.75 0.88 0.56 0.54 +pratiquante pratiquant adj f s 0.75 0.88 0.13 0.34 +pratiquants pratiquant nom m p 0.22 0.34 0.09 0.07 +pratique pratique adj s 13.18 16.69 11.00 10.54 +pratiquement pratiquement adv 14.68 17.03 14.68 17.03 +pratiquent pratiquer ver 13.87 24.59 1.22 0.95 ind:pre:3p; +pratiquer pratiquer ver 13.87 24.59 3.65 4.53 inf; +pratiquera pratiquer ver 13.87 24.59 0.02 0.07 ind:fut:3s; +pratiquerai pratiquer ver 13.87 24.59 0.04 0.00 ind:fut:1s; +pratiquerais pratiquer ver 13.87 24.59 0.00 0.07 cnd:pre:1s; +pratiquerait pratiquer ver 13.87 24.59 0.00 0.07 cnd:pre:3s; +pratiquerons pratiquer ver 13.87 24.59 0.03 0.00 ind:fut:1p; +pratiques pratique nom p 10.15 15.00 2.55 3.58 +pratiquez pratiquer ver 13.87 24.59 0.89 0.47 imp:pre:2p;ind:pre:2p; +pratiquiez pratiquer ver 13.87 24.59 0.03 0.14 ind:imp:2p; +pratiquions pratiquer ver 13.87 24.59 0.02 0.14 ind:imp:1p; +pratiquons pratiquer ver 13.87 24.59 0.25 0.14 imp:pre:1p;ind:pre:1p; +pratiquât pratiquer ver 13.87 24.59 0.00 0.07 sub:imp:3s; +pratiquèrent pratiquer ver 13.87 24.59 0.00 0.07 ind:pas:3p; +pratiqué pratiquer ver m s 13.87 24.59 1.87 3.31 par:pas; +pratiquée pratiquer ver f s 13.87 24.59 0.54 1.76 par:pas; +pratiquées pratiquer ver f p 13.87 24.59 0.19 0.88 par:pas; +pratiqués pratiquer ver m p 13.87 24.59 0.12 0.81 par:pas; +praxie praxie nom f s 0.10 0.00 0.10 0.00 +premier_maître premier_maître nom m s 0.16 0.00 0.16 0.00 +premier_né premier_né nom m s 0.91 0.20 0.77 0.14 +premier premier adj m s 376.98 672.57 146.12 237.91 +premier_né premier_né nom m p 0.91 0.20 0.14 0.07 +premiers premier adj m p 376.98 672.57 19.36 77.70 +première_née première_née nom f s 0.11 0.00 0.11 0.00 +première premier adj f s 376.98 672.57 197.34 296.76 +premièrement premièrement adv 5.51 1.76 5.51 1.76 +premières premier adj f p 376.98 672.57 14.16 60.20 +premium premium nom m s 0.05 0.00 0.05 0.00 +prenable prenable adj m s 0.01 0.14 0.01 0.00 +prenables prenable adj f p 0.01 0.14 0.00 0.14 +prenaient prendre ver 1913.83 1466.42 3.31 30.68 ind:imp:3p; +prenais prendre ver 1913.83 1466.42 10.15 19.53 ind:imp:1s;ind:imp:2s; +prenait prendre ver 1913.83 1466.42 18.66 113.92 ind:imp:3s; +prenant prendre ver 1913.83 1466.42 6.62 48.04 par:pre; +prenante prenant adj f s 1.59 3.18 0.41 0.88 +prenantes prenant adj f p 1.59 3.18 0.02 0.34 +prenants prenant adj m p 1.59 3.18 0.02 0.07 +prend prendre ver 1913.83 1466.42 179.02 129.05 ind:pre:3s; +prendra prendre ver 1913.83 1466.42 37.82 9.66 ind:fut:3s; +prendrai prendre ver 1913.83 1466.42 27.68 5.14 ind:fut:1s; +prendraient prendre ver 1913.83 1466.42 1.24 2.57 cnd:pre:3p; +prendrais prendre ver 1913.83 1466.42 11.04 3.58 cnd:pre:1s;cnd:pre:2s; +prendrait prendre ver 1913.83 1466.42 7.91 14.80 cnd:pre:3s; +prendras prendre ver 1913.83 1466.42 7.86 2.50 ind:fut:2s; +prendre prendre ver 1913.83 1466.42 465.77 344.05 inf;;inf;;inf;; +prendrez prendre ver 1913.83 1466.42 8.49 2.64 ind:fut:2p; +prendriez prendre ver 1913.83 1466.42 1.36 0.74 cnd:pre:2p; +prendrions prendre ver 1913.83 1466.42 0.16 0.27 cnd:pre:1p; +prendrons prendre ver 1913.83 1466.42 6.12 1.49 ind:fut:1p; +prendront prendre ver 1913.83 1466.42 4.47 3.72 ind:fut:3p; +prends prendre ver 1913.83 1466.42 431.50 70.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +preneur preneur nom m s 2.21 1.62 1.97 1.42 +preneurs preneur nom m p 2.21 1.62 0.22 0.14 +preneuse preneur nom f s 2.21 1.62 0.03 0.07 +prenez prendre ver 1913.83 1466.42 175.12 25.47 imp:pre:2p;ind:pre:2p; +preniez prendre ver 1913.83 1466.42 3.58 1.62 ind:imp:2p; +prenions prendre ver 1913.83 1466.42 1.40 4.66 ind:imp:1p; +prenne prendre ver 1913.83 1466.42 21.02 16.08 sub:pre:1s;sub:pre:3s; +prennent prendre ver 1913.83 1466.42 27.90 29.12 ind:pre:3p; +prennes prendre ver 1913.83 1466.42 5.01 2.03 sub:pre:2s; +prenons prendre ver 1913.83 1466.42 20.80 7.03 imp:pre:1p;ind:pre:1p; +presbyte presbyte adj s 0.19 0.14 0.19 0.14 +presbyterium presbyterium nom m s 0.00 0.07 0.00 0.07 +presbytie presbytie nom f s 0.00 0.34 0.00 0.34 +presbytère presbytère nom m s 1.07 3.51 1.07 3.51 +presbytérien presbytérien adj m s 0.23 0.20 0.12 0.07 +presbytérienne presbytérien adj f s 0.23 0.20 0.11 0.07 +presbytériennes presbytérien adj f p 0.23 0.20 0.00 0.07 +prescience prescience nom f s 0.04 1.01 0.04 1.01 +presciente prescient adj f s 0.01 0.00 0.01 0.00 +prescription prescription nom f s 2.24 2.50 1.77 1.28 +prescriptions prescription nom f p 2.24 2.50 0.47 1.22 +prescrirait prescrire ver 8.70 12.30 0.01 0.07 cnd:pre:3s; +prescrire prescrire ver 8.70 12.30 1.72 1.62 inf; +prescris prescrire ver 8.70 12.30 0.84 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prescrit prescrire ver m s 8.70 12.30 4.49 4.12 ind:pre:3s;par:pas; +prescrite prescrire ver f s 8.70 12.30 0.34 1.01 par:pas; +prescrites prescrire ver f p 8.70 12.30 0.58 0.68 par:pas; +prescrits prescrire ver m p 8.70 12.30 0.38 0.41 par:pas; +prescrivaient prescrire ver 8.70 12.30 0.00 0.20 ind:imp:3p; +prescrivais prescrire ver 8.70 12.30 0.00 0.34 ind:imp:1s; +prescrivait prescrire ver 8.70 12.30 0.01 1.01 ind:imp:3s; +prescrivant prescrire ver 8.70 12.30 0.01 0.54 par:pre; +prescrive prescrire ver 8.70 12.30 0.17 0.07 sub:pre:1s;sub:pre:3s; +prescrivent prescrire ver 8.70 12.30 0.07 0.20 ind:pre:3p; +prescrivez prescrire ver 8.70 12.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +prescrivis prescrire ver 8.70 12.30 0.00 0.41 ind:pas:1s; +prescrivit prescrire ver 8.70 12.30 0.00 0.74 ind:pas:3s; +presqu_île presqu_île nom f s 0.16 1.49 0.16 1.35 +presqu_île presqu_île nom f p 0.16 1.49 0.00 0.14 +presque presque adv_sup 181.81 465.54 181.81 465.54 +press_book press_book nom m s 0.03 0.00 0.03 0.00 +pressa presser ver 52.28 71.01 0.03 6.35 ind:pas:3s; +pressage pressage nom m s 0.07 0.00 0.07 0.00 +pressai presser ver 52.28 71.01 0.02 0.74 ind:pas:1s; +pressaient presser ver 52.28 71.01 0.06 5.68 ind:imp:3p; +pressais presser ver 52.28 71.01 0.13 1.22 ind:imp:1s;ind:imp:2s; +pressait presser ver 52.28 71.01 0.47 10.61 ind:imp:3s; +pressant pressant adj m s 2.09 7.70 0.97 2.50 +pressante pressant adj f s 2.09 7.70 0.72 3.72 +pressantes pressant adj f p 2.09 7.70 0.04 1.22 +pressants pressant adj m p 2.09 7.70 0.36 0.27 +presse_agrumes presse_agrumes nom m 0.04 0.00 0.04 0.00 +presse_bouton presse_bouton adj f s 0.04 0.07 0.04 0.07 +presse_citron presse_citron nom m s 0.02 0.00 0.02 0.00 +presse_fruits presse_fruits nom m 0.07 0.00 0.07 0.00 +presse_papier presse_papier nom m s 0.16 0.27 0.16 0.27 +presse_papiers presse_papiers nom m 0.24 0.47 0.24 0.47 +presse_purée presse_purée nom m 0.04 0.41 0.04 0.41 +presse_raquette presse_raquette nom m s 0.00 0.07 0.00 0.07 +presse presse nom f s 45.77 41.82 45.10 40.68 +pressement pressement nom m s 0.01 0.34 0.01 0.20 +pressements pressement nom m p 0.01 0.34 0.00 0.14 +pressens pressentir ver 2.18 19.12 0.28 1.15 ind:pre:1s;ind:pre:2s; +pressent pressentir ver 2.18 19.12 0.63 3.45 ind:pre:3s; +pressentîmes pressentir ver 2.18 19.12 0.00 0.14 ind:pas:1p; +pressentît pressentir ver 2.18 19.12 0.00 0.07 sub:imp:3s; +pressentaient pressentir ver 2.18 19.12 0.00 0.34 ind:imp:3p; +pressentais pressentir ver 2.18 19.12 0.12 2.43 ind:imp:1s;ind:imp:2s; +pressentait pressentir ver 2.18 19.12 0.15 3.18 ind:imp:3s; +pressentant pressentir ver 2.18 19.12 0.00 1.96 par:pre; +pressentent pressentir ver 2.18 19.12 0.04 0.20 ind:pre:3p; +pressentez pressentir ver 2.18 19.12 0.06 0.00 ind:pre:2p; +pressenti pressentir ver m s 2.18 19.12 0.68 2.09 par:pas; +pressentie pressentir ver f s 2.18 19.12 0.01 0.41 par:pas; +pressenties pressenti adj f p 0.01 1.01 0.00 0.07 +pressentiez pressentir ver 2.18 19.12 0.04 0.00 ind:imp:2p; +pressentiment pressentiment nom m s 8.34 8.72 7.17 6.76 +pressentiments pressentiment nom m p 8.34 8.72 1.17 1.96 +pressentions pressentir ver 2.18 19.12 0.00 0.20 ind:imp:1p; +pressentir pressentir ver 2.18 19.12 0.14 2.70 inf; +pressentirez pressentir ver 2.18 19.12 0.00 0.07 ind:fut:2p; +pressentis pressentir ver m p 2.18 19.12 0.03 0.27 ind:pas:1s;par:pas; +pressentit pressentir ver 2.18 19.12 0.00 0.47 ind:pas:3s; +pressentons pressentir ver 2.18 19.12 0.01 0.00 imp:pre:1p; +presser presser ver 52.28 71.01 5.64 12.43 inf; +pressera presser ver 52.28 71.01 0.03 0.07 ind:fut:3s; +presserai presser ver 52.28 71.01 0.16 0.00 ind:fut:1s; +presseraient presser ver 52.28 71.01 0.00 0.07 cnd:pre:3p; +presserait presser ver 52.28 71.01 0.11 0.07 cnd:pre:3s; +presseront presser ver 52.28 71.01 0.00 0.07 ind:fut:3p; +presses presse nom f p 45.77 41.82 0.67 1.15 +presseur presseur adj m s 0.01 0.14 0.01 0.14 +pressez presser ver 52.28 71.01 2.46 0.54 imp:pre:2p;ind:pre:2p; +pressiez presser ver 52.28 71.01 0.01 0.00 ind:imp:2p; +pressing pressing nom m s 2.63 0.81 2.52 0.74 +pressings pressing nom m p 2.63 0.81 0.10 0.07 +pression pression nom f s 37.28 21.76 35.33 19.05 +pressionnée pressionné adj f s 0.00 0.07 0.00 0.07 +pressions pression nom f p 37.28 21.76 1.96 2.70 +pressoir pressoir nom m s 0.19 1.15 0.17 0.95 +pressoirs pressoir nom m p 0.19 1.15 0.01 0.20 +pressons presser ver 52.28 71.01 2.02 1.89 imp:pre:1p;ind:pre:1p; +pressât presser ver 52.28 71.01 0.00 0.14 sub:imp:3s; +pressèrent presser ver 52.28 71.01 0.01 0.54 ind:pas:3p; +pressé presser ver m s 52.28 71.01 17.12 12.23 par:pas; +pressée pressé adj f s 25.09 31.42 11.26 8.58 +pressées pressé adj f p 25.09 31.42 0.62 3.18 +pressurant pressurer ver 0.28 0.61 0.00 0.07 par:pre; +pressure pressurer ver 0.28 0.61 0.17 0.20 imp:pre:2s;ind:pre:3s; +pressurer pressurer ver 0.28 0.61 0.06 0.20 inf; +pressures pressurer ver 0.28 0.61 0.03 0.00 ind:pre:2s; +pressurisation pressurisation nom f s 0.38 0.00 0.38 0.00 +pressuriser pressuriser ver 0.17 0.07 0.02 0.00 inf; +pressurisez pressuriser ver 0.17 0.07 0.02 0.00 imp:pre:2p; +pressurisé pressurisé adj m s 0.60 0.00 0.14 0.00 +pressurisée pressurisé adj f s 0.60 0.00 0.27 0.00 +pressurisées pressuriser ver f p 0.17 0.07 0.00 0.07 par:pas; +pressurisés pressurisé adj m p 0.60 0.00 0.19 0.00 +pressurée pressurer ver f s 0.28 0.61 0.00 0.07 par:pas; +pressurés pressurer ver m p 0.28 0.61 0.02 0.07 par:pas; +pressés presser ver m p 52.28 71.01 4.45 4.32 par:pas; +prestance prestance nom f s 0.27 2.30 0.27 2.30 +prestataire prestataire nom s 0.34 0.07 0.12 0.00 +prestataires prestataire nom p 0.34 0.07 0.22 0.07 +prestation prestation nom f s 1.95 2.30 1.58 1.28 +prestations prestation nom f p 1.95 2.30 0.37 1.01 +preste preste adj s 0.04 2.50 0.04 1.55 +prestement prestement adv 0.09 4.05 0.09 4.05 +prestes preste adj p 0.04 2.50 0.00 0.95 +prestesse prestesse nom f s 0.00 0.61 0.00 0.61 +prestidigitateur prestidigitateur nom m s 0.51 1.89 0.48 1.55 +prestidigitateurs prestidigitateur nom m p 0.51 1.89 0.00 0.27 +prestidigitation prestidigitation nom f s 0.10 0.41 0.10 0.34 +prestidigitations prestidigitation nom f p 0.10 0.41 0.00 0.07 +prestidigitatrice prestidigitateur nom f s 0.51 1.89 0.02 0.07 +prestige prestige nom m s 2.54 16.96 2.54 14.73 +prestiges prestige nom m p 2.54 16.96 0.00 2.23 +prestigieuse prestigieux adj f s 2.03 6.35 0.65 1.22 +prestigieuses prestigieux adj f p 2.03 6.35 0.11 0.41 +prestigieux prestigieux adj m 2.03 6.35 1.27 4.73 +presto presto adv 1.18 1.22 1.18 1.22 +preuve preuve nom f s 107.54 65.34 60.79 50.54 +preuves preuve nom f p 107.54 65.34 46.75 14.80 +preux preux adj m 0.88 0.54 0.88 0.54 +pria prier ver 313.12 105.74 0.52 6.15 ind:pas:3s; +priai prier ver 313.12 105.74 0.20 1.76 ind:pas:1s; +priaient prier ver 313.12 105.74 0.34 1.01 ind:imp:3p; +priais prier ver 313.12 105.74 1.16 1.08 ind:imp:1s;ind:imp:2s; +priait prier ver 313.12 105.74 1.34 7.36 ind:imp:3s; +priant prier ver 313.12 105.74 1.61 3.31 par:pre; +priapique priapique adj m s 0.00 0.61 0.00 0.41 +priapiques priapique adj f p 0.00 0.61 0.00 0.20 +priapisme priapisme nom m s 0.17 0.14 0.17 0.14 +priasse prier ver 313.12 105.74 0.00 0.07 sub:imp:1s; +prie_dieu prie_dieu nom m 0.01 2.64 0.01 2.64 +prie prier ver 313.12 105.74 247.29 44.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +prient prier ver 313.12 105.74 1.52 1.55 ind:pre:3p; +prier prier ver 313.12 105.74 25.46 21.62 inf; +priera prier ver 313.12 105.74 0.29 0.07 ind:fut:3s; +prierai prier ver 313.12 105.74 2.83 1.22 ind:fut:1s; +prieraient prier ver 313.12 105.74 0.00 0.07 cnd:pre:3p; +prierais prier ver 313.12 105.74 0.38 0.20 cnd:pre:1s; +prierait prier ver 313.12 105.74 0.16 0.41 cnd:pre:3s; +prieras prier ver 313.12 105.74 0.51 0.34 ind:fut:2s; +prierez prier ver 313.12 105.74 0.07 0.07 ind:fut:2p; +prierons prier ver 313.12 105.74 0.42 0.14 ind:fut:1p; +prieront prier ver 313.12 105.74 0.14 0.07 ind:fut:3p; +pries prier ver 313.12 105.74 2.06 0.74 ind:pre:2s; +prieur prieur adj m s 0.38 0.95 0.38 0.95 +prieure prieur nom f s 0.29 8.85 0.00 0.14 +prieurs prieur nom m p 0.29 8.85 0.00 0.07 +prieuré prieuré nom m s 0.22 0.68 0.22 0.61 +prieurés prieuré nom m p 0.22 0.68 0.00 0.07 +priez prier ver 313.12 105.74 9.13 1.76 imp:pre:2p;ind:pre:2p; +priions prier ver 313.12 105.74 0.00 0.27 ind:imp:1p; +prima primer ver 2.01 2.09 0.83 0.74 ind:pas:3s; +primaire primaire adj s 4.95 5.54 3.98 4.26 +primaires primaire adj p 4.95 5.54 0.97 1.28 +primait primer ver 2.01 2.09 0.02 0.41 ind:imp:3s; +primal primal adj m s 0.29 0.07 0.11 0.00 +primale primal adj f s 0.29 0.07 0.18 0.07 +primant primer ver 2.01 2.09 0.01 0.07 par:pre; +primat primat nom m s 0.09 0.34 0.09 0.34 +primate primate nom m s 1.29 1.62 0.72 0.61 +primates primate nom m p 1.29 1.62 0.57 1.01 +primatologue primatologue nom s 0.01 0.00 0.01 0.00 +primauté primauté nom f s 0.01 0.95 0.01 0.95 +prime_saut prime_saut nom s 0.00 0.07 0.00 0.07 +prime_time prime_time nom m 0.41 0.00 0.41 0.00 +prime prime nom f s 17.79 8.11 10.63 7.09 +priment primer ver 2.01 2.09 0.16 0.20 ind:pre:3p; +primer primer ver 2.01 2.09 0.15 0.07 inf; +primerait primer ver 2.01 2.09 0.00 0.07 cnd:pre:3s; +primerose primerose nom f s 0.01 0.07 0.01 0.07 +primes prime nom f p 17.79 8.11 7.17 1.01 +primesautier primesautier adj m s 0.00 0.95 0.00 0.27 +primesautiers primesautier adj m p 0.00 0.95 0.00 0.07 +primesautière primesautier adj f s 0.00 0.95 0.00 0.61 +primeur primeur nom f s 0.20 1.96 0.16 1.01 +primeurs primeur nom f p 0.20 1.96 0.04 0.95 +primevère primevère nom f s 0.06 1.01 0.01 0.14 +primevères primevère nom f p 0.06 1.01 0.05 0.88 +primidi primidi nom m s 0.00 0.07 0.00 0.07 +primitif primitif adj m s 7.00 10.20 2.84 3.31 +primitifs primitif adj m p 7.00 10.20 0.87 1.28 +primitive primitif adj f s 7.00 10.20 2.08 4.59 +primitivement primitivement adv 0.02 0.54 0.02 0.54 +primitives primitif adj f p 7.00 10.20 1.22 1.01 +primitivisme primitivisme nom m s 0.10 0.14 0.10 0.14 +primo_infection primo_infection nom f s 0.00 0.07 0.00 0.07 +primo primo adv_sup 4.10 2.16 4.10 2.16 +primordial primordial adj m s 2.39 2.97 1.52 0.88 +primordiale primordial adj f s 2.39 2.97 0.63 1.82 +primordialement primordialement adv 0.00 0.41 0.00 0.41 +primordiales primordial adj f p 2.39 2.97 0.18 0.00 +primordiaux primordial adj m p 2.39 2.97 0.06 0.27 +primé primé adj m s 0.14 0.07 0.09 0.00 +primée primer ver f s 2.01 2.09 0.05 0.07 par:pas; +primées primer ver f p 2.01 2.09 0.02 0.00 par:pas; +primés primé adj m p 0.14 0.07 0.03 0.00 +prin prin nom m s 0.10 0.14 0.10 0.14 +prince_de_galles prince_de_galles nom m 0.00 0.27 0.00 0.27 +prince_évêque prince_évêque nom m s 0.00 0.14 0.00 0.14 +prince prince nom m s 96.42 101.22 44.83 65.61 +princeps princeps adj f p 0.00 0.07 0.00 0.07 +princes prince nom m p 96.42 101.22 5.29 11.08 +princesse prince nom f s 96.42 101.22 46.31 21.01 +princesses princesse nom f p 2.48 0.00 2.48 0.00 +princier princier adj m s 0.59 3.65 0.22 1.08 +princiers princier adj m p 0.59 3.65 0.02 0.74 +principal principal adj m s 36.68 38.92 17.53 15.81 +principale principal adj f s 36.68 38.92 10.68 12.30 +principalement principalement adv 3.60 6.08 3.60 6.08 +principales principal adj f p 36.68 38.92 3.35 3.65 +principat principat nom m s 0.00 0.34 0.00 0.34 +principauté principauté nom f s 0.25 1.01 0.20 0.81 +principautés principauté nom f p 0.25 1.01 0.05 0.20 +principaux principal adj m p 36.68 38.92 5.12 7.16 +principe principe nom m s 26.36 47.57 15.62 30.88 +principes principe nom m p 26.36 47.57 10.75 16.69 +princière princier adj f s 0.59 3.65 0.35 1.28 +princièrement princièrement adv 0.11 0.20 0.11 0.20 +princières princier adj f p 0.59 3.65 0.00 0.54 +printanier printanier adj m s 0.66 4.32 0.33 1.89 +printaniers printanier adj m p 0.66 4.32 0.11 0.81 +printanière printanier adj f s 0.66 4.32 0.21 1.35 +printanières printanier adj f p 0.66 4.32 0.02 0.27 +printemps printemps nom m 27.85 60.88 27.85 60.88 +priâmes prier ver 313.12 105.74 0.00 0.14 ind:pas:1p; +prion prion nom m s 3.11 0.54 0.43 0.00 +prions prier ver 313.12 105.74 6.14 1.49 imp:pre:1p;ind:pre:1p; +prioritaire prioritaire adj s 3.07 0.54 2.43 0.34 +prioritaires prioritaire adj p 3.07 0.54 0.64 0.20 +priorité priorité nom f s 12.15 4.80 8.84 4.53 +priorités priorité nom f p 12.15 4.80 3.31 0.27 +priât prier ver 313.12 105.74 0.00 0.27 sub:imp:3s; +prirent prendre ver 1913.83 1466.42 0.80 15.20 ind:pas:3p; +pris prendre ver m 1913.83 1466.42 374.60 333.04 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +prisa priser ver 2.59 5.20 0.02 0.07 ind:pas:3s; +prisaient priser ver 2.59 5.20 0.00 0.14 ind:imp:3p; +prisait priser ver 2.59 5.20 0.10 0.61 ind:imp:3s; +prisant priser ver 2.59 5.20 0.00 0.07 par:pre; +prise prendre ver f s 1913.83 1466.42 38.26 42.64 par:pas; +prisent priser ver 2.59 5.20 0.14 0.14 ind:pre:3p; +priser priser ver 2.59 5.20 0.06 0.81 inf; +prises prendre ver f p 1913.83 1466.42 8.42 12.16 par:pas; +priseur priseur nom m s 0.01 0.14 0.01 0.07 +priseurs priseur nom m p 0.01 0.14 0.00 0.07 +prisez priser ver 2.59 5.20 0.00 0.07 imp:pre:2p; +prismatique prismatique adj m s 0.02 0.07 0.02 0.00 +prismatiques prismatique adj f p 0.02 0.07 0.00 0.07 +prisme prisme nom m s 0.11 1.42 0.10 0.88 +prismes prisme nom m p 0.11 1.42 0.01 0.54 +prison prison nom f s 147.49 72.43 142.97 64.66 +prisonnier prisonnier nom m s 37.80 40.00 16.97 11.69 +prisonniers prisonnier nom m p 37.80 40.00 19.55 26.42 +prisonnière prisonnier adj f s 19.64 29.46 3.40 4.73 +prisonnières prisonnier adj f p 19.64 29.46 0.65 1.22 +prisons_école prisons_école nom f p 0.00 0.07 0.00 0.07 +prisons prison nom f p 147.49 72.43 4.52 7.77 +prisse prendre ver 1913.83 1466.42 0.01 0.14 sub:imp:1s; +prissent prendre ver 1913.83 1466.42 0.00 0.61 sub:imp:3p; +prissions prendre ver 1913.83 1466.42 0.00 0.07 sub:imp:1p; +pristi pristi ono 0.00 0.20 0.00 0.20 +prisé priser ver m s 2.59 5.20 0.30 0.54 par:pas; +prisée priser ver f s 2.59 5.20 0.06 0.41 par:pas; +prisées priser ver f p 2.59 5.20 0.21 0.68 par:pas; +prisunic prisunic nom m s 0.03 3.11 0.03 3.11 +prisés priser ver m p 2.59 5.20 0.28 0.07 par:pas; +prit prendre ver 1913.83 1466.42 7.27 164.80 ind:pas:3s; +prière prière nom f s 32.73 45.95 19.15 30.00 +prièrent prier ver 313.12 105.74 0.03 0.34 ind:pas:3p; +prières prière nom f p 32.73 45.95 13.58 15.95 +prié prier ver m s 313.12 105.74 9.03 7.84 par:pas; +priée prier ver f s 313.12 105.74 0.52 1.15 par:pas; +priées prier ver f p 313.12 105.74 0.05 0.14 par:pas; +priés prier ver m p 313.12 105.74 1.91 0.95 par:pas; +priva priver ver 24.06 42.70 0.16 0.74 ind:pas:3s; +privai priver ver 24.06 42.70 0.00 0.07 ind:pas:1s; +privaient priver ver 24.06 42.70 0.02 0.88 ind:imp:3p; +privais priver ver 24.06 42.70 0.02 0.61 ind:imp:1s;ind:imp:2s; +privait priver ver 24.06 42.70 0.09 3.65 ind:imp:3s; +privant priver ver 24.06 42.70 0.33 1.69 par:pre; +privasse priver ver 24.06 42.70 0.00 0.07 sub:imp:1s; +privatif privatif adj m s 0.06 0.47 0.02 0.27 +privatifs privatif adj m p 0.06 0.47 0.00 0.07 +privation privation nom f s 1.55 4.53 0.70 1.49 +privations privation nom f p 1.55 4.53 0.85 3.04 +privatisation privatisation nom f s 0.41 0.07 0.41 0.07 +privatiser privatiser ver 0.36 0.00 0.31 0.00 inf; +privatisé privatiser ver m s 0.36 0.00 0.03 0.00 par:pas; +privatisée privatiser ver f s 0.36 0.00 0.01 0.00 par:pas; +privatisés privatiser ver m p 0.36 0.00 0.01 0.00 par:pas; +privative privatif adj f s 0.06 0.47 0.02 0.00 +privatives privatif adj f p 0.06 0.47 0.01 0.14 +privauté privauté nom f s 0.02 0.54 0.00 0.07 +privautés privauté nom f p 0.02 0.54 0.02 0.47 +prive priver ver 24.06 42.70 1.49 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +privent priver ver 24.06 42.70 0.46 0.47 ind:pre:3p; +priver priver ver 24.06 42.70 4.19 6.15 inf; +privera priver ver 24.06 42.70 0.44 0.27 ind:fut:3s; +priverai priver ver 24.06 42.70 0.27 0.00 ind:fut:1s; +priveraient priver ver 24.06 42.70 0.01 0.07 cnd:pre:3p; +priverais priver ver 24.06 42.70 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +priverait priver ver 24.06 42.70 0.17 0.27 cnd:pre:3s; +priveras priver ver 24.06 42.70 0.02 0.00 ind:fut:2s; +priveriez priver ver 24.06 42.70 0.12 0.00 cnd:pre:2p; +prives priver ver 24.06 42.70 0.47 0.14 ind:pre:2s; +privez priver ver 24.06 42.70 0.54 0.41 imp:pre:2p;ind:pre:2p; +priviez priver ver 24.06 42.70 0.02 0.00 ind:imp:2p; +privilège privilège nom m s 10.41 17.70 7.06 11.96 +privilèges privilège nom m p 10.41 17.70 3.35 5.74 +privilégiait privilégier ver 2.92 3.11 0.01 0.14 ind:imp:3s; +privilégiant privilégier ver 2.92 3.11 0.00 0.07 par:pre; +privilégie privilégier ver 2.92 3.11 0.42 0.27 ind:pre:1s;ind:pre:3s; +privilégient privilégier ver 2.92 3.11 0.04 0.00 ind:pre:3p; +privilégier privilégier ver 2.92 3.11 0.84 0.20 inf; +privilégions privilégier ver 2.92 3.11 0.02 0.00 ind:pre:1p; +privilégié privilégié adj m s 2.15 9.46 1.01 4.05 +privilégiée privilégié adj f s 2.15 9.46 0.56 2.84 +privilégiées privilégié adj f p 2.15 9.46 0.23 0.68 +privilégiés privilégié nom m p 0.87 5.07 0.65 3.31 +privions priver ver 24.06 42.70 0.00 0.14 ind:imp:1p; +privons priver ver 24.06 42.70 0.03 0.00 ind:pre:1p; +privât priver ver 24.06 42.70 0.00 0.14 sub:imp:3s; +privèrent priver ver 24.06 42.70 0.00 0.07 ind:pas:3p; +privé privé adj m s 36.44 21.89 11.99 7.09 +privée privé adj f s 36.44 21.89 18.80 9.39 +privées privé adj f p 36.44 21.89 2.61 2.30 +privément privément adv 0.01 0.00 0.01 0.00 +privés privé adj m p 36.44 21.89 3.04 3.11 +prix_choc prix_choc nom m 0.00 0.07 0.00 0.07 +prix prix nom m 126.55 107.50 126.55 107.50 +pro_occidental pro_occidental adj m s 0.01 0.00 0.01 0.00 +pro pro nom s 19.45 2.03 14.45 1.62 +proactif proactif adj m s 0.07 0.00 0.07 0.00 +probabilité probabilité nom f s 3.66 2.23 1.68 1.28 +probabilités probabilité nom f p 3.66 2.23 1.99 0.95 +probable probable adj s 10.98 18.18 10.61 17.36 +probablement probablement adv 69.41 37.64 69.41 37.64 +probables probable adj p 10.98 18.18 0.38 0.81 +probant probant adj m s 0.47 1.08 0.31 0.54 +probante probant adj f s 0.47 1.08 0.06 0.27 +probantes probant adj f p 0.47 1.08 0.04 0.00 +probants probant adj m p 0.47 1.08 0.06 0.27 +probation probation nom f s 1.39 0.14 1.39 0.14 +probatoire probatoire adj s 0.12 0.27 0.12 0.27 +probe probe adj f s 0.38 0.20 0.36 0.14 +probes probe adj p 0.38 0.20 0.01 0.07 +probité probité nom f s 0.10 1.89 0.10 1.89 +probloc probloc nom m s 0.00 0.54 0.00 0.47 +problocs probloc nom m p 0.00 0.54 0.00 0.07 +probloque probloque nom m s 0.00 1.01 0.00 0.61 +probloques probloque nom m p 0.00 1.01 0.00 0.41 +problème problème nom m s 520.07 95.00 391.20 55.20 +problèmes problème nom m p 520.07 95.00 128.87 39.80 +problématique problématique adj s 1.39 1.22 1.22 0.95 +problématiques problématique adj p 1.39 1.22 0.17 0.27 +proc proc nom m s 0.27 0.68 0.27 0.61 +procaïne procaïne nom f s 0.02 0.00 0.02 0.00 +procalmadiol procalmadiol nom m s 0.00 0.07 0.00 0.07 +process process nom m 0.07 0.07 0.07 0.07 +processeur processeur nom m s 0.69 0.00 0.54 0.00 +processeurs processeur nom m p 0.69 0.00 0.15 0.00 +procession procession nom f s 3.81 10.20 3.21 7.91 +processionnaient processionner ver 0.00 0.14 0.00 0.07 ind:imp:3p; +processionnaire processionnaire adj f s 0.00 0.20 0.00 0.20 +processionnaires processionnaire nom m p 0.00 0.20 0.00 0.20 +processionnant processionner ver 0.00 0.14 0.00 0.07 par:pre; +processionnelle processionnel adj f s 0.01 0.20 0.01 0.07 +processionnelles processionnel adj f p 0.01 0.20 0.00 0.14 +processions procession nom f p 3.81 10.20 0.59 2.30 +processus processus nom m 10.86 5.47 10.86 5.47 +prochain prochain adj m s 160.27 59.32 51.95 21.96 +prochaine prochain adj f s 160.27 59.32 100.44 32.50 +prochainement prochainement adv 0.86 2.77 0.86 2.77 +prochaines prochain adj f p 160.27 59.32 4.27 2.70 +prochains prochain adj m p 160.27 59.32 3.62 2.16 +proche_oriental proche_oriental adj m s 0.01 0.00 0.01 0.00 +proche proche adj s 55.34 82.91 38.29 63.04 +proches proche adj p 55.34 82.91 17.05 19.86 +prochinois prochinois adj m 0.00 0.14 0.00 0.07 +prochinoise prochinois adj f s 0.00 0.14 0.00 0.07 +proclama proclamer ver 6.50 16.42 0.02 1.08 ind:pas:3s; +proclamai proclamer ver 6.50 16.42 0.00 0.14 ind:pas:1s; +proclamaient proclamer ver 6.50 16.42 0.00 0.61 ind:imp:3p; +proclamais proclamer ver 6.50 16.42 0.23 0.07 ind:imp:1s;ind:imp:2s; +proclamait proclamer ver 6.50 16.42 0.03 3.38 ind:imp:3s; +proclamant proclamer ver 6.50 16.42 0.41 1.01 par:pre; +proclamation proclamation nom f s 0.60 4.19 0.60 3.45 +proclamations proclamation nom f p 0.60 4.19 0.00 0.74 +proclamatrices proclamateur nom f p 0.01 0.00 0.01 0.00 +proclame proclamer ver 6.50 16.42 2.37 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +proclament proclamer ver 6.50 16.42 0.17 0.68 ind:pre:3p; +proclamer proclamer ver 6.50 16.42 0.81 3.18 inf; +proclamera proclamer ver 6.50 16.42 0.03 0.00 ind:fut:3s; +proclamerai proclamer ver 6.50 16.42 0.01 0.07 ind:fut:1s; +proclameraient proclamer ver 6.50 16.42 0.00 0.07 cnd:pre:3p; +proclamerait proclamer ver 6.50 16.42 0.00 0.27 cnd:pre:3s; +proclamerons proclamer ver 6.50 16.42 0.02 0.07 ind:fut:1p; +proclamez proclamer ver 6.50 16.42 0.27 0.20 imp:pre:2p;ind:pre:2p; +proclamiez proclamer ver 6.50 16.42 0.00 0.07 ind:imp:2p; +proclamions proclamer ver 6.50 16.42 0.00 0.14 ind:imp:1p; +proclamons proclamer ver 6.50 16.42 0.24 0.07 imp:pre:1p;ind:pre:1p; +proclamât proclamer ver 6.50 16.42 0.00 0.14 sub:imp:3s; +proclamèrent proclamer ver 6.50 16.42 0.00 0.14 ind:pas:3p; +proclamé proclamer ver m s 6.50 16.42 1.38 1.96 par:pas; +proclamée proclamer ver f s 6.50 16.42 0.49 0.68 par:pas; +proclamées proclamer ver f p 6.50 16.42 0.03 0.07 par:pas; +proclamés proclamer ver m p 6.50 16.42 0.01 0.14 par:pas; +procommuniste procommuniste adj s 0.00 0.07 0.00 0.07 +proconsul proconsul nom m s 0.51 1.35 0.51 0.41 +proconsuls proconsul nom m p 0.51 1.35 0.00 0.95 +procrastination procrastination nom f s 0.01 0.00 0.01 0.00 +procréa procréer ver 1.13 1.55 0.00 0.07 ind:pas:3s; +procréant procréer ver 1.13 1.55 0.01 0.14 par:pre; +procréateur procréateur nom m s 0.01 0.14 0.01 0.07 +procréateurs procréateur nom m p 0.01 0.14 0.00 0.07 +procréation procréation nom f s 0.40 1.22 0.40 1.08 +procréations procréation nom f p 0.40 1.22 0.00 0.14 +procréative procréatif adj f s 0.00 0.07 0.00 0.07 +procréatrice procréateur adj f s 0.05 0.07 0.03 0.00 +procréatrices procréateur adj f p 0.05 0.07 0.02 0.00 +procrée procréer ver 1.13 1.55 0.03 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procréent procréer ver 1.13 1.55 0.01 0.07 ind:pre:3p; +procréer procréer ver 1.13 1.55 1.01 0.61 inf; +procréerons procréer ver 1.13 1.55 0.02 0.00 ind:fut:1p; +procréé procréer ver m s 1.13 1.55 0.04 0.34 par:pas; +procs proc nom m p 0.27 0.68 0.00 0.07 +procède procéder ver 12.91 25.88 1.75 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procèdent procéder ver 12.91 25.88 0.38 0.81 ind:pre:3p; +procès_test procès_test nom m 0.02 0.00 0.02 0.00 +procès_verbal procès_verbal nom m s 3.86 2.30 3.55 1.76 +procès_verbal procès_verbal nom m p 3.86 2.30 0.31 0.54 +procès procès nom m 45.41 24.32 45.41 24.32 +proctologie proctologie nom f s 0.01 0.00 0.01 0.00 +proctologue proctologue nom s 0.28 0.00 0.22 0.00 +proctologues proctologue nom p 0.28 0.00 0.07 0.00 +procéda procéder ver 12.91 25.88 0.02 0.34 ind:pas:3s; +procédaient procéder ver 12.91 25.88 0.00 0.54 ind:imp:3p; +procédais procéder ver 12.91 25.88 0.01 0.14 ind:imp:1s; +procédait procéder ver 12.91 25.88 0.04 2.97 ind:imp:3s; +procédant procéder ver 12.91 25.88 0.07 0.81 par:pre; +procéder procéder ver 12.91 25.88 6.75 10.14 inf; +procédera procéder ver 12.91 25.88 0.27 0.54 ind:fut:3s; +procéderaient procéder ver 12.91 25.88 0.00 0.20 cnd:pre:3p; +procéderais procéder ver 12.91 25.88 0.03 0.00 cnd:pre:1s; +procéderait procéder ver 12.91 25.88 0.00 0.54 cnd:pre:3s; +procéderez procéder ver 12.91 25.88 0.08 0.00 ind:fut:2p; +procéderiez procéder ver 12.91 25.88 0.01 0.00 cnd:pre:2p; +procéderons procéder ver 12.91 25.88 0.45 0.14 ind:fut:1p; +procéderont procéder ver 12.91 25.88 0.00 0.27 ind:fut:3p; +procédez procéder ver 12.91 25.88 0.76 0.14 imp:pre:2p;ind:pre:2p; +procédiez procéder ver 12.91 25.88 0.01 0.07 ind:imp:2p; +procédions procéder ver 12.91 25.88 0.04 0.14 ind:imp:1p; +procédâmes procéder ver 12.91 25.88 0.00 0.07 ind:pas:1p; +procédons procéder ver 12.91 25.88 1.15 0.61 imp:pre:1p;ind:pre:1p; +procédât procéder ver 12.91 25.88 0.00 0.14 sub:imp:3s; +procédé procédé nom m s 4.17 8.85 3.28 4.46 +procédural procédural adj m s 0.03 0.00 0.01 0.00 +procédurale procédural adj f s 0.03 0.00 0.01 0.00 +procédure procédure nom f s 16.16 3.58 13.26 3.38 +procédures procédure nom f p 16.16 3.58 2.91 0.20 +procédurier procédurier adj m s 0.04 0.14 0.03 0.07 +procédurière procédurier adj f s 0.04 0.14 0.01 0.00 +procédurières procédurier adj f p 0.04 0.14 0.00 0.07 +procédés procédé nom m p 4.17 8.85 0.89 4.39 +procura procurer ver 12.77 27.97 0.16 1.01 ind:pas:3s; +procurai procurer ver 12.77 27.97 0.00 0.07 ind:pas:1s; +procuraient procurer ver 12.77 27.97 0.03 1.35 ind:imp:3p; +procurais procurer ver 12.77 27.97 0.01 0.14 ind:imp:1s; +procurait procurer ver 12.77 27.97 0.39 3.72 ind:imp:3s; +procurant procurer ver 12.77 27.97 0.04 0.61 par:pre; +procurateur procurateur nom m s 0.03 0.88 0.03 0.20 +procurateurs procurateur nom m p 0.03 0.88 0.00 0.07 +procuraties procuratie nom f p 0.00 0.14 0.00 0.14 +procuration procuration nom f s 1.69 2.50 1.69 2.50 +procuratrice procurateur nom f s 0.03 0.88 0.00 0.61 +procure procurer ver 12.77 27.97 1.67 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procurent procurer ver 12.77 27.97 0.34 0.88 ind:pre:3p; +procurer procurer ver 12.77 27.97 7.29 9.66 imp:pre:2p;inf; +procurera procurer ver 12.77 27.97 0.21 0.07 ind:fut:3s; +procurerai procurer ver 12.77 27.97 0.19 0.14 ind:fut:1s; +procureraient procurer ver 12.77 27.97 0.01 0.20 cnd:pre:3p; +procurerais procurer ver 12.77 27.97 0.01 0.00 cnd:pre:1s; +procurerait procurer ver 12.77 27.97 0.14 0.61 cnd:pre:3s; +procureras procurer ver 12.77 27.97 0.03 0.00 ind:fut:2s; +procureriez procurer ver 12.77 27.97 0.01 0.00 cnd:pre:2p; +procurerons procurer ver 12.77 27.97 0.04 0.00 ind:fut:1p; +procureront procurer ver 12.77 27.97 0.02 0.07 ind:fut:3p; +procures procurer ver 12.77 27.97 0.09 0.00 ind:pre:2s; +procureur procureur nom m s 29.45 6.15 28.68 5.54 +procureurs procureur nom m p 29.45 6.15 0.78 0.41 +procureuse procureur nom f s 29.45 6.15 0.00 0.14 +procureuses procureur nom f p 29.45 6.15 0.00 0.07 +procurez procurer ver 12.77 27.97 0.20 0.00 imp:pre:2p;ind:pre:2p; +procuriez procurer ver 12.77 27.97 0.01 0.07 ind:imp:2p; +procurions procurer ver 12.77 27.97 0.00 0.14 ind:imp:1p;sub:pre:1p; +procurât procurer ver 12.77 27.97 0.00 0.07 sub:imp:3s; +procurèrent procurer ver 12.77 27.97 0.00 0.14 ind:pas:3p; +procuré procurer ver m s 12.77 27.97 1.78 4.26 par:pas; +procurée procurer ver f s 12.77 27.97 0.03 0.41 par:pas; +procurées procurer ver f p 12.77 27.97 0.00 0.14 par:pas; +procurés procurer ver m p 12.77 27.97 0.08 0.07 par:pas; +prodigalité prodigalité nom f s 0.04 1.01 0.03 0.95 +prodigalités prodigalité nom f p 0.04 1.01 0.01 0.07 +prodige prodige nom m s 5.83 8.78 4.62 5.61 +prodiges prodige nom m p 5.83 8.78 1.21 3.18 +prodigieuse prodigieux adj f s 3.66 13.24 1.29 5.47 +prodigieusement prodigieusement adv 0.67 3.65 0.67 3.65 +prodigieuses prodigieux adj f p 3.66 13.24 0.17 1.22 +prodigieux prodigieux adj m 3.66 13.24 2.19 6.55 +prodigua prodiguer ver 0.89 11.42 0.02 0.41 ind:pas:3s; +prodiguaient prodiguer ver 0.89 11.42 0.00 0.81 ind:imp:3p; +prodiguais prodiguer ver 0.89 11.42 0.01 0.14 ind:imp:1s;ind:imp:2s; +prodiguait prodiguer ver 0.89 11.42 0.01 1.82 ind:imp:3s; +prodiguant prodiguer ver 0.89 11.42 0.06 0.47 par:pre; +prodigue prodigue adj s 1.90 3.65 1.88 3.04 +prodiguent prodiguer ver 0.89 11.42 0.00 0.61 ind:pre:3p; +prodiguer prodiguer ver 0.89 11.42 0.09 1.76 inf; +prodiguera prodiguer ver 0.89 11.42 0.01 0.07 ind:fut:3s; +prodiguerais prodiguer ver 0.89 11.42 0.00 0.07 cnd:pre:2s; +prodigueras prodiguer ver 0.89 11.42 0.01 0.00 ind:fut:2s; +prodigueront prodiguer ver 0.89 11.42 0.00 0.07 ind:fut:3p; +prodigues prodiguer ver 0.89 11.42 0.04 0.07 ind:pre:2s; +prodiguions prodiguer ver 0.89 11.42 0.14 0.07 ind:imp:1p; +prodiguèrent prodiguer ver 0.89 11.42 0.00 0.27 ind:pas:3p; +prodigué prodiguer ver m s 0.89 11.42 0.31 1.49 par:pas; +prodiguée prodiguer ver f s 0.89 11.42 0.01 0.20 par:pas; +prodiguées prodiguer ver f p 0.89 11.42 0.11 0.81 par:pas; +prodigués prodiguer ver m p 0.89 11.42 0.03 0.88 par:pas; +prodrome prodrome nom m s 0.00 0.47 0.00 0.07 +prodromes prodrome nom m p 0.00 0.47 0.00 0.41 +producteur producteur nom m s 12.82 5.74 9.01 3.45 +producteurs producteur nom m p 12.82 5.74 3.19 2.03 +productif productif adj m s 1.66 0.81 0.89 0.34 +productifs productif adj m p 1.66 0.81 0.14 0.27 +production production nom f s 18.73 14.59 17.10 12.30 +productions production nom f p 18.73 14.59 1.63 2.30 +productive productif adj f s 1.66 0.81 0.46 0.07 +productives productif adj f p 1.66 0.81 0.17 0.14 +productivité productivité nom f s 0.75 0.34 0.75 0.34 +productrice producteur nom f s 12.82 5.74 0.63 0.27 +productrices producteur adj f p 1.34 1.01 0.07 0.07 +produira produire ver 49.81 68.92 1.71 0.61 ind:fut:3s; +produiraient produire ver 49.81 68.92 0.12 0.27 cnd:pre:3p; +produirais produire ver 49.81 68.92 0.05 0.00 cnd:pre:1s; +produirait produire ver 49.81 68.92 0.49 1.49 cnd:pre:3s; +produiras produire ver 49.81 68.92 0.00 0.07 ind:fut:2s; +produire produire ver 49.81 68.92 11.84 16.76 inf; +produirez produire ver 49.81 68.92 0.03 0.00 ind:fut:2p; +produiriez produire ver 49.81 68.92 0.01 0.00 cnd:pre:2p; +produirons produire ver 49.81 68.92 0.06 0.00 ind:fut:1p; +produiront produire ver 49.81 68.92 0.22 0.07 ind:fut:3p; +produis produire ver 49.81 68.92 1.05 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +produisît produire ver 49.81 68.92 0.01 0.61 sub:imp:3s; +produisaient produire ver 49.81 68.92 0.09 1.69 ind:imp:3p; +produisais produire ver 49.81 68.92 0.07 0.07 ind:imp:1s;ind:imp:2s; +produisait produire ver 49.81 68.92 1.50 6.28 ind:imp:3s; +produisant produire ver 49.81 68.92 0.53 2.03 par:pre; +produise produire ver 49.81 68.92 2.15 1.08 sub:pre:1s;sub:pre:3s; +produisent produire ver 49.81 68.92 3.91 2.70 ind:pre:3p; +produises produire ver 49.81 68.92 0.01 0.00 sub:pre:2s; +produisez produire ver 49.81 68.92 0.27 0.07 imp:pre:2p;ind:pre:2p; +produisions produire ver 49.81 68.92 0.02 0.00 ind:imp:1p; +produisirent produire ver 49.81 68.92 0.01 0.27 ind:pas:3p; +produisis produire ver 49.81 68.92 0.00 0.07 ind:pas:1s; +produisit produire ver 49.81 68.92 0.74 5.88 ind:pas:3s; +produisons produire ver 49.81 68.92 0.84 0.07 imp:pre:1p;ind:pre:1p; +produit produire ver m s 49.81 68.92 20.16 22.57 ind:pre:3s;par:pas; +produite produire ver f s 49.81 68.92 1.34 3.31 par:pas; +produites produire ver f p 49.81 68.92 0.82 0.47 par:pas; +produits produit nom m p 28.80 23.99 14.17 11.28 +prof prof nom s 37.82 20.20 30.36 15.07 +profana profaner ver 3.12 2.50 0.23 0.07 ind:pas:3s; +profanaient profaner ver 3.12 2.50 0.00 0.07 ind:imp:3p; +profanait profaner ver 3.12 2.50 0.00 0.14 ind:imp:3s; +profanant profaner ver 3.12 2.50 0.01 0.14 par:pre; +profanateur profanateur nom m s 0.28 0.14 0.07 0.14 +profanateurs profanateur nom m p 0.28 0.14 0.21 0.00 +profanation profanation nom f s 1.21 1.08 1.04 0.95 +profanations profanation nom f p 1.21 1.08 0.16 0.14 +profanatoire profanatoire adj f s 0.00 0.07 0.00 0.07 +profane profane adj s 1.11 2.84 0.88 1.89 +profanent profaner ver 3.12 2.50 0.40 0.00 ind:pre:3p; +profaner profaner ver 3.12 2.50 0.70 0.41 inf; +profanera profaner ver 3.12 2.50 0.12 0.07 ind:fut:3s; +profanes profane adj p 1.11 2.84 0.23 0.95 +profanez profaner ver 3.12 2.50 0.15 0.07 imp:pre:2p;ind:pre:2p; +profanèrent profaner ver 3.12 2.50 0.00 0.07 ind:pas:3p; +profané profaner ver m s 3.12 2.50 0.89 0.47 par:pas; +profanée profaner ver f s 3.12 2.50 0.19 0.47 par:pas; +profanées profaner ver f p 3.12 2.50 0.11 0.20 par:pas; +profanés profaner ver m p 3.12 2.50 0.01 0.14 par:pas; +professa professer ver 0.47 3.51 0.00 0.07 ind:pas:3s; +professaient professer ver 0.47 3.51 0.00 0.34 ind:imp:3p; +professait professer ver 0.47 3.51 0.00 1.42 ind:imp:3s; +professant professer ver 0.47 3.51 0.00 0.20 par:pre; +professe professer ver 0.47 3.51 0.22 0.41 ind:pre:1s;ind:pre:3s; +professent professer ver 0.47 3.51 0.00 0.20 ind:pre:3p; +professer professer ver 0.47 3.51 0.11 0.07 inf; +professeur professeur nom s 98.55 63.92 90.02 49.53 +professeure professeur nom f s 98.55 63.92 0.17 0.00 +professeurs professeur nom p 98.55 63.92 8.35 14.39 +professiez professer ver 0.47 3.51 0.01 0.07 ind:imp:2p; +profession profession nom f s 9.93 15.81 9.46 13.99 +professionnalisme professionnalisme nom m s 1.03 0.34 1.03 0.34 +professionnel professionnel adj m s 23.09 20.61 11.75 7.23 +professionnelle professionnel adj f s 23.09 20.61 7.13 6.96 +professionnellement professionnellement adv 1.13 0.74 1.13 0.74 +professionnelles professionnel adj f p 23.09 20.61 1.24 3.51 +professionnels professionnel nom m p 12.91 6.82 4.29 3.24 +professions profession nom f p 9.93 15.81 0.46 1.82 +professons professer ver 0.47 3.51 0.00 0.07 ind:pre:1p; +professoral professoral adj m s 0.06 0.41 0.06 0.41 +professorat professorat nom m s 0.02 0.34 0.02 0.34 +professé professer ver m s 0.47 3.51 0.12 0.27 par:pas; +professées professer ver f p 0.47 3.51 0.00 0.20 par:pas; +profil profil nom m s 14.44 29.12 13.38 26.69 +profila profiler ver 1.67 6.62 0.00 0.68 ind:pas:3s; +profilage profilage nom m s 0.12 0.07 0.12 0.07 +profilaient profiler ver 1.67 6.62 0.00 0.74 ind:imp:3p; +profilait profiler ver 1.67 6.62 0.02 0.88 ind:imp:3s; +profilant profiler ver 1.67 6.62 0.00 0.61 par:pre; +profile profiler ver 1.67 6.62 1.16 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +profilent profiler ver 1.67 6.62 0.04 0.61 ind:pre:3p; +profiler profiler ver 1.67 6.62 0.35 1.15 inf; +profileur profileur nom m s 0.13 0.00 0.11 0.00 +profileuse profileur nom f s 0.13 0.00 0.01 0.00 +profils profil nom m p 14.44 29.12 1.06 2.43 +profilèrent profiler ver 1.67 6.62 0.00 0.07 ind:pas:3p; +profilé profiler ver m s 1.67 6.62 0.06 0.07 par:pas; +profilée profiler ver f s 1.67 6.62 0.02 0.47 par:pas; +profilées profiler ver f p 1.67 6.62 0.00 0.20 par:pas; +profilés profiler ver m p 1.67 6.62 0.02 0.07 par:pas; +profit profit nom m s 14.29 25.00 12.26 22.77 +profita profiter ver 67.20 91.22 0.13 7.84 ind:pas:3s; +profitabilité profitabilité nom f s 0.01 0.00 0.01 0.00 +profitable profitable adj s 1.64 1.96 1.32 1.42 +profitables profitable adj p 1.64 1.96 0.32 0.54 +profitai profiter ver 67.20 91.22 0.01 1.35 ind:pas:1s; +profitaient profiter ver 67.20 91.22 0.09 3.04 ind:imp:3p; +profitais profiter ver 67.20 91.22 0.60 1.28 ind:imp:1s;ind:imp:2s; +profitait profiter ver 67.20 91.22 0.52 5.95 ind:imp:3s; +profitant profiter ver 67.20 91.22 0.59 10.20 par:pre; +profite profiter ver 67.20 91.22 13.06 12.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +profitent profiter ver 67.20 91.22 1.67 3.24 ind:pre:3p; +profiter profiter ver 67.20 91.22 22.50 25.14 inf; +profitera profiter ver 67.20 91.22 0.76 0.74 ind:fut:3s; +profiterai profiter ver 67.20 91.22 1.00 0.47 ind:fut:1s; +profiteraient profiter ver 67.20 91.22 0.05 0.47 cnd:pre:3p; +profiterais profiter ver 67.20 91.22 0.31 0.27 cnd:pre:1s;cnd:pre:2s; +profiterait profiter ver 67.20 91.22 0.27 1.22 cnd:pre:3s; +profiteras profiter ver 67.20 91.22 0.23 0.07 ind:fut:2s; +profiterez profiter ver 67.20 91.22 0.18 0.07 ind:fut:2p; +profiteriez profiter ver 67.20 91.22 0.04 0.00 cnd:pre:2p; +profiterole profiterole nom f s 0.06 0.07 0.00 0.07 +profiteroles profiterole nom f p 0.06 0.07 0.06 0.00 +profiterons profiter ver 67.20 91.22 0.54 0.14 ind:fut:1p; +profiteront profiter ver 67.20 91.22 0.27 0.14 ind:fut:3p; +profites profiter ver 67.20 91.22 6.34 0.61 ind:pre:2s;sub:pre:2s; +profiteur profiteur nom m s 1.00 1.35 0.50 0.54 +profiteurs profiteur nom m p 1.00 1.35 0.47 0.74 +profiteuse profiteur nom f s 1.00 1.35 0.03 0.07 +profitez profiter ver 67.20 91.22 8.51 1.49 imp:pre:2p;ind:pre:2p; +profitiez profiter ver 67.20 91.22 0.19 0.07 ind:imp:2p; +profitions profiter ver 67.20 91.22 0.04 0.47 ind:imp:1p; +profitâmes profiter ver 67.20 91.22 0.00 0.14 ind:pas:1p; +profitons profiter ver 67.20 91.22 2.41 0.41 imp:pre:1p;ind:pre:1p; +profitât profiter ver 67.20 91.22 0.00 0.34 sub:imp:3s; +profits profit nom m p 14.29 25.00 2.04 2.23 +profitèrent profiter ver 67.20 91.22 0.00 0.95 ind:pas:3p; +profité profiter ver m s 67.20 91.22 6.89 12.16 par:pas; +profitée profiter ver f s 67.20 91.22 0.00 0.07 par:pas; +profond profond adj m s 42.41 105.74 24.72 47.77 +profonde profond adj f s 42.41 105.74 11.71 37.97 +profondes profond adj f p 42.41 105.74 3.80 11.55 +profondeur profondeur nom f s 13.30 32.64 8.84 17.84 +profondeurs profondeur nom f p 13.30 32.64 4.46 14.80 +profonds profond adj m p 42.41 105.74 2.19 8.45 +profondément profondément adv 19.00 34.59 19.00 34.59 +profs prof nom p 37.82 20.20 7.46 5.14 +profère proférer ver 0.88 8.24 0.22 1.01 ind:pre:3s; +profèrent proférer ver 0.88 8.24 0.01 0.14 ind:pre:3p; +proféra proférer ver 0.88 8.24 0.02 1.62 ind:pas:3s; +proféraient proférer ver 0.88 8.24 0.00 0.07 ind:imp:3p; +proférait proférer ver 0.88 8.24 0.01 0.95 ind:imp:3s; +proférant proférer ver 0.88 8.24 0.05 0.54 par:pre; +proférations profération nom f p 0.00 0.07 0.00 0.07 +proférer proférer ver 0.88 8.24 0.36 1.89 inf; +proféreraient proférer ver 0.88 8.24 0.00 0.07 cnd:pre:3p; +proférez proférer ver 0.88 8.24 0.02 0.00 ind:pre:2p; +proférions proférer ver 0.88 8.24 0.00 0.07 ind:imp:1p; +proférât proférer ver 0.88 8.24 0.00 0.07 sub:imp:3s; +proféré proférer ver m s 0.88 8.24 0.16 0.88 par:pas; +proférée proférer ver f s 0.88 8.24 0.02 0.34 par:pas; +proférées proférer ver f p 0.88 8.24 0.01 0.27 par:pas; +proférés proférer ver m p 0.88 8.24 0.00 0.34 par:pas; +profus profus adj m s 0.01 0.47 0.00 0.14 +profuse profus adj f s 0.01 0.47 0.01 0.27 +profuses profus adj f p 0.01 0.47 0.00 0.07 +profusion profusion nom f s 0.24 4.73 0.24 4.66 +profusions profusion nom f p 0.24 4.73 0.00 0.07 +progestérone progestérone nom f s 0.07 0.07 0.07 0.07 +prognathe prognathe adj s 0.00 0.47 0.00 0.47 +prognathisme prognathisme nom m s 0.01 0.00 0.01 0.00 +programma programmer ver 7.14 2.30 0.01 0.14 ind:pas:3s; +programmable programmable adj f s 0.06 0.00 0.04 0.00 +programmables programmable adj p 0.06 0.00 0.01 0.00 +programmaient programmer ver 7.14 2.30 0.01 0.07 ind:imp:3p; +programmait programmer ver 7.14 2.30 0.01 0.14 ind:imp:3s; +programmateur programmateur nom m s 0.19 0.14 0.04 0.07 +programmateurs programmateur nom m p 0.19 0.14 0.14 0.07 +programmation programmation nom f s 1.09 0.41 1.09 0.41 +programmatrice programmateur adj f s 0.14 0.00 0.10 0.00 +programme programme nom m s 49.11 26.49 44.16 21.89 +programment programmer ver 7.14 2.30 0.06 0.14 ind:pre:3p; +programmer programmer ver 7.14 2.30 1.36 0.14 inf; +programmerai programmer ver 7.14 2.30 0.04 0.00 ind:fut:1s; +programmes programme nom m p 49.11 26.49 4.95 4.59 +programmeur programmeur nom m s 0.64 0.00 0.38 0.00 +programmeurs programmeur nom m p 0.64 0.00 0.21 0.00 +programmeuse programmeur nom f s 0.64 0.00 0.05 0.00 +programmez programmer ver 7.14 2.30 0.33 0.07 imp:pre:2p;ind:pre:2p; +programmons programmer ver 7.14 2.30 0.01 0.00 imp:pre:1p; +programmé programmer ver m s 7.14 2.30 3.10 0.68 par:pas; +programmée programmer ver f s 7.14 2.30 0.78 0.27 par:pas; +programmées programmer ver f p 7.14 2.30 0.32 0.27 par:pas; +programmés programmer ver m p 7.14 2.30 0.45 0.27 par:pas; +progressa progresser ver 9.92 15.81 0.01 0.47 ind:pas:3s; +progressai progresser ver 9.92 15.81 0.00 0.14 ind:pas:1s; +progressaient progresser ver 9.92 15.81 0.01 0.95 ind:imp:3p; +progressais progresser ver 9.92 15.81 0.13 0.27 ind:imp:1s; +progressait progresser ver 9.92 15.81 0.22 2.91 ind:imp:3s; +progressant progresser ver 9.92 15.81 0.04 1.82 par:pre; +progresse progresser ver 9.92 15.81 3.74 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +progressent progresser ver 9.92 15.81 0.52 1.08 ind:pre:3p; +progresser progresser ver 9.92 15.81 2.23 3.04 inf; +progressera progresser ver 9.92 15.81 0.22 0.00 ind:fut:3s; +progresseraient progresser ver 9.92 15.81 0.00 0.07 cnd:pre:3p; +progresserais progresser ver 9.92 15.81 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +progresserait progresser ver 9.92 15.81 0.01 0.07 cnd:pre:3s; +progresserez progresser ver 9.92 15.81 0.04 0.00 ind:fut:2p; +progresserons progresser ver 9.92 15.81 0.16 0.00 ind:fut:1p; +progresseront progresser ver 9.92 15.81 0.03 0.07 ind:fut:3p; +progresses progresser ver 9.92 15.81 0.63 0.00 ind:pre:2s; +progressez progresser ver 9.92 15.81 0.36 0.00 imp:pre:2p;ind:pre:2p; +progressif progressif adj m s 1.01 5.27 0.42 2.09 +progression progression nom f s 1.73 6.62 1.61 6.62 +progressions progression nom f p 1.73 6.62 0.13 0.00 +progressisme progressisme nom m s 0.01 0.34 0.01 0.34 +progressiste progressiste adj s 1.08 1.08 0.81 0.68 +progressistes progressiste adj p 1.08 1.08 0.28 0.41 +progressive progressif adj f s 1.01 5.27 0.57 2.97 +progressivement progressivement adv 1.44 8.24 1.44 8.24 +progressives progressif adj f p 1.01 5.27 0.02 0.20 +progressons progresser ver 9.92 15.81 0.55 0.27 imp:pre:1p;ind:pre:1p; +progressèrent progresser ver 9.92 15.81 0.00 0.07 ind:pas:3p; +progressé progresser ver m s 9.92 15.81 0.98 1.15 par:pas; +progressée progresser ver f s 9.92 15.81 0.01 0.00 par:pas; +progrès progrès nom m 18.52 29.73 18.52 29.73 +progéniteur progéniteur nom m s 0.00 0.07 0.00 0.07 +progéniture progéniture nom f s 1.64 2.64 1.60 2.57 +progénitures progéniture nom f p 1.64 2.64 0.04 0.07 +prohibait prohiber ver 0.41 1.01 0.01 0.27 ind:imp:3s; +prohibe prohiber ver 0.41 1.01 0.02 0.14 ind:pre:3s; +prohibent prohiber ver 0.41 1.01 0.01 0.00 ind:pre:3p; +prohibition prohibition nom f s 0.79 0.54 0.79 0.54 +prohibitive prohibitif adj f s 0.02 0.00 0.02 0.00 +prohibé prohiber ver m s 0.41 1.01 0.19 0.27 par:pas; +prohibée prohibé adj f s 0.41 0.61 0.18 0.20 +prohibées prohibé adj f p 0.41 0.61 0.04 0.07 +prohibés prohibé adj m p 0.41 0.61 0.15 0.07 +proie proie nom f s 10.61 32.50 9.19 29.59 +proies proie nom f p 10.61 32.50 1.42 2.91 +projecteur projecteur nom m s 5.02 12.91 3.09 5.14 +projecteurs projecteur nom m p 5.02 12.91 1.93 7.77 +projectif projectif adj m s 0.01 0.00 0.01 0.00 +projectile projectile nom m s 1.40 4.46 0.82 1.69 +projectiles projectile nom m p 1.40 4.46 0.58 2.77 +projection projection nom f s 4.66 6.69 3.75 5.41 +projectionniste projectionniste nom s 0.52 0.14 0.50 0.14 +projectionnistes projectionniste nom p 0.52 0.14 0.02 0.00 +projections projection nom f p 4.66 6.69 0.91 1.28 +projet projet nom m s 69.59 70.00 44.18 39.86 +projeta projeter ver 9.75 32.77 0.03 1.28 ind:pas:3s; +projetai projeter ver 9.75 32.77 0.00 0.41 ind:pas:1s; +projetaient projeter ver 9.75 32.77 0.19 1.76 ind:imp:3p; +projetais projeter ver 9.75 32.77 0.24 0.74 ind:imp:1s;ind:imp:2s; +projetait projeter ver 9.75 32.77 0.00 6.69 ind:imp:3s; +projetant projeter ver 9.75 32.77 0.25 2.16 par:pre; +projeter projeter ver 9.75 32.77 1.59 3.11 inf; +projetez projeter ver 9.75 32.77 0.28 0.00 imp:pre:2p;ind:pre:2p; +projetiez projeter ver 9.75 32.77 0.05 0.00 ind:imp:2p; +projetions projeter ver 9.75 32.77 0.05 0.20 ind:imp:1p; +projetâmes projeter ver 9.75 32.77 0.01 0.07 ind:pas:1p; +projetons projeter ver 9.75 32.77 0.38 0.07 imp:pre:1p;ind:pre:1p; +projetât projeter ver 9.75 32.77 0.00 0.14 sub:imp:3s; +projets projet nom m p 69.59 70.00 25.41 30.14 +projette projeter ver 9.75 32.77 2.34 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +projettent projeter ver 9.75 32.77 0.39 0.81 ind:pre:3p; +projettera projeter ver 9.75 32.77 0.05 0.07 ind:fut:3s; +projetterait projeter ver 9.75 32.77 0.00 0.07 cnd:pre:3s; +projetteriez projeter ver 9.75 32.77 0.00 0.07 cnd:pre:2p; +projetterons projeter ver 9.75 32.77 0.02 0.00 ind:fut:1p; +projettes projeter ver 9.75 32.77 0.33 0.00 ind:pre:2s; +projetèrent projeter ver 9.75 32.77 0.01 0.07 ind:pas:3p; +projeté projeter ver m s 9.75 32.77 2.31 5.54 par:pas; +projetée projeter ver f s 9.75 32.77 0.47 2.57 par:pas; +projetées projeter ver f p 9.75 32.77 0.14 0.41 par:pas; +projetés projeter ver m p 9.75 32.77 0.62 1.82 par:pas; +projo projo nom m s 0.66 0.14 0.36 0.00 +projos projo nom m p 0.66 0.14 0.30 0.14 +prolapsus prolapsus nom m 0.15 0.00 0.15 0.00 +prolifique prolifique adj s 0.20 1.62 0.17 0.95 +prolifiques prolifique adj p 0.20 1.62 0.03 0.68 +prolifère proliférer ver 0.73 2.09 0.16 0.61 ind:pre:1s;ind:pre:3s; +prolifèrent proliférer ver 0.73 2.09 0.21 0.27 ind:pre:3p; +proliféraient proliférer ver 0.73 2.09 0.00 0.27 ind:imp:3p; +proliférait proliférer ver 0.73 2.09 0.01 0.14 ind:imp:3s; +proliférant proliférer ver 0.73 2.09 0.01 0.00 par:pre; +proliférante proliférant adj f s 0.00 0.54 0.00 0.14 +proliférantes proliférant adj f p 0.00 0.54 0.00 0.27 +proliférants proliférant adj m p 0.00 0.54 0.00 0.07 +prolifération prolifération nom f s 0.37 1.08 0.37 1.08 +proliférer proliférer ver 0.73 2.09 0.30 0.54 inf; +proliférera proliférer ver 0.73 2.09 0.01 0.00 ind:fut:3s; +proliféré proliférer ver m s 0.73 2.09 0.03 0.27 par:pas; +proline proline nom f s 0.03 0.00 0.03 0.00 +prolixe prolixe adj s 0.18 1.62 0.18 1.28 +prolixes prolixe adj p 0.18 1.62 0.00 0.34 +prolixité prolixité nom f s 0.00 0.20 0.00 0.20 +prolo prolo nom s 0.90 3.04 0.58 1.35 +prologue prologue nom m s 1.38 1.42 1.38 1.42 +prolongateur prolongateur nom m s 0.01 0.00 0.01 0.00 +prolongation prolongation nom f s 0.97 0.81 0.74 0.54 +prolongations prolongation nom f p 0.97 0.81 0.23 0.27 +prolonge prolonger ver 5.27 35.00 0.99 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prolongea prolonger ver 5.27 35.00 0.13 1.89 ind:pas:3s; +prolongeaient prolonger ver 5.27 35.00 0.00 2.09 ind:imp:3p; +prolongeais prolonger ver 5.27 35.00 0.00 0.27 ind:imp:1s; +prolongeait prolonger ver 5.27 35.00 0.11 4.46 ind:imp:3s; +prolongeant prolonger ver 5.27 35.00 0.16 2.57 par:pre; +prolongement prolongement nom m s 0.36 4.66 0.35 3.65 +prolongements prolongement nom m p 0.36 4.66 0.01 1.01 +prolongent prolonger ver 5.27 35.00 0.19 0.95 ind:pre:3p; +prolongeât prolonger ver 5.27 35.00 0.00 0.34 sub:imp:3s; +prolonger prolonger ver 5.27 35.00 2.42 9.39 inf; +prolongera prolonger ver 5.27 35.00 0.11 0.14 ind:fut:3s; +prolongeraient prolonger ver 5.27 35.00 0.00 0.27 cnd:pre:3p; +prolongerait prolonger ver 5.27 35.00 0.00 0.74 cnd:pre:3s; +prolongerons prolonger ver 5.27 35.00 0.01 0.07 ind:fut:1p; +prolonges prolonger ver 5.27 35.00 0.04 0.07 ind:pre:2s; +prolongez prolonger ver 5.27 35.00 0.00 0.07 ind:pre:2p; +prolongèrent prolonger ver 5.27 35.00 0.01 0.41 ind:pas:3p; +prolongé prolonger ver m s 5.27 35.00 0.41 2.97 par:pas; +prolongée prolongé adj f s 1.14 6.49 0.59 2.23 +prolongées prolongé adj f p 1.14 6.49 0.06 0.74 +prolongés prolongé adj m p 1.14 6.49 0.17 0.81 +prolos prolo nom p 0.90 3.04 0.32 1.69 +prolégomènes prolégomènes nom m p 0.00 0.68 0.00 0.68 +prolétaire prolétaire nom s 1.79 3.78 0.83 1.35 +prolétaires prolétaire nom p 1.79 3.78 0.96 2.43 +prolétariat prolétariat nom m s 1.12 3.65 1.12 3.58 +prolétariats prolétariat nom m p 1.12 3.65 0.00 0.07 +prolétarien prolétarien adj m s 0.56 2.36 0.14 0.47 +prolétarienne prolétarien adj f s 0.56 2.36 0.42 1.55 +prolétariennes prolétarien adj f p 0.56 2.36 0.00 0.20 +prolétariens prolétarien adj m p 0.56 2.36 0.00 0.14 +prolétarisation prolétarisation nom f s 0.00 0.14 0.00 0.14 +prolétariser prolétariser ver 0.00 0.14 0.00 0.14 inf; +promîmes promettre ver 185.26 101.42 0.01 0.07 ind:pas:1p; +promît promettre ver 185.26 101.42 0.00 0.14 sub:imp:3s; +promazine promazine nom f s 0.01 0.00 0.01 0.00 +promena promener ver 37.80 97.77 0.01 4.26 ind:pas:3s; +promenade promenade nom f s 15.34 58.11 13.45 42.43 +promenades promenade nom f p 15.34 58.11 1.88 15.68 +promenai promener ver 37.80 97.77 0.01 1.42 ind:pas:1s; +promenaient promener ver 37.80 97.77 0.23 5.68 ind:imp:3p; +promenais promener ver 37.80 97.77 1.84 2.84 ind:imp:1s;ind:imp:2s; +promenait promener ver 37.80 97.77 1.33 12.50 ind:imp:3s; +promenant promener ver 37.80 97.77 0.68 6.82 par:pre; +promener promener ver 37.80 97.77 20.02 32.43 inf;;inf;;inf;; +promeneur promeneur nom m s 0.57 8.92 0.22 2.77 +promeneurs promeneur nom m p 0.57 8.92 0.33 5.47 +promeneuse promeneur nom f s 0.57 8.92 0.02 0.27 +promeneuses promeneur nom f p 0.57 8.92 0.00 0.41 +promenez promener ver 37.80 97.77 0.91 0.61 imp:pre:2p;ind:pre:2p; +promeniez promener ver 37.80 97.77 0.03 0.20 ind:imp:2p; +promenions promener ver 37.80 97.77 0.21 1.89 ind:imp:1p; +promenoir promenoir nom m s 0.00 0.54 0.00 0.54 +promenâmes promener ver 37.80 97.77 0.01 0.20 ind:pas:1p; +promenons promener ver 37.80 97.77 0.15 0.74 imp:pre:1p;ind:pre:1p; +promenât promener ver 37.80 97.77 0.00 0.07 sub:imp:3s; +promenèrent promener ver 37.80 97.77 0.00 1.35 ind:pas:3p; +promené promener ver m s 37.80 97.77 0.85 4.26 par:pas; +promenée promener ver f s 37.80 97.77 0.39 2.09 par:pas; +promenées promener ver f p 37.80 97.77 0.02 0.34 par:pas; +promenés promener ver m p 37.80 97.77 0.75 2.57 par:pas; +promesse promesse nom f s 32.20 40.20 20.45 21.76 +promesses promesse nom f p 32.20 40.20 11.75 18.45 +promet promettre ver 185.26 101.42 8.16 6.35 ind:pre:3s; +promets promettre ver 185.26 101.42 68.81 12.30 imp:pre:2s;ind:pre:1s;ind:pre:2s; +promettaient promettre ver 185.26 101.42 0.17 1.82 ind:imp:3p; +promettais promettre ver 185.26 101.42 0.39 1.69 ind:imp:1s;ind:imp:2s; +promettait promettre ver 185.26 101.42 0.82 8.72 ind:imp:3s; +promettant promettre ver 185.26 101.42 0.77 3.38 par:pre; +promette promettre ver 185.26 101.42 0.67 0.34 sub:pre:1s;sub:pre:3s; +promettent promettre ver 185.26 101.42 0.77 1.28 ind:pre:3p; +promettes promettre ver 185.26 101.42 0.67 0.07 sub:pre:2s; +prometteur prometteur adj m s 3.96 2.57 2.75 1.15 +prometteurs prometteur adj m p 3.96 2.57 0.29 0.61 +prometteuse prometteur adj f s 3.96 2.57 0.76 0.54 +prometteuses prometteur adj f p 3.96 2.57 0.16 0.27 +promettez promettre ver 185.26 101.42 7.25 1.42 imp:pre:2p;ind:pre:2p; +promettiez promettre ver 185.26 101.42 0.19 0.14 ind:imp:2p; +promettons promettre ver 185.26 101.42 0.76 0.20 imp:pre:1p;ind:pre:1p; +promettra promettre ver 185.26 101.42 0.03 0.00 ind:fut:3s; +promettrai promettre ver 185.26 101.42 0.28 0.00 ind:fut:1s; +promettraient promettre ver 185.26 101.42 0.00 0.07 cnd:pre:3p; +promettrais promettre ver 185.26 101.42 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +promettrait promettre ver 185.26 101.42 0.00 0.14 cnd:pre:3s; +promettras promettre ver 185.26 101.42 0.00 0.07 ind:fut:2s; +promettre promettre ver 185.26 101.42 10.05 7.16 inf; +promettriez promettre ver 185.26 101.42 0.01 0.00 cnd:pre:2p; +promettront promettre ver 185.26 101.42 0.01 0.14 ind:fut:3p; +promeut promouvoir ver 6.08 3.11 0.04 0.00 ind:pre:3s; +promirent promettre ver 185.26 101.42 0.01 0.34 ind:pas:3p; +promis promettre ver m 185.26 101.42 82.83 42.43 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +promiscuité promiscuité nom f s 0.57 4.26 0.57 3.85 +promiscuités promiscuité nom f p 0.57 4.26 0.00 0.41 +promise promis adj f s 10.21 6.62 2.26 4.12 +promises promettre ver f p 185.26 101.42 0.34 0.81 par:pas; +promit promettre ver 185.26 101.42 0.52 10.61 ind:pas:3s; +promo promo nom f s 4.86 0.34 4.74 0.34 +promontoire promontoire nom m s 0.18 3.24 0.18 2.77 +promontoires promontoire nom m p 0.18 3.24 0.00 0.47 +promos promo nom f p 4.86 0.34 0.12 0.00 +promoteur promoteur nom m s 1.41 1.82 1.12 0.81 +promoteurs promoteur nom m p 1.41 1.82 0.28 1.01 +promotion promotion nom f s 14.81 7.64 14.12 6.55 +promotionnait promotionner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +promotionnel promotionnel adj m s 0.23 0.14 0.10 0.07 +promotionnelle promotionnel adj f s 0.23 0.14 0.08 0.00 +promotionnelles promotionnel adj f p 0.23 0.14 0.05 0.07 +promotions promotion nom f p 14.81 7.64 0.70 1.08 +promotrice promoteur nom f s 1.41 1.82 0.01 0.00 +promouvaient promouvoir ver 6.08 3.11 0.01 0.07 ind:imp:3p; +promouvez promouvoir ver 6.08 3.11 0.01 0.00 ind:pre:2p; +promouvoir promouvoir ver 6.08 3.11 1.56 0.74 inf; +prompt prompt adj m s 2.06 8.65 1.70 3.72 +prompte prompt adj f s 2.06 8.65 0.22 2.57 +promptement promptement adv 0.35 2.70 0.35 2.70 +promptes prompt adj f p 2.06 8.65 0.03 0.61 +prompteur prompteur nom m s 0.24 0.07 0.21 0.00 +prompteurs prompteur nom m p 0.24 0.07 0.03 0.07 +promptitude promptitude nom f s 0.21 2.23 0.21 2.23 +prompto prompto adv 0.00 0.07 0.00 0.07 +prompts prompt adj m p 2.06 8.65 0.12 1.76 +promène promener ver 37.80 97.77 6.97 11.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +promènent promener ver 37.80 97.77 1.58 3.11 ind:pre:3p; +promènera promener ver 37.80 97.77 0.30 0.14 ind:fut:3s; +promènerai promener ver 37.80 97.77 0.06 0.81 ind:fut:1s; +promèneraient promener ver 37.80 97.77 0.12 0.20 cnd:pre:3p; +promènerais promener ver 37.80 97.77 0.01 0.27 cnd:pre:1s; +promènerait promener ver 37.80 97.77 0.16 0.34 cnd:pre:3s; +promèneras promener ver 37.80 97.77 0.03 0.14 ind:fut:2s; +promènerez promener ver 37.80 97.77 0.04 0.07 ind:fut:2p; +promènerions promener ver 37.80 97.77 0.00 0.07 cnd:pre:1p; +promènerons promener ver 37.80 97.77 0.01 0.14 ind:fut:1p; +promènes promener ver 37.80 97.77 1.08 0.68 ind:pre:2s; +promu promouvoir ver m s 6.08 3.11 3.56 1.62 par:pas; +promue promouvoir ver f s 6.08 3.11 0.65 0.34 par:pas; +promues promouvoir ver f p 6.08 3.11 0.00 0.07 par:pas; +promulgation promulgation nom f s 0.04 0.34 0.04 0.34 +promulguait promulguer ver 0.24 1.82 0.00 0.20 ind:imp:3s; +promulguant promulguer ver 0.24 1.82 0.10 0.07 par:pre; +promulguer promulguer ver 0.24 1.82 0.06 0.41 inf; +promulguera promulguer ver 0.24 1.82 0.00 0.07 ind:fut:3s; +promulgué promulguer ver m s 0.24 1.82 0.04 0.20 par:pas; +promulguée promulguer ver f s 0.24 1.82 0.01 0.34 par:pas; +promulguées promulguer ver f p 0.24 1.82 0.03 0.41 par:pas; +promulgués promulguer ver m p 0.24 1.82 0.00 0.14 par:pas; +promus promouvoir ver m p 6.08 3.11 0.23 0.20 ind:pas:1s;par:pas; +promut promouvoir ver 6.08 3.11 0.01 0.07 ind:pas:3s; +prométhéen prométhéen adj m s 0.04 0.00 0.03 0.00 +prométhéenne prométhéen adj f s 0.04 0.00 0.01 0.00 +pronateurs pronateur adj m p 0.01 0.00 0.01 0.00 +pronation pronation nom f s 0.04 0.14 0.04 0.14 +pronom pronom nom m s 0.22 0.74 0.12 0.68 +pronominal pronominal adj m s 0.00 0.20 0.00 0.07 +pronominale pronominal adj f s 0.00 0.20 0.00 0.07 +pronominaux pronominal adj m p 0.00 0.20 0.00 0.07 +pronoms pronom nom m p 0.22 0.74 0.10 0.07 +prononce prononcer ver 24.81 86.08 5.82 9.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +prononcent prononcer ver 24.81 86.08 0.51 0.74 ind:pre:3p; +prononcer prononcer ver 24.81 86.08 7.56 21.76 inf; +prononcera prononcer ver 24.81 86.08 0.10 0.54 ind:fut:3s; +prononcerai prononcer ver 24.81 86.08 0.20 0.00 ind:fut:1s; +prononceraient prononcer ver 24.81 86.08 0.00 0.14 cnd:pre:3p; +prononcerais prononcer ver 24.81 86.08 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +prononcerait prononcer ver 24.81 86.08 0.03 0.47 cnd:pre:3s; +prononceras prononcer ver 24.81 86.08 0.03 0.00 ind:fut:2s; +prononcerez prononcer ver 24.81 86.08 0.02 0.14 ind:fut:2p; +prononceriez prononcer ver 24.81 86.08 0.00 0.07 cnd:pre:2p; +prononcerons prononcer ver 24.81 86.08 0.12 0.00 ind:fut:1p; +prononceront prononcer ver 24.81 86.08 0.02 0.14 ind:fut:3p; +prononces prononcer ver 24.81 86.08 0.85 0.00 ind:pre:2s; +prononcez prononcer ver 24.81 86.08 0.91 0.41 imp:pre:2p;ind:pre:2p; +prononciation prononciation nom f s 0.68 1.69 0.67 1.55 +prononciations prononciation nom f p 0.68 1.69 0.01 0.14 +prononciez prononcer ver 24.81 86.08 0.18 0.00 ind:imp:2p; +prononcions prononcer ver 24.81 86.08 0.04 0.14 ind:imp:1p; +prononcèrent prononcer ver 24.81 86.08 0.00 0.41 ind:pas:3p; +prononcé prononcer ver m s 24.81 86.08 4.99 16.69 par:pas; +prononcée prononcer ver f s 24.81 86.08 0.57 4.59 par:pas; +prononcées prononcer ver f p 24.81 86.08 0.18 1.69 par:pas; +prononcés prononcer ver m p 24.81 86.08 0.50 4.12 par:pas; +prononça prononcer ver 24.81 86.08 0.58 8.78 ind:pas:3s; +prononçable prononçable adj s 0.00 0.27 0.00 0.27 +prononçai prononcer ver 24.81 86.08 0.01 1.28 ind:pas:1s; +prononçaient prononcer ver 24.81 86.08 0.01 1.15 ind:imp:3p; +prononçais prononcer ver 24.81 86.08 0.05 0.47 ind:imp:1s; +prononçait prononcer ver 24.81 86.08 0.38 8.58 ind:imp:3s; +prononçant prononcer ver 24.81 86.08 0.95 3.85 par:pre; +prononças prononcer ver 24.81 86.08 0.10 0.00 ind:pas:2s; +prononçons prononcer ver 24.81 86.08 0.07 0.20 imp:pre:1p;ind:pre:1p; +prononçât prononcer ver 24.81 86.08 0.00 0.54 sub:imp:3s; +pronostic pronostic nom m s 1.78 2.70 0.90 1.01 +pronostics pronostic nom m p 1.78 2.70 0.89 1.69 +pronostiquait pronostiquer ver 0.12 0.47 0.01 0.20 ind:imp:3s; +pronostique pronostiquer ver 0.12 0.47 0.06 0.14 ind:pre:1s;ind:pre:3s; +pronostiquer pronostiquer ver 0.12 0.47 0.04 0.14 inf; +pronostiqueur pronostiqueur nom m s 0.06 0.00 0.06 0.00 +pronostiquiez pronostiquer ver 0.12 0.47 0.01 0.00 ind:imp:2p; +pronunciamiento pronunciamiento nom m s 0.00 0.14 0.00 0.14 +propagande propagande nom f s 4.98 10.07 4.98 9.86 +propagandes propagande nom f p 4.98 10.07 0.00 0.20 +propagandiste propagandiste nom s 0.02 0.54 0.01 0.20 +propagandistes propagandiste nom p 0.02 0.54 0.01 0.34 +propagateur propagateur nom m s 0.03 0.41 0.02 0.14 +propagateurs propagateur nom m p 0.03 0.41 0.01 0.27 +propagation propagation nom f s 0.59 0.95 0.59 0.88 +propagations propagation nom f p 0.59 0.95 0.00 0.07 +propage propager ver 6.42 6.01 1.98 0.81 ind:pre:1s;ind:pre:3s; +propagea propager ver 6.42 6.01 0.01 0.61 ind:pas:3s; +propageaient propager ver 6.42 6.01 0.00 0.61 ind:imp:3p; +propageait propager ver 6.42 6.01 0.20 1.01 ind:imp:3s; +propageant propager ver 6.42 6.01 0.08 0.27 par:pre; +propagent propager ver 6.42 6.01 0.30 0.68 ind:pre:3p; +propageât propager ver 6.42 6.01 0.00 0.07 sub:imp:3s; +propager propager ver 6.42 6.01 1.99 0.88 inf; +propagera propager ver 6.42 6.01 0.41 0.00 ind:fut:3s; +propageraient propager ver 6.42 6.01 0.00 0.07 cnd:pre:3p; +propagerait propager ver 6.42 6.01 0.08 0.00 cnd:pre:3s; +propagez propager ver 6.42 6.01 0.05 0.14 imp:pre:2p;ind:pre:2p; +propagèrent propager ver 6.42 6.01 0.01 0.20 ind:pas:3p; +propagé propager ver m s 6.42 6.01 0.96 0.34 par:pas; +propagée propager ver f s 6.42 6.01 0.30 0.14 par:pas; +propagées propager ver f p 6.42 6.01 0.02 0.14 par:pas; +propagés propager ver m p 6.42 6.01 0.02 0.07 par:pas; +propane propane nom m s 0.39 0.00 0.39 0.00 +propension propension nom f s 0.41 1.96 0.41 1.96 +propergol propergol nom m s 0.01 0.00 0.01 0.00 +prophase prophase nom f s 0.02 0.00 0.02 0.00 +prophète prophète nom m s 12.36 10.61 8.49 6.42 +prophètes prophète nom m p 12.36 10.61 2.83 4.05 +prophétesse prophète nom f s 12.36 10.61 1.04 0.14 +prophétie prophétie nom f s 5.36 3.51 3.69 1.89 +prophéties prophétie nom f p 5.36 3.51 1.66 1.62 +prophétique prophétique adj s 0.84 1.55 0.55 1.01 +prophétiquement prophétiquement adv 0.00 0.07 0.00 0.07 +prophétiques prophétique adj p 0.84 1.55 0.29 0.54 +prophétisaient prophétiser ver 0.43 1.35 0.00 0.20 ind:imp:3p; +prophétisait prophétiser ver 0.43 1.35 0.00 0.47 ind:imp:3s; +prophétisant prophétiser ver 0.43 1.35 0.02 0.00 par:pre; +prophétise prophétiser ver 0.43 1.35 0.02 0.27 imp:pre:2s;ind:pre:3s; +prophétisent prophétiser ver 0.43 1.35 0.02 0.07 ind:pre:3p; +prophétiser prophétiser ver 0.43 1.35 0.14 0.14 inf; +prophétisez prophétiser ver 0.43 1.35 0.00 0.07 ind:pre:2p; +prophétisé prophétiser ver m s 0.43 1.35 0.22 0.14 par:pas; +prophylactique prophylactique adj s 0.17 0.41 0.14 0.14 +prophylactiques prophylactique adj m p 0.17 0.41 0.03 0.27 +prophylaxie prophylaxie nom f s 0.04 0.14 0.04 0.14 +propice propice adj s 2.86 9.80 2.13 7.77 +propices propice adj p 2.86 9.80 0.73 2.03 +propionate propionate nom m s 0.01 0.07 0.01 0.07 +propitiatoire propitiatoire adj s 0.00 0.68 0.00 0.47 +propitiatoires propitiatoire adj f p 0.00 0.68 0.00 0.20 +propolis propolis nom m 0.10 0.00 0.10 0.00 +proportion proportion nom f s 3.17 12.70 1.30 4.26 +proportionnalité proportionnalité nom f s 0.12 0.00 0.12 0.00 +proportionnel proportionnel adj m s 0.86 1.08 0.20 0.34 +proportionnelle proportionnel adj f s 0.86 1.08 0.51 0.74 +proportionnellement proportionnellement adv 0.08 0.34 0.08 0.34 +proportionnelles proportionnel adj f p 0.86 1.08 0.15 0.00 +proportionner proportionner ver 0.07 1.22 0.00 0.14 inf; +proportionné proportionné adj m s 0.46 0.74 0.16 0.41 +proportionnée proportionné adj f s 0.46 0.74 0.26 0.20 +proportionnées proportionner ver f p 0.07 1.22 0.02 0.00 par:pas; +proportionnés proportionné adj m p 0.46 0.74 0.04 0.07 +proportions proportion nom f p 3.17 12.70 1.87 8.45 +propos propos nom m 115.21 106.28 115.21 106.28 +proposa proposer ver 70.00 119.66 0.52 22.91 ind:pas:3s; +proposai proposer ver 70.00 119.66 0.01 2.50 ind:pas:1s; +proposaient proposer ver 70.00 119.66 0.10 3.11 ind:imp:3p; +proposais proposer ver 70.00 119.66 0.80 3.11 ind:imp:1s;ind:imp:2s; +proposait proposer ver 70.00 119.66 0.48 15.61 ind:imp:3s; +proposant proposer ver 70.00 119.66 0.64 3.38 par:pre; +propose proposer ver 70.00 119.66 23.57 21.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +proposent proposer ver 70.00 119.66 1.21 2.16 ind:pre:3p; +proposer proposer ver 70.00 119.66 13.44 15.54 inf;; +proposera proposer ver 70.00 119.66 0.28 0.34 ind:fut:3s; +proposerai proposer ver 70.00 119.66 0.48 0.14 ind:fut:1s; +proposeraient proposer ver 70.00 119.66 0.03 0.14 cnd:pre:3p; +proposerais proposer ver 70.00 119.66 0.28 0.41 cnd:pre:1s;cnd:pre:2s; +proposerait proposer ver 70.00 119.66 0.01 0.74 cnd:pre:3s; +proposeras proposer ver 70.00 119.66 0.05 0.07 ind:fut:2s; +proposerez proposer ver 70.00 119.66 0.04 0.14 ind:fut:2p; +proposeriez proposer ver 70.00 119.66 0.01 0.00 cnd:pre:2p; +proposerions proposer ver 70.00 119.66 0.00 0.07 cnd:pre:1p; +proposerons proposer ver 70.00 119.66 0.19 0.00 ind:fut:1p; +proposeront proposer ver 70.00 119.66 0.13 0.14 ind:fut:3p; +proposes proposer ver 70.00 119.66 5.20 0.61 ind:pre:2s; +proposez proposer ver 70.00 119.66 3.30 1.82 imp:pre:2p;ind:pre:2p; +proposiez proposer ver 70.00 119.66 0.09 0.00 ind:imp:2p; +proposions proposer ver 70.00 119.66 0.04 0.41 ind:imp:1p; +proposition proposition nom f s 22.43 20.14 19.28 12.64 +propositions proposition nom f p 22.43 20.14 3.15 7.50 +proposâmes proposer ver 70.00 119.66 0.00 0.07 ind:pas:1p; +proposons proposer ver 70.00 119.66 1.13 0.27 imp:pre:1p;ind:pre:1p; +proposât proposer ver 70.00 119.66 0.00 0.41 sub:imp:3s; +proposèrent proposer ver 70.00 119.66 0.01 1.08 ind:pas:3p; +proposé proposer ver m s 70.00 119.66 16.86 18.92 imp:pre:2s;par:pas; +proposée proposer ver f s 70.00 119.66 0.44 1.96 par:pas; +proposées proposé adj f p 0.54 1.15 0.14 0.27 +proposés proposer ver m p 70.00 119.66 0.63 1.22 par:pas; +propre_à_rien propre_à_rien nom m s 0.00 0.07 0.00 0.07 +propre propre adj s 163.24 207.50 120.61 149.80 +proprement proprement adv 4.54 16.22 4.54 16.22 +propres propre adj p 163.24 207.50 42.63 57.70 +propret propret adj m s 0.18 2.03 0.02 0.81 +proprets propret adj m p 0.18 2.03 0.03 0.07 +proprette propret adj f s 0.18 2.03 0.10 0.54 +proprettes propret adj f p 0.18 2.03 0.02 0.61 +propreté propreté nom f s 2.17 7.97 2.17 7.97 +proprio proprio nom m s 3.55 4.12 3.08 3.78 +proprios proprio nom m p 3.55 4.12 0.47 0.34 +propriétaire propriétaire nom s 37.27 32.77 29.77 23.51 +propriétaires propriétaire nom p 37.27 32.77 7.50 9.26 +propriété propriété nom f s 22.70 20.61 19.18 17.43 +propriétés propriété nom f p 22.70 20.61 3.52 3.18 +propédeute propédeute nom s 0.00 0.07 0.00 0.07 +propulsa propulser ver 1.37 5.95 0.01 0.61 ind:pas:3s; +propulsaient propulser ver 1.37 5.95 0.00 0.14 ind:imp:3p; +propulsais propulser ver 1.37 5.95 0.00 0.07 ind:imp:1s; +propulsait propulser ver 1.37 5.95 0.01 0.47 ind:imp:3s; +propulsant propulser ver 1.37 5.95 0.04 0.27 par:pre; +propulse propulser ver 1.37 5.95 0.32 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +propulsent propulser ver 1.37 5.95 0.02 0.20 ind:pre:3p; +propulser propulser ver 1.37 5.95 0.22 0.74 inf; +propulsera propulser ver 1.37 5.95 0.07 0.00 ind:fut:3s; +propulserait propulser ver 1.37 5.95 0.01 0.00 cnd:pre:3s; +propulseur propulseur nom m s 1.88 0.07 0.69 0.07 +propulseurs propulseur nom m p 1.88 0.07 1.18 0.00 +propulsif propulsif adj m s 0.01 0.00 0.01 0.00 +propulsion propulsion nom f s 2.07 0.34 2.05 0.34 +propulsions propulsion nom f p 2.07 0.34 0.02 0.00 +propulsât propulser ver 1.37 5.95 0.00 0.07 sub:imp:3s; +propulsé propulser ver m s 1.37 5.95 0.36 1.35 par:pas; +propulsée propulser ver f s 1.37 5.95 0.19 0.88 par:pas; +propulsées propulser ver f p 1.37 5.95 0.02 0.07 par:pas; +propulsés propulser ver m p 1.37 5.95 0.10 0.20 par:pas; +propylène propylène nom m s 0.05 0.00 0.05 0.00 +propylées propylée nom m p 0.00 0.14 0.00 0.14 +prorata prorata nom m 0.15 0.20 0.15 0.20 +prorogation prorogation nom f s 0.04 0.07 0.04 0.07 +proroger proroger ver 0.10 0.14 0.10 0.00 inf; +prorogé proroger ver m s 0.10 0.14 0.00 0.14 par:pas; +pros pro nom p 19.45 2.03 5.00 0.41 +prosaïque prosaïque adj s 0.30 1.55 0.28 0.88 +prosaïquement prosaïquement adv 0.00 0.47 0.00 0.47 +prosaïques prosaïque adj p 0.30 1.55 0.03 0.68 +prosaïsme prosaïsme nom m s 0.00 0.14 0.00 0.14 +prosateur prosateur nom m s 0.00 0.20 0.00 0.14 +prosateurs prosateur nom m p 0.00 0.20 0.00 0.07 +proscenium proscenium nom m s 0.01 0.14 0.01 0.14 +proscription proscription nom f s 0.01 0.27 0.01 0.20 +proscriptions proscription nom f p 0.01 0.27 0.00 0.07 +proscrire proscrire ver 1.19 1.28 0.35 0.14 inf; +proscrit proscrire ver m s 1.19 1.28 0.53 0.27 ind:pre:3s;par:pas; +proscrite proscrire ver f s 1.19 1.28 0.02 0.07 par:pas; +proscrites proscrire ver f p 1.19 1.28 0.11 0.07 par:pas; +proscrits proscrit nom m p 0.55 0.54 0.33 0.41 +proscrivait proscrire ver 1.19 1.28 0.00 0.14 ind:imp:3s; +proscrivant proscrire ver 1.19 1.28 0.00 0.14 par:pre; +proscrivit proscrire ver 1.19 1.28 0.00 0.14 ind:pas:3s; +prose prose nom f s 0.81 3.31 0.81 3.31 +prosit prosit ono 0.38 0.41 0.38 0.41 +prosodie prosodie nom f s 0.00 0.27 0.00 0.27 +prosodique prosodique adj f s 0.00 0.07 0.00 0.07 +prosopopées prosopopée nom f p 0.00 0.07 0.00 0.07 +prosoviétique prosoviétique adj s 0.00 0.07 0.00 0.07 +prospect prospect nom m s 0.18 0.00 0.18 0.00 +prospectais prospecter ver 0.82 1.49 0.01 0.07 ind:imp:1s; +prospectait prospecter ver 0.82 1.49 0.01 0.20 ind:imp:3s; +prospectant prospecter ver 0.82 1.49 0.00 0.20 par:pre; +prospecte prospecter ver 0.82 1.49 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prospecter prospecter ver 0.82 1.49 0.66 0.68 inf; +prospecteur prospecteur nom m s 0.94 0.27 0.34 0.07 +prospecteurs prospecteur nom m p 0.94 0.27 0.60 0.20 +prospectif prospectif adj m s 0.00 0.34 0.00 0.20 +prospection prospection nom f s 0.17 2.70 0.17 2.30 +prospections prospection nom f p 0.17 2.70 0.00 0.41 +prospective prospective nom f s 0.02 0.14 0.02 0.14 +prospecté prospecter ver m s 0.82 1.49 0.11 0.14 par:pas; +prospectus prospectus nom m 2.06 6.49 2.06 6.49 +prospère prospère adj s 3.54 3.18 3.19 2.23 +prospèrent prospérer ver 1.31 2.03 0.16 0.41 ind:pre:3p; +prospères prospère adj p 3.54 3.18 0.35 0.95 +prospéra prospérer ver 1.31 2.03 0.05 0.14 ind:pas:3s; +prospéraient prospérer ver 1.31 2.03 0.00 0.41 ind:imp:3p; +prospérait prospérer ver 1.31 2.03 0.04 0.41 ind:imp:3s; +prospérer prospérer ver 1.31 2.03 0.44 0.47 inf; +prospérera prospérer ver 1.31 2.03 0.05 0.00 ind:fut:3s; +prospéreraient prospérer ver 1.31 2.03 0.01 0.00 cnd:pre:3p; +prospérité prospérité nom f s 3.09 5.14 3.08 4.93 +prospérités prospérité nom f p 3.09 5.14 0.01 0.20 +prospérons prospérer ver 1.31 2.03 0.01 0.00 ind:pre:1p; +prospérèrent prospérer ver 1.31 2.03 0.00 0.07 ind:pas:3p; +prospéré prospérer ver m s 1.31 2.03 0.34 0.00 par:pas; +prostate prostate nom f s 1.59 1.42 1.59 1.42 +prostatectomie prostatectomie nom f s 0.01 0.00 0.01 0.00 +prostatique prostatique adj s 0.04 0.20 0.04 0.20 +prostatite prostatite nom f s 0.11 0.00 0.11 0.00 +prosterna prosterner ver 1.75 4.73 0.01 0.68 ind:pas:3s; +prosternaient prosterner ver 1.75 4.73 0.04 0.07 ind:imp:3p; +prosternais prosterner ver 1.75 4.73 0.14 0.07 ind:imp:1s; +prosternait prosterner ver 1.75 4.73 0.00 0.20 ind:imp:3s; +prosternant prosterner ver 1.75 4.73 0.18 0.14 par:pre; +prosternation prosternation nom f s 0.11 0.27 0.09 0.07 +prosternations prosternation nom f p 0.11 0.27 0.02 0.20 +prosterne prosterner ver 1.75 4.73 0.52 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prosternent prosterner ver 1.75 4.73 0.12 0.07 ind:pre:3p; +prosterner prosterner ver 1.75 4.73 0.12 0.95 inf; +prosternera prosterner ver 1.75 4.73 0.07 0.00 ind:fut:3s; +prosternerait prosterner ver 1.75 4.73 0.00 0.07 cnd:pre:3s; +prosterneras prosterner ver 1.75 4.73 0.00 0.14 ind:fut:2s; +prosternerons prosterner ver 1.75 4.73 0.03 0.00 ind:fut:1p; +prosterneront prosterner ver 1.75 4.73 0.01 0.00 ind:fut:3p; +prosternez prosterner ver 1.75 4.73 0.49 0.14 imp:pre:2p;ind:pre:2p; +prosternons prosterner ver 1.75 4.73 0.01 0.00 imp:pre:1p; +prosternèrent prosterner ver 1.75 4.73 0.01 0.14 ind:pas:3p; +prosterné prosterner ver m s 1.75 4.73 0.01 1.15 par:pas; +prosternée prosterner ver f s 1.75 4.73 0.00 0.27 par:pas; +prosternées prosterner ver f p 1.75 4.73 0.00 0.14 par:pas; +prosternés prosterner ver m p 1.75 4.73 0.01 0.27 par:pas; +prosthétique prosthétique adj m s 0.01 0.00 0.01 0.00 +prostitua prostituer ver 3.24 1.49 0.00 0.07 ind:pas:3s; +prostituais prostituer ver 3.24 1.49 0.03 0.00 ind:imp:1s; +prostituait prostituer ver 3.24 1.49 0.16 0.20 ind:imp:3s; +prostituant prostituer ver 3.24 1.49 0.01 0.07 par:pre; +prostitue prostituer ver 3.24 1.49 0.92 0.07 ind:pre:1s;ind:pre:3s; +prostituent prostituer ver 3.24 1.49 0.13 0.07 ind:pre:3p; +prostituer prostituer ver 3.24 1.49 0.77 0.47 inf; +prostituerais prostituer ver 3.24 1.49 0.14 0.00 cnd:pre:2s; +prostitution prostitution nom f s 6.72 2.97 6.72 2.77 +prostitutionnel prostitutionnel adj m s 0.00 0.07 0.00 0.07 +prostitutions prostitution nom f p 6.72 2.97 0.00 0.20 +prostitué prostituer ver m s 3.24 1.49 0.44 0.00 par:pas; +prostituée prostitué nom f s 14.21 9.46 7.53 5.68 +prostituées prostitué nom f p 14.21 9.46 5.63 3.58 +prostitués prostitué nom m p 14.21 9.46 0.61 0.14 +prostrant prostrer ver 0.00 0.07 0.00 0.07 par:pre; +prostration prostration nom f s 0.14 1.01 0.14 0.95 +prostrations prostration nom f p 0.14 1.01 0.00 0.07 +prostré prostré adj m s 0.42 4.93 0.25 2.03 +prostrée prostré adj f s 0.42 4.93 0.15 2.36 +prostrées prostré adj f p 0.42 4.93 0.00 0.07 +prostrés prostré adj m p 0.42 4.93 0.02 0.47 +prosélyte prosélyte nom s 0.14 0.20 0.14 0.00 +prosélytes prosélyte nom p 0.14 0.20 0.00 0.20 +prosélytique prosélytique adj m s 0.00 0.07 0.00 0.07 +prosélytisme prosélytisme nom m s 0.20 0.47 0.20 0.47 +protagoniste protagoniste nom s 0.72 2.03 0.42 0.54 +protagonistes protagoniste nom p 0.72 2.03 0.30 1.49 +protal protal nom m s 0.01 0.20 0.01 0.20 +prote prote nom m s 0.00 1.35 0.00 1.22 +protecteur protecteur nom m s 3.79 5.61 2.71 4.26 +protecteurs protecteur nom m p 3.79 5.61 0.79 0.68 +protection protection nom f s 24.78 17.64 23.88 17.09 +protectionnisme protectionnisme nom m s 0.02 0.14 0.02 0.14 +protections protection nom f p 24.78 17.64 0.91 0.54 +protectorat protectorat nom m s 0.18 1.01 0.18 0.88 +protectorats protectorat nom m p 0.18 1.01 0.00 0.14 +protectrice protecteur adj f s 3.98 10.68 0.92 3.58 +protectrices protecteur adj f p 3.98 10.68 0.21 0.74 +protes prote nom m p 0.00 1.35 0.00 0.14 +protesta protester ver 10.13 38.58 0.04 8.99 ind:pas:3s; +protestai protester ver 10.13 38.58 0.00 2.43 ind:pas:1s; +protestaient protester ver 10.13 38.58 0.05 0.61 ind:imp:3p; +protestais protester ver 10.13 38.58 0.03 1.01 ind:imp:1s; +protestait protester ver 10.13 38.58 0.08 4.12 ind:imp:3s; +protestant protestant adj m s 2.66 3.99 0.91 1.42 +protestante protestant adj f s 2.66 3.99 0.91 1.15 +protestantes protestant adj f p 2.66 3.99 0.14 0.61 +protestantisme protestantisme nom m s 0.31 0.81 0.31 0.81 +protestants protestant nom m p 2.43 4.12 1.79 1.76 +protestataires protestataire nom p 0.07 0.07 0.07 0.07 +protestation protestation nom f s 3.14 13.45 1.69 6.49 +protestations protestation nom f p 3.14 13.45 1.45 6.96 +proteste protester ver 10.13 38.58 3.06 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +protestent protester ver 10.13 38.58 1.06 0.61 ind:pre:3p; +protester protester ver 10.13 38.58 3.44 8.65 inf; +protestera protester ver 10.13 38.58 0.31 0.14 ind:fut:3s; +protesterai protester ver 10.13 38.58 0.05 0.14 ind:fut:1s; +protesterais protester ver 10.13 38.58 0.01 0.20 cnd:pre:1s;cnd:pre:2s; +protesterait protester ver 10.13 38.58 0.02 0.07 cnd:pre:3s; +protesterons protester ver 10.13 38.58 0.02 0.00 ind:fut:1p; +protestes protester ver 10.13 38.58 0.04 0.14 ind:pre:2s; +protestez protester ver 10.13 38.58 0.52 0.61 imp:pre:2p;ind:pre:2p; +protestions protester ver 10.13 38.58 0.00 0.14 ind:imp:1p; +protestâmes protester ver 10.13 38.58 0.00 0.07 ind:pas:1p; +protestons protester ver 10.13 38.58 0.36 0.00 imp:pre:1p;ind:pre:1p; +protestât protester ver 10.13 38.58 0.00 0.07 sub:imp:3s; +protestèrent protester ver 10.13 38.58 0.01 0.20 ind:pas:3p; +protesté protester ver m s 10.13 38.58 0.88 2.64 par:pas; +protestés protester ver m p 10.13 38.58 0.01 0.00 par:pas; +proteus proteus nom m 0.62 0.00 0.62 0.00 +proèdre proèdre nom m s 0.00 0.07 0.00 0.07 +prothrombine prothrombine nom f s 0.04 0.00 0.04 0.00 +prothèse prothèse nom f s 2.11 1.69 1.73 0.68 +prothèses prothèse nom f p 2.11 1.69 0.39 1.01 +prothésiste prothésiste nom s 0.23 0.00 0.10 0.00 +prothésistes prothésiste nom p 0.23 0.00 0.14 0.00 +prothétique prothétique adj f s 0.01 0.00 0.01 0.00 +protide protide nom m s 0.14 0.07 0.00 0.07 +protides protide nom m p 0.14 0.07 0.14 0.00 +protidique protidique adj m s 0.01 0.00 0.01 0.00 +protistes protiste nom m p 0.01 0.00 0.01 0.00 +protococcus protococcus nom m 0.01 0.00 0.01 0.00 +protocolaire protocolaire adj s 0.06 1.22 0.06 0.95 +protocolaires protocolaire adj p 0.06 1.22 0.00 0.27 +protocole protocole nom m s 6.01 5.61 4.36 5.34 +protocoles protocole nom m p 6.01 5.61 1.66 0.27 +protocoques protocoque nom m p 0.01 0.00 0.01 0.00 +protohistoire protohistoire nom f s 0.00 0.14 0.00 0.14 +proton proton nom m s 0.53 0.14 0.21 0.07 +protonique protonique adj s 0.09 0.00 0.09 0.00 +protonotaire protonotaire nom m s 0.00 0.34 0.00 0.34 +protons proton nom m p 0.53 0.14 0.32 0.07 +protoplasme protoplasme nom m s 0.09 0.00 0.08 0.00 +protoplasmes protoplasme nom m p 0.09 0.00 0.01 0.00 +protoplasmique protoplasmique adj f s 0.00 0.07 0.00 0.07 +protoplaste protoplaste nom m s 0.01 0.00 0.01 0.00 +prototype prototype nom m s 2.81 1.08 2.29 0.74 +prototypes prototype nom m p 2.81 1.08 0.53 0.34 +protoxyde protoxyde nom m s 0.11 0.00 0.11 0.00 +protozoaire protozoaire nom m s 0.04 0.00 0.04 0.00 +protrusion protrusion nom f s 0.01 0.00 0.01 0.00 +protège_cahier protège_cahier nom m s 0.01 0.07 0.01 0.07 +protège_dents protège_dents nom m 0.10 0.27 0.10 0.27 +protège_slip protège_slip nom m s 0.03 0.00 0.03 0.00 +protège_tibia protège_tibia nom m s 0.02 0.00 0.02 0.00 +protège protéger ver 130.71 72.23 27.45 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +protègent protéger ver 130.71 72.23 3.87 2.43 ind:pre:3p;sub:pre:3p; +protèges protéger ver 130.71 72.23 2.37 0.27 ind:pre:2s;sub:pre:2s; +protéase protéase nom f s 0.01 0.00 0.01 0.00 +protubérance protubérance nom f s 0.42 0.74 0.33 0.47 +protubérances protubérance nom f p 0.42 0.74 0.09 0.27 +protubérant protubérant adj m s 0.04 0.34 0.04 0.07 +protubérante protubérant adj f s 0.04 0.34 0.00 0.07 +protubérantes protubérant adj f p 0.04 0.34 0.00 0.14 +protubérants protubérant adj m p 0.04 0.34 0.00 0.07 +protégea protéger ver 130.71 72.23 0.03 0.41 ind:pas:3s; +protégeai protéger ver 130.71 72.23 0.00 0.14 ind:pas:1s; +protégeaient protéger ver 130.71 72.23 0.81 2.97 ind:imp:3p; +protégeais protéger ver 130.71 72.23 1.10 0.47 ind:imp:1s;ind:imp:2s; +protégeait protéger ver 130.71 72.23 2.42 8.45 ind:imp:3s; +protégeant protéger ver 130.71 72.23 1.15 3.65 par:pre; +protégeons protéger ver 130.71 72.23 0.81 0.00 imp:pre:1p;ind:pre:1p; +protégeât protéger ver 130.71 72.23 0.00 0.07 sub:imp:3s; +protéger protéger ver 130.71 72.23 62.53 26.82 inf;;inf;;inf;;inf;; +protégera protéger ver 130.71 72.23 4.26 0.34 ind:fut:3s; +protégerai protéger ver 130.71 72.23 1.90 0.07 ind:fut:1s; +protégeraient protéger ver 130.71 72.23 0.09 0.27 cnd:pre:3p; +protégerais protéger ver 130.71 72.23 0.21 0.07 cnd:pre:1s;cnd:pre:2s; +protégerait protéger ver 130.71 72.23 0.40 0.95 cnd:pre:3s; +protégeras protéger ver 130.71 72.23 0.31 0.00 ind:fut:2s; +protégerez protéger ver 130.71 72.23 0.29 0.00 ind:fut:2p; +protégeriez protéger ver 130.71 72.23 0.06 0.00 cnd:pre:2p; +protégerons protéger ver 130.71 72.23 0.18 0.00 ind:fut:1p; +protégeront protéger ver 130.71 72.23 0.49 0.14 ind:fut:3p; +protégez protéger ver 130.71 72.23 5.38 0.34 imp:pre:2p;ind:pre:2p; +protégiez protéger ver 130.71 72.23 0.27 0.00 ind:imp:2p; +protégions protéger ver 130.71 72.23 0.14 0.20 ind:imp:1p; +protégé protéger ver m s 130.71 72.23 7.76 6.69 par:pas; +protégée protéger ver f s 130.71 72.23 3.68 3.85 par:pas; +protégées protéger ver f p 130.71 72.23 0.73 1.15 par:pas; +protégés protéger ver m p 130.71 72.23 2.03 2.97 par:pas; +protéiforme protéiforme adj s 0.01 0.14 0.01 0.14 +protéine protéine nom f s 3.59 0.47 0.89 0.07 +protéines protéine nom f p 3.59 0.47 2.71 0.41 +protéinique protéinique adj m s 0.01 0.00 0.01 0.00 +protéiné protéiné adj m s 0.20 0.00 0.08 0.00 +protéinée protéiné adj f s 0.20 0.00 0.12 0.00 +protéinurie protéinurie nom f s 0.04 0.00 0.04 0.00 +protéique protéique adj s 0.11 0.00 0.11 0.00 +protéolytique protéolytique adj f s 0.00 0.07 0.00 0.07 +protêt protêt nom m s 0.00 0.14 0.00 0.07 +protêts protêt nom m p 0.00 0.14 0.00 0.07 +proudhonisme proudhonisme nom m s 0.00 0.07 0.00 0.07 +proue proue nom f s 1.30 5.47 1.30 5.34 +proues proue nom f p 1.30 5.47 0.00 0.14 +prouesse prouesse nom f s 1.15 5.14 0.27 1.42 +prouesses prouesse nom f p 1.15 5.14 0.88 3.72 +proéminait proéminer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +proémine proéminer ver 0.00 0.14 0.00 0.07 ind:pre:3s; +proéminence proéminence nom f s 0.01 0.14 0.01 0.00 +proéminences proéminence nom f p 0.01 0.14 0.00 0.14 +proéminent proéminent adj m s 0.46 2.36 0.04 1.15 +proéminente proéminent adj f s 0.46 2.36 0.03 0.68 +proéminentes proéminent adj f p 0.46 2.36 0.15 0.20 +proéminents proéminent adj m p 0.46 2.36 0.25 0.34 +proustien proustien adj m s 0.02 0.14 0.02 0.00 +proustienne proustien adj f s 0.02 0.14 0.00 0.14 +prout prout ono 0.04 0.27 0.04 0.27 +prouts prout nom m p 0.32 0.00 0.07 0.00 +prouva prouver ver 88.82 52.43 0.04 0.88 ind:pas:3s; +prouvable prouvable adj s 0.02 0.07 0.02 0.07 +prouvai prouver ver 88.82 52.43 0.00 0.07 ind:pas:1s; +prouvaient prouver ver 88.82 52.43 0.14 1.22 ind:imp:3p; +prouvais prouver ver 88.82 52.43 0.08 0.07 ind:imp:1s; +prouvait prouver ver 88.82 52.43 0.53 5.14 ind:imp:3s; +prouvant prouver ver 88.82 52.43 1.09 1.42 par:pre; +prouve prouver ver 88.82 52.43 23.25 13.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +prouvent prouver ver 88.82 52.43 2.71 1.35 ind:pre:3p; +prouver prouver ver 88.82 52.43 41.05 21.15 inf; +prouvera prouver ver 88.82 52.43 2.18 0.27 ind:fut:3s; +prouverai prouver ver 88.82 52.43 2.82 0.34 ind:fut:1s; +prouveraient prouver ver 88.82 52.43 0.01 0.07 cnd:pre:3p; +prouverait prouver ver 88.82 52.43 0.91 0.54 cnd:pre:3s; +prouveras prouver ver 88.82 52.43 0.34 0.07 ind:fut:2s; +prouverez prouver ver 88.82 52.43 0.26 0.14 ind:fut:2p; +prouverons prouver ver 88.82 52.43 0.29 0.00 ind:fut:1p; +prouveront prouver ver 88.82 52.43 0.62 0.20 ind:fut:3p; +prouves prouver ver 88.82 52.43 0.45 0.00 ind:pre:2s; +prouvez prouver ver 88.82 52.43 2.44 0.07 imp:pre:2p;ind:pre:2p; +prouviez prouver ver 88.82 52.43 0.33 0.00 ind:imp:2p; +prouvons prouver ver 88.82 52.43 0.27 0.07 imp:pre:1p;ind:pre:1p; +prouvèrent prouver ver 88.82 52.43 0.01 0.20 ind:pas:3p; +prouvé prouver ver m s 88.82 52.43 8.53 5.41 par:pas; +prouvée prouver ver f s 88.82 52.43 0.24 0.34 par:pas; +prouvées prouver ver f p 88.82 52.43 0.05 0.00 par:pas; +prouvés prouver ver m p 88.82 52.43 0.20 0.00 par:pas; +provenaient provenir ver 13.66 15.34 0.41 1.55 ind:imp:3p; +provenait provenir ver 13.66 15.34 0.98 3.04 ind:imp:3s; +provenance provenance nom f s 3.73 5.27 3.73 4.80 +provenances provenance nom f p 3.73 5.27 0.00 0.47 +provenant provenir ver 13.66 15.34 3.74 6.15 par:pre; +provende provende nom f s 0.00 0.95 0.00 0.95 +provenir provenir ver 13.66 15.34 1.36 1.89 inf; +provençal provençal adj m s 0.05 3.58 0.01 1.28 +provençale provençal adj f s 0.05 3.58 0.03 1.69 +provençales provençal adj f p 0.05 3.58 0.01 0.20 +provençaux provençal adj m p 0.05 3.58 0.00 0.41 +provenu provenir ver m s 13.66 15.34 0.01 0.00 par:pas; +proverbe proverbe nom m s 4.90 4.19 3.90 2.64 +proverbes proverbe nom m p 4.90 4.19 1.00 1.55 +proverbial proverbial adj m s 0.04 0.81 0.01 0.14 +proverbiale proverbial adj f s 0.04 0.81 0.02 0.68 +providence providence nom f s 2.04 2.50 2.04 2.50 +providentiel providentiel adj m s 0.54 3.38 0.48 1.49 +providentielle providentiel adj f s 0.54 3.38 0.04 1.55 +providentiellement providentiellement adv 0.00 0.61 0.00 0.61 +providentielles providentiel adj f p 0.54 3.38 0.01 0.07 +providentiels providentiel adj m p 0.54 3.38 0.01 0.27 +provider provider nom m s 0.03 0.00 0.03 0.00 +proviendrait provenir ver 13.66 15.34 0.03 0.07 cnd:pre:3s; +provienne provenir ver 13.66 15.34 0.16 0.07 sub:pre:3s; +proviennent provenir ver 13.66 15.34 1.77 0.61 ind:pre:3p; +provient provenir ver 13.66 15.34 5.19 1.96 ind:pre:3s; +provietnamien provietnamien adj m s 0.00 0.07 0.00 0.07 +province province nom f s 12.01 30.68 10.21 24.73 +provinces province nom f p 12.01 30.68 1.79 5.95 +provincial provincial adj m s 1.26 5.74 0.28 1.55 +provinciale provincial adj f s 1.26 5.74 0.96 3.11 +provincialement provincialement adv 0.00 0.07 0.00 0.07 +provinciales provincial adj f p 1.26 5.74 0.00 0.88 +provinciaux provincial nom m p 0.78 2.09 0.51 0.81 +proviseur proviseur nom m s 4.45 3.58 4.43 3.45 +proviseurs proviseur nom m p 4.45 3.58 0.02 0.14 +provision provision nom f s 7.46 18.04 1.01 5.34 +provisionnel provisionnel adj m s 0.01 0.20 0.01 0.20 +provisionner provisionner ver 0.00 0.14 0.00 0.07 inf; +provisionnons provisionner ver 0.00 0.14 0.00 0.07 imp:pre:1p; +provisions provision nom f p 7.46 18.04 6.45 12.70 +provisoire provisoire adj s 5.80 16.28 5.44 13.85 +provisoirement provisoirement adv 1.52 7.84 1.52 7.84 +provisoires provisoire adj p 5.80 16.28 0.36 2.43 +provo provo nom m s 0.17 0.14 0.12 0.00 +provoc provoc nom f s 0.21 0.14 0.21 0.14 +provocant provocant adj m s 1.23 5.68 0.17 1.76 +provocante provocant adj f s 1.23 5.68 0.73 2.91 +provocantes provocant adj f p 1.23 5.68 0.15 0.47 +provocants provocant adj m p 1.23 5.68 0.17 0.54 +provocateur provocateur nom m s 0.56 1.01 0.53 0.61 +provocateurs provocateur adj m p 0.32 1.15 0.04 0.47 +provocation provocation nom f s 4.19 11.01 3.32 8.99 +provocations provocation nom f p 4.19 11.01 0.87 2.03 +provocatrice provocateur adj f s 0.32 1.15 0.02 0.07 +provolone provolone nom m s 0.18 0.00 0.18 0.00 +provoqua provoquer ver 34.19 48.85 0.44 3.38 ind:pas:3s; +provoquai provoquer ver 34.19 48.85 0.00 0.07 ind:pas:1s; +provoquaient provoquer ver 34.19 48.85 0.08 2.30 ind:imp:3p; +provoquais provoquer ver 34.19 48.85 0.37 0.34 ind:imp:1s;ind:imp:2s; +provoquait provoquer ver 34.19 48.85 1.06 6.89 ind:imp:3s; +provoquant provoquer ver 34.19 48.85 0.95 2.97 par:pre; +provoque provoquer ver 34.19 48.85 7.12 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +provoquent provoquer ver 34.19 48.85 1.20 1.22 ind:pre:3p; +provoquer provoquer ver 34.19 48.85 9.30 12.23 inf; +provoquera provoquer ver 34.19 48.85 0.65 0.27 ind:fut:3s; +provoquerai provoquer ver 34.19 48.85 0.04 0.00 ind:fut:1s; +provoqueraient provoquer ver 34.19 48.85 0.01 0.14 cnd:pre:3p; +provoquerais provoquer ver 34.19 48.85 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +provoquerait provoquer ver 34.19 48.85 0.39 0.68 cnd:pre:3s; +provoquerez provoquer ver 34.19 48.85 0.04 0.07 ind:fut:2p; +provoqueriez provoquer ver 34.19 48.85 0.11 0.07 cnd:pre:2p; +provoquerions provoquer ver 34.19 48.85 0.01 0.07 cnd:pre:1p; +provoquerons provoquer ver 34.19 48.85 0.03 0.00 ind:fut:1p; +provoqueront provoquer ver 34.19 48.85 0.02 0.07 ind:fut:3p; +provoques provoquer ver 34.19 48.85 1.19 0.00 ind:pre:2s; +provoquez provoquer ver 34.19 48.85 0.50 0.00 imp:pre:2p;ind:pre:2p; +provoquions provoquer ver 34.19 48.85 0.00 0.07 ind:imp:1p; +provoquons provoquer ver 34.19 48.85 0.23 0.00 imp:pre:1p;ind:pre:1p; +provoquât provoquer ver 34.19 48.85 0.01 0.34 sub:imp:3s; +provoquèrent provoquer ver 34.19 48.85 0.01 0.27 ind:pas:3p; +provoqué provoquer ver m s 34.19 48.85 8.07 7.36 par:pas; +provoquée provoquer ver f s 34.19 48.85 1.27 2.50 par:pas; +provoquées provoquer ver f p 34.19 48.85 0.34 1.42 par:pas; +provoqués provoquer ver m p 34.19 48.85 0.59 0.88 par:pas; +provos provo nom m p 0.17 0.14 0.05 0.14 +provéditeur provéditeur nom m s 0.00 0.14 0.00 0.07 +provéditeurs provéditeur nom m p 0.00 0.14 0.00 0.07 +proximal proximal adj m s 0.11 0.27 0.07 0.27 +proximale proximal adj f s 0.11 0.27 0.04 0.00 +proximité proximité nom f s 3.99 14.46 3.99 14.46 +proxo proxo nom m s 0.06 0.41 0.06 0.34 +proxos proxo nom m p 0.06 0.41 0.00 0.07 +proxénète proxénète nom s 0.71 1.01 0.52 0.74 +proxénètes proxénète nom p 0.71 1.01 0.20 0.27 +proxénétisme proxénétisme nom m s 0.42 0.41 0.42 0.41 +proze proze nom m s 0.00 0.41 0.00 0.41 +prèle prèle nom f s 0.02 0.00 0.02 0.00 +près_de près_de adv 4.10 16.35 4.10 16.35 +près près pre 134.13 285.41 134.13 285.41 +pré_salé pré_salé nom m s 0.00 0.20 0.00 0.20 +pré_établi pré_établi adj m s 0.00 0.07 0.00 0.07 +pré pré nom m s 21.59 32.50 5.03 19.80 +préadolescence préadolescence nom f s 0.01 0.00 0.01 0.00 +préadolescente préadolescent nom f s 0.01 0.00 0.01 0.00 +préalable préalable nom m s 0.91 2.03 0.91 1.96 +préalablement préalablement adv 0.08 2.03 0.08 2.03 +préalables préalable adj p 0.59 2.70 0.04 0.34 +préambule préambule nom m s 0.29 2.77 0.25 2.57 +préambules préambule nom m p 0.29 2.77 0.05 0.20 +préau préau nom m s 0.10 4.59 0.10 3.51 +préaux préau nom m p 0.10 4.59 0.00 1.08 +préavis préavis nom m 2.00 1.08 2.00 1.08 +prébendes prébende nom f p 0.00 0.20 0.00 0.20 +précaire précaire adj s 0.98 6.35 0.86 5.41 +précairement précairement adv 0.00 0.47 0.00 0.47 +précaires précaire adj p 0.98 6.35 0.13 0.95 +précambrien précambrien adj m s 0.02 0.00 0.01 0.00 +précambrienne précambrien adj f s 0.02 0.00 0.01 0.00 +précarité précarité nom f s 0.19 1.35 0.19 1.35 +précaution précaution nom f s 10.26 36.01 4.80 19.39 +précautionneuse précautionneux adj f s 0.06 3.24 0.03 0.47 +précautionneusement précautionneusement adv 0.01 3.72 0.01 3.72 +précautionneuses précautionneux adj f p 0.06 3.24 0.00 0.27 +précautionneux précautionneux adj m 0.06 3.24 0.04 2.50 +précautions précaution nom f p 10.26 36.01 5.45 16.62 +précellence précellence nom f s 0.00 0.07 0.00 0.07 +précelles précelles nom f p 0.00 0.07 0.00 0.07 +précepte précepte nom m s 1.55 2.23 0.17 1.08 +préceptes précepte nom m p 1.55 2.23 1.38 1.15 +précepteur précepteur nom m s 0.80 2.91 0.32 2.16 +précepteurs précepteur nom m p 0.80 2.91 0.04 0.68 +préceptrice précepteur nom f s 0.80 2.91 0.44 0.07 +précession précession nom f s 0.00 0.20 0.00 0.20 +prêcha prêcher ver 7.82 7.43 0.12 0.20 ind:pas:3s; +prêchaient prêcher ver 7.82 7.43 0.03 0.61 ind:imp:3p; +prêchais prêcher ver 7.82 7.43 0.04 0.07 ind:imp:1s;ind:imp:2s; +prêchait prêcher ver 7.82 7.43 0.49 1.55 ind:imp:3s; +prêchant prêcher ver 7.82 7.43 0.34 0.27 par:pre; +préchauffage préchauffage nom m s 0.02 0.00 0.02 0.00 +préchauffer préchauffer ver 0.01 0.00 0.01 0.00 inf; +prêche prêcher ver 7.82 7.43 1.70 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prêchent prêcher ver 7.82 7.43 0.77 0.41 ind:pre:3p; +prêcher prêcher ver 7.82 7.43 3.06 2.36 inf; +prêches prêcher ver 7.82 7.43 0.20 0.14 ind:pre:2s; +prêcheur prêcheur nom m s 0.82 4.59 0.58 0.74 +prêcheurs prêcheur nom m p 0.82 4.59 0.20 3.78 +prêcheuse prêcheur nom f s 0.82 4.59 0.03 0.07 +prêchez prêcher ver 7.82 7.43 0.25 0.07 imp:pre:2p;ind:pre:2p; +prêchi_prêcha prêchi_prêcha nom m 0.11 0.14 0.11 0.14 +prêché prêcher ver m s 7.82 7.43 0.63 0.88 par:pas; +prêchée prêcher ver f s 7.82 7.43 0.20 0.14 par:pas; +précieuse précieux adj f s 24.66 39.19 6.96 8.85 +précieusement précieusement adv 0.44 1.76 0.44 1.76 +précieuses précieux adj f p 24.66 39.19 1.58 7.43 +précieux précieux adj m 24.66 39.19 16.13 22.91 +préciosité préciosité nom f s 0.02 1.28 0.02 1.08 +préciosités préciosité nom f p 0.02 1.28 0.00 0.20 +précipice précipice nom m s 1.67 3.38 1.44 1.62 +précipices précipice nom m p 1.67 3.38 0.24 1.76 +précipita précipiter ver 11.89 66.96 0.19 14.05 ind:pas:3s; +précipitai précipiter ver 11.89 66.96 0.01 2.09 ind:pas:1s; +précipitaient précipiter ver 11.89 66.96 0.02 2.91 ind:imp:3p; +précipitais précipiter ver 11.89 66.96 0.04 0.88 ind:imp:1s;ind:imp:2s; +précipitait précipiter ver 11.89 66.96 0.08 5.95 ind:imp:3s; +précipitamment précipitamment adv 0.99 10.14 0.99 10.14 +précipitant précipiter ver 11.89 66.96 0.31 2.23 par:pre; +précipitation précipitation nom f s 2.35 6.35 1.90 6.15 +précipitations précipitation nom f p 2.35 6.35 0.45 0.20 +précipite précipiter ver 11.89 66.96 2.10 11.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +précipitent précipiter ver 11.89 66.96 0.51 2.84 ind:pre:3p; +précipiter précipiter ver 11.89 66.96 2.53 9.46 inf;; +précipitera précipiter ver 11.89 66.96 0.05 0.00 ind:fut:3s; +précipiterai précipiter ver 11.89 66.96 0.04 0.14 ind:fut:1s; +précipiteraient précipiter ver 11.89 66.96 0.05 0.20 cnd:pre:3p; +précipiterais précipiter ver 11.89 66.96 0.20 0.00 cnd:pre:1s;cnd:pre:2s; +précipiterait précipiter ver 11.89 66.96 0.02 0.74 cnd:pre:3s; +précipiteras précipiter ver 11.89 66.96 0.01 0.07 ind:fut:2s; +précipiterez précipiter ver 11.89 66.96 0.00 0.07 ind:fut:2p; +précipiterions précipiter ver 11.89 66.96 0.00 0.14 cnd:pre:1p; +précipiteront précipiter ver 11.89 66.96 0.02 0.14 ind:fut:3p; +précipites précipiter ver 11.89 66.96 0.37 0.20 ind:pre:2s;sub:pre:2s; +précipitez précipiter ver 11.89 66.96 0.44 0.14 imp:pre:2p;ind:pre:2p; +précipitiez précipiter ver 11.89 66.96 0.03 0.00 ind:imp:2p; +précipitions précipiter ver 11.89 66.96 0.00 0.14 ind:imp:1p; +précipitâmes précipiter ver 11.89 66.96 0.00 0.34 ind:pas:1p; +précipitons précipiter ver 11.89 66.96 0.36 0.47 imp:pre:1p;ind:pre:1p; +précipitât précipiter ver 11.89 66.96 0.00 0.27 sub:imp:3s; +précipitèrent précipiter ver 11.89 66.96 0.20 1.82 ind:pas:3p; +précipité précipiter ver m s 11.89 66.96 2.67 6.55 par:pas; +précipitée précipiter ver f s 11.89 66.96 1.36 2.09 par:pas; +précipitées précipité adj f p 1.83 8.45 0.10 0.95 +précipités précipiter ver m p 11.89 66.96 0.23 1.55 par:pas; +préciputs préciput nom m p 0.00 0.07 0.00 0.07 +précis précis adj m 31.59 61.82 20.18 38.24 +précisa préciser ver 9.29 48.31 0.00 8.65 ind:pas:3s; +précisai préciser ver 9.29 48.31 0.00 0.74 ind:pas:1s; +précisaient préciser ver 9.29 48.31 0.02 0.95 ind:imp:3p; +précisais préciser ver 9.29 48.31 0.01 0.47 ind:imp:1s;ind:imp:2s; +précisait préciser ver 9.29 48.31 0.06 4.26 ind:imp:3s; +précisant préciser ver 9.29 48.31 0.12 2.77 par:pre; +précise précis adj f s 31.59 61.82 6.97 15.68 +précisent préciser ver 9.29 48.31 0.39 0.81 ind:pre:3p; +préciser préciser ver 9.29 48.31 3.77 13.04 inf; +précisera préciser ver 9.29 48.31 0.00 0.20 ind:fut:3s; +préciserai préciser ver 9.29 48.31 0.02 0.20 ind:fut:1s; +préciserais préciser ver 9.29 48.31 0.01 0.07 cnd:pre:1s; +préciserait préciser ver 9.29 48.31 0.00 0.14 cnd:pre:3s; +préciserez préciser ver 9.29 48.31 0.00 0.07 ind:fut:2p; +préciseront préciser ver 9.29 48.31 0.00 0.07 ind:fut:3p; +précises précis adj f p 31.59 61.82 4.43 7.91 +précisez préciser ver 9.29 48.31 0.38 0.14 imp:pre:2p; +précision précision nom f s 6.86 24.26 5.50 18.99 +précisions précision nom f p 6.86 24.26 1.35 5.27 +précisons préciser ver 9.29 48.31 0.02 0.00 imp:pre:1p;ind:pre:1p; +précisât préciser ver 9.29 48.31 0.00 0.34 sub:imp:3s; +précisèrent préciser ver 9.29 48.31 0.00 0.47 ind:pas:3p; +précisé préciser ver m s 9.29 48.31 2.48 5.34 par:pas; +précisée préciser ver f s 9.29 48.31 0.14 0.74 par:pas; +précisées préciser ver f p 9.29 48.31 0.01 0.68 par:pas; +précisément précisément adv 12.80 34.80 12.80 34.80 +précisés préciser ver m p 9.29 48.31 0.01 0.07 par:pas; +précité précité adj m s 0.04 0.41 0.01 0.14 +précitée précité adj f s 0.04 0.41 0.01 0.00 +précitées précité adj f p 0.04 0.41 0.01 0.20 +précités précité adj m p 0.04 0.41 0.01 0.07 +précoce précoce adj s 2.66 5.61 2.31 4.39 +précocement précocement adv 0.01 1.15 0.01 1.15 +précoces précoce adj p 2.66 5.61 0.35 1.22 +précocité précocité nom f s 0.12 1.35 0.12 1.35 +précognition précognition nom f s 0.03 0.00 0.03 0.00 +précolombien précolombien adj m s 0.06 0.07 0.02 0.00 +précolombienne précolombien adj f s 0.06 0.07 0.04 0.00 +précolombiennes précolombien adj f p 0.06 0.07 0.00 0.07 +préconisa préconiser ver 1.80 1.96 0.00 0.14 ind:pas:3s; +préconisaient préconiser ver 1.80 1.96 0.00 0.20 ind:imp:3p; +préconisais préconiser ver 1.80 1.96 0.03 0.00 ind:imp:1s;ind:imp:2s; +préconisait préconiser ver 1.80 1.96 0.02 0.41 ind:imp:3s; +préconisant préconiser ver 1.80 1.96 0.01 0.00 par:pre; +préconisation préconisation nom f s 0.01 0.00 0.01 0.00 +préconise préconiser ver 1.80 1.96 0.82 0.41 ind:pre:1s;ind:pre:3s; +préconisent préconiser ver 1.80 1.96 0.17 0.14 ind:pre:3p; +préconiser préconiser ver 1.80 1.96 0.15 0.20 inf; +préconiserais préconiser ver 1.80 1.96 0.11 0.00 cnd:pre:1s; +préconises préconiser ver 1.80 1.96 0.01 0.07 ind:pre:2s; +préconisez préconiser ver 1.80 1.96 0.14 0.00 imp:pre:2p;ind:pre:2p; +préconisiez préconiser ver 1.80 1.96 0.02 0.00 ind:imp:2p; +préconisât préconiser ver 1.80 1.96 0.00 0.07 sub:imp:3s; +préconisé préconiser ver m s 1.80 1.96 0.19 0.20 par:pas; +préconisée préconiser ver f s 1.80 1.96 0.11 0.07 par:pas; +préconisées préconiser ver f p 1.80 1.96 0.00 0.07 par:pas; +préconisés préconiser ver m p 1.80 1.96 0.01 0.00 par:pas; +préconçu préconçu adj m s 0.06 0.81 0.00 0.07 +préconçue préconçu adj f s 0.06 0.81 0.04 0.20 +préconçues préconcevoir ver f p 0.04 0.00 0.04 0.00 par:pas; +précède précéder ver 6.09 41.22 1.30 7.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +précèdent précéder ver 6.09 41.22 0.30 2.16 ind:pre:3p; +précéda précéder ver 6.09 41.22 0.01 2.09 ind:pas:3s; +précédai précéder ver 6.09 41.22 0.00 0.07 ind:pas:1s; +précédaient précéder ver 6.09 41.22 0.04 1.76 ind:imp:3p; +précédais précéder ver 6.09 41.22 0.00 0.14 ind:imp:1s; +précédait précéder ver 6.09 41.22 0.20 5.54 ind:imp:3s; +précédant précéder ver 6.09 41.22 0.87 3.78 par:pre; +précédassent précéder ver 6.09 41.22 0.00 0.07 sub:imp:3p; +précédemment précédemment adv 11.48 2.16 11.48 2.16 +précédent précédent nom m s 5.08 10.07 3.36 4.66 +précédente précédent adj f s 7.63 24.12 2.21 8.99 +précédentes précédent adj f p 7.63 24.12 0.94 3.38 +précédents précédent adj m p 7.63 24.12 2.16 5.61 +précéder précéder ver 6.09 41.22 0.09 2.23 inf; +précédera précéder ver 6.09 41.22 0.13 0.14 ind:fut:3s; +précéderai précéder ver 6.09 41.22 0.14 0.00 ind:fut:1s; +précéderaient précéder ver 6.09 41.22 0.00 0.14 cnd:pre:3p; +précéderait précéder ver 6.09 41.22 0.01 0.20 cnd:pre:3s; +précéderions précéder ver 6.09 41.22 0.00 0.07 cnd:pre:1p; +précédez précéder ver 6.09 41.22 0.50 0.07 imp:pre:2p;ind:pre:2p; +précédons précéder ver 6.09 41.22 0.02 0.00 ind:pre:1p; +précédèrent précéder ver 6.09 41.22 0.02 1.76 ind:pas:3p; +précédé précéder ver m s 6.09 41.22 1.27 7.77 par:pas; +précédée précéder ver f s 6.09 41.22 0.56 2.97 par:pas; +précédées précéder ver f p 6.09 41.22 0.18 0.41 par:pas; +précédés précéder ver m p 6.09 41.22 0.45 2.84 par:pas; +précuit précuit adj m s 0.12 0.00 0.01 0.00 +précuites précuit adj f p 0.12 0.00 0.11 0.00 +précurseur précurseur nom m s 0.34 1.49 0.14 1.01 +précurseurs précurseur nom m p 0.34 1.49 0.20 0.47 +prud_homme prud_homme nom m s 0.21 0.07 0.01 0.00 +prud_homme prud_homme nom m p 0.21 0.07 0.20 0.07 +prédateur prédateur nom m s 2.38 0.68 1.54 0.34 +prédateurs prédateur nom m p 2.38 0.68 0.84 0.34 +prédation prédation nom f s 0.04 0.00 0.04 0.00 +prédatrice prédateur adj f s 0.40 0.54 0.11 0.07 +prude prude adj s 0.52 0.81 0.50 0.61 +prédelle prédelle nom f s 0.00 0.14 0.00 0.14 +prudemment prudemment adv 2.76 9.86 2.76 9.86 +prudence prudence nom f s 5.04 20.07 5.04 19.32 +prudences prudence nom f p 5.04 20.07 0.00 0.74 +prudent prudent adj m s 37.60 20.41 23.79 12.43 +prudente prudent adj f s 37.60 20.41 6.15 4.53 +prudentes prudent adj f p 37.60 20.41 0.54 0.68 +prudents prudent adj m p 37.60 20.41 7.13 2.77 +pruderie pruderie nom f s 0.01 0.68 0.01 0.54 +pruderies pruderie nom f p 0.01 0.68 0.00 0.14 +prudes prude nom p 0.51 0.47 0.20 0.14 +prédestinaient prédestiner ver 0.65 0.74 0.00 0.14 ind:imp:3p; +prédestination prédestination nom f s 0.04 1.01 0.04 0.95 +prédestinations prédestination nom f p 0.04 1.01 0.00 0.07 +prédestiné prédestiner ver m s 0.65 0.74 0.41 0.27 par:pas; +prédestinée prédestiner ver f s 0.65 0.74 0.20 0.07 par:pas; +prédestinées prédestiné adj f p 0.08 0.81 0.00 0.07 +prédestinés prédestiner ver m p 0.65 0.74 0.04 0.27 par:pas; +prudhommesque prudhommesque adj m s 0.14 0.07 0.14 0.00 +prudhommesques prudhommesque adj f p 0.14 0.07 0.00 0.07 +prédicant prédicant nom m s 0.00 0.54 0.00 0.27 +prédicants prédicant nom m p 0.00 0.54 0.00 0.27 +prédicat prédicat nom m s 0.01 0.00 0.01 0.00 +prédicateur prédicateur nom m s 0.84 1.69 0.66 1.01 +prédicateurs prédicateur nom m p 0.84 1.69 0.19 0.68 +prédication prédication nom f s 0.29 0.61 0.25 0.41 +prédications prédication nom f p 0.29 0.61 0.05 0.20 +prédictible prédictible adj s 0.01 0.00 0.01 0.00 +prédictif prédictif adj m s 0.05 0.00 0.01 0.00 +prédiction prédiction nom f s 2.06 3.24 1.08 1.89 +prédictions prédiction nom f p 2.06 3.24 0.98 1.35 +prédictive prédictif adj f s 0.05 0.00 0.04 0.00 +prédigestion prédigestion nom f s 0.00 0.07 0.00 0.07 +prédigéré prédigéré adj m s 0.01 0.00 0.01 0.00 +prédilection prédilection nom f s 0.35 3.18 0.34 3.11 +prédilections prédilection nom f p 0.35 3.18 0.01 0.07 +prédira prédire ver 9.05 6.82 0.01 0.00 ind:fut:3s; +prédire prédire ver 9.05 6.82 2.52 1.28 inf; +prédirent prédire ver 9.05 6.82 0.00 0.07 ind:pas:3p; +prédirez prédire ver 9.05 6.82 0.01 0.00 ind:fut:2p; +prédis prédire ver 9.05 6.82 1.02 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prédisaient prédire ver 9.05 6.82 0.03 0.14 ind:imp:3p; +prédisait prédire ver 9.05 6.82 0.12 0.61 ind:imp:3s; +prédisant prédire ver 9.05 6.82 0.12 0.20 par:pre; +prédise prédire ver 9.05 6.82 0.16 0.00 sub:pre:1s;sub:pre:3s; +prédisent prédire ver 9.05 6.82 0.25 0.20 ind:pre:3p; +prédisez prédire ver 9.05 6.82 0.04 0.00 ind:pre:2p; +prédisiez prédire ver 9.05 6.82 0.00 0.07 ind:imp:2p; +prédisposait prédisposer ver 0.27 0.68 0.00 0.07 ind:imp:3s; +prédisposant prédisposer ver 0.27 0.68 0.00 0.07 par:pre; +prédispose prédisposer ver 0.27 0.68 0.03 0.27 imp:pre:2s;ind:pre:3s; +prédisposition prédisposition nom f s 0.46 0.41 0.21 0.27 +prédispositions prédisposition nom f p 0.46 0.41 0.25 0.14 +prédisposé prédisposer ver m s 0.27 0.68 0.09 0.14 par:pas; +prédisposée prédisposer ver f s 0.27 0.68 0.13 0.07 par:pas; +prédisposées prédisposer ver f p 0.27 0.68 0.01 0.07 par:pas; +prédisposés prédisposer ver m p 0.27 0.68 0.01 0.00 par:pas; +prédit prédire ver m s 9.05 6.82 4.46 3.38 ind:pre:3s;par:pas; +prédite prédire ver f s 9.05 6.82 0.32 0.07 par:pas; +prédominaient prédominer ver 0.12 0.27 0.00 0.07 ind:imp:3p; +prédominait prédominer ver 0.12 0.27 0.00 0.14 ind:imp:3s; +prédominance prédominance nom f s 0.01 0.47 0.01 0.47 +prédominant prédominant adj m s 0.11 0.34 0.04 0.14 +prédominante prédominant adj f s 0.11 0.34 0.07 0.20 +prédomine prédominer ver 0.12 0.27 0.08 0.00 ind:pre:3s; +prédominer prédominer ver 0.12 0.27 0.01 0.00 inf; +prédécesseur prédécesseur nom m s 2.27 3.18 1.60 1.96 +prédécesseurs prédécesseur nom m p 2.27 3.18 0.67 1.22 +prédécoupée prédécoupé adj f s 0.01 0.00 0.01 0.00 +prédéfini prédéfinir ver m s 0.03 0.00 0.01 0.00 par:pas; +prédéfinies prédéfinir ver f p 0.03 0.00 0.01 0.00 par:pas; +prédéterminer prédéterminer ver 0.55 0.07 0.00 0.07 inf; +prédéterminé prédéterminer ver m s 0.55 0.07 0.24 0.00 par:pas; +prédéterminée prédéterminer ver f s 0.55 0.07 0.26 0.00 par:pas; +prédéterminées prédéterminer ver f p 0.55 0.07 0.02 0.00 par:pas; +prédéterminés prédéterminer ver m p 0.55 0.07 0.02 0.00 par:pas; +préemption préemption nom f s 0.05 0.07 0.05 0.07 +préemptive préemptif adj f s 0.01 0.00 0.01 0.00 +préencollé préencollé adj m s 0.01 0.00 0.01 0.00 +préexistaient préexister ver 0.01 0.27 0.00 0.07 ind:imp:3p; +préexistait préexister ver 0.01 0.27 0.00 0.07 ind:imp:3s; +préexistant préexistant adj m s 0.04 0.00 0.01 0.00 +préexistante préexistant adj f s 0.04 0.00 0.03 0.00 +préexistants préexistant adj m p 0.04 0.00 0.01 0.00 +préexiste préexister ver 0.01 0.27 0.00 0.14 ind:pre:3s; +préexisté préexister ver m s 0.01 0.27 0.01 0.00 par:pas; +préfabriqué préfabriqué adj m s 0.62 1.42 0.19 0.88 +préfabriquée préfabriqué adj f s 0.62 1.42 0.23 0.14 +préfabriquées préfabriqué adj f p 0.62 1.42 0.00 0.20 +préfabriqués préfabriqué adj m p 0.62 1.42 0.20 0.20 +préface préface nom f s 0.42 2.97 0.42 2.64 +préfacent préfacer ver 0.04 0.34 0.00 0.07 ind:pre:3p; +préfacer préfacer ver 0.04 0.34 0.04 0.00 inf; +préfaces préface nom f p 0.42 2.97 0.00 0.34 +préfacier préfacier nom m s 0.00 0.07 0.00 0.07 +préfacé préfacer ver m s 0.04 0.34 0.00 0.14 par:pas; +préfacées préfacer ver f p 0.04 0.34 0.00 0.07 par:pas; +préfectance préfectance nom f s 0.00 0.14 0.00 0.14 +préfectorale préfectoral adj f s 0.00 0.07 0.00 0.07 +préfecture préfecture nom f s 3.98 7.91 3.97 7.36 +préfectures préfecture nom f p 3.98 7.91 0.01 0.54 +préfet préfet nom m s 7.56 8.45 7.42 7.09 +préfets préfet nom m p 7.56 8.45 0.14 1.35 +préfiguraient préfigurer ver 0.02 1.69 0.00 0.34 ind:imp:3p; +préfigurait préfigurer ver 0.02 1.69 0.00 0.34 ind:imp:3s; +préfigurant préfigurer ver 0.02 1.69 0.00 0.07 par:pre; +préfiguration préfiguration nom f s 0.00 0.61 0.00 0.61 +préfigure préfigurer ver 0.02 1.69 0.01 0.41 ind:pre:3s; +préfigurent préfigurer ver 0.02 1.69 0.00 0.14 ind:pre:3p; +préfigurer préfigurer ver 0.02 1.69 0.01 0.07 inf; +préfiguré préfigurer ver m s 0.02 1.69 0.00 0.07 par:pas; +préfigurée préfigurer ver f s 0.02 1.69 0.00 0.27 par:pas; +préfix préfix adj m 0.01 0.00 0.01 0.00 +préfixation préfixation nom f s 0.01 0.00 0.01 0.00 +préfixe préfixe nom m s 0.35 0.34 0.23 0.14 +préfixes préfixe nom m p 0.35 0.34 0.12 0.20 +préformait préformer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +préformation préformation nom f s 0.00 0.07 0.00 0.07 +préformer préformer ver 0.00 0.14 0.00 0.07 inf; +préfrontal préfrontal adj m s 0.06 0.07 0.05 0.00 +préfrontale préfrontal adj f s 0.06 0.07 0.01 0.07 +préfère préférer ver 179.44 133.38 90.34 36.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +préfèrent préférer ver 179.44 133.38 5.94 3.85 ind:pre:3p;sub:pre:3p; +préfères préférer ver 179.44 133.38 21.62 5.68 ind:pre:2s; +préféra préférer ver 179.44 133.38 0.32 4.66 ind:pas:3s; +préférable préférable adj s 4.56 7.70 4.39 7.30 +préférablement préférablement adv 0.01 0.00 0.01 0.00 +préférables préférable adj p 4.56 7.70 0.17 0.41 +préférai préférer ver 179.44 133.38 0.13 0.95 ind:pas:1s; +préféraient préférer ver 179.44 133.38 0.67 3.72 ind:imp:3p; +préférais préférer ver 179.44 133.38 3.66 9.19 ind:imp:1s;ind:imp:2s; +préférait préférer ver 179.44 133.38 2.85 21.55 ind:imp:3s; +préférant préférer ver 179.44 133.38 0.21 3.65 par:pre; +préférence préférence nom f s 5.73 13.92 4.65 12.16 +préférences préférence nom f p 5.73 13.92 1.09 1.76 +préférentiel préférentiel adj m s 0.16 0.14 0.06 0.07 +préférentielle préférentiel adj f s 0.16 0.14 0.10 0.07 +préférer préférer ver 179.44 133.38 1.68 5.95 inf; +préférera préférer ver 179.44 133.38 0.66 0.27 ind:fut:3s; +préférerai préférer ver 179.44 133.38 0.40 0.07 ind:fut:1s; +préféreraient préférer ver 179.44 133.38 0.43 0.47 cnd:pre:3p; +préférerais préférer ver 179.44 133.38 14.52 5.14 cnd:pre:1s;cnd:pre:2s; +préférerait préférer ver 179.44 133.38 1.73 1.22 cnd:pre:3s; +préféreras préférer ver 179.44 133.38 0.20 0.00 ind:fut:2s; +préférerez préférer ver 179.44 133.38 0.09 0.07 ind:fut:2p; +préféreriez préférer ver 179.44 133.38 1.17 0.68 cnd:pre:2p; +préférerions préférer ver 179.44 133.38 0.28 0.07 cnd:pre:1p; +préféreront préférer ver 179.44 133.38 0.03 0.00 ind:fut:3p; +préférez préférer ver 179.44 133.38 12.19 5.81 imp:pre:2p;ind:pre:2p; +préfériez préférer ver 179.44 133.38 0.39 0.20 ind:imp:2p; +préférions préférer ver 179.44 133.38 0.02 1.35 ind:imp:1p; +préférâmes préférer ver 179.44 133.38 0.00 0.07 ind:pas:1p; +préférons préférer ver 179.44 133.38 1.67 0.95 imp:pre:1p;ind:pre:1p; +préférât préférer ver 179.44 133.38 0.00 0.47 sub:imp:3s; +préférèrent préférer ver 179.44 133.38 0.00 0.47 ind:pas:3p; +préféré préférer ver m s 179.44 133.38 17.57 19.73 par:pas; +préférée préféré adj f s 27.42 11.01 9.82 3.45 +préférées préféré adj f p 27.42 11.01 1.80 1.15 +préférés préféré adj m p 27.42 11.01 2.04 1.96 +prégnance prégnance nom f s 0.00 0.14 0.00 0.14 +prégnante prégnant adj f s 0.01 0.00 0.01 0.00 +préhenseur préhenseur adj m s 1.00 0.00 1.00 0.00 +préhensile préhensile adj m s 0.01 0.07 0.01 0.07 +préhension préhension nom f s 0.10 0.07 0.10 0.07 +préhensives préhensif adj f p 0.00 0.07 0.00 0.07 +préhistoire préhistoire nom f s 0.73 2.84 0.73 2.84 +préhistorien préhistorien nom m s 0.00 0.07 0.00 0.07 +préhistorique préhistorique adj s 1.28 2.91 0.83 1.55 +préhistoriques préhistorique adj p 1.28 2.91 0.45 1.35 +préhominien préhominien nom m s 0.00 0.07 0.00 0.07 +préindustriel préindustriel adj m s 0.01 0.00 0.01 0.00 +préjudice préjudice nom m s 1.80 2.03 1.56 1.96 +préjudices préjudice nom m p 1.80 2.03 0.25 0.07 +préjudiciable préjudiciable adj s 0.34 0.88 0.30 0.47 +préjudiciables préjudiciable adj m p 0.34 0.88 0.03 0.41 +préjuge préjuger ver 0.16 1.69 0.00 0.20 ind:pre:3s; +préjugeait préjuger ver 0.16 1.69 0.00 0.07 ind:imp:3s; +préjugeant préjuger ver 0.16 1.69 0.00 0.20 par:pre; +préjuger préjuger ver 0.16 1.69 0.02 0.88 inf; +préjugé préjugé nom m s 4.79 10.61 0.93 2.43 +préjugée préjuger ver f s 0.16 1.69 0.00 0.07 par:pas; +préjugés préjugé nom m p 4.79 10.61 3.86 8.18 +prélassaient prélasser ver 0.73 2.57 0.00 0.20 ind:imp:3p; +prélassais prélasser ver 0.73 2.57 0.02 0.07 ind:imp:1s; +prélassait prélasser ver 0.73 2.57 0.01 0.34 ind:imp:3s; +prélassant prélasser ver 0.73 2.57 0.01 0.14 par:pre; +prélasse prélasser ver 0.73 2.57 0.33 0.41 ind:pre:1s;ind:pre:3s; +prélassent prélasser ver 0.73 2.57 0.02 0.27 ind:pre:3p; +prélasser prélasser ver 0.73 2.57 0.33 0.88 inf; +prélassera prélasser ver 0.73 2.57 0.00 0.07 ind:fut:3s; +prélasseront prélasser ver 0.73 2.57 0.00 0.07 ind:fut:3p; +prélassez prélasser ver 0.73 2.57 0.00 0.07 ind:pre:2p; +prélassiez prélasser ver 0.73 2.57 0.01 0.00 ind:imp:2p; +prélassèrent prélasser ver 0.73 2.57 0.00 0.07 ind:pas:3p; +prélat prélat nom m s 0.14 2.77 0.04 1.76 +prélats prélat nom m p 0.14 2.77 0.10 1.01 +prélavage prélavage nom m s 0.01 0.00 0.01 0.00 +prélaver prélaver ver 0.01 0.00 0.01 0.00 inf; +prélegs prélegs nom m 0.00 0.07 0.00 0.07 +prêles prêle nom f p 0.00 0.14 0.00 0.14 +préleva prélever ver 6.07 5.81 0.00 0.27 ind:pas:3s; +prélevaient prélever ver 6.07 5.81 0.11 0.14 ind:imp:3p; +prélevais prélever ver 6.07 5.81 0.11 0.07 ind:imp:1s; +prélevait prélever ver 6.07 5.81 0.01 0.47 ind:imp:3s; +prélevant prélever ver 6.07 5.81 0.16 0.14 par:pre; +prélever prélever ver 6.07 5.81 1.75 1.35 inf; +prélevez prélever ver 6.07 5.81 0.18 0.00 imp:pre:2p;ind:pre:2p; +prélevons prélever ver 6.07 5.81 0.07 0.00 imp:pre:1p;ind:pre:1p; +prélevèrent prélever ver 6.07 5.81 0.01 0.07 ind:pas:3p; +prélevé prélever ver m s 6.07 5.81 1.87 0.81 par:pas; +prélevée prélever ver f s 6.07 5.81 0.40 0.74 par:pas; +prélevées prélever ver f p 6.07 5.81 0.39 0.54 par:pas; +prélevés prélever ver m p 6.07 5.81 0.32 0.54 par:pas; +préliminaire préliminaire adj s 3.12 1.69 2.21 0.74 +préliminaires préliminaire nom m p 1.67 1.08 1.56 0.88 +prélève prélever ver 6.07 5.81 0.59 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prélèvement prélèvement nom m s 4.33 1.28 2.43 0.54 +prélèvements prélèvement nom m p 4.33 1.28 1.89 0.74 +prélèvent prélever ver 6.07 5.81 0.05 0.14 ind:pre:3p; +prélèveraient prélever ver 6.07 5.81 0.00 0.07 cnd:pre:3p; +prélèverait prélever ver 6.07 5.81 0.00 0.07 cnd:pre:3s; +prélèverez prélever ver 6.07 5.81 0.03 0.00 ind:fut:2p; +prélèverions prélever ver 6.07 5.81 0.02 0.00 cnd:pre:1p; +préluda préluder ver 0.00 2.57 0.00 0.20 ind:pas:3s; +préludaient préluder ver 0.00 2.57 0.00 0.07 ind:imp:3p; +préludait préluder ver 0.00 2.57 0.00 0.34 ind:imp:3s; +préludant préluder ver 0.00 2.57 0.00 0.14 par:pre; +prélude prélude nom m s 1.23 2.91 0.89 2.36 +préludent préluder ver 0.00 2.57 0.00 0.14 ind:pre:3p; +préluder préluder ver 0.00 2.57 0.00 0.27 inf; +préluderait préluder ver 0.00 2.57 0.00 0.07 cnd:pre:3s; +préludes prélude nom m p 1.23 2.91 0.34 0.54 +préludât préluder ver 0.00 2.57 0.00 0.07 sub:imp:3s; +préludèrent préluder ver 0.00 2.57 0.00 0.07 ind:pas:3p; +préludé préluder ver m s 0.00 2.57 0.00 0.27 par:pas; +prématurité prématurité nom f s 0.01 0.00 0.01 0.00 +prématuré prématuré adj m s 2.39 3.18 1.51 1.22 +prématurée prématuré adj f s 2.39 3.18 0.68 1.28 +prématurées prématuré adj f p 2.39 3.18 0.14 0.61 +prématurément prématurément adv 1.22 2.03 1.22 2.03 +prématurés prématuré nom m p 1.00 0.20 0.20 0.00 +prémenstruel prémenstruel adj m s 0.26 0.00 0.21 0.00 +prémenstruelle prémenstruel adj f s 0.26 0.00 0.05 0.00 +prémices prémices nom f p 0.34 1.35 0.34 1.35 +prémisse prémisse nom f s 0.11 0.68 0.05 0.07 +prémisses prémisse nom f p 0.11 0.68 0.05 0.61 +prémolaire prémolaire nom f s 0.23 0.14 0.19 0.07 +prémolaires prémolaire nom f p 0.23 0.14 0.04 0.07 +prémonition prémonition nom f s 3.54 2.64 2.46 2.03 +prémonitions prémonition nom f p 3.54 2.64 1.08 0.61 +prémonitoire prémonitoire adj s 0.43 1.62 0.24 1.22 +prémonitoires prémonitoire adj p 0.43 1.62 0.19 0.41 +prémontrés prémontré adj m p 0.00 0.07 0.00 0.07 +préméditait préméditer ver 0.66 1.89 0.00 0.14 ind:imp:3s; +préméditation préméditation nom f s 1.30 1.82 1.30 1.69 +préméditations préméditation nom f p 1.30 1.82 0.00 0.14 +prémédite préméditer ver 0.66 1.89 0.01 0.14 ind:pre:3s; +préméditer préméditer ver 0.66 1.89 0.02 0.00 inf; +préméditera préméditer ver 0.66 1.89 0.00 0.07 ind:fut:3s; +préméditons préméditer ver 0.66 1.89 0.00 0.07 ind:pre:1p; +prémédité prémédité adj m s 1.46 0.95 1.25 0.27 +préméditée prémédité adj f s 1.46 0.95 0.11 0.41 +préméditées préméditer ver f p 0.66 1.89 0.00 0.07 par:pas; +prémédités prémédité adj m p 1.46 0.95 0.11 0.20 +prémuni prémunir ver m s 0.07 0.95 0.02 0.14 par:pas; +prémunie prémunir ver f s 0.07 0.95 0.00 0.07 par:pas; +prémunir prémunir ver 0.07 0.95 0.04 0.54 inf; +prémuniraient prémunir ver 0.07 0.95 0.00 0.07 cnd:pre:3p; +prémunis prémunir ver m p 0.07 0.95 0.00 0.07 par:pas; +prémunissent prémunir ver 0.07 0.95 0.00 0.07 ind:pre:3p; +prénatal prénatal adj m s 0.46 0.54 0.27 0.14 +prénatale prénatal adj f s 0.46 0.54 0.12 0.41 +prénatales prénatal adj f p 0.46 0.54 0.05 0.00 +prénataux prénatal adj m p 0.46 0.54 0.02 0.00 +prune prune nom f s 2.94 5.68 1.07 1.55 +pruneau pruneau nom m s 1.59 3.65 0.92 1.35 +pruneaux pruneau nom m p 1.59 3.65 0.67 2.30 +prunelle prunelle nom f s 1.10 15.74 0.94 3.11 +prunelles prunelle nom f p 1.10 15.74 0.16 12.64 +prunellier prunellier nom m s 0.00 0.47 0.00 0.07 +prunelliers prunellier nom m p 0.00 0.47 0.00 0.41 +prunes prune nom f p 2.94 5.68 1.87 4.12 +prunier prunier nom m s 0.96 2.57 0.49 1.28 +pruniers prunier nom m p 0.96 2.57 0.47 1.28 +prénom_type prénom_type nom m s 0.00 0.07 0.00 0.07 +prénom prénom nom m s 25.88 30.47 23.18 24.19 +prénomma prénommer ver 0.83 2.36 0.00 0.07 ind:pas:3s; +prénommaient prénommer ver 0.83 2.36 0.00 0.07 ind:imp:3p; +prénommais prénommer ver 0.83 2.36 0.03 0.00 ind:imp:1s; +prénommait prénommer ver 0.83 2.36 0.02 0.81 ind:imp:3s; +prénommant prénommer ver 0.83 2.36 0.00 0.14 par:pre; +prénomme prénommer ver 0.83 2.36 0.06 0.47 imp:pre:2s;ind:pre:3s; +prénomment prénommer ver 0.83 2.36 0.14 0.07 ind:pre:3p; +prénommer prénommer ver 0.83 2.36 0.00 0.27 inf; +prénommez prénommer ver 0.83 2.36 0.02 0.00 ind:pre:2p; +prénommât prénommer ver 0.83 2.36 0.00 0.07 sub:imp:3s; +prénommèrent prénommer ver 0.83 2.36 0.01 0.00 ind:pas:3p; +prénommé prénommer ver m s 0.83 2.36 0.38 0.41 par:pas; +prénommée prénommé nom f s 0.26 0.47 0.17 0.20 +prénoms prénom nom m p 25.88 30.47 2.70 6.28 +prénuptial prénuptial adj m s 0.47 0.20 0.30 0.07 +prénuptiale prénuptial adj f s 0.47 0.20 0.17 0.14 +prunus prunus nom m 0.00 0.07 0.00 0.07 +préoccupa préoccuper ver 17.43 18.92 0.01 0.07 ind:pas:3s; +préoccupai préoccuper ver 17.43 18.92 0.00 0.14 ind:pas:1s; +préoccupaient préoccuper ver 17.43 18.92 0.02 0.68 ind:imp:3p; +préoccupais préoccuper ver 17.43 18.92 0.23 0.27 ind:imp:1s;ind:imp:2s; +préoccupait préoccuper ver 17.43 18.92 0.52 3.78 ind:imp:3s; +préoccupant préoccupant adj m s 0.35 0.88 0.27 0.27 +préoccupante préoccupant adj f s 0.35 0.88 0.06 0.41 +préoccupantes préoccupant adj f p 0.35 0.88 0.02 0.20 +préoccupation préoccupation nom f s 3.23 11.82 1.53 3.99 +préoccupations préoccupation nom f p 3.23 11.82 1.69 7.84 +préoccupe préoccuper ver 17.43 18.92 7.48 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +préoccupent préoccuper ver 17.43 18.92 0.34 0.41 ind:pre:3p; +préoccuper préoccuper ver 17.43 18.92 2.68 3.45 inf; +préoccupera préoccuper ver 17.43 18.92 0.04 0.07 ind:fut:3s; +préoccuperai préoccuper ver 17.43 18.92 0.03 0.00 ind:fut:1s; +préoccuperaient préoccuper ver 17.43 18.92 0.01 0.00 cnd:pre:3p; +préoccuperais préoccuper ver 17.43 18.92 0.03 0.00 cnd:pre:1s; +préoccuperait préoccuper ver 17.43 18.92 0.06 0.00 cnd:pre:3s; +préoccupes préoccuper ver 17.43 18.92 0.81 0.14 ind:pre:2s; +préoccupez préoccuper ver 17.43 18.92 0.85 0.07 imp:pre:2p;ind:pre:2p; +préoccupiez préoccuper ver 17.43 18.92 0.02 0.00 ind:imp:2p; +préoccupions préoccuper ver 17.43 18.92 0.00 0.07 ind:imp:1p; +préoccupons préoccuper ver 17.43 18.92 0.02 0.20 imp:pre:1p;ind:pre:1p; +préoccupât préoccuper ver 17.43 18.92 0.00 0.20 sub:imp:3s; +préoccupâtes préoccuper ver 17.43 18.92 0.01 0.00 ind:pas:2p; +préoccupèrent préoccuper ver 17.43 18.92 0.00 0.07 ind:pas:3p; +préoccupé préoccuper ver m s 17.43 18.92 2.84 3.85 par:pas; +préoccupée préoccuper ver f s 17.43 18.92 0.71 1.35 par:pas; +préoccupées préoccupé adj f p 1.44 4.86 0.01 0.20 +préoccupés préoccuper ver m p 17.43 18.92 0.68 1.22 par:pas; +préopératoire préopératoire adj s 0.05 0.00 0.05 0.00 +prépa prépa nom f s 0.78 0.00 0.78 0.00 +prépara préparer ver 174.32 154.12 0.30 5.00 ind:pas:3s; +préparai préparer ver 174.32 154.12 0.02 1.22 ind:pas:1s; +préparaient préparer ver 174.32 154.12 0.90 5.41 ind:imp:3p; +préparais préparer ver 174.32 154.12 1.68 2.43 ind:imp:1s;ind:imp:2s; +préparait préparer ver 174.32 154.12 3.38 25.00 ind:imp:3s; +préparant préparer ver 174.32 154.12 1.00 5.14 par:pre; +préparateur préparateur nom m s 0.05 1.15 0.04 0.88 +préparateurs préparateur nom m p 0.05 1.15 0.00 0.14 +préparatif préparatif nom m s 3.09 7.36 0.00 0.07 +préparatifs préparatif nom m p 3.09 7.36 3.09 7.30 +préparation préparation nom f s 6.13 10.54 5.17 9.73 +préparations préparation nom f p 6.13 10.54 0.95 0.81 +préparatoire préparatoire adj s 0.52 2.64 0.43 1.55 +préparatoires préparatoire adj p 0.52 2.64 0.09 1.08 +préparatrice préparateur nom f s 0.05 1.15 0.01 0.07 +préparatrices préparateur nom f p 0.05 1.15 0.00 0.07 +prépare préparer ver 174.32 154.12 45.54 19.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +préparent préparer ver 174.32 154.12 6.09 3.72 ind:pre:3p; +préparer préparer ver 174.32 154.12 46.70 43.24 ind:pre:2p;inf; +préparera préparer ver 174.32 154.12 0.85 0.41 ind:fut:3s; +préparerai préparer ver 174.32 154.12 1.65 0.47 ind:fut:1s; +prépareraient préparer ver 174.32 154.12 0.15 0.14 cnd:pre:3p; +préparerais préparer ver 174.32 154.12 0.24 0.14 cnd:pre:1s;cnd:pre:2s; +préparerait préparer ver 174.32 154.12 0.03 0.68 cnd:pre:3s; +prépareras préparer ver 174.32 154.12 0.05 0.00 ind:fut:2s; +préparerez préparer ver 174.32 154.12 0.04 0.00 ind:fut:2p; +préparerons préparer ver 174.32 154.12 0.30 0.07 ind:fut:1p; +prépareront préparer ver 174.32 154.12 0.04 0.07 ind:fut:3p; +prépares préparer ver 174.32 154.12 3.35 0.61 ind:pre:2s;sub:pre:2s; +préparez préparer ver 174.32 154.12 26.72 2.03 imp:pre:2p;ind:pre:2p; +prépariez préparer ver 174.32 154.12 0.38 0.07 ind:imp:2p; +préparions préparer ver 174.32 154.12 0.12 0.61 ind:imp:1p; +préparons préparer ver 174.32 154.12 2.92 0.74 imp:pre:1p;ind:pre:1p; +préparât préparer ver 174.32 154.12 0.00 0.54 sub:imp:3s; +préparèrent préparer ver 174.32 154.12 0.11 0.34 ind:pas:3p; +préparé préparer ver m s 174.32 154.12 25.19 21.96 par:pas; +préparée préparer ver f s 174.32 154.12 2.97 6.82 par:pas; +préparées préparer ver f p 174.32 154.12 0.75 2.77 par:pas; +préparés préparer ver m p 174.32 154.12 2.86 4.93 par:pas; +prépayée prépayer ver f s 0.01 0.00 0.01 0.00 par:pas; +prépondérance prépondérance nom f s 0.07 0.61 0.07 0.61 +prépondérant prépondérant adj m s 0.15 1.35 0.12 0.27 +prépondérante prépondérant adj f s 0.15 1.35 0.03 0.88 +prépondérants prépondérant adj m p 0.15 1.35 0.00 0.20 +préposition préposition nom f s 0.23 0.20 0.20 0.07 +prépositions préposition nom f p 0.23 0.20 0.03 0.14 +préposé préposé nom m s 0.91 3.99 0.77 2.84 +préposée préposé nom f s 0.91 3.99 0.10 0.41 +préposées préposé nom f p 0.91 3.99 0.00 0.07 +préposés préposé nom m p 0.91 3.99 0.04 0.68 +prépotence prépotence nom f s 0.00 0.07 0.00 0.07 +préprogrammé préprogrammé adj m s 0.09 0.00 0.07 0.00 +préprogrammée préprogrammé adj f s 0.09 0.00 0.03 0.00 +prépubère prépubère adj s 0.08 0.00 0.08 0.00 +prépuce prépuce nom m s 0.89 0.47 0.88 0.41 +prépuces prépuce nom m p 0.89 0.47 0.01 0.07 +préraphaélite préraphaélite adj s 0.00 0.07 0.00 0.07 +prérentrée prérentrée nom f s 0.01 0.00 0.01 0.00 +préretraite préretraite nom f s 0.04 0.00 0.04 0.00 +prurigo prurigo nom m s 0.00 0.07 0.00 0.07 +prurit prurit nom m s 2.15 0.88 2.15 0.88 +prérogative prérogative nom f s 0.59 1.35 0.28 0.27 +prérogatives prérogative nom f p 0.59 1.35 0.31 1.08 +préroman préroman adj m s 0.00 0.07 0.00 0.07 +préréglé prérégler ver m s 0.03 0.00 0.03 0.00 par:pas; +prérévolutionnaire prérévolutionnaire adj f s 0.00 0.07 0.00 0.07 +prés pré nom m p 21.59 32.50 16.56 12.70 +présage présage nom m s 2.99 4.59 1.95 2.77 +présagea présager ver 0.79 3.31 0.00 0.14 ind:pas:3s; +présageaient présager ver 0.79 3.31 0.01 0.27 ind:imp:3p; +présageait présager ver 0.79 3.31 0.13 0.95 ind:imp:3s; +présagent présager ver 0.79 3.31 0.01 0.00 ind:pre:3p; +présager présager ver 0.79 3.31 0.14 1.49 inf; +présagerait présager ver 0.79 3.31 0.01 0.07 cnd:pre:3s; +présages présage nom m p 2.99 4.59 1.04 1.82 +présagé présager ver m s 0.79 3.31 0.01 0.00 par:pas; +préscolaire préscolaire adj f s 0.07 0.00 0.05 0.00 +préscolaires préscolaire adj p 0.07 0.00 0.02 0.00 +présence présence nom f s 45.03 135.54 44.95 133.11 +présences présence nom f p 45.03 135.54 0.07 2.43 +présent présent nom m s 66.72 141.01 65.14 137.23 +présenta présenter ver 165.86 135.14 0.93 13.18 ind:pas:3s; +présentable présentable adj s 3.17 2.09 2.65 1.82 +présentables présentable adj p 3.17 2.09 0.52 0.27 +présentai présenter ver 165.86 135.14 0.17 1.28 ind:pas:1s; +présentaient présenter ver 165.86 135.14 0.21 4.32 ind:imp:3p; +présentais présenter ver 165.86 135.14 0.40 0.74 ind:imp:1s;ind:imp:2s; +présentait présenter ver 165.86 135.14 1.59 20.14 ind:imp:3s; +présentant présenter ver 165.86 135.14 1.09 5.54 par:pre; +présentassent présenter ver 165.86 135.14 0.00 0.07 sub:imp:3p; +présentateur présentateur nom m s 2.91 1.49 1.76 1.08 +présentateurs présentateur nom m p 2.91 1.49 0.20 0.14 +présentation présentation nom f s 7.88 8.38 5.52 4.80 +présentations présentation nom f p 7.88 8.38 2.37 3.58 +présentatrice présentateur nom f s 2.91 1.49 0.95 0.20 +présentatrices présentatrice nom f p 0.20 0.00 0.20 0.00 +présente présenter ver 165.86 135.14 61.59 27.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +présentement présentement adv 1.27 3.78 1.27 3.78 +présentent présenter ver 165.86 135.14 3.81 4.73 ind:pre:3p; +présenter présenter ver 165.86 135.14 56.14 28.99 inf;; +présentera présenter ver 165.86 135.14 1.91 0.61 ind:fut:3s; +présenterai présenter ver 165.86 135.14 2.89 0.88 ind:fut:1s; +présenteraient présenter ver 165.86 135.14 0.00 0.61 cnd:pre:3p; +présenterais présenter ver 165.86 135.14 0.43 0.07 cnd:pre:1s;cnd:pre:2s; +présenterait présenter ver 165.86 135.14 0.36 2.03 cnd:pre:3s; +présenteras présenter ver 165.86 135.14 0.24 0.20 ind:fut:2s; +présenterez présenter ver 165.86 135.14 0.82 0.41 ind:fut:2p; +présenteriez présenter ver 165.86 135.14 0.03 0.00 cnd:pre:2p; +présenterons présenter ver 165.86 135.14 0.36 0.00 ind:fut:1p; +présenteront présenter ver 165.86 135.14 0.51 0.41 ind:fut:3p; +présentes présenter ver 165.86 135.14 3.44 0.41 ind:pre:2s; +présentez présenter ver 165.86 135.14 5.83 0.81 imp:pre:2p;ind:pre:2p; +présentiez présenter ver 165.86 135.14 0.40 0.14 ind:imp:2p; +présentions présenter ver 165.86 135.14 0.02 0.20 ind:imp:1p; +présentoir présentoir nom m s 0.38 1.35 0.38 0.88 +présentoirs présentoir nom m p 0.38 1.35 0.00 0.47 +présentons présenter ver 165.86 135.14 0.79 0.54 imp:pre:1p;ind:pre:1p; +présentât présenter ver 165.86 135.14 0.00 0.27 sub:imp:3s; +présents présent adj m p 53.70 80.74 5.38 8.85 +présentèrent présenter ver 165.86 135.14 0.15 1.28 ind:pas:3p; +présenté présenter ver m s 165.86 135.14 12.58 11.42 par:pas; +présentée présenter ver f s 165.86 135.14 3.86 3.99 par:pas; +présentées présenter ver f p 165.86 135.14 0.73 1.76 par:pas; +présentés présenter ver m p 165.86 135.14 4.57 2.64 par:pas; +préserva préserver ver 14.61 21.15 0.01 0.20 ind:pas:3s; +préservaient préserver ver 14.61 21.15 0.00 0.47 ind:imp:3p; +préservais préserver ver 14.61 21.15 0.11 0.07 ind:imp:1s; +préservait préserver ver 14.61 21.15 0.17 1.01 ind:imp:3s; +préservant préserver ver 14.61 21.15 0.45 0.41 par:pre; +préservateur préservateur nom m s 0.01 0.00 0.01 0.00 +préservatif préservatif nom m s 5.19 0.47 2.16 0.07 +préservatifs préservatif nom m p 5.19 0.47 3.03 0.41 +préservation préservation nom f s 1.00 0.47 1.00 0.47 +préserve préserver ver 14.61 21.15 2.99 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +préservent préserver ver 14.61 21.15 0.10 0.34 ind:pre:3p; +préserver préserver ver 14.61 21.15 7.26 9.66 ind:pre:2p;inf; +préservera préserver ver 14.61 21.15 0.23 0.07 ind:fut:3s; +préserverai préserver ver 14.61 21.15 0.03 0.00 ind:fut:1s; +préserverait préserver ver 14.61 21.15 0.00 0.20 cnd:pre:3s; +préservez préserver ver 14.61 21.15 0.54 0.20 imp:pre:2p;ind:pre:2p; +préservons préserver ver 14.61 21.15 0.21 0.00 imp:pre:1p;ind:pre:1p; +préservé préserver ver m s 14.61 21.15 1.49 3.65 par:pas; +préservée préserver ver f s 14.61 21.15 0.59 2.36 par:pas; +préservées préserver ver f p 14.61 21.15 0.32 0.41 par:pas; +préservés préserver ver m p 14.61 21.15 0.12 0.47 par:pas; +présida présider ver 4.72 10.61 0.14 0.27 ind:pas:3s; +présidai présider ver 4.72 10.61 0.00 0.20 ind:pas:1s; +présidaient présider ver 4.72 10.61 0.00 0.41 ind:imp:3p; +présidais présider ver 4.72 10.61 0.17 0.00 ind:imp:1s; +présidait présider ver 4.72 10.61 0.46 2.16 ind:imp:3s; +présidant présider ver 4.72 10.61 0.00 0.47 par:pre; +préside présider ver 4.72 10.61 1.20 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +présidence présidence nom f s 4.27 5.95 4.26 5.88 +présidences présidence nom f p 4.27 5.95 0.01 0.07 +président_directeur président_directeur nom m s 0.02 0.27 0.02 0.27 +président président nom m s 143.39 79.66 131.53 76.22 +présidente président nom f s 143.39 79.66 9.21 1.08 +présidentes président nom f p 143.39 79.66 0.17 0.07 +présidentiable présidentiable adj s 0.04 0.34 0.04 0.27 +présidentiables présidentiable adj p 0.04 0.34 0.00 0.07 +présidentiel présidentiel adj m s 3.80 1.69 1.86 0.68 +présidentielle présidentiel adj f s 3.80 1.69 1.85 0.95 +présidentielles présidentielle adj f p 0.62 0.27 0.62 0.27 +présidentiels présidentiel adj m p 3.80 1.69 0.09 0.07 +présidents_directeur présidents_directeur nom m p 0.00 0.14 0.00 0.14 +présidents président nom m p 143.39 79.66 2.48 2.30 +présider présider ver 4.72 10.61 1.01 1.89 inf; +présidera présider ver 4.72 10.61 0.38 0.07 ind:fut:3s; +présiderai présider ver 4.72 10.61 0.07 0.00 ind:fut:1s; +présiderais présider ver 4.72 10.61 0.00 0.07 cnd:pre:1s; +présiderait présider ver 4.72 10.61 0.03 0.14 cnd:pre:3s; +présideras présider ver 4.72 10.61 0.00 0.14 ind:fut:2s; +présiderez présider ver 4.72 10.61 0.01 0.07 ind:fut:2p; +présides présider ver 4.72 10.61 0.01 0.00 ind:pre:2s; +présidiez présider ver 4.72 10.61 0.02 0.00 ind:imp:2p; +présidium présidium nom m s 0.02 0.14 0.02 0.14 +présidons présider ver 4.72 10.61 0.01 0.07 ind:pre:1p; +présidât présider ver 4.72 10.61 0.00 0.07 sub:imp:3s; +présidèrent présider ver 4.72 10.61 0.00 0.07 ind:pas:3p; +présidé présider ver m s 4.72 10.61 0.41 1.96 par:pas; +présidée présider ver f s 4.72 10.61 0.38 0.41 par:pas; +présidés présider ver m p 4.72 10.61 0.01 0.20 par:pas; +présocratique présocratique adj s 0.00 0.20 0.00 0.14 +présocratiques présocratique adj p 0.00 0.20 0.00 0.07 +présomptif présomptif adj m s 0.23 0.20 0.23 0.14 +présomption présomption nom f s 1.46 1.76 1.06 1.08 +présomptions présomption nom f p 1.46 1.76 0.39 0.68 +présomptive présomptif adj f s 0.23 0.20 0.00 0.07 +présomptueuse présomptueux nom f s 0.42 0.20 0.14 0.00 +présomptueuses présomptueux adj f p 1.00 1.22 0.01 0.14 +présomptueux présomptueux adj m s 1.00 1.22 0.91 0.88 +prussianisé prussianiser ver m s 0.00 0.07 0.00 0.07 par:pas; +prussien prussien adj m s 0.41 3.38 0.16 1.01 +prussienne prussien adj f s 0.41 3.38 0.04 1.42 +prussiennes prussien adj f p 0.41 3.38 0.03 0.41 +prussiens prussien nom m p 0.46 2.97 0.38 2.03 +prussik prussik nom m s 0.02 0.00 0.02 0.00 +prussique prussique adj m s 0.41 0.20 0.41 0.20 +préséance préséance nom f s 0.06 0.81 0.05 0.47 +préséances préséance nom f p 0.06 0.81 0.01 0.34 +présélection présélection nom f s 0.06 0.00 0.04 0.00 +présélectionné présélectionner ver m s 0.04 0.00 0.03 0.00 par:pas; +présélectionnée présélectionner ver f s 0.04 0.00 0.02 0.00 par:pas; +présélections présélection nom f p 0.06 0.00 0.02 0.00 +présumables présumable adj m p 0.00 0.07 0.00 0.07 +présumai présumer ver 9.29 3.65 0.00 0.20 ind:pas:1s; +présumais présumer ver 9.29 3.65 0.16 0.00 ind:imp:1s;ind:imp:2s; +présumait présumer ver 9.29 3.65 0.01 0.47 ind:imp:3s; +présumant présumer ver 9.29 3.65 0.08 0.14 par:pre; +présume présumer ver 9.29 3.65 6.36 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +présumer présumer ver 9.29 3.65 0.82 0.61 inf; +présumerai présumer ver 9.29 3.65 0.02 0.00 ind:fut:1s; +présumez présumer ver 9.29 3.65 0.11 0.00 imp:pre:2p;ind:pre:2p; +présumons présumer ver 9.29 3.65 0.11 0.00 imp:pre:1p;ind:pre:1p; +présumé présumé adj m s 1.62 0.88 1.22 0.47 +présumée présumer ver f s 9.29 3.65 0.38 0.20 par:pas; +présumées présumé adj f p 1.62 0.88 0.02 0.07 +présumés présumer ver m p 9.29 3.65 0.21 0.00 par:pas; +préséniles présénile adj p 0.10 0.00 0.10 0.00 +présupposant présupposer ver 0.15 0.20 0.00 0.14 par:pre; +présuppose présupposer ver 0.15 0.20 0.14 0.00 ind:pre:3s; +présupposent présupposer ver 0.15 0.20 0.01 0.00 ind:pre:3p; +présupposée présupposer ver f s 0.15 0.20 0.00 0.07 par:pas; +prêt_bail prêt_bail nom m s 0.00 0.27 0.00 0.27 +prêt_à_porter prêt_à_porter nom m s 0.00 0.95 0.00 0.95 +prêt prêt adj m s 314.64 121.28 170.23 60.41 +prêta prêter ver 62.00 87.09 0.21 4.59 ind:pas:3s; +prêtai prêter ver 62.00 87.09 0.00 0.41 ind:pas:1s; +prêtaient prêter ver 62.00 87.09 0.28 2.77 ind:imp:3p; +prêtais prêter ver 62.00 87.09 0.38 1.42 ind:imp:1s;ind:imp:2s; +prêtait prêter ver 62.00 87.09 0.29 13.24 ind:imp:3s; +prêtant prêter ver 62.00 87.09 0.33 2.91 par:pre; +prêtassent prêter ver 62.00 87.09 0.00 0.14 sub:imp:3p; +prête_nom prête_nom nom m s 0.00 0.27 0.00 0.27 +prête prêt adj f s 314.64 121.28 66.25 28.31 +prétend prétendre ver 35.64 67.43 11.42 13.24 ind:pre:3s; +prétendît prétendre ver 35.64 67.43 0.00 0.34 sub:imp:3s; +prétendaient prétendre ver 35.64 67.43 0.42 3.65 ind:imp:3p; +prétendais prétendre ver 35.64 67.43 0.55 1.49 ind:imp:1s;ind:imp:2s; +prétendait prétendre ver 35.64 67.43 1.24 16.49 ind:imp:3s; +prétendant prétendant nom m s 3.16 2.16 1.96 1.01 +prétendante prétendant nom f s 3.16 2.16 0.01 0.00 +prétendants prétendant nom m p 3.16 2.16 1.20 1.15 +prétende prétendre ver 35.64 67.43 0.26 0.41 sub:pre:1s;sub:pre:3s; +prétendent prétendre ver 35.64 67.43 2.67 4.32 ind:pre:3p; +prétendez prétendre ver 35.64 67.43 3.10 1.22 imp:pre:2p;ind:pre:2p; +prétendiez prétendre ver 35.64 67.43 0.16 0.07 ind:imp:2p; +prétendions prétendre ver 35.64 67.43 0.02 0.34 ind:imp:1p; +prétendirent prétendre ver 35.64 67.43 0.02 0.54 ind:pas:3p; +prétendis prétendre ver 35.64 67.43 0.00 0.74 ind:pas:1s; +prétendissent prétendre ver 35.64 67.43 0.00 0.07 sub:imp:3p; +prétendit prétendre ver 35.64 67.43 0.17 1.82 ind:pas:3s; +prétendons prétendre ver 35.64 67.43 0.19 0.81 imp:pre:1p;ind:pre:1p; +prétendra prétendre ver 35.64 67.43 0.21 0.27 ind:fut:3s; +prétendrai prétendre ver 35.64 67.43 0.09 0.07 ind:fut:1s; +prétendraient prétendre ver 35.64 67.43 0.00 0.14 cnd:pre:3p; +prétendrais prétendre ver 35.64 67.43 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +prétendrait prétendre ver 35.64 67.43 0.13 0.34 cnd:pre:3s; +prétendras prétendre ver 35.64 67.43 0.29 0.00 ind:fut:2s; +prétendre prétendre ver 35.64 67.43 6.00 10.54 inf; +prétendront prétendre ver 35.64 67.43 0.03 0.20 ind:fut:3p; +prétends prétendre ver 35.64 67.43 4.84 3.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prétendu prétendre ver m s 35.64 67.43 2.41 3.65 par:pas; +prétendue prétendu adj f s 2.82 7.64 0.75 2.43 +prétendues prétendu adj f p 2.82 7.64 0.14 0.88 +prétendument prétendument adv 0.37 1.76 0.37 1.76 +prétendus prétendu adj m p 2.82 7.64 0.61 1.82 +prêtent prêter ver 62.00 87.09 0.42 2.50 ind:pre:3p; +prétentaine prétentaine nom f s 0.02 0.07 0.02 0.07 +prétentiard prétentiard adj m s 0.14 0.00 0.14 0.00 +prétentiarde prétentiard nom f s 0.01 0.20 0.00 0.07 +prétentiards prétentiard nom m p 0.01 0.20 0.00 0.07 +prétentieuse prétentieux adj f s 4.51 5.95 1.05 2.03 +prétentieuses prétentieux adj f p 4.51 5.95 0.10 0.68 +prétentieux prétentieux adj m 4.51 5.95 3.37 3.24 +prétention prétention nom f s 2.63 10.68 1.51 6.28 +prétentions prétention nom f p 2.63 10.68 1.12 4.39 +prêter prêter ver 62.00 87.09 14.40 21.22 inf;; +prêtera prêter ver 62.00 87.09 1.37 0.41 ind:fut:3s; +prêterai prêter ver 62.00 87.09 1.56 0.88 ind:fut:1s; +prêteraient prêter ver 62.00 87.09 0.03 0.41 cnd:pre:3p; +prêterais prêter ver 62.00 87.09 0.55 0.41 cnd:pre:1s;cnd:pre:2s; +prêterait prêter ver 62.00 87.09 0.48 1.08 cnd:pre:3s; +prêteras prêter ver 62.00 87.09 0.22 0.07 ind:fut:2s; +prêterez prêter ver 62.00 87.09 0.09 0.07 ind:fut:2p; +prêteriez prêter ver 62.00 87.09 0.16 0.27 cnd:pre:2p; +prêterions prêter ver 62.00 87.09 0.01 0.14 cnd:pre:1p; +préternaturel préternaturel adj m s 0.03 0.00 0.03 0.00 +prêterons prêter ver 62.00 87.09 0.02 0.20 ind:fut:1p; +prêteront prêter ver 62.00 87.09 0.41 0.20 ind:fut:3p; +prêtes prêt adj f p 314.64 121.28 10.78 7.64 +prêteur prêteur adj m s 0.27 0.41 0.23 0.20 +préteur préteur nom m s 0.02 0.20 0.02 0.14 +prêteur prêteur nom m s 1.56 0.61 1.13 0.27 +prêteurs prêteur adj m p 0.27 0.41 0.02 0.14 +préteurs préteur nom m p 0.02 0.20 0.00 0.07 +prêteurs prêteur nom m p 1.56 0.61 0.43 0.27 +prêteuse prêteur adj f s 0.27 0.41 0.01 0.07 +prétexta prétexter ver 0.87 5.61 0.01 0.61 ind:pas:3s; +prétextai prétexter ver 0.87 5.61 0.00 0.20 ind:pas:1s; +prétextait prétexter ver 0.87 5.61 0.01 0.41 ind:imp:3s; +prétextant prétexter ver 0.87 5.61 0.34 3.11 par:pre; +prétexte prétexte nom m s 14.04 42.91 12.10 36.82 +prétextent prétexter ver 0.87 5.61 0.01 0.00 ind:pre:3p; +prétexter prétexter ver 0.87 5.61 0.19 0.07 inf; +prétextes prétexte nom m p 14.04 42.91 1.94 6.08 +prétexté prétexter ver m s 0.87 5.61 0.19 0.54 par:pas; +prêtez prêter ver 62.00 87.09 4.16 0.74 imp:pre:2p;ind:pre:2p; +prêtiez prêter ver 62.00 87.09 0.22 0.07 ind:imp:2p; +prêtions prêter ver 62.00 87.09 0.02 0.20 ind:imp:1p; +prétoire prétoire nom m s 0.24 2.30 0.09 2.16 +prétoires prétoire nom m p 0.24 2.30 0.16 0.14 +prêtâmes prêter ver 62.00 87.09 0.00 0.07 ind:pas:1p; +prêtons prêter ver 62.00 87.09 0.26 0.41 imp:pre:1p;ind:pre:1p; +prétorien prétorien nom m s 0.18 0.07 0.03 0.00 +prétorienne prétorien adj f s 0.36 0.34 0.35 0.14 +prétoriennes prétorien adj f p 0.36 0.34 0.00 0.07 +prétoriens prétorien nom m p 0.18 0.07 0.15 0.07 +prêtât prêter ver 62.00 87.09 0.00 0.34 sub:imp:3s; +prêtraille prêtraille nom f s 0.00 0.07 0.00 0.07 +prêtre_ouvrier prêtre_ouvrier nom m s 0.00 0.07 0.00 0.07 +prêtre prêtre nom m s 51.20 45.27 38.37 29.39 +prêtres prêtre nom m p 51.20 45.27 11.31 14.66 +prêtresse prêtre nom f s 51.20 45.27 1.52 0.88 +prêtresses prêtresse nom f p 0.49 0.00 0.49 0.00 +prêtrise prêtrise nom f s 0.28 0.41 0.28 0.41 +prêts prêt adj 314.64 121.28 67.39 24.93 +prêtèrent prêter ver 62.00 87.09 0.30 0.14 ind:pas:3p; +prêté prêter ver m s 62.00 87.09 10.73 11.08 par:pas; +prêtée prêter ver f s 62.00 87.09 1.28 2.57 par:pas; +prêtées prêter ver f p 62.00 87.09 0.12 0.54 par:pas; +préture préture nom f s 0.01 0.00 0.01 0.00 +prêtés prêter ver m p 62.00 87.09 0.37 1.15 par:pas; +préélectoral préélectoral adj m s 0.02 0.00 0.01 0.00 +préélectorale préélectoral adj f s 0.02 0.00 0.01 0.00 +prééminence prééminence nom f s 0.01 0.41 0.01 0.41 +prééminente prééminent adj f s 0.00 0.07 0.00 0.07 +préétabli préétabli adj m s 0.28 0.41 0.25 0.14 +préétablie préétabli adj f s 0.28 0.41 0.01 0.20 +préétablies préétabli adj f p 0.28 0.41 0.01 0.00 +préétablis préétabli adj m p 0.28 0.41 0.01 0.07 +prévînt prévenir ver 129.26 73.72 0.00 0.07 sub:imp:3s; +prévôt prévôt nom m s 0.47 1.42 0.39 1.35 +prévôts prévôt nom m p 0.47 1.42 0.08 0.07 +prévôté prévôté nom f s 0.01 0.20 0.01 0.20 +prévalaient prévaloir ver 1.44 2.64 0.01 0.27 ind:imp:3p; +prévalait prévaloir ver 1.44 2.64 0.14 0.27 ind:imp:3s; +prévalant prévaloir ver 1.44 2.64 0.10 0.07 par:pre; +prévalence prévalence nom f s 0.11 0.00 0.11 0.00 +prévalent prévalent adj m s 0.14 0.00 0.14 0.00 +prévalez prévaloir ver 1.44 2.64 0.00 0.07 ind:pre:2p; +prévaloir prévaloir ver 1.44 2.64 0.42 1.15 inf; +prévalu prévaloir ver m s 1.44 2.64 0.08 0.20 par:pas; +prévalut prévaloir ver 1.44 2.64 0.01 0.20 ind:pas:3s; +prévaricateur prévaricateur nom m s 0.00 0.14 0.00 0.14 +prévaudra prévaloir ver 1.44 2.64 0.36 0.00 ind:fut:3s; +prévaudrait prévaloir ver 1.44 2.64 0.03 0.14 cnd:pre:3s; +prévaudront prévaloir ver 1.44 2.64 0.01 0.00 ind:fut:3p; +prévaut prévaloir ver 1.44 2.64 0.26 0.27 ind:pre:3s; +prévenaient prévenir ver 129.26 73.72 0.00 0.20 ind:imp:3p; +prévenais prévenir ver 129.26 73.72 0.06 0.07 ind:imp:1s;ind:imp:2s; +prévenait prévenir ver 129.26 73.72 0.32 2.23 ind:imp:3s; +prévenance prévenance nom f s 0.43 2.50 0.23 0.41 +prévenances prévenance nom f p 0.43 2.50 0.20 2.09 +prévenant prévenant adj m s 1.12 1.35 0.74 0.74 +prévenante prévenant adj f s 1.12 1.35 0.29 0.47 +prévenants prévenant adj m p 1.12 1.35 0.09 0.14 +prévenez prévenir ver 129.26 73.72 10.22 1.42 imp:pre:2p;ind:pre:2p; +préveniez prévenir ver 129.26 73.72 0.07 0.07 ind:imp:2p; +prévenions prévenir ver 129.26 73.72 0.11 0.07 ind:imp:1p; +prévenir prévenir ver 129.26 73.72 42.49 31.49 inf; +prévenons prévenir ver 129.26 73.72 0.67 0.00 imp:pre:1p;ind:pre:1p; +préventif préventif adj m s 1.85 1.22 0.26 0.41 +prévention prévention nom f s 1.40 2.57 1.33 1.35 +préventions prévention nom f p 1.40 2.57 0.07 1.22 +préventive préventif adj f s 1.85 1.22 1.50 0.61 +préventivement préventivement adv 0.00 0.34 0.00 0.34 +préventives préventif adj f p 1.85 1.22 0.09 0.20 +préventorium préventorium nom m s 0.00 0.41 0.00 0.41 +prévenu prévenir ver m s 129.26 73.72 24.25 14.53 par:pas; +prévenue prévenir ver f s 129.26 73.72 7.24 3.65 par:pas; +prévenues prévenir ver f p 129.26 73.72 0.33 0.20 par:pas; +prévenus prévenir ver m p 129.26 73.72 4.64 3.58 par:pas; +préviendra prévenir ver 129.26 73.72 1.06 0.20 ind:fut:3s; +préviendrai prévenir ver 129.26 73.72 1.96 0.41 ind:fut:1s; +préviendrais prévenir ver 129.26 73.72 0.07 0.07 cnd:pre:1s; +préviendrait prévenir ver 129.26 73.72 0.08 0.47 cnd:pre:3s; +préviendras prévenir ver 129.26 73.72 0.12 0.20 ind:fut:2s; +préviendrez prévenir ver 129.26 73.72 0.14 0.14 ind:fut:2p; +préviendrons prévenir ver 129.26 73.72 0.18 0.00 ind:fut:1p; +préviendront prévenir ver 129.26 73.72 0.10 0.07 ind:fut:3p; +prévienne prévenir ver 129.26 73.72 1.37 1.69 sub:pre:1s;sub:pre:3s; +préviennent prévenir ver 129.26 73.72 0.63 0.47 ind:pre:3p; +préviennes prévenir ver 129.26 73.72 0.23 0.00 sub:pre:2s; +préviens prévenir ver 129.26 73.72 29.86 6.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prévient prévenir ver 129.26 73.72 2.50 2.03 ind:pre:3s; +prévins prévenir ver 129.26 73.72 0.00 0.54 ind:pas:1s; +prévint prévenir ver 129.26 73.72 0.00 2.30 ind:pas:3s; +prévis prévis nom f 0.00 0.14 0.00 0.14 +prévisibilité prévisibilité nom f s 0.04 0.00 0.04 0.00 +prévisible prévisible adj s 2.79 3.45 2.40 2.77 +prévisibles prévisible adj p 2.79 3.45 0.39 0.68 +prévision prévision nom f s 3.29 7.03 1.28 3.58 +prévisionnel prévisionnel adj m s 0.12 0.07 0.08 0.00 +prévisionnelles prévisionnel adj f p 0.12 0.07 0.01 0.00 +prévisionnels prévisionnel adj m p 0.12 0.07 0.03 0.07 +prévisions prévision nom f p 3.29 7.03 2.00 3.45 +prévit prévoir ver 78.22 77.09 0.00 0.07 ind:pas:3s; +prévoie prévoir ver 78.22 77.09 0.44 0.00 sub:pre:1s;sub:pre:3s; +prévoient prévoir ver 78.22 77.09 0.54 0.34 ind:pre:3p; +prévoies prévoir ver 78.22 77.09 0.09 0.00 sub:pre:2s; +prévoir prévoir ver 78.22 77.09 8.23 17.70 inf; +prévoira prévoir ver 78.22 77.09 0.01 0.00 ind:fut:3s; +prévoirait prévoir ver 78.22 77.09 0.01 0.07 cnd:pre:3s; +prévois prévoir ver 78.22 77.09 1.86 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prévoit prévoir ver 78.22 77.09 3.05 1.96 ind:pre:3s; +prévoyaient prévoir ver 78.22 77.09 0.19 0.54 ind:imp:3p; +prévoyais prévoir ver 78.22 77.09 0.40 1.62 ind:imp:1s;ind:imp:2s; +prévoyait prévoir ver 78.22 77.09 0.55 4.05 ind:imp:3s; +prévoyance prévoyance nom f s 0.43 1.28 0.43 1.22 +prévoyances prévoyance nom f p 0.43 1.28 0.00 0.07 +prévoyant prévoyant adj m s 0.78 1.89 0.58 0.88 +prévoyante prévoyant adj f s 0.78 1.89 0.06 0.47 +prévoyantes prévoyant adj f p 0.78 1.89 0.00 0.14 +prévoyants prévoyant adj m p 0.78 1.89 0.14 0.41 +prévoyez prévoir ver 78.22 77.09 0.96 0.14 imp:pre:2p;ind:pre:2p; +prévoyions prévoir ver 78.22 77.09 0.01 0.07 ind:imp:1p; +prévoyons prévoir ver 78.22 77.09 0.49 0.20 imp:pre:1p;ind:pre:1p; +prévu prévoir ver m s 78.22 77.09 55.54 33.45 par:pas; +prévue prévoir ver f s 78.22 77.09 4.35 7.70 par:pas; +prévues prévoir ver f p 78.22 77.09 0.65 3.51 par:pas; +prévus prévoir ver m p 78.22 77.09 0.76 2.43 par:pas; +prytanée prytanée nom m s 0.00 0.27 0.00 0.27 +psalliotes psalliote nom f p 0.00 0.20 0.00 0.20 +psalmiste psalmiste nom s 0.00 0.14 0.00 0.14 +psalmodia psalmodier ver 0.33 3.24 0.00 0.20 ind:pas:3s; +psalmodiaient psalmodier ver 0.33 3.24 0.00 0.14 ind:imp:3p; +psalmodiais psalmodier ver 0.33 3.24 0.03 0.14 ind:imp:1s;ind:imp:2s; +psalmodiait psalmodier ver 0.33 3.24 0.01 0.81 ind:imp:3s; +psalmodiant psalmodier ver 0.33 3.24 0.01 0.81 par:pre; +psalmodie psalmodier ver 0.33 3.24 0.06 0.41 ind:pre:1s;ind:pre:3s; +psalmodient psalmodier ver 0.33 3.24 0.00 0.14 ind:pre:3p; +psalmodier psalmodier ver 0.33 3.24 0.16 0.47 inf; +psalmodies psalmodie nom f p 0.15 0.74 0.12 0.41 +psalmodié psalmodier ver m s 0.33 3.24 0.01 0.14 par:pas; +psalmodiés psalmodier ver m p 0.33 3.24 0.01 0.00 par:pas; +psaume psaume nom m s 1.73 4.39 0.83 1.96 +psaumes psaume nom m p 1.73 4.39 0.90 2.43 +psautier psautier nom m s 0.00 0.14 0.00 0.14 +pschent pschent nom m s 0.00 0.07 0.00 0.07 +pschitt pschitt ono 0.02 0.95 0.02 0.95 +pseudo_gouvernement pseudo_gouvernement nom m s 0.00 0.14 0.00 0.14 +pseudo pseudo nom_sup m s 1.62 1.08 1.37 1.01 +pseudobulbaire pseudobulbaire adj f s 0.01 0.00 0.01 0.00 +pseudomonas pseudomonas nom m 0.05 0.00 0.05 0.00 +pseudonyme pseudonyme nom m s 1.62 4.05 1.46 3.38 +pseudonymes pseudonyme nom m p 1.62 4.05 0.16 0.68 +pseudopodes pseudopode nom m p 0.00 0.14 0.00 0.14 +pseudos pseudo nom_sup m p 1.62 1.08 0.25 0.07 +psi psi nom m 0.04 0.00 0.04 0.00 +psilocybine psilocybine nom f s 0.05 0.00 0.05 0.00 +psitt psitt ono 0.01 0.20 0.01 0.20 +psittacose psittacose nom f s 0.05 0.00 0.05 0.00 +psoriasis psoriasis nom m 0.14 0.00 0.14 0.00 +pst pst ono 0.43 0.00 0.43 0.00 +psy psy nom s 17.22 3.85 15.94 3.85 +psychanalyse psychanalyse nom f s 1.35 4.73 1.35 4.66 +psychanalyser psychanalyser ver 0.22 1.42 0.14 1.01 inf; +psychanalyserai psychanalyser ver 0.22 1.42 0.00 0.20 ind:fut:1s; +psychanalyses psychanalyser ver 0.22 1.42 0.01 0.00 ind:pre:2s; +psychanalyste psychanalyste nom s 0.91 3.38 0.83 2.77 +psychanalystes psychanalyste nom p 0.91 3.38 0.08 0.61 +psychanalysé psychanalyser ver m s 0.22 1.42 0.04 0.07 par:pas; +psychanalytique psychanalytique adj s 0.15 0.54 0.13 0.41 +psychanalytiques psychanalytique adj p 0.15 0.54 0.02 0.14 +psychasthéniques psychasthénique adj p 0.00 0.07 0.00 0.07 +psychiatre_conseil psychiatre_conseil nom s 0.02 0.00 0.02 0.00 +psychiatre psychiatre nom s 13.52 8.11 11.39 6.82 +psychiatres psychiatre nom p 13.52 8.11 2.13 1.28 +psychiatrie psychiatrie nom f s 3.59 1.22 3.59 1.22 +psychiatrique psychiatrique adj s 9.16 3.65 7.68 3.04 +psychiatriques psychiatrique adj p 9.16 3.65 1.48 0.61 +psychique psychique adj s 3.34 2.84 1.75 1.76 +psychiquement psychiquement adv 0.13 0.00 0.13 0.00 +psychiques psychique adj p 3.34 2.84 1.59 1.08 +psychisme psychisme nom m s 0.38 1.15 0.38 1.08 +psychismes psychisme nom m p 0.38 1.15 0.00 0.07 +psycho psycho adv 2.11 0.27 2.11 0.27 +psychochirurgie psychochirurgie nom f s 0.02 0.00 0.02 0.00 +psychodrame psychodrame nom m s 0.33 0.20 0.33 0.20 +psychodysleptique psychodysleptique adj s 0.01 0.00 0.01 0.00 +psychogène psychogène adj f s 0.01 1.08 0.01 0.20 +psychogènes psychogène adj p 0.01 1.08 0.00 0.88 +psychokinésie psychokinésie nom f s 0.20 0.00 0.20 0.00 +psycholinguistes psycholinguiste nom p 0.00 0.07 0.00 0.07 +psycholinguistique psycholinguistique adj s 0.01 0.00 0.01 0.00 +psychologie_fiction psychologie_fiction nom f s 0.00 0.07 0.00 0.07 +psychologie psychologie nom f s 5.64 8.24 5.64 8.11 +psychologies psychologie nom f p 5.64 8.24 0.00 0.14 +psychologique psychologique adj s 8.07 6.69 6.79 4.93 +psychologiquement psychologiquement adv 1.68 0.34 1.68 0.34 +psychologiques psychologique adj p 8.07 6.69 1.28 1.76 +psychologisation psychologisation nom f s 0.00 0.07 0.00 0.07 +psychologue psychologue nom s 6.67 3.72 5.98 2.64 +psychologues psychologue nom p 6.67 3.72 0.69 1.08 +psychomotrice psychomoteur adj f s 0.14 0.00 0.14 0.00 +psychométrique psychométrique adj s 0.02 0.00 0.02 0.00 +psychonévrose psychonévrose nom f s 0.01 0.00 0.01 0.00 +psychopathe psychopathe nom s 9.38 0.14 8.01 0.14 +psychopathes psychopathe nom p 9.38 0.14 1.38 0.00 +psychopathie psychopathie nom f s 0.02 0.00 0.02 0.00 +psychopathique psychopathique adj f s 0.13 0.00 0.13 0.00 +psychopathologie psychopathologie nom f s 0.05 0.07 0.05 0.07 +psychopathologique psychopathologique adj f s 0.01 0.07 0.01 0.07 +psychopharmacologie psychopharmacologie nom f s 0.03 0.00 0.03 0.00 +psychophysiologie psychophysiologie nom f s 0.01 0.00 0.01 0.00 +psychophysiologique psychophysiologique adj f s 0.01 0.00 0.01 0.00 +psychorigide psychorigide adj m s 0.02 0.00 0.02 0.00 +psychose psychose nom f s 1.79 0.95 1.79 0.95 +psychosexuel psychosexuel adj m s 0.01 0.00 0.01 0.00 +psychosociologie psychosociologie nom f s 0.00 0.07 0.00 0.07 +psychosociologue psychosociologue nom s 0.10 0.00 0.10 0.00 +psychosomaticien psychosomaticien nom m s 0.00 0.20 0.00 0.20 +psychosomatique psychosomatique adj s 0.66 0.47 0.55 0.41 +psychosomatiques psychosomatique adj p 0.66 0.47 0.11 0.07 +psychotechnicien psychotechnicien nom m s 0.00 0.20 0.00 0.14 +psychotechniciens psychotechnicien nom m p 0.00 0.20 0.00 0.07 +psychotechnique psychotechnique adj m s 0.20 0.00 0.20 0.00 +psychothérapeute psychothérapeute nom s 0.23 0.14 0.23 0.14 +psychothérapie psychothérapie nom f s 0.69 0.20 0.69 0.20 +psychotique psychotique adj s 2.66 0.27 2.25 0.00 +psychotiques psychotique adj p 2.66 0.27 0.42 0.27 +psychotoniques psychotonique nom p 0.01 0.00 0.01 0.00 +psychotrope psychotrope nom s 0.34 0.00 0.07 0.00 +psychotropes psychotrope nom p 0.34 0.00 0.26 0.00 +psyché psyché nom f s 0.73 1.08 0.70 1.01 +psychédélique psychédélique adj s 0.89 0.61 0.79 0.41 +psychédéliques psychédélique adj p 0.89 0.61 0.11 0.20 +psychés psyché nom f p 0.73 1.08 0.03 0.07 +psyllium psyllium nom m s 0.01 0.00 0.01 0.00 +psys psy nom p 17.22 3.85 1.28 0.00 +pèche pécher ver 9.87 4.59 0.96 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèchent pécher ver 9.87 4.59 0.01 0.07 ind:pre:3p; +pègre pègre nom f s 1.34 1.42 1.34 1.42 +pèle peler ver 1.78 4.93 0.88 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèlent peler ver 1.78 4.93 0.27 0.20 ind:pre:3p; +pèlerai peler ver 1.78 4.93 0.02 0.00 ind:fut:1s; +pèlerin pèlerin nom m s 4.04 12.70 1.31 1.89 +pèlerinage pèlerinage nom m s 2.32 8.58 2.02 7.23 +pèlerinages pèlerinage nom m p 2.32 8.58 0.30 1.35 +pèlerine pèlerin nom f s 4.04 12.70 0.27 4.80 +pèlerines pèlerin nom f p 4.04 12.70 0.01 0.95 +pèlerins pèlerin nom m p 4.04 12.70 2.45 5.07 +pèles peler ver 1.78 4.93 0.00 0.14 ind:pre:2s; +père père nom m s 895.55 723.51 879.31 708.11 +pères père nom m p 895.55 723.51 16.25 15.41 +pèse_acide pèse_acide nom m s 0.00 0.07 0.00 0.07 +pèse_bébé pèse_bébé nom m s 0.00 0.14 0.00 0.14 +pèse_lettre pèse_lettre nom m s 0.00 0.07 0.00 0.07 +pèse_personne pèse_personne nom m s 0.02 0.07 0.02 0.00 +pèse_personne pèse_personne nom m p 0.02 0.07 0.00 0.07 +pèse peser ver 23.41 70.88 10.47 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèsent peser ver 23.41 70.88 2.02 4.32 ind:pre:3p; +pèsera peser ver 23.41 70.88 0.30 0.54 ind:fut:3s; +pèserai peser ver 23.41 70.88 0.02 0.20 ind:fut:1s; +pèseraient peser ver 23.41 70.88 0.04 0.07 cnd:pre:3p; +pèserais peser ver 23.41 70.88 0.12 0.14 cnd:pre:1s;cnd:pre:2s; +pèserait peser ver 23.41 70.88 0.05 0.74 cnd:pre:3s; +pèseras peser ver 23.41 70.88 0.01 0.00 ind:fut:2s; +pèseront peser ver 23.41 70.88 0.13 0.07 ind:fut:3p; +pèses peser ver 23.41 70.88 0.61 0.14 ind:pre:2s; +pète_sec pète_sec adj 0.03 0.41 0.03 0.41 +pète péter ver 31.66 16.28 8.16 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pètent péter ver 31.66 16.28 0.79 0.68 ind:pre:3p; +pètes péter ver 31.66 16.28 0.85 0.27 ind:pre:2s; +pètesec pètesec adj f s 0.00 0.07 0.00 0.07 +pèze pèze nom m s 0.82 0.95 0.82 0.95 +ptosis ptosis nom m 0.01 0.00 0.01 0.00 +ptérodactyle ptérodactyle nom m s 0.21 0.20 0.19 0.07 +ptérodactyles ptérodactyle nom m p 0.21 0.20 0.02 0.14 +ptyx ptyx nom m 0.00 0.07 0.00 0.07 +pu pouvoir ver_sup m s 5524.52 2659.80 366.22 349.32 par:pas; +puîné puîné nom m s 0.00 0.27 0.00 0.14 +puînée puîné adj f s 0.00 0.07 0.00 0.07 +puînés puîné nom m p 0.00 0.27 0.00 0.14 +pua puer ver 36.29 18.65 0.01 0.07 ind:pas:3s; +péage péage nom m s 1.08 1.01 0.90 0.88 +péages péage nom m p 1.08 1.01 0.18 0.14 +péagiste péagiste nom s 0.00 0.07 0.00 0.07 +puaient puer ver 36.29 18.65 0.04 0.47 ind:imp:3p; +puais puer ver 36.29 18.65 0.37 0.20 ind:imp:1s;ind:imp:2s; +puait puer ver 36.29 18.65 1.19 3.51 ind:imp:3s; +péan péan nom m s 0.00 0.07 0.00 0.07 +puant puant adj m s 7.02 11.49 2.74 4.59 +puante puant adj f s 7.02 11.49 1.91 3.11 +puantes puant adj f p 7.02 11.49 0.77 2.30 +puanteur puanteur nom f s 3.44 9.05 3.32 7.91 +puanteurs puanteur nom f p 3.44 9.05 0.12 1.15 +puants puant adj m p 7.02 11.49 1.60 1.49 +pub pub nom s 25.65 4.53 21.39 3.99 +pubertaire pubertaire adj s 0.14 0.20 0.14 0.07 +pubertaires pubertaire adj f p 0.14 0.20 0.00 0.14 +puberté puberté nom f s 1.32 2.36 1.32 2.36 +pubescentes pubescent adj f p 0.01 0.00 0.01 0.00 +pubien pubien adj m s 1.51 0.41 0.57 0.07 +pubienne pubien adj f s 1.51 0.41 0.20 0.20 +pubiennes pubien adj f p 1.51 0.41 0.01 0.07 +pubiens pubien adj m p 1.51 0.41 0.72 0.07 +pubis pubis nom m 0.59 1.15 0.59 1.15 +publia publier ver 21.07 33.92 0.03 1.35 ind:pas:3s; +publiable publiable adj s 0.03 0.07 0.01 0.07 +publiables publiable adj m p 0.03 0.07 0.02 0.00 +publiai publier ver 21.07 33.92 0.01 0.27 ind:pas:1s; +publiaient publier ver 21.07 33.92 0.02 1.01 ind:imp:3p; +publiais publier ver 21.07 33.92 0.00 0.14 ind:imp:1s; +publiait publier ver 21.07 33.92 0.27 1.89 ind:imp:3s; +publiant publier ver 21.07 33.92 0.07 0.61 par:pre; +public_relations public_relations nom f p 0.01 0.20 0.01 0.20 +public_school public_school nom f p 0.00 0.07 0.00 0.07 +public public nom m s 46.97 38.04 46.72 37.91 +publicain publicain nom m s 0.39 0.34 0.01 0.14 +publicains publicain nom m p 0.39 0.34 0.38 0.20 +publication publication nom f s 1.85 7.23 1.40 5.00 +publications publication nom f p 1.85 7.23 0.45 2.23 +publiciste publiciste nom s 0.18 0.74 0.12 0.47 +publicistes publiciste nom p 0.18 0.74 0.06 0.27 +publicitaire publicitaire adj s 3.26 6.49 1.93 3.72 +publicitairement publicitairement adv 0.00 0.07 0.00 0.07 +publicitaires publicitaire adj p 3.26 6.49 1.34 2.77 +publicité publicité nom f s 13.30 14.66 12.12 12.57 +publicités publicité nom f p 13.30 14.66 1.18 2.09 +publico publico adv 0.01 0.07 0.01 0.07 +publics public adj m p 44.81 65.27 4.84 14.46 +publie publier ver 21.07 33.92 1.71 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +publient publier ver 21.07 33.92 0.41 0.34 ind:pre:3p; +publier publier ver 21.07 33.92 6.85 8.92 inf; +publiera publier ver 21.07 33.92 0.47 0.27 ind:fut:3s; +publierai publier ver 21.07 33.92 0.12 0.07 ind:fut:1s; +publieraient publier ver 21.07 33.92 0.01 0.00 cnd:pre:3p; +publierais publier ver 21.07 33.92 0.02 0.14 cnd:pre:1s; +publierait publier ver 21.07 33.92 0.01 0.34 cnd:pre:3s; +publierez publier ver 21.07 33.92 0.05 0.14 ind:fut:2p; +publierions publier ver 21.07 33.92 0.00 0.07 cnd:pre:1p; +publierons publier ver 21.07 33.92 0.05 0.07 ind:fut:1p; +publieront publier ver 21.07 33.92 0.08 0.14 ind:fut:3p; +publies publier ver 21.07 33.92 0.31 0.20 ind:pre:2s; +publieur publieur nom m s 0.01 0.00 0.01 0.00 +publiez publier ver 21.07 33.92 1.06 0.07 imp:pre:2p;ind:pre:2p; +publions publier ver 21.07 33.92 0.31 0.34 imp:pre:1p;ind:pre:1p; +publiât publier ver 21.07 33.92 0.00 0.07 sub:imp:3s; +publiphone publiphone nom m s 0.01 0.00 0.01 0.00 +publique public adj f s 44.81 65.27 16.50 24.93 +publiquement publiquement adv 2.47 7.57 2.47 7.57 +publiques public adj f p 44.81 65.27 5.56 7.84 +publireportage publireportage nom m s 0.03 0.00 0.03 0.00 +publièrent publier ver 21.07 33.92 0.00 0.34 ind:pas:3p; +publié publier ver m s 21.07 33.92 6.54 8.85 par:pas; +publiée publier ver f s 21.07 33.92 1.09 2.97 par:pas; +publiées publier ver f p 21.07 33.92 0.56 1.08 par:pas; +publiés publier ver m p 21.07 33.92 1.01 1.55 par:pas; +pébroc pébroc nom m s 0.00 0.07 0.00 0.07 +pébroque pébroque nom m s 0.00 1.62 0.00 1.49 +pébroques pébroque nom m p 0.00 1.62 0.00 0.14 +pubs pub nom p 25.65 4.53 4.26 0.54 +pubère pubère adj s 0.28 0.41 0.20 0.20 +pubères pubère adj p 0.28 0.41 0.09 0.20 +pécan pécan nom m s 0.32 0.00 0.32 0.00 +pécari pécari nom m s 0.00 0.81 0.00 0.61 +pécaris pécari nom m p 0.00 0.81 0.00 0.20 +puce puce nom f s 27.65 12.43 22.15 3.58 +puceau puceau adj m s 2.17 1.08 2.15 1.01 +puceaux puceau nom m p 1.99 2.84 0.30 0.27 +pucelage pucelage nom m s 0.38 1.15 0.38 0.95 +pucelages pucelage nom m p 0.38 1.15 0.00 0.20 +pucelle puceau nom f s 1.99 2.84 1.09 1.35 +pucelles pucelle nom f p 0.31 0.00 0.31 0.00 +puceron puceron nom m s 0.17 0.47 0.06 0.20 +pucerons puceron nom m p 0.17 0.47 0.11 0.27 +puces puce nom f p 27.65 12.43 5.50 8.85 +pêcha pêcher ver 16.52 12.84 0.00 0.27 ind:pas:3s; +pêchaient pêcher ver 16.52 12.84 0.05 0.74 ind:imp:3p; +pêchais pêcher ver 16.52 12.84 0.44 0.34 ind:imp:1s;ind:imp:2s; +péchais pécher ver 9.87 4.59 0.02 0.07 ind:imp:1s; +pêchait pêcher ver 16.52 12.84 0.76 0.95 ind:imp:3s; +péchait pécher ver 9.87 4.59 0.02 0.27 ind:imp:3s; +pêchant pêcher ver 16.52 12.84 0.14 0.54 par:pre; +péchant pécher ver 9.87 4.59 0.01 0.07 par:pre; +pêche pêche nom f s 24.39 30.41 21.13 26.76 +pêchent pêcher ver 16.52 12.84 0.16 0.47 ind:pre:3p; +pêcher pêcher ver 16.52 12.84 9.04 5.47 inf; +pécher pécher ver 9.87 4.59 1.88 0.95 inf; +pucher pucher ver 0.02 0.00 0.02 0.00 inf; +pêchera pêcher ver 16.52 12.84 0.09 0.14 ind:fut:3s; +pécherai pécher ver 9.87 4.59 0.04 0.00 ind:fut:1s; +pêcherais pêcher ver 16.52 12.84 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +pécherais pécher ver 9.87 4.59 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +pécherait pécher ver 9.87 4.59 0.00 0.07 cnd:pre:3s; +pêcheras pêcher ver 16.52 12.84 0.01 0.07 ind:fut:2s; +pécheresse pécheur nom f s 8.02 4.53 0.77 0.54 +pécheresses pécheur adj f p 1.75 1.55 0.07 0.07 +pêcherie pêcherie nom f s 0.23 0.88 0.14 0.14 +pêcheries pêcherie nom f p 0.23 0.88 0.10 0.74 +pêcherons pêcher ver 16.52 12.84 0.01 0.00 ind:fut:1p; +pêchers pêcher nom m p 0.58 1.55 0.34 0.68 +pêches pêche nom f p 24.39 30.41 3.25 3.65 +pécheur pécheur adj m s 1.75 1.55 0.62 0.74 +pêcheur pêcheur nom m s 10.33 27.43 5.08 13.11 +pécheur pécheur nom m s 8.02 4.53 3.54 1.82 +pécheurs pécheur adj m p 1.75 1.55 0.40 0.34 +pêcheurs pêcheur nom m p 10.33 27.43 5.21 14.19 +pécheurs pécheur nom m p 8.02 4.53 3.70 2.03 +pêcheuse pêcheur nom f s 10.33 27.43 0.04 0.14 +pêcheuses pêcheuse nom f p 0.01 0.00 0.01 0.00 +pucheux pucheux nom m 0.00 0.07 0.00 0.07 +pêchez pêcher ver 16.52 12.84 0.45 0.07 imp:pre:2p;ind:pre:2p; +péchez pécher ver 9.87 4.59 0.01 0.14 imp:pre:2p;ind:pre:2p; +pêchions pêcher ver 16.52 12.84 0.04 0.20 ind:imp:1p; +péchons péchon nom m p 0.03 0.00 0.03 0.00 +pêché pêcher ver m s 16.52 12.84 3.03 1.01 par:pas; +péché pécher ver m s 9.87 4.59 6.84 2.30 par:pas; +pêché pêché adj m s 1.77 0.20 0.94 0.20 +péché péché nom m s 41.22 30.34 26.14 22.64 +pêchée pêcher ver f s 16.52 12.84 0.04 0.27 par:pas; +pêchées pêcher ver f p 16.52 12.84 0.01 0.14 par:pas; +pêchés pêcher ver m p 16.52 12.84 0.25 0.27 par:pas; +péchés pécher ver m p 9.87 4.59 0.05 0.14 par:pas; +pêchés pêché adj m p 1.77 0.20 0.83 0.00 +péchés péché nom m p 41.22 30.34 15.08 7.70 +pucier pucier nom m s 0.05 0.41 0.05 0.34 +puciers pucier nom m p 0.05 0.41 0.00 0.07 +pécore pécore nom s 0.62 1.01 0.49 0.61 +pécores pécore nom p 0.62 1.01 0.14 0.41 +pécule pécule nom m s 0.64 2.30 0.64 2.09 +pécules pécule nom m p 0.64 2.30 0.00 0.20 +pécune pécune nom f s 0.00 0.07 0.00 0.07 +pécuniaire pécuniaire adj s 0.13 0.41 0.11 0.14 +pécuniairement pécuniairement adv 0.00 0.07 0.00 0.07 +pécuniaires pécuniaire adj p 0.13 0.41 0.02 0.27 +pécunieux pécunieux adj m 0.00 0.07 0.00 0.07 +pédagogie pédagogie nom f s 0.45 1.22 0.45 1.22 +pédagogique pédagogique adj s 0.74 2.36 0.69 1.55 +pédagogiques pédagogique adj p 0.74 2.36 0.05 0.81 +pédagogue pédagogue nom s 0.86 1.49 0.76 1.08 +pédagogues pédagogue nom p 0.86 1.49 0.10 0.41 +pédala pédaler ver 1.58 7.03 0.01 0.27 ind:pas:3s; +pédalage pédalage nom m s 0.00 0.14 0.00 0.14 +pédalai pédaler ver 1.58 7.03 0.00 0.14 ind:pas:1s; +pédalaient pédaler ver 1.58 7.03 0.00 0.20 ind:imp:3p; +pédalais pédaler ver 1.58 7.03 0.16 0.14 ind:imp:1s; +pédalait pédaler ver 1.58 7.03 0.19 1.55 ind:imp:3s; +pédalant pédaler ver 1.58 7.03 0.08 1.35 par:pre; +pédale pédale nom f s 10.01 12.23 5.08 5.20 +pédalent pédaler ver 1.58 7.03 0.00 0.07 ind:pre:3p; +pédaler pédaler ver 1.58 7.03 0.37 2.57 inf; +pédalerait pédaler ver 1.58 7.03 0.00 0.07 cnd:pre:3s; +pédalerons pédaler ver 1.58 7.03 0.00 0.07 ind:fut:1p; +pédales pédale nom f p 10.01 12.23 4.92 7.03 +pédaleur pédaleur nom m s 0.00 0.14 0.00 0.07 +pédaleuses pédaleur nom f p 0.00 0.14 0.00 0.07 +pédalier pédalier nom m s 0.11 1.01 0.01 0.81 +pédaliers pédalier nom m p 0.11 1.01 0.10 0.20 +pédalo pédalo nom m s 0.05 0.41 0.03 0.20 +pédalos pédalo nom m p 0.05 0.41 0.02 0.20 +pédalèrent pédaler ver 1.58 7.03 0.00 0.07 ind:pas:3p; +pédalé pédaler ver m s 1.58 7.03 0.14 0.07 par:pas; +pédalées pédaler ver f p 1.58 7.03 0.00 0.07 par:pas; +pédant pédant adj m s 0.43 1.55 0.18 0.68 +pédante pédant adj f s 0.43 1.55 0.11 0.34 +pédanterie pédanterie nom f s 0.00 0.47 0.00 0.41 +pédanteries pédanterie nom f p 0.00 0.47 0.00 0.07 +pédantes pédant adj f p 0.43 1.55 0.01 0.27 +pédantesque pédantesque adj s 0.00 0.07 0.00 0.07 +pédantisme pédantisme nom m s 0.00 0.61 0.00 0.61 +pédants pédant adj m p 0.43 1.55 0.14 0.27 +pudding pudding nom m s 2.86 0.68 2.80 0.54 +puddings pudding nom m p 2.86 0.68 0.06 0.14 +puddle puddler ver 0.16 0.00 0.16 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pédestre pédestre adj s 0.01 0.54 0.01 0.34 +pédestrement pédestrement adv 0.00 0.14 0.00 0.14 +pédestres pédestre adj f p 0.01 0.54 0.00 0.20 +pudeur pudeur nom f s 5.08 20.07 4.98 19.32 +pudeurs pudeur nom f p 5.08 20.07 0.10 0.74 +pédezouille pédezouille nom s 0.00 0.07 0.00 0.07 +pédiatre pédiatre nom s 2.55 0.95 2.03 0.81 +pédiatres pédiatre nom p 2.55 0.95 0.52 0.14 +pédiatrie pédiatrie nom f s 1.08 0.14 1.08 0.14 +pédiatrique pédiatrique adj s 0.48 0.00 0.48 0.00 +pudibond pudibond adj m s 0.06 0.41 0.02 0.14 +pudibonde pudibond adj f s 0.06 0.41 0.04 0.14 +pudibonderie pudibonderie nom f s 0.01 0.47 0.01 0.34 +pudibonderies pudibonderie nom f p 0.01 0.47 0.00 0.14 +pudibondes pudibond adj f p 0.06 0.41 0.00 0.07 +pudibonds pudibond adj m p 0.06 0.41 0.00 0.07 +pédibus pédibus adv 0.00 0.20 0.00 0.20 +pudicité pudicité nom f s 0.00 0.07 0.00 0.07 +pédicule pédicule nom m s 0.03 0.07 0.03 0.07 +pédicure pédicure nom s 0.76 0.41 0.71 0.34 +pédicures pédicure nom p 0.76 0.41 0.05 0.07 +pédicurie pédicurie nom f s 0.01 0.00 0.01 0.00 +pédieuse pédieux adj f s 0.03 0.00 0.01 0.00 +pédieux pédieux adj m 0.03 0.00 0.01 0.00 +pudique pudique adj s 1.12 5.27 0.98 4.39 +pudiquement pudiquement adv 0.02 2.03 0.02 2.03 +pudiques pudique adj p 1.12 5.27 0.14 0.88 +pédologue pédologue nom s 0.03 0.00 0.03 0.00 +pédomètre pédomètre nom m s 0.01 0.00 0.01 0.00 +pédoncule pédoncule nom m s 0.06 0.20 0.06 0.14 +pédoncules pédoncule nom m p 0.06 0.20 0.00 0.07 +pédonculé pédonculé adj m s 0.00 0.07 0.00 0.07 +pédophile pédophile nom m s 1.34 0.34 0.95 0.20 +pédophiles pédophile nom m p 1.34 0.34 0.39 0.14 +pédophilie pédophilie nom f s 0.58 0.14 0.58 0.14 +pédophiliques pédophilique adj m p 0.00 0.07 0.00 0.07 +pédopsychiatre pédopsychiatre nom s 0.32 0.00 0.32 0.00 +pédoque pédoque nom m s 0.00 0.54 0.00 0.54 +pédé pédé nom m s 33.12 8.18 25.64 4.86 +pédégé pédégé nom m s 0.00 0.07 0.00 0.07 +pédéraste pédéraste nom m s 0.48 3.38 0.36 1.96 +pédérastes pédéraste nom m p 0.48 3.38 0.13 1.42 +pédérastie pédérastie nom f s 0.29 0.61 0.29 0.61 +pédérastique pédérastique adj s 0.00 0.27 0.00 0.27 +pédés pédé nom m p 33.12 8.18 7.48 3.31 +pue puer ver 36.29 18.65 23.80 8.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pueblo pueblo adj m s 0.05 0.95 0.05 0.95 +puent puer ver 36.29 18.65 2.29 1.89 ind:pre:3p; +puer puer ver 36.29 18.65 1.44 1.49 inf; +puera puer ver 36.29 18.65 0.05 0.00 ind:fut:3s; +puerait puer ver 36.29 18.65 0.01 0.00 cnd:pre:3s; +pueras puer ver 36.29 18.65 0.23 0.00 ind:fut:2s; +puerez puer ver 36.29 18.65 0.01 0.00 ind:fut:2p; +puerpérale puerpéral adj f s 0.12 0.07 0.12 0.07 +pues puer ver 36.29 18.65 5.66 0.54 ind:pre:2s; +puez puer ver 36.29 18.65 0.67 0.14 imp:pre:2p;ind:pre:2p; +puff puff nom m s 0.57 0.14 0.57 0.14 +puffin puffin nom m s 0.54 0.00 0.54 0.00 +pégamoïd pégamoïd nom m s 0.00 0.07 0.00 0.07 +pugilat pugilat nom m s 0.12 1.08 0.11 0.74 +pugilats pugilat nom m p 0.12 1.08 0.01 0.34 +pugiler pugiler ver 0.00 0.07 0.00 0.07 inf; +pugiliste pugiliste nom s 0.20 0.41 0.20 0.20 +pugilistes pugiliste nom p 0.20 0.41 0.00 0.20 +pugilistique pugilistique adj f s 0.00 0.07 0.00 0.07 +pugnace pugnace adj s 0.06 0.14 0.06 0.14 +pugnacité pugnacité nom f s 0.04 0.20 0.04 0.20 +pégriot pégriot nom m s 0.00 0.41 0.00 0.20 +pégriots pégriot nom m p 0.00 0.41 0.00 0.20 +puis puis con 256.19 836.42 256.19 836.42 +puisa puiser ver 2.97 14.46 0.02 0.68 ind:pas:3s; +puisai puiser ver 2.97 14.46 0.14 0.20 ind:pas:1s; +puisaient puiser ver 2.97 14.46 0.00 0.81 ind:imp:3p; +puisais puiser ver 2.97 14.46 0.00 0.61 ind:imp:1s; +puisait puiser ver 2.97 14.46 0.16 3.11 ind:imp:3s; +puisant puiser ver 2.97 14.46 0.17 1.01 par:pre; +puisard puisard nom m s 0.29 0.20 0.29 0.14 +puisards puisard nom m p 0.29 0.20 0.00 0.07 +puisatier puisatier nom m s 0.00 0.07 0.00 0.07 +puise puiser ver 2.97 14.46 0.82 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +puisent puiser ver 2.97 14.46 0.02 0.20 ind:pre:3p; +puiser puiser ver 2.97 14.46 1.08 3.51 inf; +puisera puiser ver 2.97 14.46 0.01 0.07 ind:fut:3s; +puiserai puiser ver 2.97 14.46 0.00 0.07 ind:fut:1s; +puiserait puiser ver 2.97 14.46 0.00 0.07 cnd:pre:3s; +puiserez puiser ver 2.97 14.46 0.02 0.00 ind:fut:2p; +puiseront puiser ver 2.97 14.46 0.00 0.14 ind:fut:3p; +puises puiser ver 2.97 14.46 0.08 0.07 ind:pre:2s; +puisette puisette nom f s 0.00 0.14 0.00 0.14 +puisez puiser ver 2.97 14.46 0.04 0.00 imp:pre:2p;ind:pre:2p; +puisions puiser ver 2.97 14.46 0.00 0.07 ind:imp:1p; +puisons puiser ver 2.97 14.46 0.03 0.27 imp:pre:1p;ind:pre:1p; +puisqu puisqu con 0.03 0.00 0.03 0.00 +puisque puisque con 59.09 131.82 59.09 131.82 +puissamment puissamment con 0.12 0.95 0.12 0.95 +puissance puissance nom f s 33.69 55.20 30.37 44.12 +puissances puissance nom f p 33.69 55.20 3.33 11.08 +puissant puissant adj m s 39.99 47.70 22.65 19.86 +puissante puissant adj f s 39.99 47.70 9.16 14.26 +puissantes puissant adj f p 39.99 47.70 2.85 5.20 +puissants puissant adj m p 39.99 47.70 5.34 8.38 +puisse pouvoir ver_sup 5524.52 2659.80 90.37 74.80 sub:pre:1s;sub:pre:3s; +puissent pouvoir ver_sup 5524.52 2659.80 10.18 14.05 sub:pre:3p; +puisses pouvoir ver_sup 5524.52 2659.80 13.79 2.50 sub:pre:2s; +puissiez pouvoir ver_sup 5524.52 2659.80 8.59 2.97 sub:pre:2p; +puissions pouvoir ver_sup 5524.52 2659.80 6.20 3.58 sub:pre:1p; +puisé puiser ver m s 2.97 14.46 0.35 1.35 par:pas; +puisée puiser ver f s 2.97 14.46 0.01 0.54 par:pas; +puisées puiser ver f p 2.97 14.46 0.02 0.34 par:pas; +puisés puiser ver m p 2.97 14.46 0.00 0.20 par:pas; +puits puits nom m 19.52 21.69 19.52 21.69 +péjoratif péjoratif adj m s 0.09 1.28 0.07 1.01 +péjoratifs péjoratif adj m p 0.09 1.28 0.00 0.14 +péjorative péjoratif adj f s 0.09 1.28 0.01 0.07 +péjorativement péjorativement adv 0.01 0.07 0.01 0.07 +péjoratives péjoratif adj f p 0.09 1.28 0.01 0.07 +pékan pékan nom m s 0.03 0.00 0.03 0.00 +pékin pékin nom m s 0.32 1.28 0.27 0.47 +pékinois pékinois nom m 1.68 0.47 1.68 0.47 +pékinoise pékinois adj f s 0.07 0.20 0.03 0.00 +pékins pékin nom m p 0.32 1.28 0.05 0.81 +pélagique pélagique adj m s 0.29 0.00 0.29 0.00 +pélasgiques pélasgique adj p 0.00 0.07 0.00 0.07 +pêle_mêle pêle_mêle adv 0.00 8.24 0.00 8.24 +pélican pélican nom m s 0.43 1.28 0.28 0.81 +pélicans pélican nom m p 0.43 1.28 0.16 0.47 +pull_over pull_over nom m s 0.80 6.35 0.78 5.27 +pull_over pull_over nom m p 0.80 6.35 0.02 1.08 +pull pull nom m s 13.43 8.65 11.41 7.03 +pullman pullman nom m s 0.06 0.54 0.05 0.47 +pullmans pullman nom m p 0.06 0.54 0.01 0.07 +pulls pull nom m p 13.43 8.65 2.02 1.62 +pullula pulluler ver 0.78 2.91 0.00 0.07 ind:pas:3s; +pullulaient pulluler ver 0.78 2.91 0.01 0.74 ind:imp:3p; +pullulait pulluler ver 0.78 2.91 0.00 0.34 ind:imp:3s; +pullulant pulluler ver 0.78 2.91 0.00 0.14 par:pre; +pullulantes pullulant adj f p 0.00 0.20 0.00 0.07 +pullulants pullulant adj m p 0.00 0.20 0.00 0.14 +pullule pulluler ver 0.78 2.91 0.41 0.61 ind:pre:3s; +pullulement pullulement nom m s 0.00 0.74 0.00 0.74 +pullulent pulluler ver 0.78 2.91 0.19 0.74 ind:pre:3p; +pulluler pulluler ver 0.78 2.91 0.16 0.27 inf; +pulluleront pulluler ver 0.78 2.91 0.01 0.00 ind:fut:3p; +pulmonaire pulmonaire adj s 2.31 1.35 2.00 0.95 +pulmonaires pulmonaire adj p 2.31 1.35 0.32 0.41 +pulmonie pulmonie nom f s 0.00 0.07 0.00 0.07 +pulmonique pulmonique adj s 0.00 0.07 0.00 0.07 +pélot pélot nom m s 0.00 0.07 0.00 0.07 +pulpe pulpe nom f s 0.72 2.36 0.62 2.16 +pulpes pulpe nom f p 0.72 2.36 0.10 0.20 +pulpeuse pulpeux adj f s 0.22 2.23 0.11 1.28 +pulpeuses pulpeux adj f p 0.22 2.23 0.09 0.41 +pulpeux pulpeux adj m 0.22 2.23 0.02 0.54 +pulque pulque nom m s 0.60 0.00 0.60 0.00 +pulsait pulser ver 0.51 0.61 0.01 0.20 ind:imp:3s; +pulsant pulser ver 0.51 0.61 0.00 0.14 par:pre; +pulsar pulsar nom m s 0.46 0.00 0.46 0.00 +pulsatile pulsatile adj f s 0.01 0.00 0.01 0.00 +pulsation pulsation nom f s 1.24 4.19 0.54 2.09 +pulsations pulsation nom f p 1.24 4.19 0.70 2.09 +pulsative pulsatif adj f s 0.01 0.00 0.01 0.00 +pulse pulser ver 0.51 0.61 0.21 0.20 imp:pre:2s;ind:pre:3s; +pulser pulser ver 0.51 0.61 0.11 0.07 inf; +pulseur pulseur nom m s 0.15 0.07 0.15 0.07 +pulsion pulsion nom f s 4.15 1.69 1.19 0.74 +pulsions pulsion nom f p 4.15 1.69 2.96 0.95 +pulso_réacteur pulso_réacteur nom m p 0.01 0.00 0.01 0.00 +pulsoréacteurs pulsoréacteur nom m p 0.01 0.00 0.01 0.00 +pulsé pulser ver m s 0.51 0.61 0.17 0.00 par:pas; +pulvérin pulvérin nom m s 0.00 0.07 0.00 0.07 +pulvérisa pulvériser ver 3.11 6.69 0.00 0.47 ind:pas:3s; +pulvérisaient pulvériser ver 3.11 6.69 0.00 0.07 ind:imp:3p; +pulvérisais pulvériser ver 3.11 6.69 0.01 0.00 ind:imp:2s; +pulvérisait pulvériser ver 3.11 6.69 0.12 0.61 ind:imp:3s; +pulvérisant pulvériser ver 3.11 6.69 0.08 0.61 par:pre; +pulvérisateur pulvérisateur nom m s 0.22 0.14 0.18 0.07 +pulvérisateurs pulvérisateur nom m p 0.22 0.14 0.03 0.07 +pulvérisation pulvérisation nom f s 0.09 0.27 0.06 0.14 +pulvérisations pulvérisation nom f p 0.09 0.27 0.02 0.14 +pulvérise pulvériser ver 3.11 6.69 0.42 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pulvérisent pulvériser ver 3.11 6.69 0.01 0.20 ind:pre:3p; +pulvériser pulvériser ver 3.11 6.69 1.14 1.15 inf; +pulvériserai pulvériser ver 3.11 6.69 0.02 0.07 ind:fut:1s; +pulvériserait pulvériser ver 3.11 6.69 0.01 0.07 cnd:pre:3s; +pulvériserons pulvériser ver 3.11 6.69 0.01 0.00 ind:fut:1p; +pulvériseront pulvériser ver 3.11 6.69 0.14 0.00 ind:fut:3p; +pulvérises pulvériser ver 3.11 6.69 0.00 0.07 ind:pre:2s; +pulvérisez pulvériser ver 3.11 6.69 0.06 0.00 imp:pre:2p;ind:pre:2p; +pulvérisé pulvériser ver m s 3.11 6.69 0.74 1.22 par:pas; +pulvérisée pulvériser ver f s 3.11 6.69 0.10 1.08 par:pas; +pulvérisées pulvériser ver f p 3.11 6.69 0.06 0.14 par:pas; +pulvérisés pulvériser ver m p 3.11 6.69 0.17 0.54 par:pas; +pulvérulence pulvérulence nom f s 0.00 0.07 0.00 0.07 +pulvérulentes pulvérulent adj f p 0.00 0.07 0.00 0.07 +puma puma nom m s 1.34 2.03 0.42 1.89 +pumas puma nom m p 1.34 2.03 0.92 0.14 +punais punais adj m s 0.00 0.20 0.00 0.20 +punaisait punaiser ver 0.12 0.81 0.00 0.07 ind:imp:3s; +punaise punaise nom f s 2.46 7.84 1.41 1.76 +punaises punaise nom f p 2.46 7.84 1.05 6.08 +punaisé punaiser ver m s 0.12 0.81 0.01 0.27 par:pas; +punaisée punaiser ver f s 0.12 0.81 0.01 0.34 par:pas; +punaisées punaiser ver f p 0.12 0.81 0.00 0.14 par:pas; +punaisés punaiser ver m p 0.12 0.81 0.10 0.00 par:pas; +pénal pénal adj m s 4.64 3.38 3.78 2.91 +pénale pénal adj f s 4.64 3.38 0.54 0.20 +pénalement pénalement adv 0.03 0.07 0.03 0.07 +pénales pénal adj f p 4.64 3.38 0.20 0.27 +pénalisaient pénaliser ver 0.46 0.34 0.01 0.00 ind:imp:3p; +pénalisation pénalisation nom f s 0.01 0.00 0.01 0.00 +pénalise pénaliser ver 0.46 0.34 0.03 0.00 imp:pre:2s;ind:pre:1s; +pénaliser pénaliser ver 0.46 0.34 0.12 0.07 inf; +pénalisera pénaliser ver 0.46 0.34 0.01 0.07 ind:fut:3s; +pénaliserai pénaliser ver 0.46 0.34 0.03 0.00 ind:fut:1s; +pénaliste pénaliste nom s 0.04 0.00 0.04 0.00 +pénalistes pénaliste nom p 0.04 0.00 0.01 0.00 +pénalisé pénaliser ver m s 0.46 0.34 0.15 0.07 par:pas; +pénalisée pénaliser ver f s 0.46 0.34 0.04 0.00 par:pas; +pénalisés pénaliser ver m p 0.46 0.34 0.08 0.14 par:pas; +pénalité pénalité nom f s 1.11 0.07 0.60 0.00 +pénalités pénalité nom f p 1.11 0.07 0.51 0.07 +pénard pénard adj m s 0.02 1.08 0.01 0.54 +pénarde pénard adj f s 0.02 1.08 0.00 0.27 +pénardement pénardement adv 0.00 0.07 0.00 0.07 +pénardes pénard adj f p 0.02 1.08 0.00 0.07 +pénards pénard adj m p 0.02 1.08 0.01 0.20 +pénates pénates nom m p 0.15 0.88 0.15 0.88 +pénaux pénal adj m p 4.64 3.38 0.14 0.00 +punch punch nom m s 3.67 3.11 3.65 2.97 +puncheur puncheur nom m s 0.02 0.00 0.02 0.00 +punching_ball punching_ball nom m s 0.71 0.61 0.64 0.61 +punching_ball punching_ball nom m s 0.71 0.61 0.08 0.00 +punchs punch nom m p 3.67 3.11 0.02 0.14 +punctiforme punctiforme adj f s 0.01 0.00 0.01 0.00 +puncture puncture nom f s 0.10 0.00 0.10 0.00 +pêne pêne nom m s 0.15 0.81 0.15 0.81 +puni punir ver m s 41.70 20.14 10.09 3.99 par:pas; +pénible pénible adj s 13.75 27.43 12.07 21.96 +péniblement péniblement adv 0.74 11.01 0.74 11.01 +pénibles pénible adj p 13.75 27.43 1.69 5.47 +péniche péniche nom f s 1.55 7.97 1.47 5.27 +péniches péniche nom f p 1.55 7.97 0.08 2.70 +pénicilline pénicilline nom f s 1.44 0.95 1.44 0.95 +punie punir ver f s 41.70 20.14 2.79 1.42 par:pas; +pénien pénien adj m s 0.04 0.00 0.02 0.00 +pénienne pénien adj f s 0.04 0.00 0.01 0.00 +punies punir ver f p 41.70 20.14 0.20 0.14 par:pas; +pénil pénil nom m s 0.01 0.00 0.01 0.00 +péninsulaire péninsulaire adj s 0.00 0.14 0.00 0.07 +péninsulaires péninsulaire adj p 0.00 0.14 0.00 0.07 +péninsule péninsule nom f s 0.89 3.31 0.88 3.18 +péninsules péninsule nom f p 0.89 3.31 0.01 0.14 +punique punique adj m s 0.00 0.20 0.00 0.14 +puniques punique adj p 0.00 0.20 0.00 0.07 +punir punir ver 41.70 20.14 13.82 8.45 inf; +punira punir ver 41.70 20.14 1.89 0.27 ind:fut:3s; +punirai punir ver 41.70 20.14 0.91 0.00 ind:fut:1s; +punirais punir ver 41.70 20.14 0.04 0.07 cnd:pre:1s; +punirait punir ver 41.70 20.14 0.06 0.07 cnd:pre:3s; +puniras punir ver 41.70 20.14 0.02 0.07 ind:fut:2s; +punirez punir ver 41.70 20.14 0.03 0.00 ind:fut:2p; +punirons punir ver 41.70 20.14 0.17 0.00 ind:fut:1p; +puniront punir ver 41.70 20.14 0.03 0.00 ind:fut:3p; +pénis pénis nom m 8.11 1.96 8.11 1.96 +punis punir ver m p 41.70 20.14 6.09 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +punissable punissable adj m s 0.21 0.14 0.21 0.07 +punissables punissable adj m p 0.21 0.14 0.00 0.07 +punissaient punir ver 41.70 20.14 0.02 0.20 ind:imp:3p; +punissais punir ver 41.70 20.14 0.26 0.14 ind:imp:1s;ind:imp:2s; +punissait punir ver 41.70 20.14 0.29 1.01 ind:imp:3s; +punissant punir ver 41.70 20.14 0.71 0.47 par:pre; +punisse punir ver 41.70 20.14 0.61 0.27 sub:pre:1s;sub:pre:3s; +punissent punir ver 41.70 20.14 0.26 0.20 ind:pre:3p; +punisses punir ver 41.70 20.14 0.30 0.00 sub:pre:2s; +punisseur punisseur nom m s 0.11 0.00 0.11 0.00 +punissez punir ver 41.70 20.14 0.99 0.07 imp:pre:2p;ind:pre:2p; +punissions punir ver 41.70 20.14 0.01 0.07 ind:imp:1p; +punissons punir ver 41.70 20.14 0.15 0.00 imp:pre:1p;ind:pre:1p; +punit punir ver 41.70 20.14 1.98 1.55 ind:pre:3s;ind:pas:3s; +pénitence pénitence nom f s 2.96 5.95 2.96 5.00 +pénitences pénitence nom f p 2.96 5.95 0.00 0.95 +pénitencier pénitencier nom m s 2.09 1.15 2.04 1.15 +pénitenciers pénitencier nom m p 2.09 1.15 0.06 0.00 +pénitent pénitent nom m s 0.90 2.84 0.27 0.61 +pénitente pénitent nom f s 0.90 2.84 0.14 0.14 +pénitentes pénitent nom f p 0.90 2.84 0.00 0.20 +pénitentiaire pénitentiaire adj s 3.21 2.77 2.79 2.23 +pénitentiaires pénitentiaire adj p 3.21 2.77 0.42 0.54 +pénitentielle pénitentiel adj f s 0.00 0.07 0.00 0.07 +pénitents pénitent nom m p 0.90 2.84 0.49 1.89 +punitif punitif adj m s 0.42 1.08 0.27 0.14 +punition punition nom f s 13.16 9.46 11.97 7.64 +punitions punition nom f p 13.16 9.46 1.19 1.82 +punitive punitif adj f s 0.42 1.08 0.12 0.61 +punitives punitif adj f p 0.42 1.08 0.03 0.34 +punk punk nom s 6.39 4.12 5.45 2.50 +punkette punkette nom f s 0.00 0.14 0.00 0.14 +punks punk nom p 6.39 4.12 0.94 1.62 +pénologie pénologie nom f s 0.02 0.00 0.02 0.00 +pénombre pénombre nom f s 1.23 28.24 1.22 28.04 +pénombres pénombre nom f p 1.23 28.24 0.01 0.20 +punt punt nom m s 0.23 0.00 0.23 0.00 +pénètre pénétrer ver 19.00 87.23 4.64 12.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +pénètrent pénétrer ver 19.00 87.23 0.84 2.77 ind:pre:3p; +pénètres pénétrer ver 19.00 87.23 0.11 0.20 ind:pre:2s; +pénultième pénultième nom f s 0.03 0.07 0.03 0.07 +pénéplaines pénéplaine nom f p 0.00 0.07 0.00 0.07 +pénurie pénurie nom f s 2.15 2.84 2.12 2.70 +pénuries pénurie nom f p 2.15 2.84 0.04 0.14 +pénétra pénétrer ver 19.00 87.23 0.32 9.66 ind:pas:3s; +pénétrable pénétrable adj f s 0.14 0.07 0.14 0.00 +pénétrables pénétrable adj p 0.14 0.07 0.00 0.07 +pénétrai pénétrer ver 19.00 87.23 0.00 1.42 ind:pas:1s; +pénétraient pénétrer ver 19.00 87.23 0.14 3.04 ind:imp:3p; +pénétrais pénétrer ver 19.00 87.23 0.00 1.08 ind:imp:1s;ind:imp:2s; +pénétrait pénétrer ver 19.00 87.23 0.26 9.66 ind:imp:3s; +pénétrant pénétrer ver 19.00 87.23 0.41 4.86 par:pre; +pénétrante pénétrante adj f s 0.29 2.43 0.20 2.23 +pénétrantes pénétrante adj f p 0.29 2.43 0.10 0.20 +pénétrants pénétrant adj m p 0.59 2.09 0.18 0.20 +pénétration pénétration nom f s 2.20 3.38 1.91 3.18 +pénétrations pénétration nom f p 2.20 3.38 0.29 0.20 +pénétrer pénétrer ver 19.00 87.23 6.94 24.19 inf; +pénétrera pénétrer ver 19.00 87.23 0.14 0.20 ind:fut:3s; +pénétrerai pénétrer ver 19.00 87.23 0.02 0.07 ind:fut:1s; +pénétreraient pénétrer ver 19.00 87.23 0.00 0.27 cnd:pre:3p; +pénétrerait pénétrer ver 19.00 87.23 0.01 0.54 cnd:pre:3s; +pénétrerons pénétrer ver 19.00 87.23 0.04 0.07 ind:fut:1p; +pénétreront pénétrer ver 19.00 87.23 0.01 0.07 ind:fut:3p; +pénétrez pénétrer ver 19.00 87.23 0.41 0.34 imp:pre:2p;ind:pre:2p; +pénétrions pénétrer ver 19.00 87.23 0.00 0.27 ind:imp:1p; +pénétrâmes pénétrer ver 19.00 87.23 0.00 0.61 ind:pas:1p; +pénétrons pénétrer ver 19.00 87.23 0.07 0.95 imp:pre:1p;ind:pre:1p; +pénétrât pénétrer ver 19.00 87.23 0.00 0.34 sub:imp:3s; +pénétrèrent pénétrer ver 19.00 87.23 0.02 3.24 ind:pas:3p; +pénétré pénétrer ver m s 19.00 87.23 4.07 8.72 par:pas; +pénétrée pénétrer ver f s 19.00 87.23 0.49 1.28 par:pas; +pénétrées pénétrer ver f p 19.00 87.23 0.00 0.07 par:pas; +pénétrés pénétrer ver m p 19.00 87.23 0.04 0.95 par:pas; +péon péon nom m s 0.02 0.14 0.01 0.00 +péons péon nom m p 0.02 0.14 0.01 0.14 +péottes péotte nom f p 0.00 0.14 0.00 0.14 +pupazzo pupazzo nom m s 0.00 0.14 0.00 0.14 +pupe pupe nom f s 0.01 0.00 0.01 0.00 +pépettes pépettes nom f p 0.03 0.20 0.03 0.20 +pépia pépier ver 0.35 1.28 0.00 0.07 ind:pas:3s; +pépiaient pépier ver 0.35 1.28 0.00 0.47 ind:imp:3p; +pépiait pépier ver 0.35 1.28 0.00 0.14 ind:imp:3s; +pépiant pépiant adj m s 0.14 0.20 0.14 0.20 +pépie pépier ver 0.35 1.28 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pépiement pépiement nom m s 1.16 2.77 0.09 1.49 +pépiements pépiement nom m p 1.16 2.77 1.07 1.28 +pépient pépier ver 0.35 1.28 0.04 0.34 ind:pre:3p; +pépier pépier ver 0.35 1.28 0.11 0.14 inf; +pupillaire pupillaire adj s 0.07 0.00 0.06 0.00 +pupillaires pupillaire adj m p 0.07 0.00 0.01 0.00 +pupille pupille nom s 3.92 5.54 2.04 2.43 +pupilles pupille nom p 3.92 5.54 1.88 3.11 +pépin pépin nom m s 5.15 3.51 4.31 1.96 +pépinière pépinière nom f s 0.51 0.95 0.45 0.68 +pépinières pépinière nom f p 0.51 0.95 0.06 0.27 +pépiniériste pépiniériste nom s 0.04 0.41 0.03 0.27 +pépiniéristes pépiniériste nom p 0.04 0.41 0.01 0.14 +pépins pépin nom m p 5.15 3.51 0.84 1.55 +pépite pépite nom f s 2.04 0.61 0.77 0.20 +pépites pépite nom f p 2.04 0.61 1.27 0.41 +pupitre pupitre nom m s 0.80 6.89 0.73 5.74 +pupitres pupitre nom m p 0.80 6.89 0.07 1.15 +pupitreur pupitreur nom m s 0.01 0.00 0.01 0.00 +pépiés pépier ver m p 0.35 1.28 0.00 0.07 par:pas; +péplum péplum nom m s 0.10 0.54 0.00 0.14 +péplums péplum nom m p 0.10 0.54 0.10 0.41 +pépère pépère adj s 1.21 3.18 1.00 2.50 +pépères pépère adj p 1.21 3.18 0.20 0.68 +pépètes pépètes nom f p 0.08 0.34 0.08 0.34 +pépé pépé nom m s 4.95 16.96 4.81 16.76 +pépée pépée nom f s 0.69 0.54 0.49 0.20 +pépées pépée nom f p 0.69 0.54 0.20 0.34 +pépés pépé nom m p 4.95 16.96 0.13 0.20 +péquenaud péquenaud nom m s 1.60 0.27 1.00 0.07 +péquenaude péquenaud nom f s 1.60 0.27 0.20 0.00 +péquenaudes péquenaud nom f p 1.60 0.27 0.00 0.07 +péquenauds péquenaud nom m p 1.60 0.27 0.41 0.14 +péquenot péquenot nom m s 1.80 1.82 0.97 1.01 +péquenots péquenot nom m p 1.80 1.82 0.83 0.81 +péquin péquin nom m s 0.00 0.20 0.00 0.14 +péquins péquin nom m p 0.00 0.20 0.00 0.07 +pur_sang pur_sang nom m 1.01 2.23 1.01 2.23 +pur pur adj m s 58.46 90.34 26.48 44.59 +pérît périr ver 11.20 10.34 0.00 0.07 sub:imp:3s; +pure pur adj f s 58.46 90.34 26.97 34.19 +pureau pureau nom m s 0.00 0.07 0.00 0.07 +purement purement adv 3.99 9.32 3.99 9.32 +péremptoire péremptoire adj s 0.00 5.07 0.00 3.85 +péremptoirement péremptoirement adv 0.00 0.61 0.00 0.61 +péremptoires péremptoire adj p 0.00 5.07 0.00 1.22 +pérenne pérenne adj s 0.00 0.14 0.00 0.07 +pérennes pérenne adj p 0.00 0.14 0.00 0.07 +pérennise pérenniser ver 0.00 0.07 0.00 0.07 ind:pre:3s; +pérennité pérennité nom f s 0.00 0.74 0.00 0.74 +purent pouvoir ver_sup 5524.52 2659.80 0.24 6.89 ind:pas:3p; +pures pur adj f p 58.46 90.34 1.35 4.66 +pureté pureté nom f s 6.77 13.99 6.77 13.92 +puretés pureté nom f p 6.77 13.99 0.00 0.07 +purgatif purgatif adj m s 0.40 0.14 0.30 0.07 +purgation purgation nom f s 0.02 0.20 0.02 0.07 +purgations purgation nom f p 0.02 0.20 0.00 0.14 +purgative purgatif adj f s 0.40 0.14 0.10 0.07 +purgatoire purgatoire nom m s 1.92 2.84 1.92 2.77 +purgatoires purgatoire nom m p 1.92 2.84 0.00 0.07 +purge purger ver 5.46 3.24 1.30 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +purgea purger ver 5.46 3.24 0.02 0.07 ind:pas:3s; +purgeaient purger ver 5.46 3.24 0.01 0.14 ind:imp:3p; +purgeais purger ver 5.46 3.24 0.02 0.00 ind:imp:1s;ind:imp:2s; +purgeait purger ver 5.46 3.24 0.28 0.41 ind:imp:3s; +purgeant purger ver 5.46 3.24 0.03 0.07 par:pre; +purgent purger ver 5.46 3.24 0.15 0.14 ind:pre:3p; +purger purger ver 5.46 3.24 1.59 1.08 inf; +purgera purger ver 5.46 3.24 0.11 0.00 ind:fut:3s; +purgerai purger ver 5.46 3.24 0.05 0.00 ind:fut:1s; +purgerais purger ver 5.46 3.24 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +purgeras purger ver 5.46 3.24 0.07 0.00 ind:fut:2s; +purgerez purger ver 5.46 3.24 0.07 0.00 ind:fut:2p; +purgeriez purger ver 5.46 3.24 0.01 0.00 cnd:pre:2p; +purges purge nom f p 1.34 1.89 0.84 0.54 +purgez purger ver 5.46 3.24 0.23 0.00 imp:pre:2p;ind:pre:2p; +purgiez purger ver 5.46 3.24 0.02 0.00 ind:imp:2p; +purgé purger ver m s 5.46 3.24 0.93 0.81 par:pas; +purgée purger ver f s 5.46 3.24 0.21 0.00 par:pas; +purgées purger ver f p 5.46 3.24 0.01 0.07 par:pas; +purgés purger ver m p 5.46 3.24 0.23 0.14 par:pas; +péri périr ver m s 11.20 10.34 2.56 1.89 par:pas; +péricarde péricarde nom m s 0.33 0.00 0.33 0.00 +péricardique péricardique adj s 0.12 0.00 0.12 0.00 +péricardite péricardite nom f s 0.05 0.00 0.05 0.00 +péricarpe péricarpe nom m s 0.01 0.00 0.01 0.00 +périclita péricliter ver 0.10 1.01 0.00 0.07 ind:pas:3s; +périclitait péricliter ver 0.10 1.01 0.02 0.20 ind:imp:3s; +périclitant péricliter ver 0.10 1.01 0.00 0.07 par:pre; +périclitent péricliter ver 0.10 1.01 0.01 0.07 ind:pre:3p; +péricliter péricliter ver 0.10 1.01 0.03 0.27 inf; +périclitèrent péricliter ver 0.10 1.01 0.01 0.07 ind:pas:3p; +périclité péricliter ver m s 0.10 1.01 0.04 0.27 par:pas; +péridurale péridural nom f s 0.37 0.07 0.37 0.07 +périe périr ver f s 11.20 10.34 0.01 0.00 par:pas; +périf périf nom m s 0.14 0.27 0.14 0.27 +purifiaient purifier ver 7.92 4.86 0.00 0.14 ind:imp:3p; +purifiais purifier ver 7.92 4.86 0.10 0.00 ind:imp:2s; +purifiait purifier ver 7.92 4.86 0.14 0.20 ind:imp:3s; +purifiant purifier ver 7.92 4.86 0.20 0.27 par:pre; +purificateur purificateur adj m s 0.75 0.68 0.47 0.54 +purificateurs purificateur nom m p 0.22 0.07 0.07 0.00 +purification purification nom f s 1.31 1.08 1.31 0.95 +purifications purification nom f p 1.31 1.08 0.00 0.14 +purificatoire purificatoire adj m s 0.00 0.07 0.00 0.07 +purificatrice purificateur adj f s 0.75 0.68 0.02 0.07 +purificatrices purificateur adj f p 0.75 0.68 0.27 0.00 +purifie purifier ver 7.92 4.86 2.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +purifient purifier ver 7.92 4.86 0.30 0.07 ind:pre:3p; +purifier purifier ver 7.92 4.86 2.59 1.15 inf; +purifiera purifier ver 7.92 4.86 0.14 0.00 ind:fut:3s; +purifiez purifier ver 7.92 4.86 0.34 0.14 imp:pre:2p;ind:pre:2p; +purifions purifier ver 7.92 4.86 0.02 0.07 imp:pre:1p;ind:pre:1p; +purifiât purifier ver 7.92 4.86 0.00 0.07 sub:imp:3s; +purifié purifier ver m s 7.92 4.86 1.05 1.35 par:pas; +purifiée purifier ver f s 7.92 4.86 0.68 0.68 par:pas; +purifiées purifier ver f p 7.92 4.86 0.00 0.07 par:pas; +purifiés purifier ver m p 7.92 4.86 0.32 0.34 par:pas; +périgourdin périgourdin adj m s 0.02 0.27 0.00 0.07 +périgourdine périgourdin adj f s 0.02 0.27 0.01 0.20 +périgourdins périgourdin adj m p 0.02 0.27 0.01 0.00 +périgée périgée nom m s 0.02 0.07 0.02 0.07 +péril péril nom m s 7.76 13.78 6.32 10.00 +périlleuse périlleux adj f s 1.43 6.76 0.35 2.30 +périlleusement périlleusement adv 0.00 0.20 0.00 0.20 +périlleuses périlleux adj f p 1.43 6.76 0.21 0.88 +périlleux périlleux adj m 1.43 6.76 0.87 3.58 +périls péril nom m p 7.76 13.78 1.45 3.78 +périme périmer ver 1.68 0.54 0.02 0.00 ind:pre:3s; +périment périmer ver 1.68 0.54 0.01 0.00 ind:pre:3p; +périmer périmer ver 1.68 0.54 0.01 0.00 inf; +périmètre périmètre nom m s 6.81 2.84 6.71 2.64 +périmètres périmètre nom m p 6.81 2.84 0.10 0.20 +périmé périmer ver m s 1.68 0.54 0.69 0.27 par:pas; +périmée périmer ver f s 1.68 0.54 0.59 0.20 par:pas; +périmées périmé adj f p 0.79 2.36 0.09 0.47 +périmés périmer ver m p 1.68 0.54 0.28 0.00 par:pas; +purin purin nom m s 0.38 2.23 0.38 2.23 +périnée périnée nom m s 0.16 0.47 0.16 0.47 +période période nom f s 25.65 41.89 23.72 32.09 +périodes période nom f p 25.65 41.89 1.94 9.80 +périodicité périodicité nom f s 0.01 0.07 0.01 0.07 +périodique périodique adj s 0.23 1.89 0.15 1.28 +périodiquement périodiquement adv 0.17 3.18 0.17 3.18 +périodiques périodique adj p 0.23 1.89 0.09 0.61 +péripatéticiennes péripatéticienne nom f p 0.14 0.00 0.14 0.00 +périph périph nom m s 0.16 0.20 0.16 0.20 +périphrase périphrase nom f s 0.11 0.27 0.11 0.14 +périphrases périphrase nom f p 0.11 0.27 0.00 0.14 +périphérie périphérie nom f s 1.30 3.04 1.21 2.91 +périphéries périphérie nom f p 1.30 3.04 0.10 0.14 +périphérique périphérique nom m s 0.53 1.15 0.52 1.15 +périphériques périphérique adj p 0.50 1.55 0.19 0.95 +périple périple nom m s 1.14 2.64 0.98 2.09 +périples périple nom m p 1.14 2.64 0.15 0.54 +péripétie péripétie nom f s 0.85 6.69 0.59 1.35 +péripéties péripétie nom f p 0.85 6.69 0.26 5.34 +périr périr ver 11.20 10.34 3.83 4.93 inf; +périra périr ver 11.20 10.34 1.01 0.20 ind:fut:3s; +périrais périr ver 11.20 10.34 0.01 0.14 cnd:pre:1s; +périrait périr ver 11.20 10.34 0.31 0.14 cnd:pre:3s; +périras périr ver 11.20 10.34 0.06 0.00 ind:fut:2s; +périrent périr ver 11.20 10.34 0.49 0.61 ind:pas:3p; +périrez périr ver 11.20 10.34 0.06 0.07 ind:fut:2p; +péririez périr ver 11.20 10.34 0.01 0.00 cnd:pre:2p; +périrons périr ver 11.20 10.34 0.14 0.07 ind:fut:1p; +périront périr ver 11.20 10.34 0.75 0.20 ind:fut:3p; +péris périr ver m p 11.20 10.34 0.05 0.07 ind:pre:1s;ind:pre:2s;par:pas; +périscolaire périscolaire adj f s 0.01 0.00 0.01 0.00 +périscope périscope nom m s 1.28 0.88 1.24 0.68 +périscopes périscope nom m p 1.28 0.88 0.04 0.20 +périscopique périscopique adj f s 0.31 0.00 0.31 0.00 +périssable périssable adj s 0.38 1.82 0.12 1.35 +périssables périssable adj p 0.38 1.82 0.27 0.47 +périssaient périr ver 11.20 10.34 0.01 0.27 ind:imp:3p; +périssait périr ver 11.20 10.34 0.00 0.34 ind:imp:3s; +périssant périr ver 11.20 10.34 0.01 0.07 par:pre; +périsse périr ver 11.20 10.34 0.34 0.47 sub:pre:3s; +périssent périr ver 11.20 10.34 0.54 0.27 ind:pre:3p; +périssez périr ver 11.20 10.34 0.10 0.00 imp:pre:2p; +périssodactyle périssodactyle nom m s 0.14 0.00 0.14 0.00 +périssoire périssoire nom f s 0.00 0.20 0.00 0.14 +périssoires périssoire nom f p 0.00 0.20 0.00 0.07 +périssons périr ver 11.20 10.34 0.14 0.07 imp:pre:1p;ind:pre:1p; +péristaltique péristaltique adj f s 0.01 0.14 0.01 0.07 +péristaltiques péristaltique adj f p 0.01 0.14 0.00 0.07 +péristaltisme péristaltisme nom m s 0.01 0.00 0.01 0.00 +puriste puriste nom s 0.13 0.00 0.11 0.00 +puristes puriste nom p 0.13 0.00 0.02 0.00 +péristyle péristyle nom m s 0.00 1.49 0.00 1.49 +périt périr ver 11.20 10.34 0.76 0.47 ind:pre:3s;ind:pas:3s; +puritain puritain nom m s 0.53 0.81 0.28 0.07 +puritaine puritain adj f s 1.16 2.03 0.67 0.54 +puritaines puritain adj f p 1.16 2.03 0.20 0.20 +puritains puritain nom m p 0.53 0.81 0.20 0.61 +puritanisme puritanisme nom m s 0.05 1.22 0.05 1.22 +péritoine péritoine nom m s 0.13 0.14 0.13 0.14 +péritonite péritonite nom f s 0.32 0.47 0.32 0.47 +péritonéal péritonéal adj m s 0.32 0.07 0.18 0.00 +péritonéale péritonéal adj f s 0.32 0.07 0.14 0.07 +périurbaines périurbain adj f p 0.01 0.00 0.01 0.00 +pérodictique pérodictique nom m s 0.01 0.00 0.01 0.00 +péroniste péroniste adj m s 0.17 0.00 0.17 0.00 +péronnelle péronnelle nom f s 0.04 0.07 0.04 0.07 +péroné péroné nom m s 0.27 0.14 0.27 0.00 +péronés péroné nom m p 0.27 0.14 0.00 0.14 +pérorais pérorer ver 0.22 3.24 0.00 0.07 ind:imp:1s; +péroraison péroraison nom f s 0.00 1.08 0.00 0.95 +péroraisons péroraison nom f p 0.00 1.08 0.00 0.14 +pérorait pérorer ver 0.22 3.24 0.00 1.49 ind:imp:3s; +pérorant pérorer ver 0.22 3.24 0.00 0.54 par:pre; +pérore pérorer ver 0.22 3.24 0.15 0.61 ind:pre:1s;ind:pre:3s; +pérorer pérorer ver 0.22 3.24 0.07 0.47 inf; +péroreur péroreur nom m s 0.00 0.07 0.00 0.07 +pérorons pérorer ver 0.22 3.24 0.00 0.07 ind:pre:1p; +pérot pérot nom m s 0.11 0.00 0.11 0.00 +purotin purotin nom m s 0.00 0.41 0.00 0.14 +purotins purotin nom m p 0.00 0.41 0.00 0.27 +pérou pérou nom s 0.01 0.00 0.01 0.00 +purpura purpura nom m s 0.09 0.00 0.09 0.00 +purpurin purpurin adj m s 0.01 0.61 0.00 0.27 +purpurine purpurin adj f s 0.01 0.61 0.01 0.14 +purpurines purpurin adj f p 0.01 0.61 0.00 0.07 +purpurins purpurin adj m p 0.01 0.61 0.00 0.14 +purs pur adj m p 58.46 90.34 3.67 6.89 +purée purée nom f s 5.75 6.28 5.74 6.08 +purées purée nom f p 5.75 6.28 0.01 0.20 +pérégrinant pérégriner ver 0.00 0.47 0.00 0.07 par:pre; +pérégrination pérégrination nom f s 0.06 1.62 0.00 0.20 +pérégrinations pérégrination nom f p 0.06 1.62 0.06 1.42 +pérégrine pérégriner ver 0.00 0.47 0.00 0.14 ind:pre:3s; +pérégriner pérégriner ver 0.00 0.47 0.00 0.20 inf; +pérégrines pérégriner ver 0.00 0.47 0.00 0.07 ind:pre:2s; +purulence purulence nom f s 0.02 0.41 0.02 0.20 +purulences purulence nom f p 0.02 0.41 0.00 0.20 +purulent purulent adj m s 0.26 0.74 0.06 0.20 +purulente purulent adj f s 0.26 0.74 0.10 0.20 +purulentes purulent adj f p 0.26 0.74 0.04 0.34 +purulents purulent adj m p 0.26 0.74 0.06 0.00 +péréquation péréquation nom f s 0.00 0.20 0.00 0.14 +péréquations péréquation nom f p 0.00 0.20 0.00 0.07 +péruvien péruvien adj m s 1.52 0.68 1.15 0.34 +péruvienne péruvien adj f s 1.52 0.68 0.19 0.27 +péruviens péruvien adj m p 1.52 0.68 0.19 0.07 +pus pus adj m s 1.90 5.00 1.90 5.00 +pusillanime pusillanime adj s 0.05 0.95 0.03 0.81 +pusillanimes pusillanime adj p 0.05 0.95 0.02 0.14 +pusillanimité pusillanimité nom f s 0.00 0.34 0.00 0.34 +pusse pouvoir ver_sup 5524.52 2659.80 0.00 1.28 sub:imp:1s; +pussent pouvoir ver_sup 5524.52 2659.80 0.00 2.77 sub:imp:3p; +pusses pouvoir ver_sup 5524.52 2659.80 0.00 0.07 sub:imp:2s; +pussiez pouvoir ver_sup 5524.52 2659.80 0.00 0.07 sub:imp:2p; +pustule pustule nom f s 0.69 1.35 0.28 0.14 +pustules pustule nom f p 0.69 1.35 0.41 1.22 +pustuleuse pustuleux adj f s 0.02 0.61 0.00 0.27 +pustuleux pustuleux adj m p 0.02 0.61 0.02 0.34 +put pouvoir ver_sup 5524.52 2659.80 5.10 49.66 ind:pas:3s; +pétaient péter ver 31.66 16.28 0.03 0.81 ind:imp:3p; +putain putain nom f s 306.74 40.41 287.83 33.58 +pétainiste pétainiste adj m s 0.00 0.54 0.00 0.34 +pétainistes pétainiste adj f p 0.00 0.54 0.00 0.20 +putains putain nom f p 306.74 40.41 18.91 6.82 +pétais péter ver 31.66 16.28 0.13 0.07 ind:imp:1s;ind:imp:2s; +pétait péter ver 31.66 16.28 0.38 1.28 ind:imp:3s; +pétale pétale nom m s 3.47 8.24 1.17 1.42 +pétales pétale nom m p 3.47 8.24 2.31 6.82 +pétaloïdes pétaloïde adj m p 0.01 0.00 0.01 0.00 +putanat putanat nom m s 0.00 0.20 0.00 0.20 +pétanque pétanque nom f s 0.17 1.49 0.17 1.49 +pétant péter ver 31.66 16.28 0.25 0.34 par:pre; +pétante pétant adj f s 0.33 0.68 0.02 0.00 +pétantes pétant adj f p 0.33 0.68 0.13 0.41 +pétants pétant adj m p 0.33 0.68 0.00 0.07 +pétaradaient pétarader ver 0.10 1.55 0.00 0.07 ind:imp:3p; +pétaradait pétarader ver 0.10 1.55 0.01 0.20 ind:imp:3s; +pétaradant pétarader ver 0.10 1.55 0.01 0.34 par:pre; +pétaradante pétaradant adj f s 0.01 0.88 0.00 0.14 +pétaradantes pétaradant adj f p 0.01 0.88 0.00 0.20 +pétaradants pétaradant adj m p 0.01 0.88 0.00 0.20 +pétarade pétarade nom f s 0.30 2.36 0.16 1.55 +pétarader pétarader ver 0.10 1.55 0.04 0.47 inf; +pétarades pétarade nom f p 0.30 2.36 0.14 0.81 +pétaradé pétarader ver m s 0.10 1.55 0.00 0.07 par:pas; +pétard pétard nom m s 7.19 9.93 4.77 5.47 +pétarde pétarder ver 0.00 0.07 0.00 0.07 ind:pre:3s; +pétardier pétardier nom m s 0.00 0.47 0.00 0.34 +pétardière pétardier nom f s 0.00 0.47 0.00 0.14 +pétards pétard nom m p 7.19 9.93 2.42 4.46 +pétase pétase nom m s 0.00 0.14 0.00 0.14 +pétasse pétasse nom f s 8.03 0.95 6.91 0.61 +putasse putasser ver 0.17 0.34 0.17 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pétassent pétasser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +putasserie putasserie nom f s 0.34 0.41 0.10 0.41 +putasseries putasserie nom f p 0.34 0.41 0.23 0.00 +pétasses pétasse nom f p 8.03 0.95 1.12 0.34 +putasses putasser ver 0.17 0.34 0.01 0.07 ind:pre:2s; +putassier putassier adj m s 0.02 0.41 0.01 0.07 +putassiers putassier adj m p 0.02 0.41 0.00 0.14 +putassière putassier adj f s 0.02 0.41 0.01 0.14 +putassières putassier adj f p 0.02 0.41 0.00 0.07 +putatif putatif adj m s 0.00 0.74 0.00 0.47 +putatifs putatif adj m p 0.00 0.74 0.00 0.14 +putative putatif adj f s 0.00 0.74 0.00 0.14 +pétaudière pétaudière nom f s 0.01 0.07 0.01 0.07 +pute pute nom f s 105.25 20.27 87.91 13.65 +péter péter ver 31.66 16.28 11.08 5.34 inf; +pétera péter ver 31.66 16.28 0.34 0.14 ind:fut:3s; +péterai péter ver 31.66 16.28 0.05 0.00 ind:fut:1s; +péterais péter ver 31.66 16.28 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +péterait péter ver 31.66 16.28 0.10 0.07 cnd:pre:3s; +péteras péter ver 31.66 16.28 0.01 0.00 ind:fut:2s; +putes pute nom f p 105.25 20.27 17.34 6.62 +péteur péteur nom m s 0.11 0.07 0.11 0.07 +péteuse péteuse nom f s 0.06 0.54 0.06 0.54 +péteux péteux nom m 0.30 0.61 0.30 0.61 +pétez péter ver 31.66 16.28 0.21 0.00 imp:pre:2p;ind:pre:2p; +putier putier nom m s 0.00 0.14 0.00 0.14 +pétiez péter ver 31.66 16.28 0.02 0.00 ind:imp:2p; +pétilla pétiller ver 0.32 4.39 0.00 0.14 ind:pas:3s; +pétillaient pétiller ver 0.32 4.39 0.00 0.54 ind:imp:3p; +pétillait pétiller ver 0.32 4.39 0.00 0.95 ind:imp:3s; +pétillant pétillant adj m s 1.27 3.24 0.55 1.55 +pétillante pétillant adj f s 1.27 3.24 0.44 0.81 +pétillantes pétillant adj f p 1.27 3.24 0.15 0.27 +pétillants pétillant adj m p 1.27 3.24 0.14 0.61 +pétille pétiller ver 0.32 4.39 0.21 1.01 ind:pre:1s;ind:pre:3s; +pétillement pétillement nom m s 0.01 1.15 0.01 1.01 +pétillements pétillement nom m p 0.01 1.15 0.00 0.14 +pétillent pétiller ver 0.32 4.39 0.03 0.47 ind:pre:3p; +pétiller pétiller ver 0.32 4.39 0.05 0.54 inf; +pétilles pétiller ver 0.32 4.39 0.01 0.00 ind:pre:2s; +pétillèrent pétiller ver 0.32 4.39 0.00 0.07 ind:pas:3p; +pétillé pétiller ver m s 0.32 4.39 0.00 0.07 par:pas; +pétiole pétiole nom m s 0.00 0.07 0.00 0.07 +pétition pétition nom f s 3.54 1.76 3.00 0.95 +pétitionnaires pétitionnaire nom p 0.01 0.07 0.01 0.07 +pétitionnent pétitionner ver 0.01 0.07 0.00 0.07 ind:pre:3p; +pétitionner pétitionner ver 0.01 0.07 0.01 0.00 inf; +pétitions pétition nom f p 3.54 1.76 0.55 0.81 +pétochais pétocher ver 0.01 0.07 0.00 0.07 ind:imp:1s; +pétochait pétocher ver 0.01 0.07 0.01 0.00 ind:imp:3s; +pétochard pétochard adj m s 0.02 0.14 0.02 0.14 +pétoche pétoche nom f s 0.52 2.77 0.50 2.57 +pétoches pétoche nom f p 0.52 2.77 0.02 0.20 +pétoire pétoire nom f s 0.42 1.62 0.41 1.08 +pétoires pétoire nom f p 0.42 1.62 0.01 0.54 +putois putois nom m 1.06 1.28 1.06 1.28 +pétomane pétomane nom s 0.05 0.47 0.03 0.34 +pétomanes pétomane nom p 0.05 0.47 0.03 0.14 +pétoncle pétoncle nom m s 0.08 0.00 0.05 0.00 +pétoncles pétoncle nom m p 0.08 0.00 0.03 0.00 +pétons péter ver 31.66 16.28 0.01 0.00 imp:pre:1p; +pétouille pétouiller ver 0.00 0.07 0.00 0.07 ind:pre:3s; +pétoulet pétoulet nom m s 0.00 0.41 0.00 0.41 +pétrarquistes pétrarquiste nom p 0.00 0.07 0.00 0.07 +pétrel pétrel nom m s 0.02 0.07 0.02 0.07 +putrescence putrescence nom f s 0.01 0.14 0.01 0.07 +putrescences putrescence nom f p 0.01 0.14 0.00 0.07 +putrescent putrescent adj m s 0.20 0.07 0.20 0.00 +putrescents putrescent adj m p 0.20 0.07 0.00 0.07 +putrescible putrescible adj f s 0.00 0.20 0.00 0.20 +putrescine putrescine nom f s 0.01 0.00 0.01 0.00 +pétreux pétreux adj m 0.01 0.00 0.01 0.00 +pétri pétrir ver m s 1.48 11.01 0.42 1.76 par:pas; +putride putride adj s 1.04 0.95 0.74 0.54 +putrides putride adj p 1.04 0.95 0.30 0.41 +pétrie pétrir ver f s 1.48 11.01 0.17 1.15 par:pas; +pétries pétrir ver f p 1.48 11.01 0.01 0.34 par:pas; +pétrifia pétrifier ver 2.17 8.38 0.01 0.14 ind:pas:3s; +pétrifiaient pétrifier ver 2.17 8.38 0.00 0.14 ind:imp:3p; +pétrifiais pétrifier ver 2.17 8.38 0.00 0.07 ind:imp:1s; +pétrifiait pétrifier ver 2.17 8.38 0.10 0.74 ind:imp:3s; +pétrifiant pétrifier ver 2.17 8.38 0.00 0.14 par:pre; +pétrifiante pétrifiant adj f s 0.00 0.27 0.00 0.20 +pétrifiantes pétrifiant adj f p 0.00 0.27 0.00 0.07 +pétrification pétrification nom f s 0.01 0.27 0.01 0.27 +pétrifie pétrifier ver 2.17 8.38 0.11 0.27 ind:pre:3s; +pétrifient pétrifier ver 2.17 8.38 0.01 0.07 ind:pre:3p; +pétrifier pétrifier ver 2.17 8.38 0.04 0.54 inf; +pétrifieront pétrifier ver 2.17 8.38 0.00 0.07 ind:fut:3p; +pétrifiez pétrifier ver 2.17 8.38 0.00 0.07 ind:pre:2p; +pétrifiât pétrifier ver 2.17 8.38 0.00 0.07 sub:imp:3s; +pétrifièrent pétrifier ver 2.17 8.38 0.00 0.07 ind:pas:3p; +pétrifié pétrifier ver m s 2.17 8.38 1.14 2.57 par:pas; +pétrifiée pétrifier ver f s 2.17 8.38 0.56 1.82 par:pas; +pétrifiées pétrifier ver f p 2.17 8.38 0.15 0.20 par:pas; +pétrifiés pétrifier ver m p 2.17 8.38 0.07 1.42 par:pas; +pétrin pétrin nom m s 10.89 3.31 10.82 3.18 +pétrins pétrin nom m p 10.89 3.31 0.07 0.14 +pétrir pétrir ver 1.48 11.01 0.68 3.31 inf; +pétrirai pétrir ver 1.48 11.01 0.00 0.07 ind:fut:1s; +pétrirent pétrir ver 1.48 11.01 0.00 0.07 ind:pas:3p; +pétris pétri adj m p 0.27 0.34 0.14 0.14 +pétrissage pétrissage nom m s 0.00 0.14 0.00 0.14 +pétrissaient pétrir ver 1.48 11.01 0.00 0.34 ind:imp:3p; +pétrissait pétrir ver 1.48 11.01 0.10 1.42 ind:imp:3s; +pétrissant pétrir ver 1.48 11.01 0.00 0.68 par:pre; +pétrisse pétrir ver 1.48 11.01 0.00 0.14 sub:pre:3s; +pétrissent pétrir ver 1.48 11.01 0.01 0.07 ind:pre:3p; +pétrisseur pétrisseur nom m s 0.00 0.07 0.00 0.07 +pétrissez pétrir ver 1.48 11.01 0.00 0.07 ind:pre:2p; +pétrit pétrir ver 1.48 11.01 0.03 1.15 ind:pre:3s;ind:pas:3s; +pétrochimie pétrochimie nom f s 0.00 0.14 0.00 0.14 +pétrochimique pétrochimique adj s 0.04 0.00 0.04 0.00 +pétrodollars pétrodollar nom m p 0.30 0.00 0.30 0.00 +pétrole pétrole nom m s 13.84 15.41 13.71 14.73 +pétroles pétrole nom m p 13.84 15.41 0.13 0.68 +pétrolette pétrolette nom f s 0.02 0.20 0.02 0.20 +pétroleuse pétroleur nom f s 0.03 0.20 0.03 0.14 +pétroleuses pétroleuse nom f p 0.01 0.00 0.01 0.00 +pétrolier pétrolier adj m s 1.75 1.22 0.38 0.27 +pétroliers pétrolier nom m p 0.73 2.23 0.36 0.61 +pétrolifère pétrolifère adj s 0.11 0.27 0.04 0.14 +pétrolifères pétrolifère adj p 0.11 0.27 0.06 0.14 +pétrolière pétrolier adj f s 1.75 1.22 0.79 0.14 +pétrolières pétrolier adj f p 1.75 1.22 0.37 0.61 +pétrousquin pétrousquin nom m s 0.00 0.14 0.00 0.14 +pétrée pétré adj f s 0.00 0.07 0.00 0.07 +putréfaction putréfaction nom f s 0.49 1.15 0.49 1.15 +putréfiaient putréfier ver 0.32 0.68 0.00 0.07 ind:imp:3p; +putréfiait putréfier ver 0.32 0.68 0.00 0.14 ind:imp:3s; +putréfiant putréfier ver 0.32 0.68 0.00 0.07 par:pre; +putréfient putréfier ver 0.32 0.68 0.00 0.07 ind:pre:3p; +putréfier putréfier ver 0.32 0.68 0.02 0.07 inf; +putréfié putréfier ver m s 0.32 0.68 0.09 0.00 par:pas; +putréfiée putréfier ver f s 0.32 0.68 0.17 0.07 par:pas; +putréfiées putréfier ver f p 0.32 0.68 0.01 0.14 par:pas; +putréfiés putréfier ver m p 0.32 0.68 0.02 0.07 par:pas; +pétrus pétrus nom m 0.03 0.34 0.03 0.34 +putsch putsch nom m s 1.46 1.55 1.46 1.55 +putschiste putschiste adj f s 0.27 0.00 0.27 0.00 +putt putt nom m s 0.21 0.00 0.21 0.00 +putter putter ver 0.35 0.00 0.35 0.00 inf; +putti putto nom m p 0.02 0.00 0.02 0.00 +putting putting nom m s 0.17 0.00 0.17 0.00 +pété péter ver m s 31.66 16.28 8.47 1.01 par:pas; +pétéchiale pétéchial adj f s 0.10 0.00 0.10 0.00 +pétéchie pétéchie nom f s 0.22 0.00 0.04 0.00 +pétéchies pétéchie nom f p 0.22 0.00 0.17 0.00 +pétée péter ver f s 31.66 16.28 0.57 0.14 par:pas; +pétées pété adj f p 1.66 0.81 0.11 0.20 +pétulance pétulance nom f s 0.02 0.34 0.02 0.34 +pétulant pétulant adj m s 0.05 0.54 0.01 0.20 +pétulante pétulant adj f s 0.05 0.54 0.03 0.07 +pétulantes pétulant adj f p 0.05 0.54 0.00 0.07 +pétulants pétulant adj m p 0.05 0.54 0.01 0.20 +pétunant pétuner ver 0.01 0.20 0.00 0.07 par:pre; +pétuner pétuner ver 0.01 0.20 0.00 0.07 inf; +pétunez pétuner ver 0.01 0.20 0.01 0.00 ind:pre:2p; +pétunia pétunia nom m s 0.63 1.01 0.50 0.07 +pétunias pétunia nom m p 0.63 1.01 0.13 0.95 +pétuné pétuner ver m s 0.01 0.20 0.00 0.07 par:pas; +pétés péter ver m p 31.66 16.28 0.17 0.34 par:pas; +puéricultrice puériculteur nom f s 0.03 0.20 0.03 0.07 +puéricultrices puériculteur nom f p 0.03 0.20 0.00 0.14 +puériculture puériculture nom f s 0.01 0.47 0.01 0.47 +puéril puéril adj m s 3.73 9.59 2.08 3.18 +puérile puéril adj f s 3.73 9.59 1.01 3.92 +puérilement puérilement adv 0.01 0.20 0.01 0.20 +puériles puéril adj f p 3.73 9.59 0.22 1.28 +puérilité puérilité nom f s 0.47 1.28 0.32 1.08 +puérilités puérilité nom f p 0.47 1.28 0.15 0.20 +puérils puéril adj m p 3.73 9.59 0.43 1.22 +puy puy nom m s 0.00 0.14 0.00 0.14 +puzzle puzzle nom m s 4.81 11.82 4.38 7.77 +puzzles puzzle nom m p 4.81 11.82 0.43 4.05 +pygmée pygmée nom s 0.58 0.47 0.28 0.00 +pygmées pygmée nom p 0.58 0.47 0.30 0.47 +pyjama pyjama nom m s 8.11 17.57 7.10 15.07 +pyjamas pyjama nom m p 8.11 17.57 1.01 2.50 +pylône pylône nom m s 0.36 1.96 0.31 0.88 +pylônes pylône nom m p 0.36 1.96 0.05 1.08 +pylore pylore nom m s 0.02 0.07 0.02 0.07 +pylorique pylorique adj s 0.03 0.00 0.03 0.00 +pyogène pyogène adj m s 0.01 0.00 0.01 0.00 +pyralène pyralène nom m s 0.01 0.00 0.01 0.00 +pyrame pyrame nom m s 0.01 0.14 0.01 0.14 +pyramidal pyramidal adj m s 0.36 1.15 0.26 0.34 +pyramidale pyramidal adj f s 0.36 1.15 0.07 0.47 +pyramidalement pyramidalement adv 0.00 0.07 0.00 0.07 +pyramidales pyramidal adj f p 0.36 1.15 0.02 0.20 +pyramidaux pyramidal adj m p 0.36 1.15 0.01 0.14 +pyramide pyramide nom f s 7.02 10.14 5.25 4.80 +pyramides pyramide nom f p 7.02 10.14 1.77 5.34 +pyramidé pyramidé adj m s 0.00 0.07 0.00 0.07 +pyrex pyrex nom m 0.01 0.07 0.01 0.07 +pyrexie pyrexie nom f s 0.01 0.00 0.01 0.00 +pyridoxine pyridoxine nom f s 0.01 0.00 0.01 0.00 +pyrite pyrite nom f s 0.06 0.00 0.04 0.00 +pyrites pyrite nom f p 0.06 0.00 0.02 0.00 +pyroclastique pyroclastique adj s 0.03 0.00 0.02 0.00 +pyroclastiques pyroclastique adj p 0.03 0.00 0.01 0.00 +pyrogravées pyrograver ver f p 0.00 0.07 0.00 0.07 par:pas; +pyrogène pyrogène adj s 0.00 0.14 0.00 0.14 +pyrolyse pyrolyse nom f s 0.01 0.00 0.01 0.00 +pyromane pyromane nom s 1.69 0.88 1.29 0.74 +pyromanes pyromane nom p 1.69 0.88 0.40 0.14 +pyromanie pyromanie nom f s 0.03 0.07 0.03 0.07 +pyromètre pyromètre nom m s 0.00 0.27 0.00 0.27 +pyrosphère pyrosphère nom f s 0.00 0.07 0.00 0.07 +pyrotechnicien pyrotechnicien nom s 0.02 0.00 0.02 0.00 +pyrotechnie pyrotechnie nom f s 0.15 0.41 0.15 0.41 +pyrotechnique pyrotechnique adj s 0.06 0.41 0.06 0.41 +pyroxène pyroxène nom m s 0.01 0.00 0.01 0.00 +pyrrhique pyrrhique nom f s 0.14 0.07 0.14 0.07 +pyrrhonien pyrrhonien nom m s 0.00 0.14 0.00 0.14 +pyrrhonisme pyrrhonisme nom m s 0.00 0.14 0.00 0.14 +pyrèthre pyrèthre nom m s 0.00 0.07 0.00 0.07 +pyrénéen pyrénéen adj m s 0.00 0.07 0.00 0.07 +pyrénéenne pyrénéenne adj f s 0.00 0.07 0.00 0.07 +pyréthrine pyréthrine nom f s 0.03 0.00 0.03 0.00 +pythagoricien pythagoricien adj m s 0.00 0.07 0.00 0.07 +pythagoriques pythagorique adj m p 0.01 0.00 0.01 0.00 +pythie pythie nom f s 0.02 0.54 0.02 0.47 +pythies pythie nom f p 0.02 0.54 0.00 0.07 +python python nom m s 2.33 0.54 2.21 0.47 +pythonisse pythonisse nom f s 0.00 0.20 0.00 0.20 +pythons python nom m p 2.33 0.54 0.12 0.07 +pyxides pyxide nom f p 0.00 0.07 0.00 0.07 +q q nom m 3.49 0.61 3.49 0.61 +qu_en_dira_t_on qu_en_dira_t_on nom m 0.10 0.41 0.10 0.41 +qu qu con 22.07 1.55 22.07 1.55 +quadra quadra nom s 0.05 0.00 0.03 0.00 +quadragénaire quadragénaire nom s 0.40 1.01 0.19 0.74 +quadragénaires quadragénaire nom p 0.40 1.01 0.21 0.27 +quadrangle quadrangle nom m s 0.03 0.00 0.03 0.00 +quadrangulaire quadrangulaire adj f s 0.02 0.41 0.02 0.34 +quadrangulaires quadrangulaire adj m p 0.02 0.41 0.00 0.07 +quadrant quadrant nom m s 0.73 0.00 0.64 0.00 +quadrants quadrant nom m p 0.73 0.00 0.09 0.00 +quadras quadra nom p 0.05 0.00 0.02 0.00 +quadratique quadratique adj s 0.01 0.00 0.01 0.00 +quadrature quadrature nom f s 0.11 1.15 0.11 1.15 +quadri quadri nom f s 0.02 0.07 0.02 0.07 +quadriceps quadriceps nom m 0.11 0.07 0.11 0.07 +quadrichromie quadrichromie nom f s 0.00 0.47 0.00 0.34 +quadrichromies quadrichromie nom f p 0.00 0.47 0.00 0.14 +quadridimensionnel quadridimensionnel adj m s 0.01 0.00 0.01 0.00 +quadriennal quadriennal adj m s 0.09 0.00 0.09 0.00 +quadrige quadrige nom m s 0.01 0.07 0.01 0.07 +quadrilatère quadrilatère nom m s 0.16 1.76 0.16 1.62 +quadrilatères quadrilatère nom m p 0.16 1.76 0.00 0.14 +quadrillage quadrillage nom m s 0.51 1.01 0.49 0.88 +quadrillages quadrillage nom m p 0.51 1.01 0.01 0.14 +quadrillaient quadriller ver 1.32 3.85 0.00 0.07 ind:imp:3p; +quadrillais quadriller ver 1.32 3.85 0.01 0.00 ind:imp:1s; +quadrillait quadriller ver 1.32 3.85 0.00 0.07 ind:imp:3s; +quadrille quadrille nom s 0.23 0.88 0.20 0.88 +quadrillent quadriller ver 1.32 3.85 0.19 0.00 ind:pre:3p; +quadriller quadriller ver 1.32 3.85 0.38 0.20 inf; +quadrillerez quadriller ver 1.32 3.85 0.01 0.00 ind:fut:2p; +quadrilles quadrille nom p 0.23 0.88 0.03 0.00 +quadrillez quadriller ver 1.32 3.85 0.19 0.00 imp:pre:2p;ind:pre:2p; +quadrillion quadrillion nom m s 0.04 0.00 0.04 0.00 +quadrillons quadriller ver 1.32 3.85 0.02 0.00 imp:pre:1p;ind:pre:1p; +quadrillé quadriller ver m s 1.32 3.85 0.19 2.03 par:pas; +quadrillée quadriller ver f s 1.32 3.85 0.28 0.74 par:pas; +quadrillées quadriller ver f p 1.32 3.85 0.01 0.34 par:pas; +quadrillés quadriller ver m p 1.32 3.85 0.00 0.34 par:pas; +quadrilobé quadrilobé adj m s 0.00 0.07 0.00 0.07 +quadrimestre quadrimestre nom m s 0.01 0.00 0.01 0.00 +quadrimoteur quadrimoteur adj m s 0.02 0.00 0.02 0.00 +quadripartite quadripartite adj s 0.02 0.07 0.02 0.00 +quadripartites quadripartite adj p 0.02 0.07 0.00 0.07 +quadriphonie quadriphonie nom f s 0.02 0.14 0.02 0.14 +quadriphonique quadriphonique adj s 0.11 0.00 0.11 0.00 +quadriplégique quadriplégique adj s 0.03 0.00 0.03 0.00 +quadriréacteur quadriréacteur nom m s 0.00 0.07 0.00 0.07 +quadrivium quadrivium nom m s 0.00 0.07 0.00 0.07 +quadrumane quadrumane nom m s 0.00 0.07 0.00 0.07 +quadrupla quadrupler ver 0.21 0.68 0.00 0.07 ind:pas:3s; +quadruplait quadrupler ver 0.21 0.68 0.00 0.14 ind:imp:3s; +quadruple quadruple adj 0.42 0.54 0.42 0.54 +quadrupler quadrupler ver 0.21 0.68 0.07 0.14 inf; +quadruples quadruple nom m p 0.19 0.47 0.01 0.27 +quadruplé quadrupler ver m s 0.21 0.68 0.06 0.14 par:pas; +quadruplées quadruplée nom f p 0.00 0.07 0.00 0.07 +quadruplés quadruplé nom m p 0.06 0.00 0.06 0.00 +quadrupède quadrupède nom m s 0.36 1.01 0.34 0.81 +quadrupèdes quadrupède nom m p 0.36 1.01 0.01 0.20 +quai quai nom m s 14.01 73.99 10.37 55.14 +quais quai nom m p 14.01 73.99 3.64 18.85 +quaker quaker nom m s 0.67 0.74 0.49 0.47 +quakeresse quakeresse nom f s 0.02 0.14 0.02 0.14 +quakers quaker nom m p 0.67 0.74 0.19 0.27 +qualifia qualifier ver 6.18 11.62 0.04 0.41 ind:pas:3s; +qualifiable qualifiable adj m s 0.00 0.07 0.00 0.07 +qualifiaient qualifier ver 6.18 11.62 0.00 0.27 ind:imp:3p; +qualifiais qualifier ver 6.18 11.62 0.00 0.14 ind:imp:1s; +qualifiait qualifier ver 6.18 11.62 0.06 0.88 ind:imp:3s; +qualifiant qualifier ver 6.18 11.62 0.03 0.34 par:pre; +qualifiassent qualifier ver 6.18 11.62 0.00 0.07 sub:imp:3p; +qualificatif qualificatif nom m s 0.11 0.74 0.05 0.34 +qualificatifs qualificatif nom m p 0.11 0.74 0.05 0.41 +qualification qualification nom f s 2.45 0.81 0.68 0.68 +qualifications qualification nom f p 2.45 0.81 1.78 0.14 +qualifie qualifier ver 6.18 11.62 0.63 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +qualifient qualifier ver 6.18 11.62 0.38 0.14 ind:pre:3p; +qualifier qualifier ver 6.18 11.62 0.96 3.04 inf; +qualifiera qualifier ver 6.18 11.62 0.01 0.20 ind:fut:3s; +qualifierai qualifier ver 6.18 11.62 0.16 0.07 ind:fut:1s; +qualifierais qualifier ver 6.18 11.62 0.26 0.20 cnd:pre:1s;cnd:pre:2s; +qualifierait qualifier ver 6.18 11.62 0.03 0.00 cnd:pre:3s; +qualifieriez qualifier ver 6.18 11.62 0.07 0.00 cnd:pre:2p; +qualifiez qualifier ver 6.18 11.62 0.06 0.07 ind:pre:2p; +qualifiât qualifier ver 6.18 11.62 0.00 0.07 sub:imp:3s; +qualifié qualifié adj m s 4.62 3.78 2.25 1.76 +qualifiée qualifié adj f s 4.62 3.78 1.13 0.68 +qualifiées qualifier ver f p 6.18 11.62 0.10 0.27 par:pas; +qualifiés qualifié adj m p 4.62 3.78 1.18 1.28 +qualitatif qualitatif adj m s 0.03 0.14 0.01 0.00 +qualitatifs qualitatif adj m p 0.03 0.14 0.00 0.07 +qualitative qualitatif adj f s 0.03 0.14 0.02 0.07 +qualité qualité nom f s 29.13 59.12 20.84 42.70 +qualités qualité nom f p 29.13 59.12 8.28 16.42 +quand quand con 1827.92 1480.07 1827.92 1480.07 +quant_à_moi quant_à_moi nom m 0.00 0.14 0.00 0.14 +quant_à_soi quant_à_soi nom m 0.00 1.22 0.00 1.22 +quant quant nom_sup f s 7.94 32.30 7.94 32.30 +quanta quantum nom m p 0.48 0.20 0.04 0.14 +quantifiable quantifiable adj s 0.15 0.00 0.15 0.00 +quantifier quantifier ver 0.23 0.07 0.20 0.07 inf; +quantifiée quantifier ver f s 0.23 0.07 0.03 0.00 par:pas; +quantique quantique adj s 1.36 0.07 1.16 0.07 +quantiques quantique adj p 1.36 0.07 0.20 0.00 +quantitatif quantitatif adj m s 0.05 0.14 0.03 0.00 +quantitative quantitatif adj f s 0.05 0.14 0.01 0.07 +quantitativement quantitativement adv 0.10 0.00 0.10 0.00 +quantitatives quantitatif adj f p 0.05 0.14 0.01 0.07 +quantième quantième nom m s 0.02 0.07 0.02 0.00 +quantièmes quantième nom m p 0.02 0.07 0.00 0.07 +quantité quantité nom f s 10.30 18.99 8.67 15.27 +quantités quantité nom f p 10.30 18.99 1.63 3.72 +quanto quanto adv 0.01 0.07 0.01 0.07 +quantum quantum nom m s 0.48 0.20 0.45 0.07 +quarantaine quarantaine nom f s 7.57 10.14 7.56 10.07 +quarantaines quarantaine nom f p 7.57 10.14 0.01 0.07 +quarante_cinq quarante_cinq adj_num 1.16 8.85 1.16 8.85 +quarante_cinquième quarante_cinquième adj 0.10 0.07 0.10 0.07 +quarante_deux quarante_deux adj_num 0.29 2.09 0.29 2.09 +quarante_deuxième quarante_deuxième adj 0.03 0.07 0.03 0.07 +quarante_huit quarante_huit adj_num 1.11 6.76 1.11 6.76 +quarante_huitard quarante_huitard nom m p 0.00 0.07 0.00 0.07 +quarante_huitième quarante_huitième adj 0.02 0.07 0.02 0.07 +quarante_neuf quarante_neuf adj_num 0.28 0.47 0.28 0.47 +quarante_quatre quarante_quatre adj_num 0.10 0.88 0.10 0.88 +quarante_sept quarante_sept adj_num 0.40 0.74 0.40 0.74 +quarante_septième quarante_septième adj 0.03 0.20 0.03 0.20 +quarante_six quarante_six adj_num 0.23 0.47 0.23 0.47 +quarante_trois quarante_trois adj_num 0.68 1.28 0.68 1.28 +quarante_troisième quarante_troisième adj 0.00 0.07 0.00 0.07 +quarante quarante adj_num 8.16 43.78 8.16 43.78 +quarantenaire quarantenaire adj m s 0.05 0.07 0.01 0.07 +quarantenaires quarantenaire adj p 0.05 0.07 0.04 0.00 +quarantième quarantième adj 0.03 0.27 0.03 0.27 +quarantièmes quarantième nom p 0.04 0.14 0.01 0.07 +quark quark nom m s 0.22 0.14 0.13 0.07 +quarks quark nom m p 0.22 0.14 0.09 0.07 +quarre quarre nom f s 0.04 0.00 0.04 0.00 +quarrez quarrer ver 0.00 0.07 0.00 0.07 imp:pre:2p; +quart_monde quart_monde nom m s 0.02 0.00 0.02 0.00 +quart quart nom m s 23.02 77.30 20.58 57.36 +quartaut quartaut nom m s 0.00 0.20 0.00 0.20 +quarte quarte nom f s 0.04 0.14 0.04 0.14 +quartenier quartenier nom m s 0.00 0.07 0.00 0.07 +quarter quarter ver 0.44 0.00 0.44 0.00 inf;; +quarteron quarteron nom m s 0.03 0.81 0.01 0.61 +quarteronnes quarteron nom f p 0.03 0.81 0.00 0.07 +quarterons quarteron nom m p 0.03 0.81 0.02 0.14 +quartet quartet nom m s 0.20 0.00 0.20 0.00 +quartette quartette nom m s 0.00 0.14 0.00 0.07 +quartettes quartette nom m p 0.00 0.14 0.00 0.07 +quartidi quartidi nom m s 0.00 0.07 0.00 0.07 +quartier_maître quartier_maître nom m s 0.84 0.27 0.83 0.27 +quartier quartier nom m s 65.70 112.16 55.23 89.86 +quartier_maître quartier_maître nom m p 0.84 0.27 0.01 0.00 +quartiers quartier nom m p 65.70 112.16 10.48 22.30 +quarto quarto adv 0.02 0.14 0.02 0.14 +quarts quart nom m p 23.02 77.30 2.43 19.93 +quarté quarté nom m s 0.01 0.07 0.01 0.07 +quartz quartz nom m 0.45 1.69 0.45 1.69 +quasar quasar nom m s 0.09 0.00 0.09 0.00 +quasi_agonie quasi_agonie nom f s 0.00 0.07 0.00 0.07 +quasi_blasphème quasi_blasphème nom m s 0.00 0.07 0.00 0.07 +quasi_bonheur quasi_bonheur nom m s 0.00 0.07 0.00 0.07 +quasi_certitude quasi_certitude nom f s 0.04 0.41 0.04 0.41 +quasi_chômage quasi_chômage nom m s 0.02 0.00 0.02 0.00 +quasi_débutant quasi_débutant adv 0.01 0.00 0.01 0.00 +quasi_décapitation quasi_décapitation nom f s 0.01 0.00 0.01 0.00 +quasi_désertification quasi_désertification nom f s 0.00 0.07 0.00 0.07 +quasi_facétieux quasi_facétieux adj m 0.01 0.00 0.01 0.00 +quasi_fiancé quasi_fiancé nom f s 0.00 0.07 0.00 0.07 +quasi_futuriste quasi_futuriste adj m p 0.01 0.00 0.01 0.00 +quasi_génocide quasi_génocide nom m s 0.01 0.00 0.01 0.00 +quasi_hérétique quasi_hérétique nom s 0.00 0.07 0.00 0.07 +quasi_ignare quasi_ignare nom s 0.00 0.07 0.00 0.07 +quasi_impossibilité quasi_impossibilité nom f s 0.00 0.14 0.00 0.14 +quasi_impunité quasi_impunité nom f s 0.00 0.07 0.00 0.07 +quasi_inconnu quasi_inconnu adv 0.02 0.07 0.02 0.07 +quasi_indifférence quasi_indifférence nom f s 0.00 0.07 0.00 0.07 +quasi_infirme quasi_infirme nom s 0.00 0.07 0.00 0.07 +quasi_instantanée quasi_instantanée adv 0.02 0.00 0.02 0.00 +quasi_jungienne quasi_jungienne nom f s 0.01 0.00 0.01 0.00 +quasi_mariage quasi_mariage nom m s 0.00 0.07 0.00 0.07 +quasi_maximum quasi_maximum adv 0.01 0.00 0.01 0.00 +quasi_mendiant quasi_mendiant nom m s 0.14 0.00 0.14 0.00 +quasi_miracle quasi_miracle nom m s 0.00 0.07 0.00 0.07 +quasi_monopole quasi_monopole nom m s 0.10 0.00 0.10 0.00 +quasi_morceau quasi_morceau nom m s 0.00 0.07 0.00 0.07 +quasi_noyade quasi_noyade nom f s 0.01 0.00 0.01 0.00 +quasi_nudité quasi_nudité nom f s 0.00 0.14 0.00 0.14 +quasi_permanence quasi_permanence nom f s 0.00 0.07 0.00 0.07 +quasi_protection quasi_protection nom f s 0.00 0.07 0.00 0.07 +quasi_religieux quasi_religieux adj m s 0.01 0.07 0.01 0.07 +quasi_respect quasi_respect nom m s 0.00 0.07 0.00 0.07 +quasi_totalité quasi_totalité nom f s 0.16 0.88 0.16 0.88 +quasi_émeute quasi_émeute nom f s 0.02 0.00 0.02 0.00 +quasi_unanime quasi_unanime adj s 0.00 0.14 0.00 0.14 +quasi_unanimité quasi_unanimité nom f s 0.00 0.07 0.00 0.07 +quasi_équitable quasi_équitable adj m s 0.01 0.00 0.01 0.00 +quasi_veuvage quasi_veuvage nom m s 0.00 0.07 0.00 0.07 +quasi_ville quasi_ville nom f s 0.00 0.07 0.00 0.07 +quasi_voisines quasi_voisines adv 0.00 0.07 0.00 0.07 +quasi quasi adv_sup 2.69 17.36 2.69 17.36 +quasiment quasiment adv 7.66 6.62 7.66 6.62 +quasimodo quasimodo nom f s 0.04 0.07 0.04 0.00 +quasimodos quasimodo nom f p 0.04 0.07 0.00 0.07 +quat_zarts quat_zarts nom m p 0.00 0.07 0.00 0.07 +quater quater adv 0.01 0.00 0.01 0.00 +quaternaire quaternaire nom m s 0.27 0.14 0.27 0.14 +quatorze quatorze adj_num 6.70 22.09 6.70 22.09 +quatorzième quatorzième nom s 0.07 0.54 0.07 0.54 +quatrain quatrain nom m s 0.23 0.68 0.22 0.14 +quatrains quatrain nom m p 0.23 0.68 0.01 0.54 +quatre_feuilles quatre_feuilles nom m 0.01 0.07 0.01 0.07 +quatre_heures quatre_heures nom m 0.04 0.41 0.04 0.41 +quatre_mâts quatre_mâts nom m 0.27 0.14 0.27 0.14 +quatre_quarts quatre_quarts nom m 0.26 0.14 0.26 0.14 +quatre_saisons quatre_saisons nom f 0.47 1.15 0.47 1.15 +quatre_vingt_cinq quatre_vingt_cinq adj_num 0.07 0.88 0.07 0.88 +quatre_vingt_deux quatre_vingt_deux adj_num 0.00 0.27 0.00 0.27 +quatre_vingt_dix_huit quatre_vingt_dix_huit adj_num 0.02 0.34 0.02 0.34 +quatre_vingt_dix_neuf quatre_vingt_dix_neuf adj_num 0.21 0.47 0.21 0.47 +quatre_vingt_dix_sept quatre_vingt_dix_sept adj_num 0.00 0.27 0.00 0.27 +quatre_vingt_dix quatre_vingt_dix nom m 0.33 0.61 0.33 0.61 +quatre_vingt_dixième quatre_vingt_dixième adj 0.01 0.14 0.01 0.14 +quatre_vingt_douze quatre_vingt_douze adj_num 0.11 0.54 0.11 0.54 +quatre_vingt_douzième quatre_vingt_douzième adj 0.00 0.07 0.00 0.07 +quatre_vingt_huit quatre_vingt_huit adj_num 0.02 0.20 0.02 0.20 +quatre_vingt_neuf quatre_vingt_neuf adj_num 0.14 0.61 0.14 0.61 +quatre_vingt_onze quatre_vingt_onze adj_num 0.10 0.34 0.10 0.34 +quatre_vingt_quatorze quatre_vingt_quatorze adj_num 0.10 0.07 0.10 0.07 +quatre_vingt_quatre quatre_vingt_quatre adj_num 0.03 0.74 0.03 0.74 +quatre_vingt_quinze quatre_vingt_quinze adj_num 0.14 2.16 0.14 2.16 +quatre_vingt_seize quatre_vingt_seize adj_num 0.10 0.07 0.10 0.07 +quatre_vingt_sept quatre_vingt_sept adj_num 0.07 0.27 0.07 0.27 +quatre_vingt_six quatre_vingt_six adj_num 0.19 0.34 0.19 0.34 +quatre_vingt_treize quatre_vingt_treize adj_num 0.11 0.95 0.11 0.95 +quatre_vingt_treizième quatre_vingt_treizième adj 0.00 0.07 0.00 0.07 +quatre_vingt_trois quatre_vingt_trois adj_num 0.06 0.41 0.06 0.41 +quatre_vingt_un quatre_vingt_un adj_num 0.02 0.14 0.02 0.14 +quatre_vingt quatre_vingt adj_num 0.93 1.01 0.93 1.01 +quatre_vingtième quatre_vingtième adj 0.00 0.14 0.00 0.14 +quatre_vingtième quatre_vingtième nom s 0.00 0.14 0.00 0.14 +quatre_vingts quatre_vingts adj_num 0.36 9.05 0.36 9.05 +quatre quatre adj_num 150.93 282.64 150.93 282.64 +quatrillion quatrillion nom m s 0.01 0.00 0.01 0.00 +quatrième quatrième adj 8.65 15.74 8.65 15.74 +quatrièmement quatrièmement adv 0.41 0.14 0.41 0.14 +quatrièmes quatrième nom p 7.14 13.04 0.05 0.27 +quattrocento quattrocento nom m s 0.10 0.27 0.10 0.27 +quatuor quatuor nom m s 1.07 3.45 1.04 3.04 +quatuors quatuor nom m p 1.07 3.45 0.03 0.41 +que que pro_rel 4100.90 3315.95 3330.88 2975.34 +quechua quechua nom m s 0.05 0.00 0.05 0.00 +quel quel adj_int m s 657.71 265.34 657.71 265.34 +quelconque quelconque adj_sup s 10.08 28.85 9.79 27.57 +quelconques quelconque adj_sup p 10.08 28.85 0.29 1.28 +quelle quelle adj_int f s 512.55 244.39 512.55 244.39 +quelles quelles adj_int f p 46.92 35.95 46.92 35.95 +quelqu_un quelqu_un pro_ind s 629.00 128.92 629.00 128.92 +quelqu_une quelqu_une pro_ind f s 0.08 0.61 0.08 0.61 +quelque quelque adj_ind s 884.61 557.77 884.61 557.77 +quelquefois quelquefois adv_sup 11.87 60.47 11.87 60.47 +quelques_unes quelques_unes pro_ind f p 3.50 8.51 3.50 8.51 +quelques_uns quelques_uns pro_ind m p 8.33 22.09 8.33 22.09 +quelques quelques adj_ind p 337.35 732.57 337.35 732.57 +quels quels adj_int m p 56.44 37.23 56.44 37.23 +quenelle quenelle nom f s 0.35 0.74 0.19 0.00 +quenelles quenelle nom f p 0.35 0.74 0.16 0.74 +quenotte quenotte nom f s 0.18 0.74 0.00 0.20 +quenottes quenotte nom f p 0.18 0.74 0.18 0.54 +quenouille quenouille nom f s 0.23 0.74 0.22 0.47 +quenouilles quenouille nom f p 0.23 0.74 0.01 0.27 +querella quereller ver 2.15 2.16 0.00 0.07 ind:pas:3s; +querellaient quereller ver 2.15 2.16 0.14 0.54 ind:imp:3p; +querellais quereller ver 2.15 2.16 0.00 0.07 ind:imp:1s; +querellait quereller ver 2.15 2.16 0.03 0.14 ind:imp:3s; +querellant quereller ver 2.15 2.16 0.01 0.00 par:pre; +querelle querelle nom f s 12.84 12.77 10.63 6.42 +querellent quereller ver 2.15 2.16 0.14 0.20 ind:pre:3p; +quereller quereller ver 2.15 2.16 0.91 0.27 inf; +querelles querelle nom f p 12.84 12.77 2.21 6.35 +querelleur querelleur adj m s 0.33 0.14 0.14 0.07 +querelleurs querelleur adj m p 0.33 0.14 0.19 0.07 +querelleuse querelleux adj f s 0.02 0.00 0.02 0.00 +querellez quereller ver 2.15 2.16 0.13 0.00 imp:pre:2p;ind:pre:2p; +querellons quereller ver 2.15 2.16 0.14 0.00 imp:pre:1p;ind:pre:1p; +querellèrent quereller ver 2.15 2.16 0.00 0.07 ind:pas:3p; +querellé quereller ver m s 2.15 2.16 0.05 0.07 par:pas; +querellée quereller ver f s 2.15 2.16 0.02 0.14 par:pas; +querellées quereller ver f p 2.15 2.16 0.11 0.00 par:pas; +querellés quereller ver m p 2.15 2.16 0.07 0.34 par:pas; +questeur questeur nom m s 0.13 0.07 0.10 0.00 +questeurs questeur nom m p 0.13 0.07 0.03 0.07 +question_clé question_clé nom f s 0.02 0.00 0.02 0.00 +question_réponse question_réponse nom f s 0.02 0.00 0.02 0.00 +question question nom f s 411.82 328.45 293.63 232.50 +questionna questionner ver 6.30 15.88 0.01 2.84 ind:pas:3s; +questionnai questionner ver 6.30 15.88 0.01 0.47 ind:pas:1s; +questionnaient questionner ver 6.30 15.88 0.02 0.47 ind:imp:3p; +questionnaire questionnaire nom m s 2.05 1.82 1.69 1.15 +questionnaires questionnaire nom m p 2.05 1.82 0.36 0.68 +questionnais questionner ver 6.30 15.88 0.04 0.34 ind:imp:1s; +questionnait questionner ver 6.30 15.88 0.23 1.35 ind:imp:3s; +questionnant questionner ver 6.30 15.88 0.04 0.27 par:pre; +questionne questionner ver 6.30 15.88 1.48 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +questionnement questionnement nom m s 0.36 0.14 0.32 0.07 +questionnements questionnement nom m p 0.36 0.14 0.04 0.07 +questionnent questionner ver 6.30 15.88 0.08 0.41 ind:pre:3p; +questionner questionner ver 6.30 15.88 2.66 3.51 ind:pre:2p;inf; +questionnera questionner ver 6.30 15.88 0.08 0.07 ind:fut:3s; +questionnerai questionner ver 6.30 15.88 0.02 0.00 ind:fut:1s; +questionnerait questionner ver 6.30 15.88 0.00 0.14 cnd:pre:3s; +questionnerons questionner ver 6.30 15.88 0.01 0.07 ind:fut:1p; +questionneront questionner ver 6.30 15.88 0.01 0.00 ind:fut:3p; +questionneur questionneur nom m s 0.03 0.81 0.03 0.34 +questionneurs questionneur nom m p 0.03 0.81 0.00 0.27 +questionneuse questionneur nom f s 0.03 0.81 0.00 0.20 +questionnez questionner ver 6.30 15.88 0.34 0.14 imp:pre:2p;ind:pre:2p; +questionnions questionner ver 6.30 15.88 0.00 0.14 ind:imp:1p; +questionnons questionner ver 6.30 15.88 0.01 0.07 ind:pre:1p; +questionnât questionner ver 6.30 15.88 0.00 0.07 sub:imp:3s; +questionnèrent questionner ver 6.30 15.88 0.00 0.14 ind:pas:3p; +questionné questionner ver m s 6.30 15.88 0.98 1.42 par:pas; +questionnée questionner ver f s 6.30 15.88 0.16 0.41 par:pas; +questionnés questionner ver m p 6.30 15.88 0.12 0.47 par:pas; +questions_réponse questions_réponse nom f p 0.07 0.07 0.07 0.07 +questions question nom f p 411.82 328.45 118.19 95.95 +questure questure nom f s 0.10 0.00 0.10 0.00 +quetsche quetsche nom f s 0.00 0.74 0.00 0.34 +quetsches quetsche nom f p 0.00 0.74 0.00 0.41 +quette quette nom f s 0.01 0.00 0.01 0.00 +quetzal quetzal nom m s 0.01 0.00 0.01 0.00 +queue_d_aronde queue_d_aronde nom f s 0.00 0.14 0.00 0.07 +queue_de_cheval queue_de_cheval nom f s 0.14 0.00 0.14 0.00 +queue_de_pie queue_de_pie nom f s 0.05 0.27 0.05 0.27 +queue queue nom f s 41.59 57.84 38.93 51.49 +queue_d_aronde queue_d_aronde nom f p 0.00 0.14 0.00 0.07 +queue_de_rat queue_de_rat nom f p 0.00 0.07 0.00 0.07 +queues queue nom f p 41.59 57.84 2.66 6.35 +queursoir queursoir nom m s 0.00 0.07 0.00 0.07 +queutard queutard nom m s 0.19 0.00 0.19 0.00 +queuté queuter ver m s 0.00 0.14 0.00 0.07 par:pas; +queutée queuter ver f s 0.00 0.14 0.00 0.07 par:pas; +qui_vive qui_vive ono 0.00 0.14 0.00 0.14 +qui qui pro_rel 5516.52 7923.24 5344.98 7897.91 +quibus quibus nom m 0.00 0.20 0.00 0.20 +quiche quiche nom f s 1.21 0.68 1.10 0.41 +quiches quiche nom f p 1.21 0.68 0.11 0.27 +quichotte quichotte nom m s 0.00 0.07 0.00 0.07 +quick quick nom m s 0.27 0.20 0.27 0.20 +quiconque quiconque pro_rel s 22.81 9.12 15.43 6.08 +quidam quidam nom m s 0.70 2.23 0.66 1.89 +quidams quidam nom m p 0.70 2.23 0.04 0.34 +quiet quiet adj m s 0.39 0.74 0.28 0.07 +quiets quiet adj m p 0.39 0.74 0.00 0.20 +quignon quignon nom m s 0.25 2.43 0.11 2.16 +quignons quignon nom m p 0.25 2.43 0.14 0.27 +quillai quiller ver 0.06 0.27 0.00 0.20 ind:pas:1s; +quillards quillard nom m p 0.00 0.34 0.00 0.34 +quille quille nom f s 2.89 5.81 1.49 2.57 +quiller quiller ver 0.06 0.27 0.05 0.00 inf; +quilles quille nom f p 2.89 5.81 1.40 3.24 +quillon quillon nom m s 0.00 0.20 0.00 0.07 +quillons quillon nom m p 0.00 0.20 0.00 0.14 +quillée quiller ver f s 0.06 0.27 0.00 0.07 par:pas; +quimpe quimper ver 0.00 1.15 0.00 0.27 ind:pre:1s;ind:pre:3s; +quimpent quimper ver 0.00 1.15 0.00 0.07 ind:pre:3p; +quimper quimper ver 0.00 1.15 0.00 0.68 inf; +quimpé quimper ver m s 0.00 1.15 0.00 0.14 par:pas; +quincaille quincaille nom f s 0.00 0.34 0.00 0.34 +quincaillerie quincaillerie nom f s 1.97 2.91 1.89 2.70 +quincailleries quincaillerie nom f p 1.97 2.91 0.08 0.20 +quincaillier quincaillier nom m s 0.30 1.49 0.21 1.28 +quincailliers quincaillier nom m p 0.30 1.49 0.09 0.07 +quincaillière quincaillier nom f s 0.30 1.49 0.00 0.14 +quinconce quinconce nom m s 0.01 1.42 0.00 1.22 +quinconces quinconce nom m p 0.01 1.42 0.01 0.20 +quine quine nom m s 0.23 0.34 0.23 0.34 +quinine quinine nom f s 0.54 0.95 0.54 0.95 +quinium quinium nom m s 0.00 0.07 0.00 0.07 +quinoa quinoa nom m s 0.01 0.00 0.01 0.00 +quinqua quinqua nom m s 0.00 0.20 0.00 0.20 +quinquagénaire quinquagénaire adj s 0.16 0.68 0.16 0.54 +quinquagénaires quinquagénaire nom p 0.15 1.35 0.02 0.27 +quinquagésime quinquagésime nom f s 0.00 0.07 0.00 0.07 +quinquennal quinquennal adj m s 0.26 0.34 0.26 0.34 +quinquennat quinquennat nom m s 0.10 0.00 0.10 0.00 +quinquet quinquet nom m s 0.25 2.30 0.04 0.34 +quinquets quinquet nom m p 0.25 2.30 0.21 1.96 +quinquina quinquina nom m s 0.00 0.54 0.00 0.54 +quint quint adj 0.20 0.20 0.20 0.20 +quintaine quintaine nom f s 0.00 0.07 0.00 0.07 +quintal quintal nom m s 0.56 1.01 0.19 0.68 +quintaux quintal nom m p 0.56 1.01 0.38 0.34 +quinte quinte nom f s 1.42 4.86 1.25 3.85 +quintes quinte nom f p 1.42 4.86 0.16 1.01 +quintessence quintessence nom f s 0.43 1.22 0.43 1.22 +quintessencié quintessencié adj m s 0.00 0.41 0.00 0.27 +quintessenciée quintessencié adj f s 0.00 0.41 0.00 0.07 +quintessenciées quintessencié adj f p 0.00 0.41 0.00 0.07 +quintet quintet nom m s 0.05 0.00 0.05 0.00 +quintette quintette nom m s 0.09 1.22 0.09 1.15 +quintettes quintette nom m p 0.09 1.22 0.00 0.07 +quinteux quinteux adj m s 0.00 0.20 0.00 0.20 +quintidi quintidi nom m s 0.00 0.07 0.00 0.07 +quinto quinto adv 0.22 0.00 0.22 0.00 +quintolet quintolet nom m s 0.02 0.00 0.02 0.00 +quinton quinton nom m s 0.01 0.00 0.01 0.00 +quinté quinté nom m s 0.14 0.00 0.14 0.00 +quintupla quintupler ver 0.19 0.14 0.00 0.07 ind:pas:3s; +quintuple quintuple adj s 0.03 0.20 0.03 0.07 +quintuples quintuple adj f p 0.03 0.20 0.00 0.14 +quintuplé quintupler ver m s 0.19 0.14 0.15 0.00 par:pas; +quintuplées quintuplée nom f p 0.08 0.14 0.08 0.14 +quintuplés quintuplé nom m p 0.35 0.07 0.35 0.07 +quinzaine quinzaine nom f s 2.02 11.89 2.01 11.69 +quinzaines quinzaine nom f p 2.02 11.89 0.01 0.20 +quinze quinze adj_num 21.92 94.80 21.92 94.80 +quinzième quinzième nom s 0.28 0.74 0.28 0.74 +quipos quipo nom m p 0.00 0.07 0.00 0.07 +quiproquo quiproquo nom m s 0.38 0.88 0.37 0.61 +quiproquos quiproquo nom m p 0.38 0.88 0.01 0.27 +quipu quipu nom m s 0.00 0.07 0.00 0.07 +quiquette quiquette nom f s 0.00 0.07 0.00 0.07 +quiqui quiqui nom m s 0.00 0.41 0.00 0.41 +quiscale quiscale nom m s 0.11 0.00 0.11 0.00 +quite quite nom m s 0.47 0.07 0.47 0.07 +quiète quiet adj f s 0.39 0.74 0.00 0.41 +quiètement quiètement adv 0.00 0.14 0.00 0.14 +quiètes quiet adj f p 0.39 0.74 0.10 0.07 +quitta quitter ver 276.23 318.72 1.82 27.30 ind:pas:3s; +quittai quitter ver 276.23 318.72 0.23 6.62 ind:pas:1s; +quittaient quitter ver 276.23 318.72 0.36 7.36 ind:imp:3p; +quittais quitter ver 276.23 318.72 1.37 3.85 ind:imp:1s;ind:imp:2s; +quittait quitter ver 276.23 318.72 2.88 24.93 ind:imp:3s; +quittance quittance nom f s 0.55 1.15 0.40 0.54 +quittances quittance nom f p 0.55 1.15 0.14 0.61 +quittant quitter ver 276.23 318.72 3.60 18.38 par:pre; +quittas quitter ver 276.23 318.72 0.00 0.07 ind:pas:2s; +quittassent quitter ver 276.23 318.72 0.00 0.07 sub:imp:3p; +quitte quitter ver 276.23 318.72 49.07 32.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +quittent quitter ver 276.23 318.72 4.39 5.47 ind:pre:3p; +quitter quitter ver 276.23 318.72 88.02 85.95 ind:pre:2p;inf; +quittera quitter ver 276.23 318.72 4.62 2.09 ind:fut:3s; +quitterai quitter ver 276.23 318.72 6.18 1.89 ind:fut:1s; +quitteraient quitter ver 276.23 318.72 0.02 1.08 cnd:pre:3p; +quitterais quitter ver 276.23 318.72 1.73 1.01 cnd:pre:1s;cnd:pre:2s; +quitterait quitter ver 276.23 318.72 0.78 2.57 cnd:pre:3s; +quitteras quitter ver 276.23 318.72 1.75 0.47 ind:fut:2s; +quitterez quitter ver 276.23 318.72 1.11 0.41 ind:fut:2p; +quitteriez quitter ver 276.23 318.72 0.34 0.07 cnd:pre:2p; +quitterions quitter ver 276.23 318.72 0.02 0.07 cnd:pre:1p; +quitterons quitter ver 276.23 318.72 0.63 0.47 ind:fut:1p; +quitteront quitter ver 276.23 318.72 0.40 0.41 ind:fut:3p; +quittes quitter ver 276.23 318.72 6.03 1.42 ind:pre:2s;sub:pre:2s; +quittez quitter ver 276.23 318.72 19.72 1.96 imp:pre:2p;ind:pre:2p; +quittiez quitter ver 276.23 318.72 1.19 0.27 ind:imp:2p;sub:pre:2p; +quittions quitter ver 276.23 318.72 0.39 2.77 ind:imp:1p;sub:pre:1p; +quittâmes quitter ver 276.23 318.72 0.16 2.16 ind:pas:1p; +quittons quitter ver 276.23 318.72 3.44 1.96 imp:pre:1p;ind:pre:1p; +quittât quitter ver 276.23 318.72 0.01 1.01 sub:imp:3s; +quittèrent quitter ver 276.23 318.72 0.38 6.69 ind:pas:3p; +quitté quitter ver m s 276.23 318.72 62.92 60.14 par:pas; +quittée quitter ver f s 276.23 318.72 7.40 8.85 par:pas; +quittées quitter ver f p 276.23 318.72 0.36 0.95 par:pas; +quittés quitter ver m p 276.23 318.72 4.95 7.97 par:pas; +quitus quitus nom m 0.14 0.07 0.14 0.07 +quiétisme quiétisme nom m s 0.00 0.34 0.00 0.34 +quiétiste quiétiste nom s 0.00 0.07 0.00 0.07 +quiétude quiétude nom f s 0.64 5.14 0.64 5.07 +quiétudes quiétude nom f p 0.64 5.14 0.00 0.07 +quiz quiz nom m 0.53 0.00 0.53 0.00 +quoaillant quoailler ver 0.00 0.07 0.00 0.07 par:pre; +quoi quoi pro_rel 923.03 380.07 904.12 376.89 +quoique quoique con 11.68 19.05 11.68 19.05 +quolibet quolibet nom m s 0.04 2.91 0.00 0.14 +quolibets quolibet nom m p 0.04 2.91 0.04 2.77 +quorum quorum nom m s 0.67 0.20 0.67 0.20 +quota quota nom m s 2.12 0.47 1.39 0.27 +quotas quota nom m p 2.12 0.47 0.73 0.20 +quote_part quote_part nom f s 0.03 0.47 0.03 0.47 +quotidien quotidien adj m s 10.15 37.43 3.66 10.47 +quotidienne quotidien adj f s 10.15 37.43 3.91 17.30 +quotidiennement quotidiennement adv 0.97 4.80 0.97 4.80 +quotidiennes quotidien adj f p 10.15 37.43 1.29 4.80 +quotidienneté quotidienneté nom f s 0.00 0.14 0.00 0.14 +quotidiens quotidien adj m p 10.15 37.43 1.30 4.86 +quotient quotient nom m s 0.42 0.61 0.42 0.47 +quotients quotient nom m p 0.42 0.61 0.00 0.14 +quotité quotité nom f s 0.00 0.07 0.00 0.07 +québécois québécois adj m s 0.25 0.07 0.11 0.00 +québécoise québécois adj f s 0.25 0.07 0.14 0.07 +quémanda quémander ver 0.60 2.70 0.00 0.07 ind:pas:3s; +quémandaient quémander ver 0.60 2.70 0.00 0.27 ind:imp:3p; +quémandait quémander ver 0.60 2.70 0.01 0.20 ind:imp:3s; +quémandant quémander ver 0.60 2.70 0.00 0.47 par:pre; +quémande quémander ver 0.60 2.70 0.03 0.14 ind:pre:3s; +quémandent quémander ver 0.60 2.70 0.12 0.07 ind:pre:3p; +quémander quémander ver 0.60 2.70 0.41 1.42 inf; +quémandeur quémandeur nom m s 0.32 0.88 0.02 0.41 +quémandeurs quémandeur nom m p 0.32 0.88 0.30 0.27 +quémandeuse quémandeur nom f s 0.32 0.88 0.00 0.07 +quémandeuses quémandeur nom f p 0.32 0.88 0.00 0.14 +quémandons quémander ver 0.60 2.70 0.01 0.00 ind:pre:1p; +quémandé quémander ver m s 0.60 2.70 0.02 0.07 par:pas; +quéquette quéquette nom f s 1.30 2.36 1.27 2.09 +quéquettes quéquette nom f p 1.30 2.36 0.03 0.27 +quérir quérir ver 0.65 1.76 0.65 1.76 inf; +quêta quêter ver 0.21 3.38 0.00 0.20 ind:pas:3s; +quêtai quêter ver 0.21 3.38 0.00 0.07 ind:pas:1s; +quêtaient quêter ver 0.21 3.38 0.00 0.27 ind:imp:3p; +quêtais quêter ver 0.21 3.38 0.01 0.20 ind:imp:1s;ind:imp:2s; +quêtait quêter ver 0.21 3.38 0.00 0.41 ind:imp:3s; +quêtant quêter ver 0.21 3.38 0.01 0.88 par:pre; +quête quête nom f s 10.24 14.53 9.97 13.92 +quêtent quêter ver 0.21 3.38 0.00 0.14 ind:pre:3p; +quêter quêter ver 0.21 3.38 0.13 0.88 inf; +quêtes quête nom f p 10.24 14.53 0.28 0.61 +quêteur quêteur nom m s 0.04 0.81 0.04 0.20 +quêteurs quêteur nom m p 0.04 0.81 0.00 0.34 +quêteuse quêteur nom f s 0.04 0.81 0.00 0.27 +quêtez quêter ver 0.21 3.38 0.00 0.07 imp:pre:2p; +quêté quêter ver m s 0.21 3.38 0.00 0.07 par:pas; +quêtées quêter ver f p 0.21 3.38 0.00 0.07 par:pas; +rîmes rire ver 140.25 320.54 0.01 0.20 ind:pas:1p; +rît rire ver 140.25 320.54 0.00 0.07 sub:imp:3s; +röntgens röntgen nom m p 0.02 0.00 0.02 0.00 +rôda rôder ver 5.76 20.07 0.00 0.07 ind:pas:3s; +rôdai rôder ver 5.76 20.07 0.00 0.20 ind:pas:1s; +rôdaient rôder ver 5.76 20.07 0.06 2.36 ind:imp:3p; +rôdailler rôdailler ver 0.00 0.20 0.00 0.20 inf; +rôdais rôder ver 5.76 20.07 0.07 0.47 ind:imp:1s;ind:imp:2s; +rôdait rôder ver 5.76 20.07 0.35 3.51 ind:imp:3s; +rôdant rôder ver 5.76 20.07 0.44 1.28 par:pre; +rôde rôder ver 5.76 20.07 1.93 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rôdent rôder ver 5.76 20.07 0.61 1.49 ind:pre:3p; +rôder rôder ver 5.76 20.07 1.63 5.41 inf; +rôdera rôder ver 5.76 20.07 0.01 0.07 ind:fut:3s; +rôderai rôder ver 5.76 20.07 0.00 0.07 ind:fut:1s; +rôderait rôder ver 5.76 20.07 0.00 0.07 cnd:pre:3s; +rôdes rôder ver 5.76 20.07 0.23 0.20 ind:pre:2s; +rôdeur rôdeur nom m s 1.37 2.57 0.94 1.28 +rôdeurs rôdeur nom m p 1.37 2.57 0.40 1.08 +rôdeuse rôdeur nom f s 1.37 2.57 0.03 0.14 +rôdeuses rôdeur nom f p 1.37 2.57 0.00 0.07 +rôdez rôder ver 5.76 20.07 0.04 0.00 imp:pre:2p;ind:pre:2p; +rôdiez rôder ver 5.76 20.07 0.01 0.00 ind:imp:2p; +rôdions rôder ver 5.76 20.07 0.14 0.14 ind:imp:1p; +rôdâmes rôder ver 5.76 20.07 0.00 0.07 ind:pas:1p; +rôdèrent rôder ver 5.76 20.07 0.00 0.14 ind:pas:3p; +rôdé rôder ver m s 5.76 20.07 0.20 0.68 par:pas; +rôdée rôder ver f s 5.76 20.07 0.01 0.14 par:pas; +rôdés rôder ver m p 5.76 20.07 0.01 0.00 par:pas; +rôle_titre rôle_titre nom m s 0.01 0.00 0.01 0.00 +rôle rôle nom m s 69.38 96.96 61.20 88.51 +rôles rôle nom m p 69.38 96.96 8.18 8.45 +rônier rônier nom m s 0.01 0.07 0.01 0.00 +rôniers rônier nom m p 0.01 0.07 0.00 0.07 +rônin rônin nom m s 0.10 0.00 0.07 0.00 +rônins rônin nom m p 0.10 0.00 0.03 0.00 +rôt rôt nom m s 0.05 0.07 0.04 0.00 +rôti rôti nom m s 4.33 3.24 4.02 2.30 +rôtie rôti adj f s 2.13 3.78 0.33 0.41 +rôties rôti adj f p 2.13 3.78 0.15 0.34 +rôtir rôtir ver 2.90 5.27 1.73 2.16 inf; +rôtiront rôtir ver 2.90 5.27 0.00 0.07 ind:fut:3p; +rôtis rôti nom m p 4.33 3.24 0.30 0.95 +rôtissaient rôtir ver 2.90 5.27 0.03 0.00 ind:imp:3p; +rôtissait rôtir ver 2.90 5.27 0.00 0.34 ind:imp:3s; +rôtissant rôtir ver 2.90 5.27 0.01 0.07 par:pre; +rôtissent rôtir ver 2.90 5.27 0.20 0.14 ind:pre:3p; +rôtisserie rôtisserie nom f s 0.35 0.27 0.35 0.27 +rôtisseur rôtisseur nom m s 0.07 0.20 0.05 0.14 +rôtisseurs rôtisseur nom m p 0.07 0.20 0.01 0.00 +rôtisseuse rôtisseur nom f s 0.07 0.20 0.01 0.00 +rôtisseuses rôtisseur nom f p 0.07 0.20 0.00 0.07 +rôtissez rôtir ver 2.90 5.27 0.01 0.00 imp:pre:2p; +rôtissions rôtir ver 2.90 5.27 0.01 0.00 ind:imp:1p; +rôtissoire rôtissoire nom f s 0.04 0.41 0.04 0.27 +rôtissoires rôtissoire nom f p 0.04 0.41 0.00 0.14 +rôtit rôtir ver 2.90 5.27 0.20 0.07 ind:pre:3s;ind:pas:3s; +rôts rôt nom m p 0.05 0.07 0.01 0.07 +ra ra nom m 3.63 3.45 3.63 3.45 +raïa raïa nom m s 0.10 0.00 0.10 0.00 +raïs raïs nom m 0.00 0.14 0.00 0.14 +rab rab nom m s 1.92 1.76 1.92 1.69 +rabais rabais nom m 1.57 1.55 1.57 1.55 +rabaissa rabaisser ver 3.79 3.38 0.00 0.20 ind:pas:3s; +rabaissaient rabaisser ver 3.79 3.38 0.00 0.07 ind:imp:3p; +rabaissais rabaisser ver 3.79 3.38 0.04 0.07 ind:imp:1s; +rabaissait rabaisser ver 3.79 3.38 0.10 0.34 ind:imp:3s; +rabaissant rabaisser ver 3.79 3.38 0.04 0.34 par:pre; +rabaisse rabaisser ver 3.79 3.38 0.69 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rabaissement rabaissement nom m s 0.01 0.07 0.01 0.07 +rabaissent rabaisser ver 3.79 3.38 0.15 0.14 ind:pre:3p; +rabaisser rabaisser ver 3.79 3.38 1.65 1.22 inf; +rabaissera rabaisser ver 3.79 3.38 0.02 0.00 ind:fut:3s; +rabaisserait rabaisser ver 3.79 3.38 0.12 0.00 cnd:pre:3s; +rabaisses rabaisser ver 3.79 3.38 0.17 0.00 ind:pre:2s; +rabaissez rabaisser ver 3.79 3.38 0.26 0.07 imp:pre:2p;ind:pre:2p; +rabaissé rabaisser ver m s 3.79 3.38 0.32 0.27 par:pas; +rabaissée rabaisser ver f s 3.79 3.38 0.23 0.14 par:pas; +rabaissées rabaisser ver f p 3.79 3.38 0.00 0.07 par:pas; +raban raban nom m s 0.32 0.00 0.09 0.00 +rabane rabane nom f s 0.00 0.14 0.00 0.07 +rabanes rabane nom f p 0.00 0.14 0.00 0.07 +rabans raban nom m p 0.32 0.00 0.24 0.00 +rabat_joie rabat_joie adj 0.91 0.14 0.91 0.14 +rabat rabattre ver 2.21 21.76 0.32 2.97 ind:pre:3s; +rabats rabattre ver 2.21 21.76 0.21 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rabattable rabattable adj s 0.01 0.00 0.01 0.00 +rabattaient rabattre ver 2.21 21.76 0.00 0.68 ind:imp:3p; +rabattais rabattre ver 2.21 21.76 0.01 0.07 ind:imp:1s; +rabattait rabattre ver 2.21 21.76 0.01 2.16 ind:imp:3s; +rabattant rabattre ver 2.21 21.76 0.00 0.68 par:pre; +rabatte rabattre ver 2.21 21.76 0.04 0.27 sub:pre:1s;sub:pre:3s; +rabattent rabattre ver 2.21 21.76 0.04 0.81 ind:pre:3p; +rabatteur rabatteur nom m s 0.68 1.82 0.22 0.47 +rabatteurs rabatteur nom m p 0.68 1.82 0.45 0.95 +rabatteuse rabatteur nom f s 0.68 1.82 0.01 0.41 +rabatteuses rabatteuse nom f p 0.01 0.00 0.01 0.00 +rabattez rabattre ver 2.21 21.76 0.11 0.07 imp:pre:2p;ind:pre:2p; +rabattions rabattre ver 2.21 21.76 0.00 0.07 ind:imp:1p; +rabattirent rabattre ver 2.21 21.76 0.00 0.34 ind:pas:3p; +rabattis rabattre ver 2.21 21.76 0.00 0.27 ind:pas:1s; +rabattit rabattre ver 2.21 21.76 0.01 2.91 ind:pas:3s; +rabattra rabattre ver 2.21 21.76 0.04 0.14 ind:fut:3s; +rabattraient rabattre ver 2.21 21.76 0.00 0.07 cnd:pre:3p; +rabattrait rabattre ver 2.21 21.76 0.00 0.14 cnd:pre:3s; +rabattras rabattre ver 2.21 21.76 0.00 0.07 ind:fut:2s; +rabattre rabattre ver 2.21 21.76 1.01 4.46 inf; +rabattrons rabattre ver 2.21 21.76 0.00 0.07 ind:fut:1p; +rabattu rabattre ver m s 2.21 21.76 0.28 3.11 par:pas; +rabattue rabattu adj f s 0.14 2.03 0.12 0.07 +rabattues rabattre ver f p 2.21 21.76 0.03 0.34 par:pas; +rabattus rabattre ver m p 2.21 21.76 0.07 0.41 par:pas; +rabbi rabbi nom m s 4.83 0.74 4.83 0.74 +rabbin rabbin nom m s 9.36 7.57 9.04 6.35 +rabbinat rabbinat nom m s 0.00 0.20 0.00 0.20 +rabbinique rabbinique adj s 0.01 0.41 0.01 0.34 +rabbiniques rabbinique adj m p 0.01 0.41 0.00 0.07 +rabbins rabbin nom m p 9.36 7.57 0.32 1.22 +rabe rabe nom m s 0.05 0.14 0.05 0.07 +rabelaisien rabelaisien adj m s 0.00 0.68 0.00 0.27 +rabelaisienne rabelaisien adj f s 0.00 0.68 0.00 0.27 +rabelaisiennes rabelaisien adj f p 0.00 0.68 0.00 0.07 +rabelaisiens rabelaisien adj m p 0.00 0.68 0.00 0.07 +rabes rabe nom m p 0.05 0.14 0.00 0.07 +rabibochage rabibochage nom m s 0.00 0.14 0.00 0.14 +rabiboche rabibocher ver 0.84 0.54 0.06 0.00 ind:pre:1s;ind:pre:3s; +rabibochent rabibocher ver 0.84 0.54 0.01 0.00 ind:pre:3p; +rabibocher rabibocher ver 0.84 0.54 0.17 0.41 inf; +rabibocherez rabibocher ver 0.84 0.54 0.00 0.07 ind:fut:2p; +rabiboché rabibocher ver m s 0.84 0.54 0.40 0.00 par:pas; +rabibochées rabibocher ver f p 0.84 0.54 0.01 0.00 par:pas; +rabibochés rabibocher ver m p 0.84 0.54 0.19 0.07 par:pas; +rabiot rabiot nom m s 0.06 0.88 0.06 0.88 +rabiotait rabioter ver 0.00 0.27 0.00 0.07 ind:imp:3s; +rabioter rabioter ver 0.00 0.27 0.00 0.20 inf; +rabique rabique adj f s 0.00 0.14 0.00 0.14 +rabâcha rabâcher ver 1.46 4.32 0.00 0.14 ind:pas:3s; +rabâchage rabâchage nom m s 0.10 0.34 0.10 0.20 +rabâchages rabâchage nom m p 0.10 0.34 0.00 0.14 +rabâchaient rabâcher ver 1.46 4.32 0.00 0.20 ind:imp:3p; +rabâchais rabâcher ver 1.46 4.32 0.01 0.00 ind:imp:2s; +rabâchait rabâcher ver 1.46 4.32 0.01 0.61 ind:imp:3s; +rabâchant rabâcher ver 1.46 4.32 0.15 0.14 par:pre; +rabâche rabâcher ver 1.46 4.32 0.32 0.81 ind:pre:1s;ind:pre:3s; +rabâchent rabâcher ver 1.46 4.32 0.04 0.00 ind:pre:3p; +rabâcher rabâcher ver 1.46 4.32 0.68 1.01 inf; +rabâcherait rabâcher ver 1.46 4.32 0.00 0.07 cnd:pre:3s; +rabâches rabâcher ver 1.46 4.32 0.15 0.54 ind:pre:2s; +rabâcheur rabâcheur adj m s 0.01 0.00 0.01 0.00 +rabâché rabâcher ver m s 1.46 4.32 0.12 0.34 par:pas; +rabâchée rabâcher ver f s 1.46 4.32 0.00 0.07 par:pas; +rabâchées rabâcher ver f p 1.46 4.32 0.00 0.41 par:pas; +rabonnir rabonnir ver 0.00 0.07 0.00 0.07 inf; +rabot rabot nom m s 0.01 1.28 0.01 0.95 +rabotage rabotage nom m s 0.00 0.14 0.00 0.14 +rabotais raboter ver 0.15 2.91 0.00 0.07 ind:imp:1s; +rabotait raboter ver 0.15 2.91 0.00 0.47 ind:imp:3s; +rabotant raboter ver 0.15 2.91 0.00 0.20 par:pre; +rabotent raboter ver 0.15 2.91 0.10 0.20 ind:pre:3p; +raboter raboter ver 0.15 2.91 0.03 0.41 inf; +raboteur raboteur nom m s 0.01 0.07 0.01 0.07 +raboteuse raboteux adj f s 0.10 0.88 0.00 0.34 +raboteuses raboteux adj f p 0.10 0.88 0.00 0.07 +raboteux raboteux adj m 0.10 0.88 0.10 0.47 +rabotin rabotin nom m s 0.00 0.34 0.00 0.34 +rabots rabot nom m p 0.01 1.28 0.00 0.34 +raboté raboter ver m s 0.15 2.91 0.01 0.34 par:pas; +rabotée raboter ver f s 0.15 2.91 0.00 0.34 par:pas; +rabotées raboter ver f p 0.15 2.91 0.00 0.41 par:pas; +rabotés raboter ver m p 0.15 2.91 0.01 0.47 par:pas; +rabougri rabougri adj m s 0.25 3.38 0.19 1.55 +rabougrie rabougri adj f s 0.25 3.38 0.02 0.27 +rabougries rabougri adj f p 0.25 3.38 0.01 0.20 +rabougrir rabougrir ver 0.19 0.95 0.16 0.07 inf; +rabougris rabougri adj m p 0.25 3.38 0.03 1.35 +rabougrissent rabougrir ver 0.19 0.95 0.00 0.07 ind:pre:3p; +rabougrit rabougrir ver 0.19 0.95 0.00 0.20 ind:pre:3s; +rabouillères rabouiller nom f p 0.00 0.07 0.00 0.07 +rabouin rabouin nom m s 0.00 0.07 0.00 0.07 +rabouler rabouler ver 0.01 0.00 0.01 0.00 inf; +rabouter rabouter ver 0.00 0.14 0.00 0.07 inf; +rabouté rabouter ver m s 0.00 0.14 0.00 0.07 par:pas; +rabroua rabrouer ver 0.40 2.84 0.00 0.20 ind:pas:3s; +rabrouai rabrouer ver 0.40 2.84 0.00 0.07 ind:pas:1s; +rabrouaient rabrouer ver 0.40 2.84 0.00 0.14 ind:imp:3p; +rabrouait rabrouer ver 0.40 2.84 0.03 0.34 ind:imp:3s; +rabrouant rabrouer ver 0.40 2.84 0.00 0.14 par:pre; +rabroue rabrouer ver 0.40 2.84 0.05 0.20 ind:pre:1s;ind:pre:3s; +rabrouer rabrouer ver 0.40 2.84 0.04 0.68 inf; +rabrouât rabrouer ver 0.40 2.84 0.00 0.07 sub:imp:3s; +rabrouèrent rabrouer ver 0.40 2.84 0.00 0.07 ind:pas:3p; +rabroué rabrouer ver m s 0.40 2.84 0.05 0.41 par:pas; +rabrouée rabrouer ver f s 0.40 2.84 0.23 0.54 par:pas; +rabs rab nom m p 1.92 1.76 0.00 0.07 +rac rac adj 0.00 0.95 0.00 0.95 +racaille racaille nom f s 6.30 2.97 5.67 2.97 +racailles racaille nom f p 6.30 2.97 0.62 0.00 +raccommoda raccommoder ver 0.68 3.04 0.00 0.14 ind:pas:3s; +raccommodage raccommodage nom m s 0.04 0.61 0.04 0.47 +raccommodages raccommodage nom m p 0.04 0.61 0.00 0.14 +raccommodaient raccommoder ver 0.68 3.04 0.00 0.07 ind:imp:3p; +raccommodait raccommoder ver 0.68 3.04 0.01 0.41 ind:imp:3s; +raccommodant raccommoder ver 0.68 3.04 0.01 0.07 par:pre; +raccommode raccommoder ver 0.68 3.04 0.18 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccommodements raccommodement nom m p 0.00 0.07 0.00 0.07 +raccommodent raccommoder ver 0.68 3.04 0.14 0.00 ind:pre:3p; +raccommoder raccommoder ver 0.68 3.04 0.25 1.22 inf; +raccommodera raccommoder ver 0.68 3.04 0.00 0.07 ind:fut:3s; +raccommoderai raccommoder ver 0.68 3.04 0.02 0.00 ind:fut:1s; +raccommodeurs raccommodeur nom m p 0.00 0.07 0.00 0.07 +raccommodez raccommoder ver 0.68 3.04 0.00 0.07 ind:pre:2p; +raccommodions raccommoder ver 0.68 3.04 0.01 0.00 ind:imp:1p; +raccommodé raccommoder ver m s 0.68 3.04 0.04 0.54 par:pas; +raccommodée raccommoder ver f s 0.68 3.04 0.01 0.14 par:pas; +raccommodées raccommoder ver f p 0.68 3.04 0.00 0.07 par:pas; +raccommodés raccommoder ver m p 0.68 3.04 0.02 0.07 par:pas; +raccompagna raccompagner ver 25.90 14.39 0.01 2.09 ind:pas:3s; +raccompagnai raccompagner ver 25.90 14.39 0.00 0.34 ind:pas:1s; +raccompagnaient raccompagner ver 25.90 14.39 0.00 0.20 ind:imp:3p; +raccompagnais raccompagner ver 25.90 14.39 0.34 0.41 ind:imp:1s;ind:imp:2s; +raccompagnait raccompagner ver 25.90 14.39 0.30 1.42 ind:imp:3s; +raccompagnant raccompagner ver 25.90 14.39 0.16 0.74 par:pre; +raccompagne raccompagner ver 25.90 14.39 11.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccompagnent raccompagner ver 25.90 14.39 0.04 0.14 ind:pre:3p; +raccompagner raccompagner ver 25.90 14.39 6.60 3.65 inf; +raccompagnera raccompagner ver 25.90 14.39 0.51 0.07 ind:fut:3s; +raccompagnerai raccompagner ver 25.90 14.39 0.60 0.00 ind:fut:1s; +raccompagnerais raccompagner ver 25.90 14.39 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +raccompagnerait raccompagner ver 25.90 14.39 0.01 0.34 cnd:pre:3s; +raccompagneras raccompagner ver 25.90 14.39 0.02 0.07 ind:fut:2s; +raccompagnerez raccompagner ver 25.90 14.39 0.00 0.07 ind:fut:2p; +raccompagnes raccompagner ver 25.90 14.39 0.71 0.14 ind:pre:2s; +raccompagnez raccompagner ver 25.90 14.39 1.52 0.14 imp:pre:2p;ind:pre:2p; +raccompagnons raccompagner ver 25.90 14.39 0.23 0.00 imp:pre:1p;ind:pre:1p; +raccompagnèrent raccompagner ver 25.90 14.39 0.00 0.20 ind:pas:3p; +raccompagné raccompagner ver m s 25.90 14.39 1.16 1.08 par:pas; +raccompagnée raccompagner ver f s 25.90 14.39 1.65 0.61 par:pas; +raccompagnés raccompagner ver m p 25.90 14.39 0.00 0.14 par:pas; +raccord raccord nom m s 1.02 1.28 0.81 0.68 +raccordaient raccorder ver 0.73 2.64 0.02 0.14 ind:imp:3p; +raccordait raccorder ver 0.73 2.64 0.00 0.41 ind:imp:3s; +raccordant raccorder ver 0.73 2.64 0.03 0.14 par:pre; +raccorde raccorder ver 0.73 2.64 0.13 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccordement raccordement nom m s 0.20 0.27 0.09 0.14 +raccordements raccordement nom m p 0.20 0.27 0.11 0.14 +raccordent raccorder ver 0.73 2.64 0.00 0.14 ind:pre:3p; +raccorder raccorder ver 0.73 2.64 0.21 0.61 inf; +raccorderait raccorder ver 0.73 2.64 0.00 0.07 cnd:pre:3s; +raccordez raccorder ver 0.73 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +raccords raccord nom m p 1.02 1.28 0.21 0.61 +raccordé raccorder ver m s 0.73 2.64 0.23 0.41 par:pas; +raccordée raccorder ver f s 0.73 2.64 0.01 0.07 par:pas; +raccordées raccorder ver f p 0.73 2.64 0.01 0.00 par:pas; +raccordés raccorder ver m p 0.73 2.64 0.06 0.14 par:pas; +raccourci raccourci nom m s 5.78 4.32 4.57 3.24 +raccourcie raccourcir ver f s 2.46 5.95 0.16 0.54 par:pas; +raccourcies raccourcir ver f p 2.46 5.95 0.01 0.07 par:pas; +raccourcir raccourcir ver 2.46 5.95 1.09 1.62 inf; +raccourcira raccourcir ver 2.46 5.95 0.04 0.07 ind:fut:3s; +raccourciras raccourcir ver 2.46 5.95 0.01 0.00 ind:fut:2s; +raccourcirons raccourcir ver 2.46 5.95 0.00 0.07 ind:fut:1p; +raccourcis raccourci nom m p 5.78 4.32 1.21 1.08 +raccourcissaient raccourcir ver 2.46 5.95 0.00 0.20 ind:imp:3p; +raccourcissait raccourcir ver 2.46 5.95 0.01 0.20 ind:imp:3s; +raccourcissant raccourcir ver 2.46 5.95 0.10 0.61 par:pre; +raccourcisse raccourcir ver 2.46 5.95 0.01 0.07 sub:pre:1s;sub:pre:3s; +raccourcissement raccourcissement nom m s 0.01 0.27 0.01 0.27 +raccourcissent raccourcir ver 2.46 5.95 0.14 0.54 ind:pre:3p; +raccourcit raccourcir ver 2.46 5.95 0.23 0.68 ind:pre:3s;ind:pas:3s; +raccroc raccroc nom m s 0.00 0.47 0.00 0.34 +raccrocha raccrocher ver 28.09 26.08 0.02 5.07 ind:pas:3s; +raccrochage raccrochage nom m s 0.01 0.14 0.01 0.07 +raccrochages raccrochage nom m p 0.01 0.14 0.00 0.07 +raccrochai raccrocher ver 28.09 26.08 0.01 1.42 ind:pas:1s; +raccrochaient raccrocher ver 28.09 26.08 0.01 0.20 ind:imp:3p; +raccrochais raccrocher ver 28.09 26.08 0.12 0.27 ind:imp:1s;ind:imp:2s; +raccrochait raccrocher ver 28.09 26.08 0.29 0.95 ind:imp:3s; +raccrochant raccrocher ver 28.09 26.08 0.04 1.22 par:pre; +raccroche raccrocher ver 28.09 26.08 10.58 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +raccrochent raccrocher ver 28.09 26.08 0.49 0.14 ind:pre:3p; +raccrocher raccrocher ver 28.09 26.08 5.41 5.27 inf; +raccrochera raccrocher ver 28.09 26.08 0.04 0.00 ind:fut:3s; +raccrocherai raccrocher ver 28.09 26.08 0.13 0.00 ind:fut:1s; +raccrocheraient raccrocher ver 28.09 26.08 0.00 0.07 cnd:pre:3p; +raccrocherais raccrocher ver 28.09 26.08 0.02 0.00 cnd:pre:1s; +raccrocherait raccrocher ver 28.09 26.08 0.11 0.07 cnd:pre:3s; +raccrocheras raccrocher ver 28.09 26.08 0.04 0.00 ind:fut:2s; +raccroches raccrocher ver 28.09 26.08 0.53 0.20 ind:pre:2s; +raccrocheur raccrocheur adj m s 0.00 0.20 0.00 0.14 +raccrocheurs raccrocheur adj m p 0.00 0.20 0.00 0.07 +raccrochez raccrocher ver 28.09 26.08 3.49 0.20 imp:pre:2p;ind:pre:2p; +raccrochons raccrocher ver 28.09 26.08 0.03 0.00 imp:pre:1p;ind:pre:1p; +raccrochèrent raccrocher ver 28.09 26.08 0.00 0.07 ind:pas:3p; +raccroché raccrocher ver m s 28.09 26.08 6.67 5.00 par:pas; +raccrochée raccrocher ver f s 28.09 26.08 0.04 0.20 par:pas; +raccrochées raccrocher ver f p 28.09 26.08 0.00 0.07 par:pas; +raccrochés raccrocher ver m p 28.09 26.08 0.03 0.07 par:pas; +raccrocs raccroc nom m p 0.00 0.47 0.00 0.14 +raccusa raccuser ver 0.00 0.07 0.00 0.07 ind:pas:3s; +race race nom f s 30.56 34.93 27.09 28.72 +races race nom f p 30.56 34.93 3.46 6.22 +rachat rachat nom m s 1.79 1.01 1.75 0.95 +rachats rachat nom m p 1.79 1.01 0.04 0.07 +racheta racheter ver 17.33 12.91 0.00 0.20 ind:pas:3s; +rachetai racheter ver 17.33 12.91 0.00 0.07 ind:pas:1s; +rachetaient racheter ver 17.33 12.91 0.01 0.20 ind:imp:3p; +rachetait racheter ver 17.33 12.91 0.00 0.68 ind:imp:3s; +rachetant racheter ver 17.33 12.91 0.19 0.20 par:pre; +racheter racheter ver 17.33 12.91 9.30 6.08 ind:pre:2p;inf; +rachetez racheter ver 17.33 12.91 0.09 0.07 imp:pre:2p;ind:pre:2p; +rachetiez racheter ver 17.33 12.91 0.03 0.07 ind:imp:2p; +rachetât racheter ver 17.33 12.91 0.00 0.07 sub:imp:3s; +rachetèrent racheter ver 17.33 12.91 0.00 0.07 ind:pas:3p; +racheté racheter ver m s 17.33 12.91 3.77 1.22 par:pas; +rachetée racheter ver f s 17.33 12.91 0.60 0.41 par:pas; +rachetées racheter ver f p 17.33 12.91 0.00 0.14 par:pas; +rachetés racheter ver m p 17.33 12.91 0.32 0.47 par:pas; +rachianesthésie rachianesthésie nom f s 0.10 0.00 0.10 0.00 +rachidien rachidien adj m s 0.23 0.14 0.18 0.14 +rachidienne rachidien adj f s 0.23 0.14 0.04 0.00 +rachis rachis nom m 0.04 0.07 0.04 0.07 +rachitique rachitique adj s 0.14 0.61 0.11 0.47 +rachitiques rachitique adj p 0.14 0.61 0.03 0.14 +rachitisme rachitisme nom m s 0.05 0.14 0.05 0.14 +racho racho adj s 0.03 0.07 0.03 0.07 +rachète racheter ver 17.33 12.91 1.48 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rachètent racheter ver 17.33 12.91 0.20 0.41 ind:pre:3p; +rachètera racheter ver 17.33 12.91 0.64 0.41 ind:fut:3s; +rachèterai racheter ver 17.33 12.91 0.47 0.34 ind:fut:1s; +rachèterais racheter ver 17.33 12.91 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +rachèterait racheter ver 17.33 12.91 0.03 0.34 cnd:pre:3s; +rachèterez racheter ver 17.33 12.91 0.14 0.00 ind:fut:2p; +rachèteront racheter ver 17.33 12.91 0.01 0.00 ind:fut:3p; +racial racial adj m s 3.08 1.35 0.66 0.07 +raciale racial adj f s 3.08 1.35 1.50 0.61 +racialement racialement adv 0.02 0.14 0.02 0.14 +raciales racial adj f p 3.08 1.35 0.71 0.47 +raciaux racial adj m p 3.08 1.35 0.22 0.20 +racinait raciner ver 0.00 0.34 0.00 0.07 ind:imp:3s; +racine racine nom f s 12.53 31.96 5.17 11.01 +raciner raciner ver 0.00 0.34 0.00 0.07 inf; +racines racine nom f p 12.53 31.96 7.36 20.95 +racingman racingman nom m s 0.00 0.07 0.00 0.07 +racinienne racinien adj f s 0.00 0.20 0.00 0.07 +raciniennes racinien adj f p 0.00 0.20 0.00 0.07 +raciniens racinien adj m p 0.00 0.20 0.00 0.07 +racinée raciner ver f s 0.00 0.34 0.00 0.07 par:pas; +racinées raciner ver f p 0.00 0.34 0.00 0.07 par:pas; +racinés raciner ver m p 0.00 0.34 0.00 0.07 par:pas; +racisme racisme nom m s 2.09 2.97 2.09 2.77 +racismes racisme nom m p 2.09 2.97 0.00 0.20 +raciste raciste adj s 4.97 3.45 3.89 2.03 +racistes raciste nom p 3.54 2.70 1.18 1.28 +rack rack nom m s 0.25 0.07 0.25 0.07 +racket racket nom m s 2.33 0.68 2.07 0.68 +rackets racket nom m p 2.33 0.68 0.27 0.00 +rackette racketter ver 0.23 0.00 0.05 0.00 ind:pre:3s; +racketter racketter ver 0.23 0.00 0.16 0.00 inf; +racketteur racketteur nom m s 0.22 0.00 0.22 0.00 +rackettez racketter ver 0.23 0.00 0.01 0.00 ind:pre:2p; +rackettons racketter ver 0.23 0.00 0.01 0.00 ind:pre:1p; +racketté racketter ver m s 0.23 0.00 0.01 0.00 par:pas; +racla racler ver 1.36 12.50 0.00 1.89 ind:pas:3s; +raclages raclage nom m p 0.00 0.07 0.00 0.07 +raclaient racler ver 1.36 12.50 0.00 0.54 ind:imp:3p; +raclais racler ver 1.36 12.50 0.01 0.20 ind:imp:1s; +raclait racler ver 1.36 12.50 0.04 2.09 ind:imp:3s; +raclant racler ver 1.36 12.50 0.06 1.49 par:pre; +raclante raclant adj f s 0.00 0.27 0.00 0.07 +racle racler ver 1.36 12.50 0.26 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raclement raclement nom m s 0.07 2.09 0.07 1.15 +raclements raclement nom m p 0.07 2.09 0.00 0.95 +raclent racler ver 1.36 12.50 0.02 0.61 ind:pre:3p; +racler racler ver 1.36 12.50 0.51 2.03 inf; +raclerai racler ver 1.36 12.50 0.01 0.00 ind:fut:1s; +racleras racler ver 1.36 12.50 0.01 0.00 ind:fut:2s; +racles racler ver 1.36 12.50 0.01 0.07 ind:pre:2s; +raclette raclette nom f s 1.13 0.81 1.13 0.81 +racleur racleur nom m s 0.04 0.00 0.03 0.00 +racleuse racleur nom f s 0.04 0.00 0.01 0.00 +racloir racloir nom m s 0.25 0.07 0.25 0.07 +raclons raclon nom m p 0.01 0.07 0.01 0.07 +raclèrent racler ver 1.36 12.50 0.00 0.20 ind:pas:3p; +raclé racler ver m s 1.36 12.50 0.43 0.95 par:pas; +raclée raclée nom f s 6.88 3.24 6.43 2.57 +raclées raclée nom f p 6.88 3.24 0.45 0.68 +raclure raclure nom f s 1.73 1.49 1.48 0.88 +raclures raclure nom f p 1.73 1.49 0.25 0.61 +raclés racler ver m p 1.36 12.50 0.00 0.20 par:pas; +racolage racolage nom m s 0.57 0.61 0.57 0.54 +racolages racolage nom m p 0.57 0.61 0.00 0.07 +racolaient racoler ver 0.59 1.42 0.00 0.07 ind:imp:3p; +racolais racoler ver 0.59 1.42 0.00 0.07 ind:imp:1s; +racolait racoler ver 0.59 1.42 0.07 0.20 ind:imp:3s; +racolant racoler ver 0.59 1.42 0.01 0.07 par:pre; +racole racoler ver 0.59 1.42 0.12 0.14 ind:pre:1s;ind:pre:3s; +racolent racoler ver 0.59 1.42 0.02 0.14 ind:pre:3p; +racoler racoler ver 0.59 1.42 0.16 0.54 inf; +racoles racoler ver 0.59 1.42 0.06 0.07 ind:pre:2s; +racoleur racoleur adj m s 0.33 0.41 0.15 0.20 +racoleurs racoleur nom m p 0.09 0.14 0.03 0.07 +racoleuse racoleur adj f s 0.33 0.41 0.05 0.07 +racoleuses racoleur adj f p 0.33 0.41 0.12 0.14 +racolé racoler ver m s 0.59 1.42 0.16 0.14 par:pas; +raconta raconter ver 253.84 261.89 1.08 18.04 ind:pas:3s; +racontable racontable adj f s 0.12 0.20 0.10 0.14 +racontables racontable adj f p 0.12 0.20 0.02 0.07 +racontai raconter ver 253.84 261.89 0.26 3.11 ind:pas:1s; +racontaient raconter ver 253.84 261.89 1.05 4.05 ind:imp:3p; +racontais raconter ver 253.84 261.89 2.41 5.00 ind:imp:1s;ind:imp:2s; +racontait raconter ver 253.84 261.89 4.50 29.46 ind:imp:3s; +racontant raconter ver 253.84 261.89 0.93 6.15 par:pre; +racontar racontar nom m s 1.11 2.23 0.02 0.47 +racontars racontar nom m p 1.11 2.23 1.08 1.76 +racontas raconter ver 253.84 261.89 0.00 0.07 ind:pas:2s; +raconte raconter ver 253.84 261.89 78.06 54.12 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +racontent raconter ver 253.84 261.89 4.32 6.35 ind:pre:3p;sub:pre:3p; +raconter raconter ver 253.84 261.89 57.79 64.86 inf;; +racontera raconter ver 253.84 261.89 2.02 1.82 ind:fut:3s; +raconterai raconter ver 253.84 261.89 6.80 5.07 ind:fut:1s; +raconteraient raconter ver 253.84 261.89 0.03 0.20 cnd:pre:3p; +raconterais raconter ver 253.84 261.89 0.63 0.54 cnd:pre:1s;cnd:pre:2s; +raconterait raconter ver 253.84 261.89 0.08 2.09 cnd:pre:3s; +raconteras raconter ver 253.84 261.89 3.19 1.28 ind:fut:2s; +raconterez raconter ver 253.84 261.89 0.96 0.95 ind:fut:2p; +raconterons raconter ver 253.84 261.89 0.14 0.14 ind:fut:1p; +raconteront raconter ver 253.84 261.89 0.13 0.07 ind:fut:3p; +racontes raconter ver 253.84 261.89 34.95 7.23 ind:pre:1p;ind:pre:2s;sub:pre:2s; +raconteur raconteur nom m s 0.18 0.14 0.17 0.00 +raconteuse raconteur nom f s 0.18 0.14 0.01 0.14 +racontez raconter ver 253.84 261.89 17.02 5.74 imp:pre:2p;ind:pre:2p; +racontiez raconter ver 253.84 261.89 0.45 0.61 ind:imp:2p; +racontions raconter ver 253.84 261.89 0.04 0.47 ind:imp:1p; +racontons raconter ver 253.84 261.89 0.47 0.27 imp:pre:1p;ind:pre:1p; +racontât raconter ver 253.84 261.89 0.00 0.07 sub:imp:3s; +racontèrent raconter ver 253.84 261.89 0.03 1.22 ind:pas:3p; +raconté raconter ver m s 253.84 261.89 33.87 38.18 par:pas; +racontée raconter ver f s 253.84 261.89 1.93 2.91 par:pas; +racontées raconter ver f p 253.84 261.89 0.49 1.22 par:pas; +racontés raconter ver m p 253.84 261.89 0.24 0.61 par:pas; +racorni racornir ver m s 0.59 3.45 0.40 1.15 par:pas; +racornie racornir ver f s 0.59 3.45 0.02 0.95 par:pas; +racornies racornir ver f p 0.59 3.45 0.00 0.54 par:pas; +racornir racornir ver 0.59 3.45 0.02 0.07 inf; +racornis racornir ver m p 0.59 3.45 0.00 0.41 par:pas; +racornissait racornir ver 0.59 3.45 0.00 0.14 ind:imp:3s; +racornissent racornir ver 0.59 3.45 0.14 0.07 ind:pre:3p; +racornit racornir ver 0.59 3.45 0.01 0.14 ind:pre:3s;ind:pas:3s; +racé racé adj m s 0.07 1.69 0.03 0.81 +racée racé adj f s 0.07 1.69 0.01 0.68 +racés racé adj m p 0.07 1.69 0.03 0.20 +rad rad nom m s 0.20 0.07 0.18 0.07 +radôme radôme nom m s 0.01 0.00 0.01 0.00 +rada rader ver 0.47 0.61 0.02 0.00 ind:pas:3s; +radada radada nom m s 0.00 0.07 0.00 0.07 +radar radar nom m s 10.36 2.70 8.05 1.96 +radars radar nom m p 10.36 2.70 2.31 0.74 +radasse rader ver 0.47 0.61 0.30 0.54 sub:imp:1s; +radasses rader ver 0.47 0.61 0.01 0.07 sub:imp:2s; +rade rade nom f s 2.33 10.88 2.18 9.26 +radeau_radar radeau_radar nom m s 0.00 0.07 0.00 0.07 +radeau radeau nom m s 3.27 5.20 2.97 4.32 +radeaux radeau nom m p 3.27 5.20 0.30 0.88 +rader rader ver 0.47 0.61 0.14 0.00 inf; +rades rade nom f p 2.33 10.88 0.16 1.62 +radeuse radeuse nom f s 0.00 0.34 0.00 0.27 +radeuses radeuse nom f p 0.00 0.34 0.00 0.07 +radial radial adj m s 0.34 0.34 0.12 0.00 +radiale radial adj f s 0.34 0.34 0.19 0.27 +radiales radial adj f p 0.34 0.34 0.01 0.07 +radiant radiant nom m s 0.02 0.00 0.02 0.00 +radiante radiant adj f s 0.02 0.14 0.01 0.07 +radiateur radiateur nom m s 3.65 7.43 3.02 6.35 +radiateurs radiateur nom m p 3.65 7.43 0.63 1.08 +radiation radiation nom f s 6.89 0.74 2.71 0.34 +radiations radiation nom f p 6.89 0.74 4.17 0.41 +radiative radiatif adj f s 0.01 0.00 0.01 0.00 +radiaux radial adj m p 0.34 0.34 0.02 0.00 +radical_socialisme radical_socialisme nom m s 0.00 0.27 0.00 0.27 +radical_socialiste radical_socialiste adj m s 0.00 0.34 0.00 0.34 +radical radical adj m s 6.25 8.11 2.96 3.51 +radicale_socialiste radicale_socialiste nom f s 0.00 0.20 0.00 0.20 +radicale radical adj f s 6.25 8.11 1.75 2.57 +radicalement radicalement adv 0.99 3.65 0.99 3.65 +radicales radical adj f p 6.25 8.11 0.33 0.27 +radicalisation radicalisation nom f s 0.10 0.14 0.10 0.14 +radicaliser radicaliser ver 0.02 0.00 0.01 0.00 inf; +radicalisme radicalisme nom m s 0.02 0.47 0.02 0.47 +radicalisé radicaliser ver m s 0.02 0.00 0.01 0.00 par:pas; +radical_socialiste radical_socialiste nom m p 0.00 0.34 0.00 0.27 +radicaux radical adj m p 6.25 8.11 1.22 1.76 +radicelles radicelle nom f p 0.00 0.74 0.00 0.74 +radiculaire radiculaire adj s 0.16 0.07 0.16 0.07 +radicule radicule nom f s 0.01 0.07 0.01 0.00 +radicules radicule nom f p 0.01 0.07 0.00 0.07 +radier radier ver 1.33 0.27 0.20 0.07 inf; +radiers radier nom m p 0.03 0.14 0.00 0.14 +radiesthésiste radiesthésiste nom s 0.14 0.00 0.14 0.00 +radieuse radieux adj f s 3.88 12.09 1.47 4.39 +radieusement radieusement adv 0.01 0.20 0.01 0.20 +radieuses radieux adj f p 3.88 12.09 0.22 1.15 +radieux radieux adj m 3.88 12.09 2.19 6.55 +radin radin adj m s 3.51 1.55 2.69 1.28 +radinait radiner ver 0.29 2.03 0.00 0.20 ind:imp:3s; +radine radin adj f s 3.51 1.55 0.50 0.20 +radinent radiner ver 0.29 2.03 0.01 0.47 ind:pre:3p; +radiner radiner ver 0.29 2.03 0.09 0.20 inf; +radinerie radinerie nom f s 0.02 0.07 0.02 0.07 +radines radin nom f p 1.10 0.34 0.10 0.00 +radinez radiner ver 0.29 2.03 0.00 0.07 imp:pre:2p; +radins radin adj m p 3.51 1.55 0.31 0.07 +radiné radiner ver m s 0.29 2.03 0.14 0.41 par:pas; +radinée radiner ver f s 0.29 2.03 0.02 0.07 par:pas; +radio_isotope radio_isotope nom m s 0.04 0.00 0.04 0.00 +radio_réveil radio_réveil nom m s 0.10 0.14 0.10 0.14 +radio_taxi radio_taxi nom m s 0.14 0.07 0.14 0.07 +radio radio nom s 78.23 55.00 71.31 50.54 +radioactif radioactif adj m s 2.65 0.68 1.11 0.47 +radioactifs radioactif adj m p 2.65 0.68 0.54 0.07 +radioactive radioactif adj f s 2.65 0.68 0.65 0.07 +radioactives radioactif adj f p 2.65 0.68 0.35 0.07 +radioactivité radioactivité nom f s 0.86 0.07 0.86 0.07 +radioamateur radioamateur nom m s 0.01 0.00 0.01 0.00 +radioastronome radioastronome nom s 0.01 0.00 0.01 0.00 +radiobalisage radiobalisage nom m s 0.01 0.00 0.01 0.00 +radiobalise radiobalise nom f s 0.07 0.00 0.07 0.00 +radiocassette radiocassette nom f s 0.02 0.00 0.02 0.00 +radiodiffusion radiodiffusion nom f s 0.01 0.14 0.01 0.14 +radiodiffusé radiodiffuser ver m s 0.03 0.68 0.03 0.47 par:pas; +radiodiffusée radiodiffuser ver f s 0.03 0.68 0.00 0.14 par:pas; +radiodiffusées radiodiffuser ver f p 0.03 0.68 0.00 0.07 par:pas; +radiogoniomètre radiogoniomètre nom m s 0.01 0.00 0.01 0.00 +radiogoniométrique radiogoniométrique adj s 0.10 0.00 0.10 0.00 +radiogramme radiogramme nom m s 0.11 0.07 0.11 0.00 +radiogrammes radiogramme nom m p 0.11 0.07 0.00 0.07 +radiographiant radiographier ver 0.10 0.34 0.00 0.07 par:pre; +radiographie radiographie nom f s 0.93 0.88 0.79 0.34 +radiographient radiographier ver 0.10 0.34 0.00 0.07 ind:pre:3p; +radiographier radiographier ver 0.10 0.34 0.04 0.07 inf; +radiographies radiographie nom f p 0.93 0.88 0.14 0.54 +radiographique radiographique adj f s 0.01 0.00 0.01 0.00 +radiographié radiographier ver m s 0.10 0.34 0.03 0.07 par:pas; +radiographiée radiographier ver f s 0.10 0.34 0.01 0.00 par:pas; +radiographiés radiographier ver m p 0.10 0.34 0.00 0.07 par:pas; +radioguidage radioguidage nom m s 0.02 0.07 0.02 0.07 +radioguidera radioguider ver 0.01 0.00 0.01 0.00 ind:fut:3s; +radiologie radiologie nom f s 1.16 0.07 1.16 0.07 +radiologique radiologique adj f s 0.09 0.07 0.09 0.00 +radiologiques radiologique adj f p 0.09 0.07 0.00 0.07 +radiologiste radiologiste nom s 0.05 0.00 0.05 0.00 +radiologue radiologue nom s 0.55 0.27 0.51 0.20 +radiologues radiologue nom p 0.55 0.27 0.04 0.07 +radiomètre radiomètre nom m s 0.01 0.07 0.01 0.00 +radiomètres radiomètre nom m p 0.01 0.07 0.00 0.07 +radiométrie radiométrie nom f s 0.01 0.00 0.01 0.00 +radiophare radiophare nom m s 0.01 0.07 0.01 0.07 +radiophonie radiophonie nom f s 0.00 0.27 0.00 0.27 +radiophonique radiophonique adj s 0.78 1.49 0.76 0.68 +radiophoniques radiophonique adj p 0.78 1.49 0.02 0.81 +radioréveil radioréveil nom m s 0.01 0.00 0.01 0.00 +radios radio nom p 78.23 55.00 6.92 4.46 +radioscopie radioscopie nom f s 0.03 0.14 0.03 0.14 +radioscopique radioscopique adj f s 0.01 0.07 0.01 0.00 +radioscopiques radioscopique adj p 0.01 0.07 0.00 0.07 +radiosonde radiosonde nom f s 0.01 0.00 0.01 0.00 +radiothérapie radiothérapie nom f s 0.21 0.00 0.21 0.00 +radiotélescope radiotélescope nom m s 0.10 0.00 0.09 0.00 +radiotélescopes radiotélescope nom m p 0.10 0.00 0.01 0.00 +radiotélégraphie radiotélégraphie nom f s 0.00 0.07 0.00 0.07 +radiotélégraphiste radiotélégraphiste nom s 0.00 0.14 0.00 0.14 +radiotéléphone radiotéléphone nom m s 0.03 0.00 0.02 0.00 +radiotéléphones radiotéléphone nom m p 0.03 0.00 0.01 0.00 +radiotéléphonie radiotéléphonie nom f s 0.10 0.00 0.10 0.00 +radiotéléphonique radiotéléphonique adj s 0.01 0.00 0.01 0.00 +radioélectrique radioélectrique adj s 0.01 0.00 0.01 0.00 +radioélément radioélément nom m s 0.01 0.00 0.01 0.00 +radis radis nom m 1.81 3.11 1.81 3.11 +radié radier ver m s 1.33 0.27 0.98 0.14 par:pas; +radiée radier ver f s 1.33 0.27 0.09 0.07 par:pas; +radium radium nom m s 0.32 0.07 0.32 0.07 +radiés radié adj m p 0.18 0.07 0.14 0.00 +radius radius nom m 0.15 0.07 0.15 0.07 +radja radja nom m s 0.00 0.07 0.00 0.07 +radjah radjah nom m s 0.00 0.14 0.00 0.07 +radjahs radjah nom m p 0.00 0.14 0.00 0.07 +radon radon nom m s 0.07 0.00 0.07 0.00 +radotage radotage nom m s 0.36 0.81 0.28 0.34 +radotages radotage nom m p 0.36 0.81 0.09 0.47 +radotait radoter ver 2.04 2.30 0.00 0.41 ind:imp:3s; +radotant radoter ver 2.04 2.30 0.03 0.27 par:pre; +radote radoter ver 2.04 2.30 0.69 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +radotent radoter ver 2.04 2.30 0.04 0.34 ind:pre:3p; +radoter radoter ver 2.04 2.30 0.59 0.41 inf; +radotes radoter ver 2.04 2.30 0.60 0.07 ind:pre:2s; +radoteur radoteur nom m s 0.22 0.27 0.21 0.07 +radoteurs radoteur nom m p 0.22 0.27 0.01 0.07 +radoteuses radoteur nom f p 0.22 0.27 0.00 0.14 +radotez radoter ver 2.04 2.30 0.10 0.00 ind:pre:2p; +radoté radoter ver m s 2.04 2.30 0.00 0.14 par:pas; +radoub radoub nom m s 0.03 0.41 0.03 0.41 +radoubait radouber ver 0.11 0.14 0.00 0.07 ind:imp:3s; +radouber radouber ver 0.11 0.14 0.11 0.07 inf; +radoubeur radoubeur nom m s 0.00 0.07 0.00 0.07 +radouci radoucir ver m s 0.29 2.09 0.12 0.54 par:pas; +radoucie radoucir ver f s 0.29 2.09 0.03 0.61 par:pas; +radoucir radoucir ver 0.29 2.09 0.07 0.00 inf; +radouciraient radoucir ver 0.29 2.09 0.00 0.07 cnd:pre:3p; +radoucis radoucir ver m p 0.29 2.09 0.04 0.14 ind:pre:1s;ind:pre:2s;par:pas; +radoucissais radoucir ver 0.29 2.09 0.00 0.07 ind:imp:1s; +radoucissait radoucir ver 0.29 2.09 0.00 0.07 ind:imp:3s; +radoucissement radoucissement nom m s 0.00 0.07 0.00 0.07 +radoucit radoucir ver 0.29 2.09 0.03 0.61 ind:pre:3s;ind:pas:3s; +rads rad nom m p 0.20 0.07 0.02 0.00 +rafa rafer ver 2.44 0.00 2.11 0.00 ind:pas:3s; +rafale rafale nom f s 1.59 19.46 0.79 8.85 +rafales rafale nom f p 1.59 19.46 0.81 10.61 +rafe rafer ver 2.44 0.00 0.33 0.00 imp:pre:2s; +raff raff nom m s 0.09 0.00 0.09 0.00 +raffermi raffermir ver m s 0.23 1.82 0.01 0.14 par:pas; +raffermie raffermir ver f s 0.23 1.82 0.01 0.27 par:pas; +raffermir raffermir ver 0.23 1.82 0.18 0.68 inf; +raffermira raffermir ver 0.23 1.82 0.03 0.00 ind:fut:3s; +raffermis raffermir ver m p 0.23 1.82 0.00 0.07 par:pas; +raffermissait raffermir ver 0.23 1.82 0.00 0.20 ind:imp:3s; +raffermissent raffermir ver 0.23 1.82 0.00 0.07 ind:pre:3p; +raffermit raffermir ver 0.23 1.82 0.00 0.41 ind:pre:3s;ind:pas:3s; +raffinage raffinage nom m s 0.01 0.07 0.01 0.07 +raffinait raffiner ver 1.06 2.03 0.00 0.14 ind:imp:3s; +raffinant raffiner ver 1.06 2.03 0.00 0.20 par:pre; +raffine raffiner ver 1.06 2.03 0.05 0.20 imp:pre:2s;ind:pre:3s; +raffinement raffinement nom m s 0.89 7.36 0.73 5.07 +raffinements raffinement nom m p 0.89 7.36 0.16 2.30 +raffiner raffiner ver 1.06 2.03 0.06 0.20 inf; +raffinerie raffinerie nom f s 0.85 1.01 0.73 0.88 +raffineries raffinerie nom f p 0.85 1.01 0.12 0.14 +raffineur raffineur nom m s 0.03 0.00 0.03 0.00 +raffiné raffiné adj m s 4.34 6.15 1.80 2.70 +raffinée raffiné adj f s 4.34 6.15 1.23 1.55 +raffinées raffiné adj f p 4.34 6.15 0.33 0.61 +raffinés raffiné adj m p 4.34 6.15 0.97 1.28 +raffolaient raffoler ver 3.16 3.85 0.01 0.14 ind:imp:3p; +raffolais raffoler ver 3.16 3.85 0.02 0.20 ind:imp:1s; +raffolait raffoler ver 3.16 3.85 0.19 1.62 ind:imp:3s; +raffolant raffoler ver 3.16 3.85 0.01 0.00 par:pre; +raffole raffoler ver 3.16 3.85 1.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raffolent raffoler ver 3.16 3.85 0.94 0.68 ind:pre:3p; +raffoler raffoler ver 3.16 3.85 0.05 0.27 inf; +raffoleront raffoler ver 3.16 3.85 0.01 0.07 ind:fut:3p; +raffoles raffoler ver 3.16 3.85 0.23 0.07 ind:pre:2s; +raffolez raffoler ver 3.16 3.85 0.04 0.00 ind:pre:2p; +raffoliez raffoler ver 3.16 3.85 0.00 0.07 ind:imp:2p; +raffolé raffoler ver m s 3.16 3.85 0.02 0.00 par:pas; +raffut raffut nom m s 1.56 1.69 1.56 1.49 +raffuts raffut nom m p 1.56 1.69 0.01 0.20 +rafiau rafiau nom m s 0.00 0.07 0.00 0.07 +rafiot rafiot nom m s 1.08 1.42 0.91 1.22 +rafiots rafiot nom m p 1.08 1.42 0.17 0.20 +rafistola rafistoler ver 0.61 3.31 0.00 0.20 ind:pas:3s; +rafistolage rafistolage nom m s 0.05 0.27 0.04 0.14 +rafistolages rafistolage nom m p 0.05 0.27 0.01 0.14 +rafistolaient rafistoler ver 0.61 3.31 0.00 0.27 ind:imp:3p; +rafistolais rafistoler ver 0.61 3.31 0.01 0.07 ind:imp:1s; +rafistolait rafistoler ver 0.61 3.31 0.01 0.27 ind:imp:3s; +rafistole rafistoler ver 0.61 3.31 0.19 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rafistoler rafistoler ver 0.61 3.31 0.12 0.34 inf; +rafistolez rafistoler ver 0.61 3.31 0.05 0.00 imp:pre:2p;ind:pre:2p; +rafistolé rafistoler ver m s 0.61 3.31 0.13 0.74 par:pas; +rafistolée rafistoler ver f s 0.61 3.31 0.04 0.54 par:pas; +rafistolées rafistoler ver f p 0.61 3.31 0.04 0.20 par:pas; +rafistolés rafistoler ver m p 0.61 3.31 0.01 0.41 par:pas; +rafla rafler ver 3.56 5.20 0.01 0.41 ind:pas:3s; +raflais rafler ver 3.56 5.20 0.01 0.14 ind:imp:1s; +raflait rafler ver 3.56 5.20 0.05 0.27 ind:imp:3s; +raflant rafler ver 3.56 5.20 0.01 0.20 par:pre; +rafle rafle nom f s 1.23 3.11 0.78 1.96 +raflent rafler ver 3.56 5.20 0.41 0.07 ind:pre:3p; +rafler rafler ver 3.56 5.20 0.81 1.42 inf; +raflera rafler ver 3.56 5.20 0.06 0.07 ind:fut:3s; +raflerai rafler ver 3.56 5.20 0.02 0.00 ind:fut:1s; +raflerait rafler ver 3.56 5.20 0.02 0.07 cnd:pre:3s; +rafles rafle nom f p 1.23 3.11 0.46 1.15 +raflez rafler ver 3.56 5.20 0.04 0.00 imp:pre:2p;ind:pre:2p; +raflé rafler ver m s 3.56 5.20 1.09 1.49 par:pas; +raflée rafler ver f s 3.56 5.20 0.16 0.07 par:pas; +raflées rafler ver f p 3.56 5.20 0.03 0.14 par:pas; +raflés rafler ver m p 3.56 5.20 0.00 0.27 par:pas; +rafraîchi rafraîchir ver m s 8.94 10.41 0.44 1.01 par:pas; +rafraîchie rafraîchir ver f s 8.94 10.41 0.04 0.47 par:pas; +rafraîchies rafraîchir ver f p 8.94 10.41 0.00 0.27 par:pas; +rafraîchir rafraîchir ver 8.94 10.41 4.61 4.19 inf; +rafraîchira rafraîchir ver 8.94 10.41 0.25 0.14 ind:fut:3s; +rafraîchirais rafraîchir ver 8.94 10.41 0.01 0.00 cnd:pre:1s; +rafraîchirait rafraîchir ver 8.94 10.41 0.06 0.07 cnd:pre:3s; +rafraîchirent rafraîchir ver 8.94 10.41 0.00 0.07 ind:pas:3p; +rafraîchiront rafraîchir ver 8.94 10.41 0.04 0.00 ind:fut:3p; +rafraîchis rafraîchir ver m p 8.94 10.41 0.90 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rafraîchissaient rafraîchir ver 8.94 10.41 0.00 0.34 ind:imp:3p; +rafraîchissais rafraîchir ver 8.94 10.41 0.14 0.14 ind:imp:1s;ind:imp:2s; +rafraîchissait rafraîchir ver 8.94 10.41 0.02 1.08 ind:imp:3s; +rafraîchissant rafraîchissant adj m s 0.72 2.16 0.50 1.08 +rafraîchissante rafraîchissant adj f s 0.72 2.16 0.16 0.47 +rafraîchissantes rafraîchissant adj f p 0.72 2.16 0.03 0.34 +rafraîchissants rafraîchissant adj m p 0.72 2.16 0.02 0.27 +rafraîchisse rafraîchir ver 8.94 10.41 0.49 0.14 sub:pre:1s;sub:pre:3s; +rafraîchissement rafraîchissement nom m s 2.48 1.62 1.39 0.54 +rafraîchissements rafraîchissement nom m p 2.48 1.62 1.09 1.08 +rafraîchissent rafraîchir ver 8.94 10.41 0.01 0.14 ind:pre:3p; +rafraîchisseur rafraîchisseur nom m s 0.00 0.07 0.00 0.07 +rafraîchissez rafraîchir ver 8.94 10.41 0.19 0.00 imp:pre:2p;ind:pre:2p; +rafraîchissoir rafraîchissoir nom m s 0.00 1.28 0.00 1.01 +rafraîchissoirs rafraîchissoir nom m p 0.00 1.28 0.00 0.27 +rafraîchissons rafraîchir ver 8.94 10.41 0.12 0.00 imp:pre:1p; +rafraîchit rafraîchir ver 8.94 10.41 1.50 1.35 ind:pre:3s;ind:pas:3s; +raft raft nom m s 0.10 0.07 0.10 0.07 +rafting rafting nom m s 0.22 0.00 0.22 0.00 +rag rag nom m s 0.01 0.00 0.01 0.00 +raga raga nom m s 0.10 0.00 0.10 0.00 +ragaillardi ragaillardir ver m s 0.06 2.57 0.01 1.35 par:pas; +ragaillardie ragaillardir ver f s 0.06 2.57 0.00 0.27 par:pas; +ragaillardir ragaillardir ver 0.06 2.57 0.02 0.07 inf; +ragaillardira ragaillardir ver 0.06 2.57 0.00 0.07 ind:fut:3s; +ragaillardirait ragaillardir ver 0.06 2.57 0.00 0.07 cnd:pre:3s; +ragaillardis ragaillardir ver m p 0.06 2.57 0.02 0.20 ind:pas:2s;par:pas; +ragaillardissaient ragaillardir ver 0.06 2.57 0.00 0.07 ind:imp:3p; +ragaillardisse ragaillardir ver 0.06 2.57 0.00 0.07 sub:pre:1s; +ragaillardit ragaillardir ver 0.06 2.57 0.00 0.41 ind:pre:3s;ind:pas:3s; +rage rage nom f s 15.97 45.34 15.54 44.12 +ragea rager ver 0.71 2.64 0.00 0.81 ind:pas:3s; +rageaient rager ver 0.71 2.64 0.00 0.14 ind:imp:3p; +rageais rager ver 0.71 2.64 0.01 0.20 ind:imp:1s; +rageait rager ver 0.71 2.64 0.02 0.54 ind:imp:3s; +rageant rageant adj m s 0.25 0.20 0.25 0.20 +ragent rager ver 0.71 2.64 0.02 0.00 ind:pre:3p; +rager rager ver 0.71 2.64 0.09 0.27 inf; +rages rage nom f p 15.97 45.34 0.44 1.22 +rageur rageur adj m s 0.07 9.26 0.05 4.46 +rageurs rageur adj m p 0.07 9.26 0.01 1.62 +rageuse rageur adj f s 0.07 9.26 0.01 2.57 +rageusement rageusement adv 0.03 5.61 0.03 5.61 +rageuses rageur adj f p 0.07 9.26 0.00 0.61 +ragez rager ver 0.71 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +raglan raglan nom m s 0.00 0.54 0.00 0.47 +raglans raglan nom m p 0.00 0.54 0.00 0.07 +ragnagnas ragnagnas nom m p 0.21 0.07 0.21 0.07 +ragoût ragoût nom m s 3.44 4.46 3.37 3.65 +ragoûtant ragoûtant adj m s 0.08 1.22 0.04 0.61 +ragoûtante ragoûtant adj f s 0.08 1.22 0.01 0.14 +ragoûtantes ragoûtant adj f p 0.08 1.22 0.01 0.20 +ragoûtants ragoûtant adj m p 0.08 1.22 0.01 0.27 +ragoûts ragoût nom m p 3.44 4.46 0.07 0.81 +ragondins ragondin nom m p 0.28 0.14 0.28 0.14 +ragot ragot nom m s 5.67 4.32 0.07 0.54 +ragota ragoter ver 0.04 0.27 0.00 0.07 ind:pas:3s; +ragotait ragoter ver 0.04 0.27 0.00 0.07 ind:imp:3s; +ragote ragoter ver 0.04 0.27 0.01 0.00 ind:pre:3s; +ragoter ragoter ver 0.04 0.27 0.03 0.14 inf; +ragots ragot nom m p 5.67 4.32 5.60 3.78 +ragougnasse ragougnasse nom f s 0.23 0.14 0.23 0.07 +ragougnasses ragougnasse nom f p 0.23 0.14 0.00 0.07 +ragrafait ragrafer ver 0.00 0.20 0.00 0.07 ind:imp:3s; +ragrafant ragrafer ver 0.00 0.20 0.00 0.07 par:pre; +ragrafe ragrafer ver 0.00 0.20 0.00 0.07 ind:pre:1s; +ragtime ragtime nom m s 0.13 0.00 0.13 0.00 +rahat_lokoum rahat_lokoum nom m s 0.00 0.47 0.00 0.41 +rahat_lokoum rahat_lokoum nom m p 0.00 0.47 0.00 0.07 +rahat_loukoum rahat_loukoum nom m p 0.00 0.07 0.00 0.07 +rai rai nom m s 2.50 5.41 1.57 3.31 +raid raid nom m s 3.98 2.84 2.82 1.62 +raide raide adj s 7.76 39.39 6.61 24.53 +raidement raidement adv 0.00 0.14 0.00 0.14 +raider raider nom m s 1.57 0.41 0.90 0.00 +raiders raider nom m p 1.57 0.41 0.67 0.41 +raides raide adj p 7.76 39.39 1.15 14.86 +raideur raideur nom f s 0.62 7.03 0.62 7.03 +raidi raidir ver m s 0.57 19.59 0.03 3.04 par:pas; +raidie raidir ver f s 0.57 19.59 0.00 2.09 par:pas; +raidies raidir ver f p 0.57 19.59 0.01 1.49 par:pas; +raidillon raidillon nom m s 0.00 4.12 0.00 3.31 +raidillons raidillon nom m p 0.00 4.12 0.00 0.81 +raidir raidir ver 0.57 19.59 0.17 1.55 inf; +raidirent raidir ver 0.57 19.59 0.00 0.20 ind:pas:3p; +raidis raidir ver m p 0.57 19.59 0.03 2.23 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +raidissaient raidir ver 0.57 19.59 0.00 0.27 ind:imp:3p; +raidissais raidir ver 0.57 19.59 0.00 0.20 ind:imp:1s; +raidissait raidir ver 0.57 19.59 0.00 1.49 ind:imp:3s; +raidissant raidir ver 0.57 19.59 0.00 0.68 par:pre; +raidisse raidir ver 0.57 19.59 0.01 0.34 sub:pre:1s;sub:pre:3s; +raidissement raidissement nom m s 0.00 0.61 0.00 0.47 +raidissements raidissement nom m p 0.00 0.61 0.00 0.14 +raidissent raidir ver 0.57 19.59 0.04 0.41 ind:pre:3p; +raidissez raidir ver 0.57 19.59 0.02 0.07 imp:pre:2p;ind:pre:2p; +raidit raidir ver 0.57 19.59 0.27 5.54 ind:pre:3s;ind:pas:3s; +raids raid nom m p 3.98 2.84 1.16 1.22 +raie raie nom f s 2.49 11.01 1.71 7.50 +raient rayer ver 7.42 11.22 0.00 0.27 ind:pre:3p; +raies raie nom f p 2.49 11.01 0.78 3.51 +raifort raifort nom m s 0.21 0.27 0.21 0.27 +rail rail nom m s 9.31 16.22 1.70 2.50 +railla railler ver 2.77 3.31 0.00 0.61 ind:pas:3s; +raillaient railler ver 2.77 3.31 0.00 0.27 ind:imp:3p; +raillait railler ver 2.77 3.31 0.03 0.20 ind:imp:3s; +raillant railler ver 2.77 3.31 0.34 0.07 par:pre; +raille railler ver 2.77 3.31 0.38 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +railler railler ver 2.77 3.31 0.70 0.88 inf; +raillera railler ver 2.77 3.31 0.01 0.00 ind:fut:3s; +raillerai railler ver 2.77 3.31 0.01 0.00 ind:fut:1s; +raillerie raillerie nom f s 0.90 3.04 0.54 1.15 +railleries raillerie nom f p 0.90 3.04 0.36 1.89 +railleur railleur nom m s 0.17 0.14 0.16 0.07 +railleurs railleur nom m p 0.17 0.14 0.01 0.07 +railleuse railleur adj f s 0.04 1.89 0.01 0.54 +railleuses railleur adj f p 0.04 1.89 0.00 0.07 +raillez railler ver 2.77 3.31 0.47 0.20 imp:pre:2p;ind:pre:2p; +raillèrent railler ver 2.77 3.31 0.00 0.14 ind:pas:3p; +raillé railler ver m s 2.77 3.31 0.81 0.61 par:pas; +raillée railler ver f s 2.77 3.31 0.02 0.00 par:pas; +raillés railler ver m p 2.77 3.31 0.00 0.14 par:pas; +rails rail nom m p 9.31 16.22 7.61 13.72 +railway railway nom m s 0.00 0.07 0.00 0.07 +rain rain nom m s 1.03 0.00 1.03 0.00 +raine rainer ver 0.82 0.27 0.00 0.14 ind:pre:3s; +rainer rainer ver 0.82 0.27 0.00 0.07 inf; +raines rainer ver 0.82 0.27 0.82 0.07 ind:pre:2s; +rainette rainette nom f s 0.04 0.88 0.04 0.41 +rainettes rainette nom f p 0.04 0.88 0.00 0.47 +raineuse raineuse nom f s 0.00 0.07 0.00 0.07 +rainure rainure nom f s 0.43 3.51 0.20 1.42 +rainurer rainurer ver 0.01 0.20 0.00 0.07 inf; +rainures rainure nom f p 0.43 3.51 0.23 2.09 +rainuré rainurer ver m s 0.01 0.20 0.01 0.00 par:pas; +rainurés rainurer ver m p 0.01 0.20 0.00 0.14 par:pas; +raiponce raiponce nom f s 0.03 0.00 0.03 0.00 +raire raire ver 0.31 2.09 0.01 0.07 inf; +rais rai nom m p 2.50 5.41 0.93 2.09 +raisin raisin nom m s 9.40 9.53 5.88 4.86 +raisinets raisinet nom m p 0.02 0.00 0.02 0.00 +raisins raisin nom m p 9.40 9.53 3.52 4.66 +raisiné raisiné nom m s 0.01 1.35 0.01 1.35 +raison raison nom f s 467.94 308.78 424.28 247.50 +raisonna raisonner ver 8.72 10.27 0.00 0.47 ind:pas:3s; +raisonnable raisonnable adj s 28.25 23.51 25.04 19.39 +raisonnablement raisonnablement adv 1.03 2.36 1.03 2.36 +raisonnables raisonnable adj p 28.25 23.51 3.21 4.12 +raisonnai raisonner ver 8.72 10.27 0.00 0.07 ind:pas:1s; +raisonnaient raisonner ver 8.72 10.27 0.00 0.14 ind:imp:3p; +raisonnais raisonner ver 8.72 10.27 0.07 0.47 ind:imp:1s; +raisonnait raisonner ver 8.72 10.27 0.01 0.81 ind:imp:3s; +raisonnant raisonner ver 8.72 10.27 0.16 0.20 par:pre; +raisonnante raisonnant adj f s 0.00 0.07 0.00 0.07 +raisonnassent raisonner ver 8.72 10.27 0.00 0.07 sub:imp:3p; +raisonne raisonner ver 8.72 10.27 1.50 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raisonnement raisonnement nom m s 4.16 11.35 3.69 7.91 +raisonnements raisonnement nom m p 4.16 11.35 0.47 3.45 +raisonnent raisonner ver 8.72 10.27 0.31 0.20 ind:pre:3p; +raisonner raisonner ver 8.72 10.27 4.66 5.27 inf; +raisonnes raisonner ver 8.72 10.27 0.35 0.27 ind:pre:2s; +raisonneur raisonneur nom m s 0.17 0.34 0.17 0.07 +raisonneurs raisonneur nom m p 0.17 0.34 0.00 0.20 +raisonneuse raisonneur adj f s 0.00 0.54 0.00 0.14 +raisonnez raisonner ver 8.72 10.27 0.77 0.14 imp:pre:2p;ind:pre:2p; +raisonniez raisonner ver 8.72 10.27 0.00 0.14 ind:imp:2p; +raisonnons raisonner ver 8.72 10.27 0.47 0.20 imp:pre:1p;ind:pre:1p; +raisonné raisonné adj m s 0.51 0.68 0.50 0.27 +raisonnée raisonner ver f s 8.72 10.27 0.02 0.14 par:pas; +raisons raison nom f p 467.94 308.78 43.67 61.28 +rait raire ver m s 0.31 2.09 0.29 2.03 ind:pre:3s;par:pas; +raites raire ver f p 0.31 2.09 0.01 0.00 par:pas; +raja raja nom m s 0.03 0.00 0.03 0.00 +rajah rajah nom m s 0.06 0.20 0.04 0.07 +rajahs rajah nom m p 0.06 0.20 0.01 0.14 +rajeuni rajeunir ver m s 5.20 7.91 1.10 2.16 par:pas; +rajeunie rajeunir ver f s 5.20 7.91 0.20 0.88 par:pas; +rajeunies rajeunir ver f p 5.20 7.91 0.00 0.07 par:pas; +rajeunir rajeunir ver 5.20 7.91 1.26 0.88 inf; +rajeunira rajeunir ver 5.20 7.91 0.03 0.00 ind:fut:3s; +rajeunirai rajeunir ver 5.20 7.91 0.01 0.00 ind:fut:1s; +rajeunirait rajeunir ver 5.20 7.91 0.02 0.07 cnd:pre:3s; +rajeunirez rajeunir ver 5.20 7.91 0.01 0.07 ind:fut:2p; +rajeunis rajeunir ver m p 5.20 7.91 1.11 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rajeunissaient rajeunir ver 5.20 7.91 0.00 0.14 ind:imp:3p; +rajeunissais rajeunir ver 5.20 7.91 0.01 0.07 ind:imp:1s; +rajeunissait rajeunir ver 5.20 7.91 0.04 1.22 ind:imp:3s; +rajeunissant rajeunissant adj m s 0.04 0.00 0.02 0.00 +rajeunissante rajeunissant adj f s 0.04 0.00 0.02 0.00 +rajeunisse rajeunir ver 5.20 7.91 0.00 0.07 sub:pre:3s; +rajeunissement rajeunissement nom m s 0.26 0.68 0.26 0.68 +rajeunissent rajeunir ver 5.20 7.91 0.03 0.14 ind:pre:3p; +rajeunisseurs rajeunisseur nom m p 0.00 0.07 0.00 0.07 +rajeunissez rajeunir ver 5.20 7.91 0.17 0.00 ind:pre:2p; +rajeunissons rajeunir ver 5.20 7.91 0.00 0.07 ind:pre:1p; +rajeunit rajeunir ver 5.20 7.91 1.20 1.49 ind:pre:3s;ind:pas:3s; +rajout rajout nom m s 0.27 0.20 0.23 0.07 +rajouta rajouter ver 13.09 9.32 0.01 0.54 ind:pas:3s; +rajoutaient rajouter ver 13.09 9.32 0.12 0.14 ind:imp:3p; +rajoutais rajouter ver 13.09 9.32 0.01 0.41 ind:imp:1s;ind:imp:2s; +rajoutait rajouter ver 13.09 9.32 0.05 1.01 ind:imp:3s; +rajoutant rajouter ver 13.09 9.32 0.16 0.20 par:pre; +rajoute rajouter ver 13.09 9.32 4.11 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rajoutent rajouter ver 13.09 9.32 0.19 0.14 ind:pre:3p; +rajouter rajouter ver 13.09 9.32 3.73 2.30 inf; +rajoutera rajouter ver 13.09 9.32 0.15 0.00 ind:fut:3s; +rajouterais rajouter ver 13.09 9.32 0.15 0.07 cnd:pre:1s; +rajouterait rajouter ver 13.09 9.32 0.01 0.07 cnd:pre:3s; +rajouteras rajouter ver 13.09 9.32 0.10 0.07 ind:fut:2s; +rajouterez rajouter ver 13.09 9.32 0.00 0.07 ind:fut:2p; +rajoutes rajouter ver 13.09 9.32 1.04 0.07 ind:pre:2s; +rajoutez rajouter ver 13.09 9.32 0.75 0.20 imp:pre:2p;ind:pre:2p; +rajoutons rajouter ver 13.09 9.32 0.07 0.00 imp:pre:1p; +rajouts rajout nom m p 0.27 0.20 0.04 0.14 +rajouté rajouter ver m s 13.09 9.32 2.13 1.35 par:pas; +rajoutée rajouter ver f s 13.09 9.32 0.12 0.07 par:pas; +rajoutées rajouter ver f p 13.09 9.32 0.01 0.20 par:pas; +rajoutés rajouter ver m p 13.09 9.32 0.15 0.07 par:pas; +rajusta rajuster ver 0.41 6.08 0.00 0.95 ind:pas:3s; +rajustaient rajuster ver 0.41 6.08 0.00 0.20 ind:imp:3p; +rajustais rajuster ver 0.41 6.08 0.00 0.07 ind:imp:1s; +rajustait rajuster ver 0.41 6.08 0.00 0.47 ind:imp:3s; +rajustant rajuster ver 0.41 6.08 0.10 1.15 par:pre; +rajuste rajuster ver 0.41 6.08 0.02 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rajustement rajustement nom m s 0.00 0.20 0.00 0.20 +rajustent rajuster ver 0.41 6.08 0.27 0.14 ind:pre:3p; +rajuster rajuster ver 0.41 6.08 0.02 1.01 inf; +rajusteront rajuster ver 0.41 6.08 0.00 0.07 ind:fut:3p; +rajusté rajuster ver m s 0.41 6.08 0.00 0.54 par:pas; +rajustée rajuster ver f s 0.41 6.08 0.00 0.07 par:pas; +rajustées rajuster ver f p 0.41 6.08 0.00 0.14 par:pas; +raki raki nom m s 0.28 1.15 0.28 1.15 +ralbol ralbol nom m s 0.00 0.20 0.00 0.20 +ralentît ralentir ver 17.42 30.95 0.00 0.07 sub:imp:3s; +ralenti ralenti nom m s 9.20 10.61 3.08 10.20 +ralentie ralentir ver f s 17.42 30.95 0.22 1.49 par:pas; +ralenties ralentir ver f p 17.42 30.95 0.17 0.07 par:pas; +ralentir ralentir ver 17.42 30.95 5.25 5.20 inf; +ralentira ralentir ver 17.42 30.95 0.31 0.20 ind:fut:3s; +ralentirai ralentir ver 17.42 30.95 0.24 0.00 ind:fut:1s; +ralentiraient ralentir ver 17.42 30.95 0.03 0.00 cnd:pre:3p; +ralentirais ralentir ver 17.42 30.95 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +ralentirait ralentir ver 17.42 30.95 0.30 0.20 cnd:pre:3s; +ralentirent ralentir ver 17.42 30.95 0.02 0.61 ind:pas:3p; +ralentirez ralentir ver 17.42 30.95 0.02 0.07 ind:fut:2p; +ralentiriez ralentir ver 17.42 30.95 0.01 0.00 cnd:pre:2p; +ralentiront ralentir ver 17.42 30.95 0.07 0.00 ind:fut:3p; +ralentis ralenti nom m p 9.20 10.61 6.12 0.41 +ralentissaient ralentir ver 17.42 30.95 0.04 1.22 ind:imp:3p; +ralentissais ralentir ver 17.42 30.95 0.17 0.34 ind:imp:1s;ind:imp:2s; +ralentissait ralentir ver 17.42 30.95 0.20 2.23 ind:imp:3s; +ralentissant ralentir ver 17.42 30.95 0.04 1.82 par:pre; +ralentisse ralentir ver 17.42 30.95 0.29 0.34 sub:pre:1s;sub:pre:3s; +ralentissement ralentissement nom m s 0.38 1.89 0.34 1.55 +ralentissements ralentissement nom m p 0.38 1.89 0.03 0.34 +ralentissent ralentir ver 17.42 30.95 0.83 0.68 ind:pre:3p; +ralentisseur ralentisseur nom m s 0.09 0.00 0.04 0.00 +ralentisseurs ralentisseur nom m p 0.09 0.00 0.04 0.00 +ralentissez ralentir ver 17.42 30.95 1.94 0.14 imp:pre:2p;ind:pre:2p; +ralentissiez ralentir ver 17.42 30.95 0.04 0.00 ind:imp:2p; +ralentissions ralentir ver 17.42 30.95 0.02 0.00 ind:imp:1p; +ralentissons ralentir ver 17.42 30.95 0.27 0.07 imp:pre:1p;ind:pre:1p; +ralentit ralentir ver 17.42 30.95 3.23 10.68 ind:pre:3s;ind:pas:3s; +ralingue ralingue nom f s 0.00 0.14 0.00 0.07 +ralingues ralingue nom f p 0.00 0.14 0.00 0.07 +raller raller ver 0.01 0.27 0.01 0.07 inf; +rallia rallier ver 2.35 13.78 0.10 0.41 ind:pas:3s; +ralliai rallier ver 2.35 13.78 0.00 0.20 ind:pas:1s; +ralliaient rallier ver 2.35 13.78 0.00 0.41 ind:imp:3p; +ralliais rallier ver 2.35 13.78 0.00 0.20 ind:imp:1s; +ralliait rallier ver 2.35 13.78 0.03 1.01 ind:imp:3s; +ralliant rallier ver 2.35 13.78 0.11 0.34 par:pre; +ralliassent rallier ver 2.35 13.78 0.00 0.07 sub:imp:3p; +rallie rallier ver 2.35 13.78 0.37 0.54 ind:pre:1s;ind:pre:3s; +ralliement ralliement nom m s 1.16 8.18 1.16 7.50 +ralliements ralliement nom m p 1.16 8.18 0.00 0.68 +rallient rallier ver 2.35 13.78 0.07 0.74 ind:pre:3p; +rallier rallier ver 2.35 13.78 0.89 4.86 inf; +ralliera rallier ver 2.35 13.78 0.06 0.14 ind:fut:3s; +rallierai rallier ver 2.35 13.78 0.02 0.00 ind:fut:1s; +rallieraient rallier ver 2.35 13.78 0.01 0.20 cnd:pre:3p; +rallierait rallier ver 2.35 13.78 0.02 0.07 cnd:pre:3s; +rallieriez rallier ver 2.35 13.78 0.00 0.07 cnd:pre:2p; +rallierons rallier ver 2.35 13.78 0.04 0.00 ind:fut:1p; +rallieront rallier ver 2.35 13.78 0.01 0.07 ind:fut:3p; +rallies rallier ver 2.35 13.78 0.03 0.07 ind:pre:2s; +ralliez rallier ver 2.35 13.78 0.08 0.07 imp:pre:2p;ind:pre:2p; +rallions raller ver 0.01 0.27 0.00 0.20 ind:imp:1p; +rallièrent rallier ver 2.35 13.78 0.01 0.14 ind:pas:3p; +rallié rallier ver m s 2.35 13.78 0.17 2.50 par:pas; +ralliée rallier ver f s 2.35 13.78 0.14 0.27 par:pas; +ralliées rallier ver f p 2.35 13.78 0.14 0.20 par:pas; +ralliés rallié adj m p 0.11 0.81 0.10 0.54 +rallonge rallonge nom f s 0.91 2.09 0.72 1.22 +rallongea rallonger ver 1.45 1.35 0.00 0.14 ind:pas:3s; +rallongeaient rallonger ver 1.45 1.35 0.10 0.00 ind:imp:3p; +rallongeait rallonger ver 1.45 1.35 0.01 0.14 ind:imp:3s; +rallongement rallongement nom m s 0.01 0.00 0.01 0.00 +rallongent rallonger ver 1.45 1.35 0.03 0.14 ind:pre:3p; +rallonger rallonger ver 1.45 1.35 0.56 0.27 inf; +rallongerait rallonger ver 1.45 1.35 0.01 0.00 cnd:pre:3s; +rallonges rallonge nom f p 0.91 2.09 0.20 0.88 +rallongez rallonger ver 1.45 1.35 0.17 0.00 imp:pre:2p; +rallongé rallonger ver m s 1.45 1.35 0.07 0.27 par:pas; +rallongée rallonger ver f s 1.45 1.35 0.01 0.20 par:pas; +rallège ralléger ver 0.00 0.27 0.00 0.07 ind:pre:3s; +ralléger ralléger ver 0.00 0.27 0.00 0.14 inf; +rallégé ralléger ver m s 0.00 0.27 0.00 0.07 par:pas; +ralluma rallumer ver 4.85 8.99 0.00 2.03 ind:pas:3s; +rallumage rallumage nom m s 0.01 0.07 0.01 0.07 +rallumai rallumer ver 4.85 8.99 0.00 0.07 ind:pas:1s; +rallumaient rallumer ver 4.85 8.99 0.11 0.20 ind:imp:3p; +rallumais rallumer ver 4.85 8.99 0.00 0.07 ind:imp:1s; +rallumait rallumer ver 4.85 8.99 0.01 0.88 ind:imp:3s; +rallumant rallumer ver 4.85 8.99 0.01 0.54 par:pre; +rallume rallumer ver 4.85 8.99 1.88 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rallument rallumer ver 4.85 8.99 0.12 0.20 ind:pre:3p; +rallumer rallumer ver 4.85 8.99 1.50 2.36 inf; +rallumerai rallumer ver 4.85 8.99 0.01 0.00 ind:fut:1s; +rallumeront rallumer ver 4.85 8.99 0.02 0.00 ind:fut:3p; +rallumes rallumer ver 4.85 8.99 0.17 0.00 ind:pre:2s; +rallumez rallumer ver 4.85 8.99 0.42 0.00 imp:pre:2p;ind:pre:2p; +rallumons rallumer ver 4.85 8.99 0.20 0.07 imp:pre:1p;ind:pre:1p; +rallumèrent rallumer ver 4.85 8.99 0.00 0.14 ind:pas:3p; +rallumé rallumer ver m s 4.85 8.99 0.22 0.74 par:pas; +rallumée rallumer ver f s 4.85 8.99 0.12 0.27 par:pas; +rallumées rallumer ver f p 4.85 8.99 0.04 0.07 par:pas; +rallumés rallumer ver m p 4.85 8.99 0.01 0.14 par:pas; +rallye rallye nom m s 1.74 0.54 1.68 0.41 +rallyes rallye nom m p 1.74 0.54 0.06 0.14 +ram ram nom m s 0.11 0.07 0.11 0.07 +rama ramer ver 5.37 6.42 0.03 0.27 ind:pas:3s; +ramadan ramadan nom m s 1.07 0.95 1.07 0.95 +ramage ramage nom m s 0.16 2.57 0.16 0.61 +ramageait ramager ver 0.00 0.14 0.00 0.07 ind:imp:3s; +ramager ramager ver 0.00 0.14 0.00 0.07 inf; +ramages ramage nom m p 0.16 2.57 0.00 1.96 +ramai ramer ver 5.37 6.42 0.00 0.07 ind:pas:1s; +ramaient ramer ver 5.37 6.42 0.01 0.27 ind:imp:3p; +ramais ramer ver 5.37 6.42 0.04 0.27 ind:imp:1s; +ramait ramer ver 5.37 6.42 0.03 0.81 ind:imp:3s; +ramant ramer ver 5.37 6.42 0.02 0.41 par:pre; +ramarraient ramarrer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +ramarrer ramarrer ver 0.00 0.14 0.00 0.07 inf; +ramas ramer ver 5.37 6.42 0.10 0.00 ind:pas:2s; +ramassa ramasser ver 43.76 74.80 0.26 11.82 ind:pas:3s; +ramassage ramassage nom m s 0.91 1.35 0.90 1.35 +ramassages ramassage nom m p 0.91 1.35 0.01 0.00 +ramassai ramasser ver 43.76 74.80 0.01 0.88 ind:pas:1s; +ramassaient ramasser ver 43.76 74.80 0.18 1.55 ind:imp:3p; +ramassais ramasser ver 43.76 74.80 0.81 1.08 ind:imp:1s;ind:imp:2s; +ramassait ramasser ver 43.76 74.80 0.66 4.93 ind:imp:3s; +ramassant ramasser ver 43.76 74.80 0.30 3.92 par:pre; +ramasse_miettes ramasse_miettes nom m 0.02 0.27 0.02 0.27 +ramasse_poussière ramasse_poussière nom m 0.02 0.00 0.02 0.00 +ramasse ramasser ver 43.76 74.80 13.87 10.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ramassent ramasser ver 43.76 74.80 0.86 1.76 ind:pre:3p; +ramasser ramasser ver 43.76 74.80 13.15 17.91 inf; +ramassera ramasser ver 43.76 74.80 0.25 0.27 ind:fut:3s; +ramasserai ramasser ver 43.76 74.80 0.14 0.00 ind:fut:1s; +ramasseraient ramasser ver 43.76 74.80 0.00 0.14 cnd:pre:3p; +ramasserais ramasser ver 43.76 74.80 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +ramasserait ramasser ver 43.76 74.80 0.04 0.41 cnd:pre:3s; +ramasseras ramasser ver 43.76 74.80 0.04 0.07 ind:fut:2s; +ramasseront ramasser ver 43.76 74.80 0.07 0.20 ind:fut:3p; +ramasses ramasser ver 43.76 74.80 1.61 0.20 ind:pre:2s; +ramasseur ramasseur nom m s 0.73 2.70 0.56 1.15 +ramasseurs ramasseur nom m p 0.73 2.70 0.17 1.42 +ramasseuse ramasseur nom f s 0.73 2.70 0.00 0.14 +ramassez ramasser ver 43.76 74.80 3.37 0.68 imp:pre:2p;ind:pre:2p; +ramassiez ramasser ver 43.76 74.80 0.05 0.00 ind:imp:2p; +ramassions ramasser ver 43.76 74.80 0.00 0.20 ind:imp:1p; +ramassis ramassis nom m 1.50 1.62 1.50 1.62 +ramassons ramasser ver 43.76 74.80 0.30 0.14 imp:pre:1p;ind:pre:1p; +ramassât ramasser ver 43.76 74.80 0.00 0.07 sub:imp:3s; +ramassèrent ramasser ver 43.76 74.80 0.01 1.35 ind:pas:3p; +ramassé ramasser ver m s 43.76 74.80 5.62 10.34 par:pas; +ramassée ramasser ver f s 43.76 74.80 1.07 2.91 par:pas; +ramassées ramasser ver f p 43.76 74.80 0.42 0.68 par:pas; +ramassés ramasser ver m p 43.76 74.80 0.59 2.57 par:pas; +rambarde rambarde nom f s 0.45 3.04 0.45 2.64 +rambardes rambarde nom f p 0.45 3.04 0.00 0.41 +rambin rambin nom m s 0.00 0.34 0.00 0.34 +rambinait rambiner ver 0.00 0.88 0.00 0.07 ind:imp:3s; +rambine rambiner ver 0.00 0.88 0.00 0.27 ind:pre:3s; +rambinent rambiner ver 0.00 0.88 0.00 0.07 ind:pre:3p; +rambiner rambiner ver 0.00 0.88 0.00 0.27 inf; +rambineur rambineur nom m s 0.00 0.07 0.00 0.07 +rambiné rambiner ver m s 0.00 0.88 0.00 0.20 par:pas; +rambla rambla nom f s 0.00 0.07 0.00 0.07 +rambot rambot nom m s 0.01 0.07 0.01 0.07 +rambour rambour nom m s 0.00 0.34 0.00 0.34 +ramdam ramdam nom m s 0.21 1.01 0.21 0.95 +ramdams ramdam nom m p 0.21 1.01 0.00 0.07 +rame rame nom f s 4.38 11.55 2.47 5.74 +rameau rameau nom m s 1.92 6.22 1.29 2.57 +rameaux rameau nom m p 1.92 6.22 0.63 3.65 +ramena ramener ver 172.70 109.26 0.70 9.86 ind:pas:3s; +ramenai ramener ver 172.70 109.26 0.00 0.61 ind:pas:1s; +ramenaient ramener ver 172.70 109.26 0.13 3.72 ind:imp:3p; +ramenais ramener ver 172.70 109.26 0.88 1.28 ind:imp:1s;ind:imp:2s; +ramenait ramener ver 172.70 109.26 1.76 12.57 ind:imp:3s; +ramenant ramener ver 172.70 109.26 0.66 4.59 par:pre; +ramenard ramenard adj m s 0.02 0.20 0.01 0.20 +ramenards ramenard adj m p 0.02 0.20 0.01 0.00 +ramendé ramender ver m s 0.01 0.00 0.01 0.00 par:pas; +ramener ramener ver 172.70 109.26 51.43 24.93 inf;;inf;;inf;;inf;; +ramenez ramener ver 172.70 109.26 13.02 1.08 imp:pre:2p;ind:pre:2p; +rameniez ramener ver 172.70 109.26 0.59 0.00 ind:imp:2p;sub:pre:2p; +ramenions ramener ver 172.70 109.26 0.05 0.20 ind:imp:1p; +ramenâmes ramener ver 172.70 109.26 0.15 0.20 ind:pas:1p; +ramenons ramener ver 172.70 109.26 1.60 0.27 imp:pre:1p;ind:pre:1p; +ramenât ramener ver 172.70 109.26 0.00 0.41 sub:imp:3s; +rament ramer ver 5.37 6.42 0.17 0.27 ind:pre:3p; +ramenèrent ramener ver 172.70 109.26 0.50 1.08 ind:pas:3p; +ramené ramener ver m s 172.70 109.26 23.84 13.31 par:pas; +ramenée ramener ver f s 172.70 109.26 5.25 4.93 par:pas; +ramenées ramener ver f p 172.70 109.26 0.50 1.01 par:pas; +ramenés ramener ver m p 172.70 109.26 1.27 3.78 par:pas; +ramer ramer ver 5.37 6.42 1.73 1.82 inf; +ramera ramer ver 5.37 6.42 0.00 0.07 ind:fut:3s; +rameras ramer ver 5.37 6.42 0.01 0.00 ind:fut:2s; +ramerons ramer ver 5.37 6.42 0.01 0.20 ind:fut:1p; +rameront ramer ver 5.37 6.42 0.01 0.00 ind:fut:3p; +rames rame nom f p 4.38 11.55 1.91 5.81 +ramette ramette nom f s 0.00 0.14 0.00 0.14 +rameur rameur nom m s 1.00 2.43 0.40 0.47 +rameurs rameur nom m p 1.00 2.43 0.60 1.96 +rameutais rameuter ver 0.72 2.43 0.01 0.07 ind:imp:1s; +rameutait rameuter ver 0.72 2.43 0.00 0.47 ind:imp:3s; +rameutant rameuter ver 0.72 2.43 0.00 0.07 par:pre; +rameute rameuter ver 0.72 2.43 0.23 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rameutent rameuter ver 0.72 2.43 0.00 0.07 ind:pre:3p; +rameuter rameuter ver 0.72 2.43 0.32 0.68 inf; +rameutez rameuter ver 0.72 2.43 0.06 0.14 imp:pre:2p;ind:pre:2p; +rameutons rameuter ver 0.72 2.43 0.02 0.00 imp:pre:1p;ind:pre:1p; +rameuté rameuter ver m s 0.72 2.43 0.07 0.14 par:pas; +rameutées rameuter ver f p 0.72 2.43 0.00 0.20 par:pas; +rameutés rameuter ver m p 0.72 2.43 0.01 0.34 par:pas; +ramez ramer ver 5.37 6.42 1.17 0.00 imp:pre:2p;ind:pre:2p; +rami rami nom m s 0.48 0.20 0.47 0.14 +ramier ramier adj m s 0.01 0.27 0.01 0.00 +ramiers ramier nom m p 0.00 1.01 0.00 0.47 +ramies ramie nom f p 0.00 0.07 0.00 0.07 +ramifia ramifier ver 0.06 0.74 0.00 0.07 ind:pas:3s; +ramifiaient ramifier ver 0.06 0.74 0.00 0.07 ind:imp:3p; +ramifiait ramifier ver 0.06 0.74 0.00 0.07 ind:imp:3s; +ramifiant ramifiant adj m s 0.00 0.54 0.00 0.54 +ramification ramification nom f s 0.50 1.42 0.05 0.07 +ramifications ramification nom f p 0.50 1.42 0.45 1.35 +ramifie ramifier ver 0.06 0.74 0.04 0.00 ind:pre:3s; +ramifient ramifier ver 0.06 0.74 0.00 0.07 ind:pre:3p; +ramifier ramifier ver 0.06 0.74 0.00 0.07 inf; +ramifié ramifier ver m s 0.06 0.74 0.02 0.20 par:pas; +ramifiée ramifié adj f s 0.04 0.61 0.02 0.27 +ramifiées ramifié adj f p 0.04 0.61 0.01 0.20 +ramifiés ramifié adj m p 0.04 0.61 0.01 0.07 +ramille ramille nom f s 0.00 0.54 0.00 0.07 +ramilles ramille nom f p 0.00 0.54 0.00 0.47 +raminagrobis raminagrobis nom m 0.00 0.14 0.00 0.14 +ramions ramer ver 5.37 6.42 0.01 0.00 ind:imp:1p; +ramis rami nom m p 0.48 0.20 0.01 0.07 +ramolli ramollir ver m s 2.30 1.49 0.26 0.27 par:pas; +ramollie ramolli adj f s 0.44 1.08 0.05 0.27 +ramollies ramollir ver f p 2.30 1.49 0.04 0.07 par:pas; +ramollir ramollir ver 2.30 1.49 0.53 0.27 inf; +ramollirent ramollir ver 2.30 1.49 0.00 0.07 ind:pas:3p; +ramollis ramollir ver m p 2.30 1.49 0.49 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +ramollissait ramollir ver 2.30 1.49 0.04 0.20 ind:imp:3s; +ramollisse ramollir ver 2.30 1.49 0.16 0.00 sub:pre:3s; +ramollissement ramollissement nom m s 0.12 0.20 0.12 0.20 +ramollissent ramollir ver 2.30 1.49 0.28 0.00 ind:pre:3p; +ramollit ramollir ver 2.30 1.49 0.47 0.41 ind:pre:3s;ind:pas:3s; +ramollo ramollo adj m s 0.32 0.27 0.23 0.20 +ramollos ramollo adj m p 0.32 0.27 0.09 0.07 +ramon ramon nom m s 0.00 0.14 0.00 0.14 +ramonage ramonage nom m s 0.02 0.34 0.02 0.27 +ramonages ramonage nom m p 0.02 0.34 0.00 0.07 +ramonait ramoner ver 0.60 1.55 0.00 0.14 ind:imp:3s; +ramonant ramoner ver 0.60 1.55 0.00 0.07 par:pre; +ramone ramoner ver 0.60 1.55 0.26 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ramonent ramoner ver 0.60 1.55 0.00 0.07 ind:pre:3p; +ramoner ramoner ver 0.60 1.55 0.17 0.61 inf; +ramones ramoner ver 0.60 1.55 0.02 0.00 ind:pre:2s; +ramoneur ramoneur nom m s 0.12 0.88 0.08 0.74 +ramoneurs ramoneur nom m p 0.12 0.88 0.03 0.14 +ramons ramer ver 5.37 6.42 0.04 0.07 imp:pre:1p;ind:pre:1p; +ramoné ramoner ver m s 0.60 1.55 0.03 0.07 par:pas; +ramonée ramoner ver f s 0.60 1.55 0.03 0.07 par:pas; +ramonées ramoner ver f p 0.60 1.55 0.10 0.07 par:pas; +rampa ramper ver 11.55 19.39 0.02 1.08 ind:pas:3s; +rampai ramper ver 11.55 19.39 0.01 0.20 ind:pas:1s; +rampaient ramper ver 11.55 19.39 0.27 0.95 ind:imp:3p; +rampais ramper ver 11.55 19.39 0.16 0.27 ind:imp:1s;ind:imp:2s; +rampait ramper ver 11.55 19.39 0.23 2.09 ind:imp:3s; +rampant ramper ver 11.55 19.39 1.51 3.51 par:pre; +rampante rampant adj f s 0.68 2.84 0.15 0.68 +rampantes rampant adj f p 0.68 2.84 0.20 0.68 +rampants rampant adj m p 0.68 2.84 0.19 0.68 +rampe rampe nom f s 5.76 20.81 5.32 18.18 +rampement rampement nom m s 0.00 0.20 0.00 0.07 +rampements rampement nom m p 0.00 0.20 0.00 0.14 +rampent ramper ver 11.55 19.39 0.68 1.42 ind:pre:3p; +ramper ramper ver 11.55 19.39 3.32 5.20 inf; +rampera ramper ver 11.55 19.39 0.05 0.07 ind:fut:3s; +ramperai ramper ver 11.55 19.39 0.04 0.00 ind:fut:1s; +ramperaient ramper ver 11.55 19.39 0.00 0.07 cnd:pre:3p; +ramperais ramper ver 11.55 19.39 0.19 0.00 cnd:pre:1s;cnd:pre:2s; +ramperas ramper ver 11.55 19.39 0.13 0.00 ind:fut:2s; +ramperez ramper ver 11.55 19.39 0.02 0.07 ind:fut:2p; +rampes ramper ver 11.55 19.39 0.95 0.00 ind:pre:2s; +rampez ramper ver 11.55 19.39 1.32 0.07 imp:pre:2p;ind:pre:2p; +rampiez ramper ver 11.55 19.39 0.03 0.00 ind:imp:2p; +rampions ramper ver 11.55 19.39 0.02 0.07 ind:imp:1p; +ramponneau ramponneau nom m s 0.00 0.34 0.00 0.34 +rampons ramper ver 11.55 19.39 0.01 0.07 ind:pre:1p; +rampèrent ramper ver 11.55 19.39 0.00 0.14 ind:pas:3p; +rampé ramper ver m s 11.55 19.39 0.64 0.74 par:pas; +rampée ramper ver f s 11.55 19.39 0.01 0.00 par:pas; +rams rams nom m 0.35 0.00 0.35 0.00 +ramser ramser ver 0.01 0.00 0.01 0.00 inf; +ramène ramener ver 172.70 109.26 49.52 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +ramènent ramener ver 172.70 109.26 2.04 2.16 ind:pre:3p;sub:pre:3p; +ramènera ramener ver 172.70 109.26 3.95 1.15 ind:fut:3s; +ramènerai ramener ver 172.70 109.26 3.52 0.68 ind:fut:1s; +ramèneraient ramener ver 172.70 109.26 0.14 0.20 cnd:pre:3p; +ramènerais ramener ver 172.70 109.26 0.44 0.47 cnd:pre:1s;cnd:pre:2s; +ramènerait ramener ver 172.70 109.26 0.73 2.03 cnd:pre:3s; +ramèneras ramener ver 172.70 109.26 0.42 0.14 ind:fut:2s; +ramènerez ramener ver 172.70 109.26 0.48 0.14 ind:fut:2p; +ramèneriez ramener ver 172.70 109.26 0.17 0.14 cnd:pre:2p; +ramènerions ramener ver 172.70 109.26 0.03 0.07 cnd:pre:1p; +ramènerons ramener ver 172.70 109.26 0.76 0.20 ind:fut:1p; +ramèneront ramener ver 172.70 109.26 0.94 0.27 ind:fut:3p; +ramènes ramener ver 172.70 109.26 7.23 0.74 ind:pre:2s;sub:pre:2s; +ramèrent ramer ver 5.37 6.42 0.02 0.07 ind:pas:3p; +ramé ramer ver m s 5.37 6.42 0.28 0.27 par:pas; +ramée ramée nom f s 0.00 0.34 0.00 0.14 +ramées ramée nom f p 0.00 0.34 0.00 0.20 +ramure ramure nom f s 0.12 4.12 0.01 1.55 +ramures ramure nom f p 0.12 4.12 0.11 2.57 +ramés ramer ver m p 5.37 6.42 0.00 0.07 par:pas; +ran ran nom m s 0.34 0.74 0.34 0.74 +ranatres ranatre nom f p 0.00 0.07 0.00 0.07 +rancard rancard nom m s 2.80 1.22 2.60 1.15 +rancardait rancarder ver 0.35 0.61 0.00 0.07 ind:imp:3s; +rancarde rancarder ver 0.35 0.61 0.10 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rancarder rancarder ver 0.35 0.61 0.07 0.34 inf; +rancardez rancarder ver 0.35 0.61 0.01 0.00 ind:pre:2p; +rancards rancard nom m p 2.80 1.22 0.20 0.07 +rancardé rancarder ver m s 0.35 0.61 0.11 0.00 par:pas; +rancardée rancarder ver f s 0.35 0.61 0.01 0.07 par:pas; +rancardés rancarder ver m p 0.35 0.61 0.04 0.00 par:pas; +rancart rancart nom m s 0.82 1.76 0.76 1.62 +rancarts rancart nom m p 0.82 1.76 0.06 0.14 +rance rance adj s 1.34 4.26 1.18 3.65 +rances rance adj p 1.34 4.26 0.16 0.61 +ranch ranch nom m s 7.31 0.81 6.95 0.61 +ranche ranch nom f s 7.31 0.81 0.10 0.00 +rancher rancher nom m s 0.15 0.00 0.15 0.00 +ranches ranche nom f p 0.10 0.00 0.10 0.00 +rancho rancho nom m s 0.87 0.00 0.87 0.00 +ranchs ranch nom m p 7.31 0.81 0.26 0.00 +ranci ranci adj m s 0.04 0.27 0.02 0.07 +rancie ranci adj f s 0.04 0.27 0.01 0.07 +rancies rancir ver f p 0.01 0.54 0.00 0.07 par:pas; +rancio rancio nom m s 0.00 0.20 0.00 0.20 +rancir rancir ver 0.01 0.54 0.00 0.20 inf; +rancis rancir ver 0.01 0.54 0.01 0.00 ind:pre:2s; +rancissait rancir ver 0.01 0.54 0.00 0.14 ind:imp:3s; +rancissure rancissure nom f s 0.00 0.07 0.00 0.07 +rancit rancir ver 0.01 0.54 0.00 0.07 ind:pas:3s; +rancoeur rancoeur nom f s 1.31 6.15 1.09 4.46 +rancoeurs rancoeur nom f p 1.31 6.15 0.22 1.69 +rancune rancune nom f s 7.20 17.23 6.76 14.86 +rancunes rancune nom f p 7.20 17.23 0.44 2.36 +rancuneuses rancuneux adj f p 0.00 0.07 0.00 0.07 +rancunier rancunier adj m s 1.46 1.69 1.09 1.01 +rancuniers rancunier adj m p 1.46 1.69 0.17 0.14 +rancunière rancunier adj f s 1.46 1.69 0.17 0.54 +rancunières rancunier adj f p 1.46 1.69 0.02 0.00 +randonnait randonner ver 0.13 0.20 0.00 0.07 ind:imp:3s; +randonne randonner ver 0.13 0.20 0.01 0.07 imp:pre:2s;ind:pre:3s; +randonner randonner ver 0.13 0.20 0.04 0.00 inf; +randonneur randonneur nom m s 0.40 0.20 0.17 0.00 +randonneurs randonneur nom m p 0.40 0.20 0.20 0.20 +randonneuse randonneur nom f s 0.40 0.20 0.03 0.00 +randonnez randonner ver 0.13 0.20 0.01 0.00 ind:pre:2p; +randonnée randonnée nom f s 2.22 4.66 1.74 2.64 +randonnées randonnée nom f p 2.22 4.66 0.48 2.03 +rang rang nom m s 28.21 58.24 19.40 37.16 +range ranger ver 47.67 67.91 17.59 7.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rangea ranger ver 47.67 67.91 0.02 8.78 ind:pas:3s; +rangeai ranger ver 47.67 67.91 0.00 0.74 ind:pas:1s; +rangeaient ranger ver 47.67 67.91 0.03 1.82 ind:imp:3p; +rangeais ranger ver 47.67 67.91 0.50 1.08 ind:imp:1s;ind:imp:2s; +rangeait ranger ver 47.67 67.91 0.18 6.69 ind:imp:3s; +rangeant ranger ver 47.67 67.91 0.20 2.70 par:pre; +rangement rangement nom m s 1.21 2.16 1.14 1.49 +rangements rangement nom m p 1.21 2.16 0.07 0.68 +rangent ranger ver 47.67 67.91 0.47 1.08 ind:pre:3p; +rangeâmes ranger ver 47.67 67.91 0.00 0.07 ind:pas:1p; +rangeons ranger ver 47.67 67.91 0.20 0.14 imp:pre:1p;ind:pre:1p; +rangeât ranger ver 47.67 67.91 0.00 0.07 sub:imp:3s; +ranger ranger ver 47.67 67.91 14.95 14.53 inf; +rangera ranger ver 47.67 67.91 0.31 0.20 ind:fut:3s; +rangerai ranger ver 47.67 67.91 0.58 0.07 ind:fut:1s; +rangerais ranger ver 47.67 67.91 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +rangerait ranger ver 47.67 67.91 0.02 0.07 cnd:pre:3s; +rangeras ranger ver 47.67 67.91 0.10 0.14 ind:fut:2s; +rangerez ranger ver 47.67 67.91 0.16 0.00 ind:fut:2p; +rangerons ranger ver 47.67 67.91 0.00 0.07 ind:fut:1p; +rangeront ranger ver 47.67 67.91 0.06 0.07 ind:fut:3p; +rangers ranger nom m p 4.60 3.38 2.36 2.36 +ranges ranger ver 47.67 67.91 1.21 0.14 ind:pre:2s;sub:pre:2s; +rangez ranger ver 47.67 67.91 4.54 0.68 imp:pre:2p;ind:pre:2p; +rangions ranger ver 47.67 67.91 0.01 0.20 ind:imp:1p; +rangs rang nom m p 28.21 58.24 8.81 21.08 +rangèrent ranger ver 47.67 67.91 0.00 0.47 ind:pas:3p; +rangé ranger ver m s 47.67 67.91 4.09 8.78 par:pas; +rangée rangée nom f s 3.29 20.47 2.54 10.88 +rangées rangée nom f p 3.29 20.47 0.74 9.59 +rangés ranger ver m p 47.67 67.91 1.03 6.35 par:pas; +rani rani nom f s 0.00 1.08 0.00 1.08 +ranima ranimer ver 2.92 9.19 0.14 0.74 ind:pas:3s; +ranimaient ranimer ver 2.92 9.19 0.00 0.34 ind:imp:3p; +ranimait ranimer ver 2.92 9.19 0.01 0.74 ind:imp:3s; +ranimant ranimer ver 2.92 9.19 0.02 0.20 par:pre; +ranimation ranimation nom f s 0.00 0.07 0.00 0.07 +ranime ranimer ver 2.92 9.19 0.77 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raniment ranimer ver 2.92 9.19 0.04 0.20 ind:pre:3p; +ranimer ranimer ver 2.92 9.19 1.26 3.45 inf; +ranimera ranimer ver 2.92 9.19 0.05 0.00 ind:fut:3s; +ranimez ranimer ver 2.92 9.19 0.03 0.00 imp:pre:2p; +ranimions ranimer ver 2.92 9.19 0.00 0.07 ind:imp:1p; +ranimât ranimer ver 2.92 9.19 0.00 0.07 sub:imp:3s; +ranimèrent ranimer ver 2.92 9.19 0.00 0.27 ind:pas:3p; +ranimé ranimer ver m s 2.92 9.19 0.22 1.22 par:pas; +ranimée ranimer ver f s 2.92 9.19 0.22 0.54 par:pas; +ranimées ranimer ver f p 2.92 9.19 0.00 0.14 par:pas; +ranimés ranimer ver m p 2.92 9.19 0.17 0.41 par:pas; +rantanplan rantanplan ono 0.03 0.07 0.03 0.07 +rançon rançon nom f s 10.60 2.84 10.49 2.70 +rançonnage rançonnage nom m s 0.01 0.00 0.01 0.00 +rançonnaient rançonner ver 0.13 0.95 0.00 0.14 ind:imp:3p; +rançonnait rançonner ver 0.13 0.95 0.00 0.27 ind:imp:3s; +rançonne rançonner ver 0.13 0.95 0.04 0.00 ind:pre:1s;ind:pre:3s; +rançonnement rançonnement nom m s 0.00 0.07 0.00 0.07 +rançonner rançonner ver 0.13 0.95 0.04 0.20 inf; +rançonneurs rançonneur nom m p 0.01 0.00 0.01 0.00 +rançonné rançonner ver m s 0.13 0.95 0.02 0.14 par:pas; +rançonnée rançonner ver f s 0.13 0.95 0.02 0.00 par:pas; +rançonnées rançonner ver f p 0.13 0.95 0.00 0.14 par:pas; +rançonnés rançonner ver m p 0.13 0.95 0.00 0.07 par:pas; +rançons rançon nom f p 10.60 2.84 0.10 0.14 +ranz ranz nom m 0.00 0.14 0.00 0.14 +raout raout nom m s 0.10 0.74 0.08 0.41 +raouts raout nom m p 0.10 0.74 0.02 0.34 +rap rap nom m s 3.17 0.07 3.17 0.07 +rapace rapace adj s 0.95 1.28 0.86 0.47 +rapaces rapace nom m p 0.92 2.70 0.39 1.22 +rapacité rapacité nom f s 0.05 0.81 0.05 0.81 +rapatria rapatrier ver 2.48 3.11 0.00 0.07 ind:pas:3s; +rapatriait rapatrier ver 2.48 3.11 0.01 0.14 ind:imp:3s; +rapatriant rapatrier ver 2.48 3.11 0.01 0.07 par:pre; +rapatrie rapatrier ver 2.48 3.11 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rapatriement rapatriement nom m s 0.29 1.96 0.29 1.89 +rapatriements rapatriement nom m p 0.29 1.96 0.00 0.07 +rapatrient rapatrier ver 2.48 3.11 0.02 0.00 ind:pre:3p; +rapatrier rapatrier ver 2.48 3.11 1.36 0.88 inf; +rapatriera rapatrier ver 2.48 3.11 0.16 0.00 ind:fut:3s; +rapatriez rapatrier ver 2.48 3.11 0.13 0.00 imp:pre:2p;ind:pre:2p; +rapatrié rapatrier ver m s 2.48 3.11 0.33 0.81 par:pas; +rapatriée rapatrier ver f s 2.48 3.11 0.01 0.20 par:pas; +rapatriées rapatrier ver f p 2.48 3.11 0.01 0.14 par:pas; +rapatriés rapatrier ver m p 2.48 3.11 0.35 0.74 par:pas; +rapetassage rapetassage nom m s 0.00 0.14 0.00 0.07 +rapetassages rapetassage nom m p 0.00 0.14 0.00 0.07 +rapetasser rapetasser ver 0.00 0.61 0.00 0.14 inf; +rapetasseur rapetasseur nom m s 0.00 0.07 0.00 0.07 +rapetassions rapetasser ver 0.00 0.61 0.00 0.07 ind:imp:1p; +rapetassé rapetasser ver m s 0.00 0.61 0.00 0.20 par:pas; +rapetassées rapetasser ver f p 0.00 0.61 0.00 0.07 par:pas; +rapetassés rapetasser ver m p 0.00 0.61 0.00 0.14 par:pas; +rapetissaient rapetisser ver 0.76 4.86 0.00 0.27 ind:imp:3p; +rapetissais rapetisser ver 0.76 4.86 0.00 0.07 ind:imp:1s; +rapetissait rapetisser ver 0.76 4.86 0.03 1.08 ind:imp:3s; +rapetissant rapetisser ver 0.76 4.86 0.00 0.47 par:pre; +rapetisse rapetisser ver 0.76 4.86 0.26 0.54 ind:pre:1s;ind:pre:3s; +rapetissement rapetissement nom m s 0.01 0.27 0.01 0.27 +rapetissent rapetisser ver 0.76 4.86 0.04 0.47 ind:pre:3p; +rapetisser rapetisser ver 0.76 4.86 0.19 0.47 inf; +rapetissera rapetisser ver 0.76 4.86 0.00 0.07 ind:fut:3s; +rapetissez rapetisser ver 0.76 4.86 0.01 0.00 ind:pre:2p; +rapetissons rapetisser ver 0.76 4.86 0.01 0.07 ind:pre:1p; +rapetissèrent rapetisser ver 0.76 4.86 0.00 0.07 ind:pas:3p; +rapetissé rapetisser ver m s 0.76 4.86 0.20 0.61 par:pas; +rapetissée rapetisser ver f s 0.76 4.86 0.03 0.14 par:pas; +rapetissées rapetisser ver f p 0.76 4.86 0.00 0.27 par:pas; +rapetissés rapetisser ver m p 0.76 4.86 0.00 0.27 par:pas; +raphaélesque raphaélesque adj f s 0.00 0.07 0.00 0.07 +raphia raphia nom m s 0.16 1.28 0.16 1.28 +raphé raphé nom m s 0.00 0.07 0.00 0.07 +rapiat rapiat nom m s 0.20 0.14 0.05 0.07 +rapiater rapiater ver 0.00 0.07 0.00 0.07 inf; +rapiaterie rapiaterie nom f s 0.00 0.07 0.00 0.07 +rapiats rapiat nom m p 0.20 0.14 0.15 0.07 +rapide rapide adj s 48.73 71.82 42.28 53.99 +rapidement rapidement adv 26.49 62.64 26.49 62.64 +rapides rapide adj p 48.73 71.82 6.45 17.84 +rapidité rapidité nom f s 2.36 10.54 2.36 10.41 +rapidités rapidité nom f p 2.36 10.54 0.00 0.14 +rapidos rapidos adv 0.53 1.89 0.53 1.89 +rapin rapin nom m s 0.00 1.22 0.00 0.74 +rapine rapine nom f s 0.13 1.69 0.08 1.15 +rapinent rapiner ver 0.00 0.14 0.00 0.07 ind:pre:3p; +rapines rapine nom f p 0.13 1.69 0.05 0.54 +rapins rapin nom m p 0.00 1.22 0.00 0.47 +rapinés rapiner ver m p 0.00 0.14 0.00 0.07 par:pas; +rapière rapière nom f s 0.17 0.74 0.17 0.74 +rapiécer rapiécer ver 0.18 4.53 0.14 0.00 inf; +rapiécerait rapiécer ver 0.18 4.53 0.00 0.07 cnd:pre:3s; +rapiécé rapiécer ver m s 0.18 4.53 0.02 0.88 par:pas; +rapiécée rapiécer ver f s 0.18 4.53 0.02 1.62 par:pas; +rapiécées rapiécer ver f p 0.18 4.53 0.00 0.74 par:pas; +rapiécés rapiécer ver m p 0.18 4.53 0.00 1.22 par:pas; +rapiéçage rapiéçage nom m s 0.01 0.20 0.01 0.00 +rapiéçages rapiéçage nom m p 0.01 0.20 0.00 0.20 +raplapla raplapla adj 0.11 0.00 0.11 0.00 +rapointir rapointir ver 0.00 0.14 0.00 0.14 inf; +rappel rappel nom m s 4.24 10.34 3.77 8.31 +rappela rappeler ver 281.75 202.23 0.36 14.53 ind:pas:3s; +rappelai rappeler ver 281.75 202.23 0.04 5.14 ind:pas:1s; +rappelaient rappeler ver 281.75 202.23 0.37 7.50 ind:imp:3p; +rappelais rappeler ver 281.75 202.23 1.94 7.43 ind:imp:1s;ind:imp:2s; +rappelait rappeler ver 281.75 202.23 2.22 29.73 ind:imp:3s; +rappelant rappeler ver 281.75 202.23 0.54 6.69 par:pre; +rappeler rappeler ver 281.75 202.23 46.03 33.11 inf;; +rappelez rappeler ver 281.75 202.23 36.35 8.04 imp:pre:2p;ind:pre:2p; +rappeliez rappeler ver 281.75 202.23 0.46 0.34 ind:imp:2p; +rappelions rappeler ver 281.75 202.23 0.15 0.07 ind:imp:1p; +rappelle rappeler ver 281.75 202.23 117.92 57.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rappellent rappeler ver 281.75 202.23 2.79 3.45 ind:pre:3p; +rappellera rappeler ver 281.75 202.23 4.08 1.28 ind:fut:3s; +rappellerai rappeler ver 281.75 202.23 7.96 0.95 ind:fut:1s; +rappelleraient rappeler ver 281.75 202.23 0.05 0.14 cnd:pre:3p; +rappellerais rappeler ver 281.75 202.23 0.79 0.27 cnd:pre:1s;cnd:pre:2s; +rappellerait rappeler ver 281.75 202.23 0.36 1.42 cnd:pre:3s; +rappelleras rappeler ver 281.75 202.23 1.00 0.34 ind:fut:2s; +rappellerez rappeler ver 281.75 202.23 0.62 0.14 ind:fut:2p; +rappelleriez rappeler ver 281.75 202.23 0.19 0.07 cnd:pre:2p; +rappellerons rappeler ver 281.75 202.23 0.37 0.07 ind:fut:1p; +rappelleront rappeler ver 281.75 202.23 0.45 0.00 ind:fut:3p; +rappelles rappeler ver 281.75 202.23 37.34 8.38 ind:pre:1p;ind:pre:2s;sub:pre:2s; +rappelâmes rappeler ver 281.75 202.23 0.10 0.00 ind:pas:1p; +rappelons rappeler ver 281.75 202.23 1.90 0.41 imp:pre:1p;ind:pre:1p; +rappelât rappeler ver 281.75 202.23 0.00 0.47 sub:imp:3s; +rappels rappel nom m p 4.24 10.34 0.47 2.03 +rappelèrent rappeler ver 281.75 202.23 0.01 1.01 ind:pas:3p; +rappelé rappeler ver m s 281.75 202.23 14.60 11.49 par:pas; +rappelée rappeler ver f s 281.75 202.23 1.82 1.15 par:pas; +rappelés rappeler ver m p 281.75 202.23 0.94 0.95 par:pas; +rapper rapper ver 0.40 0.00 0.40 0.00 inf; +rappeur rappeur nom m s 1.01 0.00 0.65 0.00 +rappeurs rappeur nom m p 1.01 0.00 0.34 0.00 +rappeuse rappeur nom f s 1.01 0.00 0.02 0.00 +rappliqua rappliquer ver 4.22 5.74 0.00 0.20 ind:pas:3s; +rappliquaient rappliquer ver 4.22 5.74 0.01 0.41 ind:imp:3p; +rappliquais rappliquer ver 4.22 5.74 0.00 0.07 ind:imp:2s; +rappliquait rappliquer ver 4.22 5.74 0.00 0.47 ind:imp:3s; +rapplique rappliquer ver 4.22 5.74 1.38 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rappliquent rappliquer ver 4.22 5.74 0.50 1.01 ind:pre:3p; +rappliquer rappliquer ver 4.22 5.74 1.31 1.76 inf; +rappliquera rappliquer ver 4.22 5.74 0.04 0.00 ind:fut:3s; +rappliquerais rappliquer ver 4.22 5.74 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +rappliquerait rappliquer ver 4.22 5.74 0.01 0.00 cnd:pre:3s; +rappliqueriez rappliquer ver 4.22 5.74 0.00 0.07 cnd:pre:2p; +rappliqueront rappliquer ver 4.22 5.74 0.15 0.14 ind:fut:3p; +rappliques rappliquer ver 4.22 5.74 0.07 0.20 ind:pre:2s; +rappliquez rappliquer ver 4.22 5.74 0.28 0.14 imp:pre:2p;ind:pre:2p; +rappliquèrent rappliquer ver 4.22 5.74 0.00 0.07 ind:pas:3p; +rappliqué rappliquer ver m s 4.22 5.74 0.43 0.47 par:pas; +rapport rapport nom m s 140.08 130.95 115.57 87.23 +rapporta rapporter ver 56.99 62.43 0.43 3.45 ind:pas:3s; +rapportage rapportage nom m s 0.01 0.00 0.01 0.00 +rapportai rapporter ver 56.99 62.43 0.00 1.01 ind:pas:1s; +rapportaient rapporter ver 56.99 62.43 0.26 2.03 ind:imp:3p; +rapportais rapporter ver 56.99 62.43 0.35 0.95 ind:imp:1s;ind:imp:2s; +rapportait rapporter ver 56.99 62.43 1.12 7.64 ind:imp:3s; +rapportant rapporter ver 56.99 62.43 0.28 1.76 par:pre; +rapporte rapporter ver 56.99 62.43 21.03 10.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rapportent rapporter ver 56.99 62.43 1.98 2.03 ind:pre:3p; +rapporter rapporter ver 56.99 62.43 12.12 11.96 inf; +rapportera rapporter ver 56.99 62.43 2.13 0.68 ind:fut:3s; +rapporterai rapporter ver 56.99 62.43 1.94 0.54 ind:fut:1s; +rapporteraient rapporter ver 56.99 62.43 0.08 0.00 cnd:pre:3p; +rapporterais rapporter ver 56.99 62.43 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +rapporterait rapporter ver 56.99 62.43 0.52 0.95 cnd:pre:3s; +rapporteras rapporter ver 56.99 62.43 0.40 0.27 ind:fut:2s; +rapporterez rapporter ver 56.99 62.43 0.46 0.27 ind:fut:2p; +rapporteriez rapporter ver 56.99 62.43 0.02 0.00 cnd:pre:2p; +rapporterons rapporter ver 56.99 62.43 0.03 0.00 ind:fut:1p; +rapporteront rapporter ver 56.99 62.43 0.11 0.07 ind:fut:3p; +rapportes rapporter ver 56.99 62.43 0.94 0.41 ind:pre:2s; +rapporteur rapporteur nom m s 0.55 0.61 0.10 0.41 +rapporteurs rapporteur nom m p 0.55 0.61 0.01 0.14 +rapporteuse rapporteur nom f s 0.55 0.61 0.43 0.07 +rapporteuses rapporteuse nom f p 0.03 0.00 0.03 0.00 +rapportez rapporter ver 56.99 62.43 2.19 0.47 imp:pre:2p;ind:pre:2p; +rapportiez rapporter ver 56.99 62.43 0.19 0.00 ind:imp:2p; +rapportions rapporter ver 56.99 62.43 0.01 0.14 ind:imp:1p; +rapportons rapporter ver 56.99 62.43 0.09 0.20 imp:pre:1p;ind:pre:1p; +rapportât rapporter ver 56.99 62.43 0.00 0.14 sub:imp:3s; +rapports rapport nom m p 140.08 130.95 24.51 43.72 +rapportèrent rapporter ver 56.99 62.43 0.02 0.34 ind:pas:3p; +rapporté rapporter ver m s 56.99 62.43 8.58 11.89 par:pas; +rapportée rapporter ver f s 56.99 62.43 1.00 1.69 par:pas; +rapportées rapporter ver f p 56.99 62.43 0.42 1.55 par:pas; +rapportés rapporter ver m p 56.99 62.43 0.21 1.28 par:pas; +rapprendre rapprendre ver 0.02 0.27 0.02 0.20 inf; +rappris rapprendre ver 0.02 0.27 0.00 0.07 ind:pas:2s; +rapprocha rapprocher ver 25.18 54.66 0.15 6.62 ind:pas:3s; +rapprochai rapprocher ver 25.18 54.66 0.01 0.34 ind:pas:1s; +rapprochaient rapprocher ver 25.18 54.66 0.30 3.65 ind:imp:3p; +rapprochais rapprocher ver 25.18 54.66 0.05 0.27 ind:imp:1s;ind:imp:2s; +rapprochait rapprocher ver 25.18 54.66 0.69 7.57 ind:imp:3s; +rapprochant rapprocher ver 25.18 54.66 0.50 2.70 par:pre; +rapproche rapprocher ver 25.18 54.66 9.74 8.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rapprochement rapprochement nom m s 1.69 7.23 1.66 6.55 +rapprochements rapprochement nom m p 1.69 7.23 0.02 0.68 +rapprochent rapprocher ver 25.18 54.66 1.44 3.11 ind:pre:3p; +rapprocher rapprocher ver 25.18 54.66 6.53 9.93 inf; +rapprochera rapprocher ver 25.18 54.66 0.34 0.41 ind:fut:3s; +rapprocherais rapprocher ver 25.18 54.66 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +rapprocherait rapprocher ver 25.18 54.66 0.14 0.41 cnd:pre:3s; +rapprocheront rapprocher ver 25.18 54.66 0.00 0.07 ind:fut:3p; +rapprocheur rapprocheur nom m s 0.00 0.14 0.00 0.14 +rapprochez rapprocher ver 25.18 54.66 2.65 0.34 imp:pre:2p;ind:pre:2p; +rapprochiez rapprocher ver 25.18 54.66 0.03 0.07 ind:imp:2p; +rapprochions rapprocher ver 25.18 54.66 0.01 0.14 ind:imp:1p; +rapprochons rapprocher ver 25.18 54.66 0.54 0.34 imp:pre:1p;ind:pre:1p; +rapprochât rapprocher ver 25.18 54.66 0.00 0.07 sub:imp:3s; +rapprochèrent rapprocher ver 25.18 54.66 0.04 1.96 ind:pas:3p; +rapproché rapprocher ver m s 25.18 54.66 0.86 3.51 par:pas; +rapprochée rapproché adj f s 1.70 3.72 0.78 0.41 +rapprochées rapproché adj f p 1.70 3.72 0.22 1.08 +rapprochés rapprocher ver m p 25.18 54.66 0.54 2.30 par:pas; +rappropriait rapproprier ver 0.00 0.07 0.00 0.07 ind:imp:3s; +rapsodie rapsodie nom f s 0.02 0.00 0.02 0.00 +rapt rapt nom m s 1.31 1.62 1.13 1.62 +rapts rapt nom m p 1.31 1.62 0.18 0.00 +raquaient raquer ver 0.93 2.36 0.00 0.14 ind:imp:3p; +raquait raquer ver 0.93 2.36 0.00 0.07 ind:imp:3s; +raque raquer ver 0.93 2.36 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raquent raquer ver 0.93 2.36 0.04 0.07 ind:pre:3p; +raquer raquer ver 0.93 2.36 0.40 0.88 inf; +raques raquer ver 0.93 2.36 0.07 0.00 ind:pre:2s; +raquette raquette nom f s 2.05 3.51 1.77 1.69 +raquettes raquette nom f p 2.05 3.51 0.28 1.82 +raquez raquer ver 0.93 2.36 0.02 0.00 imp:pre:2p;ind:pre:2p; +raquons raquer ver 0.93 2.36 0.00 0.07 ind:pre:1p; +raqué raquer ver m s 0.93 2.36 0.05 0.41 par:pas; +raquée raquer ver f s 0.93 2.36 0.01 0.07 par:pas; +raquées raquer ver f p 0.93 2.36 0.00 0.07 par:pas; +rare rare adj s 33.27 87.23 22.58 37.23 +rarement rarement adv 14.05 31.62 14.05 31.62 +rares rare adj p 33.27 87.23 10.70 50.00 +rareté rareté nom f s 0.63 2.43 0.51 2.30 +raretés rareté nom f p 0.63 2.43 0.13 0.14 +rarissime rarissime adj s 0.54 1.96 0.38 1.35 +rarissimement rarissimement adv 0.00 0.07 0.00 0.07 +rarissimes rarissime adj p 0.54 1.96 0.16 0.61 +raréfaction raréfaction nom f s 0.01 0.27 0.01 0.27 +raréfia raréfier ver 0.35 1.89 0.00 0.14 ind:pas:3s; +raréfiaient raréfier ver 0.35 1.89 0.00 0.07 ind:imp:3p; +raréfiait raréfier ver 0.35 1.89 0.00 0.20 ind:imp:3s; +raréfiant raréfier ver 0.35 1.89 0.00 0.14 par:pre; +raréfie raréfier ver 0.35 1.89 0.06 0.00 ind:pre:3s; +raréfient raréfier ver 0.35 1.89 0.01 0.14 ind:pre:3p; +raréfier raréfier ver 0.35 1.89 0.10 0.27 inf; +raréfièrent raréfier ver 0.35 1.89 0.10 0.20 ind:pas:3p; +raréfié raréfier ver m s 0.35 1.89 0.06 0.34 par:pas; +raréfiée raréfié adj f s 0.06 0.34 0.04 0.07 +raréfiées raréfié adj f p 0.06 0.34 0.00 0.07 +raréfiés raréfier ver m p 0.35 1.89 0.00 0.20 par:pas; +ras_le_bol ras_le_bol nom m 1.62 0.47 1.62 0.47 +ras ras adj m 7.51 16.89 5.92 9.32 +rasa raser ver 28.54 43.78 0.06 1.49 ind:pas:3s; +rasade rasade nom f s 0.47 4.86 0.46 3.11 +rasades rasade nom f p 0.47 4.86 0.01 1.76 +rasage rasage nom m s 0.95 0.41 0.83 0.41 +rasages rasage nom m p 0.95 0.41 0.12 0.00 +rasai raser ver 28.54 43.78 0.00 0.07 ind:pas:1s; +rasaient raser ver 28.54 43.78 0.01 0.68 ind:imp:3p; +rasais raser ver 28.54 43.78 0.51 0.47 ind:imp:1s;ind:imp:2s; +rasait raser ver 28.54 43.78 0.44 2.77 ind:imp:3s; +rasant raser ver 28.54 43.78 0.64 3.92 par:pre; +rasante rasant adj f s 0.33 1.89 0.15 0.74 +rasantes rasant adj f p 0.33 1.89 0.01 0.07 +rasants rasant adj m p 0.33 1.89 0.00 0.07 +rascasse rascasse nom f s 0.41 0.41 0.40 0.00 +rascasses rascasse nom f p 0.41 0.41 0.01 0.41 +rase_mottes rase_mottes nom m 0.30 0.47 0.30 0.47 +rase_pet rase_pet nom m s 0.02 0.20 0.00 0.20 +rase_pet rase_pet nom m p 0.02 0.20 0.02 0.00 +rase raser ver 28.54 43.78 4.75 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rasent raser ver 28.54 43.78 0.50 0.68 ind:pre:3p; +raser raser ver 28.54 43.78 10.27 7.50 inf;; +rasera raser ver 28.54 43.78 0.32 0.14 ind:fut:3s; +raserai raser ver 28.54 43.78 0.55 0.14 ind:fut:1s; +raserais raser ver 28.54 43.78 0.08 0.07 cnd:pre:1s;cnd:pre:2s; +raserait raser ver 28.54 43.78 0.05 0.27 cnd:pre:3s; +raseras raser ver 28.54 43.78 0.02 0.14 ind:fut:2s; +raserez raser ver 28.54 43.78 0.01 0.00 ind:fut:2p; +raseront raser ver 28.54 43.78 0.16 0.00 ind:fut:3p; +rases raser ver 28.54 43.78 1.13 0.34 ind:pre:2s; +raseur raseur nom m s 0.65 1.15 0.46 0.47 +raseurs raseur nom m p 0.65 1.15 0.16 0.14 +raseuse raseur nom f s 0.65 1.15 0.03 0.47 +raseuses raseur nom f p 0.65 1.15 0.00 0.07 +rasez raser ver 28.54 43.78 0.64 0.20 imp:pre:2p;ind:pre:2p; +rash rash nom m s 0.03 0.07 0.03 0.07 +rasibus rasibus adv_sup 0.01 0.34 0.01 0.34 +rasiez raser ver 28.54 43.78 0.04 0.00 ind:imp:2p; +rasif rasif nom m s 0.00 0.54 0.00 0.47 +rasifs rasif nom m p 0.00 0.54 0.00 0.07 +rasoir rasoir nom m s 8.92 16.82 8.18 15.61 +rasoirs rasoir nom m p 8.92 16.82 0.74 1.22 +rasons raser ver 28.54 43.78 0.29 0.00 imp:pre:1p;ind:pre:1p; +rassasiaient rassasier ver 1.48 3.58 0.00 0.27 ind:imp:3p; +rassasiais rassasier ver 1.48 3.58 0.00 0.07 ind:imp:1s; +rassasiait rassasier ver 1.48 3.58 0.00 0.20 ind:imp:3s; +rassasiant rassasiant adj m s 0.01 0.07 0.01 0.00 +rassasiantes rassasiant adj f p 0.01 0.07 0.00 0.07 +rassasie rassasier ver 1.48 3.58 0.14 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassasient rassasier ver 1.48 3.58 0.02 0.00 ind:pre:3p; +rassasier rassasier ver 1.48 3.58 0.39 0.88 inf; +rassasieraient rassasier ver 1.48 3.58 0.00 0.07 cnd:pre:3p; +rassasiez rassasier ver 1.48 3.58 0.11 0.00 imp:pre:2p; +rassasiât rassasier ver 1.48 3.58 0.00 0.07 sub:imp:3s; +rassasié rassasier ver m s 1.48 3.58 0.50 1.08 par:pas; +rassasiée rassasier ver f s 1.48 3.58 0.18 0.41 par:pas; +rassasiées rassasié adj f p 0.53 1.35 0.01 0.07 +rassasiés rassasier ver m p 1.48 3.58 0.14 0.20 par:pas; +rasse rasse nom f s 0.00 0.07 0.00 0.07 +rassembla rassembler ver 25.99 52.70 0.14 2.97 ind:pas:3s; +rassemblai rassembler ver 25.99 52.70 0.01 0.54 ind:pas:1s; +rassemblaient rassembler ver 25.99 52.70 0.18 2.50 ind:imp:3p; +rassemblais rassembler ver 25.99 52.70 0.07 0.81 ind:imp:1s; +rassemblait rassembler ver 25.99 52.70 0.18 2.97 ind:imp:3s; +rassemblant rassembler ver 25.99 52.70 0.45 2.97 par:pre; +rassemble rassembler ver 25.99 52.70 5.75 5.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassemblement rassemblement nom m s 4.96 8.24 4.39 7.30 +rassemblements rassemblement nom m p 4.96 8.24 0.57 0.95 +rassemblent rassembler ver 25.99 52.70 1.59 1.35 ind:pre:3p; +rassembler rassembler ver 25.99 52.70 6.89 11.76 inf; +rassemblera rassembler ver 25.99 52.70 0.26 0.27 ind:fut:3s; +rassemblerai rassembler ver 25.99 52.70 0.05 0.07 ind:fut:1s; +rassembleraient rassembler ver 25.99 52.70 0.00 0.07 cnd:pre:3p; +rassemblerais rassembler ver 25.99 52.70 0.00 0.07 cnd:pre:1s; +rassemblerait rassembler ver 25.99 52.70 0.01 0.20 cnd:pre:3s; +rassembleras rassembler ver 25.99 52.70 0.14 0.00 ind:fut:2s; +rassemblerez rassembler ver 25.99 52.70 0.02 0.00 ind:fut:2p; +rassemblerons rassembler ver 25.99 52.70 0.05 0.00 ind:fut:1p; +rassembleront rassembler ver 25.99 52.70 0.10 0.14 ind:fut:3p; +rassembles rassembler ver 25.99 52.70 0.09 0.07 ind:pre:2s; +rassembleur rassembleur nom m s 0.00 0.14 0.00 0.14 +rassemblez rassembler ver 25.99 52.70 4.35 0.07 imp:pre:2p;ind:pre:2p; +rassemblons rassembler ver 25.99 52.70 1.06 0.00 imp:pre:1p;ind:pre:1p; +rassemblèrent rassembler ver 25.99 52.70 0.02 0.81 ind:pas:3p; +rassemblé rassembler ver m s 25.99 52.70 2.09 5.54 par:pas; +rassemblée rassembler ver f s 25.99 52.70 0.20 2.77 par:pas; +rassemblées rassembler ver f p 25.99 52.70 0.45 3.45 par:pas; +rassemblés rassembler ver m p 25.99 52.70 1.84 8.18 par:pas; +rasseoir rasseoir ver 1.97 14.05 0.52 2.91 inf; +rasseyaient rasseoir ver 1.97 14.05 0.00 0.07 ind:imp:3p; +rasseyais rasseoir ver 1.97 14.05 0.01 0.14 ind:imp:1s; +rasseyait rasseoir ver 1.97 14.05 0.00 0.41 ind:imp:3s; +rasseyant rasseoir ver 1.97 14.05 0.00 0.61 par:pre; +rasseyent rasseoir ver 1.97 14.05 0.00 0.07 ind:pre:3p; +rasseyez rasseoir ver 1.97 14.05 0.45 0.00 imp:pre:2p;ind:pre:2p; +rasseyons rasseoir ver 1.97 14.05 0.00 0.14 ind:pre:1p; +rassied rasseoir ver 1.97 14.05 0.01 0.74 ind:pre:3s; +rassieds rasseoir ver 1.97 14.05 0.22 0.00 imp:pre:2s;ind:pre:1s; +rassir rassir ver 0.01 0.00 0.01 0.00 inf; +rassirent rasseoir ver 1.97 14.05 0.00 0.14 ind:pas:3p; +rassis rasseoir ver m 1.97 14.05 0.47 3.24 ind:pas:1s;par:pas;par:pas; +rassise rasseoir ver f s 1.97 14.05 0.00 0.61 par:pas; +rassit rasseoir ver 1.97 14.05 0.01 4.12 ind:pas:3s; +rassoie rasseoir ver 1.97 14.05 0.01 0.00 sub:pre:3s; +rassoient rasseoir ver 1.97 14.05 0.00 0.07 ind:pre:3p; +rassoies rasseoir ver 1.97 14.05 0.01 0.00 sub:pre:2s; +rassois rasseoir ver 1.97 14.05 0.01 0.20 ind:pre:1s; +rassoit rasseoir ver 1.97 14.05 0.25 0.54 ind:pre:3s; +rassortiment rassortiment nom m s 0.00 0.07 0.00 0.07 +rassortir rassortir ver 0.01 0.07 0.01 0.07 inf; +rassoté rassoter ver m s 0.00 0.07 0.00 0.07 par:pas; +rassoyait rasseoir ver 1.97 14.05 0.00 0.07 ind:imp:3s; +rassura rassurer ver 29.25 68.04 0.00 3.65 ind:pas:3s; +rassurai rassurer ver 29.25 68.04 0.01 0.88 ind:pas:1s; +rassuraient rassurer ver 29.25 68.04 0.01 1.42 ind:imp:3p; +rassurais rassurer ver 29.25 68.04 0.00 0.41 ind:imp:1s; +rassurait rassurer ver 29.25 68.04 0.46 5.07 ind:imp:3s; +rassurant rassurant adj m s 3.16 16.69 2.81 7.64 +rassurante rassurant adj f s 3.16 16.69 0.21 5.34 +rassurantes rassurant adj f p 3.16 16.69 0.09 2.50 +rassurants rassurant adj m p 3.16 16.69 0.05 1.22 +rassure rassurer ver 29.25 68.04 9.62 9.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassurement rassurement nom m s 0.00 0.07 0.00 0.07 +rassurent rassurer ver 29.25 68.04 0.42 0.54 ind:pre:3p; +rassurer rassurer ver 29.25 68.04 6.06 17.57 inf; +rassurera rassurer ver 29.25 68.04 0.34 0.20 ind:fut:3s; +rassurerait rassurer ver 29.25 68.04 0.34 0.54 cnd:pre:3s; +rassureront rassurer ver 29.25 68.04 0.14 0.07 ind:fut:3p; +rassures rassurer ver 29.25 68.04 0.58 0.14 ind:pre:2s; +rassurez rassurer ver 29.25 68.04 5.42 3.51 imp:pre:2p;ind:pre:2p; +rassuriez rassurer ver 29.25 68.04 0.00 0.07 ind:imp:2p; +rassurâmes rassurer ver 29.25 68.04 0.00 0.07 ind:pas:1p; +rassurons rassurer ver 29.25 68.04 0.02 0.20 imp:pre:1p;ind:pre:1p; +rassurât rassurer ver 29.25 68.04 0.00 0.14 sub:imp:3s; +rassérène rasséréner ver 0.02 4.39 0.00 0.41 ind:pre:1s;ind:pre:3s; +rassurèrent rassurer ver 29.25 68.04 0.00 0.34 ind:pas:3p; +rassuré rassurer ver m s 29.25 68.04 2.56 12.50 par:pas; +rassurée rassurer ver f s 29.25 68.04 2.44 5.88 par:pas; +rassurées rassurer ver f p 29.25 68.04 0.19 0.27 par:pas; +rasséréna rasséréner ver 0.02 4.39 0.00 0.54 ind:pas:3s; +rassérénai rasséréner ver 0.02 4.39 0.00 0.27 ind:pas:1s; +rassérénait rasséréner ver 0.02 4.39 0.01 0.34 ind:imp:3s; +rassérénant rasséréner ver 0.02 4.39 0.00 0.07 par:pre; +rasséréner rasséréner ver 0.02 4.39 0.00 0.20 inf; +rassérénera rasséréner ver 0.02 4.39 0.00 0.07 ind:fut:3s; +rasséréné rasséréner ver m s 0.02 4.39 0.00 1.82 par:pas; +rassérénée rasséréner ver f s 0.02 4.39 0.00 0.54 par:pas; +rassérénées rasséréner ver f p 0.02 4.39 0.00 0.07 par:pas; +rassérénés rasséréner ver m p 0.02 4.39 0.01 0.07 par:pas; +rassurés rassurer ver m p 29.25 68.04 0.55 2.64 par:pas; +rasta rasta nom m s 0.43 0.34 0.32 0.20 +rastafari rastafari adj m s 0.03 0.00 0.03 0.00 +rastafari rastafari nom m s 0.03 0.00 0.03 0.00 +rastaquouère rastaquouère nom m s 0.05 0.41 0.01 0.20 +rastaquouères rastaquouère nom m p 0.05 0.41 0.04 0.20 +rastas rasta nom m p 0.43 0.34 0.12 0.14 +rasèrent raser ver 28.54 43.78 0.00 0.14 ind:pas:3p; +rasé raser ver m s 28.54 43.78 5.35 13.92 par:pas; +rasée raser ver f s 28.54 43.78 1.83 3.51 par:pas; +rasées raser ver f p 28.54 43.78 0.16 1.82 par:pas; +rasés raser ver m p 28.54 43.78 0.76 2.91 par:pas; +rat_de_cave rat_de_cave nom m s 0.00 0.07 0.00 0.07 +rat rat nom m s 45.60 37.64 24.21 20.81 +rata rata nom m s 0.53 0.27 0.53 0.27 +ratafia ratafia nom m s 0.02 0.54 0.02 0.54 +ratage ratage nom m s 0.63 1.01 0.16 0.68 +ratages ratage nom m p 0.63 1.01 0.47 0.34 +ratai rater ver 80.45 22.70 0.00 0.27 ind:pas:1s; +rataient rater ver 80.45 22.70 0.03 0.14 ind:imp:3p; +ratais rater ver 80.45 22.70 0.31 0.34 ind:imp:1s;ind:imp:2s; +ratait rater ver 80.45 22.70 0.23 1.22 ind:imp:3s; +ratant rater ver 80.45 22.70 0.09 0.07 par:pre; +rataplan rataplan ono 0.00 0.07 0.00 0.07 +ratatinai ratatiner ver 0.69 3.65 0.00 0.07 ind:pas:1s; +ratatinaient ratatiner ver 0.69 3.65 0.00 0.14 ind:imp:3p; +ratatinais ratatiner ver 0.69 3.65 0.01 0.00 ind:imp:1s; +ratatinait ratatiner ver 0.69 3.65 0.00 0.47 ind:imp:3s; +ratatine ratatiner ver 0.69 3.65 0.13 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ratatinent ratatiner ver 0.69 3.65 0.01 0.00 ind:pre:3p; +ratatiner ratatiner ver 0.69 3.65 0.21 0.54 inf; +ratatinerait ratatiner ver 0.69 3.65 0.01 0.07 cnd:pre:3s; +ratatineront ratatiner ver 0.69 3.65 0.01 0.07 ind:fut:3p; +ratatiné ratatiner ver m s 0.69 3.65 0.24 1.08 par:pas; +ratatinée ratatiner ver f s 0.69 3.65 0.04 0.61 par:pas; +ratatinées ratatiné adj f p 0.40 2.09 0.11 0.27 +ratatinés ratatiner ver m p 0.69 3.65 0.03 0.27 par:pas; +ratatouille ratatouille nom f s 0.54 0.74 0.54 0.61 +ratatouilles ratatouille nom f p 0.54 0.74 0.00 0.14 +rate rater ver 80.45 22.70 8.32 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +ratent rater ver 80.45 22.70 0.54 0.61 ind:pre:3p; +rater rater ver 80.45 22.70 24.71 6.28 inf; +ratera rater ver 80.45 22.70 0.42 0.00 ind:fut:3s; +raterai rater ver 80.45 22.70 0.64 0.00 ind:fut:1s; +raterais rater ver 80.45 22.70 0.63 0.14 cnd:pre:1s;cnd:pre:2s; +raterait rater ver 80.45 22.70 0.40 0.07 cnd:pre:3s; +rateras rater ver 80.45 22.70 0.21 0.07 ind:fut:2s; +raterez rater ver 80.45 22.70 0.34 0.00 ind:fut:2p; +rateriez rater ver 80.45 22.70 0.03 0.00 cnd:pre:2p; +raterons rater ver 80.45 22.70 0.14 0.00 ind:fut:1p; +rateront rater ver 80.45 22.70 0.27 0.07 ind:fut:3p; +rates rater ver 80.45 22.70 3.75 0.27 ind:pre:2s;sub:pre:2s; +ratez rater ver 80.45 22.70 2.10 0.14 imp:pre:2p;ind:pre:2p; +ratiboisaient ratiboiser ver 0.09 0.81 0.00 0.07 ind:imp:3p; +ratiboisait ratiboiser ver 0.09 0.81 0.00 0.14 ind:imp:3s; +ratiboiser ratiboiser ver 0.09 0.81 0.06 0.07 inf; +ratiboises ratiboiser ver 0.09 0.81 0.00 0.07 ind:pre:2s; +ratiboisé ratiboiser ver m s 0.09 0.81 0.01 0.47 par:pas; +ratiboisés ratiboiser ver m p 0.09 0.81 0.02 0.00 par:pas; +ratiche ratiche nom f s 0.04 1.76 0.00 0.47 +ratiches ratiche nom f p 0.04 1.76 0.04 1.28 +ratichon ratichon nom m s 0.00 0.61 0.00 0.41 +ratichons ratichon nom m p 0.00 0.61 0.00 0.20 +raticide raticide nom m s 0.04 0.00 0.04 0.00 +ratier ratier nom m s 0.00 0.88 0.00 0.88 +ratiez rater ver 80.45 22.70 0.20 0.07 ind:imp:2p;sub:pre:2p; +ratifia ratifier ver 0.80 1.22 0.00 0.07 ind:pas:3s; +ratifiant ratifier ver 0.80 1.22 0.00 0.07 par:pre; +ratification ratification nom f s 0.28 1.08 0.28 1.08 +ratifie ratifier ver 0.80 1.22 0.04 0.07 ind:pre:3s; +ratifient ratifier ver 0.80 1.22 0.00 0.07 ind:pre:3p; +ratifier ratifier ver 0.80 1.22 0.30 0.27 inf; +ratifieront ratifier ver 0.80 1.22 0.02 0.00 ind:fut:3p; +ratifié ratifier ver m s 0.80 1.22 0.34 0.27 par:pas; +ratifiée ratifier ver f s 0.80 1.22 0.10 0.27 par:pas; +ratifiés ratifier ver m p 0.80 1.22 0.00 0.14 par:pas; +ratine ratine nom f s 0.00 0.47 0.00 0.47 +ratio ratio nom m s 0.40 0.00 0.40 0.00 +ratiocinait ratiociner ver 0.00 0.14 0.00 0.07 ind:imp:3s; +ratiocinant ratiociner ver 0.00 0.14 0.00 0.07 par:pre; +ratiocination ratiocination nom f s 0.02 0.54 0.02 0.00 +ratiocinations ratiocination nom f p 0.02 0.54 0.00 0.54 +ratiocineur ratiocineur nom m s 0.01 0.14 0.01 0.14 +ration ration nom f s 3.54 8.18 2.24 5.95 +rational rational nom m s 0.02 0.00 0.02 0.00 +rationalisation rationalisation nom f s 0.08 0.20 0.08 0.20 +rationalise rationaliser ver 0.58 0.00 0.22 0.00 ind:pre:1s;ind:pre:3s; +rationaliser rationaliser ver 0.58 0.00 0.34 0.00 inf; +rationalisez rationaliser ver 0.58 0.00 0.01 0.00 ind:pre:2p; +rationalisme rationalisme nom m s 0.34 0.41 0.34 0.41 +rationaliste rationaliste nom s 0.14 0.27 0.14 0.20 +rationalistes rationaliste adj f p 0.01 0.47 0.00 0.07 +rationalisé rationaliser ver m s 0.58 0.00 0.01 0.00 par:pas; +rationalisée rationalisé adj f s 0.01 0.20 0.01 0.20 +rationalité rationalité nom f s 0.11 0.27 0.11 0.27 +rationne rationner ver 0.66 1.01 0.06 0.07 ind:pre:1s;ind:pre:3s; +rationnel rationnel adj m s 3.50 3.04 1.26 1.08 +rationnelle rationnel adj f s 3.50 3.04 1.73 1.42 +rationnellement rationnellement adv 0.41 0.41 0.41 0.41 +rationnelles rationnel adj f p 3.50 3.04 0.14 0.34 +rationnels rationnel adj m p 3.50 3.04 0.35 0.20 +rationnement rationnement nom m s 1.12 1.55 1.12 1.55 +rationner rationner ver 0.66 1.01 0.19 0.20 inf; +rationnez rationner ver 0.66 1.01 0.01 0.00 ind:pre:2p; +rationné rationner ver m s 0.66 1.01 0.20 0.41 par:pas; +rationnée rationner ver f s 0.66 1.01 0.02 0.14 par:pas; +rationnées rationner ver f p 0.66 1.01 0.02 0.00 par:pas; +rationnés rationner ver m p 0.66 1.01 0.17 0.20 par:pas; +rations ration nom f p 3.54 8.18 1.30 2.23 +ratissa ratisser ver 3.45 5.27 0.00 0.20 ind:pas:3s; +ratissage ratissage nom m s 0.40 0.20 0.40 0.20 +ratissaient ratisser ver 3.45 5.27 0.01 0.20 ind:imp:3p; +ratissais ratisser ver 3.45 5.27 0.01 0.07 ind:imp:1s; +ratissait ratisser ver 3.45 5.27 0.03 0.47 ind:imp:3s; +ratissant ratisser ver 3.45 5.27 0.01 0.27 par:pre; +ratisse ratisser ver 3.45 5.27 0.81 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ratissent ratisser ver 3.45 5.27 0.58 0.00 ind:pre:3p; +ratisser ratisser ver 3.45 5.27 1.13 1.28 inf; +ratisserai ratisser ver 3.45 5.27 0.01 0.00 ind:fut:1s; +ratisseront ratisser ver 3.45 5.27 0.02 0.00 ind:fut:3p; +ratisseur ratisseur adj m s 0.00 0.07 0.00 0.07 +ratissez ratisser ver 3.45 5.27 0.27 0.00 imp:pre:2p; +ratissons ratisser ver 3.45 5.27 0.13 0.00 imp:pre:1p;ind:pre:1p; +ratissé ratisser ver m s 3.45 5.27 0.40 1.49 par:pas; +ratissée ratisser ver f s 3.45 5.27 0.01 0.41 par:pas; +ratissées ratisser ver f p 3.45 5.27 0.00 0.27 par:pas; +ratissés ratisser ver m p 3.45 5.27 0.01 0.07 par:pas; +ratite ratite nom m s 0.05 0.00 0.03 0.00 +ratites ratite nom m p 0.05 0.00 0.02 0.00 +ratière ratière nom f s 0.12 1.49 0.12 1.42 +ratières ratière nom f p 0.12 1.49 0.00 0.07 +raton raton nom m s 1.70 5.41 1.37 3.11 +ratonnade ratonnade nom f s 0.01 0.34 0.00 0.14 +ratonnades ratonnade nom f p 0.01 0.34 0.01 0.20 +ratonnent ratonner ver 0.00 0.20 0.00 0.07 ind:pre:3p; +ratonner ratonner ver 0.00 0.20 0.00 0.14 inf; +ratons raton nom m p 1.70 5.41 0.33 2.30 +rats rat nom m p 45.60 37.64 21.39 16.82 +rattacha rattacher ver 2.13 12.03 0.00 0.07 ind:pas:3s; +rattachaient rattacher ver 2.13 12.03 0.00 0.68 ind:imp:3p; +rattachais rattacher ver 2.13 12.03 0.00 0.14 ind:imp:1s; +rattachait rattacher ver 2.13 12.03 0.05 2.43 ind:imp:3s; +rattachant rattacher ver 2.13 12.03 0.11 0.27 par:pre; +rattache rattacher ver 2.13 12.03 0.70 1.08 imp:pre:2s;ind:pre:3s; +rattachement rattachement nom m s 0.13 0.68 0.13 0.68 +rattachent rattacher ver 2.13 12.03 0.07 0.68 ind:pre:3p; +rattacher rattacher ver 2.13 12.03 0.37 2.30 inf;; +rattachera rattacher ver 2.13 12.03 0.03 0.07 ind:fut:3s; +rattacherait rattacher ver 2.13 12.03 0.00 0.07 cnd:pre:3s; +rattachez rattacher ver 2.13 12.03 0.03 0.07 imp:pre:2p;ind:pre:2p; +rattachions rattacher ver 2.13 12.03 0.00 0.07 ind:imp:1p; +rattachons rattacher ver 2.13 12.03 0.00 0.07 ind:pre:1p; +rattachât rattacher ver 2.13 12.03 0.00 0.07 sub:imp:3s; +rattaché rattacher ver m s 2.13 12.03 0.45 1.35 par:pas; +rattachée rattacher ver f s 2.13 12.03 0.08 1.08 par:pas; +rattachées rattacher ver f p 2.13 12.03 0.06 0.34 par:pas; +rattachés rattacher ver m p 2.13 12.03 0.17 1.22 par:pas; +ratte ratte nom f s 0.01 0.00 0.01 0.00 +ratèrent rater ver 80.45 22.70 0.00 0.14 ind:pas:3p; +rattrapa rattraper ver 38.32 39.39 0.05 3.99 ind:pas:3s; +rattrapage rattrapage nom m s 0.88 0.68 0.84 0.61 +rattrapages rattrapage nom m p 0.88 0.68 0.04 0.07 +rattrapai rattraper ver 38.32 39.39 0.00 0.41 ind:pas:1s; +rattrapaient rattraper ver 38.32 39.39 0.03 0.34 ind:imp:3p; +rattrapais rattraper ver 38.32 39.39 0.06 0.41 ind:imp:1s; +rattrapait rattraper ver 38.32 39.39 0.19 1.82 ind:imp:3s; +rattrapant rattraper ver 38.32 39.39 0.05 1.42 par:pre; +rattrape rattraper ver 38.32 39.39 7.35 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rattrapent rattraper ver 38.32 39.39 0.91 0.47 ind:pre:3p; +rattraper rattraper ver 38.32 39.39 16.35 16.49 inf; +rattrapera rattraper ver 38.32 39.39 1.67 0.54 ind:fut:3s; +rattraperai rattraper ver 38.32 39.39 1.41 0.34 ind:fut:1s; +rattraperaient rattraper ver 38.32 39.39 0.04 0.00 cnd:pre:3p; +rattraperais rattraper ver 38.32 39.39 0.23 0.20 cnd:pre:1s;cnd:pre:2s; +rattraperait rattraper ver 38.32 39.39 0.15 0.54 cnd:pre:3s; +rattraperas rattraper ver 38.32 39.39 0.53 0.27 ind:fut:2s; +rattraperez rattraper ver 38.32 39.39 0.34 0.14 ind:fut:2p; +rattraperons rattraper ver 38.32 39.39 0.42 0.14 ind:fut:1p; +rattraperont rattraper ver 38.32 39.39 0.50 0.07 ind:fut:3p; +rattrapes rattraper ver 38.32 39.39 0.37 0.07 ind:pre:2s; +rattrapez rattraper ver 38.32 39.39 3.11 0.07 imp:pre:2p;ind:pre:2p; +rattrapiez rattraper ver 38.32 39.39 0.01 0.00 ind:imp:2p; +rattrapions rattraper ver 38.32 39.39 0.00 0.41 ind:imp:1p; +rattrapons rattraper ver 38.32 39.39 0.82 0.07 imp:pre:1p;ind:pre:1p; +rattrapât rattraper ver 38.32 39.39 0.00 0.07 sub:imp:3s; +rattrapèrent rattraper ver 38.32 39.39 0.02 0.41 ind:pas:3p; +rattrapé rattraper ver m s 38.32 39.39 2.30 3.85 par:pas; +rattrapée rattraper ver f s 38.32 39.39 0.92 1.55 par:pas; +rattrapées rattraper ver f p 38.32 39.39 0.00 0.27 par:pas; +rattrapés rattraper ver m p 38.32 39.39 0.49 0.74 par:pas; +raté rater ver m s 80.45 22.70 34.33 7.70 par:pas; +ratée rater ver f s 80.45 22.70 1.59 1.08 par:pas; +ratées raté adj f p 4.52 4.05 0.44 0.34 +ratura raturer ver 0.04 2.09 0.00 0.14 ind:pas:3s; +raturai raturer ver 0.04 2.09 0.00 0.07 ind:pas:1s; +raturais raturer ver 0.04 2.09 0.00 0.07 ind:imp:1s; +raturait raturer ver 0.04 2.09 0.00 0.14 ind:imp:3s; +rature raturer ver 0.04 2.09 0.02 0.07 ind:pre:3s; +raturer raturer ver 0.04 2.09 0.00 0.41 inf; +ratures rature nom f p 0.13 1.96 0.11 1.49 +raturé raturer ver m s 0.04 2.09 0.02 0.54 par:pas; +raturée raturer ver f s 0.04 2.09 0.00 0.41 par:pas; +raturées raturer ver f p 0.04 2.09 0.00 0.14 par:pas; +raturés raturer ver m p 0.04 2.09 0.00 0.14 par:pas; +ratés raté nom m p 8.45 4.93 1.27 1.96 +raucité raucité nom f s 0.00 0.61 0.00 0.61 +rauqua rauquer ver 0.00 0.20 0.00 0.07 ind:pas:3s; +rauque rauque adj s 0.44 18.85 0.30 14.80 +rauquement rauquement nom m s 0.00 0.20 0.00 0.20 +rauques rauque adj p 0.44 18.85 0.14 4.05 +ravage ravager ver 3.65 9.26 0.34 0.54 ind:pre:3s; +ravagea ravager ver 3.65 9.26 0.14 0.34 ind:pas:3s; +ravageaient ravager ver 3.65 9.26 0.16 0.68 ind:imp:3p; +ravageais ravager ver 3.65 9.26 0.01 0.00 ind:imp:2s; +ravageait ravager ver 3.65 9.26 0.02 1.22 ind:imp:3s; +ravageant ravageant adj m s 0.05 0.27 0.05 0.20 +ravageante ravageant adj f s 0.05 0.27 0.00 0.07 +ravagent ravager ver 3.65 9.26 0.76 0.41 ind:pre:3p; +ravager ravager ver 3.65 9.26 0.28 1.22 inf; +ravagera ravager ver 3.65 9.26 0.02 0.00 ind:fut:3s; +ravagerai ravager ver 3.65 9.26 0.00 0.07 ind:fut:1s; +ravageraient ravager ver 3.65 9.26 0.00 0.07 cnd:pre:3p; +ravages ravage nom m p 2.16 5.54 2.04 5.14 +ravageur ravageur adj m s 0.12 1.42 0.07 1.01 +ravageurs ravageur adj m p 0.12 1.42 0.02 0.14 +ravageuse ravageuse nom f s 0.03 0.00 0.03 0.00 +ravageuses ravageur adj f p 0.12 1.42 0.01 0.00 +ravagez ravager ver 3.65 9.26 0.14 0.00 ind:pre:2p; +ravagèrent ravager ver 3.65 9.26 0.00 0.14 ind:pas:3p; +ravagé ravager ver m s 3.65 9.26 1.03 2.64 par:pas; +ravagée ravager ver f s 3.65 9.26 0.21 0.74 par:pas; +ravagées ravager ver f p 3.65 9.26 0.06 0.27 par:pas; +ravagés ravager ver m p 3.65 9.26 0.36 0.95 par:pas; +raval raval nom m s 0.20 0.00 0.20 0.00 +ravala ravaler ver 1.42 8.99 0.00 0.88 ind:pas:3s; +ravalai ravaler ver 1.42 8.99 0.01 0.20 ind:pas:1s; +ravalaient ravaler ver 1.42 8.99 0.00 0.14 ind:imp:3p; +ravalais ravaler ver 1.42 8.99 0.00 0.14 ind:imp:1s; +ravalait ravaler ver 1.42 8.99 0.00 0.81 ind:imp:3s; +ravalant ravaler ver 1.42 8.99 0.11 0.95 par:pre; +ravale ravaler ver 1.42 8.99 0.46 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ravalement ravalement nom m s 0.19 0.41 0.19 0.41 +ravalent ravaler ver 1.42 8.99 0.10 0.14 ind:pre:3p; +ravaler ravaler ver 1.42 8.99 0.47 2.09 inf; +ravalera ravaler ver 1.42 8.99 0.01 0.00 ind:fut:3s; +ravaleront ravaler ver 1.42 8.99 0.00 0.07 ind:fut:3p; +ravales ravaler ver 1.42 8.99 0.04 0.07 ind:pre:2s; +ravaleur ravaleur nom m s 0.00 0.07 0.00 0.07 +ravalez ravaler ver 1.42 8.99 0.01 0.00 imp:pre:2p; +ravalons ravaler ver 1.42 8.99 0.02 0.00 imp:pre:1p; +ravalât ravaler ver 1.42 8.99 0.00 0.07 sub:imp:3s; +ravalé ravaler ver m s 1.42 8.99 0.07 1.01 par:pas; +ravalée ravaler ver f s 1.42 8.99 0.02 0.34 par:pas; +ravalées ravaler ver f p 1.42 8.99 0.10 0.34 par:pas; +ravalés ravaler ver m p 1.42 8.99 0.00 0.41 par:pas; +ravaudage ravaudage nom m s 0.01 0.20 0.01 0.20 +ravaudait ravauder ver 0.00 1.08 0.00 0.34 ind:imp:3s; +ravaudant ravauder ver 0.00 1.08 0.00 0.14 par:pre; +ravaude ravauder ver 0.00 1.08 0.00 0.14 ind:pre:3s; +ravauder ravauder ver 0.00 1.08 0.00 0.27 inf; +ravaudé ravauder ver m s 0.00 1.08 0.00 0.07 par:pas; +ravaudées ravauder ver f p 0.00 1.08 0.00 0.07 par:pas; +ravaudés ravauder ver m p 0.00 1.08 0.00 0.07 par:pas; +rave rave nom f s 1.57 1.01 1.27 0.00 +ravenelles ravenelle nom f p 0.00 0.14 0.00 0.14 +ravennate ravennate adj s 0.00 0.07 0.00 0.07 +raves rave nom f p 1.57 1.01 0.30 1.01 +ravi ravir ver m s 72.67 27.91 40.64 11.42 par:pas; +ravie ravir ver f s 72.67 27.91 23.25 5.20 par:pas; +ravier ravier nom m s 0.00 1.01 0.00 0.61 +raviers ravier nom m p 0.00 1.01 0.00 0.41 +ravies ravir ver f p 72.67 27.91 0.82 0.47 par:pas; +ravigotait ravigoter ver 0.02 0.07 0.00 0.07 ind:imp:3s; +ravigotant ravigotant adj m s 0.02 0.14 0.02 0.07 +ravigotants ravigotant adj m p 0.02 0.14 0.00 0.07 +ravigote ravigote nom f s 0.00 0.14 0.00 0.14 +ravigoter ravigoter ver 0.02 0.07 0.02 0.00 inf; +ravin ravin nom m s 4.93 11.35 4.30 9.12 +ravina raviner ver 0.08 2.57 0.04 0.07 ind:pas:3s; +ravinaient raviner ver 0.08 2.57 0.00 0.14 ind:imp:3p; +ravinant raviner ver 0.08 2.57 0.00 0.14 par:pre; +ravine ravine nom f s 0.30 0.95 0.25 0.54 +ravinement ravinement nom m s 0.00 0.14 0.00 0.07 +ravinements ravinement nom m p 0.00 0.14 0.00 0.07 +ravinent raviner ver 0.08 2.57 0.00 0.07 ind:pre:3p; +raviner raviner ver 0.08 2.57 0.00 0.14 inf; +ravines ravine nom f p 0.30 0.95 0.05 0.41 +ravins ravin nom m p 4.93 11.35 0.63 2.23 +raviné raviner ver m s 0.08 2.57 0.00 0.61 par:pas; +ravinée raviner ver f s 0.08 2.57 0.01 0.54 par:pas; +ravinées raviner ver f p 0.08 2.57 0.01 0.27 par:pas; +ravinés raviner ver m p 0.08 2.57 0.01 0.54 par:pas; +ravioli ravioli nom m 2.71 1.22 0.95 0.88 +raviolis ravioli nom m p 2.71 1.22 1.76 0.34 +ravir ravir ver 72.67 27.91 2.08 3.45 inf; +ravirait ravir ver 72.67 27.91 0.13 0.20 cnd:pre:3s; +ravirent ravir ver 72.67 27.91 0.00 0.20 ind:pas:3p; +raviront ravir ver 72.67 27.91 0.11 0.00 ind:fut:3p; +ravis ravir ver m p 72.67 27.91 3.81 2.50 imp:pre:2s;par:pas; +ravisa raviser ver 0.99 5.95 0.02 2.57 ind:pas:3s; +ravisais raviser ver 0.99 5.95 0.04 0.00 ind:imp:1s;ind:imp:2s; +ravisait raviser ver 0.99 5.95 0.02 0.34 ind:imp:3s; +ravisant raviser ver 0.99 5.95 0.10 1.08 par:pre; +ravise raviser ver 0.99 5.95 0.22 0.81 ind:pre:1s;ind:pre:3s; +ravisent raviser ver 0.99 5.95 0.02 0.00 ind:pre:3p; +raviser raviser ver 0.99 5.95 0.07 0.61 inf; +ravisera raviser ver 0.99 5.95 0.03 0.00 ind:fut:3s; +raviserais raviser ver 0.99 5.95 0.04 0.00 cnd:pre:2s; +ravises raviser ver 0.99 5.95 0.02 0.00 ind:pre:2s; +ravisez raviser ver 0.99 5.95 0.02 0.00 imp:pre:2p;ind:pre:2p; +ravissaient ravir ver 72.67 27.91 0.02 0.34 ind:imp:3p; +ravissait ravir ver 72.67 27.91 0.02 2.43 ind:imp:3s; +ravissant ravissant adj m s 15.85 13.51 4.62 4.59 +ravissante ravissant adj f s 15.85 13.51 9.22 5.88 +ravissantes ravissant adj f p 15.85 13.51 1.47 1.62 +ravissants ravissant adj m p 15.85 13.51 0.54 1.42 +ravisse ravir ver 72.67 27.91 0.27 0.00 sub:pre:3s; +ravissement ravissement nom m s 1.34 6.55 1.34 6.49 +ravissements ravissement nom m p 1.34 6.55 0.00 0.07 +ravissent ravir ver 72.67 27.91 0.11 0.54 ind:pre:3p; +ravisseur ravisseur nom m s 5.75 1.69 2.21 1.01 +ravisseurs ravisseur nom m p 5.75 1.69 3.52 0.68 +ravisseuse ravisseur nom f s 5.75 1.69 0.03 0.00 +ravisé raviser ver m s 0.99 5.95 0.32 0.34 par:pas; +ravisée raviser ver f s 0.99 5.95 0.07 0.20 par:pas; +ravit ravir ver 72.67 27.91 1.15 1.01 ind:pre:3s;ind:pas:3s; +ravitaillaient ravitailler ver 1.49 3.85 0.00 0.34 ind:imp:3p; +ravitaillait ravitailler ver 1.49 3.85 0.00 0.27 ind:imp:3s; +ravitaille ravitailler ver 1.49 3.85 0.36 0.34 imp:pre:2s;ind:pre:3s; +ravitaillement ravitaillement nom m s 2.83 12.57 2.66 11.42 +ravitaillements ravitaillement nom m p 2.83 12.57 0.17 1.15 +ravitaillent ravitailler ver 1.49 3.85 0.05 0.14 ind:pre:3p; +ravitailler ravitailler ver 1.49 3.85 0.82 1.69 inf; +ravitaillera ravitailler ver 1.49 3.85 0.05 0.00 ind:fut:3s; +ravitaillerait ravitailler ver 1.49 3.85 0.01 0.14 cnd:pre:3s; +ravitailleras ravitailler ver 1.49 3.85 0.00 0.07 ind:fut:2s; +ravitaillerez ravitailler ver 1.49 3.85 0.01 0.00 ind:fut:2p; +ravitailleur ravitailleur nom m s 0.85 0.20 0.75 0.14 +ravitailleurs ravitailleur nom m p 0.85 0.20 0.09 0.07 +ravitailleuse ravitailleur nom f s 0.85 0.20 0.01 0.00 +ravitaillons ravitailler ver 1.49 3.85 0.01 0.00 ind:pre:1p; +ravitaillé ravitailler ver m s 1.49 3.85 0.08 0.41 par:pas; +ravitaillée ravitailler ver f s 1.49 3.85 0.01 0.27 par:pas; +ravitaillées ravitailler ver f p 1.49 3.85 0.01 0.20 par:pas; +ravitaillés ravitailler ver m p 1.49 3.85 0.08 0.00 par:pas; +raviva raviver ver 2.17 4.46 0.01 0.47 ind:pas:3s; +ravivaient raviver ver 2.17 4.46 0.00 0.07 ind:imp:3p; +ravivait raviver ver 2.17 4.46 0.00 0.61 ind:imp:3s; +ravivant raviver ver 2.17 4.46 0.11 0.14 par:pre; +ravive raviver ver 2.17 4.46 0.70 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ravivement ravivement nom m s 0.00 0.07 0.00 0.07 +ravivent raviver ver 2.17 4.46 0.12 0.27 ind:pre:3p; +raviver raviver ver 2.17 4.46 0.79 1.62 inf; +ravivez raviver ver 2.17 4.46 0.16 0.00 imp:pre:2p;ind:pre:2p; +ravivât raviver ver 2.17 4.46 0.00 0.07 sub:imp:3s; +ravivé raviver ver m s 2.17 4.46 0.12 0.47 par:pas; +ravivée raviver ver f s 2.17 4.46 0.14 0.47 par:pas; +ravoir ravoir ver 1.16 1.08 1.16 1.08 inf; +ray_grass ray_grass nom m 0.00 0.14 0.00 0.14 +raya rayer ver 7.42 11.22 0.02 0.54 ind:pas:3s; +rayables rayable adj p 0.00 0.07 0.00 0.07 +rayaient rayer ver 7.42 11.22 0.00 0.27 ind:imp:3p; +rayait rayer ver 7.42 11.22 0.02 0.61 ind:imp:3s; +rayant rayer ver 7.42 11.22 0.14 0.41 par:pre; +raye rayer ver 7.42 11.22 0.83 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +rayent rayer ver 7.42 11.22 0.09 0.07 ind:pre:3p; +rayer rayer ver 7.42 11.22 2.26 1.76 inf; +rayera rayer ver 7.42 11.22 0.02 0.00 ind:fut:3s; +rayerai rayer ver 7.42 11.22 0.02 0.00 ind:fut:1s; +rayerais rayer ver 7.42 11.22 0.00 0.07 cnd:pre:1s; +rayeras rayer ver 7.42 11.22 0.10 0.00 ind:fut:2s; +rayeront rayer ver 7.42 11.22 0.01 0.00 ind:fut:3p; +rayez rayer ver 7.42 11.22 0.60 0.14 imp:pre:2p;ind:pre:2p; +rayions rayer ver 7.42 11.22 0.00 0.07 ind:imp:1p; +rayon_éclair rayon_éclair nom m s 0.00 0.07 0.00 0.07 +rayon rayon nom m s 27.00 55.74 19.32 27.03 +rayonna rayonner ver 2.28 10.34 0.00 0.14 ind:pas:3s; +rayonnage rayonnage nom m s 0.06 4.73 0.01 0.88 +rayonnages rayonnage nom m p 0.06 4.73 0.05 3.85 +rayonnaient rayonner ver 2.28 10.34 0.00 1.01 ind:imp:3p; +rayonnais rayonner ver 2.28 10.34 0.03 0.07 ind:imp:1s; +rayonnait rayonner ver 2.28 10.34 0.32 3.85 ind:imp:3s; +rayonnant rayonnant adj m s 1.65 4.80 0.50 1.22 +rayonnante rayonnant adj f s 1.65 4.80 1.00 2.70 +rayonnantes rayonnant adj f p 1.65 4.80 0.03 0.41 +rayonnants rayonnant adj m p 1.65 4.80 0.12 0.47 +rayonne rayonner ver 2.28 10.34 1.00 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rayonnement rayonnement nom m s 1.07 6.69 1.02 6.55 +rayonnements rayonnement nom m p 1.07 6.69 0.05 0.14 +rayonnent rayonner ver 2.28 10.34 0.05 0.47 ind:pre:3p; +rayonner rayonner ver 2.28 10.34 0.21 0.81 inf; +rayonnera rayonner ver 2.28 10.34 0.01 0.07 ind:fut:3s; +rayonnerait rayonner ver 2.28 10.34 0.00 0.20 cnd:pre:3s; +rayonnes rayonner ver 2.28 10.34 0.25 0.07 ind:pre:2s; +rayonneur rayonneur nom m s 0.03 0.00 0.03 0.00 +rayonnez rayonner ver 2.28 10.34 0.06 0.00 imp:pre:2p;ind:pre:2p; +rayonné rayonner ver m s 2.28 10.34 0.05 0.07 par:pas; +rayons rayon nom m p 27.00 55.74 7.62 28.04 +rayât rayer ver 7.42 11.22 0.00 0.07 sub:imp:3s; +rayé rayer ver m s 7.42 11.22 2.09 3.04 par:pas; +rayée rayé adj f s 2.02 6.82 0.98 1.15 +rayées rayer ver f p 7.42 11.22 0.20 0.47 par:pas; +rayure rayure nom f s 2.82 7.36 0.36 0.61 +rayures rayure nom f p 2.82 7.36 2.46 6.76 +rayés rayer ver m p 7.42 11.22 0.30 1.01 par:pas; +raz_de_marée raz_de_marée nom m 0.57 0.20 0.57 0.20 +raz raz nom m 0.23 1.28 0.23 1.28 +razzia razzia nom f s 0.55 1.28 0.45 0.95 +razziais razzier ver 0.00 0.27 0.00 0.07 ind:imp:1s; +razzias razzia nom f p 0.55 1.28 0.10 0.34 +razzier razzier ver 0.00 0.27 0.00 0.20 inf; +reaboyer reaboyer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +rebalbutiant rebalbutiant adj m s 0.00 0.07 0.00 0.07 +rebaptême rebaptême nom m s 0.00 0.07 0.00 0.07 +re_belote re_belote ono 0.01 0.00 0.01 0.00 +rebiberonner rebiberonner ver 0.00 0.07 0.00 0.07 inf; +rebide rebide nom m s 0.00 0.07 0.00 0.07 +reblinder reblinder ver 0.00 0.07 0.00 0.07 inf; +rebombardon rebombardon nom m p 0.01 0.00 0.01 0.00 +reboucler reboucler ver 0.14 1.01 0.01 0.00 inf; +recabosser recabosser ver m s 0.00 0.07 0.00 0.07 par:pas; +recafé recafé adj 0.00 0.07 0.00 0.07 +recailloux recailloux nom m p 0.00 0.07 0.00 0.07 +recalibrer recalibrer ver 0.01 0.00 0.01 0.00 ind:imp:1s; +recasser recasser ver f s 0.24 0.07 0.01 0.00 par:pas; +rechanteur rechanteur nom m s 0.01 0.00 0.01 0.00 +rechiader rechiader ver 0.00 0.07 0.00 0.07 inf; +reciseler reciseler ver 0.00 0.07 0.00 0.07 ind:pre:3s; +reclasser reclasser ver 0.09 0.20 0.00 0.07 ind:pre:3s; +reclasser reclasser ver 0.09 0.20 0.00 0.07 inf; +reconnaître reconnaître ver 140.73 229.19 0.00 0.07 inf; +recontacter recontacter ver 0.38 0.07 0.03 0.00 ind:pre:1s; +recontacter recontacter ver 0.38 0.07 0.01 0.00 ind:pre:3p; +recontacter recontacter ver 0.38 0.07 0.01 0.00 inf; +recontacter recontacter ver 0.38 0.07 0.06 0.00 ind:fut:1s; +reconvaincre reconvaincre ver 0.00 0.07 0.00 0.07 ind:fut:3s; +recoup recoup nom m s 0.00 0.07 0.00 0.07 +recrac recrac nom m s 0.00 0.07 0.00 0.07 +recreuser recreuser ver m p 0.14 0.20 0.00 0.07 par:pas; +recroquis recroquis nom m 0.00 0.07 0.00 0.07 +recréation recréation nom f s 0.04 0.27 0.03 0.07 +recréer recréer ver f s 2.23 4.39 0.00 0.07 par:pas; +recul recul nom m s 3.59 15.61 0.00 0.07 +rediffuser rediffuser ver 0.20 0.07 0.01 0.00 ind:pre:2s; +redose redose nom f s 0.00 0.07 0.00 0.07 +redrapeau redrapeau nom m s 0.00 0.07 0.00 0.07 +redéchirer redéchirer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +redéclic redéclic nom m s 0.00 0.07 0.00 0.07 +redécorer redécorer ver 0.08 0.00 0.01 0.00 ind:pre:1s; +redécorer redécorer ver 0.08 0.00 0.07 0.00 inf; +redéménager redéménager ver 0.00 0.07 0.00 0.07 inf; +reexpliquer reexpliquer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +refaim refaim nom f s 0.14 0.00 0.14 0.00 +refrapper refrapper ver 0.07 0.14 0.00 0.07 ind:pre:3s; +refrapper refrapper ver m s 0.07 0.14 0.01 0.07 par:pas; +refuser refuser ver 143.96 152.77 0.00 0.07 ind:pre:1s; +regomme regomme nom f s 0.00 0.07 0.00 0.07 +rehistoire rehistoire nom f p 0.00 0.07 0.00 0.07 +rehygiène rehygiène nom f s 0.00 0.07 0.00 0.07 +re_inter re_inter nom m s 0.00 0.07 0.00 0.07 +rekidnapper rekidnapper ver 0.01 0.00 0.01 0.00 ind:imp:1s; +relettre relettre nom f s 0.00 0.07 0.00 0.07 +remain remain nom f s 0.00 0.07 0.00 0.07 +rematérialisation rematérialisation nom f s 0.01 0.00 0.01 0.00 +remorphine remorphine nom f s 0.00 0.07 0.00 0.07 +rené rené adj m p 0.01 0.00 0.01 0.00 +repayer repayer ver 0.23 0.41 0.00 0.07 imp:pre:2s; +repenser repenser ver 9.68 12.16 0.01 0.00 inf; +repotasser repotasser ver m s 0.00 0.07 0.00 0.07 par:pas; +reprogrammation reprogrammation nom f s 0.01 0.00 0.01 0.00 +reprogrammer reprogrammer ver f s 1.11 0.00 0.01 0.00 par:pas; +reraconter reraconter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +reraconter reraconter ver f p 0.00 0.14 0.00 0.07 par:pas; +reremplir reremplir ver 0.01 0.07 0.01 0.07 inf; +rerentrer rerentrer ver 0.05 0.07 0.05 0.07 inf; +rerespirer rerespirer ver 0.00 0.07 0.00 0.07 inf; +reressortir reressortir ver 0.00 0.07 0.00 0.07 ind:imp:3s; +reretirer reretirer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +rerigole rerigole nom f s 0.00 0.07 0.00 0.07 +rerécurer rerécurer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +reréparer reréparer ver 0.01 0.00 0.01 0.00 inf; +rerêvé rerêvé adj m s 0.00 0.07 0.00 0.07 +resaluer resaluer ver m s 0.00 0.07 0.00 0.07 par:pas; +resavater resavater ver m s 0.01 0.00 0.01 0.00 par:pas; +resculpter resculpter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +resevrage resevrage nom m s 0.00 0.07 0.00 0.07 +resigner resigner ver 0.02 0.00 0.02 0.00 inf; +resommeil resommeil nom m s 0.00 0.07 0.00 0.07 +resonner resonner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +restructuration restructuration nom f s 0.91 0.34 0.00 0.07 +reséparé reséparé adj m p 0.00 0.07 0.00 0.07 +retaloche retaloche nom f s 0.00 0.14 0.00 0.14 +retitiller retitiller ver 0.00 0.14 0.00 0.14 ind:pre:3s; +retraité retraité adj f s 0.68 1.15 0.00 0.07 +retravail retravail nom m s 0.00 0.07 0.00 0.07 +retuage retuage nom m s 0.04 0.00 0.04 0.00 +retuer retuer ver 0.08 0.07 0.07 0.07 inf; +retu retu adj f p 0.01 0.00 0.01 0.00 +reébranler reébranler ver m p 0.00 0.07 0.00 0.07 par:pas; +reéchanger reéchanger ver 0.01 0.00 0.01 0.00 inf; +revouloir revouloir ver 0.45 0.41 0.04 0.00 ind:pre:2s; +revie revie nom f s 0.00 0.07 0.00 0.07 +revisiter revisiter ver 0.21 0.61 0.00 0.07 ind:pre:3s; +revivre revivre ver 10.37 20.68 0.00 0.07 ind:pre:3s; +revérifier revérifier ver 0.67 0.00 0.10 0.00 inf; +revérifié revérifié adj m s 0.34 0.07 0.10 0.00 +re r adv 21.43 7.50 21.43 7.50 +reître reître nom m s 0.00 1.62 0.00 0.68 +reîtres reître nom m p 0.00 1.62 0.00 0.95 +reader reader nom m s 0.11 0.07 0.11 0.07 +ready_made ready_made nom m s 0.00 0.07 0.00 0.07 +rebab rebab nom m s 0.00 0.07 0.00 0.07 +rebaise rebaiser ver 0.12 0.27 0.12 0.00 ind:pre:1s;ind:pre:3s; +rebaisent rebaiser ver 0.12 0.27 0.00 0.07 ind:pre:3p; +rebaiser rebaiser ver 0.12 0.27 0.00 0.07 inf; +rebaissa rebaisser ver 0.01 0.74 0.00 0.27 ind:pas:3s; +rebaissait rebaisser ver 0.01 0.74 0.00 0.07 ind:imp:3s; +rebaisse rebaisser ver 0.01 0.74 0.01 0.27 imp:pre:2s;ind:pre:3s; +rebaissé rebaisser ver m s 0.01 0.74 0.00 0.14 par:pas; +rebaisé rebaiser ver m s 0.12 0.27 0.00 0.14 par:pas; +rebander rebander ver 0.01 0.14 0.01 0.14 inf; +rebaptisa rebaptiser ver 0.71 0.88 0.03 0.07 ind:pas:3s; +rebaptise rebaptiser ver 0.71 0.88 0.04 0.00 ind:pre:1s;ind:pre:3s; +rebaptiser rebaptiser ver 0.71 0.88 0.23 0.14 inf; +rebaptisé rebaptiser ver m s 0.71 0.88 0.18 0.34 par:pas; +rebaptisée rebaptiser ver f s 0.71 0.88 0.22 0.27 par:pas; +rebaptisées rebaptiser ver f p 0.71 0.88 0.00 0.07 par:pas; +rebarré rebarré adj m s 0.00 0.20 0.00 0.20 +rebasculait rebasculer ver 0.01 0.20 0.00 0.07 ind:imp:3s; +rebascule rebasculer ver 0.01 0.20 0.01 0.07 ind:pre:1s;ind:pre:3s; +rebasculera rebasculer ver 0.01 0.20 0.00 0.07 ind:fut:3s; +rebat rebattre ver 0.22 1.49 0.11 0.20 ind:pre:3s; +rebats rebattre ver 0.22 1.49 0.02 0.00 ind:pre:1s;ind:pre:2s; +rebattait rebattre ver 0.22 1.49 0.00 0.27 ind:imp:3s; +rebattent rebattre ver 0.22 1.49 0.01 0.07 ind:pre:3p; +rebattez rebattre ver 0.22 1.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +rebattit rebattre ver 0.22 1.49 0.00 0.07 ind:pas:3s; +rebattre rebattre ver 0.22 1.49 0.04 0.34 inf; +rebattu rebattu adj m s 0.02 0.34 0.02 0.00 +rebattue rebattu adj f s 0.02 0.34 0.00 0.20 +rebattues rebattre ver f p 0.22 1.49 0.00 0.07 par:pas; +rebattus rebattu adj m p 0.02 0.34 0.00 0.07 +rebec rebec nom m s 0.01 0.00 0.01 0.00 +rebecter rebecter ver 0.00 0.41 0.00 0.20 inf; +rebecté rebecter ver m s 0.00 0.41 0.00 0.20 par:pas; +rebella rebeller ver 3.77 1.62 0.02 0.07 ind:pas:3s; +rebellaient rebeller ver 3.77 1.62 0.03 0.07 ind:imp:3p; +rebellais rebeller ver 3.77 1.62 0.04 0.07 ind:imp:1s;ind:imp:2s; +rebellait rebeller ver 3.77 1.62 0.03 0.07 ind:imp:3s; +rebellant rebeller ver 3.77 1.62 0.01 0.00 par:pre; +rebelle rebelle adj s 5.95 4.32 3.73 2.77 +rebellent rebeller ver 3.77 1.62 0.76 0.00 ind:pre:3p; +rebeller rebeller ver 3.77 1.62 0.82 0.41 inf; +rebelles rebelle nom p 8.66 6.08 6.41 4.26 +rebellez rebeller ver 3.77 1.62 0.03 0.07 imp:pre:2p;ind:pre:2p; +rebellât rebeller ver 3.77 1.62 0.00 0.07 sub:imp:3s; +rebellèrent rebeller ver 3.77 1.62 0.04 0.00 ind:pas:3p; +rebellé rebeller ver m s 3.77 1.62 0.47 0.20 par:pas; +rebellée rebeller ver f s 3.77 1.62 0.15 0.27 par:pas; +rebellés rebeller ver m p 3.77 1.62 0.19 0.00 par:pas; +rebelote rebelote ono 0.27 0.68 0.27 0.68 +rebiffa rebiffer ver 0.29 3.58 0.01 0.20 ind:pas:3s; +rebiffai rebiffer ver 0.29 3.58 0.00 0.07 ind:pas:1s; +rebiffaient rebiffer ver 0.29 3.58 0.00 0.20 ind:imp:3p; +rebiffais rebiffer ver 0.29 3.58 0.01 0.00 ind:imp:2s; +rebiffait rebiffer ver 0.29 3.58 0.00 0.20 ind:imp:3s; +rebiffant rebiffer ver 0.29 3.58 0.00 0.07 par:pre; +rebiffe rebiffer ver 0.29 3.58 0.14 1.49 ind:pre:1s;ind:pre:3s; +rebiffent rebiffer ver 0.29 3.58 0.03 0.20 ind:pre:3p; +rebiffer rebiffer ver 0.29 3.58 0.04 0.88 inf; +rebifferai rebiffer ver 0.29 3.58 0.01 0.00 ind:fut:1s; +rebiffes rebiffer ver 0.29 3.58 0.03 0.00 ind:pre:2s; +rebiffèrent rebiffer ver 0.29 3.58 0.00 0.07 ind:pas:3p; +rebiffé rebiffer ver m s 0.29 3.58 0.02 0.00 par:pas; +rebiffée rebiffer ver f s 0.29 3.58 0.01 0.20 par:pas; +rebiquaient rebiquer ver 0.00 0.74 0.00 0.34 ind:imp:3p; +rebiquait rebiquer ver 0.00 0.74 0.00 0.07 ind:imp:3s; +rebique rebiquer ver 0.00 0.74 0.00 0.20 imp:pre:2s;ind:pre:3s; +rebiquer rebiquer ver 0.00 0.74 0.00 0.07 inf; +rebiquée rebiquer ver f s 0.00 0.74 0.00 0.07 par:pas; +reblanchir reblanchir ver 0.00 0.07 0.00 0.07 inf; +reblochon reblochon nom m s 0.02 0.41 0.02 0.14 +reblochons reblochon nom m p 0.02 0.41 0.00 0.27 +rebloquer rebloquer ver 0.14 0.00 0.14 0.00 inf; +rebobiner rebobiner ver 0.01 0.00 0.01 0.00 inf; +reboire reboire ver 0.40 0.47 0.17 0.14 inf; +rebois reboire ver 0.40 0.47 0.00 0.07 ind:pre:1s; +reboise reboiser ver 0.00 0.14 0.00 0.07 ind:pre:3s; +reboisement reboisement nom m s 0.10 0.14 0.10 0.14 +reboisées reboiser ver f p 0.00 0.14 0.00 0.07 par:pas; +reboit reboire ver 0.40 0.47 0.04 0.00 ind:pre:3s; +rebond rebond nom m s 0.62 0.74 0.55 0.68 +rebondi rebondir ver m s 3.42 10.68 0.47 0.81 par:pas; +rebondie rebondi adj f s 0.25 2.30 0.03 0.47 +rebondies rebondi adj f p 0.25 2.30 0.04 0.81 +rebondir rebondir ver 3.42 10.68 1.56 2.84 inf; +rebondira rebondir ver 3.42 10.68 0.05 0.00 ind:fut:3s; +rebondiraient rebondir ver 3.42 10.68 0.00 0.07 cnd:pre:3p; +rebondirait rebondir ver 3.42 10.68 0.01 0.07 cnd:pre:3s; +rebondirent rebondir ver 3.42 10.68 0.00 0.27 ind:pas:3p; +rebondis rebondi adj m p 0.25 2.30 0.14 0.34 +rebondissaient rebondir ver 3.42 10.68 0.27 0.74 ind:imp:3p; +rebondissais rebondir ver 3.42 10.68 0.00 0.14 ind:imp:1s; +rebondissait rebondir ver 3.42 10.68 0.03 1.55 ind:imp:3s; +rebondissant rebondissant adj m s 0.06 2.09 0.04 1.82 +rebondissante rebondissant adj f s 0.06 2.09 0.01 0.07 +rebondissantes rebondissant adj f p 0.06 2.09 0.01 0.07 +rebondissants rebondissant adj m p 0.06 2.09 0.00 0.14 +rebondisse rebondir ver 3.42 10.68 0.11 0.00 sub:pre:3s; +rebondissement rebondissement nom m s 0.50 1.89 0.27 0.68 +rebondissements rebondissement nom m p 0.50 1.89 0.22 1.22 +rebondissent rebondir ver 3.42 10.68 0.17 0.54 ind:pre:3p; +rebondit rebondir ver 3.42 10.68 0.65 3.31 ind:pre:3s;ind:pas:3s; +rebonds rebond nom m p 0.62 0.74 0.07 0.07 +rebonjour rebonjour nom m s 0.02 0.00 0.02 0.00 +rebooter rebooter ver 0.04 0.00 0.04 0.00 inf; +rebord rebord nom m s 2.69 18.65 2.66 17.30 +reborder reborder ver 0.01 0.07 0.01 0.00 inf; +rebords rebord nom m p 2.69 18.65 0.04 1.35 +rebordée reborder ver f s 0.01 0.07 0.00 0.07 par:pas; +rebâti rebâtir ver m s 0.97 2.36 0.04 0.41 par:pas; +rebâtie rebâtir ver f s 0.97 2.36 0.01 0.14 par:pas; +rebâties rebâtir ver f p 0.97 2.36 0.01 0.27 par:pas; +rebâtir rebâtir ver 0.97 2.36 0.82 0.88 inf; +rebâtirai rebâtir ver 0.97 2.36 0.01 0.00 ind:fut:1s; +rebâtirent rebâtir ver 0.97 2.36 0.00 0.07 ind:pas:3p; +rebâtirons rebâtir ver 0.97 2.36 0.01 0.00 ind:fut:1p; +rebâtis rebâtir ver m p 0.97 2.36 0.01 0.20 ind:pre:1s;par:pas; +rebâtissaient rebâtir ver 0.97 2.36 0.00 0.07 ind:imp:3p; +rebâtissant rebâtir ver 0.97 2.36 0.00 0.07 par:pre; +rebâtissent rebâtir ver 0.97 2.36 0.02 0.00 ind:pre:3p; +rebâtissons rebâtir ver 0.97 2.36 0.00 0.07 imp:pre:1p; +rebâtit rebâtir ver 0.97 2.36 0.05 0.20 ind:pre:3s;ind:pas:3s; +reboucha reboucher ver 0.80 1.42 0.00 0.20 ind:pas:3s; +rebouchait reboucher ver 0.80 1.42 0.00 0.07 ind:imp:3s; +rebouchant reboucher ver 0.80 1.42 0.00 0.07 par:pre; +rebouche reboucher ver 0.80 1.42 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebouchent reboucher ver 0.80 1.42 0.01 0.07 ind:pre:3p; +reboucher reboucher ver 0.80 1.42 0.36 0.47 inf; +reboucheront reboucher ver 0.80 1.42 0.10 0.00 ind:fut:3p; +rebouchez reboucher ver 0.80 1.42 0.04 0.00 imp:pre:2p; +rebouchèrent reboucher ver 0.80 1.42 0.00 0.07 ind:pas:3p; +rebouché reboucher ver m s 0.80 1.42 0.18 0.14 par:pas; +rebouchée reboucher ver f s 0.80 1.42 0.02 0.07 par:pas; +rebouchées reboucher ver f p 0.80 1.42 0.00 0.07 par:pas; +rebouchés reboucher ver m p 0.80 1.42 0.01 0.14 par:pas; +reboucla reboucler ver 0.14 1.01 0.00 0.07 ind:pas:3s; +reboucle reboucler ver 0.14 1.01 0.12 0.27 imp:pre:2s;ind:pre:3s; +reboucler reboucler ver 0.14 1.01 0.01 0.47 inf; +rebouclé reboucler ver m s 0.14 1.01 0.00 0.14 par:pas; +rebouclée reboucler ver f s 0.14 1.01 0.00 0.07 par:pas; +reboule reboule nom f s 0.27 0.00 0.27 0.00 +rebourrer rebourrer ver 0.00 0.07 0.00 0.07 inf; +rebours rebours adv 3.52 2.91 3.52 2.91 +reboute rebouter ver 0.14 0.34 0.00 0.20 ind:pre:1s; +rebouter rebouter ver 0.14 0.34 0.14 0.07 inf; +rebouteuse rebouteur nom f s 0.14 0.00 0.14 0.00 +rebouteux rebouteux nom m 0.26 0.54 0.26 0.54 +reboutez rebouter ver 0.14 0.34 0.00 0.07 ind:pre:2p; +reboutonna reboutonner ver 0.38 1.49 0.00 0.34 ind:pas:3s; +reboutonnaient reboutonner ver 0.38 1.49 0.00 0.07 ind:imp:3p; +reboutonnais reboutonner ver 0.38 1.49 0.00 0.07 ind:imp:1s; +reboutonnant reboutonner ver 0.38 1.49 0.00 0.20 par:pre; +reboutonne reboutonner ver 0.38 1.49 0.06 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reboutonner reboutonner ver 0.38 1.49 0.01 0.20 inf; +reboutonnerait reboutonner ver 0.38 1.49 0.00 0.07 cnd:pre:3s; +reboutonnez reboutonner ver 0.38 1.49 0.17 0.00 imp:pre:2p;ind:pre:2p; +reboutonnèrent reboutonner ver 0.38 1.49 0.00 0.07 ind:pas:3p; +reboutonné reboutonner ver m s 0.38 1.49 0.00 0.20 par:pas; +reboutonnée reboutonner ver f s 0.38 1.49 0.14 0.00 par:pas; +reboutonnés reboutonner ver m p 0.38 1.49 0.00 0.07 par:pas; +rebrûlé rebrûler ver m s 0.00 0.07 0.00 0.07 par:pas; +rebraguetter rebraguetter ver 0.00 0.14 0.00 0.07 inf; +rebraguetté rebraguetter ver m s 0.00 0.14 0.00 0.07 par:pas; +rebrancha rebrancher ver 0.73 0.81 0.00 0.07 ind:pas:3s; +rebranche rebrancher ver 0.73 0.81 0.22 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebrancher rebrancher ver 0.73 0.81 0.23 0.07 inf; +rebranchez rebrancher ver 0.73 0.81 0.12 0.00 imp:pre:2p; +rebranché rebrancher ver m s 0.73 0.81 0.16 0.34 par:pas; +rebranchée rebrancher ver f s 0.73 0.81 0.01 0.00 par:pas; +rebrodait rebroder ver 0.00 0.20 0.00 0.07 ind:imp:3s; +rebrodée rebroder ver f s 0.00 0.20 0.00 0.07 par:pas; +rebrodés rebroder ver m p 0.00 0.20 0.00 0.07 par:pas; +rebrosser rebrosser ver 0.02 0.00 0.02 0.00 inf; +rebroussa rebrousser ver 1.52 6.76 0.01 1.08 ind:pas:3s; +rebroussai rebrousser ver 1.52 6.76 0.01 0.07 ind:pas:1s; +rebroussaient rebrousser ver 1.52 6.76 0.01 0.14 ind:imp:3p; +rebroussait rebrousser ver 1.52 6.76 0.00 0.20 ind:imp:3s; +rebroussant rebrousser ver 1.52 6.76 0.14 0.27 par:pre; +rebrousse rebrousser ver 1.52 6.76 0.17 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebroussement rebroussement nom m s 0.00 0.07 0.00 0.07 +rebroussent rebrousser ver 1.52 6.76 0.03 0.20 ind:pre:3p; +rebrousser rebrousser ver 1.52 6.76 0.69 1.89 inf; +rebrousserai rebrousser ver 1.52 6.76 0.01 0.00 ind:fut:1s; +rebrousserez rebrousser ver 1.52 6.76 0.00 0.07 ind:fut:2p; +rebroussez rebrousser ver 1.52 6.76 0.14 0.00 imp:pre:2p;ind:pre:2p; +rebroussâmes rebrousser ver 1.52 6.76 0.00 0.07 ind:pas:1p; +rebroussons rebrousser ver 1.52 6.76 0.11 0.14 imp:pre:1p;ind:pre:1p; +rebroussât rebrousser ver 1.52 6.76 0.00 0.07 sub:imp:3s; +rebroussèrent rebrousser ver 1.52 6.76 0.00 0.27 ind:pas:3p; +rebroussé rebrousser ver m s 1.52 6.76 0.20 0.88 par:pas; +rebroussée rebrousser ver f s 1.52 6.76 0.00 0.07 par:pas; +rebroussées rebrousser ver f p 1.52 6.76 0.00 0.07 par:pas; +rebroussés rebrousser ver m p 1.52 6.76 0.00 0.14 par:pas; +rebu reboire ver m s 0.40 0.47 0.00 0.14 par:pas; +rebuffade rebuffade nom f s 0.07 1.35 0.03 0.27 +rebuffades rebuffade nom f p 0.07 1.35 0.04 1.08 +rebéquer rebéquer ver 0.00 0.07 0.00 0.07 inf; +rebus reboire ver m p 0.40 0.47 0.16 0.00 par:pas; +rebut rebut nom m s 2.15 4.26 1.43 2.97 +rebuta rebuter ver 0.71 5.34 0.00 0.07 ind:pas:3s; +rebutaient rebuter ver 0.71 5.34 0.01 0.20 ind:imp:3p; +rebutait rebuter ver 0.71 5.34 0.00 1.08 ind:imp:3s; +rebutant rebutant adj m s 0.17 1.62 0.02 0.68 +rebutante rebutant adj f s 0.17 1.62 0.00 0.41 +rebutantes rebutant adj f p 0.17 1.62 0.01 0.27 +rebutants rebutant adj m p 0.17 1.62 0.14 0.27 +rebute rebuter ver 0.71 5.34 0.45 0.95 ind:pre:3s; +rebutent rebuter ver 0.71 5.34 0.01 0.27 ind:pre:3p; +rebuter rebuter ver 0.71 5.34 0.02 0.61 inf; +rebutera rebuter ver 0.71 5.34 0.00 0.07 ind:fut:3s; +rebuterait rebuter ver 0.71 5.34 0.00 0.07 cnd:pre:3s; +rebuts rebut nom m p 2.15 4.26 0.72 1.28 +rebutèrent rebuter ver 0.71 5.34 0.00 0.07 ind:pas:3p; +rebuté rebuter ver m s 0.71 5.34 0.06 1.01 par:pas; +rebutée rebuter ver f s 0.71 5.34 0.03 0.47 par:pas; +rebutées rebuter ver f p 0.71 5.34 0.01 0.07 par:pas; +rebutés rebuter ver m p 0.71 5.34 0.12 0.20 par:pas; +rebuvait reboire ver 0.40 0.47 0.00 0.07 ind:imp:3s; +recache recacher ver 0.02 0.07 0.01 0.00 ind:pre:1s; +recacher recacher ver 0.02 0.07 0.01 0.07 inf; +recacheter recacheter ver 0.00 0.14 0.00 0.07 inf; +recachetée recacheter ver f s 0.00 0.14 0.00 0.07 par:pas; +recadre recadrer ver 0.23 0.14 0.02 0.00 imp:pre:2s;ind:pre:1s; +recadrer recadrer ver 0.23 0.14 0.20 0.14 inf; +recadrez recadrer ver 0.23 0.14 0.01 0.00 imp:pre:2p; +recala recaler ver 1.72 1.01 0.00 0.07 ind:pas:3s; +recalage recalage nom m s 0.01 0.00 0.01 0.00 +recalculant recalculer ver 0.10 0.07 0.00 0.07 par:pre; +recalcule recalculer ver 0.10 0.07 0.01 0.00 ind:pre:3s; +recalculer recalculer ver 0.10 0.07 0.06 0.00 inf; +recalculez recalculer ver 0.10 0.07 0.01 0.00 imp:pre:2p; +recalculé recalculer ver m s 0.10 0.07 0.02 0.00 par:pas; +recaler recaler ver 1.72 1.01 0.32 0.07 inf; +recalez recaler ver 1.72 1.01 0.03 0.00 imp:pre:2p;ind:pre:2p; +recalé recaler ver m s 1.72 1.01 1.03 0.41 par:pas; +recalée recaler ver f s 1.72 1.01 0.28 0.34 par:pas; +recalés recaler ver m p 1.72 1.01 0.07 0.14 par:pas; +recarreler recarreler ver 0.01 0.00 0.01 0.00 inf; +recasa recaser ver 0.23 0.34 0.00 0.07 ind:pas:3s; +recasable recasable adj s 0.00 0.07 0.00 0.07 +recaser recaser ver 0.23 0.34 0.20 0.14 inf; +recaserai recaser ver 0.23 0.34 0.01 0.00 ind:fut:1s; +recasser recasser ver 0.24 0.07 0.14 0.00 inf; +recasses recasser ver 0.24 0.07 0.02 0.00 ind:pre:2s; +recassé recasser ver m s 0.24 0.07 0.05 0.00 par:pas; +recassée recasser ver f s 0.24 0.07 0.01 0.07 par:pas; +recasé recaser ver m s 0.23 0.34 0.01 0.14 par:pas; +recel recel nom m s 0.77 1.01 0.77 1.01 +recelaient receler ver 1.02 3.72 0.00 0.20 ind:imp:3p; +recelait receler ver 1.02 3.72 0.04 0.95 ind:imp:3s; +recelant receler ver 1.02 3.72 0.00 0.27 par:pre; +receler receler ver 1.02 3.72 0.06 0.47 inf; +receleur_miracle receleur_miracle nom m s 0.00 0.07 0.00 0.07 +receleur receleur nom m s 0.45 1.28 0.34 0.68 +receleurs receleur nom m p 0.45 1.28 0.10 0.47 +receleuse receleur nom f s 0.45 1.28 0.01 0.07 +receleuses receleur nom f p 0.45 1.28 0.00 0.07 +recelons receler ver 1.02 3.72 0.02 0.00 ind:pre:1p; +recelé receler ver m s 1.02 3.72 0.00 0.07 par:pas; +recelée receler ver f s 1.02 3.72 0.00 0.07 par:pas; +recelées receler ver f p 1.02 3.72 0.01 0.00 par:pas; +recelés receler ver m p 1.02 3.72 0.00 0.07 par:pas; +recensa recenser ver 1.29 1.96 0.00 0.20 ind:pas:3s; +recensais recenser ver 1.29 1.96 0.00 0.07 ind:imp:1s; +recensait recenser ver 1.29 1.96 0.00 0.07 ind:imp:3s; +recensant recenser ver 1.29 1.96 0.01 0.00 par:pre; +recense recenser ver 1.29 1.96 0.22 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recensement recensement nom m s 1.17 1.08 1.14 0.95 +recensements recensement nom m p 1.17 1.08 0.03 0.14 +recensent recenser ver 1.29 1.96 0.04 0.00 ind:pre:3p; +recenser recenser ver 1.29 1.96 0.20 0.54 inf; +recenseur recenseur nom m s 0.03 0.00 0.03 0.00 +recension recension nom f s 0.00 0.27 0.00 0.27 +recensâmes recenser ver 1.29 1.96 0.00 0.07 ind:pas:1p; +recensèrent recenser ver 1.29 1.96 0.00 0.07 ind:pas:3p; +recensé recenser ver m s 1.29 1.96 0.55 0.20 par:pas; +recensées recenser ver f p 1.29 1.96 0.04 0.14 par:pas; +recensés recenser ver m p 1.29 1.96 0.25 0.27 par:pas; +recentrage recentrage nom m s 0.14 0.07 0.14 0.07 +recentre recentrer ver 0.44 0.20 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recentrer recentrer ver 0.44 0.20 0.17 0.07 inf; +recentrons recentrer ver 0.44 0.20 0.01 0.00 ind:pre:1p; +recentré recentrer ver m s 0.44 0.20 0.03 0.00 par:pas; +recentrée recentrer ver f s 0.44 0.20 0.00 0.07 par:pas; +recette recette nom f s 12.56 13.38 9.56 6.89 +recettes recette nom f p 12.56 13.38 3.00 6.49 +recevabilité recevabilité nom f s 0.01 0.00 0.01 0.00 +recevable recevable adj s 0.87 0.27 0.78 0.14 +recevables recevable adj f p 0.87 0.27 0.09 0.14 +recevaient recevoir ver 192.73 224.46 0.32 4.93 ind:imp:3p; +recevais recevoir ver 192.73 224.46 0.87 2.77 ind:imp:1s;ind:imp:2s; +recevait recevoir ver 192.73 224.46 2.16 21.42 ind:imp:3s; +recevant recevoir ver 192.73 224.46 0.55 5.68 par:pre; +receveur receveur nom m s 1.90 1.62 1.61 1.42 +receveurs receveur nom m p 1.90 1.62 0.27 0.07 +receveuse receveur nom f s 1.90 1.62 0.02 0.07 +receveuses receveur nom f p 1.90 1.62 0.00 0.07 +recevez recevoir ver 192.73 224.46 11.20 1.15 imp:pre:2p;ind:pre:2p; +receviez recevoir ver 192.73 224.46 0.41 0.34 ind:imp:2p; +recevions recevoir ver 192.73 224.46 0.38 0.81 ind:imp:1p; +recevoir recevoir ver 192.73 224.46 37.20 49.12 inf; +recevons recevoir ver 192.73 224.46 3.02 1.15 imp:pre:1p;ind:pre:1p; +recevra recevoir ver 192.73 224.46 4.69 1.22 ind:fut:3s; +recevrai recevoir ver 192.73 224.46 1.29 0.54 ind:fut:1s; +recevraient recevoir ver 192.73 224.46 0.07 0.47 cnd:pre:3p; +recevrais recevoir ver 192.73 224.46 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +recevrait recevoir ver 192.73 224.46 0.39 2.70 cnd:pre:3s; +recevras recevoir ver 192.73 224.46 1.77 0.61 ind:fut:2s; +recevrez recevoir ver 192.73 224.46 2.50 0.47 ind:fut:2p; +recevriez recevoir ver 192.73 224.46 0.06 0.07 cnd:pre:2p; +recevrions recevoir ver 192.73 224.46 0.11 0.07 cnd:pre:1p; +recevrons recevoir ver 192.73 224.46 0.41 0.27 ind:fut:1p; +recevront recevoir ver 192.73 224.46 1.03 0.47 ind:fut:3p; +rechampi rechampi nom m s 0.00 0.07 0.00 0.07 +rechampis rechampir ver m p 0.00 0.14 0.00 0.07 par:pas; +rechampit rechampir ver 0.00 0.14 0.00 0.07 ind:pre:3s; +rechange rechange nom m s 4.73 2.77 4.71 2.70 +rechanger rechanger ver 0.17 0.07 0.10 0.00 inf; +rechanges rechange nom m p 4.73 2.77 0.02 0.07 +rechangé rechanger ver m s 0.17 0.07 0.07 0.07 par:pas; +rechanta rechanter ver 0.05 0.14 0.00 0.07 ind:pas:3s; +rechanter rechanter ver 0.05 0.14 0.04 0.00 inf; +rechanté rechanter ver m s 0.05 0.14 0.01 0.07 par:pas; +rechaper rechaper ver 0.12 0.07 0.12 0.07 inf; +recharge recharger ver 4.07 3.99 0.81 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rechargea recharger ver 4.07 3.99 0.00 0.07 ind:pas:3s; +rechargeable rechargeable adj m s 0.02 0.00 0.02 0.00 +rechargeaient recharger ver 4.07 3.99 0.01 0.20 ind:imp:3p; +rechargeais recharger ver 4.07 3.99 0.01 0.00 ind:imp:1s; +rechargeait recharger ver 4.07 3.99 0.01 0.41 ind:imp:3s; +rechargeant recharger ver 4.07 3.99 0.00 0.20 par:pre; +rechargement rechargement nom m s 0.04 0.00 0.04 0.00 +rechargent recharger ver 4.07 3.99 0.02 0.07 ind:pre:3p; +recharger recharger ver 4.07 3.99 1.76 1.89 inf; +rechargerai recharger ver 4.07 3.99 0.01 0.07 ind:fut:1s; +rechargerait recharger ver 4.07 3.99 0.00 0.07 cnd:pre:3s; +rechargerons recharger ver 4.07 3.99 0.01 0.00 ind:fut:1p; +recharges recharge nom f p 0.83 0.34 0.27 0.07 +rechargez recharger ver 4.07 3.99 0.95 0.07 imp:pre:2p;ind:pre:2p; +rechargé recharger ver m s 4.07 3.99 0.32 0.41 par:pas; +rechargée recharger ver f s 4.07 3.99 0.03 0.00 par:pas; +rechargées recharger ver f p 4.07 3.99 0.05 0.07 par:pas; +rechargés recharger ver m p 4.07 3.99 0.04 0.00 par:pas; +rechasser rechasser ver 0.02 0.00 0.02 0.00 inf; +rechaussaient rechausser ver 0.01 0.68 0.00 0.07 ind:imp:3p; +rechaussant rechausser ver 0.01 0.68 0.00 0.07 par:pre; +rechausser rechausser ver 0.01 0.68 0.01 0.41 inf; +rechausserait rechausser ver 0.01 0.68 0.00 0.07 cnd:pre:3s; +rechaussée rechausser ver f s 0.01 0.68 0.00 0.07 par:pas; +rechercha rechercher ver 45.51 22.43 0.16 0.34 ind:pas:3s; +recherchai rechercher ver 45.51 22.43 0.01 0.07 ind:pas:1s; +recherchaient rechercher ver 45.51 22.43 0.36 1.01 ind:imp:3p; +recherchais rechercher ver 45.51 22.43 0.80 0.88 ind:imp:1s;ind:imp:2s; +recherchait rechercher ver 45.51 22.43 1.59 2.77 ind:imp:3s; +recherchant rechercher ver 45.51 22.43 0.39 0.47 par:pre; +recherche recherche nom f s 77.30 54.80 48.70 39.93 +recherchent rechercher ver 45.51 22.43 4.25 1.35 ind:pre:3p; +rechercher rechercher ver 45.51 22.43 5.88 7.23 inf; +recherchera rechercher ver 45.51 22.43 0.05 0.07 ind:fut:3s; +rechercherai rechercher ver 45.51 22.43 0.03 0.14 ind:fut:1s; +rechercherais rechercher ver 45.51 22.43 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +rechercherait rechercher ver 45.51 22.43 0.15 0.14 cnd:pre:3s; +rechercherions rechercher ver 45.51 22.43 0.01 0.00 cnd:pre:1p; +rechercherons rechercher ver 45.51 22.43 0.04 0.00 ind:fut:1p; +rechercheront rechercher ver 45.51 22.43 0.07 0.00 ind:fut:3p; +recherches recherche nom f p 77.30 54.80 28.60 14.86 +recherchez rechercher ver 45.51 22.43 2.86 0.27 imp:pre:2p;ind:pre:2p; +recherchiez rechercher ver 45.51 22.43 0.60 0.00 ind:imp:2p; +recherchions rechercher ver 45.51 22.43 0.12 0.14 ind:imp:1p; +recherchiste recherchiste nom s 0.01 0.00 0.01 0.00 +recherchons rechercher ver 45.51 22.43 3.89 0.27 imp:pre:1p;ind:pre:1p; +recherché rechercher ver m s 45.51 22.43 5.39 2.77 par:pas; +recherchée rechercher ver f s 45.51 22.43 1.62 0.61 par:pas; +recherchées recherché adj f p 3.54 2.09 0.38 0.27 +recherchés recherché adj m p 3.54 2.09 0.97 0.41 +rechigna rechigner ver 0.71 3.92 0.00 0.14 ind:pas:3s; +rechignaient rechigner ver 0.71 3.92 0.01 0.14 ind:imp:3p; +rechignais rechigner ver 0.71 3.92 0.01 0.14 ind:imp:1s;ind:imp:2s; +rechignait rechigner ver 0.71 3.92 0.00 0.61 ind:imp:3s; +rechignant rechigner ver 0.71 3.92 0.00 0.41 par:pre; +rechigne rechigner ver 0.71 3.92 0.49 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rechignent rechigner ver 0.71 3.92 0.06 0.07 ind:pre:3p; +rechigner rechigner ver 0.71 3.92 0.08 1.49 inf; +rechignerais rechigner ver 0.71 3.92 0.01 0.00 cnd:pre:1s; +rechignes rechigner ver 0.71 3.92 0.03 0.00 ind:pre:2s; +rechigné rechigner ver m s 0.71 3.92 0.01 0.34 par:pas; +rechignée rechigner ver f s 0.71 3.92 0.00 0.07 par:pas; +rechignées rechigner ver f p 0.71 3.92 0.00 0.07 par:pas; +rechuta rechuter ver 0.69 0.74 0.00 0.07 ind:pas:3s; +rechutant rechuter ver 0.69 0.74 0.00 0.07 par:pre; +rechute rechute nom f s 1.26 1.89 1.19 1.28 +rechuter rechuter ver 0.69 0.74 0.36 0.14 inf; +rechutera rechuter ver 0.69 0.74 0.01 0.00 ind:fut:3s; +rechuterait rechuter ver 0.69 0.74 0.00 0.07 cnd:pre:3s; +rechuteront rechuter ver 0.69 0.74 0.01 0.00 ind:fut:3p; +rechutes rechute nom f p 1.26 1.89 0.07 0.61 +rechuté rechuter ver m s 0.69 0.74 0.10 0.34 par:pas; +reclassement reclassement nom m s 0.14 0.27 0.14 0.27 +reclasser reclasser ver 0.09 0.20 0.04 0.07 inf; +reclassé reclasser ver m s 0.09 0.20 0.03 0.00 par:pas; +reclassée reclasser ver f s 0.09 0.20 0.02 0.00 par:pas; +reclouer reclouer ver 0.01 0.00 0.01 0.00 inf; +reclure reclure ver 0.00 0.07 0.00 0.07 inf; +reclus reclus adj m 0.56 1.76 0.37 0.81 +recluse reclus nom f s 0.70 0.95 0.35 0.14 +recluses reclus nom f p 0.70 0.95 0.01 0.14 +recâbler recâbler ver 0.03 0.00 0.03 0.00 inf; +recodage recodage nom m s 0.01 0.00 0.01 0.00 +recogner recogner ver 0.00 0.07 0.00 0.07 inf; +recognition recognition nom f s 0.00 0.07 0.00 0.07 +recoiffa recoiffer ver 0.25 2.09 0.00 0.07 ind:pas:3s; +recoiffai recoiffer ver 0.25 2.09 0.00 0.07 ind:pas:1s; +recoiffaient recoiffer ver 0.25 2.09 0.00 0.07 ind:imp:3p; +recoiffait recoiffer ver 0.25 2.09 0.01 0.20 ind:imp:3s; +recoiffant recoiffer ver 0.25 2.09 0.01 0.14 par:pre; +recoiffe recoiffer ver 0.25 2.09 0.07 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoiffent recoiffer ver 0.25 2.09 0.01 0.07 ind:pre:3p; +recoiffer recoiffer ver 0.25 2.09 0.12 0.54 inf; +recoiffez recoiffer ver 0.25 2.09 0.02 0.00 imp:pre:2p;ind:pre:2p; +recoiffèrent recoiffer ver 0.25 2.09 0.00 0.07 ind:pas:3p; +recoiffé recoiffer ver m s 0.25 2.09 0.00 0.20 par:pas; +recoiffée recoiffer ver f s 0.25 2.09 0.00 0.41 par:pas; +recoiffés recoiffer ver m p 0.25 2.09 0.00 0.07 par:pas; +recoin recoin nom m s 2.27 12.36 0.83 5.14 +recoins recoin nom m p 2.27 12.36 1.44 7.23 +recolla recoller ver 2.84 2.70 0.00 0.20 ind:pas:3s; +recollage recollage nom m s 0.00 0.14 0.00 0.14 +recollait recoller ver 2.84 2.70 0.00 0.34 ind:imp:3s; +recolle recoller ver 2.84 2.70 0.53 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recollent recoller ver 2.84 2.70 0.03 0.00 ind:pre:3p; +recoller recoller ver 2.84 2.70 1.94 1.15 inf; +recollera recoller ver 2.84 2.70 0.05 0.00 ind:fut:3s; +recollé recoller ver m s 2.84 2.70 0.13 0.27 par:pas; +recollée recoller ver f s 2.84 2.70 0.16 0.20 par:pas; +recollés recoller ver m p 2.84 2.70 0.00 0.20 par:pas; +recoloration recoloration nom f s 0.08 0.00 0.08 0.00 +recombinaison recombinaison nom f s 0.06 0.00 0.06 0.00 +recombinant recombinant adj m s 0.01 0.00 0.01 0.00 +recombinant recombiner ver 0.10 0.00 0.01 0.00 par:pre; +recombiner recombiner ver 0.10 0.00 0.04 0.00 inf; +recombiné recombiner ver m s 0.10 0.00 0.05 0.00 par:pas; +recommanda recommander ver 16.86 21.35 0.00 2.30 ind:pas:3s; +recommandable recommandable adj s 0.42 0.68 0.32 0.68 +recommandables recommandable adj p 0.42 0.68 0.11 0.00 +recommandai recommander ver 16.86 21.35 0.00 0.14 ind:pas:1s; +recommandaient recommander ver 16.86 21.35 0.04 0.34 ind:imp:3p; +recommandais recommander ver 16.86 21.35 0.01 0.27 ind:imp:1s; +recommandait recommander ver 16.86 21.35 0.19 2.03 ind:imp:3s; +recommandant recommander ver 16.86 21.35 0.21 1.82 par:pre; +recommandation recommandation nom f s 5.20 8.85 2.89 3.92 +recommandations recommandation nom f p 5.20 8.85 2.30 4.93 +recommande recommander ver 16.86 21.35 6.13 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recommandent recommander ver 16.86 21.35 0.31 0.27 ind:pre:3p; +recommander recommander ver 16.86 21.35 2.58 2.91 inf; +recommandera recommander ver 16.86 21.35 0.10 0.14 ind:fut:3s; +recommanderai recommander ver 16.86 21.35 0.32 0.14 ind:fut:1s; +recommanderais recommander ver 16.86 21.35 0.25 0.00 cnd:pre:1s;cnd:pre:2s; +recommanderait recommander ver 16.86 21.35 0.12 0.07 cnd:pre:3s; +recommanderiez recommander ver 16.86 21.35 0.09 0.00 cnd:pre:2p; +recommandes recommander ver 16.86 21.35 0.24 0.07 ind:pre:2s;sub:pre:2s; +recommandez recommander ver 16.86 21.35 0.73 0.27 imp:pre:2p;ind:pre:2p; +recommandiez recommander ver 16.86 21.35 0.07 0.07 ind:imp:2p; +recommandons recommander ver 16.86 21.35 0.28 0.07 imp:pre:1p;ind:pre:1p; +recommandât recommander ver 16.86 21.35 0.00 0.07 sub:imp:3s; +recommandèrent recommander ver 16.86 21.35 0.11 0.14 ind:pas:3p; +recommandé recommander ver m s 16.86 21.35 4.07 5.68 par:pas; +recommandée recommander ver f s 16.86 21.35 0.80 0.95 par:pas; +recommandées recommander ver f p 16.86 21.35 0.03 0.54 par:pas; +recommandés recommander ver m p 16.86 21.35 0.21 0.27 par:pas; +recommence recommencer ver 84.69 83.31 31.98 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +recommencement recommencement nom m s 0.08 0.81 0.07 0.47 +recommencements recommencement nom m p 0.08 0.81 0.01 0.34 +recommencent recommencer ver 84.69 83.31 1.72 2.36 ind:pre:3p; +recommencer recommencer ver 84.69 83.31 26.90 22.50 inf; +recommencera recommencer ver 84.69 83.31 2.52 1.42 ind:fut:3s; +recommencerai recommencer ver 84.69 83.31 1.65 1.01 ind:fut:1s; +recommenceraient recommencer ver 84.69 83.31 0.02 0.20 cnd:pre:3p; +recommencerais recommencer ver 84.69 83.31 0.25 0.54 cnd:pre:1s;cnd:pre:2s; +recommencerait recommencer ver 84.69 83.31 0.70 1.42 cnd:pre:3s; +recommenceras recommencer ver 84.69 83.31 0.78 0.14 ind:fut:2s; +recommencerez recommencer ver 84.69 83.31 0.21 0.14 ind:fut:2p; +recommenceriez recommencer ver 84.69 83.31 0.06 0.00 cnd:pre:2p; +recommencerions recommencer ver 84.69 83.31 0.01 0.07 cnd:pre:1p; +recommencerons recommencer ver 84.69 83.31 0.54 0.14 ind:fut:1p; +recommenceront recommencer ver 84.69 83.31 0.42 0.07 ind:fut:3p; +recommences recommencer ver 84.69 83.31 4.02 0.95 ind:pre:2s; +recommencez recommencer ver 84.69 83.31 4.88 0.68 imp:pre:2p;ind:pre:2p; +recommenciez recommencer ver 84.69 83.31 0.19 0.07 ind:imp:2p; +recommencions recommencer ver 84.69 83.31 0.02 0.41 ind:imp:1p; +recommencèrent recommencer ver 84.69 83.31 0.00 1.55 ind:pas:3p; +recommencé recommencer ver m s 84.69 83.31 3.84 6.82 par:pas; +recommencée recommencer ver f s 84.69 83.31 0.12 0.81 par:pas; +recommencées recommencer ver f p 84.69 83.31 0.00 0.47 par:pas; +recommencés recommencer ver m p 84.69 83.31 0.00 0.41 par:pas; +recommença recommencer ver 84.69 83.31 0.06 7.77 ind:pas:3s; +recommençai recommencer ver 84.69 83.31 0.00 0.74 ind:pas:1s; +recommençaient recommencer ver 84.69 83.31 0.02 1.76 ind:imp:3p; +recommençais recommencer ver 84.69 83.31 0.11 1.22 ind:imp:1s;ind:imp:2s; +recommençait recommencer ver 84.69 83.31 1.22 10.41 ind:imp:3s; +recommençant recommencer ver 84.69 83.31 0.03 0.95 par:pre; +recommençâmes recommencer ver 84.69 83.31 0.02 0.20 ind:pas:1p; +recommençons recommencer ver 84.69 83.31 2.39 0.74 imp:pre:1p;ind:pre:1p; +recommençât recommencer ver 84.69 83.31 0.00 0.14 sub:imp:3s; +recommercer recommercer ver 0.00 0.07 0.00 0.07 inf; +recompléter recompléter ver 0.00 0.14 0.00 0.07 inf; +recomplété recompléter ver m s 0.00 0.14 0.00 0.07 par:pas; +recomposa recomposer ver 0.52 3.18 0.00 0.34 ind:pas:3s; +recomposaient recomposer ver 0.52 3.18 0.00 0.14 ind:imp:3p; +recomposais recomposer ver 0.52 3.18 0.00 0.07 ind:imp:1s; +recomposait recomposer ver 0.52 3.18 0.00 0.34 ind:imp:3s; +recompose recomposer ver 0.52 3.18 0.18 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recomposent recomposer ver 0.52 3.18 0.00 0.14 ind:pre:3p; +recomposer recomposer ver 0.52 3.18 0.28 1.01 inf; +recomposera recomposer ver 0.52 3.18 0.00 0.07 ind:fut:3s; +recomposition recomposition nom f s 0.00 0.07 0.00 0.07 +recomposèrent recomposer ver 0.52 3.18 0.00 0.14 ind:pas:3p; +recomposé recomposer ver m s 0.52 3.18 0.03 0.20 par:pas; +recomposée recomposer ver f s 0.52 3.18 0.01 0.00 par:pas; +recomposés recomposer ver m p 0.52 3.18 0.01 0.14 par:pas; +recompta recompter ver 1.67 1.82 0.00 0.20 ind:pas:3s; +recomptaient recompter ver 1.67 1.82 0.00 0.07 ind:imp:3p; +recomptais recompter ver 1.67 1.82 0.00 0.20 ind:imp:1s; +recomptait recompter ver 1.67 1.82 0.01 0.27 ind:imp:3s; +recomptant recompter ver 1.67 1.82 0.00 0.07 par:pre; +recompte recompter ver 1.67 1.82 0.75 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recompter recompter ver 1.67 1.82 0.55 0.47 inf; +recomptez recompter ver 1.67 1.82 0.05 0.00 imp:pre:2p;ind:pre:2p; +recomptons recompter ver 1.67 1.82 0.11 0.00 ind:pre:1p; +recompté recompter ver m s 1.67 1.82 0.20 0.20 par:pas; +recomptées recompter ver f p 1.67 1.82 0.00 0.07 par:pas; +reconditionne reconditionner ver 0.03 0.07 0.01 0.00 ind:pre:3s; +reconditionnement reconditionnement nom m s 0.05 0.00 0.05 0.00 +reconditionnons reconditionner ver 0.03 0.07 0.01 0.00 imp:pre:1p; +reconditionné reconditionner ver m s 0.03 0.07 0.01 0.00 par:pas; +reconditionnée reconditionner ver f s 0.03 0.07 0.00 0.07 par:pas; +reconductible reconductible adj s 0.01 0.07 0.01 0.07 +reconduction reconduction nom f s 0.01 0.00 0.01 0.00 +reconduirai reconduire ver 5.83 7.23 0.03 0.07 ind:fut:1s; +reconduirais reconduire ver 5.83 7.23 0.01 0.00 cnd:pre:1s; +reconduirait reconduire ver 5.83 7.23 0.00 0.07 cnd:pre:3s; +reconduire reconduire ver 5.83 7.23 2.97 2.84 inf; +reconduirez reconduire ver 5.83 7.23 0.01 0.00 ind:fut:2p; +reconduirons reconduire ver 5.83 7.23 0.01 0.07 ind:fut:1p; +reconduis reconduire ver 5.83 7.23 1.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconduisît reconduire ver 5.83 7.23 0.00 0.07 sub:imp:3s; +reconduisaient reconduire ver 5.83 7.23 0.00 0.07 ind:imp:3p; +reconduisais reconduire ver 5.83 7.23 0.00 0.14 ind:imp:1s; +reconduisait reconduire ver 5.83 7.23 0.02 0.27 ind:imp:3s; +reconduisant reconduire ver 5.83 7.23 0.00 0.14 par:pre; +reconduise reconduire ver 5.83 7.23 0.33 0.07 sub:pre:1s;sub:pre:3s; +reconduisent reconduire ver 5.83 7.23 0.01 0.07 ind:pre:3p; +reconduisez reconduire ver 5.83 7.23 0.76 0.07 imp:pre:2p;ind:pre:2p; +reconduisions reconduire ver 5.83 7.23 0.00 0.07 ind:imp:1p; +reconduisirent reconduire ver 5.83 7.23 0.00 0.07 ind:pas:3p; +reconduisit reconduire ver 5.83 7.23 0.00 1.15 ind:pas:3s; +reconduit reconduire ver m s 5.83 7.23 0.43 1.22 ind:pre:3s;par:pas; +reconduite reconduire ver f s 5.83 7.23 0.16 0.27 par:pas; +reconduits reconduire ver m p 5.83 7.23 0.04 0.20 par:pas; +reconfiguration reconfiguration nom f s 0.02 0.00 0.02 0.00 +reconfigure reconfigurer ver 0.39 0.00 0.05 0.00 ind:pre:1s;ind:pre:3s; +reconfigurer reconfigurer ver 0.39 0.00 0.18 0.00 inf; +reconfigurez reconfigurer ver 0.39 0.00 0.05 0.00 imp:pre:2p; +reconfiguré reconfigurer ver m s 0.39 0.00 0.09 0.00 par:pas; +reconfigurés reconfigurer ver m p 0.39 0.00 0.03 0.00 par:pas; +recongeler recongeler ver 0.01 0.00 0.01 0.00 inf; +reconnûmes reconnaître ver 140.73 229.19 0.01 0.34 ind:pas:1p; +reconnût reconnaître ver 140.73 229.19 0.00 1.22 sub:imp:3s; +reconnaît reconnaître ver 140.73 229.19 10.73 15.61 ind:pre:3s; +reconnaîtra reconnaître ver 140.73 229.19 2.80 1.49 ind:fut:3s; +reconnaîtrai reconnaître ver 140.73 229.19 0.66 0.68 ind:fut:1s; +reconnaîtraient reconnaître ver 140.73 229.19 0.10 0.41 cnd:pre:3p; +reconnaîtrais reconnaître ver 140.73 229.19 2.06 0.95 cnd:pre:1s;cnd:pre:2s; +reconnaîtrait reconnaître ver 140.73 229.19 0.56 2.09 cnd:pre:3s; +reconnaîtras reconnaître ver 140.73 229.19 1.54 0.54 ind:fut:2s; +reconnaître reconnaître ver 140.73 229.19 25.24 62.30 inf; +reconnaîtrez reconnaître ver 140.73 229.19 0.72 0.81 ind:fut:2p; +reconnaîtriez reconnaître ver 140.73 229.19 0.31 0.14 cnd:pre:2p; +reconnaîtrions reconnaître ver 140.73 229.19 0.00 0.07 cnd:pre:1p; +reconnaîtrons reconnaître ver 140.73 229.19 0.49 0.07 ind:fut:1p; +reconnaîtront reconnaître ver 140.73 229.19 1.01 0.34 ind:fut:3p; +reconnais reconnaître ver 140.73 229.19 37.36 24.12 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconnaissable reconnaissable adj s 0.56 4.66 0.50 3.45 +reconnaissables reconnaissable adj p 0.56 4.66 0.06 1.22 +reconnaissaient reconnaître ver 140.73 229.19 0.18 2.50 ind:imp:3p; +reconnaissais reconnaître ver 140.73 229.19 1.41 7.30 ind:imp:1s;ind:imp:2s; +reconnaissait reconnaître ver 140.73 229.19 0.65 17.50 ind:imp:3s; +reconnaissance reconnaissance nom f s 15.28 22.77 15.08 21.49 +reconnaissances reconnaissance nom f p 15.28 22.77 0.20 1.28 +reconnaissant reconnaissant adj m s 20.59 9.19 10.32 5.41 +reconnaissante reconnaissant adj f s 20.59 9.19 6.41 2.70 +reconnaissantes reconnaissant adj f p 20.59 9.19 0.17 0.27 +reconnaissants reconnaissant adj m p 20.59 9.19 3.69 0.81 +reconnaisse reconnaître ver 140.73 229.19 2.09 1.15 sub:pre:1s;sub:pre:3s; +reconnaissent reconnaître ver 140.73 229.19 2.10 3.65 ind:pre:3p; +reconnaisses reconnaître ver 140.73 229.19 0.13 0.07 sub:pre:2s; +reconnaissez reconnaître ver 140.73 229.19 13.49 2.97 imp:pre:2p;ind:pre:2p; +reconnaissiez reconnaître ver 140.73 229.19 0.22 0.27 ind:imp:2p; +reconnaissions reconnaître ver 140.73 229.19 0.11 1.08 ind:imp:1p; +reconnaissons reconnaître ver 140.73 229.19 0.69 1.08 imp:pre:1p;ind:pre:1p; +reconnecte reconnecter ver 0.52 0.00 0.07 0.00 imp:pre:2s;ind:pre:3s; +reconnecter reconnecter ver 0.52 0.00 0.29 0.00 inf; +reconnectez reconnecter ver 0.52 0.00 0.03 0.00 imp:pre:2p; +reconnecté reconnecter ver m s 0.52 0.00 0.06 0.00 par:pas; +reconnectés reconnecter ver m p 0.52 0.00 0.07 0.00 par:pas; +reconnu reconnaître ver m s 140.73 229.19 25.93 32.09 par:pas; +reconnue reconnaître ver f s 140.73 229.19 6.86 5.95 par:pas; +reconnues reconnaître ver f p 140.73 229.19 0.39 0.61 par:pas; +reconnurent reconnaître ver 140.73 229.19 0.03 1.42 ind:pas:3p; +reconnus reconnaître ver m p 140.73 229.19 1.34 8.72 ind:pas:1s;par:pas; +reconnusse reconnaître ver 140.73 229.19 0.00 0.07 sub:imp:1s; +reconnussent reconnaître ver 140.73 229.19 0.01 0.07 sub:imp:3p; +reconnut reconnaître ver 140.73 229.19 0.44 25.74 ind:pas:3s; +reconquerra reconquérir ver 1.54 3.18 0.01 0.07 ind:fut:3s; +reconquerrait reconquérir ver 1.54 3.18 0.00 0.07 cnd:pre:3s; +reconquerrons reconquérir ver 1.54 3.18 0.01 0.07 ind:fut:1p; +reconquiert reconquérir ver 1.54 3.18 0.01 0.07 ind:pre:3s; +reconquirent reconquérir ver 1.54 3.18 0.00 0.07 ind:pas:3p; +reconquis reconquérir ver m 1.54 3.18 0.07 0.68 par:pas; +reconquise reconquis adj f s 0.10 0.47 0.10 0.20 +reconquises reconquis adj f p 0.10 0.47 0.00 0.14 +reconquista reconquista nom f s 0.00 0.07 0.00 0.07 +reconquit reconquérir ver 1.54 3.18 0.00 0.07 ind:pas:3s; +reconquière reconquérir ver 1.54 3.18 0.01 0.07 sub:pre:3s; +reconquérais reconquérir ver 1.54 3.18 0.00 0.07 ind:imp:1s; +reconquérait reconquérir ver 1.54 3.18 0.00 0.07 ind:imp:3s; +reconquérir reconquérir ver 1.54 3.18 1.41 1.55 inf; +reconquérons reconquérir ver 1.54 3.18 0.01 0.00 imp:pre:1p; +reconquête reconquête nom f s 0.06 1.15 0.06 1.15 +reconsidère reconsidérer ver 1.51 1.55 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reconsidèrent reconsidérer ver 1.51 1.55 0.01 0.00 ind:pre:3p; +reconsidéra reconsidérer ver 1.51 1.55 0.00 0.27 ind:pas:3s; +reconsidérant reconsidérer ver 1.51 1.55 0.01 0.00 par:pre; +reconsidérer reconsidérer ver 1.51 1.55 1.06 1.01 inf; +reconsidérez reconsidérer ver 1.51 1.55 0.17 0.00 imp:pre:2p;ind:pre:2p; +reconsidéré reconsidérer ver m s 1.51 1.55 0.16 0.14 par:pas; +reconsidérée reconsidérer ver f s 1.51 1.55 0.01 0.07 par:pas; +reconstitua reconstituer ver 4.05 16.28 0.00 0.07 ind:pas:3s; +reconstituaient reconstituer ver 4.05 16.28 0.01 0.34 ind:imp:3p; +reconstituais reconstituer ver 4.05 16.28 0.04 0.14 ind:imp:1s;ind:imp:2s; +reconstituait reconstituer ver 4.05 16.28 0.01 1.01 ind:imp:3s; +reconstituant reconstituant nom m s 0.15 0.27 0.15 0.20 +reconstituante reconstituant adj f s 0.02 0.27 0.00 0.14 +reconstituantes reconstituant adj f p 0.02 0.27 0.01 0.07 +reconstituants reconstituant adj m p 0.02 0.27 0.00 0.07 +reconstituants reconstituant nom m p 0.15 0.27 0.00 0.07 +reconstitue reconstituer ver 4.05 16.28 0.42 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reconstituent reconstituer ver 4.05 16.28 0.03 0.47 ind:pre:3p; +reconstituer reconstituer ver 4.05 16.28 2.12 7.84 inf; +reconstitueraient reconstituer ver 4.05 16.28 0.00 0.07 cnd:pre:3p; +reconstituerais reconstituer ver 4.05 16.28 0.01 0.00 cnd:pre:1s; +reconstituerait reconstituer ver 4.05 16.28 0.00 0.20 cnd:pre:3s; +reconstituerons reconstituer ver 4.05 16.28 0.00 0.07 ind:fut:1p; +reconstitues reconstituer ver 4.05 16.28 0.02 0.07 ind:pre:2s; +reconstituâmes reconstituer ver 4.05 16.28 0.00 0.07 ind:pas:1p; +reconstituons reconstituer ver 4.05 16.28 0.08 0.00 imp:pre:1p;ind:pre:1p; +reconstituât reconstituer ver 4.05 16.28 0.00 0.14 sub:imp:3s; +reconstitution reconstitution nom f s 2.23 2.57 2.12 2.23 +reconstitutions reconstitution nom f p 2.23 2.57 0.11 0.34 +reconstitué reconstituer ver m s 4.05 16.28 1.05 1.69 par:pas; +reconstituée reconstituer ver f s 4.05 16.28 0.05 1.01 par:pas; +reconstituées reconstituer ver f p 4.05 16.28 0.16 0.14 par:pas; +reconstitués reconstituer ver m p 4.05 16.28 0.02 0.81 par:pas; +reconstructeur reconstructeur nom m s 0.01 0.00 0.01 0.00 +reconstruction reconstruction nom f s 2.25 4.19 2.07 4.12 +reconstructions reconstruction nom f p 2.25 4.19 0.17 0.07 +reconstructrice reconstructeur adj f s 0.04 0.00 0.04 0.00 +reconstruira reconstruire ver 7.24 7.84 0.02 0.07 ind:fut:3s; +reconstruirai reconstruire ver 7.24 7.84 0.02 0.00 ind:fut:1s; +reconstruirais reconstruire ver 7.24 7.84 0.01 0.00 cnd:pre:1s; +reconstruirait reconstruire ver 7.24 7.84 0.02 0.07 cnd:pre:3s; +reconstruiras reconstruire ver 7.24 7.84 0.01 0.00 ind:fut:2s; +reconstruire reconstruire ver 7.24 7.84 4.59 3.24 inf; +reconstruirons reconstruire ver 7.24 7.84 0.36 0.07 ind:fut:1p; +reconstruiront reconstruire ver 7.24 7.84 0.04 0.00 ind:fut:3p; +reconstruis reconstruire ver 7.24 7.84 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconstruisaient reconstruire ver 7.24 7.84 0.01 0.27 ind:imp:3p; +reconstruisait reconstruire ver 7.24 7.84 0.01 0.41 ind:imp:3s; +reconstruisant reconstruire ver 7.24 7.84 0.00 0.14 par:pre; +reconstruisent reconstruire ver 7.24 7.84 0.14 0.07 ind:pre:3p; +reconstruisez reconstruire ver 7.24 7.84 0.04 0.00 imp:pre:2p;ind:pre:2p; +reconstruisirent reconstruire ver 7.24 7.84 0.00 0.14 ind:pas:3p; +reconstruisons reconstruire ver 7.24 7.84 0.04 0.00 imp:pre:1p;ind:pre:1p; +reconstruit reconstruire ver m s 7.24 7.84 1.39 1.76 ind:pre:3s;par:pas; +reconstruite reconstruire ver f s 7.24 7.84 0.29 1.15 par:pas; +reconstruites reconstruire ver f p 7.24 7.84 0.06 0.27 par:pas; +reconstruits reconstruire ver m p 7.24 7.84 0.06 0.14 par:pas; +reconsulter reconsulter ver 0.01 0.00 0.01 0.00 inf; +recontacter recontacter ver 0.38 0.07 0.27 0.07 inf; +reconter reconter ver 0.00 0.07 0.00 0.07 inf; +recontrer recontrer ver 0.20 0.00 0.20 0.00 inf; +reconventionnelle reconventionnel adj f s 0.01 0.00 0.01 0.00 +reconversion reconversion nom f s 0.36 0.74 0.36 0.74 +reconverti reconvertir ver m s 0.40 2.30 0.13 0.68 par:pas; +reconvertie reconvertir ver f s 0.40 2.30 0.10 0.20 par:pas; +reconvertir reconvertir ver 0.40 2.30 0.12 0.81 inf; +reconvertirent reconvertir ver 0.40 2.30 0.00 0.07 ind:pas:3p; +reconvertis reconvertir ver m p 0.40 2.30 0.02 0.27 imp:pre:2s;ind:pre:2s;ind:pas:2s;par:pas; +reconvertissant reconvertir ver 0.40 2.30 0.00 0.07 par:pre; +reconvertisse reconvertir ver 0.40 2.30 0.00 0.07 sub:pre:1s; +reconvertit reconvertir ver 0.40 2.30 0.02 0.14 ind:pre:3s;ind:pas:3s; +reconvoquer reconvoquer ver 0.02 0.00 0.02 0.00 inf; +recopia recopier ver 2.41 7.30 0.00 0.27 ind:pas:3s; +recopiage recopiage nom m s 0.00 0.07 0.00 0.07 +recopiai recopier ver 2.41 7.30 0.00 0.14 ind:pas:1s; +recopiaient recopier ver 2.41 7.30 0.00 0.07 ind:imp:3p; +recopiais recopier ver 2.41 7.30 0.00 0.41 ind:imp:1s; +recopiait recopier ver 2.41 7.30 0.00 0.54 ind:imp:3s; +recopiant recopier ver 2.41 7.30 0.16 0.47 par:pre; +recopie recopier ver 2.41 7.30 0.50 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recopient recopier ver 2.41 7.30 0.00 0.07 ind:pre:3p; +recopier recopier ver 2.41 7.30 0.82 2.23 inf; +recopierai recopier ver 2.41 7.30 0.25 0.00 ind:fut:1s; +recopierait recopier ver 2.41 7.30 0.00 0.07 cnd:pre:3s; +recopies recopier ver 2.41 7.30 0.01 0.07 ind:pre:2s; +recopiez recopier ver 2.41 7.30 0.16 0.00 imp:pre:2p;ind:pre:2p; +recopiât recopier ver 2.41 7.30 0.00 0.07 sub:imp:3s; +recopié recopier ver m s 2.41 7.30 0.23 1.01 par:pas; +recopiée recopier ver f s 2.41 7.30 0.02 0.20 par:pas; +recopiées recopier ver f p 2.41 7.30 0.23 0.41 par:pas; +recopiés recopier ver m p 2.41 7.30 0.03 0.47 par:pas; +record record nom m s 13.34 5.95 10.14 3.11 +recorder recorder ver 0.03 0.00 0.03 0.00 inf; +recordman recordman nom m s 0.04 0.20 0.04 0.14 +recordmen recordman nom m p 0.04 0.20 0.00 0.07 +records record nom m p 13.34 5.95 3.20 2.84 +recors recors nom m 0.01 0.00 0.01 0.00 +recoucha recoucher ver 3.69 8.11 0.00 1.69 ind:pas:3s; +recouchai recoucher ver 3.69 8.11 0.00 0.41 ind:pas:1s; +recouchais recoucher ver 3.69 8.11 0.00 0.07 ind:imp:1s; +recouchait recoucher ver 3.69 8.11 0.00 0.74 ind:imp:3s; +recouchant recoucher ver 3.69 8.11 0.00 0.20 par:pre; +recouche recoucher ver 3.69 8.11 1.54 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoucher recoucher ver 3.69 8.11 1.79 2.23 inf; +recoucherais recoucher ver 3.69 8.11 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +recoucheriez recoucher ver 3.69 8.11 0.01 0.00 cnd:pre:2p; +recouchez recoucher ver 3.69 8.11 0.08 0.07 imp:pre:2p; +recouchèrent recoucher ver 3.69 8.11 0.00 0.07 ind:pas:3p; +recouché recoucher ver m s 3.69 8.11 0.20 0.47 par:pas; +recouchée recoucher ver f s 3.69 8.11 0.03 0.61 par:pas; +recouchées recoucher ver f p 3.69 8.11 0.01 0.07 par:pas; +recouchés recoucher ver m p 3.69 8.11 0.00 0.07 par:pas; +recoud recoudre ver 5.80 3.92 0.11 0.41 ind:pre:3s; +recoudra recoudre ver 5.80 3.92 0.25 0.07 ind:fut:3s; +recoudrai recoudre ver 5.80 3.92 0.16 0.07 ind:fut:1s; +recoudras recoudre ver 5.80 3.92 0.01 0.07 ind:fut:2s; +recoudre recoudre ver 5.80 3.92 2.96 1.28 inf; +recouds recoudre ver 5.80 3.92 0.53 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +recouler recouler ver 0.01 0.07 0.01 0.07 inf; +recoupa recouper ver 0.81 1.96 0.00 0.07 ind:pas:3s; +recoupaient recouper ver 0.81 1.96 0.00 0.14 ind:imp:3p; +recoupait recouper ver 0.81 1.96 0.02 0.27 ind:imp:3s; +recoupant recouper ver 0.81 1.96 0.01 0.20 par:pre; +recoupe recouper ver 0.81 1.96 0.25 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoupement recoupement nom m s 0.24 1.42 0.08 0.27 +recoupements recoupement nom m p 0.24 1.42 0.17 1.15 +recoupent recouper ver 0.81 1.96 0.10 0.41 ind:pre:3p; +recouper recouper ver 0.81 1.96 0.25 0.27 inf; +recouperait recouper ver 0.81 1.96 0.00 0.07 cnd:pre:3s; +recouperont recouper ver 0.81 1.96 0.01 0.00 ind:fut:3p; +recoupez recouper ver 0.81 1.96 0.04 0.00 imp:pre:2p; +recoupions recouper ver 0.81 1.96 0.00 0.07 ind:imp:1p; +recoupé recouper ver m s 0.81 1.96 0.10 0.14 par:pas; +recoupés recouper ver m p 0.81 1.96 0.02 0.00 par:pas; +recourait recourir ver 1.92 4.73 0.10 0.47 ind:imp:3s; +recourant recourir ver 1.92 4.73 0.04 0.07 par:pre; +recourba recourber ver 0.06 2.09 0.00 0.07 ind:pas:3s; +recourbaient recourber ver 0.06 2.09 0.00 0.07 ind:imp:3p; +recourbait recourber ver 0.06 2.09 0.00 0.14 ind:imp:3s; +recourbant recourber ver 0.06 2.09 0.00 0.14 par:pre; +recourbe recourber ver 0.06 2.09 0.03 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recourber recourber ver 0.06 2.09 0.01 0.14 inf; +recourbé recourbé adj m s 0.07 2.97 0.03 1.15 +recourbée recourber ver f s 0.06 2.09 0.01 0.47 par:pas; +recourbées recourbé adj f p 0.07 2.97 0.01 0.34 +recourbés recourbé adj m p 0.07 2.97 0.01 1.22 +recoure recourir ver 1.92 4.73 0.01 0.00 sub:pre:3s; +recourent recourir ver 1.92 4.73 0.10 0.20 ind:pre:3p; +recourez recourir ver 1.92 4.73 0.04 0.00 imp:pre:2p; +recourir recourir ver 1.92 4.73 1.25 2.77 inf; +recourons recourir ver 1.92 4.73 0.01 0.07 ind:pre:1p; +recourrait recourir ver 1.92 4.73 0.00 0.07 cnd:pre:3s; +recours recours nom m 6.45 15.34 6.45 15.34 +recourt recourir ver 1.92 4.73 0.08 0.27 ind:pre:3s; +recouru recourir ver m s 1.92 4.73 0.11 0.20 par:pas; +recoururent recourir ver 1.92 4.73 0.00 0.14 ind:pas:3p; +recourus recourir ver 1.92 4.73 0.00 0.07 ind:pas:1s; +recourut recourir ver 1.92 4.73 0.01 0.20 ind:pas:3s; +recousais recoudre ver 5.80 3.92 0.02 0.00 ind:imp:1s; +recousait recoudre ver 5.80 3.92 0.13 0.27 ind:imp:3s; +recousant recoudre ver 5.80 3.92 0.02 0.27 par:pre; +recouse recoudre ver 5.80 3.92 0.07 0.07 sub:pre:1s;sub:pre:3s; +recousez recoudre ver 5.80 3.92 0.13 0.00 imp:pre:2p; +recousu recoudre ver m s 5.80 3.92 0.78 0.81 par:pas; +recousue recoudre ver f s 5.80 3.92 0.60 0.27 par:pas; +recousus recoudre ver m p 5.80 3.92 0.04 0.20 par:pas; +recouvert recouvrir ver m s 11.04 69.26 2.79 16.82 par:pas; +recouverte recouvrir ver f s 11.04 69.26 0.90 7.77 par:pas; +recouvertes recouvrir ver f p 11.04 69.26 0.14 3.65 par:pas; +recouverts recouvrir ver m p 11.04 69.26 0.88 9.59 par:pas; +recouvrît recouvrir ver 11.04 69.26 0.00 0.14 sub:imp:3s; +recouvra recouvrer ver 2.02 5.27 0.02 0.41 ind:pas:3s; +recouvrables recouvrable adj f p 0.00 0.07 0.00 0.07 +recouvrai recouvrer ver 2.02 5.27 0.00 0.07 ind:pas:1s; +recouvraient recouvrir ver 11.04 69.26 0.23 2.30 ind:imp:3p; +recouvrais recouvrir ver 11.04 69.26 0.00 0.34 ind:imp:1s; +recouvrait recouvrir ver 11.04 69.26 0.46 7.91 ind:imp:3s; +recouvrance recouvrance nom f s 0.00 0.27 0.00 0.27 +recouvrant recouvrir ver 11.04 69.26 0.47 2.91 par:pre; +recouvre recouvrir ver 11.04 69.26 2.28 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recouvrement recouvrement nom m s 0.28 0.14 0.28 0.14 +recouvrent recouvrir ver 11.04 69.26 0.25 1.62 ind:pre:3p;sub:pre:3p; +recouvrer recouvrer ver 2.02 5.27 0.46 2.30 inf; +recouvrerai recouvrer ver 2.02 5.27 0.01 0.00 ind:fut:1s; +recouvrerait recouvrer ver 2.02 5.27 0.03 0.14 cnd:pre:3s; +recouvrerez recouvrer ver 2.02 5.27 0.02 0.00 ind:fut:2p; +recouvreront recouvrer ver 2.02 5.27 0.00 0.07 ind:fut:3p; +recouvrez recouvrir ver 11.04 69.26 0.71 0.07 imp:pre:2p;imp:pre:2p;ind:pre:2p; +recouvriez recouvrir ver 11.04 69.26 0.02 0.00 ind:imp:2p; +recouvrir recouvrir ver 11.04 69.26 1.74 5.27 inf; +recouvrira recouvrir ver 11.04 69.26 0.06 0.34 ind:fut:3s; +recouvrirai recouvrir ver 11.04 69.26 0.02 0.07 ind:fut:1s; +recouvriraient recouvrir ver 11.04 69.26 0.00 0.07 cnd:pre:3p; +recouvrirait recouvrir ver 11.04 69.26 0.02 0.27 cnd:pre:3s; +recouvrirent recouvrir ver 11.04 69.26 0.00 0.34 ind:pas:3p; +recouvris recouvrir ver 11.04 69.26 0.01 0.07 ind:pas:1s; +recouvrissent recouvrir ver 11.04 69.26 0.00 0.07 sub:imp:3p; +recouvrit recouvrir ver 11.04 69.26 0.04 1.55 ind:pas:3s; +recouvrons recouvrir ver 11.04 69.26 0.03 0.07 imp:pre:1p;ind:pre:1p; +recouvrât recouvrer ver 2.02 5.27 0.00 0.07 sub:imp:3s; +recouvré recouvrer ver m s 2.02 5.27 0.66 1.62 par:pas; +recouvrée recouvrer ver f s 2.02 5.27 0.02 0.47 par:pas; +recouvrées recouvrer ver f p 2.02 5.27 0.21 0.07 par:pas; +recouvrés recouvrer ver m p 2.02 5.27 0.01 0.07 par:pas; +recracha recracher ver 2.26 2.36 0.00 0.74 ind:pas:3s; +recrachaient recracher ver 2.26 2.36 0.01 0.14 ind:imp:3p; +recrachais recracher ver 2.26 2.36 0.01 0.07 ind:imp:1s; +recrachait recracher ver 2.26 2.36 0.03 0.20 ind:imp:3s; +recrachant recracher ver 2.26 2.36 0.01 0.00 par:pre; +recrache recracher ver 2.26 2.36 0.61 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recrachent recracher ver 2.26 2.36 0.06 0.07 ind:pre:3p; +recracher recracher ver 2.26 2.36 0.66 0.34 inf; +recrachera recracher ver 2.26 2.36 0.02 0.07 ind:fut:3s; +recraches recracher ver 2.26 2.36 0.15 0.00 ind:pre:2s; +recrachez recracher ver 2.26 2.36 0.17 0.00 imp:pre:2p;ind:pre:2p; +recraché recracher ver m s 2.26 2.36 0.47 0.27 par:pas; +recrachée recracher ver f s 2.26 2.36 0.05 0.07 par:pas; +recreuse recreuser ver 0.14 0.20 0.00 0.07 ind:pre:3s; +recreuser recreuser ver 0.14 0.20 0.14 0.07 inf; +recroisait recroiser ver 0.17 0.88 0.00 0.07 ind:imp:3s; +recroisant recroiser ver 0.17 0.88 0.00 0.14 par:pre; +recroise recroiser ver 0.17 0.88 0.03 0.34 ind:pre:1s;ind:pre:3s; +recroiser recroiser ver 0.17 0.88 0.05 0.07 inf; +recroiseras recroiser ver 0.17 0.88 0.03 0.00 ind:fut:2s; +recroiserons recroiser ver 0.17 0.88 0.01 0.00 ind:fut:1p; +recroisé recroiser ver m s 0.17 0.88 0.04 0.14 par:pas; +recroisés recroiser ver m p 0.17 0.88 0.01 0.14 par:pas; +recroquevilla recroqueviller ver 0.29 14.05 0.00 0.95 ind:pas:3s; +recroquevillai recroqueviller ver 0.29 14.05 0.01 0.14 ind:pas:1s; +recroquevillaient recroqueviller ver 0.29 14.05 0.00 0.41 ind:imp:3p; +recroquevillais recroqueviller ver 0.29 14.05 0.00 0.27 ind:imp:1s; +recroquevillait recroqueviller ver 0.29 14.05 0.00 0.74 ind:imp:3s; +recroquevillant recroqueviller ver 0.29 14.05 0.00 0.20 par:pre; +recroqueville recroqueviller ver 0.29 14.05 0.03 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recroquevillement recroquevillement nom m s 0.00 0.14 0.00 0.14 +recroquevillent recroqueviller ver 0.29 14.05 0.01 0.61 ind:pre:3p; +recroqueviller recroqueviller ver 0.29 14.05 0.03 1.22 inf; +recroquevillions recroqueviller ver 0.29 14.05 0.00 0.14 ind:imp:1p; +recroquevillé recroqueviller ver m s 0.29 14.05 0.12 4.59 par:pas; +recroquevillée recroqueviller ver f s 0.29 14.05 0.09 1.96 par:pas; +recroquevillées recroquevillé adj f p 0.12 3.72 0.00 0.61 +recroquevillés recroquevillé adj m p 0.12 3.72 0.10 0.41 +recru recroître ver m s 0.00 0.47 0.00 0.34 par:pas; +recréa recréer ver 2.23 4.39 0.00 0.14 ind:pas:3s; +recréaient recréer ver 2.23 4.39 0.01 0.14 ind:imp:3p; +recréais recréer ver 2.23 4.39 0.01 0.07 ind:imp:1s; +recréait recréer ver 2.23 4.39 0.00 0.07 ind:imp:3s; +recréant recréer ver 2.23 4.39 0.04 0.27 par:pre; +recréation recréation nom f s 0.04 0.27 0.01 0.20 +recrudescence recrudescence nom f s 0.21 0.81 0.21 0.81 +recrudescente recrudescent adj f s 0.01 0.00 0.01 0.00 +recrée recréer ver 2.23 4.39 0.28 0.34 ind:pre:1s;ind:pre:3s; +recrue recrue nom f s 4.61 3.85 1.73 1.35 +recréent recréer ver 2.23 4.39 0.00 0.14 ind:pre:3p; +recréer recréer ver 2.23 4.39 1.61 2.16 inf; +recréerait recréer ver 2.23 4.39 0.01 0.14 cnd:pre:3s; +recrues recrue nom f p 4.61 3.85 2.87 2.50 +recrépi recrépir ver m s 0.00 0.34 0.00 0.07 par:pas; +recrépie recrépir ver f s 0.00 0.34 0.00 0.07 par:pas; +recrépir recrépir ver 0.00 0.34 0.00 0.07 inf; +recrépis recrépir ver m p 0.00 0.34 0.00 0.07 par:pas; +recrépit recrépir ver 0.00 0.34 0.00 0.07 ind:pre:3s; +recrus recroître ver m p 0.00 0.47 0.00 0.14 par:pas; +recruta recruter ver 7.45 6.15 0.01 0.20 ind:pas:3s; +recrutaient recruter ver 7.45 6.15 0.03 0.27 ind:imp:3p; +recrutais recruter ver 7.45 6.15 0.02 0.00 ind:imp:1s;ind:imp:2s; +recrutait recruter ver 7.45 6.15 0.24 0.54 ind:imp:3s; +recrutant recruter ver 7.45 6.15 0.08 0.07 par:pre; +recrute recruter ver 7.45 6.15 1.01 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recrutement recrutement nom m s 1.66 3.51 1.66 3.51 +recrutent recruter ver 7.45 6.15 0.24 0.27 ind:pre:3p; +recruter recruter ver 7.45 6.15 2.59 1.76 inf; +recrutera recruter ver 7.45 6.15 0.04 0.00 ind:fut:3s; +recruterai recruter ver 7.45 6.15 0.04 0.00 ind:fut:1s; +recruterez recruter ver 7.45 6.15 0.00 0.07 ind:fut:2p; +recruteur recruteur nom m s 1.34 0.20 0.87 0.14 +recruteurs recruteur nom m p 1.34 0.20 0.47 0.07 +recrutez recruter ver 7.45 6.15 0.13 0.00 imp:pre:2p;ind:pre:2p; +recrutiez recruter ver 7.45 6.15 0.02 0.00 ind:imp:2p; +recrutions recruter ver 7.45 6.15 0.01 0.07 ind:imp:1p; +recrutons recruter ver 7.45 6.15 0.07 0.00 imp:pre:1p;ind:pre:1p; +recruté recruter ver m s 7.45 6.15 2.27 1.08 par:pas; +recrutée recruter ver f s 7.45 6.15 0.29 0.34 par:pas; +recrutées recruter ver f p 7.45 6.15 0.02 0.20 par:pas; +recrutés recruter ver m p 7.45 6.15 0.34 0.88 par:pas; +recréé recréer ver m s 2.23 4.39 0.16 0.61 par:pas; +recréée recréer ver f s 2.23 4.39 0.02 0.20 par:pas; +recréées recréer ver f p 2.23 4.39 0.01 0.07 par:pas; +recréés recréer ver m p 2.23 4.39 0.07 0.00 par:pas; +recta recta adv_sup 0.08 1.08 0.08 1.08 +rectal rectal adj m s 0.66 0.14 0.33 0.00 +rectale rectal adj f s 0.66 0.14 0.29 0.14 +rectangle rectangle nom m s 0.47 16.69 0.38 12.91 +rectangles rectangle nom m p 0.47 16.69 0.09 3.78 +rectangulaire rectangulaire adj s 0.25 8.18 0.09 5.14 +rectangulaires rectangulaire adj p 0.25 8.18 0.16 3.04 +rectaux rectal adj m p 0.66 0.14 0.03 0.00 +recteur recteur nom m s 2.17 1.55 2.13 1.42 +recteurs recteur nom m p 2.17 1.55 0.04 0.07 +recèle receler ver 1.02 3.72 0.58 0.95 ind:pre:1s;ind:pre:3s; +recèlent receler ver 1.02 3.72 0.31 0.68 ind:pre:3p; +recèles receler ver 1.02 3.72 0.01 0.00 ind:pre:2s; +recès recès nom m 0.00 0.07 0.00 0.07 +rectifia rectifier ver 2.04 10.68 0.00 2.64 ind:pas:3s; +rectifiai rectifier ver 2.04 10.68 0.00 0.20 ind:pas:1s; +rectifiait rectifier ver 2.04 10.68 0.01 0.81 ind:imp:3s; +rectifiant rectifier ver 2.04 10.68 0.00 0.34 par:pre; +rectificatif rectificatif nom m s 0.05 0.07 0.05 0.07 +rectification rectification nom f s 0.93 0.61 0.91 0.34 +rectifications rectification nom f p 0.93 0.61 0.02 0.27 +rectifie rectifier ver 2.04 10.68 0.26 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rectifient rectifier ver 2.04 10.68 0.01 0.14 ind:pre:3p; +rectifier rectifier ver 2.04 10.68 0.92 2.50 inf; +rectifiera rectifier ver 2.04 10.68 0.02 0.00 ind:fut:3s; +rectifierai rectifier ver 2.04 10.68 0.00 0.07 ind:fut:1s; +rectifierez rectifier ver 2.04 10.68 0.00 0.07 ind:fut:2p; +rectifies rectifier ver 2.04 10.68 0.01 0.07 ind:pre:2s; +rectifiez rectifier ver 2.04 10.68 0.34 0.14 imp:pre:2p;ind:pre:2p; +rectifions rectifier ver 2.04 10.68 0.03 0.07 imp:pre:1p; +rectifièrent rectifier ver 2.04 10.68 0.00 0.14 ind:pas:3p; +rectifié rectifier ver m s 2.04 10.68 0.36 1.22 par:pas; +rectifiée rectifier ver f s 2.04 10.68 0.06 0.47 par:pas; +rectifiées rectifier ver f p 2.04 10.68 0.00 0.34 par:pas; +rectifiés rectifier ver m p 2.04 10.68 0.01 0.14 par:pas; +rectiligne rectiligne adj s 0.16 6.08 0.16 4.46 +rectilignes rectiligne adj p 0.16 6.08 0.00 1.62 +rectilinéaire rectilinéaire adj m s 0.01 0.00 0.01 0.00 +rectitude rectitude nom f s 0.05 0.68 0.05 0.68 +recto_tono recto_tono adv 0.00 0.20 0.00 0.20 +recto recto nom m s 0.30 0.95 0.30 0.88 +rectorat rectorat nom m s 0.18 0.00 0.18 0.00 +rectos recto nom m p 0.30 0.95 0.00 0.07 +rectrices recteur nom f p 2.17 1.55 0.00 0.07 +rectum rectum nom m s 0.50 0.81 0.50 0.81 +recueil recueil nom m s 1.52 3.78 1.33 2.97 +recueillît recueillir ver 8.54 31.42 0.00 0.34 sub:imp:3s; +recueillaient recueillir ver 8.54 31.42 0.02 0.34 ind:imp:3p; +recueillais recueillir ver 8.54 31.42 0.04 0.20 ind:imp:1s; +recueillait recueillir ver 8.54 31.42 0.05 1.96 ind:imp:3s; +recueillant recueillir ver 8.54 31.42 0.05 1.01 par:pre; +recueille recueillir ver 8.54 31.42 1.12 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recueillement recueillement nom m s 0.20 3.04 0.20 2.97 +recueillements recueillement nom m p 0.20 3.04 0.00 0.07 +recueillent recueillir ver 8.54 31.42 0.21 0.81 ind:pre:3p; +recueillera recueillir ver 8.54 31.42 0.05 0.47 ind:fut:3s; +recueillerai recueillir ver 8.54 31.42 0.02 0.07 ind:fut:1s; +recueilleraient recueillir ver 8.54 31.42 0.00 0.07 cnd:pre:3p; +recueillerait recueillir ver 8.54 31.42 0.01 0.27 cnd:pre:3s; +recueilleront recueillir ver 8.54 31.42 0.00 0.07 ind:fut:3p; +recueillez recueillir ver 8.54 31.42 0.22 0.00 imp:pre:2p;ind:pre:2p; +recueilli recueillir ver m s 8.54 31.42 2.20 5.88 par:pas; +recueillie recueillir ver f s 8.54 31.42 0.42 1.15 par:pas; +recueillies recueillir ver f p 8.54 31.42 0.29 0.74 par:pas; +recueillions recueillir ver 8.54 31.42 0.00 0.07 ind:imp:1p; +recueillir recueillir ver 8.54 31.42 2.59 9.46 inf; +recueillirent recueillir ver 8.54 31.42 0.11 0.41 ind:pas:3p; +recueillis recueillir ver m p 8.54 31.42 0.58 2.09 ind:pas:1s;par:pas; +recueillit recueillir ver 8.54 31.42 0.18 2.57 ind:pas:3s; +recueillons recueillir ver 8.54 31.42 0.38 0.07 imp:pre:1p;ind:pre:1p; +recueils recueil nom m p 1.52 3.78 0.19 0.81 +recuire recuire ver 0.02 0.68 0.02 0.07 inf; +recuisson recuisson nom f s 0.00 0.07 0.00 0.07 +recuit recuit adj m s 0.03 1.55 0.03 0.54 +recuite recuit adj f s 0.03 1.55 0.00 0.54 +recuites recuire ver f p 0.02 0.68 0.00 0.27 par:pas; +recuits recuit adj m p 0.03 1.55 0.00 0.34 +recul recul nom m s 3.59 15.61 3.59 14.73 +recula reculer ver 52.15 69.05 0.02 13.31 ind:pas:3s; +reculade reculade nom f s 0.00 0.54 0.00 0.47 +reculades reculade nom f p 0.00 0.54 0.00 0.07 +reculai reculer ver 52.15 69.05 0.03 0.68 ind:pas:1s; +reculaient reculer ver 52.15 69.05 0.01 1.62 ind:imp:3p; +reculais reculer ver 52.15 69.05 0.04 0.54 ind:imp:1s;ind:imp:2s; +reculait reculer ver 52.15 69.05 0.20 4.86 ind:imp:3s; +recélait recéler ver 0.02 0.54 0.02 0.34 ind:imp:3s; +reculant reculer ver 52.15 69.05 0.25 3.78 par:pre; +recélant recéler ver 0.02 0.54 0.00 0.07 par:pre; +recule reculer ver 52.15 69.05 15.11 11.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reculent reculer ver 52.15 69.05 1.31 1.49 ind:pre:3p; +reculer reculer ver 52.15 69.05 6.83 15.41 inf; +recéler recéler ver 0.02 0.54 0.00 0.14 inf; +reculera reculer ver 52.15 69.05 0.14 0.14 ind:fut:3s; +reculerai reculer ver 52.15 69.05 0.24 0.00 ind:fut:1s; +reculeraient reculer ver 52.15 69.05 0.01 0.07 cnd:pre:3p; +reculerais reculer ver 52.15 69.05 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +reculerait reculer ver 52.15 69.05 0.01 0.14 cnd:pre:3s; +reculeras reculer ver 52.15 69.05 0.26 0.00 ind:fut:2s; +reculerons reculer ver 52.15 69.05 0.02 0.00 ind:fut:1p; +reculeront reculer ver 52.15 69.05 0.20 0.00 ind:fut:3p; +recules reculer ver 52.15 69.05 1.00 0.07 ind:pre:2s;sub:pre:2s; +reculez reculer ver 52.15 69.05 22.91 0.20 imp:pre:2p;ind:pre:2p; +reculons reculer ver 52.15 69.05 1.67 6.62 imp:pre:1p;ind:pre:1p; +reculât reculer ver 52.15 69.05 0.00 0.07 sub:imp:3s; +reculotta reculotter ver 0.02 0.47 0.00 0.20 ind:pas:3s; +reculotte reculotter ver 0.02 0.47 0.02 0.07 imp:pre:2s;ind:pre:3s; +reculotter reculotter ver 0.02 0.47 0.00 0.07 inf; +reculotté reculotter ver m s 0.02 0.47 0.00 0.07 par:pas; +reculottée reculotter ver f s 0.02 0.47 0.00 0.07 par:pas; +reculs recul nom m p 3.59 15.61 0.00 0.81 +reculèrent reculer ver 52.15 69.05 0.01 1.22 ind:pas:3p; +reculé reculer ver m s 52.15 69.05 1.71 6.96 par:pas; +reculée reculé adj f s 0.71 3.78 0.14 0.54 +reculées reculer ver f p 52.15 69.05 0.02 0.00 par:pas; +reculés reculé adj m p 0.71 3.78 0.18 1.15 +recépages recépage nom m p 0.00 0.07 0.00 0.07 +recyclable recyclable adj s 0.14 0.00 0.06 0.00 +recyclables recyclable adj p 0.14 0.00 0.09 0.00 +recyclage recyclage nom m s 0.78 0.47 0.78 0.47 +recyclaient recycler ver 1.77 1.15 0.02 0.00 ind:imp:3p; +recyclait recycler ver 1.77 1.15 0.01 0.00 ind:imp:3s; +recycle recycler ver 1.77 1.15 0.46 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recyclent recycler ver 1.77 1.15 0.06 0.07 ind:pre:3p; +recycler recycler ver 1.77 1.15 0.56 0.41 inf; +recyclerai recycler ver 1.77 1.15 0.01 0.00 ind:fut:1s; +recycleur recycleur nom m s 0.01 0.00 0.01 0.00 +recyclez recycler ver 1.77 1.15 0.07 0.00 imp:pre:2p;ind:pre:2p; +recycliez recycler ver 1.77 1.15 0.00 0.07 ind:imp:2p; +recyclé recycler ver m s 1.77 1.15 0.39 0.41 par:pas; +recyclée recycler ver f s 1.77 1.15 0.10 0.14 par:pas; +recyclées recycler ver f p 1.77 1.15 0.03 0.00 par:pas; +recyclés recycler ver m p 1.77 1.15 0.06 0.07 par:pas; +red_river red_river nom s 0.00 0.14 0.00 0.14 +redan redan nom m s 0.00 0.27 0.00 0.27 +reddition reddition nom f s 2.21 3.24 2.21 3.24 +redemanda redemander ver 3.72 4.19 0.00 0.61 ind:pas:3s; +redemandai redemander ver 3.72 4.19 0.14 0.00 ind:pas:1s; +redemandaient redemander ver 3.72 4.19 0.00 0.27 ind:imp:3p; +redemandais redemander ver 3.72 4.19 0.13 0.00 ind:imp:1s;ind:imp:2s; +redemandait redemander ver 3.72 4.19 0.16 0.68 ind:imp:3s; +redemandant redemander ver 3.72 4.19 0.00 0.07 par:pre; +redemande redemander ver 3.72 4.19 1.16 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redemandent redemander ver 3.72 4.19 0.23 0.14 ind:pre:3p; +redemander redemander ver 3.72 4.19 0.54 0.41 inf; +redemanderai redemander ver 3.72 4.19 0.36 0.00 ind:fut:1s; +redemanderait redemander ver 3.72 4.19 0.01 0.00 cnd:pre:3s; +redemanderas redemander ver 3.72 4.19 0.20 0.00 ind:fut:2s; +redemanderez redemander ver 3.72 4.19 0.03 0.00 ind:fut:2p; +redemanderont redemander ver 3.72 4.19 0.00 0.07 ind:fut:3p; +redemandes redemander ver 3.72 4.19 0.28 0.00 ind:pre:2s; +redemandez redemander ver 3.72 4.19 0.20 0.00 imp:pre:2p;ind:pre:2p; +redemandions redemander ver 3.72 4.19 0.00 0.07 ind:imp:1p; +redemandé redemander ver m s 3.72 4.19 0.29 0.95 par:pas; +redents redent nom m p 0.00 0.07 0.00 0.07 +redescend redescendre ver 11.61 28.38 1.82 2.84 ind:pre:3s; +redescendît redescendre ver 11.61 28.38 0.00 0.07 sub:imp:3s; +redescendaient redescendre ver 11.61 28.38 0.00 0.88 ind:imp:3p; +redescendais redescendre ver 11.61 28.38 0.01 0.41 ind:imp:1s; +redescendait redescendre ver 11.61 28.38 0.12 2.30 ind:imp:3s; +redescendant redescendre ver 11.61 28.38 0.29 1.55 par:pre; +redescende redescendre ver 11.61 28.38 0.50 0.41 sub:pre:1s;sub:pre:3s; +redescendent redescendre ver 11.61 28.38 0.33 0.41 ind:pre:3p; +redescendes redescendre ver 11.61 28.38 0.12 0.00 sub:pre:2s; +redescendez redescendre ver 11.61 28.38 0.92 0.14 imp:pre:2p;ind:pre:2p; +redescendiez redescendre ver 11.61 28.38 0.01 0.00 ind:imp:2p; +redescendions redescendre ver 11.61 28.38 0.00 0.14 ind:imp:1p; +redescendirent redescendre ver 11.61 28.38 0.00 1.01 ind:pas:3p; +redescendis redescendre ver 11.61 28.38 0.00 0.47 ind:pas:1s;ind:pas:2s; +redescendit redescendre ver 11.61 28.38 0.01 4.19 ind:pas:3s; +redescendons redescendre ver 11.61 28.38 0.14 0.41 imp:pre:1p;ind:pre:1p; +redescendra redescendre ver 11.61 28.38 0.06 0.14 ind:fut:3s; +redescendrai redescendre ver 11.61 28.38 0.19 0.20 ind:fut:1s; +redescendrais redescendre ver 11.61 28.38 0.01 0.00 cnd:pre:1s; +redescendrait redescendre ver 11.61 28.38 0.00 0.20 cnd:pre:3s; +redescendre redescendre ver 11.61 28.38 3.08 5.88 inf; +redescendrons redescendre ver 11.61 28.38 0.01 0.07 ind:fut:1p; +redescendront redescendre ver 11.61 28.38 0.02 0.00 ind:fut:3p; +redescends redescendre ver 11.61 28.38 3.05 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redescendu redescendre ver m s 11.61 28.38 0.51 3.04 par:pas; +redescendue redescendre ver f s 11.61 28.38 0.25 0.41 par:pas; +redescendues redescendre ver f p 11.61 28.38 0.00 0.14 par:pas; +redescendus redescendre ver m p 11.61 28.38 0.16 1.42 par:pas; +redescente redescente nom f s 0.01 0.14 0.01 0.14 +redessina redessiner ver 0.13 1.08 0.00 0.14 ind:pas:3s; +redessinaient redessiner ver 0.13 1.08 0.00 0.07 ind:imp:3p; +redessinait redessiner ver 0.13 1.08 0.00 0.14 ind:imp:3s; +redessine redessiner ver 0.13 1.08 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redessinent redessiner ver 0.13 1.08 0.00 0.07 ind:pre:3p; +redessiner redessiner ver 0.13 1.08 0.04 0.34 inf; +redessiné redessiner ver m s 0.13 1.08 0.00 0.20 par:pas; +redessinée redessiner ver f s 0.13 1.08 0.00 0.07 par:pas; +redevînt redevenir ver 17.88 37.57 0.00 0.20 sub:imp:3s; +redevable redevable adj s 3.76 0.81 3.46 0.74 +redevables redevable adj p 3.76 0.81 0.30 0.07 +redevais redevoir ver 0.03 0.20 0.00 0.07 ind:imp:1s; +redevait redevoir ver 0.03 0.20 0.00 0.07 ind:imp:3s; +redevance redevance nom f s 0.04 0.47 0.03 0.27 +redevances redevance nom f p 0.04 0.47 0.01 0.20 +redevenaient redevenir ver 17.88 37.57 0.01 0.74 ind:imp:3p; +redevenais redevenir ver 17.88 37.57 0.17 0.47 ind:imp:1s; +redevenait redevenir ver 17.88 37.57 0.11 4.73 ind:imp:3s; +redevenant redevenir ver 17.88 37.57 0.05 0.47 par:pre; +redevenez redevenir ver 17.88 37.57 0.39 0.14 imp:pre:2p;ind:pre:2p; +redeveniez redevenir ver 17.88 37.57 0.09 0.14 ind:imp:2p; +redevenir redevenir ver 17.88 37.57 5.52 5.88 inf; +redevenons redevenir ver 17.88 37.57 0.04 0.07 imp:pre:1p;ind:pre:1p; +redevenu redevenir ver m s 17.88 37.57 1.65 6.35 par:pas; +redevenue redevenir ver f s 17.88 37.57 0.56 4.53 par:pas; +redevenues redevenir ver f p 17.88 37.57 0.08 0.61 par:pas; +redevenus redevenir ver m p 17.88 37.57 0.40 1.42 par:pas; +redeviendra redevenir ver 17.88 37.57 1.50 0.54 ind:fut:3s; +redeviendrai redevenir ver 17.88 37.57 0.25 0.07 ind:fut:1s; +redeviendraient redevenir ver 17.88 37.57 0.01 0.14 cnd:pre:3p; +redeviendrais redevenir ver 17.88 37.57 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +redeviendrait redevenir ver 17.88 37.57 0.15 0.61 cnd:pre:3s; +redeviendras redevenir ver 17.88 37.57 0.37 0.00 ind:fut:2s; +redeviendrez redevenir ver 17.88 37.57 0.13 0.00 ind:fut:2p; +redeviendriez redevenir ver 17.88 37.57 0.14 0.00 cnd:pre:2p; +redeviendrons redevenir ver 17.88 37.57 0.03 0.07 ind:fut:1p; +redeviendront redevenir ver 17.88 37.57 0.28 0.07 ind:fut:3p; +redevienne redevenir ver 17.88 37.57 1.65 0.34 sub:pre:1s;sub:pre:3s; +redeviennent redevenir ver 17.88 37.57 0.44 0.61 ind:pre:3p; +redeviennes redevenir ver 17.88 37.57 0.17 0.00 sub:pre:2s; +redeviens redevenir ver 17.88 37.57 1.88 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redevient redevenir ver 17.88 37.57 1.21 4.05 ind:pre:3s; +redevinrent redevenir ver 17.88 37.57 0.01 0.20 ind:pas:3p; +redevins redevenir ver 17.88 37.57 0.00 0.20 ind:pas:1s; +redevint redevenir ver 17.88 37.57 0.23 3.65 ind:pas:3s; +redevoir redevoir ver 0.03 0.20 0.01 0.00 inf; +redevra redevoir ver 0.03 0.20 0.00 0.07 ind:fut:3s; +redevrez redevoir ver 0.03 0.20 0.01 0.00 ind:fut:2p; +rediffusent rediffuser ver 0.20 0.07 0.02 0.00 ind:pre:3p; +rediffuser rediffuser ver 0.20 0.07 0.05 0.00 inf; +rediffuserons rediffuser ver 0.20 0.07 0.02 0.00 ind:fut:1p; +rediffusez rediffuser ver 0.20 0.07 0.01 0.00 imp:pre:2p; +rediffusion rediffusion nom f s 0.64 0.00 0.44 0.00 +rediffusions rediffusion nom f p 0.64 0.00 0.20 0.00 +rediffusé rediffuser ver m s 0.20 0.07 0.05 0.00 par:pas; +rediffusés rediffuser ver m p 0.20 0.07 0.03 0.07 par:pas; +redimensionner redimensionner ver 0.03 0.00 0.01 0.00 inf; +redimensionnées redimensionner ver f p 0.03 0.00 0.01 0.00 par:pas; +redingote redingote nom f s 0.81 5.07 0.54 4.66 +redingotes redingote nom f p 0.81 5.07 0.27 0.41 +redirai redire ver 8.61 10.20 0.47 0.07 ind:fut:1s; +redirais redire ver 8.61 10.20 0.03 0.00 cnd:pre:1s; +redirait redire ver 8.61 10.20 0.01 0.07 cnd:pre:3s; +redire redire ver 8.61 10.20 3.04 5.07 inf; +redirez redire ver 8.61 10.20 0.01 0.07 ind:fut:2p; +rediriez redire ver 8.61 10.20 0.01 0.00 cnd:pre:2p; +redirige rediriger ver 0.37 0.00 0.08 0.00 ind:pre:1s;ind:pre:3s; +rediriger rediriger ver 0.37 0.00 0.15 0.00 inf; +redirigé rediriger ver m s 0.37 0.00 0.14 0.00 par:pas; +redis redire ver 8.61 10.20 3.46 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redisais redire ver 8.61 10.20 0.01 0.20 ind:imp:1s; +redisait redire ver 8.61 10.20 0.00 0.34 ind:imp:3s; +redisant redire ver 8.61 10.20 0.01 0.20 par:pre; +rediscuter rediscuter ver 0.20 0.07 0.10 0.07 inf; +rediscutera rediscuter ver 0.20 0.07 0.05 0.00 ind:fut:3s; +rediscuterons rediscuter ver 0.20 0.07 0.05 0.00 ind:fut:1p; +redise redire ver 8.61 10.20 0.02 0.20 sub:pre:1s;sub:pre:3s; +redisent redire ver 8.61 10.20 0.01 0.07 ind:pre:3p; +redises redire ver 8.61 10.20 0.27 0.00 sub:pre:2s; +redisposer redisposer ver 0.16 0.14 0.16 0.14 inf; +redistribua redistribuer ver 0.34 0.61 0.01 0.00 ind:pas:3s; +redistribuais redistribuer ver 0.34 0.61 0.02 0.07 ind:imp:1s;ind:imp:2s; +redistribuait redistribuer ver 0.34 0.61 0.00 0.20 ind:imp:3s; +redistribue redistribuer ver 0.34 0.61 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redistribuent redistribuer ver 0.34 0.61 0.01 0.00 ind:pre:3p; +redistribuer redistribuer ver 0.34 0.61 0.13 0.14 inf; +redistribueras redistribuer ver 0.34 0.61 0.01 0.00 ind:fut:2s; +redistribuons redistribuer ver 0.34 0.61 0.01 0.00 imp:pre:1p; +redistribution redistribution nom f s 0.10 0.41 0.10 0.34 +redistributions redistribution nom f p 0.10 0.41 0.00 0.07 +redistribué redistribuer ver m s 0.34 0.61 0.04 0.07 par:pas; +redistribués redistribuer ver m p 0.34 0.61 0.03 0.07 par:pas; +redit redire ver m s 8.61 10.20 0.39 1.96 ind:pre:3s;par:pas; +redite redire ver f s 8.61 10.20 0.01 0.00 par:pas; +redites redire ver f p 8.61 10.20 0.85 0.20 par:pas; +redits redire ver m p 8.61 10.20 0.00 0.14 par:pas; +redondance redondance nom f s 0.07 0.34 0.04 0.07 +redondances redondance nom f p 0.07 0.34 0.04 0.27 +redondant redondant adj m s 0.39 0.27 0.32 0.14 +redondante redondant adj f s 0.39 0.27 0.03 0.07 +redondantes redondant adj f p 0.39 0.27 0.01 0.07 +redondants redondant adj m p 0.39 0.27 0.04 0.00 +redonna redonner ver 9.43 11.49 0.03 0.54 ind:pas:3s; +redonnai redonner ver 9.43 11.49 0.00 0.07 ind:pas:1s; +redonnaient redonner ver 9.43 11.49 0.00 0.20 ind:imp:3p; +redonnais redonner ver 9.43 11.49 0.01 0.07 ind:imp:1s; +redonnait redonner ver 9.43 11.49 0.05 1.55 ind:imp:3s; +redonnant redonner ver 9.43 11.49 0.03 0.47 par:pre; +redonne redonner ver 9.43 11.49 2.77 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redonnent redonner ver 9.43 11.49 0.25 0.20 ind:pre:3p; +redonner redonner ver 9.43 11.49 2.87 4.73 inf; +redonnera redonner ver 9.43 11.49 0.27 0.20 ind:fut:3s; +redonnerai redonner ver 9.43 11.49 0.11 0.00 ind:fut:1s; +redonneraient redonner ver 9.43 11.49 0.01 0.07 cnd:pre:3p; +redonnerais redonner ver 9.43 11.49 0.00 0.07 cnd:pre:1s; +redonnerait redonner ver 9.43 11.49 0.04 0.14 cnd:pre:3s; +redonneras redonner ver 9.43 11.49 0.14 0.00 ind:fut:2s; +redonnerons redonner ver 9.43 11.49 0.01 0.00 ind:fut:1p; +redonneront redonner ver 9.43 11.49 0.02 0.00 ind:fut:3p; +redonnes redonner ver 9.43 11.49 0.56 0.00 ind:pre:2s; +redonnez redonner ver 9.43 11.49 0.54 0.07 imp:pre:2p;ind:pre:2p; +redonniez redonner ver 9.43 11.49 0.01 0.00 ind:imp:2p; +redonnons redonner ver 9.43 11.49 0.42 0.00 imp:pre:1p;ind:pre:1p; +redonnât redonner ver 9.43 11.49 0.00 0.07 sub:imp:3s; +redonné redonner ver m s 9.43 11.49 1.28 1.42 par:pas; +redorer redorer ver 0.18 0.41 0.18 0.27 inf; +redormir redormir ver 0.01 0.27 0.01 0.14 inf; +redors redormir ver 0.01 0.27 0.00 0.07 ind:pre:1s; +redort redormir ver 0.01 0.27 0.00 0.07 ind:pre:3s; +redoré redorer ver m s 0.18 0.41 0.00 0.07 par:pas; +redorées redorer ver f p 0.18 0.41 0.00 0.07 par:pas; +redoubla redoubler ver 2.73 11.01 0.00 1.08 ind:pas:3s; +redoublai redoubler ver 2.73 11.01 0.01 0.20 ind:pas:1s; +redoublaient redoubler ver 2.73 11.01 0.00 0.74 ind:imp:3p; +redoublais redoubler ver 2.73 11.01 0.01 0.07 ind:imp:1s; +redoublait redoubler ver 2.73 11.01 0.02 1.96 ind:imp:3s; +redoublant redoubler ver 2.73 11.01 0.01 0.20 par:pre; +redoublants redoublant nom m p 0.00 0.07 0.00 0.07 +redouble redoubler ver 2.73 11.01 0.57 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redoublement redoublement nom m s 0.03 0.47 0.03 0.47 +redoublent redoubler ver 2.73 11.01 0.17 0.74 ind:pre:3p; +redoubler redoubler ver 2.73 11.01 1.16 1.96 inf; +redoublera redoubler ver 2.73 11.01 0.11 0.07 ind:fut:3s; +redoublerai redoubler ver 2.73 11.01 0.12 0.07 ind:fut:1s; +redoublerait redoubler ver 2.73 11.01 0.00 0.14 cnd:pre:3s; +redoubleront redoubler ver 2.73 11.01 0.01 0.07 ind:fut:3p; +redoublez redoubler ver 2.73 11.01 0.04 0.00 imp:pre:2p;ind:pre:2p; +redoublions redoubler ver 2.73 11.01 0.00 0.07 ind:imp:1p; +redoublons redoubler ver 2.73 11.01 0.00 0.07 imp:pre:1p; +redoublèrent redoubler ver 2.73 11.01 0.00 0.27 ind:pas:3p; +redoublé redoubler ver m s 2.73 11.01 0.35 0.61 par:pas; +redoublée redoubler ver f s 2.73 11.01 0.00 0.20 par:pas; +redoublées redoublé adj f p 0.05 1.28 0.00 0.14 +redoublés redoubler ver m p 2.73 11.01 0.14 0.27 par:pas; +redouta redouter ver 6.58 38.58 0.00 0.54 ind:pas:3s; +redoutable redoutable adj s 6.61 23.18 5.94 17.77 +redoutablement redoutablement adv 0.01 0.41 0.01 0.41 +redoutables redoutable adj p 6.61 23.18 0.67 5.41 +redoutaient redouter ver 6.58 38.58 0.08 0.74 ind:imp:3p; +redoutais redouter ver 6.58 38.58 0.66 3.65 ind:imp:1s;ind:imp:2s; +redoutait redouter ver 6.58 38.58 0.73 11.49 ind:imp:3s; +redoutant redouter ver 6.58 38.58 0.12 3.18 par:pre; +redoutasse redouter ver 6.58 38.58 0.00 0.07 sub:imp:1s; +redoute redouter ver 6.58 38.58 1.51 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redoutent redouter ver 6.58 38.58 0.40 1.15 ind:pre:3p;sub:pre:3p; +redouter redouter ver 6.58 38.58 1.03 4.80 inf; +redouterait redouter ver 6.58 38.58 0.00 0.07 cnd:pre:3s; +redouteras redouter ver 6.58 38.58 0.00 0.07 ind:fut:2s; +redoutes redouter ver 6.58 38.58 0.15 0.07 ind:pre:2s; +redoutez redouter ver 6.58 38.58 0.44 0.07 imp:pre:2p;ind:pre:2p; +redoutiez redouter ver 6.58 38.58 0.37 0.00 ind:imp:2p; +redoutions redouter ver 6.58 38.58 0.04 0.54 ind:imp:1p;sub:pre:1p; +redoutons redouter ver 6.58 38.58 0.04 0.14 imp:pre:1p;ind:pre:1p; +redoutât redouter ver 6.58 38.58 0.00 0.20 sub:imp:3s; +redoutèrent redouter ver 6.58 38.58 0.00 0.07 ind:pas:3p; +redouté redouter ver m s 6.58 38.58 0.79 4.05 par:pas; +redoutée redouter ver f s 6.58 38.58 0.20 1.69 par:pas; +redoutées redouter ver f p 6.58 38.58 0.00 0.47 par:pas; +redoutés redouter ver m p 6.58 38.58 0.02 0.68 par:pas; +redoux redoux nom m 0.01 0.88 0.01 0.88 +redressa redresser ver 8.93 64.39 0.03 22.16 ind:pas:3s; +redressai redresser ver 8.93 64.39 0.00 1.08 ind:pas:1s; +redressaient redresser ver 8.93 64.39 0.00 0.74 ind:imp:3p; +redressais redresser ver 8.93 64.39 0.00 0.34 ind:imp:1s; +redressait redresser ver 8.93 64.39 0.01 4.26 ind:imp:3s; +redressant redresser ver 8.93 64.39 0.04 5.47 par:pre; +redresse redresser ver 8.93 64.39 3.91 10.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redressement redressement nom m s 1.63 6.62 1.63 6.55 +redressements redressement nom m p 1.63 6.62 0.00 0.07 +redressent redresser ver 8.93 64.39 0.17 0.68 ind:pre:3p; +redresser redresser ver 8.93 64.39 2.28 8.24 inf; +redressera redresser ver 8.93 64.39 0.12 0.07 ind:fut:3s; +redresserai redresser ver 8.93 64.39 0.13 0.00 ind:fut:1s; +redresserait redresser ver 8.93 64.39 0.01 0.27 cnd:pre:3s; +redresserons redresser ver 8.93 64.39 0.00 0.07 ind:fut:1p; +redresses redresser ver 8.93 64.39 0.23 0.00 ind:pre:2s;sub:pre:2s; +redresseur redresseur nom m s 0.32 0.34 0.27 0.20 +redresseurs redresseur nom m p 0.32 0.34 0.03 0.14 +redresseuse redresseur nom f s 0.32 0.34 0.02 0.00 +redressez redresser ver 8.93 64.39 1.40 0.14 imp:pre:2p;ind:pre:2p; +redressons redresser ver 8.93 64.39 0.13 0.07 imp:pre:1p;ind:pre:1p; +redressât redresser ver 8.93 64.39 0.00 0.20 sub:imp:3s; +redressèrent redresser ver 8.93 64.39 0.00 0.47 ind:pas:3p; +redressé redresser ver m s 8.93 64.39 0.30 5.61 par:pas; +redressée redresser ver f s 8.93 64.39 0.15 2.77 par:pas; +redressées redresser ver f p 8.93 64.39 0.00 0.34 par:pas; +redressés redresser ver m p 8.93 64.39 0.01 0.54 par:pas; +redéconner redéconner ver 0.01 0.00 0.01 0.00 inf; +redécoré redécoré adj m s 0.26 0.14 0.26 0.14 +redécoupage redécoupage nom m s 0.01 0.00 0.01 0.00 +redécouvert redécouvrir ver m s 0.70 3.18 0.13 0.41 par:pas; +redécouverte redécouverte nom f s 0.03 0.14 0.03 0.14 +redécouvertes redécouvrir ver f p 0.70 3.18 0.00 0.07 par:pas; +redécouverts redécouvert adj m p 0.00 0.07 0.00 0.07 +redécouvrît redécouvrir ver 0.70 3.18 0.00 0.07 sub:imp:3s; +redécouvraient redécouvrir ver 0.70 3.18 0.01 0.07 ind:imp:3p; +redécouvrait redécouvrir ver 0.70 3.18 0.00 0.34 ind:imp:3s; +redécouvrant redécouvrir ver 0.70 3.18 0.10 0.14 par:pre; +redécouvre redécouvrir ver 0.70 3.18 0.01 0.41 ind:pre:1s;ind:pre:3s; +redécouvrent redécouvrir ver 0.70 3.18 0.10 0.07 ind:pre:3p; +redécouvrions redécouvrir ver 0.70 3.18 0.00 0.14 ind:imp:1p; +redécouvrir redécouvrir ver 0.70 3.18 0.29 1.22 inf; +redécouvrira redécouvrir ver 0.70 3.18 0.00 0.07 ind:fut:3s; +redécouvriront redécouvrir ver 0.70 3.18 0.00 0.07 ind:fut:3p; +redécouvris redécouvrir ver 0.70 3.18 0.00 0.07 ind:pas:1s; +redécouvrit redécouvrir ver 0.70 3.18 0.02 0.07 ind:pas:3s; +redécouvrons redécouvrir ver 0.70 3.18 0.04 0.00 ind:pre:1p; +redéfini redéfinir ver m s 0.29 0.07 0.03 0.00 par:pas; +redéfinir redéfinir ver 0.29 0.07 0.13 0.00 inf; +redéfinis redéfinir ver m p 0.29 0.07 0.03 0.07 ind:pre:1s;par:pas; +redéfinissons redéfinir ver 0.29 0.07 0.11 0.00 imp:pre:1p;ind:pre:1p; +redéfinition redéfinition nom f s 0.01 0.00 0.01 0.00 +redégringoler redégringoler ver 0.00 0.07 0.00 0.07 inf; +redémarra redémarrer ver 1.90 2.16 0.00 0.14 ind:pas:3s; +redémarrage redémarrage nom m s 0.13 0.00 0.13 0.00 +redémarraient redémarrer ver 1.90 2.16 0.00 0.07 ind:imp:3p; +redémarrais redémarrer ver 1.90 2.16 0.01 0.07 ind:imp:1s; +redémarrait redémarrer ver 1.90 2.16 0.00 0.14 ind:imp:3s; +redémarrant redémarrer ver 1.90 2.16 0.01 0.07 par:pre; +redémarre redémarrer ver 1.90 2.16 0.40 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redémarrent redémarrer ver 1.90 2.16 0.00 0.07 ind:pre:3p; +redémarrer redémarrer ver 1.90 2.16 1.00 0.47 inf; +redémarrera redémarrer ver 1.90 2.16 0.01 0.07 ind:fut:3s; +redémarrerait redémarrer ver 1.90 2.16 0.01 0.00 cnd:pre:3s; +redémarrez redémarrer ver 1.90 2.16 0.18 0.00 imp:pre:2p;ind:pre:2p; +redémarrons redémarrer ver 1.90 2.16 0.02 0.00 imp:pre:1p; +redémarré redémarrer ver m s 1.90 2.16 0.25 0.07 par:pas; +redémolir redémolir ver 0.01 0.00 0.01 0.00 inf; +redéploie redéployer ver 0.14 0.00 0.03 0.00 ind:pre:3s; +redéploiement redéploiement nom m s 0.04 0.07 0.04 0.07 +redéployer redéployer ver 0.14 0.00 0.09 0.00 inf; +redéployez redéployer ver 0.14 0.00 0.04 0.00 imp:pre:2p;ind:pre:2p; +redéposer redéposer ver 0.08 0.07 0.01 0.00 inf; +redéposé redéposer ver m s 0.08 0.07 0.07 0.07 par:pas; +refîmes refaire ver 58.27 40.81 0.00 0.07 ind:pas:1p; +refît refaire ver 58.27 40.81 0.00 0.14 sub:imp:3s; +refabriquer refabriquer ver 0.01 0.00 0.01 0.00 inf; +refaire refaire ver 58.27 40.81 26.29 18.24 inf; +refais refaire ver 58.27 40.81 8.71 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +refaisaient refaire ver 58.27 40.81 0.01 0.41 ind:imp:3p; +refaisais refaire ver 58.27 40.81 0.11 0.41 ind:imp:1s;ind:imp:2s; +refaisait refaire ver 58.27 40.81 0.18 1.89 ind:imp:3s; +refaisant refaire ver 58.27 40.81 0.03 1.28 par:pre; +refaisions refaire ver 58.27 40.81 0.01 0.54 ind:imp:1p; +refaisons refaire ver 58.27 40.81 0.79 0.00 imp:pre:1p;ind:pre:1p; +refait refaire ver m s 58.27 40.81 11.23 8.58 ind:pre:3s;par:pas;par:pas; +refaite refaire ver f s 58.27 40.81 0.44 0.88 par:pas; +refaites refaire ver f p 58.27 40.81 2.55 0.54 imp:pre:2p;ind:pre:2p;par:pas; +refaits refaire ver m p 58.27 40.81 0.19 0.14 par:pas; +refamiliariser refamiliariser ver 0.01 0.00 0.01 0.00 inf; +refasse refaire ver 58.27 40.81 1.18 0.41 sub:pre:1s;sub:pre:3s; +refassent refaire ver 58.27 40.81 0.02 0.07 sub:pre:3p; +refasses refaire ver 58.27 40.81 0.41 0.00 sub:pre:2s; +refassiez refaire ver 58.27 40.81 0.04 0.00 sub:pre:2p; +refaçonner refaçonner ver 0.01 0.00 0.01 0.00 inf; +refaufile refaufiler ver 0.00 0.07 0.00 0.07 ind:pre:3s; +refendre refendre ver 0.00 0.27 0.00 0.14 inf; +refendu refendre ver m s 0.00 0.27 0.00 0.14 par:pas; +refera refaire ver 58.27 40.81 1.28 0.27 ind:fut:3s; +referai refaire ver 58.27 40.81 1.49 0.34 ind:fut:1s; +referais refaire ver 58.27 40.81 1.56 0.54 cnd:pre:1s;cnd:pre:2s; +referait refaire ver 58.27 40.81 0.21 0.47 cnd:pre:3s; +referas refaire ver 58.27 40.81 0.49 0.00 ind:fut:2s; +referendum referendum nom m s 0.13 0.00 0.13 0.00 +referions refaire ver 58.27 40.81 0.01 0.00 cnd:pre:1p; +referma refermer ver 11.97 91.76 0.33 20.34 ind:pas:3s; +refermai refermer ver 11.97 91.76 0.00 1.35 ind:pas:1s; +refermaient refermer ver 11.97 91.76 0.03 1.42 ind:imp:3p; +refermais refermer ver 11.97 91.76 0.00 0.68 ind:imp:1s; +refermait refermer ver 11.97 91.76 0.05 7.09 ind:imp:3s; +refermant refermer ver 11.97 91.76 0.05 4.80 par:pre; +refermassent refermer ver 11.97 91.76 0.00 0.07 sub:imp:3p; +referme refermer ver 11.97 91.76 3.50 14.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +referment refermer ver 11.97 91.76 0.35 1.82 ind:pre:3p; +refermer refermer ver 11.97 91.76 3.26 13.11 inf; +refermera refermer ver 11.97 91.76 0.36 0.20 ind:fut:3s; +refermeraient refermer ver 11.97 91.76 0.00 0.27 cnd:pre:3p; +refermerais refermer ver 11.97 91.76 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +refermerait refermer ver 11.97 91.76 0.11 0.27 cnd:pre:3s; +refermeront refermer ver 11.97 91.76 0.15 0.00 ind:fut:3p; +refermes refermer ver 11.97 91.76 0.21 0.00 ind:pre:2s; +refermez refermer ver 11.97 91.76 0.73 0.20 imp:pre:2p;ind:pre:2p; +refermâmes refermer ver 11.97 91.76 0.00 0.07 ind:pas:1p; +refermons refermer ver 11.97 91.76 0.26 0.14 imp:pre:1p;ind:pre:1p; +refermât refermer ver 11.97 91.76 0.00 0.47 sub:imp:3s; +refermèrent refermer ver 11.97 91.76 0.00 1.08 ind:pas:3p; +refermé refermer ver m s 11.97 91.76 0.98 11.15 par:pas; +refermée refermer ver f s 11.97 91.76 1.19 9.59 par:pas; +refermées refermer ver f p 11.97 91.76 0.17 1.49 par:pas; +refermés refermer ver m p 11.97 91.76 0.20 1.22 par:pas; +referons refaire ver 58.27 40.81 0.14 0.41 ind:fut:1p; +referont refaire ver 58.27 40.81 0.30 0.07 ind:fut:3p; +refeuilleter refeuilleter ver 0.00 0.07 0.00 0.07 inf; +reficelai reficeler ver 0.00 0.14 0.00 0.07 ind:pas:1s; +reficelle reficeler ver 0.00 0.14 0.00 0.07 ind:pre:1s; +refil refil nom m s 0.00 0.14 0.00 0.14 +refila refiler ver 9.70 12.09 0.14 0.14 ind:pas:3s; +refilai refiler ver 9.70 12.09 0.00 0.07 ind:pas:1s; +refilaient refiler ver 9.70 12.09 0.01 0.14 ind:imp:3p; +refilais refiler ver 9.70 12.09 0.00 0.14 ind:imp:1s; +refilait refiler ver 9.70 12.09 0.33 0.81 ind:imp:3s; +refilant refiler ver 9.70 12.09 0.15 0.47 par:pre; +refile refiler ver 9.70 12.09 2.00 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refilent refiler ver 9.70 12.09 0.17 0.41 ind:pre:3p; +refiler refiler ver 9.70 12.09 2.58 3.99 inf; +refilera refiler ver 9.70 12.09 0.03 0.14 ind:fut:3s; +refilerait refiler ver 9.70 12.09 0.04 0.07 cnd:pre:3s; +refiles refiler ver 9.70 12.09 0.37 0.07 ind:pre:2s; +refilez refiler ver 9.70 12.09 0.25 0.00 imp:pre:2p;ind:pre:2p; +refilé refiler ver m s 9.70 12.09 3.13 2.43 par:pas; +refilée refiler ver f s 9.70 12.09 0.37 0.41 par:pas; +refilées refiler ver f p 9.70 12.09 0.02 0.07 par:pas; +refilés refiler ver m p 9.70 12.09 0.13 0.14 par:pas; +refinancement refinancement nom m s 0.04 0.00 0.04 0.00 +refinancée refinancer ver f s 0.01 0.00 0.01 0.00 par:pas; +refirent refaire ver 58.27 40.81 0.01 0.47 ind:pas:3p; +refis refaire ver 58.27 40.81 0.14 0.34 ind:pas:1s; +refit refaire ver 58.27 40.81 0.03 2.77 ind:pas:3s; +reflet reflet nom m s 6.41 50.74 5.63 27.36 +reflets reflet nom m p 6.41 50.74 0.77 23.38 +refleurir refleurir ver 0.28 0.88 0.14 0.34 inf; +refleurira refleurir ver 0.28 0.88 0.11 0.07 ind:fut:3s; +refleurissaient refleurir ver 0.28 0.88 0.00 0.14 ind:imp:3p; +refleurissait refleurir ver 0.28 0.88 0.00 0.14 ind:imp:3s; +refleurissent refleurir ver 0.28 0.88 0.01 0.07 ind:pre:3p; +refleurit refleurir ver 0.28 0.88 0.02 0.14 ind:pre:3s;ind:pas:3s; +reflex reflex nom m 0.14 0.00 0.14 0.00 +reflète refléter ver 5.57 22.23 2.89 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reflètent refléter ver 5.57 22.23 0.68 2.16 ind:pre:3p; +reflua refluer ver 0.40 8.04 0.00 0.88 ind:pas:3s; +refluaient refluer ver 0.40 8.04 0.01 0.68 ind:imp:3p; +refluait refluer ver 0.40 8.04 0.00 1.28 ind:imp:3s; +refluant refluer ver 0.40 8.04 0.00 0.81 par:pre; +reflue refluer ver 0.40 8.04 0.00 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refluent refluer ver 0.40 8.04 0.10 0.61 ind:pre:3p; +refluer refluer ver 0.40 8.04 0.13 1.28 inf; +refluera refluer ver 0.40 8.04 0.00 0.07 ind:fut:3s; +refléta refléter ver 5.57 22.23 0.00 0.20 ind:pas:3s; +reflétaient refléter ver 5.57 22.23 0.19 4.26 ind:imp:3p; +reflétait refléter ver 5.57 22.23 0.35 6.15 ind:imp:3s; +reflétant refléter ver 5.57 22.23 0.08 1.22 par:pre; +refléter refléter ver 5.57 22.23 0.80 1.42 inf; +reflétera refléter ver 5.57 22.23 0.08 0.14 ind:fut:3s; +refléteraient refléter ver 5.57 22.23 0.00 0.07 cnd:pre:3p; +refléterait refléter ver 5.57 22.23 0.02 0.07 cnd:pre:3s; +refluèrent refluer ver 0.40 8.04 0.00 0.54 ind:pas:3p; +reflétons refléter ver 5.57 22.23 0.00 0.07 ind:pre:1p; +reflétèrent refléter ver 5.57 22.23 0.00 0.07 ind:pas:3p; +reflété refléter ver m s 5.57 22.23 0.22 1.76 par:pas; +reflétée refléter ver f s 5.57 22.23 0.12 1.28 par:pas; +reflétées refléter ver f p 5.57 22.23 0.14 0.34 par:pas; +reflétés refléter ver m p 5.57 22.23 0.00 0.14 par:pas; +reflué refluer ver m s 0.40 8.04 0.16 0.47 par:pas; +refluée refluer ver f s 0.40 8.04 0.00 0.07 par:pas; +reflux reflux nom m 0.47 3.45 0.47 3.45 +refoncer refoncer ver 0.01 0.00 0.01 0.00 inf; +refondant refonder ver 0.00 0.20 0.00 0.07 par:pre; +refonde refonder ver 0.00 0.20 0.00 0.14 ind:pre:3s; +refondre refondre ver 0.17 0.68 0.14 0.34 inf; +refonds refondre ver 0.17 0.68 0.01 0.00 imp:pre:2s; +refondu refondre ver m s 0.17 0.68 0.01 0.07 par:pas; +refondus refondre ver m p 0.17 0.68 0.00 0.27 par:pas; +refont refaire ver 58.27 40.81 0.42 0.41 ind:pre:3p; +refonte refonte nom f s 0.28 0.47 0.28 0.47 +reforger reforger ver 0.54 0.14 0.14 0.14 inf; +reforgé reforger ver m s 0.54 0.14 0.14 0.00 par:pas; +reforgée reforger ver f s 0.54 0.14 0.27 0.00 par:pas; +reforma reformer ver 0.71 6.49 0.04 0.61 ind:pas:3s; +reformaient reformer ver 0.71 6.49 0.00 0.88 ind:imp:3p; +reformait reformer ver 0.71 6.49 0.00 1.01 ind:imp:3s; +reformant reformer ver 0.71 6.49 0.00 0.20 par:pre; +reformassent reformer ver 0.71 6.49 0.00 0.07 sub:imp:3p; +reformater reformater ver 0.01 0.00 0.01 0.00 inf; +reformation reformation nom f s 0.02 0.07 0.02 0.07 +reforme reformer ver 0.71 6.49 0.16 1.08 ind:pre:1s;ind:pre:3s; +reforment reformer ver 0.71 6.49 0.03 0.27 ind:pre:3p; +reformer reformer ver 0.71 6.49 0.29 1.01 inf; +reformerons reformer ver 0.71 6.49 0.00 0.07 ind:fut:1p; +reformeront reformer ver 0.71 6.49 0.02 0.14 ind:fut:3p; +reformez reformer ver 0.71 6.49 0.08 0.00 imp:pre:2p; +reformèrent reformer ver 0.71 6.49 0.00 0.07 ind:pas:3p; +reformé reformer ver m s 0.71 6.49 0.05 0.47 par:pas; +reformée reformer ver f s 0.71 6.49 0.04 0.27 par:pas; +reformulation reformulation nom f s 0.01 0.00 0.01 0.00 +reformuler reformuler ver 0.55 0.14 0.50 0.00 inf; +reformulé reformuler ver m s 0.55 0.14 0.04 0.00 par:pas; +reformulée reformuler ver f s 0.55 0.14 0.00 0.14 par:pas; +reformés reformer ver m p 0.71 6.49 0.01 0.34 par:pas; +refouiller refouiller ver 0.03 0.07 0.01 0.00 inf; +refouillé refouiller ver m s 0.03 0.07 0.01 0.07 par:pas; +refoula refouler ver 1.88 7.36 0.00 0.41 ind:pas:3s; +refoulai refouler ver 1.88 7.36 0.00 0.07 ind:pas:1s; +refoulaient refouler ver 1.88 7.36 0.00 0.14 ind:imp:3p; +refoulais refouler ver 1.88 7.36 0.03 0.07 ind:imp:1s;ind:imp:2s; +refoulait refouler ver 1.88 7.36 0.03 0.41 ind:imp:3s; +refoulant refouler ver 1.88 7.36 0.01 0.27 par:pre; +refoulante refoulant adj f s 0.00 0.27 0.00 0.20 +refoule refouler ver 1.88 7.36 0.30 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refoulement refoulement nom m s 0.17 1.08 0.15 0.88 +refoulements refoulement nom m p 0.17 1.08 0.02 0.20 +refoulent refouler ver 1.88 7.36 0.03 0.14 ind:pre:3p; +refouler refouler ver 1.88 7.36 0.72 2.30 inf; +refoulerait refouler ver 1.88 7.36 0.00 0.07 cnd:pre:3s; +refoulez refouler ver 1.88 7.36 0.05 0.07 imp:pre:2p;ind:pre:2p; +refouloir refouloir nom m s 0.01 0.00 0.01 0.00 +refoulé refouler ver m s 1.88 7.36 0.53 1.35 par:pas; +refoulée refoulé adj f s 1.24 1.69 0.34 0.47 +refoulées refoulé adj f p 1.24 1.69 0.27 0.27 +refoulés refoulé adj m p 1.24 1.69 0.27 0.47 +refourgua refourguer ver 0.95 1.82 0.00 0.07 ind:pas:3s; +refourgue refourguer ver 0.95 1.82 0.12 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refourguer refourguer ver 0.95 1.82 0.44 0.88 inf; +refourguera refourguer ver 0.95 1.82 0.01 0.00 ind:fut:3s; +refourguerait refourguer ver 0.95 1.82 0.00 0.07 cnd:pre:3s; +refourguions refourguer ver 0.95 1.82 0.01 0.00 ind:imp:1p; +refourgué refourguer ver m s 0.95 1.82 0.36 0.00 par:pas; +refourguées refourguer ver f p 0.95 1.82 0.00 0.07 par:pas; +refourgués refourguer ver m p 0.95 1.82 0.01 0.20 par:pas; +refourrait refourrer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +refous refoutre ver 0.11 0.95 0.06 0.07 ind:pre:1s;ind:pre:2s; +refout refoutre ver 0.11 0.95 0.00 0.14 ind:pre:3s; +refoutait refoutre ver 0.11 0.95 0.00 0.14 ind:imp:3s; +refoute refoutre ver 0.11 0.95 0.01 0.00 sub:pre:3s; +refoutent refoutre ver 0.11 0.95 0.01 0.00 ind:pre:3p; +refoutes refoutre ver 0.11 0.95 0.00 0.07 sub:pre:2s; +refoutez refoutre ver 0.11 0.95 0.00 0.07 imp:pre:2p; +refoutre refoutre ver 0.11 0.95 0.03 0.41 inf; +refoutu refoutre ver m s 0.11 0.95 0.00 0.07 par:pas; +refrain refrain nom m s 2.39 10.68 1.98 8.24 +refrains refrain nom m p 2.39 10.68 0.41 2.43 +refranchies refranchir ver f p 0.01 0.07 0.00 0.07 par:pas; +refranchir refranchir ver 0.01 0.07 0.01 0.00 inf; +refrappe refrapper ver 0.07 0.14 0.04 0.00 imp:pre:2s;ind:pre:3s; +refrapper refrapper ver 0.07 0.14 0.01 0.00 inf; +refroidi refroidir ver m s 10.57 8.58 1.32 0.88 par:pas; +refroidie refroidir ver f s 10.57 8.58 0.17 0.34 par:pas; +refroidies refroidir ver f p 10.57 8.58 0.17 0.14 par:pas; +refroidir refroidir ver 10.57 8.58 3.17 3.11 inf; +refroidira refroidir ver 10.57 8.58 0.06 0.14 ind:fut:3s; +refroidiraient refroidir ver 10.57 8.58 0.00 0.14 cnd:pre:3p; +refroidirais refroidir ver 10.57 8.58 0.01 0.00 cnd:pre:2s; +refroidirait refroidir ver 10.57 8.58 0.05 0.14 cnd:pre:3s; +refroidis refroidir ver m p 10.57 8.58 0.80 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +refroidissaient refroidir ver 10.57 8.58 0.01 0.14 ind:imp:3p; +refroidissais refroidir ver 10.57 8.58 0.00 0.07 ind:imp:1s; +refroidissait refroidir ver 10.57 8.58 0.06 1.01 ind:imp:3s; +refroidissant refroidir ver 10.57 8.58 0.06 0.07 par:pre; +refroidisse refroidir ver 10.57 8.58 1.43 0.41 sub:pre:1s;sub:pre:3s; +refroidissement refroidissement nom m s 1.56 1.01 1.56 1.01 +refroidissent refroidir ver 10.57 8.58 0.22 0.20 ind:pre:3p; +refroidisseur refroidisseur nom m s 0.10 0.00 0.10 0.00 +refroidissiez refroidir ver 10.57 8.58 0.00 0.07 ind:imp:2p; +refroidit refroidir ver 10.57 8.58 3.03 1.35 ind:pre:3s;ind:pas:3s; +refrène refréner ver 0.01 1.82 0.00 0.14 ind:pre:3s; +refréna refréner ver 0.01 1.82 0.00 0.07 ind:pas:3s; +refrénai refréner ver 0.01 1.82 0.00 0.14 ind:pas:1s; +refrénait refréner ver 0.01 1.82 0.00 0.07 ind:imp:3s; +refrénant refréner ver 0.01 1.82 0.00 0.27 par:pre; +refréner refréner ver 0.01 1.82 0.01 0.88 inf; +refrénerait refréner ver 0.01 1.82 0.00 0.07 cnd:pre:3s; +refréné refréner ver m s 0.01 1.82 0.00 0.14 par:pas; +refrénés refréner ver m p 0.01 1.82 0.00 0.07 par:pas; +refuge refuge nom m s 8.38 18.65 8.02 16.89 +refuges refuge nom m p 8.38 18.65 0.36 1.76 +refuites refuite nom f p 0.00 0.07 0.00 0.07 +refumer refumer ver 0.03 0.07 0.03 0.07 inf; +refus refus nom m 9.02 27.03 9.02 27.03 +refusa refuser ver 143.96 152.77 1.82 14.59 ind:pas:3s; +refusai refuser ver 143.96 152.77 0.13 3.24 ind:pas:1s; +refusaient refuser ver 143.96 152.77 0.85 4.53 ind:imp:3p; +refusais refuser ver 143.96 152.77 2.15 4.59 ind:imp:1s;ind:imp:2s; +refusait refuser ver 143.96 152.77 4.17 21.82 ind:imp:3s; +refusant refuser ver 143.96 152.77 1.90 6.89 par:pre; +refuse refuser ver 143.96 152.77 49.29 24.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +refusent refuser ver 143.96 152.77 7.76 4.26 ind:pre:3p; +refuser refuser ver 143.96 152.77 21.34 27.84 inf;; +refusera refuser ver 143.96 152.77 2.03 0.81 ind:fut:3s; +refuserai refuser ver 143.96 152.77 0.85 0.47 ind:fut:1s; +refuseraient refuser ver 143.96 152.77 0.09 0.41 cnd:pre:3p; +refuserais refuser ver 143.96 152.77 1.08 0.61 cnd:pre:1s;cnd:pre:2s; +refuserait refuser ver 143.96 152.77 1.43 2.03 cnd:pre:3s; +refuseras refuser ver 143.96 152.77 0.15 0.27 ind:fut:2s; +refuserez refuser ver 143.96 152.77 0.58 0.27 ind:fut:2p; +refuseriez refuser ver 143.96 152.77 0.17 0.20 cnd:pre:2p; +refuserions refuser ver 143.96 152.77 0.02 0.07 cnd:pre:1p; +refuseront refuser ver 143.96 152.77 0.58 0.14 ind:fut:3p; +refuses refuser ver 143.96 152.77 8.60 1.28 ind:pre:2s; +refusez refuser ver 143.96 152.77 8.29 2.43 imp:pre:2p;ind:pre:2p; +refusiez refuser ver 143.96 152.77 0.59 0.20 ind:imp:2p; +refusions refuser ver 143.96 152.77 0.12 0.61 ind:imp:1p; +refusons refuser ver 143.96 152.77 1.29 1.01 imp:pre:1p;ind:pre:1p; +refusât refuser ver 143.96 152.77 0.00 0.88 sub:imp:3s; +refusèrent refuser ver 143.96 152.77 0.05 1.76 ind:pas:3p; +refusé refuser ver m s 143.96 152.77 26.03 22.70 par:pas; +refusée refuser ver f s 143.96 152.77 2.12 3.31 par:pas; +refusées refuser ver f p 143.96 152.77 0.23 0.54 par:pas; +refusés refuser ver m p 143.96 152.77 0.27 0.74 par:pas; +reg reg nom m s 1.52 0.14 1.52 0.14 +regagna regagner ver 9.54 49.80 0.02 9.05 ind:pas:3s; +regagnai regagner ver 9.54 49.80 0.01 1.96 ind:pas:1s; +regagnaient regagner ver 9.54 49.80 0.02 1.01 ind:imp:3p; +regagnais regagner ver 9.54 49.80 0.03 0.74 ind:imp:1s; +regagnait regagner ver 9.54 49.80 0.13 4.05 ind:imp:3s; +regagnant regagner ver 9.54 49.80 0.06 2.70 par:pre; +regagne regagner ver 9.54 49.80 1.30 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regagnent regagner ver 9.54 49.80 0.22 0.68 ind:pre:3p; +regagner regagner ver 9.54 49.80 3.90 16.49 inf; +regagnera regagner ver 9.54 49.80 0.24 0.07 ind:fut:3s; +regagnerai regagner ver 9.54 49.80 0.15 0.00 ind:fut:1s; +regagneraient regagner ver 9.54 49.80 0.00 0.07 cnd:pre:3p; +regagnerais regagner ver 9.54 49.80 0.10 0.07 cnd:pre:1s; +regagnerait regagner ver 9.54 49.80 0.00 0.34 cnd:pre:3s; +regagneras regagner ver 9.54 49.80 0.06 0.00 ind:fut:2s; +regagnerez regagner ver 9.54 49.80 0.04 0.07 ind:fut:2p; +regagnerons regagner ver 9.54 49.80 0.02 0.27 ind:fut:1p; +regagneront regagner ver 9.54 49.80 0.00 0.07 ind:fut:3p; +regagnez regagner ver 9.54 49.80 1.84 0.07 imp:pre:2p;ind:pre:2p; +regagniez regagner ver 9.54 49.80 0.02 0.07 ind:imp:2p; +regagnions regagner ver 9.54 49.80 0.01 0.41 ind:imp:1p; +regagnâmes regagner ver 9.54 49.80 0.14 0.47 ind:pas:1p; +regagnons regagner ver 9.54 49.80 0.50 0.95 imp:pre:1p;ind:pre:1p; +regagnât regagner ver 9.54 49.80 0.00 0.07 sub:imp:3s; +regagnèrent regagner ver 9.54 49.80 0.01 1.55 ind:pas:3p; +regagné regagner ver m s 9.54 49.80 0.71 5.07 par:pas; +regagnée regagner ver f s 9.54 49.80 0.01 0.20 par:pas; +regagnés regagner ver m p 9.54 49.80 0.00 0.07 par:pas; +regain regain nom m s 0.14 3.24 0.14 3.18 +regains regain nom m p 0.14 3.24 0.00 0.07 +regard regard nom m s 61.35 423.18 52.39 354.93 +regarda regarder ver 1197.37 997.91 2.18 149.05 ind:pas:3s; +regardable regardable adj s 0.10 0.74 0.09 0.47 +regardables regardable adj p 0.10 0.74 0.01 0.27 +regardai regarder ver 1197.37 997.91 0.82 14.73 ind:pas:1s; +regardaient regarder ver 1197.37 997.91 3.49 33.51 ind:imp:3p; +regardais regarder ver 1197.37 997.91 16.18 36.01 ind:imp:1s;ind:imp:2s; +regardait regarder ver 1197.37 997.91 16.30 160.81 ind:imp:3s; +regardant regarder ver 1197.37 997.91 13.99 73.78 par:pre; +regardante regardant adj f s 0.65 6.15 0.04 0.41 +regardants regardant adj m p 0.65 6.15 0.04 0.27 +regarde regarder ver 1197.37 997.91 613.45 203.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +regardent regarder ver 1197.37 997.91 14.68 22.30 ind:pre:3p; +regarder regarder ver 1197.37 997.91 138.28 163.51 inf;;inf;;inf;; +regardera regarder ver 1197.37 997.91 3.55 1.49 ind:fut:3s; +regarderai regarder ver 1197.37 997.91 3.30 1.08 ind:fut:1s; +regarderaient regarder ver 1197.37 997.91 0.09 0.68 cnd:pre:3p; +regarderais regarder ver 1197.37 997.91 0.82 0.68 cnd:pre:1s;cnd:pre:2s; +regarderait regarder ver 1197.37 997.91 0.95 1.76 cnd:pre:3s; +regarderas regarder ver 1197.37 997.91 1.30 0.47 ind:fut:2s; +regarderez regarder ver 1197.37 997.91 0.53 0.34 ind:fut:2p; +regarderiez regarder ver 1197.37 997.91 0.26 0.07 cnd:pre:2p; +regarderions regarder ver 1197.37 997.91 0.01 0.20 cnd:pre:1p; +regarderons regarder ver 1197.37 997.91 0.14 0.61 ind:fut:1p; +regarderont regarder ver 1197.37 997.91 0.87 0.88 ind:fut:3p; +regardes regarder ver 1197.37 997.91 43.64 5.34 ind:pre:2s;sub:pre:2s; +regardeur regardeur nom m s 0.01 0.07 0.01 0.07 +regardez regarder ver 1197.37 997.91 261.81 30.95 imp:pre:2p;ind:pre:2p; +regardiez regarder ver 1197.37 997.91 2.53 0.54 ind:imp:2p; +regardions regarder ver 1197.37 997.91 0.56 4.39 ind:imp:1p; +regardâmes regarder ver 1197.37 997.91 0.00 1.28 ind:pas:1p; +regardons regarder ver 1197.37 997.91 6.65 4.86 imp:pre:1p;ind:pre:1p; +regardât regarder ver 1197.37 997.91 0.00 0.34 sub:imp:3s; +regards regard nom m p 61.35 423.18 8.96 68.24 +regardèrent regarder ver 1197.37 997.91 0.32 15.68 ind:pas:3p; +regardé regarder ver m s 1197.37 997.91 41.29 51.55 par:pas; +regardée regarder ver f s 1197.37 997.91 7.61 11.01 ind:imp:3s;par:pas; +regardées regarder ver f p 1197.37 997.91 0.20 1.15 par:pas; +regardés regarder ver m p 1197.37 997.91 1.47 5.20 par:pas; +regarni regarnir ver m s 0.16 0.81 0.01 0.00 par:pas; +regarnies regarnir ver f p 0.16 0.81 0.00 0.07 par:pas; +regarnir regarnir ver 0.16 0.81 0.14 0.41 inf; +regarnirez regarnir ver 0.16 0.81 0.00 0.14 ind:fut:2p; +regarnis regarnir ver 0.16 0.81 0.00 0.14 ind:pre:1s; +regarnissez regarnir ver 0.16 0.81 0.00 0.07 imp:pre:2p; +regelés regeler ver m p 0.00 0.07 0.00 0.07 par:pas; +regency regency nom m 0.09 0.41 0.09 0.41 +reggae reggae nom m s 1.79 0.20 1.79 0.14 +reggaes reggae nom m p 1.79 0.20 0.00 0.07 +regimba regimber ver 0.23 0.88 0.01 0.14 ind:pas:3s; +regimbais regimber ver 0.23 0.88 0.00 0.14 ind:imp:1s; +regimbait regimber ver 0.23 0.88 0.00 0.14 ind:imp:3s; +regimbe regimber ver 0.23 0.88 0.11 0.27 imp:pre:2s;ind:pre:3s; +regimbements regimbement nom m p 0.00 0.07 0.00 0.07 +regimber regimber ver 0.23 0.88 0.11 0.14 inf; +regimbé regimber ver m s 0.23 0.88 0.00 0.07 par:pas; +registre registre nom m s 8.62 12.84 6.39 8.11 +registres registre nom m p 8.62 12.84 2.23 4.73 +reglissé reglisser ver m s 0.14 0.20 0.14 0.20 par:pas; +regoûter regoûter ver 0.03 0.14 0.03 0.07 inf; +regoûté regoûter ver m s 0.03 0.14 0.00 0.07 par:pas; +regonflage regonflage nom m s 0.01 0.00 0.01 0.00 +regonflait regonfler ver 0.39 1.42 0.00 0.20 ind:imp:3s; +regonfle regonfler ver 0.39 1.42 0.06 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regonfler regonfler ver 0.39 1.42 0.29 0.41 inf; +regonflera regonfler ver 0.39 1.42 0.01 0.00 ind:fut:3s; +regonflerais regonfler ver 0.39 1.42 0.01 0.00 cnd:pre:1s; +regonflerait regonfler ver 0.39 1.42 0.00 0.07 cnd:pre:3s; +regonflé regonfler ver m s 0.39 1.42 0.01 0.47 par:pas; +regonflés regonfler ver m p 0.39 1.42 0.01 0.07 par:pas; +regorge regorger ver 1.75 3.92 1.34 0.68 ind:pre:3s; +regorgea regorger ver 1.75 3.92 0.01 0.00 ind:pas:3s; +regorgeaient regorger ver 1.75 3.92 0.00 0.81 ind:imp:3p; +regorgeais regorger ver 1.75 3.92 0.00 0.07 ind:imp:1s; +regorgeait regorger ver 1.75 3.92 0.11 1.35 ind:imp:3s; +regorgeant regorger ver 1.75 3.92 0.02 0.47 par:pre; +regorgent regorger ver 1.75 3.92 0.23 0.47 ind:pre:3p; +regorger regorger ver 1.75 3.92 0.03 0.07 inf; +regorges regorger ver 1.75 3.92 0.01 0.00 ind:pre:2s; +regrattières regrattier nom f p 0.00 0.07 0.00 0.07 +regreffe regreffer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +regret regret nom m s 13.77 40.00 7.25 29.32 +regrets regret nom m p 13.77 40.00 6.53 10.68 +regretta regretter ver 89.11 75.88 0.15 4.53 ind:pas:3s; +regrettable regrettable adj s 3.41 3.51 3.27 3.04 +regrettablement regrettablement adv 0.02 0.07 0.02 0.07 +regrettables regrettable adj p 3.41 3.51 0.14 0.47 +regrettai regretter ver 89.11 75.88 0.00 1.22 ind:pas:1s; +regrettaient regretter ver 89.11 75.88 0.01 0.81 ind:imp:3p; +regrettais regretter ver 89.11 75.88 0.38 4.86 ind:imp:1s;ind:imp:2s; +regrettait regretter ver 89.11 75.88 0.32 9.12 ind:imp:3s; +regrettant regretter ver 89.11 75.88 0.21 3.11 par:pre; +regrette regretter ver 89.11 75.88 51.99 21.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +regrettent regretter ver 89.11 75.88 0.88 0.88 ind:pre:3p; +regretter regretter ver 89.11 75.88 12.05 12.57 inf; +regrettera regretter ver 89.11 75.88 1.50 0.74 ind:fut:3s; +regretterai regretter ver 89.11 75.88 0.78 1.49 ind:fut:1s; +regretteraient regretter ver 89.11 75.88 0.03 0.34 cnd:pre:3p; +regretterais regretter ver 89.11 75.88 0.65 0.68 cnd:pre:1s;cnd:pre:2s; +regretterait regretter ver 89.11 75.88 0.13 0.68 cnd:pre:3s; +regretteras regretter ver 89.11 75.88 5.58 1.49 ind:fut:2s; +regretterez regretter ver 89.11 75.88 4.47 0.74 ind:fut:2p; +regretteriez regretter ver 89.11 75.88 0.13 0.07 cnd:pre:2p; +regretterons regretter ver 89.11 75.88 0.10 0.07 ind:fut:1p; +regretteront regretter ver 89.11 75.88 0.46 0.14 ind:fut:3p; +regrettes regretter ver 89.11 75.88 4.46 1.28 ind:pre:2s; +regrettez regretter ver 89.11 75.88 1.31 1.28 imp:pre:2p;ind:pre:2p; +regrettiez regretter ver 89.11 75.88 0.14 0.27 ind:imp:2p; +regrettions regretter ver 89.11 75.88 0.02 0.20 ind:imp:1p; +regrettons regretter ver 89.11 75.88 0.76 0.20 imp:pre:1p;ind:pre:1p; +regrettât regretter ver 89.11 75.88 0.00 0.27 sub:imp:3s; +regrettèrent regretter ver 89.11 75.88 0.00 0.27 ind:pas:3p; +regretté regretter ver m s 89.11 75.88 2.43 6.22 par:pas; +regrettée regretter ver f s 89.11 75.88 0.15 0.54 par:pas; +regrettées regretter ver f p 89.11 75.88 0.02 0.07 par:pas; +regrettés regretter ver m p 89.11 75.88 0.01 0.20 par:pas; +regrimpa regrimper ver 0.17 1.15 0.00 0.07 ind:pas:3s; +regrimpaient regrimper ver 0.17 1.15 0.00 0.07 ind:imp:3p; +regrimpait regrimper ver 0.17 1.15 0.00 0.07 ind:imp:3s; +regrimpe regrimper ver 0.17 1.15 0.01 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regrimpent regrimper ver 0.17 1.15 0.00 0.07 ind:pre:3p; +regrimper regrimper ver 0.17 1.15 0.12 0.27 inf; +regrimperas regrimper ver 0.17 1.15 0.01 0.00 ind:fut:2s; +regrimperons regrimper ver 0.17 1.15 0.01 0.00 ind:fut:1p; +regrimpez regrimper ver 0.17 1.15 0.01 0.00 imp:pre:2p; +regrimpé regrimper ver m s 0.17 1.15 0.01 0.34 par:pas; +regrossir regrossir ver 0.01 0.00 0.01 0.00 inf; +regroupa regrouper ver 3.09 6.42 0.00 0.07 ind:pas:3s; +regroupaient regrouper ver 3.09 6.42 0.03 0.54 ind:imp:3p; +regroupait regrouper ver 3.09 6.42 0.26 0.41 ind:imp:3s; +regroupant regrouper ver 3.09 6.42 0.06 0.74 par:pre; +regroupe regrouper ver 3.09 6.42 0.76 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regroupement regroupement nom m s 0.65 1.76 0.52 1.55 +regroupements regroupement nom m p 0.65 1.76 0.14 0.20 +regroupent regrouper ver 3.09 6.42 0.37 0.34 ind:pre:3p; +regrouper regrouper ver 3.09 6.42 0.59 1.69 inf; +regrouperaient regrouper ver 3.09 6.42 0.02 0.07 cnd:pre:3p; +regrouperions regrouper ver 3.09 6.42 0.01 0.00 cnd:pre:1p; +regroupez regrouper ver 3.09 6.42 0.40 0.00 imp:pre:2p;ind:pre:2p; +regroupèrent regrouper ver 3.09 6.42 0.02 0.20 ind:pas:3p; +regroupé regrouper ver m s 3.09 6.42 0.12 0.34 par:pas; +regroupée regrouper ver f s 3.09 6.42 0.02 0.20 par:pas; +regroupées regrouper ver f p 3.09 6.42 0.02 0.20 par:pas; +regroupés regrouper ver m p 3.09 6.42 0.41 1.01 par:pas; +regréaient regréer ver 0.00 0.34 0.00 0.07 ind:imp:3p; +regréer regréer ver 0.00 0.34 0.00 0.07 inf; +regréé regréer ver m s 0.00 0.34 0.00 0.20 par:pas; +rehaussaient rehausser ver 0.77 5.81 0.00 0.20 ind:imp:3p; +rehaussait rehausser ver 0.77 5.81 0.01 1.01 ind:imp:3s; +rehaussant rehausser ver 0.77 5.81 0.00 0.47 par:pre; +rehausse rehausser ver 0.77 5.81 0.20 0.41 ind:pre:3s; +rehaussement rehaussement nom m s 0.01 0.00 0.01 0.00 +rehaussent rehausser ver 0.77 5.81 0.00 0.34 ind:pre:3p; +rehausser rehausser ver 0.77 5.81 0.34 0.88 inf; +rehaussera rehausser ver 0.77 5.81 0.01 0.14 ind:fut:3s; +rehausses rehausse nom f p 0.00 0.14 0.00 0.07 +rehausseur rehausseur nom m s 0.11 0.00 0.11 0.00 +rehaussez rehausser ver 0.77 5.81 0.01 0.00 imp:pre:2p; +rehaussé rehausser ver m s 0.77 5.81 0.03 1.15 par:pas; +rehaussée rehausser ver f s 0.77 5.81 0.03 0.68 par:pas; +rehaussées rehausser ver f p 0.77 5.81 0.14 0.20 par:pas; +rehaussés rehausser ver m p 0.77 5.81 0.00 0.34 par:pas; +rehaut rehaut nom m s 0.00 0.20 0.00 0.07 +rehauts rehaut nom m p 0.00 0.20 0.00 0.14 +reich reich nom m s 0.03 4.26 0.03 4.26 +reichsmark reichsmark nom m 0.01 0.00 0.01 0.00 +reichstag reichstag nom m s 0.85 0.68 0.85 0.68 +reichswehr reichswehr nom f s 0.00 0.14 0.00 0.14 +rein rein nom m s 13.96 34.05 4.53 1.76 +reine_claude reine_claude nom f s 0.01 0.41 0.00 0.14 +reine_mère reine_mère nom f s 0.00 0.34 0.00 0.34 +reine reine nom f s 59.05 33.78 56.26 30.00 +reine_claude reine_claude nom f p 0.01 0.41 0.01 0.27 +reine_marguerite reine_marguerite nom f p 0.00 0.27 0.00 0.27 +reines reine nom f p 59.05 33.78 2.79 3.78 +reinette reinette nom f s 0.30 0.95 0.01 0.34 +reinettes reinette nom f p 0.30 0.95 0.29 0.61 +reins rein nom m p 13.96 34.05 9.43 32.30 +reis reis nom m 0.52 0.20 0.52 0.20 +rejailli rejaillir ver m s 1.05 2.64 0.14 0.27 par:pas; +rejaillir rejaillir ver 1.05 2.64 0.24 0.54 inf; +rejailliraient rejaillir ver 1.05 2.64 0.00 0.07 cnd:pre:3p; +rejaillirait rejaillir ver 1.05 2.64 0.11 0.20 cnd:pre:3s; +rejaillissaient rejaillir ver 1.05 2.64 0.00 0.07 ind:imp:3p; +rejaillissait rejaillir ver 1.05 2.64 0.00 0.61 ind:imp:3s; +rejaillissant rejaillir ver 1.05 2.64 0.00 0.14 par:pre; +rejaillissements rejaillissement nom m p 0.00 0.07 0.00 0.07 +rejaillissent rejaillir ver 1.05 2.64 0.02 0.07 ind:pre:3p; +rejaillit rejaillir ver 1.05 2.64 0.54 0.68 ind:pre:3s;ind:pas:3s; +rejet rejet nom m s 2.94 3.31 2.71 3.04 +rejeta rejeter ver 23.16 47.84 0.18 5.74 ind:pas:3s; +rejetable rejetable adj s 0.00 0.07 0.00 0.07 +rejetai rejeter ver 23.16 47.84 0.00 0.68 ind:pas:1s; +rejetaient rejeter ver 23.16 47.84 0.17 0.95 ind:imp:3p; +rejetais rejeter ver 23.16 47.84 0.22 0.74 ind:imp:1s;ind:imp:2s; +rejetait rejeter ver 23.16 47.84 0.00 5.74 ind:imp:3s; +rejetant rejeter ver 23.16 47.84 0.44 4.12 par:pre; +rejeter rejeter ver 23.16 47.84 3.94 6.82 inf; +rejetez rejeter ver 23.16 47.84 1.24 0.07 imp:pre:2p;ind:pre:2p; +rejetiez rejeter ver 23.16 47.84 0.11 0.07 ind:imp:2p; +rejetions rejeter ver 23.16 47.84 0.01 0.20 ind:imp:1p; +rejeton rejeton nom m s 1.25 3.92 0.61 2.30 +rejetons rejeton nom m p 1.25 3.92 0.64 1.62 +rejetât rejeter ver 23.16 47.84 0.00 0.07 sub:imp:3s; +rejets rejet nom m p 2.94 3.31 0.23 0.27 +rejette rejeter ver 23.16 47.84 4.43 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rejettent rejeter ver 23.16 47.84 0.93 1.22 ind:pre:3p; +rejettera rejeter ver 23.16 47.84 0.57 0.27 ind:fut:3s; +rejetterai rejeter ver 23.16 47.84 0.29 0.07 ind:fut:1s; +rejetteraient rejeter ver 23.16 47.84 0.02 0.00 cnd:pre:3p; +rejetterais rejeter ver 23.16 47.84 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +rejetterait rejeter ver 23.16 47.84 0.06 0.20 cnd:pre:3s; +rejetteras rejeter ver 23.16 47.84 0.00 0.07 ind:fut:2s; +rejetteront rejeter ver 23.16 47.84 0.17 0.14 ind:fut:3p; +rejettes rejeter ver 23.16 47.84 0.77 0.00 ind:pre:2s;sub:pre:2s; +rejetèrent rejeter ver 23.16 47.84 0.00 0.07 ind:pas:3p; +rejeté rejeter ver m s 23.16 47.84 5.65 7.84 par:pas; +rejetée rejeté adj f s 4.03 1.62 2.18 0.47 +rejetées rejeter ver f p 23.16 47.84 0.37 1.28 par:pas; +rejetés rejeter ver m p 23.16 47.84 0.98 2.16 par:pas; +rejoignîmes rejoindre ver 96.98 134.80 0.01 0.41 ind:pas:1p; +rejoignît rejoindre ver 96.98 134.80 0.00 0.27 sub:imp:3s; +rejoignaient rejoindre ver 96.98 134.80 0.15 4.80 ind:imp:3p; +rejoignais rejoindre ver 96.98 134.80 0.35 0.34 ind:imp:1s;ind:imp:2s; +rejoignait rejoindre ver 96.98 134.80 0.16 6.35 ind:imp:3s; +rejoignant rejoindre ver 96.98 134.80 0.31 2.91 par:pre; +rejoigne rejoindre ver 96.98 134.80 1.96 1.15 sub:pre:1s;sub:pre:3s; +rejoignent rejoindre ver 96.98 134.80 1.69 5.07 ind:pre:3p; +rejoignes rejoindre ver 96.98 134.80 0.47 0.00 sub:pre:2s; +rejoignez rejoindre ver 96.98 134.80 6.00 0.61 imp:pre:2p;ind:pre:2p; +rejoigniez rejoindre ver 96.98 134.80 0.15 0.07 ind:imp:2p;sub:pre:2p; +rejoignions rejoindre ver 96.98 134.80 0.13 0.20 ind:imp:1p; +rejoignirent rejoindre ver 96.98 134.80 0.15 2.84 ind:pas:3p; +rejoignis rejoindre ver 96.98 134.80 0.01 1.69 ind:pas:1s; +rejoignisse rejoindre ver 96.98 134.80 0.00 0.07 sub:imp:1s; +rejoignissent rejoindre ver 96.98 134.80 0.00 0.07 sub:imp:3p; +rejoignit rejoindre ver 96.98 134.80 0.37 13.58 ind:pas:3s; +rejoignons rejoindre ver 96.98 134.80 1.52 0.54 imp:pre:1p;ind:pre:1p; +rejoindra rejoindre ver 96.98 134.80 2.42 0.81 ind:fut:3s; +rejoindrai rejoindre ver 96.98 134.80 3.25 0.54 ind:fut:1s; +rejoindraient rejoindre ver 96.98 134.80 0.04 0.47 cnd:pre:3p; +rejoindrais rejoindre ver 96.98 134.80 0.50 0.47 cnd:pre:1s;cnd:pre:2s; +rejoindrait rejoindre ver 96.98 134.80 0.14 1.15 cnd:pre:3s; +rejoindras rejoindre ver 96.98 134.80 0.55 0.07 ind:fut:2s; +rejoindre rejoindre ver 96.98 134.80 41.59 59.66 ind:pre:2p;inf; +rejoindrez rejoindre ver 96.98 134.80 0.93 0.14 ind:fut:2p; +rejoindrions rejoindre ver 96.98 134.80 0.00 0.20 cnd:pre:1p; +rejoindrons rejoindre ver 96.98 134.80 0.76 0.34 ind:fut:1p; +rejoindront rejoindre ver 96.98 134.80 0.58 0.41 ind:fut:3p; +rejoins rejoindre ver 96.98 134.80 20.16 3.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rejoint rejoindre ver m s 96.98 134.80 11.16 20.27 ind:pre:3s;par:pas; +rejointe rejoindre ver f s 96.98 134.80 0.31 1.35 par:pas; +rejointes rejoindre ver f p 96.98 134.80 0.01 0.54 par:pas; +rejointoyer rejointoyer ver 0.00 0.27 0.00 0.07 inf; +rejointoyé rejointoyer ver m s 0.00 0.27 0.00 0.07 par:pas; +rejointoyés rejointoyer ver m p 0.00 0.27 0.00 0.14 par:pas; +rejoints rejoindre ver m p 96.98 134.80 1.19 3.78 par:pas; +rejoua rejouer ver 3.51 1.69 0.00 0.20 ind:pas:3s; +rejouaient rejouer ver 3.51 1.69 0.02 0.00 ind:imp:3p; +rejouais rejouer ver 3.51 1.69 0.02 0.07 ind:imp:1s; +rejouant rejouer ver 3.51 1.69 0.02 0.14 par:pre; +rejoue rejouer ver 3.51 1.69 1.18 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rejouent rejouer ver 3.51 1.69 0.21 0.07 ind:pre:3p; +rejouer rejouer ver 3.51 1.69 1.48 0.88 inf; +rejouerait rejouer ver 3.51 1.69 0.02 0.07 cnd:pre:3s; +rejoueras rejouer ver 3.51 1.69 0.03 0.00 ind:fut:2s; +rejouerez rejouer ver 3.51 1.69 0.16 0.07 ind:fut:2p; +rejouerons rejouer ver 3.51 1.69 0.00 0.07 ind:fut:1p; +rejoues rejouer ver 3.51 1.69 0.04 0.00 ind:pre:2s; +rejouez rejouer ver 3.51 1.69 0.10 0.00 imp:pre:2p;ind:pre:2p; +rejouons rejouer ver 3.51 1.69 0.03 0.00 imp:pre:1p; +rejoué rejouer ver m s 3.51 1.69 0.19 0.14 par:pas; +rejuger rejuger ver 0.34 0.14 0.07 0.07 inf; +rejugez rejuger ver 0.34 0.14 0.02 0.00 imp:pre:2p; +rejugé rejuger ver m s 0.34 0.14 0.22 0.07 par:pas; +rejugés rejuger ver m p 0.34 0.14 0.02 0.00 par:pas; +relacent relacer ver 0.01 0.41 0.00 0.07 ind:pre:3p; +relacer relacer ver 0.01 0.41 0.00 0.07 inf; +relaie relayer ver 2.63 5.81 0.27 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaient relayer ver 2.63 5.81 0.52 0.27 ind:pre:3p; +relaiera relayer ver 2.63 5.81 0.07 0.14 ind:fut:3s; +relaieraient relayer ver 2.63 5.81 0.00 0.07 cnd:pre:3p; +relaierait relayer ver 2.63 5.81 0.00 0.07 cnd:pre:3s; +relaieront relayer ver 2.63 5.81 0.17 0.00 ind:fut:3p; +relais relais nom m 7.09 8.51 7.09 8.51 +relaisser relaisser ver 0.00 0.07 0.00 0.07 inf; +relance relancer ver 4.95 7.43 1.87 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relancement relancement nom m s 0.03 0.00 0.03 0.00 +relancent relancer ver 4.95 7.43 0.01 0.07 ind:pre:3p; +relancer relancer ver 4.95 7.43 1.96 2.77 inf; +relancera relancer ver 4.95 7.43 0.02 0.00 ind:fut:3s; +relancerait relancer ver 4.95 7.43 0.04 0.00 cnd:pre:3s; +relanceront relancer ver 4.95 7.43 0.01 0.00 ind:fut:3p; +relances relancer ver 4.95 7.43 0.05 0.00 ind:pre:2s; +relanceur relanceur nom m s 0.01 0.00 0.01 0.00 +relancez relancer ver 4.95 7.43 0.27 0.00 imp:pre:2p;ind:pre:2p; +relancèrent relancer ver 4.95 7.43 0.00 0.07 ind:pas:3p; +relancé relancer ver m s 4.95 7.43 0.48 1.22 par:pas; +relancée relancer ver f s 4.95 7.43 0.16 0.20 par:pas; +relancées relancer ver f p 4.95 7.43 0.01 0.07 par:pas; +relancés relancer ver m p 4.95 7.43 0.01 0.07 par:pas; +relança relancer ver 4.95 7.43 0.01 0.41 ind:pas:3s; +relançai relancer ver 4.95 7.43 0.00 0.07 ind:pas:1s; +relançaient relancer ver 4.95 7.43 0.00 0.41 ind:imp:3p; +relançais relancer ver 4.95 7.43 0.00 0.07 ind:imp:1s; +relançait relancer ver 4.95 7.43 0.01 0.81 ind:imp:3s; +relançant relancer ver 4.95 7.43 0.00 0.41 par:pre; +relançons relancer ver 4.95 7.43 0.05 0.00 imp:pre:1p; +relançât relancer ver 4.95 7.43 0.00 0.14 sub:imp:3s; +relaps relaps nom m 0.01 0.34 0.00 0.34 +relapse relaps adj f s 0.00 0.34 0.00 0.07 +relapses relaps nom f p 0.01 0.34 0.01 0.00 +relargué relargué adj m s 0.00 0.14 0.00 0.14 +relata relater ver 1.18 5.61 0.03 0.47 ind:pas:3s; +relatai relater ver 1.18 5.61 0.00 0.07 ind:pas:1s; +relataient relater ver 1.18 5.61 0.01 0.27 ind:imp:3p; +relatais relater ver 1.18 5.61 0.00 0.20 ind:imp:1s; +relatait relater ver 1.18 5.61 0.02 0.81 ind:imp:3s; +relatant relater ver 1.18 5.61 0.05 0.95 par:pre; +relate relater ver 1.18 5.61 0.19 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relatent relater ver 1.18 5.61 0.06 0.14 ind:pre:3p; +relater relater ver 1.18 5.61 0.39 0.54 inf; +relateraient relater ver 1.18 5.61 0.00 0.07 cnd:pre:3p; +relateront relater ver 1.18 5.61 0.01 0.00 ind:fut:3p; +relaça relacer ver 0.01 0.41 0.00 0.07 ind:pas:3s; +relaçaient relacer ver 0.01 0.41 0.00 0.07 ind:imp:3p; +relaçait relacer ver 0.01 0.41 0.01 0.14 ind:imp:3s; +relatif relatif adj m s 3.12 14.05 1.05 3.78 +relatifs relatif adj m p 3.12 14.05 0.56 1.22 +relation relation nom f s 74.95 52.36 44.03 10.20 +relationnel relationnel adj m s 0.38 0.00 0.14 0.00 +relationnelle relationnel adj f s 0.38 0.00 0.01 0.00 +relationnelles relationnel adj f p 0.38 0.00 0.09 0.00 +relationnels relationnel adj m p 0.38 0.00 0.14 0.00 +relations relation nom f p 74.95 52.36 30.92 42.16 +relative relatif adj f s 3.12 14.05 0.93 7.09 +relativement relativement adv 4.48 8.65 4.48 8.65 +relatives relatif adj f p 3.12 14.05 0.57 1.96 +relativisant relativiser ver 0.39 0.20 0.00 0.07 par:pre; +relativisation relativisation nom f s 0.00 0.14 0.00 0.14 +relativise relativiser ver 0.39 0.20 0.14 0.00 imp:pre:2s;ind:pre:3s; +relativisent relativiser ver 0.39 0.20 0.00 0.07 ind:pre:3p; +relativiser relativiser ver 0.39 0.20 0.23 0.07 inf; +relativisme relativisme nom m s 0.05 0.00 0.05 0.00 +relativiste relativiste adj f s 0.02 0.00 0.02 0.00 +relativisé relativiser ver m s 0.39 0.20 0.02 0.00 par:pas; +relativité relativité nom f s 0.50 1.22 0.50 1.22 +relaté relater ver m s 1.18 5.61 0.13 0.68 par:pas; +relatée relater ver f s 1.18 5.61 0.02 0.07 par:pas; +relatées relater ver f p 1.18 5.61 0.01 0.14 par:pas; +relatés relater ver m p 1.18 5.61 0.25 0.14 par:pas; +relavait relaver ver 0.13 0.47 0.00 0.07 ind:imp:3s; +relave relaver ver 0.13 0.47 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaver relaver ver 0.13 0.47 0.06 0.27 inf; +relavés relaver ver m p 0.13 0.47 0.00 0.07 par:pas; +relax relax adj 8.16 0.88 8.16 0.88 +relaxais relaxer ver 5.46 0.74 0.00 0.07 ind:imp:1s; +relaxant relaxant adj m s 0.72 0.07 0.61 0.00 +relaxante relaxant adj f s 0.72 0.07 0.08 0.00 +relaxantes relaxant adj f p 0.72 0.07 0.01 0.07 +relaxants relaxant adj m p 0.72 0.07 0.03 0.00 +relaxation relaxation nom f s 0.63 0.68 0.63 0.68 +relaxe relaxer ver 5.46 0.74 1.47 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaxer relaxer ver 5.46 0.74 2.64 0.20 ind:pre:2p;inf; +relaxes relaxe nom f p 1.63 0.61 0.21 0.07 +relaxez relaxer ver 5.46 0.74 0.77 0.14 imp:pre:2p;ind:pre:2p; +relaxons relaxer ver 5.46 0.74 0.03 0.00 imp:pre:1p;ind:pre:1p; +relaxé relaxer ver m s 5.46 0.74 0.27 0.27 par:pas; +relaxée relaxer ver f s 5.46 0.74 0.07 0.07 par:pas; +relaya relayer ver 2.63 5.81 0.00 0.14 ind:pas:3s; +relayaient relayer ver 2.63 5.81 0.25 1.22 ind:imp:3p; +relayait relayer ver 2.63 5.81 0.01 0.47 ind:imp:3s; +relayant relayer ver 2.63 5.81 0.01 0.54 par:pre; +relaye relayer ver 2.63 5.81 0.01 0.07 ind:pre:1s;ind:pre:3s; +relayent relayer ver 2.63 5.81 0.00 0.14 ind:pre:3p; +relayer relayer ver 2.63 5.81 0.93 1.01 inf; +relayera relayer ver 2.63 5.81 0.01 0.07 ind:fut:3s; +relayerai relayer ver 2.63 5.81 0.10 0.00 ind:fut:1s; +relayeur relayeur nom m s 0.02 0.00 0.02 0.00 +relayez relayer ver 2.63 5.81 0.05 0.00 imp:pre:2p; +relayions relayer ver 2.63 5.81 0.00 0.07 ind:imp:1p; +relayâmes relayer ver 2.63 5.81 0.00 0.14 ind:pas:1p; +relayons relayer ver 2.63 5.81 0.02 0.07 imp:pre:1p;ind:pre:1p; +relayèrent relayer ver 2.63 5.81 0.00 0.20 ind:pas:3p; +relayé relayer ver m s 2.63 5.81 0.14 0.61 par:pas; +relayée relayer ver f s 2.63 5.81 0.02 0.14 par:pas; +relayées relayer ver f p 2.63 5.81 0.01 0.07 par:pas; +relayés relayer ver m p 2.63 5.81 0.03 0.20 par:pas; +relecture relecture nom f s 0.80 0.47 0.80 0.47 +relent relent nom m s 0.32 9.12 0.10 2.64 +relents relent nom m p 0.32 9.12 0.23 6.49 +releva relever ver 39.49 124.93 0.05 25.74 ind:pas:3s; +relevable relevable adj m s 0.00 0.07 0.00 0.07 +relevai relever ver 39.49 124.93 0.14 1.82 ind:pas:1s; +relevaient relever ver 39.49 124.93 0.06 3.51 ind:imp:3p; +relevailles relevailles nom f p 0.00 0.07 0.00 0.07 +relevais relever ver 39.49 124.93 0.06 0.95 ind:imp:1s;ind:imp:2s; +relevait relever ver 39.49 124.93 0.53 9.80 ind:imp:3s; +relevant relever ver 39.49 124.93 0.53 10.68 par:pre; +relever relever ver 39.49 124.93 10.46 24.39 inf; +releveur releveur adj m s 0.03 0.07 0.03 0.00 +releveurs releveur nom m p 0.02 0.00 0.01 0.00 +relevez relever ver 39.49 124.93 5.95 0.34 imp:pre:2p;ind:pre:2p; +releviez relever ver 39.49 124.93 0.14 0.07 ind:imp:2p; +relevions relever ver 39.49 124.93 0.00 0.27 ind:imp:1p; +relevâmes relever ver 39.49 124.93 0.00 0.07 ind:pas:1p; +relevons relever ver 39.49 124.93 0.33 0.27 imp:pre:1p;ind:pre:1p; +relevât relever ver 39.49 124.93 0.00 0.54 sub:imp:3s; +relevèrent relever ver 39.49 124.93 0.01 1.28 ind:pas:3p; +relevé relever ver m s 39.49 124.93 6.04 13.72 par:pas; +relevée relevé adj f s 2.30 10.14 0.64 2.03 +relevées relever ver f p 39.49 124.93 0.30 1.35 par:pas; +relevés relevé nom m p 5.00 2.36 3.12 0.81 +reliage reliage nom m s 0.01 0.00 0.01 0.00 +reliaient relier ver 12.83 20.47 0.22 0.88 ind:imp:3p; +reliait relier ver 12.83 20.47 0.20 2.64 ind:imp:3s; +reliant relier ver 12.83 20.47 0.78 1.55 par:pre; +relie relier ver 12.83 20.47 1.95 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relief relief nom m s 1.25 19.32 1.11 13.51 +reliefs relief nom m p 1.25 19.32 0.14 5.81 +relient relier ver 12.83 20.47 0.30 1.01 ind:pre:3p; +relier relier ver 12.83 20.47 2.34 2.64 inf; +reliera relier ver 12.83 20.47 0.29 0.14 ind:fut:3s; +relieur relieur nom m s 0.33 0.41 0.33 0.27 +relieurs relieur nom m p 0.33 0.41 0.00 0.14 +reliez relier ver 12.83 20.47 0.11 0.00 imp:pre:2p; +religieuse religieux adj f s 15.52 24.26 4.85 11.42 +religieusement religieusement adv 0.80 3.04 0.80 3.04 +religieuses religieux adj f p 15.52 24.26 2.17 3.78 +religieux religieux adj m 15.52 24.26 8.51 9.05 +religion religion nom f s 24.68 35.07 22.86 30.88 +religionnaires religionnaire nom p 0.00 0.07 0.00 0.07 +religions religion nom f p 24.68 35.07 1.81 4.19 +religiosité religiosité nom f s 0.01 0.41 0.01 0.41 +reliât relier ver 12.83 20.47 0.00 0.14 sub:imp:3s; +reliquaire reliquaire nom s 0.28 0.95 0.28 0.68 +reliquaires reliquaire nom p 0.28 0.95 0.00 0.27 +reliquat reliquat nom m s 0.04 1.76 0.04 1.35 +reliquats reliquat nom m p 0.04 1.76 0.00 0.41 +relique relique nom f s 2.59 5.95 1.41 2.23 +reliques relique nom f p 2.59 5.95 1.19 3.72 +relirai relire ver 6.31 25.81 0.04 0.07 ind:fut:1s; +relirais relire ver 6.31 25.81 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +relirait relire ver 6.31 25.81 0.00 0.27 cnd:pre:3s; +reliras relire ver 6.31 25.81 0.00 0.07 ind:fut:2s; +relire relire ver 6.31 25.81 1.84 6.42 inf; +relirez relire ver 6.31 25.81 0.01 0.07 ind:fut:2p; +relirons relire ver 6.31 25.81 0.01 0.07 ind:fut:1p; +relis relire ver 6.31 25.81 1.78 2.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +relisaient relire ver 6.31 25.81 0.00 0.07 ind:imp:3p; +relisais relire ver 6.31 25.81 0.12 1.55 ind:imp:1s;ind:imp:2s; +relisait relire ver 6.31 25.81 0.01 2.03 ind:imp:3s; +relisant relire ver 6.31 25.81 0.07 1.69 par:pre; +relise relire ver 6.31 25.81 0.07 0.27 sub:pre:1s;sub:pre:3s; +relisez relire ver 6.31 25.81 0.70 0.54 imp:pre:2p;ind:pre:2p; +relisions relire ver 6.31 25.81 0.00 0.07 ind:imp:1p; +relit relire ver 6.31 25.81 0.22 1.49 ind:pre:3s; +relié relier ver m s 12.83 20.47 3.03 2.77 par:pas; +reliée relier ver f s 12.83 20.47 0.95 1.08 par:pas; +reliées relier ver f p 12.83 20.47 0.53 2.09 par:pas; +reliure reliure nom f s 0.67 4.12 0.61 2.23 +reliures reliure nom f p 0.67 4.12 0.06 1.89 +reliés relier ver m p 12.83 20.47 2.12 2.77 par:pas; +relâcha relâcher ver 21.40 13.45 0.13 1.69 ind:pas:3s; +relâchai relâcher ver 21.40 13.45 0.00 0.20 ind:pas:1s; +relâchaient relâcher ver 21.40 13.45 0.01 0.41 ind:imp:3p; +relâchais relâcher ver 21.40 13.45 0.01 0.07 ind:imp:1s; +relâchait relâcher ver 21.40 13.45 0.02 1.89 ind:imp:3s; +relâchant relâcher ver 21.40 13.45 0.04 0.68 par:pre; +relâche relâcher ver 21.40 13.45 4.25 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +relâchement relâchement nom m s 0.47 2.70 0.44 2.36 +relâchements relâchement nom m p 0.47 2.70 0.02 0.34 +relâchent relâcher ver 21.40 13.45 0.35 0.61 ind:pre:3p; +relâcher relâcher ver 21.40 13.45 4.09 3.24 imp:pre:2p;inf; +relâchera relâcher ver 21.40 13.45 0.41 0.07 ind:fut:3s; +relâcherai relâcher ver 21.40 13.45 0.54 0.00 ind:fut:1s; +relâcheraient relâcher ver 21.40 13.45 0.04 0.00 cnd:pre:3p; +relâcherait relâcher ver 21.40 13.45 0.02 0.07 cnd:pre:3s; +relâcheras relâcher ver 21.40 13.45 0.01 0.00 ind:fut:2s; +relâcherez relâcher ver 21.40 13.45 0.06 0.00 ind:fut:2p; +relâcherons relâcher ver 21.40 13.45 0.04 0.00 ind:fut:1p; +relâcheront relâcher ver 21.40 13.45 0.44 0.20 ind:fut:3p; +relâchez relâcher ver 21.40 13.45 4.77 0.00 imp:pre:2p;ind:pre:2p; +relâchiez relâcher ver 21.40 13.45 0.11 0.00 ind:imp:2p; +relâchons relâcher ver 21.40 13.45 0.27 0.07 imp:pre:1p;ind:pre:1p; +relâchèrent relâcher ver 21.40 13.45 0.01 0.54 ind:pas:3p; +relâché relâcher ver m s 21.40 13.45 4.08 1.76 par:pas; +relâchée relâcher ver f s 21.40 13.45 0.92 0.41 par:pas; +relâchées relâcher ver f p 21.40 13.45 0.07 0.20 par:pas; +relâchés relâcher ver m p 21.40 13.45 0.72 0.07 par:pas; +reloge reloger ver 0.52 0.34 0.14 0.14 ind:pre:3s; +relogement relogement nom m s 0.08 0.14 0.07 0.07 +relogements relogement nom m p 0.08 0.14 0.01 0.07 +reloger reloger ver 0.52 0.34 0.23 0.14 ind:pre:2p;inf; +relogerais reloger ver 0.52 0.34 0.00 0.07 cnd:pre:1s; +relogé reloger ver m s 0.52 0.34 0.15 0.00 par:pas; +relooker relooker ver 0.18 0.00 0.07 0.00 inf; +relookerai relooker ver 0.18 0.00 0.01 0.00 ind:fut:1s; +relooké relooker ver m s 0.18 0.00 0.06 0.00 par:pas; +relookée relooker ver f s 0.18 0.00 0.03 0.00 par:pas; +reloquer reloquer ver 0.00 0.07 0.00 0.07 inf; +relouer relouer ver 0.14 0.07 0.04 0.00 inf; +relouerons relouer ver 0.14 0.07 0.00 0.07 ind:fut:1p; +relourde relourder ver 0.00 0.20 0.00 0.07 ind:pre:3s; +relourder relourder ver 0.00 0.20 0.00 0.07 inf; +relourdé relourder ver m s 0.00 0.20 0.00 0.07 par:pas; +reloué relouer ver m s 0.14 0.07 0.10 0.00 par:pas; +relègue reléguer ver 0.54 4.53 0.06 0.47 ind:pre:1s;ind:pre:3s; +relèguent reléguer ver 0.54 4.53 0.00 0.07 ind:pre:3p; +relève relever ver 39.49 124.93 11.74 19.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +relèvement relèvement nom m s 0.45 0.95 0.43 0.88 +relèvements relèvement nom m p 0.45 0.95 0.02 0.07 +relèvent relever ver 39.49 124.93 0.68 2.57 ind:pre:3p; +relèvera relever ver 39.49 124.93 0.51 0.41 ind:fut:3s; +relèverai relever ver 39.49 124.93 0.19 0.00 ind:fut:1s; +relèveraient relever ver 39.49 124.93 0.04 0.34 cnd:pre:3p; +relèverais relever ver 39.49 124.93 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +relèverait relever ver 39.49 124.93 0.09 0.81 cnd:pre:3s; +relèveras relever ver 39.49 124.93 0.12 0.07 ind:fut:2s; +relèverez relever ver 39.49 124.93 0.01 0.14 ind:fut:2p; +relèverions relever ver 39.49 124.93 0.00 0.07 cnd:pre:1p; +relèverons relever ver 39.49 124.93 0.17 0.00 ind:fut:1p; +relèveront relever ver 39.49 124.93 0.09 0.07 ind:fut:3p; +relèves relever ver 39.49 124.93 0.15 0.20 ind:pre:2s;sub:pre:2s; +relu relire ver m s 6.31 25.81 1.35 3.65 par:pas; +relue relire ver f s 6.31 25.81 0.02 0.20 par:pas; +relues relire ver f p 6.31 25.81 0.01 0.14 par:pas; +relégation relégation nom f s 0.10 0.68 0.10 0.68 +relégua reléguer ver 0.54 4.53 0.00 0.14 ind:pas:3s; +reléguai reléguer ver 0.54 4.53 0.00 0.07 ind:pas:1s; +reléguaient reléguer ver 0.54 4.53 0.00 0.14 ind:imp:3p; +reléguait reléguer ver 0.54 4.53 0.00 0.34 ind:imp:3s; +reléguant reléguer ver 0.54 4.53 0.00 0.27 par:pre; +reléguer reléguer ver 0.54 4.53 0.06 0.68 inf; +reléguera reléguer ver 0.54 4.53 0.00 0.07 ind:fut:3s; +relégueraient reléguer ver 0.54 4.53 0.00 0.07 cnd:pre:3p; +reléguerait reléguer ver 0.54 4.53 0.00 0.07 cnd:pre:3s; +reléguons reléguer ver 0.54 4.53 0.00 0.07 ind:pre:1p; +reléguèrent reléguer ver 0.54 4.53 0.00 0.07 ind:pas:3p; +relégué reléguer ver m s 0.54 4.53 0.31 0.95 par:pas; +reléguée reléguer ver f s 0.54 4.53 0.05 0.61 par:pas; +reléguées reléguer ver f p 0.54 4.53 0.00 0.27 par:pas; +relégués relégué adj m p 0.13 0.74 0.10 0.20 +relui reluire ver m s 0.54 4.05 0.02 0.07 par:pas; +reluire reluire ver 0.54 4.05 0.34 2.77 inf; +reluiront reluire ver 0.54 4.05 0.00 0.07 ind:fut:3p; +reluis reluire ver 0.54 4.05 0.00 0.07 ind:pre:2s; +reluisaient reluire ver 0.54 4.05 0.00 0.14 ind:imp:3p; +reluisais reluire ver 0.54 4.05 0.00 0.07 ind:imp:1s; +reluisant reluisant adj m s 0.27 1.96 0.14 0.81 +reluisante reluisant adj f s 0.27 1.96 0.06 0.34 +reluisantes reluisant adj f p 0.27 1.96 0.01 0.34 +reluisants reluisant adj m p 0.27 1.96 0.06 0.47 +reluise reluire ver 0.54 4.05 0.16 0.07 sub:pre:3s; +reluisent reluire ver 0.54 4.05 0.01 0.20 ind:pre:3p; +reluit reluire ver 0.54 4.05 0.00 0.41 ind:pre:3s; +reluqua reluquer ver 2.16 5.47 0.00 0.07 ind:pas:3s; +reluquaient reluquer ver 2.16 5.47 0.05 0.47 ind:imp:3p; +reluquais reluquer ver 2.16 5.47 0.12 0.20 ind:imp:1s;ind:imp:2s; +reluquait reluquer ver 2.16 5.47 0.10 0.41 ind:imp:3s; +reluquant reluquer ver 2.16 5.47 0.01 0.68 par:pre; +reluque reluquer ver 2.16 5.47 0.36 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reluquent reluquer ver 2.16 5.47 0.13 0.07 ind:pre:3p; +reluquer reluquer ver 2.16 5.47 1.09 1.49 inf; +reluques reluquer ver 2.16 5.47 0.12 0.07 ind:pre:2s; +reluquiez reluquer ver 2.16 5.47 0.01 0.00 ind:imp:2p; +reluqué reluquer ver m s 2.16 5.47 0.04 0.14 par:pas; +reluquée reluquer ver f s 2.16 5.47 0.09 0.14 par:pas; +reluqués reluquer ver m p 2.16 5.47 0.04 0.07 par:pas; +relus relire ver m p 6.31 25.81 0.04 0.95 ind:pas:1s;par:pas; +relut relire ver 6.31 25.81 0.01 3.58 ind:pas:3s; +remîmes remettre ver 144.94 202.50 0.01 0.20 ind:pas:1p; +remît remettre ver 144.94 202.50 0.01 1.22 sub:imp:3s; +remaigrir remaigrir ver 0.01 0.00 0.01 0.00 inf; +remaillage remaillage nom m s 0.00 0.20 0.00 0.20 +remaillaient remailler ver 0.00 0.27 0.00 0.07 ind:imp:3p; +remaillant remailler ver 0.00 0.27 0.00 0.07 par:pre; +remailler remailler ver 0.00 0.27 0.00 0.07 inf; +remailleuse mailleur nom f s 0.00 0.07 0.00 0.07 +remaillés remailler ver m p 0.00 0.27 0.00 0.07 par:pas; +remake remake nom m s 0.66 0.54 0.66 0.54 +remange remanger ver 0.07 0.07 0.03 0.00 ind:pre:1s; +remanger remanger ver 0.07 0.07 0.04 0.00 inf; +remangerait remanger ver 0.07 0.07 0.00 0.07 cnd:pre:3s; +remania remanier ver 0.79 0.88 0.00 0.07 ind:pas:3s; +remaniait remanier ver 0.79 0.88 0.00 0.07 ind:imp:3s; +remaniant remanier ver 0.79 0.88 0.00 0.14 par:pre; +remanie remanier ver 0.79 0.88 0.16 0.00 ind:pre:1s;ind:pre:3s; +remaniement remaniement nom m s 0.16 1.08 0.09 0.95 +remaniements remaniement nom m p 0.16 1.08 0.07 0.14 +remanier remanier ver 0.79 0.88 0.12 0.27 inf; +remanié remanier ver m s 0.79 0.88 0.48 0.20 par:pas; +remaniée remanier ver f s 0.79 0.88 0.01 0.14 par:pas; +remaniés remanier ver m p 0.79 0.88 0.02 0.00 par:pas; +remaquilla remaquiller ver 0.28 0.81 0.00 0.27 ind:pas:3s; +remaquillait remaquiller ver 0.28 0.81 0.00 0.14 ind:imp:3s; +remaquille remaquiller ver 0.28 0.81 0.02 0.00 ind:pre:1s;ind:pre:3s; +remaquiller remaquiller ver 0.28 0.81 0.26 0.20 inf; +remaquillé remaquiller ver m s 0.28 0.81 0.01 0.00 par:pas; +remaquillée remaquiller ver f s 0.28 0.81 0.00 0.20 par:pas; +remarchait remarcher ver 1.32 0.41 0.00 0.14 ind:imp:3s; +remarche remarcher ver 1.32 0.41 0.47 0.07 ind:pre:3s; +remarchent remarcher ver 1.32 0.41 0.02 0.00 ind:pre:3p; +remarcher remarcher ver 1.32 0.41 0.67 0.20 inf; +remarchera remarcher ver 1.32 0.41 0.13 0.00 ind:fut:3s; +remarcheras remarcher ver 1.32 0.41 0.02 0.00 ind:fut:2s; +remaria remarier ver 6.14 4.32 0.08 0.14 ind:pas:3s; +remariage remariage nom m s 0.10 0.54 0.10 0.54 +remariaient remarier ver 6.14 4.32 0.01 0.00 ind:imp:3p; +remariait remarier ver 6.14 4.32 0.05 0.07 ind:imp:3s; +remariant remarier ver 6.14 4.32 0.01 0.07 par:pre; +remarie remarier ver 6.14 4.32 0.72 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remarient remarier ver 6.14 4.32 0.04 0.14 ind:pre:3p; +remarier remarier ver 6.14 4.32 2.48 1.28 inf;; +remariera remarier ver 6.14 4.32 0.07 0.20 ind:fut:3s; +remarierai remarier ver 6.14 4.32 0.14 0.00 ind:fut:1s; +remarierais remarier ver 6.14 4.32 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +remarierait remarier ver 6.14 4.32 0.02 0.07 cnd:pre:3s; +remarieras remarier ver 6.14 4.32 0.04 0.00 ind:fut:2s; +remarierez remarier ver 6.14 4.32 0.01 0.00 ind:fut:2p; +remarieront remarier ver 6.14 4.32 0.00 0.07 ind:fut:3p; +remaries remarier ver 6.14 4.32 0.06 0.07 ind:pre:2s; +remariez remarier ver 6.14 4.32 0.18 0.07 imp:pre:2p;ind:pre:2p; +remariions remarier ver 6.14 4.32 0.00 0.07 ind:imp:1p; +remarié remarier ver m s 6.14 4.32 0.81 1.15 par:pas; +remariée remarier ver f s 6.14 4.32 1.20 0.74 par:pas; +remariés remarier ver m p 6.14 4.32 0.17 0.00 par:pas; +remarqua remarquer ver 80.56 142.16 0.88 22.36 ind:pas:3s; +remarquable remarquable adj s 13.22 13.24 12.20 10.74 +remarquablement remarquablement adv 0.99 1.89 0.99 1.89 +remarquables remarquable adj p 13.22 13.24 1.02 2.50 +remarquai remarquer ver 80.56 142.16 0.31 6.35 ind:pas:1s; +remarquaient remarquer ver 80.56 142.16 0.10 0.54 ind:imp:3p; +remarquais remarquer ver 80.56 142.16 0.07 1.76 ind:imp:1s;ind:imp:2s; +remarquait remarquer ver 80.56 142.16 0.41 5.20 ind:imp:3s; +remarquant remarquer ver 80.56 142.16 0.01 1.42 par:pre; +remarquas remarquer ver 80.56 142.16 0.00 0.07 ind:pas:2s; +remarque remarquer ver 80.56 142.16 7.76 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +remarquent remarquer ver 80.56 142.16 1.01 1.01 ind:pre:3p; +remarquer remarquer ver 80.56 142.16 11.32 32.70 inf; +remarquera remarquer ver 80.56 142.16 1.05 0.68 ind:fut:3s; +remarquerai remarquer ver 80.56 142.16 0.04 0.00 ind:fut:1s; +remarqueraient remarquer ver 80.56 142.16 0.08 0.00 cnd:pre:3p; +remarquerais remarquer ver 80.56 142.16 0.41 0.20 cnd:pre:1s;cnd:pre:2s; +remarquerait remarquer ver 80.56 142.16 0.66 0.68 cnd:pre:3s; +remarqueras remarquer ver 80.56 142.16 0.37 0.20 ind:fut:2s; +remarquerez remarquer ver 80.56 142.16 0.92 0.61 ind:fut:2p; +remarqueriez remarquer ver 80.56 142.16 0.19 0.00 cnd:pre:2p; +remarqueront remarquer ver 80.56 142.16 0.53 0.07 ind:fut:3p; +remarques remarque nom f p 11.24 21.28 3.59 5.07 +remarquez remarquer ver 80.56 142.16 4.07 6.35 imp:pre:2p;ind:pre:2p; +remarquiez remarquer ver 80.56 142.16 0.14 0.14 ind:imp:2p;sub:pre:2p; +remarquions remarquer ver 80.56 142.16 0.03 0.20 ind:imp:1p; +remarquâmes remarquer ver 80.56 142.16 0.00 0.34 ind:pas:1p; +remarquons remarquer ver 80.56 142.16 0.05 0.00 imp:pre:1p;ind:pre:1p; +remarquât remarquer ver 80.56 142.16 0.00 0.54 sub:imp:3s; +remarquèrent remarquer ver 80.56 142.16 0.01 0.34 ind:pas:3p; +remarqué remarquer ver m s 80.56 142.16 47.20 39.86 par:pas; +remarquée remarquer ver f s 80.56 142.16 1.30 5.47 par:pas; +remarquées remarquer ver f p 80.56 142.16 0.08 0.68 par:pas; +remarqués remarquer ver m p 80.56 142.16 0.36 1.08 par:pas; +remballa remballer ver 3.06 1.96 0.00 0.20 ind:pas:3s; +remballage remballage nom m s 0.01 0.07 0.01 0.07 +remballaient remballer ver 3.06 1.96 0.00 0.07 ind:imp:3p; +remballait remballer ver 3.06 1.96 0.00 0.07 ind:imp:3s; +remballant remballer ver 3.06 1.96 0.00 0.20 par:pre; +remballe remballer ver 3.06 1.96 1.68 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remballent remballer ver 3.06 1.96 0.01 0.14 ind:pre:3p; +remballer remballer ver 3.06 1.96 0.66 0.34 inf; +remballez remballer ver 3.06 1.96 0.58 0.00 imp:pre:2p;ind:pre:2p; +remballé remballer ver m s 3.06 1.96 0.13 0.34 par:pas; +remballés remballer ver m p 3.06 1.96 0.01 0.14 par:pas; +rembarqua rembarquer ver 0.21 0.95 0.00 0.07 ind:pas:3s; +rembarquaient rembarquer ver 0.21 0.95 0.00 0.07 ind:imp:3p; +rembarque rembarquer ver 0.21 0.95 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembarquement rembarquement nom m s 0.00 0.47 0.00 0.41 +rembarquements rembarquement nom m p 0.00 0.47 0.00 0.07 +rembarquer rembarquer ver 0.21 0.95 0.04 0.41 inf; +rembarquez rembarquer ver 0.21 0.95 0.12 0.00 imp:pre:2p;ind:pre:2p; +rembarquèrent rembarquer ver 0.21 0.95 0.00 0.20 ind:pas:3p; +rembarqué rembarquer ver m s 0.21 0.95 0.01 0.00 par:pas; +rembarquées rembarquer ver f p 0.21 0.95 0.00 0.14 par:pas; +rembarra rembarrer ver 0.68 0.88 0.00 0.07 ind:pas:3s; +rembarrais rembarrer ver 0.68 0.88 0.01 0.14 ind:imp:1s; +rembarrait rembarrer ver 0.68 0.88 0.01 0.07 ind:imp:3s; +rembarre rembarrer ver 0.68 0.88 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembarrer rembarrer ver 0.68 0.88 0.25 0.34 inf; +rembarres rembarrer ver 0.68 0.88 0.05 0.00 ind:pre:2s; +rembarré rembarrer ver m s 0.68 0.88 0.11 0.07 par:pas; +rembarrée rembarrer ver f s 0.68 0.88 0.03 0.07 par:pas; +rembauche rembaucher ver 0.00 0.14 0.00 0.07 ind:pre:3s; +rembauchés rembaucher ver m p 0.00 0.14 0.00 0.07 par:pas; +remblai remblai nom m s 0.09 5.34 0.07 4.66 +remblaiement remblaiement nom m s 0.00 0.14 0.00 0.14 +remblais remblai nom m p 0.09 5.34 0.02 0.68 +remblaya remblayer ver 0.01 0.34 0.00 0.07 ind:pas:3s; +remblayer remblayer ver 0.01 0.34 0.01 0.14 inf; +remblayé remblayer ver m s 0.01 0.34 0.00 0.07 par:pas; +remblayée remblayer ver f s 0.01 0.34 0.00 0.07 par:pas; +remboîter remboîter ver 0.00 0.07 0.00 0.07 inf; +rembobinage rembobinage nom m s 0.23 0.00 0.23 0.00 +rembobine rembobiner ver 1.59 0.20 1.10 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembobiner rembobiner ver 1.59 0.20 0.33 0.07 inf; +rembobinez rembobiner ver 1.59 0.20 0.16 0.00 imp:pre:2p; +rembour rembour nom m s 0.00 0.07 0.00 0.07 +rembourrage rembourrage nom m s 0.52 0.47 0.51 0.34 +rembourrages rembourrage nom m p 0.52 0.47 0.01 0.14 +rembourraient rembourrer ver 0.74 2.36 0.01 0.07 ind:imp:3p; +rembourrait rembourrer ver 0.74 2.36 0.01 0.14 ind:imp:3s; +rembourrant rembourrer ver 0.74 2.36 0.00 0.07 par:pre; +rembourre rembourrer ver 0.74 2.36 0.06 0.07 ind:pre:3s; +rembourrer rembourrer ver 0.74 2.36 0.06 0.00 inf; +rembourré rembourrer ver m s 0.74 2.36 0.35 0.81 par:pas; +rembourrée rembourrer ver f s 0.74 2.36 0.19 0.27 par:pas; +rembourrées rembourrer ver f p 0.74 2.36 0.03 0.34 par:pas; +rembourrés rembourrer ver m p 0.74 2.36 0.02 0.61 par:pas; +remboursa rembourser ver 27.71 9.26 0.01 0.00 ind:pas:3s; +remboursable remboursable adj s 0.38 0.00 0.38 0.00 +remboursaient rembourser ver 27.71 9.26 0.00 0.07 ind:imp:3p; +remboursais rembourser ver 27.71 9.26 0.03 0.00 ind:imp:1s;ind:imp:2s; +remboursait rembourser ver 27.71 9.26 0.17 0.14 ind:imp:3s; +remboursant rembourser ver 27.71 9.26 0.01 0.07 par:pre; +rembourse rembourser ver 27.71 9.26 3.81 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remboursement remboursement nom m s 2.09 1.15 1.89 1.01 +remboursements remboursement nom m p 2.09 1.15 0.20 0.14 +remboursent rembourser ver 27.71 9.26 0.16 0.14 ind:pre:3p; +rembourser rembourser ver 27.71 9.26 11.77 4.39 inf;; +remboursera rembourser ver 27.71 9.26 1.31 0.34 ind:fut:3s; +rembourserai rembourser ver 27.71 9.26 4.24 0.34 ind:fut:1s; +rembourserais rembourser ver 27.71 9.26 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +rembourserait rembourser ver 27.71 9.26 0.08 0.07 cnd:pre:3s; +rembourseras rembourser ver 27.71 9.26 0.74 0.34 ind:fut:2s; +rembourserez rembourser ver 27.71 9.26 0.12 0.14 ind:fut:2p; +rembourserons rembourser ver 27.71 9.26 0.06 0.14 ind:fut:1p; +rembourseront rembourser ver 27.71 9.26 0.05 0.14 ind:fut:3p; +rembourses rembourser ver 27.71 9.26 0.56 0.07 ind:pre:2s; +remboursez rembourser ver 27.71 9.26 0.72 0.34 imp:pre:2p;ind:pre:2p; +remboursons rembourser ver 27.71 9.26 0.15 0.07 imp:pre:1p;ind:pre:1p; +remboursât rembourser ver 27.71 9.26 0.00 0.14 sub:imp:3s; +remboursèrent rembourser ver 27.71 9.26 0.00 0.07 ind:pas:3p; +remboursé rembourser ver m s 27.71 9.26 2.71 0.88 par:pas; +remboursée rembourser ver f s 27.71 9.26 0.48 0.27 par:pas; +remboursées rembourser ver f p 27.71 9.26 0.06 0.14 par:pas; +remboursés rembourser ver m p 27.71 9.26 0.34 0.20 par:pas; +rembruni rembrunir ver m s 0.01 2.36 0.00 0.14 par:pas; +rembrunir rembrunir ver 0.01 2.36 0.00 0.20 inf; +rembrunis rembrunir ver m p 0.01 2.36 0.00 0.07 par:pas; +rembrunissait rembrunir ver 0.01 2.36 0.00 0.27 ind:imp:3s; +rembrunissent rembrunir ver 0.01 2.36 0.00 0.07 ind:pre:3p; +rembrunit rembrunir ver 0.01 2.36 0.01 1.62 ind:pre:3s;ind:pas:3s; +remembrance remembrance nom f s 0.01 0.14 0.01 0.14 +remembrement remembrement nom m s 0.01 0.14 0.01 0.14 +remembrés remembrer ver m p 0.00 0.07 0.00 0.07 par:pas; +remercia remercier ver 113.70 54.46 0.04 8.31 ind:pas:3s; +remerciai remercier ver 113.70 54.46 0.01 1.15 ind:pas:1s; +remerciaient remercier ver 113.70 54.46 0.11 0.54 ind:imp:3p; +remerciais remercier ver 113.70 54.46 0.14 0.54 ind:imp:1s; +remerciait remercier ver 113.70 54.46 0.06 2.50 ind:imp:3s; +remerciant remercier ver 113.70 54.46 0.40 1.76 par:pre; +remercie remercier ver 113.70 54.46 51.61 17.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +remerciement remerciement nom m s 5.52 6.22 2.53 2.64 +remerciements remerciement nom m p 5.52 6.22 2.99 3.58 +remercient remercier ver 113.70 54.46 0.98 0.27 ind:pre:3p; +remercier remercier ver 113.70 54.46 38.60 15.47 inf;; +remerciera remercier ver 113.70 54.46 0.47 0.14 ind:fut:3s; +remercierai remercier ver 113.70 54.46 0.84 0.20 ind:fut:1s; +remercierais remercier ver 113.70 54.46 0.12 0.07 cnd:pre:1s;cnd:pre:2s; +remercierait remercier ver 113.70 54.46 0.06 0.20 cnd:pre:3s; +remercieras remercier ver 113.70 54.46 1.39 0.20 ind:fut:2s; +remercierez remercier ver 113.70 54.46 1.00 0.14 ind:fut:2p; +remercierons remercier ver 113.70 54.46 0.02 0.00 ind:fut:1p; +remercieront remercier ver 113.70 54.46 0.30 0.00 ind:fut:3p; +remercies remercier ver 113.70 54.46 1.37 0.07 ind:pre:2s; +remerciez remercier ver 113.70 54.46 6.25 0.88 imp:pre:2p;ind:pre:2p; +remerciâmes remercier ver 113.70 54.46 0.00 0.07 ind:pas:1p; +remercions remercier ver 113.70 54.46 5.00 0.68 imp:pre:1p;ind:pre:1p; +remercièrent remercier ver 113.70 54.46 0.00 0.54 ind:pas:3p; +remercié remercier ver m s 113.70 54.46 3.59 2.91 par:pas; +remerciée remercier ver f s 113.70 54.46 0.94 0.54 par:pas; +remerciés remercier ver m p 113.70 54.46 0.38 0.20 par:pas; +remet remettre ver 144.94 202.50 12.56 15.74 ind:pre:3s; +remets remettre ver 144.94 202.50 24.72 6.76 imp:pre:2s;ind:pre:1s;ind:pre:2s; +remettaient remettre ver 144.94 202.50 0.06 2.30 ind:imp:3p; +remettais remettre ver 144.94 202.50 0.56 1.69 ind:imp:1s;ind:imp:2s; +remettait remettre ver 144.94 202.50 0.63 12.84 ind:imp:3s; +remettant remettre ver 144.94 202.50 0.31 5.61 par:pre; +remette remettre ver 144.94 202.50 2.94 2.64 sub:pre:1s;sub:pre:3s; +remettent remettre ver 144.94 202.50 2.26 2.91 ind:pre:3p; +remettes remettre ver 144.94 202.50 0.33 0.07 sub:pre:2s; +remettez remettre ver 144.94 202.50 10.44 2.03 imp:pre:2p;ind:pre:2p; +remettiez remettre ver 144.94 202.50 0.52 0.14 ind:imp:2p; +remettions remettre ver 144.94 202.50 0.07 0.07 ind:imp:1p; +remettons remettre ver 144.94 202.50 2.10 0.47 imp:pre:1p;ind:pre:1p; +remettra remettre ver 144.94 202.50 5.79 2.23 ind:fut:3s; +remettrai remettre ver 144.94 202.50 3.32 0.81 ind:fut:1s; +remettraient remettre ver 144.94 202.50 0.04 0.07 cnd:pre:3p; +remettrais remettre ver 144.94 202.50 0.45 0.34 cnd:pre:1s;cnd:pre:2s; +remettrait remettre ver 144.94 202.50 0.67 2.43 cnd:pre:3s; +remettras remettre ver 144.94 202.50 1.54 0.61 ind:fut:2s; +remettre remettre ver 144.94 202.50 46.99 56.08 inf; +remettrez remettre ver 144.94 202.50 1.09 0.27 ind:fut:2p; +remettriez remettre ver 144.94 202.50 0.07 0.07 cnd:pre:2p; +remettrions remettre ver 144.94 202.50 0.00 0.07 cnd:pre:1p; +remettrons remettre ver 144.94 202.50 0.25 0.00 ind:fut:1p; +remettront remettre ver 144.94 202.50 0.27 0.14 ind:fut:3p; +remeublé remeubler ver m s 0.01 0.00 0.01 0.00 par:pas; +remirent remettre ver 144.94 202.50 0.04 2.97 ind:pas:3p; +remis remettre ver m 144.94 202.50 20.27 39.12 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas;par:pas; +remisa remiser ver 1.43 4.19 0.00 0.20 ind:pas:3s; +remisai remiser ver 1.43 4.19 0.00 0.14 ind:pas:1s; +remisaient remiser ver 1.43 4.19 0.01 0.07 ind:imp:3p; +remisait remiser ver 1.43 4.19 0.00 0.27 ind:imp:3s; +remise remise nom f s 9.77 12.09 8.81 10.95 +remisent remiser ver 1.43 4.19 0.00 0.07 ind:pre:3p; +remiser remiser ver 1.43 4.19 0.18 0.47 inf; +remises remise nom f p 9.77 12.09 0.96 1.15 +remisez remiser ver 1.43 4.19 0.11 0.00 imp:pre:2p; +remisons remiser ver 1.43 4.19 0.00 0.07 ind:pre:1p; +remisse remettre ver 144.94 202.50 0.00 0.07 sub:imp:1s; +remisèrent remiser ver 1.43 4.19 0.00 0.20 ind:pas:3p; +remisé remiser ver m s 1.43 4.19 0.12 0.74 par:pas; +remisée remiser ver f s 1.43 4.19 0.00 0.27 par:pas; +remisés remiser ver m p 1.43 4.19 0.01 0.34 par:pas; +remit remettre ver 144.94 202.50 0.66 32.16 ind:pas:3s; +remix remix nom m 0.15 0.00 0.15 0.00 +remixer remixer ver 0.02 0.00 0.02 0.00 inf; +remmailleuses remmailleuse nom f p 0.00 0.14 0.00 0.14 +remmenaient remmener ver 0.41 0.14 0.00 0.07 ind:imp:3p; +remmener remmener ver 0.41 0.14 0.16 0.07 inf; +remmenez remmener ver 0.41 0.14 0.14 0.00 imp:pre:2p;ind:pre:2p; +remmenée remmener ver f s 0.41 0.14 0.01 0.00 par:pas; +remmène remmener ver 0.41 0.14 0.09 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remmènes remmener ver 0.41 0.14 0.01 0.00 ind:pre:2s; +remobilisés remobiliser ver m p 0.00 0.07 0.00 0.07 par:pas; +remâcha remâcher ver 0.03 2.16 0.00 0.14 ind:pas:3s; +remâchaient remâcher ver 0.03 2.16 0.00 0.14 ind:imp:3p; +remâchais remâcher ver 0.03 2.16 0.00 0.14 ind:imp:1s; +remâchait remâcher ver 0.03 2.16 0.00 0.27 ind:imp:3s; +remâchant remâcher ver 0.03 2.16 0.00 0.34 par:pre; +remâche remâcher ver 0.03 2.16 0.01 0.27 ind:pre:1s;ind:pre:3s; +remâchent remâcher ver 0.03 2.16 0.00 0.14 ind:pre:3p; +remâcher remâcher ver 0.03 2.16 0.01 0.41 inf; +remâchez remâcher ver 0.03 2.16 0.00 0.07 ind:pre:2p; +remâché remâcher ver m s 0.03 2.16 0.00 0.07 par:pas; +remâchée remâcher ver f s 0.03 2.16 0.01 0.14 par:pas; +remâchées remâcher ver f p 0.03 2.16 0.00 0.07 par:pas; +remodela remodeler ver 0.35 0.88 0.00 0.14 ind:pas:3s; +remodelage remodelage nom m s 0.03 0.14 0.03 0.14 +remodelant remodeler ver 0.35 0.88 0.01 0.07 par:pre; +remodeler remodeler ver 0.35 0.88 0.20 0.07 inf; +remodelé remodeler ver m s 0.35 0.88 0.10 0.27 par:pas; +remodelée remodeler ver f s 0.35 0.88 0.04 0.07 par:pas; +remodelées remodeler ver f p 0.35 0.88 0.00 0.07 par:pas; +remodèle remodeler ver 0.35 0.88 0.00 0.14 ind:pre:3s; +remodèles remodeler ver 0.35 0.88 0.00 0.07 ind:pre:2s; +remonta remonter ver 71.33 160.14 0.32 16.22 ind:pas:3s; +remontage remontage nom m s 0.03 0.07 0.03 0.07 +remontai remonter ver 71.33 160.14 0.01 1.76 ind:pas:1s; +remontaient remonter ver 71.33 160.14 0.38 6.15 ind:imp:3p; +remontais remonter ver 71.33 160.14 0.33 2.36 ind:imp:1s;ind:imp:2s; +remontait remonter ver 71.33 160.14 0.65 17.84 ind:imp:3s; +remontant remontant nom m s 2.61 1.01 2.30 0.81 +remontantes remontant adj f p 0.11 0.61 0.00 0.07 +remontants remontant nom m p 2.61 1.01 0.31 0.20 +remonte_pente remonte_pente nom m s 0.02 0.07 0.02 0.07 +remonte_pentes remonte_pentes nom m 0.00 0.07 0.00 0.07 +remonte remonter ver 71.33 160.14 25.55 26.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remontent remonter ver 71.33 160.14 2.78 5.61 ind:pre:3p; +remonter remonter ver 71.33 160.14 19.13 38.51 inf; +remontera remonter ver 71.33 160.14 1.83 0.88 ind:fut:3s; +remonterai remonter ver 71.33 160.14 0.40 0.14 ind:fut:1s; +remonteraient remonter ver 71.33 160.14 0.04 0.14 cnd:pre:3p; +remonterait remonter ver 71.33 160.14 0.35 0.74 cnd:pre:3s; +remonteras remonter ver 71.33 160.14 0.06 0.20 ind:fut:2s; +remonterez remonter ver 71.33 160.14 0.08 0.07 ind:fut:2p; +remonteriez remonter ver 71.33 160.14 0.01 0.00 cnd:pre:2p; +remonterons remonter ver 71.33 160.14 0.14 0.27 ind:fut:1p; +remonteront remonter ver 71.33 160.14 0.30 0.14 ind:fut:3p; +remontes remonter ver 71.33 160.14 1.02 0.54 ind:pre:2s; +remontez remonter ver 71.33 160.14 6.73 0.81 imp:pre:2p;ind:pre:2p; +remontiez remonter ver 71.33 160.14 0.06 0.07 ind:imp:2p; +remontions remonter ver 71.33 160.14 0.30 0.74 ind:imp:1p; +remontoir remontoir nom m s 0.12 0.27 0.12 0.27 +remontâmes remonter ver 71.33 160.14 0.00 0.27 ind:pas:1p; +remontons remonter ver 71.33 160.14 1.21 2.16 imp:pre:1p;ind:pre:1p; +remontât remonter ver 71.33 160.14 0.00 0.41 sub:imp:3s; +remontrait remontrer ver 0.55 1.42 0.06 0.20 ind:imp:3s; +remontrance remontrance nom f s 0.87 1.69 0.16 0.20 +remontrances remontrance nom f p 0.87 1.69 0.71 1.49 +remontrassent remontrer ver 0.55 1.42 0.00 0.07 sub:imp:3p; +remontre remontrer ver 0.55 1.42 0.19 0.14 imp:pre:2s;ind:pre:3s; +remontrer remontrer ver 0.55 1.42 0.19 0.14 inf; +remontrera remontrer ver 0.55 1.42 0.00 0.07 ind:fut:3s; +remontrerai remontrer ver 0.55 1.42 0.01 0.07 ind:fut:1s; +remontrerais remontrer ver 0.55 1.42 0.00 0.07 cnd:pre:1s; +remontrerait remontrer ver 0.55 1.42 0.00 0.27 cnd:pre:3s; +remontreras remontrer ver 0.55 1.42 0.00 0.07 ind:fut:2s; +remontres remontrer ver 0.55 1.42 0.01 0.07 ind:pre:2s; +remontrez remontrer ver 0.55 1.42 0.08 0.00 imp:pre:2p; +remontré remontrer ver m s 0.55 1.42 0.01 0.27 par:pas; +remontèrent remonter ver 71.33 160.14 0.01 3.85 ind:pas:3p; +remonté remonter ver m s 71.33 160.14 5.83 14.39 par:pas; +remontée remonter ver f s 71.33 160.14 1.25 3.31 par:pas; +remontées remontée nom f p 0.38 1.76 0.16 0.27 +remontés remonter ver m p 71.33 160.14 1.04 3.11 par:pas; +remord remordre ver 0.61 0.41 0.43 0.20 ind:pre:3s; +remordait remordre ver 0.61 0.41 0.00 0.14 ind:imp:3s; +remords remords nom m 10.67 27.64 10.67 27.64 +remordu remordre ver m s 0.61 0.41 0.01 0.00 par:pas; +remorqua remorquer ver 1.60 1.35 0.00 0.20 ind:pas:3s; +remorquage remorquage nom m s 0.49 0.07 0.49 0.07 +remorquaient remorquer ver 1.60 1.35 0.00 0.07 ind:imp:3p; +remorquait remorquer ver 1.60 1.35 0.01 0.14 ind:imp:3s; +remorquant remorquer ver 1.60 1.35 0.02 0.34 par:pre; +remorque remorque nom f s 1.31 5.54 1.16 5.14 +remorquer remorquer ver 1.60 1.35 0.85 0.41 inf; +remorquera remorquer ver 1.60 1.35 0.00 0.07 ind:fut:3s; +remorquerai remorquer ver 1.60 1.35 0.02 0.00 ind:fut:1s; +remorques remorque nom f p 1.31 5.54 0.15 0.41 +remorqueur remorqueur nom m s 0.36 1.55 0.28 0.27 +remorqueurs remorqueur nom m p 0.36 1.55 0.08 1.28 +remorqueuse remorqueur adj f s 0.12 0.34 0.09 0.00 +remorquez remorquer ver 1.60 1.35 0.02 0.00 imp:pre:2p; +remorquions remorquer ver 1.60 1.35 0.01 0.00 ind:imp:1p; +remorquons remorquer ver 1.60 1.35 0.03 0.00 imp:pre:1p;ind:pre:1p; +remorqué remorquer ver m s 1.60 1.35 0.37 0.14 par:pas; +remorquée remorquer ver f s 1.60 1.35 0.08 0.00 par:pas; +remoucha remoucher ver 0.00 0.07 0.00 0.07 ind:pas:3s; +remouillaient remouiller ver 0.02 0.20 0.00 0.07 ind:imp:3p; +remouiller remouiller ver 0.02 0.20 0.02 0.14 inf; +remous remous nom m 1.49 14.66 1.49 14.66 +rempaillaient rempailler ver 0.01 0.20 0.00 0.07 ind:imp:3p; +rempailler rempailler ver 0.01 0.20 0.01 0.07 inf; +rempailleur rempailleur nom m s 0.00 0.34 0.00 0.20 +rempailleurs rempailleur nom m p 0.00 0.34 0.00 0.07 +rempailleuses rempailleur nom f p 0.00 0.34 0.00 0.07 +rempaillée rempailler ver f s 0.01 0.20 0.00 0.07 par:pas; +rempaquette rempaqueter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +rempaqueté rempaqueter ver m s 0.00 0.14 0.00 0.07 par:pas; +rempart rempart nom m s 2.95 20.00 1.56 8.31 +remparts rempart nom m p 2.95 20.00 1.39 11.69 +rempilait rempiler ver 0.75 1.15 0.00 0.07 ind:imp:3s; +rempile rempiler ver 0.75 1.15 0.17 0.14 ind:pre:1s;ind:pre:3s; +rempilent rempiler ver 0.75 1.15 0.00 0.07 ind:pre:3p; +rempiler rempiler ver 0.75 1.15 0.20 0.54 inf; +rempilerai rempiler ver 0.75 1.15 0.01 0.07 ind:fut:1s; +rempilerais rempiler ver 0.75 1.15 0.00 0.07 cnd:pre:1s; +rempilerez rempiler ver 0.75 1.15 0.00 0.07 ind:fut:2p; +rempiles rempiler ver 0.75 1.15 0.03 0.00 ind:pre:2s; +rempilez rempiler ver 0.75 1.15 0.04 0.07 imp:pre:2p;ind:pre:2p; +rempilé rempiler ver m s 0.75 1.15 0.29 0.07 par:pas; +remplît remplir ver 61.21 81.42 0.00 0.20 sub:imp:3s; +remplace remplacer ver 52.84 60.61 11.59 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remplacement remplacement nom m s 2.03 4.59 1.86 3.92 +remplacements remplacement nom m p 2.03 4.59 0.17 0.68 +remplacent remplacer ver 52.84 60.61 0.84 1.08 ind:pre:3p; +remplacer remplacer ver 52.84 60.61 22.95 18.38 inf;;inf;;inf;; +remplacera remplacer ver 52.84 60.61 2.13 1.22 ind:fut:3s; +remplacerai remplacer ver 52.84 60.61 0.56 0.07 ind:fut:1s; +remplaceraient remplacer ver 52.84 60.61 0.02 0.20 cnd:pre:3p; +remplacerais remplacer ver 52.84 60.61 0.22 0.20 cnd:pre:1s;cnd:pre:2s; +remplacerait remplacer ver 52.84 60.61 0.20 1.22 cnd:pre:3s; +remplaceras remplacer ver 52.84 60.61 0.33 0.07 ind:fut:2s; +remplacerez remplacer ver 52.84 60.61 0.26 0.41 ind:fut:2p; +remplaceriez remplacer ver 52.84 60.61 0.01 0.00 cnd:pre:2p; +remplacerons remplacer ver 52.84 60.61 0.27 0.14 ind:fut:1p; +remplaceront remplacer ver 52.84 60.61 0.30 0.00 ind:fut:3p; +remplaces remplacer ver 52.84 60.61 0.84 0.14 ind:pre:2s; +remplacez remplacer ver 52.84 60.61 1.81 0.07 imp:pre:2p;ind:pre:2p; +remplaciez remplacer ver 52.84 60.61 0.30 0.00 ind:imp:2p; +remplacèrent remplacer ver 52.84 60.61 0.01 0.47 ind:pas:3p; +remplacé remplacer ver m s 52.84 60.61 6.47 11.96 par:pas; +remplacée remplacer ver f s 52.84 60.61 0.92 2.84 par:pas; +remplacées remplacer ver f p 52.84 60.61 0.54 1.42 par:pas; +remplacés remplacer ver m p 52.84 60.61 0.81 3.11 par:pas; +remplaça remplacer ver 52.84 60.61 0.07 1.82 ind:pas:3s; +remplaçable remplaçable adj s 0.41 0.20 0.28 0.07 +remplaçables remplaçable adj m p 0.41 0.20 0.13 0.14 +remplaçai remplacer ver 52.84 60.61 0.02 0.14 ind:pas:1s; +remplaçaient remplacer ver 52.84 60.61 0.05 2.43 ind:imp:3p; +remplaçais remplacer ver 52.84 60.61 0.06 0.47 ind:imp:1s;ind:imp:2s; +remplaçait remplacer ver 52.84 60.61 0.53 5.41 ind:imp:3s; +remplaçant remplaçant nom m s 7.92 2.03 5.20 1.28 +remplaçante remplaçant nom f s 7.92 2.03 1.72 0.47 +remplaçantes remplaçant nom f p 7.92 2.03 0.09 0.00 +remplaçants remplaçant nom m p 7.92 2.03 0.91 0.27 +remplaçons remplacer ver 52.84 60.61 0.10 0.07 imp:pre:1p;ind:pre:1p; +remplaçât remplacer ver 52.84 60.61 0.00 0.07 sub:imp:3s; +rempli remplir ver m s 61.21 81.42 16.17 16.82 par:pas; +remplie rempli adj f s 12.74 20.74 6.64 9.93 +remplies rempli adj f p 12.74 20.74 1.82 4.59 +remplir remplir ver 61.21 81.42 18.92 22.50 inf; +remplira remplir ver 61.21 81.42 1.00 0.74 ind:fut:3s; +remplirai remplir ver 61.21 81.42 0.90 0.27 ind:fut:1s; +rempliraient remplir ver 61.21 81.42 0.01 0.20 cnd:pre:3p; +remplirais remplir ver 61.21 81.42 0.24 0.00 cnd:pre:1s; +remplirait remplir ver 61.21 81.42 0.20 0.74 cnd:pre:3s; +rempliras remplir ver 61.21 81.42 0.16 0.00 ind:fut:2s; +remplirent remplir ver 61.21 81.42 0.25 1.69 ind:pas:3p; +remplirez remplir ver 61.21 81.42 0.17 0.00 ind:fut:2p; +remplirons remplir ver 61.21 81.42 0.28 0.07 ind:fut:1p; +rempliront remplir ver 61.21 81.42 0.21 0.14 ind:fut:3p; +remplis remplir ver m p 61.21 81.42 7.08 3.78 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +remplissage remplissage nom m s 0.37 0.27 0.37 0.27 +remplissaient remplir ver 61.21 81.42 0.07 3.45 ind:imp:3p; +remplissais remplir ver 61.21 81.42 0.28 0.61 ind:imp:1s;ind:imp:2s; +remplissait remplir ver 61.21 81.42 1.15 9.59 ind:imp:3s; +remplissant remplir ver 61.21 81.42 0.48 2.43 par:pre; +remplisse remplir ver 61.21 81.42 1.09 0.61 sub:pre:1s;sub:pre:3s; +remplissent remplir ver 61.21 81.42 2.17 2.50 ind:pre:3p; +remplisses remplir ver 61.21 81.42 0.17 0.20 sub:pre:2s; +remplisseur remplisseur nom m s 0.00 0.07 0.00 0.07 +remplissez remplir ver 61.21 81.42 4.65 0.41 imp:pre:2p;ind:pre:2p; +remplissiez remplir ver 61.21 81.42 0.17 0.00 ind:imp:2p; +remplissions remplir ver 61.21 81.42 0.01 0.07 ind:imp:1p; +remplissons remplir ver 61.21 81.42 0.18 0.14 imp:pre:1p;ind:pre:1p; +remplit remplir ver 61.21 81.42 5.20 14.26 ind:pre:3s;ind:pas:3s; +remploi remploi nom m s 0.00 0.20 0.00 0.20 +remployée remployer ver f s 0.00 0.07 0.00 0.07 par:pas; +remplumer remplumer ver 0.09 0.34 0.04 0.27 inf; +remplumez remplumer ver 0.09 0.34 0.02 0.00 imp:pre:2p;ind:pre:2p; +remplumé remplumer ver m s 0.09 0.34 0.03 0.07 par:pas; +rempochait rempocher ver 0.00 0.20 0.00 0.07 ind:imp:3s; +rempoche rempocher ver 0.00 0.20 0.00 0.14 ind:pre:1s;ind:pre:3s; +remporta remporter ver 9.27 10.61 0.27 0.27 ind:pas:3s; +remportai remporter ver 9.27 10.61 0.00 0.14 ind:pas:1s; +remportaient remporter ver 9.27 10.61 0.01 0.20 ind:imp:3p; +remportais remporter ver 9.27 10.61 0.00 0.07 ind:imp:2s; +remportait remporter ver 9.27 10.61 0.17 0.74 ind:imp:3s; +remportant remporter ver 9.27 10.61 0.07 0.41 par:pre; +remportassent remporter ver 9.27 10.61 0.00 0.07 sub:imp:3p; +remporte remporter ver 9.27 10.61 1.93 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remportent remporter ver 9.27 10.61 0.24 0.20 ind:pre:3p; +remporter remporter ver 9.27 10.61 3.06 2.09 inf; +remportera remporter ver 9.27 10.61 0.22 0.07 ind:fut:3s; +remporterai remporter ver 9.27 10.61 0.04 0.00 ind:fut:1s; +remporterait remporter ver 9.27 10.61 0.04 0.34 cnd:pre:3s; +remporterez remporter ver 9.27 10.61 0.02 0.00 ind:fut:2p; +remporterons remporter ver 9.27 10.61 0.10 0.00 ind:fut:1p; +remportez remporter ver 9.27 10.61 0.71 0.14 imp:pre:2p;ind:pre:2p; +remportiez remporter ver 9.27 10.61 0.01 0.00 ind:imp:2p; +remportions remporter ver 9.27 10.61 0.00 0.07 ind:imp:1p; +remportât remporter ver 9.27 10.61 0.00 0.07 sub:imp:3s; +remportèrent remporter ver 9.27 10.61 0.00 0.14 ind:pas:3p; +remporté remporter ver m s 9.27 10.61 2.11 2.84 par:pas; +remportée remporter ver f s 9.27 10.61 0.22 1.35 par:pas; +remportées remporter ver f p 9.27 10.61 0.01 0.07 par:pas; +remportés remporter ver m p 9.27 10.61 0.04 0.47 par:pas; +rempoter rempoter ver 0.01 0.00 0.01 0.00 inf; +remprunter remprunter ver 0.03 0.00 0.03 0.00 inf; +remède_miracle remède_miracle nom m s 0.01 0.00 0.01 0.00 +remède remède nom m s 16.14 13.45 14.09 10.07 +remèdes remède nom m p 16.14 13.45 2.05 3.38 +remua remuer ver 24.42 62.84 0.03 3.99 ind:pas:3s; +remuage remuage nom m s 0.01 0.00 0.01 0.00 +remuai remuer ver 24.42 62.84 0.02 0.27 ind:pas:1s; +remuaient remuer ver 24.42 62.84 0.08 3.78 ind:imp:3p; +remuais remuer ver 24.42 62.84 0.01 0.41 ind:imp:1s;ind:imp:2s; +remuait remuer ver 24.42 62.84 0.59 9.93 ind:imp:3s; +remuant remuer ver 24.42 62.84 0.42 5.81 par:pre; +remuante remuant adj f s 0.32 3.24 0.05 1.35 +remuantes remuant adj f p 0.32 3.24 0.00 0.41 +remuants remuant adj m p 0.32 3.24 0.01 0.27 +remédia remédier ver 3.80 3.18 0.01 0.07 ind:pas:3s; +remédiable remédiable adj m s 0.01 0.00 0.01 0.00 +remédiait remédier ver 3.80 3.18 0.01 0.07 ind:imp:3s; +remédie remédier ver 3.80 3.18 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remédier remédier ver 3.80 3.18 3.21 2.50 inf; +remédiera remédier ver 3.80 3.18 0.05 0.07 ind:fut:3s; +remédierait remédier ver 3.80 3.18 0.00 0.07 cnd:pre:3s; +remédierons remédier ver 3.80 3.18 0.10 0.00 ind:fut:1p; +remédiez remédier ver 3.80 3.18 0.04 0.00 imp:pre:2p;ind:pre:2p; +remédions remédier ver 3.80 3.18 0.10 0.00 ind:pre:1p; +remédié remédier ver m s 3.80 3.18 0.20 0.34 par:pas; +remue_ménage remue_ménage nom m 0.78 4.80 0.78 4.80 +remue_méninges remue_méninges nom m 0.05 0.07 0.05 0.07 +remue remuer ver 24.42 62.84 8.30 8.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remuement remuement nom m s 0.00 2.03 0.00 1.49 +remuements remuement nom m p 0.00 2.03 0.00 0.54 +remuent remuer ver 24.42 62.84 0.41 1.96 ind:pre:3p; +remuer remuer ver 24.42 62.84 6.38 15.34 inf; +remuera remuer ver 24.42 62.84 0.32 0.20 ind:fut:3s; +remuerai remuer ver 24.42 62.84 0.19 0.14 ind:fut:1s; +remueraient remuer ver 24.42 62.84 0.00 0.07 cnd:pre:3p; +remuerais remuer ver 24.42 62.84 0.02 0.14 cnd:pre:1s; +remuerait remuer ver 24.42 62.84 0.04 0.27 cnd:pre:3s; +remueront remuer ver 24.42 62.84 0.02 0.00 ind:fut:3p; +remues remuer ver 24.42 62.84 1.14 0.27 ind:pre:2s; +remueur remueur nom m s 0.04 0.14 0.04 0.00 +remueurs remueur nom m p 0.04 0.14 0.00 0.14 +remuez remuer ver 24.42 62.84 4.06 0.34 imp:pre:2p;ind:pre:2p; +remugle remugle nom m s 0.01 2.36 0.00 0.81 +remugles remugle nom m p 0.01 2.36 0.01 1.55 +remuions remuer ver 24.42 62.84 0.00 0.07 ind:imp:1p; +remémora remémorer ver 1.28 4.12 0.00 0.47 ind:pas:3s; +remémorais remémorer ver 1.28 4.12 0.03 0.27 ind:imp:1s; +remémorait remémorer ver 1.28 4.12 0.00 0.27 ind:imp:3s; +remémorant remémorer ver 1.28 4.12 0.02 0.34 par:pre; +remémoration remémoration nom f s 0.02 0.00 0.02 0.00 +remémorative remémoratif adj f s 0.00 0.07 0.00 0.07 +remémore remémorer ver 1.28 4.12 0.34 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remémorent remémorer ver 1.28 4.12 0.01 0.00 ind:pre:3p; +remémorer remémorer ver 1.28 4.12 0.74 1.55 inf; +remémoré remémorer ver m s 1.28 4.12 0.14 0.41 par:pas; +remuâmes remuer ver 24.42 62.84 0.00 0.07 ind:pas:1p; +remuons remuer ver 24.42 62.84 0.20 0.00 imp:pre:1p;ind:pre:1p; +remuât remuer ver 24.42 62.84 0.00 0.20 sub:imp:3s; +remuscle remuscler ver 0.17 0.00 0.01 0.00 imp:pre:2s; +remuscler remuscler ver 0.17 0.00 0.16 0.00 inf; +remuèrent remuer ver 24.42 62.84 0.00 1.15 ind:pas:3p; +remué remuer ver m s 24.42 62.84 1.68 5.47 par:pas; +remuée remuer ver f s 24.42 62.84 0.44 2.97 par:pas; +remuées remuer ver f p 24.42 62.84 0.01 0.81 par:pas; +remués remuer ver m p 24.42 62.84 0.06 0.95 par:pas; +renaît renaître ver 7.45 13.04 0.96 1.96 ind:pre:3s; +renaîtra renaître ver 7.45 13.04 0.44 0.74 ind:fut:3s; +renaîtrai renaître ver 7.45 13.04 0.01 0.00 ind:fut:1s; +renaîtraient renaître ver 7.45 13.04 0.00 0.07 cnd:pre:3p; +renaîtrais renaître ver 7.45 13.04 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +renaîtrait renaître ver 7.45 13.04 0.01 0.20 cnd:pre:3s; +renaîtras renaître ver 7.45 13.04 0.29 0.00 ind:fut:2s; +renaître renaître ver 7.45 13.04 3.07 4.86 inf; +renaîtrez renaître ver 7.45 13.04 0.04 0.00 ind:fut:2p; +renaîtrons renaître ver 7.45 13.04 0.03 0.00 ind:fut:1p; +renaîtront renaître ver 7.45 13.04 0.03 0.14 ind:fut:3p; +renais renaître ver 7.45 13.04 0.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +renaissaient renaître ver 7.45 13.04 0.00 0.41 ind:imp:3p; +renaissais renaître ver 7.45 13.04 0.16 0.00 ind:imp:1s; +renaissait renaître ver 7.45 13.04 0.00 1.15 ind:imp:3s; +renaissance renaissance nom f s 2.77 10.61 2.75 10.34 +renaissances renaissance nom f p 2.77 10.61 0.02 0.27 +renaissant renaître ver 7.45 13.04 0.04 0.68 par:pre; +renaissante renaissant adj f s 0.39 2.43 0.34 0.74 +renaissantes renaissant adj f p 0.39 2.43 0.00 0.88 +renaissants renaissant adj m p 0.39 2.43 0.00 0.27 +renaisse renaître ver 7.45 13.04 0.10 0.54 sub:pre:3s; +renaissent renaître ver 7.45 13.04 0.11 0.41 ind:pre:3p; +renaisses renaître ver 7.45 13.04 0.02 0.00 sub:pre:2s; +renaissons renaître ver 7.45 13.04 0.03 0.00 ind:pre:1p; +renaquit renaître ver 7.45 13.04 0.02 0.00 ind:pas:3s; +renard renard nom m s 6.66 11.96 4.69 8.58 +renarde renard nom f s 6.66 11.96 0.22 0.20 +renardeau renardeau nom m s 0.01 0.54 0.01 0.41 +renardeaux renardeau nom m p 0.01 0.54 0.00 0.14 +renardes renard nom f p 6.66 11.96 0.01 0.00 +renards renard nom m p 6.66 11.96 1.74 3.18 +renaud renaud nom s 0.00 0.68 0.00 0.68 +renaudais renauder ver 0.00 2.64 0.00 0.07 ind:imp:1s; +renaudait renauder ver 0.00 2.64 0.00 0.47 ind:imp:3s; +renaudant renauder ver 0.00 2.64 0.00 0.20 par:pre; +renaude renauder ver 0.00 2.64 0.00 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renaudent renauder ver 0.00 2.64 0.00 0.07 ind:pre:3p; +renauder renauder ver 0.00 2.64 0.00 1.08 inf; +renaudeur renaudeur nom m s 0.00 0.07 0.00 0.07 +renaudé renauder ver m s 0.00 2.64 0.00 0.14 par:pas; +rencard rencard nom m s 10.76 1.42 9.62 1.08 +rencardaient rencarder ver 1.07 2.30 0.00 0.14 ind:imp:3p; +rencardait rencarder ver 1.07 2.30 0.01 0.14 ind:imp:3s; +rencarde rencarder ver 1.07 2.30 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rencarder rencarder ver 1.07 2.30 0.17 0.68 inf; +rencards rencard nom m p 10.76 1.42 1.14 0.34 +rencardé rencarder ver m s 1.07 2.30 0.38 0.68 par:pas; +rencardée rencarder ver f s 1.07 2.30 0.04 0.07 par:pas; +rencardées rencarder ver f p 1.07 2.30 0.00 0.07 par:pas; +rencardés rencarder ver m p 1.07 2.30 0.12 0.27 par:pas; +renchéri renchérir ver m s 0.18 3.58 0.05 0.14 par:pas; +renchérir renchérir ver 0.18 3.58 0.06 0.68 inf; +renchériront renchérir ver 0.18 3.58 0.00 0.14 ind:fut:3p; +renchéris renchérir ver 0.18 3.58 0.05 0.14 ind:pre:1s;ind:pre:2s; +renchérissais renchérir ver 0.18 3.58 0.00 0.07 ind:imp:1s; +renchérissait renchérir ver 0.18 3.58 0.00 0.41 ind:imp:3s; +renchérissant renchérir ver 0.18 3.58 0.00 0.14 par:pre; +renchérissent renchérir ver 0.18 3.58 0.00 0.07 ind:pre:3p; +renchérit renchérir ver 0.18 3.58 0.02 1.82 ind:pre:3s;ind:pas:3s; +rencogna rencogner ver 0.00 1.49 0.00 0.34 ind:pas:3s; +rencognait rencogner ver 0.00 1.49 0.00 0.14 ind:imp:3s; +rencognant rencogner ver 0.00 1.49 0.00 0.07 par:pre; +rencogne rencogner ver 0.00 1.49 0.00 0.07 ind:pre:3s; +rencogner rencogner ver 0.00 1.49 0.00 0.27 inf; +rencognerait rencogner ver 0.00 1.49 0.00 0.07 cnd:pre:3s; +rencogné rencogner ver m s 0.00 1.49 0.00 0.47 par:pas; +rencognés rencogner ver m p 0.00 1.49 0.00 0.07 par:pas; +rencontra rencontrer ver 241.04 188.51 1.64 11.49 ind:pas:3s; +rencontrai rencontrer ver 241.04 188.51 0.25 4.73 ind:pas:1s; +rencontraient rencontrer ver 241.04 188.51 0.49 3.24 ind:imp:3p; +rencontrais rencontrer ver 241.04 188.51 1.12 4.05 ind:imp:1s;ind:imp:2s; +rencontrait rencontrer ver 241.04 188.51 1.11 11.08 ind:imp:3s; +rencontrant rencontrer ver 241.04 188.51 0.82 3.18 par:pre; +rencontrasse rencontrer ver 241.04 188.51 0.00 0.07 sub:imp:1s; +rencontre rencontre nom f s 35.68 81.76 30.61 63.24 +rencontrent rencontrer ver 241.04 188.51 2.76 3.92 ind:pre:3p; +rencontrer rencontrer ver 241.04 188.51 82.72 43.92 inf;; +rencontrera rencontrer ver 241.04 188.51 1.10 0.95 ind:fut:3s; +rencontrerai rencontrer ver 241.04 188.51 0.67 0.68 ind:fut:1s; +rencontreraient rencontrer ver 241.04 188.51 0.05 0.27 cnd:pre:3p; +rencontrerais rencontrer ver 241.04 188.51 0.97 0.47 cnd:pre:1s;cnd:pre:2s; +rencontrerait rencontrer ver 241.04 188.51 0.48 1.69 cnd:pre:3s; +rencontreras rencontrer ver 241.04 188.51 1.55 0.54 ind:fut:2s; +rencontrerez rencontrer ver 241.04 188.51 1.18 0.54 ind:fut:2p; +rencontreriez rencontrer ver 241.04 188.51 0.05 0.00 cnd:pre:2p; +rencontrerions rencontrer ver 241.04 188.51 0.04 0.34 cnd:pre:1p; +rencontrerons rencontrer ver 241.04 188.51 0.37 0.34 ind:fut:1p; +rencontreront rencontrer ver 241.04 188.51 0.22 0.34 ind:fut:3p; +rencontres rencontre nom f p 35.68 81.76 5.07 18.51 +rencontrez rencontrer ver 241.04 188.51 1.80 0.88 imp:pre:2p;ind:pre:2p; +rencontriez rencontrer ver 241.04 188.51 0.92 0.27 ind:imp:2p; +rencontrions rencontrer ver 241.04 188.51 0.23 0.95 ind:imp:1p; +rencontrâmes rencontrer ver 241.04 188.51 0.01 0.68 ind:pas:1p; +rencontrons rencontrer ver 241.04 188.51 1.21 1.42 imp:pre:1p;ind:pre:1p; +rencontrât rencontrer ver 241.04 188.51 0.00 0.47 sub:imp:3s; +rencontrèrent rencontrer ver 241.04 188.51 0.83 4.19 ind:pas:3p; +rencontré rencontrer ver m s 241.04 188.51 77.82 45.00 par:pas; +rencontrée rencontrer ver f s 241.04 188.51 12.09 7.23 par:pas; +rencontrées rencontrer ver f p 241.04 188.51 2.61 1.35 par:pas; +rencontrés rencontrer ver m p 241.04 188.51 18.45 10.27 par:pas; +rend rendre ver 508.81 468.11 82.91 40.00 ind:pre:3s; +rendîmes rendre ver 508.81 468.11 0.00 0.68 ind:pas:1p; +rendît rendre ver 508.81 468.11 0.00 2.43 sub:imp:3s; +rendaient rendre ver 508.81 468.11 1.40 14.59 ind:imp:3p; +rendais rendre ver 508.81 468.11 3.25 8.92 ind:imp:1s;ind:imp:2s; +rendait rendre ver 508.81 468.11 9.17 58.24 ind:imp:3s; +rendant rendre ver 508.81 468.11 1.96 9.80 par:pre; +rende rendre ver 508.81 468.11 9.30 5.54 sub:pre:1s;sub:pre:3s; +rendement rendement nom m s 1.37 2.97 1.34 2.84 +rendements rendement nom m p 1.37 2.97 0.02 0.14 +rendent rendre ver 508.81 468.11 13.16 9.73 ind:pre:3p;sub:pre:3p; +rendes rendre ver 508.81 468.11 2.06 0.61 sub:pre:2s; +rendez_vous rendez_vous nom m 91.95 53.72 91.95 53.72 +rendez rendre ver 508.81 468.11 46.77 14.19 imp:pre:2p;ind:pre:2p; +rendiez rendre ver 508.81 468.11 1.12 0.47 ind:imp:2p; +rendions rendre ver 508.81 468.11 0.10 1.35 ind:imp:1p;sub:pre:1p; +rendirent rendre ver 508.81 468.11 0.57 3.92 ind:pas:3p; +rendis rendre ver 508.81 468.11 0.37 9.39 ind:pas:1s; +rendisse rendre ver 508.81 468.11 0.00 0.14 sub:imp:1s; +rendissent rendre ver 508.81 468.11 0.00 0.20 sub:imp:3p; +rendit rendre ver 508.81 468.11 2.13 27.23 ind:pas:3s; +rendons rendre ver 508.81 468.11 4.93 0.95 imp:pre:1p;ind:pre:1p; +rendormît rendormir ver 5.36 8.31 0.00 0.07 sub:imp:3s; +rendormais rendormir ver 5.36 8.31 0.12 0.14 ind:imp:1s; +rendormait rendormir ver 5.36 8.31 0.01 0.20 ind:imp:3s; +rendormant rendormir ver 5.36 8.31 0.00 0.07 par:pre; +rendorme rendormir ver 5.36 8.31 0.02 0.00 sub:pre:3s; +rendorment rendormir ver 5.36 8.31 0.01 0.20 ind:pre:3p; +rendormez rendormir ver 5.36 8.31 0.34 0.00 imp:pre:2p;ind:pre:2p; +rendormi rendormir ver m s 5.36 8.31 0.64 0.81 par:pas; +rendormiez rendormir ver 5.36 8.31 0.00 0.07 ind:imp:2p; +rendormir rendormir ver 5.36 8.31 1.62 3.58 inf; +rendormira rendormir ver 5.36 8.31 0.14 0.14 ind:fut:3s; +rendormirai rendormir ver 5.36 8.31 0.22 0.00 ind:fut:1s; +rendormirait rendormir ver 5.36 8.31 0.00 0.07 cnd:pre:3s; +rendormis rendormir ver m p 5.36 8.31 0.01 0.54 ind:pas:1s;par:pas; +rendormit rendormir ver 5.36 8.31 0.00 1.82 ind:pas:3s; +rendors rendormir ver 5.36 8.31 2.04 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rendort rendormir ver 5.36 8.31 0.20 0.34 ind:pre:3s; +rendra rendre ver 508.81 468.11 13.01 3.78 ind:fut:3s; +rendrai rendre ver 508.81 468.11 10.69 2.50 ind:fut:1s; +rendraient rendre ver 508.81 468.11 0.59 0.27 cnd:pre:3p; +rendrais rendre ver 508.81 468.11 2.17 1.22 cnd:pre:1s;cnd:pre:2s; +rendrait rendre ver 508.81 468.11 6.09 5.95 cnd:pre:3s; +rendras rendre ver 508.81 468.11 2.54 1.42 ind:fut:2s; +rendre rendre ver 508.81 468.11 141.31 150.07 inf;;inf;;inf;;inf;; +rendrez rendre ver 508.81 468.11 2.68 1.08 ind:fut:2p; +rendriez rendre ver 508.81 468.11 0.85 0.14 cnd:pre:2p; +rendrons rendre ver 508.81 468.11 1.18 0.27 ind:fut:1p; +rendront rendre ver 508.81 468.11 2.16 1.08 ind:fut:3p; +rends rendre ver 508.81 468.11 84.13 27.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rendu rendre ver m s 508.81 468.11 48.31 46.08 par:pas; +rendue rendre ver f s 508.81 468.11 8.88 9.46 par:pas; +rendues rendre ver f p 508.81 468.11 1.01 1.82 par:pas; +rendus rendre ver m p 508.81 468.11 4.00 7.43 par:pas; +reneige reneiger ver 0.01 0.07 0.00 0.07 ind:pre:3s; +reneiger reneiger ver 0.01 0.07 0.01 0.00 inf; +renettoyer renettoyer ver 0.01 0.00 0.01 0.00 inf; +renferma renfermer ver 3.25 4.59 0.10 0.14 ind:pas:3s; +renfermaient renfermer ver 3.25 4.59 0.00 0.34 ind:imp:3p; +renfermait renfermer ver 3.25 4.59 0.17 0.88 ind:imp:3s; +renfermant renfermer ver 3.25 4.59 0.16 0.14 par:pre; +renferme renfermer ver 3.25 4.59 1.08 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renfermement renfermement nom m s 0.00 0.14 0.00 0.14 +renferment renfermer ver 3.25 4.59 0.23 0.34 ind:pre:3p; +renfermer renfermer ver 3.25 4.59 0.57 0.41 inf; +renfermerait renfermer ver 3.25 4.59 0.00 0.07 cnd:pre:3s; +renfermez renfermer ver 3.25 4.59 0.03 0.07 imp:pre:2p; +renfermé renfermé adj m s 1.42 1.01 1.22 0.74 +renfermée renfermé adj f s 1.42 1.01 0.19 0.20 +renfermées renfermé nom f p 0.48 2.03 0.01 0.00 +renfermés renfermer ver m p 3.25 4.59 0.05 0.07 par:pas; +renfila renfiler ver 0.10 0.88 0.00 0.07 ind:pas:3s; +renfilait renfiler ver 0.10 0.88 0.00 0.07 ind:imp:3s; +renfilant renfiler ver 0.10 0.88 0.00 0.07 par:pre; +renfile renfiler ver 0.10 0.88 0.10 0.20 imp:pre:2s;ind:pre:3s; +renfiler renfiler ver 0.10 0.88 0.00 0.14 inf; +renfilé renfiler ver m s 0.10 0.88 0.00 0.34 par:pas; +renflait renfler ver 0.00 1.15 0.00 0.14 ind:imp:3s; +renflant renfler ver 0.00 1.15 0.00 0.07 par:pre; +renflement renflement nom m s 0.17 1.49 0.17 1.22 +renflements renflement nom m p 0.17 1.49 0.00 0.27 +renflent renfler ver 0.00 1.15 0.00 0.07 ind:pre:3p; +renfloua renflouer ver 0.48 1.15 0.00 0.14 ind:pas:3s; +renflouage renflouage nom m s 0.01 0.14 0.01 0.14 +renflouait renflouer ver 0.48 1.15 0.00 0.07 ind:imp:3s; +renflouant renflouer ver 0.48 1.15 0.00 0.07 par:pre; +renfloue renflouer ver 0.48 1.15 0.17 0.00 ind:pre:1s;ind:pre:3s; +renflouement renflouement nom m s 0.01 0.07 0.01 0.07 +renflouent renflouer ver 0.48 1.15 0.02 0.00 ind:pre:3p; +renflouer renflouer ver 0.48 1.15 0.23 0.54 inf; +renfloué renflouer ver m s 0.48 1.15 0.03 0.14 par:pas; +renflouée renflouer ver f s 0.48 1.15 0.01 0.07 par:pas; +renfloués renflouer ver m p 0.48 1.15 0.02 0.14 par:pas; +renflé renflé adj m s 0.00 0.74 0.00 0.41 +renflée renfler ver f s 0.00 1.15 0.00 0.34 par:pas; +renflées renfler ver f p 0.00 1.15 0.00 0.07 par:pas; +renflés renfler ver m p 0.00 1.15 0.00 0.14 par:pas; +renfonce renfoncer ver 0.07 1.35 0.02 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renfoncement renfoncement nom m s 0.04 3.51 0.03 3.11 +renfoncements renfoncement nom m p 0.04 3.51 0.01 0.41 +renfoncer renfoncer ver 0.07 1.35 0.00 0.14 inf; +renfoncé renfoncer ver m s 0.07 1.35 0.02 0.54 par:pas; +renfoncée renfoncer ver f s 0.07 1.35 0.02 0.14 par:pas; +renfoncées renfoncer ver f p 0.07 1.35 0.01 0.00 par:pas; +renfoncés renfoncer ver m p 0.07 1.35 0.00 0.14 par:pas; +renfonça renfoncer ver 0.07 1.35 0.00 0.14 ind:pas:3s; +renfonçait renfoncer ver 0.07 1.35 0.00 0.07 ind:imp:3s; +renforce renforcer ver 10.34 17.84 2.05 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renforcement renforcement nom m s 0.19 0.74 0.16 0.74 +renforcements renforcement nom m p 0.19 0.74 0.03 0.00 +renforcent renforcer ver 10.34 17.84 0.51 0.74 ind:pre:3p; +renforcer renforcer ver 10.34 17.84 4.29 6.35 inf; +renforcera renforcer ver 10.34 17.84 0.35 0.14 ind:fut:3s; +renforcerai renforcer ver 10.34 17.84 0.04 0.00 ind:fut:1s; +renforceraient renforcer ver 10.34 17.84 0.01 0.07 cnd:pre:3p; +renforcerait renforcer ver 10.34 17.84 0.14 0.07 cnd:pre:3s; +renforcerez renforcer ver 10.34 17.84 0.15 0.00 ind:fut:2p; +renforcerons renforcer ver 10.34 17.84 0.01 0.07 ind:fut:1p; +renforcez renforcer ver 10.34 17.84 0.48 0.07 imp:pre:2p;ind:pre:2p; +renforciez renforcer ver 10.34 17.84 0.04 0.00 ind:imp:2p; +renforcèrent renforcer ver 10.34 17.84 0.00 0.20 ind:pas:3p; +renforcé renforcer ver m s 10.34 17.84 0.90 1.89 par:pas; +renforcée renforcer ver f s 10.34 17.84 0.76 2.09 par:pas; +renforcées renforcer ver f p 10.34 17.84 0.10 1.01 par:pas; +renforcés renforcer ver m p 10.34 17.84 0.26 0.34 par:pas; +renfort renfort nom m s 21.41 13.45 7.50 7.50 +renforça renforcer ver 10.34 17.84 0.01 0.47 ind:pas:3s; +renforçaient renforcer ver 10.34 17.84 0.00 0.47 ind:imp:3p; +renforçait renforcer ver 10.34 17.84 0.17 1.49 ind:imp:3s; +renforçant renforcer ver 10.34 17.84 0.03 0.61 par:pre; +renforçons renforcer ver 10.34 17.84 0.05 0.07 imp:pre:1p;ind:pre:1p; +renforçât renforcer ver 10.34 17.84 0.00 0.07 sub:imp:3s; +renforts renfort nom m p 21.41 13.45 13.91 5.95 +renfourché renfourcher ver m s 0.00 0.07 0.00 0.07 par:pas; +renfournait renfourner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +renfrogna renfrogner ver 0.27 2.57 0.01 0.74 ind:pas:3s; +renfrognait renfrogner ver 0.27 2.57 0.00 0.27 ind:imp:3s; +renfrognant renfrogner ver 0.27 2.57 0.00 0.07 par:pre; +renfrogne renfrogner ver 0.27 2.57 0.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renfrognement renfrognement nom m s 0.01 0.14 0.01 0.14 +renfrogner renfrogner ver 0.27 2.57 0.01 0.14 inf; +renfrognerait renfrogner ver 0.27 2.57 0.00 0.07 cnd:pre:3s; +renfrogné renfrogner ver m s 0.27 2.57 0.21 0.47 par:pas; +renfrognée renfrogné adj f s 0.30 2.36 0.16 0.54 +renfrognés renfrogner ver m p 0.27 2.57 0.02 0.07 par:pas; +rengageait rengager ver 0.12 0.61 0.00 0.07 ind:imp:3s; +rengagement rengagement nom m s 0.01 0.07 0.01 0.07 +rengager rengager ver 0.12 0.61 0.09 0.34 inf; +rengagerais rengager ver 0.12 0.61 0.01 0.00 cnd:pre:1s; +rengagez rengager ver 0.12 0.61 0.02 0.07 imp:pre:2p;ind:pre:2p; +rengagés rengager ver m p 0.12 0.61 0.00 0.14 par:pas; +rengaina rengainer ver 0.60 1.42 0.00 0.27 ind:pas:3s; +rengainait rengainer ver 0.60 1.42 0.00 0.07 ind:imp:3s; +rengainant rengainer ver 0.60 1.42 0.01 0.07 par:pre; +rengaine rengaine nom f s 1.48 4.59 1.41 3.31 +rengainer rengainer ver 0.60 1.42 0.05 0.20 inf; +rengaines rengaine nom f p 1.48 4.59 0.06 1.28 +rengainez rengainer ver 0.60 1.42 0.35 0.07 imp:pre:2p; +rengainèrent rengainer ver 0.60 1.42 0.00 0.07 ind:pas:3p; +rengainé rengainer ver m s 0.60 1.42 0.01 0.47 par:pas; +rengainés rengainer ver m p 0.60 1.42 0.01 0.00 par:pas; +rengorge rengorger ver 0.04 2.97 0.03 0.61 ind:pre:3s; +rengorgea rengorger ver 0.04 2.97 0.00 0.88 ind:pas:3s; +rengorgeai rengorger ver 0.04 2.97 0.00 0.07 ind:pas:1s; +rengorgeaient rengorger ver 0.04 2.97 0.00 0.07 ind:imp:3p; +rengorgeais rengorger ver 0.04 2.97 0.00 0.14 ind:imp:1s; +rengorgeait rengorger ver 0.04 2.97 0.00 0.27 ind:imp:3s; +rengorgeant rengorger ver 0.04 2.97 0.00 0.34 par:pre; +rengorgement rengorgement nom m s 0.00 0.14 0.00 0.07 +rengorgements rengorgement nom m p 0.00 0.14 0.00 0.07 +rengorgent rengorger ver 0.04 2.97 0.01 0.14 ind:pre:3p; +rengorger rengorger ver 0.04 2.97 0.00 0.27 inf; +rengorges rengorger ver 0.04 2.97 0.00 0.07 ind:pre:2s; +rengorgé rengorger ver m s 0.04 2.97 0.00 0.07 par:pas; +rengorgés rengorger ver m p 0.04 2.97 0.00 0.07 par:pas; +rengracie rengracier ver 0.00 0.20 0.00 0.14 ind:pre:3s; +rengracié rengracier ver m s 0.00 0.20 0.00 0.07 par:pas; +renia renier ver 6.88 13.85 0.20 0.20 ind:pas:3s; +reniai renier ver 6.88 13.85 0.00 0.20 ind:pas:1s; +reniaient renier ver 6.88 13.85 0.00 0.41 ind:imp:3p; +reniais renier ver 6.88 13.85 0.11 0.54 ind:imp:1s;ind:imp:2s; +reniait renier ver 6.88 13.85 0.01 0.95 ind:imp:3s; +reniant renier ver 6.88 13.85 0.18 0.61 par:pre; +renie renier ver 6.88 13.85 1.65 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reniement reniement nom m s 0.02 2.09 0.02 1.42 +reniements reniement nom m p 0.02 2.09 0.00 0.68 +renient renier ver 6.88 13.85 0.07 0.20 ind:pre:3p; +renier renier ver 6.88 13.85 1.93 4.80 inf; +renierai renier ver 6.88 13.85 0.33 0.14 ind:fut:1s; +renierais renier ver 6.88 13.85 0.02 0.07 cnd:pre:1s; +renierait renier ver 6.88 13.85 0.33 0.27 cnd:pre:3s; +renieras renier ver 6.88 13.85 0.28 0.00 ind:fut:2s; +renieront renier ver 6.88 13.85 0.10 0.00 ind:fut:3p; +renies renier ver 6.88 13.85 0.25 0.27 ind:pre:2s; +reniez renier ver 6.88 13.85 0.03 0.14 imp:pre:2p;ind:pre:2p; +renifla renifler ver 5.56 24.39 0.00 3.31 ind:pas:3s; +reniflage reniflage nom m s 0.05 0.00 0.05 0.00 +reniflai renifler ver 5.56 24.39 0.00 0.20 ind:pas:1s; +reniflaient renifler ver 5.56 24.39 0.00 0.88 ind:imp:3p; +reniflais renifler ver 5.56 24.39 0.04 0.34 ind:imp:1s;ind:imp:2s; +reniflait renifler ver 5.56 24.39 0.07 3.58 ind:imp:3s; +reniflant renifler ver 5.56 24.39 0.05 3.38 par:pre; +renifle renifler ver 5.56 24.39 2.67 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reniflement reniflement nom m s 0.04 1.28 0.01 0.47 +reniflements reniflement nom m p 0.04 1.28 0.02 0.81 +reniflent renifler ver 5.56 24.39 0.11 0.68 ind:pre:3p; +renifler renifler ver 5.56 24.39 1.64 5.20 inf; +reniflera renifler ver 5.56 24.39 0.02 0.00 ind:fut:3s; +reniflerait renifler ver 5.56 24.39 0.01 0.07 cnd:pre:3s; +renifleries reniflerie nom f p 0.00 0.14 0.00 0.14 +reniflette reniflette nom f s 0.00 0.07 0.00 0.07 +renifleur renifleur nom m s 0.25 0.14 0.20 0.07 +renifleurs renifleur nom m p 0.25 0.14 0.05 0.07 +renifleuse renifleur adj f s 0.12 0.07 0.01 0.00 +reniflez renifler ver 5.56 24.39 0.17 0.27 imp:pre:2p;ind:pre:2p; +reniflé renifler ver m s 5.56 24.39 0.63 1.69 par:pas; +reniflée renifler ver f s 5.56 24.39 0.15 0.41 par:pas; +reniflées renifler ver f p 5.56 24.39 0.01 0.00 par:pas; +renions renier ver 6.88 13.85 0.03 0.00 imp:pre:1p;ind:pre:1p; +renièrent renier ver 6.88 13.85 0.00 0.07 ind:pas:3p; +renié renier ver m s 6.88 13.85 1.01 1.76 par:pas; +reniée renier ver f s 6.88 13.85 0.30 0.81 par:pas; +reniées renier ver f p 6.88 13.85 0.00 0.14 par:pas; +reniés renier ver m p 6.88 13.85 0.03 0.14 par:pas; +rennais rennais adj m 0.00 0.20 0.00 0.07 +rennaises rennais adj f p 0.00 0.20 0.00 0.14 +renne renne nom m s 1.79 1.15 0.81 0.47 +rennes renne nom m p 1.79 1.15 0.98 0.68 +renâcla renâcler ver 0.09 2.36 0.00 0.07 ind:pas:3s; +renâclaient renâcler ver 0.09 2.36 0.00 0.07 ind:imp:3p; +renâclais renâcler ver 0.09 2.36 0.00 0.20 ind:imp:1s; +renâclait renâcler ver 0.09 2.36 0.01 0.20 ind:imp:3s; +renâclant renâcler ver 0.09 2.36 0.00 0.54 par:pre; +renâcle renâcler ver 0.09 2.36 0.06 0.34 ind:pre:1s;ind:pre:3s; +renâclent renâcler ver 0.09 2.36 0.00 0.07 ind:pre:3p; +renâcler renâcler ver 0.09 2.36 0.01 0.54 inf; +renâcles renâcler ver 0.09 2.36 0.00 0.07 ind:pre:2s; +renâclez renâcler ver 0.09 2.36 0.01 0.00 ind:pre:2p; +renâclions renâcler ver 0.09 2.36 0.00 0.07 ind:imp:1p; +renâclé renâcler ver m s 0.09 2.36 0.00 0.20 par:pas; +renom renom nom m s 1.15 2.43 1.15 2.43 +renommait renommer ver 0.77 1.22 0.00 0.07 ind:imp:3s; +renommer renommer ver 0.77 1.22 0.22 0.00 inf; +renommera renommer ver 0.77 1.22 0.01 0.00 ind:fut:3s; +renommez renommer ver 0.77 1.22 0.00 0.27 imp:pre:2p;ind:pre:2p; +renommé renommé adj m s 0.97 1.08 0.45 0.47 +renommée renommée nom f s 1.89 3.11 1.89 3.11 +renommées renommé adj f p 0.97 1.08 0.01 0.07 +renommés renommé adj m p 0.97 1.08 0.15 0.27 +renonce renoncer ver 41.65 64.46 9.28 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renoncement renoncement nom m s 0.70 6.82 0.69 5.95 +renoncements renoncement nom m p 0.70 6.82 0.02 0.88 +renoncent renoncer ver 41.65 64.46 0.75 1.28 ind:pre:3p; +renoncer renoncer ver 41.65 64.46 15.23 21.55 inf; +renoncera renoncer ver 41.65 64.46 0.50 0.27 ind:fut:3s; +renoncerai renoncer ver 41.65 64.46 1.06 0.27 ind:fut:1s; +renonceraient renoncer ver 41.65 64.46 0.01 0.00 cnd:pre:3p; +renoncerais renoncer ver 41.65 64.46 0.99 0.34 cnd:pre:1s;cnd:pre:2s; +renoncerait renoncer ver 41.65 64.46 0.14 0.34 cnd:pre:3s; +renonceras renoncer ver 41.65 64.46 0.06 0.00 ind:fut:2s; +renoncerez renoncer ver 41.65 64.46 0.07 0.07 ind:fut:2p; +renonceriez renoncer ver 41.65 64.46 0.05 0.00 cnd:pre:2p; +renoncerions renoncer ver 41.65 64.46 0.14 0.00 cnd:pre:1p; +renoncerons renoncer ver 41.65 64.46 0.16 0.00 ind:fut:1p; +renonceront renoncer ver 41.65 64.46 0.19 0.07 ind:fut:3p; +renonces renoncer ver 41.65 64.46 1.50 0.07 ind:pre:2s;sub:pre:2s; +renoncez renoncer ver 41.65 64.46 2.91 0.68 imp:pre:2p;ind:pre:2p; +renonciateur renonciateur nom m s 0.00 0.07 0.00 0.07 +renonciation renonciation nom f s 0.38 0.41 0.35 0.34 +renonciations renonciation nom f p 0.38 0.41 0.03 0.07 +renonciez renoncer ver 41.65 64.46 0.23 0.14 ind:imp:2p; +renoncions renoncer ver 41.65 64.46 0.04 0.47 ind:imp:1p; +renoncèrent renoncer ver 41.65 64.46 0.03 0.47 ind:pas:3p; +renoncé renoncer ver m s 41.65 64.46 6.43 17.30 par:pas; +renoncée renoncer ver f s 41.65 64.46 0.00 0.07 par:pas; +renonculacées renonculacée nom f p 0.01 0.00 0.01 0.00 +renoncule renoncule nom f s 0.07 0.54 0.01 0.07 +renoncules renoncule nom f p 0.07 0.54 0.05 0.47 +renonça renoncer ver 41.65 64.46 0.16 4.19 ind:pas:3s; +renonçai renoncer ver 41.65 64.46 0.14 1.69 ind:pas:1s; +renonçaient renoncer ver 41.65 64.46 0.00 0.68 ind:imp:3p; +renonçais renoncer ver 41.65 64.46 0.20 0.54 ind:imp:1s; +renonçait renoncer ver 41.65 64.46 0.18 3.18 ind:imp:3s; +renonçant renoncer ver 41.65 64.46 0.71 4.46 par:pre; +renonçons renoncer ver 41.65 64.46 0.47 0.47 imp:pre:1p;ind:pre:1p; +renonçât renoncer ver 41.65 64.46 0.01 0.27 sub:imp:3s; +renoter renoter ver 0.01 0.00 0.01 0.00 inf; +renoua renouer ver 1.56 7.91 0.00 0.27 ind:pas:3s; +renouai renouer ver 1.56 7.91 0.00 0.20 ind:pas:1s; +renouaient renouer ver 1.56 7.91 0.00 0.20 ind:imp:3p; +renouais renouer ver 1.56 7.91 0.01 0.07 ind:imp:1s; +renouait renouer ver 1.56 7.91 0.01 0.81 ind:imp:3s; +renouant renouer ver 1.56 7.91 0.01 0.47 par:pre; +renoue renouer ver 1.56 7.91 0.40 0.81 ind:pre:1s;ind:pre:3s; +renouent renouer ver 1.56 7.91 0.10 0.07 ind:pre:3p; +renouer renouer ver 1.56 7.91 0.70 3.18 inf; +renouerait renouer ver 1.56 7.91 0.00 0.07 cnd:pre:3s; +renoueront renouer ver 1.56 7.91 0.00 0.14 ind:fut:3p; +renouons renouer ver 1.56 7.91 0.01 0.14 imp:pre:1p;ind:pre:1p; +renouèrent renouer ver 1.56 7.91 0.00 0.14 ind:pas:3p; +renoué renouer ver m s 1.56 7.91 0.32 1.08 par:pas; +renouée renouée nom f s 0.00 0.34 0.00 0.34 +renoués renouer ver m p 1.56 7.91 0.00 0.07 par:pas; +renouveau renouveau nom m s 1.38 3.85 1.38 3.72 +renouveaux renouveau nom m p 1.38 3.85 0.00 0.14 +renouvela renouveler ver 4.71 19.39 0.12 0.61 ind:pas:3s; +renouvelable renouvelable adj s 0.09 0.07 0.09 0.07 +renouvelai renouveler ver 4.71 19.39 0.00 0.34 ind:pas:1s; +renouvelaient renouveler ver 4.71 19.39 0.00 0.20 ind:imp:3p; +renouvelais renouveler ver 4.71 19.39 0.00 0.14 ind:imp:1s; +renouvelait renouveler ver 4.71 19.39 0.02 1.62 ind:imp:3s; +renouvelant renouveler ver 4.71 19.39 0.00 0.68 par:pre; +renouveler renouveler ver 4.71 19.39 1.98 5.81 inf; +renouvelez renouveler ver 4.71 19.39 0.08 0.00 imp:pre:2p;ind:pre:2p; +renouvelions renouveler ver 4.71 19.39 0.00 0.07 ind:imp:1p; +renouvelle renouveler ver 4.71 19.39 1.06 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renouvellement renouvellement nom m s 0.94 2.43 0.89 2.30 +renouvellements renouvellement nom m p 0.94 2.43 0.05 0.14 +renouvellent renouveler ver 4.71 19.39 0.34 0.27 ind:pre:3p; +renouvellera renouveler ver 4.71 19.39 0.10 0.14 ind:fut:3s; +renouvellerai renouveler ver 4.71 19.39 0.01 0.07 ind:fut:1s; +renouvellerait renouveler ver 4.71 19.39 0.00 0.41 cnd:pre:3s; +renouvellerons renouveler ver 4.71 19.39 0.01 0.00 ind:fut:1p; +renouvelleront renouveler ver 4.71 19.39 0.04 0.07 ind:fut:3p; +renouvelles renouveler ver 4.71 19.39 0.03 0.00 ind:pre:2s; +renouvelâmes renouveler ver 4.71 19.39 0.00 0.07 ind:pas:1p; +renouvelons renouveler ver 4.71 19.39 0.04 0.07 imp:pre:1p;ind:pre:1p; +renouvelât renouveler ver 4.71 19.39 0.00 0.14 sub:imp:3s; +renouvelèrent renouveler ver 4.71 19.39 0.00 0.07 ind:pas:3p; +renouvelé renouveler ver m s 4.71 19.39 0.52 2.70 par:pas; +renouvelée renouveler ver f s 4.71 19.39 0.15 2.36 par:pas; +renouvelées renouveler ver f p 4.71 19.39 0.03 1.15 par:pas; +renouvelés renouveler ver m p 4.71 19.39 0.18 0.81 par:pas; +renquillait renquiller ver 0.00 0.34 0.00 0.07 ind:imp:3s; +renquille renquiller ver 0.00 0.34 0.00 0.07 ind:pre:3s; +renquillé renquiller ver m s 0.00 0.34 0.00 0.20 par:pas; +renseigna renseigner ver 20.46 24.26 0.00 1.01 ind:pas:3s; +renseignai renseigner ver 20.46 24.26 0.00 0.20 ind:pas:1s; +renseignaient renseigner ver 20.46 24.26 0.00 0.34 ind:imp:3p; +renseignais renseigner ver 20.46 24.26 0.26 0.00 ind:imp:1s;ind:imp:2s; +renseignait renseigner ver 20.46 24.26 0.08 1.01 ind:imp:3s; +renseignant renseigner ver 20.46 24.26 0.02 0.14 par:pre; +renseigne renseigner ver 20.46 24.26 3.44 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renseignement renseignement nom m s 18.98 22.91 5.07 5.68 +renseignements renseignement nom m p 18.98 22.91 13.91 17.23 +renseignent renseigner ver 20.46 24.26 0.14 0.47 ind:pre:3p; +renseigner renseigner ver 20.46 24.26 9.07 7.03 inf; +renseignera renseigner ver 20.46 24.26 0.59 0.27 ind:fut:3s; +renseignerai renseigner ver 20.46 24.26 0.19 0.20 ind:fut:1s; +renseigneraient renseigner ver 20.46 24.26 0.01 0.14 cnd:pre:3p; +renseignerais renseigner ver 20.46 24.26 0.22 0.00 cnd:pre:1s;cnd:pre:2s; +renseignerait renseigner ver 20.46 24.26 0.17 0.27 cnd:pre:3s; +renseigneras renseigner ver 20.46 24.26 0.01 0.07 ind:fut:2s; +renseigneriez renseigner ver 20.46 24.26 0.02 0.00 cnd:pre:2p; +renseignerons renseigner ver 20.46 24.26 0.16 0.00 ind:fut:1p; +renseigneront renseigner ver 20.46 24.26 0.00 0.20 ind:fut:3p; +renseignez renseigner ver 20.46 24.26 0.86 0.34 imp:pre:2p;ind:pre:2p; +renseignât renseigner ver 20.46 24.26 0.00 0.07 sub:imp:3s; +renseignèrent renseigner ver 20.46 24.26 0.00 0.07 ind:pas:3p; +renseigné renseigner ver m s 20.46 24.26 3.04 5.81 par:pas; +renseignée renseigner ver f s 20.46 24.26 1.23 1.62 par:pas; +renseignées renseigner ver f p 20.46 24.26 0.03 0.14 par:pas; +renseignés renseigner ver m p 20.46 24.26 0.93 2.16 par:pas; +renta renter ver 0.47 0.00 0.11 0.00 ind:pas:3s; +rentabilisation rentabilisation nom f s 0.00 0.07 0.00 0.07 +rentabilise rentabiliser ver 0.47 0.14 0.07 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rentabiliser rentabiliser ver 0.47 0.14 0.37 0.07 inf; +rentabilisé rentabiliser ver m s 0.47 0.14 0.04 0.00 par:pas; +rentabilisée rentabiliser ver f s 0.47 0.14 0.00 0.07 par:pas; +rentabilité rentabilité nom f s 0.27 0.61 0.27 0.61 +rentable rentable adj s 2.58 1.69 2.21 1.42 +rentables rentable adj p 2.58 1.69 0.36 0.27 +rentamer rentamer ver 0.01 0.00 0.01 0.00 inf; +rente rente nom f s 1.61 3.78 1.17 1.96 +renter renter ver 0.47 0.00 0.34 0.00 inf; +rentes rente nom f p 1.61 3.78 0.44 1.82 +rentier rentier nom m s 0.17 3.11 0.12 1.08 +rentiers rentier nom m p 0.17 3.11 0.05 1.42 +rentière rentier nom f s 0.17 3.11 0.00 0.47 +rentières rentier nom f p 0.17 3.11 0.00 0.14 +rentoilages rentoilage nom m p 0.00 0.07 0.00 0.07 +rentoilée rentoiler ver f s 0.00 0.07 0.00 0.07 par:pas; +rentra rentrer ver 532.51 279.93 1.11 18.51 ind:pas:3s; +rentrai rentrer ver 532.51 279.93 0.39 5.20 ind:pas:1s; +rentraient rentrer ver 532.51 279.93 1.29 6.49 ind:imp:3p;ind:pre:3p; +rentrais rentrer ver 532.51 279.93 5.36 5.95 ind:imp:1s;ind:imp:2s;ind:pre:2s; +rentrait rentrer ver 532.51 279.93 6.21 17.57 ind:imp:3s;ind:pre:3s; +rentrant rentrer ver 532.51 279.93 9.50 21.49 par:pre; +rentrante rentrant adj f s 0.04 1.01 0.01 0.00 +rentrantes rentrant adj f p 0.04 1.01 0.00 0.20 +rentrants rentrant adj m p 0.04 1.01 0.00 0.07 +rentre_dedans rentre_dedans nom m 0.47 0.07 0.47 0.07 +rentre rentrer ver 532.51 279.93 151.42 41.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rentrent rentrer ver 532.51 279.93 6.04 5.07 ind:pre:3p; +rentrer rentrer ver 532.51 279.93 166.36 77.23 inf; +rentrera rentrer ver 532.51 279.93 9.64 2.70 ind:fut:3s; +rentrerai rentrer ver 532.51 279.93 9.91 2.23 ind:fut:1s; +rentreraient rentrer ver 532.51 279.93 0.07 0.88 cnd:pre:3p; +rentrerais rentrer ver 532.51 279.93 1.09 0.74 cnd:pre:1s;cnd:pre:2s; +rentrerait rentrer ver 532.51 279.93 1.45 3.24 cnd:pre:3s; +rentreras rentrer ver 532.51 279.93 3.16 0.74 ind:fut:2s; +rentrerez rentrer ver 532.51 279.93 1.12 0.34 ind:fut:2p; +rentreriez rentrer ver 532.51 279.93 0.23 0.07 cnd:pre:2p; +rentrerions rentrer ver 532.51 279.93 0.07 0.41 cnd:pre:1p; +rentrerons rentrer ver 532.51 279.93 1.05 0.74 ind:fut:1p; +rentreront rentrer ver 532.51 279.93 0.98 0.68 ind:fut:3p; +rentres rentrer ver 532.51 279.93 24.90 2.36 ind:pre:2s;sub:pre:2s; +rentrez rentrer ver 532.51 279.93 31.60 2.57 imp:pre:2p;ind:pre:2p; +rentriez rentrer ver 532.51 279.93 0.61 0.68 ind:imp:2p;sub:pre:2p; +rentrions rentrer ver 532.51 279.93 0.48 2.36 ind:imp:1p; +rentrâmes rentrer ver 532.51 279.93 0.01 1.01 ind:pas:1p; +rentrons rentrer ver 532.51 279.93 19.04 5.54 imp:pre:1p;ind:pre:1p; +rentrât rentrer ver 532.51 279.93 0.00 0.47 sub:imp:3s; +rentrèrent rentrer ver 532.51 279.93 0.09 2.36 ind:pas:3p; +rentré rentrer ver m s 532.51 279.93 44.27 24.05 par:pas; +rentrée rentrer ver f s 532.51 279.93 25.00 14.66 par:pas; +rentrées rentrer ver f p 532.51 279.93 0.78 3.11 par:pas; +rentrés rentrer ver m p 532.51 279.93 9.29 8.72 par:pas; +rentée renter ver f s 0.47 0.00 0.02 0.00 par:pas; +rené renaître ver m s 7.45 13.04 1.46 1.42 par:pas; +renée renaître ver f s 7.45 13.04 0.25 0.14 par:pas; +renégat renégat nom m s 1.60 1.96 0.89 1.15 +renégate renégat nom f s 1.60 1.96 0.15 0.14 +renégats renégat nom m p 1.60 1.96 0.56 0.68 +renégociation renégociation nom f s 0.05 0.00 0.05 0.00 +renégocie renégocier ver 0.36 0.00 0.03 0.00 ind:pre:1s;ind:pre:3s; +renégocier renégocier ver 0.36 0.00 0.30 0.00 inf; +renégociées renégocier ver f p 0.36 0.00 0.01 0.00 par:pas; +renégociés renégocier ver m p 0.36 0.00 0.02 0.00 par:pas; +renverra renvoyer ver 59.22 42.70 1.40 0.14 ind:fut:3s; +renverrai renvoyer ver 59.22 42.70 0.98 0.14 ind:fut:1s; +renverraient renvoyer ver 59.22 42.70 0.10 0.07 cnd:pre:3p; +renverrais renvoyer ver 59.22 42.70 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +renverrait renvoyer ver 59.22 42.70 0.27 0.20 cnd:pre:3s; +renverras renvoyer ver 59.22 42.70 0.16 0.00 ind:fut:2s; +renverrez renvoyer ver 59.22 42.70 0.09 0.00 ind:fut:2p; +renverrions renvoyer ver 59.22 42.70 0.01 0.07 cnd:pre:1p; +renverrons renvoyer ver 59.22 42.70 0.12 0.07 ind:fut:1p; +renverront renvoyer ver 59.22 42.70 0.54 0.07 ind:fut:3p; +renversa renverser ver 24.02 39.46 0.27 5.34 ind:pas:3s; +renversai renverser ver 24.02 39.46 0.01 0.07 ind:pas:1s; +renversaient renverser ver 24.02 39.46 0.02 1.01 ind:imp:3p; +renversais renverser ver 24.02 39.46 0.02 0.07 ind:imp:1s; +renversait renverser ver 24.02 39.46 0.12 2.97 ind:imp:3s; +renversant renversant adj m s 1.31 0.95 0.87 0.68 +renversante renversant adj f s 1.31 0.95 0.40 0.07 +renversantes renversant adj f p 1.31 0.95 0.04 0.20 +renverse renverser ver 24.02 39.46 1.93 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renversement renversement nom m s 0.27 2.23 0.25 1.96 +renversements renversement nom m p 0.27 2.23 0.03 0.27 +renversent renverser ver 24.02 39.46 0.10 0.54 ind:pre:3p; +renverser renverser ver 24.02 39.46 7.00 7.64 inf; +renversera renverser ver 24.02 39.46 0.15 0.00 ind:fut:3s; +renverserai renverser ver 24.02 39.46 0.16 0.00 ind:fut:1s; +renverserais renverser ver 24.02 39.46 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +renverserait renverser ver 24.02 39.46 0.07 0.41 cnd:pre:3s; +renverseras renverser ver 24.02 39.46 0.02 0.00 ind:fut:2s; +renverseront renverser ver 24.02 39.46 0.01 0.14 ind:fut:3p; +renverses renverser ver 24.02 39.46 0.48 0.20 ind:pre:2s; +renverseur renverseur nom m s 0.00 0.07 0.00 0.07 +renversez renverser ver 24.02 39.46 0.35 0.07 imp:pre:2p;ind:pre:2p; +renversons renverser ver 24.02 39.46 0.04 0.07 imp:pre:1p;ind:pre:1p; +renversât renverser ver 24.02 39.46 0.00 0.07 sub:imp:3s; +renversèrent renverser ver 24.02 39.46 0.01 0.20 ind:pas:3p; +renversé renverser ver m s 24.02 39.46 10.41 6.62 par:pas; +renversée renverser ver f s 24.02 39.46 2.04 4.26 par:pas; +renversées renversé adj f p 1.33 10.47 0.08 1.69 +renversés renverser ver m p 24.02 39.46 0.50 1.42 par:pas; +renvoi renvoi nom m s 3.50 4.80 3.19 3.38 +renvoie renvoyer ver 59.22 42.70 11.56 6.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +renvoient renvoyer ver 59.22 42.70 1.62 1.89 ind:pre:3p; +renvoies renvoyer ver 59.22 42.70 0.67 0.14 ind:pre:2s; +renvois renvoi nom m p 3.50 4.80 0.31 1.42 +renvoya renvoyer ver 59.22 42.70 0.17 3.58 ind:pas:3s; +renvoyai renvoyer ver 59.22 42.70 0.01 0.14 ind:pas:1s; +renvoyaient renvoyer ver 59.22 42.70 0.07 1.69 ind:imp:3p; +renvoyais renvoyer ver 59.22 42.70 0.12 0.20 ind:imp:1s;ind:imp:2s; +renvoyait renvoyer ver 59.22 42.70 0.53 5.61 ind:imp:3s; +renvoyant renvoyer ver 59.22 42.70 0.09 1.28 par:pre; +renvoyer renvoyer ver 59.22 42.70 16.45 8.45 inf; +renvoyez renvoyer ver 59.22 42.70 5.48 0.20 imp:pre:2p;ind:pre:2p; +renvoyiez renvoyer ver 59.22 42.70 0.05 0.00 ind:imp:2p;sub:pre:2p; +renvoyions renvoyer ver 59.22 42.70 0.02 0.00 ind:imp:1p; +renvoyons renvoyer ver 59.22 42.70 0.22 0.00 imp:pre:1p;ind:pre:1p; +renvoyât renvoyer ver 59.22 42.70 0.00 0.20 sub:imp:3s; +renvoyèrent renvoyer ver 59.22 42.70 0.02 0.54 ind:pas:3p; +renvoyé renvoyer ver m s 59.22 42.70 11.06 7.36 par:pas; +renvoyée renvoyer ver f s 59.22 42.70 4.71 1.96 par:pas; +renvoyées renvoyer ver f p 59.22 42.70 0.50 0.81 par:pas; +renvoyés renvoyer ver m p 59.22 42.70 2.04 1.69 par:pas; +rep rep nom m s 0.00 0.07 0.00 0.07 +repaît repaître ver 0.48 2.57 0.12 0.07 ind:pre:3s; +repaître repaître ver 0.48 2.57 0.20 1.42 inf; +repaie repayer ver 0.23 0.41 0.01 0.07 ind:pre:3s; +repaies repayer ver 0.23 0.41 0.01 0.00 ind:pre:2s; +repaire repaire nom m s 3.19 3.31 3.02 2.43 +repaires repaire nom m p 3.19 3.31 0.17 0.88 +repais repaître ver 0.48 2.57 0.01 0.41 imp:pre:2s;ind:pre:1s; +repaissaient repaître ver 0.48 2.57 0.01 0.07 ind:imp:3p; +repaissais repaître ver 0.48 2.57 0.00 0.07 ind:imp:1s; +repaissait repaître ver 0.48 2.57 0.00 0.47 ind:imp:3s; +repaissant repaître ver 0.48 2.57 0.01 0.00 par:pre; +repaissent repaître ver 0.48 2.57 0.14 0.07 ind:pre:3p; +reparût reparaître ver 0.80 15.68 0.00 0.20 sub:imp:3s; +reparaît reparaître ver 0.80 15.68 0.16 2.23 ind:pre:3s; +reparaîtra reparaître ver 0.80 15.68 0.01 0.27 ind:fut:3s; +reparaîtrait reparaître ver 0.80 15.68 0.00 0.07 cnd:pre:3s; +reparaître reparaître ver 0.80 15.68 0.06 3.38 inf; +reparais reparaître ver 0.80 15.68 0.14 0.00 ind:pre:2s; +reparaissaient reparaître ver 0.80 15.68 0.01 0.74 ind:imp:3p; +reparaissait reparaître ver 0.80 15.68 0.00 1.28 ind:imp:3s; +reparaissant reparaître ver 0.80 15.68 0.00 0.41 par:pre; +reparaisse reparaître ver 0.80 15.68 0.01 0.41 sub:pre:3s; +reparaissent reparaître ver 0.80 15.68 0.00 0.34 ind:pre:3p; +reparaissez reparaître ver 0.80 15.68 0.00 0.07 ind:pre:2p; +reparaissons reparaître ver 0.80 15.68 0.00 0.07 ind:pre:1p; +reparcourant reparcourir ver 0.14 0.34 0.00 0.20 par:pre; +reparcourir reparcourir ver 0.14 0.34 0.13 0.07 inf; +reparcouru reparcourir ver m s 0.14 0.34 0.01 0.07 par:pas; +reparla reparler ver 19.93 8.65 0.03 0.95 ind:pas:3s; +reparlaient reparler ver 19.93 8.65 0.00 0.14 ind:imp:3p; +reparlais reparler ver 19.93 8.65 0.04 0.07 ind:imp:1s;ind:imp:2s; +reparlait reparler ver 19.93 8.65 0.09 0.20 ind:imp:3s; +reparlant reparler ver 19.93 8.65 0.00 0.07 par:pre; +reparle reparler ver 19.93 8.65 3.02 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reparlent reparler ver 19.93 8.65 0.03 0.07 ind:pre:3p; +reparler reparler ver 19.93 8.65 2.88 1.28 inf; +reparlera reparler ver 19.93 8.65 8.40 0.88 ind:fut:3s; +reparlerai reparler ver 19.93 8.65 0.33 0.41 ind:fut:1s; +reparlerez reparler ver 19.93 8.65 0.01 0.00 ind:fut:2p; +reparlerions reparler ver 19.93 8.65 0.03 0.07 cnd:pre:1p; +reparlerons reparler ver 19.93 8.65 2.58 1.96 ind:fut:1p; +reparles reparler ver 19.93 8.65 0.45 0.07 ind:pre:2s; +reparlez reparler ver 19.93 8.65 0.12 0.07 imp:pre:2p;ind:pre:2p; +reparliez reparler ver 19.93 8.65 0.03 0.07 ind:imp:2p; +reparlâmes reparler ver 19.93 8.65 0.00 0.20 ind:pas:1p; +reparlons reparler ver 19.93 8.65 0.56 0.14 imp:pre:1p;ind:pre:1p; +reparlé reparler ver m s 19.93 8.65 1.36 1.42 par:pas; +repars repartir ver 58.84 87.57 6.61 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repart repartir ver 58.84 87.57 8.08 8.11 ind:pre:3s; +repartîmes repartir ver 58.84 87.57 0.01 0.41 ind:pas:1p; +repartît repartir ver 58.84 87.57 0.01 0.20 sub:imp:3s; +repartaient repartir ver 58.84 87.57 0.16 2.57 ind:imp:3p; +repartais repartir ver 58.84 87.57 0.46 1.22 ind:imp:1s;ind:imp:2s; +repartait repartir ver 58.84 87.57 0.83 10.20 ind:imp:3s; +repartant repartir ver 58.84 87.57 0.16 1.62 par:pre; +reparte repartir ver 58.84 87.57 1.09 0.81 sub:pre:1s;sub:pre:3s; +repartent repartir ver 58.84 87.57 1.53 1.89 ind:pre:3p; +repartes repartir ver 58.84 87.57 0.24 0.20 sub:pre:2s; +repartez repartir ver 58.84 87.57 1.58 0.68 imp:pre:2p;ind:pre:2p; +reparti repartir ver m s 58.84 87.57 9.19 9.05 par:pas; +repartie repartir ver f s 58.84 87.57 2.54 3.72 par:pas; +reparties repartir ver f p 58.84 87.57 0.07 0.41 par:pas; +repartiez repartir ver 58.84 87.57 0.13 0.07 ind:imp:2p; +repartions repartir ver 58.84 87.57 0.05 0.74 ind:imp:1p; +repartir repartir ver 58.84 87.57 19.56 22.91 inf; +repartira repartir ver 58.84 87.57 0.89 0.54 ind:fut:3s; +repartirai repartir ver 58.84 87.57 0.66 0.41 ind:fut:1s; +repartiraient repartir ver 58.84 87.57 0.03 0.07 cnd:pre:3p; +repartirais repartir ver 58.84 87.57 0.19 0.41 cnd:pre:1s;cnd:pre:2s; +repartirait repartir ver 58.84 87.57 0.06 0.41 cnd:pre:3s; +repartiras repartir ver 58.84 87.57 0.55 0.47 ind:fut:2s; +repartirent repartir ver 58.84 87.57 0.01 1.55 ind:pas:3p; +repartirez repartir ver 58.84 87.57 0.46 0.20 ind:fut:2p; +repartirons repartir ver 58.84 87.57 0.21 0.41 ind:fut:1p; +repartiront repartir ver 58.84 87.57 0.20 0.14 ind:fut:3p; +repartis repartir ver m p 58.84 87.57 1.52 3.65 ind:pas:1s;par:pas; +repartisse repartir ver 58.84 87.57 0.00 0.07 sub:imp:1s; +repartit repartir ver 58.84 87.57 0.36 10.14 ind:pas:3s; +repartons repartir ver 58.84 87.57 1.40 1.89 imp:pre:1p;ind:pre:1p; +reparu reparaître ver m s 0.80 15.68 0.32 2.64 par:pas; +reparue reparaître ver f s 0.80 15.68 0.00 0.14 par:pas; +reparurent reparaître ver 0.80 15.68 0.00 0.27 ind:pas:3p; +reparut reparaître ver 0.80 15.68 0.10 3.18 ind:pas:3s; +repas repas nom m 48.53 76.62 48.53 76.62 +repassa repasser ver 26.91 34.19 0.00 1.49 ind:pas:3s; +repassage repassage nom m s 1.06 2.03 1.05 1.82 +repassages repassage nom m p 1.06 2.03 0.01 0.20 +repassai repasser ver 26.91 34.19 0.00 0.61 ind:pas:1s; +repassaient repasser ver 26.91 34.19 0.02 1.15 ind:imp:3p; +repassais repasser ver 26.91 34.19 0.13 0.47 ind:imp:1s;ind:imp:2s; +repassait repasser ver 26.91 34.19 0.21 3.45 ind:imp:3s; +repassant repasser ver 26.91 34.19 0.31 1.96 par:pre; +repasse repasser ver 26.91 34.19 6.34 4.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repassent repasser ver 26.91 34.19 0.37 1.15 ind:pre:3p; +repasser repasser ver 26.91 34.19 7.27 9.39 inf; +repassera repasser ver 26.91 34.19 0.73 0.81 ind:fut:3s; +repasserai repasser ver 26.91 34.19 4.89 1.01 ind:fut:1s; +repasseraient repasser ver 26.91 34.19 0.01 0.14 cnd:pre:3p; +repasserais repasser ver 26.91 34.19 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +repasserait repasser ver 26.91 34.19 0.03 0.47 cnd:pre:3s; +repasseras repasser ver 26.91 34.19 0.11 0.41 ind:fut:2s; +repasserez repasser ver 26.91 34.19 0.25 0.47 ind:fut:2p; +repasserons repasser ver 26.91 34.19 0.07 0.00 ind:fut:1p; +repasseront repasser ver 26.91 34.19 0.12 0.14 ind:fut:3p; +repasses repasser ver 26.91 34.19 0.60 0.07 ind:pre:2s; +repasseur repasseur nom m s 0.00 0.68 0.00 0.41 +repasseuse repasseur nom f s 0.00 0.68 0.00 0.20 +repasseuses repasseur nom f p 0.00 0.68 0.00 0.07 +repassez repasser ver 26.91 34.19 1.85 0.41 imp:pre:2p;ind:pre:2p; +repassiez repasser ver 26.91 34.19 0.03 0.00 ind:imp:2p; +repassions repasser ver 26.91 34.19 0.03 0.14 ind:imp:1p; +repassons repasser ver 26.91 34.19 0.22 0.07 imp:pre:1p;ind:pre:1p; +repassé repasser ver m s 26.91 34.19 1.79 3.51 par:pas; +repassée repasser ver f s 26.91 34.19 0.52 1.15 par:pas; +repassées repasser ver f p 26.91 34.19 0.14 0.34 par:pas; +repassés repasser ver m p 26.91 34.19 0.70 0.95 par:pas; +repavage repavage nom m s 0.04 0.00 0.04 0.00 +repaver repaver ver 0.01 0.07 0.01 0.00 inf; +repavé repaver ver m s 0.01 0.07 0.00 0.07 par:pas; +repayais repayer ver 0.23 0.41 0.00 0.07 ind:imp:1s; +repayait repayer ver 0.23 0.41 0.00 0.07 ind:imp:3s; +repaye repayer ver 0.23 0.41 0.00 0.07 ind:pre:1s; +repayer repayer ver 0.23 0.41 0.21 0.00 inf;; +repayé repayer ver m s 0.23 0.41 0.00 0.07 par:pas; +repeigna repeigner ver 0.35 1.35 0.00 0.07 ind:pas:3s; +repeignais repeigner ver 0.35 1.35 0.01 0.14 ind:imp:1s; +repeignait repeigner ver 0.35 1.35 0.01 0.41 ind:imp:3s; +repeignant repeigner ver 0.35 1.35 0.02 0.00 par:pre; +repeigne repeigner ver 0.35 1.35 0.06 0.14 ind:pre:1s;ind:pre:3s; +repeignent repeigner ver 0.35 1.35 0.19 0.27 ind:pre:3p; +repeignez repeigner ver 0.35 1.35 0.06 0.00 imp:pre:2p;ind:pre:2p; +repeignit repeindre ver 5.05 6.96 0.00 0.07 ind:pas:3s; +repeigné repeigner ver m s 0.35 1.35 0.00 0.07 par:pas; +repeignée repeigner ver f s 0.35 1.35 0.00 0.20 par:pas; +repeignées repeigner ver f p 0.35 1.35 0.00 0.07 par:pas; +repeindra repeindre ver 5.05 6.96 0.03 0.00 ind:fut:3s; +repeindrai repeindre ver 5.05 6.96 0.01 0.00 ind:fut:1s; +repeindrait repeindre ver 5.05 6.96 0.25 0.00 cnd:pre:3s; +repeindre repeindre ver 5.05 6.96 2.79 2.70 inf; +repeins repeindre ver 5.05 6.96 0.29 0.00 imp:pre:2s;ind:pre:1s; +repeint repeindre ver m s 5.05 6.96 1.46 1.35 ind:pre:3s;par:pas; +repeinte repeindre ver f s 5.05 6.96 0.20 1.69 par:pas; +repeintes repeindre ver f p 5.05 6.96 0.02 0.61 par:pas; +repeints repeindre ver m p 5.05 6.96 0.01 0.54 par:pas; +rependra rependre ver 0.38 0.14 0.00 0.07 ind:fut:3s; +rependre rependre ver 0.38 0.14 0.22 0.00 inf; +repends rependre ver 0.38 0.14 0.15 0.00 imp:pre:2s;ind:pre:1s; +rependu rependre ver m s 0.38 0.14 0.01 0.00 par:pas; +rependus rependre ver m p 0.38 0.14 0.00 0.07 par:pas; +repens repentir ver 9.49 6.28 1.47 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repensa repenser ver 9.68 12.16 0.01 0.95 ind:pas:3s; +repensai repenser ver 9.68 12.16 0.02 0.74 ind:pas:1s; +repensais repenser ver 9.68 12.16 0.56 0.81 ind:imp:1s; +repensait repenser ver 9.68 12.16 0.26 0.88 ind:imp:3s; +repensant repenser ver 9.68 12.16 0.98 1.01 par:pre; +repense repenser ver 9.68 12.16 2.91 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +repensent repenser ver 9.68 12.16 0.01 0.07 ind:pre:3p; +repenser repenser ver 9.68 12.16 1.74 2.36 inf; +repensera repenser ver 9.68 12.16 0.13 0.07 ind:fut:3s; +repenserai repenser ver 9.68 12.16 0.02 0.00 ind:fut:1s; +repenserais repenser ver 9.68 12.16 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +repenserez repenser ver 9.68 12.16 0.03 0.14 ind:fut:2p; +repenses repenser ver 9.68 12.16 0.55 0.07 ind:pre:2s;sub:pre:2s; +repensez repenser ver 9.68 12.16 0.22 0.00 imp:pre:2p;ind:pre:2p; +repensons repenser ver 9.68 12.16 0.02 0.00 imp:pre:1p; +repensé repenser ver m s 9.68 12.16 2.12 1.55 par:pas; +repensée repenser ver f s 9.68 12.16 0.01 0.00 par:pas; +repent repentir ver 9.49 6.28 0.96 0.34 ind:pre:3s; +repentaient repentir ver 9.49 6.28 0.00 0.07 ind:imp:3p; +repentait repentir ver 9.49 6.28 0.00 0.61 ind:imp:3s; +repentance repentance nom f s 0.15 0.20 0.15 0.20 +repentant repentir ver 9.49 6.28 0.13 0.07 par:pre; +repentante repentant adj f s 0.17 0.74 0.02 0.41 +repentantes repentant adj f p 0.17 0.74 0.00 0.07 +repentants repentant adj m p 0.17 0.74 0.12 0.07 +repentent repentir ver 9.49 6.28 0.02 0.14 ind:pre:3p; +repentez repentir ver 9.49 6.28 0.80 0.34 imp:pre:2p;ind:pre:2p; +repenti repenti adj m s 0.84 1.15 0.76 0.61 +repentie repentir ver f s 9.49 6.28 0.05 0.20 par:pas; +repenties repenti adj f p 0.84 1.15 0.00 0.14 +repentir repentir ver 9.49 6.28 3.59 2.50 inf; +repentira repentir ver 9.49 6.28 0.34 0.07 ind:fut:3s; +repentirai repentir ver 9.49 6.28 0.25 0.14 ind:fut:1s; +repentirais repentir ver 9.49 6.28 0.00 0.07 cnd:pre:2s; +repentiras repentir ver 9.49 6.28 0.76 0.00 ind:fut:2s; +repentirez repentir ver 9.49 6.28 0.56 0.14 ind:fut:2p; +repentirs repentir nom m p 2.59 5.20 0.00 0.61 +repentis repenti adj m p 0.84 1.15 0.07 0.27 +repentisse repentir ver 9.49 6.28 0.01 0.00 sub:imp:1s; +repentissent repentir ver 9.49 6.28 0.01 0.07 sub:imp:3p; +repentit repentir ver 9.49 6.28 0.02 0.20 ind:pas:3s; +repentons repentir ver 9.49 6.28 0.02 0.00 imp:pre:1p;ind:pre:1p; +reperdaient reperdre ver 0.32 0.88 0.00 0.07 ind:imp:3p; +reperdais reperdre ver 0.32 0.88 0.00 0.07 ind:imp:1s; +reperdons reperdre ver 0.32 0.88 0.00 0.07 imp:pre:1p; +reperdre reperdre ver 0.32 0.88 0.16 0.14 inf; +reperds reperdre ver 0.32 0.88 0.01 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reperdu reperdre ver m s 0.32 0.88 0.15 0.20 par:pas; +reperdue reperdre ver f s 0.32 0.88 0.00 0.14 par:pas; +reperdues reperdre ver f p 0.32 0.88 0.00 0.07 par:pas; +repeuplaient repeupler ver 0.62 0.74 0.00 0.07 ind:imp:3p; +repeuplait repeupler ver 0.62 0.74 0.00 0.07 ind:imp:3s; +repeuple repeupler ver 0.62 0.74 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repeuplement repeuplement nom m s 0.01 0.00 0.01 0.00 +repeupler repeupler ver 0.62 0.74 0.32 0.07 inf; +repeuplée repeupler ver f s 0.62 0.74 0.01 0.27 par:pas; +repeuplées repeupler ver f p 0.62 0.74 0.00 0.07 par:pas; +repincer repincer ver 0.15 0.27 0.15 0.07 inf; +repincé repincer ver m s 0.15 0.27 0.00 0.20 par:pas; +repiqua repiquer ver 0.53 2.09 0.00 0.27 ind:pas:3s; +repiquage repiquage nom m s 0.10 0.61 0.10 0.61 +repiquaient repiquer ver 0.53 2.09 0.00 0.07 ind:imp:3p; +repiquait repiquer ver 0.53 2.09 0.00 0.20 ind:imp:3s; +repique repiquer ver 0.53 2.09 0.16 0.68 ind:pre:1s;ind:pre:3s; +repiquer repiquer ver 0.53 2.09 0.07 0.47 inf; +repiquerai repiquer ver 0.53 2.09 0.00 0.07 ind:fut:1s; +repiqué repiquer ver m s 0.53 2.09 0.30 0.27 par:pas; +repiquées repiquer ver f p 0.53 2.09 0.00 0.07 par:pas; +replace replacer ver 1.54 7.70 0.32 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +replacement replacement nom m s 0.02 0.00 0.02 0.00 +replacent replacer ver 1.54 7.70 0.02 0.00 ind:pre:3p; +replacer replacer ver 1.54 7.70 0.41 2.36 inf; +replacerai replacer ver 1.54 7.70 0.02 0.00 ind:fut:1s; +replacerez replacer ver 1.54 7.70 0.01 0.00 ind:fut:2p; +replacez replacer ver 1.54 7.70 0.26 0.07 imp:pre:2p; +replacèrent replacer ver 1.54 7.70 0.00 0.07 ind:pas:3p; +replacé replacer ver m s 1.54 7.70 0.39 1.01 par:pas; +replacée replacer ver f s 1.54 7.70 0.05 0.07 par:pas; +replacés replacer ver m p 1.54 7.70 0.02 0.20 par:pas; +replanta replanter ver 0.25 1.69 0.00 0.07 ind:pas:3s; +replantait replanter ver 0.25 1.69 0.00 0.20 ind:imp:3s; +replantation replantation nom f s 0.00 0.07 0.00 0.07 +replante replanter ver 0.25 1.69 0.00 0.14 ind:pre:3s; +replantent replanter ver 0.25 1.69 0.00 0.07 ind:pre:3p; +replanter replanter ver 0.25 1.69 0.21 0.47 inf; +replantez replanter ver 0.25 1.69 0.00 0.07 imp:pre:2p; +replanté replanter ver m s 0.25 1.69 0.00 0.14 par:pas; +replantée replanter ver f s 0.25 1.69 0.01 0.27 par:pas; +replantées replanter ver f p 0.25 1.69 0.01 0.20 par:pas; +replantés replanter ver m p 0.25 1.69 0.02 0.07 par:pas; +replat replat nom m s 0.16 0.61 0.16 0.54 +replaça replacer ver 1.54 7.70 0.01 1.22 ind:pas:3s; +replaçaient replacer ver 1.54 7.70 0.00 0.14 ind:imp:3p; +replaçais replacer ver 1.54 7.70 0.00 0.14 ind:imp:1s; +replaçait replacer ver 1.54 7.70 0.02 0.61 ind:imp:3s; +replaçant replacer ver 1.54 7.70 0.00 0.74 par:pre; +replaçons replacer ver 1.54 7.70 0.01 0.14 imp:pre:1p;ind:pre:1p; +replats replat nom m p 0.16 0.61 0.00 0.07 +replet replet adj m s 0.14 1.62 0.03 0.74 +replets replet adj m p 0.14 1.62 0.00 0.14 +repli repli nom m s 1.40 10.14 1.12 5.88 +replia replier ver 6.78 33.18 0.00 3.31 ind:pas:3s; +repliai replier ver 6.78 33.18 0.00 0.14 ind:pas:1s; +repliaient replier ver 6.78 33.18 0.01 0.47 ind:imp:3p; +repliais replier ver 6.78 33.18 0.10 0.14 ind:imp:1s; +repliait replier ver 6.78 33.18 0.12 2.23 ind:imp:3s; +repliant replier ver 6.78 33.18 0.11 0.95 par:pre; +replie replier ver 6.78 33.18 1.42 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repliement repliement nom m s 0.01 0.54 0.01 0.54 +replient replier ver 6.78 33.18 0.28 0.47 ind:pre:3p; +replier replier ver 6.78 33.18 1.56 3.31 inf; +repliera replier ver 6.78 33.18 0.02 0.00 ind:fut:3s; +replierai replier ver 6.78 33.18 0.02 0.00 ind:fut:1s; +replierez replier ver 6.78 33.18 0.00 0.07 ind:fut:2p; +replierons replier ver 6.78 33.18 0.04 0.00 ind:fut:1p; +replieront replier ver 6.78 33.18 0.01 0.00 ind:fut:3p; +replies replier ver 6.78 33.18 0.02 0.14 ind:pre:2s; +repliez replier ver 6.78 33.18 1.81 0.07 imp:pre:2p;ind:pre:2p; +replions replier ver 6.78 33.18 0.13 0.14 imp:pre:1p;ind:pre:1p; +repliât replier ver 6.78 33.18 0.00 0.14 sub:imp:3s; +replis repli nom m p 1.40 10.14 0.28 4.26 +replièrent replier ver 6.78 33.18 0.01 0.34 ind:pas:3p; +replié replier ver m s 6.78 33.18 0.37 7.91 par:pas; +repliée replier ver f s 6.78 33.18 0.23 3.04 par:pas; +repliées replier ver f p 6.78 33.18 0.21 3.65 par:pas; +repliés replier ver m p 6.78 33.18 0.29 4.12 par:pas; +replonge replonger ver 2.14 11.08 0.50 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +replongea replonger ver 2.14 11.08 0.01 1.42 ind:pas:3s; +replongeai replonger ver 2.14 11.08 0.01 0.20 ind:pas:1s; +replongeaient replonger ver 2.14 11.08 0.00 0.07 ind:imp:3p; +replongeais replonger ver 2.14 11.08 0.16 0.68 ind:imp:1s;ind:imp:2s; +replongeait replonger ver 2.14 11.08 0.02 0.81 ind:imp:3s; +replongeant replonger ver 2.14 11.08 0.00 0.68 par:pre; +replongent replonger ver 2.14 11.08 0.02 0.41 ind:pre:3p; +replonger replonger ver 2.14 11.08 0.86 2.97 inf; +replongera replonger ver 2.14 11.08 0.01 0.07 ind:fut:3s; +replongerai replonger ver 2.14 11.08 0.02 0.07 ind:fut:1s; +replongerais replonger ver 2.14 11.08 0.01 0.00 cnd:pre:2s; +replongerait replonger ver 2.14 11.08 0.02 0.20 cnd:pre:3s; +replonges replonger ver 2.14 11.08 0.06 0.20 ind:pre:2s;sub:pre:2s; +replongiez replonger ver 2.14 11.08 0.01 0.00 ind:imp:2p; +replongé replonger ver m s 2.14 11.08 0.42 1.35 par:pas; +replongée replonger ver f s 2.14 11.08 0.00 0.54 par:pas; +replongées replonger ver f p 2.14 11.08 0.00 0.07 par:pas; +replongés replonger ver m p 2.14 11.08 0.00 0.07 par:pas; +replâtra replâtrer ver 0.03 0.81 0.00 0.14 ind:pas:3s; +replâtrage replâtrage nom m s 0.00 0.34 0.00 0.34 +replâtraient replâtrer ver 0.03 0.81 0.00 0.07 ind:imp:3p; +replâtrer replâtrer ver 0.03 0.81 0.01 0.14 inf; +replâtrerait replâtrer ver 0.03 0.81 0.00 0.07 cnd:pre:3s; +replâtré replâtrer ver m s 0.03 0.81 0.00 0.14 par:pas; +replâtrée replâtrer ver f s 0.03 0.81 0.01 0.20 par:pas; +replâtrées replâtrer ver f p 0.03 0.81 0.00 0.07 par:pas; +reployait reployer ver 0.00 0.07 0.00 0.07 ind:imp:3s; +replète replet adj f s 0.14 1.62 0.11 0.68 +replètes replet adj f p 0.14 1.62 0.00 0.07 +report report nom m s 1.03 0.27 0.61 0.14 +reporta reporter ver 5.32 7.70 0.03 0.88 ind:pas:3s; +reportage_vérité reportage_vérité nom m s 0.00 0.14 0.00 0.14 +reportage reportage nom m s 11.16 7.16 10.07 5.07 +reportages reportage nom m p 11.16 7.16 1.09 2.09 +reportait reporter ver 5.32 7.70 0.03 0.81 ind:imp:3s; +reportant reporter ver 5.32 7.70 0.01 0.61 par:pre; +reporte reporter ver 5.32 7.70 0.57 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reportent reporter ver 5.32 7.70 0.09 0.07 ind:pre:3p; +reporter reporter nom m s 5.12 3.04 3.01 1.49 +reportera reporter ver 5.32 7.70 0.04 0.00 ind:fut:3s; +reporterai reporter ver 5.32 7.70 0.02 0.00 ind:fut:1s; +reporterait reporter ver 5.32 7.70 0.01 0.07 cnd:pre:3s; +reporters reporter nom m p 5.12 3.04 2.11 1.55 +reportez reporter ver 5.32 7.70 0.38 0.07 imp:pre:2p;ind:pre:2p; +reportons reporter ver 5.32 7.70 0.07 0.07 imp:pre:1p;ind:pre:1p; +reports report nom m p 1.03 0.27 0.43 0.14 +reportèrent reporter ver 5.32 7.70 0.00 0.14 ind:pas:3p; +reporté reporter ver m s 5.32 7.70 0.90 1.69 par:pas; +reportée reporter ver f s 5.32 7.70 0.74 0.47 par:pas; +reportées reporter ver f p 5.32 7.70 0.03 0.14 par:pas; +reportés reporter ver m p 5.32 7.70 0.05 0.14 par:pas; +repos repos nom m 42.29 43.58 42.29 43.58 +reposa reposer ver 95.19 83.92 0.03 7.16 ind:pas:3s; +reposai reposer ver 95.19 83.92 0.00 0.41 ind:pas:1s; +reposaient reposer ver 95.19 83.92 0.07 5.00 ind:imp:3p; +reposais reposer ver 95.19 83.92 0.58 0.41 ind:imp:1s;ind:imp:2s; +reposait reposer ver 95.19 83.92 1.05 15.41 ind:imp:3s; +reposant reposant adj m s 1.14 3.58 0.84 1.96 +reposante reposant adj f s 1.14 3.58 0.25 1.28 +reposantes reposant adj f p 1.14 3.58 0.04 0.27 +reposants reposant adj m p 1.14 3.58 0.02 0.07 +repose_pied repose_pied nom m s 0.02 0.07 0.01 0.00 +repose_pied repose_pied nom m p 0.02 0.07 0.01 0.07 +repose reposer ver 95.19 83.92 33.27 14.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +reposent reposer ver 95.19 83.92 3.26 4.39 ind:pre:3p; +reposer reposer ver 95.19 83.92 39.81 20.95 inf;; +reposera reposer ver 95.19 83.92 1.06 0.47 ind:fut:3s; +reposerai reposer ver 95.19 83.92 0.24 0.14 ind:fut:1s; +reposeraient reposer ver 95.19 83.92 0.00 0.07 cnd:pre:3p; +reposerais reposer ver 95.19 83.92 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +reposerait reposer ver 95.19 83.92 0.01 0.54 cnd:pre:3s; +reposeras reposer ver 95.19 83.92 0.55 0.27 ind:fut:2s; +reposerez reposer ver 95.19 83.92 0.28 0.00 ind:fut:2p; +reposerions reposer ver 95.19 83.92 0.00 0.07 cnd:pre:1p; +reposerons reposer ver 95.19 83.92 0.37 0.14 ind:fut:1p; +reposeront reposer ver 95.19 83.92 0.18 0.07 ind:fut:3p; +reposes reposer ver 95.19 83.92 2.45 0.34 ind:pre:2s;sub:pre:2s; +reposez reposer ver 95.19 83.92 7.81 0.74 imp:pre:2p;ind:pre:2p; +reposiez reposer ver 95.19 83.92 0.39 0.00 ind:imp:2p; +reposions reposer ver 95.19 83.92 0.05 0.20 ind:imp:1p; +repositionnent repositionner ver 0.20 0.00 0.03 0.00 ind:pre:3p; +repositionner repositionner ver 0.20 0.00 0.17 0.00 inf; +repositionnez repositionner ver 0.20 0.00 0.01 0.00 imp:pre:2p; +reposoir reposoir nom m s 0.17 1.01 0.17 0.81 +reposoirs reposoir nom m p 0.17 1.01 0.00 0.20 +reposons reposer ver 95.19 83.92 1.04 0.27 imp:pre:1p;ind:pre:1p; +reposât reposer ver 95.19 83.92 0.00 0.14 sub:imp:3s; +reposséder reposséder ver 0.03 0.00 0.03 0.00 inf; +repostait reposter ver 0.00 0.07 0.00 0.07 ind:imp:3s; +reposèrent reposer ver 95.19 83.92 0.00 0.41 ind:pas:3p; +reposé reposer ver m s 95.19 83.92 0.76 3.38 par:pas; +reposée reposer ver f s 95.19 83.92 1.16 1.62 par:pas; +reposées reposer ver f p 95.19 83.92 0.03 0.27 par:pas; +reposés reposer ver m p 95.19 83.92 0.29 0.61 par:pas; +repoudraient repoudrer ver 0.43 0.41 0.00 0.07 ind:imp:3p; +repoudrait repoudrer ver 0.43 0.41 0.00 0.14 ind:imp:3s; +repoudrant repoudrer ver 0.43 0.41 0.00 0.14 par:pre; +repoudre repoudrer ver 0.43 0.41 0.04 0.00 imp:pre:2s;ind:pre:1s; +repoudrer repoudrer ver 0.43 0.41 0.37 0.00 inf; +repoudré repoudrer ver m s 0.43 0.41 0.02 0.00 par:pas; +repoudrée repoudrer ver f s 0.43 0.41 0.00 0.07 par:pas; +repoussa repousser ver 22.62 63.45 0.03 11.15 ind:pas:3s; +repoussage repoussage nom m s 0.02 0.00 0.02 0.00 +repoussai repousser ver 22.62 63.45 0.01 1.01 ind:pas:1s; +repoussaient repousser ver 22.62 63.45 0.06 1.49 ind:imp:3p; +repoussais repousser ver 22.62 63.45 0.13 0.74 ind:imp:1s;ind:imp:2s; +repoussait repousser ver 22.62 63.45 0.22 6.22 ind:imp:3s; +repoussant repoussant adj m s 2.29 2.57 1.33 1.22 +repoussante repoussant adj f s 2.29 2.57 0.87 0.81 +repoussantes repoussant adj f p 2.29 2.57 0.03 0.14 +repoussants repoussant adj m p 2.29 2.57 0.07 0.41 +repousse repousser ver 22.62 63.45 6.53 9.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repoussent repousser ver 22.62 63.45 0.59 0.95 ind:pre:3p; +repousser repousser ver 22.62 63.45 6.14 12.03 inf; +repoussera repousser ver 22.62 63.45 0.79 0.07 ind:fut:3s; +repousserai repousser ver 22.62 63.45 0.04 0.07 ind:fut:1s; +repousseraient repousser ver 22.62 63.45 0.01 0.41 cnd:pre:3p; +repousserais repousser ver 22.62 63.45 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +repousserait repousser ver 22.62 63.45 0.17 0.14 cnd:pre:3s; +repousserons repousser ver 22.62 63.45 0.14 0.07 ind:fut:1p; +repousseront repousser ver 22.62 63.45 0.42 0.27 ind:fut:3p; +repousses repousser ver 22.62 63.45 0.51 0.07 ind:pre:2s; +repoussez repousser ver 22.62 63.45 0.96 0.07 imp:pre:2p;ind:pre:2p; +repoussions repousser ver 22.62 63.45 0.03 0.07 ind:imp:1p; +repoussoir repoussoir nom m s 0.01 0.68 0.00 0.47 +repoussoirs repoussoir nom m p 0.01 0.68 0.01 0.20 +repoussâmes repousser ver 22.62 63.45 0.00 0.14 ind:pas:1p; +repoussons repousser ver 22.62 63.45 0.15 0.07 imp:pre:1p;ind:pre:1p; +repoussât repousser ver 22.62 63.45 0.00 0.07 sub:imp:3s; +repoussèrent repousser ver 22.62 63.45 0.05 0.41 ind:pas:3p; +repoussé repousser ver m s 22.62 63.45 3.31 7.36 par:pas; +repoussée repousser ver f s 22.62 63.45 1.01 2.30 par:pas; +repoussées repousser ver f p 22.62 63.45 0.13 0.68 par:pas; +repoussés repousser ver m p 22.62 63.45 0.62 1.42 par:pas; +reprîmes reprendre ver 126.91 340.14 0.00 0.61 ind:pas:1p; +reprît reprendre ver 126.91 340.14 0.00 0.81 sub:imp:3s; +reprenaient reprendre ver 126.91 340.14 0.14 5.88 ind:imp:3p; +reprenais reprendre ver 126.91 340.14 0.40 3.18 ind:imp:1s;ind:imp:2s; +reprenait reprendre ver 126.91 340.14 0.75 27.36 ind:imp:3s; +reprenant reprendre ver 126.91 340.14 0.35 13.92 par:pre; +reprend reprendre ver 126.91 340.14 14.24 31.35 ind:pre:3s; +reprendra reprendre ver 126.91 340.14 4.04 2.03 ind:fut:3s; +reprendrai reprendre ver 126.91 340.14 1.86 1.01 ind:fut:1s; +reprendraient reprendre ver 126.91 340.14 0.32 0.68 cnd:pre:3p; +reprendrais reprendre ver 126.91 340.14 0.67 0.47 cnd:pre:1s;cnd:pre:2s; +reprendrait reprendre ver 126.91 340.14 0.17 2.36 cnd:pre:3s; +reprendras reprendre ver 126.91 340.14 0.49 0.07 ind:fut:2s; +reprendre reprendre ver 126.91 340.14 36.98 67.70 inf; +reprendrez reprendre ver 126.91 340.14 0.72 0.47 ind:fut:2p; +reprendriez reprendre ver 126.91 340.14 0.02 0.07 cnd:pre:2p; +reprendrions reprendre ver 126.91 340.14 0.01 0.14 cnd:pre:1p; +reprendrons reprendre ver 126.91 340.14 1.88 0.88 ind:fut:1p; +reprendront reprendre ver 126.91 340.14 0.89 0.34 ind:fut:3p; +reprends reprendre ver 126.91 340.14 20.08 7.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repreneur repreneur nom m s 0.04 0.07 0.03 0.00 +repreneurs repreneur nom m p 0.04 0.07 0.01 0.07 +reprenez reprendre ver 126.91 340.14 9.97 1.15 imp:pre:2p;ind:pre:2p; +repreniez reprendre ver 126.91 340.14 0.53 0.14 ind:imp:2p; +reprenions reprendre ver 126.91 340.14 0.20 0.68 ind:imp:1p; +reprenne reprendre ver 126.91 340.14 3.42 4.12 sub:pre:1s;sub:pre:3s; +reprennent reprendre ver 126.91 340.14 3.13 5.54 ind:pre:3p; +reprennes reprendre ver 126.91 340.14 0.93 0.27 sub:pre:2s; +reprenons reprendre ver 126.91 340.14 5.59 2.09 imp:pre:1p;ind:pre:1p; +reprirent reprendre ver 126.91 340.14 0.12 6.49 ind:pas:3p; +repris reprendre ver m 126.91 340.14 16.65 51.55 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +reprisaient repriser ver 0.64 4.66 0.00 0.07 ind:imp:3p; +reprisait repriser ver 0.64 4.66 0.01 0.74 ind:imp:3s; +reprisant repriser ver 0.64 4.66 0.01 0.14 par:pre; +reprise reprise nom f s 6.23 36.42 2.27 8.38 +reprisent repriser ver 0.64 4.66 0.01 0.07 ind:pre:3p; +repriser repriser ver 0.64 4.66 0.25 1.76 inf; +reprises reprise nom f p 6.23 36.42 3.96 28.04 +reprisse reprendre ver 126.91 340.14 0.00 0.07 sub:imp:1s; +reprissent reprendre ver 126.91 340.14 0.00 0.14 sub:imp:3p; +reprisé repriser ver m s 0.64 4.66 0.01 0.74 par:pas; +reprisée repriser ver f s 0.64 4.66 0.01 0.20 par:pas; +reprisées repriser ver f p 0.64 4.66 0.00 0.27 par:pas; +reprisés repriser ver m p 0.64 4.66 0.00 0.41 par:pas; +reprit reprendre ver 126.91 340.14 0.52 96.01 ind:pas:3s; +reprocha reprocher ver 19.85 44.73 0.04 2.30 ind:pas:3s; +reprochai reprocher ver 19.85 44.73 0.00 0.61 ind:pas:1s; +reprochaient reprocher ver 19.85 44.73 0.01 1.01 ind:imp:3p; +reprochais reprocher ver 19.85 44.73 0.17 1.69 ind:imp:1s;ind:imp:2s; +reprochait reprocher ver 19.85 44.73 0.54 10.27 ind:imp:3s; +reprochant reprocher ver 19.85 44.73 0.01 1.01 par:pre; +reproche reprocher ver 19.85 44.73 5.05 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +reprochent reprocher ver 19.85 44.73 0.20 0.54 ind:pre:3p; +reprocher reprocher ver 19.85 44.73 7.53 11.76 inf; +reprochera reprocher ver 19.85 44.73 0.48 0.34 ind:fut:3s; +reprocherai reprocher ver 19.85 44.73 0.39 0.00 ind:fut:1s; +reprocherais reprocher ver 19.85 44.73 0.05 0.27 cnd:pre:1s; +reprocherait reprocher ver 19.85 44.73 0.20 0.47 cnd:pre:3s; +reprocheras reprocher ver 19.85 44.73 0.13 0.14 ind:fut:2s; +reprocheriez reprocher ver 19.85 44.73 0.01 0.14 cnd:pre:2p; +reprocherons reprocher ver 19.85 44.73 0.00 0.07 ind:fut:1p; +reprocheront reprocher ver 19.85 44.73 0.03 0.07 ind:fut:3p; +reproches reproche nom m p 6.01 30.68 3.13 13.31 +reprochez reprocher ver 19.85 44.73 1.21 1.08 imp:pre:2p;ind:pre:2p; +reprochiez reprocher ver 19.85 44.73 0.05 0.00 ind:imp:2p; +reprochions reprocher ver 19.85 44.73 0.00 0.34 ind:imp:1p; +reprochons reprocher ver 19.85 44.73 0.10 0.07 ind:pre:1p; +reprochât reprocher ver 19.85 44.73 0.00 0.20 sub:imp:3s; +reprochèrent reprocher ver 19.85 44.73 0.00 0.07 ind:pas:3p; +reproché reprocher ver m s 19.85 44.73 1.26 3.58 par:pas; +reprochée reprocher ver f s 19.85 44.73 0.07 0.20 par:pas; +reprochées reprocher ver f p 19.85 44.73 0.01 0.20 par:pas; +reprochés reprocher ver m p 19.85 44.73 0.24 0.68 par:pas; +reproducteur reproducteur nom m s 0.53 0.27 0.29 0.14 +reproducteurs reproducteur nom m p 0.53 0.27 0.23 0.00 +reproductible reproductible adj m s 0.00 0.07 0.00 0.07 +reproductif reproductif adj m s 0.15 0.20 0.12 0.20 +reproductifs reproductif adj m p 0.15 0.20 0.02 0.00 +reproduction reproduction nom f s 4.24 7.97 4.08 5.34 +reproductions reproduction nom f p 4.24 7.97 0.16 2.64 +reproductive reproductif adj f s 0.15 0.20 0.01 0.00 +reproductrice reproducteur adj f s 0.20 0.27 0.03 0.07 +reproductrices reproductrice nom f p 0.10 0.00 0.10 0.00 +reproduira reproduire ver 16.31 16.01 4.27 0.41 ind:fut:3s; +reproduirai reproduire ver 16.31 16.01 0.05 0.14 ind:fut:1s; +reproduiraient reproduire ver 16.31 16.01 0.00 0.07 cnd:pre:3p; +reproduirait reproduire ver 16.31 16.01 0.23 0.14 cnd:pre:3s; +reproduire reproduire ver 16.31 16.01 4.68 4.73 inf; +reproduirons reproduire ver 16.31 16.01 0.02 0.00 ind:fut:1p; +reproduiront reproduire ver 16.31 16.01 0.20 0.14 ind:fut:3p; +reproduis reproduire ver 16.31 16.01 0.39 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reproduisît reproduire ver 16.31 16.01 0.00 0.14 sub:imp:3s; +reproduisaient reproduire ver 16.31 16.01 0.04 0.34 ind:imp:3p; +reproduisait reproduire ver 16.31 16.01 0.11 1.55 ind:imp:3s; +reproduisant reproduire ver 16.31 16.01 0.13 1.49 par:pre; +reproduise reproduire ver 16.31 16.01 1.70 0.27 sub:pre:1s;sub:pre:3s; +reproduisent reproduire ver 16.31 16.01 1.03 0.95 ind:pre:3p; +reproduisez reproduire ver 16.31 16.01 0.02 0.00 imp:pre:2p; +reproduisirent reproduire ver 16.31 16.01 0.00 0.07 ind:pas:3p; +reproduisit reproduire ver 16.31 16.01 0.01 0.20 ind:pas:3s; +reproduisons reproduire ver 16.31 16.01 0.02 0.07 ind:pre:1p; +reproduit reproduire ver m s 16.31 16.01 2.98 3.11 ind:pre:3s;par:pas; +reproduite reproduire ver f s 16.31 16.01 0.12 0.68 par:pas; +reproduites reproduire ver f p 16.31 16.01 0.15 0.61 par:pas; +reproduits reproduire ver m p 16.31 16.01 0.15 0.61 par:pas; +reprogrammant reprogrammer ver 1.11 0.00 0.01 0.00 par:pre; +reprogramme reprogrammer ver 1.11 0.00 0.14 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reprogramment reprogrammer ver 1.11 0.00 0.03 0.00 ind:pre:3p; +reprogrammer reprogrammer ver 1.11 0.00 0.70 0.00 inf; +reprogrammera reprogrammer ver 1.11 0.00 0.02 0.00 ind:fut:3s; +reprogrammé reprogrammer ver m s 1.11 0.00 0.15 0.00 par:pas; +reprogrammée reprogrammer ver f s 1.11 0.00 0.04 0.00 par:pas; +reprogrammés reprogrammer ver m p 1.11 0.00 0.01 0.00 par:pas; +reprographie reprographie nom f s 0.08 0.07 0.08 0.07 +reproposer reproposer ver 0.01 0.00 0.01 0.00 inf; +représaille représailles nom f s 3.08 4.93 0.01 0.07 +représailles représailles nom f p 3.08 4.93 3.07 4.86 +représenta représenter ver 48.78 85.54 0.16 0.95 ind:pas:3s; +représentai représenter ver 48.78 85.54 0.00 0.27 ind:pas:1s; +représentaient représenter ver 48.78 85.54 0.56 5.47 ind:imp:3p; +représentais représenter ver 48.78 85.54 0.32 1.15 ind:imp:1s;ind:imp:2s; +représentait représenter ver 48.78 85.54 2.57 19.12 ind:imp:3s; +représentant représentant nom m s 10.81 25.88 6.28 12.30 +représentante représentant nom f s 10.81 25.88 0.80 0.41 +représentantes représentant nom f p 10.81 25.88 0.13 0.07 +représentants représentant nom m p 10.81 25.88 3.59 13.11 +représentatif représentatif adj m s 1.06 2.16 0.46 0.61 +représentatifs représentatif adj m p 1.06 2.16 0.09 0.61 +représentation représentation nom f s 8.67 18.99 7.61 16.08 +représentations représentation nom f p 8.67 18.99 1.07 2.91 +représentative représentatif adj f s 1.06 2.16 0.48 0.54 +représentatives représentatif adj f p 1.06 2.16 0.04 0.41 +représente représenter ver 48.78 85.54 23.52 17.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +représentent représenter ver 48.78 85.54 3.63 3.78 ind:pre:3p;sub:pre:3p; +représenter représenter ver 48.78 85.54 5.38 11.08 inf; +représentera représenter ver 48.78 85.54 0.71 0.61 ind:fut:3s; +représenterai représenter ver 48.78 85.54 0.10 0.00 ind:fut:1s; +représenteraient représenter ver 48.78 85.54 0.02 0.07 cnd:pre:3p; +représenterais représenter ver 48.78 85.54 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +représenterait représenter ver 48.78 85.54 0.14 0.41 cnd:pre:3s; +représenteras représenter ver 48.78 85.54 0.05 0.00 ind:fut:2s; +représenterez représenter ver 48.78 85.54 0.06 0.00 ind:fut:2p; +représenteront représenter ver 48.78 85.54 0.11 0.07 ind:fut:3p; +représentes représenter ver 48.78 85.54 1.76 0.34 ind:pre:2s; +représentez représenter ver 48.78 85.54 2.12 0.34 imp:pre:2p;ind:pre:2p; +représentiez représenter ver 48.78 85.54 0.11 0.07 ind:imp:2p; +représentions représenter ver 48.78 85.54 0.04 0.20 ind:imp:1p; +représentons représenter ver 48.78 85.54 1.09 0.47 imp:pre:1p;ind:pre:1p; +représentât représenter ver 48.78 85.54 0.00 0.14 sub:imp:3s; +représentèrent représenter ver 48.78 85.54 0.00 0.07 ind:pas:3p; +représenté représenter ver m s 48.78 85.54 1.58 3.38 par:pas; +représentée représenter ver f s 48.78 85.54 1.42 1.49 par:pas; +représentées représenter ver f p 48.78 85.54 0.18 0.47 par:pas; +représentés représenter ver m p 48.78 85.54 0.81 1.49 par:pas; +reps reps nom m 0.01 1.49 0.01 1.49 +reptation reptation nom f s 0.00 0.88 0.00 0.74 +reptations reptation nom f p 0.00 0.88 0.00 0.14 +repère repère nom m s 3.52 9.59 2.44 5.34 +repèrent repérer ver 27.23 31.15 0.71 0.27 ind:pre:3p; +repères repère nom m p 3.52 9.59 1.09 4.26 +reptile reptile nom m s 3.46 2.36 1.90 1.01 +reptiles reptile nom m p 3.46 2.36 1.56 1.35 +reptilien reptilien adj m s 0.16 0.47 0.07 0.07 +reptilienne reptilien adj f s 0.16 0.47 0.07 0.20 +reptiliennes reptilien adj f p 0.16 0.47 0.01 0.07 +reptiliens reptilien adj m p 0.16 0.47 0.00 0.14 +repu repu adj m s 1.10 3.18 0.54 1.49 +republication republication nom f s 0.01 0.00 0.01 0.00 +republier republier ver 0.01 0.07 0.00 0.07 inf; +republions republier ver 0.01 0.07 0.01 0.00 imp:pre:1p; +repêcha repêcher ver 3.27 4.05 0.00 0.20 ind:pas:3s; +repêchage repêchage nom m s 0.16 0.27 0.15 0.20 +repêchages repêchage nom m p 0.16 0.27 0.01 0.07 +repêchai repêcher ver 3.27 4.05 0.00 0.14 ind:pas:1s; +repêchait repêcher ver 3.27 4.05 0.01 0.34 ind:imp:3s; +repêchant repêcher ver 3.27 4.05 0.01 0.00 par:pre; +repêche repêcher ver 3.27 4.05 0.39 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repêcher repêcher ver 3.27 4.05 0.91 1.08 inf; +repêchera repêcher ver 3.27 4.05 0.11 0.07 ind:fut:3s; +repêcherait repêcher ver 3.27 4.05 0.02 0.07 cnd:pre:3s; +repêches repêcher ver 3.27 4.05 0.00 0.07 ind:pre:2s; +repêchèrent repêcher ver 3.27 4.05 0.00 0.07 ind:pas:3p; +repêché repêcher ver m s 3.27 4.05 1.27 0.81 par:pas; +repêchée repêcher ver f s 3.27 4.05 0.36 0.27 par:pas; +repêchées repêcher ver f p 3.27 4.05 0.00 0.07 par:pas; +repêchés repêcher ver m p 3.27 4.05 0.20 0.07 par:pas; +repue repu adj f s 1.10 3.18 0.17 0.47 +repues repu adj f p 1.10 3.18 0.14 0.27 +repuiser repuiser ver 0.00 0.07 0.00 0.07 inf; +repéra repérer ver 27.23 31.15 0.02 1.35 ind:pas:3s; +repérable repérable adj s 0.21 1.22 0.16 0.95 +repérables repérable adj f p 0.21 1.22 0.05 0.27 +repérage repérage nom m s 1.75 1.15 1.62 0.88 +repérages repérage nom m p 1.75 1.15 0.14 0.27 +repéraient repérer ver 27.23 31.15 0.00 0.20 ind:imp:3p; +repérais repérer ver 27.23 31.15 0.05 0.14 ind:imp:1s; +repérait repérer ver 27.23 31.15 0.08 1.22 ind:imp:3s; +repérant repérer ver 27.23 31.15 0.02 0.47 par:pre; +repérer repérer ver 27.23 31.15 7.92 9.93 inf; +repérera repérer ver 27.23 31.15 0.14 0.00 ind:fut:3s; +repérerai repérer ver 27.23 31.15 0.02 0.00 ind:fut:1s; +repéreraient repérer ver 27.23 31.15 0.01 0.07 cnd:pre:3p; +repérerais repérer ver 27.23 31.15 0.01 0.00 cnd:pre:2s; +repérerait repérer ver 27.23 31.15 0.01 0.07 cnd:pre:3s; +repérerons repérer ver 27.23 31.15 0.01 0.00 ind:fut:1p; +repéreront repérer ver 27.23 31.15 0.07 0.07 ind:fut:3p; +repéreur repéreur nom m s 0.05 0.00 0.05 0.00 +repérez repérer ver 27.23 31.15 0.75 0.00 imp:pre:2p;ind:pre:2p; +repériez repérer ver 27.23 31.15 0.03 0.00 ind:imp:2p; +repérions repérer ver 27.23 31.15 0.00 0.20 ind:imp:1p; +repérèrent repérer ver 27.23 31.15 0.00 0.20 ind:pas:3p; +repéré repérer ver m s 27.23 31.15 9.98 10.27 par:pas; +repérée repérer ver f s 27.23 31.15 1.44 1.49 par:pas; +repérées repérer ver f p 27.23 31.15 0.11 0.34 par:pas; +repérés repérer ver m p 27.23 31.15 3.52 2.30 par:pas; +repus repu adj m p 1.10 3.18 0.25 0.95 +repétrir repétrir ver 0.00 0.20 0.00 0.07 inf; +repétrissait repétrir ver 0.00 0.20 0.00 0.07 ind:imp:3s; +repétrit repétrir ver 0.00 0.20 0.00 0.07 ind:pas:3s; +requalifier requalifier ver 0.01 0.00 0.01 0.00 inf; +requiem requiem nom m s 2.76 0.68 2.76 0.61 +requiems requiem nom m p 2.76 0.68 0.00 0.07 +requiers requérir ver 6.24 6.35 0.76 0.00 ind:pre:1s; +requiert requérir ver 6.24 6.35 2.33 0.95 ind:pre:3s; +requiescat_in_pace requiescat_in_pace nom m s 0.00 0.07 0.00 0.07 +requin_baleine requin_baleine nom m s 0.01 0.00 0.01 0.00 +requin_tigre requin_tigre nom m s 0.04 0.00 0.04 0.00 +requin requin nom m s 12.24 4.80 8.15 1.62 +requinqua requinquer ver 1.30 1.89 0.00 0.20 ind:pas:3s; +requinquait requinquer ver 1.30 1.89 0.00 0.07 ind:imp:3s; +requinque requinquer ver 1.30 1.89 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +requinquent requinquer ver 1.30 1.89 0.01 0.07 ind:pre:3p; +requinquer requinquer ver 1.30 1.89 0.66 0.27 inf; +requinquera requinquer ver 1.30 1.89 0.19 0.00 ind:fut:3s; +requinquerait requinquer ver 1.30 1.89 0.02 0.00 cnd:pre:3s; +requinqué requinquer ver m s 1.30 1.89 0.04 0.81 par:pas; +requinquée requinquer ver f s 1.30 1.89 0.03 0.20 par:pas; +requinqués requinquer ver m p 1.30 1.89 0.14 0.00 par:pas; +requin_marteau requin_marteau nom m p 0.00 0.07 0.00 0.07 +requins requin nom m p 12.24 4.80 4.09 3.18 +requis requérir ver m 6.24 6.35 1.63 2.57 par:pas; +requise requis adj f s 1.17 0.68 0.61 0.20 +requises requis adj f p 1.17 0.68 0.45 0.27 +requière requérir ver 6.24 6.35 0.10 0.00 sub:pre:3s; +requièrent requérir ver 6.24 6.35 0.20 0.41 ind:pre:3p; +requéraient requérir ver 6.24 6.35 0.00 0.14 ind:imp:3p; +requérais requérir ver 6.24 6.35 0.00 0.07 ind:imp:1s; +requérait requérir ver 6.24 6.35 0.03 0.47 ind:imp:3s; +requérant requérir ver 6.24 6.35 0.13 0.20 par:pre; +requérante requérant nom f s 0.16 0.00 0.02 0.00 +requérants requérant nom m p 0.16 0.00 0.01 0.00 +requérir requérir ver 6.24 6.35 0.14 0.41 inf; +requérons requérir ver 6.24 6.35 0.04 0.07 imp:pre:1p;ind:pre:1p; +requête requête nom f s 8.82 1.96 7.75 1.69 +requêtes requête nom f p 8.82 1.96 1.07 0.27 +resalir resalir ver 0.01 0.00 0.01 0.00 inf; +resape resaper ver 0.00 0.34 0.00 0.07 ind:pre:1s; +resapent resaper ver 0.00 0.34 0.00 0.07 ind:pre:3p; +resapée resaper ver f s 0.00 0.34 0.00 0.14 par:pas; +resapés resaper ver m p 0.00 0.34 0.00 0.07 par:pas; +rescaper rescaper ver 0.34 1.82 0.00 0.07 inf; +rescapes rescaper ver 0.34 1.82 0.03 0.00 ind:pre:2s; +rescapé rescapé nom m s 1.70 4.93 0.89 1.69 +rescapée rescapé nom f s 1.70 4.93 0.18 0.47 +rescapées rescapé adj f p 0.12 1.89 0.00 0.27 +rescapés rescapé nom m p 1.70 4.93 0.63 2.70 +rescision rescision nom f s 0.00 0.07 0.00 0.07 +rescousse rescousse nom f s 1.43 3.18 1.43 3.18 +rescrit rescrit nom m s 0.00 0.14 0.00 0.14 +reservir reservir ver 0.04 0.00 0.04 0.00 inf; +reset reset nom m s 0.05 0.00 0.05 0.00 +resocialisation resocialisation nom f s 0.01 0.00 0.01 0.00 +resongeait resonger ver 0.00 0.27 0.00 0.14 ind:imp:3s; +resonger resonger ver 0.00 0.27 0.00 0.14 inf; +respect respect nom m s 54.78 43.85 50.47 42.43 +respecta respecter ver 65.41 33.58 0.01 0.20 ind:pas:3s; +respectabilité respectabilité nom f s 1.22 2.30 1.22 2.30 +respectable respectable adj s 7.03 6.82 5.73 5.20 +respectables respectable adj p 7.03 6.82 1.30 1.62 +respectai respecter ver 65.41 33.58 0.00 0.07 ind:pas:1s; +respectaient respecter ver 65.41 33.58 0.34 1.49 ind:imp:3p; +respectais respecter ver 65.41 33.58 0.75 0.88 ind:imp:1s;ind:imp:2s; +respectait respecter ver 65.41 33.58 1.49 3.45 ind:imp:3s; +respectant respecter ver 65.41 33.58 0.66 1.89 par:pre; +respecte respecter ver 65.41 33.58 21.80 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +respectent respecter ver 65.41 33.58 4.49 1.69 ind:pre:3p; +respecter respecter ver 65.41 33.58 17.54 10.14 inf; +respectera respecter ver 65.41 33.58 0.67 0.41 ind:fut:3s; +respecterai respecter ver 65.41 33.58 0.58 0.00 ind:fut:1s; +respecteraient respecter ver 65.41 33.58 0.01 0.07 cnd:pre:3p; +respecterais respecter ver 65.41 33.58 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +respecterait respecter ver 65.41 33.58 0.14 0.20 cnd:pre:3s; +respecteras respecter ver 65.41 33.58 0.68 0.00 ind:fut:2s; +respecterez respecter ver 65.41 33.58 0.16 0.00 ind:fut:2p; +respecterons respecter ver 65.41 33.58 0.31 0.07 ind:fut:1p; +respecteront respecter ver 65.41 33.58 0.53 0.07 ind:fut:3p; +respectes respecter ver 65.41 33.58 2.68 0.27 ind:pre:2s; +respectez respecter ver 65.41 33.58 3.22 0.95 imp:pre:2p;ind:pre:2p; +respectiez respecter ver 65.41 33.58 0.33 0.07 ind:imp:2p; +respectif respectif adj m s 1.17 7.70 0.02 0.41 +respectifs respectif adj m p 1.17 7.70 0.63 3.92 +respections respecter ver 65.41 33.58 0.06 0.34 ind:imp:1p; +respective respectif adj f s 1.17 7.70 0.03 0.54 +respectivement respectivement adv 0.16 4.26 0.16 4.26 +respectives respectif adj f p 1.17 7.70 0.49 2.84 +respectons respecter ver 65.41 33.58 1.75 0.34 imp:pre:1p;ind:pre:1p; +respectât respecter ver 65.41 33.58 0.00 0.20 sub:imp:3s; +respects respect nom m p 54.78 43.85 4.32 1.42 +respecté respecter ver m s 65.41 33.58 4.79 2.84 par:pas; +respectée respecter ver f s 65.41 33.58 1.10 0.81 par:pas; +respectées respecter ver f p 65.41 33.58 0.68 0.41 par:pas; +respectueuse respectueux adj f s 4.17 8.92 0.52 3.18 +respectueusement respectueusement adv 0.79 3.85 0.79 3.85 +respectueuses respectueux adj f p 4.17 8.92 0.17 0.34 +respectueux respectueux adj m 4.17 8.92 3.47 5.41 +respectés respecté adj m p 3.58 3.45 0.65 0.74 +respir respir nom m s 0.00 0.14 0.00 0.14 +respira respirer ver 76.08 102.43 0.11 8.78 ind:pas:3s; +respirable respirable adj s 0.45 0.88 0.44 0.81 +respirables respirable adj m p 0.45 0.88 0.01 0.07 +respirai respirer ver 76.08 102.43 0.02 1.01 ind:pas:1s; +respiraient respirer ver 76.08 102.43 0.03 1.28 ind:imp:3p; +respirais respirer ver 76.08 102.43 0.86 4.32 ind:imp:1s;ind:imp:2s; +respirait respirer ver 76.08 102.43 2.40 17.43 ind:imp:3s; +respirant respirer ver 76.08 102.43 0.69 7.57 par:pre; +respirateur respirateur nom m s 1.68 0.34 1.64 0.34 +respirateurs respirateur nom m p 1.68 0.34 0.04 0.00 +respiration respiration nom f s 9.56 31.82 9.19 28.65 +respirations respiration nom f p 9.56 31.82 0.38 3.18 +respiratoire respiratoire adj s 3.73 1.49 2.26 0.88 +respiratoires respiratoire adj p 3.73 1.49 1.48 0.61 +respire respirer ver 76.08 102.43 29.20 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +respirent respirer ver 76.08 102.43 1.17 2.09 ind:pre:3p; +respirer respirer ver 76.08 102.43 27.58 33.51 inf; +respirera respirer ver 76.08 102.43 0.11 0.20 ind:fut:3s; +respirerai respirer ver 76.08 102.43 0.08 0.34 ind:fut:1s; +respirerais respirer ver 76.08 102.43 0.04 0.14 cnd:pre:1s; +respirerait respirer ver 76.08 102.43 0.11 0.27 cnd:pre:3s; +respireras respirer ver 76.08 102.43 0.16 0.00 ind:fut:2s; +respirerez respirer ver 76.08 102.43 0.02 0.00 ind:fut:2p; +respirerons respirer ver 76.08 102.43 0.00 0.07 ind:fut:1p; +respireront respirer ver 76.08 102.43 0.05 0.07 ind:fut:3p; +respires respirer ver 76.08 102.43 1.88 0.54 ind:pre:2s; +respirez respirer ver 76.08 102.43 9.23 0.68 imp:pre:2p;ind:pre:2p; +respiriez respirer ver 76.08 102.43 0.11 0.00 ind:imp:2p; +respirions respirer ver 76.08 102.43 0.14 0.34 ind:imp:1p; +respirons respirer ver 76.08 102.43 0.96 1.15 imp:pre:1p;ind:pre:1p; +respirât respirer ver 76.08 102.43 0.00 0.07 sub:imp:3s; +respirèrent respirer ver 76.08 102.43 0.01 0.07 ind:pas:3p; +respiré respirer ver m s 76.08 102.43 1.07 4.12 par:pas; +respirée respirer ver f s 76.08 102.43 0.02 0.41 par:pas; +respirées respirer ver f p 76.08 102.43 0.01 0.07 par:pas; +respirés respirer ver m p 76.08 102.43 0.03 0.14 par:pas; +resplendi resplendir ver m s 2.42 4.66 0.00 0.14 par:pas; +resplendir resplendir ver 2.42 4.66 0.32 0.61 inf; +resplendira resplendir ver 2.42 4.66 0.58 0.00 ind:fut:3s; +resplendiraient resplendir ver 2.42 4.66 0.00 0.07 cnd:pre:3p; +resplendirent resplendir ver 2.42 4.66 0.00 0.07 ind:pas:3p; +resplendis resplendir ver 2.42 4.66 0.11 0.07 ind:pre:1s;ind:pre:2s; +resplendissaient resplendir ver 2.42 4.66 0.00 0.27 ind:imp:3p; +resplendissait resplendir ver 2.42 4.66 0.49 1.49 ind:imp:3s; +resplendissant resplendissant adj m s 1.85 1.89 0.30 0.41 +resplendissante resplendissant adj f s 1.85 1.89 1.12 0.95 +resplendissantes resplendissant adj f p 1.85 1.89 0.07 0.27 +resplendissants resplendissant adj m p 1.85 1.89 0.35 0.27 +resplendisse resplendir ver 2.42 4.66 0.16 0.07 sub:pre:3s; +resplendissement resplendissement nom m s 0.00 0.07 0.00 0.07 +resplendissent resplendir ver 2.42 4.66 0.00 0.27 ind:pre:3p; +resplendissez resplendir ver 2.42 4.66 0.21 0.00 ind:pre:2p; +resplendit resplendir ver 2.42 4.66 0.52 1.22 ind:pre:3s;ind:pas:3s; +responsabilisation responsabilisation nom f s 0.01 0.00 0.01 0.00 +responsabilise responsabiliser ver 0.30 0.07 0.00 0.07 ind:pre:1s; +responsabiliser responsabiliser ver 0.30 0.07 0.30 0.00 inf; +responsabilité responsabilité nom f s 37.46 28.72 26.04 18.11 +responsabilités responsabilité nom f p 37.46 28.72 11.42 10.61 +responsable responsable adj s 46.01 21.82 40.66 17.43 +responsables responsable adj p 46.01 21.82 5.35 4.39 +resquillaient resquiller ver 0.45 0.68 0.00 0.07 ind:imp:3p; +resquillant resquiller ver 0.45 0.68 0.03 0.14 par:pre; +resquille resquiller ver 0.45 0.68 0.23 0.14 ind:pre:1s;ind:pre:3s; +resquiller resquiller ver 0.45 0.68 0.14 0.34 inf; +resquillera resquiller ver 0.45 0.68 0.01 0.00 ind:fut:3s; +resquilles resquiller ver 0.45 0.68 0.01 0.00 ind:pre:2s; +resquilleur resquilleur adj m s 0.10 0.07 0.10 0.07 +resquilleurs resquilleur nom m p 0.24 0.61 0.17 0.41 +resquilleuse resquilleur nom f s 0.24 0.61 0.01 0.00 +resquilleuses resquilleur nom f p 0.24 0.61 0.00 0.07 +resquillé resquiller ver m s 0.45 0.68 0.03 0.00 par:pas; +ressac ressac nom m s 0.14 4.39 0.14 4.32 +ressacs ressac nom m p 0.14 4.39 0.00 0.07 +ressaie ressayer ver 0.17 0.00 0.05 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressaisît ressaisir ver 5.87 7.77 0.00 0.07 sub:imp:3s; +ressaisi ressaisir ver m s 5.87 7.77 0.22 0.81 par:pas; +ressaisie ressaisir ver f s 5.87 7.77 0.06 0.47 par:pas; +ressaisir ressaisir ver 5.87 7.77 1.26 2.57 inf; +ressaisira ressaisir ver 5.87 7.77 0.10 0.14 ind:fut:3s; +ressaisirais ressaisir ver 5.87 7.77 0.01 0.00 cnd:pre:1s; +ressaisis ressaisir ver m p 5.87 7.77 3.06 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +ressaisissaient ressaisir ver 5.87 7.77 0.00 0.07 ind:imp:3p; +ressaisissais ressaisir ver 5.87 7.77 0.01 0.07 ind:imp:1s; +ressaisissait ressaisir ver 5.87 7.77 0.01 0.14 ind:imp:3s; +ressaisissant ressaisir ver 5.87 7.77 0.00 0.20 par:pre; +ressaisisse ressaisir ver 5.87 7.77 0.02 0.34 sub:pre:1s;sub:pre:3s; +ressaisissement ressaisissement nom m s 0.00 0.07 0.00 0.07 +ressaisisses ressaisir ver 5.87 7.77 0.05 0.00 sub:pre:2s; +ressaisissez ressaisir ver 5.87 7.77 0.86 0.20 imp:pre:2p;ind:pre:2p; +ressaisissions ressaisir ver 5.87 7.77 0.00 0.07 ind:imp:1p; +ressaisissons ressaisir ver 5.87 7.77 0.03 0.07 imp:pre:1p; +ressaisit ressaisir ver 5.87 7.77 0.17 1.96 ind:pre:3s;ind:pas:3s; +ressassaient ressasser ver 1.31 5.27 0.00 0.14 ind:imp:3p; +ressassais ressasser ver 1.31 5.27 0.01 0.14 ind:imp:1s;ind:imp:2s; +ressassait ressasser ver 1.31 5.27 0.01 1.28 ind:imp:3s; +ressassant ressasser ver 1.31 5.27 0.05 0.54 par:pre; +ressasse ressasser ver 1.31 5.27 0.27 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressassement ressassement nom m s 0.00 0.47 0.00 0.47 +ressassent ressasser ver 1.31 5.27 0.01 0.20 ind:pre:3p; +ressasser ressasser ver 1.31 5.27 0.77 1.28 inf; +ressasseur ressasseur nom m s 0.00 0.07 0.00 0.07 +ressassez ressasser ver 1.31 5.27 0.00 0.07 ind:pre:2p; +ressassions ressasser ver 1.31 5.27 0.00 0.07 ind:imp:1p; +ressassèrent ressasser ver 1.31 5.27 0.01 0.00 ind:pas:3p; +ressassé ressasser ver m s 1.31 5.27 0.16 0.41 par:pas; +ressassée ressasser ver f s 1.31 5.27 0.00 0.14 par:pas; +ressassées ressasser ver f p 1.31 5.27 0.01 0.14 par:pas; +ressassés ressasser ver m p 1.31 5.27 0.02 0.54 par:pas; +ressaut ressaut nom m s 0.01 1.15 0.01 0.74 +ressauter ressauter ver 0.09 0.00 0.07 0.00 inf; +ressauts ressaut nom m p 0.01 1.15 0.00 0.41 +ressauté ressauter ver m s 0.09 0.00 0.01 0.00 par:pas; +ressayer ressayer ver 0.17 0.00 0.12 0.00 inf; +ressembla ressembler ver 148.60 157.50 0.00 1.01 ind:pas:3s; +ressemblaient ressembler ver 148.60 157.50 2.17 15.54 ind:imp:3p; +ressemblais ressembler ver 148.60 157.50 2.23 1.15 ind:imp:1s;ind:imp:2s; +ressemblait ressembler ver 148.60 157.50 13.41 54.26 ind:imp:3s; +ressemblance ressemblance nom f s 5.02 10.54 4.46 9.26 +ressemblances ressemblance nom f p 5.02 10.54 0.56 1.28 +ressemblant ressemblant adj m s 2.07 2.77 1.57 1.49 +ressemblante ressemblant adj f s 2.07 2.77 0.29 0.61 +ressemblantes ressemblant adj f p 2.07 2.77 0.14 0.20 +ressemblants ressemblant adj m p 2.07 2.77 0.06 0.47 +ressemblassent ressembler ver 148.60 157.50 0.00 0.14 sub:imp:3p; +ressemble ressembler ver 148.60 157.50 83.47 40.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +ressemblent ressembler ver 148.60 157.50 11.21 13.18 ind:pre:3p; +ressembler ressembler ver 148.60 157.50 11.44 18.72 inf; +ressemblera ressembler ver 148.60 157.50 1.14 0.68 ind:fut:3s; +ressemblerai ressembler ver 148.60 157.50 0.09 0.14 ind:fut:1s; +ressembleraient ressembler ver 148.60 157.50 0.05 0.27 cnd:pre:3p; +ressemblerais ressembler ver 148.60 157.50 0.53 0.00 cnd:pre:1s;cnd:pre:2s; +ressemblerait ressembler ver 148.60 157.50 1.12 2.16 cnd:pre:3s; +ressembleras ressembler ver 148.60 157.50 0.21 0.07 ind:fut:2s; +ressemblerez ressembler ver 148.60 157.50 0.05 0.07 ind:fut:2p; +ressembleront ressembler ver 148.60 157.50 0.28 0.14 ind:fut:3p; +ressembles ressembler ver 148.60 157.50 11.93 1.01 ind:pre:2s;sub:pre:2s; +ressemblez ressembler ver 148.60 157.50 6.92 1.35 imp:pre:2p;ind:pre:2p; +ressembliez ressembler ver 148.60 157.50 0.26 0.14 ind:imp:2p; +ressemblions ressembler ver 148.60 157.50 0.03 0.61 ind:imp:1p; +ressemblons ressembler ver 148.60 157.50 0.89 0.74 ind:pre:1p; +ressemblât ressembler ver 148.60 157.50 0.01 1.28 sub:imp:3s; +ressemblèrent ressembler ver 148.60 157.50 0.00 0.20 ind:pas:3p; +ressemblé ressembler ver m s 148.60 157.50 0.17 1.49 par:pas; +ressemelage ressemelage nom m s 0.00 0.41 0.00 0.27 +ressemelages ressemelage nom m p 0.00 0.41 0.00 0.14 +ressemelait ressemeler ver 0.02 0.34 0.00 0.07 ind:imp:3s; +ressemeler ressemeler ver 0.02 0.34 0.02 0.14 inf; +ressemellent ressemeler ver 0.02 0.34 0.00 0.07 ind:pre:3p; +ressemelée ressemeler ver f s 0.02 0.34 0.00 0.07 par:pas; +ressemer ressemer ver 0.01 0.00 0.01 0.00 inf; +ressens ressentir ver 78.78 70.14 27.91 5.68 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressent ressentir ver 78.78 70.14 10.23 7.23 ind:pre:3s; +ressentîmes ressentir ver 78.78 70.14 0.00 0.07 ind:pas:1p; +ressentît ressentir ver 78.78 70.14 0.00 0.34 sub:imp:3s; +ressentaient ressentir ver 78.78 70.14 0.12 1.28 ind:imp:3p; +ressentais ressentir ver 78.78 70.14 2.72 5.81 ind:imp:1s;ind:imp:2s; +ressentait ressentir ver 78.78 70.14 1.66 12.77 ind:imp:3s; +ressentant ressentir ver 78.78 70.14 0.08 0.61 par:pre; +ressente ressentir ver 78.78 70.14 0.72 0.47 sub:pre:1s;sub:pre:3s; +ressentent ressentir ver 78.78 70.14 2.49 1.28 ind:pre:3p; +ressentes ressentir ver 78.78 70.14 0.41 0.00 sub:pre:2s; +ressentez ressentir ver 78.78 70.14 6.70 0.27 imp:pre:2p;ind:pre:2p; +ressenti ressentir ver m s 78.78 70.14 11.36 10.68 par:pas; +ressentie ressentir ver f s 78.78 70.14 0.60 2.64 par:pas; +ressenties ressentir ver f p 78.78 70.14 0.07 0.34 par:pas; +ressentiez ressentir ver 78.78 70.14 0.50 0.00 ind:imp:2p; +ressentiment ressentiment nom m s 1.83 5.00 1.56 4.59 +ressentiments ressentiment nom m p 1.83 5.00 0.27 0.41 +ressentions ressentir ver 78.78 70.14 0.04 0.34 ind:imp:1p; +ressentir ressentir ver 78.78 70.14 9.76 10.54 inf; +ressentira ressentir ver 78.78 70.14 0.26 0.00 ind:fut:3s; +ressentirai ressentir ver 78.78 70.14 0.11 0.00 ind:fut:1s; +ressentirais ressentir ver 78.78 70.14 0.42 0.14 cnd:pre:1s;cnd:pre:2s; +ressentirait ressentir ver 78.78 70.14 0.16 0.14 cnd:pre:3s; +ressentiras ressentir ver 78.78 70.14 0.06 0.07 ind:fut:2s; +ressentirent ressentir ver 78.78 70.14 0.00 0.27 ind:pas:3p; +ressentirez ressentir ver 78.78 70.14 0.16 0.00 ind:fut:2p; +ressentiriez ressentir ver 78.78 70.14 0.17 0.00 cnd:pre:2p; +ressentirions ressentir ver 78.78 70.14 0.01 0.00 cnd:pre:1p; +ressentiront ressentir ver 78.78 70.14 0.04 0.07 ind:fut:3p; +ressentis ressentir ver m p 78.78 70.14 0.66 3.24 ind:pas:1s;par:pas; +ressentit ressentir ver 78.78 70.14 0.45 5.74 ind:pas:3s; +ressentons ressentir ver 78.78 70.14 0.90 0.14 imp:pre:1p;ind:pre:1p; +resserra resserrer ver 3.74 11.08 0.00 1.01 ind:pas:3s; +resserrage resserrage nom m s 0.10 0.00 0.10 0.00 +resserraient resserrer ver 3.74 11.08 0.02 0.34 ind:imp:3p; +resserrait resserrer ver 3.74 11.08 0.02 1.82 ind:imp:3s; +resserrant resserrer ver 3.74 11.08 0.00 0.61 par:pre; +resserre resserrer ver 3.74 11.08 1.15 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +resserrement resserrement nom m s 0.00 1.15 0.00 1.15 +resserrent resserrer ver 3.74 11.08 0.35 0.95 ind:pre:3p; +resserrer resserrer ver 3.74 11.08 1.19 2.23 inf; +resserrera resserrer ver 3.74 11.08 0.04 0.07 ind:fut:3s; +resserrerai resserrer ver 3.74 11.08 0.01 0.14 ind:fut:1s; +resserrerait resserrer ver 3.74 11.08 0.02 0.07 cnd:pre:3s; +resserres resserrer ver 3.74 11.08 0.02 0.00 ind:pre:2s; +resserrez resserrer ver 3.74 11.08 0.45 0.00 imp:pre:2p;ind:pre:2p; +resserrions resserrer ver 3.74 11.08 0.00 0.07 ind:imp:1p; +resserrons resserrer ver 3.74 11.08 0.02 0.07 imp:pre:1p;ind:pre:1p; +resserrèrent resserrer ver 3.74 11.08 0.00 0.20 ind:pas:3p; +resserré resserrer ver m s 3.74 11.08 0.42 0.95 par:pas; +resserrée resserrer ver f s 3.74 11.08 0.01 0.34 par:pas; +resserrées resserrer ver f p 3.74 11.08 0.01 0.41 par:pas; +resserrés resserré adj m p 0.06 1.69 0.04 0.54 +ressers resservir ver 2.25 3.04 1.13 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressert resservir ver 2.25 3.04 0.07 0.27 ind:pre:3s; +resservais resservir ver 2.25 3.04 0.01 0.00 ind:imp:2s; +resservait resservir ver 2.25 3.04 0.01 0.47 ind:imp:3s; +resservez resservir ver 2.25 3.04 0.17 0.00 imp:pre:2p;ind:pre:2p; +resservi resservir ver m s 2.25 3.04 0.06 0.68 par:pas; +resservir resservir ver 2.25 3.04 0.58 0.81 inf; +resservirai resservir ver 2.25 3.04 0.02 0.00 ind:fut:1s; +resservirais resservir ver 2.25 3.04 0.10 0.00 cnd:pre:1s; +resservirait resservir ver 2.25 3.04 0.00 0.14 cnd:pre:3s; +resservis resservir ver m p 2.25 3.04 0.10 0.07 par:pas; +resservit resservir ver 2.25 3.04 0.00 0.34 ind:pas:3s; +ressors ressortir ver 15.23 31.69 1.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressort ressort nom m s 6.95 20.54 5.69 13.65 +ressortîmes ressortir ver 15.23 31.69 0.00 0.14 ind:pas:1p; +ressortaient ressortir ver 15.23 31.69 0.05 1.35 ind:imp:3p; +ressortais ressortir ver 15.23 31.69 0.04 0.20 ind:imp:1s;ind:imp:2s; +ressortait ressortir ver 15.23 31.69 0.12 4.19 ind:imp:3s; +ressortant ressortir ver 15.23 31.69 0.08 0.95 par:pre; +ressorte ressortir ver 15.23 31.69 0.41 0.20 sub:pre:1s;sub:pre:3s; +ressortent ressortir ver 15.23 31.69 0.79 1.22 ind:pre:3p; +ressortes ressortir ver 15.23 31.69 0.03 0.00 sub:pre:2s; +ressortez ressortir ver 15.23 31.69 0.22 0.20 imp:pre:2p;ind:pre:2p; +ressorti ressortir ver m s 15.23 31.69 1.91 2.84 par:pas; +ressortie ressortir ver f s 15.23 31.69 1.27 1.22 par:pas; +ressorties ressortir ver f p 15.23 31.69 0.04 0.14 par:pas; +ressortions ressortir ver 15.23 31.69 0.02 0.20 ind:imp:1p; +ressortir ressortir ver 15.23 31.69 4.64 7.91 inf; +ressortira ressortir ver 15.23 31.69 0.26 0.41 ind:fut:3s; +ressortirai ressortir ver 15.23 31.69 0.37 0.00 ind:fut:1s; +ressortiraient ressortir ver 15.23 31.69 0.00 0.07 cnd:pre:3p; +ressortirais ressortir ver 15.23 31.69 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +ressortirait ressortir ver 15.23 31.69 0.09 0.14 cnd:pre:3s; +ressortiras ressortir ver 15.23 31.69 0.17 0.14 ind:fut:2s; +ressortirent ressortir ver 15.23 31.69 0.01 0.54 ind:pas:3p; +ressortirez ressortir ver 15.23 31.69 0.03 0.00 ind:fut:2p; +ressortiront ressortir ver 15.23 31.69 0.05 0.07 ind:fut:3p; +ressortis ressortir ver m p 15.23 31.69 0.43 1.01 ind:pas:1s;par:pas; +ressortissant ressortissant nom m s 0.46 1.49 0.11 0.47 +ressortissante ressortissant nom f s 0.46 1.49 0.01 0.14 +ressortissants ressortissant nom m p 0.46 1.49 0.34 0.88 +ressortit ressortir ver 15.23 31.69 0.26 4.05 ind:pas:3s; +ressortons ressortir ver 15.23 31.69 0.04 0.00 imp:pre:1p;ind:pre:1p; +ressorts ressort nom m p 6.95 20.54 1.27 6.89 +ressoudant ressouder ver 0.39 1.01 0.00 0.07 par:pre; +ressoude ressouder ver 0.39 1.01 0.01 0.07 ind:pre:3s; +ressouder ressouder ver 0.39 1.01 0.20 0.41 inf; +ressoudé ressouder ver m s 0.39 1.01 0.01 0.27 par:pas; +ressoudée ressouder ver f s 0.39 1.01 0.12 0.14 par:pas; +ressoudés ressouder ver m p 0.39 1.01 0.04 0.07 par:pas; +ressource ressource nom f s 8.81 22.50 1.13 5.95 +ressourcement ressourcement nom m s 0.01 0.07 0.01 0.07 +ressourcer ressourcer ver 0.40 0.47 0.40 0.27 ind:pre:2p;inf; +ressources ressource nom f p 8.81 22.50 7.68 16.55 +ressourcé ressourcer ver m s 0.40 0.47 0.00 0.07 par:pas; +ressourçais ressourcer ver 0.40 0.47 0.00 0.07 ind:imp:1s; +ressourçait ressourcer ver 0.40 0.47 0.00 0.07 ind:imp:3s; +ressouvenait ressouvenir ver 0.68 0.88 0.00 0.14 ind:imp:3s; +ressouvenant ressouvenir ver 0.68 0.88 0.00 0.07 par:pre; +ressouvenir ressouvenir ver 0.68 0.88 0.68 0.47 inf; +ressouvenue ressouvenir ver f s 0.68 0.88 0.00 0.07 par:pas; +ressouviens ressouvenir ver 0.68 0.88 0.00 0.07 ind:pre:1s; +ressouvint ressouvenir ver 0.68 0.88 0.00 0.07 ind:pas:3s; +ressui ressui nom m s 0.00 0.07 0.00 0.07 +ressuiement ressuiement nom m s 0.00 0.07 0.00 0.07 +ressurgi ressurgir ver m s 0.70 1.55 0.04 0.34 par:pas; +ressurgie ressurgir ver f s 0.70 1.55 0.00 0.14 par:pas; +ressurgir ressurgir ver 0.70 1.55 0.36 0.41 inf; +ressurgirait ressurgir ver 0.70 1.55 0.00 0.07 cnd:pre:3s; +ressurgirent ressurgir ver 0.70 1.55 0.00 0.07 ind:pas:3p; +ressurgiront ressurgir ver 0.70 1.55 0.02 0.00 ind:fut:3p; +ressurgissait ressurgir ver 0.70 1.55 0.01 0.14 ind:imp:3s; +ressurgissant ressurgir ver 0.70 1.55 0.00 0.20 par:pre; +ressurgissent ressurgir ver 0.70 1.55 0.09 0.00 ind:pre:3p; +ressurgit ressurgir ver 0.70 1.55 0.18 0.20 ind:pre:3s; +ressuscita ressusciter ver 11.44 17.91 0.06 0.27 ind:pas:3s; +ressuscitai ressusciter ver 11.44 17.91 0.00 0.14 ind:pas:1s; +ressuscitaient ressusciter ver 11.44 17.91 0.02 0.95 ind:imp:3p; +ressuscitais ressusciter ver 11.44 17.91 0.01 0.20 ind:imp:1s; +ressuscitait ressusciter ver 11.44 17.91 0.11 1.35 ind:imp:3s; +ressuscitant ressusciter ver 11.44 17.91 0.03 0.68 par:pre; +ressuscite ressusciter ver 11.44 17.91 0.82 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressuscitent ressusciter ver 11.44 17.91 0.51 1.08 ind:pre:3p; +ressusciter ressusciter ver 11.44 17.91 2.94 4.80 inf; +ressuscitera ressusciter ver 11.44 17.91 1.03 0.27 ind:fut:3s; +ressusciterai ressusciter ver 11.44 17.91 0.11 0.07 ind:fut:1s; +ressusciteraient ressusciter ver 11.44 17.91 0.01 0.20 cnd:pre:3p; +ressusciterait ressusciter ver 11.44 17.91 0.29 0.47 cnd:pre:3s; +ressusciteras ressusciter ver 11.44 17.91 0.00 0.07 ind:fut:2s; +ressusciterez ressusciter ver 11.44 17.91 0.01 0.07 ind:fut:2p; +ressusciterons ressusciter ver 11.44 17.91 0.27 0.14 ind:fut:1p; +ressusciteront ressusciter ver 11.44 17.91 0.06 0.14 ind:fut:3p; +ressuscites ressusciter ver 11.44 17.91 0.22 0.07 ind:pre:2s; +ressuscitez ressusciter ver 11.44 17.91 0.27 0.00 imp:pre:2p;ind:pre:2p; +ressuscitons ressusciter ver 11.44 17.91 0.01 0.00 imp:pre:1p; +ressuscitât ressusciter ver 11.44 17.91 0.00 0.07 sub:imp:3s; +ressuscité ressusciter ver m s 11.44 17.91 3.86 3.72 par:pas; +ressuscitée ressusciter ver f s 11.44 17.91 0.56 0.81 par:pas; +ressuscitées ressusciter ver f p 11.44 17.91 0.01 0.20 par:pas; +ressuscités ressusciter ver m p 11.44 17.91 0.23 0.74 par:pas; +ressué ressuer ver m s 0.00 0.07 0.00 0.07 par:pas; +ressuyé ressuyer ver m s 0.00 0.34 0.00 0.20 par:pas; +ressuyée ressuyer ver f s 0.00 0.34 0.00 0.14 par:pas; +resta rester ver 1003.57 793.78 3.53 52.70 ind:pas:3s; +restai rester ver 1003.57 793.78 1.27 13.92 ind:pas:1s; +restaient rester ver 1003.57 793.78 2.81 32.23 ind:imp:3p; +restais rester ver 1003.57 793.78 4.84 13.58 ind:imp:1s;ind:imp:2s; +restait rester ver 1003.57 793.78 18.34 152.64 ind:imp:3s; +restant restant nom m s 5.74 5.68 5.54 5.41 +restante restant adj f s 2.42 3.24 0.83 1.35 +restantes restant adj f p 2.42 3.24 0.28 0.47 +restants restant adj m p 2.42 3.24 0.81 0.14 +restassent rester ver 1003.57 793.78 0.00 0.27 sub:imp:3p; +restau restau nom m s 3.65 2.50 3.31 2.09 +restaura restaurer ver 6.31 9.26 0.00 0.07 ind:pas:3s; +restaurait restaurer ver 6.31 9.26 0.04 0.34 ind:imp:3s; +restaurant restaurant nom m s 50.04 48.99 44.29 38.85 +restaurants restaurant nom m p 50.04 48.99 5.75 10.14 +restaurateur restaurateur nom m s 1.25 2.57 1.09 1.62 +restaurateurs restaurateur nom m p 1.25 2.57 0.09 0.61 +restauration restauration nom f s 2.96 5.27 2.90 5.07 +restaurations restauration nom f p 2.96 5.27 0.06 0.20 +restauratrice restaurateur nom f s 1.25 2.57 0.07 0.34 +restaure restaurer ver 6.31 9.26 1.24 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +restaurent restaurer ver 6.31 9.26 0.23 0.14 ind:pre:3p; +restaurer restaurer ver 6.31 9.26 2.20 4.32 inf;; +restaurera restaurer ver 6.31 9.26 0.01 0.00 ind:fut:3s; +restaurerai restaurer ver 6.31 9.26 0.01 0.00 ind:fut:1s; +restaureraient restaurer ver 6.31 9.26 0.00 0.07 cnd:pre:3p; +restaurerait restaurer ver 6.31 9.26 0.01 0.07 cnd:pre:3s; +restaurez restaurer ver 6.31 9.26 0.22 0.00 imp:pre:2p;ind:pre:2p; +restaurons restaurer ver 6.31 9.26 0.03 0.00 imp:pre:1p; +restauroute restauroute nom m s 0.00 0.41 0.00 0.41 +restauré restaurer ver m s 6.31 9.26 0.93 1.49 par:pas; +restaurée restaurer ver f s 6.31 9.26 0.49 0.81 par:pas; +restaurées restaurer ver f p 6.31 9.26 0.14 0.47 par:pas; +restaurés restaurer ver m p 6.31 9.26 0.05 0.14 par:pas; +restaus restau nom m p 3.65 2.50 0.34 0.41 +reste rester ver 1003.57 793.78 320.44 153.99 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +restent rester ver 1003.57 793.78 21.75 25.20 ind:pre:3p; +rester rester ver 1003.57 793.78 310.37 123.78 inf;;inf;;inf;; +restera rester ver 1003.57 793.78 25.73 15.68 ind:fut:3s; +resterai rester ver 1003.57 793.78 11.80 3.85 ind:fut:1s; +resteraient rester ver 1003.57 793.78 0.43 3.04 cnd:pre:3p; +resterais rester ver 1003.57 793.78 4.68 2.50 cnd:pre:1s;cnd:pre:2s; +resterait rester ver 1003.57 793.78 5.30 12.09 cnd:pre:3s; +resteras rester ver 1003.57 793.78 6.32 1.82 ind:fut:2s; +resterez rester ver 1003.57 793.78 5.75 1.35 ind:fut:2p; +resteriez rester ver 1003.57 793.78 1.00 0.20 cnd:pre:2p; +resterions rester ver 1003.57 793.78 0.05 0.61 cnd:pre:1p; +resterons rester ver 1003.57 793.78 3.63 1.49 ind:fut:1p; +resteront rester ver 1003.57 793.78 3.98 2.23 ind:fut:3p; +restes rester ver 1003.57 793.78 44.15 6.28 ind:pre:2s;sub:pre:2s; +restez rester ver 1003.57 793.78 105.52 10.81 imp:pre:2p;ind:pre:2p; +restiez rester ver 1003.57 793.78 4.42 1.01 ind:imp:2p; +restions rester ver 1003.57 793.78 0.94 4.86 ind:imp:1p; +restituaient restituer ver 2.44 9.39 0.00 0.14 ind:imp:3p; +restituait restituer ver 2.44 9.39 0.00 1.49 ind:imp:3s; +restituant restituer ver 2.44 9.39 0.00 0.61 par:pre; +restitue restituer ver 2.44 9.39 0.43 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +restituent restituer ver 2.44 9.39 0.02 0.27 ind:pre:3p; +restituer restituer ver 2.44 9.39 1.10 2.84 inf; +restituera restituer ver 2.44 9.39 0.02 0.14 ind:fut:3s; +restituerai restituer ver 2.44 9.39 0.03 0.00 ind:fut:1s; +restituerait restituer ver 2.44 9.39 0.00 0.20 cnd:pre:3s; +restituerons restituer ver 2.44 9.39 0.14 0.07 ind:fut:1p; +restituez restituer ver 2.44 9.39 0.04 0.00 imp:pre:2p; +restituiez restituer ver 2.44 9.39 0.00 0.07 ind:imp:2p; +restitution restitution nom f s 0.28 0.88 0.28 0.88 +restitué restituer ver m s 2.44 9.39 0.38 0.81 par:pas; +restituée restituer ver f s 2.44 9.39 0.20 0.61 par:pas; +restituées restituer ver f p 2.44 9.39 0.04 0.27 par:pas; +restitués restituer ver m p 2.44 9.39 0.03 0.34 par:pas; +resto resto nom m s 10.47 1.62 9.36 1.42 +restâmes rester ver 1003.57 793.78 0.04 3.04 ind:pas:1p; +restons rester ver 1003.57 793.78 16.36 6.82 imp:pre:1p;ind:pre:1p; +restoroute restoroute nom m s 0.16 0.14 0.16 0.14 +restos resto nom m p 10.47 1.62 1.10 0.20 +restât rester ver 1003.57 793.78 0.03 4.19 sub:imp:3s; +restreignait restreindre ver 1.14 2.30 0.00 0.07 ind:imp:3s; +restreignant restreindre ver 1.14 2.30 0.02 0.07 par:pre; +restreignent restreindre ver 1.14 2.30 0.00 0.07 ind:pre:3p; +restreignez restreindre ver 1.14 2.30 0.01 0.00 ind:pre:2p; +restreignit restreindre ver 1.14 2.30 0.00 0.07 ind:pas:3s; +restreindre restreindre ver 1.14 2.30 0.30 0.41 inf; +restreins restreindre ver 1.14 2.30 0.04 0.00 imp:pre:2s;ind:pre:1s; +restreint restreindre ver m s 1.14 2.30 0.58 0.68 ind:pre:3s;par:pas; +restreinte restreint adj f s 0.54 5.41 0.20 1.42 +restreintes restreint adj f p 0.54 5.41 0.03 0.34 +restreints restreint adj m p 0.54 5.41 0.01 0.74 +restrictif restrictif adj m s 0.80 0.20 0.20 0.07 +restriction restriction nom f s 1.94 6.69 1.07 2.36 +restrictions restriction nom f p 1.94 6.69 0.88 4.32 +restrictive restrictif adj f s 0.80 0.20 0.58 0.07 +restrictives restrictif adj f p 0.80 0.20 0.02 0.07 +restructurant restructurer ver 0.94 0.07 0.01 0.00 par:pre; +restructuration restructuration nom f s 0.91 0.34 0.91 0.20 +restructurations restructuration nom f p 0.91 0.34 0.00 0.07 +restructurer restructurer ver 0.94 0.07 0.45 0.00 inf; +restructureront restructurer ver 0.94 0.07 0.01 0.00 ind:fut:3p; +restructurons restructurer ver 0.94 0.07 0.00 0.07 ind:pre:1p; +restructuré restructurer ver m s 0.94 0.07 0.34 0.00 par:pas; +restructurée restructurer ver f s 0.94 0.07 0.13 0.00 par:pas; +restèrent rester ver 1003.57 793.78 0.45 14.19 ind:pas:3p; +resté rester ver m s 1003.57 793.78 43.45 62.09 par:pas; +restée rester ver f s 1003.57 793.78 19.08 31.08 ind:imp:3p;par:pas; +restées rester ver f p 1003.57 793.78 1.62 6.01 par:pas; +restés rester ver m p 1003.57 793.78 10.74 21.08 par:pas; +resucée resucée nom f s 0.03 0.14 0.03 0.14 +resurgît resurgir ver 0.85 3.92 0.00 0.07 sub:imp:3s; +resurgi resurgir ver m s 0.85 3.92 0.04 0.20 par:pas; +resurgies resurgir ver f p 0.85 3.92 0.00 0.14 par:pas; +resurgir resurgir ver 0.85 3.92 0.39 1.42 inf; +resurgira resurgir ver 0.85 3.92 0.05 0.07 ind:fut:3s; +resurgirai resurgir ver 0.85 3.92 0.01 0.00 ind:fut:1s; +resurgirait resurgir ver 0.85 3.92 0.01 0.07 cnd:pre:3s; +resurgirent resurgir ver 0.85 3.92 0.00 0.07 ind:pas:3p; +resurgiront resurgir ver 0.85 3.92 0.00 0.07 ind:fut:3p; +resurgis resurgir ver m p 0.85 3.92 0.00 0.07 par:pas; +resurgissaient resurgir ver 0.85 3.92 0.00 0.20 ind:imp:3p; +resurgissait resurgir ver 0.85 3.92 0.01 0.41 ind:imp:3s; +resurgissant resurgir ver 0.85 3.92 0.01 0.14 par:pre; +resurgisse resurgir ver 0.85 3.92 0.03 0.07 sub:pre:3s; +resurgissent resurgir ver 0.85 3.92 0.02 0.34 ind:pre:3p; +resurgit resurgir ver 0.85 3.92 0.28 0.61 ind:pre:3s;ind:pas:3s; +retînmes retenir ver 71.58 143.92 0.00 0.14 ind:pas:1p; +retînt retenir ver 71.58 143.92 0.00 0.34 sub:imp:3s; +retable retable nom m s 0.34 1.15 0.24 0.81 +retables retable nom m p 0.34 1.15 0.10 0.34 +retaillaient retailler ver 0.05 1.01 0.00 0.07 ind:imp:3p; +retaillait retailler ver 0.05 1.01 0.00 0.07 ind:imp:3s; +retaille retailler ver 0.05 1.01 0.00 0.14 ind:pre:1s;ind:pre:3s; +retailler retailler ver 0.05 1.01 0.02 0.27 inf; +retaillé retailler ver m s 0.05 1.01 0.01 0.27 par:pas; +retaillée retailler ver f s 0.05 1.01 0.00 0.07 par:pas; +retaillées retailler ver f p 0.05 1.01 0.01 0.07 par:pas; +retaillés retailler ver m p 0.05 1.01 0.00 0.07 par:pas; +retapa retaper ver 3.50 4.05 0.00 0.14 ind:pas:3s; +retapaient retaper ver 3.50 4.05 0.00 0.07 ind:imp:3p; +retapait retaper ver 3.50 4.05 0.01 0.14 ind:imp:3s; +retapant retaper ver 3.50 4.05 0.00 0.14 par:pre; +retape retaper ver 3.50 4.05 0.36 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retapent retaper ver 3.50 4.05 0.01 0.07 ind:pre:3p; +retaper retaper ver 3.50 4.05 1.60 1.28 inf; +retaperait retaper ver 3.50 4.05 0.00 0.07 cnd:pre:3s; +retapeur retapeur nom m s 0.01 0.00 0.01 0.00 +retapez retaper ver 3.50 4.05 0.08 0.00 imp:pre:2p;ind:pre:2p; +retapissant retapisser ver 0.32 3.31 0.00 0.07 par:pre; +retapisse retapisser ver 0.32 3.31 0.25 0.95 ind:pre:1s;ind:pre:3s; +retapissent retapisser ver 0.32 3.31 0.00 0.27 ind:pre:3p; +retapisser retapisser ver 0.32 3.31 0.05 0.88 inf; +retapisserait retapisser ver 0.32 3.31 0.00 0.07 cnd:pre:3s; +retapisses retapisser ver 0.32 3.31 0.00 0.07 ind:pre:2s; +retapissé retapisser ver m s 0.32 3.31 0.03 0.61 par:pas; +retapissée retapisser ver f s 0.32 3.31 0.00 0.34 par:pas; +retapissées retapisser ver f p 0.32 3.31 0.00 0.07 par:pas; +retapé retaper ver m s 3.50 4.05 1.14 1.01 par:pas; +retapée retaper ver f s 3.50 4.05 0.28 0.47 par:pas; +retapées retaper ver f p 3.50 4.05 0.00 0.14 par:pas; +retapés retaper ver m p 3.50 4.05 0.01 0.07 par:pas; +retard retard nom m s 126.45 46.62 125.65 43.45 +retarda retarder ver 11.89 14.53 0.00 0.47 ind:pas:3s; +retardaient retarder ver 11.89 14.53 0.01 0.54 ind:imp:3p; +retardais retarder ver 11.89 14.53 0.17 0.27 ind:imp:1s;ind:imp:2s; +retardait retarder ver 11.89 14.53 0.21 1.08 ind:imp:3s; +retardant retarder ver 11.89 14.53 0.03 0.88 par:pre; +retardataire retardataire adj s 0.33 0.68 0.32 0.47 +retardataires retardataire nom p 0.70 1.01 0.52 0.88 +retardateur retardateur nom m s 0.14 0.00 0.14 0.00 +retarde retarder ver 11.89 14.53 1.95 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retardement retardement nom m s 1.61 2.03 1.61 2.03 +retardent retarder ver 11.89 14.53 0.36 0.47 ind:pre:3p; +retarder retarder ver 11.89 14.53 3.09 4.46 inf;; +retardera retarder ver 11.89 14.53 0.24 0.00 ind:fut:3s; +retarderai retarder ver 11.89 14.53 0.04 0.14 ind:fut:1s; +retarderaient retarder ver 11.89 14.53 0.02 0.07 cnd:pre:3p; +retarderait retarder ver 11.89 14.53 0.10 0.41 cnd:pre:3s; +retarderez retarder ver 11.89 14.53 0.01 0.00 ind:fut:2p; +retarderiez retarder ver 11.89 14.53 0.01 0.00 cnd:pre:2p; +retardes retarder ver 11.89 14.53 0.87 0.14 ind:pre:2s; +retardez retarder ver 11.89 14.53 0.56 0.20 imp:pre:2p;ind:pre:2p; +retardions retarder ver 11.89 14.53 0.00 0.07 ind:imp:1p; +retardons retarder ver 11.89 14.53 0.20 0.14 imp:pre:1p;ind:pre:1p; +retardât retarder ver 11.89 14.53 0.00 0.07 sub:imp:3s; +retards retard nom m p 126.45 46.62 0.81 3.18 +retardèrent retarder ver 11.89 14.53 0.00 0.07 ind:pas:3p; +retardé retarder ver m s 11.89 14.53 2.90 2.36 par:pas; +retardée retarder ver f s 11.89 14.53 0.67 1.01 par:pas; +retardées retarder ver f p 11.89 14.53 0.06 0.07 par:pas; +retardés retarder ver m p 11.89 14.53 0.39 0.07 par:pas; +reteindre reteindre ver 0.12 0.20 0.11 0.07 inf; +reteints reteindre ver m p 0.12 0.20 0.01 0.14 par:pas; +retenaient retenir ver 71.58 143.92 0.42 4.66 ind:imp:3p; +retenais retenir ver 71.58 143.92 0.34 2.23 ind:imp:1s;ind:imp:2s; +retenait retenir ver 71.58 143.92 1.10 15.34 ind:imp:3s; +retenant retenir ver 71.58 143.92 0.70 8.78 par:pre; +retendait retendre ver 0.16 0.61 0.00 0.20 ind:imp:3s; +retendre retendre ver 0.16 0.61 0.01 0.20 inf; +retends retendre ver 0.16 0.61 0.00 0.07 ind:pre:2s; +retendu retendre ver m s 0.16 0.61 0.15 0.07 par:pas; +retendues retendre ver f p 0.16 0.61 0.00 0.07 par:pas; +retenez retenir ver 71.58 143.92 6.15 0.88 imp:pre:2p;ind:pre:2p; +reteniez retenir ver 71.58 143.92 0.05 0.07 ind:imp:2p; +retenions retenir ver 71.58 143.92 0.02 0.34 ind:imp:1p; +retenir retenir ver 71.58 143.92 19.63 38.65 inf; +retenons retenir ver 71.58 143.92 0.19 0.14 imp:pre:1p;ind:pre:1p; +retente retenter ver 0.70 0.00 0.23 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retenter retenter ver 0.70 0.00 0.44 0.00 inf; +retentes retenter ver 0.70 0.00 0.04 0.00 ind:pre:2s; +retenti retentir ver m s 2.86 25.34 0.48 2.16 par:pas; +retentir retentir ver 2.86 25.34 0.27 3.58 inf; +retentira retentir ver 2.86 25.34 0.15 0.20 ind:fut:3s; +retentirait retentir ver 2.86 25.34 0.00 0.34 cnd:pre:3s; +retentirent retentir ver 2.86 25.34 0.00 1.62 ind:pas:3p; +retentiront retentir ver 2.86 25.34 0.04 0.07 ind:fut:3p; +retentissaient retentir ver 2.86 25.34 0.00 1.76 ind:imp:3p; +retentissait retentir ver 2.86 25.34 0.04 2.43 ind:imp:3s; +retentissant retentissant adj m s 0.20 2.50 0.14 1.01 +retentissante retentissant adj f s 0.20 2.50 0.03 0.68 +retentissantes retentissant adj f p 0.20 2.50 0.00 0.20 +retentissants retentissant adj m p 0.20 2.50 0.03 0.61 +retentisse retentir ver 2.86 25.34 0.03 0.14 sub:pre:3s; +retentissement retentissement nom m s 0.02 1.55 0.02 1.55 +retentissent retentir ver 2.86 25.34 0.19 1.22 ind:pre:3p; +retentit retentir ver 2.86 25.34 1.62 11.01 ind:pre:3s;ind:pas:3s; +retenu retenir ver m s 71.58 143.92 10.20 21.22 par:pas; +retenue retenue nom f s 3.74 8.04 3.47 7.64 +retenues retenir ver f p 71.58 143.92 0.59 1.55 par:pas; +retenus retenir ver m p 71.58 143.92 0.98 4.12 par:pas; +reçûmes recevoir ver 192.73 224.46 0.01 0.54 ind:pas:1p; +reçût recevoir ver 192.73 224.46 0.01 0.54 sub:imp:3s; +reçois recevoir ver 192.73 224.46 17.48 7.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reçoit recevoir ver 192.73 224.46 14.90 14.19 ind:pre:3s; +reçoive recevoir ver 192.73 224.46 2.11 1.55 sub:pre:1s;sub:pre:3s; +reçoivent recevoir ver 192.73 224.46 3.08 4.19 ind:pre:3p;sub:pre:3p; +reçoives recevoir ver 192.73 224.46 0.20 0.00 sub:pre:2s; +reçu recevoir ver m s 192.73 224.46 76.46 56.15 par:pas; +reçue recevoir ver f s 192.73 224.46 4.55 7.03 par:pas; +reçues recevoir ver f p 192.73 224.46 1.29 3.18 par:pas; +reçurent recevoir ver 192.73 224.46 0.23 2.64 ind:pas:3p; +reçus recevoir ver m p 192.73 224.46 1.85 10.88 ind:pas:1s;ind:pas:2s;par:pas; +reçut recevoir ver 192.73 224.46 1.87 21.82 ind:pas:3s; +retiendra retenir ver 71.58 143.92 0.68 0.54 ind:fut:3s; +retiendrai retenir ver 71.58 143.92 1.05 0.54 ind:fut:1s; +retiendraient retenir ver 71.58 143.92 0.01 0.20 cnd:pre:3p; +retiendrais retenir ver 71.58 143.92 0.20 0.14 cnd:pre:1s;cnd:pre:2s; +retiendrait retenir ver 71.58 143.92 0.11 1.08 cnd:pre:3s; +retiendras retenir ver 71.58 143.92 0.20 0.00 ind:fut:2s; +retiendrez retenir ver 71.58 143.92 0.14 0.00 ind:fut:2p; +retiendrions retenir ver 71.58 143.92 0.00 0.07 cnd:pre:1p; +retiendrons retenir ver 71.58 143.92 0.08 0.07 ind:fut:1p; +retiendront retenir ver 71.58 143.92 0.14 0.07 ind:fut:3p; +retienne retenir ver 71.58 143.92 0.89 0.61 sub:pre:1s;sub:pre:3s; +retiennent retenir ver 71.58 143.92 1.69 3.58 ind:pre:3p; +retiennes retenir ver 71.58 143.92 0.22 0.00 sub:pre:2s; +retiens retenir ver 71.58 143.92 12.91 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +retient retenir ver 71.58 143.92 9.17 13.11 ind:pre:3s; +retinrent retenir ver 71.58 143.92 0.14 1.01 ind:pas:3p; +retins retenir ver 71.58 143.92 0.02 1.82 ind:pas:1s; +retint retenir ver 71.58 143.92 0.35 11.22 ind:pas:3s; +retira retirer ver 80.26 98.31 0.45 15.81 ind:pas:3s; +retirable retirable adj f s 0.01 0.00 0.01 0.00 +retirai retirer ver 80.26 98.31 0.01 1.76 ind:pas:1s; +retiraient retirer ver 80.26 98.31 0.14 1.69 ind:imp:3p; +retirais retirer ver 80.26 98.31 0.23 0.68 ind:imp:1s;ind:imp:2s; +retirait retirer ver 80.26 98.31 0.45 7.16 ind:imp:3s; +retirant retirer ver 80.26 98.31 0.38 3.58 par:pre; +retire retirer ver 80.26 98.31 21.56 14.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +retirement retirement nom m s 0.14 0.00 0.14 0.00 +retirent retirer ver 80.26 98.31 1.19 1.42 ind:pre:3p; +retirer retirer ver 80.26 98.31 27.39 21.96 ind:pre:2p;inf; +retirera retirer ver 80.26 98.31 0.72 0.68 ind:fut:3s; +retirerai retirer ver 80.26 98.31 0.38 0.54 ind:fut:1s; +retireraient retirer ver 80.26 98.31 0.28 0.34 cnd:pre:3p; +retirerais retirer ver 80.26 98.31 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +retirerait retirer ver 80.26 98.31 0.32 0.61 cnd:pre:3s; +retireras retirer ver 80.26 98.31 0.14 0.07 ind:fut:2s; +retirerez retirer ver 80.26 98.31 0.09 0.00 ind:fut:2p; +retireriez retirer ver 80.26 98.31 0.00 0.07 cnd:pre:2p; +retirerions retirer ver 80.26 98.31 0.00 0.07 cnd:pre:1p; +retirerons retirer ver 80.26 98.31 0.23 0.07 ind:fut:1p; +retireront retirer ver 80.26 98.31 0.32 0.14 ind:fut:3p; +retires retirer ver 80.26 98.31 1.45 0.27 ind:pre:2s; +retirez retirer ver 80.26 98.31 6.20 0.95 imp:pre:2p;ind:pre:2p; +retiriez retirer ver 80.26 98.31 0.24 0.07 ind:imp:2p; +retirions retirer ver 80.26 98.31 0.15 0.27 ind:imp:1p; +retiro retiro nom m s 0.10 0.07 0.10 0.07 +retirâmes retirer ver 80.26 98.31 0.01 0.07 ind:pas:1p; +retirons retirer ver 80.26 98.31 0.83 0.14 imp:pre:1p;ind:pre:1p; +retirât retirer ver 80.26 98.31 0.00 0.20 sub:imp:3s; +retirèrent retirer ver 80.26 98.31 0.21 1.55 ind:pas:3p; +retiré retirer ver m s 80.26 98.31 12.70 15.07 par:pas; +retirée retirer ver f s 80.26 98.31 2.02 4.73 par:pas; +retirées retirer ver f p 80.26 98.31 0.68 0.74 par:pas; +retirés retirer ver m p 80.26 98.31 1.36 2.77 par:pas; +retissaient retisser ver 0.00 0.34 0.00 0.07 ind:imp:3p; +retissait retisser ver 0.00 0.34 0.00 0.07 ind:imp:3s; +retisser retisser ver 0.00 0.34 0.00 0.20 inf; +retomba retomber ver 11.04 58.58 0.28 7.23 ind:pas:3s; +retombai retomber ver 11.04 58.58 0.00 0.27 ind:pas:1s; +retombaient retomber ver 11.04 58.58 0.15 3.45 ind:imp:3p; +retombais retomber ver 11.04 58.58 0.26 0.68 ind:imp:1s;ind:imp:2s; +retombait retomber ver 11.04 58.58 0.15 6.35 ind:imp:3s; +retombant retomber ver 11.04 58.58 0.02 2.84 par:pre; +retombante retombant adj f s 0.02 0.61 0.00 0.14 +retombantes retombant adj f p 0.02 0.61 0.00 0.14 +retombe retomber ver 11.04 58.58 3.89 9.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retombement retombement nom m s 0.00 0.14 0.00 0.14 +retombent retomber ver 11.04 58.58 0.70 2.70 ind:pre:3p; +retomber retomber ver 11.04 58.58 2.74 15.95 inf; +retombera retomber ver 11.04 58.58 0.69 0.68 ind:fut:3s; +retomberai retomber ver 11.04 58.58 0.06 0.00 ind:fut:1s; +retomberaient retomber ver 11.04 58.58 0.01 0.27 cnd:pre:3p; +retomberais retomber ver 11.04 58.58 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +retomberait retomber ver 11.04 58.58 0.27 0.47 cnd:pre:3s; +retomberas retomber ver 11.04 58.58 0.05 0.07 ind:fut:2s; +retomberez retomber ver 11.04 58.58 0.03 0.00 ind:fut:2p; +retomberont retomber ver 11.04 58.58 0.00 0.07 ind:fut:3p; +retombes retomber ver 11.04 58.58 0.25 0.14 ind:pre:2s; +retombez retomber ver 11.04 58.58 0.17 0.07 imp:pre:2p;ind:pre:2p; +retombions retomber ver 11.04 58.58 0.00 0.27 ind:imp:1p; +retombâmes retomber ver 11.04 58.58 0.00 0.14 ind:pas:1p; +retombons retomber ver 11.04 58.58 0.12 0.41 imp:pre:1p;ind:pre:1p; +retombât retomber ver 11.04 58.58 0.00 0.14 sub:imp:3s; +retombèrent retomber ver 11.04 58.58 0.00 0.81 ind:pas:3p; +retombé retomber ver m s 11.04 58.58 0.71 3.65 par:pas; +retombée retomber ver f s 11.04 58.58 0.28 1.96 par:pas; +retombées retombée nom f p 0.79 2.36 0.73 1.01 +retombés retomber ver m p 11.04 58.58 0.19 0.34 par:pas; +retordre retordre ver 1.29 0.61 1.29 0.61 inf; +retors retors adj m 0.53 1.69 0.48 1.28 +retorse retors adj f s 0.53 1.69 0.03 0.41 +retorses retors adj f p 0.53 1.69 0.02 0.00 +retâté retâter ver m s 0.00 0.07 0.00 0.07 par:pas; +retoucha retoucher ver 1.98 2.09 0.00 0.14 ind:pas:3s; +retouchai retoucher ver 1.98 2.09 0.00 0.14 ind:pas:1s; +retouchait retoucher ver 1.98 2.09 0.01 0.20 ind:imp:3s; +retouchant retoucher ver 1.98 2.09 0.00 0.14 par:pre; +retouche retouche nom f s 1.30 2.30 0.61 0.74 +retouchent retoucher ver 1.98 2.09 0.01 0.07 ind:pre:3p; +retoucher retoucher ver 1.98 2.09 1.10 0.54 inf; +retouchera retoucher ver 1.98 2.09 0.03 0.00 ind:fut:3s; +retoucherais retoucher ver 1.98 2.09 0.00 0.07 cnd:pre:1s; +retoucherait retoucher ver 1.98 2.09 0.00 0.14 cnd:pre:3s; +retouches retouche nom f p 1.30 2.30 0.69 1.55 +retoucheur retoucheur nom m s 0.01 0.00 0.01 0.00 +retouchez retoucher ver 1.98 2.09 0.07 0.00 imp:pre:2p;ind:pre:2p; +retouché retoucher ver m s 1.98 2.09 0.20 0.20 par:pas; +retouchée retoucher ver f s 1.98 2.09 0.22 0.14 par:pas; +retouchées retoucher ver f p 1.98 2.09 0.02 0.07 par:pas; +retouchés retoucher ver m p 1.98 2.09 0.02 0.20 par:pas; +retour retour nom m s 138.94 158.65 138.02 153.31 +retourna retourner ver 245.33 290.88 1.14 61.62 ind:pas:3s; +retournai retourner ver 245.33 290.88 0.22 6.55 ind:pas:1s; +retournaient retourner ver 245.33 290.88 0.15 4.80 ind:imp:3p; +retournais retourner ver 245.33 290.88 0.96 3.85 ind:imp:1s;ind:imp:2s; +retournait retourner ver 245.33 290.88 0.93 18.51 ind:imp:3s; +retournant retourner ver 245.33 290.88 0.69 16.89 par:pre; +retourne retourner ver 245.33 290.88 77.27 50.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +retournement retournement nom m s 0.86 2.91 0.82 2.30 +retournements retournement nom m p 0.86 2.91 0.04 0.61 +retournent retourner ver 245.33 290.88 2.29 5.00 ind:pre:3p; +retourner retourner ver 245.33 290.88 76.94 57.16 imp:pre:2p;inf; +retournera retourner ver 245.33 290.88 3.56 1.08 ind:fut:3s; +retournerai retourner ver 245.33 290.88 5.58 1.89 ind:fut:1s; +retourneraient retourner ver 245.33 290.88 0.14 0.68 cnd:pre:3p; +retournerais retourner ver 245.33 290.88 0.60 1.01 cnd:pre:1s;cnd:pre:2s; +retournerait retourner ver 245.33 290.88 0.77 1.96 cnd:pre:3s; +retourneras retourner ver 245.33 290.88 1.86 0.20 ind:fut:2s; +retournerez retourner ver 245.33 290.88 0.79 0.34 ind:fut:2p; +retourneriez retourner ver 245.33 290.88 0.13 0.00 cnd:pre:2p; +retournerions retourner ver 245.33 290.88 0.02 0.14 cnd:pre:1p; +retournerons retourner ver 245.33 290.88 0.98 0.68 ind:fut:1p; +retourneront retourner ver 245.33 290.88 0.73 0.41 ind:fut:3p; +retournes retourner ver 245.33 290.88 10.40 1.42 ind:pre:2s;sub:pre:2s; +retournez retourner ver 245.33 290.88 23.55 2.36 imp:pre:2p;ind:pre:2p; +retourniez retourner ver 245.33 290.88 0.80 0.20 ind:imp:2p; +retournions retourner ver 245.33 290.88 0.13 0.95 ind:imp:1p; +retournâmes retourner ver 245.33 290.88 0.00 0.81 ind:pas:1p; +retournons retourner ver 245.33 290.88 9.53 1.22 imp:pre:1p;ind:pre:1p; +retournât retourner ver 245.33 290.88 0.00 0.54 sub:imp:3s; +retournèrent retourner ver 245.33 290.88 0.17 4.39 ind:pas:3p; +retourné retourner ver m s 245.33 290.88 15.05 26.69 par:pas; +retournée retourner ver f s 245.33 290.88 7.81 11.82 par:pas; +retournées retourner ver f p 245.33 290.88 0.34 1.89 par:pas; +retournés retourner ver m p 245.33 290.88 1.79 5.27 par:pas; +retours retour nom m p 138.94 158.65 0.92 5.34 +retrace retracer ver 1.50 3.58 0.16 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retracent retracer ver 1.50 3.58 0.04 0.14 ind:pre:3p; +retracer retracer ver 1.50 3.58 1.03 1.55 inf; +retracera retracer ver 1.50 3.58 0.01 0.07 ind:fut:3s; +retracerais retracer ver 1.50 3.58 0.00 0.07 cnd:pre:1s; +retracerait retracer ver 1.50 3.58 0.01 0.07 cnd:pre:3s; +retraceront retracer ver 1.50 3.58 0.01 0.00 ind:fut:3p; +retracez retracer ver 1.50 3.58 0.05 0.00 imp:pre:2p; +retracions retracer ver 1.50 3.58 0.01 0.07 ind:imp:1p; +retracé retracer ver m s 1.50 3.58 0.13 0.14 par:pas; +retracée retracer ver f s 1.50 3.58 0.00 0.07 par:pas; +retraduction retraduction nom f s 0.01 0.00 0.01 0.00 +retraduit retraduire ver m s 0.01 0.14 0.01 0.14 ind:pre:3s;par:pas; +retraire retraire ver 0.12 0.07 0.01 0.00 inf; +retrait retrait nom m s 4.87 13.72 4.63 13.04 +retraitait retraiter ver 0.79 0.61 0.00 0.14 ind:imp:3s; +retraite retraite nom f s 39.45 40.14 38.30 38.78 +retraitement retraitement nom m s 0.06 0.07 0.06 0.07 +retraites retraite nom f p 39.45 40.14 1.16 1.35 +retraitions retraiter ver 0.79 0.61 0.00 0.07 ind:imp:1p; +retraits retrait nom m p 4.87 13.72 0.24 0.68 +retraité retraité nom m s 2.25 5.95 1.17 3.31 +retraitée retraité nom f s 2.25 5.95 0.11 0.14 +retraitées retraité nom f p 2.25 5.95 0.10 0.07 +retraités retraité nom m p 2.25 5.95 0.86 2.43 +retranchai retrancher ver 1.00 7.64 0.00 0.07 ind:pas:1s; +retranchaient retrancher ver 1.00 7.64 0.01 0.14 ind:imp:3p; +retranchait retrancher ver 1.00 7.64 0.00 0.68 ind:imp:3s; +retranchant retrancher ver 1.00 7.64 0.02 0.14 par:pre; +retranche retrancher ver 1.00 7.64 0.04 0.47 ind:pre:3s; +retranchement retranchement nom m s 0.20 1.69 0.03 0.41 +retranchements retranchement nom m p 0.20 1.69 0.17 1.28 +retranchent retrancher ver 1.00 7.64 0.04 0.34 ind:pre:3p; +retrancher retrancher ver 1.00 7.64 0.29 1.01 inf; +retranchera retrancher ver 1.00 7.64 0.01 0.07 ind:fut:3s; +retranchez retrancher ver 1.00 7.64 0.01 0.07 imp:pre:2p;ind:pre:2p; +retranchions retrancher ver 1.00 7.64 0.00 0.07 ind:imp:1p; +retranché retrancher ver m s 1.00 7.64 0.47 2.23 par:pas; +retranchée retrancher ver f s 1.00 7.64 0.02 1.08 par:pas; +retranchées retrancher ver f p 1.00 7.64 0.00 0.14 par:pas; +retranchés retrancher ver m p 1.00 7.64 0.09 1.15 par:pas; +retranscription retranscription nom f s 0.03 0.00 0.03 0.00 +retranscrire retranscrire ver 0.26 0.34 0.21 0.07 inf; +retranscris retranscrire ver 0.26 0.34 0.01 0.14 ind:pre:1s; +retranscrit retranscrire ver m s 0.26 0.34 0.04 0.07 ind:pre:3s;par:pas; +retranscrits retranscrire ver m p 0.26 0.34 0.00 0.07 par:pas; +retransforme retransformer ver 0.20 0.07 0.02 0.07 ind:pre:1s; +retransformer retransformer ver 0.20 0.07 0.16 0.00 inf; +retransformera retransformer ver 0.20 0.07 0.02 0.00 ind:fut:3s; +retransférer retransférer ver 0.01 0.00 0.01 0.00 inf; +retransmet retransmettre ver 1.03 0.74 0.05 0.07 ind:pre:3s; +retransmettait retransmettre ver 1.03 0.74 0.01 0.00 ind:imp:3s; +retransmettant retransmettre ver 1.03 0.74 0.01 0.00 par:pre; +retransmettez retransmettre ver 1.03 0.74 0.02 0.00 imp:pre:2p;ind:pre:2p; +retransmettra retransmettre ver 1.03 0.74 0.02 0.00 ind:fut:3s; +retransmettre retransmettre ver 1.03 0.74 0.25 0.00 inf; +retransmettrons retransmettre ver 1.03 0.74 0.11 0.00 ind:fut:1p; +retransmis retransmettre ver m 1.03 0.74 0.39 0.34 ind:pas:1s;par:pas;par:pas; +retransmise retransmettre ver f s 1.03 0.74 0.16 0.27 par:pas; +retransmission retransmission nom f s 0.47 0.47 0.36 0.34 +retransmissions retransmission nom f p 0.47 0.47 0.11 0.14 +retransmit retransmettre ver 1.03 0.74 0.01 0.07 ind:pas:3s; +retraçaient retracer ver 1.50 3.58 0.00 0.20 ind:imp:3p; +retraçais retracer ver 1.50 3.58 0.00 0.07 ind:imp:1s; +retraçait retracer ver 1.50 3.58 0.01 0.68 ind:imp:3s; +retraçant retracer ver 1.50 3.58 0.04 0.27 par:pre; +retravaillait retravailler ver 3.12 0.20 0.03 0.00 ind:imp:3s; +retravaille retravailler ver 3.12 0.20 0.65 0.00 ind:pre:1s;ind:pre:3s; +retravaillent retravailler ver 3.12 0.20 0.01 0.00 ind:pre:3p; +retravailler retravailler ver 3.12 0.20 1.89 0.14 inf; +retravaillera retravailler ver 3.12 0.20 0.05 0.00 ind:fut:3s; +retravaillerai retravailler ver 3.12 0.20 0.04 0.00 ind:fut:1s; +retravaillerait retravailler ver 3.12 0.20 0.03 0.00 cnd:pre:3s; +retravaillerez retravailler ver 3.12 0.20 0.01 0.00 ind:fut:2p; +retravailles retravailler ver 3.12 0.20 0.17 0.00 ind:pre:2s; +retravaillez retravailler ver 3.12 0.20 0.13 0.00 imp:pre:2p;ind:pre:2p; +retravaillé retravailler ver m s 3.12 0.20 0.09 0.07 par:pas; +retravaillée retravailler ver f s 3.12 0.20 0.02 0.00 par:pas; +retraversa retraverser ver 0.17 3.04 0.00 0.41 ind:pas:3s; +retraversai retraverser ver 0.17 3.04 0.00 0.20 ind:pas:1s; +retraversaient retraverser ver 0.17 3.04 0.00 0.07 ind:imp:3p; +retraversais retraverser ver 0.17 3.04 0.00 0.07 ind:imp:1s; +retraversait retraverser ver 0.17 3.04 0.00 0.07 ind:imp:3s; +retraversant retraverser ver 0.17 3.04 0.00 0.27 par:pre; +retraverse retraverser ver 0.17 3.04 0.03 0.27 ind:pre:1s;ind:pre:3s; +retraversent retraverser ver 0.17 3.04 0.00 0.07 ind:pre:3p; +retraverser retraverser ver 0.17 3.04 0.12 0.81 inf; +retraverserait retraverser ver 0.17 3.04 0.00 0.07 cnd:pre:3s; +retraversions retraverser ver 0.17 3.04 0.00 0.07 ind:imp:1p; +retraversons retraverser ver 0.17 3.04 0.01 0.20 imp:pre:1p;ind:pre:1p; +retraversé retraverser ver m s 0.17 3.04 0.01 0.27 par:pas; +retraversée retraverser ver f s 0.17 3.04 0.00 0.20 par:pas; +retreinte retreinte nom f s 0.01 0.00 0.01 0.00 +retrempai retremper ver 0.01 0.95 0.00 0.07 ind:pas:1s; +retrempaient retremper ver 0.01 0.95 0.01 0.14 ind:imp:3p; +retrempait retremper ver 0.01 0.95 0.00 0.07 ind:imp:3s; +retremper retremper ver 0.01 0.95 0.00 0.54 inf; +retrempé retremper ver m s 0.01 0.95 0.00 0.14 par:pas; +retriever retriever nom m s 0.17 0.00 0.17 0.00 +retroussa retrousser ver 0.92 9.46 0.01 0.54 ind:pas:3s; +retroussage retroussage nom m s 0.00 0.07 0.00 0.07 +retroussaient retrousser ver 0.92 9.46 0.00 0.20 ind:imp:3p; +retroussais retrousser ver 0.92 9.46 0.00 0.07 ind:imp:1s; +retroussait retrousser ver 0.92 9.46 0.00 1.28 ind:imp:3s; +retroussant retrousser ver 0.92 9.46 0.00 1.55 par:pre; +retrousse retrousser ver 0.92 9.46 0.39 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retroussent retrousser ver 0.92 9.46 0.00 0.27 ind:pre:3p; +retrousser retrousser ver 0.92 9.46 0.21 0.95 inf; +retroussette retroussette nom f s 0.00 0.27 0.00 0.27 +retroussez retrousser ver 0.92 9.46 0.14 0.00 imp:pre:2p; +retroussis retroussis nom m 0.00 0.41 0.00 0.41 +retroussé retroussé adj m s 0.35 6.49 0.20 1.89 +retroussée retroussé adj f s 0.35 6.49 0.01 1.08 +retroussées retroussé adj f p 0.35 6.49 0.03 3.11 +retroussés retroussé adj m p 0.35 6.49 0.11 0.41 +retrouva retrouver ver 295.09 416.22 1.60 28.24 ind:pas:3s; +retrouvai retrouver ver 295.09 416.22 0.32 13.85 ind:pas:1s; +retrouvaient retrouver ver 295.09 416.22 0.48 9.05 ind:imp:3p; +retrouvaille retrouvaille nom f s 2.46 6.82 0.03 0.47 +retrouvailles retrouvaille nom f p 2.46 6.82 2.43 6.35 +retrouvais retrouver ver 295.09 416.22 1.42 12.77 ind:imp:1s;ind:imp:2s; +retrouvait retrouver ver 295.09 416.22 1.89 31.01 ind:imp:3s; +retrouvant retrouver ver 295.09 416.22 0.47 9.86 par:pre; +retrouvas retrouver ver 295.09 416.22 0.00 0.07 ind:pas:2s; +retrouve retrouver ver 295.09 416.22 61.54 47.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +retrouvent retrouver ver 295.09 416.22 4.47 7.23 ind:pre:3p; +retrouver retrouver ver 295.09 416.22 100.83 125.20 inf;; +retrouvera retrouver ver 295.09 416.22 11.55 5.07 ind:fut:3s; +retrouverai retrouver ver 295.09 416.22 8.23 3.04 ind:fut:1s; +retrouveraient retrouver ver 295.09 416.22 0.26 2.43 cnd:pre:3p; +retrouverais retrouver ver 295.09 416.22 1.24 3.11 cnd:pre:1s;cnd:pre:2s; +retrouverait retrouver ver 295.09 416.22 1.17 6.62 cnd:pre:3s; +retrouveras retrouver ver 295.09 416.22 3.36 0.95 ind:fut:2s; +retrouverez retrouver ver 295.09 416.22 3.13 0.95 ind:fut:2p; +retrouveriez retrouver ver 295.09 416.22 0.09 0.27 cnd:pre:2p; +retrouverions retrouver ver 295.09 416.22 0.06 0.81 cnd:pre:1p; +retrouverons retrouver ver 295.09 416.22 2.52 2.30 ind:fut:1p; +retrouveront retrouver ver 295.09 416.22 2.21 1.42 ind:fut:3p; +retrouves retrouver ver 295.09 416.22 5.05 1.28 ind:pre:2s;sub:pre:2s; +retrouvez retrouver ver 295.09 416.22 5.79 0.81 imp:pre:2p;ind:pre:2p; +retrouviez retrouver ver 295.09 416.22 0.72 0.34 ind:imp:2p;sub:pre:2p; +retrouvions retrouver ver 295.09 416.22 0.47 5.41 ind:imp:1p; +retrouvâmes retrouver ver 295.09 416.22 0.04 2.16 ind:pas:1p; +retrouvons retrouver ver 295.09 416.22 3.60 3.85 imp:pre:1p;ind:pre:1p; +retrouvât retrouver ver 295.09 416.22 0.00 0.68 sub:imp:3s; +retrouvèrent retrouver ver 295.09 416.22 0.36 6.42 ind:pas:3p; +retrouvé retrouver ver m s 295.09 416.22 50.38 55.00 par:pas;par:pas;par:pas; +retrouvée retrouver ver f s 295.09 416.22 13.51 15.20 par:pas; +retrouvées retrouver ver f p 295.09 416.22 1.90 2.64 par:pas; +retrouvés retrouver ver m p 295.09 416.22 6.44 10.61 par:pas; +rets rets nom m 0.12 0.27 0.12 0.27 +retsina retsina nom m s 0.13 0.00 0.13 0.00 +retuber retuber ver 0.03 0.00 0.03 0.00 inf; +retuer retuer ver 0.08 0.07 0.01 0.00 inf; +retéléphone retéléphoner ver 0.29 0.07 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retéléphoner retéléphoner ver 0.29 0.07 0.15 0.00 inf; +reubeu reubeu nom m s 0.01 0.61 0.01 0.47 +reubeus reubeu nom m p 0.01 0.61 0.00 0.14 +revîmes revoir ver 162.83 139.46 0.10 0.20 ind:pas:1p; +revînt revenir ver 618.61 490.54 0.00 1.69 sub:imp:3s; +revalidation revalidation nom f s 0.01 0.00 0.01 0.00 +revalider revalider ver 0.02 0.00 0.02 0.00 inf; +revaloir revaloir ver 3.46 0.74 0.11 0.07 inf; +revalorisait revaloriser ver 0.03 0.34 0.00 0.14 ind:imp:3s; +revalorisation revalorisation nom f s 0.00 0.14 0.00 0.14 +revalorisent revaloriser ver 0.03 0.34 0.00 0.07 ind:pre:3p; +revaloriser revaloriser ver 0.03 0.34 0.02 0.00 inf; +revalorisé revaloriser ver m s 0.03 0.34 0.01 0.14 par:pas; +revancha revancher ver 0.00 0.34 0.00 0.07 ind:pas:3s; +revanchaient revancher ver 0.00 0.34 0.00 0.07 ind:imp:3p; +revanchard revanchard adj m s 0.06 0.34 0.04 0.14 +revancharde revanchard adj f s 0.06 0.34 0.02 0.07 +revanchardes revanchard adj f p 0.06 0.34 0.00 0.14 +revanchards revanchard nom m p 0.03 0.27 0.00 0.27 +revanche revanche nom f s 13.81 41.62 13.73 41.01 +revanchent revancher ver 0.00 0.34 0.00 0.07 ind:pre:3p; +revancher revancher ver 0.00 0.34 0.00 0.14 inf; +revanches revanche nom f p 13.81 41.62 0.08 0.61 +revaudra revaloir ver 3.46 0.74 0.25 0.07 ind:fut:3s; +revaudrai revaloir ver 3.46 0.74 2.80 0.54 ind:fut:1s; +revaudraient revaloir ver 3.46 0.74 0.01 0.00 cnd:pre:3p; +revaudrais revaloir ver 3.46 0.74 0.13 0.00 cnd:pre:1s;cnd:pre:2s; +revaudrait revaloir ver 3.46 0.74 0.02 0.07 cnd:pre:3s; +revaudras revaloir ver 3.46 0.74 0.13 0.00 ind:fut:2s; +revenaient revenir ver 618.61 490.54 1.27 17.64 ind:imp:3p; +revenais revenir ver 618.61 490.54 3.95 8.24 ind:imp:1s;ind:imp:2s; +revenait revenir ver 618.61 490.54 7.47 56.76 ind:imp:3s; +revenant revenir ver 618.61 490.54 4.49 17.23 par:pre; +revenante revenant adj f s 0.35 1.69 0.23 0.27 +revenants revenant nom m p 1.82 3.99 0.95 1.55 +revend revendre ver 6.76 6.89 0.51 0.14 ind:pre:3s; +revendable revendable adj s 0.01 0.07 0.01 0.07 +revendaient revendre ver 6.76 6.89 0.01 0.34 ind:imp:3p; +revendais revendre ver 6.76 6.89 0.02 0.00 ind:imp:1s; +revendait revendre ver 6.76 6.89 0.39 0.54 ind:imp:3s; +revendant revendre ver 6.76 6.89 0.09 0.07 par:pre; +revendent revendre ver 6.76 6.89 0.29 0.34 ind:pre:3p; +revendes revendre ver 6.76 6.89 0.00 0.07 sub:pre:2s; +revendeur revendeur nom m s 1.23 0.88 0.86 0.47 +revendeurs revendeur nom m p 1.23 0.88 0.34 0.34 +revendeuse revendeur nom f s 1.23 0.88 0.03 0.07 +revendez revendre ver 6.76 6.89 0.14 0.00 imp:pre:2p;ind:pre:2p; +revendicateur revendicateur adj m s 0.00 0.27 0.00 0.07 +revendicateurs revendicateur nom m p 0.00 0.07 0.00 0.07 +revendicatif revendicatif adj m s 0.00 0.27 0.00 0.07 +revendicatifs revendicatif adj m p 0.00 0.27 0.00 0.07 +revendication revendication nom f s 1.98 3.78 0.94 1.42 +revendications revendication nom f p 1.98 3.78 1.04 2.36 +revendicative revendicatif adj f s 0.00 0.27 0.00 0.07 +revendicatives revendicatif adj f p 0.00 0.27 0.00 0.07 +revendicatrice revendicateur adj f s 0.00 0.27 0.00 0.14 +revendicatrices revendicateur adj f p 0.00 0.27 0.00 0.07 +revendiqua revendiquer ver 2.89 5.07 0.01 0.07 ind:pas:3s; +revendiquai revendiquer ver 2.89 5.07 0.00 0.07 ind:pas:1s; +revendiquaient revendiquer ver 2.89 5.07 0.00 0.34 ind:imp:3p; +revendiquais revendiquer ver 2.89 5.07 0.02 0.20 ind:imp:1s;ind:imp:2s; +revendiquait revendiquer ver 2.89 5.07 0.03 0.61 ind:imp:3s; +revendiquant revendiquer ver 2.89 5.07 0.17 0.47 par:pre; +revendique revendiquer ver 2.89 5.07 0.73 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +revendiquent revendiquer ver 2.89 5.07 0.12 0.34 ind:pre:3p; +revendiquer revendiquer ver 2.89 5.07 0.82 1.42 inf; +revendiquera revendiquer ver 2.89 5.07 0.04 0.07 ind:fut:3s; +revendiquerais revendiquer ver 2.89 5.07 0.01 0.00 cnd:pre:2s; +revendiquerait revendiquer ver 2.89 5.07 0.00 0.07 cnd:pre:3s; +revendiquez revendiquer ver 2.89 5.07 0.02 0.14 imp:pre:2p;ind:pre:2p; +revendiquons revendiquer ver 2.89 5.07 0.02 0.14 imp:pre:1p;ind:pre:1p; +revendiquât revendiquer ver 2.89 5.07 0.00 0.07 sub:imp:3s; +revendiqué revendiquer ver m s 2.89 5.07 0.69 0.27 par:pas; +revendiquée revendiquer ver f s 2.89 5.07 0.20 0.07 par:pas; +revendis revendre ver 6.76 6.89 0.00 0.07 ind:pas:1s; +revendit revendre ver 6.76 6.89 0.00 0.47 ind:pas:3s; +revendra revendre ver 6.76 6.89 0.13 0.00 ind:fut:3s; +revendrai revendre ver 6.76 6.89 0.29 0.14 ind:fut:1s; +revendraient revendre ver 6.76 6.89 0.00 0.07 cnd:pre:3p; +revendrais revendre ver 6.76 6.89 0.13 0.00 cnd:pre:1s; +revendrait revendre ver 6.76 6.89 0.01 0.14 cnd:pre:3s; +revendre revendre ver 6.76 6.89 3.25 2.91 inf; +revendrons revendre ver 6.76 6.89 0.03 0.00 ind:fut:1p; +revendront revendre ver 6.76 6.89 0.03 0.00 ind:fut:3p; +revends revendre ver 6.76 6.89 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revendu revendre ver m s 6.76 6.89 0.55 0.95 par:pas; +revendue revendre ver f s 6.76 6.89 0.12 0.14 par:pas; +revendues revendre ver f p 6.76 6.89 0.28 0.00 par:pas; +revendus revendre ver m p 6.76 6.89 0.14 0.27 par:pas; +revenez revenir ver 618.61 490.54 33.64 6.49 imp:pre:2p;ind:pre:2p; +reveniez revenir ver 618.61 490.54 1.13 0.54 ind:imp:2p;sub:pre:2p; +revenions revenir ver 618.61 490.54 0.80 2.03 ind:imp:1p; +revenir revenir ver 618.61 490.54 105.46 76.28 inf; +revenons revenir ver 618.61 490.54 8.01 4.59 imp:pre:1p;ind:pre:1p; +revente revente nom f s 0.28 0.34 0.27 0.20 +reventes revente nom f p 0.28 0.34 0.01 0.14 +revenu revenir ver m s 618.61 490.54 57.30 42.43 par:pas; +revenue revenir ver f s 618.61 490.54 23.46 19.32 par:pas; +revenues revenir ver f p 618.61 490.54 1.50 2.03 par:pas; +revenus revenir ver m p 618.61 490.54 8.69 9.46 par:pas; +reverdi reverdir ver m s 0.17 1.08 0.14 0.20 par:pas; +reverdie reverdir ver f s 0.17 1.08 0.00 0.20 par:pas; +reverdies reverdir ver f p 0.17 1.08 0.00 0.14 par:pas; +reverdir reverdir ver 0.17 1.08 0.02 0.20 inf; +reverdiront reverdir ver 0.17 1.08 0.00 0.07 ind:fut:3p; +reverdissaient reverdir ver 0.17 1.08 0.00 0.14 ind:imp:3p; +reverdit reverdir ver 0.17 1.08 0.02 0.14 ind:pre:3s; +reverni revernir ver m s 0.03 0.00 0.01 0.00 par:pas; +revernie reverni ver f s 0.01 0.07 0.01 0.07 par:pas; +revernir revernir ver 0.03 0.00 0.01 0.00 inf; +reverra revoir ver 162.83 139.46 14.31 3.24 ind:fut:3s; +reverrai revoir ver 162.83 139.46 9.07 4.05 ind:fut:1s; +reverraient revoir ver 162.83 139.46 0.03 0.88 cnd:pre:3p; +reverrais revoir ver 162.83 139.46 1.15 1.76 cnd:pre:1s;cnd:pre:2s; +reverrait revoir ver 162.83 139.46 1.09 3.38 cnd:pre:3s; +reverras revoir ver 162.83 139.46 5.30 0.95 ind:fut:2s; +reverrez revoir ver 162.83 139.46 2.74 0.47 ind:fut:2p; +reverrions revoir ver 162.83 139.46 0.40 0.27 cnd:pre:1p; +reverrons revoir ver 162.83 139.46 5.41 2.77 ind:fut:1p; +reverront revoir ver 162.83 139.46 0.55 0.74 ind:fut:3p; +revers revers nom m 3.60 25.00 3.60 25.00 +reversa reverser ver 0.48 1.22 0.00 0.27 ind:pas:3s; +reversaient reverser ver 0.48 1.22 0.01 0.00 ind:imp:3p; +reversait reverser ver 0.48 1.22 0.02 0.07 ind:imp:3s; +reversant reverser ver 0.48 1.22 0.00 0.07 par:pre; +reverse reverser ver 0.48 1.22 0.08 0.34 imp:pre:2s;ind:pre:3s; +reverser reverser ver 0.48 1.22 0.09 0.14 inf; +reverserait reverser ver 0.48 1.22 0.00 0.07 cnd:pre:3s; +reversez reverser ver 0.48 1.22 0.11 0.00 imp:pre:2p; +reversé reverser ver m s 0.48 1.22 0.17 0.27 par:pas; +reveuille revouloir ver 0.45 0.41 0.00 0.07 sub:pre:1s; +reveulent revouloir ver 0.45 0.41 0.02 0.07 ind:pre:3p; +reveux revouloir ver 0.45 0.41 0.24 0.07 ind:pre:1s;ind:pre:2s; +revida revider ver 0.00 0.14 0.00 0.07 ind:pas:3s; +revidèrent revider ver 0.00 0.14 0.00 0.07 ind:pas:3p; +reviendra revenir ver 618.61 490.54 34.48 11.62 ind:fut:3s; +reviendrai revenir ver 618.61 490.54 29.57 8.65 ind:fut:1s; +reviendraient revenir ver 618.61 490.54 0.99 1.96 cnd:pre:3p; +reviendrais revenir ver 618.61 490.54 5.80 1.76 cnd:pre:1s;cnd:pre:2s; +reviendrait revenir ver 618.61 490.54 5.18 11.76 cnd:pre:3s; +reviendras revenir ver 618.61 490.54 7.64 2.09 ind:fut:2s; +reviendrez revenir ver 618.61 490.54 4.05 2.64 ind:fut:2p; +reviendriez revenir ver 618.61 490.54 0.70 0.34 cnd:pre:2p; +reviendrions revenir ver 618.61 490.54 0.11 0.27 cnd:pre:1p; +reviendrons revenir ver 618.61 490.54 4.21 1.82 ind:fut:1p; +reviendront revenir ver 618.61 490.54 5.40 3.45 ind:fut:3p; +revienne revenir ver 618.61 490.54 14.99 7.57 sub:pre:1s;sub:pre:3s; +reviennent revenir ver 618.61 490.54 15.50 14.86 ind:pre:3p;sub:pre:3p; +reviennes revenir ver 618.61 490.54 3.25 0.95 sub:pre:2s; +reviens revenir ver 618.61 490.54 163.19 22.36 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revient revenir ver 618.61 490.54 63.17 51.49 ind:pre:3s; +revigoraient revigorer ver 0.29 0.54 0.00 0.07 ind:imp:3p; +revigorant revigorant adj m s 0.28 0.74 0.28 0.20 +revigorante revigorant adj f s 0.28 0.74 0.01 0.41 +revigorantes revigorant adj f p 0.28 0.74 0.00 0.14 +revigore revigorer ver 0.29 0.54 0.04 0.07 ind:pre:3s; +revigorent revigorer ver 0.29 0.54 0.00 0.07 ind:pre:3p; +revigorer revigorer ver 0.29 0.54 0.11 0.07 inf; +revigoré revigorer ver m s 0.29 0.54 0.07 0.07 par:pas; +revigorée revigorer ver f s 0.29 0.54 0.01 0.07 par:pas; +revigorées revigorer ver f p 0.29 0.54 0.01 0.00 par:pas; +revinrent revenir ver 618.61 490.54 0.47 7.64 ind:pas:3p; +revins revenir ver 618.61 490.54 0.50 4.12 ind:pas:1s;ind:pas:2s; +revinssent revenir ver 618.61 490.54 0.00 0.07 sub:imp:3p; +revint revenir ver 618.61 490.54 2.24 70.41 ind:pas:3s; +revirement revirement nom m s 0.66 1.62 0.57 1.35 +revirements revirement nom m p 0.66 1.62 0.09 0.27 +revirent revoir ver 162.83 139.46 0.01 0.34 ind:pas:3p; +revirer revirer ver 0.01 0.34 0.01 0.00 inf; +revis revivre ver 10.37 20.68 1.16 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revisita revisiter ver 0.21 0.61 0.00 0.07 ind:pas:3s; +revisite revisiter ver 0.21 0.61 0.02 0.00 ind:pre:3s; +revisitent revisiter ver 0.21 0.61 0.00 0.07 ind:pre:3p; +revisiter revisiter ver 0.21 0.61 0.16 0.14 inf; +revisité revisiter ver m s 0.21 0.61 0.02 0.14 par:pas; +revisitée revisiter ver f s 0.21 0.61 0.01 0.14 par:pas; +revissa revisser ver 0.15 0.27 0.00 0.07 ind:pas:3s; +revisse revisser ver 0.15 0.27 0.01 0.07 ind:pre:1s; +revisser revisser ver 0.15 0.27 0.00 0.07 inf; +revissé revisser ver m s 0.15 0.27 0.14 0.00 par:pas; +revissées revisser ver f p 0.15 0.27 0.00 0.07 par:pas; +revit revivre ver 10.37 20.68 0.70 1.01 ind:pre:3s; +revitalisant revitalisant adj m s 0.04 0.00 0.04 0.00 +revitalisation revitalisation nom f s 0.04 0.07 0.04 0.07 +revitalise revitaliser ver 0.19 0.00 0.03 0.00 imp:pre:2s;ind:pre:3s; +revitaliser revitaliser ver 0.19 0.00 0.15 0.00 inf; +revitalisera revitaliser ver 0.19 0.00 0.01 0.00 ind:fut:3s; +revivaient revivre ver 10.37 20.68 0.01 0.47 ind:imp:3p; +revivais revivre ver 10.37 20.68 0.03 0.47 ind:imp:1s;ind:imp:2s; +revivait revivre ver 10.37 20.68 0.28 2.23 ind:imp:3s; +revival revival nom m s 0.14 0.00 0.14 0.00 +revivant revivre ver 10.37 20.68 0.12 0.95 par:pre; +revive revivre ver 10.37 20.68 0.47 0.07 sub:pre:1s;sub:pre:3s; +revivent revivre ver 10.37 20.68 0.57 0.34 ind:pre:3p; +revivez revivre ver 10.37 20.68 0.14 0.00 imp:pre:2p;ind:pre:2p; +revivifiant revivifier ver 0.06 0.20 0.04 0.00 par:pre; +revivifie revivifier ver 0.06 0.20 0.01 0.07 ind:pre:1s;ind:pre:3s; +revivifier revivifier ver 0.06 0.20 0.01 0.00 inf; +revivifié revivifié adj m s 0.00 0.07 0.00 0.07 +revivifiée revivifier ver f s 0.06 0.20 0.00 0.07 par:pas; +revivifiées revivifier ver f p 0.06 0.20 0.00 0.07 par:pas; +revivions revivre ver 10.37 20.68 0.01 0.07 ind:imp:1p; +reviviscence reviviscence nom f s 0.00 0.07 0.00 0.07 +revivons revivre ver 10.37 20.68 0.02 0.00 ind:pre:1p; +revivra revivre ver 10.37 20.68 0.13 0.20 ind:fut:3s; +revivrai revivre ver 10.37 20.68 0.14 0.14 ind:fut:1s; +revivraient revivre ver 10.37 20.68 0.01 0.14 cnd:pre:3p; +revivrais revivre ver 10.37 20.68 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +revivrait revivre ver 10.37 20.68 0.02 0.34 cnd:pre:3s; +revivras revivre ver 10.37 20.68 0.03 0.00 ind:fut:2s; +revivre revivre ver 10.37 20.68 6.04 8.45 inf; +revivrez revivre ver 10.37 20.68 0.05 0.00 ind:fut:2p; +revivrons revivre ver 10.37 20.68 0.14 0.07 ind:fut:1p; +revoici revoici pre 0.67 1.62 0.67 1.62 +revoie revoir ver 162.83 139.46 3.92 2.16 sub:pre:1s;sub:pre:3s; +revoient revoir ver 162.83 139.46 0.10 0.41 ind:pre:3p;sub:pre:3p; +revoies revoir ver 162.83 139.46 0.15 0.00 sub:pre:2s; +revoilà revoilà pre 7.56 3.04 7.56 3.04 +revoir revoir nom m s 262.05 36.01 262.05 36.01 +revois revoir ver 162.83 139.46 10.32 17.77 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revoit revoir ver 162.83 139.46 5.92 5.81 ind:pre:3s; +revolait revoler ver 0.08 0.20 0.00 0.07 ind:imp:3s; +revole revoler ver 0.08 0.20 0.01 0.07 ind:pre:3s; +revolent revoler ver 0.08 0.20 0.00 0.07 ind:pre:3p; +revoler revoler ver 0.08 0.20 0.03 0.00 inf; +revolera revoler ver 0.08 0.20 0.02 0.00 ind:fut:3s; +revolé revoler ver m s 0.08 0.20 0.02 0.00 par:pas; +revolver revolver nom m s 30.74 25.20 28.05 23.31 +revolvers revolver nom m p 30.74 25.20 2.69 1.89 +revomir revomir ver 0.01 0.07 0.01 0.00 inf; +revomissant revomir ver 0.01 0.07 0.00 0.07 par:pre; +revoter revoter ver 0.03 0.00 0.03 0.00 inf; +revoulait revouloir ver 0.45 0.41 0.01 0.14 ind:imp:3s; +revoulez revouloir ver 0.45 0.41 0.14 0.00 ind:pre:2p; +revouloir revouloir ver 0.45 0.41 0.00 0.07 inf; +revoyaient revoir ver 162.83 139.46 0.00 0.34 ind:imp:3p; +revoyais revoir ver 162.83 139.46 0.96 4.73 ind:imp:1s;ind:imp:2s; +revoyait revoir ver 162.83 139.46 0.40 9.73 ind:imp:3s; +revoyant revoir ver 162.83 139.46 0.39 1.82 par:pre; +revoyez revoir ver 162.83 139.46 0.95 0.14 imp:pre:2p;ind:pre:2p; +revoyiez revoir ver 162.83 139.46 0.11 0.00 ind:imp:2p;sub:pre:2p; +revoyions revoir ver 162.83 139.46 0.18 0.14 ind:imp:1p; +revoyons revoir ver 162.83 139.46 1.44 0.41 imp:pre:1p;ind:pre:1p; +revoyure revoyure nom f s 0.28 0.47 0.28 0.47 +revu revoir ver m s 162.83 139.46 14.38 14.80 par:pas; +revêche revêche adj s 0.28 1.76 0.23 1.35 +revêches revêche adj p 0.28 1.76 0.05 0.41 +revécu revivre ver m s 10.37 20.68 0.27 0.27 par:pas; +revécue revivre ver f s 10.37 20.68 0.00 0.07 par:pas; +revécues revécu adj f p 0.00 0.07 0.00 0.07 +revécurent revivre ver 10.37 20.68 0.00 0.07 ind:pas:3p; +revécut revivre ver 10.37 20.68 0.00 0.41 ind:pas:3s; +revue revue nom f s 10.10 33.92 7.79 25.14 +revues revue nom f p 10.10 33.92 2.31 8.78 +revuistes revuiste nom p 0.01 0.00 0.01 0.00 +revérifier revérifier ver 0.67 0.00 0.57 0.00 inf; +revérifié revérifié adj m s 0.34 0.07 0.25 0.07 +revus revoir ver m p 162.83 139.46 2.02 3.31 par:pas; +revêt revêtir ver 2.68 26.08 0.25 2.09 ind:pre:3s; +revêtît revêtir ver 2.68 26.08 0.00 0.07 sub:imp:3s; +revêtaient revêtir ver 2.68 26.08 0.04 0.68 ind:imp:3p; +revêtais revêtir ver 2.68 26.08 0.00 0.20 ind:imp:1s; +revêtait revêtir ver 2.68 26.08 0.02 2.97 ind:imp:3s; +revêtant revêtir ver 2.68 26.08 0.01 0.88 par:pre; +revêtement revêtement nom m s 1.11 0.74 0.99 0.68 +revêtements revêtement nom m p 1.11 0.74 0.12 0.07 +revêtent revêtir ver 2.68 26.08 0.11 0.61 ind:pre:3p; +revêtez revêtir ver 2.68 26.08 0.32 0.07 imp:pre:2p; +revêtir revêtir ver 2.68 26.08 0.60 3.11 inf; +revêtira revêtir ver 2.68 26.08 0.02 0.14 ind:fut:3s; +revêtirait revêtir ver 2.68 26.08 0.00 0.41 cnd:pre:3s; +revêtirent revêtir ver 2.68 26.08 0.00 0.14 ind:pas:3p; +revêtiront revêtir ver 2.68 26.08 0.00 0.07 ind:fut:3p; +revêtis revêtir ver 2.68 26.08 0.01 0.20 ind:pas:1s; +revêtit revêtir ver 2.68 26.08 0.01 1.15 ind:pas:3s; +revêts revêtir ver 2.68 26.08 0.03 0.07 ind:pre:1s;ind:pre:2s; +revêtu revêtir ver m s 2.68 26.08 1.16 8.45 par:pas; +revêtue revêtir ver f s 2.68 26.08 0.02 2.36 par:pas; +revêtues revêtir ver f p 2.68 26.08 0.00 0.41 par:pas; +revêtus revêtir ver m p 2.68 26.08 0.07 2.03 par:pas; +rewrité rewriter ver m s 0.00 0.07 0.00 0.07 par:pas; +rex rex nom m 10.57 1.28 10.57 1.28 +rexiste rexiste adj f s 0.01 0.00 0.01 0.00 +rexistes rexiste nom p 0.00 0.07 0.00 0.07 +rez_de_chaussée rez_de_chaussée nom m 2.34 16.96 2.34 16.96 +rez_de_jardin rez_de_jardin nom m 0.01 0.00 0.01 0.00 +rez rez pre 0.36 0.34 0.36 0.34 +rezzou rezzou nom m s 0.00 0.20 0.00 0.07 +rezzous rezzou nom m p 0.00 0.20 0.00 0.14 +rhô rhô nom m 0.01 0.00 0.01 0.00 +rhabilla rhabiller ver 5.50 9.53 0.00 0.95 ind:pas:3s; +rhabillage rhabillage nom m s 0.01 0.00 0.01 0.00 +rhabillaient rhabiller ver 5.50 9.53 0.00 0.14 ind:imp:3p; +rhabillais rhabiller ver 5.50 9.53 0.03 0.00 ind:imp:1s;ind:imp:2s; +rhabillait rhabiller ver 5.50 9.53 0.01 0.20 ind:imp:3s; +rhabillant rhabiller ver 5.50 9.53 0.14 0.68 par:pre; +rhabille rhabiller ver 5.50 9.53 0.79 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +rhabillent rhabiller ver 5.50 9.53 0.00 0.20 ind:pre:3p; +rhabiller rhabiller ver 5.50 9.53 2.22 3.45 inf; +rhabilles rhabiller ver 5.50 9.53 0.28 0.14 ind:pre:2s; +rhabilleur rhabilleur nom m s 0.00 0.07 0.00 0.07 +rhabillez rhabiller ver 5.50 9.53 1.42 0.14 imp:pre:2p;ind:pre:2p; +rhabilliez rhabiller ver 5.50 9.53 0.01 0.00 ind:imp:2p; +rhabillons rhabiller ver 5.50 9.53 0.02 0.00 imp:pre:1p; +rhabillèrent rhabiller ver 5.50 9.53 0.00 0.20 ind:pas:3p; +rhabillé rhabiller ver m s 5.50 9.53 0.41 0.68 par:pas; +rhabillée rhabiller ver f s 5.50 9.53 0.17 0.74 par:pas; +rhabillées rhabiller ver f p 5.50 9.53 0.01 0.07 par:pas; +rhabillés rhabiller ver m p 5.50 9.53 0.00 0.54 par:pas; +rhapsodie rhapsodie nom f s 0.07 0.41 0.07 0.34 +rhapsodies rhapsodie nom f p 0.07 0.41 0.00 0.07 +rhingraves rhingrave nom m p 0.00 0.07 0.00 0.07 +rhinite rhinite nom f s 0.03 0.14 0.03 0.07 +rhinites rhinite nom f p 0.03 0.14 0.00 0.07 +rhino rhino nom m s 0.90 0.61 0.83 0.54 +rhinocéros rhinocéros nom m 2.51 2.50 2.51 2.50 +rhinoplastie rhinoplastie nom f s 0.23 0.00 0.23 0.00 +rhinos rhino nom m p 0.90 0.61 0.07 0.07 +rhinoscopie rhinoscopie nom f s 0.10 0.00 0.10 0.00 +rhizome rhizome nom m s 0.01 0.00 0.01 0.00 +rhizopus rhizopus nom m 0.04 0.00 0.04 0.00 +rho rho nom m s 0.06 0.00 0.06 0.00 +rhodamine rhodamine nom f s 0.01 0.00 0.01 0.00 +rhodanien rhodanien adj m s 0.00 0.14 0.00 0.14 +rhodia rhodia nom m s 0.00 0.07 0.00 0.07 +rhodium rhodium nom m s 0.04 0.00 0.04 0.00 +rhodo rhodo nom m s 0.00 0.07 0.00 0.07 +rhodoïd rhodoïd nom m s 0.00 0.14 0.00 0.14 +rhododendron rhododendron nom m s 0.06 0.81 0.02 0.07 +rhododendrons rhododendron nom m p 0.06 0.81 0.04 0.74 +rhombe rhombe nom m s 0.00 0.07 0.00 0.07 +rhomboïdal rhomboïdal adj m s 0.00 0.14 0.00 0.14 +rhomboïdes rhomboïde nom m p 0.00 0.07 0.00 0.07 +rhovyl rhovyl nom m s 0.00 0.07 0.00 0.07 +rhubarbe rhubarbe nom f s 0.26 6.55 0.26 6.49 +rhubarbes rhubarbe nom f p 0.26 6.55 0.00 0.07 +rhum rhum nom m s 6.29 12.70 6.29 12.70 +rhumatisant rhumatisant adj m s 0.14 0.61 0.00 0.34 +rhumatisante rhumatisant adj f s 0.14 0.61 0.14 0.07 +rhumatisants rhumatisant adj m p 0.14 0.61 0.00 0.20 +rhumatismal rhumatismal adj m s 0.03 0.20 0.00 0.07 +rhumatismale rhumatismal adj f s 0.03 0.20 0.03 0.07 +rhumatismales rhumatismal adj f p 0.03 0.20 0.00 0.07 +rhumatisme rhumatisme nom m s 2.31 3.78 0.96 0.95 +rhumatismes rhumatisme nom m p 2.31 3.78 1.35 2.84 +rhumatoïde rhumatoïde adj f s 0.01 0.00 0.01 0.00 +rhumatologie rhumatologie nom f s 0.16 0.00 0.16 0.00 +rhumatologue rhumatologue nom s 0.04 0.00 0.04 0.00 +rhumbs rhumb nom m p 0.00 0.14 0.00 0.14 +rhume rhume nom m s 8.17 5.61 7.72 4.93 +rhumerie rhumerie nom f s 0.03 0.14 0.03 0.14 +rhumes rhume nom m p 8.17 5.61 0.45 0.68 +rhénan rhénan adj m s 0.00 1.69 0.00 0.20 +rhénane rhénan adj f s 0.00 1.69 0.00 0.41 +rhénans rhénan adj m p 0.00 1.69 0.00 1.08 +rhéostat rhéostat nom m s 0.00 0.34 0.00 0.34 +rhésus rhésus nom m 0.37 0.14 0.37 0.14 +rhéteur rhéteur nom m s 0.00 0.47 0.00 0.20 +rhéteurs rhéteur nom m p 0.00 0.47 0.00 0.27 +rhétoricien rhétoricien adj m s 0.01 0.00 0.01 0.00 +rhétorique rhétorique nom f s 0.89 2.03 0.88 2.03 +rhétoriques rhétorique adj f p 0.48 0.47 0.04 0.20 +rhynchites rhynchite nom m p 0.00 0.07 0.00 0.07 +rhyolite rhyolite nom f s 0.02 0.00 0.02 0.00 +rhythm_n_blues rhythm_n_blues nom m 0.02 0.00 0.02 0.00 +rhythm_and_blues rhythm_and_blues nom m 0.08 0.00 0.08 0.00 +ri rire ver m s 140.25 320.54 8.22 15.00 par:pas; +ria ria nom f s 2.21 0.00 2.21 0.00 +riaient rire ver 140.25 320.54 1.60 12.70 ind:imp:3p; +riais rire ver 140.25 320.54 1.32 3.85 ind:imp:1s;ind:imp:2s; +riait rire ver 140.25 320.54 3.34 37.97 ind:imp:3s; +rial rial nom m s 0.04 0.00 0.01 0.00 +rials rial nom m p 0.04 0.00 0.03 0.00 +riant rire ver 140.25 320.54 1.89 41.96 par:pre; +riante riant adj f s 0.53 3.04 0.28 1.01 +riantes riant adj f p 0.53 3.04 0.10 0.34 +riants riant adj m p 0.53 3.04 0.00 0.34 +ribambelle ribambelle nom f s 0.82 2.36 0.81 1.82 +ribambelles ribambelle nom f p 0.82 2.36 0.01 0.54 +ribaud ribaud nom m s 0.15 0.47 0.14 0.07 +ribaude ribaud adj f s 1.06 0.27 0.68 0.14 +ribaudes ribaud adj f p 1.06 0.27 0.38 0.14 +ribauds ribaud nom m p 0.15 0.47 0.01 0.41 +ribes ribes nom m 0.14 0.00 0.14 0.00 +rible ribler ver 0.00 0.07 0.00 0.07 ind:pre:3s; +ribleur ribleur nom m s 0.00 0.07 0.00 0.07 +riboflavine riboflavine nom f s 0.05 0.00 0.05 0.00 +ribosomes ribosome nom m p 0.19 0.00 0.19 0.00 +ribot ribot nom m s 0.00 0.20 0.00 0.07 +ribote ribot nom f s 0.00 0.20 0.00 0.14 +riboter riboter ver 0.00 0.07 0.00 0.07 inf; +riboteur riboteur nom m s 0.01 0.00 0.01 0.00 +ribouis ribouis nom m 0.00 0.20 0.00 0.20 +riboulait ribouler ver 0.01 0.27 0.01 0.07 ind:imp:3s; +riboulant ribouler ver 0.01 0.27 0.00 0.14 par:pre; +riboulants riboulant adj m p 0.00 0.07 0.00 0.07 +ribouldingue ribouldingue nom f s 0.02 0.41 0.02 0.41 +ribouler ribouler ver 0.01 0.27 0.00 0.07 inf; +ric_à_rac ric_à_rac adv 0.00 0.20 0.00 0.20 +ric_rac ric_rac adv 0.04 0.47 0.04 0.47 +ric_et_rac ric_et_rac adv 0.00 0.61 0.00 0.61 +ricain ricain nom m s 2.55 1.08 0.33 0.14 +ricaine ricain adj f s 0.36 0.41 0.14 0.00 +ricaines ricain adj f p 0.36 0.41 0.01 0.00 +ricains ricain nom m p 2.55 1.08 2.22 0.88 +ricana ricaner ver 2.04 30.61 0.02 7.50 ind:pas:3s; +ricanai ricaner ver 2.04 30.61 0.00 0.14 ind:pas:1s; +ricanaient ricaner ver 2.04 30.61 0.02 0.68 ind:imp:3p; +ricanais ricaner ver 2.04 30.61 0.02 0.61 ind:imp:1s;ind:imp:2s; +ricanait ricaner ver 2.04 30.61 0.04 3.85 ind:imp:3s; +ricanant ricaner ver 2.04 30.61 0.03 4.12 par:pre; +ricanante ricanant adj f s 0.11 1.89 0.00 0.54 +ricanantes ricanant adj f p 0.11 1.89 0.10 0.47 +ricanants ricanant adj m p 0.11 1.89 0.00 0.27 +ricane ricaner ver 2.04 30.61 1.17 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ricanement ricanement nom m s 0.39 10.14 0.27 6.96 +ricanements ricanement nom m p 0.39 10.14 0.12 3.18 +ricanent ricaner ver 2.04 30.61 0.08 0.81 ind:pre:3p; +ricaner ricaner ver 2.04 30.61 0.33 4.59 inf; +ricaneraient ricaner ver 2.04 30.61 0.00 0.07 cnd:pre:3p; +ricaneront ricaner ver 2.04 30.61 0.01 0.00 ind:fut:3p; +ricanes ricaner ver 2.04 30.61 0.20 0.20 ind:pre:2s; +ricaneur ricaneur nom m s 0.03 0.27 0.03 0.14 +ricaneurs ricaneur adj m p 0.00 0.68 0.00 0.34 +ricaneuse ricaneur adj f s 0.00 0.68 0.00 0.14 +ricanions ricaner ver 2.04 30.61 0.00 0.14 ind:imp:1p; +ricanèrent ricaner ver 2.04 30.61 0.00 0.47 ind:pas:3p; +ricané ricaner ver m s 2.04 30.61 0.12 2.09 par:pas;par:pas;par:pas; +ricassant ricasser ver 0.00 0.14 0.00 0.07 par:pre; +ricasser ricasser ver 0.00 0.14 0.00 0.07 inf; +richard richard adj m s 3.57 0.81 2.01 0.20 +richarde richard nom f s 2.05 1.08 0.01 0.00 +richards richard adj m p 3.57 0.81 1.56 0.61 +riche riche adj s 73.85 65.47 54.28 42.57 +richelieu richelieu nom m s 0.05 0.14 0.02 0.00 +richelieus richelieu nom m p 0.05 0.14 0.03 0.14 +richement richement adv 0.22 1.76 0.22 1.76 +riches riche adj p 73.85 65.47 19.57 22.91 +richesse richesse nom f s 13.21 22.16 8.44 14.66 +richesses richesse nom f p 13.21 22.16 4.76 7.50 +richissime richissime adj s 0.39 1.08 0.35 0.74 +richissimes richissime adj f p 0.39 1.08 0.04 0.34 +richomme richomme nom m s 0.00 0.74 0.00 0.74 +ricin ricin nom m s 0.28 0.47 0.28 0.47 +ricocha ricocher ver 0.70 2.16 0.00 0.27 ind:pas:3s; +ricochaient ricocher ver 0.70 2.16 0.20 0.14 ind:imp:3p; +ricochait ricocher ver 0.70 2.16 0.00 0.14 ind:imp:3s; +ricochant ricocher ver 0.70 2.16 0.00 0.41 par:pre; +ricoche ricocher ver 0.70 2.16 0.10 0.14 ind:pre:3s; +ricochent ricocher ver 0.70 2.16 0.04 0.41 ind:pre:3p; +ricocher ricocher ver 0.70 2.16 0.08 0.54 inf; +ricochet ricochet nom m s 1.03 2.09 0.44 0.74 +ricochets ricochet nom m p 1.03 2.09 0.59 1.35 +ricoché ricocher ver m s 0.70 2.16 0.27 0.14 par:pas; +ricotta ricotta nom f s 0.45 0.00 0.45 0.00 +rictus rictus nom m 0.25 6.35 0.25 6.35 +rida rider ver 2.06 3.99 0.00 0.34 ind:pas:3s; +ridaient rider ver 2.06 3.99 0.00 0.07 ind:imp:3p; +ridait rider ver 2.06 3.99 0.01 0.41 ind:imp:3s; +ridant rider ver 2.06 3.99 0.01 0.14 par:pre; +ride ride nom f s 4.20 24.26 1.18 3.51 +rideau rideau nom m s 19.11 84.53 10.81 43.65 +rideaux rideau nom m p 19.11 84.53 8.29 37.97 +ridelle rideau nom f s 19.11 84.53 0.01 0.81 +ridelles rideau nom f p 19.11 84.53 0.00 2.09 +rident rider ver 2.06 3.99 0.01 0.00 ind:pre:3p; +rider rider ver 2.06 3.99 1.05 0.47 inf; +rides ride nom f p 4.20 24.26 3.02 20.74 +ridicule ridicule adj s 61.57 45.54 57.05 36.49 +ridiculement ridiculement adv 0.30 2.57 0.30 2.57 +ridicules ridicule adj p 61.57 45.54 4.53 9.05 +ridiculisa ridiculiser ver 7.54 4.32 0.00 0.07 ind:pas:3s; +ridiculisaient ridiculiser ver 7.54 4.32 0.00 0.20 ind:imp:3p; +ridiculisais ridiculiser ver 7.54 4.32 0.01 0.14 ind:imp:1s; +ridiculisait ridiculiser ver 7.54 4.32 0.03 0.34 ind:imp:3s; +ridiculisant ridiculiser ver 7.54 4.32 0.02 0.34 par:pre; +ridiculisation ridiculisation nom f s 0.01 0.00 0.01 0.00 +ridiculise ridiculiser ver 7.54 4.32 1.16 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ridiculisent ridiculiser ver 7.54 4.32 0.33 0.14 ind:pre:3p; +ridiculiser ridiculiser ver 7.54 4.32 3.02 1.69 inf; +ridiculisera ridiculiser ver 7.54 4.32 0.03 0.07 ind:fut:3s; +ridiculiserai ridiculiser ver 7.54 4.32 0.16 0.00 ind:fut:1s; +ridiculiserais ridiculiser ver 7.54 4.32 0.02 0.00 cnd:pre:1s; +ridiculiserait ridiculiser ver 7.54 4.32 0.01 0.07 cnd:pre:3s; +ridiculiseras ridiculiser ver 7.54 4.32 0.03 0.00 ind:fut:2s; +ridiculises ridiculiser ver 7.54 4.32 0.54 0.07 ind:pre:2s;sub:pre:2s; +ridiculisez ridiculiser ver 7.54 4.32 0.38 0.00 imp:pre:2p;ind:pre:2p; +ridiculisiez ridiculiser ver 7.54 4.32 0.01 0.00 ind:imp:2p; +ridiculisé ridiculiser ver m s 7.54 4.32 1.09 0.61 par:pas; +ridiculisée ridiculiser ver f s 7.54 4.32 0.51 0.07 par:pas; +ridiculisées ridiculiser ver f p 7.54 4.32 0.10 0.07 par:pas; +ridiculisés ridiculiser ver m p 7.54 4.32 0.10 0.14 par:pas; +ridiculités ridiculité nom f p 0.14 0.00 0.14 0.00 +ridé ridé adj m s 1.04 7.16 0.45 2.77 +ridée ridé adj f s 1.04 7.16 0.30 2.16 +ridées ridé adj f p 1.04 7.16 0.14 1.49 +ridule ridule nom f s 0.16 0.07 0.01 0.00 +ridules ridule nom f p 0.16 0.07 0.15 0.07 +ridés ridé adj m p 1.04 7.16 0.16 0.74 +rie rire ver 140.25 320.54 1.09 0.81 sub:pre:1s;sub:pre:3s; +riel riel nom m s 0.16 0.00 0.16 0.00 +rien rien pro_ind s 2374.91 1522.91 2374.91 1522.91 +riens rien nom_sup m p 7.26 24.19 0.62 3.38 +rient rire ver 140.25 320.54 5.17 5.54 ind:pre:3p; +ries rire ver 140.25 320.54 0.10 0.20 sub:pre:2s; +riesling riesling nom m s 0.71 0.20 0.71 0.20 +rieur rieur adj m s 0.45 4.93 0.41 2.84 +rieurs rieur adj m p 0.45 4.93 0.04 2.09 +rieuse rieux adj f s 0.07 4.12 0.06 3.24 +rieuses rieux adj f p 0.07 4.12 0.01 0.88 +riez rire ver 140.25 320.54 8.51 3.04 imp:pre:2p;ind:pre:2p; +rif rif nom m s 0.07 1.42 0.07 1.42 +rifain rifain nom m s 0.03 0.00 0.01 0.00 +rifains rifain nom m p 0.03 0.00 0.02 0.00 +riff riff nom m s 0.53 0.27 0.43 0.20 +riffaude riffauder ver 0.00 0.20 0.00 0.07 ind:pre:1s; +riffauder riffauder ver 0.00 0.20 0.00 0.07 inf; +riffaudé riffauder ver m s 0.00 0.20 0.00 0.07 par:pas; +riffs riff nom m p 0.53 0.27 0.10 0.07 +rififi rififi nom m s 0.09 0.47 0.09 0.47 +riflard riflard nom m s 0.01 0.41 0.01 0.41 +rifle rifle nom m s 0.12 0.74 0.02 0.74 +rifles rifle nom m p 0.12 0.74 0.10 0.00 +riflette riflette nom f s 0.00 0.61 0.00 0.61 +rift rift nom m s 0.03 0.20 0.03 0.20 +rigaudon rigaudon nom m s 0.01 0.07 0.01 0.00 +rigaudons rigaudon nom m p 0.01 0.07 0.00 0.07 +rigide rigide adj s 3.27 9.93 2.96 6.42 +rigidement rigidement adv 0.00 0.14 0.00 0.14 +rigides rigide adj p 3.27 9.93 0.32 3.51 +rigidifier rigidifier ver 0.01 0.00 0.01 0.00 inf; +rigidité rigidité nom f s 0.88 1.89 0.88 1.82 +rigidités rigidité nom f p 0.88 1.89 0.00 0.07 +rigodon rigodon nom m s 0.00 0.61 0.00 0.61 +rigola rigoler ver 47.56 33.85 0.02 1.42 ind:pas:3s; +rigolade rigolade nom f s 2.43 9.19 2.41 8.38 +rigolades rigolade nom f p 2.43 9.19 0.02 0.81 +rigolage rigolage nom m s 0.00 0.07 0.00 0.07 +rigolaient rigoler ver 47.56 33.85 0.47 0.74 ind:imp:3p; +rigolais rigoler ver 47.56 33.85 1.32 0.47 ind:imp:1s;ind:imp:2s; +rigolait rigoler ver 47.56 33.85 1.00 3.11 ind:imp:3s; +rigolant rigoler ver 47.56 33.85 0.23 2.64 par:pre; +rigolard rigolard adj m s 0.01 2.70 0.01 1.69 +rigolarde rigolard nom f s 0.01 0.34 0.01 0.00 +rigolardes rigolard adj f p 0.01 2.70 0.00 0.20 +rigolards rigolard adj m p 0.01 2.70 0.00 0.41 +rigole rigoler ver 47.56 33.85 12.08 6.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rigolent rigoler ver 47.56 33.85 1.46 0.95 ind:pre:3p; +rigoler rigoler ver 47.56 33.85 10.48 9.80 inf; +rigolera rigoler ver 47.56 33.85 0.19 0.54 ind:fut:3s; +rigolerai rigoler ver 47.56 33.85 0.17 0.00 ind:fut:1s; +rigoleraient rigoler ver 47.56 33.85 0.03 0.07 cnd:pre:3p; +rigolerais rigoler ver 47.56 33.85 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +rigolerait rigoler ver 47.56 33.85 0.07 0.27 cnd:pre:3s; +rigoleras rigoler ver 47.56 33.85 0.24 0.07 ind:fut:2s; +rigolerez rigoler ver 47.56 33.85 0.03 0.00 ind:fut:2p; +rigoleront rigoler ver 47.56 33.85 0.02 0.00 ind:fut:3p; +rigoles rigoler ver 47.56 33.85 13.56 3.31 ind:pre:2s;sub:pre:2s; +rigoleur rigoleur adj m s 0.00 0.07 0.00 0.07 +rigolez rigoler ver 47.56 33.85 3.90 0.68 imp:pre:2p;ind:pre:2p; +rigoliez rigoler ver 47.56 33.85 0.07 0.07 ind:imp:2p; +rigolions rigoler ver 47.56 33.85 0.01 0.07 ind:imp:1p; +rigollot rigollot nom m s 0.00 0.07 0.00 0.07 +rigolo rigolo adj m s 6.25 3.85 5.00 2.64 +rigolons rigoler ver 47.56 33.85 0.11 0.07 imp:pre:1p;ind:pre:1p; +rigolos rigolo nom m p 3.99 2.30 1.17 0.88 +rigolote rigolo adj f s 6.25 3.85 0.73 0.27 +rigolotes rigolo adj f p 6.25 3.85 0.23 0.14 +rigolèrent rigoler ver 47.56 33.85 0.00 0.34 ind:pas:3p; +rigolé rigoler ver m s 47.56 33.85 1.82 2.77 par:pas; +rigorisme rigorisme nom m s 0.00 0.20 0.00 0.20 +rigoriste rigoriste adj f s 0.14 0.20 0.14 0.20 +rigoristes rigoriste nom p 0.00 0.07 0.00 0.07 +rigoureuse rigoureux adj f s 1.94 8.31 0.27 3.38 +rigoureusement rigoureusement adv 0.23 4.73 0.23 4.73 +rigoureuses rigoureux adj f p 1.94 8.31 0.17 1.55 +rigoureux rigoureux adj m 1.94 8.31 1.50 3.38 +rigueur rigueur nom f s 4.87 40.34 4.72 37.77 +rigueurs rigueur nom f p 4.87 40.34 0.15 2.57 +riiez rire ver 140.25 320.54 0.00 0.14 ind:imp:2p; +riions rire ver 140.25 320.54 0.00 1.15 ind:imp:1p; +rikiki rikiki adj m s 0.09 2.97 0.09 2.97 +rillettes rillettes nom f p 0.17 2.43 0.17 2.43 +rillons rillons nom m p 0.00 0.41 0.00 0.41 +rima rimer ver 6.89 5.27 0.00 0.34 ind:pas:3s; +rimaient rimer ver 6.89 5.27 0.02 0.20 ind:imp:3p; +rimaillerie rimaillerie nom f s 0.00 0.07 0.00 0.07 +rimailles rimailler ver 0.01 0.07 0.01 0.07 ind:pre:2s; +rimailleur rimailleur nom m s 0.01 0.07 0.01 0.00 +rimailleurs rimailleur nom m p 0.01 0.07 0.00 0.07 +rimait rimer ver 6.89 5.27 0.28 1.08 ind:imp:3s; +rimante rimant adj f s 0.00 0.07 0.00 0.07 +rimaye rimaye nom f s 0.01 0.00 0.01 0.00 +rimbaldien rimbaldien adj m s 0.00 0.07 0.00 0.07 +rime rimer ver 6.89 5.27 5.66 2.36 imp:pre:2s;ind:pre:3s; +riment rimer ver 6.89 5.27 0.50 0.20 ind:pre:3p; +rimer rimer ver 6.89 5.27 0.15 0.27 inf; +rimes rime nom f p 3.08 2.16 1.75 1.22 +rimeur rimeur nom m s 0.04 0.00 0.02 0.00 +rimeurs rimeur nom m p 0.04 0.00 0.01 0.00 +rimeuse rimeur nom f s 0.04 0.00 0.01 0.00 +rimez rimer ver 6.89 5.27 0.03 0.07 imp:pre:2p;ind:pre:2p; +rimions rimer ver 6.89 5.27 0.00 0.07 ind:imp:1p; +rimmel rimmel nom m s 0.16 3.04 0.16 3.04 +rimé rimer ver m s 6.89 5.27 0.22 0.27 par:pas; +rimée rimer ver f s 6.89 5.27 0.00 0.20 par:pas; +rimés rimer ver m p 6.89 5.27 0.01 0.20 par:pas; +rince_bouche rince_bouche nom m 0.03 0.00 0.03 0.00 +rince_doigts rince_doigts nom m 0.08 0.27 0.08 0.27 +rince rincer ver 4.46 11.15 1.29 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rinceau rinceau nom m s 0.00 0.68 0.00 0.07 +rinceaux rinceau nom m p 0.00 0.68 0.00 0.61 +rincent rincer ver 4.46 11.15 0.16 0.34 ind:pre:3p; +rincer rincer ver 4.46 11.15 1.86 3.18 inf; +rincera rincer ver 4.46 11.15 0.01 0.00 ind:fut:3s; +rincerai rincer ver 4.46 11.15 0.10 0.07 ind:fut:1s; +rinceraient rincer ver 4.46 11.15 0.00 0.07 cnd:pre:3p; +rinces rincer ver 4.46 11.15 0.28 0.07 ind:pre:2s; +rincette rincette nom f s 0.00 0.27 0.00 0.27 +rinceur rinceur nom m s 0.00 0.07 0.00 0.07 +rincez rincer ver 4.46 11.15 0.27 0.07 imp:pre:2p;ind:pre:2p; +rincèrent rincer ver 4.46 11.15 0.00 0.07 ind:pas:3p; +rincé rincer ver m s 4.46 11.15 0.18 1.28 par:pas; +rincée rincer ver f s 4.46 11.15 0.02 0.20 par:pas; +rincées rincer ver f p 4.46 11.15 0.02 0.07 par:pas; +rincés rincer ver m p 4.46 11.15 0.14 0.68 par:pas; +rinforzando rinforzando adv 0.00 0.07 0.00 0.07 +ring ring nom m s 6.49 4.66 6.19 4.39 +ringard ringard adj m s 2.94 1.42 1.99 0.88 +ringarde ringard adj f s 2.94 1.42 0.27 0.27 +ringardes ringard adj f p 2.94 1.42 0.39 0.00 +ringardise ringardise nom f s 0.06 0.14 0.04 0.14 +ringardises ringardise nom f p 0.06 0.14 0.01 0.00 +ringards ringard nom m p 2.54 0.95 0.64 0.20 +rings ring nom m p 6.49 4.66 0.29 0.27 +rink rink nom m s 0.14 2.84 0.14 2.84 +rinker rinker ver 0.02 0.00 0.02 0.00 inf; +rinça rincer ver 4.46 11.15 0.00 1.15 ind:pas:3s; +rinçage rinçage nom m s 0.43 0.74 0.28 0.68 +rinçages rinçage nom m p 0.43 0.74 0.14 0.07 +rinçaient rincer ver 4.46 11.15 0.00 0.07 ind:imp:3p; +rinçais rincer ver 4.46 11.15 0.01 0.14 ind:imp:1s;ind:imp:2s; +rinçait rincer ver 4.46 11.15 0.01 1.42 ind:imp:3s; +rinçant rincer ver 4.46 11.15 0.11 0.27 par:pre; +rioja rioja nom m s 0.01 0.00 0.01 0.00 +rions rire ver 140.25 320.54 0.63 1.49 imp:pre:1p;ind:pre:1p; +ripa riper ver 0.35 0.81 0.00 0.07 ind:pas:3s; +ripaillait ripailler ver 0.14 0.81 0.00 0.07 ind:imp:3s; +ripaille ripailler ver 0.14 0.81 0.14 0.20 ind:pre:3s; +ripailler ripailler ver 0.14 0.81 0.00 0.20 inf; +ripailles ripaille nom f p 0.20 1.62 0.14 0.54 +ripaillons ripailler ver 0.14 0.81 0.00 0.07 ind:pre:1p; +ripaillé ripailler ver m s 0.14 0.81 0.00 0.27 par:pas; +ripant riper ver 0.35 0.81 0.00 0.14 par:pre; +ripaton ripaton nom m s 0.01 0.20 0.00 0.07 +ripatons ripaton nom m p 0.01 0.20 0.01 0.14 +ripe ripe nom f s 0.18 0.27 0.18 0.27 +riper riper ver 0.35 0.81 0.03 0.34 inf; +ripes riper ver 0.35 0.81 0.14 0.00 ind:pre:2s; +ripeur ripeur nom m s 0.00 0.07 0.00 0.07 +ripolin ripolin nom m s 0.00 0.41 0.00 0.41 +ripoliner ripoliner ver 0.00 1.55 0.00 0.07 inf; +ripolines ripoliner ver 0.00 1.55 0.00 0.07 ind:pre:2s; +ripoliné ripoliner ver m s 0.00 1.55 0.00 0.41 par:pas; +ripolinée ripoliner ver f s 0.00 1.55 0.00 0.54 par:pas; +ripolinées ripoliner ver f p 0.00 1.55 0.00 0.27 par:pas; +ripolinés ripoliner ver m p 0.00 1.55 0.00 0.20 par:pas; +riposta riposter ver 3.61 5.34 0.01 1.55 ind:pas:3s; +ripostai riposter ver 3.61 5.34 0.00 0.20 ind:pas:1s; +ripostaient riposter ver 3.61 5.34 0.01 0.07 ind:imp:3p; +ripostais riposter ver 3.61 5.34 0.01 0.07 ind:imp:1s; +ripostait riposter ver 3.61 5.34 0.00 0.41 ind:imp:3s; +ripostant riposter ver 3.61 5.34 0.03 0.14 par:pre; +riposte riposte nom f s 1.75 2.97 1.70 2.64 +ripostent riposter ver 3.61 5.34 0.21 0.07 ind:pre:3p; +riposter riposter ver 3.61 5.34 1.41 1.28 inf; +ripostera riposter ver 3.61 5.34 0.05 0.00 ind:fut:3s; +riposterai riposter ver 3.61 5.34 0.19 0.00 ind:fut:1s; +riposterez riposter ver 3.61 5.34 0.02 0.00 ind:fut:2p; +riposterons riposter ver 3.61 5.34 0.05 0.00 ind:fut:1p; +riposteront riposter ver 3.61 5.34 0.08 0.00 ind:fut:3p; +ripostes riposte nom f p 1.75 2.97 0.05 0.34 +ripostez riposter ver 3.61 5.34 0.14 0.00 imp:pre:2p;ind:pre:2p; +ripostions riposter ver 3.61 5.34 0.01 0.00 ind:imp:1p; +ripostons riposter ver 3.61 5.34 0.05 0.00 imp:pre:1p;ind:pre:1p; +riposté riposter ver m s 3.61 5.34 0.60 1.01 par:pas; +ripou ripou adj s 0.66 0.27 0.66 0.27 +ripoux ripoux nom m p 1.54 0.00 1.54 0.00 +ripper ripper nom m s 0.31 0.00 0.31 0.00 +ripé riper ver m s 0.35 0.81 0.19 0.27 par:pas; +ripuaire ripuaire adj s 0.00 0.07 0.00 0.07 +riquiqui riquiqui adj 0.50 0.68 0.50 0.68 +rira rire ver 140.25 320.54 2.99 0.74 ind:fut:3s; +rirai rire ver 140.25 320.54 0.88 0.47 ind:fut:1s; +riraient rire ver 140.25 320.54 0.07 0.27 cnd:pre:3p; +rirais rire ver 140.25 320.54 0.66 0.34 cnd:pre:1s;cnd:pre:2s; +rirait rire ver 140.25 320.54 0.20 0.81 cnd:pre:3s; +riras rire ver 140.25 320.54 0.80 0.07 ind:fut:2s; +rire rire ver 140.25 320.54 63.29 144.19 inf; +rirent rire ver 140.25 320.54 0.01 2.57 ind:pas:3p; +rires rire nom m p 38.88 155.47 16.09 42.91 +rirez rire ver 140.25 320.54 0.60 0.14 ind:fut:2p; +rirons rire ver 140.25 320.54 0.23 0.34 ind:fut:1p; +riront rire ver 140.25 320.54 0.30 0.14 ind:fut:3p; +ris rire ver 140.25 320.54 20.86 8.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rise ris nom f s 1.74 0.34 0.24 0.00 +riser riser nom m s 0.06 0.00 0.06 0.00 +risette risette nom f s 0.75 1.08 0.70 0.81 +risettes risette nom f p 0.75 1.08 0.05 0.27 +risibilité risibilité nom f s 0.01 0.14 0.01 0.14 +risible risible adj s 1.05 3.45 0.88 2.70 +risiblement risiblement adv 0.00 0.07 0.00 0.07 +risibles risible adj p 1.05 3.45 0.17 0.74 +risorius risorius nom m 0.01 0.14 0.01 0.14 +risotto risotto nom m s 0.54 0.07 0.54 0.07 +risqua risquer ver 100.40 99.32 0.45 3.58 ind:pas:3s; +risquai risquer ver 100.40 99.32 0.00 0.81 ind:pas:1s; +risquaient risquer ver 100.40 99.32 0.68 4.66 ind:imp:3p; +risquais risquer ver 100.40 99.32 0.92 3.51 ind:imp:1s;ind:imp:2s; +risquait risquer ver 100.40 99.32 2.59 21.62 ind:imp:3s; +risquant risquer ver 100.40 99.32 0.99 1.82 par:pre; +risque_tout risque_tout adj 0.00 0.07 0.00 0.07 +risque risque nom m s 69.33 50.27 45.98 30.27 +risquent risquer ver 100.40 99.32 4.59 3.85 ind:pre:3p; +risquer risquer ver 100.40 99.32 13.06 14.19 inf; +risquera risquer ver 100.40 99.32 0.38 0.54 ind:fut:3s; +risquerai risquer ver 100.40 99.32 0.30 0.14 ind:fut:1s; +risqueraient risquer ver 100.40 99.32 0.45 0.81 cnd:pre:3p; +risquerais risquer ver 100.40 99.32 1.47 0.88 cnd:pre:1s;cnd:pre:2s; +risquerait risquer ver 100.40 99.32 1.59 3.11 cnd:pre:3s; +risqueras risquer ver 100.40 99.32 0.03 0.07 ind:fut:2s; +risquerez risquer ver 100.40 99.32 0.17 0.07 ind:fut:2p; +risqueriez risquer ver 100.40 99.32 0.32 0.41 cnd:pre:2p; +risquerions risquer ver 100.40 99.32 0.09 0.14 cnd:pre:1p; +risquerons risquer ver 100.40 99.32 0.00 0.07 ind:fut:1p; +risqueront risquer ver 100.40 99.32 0.12 0.20 ind:fut:3p; +risques risque nom m p 69.33 50.27 23.36 20.00 +risquez risquer ver 100.40 99.32 7.54 1.96 imp:pre:2p;ind:pre:2p; +risquiez risquer ver 100.40 99.32 0.20 0.61 ind:imp:2p; +risquions risquer ver 100.40 99.32 0.06 0.74 ind:imp:1p; +risquons risquer ver 100.40 99.32 1.80 0.95 imp:pre:1p;ind:pre:1p; +risquât risquer ver 100.40 99.32 0.00 0.54 sub:imp:3s; +risqué risquer ver m s 100.40 99.32 10.77 5.00 par:pas; +risquée risqué adj f s 8.29 2.70 0.47 0.68 +risquées risqué adj f p 8.29 2.70 0.13 0.27 +risqués risqué adj m p 8.29 2.70 0.08 0.20 +rissolaient rissoler ver 0.01 0.74 0.00 0.14 ind:imp:3p; +rissolait rissoler ver 0.01 0.74 0.00 0.07 ind:imp:3s; +rissole rissole nom f s 0.02 0.34 0.00 0.14 +rissolent rissoler ver 0.01 0.74 0.00 0.14 ind:pre:3p; +rissoler rissoler ver 0.01 0.74 0.01 0.27 inf; +rissoles rissole nom f p 0.02 0.34 0.02 0.20 +rissolé rissoler ver m s 0.01 0.74 0.00 0.07 par:pas; +rissolée rissolé adj f s 0.03 0.34 0.00 0.07 +rissolées rissolé adj f p 0.03 0.34 0.03 0.20 +rissolés rissolé adj m p 0.03 0.34 0.00 0.07 +ristournait ristourner ver 0.14 0.07 0.00 0.07 ind:imp:3s; +ristourne ristourne nom f s 0.54 0.54 0.50 0.54 +ristournes ristourne nom f p 0.54 0.54 0.04 0.00 +risée risée nom f s 2.22 2.50 2.12 1.76 +risées risée nom f p 2.22 2.50 0.10 0.74 +rit rire ver 140.25 320.54 17.47 37.70 ind:pre:3s;ind:pas:3s; +rital rital nom m s 2.66 3.51 1.36 2.09 +ritale rital nom f s 2.66 3.51 0.14 0.34 +ritales rital nom f p 2.66 3.51 0.00 0.14 +ritals rital nom m p 2.66 3.51 1.16 0.95 +rite rite nom m s 5.43 17.84 3.77 8.45 +rites rite nom m p 5.43 17.84 1.66 9.39 +ritournelle ritournelle nom f s 0.03 2.03 0.01 1.28 +ritournelles ritournelle nom f p 0.03 2.03 0.02 0.74 +rittes rittes nom f p 0.00 0.07 0.00 0.07 +ritualisa ritualiser ver 0.01 0.14 0.00 0.07 ind:pas:3s; +ritualisation ritualisation nom f s 0.00 0.07 0.00 0.07 +ritualiste ritualiste adj m s 0.16 0.00 0.01 0.00 +ritualistes ritualiste adj m p 0.16 0.00 0.15 0.00 +ritualisé ritualiser ver m s 0.01 0.14 0.01 0.00 par:pas; +ritualisés ritualiser ver m p 0.01 0.14 0.00 0.07 par:pas; +rituel rituel nom m s 8.82 6.22 7.03 5.54 +rituelle rituel adj f s 3.29 12.97 0.45 4.73 +rituellement rituellement adv 0.14 1.76 0.14 1.76 +rituelles rituel adj f p 3.29 12.97 0.39 2.23 +rituels rituel nom m p 8.82 6.22 1.79 0.68 +riva river ver 3.47 10.88 0.02 0.47 ind:pas:3s; +rivage rivage nom m s 5.46 17.23 4.38 12.36 +rivages rivage nom m p 5.46 17.23 1.08 4.86 +rivaient river ver 3.47 10.88 0.00 0.20 ind:imp:3p; +rivais river ver 3.47 10.88 0.00 0.07 ind:imp:1s; +rivait river ver 3.47 10.88 0.00 0.61 ind:imp:3s; +rival rival nom m s 4.75 10.20 2.68 4.80 +rivale rival nom f s 4.75 10.20 1.23 2.97 +rivales rival adj f p 1.34 4.05 0.44 1.96 +rivalisaient rivaliser ver 1.99 4.39 0.04 1.15 ind:imp:3p; +rivalisait rivaliser ver 1.99 4.39 0.12 0.54 ind:imp:3s; +rivalisant rivaliser ver 1.99 4.39 0.08 0.20 par:pre; +rivalise rivaliser ver 1.99 4.39 0.20 0.20 ind:pre:1s;ind:pre:3s; +rivalisent rivaliser ver 1.99 4.39 0.10 0.41 ind:pre:3p; +rivaliser rivaliser ver 1.99 4.39 1.40 1.55 inf; +rivalisera rivaliser ver 1.99 4.39 0.03 0.00 ind:fut:3s; +rivaliserait rivaliser ver 1.99 4.39 0.01 0.00 cnd:pre:3s; +rivalisèrent rivaliser ver 1.99 4.39 0.00 0.27 ind:pas:3p; +rivalisé rivaliser ver m s 1.99 4.39 0.01 0.07 par:pas; +rivalité rivalité nom f s 2.25 4.93 1.58 2.97 +rivalités rivalité nom f p 2.25 4.93 0.67 1.96 +rivant river ver 3.47 10.88 0.00 0.20 par:pre; +rivaux rival nom m p 4.75 10.20 0.69 1.76 +rive rive nom f s 7.92 46.15 6.03 35.14 +river river ver 3.47 10.88 2.70 1.15 inf; +riverain riverain nom m s 0.36 0.81 0.00 0.07 +riveraines riverain adj f p 0.00 0.47 0.00 0.27 +riverains riverain nom m p 0.36 0.81 0.36 0.74 +riverait river ver 3.47 10.88 0.00 0.07 cnd:pre:3s; +rives rive nom f p 7.92 46.15 1.89 11.01 +rivet rivet nom m s 0.56 1.08 0.35 0.14 +rivetage rivetage nom m s 0.01 0.20 0.01 0.20 +riveteuse riveteur nom f s 0.01 0.00 0.01 0.00 +riveteuse riveteuse nom f s 0.01 0.00 0.01 0.00 +rivets rivet nom m p 0.56 1.08 0.22 0.95 +rivette riveter ver 0.16 0.27 0.14 0.00 imp:pre:2s; +riveté riveter ver m s 0.16 0.27 0.00 0.07 par:pas; +rivetées riveter ver f p 0.16 0.27 0.03 0.20 par:pas; +riviera riviera nom f s 0.00 0.14 0.00 0.07 +rivieras riviera nom f p 0.00 0.14 0.00 0.07 +rivière rivière nom f s 32.73 43.72 28.17 36.49 +rivières rivière nom f p 32.73 43.72 4.56 7.23 +rivoir rivoir nom m s 0.01 0.27 0.01 0.27 +rivé river ver m s 3.47 10.88 0.22 3.24 par:pas; +rivée river ver f s 3.47 10.88 0.02 1.08 par:pas; +rivées river ver f p 3.47 10.88 0.00 0.47 par:pas; +rivés river ver m p 3.47 10.88 0.49 2.64 par:pas; +rixdales rixdale nom f p 0.00 0.07 0.00 0.07 +rixe rixe nom f s 0.84 2.16 0.80 1.28 +rixes rixe nom f p 0.84 2.16 0.04 0.88 +riz_minute riz_minute nom m 0.00 0.07 0.00 0.07 +riz_pain_sel riz_pain_sel nom m s 0.00 0.07 0.00 0.07 +riz riz nom m 18.49 17.70 18.49 17.70 +rizière rizière nom f s 6.45 3.78 5.30 1.15 +rizières rizière nom f p 6.45 3.78 1.15 2.64 +roadster roadster nom m s 0.03 0.27 0.03 0.27 +roast_beef roast_beef nom m s 0.16 0.00 0.14 0.00 +roast_beef roast_beef nom m s 0.16 0.00 0.02 0.00 +robe robe nom f s 84.43 148.18 72.72 111.96 +rober rober ver 0.02 0.00 0.02 0.00 inf; +robert robert nom m s 1.51 1.49 1.44 0.27 +roberts robert nom m p 1.51 1.49 0.07 1.22 +robes robe nom f p 84.43 148.18 11.71 36.22 +robette robette nom f s 0.00 0.07 0.00 0.07 +robin robin nom m s 0.41 0.34 0.03 0.07 +robinet robinet nom m s 5.89 18.24 5.12 13.65 +robinets robinet nom m p 5.89 18.24 0.77 4.59 +robinetterie robinetterie nom f s 0.03 0.27 0.03 0.27 +robiniers robinier nom m p 0.00 0.07 0.00 0.07 +robins robin nom m p 0.41 0.34 0.38 0.27 +robinsonnade robinsonnade nom m s 0.00 0.07 0.00 0.07 +robinsons robinson nom m p 0.00 0.20 0.00 0.20 +râble râble nom m s 0.01 1.96 0.01 1.96 +roblot roblot nom m s 0.00 1.15 0.00 1.15 +râblé râblé adj m s 0.01 1.82 0.01 1.28 +râblée râblé adj f s 0.01 1.82 0.00 0.07 +râblés râblé adj m p 0.01 1.82 0.00 0.47 +roboratif roboratif adj m s 0.00 0.54 0.00 0.34 +roborative roboratif adj f s 0.00 0.54 0.00 0.07 +roboratives roboratif adj f p 0.00 0.54 0.00 0.14 +robot robot nom m s 22.89 3.18 14.97 1.69 +robotique robotique nom f s 0.72 0.00 0.69 0.00 +robotiques robotique nom f p 0.72 0.00 0.04 0.00 +robotisé robotiser ver m s 0.10 0.20 0.07 0.07 par:pas; +robotisée robotiser ver f s 0.10 0.20 0.01 0.07 par:pas; +robotisées robotiser ver f p 0.10 0.20 0.01 0.07 par:pas; +robots robot nom m p 22.89 3.18 7.92 1.49 +roburite roburite nom f s 0.00 0.07 0.00 0.07 +robuste robuste adj s 2.90 10.07 2.14 7.03 +robustement robustement adv 0.00 0.14 0.00 0.14 +robustes robuste adj p 2.90 10.07 0.76 3.04 +robustesse robustesse nom f s 0.17 0.81 0.17 0.81 +roc roc nom m s 3.58 11.76 3.37 7.50 +rocade rocade nom f s 0.27 0.27 0.27 0.20 +rocades rocade nom f p 0.27 0.27 0.00 0.07 +rocaille rocaille nom f s 0.16 2.16 0.16 1.28 +rocailles rocaille nom f p 0.16 2.16 0.00 0.88 +rocailleuse rocailleux adj f s 0.17 3.18 0.07 1.22 +rocailleuses rocailleux adj f p 0.17 3.18 0.00 0.07 +rocailleux rocailleux adj m 0.17 3.18 0.10 1.89 +rocaillé rocailler ver m s 0.00 0.07 0.00 0.07 par:pas; +rocambole rocambole nom f s 0.00 0.41 0.00 0.41 +rocambolesque rocambolesque adj s 0.18 0.41 0.18 0.27 +rocambolesques rocambolesque adj p 0.18 0.41 0.00 0.14 +rochas rocher ver 0.08 0.47 0.00 0.34 ind:pas:2s; +rochassier rochassier nom m s 0.00 0.07 0.00 0.07 +roche roche nom f s 5.81 23.38 3.68 14.12 +rochelle rochelle nom f s 0.74 0.00 0.74 0.00 +rocher rocher nom m s 16.97 39.53 10.37 17.50 +rochers rocher nom m p 16.97 39.53 6.61 22.03 +roches roche nom f p 5.81 23.38 2.13 9.26 +rochet rochet nom m s 0.01 0.14 0.01 0.14 +rocheuse rocheux adj f s 1.06 10.00 0.17 2.64 +rocheuses rocheux adj f p 1.06 10.00 0.73 2.70 +rocheux rocheux adj m 1.06 10.00 0.16 4.66 +rochiers rochier nom m p 0.00 0.07 0.00 0.07 +roché rocher ver m s 0.08 0.47 0.01 0.00 par:pas; +rock_n_roll rock_n_roll nom m 0.19 0.14 0.19 0.14 +rock_n_roll rock_n_roll nom m s 0.01 0.00 0.01 0.00 +rock rock nom m s 22.11 20.00 21.47 19.59 +rocker rocker nom s 1.52 2.91 0.86 1.15 +rockers rocker nom p 1.52 2.91 0.66 1.76 +rocket rocket nom m s 1.40 0.07 1.04 0.07 +rockets rocket nom m p 1.40 0.07 0.35 0.00 +rockeur rockeur nom m s 0.30 0.14 0.11 0.07 +rockeurs rockeur nom m p 0.30 0.14 0.05 0.00 +rockeuse rockeur nom f s 0.30 0.14 0.14 0.07 +rocking_chair rocking_chair nom m s 0.36 1.15 0.28 0.95 +rocking_chair rocking_chair nom m p 0.36 1.15 0.01 0.20 +rocking_chair rocking_chair nom m s 0.36 1.15 0.06 0.00 +rocks rock nom m p 22.11 20.00 0.64 0.41 +rococo rococo nom m s 0.14 0.20 0.13 0.07 +rococos rococo nom m p 0.14 0.20 0.01 0.14 +rocs roc nom m p 3.58 11.76 0.21 4.26 +rodage rodage nom m s 0.32 0.41 0.32 0.34 +rodages rodage nom m p 0.32 0.41 0.00 0.07 +rodait roder ver 1.35 1.76 0.17 0.07 ind:imp:3s; +rode roder ver 1.35 1.76 0.40 0.00 ind:pre:1s;ind:pre:3s; +rodeo rodeo nom m s 0.23 0.00 0.23 0.00 +roder roder ver 1.35 1.76 0.30 0.34 inf; +roderait roder ver 1.35 1.76 0.00 0.07 cnd:pre:3s; +rodomontades rodomontade nom f p 0.01 0.47 0.01 0.47 +rodé roder ver m s 1.35 1.76 0.13 0.47 par:pas; +rodée roder ver f s 1.35 1.76 0.05 0.61 par:pas; +rodées roder ver f p 1.35 1.76 0.00 0.14 par:pas; +rodéo rodéo nom m s 2.01 0.74 1.92 0.74 +rodéos rodéo nom m p 2.01 0.74 0.09 0.00 +rodés roder ver m p 1.35 1.76 0.30 0.07 par:pas; +roentgens roentgen nom m p 0.02 0.00 0.02 0.00 +rogations rogation nom f p 0.00 0.34 0.00 0.34 +rogatoire rogatoire adj f s 0.16 0.81 0.16 0.47 +rogatoires rogatoire adj f p 0.16 0.81 0.00 0.34 +rogaton rogaton nom m s 0.11 1.15 0.11 0.14 +rogatons rogaton nom m p 0.11 1.15 0.00 1.01 +rogna rogner ver 0.39 2.97 0.00 0.07 ind:pas:3s; +rognais rogner ver 0.39 2.97 0.00 0.07 ind:imp:1s; +rognait rogner ver 0.39 2.97 0.00 0.07 ind:imp:3s; +rognant rogner ver 0.39 2.97 0.00 0.14 par:pre; +rogne_pied rogne_pied nom m s 0.00 0.07 0.00 0.07 +rogne rogne nom f s 3.68 2.43 3.67 2.23 +rognent rogner ver 0.39 2.97 0.00 0.07 ind:pre:3p; +rogner rogner ver 0.39 2.97 0.09 0.74 inf; +rognes rogne nom f p 3.68 2.43 0.01 0.20 +rogneux rogneux adj m p 0.00 0.14 0.00 0.14 +rognez rogner ver 0.39 2.97 0.01 0.00 imp:pre:2p; +rognon rognon nom m s 1.12 1.28 0.06 0.74 +rognonnait rognonner ver 0.00 0.07 0.00 0.07 ind:imp:3s; +rognons rognon nom m p 1.12 1.28 1.06 0.54 +rogné rogner ver m s 0.39 2.97 0.04 0.47 par:pas; +rognée rogner ver f s 0.39 2.97 0.00 0.27 par:pas; +rognées rogner ver f p 0.39 2.97 0.16 0.41 par:pas; +rognure rognure nom f s 0.35 0.74 0.16 0.20 +rognures rognure nom f p 0.35 0.74 0.20 0.54 +rognés rogner ver m p 0.39 2.97 0.00 0.47 par:pas; +rogomme rogomme nom m s 0.00 0.54 0.00 0.41 +rogommes rogomme nom m p 0.00 0.54 0.00 0.14 +rogue rogue adj s 0.66 1.96 0.65 1.69 +rogues rogue adj m p 0.66 1.96 0.01 0.27 +roi_roi roi_roi nom m s 0.01 0.00 0.01 0.00 +roi_soleil roi_soleil nom m s 0.00 0.14 0.00 0.14 +roi roi nom m s 177.53 98.92 166.34 85.95 +roide roide adj s 0.04 2.57 0.03 1.49 +roidement roidement adv 0.00 0.34 0.00 0.34 +roides roide adj p 0.04 2.57 0.01 1.08 +roideur roideur nom f s 0.00 0.20 0.00 0.20 +roidi roidir ver m s 0.02 0.27 0.01 0.14 par:pas; +roidie roidir ver f s 0.02 0.27 0.00 0.07 par:pas; +roidir roidir ver 0.02 0.27 0.01 0.00 inf; +roidissait roidir ver 0.02 0.27 0.00 0.07 ind:imp:3s; +rois roi nom m p 177.53 98.92 11.19 12.97 +roitelet roitelet nom m s 0.22 0.41 0.19 0.27 +roitelets roitelet nom m p 0.22 0.41 0.03 0.14 +râla râler ver 6.61 10.41 0.00 0.54 ind:pas:3s; +râlai râler ver 6.61 10.41 0.00 0.07 ind:pas:1s; +râlaient râler ver 6.61 10.41 0.00 0.47 ind:imp:3p; +râlais râler ver 6.61 10.41 0.19 0.07 ind:imp:1s;ind:imp:2s; +râlait râler ver 6.61 10.41 0.15 2.36 ind:imp:3s; +râlant râler ver 6.61 10.41 0.16 0.54 par:pre; +râlante râlant adj f s 0.02 0.47 0.02 0.14 +râle râler ver 6.61 10.41 1.70 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +râlement râlement nom m s 0.00 0.07 0.00 0.07 +râlent râler ver 6.61 10.41 0.37 0.20 ind:pre:3p; +râler râler ver 6.61 10.41 3.05 2.77 inf; +râlera râler ver 6.61 10.41 0.01 0.14 ind:fut:3s; +râlerai râler ver 6.61 10.41 0.02 0.00 ind:fut:1s; +râlerait râler ver 6.61 10.41 0.01 0.34 cnd:pre:3s; +râles râle nom m p 1.89 9.46 0.84 3.58 +râleur râleur nom m s 0.48 0.47 0.34 0.14 +râleurs râleur adj m p 0.33 0.47 0.21 0.27 +râleuse râleur nom f s 0.48 0.47 0.03 0.14 +râleuses râleur nom f p 0.48 0.47 0.00 0.07 +râleux râleux nom m 0.00 0.14 0.00 0.14 +râlez râler ver 6.61 10.41 0.21 0.14 imp:pre:2p;ind:pre:2p; +roll roll nom m s 5.67 1.35 5.67 1.35 +rolle rolle nom m s 0.01 0.00 0.01 0.00 +roller roller nom m s 1.41 0.00 0.88 0.00 +rollers roller nom m p 1.41 0.00 0.53 0.00 +rollmops rollmops nom m 0.03 0.20 0.03 0.20 +râlé râler ver m s 6.61 10.41 0.15 0.54 par:pas; +rom rom nom s 0.16 0.14 0.01 0.07 +romain romain adj m s 11.02 21.55 5.28 8.04 +romaine romain adj f s 11.02 21.55 3.77 6.55 +romaines romain adj f p 11.02 21.55 0.75 3.58 +romains romain adj m p 11.02 21.55 1.23 3.38 +roman_feuilleton roman_feuilleton nom m s 0.13 0.41 0.03 0.27 +roman_fleuve roman_fleuve nom m s 0.00 0.07 0.00 0.07 +roman_photo roman_photo nom m s 0.28 0.41 0.14 0.20 +roman roman nom m s 23.73 74.80 17.79 51.28 +romance romance nom s 3.12 3.99 2.98 2.91 +romancer romancer ver 0.17 0.27 0.08 0.07 inf; +romancero romancero nom m s 0.00 0.07 0.00 0.07 +romances romance nom p 3.12 3.99 0.14 1.08 +romanche romanche nom m s 0.00 0.07 0.00 0.07 +romancier romancier nom m s 0.93 11.89 0.68 8.18 +romanciers romancier nom m p 0.93 11.89 0.09 2.97 +romancière romancier nom f s 0.93 11.89 0.16 0.61 +romancières romancier nom f p 0.93 11.89 0.00 0.14 +romancé romancé adj m s 0.07 0.34 0.03 0.00 +romancée romancé adj f s 0.07 0.34 0.04 0.20 +romancées romancé adj f p 0.07 0.34 0.01 0.14 +romande romand adj f s 0.00 0.07 0.00 0.07 +romane roman adj f s 2.09 13.11 0.02 1.76 +romanes roman adj f p 2.09 13.11 0.02 1.69 +romanesque romanesque adj s 1.03 10.07 0.95 8.11 +romanesques romanesque adj p 1.03 10.07 0.09 1.96 +romani romani nom m s 0.11 0.07 0.11 0.07 +romanichel romanichel nom m s 0.17 1.35 0.01 0.34 +romanichelle romanichel nom f s 0.17 1.35 0.14 0.14 +romanichelles romanichel nom f p 0.17 1.35 0.00 0.07 +romanichels romanichel nom m p 0.17 1.35 0.02 0.81 +romanisation romanisation nom f s 0.00 0.07 0.00 0.07 +romanistes romaniste nom p 0.01 0.07 0.01 0.07 +romanité romanité nom f s 0.00 0.14 0.00 0.14 +romano romano nom s 0.28 0.54 0.22 0.20 +romanos romano nom p 0.28 0.54 0.06 0.34 +roman_feuilleton roman_feuilleton nom m p 0.13 0.41 0.10 0.14 +roman_photo roman_photo nom m p 0.28 0.41 0.14 0.20 +romans roman nom m p 23.73 74.80 5.94 23.51 +romanticisme romanticisme nom m s 0.01 0.00 0.01 0.00 +romantique romantique adj s 22.48 10.27 20.58 7.64 +romantiquement romantiquement adv 0.09 0.27 0.09 0.27 +romantiques romantique adj p 22.48 10.27 1.89 2.64 +romantisme romantisme nom m s 1.48 3.85 1.48 3.72 +romantismes romantisme nom m p 1.48 3.85 0.00 0.14 +romarin romarin nom m s 1.47 1.01 1.47 1.01 +rombière rombière nom f s 0.18 2.70 0.05 1.96 +rombières rombière nom f p 0.18 2.70 0.13 0.74 +rompît rompre ver 41.37 52.64 0.01 0.61 sub:imp:3s; +rompaient rompre ver 41.37 52.64 0.13 0.61 ind:imp:3p; +rompais rompre ver 41.37 52.64 0.18 0.14 ind:imp:1s;ind:imp:2s; +rompait rompre ver 41.37 52.64 0.06 1.82 ind:imp:3s; +rompant rompre ver 41.37 52.64 0.20 2.36 par:pre; +rompe rompre ver 41.37 52.64 0.72 0.61 sub:pre:1s;sub:pre:3s; +rompent rompre ver 41.37 52.64 0.29 0.47 ind:pre:3p; +rompez rompre ver 41.37 52.64 6.20 1.15 imp:pre:2p;ind:pre:2p; +rompiez rompre ver 41.37 52.64 0.01 0.00 ind:imp:2p; +rompirent rompre ver 41.37 52.64 0.00 0.34 ind:pas:3p; +rompis rompre ver 41.37 52.64 0.00 0.14 ind:pas:1s; +rompissent rompre ver 41.37 52.64 0.00 0.07 sub:imp:3p; +rompit rompre ver 41.37 52.64 0.28 3.24 ind:pas:3s; +rompons rompre ver 41.37 52.64 0.02 0.14 imp:pre:1p;ind:pre:1p; +rompra rompre ver 41.37 52.64 0.20 0.27 ind:fut:3s; +romprai rompre ver 41.37 52.64 0.15 0.00 ind:fut:1s; +rompraient rompre ver 41.37 52.64 0.00 0.14 cnd:pre:3p; +romprais rompre ver 41.37 52.64 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +romprait rompre ver 41.37 52.64 0.05 0.27 cnd:pre:3s; +rompre rompre ver 41.37 52.64 12.61 21.82 inf; +romprez rompre ver 41.37 52.64 0.04 0.07 ind:fut:2p; +romprions rompre ver 41.37 52.64 0.00 0.07 cnd:pre:1p; +romprons rompre ver 41.37 52.64 0.01 0.00 ind:fut:1p; +romps rompre ver 41.37 52.64 2.01 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rompt rompre ver 41.37 52.64 1.66 2.57 ind:pre:3s; +rompu rompre ver m s 41.37 52.64 15.16 10.68 par:pas; +rompue rompre ver f s 41.37 52.64 0.84 2.03 par:pas; +rompues rompre ver f p 41.37 52.64 0.15 0.61 par:pas; +rompus rompu adj m p 1.13 5.07 0.33 1.62 +roms rom nom p 0.16 0.14 0.14 0.07 +ron ron nom m s 0.23 0.34 0.23 0.34 +ronce ronce nom f s 1.10 13.78 0.14 1.28 +ronces ronce nom f p 1.10 13.78 0.95 12.50 +roncet roncet nom m s 0.00 0.07 0.00 0.07 +ronceux ronceux adj m 0.00 0.07 0.00 0.07 +ronchon ronchon adj m s 0.45 0.14 0.41 0.14 +ronchonna ronchonner ver 0.41 4.32 0.00 0.95 ind:pas:3s; +ronchonnaient ronchonner ver 0.41 4.32 0.00 0.07 ind:imp:3p; +ronchonnais ronchonner ver 0.41 4.32 0.00 0.14 ind:imp:1s; +ronchonnait ronchonner ver 0.41 4.32 0.00 0.74 ind:imp:3s; +ronchonnant ronchonner ver 0.41 4.32 0.11 0.47 par:pre; +ronchonne ronchonner ver 0.41 4.32 0.09 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronchonnent ronchonner ver 0.41 4.32 0.01 0.14 ind:pre:3p; +ronchonner ronchonner ver 0.41 4.32 0.16 0.95 inf; +ronchonnes ronchonner ver 0.41 4.32 0.02 0.00 ind:pre:2s; +ronchonneur ronchonneur nom m s 0.02 0.20 0.02 0.07 +ronchonneuse ronchonneur nom f s 0.02 0.20 0.00 0.14 +ronchonnot ronchonnot nom m s 0.00 0.14 0.00 0.14 +ronchonné ronchonner ver m s 0.41 4.32 0.02 0.14 par:pas; +roncier roncier nom m s 0.00 2.64 0.00 1.76 +ronciers roncier nom m p 0.00 2.64 0.00 0.88 +rond_de_cuir rond_de_cuir nom m s 0.26 0.34 0.23 0.27 +rond_point rond_point nom m s 0.44 2.50 0.44 2.43 +rond rond nom m s 16.84 33.65 15.11 24.46 +rondache rondache nom f s 0.02 0.07 0.02 0.07 +ronde_bosse ronde_bosse nom f s 0.00 0.61 0.00 0.61 +ronde ronde nom f s 9.54 20.81 7.93 17.97 +rondeau rondeau nom m s 0.02 0.07 0.02 0.07 +rondelet rondelet adj m s 0.34 1.22 0.06 0.54 +rondelette rondelet adj f s 0.34 1.22 0.28 0.54 +rondelettes rondelet adj f p 0.34 1.22 0.00 0.14 +rondelle rondelle nom f s 1.16 5.34 0.42 2.23 +rondelles rondelle nom f p 1.16 5.34 0.73 3.11 +rondement rondement adv 0.22 1.28 0.22 1.28 +rondes ronde nom f p 9.54 20.81 1.61 2.84 +rondeur rondeur nom f s 0.41 6.49 0.19 3.99 +rondeurs rondeur nom f p 0.41 6.49 0.23 2.50 +rondin rondin nom m s 0.76 8.78 0.23 1.08 +rondins rondin nom m p 0.76 8.78 0.53 7.70 +rondo rondo nom m s 0.34 0.68 0.34 0.61 +rondos rondo nom m p 0.34 0.68 0.00 0.07 +rondouillard rondouillard adj m s 0.04 1.55 0.03 1.01 +rondouillarde rondouillard adj f s 0.04 1.55 0.01 0.41 +rondouillards rondouillard adj m p 0.04 1.55 0.00 0.14 +rond_de_cuir rond_de_cuir nom m p 0.26 0.34 0.03 0.07 +rond_point rond_point nom m p 0.44 2.50 0.00 0.07 +ronds rond nom m p 16.84 33.65 1.73 9.19 +ronfla ronfler ver 6.62 18.24 0.00 0.47 ind:pas:3s; +ronflaient ronfler ver 6.62 18.24 0.01 0.81 ind:imp:3p; +ronflais ronfler ver 6.62 18.24 0.25 0.20 ind:imp:1s;ind:imp:2s; +ronflait ronfler ver 6.62 18.24 0.19 4.80 ind:imp:3s; +ronflant ronflant adj m s 0.33 2.16 0.27 0.68 +ronflante ronflant adj f s 0.33 2.16 0.00 0.47 +ronflantes ronflant adj f p 0.33 2.16 0.01 0.27 +ronflants ronflant adj m p 0.33 2.16 0.05 0.74 +ronfle ronfler ver 6.62 18.24 2.52 3.65 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronflement ronflement nom m s 1.39 10.41 0.67 6.49 +ronflements ronflement nom m p 1.39 10.41 0.72 3.92 +ronflent ronfler ver 6.62 18.24 0.30 1.22 ind:pre:3p; +ronfler ronfler ver 6.62 18.24 1.14 5.47 inf; +ronflerais ronfler ver 6.62 18.24 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +ronfleras ronfler ver 6.62 18.24 0.11 0.00 ind:fut:2s; +ronfles ronfler ver 6.62 18.24 0.78 0.14 ind:pre:2s; +ronflette ronflette nom f s 0.14 0.81 0.14 0.81 +ronfleur ronfleur nom m s 0.00 0.68 0.00 0.54 +ronfleurs ronfleur nom m p 0.00 0.68 0.00 0.07 +ronfleuse ronfleur nom f s 0.00 0.68 0.00 0.07 +ronflez ronfler ver 6.62 18.24 0.32 0.00 imp:pre:2p;ind:pre:2p; +ronfliez ronfler ver 6.62 18.24 0.01 0.00 ind:imp:2p; +ronflotait ronfloter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +ronflotant ronfloter ver 0.00 0.20 0.00 0.07 par:pre; +ronflote ronfloter ver 0.00 0.20 0.00 0.07 ind:pre:3s; +ronflèrent ronfler ver 6.62 18.24 0.00 0.07 ind:pas:3p; +ronflé ronfler ver m s 6.62 18.24 0.90 0.27 par:pas; +ronge ronger ver 11.68 28.38 4.23 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rongea ronger ver 11.68 28.38 0.00 0.14 ind:pas:3s; +rongeai ronger ver 11.68 28.38 0.00 0.20 ind:pas:1s; +rongeaient ronger ver 11.68 28.38 0.18 0.88 ind:imp:3p; +rongeais ronger ver 11.68 28.38 0.02 0.27 ind:imp:1s;ind:imp:2s; +rongeait ronger ver 11.68 28.38 0.88 3.85 ind:imp:3s; +rongeant ronger ver 11.68 28.38 0.16 1.01 par:pre; +rongeante rongeant adj f s 0.00 0.27 0.00 0.14 +rongeantes rongeant adj f p 0.00 0.27 0.00 0.07 +rongement rongement nom m s 0.00 0.14 0.00 0.14 +rongent ronger ver 11.68 28.38 0.53 1.08 ind:pre:3p; +rongeât ronger ver 11.68 28.38 0.00 0.14 sub:imp:3s; +ronger ronger ver 11.68 28.38 1.54 2.84 inf; +rongera ronger ver 11.68 28.38 0.36 0.07 ind:fut:3s; +rongerait ronger ver 11.68 28.38 0.05 0.07 cnd:pre:3s; +ronges ronger ver 11.68 28.38 0.38 0.14 ind:pre:2s; +rongeur rongeur nom m s 1.43 2.91 0.52 1.01 +rongeurs rongeur nom m p 1.43 2.91 0.91 1.89 +rongeuse rongeuse adj f s 0.01 0.00 0.01 0.00 +rongeuses rongeur adj f p 0.27 0.95 0.10 0.07 +rongez ronger ver 11.68 28.38 0.21 0.00 imp:pre:2p;ind:pre:2p; +rongicide rongicide adj s 0.00 0.07 0.00 0.07 +rongèrent ronger ver 11.68 28.38 0.00 0.07 ind:pas:3p; +rongé ronger ver m s 11.68 28.38 2.10 4.66 par:pas; +rongée ronger ver f s 11.68 28.38 0.68 3.38 par:pas; +rongées ronger ver f p 11.68 28.38 0.17 1.96 par:pas; +rongés ronger ver m p 11.68 28.38 0.19 3.51 par:pas; +ronin ronin nom m s 0.30 0.07 0.30 0.07 +ronron ronron nom m s 0.16 3.51 0.16 2.70 +ronronna ronronner ver 0.76 11.08 0.00 0.47 ind:pas:3s; +ronronnaient ronronner ver 0.76 11.08 0.00 0.68 ind:imp:3p; +ronronnais ronronner ver 0.76 11.08 0.01 0.20 ind:imp:1s;ind:imp:2s; +ronronnait ronronner ver 0.76 11.08 0.03 2.50 ind:imp:3s; +ronronnant ronronner ver 0.76 11.08 0.02 1.42 par:pre; +ronronnante ronronnant adj f s 0.01 0.81 0.01 0.34 +ronronnantes ronronnant adj f p 0.01 0.81 0.00 0.14 +ronronnants ronronnant adj m p 0.01 0.81 0.00 0.07 +ronronne ronronner ver 0.76 11.08 0.48 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronronnement ronronnement nom m s 0.04 5.27 0.04 4.93 +ronronnements ronronnement nom m p 0.04 5.27 0.00 0.34 +ronronnent ronronner ver 0.76 11.08 0.00 0.41 ind:pre:3p; +ronronner ronronner ver 0.76 11.08 0.17 2.03 inf; +ronronnerait ronronner ver 0.76 11.08 0.00 0.07 cnd:pre:3s; +ronronnons ronronner ver 0.76 11.08 0.00 0.07 imp:pre:1p; +ronronnèrent ronronner ver 0.76 11.08 0.00 0.07 ind:pas:3p; +ronronné ronronner ver m s 0.76 11.08 0.04 0.41 par:pas; +ronrons ronron nom m p 0.16 3.51 0.00 0.81 +ronéo ronéo nom f s 0.02 0.14 0.02 0.14 +ronéotions ronéoter ver 0.00 0.14 0.00 0.07 ind:imp:1p; +ronéoté ronéoter ver m s 0.00 0.14 0.00 0.07 par:pas; +ronéotyper ronéotyper ver 0.00 0.34 0.00 0.07 inf; +ronéotypé ronéotyper ver m s 0.00 0.34 0.00 0.14 par:pas; +ronéotypés ronéotyper ver m p 0.00 0.34 0.00 0.14 par:pas; +roof roof nom m s 0.03 0.20 0.03 0.20 +râpa râper ver 1.22 4.39 0.00 0.07 ind:pas:3s; +râpaient râper ver 1.22 4.39 0.00 0.27 ind:imp:3p; +râpait râper ver 1.22 4.39 0.00 0.34 ind:imp:3s; +râpant râper ver 1.22 4.39 0.00 0.14 par:pre; +râpe râpe nom f s 1.25 1.55 1.02 1.35 +râpent râper ver 1.22 4.39 0.00 0.20 ind:pre:3p; +râper râper ver 1.22 4.39 0.07 0.47 inf; +râperait râper ver 1.22 4.39 0.00 0.07 cnd:pre:3s; +râperas râper ver 1.22 4.39 0.00 0.07 ind:fut:2s; +râpes râpe nom f p 1.25 1.55 0.23 0.20 +râpeuse râpeux adj f s 0.30 3.85 0.01 1.69 +râpeuses râpeux adj f p 0.30 3.85 0.00 0.68 +râpeux râpeux adj m 0.30 3.85 0.29 1.49 +roploplos roploplo nom m p 0.01 0.07 0.01 0.07 +râpé râper ver m s 1.22 4.39 0.96 1.76 par:pas; +râpée râpé adj f s 0.49 3.51 0.30 0.54 +râpées râpé adj f p 0.49 3.51 0.03 0.88 +râpés râpé adj m p 0.49 3.51 0.02 0.47 +roque roque nom m s 1.14 0.74 1.14 0.34 +roquefort roquefort nom m s 0.07 0.61 0.07 0.61 +roquentin roquentin nom m s 0.00 0.14 0.00 0.14 +roquer roquer ver 0.20 0.07 0.00 0.07 inf; +roques roque nom m p 1.14 0.74 0.00 0.41 +roquet roquet nom m s 0.25 1.89 0.23 1.35 +roquets roquet nom m p 0.25 1.89 0.02 0.54 +roquette roquette nom f s 1.68 1.01 0.91 0.74 +roquettes roquette nom f p 1.68 1.01 0.76 0.27 +rorqual rorqual nom m s 0.00 0.20 0.00 0.14 +rorquals rorqual nom m p 0.00 0.20 0.00 0.07 +rosa roser ver 0.51 3.31 0.01 0.14 ind:pas:3s; +rosace rosace nom f s 0.00 2.16 0.00 1.08 +rosaces rosace nom f p 0.00 2.16 0.00 1.08 +rosages rosage nom m p 0.00 0.07 0.00 0.07 +rosaire rosaire nom m s 1.54 0.74 1.33 0.61 +rosaires rosaire nom m p 1.54 0.74 0.21 0.14 +rosales rosales nom f p 0.36 0.00 0.36 0.00 +rosat rosat adj f s 0.00 0.20 0.00 0.20 +rosbif rosbif nom m s 1.81 0.54 1.38 0.47 +rosbifs rosbif nom m p 1.81 0.54 0.43 0.07 +rose_croix rose_croix nom m 0.00 0.07 0.00 0.07 +rose_thé rose_thé adj m s 0.00 0.07 0.00 0.07 +rose_thé rose_thé nom s 0.00 0.07 0.00 0.07 +rose rose adj s 23.72 96.08 18.43 66.62 +roseau roseau nom m s 1.13 16.55 0.63 2.97 +roseaux roseau nom m p 1.13 16.55 0.50 13.58 +roselière roselier nom f s 0.00 0.61 0.00 0.14 +roselières roselier nom f p 0.00 0.61 0.00 0.47 +roser roser ver 0.51 3.31 0.00 0.07 inf; +roseraie roseraie nom f s 0.31 0.20 0.30 0.14 +roseraies roseraie nom f p 0.31 0.20 0.01 0.07 +roses rose nom p 24.67 57.30 13.56 26.96 +rosette rosette nom f s 0.10 2.03 0.07 1.76 +rosettes rosette nom f p 0.10 2.03 0.03 0.27 +roseur roseur nom f s 0.00 0.68 0.00 0.54 +roseurs roseur nom f p 0.00 0.68 0.00 0.14 +rosi rosir ver m s 1.44 3.51 0.10 0.20 par:pas; +rosicrucien rosicrucien adj m s 0.01 0.07 0.01 0.00 +rosicrucienne rosicrucien nom f s 0.02 0.00 0.01 0.00 +rosicrucienne rosicrucienne adj f s 0.01 0.00 0.01 0.00 +rosicruciens rosicrucien nom m p 0.02 0.00 0.01 0.00 +rosie rosir ver f s 1.44 3.51 1.24 0.00 par:pas; +rosier rosier nom m s 0.85 5.41 0.24 1.22 +rosiers rosier nom m p 0.85 5.41 0.61 4.19 +rosies rosir ver f p 1.44 3.51 0.00 0.14 par:pas; +rosir rosir ver 1.44 3.51 0.04 0.74 inf; +rosis rosir ver m p 1.44 3.51 0.00 0.14 ind:pas:1s;par:pas; +rosissaient rosir ver 1.44 3.51 0.00 0.27 ind:imp:3p; +rosissait rosir ver 1.44 3.51 0.00 0.54 ind:imp:3s; +rosissant rosir ver 1.44 3.51 0.00 0.34 par:pre; +rosissent rosir ver 1.44 3.51 0.00 0.14 ind:pre:3p; +rosit rosir ver 1.44 3.51 0.06 1.01 ind:pre:3s;ind:pas:3s; +rosière rosière nom f s 0.00 0.14 0.00 0.14 +rosâtre rosâtre adj s 0.04 2.16 0.04 1.55 +rosâtres rosâtre adj p 0.04 2.16 0.00 0.61 +rossa rosser ver 2.49 2.43 0.02 0.07 ind:pas:3s; +rossaient rosser ver 2.49 2.43 0.01 0.07 ind:imp:3p; +rossait rosser ver 2.49 2.43 0.01 0.07 ind:imp:3s; +rossant rosser ver 2.49 2.43 0.00 0.07 par:pre; +rossard rossard nom m s 0.00 0.20 0.00 0.07 +rossards rossard nom m p 0.00 0.20 0.00 0.14 +rosse rosser ver 2.49 2.43 0.45 0.14 ind:pre:1s;ind:pre:3s; +rossent rosser ver 2.49 2.43 0.01 0.07 ind:pre:3p; +rosser rosser ver 2.49 2.43 0.79 0.74 inf; +rosserai rosser ver 2.49 2.43 0.12 0.07 ind:fut:1s; +rosserie rosserie nom f s 0.02 0.47 0.00 0.14 +rosseries rosserie nom f p 0.02 0.47 0.02 0.34 +rosses rosse adj f p 0.61 0.41 0.20 0.14 +rossez rosser ver 2.49 2.43 0.16 0.00 imp:pre:2p;ind:pre:2p; +rossignol rossignol nom m s 2.56 3.51 2.06 1.76 +rossignols rossignol nom m p 2.56 3.51 0.50 1.76 +rossinante rossinante nom f s 0.09 0.07 0.09 0.00 +rossinantes rossinante nom f p 0.09 0.07 0.00 0.07 +rossé rosser ver m s 2.49 2.43 0.52 0.81 par:pas; +rossée rosser ver f s 2.49 2.43 0.14 0.20 par:pas; +rossés rosser ver m p 2.49 2.43 0.26 0.14 par:pas; +rostre rostre nom m s 0.03 0.14 0.02 0.00 +rostres rostre nom m p 0.03 0.14 0.01 0.14 +rosé rosé nom m s 0.86 2.70 0.86 2.43 +rosée rosée nom f s 3.19 9.46 3.19 9.26 +rosées roser ver f p 0.51 3.31 0.02 0.41 par:pas; +roséole roséole nom f s 0.01 0.07 0.01 0.07 +rosés rosé adj m p 0.50 2.64 0.27 0.34 +rot rot nom m s 1.85 1.69 1.76 1.08 +rota roter ver 1.30 3.45 0.23 0.47 ind:pas:3s; +rotaient roter ver 1.30 3.45 0.01 0.27 ind:imp:3p; +rotais roter ver 1.30 3.45 0.00 0.07 ind:imp:1s; +rotait roter ver 1.30 3.45 0.01 0.41 ind:imp:3s; +rotant roter ver 1.30 3.45 0.04 0.00 par:pre; +rotariens rotarien adj m p 0.01 0.00 0.01 0.00 +rotary rotary nom m s 0.76 0.34 0.76 0.34 +rotateur rotateur adj m s 0.02 0.00 0.02 0.00 +rotatif rotatif adj m s 0.17 0.81 0.07 0.47 +rotatifs rotatif adj m p 0.17 0.81 0.04 0.00 +rotation rotation nom f s 2.30 3.58 2.08 3.38 +rotationnel rotationnel adj m s 0.01 0.00 0.01 0.00 +rotations rotation nom f p 2.30 3.58 0.22 0.20 +rotative rotatif adj f s 0.17 0.81 0.03 0.27 +rotatives rotative nom f p 0.07 1.08 0.07 0.95 +rotativistes rotativiste nom p 0.00 0.07 0.00 0.07 +rotatoire rotatoire adj m s 0.01 0.07 0.01 0.07 +rote roter ver 1.30 3.45 0.43 0.88 ind:pre:1s;ind:pre:3s; +râteau râteau nom m s 0.83 2.50 0.77 1.62 +râteaux râteau nom m p 0.83 2.50 0.07 0.88 +râtelait râteler ver 0.01 0.14 0.00 0.07 ind:imp:3s; +râteler râteler ver 0.01 0.14 0.01 0.00 inf; +râtelier râtelier nom m s 0.39 2.77 0.36 2.43 +râteliers râtelier nom m p 0.39 2.77 0.03 0.34 +râtelées râteler ver f p 0.01 0.14 0.00 0.07 par:pas; +rotengles rotengle nom m p 0.00 0.07 0.00 0.07 +rotent roter ver 1.30 3.45 0.04 0.14 ind:pre:3p; +roter roter ver 1.30 3.45 0.45 0.81 inf; +rotera roter ver 1.30 3.45 0.00 0.07 ind:fut:3s; +rotes roter ver 1.30 3.45 0.02 0.00 ind:pre:2s; +roteur roteur nom m s 0.01 0.68 0.01 0.00 +roteuse roteuse nom f s 0.01 0.00 0.01 0.00 +roteuses roteur nom f p 0.01 0.68 0.00 0.07 +rotez roter ver 1.30 3.45 0.00 0.07 ind:pre:2p; +rotin rotin nom m s 0.13 3.38 0.13 3.38 +roto roto nom f s 0.04 0.07 0.03 0.07 +rotonde rotonde nom f s 0.21 1.69 0.21 1.62 +rotondes rotonde nom f p 0.21 1.69 0.00 0.07 +rotondité rotondité nom f s 0.01 0.54 0.01 0.27 +rotondités rotondité nom f p 0.01 0.54 0.00 0.27 +rotoplos rotoplos nom m p 0.01 0.27 0.01 0.27 +rotoplots rotoplots nom m p 0.01 0.07 0.01 0.07 +rotor rotor nom m s 0.37 0.41 0.31 0.41 +rotors rotor nom m p 0.37 0.41 0.06 0.00 +rotos roto nom f p 0.04 0.07 0.01 0.00 +rototo rototo nom m s 0.03 0.07 0.02 0.00 +rototos rototo nom m p 0.03 0.07 0.01 0.07 +rots rot nom m p 1.85 1.69 0.09 0.61 +roté roter ver m s 1.30 3.45 0.06 0.20 par:pas; +rotées roter ver f p 1.30 3.45 0.00 0.07 par:pas; +rotule rotule nom f s 1.29 1.76 0.57 0.61 +rotules rotule nom f p 1.29 1.76 0.72 1.15 +rotulien rotulien adj m s 0.03 0.00 0.03 0.00 +roténone roténone nom f s 0.09 0.00 0.09 0.00 +roture roture nom f s 0.14 0.47 0.14 0.47 +roturier roturier nom m s 0.17 0.54 0.06 0.27 +roturiers roturier nom m p 0.17 0.54 0.05 0.14 +roturière roturier nom f s 0.17 0.54 0.06 0.14 +roua rouer ver 2.20 2.57 0.00 0.07 ind:pas:3s; +rouage rouage nom m s 1.18 4.05 0.30 0.47 +rouages rouage nom m p 1.18 4.05 0.88 3.58 +rouaient rouer ver 2.20 2.57 0.01 0.07 ind:imp:3p; +rouais rouer ver 2.20 2.57 0.02 0.00 ind:imp:2s; +rouait rouer ver 2.20 2.57 0.13 0.14 ind:imp:3s; +rouan rouan nom m s 0.16 0.20 0.16 0.20 +rouant rouer ver 2.20 2.57 0.01 0.14 par:pre; +roubaisienne roubaisien nom f s 0.00 0.07 0.00 0.07 +roubignoles roubignoles nom f p 0.06 0.27 0.06 0.27 +roublard roublard nom m s 0.33 0.27 0.32 0.27 +roublarde roublard adj f s 0.10 0.74 0.01 0.14 +roublarder roublarder ver 0.00 0.07 0.00 0.07 inf; +roublardes roublard adj f p 0.10 0.74 0.01 0.07 +roublardise roublardise nom f s 0.00 0.20 0.00 0.14 +roublardises roublardise nom f p 0.00 0.20 0.00 0.07 +rouble rouble nom m s 7.88 0.68 1.22 0.14 +roubles rouble nom m p 7.88 0.68 6.66 0.54 +roucoula roucouler ver 0.70 3.45 0.00 0.47 ind:pas:3s; +roucoulade roucoulade nom f s 0.16 0.68 0.16 0.14 +roucoulades roucoulade nom f p 0.16 0.68 0.00 0.54 +roucoulaient roucouler ver 0.70 3.45 0.00 0.20 ind:imp:3p; +roucoulais roucouler ver 0.70 3.45 0.01 0.00 ind:imp:2s; +roucoulait roucouler ver 0.70 3.45 0.03 0.68 ind:imp:3s; +roucoulant roucouler ver 0.70 3.45 0.00 0.47 par:pre; +roucoulante roucoulant adj f s 0.02 0.61 0.02 0.27 +roucoulantes roucoulant adj f p 0.02 0.61 0.00 0.14 +roucoulants roucoulant adj m p 0.02 0.61 0.00 0.14 +roucoule roucouler ver 0.70 3.45 0.38 0.34 ind:pre:1s;ind:pre:3s; +roucoulement roucoulement nom m s 0.33 1.42 0.16 0.61 +roucoulements roucoulement nom m p 0.33 1.42 0.16 0.81 +roucoulent roucouler ver 0.70 3.45 0.03 0.20 ind:pre:3p; +roucouler roucouler ver 0.70 3.45 0.23 0.81 inf; +roucoulerez roucouler ver 0.70 3.45 0.01 0.00 ind:fut:2p; +roucouleur roucouleur nom m s 0.02 0.07 0.02 0.07 +roucoulé roucouler ver m s 0.70 3.45 0.01 0.20 par:pas; +roucoulés roucouler ver m p 0.70 3.45 0.00 0.07 par:pas; +roudoudou roudoudou nom m s 0.28 0.68 0.28 0.54 +roudoudous roudoudou nom m p 0.28 0.68 0.00 0.14 +roue roue nom f s 21.87 42.43 13.49 17.77 +rouelle rouelle nom f s 0.00 0.14 0.00 0.14 +rouennaise rouennais nom f s 0.27 0.00 0.27 0.00 +rouenneries rouennerie nom f p 0.00 0.07 0.00 0.07 +rouent rouer ver 2.20 2.57 0.12 0.00 ind:pre:3p; +rouer rouer ver 2.20 2.57 0.46 0.34 inf; +rouerai rouer ver 2.20 2.57 0.20 0.00 ind:fut:1s; +rouergat rouergat adj m s 0.00 0.07 0.00 0.07 +rouerie rouerie nom f s 0.01 0.95 0.01 0.74 +roueries rouerie nom f p 0.01 0.95 0.00 0.20 +roueront rouer ver 2.20 2.57 0.14 0.00 ind:fut:3p; +roues roue nom f p 21.87 42.43 8.38 24.66 +rouet rouet nom m s 0.15 0.54 0.15 0.54 +rouf rouf nom m s 0.00 0.27 0.00 0.27 +rouflaquettes rouflaquette nom f p 0.13 0.81 0.13 0.81 +rougît rougir ver 9.01 42.09 0.00 0.07 sub:imp:3s; +rouge_brun rouge_brun adj m s 0.00 0.20 0.00 0.20 +rouge_feu rouge_feu adj m s 0.00 0.07 0.00 0.07 +rouge_gorge rouge_gorge nom m s 0.44 1.08 0.30 0.68 +rouge_queue rouge_queue nom m s 0.00 0.07 0.00 0.07 +rouge_sang rouge_sang nom s 0.00 0.07 0.00 0.07 +rouge rouge adj s 102.93 273.24 79.70 195.27 +rougeaud rougeaud nom m s 0.10 0.74 0.10 0.68 +rougeaude rougeaud adj f s 0.04 3.78 0.00 0.61 +rougeaudes rougeaud adj f p 0.04 3.78 0.00 0.27 +rougeauds rougeaud adj m p 0.04 3.78 0.00 0.81 +rougeoie rougeoyer ver 0.38 3.51 0.14 0.68 imp:pre:2s;ind:pre:3s; +rougeoiement rougeoiement nom m s 0.03 1.42 0.03 1.15 +rougeoiements rougeoiement nom m p 0.03 1.42 0.00 0.27 +rougeoient rougeoyer ver 0.38 3.51 0.00 0.27 ind:pre:3p; +rougeole rougeole nom f s 1.27 1.69 1.27 1.69 +rougeâtre rougeâtre adj s 0.17 6.08 0.15 3.85 +rougeâtres rougeâtre adj p 0.17 6.08 0.02 2.23 +rougeoya rougeoyer ver 0.38 3.51 0.00 0.07 ind:pas:3s; +rougeoyaient rougeoyer ver 0.38 3.51 0.00 0.41 ind:imp:3p; +rougeoyait rougeoyer ver 0.38 3.51 0.00 1.35 ind:imp:3s; +rougeoyant rougeoyant adj m s 0.28 2.03 0.15 0.54 +rougeoyante rougeoyant adj f s 0.28 2.03 0.11 0.61 +rougeoyantes rougeoyant adj f p 0.28 2.03 0.00 0.54 +rougeoyants rougeoyant adj m p 0.28 2.03 0.01 0.34 +rougeoyer rougeoyer ver 0.38 3.51 0.22 0.61 inf; +rougeoyé rougeoyer ver m s 0.38 3.51 0.00 0.07 par:pas; +rouge_gorge rouge_gorge nom m p 0.44 1.08 0.13 0.41 +rouges rouge adj p 102.93 273.24 23.23 77.97 +rouget rouget nom m s 0.35 1.49 0.35 0.54 +rougets rouget nom m p 0.35 1.49 0.00 0.95 +rougeur rougeur nom f s 1.16 3.04 0.63 1.89 +rougeurs rougeur nom f p 1.16 3.04 0.53 1.15 +rough rough nom m s 0.20 0.00 0.20 0.00 +rougi rougir ver m s 9.01 42.09 0.72 4.19 par:pas; +rougie rougir ver f s 9.01 42.09 0.17 1.62 par:pas; +rougies rougir ver f p 9.01 42.09 0.10 1.22 par:pas; +rougir rougir ver 9.01 42.09 2.51 10.68 inf; +rougira rougir ver 9.01 42.09 0.01 0.07 ind:fut:3s; +rougiraient rougir ver 9.01 42.09 0.00 0.07 cnd:pre:3p; +rougirais rougir ver 9.01 42.09 0.13 0.14 cnd:pre:1s; +rougirait rougir ver 9.01 42.09 0.29 0.00 cnd:pre:3s; +rougirent rougir ver 9.01 42.09 0.00 0.20 ind:pas:3p; +rougirez rougir ver 9.01 42.09 0.27 0.00 ind:fut:2p; +rougis rougir ver m p 9.01 42.09 1.75 4.32 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rougissaient rougir ver 9.01 42.09 0.02 0.54 ind:imp:3p; +rougissais rougir ver 9.01 42.09 0.19 0.68 ind:imp:1s;ind:imp:2s; +rougissait rougir ver 9.01 42.09 0.03 2.36 ind:imp:3s; +rougissant rougir ver 9.01 42.09 0.02 3.78 par:pre; +rougissante rougissant adj f s 0.20 2.16 0.15 1.28 +rougissantes rougissant adj f p 0.20 2.16 0.02 0.14 +rougissants rougissant adj m p 0.20 2.16 0.01 0.07 +rougisse rougir ver 9.01 42.09 0.01 0.07 sub:pre:1s;sub:pre:3s; +rougissement rougissement nom m s 0.06 0.07 0.03 0.07 +rougissements rougissement nom m p 0.06 0.07 0.04 0.00 +rougissent rougir ver 9.01 42.09 0.68 0.27 ind:pre:3p; +rougissez rougir ver 9.01 42.09 0.46 0.34 imp:pre:2p;ind:pre:2p; +rougit rougir ver 9.01 42.09 1.65 11.49 ind:pre:3s;ind:pas:3s; +roui rouir ver m s 0.00 0.27 0.00 0.07 par:pas; +rouies rouir ver f p 0.00 0.27 0.00 0.07 par:pas; +rouillaient rouiller ver 6.75 19.46 0.00 0.47 ind:imp:3p; +rouillait rouiller ver 6.75 19.46 0.00 0.54 ind:imp:3s; +rouillant rouiller ver 6.75 19.46 0.00 0.14 par:pre; +rouillarde rouillarde nom f s 0.00 0.07 0.00 0.07 +rouille rouille nom f s 1.97 8.85 1.96 8.72 +rouillent rouiller ver 6.75 19.46 0.75 0.20 ind:pre:3p; +rouiller rouiller ver 6.75 19.46 0.90 0.54 inf; +rouillerait rouiller ver 6.75 19.46 0.02 0.14 cnd:pre:3s; +rouilleront rouiller ver 6.75 19.46 0.01 0.00 ind:fut:3p; +rouilles rouille nom f p 1.97 8.85 0.01 0.14 +rouilleux rouilleux adj m 0.00 0.14 0.00 0.14 +rouillé rouiller ver m s 6.75 19.46 2.26 5.41 par:pas; +rouillée rouiller ver f s 6.75 19.46 1.46 2.91 par:pas; +rouillées rouiller ver f p 6.75 19.46 0.49 3.65 par:pas; +rouillures rouillure nom f p 0.00 0.07 0.00 0.07 +rouillés rouiller ver m p 6.75 19.46 0.42 4.26 par:pas; +rouissant rouir ver 0.00 0.27 0.00 0.07 par:pre; +rouissent rouir ver 0.00 0.27 0.00 0.07 ind:pre:3p; +roula rouler ver 61.82 163.45 0.16 12.43 ind:pas:3s; +roulade roulade nom f s 0.20 1.28 0.14 0.47 +roulades roulade nom f p 0.20 1.28 0.06 0.81 +roulage roulage nom m s 0.02 0.20 0.02 0.14 +roulages roulage nom m p 0.02 0.20 0.00 0.07 +roulai rouler ver 61.82 163.45 0.02 0.41 ind:pas:1s; +roulaient rouler ver 61.82 163.45 0.34 10.41 ind:imp:3p; +roulais rouler ver 61.82 163.45 1.21 2.43 ind:imp:1s;ind:imp:2s; +roulait rouler ver 61.82 163.45 2.43 22.91 ind:imp:3s; +roulant roulant adj m s 7.03 10.54 4.84 6.69 +roulante roulant adj f s 7.03 10.54 1.75 2.16 +roulantes roulant adj f p 7.03 10.54 0.17 0.88 +roulants roulant adj m p 7.03 10.54 0.27 0.81 +roule rouler ver 61.82 163.45 22.86 24.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rouleau rouleau nom m s 5.93 19.19 3.87 10.88 +rouleaux rouleau nom m p 5.93 19.19 2.06 8.31 +roulement roulement nom m s 2.94 10.41 2.17 7.97 +roulements roulement nom m p 2.94 10.41 0.77 2.43 +roulent rouler ver 61.82 163.45 2.02 6.28 ind:pre:3p; +rouler rouler ver 61.82 163.45 14.41 33.78 ind:pre:2p;inf; +roulera rouler ver 61.82 163.45 0.62 0.34 ind:fut:3s; +roulerai rouler ver 61.82 163.45 0.09 0.14 ind:fut:1s; +rouleraient rouler ver 61.82 163.45 0.01 0.34 cnd:pre:3p; +roulerais rouler ver 61.82 163.45 0.24 0.00 cnd:pre:1s;cnd:pre:2s; +roulerait rouler ver 61.82 163.45 0.27 0.81 cnd:pre:3s; +rouleras rouler ver 61.82 163.45 0.07 0.00 ind:fut:2s; +roulerez rouler ver 61.82 163.45 0.29 0.00 ind:fut:2p; +rouleriez rouler ver 61.82 163.45 0.02 0.00 cnd:pre:2p; +roulerons rouler ver 61.82 163.45 0.08 0.07 ind:fut:1p; +rouleront rouler ver 61.82 163.45 0.17 0.27 ind:fut:3p; +roules rouler ver 61.82 163.45 1.89 0.61 ind:pre:2s; +roulette roulette nom f s 5.55 8.78 2.50 2.77 +roulettes roulette nom f p 5.55 8.78 3.05 6.01 +rouleur rouleur adj m s 0.03 0.41 0.03 0.20 +rouleurs rouleur nom m p 0.06 0.41 0.03 0.27 +rouleuse rouleur adj f s 0.03 0.41 0.00 0.14 +rouleuses rouleur adj f p 0.03 0.41 0.00 0.07 +roulez rouler ver 61.82 163.45 3.83 0.95 imp:pre:2p;ind:pre:2p; +roulier roulier nom m s 0.30 1.01 0.16 0.61 +rouliers roulier nom m p 0.30 1.01 0.14 0.41 +rouliez rouler ver 61.82 163.45 0.75 0.07 ind:imp:2p; +roulions rouler ver 61.82 163.45 0.09 2.09 ind:imp:1p; +roulis roulis nom m 0.56 3.04 0.56 3.04 +roulâmes rouler ver 61.82 163.45 0.00 0.54 ind:pas:1p; +roulons rouler ver 61.82 163.45 0.44 2.91 imp:pre:1p;ind:pre:1p;;imp:pre:1p;ind:pre:1p; +roulât rouler ver 61.82 163.45 0.00 0.07 sub:imp:3s; +roulottait roulotter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +roulotte roulotte nom f s 1.59 4.80 1.32 3.58 +roulottent roulotter ver 0.00 0.20 0.00 0.14 ind:pre:3p; +roulottes roulotte nom f p 1.59 4.80 0.27 1.22 +roulottiers roulottier nom m p 0.00 0.20 0.00 0.14 +roulottière roulottier nom f s 0.00 0.20 0.00 0.07 +roulèrent rouler ver 61.82 163.45 0.28 4.26 ind:pas:3p; +roulé_boulé roulé_boulé nom m s 0.00 0.27 0.00 0.14 +roulé rouler ver m s 61.82 163.45 6.25 16.28 par:pas; +roulée roulé adj f s 2.15 8.99 1.18 2.23 +roulées rouler ver f p 61.82 163.45 0.17 1.08 par:pas; +roulure roulure nom f s 0.86 0.88 0.71 0.68 +roulures roulure nom f p 0.86 0.88 0.14 0.20 +roulé_boulé roulé_boulé nom m p 0.00 0.27 0.00 0.14 +roulés rouler ver m p 61.82 163.45 1.00 3.65 par:pas; +roumain roumain adj m s 3.11 1.42 2.23 0.41 +roumaine roumain adj f s 3.11 1.42 0.78 0.68 +roumaines roumain nom f p 2.58 1.76 0.14 0.00 +roumains roumain nom m p 2.58 1.76 0.87 0.88 +roumi roumi nom m s 0.14 0.47 0.14 0.00 +roumis roumi nom m p 0.14 0.47 0.00 0.47 +round round nom m s 7.59 2.84 5.75 2.30 +rounds round nom m p 7.59 2.84 1.84 0.54 +roupane roupane nom f s 0.00 0.27 0.00 0.27 +roupette roupette nom f s 0.15 0.00 0.15 0.00 +roupettes roupettes nom f p 0.56 0.20 0.56 0.20 +roupie roupie nom f s 1.30 0.95 0.29 0.41 +roupies roupie nom f p 1.30 0.95 1.01 0.54 +roupillaient roupiller ver 2.47 6.82 0.00 0.07 ind:imp:3p; +roupillais roupiller ver 2.47 6.82 0.06 0.14 ind:imp:1s;ind:imp:2s; +roupillait roupiller ver 2.47 6.82 0.04 0.54 ind:imp:3s; +roupille roupiller ver 2.47 6.82 0.64 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +roupillent roupiller ver 2.47 6.82 0.12 0.81 ind:pre:3p; +roupiller roupiller ver 2.47 6.82 1.22 2.43 inf; +roupillerai roupiller ver 2.47 6.82 0.00 0.07 ind:fut:1s; +roupillerais roupiller ver 2.47 6.82 0.01 0.00 cnd:pre:1s; +roupillerait roupiller ver 2.47 6.82 0.00 0.07 cnd:pre:3s; +roupilles roupiller ver 2.47 6.82 0.06 0.27 ind:pre:2s; +roupillez roupiller ver 2.47 6.82 0.19 0.07 imp:pre:2p;ind:pre:2p; +roupillon roupillon nom m s 0.56 1.08 0.42 1.01 +roupillons roupillon nom m p 0.56 1.08 0.14 0.07 +roupillé roupiller ver m s 2.47 6.82 0.14 0.68 par:pas; +rouquemoute rouquemoute nom s 0.00 3.85 0.00 3.85 +rouquette rouquette nom f s 0.00 0.07 0.00 0.07 +rouquin rouquin nom m s 2.84 10.07 1.33 8.31 +rouquine rouquin nom f s 2.84 10.07 1.06 1.35 +rouquines rouquin nom f p 2.84 10.07 0.05 0.07 +rouquins rouquin nom m p 2.84 10.07 0.39 0.34 +rouscaillait rouscailler ver 0.04 0.54 0.00 0.07 ind:imp:3s; +rouscaillant rouscailler ver 0.04 0.54 0.00 0.07 par:pre; +rouscaille rouscailler ver 0.04 0.54 0.04 0.14 imp:pre:2s;ind:pre:3s; +rouscaillent rouscailler ver 0.04 0.54 0.00 0.07 ind:pre:3p; +rouscailler rouscailler ver 0.04 0.54 0.00 0.20 inf; +rouspète rouspéter ver 1.02 1.69 0.16 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rouspètent rouspéter ver 1.02 1.69 0.05 0.07 ind:pre:3p; +rouspètes rouspéter ver 1.02 1.69 0.13 0.00 ind:pre:2s; +rouspéta rouspéter ver 1.02 1.69 0.01 0.20 ind:pas:3s; +rouspétage rouspétage nom m s 0.00 0.07 0.00 0.07 +rouspétaient rouspéter ver 1.02 1.69 0.00 0.07 ind:imp:3p; +rouspétais rouspéter ver 1.02 1.69 0.01 0.00 ind:imp:1s; +rouspétait rouspéter ver 1.02 1.69 0.03 0.34 ind:imp:3s; +rouspétance rouspétance nom f s 0.01 0.27 0.01 0.27 +rouspétant rouspéter ver 1.02 1.69 0.17 0.14 par:pre; +rouspéter rouspéter ver 1.02 1.69 0.46 0.27 inf; +rouspétera rouspéter ver 1.02 1.69 0.00 0.07 ind:fut:3s; +rouspéteur rouspéteur nom m s 0.04 0.00 0.01 0.00 +rouspéteurs rouspéteur nom m p 0.04 0.00 0.02 0.00 +rouspétez rouspéter ver 1.02 1.69 0.01 0.14 imp:pre:2p;ind:pre:2p; +rousse roux nom f s 4.50 11.08 3.69 5.61 +rousseau rousseau nom m s 0.00 0.20 0.00 0.14 +rousseauiste rousseauiste adj f s 0.01 0.07 0.01 0.07 +rousseaux rousseau nom m p 0.00 0.20 0.00 0.07 +rousselée rousseler ver f s 0.10 0.00 0.10 0.00 par:pas; +rousserolle rousserolle nom f s 0.00 0.07 0.00 0.07 +rousses rousse nom f p 0.53 0.00 0.53 0.00 +roussette roussette nom f s 0.01 1.69 0.01 1.55 +roussettes roussette nom f p 0.01 1.69 0.00 0.14 +rousseur rousseur nom f s 1.45 5.54 1.40 5.14 +rousseurs rousseur nom f p 1.45 5.54 0.05 0.41 +roussi roussi nom m s 1.00 1.22 1.00 1.15 +roussie roussi adj f s 0.04 2.23 0.01 0.61 +roussies roussir ver f p 0.23 1.76 0.10 0.14 par:pas; +roussin roussin nom m s 0.00 0.68 0.00 0.34 +roussins roussin nom m p 0.00 0.68 0.00 0.34 +roussir roussir ver 0.23 1.76 0.02 0.27 inf; +roussis roussi adj m p 0.04 2.23 0.01 0.61 +roussissaient roussir ver 0.23 1.76 0.00 0.07 ind:imp:3p; +roussissait roussir ver 0.23 1.76 0.00 0.14 ind:imp:3s; +roussissant roussir ver 0.23 1.76 0.00 0.07 par:pre; +roussissures roussissure nom f p 0.00 0.07 0.00 0.07 +roussit roussir ver 0.23 1.76 0.01 0.20 ind:pre:3s;ind:pas:3s; +roussâtre roussâtre adj s 0.00 1.22 0.00 0.81 +roussâtres roussâtre adj p 0.00 1.22 0.00 0.41 +roussé rousser ver m s 0.00 0.07 0.00 0.07 par:pas; +rouste rouste nom f s 0.34 0.41 0.32 0.34 +roustes rouste nom f p 0.34 0.41 0.02 0.07 +rousti roustir ver m s 0.01 0.34 0.01 0.14 par:pas; +rousties roustir ver f p 0.01 0.34 0.00 0.07 par:pas; +roustis roustir ver m p 0.01 0.34 0.00 0.14 par:pas; +rouston rouston nom m s 0.01 0.00 0.01 0.00 +roustons roustons nom m p 0.24 0.20 0.24 0.20 +routage routage nom m s 0.16 0.07 0.16 0.07 +routard routard nom m s 0.32 0.07 0.26 0.00 +routarde routard adj f s 0.01 0.07 0.00 0.07 +routards routard nom m p 0.32 0.07 0.06 0.07 +route route nom f s 166.72 288.04 152.83 251.35 +router router ver 0.05 0.00 0.03 0.00 inf; +routes route nom f p 166.72 288.04 13.89 36.69 +routeur routeur nom m s 0.17 0.00 0.11 0.00 +routeurs routeur nom m p 0.17 0.00 0.06 0.00 +routier routier adj m s 4.63 4.26 1.41 0.74 +routiers routier nom m p 2.00 5.54 0.98 2.97 +routin routin nom m s 0.00 0.47 0.00 0.47 +routine routine nom f s 12.14 12.77 11.67 9.53 +routines routine nom f p 12.14 12.77 0.47 3.24 +routinier routinier adj m s 0.15 1.62 0.09 0.41 +routiniers routinier adj m p 0.15 1.62 0.00 0.47 +routinière routinier adj f s 0.15 1.62 0.05 0.47 +routinières routinier adj f p 0.15 1.62 0.01 0.27 +routière routier adj f s 4.63 4.26 2.34 2.30 +routières routier adj f p 4.63 4.26 0.39 0.54 +routé router ver m s 0.05 0.00 0.02 0.00 par:pas; +roué rouer ver m s 2.20 2.57 0.53 1.22 par:pas; +rouée rouer ver f s 2.20 2.57 0.36 0.41 par:pas; +roués roué adj m p 0.02 0.54 0.01 0.20 +rouvert rouvrir ver m s 6.76 18.45 0.62 1.89 par:pas; +rouverte rouvrir ver f s 6.76 18.45 0.19 0.81 par:pas; +rouvertes rouvrir ver f p 6.76 18.45 0.14 0.41 par:pas; +rouverts rouvrir ver m p 6.76 18.45 0.02 0.27 par:pas; +rouvrît rouvrir ver 6.76 18.45 0.00 0.14 sub:imp:3s; +rouvraient rouvrir ver 6.76 18.45 0.01 0.20 ind:imp:3p; +rouvrais rouvrir ver 6.76 18.45 0.02 0.47 ind:imp:1s;ind:imp:2s; +rouvrait rouvrir ver 6.76 18.45 0.01 1.01 ind:imp:3s; +rouvrant rouvrir ver 6.76 18.45 0.01 0.61 par:pre; +rouvre rouvrir ver 6.76 18.45 0.94 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rouvrent rouvrir ver 6.76 18.45 0.35 0.41 ind:pre:3p; +rouvres rouvrir ver 6.76 18.45 0.02 0.27 ind:pre:2s;sub:pre:2s; +rouvrez rouvrir ver 6.76 18.45 0.25 0.00 imp:pre:2p;ind:pre:2p; +rouvriez rouvrir ver 6.76 18.45 0.01 0.00 ind:imp:2p; +rouvrir rouvrir ver 6.76 18.45 3.46 3.65 inf; +rouvrira rouvrir ver 6.76 18.45 0.28 0.07 ind:fut:3s; +rouvrirai rouvrir ver 6.76 18.45 0.09 0.20 ind:fut:1s; +rouvriraient rouvrir ver 6.76 18.45 0.00 0.14 cnd:pre:3p; +rouvrirais rouvrir ver 6.76 18.45 0.00 0.14 cnd:pre:1s;cnd:pre:2s; +rouvrirait rouvrir ver 6.76 18.45 0.01 0.14 cnd:pre:3s; +rouvrirent rouvrir ver 6.76 18.45 0.00 0.41 ind:pas:3p; +rouvrirez rouvrir ver 6.76 18.45 0.04 0.07 ind:fut:2p; +rouvriront rouvrir ver 6.76 18.45 0.14 0.00 ind:fut:3p; +rouvris rouvrir ver 6.76 18.45 0.01 0.34 ind:pas:1s; +rouvrit rouvrir ver 6.76 18.45 0.12 3.92 ind:pas:3s; +rouvrons rouvrir ver 6.76 18.45 0.03 0.00 imp:pre:1p;ind:pre:1p; +roux roux adj m 3.66 20.68 3.66 20.68 +roy roy nom m s 0.17 0.27 0.17 0.27 +royal royal adj m s 22.65 29.26 10.51 16.49 +royale royal adj f s 22.65 29.26 9.64 9.59 +royalement royalement adv 0.83 1.82 0.83 1.82 +royales royal adj f p 22.65 29.26 1.50 1.69 +royaliste royaliste adj s 0.35 0.68 0.20 0.47 +royalistes royaliste nom p 0.28 0.34 0.16 0.27 +royalties royalties nom f p 0.54 0.14 0.54 0.14 +royalty royalty nom f s 0.01 0.07 0.01 0.07 +royaume royaume nom m s 27.79 20.68 24.16 18.78 +royaumes royaume nom m p 27.79 20.68 3.62 1.89 +royauté royauté nom f s 0.59 1.28 0.58 1.15 +royautés royauté nom f p 0.59 1.28 0.01 0.14 +royaux royal adj m p 22.65 29.26 1.00 1.49 +règle règle nom f s 79.51 49.93 33.17 27.91 +règlement règlement nom m s 21.27 17.16 19.40 12.16 +règlements règlement nom m p 21.27 17.16 1.87 5.00 +règlent régler ver 85.81 54.19 0.76 0.47 ind:pre:3p; +règles règle nom f p 79.51 49.93 46.34 22.03 +règne régner ver 22.75 47.43 8.06 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +règnent régner ver 22.75 47.43 1.52 1.89 ind:pre:3p; +règnes régner ver 22.75 47.43 0.16 0.07 ind:pre:2s; +ré ré nom m 3.06 0.54 3.06 0.54 +ru ru nom m s 0.26 0.88 0.14 0.61 +rua ruer ver 3.27 20.81 0.03 3.11 ind:pas:3s; +réa réa nom m s 0.88 0.00 0.88 0.00 +réabonnement réabonnement nom m s 0.03 0.07 0.03 0.07 +réabonner réabonner ver 0.03 0.00 0.03 0.00 inf; +réabsorption réabsorption nom f s 0.03 0.00 0.03 0.00 +réac réac adj m s 0.59 0.47 0.42 0.41 +réaccoutumer réaccoutumer ver 0.00 0.20 0.00 0.14 inf; +réaccoutumerait réaccoutumer ver 0.00 0.20 0.00 0.07 cnd:pre:3s; +réacheminer réacheminer ver 0.01 0.00 0.01 0.00 inf; +réacs réac adj m p 0.59 0.47 0.17 0.07 +réactant réactant nom m s 0.01 0.00 0.01 0.00 +réacteur réacteur nom m s 5.24 0.81 3.62 0.14 +réacteurs réacteur nom m p 5.24 0.81 1.62 0.68 +réactif réactif nom m s 0.38 0.20 0.27 0.20 +réactifs réactif nom m p 0.38 0.20 0.11 0.00 +réaction réaction nom f s 26.41 30.68 21.23 20.00 +réactionnaire réactionnaire adj s 1.55 2.43 0.54 1.76 +réactionnaires réactionnaire adj p 1.55 2.43 1.01 0.68 +réactionnel réactionnel adj m s 0.01 0.00 0.01 0.00 +réactions réaction nom f p 26.41 30.68 5.17 10.68 +réactiva réactiver ver 1.21 0.34 0.00 0.07 ind:pas:3s; +réactivait réactiver ver 1.21 0.34 0.00 0.07 ind:imp:3s; +réactivation réactivation nom f s 0.03 0.07 0.03 0.07 +réactive réactiver ver 1.21 0.34 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réactiver réactiver ver 1.21 0.34 0.49 0.00 inf; +réactiveront réactiver ver 1.21 0.34 0.01 0.00 ind:fut:3p; +réactives réactif adj f p 0.63 0.07 0.24 0.00 +réactivez réactiver ver 1.21 0.34 0.13 0.00 imp:pre:2p; +réactiviez réactiver ver 1.21 0.34 0.01 0.00 ind:imp:2p; +réactivité réactivité nom f s 0.20 0.00 0.20 0.00 +réactivé réactiver ver m s 1.21 0.34 0.37 0.14 par:pas; +réactivée réactiver ver f s 1.21 0.34 0.09 0.00 par:pas; +réactivées réactiver ver f p 1.21 0.34 0.01 0.00 par:pas; +réactualisation réactualisation nom f s 0.01 0.00 0.01 0.00 +réactualise réactualiser ver 0.05 0.14 0.00 0.07 ind:pre:3s; +réactualiser réactualiser ver 0.05 0.14 0.03 0.07 inf; +réactualisé réactualiser ver m s 0.05 0.14 0.03 0.00 par:pas; +réadaptait réadapter ver 0.09 0.27 0.00 0.07 ind:imp:3s; +réadaptant réadapter ver 0.09 0.27 0.00 0.07 par:pre; +réadaptation réadaptation nom f s 0.24 0.14 0.24 0.14 +réadapte réadapter ver 0.09 0.27 0.01 0.00 ind:pre:3s; +réadapter réadapter ver 0.09 0.27 0.08 0.14 inf; +ruade ruade nom f s 0.28 2.09 0.28 0.95 +ruades ruade nom f p 0.28 2.09 0.01 1.15 +réadmis réadmettre ver m s 0.06 0.00 0.04 0.00 par:pas; +réadmise réadmettre ver f s 0.06 0.00 0.01 0.00 par:pas; +réadmission réadmission nom f s 0.04 0.00 0.04 0.00 +réadopter réadopter ver 0.00 0.07 0.00 0.07 inf; +réaffûtée réaffûter ver f s 0.00 0.07 0.00 0.07 par:pas; +réaffectait réaffecter ver 0.51 0.00 0.01 0.00 ind:imp:3s; +réaffectation réaffectation nom f s 0.16 0.00 0.16 0.00 +réaffecter réaffecter ver 0.51 0.00 0.11 0.00 inf; +réaffectons réaffecter ver 0.51 0.00 0.01 0.00 imp:pre:1p; +réaffecté réaffecter ver m s 0.51 0.00 0.28 0.00 par:pas; +réaffectée réaffecter ver f s 0.51 0.00 0.07 0.00 par:pas; +réaffectés réaffecter ver m p 0.51 0.00 0.03 0.00 par:pas; +réaffichées réafficher ver f p 0.00 0.07 0.00 0.07 par:pas; +réaffirmai réaffirmer ver 0.46 0.47 0.00 0.07 ind:pas:1s; +réaffirmaient réaffirmer ver 0.46 0.47 0.00 0.07 ind:imp:3p; +réaffirmait réaffirmer ver 0.46 0.47 0.01 0.00 ind:imp:3s; +réaffirmation réaffirmation nom f s 0.01 0.00 0.01 0.00 +réaffirme réaffirmer ver 0.46 0.47 0.22 0.00 ind:pre:1s;ind:pre:3s; +réaffirmer réaffirmer ver 0.46 0.47 0.13 0.27 inf; +réaffirmé réaffirmer ver m s 0.46 0.47 0.07 0.00 par:pas; +réaffirmée réaffirmer ver f s 0.46 0.47 0.03 0.07 par:pas; +réagît réagir ver 33.19 23.45 0.00 0.20 sub:imp:3s; +réagencement réagencement nom m s 0.00 0.07 0.00 0.07 +réagi réagir ver m s 33.19 23.45 5.95 3.85 par:pas; +réagir réagir ver 33.19 23.45 9.92 7.97 inf; +réagira réagir ver 33.19 23.45 0.93 0.00 ind:fut:3s; +réagirai réagir ver 33.19 23.45 0.06 0.07 ind:fut:1s; +réagiraient réagir ver 33.19 23.45 0.34 0.00 cnd:pre:3p; +réagirais réagir ver 33.19 23.45 1.19 0.00 cnd:pre:1s;cnd:pre:2s; +réagirait réagir ver 33.19 23.45 0.40 0.47 cnd:pre:3s; +réagiras réagir ver 33.19 23.45 0.02 0.00 ind:fut:2s; +réagirent réagir ver 33.19 23.45 0.00 0.34 ind:pas:3p; +réagirez réagir ver 33.19 23.45 0.08 0.00 ind:fut:2p; +réagiriez réagir ver 33.19 23.45 0.12 0.07 cnd:pre:2p; +réagirons réagir ver 33.19 23.45 0.15 0.00 ind:fut:1p; +réagiront réagir ver 33.19 23.45 0.15 0.00 ind:fut:3p; +réagis réagir ver m p 33.19 23.45 4.01 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réagissaient réagir ver 33.19 23.45 0.03 0.41 ind:imp:3p; +réagissais réagir ver 33.19 23.45 0.01 0.61 ind:imp:1s; +réagissait réagir ver 33.19 23.45 0.17 1.49 ind:imp:3s; +réagissant réagir ver 33.19 23.45 0.07 0.20 par:pre; +réagissante réagissant adj f s 0.00 0.07 0.00 0.07 +réagisse réagir ver 33.19 23.45 0.84 0.41 sub:pre:1s;sub:pre:3s; +réagissent réagir ver 33.19 23.45 2.06 0.81 ind:pre:3p; +réagisses réagir ver 33.19 23.45 0.07 0.00 sub:pre:2s; +réagissez réagir ver 33.19 23.45 1.39 0.27 imp:pre:2p;ind:pre:2p; +réagissiez réagir ver 33.19 23.45 0.12 0.07 ind:imp:2p; +réagissions réagir ver 33.19 23.45 0.00 0.20 ind:imp:1p; +réagissons réagir ver 33.19 23.45 0.04 0.07 imp:pre:1p;ind:pre:1p; +réagit réagir ver 33.19 23.45 5.09 4.39 ind:pre:3s;ind:pas:3s; +ruai ruer ver 3.27 20.81 0.01 0.47 ind:pas:1s; +ruaient ruer ver 3.27 20.81 0.01 0.74 ind:imp:3p; +ruais ruer ver 3.27 20.81 0.01 0.34 ind:imp:1s; +ruait ruer ver 3.27 20.81 0.13 1.42 ind:imp:3s; +réait réer ver 0.09 0.07 0.00 0.07 ind:imp:3s; +réajusta réajuster ver 0.38 1.22 0.00 0.14 ind:pas:3s; +réajustaient réajuster ver 0.38 1.22 0.00 0.07 ind:imp:3p; +réajustait réajuster ver 0.38 1.22 0.00 0.07 ind:imp:3s; +réajustant réajuster ver 0.38 1.22 0.00 0.34 par:pre; +réajuste réajuster ver 0.38 1.22 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réajustement réajustement nom m s 0.18 0.07 0.15 0.00 +réajustements réajustement nom m p 0.18 0.07 0.03 0.07 +réajuster réajuster ver 0.38 1.22 0.26 0.41 inf; +réajusté réajuster ver m s 0.38 1.22 0.03 0.07 par:pas; +réajustées réajuster ver f p 0.38 1.22 0.00 0.07 par:pas; +réajustés réajuster ver m p 0.38 1.22 0.02 0.00 par:pas; +réal réal nom m s 0.16 0.00 0.16 0.00 +réaligne réaligner ver 0.11 0.00 0.06 0.00 ind:pre:1s;ind:pre:3s; +réalignement réalignement nom m s 0.07 0.00 0.07 0.00 +réaligner réaligner ver 0.11 0.00 0.05 0.00 inf; +réalimenter réalimenter ver 0.01 0.00 0.01 0.00 inf; +réalisa réaliser ver 71.27 35.95 1.44 2.03 ind:pas:3s; +réalisable réalisable adj s 0.63 0.68 0.61 0.68 +réalisables réalisable adj p 0.63 0.68 0.02 0.00 +réalisai réaliser ver 71.27 35.95 0.13 1.82 ind:pas:1s; +réalisaient réaliser ver 71.27 35.95 0.47 0.68 ind:imp:3p; +réalisais réaliser ver 71.27 35.95 0.69 0.41 ind:imp:1s;ind:imp:2s; +réalisait réaliser ver 71.27 35.95 0.59 1.28 ind:imp:3s; +réalisant réaliser ver 71.27 35.95 0.72 1.08 par:pre; +réalisateur réalisateur nom m s 17.06 1.08 13.96 0.74 +réalisateurs réalisateur nom m p 17.06 1.08 2.50 0.27 +réalisation réalisation nom f s 3.31 4.19 2.86 3.24 +réalisations réalisation nom f p 3.31 4.19 0.45 0.95 +réalisatrice réalisateur nom f s 17.06 1.08 0.60 0.00 +réalisatrices réalisatrice nom f p 0.02 0.00 0.02 0.00 +réalise réaliser ver 71.27 35.95 9.95 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +réalisent réaliser ver 71.27 35.95 2.74 1.15 ind:pre:3p; +réaliser réaliser ver 71.27 35.95 16.95 12.97 inf; +réalisera réaliser ver 71.27 35.95 1.39 0.14 ind:fut:3s; +réaliserai réaliser ver 71.27 35.95 0.12 0.00 ind:fut:1s; +réaliseraient réaliser ver 71.27 35.95 0.03 0.07 cnd:pre:3p; +réaliserais réaliser ver 71.27 35.95 0.20 0.07 cnd:pre:1s;cnd:pre:2s; +réaliserait réaliser ver 71.27 35.95 0.17 0.27 cnd:pre:3s; +réaliseras réaliser ver 71.27 35.95 0.35 0.00 ind:fut:2s; +réaliserez réaliser ver 71.27 35.95 0.19 0.00 ind:fut:2p; +réaliserions réaliser ver 71.27 35.95 0.00 0.07 cnd:pre:1p; +réaliseront réaliser ver 71.27 35.95 0.81 0.20 ind:fut:3p; +réalises réaliser ver 71.27 35.95 5.29 0.34 ind:pre:2p;ind:pre:2s; +réalisez réaliser ver 71.27 35.95 4.33 0.07 imp:pre:2p;ind:pre:2p; +réalisiez réaliser ver 71.27 35.95 0.14 0.07 ind:imp:2p; +réalisions réaliser ver 71.27 35.95 0.04 0.07 ind:imp:1p; +réalisme réalisme nom m s 1.19 5.41 1.19 5.41 +réalisâmes réaliser ver 71.27 35.95 0.14 0.07 ind:pas:1p; +réalisons réaliser ver 71.27 35.95 0.39 0.07 imp:pre:1p;ind:pre:1p; +réalisât réaliser ver 71.27 35.95 0.00 0.07 sub:imp:3s; +réaliste réaliste adj s 7.05 5.81 5.54 3.92 +réalistes réaliste adj p 7.05 5.81 1.52 1.89 +réalisèrent réaliser ver 71.27 35.95 0.14 0.07 ind:pas:3p; +réalisé réaliser ver m s 71.27 35.95 21.23 6.22 par:pas; +réalisée réaliser ver f s 71.27 35.95 0.71 1.69 par:pas; +réalisées réaliser ver f p 71.27 35.95 0.74 0.81 par:pas; +réalisés réaliser ver m p 71.27 35.95 1.23 0.68 par:pas; +réalité réalité nom f s 53.77 82.77 52.15 75.95 +réalités réalité nom f p 53.77 82.77 1.62 6.82 +réamorce réamorcer ver 0.07 0.27 0.01 0.07 ind:pre:1s;ind:pre:3s; +réamorcent réamorcer ver 0.07 0.27 0.00 0.07 ind:pre:3p; +réamorcer réamorcer ver 0.07 0.27 0.06 0.07 inf; +réamorçage réamorçage nom m s 0.01 0.00 0.01 0.00 +réamorçait réamorcer ver 0.07 0.27 0.00 0.07 ind:imp:3s; +réaménageait réaménager ver 0.19 0.27 0.00 0.07 ind:imp:3s; +réaménagement réaménagement nom m s 0.19 0.14 0.19 0.07 +réaménagements réaménagement nom m p 0.19 0.14 0.00 0.07 +réaménager réaménager ver 0.19 0.27 0.12 0.07 inf; +réaménagé réaménager ver m s 0.19 0.27 0.06 0.14 par:pas; +réanimait réanimer ver 1.65 0.20 0.01 0.00 ind:imp:3s; +réanimateur réanimateur nom m s 0.04 0.00 0.04 0.00 +réanimation réanimation nom f s 2.16 1.35 2.16 1.35 +réanime réanimer ver 1.65 0.20 0.09 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réanimer réanimer ver 1.65 0.20 1.08 0.00 inf; +réanimeraient réanimer ver 1.65 0.20 0.00 0.07 cnd:pre:3p; +réanimez réanimer ver 1.65 0.20 0.04 0.00 imp:pre:2p; +réanimions réanimer ver 1.65 0.20 0.01 0.00 ind:imp:1p; +réanimé réanimer ver m s 1.65 0.20 0.35 0.00 par:pas; +réanimée réanimer ver f s 1.65 0.20 0.07 0.00 par:pas; +ruant ruer ver 3.27 20.81 0.05 1.49 par:pre; +réapercevoir réapercevoir ver 0.00 0.07 0.00 0.07 inf; +réapparût réapparaître ver 4.81 12.23 0.00 0.07 sub:imp:3s; +réapparaît réapparaître ver 4.81 12.23 0.52 1.35 ind:pre:3s; +réapparaîtra réapparaître ver 4.81 12.23 0.47 0.14 ind:fut:3s; +réapparaîtrai réapparaître ver 4.81 12.23 0.00 0.14 ind:fut:1s; +réapparaîtraient réapparaître ver 4.81 12.23 0.01 0.07 cnd:pre:3p; +réapparaîtrait réapparaître ver 4.81 12.23 0.07 0.20 cnd:pre:3s; +réapparaître réapparaître ver 4.81 12.23 0.83 1.96 inf; +réapparaîtront réapparaître ver 4.81 12.23 0.01 0.00 ind:fut:3p; +réapparais réapparaître ver 4.81 12.23 0.21 0.07 ind:pre:1s;ind:pre:2s; +réapparaissaient réapparaître ver 4.81 12.23 0.01 0.34 ind:imp:3p; +réapparaissais réapparaître ver 4.81 12.23 0.01 0.14 ind:imp:1s;ind:imp:2s; +réapparaissait réapparaître ver 4.81 12.23 0.05 1.76 ind:imp:3s; +réapparaissant réapparaître ver 4.81 12.23 0.01 0.27 par:pre; +réapparaisse réapparaître ver 4.81 12.23 0.26 0.20 sub:pre:1s;sub:pre:3s; +réapparaissent réapparaître ver 4.81 12.23 0.58 0.54 ind:pre:3p; +réapparaisses réapparaître ver 4.81 12.23 0.02 0.00 sub:pre:2s; +réapparition réapparition nom f s 0.17 1.69 0.16 1.55 +réapparitions réapparition nom f p 0.17 1.69 0.01 0.14 +réapparu réapparaître ver m s 4.81 12.23 1.19 0.74 par:pas; +réapparue réapparaître ver f s 4.81 12.23 0.11 0.54 par:pas; +réapparues réapparaître ver f p 4.81 12.23 0.01 0.00 par:pas; +réapparurent réapparaître ver 4.81 12.23 0.04 0.41 ind:pas:3p; +réapparus réapparaître ver m p 4.81 12.23 0.32 0.27 par:pas; +réapparut réapparaître ver 4.81 12.23 0.07 3.04 ind:pas:3s; +réappeler réappeler ver 0.01 0.00 0.01 0.00 inf; +réapprenaient réapprendre ver 0.91 1.89 0.00 0.14 ind:imp:3p; +réapprenais réapprendre ver 0.91 1.89 0.00 0.07 ind:imp:1s; +réapprenait réapprendre ver 0.91 1.89 0.01 0.27 ind:imp:3s; +réapprend réapprendre ver 0.91 1.89 0.01 0.14 ind:pre:3s; +réapprendraient réapprendre ver 0.91 1.89 0.00 0.07 cnd:pre:3p; +réapprendre réapprendre ver 0.91 1.89 0.70 0.81 inf; +réapprendrez réapprendre ver 0.91 1.89 0.01 0.00 ind:fut:2p; +réapprends réapprendre ver 0.91 1.89 0.01 0.07 ind:pre:1s; +réapprenne réapprendre ver 0.91 1.89 0.01 0.20 sub:pre:1s; +réappris réapprendre ver m s 0.91 1.89 0.14 0.00 par:pas; +réapprises réapprendre ver f p 0.91 1.89 0.00 0.07 par:pas; +réapprit réapprendre ver 0.91 1.89 0.01 0.07 ind:pas:3s; +réapprovisionne réapprovisionner ver 0.47 0.47 0.04 0.00 ind:pre:3s; +réapprovisionnement réapprovisionnement nom m s 0.21 0.14 0.21 0.14 +réapprovisionner réapprovisionner ver 0.47 0.47 0.38 0.34 inf; +réapprovisionnerait réapprovisionner ver 0.47 0.47 0.00 0.07 cnd:pre:3s; +réapprovisionné réapprovisionner ver m s 0.47 0.47 0.04 0.00 par:pas; +réapprovisionnée réapprovisionner ver f s 0.47 0.47 0.01 0.07 par:pas; +réargenter réargenter ver 0.01 0.00 0.01 0.00 inf; +réarma réarmer ver 0.10 0.47 0.00 0.07 ind:pas:3s; +réarmant réarmer ver 0.10 0.47 0.01 0.00 par:pre; +réarme réarmer ver 0.10 0.47 0.00 0.07 ind:pre:3s; +réarmement réarmement nom m s 0.09 0.34 0.09 0.34 +réarmer réarmer ver 0.10 0.47 0.05 0.14 inf; +réarmé réarmer ver m s 0.10 0.47 0.03 0.07 par:pas; +réarmées réarmer ver f p 0.10 0.47 0.00 0.14 par:pas; +réarrange réarranger ver 0.23 0.27 0.06 0.00 ind:pre:1s;ind:pre:3s; +réarrangeait réarranger ver 0.23 0.27 0.00 0.07 ind:imp:3s; +réarrangeant réarranger ver 0.23 0.27 0.01 0.00 par:pre; +réarrangement réarrangement nom m s 0.03 0.00 0.03 0.00 +réarrangent réarranger ver 0.23 0.27 0.01 0.07 ind:pre:3p; +réarranger réarranger ver 0.23 0.27 0.14 0.14 inf; +réarrangé réarranger ver m s 0.23 0.27 0.01 0.00 par:pas; +réassembler réassembler ver 0.14 0.00 0.14 0.00 inf; +réassignation réassignation nom f s 0.03 0.00 0.03 0.00 +réassigner réassigner ver 0.14 0.07 0.07 0.00 inf; +réassigneront réassigner ver 0.14 0.07 0.00 0.07 ind:fut:3p; +réassigné réassigner ver m s 0.14 0.07 0.07 0.00 par:pas; +réassimilé réassimiler ver m s 0.02 0.00 0.02 0.00 par:pas; +réassorties réassortir ver f p 0.00 0.20 0.00 0.07 par:pas; +réassortir réassortir ver 0.00 0.20 0.00 0.14 inf; +réassumer réassumer ver 0.00 0.14 0.00 0.14 inf; +réassurer réassurer ver 0.02 0.07 0.02 0.07 inf; +réattaquai réattaquer ver 0.03 0.41 0.00 0.07 ind:pas:1s; +réattaquait réattaquer ver 0.03 0.41 0.00 0.14 ind:imp:3s; +réattaque réattaquer ver 0.03 0.41 0.02 0.07 ind:pre:3s; +réattaquer réattaquer ver 0.03 0.41 0.01 0.00 inf; +réattaqué réattaquer ver m s 0.03 0.41 0.00 0.14 par:pas; +réaux réal adj m p 0.40 0.54 0.40 0.54 +ruban ruban nom m s 8.49 23.18 6.56 15.20 +rubans ruban nom m p 8.49 23.18 1.93 7.97 +rébarbatif rébarbatif adj m s 0.17 1.35 0.16 0.61 +rébarbatifs rébarbatif adj m p 0.17 1.35 0.00 0.27 +rébarbative rébarbatif adj f s 0.17 1.35 0.00 0.27 +rébarbatives rébarbatif adj f p 0.17 1.35 0.01 0.20 +rubato rubato adv 0.00 0.07 0.00 0.07 +rébecca rébecca nom f s 0.00 0.07 0.00 0.07 +rébellion rébellion nom f s 4.04 3.85 4.00 3.65 +rébellions rébellion nom f p 4.04 3.85 0.04 0.20 +rubia rubia nom m s 0.01 0.00 0.01 0.00 +rubican rubican adj m s 0.00 0.07 0.00 0.07 +rubicond rubicond adj m s 0.00 1.49 0.00 0.88 +rubiconde rubicond adj f s 0.00 1.49 0.00 0.34 +rubicondes rubicond adj f p 0.00 1.49 0.00 0.14 +rubiconds rubicond adj m p 0.00 1.49 0.00 0.14 +rubis rubis nom m 2.22 3.11 2.22 3.11 +rubricard rubricard nom m s 0.00 0.07 0.00 0.07 +rubrique rubrique nom f s 3.06 6.69 2.90 5.00 +rubriques rubrique nom f p 3.06 6.69 0.16 1.69 +rubénienne rubénien adj f s 0.00 0.07 0.00 0.07 +rubéole rubéole nom f s 0.14 0.14 0.14 0.14 +rébus rébus nom m p 0.10 1.28 0.10 1.28 +récalcitrant récalcitrant adj m s 0.48 1.08 0.21 0.61 +récalcitrante récalcitrant adj f s 0.48 1.08 0.03 0.07 +récalcitrantes récalcitrant adj f p 0.48 1.08 0.10 0.00 +récalcitrants récalcitrant adj m p 0.48 1.08 0.14 0.41 +récapitula récapituler ver 2.65 1.62 0.00 0.07 ind:pas:3s; +récapitulai récapituler ver 2.65 1.62 0.00 0.07 ind:pas:1s; +récapitulais récapituler ver 2.65 1.62 0.02 0.07 ind:imp:1s; +récapitulait récapituler ver 2.65 1.62 0.00 0.27 ind:imp:3s; +récapitulant récapituler ver 2.65 1.62 0.01 0.20 par:pre; +récapitulatif récapitulatif nom m s 0.06 0.20 0.06 0.20 +récapitulation récapitulation nom f s 0.20 0.47 0.20 0.47 +récapitule récapituler ver 2.65 1.62 0.61 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récapitulent récapituler ver 2.65 1.62 0.00 0.07 ind:pre:3p; +récapituler récapituler ver 2.65 1.62 0.40 0.34 inf; +récapitulez récapituler ver 2.65 1.62 0.04 0.00 imp:pre:2p; +récapitulions récapituler ver 2.65 1.62 0.01 0.00 ind:imp:1p; +récapitulons récapituler ver 2.65 1.62 1.51 0.07 imp:pre:1p; +récapitulé récapituler ver m s 2.65 1.62 0.04 0.14 par:pas; +récapitulée récapituler ver f s 2.65 1.62 0.00 0.07 par:pas; +récemment récemment adv 21.07 15.07 21.07 15.07 +récent récent adj m s 12.42 23.45 3.96 5.61 +récente récent adj f s 12.42 23.45 3.72 8.72 +récentes récent adj f p 12.42 23.45 2.09 4.39 +récents récent adj m p 12.42 23.45 2.65 4.73 +réceptacle réceptacle nom m s 0.70 0.54 0.64 0.47 +réceptacles réceptacle nom m p 0.70 0.54 0.06 0.07 +récepteur récepteur nom m s 0.85 3.58 0.56 3.24 +récepteurs récepteur nom m p 0.85 3.58 0.29 0.34 +réceptif réceptif adj m s 1.44 0.68 0.88 0.41 +réceptifs réceptif adj m p 1.44 0.68 0.14 0.07 +réception réception nom f s 17.47 16.82 16.60 12.70 +réceptionna réceptionner ver 0.69 0.88 0.00 0.07 ind:pas:3s; +réceptionnant réceptionner ver 0.69 0.88 0.00 0.07 par:pre; +réceptionne réceptionner ver 0.69 0.88 0.32 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réceptionnent réceptionner ver 0.69 0.88 0.01 0.00 ind:pre:3p; +réceptionner réceptionner ver 0.69 0.88 0.13 0.14 inf; +réceptionnera réceptionner ver 0.69 0.88 0.01 0.00 ind:fut:3s; +réceptionniste réceptionniste nom s 1.69 1.96 1.64 1.76 +réceptionnistes réceptionniste nom p 1.69 1.96 0.04 0.20 +réceptionné réceptionner ver m s 0.69 0.88 0.23 0.20 par:pas; +réceptionnées réceptionner ver f p 0.69 0.88 0.00 0.07 par:pas; +réceptions réception nom f p 17.47 16.82 0.86 4.12 +réceptive réceptif adj f s 1.44 0.68 0.38 0.14 +réceptives réceptif adj f p 1.44 0.68 0.04 0.07 +réceptivité réceptivité nom f s 0.04 0.20 0.04 0.20 +réceptrice récepteur adj f s 0.27 0.27 0.02 0.14 +récessif récessif adj m s 0.12 0.00 0.09 0.00 +récessifs récessif adj m p 0.12 0.00 0.02 0.00 +récession récession nom f s 0.96 0.20 0.96 0.20 +récessive récessif adj f s 0.12 0.00 0.01 0.00 +réchappai réchapper ver 2.42 1.55 0.01 0.00 ind:pas:1s; +réchappais réchapper ver 2.42 1.55 0.03 0.07 ind:imp:1s;ind:imp:2s; +réchappait réchapper ver 2.42 1.55 0.00 0.07 ind:imp:3s; +réchappe réchapper ver 2.42 1.55 0.92 0.27 ind:pre:1s;ind:pre:3s; +réchappent réchapper ver 2.42 1.55 0.02 0.07 ind:pre:3p; +réchapper réchapper ver 2.42 1.55 0.64 0.14 inf; +réchappera réchapper ver 2.42 1.55 0.05 0.00 ind:fut:3s; +réchapperaient réchapper ver 2.42 1.55 0.00 0.07 cnd:pre:3p; +réchapperais réchapper ver 2.42 1.55 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +réchapperait réchapper ver 2.42 1.55 0.00 0.27 cnd:pre:3s; +réchappes réchapper ver 2.42 1.55 0.12 0.07 ind:pre:2s; +réchappez réchapper ver 2.42 1.55 0.01 0.00 ind:pre:2p; +réchappons réchapper ver 2.42 1.55 0.11 0.00 ind:pre:1p; +réchappé réchapper ver m s 2.42 1.55 0.50 0.47 par:pas; +réchappés réchapper ver m p 2.42 1.55 0.01 0.00 par:pas; +réchaud réchaud nom m s 1.00 6.82 0.83 6.22 +réchauds réchaud nom m p 1.00 6.82 0.17 0.61 +réchauffa réchauffer ver 16.27 22.16 0.01 0.95 ind:pas:3s; +réchauffage réchauffage nom m s 0.01 0.00 0.01 0.00 +réchauffai réchauffer ver 16.27 22.16 0.00 0.14 ind:pas:1s; +réchauffaient réchauffer ver 16.27 22.16 0.03 0.34 ind:imp:3p; +réchauffais réchauffer ver 16.27 22.16 0.03 0.00 ind:imp:1s;ind:imp:2s; +réchauffait réchauffer ver 16.27 22.16 0.08 2.23 ind:imp:3s; +réchauffant réchauffer ver 16.27 22.16 0.03 0.41 par:pre; +réchauffante réchauffant adj f s 0.00 0.27 0.00 0.07 +réchauffantes réchauffant adj f p 0.00 0.27 0.00 0.14 +réchauffants réchauffant adj m p 0.00 0.27 0.00 0.07 +réchauffe réchauffer ver 16.27 22.16 5.06 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réchauffement réchauffement nom m s 1.02 0.07 1.02 0.07 +réchauffent réchauffer ver 16.27 22.16 0.34 0.68 ind:pre:3p; +réchauffer réchauffer ver 16.27 22.16 7.64 11.62 inf; +réchauffera réchauffer ver 16.27 22.16 0.79 0.47 ind:fut:3s; +réchaufferai réchauffer ver 16.27 22.16 0.07 0.07 ind:fut:1s; +réchaufferait réchauffer ver 16.27 22.16 0.04 0.07 cnd:pre:3s; +réchaufferas réchauffer ver 16.27 22.16 0.10 0.00 ind:fut:2s; +réchaufferez réchauffer ver 16.27 22.16 0.12 0.00 ind:fut:2p; +réchaufferont réchauffer ver 16.27 22.16 0.02 0.07 ind:fut:3p; +réchauffeur réchauffeur nom m s 0.03 0.00 0.03 0.00 +réchauffez réchauffer ver 16.27 22.16 0.81 0.00 imp:pre:2p;ind:pre:2p; +réchauffions réchauffer ver 16.27 22.16 0.00 0.07 ind:imp:1p; +réchauffons réchauffer ver 16.27 22.16 0.03 0.00 imp:pre:1p;ind:pre:1p; +réchauffât réchauffer ver 16.27 22.16 0.00 0.07 sub:imp:3s; +réchauffèrent réchauffer ver 16.27 22.16 0.00 0.07 ind:pas:3p; +réchauffé réchauffer ver m s 16.27 22.16 0.79 0.81 par:pas; +réchauffée réchauffer ver f s 16.27 22.16 0.28 0.47 par:pas; +réchauffées réchauffé adj f p 1.04 1.15 0.01 0.07 +réchauffés réchauffé adj m p 1.04 1.15 0.15 0.14 +rêche rêche adj s 0.51 8.11 0.47 6.08 +ruche ruche nom f s 3.57 3.51 2.64 2.03 +rucher rucher nom m s 0.11 0.20 0.11 0.14 +ruchers rucher nom m p 0.11 0.20 0.00 0.07 +rêches rêche adj p 0.51 8.11 0.04 2.03 +ruches ruche nom f p 3.57 3.51 0.93 1.49 +ruché ruché nom m s 0.00 0.14 0.00 0.07 +ruchée ruché nom f s 0.00 0.14 0.00 0.07 +récidivai récidiver ver 0.48 0.68 0.00 0.07 ind:pas:1s; +récidivaient récidiver ver 0.48 0.68 0.00 0.07 ind:imp:3p; +récidivant récidivant adj m s 0.03 0.00 0.01 0.00 +récidivante récidivant adj f s 0.03 0.00 0.01 0.00 +récidive récidive nom f s 0.61 0.81 0.57 0.61 +récidiver récidiver ver 0.48 0.68 0.12 0.14 inf; +récidiveras récidiver ver 0.48 0.68 0.01 0.00 ind:fut:2s; +récidives récidive nom f p 0.61 0.81 0.04 0.20 +récidivez récidiver ver 0.48 0.68 0.01 0.00 ind:pre:2p; +récidiviste récidiviste nom s 0.79 0.27 0.65 0.20 +récidivistes récidiviste nom p 0.79 0.27 0.14 0.07 +récidivé récidiver ver m s 0.48 0.68 0.07 0.07 par:pas; +récif récif nom m s 1.44 2.03 0.75 0.54 +récifale récifal adj f s 0.01 0.00 0.01 0.00 +récifs récif nom m p 1.44 2.03 0.69 1.49 +récipiendaire récipiendaire nom s 0.03 0.41 0.01 0.20 +récipiendaires récipiendaire nom p 0.03 0.41 0.02 0.20 +récipient récipient nom m s 1.64 4.12 1.36 2.77 +récipients récipient nom m p 1.64 4.12 0.27 1.35 +réciprocité réciprocité nom f s 0.28 1.55 0.28 1.55 +réciproque réciproque adj s 3.91 8.24 3.59 5.68 +réciproquement réciproquement adv 0.26 3.45 0.26 3.45 +réciproques réciproque adj p 3.91 8.24 0.32 2.57 +récit récit nom m s 9.89 56.15 7.12 37.84 +récita réciter ver 11.89 28.51 0.01 3.24 ind:pas:3s; +récitai réciter ver 11.89 28.51 0.00 0.41 ind:pas:1s; +récitaient réciter ver 11.89 28.51 0.00 1.08 ind:imp:3p; +récitais réciter ver 11.89 28.51 0.12 1.15 ind:imp:1s;ind:imp:2s; +récitait réciter ver 11.89 28.51 0.39 4.86 ind:imp:3s; +récital récital nom m s 1.41 1.89 1.33 1.28 +récitals récital nom m p 1.41 1.89 0.08 0.61 +récitant réciter ver 11.89 28.51 0.04 1.89 par:pre; +récitante récitant nom f s 0.02 1.28 0.00 0.07 +récitants récitant nom m p 0.02 1.28 0.00 0.20 +récitassent réciter ver 11.89 28.51 0.00 0.07 sub:imp:3p; +récitatif récitatif adj m s 0.01 0.00 0.01 0.00 +récitatifs récitatif nom m p 0.00 0.20 0.00 0.07 +récitation récitation nom f s 0.19 2.91 0.17 2.03 +récitations récitation nom f p 0.19 2.91 0.02 0.88 +récite réciter ver 11.89 28.51 3.44 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récitent réciter ver 11.89 28.51 0.47 0.27 ind:pre:3p; +réciter réciter ver 11.89 28.51 4.21 7.97 inf; +récitera réciter ver 11.89 28.51 0.23 0.07 ind:fut:3s; +réciterai réciter ver 11.89 28.51 0.27 0.07 ind:fut:1s; +réciteraient réciter ver 11.89 28.51 0.00 0.07 cnd:pre:3p; +réciterait réciter ver 11.89 28.51 0.01 0.34 cnd:pre:3s; +réciteras réciter ver 11.89 28.51 0.04 0.00 ind:fut:2s; +réciterez réciter ver 11.89 28.51 0.16 0.00 ind:fut:2p; +réciterons réciter ver 11.89 28.51 0.14 0.07 ind:fut:1p; +réciteront réciter ver 11.89 28.51 0.00 0.07 ind:fut:3p; +récites réciter ver 11.89 28.51 0.45 0.14 ind:pre:2s; +récitez réciter ver 11.89 28.51 0.83 0.27 imp:pre:2p;ind:pre:2p; +récitions réciter ver 11.89 28.51 0.01 0.27 ind:imp:1p; +récitons réciter ver 11.89 28.51 0.28 0.20 imp:pre:1p;ind:pre:1p; +récits récit nom m p 9.89 56.15 2.77 18.31 +récitèrent réciter ver 11.89 28.51 0.00 0.14 ind:pas:3p; +récité réciter ver m s 11.89 28.51 0.69 1.35 par:pas; +récitée réciter ver f s 11.89 28.51 0.00 0.41 par:pas; +récitées réciter ver f p 11.89 28.51 0.00 0.20 par:pas; +récités réciter ver m p 11.89 28.51 0.12 0.20 par:pas; +rucksack rucksack nom m s 0.00 0.07 0.00 0.07 +réclama réclamer ver 21.00 49.26 0.12 4.32 ind:pas:3s; +réclamai réclamer ver 21.00 49.26 0.00 0.20 ind:pas:1s; +réclamaient réclamer ver 21.00 49.26 0.26 4.05 ind:imp:3p; +réclamais réclamer ver 21.00 49.26 0.07 0.68 ind:imp:1s;ind:imp:2s; +réclamait réclamer ver 21.00 49.26 0.91 8.51 ind:imp:3s; +réclamant réclamer ver 21.00 49.26 0.52 2.43 par:pre; +réclamantes réclamant nom f p 0.00 0.07 0.00 0.07 +réclamation réclamation nom f s 2.15 1.42 1.02 0.68 +réclamations réclamation nom f p 2.15 1.42 1.13 0.74 +réclame réclamer ver 21.00 49.26 8.98 7.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réclament réclamer ver 21.00 49.26 2.20 2.50 ind:pre:3p; +réclamer réclamer ver 21.00 49.26 3.18 11.76 inf; +réclamera réclamer ver 21.00 49.26 0.31 0.14 ind:fut:3s; +réclamerai réclamer ver 21.00 49.26 0.04 0.07 ind:fut:1s; +réclameraient réclamer ver 21.00 49.26 0.04 0.00 cnd:pre:3p; +réclamerais réclamer ver 21.00 49.26 0.00 0.14 cnd:pre:1s; +réclamerait réclamer ver 21.00 49.26 0.06 0.41 cnd:pre:3s; +réclameras réclamer ver 21.00 49.26 0.02 0.07 ind:fut:2s; +réclamerez réclamer ver 21.00 49.26 0.05 0.14 ind:fut:2p; +réclameriez réclamer ver 21.00 49.26 0.01 0.00 cnd:pre:2p; +réclamerons réclamer ver 21.00 49.26 0.01 0.07 ind:fut:1p; +réclameront réclamer ver 21.00 49.26 0.08 0.07 ind:fut:3p; +réclames réclame nom f p 1.43 6.15 0.28 2.91 +réclamez réclamer ver 21.00 49.26 0.55 0.20 imp:pre:2p;ind:pre:2p; +réclamiez réclamer ver 21.00 49.26 0.04 0.20 ind:imp:2p; +réclamions réclamer ver 21.00 49.26 0.01 0.14 ind:imp:1p; +réclamons réclamer ver 21.00 49.26 0.40 0.41 imp:pre:1p;ind:pre:1p; +réclamèrent réclamer ver 21.00 49.26 0.01 0.61 ind:pas:3p; +réclamé réclamer ver m s 21.00 49.26 1.85 2.64 par:pas; +réclamée réclamer ver f s 21.00 49.26 0.60 1.15 par:pas; +réclamées réclamer ver f p 21.00 49.26 0.39 0.14 par:pas; +réclamés réclamer ver m p 21.00 49.26 0.13 0.27 par:pas; +réclusion réclusion nom f s 1.10 3.04 1.09 3.04 +réclusionnaires réclusionnaire nom p 0.00 0.07 0.00 0.07 +réclusions réclusion nom f p 1.10 3.04 0.01 0.00 +récollet récollet nom m s 0.00 0.81 0.00 0.07 +récollets récollet nom m p 0.00 0.81 0.00 0.74 +récolta récolter ver 10.65 7.36 0.00 0.07 ind:pas:3s; +récoltable récoltable adj s 0.01 0.00 0.01 0.00 +récoltai récolter ver 10.65 7.36 0.00 0.07 ind:pas:1s; +récoltaient récolter ver 10.65 7.36 0.06 0.07 ind:imp:3p; +récoltais récolter ver 10.65 7.36 0.05 0.14 ind:imp:1s;ind:imp:2s; +récoltait récolter ver 10.65 7.36 0.07 0.81 ind:imp:3s; +récoltant récolter ver 10.65 7.36 0.08 0.14 par:pre; +récolte récolte nom f s 9.83 8.99 7.93 5.54 +récoltent récolter ver 10.65 7.36 0.45 0.34 ind:pre:3p; +récolter récolter ver 10.65 7.36 3.66 2.43 inf; +récoltera récolter ver 10.65 7.36 0.07 0.00 ind:fut:3s; +récolterai récolter ver 10.65 7.36 0.03 0.00 ind:fut:1s; +récolteraient récolter ver 10.65 7.36 0.01 0.07 cnd:pre:3p; +récolterais récolter ver 10.65 7.36 0.10 0.00 cnd:pre:2s; +récolterait récolter ver 10.65 7.36 0.02 0.14 cnd:pre:3s; +récolteras récolter ver 10.65 7.36 0.07 0.00 ind:fut:2s; +récolterons récolter ver 10.65 7.36 0.16 0.07 ind:fut:1p; +récolteront récolter ver 10.65 7.36 0.02 0.00 ind:fut:3p; +récoltes récolte nom f p 9.83 8.99 1.90 3.45 +récolteurs récolteur nom m p 0.03 0.07 0.02 0.07 +récolteuse récolteur nom f s 0.03 0.07 0.01 0.00 +récoltez récolter ver 10.65 7.36 0.14 0.00 imp:pre:2p;ind:pre:2p; +récoltions récolter ver 10.65 7.36 0.00 0.14 ind:imp:1p; +récoltons récolter ver 10.65 7.36 0.29 0.00 imp:pre:1p;ind:pre:1p; +récolté récolter ver m s 10.65 7.36 1.42 1.42 par:pas; +récoltée récolter ver f s 10.65 7.36 0.09 0.07 par:pas; +récoltées récolter ver f p 10.65 7.36 0.20 0.20 par:pas; +récoltés récolter ver m p 10.65 7.36 0.22 0.41 par:pas; +récompensa récompenser ver 9.96 8.38 0.01 0.14 ind:pas:3s; +récompensaient récompenser ver 9.96 8.38 0.00 0.20 ind:imp:3p; +récompensait récompenser ver 9.96 8.38 0.17 1.22 ind:imp:3s; +récompensant récompenser ver 9.96 8.38 0.04 0.14 par:pre; +récompense récompense nom f s 19.66 9.73 18.39 8.31 +récompensent récompenser ver 9.96 8.38 0.23 0.00 ind:pre:3p; +récompenser récompenser ver 9.96 8.38 2.29 2.77 inf;;inf;;inf;; +récompensera récompenser ver 9.96 8.38 0.76 0.00 ind:fut:3s; +récompenserai récompenser ver 9.96 8.38 0.37 0.14 ind:fut:1s; +récompenserais récompenser ver 9.96 8.38 0.00 0.07 cnd:pre:1s; +récompenserons récompenser ver 9.96 8.38 0.06 0.00 ind:fut:1p; +récompenseront récompenser ver 9.96 8.38 0.04 0.00 ind:fut:3p; +récompenses récompense nom f p 19.66 9.73 1.27 1.42 +récompensez récompenser ver 9.96 8.38 0.13 0.14 imp:pre:2p;ind:pre:2p; +récompensons récompenser ver 9.96 8.38 0.03 0.00 imp:pre:1p;ind:pre:1p; +récompensèrent récompenser ver 9.96 8.38 0.00 0.07 ind:pas:3p; +récompensé récompenser ver m s 9.96 8.38 2.39 1.28 par:pas; +récompensée récompenser ver f s 9.96 8.38 1.15 0.47 par:pas; +récompensées récompenser ver f p 9.96 8.38 0.21 0.14 par:pas; +récompensés récompenser ver m p 9.96 8.38 0.69 0.61 par:pas; +réconcilia réconcilier ver 9.04 10.61 0.01 0.07 ind:pas:3s; +réconciliaient réconcilier ver 9.04 10.61 0.01 0.34 ind:imp:3p; +réconciliait réconcilier ver 9.04 10.61 0.04 0.74 ind:imp:3s; +réconciliant réconcilier ver 9.04 10.61 0.03 0.14 par:pre; +réconciliateur réconciliateur nom m s 0.02 0.07 0.02 0.07 +réconciliation réconciliation nom f s 2.62 5.47 2.38 4.73 +réconciliations réconciliation nom f p 2.62 5.47 0.23 0.74 +réconciliatrice réconciliateur adj f s 0.00 0.07 0.00 0.07 +réconcilie réconcilier ver 9.04 10.61 0.90 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réconcilient réconcilier ver 9.04 10.61 0.25 0.20 ind:pre:3p; +réconcilier réconcilier ver 9.04 10.61 3.61 3.38 inf; +réconciliera réconcilier ver 9.04 10.61 0.15 0.00 ind:fut:3s; +réconcilierai réconcilier ver 9.04 10.61 0.02 0.07 ind:fut:1s; +réconcilieraient réconcilier ver 9.04 10.61 0.00 0.07 cnd:pre:3p; +réconcilierait réconcilier ver 9.04 10.61 0.00 0.20 cnd:pre:3s; +réconcilierez réconcilier ver 9.04 10.61 0.04 0.00 ind:fut:2p; +réconciliez réconcilier ver 9.04 10.61 0.23 0.00 imp:pre:2p;ind:pre:2p; +réconciliions réconcilier ver 9.04 10.61 0.00 0.14 ind:imp:1p; +réconciliâmes réconcilier ver 9.04 10.61 0.00 0.07 ind:pas:1p; +réconcilions réconcilier ver 9.04 10.61 0.30 0.07 imp:pre:1p;ind:pre:1p; +réconcilié réconcilier ver m s 9.04 10.61 0.59 2.03 par:pas; +réconciliée réconcilier ver f s 9.04 10.61 0.42 0.61 par:pas; +réconciliées réconcilier ver f p 9.04 10.61 0.65 0.07 par:pas; +réconciliés réconcilier ver m p 9.04 10.61 1.78 1.76 par:pas; +réconfort réconfort nom m s 4.75 6.42 4.71 6.35 +réconforta réconforter ver 6.86 9.19 0.02 0.95 ind:pas:3s; +réconfortaient réconforter ver 6.86 9.19 0.01 0.27 ind:imp:3p; +réconfortait réconforter ver 6.86 9.19 0.02 1.08 ind:imp:3s; +réconfortant réconfortant adj m s 2.00 6.08 1.62 2.91 +réconfortante réconfortant adj f s 2.00 6.08 0.20 2.36 +réconfortantes réconfortant adj f p 2.00 6.08 0.11 0.68 +réconfortants réconfortant adj m p 2.00 6.08 0.07 0.14 +réconforte réconforter ver 6.86 9.19 1.73 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réconfortent réconforter ver 6.86 9.19 0.41 0.41 ind:pre:3p; +réconforter réconforter ver 6.86 9.19 3.21 2.77 ind:pre:2p;inf; +réconfortera réconforter ver 6.86 9.19 0.16 0.00 ind:fut:3s; +réconforterai réconforter ver 6.86 9.19 0.01 0.00 ind:fut:1s; +réconforterait réconforter ver 6.86 9.19 0.02 0.07 cnd:pre:3s; +réconforteras réconforter ver 6.86 9.19 0.01 0.00 ind:fut:2s; +réconforterez réconforter ver 6.86 9.19 0.01 0.00 ind:fut:2p; +réconfortez réconforter ver 6.86 9.19 0.30 0.00 imp:pre:2p; +réconforts réconfort nom m p 4.75 6.42 0.04 0.07 +réconforté réconforter ver m s 6.86 9.19 0.48 1.62 par:pas; +réconfortée réconforter ver f s 6.86 9.19 0.19 0.34 par:pas; +réconfortés réconforter ver m p 6.86 9.19 0.18 0.27 par:pas; +récri récri nom m s 0.02 0.14 0.00 0.14 +récria récrier ver 0.00 2.91 0.00 0.68 ind:pas:3s; +récriai récrier ver 0.00 2.91 0.00 0.14 ind:pas:1s; +récriaient récrier ver 0.00 2.91 0.00 0.14 ind:imp:3p; +récriait récrier ver 0.00 2.91 0.00 0.34 ind:imp:3s; +récrie récrier ver 0.00 2.91 0.00 0.54 ind:pre:1s;ind:pre:3s; +récrient récrier ver 0.00 2.91 0.00 0.07 ind:pre:3p; +récrier récrier ver 0.00 2.91 0.00 0.14 inf; +récriminait récriminer ver 0.16 0.68 0.00 0.27 ind:imp:3s; +récrimination récrimination nom f s 0.64 3.11 0.03 0.61 +récriminations récrimination nom f p 0.64 3.11 0.61 2.50 +récriminer récriminer ver 0.16 0.68 0.16 0.41 inf; +récrirai récrire ver 0.46 0.95 0.03 0.07 ind:fut:1s; +récrire récrire ver 0.46 0.95 0.29 0.61 inf; +récris récrire ver 0.46 0.95 0.02 0.00 imp:pre:2s; +récrit récrire ver m s 0.46 0.95 0.11 0.14 ind:pre:3s;par:pas; +récrites récrire ver f p 0.46 0.95 0.00 0.07 par:pas; +récrièrent récrier ver 0.00 2.91 0.00 0.27 ind:pas:3p; +récrié récrier ver m s 0.00 2.91 0.00 0.20 par:pas; +récriée récrier ver f s 0.00 2.91 0.00 0.20 par:pas; +récriées récrier ver f p 0.00 2.91 0.00 0.07 par:pas; +récriés récrier ver m p 0.00 2.91 0.00 0.14 par:pas; +récrivent récrire ver 0.46 0.95 0.01 0.00 ind:pre:3p; +récrivit récrire ver 0.46 0.95 0.00 0.07 ind:pas:3s; +récré récré nom f s 2.29 2.70 2.25 2.16 +récréatif récréatif adj m s 0.38 0.47 0.06 0.00 +récréation récréation nom f s 2.88 11.28 2.43 9.26 +récréations récréation nom f p 2.88 11.28 0.45 2.03 +récréative récréatif adj f s 0.38 0.47 0.24 0.41 +récréatives récréatif adj f p 0.38 0.47 0.07 0.07 +récrée récréer ver 0.06 0.00 0.04 0.00 ind:pre:3s; +récréer récréer ver 0.06 0.00 0.01 0.00 inf; +récrés récré nom f p 2.29 2.70 0.05 0.54 +récréé récréer ver m s 0.06 0.00 0.01 0.00 par:pas; +récup récup nom m s 0.13 0.14 0.13 0.00 +récupe récup nom f s 0.13 0.14 0.00 0.14 +récépissé récépissé nom m s 0.09 0.34 0.09 0.34 +récupère récupérer ver 75.93 31.82 9.77 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +récupèrent récupérer ver 75.93 31.82 0.61 0.20 ind:pre:3p; +récupères récupérer ver 75.93 31.82 1.28 0.20 ind:pre:2s; +récupéra récupérer ver 75.93 31.82 0.06 1.82 ind:pas:3s; +récupérable récupérable adj m s 0.43 0.88 0.14 0.61 +récupérables récupérable adj p 0.43 0.88 0.28 0.27 +récupérai récupérer ver 75.93 31.82 0.00 0.54 ind:pas:1s; +récupéraient récupérer ver 75.93 31.82 0.01 0.14 ind:imp:3p; +récupérais récupérer ver 75.93 31.82 0.16 0.20 ind:imp:1s;ind:imp:2s; +récupérait récupérer ver 75.93 31.82 0.32 1.49 ind:imp:3s; +récupérant récupérer ver 75.93 31.82 0.19 1.22 par:pre; +récupérateur récupérateur nom m s 0.27 0.07 0.12 0.07 +récupérateurs récupérateur nom m p 0.27 0.07 0.15 0.00 +récupération récupération nom f s 2.04 1.89 2.01 1.82 +récupérations récupération nom f p 2.04 1.89 0.04 0.07 +récupérer récupérer ver 75.93 31.82 44.59 14.19 inf; +récupérera récupérer ver 75.93 31.82 0.72 0.07 ind:fut:3s; +récupérerai récupérer ver 75.93 31.82 0.84 0.07 ind:fut:1s; +récupérerais récupérer ver 75.93 31.82 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +récupérerait récupérer ver 75.93 31.82 0.09 0.20 cnd:pre:3s; +récupéreras récupérer ver 75.93 31.82 0.45 0.07 ind:fut:2s; +récupérerez récupérer ver 75.93 31.82 0.49 0.00 ind:fut:2p; +récupérerons récupérer ver 75.93 31.82 0.32 0.00 ind:fut:1p; +récupéreront récupérer ver 75.93 31.82 0.06 0.00 ind:fut:3p; +récupérez récupérer ver 75.93 31.82 1.80 0.20 imp:pre:2p;ind:pre:2p; +récupériez récupérer ver 75.93 31.82 0.04 0.00 ind:imp:2p; +récupérions récupérer ver 75.93 31.82 0.07 0.07 ind:imp:1p; +récupérâmes récupérer ver 75.93 31.82 0.02 0.07 ind:pas:1p; +récupérons récupérer ver 75.93 31.82 0.65 0.07 imp:pre:1p;ind:pre:1p; +récupérèrent récupérer ver 75.93 31.82 0.00 0.14 ind:pas:3p; +récupéré récupérer ver m s 75.93 31.82 10.33 5.41 par:pas; +récupérée récupérer ver f s 75.93 31.82 1.26 0.95 par:pas; +récupérées récupérer ver f p 75.93 31.82 0.80 0.74 par:pas; +récupérés récupérer ver m p 75.93 31.82 0.90 0.95 par:pas; +récurage récurage nom m s 0.03 0.27 0.03 0.27 +récuraient récurer ver 0.54 2.84 0.00 0.14 ind:imp:3p; +récurais récurer ver 0.54 2.84 0.00 0.14 ind:imp:1s; +récurait récurer ver 0.54 2.84 0.01 0.14 ind:imp:3s; +récurant récurer ver 0.54 2.84 0.00 0.20 par:pre; +récure récurer ver 0.54 2.84 0.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récurent récurer ver 0.54 2.84 0.01 0.20 ind:pre:3p; +récurer récurer ver 0.54 2.84 0.35 0.74 inf; +récurerai récurer ver 0.54 2.84 0.00 0.07 ind:fut:1s; +récurrence récurrence nom f s 0.19 0.14 0.17 0.14 +récurrences récurrence nom f p 0.19 0.14 0.01 0.00 +récurrent récurrent adj m s 1.38 0.41 0.56 0.07 +récurrente récurrent adj f s 1.38 0.41 0.28 0.14 +récurrentes récurrent adj f p 1.38 0.41 0.21 0.07 +récurrents récurrent adj m p 1.38 0.41 0.33 0.14 +récursif récursif adj m s 0.03 0.00 0.03 0.00 +récuré récurer ver m s 0.54 2.84 0.08 0.34 par:pas; +récurée récurer ver f s 0.54 2.84 0.00 0.20 par:pas; +récurées récurer ver f p 0.54 2.84 0.01 0.14 par:pas; +récurés récurer ver m p 0.54 2.84 0.01 0.27 par:pas; +récusa récuser ver 0.78 3.04 0.00 0.14 ind:pas:3s; +récusable récusable adj m s 0.00 0.14 0.00 0.07 +récusables récusable adj p 0.00 0.14 0.00 0.07 +récusaient récuser ver 0.78 3.04 0.00 0.14 ind:imp:3p; +récusais récuser ver 0.78 3.04 0.00 0.27 ind:imp:1s; +récusait récuser ver 0.78 3.04 0.01 0.41 ind:imp:3s; +récusant récuser ver 0.78 3.04 0.03 0.14 par:pre; +récusation récusation nom f s 0.09 0.07 0.07 0.07 +récusations récusation nom f p 0.09 0.07 0.02 0.00 +récuse récuser ver 0.78 3.04 0.19 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récuser récuser ver 0.78 3.04 0.31 1.08 inf; +récuserait récuser ver 0.78 3.04 0.00 0.07 cnd:pre:3s; +récuserons récuser ver 0.78 3.04 0.01 0.00 ind:fut:1p; +récusons récuser ver 0.78 3.04 0.07 0.00 imp:pre:1p;ind:pre:1p; +récusèrent récuser ver 0.78 3.04 0.00 0.14 ind:pas:3p; +récusé récuser ver m s 0.78 3.04 0.14 0.34 par:pas; +récusée récuser ver f s 0.78 3.04 0.01 0.20 par:pas; +rédacteur rédacteur nom m s 4.93 5.68 3.32 3.85 +rédacteurs rédacteur nom m p 4.93 5.68 0.67 1.35 +rédaction rédaction nom f s 2.93 12.23 2.82 11.22 +rédactionnel rédactionnel adj m s 0.02 0.07 0.01 0.00 +rédactionnelle rédactionnel adj f s 0.02 0.07 0.01 0.07 +rédactions rédaction nom f p 2.93 12.23 0.11 1.01 +rédactrice rédacteur nom f s 4.93 5.68 0.94 0.27 +rédactrices rédactrice nom f p 0.02 0.00 0.02 0.00 +rude rude adj s 6.85 29.80 5.68 22.64 +rudement rudement adv 2.42 10.07 2.42 10.07 +rédempteur rédempteur nom m s 0.78 0.27 0.78 0.20 +rédemption rédemption nom f s 2.35 1.35 2.35 1.22 +rédemptions rédemption nom f p 2.35 1.35 0.00 0.14 +rédemptoriste rédemptoriste nom s 0.10 0.00 0.10 0.00 +rédemptrice rédempteur adj f s 0.40 0.34 0.00 0.07 +rudes rude adj p 6.85 29.80 1.17 7.16 +rudesse rudesse nom f s 0.42 3.65 0.42 3.38 +rudesses rudesse nom f p 0.42 3.65 0.00 0.27 +rédhibition rédhibition nom f s 0.00 0.07 0.00 0.07 +rédhibitoire rédhibitoire adj s 0.06 0.47 0.06 0.34 +rédhibitoires rédhibitoire adj p 0.06 0.47 0.00 0.14 +rédige rédiger ver 8.49 22.16 0.72 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rédigea rédiger ver 8.49 22.16 0.02 1.35 ind:pas:3s; +rédigeai rédiger ver 8.49 22.16 0.00 0.47 ind:pas:1s; +rédigeaient rédiger ver 8.49 22.16 0.01 0.27 ind:imp:3p; +rédigeais rédiger ver 8.49 22.16 0.05 0.20 ind:imp:1s; +rédigeait rédiger ver 8.49 22.16 0.05 1.01 ind:imp:3s; +rédigeant rédiger ver 8.49 22.16 0.04 0.41 par:pre; +rédigent rédiger ver 8.49 22.16 0.06 0.07 ind:pre:3p; +rédigeons rédiger ver 8.49 22.16 0.05 0.34 imp:pre:1p;ind:pre:1p; +rédiger rédiger ver 8.49 22.16 2.27 6.96 inf; +rédigera rédiger ver 8.49 22.16 0.02 0.00 ind:fut:3s; +rédigerai rédiger ver 8.49 22.16 0.05 0.14 ind:fut:1s; +rédigerais rédiger ver 8.49 22.16 0.01 0.00 cnd:pre:1s; +rédigeras rédiger ver 8.49 22.16 0.03 0.07 ind:fut:2s; +rédigerez rédiger ver 8.49 22.16 0.03 0.14 ind:fut:2p; +rédiges rédiger ver 8.49 22.16 0.06 0.20 ind:pre:2s; +rédigez rédiger ver 8.49 22.16 0.83 0.00 imp:pre:2p;ind:pre:2p; +rédigiez rédiger ver 8.49 22.16 0.04 0.07 ind:imp:2p; +rédigions rédiger ver 8.49 22.16 0.00 0.14 ind:imp:1p; +rédigèrent rédiger ver 8.49 22.16 0.00 0.14 ind:pas:3p; +rédigé rédiger ver m s 8.49 22.16 2.55 4.19 par:pas; +rédigée rédiger ver f s 8.49 22.16 1.31 2.16 par:pas; +rédigées rédiger ver f p 8.49 22.16 0.03 1.08 par:pas; +rédigés rédiger ver m p 8.49 22.16 0.26 1.28 par:pas; +rédimaient rédimer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +rudiment rudiment nom m s 0.24 1.89 0.01 0.27 +rudimentaire rudimentaire adj s 0.87 3.11 0.73 2.09 +rudimentaires rudimentaire adj p 0.87 3.11 0.14 1.01 +rudiments rudiment nom m p 0.24 1.89 0.23 1.62 +rudoie rudoyer ver 0.45 1.22 0.01 0.00 ind:pre:3s; +rudoiement rudoiement nom m s 0.00 0.14 0.00 0.07 +rudoiements rudoiement nom m p 0.00 0.14 0.00 0.07 +rudoient rudoyer ver 0.45 1.22 0.00 0.07 ind:pre:3p; +rudoies rudoyer ver 0.45 1.22 0.01 0.00 ind:pre:2s; +rudoya rudoyer ver 0.45 1.22 0.00 0.07 ind:pas:3s; +rudoyais rudoyer ver 0.45 1.22 0.00 0.07 ind:imp:1s; +rudoyait rudoyer ver 0.45 1.22 0.02 0.41 ind:imp:3s; +rudoyant rudoyer ver 0.45 1.22 0.00 0.07 par:pre; +rudoyer rudoyer ver 0.45 1.22 0.32 0.20 inf; +rudoyèrent rudoyer ver 0.45 1.22 0.00 0.07 ind:pas:3p; +rudoyé rudoyer ver m s 0.45 1.22 0.08 0.20 par:pas; +rudoyés rudoyer ver m p 0.45 1.22 0.01 0.07 par:pas; +réducteur réducteur adj m s 0.12 0.07 0.12 0.07 +réducteurs réducteur nom m p 0.26 0.14 0.23 0.07 +réduction réduction nom f s 4.51 3.18 3.37 2.91 +réductionnisme réductionnisme nom m s 0.03 0.00 0.03 0.00 +réductionniste réductionniste adj s 0.01 0.00 0.01 0.00 +réductions réduction nom f p 4.51 3.18 1.14 0.27 +réduira réduire ver 27.88 50.61 0.53 0.34 ind:fut:3s; +réduirai réduire ver 27.88 50.61 0.26 0.20 ind:fut:1s; +réduiraient réduire ver 27.88 50.61 0.02 0.07 cnd:pre:3p; +réduirait réduire ver 27.88 50.61 0.44 0.34 cnd:pre:3s; +réduire réduire ver 27.88 50.61 8.85 13.04 ind:pre:2p;inf; +réduirons réduire ver 27.88 50.61 0.05 0.07 ind:fut:1p; +réduiront réduire ver 27.88 50.61 0.22 0.07 ind:fut:3p; +réduis réduire ver 27.88 50.61 1.35 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +réduisît réduire ver 27.88 50.61 0.00 0.14 sub:imp:3s; +réduisaient réduire ver 27.88 50.61 0.01 0.88 ind:imp:3p; +réduisais réduire ver 27.88 50.61 0.04 0.20 ind:imp:1s;ind:imp:2s; +réduisait réduire ver 27.88 50.61 0.13 4.46 ind:imp:3s; +réduisant réduire ver 27.88 50.61 0.24 1.55 par:pre; +réduise réduire ver 27.88 50.61 0.32 0.68 sub:pre:1s;sub:pre:3s; +réduisent réduire ver 27.88 50.61 1.03 1.01 ind:pre:3p; +réduises réduire ver 27.88 50.61 0.04 0.00 sub:pre:2s; +réduisez réduire ver 27.88 50.61 0.56 0.14 imp:pre:2p;ind:pre:2p; +réduisions réduire ver 27.88 50.61 0.01 0.07 ind:imp:1p; +réduisirent réduire ver 27.88 50.61 0.00 0.27 ind:pas:3p; +réduisis réduire ver 27.88 50.61 0.00 0.07 ind:pas:1s; +réduisit réduire ver 27.88 50.61 0.01 0.74 ind:pas:3s; +réduisons réduire ver 27.88 50.61 0.27 0.14 imp:pre:1p;ind:pre:1p; +réduit réduire ver m s 27.88 50.61 8.48 13.51 ind:pre:3s;par:pas; +réduite réduire ver f s 27.88 50.61 2.82 6.55 par:pas; +réduites réduire ver f p 27.88 50.61 0.43 2.03 par:pas; +réduits réduire ver m p 27.88 50.61 1.78 3.85 par:pas; +réduplication réduplication nom f s 0.00 0.07 0.00 0.07 +rue rue nom f s 157.81 562.97 127.35 449.53 +réel réel adj m s 38.70 40.95 23.97 15.20 +ruelle ruelle nom f s 6.25 30.47 4.04 13.51 +réelle réel adj f s 38.70 40.95 8.88 17.50 +réellement réellement adv 18.27 26.62 18.27 26.62 +ruelles ruelle nom f p 6.25 30.47 2.21 16.96 +réelles réel adj f p 38.70 40.95 2.35 4.12 +réels réel adj m p 38.70 40.95 3.50 4.12 +réemballer réemballer ver 0.01 0.00 0.01 0.00 inf; +réembarque réembarquer ver 0.00 0.27 0.00 0.07 ind:pre:3s; +réembarquement réembarquement nom m s 0.00 0.07 0.00 0.07 +réembarquer réembarquer ver 0.00 0.27 0.00 0.20 inf; +réembauche réembaucher ver 0.22 0.00 0.09 0.00 ind:pre:1s;ind:pre:3s; +réembaucher réembaucher ver 0.22 0.00 0.08 0.00 inf; +réembauché réembaucher ver m s 0.22 0.00 0.05 0.00 par:pas; +réemploi réemploi nom m s 0.00 0.14 0.00 0.14 +réemployant réemployer ver 0.00 0.20 0.00 0.07 par:pre; +réemployer réemployer ver 0.00 0.20 0.00 0.14 inf; +réemprunter réemprunter ver 0.00 0.07 0.00 0.07 inf; +réencadrer réencadrer ver 0.00 0.07 0.00 0.07 inf; +réenclenches réenclencher ver 0.01 0.00 0.01 0.00 ind:pre:2s; +réendossant réendosser ver 0.02 0.14 0.00 0.07 par:pre; +réendosser réendosser ver 0.02 0.14 0.02 0.07 inf; +réengage réengager ver 0.24 0.07 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réengagement réengagement nom m s 0.00 0.07 0.00 0.07 +réengager réengager ver 0.24 0.07 0.10 0.00 inf; +réengagé réengager ver m s 0.24 0.07 0.10 0.00 par:pas; +réengagées réengager ver f p 0.24 0.07 0.00 0.07 par:pas; +réenregistrer réenregistrer ver 0.12 0.00 0.11 0.00 inf; +réenregistré réenregistrer ver m s 0.12 0.00 0.01 0.00 par:pas; +ruent ruer ver 3.27 20.81 0.38 1.08 ind:pre:3p; +réentendaient réentendre ver 0.26 1.01 0.00 0.07 ind:imp:3p; +réentendais réentendre ver 0.26 1.01 0.00 0.07 ind:imp:1s; +réentendons réentendre ver 0.26 1.01 0.00 0.07 ind:pre:1p; +réentendre réentendre ver 0.26 1.01 0.25 0.61 inf; +réentends réentendre ver 0.26 1.01 0.00 0.20 ind:pre:1s; +réentendu réentendre ver m s 0.26 1.01 0.01 0.00 par:pas; +réenterrer réenterrer ver 0.01 0.00 0.01 0.00 inf; +réentraîner réentraîner ver 0.01 0.00 0.01 0.00 inf; +réenvahir réenvahir ver 0.01 0.00 0.01 0.00 inf; +réenvisager réenvisager ver 0.15 0.00 0.15 0.00 inf; +ruer ruer ver 3.27 20.81 0.59 3.18 inf; +rueront ruer ver 3.27 20.81 0.00 0.07 ind:fut:3p; +rues rue nom p 157.81 562.97 30.46 113.45 +réessaie réessayer ver 5.30 0.14 0.75 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réessaient réessayer ver 5.30 0.14 0.07 0.00 ind:pre:3p; +réessaiera réessayer ver 5.30 0.14 0.22 0.00 ind:fut:3s; +réessaierai réessayer ver 5.30 0.14 0.33 0.00 ind:fut:1s; +réessaieras réessayer ver 5.30 0.14 0.03 0.00 ind:fut:2s; +réessaieront réessayer ver 5.30 0.14 0.03 0.00 ind:fut:3p; +réessayant réessayer ver 5.30 0.14 0.00 0.07 par:pre; +réessaye réessayer ver 5.30 0.14 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réessayer réessayer ver 5.30 0.14 2.40 0.07 inf; +réessayez réessayer ver 5.30 0.14 0.61 0.00 imp:pre:2p;ind:pre:2p; +réessayiez réessayer ver 5.30 0.14 0.01 0.00 ind:imp:2p; +réessayons réessayer ver 5.30 0.14 0.31 0.00 imp:pre:1p;ind:pre:1p; +réessayé réessayer ver m s 5.30 0.14 0.16 0.00 par:pas; +réexamen réexamen nom m s 0.07 0.00 0.07 0.00 +réexaminant réexaminer ver 0.89 0.20 0.00 0.07 par:pre; +réexamine réexaminer ver 0.89 0.20 0.08 0.00 ind:pre:1s;ind:pre:3s; +réexaminer réexaminer ver 0.89 0.20 0.44 0.00 inf; +réexaminerons réexaminer ver 0.89 0.20 0.03 0.00 ind:fut:1p; +réexamines réexaminer ver 0.89 0.20 0.02 0.00 ind:pre:2s; +réexaminez réexaminer ver 0.89 0.20 0.04 0.00 imp:pre:2p;ind:pre:2p; +réexaminiez réexaminer ver 0.89 0.20 0.04 0.00 ind:imp:2p; +réexaminions réexaminer ver 0.89 0.20 0.01 0.07 ind:imp:1p; +réexaminé réexaminer ver m s 0.89 0.20 0.21 0.00 par:pas; +réexaminée réexaminer ver f s 0.89 0.20 0.01 0.00 par:pas; +réexaminées réexaminer ver f p 0.89 0.20 0.00 0.07 par:pas; +réexpédia réexpédier ver 0.37 0.68 0.00 0.07 ind:pas:3s; +réexpédiait réexpédier ver 0.37 0.68 0.01 0.14 ind:imp:3s; +réexpédiant réexpédier ver 0.37 0.68 0.01 0.00 par:pre; +réexpédier réexpédier ver 0.37 0.68 0.07 0.07 inf; +réexpédiez réexpédier ver 0.37 0.68 0.02 0.00 imp:pre:2p; +réexpédions réexpédier ver 0.37 0.68 0.01 0.00 imp:pre:1p; +réexpédition réexpédition nom f s 0.05 0.00 0.05 0.00 +réexpédié réexpédier ver m s 0.37 0.68 0.24 0.27 par:pas; +réexpédiés réexpédier ver m p 0.37 0.68 0.01 0.14 par:pas; +réf réf nom f s 0.02 0.00 0.02 0.00 +réfection réfection nom f s 0.23 1.96 0.23 1.69 +réfections réfection nom f p 0.23 1.96 0.00 0.27 +réfectoire réfectoire nom m s 1.13 9.66 1.11 9.59 +réfectoires réfectoire nom m p 1.13 9.66 0.01 0.07 +ruffian ruffian nom m s 0.55 0.81 0.48 0.41 +ruffians ruffian nom m p 0.55 0.81 0.07 0.41 +rufian rufian nom m s 0.01 0.00 0.01 0.00 +réflecteur réflecteur nom m s 0.32 0.54 0.20 0.27 +réflecteurs réflecteur nom m p 0.32 0.54 0.13 0.27 +réflexe réflexe nom m s 6.13 18.85 2.55 11.89 +réflexes réflexe nom m p 6.13 18.85 3.57 6.96 +réflexif réflexif adj m s 0.10 0.14 0.00 0.07 +réflexion réflexion nom f s 7.47 37.03 6.29 23.38 +réflexions réflexion nom f p 7.47 37.03 1.18 13.65 +réflexive réflexif adj f s 0.10 0.14 0.10 0.07 +réflexologie réflexologie nom f s 0.02 0.00 0.02 0.00 +réfléchît réfléchir ver 116.71 89.05 0.00 0.14 sub:imp:3s; +réfléchi réfléchir ver m s 116.71 89.05 27.23 11.01 par:pas; +réfléchie réfléchi adj f s 20.28 6.69 0.36 1.22 +réfléchies réfléchi adj f p 20.28 6.69 0.01 0.07 +réfléchir réfléchir ver 116.71 89.05 47.59 36.55 inf; +réfléchira réfléchir ver 116.71 89.05 0.31 0.27 ind:fut:3s; +réfléchirai réfléchir ver 116.71 89.05 1.30 0.34 ind:fut:1s; +réfléchirais réfléchir ver 116.71 89.05 0.31 0.07 cnd:pre:1s;cnd:pre:2s; +réfléchirait réfléchir ver 116.71 89.05 0.09 0.14 cnd:pre:3s; +réfléchiras réfléchir ver 116.71 89.05 0.13 0.27 ind:fut:2s; +réfléchirent réfléchir ver 116.71 89.05 0.01 0.34 ind:pas:3p; +réfléchirez réfléchir ver 116.71 89.05 0.14 0.07 ind:fut:2p; +réfléchiriez réfléchir ver 116.71 89.05 0.03 0.00 cnd:pre:2p; +réfléchirons réfléchir ver 116.71 89.05 0.28 0.07 ind:fut:1p; +réfléchiront réfléchir ver 116.71 89.05 0.07 0.00 ind:fut:3p; +réfléchis réfléchi adj m p 20.28 6.69 18.86 2.77 +réfléchissaient réfléchir ver 116.71 89.05 0.16 0.27 ind:imp:3p; +réfléchissais réfléchir ver 116.71 89.05 2.10 1.96 ind:imp:1s;ind:imp:2s; +réfléchissait réfléchir ver 116.71 89.05 0.48 5.14 ind:imp:3s; +réfléchissant réfléchir ver 116.71 89.05 1.09 2.64 par:pre; +réfléchissante réfléchissant adj f s 0.73 0.68 0.04 0.07 +réfléchissantes réfléchissant adj f p 0.73 0.68 0.06 0.00 +réfléchissants réfléchissant adj m p 0.73 0.68 0.00 0.07 +réfléchisse réfléchir ver 116.71 89.05 2.28 0.95 sub:pre:1s;sub:pre:3s; +réfléchissent réfléchir ver 116.71 89.05 0.54 0.54 ind:pre:3p; +réfléchisses réfléchir ver 116.71 89.05 0.63 0.07 sub:pre:2s; +réfléchissez réfléchir ver 116.71 89.05 10.10 2.50 imp:pre:2p;ind:pre:2p; +réfléchissiez réfléchir ver 116.71 89.05 0.35 0.07 ind:imp:2p;sub:pre:2p; +réfléchissons réfléchir ver 116.71 89.05 1.71 0.34 imp:pre:1p;ind:pre:1p; +réfléchit réfléchir ver 116.71 89.05 3.81 19.39 ind:pre:3s;ind:pas:3s; +réforma réformer ver 1.52 2.70 0.00 0.07 ind:pas:3s; +réformateur réformateur nom m s 0.16 1.49 0.09 0.61 +réformateurs réformateur nom m p 0.16 1.49 0.08 0.88 +réformation réformation nom f s 0.00 0.07 0.00 0.07 +réforme réforme nom f s 3.10 11.35 2.24 4.93 +réformer réformer ver 1.52 2.70 0.75 1.35 inf; +réformera réformer ver 1.52 2.70 0.14 0.00 ind:fut:3s; +réformes réforme nom f p 3.10 11.35 0.86 6.42 +réformisme réformisme nom m s 0.01 0.00 0.01 0.00 +réformiste réformiste adj m s 0.44 0.41 0.38 0.14 +réformistes réformiste adj m p 0.44 0.41 0.06 0.27 +réformons réformer ver 1.52 2.70 0.01 0.00 ind:pre:1p; +réformé réformer ver m s 1.52 2.70 0.40 1.01 par:pas; +réformée réformé adj f s 0.26 1.28 0.03 0.41 +réformées réformé adj f p 0.26 1.28 0.00 0.07 +réformés réformé nom m p 0.14 0.54 0.07 0.27 +réfractaire réfractaire adj s 0.17 1.89 0.15 1.28 +réfractaires réfractaire nom p 0.07 1.22 0.05 0.95 +réfractant réfracter ver 0.01 0.27 0.00 0.07 par:pre; +réfractera réfracter ver 0.01 0.27 0.00 0.07 ind:fut:3s; +réfracterait réfracter ver 0.01 0.27 0.00 0.07 cnd:pre:3s; +réfraction réfraction nom f s 0.27 0.41 0.27 0.41 +réfractionniste réfractionniste nom s 0.01 0.00 0.01 0.00 +réfracté réfracter ver m s 0.01 0.27 0.01 0.07 par:pas; +réfrigèrent réfrigérer ver 0.20 0.34 0.01 0.00 ind:pre:3p; +réfrigérant réfrigérant adj m s 0.18 0.27 0.09 0.14 +réfrigérante réfrigérant adj f s 0.18 0.27 0.04 0.07 +réfrigérantes réfrigérant adj f p 0.18 0.27 0.01 0.07 +réfrigérants réfrigérant adj m p 0.18 0.27 0.04 0.00 +réfrigérateur réfrigérateur nom m s 3.58 2.77 2.94 2.43 +réfrigérateurs réfrigérateur nom m p 3.58 2.77 0.64 0.34 +réfrigération réfrigération nom f s 0.23 0.00 0.23 0.00 +réfrigérer réfrigérer ver 0.20 0.34 0.06 0.00 inf; +réfrigéré réfrigérer ver m s 0.20 0.34 0.09 0.14 par:pas; +réfrigérée réfrigéré adj f s 0.16 0.34 0.09 0.07 +réfrigérées réfrigérer ver f p 0.20 0.34 0.00 0.14 par:pas; +réfrigérés réfrigérer ver m p 0.20 0.34 0.02 0.00 par:pas; +réfrène réfréner ver 0.45 0.27 0.22 0.00 imp:pre:2s;ind:pre:1s; +réfréna réfréner ver 0.45 0.27 0.00 0.07 ind:pas:3s; +réfréner réfréner ver 0.45 0.27 0.20 0.07 inf; +réfrénez réfréner ver 0.45 0.27 0.02 0.00 imp:pre:2p; +réfrénée réfréner ver f s 0.45 0.27 0.01 0.14 par:pas; +réfère référer ver 3.02 3.78 1.00 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réfèrent référer ver 3.02 3.78 0.09 0.07 ind:pre:3p; +réfugia réfugier ver 6.72 25.20 0.05 1.01 ind:pas:3s; +réfugiai réfugier ver 6.72 25.20 0.01 0.68 ind:pas:1s; +réfugiaient réfugier ver 6.72 25.20 0.05 0.74 ind:imp:3p; +réfugiais réfugier ver 6.72 25.20 0.30 0.74 ind:imp:1s;ind:imp:2s; +réfugiait réfugier ver 6.72 25.20 0.16 1.49 ind:imp:3s; +réfugiant réfugier ver 6.72 25.20 0.01 0.47 par:pre; +réfugie réfugier ver 6.72 25.20 1.31 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +réfugient réfugier ver 6.72 25.20 0.11 0.74 ind:pre:3p; +réfugier réfugier ver 6.72 25.20 1.86 6.49 inf; +réfugiera réfugier ver 6.72 25.20 0.03 0.14 ind:fut:3s; +réfugierais réfugier ver 6.72 25.20 0.01 0.07 cnd:pre:1s; +réfugies réfugier ver 6.72 25.20 0.04 0.14 ind:pre:2s; +réfugiez réfugier ver 6.72 25.20 0.05 0.00 imp:pre:2p;ind:pre:2p; +réfugiions réfugier ver 6.72 25.20 0.00 0.41 ind:imp:1p; +réfugions réfugier ver 6.72 25.20 0.03 0.14 imp:pre:1p;ind:pre:1p; +réfugièrent réfugier ver 6.72 25.20 0.04 0.34 ind:pas:3p; +réfugié réfugier ver m s 6.72 25.20 1.49 4.12 par:pas; +réfugiée réfugier ver f s 6.72 25.20 0.34 2.16 par:pas; +réfugiées réfugier ver f p 6.72 25.20 0.02 0.61 par:pas; +réfugiés réfugié nom m p 6.02 10.20 4.96 8.18 +référaient référer ver 3.02 3.78 0.01 0.14 ind:imp:3p; +référait référer ver 3.02 3.78 0.32 0.34 ind:imp:3s; +référant référer ver 3.02 3.78 0.11 0.68 par:pre; +référence référence nom f s 10.45 7.23 6.54 3.58 +référencement référencement nom m s 0.01 0.00 0.01 0.00 +référencer référencer ver 0.17 0.00 0.05 0.00 inf; +références référence nom f p 10.45 7.23 3.91 3.65 +référencé référencer ver m s 0.17 0.00 0.09 0.00 par:pas; +référencée référencer ver f s 0.17 0.00 0.04 0.00 par:pas; +référendaire référendaire adj m s 0.00 0.20 0.00 0.20 +référendum référendum nom m s 0.65 2.57 0.65 2.50 +référendums référendum nom m p 0.65 2.57 0.00 0.07 +référent référent nom m s 0.02 0.00 0.02 0.00 +référer référer ver 3.02 3.78 0.88 1.42 inf; +référera référer ver 3.02 3.78 0.01 0.00 ind:fut:3s; +référerai référer ver 3.02 3.78 0.29 0.00 ind:fut:1s; +référerez référer ver 3.02 3.78 0.01 0.14 ind:fut:2p; +référez référer ver 3.02 3.78 0.19 0.07 imp:pre:2p;ind:pre:2p; +référiez référer ver 3.02 3.78 0.00 0.07 ind:imp:2p; +référèrent référer ver 3.02 3.78 0.00 0.07 ind:pas:3p; +référé référé nom m s 0.14 0.07 0.13 0.07 +référée référer ver f s 3.02 3.78 0.04 0.00 par:pas; +référés référé nom m p 0.14 0.07 0.01 0.00 +réfuta réfuter ver 1.46 1.69 0.10 0.07 ind:pas:3s; +réfutable réfutable adj s 0.01 0.00 0.01 0.00 +réfutaient réfuter ver 1.46 1.69 0.00 0.07 ind:imp:3p; +réfutant réfuter ver 1.46 1.69 0.01 0.00 par:pre; +réfutation réfutation nom f s 0.22 0.41 0.22 0.34 +réfutations réfutation nom f p 0.22 0.41 0.00 0.07 +réfute réfuter ver 1.46 1.69 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réfutent réfuter ver 1.46 1.69 0.01 0.07 ind:pre:3p; +réfuter réfuter ver 1.46 1.69 0.89 0.81 inf; +réfutons réfuter ver 1.46 1.69 0.14 0.00 ind:pre:1p; +réfutèrent réfuter ver 1.46 1.69 0.00 0.07 ind:pas:3p; +réfuté réfuter ver m s 1.46 1.69 0.05 0.20 par:pas; +réfutée réfuter ver f s 1.46 1.69 0.03 0.07 par:pas; +réfutées réfuter ver f p 1.46 1.69 0.02 0.07 par:pas; +régal régal nom m s 2.19 2.97 2.18 2.91 +régala régaler ver 7.54 11.76 0.00 0.20 ind:pas:3s; +régalade régalade nom f s 0.00 0.81 0.00 0.81 +régalai régaler ver 7.54 11.76 0.00 0.07 ind:pas:1s; +régalaient régaler ver 7.54 11.76 0.02 0.47 ind:imp:3p; +régalais régaler ver 7.54 11.76 0.06 0.41 ind:imp:1s;ind:imp:2s; +régalait régaler ver 7.54 11.76 0.19 1.96 ind:imp:3s; +régalant régaler ver 7.54 11.76 0.02 0.47 par:pre; +régale régaler ver 7.54 11.76 3.02 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +régalent régaler ver 7.54 11.76 0.14 0.41 ind:pre:3p; +régaler régaler ver 7.54 11.76 2.57 2.91 inf;; +régalera régaler ver 7.54 11.76 0.02 0.14 ind:fut:3s; +régaleraient régaler ver 7.54 11.76 0.00 0.14 cnd:pre:3p; +régalerais régaler ver 7.54 11.76 0.01 0.07 cnd:pre:1s; +régalerait régaler ver 7.54 11.76 0.00 0.20 cnd:pre:3s; +régaleras régaler ver 7.54 11.76 0.12 0.07 ind:fut:2s; +régalerez régaler ver 7.54 11.76 0.02 0.00 ind:fut:2p; +régaleront régaler ver 7.54 11.76 0.16 0.20 ind:fut:3p; +régaleur régaleur nom m s 0.00 0.07 0.00 0.07 +régalez régaler ver 7.54 11.76 0.60 0.07 imp:pre:2p;ind:pre:2p; +régalien régalien adj m s 0.01 0.07 0.01 0.07 +régalions régaler ver 7.54 11.76 0.00 0.07 ind:imp:1p; +régalât régaler ver 7.54 11.76 0.00 0.07 sub:imp:3s; +régals régal nom m p 2.19 2.97 0.01 0.07 +régalèrent régaler ver 7.54 11.76 0.00 0.27 ind:pas:3p; +régalé régaler ver m s 7.54 11.76 0.24 0.95 par:pas; +régalée régaler ver f s 7.54 11.76 0.06 0.27 par:pas; +régalés régaler ver m p 7.54 11.76 0.28 0.47 par:pas; +régate régate nom f s 1.13 0.81 0.93 0.41 +régates régate nom f p 1.13 0.81 0.19 0.41 +rugby rugby nom m s 1.14 3.11 1.14 3.11 +rugbyman rugbyman nom m s 0.03 1.28 0.03 0.34 +rugbymen rugbyman nom m p 0.03 1.28 0.00 0.95 +régence régence nom f s 0.07 1.69 0.07 1.69 +régent régent nom m s 1.14 2.30 0.77 1.08 +régentaient régenter ver 0.32 1.22 0.00 0.07 ind:imp:3p; +régentait régenter ver 0.32 1.22 0.00 0.27 ind:imp:3s; +régentant régenter ver 0.32 1.22 0.10 0.07 par:pre; +régente régent nom f s 1.14 2.30 0.37 1.15 +régentent régenter ver 0.32 1.22 0.01 0.00 ind:pre:3p; +régenter régenter ver 0.32 1.22 0.16 0.47 inf; +régenteraient régenter ver 0.32 1.22 0.00 0.07 cnd:pre:3p; +régentes régenter ver 0.32 1.22 0.01 0.00 ind:pre:2s; +régenté régenter ver m s 0.32 1.22 0.01 0.07 par:pas; +régentée régenter ver f s 0.32 1.22 0.00 0.14 par:pas; +régi régir ver m s 3.10 8.45 0.50 0.68 par:pas; +rugi rugir ver m s 1.73 7.50 0.00 0.61 par:pas; +régicide régicide nom s 0.20 1.01 0.20 0.88 +régicides régicide nom p 0.20 1.01 0.00 0.14 +régie régie nom f s 0.92 0.54 0.92 0.47 +régies régir ver f p 3.10 8.45 0.00 0.07 par:pas; +régime régime nom m s 19.43 39.73 18.52 36.69 +régiment régiment nom m s 12.30 25.54 11.48 19.86 +régimentaire régimentaire adj s 0.10 0.41 0.10 0.20 +régimentaires régimentaire adj f p 0.10 0.41 0.00 0.20 +régiments régiment nom m p 12.30 25.54 0.82 5.68 +régimes régime nom m p 19.43 39.73 0.92 3.04 +région région nom f s 28.16 53.31 25.80 39.05 +régional régional adj m s 2.63 2.70 1.23 1.69 +régionale régional adj f s 2.63 2.70 1.01 0.54 +régionales régional adj f p 2.63 2.70 0.39 0.47 +régionaliser régionaliser ver 0.00 0.07 0.00 0.07 inf; +régionalisme régionalisme nom m s 0.00 0.14 0.00 0.14 +régionaliste régionaliste adj m s 0.00 0.14 0.00 0.07 +régionalistes régionaliste adj p 0.00 0.14 0.00 0.07 +régionaux régional nom m p 0.32 1.22 0.20 1.08 +régions région nom f p 28.16 53.31 2.36 14.26 +régir régir ver 3.10 8.45 0.36 0.07 inf; +rugir rugir ver 1.73 7.50 0.52 0.88 inf; +régira régir ver 3.10 8.45 0.05 0.00 ind:fut:3s; +régiraient régir ver 3.10 8.45 0.00 0.07 cnd:pre:3p; +rugiraient rugir ver 1.73 7.50 0.00 0.07 cnd:pre:3p; +régirait régir ver 3.10 8.45 0.01 0.00 cnd:pre:3s; +rugirent rugir ver 1.73 7.50 0.00 0.07 ind:pas:3p; +régiront régir ver 3.10 8.45 0.14 0.00 ind:fut:3p; +rugiront rugir ver 1.73 7.50 0.01 0.00 ind:fut:3p; +régis régir ver m p 3.10 8.45 0.50 6.08 imp:pre:2s;par:pas; +rugis rugir ver m p 1.73 7.50 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +régissaient régir ver 3.10 8.45 0.02 0.07 ind:imp:3p; +rugissaient rugir ver 1.73 7.50 0.02 0.34 ind:imp:3p; +régissait régir ver 3.10 8.45 0.00 0.41 ind:imp:3s; +rugissait rugir ver 1.73 7.50 0.05 1.22 ind:imp:3s; +régissant régir ver 3.10 8.45 0.05 0.14 par:pre; +rugissant rugissant adj m s 0.12 1.22 0.09 0.61 +rugissante rugissant adj f s 0.12 1.22 0.01 0.27 +rugissantes rugissant adj f p 0.12 1.22 0.00 0.07 +rugissants rugissant adj m p 0.12 1.22 0.02 0.27 +rugisse rugir ver 1.73 7.50 0.02 0.00 sub:pre:3s; +rugissement rugissement nom m s 0.66 4.93 0.61 2.91 +rugissements rugissement nom m p 0.66 4.93 0.05 2.03 +régissent régir ver 3.10 8.45 0.39 0.41 ind:pre:3p; +rugissent rugir ver 1.73 7.50 0.05 0.07 ind:pre:3p; +régisseur régisseur nom m s 1.40 4.26 1.28 3.65 +régisseurs régisseur nom m p 1.40 4.26 0.11 0.61 +régisseuse régisseur nom f s 1.40 4.26 0.01 0.00 +rugissez rugir ver 1.73 7.50 0.03 0.00 imp:pre:2p; +régit régir ver 3.10 8.45 0.72 0.41 ind:pre:3s;ind:pas:3s; +rugit rugir ver 1.73 7.50 0.95 3.51 ind:pre:3s;ind:pas:3s; +régla régler ver 85.81 54.19 0.25 1.42 ind:pas:3s; +réglable réglable adj s 0.20 0.54 0.18 0.41 +réglables réglable adj m p 0.20 0.54 0.02 0.14 +réglage réglage nom m s 0.90 1.15 0.59 1.01 +réglages réglage nom m p 0.90 1.15 0.30 0.14 +réglai régler ver 85.81 54.19 0.00 0.41 ind:pas:1s; +réglaient régler ver 85.81 54.19 0.20 0.74 ind:imp:3p; +réglais régler ver 85.81 54.19 0.19 0.00 ind:imp:1s;ind:imp:2s; +réglait régler ver 85.81 54.19 0.41 3.31 ind:imp:3s; +réglant régler ver 85.81 54.19 0.14 1.15 par:pre; +réglasse régler ver 85.81 54.19 0.00 0.07 sub:imp:1s; +réglementaire réglementaire adj s 0.90 6.96 0.73 4.46 +réglementairement réglementairement adv 0.15 0.61 0.15 0.61 +réglementaires réglementaire adj p 0.90 6.96 0.17 2.50 +réglementait réglementer ver 0.22 0.81 0.00 0.07 ind:imp:3s; +réglementant réglementer ver 0.22 0.81 0.02 0.27 par:pre; +réglementation réglementation nom f s 0.56 0.47 0.31 0.41 +réglementations réglementation nom f p 0.56 0.47 0.25 0.07 +réglemente réglementer ver 0.22 0.81 0.00 0.07 ind:pre:3s; +réglementer réglementer ver 0.22 0.81 0.04 0.07 inf; +réglementé réglementer ver m s 0.22 0.81 0.05 0.07 par:pas; +réglementée réglementer ver f s 0.22 0.81 0.07 0.07 par:pas; +réglementées réglementer ver f p 0.22 0.81 0.00 0.20 par:pas; +réglementés réglementer ver m p 0.22 0.81 0.04 0.00 par:pas; +régler régler ver 85.81 54.19 42.27 22.36 ind:pre:2p;inf; +réglera régler ver 85.81 54.19 2.02 0.74 ind:fut:3s; +réglerai régler ver 85.81 54.19 0.73 0.07 ind:fut:1s; +réglerais régler ver 85.81 54.19 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +réglerait régler ver 85.81 54.19 0.16 0.68 cnd:pre:3s; +régleras régler ver 85.81 54.19 0.26 0.07 ind:fut:2s; +réglerez régler ver 85.81 54.19 0.37 0.14 ind:fut:2p; +réglerions régler ver 85.81 54.19 0.01 0.00 cnd:pre:1p; +réglerons régler ver 85.81 54.19 0.56 0.27 ind:fut:1p; +régleront régler ver 85.81 54.19 0.04 0.34 ind:fut:3p; +réglette réglette nom f s 0.01 0.20 0.01 0.20 +régleur régleur nom m s 0.10 1.82 0.10 1.82 +réglez régler ver 85.81 54.19 3.06 0.00 imp:pre:2p;ind:pre:2p; +régliez régler ver 85.81 54.19 0.06 0.00 ind:imp:2p; +réglions régler ver 85.81 54.19 0.00 0.07 ind:imp:1p; +réglisse réglisse nom f s 0.77 2.57 0.71 2.43 +réglisses réglisse nom f p 0.77 2.57 0.06 0.14 +réglo réglo adj s 6.61 1.22 5.99 1.08 +réglons régler ver 85.81 54.19 1.19 0.41 imp:pre:1p;ind:pre:1p; +réglos réglo adj m p 6.61 1.22 0.62 0.14 +réglât régler ver 85.81 54.19 0.00 0.14 sub:imp:3s; +réglèrent régler ver 85.81 54.19 0.00 0.34 ind:pas:3p; +réglé régler ver m s 85.81 54.19 21.02 10.47 par:pas; +réglée régler ver f s 85.81 54.19 2.37 4.26 par:pas; +réglées régler ver f p 85.81 54.19 0.88 1.49 par:pas; +réglure réglure nom f s 0.00 0.20 0.00 0.20 +réglés régler ver m p 85.81 54.19 0.39 0.88 par:pas; +régna régner ver 22.75 47.43 0.08 0.74 ind:pas:3s; +régnaient régner ver 22.75 47.43 0.29 2.30 ind:imp:3p; +régnais régner ver 22.75 47.43 0.02 0.47 ind:imp:1s;ind:imp:2s; +régnait régner ver 22.75 47.43 2.63 20.47 ind:imp:3s; +régnant régner ver 22.75 47.43 0.28 1.01 par:pre; +régnante régnant adj f s 0.17 1.15 0.05 0.41 +régnants régnant adj m p 0.17 1.15 0.10 0.14 +régnas régner ver 22.75 47.43 0.00 0.07 ind:pas:2s; +régner régner ver 22.75 47.43 5.52 7.64 inf; +régnera régner ver 22.75 47.43 1.33 0.61 ind:fut:3s; +régnerai régner ver 22.75 47.43 0.13 0.07 ind:fut:1s; +régneraient régner ver 22.75 47.43 0.11 0.14 cnd:pre:3p; +régnerais régner ver 22.75 47.43 0.01 0.00 cnd:pre:2s; +régnerait régner ver 22.75 47.43 0.18 0.27 cnd:pre:3s; +régneras régner ver 22.75 47.43 0.14 0.07 ind:fut:2s; +régnerez régner ver 22.75 47.43 0.03 0.00 ind:fut:2p; +régnerons régner ver 22.75 47.43 0.32 0.00 ind:fut:1p; +régneront régner ver 22.75 47.43 0.27 0.07 ind:fut:3p; +régnez régner ver 22.75 47.43 1.04 0.07 imp:pre:2p;ind:pre:2p; +régnions régner ver 22.75 47.43 0.00 0.07 ind:imp:1p; +régnons régner ver 22.75 47.43 0.20 0.00 ind:pre:1p; +régnèrent régner ver 22.75 47.43 0.02 0.00 ind:pas:3p; +régné régner ver m s 22.75 47.43 0.40 1.28 par:pas; +rugosité rugosité nom f s 0.00 0.81 0.00 0.47 +rugosités rugosité nom f p 0.00 0.81 0.00 0.34 +régressait régresser ver 0.85 0.88 0.00 0.07 ind:imp:3s; +régressant régresser ver 0.85 0.88 0.00 0.07 par:pre; +régresse régresser ver 0.85 0.88 0.23 0.14 ind:pre:1s;ind:pre:3s; +régresser régresser ver 0.85 0.88 0.39 0.34 inf; +régressera régresser ver 0.85 0.88 0.05 0.00 ind:fut:3s; +régressif régressif adj m s 0.07 0.00 0.03 0.00 +régression régression nom f s 0.52 1.55 0.51 1.35 +régressions régression nom f p 0.52 1.55 0.01 0.20 +régressive régressif adj f s 0.07 0.00 0.04 0.00 +régressé régresser ver m s 0.85 0.88 0.19 0.27 par:pas; +rugueuse rugueux adj f s 1.08 8.78 0.45 3.31 +rugueuses rugueux adj f p 1.08 8.78 0.13 0.88 +rugueux rugueux adj m 1.08 8.78 0.50 4.59 +régul régul adj m s 0.04 0.34 0.04 0.34 +régulant réguler ver 0.61 0.14 0.03 0.00 par:pre; +régularisa régulariser ver 0.38 0.88 0.00 0.07 ind:pas:3s; +régularisation régularisation nom f s 0.11 0.14 0.01 0.14 +régularisations régularisation nom f p 0.11 0.14 0.10 0.00 +régulariser régulariser ver 0.38 0.88 0.33 0.61 inf; +régularisera régulariser ver 0.38 0.88 0.02 0.00 ind:fut:3s; +régularisé régulariser ver m s 0.38 0.88 0.03 0.20 par:pas; +régularité régularité nom f s 0.55 6.96 0.55 6.96 +régulateur régulateur nom m s 1.05 0.27 0.65 0.07 +régulateurs régulateur nom m p 1.05 0.27 0.41 0.20 +régulation régulation nom f s 0.46 0.34 0.46 0.34 +régulatrice régulateur adj f s 0.14 0.27 0.01 0.00 +régulatrices régulateur adj f p 0.14 0.27 0.01 0.00 +régule régule nom m s 0.28 0.20 0.28 0.20 +régulent réguler ver 0.61 0.14 0.20 0.00 ind:pre:3p; +réguler réguler ver 0.61 0.14 0.28 0.14 inf; +régulera réguler ver 0.61 0.14 0.01 0.00 ind:fut:3s; +régulier régulier adj m s 8.29 41.35 4.48 16.42 +réguliers régulier adj m p 8.29 41.35 1.48 9.59 +régulière régulier adj f s 8.29 41.35 1.55 9.66 +régulièrement régulièrement adv 5.72 27.77 5.72 27.77 +régulières régulier adj f p 8.29 41.35 0.79 5.68 +régulé réguler ver m s 0.61 0.14 0.03 0.00 par:pas; +régulée réguler ver f s 0.61 0.14 0.04 0.00 par:pas; +régulées réguler ver f p 0.61 0.14 0.01 0.00 par:pas; +régulés réguler ver m p 0.61 0.14 0.02 0.00 par:pas; +régénère régénérer ver 1.83 1.55 0.60 0.07 ind:pre:3s; +régénèrent régénérer ver 1.83 1.55 0.06 0.00 ind:pre:3p; +régénérait régénérer ver 1.83 1.55 0.00 0.07 ind:imp:3s; +régénérant régénérer ver 1.83 1.55 0.07 0.14 par:pre; +régénérateur régénérateur nom m s 0.19 0.07 0.17 0.07 +régénérateurs régénérateur adj m p 0.05 0.41 0.01 0.00 +régénération régénération nom f s 0.67 0.14 0.67 0.14 +régénératrice régénérateur adj f s 0.05 0.41 0.01 0.27 +régénérer régénérer ver 1.83 1.55 0.72 0.68 inf; +régénérera régénérer ver 1.83 1.55 0.02 0.00 ind:fut:3s; +régénérerait régénérer ver 1.83 1.55 0.00 0.07 cnd:pre:3s; +régénérescence régénérescence nom f s 0.02 0.27 0.02 0.27 +régénéré régénérer ver m s 1.83 1.55 0.17 0.27 par:pas; +régénérée régénérer ver f s 1.83 1.55 0.03 0.14 par:pas; +régénérées régénéré adj f p 0.15 0.41 0.01 0.00 +régénérés régénérer ver m p 1.83 1.55 0.17 0.14 par:pas; +régurgitaient régurgiter ver 0.21 0.20 0.00 0.07 ind:imp:3p; +régurgitant régurgiter ver 0.21 0.20 0.01 0.07 par:pre; +régurgitation régurgitation nom f s 0.09 0.07 0.04 0.07 +régurgitations régurgitation nom f p 0.09 0.07 0.05 0.00 +régurgite régurgiter ver 0.21 0.20 0.07 0.00 ind:pre:3s; +régurgiter régurgiter ver 0.21 0.20 0.09 0.07 inf; +régurgiteras régurgiter ver 0.21 0.20 0.01 0.00 ind:fut:2s; +régurgité régurgiter ver m s 0.21 0.20 0.02 0.00 par:pas; +réhabilitaient réhabiliter ver 1.14 2.23 0.00 0.07 ind:imp:3p; +réhabilitait réhabiliter ver 1.14 2.23 0.00 0.14 ind:imp:3s; +réhabilitant réhabiliter ver 1.14 2.23 0.14 0.00 par:pre; +réhabilitation réhabilitation nom f s 1.55 0.68 1.55 0.68 +réhabilite réhabiliter ver 1.14 2.23 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réhabilitent réhabiliter ver 1.14 2.23 0.02 0.07 ind:pre:3p; +réhabiliter réhabiliter ver 1.14 2.23 0.28 1.01 inf; +réhabilitera réhabiliter ver 1.14 2.23 0.01 0.00 ind:fut:3s; +réhabiliterait réhabiliter ver 1.14 2.23 0.02 0.07 cnd:pre:3s; +réhabilité réhabiliter ver m s 1.14 2.23 0.46 0.47 par:pas; +réhabilitée réhabiliter ver f s 1.14 2.23 0.03 0.14 par:pas; +réhabilitées réhabiliter ver f p 1.14 2.23 0.01 0.00 par:pas; +réhabilités réhabiliter ver m p 1.14 2.23 0.12 0.14 par:pas; +réhabituais réhabituer ver 0.20 0.81 0.00 0.14 ind:imp:1s; +réhabituait réhabituer ver 0.20 0.81 0.00 0.07 ind:imp:3s; +réhabitue réhabituer ver 0.20 0.81 0.14 0.20 ind:pre:1s;ind:pre:3s; +réhabituer réhabituer ver 0.20 0.81 0.07 0.41 inf; +réhydratation réhydratation nom f s 0.03 0.00 0.03 0.00 +réhydrater réhydrater ver 0.09 0.07 0.08 0.07 inf; +réhydraté réhydrater ver m s 0.09 0.07 0.01 0.00 par:pas; +réifiés réifier ver m p 0.00 0.07 0.00 0.07 par:pas; +réimplantation réimplantation nom f s 0.09 0.00 0.09 0.00 +réimplanter réimplanter ver 0.11 0.00 0.06 0.00 inf; +réimplanté réimplanter ver m s 0.11 0.00 0.02 0.00 par:pas; +réimplantée réimplanter ver f s 0.11 0.00 0.02 0.00 par:pas; +réimpression réimpression nom f s 0.02 0.14 0.02 0.14 +réimprima réimprimer ver 0.04 0.27 0.00 0.07 ind:pas:3s; +réimprimer réimprimer ver 0.04 0.27 0.04 0.14 inf; +réimprimé réimprimer ver m s 0.04 0.27 0.00 0.07 par:pas; +ruina ruiner ver 20.39 12.09 0.03 0.20 ind:pas:3s; +ruinaient ruiner ver 20.39 12.09 0.01 0.47 ind:imp:3p; +ruinais ruiner ver 20.39 12.09 0.02 0.00 ind:imp:1s;ind:imp:2s; +ruinait ruiner ver 20.39 12.09 0.37 0.47 ind:imp:3s; +ruinant ruiner ver 20.39 12.09 0.11 0.27 par:pre; +réincarcérer réincarcérer ver 0.01 0.00 0.01 0.00 inf; +réincarnait réincarner ver 1.25 0.88 0.00 0.07 ind:imp:3s; +réincarnation réincarnation nom f s 1.75 1.55 1.68 1.49 +réincarnations réincarnation nom f p 1.75 1.55 0.07 0.07 +réincarne réincarner ver 1.25 0.88 0.12 0.07 ind:pre:1s;ind:pre:3s; +réincarnent réincarner ver 1.25 0.88 0.10 0.07 ind:pre:3p; +réincarner réincarner ver 1.25 0.88 0.30 0.07 inf; +réincarnera réincarner ver 1.25 0.88 0.01 0.00 ind:fut:3s; +réincarnerait réincarner ver 1.25 0.88 0.00 0.07 cnd:pre:3s; +réincarneront réincarner ver 1.25 0.88 0.01 0.00 ind:fut:3p; +réincarnons réincarner ver 1.25 0.88 0.01 0.00 ind:pre:1p; +réincarnèrent réincarner ver 1.25 0.88 0.01 0.00 ind:pas:3p; +réincarné réincarner ver m s 1.25 0.88 0.47 0.27 par:pas; +réincarnée réincarner ver f s 1.25 0.88 0.15 0.14 par:pas; +réincarnés réincarner ver m p 1.25 0.88 0.06 0.14 par:pas; +réincorpora réincorporer ver 0.04 0.07 0.00 0.07 ind:pas:3s; +réincorporé réincorporer ver m s 0.04 0.07 0.02 0.00 par:pas; +réincorporés réincorporer ver m p 0.04 0.07 0.02 0.00 par:pas; +ruine ruine nom f s 17.93 39.39 9.23 15.47 +ruinent ruiner ver 20.39 12.09 0.67 0.47 ind:pre:3p; +ruiner ruiner ver 20.39 12.09 7.21 2.91 inf; +ruinera ruiner ver 20.39 12.09 0.54 0.20 ind:fut:3s; +ruinerai ruiner ver 20.39 12.09 0.26 0.00 ind:fut:1s; +ruinerais ruiner ver 20.39 12.09 0.27 0.07 cnd:pre:1s;cnd:pre:2s; +ruinerait ruiner ver 20.39 12.09 0.40 0.00 cnd:pre:3s; +ruineras ruiner ver 20.39 12.09 0.03 0.14 ind:fut:2s; +ruinerez ruiner ver 20.39 12.09 0.03 0.00 ind:fut:2p; +ruinerons ruiner ver 20.39 12.09 0.02 0.00 ind:fut:1p; +ruineront ruiner ver 20.39 12.09 0.01 0.07 ind:fut:3p; +ruines ruine nom f p 17.93 39.39 8.70 23.92 +ruineuse ruineux adj f s 0.30 1.82 0.06 0.61 +ruineuses ruineux adj f p 0.30 1.82 0.02 0.41 +ruineux ruineux adj m 0.30 1.82 0.22 0.81 +ruinez ruiner ver 20.39 12.09 0.35 0.07 imp:pre:2p;ind:pre:2p; +réinfecter réinfecter ver 0.05 0.00 0.01 0.00 inf; +réinfecté réinfecter ver m s 0.05 0.00 0.04 0.00 par:pas; +ruiniez ruiner ver 20.39 12.09 0.02 0.00 ind:imp:2p; +réinitialisation réinitialisation nom f s 0.13 0.00 0.13 0.00 +réinitialiser réinitialiser ver 0.23 0.00 0.17 0.00 inf; +réinitialisez réinitialiser ver 0.23 0.00 0.03 0.00 imp:pre:2p; +réinitialisé réinitialiser ver m s 0.23 0.00 0.03 0.00 par:pas; +réinjecter réinjecter ver 0.02 0.00 0.02 0.00 inf; +réinjection réinjection nom f s 0.00 0.14 0.00 0.14 +ruinât ruiner ver 20.39 12.09 0.00 0.14 sub:imp:3s; +réinscrire réinscrire ver 0.08 0.00 0.04 0.00 inf; +réinscrit réinscrire ver m s 0.08 0.00 0.04 0.00 par:pas; +réinsertion réinsertion nom f s 1.51 0.88 1.51 0.88 +réinstalla réinstaller ver 0.28 1.89 0.01 0.07 ind:pas:3s; +réinstallaient réinstaller ver 0.28 1.89 0.00 0.07 ind:imp:3p; +réinstallait réinstaller ver 0.28 1.89 0.00 0.27 ind:imp:3s; +réinstallant réinstaller ver 0.28 1.89 0.00 0.14 par:pre; +réinstallation réinstallation nom f s 0.03 0.14 0.03 0.14 +réinstalle réinstaller ver 0.28 1.89 0.04 0.14 ind:pre:1s;ind:pre:3s; +réinstallent réinstaller ver 0.28 1.89 0.01 0.07 ind:pre:3p; +réinstaller réinstaller ver 0.28 1.89 0.13 0.54 inf; +réinstallez réinstaller ver 0.28 1.89 0.01 0.00 imp:pre:2p; +réinstallons réinstaller ver 0.28 1.89 0.00 0.07 ind:pre:1p; +réinstallé réinstaller ver m s 0.28 1.89 0.04 0.27 par:pas; +réinstallée réinstaller ver f s 0.28 1.89 0.02 0.14 par:pas; +réinstallées réinstaller ver f p 0.28 1.89 0.00 0.07 par:pas; +réinstallés réinstaller ver m p 0.28 1.89 0.01 0.07 par:pas; +réinstaurer réinstaurer ver 0.02 0.00 0.02 0.00 inf; +réinsérer réinsérer ver 0.41 0.47 0.23 0.41 inf; +réinséré réinsérer ver m s 0.41 0.47 0.17 0.07 par:pas; +réinterprète réinterpréter ver 0.03 0.14 0.00 0.07 ind:pre:3s; +réinterprétation réinterprétation nom f s 0.10 0.07 0.10 0.07 +réinterpréter réinterpréter ver 0.03 0.14 0.03 0.07 inf; +réinterroge réinterroger ver 0.22 0.00 0.05 0.00 ind:pre:3s; +réinterroger réinterroger ver 0.22 0.00 0.17 0.00 inf; +réintroduire réintroduire ver 0.23 0.27 0.18 0.07 inf; +réintroduisait réintroduire ver 0.23 0.27 0.00 0.07 ind:imp:3s; +réintroduisit réintroduire ver 0.23 0.27 0.00 0.07 ind:pas:3s; +réintroduit réintroduire ver m s 0.23 0.27 0.05 0.00 ind:pre:3s;par:pas; +réintroduite réintroduire ver f s 0.23 0.27 0.00 0.07 par:pas; +réintègre réintégrer ver 2.94 5.20 0.32 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réintègrent réintégrer ver 2.94 5.20 0.00 0.14 ind:pre:3p; +réintégra réintégrer ver 2.94 5.20 0.00 0.41 ind:pas:3s; +réintégrai réintégrer ver 2.94 5.20 0.00 0.14 ind:pas:1s; +réintégraient réintégrer ver 2.94 5.20 0.00 0.20 ind:imp:3p; +réintégrais réintégrer ver 2.94 5.20 0.00 0.07 ind:imp:1s; +réintégrait réintégrer ver 2.94 5.20 0.01 0.34 ind:imp:3s; +réintégrant réintégrer ver 2.94 5.20 0.01 0.20 par:pre; +réintégration réintégration nom f s 0.26 0.34 0.26 0.27 +réintégrations réintégration nom f p 0.26 0.34 0.00 0.07 +réintégrer réintégrer ver 2.94 5.20 1.38 2.16 inf; +réintégrerait réintégrer ver 2.94 5.20 0.00 0.07 cnd:pre:3s; +réintégrez réintégrer ver 2.94 5.20 0.22 0.00 imp:pre:2p;ind:pre:2p; +réintégrions réintégrer ver 2.94 5.20 0.00 0.07 ind:imp:1p; +réintégrons réintégrer ver 2.94 5.20 0.02 0.00 imp:pre:1p;ind:pre:1p; +réintégrèrent réintégrer ver 2.94 5.20 0.00 0.20 ind:pas:3p; +réintégré réintégrer ver m s 2.94 5.20 0.53 1.01 par:pas; +réintégrée réintégrer ver f s 2.94 5.20 0.21 0.00 par:pas; +réintégrés réintégrer ver m p 2.94 5.20 0.24 0.07 par:pas; +ruiné ruiner ver m s 20.39 12.09 5.81 3.92 par:pas; +ruinée ruiner ver f s 20.39 12.09 1.09 0.68 par:pas; +ruinées ruiner ver f p 20.39 12.09 0.15 0.14 par:pas; +ruinés ruiner ver m p 20.39 12.09 1.02 1.01 par:pas; +réinventa réinventer ver 0.73 2.43 0.01 0.07 ind:pas:3s; +réinventaient réinventer ver 0.73 2.43 0.01 0.14 ind:imp:3p; +réinventait réinventer ver 0.73 2.43 0.00 0.20 ind:imp:3s; +réinventant réinventer ver 0.73 2.43 0.00 0.14 par:pre; +réinvente réinventer ver 0.73 2.43 0.19 0.41 imp:pre:2s;ind:pre:3s; +réinventent réinventer ver 0.73 2.43 0.00 0.07 ind:pre:3p; +réinventer réinventer ver 0.73 2.43 0.41 1.01 inf; +réinventeraient réinventer ver 0.73 2.43 0.00 0.14 cnd:pre:3p; +réinvention réinvention nom f s 0.01 0.07 0.01 0.07 +réinventé réinventer ver m s 0.73 2.43 0.11 0.20 par:pas; +réinventées réinventer ver f p 0.73 2.43 0.00 0.07 par:pas; +réinvesti réinvestir ver m s 0.33 0.81 0.04 0.34 par:pas; +réinvestir réinvestir ver 0.33 0.81 0.10 0.14 inf; +réinvestirent réinvestir ver 0.33 0.81 0.00 0.07 ind:pas:3p; +réinvestis réinvestir ver 0.33 0.81 0.16 0.00 imp:pre:2s;ind:pre:1s; +réinvestissait réinvestir ver 0.33 0.81 0.00 0.14 ind:imp:3s; +réinvestissement réinvestissement nom m s 0.01 0.00 0.01 0.00 +réinvestissent réinvestir ver 0.33 0.81 0.00 0.14 ind:pre:3p; +réinvestit réinvestir ver 0.33 0.81 0.03 0.00 ind:pre:3s; +réinvita réinviter ver 0.05 0.07 0.00 0.07 ind:pas:3s; +réinvite réinviter ver 0.05 0.07 0.02 0.00 ind:pre:1s; +réinviter réinviter ver 0.05 0.07 0.01 0.00 inf; +réinviterai réinviter ver 0.05 0.07 0.02 0.00 ind:fut:1s; +ruisseau ruisseau nom m s 7.50 24.59 6.10 18.72 +ruisseaux ruisseau nom m p 7.50 24.59 1.40 5.88 +ruissela ruisseler ver 0.81 19.12 0.00 0.27 ind:pas:3s; +ruisselaient ruisseler ver 0.81 19.12 0.00 1.96 ind:imp:3p; +ruisselait ruisseler ver 0.81 19.12 0.02 4.80 ind:imp:3s; +ruisselant ruisseler ver 0.81 19.12 0.16 4.05 par:pre; +ruisselante ruisselant adj f s 0.33 6.82 0.03 3.11 +ruisselantes ruisselant adj f p 0.33 6.82 0.02 0.68 +ruisselants ruisselant adj m p 0.33 6.82 0.14 1.69 +ruisseler ruisseler ver 0.81 19.12 0.03 2.30 inf; +ruisselet ruisselet nom m s 0.01 1.01 0.01 0.54 +ruisselets ruisselet nom m p 0.01 1.01 0.00 0.47 +ruisselle ruisseler ver 0.81 19.12 0.50 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ruissellement ruissellement nom m s 0.01 4.53 0.01 4.12 +ruissellements ruissellement nom m p 0.01 4.53 0.00 0.41 +ruissellent ruisseler ver 0.81 19.12 0.10 1.22 ind:pre:3p; +ruissellerait ruisseler ver 0.81 19.12 0.00 0.07 cnd:pre:3s; +ruisselât ruisseler ver 0.81 19.12 0.00 0.07 sub:imp:3s; +ruisselèrent ruisseler ver 0.81 19.12 0.00 0.14 ind:pas:3p; +ruisselé ruisseler ver m s 0.81 19.12 0.00 0.47 par:pas; +ruisson ruisson nom m s 0.00 0.07 0.00 0.07 +réitère réitérer ver 1.13 2.77 0.34 0.41 ind:pre:1s;ind:pre:3s; +réitéra réitérer ver 1.13 2.77 0.00 0.54 ind:pas:3s; +réitérait réitérer ver 1.13 2.77 0.00 0.07 ind:imp:3s; +réitérant réitérer ver 1.13 2.77 0.00 0.07 par:pre; +réitération réitération nom f s 0.00 0.14 0.00 0.07 +réitérations réitération nom f p 0.00 0.14 0.00 0.07 +réitérer réitérer ver 1.13 2.77 0.35 0.41 inf; +réitérera réitérer ver 1.13 2.77 0.01 0.00 ind:fut:3s; +réitérèrent réitérer ver 1.13 2.77 0.00 0.07 ind:pas:3p; +réitéré réitérer ver m s 1.13 2.77 0.15 0.27 par:pas; +réitérée réitérer ver f s 1.13 2.77 0.14 0.27 par:pas; +réitérées réitérer ver f p 1.13 2.77 0.01 0.47 par:pas; +réitérés réitérer ver m p 1.13 2.77 0.14 0.20 par:pas; +réjouît réjouir ver 21.02 25.61 0.00 0.07 sub:imp:3s; +réjoui réjouir ver m s 21.02 25.61 0.50 1.89 par:pas; +réjouie réjouir ver f s 21.02 25.61 0.33 1.08 par:pas; +réjouies réjoui adj f p 0.45 2.43 0.02 0.20 +réjouir réjouir ver 21.02 25.61 3.96 6.15 inf; +réjouira réjouir ver 21.02 25.61 0.38 0.07 ind:fut:3s; +réjouirai réjouir ver 21.02 25.61 0.05 0.00 ind:fut:1s; +réjouirais réjouir ver 21.02 25.61 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +réjouirait réjouir ver 21.02 25.61 0.10 0.34 cnd:pre:3s; +réjouirent réjouir ver 21.02 25.61 0.01 0.14 ind:pas:3p; +réjouirez réjouir ver 21.02 25.61 0.00 0.07 ind:fut:2p; +réjouirons réjouir ver 21.02 25.61 0.04 0.00 ind:fut:1p; +réjouiront réjouir ver 21.02 25.61 0.64 0.14 ind:fut:3p; +réjouis réjouir ver m p 21.02 25.61 8.42 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réjouissaient réjouir ver 21.02 25.61 0.01 0.61 ind:imp:3p; +réjouissais réjouir ver 21.02 25.61 0.33 1.28 ind:imp:1s;ind:imp:2s; +réjouissait réjouir ver 21.02 25.61 0.44 4.73 ind:imp:3s; +réjouissance réjouissance nom f s 0.72 2.91 0.22 1.22 +réjouissances réjouissance nom f p 0.72 2.91 0.50 1.69 +réjouissant réjouissant adj m s 1.06 1.76 0.95 0.81 +réjouissante réjouissant adj f s 1.06 1.76 0.11 0.54 +réjouissantes réjouissant adj f p 1.06 1.76 0.00 0.27 +réjouissants réjouissant adj m p 1.06 1.76 0.00 0.14 +réjouisse réjouir ver 21.02 25.61 0.37 0.41 sub:pre:1s;sub:pre:3s; +réjouissent réjouir ver 21.02 25.61 0.74 0.61 ind:pre:3p; +réjouissez réjouir ver 21.02 25.61 1.15 0.27 imp:pre:2p;ind:pre:2p; +réjouissiez réjouir ver 21.02 25.61 0.01 0.00 ind:imp:2p; +réjouissions réjouir ver 21.02 25.61 0.01 0.07 ind:imp:1p; +réjouissons réjouir ver 21.02 25.61 0.65 0.27 imp:pre:1p;ind:pre:1p; +réjouit réjouir ver 21.02 25.61 2.75 4.32 ind:pre:3s;ind:pas:3s; +rémanence rémanence nom f s 0.01 0.20 0.01 0.20 +rémanent rémanent adj m s 0.02 0.14 0.02 0.00 +rémanente rémanent adj f s 0.02 0.14 0.00 0.14 +rumba rumba nom f s 0.68 0.68 0.68 0.61 +rumbas rumba nom f p 0.68 0.68 0.00 0.07 +rumeur rumeur nom f s 22.11 37.97 10.15 27.03 +rumeurs rumeur nom f p 22.11 37.97 11.96 10.95 +rémiges rémige nom f p 0.00 0.68 0.00 0.68 +rumina ruminer ver 1.65 8.85 0.01 0.34 ind:pas:3s; +ruminaient ruminer ver 1.65 8.85 0.00 0.27 ind:imp:3p; +ruminais ruminer ver 1.65 8.85 0.20 0.20 ind:imp:1s; +ruminait ruminer ver 1.65 8.85 0.16 1.62 ind:imp:3s; +ruminant ruminant nom m s 0.11 1.08 0.01 0.47 +ruminante ruminant adj f s 0.03 0.27 0.01 0.07 +ruminants ruminant nom m p 0.11 1.08 0.10 0.61 +rumination rumination nom f s 0.14 2.16 0.00 1.35 +ruminations rumination nom f p 0.14 2.16 0.14 0.81 +rumine ruminer ver 1.65 8.85 0.36 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ruminement ruminement nom m s 0.00 0.27 0.00 0.20 +ruminements ruminement nom m p 0.00 0.27 0.00 0.07 +ruminent ruminer ver 1.65 8.85 0.03 0.41 ind:pre:3p; +ruminer ruminer ver 1.65 8.85 0.82 2.77 inf; +ruminerez ruminer ver 1.65 8.85 0.00 0.07 ind:fut:2p; +rumineront ruminer ver 1.65 8.85 0.01 0.00 ind:fut:3p; +réminiscence réminiscence nom f s 0.12 3.92 0.04 1.49 +réminiscences réminiscence nom f p 0.12 3.92 0.07 2.43 +ruminé ruminer ver m s 1.65 8.85 0.04 0.61 par:pas; +ruminée ruminer ver f s 1.65 8.85 0.00 0.14 par:pas; +ruminées ruminer ver f p 1.65 8.85 0.00 0.07 par:pas; +ruminés ruminer ver m p 1.65 8.85 0.01 0.14 par:pas; +rémission rémission nom f s 1.71 2.77 1.69 2.36 +rémissions rémission nom f p 1.71 2.77 0.02 0.41 +rémiz rémiz nom f 0.00 0.07 0.00 0.07 +rémora rémora nom m s 0.02 0.00 0.02 0.00 +rémoulade rémoulade nom f s 0.02 0.20 0.02 0.20 +rémouleur rémouleur nom m s 0.02 0.95 0.02 0.68 +rémouleurs rémouleur nom m p 0.02 0.95 0.00 0.27 +rumsteck rumsteck nom m s 0.03 0.07 0.03 0.07 +rémunère rémunérer ver 1.20 0.54 0.12 0.00 ind:pre:1s;ind:pre:3s; +rémunéraient rémunérer ver 1.20 0.54 0.00 0.07 ind:imp:3p; +rémunérateur rémunérateur adj m s 0.18 0.34 0.07 0.27 +rémunérateurs rémunérateur adj m p 0.18 0.34 0.01 0.07 +rémunération rémunération nom f s 0.22 0.81 0.22 0.61 +rémunérations rémunération nom f p 0.22 0.81 0.00 0.20 +rémunératoires rémunératoire adj p 0.00 0.07 0.00 0.07 +rémunératrice rémunérateur adj f s 0.18 0.34 0.10 0.00 +rémunérer rémunérer ver 1.20 0.54 0.04 0.00 inf; +rémunéré rémunérer ver m s 1.20 0.54 0.68 0.27 par:pas; +rémunérées rémunérer ver f p 1.20 0.54 0.01 0.07 par:pas; +rémunérés rémunérer ver m p 1.20 0.54 0.36 0.14 par:pas; +run rune nom m s 4.75 0.14 2.36 0.00 +rénal rénal adj m s 1.57 0.47 0.32 0.14 +rénale rénal adj f s 1.57 0.47 0.82 0.27 +rénales rénal adj f p 1.57 0.47 0.12 0.07 +rénaux rénal adj m p 1.57 0.47 0.32 0.00 +rêne rêne nom f s 2.23 5.74 0.02 0.14 +rune rune nom f s 4.75 0.14 1.08 0.00 +rênes rêne nom f p 2.23 5.74 2.21 5.61 +runes rune nom f p 4.75 0.14 1.32 0.14 +rénettes rénette nom f p 0.00 0.07 0.00 0.07 +rénine rénine nom f s 0.01 0.00 0.01 0.00 +runique runique adj f s 0.20 0.00 0.16 0.00 +runiques runique adj m p 0.20 0.00 0.04 0.00 +running running nom m s 0.66 0.00 0.66 0.00 +rénovait rénover ver 2.33 2.50 0.01 0.07 ind:imp:3s; +rénovant rénover ver 2.33 2.50 0.10 0.07 par:pre; +rénovateur rénovateur nom m s 0.01 0.20 0.01 0.07 +rénovateurs rénovateur adj m p 0.02 0.07 0.01 0.07 +rénovation rénovation nom f s 1.11 3.65 0.51 3.58 +rénovations rénovation nom f p 1.11 3.65 0.60 0.07 +rénovatrice rénovateur adj f s 0.02 0.07 0.01 0.00 +rénove rénover ver 2.33 2.50 0.24 0.27 ind:pre:1s;ind:pre:3s; +rénover rénover ver 2.33 2.50 1.12 1.08 inf; +rénové rénover ver m s 2.33 2.50 0.53 0.54 par:pas; +rénovée rénover ver f s 2.33 2.50 0.31 0.20 par:pas; +rénovées rénover ver f p 2.33 2.50 0.02 0.14 par:pas; +rénovés rénover ver m p 2.33 2.50 0.00 0.14 par:pas; +réoccupait réoccuper ver 0.01 0.41 0.00 0.07 ind:imp:3s; +réoccuper réoccuper ver 0.01 0.41 0.01 0.27 inf; +réoccupons réoccuper ver 0.01 0.41 0.00 0.07 ind:pre:1p; +ruâmes ruer ver 3.27 20.81 0.00 0.07 ind:pas:1p; +ruons ruer ver 3.27 20.81 0.01 0.07 imp:pre:1p;ind:pre:1p; +réopère réopérer ver 0.20 0.20 0.04 0.00 ind:pre:3s; +réopérer réopérer ver 0.20 0.20 0.16 0.20 inf; +réordonnant réordonner ver 0.00 0.20 0.00 0.07 par:pre; +réordonner réordonner ver 0.00 0.20 0.00 0.14 inf; +réorganisa réorganiser ver 1.29 1.42 0.01 0.07 ind:pas:3s; +réorganisait réorganiser ver 1.29 1.42 0.01 0.14 ind:imp:3s; +réorganisant réorganiser ver 1.29 1.42 0.01 0.00 par:pre; +réorganisation réorganisation nom f s 0.36 1.42 0.36 1.35 +réorganisations réorganisation nom f p 0.36 1.42 0.00 0.07 +réorganise réorganiser ver 1.29 1.42 0.42 0.20 ind:pre:1s;ind:pre:3s; +réorganiser réorganiser ver 1.29 1.42 0.70 0.68 inf; +réorganisez réorganiser ver 1.29 1.42 0.02 0.00 imp:pre:2p;ind:pre:2p; +réorganisé réorganiser ver m s 1.29 1.42 0.12 0.20 par:pas; +réorganisées réorganiser ver f p 1.29 1.42 0.00 0.07 par:pas; +réorganisés réorganiser ver m p 1.29 1.42 0.00 0.07 par:pas; +réorientation réorientation nom f s 0.08 0.00 0.08 0.00 +réorienter réorienter ver 0.09 0.00 0.07 0.00 inf; +réorienté réorienter ver m s 0.09 0.00 0.01 0.00 par:pas; +ruât ruer ver 3.27 20.81 0.00 0.14 sub:imp:3s; +réouverture réouverture nom f s 0.48 0.61 0.48 0.54 +réouvertures réouverture nom f p 0.48 0.61 0.00 0.07 +répand répandre ver 20.39 44.32 4.14 4.73 ind:pre:3s; +répandît répandre ver 20.39 44.32 0.14 0.14 sub:imp:3s; +répandaient répandre ver 20.39 44.32 0.15 3.38 ind:imp:3p; +répandais répandre ver 20.39 44.32 0.01 0.07 ind:imp:1s; +répandait répandre ver 20.39 44.32 0.13 8.04 ind:imp:3s; +répandant répandre ver 20.39 44.32 0.41 2.23 par:pre; +répande répandre ver 20.39 44.32 0.59 0.20 sub:pre:1s;sub:pre:3s; +répandent répandre ver 20.39 44.32 1.75 1.42 ind:pre:3p; +répandeur répandeur nom m s 0.00 0.07 0.00 0.07 +répandez répandre ver 20.39 44.32 0.23 0.20 imp:pre:2p;ind:pre:2p; +répandirent répandre ver 20.39 44.32 0.15 0.68 ind:pas:3p; +répandit répandre ver 20.39 44.32 0.54 4.32 ind:pas:3s; +répandons répandre ver 20.39 44.32 0.06 0.00 imp:pre:1p;ind:pre:1p; +répandra répandre ver 20.39 44.32 0.35 0.00 ind:fut:3s; +répandrai répandre ver 20.39 44.32 0.19 0.14 ind:fut:1s; +répandraient répandre ver 20.39 44.32 0.01 0.20 cnd:pre:3p; +répandrait répandre ver 20.39 44.32 0.04 0.20 cnd:pre:3s; +répandras répandre ver 20.39 44.32 0.14 0.00 ind:fut:2s; +répandre répandre ver 20.39 44.32 5.53 6.82 inf; +répandrez répandre ver 20.39 44.32 0.04 0.00 ind:fut:2p; +répandrons répandre ver 20.39 44.32 0.15 0.00 ind:fut:1p; +répandront répandre ver 20.39 44.32 0.07 0.07 ind:fut:3p; +répands répandre ver 20.39 44.32 1.24 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +répandu répandre ver m s 20.39 44.32 2.67 4.53 par:pas; +répandue répandre ver f s 20.39 44.32 1.38 3.38 par:pas; +répandues répandre ver f p 20.39 44.32 0.16 1.49 par:pas; +répandus répandre ver m p 20.39 44.32 0.14 1.76 par:pas; +répara réparer ver 67.70 25.14 0.01 0.41 ind:pas:3s; +réparable réparable adj s 0.85 0.41 0.80 0.07 +réparables réparable adj f p 0.85 0.41 0.05 0.34 +réparaient réparer ver 67.70 25.14 0.08 0.41 ind:imp:3p; +réparais réparer ver 67.70 25.14 0.52 0.27 ind:imp:1s;ind:imp:2s; +réparait réparer ver 67.70 25.14 0.41 1.49 ind:imp:3s; +réparant réparer ver 67.70 25.14 0.14 0.54 par:pre; +réparateur réparateur nom m s 1.04 0.54 0.95 0.34 +réparateurs réparateur nom m p 1.04 0.54 0.06 0.20 +réparation réparation nom f s 8.35 7.97 5.07 4.80 +réparations réparation nom f p 8.35 7.97 3.28 3.18 +réparatrice réparateur adj f s 0.76 1.69 0.09 0.20 +réparatrices réparateur adj f p 0.76 1.69 0.02 0.00 +répare réparer ver 67.70 25.14 7.29 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réparent réparer ver 67.70 25.14 2.34 0.68 ind:pre:3p;sub:pre:3p; +réparer réparer ver 67.70 25.14 39.13 13.92 inf; +réparera réparer ver 67.70 25.14 0.64 0.07 ind:fut:3s; +réparerai réparer ver 67.70 25.14 1.26 0.14 ind:fut:1s; +répareraient réparer ver 67.70 25.14 0.00 0.07 cnd:pre:3p; +réparerait réparer ver 67.70 25.14 0.07 0.07 cnd:pre:3s; +répareras réparer ver 67.70 25.14 0.16 0.00 ind:fut:2s; +réparerez réparer ver 67.70 25.14 0.01 0.00 ind:fut:2p; +réparerons réparer ver 67.70 25.14 0.04 0.07 ind:fut:1p; +répareront réparer ver 67.70 25.14 0.02 0.00 ind:fut:3p; +réparez réparer ver 67.70 25.14 2.71 0.00 imp:pre:2p;ind:pre:2p; +répariez réparer ver 67.70 25.14 0.17 0.00 ind:imp:2p; +réparions réparer ver 67.70 25.14 0.00 0.07 ind:imp:1p; +réparons réparer ver 67.70 25.14 0.21 0.07 imp:pre:1p;ind:pre:1p; +répartîmes répartir ver 2.87 9.93 0.00 0.07 ind:pas:1p; +réparèrent réparer ver 67.70 25.14 0.00 0.07 ind:pas:3p; +réparti répartir ver m s 2.87 9.93 0.39 0.88 par:pas; +répartie répartie nom f s 0.88 0.14 0.79 0.07 +réparties répartie nom f p 0.88 0.14 0.09 0.07 +répartir répartir ver 2.87 9.93 1.23 1.82 inf; +répartirent répartir ver 2.87 9.93 0.01 0.07 ind:pas:3p; +répartiront répartir ver 2.87 9.93 0.02 0.00 ind:fut:3p; +répartis répartir ver m p 2.87 9.93 0.59 2.30 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +répartissaient répartir ver 2.87 9.93 0.00 0.54 ind:imp:3p; +répartissait répartir ver 2.87 9.93 0.01 0.41 ind:imp:3s; +répartissant répartir ver 2.87 9.93 0.04 0.27 par:pre; +répartissent répartir ver 2.87 9.93 0.01 0.41 ind:pre:3p; +répartissez répartir ver 2.87 9.93 0.10 0.00 imp:pre:2p; +répartissons répartir ver 2.87 9.93 0.01 0.00 imp:pre:1p; +répartit répartir ver 2.87 9.93 0.22 0.95 ind:pre:3s;ind:pas:3s; +répartiteur répartiteur nom m s 0.07 0.00 0.07 0.00 +répartition répartition nom f s 1.65 3.11 1.62 2.97 +répartitions répartition nom f p 1.65 3.11 0.03 0.14 +réparé réparer ver m s 67.70 25.14 9.35 2.97 par:pas; +réparée réparer ver f s 67.70 25.14 2.38 1.08 par:pas; +réparées réparer ver f p 67.70 25.14 0.42 0.88 par:pas; +réparés réparer ver m p 67.70 25.14 0.34 0.34 par:pas; +répercussion répercussion nom f s 1.05 1.69 0.11 0.68 +répercussions répercussion nom f p 1.05 1.69 0.94 1.01 +répercuta répercuter ver 0.35 7.91 0.00 0.34 ind:pas:3s; +répercutaient répercuter ver 0.35 7.91 0.00 0.74 ind:imp:3p; +répercutait répercuter ver 0.35 7.91 0.01 1.08 ind:imp:3s; +répercutant répercuter ver 0.35 7.91 0.00 0.74 par:pre; +répercute répercuter ver 0.35 7.91 0.25 1.22 ind:pre:3s; +répercutent répercuter ver 0.35 7.91 0.03 0.47 ind:pre:3p; +répercuter répercuter ver 0.35 7.91 0.04 0.74 inf; +répercuterait répercuter ver 0.35 7.91 0.00 0.14 cnd:pre:3s; +répercuteront répercuter ver 0.35 7.91 0.01 0.00 ind:fut:3p; +répercutons répercuter ver 0.35 7.91 0.00 0.07 ind:pre:1p; +répercutèrent répercuter ver 0.35 7.91 0.00 0.07 ind:pas:3p; +répercuté répercuter ver m s 0.35 7.91 0.00 1.42 par:pas; +répercutée répercuter ver f s 0.35 7.91 0.00 0.41 par:pas; +répercutées répercuter ver f p 0.35 7.91 0.00 0.20 par:pas; +répercutés répercuter ver m p 0.35 7.91 0.00 0.27 par:pas; +répertoire répertoire nom m s 2.17 5.68 2.04 5.34 +répertoires répertoire nom m p 2.17 5.68 0.14 0.34 +répertoriant répertorier ver 1.73 2.43 0.03 0.00 par:pre; +répertorier répertorier ver 1.73 2.43 0.14 0.34 inf; +répertorié répertorier ver m s 1.73 2.43 0.50 0.41 par:pas; +répertoriée répertorier ver f s 1.73 2.43 0.21 0.41 par:pas; +répertoriées répertorier ver f p 1.73 2.43 0.52 0.41 par:pas; +répertoriés répertorier ver m p 1.73 2.43 0.34 0.88 par:pas; +rupestre rupestre adj s 0.20 0.47 0.14 0.20 +rupestres rupestre adj p 0.20 0.47 0.06 0.27 +rupin rupin adj m s 0.34 1.28 0.32 0.54 +rupinasse rupiner ver 0.00 0.14 0.00 0.07 sub:imp:1s; +rupine rupin adj f s 0.34 1.28 0.00 0.27 +rupines rupin nom f p 0.68 1.69 0.00 0.07 +rupiniez rupiner ver 0.00 0.14 0.00 0.07 ind:imp:2p; +rupins rupin nom m p 0.68 1.69 0.43 1.22 +répit répit nom m s 3.87 11.76 3.86 11.01 +répits répit nom m p 3.87 11.76 0.01 0.74 +réplication réplication nom f s 0.23 0.00 0.23 0.00 +répliqua répliquer ver 1.53 17.91 0.19 7.50 ind:pas:3s; +répliquai répliquer ver 1.53 17.91 0.00 1.42 ind:pas:1s; +répliquaient répliquer ver 1.53 17.91 0.00 0.41 ind:imp:3p; +répliquais répliquer ver 1.53 17.91 0.01 0.14 ind:imp:1s;ind:imp:2s; +répliquait répliquer ver 1.53 17.91 0.02 1.62 ind:imp:3s; +répliquant répliquer ver 1.53 17.91 0.04 0.07 par:pre; +réplique réplique nom f s 8.94 16.82 6.16 12.77 +répliquent répliquer ver 1.53 17.91 0.07 0.07 ind:pre:3p; +répliquer répliquer ver 1.53 17.91 0.42 1.15 inf; +répliquera répliquer ver 1.53 17.91 0.01 0.07 ind:fut:3s; +répliquerons répliquer ver 1.53 17.91 0.02 0.00 ind:fut:1p; +répliqueront répliquer ver 1.53 17.91 0.01 0.00 ind:fut:3p; +répliques réplique nom f p 8.94 16.82 2.78 4.05 +répliquât répliquer ver 1.53 17.91 0.00 0.14 sub:imp:3s; +répliquèrent répliquer ver 1.53 17.91 0.01 0.07 ind:pas:3p; +répliqué répliquer ver m s 1.53 17.91 0.37 3.38 par:pas; +répond répondre ver 251.57 466.76 27.42 51.55 ind:pre:3s; +répondîmes répondre ver 251.57 466.76 0.10 0.07 ind:pas:1p; +répondît répondre ver 251.57 466.76 0.00 1.15 sub:imp:3s; +répondaient répondre ver 251.57 466.76 0.65 5.95 ind:imp:3p; +répondais répondre ver 251.57 466.76 1.93 7.70 ind:imp:1s;ind:imp:2s; +répondait répondre ver 251.57 466.76 4.18 45.14 ind:imp:3s; +répondant répondre ver 251.57 466.76 0.99 9.59 par:pre; +répondants répondant nom m p 0.25 1.82 0.03 0.27 +réponde répondre ver 251.57 466.76 2.96 4.39 sub:pre:1s;sub:pre:3s; +répondent répondre ver 251.57 466.76 5.96 6.82 ind:pre:3p; +répondes répondre ver 251.57 466.76 1.20 0.34 sub:pre:2s; +répondeur répondeur nom m s 7.95 1.55 7.76 1.49 +répondeurs répondeur nom m p 7.95 1.55 0.18 0.07 +répondeuse répondeur adj f s 0.20 0.07 0.01 0.00 +répondez répondre ver 251.57 466.76 31.77 3.65 imp:pre:2p;ind:pre:2p; +répondiez répondre ver 251.57 466.76 0.93 0.41 ind:imp:2p; +répondions répondre ver 251.57 466.76 0.04 0.41 ind:imp:1p;sub:pre:1p; +répondirent répondre ver 251.57 466.76 0.16 2.91 ind:pas:3p; +répondis répondre ver 251.57 466.76 0.73 20.74 ind:pas:1s; +répondit répondre ver 251.57 466.76 2.94 107.30 ind:pas:3s; +répondons répondre ver 251.57 466.76 0.51 0.95 imp:pre:1p;ind:pre:1p; +répondra répondre ver 251.57 466.76 3.42 2.23 ind:fut:3s; +répondrai répondre ver 251.57 466.76 4.30 2.23 ind:fut:1s; +répondraient répondre ver 251.57 466.76 0.28 0.27 cnd:pre:3p; +répondrais répondre ver 251.57 466.76 1.06 0.95 cnd:pre:1s;cnd:pre:2s; +répondrait répondre ver 251.57 466.76 0.77 3.04 cnd:pre:3s; +répondras répondre ver 251.57 466.76 0.67 0.27 ind:fut:2s; +répondre répondre ver 251.57 466.76 57.76 98.58 inf;; +répondrez répondre ver 251.57 466.76 0.94 0.61 ind:fut:2p; +répondriez répondre ver 251.57 466.76 0.24 0.34 cnd:pre:2p; +répondrons répondre ver 251.57 466.76 0.77 0.07 ind:fut:1p; +répondront répondre ver 251.57 466.76 0.37 0.27 ind:fut:3p; +réponds répondre ver 251.57 466.76 63.59 28.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +répondu répondre ver m s 251.57 466.76 34.90 60.14 par:pas; +répondues répondre ver f p 251.57 466.76 0.02 0.07 par:pas; +répons répons nom m 0.04 0.68 0.04 0.68 +réponse réponse nom f s 97.06 99.93 79.19 83.72 +réponses réponse nom f p 97.06 99.93 17.87 16.22 +répresseur répresseur nom m s 0.01 0.00 0.01 0.00 +répressif répressif adj m s 0.60 0.47 0.32 0.20 +répression répression nom f s 2.49 4.05 2.49 3.72 +répressions répression nom f p 2.49 4.05 0.00 0.34 +répressive répressif adj f s 0.60 0.47 0.24 0.27 +répressives répressif adj f p 0.60 0.47 0.05 0.00 +réprima réprimer ver 2.71 11.08 0.00 1.69 ind:pas:3s; +réprimai réprimer ver 2.71 11.08 0.00 0.07 ind:pas:1s; +réprimaient réprimer ver 2.71 11.08 0.01 0.07 ind:imp:3p; +réprimais réprimer ver 2.71 11.08 0.00 0.14 ind:imp:1s; +réprimait réprimer ver 2.71 11.08 0.01 0.20 ind:imp:3s; +réprimanda réprimander ver 1.08 1.49 0.00 0.14 ind:pas:3s; +réprimandait réprimander ver 1.08 1.49 0.00 0.14 ind:imp:3s; +réprimande réprimande nom f s 0.34 1.96 0.23 0.81 +réprimander réprimander ver 1.08 1.49 0.55 0.68 inf; +réprimandes réprimande nom f p 0.34 1.96 0.11 1.15 +réprimandiez réprimander ver 1.08 1.49 0.01 0.00 ind:imp:2p; +réprimandé réprimander ver m s 1.08 1.49 0.35 0.14 par:pas; +réprimandée réprimander ver f s 1.08 1.49 0.02 0.07 par:pas; +réprimant réprimer ver 2.71 11.08 0.03 0.88 par:pre; +réprime réprimer ver 2.71 11.08 0.39 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réprimer réprimer ver 2.71 11.08 0.94 4.26 inf; +réprimerai réprimer ver 2.71 11.08 0.01 0.00 ind:fut:1s; +réprimerait réprimer ver 2.71 11.08 0.00 0.07 cnd:pre:3s; +réprimerez réprimer ver 2.71 11.08 0.01 0.00 ind:fut:2p; +réprimâmes réprimer ver 2.71 11.08 0.00 0.14 ind:pas:1p; +réprimèrent réprimer ver 2.71 11.08 0.00 0.14 ind:pas:3p; +réprimé réprimer ver m s 2.71 11.08 0.28 1.35 par:pas; +réprimée réprimer ver f s 2.71 11.08 0.47 0.47 par:pas; +réprimées réprimer ver f p 2.71 11.08 0.38 0.20 par:pas; +réprimés réprimer ver m p 2.71 11.08 0.18 0.41 par:pas; +réprobateur réprobateur adj m s 0.01 2.43 0.00 1.82 +réprobateurs réprobateur adj m p 0.01 2.43 0.00 0.27 +réprobation réprobation nom f s 0.04 5.27 0.04 5.27 +réprobatrice réprobateur adj f s 0.01 2.43 0.01 0.34 +réprouvais réprouver ver 1.25 2.64 0.00 0.07 ind:imp:1s; +réprouvait réprouver ver 1.25 2.64 0.12 0.74 ind:imp:3s; +réprouvant réprouver ver 1.25 2.64 0.00 0.14 par:pre; +réprouve réprouver ver 1.25 2.64 0.49 0.54 ind:pre:1s;ind:pre:3s; +réprouvent réprouver ver 1.25 2.64 0.23 0.07 ind:pre:3p; +réprouver réprouver ver 1.25 2.64 0.05 0.27 inf; +réprouverait réprouver ver 1.25 2.64 0.00 0.07 cnd:pre:3s; +réprouveront réprouver ver 1.25 2.64 0.01 0.00 ind:fut:3p; +réprouves réprouver ver 1.25 2.64 0.01 0.20 ind:pre:2s; +réprouvez réprouver ver 1.25 2.64 0.19 0.07 imp:pre:2p;ind:pre:2p; +réprouvons réprouver ver 1.25 2.64 0.02 0.00 ind:pre:1p; +réprouvât réprouver ver 1.25 2.64 0.00 0.14 sub:imp:3s; +réprouvé réprouvé nom m s 0.00 1.42 0.00 0.41 +réprouvées réprouver ver f p 1.25 2.64 0.14 0.07 par:pas; +réprouvés réprouvé nom m p 0.00 1.42 0.00 0.95 +répréhensible répréhensible adj s 0.69 1.55 0.65 1.22 +répréhensibles répréhensible adj p 0.69 1.55 0.04 0.34 +rupteur rupteur nom m s 0.02 0.00 0.02 0.00 +répète répéter ver 98.30 200.14 45.14 37.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +répètent répéter ver 98.30 200.14 1.58 3.51 ind:pre:3p; +répètes répéter ver 98.30 200.14 2.91 0.81 ind:pre:2s;sub:pre:2s; +rupture rupture nom f s 8.39 21.49 7.87 19.73 +ruptures rupture nom f p 8.39 21.49 0.52 1.76 +républicain républicain adj m s 4.14 8.85 1.92 2.84 +républicaine républicain adj f s 4.14 8.85 1.22 3.18 +républicaines républicain adj f p 4.14 8.85 0.09 1.42 +républicains républicain nom m p 4.19 3.38 3.67 2.77 +république république nom f s 3.69 21.96 3.44 20.41 +républiques république nom f p 3.69 21.96 0.25 1.55 +répudiant répudier ver 1.33 1.82 0.00 0.07 par:pre; +répudiation répudiation nom f s 0.02 0.34 0.02 0.34 +répudie répudier ver 1.33 1.82 0.33 0.34 ind:pre:1s;ind:pre:3s; +répudier répudier ver 1.33 1.82 0.05 0.47 inf; +répudiera répudier ver 1.33 1.82 0.14 0.00 ind:fut:3s; +répudierai répudier ver 1.33 1.82 0.14 0.00 ind:fut:1s; +répudies répudier ver 1.33 1.82 0.00 0.07 ind:pre:2s; +répudié répudier ver m s 1.33 1.82 0.14 0.27 par:pas; +répudiée répudier ver f s 1.33 1.82 0.54 0.47 par:pas; +répudiées répudier ver f p 1.33 1.82 0.00 0.07 par:pas; +répudiés répudier ver m p 1.33 1.82 0.00 0.07 par:pas; +répugna répugner ver 4.55 10.34 0.00 0.07 ind:pas:3s; +répugnai répugner ver 4.55 10.34 0.00 0.07 ind:pas:1s; +répugnaient répugner ver 4.55 10.34 0.01 0.88 ind:imp:3p; +répugnais répugner ver 4.55 10.34 0.10 0.74 ind:imp:1s; +répugnait répugner ver 4.55 10.34 0.24 3.51 ind:imp:3s; +répugnance répugnance nom f s 0.56 7.91 0.56 6.96 +répugnances répugnance nom f p 0.56 7.91 0.00 0.95 +répugnant répugnant adj m s 11.59 8.58 7.47 3.04 +répugnante répugnant adj f s 11.59 8.58 2.46 3.31 +répugnantes répugnant adj f p 11.59 8.58 0.57 1.35 +répugnants répugnant adj m p 11.59 8.58 1.09 0.88 +répugne répugner ver 4.55 10.34 2.59 2.70 ind:pre:1s;ind:pre:3s; +répugnent répugner ver 4.55 10.34 0.30 0.34 ind:pre:3p; +répugner répugner ver 4.55 10.34 0.01 0.20 inf; +répugnerait répugner ver 4.55 10.34 0.01 0.07 cnd:pre:3s; +répugneront répugner ver 4.55 10.34 0.00 0.07 ind:fut:3p; +répugnes répugner ver 4.55 10.34 0.22 0.00 ind:pre:2s; +répugnez répugner ver 4.55 10.34 0.32 0.07 imp:pre:2p;ind:pre:2p; +répugniez répugner ver 4.55 10.34 0.02 0.07 ind:imp:2p; +répugnons répugner ver 4.55 10.34 0.10 0.07 ind:pre:1p; +répugnât répugner ver 4.55 10.34 0.00 0.27 sub:imp:3s; +répugné répugner ver m s 4.55 10.34 0.01 0.47 par:pas; +répugnée répugner ver f s 4.55 10.34 0.01 0.07 par:pas; +répulsif répulsif adj m s 0.08 0.00 0.03 0.00 +répulsion répulsion nom f s 0.56 5.27 0.56 4.66 +répulsions répulsion nom f p 0.56 5.27 0.00 0.61 +répulsive répulsif adj f s 0.08 0.00 0.04 0.00 +répéta répéter ver 98.30 200.14 0.15 41.62 ind:pas:3s; +répétai répéter ver 98.30 200.14 0.02 2.91 ind:pas:1s; +répétaient répéter ver 98.30 200.14 0.47 4.46 ind:imp:3p; +réputaient réputer ver 2.10 3.65 0.00 0.07 ind:imp:3p; +répétais répéter ver 98.30 200.14 1.02 4.12 ind:imp:1s;ind:imp:2s; +répétait répéter ver 98.30 200.14 3.01 33.18 ind:imp:3s; +réputait réputer ver 2.10 3.65 0.00 0.14 ind:imp:3s; +répétant répéter ver 98.30 200.14 0.85 16.55 par:pre; +réputation réputation nom f s 21.40 22.50 21.14 22.16 +réputations réputation nom f p 21.40 22.50 0.26 0.34 +répute réputer ver 2.10 3.65 0.00 0.07 ind:pre:3s; +réputent réputer ver 2.10 3.65 0.00 0.14 ind:pre:3p; +répéter répéter ver 98.30 200.14 22.20 30.88 ind:pre:2p;inf; +réputer réputer ver 2.10 3.65 0.00 0.14 inf; +répétera répéter ver 98.30 200.14 0.59 0.74 ind:fut:3s; +répéterai répéter ver 98.30 200.14 2.63 0.95 ind:fut:1s; +répéteraient répéter ver 98.30 200.14 0.00 0.34 cnd:pre:3p; +répéterais répéter ver 98.30 200.14 0.16 0.34 cnd:pre:1s;cnd:pre:2s; +répéterait répéter ver 98.30 200.14 0.02 0.34 cnd:pre:3s; +répéteras répéter ver 98.30 200.14 0.36 0.20 ind:fut:2s; +répéterez répéter ver 98.30 200.14 0.11 0.20 ind:fut:2p; +répéteriez répéter ver 98.30 200.14 0.03 0.00 cnd:pre:2p; +répétez répéter ver 98.30 200.14 7.95 1.01 imp:pre:2p;ind:pre:2p; +répétiez répéter ver 98.30 200.14 0.67 0.20 ind:imp:2p; +répétions répéter ver 98.30 200.14 0.16 0.81 ind:imp:1p; +répétiteur répétiteur nom m s 0.07 1.15 0.05 0.88 +répétiteurs répétiteur nom m p 0.07 1.15 0.00 0.14 +répétitif répétitif adj m s 0.90 0.88 0.52 0.27 +répétitifs répétitif adj m p 0.90 0.88 0.03 0.14 +répétition répétition nom f s 15.06 12.97 11.31 9.80 +répétitions répétition nom f p 15.06 12.97 3.75 3.18 +répétitive répétitif adj f s 0.90 0.88 0.27 0.14 +répétitives répétitif adj f p 0.90 0.88 0.08 0.34 +répétitrice répétiteur nom f s 0.07 1.15 0.03 0.14 +répétons répéter ver 98.30 200.14 1.78 0.34 imp:pre:1p;ind:pre:1p; +répétât répéter ver 98.30 200.14 0.00 0.27 sub:imp:3s; +répétèrent répéter ver 98.30 200.14 0.00 0.81 ind:pas:3p; +répété répéter ver m s 98.30 200.14 5.35 13.45 par:pas; +réputé réputer ver m s 2.10 3.65 1.21 1.42 par:pas; +répétée répéter ver f s 98.30 200.14 0.44 1.62 par:pas; +réputée réputer ver f s 2.10 3.65 0.54 0.95 par:pas; +répétées répéter ver f p 98.30 200.14 0.33 1.55 par:pas; +réputées réputer ver f p 2.10 3.65 0.08 0.20 par:pas; +répétés répéter ver m p 98.30 200.14 0.36 1.62 par:pas; +réputés réputer ver m p 2.10 3.65 0.27 0.54 par:pas; +réquisition réquisition nom f s 0.52 2.77 0.48 1.82 +réquisitionnais réquisitionner ver 2.12 4.59 0.00 0.07 ind:imp:1s; +réquisitionnait réquisitionner ver 2.12 4.59 0.00 0.34 ind:imp:3s; +réquisitionnant réquisitionner ver 2.12 4.59 0.00 0.27 par:pre; +réquisitionne réquisitionner ver 2.12 4.59 0.38 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réquisitionner réquisitionner ver 2.12 4.59 0.53 0.68 inf; +réquisitionnez réquisitionner ver 2.12 4.59 0.17 0.07 imp:pre:2p; +réquisitionnons réquisitionner ver 2.12 4.59 0.03 0.00 imp:pre:1p;ind:pre:1p; +réquisitionné réquisitionner ver m s 2.12 4.59 0.80 1.42 par:pas; +réquisitionnée réquisitionner ver f s 2.12 4.59 0.04 0.34 par:pas; +réquisitionnées réquisitionner ver f p 2.12 4.59 0.01 0.61 par:pas; +réquisitionnés réquisitionner ver m p 2.12 4.59 0.16 0.61 par:pas; +réquisitions réquisition nom f p 0.52 2.77 0.04 0.95 +réquisitoire réquisitoire nom m s 0.40 2.50 0.39 2.03 +réquisitoires réquisitoire nom m p 0.40 2.50 0.01 0.47 +rural rural adj m s 1.19 3.51 0.66 1.15 +rurale rural adj f s 1.19 3.51 0.23 0.88 +rurales rural adj f p 1.19 3.51 0.25 0.34 +ruraux rural adj m p 1.19 3.51 0.05 1.15 +rus ru nom m p 0.26 0.88 0.11 0.27 +rusa ruser ver 3.12 4.66 0.03 0.14 ind:pas:3s; +rusais ruser ver 3.12 4.66 0.01 0.07 ind:imp:1s; +rusait ruser ver 3.12 4.66 0.02 0.14 ind:imp:3s; +rusant ruser ver 3.12 4.66 0.02 0.07 par:pre; +ruse ruse nom f s 9.98 19.93 8.09 13.31 +réseau réseau nom m s 14.41 18.92 13.23 14.66 +réseaux réseau nom m p 14.41 18.92 1.18 4.26 +résection résection nom f s 0.18 0.14 0.18 0.14 +rusent ruser ver 3.12 4.66 0.01 0.07 ind:pre:3p; +ruser ruser ver 3.12 4.66 0.61 2.03 inf; +rusera ruser ver 3.12 4.66 0.00 0.07 ind:fut:3s; +ruserai ruser ver 3.12 4.66 0.00 0.14 ind:fut:1s; +ruserais ruser ver 3.12 4.66 0.00 0.07 cnd:pre:1s; +réserva réserver ver 34.33 47.57 0.01 0.88 ind:pas:3s; +réservai réserver ver 34.33 47.57 0.00 0.14 ind:pas:1s; +réservaient réserver ver 34.33 47.57 0.04 1.42 ind:imp:3p; +réservais réserver ver 34.33 47.57 0.32 0.61 ind:imp:1s;ind:imp:2s; +réservait réserver ver 34.33 47.57 0.37 5.95 ind:imp:3s; +réservant réserver ver 34.33 47.57 0.01 2.03 par:pre; +réservataire réservataire adj s 0.00 0.07 0.00 0.07 +réservation réservation nom f s 4.99 0.41 3.69 0.27 +réservations réservation nom f p 4.99 0.41 1.29 0.14 +réserve réserve nom f s 21.11 51.55 14.47 38.99 +réservent réserver ver 34.33 47.57 0.32 0.95 ind:pre:3p; +réserver réserver ver 34.33 47.57 4.40 4.26 inf; +réservera réserver ver 34.33 47.57 0.07 0.07 ind:fut:3s; +réserverai réserver ver 34.33 47.57 0.12 0.07 ind:fut:1s; +réserverait réserver ver 34.33 47.57 0.02 0.20 cnd:pre:3s; +réserveriez réserver ver 34.33 47.57 0.01 0.00 cnd:pre:2p; +réserveront réserver ver 34.33 47.57 0.00 0.07 ind:fut:3p; +réserves réserve nom f p 21.11 51.55 6.64 12.57 +réservez réserver ver 34.33 47.57 1.05 0.20 imp:pre:2p;ind:pre:2p; +réserviez réserver ver 34.33 47.57 0.05 0.00 ind:imp:2p; +réservions réserver ver 34.33 47.57 0.00 0.27 ind:imp:1p; +réserviste réserviste nom s 0.48 1.42 0.16 0.54 +réservistes réserviste nom p 0.48 1.42 0.33 0.88 +réservoir réservoir nom m s 8.53 5.95 6.83 4.59 +réservoirs réservoir nom m p 8.53 5.95 1.70 1.35 +réservons réserver ver 34.33 47.57 0.47 0.34 imp:pre:1p;ind:pre:1p; +réservât réserver ver 34.33 47.57 0.00 0.07 sub:imp:3s; +réservèrent réserver ver 34.33 47.57 0.00 0.07 ind:pas:3p; +réservé réserver ver m s 34.33 47.57 14.65 11.55 par:pas; +réservée réserver ver f s 34.33 47.57 2.69 6.96 par:pas; +réservées réserver ver f p 34.33 47.57 0.85 2.77 par:pas; +réservés réserver ver m p 34.33 47.57 0.95 3.45 par:pas; +ruses ruse nom f p 9.98 19.93 1.89 6.62 +rush rush nom m s 2.02 0.88 1.04 0.54 +rushes rush nom m p 2.02 0.88 0.98 0.34 +résidaient résider ver 4.95 6.82 0.04 0.41 ind:imp:3p; +résidais résider ver 4.95 6.82 0.06 0.07 ind:imp:1s;ind:imp:2s; +résidait résider ver 4.95 6.82 0.29 1.96 ind:imp:3s; +résidant résider ver 4.95 6.82 0.15 0.95 par:pre; +réside résider ver 4.95 6.82 3.51 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résidence résidence nom f s 8.04 10.95 7.56 8.85 +résidences résidence nom f p 8.04 10.95 0.48 2.09 +résident résident nom m s 1.66 1.49 0.48 0.54 +résidente résident nom f s 1.66 1.49 0.11 0.00 +résidentiel résidentiel adj m s 1.91 1.35 0.70 0.61 +résidentielle résidentiel adj f s 1.91 1.35 0.33 0.34 +résidentielles résidentiel adj f p 1.91 1.35 0.69 0.20 +résidentiels résidentiel adj m p 1.91 1.35 0.19 0.20 +résidents résident nom m p 1.66 1.49 1.08 0.95 +résider résider ver 4.95 6.82 0.35 1.08 inf; +résidera résider ver 4.95 6.82 0.02 0.00 ind:fut:3s; +résiderez résider ver 4.95 6.82 0.01 0.00 ind:fut:2p; +résides résider ver 4.95 6.82 0.05 0.00 ind:pre:2s; +résidez résider ver 4.95 6.82 0.11 0.00 ind:pre:2p; +résidons résider ver 4.95 6.82 0.00 0.07 ind:pre:1p; +résidé résider ver m s 4.95 6.82 0.04 0.20 par:pas; +résidu résidu nom m s 2.72 2.70 0.89 1.76 +résiduel résiduel adj m s 0.55 0.27 0.11 0.07 +résiduelle résiduel adj f s 0.55 0.27 0.26 0.14 +résiduelles résiduel adj f p 0.55 0.27 0.07 0.00 +résiduels résiduel adj m p 0.55 0.27 0.12 0.07 +résidus résidu nom m p 2.72 2.70 1.83 0.95 +résigna résigner ver 3.84 20.34 0.00 1.28 ind:pas:3s; +résignai résigner ver 3.84 20.34 0.00 0.81 ind:pas:1s; +résignaient résigner ver 3.84 20.34 0.00 0.41 ind:imp:3p; +résignais résigner ver 3.84 20.34 0.00 0.74 ind:imp:1s; +résignait résigner ver 3.84 20.34 0.01 1.76 ind:imp:3s; +résignant résigner ver 3.84 20.34 0.00 0.41 par:pre; +résignassent résigner ver 3.84 20.34 0.00 0.07 sub:imp:3p; +résignation résignation nom f s 0.98 9.93 0.98 9.86 +résignations résignation nom f p 0.98 9.93 0.00 0.07 +résigne résigner ver 3.84 20.34 1.07 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résignent résigner ver 3.84 20.34 0.03 0.27 ind:pre:3p; +résigner résigner ver 3.84 20.34 1.50 5.68 inf; +résignera résigner ver 3.84 20.34 0.00 0.07 ind:fut:3s; +résignerais résigner ver 3.84 20.34 0.00 0.07 cnd:pre:1s; +résignerait résigner ver 3.84 20.34 0.00 0.20 cnd:pre:3s; +résigneront résigner ver 3.84 20.34 0.01 0.00 ind:fut:3p; +résignez résigner ver 3.84 20.34 0.22 0.07 imp:pre:2p;ind:pre:2p; +résignions résigner ver 3.84 20.34 0.00 0.14 ind:imp:1p; +résignâmes résigner ver 3.84 20.34 0.00 0.14 ind:pas:1p; +résignât résigner ver 3.84 20.34 0.00 0.20 sub:imp:3s; +résignèrent résigner ver 3.84 20.34 0.00 0.14 ind:pas:3p; +résigné résigner ver m s 3.84 20.34 0.67 3.31 par:pas; +résignée résigner ver f s 3.84 20.34 0.16 1.89 par:pas; +résignées résigner ver f p 3.84 20.34 0.01 0.34 par:pas; +résignés résigner ver m p 3.84 20.34 0.15 0.74 par:pas; +résilia résilier ver 0.72 0.27 0.00 0.07 ind:pas:3s; +résiliable résiliable adj s 0.01 0.07 0.01 0.07 +résiliation résiliation nom f s 0.07 0.00 0.07 0.00 +résilie résilier ver 0.72 0.27 0.06 0.00 ind:pre:1s;ind:pre:3s; +résilience résilience nom f s 0.02 0.00 0.02 0.00 +résilier résilier ver 0.72 0.27 0.20 0.07 inf; +résilierait résilier ver 0.72 0.27 0.01 0.00 cnd:pre:3s; +résilié résilier ver m s 0.72 0.27 0.40 0.07 par:pas; +résiliée résilier ver f s 0.72 0.27 0.04 0.00 par:pas; +résiliées résilier ver f p 0.72 0.27 0.01 0.07 par:pas; +résille résille nom f s 0.36 1.96 0.27 1.89 +résilles résille nom f p 0.36 1.96 0.09 0.07 +résine résine nom f s 0.84 5.54 0.83 5.20 +résines résine nom f p 0.84 5.54 0.01 0.34 +résineuse résineux adj f s 0.13 1.01 0.01 0.61 +résineuses résineux adj f p 0.13 1.01 0.00 0.27 +résineux résineux adj m s 0.13 1.01 0.11 0.14 +résiné résiné nom m s 0.00 2.43 0.00 2.43 +résinée résiner ver f s 0.00 0.07 0.00 0.07 par:pas; +résipiscence résipiscence nom f s 0.00 0.47 0.00 0.47 +résista résister ver 38.91 52.16 0.17 2.16 ind:pas:3s; +résistai résister ver 38.91 52.16 0.00 0.47 ind:pas:1s; +résistaient résister ver 38.91 52.16 0.07 1.15 ind:imp:3p; +résistais résister ver 38.91 52.16 0.23 0.20 ind:imp:1s;ind:imp:2s; +résistait résister ver 38.91 52.16 0.38 5.68 ind:imp:3s; +résistance résistance nom f s 13.23 56.49 12.99 54.32 +résistances résistance nom f p 13.23 56.49 0.23 2.16 +résistant résistant adj m s 3.63 3.58 1.77 1.15 +résistante résistant adj f s 3.63 3.58 0.78 0.81 +résistantes résistant adj f p 3.63 3.58 0.42 0.20 +résistants résistant nom m p 1.38 6.15 0.86 4.59 +résiste résister ver 38.91 52.16 8.18 9.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résistent résister ver 38.91 52.16 1.35 1.89 ind:pre:3p;sub:pre:3p; +résister résister ver 38.91 52.16 17.54 19.93 inf; +résistera résister ver 38.91 52.16 1.93 0.54 ind:fut:3s; +résisterai résister ver 38.91 52.16 0.28 0.47 ind:fut:1s; +résisteraient résister ver 38.91 52.16 0.18 0.61 cnd:pre:3p; +résisterais résister ver 38.91 52.16 0.08 0.14 cnd:pre:1s;cnd:pre:2s; +résisterait résister ver 38.91 52.16 0.23 1.22 cnd:pre:3s; +résisteras résister ver 38.91 52.16 0.05 0.00 ind:fut:2s; +résisterez résister ver 38.91 52.16 0.06 0.00 ind:fut:2p; +résisteriez résister ver 38.91 52.16 0.04 0.00 cnd:pre:2p; +résisterions résister ver 38.91 52.16 0.01 0.00 cnd:pre:1p; +résisterons résister ver 38.91 52.16 0.16 0.00 ind:fut:1p; +résisteront résister ver 38.91 52.16 0.22 0.20 ind:fut:3p; +résistes résister ver 38.91 52.16 0.83 0.07 ind:pre:2s;sub:pre:2s; +résistez résister ver 38.91 52.16 1.43 0.20 imp:pre:2p;ind:pre:2p; +résistible résistible adj s 0.01 0.00 0.01 0.00 +résistiez résister ver 38.91 52.16 0.00 0.07 ind:imp:2p; +résistions résister ver 38.91 52.16 0.02 0.07 ind:imp:1p; +résistons résister ver 38.91 52.16 0.04 0.07 ind:pre:1p; +résistât résister ver 38.91 52.16 0.00 0.41 sub:imp:3s; +résistèrent résister ver 38.91 52.16 0.01 0.47 ind:pas:3p; +résisté résister ver m s 38.91 52.16 5.16 5.74 par:pas; +résolu résoudre ver m s 40.95 36.96 9.28 11.82 par:pas; +résoluble résoluble adj m s 0.03 0.00 0.03 0.00 +résolue résolu adj f s 6.05 11.28 2.63 4.59 +résolues résolu adj f p 6.05 11.28 0.90 0.61 +résolument résolument adv 0.39 5.34 0.39 5.34 +résolurent résoudre ver 40.95 36.96 0.00 0.07 ind:pas:3p; +résolus résoudre ver m p 40.95 36.96 1.23 3.04 ind:pas:1s;ind:pas:2s;par:pas; +résolut résoudre ver 40.95 36.96 0.13 3.11 ind:pas:3s; +résolution résolution nom f s 4.51 14.39 3.24 10.47 +résolutions résolution nom f p 4.51 14.39 1.27 3.92 +résolvaient résoudre ver 40.95 36.96 0.03 0.34 ind:imp:3p; +résolvais résoudre ver 40.95 36.96 0.02 0.07 ind:imp:1s;ind:imp:2s; +résolvait résoudre ver 40.95 36.96 0.13 1.15 ind:imp:3s; +résolvant résoudre ver 40.95 36.96 0.01 0.20 par:pre; +résolve résoudre ver 40.95 36.96 0.58 0.14 sub:pre:1s;sub:pre:3s; +résolvent résoudre ver 40.95 36.96 0.55 0.27 ind:pre:3p; +résolves résoudre ver 40.95 36.96 0.05 0.00 sub:pre:2s; +résolvez résoudre ver 40.95 36.96 0.36 0.00 imp:pre:2p;ind:pre:2p; +résolviez résoudre ver 40.95 36.96 0.04 0.07 ind:imp:2p; +résolvons résoudre ver 40.95 36.96 0.08 0.00 imp:pre:1p;ind:pre:1p; +rusâmes ruser ver 3.12 4.66 0.00 0.07 ind:pas:1p; +résonance résonance nom f s 0.71 5.27 0.69 3.72 +résonances résonance nom f p 0.71 5.27 0.03 1.55 +résonateur résonateur nom m s 0.13 0.00 0.13 0.00 +résonna résonner ver 5.07 31.96 0.24 4.26 ind:pas:3s; +résonnaient résonner ver 5.07 31.96 0.16 4.53 ind:imp:3p; +résonnait résonner ver 5.07 31.96 0.64 7.09 ind:imp:3s; +résonnant résonner ver 5.07 31.96 0.14 0.74 par:pre; +résonnante résonnant adj f s 0.12 0.47 0.03 0.07 +résonnants résonnant adj m p 0.12 0.47 0.00 0.07 +résonne résonner ver 5.07 31.96 1.38 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résonnent résonner ver 5.07 31.96 1.11 2.70 ind:pre:3p; +résonner résonner ver 5.07 31.96 0.81 5.47 inf; +résonnera résonner ver 5.07 31.96 0.17 0.07 ind:fut:3s; +résonneraient résonner ver 5.07 31.96 0.02 0.07 cnd:pre:3p; +résonneront résonner ver 5.07 31.96 0.11 0.07 ind:fut:3p; +résonnez résonner ver 5.07 31.96 0.02 0.20 imp:pre:2p; +résonnèrent résonner ver 5.07 31.96 0.01 1.28 ind:pas:3p; +résonné résonner ver m s 5.07 31.96 0.27 0.88 par:pas; +résorba résorber ver 0.26 2.97 0.00 0.07 ind:pas:3s; +résorbable résorbable adj s 0.01 0.00 0.01 0.00 +résorbaient résorber ver 0.26 2.97 0.00 0.20 ind:imp:3p; +résorbait résorber ver 0.26 2.97 0.00 0.14 ind:imp:3s; +résorbant résorber ver 0.26 2.97 0.00 0.07 par:pre; +résorbe résorber ver 0.26 2.97 0.04 0.74 ind:pre:3s; +résorbent résorber ver 0.26 2.97 0.00 0.14 ind:pre:3p; +résorber résorber ver 0.26 2.97 0.06 0.54 inf; +résorberait résorber ver 0.26 2.97 0.00 0.07 cnd:pre:3s; +résorberons résorber ver 0.26 2.97 0.01 0.00 ind:fut:1p; +résorbé résorber ver m s 0.26 2.97 0.14 0.54 par:pas; +résorbée résorber ver f s 0.26 2.97 0.01 0.34 par:pas; +résorbés résorber ver m p 0.26 2.97 0.00 0.14 par:pas; +résorption résorption nom f s 0.00 0.20 0.00 0.14 +résorptions résorption nom f p 0.00 0.20 0.00 0.07 +résoudra résoudre ver 40.95 36.96 1.67 0.41 ind:fut:3s; +résoudrai résoudre ver 40.95 36.96 0.12 0.00 ind:fut:1s; +résoudraient résoudre ver 40.95 36.96 0.00 0.07 cnd:pre:3p; +résoudrais résoudre ver 40.95 36.96 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +résoudrait résoudre ver 40.95 36.96 0.32 0.41 cnd:pre:3s; +résoudras résoudre ver 40.95 36.96 0.05 0.00 ind:fut:2s; +résoudre résoudre ver 40.95 36.96 20.89 13.58 inf; +résoudrez résoudre ver 40.95 36.96 0.10 0.00 ind:fut:2p; +résoudrons résoudre ver 40.95 36.96 0.07 0.00 ind:fut:1p; +résoudront résoudre ver 40.95 36.96 0.47 0.00 ind:fut:3p; +résous résoudre ver 40.95 36.96 1.04 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +résout résoudre ver 40.95 36.96 3.38 1.82 ind:pre:3s; +russe russe adj s 32.27 48.51 24.85 35.34 +russes russe nom p 35.44 40.27 19.76 24.73 +russifiant russifier ver 0.00 0.27 0.00 0.07 par:pre; +russification russification nom f s 0.00 0.14 0.00 0.14 +russifié russifier ver m s 0.00 0.27 0.00 0.14 par:pas; +russifiée russifier ver f s 0.00 0.27 0.00 0.07 par:pas; +russo_allemand russo_allemand adj m s 0.00 0.14 0.00 0.07 +russo_allemand russo_allemand adj f s 0.00 0.14 0.00 0.07 +russo_américain russo_américain adj m s 0.00 0.07 0.00 0.07 +russo_japonais russo_japonais adj f s 0.00 0.20 0.00 0.20 +russo_polonais russo_polonais adj m 0.00 0.14 0.00 0.07 +russo_polonais russo_polonais adj f s 0.00 0.14 0.00 0.07 +russo_turque russo_turque adj f s 0.00 0.14 0.00 0.14 +russophone russophone adj m s 0.01 0.00 0.01 0.00 +russules russule nom f p 0.00 0.14 0.00 0.14 +rustaud rustaud nom m s 0.39 0.20 0.33 0.14 +rustaude rustaud adj f s 0.12 0.68 0.02 0.27 +rustaudes rustaud nom f p 0.39 0.20 0.01 0.00 +rustauds rustaud nom m p 0.39 0.20 0.05 0.07 +rusticité rusticité nom f s 0.02 1.08 0.02 1.08 +rustine rustine nom f s 0.10 1.69 0.08 0.95 +rustines rustine nom f p 0.10 1.69 0.02 0.74 +rustique rustique adj s 1.29 6.22 0.95 4.26 +rustiques rustique adj p 1.29 6.22 0.34 1.96 +rustre rustre nom s 2.26 1.28 1.63 0.74 +rustres rustre nom p 2.26 1.28 0.63 0.54 +rusé rusé adj m s 3.27 4.80 2.46 2.77 +réséda réséda nom m s 0.10 0.41 0.10 0.34 +résédas réséda nom m p 0.10 0.41 0.00 0.07 +rusée rusé adj f s 3.27 4.80 0.52 0.95 +rusées ruser ver f p 3.12 4.66 0.13 0.00 par:pas; +résulta résulter ver 2.58 9.46 0.11 0.47 ind:pas:3s; +résultaient résulter ver 2.58 9.46 0.00 0.27 ind:imp:3p; +résultais résulter ver 2.58 9.46 0.00 0.07 ind:imp:1s; +résultait résulter ver 2.58 9.46 0.15 1.62 ind:imp:3s; +résultant résulter ver 2.58 9.46 0.42 0.74 par:pre; +résultante résultant adj f s 0.07 0.07 0.06 0.00 +résultantes résultante nom f p 0.01 0.54 0.00 0.14 +résultat résultat nom m s 59.47 38.38 25.15 27.43 +résultats résultat nom m p 59.47 38.38 34.31 10.95 +résulte résulter ver 2.58 9.46 1.19 3.38 imp:pre:2s;ind:pre:3s; +résultent résulter ver 2.58 9.46 0.23 0.54 ind:pre:3p; +résulter résulter ver 2.58 9.46 0.26 0.81 inf; +résulteraient résulter ver 2.58 9.46 0.00 0.34 cnd:pre:3p; +résulterait résulter ver 2.58 9.46 0.13 0.47 cnd:pre:3s; +résulteront résulter ver 2.58 9.46 0.00 0.07 ind:fut:3p; +résulté résulter ver m s 2.58 9.46 0.09 0.54 par:pas; +résultées résulter ver f p 2.58 9.46 0.00 0.14 par:pas; +résuma résumer ver 7.48 14.53 0.01 0.68 ind:pas:3s; +résumai résumer ver 7.48 14.53 0.00 0.07 ind:pas:1s; +résumaient résumer ver 7.48 14.53 0.04 0.61 ind:imp:3p; +résumais résumer ver 7.48 14.53 0.00 0.27 ind:imp:1s; +résumait résumer ver 7.48 14.53 0.26 2.03 ind:imp:3s; +résumant résumer ver 7.48 14.53 0.00 0.68 par:pre; +résume résumer ver 7.48 14.53 3.50 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résument résumer ver 7.48 14.53 0.18 0.68 ind:pre:3p; +résumer résumer ver 7.48 14.53 2.31 3.31 inf; +résumera résumer ver 7.48 14.53 0.04 0.14 ind:fut:3s; +résumerai résumer ver 7.48 14.53 0.02 0.27 ind:fut:1s; +résumerait résumer ver 7.48 14.53 0.04 0.07 cnd:pre:3s; +résumeriez résumer ver 7.48 14.53 0.00 0.07 cnd:pre:2p; +résumez résumer ver 7.48 14.53 0.08 0.00 imp:pre:2p;ind:pre:2p; +résumons résumer ver 7.48 14.53 0.38 0.54 imp:pre:1p;ind:pre:1p; +résumé résumé nom m s 3.95 3.72 3.86 3.24 +résumée résumer ver f s 7.48 14.53 0.07 0.61 par:pas; +résumées résumer ver f p 7.48 14.53 0.02 0.27 par:pas; +résumés résumé nom m p 3.95 3.72 0.09 0.47 +réséquer réséquer ver 0.01 0.07 0.01 0.07 inf; +résurgence résurgence nom f s 0.46 1.08 0.46 0.88 +résurgences résurgence nom f p 0.46 1.08 0.00 0.20 +résurgente résurgent adj f s 0.00 0.07 0.00 0.07 +résurrection résurrection nom f s 4.29 8.11 4.15 7.50 +résurrections résurrection nom f p 4.29 8.11 0.14 0.61 +rusés ruser ver m p 3.12 4.66 0.24 0.14 par:pas; +rut rut nom m s 2.00 2.09 2.00 2.09 +rutabaga rutabaga nom m s 0.26 1.49 0.24 0.74 +rutabagas rutabaga nom m p 0.26 1.49 0.03 0.74 +rétabli rétablir ver m s 12.38 22.36 2.78 3.65 par:pas; +rétablie rétablir ver f s 12.38 22.36 1.55 1.42 par:pas; +rétablies rétablir ver f p 12.38 22.36 0.18 0.41 par:pas; +rétablir rétablir ver 12.38 22.36 5.19 11.15 inf; +rétablira rétablir ver 12.38 22.36 0.49 0.20 ind:fut:3s; +rétablirai rétablir ver 12.38 22.36 0.01 0.07 ind:fut:1s; +rétablirait rétablir ver 12.38 22.36 0.04 0.34 cnd:pre:3s; +rétabliras rétablir ver 12.38 22.36 0.15 0.00 ind:fut:2s; +rétablirent rétablir ver 12.38 22.36 0.00 0.07 ind:pas:3p; +rétablirez rétablir ver 12.38 22.36 0.02 0.00 ind:fut:2p; +rétablirons rétablir ver 12.38 22.36 0.06 0.07 ind:fut:1p; +rétabliront rétablir ver 12.38 22.36 0.01 0.07 ind:fut:3p; +rétablis rétablir ver m p 12.38 22.36 0.52 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rétablissaient rétablir ver 12.38 22.36 0.00 0.34 ind:imp:3p; +rétablissais rétablir ver 12.38 22.36 0.00 0.07 ind:imp:1s; +rétablissait rétablir ver 12.38 22.36 0.01 0.88 ind:imp:3s; +rétablissant rétablir ver 12.38 22.36 0.03 0.54 par:pre; +rétablisse rétablir ver 12.38 22.36 0.26 0.07 sub:pre:1s;sub:pre:3s; +rétablissement rétablissement nom m s 2.08 3.85 2.08 3.65 +rétablissements rétablissement nom m p 2.08 3.85 0.00 0.20 +rétablissent rétablir ver 12.38 22.36 0.06 0.14 ind:pre:3p; +rétablisses rétablir ver 12.38 22.36 0.01 0.00 sub:pre:2s; +rétablissez rétablir ver 12.38 22.36 0.26 0.00 imp:pre:2p;ind:pre:2p; +rétablissons rétablir ver 12.38 22.36 0.16 0.34 imp:pre:1p;ind:pre:1p; +rétablit rétablir ver 12.38 22.36 0.60 1.82 ind:pre:3s;ind:pas:3s; +rétamai rétamer ver 0.56 1.55 0.00 0.07 ind:pas:1s; +rétamait rétamer ver 0.56 1.55 0.00 0.07 ind:imp:3s; +rétame rétamer ver 0.56 1.55 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétamer rétamer ver 0.56 1.55 0.23 0.47 inf; +rétameras rétamer ver 0.56 1.55 0.01 0.00 ind:fut:2s; +rétameur rétameur nom m s 0.05 0.14 0.05 0.14 +rétamé rétamer ver m s 0.56 1.55 0.25 0.68 par:pas; +rétamées rétamer ver f p 0.56 1.55 0.00 0.07 par:pas; +rétamés rétamer ver m p 0.56 1.55 0.03 0.07 par:pas; +rétention rétention nom f s 0.48 0.47 0.48 0.47 +rutherford rutherford nom m s 0.04 0.00 0.04 0.00 +ruèrent ruer ver 3.27 20.81 0.03 1.15 ind:pas:3p; +réticence réticence nom f s 1.10 7.64 0.69 3.24 +réticences réticence nom f p 1.10 7.64 0.41 4.39 +réticent réticent adj m s 1.49 3.92 0.90 1.62 +réticente réticent adj f s 1.49 3.92 0.17 1.35 +réticentes réticent adj f p 1.49 3.92 0.12 0.14 +réticents réticent adj m p 1.49 3.92 0.29 0.81 +réticulaire réticulaire adj m s 0.06 0.00 0.02 0.00 +réticulaires réticulaire adj p 0.06 0.00 0.03 0.00 +réticulation réticulation nom f s 0.00 0.07 0.00 0.07 +réticule réticule nom m s 0.02 0.81 0.02 0.81 +réticulé réticulé adj m s 0.04 0.00 0.01 0.00 +réticulée réticuler ver f s 0.03 0.00 0.03 0.00 par:pas; +réticulée réticulé adj f s 0.04 0.00 0.03 0.00 +réticulum réticulum nom m s 0.04 0.00 0.04 0.00 +rétif rétif adj m s 0.21 4.26 0.04 1.62 +rétifs rétif adj m p 0.21 4.26 0.14 0.41 +rutilaient rutiler ver 0.02 1.76 0.00 0.14 ind:imp:3p; +rutilait rutiler ver 0.02 1.76 0.00 0.47 ind:imp:3s; +rutilances rutilance nom f p 0.00 0.07 0.00 0.07 +rutilant rutilant adj m s 0.42 3.11 0.15 0.95 +rutilante rutilant adj f s 0.42 3.11 0.23 0.81 +rutilantes rutilant adj f p 0.42 3.11 0.04 0.61 +rutilants rutilant adj m p 0.42 3.11 0.01 0.74 +rutile rutiler ver 0.02 1.76 0.01 0.54 ind:pre:3s; +rutilent rutiler ver 0.02 1.76 0.00 0.14 ind:pre:3p; +rutiler rutiler ver 0.02 1.76 0.00 0.14 inf; +rétinal rétinal nom m s 0.01 0.00 0.01 0.00 +rétine rétine nom f s 0.80 2.97 0.69 2.36 +rétines rétine nom f p 0.80 2.97 0.11 0.61 +rétinien rétinien adj m s 0.26 0.14 0.10 0.00 +rétinienne rétinien adj f s 0.26 0.14 0.14 0.07 +rétiniennes rétinien adj f p 0.26 0.14 0.02 0.07 +rétinite rétinite nom f s 0.02 0.07 0.02 0.07 +rétinopathie rétinopathie nom f s 0.02 0.00 0.02 0.00 +rétive rétif adj f s 0.21 4.26 0.02 2.03 +rétives rétif adj f p 0.21 4.26 0.01 0.20 +rétorqua rétorquer ver 0.20 9.32 0.02 2.77 ind:pas:3s; +rétorquai rétorquer ver 0.20 9.32 0.00 0.81 ind:pas:1s; +rétorquais rétorquer ver 0.20 9.32 0.00 0.27 ind:imp:1s; +rétorquait rétorquer ver 0.20 9.32 0.01 1.35 ind:imp:3s; +rétorquant rétorquer ver 0.20 9.32 0.00 0.07 par:pre; +rétorque rétorquer ver 0.20 9.32 0.11 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétorquer rétorquer ver 0.20 9.32 0.01 0.74 inf; +rétorquera rétorquer ver 0.20 9.32 0.01 0.07 ind:fut:3s; +rétorquèrent rétorquer ver 0.20 9.32 0.00 0.07 ind:pas:3p; +rétorqué rétorquer ver m s 0.20 9.32 0.04 0.81 par:pas; +rétorsion rétorsion nom f s 0.03 0.07 0.03 0.07 +rétracta rétracter ver 1.71 5.14 0.01 0.34 ind:pas:3s; +rétractable rétractable adj s 0.07 0.07 0.07 0.07 +rétractais rétracter ver 1.71 5.14 0.00 0.07 ind:imp:1s; +rétractait rétracter ver 1.71 5.14 0.01 0.47 ind:imp:3s; +rétractant rétracter ver 1.71 5.14 0.01 0.47 par:pre; +rétractation rétractation nom f s 0.18 0.34 0.17 0.27 +rétractations rétractation nom f p 0.18 0.34 0.01 0.07 +rétracte rétracter ver 1.71 5.14 0.36 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétractent rétracter ver 1.71 5.14 0.04 0.14 ind:pre:3p; +rétracter rétracter ver 1.71 5.14 0.50 1.15 inf; +rétractera rétracter ver 1.71 5.14 0.04 0.00 ind:fut:3s; +rétracterait rétracter ver 1.71 5.14 0.10 0.00 cnd:pre:3s; +rétracteur rétracteur nom m s 0.08 0.00 0.07 0.00 +rétracteurs rétracteur nom m p 0.08 0.00 0.01 0.00 +rétractez rétracter ver 1.71 5.14 0.06 0.14 imp:pre:2p;ind:pre:2p; +rétractile rétractile adj f s 0.02 0.20 0.01 0.07 +rétractiles rétractile adj f p 0.02 0.20 0.01 0.14 +rétraction rétraction nom f s 0.06 0.20 0.06 0.20 +rétractèrent rétracter ver 1.71 5.14 0.00 0.14 ind:pas:3p; +rétracté rétracter ver m s 1.71 5.14 0.39 0.54 par:pas; +rétractée rétracter ver f s 1.71 5.14 0.13 0.20 par:pas; +rétractées rétracter ver f p 1.71 5.14 0.02 0.00 par:pas; +rétractés rétracter ver m p 1.71 5.14 0.04 0.14 par:pas; +rétreint rétreindre ver 0.01 0.00 0.01 0.00 ind:pre:3s; +rétribuant rétribuer ver 0.35 0.68 0.00 0.14 par:pre; +rétribue rétribuer ver 0.35 0.68 0.02 0.07 ind:pre:1s;ind:pre:3s; +rétribuer rétribuer ver 0.35 0.68 0.14 0.14 inf; +rétribution rétribution nom f s 0.60 0.41 0.60 0.34 +rétributions rétribution nom f p 0.60 0.41 0.00 0.07 +rétribué rétribué adj m s 0.12 0.20 0.12 0.07 +rétribuée rétribuer ver f s 0.35 0.68 0.15 0.14 par:pas; +rétribués rétribuer ver m p 0.35 0.68 0.01 0.07 par:pas; +rétro rétro adj 1.12 0.81 1.12 0.81 +rétroactif rétroactif adj m s 0.29 0.14 0.22 0.14 +rétroaction rétroaction nom f s 0.13 0.07 0.13 0.07 +rétroactive rétroactif adj f s 0.29 0.14 0.07 0.00 +rétroactivement rétroactivement adv 0.05 0.14 0.05 0.14 +rétrocession rétrocession nom f s 0.00 0.07 0.00 0.07 +rétrocède rétrocéder ver 0.01 0.27 0.01 0.07 ind:pre:3s; +rétrocédait rétrocéder ver 0.01 0.27 0.00 0.07 ind:imp:3s; +rétrocéder rétrocéder ver 0.01 0.27 0.00 0.14 inf; +rétrofusée rétrofusée nom f s 0.25 0.00 0.02 0.00 +rétrofusées rétrofusée nom f p 0.25 0.00 0.23 0.00 +rétrograda rétrograder ver 0.97 0.74 0.00 0.07 ind:pas:3s; +rétrogradation rétrogradation nom f s 0.09 0.20 0.07 0.14 +rétrogradations rétrogradation nom f p 0.09 0.20 0.01 0.07 +rétrograde rétrograde adj s 0.57 0.95 0.50 0.81 +rétrogradent rétrograder ver 0.97 0.74 0.00 0.07 ind:pre:3p; +rétrograder rétrograder ver 0.97 0.74 0.16 0.34 inf; +rétrogrades rétrograde adj p 0.57 0.95 0.07 0.14 +rétrogradez rétrograder ver 0.97 0.74 0.03 0.00 imp:pre:2p;ind:pre:2p; +rétrogradé rétrograder ver m s 0.97 0.74 0.55 0.07 par:pas; +rétrogradée rétrograder ver f s 0.97 0.74 0.06 0.00 par:pas; +rétrogradés rétrograder ver m p 0.97 0.74 0.01 0.07 par:pas; +rétrogression rétrogression nom f s 0.01 0.00 0.01 0.00 +rétroprojecteur rétroprojecteur nom m s 0.11 0.07 0.11 0.07 +rétropropulsion rétropropulsion nom f s 0.03 0.00 0.03 0.00 +rétros rétro nom m p 0.92 3.65 0.12 0.27 +rétrospectif rétrospectif adj m s 0.15 2.91 0.00 0.88 +rétrospectifs rétrospectif adj m p 0.15 2.91 0.00 0.14 +rétrospection rétrospection nom f s 0.03 0.00 0.03 0.00 +rétrospective rétrospective nom f s 0.36 0.61 0.36 0.54 +rétrospectivement rétrospectivement adv 0.36 1.08 0.36 1.08 +rétrospectives rétrospectif adj f p 0.15 2.91 0.00 0.27 +rétroversion rétroversion nom f s 0.00 0.07 0.00 0.07 +rétrovirale rétroviral adj f s 0.01 0.00 0.01 0.00 +rétrovirus rétrovirus nom m 1.11 0.14 1.11 0.14 +rétroviseur rétroviseur nom m s 0.93 5.20 0.86 5.07 +rétroviseurs rétroviseur nom m p 0.93 5.20 0.07 0.14 +rétréci rétrécir ver m s 3.51 7.57 1.06 1.22 par:pas; +rétrécie rétrécir ver f s 3.51 7.57 0.13 0.47 par:pas; +rétrécies rétrécir ver f p 3.51 7.57 0.01 0.07 par:pas; +rétrécir rétrécir ver 3.51 7.57 0.53 1.42 inf; +rétrécirent rétrécir ver 3.51 7.57 0.00 0.27 ind:pas:3p; +rétrécis rétrécir ver m p 3.51 7.57 0.06 0.00 imp:pre:2s;par:pas; +rétrécissaient rétrécir ver 3.51 7.57 0.00 0.27 ind:imp:3p; +rétrécissait rétrécir ver 3.51 7.57 0.02 1.08 ind:imp:3s; +rétrécissant rétrécir ver 3.51 7.57 0.02 0.81 par:pre; +rétrécisse rétrécir ver 3.51 7.57 0.04 0.00 sub:pre:3s; +rétrécissement rétrécissement nom m s 0.15 0.88 0.14 0.81 +rétrécissements rétrécissement nom m p 0.15 0.88 0.01 0.07 +rétrécissent rétrécir ver 3.51 7.57 0.31 0.34 ind:pre:3p; +rétrécissez rétrécir ver 3.51 7.57 0.03 0.00 imp:pre:2p; +rétrécit rétrécir ver 3.51 7.57 1.31 1.62 ind:pre:3s;ind:pas:3s; +rué ruer ver m s 3.27 20.81 0.67 1.69 par:pas; +rééchelonnement rééchelonnement nom m s 0.00 0.07 0.00 0.07 +réécoutais réécouter ver 0.63 0.68 0.00 0.14 ind:imp:1s; +réécoutait réécouter ver 0.63 0.68 0.00 0.07 ind:imp:3s; +réécoute réécouter ver 0.63 0.68 0.03 0.07 imp:pre:2s;ind:pre:1s; +réécoutent réécouter ver 0.63 0.68 0.00 0.07 ind:pre:3p; +réécouter réécouter ver 0.63 0.68 0.57 0.34 inf; +réécouterez réécouter ver 0.63 0.68 0.01 0.00 ind:fut:2p; +réécouté réécouter ver m s 0.63 0.68 0.02 0.00 par:pas; +réécrira réécrire ver 2.64 0.81 0.04 0.00 ind:fut:3s; +réécrirai réécrire ver 2.64 0.81 0.01 0.00 ind:fut:1s; +réécrire réécrire ver 2.64 0.81 1.27 0.07 inf; +réécris réécrire ver 2.64 0.81 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +réécrit réécrire ver m s 2.64 0.81 0.67 0.47 ind:pre:3s;par:pas; +réécrite réécrire ver f s 2.64 0.81 0.11 0.07 par:pas; +réécrits réécrire ver m p 2.64 0.81 0.08 0.07 par:pas; +réécriture réécriture nom f s 0.13 0.00 0.11 0.00 +réécritures réécriture nom f p 0.13 0.00 0.02 0.00 +réécrivaient réécrire ver 2.64 0.81 0.01 0.00 ind:imp:3p; +réécrive réécrire ver 2.64 0.81 0.02 0.07 sub:pre:1s;sub:pre:3s; +réécrivez réécrire ver 2.64 0.81 0.05 0.00 imp:pre:2p;ind:pre:2p; +réédifier réédifier ver 0.01 0.14 0.01 0.07 inf; +réédifieras réédifier ver 0.01 0.14 0.00 0.07 ind:fut:2s; +rééditait rééditer ver 0.05 0.95 0.00 0.20 ind:imp:3s; +rééditant rééditer ver 0.05 0.95 0.00 0.07 par:pre; +rééditer rééditer ver 0.05 0.95 0.01 0.34 inf; +réédition réédition nom f s 0.19 0.68 0.18 0.47 +rééditions réédition nom f p 0.19 0.68 0.01 0.20 +réédité rééditer ver m s 0.05 0.95 0.04 0.20 par:pas; +rééditées rééditer ver f p 0.05 0.95 0.00 0.07 par:pas; +réédités rééditer ver m p 0.05 0.95 0.00 0.07 par:pas; +rééducateur rééducateur nom m s 0.00 0.07 0.00 0.07 +rééducation rééducation nom f s 2.48 0.68 2.48 0.68 +rééduquais rééduquer ver 1.66 0.68 0.00 0.07 ind:imp:1s; +rééduquait rééduquer ver 1.66 0.68 0.00 0.07 ind:imp:3s; +rééduque rééduquer ver 1.66 0.68 0.01 0.07 ind:pre:3s; +rééduquer rééduquer ver 1.66 0.68 0.42 0.34 inf;; +rééduqué rééduquer ver m s 1.66 0.68 0.41 0.07 par:pas; +rééduqués rééduquer ver m p 1.66 0.68 0.81 0.07 par:pas; +ruée ruée nom f s 0.86 4.73 0.85 4.66 +ruées ruer ver f p 3.27 20.81 0.01 0.14 par:pas; +réélection réélection nom f s 0.56 0.07 0.56 0.07 +rééligible rééligible adj s 0.03 0.00 0.03 0.00 +réélira réélire ver 0.94 0.27 0.10 0.00 ind:fut:3s; +réélire réélire ver 0.94 0.27 0.17 0.00 inf; +réélisent réélire ver 0.94 0.27 0.02 0.00 ind:pre:3p; +réélisez réélire ver 0.94 0.27 0.06 0.00 imp:pre:2p; +réélu réélire ver m s 0.94 0.27 0.56 0.20 par:pas; +réélus réélire ver m p 0.94 0.27 0.03 0.00 par:pas; +réélut réélire ver 0.94 0.27 0.00 0.07 ind:pas:3s; +réunîmes réunir ver 41.93 56.69 0.00 0.07 ind:pas:1p; +réuni réunir ver m s 41.93 56.69 3.95 4.32 par:pas; +réunie réunir ver f s 41.93 56.69 1.61 3.18 par:pas; +réunies réunir ver f p 41.93 56.69 2.35 4.93 par:pas; +réunification réunification nom f s 1.30 0.14 1.30 0.14 +réunifier réunifier ver 0.17 0.27 0.04 0.00 inf; +réunifié réunifier ver m s 0.17 0.27 0.03 0.00 par:pas; +réunifiée réunifier ver f s 0.17 0.27 0.10 0.20 par:pas; +réunifiées réunifier ver f p 0.17 0.27 0.00 0.07 par:pas; +réunion réunion nom f s 56.82 28.18 49.17 19.12 +réunionnais réunionnais nom m 0.00 0.07 0.00 0.07 +réunionnite réunionnite nom f s 0.01 0.00 0.01 0.00 +réunions réunion nom f p 56.82 28.18 7.66 9.05 +réunir réunir ver 41.93 56.69 9.11 8.45 inf; +réunira réunir ver 41.93 56.69 0.52 0.47 ind:fut:3s; +réunirai réunir ver 41.93 56.69 0.06 0.00 ind:fut:1s; +réuniraient réunir ver 41.93 56.69 0.05 0.27 cnd:pre:3p; +réunirais réunir ver 41.93 56.69 0.12 0.00 cnd:pre:1s;cnd:pre:2s; +réunirait réunir ver 41.93 56.69 0.09 0.41 cnd:pre:3s; +réuniras réunir ver 41.93 56.69 0.00 0.07 ind:fut:2s; +réunirent réunir ver 41.93 56.69 0.06 0.88 ind:pas:3p; +réunirons réunir ver 41.93 56.69 0.14 0.07 ind:fut:1p; +réuniront réunir ver 41.93 56.69 0.15 0.07 ind:fut:3p; +réunis réunir ver m p 41.93 56.69 15.85 18.18 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réunissaient réunir ver 41.93 56.69 0.24 2.91 ind:imp:3p; +réunissais réunir ver 41.93 56.69 0.14 0.07 ind:imp:1s; +réunissait réunir ver 41.93 56.69 0.69 3.72 ind:imp:3s; +réunissant réunir ver 41.93 56.69 0.34 1.62 par:pre; +réunisse réunir ver 41.93 56.69 0.81 0.14 sub:pre:1s;sub:pre:3s; +réunissent réunir ver 41.93 56.69 1.26 1.42 ind:pre:3p; +réunisses réunir ver 41.93 56.69 0.02 0.00 sub:pre:2s; +réunissez réunir ver 41.93 56.69 0.37 0.20 imp:pre:2p;ind:pre:2p; +réunissions réunir ver 41.93 56.69 0.19 0.20 ind:imp:1p; +réunissons réunir ver 41.93 56.69 0.42 0.07 imp:pre:1p;ind:pre:1p; +réunit réunir ver 41.93 56.69 3.39 5.00 ind:pre:3s;ind:pas:3s; +rééquilibrage rééquilibrage nom m s 0.01 0.07 0.01 0.07 +rééquilibrait rééquilibrer ver 0.13 0.20 0.00 0.07 ind:imp:3s; +rééquilibrant rééquilibrer ver 0.13 0.20 0.01 0.00 par:pre; +rééquilibre rééquilibrer ver 0.13 0.20 0.04 0.00 ind:pre:3s; +rééquilibrer rééquilibrer ver 0.13 0.20 0.08 0.07 inf; +rééquilibrera rééquilibrer ver 0.13 0.20 0.00 0.07 ind:fut:3s; +rééquipent rééquiper ver 0.02 0.27 0.01 0.07 ind:pre:3p; +rééquiper rééquiper ver 0.02 0.27 0.01 0.00 inf; +rééquipé rééquiper ver m s 0.02 0.27 0.00 0.07 par:pas; +rééquipée rééquiper ver f s 0.02 0.27 0.00 0.14 par:pas; +rués ruer ver m p 3.27 20.81 0.06 0.54 par:pas; +réussîmes réussir ver 131.88 122.16 0.00 0.20 ind:pas:1p; +réussît réussir ver 131.88 122.16 0.01 0.34 sub:imp:3s; +réussi réussir ver m s 131.88 122.16 78.63 55.74 par:pas; +réussie réussi adj f s 6.11 7.70 2.17 2.77 +réussies réussi adj f p 6.11 7.70 0.61 0.81 +réussir réussir ver 131.88 122.16 20.99 16.55 inf; +réussira réussir ver 131.88 122.16 2.27 0.81 ind:fut:3s; +réussirai réussir ver 131.88 122.16 1.50 0.34 ind:fut:1s; +réussiraient réussir ver 131.88 122.16 0.02 0.14 cnd:pre:3p; +réussirais réussir ver 131.88 122.16 0.64 0.95 cnd:pre:1s;cnd:pre:2s; +réussirait réussir ver 131.88 122.16 0.50 0.74 cnd:pre:3s; +réussiras réussir ver 131.88 122.16 1.51 0.41 ind:fut:2s; +réussirent réussir ver 131.88 122.16 0.04 1.55 ind:pas:3p; +réussirez réussir ver 131.88 122.16 1.37 0.20 ind:fut:2p; +réussiriez réussir ver 131.88 122.16 0.22 0.00 cnd:pre:2p; +réussirions réussir ver 131.88 122.16 0.04 0.14 cnd:pre:1p; +réussirons réussir ver 131.88 122.16 0.93 0.34 ind:fut:1p; +réussiront réussir ver 131.88 122.16 0.57 0.27 ind:fut:3p; +réussis réussir ver m p 131.88 122.16 4.48 5.00 ind:pre:1s;ind:pre:2s;par:pas; +réussissaient réussir ver 131.88 122.16 0.12 1.76 ind:imp:3p; +réussissais réussir ver 131.88 122.16 0.24 2.30 ind:imp:1s;ind:imp:2s; +réussissait réussir ver 131.88 122.16 0.41 6.69 ind:imp:3s; +réussissant réussir ver 131.88 122.16 0.10 1.89 par:pre; +réussisse réussir ver 131.88 122.16 1.88 1.55 sub:pre:1s;sub:pre:3s; +réussissent réussir ver 131.88 122.16 1.85 1.82 ind:pre:3p; +réussisses réussir ver 131.88 122.16 0.47 0.00 sub:pre:2s; +réussissez réussir ver 131.88 122.16 1.25 0.47 imp:pre:2p;ind:pre:2p; +réussissiez réussir ver 131.88 122.16 0.39 0.27 ind:imp:2p; +réussissions réussir ver 131.88 122.16 0.05 0.34 ind:imp:1p; +réussissons réussir ver 131.88 122.16 0.59 0.20 imp:pre:1p;ind:pre:1p; +réussit réussir ver 131.88 122.16 9.70 19.39 ind:pre:3s;ind:pas:3s; +réussite réussite nom f s 9.46 20.74 8.80 18.18 +réussites réussite nom f p 9.46 20.74 0.66 2.57 +réutilisables réutilisable adj p 0.03 0.00 0.03 0.00 +réutilisait réutiliser ver 0.38 0.27 0.02 0.14 ind:imp:3s; +réutilisation réutilisation nom f s 0.15 0.00 0.15 0.00 +réutilise réutiliser ver 0.38 0.27 0.10 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réutiliser réutiliser ver 0.38 0.27 0.20 0.07 inf; +réutilisé réutiliser ver m s 0.38 0.27 0.04 0.00 par:pas; +réutilisés réutiliser ver m p 0.38 0.27 0.01 0.07 par:pas; +réétudier réétudier ver 0.02 0.07 0.02 0.00 inf; +réétudiez réétudier ver 0.02 0.07 0.00 0.07 ind:pre:2p; +réévaluation réévaluation nom f s 0.07 0.07 0.07 0.07 +réévalue réévaluer ver 0.72 0.34 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réévaluer réévaluer ver 0.72 0.34 0.31 0.14 inf; +réévaluera réévaluer ver 0.72 0.34 0.06 0.00 ind:fut:3s; +réévaluez réévaluer ver 0.72 0.34 0.01 0.00 imp:pre:2p; +réévalué réévaluer ver m s 0.72 0.34 0.02 0.00 par:pas; +réévaluée réévaluer ver f s 0.72 0.34 0.01 0.00 par:pas; +réévaluées réévaluer ver f p 0.72 0.34 0.02 0.00 par:pas; +réévalués réévaluer ver m p 0.72 0.34 0.00 0.07 par:pas; +rêva rêver ver 122.96 128.18 0.03 3.04 ind:pas:3s; +rêvai rêver ver 122.96 128.18 0.31 0.54 ind:pas:1s; +rêvaient rêver ver 122.96 128.18 0.52 4.53 ind:imp:3p; +rêvais rêver ver 122.96 128.18 11.00 11.28 ind:imp:1s;ind:imp:2s; +rêvait rêver ver 122.96 128.18 3.59 18.65 ind:imp:3s; +rêvant rêver ver 122.96 128.18 1.26 6.28 par:pre; +rêvassa rêvasser ver 0.92 6.01 0.00 0.27 ind:pas:3s; +rêvassai rêvasser ver 0.92 6.01 0.00 0.07 ind:pas:1s; +rêvassaient rêvasser ver 0.92 6.01 0.00 0.20 ind:imp:3p; +rêvassais rêvasser ver 0.92 6.01 0.20 0.61 ind:imp:1s;ind:imp:2s; +rêvassait rêvasser ver 0.92 6.01 0.02 1.22 ind:imp:3s; +rêvassant rêvasser ver 0.92 6.01 0.04 0.54 par:pre; +rêvasse rêvasser ver 0.92 6.01 0.14 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rêvassent rêvasser ver 0.92 6.01 0.00 0.14 ind:pre:3p; +rêvasser rêvasser ver 0.92 6.01 0.51 1.89 inf; +rêvasserie rêvasserie nom f s 0.02 0.41 0.01 0.07 +rêvasseries rêvasserie nom f p 0.02 0.41 0.01 0.34 +rêvassé rêvasser ver m s 0.92 6.01 0.01 0.00 par:pas; +rêve rêve nom m s 158.75 128.58 99.39 80.20 +réveil réveil nom m s 18.43 28.58 18.16 26.22 +réveilla réveiller ver 175.94 125.41 0.46 11.89 ind:pas:3s; +réveillai réveiller ver 175.94 125.41 0.27 2.70 ind:pas:1s; +réveillaient réveiller ver 175.94 125.41 0.07 2.09 ind:imp:3p; +réveillais réveiller ver 175.94 125.41 0.96 1.89 ind:imp:1s;ind:imp:2s; +réveillait réveiller ver 175.94 125.41 1.21 10.74 ind:imp:3s; +réveillant réveiller ver 175.94 125.41 0.89 3.85 par:pre; +réveille_matin réveille_matin nom m 0.19 0.88 0.19 0.88 +réveille réveiller ver 175.94 125.41 59.67 17.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +réveillent réveiller ver 175.94 125.41 1.75 2.30 ind:pre:3p; +réveiller réveiller ver 175.94 125.41 36.66 28.92 ind:pre:2p;inf; +réveillera réveiller ver 175.94 125.41 4.42 1.35 ind:fut:3s; +réveillerai réveiller ver 175.94 125.41 1.54 0.41 ind:fut:1s; +réveilleraient réveiller ver 175.94 125.41 0.17 0.20 cnd:pre:3p; +réveillerais réveiller ver 175.94 125.41 0.61 0.41 cnd:pre:1s;cnd:pre:2s; +réveillerait réveiller ver 175.94 125.41 0.56 1.22 cnd:pre:3s; +réveilleras réveiller ver 175.94 125.41 1.44 0.47 ind:fut:2s; +réveillerez réveiller ver 175.94 125.41 0.33 0.14 ind:fut:2p; +réveilleriez réveiller ver 175.94 125.41 0.07 0.00 cnd:pre:2p; +réveillerons réveiller ver 175.94 125.41 0.20 0.07 ind:fut:1p; +réveilleront réveiller ver 175.94 125.41 0.38 0.27 ind:fut:3p; +réveilles réveiller ver 175.94 125.41 4.27 0.68 ind:pre:2s;sub:pre:2s; +réveilleurs réveilleur nom m p 0.00 0.07 0.00 0.07 +réveillez réveiller ver 175.94 125.41 11.33 0.95 imp:pre:2p;ind:pre:2p; +réveilliez réveiller ver 175.94 125.41 0.07 0.00 ind:imp:2p; +réveillions réveiller ver 175.94 125.41 0.03 0.27 ind:imp:1p; +réveillâmes réveiller ver 175.94 125.41 0.00 0.07 ind:pas:1p; +réveillon réveillon nom m s 4.64 5.07 4.46 4.73 +réveillonnaient réveillonner ver 0.34 1.22 0.00 0.07 ind:imp:3p; +réveillonnait réveillonner ver 0.34 1.22 0.00 0.14 ind:imp:3s; +réveillonne réveillonner ver 0.34 1.22 0.30 0.07 ind:pre:3s; +réveillonner réveillonner ver 0.34 1.22 0.03 0.68 inf; +réveillonnerons réveillonner ver 0.34 1.22 0.00 0.07 ind:fut:1p; +réveillonneurs réveillonneur nom m p 0.00 0.20 0.00 0.20 +réveillonnâmes réveillonner ver 0.34 1.22 0.00 0.07 ind:pas:1p; +réveillonnons réveillonner ver 0.34 1.22 0.00 0.07 imp:pre:1p; +réveillonnèrent réveillonner ver 0.34 1.22 0.00 0.07 ind:pas:3p; +réveillonné réveillonner ver m s 0.34 1.22 0.01 0.00 par:pas; +réveillons réveiller ver 175.94 125.41 0.38 0.47 imp:pre:1p;ind:pre:1p; +réveillât réveiller ver 175.94 125.41 0.00 0.27 sub:imp:3s; +réveillèrent réveiller ver 175.94 125.41 0.17 1.62 ind:pas:3p; +réveillé réveiller ver m s 175.94 125.41 30.63 18.78 par:pas; +réveillée réveiller ver f s 175.94 125.41 15.63 10.88 par:pas; +réveillées réveiller ver f p 175.94 125.41 0.18 0.68 par:pas; +réveillés réveiller ver m p 175.94 125.41 1.61 4.26 par:pas; +réveils réveil nom m p 18.43 28.58 0.27 2.36 +rêvent rêver ver 122.96 128.18 3.63 4.19 ind:pre:3p; +rêver rêver ver 122.96 128.18 20.80 29.39 inf; +rêvera rêver ver 122.96 128.18 0.08 0.20 ind:fut:3s; +rêverai rêver ver 122.96 128.18 0.12 0.41 ind:fut:1s; +rêveraient rêver ver 122.96 128.18 0.05 0.14 cnd:pre:3p; +rêverait rêver ver 122.96 128.18 0.07 0.20 cnd:pre:3s; +réverbère réverbère nom m s 0.53 10.81 0.42 4.86 +réverbèrent réverbérer ver 0.02 1.28 0.00 0.07 ind:pre:3p; +réverbères réverbère nom m p 0.53 10.81 0.11 5.95 +réverbéra réverbérer ver 0.02 1.28 0.00 0.07 ind:pas:3s; +réverbéraient réverbérer ver 0.02 1.28 0.00 0.27 ind:imp:3p; +réverbérait réverbérer ver 0.02 1.28 0.01 0.20 ind:imp:3s; +réverbérant réverbérer ver 0.02 1.28 0.00 0.14 par:pre; +réverbération réverbération nom f s 0.06 1.69 0.05 1.55 +réverbérations réverbération nom f p 0.06 1.69 0.01 0.14 +réverbérer réverbérer ver 0.02 1.28 0.00 0.20 inf; +réverbéré réverbérer ver m s 0.02 1.28 0.00 0.07 par:pas; +réverbérée réverbérer ver f s 0.02 1.28 0.00 0.20 par:pas; +rêverie rêverie nom f s 0.65 19.46 0.26 12.36 +rêveries rêverie nom f p 0.65 19.46 0.40 7.09 +rêveront rêver ver 122.96 128.18 0.00 0.27 ind:fut:3p; +réversibilité réversibilité nom f s 0.01 0.61 0.01 0.61 +réversible réversible adj s 0.21 0.54 0.17 0.47 +réversibles réversible adj f p 0.21 0.54 0.04 0.07 +réversion réversion nom f s 0.07 0.14 0.07 0.14 +rêves rêve nom m p 158.75 128.58 59.35 48.38 +rêveur rêveur nom m s 2.50 4.66 1.48 3.31 +rêveurs rêveur nom m p 2.50 4.66 0.90 0.88 +rêveuse rêveur adj f s 1.77 15.34 0.61 4.66 +rêveusement rêveusement adv 0.10 3.45 0.10 3.45 +rêveuses rêveur adj f p 1.77 15.34 0.03 0.81 +rêvez rêver ver 122.96 128.18 4.31 0.81 imp:pre:2p;ind:pre:2p; +rêviez rêver ver 122.96 128.18 0.58 0.34 ind:imp:2p; +rêvions rêver ver 122.96 128.18 0.28 1.01 ind:imp:1p; +révisa réviser ver 8.21 3.72 0.00 0.07 ind:pas:3s; +révisai réviser ver 8.21 3.72 0.00 0.14 ind:pas:1s; +révisaient réviser ver 8.21 3.72 0.00 0.14 ind:imp:3p; +révisais réviser ver 8.21 3.72 0.12 0.34 ind:imp:1s;ind:imp:2s; +révisait réviser ver 8.21 3.72 0.06 0.20 ind:imp:3s; +révisant réviser ver 8.21 3.72 0.03 0.14 par:pre; +révise réviser ver 8.21 3.72 1.65 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révisent réviser ver 8.21 3.72 0.02 0.00 ind:pre:3p; +réviser réviser ver 8.21 3.72 4.35 2.03 inf; +réviserais réviser ver 8.21 3.72 0.01 0.00 cnd:pre:1s; +réviserait réviser ver 8.21 3.72 0.01 0.00 cnd:pre:3s; +révises réviser ver 8.21 3.72 0.21 0.07 ind:pre:2s; +réviseur réviseur nom m s 0.01 0.00 0.01 0.00 +révisez réviser ver 8.21 3.72 0.08 0.00 imp:pre:2p; +révisiez réviser ver 8.21 3.72 0.01 0.00 ind:imp:2p; +révision révision nom f s 3.99 3.78 3.09 3.11 +révisionnisme révisionnisme nom m s 0.00 0.07 0.00 0.07 +révisionniste révisionniste adj s 0.09 0.34 0.07 0.27 +révisionnistes révisionniste nom p 0.29 0.20 0.28 0.20 +révisions révision nom f p 3.99 3.78 0.90 0.68 +réviso réviso nom s 0.00 0.07 0.00 0.07 +révisons réviser ver 8.21 3.72 0.19 0.00 imp:pre:1p;ind:pre:1p; +révisé réviser ver m s 8.21 3.72 1.10 0.14 par:pas; +révisée réviser ver f s 8.21 3.72 0.29 0.07 par:pas; +révisées réviser ver f p 8.21 3.72 0.02 0.14 par:pas; +révisés réviser ver m p 8.21 3.72 0.06 0.07 par:pas; +révocable révocable adj f s 0.03 0.41 0.03 0.20 +révocables révocable adj m p 0.03 0.41 0.00 0.20 +révocation révocation nom f s 0.32 0.61 0.32 0.54 +révocations révocation nom f p 0.32 0.61 0.00 0.07 +révolta révolter ver 4.65 10.81 0.10 1.08 ind:pas:3s; +révoltai révolter ver 4.65 10.81 0.00 0.07 ind:pas:1s; +révoltaient révolter ver 4.65 10.81 0.03 0.41 ind:imp:3p; +révoltais révolter ver 4.65 10.81 0.00 0.20 ind:imp:1s; +révoltait révolter ver 4.65 10.81 0.02 2.36 ind:imp:3s; +révoltant révoltant adj m s 0.92 1.96 0.60 0.88 +révoltante révoltant adj f s 0.92 1.96 0.14 0.61 +révoltantes révoltant adj f p 0.92 1.96 0.16 0.34 +révoltants révoltant adj m p 0.92 1.96 0.02 0.14 +révolte révolte nom f s 6.66 25.07 6.35 21.82 +révoltent révolter ver 4.65 10.81 0.44 0.54 ind:pre:3p; +révolter révolter ver 4.65 10.81 1.19 1.08 inf; +révolteront révolter ver 4.65 10.81 0.15 0.00 ind:fut:3p; +révoltes révolte nom f p 6.66 25.07 0.31 3.24 +révoltez révolter ver 4.65 10.81 0.04 0.00 imp:pre:2p;ind:pre:2p; +révoltions révolter ver 4.65 10.81 0.00 0.07 ind:imp:1p; +révoltons révolter ver 4.65 10.81 0.14 0.07 imp:pre:1p;ind:pre:1p; +révoltât révolter ver 4.65 10.81 0.00 0.14 sub:imp:3s; +révoltèrent révolter ver 4.65 10.81 0.24 0.27 ind:pas:3p; +révolté révolter ver m s 4.65 10.81 0.36 1.01 par:pas; +révoltée révolter ver f s 4.65 10.81 0.05 0.88 par:pas; +révoltées révolté adj f p 0.17 2.97 0.01 0.20 +révoltés révolté nom m p 1.08 2.43 0.87 1.35 +révolu révolu adj m s 2.25 5.34 0.60 2.09 +révolue révolu adj f s 2.25 5.34 1.20 1.35 +révolues révolu adj f p 2.25 5.34 0.06 0.27 +révolus révolu adj m p 2.25 5.34 0.40 1.62 +révolution révolution nom f s 25.00 46.08 23.07 41.08 +révolutionna révolutionner ver 0.97 0.88 0.01 0.14 ind:pas:3s; +révolutionnaient révolutionner ver 0.97 0.88 0.00 0.07 ind:imp:3p; +révolutionnaire révolutionnaire adj s 7.30 12.09 4.76 8.78 +révolutionnairement révolutionnairement adv 0.01 0.00 0.01 0.00 +révolutionnaires révolutionnaire adj p 7.30 12.09 2.54 3.31 +révolutionnait révolutionner ver 0.97 0.88 0.00 0.07 ind:imp:3s; +révolutionner révolutionner ver 0.97 0.88 0.55 0.20 inf; +révolutionnera révolutionner ver 0.97 0.88 0.12 0.00 ind:fut:3s; +révolutionnerait révolutionner ver 0.97 0.88 0.02 0.00 cnd:pre:3s; +révolutionneront révolutionner ver 0.97 0.88 0.01 0.00 ind:fut:3p; +révolutionné révolutionner ver m s 0.97 0.88 0.27 0.34 par:pas; +révolutionnées révolutionner ver f p 0.97 0.88 0.00 0.07 par:pas; +révolutions révolution nom f p 25.00 46.08 1.94 5.00 +rêvons rêver ver 122.96 128.18 0.68 0.68 imp:pre:1p;ind:pre:1p; +révoquais révoquer ver 0.82 0.88 0.01 0.00 ind:imp:1s; +révoque révoquer ver 0.82 0.88 0.20 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révoquer révoquer ver 0.82 0.88 0.25 0.14 inf; +révoqué révoquer ver m s 0.82 0.88 0.23 0.20 par:pas; +révoquée révoquer ver f s 0.82 0.88 0.05 0.07 par:pas; +révoquées révoquer ver f p 0.82 0.88 0.00 0.07 par:pas; +révoqués révoquer ver m p 0.82 0.88 0.08 0.27 par:pas; +rêvât rêver ver 122.96 128.18 0.00 0.14 sub:imp:3s; +révèle révéler ver 32.70 60.34 6.32 8.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révèlent révéler ver 32.70 60.34 1.62 2.50 ind:pre:3p; +révèles révéler ver 32.70 60.34 0.14 0.07 ind:pre:2s; +révère révérer ver 0.96 0.95 0.21 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rêvèrent rêver ver 122.96 128.18 0.00 0.34 ind:pas:3p; +révèrent révérer ver 0.96 0.95 0.33 0.07 ind:pre:3p; +rêvé rêver ver m s 122.96 128.18 32.08 20.88 par:pas; +rêvée rêvé adj f s 2.61 3.38 1.62 1.55 +rêvées rêver ver f p 122.96 128.18 0.05 0.07 par:pas; +révéla révéler ver 32.70 60.34 0.66 5.14 ind:pas:3s; +révélai révéler ver 32.70 60.34 0.01 0.41 ind:pas:1s; +révélaient révéler ver 32.70 60.34 0.20 3.18 ind:imp:3p; +révélais révéler ver 32.70 60.34 0.11 0.20 ind:imp:1s;ind:imp:2s; +révélait révéler ver 32.70 60.34 0.65 9.39 ind:imp:3s; +révélant révéler ver 32.70 60.34 0.38 3.11 par:pre; +révélateur révélateur adj m s 1.04 2.91 0.66 1.15 +révélateurs révélateur adj m p 1.04 2.91 0.28 0.41 +révélation révélation nom f s 7.33 20.61 4.66 14.86 +révélations révélation nom f p 7.33 20.61 2.67 5.74 +révélatrice révélateur adj f s 1.04 2.91 0.06 0.95 +révélatrices révélateur adj f p 1.04 2.91 0.04 0.41 +révéler révéler ver 32.70 60.34 10.33 13.31 inf;; +révélera révéler ver 32.70 60.34 0.46 0.34 ind:fut:3s; +révélerai révéler ver 32.70 60.34 0.37 0.07 ind:fut:1s; +révéleraient révéler ver 32.70 60.34 0.06 0.20 cnd:pre:3p; +révélerais révéler ver 32.70 60.34 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +révélerait révéler ver 32.70 60.34 0.14 0.95 cnd:pre:3s; +révéleras révéler ver 32.70 60.34 0.10 0.00 ind:fut:2s; +révélerez révéler ver 32.70 60.34 0.05 0.14 ind:fut:2p; +révélerons révéler ver 32.70 60.34 0.17 0.00 ind:fut:1p; +révéleront révéler ver 32.70 60.34 0.34 0.14 ind:fut:3p; +révélez révéler ver 32.70 60.34 0.38 0.07 imp:pre:2p;ind:pre:2p; +révéliez révéler ver 32.70 60.34 0.06 0.00 ind:imp:2p; +révélons révéler ver 32.70 60.34 0.05 0.00 ind:pre:1p; +révélât révéler ver 32.70 60.34 0.00 0.20 sub:imp:3s; +révulsaient révulser ver 0.44 2.57 0.00 0.27 ind:imp:3p; +révulsait révulser ver 0.44 2.57 0.01 0.41 ind:imp:3s; +révulsant révulser ver 0.44 2.57 0.00 0.07 par:pre; +révulse révulser ver 0.44 2.57 0.35 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révulser révulser ver 0.44 2.57 0.02 0.00 inf; +révulserait révulser ver 0.44 2.57 0.00 0.07 cnd:pre:3s; +révulsif révulsif nom m s 0.00 0.34 0.00 0.34 +révulsifs révulsif adj m p 0.00 0.27 0.00 0.07 +révulsion révulsion nom f s 0.02 0.20 0.02 0.20 +révulsive révulsif adj f s 0.00 0.27 0.00 0.07 +révulsèrent révulser ver 0.44 2.57 0.00 0.14 ind:pas:3p; +révulsé révulser ver m s 0.44 2.57 0.02 0.41 par:pas; +révulsée révulser ver f s 0.44 2.57 0.02 0.20 par:pas; +révulsés révulsé adj m p 0.01 1.08 0.01 0.74 +révélèrent révéler ver 32.70 60.34 0.23 1.22 ind:pas:3p; +révélé révéler ver m s 32.70 60.34 7.86 8.45 par:pas; +révélée révéler ver f s 32.70 60.34 1.22 1.69 par:pas; +révélées révéler ver f p 32.70 60.34 0.38 0.74 par:pas; +révélés révéler ver m p 32.70 60.34 0.36 0.47 par:pas; +révérait révérer ver 0.96 0.95 0.01 0.14 ind:imp:3s; +révérant révérer ver 0.96 0.95 0.09 0.00 par:pre; +révérence révérence nom f s 2.69 6.49 2.45 6.01 +révérences révérence nom f p 2.69 6.49 0.23 0.47 +révérenciel révérenciel adj m s 0.01 0.00 0.01 0.00 +révérencieuse révérencieux adj f s 0.00 0.41 0.00 0.34 +révérencieusement révérencieusement adv 0.00 0.27 0.00 0.27 +révérencieux révérencieux adj m p 0.00 0.41 0.00 0.07 +révérend révérend nom m s 7.64 1.01 7.51 0.95 +révérende révérend adj f s 5.24 0.74 0.90 0.14 +révérendissime révérendissime adj m s 0.00 0.41 0.00 0.41 +révérends révérend nom m p 7.64 1.01 0.14 0.07 +révérer révérer ver 0.96 0.95 0.12 0.07 inf; +révérerait révérer ver 0.96 0.95 0.00 0.07 cnd:pre:3s; +révérons révérer ver 0.96 0.95 0.00 0.07 ind:pre:1p; +révéré révérer ver m s 0.96 0.95 0.07 0.34 par:pas; +révérée révérer ver f s 0.96 0.95 0.14 0.07 par:pas; +rêvés rêver ver m p 122.96 128.18 0.17 0.20 par:pas; +rythmaient rythmer ver 0.47 6.76 0.00 0.34 ind:imp:3p; +rythmait rythmer ver 0.47 6.76 0.00 0.88 ind:imp:3s; +rythmant rythmer ver 0.47 6.76 0.00 0.34 par:pre; +rythme rythme nom m s 20.43 45.95 19.15 42.57 +rythment rythmer ver 0.47 6.76 0.00 0.41 ind:pre:3p; +rythmer rythmer ver 0.47 6.76 0.11 0.81 inf; +rythmera rythmer ver 0.47 6.76 0.00 0.07 ind:fut:3s; +rythmes rythme nom m p 20.43 45.95 1.28 3.38 +rythmique rythmique nom f s 0.26 0.54 0.25 0.47 +rythmiquement rythmiquement adv 0.02 0.20 0.02 0.20 +rythmiques rythmique adj p 0.52 1.15 0.31 0.41 +rythmé rythmé adj m s 0.91 1.96 0.30 0.68 +rythmée rythmé adj f s 0.91 1.96 0.57 0.68 +rythmées rythmé adj f p 0.91 1.96 0.01 0.20 +rythmés rythmé adj m p 0.91 1.96 0.03 0.41 +s s pro_per 2418.95 5391.62 2418.95 5391.62 +sûmes savoir ver_sup 4516.72 2003.58 0.00 0.61 ind:pas:1p; +sûr sûr adj m s 943.56 412.97 801.64 343.51 +sûre sûr adj f s 943.56 412.97 122.03 56.55 +sûrement sûrement adv 133.67 74.12 133.67 74.12 +sûres sûr adj f p 943.56 412.97 2.47 2.91 +sûreté sûreté nom f s 7.04 10.07 7.01 9.86 +sûretés sûreté nom f p 7.04 10.07 0.03 0.20 +sûrs sûr adj m p 943.56 412.97 17.43 10.00 +sût savoir ver_sup 4516.72 2003.58 0.08 6.62 sub:imp:3s; +sa sa adj_pos 1276.29 3732.43 1276.29 3732.43 +saï saï nom m s 0.01 0.47 0.01 0.47 +sabayon sabayon nom m s 0.30 0.27 0.30 0.07 +sabayons sabayon nom m p 0.30 0.27 0.00 0.20 +sabbat sabbat nom m s 3.28 2.77 3.14 2.77 +sabbatique sabbatique adj s 0.78 0.47 0.76 0.41 +sabbatiques sabbatique adj f p 0.78 0.47 0.02 0.07 +sabbats sabbat nom m p 3.28 2.77 0.14 0.00 +sabelles sabelle nom f p 0.00 0.07 0.00 0.07 +sabin sabin adj s 0.00 0.41 0.00 0.27 +sabines sabine nom f p 0.00 0.14 0.00 0.14 +sabins sabin adj m p 0.00 0.41 0.00 0.14 +sabir sabir nom m s 0.00 0.74 0.00 0.74 +sabla sabler ver 0.28 1.42 0.00 0.20 ind:pas:3s; +sablaient sabler ver 0.28 1.42 0.00 0.07 ind:imp:3p; +sablait sabler ver 0.28 1.42 0.00 0.14 ind:imp:3s; +sablant sabler ver 0.28 1.42 0.01 0.14 par:pre; +sable sable nom m s 25.23 96.55 23.14 87.91 +sabler sabler ver 0.28 1.42 0.16 0.27 inf; +sablera sabler ver 0.28 1.42 0.01 0.07 ind:fut:3s; +sablerais sabler ver 0.28 1.42 0.00 0.07 cnd:pre:1s; +sables sable nom m p 25.23 96.55 2.09 8.65 +sableuse sableux adj f s 0.23 1.01 0.21 0.41 +sableuses sableux adj f p 0.23 1.01 0.00 0.14 +sableux sableux adj m 0.23 1.01 0.03 0.47 +sablez sabler ver 0.28 1.42 0.02 0.07 imp:pre:2p;ind:pre:2p; +sablier sablier nom m s 1.18 3.11 1.03 2.64 +sabliers sablier nom m p 1.18 3.11 0.14 0.47 +sablière sablière nom f s 0.01 0.47 0.01 0.27 +sablières sablière nom f p 0.01 0.47 0.00 0.20 +sablonneuse sablonneux adj f s 0.06 3.92 0.00 1.76 +sablonneuses sablonneux adj f p 0.06 3.92 0.03 0.41 +sablonneux sablonneux adj m 0.06 3.92 0.03 1.76 +sablons sablon nom m p 0.00 0.20 0.00 0.20 +sablé sablé adj m s 0.40 0.68 0.14 0.14 +sablée sabler ver f s 0.28 1.42 0.01 0.14 par:pas; +sablées sablé adj f p 0.40 0.68 0.00 0.07 +sablés sablé adj m p 0.40 0.68 0.25 0.34 +sabord sabord nom m s 0.17 1.89 0.03 1.28 +sabordage sabordage nom m s 0.02 0.20 0.02 0.20 +sabordait saborder ver 0.74 1.42 0.01 0.07 ind:imp:3s; +saborde saborder ver 0.74 1.42 0.07 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sabordent saborder ver 0.74 1.42 0.02 0.00 ind:pre:3p; +saborder saborder ver 0.74 1.42 0.45 0.47 inf; +sabordez saborder ver 0.74 1.42 0.04 0.00 imp:pre:2p;ind:pre:2p; +sabords sabord nom m p 0.17 1.89 0.14 0.61 +sabordé saborder ver m s 0.74 1.42 0.14 0.34 par:pas; +sabordée saborder ver f s 0.74 1.42 0.01 0.07 par:pas; +sabordés saborder ver m p 0.74 1.42 0.01 0.27 par:pas; +sabot sabot nom m s 4.95 24.66 1.79 5.74 +sabotage sabotage nom m s 4.69 2.97 4.32 2.30 +sabotages sabotage nom m p 4.69 2.97 0.37 0.68 +sabotais saboter ver 6.25 2.77 0.02 0.07 ind:imp:1s; +sabotait saboter ver 6.25 2.77 0.04 0.34 ind:imp:3s; +sabotant saboter ver 6.25 2.77 0.03 0.00 par:pre; +sabote saboter ver 6.25 2.77 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sabotent saboter ver 6.25 2.77 0.14 0.14 ind:pre:3p; +saboter saboter ver 6.25 2.77 2.84 1.22 inf; +saboterai saboter ver 6.25 2.77 0.02 0.00 ind:fut:1s; +saboterait saboter ver 6.25 2.77 0.01 0.07 cnd:pre:3s; +saboterie saboterie nom f s 0.00 0.07 0.00 0.07 +saboteront saboter ver 6.25 2.77 0.01 0.00 ind:fut:3p; +saboteur saboteur nom m s 1.15 0.54 0.66 0.14 +saboteurs saboteur nom m p 1.15 0.54 0.48 0.41 +saboteuse saboteur nom f s 1.15 0.54 0.01 0.00 +sabotez saboter ver 6.25 2.77 0.38 0.00 ind:pre:2p; +sabotier sabotier nom m s 0.00 0.61 0.00 0.41 +sabotiers sabotier nom m p 0.00 0.61 0.00 0.20 +sabotons saboter ver 6.25 2.77 0.02 0.07 imp:pre:1p;ind:pre:1p; +sabots sabot nom m p 4.95 24.66 3.16 18.92 +saboté saboter ver m s 6.25 2.77 2.05 0.41 par:pas; +sabotée saboter ver f s 6.25 2.77 0.13 0.14 par:pas; +sabotées saboter ver f p 6.25 2.77 0.01 0.14 par:pas; +sabotés saboter ver m p 6.25 2.77 0.22 0.07 par:pas; +saboule sabouler ver 0.00 0.41 0.00 0.07 ind:pre:3s; +saboulent sabouler ver 0.00 0.41 0.00 0.07 ind:pre:3p; +sabouler sabouler ver 0.00 0.41 0.00 0.07 inf; +saboulé sabouler ver m s 0.00 0.41 0.00 0.07 par:pas; +saboulés sabouler ver m p 0.00 0.41 0.00 0.14 par:pas; +sabra sabra nom m s 0.12 0.00 0.12 0.00 +sabrait sabrer ver 0.39 3.04 0.00 0.54 ind:imp:3s; +sabrant sabrer ver 0.39 3.04 0.01 0.14 par:pre; +sabre sabre nom m s 6.95 17.03 5.44 13.85 +sabrent sabrer ver 0.39 3.04 0.00 0.07 ind:pre:3p; +sabrer sabrer ver 0.39 3.04 0.11 0.41 inf; +sabrerai sabrer ver 0.39 3.04 0.00 0.07 ind:fut:1s; +sabreraient sabrer ver 0.39 3.04 0.00 0.07 cnd:pre:3p; +sabrerais sabrer ver 0.39 3.04 0.01 0.00 cnd:pre:2s; +sabreras sabrer ver 0.39 3.04 0.00 0.07 ind:fut:2s; +sabrerons sabrer ver 0.39 3.04 0.00 0.07 ind:fut:1p; +sabres sabre nom m p 6.95 17.03 1.50 3.18 +sabretache sabretache nom f s 0.00 0.27 0.00 0.20 +sabretaches sabretache nom f p 0.00 0.27 0.00 0.07 +sabreur sabreur nom m s 0.14 0.47 0.00 0.27 +sabreurs sabreur nom m p 0.14 0.47 0.14 0.20 +sabrez sabrer ver 0.39 3.04 0.03 0.00 imp:pre:2p; +sabré sabrer ver m s 0.39 3.04 0.17 0.34 par:pas; +sabrée sabrer ver f s 0.39 3.04 0.00 0.07 par:pas; +sabrées sabrer ver f p 0.39 3.04 0.00 0.20 par:pas; +sabrés sabrer ver m p 0.39 3.04 0.01 0.07 par:pas; +sabéen sabéen adj m s 0.01 0.00 0.01 0.00 +sabéenne sabéenne adj f s 0.05 0.00 0.05 0.00 +sac_poubelle sac_poubelle nom m s 0.24 0.41 0.19 0.34 +sac sac nom m s 124.60 174.26 105.96 125.47 +saccade saccader ver 0.04 1.96 0.01 0.07 ind:pre:3s; +saccader saccader ver 0.04 1.96 0.00 0.07 inf; +saccades saccade nom f p 0.01 6.15 0.01 5.68 +saccadé saccadé adj m s 1.17 5.20 0.21 1.69 +saccadée saccadé adj f s 1.17 5.20 0.44 1.82 +saccadées saccadé adj f p 1.17 5.20 0.01 0.47 +saccadés saccadé adj m p 1.17 5.20 0.51 1.22 +saccage saccager ver 4.00 6.69 0.29 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saccagea saccager ver 4.00 6.69 0.10 0.27 ind:pas:3s; +saccageaient saccager ver 4.00 6.69 0.00 0.14 ind:imp:3p; +saccageais saccager ver 4.00 6.69 0.00 0.07 ind:imp:1s; +saccageait saccager ver 4.00 6.69 0.01 0.27 ind:imp:3s; +saccageant saccager ver 4.00 6.69 0.13 0.27 par:pre; +saccagent saccager ver 4.00 6.69 0.15 0.07 ind:pre:3p; +saccageons saccager ver 4.00 6.69 0.02 0.00 imp:pre:1p; +saccager saccager ver 4.00 6.69 0.82 1.69 inf; +saccageraient saccager ver 4.00 6.69 0.01 0.00 cnd:pre:3p; +saccages saccager ver 4.00 6.69 0.02 0.00 ind:pre:2s; +saccageurs saccageur nom m p 0.00 0.07 0.00 0.07 +saccagez saccager ver 4.00 6.69 0.04 0.00 imp:pre:2p;ind:pre:2p; +saccagiez saccager ver 4.00 6.69 0.01 0.07 ind:imp:2p; +saccagne saccagne nom f s 0.00 0.68 0.00 0.68 +saccagèrent saccager ver 4.00 6.69 0.00 0.14 ind:pas:3p; +saccagé saccager ver m s 4.00 6.69 1.81 1.96 par:pas; +saccagée saccager ver f s 4.00 6.69 0.58 0.68 par:pas; +saccagées saccager ver f p 4.00 6.69 0.00 0.27 par:pas; +saccagés saccager ver m p 4.00 6.69 0.00 0.61 par:pas; +saccharine saccharine nom f s 0.09 0.54 0.09 0.54 +saccharomyces saccharomyces nom m p 0.01 0.00 0.01 0.00 +saccharose saccharose nom m s 0.04 0.00 0.04 0.00 +sacculine sacculine nom f s 0.03 0.00 0.02 0.00 +sacculines sacculine nom f p 0.03 0.00 0.01 0.00 +sacerdoce sacerdoce nom m s 0.77 0.74 0.76 0.74 +sacerdoces sacerdoce nom m p 0.77 0.74 0.01 0.00 +sacerdotal sacerdotal adj m s 0.31 0.81 0.03 0.27 +sacerdotale sacerdotal adj f s 0.31 0.81 0.01 0.27 +sacerdotales sacerdotal adj f p 0.31 0.81 0.14 0.20 +sacerdotaux sacerdotal adj m p 0.31 0.81 0.14 0.07 +sachant savoir ver_sup 4516.72 2003.58 14.39 34.59 par:pre; +sache savoir ver_sup 4516.72 2003.58 54.06 27.09 imp:pre:2s;sub:pre:1s;sub:pre:3s; +sachem sachem nom m s 0.05 0.07 0.05 0.07 +sachent savoir ver_sup 4516.72 2003.58 6.46 3.04 sub:pre:3p; +saches savoir ver_sup 4516.72 2003.58 17.03 3.04 sub:pre:2s; +sachet sachet nom m s 4.38 5.41 2.84 2.09 +sachets sachet nom m p 4.38 5.41 1.53 3.31 +sachez savoir ver_sup 4516.72 2003.58 13.07 5.20 imp:pre:2p; +sachiez savoir ver_sup 4516.72 2003.58 8.97 2.30 sub:pre:2p; +sachions savoir ver_sup 4516.72 2003.58 0.94 0.88 sub:pre:1p; +sachons savoir ver_sup 4516.72 2003.58 0.14 0.27 imp:pre:1p; +sacoche sacoche nom f s 3.16 6.82 2.79 4.80 +sacoches sacoche nom f p 3.16 6.82 0.37 2.03 +sacqua sacquer ver 0.20 0.34 0.00 0.07 ind:pas:3s; +sacquais sacquer ver 0.20 0.34 0.00 0.07 ind:imp:1s; +sacquant sacquer ver 0.20 0.34 0.00 0.07 par:pre; +sacque sacquer ver 0.20 0.34 0.03 0.00 imp:pre:2s;ind:pre:3s; +sacquer sacquer ver 0.20 0.34 0.12 0.14 inf; +sacqué sacquer ver m s 0.20 0.34 0.05 0.00 par:pas; +sacra sacrer ver 25.16 16.82 0.14 0.34 ind:pas:3s; +sacrait sacrer ver 25.16 16.82 0.00 0.20 ind:imp:3s; +sacralisation sacralisation nom f s 0.00 0.07 0.00 0.07 +sacralisés sacraliser ver m p 0.00 0.07 0.00 0.07 par:pas; +sacramentel sacramentel adj m s 0.00 0.47 0.00 0.20 +sacramentelle sacramentel adj f s 0.00 0.47 0.00 0.20 +sacramentelles sacramentel adj f p 0.00 0.47 0.00 0.07 +sacrant sacrer ver 25.16 16.82 0.00 0.41 par:pre; +sacre sacre nom m s 0.75 0.74 0.73 0.61 +sacrebleu sacrebleu ono 0.94 0.61 0.94 0.61 +sacredieu sacredieu ono 0.33 0.00 0.33 0.00 +sacrement sacrement nom m s 2.45 4.93 1.58 2.57 +sacrements sacrement nom m p 2.45 4.93 0.88 2.36 +sacrer sacrer ver 25.16 16.82 0.06 0.00 inf; +sacrera sacrer ver 25.16 16.82 0.01 0.00 ind:fut:3s; +sacrerai sacrer ver 25.16 16.82 0.00 0.07 ind:fut:1s; +sacres sacrer ver 25.16 16.82 0.03 0.00 ind:pre:2s;sub:pre:2s; +sacret sacret nom m s 0.03 0.00 0.03 0.00 +sacrifia sacrifier ver 25.67 20.20 0.30 0.47 ind:pas:3s; +sacrifiaient sacrifier ver 25.67 20.20 0.06 0.61 ind:imp:3p; +sacrifiais sacrifier ver 25.67 20.20 0.04 0.07 ind:imp:1s;ind:imp:2s; +sacrifiait sacrifier ver 25.67 20.20 0.28 1.15 ind:imp:3s; +sacrifiant sacrifier ver 25.67 20.20 0.66 1.01 par:pre; +sacrificateur sacrificateur nom m s 0.02 1.22 0.00 0.88 +sacrificateurs sacrificateur nom m p 0.02 1.22 0.02 0.34 +sacrifice sacrifice nom m s 23.11 26.08 15.90 16.96 +sacrifices sacrifice nom m p 23.11 26.08 7.21 9.12 +sacrificiel sacrificiel adj m s 0.25 0.74 0.21 0.41 +sacrificielle sacrificiel adj f s 0.25 0.74 0.04 0.27 +sacrificiels sacrificiel adj m p 0.25 0.74 0.00 0.07 +sacrifie sacrifier ver 25.67 20.20 2.49 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sacrifient sacrifier ver 25.67 20.20 0.22 0.14 ind:pre:3p; +sacrifier sacrifier ver 25.67 20.20 9.05 7.36 inf; +sacrifiera sacrifier ver 25.67 20.20 0.17 0.27 ind:fut:3s; +sacrifierai sacrifier ver 25.67 20.20 0.43 0.00 ind:fut:1s; +sacrifieraient sacrifier ver 25.67 20.20 0.05 0.00 cnd:pre:3p; +sacrifierais sacrifier ver 25.67 20.20 0.56 0.00 cnd:pre:1s;cnd:pre:2s; +sacrifierait sacrifier ver 25.67 20.20 0.13 0.07 cnd:pre:3s; +sacrifieras sacrifier ver 25.67 20.20 0.02 0.00 ind:fut:2s; +sacrifierez sacrifier ver 25.67 20.20 0.04 0.00 ind:fut:2p; +sacrifieriez sacrifier ver 25.67 20.20 0.07 0.07 cnd:pre:2p; +sacrifierions sacrifier ver 25.67 20.20 0.10 0.00 cnd:pre:1p; +sacrifierons sacrifier ver 25.67 20.20 0.16 0.00 ind:fut:1p; +sacrifies sacrifier ver 25.67 20.20 0.55 0.07 ind:pre:2s; +sacrifiez sacrifier ver 25.67 20.20 0.55 0.14 imp:pre:2p;ind:pre:2p; +sacrifiiez sacrifier ver 25.67 20.20 0.00 0.07 ind:imp:2p; +sacrifions sacrifier ver 25.67 20.20 0.55 0.07 imp:pre:1p;ind:pre:1p; +sacrifiât sacrifier ver 25.67 20.20 0.00 0.07 sub:imp:3s; +sacrifièrent sacrifier ver 25.67 20.20 0.04 0.14 ind:pas:3p; +sacrifié sacrifier ver m s 25.67 20.20 5.98 4.26 par:pas; +sacrifiée sacrifier ver f s 25.67 20.20 1.94 1.22 par:pas; +sacrifiées sacrifier ver f p 25.67 20.20 0.34 0.34 par:pas; +sacrifiés sacrifier ver m p 25.67 20.20 0.89 0.68 par:pas; +sacrilège sacrilège nom m s 1.93 3.24 1.69 2.64 +sacrilèges sacrilège nom m p 1.93 3.24 0.25 0.61 +sacripant sacripant nom m s 0.47 0.47 0.47 0.27 +sacripants sacripant nom m p 0.47 0.47 0.00 0.20 +sacristain sacristain nom m s 1.38 3.92 1.25 3.72 +sacristaine sacristain nom f s 1.38 3.92 0.00 0.07 +sacristaines sacristaine nom f p 0.14 0.00 0.14 0.00 +sacristains sacristain nom m p 1.38 3.92 0.14 0.14 +sacristie sacristie nom f s 1.23 4.39 1.13 3.65 +sacristies sacristie nom f p 1.23 4.39 0.10 0.74 +sacristine sacristine nom f s 0.10 0.07 0.10 0.07 +sacro_iliaque sacro_iliaque adj s 0.03 0.00 0.02 0.00 +sacro_iliaque sacro_iliaque adj f p 0.03 0.00 0.01 0.00 +sacro_saint sacro_saint adj m s 0.65 1.35 0.21 0.68 +sacro_saint sacro_saint adj f s 0.65 1.35 0.41 0.47 +sacro_saint sacro_saint adj f p 0.65 1.35 0.00 0.14 +sacro_saint sacro_saint adj m p 0.65 1.35 0.02 0.07 +sacro sacro adv 0.11 0.68 0.11 0.68 +sacré_coeur sacré_coeur nom m s 0.00 0.20 0.00 0.20 +sacré sacré adj m s 56.88 45.20 29.19 20.47 +sacrédié sacrédié ono 0.00 0.07 0.00 0.07 +sacrée sacré adj f s 56.88 45.20 20.68 16.55 +sacrées sacré adj f p 56.88 45.20 2.11 2.43 +sacrum sacrum nom m s 0.04 0.07 0.04 0.07 +sacrément sacrément adv 6.01 2.16 6.01 2.16 +sacrés sacré adj m p 56.88 45.20 4.90 5.74 +sac_poubelle sac_poubelle nom m p 0.24 0.41 0.06 0.07 +sacs sac nom m p 124.60 174.26 18.64 48.78 +sadducéen sadducéen nom m s 0.00 0.07 0.00 0.07 +sadienne sadien adj f s 0.00 0.07 0.00 0.07 +sadique sadique nom s 2.89 2.30 2.23 1.49 +sadiquement sadiquement adv 0.01 0.20 0.01 0.20 +sadiques sadique nom p 2.89 2.30 0.66 0.81 +sadisme sadisme nom m s 0.36 1.96 0.36 1.89 +sadismes sadisme nom m p 0.36 1.96 0.00 0.07 +sado sado adj m s 0.37 0.00 0.37 0.00 +sadomasochisme sadomasochisme nom m s 0.02 0.00 0.02 0.00 +sadomasochiste sadomasochiste adj s 0.13 0.07 0.13 0.07 +sados sado nom p 0.00 0.07 0.00 0.07 +saducéen saducéen nom m s 0.02 0.14 0.02 0.14 +safari_photo safari_photo nom m s 0.01 0.00 0.01 0.00 +safari safari nom m s 1.77 1.28 1.58 0.88 +safaris safari nom m p 1.77 1.28 0.20 0.41 +safran safran nom m s 0.38 1.89 0.38 1.89 +safrane safraner ver 0.14 0.00 0.14 0.00 ind:pre:3s; +safrané safrané adj m s 0.00 0.14 0.00 0.14 +saga saga nom f s 0.95 1.01 0.73 0.81 +sagace sagace adj s 0.11 1.55 0.09 0.95 +sagaces sagace adj p 0.11 1.55 0.02 0.61 +sagacité sagacité nom f s 0.09 1.42 0.09 1.42 +sagaie sagaie nom f s 0.14 0.41 0.01 0.07 +sagaies sagaie nom f p 0.14 0.41 0.13 0.34 +sagard sagard nom m s 0.00 0.07 0.00 0.07 +sagas saga nom f p 0.95 1.01 0.22 0.20 +sage_femme sage_femme nom f s 1.52 1.22 1.35 1.22 +sage sage adj s 39.09 31.15 31.93 23.45 +sagement sagement adv 2.39 9.46 2.39 9.46 +sage_femme sage_femme nom f p 1.52 1.22 0.17 0.00 +sages sage adj p 39.09 31.15 7.17 7.70 +sagesse sagesse nom f s 13.58 21.55 13.56 21.42 +sagesses sagesse nom f p 13.58 21.55 0.02 0.14 +sagettes sagette nom f p 0.00 0.07 0.00 0.07 +sagittaire sagittaire nom s 0.16 0.14 0.14 0.00 +sagittaires sagittaire nom p 0.16 0.14 0.02 0.14 +sagittal sagittal adj m s 0.07 0.00 0.04 0.00 +sagittale sagittal adj f s 0.07 0.00 0.03 0.00 +sagouin sagouin nom m s 0.35 1.22 0.34 1.08 +sagouins sagouin nom m p 0.35 1.22 0.01 0.14 +sagoutier sagoutier nom m s 0.00 0.14 0.00 0.14 +sagum sagum nom m s 0.00 0.07 0.00 0.07 +saharien saharien adj m s 0.02 1.55 0.01 0.41 +saharienne saharien nom f s 0.62 0.74 0.61 0.41 +sahariennes saharien adj f p 0.02 1.55 0.01 0.41 +sahariens saharien adj m p 0.02 1.55 0.00 0.34 +sahib sahib nom m s 1.63 0.07 1.61 0.07 +sahibs sahib nom m p 1.63 0.07 0.02 0.00 +saie saie nom f s 0.04 0.00 0.04 0.00 +saigna saigner ver 34.86 21.82 0.00 0.27 ind:pas:3s; +saignaient saigner ver 34.86 21.82 0.16 1.08 ind:imp:3p; +saignais saigner ver 34.86 21.82 0.45 0.20 ind:imp:1s;ind:imp:2s; +saignait saigner ver 34.86 21.82 1.66 3.31 ind:imp:3s; +saignant saignant adj m s 1.94 4.32 1.25 1.55 +saignante saignant adj f s 1.94 4.32 0.26 1.08 +saignantes saignant adj f p 1.94 4.32 0.04 0.81 +saignants saignant adj m p 1.94 4.32 0.39 0.88 +saignasse saigner ver 34.86 21.82 0.00 0.07 sub:imp:1s; +saigne saigner ver 34.86 21.82 14.30 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saignement saignement nom m s 2.67 0.54 1.81 0.34 +saignements saignement nom m p 2.67 0.54 0.86 0.20 +saignent saigner ver 34.86 21.82 1.30 0.74 ind:pre:3p; +saigner saigner ver 34.86 21.82 7.63 6.01 inf; +saignera saigner ver 34.86 21.82 0.28 0.14 ind:fut:3s; +saignerai saigner ver 34.86 21.82 0.09 0.00 ind:fut:1s; +saignerais saigner ver 34.86 21.82 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +saignerait saigner ver 34.86 21.82 0.02 0.20 cnd:pre:3s; +saigneras saigner ver 34.86 21.82 0.03 0.00 ind:fut:2s; +saignerez saigner ver 34.86 21.82 0.02 0.00 ind:fut:2p; +saigneront saigner ver 34.86 21.82 0.03 0.07 ind:fut:3p; +saignes saigner ver 34.86 21.82 3.23 0.34 ind:pre:2s; +saigneur saigneur nom m s 0.02 0.07 0.02 0.07 +saignez saigner ver 34.86 21.82 1.50 0.07 imp:pre:2p;ind:pre:2p; +saigniez saigner ver 34.86 21.82 0.07 0.00 ind:imp:2p; +saignons saigner ver 34.86 21.82 0.07 0.00 imp:pre:1p;ind:pre:1p; +saigné saigner ver m s 34.86 21.82 2.87 2.09 par:pas; +saignée saignée nom f s 0.59 2.84 0.56 2.36 +saignées saigner ver f p 34.86 21.82 0.14 0.00 par:pas; +saignés saigner ver m p 34.86 21.82 0.35 0.41 par:pas; +saillaient saillir ver 0.04 6.82 0.00 1.35 ind:imp:3p; +saillait saillir ver 0.04 6.82 0.00 0.81 ind:imp:3s; +saillant saillant adj m s 0.18 10.07 0.07 1.76 +saillante saillant adj f s 0.18 10.07 0.02 0.95 +saillantes saillant adj f p 0.18 10.07 0.05 4.59 +saillants saillant adj m p 0.18 10.07 0.04 2.77 +saille saillir ver 0.04 6.82 0.00 0.14 ind:pre:3s; +saillent saillir ver 0.04 6.82 0.01 0.27 ind:pre:3p; +sailli saillir ver m s 0.04 6.82 0.00 0.27 par:pas; +saillie saillie nom f s 0.68 5.54 0.61 3.24 +saillies saillie nom f p 0.68 5.54 0.06 2.30 +saillir saillir ver 0.04 6.82 0.01 2.64 inf; +saillissent saillir ver 0.04 6.82 0.02 0.07 sub:imp:3p; +saillit saillir ver 0.04 6.82 0.00 0.07 ind:pas:3s; +sain sain adj m s 26.61 18.65 13.89 8.58 +saindoux saindoux nom m 0.68 9.80 0.68 9.80 +saine sain adj f s 26.61 18.65 6.96 6.15 +sainement sainement adv 0.47 0.47 0.47 0.47 +saines sain adj f p 26.61 18.65 1.35 2.09 +sainfoin sainfoin nom m s 0.00 0.81 0.00 0.74 +sainfoins sainfoin nom m p 0.00 0.81 0.00 0.07 +sains sain adj m p 26.61 18.65 4.42 1.82 +saint_bernard saint_bernard nom m 0.17 0.68 0.17 0.68 +saint_crépin saint_crépin nom m 0.05 0.00 0.05 0.00 +saint_cyrien saint_cyrien nom m s 0.00 1.01 0.00 0.68 +saint_cyrien saint_cyrien nom m p 0.00 1.01 0.00 0.34 +saint_esprit saint_esprit nom m 0.20 0.47 0.20 0.47 +saint_frusquin saint_frusquin nom m 0.17 0.74 0.17 0.74 +saint_germain saint_germain nom m 0.00 0.34 0.00 0.34 +saint_glinglin saint_glinglin nom f s 0.01 0.07 0.01 0.07 +saint_guy saint_guy nom m 0.03 0.00 0.03 0.00 +saint_honoré saint_honoré nom m 0.14 0.20 0.14 0.20 +saint_hubert saint_hubert nom f s 0.00 0.07 0.00 0.07 +saint_michel saint_michel nom s 0.00 0.07 0.00 0.07 +saint_nectaire saint_nectaire nom m 0.00 0.14 0.00 0.14 +saint_paulin saint_paulin nom m 0.00 0.34 0.00 0.34 +saint_pierre saint_pierre nom m 0.16 0.20 0.16 0.20 +saint_père saint_père nom m s 0.14 2.16 0.14 0.20 +saint_siège saint_siège nom m s 0.30 1.28 0.30 1.28 +saint_synode saint_synode nom m s 0.00 0.07 0.00 0.07 +saint_émilion saint_émilion nom m 0.00 0.41 0.00 0.41 +saint saint nom s 39.23 63.31 12.37 35.88 +sainte_nitouche sainte_nitouche nom f s 0.46 0.20 0.35 0.20 +sainte_nitouche sainte_nitouche nom f s 0.51 0.14 0.51 0.14 +sainte saint nom f s 39.23 63.31 17.17 11.89 +saintement saintement adv 0.00 0.20 0.00 0.20 +sainte_nitouche sainte_nitouche nom f p 0.46 0.20 0.11 0.00 +saintes saint adj f p 23.22 42.77 2.30 4.39 +sainteté sainteté nom f s 4.74 5.54 4.64 5.41 +saintetés sainteté nom f p 4.74 5.54 0.10 0.14 +saint_père saint_père nom m p 0.14 2.16 0.00 1.96 +saints saint nom m p 39.23 63.31 9.69 14.46 +sais savoir ver_sup 4516.72 2003.58 2492.92 615.27 ind:pre:1s;ind:pre:2s; +saisît saisir ver 36.81 135.74 0.00 0.41 sub:imp:3s; +saisi saisir ver m s 36.81 135.74 10.15 25.54 par:pas; +saisie_arrêt saisie_arrêt nom f s 0.00 0.20 0.00 0.20 +saisie saisie nom f s 2.75 1.62 1.73 1.42 +saisies saisie nom f p 2.75 1.62 1.02 0.20 +saisir saisir ver 36.81 135.74 9.40 33.78 inf; +saisira saisir ver 36.81 135.74 0.40 0.34 ind:fut:3s; +saisirai saisir ver 36.81 135.74 0.17 0.07 ind:fut:1s; +saisirais saisir ver 36.81 135.74 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +saisirait saisir ver 36.81 135.74 0.03 0.47 cnd:pre:3s; +saisiras saisir ver 36.81 135.74 0.03 0.20 ind:fut:2s; +saisirent saisir ver 36.81 135.74 0.14 1.15 ind:pas:3p; +saisirez saisir ver 36.81 135.74 0.03 0.00 ind:fut:2p; +saisirions saisir ver 36.81 135.74 0.00 0.07 cnd:pre:1p; +saisirons saisir ver 36.81 135.74 0.04 0.20 ind:fut:1p; +saisiront saisir ver 36.81 135.74 0.04 0.07 ind:fut:3p; +saisis saisir ver m p 36.81 135.74 8.34 10.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +saisissable saisissable adj s 0.00 0.20 0.00 0.14 +saisissables saisissable adj p 0.00 0.20 0.00 0.07 +saisissaient saisir ver 36.81 135.74 0.01 1.42 ind:imp:3p; +saisissais saisir ver 36.81 135.74 0.16 0.81 ind:imp:1s;ind:imp:2s; +saisissait saisir ver 36.81 135.74 0.05 7.09 ind:imp:3s; +saisissant saisissant adj m s 0.61 5.00 0.33 2.23 +saisissante saisissant adj f s 0.61 5.00 0.11 2.43 +saisissantes saisissant adj f p 0.61 5.00 0.04 0.20 +saisissants saisissant adj m p 0.61 5.00 0.13 0.14 +saisisse saisir ver 36.81 135.74 0.19 0.47 sub:pre:1s;sub:pre:3s; +saisissement saisissement nom m s 0.14 1.96 0.14 1.89 +saisissements saisissement nom m p 0.14 1.96 0.00 0.07 +saisissent saisir ver 36.81 135.74 0.20 1.49 ind:pre:3p; +saisisses saisir ver 36.81 135.74 0.09 0.07 sub:pre:2s; +saisissez saisir ver 36.81 135.74 2.84 0.47 imp:pre:2p;ind:pre:2p; +saisissiez saisir ver 36.81 135.74 0.13 0.00 ind:imp:2p; +saisissions saisir ver 36.81 135.74 0.01 0.20 ind:imp:1p; +saisissons saisir ver 36.81 135.74 0.25 0.14 imp:pre:1p;ind:pre:1p; +saisit saisir ver 36.81 135.74 2.39 36.69 ind:pre:3s;ind:pas:3s; +saison saison nom f s 31.95 49.59 28.72 35.54 +saisonnier saisonnier adj m s 0.55 1.42 0.17 0.54 +saisonniers saisonnier nom m p 0.44 0.27 0.43 0.07 +saisonnière saisonnier adj f s 0.55 1.42 0.16 0.07 +saisonnières saisonnier adj f p 0.55 1.42 0.04 0.41 +saisons saison nom f p 31.95 49.59 3.23 14.05 +sait savoir ver_sup 4516.72 2003.58 401.46 245.00 ind:pre:3s; +saki saki nom m s 0.05 0.00 0.05 0.00 +saké saké nom m s 2.55 0.61 2.55 0.54 +sakés saké nom m p 2.55 0.61 0.00 0.07 +sala saler ver 7.65 6.35 0.10 0.20 ind:pas:3s; +salace salace adj s 0.55 1.28 0.33 0.47 +salaces salace adj p 0.55 1.28 0.21 0.81 +salacité salacité nom f s 0.00 0.20 0.00 0.14 +salacités salacité nom f p 0.00 0.20 0.00 0.07 +salade salade nom f s 21.80 24.26 15.88 15.41 +salader salader ver 0.00 0.07 0.00 0.07 inf; +salades salade nom f p 21.80 24.26 5.92 8.85 +saladier saladier nom m s 0.77 2.43 0.68 2.30 +saladiers saladier nom m p 0.77 2.43 0.09 0.14 +salaient saler ver 7.65 6.35 0.01 0.07 ind:imp:3p; +salaire salaire nom m s 26.43 12.50 22.99 8.92 +salaires salaire nom m p 26.43 12.50 3.44 3.58 +salaison salaison nom f s 0.14 1.22 0.14 0.27 +salaisons salaison nom f p 0.14 1.22 0.00 0.95 +salait saler ver 7.65 6.35 0.01 0.14 ind:imp:3s; +salam salam nom m s 0.03 0.00 0.03 0.00 +salamalec salamalec nom m s 0.32 1.49 0.00 0.41 +salamalecs salamalec nom m p 0.32 1.49 0.32 1.08 +salamandre salamandre nom f s 0.50 1.62 0.48 1.35 +salamandres salamandre nom f p 0.50 1.62 0.01 0.27 +salami salami nom m s 2.06 0.47 2.04 0.34 +salamis salami nom m p 2.06 0.47 0.02 0.14 +salanque salanque nom f s 0.00 0.07 0.00 0.07 +salant salant adj m s 0.07 1.01 0.02 0.20 +salants salant adj m p 0.07 1.01 0.05 0.81 +salariait salarier ver 0.38 0.07 0.00 0.07 ind:imp:3s; +salariale salarial adj f s 0.18 0.00 0.17 0.00 +salariat salariat nom m s 0.00 0.27 0.00 0.27 +salariaux salarial adj m p 0.18 0.00 0.01 0.00 +salarier salarier ver 0.38 0.07 0.14 0.00 inf; +salarié salarié adj m s 0.39 0.20 0.20 0.14 +salariée salarié nom f s 0.52 0.95 0.12 0.07 +salariés salarié nom m p 0.52 0.95 0.28 0.20 +salas saler ver 7.65 6.35 1.37 0.00 ind:pas:2s; +salat salat nom f s 0.03 0.00 0.03 0.00 +salaud salaud nom m s 87.40 37.84 66.74 24.86 +salauds salaud nom m p 87.40 37.84 20.66 12.97 +salazariste salazariste adj s 0.00 0.07 0.00 0.07 +sale sale adj s 146.86 102.03 120.13 74.86 +salement salement adv 2.28 6.01 2.28 6.01 +saler saler ver 7.65 6.35 0.30 0.41 inf; +salera saler ver 7.65 6.35 0.00 0.07 ind:fut:3s; +sales sale adj p 146.86 102.03 26.73 27.16 +saleté saleté nom f s 17.55 12.91 11.96 9.66 +saletés saleté nom f p 17.55 12.91 5.59 3.24 +saleur saleur nom m s 0.00 0.07 0.00 0.07 +salez saler ver 7.65 6.35 0.11 0.14 imp:pre:2p;ind:pre:2p; +sali salir ver m s 17.51 15.95 2.66 2.36 par:pas; +salicaires salicaire nom f p 0.00 0.07 0.00 0.07 +salicine salicine nom f s 0.10 0.00 0.10 0.00 +salicole salicole adj s 0.00 0.07 0.00 0.07 +salicorne salicorne nom f s 0.00 0.07 0.00 0.07 +salie salir ver f s 17.51 15.95 2.12 1.42 par:pas; +salies salir ver f p 17.51 15.95 0.10 0.74 par:pas; +saligaud saligaud nom m s 3.36 1.01 2.46 0.95 +saligauds saligaud nom m p 3.36 1.01 0.90 0.07 +salin salin adj m s 0.31 1.01 0.01 0.61 +saline salin adj f s 0.31 1.01 0.28 0.14 +salines salin nom f p 0.02 2.16 0.02 2.09 +salingue salingue adj m s 0.00 2.03 0.00 1.55 +salingues salingue adj p 0.00 2.03 0.00 0.47 +salinité salinité nom f s 0.06 0.07 0.06 0.07 +salins salin nom m p 0.02 2.16 0.00 0.07 +salique salique adj f s 0.06 0.14 0.06 0.14 +salir salir ver 17.51 15.95 6.81 6.08 inf; +salira salir ver 17.51 15.95 0.06 0.00 ind:fut:3s; +salirai salir ver 17.51 15.95 0.09 0.07 ind:fut:1s; +saliraient salir ver 17.51 15.95 0.14 0.00 cnd:pre:3p; +salirais salir ver 17.51 15.95 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +salirait salir ver 17.51 15.95 0.05 0.07 cnd:pre:3s; +salirez salir ver 17.51 15.95 0.02 0.00 ind:fut:2p; +salis salir ver m p 17.51 15.95 2.59 1.89 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +salissaient salir ver 17.51 15.95 0.03 0.54 ind:imp:3p; +salissait salir ver 17.51 15.95 0.26 0.68 ind:imp:3s; +salissant salissant adj m s 0.65 0.81 0.62 0.54 +salissante salissant adj f s 0.65 0.81 0.03 0.00 +salissantes salissant adj f p 0.65 0.81 0.00 0.14 +salissants salissant adj m p 0.65 0.81 0.00 0.14 +salisse salir ver 17.51 15.95 0.23 0.27 sub:pre:1s;sub:pre:3s; +salissent salir ver 17.51 15.95 0.56 0.41 ind:pre:3p; +salisses salir ver 17.51 15.95 0.01 0.00 sub:pre:2s; +salisseur salisseur adj m s 0.01 0.00 0.01 0.00 +salissez salir ver 17.51 15.95 0.44 0.00 imp:pre:2p;ind:pre:2p; +salissiez salir ver 17.51 15.95 0.10 0.00 ind:imp:2p; +salissure salissure nom f s 0.02 0.74 0.02 0.61 +salissures salissure nom f p 0.02 0.74 0.00 0.14 +salit salir ver 17.51 15.95 1.10 1.01 ind:pre:3s;ind:pas:3s; +salière salière nom f s 0.28 2.03 0.20 1.28 +salières salière nom f p 0.28 2.03 0.09 0.74 +saliva saliver ver 0.61 2.70 0.00 0.14 ind:pas:3s; +salivaient saliver ver 0.61 2.70 0.00 0.14 ind:imp:3p; +salivaire salivaire adj s 0.22 0.07 0.04 0.00 +salivaires salivaire adj f p 0.22 0.07 0.19 0.07 +salivais saliver ver 0.61 2.70 0.00 0.07 ind:imp:1s; +salivait saliver ver 0.61 2.70 0.01 0.47 ind:imp:3s; +salivant saliver ver 0.61 2.70 0.01 0.34 par:pre; +salivation salivation nom f s 0.01 0.07 0.01 0.07 +salive salive nom f s 4.94 18.65 4.91 18.51 +salivent saliver ver 0.61 2.70 0.02 0.07 ind:pre:3p; +saliver saliver ver 0.61 2.70 0.36 1.49 inf; +salives salive nom f p 4.94 18.65 0.03 0.14 +saliveur saliveur nom m s 0.00 0.07 0.00 0.07 +saliveuse saliveux adj f s 0.00 0.34 0.00 0.27 +saliveuses saliveux adj f p 0.00 0.34 0.00 0.07 +salivez saliver ver 0.61 2.70 0.01 0.00 ind:pre:2p; +salivé saliver ver m s 0.61 2.70 0.01 0.00 par:pas; +salle salle nom f s 116.91 215.81 111.10 197.64 +salles salle nom f p 116.91 215.81 5.81 18.18 +salmigondis salmigondis nom m 0.00 0.34 0.00 0.34 +salmis salmis nom m 0.00 0.47 0.00 0.47 +salmonelle salmonelle nom f s 0.45 0.00 0.45 0.00 +salmonellose salmonellose nom f s 0.02 0.00 0.02 0.00 +salmonidé salmonidé nom m s 0.01 0.00 0.01 0.00 +saloir saloir nom m s 0.10 0.74 0.10 0.68 +saloirs saloir nom m p 0.10 0.74 0.00 0.07 +salon salon nom m s 39.24 101.22 37.06 84.12 +salonnard salonnard nom m s 0.00 0.07 0.00 0.07 +salonniers salonnier nom m p 0.00 0.07 0.00 0.07 +salonnières salonnière nom f p 0.14 0.00 0.14 0.00 +salons salon nom m p 39.24 101.22 2.19 17.09 +saloon saloon nom m s 5.08 0.47 4.65 0.34 +saloons saloon nom m p 5.08 0.47 0.42 0.14 +salop salop nom m s 0.82 0.54 0.73 0.41 +salopard salopard nom m s 21.80 4.80 16.41 2.77 +salopards salopard nom m p 21.80 4.80 5.38 2.03 +salope salope nom f s 66.97 20.54 62.54 17.97 +salopent saloper ver 0.66 1.01 0.01 0.14 ind:pre:3p; +saloper saloper ver 0.66 1.01 0.16 0.47 inf; +saloperie saloperie nom f s 25.27 19.46 19.38 13.04 +saloperies saloperie nom f p 25.27 19.46 5.89 6.42 +salopes salope nom f p 66.97 20.54 4.42 2.57 +salopette salopette nom f s 0.59 5.61 0.53 4.73 +salopettes salopette nom f p 0.59 5.61 0.07 0.88 +salopez saloper ver 0.66 1.01 0.01 0.00 ind:pre:2p; +salopiaud salopiaud nom m s 0.16 0.14 0.16 0.00 +salopiauds salopiaud nom m p 0.16 0.14 0.00 0.14 +salopiaux salopiau nom m p 0.00 0.07 0.00 0.07 +salopiot salopiot nom m s 0.11 0.74 0.09 0.20 +salopiots salopiot nom m p 0.11 0.74 0.02 0.54 +salops salop nom m p 0.82 0.54 0.09 0.14 +salopé saloper ver m s 0.66 1.01 0.45 0.20 par:pas; +salopée saloper ver f s 0.66 1.01 0.00 0.14 par:pas; +salopées saloper ver f p 0.66 1.01 0.01 0.07 par:pas; +salopés saloper ver m p 0.66 1.01 0.02 0.00 par:pas; +salpicon salpicon nom m s 0.00 0.14 0.00 0.14 +salpingite salpingite nom f s 0.01 0.00 0.01 0.00 +salpêtre salpêtre nom m s 0.72 2.16 0.72 2.16 +salpêtreux salpêtreux adj m p 0.00 0.07 0.00 0.07 +salpêtrière salpêtrière nom f s 0.00 0.07 0.00 0.07 +salpêtrées salpêtrer ver f p 0.00 0.14 0.00 0.07 par:pas; +salpêtrés salpêtrer ver m p 0.00 0.14 0.00 0.07 par:pas; +sals sal nom m p 0.06 0.00 0.06 0.00 +salsa salsa nom f s 1.43 0.14 1.43 0.14 +salsepareille salsepareille nom f s 0.19 0.00 0.19 0.00 +salsifis salsifis nom m 0.00 1.01 0.00 1.01 +saltimbanque saltimbanque nom s 0.51 2.16 0.33 1.96 +saltimbanques saltimbanque nom p 0.51 2.16 0.17 0.20 +salto salto nom m s 0.08 0.00 0.08 0.00 +salé saler ver m s 7.65 6.35 1.33 0.95 par:pas; +salua saluer ver 45.09 67.64 0.48 10.27 ind:pas:3s; +saluai saluer ver 45.09 67.64 0.10 1.08 ind:pas:1s; +saluaient saluer ver 45.09 67.64 0.13 3.24 ind:imp:3p; +saluais saluer ver 45.09 67.64 0.08 0.41 ind:imp:1s;ind:imp:2s; +saluait saluer ver 45.09 67.64 0.69 5.34 ind:imp:3s; +saluant saluer ver 45.09 67.64 0.41 3.72 par:pre; +salubre salubre adj s 0.29 1.22 0.01 1.22 +salubres salubre adj p 0.29 1.22 0.28 0.00 +salubrité salubrité nom f s 0.04 0.34 0.04 0.34 +salée salé adj f s 4.47 11.01 2.30 4.26 +salue saluer ver 45.09 67.64 17.53 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saluent saluer ver 45.09 67.64 1.56 2.43 ind:pre:3p; +saluer saluer ver 45.09 67.64 11.85 16.49 ind:pre:2p;inf; +saluera saluer ver 45.09 67.64 0.57 0.20 ind:fut:3s; +saluerai saluer ver 45.09 67.64 0.23 0.07 ind:fut:1s; +salueraient saluer ver 45.09 67.64 0.00 0.07 cnd:pre:3p; +saluerais saluer ver 45.09 67.64 0.03 0.00 cnd:pre:1s; +saluerait saluer ver 45.09 67.64 0.03 0.07 cnd:pre:3s; +salueras saluer ver 45.09 67.64 0.30 0.07 ind:fut:2s; +saluerons saluer ver 45.09 67.64 0.02 0.07 ind:fut:1p; +salueront saluer ver 45.09 67.64 0.06 0.07 ind:fut:3p; +salées salé adj f p 4.47 11.01 0.40 1.55 +salues saluer ver 45.09 67.64 0.99 0.07 ind:pre:2s; +salueur salueur nom m s 0.01 0.00 0.01 0.00 +saluez saluer ver 45.09 67.64 4.48 0.68 imp:pre:2p;ind:pre:2p; +saluiez saluer ver 45.09 67.64 0.01 0.07 ind:imp:2p; +saluions saluer ver 45.09 67.64 0.00 0.14 ind:imp:1p; +saluâmes saluer ver 45.09 67.64 0.00 0.20 ind:pas:1p; +saluons saluer ver 45.09 67.64 2.09 0.61 imp:pre:1p;ind:pre:1p; +saluât saluer ver 45.09 67.64 0.00 0.14 sub:imp:3s; +salés salé adj m p 4.47 11.01 0.49 1.82 +salésienne salésien adj f s 0.00 0.07 0.00 0.07 +salut salut ono 203.10 6.55 203.10 6.55 +salutaire salutaire adj s 1.29 2.50 1.28 2.16 +salutairement salutairement adv 0.00 0.07 0.00 0.07 +salutaires salutaire adj p 1.29 2.50 0.01 0.34 +salutation salutation nom f s 5.79 2.36 0.24 0.81 +salutations salutation nom f p 5.79 2.36 5.55 1.55 +saluèrent saluer ver 45.09 67.64 0.00 2.84 ind:pas:3p; +salutiste salutiste nom s 0.01 0.34 0.00 0.07 +salutistes salutiste nom p 0.01 0.34 0.01 0.27 +saluts salut nom m p 277.42 61.82 0.07 2.84 +salué saluer ver m s 45.09 67.64 2.36 5.61 par:pas; +saluée saluer ver f s 45.09 67.64 0.69 1.76 par:pas; +saluées saluer ver f p 45.09 67.64 0.14 0.07 par:pas; +salués saluer ver m p 45.09 67.64 0.25 0.88 par:pas; +salvadorien salvadorien nom m s 0.78 0.00 0.14 0.00 +salvadorienne salvadorien adj f s 0.18 0.00 0.02 0.00 +salvadoriens salvadorien nom m p 0.78 0.00 0.64 0.00 +salvateur salvateur adj m s 0.19 0.95 0.02 0.74 +salvateurs salvateur adj m p 0.19 0.95 0.01 0.00 +salvation salvation nom f s 0.04 0.00 0.04 0.00 +salvatrice salvateur adj f s 0.19 0.95 0.16 0.20 +salve salve nom f s 1.69 7.43 1.29 4.53 +salves salve nom f p 1.69 7.43 0.40 2.91 +salvifique salvifique adj s 0.00 0.07 0.00 0.07 +salzbourgeoises salzbourgeois adj f p 0.00 0.07 0.00 0.07 +samaras samara nom m p 0.00 0.07 0.00 0.07 +samaritain samaritain nom m s 0.50 0.41 0.28 0.07 +samaritaine samaritaine nom f s 0.27 1.08 0.27 1.08 +samaritains samaritain nom m p 0.50 0.41 0.22 0.34 +samba samba nom f s 2.91 7.50 2.91 7.50 +sambenito sambenito nom m s 0.00 0.14 0.00 0.14 +sambo sambo nom m s 0.20 0.00 0.20 0.00 +samedi samedi nom m s 46.53 37.43 44.51 34.26 +samedis samedi nom m p 46.53 37.43 2.03 3.18 +samizdats samizdat nom m p 0.00 0.07 0.00 0.07 +sammy sammy nom m s 0.13 0.00 0.13 0.00 +samoan samoan adj m s 0.15 0.00 0.13 0.00 +samoans samoan adj m p 0.15 0.00 0.02 0.00 +samouraï samouraï nom m s 1.66 2.77 1.30 1.69 +samouraïs samouraï nom m p 1.66 2.77 0.36 1.08 +samovar samovar nom m s 0.45 3.78 0.45 2.23 +samovars samovar nom m p 0.45 3.78 0.00 1.55 +samoyède samoyède nom m s 0.00 0.07 0.00 0.07 +sampan sampan nom m s 0.09 0.07 0.09 0.07 +sampang sampang nom m s 0.14 0.34 0.14 0.27 +sampangs sampang nom m p 0.14 0.34 0.00 0.07 +sample sample nom m s 0.07 0.00 0.07 0.00 +sampler sampler nom m s 0.10 0.00 0.10 0.00 +samurai samurai nom m s 0.68 0.00 0.68 0.00 +san_francisco san_francisco nom s 0.02 0.07 0.02 0.07 +sana sana nom m s 0.53 2.43 0.53 2.30 +sanas sana nom m p 0.53 2.43 0.00 0.14 +sanatorium sanatorium nom m s 1.69 4.39 1.59 4.19 +sanatoriums sanatorium nom m p 1.69 4.39 0.10 0.20 +sancerre sancerre nom m s 0.00 0.20 0.00 0.20 +sanctifiai sanctifier ver 3.82 1.69 0.00 0.07 ind:pas:1s; +sanctifiait sanctifier ver 3.82 1.69 0.00 0.07 ind:imp:3s; +sanctifiante sanctifiant adj f s 0.00 0.14 0.00 0.14 +sanctification sanctification nom f s 0.01 0.07 0.01 0.07 +sanctificatrice sanctificateur adj f s 0.00 0.07 0.00 0.07 +sanctifie sanctifier ver 3.82 1.69 0.25 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +sanctifier sanctifier ver 3.82 1.69 0.48 0.20 inf; +sanctifiez sanctifier ver 3.82 1.69 0.00 0.07 imp:pre:2p; +sanctifié sanctifier ver m s 3.82 1.69 2.87 0.81 par:pas; +sanctifiée sanctifier ver f s 3.82 1.69 0.06 0.14 par:pas; +sanctifiées sanctifier ver f p 3.82 1.69 0.01 0.07 par:pas; +sanctifiés sanctifier ver m p 3.82 1.69 0.14 0.07 par:pas; +sanction sanction nom f s 2.35 4.86 1.23 2.30 +sanctionnaient sanctionner ver 1.01 2.91 0.00 0.14 ind:imp:3p; +sanctionnait sanctionner ver 1.01 2.91 0.00 0.14 ind:imp:3s; +sanctionnant sanctionner ver 1.01 2.91 0.01 0.07 par:pre; +sanctionne sanctionner ver 1.01 2.91 0.13 0.14 ind:pre:3s; +sanctionner sanctionner ver 1.01 2.91 0.15 0.74 inf; +sanctionnera sanctionner ver 1.01 2.91 0.03 0.00 ind:fut:3s; +sanctionnerait sanctionner ver 1.01 2.91 0.00 0.14 cnd:pre:3s; +sanctionnez sanctionner ver 1.01 2.91 0.01 0.00 ind:pre:2p; +sanctionnions sanctionner ver 1.01 2.91 0.00 0.07 ind:imp:1p; +sanctionnèrent sanctionner ver 1.01 2.91 0.00 0.07 ind:pas:3p; +sanctionné sanctionner ver m s 1.01 2.91 0.35 0.34 par:pas; +sanctionnée sanctionner ver f s 1.01 2.91 0.15 0.68 par:pas; +sanctionnées sanctionner ver f p 1.01 2.91 0.15 0.20 par:pas; +sanctionnés sanctionner ver m p 1.01 2.91 0.04 0.20 par:pas; +sanctions sanction nom f p 2.35 4.86 1.12 2.57 +sanctuaire sanctuaire nom m s 4.34 6.42 4.26 5.20 +sanctuaires sanctuaire nom m p 4.34 6.42 0.08 1.22 +sanctus sanctus nom m 0.23 0.68 0.23 0.68 +sandale sandale nom f s 3.21 8.72 0.22 0.74 +sandales sandale nom f p 3.21 8.72 2.99 7.97 +sandalettes sandalette nom f p 0.01 0.61 0.01 0.61 +sandalier sandalier nom m s 0.00 0.07 0.00 0.07 +sanderling sanderling nom m s 0.03 0.00 0.03 0.00 +sandiniste sandiniste adj m s 0.02 0.00 0.02 0.00 +sandinistes sandiniste nom p 0.11 0.00 0.11 0.00 +sandjak sandjak nom m s 0.00 0.20 0.00 0.20 +sandow sandow nom m s 0.00 0.27 0.00 0.07 +sandows sandow nom m p 0.00 0.27 0.00 0.20 +sandre sandre nom m s 0.02 0.07 0.01 0.00 +sandres sandre nom m p 0.02 0.07 0.01 0.07 +sandwich sandwich nom m s 0.00 9.93 0.00 8.18 +sandwiches sandwiche nom m p 0.00 4.93 0.00 4.93 +sandwichs sandwich nom m p 0.00 9.93 0.00 1.76 +sang_froid sang_froid nom m 5.41 9.26 5.41 9.26 +sang sang nom m s 304.75 207.30 304.30 205.20 +sangla sangler ver 0.86 6.49 0.00 0.07 ind:pas:3s; +sanglai sangler ver 0.86 6.49 0.00 0.07 ind:pas:1s; +sanglait sangler ver 0.86 6.49 0.00 0.20 ind:imp:3s; +sanglant sanglant adj m s 6.69 20.00 3.23 6.01 +sanglante sanglant adj f s 6.69 20.00 1.69 6.22 +sanglantes sanglant adj f p 6.69 20.00 0.86 3.58 +sanglants sanglant adj m p 6.69 20.00 0.91 4.19 +sangle sangle nom f s 1.68 3.78 1.08 1.55 +sanglent sangler ver 0.86 6.49 0.00 0.07 ind:pre:3p; +sangler sangler ver 0.86 6.49 0.07 0.07 inf; +sangles sangle nom f p 1.68 3.78 0.59 2.23 +sanglez sangler ver 0.86 6.49 0.04 0.00 imp:pre:2p; +sanglier sanglier nom m s 6.05 8.78 4.59 5.34 +sangliers sanglier nom m p 6.05 8.78 1.47 3.45 +sanglot sanglot nom m s 3.79 29.12 0.30 9.59 +sanglota sangloter ver 2.27 14.66 0.04 1.69 ind:pas:3s; +sanglotai sangloter ver 2.27 14.66 0.00 0.34 ind:pas:1s; +sanglotaient sangloter ver 2.27 14.66 0.00 0.14 ind:imp:3p; +sanglotais sangloter ver 2.27 14.66 0.05 0.27 ind:imp:1s;ind:imp:2s; +sanglotait sangloter ver 2.27 14.66 0.28 3.45 ind:imp:3s; +sanglotant sangloter ver 2.27 14.66 0.05 2.03 par:pre; +sanglotante sanglotant adj f s 0.01 0.95 0.00 0.47 +sanglotants sanglotant adj m p 0.01 0.95 0.00 0.07 +sanglote sangloter ver 2.27 14.66 1.06 2.09 ind:pre:1s;ind:pre:3s; +sanglotent sangloter ver 2.27 14.66 0.32 0.27 ind:pre:3p; +sangloter sangloter ver 2.27 14.66 0.31 3.45 inf; +sanglotez sangloter ver 2.27 14.66 0.05 0.00 imp:pre:2p;ind:pre:2p; +sanglotâmes sangloter ver 2.27 14.66 0.00 0.07 ind:pas:1p; +sanglots sanglot nom m p 3.79 29.12 3.49 19.53 +sangloté sangloter ver m s 2.27 14.66 0.11 0.81 par:pas; +sanglotés sangloter ver m p 2.27 14.66 0.00 0.07 par:pas; +sanglé sangler ver m s 0.86 6.49 0.04 2.43 par:pas; +sanglée sangler ver f s 0.86 6.49 0.04 0.81 par:pas; +sanglées sangler ver f p 0.86 6.49 0.00 0.20 par:pas; +sanglés sangler ver m p 0.86 6.49 0.00 1.35 par:pas; +sangria sangria nom f s 0.72 0.34 0.72 0.34 +sangs sang nom m p 304.75 207.30 0.45 2.09 +sangsue sangsue nom f s 2.90 1.28 1.05 0.54 +sangsues sangsue nom f p 2.90 1.28 1.85 0.74 +sanguin sanguin adj m s 8.84 3.78 4.33 2.30 +sanguinaire sanguinaire adj s 3.06 2.30 2.14 1.82 +sanguinaires sanguinaire adj p 3.06 2.30 0.91 0.47 +sanguine sanguin adj f s 8.84 3.78 1.81 0.95 +sanguines sanguin adj f p 8.84 3.78 0.27 0.00 +sanguinolent sanguinolent adj m s 0.28 3.18 0.05 0.95 +sanguinolente sanguinolent adj f s 0.28 3.18 0.07 1.22 +sanguinolentes sanguinolent adj f p 0.28 3.18 0.01 0.54 +sanguinolents sanguinolent adj m p 0.28 3.18 0.15 0.47 +sanguins sanguin adj m p 8.84 3.78 2.44 0.54 +sanhédrin sanhédrin nom m s 0.00 0.41 0.00 0.41 +sanie sanie nom f s 0.01 1.08 0.00 0.61 +sanies sanie nom f p 0.01 1.08 0.01 0.47 +sanieuses sanieux adj f p 0.00 0.14 0.00 0.07 +sanieux sanieux adj m 0.00 0.14 0.00 0.07 +sanitaire sanitaire adj s 3.52 1.55 2.42 1.08 +sanitaires sanitaire adj p 3.52 1.55 1.11 0.47 +sans_coeur sans_coeur adj 0.01 0.07 0.01 0.07 +sans_culotte sans_culotte nom m s 0.16 0.41 0.16 0.00 +sans_culotte sans_culotte nom m p 0.16 0.41 0.00 0.41 +sans_culottide sans_culottide nom f p 0.00 0.07 0.00 0.07 +sans_façon sans_façon nom m 0.10 0.14 0.10 0.14 +sans_faute sans_faute nom m 0.05 0.00 0.05 0.00 +sans_fil sans_fil nom m 0.21 0.20 0.21 0.20 +sans_filiste sans_filiste nom m s 0.00 0.74 0.00 0.61 +sans_filiste sans_filiste nom m p 0.00 0.74 0.00 0.14 +sans_grade sans_grade nom m 0.05 0.14 0.05 0.14 +sans_pareil sans_pareil nom m 0.00 5.20 0.00 5.20 +sans sans pre 1003.44 2224.12 1003.44 2224.12 +sanscrit sanscrit adj m s 0.05 0.20 0.04 0.14 +sanscrite sanscrit adj f s 0.05 0.20 0.01 0.00 +sanscrits sanscrit adj m p 0.05 0.20 0.00 0.07 +sanskrit sanskrit nom m s 0.11 0.14 0.11 0.14 +sansonnet sansonnet nom m s 0.32 0.47 0.32 0.41 +sansonnets sansonnet nom m p 0.32 0.47 0.00 0.07 +santal santal nom m s 0.15 1.08 0.15 0.81 +santals santal nom m p 0.15 1.08 0.00 0.27 +santiag santiag nom f s 0.08 1.49 0.01 0.07 +santiags santiag nom m p 0.08 1.49 0.07 1.42 +santoche santoche nom f s 0.00 0.07 0.00 0.07 +santon santon nom m s 0.03 0.34 0.03 0.00 +santons santon nom m p 0.03 0.34 0.00 0.34 +santé santé nom f s 88.69 52.70 88.58 52.43 +santés santé nom f p 88.69 52.70 0.11 0.27 +saoudien saoudien adj m s 0.60 0.14 0.37 0.00 +saoudienne saoudien adj f s 0.60 0.14 0.07 0.00 +saoudiennes saoudienne nom f p 0.05 0.00 0.03 0.00 +saoudiens saoudien nom m p 0.47 0.00 0.45 0.00 +saoudite saoudite adj f s 0.05 0.07 0.05 0.07 +saoul saoul adj m s 11.97 13.18 7.81 9.46 +saoula saouler ver 6.84 8.38 0.01 0.07 ind:pas:3s; +saoulaient saouler ver 6.84 8.38 0.01 0.27 ind:imp:3p; +saoulais saouler ver 6.84 8.38 0.01 0.14 ind:imp:1s; +saoulait saouler ver 6.84 8.38 0.11 0.88 ind:imp:3s; +saoulant saouler ver 6.84 8.38 0.04 0.07 par:pre; +saoulard saoulard nom m s 0.17 0.07 0.17 0.07 +saoule saoul adj f s 11.97 13.18 2.87 2.09 +saoulent saouler ver 6.84 8.38 0.30 0.07 ind:pre:3p; +saouler saouler ver 6.84 8.38 2.21 1.82 inf; +saoulerait saouler ver 6.84 8.38 0.01 0.14 cnd:pre:3s; +saouleras saouler ver 6.84 8.38 0.00 0.07 ind:fut:2s; +saoulerez saouler ver 6.84 8.38 0.02 0.00 ind:fut:2p; +saoulerie saoulerie nom f s 0.03 0.47 0.03 0.27 +saouleries saoulerie nom f p 0.03 0.47 0.00 0.20 +saoules saouler ver 6.84 8.38 0.83 0.07 ind:pre:2s; +saoulez saouler ver 6.84 8.38 0.14 0.20 imp:pre:2p;ind:pre:2p; +saoulions saouler ver 6.84 8.38 0.00 0.07 ind:imp:1p; +saouls saoul adj m p 11.97 13.18 1.24 1.55 +saoulé saouler ver m s 6.84 8.38 0.89 1.89 par:pas; +saoulée saouler ver f s 6.84 8.38 0.30 0.41 par:pas; +saoulées saouler ver f p 6.84 8.38 0.01 0.00 par:pas; +saoulés saouler ver m p 6.84 8.38 0.07 0.68 par:pas; +sapaient saper ver 3.23 7.91 0.00 0.20 ind:imp:3p; +sapait saper ver 3.23 7.91 0.03 0.41 ind:imp:3s; +sapajou sapajou nom m s 0.01 0.47 0.01 0.41 +sapajous sapajou nom m p 0.01 0.47 0.00 0.07 +sape saper ver 3.23 7.91 0.35 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sapement sapement nom m s 0.00 0.95 0.00 0.61 +sapements sapement nom m p 0.00 0.95 0.00 0.34 +sapent saper ver 3.23 7.91 0.08 0.27 ind:pre:3p; +saper saper ver 3.23 7.91 1.13 1.22 inf; +saperai saper ver 3.23 7.91 0.02 0.00 ind:fut:1s; +saperlipopette saperlipopette ono 0.62 0.07 0.62 0.07 +saperlotte saperlotte nom m s 0.07 0.14 0.07 0.14 +sapes sape nom f p 0.59 5.95 0.48 1.82 +sapeur_pompier sapeur_pompier nom m s 0.11 0.61 0.07 0.00 +sapeur sapeur nom m s 0.78 4.80 0.56 1.69 +sapeur_pompier sapeur_pompier nom m p 0.11 0.61 0.04 0.61 +sapeurs sapeur nom m p 0.78 4.80 0.21 3.11 +sapez saper ver 3.23 7.91 0.08 0.00 ind:pre:2p; +saphir saphir nom m s 0.64 1.96 0.34 1.22 +saphirs saphir nom m p 0.64 1.96 0.30 0.74 +saphisme saphisme nom m s 0.00 0.07 0.00 0.07 +saphène saphène adj f s 0.07 0.00 0.07 0.00 +sapide sapide adj m s 0.00 0.20 0.00 0.14 +sapides sapide adj p 0.00 0.20 0.00 0.07 +sapidité sapidité nom f s 0.00 0.07 0.00 0.07 +sapien sapiens adj m s 0.64 0.68 0.09 0.00 +sapience sapience nom f s 0.00 0.07 0.00 0.07 +sapiens sapiens adj m p 0.64 0.68 0.56 0.68 +sapin sapin nom m s 6.91 26.28 5.95 9.86 +sapines sapine nom f p 0.00 0.27 0.00 0.27 +sapinette sapinette nom f s 0.00 0.20 0.00 0.07 +sapinettes sapinette nom f p 0.00 0.20 0.00 0.14 +sapinière sapinière nom f s 0.00 1.42 0.00 0.81 +sapinières sapinière nom f p 0.00 1.42 0.00 0.61 +sapins sapin nom m p 6.91 26.28 0.95 16.42 +saponaires saponaire nom f p 0.00 0.07 0.00 0.07 +saponification saponification nom f s 0.03 0.14 0.03 0.14 +saponifiées saponifier ver f p 0.00 0.07 0.00 0.07 par:pas; +saponite saponite nom f s 0.02 0.27 0.02 0.27 +sapotille sapotille nom f s 0.10 0.00 0.10 0.00 +sapotillier sapotillier nom m s 0.00 0.27 0.00 0.27 +sapristi sapristi ono 1.69 0.68 1.69 0.68 +sapé saper ver m s 3.23 7.91 0.99 2.84 par:pas; +sapée saper ver f s 3.23 7.91 0.20 1.55 par:pas; +sapées saper ver f p 3.23 7.91 0.02 0.14 par:pas; +sapés saper ver m p 3.23 7.91 0.10 0.61 par:pas; +saque saquer ver 1.37 1.08 0.03 0.07 ind:pre:1s; +saquent saquer ver 1.37 1.08 0.14 0.00 ind:pre:3p; +saquer saquer ver 1.37 1.08 0.87 0.68 inf; +saqué saquer ver m s 1.37 1.08 0.20 0.14 par:pas; +saquée saquer ver f s 1.37 1.08 0.01 0.07 par:pas; +saqués saquer ver m p 1.37 1.08 0.12 0.14 par:pas; +sar sar nom m s 0.00 0.07 0.00 0.07 +sara sara nom f s 0.10 0.00 0.10 0.00 +sarabande sarabande nom f s 0.31 1.89 0.21 1.69 +sarabandes sarabande nom f p 0.31 1.89 0.10 0.20 +sarbacane sarbacane nom f s 0.21 0.95 0.14 0.47 +sarbacanes sarbacane nom f p 0.21 0.95 0.07 0.47 +sarcasme sarcasme nom m s 2.37 4.66 1.13 1.35 +sarcasmes sarcasme nom m p 2.37 4.66 1.24 3.31 +sarcastique sarcastique adj s 2.23 2.84 2.05 2.43 +sarcastiquement sarcastiquement adv 0.00 0.20 0.00 0.20 +sarcastiques sarcastique adj p 2.23 2.84 0.18 0.41 +sarcelle sarcelle nom f s 0.16 0.81 0.16 0.27 +sarcelles sarcelle nom f p 0.16 0.81 0.00 0.54 +sarcine sarcine nom f s 0.01 0.00 0.01 0.00 +sarclage sarclage nom m s 0.00 0.07 0.00 0.07 +sarclait sarcler ver 0.13 1.89 0.01 0.47 ind:imp:3s; +sarclant sarcler ver 0.13 1.89 0.00 0.27 par:pre; +sarcle sarcler ver 0.13 1.89 0.01 0.07 ind:pre:3s; +sarclent sarcler ver 0.13 1.89 0.00 0.07 ind:pre:3p; +sarcler sarcler ver 0.13 1.89 0.10 0.95 inf; +sarclette sarclette nom f s 0.01 0.00 0.01 0.00 +sarcleuse sarcleur nom f s 0.06 0.00 0.06 0.00 +sarcloir sarcloir nom m s 0.00 0.14 0.00 0.14 +sarclées sarcler ver f p 0.13 1.89 0.01 0.07 par:pas; +sarcoïdose sarcoïdose nom f s 0.10 0.00 0.10 0.00 +sarcome sarcome nom m s 0.34 0.00 0.34 0.00 +sarcophage sarcophage nom m s 2.43 1.28 2.34 0.95 +sarcophages sarcophage nom m p 2.43 1.28 0.09 0.34 +sardanapalesques sardanapalesque adj m p 0.00 0.07 0.00 0.07 +sardanes sardane nom f p 0.00 0.07 0.00 0.07 +sarde sarde adj m s 0.31 0.00 0.31 0.00 +sardinaient sardiner ver 0.00 0.07 0.00 0.07 ind:imp:3p; +sardine sardine nom f s 3.88 8.38 0.84 1.28 +sardines sardine nom f p 3.88 8.38 3.04 7.09 +sardiniers sardinier nom m p 0.01 0.07 0.01 0.07 +sardoine sardoine nom f s 0.00 0.07 0.00 0.07 +sardonique sardonique adj s 0.10 1.01 0.10 0.95 +sardoniquement sardoniquement adv 0.00 0.07 0.00 0.07 +sardoniques sardonique adj m p 0.10 1.01 0.00 0.07 +sargasse sargasse nom f s 0.00 0.14 0.00 0.07 +sargasses sargasse nom f p 0.00 0.14 0.00 0.07 +sari sari nom m s 0.98 0.20 0.72 0.14 +sarigue sarigue nom f s 0.00 0.07 0.00 0.07 +sarin sarin adj f s 0.25 0.00 0.25 0.00 +saris sari nom m p 0.98 0.20 0.26 0.07 +sarment sarment nom m s 0.11 1.28 0.11 0.27 +sarments sarment nom m p 0.11 1.28 0.00 1.01 +sarong sarong nom m s 0.19 0.00 0.19 0.00 +saroual saroual nom m s 0.01 0.07 0.01 0.07 +sarouel sarouel nom m s 0.00 0.14 0.00 0.14 +sarracénie sarracénie nom f s 0.01 0.00 0.01 0.00 +sarrasin sarrasin nom m s 0.20 0.68 0.20 0.41 +sarrasine sarrasin adj f s 0.30 0.74 0.16 0.20 +sarrasines sarrasin adj f p 0.30 0.74 0.00 0.07 +sarrasins sarrasin adj m p 0.30 0.74 0.00 0.20 +sarrau sarrau nom m s 0.14 1.42 0.04 1.28 +sarraus sarrau nom m p 0.14 1.42 0.10 0.14 +sarreau sarreau nom m s 0.00 0.20 0.00 0.20 +sarriette sarriette nom f s 0.01 0.07 0.01 0.07 +sarrois sarrois adj m 0.00 0.20 0.00 0.14 +sarroise sarrois adj f s 0.00 0.20 0.00 0.07 +sarrussophone sarrussophone nom m s 0.00 0.07 0.00 0.07 +sas sas nom m 3.26 0.74 3.26 0.74 +sashimi sashimi nom m s 0.23 0.00 0.23 0.00 +sassafras sassafras nom m 0.07 0.00 0.07 0.00 +sassanide sassanide adj f s 0.00 0.20 0.00 0.14 +sassanides sassanide adj p 0.00 0.20 0.00 0.07 +sasse sasser ver 0.14 0.07 0.14 0.07 ind:pre:3s; +sasseur sasseur nom m s 0.54 0.00 0.54 0.00 +satan satan nom m s 0.42 0.14 0.42 0.14 +satana sataner ver 1.12 0.81 0.01 0.34 ind:pas:3s; +satanaient sataner ver 1.12 0.81 0.00 0.07 ind:imp:3p; +satanas sataner ver 1.12 0.81 0.64 0.14 ind:pas:2s; +sataner sataner ver 1.12 0.81 0.00 0.20 inf; +satanique satanique adj s 3.11 1.49 1.80 0.95 +sataniques satanique adj p 3.11 1.49 1.31 0.54 +sataniser sataniser ver 0.12 0.00 0.12 0.00 inf; +satanisme satanisme nom m s 0.31 0.34 0.31 0.34 +sataniste sataniste adj s 0.21 0.07 0.21 0.07 +satané satané adj m s 6.89 2.36 3.16 0.81 +satanée satané adj f s 6.89 2.36 2.08 0.74 +satanées satané adj f p 6.89 2.36 0.53 0.41 +satanés satané adj m p 6.89 2.36 1.12 0.41 +satelliser satelliser ver 0.02 0.07 0.02 0.00 inf; +satellisée satelliser ver f s 0.02 0.07 0.00 0.07 par:pas; +satellitaire satellitaire adj s 0.02 0.00 0.02 0.00 +satellite satellite nom m s 13.41 1.96 10.63 0.81 +satellites_espion satellites_espion nom m p 0.02 0.00 0.02 0.00 +satellites satellite nom m p 13.41 1.96 2.79 1.15 +sati sati nom m s 0.02 0.00 0.02 0.00 +satiation satiation nom f s 0.00 0.07 0.00 0.07 +satin satin nom m s 2.65 8.58 2.65 8.11 +satinait satiner ver 0.07 0.41 0.00 0.07 ind:imp:3s; +satine satiner ver 0.07 0.41 0.06 0.00 imp:pre:2s; +satinette satinette nom f s 0.00 0.41 0.00 0.41 +satins satin nom m p 2.65 8.58 0.00 0.47 +satiné satiné adj m s 0.11 1.35 0.03 0.20 +satinée satiné adj f s 0.11 1.35 0.05 0.68 +satinées satiné adj f p 0.11 1.35 0.02 0.27 +satinés satiné adj m p 0.11 1.35 0.01 0.20 +satire satire nom f s 0.35 0.47 0.27 0.41 +satires satire nom f p 0.35 0.47 0.08 0.07 +satirique satirique adj s 0.24 0.68 0.22 0.41 +satiriques satirique adj p 0.24 0.68 0.02 0.27 +satirisaient satiriser ver 0.00 0.07 0.00 0.07 ind:imp:3p; +satiriste satiriste nom s 0.12 0.07 0.12 0.07 +satisfaction satisfaction nom f s 7.37 41.22 7.03 37.09 +satisfactions satisfaction nom f p 7.37 41.22 0.34 4.12 +satisfaire satisfaire ver 25.10 38.11 9.60 12.36 ind:pre:2p;inf; +satisfais satisfaire ver 25.10 38.11 0.33 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +satisfaisaient satisfaire ver 25.10 38.11 0.04 0.07 ind:imp:3p; +satisfaisais satisfaire ver 25.10 38.11 0.18 0.20 ind:imp:1s;ind:imp:2s; +satisfaisait satisfaire ver 25.10 38.11 0.13 2.43 ind:imp:3s; +satisfaisant satisfaisant adj m s 2.64 8.18 1.35 2.64 +satisfaisante satisfaisant adj f s 2.64 8.18 0.78 3.92 +satisfaisantes satisfaisant adj f p 2.64 8.18 0.23 1.15 +satisfaisants satisfaisant adj m p 2.64 8.18 0.29 0.47 +satisfait satisfaire ver m s 25.10 38.11 7.89 13.45 ind:pre:3s;par:pas;par:pas; +satisfaite satisfaire ver f s 25.10 38.11 2.29 4.53 par:pas; +satisfaites satisfaire ver f p 25.10 38.11 0.29 0.27 ind:pre:2p;par:pas; +satisfaits satisfaire ver m p 25.10 38.11 2.30 1.96 par:pas; +satisfasse satisfaire ver 25.10 38.11 0.07 0.14 sub:pre:3s; +satisfassent satisfaire ver 25.10 38.11 0.01 0.07 sub:pre:3p; +satisfecit satisfecit nom m 0.02 0.34 0.02 0.34 +satisfera satisfaire ver 25.10 38.11 0.52 0.07 ind:fut:3s; +satisferai satisfaire ver 25.10 38.11 0.15 0.00 ind:fut:1s; +satisferaient satisfaire ver 25.10 38.11 0.04 0.00 cnd:pre:3p; +satisferais satisfaire ver 25.10 38.11 0.14 0.00 cnd:pre:1s; +satisferait satisfaire ver 25.10 38.11 0.28 0.20 cnd:pre:3s; +satisferiez satisfaire ver 25.10 38.11 0.03 0.00 cnd:pre:2p; +satisferons satisfaire ver 25.10 38.11 0.23 0.00 ind:fut:1p; +satisferont satisfaire ver 25.10 38.11 0.02 0.07 ind:fut:3p; +satisfirent satisfaire ver 25.10 38.11 0.00 0.14 ind:pas:3p; +satisfis satisfaire ver 25.10 38.11 0.00 0.07 ind:pas:1s; +satisfit satisfaire ver 25.10 38.11 0.01 0.47 ind:pas:3s; +satisfont satisfaire ver 25.10 38.11 0.43 0.20 ind:pre:3p; +satiété satiété nom f s 0.43 1.42 0.43 1.42 +satonne satonner ver 0.00 0.54 0.00 0.07 ind:pre:3s; +satonner satonner ver 0.00 0.54 0.00 0.34 inf; +satonné satonner ver m s 0.00 0.54 0.00 0.14 par:pas; +satrape satrape nom m s 0.02 0.88 0.02 0.34 +satrapes satrape nom m p 0.02 0.88 0.00 0.54 +satrapie satrapie nom f s 0.01 0.00 0.01 0.00 +saturait saturer ver 1.81 4.32 0.01 0.27 ind:imp:3s; +saturant saturer ver 1.81 4.32 0.00 0.14 par:pre; +saturation saturation nom f s 1.08 1.08 1.08 1.08 +sature saturer ver 1.81 4.32 0.47 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saturent saturer ver 1.81 4.32 0.01 0.00 ind:pre:3p; +saturer saturer ver 1.81 4.32 0.29 0.27 inf; +saturnales saturnales nom f p 0.14 0.34 0.14 0.34 +saturnien saturnien adj m s 0.00 0.20 0.00 0.07 +saturniennes saturnienne nom f p 0.00 0.07 0.00 0.07 +saturniens saturnien adj m p 0.00 0.20 0.00 0.14 +saturnisme saturnisme nom m s 0.00 0.07 0.00 0.07 +saturons saturer ver 1.81 4.32 0.01 0.00 ind:pre:1p; +saturé saturer ver m s 1.81 4.32 0.50 1.82 par:pas; +saturée saturer ver f s 1.81 4.32 0.06 1.42 par:pas; +saturées saturer ver f p 1.81 4.32 0.30 0.14 par:pas; +saturés saturer ver m p 1.81 4.32 0.16 0.20 par:pas; +satyre satyre nom m s 0.99 5.54 0.42 3.85 +satyres satyre nom m p 0.99 5.54 0.57 1.69 +satyrique satyrique adj s 0.01 0.00 0.01 0.00 +sauce sauce nom f s 19.24 13.72 18.33 11.76 +saucent saucer ver 0.69 2.30 0.00 0.07 ind:pre:3p; +saucer saucer ver 0.69 2.30 0.06 0.34 inf; +sauces sauce nom f p 19.24 13.72 0.91 1.96 +saucier saucier nom m s 0.14 0.00 0.14 0.00 +sauciflard sauciflard nom m s 0.00 0.34 0.00 0.34 +saucisse saucisse nom f s 15.89 8.78 7.37 3.18 +saucisses saucisse nom f p 15.89 8.78 8.53 5.61 +saucisson saucisson nom m s 2.09 8.04 2.08 6.08 +saucissonnage saucissonnage nom m s 0.00 0.14 0.00 0.07 +saucissonnages saucissonnage nom m p 0.00 0.14 0.00 0.07 +saucissonnant saucissonner ver 0.03 0.95 0.00 0.07 par:pre; +saucissonne saucissonner ver 0.03 0.95 0.00 0.14 ind:pre:3s; +saucissonner saucissonner ver 0.03 0.95 0.01 0.20 inf; +saucissonné saucissonner ver m s 0.03 0.95 0.01 0.20 par:pas; +saucissonnée saucissonner ver f s 0.03 0.95 0.00 0.20 par:pas; +saucissonnés saucissonner ver m p 0.03 0.95 0.01 0.14 par:pas; +saucissons saucisson nom m p 2.09 8.04 0.01 1.96 +saucière saucière nom f s 0.27 0.47 0.24 0.34 +saucières saucière nom f p 0.27 0.47 0.03 0.14 +saucée saucée nom f s 0.13 0.00 0.13 0.00 +sauf_conduit sauf_conduit nom m s 1.14 1.01 0.77 0.88 +sauf_conduit sauf_conduit nom m p 1.14 1.01 0.37 0.14 +sauf sauf pre 108.54 83.99 108.54 83.99 +saufs sauf adj_sup m p 12.52 6.69 2.38 0.74 +sauge sauge nom f s 0.81 0.74 0.81 0.74 +saugrenu saugrenu adj m s 0.62 7.23 0.20 2.09 +saugrenue saugrenu adj f s 0.62 7.23 0.32 2.84 +saugrenues saugrenu adj f p 0.62 7.23 0.09 1.42 +saugrenus saugrenu adj m p 0.62 7.23 0.01 0.88 +saulaie saulaie nom f s 0.00 0.20 0.00 0.07 +saulaies saulaie nom f p 0.00 0.20 0.00 0.14 +saule saule nom m s 1.90 8.65 1.27 1.96 +saules saule nom m p 1.90 8.65 0.63 6.69 +saulnier saulnier nom m s 0.00 0.07 0.00 0.07 +saumon saumon nom m s 5.92 4.73 5.28 3.65 +saumoneau saumoneau nom m s 0.00 0.07 0.00 0.07 +saumonette saumonette nom f s 0.00 0.14 0.00 0.14 +saumons saumon nom m p 5.92 4.73 0.64 1.08 +saumoné saumoné adj m s 0.00 0.47 0.00 0.07 +saumonée saumoné adj f s 0.00 0.47 0.00 0.20 +saumonées saumoné adj f p 0.00 0.47 0.00 0.20 +saumâtre saumâtre adj s 0.41 2.03 0.20 1.49 +saumâtres saumâtre adj p 0.41 2.03 0.21 0.54 +saumurage saumurage nom m s 0.01 0.00 0.01 0.00 +saumure saumure nom f s 0.42 1.76 0.42 1.76 +saumurer saumurer ver 0.01 0.00 0.01 0.00 inf; +saumurées saumuré adj f p 0.14 0.00 0.14 0.00 +sauna sauna nom m s 3.85 1.08 3.45 0.61 +saunas sauna nom m p 3.85 1.08 0.40 0.47 +saunier saunier nom m s 0.00 0.68 0.00 0.34 +sauniers saunier nom m p 0.00 0.68 0.00 0.34 +saunières saunière nom f p 0.00 0.07 0.00 0.07 +saupoudra saupoudrer ver 0.57 4.80 0.00 0.41 ind:pas:3s; +saupoudrage saupoudrage nom m s 0.02 0.00 0.02 0.00 +saupoudrai saupoudrer ver 0.57 4.80 0.00 0.07 ind:pas:1s; +saupoudraient saupoudrer ver 0.57 4.80 0.00 0.14 ind:imp:3p; +saupoudrait saupoudrer ver 0.57 4.80 0.00 0.34 ind:imp:3s; +saupoudrant saupoudrer ver 0.57 4.80 0.03 0.47 par:pre; +saupoudre saupoudrer ver 0.57 4.80 0.16 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saupoudrer saupoudrer ver 0.57 4.80 0.10 0.27 inf; +saupoudreur saupoudreur nom m s 0.02 0.00 0.02 0.00 +saupoudrez saupoudrer ver 0.57 4.80 0.03 0.14 imp:pre:2p;ind:pre:2p; +saupoudriez saupoudrer ver 0.57 4.80 0.00 0.07 ind:imp:2p; +saupoudrons saupoudrer ver 0.57 4.80 0.02 0.00 imp:pre:1p; +saupoudré saupoudrer ver m s 0.57 4.80 0.12 0.74 par:pas; +saupoudrée saupoudrer ver f s 0.57 4.80 0.04 0.81 par:pas; +saupoudrées saupoudrer ver f p 0.57 4.80 0.01 0.34 par:pas; +saupoudrés saupoudrer ver m p 0.57 4.80 0.06 0.61 par:pas; +saur saur adj m s 0.09 0.88 0.08 0.34 +saura savoir ver_sup 4516.72 2003.58 34.23 14.93 ind:fut:3s;ind:pas:3s; +saurai savoir ver_sup 4516.72 2003.58 18.40 8.85 ind:fut:1s; +sauraient savoir ver_sup 4516.72 2003.58 1.48 5.47 cnd:pre:3p; +saurais savoir ver_sup 4516.72 2003.58 13.01 10.14 cnd:pre:1s;cnd:pre:2s; +saurait savoir ver_sup 4516.72 2003.58 11.90 33.92 cnd:pre:3s; +sauras savoir ver_sup 4516.72 2003.58 15.22 4.59 ind:fut:2s;ind:pas:2s; +saurer saurer ver 22.06 10.27 0.00 0.41 inf; +sauret sauret adj m s 0.00 0.47 0.00 0.27 +saurets sauret adj m p 0.00 0.47 0.00 0.20 +saurez saurer ver 22.06 10.27 4.76 2.23 ind:pre:2p; +sauri saurir ver m s 0.01 0.00 0.01 0.00 par:pas; +saurien saurien nom m s 0.01 0.47 0.01 0.20 +sauriens saurien nom m p 0.01 0.47 0.00 0.27 +sauriez saurer ver 22.06 10.27 3.29 0.74 ind:imp:2p;sub:pre:2p; +saurin saurin nom m s 0.00 0.07 0.00 0.07 +saurions saurer ver 22.06 10.27 0.56 0.74 ind:imp:1p; +saurons saurer ver 22.06 10.27 3.17 1.76 imp:pre:1p;ind:pre:1p; +sauront savoir ver_sup 4516.72 2003.58 7.72 2.77 ind:fut:3p; +saurs saur adj m p 0.09 0.88 0.01 0.54 +saussaies saussaie nom f p 0.00 1.22 0.00 1.22 +saut_de_lit saut_de_lit nom m s 0.00 0.20 0.00 0.14 +saut saut nom m s 14.77 17.03 13.53 14.26 +sauta sauter ver 123.04 134.59 0.84 15.27 ind:pas:3s; +sautai sauter ver 123.04 134.59 0.04 2.50 ind:pas:1s; +sautaient sauter ver 123.04 134.59 0.15 4.12 ind:imp:3p; +sautais sauter ver 123.04 134.59 1.00 0.88 ind:imp:1s;ind:imp:2s; +sautait sauter ver 123.04 134.59 1.81 9.39 ind:imp:3s; +sautant sauter ver 123.04 134.59 1.60 8.92 par:pre; +sautante sautant adj f s 0.04 0.14 0.01 0.14 +saute_mouton saute_mouton nom m 0.14 0.54 0.14 0.54 +saute_ruisseau saute_ruisseau nom m s 0.00 0.07 0.00 0.07 +saute sauter ver 123.04 134.59 22.66 19.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +sautelant sauteler ver 0.00 0.07 0.00 0.07 par:pre; +sautelle sautelle nom f s 0.01 0.00 0.01 0.00 +sautent sauter ver 123.04 134.59 2.09 4.59 ind:pre:3p; +sauter sauter ver 123.04 134.59 57.89 43.31 inf; +sautera sauter ver 123.04 134.59 0.90 0.41 ind:fut:3s; +sauterai sauter ver 123.04 134.59 1.05 0.20 ind:fut:1s; +sauteraient sauter ver 123.04 134.59 0.06 0.14 cnd:pre:3p; +sauterais sauter ver 123.04 134.59 0.59 0.14 cnd:pre:1s;cnd:pre:2s; +sauterait sauter ver 123.04 134.59 0.39 0.74 cnd:pre:3s; +sauteras sauter ver 123.04 134.59 0.60 0.00 ind:fut:2s; +sauterelle sauterelle nom f s 3.29 1.62 1.63 1.62 +sauterelles sauterelle nom f p 3.29 1.62 1.67 0.00 +sauterez sauter ver 123.04 134.59 0.23 0.00 ind:fut:2p; +sauterie sauterie nom f s 0.63 0.41 0.51 0.14 +sauteries sauterie nom f p 0.63 0.41 0.12 0.27 +sauteriez sauter ver 123.04 134.59 0.04 0.00 cnd:pre:2p; +sauternes sauternes nom m 0.67 1.08 0.67 1.08 +sauterons sauter ver 123.04 134.59 0.19 0.07 ind:fut:1p; +sauteront sauter ver 123.04 134.59 0.33 0.47 ind:fut:3p; +sautes sauter ver 123.04 134.59 3.25 0.61 ind:pre:2s; +sauteur sauteur nom m s 1.12 1.89 0.66 0.61 +sauteurs sauteur nom m p 1.12 1.89 0.10 0.20 +sauteuse sauteur nom f s 1.12 1.89 0.33 0.95 +sauteuses sauteur nom f p 1.12 1.89 0.03 0.14 +sautez sauter ver 123.04 134.59 5.62 0.54 imp:pre:2p;ind:pre:2p; +sauça saucer ver 0.69 2.30 0.00 0.20 ind:pas:3s; +sauçant saucer ver 0.69 2.30 0.00 0.14 par:pre; +sauçons saucer ver 0.69 2.30 0.00 0.07 ind:pre:1p; +sautiez sauter ver 123.04 134.59 0.36 0.00 ind:imp:2p; +sautilla sautiller ver 1.48 7.97 0.00 0.41 ind:pas:3s; +sautillaient sautiller ver 1.48 7.97 0.11 0.54 ind:imp:3p; +sautillais sautiller ver 1.48 7.97 0.04 0.07 ind:imp:1s; +sautillait sautiller ver 1.48 7.97 0.01 1.69 ind:imp:3s; +sautillant sautiller ver 1.48 7.97 0.16 2.64 par:pre; +sautillante sautillant adj f s 0.11 2.57 0.06 1.15 +sautillantes sautillant adj f p 0.11 2.57 0.00 0.41 +sautillants sautillant adj m p 0.11 2.57 0.02 0.20 +sautille sautiller ver 1.48 7.97 0.73 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sautillement sautillement nom m s 0.03 0.74 0.00 0.34 +sautillements sautillement nom m p 0.03 0.74 0.03 0.41 +sautillent sautiller ver 1.48 7.97 0.02 0.34 ind:pre:3p; +sautiller sautiller ver 1.48 7.97 0.30 0.81 inf; +sautilles sautiller ver 1.48 7.97 0.05 0.00 ind:pre:2s; +sautillez sautiller ver 1.48 7.97 0.04 0.00 imp:pre:2p;ind:pre:2p; +sautillèrent sautiller ver 1.48 7.97 0.01 0.14 ind:pas:3p; +sautillé sautiller ver m s 1.48 7.97 0.01 0.07 par:pas; +sautions sauter ver 123.04 134.59 0.13 0.27 ind:imp:1p; +sautoir sautoir nom m s 0.18 2.70 0.18 2.50 +sautoirs sautoir nom m p 0.18 2.70 0.00 0.20 +sautâmes sauter ver 123.04 134.59 0.00 0.14 ind:pas:1p; +sauton sauton nom m s 0.14 0.20 0.09 0.00 +sautons sauter ver 123.04 134.59 0.54 0.47 imp:pre:1p;ind:pre:1p; +sautât sauter ver 123.04 134.59 0.00 0.07 sub:imp:3s; +saut_de_lit saut_de_lit nom m p 0.00 0.20 0.00 0.07 +sauts saut nom m p 14.77 17.03 1.23 2.77 +sautèrent sauter ver 123.04 134.59 0.01 2.43 ind:pas:3p; +sauté sauter ver m s 123.04 134.59 18.77 18.78 par:pas; +sautée sauter ver f s 123.04 134.59 1.46 0.41 par:pas; +sautées sauté adj f p 0.80 0.95 0.46 0.27 +sautés sauter ver m p 123.04 134.59 0.22 0.34 par:pas; +sauva sauver ver 246.51 99.05 0.61 2.97 ind:pas:3s; +sauvage sauvage adj s 24.68 54.66 16.67 34.46 +sauvagement sauvagement adv 1.48 6.28 1.48 6.28 +sauvageon sauvageon nom m s 0.65 0.41 0.01 0.00 +sauvageonne sauvageon nom f s 0.65 0.41 0.60 0.27 +sauvageonnes sauvageon nom f p 0.65 0.41 0.00 0.07 +sauvageons sauvageon nom m p 0.65 0.41 0.03 0.07 +sauvagerie sauvagerie nom f s 0.95 7.70 0.95 7.36 +sauvageries sauvagerie nom f p 0.95 7.70 0.00 0.34 +sauvages sauvage adj p 24.68 54.66 8.01 20.20 +sauvagesse sauvagesse nom f s 0.02 0.14 0.02 0.07 +sauvagesses sauvagesse nom f p 0.02 0.14 0.00 0.07 +sauvagin sauvagin nom m s 0.00 1.28 0.00 0.20 +sauvagine sauvagin nom f s 0.00 1.28 0.00 0.68 +sauvagines sauvagin nom f p 0.00 1.28 0.00 0.41 +sauvai sauver ver 246.51 99.05 0.01 0.27 ind:pas:1s; +sauvaient sauver ver 246.51 99.05 0.04 0.88 ind:imp:3p; +sauvais sauver ver 246.51 99.05 0.58 0.54 ind:imp:1s;ind:imp:2s; +sauvait sauver ver 246.51 99.05 0.57 2.43 ind:imp:3s; +sauvant sauver ver 246.51 99.05 1.62 1.15 par:pre; +sauve_qui_peut sauve_qui_peut nom m 0.10 0.68 0.10 0.68 +sauve sauver ver 246.51 99.05 24.34 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sauvegardaient sauvegarder ver 2.77 3.65 0.00 0.07 ind:imp:3p; +sauvegardait sauvegarder ver 2.77 3.65 0.00 0.14 ind:imp:3s; +sauvegardant sauvegarder ver 2.77 3.65 0.00 0.20 par:pre; +sauvegarde sauvegarde nom f s 1.19 2.57 1.03 2.50 +sauvegarder sauvegarder ver 2.77 3.65 1.36 2.03 inf; +sauvegarderaient sauvegarder ver 2.77 3.65 0.00 0.07 cnd:pre:3p; +sauvegarderait sauvegarder ver 2.77 3.65 0.00 0.07 cnd:pre:3s; +sauvegardes sauvegarde nom f p 1.19 2.57 0.16 0.07 +sauvegardât sauvegarder ver 2.77 3.65 0.00 0.07 sub:imp:3s; +sauvegardé sauvegarder ver m s 2.77 3.65 0.94 0.41 par:pas; +sauvegardée sauvegarder ver f s 2.77 3.65 0.14 0.07 par:pas; +sauvegardées sauvegarder ver f p 2.77 3.65 0.07 0.14 par:pas; +sauvegardés sauvegarder ver m p 2.77 3.65 0.07 0.20 par:pas; +sauvent sauver ver 246.51 99.05 1.02 1.28 ind:pre:3p; +sauver sauver ver 246.51 99.05 103.06 36.89 inf;;inf;;inf;; +sauvera sauver ver 246.51 99.05 4.17 1.49 ind:fut:3s; +sauverai sauver ver 246.51 99.05 2.21 0.20 ind:fut:1s; +sauveraient sauver ver 246.51 99.05 0.07 0.20 cnd:pre:3p; +sauverais sauver ver 246.51 99.05 1.21 0.14 cnd:pre:1s;cnd:pre:2s; +sauverait sauver ver 246.51 99.05 1.31 1.55 cnd:pre:3s; +sauveras sauver ver 246.51 99.05 1.18 0.00 ind:fut:2s; +sauverez sauver ver 246.51 99.05 0.68 0.07 ind:fut:2p; +sauverons sauver ver 246.51 99.05 0.42 0.14 ind:fut:1p; +sauveront sauver ver 246.51 99.05 0.39 0.14 ind:fut:3p; +sauves sauver ver 246.51 99.05 3.51 0.47 ind:pre:2s; +sauvetage sauvetage nom m s 8.32 3.72 8.20 3.45 +sauvetages sauvetage nom m p 8.32 3.72 0.12 0.27 +sauveteur sauveteur nom m s 1.38 1.35 0.75 0.27 +sauveteurs sauveteur nom m p 1.38 1.35 0.64 1.08 +sauvette sauveter ver 0.25 3.38 0.25 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sauveté sauveté nom f s 0.00 0.27 0.00 0.27 +sauveur sauveur nom m s 6.93 3.31 5.87 2.77 +sauveurs sauveur nom m p 6.93 3.31 0.82 0.47 +sauveuse sauveur nom f s 6.93 3.31 0.12 0.07 +sauvez sauver ver 246.51 99.05 12.63 1.08 imp:pre:2p;ind:pre:2p; +sauviez sauver ver 246.51 99.05 0.23 0.00 ind:imp:2p; +sauvignon sauvignon nom m s 0.04 0.20 0.04 0.20 +sauvions sauver ver 246.51 99.05 0.17 0.07 ind:imp:1p; +sauvâmes sauver ver 246.51 99.05 0.00 0.07 ind:pas:1p; +sauvons sauver ver 246.51 99.05 1.48 0.27 imp:pre:1p;ind:pre:1p; +sauvât sauver ver 246.51 99.05 0.00 0.20 sub:imp:3s; +sauvèrent sauver ver 246.51 99.05 0.18 0.41 ind:pas:3p; +sauvé sauver ver m s 246.51 99.05 61.62 23.18 par:pas;par:pas;par:pas; +sauvée sauver ver f s 246.51 99.05 12.58 6.35 par:pas; +sauvées sauver ver f p 246.51 99.05 1.35 1.22 par:pas; +sauvés sauver ver m p 246.51 99.05 9.28 5.00 par:pas; +savaient savoir ver_sup 4516.72 2003.58 14.72 30.20 ind:imp:3p; +savais savoir ver_sup 4516.72 2003.58 236.66 132.09 ind:imp:1s;ind:imp:2s; +savait savoir ver_sup 4516.72 2003.58 80.85 237.84 ind:imp:3s; +savamment savamment adv 0.03 4.80 0.03 4.80 +savane savane nom f s 0.34 2.57 0.34 1.76 +savanes savane nom f p 0.34 2.57 0.00 0.81 +savant savant nom m s 5.66 12.03 3.16 5.54 +savantasses savantasse nom m p 0.00 0.07 0.00 0.07 +savante savant adj f s 3.99 17.30 0.44 3.72 +savantes savant adj f p 3.99 17.30 0.24 3.18 +savantissimes savantissime adj p 0.00 0.07 0.00 0.07 +savants savant nom m p 5.66 12.03 2.42 6.42 +savarin savarin nom m s 0.20 0.07 0.20 0.07 +savata savater ver 0.05 0.27 0.00 0.07 ind:pas:3s; +savatait savater ver 0.05 0.27 0.00 0.07 ind:imp:3s; +savate savate nom f s 0.44 3.99 0.30 1.76 +savater savater ver 0.05 0.27 0.02 0.07 inf; +savates savate nom f p 0.44 3.99 0.13 2.23 +savent savoir ver_sup 4516.72 2003.58 64.32 44.53 ind:pre:3p; +savetier savetier nom m s 0.39 0.34 0.39 0.20 +savetiers savetier nom m p 0.39 0.34 0.00 0.14 +saveur saveur nom f s 3.52 12.36 3.11 10.41 +saveurs saveur nom f p 3.52 12.36 0.42 1.96 +savez savoir ver_sup 4516.72 2003.58 407.94 132.91 ind:pre:2p; +saviez savoir ver_sup 4516.72 2003.58 32.68 8.24 ind:imp:2p; +savions savoir ver_sup 4516.72 2003.58 5.30 12.30 ind:imp:1p; +savoir_faire savoir_faire nom m 1.23 2.03 1.23 2.03 +savoir_vivre savoir_vivre nom m 1.67 1.76 1.67 1.76 +savoir savoir ver_sup 4516.72 2003.58 421.10 250.00 inf; +savoirs savoir nom_sup m p 37.32 41.42 0.05 0.47 +savon savon nom m s 16.68 18.04 15.65 16.55 +savonna savonner ver 0.79 4.19 0.00 0.41 ind:pas:3s; +savonnage savonnage nom m s 0.10 0.07 0.10 0.00 +savonnages savonnage nom m p 0.10 0.07 0.00 0.07 +savonnai savonner ver 0.79 4.19 0.00 0.07 ind:pas:1s; +savonnaient savonner ver 0.79 4.19 0.00 0.07 ind:imp:3p; +savonnais savonner ver 0.79 4.19 0.02 0.14 ind:imp:1s;ind:imp:2s; +savonnait savonner ver 0.79 4.19 0.01 0.54 ind:imp:3s; +savonnant savonner ver 0.79 4.19 0.03 0.41 par:pre; +savonne savonner ver 0.79 4.19 0.38 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +savonnent savonner ver 0.79 4.19 0.02 0.14 ind:pre:3p; +savonner savonner ver 0.79 4.19 0.26 1.22 inf; +savonnera savonner ver 0.79 4.19 0.01 0.00 ind:fut:3s; +savonneries savonnerie nom f p 0.00 0.14 0.00 0.14 +savonnette savonnette nom f s 0.72 3.92 0.62 2.84 +savonnettes savonnette nom f p 0.72 3.92 0.10 1.08 +savonneuse savonneux adj f s 0.29 2.23 0.27 1.76 +savonneuses savonneux adj f p 0.29 2.23 0.00 0.34 +savonneux savonneux adj m 0.29 2.23 0.02 0.14 +savonnier savonnier adj m s 0.00 0.07 0.00 0.07 +savonné savonner ver m s 0.79 4.19 0.02 0.47 par:pas; +savonnée savonner ver f s 0.79 4.19 0.04 0.20 par:pas; +savonnées savonner ver f p 0.79 4.19 0.00 0.14 par:pas; +savons savoir ver_sup 4516.72 2003.58 47.84 19.05 ind:pre:1p; +savoura savourer ver 4.24 14.26 0.01 0.47 ind:pas:3s; +savourai savourer ver 4.24 14.26 0.00 0.27 ind:pas:1s; +savouraient savourer ver 4.24 14.26 0.01 0.54 ind:imp:3p; +savourais savourer ver 4.24 14.26 0.14 0.61 ind:imp:1s; +savourait savourer ver 4.24 14.26 0.06 1.69 ind:imp:3s; +savourant savourer ver 4.24 14.26 0.03 2.36 par:pre; +savoure savourer ver 4.24 14.26 1.28 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +savourent savourer ver 4.24 14.26 0.03 0.41 ind:pre:3p; +savourer savourer ver 4.24 14.26 1.71 4.12 inf; +savourera savourer ver 4.24 14.26 0.15 0.07 ind:fut:3s; +savourerai savourer ver 4.24 14.26 0.03 0.00 ind:fut:1s; +savourerait savourer ver 4.24 14.26 0.01 0.07 cnd:pre:3s; +savourerons savourer ver 4.24 14.26 0.01 0.00 ind:fut:1p; +savoureuse savoureux adj f s 1.34 6.89 0.15 1.82 +savoureusement savoureusement adv 0.00 0.14 0.00 0.14 +savoureuses savoureux adj f p 1.34 6.89 0.11 0.68 +savoureux savoureux adj m 1.34 6.89 1.08 4.39 +savourez savourer ver 4.24 14.26 0.46 0.07 imp:pre:2p;ind:pre:2p; +savourions savourer ver 4.24 14.26 0.01 0.14 ind:imp:1p; +savourons savourer ver 4.24 14.26 0.19 0.00 imp:pre:1p;ind:pre:1p; +savourèrent savourer ver 4.24 14.26 0.00 0.07 ind:pas:3p; +savouré savourer ver m s 4.24 14.26 0.10 0.68 par:pas; +savourée savourer ver f s 4.24 14.26 0.01 0.41 par:pas; +savourés savourer ver m p 4.24 14.26 0.01 0.20 par:pas; +savoyard savoyard nom m s 0.50 3.24 0.10 2.91 +savoyarde savoyard nom f s 0.50 3.24 0.14 0.27 +savoyardes savoyard adj f p 0.00 1.42 0.00 0.07 +savoyards savoyard nom m p 0.50 3.24 0.27 0.07 +sax sax nom m 0.36 0.14 0.36 0.14 +saxes saxe nom m p 0.00 0.14 0.00 0.14 +saxhorn saxhorn nom m s 0.40 0.00 0.40 0.00 +saxifragacées saxifragacée nom f p 0.00 0.07 0.00 0.07 +saxifrage saxifrage nom f s 0.00 0.14 0.00 0.07 +saxifrages saxifrage nom f p 0.00 0.14 0.00 0.07 +saxo saxo nom m s 0.73 1.01 0.72 0.81 +saxon saxon adj m s 0.39 0.81 0.19 0.27 +saxonne saxon adj f s 0.39 0.81 0.11 0.20 +saxonnes saxonne nom f p 0.10 0.00 0.10 0.00 +saxons saxon adj m p 0.39 0.81 0.04 0.27 +saxophone saxophone nom m s 1.32 1.28 1.30 1.22 +saxophones saxophone nom m p 1.32 1.28 0.02 0.07 +saxophoniste saxophoniste nom s 0.45 0.14 0.41 0.14 +saxophonistes saxophoniste nom p 0.45 0.14 0.04 0.00 +saxos saxo nom m p 0.73 1.01 0.01 0.20 +saynète saynète nom f s 0.10 0.74 0.06 0.47 +saynètes saynète nom f p 0.10 0.74 0.04 0.27 +sayon sayon nom m s 0.00 0.14 0.00 0.14 +sbire sbire nom m s 1.35 1.62 0.43 0.07 +sbires sbire nom m p 1.35 1.62 0.92 1.55 +scabieuse scabieux adj f s 0.00 0.14 0.00 0.14 +scabreuse scabreux adj f s 0.55 1.49 0.03 0.27 +scabreuses scabreux adj f p 0.55 1.49 0.24 0.14 +scabreux scabreux adj m 0.55 1.49 0.28 1.08 +scaferlati scaferlati nom m s 0.00 0.14 0.00 0.14 +scalaire scalaire nom m s 0.03 0.00 0.03 0.00 +scalp scalp nom m s 1.44 0.74 1.02 0.54 +scalpa scalper ver 1.45 0.47 0.01 0.07 ind:pas:3s; +scalpaient scalper ver 1.45 0.47 0.02 0.07 ind:imp:3p; +scalpait scalper ver 1.45 0.47 0.01 0.00 ind:imp:3s; +scalpe scalper ver 1.45 0.47 0.43 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scalpel scalpel nom m s 2.45 1.01 2.26 0.88 +scalpels scalpel nom m p 2.45 1.01 0.19 0.14 +scalpent scalper ver 1.45 0.47 0.12 0.00 ind:pre:3p; +scalper scalper ver 1.45 0.47 0.35 0.14 inf; +scalpera scalper ver 1.45 0.47 0.01 0.07 ind:fut:3s; +scalpeur scalpeur nom m s 0.01 0.00 0.01 0.00 +scalpez scalper ver 1.45 0.47 0.03 0.00 imp:pre:2p; +scalps scalp nom m p 1.44 0.74 0.42 0.20 +scalpé scalper ver m s 1.45 0.47 0.33 0.14 par:pas; +scalpés scalper ver m p 1.45 0.47 0.14 0.00 par:pas; +scalène scalène adj m s 0.04 0.00 0.04 0.00 +scampi scampi nom m p 0.09 0.07 0.09 0.07 +scanda scander ver 0.36 7.30 0.00 0.34 ind:pas:3s; +scandaient scander ver 0.36 7.30 0.00 0.61 ind:imp:3p; +scandait scander ver 0.36 7.30 0.00 1.01 ind:imp:3s; +scandale scandale nom m s 20.92 24.05 19.09 21.49 +scandales scandale nom m p 20.92 24.05 1.84 2.57 +scandaleuse scandaleux adj f s 4.83 8.31 1.10 3.04 +scandaleusement scandaleusement adv 0.26 0.41 0.26 0.41 +scandaleuses scandaleux adj f p 4.83 8.31 0.28 0.74 +scandaleux scandaleux adj m 4.83 8.31 3.45 4.53 +scandalisa scandaliser ver 1.28 7.30 0.00 0.61 ind:pas:3s; +scandalisai scandaliser ver 1.28 7.30 0.00 0.14 ind:pas:1s; +scandalisaient scandaliser ver 1.28 7.30 0.00 0.34 ind:imp:3p; +scandalisais scandaliser ver 1.28 7.30 0.00 0.20 ind:imp:1s; +scandalisait scandaliser ver 1.28 7.30 0.01 1.08 ind:imp:3s; +scandalisant scandaliser ver 1.28 7.30 0.00 0.20 par:pre; +scandalise scandaliser ver 1.28 7.30 0.18 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scandalisent scandaliser ver 1.28 7.30 0.00 0.34 ind:pre:3p; +scandaliser scandaliser ver 1.28 7.30 0.05 0.74 inf; +scandalisera scandaliser ver 1.28 7.30 0.14 0.00 ind:fut:3s; +scandaliserait scandaliser ver 1.28 7.30 0.00 0.07 cnd:pre:3s; +scandalisons scandaliser ver 1.28 7.30 0.00 0.07 imp:pre:1p; +scandalisèrent scandaliser ver 1.28 7.30 0.00 0.07 ind:pas:3p; +scandalisé scandaliser ver m s 1.28 7.30 0.56 1.69 par:pas; +scandalisée scandaliser ver f s 1.28 7.30 0.29 0.74 par:pas; +scandalisées scandalisé adj f p 0.39 3.04 0.00 0.20 +scandalisés scandalisé adj m p 0.39 3.04 0.32 0.47 +scandant scander ver 0.36 7.30 0.03 1.28 par:pre; +scande scander ver 0.36 7.30 0.01 0.41 imp:pre:2s;ind:pre:3s; +scandent scander ver 0.36 7.30 0.16 0.61 ind:pre:3p; +scander scander ver 0.36 7.30 0.05 0.61 inf; +scandera scander ver 0.36 7.30 0.00 0.07 ind:fut:3s; +scandinave scandinave adj s 0.39 2.43 0.29 1.49 +scandinaves scandinave nom p 0.37 1.28 0.36 0.95 +scandé scander ver m s 0.36 7.30 0.01 0.81 par:pas; +scandée scander ver f s 0.36 7.30 0.00 0.61 par:pas; +scandées scander ver f p 0.36 7.30 0.00 0.34 par:pas; +scandés scander ver m p 0.36 7.30 0.10 0.61 par:pas; +scannage scannage nom m s 0.10 0.00 0.10 0.00 +scannais scanner ver 2.90 0.00 0.01 0.00 ind:imp:1s; +scanne scanner ver 2.90 0.00 0.58 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scannent scanner ver 2.90 0.00 0.13 0.00 ind:pre:3p; +scanner scanner nom m s 8.56 0.14 6.90 0.14 +scannera scanner ver 2.90 0.00 0.02 0.00 ind:fut:3s; +scanneront scanner ver 2.90 0.00 0.01 0.00 ind:fut:3p; +scanners scanner nom m p 8.56 0.14 1.66 0.00 +scannes scanner ver 2.90 0.00 0.06 0.00 ind:pre:2s; +scanneur scanneur nom m s 0.04 0.00 0.04 0.00 +scannez scanner ver 2.90 0.00 0.16 0.00 imp:pre:2p;ind:pre:2p; +scanning scanning nom m s 0.17 0.00 0.17 0.00 +scannons scanner ver 2.90 0.00 0.02 0.00 imp:pre:1p;ind:pre:1p; +scanné scanner ver m s 2.90 0.00 0.54 0.00 par:pas; +scannée scanner ver f s 2.90 0.00 0.10 0.00 par:pas; +scannés scanner ver m p 2.90 0.00 0.11 0.00 par:pas; +scanographie scanographie nom f s 0.08 0.00 0.08 0.00 +scansion scansion nom f s 0.00 0.34 0.00 0.27 +scansions scansion nom f p 0.00 0.34 0.00 0.07 +scaphandre scaphandre nom m s 0.79 0.61 0.49 0.61 +scaphandres scaphandre nom m p 0.79 0.61 0.30 0.00 +scaphandrier scaphandrier nom m s 0.04 0.34 0.03 0.27 +scaphandriers scaphandrier nom m p 0.04 0.34 0.01 0.07 +scaphoïde scaphoïde adj s 0.08 0.00 0.08 0.00 +scapin scapin nom m s 0.00 0.07 0.00 0.07 +scapulaire scapulaire nom m s 0.04 0.68 0.03 0.54 +scapulaires scapulaire nom m p 0.04 0.68 0.01 0.14 +scarabée scarabée nom m s 1.33 1.42 0.60 0.95 +scarabées scarabée nom m p 1.33 1.42 0.73 0.47 +scare scare nom m s 0.06 0.00 0.06 0.00 +scarifiant scarifier ver 0.02 0.14 0.00 0.14 par:pre; +scarification scarification nom f s 0.14 0.07 0.14 0.00 +scarifications scarification nom f p 0.14 0.07 0.00 0.07 +scarifié scarifier ver m s 0.02 0.14 0.02 0.00 par:pas; +scarlatin scarlatine adj m s 0.01 0.00 0.01 0.00 +scarlatine scarlatine nom f s 0.35 1.08 0.35 1.01 +scarlatines scarlatine nom f p 0.35 1.08 0.00 0.07 +scarole scarole nom f s 0.12 0.14 0.12 0.07 +scaroles scarole nom f p 0.12 0.14 0.00 0.07 +scat scat nom m s 0.06 0.00 0.06 0.00 +scato scato adj f s 0.04 0.07 0.04 0.00 +scatologie scatologie nom f s 0.01 0.00 0.01 0.00 +scatologique scatologique adj s 0.03 0.54 0.01 0.20 +scatologiques scatologique adj p 0.03 0.54 0.01 0.34 +scatologue scatologue nom m s 0.00 0.07 0.00 0.07 +scatophiles scatophile adj m p 0.01 0.07 0.01 0.07 +scatos scato adj f p 0.04 0.07 0.00 0.07 +scatter scatter nom m s 0.14 0.00 0.14 0.00 +scazons scazon nom m p 0.00 0.14 0.00 0.14 +sceau sceau nom m s 3.72 4.93 3.54 3.45 +sceaux sceau nom m p 3.72 4.93 0.18 1.49 +scella sceller ver 5.62 7.30 0.02 0.14 ind:pas:3s; +scellage scellage nom m s 0.01 0.00 0.01 0.00 +scellaient sceller ver 5.62 7.30 0.23 0.00 ind:imp:3p; +scellait sceller ver 5.62 7.30 0.11 0.47 ind:imp:3s; +scellant sceller ver 5.62 7.30 0.18 0.41 par:pre; +scelle sceller ver 5.62 7.30 0.63 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scellement scellement nom m s 0.01 0.27 0.01 0.14 +scellements scellement nom m p 0.01 0.27 0.00 0.14 +scellent sceller ver 5.62 7.30 0.23 0.00 ind:pre:3p; +sceller sceller ver 5.62 7.30 0.90 1.08 inf; +scellera sceller ver 5.62 7.30 0.03 0.00 ind:fut:3s; +scellerait sceller ver 5.62 7.30 0.00 0.07 cnd:pre:3s; +scelleront sceller ver 5.62 7.30 0.01 0.14 ind:fut:3p; +scellez sceller ver 5.62 7.30 0.53 0.00 imp:pre:2p; +scellons sceller ver 5.62 7.30 0.16 0.00 imp:pre:1p;ind:pre:1p; +scellèrent sceller ver 5.62 7.30 0.01 0.00 ind:pas:3p; +scellé sceller ver m s 5.62 7.30 1.23 2.16 par:pas; +scellée sceller ver f s 5.62 7.30 0.69 1.42 par:pas; +scellées sceller ver f p 5.62 7.30 0.44 0.61 par:pas; +scellés scellé nom m p 1.91 1.62 1.58 1.55 +scenarii scenarii nom m p 0.00 0.07 0.00 0.07 +scenic_railway scenic_railway nom m s 0.00 0.20 0.00 0.20 +scepticisme scepticisme nom m s 0.62 5.00 0.62 5.00 +sceptique sceptique adj s 2.52 5.81 2.21 4.59 +sceptiques sceptique nom p 0.87 1.22 0.43 0.68 +sceptre sceptre nom m s 1.62 1.69 1.61 1.42 +sceptres sceptre nom m p 1.62 1.69 0.01 0.27 +schah schah nom m s 0.02 0.00 0.02 0.00 +schako schako nom m s 0.00 0.07 0.00 0.07 +schampooing schampooing nom m s 0.00 0.07 0.00 0.07 +schbeb schbeb nom m s 0.00 0.41 0.00 0.41 +scheik scheik nom m s 0.01 0.00 0.01 0.00 +schilling schilling nom m s 1.42 0.00 0.13 0.00 +schillings schilling nom m p 1.42 0.00 1.29 0.00 +schismatique schismatique adj m s 0.00 0.20 0.00 0.14 +schismatiques schismatique adj p 0.00 0.20 0.00 0.07 +schisme schisme nom m s 0.32 0.81 0.09 0.61 +schismes schisme nom m p 0.32 0.81 0.23 0.20 +schiste schiste nom m s 0.07 1.28 0.05 1.01 +schistes schiste nom m p 0.07 1.28 0.02 0.27 +schisteuses schisteux adj f p 0.00 0.07 0.00 0.07 +schizoïde schizoïde adj s 0.14 0.14 0.14 0.07 +schizoïdes schizoïde adj m p 0.14 0.14 0.00 0.07 +schizophasie schizophasie nom f s 0.01 0.00 0.01 0.00 +schizophrène schizophrène adj s 1.09 0.41 1.03 0.27 +schizophrènes schizophrène nom p 0.93 0.88 0.49 0.34 +schizophrénie schizophrénie nom f s 1.83 0.95 1.83 0.95 +schizophrénique schizophrénique adj s 0.14 0.14 0.13 0.07 +schizophréniques schizophrénique adj p 0.14 0.14 0.01 0.07 +schlague schlague nom f s 0.00 0.20 0.00 0.20 +schlass schlass nom m 0.14 0.07 0.14 0.07 +schlem schlem nom m s 0.06 0.07 0.06 0.07 +schleu schleu adj m s 0.03 0.07 0.03 0.07 +schlinguait schlinguer ver 0.32 1.01 0.02 0.20 ind:imp:3s; +schlinguant schlinguer ver 0.32 1.01 0.00 0.07 par:pre; +schlingue schlinguer ver 0.32 1.01 0.23 0.54 imp:pre:2s;ind:pre:3s; +schlinguer schlinguer ver 0.32 1.01 0.02 0.14 inf; +schlingues schlinguer ver 0.32 1.01 0.05 0.07 ind:pre:2s; +schlitte schlitte nom f s 0.00 0.07 0.00 0.07 +schmecte schmecter ver 0.00 0.07 0.00 0.07 ind:pre:3s; +schnaps schnaps nom m 1.86 1.08 1.86 1.08 +schnauzer schnauzer nom m s 0.04 0.00 0.04 0.00 +schnick schnick nom m s 0.00 0.14 0.00 0.14 +schnitzel schnitzel nom m s 0.46 0.00 0.46 0.00 +schnock schnock nom s 1.06 0.81 0.93 0.81 +schnocks schnock nom p 1.06 0.81 0.14 0.00 +schnoque schnoque nom s 0.26 0.47 0.25 0.34 +schnoques schnoque nom p 0.26 0.47 0.01 0.14 +schnouf schnouf nom f s 0.01 0.00 0.01 0.00 +schnouff schnouff nom f s 0.01 0.00 0.01 0.00 +schnouffe schnouffer ver 0.01 0.07 0.01 0.07 ind:pre:3s; +schooner schooner nom m s 0.04 0.00 0.03 0.00 +schooners schooner nom m p 0.04 0.00 0.01 0.00 +schpile schpile nom m s 0.00 1.28 0.00 1.28 +schproum schproum nom m s 0.00 0.41 0.00 0.41 +schème schème nom m s 0.00 0.14 0.00 0.07 +schèmes schème nom m p 0.00 0.14 0.00 0.07 +schtroumf schtroumf nom m s 0.02 0.00 0.02 0.00 +schtroumpf schtroumpf nom m s 0.55 0.14 0.19 0.07 +schtroumpfs schtroumpf nom m p 0.55 0.14 0.37 0.07 +schéma schéma nom m s 4.03 2.64 3.02 1.82 +schémas schéma nom m p 4.03 2.64 1.01 0.81 +schématique schématique adj s 0.12 0.68 0.12 0.41 +schématiquement schématiquement adv 0.01 0.61 0.01 0.61 +schématiques schématique adj f p 0.12 0.68 0.00 0.27 +schématise schématiser ver 0.05 0.14 0.02 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +schématiser schématiser ver 0.05 0.14 0.03 0.00 inf; +schématisme schématisme nom m s 0.00 0.07 0.00 0.07 +schématisée schématiser ver f s 0.05 0.14 0.00 0.07 par:pas; +schupo schupo nom m s 0.00 0.54 0.00 0.41 +schupos schupo nom m p 0.00 0.54 0.00 0.14 +schuss schuss nom m 0.14 0.41 0.14 0.41 +scia scier ver 5.01 9.86 0.01 0.14 ind:pas:3s; +sciage sciage nom m s 0.06 0.14 0.06 0.14 +sciaient scier ver 5.01 9.86 0.00 0.20 ind:imp:3p; +sciais scier ver 5.01 9.86 0.02 0.07 ind:imp:1s;ind:imp:2s; +sciait scier ver 5.01 9.86 0.01 1.69 ind:imp:3s; +scialytique scialytique adj m s 0.00 0.27 0.00 0.27 +sciant scier ver 5.01 9.86 0.01 0.20 par:pre; +sciatique sciatique nom s 0.57 0.20 0.57 0.20 +scie scie nom f s 5.36 10.07 5.21 8.11 +sciemment sciemment adv 0.48 1.49 0.48 1.49 +science_fiction science_fiction nom f s 2.36 1.22 2.36 1.22 +science science nom f s 32.97 31.08 25.28 24.93 +sciences science nom f p 32.97 31.08 7.69 6.15 +scient scier ver 5.01 9.86 0.05 0.14 ind:pre:3p; +scientificité scientificité nom f s 0.01 0.00 0.01 0.00 +scientifique scientifique adj s 17.07 6.55 13.62 4.46 +scientifiquement scientifiquement adv 2.22 1.08 2.22 1.08 +scientifiques scientifique nom p 14.59 1.42 6.40 0.74 +scientisme scientisme nom m s 0.02 0.00 0.02 0.00 +scientiste scientiste adj s 0.15 0.14 0.15 0.14 +scientologie scientologie nom f s 0.30 0.00 0.30 0.00 +scientologue scientologue nom s 0.20 0.00 0.07 0.00 +scientologues scientologue nom p 0.20 0.00 0.13 0.00 +scier scier ver 5.01 9.86 1.12 2.43 inf; +sciera scier ver 5.01 9.86 0.01 0.07 ind:fut:3s; +scierait scier ver 5.01 9.86 0.02 0.00 cnd:pre:3s; +scierie scierie nom f s 0.92 2.30 0.76 1.96 +scieries scierie nom f p 0.92 2.30 0.16 0.34 +scieront scier ver 5.01 9.86 0.01 0.00 ind:fut:3p; +scies scier ver 5.01 9.86 0.28 0.07 ind:pre:2s; +scieur scieur nom m s 0.01 0.54 0.00 0.47 +scieurs scieur nom m p 0.01 0.54 0.01 0.07 +sciez scier ver 5.01 9.86 0.12 0.07 imp:pre:2p;ind:pre:2p; +scindaient scinder ver 0.52 1.49 0.00 0.07 ind:imp:3p; +scindait scinder ver 0.52 1.49 0.00 0.34 ind:imp:3s; +scindant scinder ver 0.52 1.49 0.00 0.07 par:pre; +scinde scinder ver 0.52 1.49 0.41 0.34 ind:pre:3s; +scinder scinder ver 0.52 1.49 0.05 0.14 inf; +scinderas scinder ver 0.52 1.49 0.01 0.00 ind:fut:2s; +scindez scinder ver 0.52 1.49 0.01 0.00 imp:pre:2p; +scindèrent scinder ver 0.52 1.49 0.00 0.07 ind:pas:3p; +scindé scinder ver m s 0.52 1.49 0.02 0.20 par:pas; +scindée scinder ver f s 0.52 1.49 0.01 0.20 par:pas; +scindés scinder ver m p 0.52 1.49 0.00 0.07 par:pas; +scintigraphie scintigraphie nom f s 0.36 0.00 0.36 0.00 +scintillaient scintiller ver 1.77 12.36 0.01 2.64 ind:imp:3p; +scintillait scintiller ver 1.77 12.36 0.19 2.84 ind:imp:3s; +scintillant scintillant adj m s 1.10 6.01 0.35 1.28 +scintillante scintillant adj f s 1.10 6.01 0.24 2.91 +scintillantes scintillant adj f p 1.10 6.01 0.40 1.15 +scintillants scintillant adj m p 1.10 6.01 0.11 0.68 +scintillation scintillation nom f s 0.00 0.41 0.00 0.07 +scintillations scintillation nom f p 0.00 0.41 0.00 0.34 +scintille scintiller ver 1.77 12.36 0.88 1.89 imp:pre:2s;ind:pre:3s; +scintillement scintillement nom m s 0.23 4.53 0.17 3.24 +scintillements scintillement nom m p 0.23 4.53 0.05 1.28 +scintillent scintiller ver 1.77 12.36 0.32 1.35 ind:pre:3p; +scintiller scintiller ver 1.77 12.36 0.24 1.49 inf; +scintilleraient scintiller ver 1.77 12.36 0.01 0.07 cnd:pre:3p; +scintillerais scintiller ver 1.77 12.36 0.00 0.07 cnd:pre:1s; +scintilleront scintiller ver 1.77 12.36 0.00 0.07 ind:fut:3p; +scintilles scintiller ver 1.77 12.36 0.02 0.07 ind:pre:2s; +scintillons scintiller ver 1.77 12.36 0.02 0.00 ind:pre:1p; +scintillèrent scintiller ver 1.77 12.36 0.00 0.14 ind:pas:3p; +scintillé scintiller ver m s 1.77 12.36 0.00 0.14 par:pas; +scion scion nom m s 0.28 0.61 0.27 0.47 +scions scion nom m p 0.28 0.61 0.01 0.14 +scirpe scirpe nom m s 0.01 0.07 0.01 0.00 +scirpes scirpe nom m p 0.01 0.07 0.00 0.07 +scission scission nom f s 0.03 0.68 0.03 0.68 +scissionniste scissionniste adj m s 0.00 0.07 0.00 0.07 +scissiparité scissiparité nom f s 0.01 0.00 0.01 0.00 +scissures scissure nom f p 0.00 0.07 0.00 0.07 +sciène sciène nom f s 0.14 0.00 0.14 0.00 +scièrent scier ver 5.01 9.86 0.01 0.00 ind:pas:3p; +scié scier ver m s 5.01 9.86 1.25 2.30 par:pas; +sciée scier ver f s 5.01 9.86 0.45 0.54 par:pas; +sciées scier ver f p 5.01 9.86 0.01 0.41 par:pas; +sciure sciure nom f s 0.69 6.08 0.69 6.01 +sciures sciure nom f p 0.69 6.08 0.00 0.07 +sciés scier ver m p 5.01 9.86 0.50 0.47 par:pas; +scléreux scléreux adj m 0.01 0.00 0.01 0.00 +sclérodermie sclérodermie nom f s 0.03 0.00 0.03 0.00 +sclérosante sclérosant adj f s 0.01 0.00 0.01 0.00 +sclérose sclérose nom f s 0.79 0.88 0.79 0.81 +scléroserai scléroser ver 0.16 0.34 0.01 0.00 ind:fut:1s; +scléroses sclérose nom f p 0.79 0.88 0.00 0.07 +sclérosé scléroser ver m s 0.16 0.34 0.14 0.20 par:pas; +sclérosée scléroser ver f s 0.16 0.34 0.00 0.14 par:pas; +sclérosés sclérosé adj m p 0.02 0.20 0.00 0.07 +sclérotique sclérotique nom f s 0.00 0.54 0.00 0.41 +sclérotiques sclérotique nom f p 0.00 0.54 0.00 0.14 +scolaire scolaire adj s 7.00 14.12 5.61 9.66 +scolairement scolairement adv 0.01 0.07 0.01 0.07 +scolaires scolaire adj p 7.00 14.12 1.39 4.46 +scolarisation scolarisation nom f s 0.01 0.07 0.01 0.07 +scolariser scolariser ver 0.01 0.00 0.01 0.00 inf; +scolarité scolarité nom f s 1.63 0.81 1.61 0.81 +scolarités scolarité nom f p 1.63 0.81 0.02 0.00 +scolastique scolastique adj m s 0.01 0.20 0.01 0.14 +scolastiques scolastique adj f p 0.01 0.20 0.00 0.07 +scolie scolie nom s 0.00 0.47 0.00 0.47 +scoliose scoliose nom f s 0.24 0.34 0.23 0.27 +scolioses scoliose nom f p 0.24 0.34 0.01 0.07 +scolopendre scolopendre nom f s 0.00 0.34 0.00 0.07 +scolopendres scolopendre nom f p 0.00 0.34 0.00 0.27 +scolyte scolyte nom m s 0.01 0.00 0.01 0.00 +scone scone nom m s 0.45 0.20 0.11 0.00 +scones scone nom m p 0.45 0.20 0.34 0.20 +sconse sconse nom m s 0.04 0.00 0.04 0.00 +scoop scoop nom m s 5.29 1.22 5.12 1.08 +scoops scoop nom m p 5.29 1.22 0.17 0.14 +scooter scooter nom m s 3.62 2.77 3.41 2.30 +scooters scooter nom m p 3.62 2.77 0.20 0.47 +scope scope nom m s 0.41 0.07 0.36 0.07 +scopes scope nom m p 0.41 0.07 0.04 0.00 +scopie scopie nom f s 0.01 0.00 0.01 0.00 +scopitones scopitone nom m p 0.00 0.07 0.00 0.07 +scopolamine scopolamine nom f s 0.02 0.00 0.02 0.00 +scorbut scorbut nom m s 0.46 0.95 0.46 0.95 +score score nom m s 5.92 0.74 5.29 0.61 +scores score nom m p 5.92 0.74 0.64 0.14 +scories scorie nom f p 0.17 0.74 0.17 0.74 +scorpion scorpion nom m s 3.54 2.64 1.78 0.88 +scorpions scorpion nom m p 3.54 2.64 1.75 1.76 +scotch_terrier scotch_terrier nom m s 0.01 0.00 0.01 0.00 +scotch scotch nom m s 9.45 6.35 9.30 6.28 +scotchais scotcher ver 1.63 0.74 0.01 0.00 ind:imp:1s; +scotcher scotcher ver 1.63 0.74 0.17 0.00 inf; +scotches scotcher ver 1.63 0.74 0.10 0.20 ind:pre:2s; +scotchons scotcher ver 1.63 0.74 0.00 0.07 ind:pre:1p; +scotchs scotch nom m p 9.45 6.35 0.15 0.07 +scotché scotcher ver m s 1.63 0.74 0.85 0.20 par:pas; +scotchée scotcher ver f s 1.63 0.74 0.26 0.07 par:pas; +scotchées scotcher ver f p 1.63 0.74 0.04 0.00 par:pas; +scotchés scotcher ver m p 1.63 0.74 0.20 0.20 par:pas; +scotomisant scotomiser ver 0.00 0.14 0.00 0.07 par:pre; +scotomiser scotomiser ver 0.00 0.14 0.00 0.07 inf; +scottish scottish nom f s 0.14 0.14 0.14 0.14 +scoubidou scoubidou nom m s 0.23 0.34 0.20 0.27 +scoubidous scoubidou nom m p 0.23 0.34 0.03 0.07 +scoumoune scoumoune nom f s 0.10 0.20 0.10 0.20 +scout scout adj m s 1.94 2.50 1.63 1.62 +scoute scout adj f s 1.94 2.50 0.07 0.41 +scoutisme scoutisme nom m s 0.05 0.54 0.05 0.54 +scouts scout nom m p 3.73 2.09 2.48 1.08 +scrabble scrabble nom m s 1.39 0.20 1.39 0.20 +scratch scratch nom m s 0.41 0.07 0.41 0.07 +scratcher scratcher ver 0.02 0.00 0.02 0.00 inf; +scratching scratching nom m s 0.17 0.00 0.17 0.00 +scriban scriban nom m s 0.00 0.07 0.00 0.07 +scribe scribe nom m s 2.05 3.18 0.65 1.55 +scribes scribe nom m p 2.05 3.18 1.40 1.62 +scribouillages scribouillage nom m p 0.00 0.07 0.00 0.07 +scribouillard scribouillard nom m s 0.17 1.01 0.06 0.88 +scribouillards scribouillard nom m p 0.17 1.01 0.11 0.14 +scribouille scribouiller ver 0.03 0.20 0.02 0.07 ind:pre:1s;ind:pre:3s; +scribouiller scribouiller ver 0.03 0.20 0.01 0.14 inf; +script_girl script_girl nom f s 0.00 0.20 0.00 0.20 +script script nom m s 6.45 0.41 5.73 0.41 +scripte scripte nom s 1.23 0.00 1.23 0.00 +scripteur scripteur nom m s 0.00 0.14 0.00 0.07 +scripteurs scripteur nom m p 0.00 0.14 0.00 0.07 +scripts script nom m p 6.45 0.41 0.72 0.00 +scrofulaire scrofulaire nom f s 0.01 0.00 0.01 0.00 +scrofule scrofule nom f s 0.03 0.14 0.02 0.07 +scrofules scrofule nom f p 0.03 0.14 0.01 0.07 +scrofuleux scrofuleux adj m s 0.02 0.34 0.02 0.34 +scrogneugneu scrogneugneu ono 0.00 0.20 0.00 0.20 +scrotal scrotal adj m s 0.01 0.00 0.01 0.00 +scrotum scrotum nom m s 0.77 0.07 0.77 0.07 +scrub scrub nom m s 2.72 0.07 0.07 0.00 +scrubs scrub nom m p 2.72 0.07 2.66 0.07 +scrupule scrupule nom m s 6.66 16.42 0.94 6.28 +scrupules scrupule nom m p 6.66 16.42 5.71 10.14 +scrupuleuse scrupuleux adj f s 0.76 3.78 0.11 1.28 +scrupuleusement scrupuleusement adv 0.56 3.04 0.56 3.04 +scrupuleuses scrupuleux adj f p 0.76 3.78 0.01 0.07 +scrupuleux scrupuleux adj m 0.76 3.78 0.64 2.43 +scrupulosité scrupulosité nom f s 0.01 0.00 0.01 0.00 +scruta scruter ver 2.30 15.54 0.00 1.89 ind:pas:3s; +scrutai scruter ver 2.30 15.54 0.00 0.20 ind:pas:1s; +scrutaient scruter ver 2.30 15.54 0.10 0.41 ind:imp:3p; +scrutais scruter ver 2.30 15.54 0.03 0.41 ind:imp:1s; +scrutait scruter ver 2.30 15.54 0.16 2.36 ind:imp:3s; +scrutant scruter ver 2.30 15.54 0.26 2.70 par:pre; +scrutateur scrutateur adj m s 0.39 0.41 0.39 0.20 +scrutateurs scrutateur adj m p 0.39 0.41 0.00 0.14 +scrutation scrutation nom f s 0.04 0.00 0.04 0.00 +scrutatrices scrutateur adj f p 0.39 0.41 0.00 0.07 +scrute scruter ver 2.30 15.54 0.59 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scrutent scruter ver 2.30 15.54 0.17 0.47 ind:pre:3p; +scruter scruter ver 2.30 15.54 0.47 2.91 inf; +scrutera scruter ver 2.30 15.54 0.01 0.07 ind:fut:3s; +scruterai scruter ver 2.30 15.54 0.01 0.00 ind:fut:1s; +scruterait scruter ver 2.30 15.54 0.00 0.07 cnd:pre:3s; +scruteront scruter ver 2.30 15.54 0.01 0.00 ind:fut:3p; +scrutez scruter ver 2.30 15.54 0.06 0.00 imp:pre:2p;ind:pre:2p; +scrutin scrutin nom m s 0.71 1.49 0.62 1.28 +scrutins scrutin nom m p 0.71 1.49 0.09 0.20 +scrutions scruter ver 2.30 15.54 0.00 0.20 ind:imp:1p; +scrutâmes scruter ver 2.30 15.54 0.00 0.14 ind:pas:1p; +scrutons scruter ver 2.30 15.54 0.02 0.00 imp:pre:1p;ind:pre:1p; +scrutèrent scruter ver 2.30 15.54 0.00 0.07 ind:pas:3p; +scruté scruter ver m s 2.30 15.54 0.38 0.74 par:pas; +scrutée scruter ver f s 2.30 15.54 0.02 0.07 par:pas; +scrutés scruter ver m p 2.30 15.54 0.01 0.20 par:pas; +scène_clé scène_clé nom f s 0.01 0.00 0.01 0.00 +scène scène nom f s 107.96 114.93 96.66 95.27 +scènes_clé scènes_clé nom f p 0.01 0.00 0.01 0.00 +scènes scène nom f p 107.96 114.93 11.30 19.66 +sculpta sculpter ver 2.92 13.72 0.04 0.34 ind:pas:3s; +sculptaient sculpter ver 2.92 13.72 0.00 0.07 ind:imp:3p; +sculptais sculpter ver 2.92 13.72 0.11 0.07 ind:imp:1s; +sculptait sculpter ver 2.92 13.72 0.02 1.15 ind:imp:3s; +sculptant sculpter ver 2.92 13.72 0.10 0.41 par:pre; +sculpte sculpter ver 2.92 13.72 0.63 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sculptent sculpter ver 2.92 13.72 0.03 0.14 ind:pre:3p; +sculpter sculpter ver 2.92 13.72 0.87 2.16 inf; +sculptera sculpter ver 2.92 13.72 0.01 0.14 ind:fut:3s; +sculpterai sculpter ver 2.92 13.72 0.02 0.00 ind:fut:1s; +sculpterait sculpter ver 2.92 13.72 0.00 0.07 cnd:pre:3s; +sculpteras sculpter ver 2.92 13.72 0.01 0.07 ind:fut:2s; +sculpterez sculpter ver 2.92 13.72 0.01 0.07 ind:fut:2p; +sculptes sculpter ver 2.92 13.72 0.14 0.20 ind:pre:2s; +sculpteur sculpteur nom m s 3.63 7.50 3.31 4.93 +sculpteurs sculpteur nom m p 3.63 7.50 0.29 2.57 +sculptez sculpter ver 2.92 13.72 0.04 0.07 imp:pre:2p;ind:pre:2p; +sculptiez sculpter ver 2.92 13.72 0.00 0.07 ind:imp:2p; +sculptâtes sculpter ver 2.92 13.72 0.00 0.07 ind:pas:2p; +sculptrice sculpteur nom f s 3.63 7.50 0.02 0.00 +sculpté sculpter ver m s 2.92 13.72 0.56 3.38 par:pas; +sculptée sculpté adj f s 0.50 7.23 0.15 1.28 +sculptées sculpter ver f p 2.92 13.72 0.17 0.74 par:pas; +sculptural sculptural adj m s 0.02 0.68 0.00 0.20 +sculpturale sculptural adj f s 0.02 0.68 0.02 0.34 +sculpturales sculptural adj f p 0.02 0.68 0.00 0.07 +sculpturaux sculptural adj m p 0.02 0.68 0.00 0.07 +sculpture sculpture nom f s 7.12 7.91 5.48 3.78 +sculptures sculpture nom f p 7.12 7.91 1.64 4.12 +sculptés sculpter ver m p 2.92 13.72 0.06 1.76 par:pas; +scélérat scélérat nom m s 2.87 0.74 2.19 0.27 +scélérate scélérat adj f s 1.05 0.27 0.12 0.00 +scélérates scélérat adj f p 1.05 0.27 0.01 0.07 +scélératesse scélératesse nom f s 0.00 0.14 0.00 0.07 +scélératesses scélératesse nom f p 0.00 0.14 0.00 0.07 +scélérats scélérat nom m p 2.87 0.74 0.66 0.47 +scénar scénar nom m s 0.51 0.34 0.46 0.34 +scénarii scénario nom m p 19.14 9.26 0.00 0.07 +scénarimage scénarimage nom m s 0.01 0.00 0.01 0.00 +scénario scénario nom m s 19.14 9.26 16.70 8.18 +scénarios scénario nom m p 19.14 9.26 2.44 1.01 +scénariste scénariste nom s 2.70 0.68 1.98 0.41 +scénaristes scénariste nom p 2.70 0.68 0.72 0.27 +scénaristique scénaristique adj f s 0.01 0.14 0.01 0.14 +scénars scénar nom m p 0.51 0.34 0.04 0.00 +scénique scénique adj f s 0.12 0.20 0.11 0.00 +scéniques scénique adj p 0.12 0.20 0.01 0.20 +scénographe scénographe nom s 0.03 0.00 0.03 0.00 +scénographie scénographie nom f s 0.35 0.07 0.35 0.07 +scénographique scénographique adj m s 0.01 0.00 0.01 0.00 +scutigère scutigère nom f s 0.00 0.61 0.00 0.54 +scutigères scutigère nom f p 0.00 0.61 0.00 0.07 +scythe scythe adj s 0.04 0.34 0.04 0.20 +scythes scythe adj m p 0.04 0.34 0.00 0.14 +se se pro_per 2813.77 6587.77 2813.77 6587.77 +señor señor nom m s 9.75 0.00 9.75 0.00 +seaborgium seaborgium nom m s 0.10 0.00 0.10 0.00 +seau seau nom m s 9.01 24.05 7.02 14.73 +seaux seau nom m p 9.01 24.05 2.00 9.32 +sec sec adj m s 43.02 142.84 27.40 72.30 +secco secco nom m s 0.00 0.61 0.00 0.34 +seccos secco nom m p 0.00 0.61 0.00 0.27 +seccotine seccotine nom f s 0.00 0.34 0.00 0.34 +second_maître second_maître nom m s 0.05 0.07 0.05 0.07 +second second adj m s 52.50 88.58 15.32 32.30 +secondaient seconder ver 1.76 5.00 0.00 0.07 ind:imp:3p; +secondaire secondaire adj s 8.06 8.65 4.16 5.07 +secondairement secondairement adv 0.00 0.27 0.00 0.27 +secondaires secondaire adj p 8.06 8.65 3.91 3.58 +secondais seconder ver 1.76 5.00 0.03 0.00 ind:imp:1s; +secondait seconder ver 1.76 5.00 0.10 0.41 ind:imp:3s; +secondant seconder ver 1.76 5.00 0.00 0.07 par:pre; +seconde seconde nom f s 124.54 121.49 72.34 66.22 +secondement secondement adv 0.00 0.14 0.00 0.14 +secondent seconder ver 1.76 5.00 0.01 0.27 ind:pre:3p; +seconder seconder ver 1.76 5.00 0.37 1.96 inf; +secondera seconder ver 1.76 5.00 0.07 0.00 ind:fut:3s; +seconderai seconder ver 1.76 5.00 0.03 0.00 ind:fut:1s; +seconderas seconder ver 1.76 5.00 0.02 0.00 ind:fut:2s; +seconderez seconder ver 1.76 5.00 0.02 0.00 ind:fut:2p; +seconderont seconder ver 1.76 5.00 0.02 0.00 ind:fut:3p; +secondes seconde nom f p 124.54 121.49 52.20 55.27 +secondo secondo nom m s 0.20 0.07 0.20 0.07 +seconds second adj m p 52.50 88.58 0.28 0.34 +secondé seconder ver m s 1.76 5.00 0.24 1.01 par:pas; +secondée seconder ver f s 1.76 5.00 0.01 0.34 par:pas; +secondés seconder ver m p 1.76 5.00 0.04 0.20 par:pas; +secoua secouer ver 19.00 116.35 0.26 25.68 ind:pas:3s; +secouai secouer ver 19.00 116.35 0.01 1.82 ind:pas:1s; +secouaient secouer ver 19.00 116.35 0.01 3.24 ind:imp:3p; +secouais secouer ver 19.00 116.35 0.04 0.47 ind:imp:1s;ind:imp:2s; +secouait secouer ver 19.00 116.35 0.67 12.84 ind:imp:3s; +secouant secouer ver 19.00 116.35 0.39 11.49 par:pre; +secouassent secouer ver 19.00 116.35 0.00 0.07 sub:imp:3p; +secoue secouer ver 19.00 116.35 4.77 17.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +secouement secouement nom m s 0.00 0.07 0.00 0.07 +secouent secouer ver 19.00 116.35 0.29 1.76 ind:pre:3p; +secouer secouer ver 19.00 116.35 4.50 14.19 ind:pre:2p;inf; +secouera secouer ver 19.00 116.35 0.04 0.14 ind:fut:3s; +secouerai secouer ver 19.00 116.35 0.02 0.14 ind:fut:1s; +secoueraient secouer ver 19.00 116.35 0.01 0.14 cnd:pre:3p; +secouerais secouer ver 19.00 116.35 0.01 0.14 cnd:pre:1s; +secouerait secouer ver 19.00 116.35 0.04 0.41 cnd:pre:3s; +secouerez secouer ver 19.00 116.35 0.01 0.00 ind:fut:2p; +secoueront secouer ver 19.00 116.35 0.01 0.07 ind:fut:3p; +secoues secouer ver 19.00 116.35 0.56 0.20 ind:pre:2s; +secoueur secoueur nom m s 0.09 0.07 0.02 0.07 +secoueurs secoueur nom m p 0.09 0.07 0.06 0.00 +secouez secouer ver 19.00 116.35 1.24 0.61 imp:pre:2p;ind:pre:2p; +secouions secouer ver 19.00 116.35 0.00 0.14 ind:imp:1p; +secouâmes secouer ver 19.00 116.35 0.00 0.27 ind:pas:1p; +secouons secouer ver 19.00 116.35 0.04 0.14 imp:pre:1p;ind:pre:1p; +secourût secourir ver 6.05 4.93 0.00 0.14 sub:imp:3s; +secourable secourable adj s 0.69 1.42 0.66 1.22 +secourables secourable adj p 0.69 1.42 0.03 0.20 +secouraient secourir ver 6.05 4.93 0.00 0.07 ind:imp:3p; +secourait secourir ver 6.05 4.93 0.02 0.07 ind:imp:3s; +secourant secourir ver 6.05 4.93 0.12 0.00 par:pre; +secoures secourir ver 6.05 4.93 0.11 0.00 sub:pre:2s; +secourez secourir ver 6.05 4.93 0.74 0.00 imp:pre:2p;ind:pre:2p; +secourions secourir ver 6.05 4.93 0.03 0.07 ind:imp:1p; +secourir secourir ver 6.05 4.93 2.97 2.64 inf; +secourisme secourisme nom m s 0.26 0.07 0.26 0.07 +secouriste secouriste nom s 0.94 0.34 0.43 0.20 +secouristes secouriste nom p 0.94 0.34 0.51 0.14 +secourra secourir ver 6.05 4.93 0.01 0.00 ind:fut:3s; +secours secours nom m 70.36 40.47 70.36 40.47 +secourt secourir ver 6.05 4.93 0.06 0.00 ind:pre:3s; +secouru secourir ver m s 6.05 4.93 1.10 0.88 par:pas; +secourue secourir ver f s 6.05 4.93 0.30 0.54 par:pas; +secourues secourir ver f p 6.05 4.93 0.02 0.14 par:pas; +secourus secourir ver m p 6.05 4.93 0.31 0.00 par:pas; +secourut secourir ver 6.05 4.93 0.00 0.20 ind:pas:3s; +secousse secousse nom f s 2.59 16.28 1.44 8.72 +secousses secousse nom f p 2.59 16.28 1.15 7.57 +secouèrent secouer ver 19.00 116.35 0.01 0.81 ind:pas:3p; +secoué secouer ver m s 19.00 116.35 3.96 13.99 par:pas; +secouée secouer ver f s 19.00 116.35 1.49 6.35 par:pas; +secouées secouer ver f p 19.00 116.35 0.04 0.81 par:pas; +secoués secouer ver m p 19.00 116.35 0.59 2.84 par:pas; +secret secret nom m s 103.49 96.01 81.34 70.81 +secrets secret nom m p 103.49 96.01 22.15 25.20 +secrète secret adj f s 62.68 83.11 14.43 28.51 +secrètement secrètement adv 3.20 13.04 3.20 13.04 +secrètent secréter ver 0.52 0.74 0.04 0.00 ind:pre:3p; +secrètes secret adj f p 62.68 83.11 3.79 10.47 +secrétaient secréter ver 0.52 0.74 0.00 0.07 ind:imp:3p; +secrétaire secrétaire nom s 31.22 43.78 29.43 38.58 +secrétairerie secrétairerie nom f s 0.00 0.07 0.00 0.07 +secrétaires secrétaire nom p 31.22 43.78 1.79 5.20 +secrétariat secrétariat nom m s 1.43 3.31 1.43 3.24 +secrétariats secrétariat nom m p 1.43 3.31 0.00 0.07 +secréter secréter ver 0.52 0.74 0.01 0.07 inf; +secrété secréter ver m s 0.52 0.74 0.01 0.14 par:pas; +secrétée secréter ver f s 0.52 0.74 0.01 0.07 par:pas; +secs sec adj m p 43.02 142.84 4.91 17.09 +sectaire sectaire adj s 0.35 0.68 0.22 0.34 +sectaires sectaire adj p 0.35 0.68 0.13 0.34 +sectarisme sectarisme nom m s 0.06 0.34 0.06 0.34 +sectateur sectateur nom m s 0.01 0.34 0.00 0.14 +sectateurs sectateur nom m p 0.01 0.34 0.01 0.20 +secte secte nom f s 5.02 4.19 4.15 3.11 +sectes secte nom f p 5.02 4.19 0.87 1.08 +secteur secteur nom m s 26.50 20.34 24.57 18.45 +secteurs secteur nom m p 26.50 20.34 1.93 1.89 +section section nom f s 20.34 22.23 18.03 16.35 +sectionna sectionner ver 1.75 1.89 0.00 0.14 ind:pas:3s; +sectionnaient sectionner ver 1.75 1.89 0.00 0.07 ind:imp:3p; +sectionnant sectionner ver 1.75 1.89 0.04 0.00 par:pre; +sectionne sectionner ver 1.75 1.89 0.27 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sectionnement sectionnement nom m s 0.01 0.07 0.01 0.07 +sectionnent sectionner ver 1.75 1.89 0.00 0.14 ind:pre:3p; +sectionner sectionner ver 1.75 1.89 0.33 0.07 inf; +sectionnera sectionner ver 1.75 1.89 0.02 0.00 ind:fut:3s; +sectionnez sectionner ver 1.75 1.89 0.06 0.00 imp:pre:2p; +sectionné sectionner ver m s 1.75 1.89 0.53 0.54 par:pas; +sectionnée sectionner ver f s 1.75 1.89 0.34 0.41 par:pas; +sectionnées sectionner ver f p 1.75 1.89 0.06 0.20 par:pas; +sectionnés sectionner ver m p 1.75 1.89 0.09 0.14 par:pas; +sections section nom f p 20.34 22.23 2.31 5.88 +sectorielles sectoriel adj f p 0.00 0.14 0.00 0.07 +sectoriels sectoriel adj m p 0.00 0.14 0.00 0.07 +sectorisation sectorisation nom f s 0.01 0.00 0.01 0.00 +secundo secundo adv_sup 1.64 0.88 1.64 0.88 +sedan sedan nom m s 0.04 0.07 0.04 0.07 +sedia_gestatoria sedia_gestatoria nom f 0.00 0.20 0.00 0.20 +sedums sedum nom m p 0.00 0.07 0.00 0.07 +seersucker seersucker nom m s 0.02 0.00 0.02 0.00 +segment segment nom m s 0.69 1.42 0.36 0.88 +segmentaire segmentaire adj s 0.03 0.00 0.03 0.00 +segmentale segmental adj f s 0.01 0.00 0.01 0.00 +segmentez segmenter ver 0.03 0.00 0.01 0.00 imp:pre:2p; +segments segment nom m p 0.69 1.42 0.33 0.54 +segmenté segmenter ver m s 0.03 0.00 0.01 0.00 par:pas; +seguedilla seguedilla nom f s 0.00 0.20 0.00 0.07 +seguedillas seguedilla nom f p 0.00 0.20 0.00 0.14 +seiche seiche nom f s 0.23 0.88 0.23 0.61 +seiches seiche nom f p 0.23 0.88 0.00 0.27 +seigle seigle nom m s 0.69 2.36 0.69 2.09 +seigles seigle nom m p 0.69 2.36 0.00 0.27 +seigneur seigneur nom m s 153.82 60.14 147.72 51.82 +seigneurial seigneurial adj m s 0.02 1.01 0.01 0.34 +seigneuriale seigneurial adj f s 0.02 1.01 0.00 0.41 +seigneuriales seigneurial adj f p 0.02 1.01 0.01 0.20 +seigneuriaux seigneurial adj m p 0.02 1.01 0.00 0.07 +seigneurie seigneurie nom f s 3.00 4.86 2.81 4.59 +seigneuries seigneurie nom f p 3.00 4.86 0.19 0.27 +seigneurs seigneur nom m p 153.82 60.14 6.10 8.31 +seille seille nom f s 0.00 0.27 0.00 0.07 +seilles seille nom f p 0.00 0.27 0.00 0.20 +seillon seillon nom m s 0.00 0.07 0.00 0.07 +sein sein nom m s 44.90 84.05 16.93 32.23 +seine seine nom f s 0.14 0.47 0.14 0.27 +seing seing nom m s 0.01 0.07 0.01 0.07 +seins sein nom m p 44.90 84.05 27.97 51.82 +seize seize adj_num 7.71 31.42 7.71 31.42 +seizième seizième nom s 0.68 1.08 0.68 1.08 +sel sel nom m s 21.83 33.24 20.93 31.01 +seldjoukide seldjoukide adj m s 0.00 0.14 0.00 0.14 +seldjoukides seldjoukide nom p 0.00 0.07 0.00 0.07 +select select adj m s 0.14 0.34 0.12 0.27 +selects select adj m p 0.14 0.34 0.02 0.07 +self_contrôle self_contrôle nom m s 0.19 0.07 0.19 0.07 +self_control self_control nom m s 0.16 0.34 0.16 0.34 +self_défense self_défense nom f s 0.18 0.00 0.18 0.00 +self_made_man self_made_man nom m s 0.02 0.07 0.02 0.07 +self_made_men self_made_men nom m p 0.01 0.07 0.01 0.07 +self_made_man self_made_man nom m s 0.14 0.07 0.14 0.07 +self_service self_service nom m s 0.37 0.47 0.36 0.47 +self_service self_service nom m p 0.37 0.47 0.01 0.00 +self self nom m s 0.67 0.34 0.67 0.27 +selfs self nom m p 0.67 0.34 0.00 0.07 +sellait seller ver 1.81 1.96 0.00 0.07 ind:imp:3s; +selle selle nom f s 10.26 19.05 8.90 16.08 +seller seller ver 1.81 1.96 0.52 0.68 inf; +sellerie sellerie nom f s 0.05 0.27 0.05 0.20 +selleries sellerie nom f p 0.05 0.27 0.00 0.07 +selles selle nom f p 10.26 19.05 1.36 2.97 +sellette sellette nom f s 0.36 0.88 0.36 0.88 +sellez seller ver 1.81 1.96 0.42 0.00 imp:pre:2p;ind:pre:2p; +sellier sellier nom m s 0.02 0.47 0.02 0.47 +sellé seller ver m s 1.81 1.96 0.28 0.54 par:pas; +sellée seller ver f s 1.81 1.96 0.02 0.00 par:pas; +sellées seller ver f p 1.81 1.96 0.00 0.14 par:pas; +sellés seller ver m p 1.81 1.96 0.05 0.41 par:pas; +selon selon pre 81.40 110.88 81.40 110.88 +sels sel nom m p 21.83 33.24 0.90 2.23 +seltz seltz nom m 0.17 0.00 0.17 0.00 +selva selva nom f s 0.44 0.00 0.44 0.00 +sema semer ver 19.80 25.41 0.20 0.34 ind:pas:3s; +semaient semer ver 19.80 25.41 0.03 0.54 ind:imp:3p; +semailles semailles nom f p 0.19 0.81 0.19 0.81 +semaine semaine nom f s 290.85 197.50 186.01 111.89 +semaines semaine nom f p 290.85 197.50 104.84 85.61 +semainier semainier nom m s 0.00 0.34 0.00 0.34 +semait semer ver 19.80 25.41 0.03 1.49 ind:imp:3s; +semant semer ver 19.80 25.41 0.62 1.35 par:pre; +sembla sembler ver 229.25 572.84 0.87 32.43 ind:pas:3s; +semblable semblable adj s 8.93 52.91 5.99 31.42 +semblablement semblablement adv 0.01 0.81 0.01 0.81 +semblables semblable nom p 5.35 13.31 3.17 9.53 +semblaient sembler ver 229.25 572.84 2.99 55.81 ind:imp:3p; +semblais sembler ver 229.25 572.84 1.31 0.88 ind:imp:1s;ind:imp:2s; +semblait sembler ver 229.25 572.84 26.84 260.54 ind:imp:3s; +semblance semblance nom f s 0.02 0.27 0.02 0.27 +semblant semblant nom m s 25.63 32.09 25.55 31.89 +semblants semblant nom m p 25.63 32.09 0.08 0.20 +semble sembler ver 229.25 572.84 128.91 154.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +semblent sembler ver 229.25 572.84 14.09 22.23 ind:pre:3p;sub:pre:3p; +sembler sembler ver 229.25 572.84 6.01 4.53 inf;; +semblera sembler ver 229.25 572.84 2.15 1.42 ind:fut:3s; +sembleraient sembler ver 229.25 572.84 0.05 0.20 cnd:pre:3p; +semblerait sembler ver 229.25 572.84 10.04 2.57 cnd:pre:3s; +sembleront sembler ver 229.25 572.84 0.20 0.20 ind:fut:3p; +sembles sembler ver 229.25 572.84 5.11 1.22 ind:pre:2s; +semblez sembler ver 229.25 572.84 14.02 1.96 imp:pre:2p;ind:pre:2p; +sembliez sembler ver 229.25 572.84 0.94 0.34 ind:imp:2p; +semblions sembler ver 229.25 572.84 0.05 0.34 ind:imp:1p; +semblons sembler ver 229.25 572.84 0.53 0.00 imp:pre:1p;ind:pre:1p; +semblât sembler ver 229.25 572.84 0.00 0.74 sub:imp:3s; +semblèrent sembler ver 229.25 572.84 0.01 1.69 ind:pas:3p; +semblé sembler ver m s 229.25 572.84 7.21 16.96 par:pas; +semelle semelle nom f s 4.10 21.96 2.83 7.43 +semelles semelle nom f p 4.10 21.96 1.27 14.53 +semen_contra semen_contra nom m s 0.00 0.07 0.00 0.07 +semence semence nom f s 4.80 5.27 4.20 4.05 +semences semence nom f p 4.80 5.27 0.60 1.22 +semer semer ver 19.80 25.41 6.09 5.07 inf; +semestre semestre nom m s 3.53 1.49 3.24 1.49 +semestres semestre nom m p 3.53 1.49 0.29 0.00 +semestriel semestriel adj m s 0.05 0.07 0.01 0.07 +semestrielle semestriel adj f s 0.05 0.07 0.04 0.00 +semestriellement semestriellement adv 0.01 0.00 0.01 0.00 +semeur semeur nom m s 0.44 0.74 0.40 0.34 +semeurs semeur nom m p 0.44 0.74 0.04 0.27 +semeuse semeuse nom f s 0.11 0.47 0.11 0.47 +semeuses semeur nom f p 0.44 0.74 0.00 0.14 +semez semer ver 19.80 25.41 0.46 0.07 imp:pre:2p;ind:pre:2p; +semi_aride semi_aride adj f p 0.01 0.00 0.01 0.00 +semi_automatique semi_automatique adj s 0.71 0.07 0.59 0.07 +semi_automatique semi_automatique adj f p 0.71 0.07 0.12 0.00 +semi_circulaire semi_circulaire adj s 0.01 0.14 0.01 0.14 +semi_conducteur semi_conducteur nom m s 0.08 0.00 0.02 0.00 +semi_conducteur semi_conducteur nom m p 0.08 0.00 0.06 0.00 +semi_liberté semi_liberté nom f s 0.26 0.07 0.26 0.07 +semi_lunaire semi_lunaire adj f s 0.02 0.00 0.02 0.00 +semi_nomade semi_nomade adj m p 0.00 0.07 0.00 0.07 +semi_officiel semi_officiel adj m s 0.01 0.14 0.01 0.07 +semi_officiel semi_officiel adj f s 0.01 0.14 0.00 0.07 +semi_ouvert semi_ouvert adj m s 0.01 0.00 0.01 0.00 +semi_perméable semi_perméable adj f s 0.01 0.00 0.01 0.00 +semi_phonétique semi_phonétique adj f s 0.00 0.07 0.00 0.07 +semi_précieuse semi_précieuse adj f s 0.01 0.00 0.01 0.00 +semi_précieux semi_précieux adj f p 0.00 0.14 0.00 0.07 +semi_public semi_public adj m s 0.01 0.00 0.01 0.00 +semi_remorque semi_remorque nom m s 0.48 0.61 0.45 0.54 +semi_remorque semi_remorque nom m p 0.48 0.61 0.04 0.07 +semi_rigide semi_rigide adj f s 0.01 0.07 0.01 0.07 +semi semi nom m s 0.52 1.28 0.52 1.28 +semis semis nom m 0.04 2.84 0.04 2.84 +semoir semoir nom m s 0.04 0.34 0.04 0.20 +semoirs semoir nom m p 0.04 0.34 0.00 0.14 +semonce semonce nom f s 0.30 1.49 0.29 1.35 +semoncer semoncer ver 0.00 0.41 0.00 0.14 inf; +semonces semonce nom f p 0.30 1.49 0.01 0.14 +semoncé semoncer ver m s 0.00 0.41 0.00 0.07 par:pas; +semons semer ver 19.80 25.41 0.34 0.00 imp:pre:1p;ind:pre:1p; +semonça semoncer ver 0.00 0.41 0.00 0.07 ind:pas:3s; +semonçait semoncer ver 0.00 0.41 0.00 0.07 ind:imp:3s; +semonçant semoncer ver 0.00 0.41 0.00 0.07 par:pre; +semât semer ver 19.80 25.41 0.00 0.07 sub:imp:3s; +semoule semoule nom f s 0.89 1.35 0.89 1.35 +sempiternel sempiternel adj m s 0.07 2.77 0.00 0.88 +sempiternelle sempiternel adj f s 0.07 2.77 0.03 0.47 +sempiternellement sempiternellement adv 0.01 0.07 0.01 0.07 +sempiternelles sempiternel adj f p 0.07 2.77 0.01 0.88 +sempiternels sempiternel adj m p 0.07 2.77 0.03 0.54 +semtex semtex nom m 0.10 0.00 0.10 0.00 +semé semer ver m s 19.80 25.41 4.10 6.08 par:pas; +semée semer ver f s 19.80 25.41 0.40 3.99 par:pas; +semées semer ver f p 19.80 25.41 0.17 1.76 par:pas; +semés semer ver m p 19.80 25.41 1.44 1.69 par:pas; +sen sen nom m s 0.48 0.07 0.48 0.07 +senestre senestre adj f s 0.00 0.27 0.00 0.27 +senior senior adj m s 0.99 0.20 0.71 0.14 +seniors senior nom m p 0.64 0.07 0.30 0.07 +senne seine nom f s 0.14 0.47 0.00 0.20 +sens sentir ver 535.41 718.78 240.85 82.91 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sensas sensas adj s 0.44 0.00 0.44 0.00 +sensass sensass adj s 2.05 0.20 2.05 0.20 +sensation sensation nom f s 17.26 46.89 13.20 37.09 +sensationnalisme sensationnalisme nom m s 0.07 0.00 0.07 0.00 +sensationnel sensationnel adj m s 4.36 3.45 2.69 1.55 +sensationnelle sensationnel adj f s 4.36 3.45 1.37 1.35 +sensationnellement sensationnellement adv 0.00 0.07 0.00 0.07 +sensationnelles sensationnel adj f p 4.36 3.45 0.18 0.27 +sensationnels sensationnel adj m p 4.36 3.45 0.12 0.27 +sensations sensation nom f p 17.26 46.89 4.06 9.80 +senseur senseur nom m s 0.42 0.07 0.04 0.07 +senseurs senseur nom m p 0.42 0.07 0.38 0.00 +sensibilisait sensibiliser ver 0.27 0.68 0.00 0.07 ind:imp:3s; +sensibilisation sensibilisation nom f s 0.09 0.07 0.09 0.07 +sensibilise sensibiliser ver 0.27 0.68 0.02 0.14 imp:pre:2s;ind:pre:3s; +sensibiliser sensibiliser ver 0.27 0.68 0.16 0.07 inf; +sensibilisé sensibiliser ver m s 0.27 0.68 0.05 0.07 par:pas; +sensibilisée sensibiliser ver f s 0.27 0.68 0.01 0.27 par:pas; +sensibilisés sensibiliser ver m p 0.27 0.68 0.02 0.07 par:pas; +sensibilité sensibilité nom f s 5.95 12.36 5.72 12.03 +sensibilités sensibilité nom f p 5.95 12.36 0.23 0.34 +sensible sensible adj s 26.79 38.85 21.11 30.88 +sensiblement sensiblement adv 0.13 3.58 0.13 3.58 +sensiblerie sensiblerie nom f s 0.50 1.15 0.48 1.08 +sensibleries sensiblerie nom f p 0.50 1.15 0.02 0.07 +sensibles sensible adj p 26.79 38.85 5.67 7.97 +sensitif sensitif adj m s 0.21 0.54 0.00 0.20 +sensitifs sensitif adj m p 0.21 0.54 0.03 0.00 +sensitive sensitif adj f s 0.21 0.54 0.19 0.27 +sensitives sensitif adj f p 0.21 0.54 0.00 0.07 +sensorialité sensorialité nom f s 0.00 0.07 0.00 0.07 +sensoriel sensoriel adj m s 0.86 0.54 0.22 0.07 +sensorielle sensoriel adj f s 0.86 0.54 0.23 0.34 +sensorielles sensoriel adj f p 0.86 0.54 0.10 0.14 +sensoriels sensoriel adj m p 0.86 0.54 0.32 0.00 +sensé sensé adj m s 10.50 2.64 6.47 1.28 +sensualiste sensualiste nom s 0.00 0.07 0.00 0.07 +sensualité sensualité nom f s 1.14 6.76 1.14 6.69 +sensualités sensualité nom f p 1.14 6.76 0.00 0.07 +sensée sensé adj f s 10.50 2.64 2.86 0.88 +sensuel sensuel adj m s 4.10 10.68 1.28 4.05 +sensuelle sensuel adj f s 4.10 10.68 1.82 5.07 +sensuellement sensuellement adv 0.28 0.54 0.28 0.54 +sensuelles sensuel adj f p 4.10 10.68 0.33 0.95 +sensuels sensuel adj m p 4.10 10.68 0.67 0.61 +sensées sensé adj f p 10.50 2.64 0.37 0.07 +sensément sensément adv 0.00 0.07 0.00 0.07 +sensés sensé adj m p 10.50 2.64 0.80 0.41 +sent_bon sent_bon nom m s 0.00 0.54 0.00 0.54 +sent sentir ver 535.41 718.78 74.27 84.73 ind:pre:3s; +sentîmes sentir ver 535.41 718.78 0.00 0.41 ind:pas:1p; +sentît sentir ver 535.41 718.78 0.00 1.76 sub:imp:3s; +sentaient sentir ver 535.41 718.78 0.80 13.99 ind:imp:3p; +sentais sentir ver 535.41 718.78 23.21 84.59 ind:imp:1s;ind:imp:2s; +sentait sentir ver 535.41 718.78 13.37 170.47 ind:imp:3s; +sentant sentir ver 535.41 718.78 1.93 14.39 par:pre; +sente sentir ver 535.41 718.78 4.89 4.46 sub:pre:1s;sub:pre:3s; +sentence sentence nom f s 7.70 5.68 7.17 4.19 +sentences sentence nom f p 7.70 5.68 0.52 1.49 +sentencieuse sentencieux adj f s 0.06 2.70 0.01 0.54 +sentencieusement sentencieusement adv 0.00 1.22 0.00 1.22 +sentencieuses sentencieux adj f p 0.06 2.70 0.00 0.20 +sentencieux sentencieux adj m 0.06 2.70 0.05 1.96 +sentent sentir ver 535.41 718.78 11.21 11.08 ind:pre:3p;sub:pre:3p; +sentes sentir ver 535.41 718.78 2.60 0.41 sub:pre:2s; +senteur senteur nom f s 0.71 11.69 0.51 6.01 +senteurs senteur nom f p 0.71 11.69 0.20 5.68 +sentez sentir ver 535.41 718.78 32.56 5.34 imp:pre:2p;ind:pre:2p; +senti sentir ver m s 535.41 718.78 34.33 49.05 par:pas; +sentie sentir ver f s 535.41 718.78 7.30 7.91 par:pas; +sentier sentier nom m s 5.72 36.62 3.88 28.45 +sentiers sentier nom m p 5.72 36.62 1.85 8.18 +senties sentir ver f p 535.41 718.78 0.06 0.61 par:pas; +sentiez sentir ver 535.41 718.78 1.86 1.01 ind:imp:2p;sub:pre:2p; +sentiment sentiment nom m s 75.72 157.30 36.87 106.42 +sentimental sentimental adj m s 8.69 17.16 4.40 6.01 +sentimentale sentimental adj f s 8.69 17.16 2.30 5.81 +sentimentalement sentimentalement adv 0.82 0.54 0.82 0.54 +sentimentales sentimental adj f p 8.69 17.16 1.35 3.24 +sentimentaliser sentimentaliser ver 0.01 0.00 0.01 0.00 inf; +sentimentalisme sentimentalisme nom m s 0.75 0.27 0.75 0.27 +sentimentalité sentimentalité nom f s 0.18 1.22 0.18 1.15 +sentimentalités sentimentalité nom f p 0.18 1.22 0.00 0.07 +sentimentaux sentimental adj m p 8.69 17.16 0.64 2.09 +sentiments sentiment nom m p 75.72 157.30 38.86 50.88 +sentine sentine nom f s 0.00 0.54 0.00 0.34 +sentinelle sentinelle nom f s 4.50 12.57 2.91 7.64 +sentinelles sentinelle nom f p 4.50 12.57 1.59 4.93 +sentines sentine nom f p 0.00 0.54 0.00 0.20 +sentions sentir ver 535.41 718.78 0.59 3.11 ind:imp:1p;sub:pre:1p; +sentir sentir ver 535.41 718.78 58.48 74.19 inf; +sentira sentir ver 535.41 718.78 2.50 1.08 ind:fut:3s; +sentirai sentir ver 535.41 718.78 2.08 1.42 ind:fut:1s; +sentiraient sentir ver 535.41 718.78 0.09 0.47 cnd:pre:3p; +sentirais sentir ver 535.41 718.78 3.82 1.28 cnd:pre:1s;cnd:pre:2s; +sentirait sentir ver 535.41 718.78 1.20 2.91 cnd:pre:3s; +sentiras sentir ver 535.41 718.78 7.07 0.47 ind:fut:2s; +sentirent sentir ver 535.41 718.78 0.05 2.09 ind:pas:3p; +sentirez sentir ver 535.41 718.78 3.74 0.74 ind:fut:2p; +sentiriez sentir ver 535.41 718.78 0.37 0.14 cnd:pre:2p; +sentirons sentir ver 535.41 718.78 0.08 0.07 ind:fut:1p; +sentiront sentir ver 535.41 718.78 0.51 0.61 ind:fut:3p; +sentis sentir ver m p 535.41 718.78 2.60 24.12 ind:pas:1s;par:pas; +sentisse sentir ver 535.41 718.78 0.00 0.34 sub:imp:1s; +sentissent sentir ver 535.41 718.78 0.00 0.20 sub:imp:3p; +sentit sentir ver 535.41 718.78 1.98 69.66 ind:pas:3s; +sentons sentir ver 535.41 718.78 1.03 2.77 imp:pre:1p;ind:pre:1p; +seppuku seppuku nom m s 0.07 0.00 0.07 0.00 +seps seps nom m 0.00 0.07 0.00 0.07 +sept sept adj_num 66.07 75.61 66.07 75.61 +septale septal adj f s 0.04 0.00 0.03 0.00 +septante_cinq septante_cinq adj_num 0.00 0.07 0.00 0.07 +septante_sept septante_sept adj_num 0.20 0.07 0.20 0.07 +septante septante adj_num 0.11 0.07 0.11 0.07 +septaux septal adj m p 0.04 0.00 0.01 0.00 +septembre septembre nom m 16.01 43.58 16.01 43.58 +septembriseur septembriseur nom m s 0.00 0.07 0.00 0.07 +septennat septennat nom m s 0.00 0.14 0.00 0.14 +septentrion septentrion nom m s 0.16 0.07 0.16 0.07 +septentrional septentrional adj m s 0.02 0.74 0.01 0.14 +septentrionale septentrional adj f s 0.02 0.74 0.01 0.41 +septentrionales septentrional adj f p 0.02 0.74 0.00 0.20 +septicité septicité nom f s 0.03 0.00 0.03 0.00 +septicémie septicémie nom f s 0.23 0.20 0.23 0.20 +septicémique septicémique adj f s 0.04 0.00 0.04 0.00 +septidi septidi nom m s 0.00 0.07 0.00 0.07 +septime septime nom f s 0.81 0.00 0.81 0.00 +septique septique adj s 0.58 0.41 0.58 0.41 +septième septième adj 4.25 5.61 4.25 5.61 +septièmes septième nom p 2.81 3.18 0.01 0.00 +septuagénaire septuagénaire nom s 0.05 0.88 0.04 0.74 +septuagénaires septuagénaire nom p 0.05 0.88 0.01 0.14 +septum septum nom m s 0.09 0.00 0.09 0.00 +septuor septuor nom m s 0.01 0.00 0.01 0.00 +septuple septuple nom m s 0.03 0.00 0.03 0.00 +sepuku sepuku nom m s 0.00 0.07 0.00 0.07 +sequin sequin nom m s 0.29 0.27 0.01 0.07 +sequins sequin nom m p 0.29 0.27 0.28 0.20 +sera être aux 8074.24 6501.82 159.41 66.69 ind:fut:3s; +serai être aux 8074.24 6501.82 28.15 10.20 ind:fut:1s; +seraient être aux 8074.24 6501.82 10.47 30.81 cnd:pre:3p; +serais être aux 8074.24 6501.82 45.02 36.42 cnd:pre:2s; +serait être aux 8074.24 6501.82 59.74 111.35 cnd:pre:3s; +seras être aux 8074.24 6501.82 25.57 4.39 ind:fut:2s; +serbe serbe adj s 3.48 0.88 2.44 0.54 +serbes serbe nom p 2.85 0.95 2.31 0.74 +serbo_croate serbo_croate nom s 0.14 0.20 0.14 0.20 +serein serein adj m s 5.22 10.61 3.38 3.72 +sereine serein adj f s 5.22 10.61 1.04 5.81 +sereinement sereinement adv 0.43 0.74 0.43 0.74 +sereines serein adj f p 5.22 10.61 0.31 0.41 +sereins serein adj m p 5.22 10.61 0.50 0.68 +serez être aux 8074.24 6501.82 26.65 6.76 ind:fut:2p; +serf serf nom m s 0.56 1.08 0.23 0.27 +serfouette serfouette nom f s 0.00 0.07 0.00 0.07 +serfs serf nom m p 0.56 1.08 0.33 0.81 +serge serge nom f s 1.10 2.64 1.10 2.50 +sergent_chef sergent_chef nom m s 1.52 1.49 1.38 1.42 +sergent_major sergent_major nom m s 0.71 1.35 0.71 1.28 +sergent_pilote sergent_pilote nom m s 0.00 0.07 0.00 0.07 +sergent sergent nom m s 27.36 23.65 26.48 20.88 +sergent_chef sergent_chef nom m p 1.52 1.49 0.14 0.07 +sergent_major sergent_major nom m p 0.71 1.35 0.00 0.07 +sergents sergent nom m p 27.36 23.65 0.88 2.77 +serges serge nom f p 1.10 2.64 0.00 0.14 +sergot sergot nom m s 0.01 0.14 0.01 0.07 +sergots sergot nom m p 0.01 0.14 0.00 0.07 +sergé sergé nom m s 0.00 0.20 0.00 0.20 +serial serial nom m s 0.69 0.07 0.69 0.07 +seriez être aux 8074.24 6501.82 6.69 3.24 cnd:pre:2p; +serin serin nom m s 0.07 3.24 0.05 1.49 +serinais seriner ver 0.25 2.03 0.01 0.07 ind:imp:1s;ind:imp:2s; +serinait seriner ver 0.25 2.03 0.01 0.54 ind:imp:3s; +serine seriner ver 0.25 2.03 0.01 0.47 ind:pre:1s;ind:pre:3s; +seriner seriner ver 0.25 2.03 0.19 0.47 inf; +serinera seriner ver 0.25 2.03 0.00 0.07 ind:fut:3s; +serines seriner ver 0.25 2.03 0.03 0.07 ind:pre:2s; +seringa seringa nom m s 0.14 0.81 0.14 0.54 +seringas seringa nom m p 0.14 0.81 0.00 0.27 +seringuaient seringuer ver 0.00 0.34 0.00 0.07 ind:imp:3p; +seringuait seringuer ver 0.00 0.34 0.00 0.07 ind:imp:3s; +seringue seringue nom f s 6.15 5.00 4.39 4.39 +seringueiros seringueiro nom m p 0.00 0.07 0.00 0.07 +seringuer seringuer ver 0.00 0.34 0.00 0.14 inf; +seringues seringue nom f p 6.15 5.00 1.76 0.61 +seringuée seringuer ver f s 0.00 0.34 0.00 0.07 par:pas; +serinions seriner ver 0.25 2.03 0.00 0.07 ind:imp:1p; +serins serin nom m p 0.07 3.24 0.01 1.49 +seriné seriner ver m s 0.25 2.03 0.00 0.20 par:pas; +serinées seriner ver f p 0.25 2.03 0.00 0.07 par:pas; +serions être aux 8074.24 6501.82 2.56 3.99 cnd:pre:1p; +serment serment nom m s 21.19 12.23 18.18 8.85 +serments serment nom m p 21.19 12.23 3.01 3.38 +sermon sermon nom m s 7.61 6.42 4.38 3.85 +sermonna sermonner ver 1.40 1.89 0.00 0.34 ind:pas:3s; +sermonnaient sermonner ver 1.40 1.89 0.00 0.14 ind:imp:3p; +sermonnait sermonner ver 1.40 1.89 0.00 0.20 ind:imp:3s; +sermonnant sermonner ver 1.40 1.89 0.04 0.07 par:pre; +sermonne sermonner ver 1.40 1.89 0.14 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sermonner sermonner ver 1.40 1.89 0.78 0.47 inf; +sermonnerai sermonner ver 1.40 1.89 0.01 0.00 ind:fut:1s; +sermonnes sermonner ver 1.40 1.89 0.02 0.00 ind:pre:2s; +sermonneur sermonneur nom m s 0.28 0.00 0.27 0.00 +sermonneurs sermonneur nom m p 0.28 0.00 0.01 0.00 +sermonnez sermonner ver 1.40 1.89 0.33 0.00 imp:pre:2p;ind:pre:2p; +sermonné sermonner ver m s 1.40 1.89 0.05 0.34 par:pas; +sermonnée sermonner ver f s 1.40 1.89 0.03 0.07 par:pas; +sermons sermon nom m p 7.61 6.42 3.22 2.57 +serons être aux 8074.24 6501.82 8.50 5.41 ind:fut:1p; +seront être aux 8074.24 6501.82 39.61 23.65 ind:fut:3p; +serpe serpe nom f s 0.01 4.32 0.01 4.12 +serpent serpent nom m s 32.20 21.08 20.91 13.24 +serpentaient serpenter ver 0.09 5.88 0.00 0.61 ind:imp:3p; +serpentaire serpentaire nom s 0.00 0.07 0.00 0.07 +serpentait serpenter ver 0.09 5.88 0.02 1.89 ind:imp:3s; +serpentant serpenter ver 0.09 5.88 0.04 0.74 par:pre; +serpente serpenter ver 0.09 5.88 0.01 1.62 ind:pre:1s;ind:pre:3s; +serpenteau serpenteau nom m s 0.01 0.00 0.01 0.00 +serpentement serpentement nom m s 0.00 0.14 0.00 0.07 +serpentements serpentement nom m p 0.00 0.14 0.00 0.07 +serpentent serpenter ver 0.09 5.88 0.01 0.27 ind:pre:3p; +serpenter serpenter ver 0.09 5.88 0.00 0.61 inf; +serpentiforme serpentiforme adj m s 0.00 0.07 0.00 0.07 +serpentin serpentin adj m s 0.22 0.47 0.03 0.07 +serpentine serpentin adj f s 0.22 0.47 0.04 0.20 +serpentines serpentin adj f p 0.22 0.47 0.15 0.14 +serpentins serpentin nom m p 0.22 1.49 0.20 1.08 +serpentons serpenter ver 0.09 5.88 0.00 0.07 ind:pre:1p; +serpents serpent nom m p 32.20 21.08 11.29 7.84 +serpenté serpenter ver m s 0.09 5.88 0.00 0.07 par:pas; +serpes serpe nom f p 0.01 4.32 0.00 0.20 +serpette serpette nom f s 0.00 0.47 0.00 0.47 +serpillière serpillière nom f s 1.85 4.46 1.65 3.11 +serpillières serpillière nom f p 1.85 4.46 0.21 1.35 +serpolet serpolet nom m s 0.00 0.14 0.00 0.14 +serra serra nom f s 0.82 2.09 0.82 2.09 +serrage serrage nom m s 0.01 0.47 0.01 0.47 +serrai serrer ver 50.99 207.50 0.01 2.84 ind:pas:1s; +serraient serrer ver 50.99 207.50 0.04 5.81 ind:imp:3p; +serrais serrer ver 50.99 207.50 0.68 2.77 ind:imp:1s;ind:imp:2s; +serrait serrer ver 50.99 207.50 1.29 26.96 ind:imp:3s; +serrant serrer ver 50.99 207.50 1.08 22.84 par:pre; +serrante serrante nom f s 0.00 0.20 0.00 0.20 +serre_file serre_file nom m s 0.04 0.34 0.04 0.34 +serre_joint serre_joint nom m s 0.04 0.14 0.01 0.00 +serre_joint serre_joint nom m p 0.04 0.14 0.03 0.14 +serre_livres serre_livres nom m 0.03 0.07 0.03 0.07 +serre_tête serre_tête nom m s 0.22 0.74 0.21 0.74 +serre_tête serre_tête nom m p 0.22 0.74 0.01 0.00 +serre serrer ver 50.99 207.50 11.84 27.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +serrement serrement nom m s 0.03 1.76 0.03 1.55 +serrements serrement nom m p 0.03 1.76 0.00 0.20 +serrent serrer ver 50.99 207.50 1.78 3.38 ind:pre:3p;sub:pre:3p; +serrer serrer ver 50.99 207.50 13.68 23.24 inf; +serrera serrer ver 50.99 207.50 0.69 0.20 ind:fut:3s; +serrerai serrer ver 50.99 207.50 0.32 0.34 ind:fut:1s; +serreraient serrer ver 50.99 207.50 0.00 0.34 cnd:pre:3p; +serrerais serrer ver 50.99 207.50 0.12 0.41 cnd:pre:1s; +serrerait serrer ver 50.99 207.50 0.13 0.47 cnd:pre:3s; +serrerez serrer ver 50.99 207.50 0.06 0.07 ind:fut:2p; +serrerons serrer ver 50.99 207.50 0.00 0.07 ind:fut:1p; +serreront serrer ver 50.99 207.50 0.01 0.20 ind:fut:3p; +serres serrer ver 50.99 207.50 1.60 0.34 ind:pre:2s;sub:pre:2s; +serrez serrer ver 50.99 207.50 5.34 1.28 imp:pre:2p;ind:pre:2p; +serriez serrer ver 50.99 207.50 0.06 0.07 ind:imp:2p; +serrions serrer ver 50.99 207.50 0.12 0.47 ind:imp:1p; +serrâmes serrer ver 50.99 207.50 0.00 0.41 ind:pas:1p; +serrons serrer ver 50.99 207.50 0.97 1.22 imp:pre:1p;ind:pre:1p; +serrât serrer ver 50.99 207.50 0.00 0.07 sub:imp:3s; +serrèrent serrer ver 50.99 207.50 0.00 3.78 ind:pas:3p; +serré serré adj m s 12.00 41.28 7.31 9.53 +serrée serré adj f s 12.00 41.28 1.68 8.72 +serrées serré adj f p 12.00 41.28 0.78 13.31 +serrure serrure nom f s 10.07 19.26 7.40 16.08 +serrurerie serrurerie nom f s 0.22 0.54 0.22 0.54 +serrures serrure nom f p 10.07 19.26 2.67 3.18 +serrurier serrurier nom m s 2.25 2.23 2.20 1.96 +serruriers serrurier nom m p 2.25 2.23 0.04 0.27 +serrurière serrurier nom f s 2.25 2.23 0.01 0.00 +serrés serré adj m p 12.00 41.28 2.23 9.73 +sers servir ver 309.81 286.22 44.58 5.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sert servir ver 309.81 286.22 73.13 45.47 ind:pre:3s; +sertao sertao nom m s 0.10 0.07 0.10 0.07 +serti sertir ver m s 0.52 3.04 0.19 0.95 par:pas; +sertie sertir ver f s 0.52 3.04 0.17 0.95 par:pas; +serties sertir ver f p 0.52 3.04 0.01 0.34 par:pas; +sertir sertir ver 0.52 3.04 0.01 0.07 inf; +sertirait sertir ver 0.52 3.04 0.00 0.07 cnd:pre:3s; +sertis sertir ver m p 0.52 3.04 0.14 0.41 par:pas; +sertissage sertissage nom m s 0.00 0.07 0.00 0.07 +sertissaient sertir ver 0.52 3.04 0.00 0.07 ind:imp:3p; +sertissait sertir ver 0.52 3.04 0.00 0.07 ind:imp:3s; +sertissant sertir ver 0.52 3.04 0.00 0.07 par:pre; +sertissent sertir ver 0.52 3.04 0.00 0.07 ind:pre:3p; +sertisseur sertisseur nom m s 0.00 0.07 0.00 0.07 +sertão sertão nom m s 2.00 0.00 2.00 0.00 +servîmes servir ver 309.81 286.22 0.00 0.07 ind:pas:1p; +servît servir ver 309.81 286.22 0.00 0.74 sub:imp:3s; +servage servage nom m s 0.03 0.54 0.03 0.54 +servaient servir ver 309.81 286.22 1.98 12.30 ind:imp:3p; +servais servir ver 309.81 286.22 1.19 1.69 ind:imp:1s;ind:imp:2s; +servait servir ver 309.81 286.22 6.41 42.43 ind:imp:3s; +serval serval nom m s 0.01 0.00 0.01 0.00 +servant servir ver 309.81 286.22 2.20 7.64 par:pre; +servante servant nom f s 7.41 18.65 6.36 12.30 +servantes servant nom f p 7.41 18.65 0.77 4.46 +servants servant adj m p 1.09 1.15 0.26 0.27 +serve servir ver 309.81 286.22 5.83 4.12 sub:pre:1s;sub:pre:3s; +servent servir ver 309.81 286.22 14.43 11.82 ind:pre:3p; +serves servir ver 309.81 286.22 0.62 0.00 sub:pre:2s; +serveur serveur nom m s 21.57 16.42 9.21 5.27 +serveurs serveur nom m p 21.57 16.42 2.41 2.84 +serveuse serveur nom f s 21.57 16.42 9.96 6.62 +serveuses serveuse nom f p 1.64 0.00 1.64 0.00 +servez servir ver 309.81 286.22 13.39 1.89 imp:pre:2p;ind:pre:2p; +servi servir ver m s 309.81 286.22 36.58 38.72 par:pas; +serviabilité serviabilité nom f s 0.01 0.00 0.01 0.00 +serviable serviable adj s 1.88 2.23 1.48 2.03 +serviables serviable adj m p 1.88 2.23 0.39 0.20 +service service nom m s 187.67 142.77 156.00 106.28 +services service nom m p 187.67 142.77 31.67 36.49 +servie servir ver f s 309.81 286.22 3.04 3.45 par:pas; +servies servir ver f p 309.81 286.22 0.44 0.88 par:pas; +serviette_éponge serviette_éponge nom f s 0.00 1.49 0.00 1.22 +serviette serviette nom f s 25.64 35.07 17.16 26.62 +serviette_éponge serviette_éponge nom f p 0.00 1.49 0.00 0.27 +serviettes serviette nom f p 25.64 35.07 8.48 8.45 +serviez servir ver 309.81 286.22 0.19 0.34 ind:imp:2p; +servile servile adj s 1.14 3.65 0.89 2.77 +servilement servilement adv 0.02 0.47 0.02 0.47 +serviles servile adj p 1.14 3.65 0.25 0.88 +servilité servilité nom f s 0.01 1.22 0.01 1.15 +servilités servilité nom f p 0.01 1.22 0.00 0.07 +servions servir ver 309.81 286.22 0.19 0.61 ind:imp:1p; +servir servir ver 309.81 286.22 73.55 74.59 inf; +servira servir ver 309.81 286.22 12.20 3.58 ind:fut:3s; +servirai servir ver 309.81 286.22 3.13 0.68 ind:fut:1s; +serviraient servir ver 309.81 286.22 0.23 1.49 cnd:pre:3p; +servirais servir ver 309.81 286.22 0.77 0.41 cnd:pre:1s;cnd:pre:2s; +servirait servir ver 309.81 286.22 6.40 7.09 cnd:pre:3s; +serviras servir ver 309.81 286.22 0.88 0.27 ind:fut:2s; +servirent servir ver 309.81 286.22 0.04 1.15 ind:pas:3p; +servirez servir ver 309.81 286.22 1.14 0.07 ind:fut:2p; +serviriez servir ver 309.81 286.22 0.07 0.07 cnd:pre:2p; +servirions servir ver 309.81 286.22 0.02 0.07 cnd:pre:1p; +servirons servir ver 309.81 286.22 0.64 0.14 ind:fut:1p; +serviront servir ver 309.81 286.22 2.02 2.03 ind:fut:3p; +servis servir ver m p 309.81 286.22 2.71 4.05 ind:pas:1s;par:pas; +servissent servir ver 309.81 286.22 0.00 0.27 sub:imp:3p; +servit servir ver 309.81 286.22 0.46 12.23 ind:pas:3s; +serviteur serviteur nom m s 16.43 17.77 10.63 7.16 +serviteurs serviteur nom m p 16.43 17.77 5.80 10.61 +servitude servitude nom f s 0.57 7.43 0.42 4.73 +servitudes servitude nom f p 0.57 7.43 0.16 2.70 +servofrein servofrein nom m s 0.03 0.00 0.03 0.00 +servomoteur servomoteur nom m s 0.02 0.00 0.01 0.00 +servomoteurs servomoteur nom m p 0.02 0.00 0.01 0.00 +servomécanisme servomécanisme nom m s 0.01 0.00 0.01 0.00 +servons servir ver 309.81 286.22 1.36 0.47 imp:pre:1p;ind:pre:1p; +ses ses adj_pos 757.68 3105.41 757.68 3105.41 +session session nom f s 3.29 2.30 2.36 1.89 +sessions session nom f p 3.29 2.30 0.93 0.41 +sesterces sesterce nom m p 0.85 0.34 0.85 0.34 +set set nom m s 3.76 0.61 3.05 0.34 +sets set nom m p 3.76 0.61 0.71 0.27 +setter setter nom m s 0.07 0.61 0.07 0.41 +setters setter nom m p 0.07 0.61 0.00 0.20 +seuil seuil nom m s 5.49 49.86 5.45 48.85 +seuils seuil nom m p 5.49 49.86 0.04 1.01 +seul seul adj m s 891.45 915.27 461.20 478.58 +seulabre seulabre adj m s 0.00 0.88 0.00 0.81 +seulabres seulabre adj p 0.00 0.88 0.00 0.07 +seule seul adj f s 891.45 915.27 349.74 318.85 +seulement seulement adv 279.25 397.97 279.25 397.97 +seules seul adj f p 891.45 915.27 17.22 30.27 +seulet seulet adj m s 0.51 1.22 0.20 0.00 +seulette seulet adj f s 0.51 1.22 0.31 1.15 +seulettes seulet adj f p 0.51 1.22 0.00 0.07 +seuls seul adj m p 891.45 915.27 63.29 87.57 +seventies seventies nom p 0.07 0.07 0.07 0.07 +sevrage sevrage nom m s 0.51 1.08 0.51 1.01 +sevrages sevrage nom m p 0.51 1.08 0.00 0.07 +sevrait sevrer ver 0.42 2.36 0.00 0.07 ind:imp:3s; +sevrer sevrer ver 0.42 2.36 0.12 0.27 inf; +sevré sevrer ver m s 0.42 2.36 0.07 0.95 par:pas; +sevrée sevrer ver f s 0.42 2.36 0.05 0.81 par:pas; +sevrées sevrer ver f p 0.42 2.36 0.01 0.00 par:pas; +sevrés sevrer ver m p 0.42 2.36 0.17 0.27 par:pas; +sex_appeal sex_appeal nom m s 0.44 0.74 0.38 0.68 +sex_shop sex_shop nom m s 0.57 0.54 0.41 0.34 +sex_shop sex_shop nom m p 0.57 0.54 0.07 0.20 +sex_symbol sex_symbol nom m s 0.08 0.07 0.08 0.07 +sex_appeal sex_appeal nom m s 0.44 0.74 0.06 0.07 +sex_shop sex_shop nom m s 0.57 0.54 0.08 0.00 +sex_shop sex_shop nom m p 0.57 0.54 0.01 0.00 +sexagénaire sexagénaire nom s 0.17 0.74 0.15 0.61 +sexagénaires sexagénaire nom p 0.17 0.74 0.02 0.14 +sexe sexe nom m s 52.09 52.70 50.44 46.49 +sexes sexe nom m p 52.09 52.70 1.65 6.22 +sexisme sexisme nom m s 0.39 0.20 0.39 0.20 +sexiste sexiste adj s 1.09 0.07 0.96 0.07 +sexistes sexiste adj p 1.09 0.07 0.13 0.00 +sexologie sexologie nom f s 0.21 0.27 0.21 0.27 +sexologique sexologique adj s 0.00 0.07 0.00 0.07 +sexologue sexologue nom s 0.07 0.20 0.07 0.00 +sexologues sexologue nom p 0.07 0.20 0.00 0.20 +sextant sextant nom m s 0.22 0.54 0.22 0.54 +sextidi sextidi nom m s 0.00 0.07 0.00 0.07 +sextile sextil adj f s 0.00 0.07 0.00 0.07 +sexto sexto adv 0.01 0.00 0.01 0.00 +sextuor sextuor nom m s 0.07 0.14 0.07 0.14 +sextuple sextuple adj m s 0.01 0.07 0.01 0.07 +sexualiser sexualiser ver 0.02 0.00 0.01 0.00 inf; +sexualisé sexualiser ver m s 0.02 0.00 0.01 0.00 par:pas; +sexualité sexualité nom f s 6.02 5.14 6.02 5.14 +sexuel sexuel adj m s 46.15 20.54 15.97 6.62 +sexuelle sexuel adj f s 46.15 20.54 14.74 8.31 +sexuellement sexuellement adv 4.61 0.88 4.61 0.88 +sexuelles sexuel adj f p 46.15 20.54 6.37 2.57 +sexuels sexuel adj m p 46.15 20.54 9.07 3.04 +sexué sexué adj m s 0.01 0.20 0.00 0.14 +sexués sexué adj m p 0.01 0.20 0.01 0.07 +sexy sexy adj 26.83 1.49 26.83 1.49 +seyait seoir ver 1.75 3.78 0.00 0.74 ind:imp:3s; +seyant seyant adj m s 0.67 1.15 0.54 0.88 +seyante seyant adj f s 0.67 1.15 0.07 0.00 +seyantes seyant adj f p 0.67 1.15 0.02 0.14 +seyants seyant adj m p 0.67 1.15 0.03 0.14 +shôgun shôgun nom m s 0.00 0.07 0.00 0.07 +shabbat shabbat nom m s 4.25 0.74 4.25 0.74 +shah shah nom m s 1.13 0.61 1.13 0.54 +shahs shah nom m p 1.13 0.61 0.00 0.07 +shake_hand shake_hand nom m s 0.00 0.14 0.00 0.14 +shaker shaker nom m s 0.50 0.81 0.50 0.81 +shakespearien shakespearien adj m s 0.21 0.41 0.15 0.27 +shakespearienne shakespearien adj f s 0.21 0.41 0.05 0.14 +shakespeariens shakespearien adj m p 0.21 0.41 0.01 0.00 +shako shako nom m s 0.01 1.22 0.01 0.81 +shakos shako nom m p 0.01 1.22 0.00 0.41 +shale shale nom m s 0.17 0.00 0.17 0.00 +shaman shaman nom m s 0.92 0.07 0.81 0.07 +shamans shaman nom m p 0.92 0.07 0.11 0.00 +shamisen shamisen nom m s 0.01 0.07 0.01 0.07 +shampoing shampoing nom m s 1.57 0.07 1.38 0.07 +shampoings shampoing nom m p 1.57 0.07 0.19 0.00 +shampooiner shampooiner ver 0.03 0.00 0.03 0.00 inf; +shampooing shampooing nom m s 2.61 2.30 2.35 1.69 +shampooings shampooing nom m p 2.61 2.30 0.25 0.61 +shampouine shampouiner ver 0.14 0.14 0.01 0.07 ind:pre:3s; +shampouiner shampouiner ver 0.14 0.14 0.12 0.00 inf; +shampouineur shampouineur nom m s 0.24 1.62 0.11 0.00 +shampouineuse shampouineur nom f s 0.24 1.62 0.13 1.42 +shampouineuses shampouineur nom f p 0.24 1.62 0.00 0.20 +shampouiné shampouiner ver m s 0.14 0.14 0.00 0.07 par:pas; +shanghaien shanghaien adj m s 0.01 0.00 0.01 0.00 +shanghaien shanghaien nom m s 0.02 0.00 0.01 0.00 +shanghaiens shanghaien nom m p 0.02 0.00 0.01 0.00 +shantung shantung nom m s 0.00 1.08 0.00 1.08 +shed shed nom m s 0.17 0.00 0.17 0.00 +shekels shekel nom m p 1.03 0.00 1.03 0.00 +sheriff sheriff nom m s 2.61 0.14 2.61 0.14 +sherpa sherpa nom m s 0.18 0.07 0.14 0.00 +sherpas sherpa nom m p 0.18 0.07 0.04 0.07 +sherry sherry nom m s 2.75 0.27 2.75 0.27 +shetland shetland nom m s 0.00 0.74 0.00 0.61 +shetlands shetland nom m p 0.00 0.74 0.00 0.14 +shiatsu shiatsu nom m s 0.28 0.00 0.28 0.00 +shift shift adj s 0.19 0.00 0.19 0.00 +shilling shilling nom m s 2.28 0.20 0.55 0.00 +shillings shilling nom m p 2.28 0.20 1.73 0.20 +shilom shilom nom m s 0.01 0.00 0.01 0.00 +shimmy shimmy nom m s 0.11 0.20 0.11 0.20 +shingle shingle nom m s 0.01 0.00 0.01 0.00 +shintô shintô nom m s 0.01 0.00 0.01 0.00 +shintoïsme shintoïsme nom m s 0.00 0.07 0.00 0.07 +shintoïste shintoïste adj m s 0.02 0.07 0.02 0.07 +shipchandler shipchandler nom m s 0.00 0.07 0.00 0.07 +shipping shipping nom m s 0.04 0.07 0.04 0.07 +shirting shirting nom m s 0.00 0.07 0.00 0.07 +shit shit nom m s 3.00 1.35 3.00 1.35 +shocking shocking adj m s 0.03 0.07 0.03 0.07 +shogoun shogoun nom m s 0.10 0.00 0.10 0.00 +shogun shogun nom m s 0.32 0.00 0.32 0.00 +shogunal shogunal adj m s 0.03 0.00 0.01 0.00 +shogunale shogunal adj f s 0.03 0.00 0.02 0.00 +shogunat shogunat nom m s 0.06 0.00 0.06 0.00 +shoot shoot nom m s 1.29 2.50 1.21 2.23 +shoota shooter ver 6.84 5.14 0.00 0.14 ind:pas:3s; +shootai shooter ver 6.84 5.14 0.00 0.07 ind:pas:1s; +shootais shooter ver 6.84 5.14 0.05 0.14 ind:imp:1s;ind:imp:2s; +shootait shooter ver 6.84 5.14 0.16 0.27 ind:imp:3s; +shootant shooter ver 6.84 5.14 0.04 0.14 par:pre; +shoote shooter ver 6.84 5.14 2.67 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +shootent shooter ver 6.84 5.14 0.14 0.20 ind:pre:3p; +shooter shooter ver 6.84 5.14 1.88 1.22 inf;; +shootera shooter ver 6.84 5.14 0.04 0.00 ind:fut:3s; +shooterai shooter ver 6.84 5.14 0.02 0.07 ind:fut:1s; +shooteraient shooter ver 6.84 5.14 0.01 0.00 cnd:pre:3p; +shooteras shooter ver 6.84 5.14 0.01 0.07 ind:fut:2s; +shootes shooter ver 6.84 5.14 0.22 0.20 ind:pre:2s; +shooteuse shooteur nom f s 0.03 0.27 0.03 0.27 +shootiez shooter ver 6.84 5.14 0.01 0.00 ind:imp:2p; +shootions shooter ver 6.84 5.14 0.00 0.07 ind:imp:1p; +shootons shooter ver 6.84 5.14 0.01 0.00 imp:pre:1p; +shoots shoot nom m p 1.29 2.50 0.08 0.27 +shooté shooter ver m s 6.84 5.14 0.96 1.01 par:pas; +shootée shooter ver f s 6.84 5.14 0.45 0.14 par:pas; +shootés shooter ver m p 6.84 5.14 0.19 0.00 par:pas; +shopping shopping nom m s 5.75 0.54 5.64 0.47 +shoppings shopping nom m p 5.75 0.54 0.10 0.07 +short short nom m s 4.42 8.24 3.79 6.55 +shorts short nom m p 4.42 8.24 0.62 1.69 +shoshones shoshone nom p 0.07 0.00 0.07 0.00 +show_business show_business nom m 0.00 0.27 0.00 0.27 +show show nom m s 0.09 2.64 0.09 2.57 +showbiz showbiz nom m 0.00 0.68 0.00 0.68 +shows show nom m p 0.09 2.64 0.00 0.07 +shrapnel shrapnel nom m s 0.10 0.34 0.09 0.00 +shrapnell shrapnell nom m s 0.01 1.42 0.01 0.54 +shrapnells shrapnell nom m p 0.01 1.42 0.00 0.88 +shrapnels shrapnel nom m p 0.10 0.34 0.01 0.34 +shunt shunt nom m s 0.16 0.00 0.16 0.00 +shunte shunter ver 0.03 0.07 0.01 0.07 ind:pre:1s;ind:pre:3s; +shunter shunter ver 0.03 0.07 0.02 0.00 inf; +shéol shéol nom m s 0.00 0.07 0.00 0.07 +shérif shérif nom m s 46.65 1.28 45.75 1.08 +shérifs shérif nom m p 46.65 1.28 0.90 0.20 +si si con 1374.43 933.99 1374.43 933.99 +siam siam nom m s 0.01 0.00 0.01 0.00 +siamois siamois nom m 1.57 2.36 1.48 2.23 +siamoise siamois adj f s 0.85 1.62 0.01 0.20 +siamoises siamois nom f p 1.57 2.36 0.08 0.00 +sibilant sibilant adj m s 0.00 0.07 0.00 0.07 +sibérien sibérien adj m s 0.71 3.99 0.22 0.74 +sibérienne sibérien adj f s 0.71 3.99 0.05 2.77 +sibériennes sibérien adj f p 0.71 3.99 0.20 0.34 +sibériens sibérien adj m p 0.71 3.99 0.24 0.14 +sibylle sibylle nom f s 0.37 0.61 0.34 0.34 +sibylles sibylle nom f p 0.37 0.61 0.04 0.27 +sibyllin sibyllin adj m s 0.07 2.36 0.02 0.95 +sibylline sibyllin adj f s 0.07 2.36 0.03 0.68 +sibyllines sibyllin adj f p 0.07 2.36 0.01 0.47 +sibyllins sibyllin adj m p 0.07 2.36 0.01 0.27 +sic_transit_gloria_mundi sic_transit_gloria_mundi adv 0.03 0.07 0.03 0.07 +sic sic adv_sup 0.20 1.35 0.20 1.35 +sicaire sicaire nom m s 0.00 0.14 0.00 0.07 +sicaires sicaire nom m p 0.00 0.14 0.00 0.07 +sicilien sicilien nom m s 3.27 1.96 1.03 1.69 +sicilienne sicilien adj f s 2.61 1.22 0.84 0.20 +siciliennes sicilien adj f p 2.61 1.22 0.25 0.34 +siciliens sicilien nom m p 3.27 1.96 2.21 0.27 +sicle sicle nom m s 0.02 0.00 0.02 0.00 +sida sida nom m s 5.02 5.20 5.02 5.14 +sidaïque sidaïque adj m s 0.02 0.00 0.02 0.00 +sidas sida nom m p 5.02 5.20 0.00 0.07 +side_car side_car nom m s 0.23 1.08 0.23 0.81 +side_car side_car nom m p 0.23 1.08 0.00 0.27 +sidi sidi nom m s 0.00 0.81 0.00 0.68 +sidis sidi nom m p 0.00 0.81 0.00 0.14 +sidère sidérer ver 1.03 2.16 0.29 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sidéenne sidéen adj f s 0.03 0.00 0.01 0.00 +sidéens sidéen nom m p 0.18 0.00 0.18 0.00 +sidérais sidérer ver 1.03 2.16 0.00 0.07 ind:imp:1s; +sidérait sidérer ver 1.03 2.16 0.01 0.20 ind:imp:3s; +sidéral sidéral adj m s 0.11 0.88 0.04 0.41 +sidérale sidéral adj f s 0.11 0.88 0.07 0.27 +sidérales sidéral adj f p 0.11 0.88 0.00 0.14 +sidérant sidérant adj m s 0.20 0.27 0.17 0.14 +sidérante sidérant adj f s 0.20 0.27 0.03 0.14 +sidération sidération nom f s 0.03 0.00 0.03 0.00 +sidéraux sidéral adj m p 0.11 0.88 0.00 0.07 +sidérer sidérer ver 1.03 2.16 0.02 0.00 inf; +sidérite sidérite nom f s 0.01 0.00 0.01 0.00 +sidéré sidérer ver m s 1.03 2.16 0.42 1.15 par:pas; +sidérée sidérer ver f s 1.03 2.16 0.22 0.34 par:pas; +sidérées sidérer ver f p 1.03 2.16 0.00 0.07 par:pas; +sidérurgie sidérurgie nom f s 0.12 0.27 0.12 0.27 +sidérurgique sidérurgique adj f s 0.03 0.27 0.03 0.20 +sidérurgiques sidérurgique adj p 0.03 0.27 0.00 0.07 +sidérurgistes sidérurgiste nom p 0.02 0.00 0.02 0.00 +sidérés sidérer ver m p 1.03 2.16 0.06 0.27 par:pas; +sied seoir ver 1.75 3.78 1.67 2.84 ind:pre:3s; +sien sien pro_pos m s 13.40 36.08 13.40 36.08 +sienne sienne pro_pos f s 14.21 40.68 14.21 40.68 +siennes siennes pro_pos f p 2.74 9.73 2.74 9.73 +siennois siennois nom m 0.00 0.20 0.00 0.20 +siennoise siennois adj f s 0.00 0.41 0.00 0.20 +siennoises siennois adj f p 0.00 0.41 0.00 0.14 +siens siens pro_pos m p 7.54 29.80 7.54 29.80 +sierra sierra nom f s 4.27 3.51 4.00 2.77 +sierras sierra nom f p 4.27 3.51 0.27 0.74 +siesta siester ver 0.06 0.07 0.06 0.00 ind:pas:3s; +siestant siester ver 0.06 0.07 0.00 0.07 par:pre; +sieste sieste nom f s 9.58 14.86 9.23 13.38 +siestes sieste nom f p 9.58 14.86 0.34 1.49 +sieur sieur nom m s 8.06 21.35 7.66 20.81 +sieurs sieur nom m p 8.06 21.35 0.41 0.54 +siffla siffler ver 13.04 40.20 0.06 5.47 ind:pas:3s; +sifflai siffler ver 13.04 40.20 0.00 0.14 ind:pas:1s; +sifflaient siffler ver 13.04 40.20 0.22 2.57 ind:imp:3p; +sifflais siffler ver 13.04 40.20 0.19 0.14 ind:imp:1s;ind:imp:2s; +sifflait siffler ver 13.04 40.20 0.65 5.88 ind:imp:3s; +sifflant siffler ver 13.04 40.20 0.41 3.45 par:pre; +sifflante sifflante adj f s 0.24 3.58 0.06 3.11 +sifflantes sifflante adj f p 0.24 3.58 0.17 0.47 +sifflants sifflant adj m p 0.05 1.76 0.01 0.47 +sifflard sifflard nom m s 0.00 0.34 0.00 0.34 +siffle siffler ver 13.04 40.20 4.62 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sifflement sifflement nom m s 4.83 13.78 4.45 10.47 +sifflements sifflement nom m p 4.83 13.78 0.38 3.31 +sifflent siffler ver 13.04 40.20 0.96 2.64 ind:pre:3p; +siffler siffler ver 13.04 40.20 3.02 8.24 inf; +sifflera siffler ver 13.04 40.20 0.63 0.14 ind:fut:3s; +sifflerai siffler ver 13.04 40.20 0.12 0.00 ind:fut:1s; +siffleraient siffler ver 13.04 40.20 0.00 0.14 cnd:pre:3p; +sifflerait siffler ver 13.04 40.20 0.16 0.07 cnd:pre:3s; +siffleras siffler ver 13.04 40.20 0.03 0.00 ind:fut:2s; +siffles siffler ver 13.04 40.20 0.65 0.07 ind:pre:2s; +sifflet sifflet nom m s 4.61 17.91 3.76 13.31 +sifflets sifflet nom m p 4.61 17.91 0.84 4.59 +siffleur siffleur adj m s 0.05 0.07 0.05 0.07 +sifflez siffler ver 13.04 40.20 0.38 0.14 imp:pre:2p;ind:pre:2p; +siffliez siffler ver 13.04 40.20 0.04 0.00 ind:imp:2p; +sifflota siffloter ver 0.28 10.81 0.00 1.15 ind:pas:3s; +sifflotais siffloter ver 0.28 10.81 0.00 0.14 ind:imp:1s; +sifflotait siffloter ver 0.28 10.81 0.00 1.82 ind:imp:3s; +sifflotant siffloter ver 0.28 10.81 0.06 3.85 par:pre; +sifflote siffloter ver 0.28 10.81 0.16 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sifflotement sifflotement nom m s 0.01 0.34 0.01 0.34 +siffloter siffloter ver 0.28 10.81 0.05 2.16 inf; +siffloterai siffloter ver 0.28 10.81 0.01 0.00 ind:fut:1s; +sifflotiez siffloter ver 0.28 10.81 0.00 0.07 ind:imp:2p; +sifflotis sifflotis nom m 0.00 0.14 0.00 0.14 +sifflotèrent siffloter ver 0.28 10.81 0.00 0.07 ind:pas:3p; +siffloté siffloter ver m s 0.28 10.81 0.00 0.27 par:pas; +sifflèrent siffler ver 13.04 40.20 0.00 0.61 ind:pas:3p; +sifflé siffler ver m s 13.04 40.20 0.86 2.97 par:pas; +sifflée siffler ver f s 13.04 40.20 0.06 0.20 par:pas; +sifflées siffler ver f p 13.04 40.20 0.00 0.07 par:pas; +sifflés siffler ver m p 13.04 40.20 0.00 0.07 par:pas; +sigillaire sigillaire adj m s 0.04 0.07 0.04 0.07 +sigillé sigillé adj m s 0.00 0.27 0.00 0.07 +sigillée sigillé adj f s 0.00 0.27 0.00 0.20 +sigisbée sigisbée nom m s 0.00 0.20 0.00 0.14 +sigisbées sigisbée nom m p 0.00 0.20 0.00 0.07 +sigle sigle nom m s 0.70 1.62 0.56 1.01 +sigles sigle nom m p 0.70 1.62 0.14 0.61 +sigmoïde sigmoïde adj s 0.01 0.07 0.01 0.07 +signa signer ver 98.19 55.81 0.29 3.38 ind:pas:3s; +signai signer ver 98.19 55.81 0.42 0.34 ind:pas:1s; +signaient signer ver 98.19 55.81 0.04 0.68 ind:imp:3p; +signais signer ver 98.19 55.81 0.25 0.47 ind:imp:1s;ind:imp:2s; +signait signer ver 98.19 55.81 0.44 3.31 ind:imp:3s; +signal signal nom m s 37.74 23.11 33.98 18.72 +signala signaler ver 27.92 27.50 0.00 1.42 ind:pas:3s; +signalai signaler ver 27.92 27.50 0.00 0.14 ind:pas:1s; +signalaient signaler ver 27.92 27.50 0.02 0.74 ind:imp:3p; +signalais signaler ver 27.92 27.50 0.01 0.07 ind:imp:1s; +signalait signaler ver 27.92 27.50 0.08 3.04 ind:imp:3s; +signalant signaler ver 27.92 27.50 0.18 1.82 par:pre; +signale signaler ver 27.92 27.50 7.26 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +signalement signalement nom m s 3.43 2.70 3.38 2.30 +signalements signalement nom m p 3.43 2.70 0.05 0.41 +signalent signaler ver 27.92 27.50 0.81 1.01 ind:pre:3p; +signaler signaler ver 27.92 27.50 9.51 6.62 inf; +signalera signaler ver 27.92 27.50 0.38 0.07 ind:fut:3s; +signalerai signaler ver 27.92 27.50 0.26 0.07 ind:fut:1s; +signalerait signaler ver 27.92 27.50 0.01 0.34 cnd:pre:3s; +signaleront signaler ver 27.92 27.50 0.04 0.00 ind:fut:3p; +signales signaler ver 27.92 27.50 0.24 0.00 ind:pre:2s; +signaleur signaleur nom m s 0.83 0.20 0.83 0.07 +signaleurs signaleur nom m p 0.83 0.20 0.00 0.14 +signalez signaler ver 27.92 27.50 1.20 0.14 imp:pre:2p;ind:pre:2p; +signalisation signalisation nom f s 0.52 1.08 0.41 1.08 +signalisations signalisation nom f p 0.52 1.08 0.11 0.00 +signaliser signaliser ver 0.01 0.00 0.01 0.00 inf; +signalons signaler ver 27.92 27.50 0.22 0.27 imp:pre:1p;ind:pre:1p; +signalât signaler ver 27.92 27.50 0.00 0.14 sub:imp:3s; +signalé signaler ver m s 27.92 27.50 6.82 3.78 par:pas; +signalée signaler ver f s 27.92 27.50 0.57 0.95 par:pas; +signalées signaler ver f p 27.92 27.50 0.10 0.41 par:pas; +signalés signaler ver m p 27.92 27.50 0.23 0.61 par:pas; +signalétique signalétique adj s 0.15 0.41 0.04 0.34 +signalétiques signalétique adj m p 0.15 0.41 0.11 0.07 +signant signer ver 98.19 55.81 0.39 1.35 par:pre; +signasse signer ver 98.19 55.81 0.00 0.07 sub:imp:1s; +signataire signataire nom s 0.26 0.95 0.17 0.68 +signataires signataire nom p 0.26 0.95 0.09 0.27 +signature signature nom f s 18.47 15.20 16.55 13.45 +signatures signature nom f p 18.47 15.20 1.92 1.76 +signaux signal nom m p 37.74 23.11 3.76 4.39 +signe signe nom m s 82.73 161.28 67.74 119.19 +signent signer ver 98.19 55.81 0.62 0.54 ind:pre:3p; +signer signer ver 98.19 55.81 29.25 13.51 ind:pre:2p;inf; +signera signer ver 98.19 55.81 1.20 0.41 ind:fut:3s; +signerai signer ver 98.19 55.81 1.64 0.27 ind:fut:1s; +signeraient signer ver 98.19 55.81 0.11 0.14 cnd:pre:3p; +signerais signer ver 98.19 55.81 0.27 0.27 cnd:pre:1s;cnd:pre:2s; +signerait signer ver 98.19 55.81 0.06 0.34 cnd:pre:3s; +signeras signer ver 98.19 55.81 0.13 0.00 ind:fut:2s; +signerez signer ver 98.19 55.81 0.39 0.14 ind:fut:2p; +signeriez signer ver 98.19 55.81 0.17 0.00 cnd:pre:2p; +signerions signer ver 98.19 55.81 0.00 0.07 cnd:pre:1p; +signerons signer ver 98.19 55.81 0.04 0.07 ind:fut:1p; +signeront signer ver 98.19 55.81 0.33 0.14 ind:fut:3p; +signes signe nom m p 82.73 161.28 15.00 42.09 +signet signet nom m s 0.16 0.74 0.13 0.47 +signets signet nom m p 0.16 0.74 0.02 0.27 +signez signer ver 98.19 55.81 13.62 0.68 imp:pre:2p;ind:pre:2p; +signiez signer ver 98.19 55.81 0.34 0.14 ind:imp:2p; +signifia signifier ver 67.72 47.23 0.12 1.08 ind:pas:3s; +signifiaient signifier ver 67.72 47.23 0.08 2.70 ind:imp:3p; +signifiais signifier ver 67.72 47.23 0.04 0.07 ind:imp:1s;ind:imp:2s; +signifiait signifier ver 67.72 47.23 3.59 15.34 ind:imp:3s; +signifiance signifiance nom f s 0.14 0.07 0.14 0.07 +signifiant signifiant adj m s 0.31 0.81 0.27 0.61 +signifiante signifiant adj f s 0.31 0.81 0.04 0.07 +signifiantes signifiant adj f p 0.31 0.81 0.00 0.07 +signifiants signifiant adj m p 0.31 0.81 0.00 0.07 +significatif significatif adj m s 1.81 4.46 1.02 2.16 +significatifs significatif adj m p 1.81 4.46 0.17 0.81 +signification signification nom f s 5.77 16.76 5.62 15.61 +significations signification nom f p 5.77 16.76 0.16 1.15 +significative significatif adj f s 1.81 4.46 0.46 1.15 +significativement significativement adv 0.14 0.07 0.14 0.07 +significatives significatif adj f p 1.81 4.46 0.16 0.34 +signifie signifier ver 67.72 47.23 56.66 15.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +signifient signifier ver 67.72 47.23 2.62 2.23 ind:pre:3p; +signifier signifier ver 67.72 47.23 2.08 6.62 inf; +signifiera signifier ver 67.72 47.23 0.27 0.41 ind:fut:3s; +signifierai signifier ver 67.72 47.23 0.07 0.00 ind:fut:1s; +signifierait signifier ver 67.72 47.23 1.36 0.54 cnd:pre:3s; +signifiât signifier ver 67.72 47.23 0.00 0.14 sub:imp:3s; +signifièrent signifier ver 67.72 47.23 0.00 0.07 ind:pas:3p; +signifié signifier ver m s 67.72 47.23 0.64 1.28 par:pas; +signifiée signifier ver f s 67.72 47.23 0.00 0.27 par:pas; +signifiées signifier ver f p 67.72 47.23 0.00 0.07 par:pas; +signâmes signer ver 98.19 55.81 0.00 0.07 ind:pas:1p; +signons signer ver 98.19 55.81 0.48 0.41 imp:pre:1p;ind:pre:1p; +signor signor nom m s 5.36 2.64 3.39 0.88 +signora signor nom f s 5.36 2.64 1.96 1.76 +signorina signorina nom f s 0.64 0.34 0.64 0.34 +signât signer ver 98.19 55.81 0.00 0.07 sub:imp:3s; +signèrent signer ver 98.19 55.81 0.00 0.41 ind:pas:3p; +signé signer ver m s 98.19 55.81 24.19 14.66 par:pas; +signée signer ver f s 98.19 55.81 3.58 3.92 par:pas; +signées signer ver f p 98.19 55.81 0.48 0.68 par:pas; +signés signer ver m p 98.19 55.81 1.28 1.42 par:pas; +sikh sikh nom s 0.17 1.49 0.03 0.20 +sikhs sikh nom p 0.17 1.49 0.14 1.28 +sil sil nom m s 2.65 0.00 2.29 0.00 +silence silence nom m s 106.43 325.54 105.53 313.24 +silences silence nom m p 106.43 325.54 0.90 12.30 +silencieuse silencieux adj f s 10.98 74.05 1.86 25.68 +silencieusement silencieusement adv 0.99 17.16 0.99 17.16 +silencieuses silencieux adj f p 10.98 74.05 0.82 5.74 +silencieux silencieux adj m 10.98 74.05 8.30 42.64 +silex silex nom m 0.33 5.14 0.33 5.14 +silhouettait silhouetter ver 0.00 1.08 0.00 0.20 ind:imp:3s; +silhouettant silhouetter ver 0.00 1.08 0.00 0.07 par:pre; +silhouette silhouette nom f s 4.11 73.31 3.44 52.57 +silhouettent silhouetter ver 0.00 1.08 0.00 0.14 ind:pre:3p; +silhouetter silhouetter ver 0.00 1.08 0.00 0.07 inf; +silhouettes silhouette nom f p 4.11 73.31 0.67 20.74 +silhouetté silhouetter ver m s 0.00 1.08 0.00 0.14 par:pas; +silhouettée silhouetter ver f s 0.00 1.08 0.00 0.14 par:pas; +silicate silicate nom m s 0.07 0.00 0.07 0.00 +silice silice nom f s 0.18 0.34 0.18 0.20 +silices silice nom f p 0.18 0.34 0.00 0.14 +siliceuse siliceux adj f s 0.01 0.07 0.01 0.00 +siliceux siliceux adj m 0.01 0.07 0.00 0.07 +silicium silicium nom m s 0.24 0.00 0.24 0.00 +silicone silicone nom f s 2.42 0.00 2.42 0.00 +siliconer siliconer ver 0.20 0.07 0.01 0.00 inf; +siliconé siliconer ver m s 0.20 0.07 0.02 0.00 par:pas; +siliconée siliconer ver f s 0.20 0.07 0.03 0.00 par:pas; +siliconées siliconer ver f p 0.20 0.07 0.14 0.07 par:pas; +silicose silicose nom f s 0.19 0.34 0.19 0.34 +silicosé silicosé adj m s 0.00 0.27 0.00 0.20 +silicosée silicosé adj f s 0.00 0.27 0.00 0.07 +silionne silionne nom f s 0.01 0.00 0.01 0.00 +sillage sillage nom m s 1.43 10.88 1.27 10.07 +sillages sillage nom m p 1.43 10.88 0.16 0.81 +sillet sillet nom m s 0.01 0.00 0.01 0.00 +sillon sillon nom m s 0.72 12.30 0.46 7.30 +sillonna sillonner ver 2.00 8.58 0.00 0.14 ind:pas:3s; +sillonnaient sillonner ver 2.00 8.58 0.05 0.95 ind:imp:3p; +sillonnais sillonner ver 2.00 8.58 0.03 0.07 ind:imp:1s;ind:imp:2s; +sillonnait sillonner ver 2.00 8.58 0.04 0.95 ind:imp:3s; +sillonnant sillonner ver 2.00 8.58 0.17 0.54 par:pre; +sillonne sillonner ver 2.00 8.58 0.20 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sillonnent sillonner ver 2.00 8.58 0.29 1.22 ind:pre:3p; +sillonner sillonner ver 2.00 8.58 0.58 1.15 inf; +sillonnes sillonner ver 2.00 8.58 0.00 0.07 ind:pre:2s; +sillonnez sillonner ver 2.00 8.58 0.02 0.00 ind:pre:2p; +sillonnons sillonner ver 2.00 8.58 0.00 0.07 ind:pre:1p; +sillonnèrent sillonner ver 2.00 8.58 0.00 0.07 ind:pas:3p; +sillonné sillonner ver m s 2.00 8.58 0.61 1.49 par:pas; +sillonnée sillonner ver f s 2.00 8.58 0.01 0.81 par:pas; +sillonnées sillonner ver f p 2.00 8.58 0.00 0.61 par:pas; +sillonnés sillonner ver m p 2.00 8.58 0.00 0.07 par:pas; +sillons sillon nom m p 0.72 12.30 0.27 5.00 +silo silo nom m s 1.23 1.69 0.66 0.27 +silos silo nom m p 1.23 1.69 0.56 1.42 +sils sil nom m p 2.65 0.00 0.37 0.00 +silène silène nom m s 0.00 0.14 0.00 0.07 +silènes silène nom m p 0.00 0.14 0.00 0.07 +silésien silésien adj m s 0.00 0.07 0.00 0.07 +silvaner silvaner nom m s 0.00 0.14 0.00 0.14 +sima sima nom m s 0.37 0.00 0.37 0.00 +simagrée simagrée nom f s 1.03 3.18 0.14 0.20 +simagrées simagrée nom f p 1.03 3.18 0.90 2.97 +simarre simarre nom f s 0.00 0.14 0.00 0.14 +simien simien adj m s 0.08 0.00 0.02 0.00 +simienne simien adj f s 0.08 0.00 0.03 0.00 +simiens simien nom m p 0.05 0.07 0.04 0.07 +simiesque simiesque adj s 0.17 1.15 0.15 0.88 +simiesques simiesque adj p 0.17 1.15 0.02 0.27 +similaire similaire adj s 6.03 1.35 2.43 0.95 +similairement similairement adv 0.00 0.07 0.00 0.07 +similaires similaire adj p 6.03 1.35 3.60 0.41 +similarité similarité nom f s 0.31 0.00 0.15 0.00 +similarités similarité nom f p 0.31 0.00 0.16 0.00 +simili simili nom m s 0.04 1.01 0.04 1.01 +similicuir similicuir nom m s 0.01 0.00 0.01 0.00 +similitude similitude nom f s 0.87 1.55 0.34 0.95 +similitudes similitude nom f p 0.87 1.55 0.54 0.61 +similor similor nom m s 0.01 0.07 0.01 0.00 +similors similor nom m p 0.01 0.07 0.00 0.07 +simoniaque simoniaque adj s 0.00 0.07 0.00 0.07 +simoun simoun nom m s 0.01 0.54 0.01 0.54 +simple simple adj s 137.69 148.58 124.57 124.26 +simplement simplement adv 84.76 134.32 84.76 134.32 +simples simple adj p 137.69 148.58 13.12 24.32 +simplesse simplesse nom f s 0.00 0.20 0.00 0.20 +simplet simplet nom m s 0.78 0.34 0.63 0.20 +simplets simplet nom m p 0.78 0.34 0.15 0.14 +simplette simplette nom f s 0.17 0.14 0.17 0.14 +simplettes simplet adj f p 0.44 1.35 0.00 0.20 +simplicité simplicité nom f s 2.75 21.69 2.75 21.69 +simplifiaient simplifier ver 2.80 7.84 0.00 0.41 ind:imp:3p; +simplifiais simplifier ver 2.80 7.84 0.01 0.00 ind:imp:1s; +simplifiait simplifier ver 2.80 7.84 0.02 0.61 ind:imp:3s; +simplifiant simplifier ver 2.80 7.84 0.00 0.14 par:pre; +simplification simplification nom f s 0.15 0.61 0.15 0.54 +simplifications simplification nom f p 0.15 0.61 0.00 0.07 +simplifie simplifier ver 2.80 7.84 0.60 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +simplifient simplifier ver 2.80 7.84 0.01 0.20 ind:pre:3p; +simplifier simplifier ver 2.80 7.84 1.32 1.89 inf; +simplifiera simplifier ver 2.80 7.84 0.14 0.14 ind:fut:3s; +simplifierait simplifier ver 2.80 7.84 0.10 0.14 cnd:pre:3s; +simplifiez simplifier ver 2.80 7.84 0.19 0.07 imp:pre:2p;ind:pre:2p; +simplifions simplifier ver 2.80 7.84 0.08 0.27 imp:pre:1p;ind:pre:1p; +simplifié simplifier ver m s 2.80 7.84 0.15 1.35 par:pas; +simplifiée simplifier ver f s 2.80 7.84 0.18 0.74 par:pas; +simplifiées simplifier ver f p 2.80 7.84 0.00 0.41 par:pas; +simplifiés simplifier ver m p 2.80 7.84 0.00 0.20 par:pas; +simplissime simplissime adj f s 0.04 0.07 0.04 0.07 +simpliste simpliste adj s 0.58 1.28 0.45 0.95 +simplistes simpliste adj p 0.58 1.28 0.13 0.34 +simula simuler ver 5.46 6.22 0.14 0.34 ind:pas:3s; +simulacre simulacre nom m s 0.84 6.22 0.69 4.59 +simulacres simulacre nom m p 0.84 6.22 0.16 1.62 +simulaient simuler ver 5.46 6.22 0.14 0.14 ind:imp:3p; +simulais simuler ver 5.46 6.22 0.12 0.07 ind:imp:1s;ind:imp:2s; +simulait simuler ver 5.46 6.22 0.26 0.68 ind:imp:3s; +simulant simuler ver 5.46 6.22 0.07 1.55 par:pre; +simulateur simulateur nom m s 1.05 0.68 0.80 0.20 +simulateurs simulateur nom m p 1.05 0.68 0.20 0.07 +simulation simulation nom f s 3.69 0.61 3.11 0.54 +simulations simulation nom f p 3.69 0.61 0.58 0.07 +simulatrice simulateur nom f s 1.05 0.68 0.04 0.41 +simule simuler ver 5.46 6.22 1.08 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +simulent simuler ver 5.46 6.22 0.12 0.14 ind:pre:3p; +simuler simuler ver 5.46 6.22 1.76 1.89 inf; +simulera simuler ver 5.46 6.22 0.02 0.00 ind:fut:3s; +simulerai simuler ver 5.46 6.22 0.01 0.00 ind:fut:1s; +simulerez simuler ver 5.46 6.22 0.01 0.00 ind:fut:2p; +simules simuler ver 5.46 6.22 0.28 0.07 ind:pre:2s; +simulez simuler ver 5.46 6.22 0.15 0.00 imp:pre:2p;ind:pre:2p; +simuliez simuler ver 5.46 6.22 0.01 0.00 ind:imp:2p; +simulons simuler ver 5.46 6.22 0.09 0.07 imp:pre:1p;ind:pre:1p; +simultané simultané adj m s 0.57 3.11 0.25 0.61 +simultanée simultané adj f s 0.57 3.11 0.19 1.15 +simultanées simultané adj f p 0.57 3.11 0.09 0.68 +simultanéité simultanéité nom f s 0.00 1.15 0.00 1.15 +simultanément simultanément adv 1.29 5.81 1.29 5.81 +simultanés simultané adj m p 0.57 3.11 0.05 0.68 +simulèrent simuler ver 5.46 6.22 0.00 0.07 ind:pas:3p; +simulé simuler ver m s 5.46 6.22 0.86 0.27 par:pas; +simulée simulé adj f s 0.62 0.61 0.18 0.34 +simulées simuler ver f p 5.46 6.22 0.16 0.00 par:pas; +simulés simulé adj m p 0.62 0.61 0.11 0.07 +sinapisme sinapisme nom m s 0.00 0.20 0.00 0.14 +sinapismes sinapisme nom m p 0.00 0.20 0.00 0.07 +sinciput sinciput nom m s 0.00 0.20 0.00 0.20 +sincère sincère adj s 19.51 22.50 15.20 18.65 +sincèrement sincèrement adv 13.58 13.11 13.58 13.11 +sincères sincère adj p 19.51 22.50 4.31 3.85 +sincérité sincérité nom f s 3.77 9.66 3.77 9.66 +sindon sindon nom m s 0.00 0.27 0.00 0.27 +sine_die sine_die adv 0.00 0.34 0.00 0.34 +sine_qua_non sine_qua_non adv 0.16 0.47 0.16 0.47 +singe_araignée singe_araignée nom m s 0.01 0.00 0.01 0.00 +singe singe nom m s 35.48 22.57 21.59 15.00 +singea singer ver 0.45 3.92 0.00 0.61 ind:pas:3s; +singeaient singer ver 0.45 3.92 0.01 0.34 ind:imp:3p; +singeait singer ver 0.45 3.92 0.00 0.61 ind:imp:3s; +singeant singer ver 0.45 3.92 0.05 0.54 par:pre; +singent singer ver 0.45 3.92 0.00 0.14 ind:pre:3p; +singer singer ver 0.45 3.92 0.15 1.28 inf; +singerie singerie nom f s 0.90 2.23 0.01 0.41 +singeries singerie nom f p 0.90 2.23 0.89 1.82 +singes singe nom m p 35.48 22.57 13.90 7.57 +singiez singer ver 0.45 3.92 0.01 0.00 ind:imp:2p; +single single nom m s 1.10 0.14 0.67 0.14 +singles single nom m p 1.10 0.14 0.43 0.00 +singleton singleton nom m s 0.17 0.00 0.17 0.00 +singé singer ver m s 0.45 3.92 0.00 0.20 par:pas; +singées singer ver f p 0.45 3.92 0.00 0.07 par:pas; +singularisait singulariser ver 0.05 1.08 0.00 0.07 ind:imp:3s; +singularise singulariser ver 0.05 1.08 0.01 0.27 imp:pre:2s;ind:pre:3s; +singulariser singulariser ver 0.05 1.08 0.04 0.68 inf; +singularises singulariser ver 0.05 1.08 0.00 0.07 ind:pre:2s; +singularité singularité nom f s 0.89 3.11 0.86 2.43 +singularités singularité nom f p 0.89 3.11 0.03 0.68 +singulier singulier adj m s 2.31 21.42 1.20 9.80 +singuliers singulier adj m p 2.31 21.42 0.05 2.03 +singulière singulier adj f s 2.31 21.42 1.00 8.31 +singulièrement singulièrement adv 0.13 8.58 0.13 8.58 +singulières singulier adj f p 2.31 21.42 0.07 1.28 +sinistre sinistre adj s 8.27 25.88 7.39 19.86 +sinistrement sinistrement adv 0.01 1.28 0.01 1.28 +sinistres sinistre adj p 8.27 25.88 0.88 6.01 +sinistrose sinistrose nom f s 0.00 0.07 0.00 0.07 +sinistré sinistré adj m s 0.28 0.81 0.02 0.20 +sinistrée sinistré adj f s 0.28 0.81 0.25 0.27 +sinistrées sinistré adj f p 0.28 0.81 0.02 0.20 +sinistrés sinistré nom m p 0.26 0.61 0.25 0.54 +sino_américain sino_américain nom m s 0.02 0.00 0.02 0.00 +sino_arabe sino_arabe adj f s 0.01 0.00 0.01 0.00 +sino_japonais sino_japonais adj f s 0.00 0.14 0.00 0.14 +sino sino adv 0.12 0.00 0.12 0.00 +sinologie sinologie nom f s 0.00 0.07 0.00 0.07 +sinon sinon con 164.85 89.26 164.85 89.26 +sinople sinople nom m s 0.00 0.14 0.00 0.14 +sinoque sinoque adj s 0.01 0.34 0.00 0.27 +sinoques sinoque adj p 0.01 0.34 0.01 0.07 +sinoquet sinoquet nom m s 0.00 0.88 0.00 0.88 +sinuaient sinuer ver 0.01 1.76 0.00 0.20 ind:imp:3p; +sinuait sinuer ver 0.01 1.76 0.00 0.74 ind:imp:3s; +sinuant sinuer ver 0.01 1.76 0.01 0.07 par:pre; +sinécure sinécure nom f s 0.52 0.88 0.52 0.81 +sinécures sinécure nom f p 0.52 0.88 0.00 0.07 +sinue sinuer ver 0.01 1.76 0.00 0.34 ind:pre:3s; +sinuent sinuer ver 0.01 1.76 0.00 0.20 ind:pre:3p; +sinuer sinuer ver 0.01 1.76 0.00 0.14 inf; +sinueuse sinueux adj f s 0.97 5.61 0.07 2.23 +sinueusement sinueusement adv 0.00 0.07 0.00 0.07 +sinueuses sinueux adj f p 0.97 5.61 0.32 0.95 +sinueux sinueux adj m 0.97 5.61 0.58 2.43 +sinuosité sinuosité nom f s 0.00 0.68 0.00 0.14 +sinuosités sinuosité nom f p 0.00 0.68 0.00 0.54 +sinus sinus nom m 1.30 1.01 1.30 1.01 +sinusal sinusal adj m s 0.46 0.00 0.29 0.00 +sinusale sinusal adj f s 0.46 0.00 0.17 0.00 +sinusite sinusite nom f s 0.33 0.14 0.32 0.14 +sinusites sinusite nom f p 0.33 0.14 0.01 0.00 +sinusoïdal sinusoïdal adj m s 0.07 0.14 0.04 0.07 +sinusoïdale sinusoïdal adj f s 0.07 0.14 0.03 0.00 +sinusoïdaux sinusoïdal adj m p 0.07 0.14 0.00 0.07 +sinusoïdes sinusoïde nom f p 0.00 0.14 0.00 0.14 +sinué sinuer ver m s 0.01 1.76 0.00 0.07 par:pas; +sionisme sionisme nom m s 0.04 0.27 0.04 0.27 +sioniste sioniste adj s 0.49 0.14 0.39 0.14 +sionistes sioniste nom p 0.32 0.07 0.28 0.07 +sioux sioux adj 0.36 0.34 0.36 0.34 +siphon siphon nom m s 0.83 2.23 0.43 1.96 +siphonnage siphonnage nom m s 0.00 0.07 0.00 0.07 +siphonnait siphonner ver 0.35 0.68 0.04 0.07 ind:imp:3s; +siphonne siphonner ver 0.35 0.68 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +siphonner siphonner ver 0.35 0.68 0.10 0.20 inf; +siphonné siphonné adj m s 0.18 0.20 0.17 0.14 +siphonnée siphonner ver f s 0.35 0.68 0.01 0.14 par:pas; +siphonnés siphonné adj m p 0.18 0.20 0.01 0.00 +siphons siphon nom m p 0.83 2.23 0.40 0.27 +sipo sipo nom m s 0.03 0.00 0.03 0.00 +sir sir nom m s 10.48 2.57 10.48 2.57 +sirdar sirdar nom m s 0.00 0.41 0.00 0.41 +sire sire nom m s 3.37 0.74 3.37 0.47 +sires sire nom m p 3.37 0.74 0.00 0.27 +sirocco sirocco nom m s 1.52 0.68 1.52 0.68 +sirop sirop nom m s 5.75 8.18 5.70 7.64 +sirops sirop nom m p 5.75 8.18 0.05 0.54 +sirota siroter ver 1.59 5.74 0.00 0.14 ind:pas:3s; +sirotaient siroter ver 1.59 5.74 0.01 0.27 ind:imp:3p; +sirotais siroter ver 1.59 5.74 0.05 0.14 ind:imp:1s;ind:imp:2s; +sirotait siroter ver 1.59 5.74 0.04 1.01 ind:imp:3s; +sirotant siroter ver 1.59 5.74 0.28 1.08 par:pre; +sirote siroter ver 1.59 5.74 0.12 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sirotent siroter ver 1.59 5.74 0.06 0.20 ind:pre:3p; +siroter siroter ver 1.59 5.74 0.99 1.35 inf; +siroterais siroter ver 1.59 5.74 0.01 0.00 cnd:pre:1s; +sirotiez siroter ver 1.59 5.74 0.01 0.00 ind:imp:2p; +sirotions siroter ver 1.59 5.74 0.00 0.07 ind:imp:1p; +siroté siroter ver m s 1.59 5.74 0.02 0.61 par:pas; +sirène sirène nom f s 11.35 17.50 8.06 10.34 +sirènes sirène nom f p 11.35 17.50 3.28 7.16 +sirupeuse sirupeux adj f s 0.19 1.55 0.13 0.54 +sirupeuses sirupeux adj f p 0.19 1.55 0.01 0.20 +sirupeux sirupeux adj m 0.19 1.55 0.06 0.81 +sirventès sirventès nom m 0.00 0.14 0.00 0.14 +sis sis adj m s 1.77 1.55 1.77 0.74 +sisal sisal nom m s 0.03 0.34 0.03 0.34 +sise sis adj f s 1.77 1.55 0.00 0.74 +sises sis adj f p 1.77 1.55 0.00 0.07 +sismique sismique adj s 0.75 0.41 0.56 0.34 +sismiques sismique adj p 0.75 0.41 0.19 0.07 +sismographe sismographe nom s 0.10 0.14 0.04 0.00 +sismographes sismographe nom p 0.10 0.14 0.07 0.14 +sismologie sismologie nom f s 0.02 0.00 0.02 0.00 +sismologique sismologique adj f s 0.01 0.00 0.01 0.00 +sismologue sismologue nom s 0.14 0.07 0.07 0.00 +sismologues sismologue nom p 0.14 0.07 0.06 0.07 +sismomètre sismomètre nom m s 0.01 0.00 0.01 0.00 +sismothérapie sismothérapie nom f s 0.01 0.00 0.01 0.00 +sisymbre sisymbre nom m s 0.00 0.07 0.00 0.07 +sit_in sit_in nom m 0.30 0.00 0.30 0.00 +sitôt sitôt adv 3.59 19.12 3.59 19.12 +sitar sitar nom m s 0.16 0.00 0.16 0.00 +sitariste sitariste nom s 0.01 0.00 0.01 0.00 +sitcom sitcom nom f s 0.85 0.00 0.63 0.00 +sitcoms sitcom nom f p 0.85 0.00 0.23 0.00 +site site nom m s 17.17 4.46 13.91 3.58 +sites site nom m p 17.17 4.46 3.26 0.88 +siècle siècle nom m s 45.77 132.91 27.29 79.05 +siècles siècle nom m p 45.77 132.91 18.48 53.85 +siège siège nom m s 29.44 57.91 23.69 46.08 +siègent siéger ver 2.87 5.34 0.31 0.27 ind:pre:3p; +sièges siège nom m p 29.44 57.91 5.75 11.82 +sittelle sittelle nom f s 0.03 0.00 0.03 0.00 +situ situ nom m s 0.95 0.00 0.95 0.00 +situa situer ver 10.44 37.84 0.00 0.47 ind:pas:3s; +situable situable adj f s 0.00 0.14 0.00 0.14 +situaient situer ver 10.44 37.84 0.01 1.15 ind:imp:3p; +situais situer ver 10.44 37.84 0.02 0.07 ind:imp:1s; +situait situer ver 10.44 37.84 0.26 3.72 ind:imp:3s; +situant situer ver 10.44 37.84 0.01 0.41 par:pre; +situasse situer ver 10.44 37.84 0.00 0.95 sub:imp:1s; +situation situation nom f s 108.99 104.86 101.39 96.62 +situationnel situationnel adj m s 0.01 0.00 0.01 0.00 +situationnisme situationnisme nom m s 0.01 0.00 0.01 0.00 +situationnistes situationniste adj p 0.00 0.14 0.00 0.14 +situations situation nom f p 108.99 104.86 7.60 8.24 +situe situer ver 10.44 37.84 2.34 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +situent situer ver 10.44 37.84 0.44 0.54 ind:pre:3p; +situer situer ver 10.44 37.84 1.16 6.55 inf; +situera situer ver 10.44 37.84 0.03 0.14 ind:fut:3s; +situerai situer ver 10.44 37.84 0.01 0.00 ind:fut:1s; +situeraient situer ver 10.44 37.84 0.01 0.00 cnd:pre:3p; +situerais situer ver 10.44 37.84 0.01 0.14 cnd:pre:1s; +situerait situer ver 10.44 37.84 0.22 0.07 cnd:pre:3s; +situes situer ver 10.44 37.84 0.04 0.07 ind:pre:2s;sub:pre:2s; +situez situer ver 10.44 37.84 0.10 0.27 ind:pre:2p; +situions situer ver 10.44 37.84 0.00 0.14 ind:imp:1p; +situons situer ver 10.44 37.84 0.13 0.20 imp:pre:1p;ind:pre:1p; +situât situer ver 10.44 37.84 0.00 0.07 sub:imp:3s; +situèrent situer ver 10.44 37.84 0.00 0.07 ind:pas:3p; +situé situer ver m s 10.44 37.84 2.70 7.84 par:pas; +située situer ver f s 10.44 37.84 2.15 7.23 par:pas; +situées situer ver f p 10.44 37.84 0.14 1.49 par:pas; +situés situer ver m p 10.44 37.84 0.64 1.42 par:pas; +siéent seoir ver 1.75 3.78 0.01 0.14 ind:pre:3p; +siégeaient siéger ver 2.87 5.34 0.00 0.61 ind:imp:3p; +siégeais siéger ver 2.87 5.34 0.01 0.07 ind:imp:1s; +siégeait siéger ver 2.87 5.34 0.11 1.35 ind:imp:3s; +siégeant siéger ver 2.87 5.34 0.03 0.54 par:pre; +siégeons siéger ver 2.87 5.34 0.06 0.07 imp:pre:1p;ind:pre:1p; +siéger siéger ver 2.87 5.34 0.60 0.68 inf; +siégera siéger ver 2.87 5.34 0.41 0.00 ind:fut:3s; +siégerai siéger ver 2.87 5.34 0.02 0.07 ind:fut:1s; +siégeraient siéger ver 2.87 5.34 0.00 0.14 cnd:pre:3p; +siégerait siéger ver 2.87 5.34 0.00 0.14 cnd:pre:3s; +siégeras siéger ver 2.87 5.34 0.03 0.00 ind:fut:2s; +siégerons siéger ver 2.87 5.34 0.01 0.00 ind:fut:1p; +siégeront siéger ver 2.87 5.34 0.00 0.07 ind:fut:3p; +siégez siéger ver 2.87 5.34 0.03 0.00 ind:pre:2p; +siégiez siéger ver 2.87 5.34 0.02 0.00 ind:imp:2p; +siégions siéger ver 2.87 5.34 0.00 0.14 ind:imp:1p; +siégé siéger ver m s 2.87 5.34 0.13 0.27 par:pas; +siéra seoir ver 1.75 3.78 0.05 0.00 ind:fut:3s; +siérait seoir ver 1.75 3.78 0.02 0.07 cnd:pre:3s; +six_quatre six_quatre nom m 0.00 0.07 0.00 0.07 +six six adj_num 117.37 156.22 117.37 156.22 +sixain sixain nom m s 0.00 0.20 0.00 0.20 +sixième sixième adj m 3.77 7.23 3.76 7.16 +sixièmement sixièmement adv 0.01 0.00 0.01 0.00 +sixièmes sixième nom p 2.11 6.01 0.23 0.27 +sixte sixte nom f s 0.02 0.14 0.02 0.14 +sixties sixties nom p 0.40 0.20 0.40 0.20 +sixtus sixtus nom m 0.01 0.00 0.01 0.00 +sizain sizain nom m s 0.00 0.14 0.00 0.14 +ska ska nom m s 0.35 0.00 0.35 0.00 +skaï skaï nom m s 0.12 1.82 0.12 1.82 +skaal skaal ono 0.00 0.07 0.00 0.07 +skate_board skate_board nom m s 0.57 0.07 0.57 0.07 +skate skate nom m s 2.50 0.07 2.14 0.07 +skateboard skateboard nom m s 1.13 0.00 1.06 0.00 +skateboards skateboard nom m p 1.13 0.00 0.07 0.00 +skates skate nom m p 2.50 0.07 0.36 0.00 +skating skating nom m s 0.00 0.07 0.00 0.07 +skeet skeet nom m s 0.04 0.00 0.02 0.00 +skeets skeet nom m p 0.04 0.00 0.02 0.00 +sketch sketch nom m s 2.54 1.28 1.50 0.74 +sketches sketch nom m p 2.54 1.28 0.69 0.54 +sketchs sketch nom m p 2.54 1.28 0.34 0.00 +ski ski nom m s 16.57 6.49 13.84 5.00 +skiable skiable adj m s 0.01 0.00 0.01 0.00 +skiais skier ver 3.81 0.81 0.12 0.07 ind:imp:1s;ind:imp:2s; +skiait skier ver 3.81 0.81 0.14 0.14 ind:imp:3s; +skiant skier ver 3.81 0.81 0.06 0.00 par:pre; +skie skier ver 3.81 0.81 0.30 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +skient skier ver 3.81 0.81 0.04 0.00 ind:pre:3p; +skier skier ver 3.81 0.81 2.52 0.27 inf; +skierai skier ver 3.81 0.81 0.01 0.00 ind:fut:1s; +skierait skier ver 3.81 0.81 0.00 0.07 cnd:pre:3s; +skies skier ver 3.81 0.81 0.22 0.00 ind:pre:2s; +skieur skieur nom m s 1.11 1.28 0.20 0.61 +skieurs skieur nom m p 1.11 1.28 0.74 0.20 +skieuse skieur nom f s 1.11 1.28 0.17 0.41 +skieuses skieuse nom f p 0.02 0.00 0.02 0.00 +skiez skier ver 3.81 0.81 0.05 0.07 imp:pre:2p;ind:pre:2p; +skiff skiff nom m s 0.14 0.27 0.14 0.20 +skiffs skiff nom m p 0.14 0.27 0.00 0.07 +skin skin nom m s 0.93 0.14 0.44 0.14 +skinhead skinhead nom m s 1.59 0.20 0.38 0.14 +skinheads skinhead nom m p 1.59 0.20 1.22 0.07 +skins skin nom m p 0.93 0.14 0.48 0.00 +skip skip nom m s 2.27 0.14 2.27 0.14 +skipper skipper nom m s 1.32 0.07 1.32 0.07 +skis ski nom m p 16.57 6.49 2.73 1.49 +skié skier ver m s 3.81 0.81 0.37 0.14 par:pas; +skunks skunks nom m 0.00 1.55 0.00 1.55 +skydome skydome nom m s 0.01 0.00 0.01 0.00 +slalom slalom nom m s 0.20 0.95 0.20 0.81 +slalomant slalomer ver 0.07 0.41 0.00 0.14 par:pre; +slalomer slalomer ver 0.07 0.41 0.05 0.20 inf; +slaloms slalom nom m p 0.20 0.95 0.00 0.14 +slalomé slalomer ver m s 0.07 0.41 0.03 0.07 par:pas; +slang slang nom m 0.00 0.07 0.00 0.07 +slash slash nom m s 0.07 0.00 0.07 0.00 +slave slave adj s 0.22 3.38 0.19 2.36 +slaves slave adj p 0.22 3.38 0.03 1.01 +slavisant slaviser ver 0.00 0.07 0.00 0.07 par:pre; +slavisme slavisme nom m s 0.00 0.07 0.00 0.07 +slavon slavon adj m s 0.00 0.07 0.00 0.07 +slavon slavon nom m s 0.00 0.07 0.00 0.07 +slavophiles slavophile adj p 0.00 0.07 0.00 0.07 +sleeping sleeping nom m s 0.37 0.34 0.37 0.27 +sleepings sleeping nom m p 0.37 0.34 0.00 0.07 +slibard slibard nom m s 0.11 0.47 0.11 0.47 +slice slice nom m s 0.19 0.00 0.19 0.00 +slip slip nom m s 11.35 12.77 9.29 10.07 +slips slip nom m p 11.35 12.77 2.06 2.70 +slogan slogan nom m s 4.96 6.96 3.96 2.36 +slogans slogan nom m p 4.96 6.96 1.00 4.59 +sloop sloop nom m s 0.06 0.07 0.06 0.07 +sloughi sloughi nom m s 0.00 0.07 0.00 0.07 +slovaque slovaque adj s 0.01 0.00 0.01 0.00 +slovaques slovaque nom p 0.03 0.07 0.03 0.07 +slovène slovène adj f s 0.00 0.20 0.00 0.20 +slow slow nom m s 0.10 2.16 0.10 1.82 +slows slow nom m p 0.10 2.16 0.00 0.34 +slug slug nom m s 0.10 0.00 0.10 0.00 +slush slush nom s 0.01 0.07 0.01 0.07 +smack smack nom m s 0.15 0.14 0.14 0.14 +smacks smack nom m p 0.15 0.14 0.01 0.00 +smala smala nom f s 0.20 0.61 0.20 0.61 +smalah smalah nom f s 0.00 0.20 0.00 0.20 +smaragdin smaragdin adj m s 0.00 0.07 0.00 0.07 +smart smart adj s 0.20 0.27 0.20 0.27 +smash smash nom m s 0.40 0.20 0.40 0.20 +smashe smasher ver 0.41 0.00 0.25 0.00 imp:pre:2s;ind:pre:3s; +smasher smasher ver 0.41 0.00 0.15 0.00 inf; +smegma smegma nom m s 0.04 0.00 0.04 0.00 +smicard smicard nom m s 0.03 0.14 0.03 0.07 +smicards smicard nom m p 0.03 0.14 0.00 0.07 +smigard smigard nom m s 0.00 0.07 0.00 0.07 +smiley smiley nom m s 0.78 0.00 0.78 0.00 +smocks smocks nom m p 0.01 0.34 0.01 0.34 +smog smog nom m s 0.29 0.07 0.29 0.07 +smoking smoking nom m s 4.90 4.53 4.74 3.92 +smokings smoking nom m p 4.90 4.53 0.16 0.61 +smorrebrod smorrebrod nom m s 0.00 0.07 0.00 0.07 +smurf smurf nom m s 0.03 0.00 0.03 0.00 +smyrniote smyrniote nom s 0.00 0.07 0.00 0.07 +snack_bar snack_bar nom m s 0.23 0.61 0.23 0.54 +snack_bar snack_bar nom m p 0.23 0.61 0.00 0.07 +snack snack nom m s 1.21 0.95 1.06 0.74 +snacks snack nom m p 1.21 0.95 0.15 0.20 +snif snif ono 0.26 0.20 0.26 0.20 +snifer snifer ver 0.03 0.00 0.03 0.00 inf; +sniff sniff ono 0.12 0.34 0.12 0.34 +sniffaient sniffer ver 3.28 2.70 0.00 0.07 ind:imp:3p; +sniffais sniffer ver 3.28 2.70 0.08 0.07 ind:imp:1s;ind:imp:2s; +sniffait sniffer ver 3.28 2.70 0.14 0.20 ind:imp:3s; +sniffant sniffer ver 3.28 2.70 0.02 0.14 par:pre; +sniffe sniffer ver 3.28 2.70 0.77 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sniffent sniffer ver 3.28 2.70 0.03 0.07 ind:pre:3p; +sniffer sniffer ver 3.28 2.70 1.25 0.74 inf; +snifferai sniffer ver 3.28 2.70 0.01 0.07 ind:fut:1s; +sniffes sniffer ver 3.28 2.70 0.24 0.07 ind:pre:2s; +sniffette sniffette nom f s 0.00 0.07 0.00 0.07 +sniffez sniffer ver 3.28 2.70 0.08 0.00 imp:pre:2p;ind:pre:2p; +sniffé sniffer ver m s 3.28 2.70 0.66 0.14 par:pas; +sniffée sniffer ver f s 3.28 2.70 0.01 0.14 par:pas; +sniffées sniffer ver f p 3.28 2.70 0.00 0.07 par:pas; +snipe snipe nom m s 0.07 0.00 0.07 0.00 +sniper sniper nom m s 4.50 0.00 2.46 0.00 +snipers sniper nom m p 4.50 0.00 2.03 0.00 +snob snob adj s 1.75 3.31 1.61 2.64 +snobaient snober ver 0.67 0.68 0.00 0.20 ind:imp:3p; +snobais snober ver 0.67 0.68 0.01 0.00 ind:imp:2s; +snobe snober ver 0.67 0.68 0.10 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +snobent snober ver 0.67 0.68 0.02 0.00 ind:pre:3p; +snober snober ver 0.67 0.68 0.21 0.20 inf; +snoberez snober ver 0.67 0.68 0.01 0.00 ind:fut:2p; +snobez snober ver 0.67 0.68 0.07 0.00 imp:pre:2p;ind:pre:2p; +snobinard snobinard nom m s 0.46 0.07 0.22 0.00 +snobinarde snobinard nom f s 0.46 0.07 0.02 0.00 +snobinardes snobinard nom f p 0.46 0.07 0.01 0.00 +snobinards snobinard nom m p 0.46 0.07 0.22 0.07 +snobisme snobisme nom m s 0.79 3.45 0.79 3.38 +snobismes snobisme nom m p 0.79 3.45 0.00 0.07 +snobs snob nom p 1.35 1.82 0.39 0.68 +snobé snober ver m s 0.67 0.68 0.23 0.14 par:pas; +snobée snober ver f s 0.67 0.68 0.00 0.07 par:pas; +snobés snober ver m p 0.67 0.68 0.03 0.07 par:pas; +snow_boot snow_boot nom m p 0.00 0.07 0.00 0.07 +soûl soûl adj m s 12.96 2.77 10.22 2.03 +soûlait soûler ver 6.13 2.43 0.14 0.14 ind:imp:3s; +soûlant soûler ver 6.13 2.43 0.02 0.00 par:pre; +soûlante soûlant adj f s 0.01 0.07 0.00 0.07 +soûlard soûlard nom m s 1.19 0.14 0.82 0.14 +soûlarde soûlard nom f s 1.19 0.14 0.23 0.00 +soûlards soûlard nom m p 1.19 0.14 0.14 0.00 +soûlaud soûlaud adj m s 0.01 0.20 0.01 0.14 +soûlauds soûlaud adj m p 0.01 0.20 0.00 0.07 +soûle soûl adj f s 12.96 2.77 1.96 0.68 +soûlent soûler ver 6.13 2.43 0.30 0.27 ind:pre:3p; +soûler soûler ver 6.13 2.43 2.54 0.81 inf; +soûlerais soûler ver 6.13 2.43 0.16 0.00 cnd:pre:1s; +soûlerait soûler ver 6.13 2.43 0.00 0.07 cnd:pre:3s; +soûlerie soûlerie nom f s 0.08 0.20 0.08 0.20 +soûlez soûler ver 6.13 2.43 0.22 0.00 imp:pre:2p;ind:pre:2p; +soûlographe soûlographe nom s 0.00 0.14 0.00 0.14 +soûlographie soûlographie nom f s 0.00 0.14 0.00 0.14 +soûlons soûler ver 6.13 2.43 0.01 0.00 imp:pre:1p; +soûlot soûlot nom m s 0.29 0.27 0.28 0.20 +soûlots soûlot nom m p 0.29 0.27 0.01 0.07 +soûls soûl adj m p 12.96 2.77 0.78 0.07 +soûlèrent soûler ver 6.13 2.43 0.01 0.00 ind:pas:3p; +soûlé soûler ver m s 6.13 2.43 0.85 0.27 par:pas; +soûlée soûler ver f s 6.13 2.43 0.43 0.07 par:pas; +soûlées soûler ver f p 6.13 2.43 0.03 0.00 par:pas; +soûlés soûler ver m p 6.13 2.43 0.14 0.34 par:pas; +soap_opéra soap_opéra nom m s 0.17 0.00 0.15 0.00 +soap_opéra soap_opéra nom m s 0.17 0.00 0.02 0.00 +sobre sobre adj s 6.18 4.66 5.80 3.24 +sobrement sobrement adv 0.06 1.28 0.06 1.28 +sobres sobre adj p 6.18 4.66 0.37 1.42 +sobriquet sobriquet nom m s 0.52 4.86 0.48 3.45 +sobriquets sobriquet nom m p 0.52 4.86 0.04 1.42 +sobriété sobriété nom f s 0.70 1.62 0.70 1.62 +soc soc nom m s 0.57 1.89 0.31 1.62 +soccer soccer nom m s 0.64 0.00 0.64 0.00 +sociabiliser sociabiliser ver 0.01 0.00 0.01 0.00 inf; +sociabilité sociabilité nom f s 0.09 0.41 0.09 0.41 +sociable sociable adj s 2.08 0.81 1.79 0.54 +sociables sociable adj p 2.08 0.81 0.29 0.27 +social_démocrate social_démocrate adj m s 0.21 0.14 0.21 0.14 +social_démocratie social_démocratie nom f s 0.02 0.34 0.02 0.34 +social_traître social_traître nom m s 0.00 0.27 0.00 0.27 +social social adj m s 34.40 49.80 9.16 12.30 +sociale social adj f s 34.40 49.80 16.06 24.80 +socialement socialement adv 1.04 0.95 1.04 0.95 +sociales social adj f p 34.40 49.80 4.59 8.85 +socialisation socialisation nom f s 0.10 0.00 0.10 0.00 +socialise socialiser ver 0.16 0.00 0.02 0.00 ind:pre:1s;ind:pre:3s; +socialiser socialiser ver 0.16 0.00 0.13 0.00 inf; +socialisez socialiser ver 0.16 0.00 0.01 0.00 ind:pre:2p; +socialisme socialisme nom m s 4.90 6.76 4.90 6.69 +socialismes socialisme nom m p 4.90 6.76 0.00 0.07 +socialiste socialiste adj s 6.68 10.41 5.00 7.97 +socialistes socialiste adj p 6.68 10.41 1.68 2.43 +socialo socialo nom s 0.03 0.14 0.01 0.00 +socialos socialo nom p 0.03 0.14 0.02 0.14 +sociaux_démocrates sociaux_démocrates adj m 0.23 0.00 0.23 0.00 +sociaux social adj m p 34.40 49.80 4.59 3.85 +sociniens socinien nom m p 0.00 0.07 0.00 0.07 +socio_culturel socio_culturel adj f p 0.01 0.14 0.00 0.07 +socio_culturel socio_culturel adj m p 0.01 0.14 0.01 0.07 +socio_économique socio_économique adj m s 0.08 0.07 0.06 0.00 +socio_économique socio_économique adj m p 0.08 0.07 0.02 0.07 +socio socio adv 0.09 0.14 0.09 0.14 +sociobiologie sociobiologie nom f s 0.01 0.00 0.01 0.00 +socioculturel socioculturel adj m s 0.01 0.14 0.00 0.07 +socioculturelles socioculturel adj f p 0.01 0.14 0.01 0.07 +sociologie sociologie nom f s 1.09 1.28 1.09 1.28 +sociologique sociologique adj s 0.64 0.68 0.39 0.47 +sociologiquement sociologiquement adv 0.00 0.07 0.00 0.07 +sociologiques sociologique adj f p 0.64 0.68 0.25 0.20 +sociologue sociologue nom s 0.93 1.55 0.48 0.54 +sociologues sociologue nom p 0.93 1.55 0.45 1.01 +sociopathe sociopathe adj s 0.88 0.00 0.67 0.00 +sociopathes sociopathe adj p 0.88 0.00 0.21 0.00 +sociopathie sociopathie nom f s 0.04 0.00 0.04 0.00 +sociopolitique sociopolitique adj f s 0.01 0.00 0.01 0.00 +socius socius nom m 0.00 0.07 0.00 0.07 +sociétaire sociétaire adj f s 0.01 0.07 0.01 0.07 +sociétaires sociétaire nom p 0.00 0.34 0.00 0.20 +sociétal sociétal adj m s 0.05 0.00 0.03 0.00 +sociétale sociétal adj f s 0.05 0.00 0.03 0.00 +société société nom f s 75.46 62.23 69.38 56.55 +sociétés société nom f p 75.46 62.23 6.08 5.68 +socket socket nom m s 0.03 0.00 0.03 0.00 +socle socle nom m s 0.72 8.45 0.70 7.91 +socles socle nom m p 0.72 8.45 0.02 0.54 +socque socque nom m s 0.00 0.47 0.00 0.07 +socques socque nom m p 0.00 0.47 0.00 0.41 +socquette socquette nom f s 0.38 2.16 0.02 0.41 +socquettes socquette nom f p 0.38 2.16 0.36 1.76 +socratique socratique adj s 0.07 0.20 0.07 0.14 +socratiques socratique adj p 0.07 0.20 0.00 0.07 +socs soc nom m p 0.57 1.89 0.27 0.27 +soda soda nom m s 10.23 1.55 9.12 1.01 +sodas soda nom m p 10.23 1.55 1.11 0.54 +sodique sodique adj s 0.02 0.00 0.02 0.00 +sodium sodium nom m s 1.13 0.00 1.13 0.00 +sodomie sodomie nom f s 1.44 0.47 1.44 0.47 +sodomisa sodomiser ver 1.33 1.49 0.00 0.07 ind:pas:3s; +sodomisait sodomiser ver 1.33 1.49 0.00 0.14 ind:imp:3s; +sodomisant sodomiser ver 1.33 1.49 0.10 0.14 par:pre; +sodomisation sodomisation nom f s 0.00 0.34 0.00 0.34 +sodomise sodomiser ver 1.33 1.49 0.17 0.41 ind:pre:1s;ind:pre:3s; +sodomiser sodomiser ver 1.33 1.49 0.59 0.27 inf; +sodomiseront sodomiser ver 1.33 1.49 0.14 0.00 ind:fut:3p; +sodomisez sodomiser ver 1.33 1.49 0.00 0.07 ind:pre:2p; +sodomisé sodomiser ver m s 1.33 1.49 0.23 0.27 par:pas; +sodomisée sodomiser ver f s 1.33 1.49 0.10 0.07 par:pas; +sodomisés sodomiser ver m p 1.33 1.49 0.00 0.07 par:pas; +sodomite sodomite nom m s 0.86 0.47 0.68 0.27 +sodomites sodomite nom m p 0.86 0.47 0.19 0.20 +sodomitiques sodomitique adj p 0.00 0.07 0.00 0.07 +soeur soeur nom f s 184.99 161.01 155.22 116.55 +soeurette soeurette nom f s 2.12 0.95 2.12 0.95 +soeurs soeur nom f p 184.99 161.01 29.76 44.46 +sofa sofa nom m s 4.77 5.68 4.43 4.73 +sofas sofa nom m p 4.77 5.68 0.33 0.95 +soft soft adj s 0.79 0.20 0.79 0.20 +softball softball nom m s 0.69 0.00 0.69 0.00 +soi_disant soi_disant adj 9.46 13.11 9.46 13.11 +soi_même soi_même pro_per s 6.86 24.86 6.86 24.86 +soi soi pro_per s 28.23 83.65 28.23 83.65 +soie soie nom f s 10.38 51.62 9.95 50.00 +soient être aux 8074.24 6501.82 17.35 21.89 sub:pre:3p; +soierie soierie nom f s 0.32 1.96 0.27 0.54 +soieries soierie nom f p 0.32 1.96 0.05 1.42 +soies soie nom f p 10.38 51.62 0.42 1.62 +soif soif nom f s 31.82 35.54 31.28 35.27 +soiffard soiffard adj m s 0.03 0.27 0.03 0.14 +soiffarde soiffard nom f s 0.33 0.54 0.02 0.07 +soiffards soiffard nom m p 0.33 0.54 0.29 0.41 +soifs soif nom f p 31.82 35.54 0.54 0.27 +soigna soigner ver 47.77 42.84 0.26 0.81 ind:pas:3s; +soignable soignable adj f s 0.16 0.00 0.16 0.00 +soignai soigner ver 47.77 42.84 0.00 0.07 ind:pas:1s; +soignaient soigner ver 47.77 42.84 0.02 0.68 ind:imp:3p; +soignais soigner ver 47.77 42.84 0.40 0.41 ind:imp:1s;ind:imp:2s; +soignait soigner ver 47.77 42.84 0.57 4.66 ind:imp:3s; +soignant soignant adj m s 0.17 0.07 0.12 0.07 +soignante soignant adj f s 0.17 0.07 0.03 0.00 +soignantes soignant adj f p 0.17 0.07 0.01 0.00 +soignants soignant nom m p 0.10 0.27 0.06 0.00 +soigne soigner ver 47.77 42.84 9.23 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soignent soigner ver 47.77 42.84 1.01 0.88 ind:pre:3p; +soigner soigner ver 47.77 42.84 22.82 17.64 ind:imp:3s;inf; +soignera soigner ver 47.77 42.84 1.19 0.54 ind:fut:3s; +soignerai soigner ver 47.77 42.84 0.50 0.61 ind:fut:1s; +soigneraient soigner ver 47.77 42.84 0.17 0.00 cnd:pre:3p; +soignerais soigner ver 47.77 42.84 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +soignerait soigner ver 47.77 42.84 0.08 0.47 cnd:pre:3s; +soigneras soigner ver 47.77 42.84 0.04 0.00 ind:fut:2s; +soignerez soigner ver 47.77 42.84 0.17 0.00 ind:fut:2p; +soignerons soigner ver 47.77 42.84 0.17 0.00 ind:fut:1p; +soigneront soigner ver 47.77 42.84 0.34 0.14 ind:fut:3p; +soignes soigner ver 47.77 42.84 1.06 0.54 ind:pre:2s; +soigneur soigneur nom m s 0.16 0.95 0.09 0.34 +soigneurs soigneur nom m p 0.16 0.95 0.07 0.61 +soigneuse soigneux adj f s 0.78 3.78 0.22 1.28 +soigneusement soigneusement adv 3.52 34.39 3.52 34.39 +soigneuses soigneux adj f p 0.78 3.78 0.00 0.20 +soigneux soigneux adj m 0.78 3.78 0.56 2.30 +soignez soigner ver 47.77 42.84 2.04 0.41 imp:pre:2p;ind:pre:2p; +soigniez soigner ver 47.77 42.84 0.08 0.00 ind:imp:2p;sub:pre:2p; +soignons soigner ver 47.77 42.84 0.18 0.00 imp:pre:1p;ind:pre:1p; +soignèrent soigner ver 47.77 42.84 0.00 0.27 ind:pas:3p; +soigné soigner ver m s 47.77 42.84 5.42 6.35 par:pas; +soignée soigner ver f s 47.77 42.84 1.10 1.76 par:pas; +soignées soigné adj f p 1.91 9.80 0.19 1.35 +soignés soigner ver m p 47.77 42.84 0.47 0.81 par:pas; +soin soin nom m s 71.99 68.24 54.45 45.41 +soins soin nom m p 71.99 68.24 17.55 22.84 +soir soir nom m s 575.70 562.64 555.85 527.23 +soirs soir nom m p 575.70 562.64 19.86 35.41 +soirée soirée nom f s 102.37 76.69 94.36 58.24 +soirées soirée nom f p 102.37 76.69 8.02 18.45 +sois être aux 8074.24 6501.82 49.52 14.19 sub:pre:2s; +soissonnais soissonnais nom m 0.00 0.14 0.00 0.14 +soit être aux 8074.24 6501.82 100.79 76.01 sub:pre:3s; +soixantaine soixantaine nom f s 0.42 4.53 0.42 4.53 +soixante_cinq soixante_cinq adj_num 0.12 3.58 0.12 3.58 +soixante_deux soixante_deux adj_num 0.15 0.34 0.15 0.34 +soixante_deuxième soixante_deuxième adj 0.00 0.07 0.00 0.07 +soixante_dix_huit soixante_dix_huit adj_num 0.16 0.47 0.16 0.47 +soixante_dix_neuf soixante_dix_neuf adj_num 0.01 0.20 0.01 0.20 +soixante_dix_neuvième soixante_dix_neuvième adj 0.00 0.07 0.00 0.07 +soixante_dix_sept soixante_dix_sept adj_num 0.21 0.74 0.21 0.74 +soixante_dix soixante_dix adj_num 1.12 8.85 1.12 8.85 +soixante_dixième soixante_dixième nom s 0.00 0.47 0.00 0.47 +soixante_douze soixante_douze adj_num 0.23 1.15 0.23 1.15 +soixante_huit soixante_huit adj_num 0.16 0.81 0.16 0.81 +soixante_huitard soixante_huitard nom m s 0.01 0.14 0.01 0.00 +soixante_huitard soixante_huitard adj f s 0.00 0.07 0.00 0.07 +soixante_huitard soixante_huitard nom m p 0.01 0.14 0.00 0.14 +soixante_neuf soixante_neuf adj_num 0.16 0.41 0.16 0.41 +soixante_quatorze soixante_quatorze adj_num 0.03 0.61 0.03 0.61 +soixante_quatre soixante_quatre adj_num 0.04 0.61 0.04 0.61 +soixante_quinze soixante_quinze adj_num 0.27 3.85 0.27 3.85 +soixante_seize soixante_seize adj_num 0.07 0.68 0.07 0.68 +soixante_sept soixante_sept adj_num 0.20 0.81 0.20 0.81 +soixante_six soixante_six adj_num 0.08 0.81 0.08 0.81 +soixante_treize soixante_treize adj_num 0.01 1.08 0.01 1.08 +soixante_trois soixante_trois adj_num 0.15 0.20 0.15 0.20 +soixante soixante adj_num 3.92 22.70 3.92 22.70 +soixantième soixantième nom s 0.01 0.20 0.01 0.20 +soja soja nom m s 2.28 0.61 2.28 0.61 +sol_air sol_air adj 0.32 0.00 0.32 0.00 +sol sol nom m s 47.17 150.34 45.83 148.31 +solaire solaire adj s 8.53 7.43 7.04 6.49 +solaires solaire adj p 8.53 7.43 1.49 0.95 +solanacée solanacée nom f s 0.03 0.07 0.01 0.07 +solanacées solanacée nom f p 0.03 0.07 0.02 0.00 +solarium solarium nom m s 0.36 0.74 0.36 0.68 +solariums solarium nom m p 0.36 0.74 0.00 0.07 +solda solder ver 1.52 3.72 0.01 0.07 ind:pas:3s; +soldaient solder ver 1.52 3.72 0.00 0.07 ind:imp:3p; +soldait solder ver 1.52 3.72 0.01 0.20 ind:imp:3s; +soldat soldat nom m s 107.92 128.92 52.78 46.22 +soldate soldat nom f s 107.92 128.92 0.18 0.20 +soldatesque soldatesque nom f s 0.00 0.81 0.00 0.81 +soldats soldat nom m p 107.92 128.92 54.96 82.50 +solde solde nom s 6.76 9.05 5.09 6.89 +soldent solder ver 1.52 3.72 0.01 0.20 ind:pre:3p; +solder solder ver 1.52 3.72 0.33 0.74 inf; +soldera solder ver 1.52 3.72 0.15 0.07 ind:fut:3s; +solderais solder ver 1.52 3.72 0.01 0.00 cnd:pre:1s; +solderait solder ver 1.52 3.72 0.00 0.27 cnd:pre:3s; +solderie solderie nom f s 0.05 0.00 0.05 0.00 +soldes solde nom p 6.76 9.05 1.67 2.16 +soldeur soldeur nom m s 0.01 0.20 0.01 0.07 +soldeurs soldeur nom m p 0.01 0.20 0.00 0.14 +soldez solder ver 1.52 3.72 0.02 0.00 imp:pre:2p;ind:pre:2p; +soldât solder ver 1.52 3.72 0.00 0.14 sub:imp:3s; +soldèrent solder ver 1.52 3.72 0.01 0.07 ind:pas:3p; +soldé solder ver m s 1.52 3.72 0.28 0.47 par:pas; +soldée solder ver f s 1.52 3.72 0.19 0.47 par:pas; +soldées solder ver f p 1.52 3.72 0.05 0.14 par:pas; +soldés solder ver m p 1.52 3.72 0.17 0.41 par:pas; +sole sole nom f s 1.35 2.50 1.29 1.89 +soleil_roi soleil_roi nom m s 0.00 0.07 0.00 0.07 +soleil soleil nom m s 123.34 334.39 120.72 328.78 +soleilleux soleilleux adj m s 0.00 0.07 0.00 0.07 +soleils soleil nom m p 123.34 334.39 2.61 5.61 +solen solen nom m s 0.03 0.07 0.03 0.07 +solennel solennel adj m s 4.58 19.66 2.30 8.11 +solennelle solennel adj f s 4.58 19.66 1.85 8.24 +solennellement solennellement adv 1.77 6.15 1.77 6.15 +solennelles solennel adj f p 4.58 19.66 0.19 1.35 +solennels solennel adj m p 4.58 19.66 0.25 1.96 +solenniser solenniser ver 0.01 0.07 0.01 0.00 inf; +solennisèrent solenniser ver 0.01 0.07 0.00 0.07 ind:pas:3p; +solennité solennité nom f s 0.15 8.11 0.15 7.77 +solennités solennité nom f p 0.15 8.11 0.00 0.34 +soles sole nom f p 1.35 2.50 0.06 0.61 +solex solex nom m 0.25 3.38 0.25 3.38 +solfatares solfatare nom f p 0.00 0.14 0.00 0.14 +solfège solfège nom m s 0.16 0.95 0.16 0.95 +soli solo nom m p 5.22 3.38 0.00 0.20 +solicitor solicitor nom m s 0.00 0.14 0.00 0.07 +solicitors solicitor nom m p 0.00 0.14 0.00 0.07 +solidaire solidaire adj s 2.17 4.80 0.91 2.50 +solidairement solidairement adv 0.00 0.20 0.00 0.20 +solidaires solidaire adj p 2.17 4.80 1.26 2.30 +solidariser solidariser ver 0.00 0.27 0.00 0.20 inf; +solidarisez solidariser ver 0.00 0.27 0.00 0.07 ind:pre:2p; +solidarité solidarité nom f s 2.87 9.05 2.87 8.99 +solidarités solidarité nom f p 2.87 9.05 0.00 0.07 +solide solide adj s 21.71 42.77 17.31 31.49 +solidement solidement adv 0.81 10.00 0.81 10.00 +solides solide adj p 21.71 42.77 4.40 11.28 +solidifia solidifier ver 0.45 1.42 0.00 0.27 ind:pas:3s; +solidifiait solidifier ver 0.45 1.42 0.00 0.07 ind:imp:3s; +solidification solidification nom f s 0.01 0.00 0.01 0.00 +solidifie solidifier ver 0.45 1.42 0.17 0.14 ind:pre:1s;ind:pre:3s; +solidifient solidifier ver 0.45 1.42 0.10 0.00 ind:pre:3p; +solidifier solidifier ver 0.45 1.42 0.08 0.20 inf; +solidifié solidifier ver m s 0.45 1.42 0.06 0.27 par:pas; +solidifiée solidifier ver f s 0.45 1.42 0.02 0.27 par:pas; +solidifiées solidifier ver f p 0.45 1.42 0.00 0.14 par:pas; +solidifiés solidifier ver m p 0.45 1.42 0.01 0.07 par:pas; +solidité solidité nom f s 0.65 4.66 0.65 4.66 +solidus solidus nom m 0.00 0.07 0.00 0.07 +soliflore soliflore nom m s 0.00 0.20 0.00 0.20 +soliloqua soliloquer ver 0.01 0.95 0.00 0.14 ind:pas:3s; +soliloquait soliloquer ver 0.01 0.95 0.00 0.34 ind:imp:3s; +soliloque soliloque nom m s 0.02 1.22 0.01 0.81 +soliloquer soliloquer ver 0.01 0.95 0.00 0.14 inf; +soliloques soliloque nom m p 0.02 1.22 0.01 0.41 +solipsisme solipsisme nom m s 0.01 0.00 0.01 0.00 +solipsiste solipsiste adj s 0.04 0.00 0.04 0.00 +soliste soliste nom s 0.95 1.08 0.94 0.61 +solistes soliste nom p 0.95 1.08 0.01 0.47 +solitaire solitaire adj s 13.19 26.96 11.04 20.88 +solitairement solitairement adv 0.01 1.22 0.01 1.22 +solitaires solitaire adj p 13.19 26.96 2.15 6.08 +solitude solitude nom f s 19.64 69.73 19.48 66.96 +solitudes solitude nom f p 19.64 69.73 0.16 2.77 +solive solive nom f s 0.22 0.95 0.04 0.27 +soliveau soliveau nom m s 0.00 0.14 0.00 0.14 +solives solive nom f p 0.22 0.95 0.18 0.68 +sollicita solliciter ver 4.44 11.82 0.01 0.47 ind:pas:3s; +sollicitai solliciter ver 4.44 11.82 0.00 0.34 ind:pas:1s; +sollicitaient solliciter ver 4.44 11.82 0.00 0.54 ind:imp:3p; +sollicitais solliciter ver 4.44 11.82 0.00 0.27 ind:imp:1s; +sollicitait solliciter ver 4.44 11.82 0.01 0.88 ind:imp:3s; +sollicitant solliciter ver 4.44 11.82 0.06 0.47 par:pre; +sollicitation sollicitation nom f s 0.24 2.30 0.23 0.61 +sollicitations sollicitation nom f p 0.24 2.30 0.01 1.69 +sollicite solliciter ver 4.44 11.82 1.00 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sollicitent solliciter ver 4.44 11.82 0.09 0.34 ind:pre:3p;sub:pre:3p; +solliciter solliciter ver 4.44 11.82 0.74 3.11 inf; +sollicitera solliciter ver 4.44 11.82 0.17 0.00 ind:fut:3s; +solliciteraient solliciter ver 4.44 11.82 0.00 0.07 cnd:pre:3p; +solliciteur solliciteur nom m s 0.40 0.68 0.13 0.14 +solliciteurs solliciteur nom m p 0.40 0.68 0.27 0.47 +solliciteuse solliciteur nom f s 0.40 0.68 0.00 0.07 +sollicitez solliciter ver 4.44 11.82 0.43 0.07 imp:pre:2p;ind:pre:2p; +sollicitons solliciter ver 4.44 11.82 0.12 0.00 imp:pre:1p;ind:pre:1p; +sollicitât solliciter ver 4.44 11.82 0.00 0.14 sub:imp:3s; +sollicitèrent solliciter ver 4.44 11.82 0.00 0.07 ind:pas:3p; +sollicité solliciter ver m s 4.44 11.82 1.28 2.30 par:pas; +sollicitude sollicitude nom f s 1.85 9.46 1.84 8.99 +sollicitudes sollicitude nom f p 1.85 9.46 0.01 0.47 +sollicitée solliciter ver f s 4.44 11.82 0.22 0.61 par:pas; +sollicitées solliciter ver f p 4.44 11.82 0.11 0.27 par:pas; +sollicités solliciter ver m p 4.44 11.82 0.22 0.54 par:pas; +solo solo nom m s 5.22 3.38 4.81 2.57 +solognot solognot adj m s 0.00 0.54 0.00 0.27 +solognote solognot adj f s 0.00 0.54 0.00 0.07 +solognots solognot adj m p 0.00 0.54 0.00 0.20 +solos solo nom m p 5.22 3.38 0.41 0.61 +sols sol nom m p 47.17 150.34 1.34 2.03 +solstice solstice nom m s 0.54 1.42 0.54 1.28 +solstices solstice nom m p 0.54 1.42 0.00 0.14 +solubilité solubilité nom f s 0.01 0.00 0.01 0.00 +soluble soluble adj s 0.41 0.34 0.39 0.20 +solubles soluble adj p 0.41 0.34 0.02 0.14 +solucamphre solucamphre nom m s 0.00 0.07 0.00 0.07 +solécismes solécisme nom m p 0.00 0.14 0.00 0.14 +solénoïde solénoïde nom m s 0.11 0.00 0.09 0.00 +solénoïdes solénoïde nom m p 0.11 0.00 0.02 0.00 +solution solution nom f s 61.96 43.51 56.46 36.89 +solutionnait solutionner ver 0.13 0.14 0.00 0.07 ind:imp:3s; +solutionner solutionner ver 0.13 0.14 0.12 0.07 inf; +solutionneur solutionneur nom m s 0.03 0.00 0.03 0.00 +solutionnons solutionner ver 0.13 0.14 0.01 0.00 imp:pre:1p; +solutions solution nom f p 61.96 43.51 5.50 6.62 +soluté soluté nom m s 0.17 0.07 0.15 0.07 +solutés soluté nom m p 0.17 0.07 0.01 0.00 +solvabilité solvabilité nom f s 0.15 0.14 0.15 0.14 +solvable solvable adj m s 0.36 0.00 0.36 0.00 +solvant solvant nom m s 0.24 0.27 0.18 0.20 +solvants solvant nom m p 0.24 0.27 0.06 0.07 +soma soma nom m s 0.48 0.00 0.48 0.00 +somalien somalien adj m s 0.07 0.00 0.04 0.00 +somalienne somalien adj f s 0.07 0.00 0.01 0.00 +somaliens somalien nom m p 0.32 0.14 0.32 0.14 +somalis somali adj m p 0.00 0.07 0.00 0.07 +somatique somatique adj m s 0.20 0.14 0.04 0.14 +somatiques somatique adj p 0.20 0.14 0.16 0.00 +somatisant somatiser ver 0.01 0.47 0.00 0.07 par:pre; +somatise somatiser ver 0.01 0.47 0.01 0.14 ind:pre:3s; +somatiser somatiser ver 0.01 0.47 0.00 0.14 inf; +somatiserez somatiser ver 0.01 0.47 0.00 0.07 ind:fut:2p; +somatisée somatiser ver f s 0.01 0.47 0.00 0.07 par:pas; +sombra sombrer ver 5.51 19.32 0.53 1.62 ind:pas:3s; +sombrai sombrer ver 5.51 19.32 0.01 0.41 ind:pas:1s; +sombraient sombrer ver 5.51 19.32 0.01 0.88 ind:imp:3p; +sombrais sombrer ver 5.51 19.32 0.01 0.68 ind:imp:1s;ind:imp:2s; +sombrait sombrer ver 5.51 19.32 0.19 1.76 ind:imp:3s; +sombrant sombrer ver 5.51 19.32 0.04 0.41 par:pre; +sombre sombre adj s 31.86 125.74 24.66 93.72 +sombrement sombrement adv 0.12 2.03 0.12 2.03 +sombrent sombrer ver 5.51 19.32 0.33 0.41 ind:pre:3p; +sombrer sombrer ver 5.51 19.32 2.22 6.49 inf; +sombrera sombrer ver 5.51 19.32 0.21 0.41 ind:fut:3s; +sombreraient sombrer ver 5.51 19.32 0.00 0.07 cnd:pre:3p; +sombrerais sombrer ver 5.51 19.32 0.01 0.00 cnd:pre:2s; +sombrerait sombrer ver 5.51 19.32 0.03 0.07 cnd:pre:3s; +sombrerez sombrer ver 5.51 19.32 0.01 0.00 ind:fut:2p; +sombrero sombrero nom m s 0.57 0.68 0.44 0.34 +sombrerons sombrer ver 5.51 19.32 0.02 0.07 ind:fut:1p; +sombreros sombrero nom m p 0.57 0.68 0.13 0.34 +sombres sombre adj p 31.86 125.74 7.21 32.03 +sombrez sombrer ver 5.51 19.32 0.03 0.00 ind:pre:2p; +sombrions sombrer ver 5.51 19.32 0.00 0.27 ind:imp:1p; +sombrons sombrer ver 5.51 19.32 0.02 0.14 imp:pre:1p;ind:pre:1p; +sombrèrent sombrer ver 5.51 19.32 0.00 0.14 ind:pas:3p; +sombré sombrer ver m s 5.51 19.32 1.22 2.70 par:pas; +sombrée sombrer ver f s 5.51 19.32 0.00 0.20 par:pas; +sombrées sombrer ver f p 5.51 19.32 0.00 0.14 par:pas; +sombrés sombrer ver m p 5.51 19.32 0.01 0.07 par:pas; +somma sommer ver 3.17 6.01 0.00 0.47 ind:pas:3s; +sommai sommer ver 3.17 6.01 0.00 0.20 ind:pas:1s; +sommaire sommaire adj s 0.56 4.80 0.46 3.45 +sommairement sommairement adv 0.13 2.16 0.13 2.16 +sommaires sommaire adj p 0.56 4.80 0.10 1.35 +sommais sommer ver 3.17 6.01 0.00 0.07 ind:imp:1s; +sommait sommer ver 3.17 6.01 0.01 0.47 ind:imp:3s; +sommant sommer ver 3.17 6.01 0.00 0.27 par:pre; +sommation sommation nom f s 1.00 3.24 0.94 1.69 +sommations sommation nom f p 1.00 3.24 0.07 1.55 +somme somme nom s 32.89 79.26 28.27 72.70 +sommeil sommeil nom m s 44.53 114.80 44.51 112.03 +sommeilla sommeiller ver 1.67 6.89 0.00 0.14 ind:pas:3s; +sommeillaient sommeiller ver 1.67 6.89 0.02 0.81 ind:imp:3p; +sommeillais sommeiller ver 1.67 6.89 0.03 0.07 ind:imp:1s; +sommeillait sommeiller ver 1.67 6.89 0.05 1.89 ind:imp:3s; +sommeillant sommeillant adj m s 0.00 1.08 0.00 0.61 +sommeillante sommeillant adj f s 0.00 1.08 0.00 0.27 +sommeillants sommeillant adj m p 0.00 1.08 0.00 0.20 +sommeille sommeiller ver 1.67 6.89 0.89 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sommeillent sommeiller ver 1.67 6.89 0.17 0.61 ind:pre:3p; +sommeiller sommeiller ver 1.67 6.89 0.50 1.08 inf; +sommeilleux sommeilleux adj m p 0.00 0.34 0.00 0.34 +sommeillèrent sommeiller ver 1.67 6.89 0.00 0.07 ind:pas:3p; +sommeillé sommeiller ver m s 1.67 6.89 0.01 0.41 par:pas; +sommeils sommeil nom m p 44.53 114.80 0.02 2.77 +sommelier sommelier nom m s 0.34 1.15 0.34 1.15 +somment sommer ver 3.17 6.01 0.14 0.07 ind:pre:3p; +sommer sommer ver 3.17 6.01 0.36 0.27 inf; +sommes être aux 8074.24 6501.82 109.26 99.46 ind:pre:1p; +sommet sommet nom m s 17.44 47.50 15.15 38.85 +sommets sommet nom m p 17.44 47.50 2.29 8.65 +sommier sommier nom m s 0.30 7.97 0.28 6.82 +sommiers sommier nom m p 0.30 7.97 0.02 1.15 +sommiez sommer ver 3.17 6.01 0.01 0.00 ind:imp:2p; +sommitales sommital adj f p 0.00 0.07 0.00 0.07 +sommité sommité nom f s 0.50 2.64 0.24 2.03 +sommités sommité nom f p 0.50 2.64 0.26 0.61 +sommons sommer ver 3.17 6.01 0.02 0.07 ind:pre:1p; +sommèrent sommer ver 3.17 6.01 0.00 0.07 ind:pas:3p; +sommé sommer ver m s 3.17 6.01 0.14 1.42 par:pas; +sommée sommer ver f s 3.17 6.01 0.01 0.68 par:pas; +sommés sommer ver m p 3.17 6.01 0.02 0.27 par:pas; +somnambulant somnambuler ver 0.00 0.14 0.00 0.14 par:pre; +somnambule somnambule nom s 2.71 4.73 2.33 4.05 +somnambules somnambule nom p 2.71 4.73 0.38 0.68 +somnambulique somnambulique adj s 0.02 1.62 0.02 1.28 +somnambuliquement somnambuliquement adv 0.00 0.07 0.00 0.07 +somnambuliques somnambulique adj p 0.02 1.62 0.00 0.34 +somnambulisme somnambulisme nom m s 0.27 0.74 0.27 0.74 +somnifère somnifère nom m s 5.73 2.97 2.01 1.55 +somnifères somnifère nom m p 5.73 2.97 3.72 1.42 +somno somno nom m s 0.00 0.07 0.00 0.07 +somnola somnoler ver 0.50 10.47 0.00 0.14 ind:pas:3s; +somnolai somnoler ver 0.50 10.47 0.00 0.07 ind:pas:1s; +somnolaient somnoler ver 0.50 10.47 0.00 0.88 ind:imp:3p; +somnolais somnoler ver 0.50 10.47 0.05 0.54 ind:imp:1s; +somnolait somnoler ver 0.50 10.47 0.02 3.45 ind:imp:3s; +somnolant somnoler ver 0.50 10.47 0.03 1.01 par:pre; +somnole somnoler ver 0.50 10.47 0.17 1.89 ind:pre:1s;ind:pre:3s; +somnolence somnolence nom f s 0.37 3.58 0.36 3.18 +somnolences somnolence nom f p 0.37 3.58 0.01 0.41 +somnolent somnolent adj m s 0.18 4.05 0.08 1.69 +somnolente somnolent adj f s 0.18 4.05 0.08 1.01 +somnolentes somnolent adj f p 0.18 4.05 0.01 0.54 +somnolents somnolent adj m p 0.18 4.05 0.01 0.81 +somnoler somnoler ver 0.50 10.47 0.11 1.35 inf; +somnolerais somnoler ver 0.50 10.47 0.00 0.07 cnd:pre:1s; +somnolez somnoler ver 0.50 10.47 0.00 0.07 ind:pre:2p; +somnolé somnoler ver m s 0.50 10.47 0.11 0.34 par:pas; +somozistes somoziste nom p 0.01 0.00 0.01 0.00 +somptuaire somptuaire adj s 0.02 0.41 0.00 0.14 +somptuaires somptuaire adj f p 0.02 0.41 0.02 0.27 +somptueuse somptueux adj f s 3.06 13.18 0.68 3.78 +somptueusement somptueusement adv 0.50 0.95 0.50 0.95 +somptueuses somptueux adj f p 3.06 13.18 0.19 1.96 +somptueux somptueux adj m 3.06 13.18 2.20 7.43 +somptuosité somptuosité nom f s 0.03 1.08 0.03 0.81 +somptuosités somptuosité nom f p 0.03 1.08 0.00 0.27 +son son adj_pos 1740.43 4696.15 1740.43 4696.15 +sonagramme sonagramme nom m s 0.01 0.00 0.01 0.00 +sonar sonar nom m s 1.71 0.07 1.54 0.07 +sonars sonar nom m p 1.71 0.07 0.17 0.00 +sonate sonate nom f s 2.98 1.69 2.95 1.15 +sonates sonate nom f p 2.98 1.69 0.03 0.54 +sonatine sonatine nom f s 0.14 1.62 0.14 1.62 +sonda sonder ver 3.31 5.07 0.00 0.61 ind:pas:3s; +sondage sondage nom m s 4.64 2.16 2.33 0.74 +sondages sondage nom m p 4.64 2.16 2.32 1.42 +sondaient sonder ver 3.31 5.07 0.00 0.07 ind:imp:3p; +sondait sonder ver 3.31 5.07 0.01 0.27 ind:imp:3s; +sondant sonder ver 3.31 5.07 0.19 0.34 par:pre; +sondas sonder ver 3.31 5.07 0.00 0.07 ind:pas:2s; +sonde sonde nom f s 6.31 0.95 5.30 0.81 +sondent sonder ver 3.31 5.07 0.08 0.14 ind:pre:3p; +sonder sonder ver 3.31 5.07 1.69 2.23 inf; +sonderai sonder ver 3.31 5.07 0.00 0.07 ind:fut:1s; +sondes sonde nom f p 6.31 0.95 1.01 0.14 +sondeur sondeur nom m s 0.13 0.20 0.07 0.07 +sondeurs sondeur nom m p 0.13 0.20 0.04 0.14 +sondeuse sondeur nom f s 0.13 0.20 0.01 0.00 +sondez sonder ver 3.31 5.07 0.20 0.07 imp:pre:2p;ind:pre:2p; +sondions sonder ver 3.31 5.07 0.01 0.00 ind:imp:1p; +sondons sonder ver 3.31 5.07 0.04 0.00 imp:pre:1p;ind:pre:1p; +sondèrent sonder ver 3.31 5.07 0.00 0.14 ind:pas:3p; +sondé sonder ver m s 3.31 5.07 0.46 0.41 par:pas; +sondée sonder ver f s 3.31 5.07 0.05 0.00 par:pas; +sondés sonder ver m p 3.31 5.07 0.03 0.00 par:pas; +song song nom m 0.40 0.14 0.40 0.14 +songe_creux songe_creux nom m 0.01 0.41 0.01 0.41 +songe songer ver 24.59 104.86 4.28 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +songea songer ver 24.59 104.86 0.24 14.80 ind:pas:3s; +songeai songer ver 24.59 104.86 0.15 2.77 ind:pas:1s; +songeaient songer ver 24.59 104.86 0.01 1.69 ind:imp:3p; +songeais songer ver 24.59 104.86 0.92 6.08 ind:imp:1s;ind:imp:2s; +songeait songer ver 24.59 104.86 0.34 17.30 ind:imp:3s; +songeant songer ver 24.59 104.86 0.61 8.11 par:pre; +songeasse songer ver 24.59 104.86 0.00 0.14 sub:imp:1s; +songent songer ver 24.59 104.86 0.58 0.74 ind:pre:3p; +songeons songer ver 24.59 104.86 0.35 0.34 imp:pre:1p;ind:pre:1p; +songeât songer ver 24.59 104.86 0.00 0.41 sub:imp:3s; +songer songer ver 24.59 104.86 5.56 18.31 inf; +songera songer ver 24.59 104.86 0.03 0.41 ind:fut:3s; +songerai songer ver 24.59 104.86 0.26 0.27 ind:fut:1s; +songeraient songer ver 24.59 104.86 0.02 0.07 cnd:pre:3p; +songerais songer ver 24.59 104.86 0.19 0.27 cnd:pre:1s;cnd:pre:2s; +songerait songer ver 24.59 104.86 0.05 0.61 cnd:pre:3s; +songerie songerie nom f s 0.16 1.69 0.14 0.81 +songeries songerie nom f p 0.16 1.69 0.02 0.88 +songeriez songer ver 24.59 104.86 0.04 0.07 cnd:pre:2p; +songerons songer ver 24.59 104.86 0.28 0.07 ind:fut:1p; +songes songer ver 24.59 104.86 0.86 0.68 ind:pre:2s;sub:pre:2s; +songeur songeur adj m s 0.26 6.08 0.25 3.45 +songeurs songeur adj m p 0.26 6.08 0.00 0.34 +songeuse songeur adj f s 0.26 6.08 0.01 1.96 +songeusement songeusement adv 0.00 0.20 0.00 0.20 +songeuses songeur adj f p 0.26 6.08 0.00 0.34 +songez songer ver 24.59 104.86 5.00 3.45 imp:pre:2p;ind:pre:2p; +songiez songer ver 24.59 104.86 0.14 0.00 ind:imp:2p; +songions songer ver 24.59 104.86 0.00 0.14 ind:imp:1p; +songèrent songer ver 24.59 104.86 0.00 0.27 ind:pas:3p; +songé songer ver m s 24.59 104.86 4.69 10.88 par:pas; +sonique sonique adj s 0.45 0.07 0.35 0.07 +soniques sonique adj p 0.45 0.07 0.09 0.00 +sonna sonner ver 73.67 92.57 0.67 12.23 ind:pas:3s; +sonnai sonner ver 73.67 92.57 0.01 0.81 ind:pas:1s; +sonnaient sonner ver 73.67 92.57 0.59 6.22 ind:imp:3p; +sonnaillaient sonnailler ver 0.00 0.20 0.00 0.14 ind:imp:3p; +sonnaille sonnaille nom f s 0.00 1.15 0.00 0.20 +sonnailler sonnailler ver 0.00 0.20 0.00 0.07 inf; +sonnailles sonnaille nom f p 0.00 1.15 0.00 0.95 +sonnais sonner ver 73.67 92.57 0.33 0.41 ind:imp:1s;ind:imp:2s; +sonnait sonner ver 73.67 92.57 2.78 12.84 ind:imp:3s; +sonnant sonner ver 73.67 92.57 0.32 1.96 par:pre; +sonnante sonnant adj f s 0.20 6.89 0.00 0.34 +sonnantes sonnant adj f p 0.20 6.89 0.14 5.54 +sonnants sonnant adj m p 0.20 6.89 0.01 0.14 +sonne sonner ver 73.67 92.57 31.69 16.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sonnent sonner ver 73.67 92.57 2.92 3.85 ind:pre:3p;sub:pre:3p; +sonner sonner ver 73.67 92.57 11.77 18.04 inf; +sonnera sonner ver 73.67 92.57 1.69 1.15 ind:fut:3s; +sonnerai sonner ver 73.67 92.57 0.25 0.27 ind:fut:1s; +sonnerais sonner ver 73.67 92.57 0.13 0.20 cnd:pre:1s;cnd:pre:2s; +sonnerait sonner ver 73.67 92.57 0.50 1.08 cnd:pre:3s; +sonneras sonner ver 73.67 92.57 0.02 0.07 ind:fut:2s; +sonnerez sonner ver 73.67 92.57 0.01 0.14 ind:fut:2p; +sonnerie sonnerie nom f s 6.65 18.31 6.03 15.68 +sonneries sonnerie nom f p 6.65 18.31 0.63 2.64 +sonneront sonner ver 73.67 92.57 0.37 0.20 ind:fut:3p; +sonnes sonner ver 73.67 92.57 0.48 0.14 ind:pre:2s; +sonnet sonnet nom m s 1.21 2.09 0.72 1.35 +sonnets sonnet nom m p 1.21 2.09 0.49 0.74 +sonnette sonnette nom f s 9.55 16.15 8.47 14.12 +sonnettes sonnette nom f p 9.55 16.15 1.08 2.03 +sonneur sonneur nom m s 1.34 0.61 1.31 0.34 +sonneurs sonneur nom m p 1.34 0.61 0.03 0.27 +sonnez sonner ver 73.67 92.57 2.09 0.14 imp:pre:2p;ind:pre:2p; +sonniez sonner ver 73.67 92.57 0.04 0.00 ind:imp:2p; +sonnons sonner ver 73.67 92.57 0.04 0.14 imp:pre:1p;ind:pre:1p; +sonnât sonner ver 73.67 92.57 0.01 0.34 sub:imp:3s; +sonnèrent sonner ver 73.67 92.57 0.13 1.76 ind:pas:3p; +sonné sonner ver m s 73.67 92.57 16.04 12.23 par:pas; +sonnée sonner ver f s 73.67 92.57 0.71 0.81 par:pas; +sonnées sonné adj f p 0.66 3.58 0.01 0.14 +sonnés sonner ver m p 73.67 92.57 0.07 0.54 par:pas; +sono sono nom f s 1.23 1.89 1.18 1.89 +sonoluminescence sonoluminescence nom f s 0.01 0.00 0.01 0.00 +sonomètres sonomètre nom m p 0.01 0.00 0.01 0.00 +sonore sonore adj s 4.17 27.30 3.26 19.80 +sonorement sonorement adv 0.00 0.07 0.00 0.07 +sonores sonore adj p 4.17 27.30 0.91 7.50 +sonorisateurs sonorisateur nom m p 0.00 0.07 0.00 0.07 +sonorisation sonorisation nom f s 0.03 0.27 0.03 0.27 +sonorise sonoriser ver 0.06 0.27 0.01 0.07 ind:pre:3s; +sonoriser sonoriser ver 0.06 0.27 0.03 0.14 inf; +sonorisé sonoriser ver m s 0.06 0.27 0.02 0.00 par:pas; +sonorisées sonoriser ver f p 0.06 0.27 0.00 0.07 par:pas; +sonorité sonorité nom f s 0.29 6.15 0.26 4.53 +sonorités sonorité nom f p 0.29 6.15 0.04 1.62 +sonos sono nom f p 1.23 1.89 0.05 0.00 +sonothèque sonothèque nom f s 0.01 0.00 0.01 0.00 +sonotone sonotone nom m s 0.17 0.07 0.16 0.00 +sonotones sonotone nom m p 0.17 0.07 0.01 0.07 +sons son nom_sup m p 47.51 67.84 7.83 18.51 +sont être aux 8074.24 6501.82 511.66 386.35 ind:pre:3p; +sopha sopha nom m s 0.00 0.27 0.00 0.27 +sophie sophie nom f s 1.23 0.00 1.23 0.00 +sophisme sophisme nom m s 0.29 0.54 0.29 0.20 +sophismes sophisme nom m p 0.29 0.54 0.00 0.34 +sophiste sophiste nom s 0.10 0.47 0.10 0.27 +sophistes sophiste nom p 0.10 0.47 0.00 0.20 +sophistication sophistication nom f s 0.22 0.68 0.22 0.61 +sophistications sophistication nom f p 0.22 0.68 0.00 0.07 +sophistique sophistique adj s 0.11 0.00 0.11 0.00 +sophistiqué sophistiqué adj m s 3.57 2.23 1.79 0.34 +sophistiquée sophistiqué adj f s 3.57 2.23 0.94 0.95 +sophistiquées sophistiqué adj f p 3.57 2.23 0.32 0.41 +sophistiqués sophistiqué adj m p 3.57 2.23 0.53 0.54 +sophora sophora nom m s 0.14 0.00 0.14 0.00 +sopor sopor nom m s 0.00 0.07 0.00 0.07 +soporifique soporifique adj s 0.62 0.20 0.59 0.20 +soporifiques soporifique adj f p 0.62 0.20 0.04 0.00 +soprano soprano nom s 5.21 2.03 4.80 1.76 +sopranos soprano nom p 5.21 2.03 0.41 0.27 +sorbes sorbe nom f p 0.00 0.07 0.00 0.07 +sorbet sorbet nom m s 0.55 1.55 0.37 0.81 +sorbetière sorbetière nom f s 0.09 0.27 0.09 0.07 +sorbetières sorbetière nom f p 0.09 0.27 0.00 0.20 +sorbets sorbet nom m p 0.55 1.55 0.19 0.74 +sorbier sorbier nom m s 1.18 0.47 1.18 0.34 +sorbiers sorbier nom m p 1.18 0.47 0.00 0.14 +sorbitol sorbitol nom m s 0.03 0.00 0.03 0.00 +sorbonnarde sorbonnard nom f s 0.00 0.07 0.00 0.07 +sorbonne sorbon nom f s 0.00 0.20 0.00 0.20 +sorcellerie sorcellerie nom f s 5.24 1.35 5.21 1.22 +sorcelleries sorcellerie nom f p 5.24 1.35 0.04 0.14 +sorcier sorcier nom m s 54.09 14.66 4.49 4.32 +sorciers sorcier nom m p 54.09 14.66 2.42 1.62 +sorcière sorcier nom f s 54.09 14.66 33.84 6.42 +sorcières sorcier nom f p 54.09 14.66 13.34 2.30 +sordide sordide adj s 6.37 10.95 4.39 7.57 +sordidement sordidement adv 0.14 0.20 0.14 0.20 +sordides sordide adj p 6.37 10.95 1.98 3.38 +sordidité sordidité nom f s 0.03 0.14 0.03 0.14 +sorgho sorgho nom m s 0.03 0.07 0.03 0.07 +sorite sorite nom m s 0.01 0.00 0.01 0.00 +sornette sornette nom f s 1.83 1.69 0.11 0.07 +sornettes sornette nom f p 1.83 1.69 1.72 1.62 +sororal sororal adj m s 0.01 0.27 0.01 0.07 +sororale sororal adj f s 0.01 0.27 0.00 0.14 +sororales sororal adj f p 0.01 0.27 0.00 0.07 +sororité sororité nom f s 0.11 0.14 0.11 0.14 +sors sortir ver 884.26 627.57 156.13 25.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sort sortir ver 884.26 627.57 82.41 58.51 ind:pre:3s; +sortîmes sortir ver 884.26 627.57 0.16 1.35 ind:pas:1p; +sortît sortir ver 884.26 627.57 0.00 0.61 sub:imp:3s; +sortable sortable adj s 0.29 0.07 0.28 0.07 +sortables sortable adj p 0.29 0.07 0.01 0.00 +sortaient sortir ver 884.26 627.57 2.76 21.42 ind:imp:3p; +sortais sortir ver 884.26 627.57 6.38 6.28 ind:imp:1s;ind:imp:2s; +sortait sortir ver 884.26 627.57 12.62 50.81 ind:imp:3s; +sortant sortir ver 884.26 627.57 10.57 34.66 par:pre; +sortante sortant adj f s 1.17 1.49 0.09 0.00 +sortantes sortant adj f p 1.17 1.49 0.02 0.07 +sortants sortant adj m p 1.17 1.49 0.27 0.14 +sorte sorte nom f s 114.73 307.16 98.33 273.38 +sortent sortir ver 884.26 627.57 18.97 17.43 ind:pre:3p; +sortes sorte nom f p 114.73 307.16 16.41 33.78 +sortez sortir ver 884.26 627.57 87.79 5.27 imp:pre:2p;ind:pre:2p; +sorti sortir ver m s 884.26 627.57 81.08 67.97 par:pas; +sortie sortie nom f s 47.81 75.27 42.58 66.01 +sorties sortie nom f p 47.81 75.27 5.23 9.26 +sortiez sortir ver 884.26 627.57 2.87 0.54 ind:imp:2p; +sortilège sortilège nom m s 3.19 3.18 2.46 1.62 +sortilèges sortilège nom m p 3.19 3.18 0.72 1.55 +sortions sortir ver 884.26 627.57 0.67 3.38 ind:imp:1p; +sortir sortir ver 884.26 627.57 285.45 145.34 inf; +sortira sortir ver 884.26 627.57 18.31 6.55 ind:fut:3s; +sortirai sortir ver 884.26 627.57 7.69 1.89 ind:fut:1s; +sortiraient sortir ver 884.26 627.57 0.38 2.03 cnd:pre:3p; +sortirais sortir ver 884.26 627.57 3.06 0.81 cnd:pre:1s;cnd:pre:2s; +sortirait sortir ver 884.26 627.57 3.02 5.47 cnd:pre:3s; +sortiras sortir ver 884.26 627.57 9.37 1.42 ind:fut:2s; +sortirent sortir ver 884.26 627.57 0.39 12.91 ind:pas:3p; +sortirez sortir ver 884.26 627.57 3.12 0.61 ind:fut:2p; +sortiriez sortir ver 884.26 627.57 0.40 0.07 cnd:pre:2p; +sortirions sortir ver 884.26 627.57 0.21 0.14 cnd:pre:1p; +sortirons sortir ver 884.26 627.57 2.50 0.88 ind:fut:1p; +sortiront sortir ver 884.26 627.57 2.61 0.95 ind:fut:3p; +sortis sortir ver m p 884.26 627.57 15.65 26.76 ind:pas:1s;ind:pas:2s;par:pas; +sortit sortir ver 884.26 627.57 2.31 86.96 ind:pas:3s; +sortons sortir ver 884.26 627.57 13.57 4.19 imp:pre:1p;ind:pre:1p; +sorts sort nom m p 44.80 58.92 1.88 1.42 +sosie sosie nom m s 1.89 1.22 1.54 0.88 +sosies sosie nom m p 1.89 1.22 0.34 0.34 +sostenuto sostenuto adv 0.00 0.07 0.00 0.07 +sot sot nom m s 5.61 3.99 2.38 1.01 +sotie sotie nom f s 0.00 0.07 0.00 0.07 +sots sot nom m p 5.61 3.99 1.27 0.88 +sotte sot adj f s 6.34 8.11 2.73 3.78 +sottement sottement adv 0.33 2.30 0.33 2.30 +sottes sot adj f p 6.34 8.11 0.99 0.88 +sottise sottise nom f s 6.97 11.82 2.44 6.96 +sottises sottise nom f p 6.97 11.82 4.54 4.86 +sou sou nom m s 35.92 41.22 14.43 12.57 +souabe souabe adj s 0.14 0.07 0.14 0.00 +souabes souabe nom p 0.20 0.34 0.20 0.34 +soubassement soubassement nom m s 0.13 2.23 0.02 1.82 +soubassements soubassement nom m p 0.13 2.23 0.11 0.41 +soubise soubise nom f s 0.00 0.07 0.00 0.07 +soubresaut soubresaut nom m s 0.53 6.96 0.26 1.49 +soubresautaient soubresauter ver 0.00 0.14 0.00 0.07 ind:imp:3p; +soubresautait soubresauter ver 0.00 0.14 0.00 0.07 ind:imp:3s; +soubresauts soubresaut nom m p 0.53 6.96 0.27 5.47 +soubrette soubrette nom f s 1.11 3.11 0.95 2.36 +soubrettes soubrette nom f p 1.11 3.11 0.16 0.74 +souche souche nom f s 4.93 10.54 3.45 7.36 +souches souche nom f p 4.93 10.54 1.48 3.18 +souchet souchet nom m s 0.01 0.07 0.01 0.07 +souchette souchette nom f s 0.00 0.07 0.00 0.07 +souci souci nom m s 49.47 61.22 26.73 39.80 +soucia soucier ver 22.45 26.62 0.00 0.41 ind:pas:3s; +souciai soucier ver 22.45 26.62 0.01 0.20 ind:pas:1s; +souciaient soucier ver 22.45 26.62 0.28 1.22 ind:imp:3p; +souciais soucier ver 22.45 26.62 0.63 1.49 ind:imp:1s;ind:imp:2s; +souciait soucier ver 22.45 26.62 0.88 5.54 ind:imp:3s; +souciant soucier ver 22.45 26.62 0.05 0.41 par:pre; +soucie soucier ver 22.45 26.62 7.01 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soucient soucier ver 22.45 26.62 0.95 0.47 ind:pre:3p; +soucier soucier ver 22.45 26.62 5.62 8.92 inf; +souciera soucier ver 22.45 26.62 0.27 0.14 ind:fut:3s; +soucierai soucier ver 22.45 26.62 0.12 0.14 ind:fut:1s; +soucieraient soucier ver 22.45 26.62 0.04 0.14 cnd:pre:3p; +soucierais soucier ver 22.45 26.62 0.13 0.00 cnd:pre:1s;cnd:pre:2s; +soucierait soucier ver 22.45 26.62 0.22 0.27 cnd:pre:3s; +soucierez soucier ver 22.45 26.62 0.02 0.00 ind:fut:2p; +soucies soucier ver 22.45 26.62 2.19 0.20 ind:pre:2s; +soucieuse soucieux adj f s 2.28 16.62 0.37 3.45 +soucieuses soucieux adj f p 2.28 16.62 0.11 0.34 +soucieux soucieux adj m 2.28 16.62 1.79 12.84 +souciez soucier ver 22.45 26.62 1.86 0.41 imp:pre:2p;ind:pre:2p; +soucions soucier ver 22.45 26.62 0.16 0.07 imp:pre:1p;ind:pre:1p; +souciât soucier ver 22.45 26.62 0.00 0.34 sub:imp:3s; +soucis souci nom m p 49.47 61.22 22.73 21.42 +soucièrent soucier ver 22.45 26.62 0.00 0.07 ind:pas:3p; +soucié soucier ver m s 22.45 26.62 1.39 1.62 par:pas; +souciée soucier ver f s 22.45 26.62 0.36 0.20 par:pas; +souciées soucier ver f p 22.45 26.62 0.00 0.07 par:pas; +souciés soucier ver m p 22.45 26.62 0.28 0.20 par:pas; +soucoupe soucoupe nom f s 4.14 8.85 2.92 5.95 +soucoupes soucoupe nom f p 4.14 8.85 1.23 2.91 +soudage soudage nom m s 0.04 0.00 0.04 0.00 +soudaient souder ver 3.20 8.04 0.00 0.68 ind:imp:3p; +soudain soudain adv_sup 21.16 207.30 21.16 207.30 +soudaine soudain adj_sup f s 13.62 65.27 3.42 17.16 +soudainement soudainement adv 6.98 5.54 6.98 5.54 +soudaines soudain adj_sup f p 13.62 65.27 0.28 1.69 +soudaineté soudaineté nom f s 0.05 1.28 0.05 1.28 +soudains soudain adj_sup m p 13.62 65.27 0.15 1.62 +soudait souder ver 3.20 8.04 0.01 0.47 ind:imp:3s; +soudanais soudanais nom m 0.24 0.07 0.24 0.07 +soudanaise soudanais adj f s 0.20 0.20 0.00 0.07 +soudant souder ver 3.20 8.04 0.00 0.20 par:pre; +soudard soudard nom m s 0.16 2.23 0.01 1.08 +soudards soudard nom m p 0.16 2.23 0.15 1.15 +soude soude nom f s 0.88 0.88 0.88 0.88 +soudent souder ver 3.20 8.04 0.04 0.34 ind:pre:3p; +souder souder ver 3.20 8.04 1.10 1.08 inf; +souderait souder ver 3.20 8.04 0.01 0.07 cnd:pre:3s; +soudeur soudeur nom m s 1.42 0.27 1.29 0.20 +soudeurs soudeur nom m p 1.42 0.27 0.08 0.07 +soudeuse soudeur nom f s 1.42 0.27 0.05 0.00 +soudez souder ver 3.20 8.04 0.03 0.00 imp:pre:2p;ind:pre:2p; +soudoie soudoyer ver 1.92 1.01 0.04 0.00 ind:pre:1s;ind:pre:3s; +soudoya soudoyer ver 1.92 1.01 0.00 0.07 ind:pas:3s; +soudoyaient soudoyer ver 1.92 1.01 0.01 0.07 ind:imp:3p; +soudoyait soudoyer ver 1.92 1.01 0.02 0.07 ind:imp:3s; +soudoyant soudoyer ver 1.92 1.01 0.21 0.14 par:pre; +soudoyer soudoyer ver 1.92 1.01 0.60 0.34 inf; +soudoyez soudoyer ver 1.92 1.01 0.09 0.00 imp:pre:2p;ind:pre:2p; +soudoyé soudoyer ver m s 1.92 1.01 0.75 0.20 par:pas; +soudoyée soudoyer ver f s 1.92 1.01 0.04 0.07 par:pas; +soudoyés soudoyer ver m p 1.92 1.01 0.16 0.07 par:pas; +soudèrent souder ver 3.20 8.04 0.00 0.07 ind:pas:3p; +soudé souder ver m s 3.20 8.04 0.57 1.35 par:pas; +soudée souder ver f s 3.20 8.04 0.19 0.95 par:pas; +soudées souder ver f p 3.20 8.04 0.17 1.22 par:pas; +soudure soudure nom f s 1.35 1.08 1.09 0.95 +soudures soudure nom f p 1.35 1.08 0.26 0.14 +soudés souder ver m p 3.20 8.04 0.92 1.35 par:pas; +soue soue nom f s 0.11 0.34 0.11 0.34 +souffert souffrir ver m s 113.83 119.26 18.45 18.78 par:pas; +soufferte souffrir ver f s 113.83 119.26 0.00 0.07 par:pas; +souffertes souffrir ver f p 113.83 119.26 0.00 0.14 par:pas; +soufferts souffrir ver m p 113.83 119.26 0.03 0.00 par:pas; +souffla souffler ver 28.33 83.65 0.30 14.80 ind:pas:3s; +soufflages soufflage nom m p 0.00 0.07 0.00 0.07 +soufflai souffler ver 28.33 83.65 0.00 0.54 ind:pas:1s; +soufflaient souffler ver 28.33 83.65 0.06 1.49 ind:imp:3p; +soufflais souffler ver 28.33 83.65 0.05 0.54 ind:imp:1s;ind:imp:2s; +soufflait souffler ver 28.33 83.65 0.86 15.34 ind:imp:3s; +soufflant souffler ver 28.33 83.65 0.38 8.72 par:pre; +soufflante soufflant adj f s 0.03 1.08 0.01 0.34 +soufflants soufflant nom m p 0.02 0.34 0.00 0.14 +souffle souffle nom m s 26.98 100.20 26.55 93.18 +soufflement soufflement nom m s 0.01 0.27 0.01 0.20 +soufflements soufflement nom m p 0.01 0.27 0.00 0.07 +soufflent souffler ver 28.33 83.65 0.81 1.49 ind:pre:3p; +souffler souffler ver 28.33 83.65 6.26 13.65 inf; +soufflera souffler ver 28.33 83.65 0.39 0.14 ind:fut:3s; +soufflerai souffler ver 28.33 83.65 0.28 0.07 ind:fut:1s; +soufflerais souffler ver 28.33 83.65 0.02 0.07 cnd:pre:1s; +soufflerait souffler ver 28.33 83.65 0.14 0.54 cnd:pre:3s; +soufflerez souffler ver 28.33 83.65 0.01 0.00 ind:fut:2p; +soufflerie soufflerie nom f s 0.98 0.88 0.98 0.88 +souffleront souffler ver 28.33 83.65 0.02 0.00 ind:fut:3p; +souffles souffler ver 28.33 83.65 0.60 0.27 ind:pre:2s; +soufflet soufflet nom m s 0.47 6.22 0.43 4.26 +souffletai souffleter ver 0.02 2.09 0.00 0.07 ind:pas:1s; +souffletaient souffleter ver 0.02 2.09 0.00 0.07 ind:imp:3p; +souffletait souffleter ver 0.02 2.09 0.00 0.20 ind:imp:3s; +souffletant souffleter ver 0.02 2.09 0.00 0.07 par:pre; +souffleter souffleter ver 0.02 2.09 0.00 0.41 inf; +soufflets soufflet nom m p 0.47 6.22 0.04 1.96 +soufflette souffleter ver 0.02 2.09 0.02 0.14 imp:pre:2s;ind:pre:3s; +soufflettent souffleter ver 0.02 2.09 0.00 0.14 ind:pre:3p; +soufflettes souffleter ver 0.02 2.09 0.00 0.07 ind:pre:2s; +souffleté souffleter ver m s 0.02 2.09 0.00 0.47 par:pas; +souffletée souffleter ver f s 0.02 2.09 0.00 0.20 par:pas; +souffletés souffleter ver m p 0.02 2.09 0.00 0.27 par:pas; +souffleur souffleur nom m s 1.35 1.22 0.92 1.01 +souffleurs souffleur nom m p 1.35 1.22 0.32 0.20 +souffleuse souffleur nom f s 1.35 1.22 0.11 0.00 +soufflez souffler ver 28.33 83.65 2.60 0.07 imp:pre:2p;ind:pre:2p; +soufflons souffler ver 28.33 83.65 0.26 0.34 imp:pre:1p;ind:pre:1p; +soufflât souffler ver 28.33 83.65 0.00 0.20 sub:imp:3s; +soufflèrent souffler ver 28.33 83.65 0.00 0.47 ind:pas:3p; +soufflé souffler ver m s 28.33 83.65 3.40 7.64 par:pas; +soufflée souffler ver f s 28.33 83.65 0.43 0.95 par:pas; +soufflées souffler ver f p 28.33 83.65 0.11 0.54 par:pas; +soufflure soufflure nom f s 0.00 0.20 0.00 0.14 +soufflures soufflure nom f p 0.00 0.20 0.00 0.07 +soufflés soufflé nom m p 1.33 1.22 0.47 0.00 +souffrît souffrir ver 113.83 119.26 0.00 0.74 sub:imp:3s; +souffraient souffrir ver 113.83 119.26 0.25 2.43 ind:imp:3p; +souffrais souffrir ver 113.83 119.26 0.86 4.26 ind:imp:1s;ind:imp:2s; +souffrait souffrir ver 113.83 119.26 4.14 18.18 ind:imp:3s; +souffrance souffrance nom f s 30.02 47.16 20.05 33.58 +souffrances souffrance nom f p 30.02 47.16 9.97 13.58 +souffrant souffrant adj m s 6.47 5.14 2.88 1.96 +souffrante souffrant adj f s 6.47 5.14 3.12 2.84 +souffrantes souffrant adj f p 6.47 5.14 0.03 0.00 +souffrants souffrant adj m p 6.47 5.14 0.44 0.34 +souffre_douleur souffre_douleur nom m 0.27 1.22 0.27 1.22 +souffre souffrir ver 113.83 119.26 31.52 16.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +souffrent souffrir ver 113.83 119.26 5.25 4.86 ind:pre:3p; +souffres souffrir ver 113.83 119.26 5.27 1.15 ind:pre:2s; +souffreteuse souffreteux adj f s 0.24 2.50 0.22 0.68 +souffreteuses souffreteux adj f p 0.24 2.50 0.00 0.14 +souffreteux souffreteux adj m 0.24 2.50 0.02 1.69 +souffrez souffrir ver 113.83 119.26 4.97 1.01 imp:pre:2p;ind:pre:2p; +souffriez souffrir ver 113.83 119.26 0.37 0.07 ind:imp:2p; +souffrions souffrir ver 113.83 119.26 0.12 0.20 ind:imp:1p; +souffrir souffrir ver 113.83 119.26 34.26 40.41 inf; +souffrira souffrir ver 113.83 119.26 1.77 0.74 ind:fut:3s; +souffrirai souffrir ver 113.83 119.26 0.79 0.47 ind:fut:1s; +souffriraient souffrir ver 113.83 119.26 0.04 0.14 cnd:pre:3p; +souffrirais souffrir ver 113.83 119.26 0.41 0.68 cnd:pre:1s;cnd:pre:2s; +souffrirait souffrir ver 113.83 119.26 0.34 1.42 cnd:pre:3s; +souffriras souffrir ver 113.83 119.26 1.56 0.41 ind:fut:2s; +souffrirent souffrir ver 113.83 119.26 0.04 0.61 ind:pas:3p; +souffrirez souffrir ver 113.83 119.26 0.25 0.14 ind:fut:2p; +souffririez souffrir ver 113.83 119.26 0.03 0.07 cnd:pre:2p; +souffririons souffrir ver 113.83 119.26 0.00 0.14 cnd:pre:1p; +souffrirons souffrir ver 113.83 119.26 0.44 0.07 ind:fut:1p; +souffriront souffrir ver 113.83 119.26 0.27 0.07 ind:fut:3p; +souffris souffrir ver 113.83 119.26 0.03 0.68 ind:pas:1s;ind:pas:2s; +souffrisse souffrir ver 113.83 119.26 0.00 0.14 sub:imp:1s; +souffrissent souffrir ver 113.83 119.26 0.00 0.14 sub:imp:3p; +souffrit souffrir ver 113.83 119.26 0.29 1.49 ind:pas:3s; +souffrons souffrir ver 113.83 119.26 1.06 0.74 imp:pre:1p;ind:pre:1p; +soufi soufi adj m s 0.02 0.07 0.02 0.00 +soufis soufi nom m p 0.44 0.00 0.44 0.00 +soufrages soufrage nom m p 0.00 0.07 0.00 0.07 +soufre soufre nom m s 2.37 4.53 2.37 4.53 +soufré soufré adj m s 0.01 0.47 0.01 0.07 +soufrée soufré adj f s 0.01 0.47 0.00 0.20 +soufrées soufré adj f p 0.01 0.47 0.00 0.14 +soufrés soufré adj m p 0.01 0.47 0.00 0.07 +souhait souhait nom m s 10.41 8.65 5.69 6.22 +souhaita souhaiter ver 85.59 82.16 0.16 2.84 ind:pas:3s; +souhaitable souhaitable adj s 1.40 3.72 1.23 3.24 +souhaitables souhaitable adj p 1.40 3.72 0.17 0.47 +souhaitai souhaiter ver 85.59 82.16 0.02 0.74 ind:pas:1s; +souhaitaient souhaiter ver 85.59 82.16 0.63 2.03 ind:imp:3p; +souhaitais souhaiter ver 85.59 82.16 1.72 6.76 ind:imp:1s;ind:imp:2s; +souhaitait souhaiter ver 85.59 82.16 1.96 13.72 ind:imp:3s; +souhaitant souhaiter ver 85.59 82.16 0.72 2.84 par:pre; +souhaite souhaiter ver 85.59 82.16 39.98 17.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +souhaitent souhaiter ver 85.59 82.16 2.87 0.95 ind:pre:3p; +souhaiter souhaiter ver 85.59 82.16 8.87 10.41 inf;; +souhaitera souhaiter ver 85.59 82.16 0.10 0.14 ind:fut:3s; +souhaiterai souhaiter ver 85.59 82.16 0.40 0.00 ind:fut:1s; +souhaiteraient souhaiter ver 85.59 82.16 0.27 0.14 cnd:pre:3p; +souhaiterais souhaiter ver 85.59 82.16 3.11 1.55 cnd:pre:1s;cnd:pre:2s; +souhaiterait souhaiter ver 85.59 82.16 1.49 1.28 cnd:pre:3s; +souhaiteras souhaiter ver 85.59 82.16 0.11 0.00 ind:fut:2s; +souhaiterez souhaiter ver 85.59 82.16 0.22 0.20 ind:fut:2p; +souhaiteriez souhaiter ver 85.59 82.16 0.57 0.14 cnd:pre:2p; +souhaiterions souhaiter ver 85.59 82.16 0.34 0.07 cnd:pre:1p; +souhaiterons souhaiter ver 85.59 82.16 0.16 0.00 ind:fut:1p; +souhaiteront souhaiter ver 85.59 82.16 0.00 0.14 ind:fut:3p; +souhaites souhaiter ver 85.59 82.16 3.14 0.81 ind:pre:2s; +souhaitez souhaiter ver 85.59 82.16 7.19 1.55 imp:pre:2p;ind:pre:2p; +souhaitiez souhaiter ver 85.59 82.16 0.85 0.47 ind:imp:2p;sub:pre:2p; +souhaitions souhaiter ver 85.59 82.16 0.10 0.74 ind:imp:1p; +souhaitâmes souhaiter ver 85.59 82.16 0.00 0.14 ind:pas:1p; +souhaitons souhaiter ver 85.59 82.16 4.28 1.96 imp:pre:1p;ind:pre:1p; +souhaitât souhaiter ver 85.59 82.16 0.00 0.20 sub:imp:3s; +souhaits souhait nom m p 10.41 8.65 4.72 2.43 +souhaitèrent souhaiter ver 85.59 82.16 0.02 0.27 ind:pas:3p; +souhaité souhaiter ver m s 85.59 82.16 5.91 12.50 par:pas; +souhaitée souhaiter ver f s 85.59 82.16 0.07 1.55 par:pas; +souhaitées souhaiter ver f p 85.59 82.16 0.04 0.27 par:pas; +souhaités souhaiter ver m p 85.59 82.16 0.31 0.47 par:pas; +souilla souiller ver 6.52 15.81 0.10 0.07 ind:pas:3s; +souillage souillage nom m s 0.00 0.07 0.00 0.07 +souillaient souiller ver 6.52 15.81 0.01 0.20 ind:imp:3p; +souillait souiller ver 6.52 15.81 0.02 1.01 ind:imp:3s; +souillant souiller ver 6.52 15.81 0.04 0.20 par:pre; +souillarde souillard nom f s 0.00 2.03 0.00 2.03 +souille souiller ver 6.52 15.81 0.38 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +souillent souiller ver 6.52 15.81 0.07 0.54 ind:pre:3p; +souiller souiller ver 6.52 15.81 1.57 1.62 inf; +souillerai souiller ver 6.52 15.81 0.05 0.07 ind:fut:1s; +souilleraient souiller ver 6.52 15.81 0.01 0.00 cnd:pre:3p; +souillerait souiller ver 6.52 15.81 0.03 0.07 cnd:pre:3s; +souilleras souiller ver 6.52 15.81 0.16 0.00 ind:fut:2s; +souilleront souiller ver 6.52 15.81 0.00 0.07 ind:fut:3p; +souilles souiller ver 6.52 15.81 0.02 0.00 ind:pre:2s; +souillez souiller ver 6.52 15.81 0.16 0.00 imp:pre:2p;ind:pre:2p; +souillon souillon nom s 0.99 1.08 0.82 0.88 +souillonnes souillonner ver 0.00 0.07 0.00 0.07 ind:pre:2s; +souillons souillon nom p 0.99 1.08 0.17 0.20 +souillé souiller ver m s 6.52 15.81 2.29 4.19 par:pas; +souillée souiller ver f s 6.52 15.81 1.10 3.45 par:pas; +souillées souiller ver f p 6.52 15.81 0.06 1.76 par:pas; +souillure souillure nom f s 0.79 2.91 0.45 1.49 +souillures souillure nom f p 0.79 2.91 0.35 1.42 +souillés souiller ver m p 6.52 15.81 0.45 1.76 par:pas; +souk souk nom m s 0.81 2.64 0.81 1.49 +souks souk nom m p 0.81 2.64 0.00 1.15 +soul soul nom f s 1.71 0.20 1.71 0.20 +soulage soulager ver 21.57 29.12 4.10 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +soulagea soulager ver 21.57 29.12 0.01 0.68 ind:pas:3s; +soulageai soulager ver 21.57 29.12 0.00 0.14 ind:pas:1s; +soulageaient soulager ver 21.57 29.12 0.03 0.14 ind:imp:3p; +soulageait soulager ver 21.57 29.12 0.17 1.28 ind:imp:3s; +soulageant soulager ver 21.57 29.12 0.11 0.20 par:pre; +soulagement soulagement nom m s 4.94 21.22 4.84 21.22 +soulagements soulagement nom m p 4.94 21.22 0.10 0.00 +soulagent soulager ver 21.57 29.12 0.34 0.34 ind:pre:3p; +soulageâmes soulager ver 21.57 29.12 0.00 0.07 ind:pas:1p; +soulageons soulager ver 21.57 29.12 0.01 0.07 ind:pre:1p; +soulager soulager ver 21.57 29.12 6.62 6.49 inf; +soulagera soulager ver 21.57 29.12 0.59 0.41 ind:fut:3s; +soulagerai soulager ver 21.57 29.12 0.06 0.00 ind:fut:1s; +soulageraient soulager ver 21.57 29.12 0.00 0.07 cnd:pre:3p; +soulagerait soulager ver 21.57 29.12 0.78 0.54 cnd:pre:3s; +soulagerez soulager ver 21.57 29.12 0.15 0.00 ind:fut:2p; +soulages soulager ver 21.57 29.12 0.24 0.00 ind:pre:2s; +soulagez soulager ver 21.57 29.12 0.15 0.00 imp:pre:2p;ind:pre:2p; +soulagèrent soulager ver 21.57 29.12 0.00 0.20 ind:pas:3p; +soulagé soulager ver m s 21.57 29.12 4.67 10.00 par:pas; +soulagée soulager ver f s 21.57 29.12 2.98 4.53 par:pas; +soulagées soulager ver f p 21.57 29.12 0.04 0.14 par:pas; +soulagés soulager ver m p 21.57 29.12 0.53 1.22 par:pas; +soule soule adj m s 0.30 0.00 0.30 0.00 +souleva soulever ver 24.26 113.38 0.60 19.39 ind:pas:3s; +soulevai soulever ver 24.26 113.38 0.00 1.15 ind:pas:1s; +soulevaient soulever ver 24.26 113.38 0.23 4.80 ind:imp:3p; +soulevais soulever ver 24.26 113.38 0.10 0.34 ind:imp:1s;ind:imp:2s; +soulevait soulever ver 24.26 113.38 0.26 14.80 ind:imp:3s; +soulevant soulever ver 24.26 113.38 0.50 10.20 par:pre; +soulever soulever ver 24.26 113.38 5.92 17.16 inf; +soulevez soulever ver 24.26 113.38 2.44 0.54 imp:pre:2p;ind:pre:2p; +soulevions soulever ver 24.26 113.38 0.00 0.07 ind:imp:1p; +soulevons soulever ver 24.26 113.38 0.35 0.14 imp:pre:1p;ind:pre:1p; +soulevât soulever ver 24.26 113.38 0.00 0.14 sub:imp:3s; +soulevèrent soulever ver 24.26 113.38 0.02 1.96 ind:pas:3p; +soulevé soulever ver m s 24.26 113.38 3.04 11.08 par:pas; +soulevée soulever ver f s 24.26 113.38 0.56 5.54 par:pas; +soulevées soulever ver f p 24.26 113.38 0.02 1.08 par:pas; +soulevés soulever ver m p 24.26 113.38 0.54 2.16 par:pas; +soulier soulier nom m s 9.76 35.68 2.53 4.80 +souliers soulier nom m p 9.76 35.68 7.23 30.88 +souligna souligner ver 4.72 22.57 0.00 0.95 ind:pas:3s; +soulignai souligner ver 4.72 22.57 0.00 0.41 ind:pas:1s; +soulignaient souligner ver 4.72 22.57 0.10 1.28 ind:imp:3p; +soulignais souligner ver 4.72 22.57 0.00 0.20 ind:imp:1s; +soulignait souligner ver 4.72 22.57 0.04 2.84 ind:imp:3s; +soulignant souligner ver 4.72 22.57 0.27 2.30 par:pre; +souligne souligner ver 4.72 22.57 0.73 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soulignent souligner ver 4.72 22.57 0.14 0.74 ind:pre:3p; +souligner souligner ver 4.72 22.57 1.65 4.86 inf; +soulignera souligner ver 4.72 22.57 0.00 0.07 ind:fut:3s; +souligneraient souligner ver 4.72 22.57 0.00 0.07 cnd:pre:3p; +soulignerait souligner ver 4.72 22.57 0.00 0.07 cnd:pre:3s; +soulignez souligner ver 4.72 22.57 0.04 0.07 imp:pre:2p; +souligniez souligner ver 4.72 22.57 0.01 0.00 ind:imp:2p; +soulignions souligner ver 4.72 22.57 0.00 0.07 ind:imp:1p; +souligné souligner ver m s 4.72 22.57 1.41 2.91 par:pas; +soulignée souligner ver f s 4.72 22.57 0.01 1.08 par:pas; +soulignées souligner ver f p 4.72 22.57 0.02 0.81 par:pas; +soulignés souligner ver m p 4.72 22.57 0.29 1.22 par:pas; +soulève soulever ver 24.26 113.38 7.72 17.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soulèvement soulèvement nom m s 1.04 2.36 0.77 2.23 +soulèvements soulèvement nom m p 1.04 2.36 0.28 0.14 +soulèvent soulever ver 24.26 113.38 0.47 4.26 ind:pre:3p; +soulèvera soulever ver 24.26 113.38 0.22 0.20 ind:fut:3s; +soulèverai soulever ver 24.26 113.38 0.27 0.14 ind:fut:1s; +soulèveraient soulever ver 24.26 113.38 0.00 0.27 cnd:pre:3p; +soulèverais soulever ver 24.26 113.38 0.03 0.07 cnd:pre:1s; +soulèverait soulever ver 24.26 113.38 0.04 0.34 cnd:pre:3s; +soulèverez soulever ver 24.26 113.38 0.01 0.00 ind:fut:2p; +soulèveriez soulever ver 24.26 113.38 0.01 0.00 cnd:pre:2p; +soulèverons soulever ver 24.26 113.38 0.04 0.00 ind:fut:1p; +soulèveront soulever ver 24.26 113.38 0.28 0.00 ind:fut:3p; +soulèves soulever ver 24.26 113.38 0.57 0.07 ind:pre:2s; +soumît soumettre ver 17.51 37.57 0.00 0.07 sub:imp:3s; +soumet soumettre ver 17.51 37.57 0.88 1.49 ind:pre:3s; +soumets soumettre ver 17.51 37.57 1.89 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +soumettaient soumettre ver 17.51 37.57 0.00 0.41 ind:imp:3p; +soumettais soumettre ver 17.51 37.57 0.01 0.41 ind:imp:1s; +soumettait soumettre ver 17.51 37.57 0.00 1.96 ind:imp:3s; +soumettant soumettre ver 17.51 37.57 0.07 0.34 par:pre; +soumette soumettre ver 17.51 37.57 0.23 0.41 sub:pre:1s;sub:pre:3s; +soumettent soumettre ver 17.51 37.57 0.06 0.54 ind:pre:3p; +soumettez soumettre ver 17.51 37.57 0.25 0.20 imp:pre:2p;ind:pre:2p; +soumettions soumettre ver 17.51 37.57 0.01 0.14 ind:imp:1p; +soumettons soumettre ver 17.51 37.57 0.12 0.00 imp:pre:1p;ind:pre:1p; +soumettra soumettre ver 17.51 37.57 0.27 0.20 ind:fut:3s; +soumettrai soumettre ver 17.51 37.57 0.47 0.14 ind:fut:1s; +soumettraient soumettre ver 17.51 37.57 0.00 0.07 cnd:pre:3p; +soumettrais soumettre ver 17.51 37.57 0.02 0.20 cnd:pre:1s; +soumettrait soumettre ver 17.51 37.57 0.01 0.20 cnd:pre:3s; +soumettras soumettre ver 17.51 37.57 0.03 0.00 ind:fut:2s; +soumettre soumettre ver 17.51 37.57 5.84 9.26 inf; +soumettrez soumettre ver 17.51 37.57 0.05 0.07 ind:fut:2p; +soumettront soumettre ver 17.51 37.57 0.04 0.07 ind:fut:3p; +soumirent soumettre ver 17.51 37.57 0.21 0.20 ind:pas:3p; +soumis soumettre ver m 17.51 37.57 5.22 13.65 ind:pas:1s;par:pas;par:pas; +soumise soumettre ver f s 17.51 37.57 1.21 3.78 par:pas; +soumises soumettre ver f p 17.51 37.57 0.58 1.69 par:pas; +soumission soumission nom f s 1.63 10.95 1.63 10.27 +soumissionner soumissionner ver 0.01 0.00 0.01 0.00 inf; +soumissions soumission nom f p 1.63 10.95 0.00 0.68 +soumit soumettre ver 17.51 37.57 0.02 1.55 ind:pas:3s; +soupa souper ver 8.81 6.96 0.00 0.20 ind:pas:3s; +soupaient souper ver 8.81 6.96 0.00 0.20 ind:imp:3p; +soupais souper ver 8.81 6.96 0.11 0.14 ind:imp:1s; +soupait souper ver 8.81 6.96 0.23 0.20 ind:imp:3s; +soupant souper ver 8.81 6.96 0.00 0.14 par:pre; +soupape soupape nom f s 0.92 1.28 0.39 0.61 +soupapes soupape nom f p 0.92 1.28 0.54 0.68 +soupasse souper ver 8.81 6.96 0.10 0.07 sub:imp:1s; +soupe soupe nom f s 32.26 38.04 31.72 35.74 +soupent souper ver 8.81 6.96 0.00 0.07 ind:pre:3p; +soupente soupente nom f s 0.19 3.11 0.19 2.70 +soupentes soupente nom f p 0.19 3.11 0.00 0.41 +souper souper nom m s 6.48 7.70 6.39 6.82 +soupera souper ver 8.81 6.96 0.03 0.20 ind:fut:3s; +souperaient souper ver 8.81 6.96 0.00 0.07 cnd:pre:3p; +souperait souper ver 8.81 6.96 0.00 0.07 cnd:pre:3s; +souperons souper ver 8.81 6.96 0.04 0.07 ind:fut:1p; +soupers souper nom m p 6.48 7.70 0.09 0.88 +soupes soupe nom f p 32.26 38.04 0.54 2.30 +soupesa soupeser ver 0.34 5.14 0.00 0.81 ind:pas:3s; +soupesait soupeser ver 0.34 5.14 0.00 0.88 ind:imp:3s; +soupesant soupeser ver 0.34 5.14 0.02 0.34 par:pre; +soupeser soupeser ver 0.34 5.14 0.05 1.55 inf; +soupesez soupeser ver 0.34 5.14 0.06 0.07 imp:pre:2p;ind:pre:2p; +soupesé soupeser ver m s 0.34 5.14 0.02 0.07 par:pas; +soupesée soupeser ver f s 0.34 5.14 0.00 0.14 par:pas; +soupesés soupeser ver m p 0.34 5.14 0.00 0.07 par:pas; +soupeur soupeur nom m s 0.00 0.20 0.00 0.07 +soupeurs soupeur nom m p 0.00 0.20 0.00 0.14 +soupez souper ver 8.81 6.96 0.06 0.00 imp:pre:2p;ind:pre:2p; +soupier soupier adj m s 0.00 2.57 0.00 2.57 +soupir soupir nom m s 7.85 35.95 4.75 26.82 +soupira soupirer ver 9.81 65.47 0.03 30.74 ind:pas:3s; +soupirai soupirer ver 9.81 65.47 0.00 1.15 ind:pas:1s; +soupiraient soupirer ver 9.81 65.47 0.00 0.41 ind:imp:3p; +soupirail soupirail nom m s 0.16 3.24 0.16 2.84 +soupirais soupirer ver 9.81 65.47 0.01 0.47 ind:imp:1s;ind:imp:2s; +soupirait soupirer ver 9.81 65.47 0.13 6.96 ind:imp:3s; +soupirant soupirant nom m s 0.96 2.23 0.61 1.55 +soupirants soupirant nom m p 0.96 2.23 0.35 0.68 +soupiraux soupirail nom m p 0.16 3.24 0.00 0.41 +soupire soupirer ver 9.81 65.47 6.71 10.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupirent soupirer ver 9.81 65.47 0.19 0.27 ind:pre:3p; +soupirer soupirer ver 9.81 65.47 0.99 2.91 inf; +soupirerait soupirer ver 9.81 65.47 0.00 0.07 cnd:pre:3s; +soupires soupirer ver 9.81 65.47 0.36 0.34 ind:pre:2s; +soupirez soupirer ver 9.81 65.47 0.38 0.20 imp:pre:2p;ind:pre:2p; +soupirions soupirer ver 9.81 65.47 0.00 0.07 ind:imp:1p; +soupirons soupirer ver 9.81 65.47 0.00 0.14 ind:pre:1p; +soupirât soupirer ver 9.81 65.47 0.00 0.20 sub:imp:3s; +soupirs soupir nom m p 7.85 35.95 3.10 9.12 +soupirèrent soupirer ver 9.81 65.47 0.00 0.20 ind:pas:3p; +soupiré soupirer ver m s 9.81 65.47 0.69 5.47 par:pas; +soupière soupière nom f s 0.10 2.43 0.07 2.23 +soupières soupière nom f p 0.10 2.43 0.02 0.20 +souple souple adj s 4.22 27.23 3.21 20.00 +souplement souplement adv 0.00 1.55 0.00 1.55 +souples souple adj p 4.22 27.23 1.02 7.23 +souplesse souplesse nom f s 1.28 9.86 1.28 9.73 +souplesses souplesse nom f p 1.28 9.86 0.00 0.14 +soupâmes souper ver 8.81 6.96 0.00 0.07 ind:pas:1p; +soupons souper ver 8.81 6.96 0.13 0.14 imp:pre:1p;ind:pre:1p; +soupçon soupçon nom m s 15.53 23.58 5.75 15.61 +soupçonna soupçonner ver 19.88 34.59 0.04 0.54 ind:pas:3s; +soupçonnable soupçonnable adj s 0.00 0.07 0.00 0.07 +soupçonnai soupçonner ver 19.88 34.59 0.00 0.27 ind:pas:1s; +soupçonnaient soupçonner ver 19.88 34.59 0.34 1.08 ind:imp:3p; +soupçonnais soupçonner ver 19.88 34.59 0.83 3.11 ind:imp:1s;ind:imp:2s; +soupçonnait soupçonner ver 19.88 34.59 0.65 5.14 ind:imp:3s; +soupçonnant soupçonner ver 19.88 34.59 0.12 0.74 par:pre; +soupçonne soupçonner ver 19.88 34.59 6.25 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupçonnent soupçonner ver 19.88 34.59 0.79 0.61 ind:pre:3p; +soupçonner soupçonner ver 19.88 34.59 2.82 7.84 inf; +soupçonnera soupçonner ver 19.88 34.59 0.58 0.14 ind:fut:3s; +soupçonnerais soupçonner ver 19.88 34.59 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +soupçonnerait soupçonner ver 19.88 34.59 0.32 0.41 cnd:pre:3s; +soupçonneriez soupçonner ver 19.88 34.59 0.01 0.07 cnd:pre:2p; +soupçonneront soupçonner ver 19.88 34.59 0.19 0.07 ind:fut:3p; +soupçonnes soupçonner ver 19.88 34.59 0.48 0.34 ind:pre:2s; +soupçonneuse soupçonneux adj f s 1.25 6.22 0.30 1.08 +soupçonneuses soupçonneux adj f p 1.25 6.22 0.00 0.20 +soupçonneux soupçonneux adj m 1.25 6.22 0.95 4.93 +soupçonnez soupçonner ver 19.88 34.59 1.32 0.20 imp:pre:2p;ind:pre:2p; +soupçonniez soupçonner ver 19.88 34.59 0.41 0.20 ind:imp:2p; +soupçonnions soupçonner ver 19.88 34.59 0.16 0.14 ind:imp:1p; +soupçonnons soupçonner ver 19.88 34.59 0.15 0.27 ind:pre:1p; +soupçonnât soupçonner ver 19.88 34.59 0.00 0.20 sub:imp:3s; +soupçonnèrent soupçonner ver 19.88 34.59 0.01 0.14 ind:pas:3p; +soupçonné soupçonner ver m s 19.88 34.59 3.49 4.86 par:pas; +soupçonnée soupçonner ver f s 19.88 34.59 0.64 1.28 par:pas; +soupçonnées soupçonner ver f p 19.88 34.59 0.03 0.27 par:pas; +soupçonnés soupçonner ver m p 19.88 34.59 0.22 0.47 par:pas; +soupçons soupçon nom m p 15.53 23.58 9.78 7.97 +soupèrent souper ver 8.81 6.96 0.01 0.20 ind:pas:3p; +soupèse soupeser ver 0.34 5.14 0.19 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupèserait soupeser ver 0.34 5.14 0.00 0.07 cnd:pre:3s; +soupé souper ver m s 8.81 6.96 1.73 0.95 par:pas; +souquaient souquer ver 0.43 0.20 0.00 0.07 ind:imp:3p; +souque souquer ver 0.43 0.20 0.01 0.07 imp:pre:2s;ind:pre:3s; +souquenille souquenille nom f s 0.00 0.41 0.00 0.27 +souquenilles souquenille nom f p 0.00 0.41 0.00 0.14 +souquer souquer ver 0.43 0.20 0.01 0.00 inf; +souquez souquer ver 0.43 0.20 0.40 0.00 imp:pre:2p; +souqué souquer ver m s 0.43 0.20 0.01 0.07 par:pas; +sourîmes sourire ver 53.97 262.91 0.00 0.07 ind:pas:1p; +sourît sourire ver 53.97 262.91 0.00 0.20 sub:imp:3s; +sourate sourate nom f s 0.14 0.20 0.14 0.14 +sourates sourate nom f p 0.14 0.20 0.00 0.07 +source source nom f s 46.44 49.19 37.34 35.41 +sources source nom f p 46.44 49.19 9.11 13.78 +sourcier sourcier nom m s 0.40 0.81 0.40 0.74 +sourciers sourcier nom m p 0.40 0.81 0.00 0.07 +sourcil sourcil nom m s 5.85 47.64 1.42 8.65 +sourcilière sourcilier adj f s 0.20 1.62 0.20 0.95 +sourcilières sourcilier adj f p 0.20 1.62 0.00 0.68 +sourcilla sourciller ver 0.61 2.09 0.00 0.34 ind:pas:3s; +sourcillai sourciller ver 0.61 2.09 0.00 0.07 ind:pas:1s; +sourcille sourciller ver 0.61 2.09 0.00 0.07 ind:pre:3s; +sourciller sourciller ver 0.61 2.09 0.54 1.49 inf; +sourcilleuse sourcilleux adj f s 0.01 1.96 0.00 0.61 +sourcilleuses sourcilleux adj f p 0.01 1.96 0.00 0.20 +sourcilleux sourcilleux adj m 0.01 1.96 0.01 1.15 +sourcillé sourciller ver m s 0.61 2.09 0.07 0.14 par:pas; +sourcils sourcil nom m p 5.85 47.64 4.43 38.99 +sourd_muet sourd_muet adj m s 0.78 0.20 0.77 0.20 +sourd sourd adj m s 25.69 50.68 16.96 19.73 +sourdaient sourdaient ver 0.00 0.20 0.00 0.20 inf; +sourdait sourdait ver 0.00 1.08 0.00 1.08 inf; +sourdant sourdre ver 0.42 5.47 0.00 0.20 par:pre; +sourde_muette sourde_muette nom f s 0.24 0.07 0.24 0.07 +sourde sourd adj f s 25.69 50.68 5.58 21.76 +sourdement sourdement adv 0.00 6.55 0.00 6.55 +sourdes sourd adj f p 25.69 50.68 0.48 2.91 +sourdine sourdine nom f s 0.73 6.49 0.73 6.49 +sourdingue sourdingue adj s 0.10 1.42 0.10 1.28 +sourdingues sourdingue adj m p 0.10 1.42 0.00 0.14 +sourdre sourdre ver 0.42 5.47 0.00 3.45 inf; +sourdront sourdre ver 0.42 5.47 0.00 0.07 ind:fut:3p; +sourd_muet sourd_muet nom m p 1.48 1.01 0.88 0.68 +sourds sourd adj m p 25.69 50.68 2.66 6.28 +souri sourire ver m s 53.97 262.91 3.19 12.97 par:pas; +souriaient sourire ver 53.97 262.91 0.39 5.34 ind:imp:3p; +souriais sourire ver 53.97 262.91 0.67 3.31 ind:imp:1s;ind:imp:2s; +souriait sourire ver 53.97 262.91 2.00 44.26 ind:imp:3s; +souriant souriant adj m s 4.02 23.45 2.22 9.46 +souriante souriant adj f s 4.02 23.45 1.07 10.95 +souriantes souriant adj f p 4.02 23.45 0.25 1.28 +souriants souriant adj m p 4.02 23.45 0.47 1.76 +souriceau souriceau nom m s 0.35 0.41 0.35 0.34 +souriceaux souriceau nom m p 0.35 0.41 0.00 0.07 +souricière souricière nom f s 0.27 0.34 0.23 0.34 +souricières souricière nom f p 0.27 0.34 0.04 0.00 +sourie sourire ver 53.97 262.91 0.50 0.14 sub:pre:1s;sub:pre:3s; +sourient sourire ver 53.97 262.91 1.49 3.38 ind:pre:3p; +souries sourire ver 53.97 262.91 0.09 0.00 sub:pre:2s; +souriez sourire ver 53.97 262.91 10.00 0.88 imp:pre:2p;ind:pre:2p; +souriions sourire ver 53.97 262.91 0.00 0.20 ind:imp:1p; +sourions sourire ver 53.97 262.91 0.08 0.34 imp:pre:1p;ind:pre:1p; +sourira sourire ver 53.97 262.91 0.46 0.41 ind:fut:3s; +sourirai sourire ver 53.97 262.91 0.35 0.07 ind:fut:1s; +souriraient sourire ver 53.97 262.91 0.01 0.14 cnd:pre:3p; +sourirais sourire ver 53.97 262.91 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +sourirait sourire ver 53.97 262.91 0.04 0.88 cnd:pre:3s; +souriras sourire ver 53.97 262.91 0.20 0.00 ind:fut:2s; +sourire sourire nom m s 36.08 215.34 33.79 196.55 +sourirent sourire ver 53.97 262.91 0.00 2.03 ind:pas:3p; +sourires sourire nom m p 36.08 215.34 2.29 18.78 +sourirons sourire ver 53.97 262.91 0.02 0.00 ind:fut:1p; +souriront sourire ver 53.97 262.91 0.02 0.00 ind:fut:3p; +souris souris nom 21.94 22.57 21.94 22.57 +sourit sourire ver 53.97 262.91 11.70 95.74 ind:pre:3s;ind:pas:3s; +sournois sournois adj m 2.64 16.89 1.87 8.92 +sournoise sournois adj f s 2.64 16.89 0.72 6.28 +sournoisement sournoisement adv 0.12 4.80 0.12 4.80 +sournoiserie sournoiserie nom f s 0.04 0.95 0.04 0.61 +sournoiseries sournoiserie nom f p 0.04 0.95 0.00 0.34 +sournoises sournois adj f p 2.64 16.89 0.04 1.69 +sous_alimentation sous_alimentation nom f s 0.03 0.27 0.03 0.27 +sous_alimenter sous_alimenter ver m s 0.04 0.00 0.02 0.00 par:pas; +sous_alimenté sous_alimenté adj f s 0.04 0.20 0.04 0.07 +sous_alimenté sous_alimenté nom m p 0.01 0.27 0.01 0.14 +sous_bibliothécaire sous_bibliothécaire nom s 0.00 0.47 0.00 0.47 +sous_bois sous_bois nom m 0.49 7.57 0.49 7.57 +sous_chef sous_chef nom m s 0.73 0.88 0.69 0.74 +sous_chef sous_chef nom m p 0.73 0.88 0.04 0.14 +sous_classe sous_classe nom f s 0.01 0.00 0.01 0.00 +sous_clavier sous_clavier adj f s 0.28 0.00 0.28 0.00 +sous_comité sous_comité nom m s 0.26 0.07 0.26 0.07 +sous_commission sous_commission nom f s 0.18 0.07 0.18 0.07 +sous_continent sous_continent nom m s 0.06 0.07 0.05 0.07 +sous_continent sous_continent nom m p 0.06 0.07 0.01 0.00 +sous_couche sous_couche nom f s 0.03 0.00 0.03 0.00 +sous_cul sous_cul nom m s 0.00 0.07 0.00 0.07 +sous_cutané sous_cutané adj m s 0.28 0.07 0.10 0.00 +sous_cutané sous_cutané adj f s 0.28 0.07 0.10 0.00 +sous_cutané sous_cutané adj f p 0.28 0.07 0.05 0.07 +sous_cutané sous_cutané adj m p 0.28 0.07 0.03 0.00 +sous_diacre sous_diacre nom m s 0.00 0.07 0.00 0.07 +sous_directeur sous_directeur nom m s 0.66 1.96 0.63 1.82 +sous_directeur sous_directeur nom m p 0.66 1.96 0.00 0.07 +sous_directeur sous_directeur nom f s 0.66 1.96 0.03 0.07 +sous_division sous_division nom f s 0.04 0.00 0.04 0.00 +sous_dominante sous_dominante nom f s 0.01 0.07 0.01 0.07 +sous_développement sous_développement nom m s 0.30 0.27 0.30 0.27 +sous_développé sous_développé adj m s 0.31 0.68 0.09 0.27 +sous_développé sous_développé adj f s 0.31 0.68 0.02 0.00 +sous_développé sous_développé adj f p 0.31 0.68 0.02 0.07 +sous_développé sous_développé adj m p 0.31 0.68 0.19 0.34 +sous_effectif sous_effectif nom m s 0.11 0.00 0.10 0.00 +sous_effectif sous_effectif nom m p 0.11 0.00 0.01 0.00 +sous_emploi sous_emploi nom m s 0.00 0.07 0.00 0.07 +sous_ensemble sous_ensemble nom m s 0.08 0.14 0.08 0.14 +sous_entendre sous_entendre ver 2.03 1.82 0.39 0.20 ind:pre:3s; +sous_entendre sous_entendre ver 2.03 1.82 0.17 0.00 ind:imp:1s; +sous_entendre sous_entendre ver 2.03 1.82 0.03 0.54 ind:imp:3s; +sous_entendre sous_entendre ver 2.03 1.82 0.01 0.47 par:pre; +sous_entendre sous_entendre ver 2.03 1.82 0.01 0.00 ind:pre:3p; +sous_entendre sous_entendre ver 2.03 1.82 0.42 0.00 ind:pre:2p; +sous_entendre sous_entendre ver 2.03 1.82 0.10 0.00 ind:imp:2p; +sous_entendre sous_entendre ver 2.03 1.82 0.01 0.00 cnd:pre:3s; +sous_entendre sous_entendre ver 2.03 1.82 0.11 0.27 inf; +sous_entendre sous_entendre ver 2.03 1.82 0.39 0.00 ind:pre:1s;ind:pre:2s; +sous_entendre sous_entendre ver m s 2.03 1.82 0.38 0.14 par:pas; +sous_entendu sous_entendu adj f s 0.06 0.68 0.01 0.07 +sous_entendu sous_entendu nom m p 0.77 5.34 0.45 3.38 +sous_espace sous_espace nom m s 0.22 0.00 0.22 0.00 +sous_espèce sous_espèce nom f s 0.11 0.00 0.11 0.00 +sous_estimer sous_estimer ver 7.27 1.08 0.05 0.00 ind:imp:1s; +sous_estimer sous_estimer ver 7.27 1.08 0.03 0.34 ind:imp:3s; +sous_estimation sous_estimation nom f s 0.06 0.07 0.06 0.07 +sous_estimer sous_estimer ver 7.27 1.08 1.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sous_estimer sous_estimer ver 7.27 1.08 0.22 0.00 ind:pre:3p; +sous_estimer sous_estimer ver 7.27 1.08 1.05 0.54 inf; +sous_estimer sous_estimer ver 7.27 1.08 0.03 0.00 ind:fut:1s; +sous_estimer sous_estimer ver 7.27 1.08 0.72 0.00 ind:pre:2s; +sous_estimer sous_estimer ver 7.27 1.08 1.53 0.00 imp:pre:2p;ind:pre:2p; +sous_estimer sous_estimer ver 7.27 1.08 0.11 0.00 imp:pre:1p;ind:pre:1p; +sous_estimer sous_estimer ver m s 7.27 1.08 1.71 0.14 par:pas; +sous_estimer sous_estimer ver f s 7.27 1.08 0.14 0.00 par:pas; +sous_estimer sous_estimer ver f p 7.27 1.08 0.07 0.00 par:pas; +sous_estimer sous_estimer ver m p 7.27 1.08 0.09 0.00 par:pas; +sous_exposer sous_exposer ver m s 0.02 0.00 0.01 0.00 par:pas; +sous_exposer sous_exposer ver f p 0.02 0.00 0.01 0.00 par:pas; +sous_fifre sous_fifre nom m s 0.72 0.41 0.45 0.20 +sous_fifre sous_fifre nom m p 0.72 0.41 0.27 0.20 +sous_garde sous_garde nom f s 0.01 0.07 0.01 0.07 +sous_genre sous_genre nom m s 0.02 0.00 0.02 0.00 +sous_gorge sous_gorge nom f 0.00 0.07 0.00 0.07 +sous_groupe sous_groupe nom m s 0.01 0.00 0.01 0.00 +sous_homme sous_homme nom m s 0.20 0.61 0.16 0.00 +sous_homme sous_homme nom m p 0.20 0.61 0.05 0.61 +sous_humanité sous_humanité nom f s 0.01 0.20 0.01 0.20 +sous_intendant sous_intendant nom m s 0.30 0.00 0.10 0.00 +sous_intendant sous_intendant nom m p 0.30 0.00 0.20 0.00 +sous_jacent sous_jacent adj m s 0.81 0.34 0.19 0.20 +sous_jacent sous_jacent adj f s 0.81 0.34 0.22 0.07 +sous_jacent sous_jacent adj f p 0.81 0.34 0.01 0.07 +sous_jacent sous_jacent adj m p 0.81 0.34 0.39 0.00 +sous_lieutenant sous_lieutenant nom m s 0.81 5.61 0.76 4.93 +sous_lieutenant sous_lieutenant nom m p 0.81 5.61 0.05 0.68 +sous_locataire sous_locataire nom s 0.02 0.14 0.02 0.00 +sous_locataire sous_locataire nom p 0.02 0.14 0.00 0.14 +sous_location sous_location nom f s 0.09 0.07 0.06 0.07 +sous_location sous_location nom f p 0.09 0.07 0.03 0.00 +sous_louer sous_louer ver 0.63 0.47 0.00 0.07 ind:pas:3s; +sous_louer sous_louer ver 0.63 0.47 0.03 0.00 ind:imp:3s; +sous_louer sous_louer ver 0.63 0.47 0.21 0.00 ind:pre:1s;ind:pre:3s; +sous_louer sous_louer ver 0.63 0.47 0.17 0.14 inf; +sous_louer sous_louer ver 0.63 0.47 0.11 0.00 ind:fut:1s; +sous_louer sous_louer ver 0.63 0.47 0.02 0.00 ind:pre:2p; +sous_louer sous_louer ver 0.63 0.47 0.00 0.07 ind:pas:3p; +sous_louer sous_louer ver m s 0.63 0.47 0.08 0.20 par:pas; +sous_maîtresse sous_maîtresse nom f s 0.07 0.20 0.07 0.20 +sous_main sous_main nom m s 0.28 1.96 0.28 1.96 +sous_marin sous_marin nom m s 11.14 6.42 9.07 2.70 +sous_marin sous_marin adj f s 4.47 5.00 1.06 1.89 +sous_marin sous_marin adj f p 4.47 5.00 0.41 0.88 +sous_marinier sous_marinier nom m s 0.26 0.00 0.04 0.00 +sous_marinier sous_marinier nom m p 0.26 0.00 0.22 0.00 +sous_marin sous_marin nom m p 11.14 6.42 2.07 3.72 +sous_marque sous_marque nom f s 0.01 0.14 0.01 0.07 +sous_marque sous_marque nom f p 0.01 0.14 0.00 0.07 +sous_merde sous_merde nom f s 0.59 0.14 0.54 0.14 +sous_merde sous_merde nom f p 0.59 0.14 0.05 0.00 +sous_ministre sous_ministre nom m s 0.17 0.07 0.17 0.07 +sous_off sous_off nom m s 0.14 4.26 0.11 2.16 +sous_officier sous_officier nom m s 0.65 9.53 0.28 4.80 +sous_officier sous_officier nom m p 0.65 9.53 0.36 4.73 +sous_off sous_off nom m p 0.14 4.26 0.03 2.09 +sous_ordre sous_ordre nom m s 0.01 0.61 0.01 0.54 +sous_ordre sous_ordre nom m p 0.01 0.61 0.00 0.07 +sous_payer sous_payer ver 0.28 0.07 0.04 0.00 inf; +sous_payer sous_payer ver m s 0.28 0.07 0.14 0.07 par:pas; +sous_payer sous_payer ver m p 0.28 0.07 0.10 0.00 par:pas; +sous_pied sous_pied nom m s 0.00 0.20 0.00 0.07 +sous_pied sous_pied nom m p 0.00 0.20 0.00 0.14 +sous_plat sous_plat nom m s 0.00 0.07 0.00 0.07 +sous_prieur sous_prieur pre 0.00 0.47 0.00 0.47 +sous_produit sous_produit nom m s 0.48 0.54 0.42 0.27 +sous_produit sous_produit nom m p 0.48 0.54 0.06 0.27 +sous_programme sous_programme nom m s 0.12 0.00 0.09 0.00 +sous_programme sous_programme nom m p 0.12 0.00 0.03 0.00 +sous_prolétaire sous_prolétaire nom s 0.11 0.07 0.11 0.07 +sous_prolétariat sous_prolétariat nom m s 0.34 0.27 0.34 0.27 +sous_préfecture sous_préfecture nom f s 0.17 1.62 0.03 1.35 +sous_préfecture sous_préfecture nom f p 0.17 1.62 0.14 0.27 +sous_préfet sous_préfet nom m s 0.02 1.01 0.02 0.95 +sous_préfet sous_préfet nom m p 0.02 1.01 0.00 0.07 +sous_pull sous_pull nom m p 0.01 0.00 0.01 0.00 +sous_qualifié sous_qualifié adj m s 0.04 0.00 0.03 0.00 +sous_qualifié sous_qualifié adj f s 0.04 0.00 0.01 0.00 +sous_secrétaire sous_secrétaire nom m s 0.65 1.15 0.65 0.74 +sous_secrétaire sous_secrétaire nom m p 0.65 1.15 0.00 0.41 +sous_secrétariat sous_secrétariat nom m s 0.10 0.00 0.10 0.00 +sous_secteur sous_secteur nom m s 0.02 0.27 0.02 0.27 +sous_section sous_section nom f s 0.09 0.00 0.09 0.00 +sous_sol sous_sol nom m s 13.50 10.54 12.80 8.31 +sous_sol sous_sol nom m p 13.50 10.54 0.70 2.23 +sous_station sous_station nom f s 0.17 0.07 0.17 0.07 +sous_système sous_système nom m s 0.04 0.00 0.04 0.00 +sous_tasse sous_tasse nom f s 0.11 0.20 0.11 0.14 +sous_tasse sous_tasse nom f p 0.11 0.20 0.00 0.07 +sous_tendre sous_tendre ver 0.07 0.54 0.02 0.00 ind:pre:3s; +sous_tendre sous_tendre ver 0.07 0.54 0.00 0.07 ind:imp:3p; +sous_tendre sous_tendre ver 0.07 0.54 0.01 0.20 ind:imp:3s; +sous_tendre sous_tendre ver 0.07 0.54 0.01 0.14 ind:pre:3p; +sous_tendre sous_tendre ver m s 0.07 0.54 0.03 0.07 par:pas; +sous_tendre sous_tendre ver f s 0.07 0.54 0.00 0.07 par:pas; +sous_tension sous_tension nom f s 0.03 0.00 0.03 0.00 +sous_titrage sous_titrage nom m s 54.64 0.00 54.64 0.00 +sous_titre sous_titre nom m s 23.09 0.95 0.83 0.68 +sous_titrer sous_titrer ver 5.81 0.14 0.01 0.00 inf; +sous_titre sous_titre nom m p 23.09 0.95 22.26 0.27 +sous_titrer sous_titrer ver m s 5.81 0.14 5.72 0.00 par:pas; +sous_titrer sous_titrer ver f s 5.81 0.14 0.00 0.07 par:pas; +sous_titrer sous_titrer ver m p 5.81 0.14 0.09 0.07 par:pas; +sous_traitance sous_traitance nom f s 0.04 0.00 0.04 0.00 +sous_traitant sous_traitant nom m s 0.23 0.00 0.10 0.00 +sous_traitant sous_traitant nom m p 0.23 0.00 0.13 0.00 +sous_traiter sous_traiter ver 0.13 0.14 0.04 0.00 ind:pre:3s; +sous_traiter sous_traiter ver 0.13 0.14 0.01 0.00 ind:pre:3p; +sous_traiter sous_traiter ver 0.13 0.14 0.06 0.07 inf; +sous_traiter sous_traiter ver m p 0.13 0.14 0.00 0.07 par:pas; +sous_équipé sous_équipé adj m p 0.07 0.00 0.07 0.00 +sous_évaluer sous_évaluer ver 0.10 0.00 0.01 0.00 ind:imp:3s; +sous_évaluer sous_évaluer ver m s 0.10 0.00 0.06 0.00 par:pas; +sous_évaluer sous_évaluer ver f p 0.10 0.00 0.02 0.00 par:pas; +sous_ventrière sous_ventrière nom f s 0.03 0.47 0.03 0.47 +sous_verge sous_verge nom m 0.00 0.54 0.00 0.54 +sous_verre sous_verre nom m 0.06 0.20 0.06 0.20 +sous_vêtement sous_vêtement nom m s 6.57 2.77 0.33 0.41 +sous_vêtement sous_vêtement nom m p 6.57 2.77 6.24 2.36 +sous sous pre 315.49 1032.70 315.49 1032.70 +souscripteur souscripteur nom m s 0.02 0.20 0.01 0.00 +souscripteurs souscripteur nom m p 0.02 0.20 0.01 0.20 +souscription souscription nom f s 0.16 0.41 0.14 0.27 +souscriptions souscription nom f p 0.16 0.41 0.03 0.14 +souscrira souscrire ver 0.95 3.11 0.04 0.00 ind:fut:3s; +souscrirai souscrire ver 0.95 3.11 0.00 0.07 ind:fut:1s; +souscrirait souscrire ver 0.95 3.11 0.00 0.07 cnd:pre:3s; +souscrire souscrire ver 0.95 3.11 0.20 0.88 inf; +souscris souscrire ver 0.95 3.11 0.27 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +souscrit souscrire ver m s 0.95 3.11 0.22 1.15 ind:pre:3s;par:pas; +souscrite souscrire ver f s 0.95 3.11 0.03 0.14 par:pas; +souscrites souscrire ver f p 0.95 3.11 0.01 0.14 par:pas; +souscrits souscrire ver m p 0.95 3.11 0.00 0.20 par:pas; +souscrivais souscrire ver 0.95 3.11 0.01 0.07 ind:imp:1s; +souscrivait souscrire ver 0.95 3.11 0.00 0.14 ind:imp:3s; +souscrivez souscrire ver 0.95 3.11 0.17 0.00 imp:pre:2p;ind:pre:2p; +souscrivons souscrire ver 0.95 3.11 0.00 0.07 ind:pre:1p; +soussigner sous-signer ver 0.00 0.07 0.00 0.07 inf; +soussigné soussigné adj m s 1.83 0.61 1.44 0.61 +soussignée soussigné adj f s 1.83 0.61 0.03 0.00 +soussignés soussigné adj m p 1.83 0.61 0.36 0.00 +soussou soussou nom s 0.00 0.54 0.00 0.47 +soussous soussou nom p 0.00 0.54 0.00 0.07 +soustraction soustraction nom f s 0.15 1.08 0.11 0.68 +soustractions soustraction nom f p 0.15 1.08 0.04 0.41 +soustrairait soustraire ver 2.17 7.84 0.00 0.07 cnd:pre:3s; +soustraire soustraire ver 2.17 7.84 1.72 4.73 inf; +soustrais soustraire ver 2.17 7.84 0.02 0.00 imp:pre:2s;ind:pre:1s; +soustrait soustraire ver m s 2.17 7.84 0.36 1.15 ind:pre:3s;par:pas; +soustraite soustraire ver f s 2.17 7.84 0.00 0.20 par:pas; +soustraites soustraire ver f p 2.17 7.84 0.00 0.07 par:pas; +soustraits soustraire ver m p 2.17 7.84 0.04 1.08 par:pas; +soustrayaient soustraire ver 2.17 7.84 0.00 0.07 ind:imp:3p; +soustrayait soustraire ver 2.17 7.84 0.00 0.27 ind:imp:3s; +soustrayant soustraire ver 2.17 7.84 0.00 0.20 par:pre; +soustrayez soustraire ver 2.17 7.84 0.03 0.00 imp:pre:2p; +soutînt soutenir ver 35.56 61.22 0.01 0.07 sub:imp:3s; +soutachait soutacher ver 0.00 0.81 0.00 0.07 ind:imp:3s; +soutache soutache nom f s 0.00 0.14 0.00 0.07 +soutaches soutache nom f p 0.00 0.14 0.00 0.07 +soutaché soutacher ver m s 0.00 0.81 0.00 0.20 par:pas; +soutachée soutacher ver f s 0.00 0.81 0.00 0.27 par:pas; +soutachées soutacher ver f p 0.00 0.81 0.00 0.07 par:pas; +soutachés soutacher ver m p 0.00 0.81 0.00 0.20 par:pas; +soutane soutane nom f s 1.75 6.89 1.49 6.08 +soutanelle soutanelle nom f s 0.00 0.07 0.00 0.07 +soutanes soutane nom f p 1.75 6.89 0.26 0.81 +soute soute nom f s 2.62 2.16 2.33 0.95 +soutenable soutenable adj s 0.00 0.14 0.00 0.14 +soutenaient soutenir ver 35.56 61.22 0.34 2.77 ind:imp:3p; +soutenais soutenir ver 35.56 61.22 0.34 0.68 ind:imp:1s;ind:imp:2s; +soutenait soutenir ver 35.56 61.22 0.96 7.23 ind:imp:3s; +soutenance soutenance nom f s 0.03 0.14 0.03 0.14 +soutenant soutenir ver 35.56 61.22 0.27 3.31 par:pre; +souteneur souteneur nom m s 1.36 1.89 0.75 1.08 +souteneurs souteneur nom m p 1.36 1.89 0.61 0.81 +soutenez soutenir ver 35.56 61.22 1.70 0.27 imp:pre:2p;ind:pre:2p; +souteniez soutenir ver 35.56 61.22 0.14 0.07 ind:imp:2p; +soutenions soutenir ver 35.56 61.22 0.14 0.34 ind:imp:1p; +soutenir soutenir ver 35.56 61.22 10.17 18.45 inf; +soutenons soutenir ver 35.56 61.22 0.92 0.00 imp:pre:1p;ind:pre:1p; +soutenu soutenir ver m s 35.56 61.22 5.46 8.92 par:pas; +soutenue soutenir ver f s 35.56 61.22 1.36 3.45 par:pas; +soutenues soutenir ver f p 35.56 61.22 0.07 0.95 par:pas; +soutenus soutenir ver m p 35.56 61.22 0.45 1.69 par:pas; +souter souter ver 0.03 0.00 0.03 0.00 inf; +souterrain souterrain adj m s 4.88 13.04 2.63 4.86 +souterraine souterrain adj f s 4.88 13.04 0.98 3.72 +souterrainement souterrainement adv 0.00 0.27 0.00 0.27 +souterraines souterrain adj f p 4.88 13.04 0.40 2.23 +souterrains souterrain nom m p 2.90 5.07 1.60 1.82 +soutes soute nom f p 2.62 2.16 0.29 1.22 +soutien_gorge soutien_gorge nom m s 5.86 8.65 4.89 7.91 +soutien soutien nom m s 18.87 9.53 18.21 8.92 +soutiendra soutenir ver 35.56 61.22 0.58 0.34 ind:fut:3s; +soutiendrai soutenir ver 35.56 61.22 0.70 0.07 ind:fut:1s; +soutiendraient soutenir ver 35.56 61.22 0.07 0.20 cnd:pre:3p; +soutiendrais soutenir ver 35.56 61.22 0.09 0.27 cnd:pre:1s;cnd:pre:2s; +soutiendrait soutenir ver 35.56 61.22 0.10 0.54 cnd:pre:3s; +soutiendras soutenir ver 35.56 61.22 0.05 0.00 ind:fut:2s; +soutiendrez soutenir ver 35.56 61.22 0.07 0.00 ind:fut:2p; +soutiendriez soutenir ver 35.56 61.22 0.02 0.00 cnd:pre:2p; +soutiendrons soutenir ver 35.56 61.22 0.08 0.07 ind:fut:1p; +soutiendront soutenir ver 35.56 61.22 0.39 0.34 ind:fut:3p; +soutienne soutenir ver 35.56 61.22 0.43 0.41 sub:pre:1s;sub:pre:3s; +soutiennent soutenir ver 35.56 61.22 1.85 2.84 ind:pre:3p; +soutiennes soutenir ver 35.56 61.22 0.16 0.00 sub:pre:2s; +soutien_gorge soutien_gorge nom m p 5.86 8.65 0.96 0.74 +soutiens soutenir ver 35.56 61.22 3.34 1.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +soutient soutenir ver 35.56 61.22 5.14 4.59 ind:pre:3s; +soutier soutier nom m s 0.03 0.54 0.03 0.47 +soutiers soutier nom m p 0.03 0.54 0.00 0.07 +soutif soutif nom m s 2.11 0.20 1.81 0.14 +soutifs soutif nom m p 2.11 0.20 0.29 0.07 +soutinrent soutenir ver 35.56 61.22 0.14 0.27 ind:pas:3p; +soutins soutenir ver 35.56 61.22 0.00 0.07 ind:pas:1s; +soutint soutenir ver 35.56 61.22 0.02 1.76 ind:pas:3s; +soutirage soutirage nom m s 0.00 0.07 0.00 0.07 +soutiraient soutirer ver 2.32 1.82 0.00 0.07 ind:imp:3p; +soutire soutirer ver 2.32 1.82 0.14 0.14 ind:pre:1s;ind:pre:3s; +soutirent soutirer ver 2.32 1.82 0.03 0.00 ind:pre:3p; +soutirer soutirer ver 2.32 1.82 1.88 1.42 inf; +soutirerai soutirer ver 2.32 1.82 0.03 0.00 ind:fut:1s; +soutirez soutirer ver 2.32 1.82 0.02 0.00 ind:pre:2p; +soutiré soutirer ver m s 2.32 1.82 0.21 0.14 par:pas; +soutirée soutirer ver f s 2.32 1.82 0.01 0.00 par:pas; +soutirées soutirer ver f p 2.32 1.82 0.00 0.07 par:pas; +soutra soutra nom m s 0.20 0.00 0.20 0.00 +soutènement soutènement nom m s 0.04 0.54 0.04 0.54 +souvînt souvenir ver 315.05 215.41 0.00 0.81 sub:imp:3s; +souvenaient souvenir ver 315.05 215.41 0.10 2.16 ind:imp:3p; +souvenais souvenir ver 315.05 215.41 1.76 8.99 ind:imp:1s;ind:imp:2s; +souvenait souvenir ver 315.05 215.41 1.23 24.12 ind:imp:3s; +souvenance souvenance nom f s 0.03 0.81 0.03 0.47 +souvenances souvenance nom f p 0.03 0.81 0.00 0.34 +souvenant souvenir ver 315.05 215.41 0.26 3.72 par:pre; +souvenez souvenir ver 315.05 215.41 36.70 10.88 imp:pre:2p;ind:pre:2p; +souveniez souvenir ver 315.05 215.41 0.54 0.54 ind:imp:2p;sub:pre:2p; +souvenions souvenir ver 315.05 215.41 0.01 0.27 ind:imp:1p; +souvenir souvenir ver 315.05 215.41 31.36 38.65 inf; +souvenirs souvenir nom m p 63.24 197.03 32.79 90.34 +souvenons souvenir ver 315.05 215.41 0.97 0.27 imp:pre:1p;ind:pre:1p; +souvent souvent adv_sup 135.54 286.96 135.54 286.96 +souventefois souventefois adv 0.00 0.14 0.00 0.14 +souventes_fois souventes_fois adv 0.00 0.27 0.00 0.27 +souvenu souvenir ver m s 315.05 215.41 3.71 3.38 par:pas; +souvenue souvenir ver f s 315.05 215.41 0.89 1.35 par:pas; +souvenus souvenir ver m p 315.05 215.41 0.20 0.00 par:pas; +souverain souverain nom m s 5.33 8.18 3.97 4.19 +souveraine souverain adj f s 3.36 10.00 1.54 5.14 +souverainement souverainement adv 0.16 2.09 0.16 2.09 +souveraines souverain adj f p 3.36 10.00 0.02 0.27 +souveraineté souveraineté nom f s 0.63 10.81 0.63 10.74 +souverainetés souveraineté nom f p 0.63 10.81 0.00 0.07 +souverains souverain nom m p 5.33 8.18 0.43 2.03 +souviendra souvenir ver 315.05 215.41 3.56 1.76 ind:fut:3s; +souviendrai souvenir ver 315.05 215.41 5.67 1.69 ind:fut:1s; +souviendraient souvenir ver 315.05 215.41 0.05 0.54 cnd:pre:3p; +souviendrais souvenir ver 315.05 215.41 1.44 0.68 cnd:pre:1s;cnd:pre:2s; +souviendrait souvenir ver 315.05 215.41 0.60 1.76 cnd:pre:3s; +souviendras souvenir ver 315.05 215.41 2.79 0.68 ind:fut:2s; +souviendrez souvenir ver 315.05 215.41 0.73 0.34 ind:fut:2p; +souviendriez souvenir ver 315.05 215.41 0.14 0.00 cnd:pre:2p; +souviendrons souvenir ver 315.05 215.41 0.22 0.07 ind:fut:1p; +souviendront souvenir ver 315.05 215.41 0.73 0.68 ind:fut:3p; +souvienne souvenir ver 315.05 215.41 5.55 3.38 sub:pre:1s;sub:pre:3s; +souviennent souvenir ver 315.05 215.41 2.83 3.04 ind:pre:3p; +souviennes souvenir ver 315.05 215.41 1.58 0.27 sub:pre:2s; +souviens souvenir ver 315.05 215.41 198.30 72.84 imp:pre:2s;ind:pre:1s;ind:pre:2s; +souvient souvenir ver 315.05 215.41 12.60 15.68 ind:pre:3s; +souvinrent souvenir ver 315.05 215.41 0.01 0.20 ind:pas:3p; +souvins souvenir ver 315.05 215.41 0.31 2.91 ind:pas:1s; +souvinssent souvenir ver 315.05 215.41 0.00 0.07 sub:imp:3p; +souvint souvenir ver 315.05 215.41 0.23 13.72 ind:pas:3s; +souvlaki souvlaki nom m s 0.02 0.14 0.02 0.14 +soviet soviet nom m s 2.54 7.70 0.73 2.43 +soviets soviet nom m p 2.54 7.70 1.81 5.27 +soviétique soviétique adj s 10.68 24.59 8.89 20.47 +soviétiques soviétique adj p 10.68 24.59 1.79 4.12 +soviétisation soviétisation nom f s 0.00 0.14 0.00 0.14 +soviétisme soviétisme nom m s 0.00 0.34 0.00 0.34 +soviétologues soviétologue nom p 0.00 0.07 0.00 0.07 +sovkhoze sovkhoze nom m s 0.01 0.07 0.01 0.00 +sovkhozes sovkhoze nom m p 0.01 0.07 0.00 0.07 +soya soya nom m s 0.09 0.00 0.09 0.00 +soyeuse soyeux adj f s 0.61 13.04 0.10 4.12 +soyeusement soyeusement adv 0.00 0.07 0.00 0.07 +soyeuses soyeux adj f p 0.61 13.04 0.04 1.76 +soyeux soyeux adj m 0.61 13.04 0.47 7.16 +soyez être aux 8074.24 6501.82 24.16 5.34 sub:pre:2p; +soyons être aux 8074.24 6501.82 4.79 3.11 sub:pre:1p; +spa spa nom m s 1.05 0.00 0.79 0.00 +spacieuse spacieux adj f s 2.00 4.26 0.68 1.62 +spacieuses spacieux adj f p 2.00 4.26 0.20 0.54 +spacieux spacieux adj m 2.00 4.26 1.12 2.09 +spadassin spadassin nom m s 0.02 1.15 0.02 0.68 +spadassins spadassin nom m p 0.02 1.15 0.00 0.47 +spadille spadille nom m s 0.00 0.07 0.00 0.07 +spaghetti spaghetti nom m s 7.02 2.97 3.73 1.89 +spaghettis spaghetti nom m p 7.02 2.97 3.29 1.08 +spahi spahi nom m s 0.00 2.30 0.00 0.41 +spahis spahi nom m p 0.00 2.30 0.00 1.89 +spamming spamming nom m s 0.01 0.00 0.01 0.00 +sparadrap sparadrap nom m s 1.78 1.96 1.66 1.89 +sparadraps sparadrap nom m p 1.78 1.96 0.12 0.07 +sparring_partner sparring_partner nom m s 0.00 0.07 0.00 0.07 +spartakistes spartakiste adj p 0.01 0.00 0.01 0.00 +sparte sparte nom f s 0.00 0.14 0.00 0.14 +sparterie sparterie nom f s 0.00 0.34 0.00 0.34 +spartiate spartiate adj s 0.60 0.41 0.50 0.34 +spartiates spartiate nom p 0.36 0.34 0.26 0.14 +spartéine spartéine nom f s 0.01 0.00 0.01 0.00 +spas spa nom m p 1.05 0.00 0.26 0.00 +spasme spasme nom m s 2.13 6.76 0.47 3.38 +spasmes spasme nom m p 2.13 6.76 1.66 3.38 +spasmodique spasmodique adj s 0.34 0.81 0.15 0.41 +spasmodiquement spasmodiquement adv 0.01 0.88 0.01 0.88 +spasmodiques spasmodique adj p 0.34 0.81 0.20 0.41 +spasmophile spasmophile adj m s 0.02 0.07 0.02 0.07 +spasmophilie spasmophilie nom f s 0.01 0.20 0.01 0.20 +spasticité spasticité nom f s 0.03 0.00 0.03 0.00 +spastique spastique adj f s 0.01 0.00 0.01 0.00 +spath spath nom m s 0.07 0.00 0.07 0.00 +spatial spatial adj m s 10.94 1.35 5.90 0.61 +spatiale spatial adj f s 10.94 1.35 3.42 0.41 +spatialement spatialement adv 0.01 0.00 0.01 0.00 +spatiales spatial adj f p 10.94 1.35 0.57 0.14 +spatiaux spatial adj m p 10.94 1.35 1.05 0.20 +spatio_temporel spatio_temporel adj m s 0.21 0.20 0.09 0.07 +spatio_temporel spatio_temporel adj f s 0.21 0.20 0.13 0.14 +spationaute spationaute nom s 0.09 0.00 0.09 0.00 +spatiotemporel spatiotemporel adj m s 0.05 0.00 0.05 0.00 +spatule spatule nom f s 0.45 1.82 0.44 1.62 +spatuler spatuler ver 0.01 0.00 0.01 0.00 inf; +spatules spatule nom f p 0.45 1.82 0.01 0.20 +spatulée spatulé adj f s 0.15 0.14 0.01 0.00 +spatulées spatulé adj f p 0.15 0.14 0.14 0.07 +spatulés spatulé adj m p 0.15 0.14 0.00 0.07 +speakeasy speakeasy nom m s 0.05 0.07 0.05 0.07 +speaker speaker nom m s 1.12 3.99 0.95 2.70 +speakerine speaker nom f s 1.12 3.99 0.15 0.34 +speakerines speakerine nom f p 0.14 0.00 0.14 0.00 +speakers speaker nom m p 1.12 3.99 0.02 0.68 +species species nom m 0.10 0.07 0.10 0.07 +spectacle spectacle nom m s 55.19 73.78 51.14 66.76 +spectacles spectacle nom m p 55.19 73.78 4.05 7.03 +spectaculaire spectaculaire adj s 3.88 6.22 3.50 4.59 +spectaculairement spectaculairement adv 0.04 0.34 0.04 0.34 +spectaculaires spectaculaire adj p 3.88 6.22 0.37 1.62 +spectateur spectateur nom m s 8.41 21.69 2.50 6.49 +spectateurs spectateur nom m p 8.41 21.69 5.48 13.45 +spectatrice spectateur nom f s 8.41 21.69 0.43 1.08 +spectatrices spectatrice nom f p 0.01 0.00 0.01 0.00 +spectral spectral adj m s 0.94 0.81 0.17 0.34 +spectrale spectral adj f s 0.94 0.81 0.58 0.14 +spectrales spectral adj f p 0.94 0.81 0.13 0.34 +spectraux spectral adj m p 0.94 0.81 0.05 0.00 +spectre spectre nom m s 4.25 6.96 3.87 4.73 +spectres spectre nom m p 4.25 6.96 0.37 2.23 +spectrogramme spectrogramme nom m s 0.03 0.00 0.03 0.00 +spectrographe spectrographe nom m s 0.05 0.00 0.05 0.00 +spectrographie spectrographie nom f s 0.14 0.00 0.14 0.00 +spectrographique spectrographique adj s 0.09 0.00 0.09 0.00 +spectrohéliographe spectrohéliographe nom m s 0.01 0.00 0.01 0.00 +spectromètre spectromètre nom m s 0.34 0.00 0.34 0.00 +spectrométrie spectrométrie nom f s 0.09 0.00 0.09 0.00 +spectrométrique spectrométrique adj f s 0.01 0.00 0.01 0.00 +spectrophotomètre spectrophotomètre nom m s 0.01 0.00 0.01 0.00 +spectroscope spectroscope nom m s 0.07 0.00 0.07 0.00 +spectroscopie spectroscopie nom f s 0.01 0.00 0.01 0.00 +speech speech nom m s 1.88 0.74 1.88 0.74 +speed speed nom m s 3.45 1.49 3.45 1.49 +speede speeder ver 0.33 0.54 0.01 0.07 ind:pre:1s;ind:pre:3s; +speeder speeder ver 0.33 0.54 0.20 0.07 inf; +speedes speeder ver 0.33 0.54 0.10 0.07 ind:pre:2s; +speedé speedé adj m s 0.21 0.61 0.04 0.07 +speedée speedé adj f s 0.21 0.61 0.01 0.14 +speedés speedé adj m p 0.21 0.61 0.16 0.41 +spencer spencer nom m s 0.04 0.27 0.03 0.20 +spencers spencer nom m p 0.04 0.27 0.02 0.07 +spenglérienne spenglérienne nom f s 0.00 0.07 0.00 0.07 +spermaceti spermaceti nom m s 0.08 0.00 0.08 0.00 +spermatique spermatique adj s 0.01 0.27 0.01 0.27 +spermato spermato nom m s 0.03 0.41 0.01 0.14 +spermatogenèse spermatogenèse nom f s 0.04 0.00 0.04 0.00 +spermatos spermato nom m p 0.03 0.41 0.02 0.27 +spermatozoïde spermatozoïde nom m s 0.51 0.74 0.23 0.14 +spermatozoïdes spermatozoïde nom m p 0.51 0.74 0.28 0.61 +sperme sperme nom m s 8.47 5.07 8.31 4.93 +spermes sperme nom m p 8.47 5.07 0.15 0.14 +spermicide spermicide nom m s 0.07 0.07 0.07 0.07 +spermogramme spermogramme nom m s 0.01 0.00 0.01 0.00 +spermophiles spermophile nom m p 0.01 0.00 0.01 0.00 +spetsnaz spetsnaz nom f p 0.02 0.00 0.02 0.00 +sphaigne sphaigne nom f s 0.01 0.07 0.01 0.00 +sphaignes sphaigne nom f p 0.01 0.07 0.00 0.07 +sphincter sphincter nom m s 0.34 1.01 0.31 0.14 +sphincters sphincter nom m p 0.34 1.01 0.02 0.88 +sphinge sphinge nom f s 0.00 0.20 0.00 0.07 +sphinges sphinge nom f p 0.00 0.20 0.00 0.14 +sphinx sphinx nom m 1.27 3.04 1.27 3.04 +sphère sphère nom f s 3.90 9.19 2.48 5.74 +sphères sphère nom f p 3.90 9.19 1.42 3.45 +sphénoïde sphénoïde adj s 0.01 0.00 0.01 0.00 +sphéricité sphéricité nom f s 0.00 0.07 0.00 0.07 +sphérique sphérique adj s 0.26 1.62 0.23 1.01 +sphériquement sphériquement adv 0.01 0.00 0.01 0.00 +sphériques sphérique adj p 0.26 1.62 0.02 0.61 +sphéroïde sphéroïde nom m s 0.01 0.14 0.00 0.14 +sphéroïdes sphéroïde nom m p 0.01 0.14 0.01 0.00 +sphygmomanomètre sphygmomanomètre nom m s 0.02 0.00 0.02 0.00 +spi spi nom m s 0.01 0.00 0.01 0.00 +spic spic nom m s 0.14 0.00 0.05 0.00 +spica spica nom m s 0.08 0.14 0.08 0.14 +spics spic nom m p 0.14 0.00 0.09 0.00 +spicules spicule nom m p 0.01 0.00 0.01 0.00 +spider spider nom m s 3.27 0.41 3.27 0.41 +spin spin nom m s 0.14 0.00 0.14 0.00 +spina_bifida spina_bifida nom m s 0.04 0.00 0.04 0.00 +spina_ventosa spina_ventosa nom m s 0.00 0.07 0.00 0.07 +spina spina nom f s 0.05 0.00 0.05 0.00 +spinal spinal adj m s 0.64 0.00 0.50 0.00 +spinale spinal adj f s 0.64 0.00 0.13 0.00 +spinaux spinal adj m p 0.64 0.00 0.01 0.00 +spinnaker spinnaker nom m s 0.02 0.14 0.02 0.07 +spinnakers spinnaker nom m p 0.02 0.14 0.00 0.07 +spinozisme spinozisme nom m s 0.00 0.07 0.00 0.07 +spirale spirale nom f s 1.31 6.08 1.20 3.45 +spiraler spiraler ver 0.00 0.07 0.00 0.07 inf; +spirales spirale nom f p 1.31 6.08 0.11 2.64 +spiralé spiralé adj m s 0.01 0.20 0.01 0.07 +spiralées spiralé adj f p 0.01 0.20 0.00 0.07 +spiralés spiralé adj m p 0.01 0.20 0.00 0.07 +spire spire nom f s 0.23 0.81 0.06 0.14 +spires spire nom f p 0.23 0.81 0.17 0.68 +spirite spirite adj f s 0.03 0.07 0.02 0.00 +spirites spirite nom p 0.04 0.07 0.04 0.00 +spiritisme spiritisme nom m s 1.81 0.20 1.81 0.20 +spiritualisaient spiritualiser ver 0.10 0.74 0.00 0.07 ind:imp:3p; +spiritualise spiritualiser ver 0.10 0.74 0.00 0.20 ind:pre:3s; +spiritualiser spiritualiser ver 0.10 0.74 0.00 0.07 inf; +spiritualisme spiritualisme nom m s 0.14 0.00 0.14 0.00 +spiritualiste spiritualiste adj s 0.02 0.41 0.01 0.34 +spiritualistes spiritualiste nom p 0.02 0.00 0.02 0.00 +spiritualisé spiritualiser ver m s 0.10 0.74 0.10 0.41 par:pas; +spiritualité spiritualité nom f s 0.79 1.15 0.79 1.08 +spiritualités spiritualité nom f p 0.79 1.15 0.00 0.07 +spirituel spirituel adj m s 12.10 14.53 6.83 4.93 +spirituelle spirituel adj f s 12.10 14.53 3.89 6.15 +spirituellement spirituellement adv 0.78 0.81 0.78 0.81 +spirituelles spirituel adj f p 12.10 14.53 0.58 1.76 +spirituels spirituel adj m p 12.10 14.53 0.80 1.69 +spiritueux spiritueux nom m 0.41 0.61 0.41 0.61 +spirochète spirochète nom m s 0.02 0.00 0.02 0.00 +spirographe spirographe nom m s 0.03 0.00 0.03 0.00 +spiromètres spiromètre nom m p 0.00 0.07 0.00 0.07 +spirées spirée nom f p 0.00 0.07 0.00 0.07 +spiruline spiruline nom f s 0.01 0.00 0.01 0.00 +spitz spitz nom m s 0.01 0.00 0.01 0.00 +splash splash ono 0.27 0.27 0.27 0.27 +spleen spleen nom m s 0.11 1.55 0.11 1.35 +spleens spleen nom m p 0.11 1.55 0.00 0.20 +splendeur splendeur nom f s 5.02 14.59 4.67 10.95 +splendeurs splendeur nom f p 5.02 14.59 0.35 3.65 +splendide splendide adj s 16.73 10.14 15.45 7.30 +splendidement splendidement adv 0.21 0.07 0.21 0.07 +splendides splendide adj p 16.73 10.14 1.28 2.84 +splittaient splitter ver 0.01 0.07 0.00 0.07 ind:imp:3p; +splitter splitter ver 0.01 0.07 0.01 0.00 inf; +splénectomie splénectomie nom f s 0.09 0.00 0.09 0.00 +splénique splénique nom m s 0.05 0.00 0.05 0.00 +spoiler spoiler nom m s 0.01 0.00 0.01 0.00 +spoliait spolier ver 0.59 0.54 0.00 0.07 ind:imp:3s; +spoliation spoliation nom f s 0.00 0.61 0.00 0.47 +spoliations spoliation nom f p 0.00 0.61 0.00 0.14 +spolie spolier ver 0.59 0.54 0.14 0.00 ind:pre:3s; +spolier spolier ver 0.59 0.54 0.04 0.00 inf; +spolié spolier ver m s 0.59 0.54 0.29 0.14 par:pas; +spoliée spolier ver f s 0.59 0.54 0.00 0.07 par:pas; +spoliées spolié nom f p 0.01 0.07 0.00 0.07 +spoliés spolier ver m p 0.59 0.54 0.11 0.27 par:pas; +spondées spondée nom m p 0.00 0.07 0.00 0.07 +spondylarthrose spondylarthrose nom f s 0.01 0.00 0.01 0.00 +spondylite spondylite nom f s 0.01 0.00 0.01 0.00 +spongieuse spongieux adj f s 0.20 4.26 0.04 1.82 +spongieuses spongieux adj f p 0.20 4.26 0.00 0.34 +spongieux spongieux adj m 0.20 4.26 0.16 2.09 +spongiforme spongiforme adj f s 0.03 0.00 0.03 0.00 +sponsor sponsor nom m s 2.72 0.20 1.72 0.14 +sponsoring sponsoring nom m s 0.09 0.07 0.09 0.07 +sponsorisait sponsoriser ver 1.19 0.00 0.04 0.00 ind:imp:3s; +sponsorise sponsoriser ver 1.19 0.00 0.16 0.00 ind:pre:1s;ind:pre:3s; +sponsoriser sponsoriser ver 1.19 0.00 0.33 0.00 inf; +sponsorisera sponsoriser ver 1.19 0.00 0.03 0.00 ind:fut:3s; +sponsorisé sponsoriser ver m s 1.19 0.00 0.22 0.00 par:pas; +sponsorisée sponsoriser ver f s 1.19 0.00 0.37 0.00 par:pas; +sponsorisés sponsoriser ver m p 1.19 0.00 0.04 0.00 par:pas; +sponsors sponsor nom m p 2.72 0.20 1.00 0.07 +spontané spontané adj m s 4.14 7.97 2.02 2.77 +spontanée spontané adj f s 4.14 7.97 1.67 3.51 +spontanées spontané adj f p 4.14 7.97 0.31 0.81 +spontanéistes spontanéiste adj p 0.00 0.07 0.00 0.07 +spontanéité spontanéité nom f s 0.91 2.50 0.91 2.50 +spontanément spontanément adv 1.35 8.11 1.35 8.11 +spontanés spontané adj m p 4.14 7.97 0.15 0.88 +spoon spoon nom m s 0.31 0.00 0.31 0.00 +sporadique sporadique adj s 0.31 1.62 0.11 0.54 +sporadiquement sporadiquement adv 0.17 0.54 0.17 0.54 +sporadiques sporadique adj p 0.31 1.62 0.20 1.08 +spore spore nom f s 0.91 0.14 0.01 0.00 +spores spore nom f p 0.91 0.14 0.90 0.14 +sport sport nom m s 30.04 20.81 24.61 15.54 +sportif sportif adj m s 7.72 9.39 4.58 3.45 +sportifs sportif nom m p 2.98 4.80 1.46 2.16 +sportive sportif adj f s 7.72 9.39 1.40 2.91 +sportivement sportivement adv 0.00 0.20 0.00 0.20 +sportives sportif adj f p 7.72 9.39 0.49 0.88 +sportivité sportivité nom f s 0.02 0.00 0.02 0.00 +sports sport nom m p 30.04 20.81 5.42 5.27 +sportsman sportsman nom m s 0.00 0.61 0.00 0.41 +sportsmen sportsman nom m p 0.00 0.61 0.00 0.20 +sportswear sportswear nom m s 0.00 0.07 0.00 0.07 +spot spot nom m s 3.50 1.49 2.50 0.47 +spots spot nom m p 3.50 1.49 1.00 1.01 +spoutnik spoutnik nom m s 0.24 0.07 0.13 0.07 +spoutniks spoutnik nom m p 0.24 0.07 0.11 0.00 +sprat sprat nom m s 0.40 0.14 0.18 0.00 +sprats sprat nom m p 0.40 0.14 0.22 0.14 +spray spray nom m s 2.71 0.27 2.65 0.27 +sprays spray nom m p 2.71 0.27 0.06 0.00 +sprechgesang sprechgesang nom m s 0.00 0.07 0.00 0.07 +spring spring nom m s 0.83 0.68 0.83 0.68 +springer springer nom m s 0.59 0.00 0.59 0.00 +sprinkler sprinkler nom m s 0.05 0.00 0.02 0.00 +sprinklers sprinkler nom m p 0.05 0.00 0.03 0.00 +sprint sprint nom m s 0.89 2.23 0.85 1.82 +sprinta sprinter ver 0.41 0.68 0.00 0.07 ind:pas:3s; +sprintait sprinter ver 0.41 0.68 0.00 0.07 ind:imp:3s; +sprintant sprinter ver 0.41 0.68 0.06 0.07 par:pre; +sprinte sprinter ver 0.41 0.68 0.14 0.20 ind:pre:1s;ind:pre:3s; +sprinter sprinter nom m s 0.34 0.27 0.23 0.14 +sprinters sprinter nom m p 0.34 0.27 0.11 0.14 +sprinteur sprinteur nom m s 0.03 0.00 0.01 0.00 +sprinteurs sprinteur nom m p 0.03 0.00 0.02 0.00 +sprints sprint nom m p 0.89 2.23 0.04 0.41 +spruce spruce nom m s 0.04 0.00 0.04 0.00 +spécial spécial adj m s 83.73 31.22 48.12 14.46 +spéciale spécial adj f s 83.73 31.22 22.77 7.09 +spécialement spécialement adv 9.60 14.80 9.60 14.80 +spéciales spécial adj f p 83.73 31.22 6.48 5.00 +spécialisa spécialiser ver 4.05 5.68 0.00 0.14 ind:pas:3s; +spécialisaient spécialiser ver 4.05 5.68 0.10 0.00 ind:imp:3p; +spécialisait spécialiser ver 4.05 5.68 0.00 0.14 ind:imp:3s; +spécialisant spécialiser ver 4.05 5.68 0.02 0.07 par:pre; +spécialisation spécialisation nom f s 0.43 0.41 0.43 0.41 +spécialise spécialiser ver 4.05 5.68 0.44 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +spécialiser spécialiser ver 4.05 5.68 0.21 0.27 inf; +spécialiste spécialiste nom s 16.69 16.96 11.91 10.07 +spécialistes spécialiste nom p 16.69 16.96 4.79 6.89 +spécialisé spécialiser ver m s 4.05 5.68 1.80 2.43 par:pas; +spécialisée spécialiser ver f s 4.05 5.68 0.89 1.22 par:pas; +spécialisées spécialisé adj f p 1.60 5.41 0.14 1.08 +spécialisés spécialiser ver m p 4.05 5.68 0.51 0.95 par:pas; +spécialité spécialité nom f s 10.06 9.73 8.70 7.91 +spécialités spécialité nom f p 10.06 9.73 1.36 1.82 +spéciaux spécial adj m p 83.73 31.22 6.36 4.66 +spécieuse spécieux adj f s 0.11 0.41 0.04 0.07 +spécieusement spécieusement adv 0.00 0.07 0.00 0.07 +spécieuses spécieux adj f p 0.11 0.41 0.01 0.20 +spécieux spécieux adj m 0.11 0.41 0.06 0.14 +spécifiais spécifier ver 1.19 2.16 0.00 0.07 ind:imp:1s; +spécifiait spécifier ver 1.19 2.16 0.04 0.41 ind:imp:3s; +spécifiant spécifier ver 1.19 2.16 0.00 0.20 par:pre; +spécification spécification nom f s 0.48 0.07 0.02 0.00 +spécifications spécification nom f p 0.48 0.07 0.46 0.07 +spécificité spécificité nom f s 0.25 0.34 0.07 0.34 +spécificités spécificité nom f p 0.25 0.34 0.17 0.00 +spécifie spécifier ver 1.19 2.16 0.37 0.27 imp:pre:2s;ind:pre:3s; +spécifient spécifier ver 1.19 2.16 0.00 0.07 ind:pre:3p; +spécifier spécifier ver 1.19 2.16 0.19 0.27 inf; +spécifiera spécifier ver 1.19 2.16 0.03 0.00 ind:fut:3s; +spécifiez spécifier ver 1.19 2.16 0.02 0.00 imp:pre:2p; +spécifique spécifique adj s 4.80 1.96 3.59 1.42 +spécifiquement spécifiquement adv 1.18 1.22 1.18 1.22 +spécifiques spécifique adj p 4.80 1.96 1.22 0.54 +spécifié spécifier ver m s 1.19 2.16 0.53 0.88 par:pas; +spécifiée spécifié adj f s 0.15 0.07 0.03 0.00 +spécifiées spécifié adj f p 0.15 0.07 0.04 0.00 +spécifiés spécifié adj m p 0.15 0.07 0.02 0.00 +spécimen spécimen nom m s 5.26 3.31 3.46 1.49 +spécimens spécimen nom m p 5.26 3.31 1.80 1.82 +spéculaient spéculer ver 1.86 1.62 0.01 0.07 ind:imp:3p; +spéculaire spéculaire adj s 0.00 0.14 0.00 0.14 +spéculait spéculer ver 1.86 1.62 0.00 0.07 ind:imp:3s; +spéculant spéculer ver 1.86 1.62 0.03 0.34 par:pre; +spéculateur spéculateur nom m s 0.88 0.68 0.13 0.54 +spéculateurs spéculateur nom m p 0.88 0.68 0.64 0.07 +spéculatif spéculatif adj m s 0.08 0.61 0.02 0.14 +spéculatifs spéculatif adj m p 0.08 0.61 0.04 0.14 +spéculation spéculation nom f s 2.13 3.92 1.08 1.35 +spéculations spéculation nom f p 2.13 3.92 1.04 2.57 +spéculative spéculatif adj f s 0.08 0.61 0.02 0.27 +spéculatives spéculatif adj f p 0.08 0.61 0.00 0.07 +spéculatrice spéculateur nom f s 0.88 0.68 0.10 0.00 +spéculatrices spéculateur nom f p 0.88 0.68 0.00 0.07 +spécule spéculer ver 1.86 1.62 0.51 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +spéculent spéculer ver 1.86 1.62 0.15 0.14 ind:pre:3p; +spéculer spéculer ver 1.86 1.62 0.77 0.47 inf; +spéculeraient spéculer ver 1.86 1.62 0.00 0.07 cnd:pre:3p; +spéculez spéculer ver 1.86 1.62 0.34 0.00 imp:pre:2p;ind:pre:2p; +spéculoos spéculoos nom m 0.14 0.00 0.14 0.00 +spéculé spéculer ver m s 1.86 1.62 0.05 0.07 par:pas; +spéculum spéculum nom m s 0.13 0.14 0.13 0.14 +spéléo spéléo nom f s 0.27 0.00 0.27 0.00 +spéléologie spéléologie nom f s 0.02 0.07 0.02 0.07 +spéléologue spéléologue nom s 0.29 0.27 0.12 0.07 +spéléologues spéléologue nom p 0.29 0.27 0.17 0.20 +spéléotomie spéléotomie nom f s 0.00 0.14 0.00 0.14 +spumescent spumescent adj m s 0.00 0.07 0.00 0.07 +spumosité spumosité nom f s 0.00 0.07 0.00 0.07 +squale squale nom m s 0.47 0.20 0.23 0.00 +squales squale nom m p 0.47 0.20 0.24 0.20 +squames squame nom f p 0.01 0.14 0.01 0.14 +squameuse squameux adj f s 0.05 0.41 0.01 0.34 +squameux squameux adj m s 0.05 0.41 0.04 0.07 +square square nom m s 5.89 16.69 5.51 14.39 +squares square nom m p 5.89 16.69 0.38 2.30 +squash squash nom m s 0.73 0.07 0.73 0.07 +squat squat nom m s 1.23 0.00 1.20 0.00 +squats squat nom m p 1.23 0.00 0.03 0.00 +squattait squatter ver 1.28 0.41 0.04 0.00 ind:imp:3s; +squatte squatter ver 1.28 0.41 0.50 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +squatter squatter ver 1.28 0.41 0.43 0.07 inf; +squatteras squatter ver 1.28 0.41 0.01 0.00 ind:fut:2s; +squatters squatter nom m p 0.46 0.27 0.30 0.14 +squatteur squatteur nom m s 0.17 0.00 0.05 0.00 +squatteurs squatteur nom m p 0.17 0.00 0.12 0.00 +squattez squatter ver 1.28 0.41 0.03 0.00 ind:pre:2p; +squatté squatter ver m s 1.28 0.41 0.28 0.00 par:pas; +squattée squatter ver f s 1.28 0.41 0.00 0.07 par:pas; +squattées squatter ver f p 1.28 0.41 0.00 0.07 par:pas; +squattérisé squattériser ver m s 0.00 0.07 0.00 0.07 par:pas; +squattés squatter ver m p 1.28 0.41 0.00 0.07 par:pas; +squaw squaw nom f s 0.00 6.08 0.00 6.01 +squaws squaw nom f p 0.00 6.08 0.00 0.07 +squeeze squeeze nom m s 0.10 0.07 0.10 0.07 +squeezent squeezer ver 0.02 0.00 0.01 0.00 ind:pre:3p; +squeezer squeezer ver 0.02 0.00 0.01 0.00 inf; +squelette squelette nom m s 6.75 11.69 5.09 8.58 +squelettes squelette nom m p 6.75 11.69 1.65 3.11 +squelettique squelettique adj s 0.39 3.45 0.29 2.09 +squelettiques squelettique adj p 0.39 3.45 0.10 1.35 +squire squire nom m s 0.04 0.07 0.01 0.07 +squires squire nom m p 0.04 0.07 0.03 0.00 +sri_lankais sri_lankais adj m 0.01 0.00 0.01 0.00 +sri_lankais sri_lankais nom m 0.01 0.00 0.01 0.00 +stabat_mater stabat_mater nom m 0.00 0.07 0.00 0.07 +stabilisa stabiliser ver 4.84 1.42 0.01 0.00 ind:pas:3s; +stabilisait stabiliser ver 4.84 1.42 0.00 0.14 ind:imp:3s; +stabilisant stabilisant nom m s 0.02 0.00 0.02 0.00 +stabilisante stabilisant adj f s 0.03 0.00 0.03 0.00 +stabilisateur stabilisateur nom m s 0.84 0.00 0.41 0.00 +stabilisateurs stabilisateur nom m p 0.84 0.00 0.43 0.00 +stabilisation stabilisation nom f s 0.36 0.41 0.36 0.41 +stabilisatrice stabilisateur adj f s 0.35 0.00 0.03 0.00 +stabilise stabiliser ver 4.84 1.42 1.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stabilisent stabiliser ver 4.84 1.42 0.09 0.07 ind:pre:3p; +stabiliser stabiliser ver 4.84 1.42 1.65 0.61 inf; +stabilisez stabiliser ver 4.84 1.42 0.37 0.00 imp:pre:2p; +stabilisons stabiliser ver 4.84 1.42 0.02 0.00 imp:pre:1p;ind:pre:1p; +stabilisèrent stabiliser ver 4.84 1.42 0.00 0.07 ind:pas:3p; +stabilisé stabiliser ver m s 4.84 1.42 1.20 0.20 par:pas; +stabilisée stabiliser ver f s 4.84 1.42 0.45 0.00 par:pas; +stabilisées stabilisé adj f p 0.56 0.41 0.01 0.14 +stabilisés stabiliser ver m p 4.84 1.42 0.04 0.00 par:pas; +stabilité stabilité nom f s 1.81 3.18 1.81 3.18 +stable stable adj s 10.09 4.53 8.67 3.78 +stablement stablement adv 0.00 0.07 0.00 0.07 +stables stable adj p 10.09 4.53 1.42 0.74 +stabulation stabulation nom f s 0.00 0.14 0.00 0.14 +staccato staccato nom m s 0.02 0.41 0.02 0.41 +stade stade nom m s 15.14 14.80 14.34 13.18 +stades stade nom m p 15.14 14.80 0.80 1.62 +stadium stadium nom m s 0.22 0.07 0.22 0.07 +staff staff nom m s 1.39 0.54 1.36 0.47 +staffs staff nom m p 1.39 0.54 0.03 0.07 +stage stage nom m s 6.16 5.54 4.87 4.80 +stages stage nom m p 6.16 5.54 1.28 0.74 +stagflation stagflation nom f s 0.01 0.00 0.01 0.00 +stagiaire stagiaire nom s 2.47 1.55 1.79 1.22 +stagiaires stagiaire nom p 2.47 1.55 0.69 0.34 +stagna stagner ver 0.59 5.41 0.00 0.20 ind:pas:3s; +stagnaient stagner ver 0.59 5.41 0.00 0.27 ind:imp:3p; +stagnait stagner ver 0.59 5.41 0.04 1.69 ind:imp:3s; +stagnant stagnant adj m s 0.41 2.97 0.04 0.61 +stagnante stagnant adj f s 0.41 2.97 0.26 1.69 +stagnantes stagnant adj f p 0.41 2.97 0.11 0.68 +stagnation stagnation nom f s 0.19 0.61 0.19 0.61 +stagne stagner ver 0.59 5.41 0.24 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stagnent stagner ver 0.59 5.41 0.06 0.20 ind:pre:3p; +stagner stagner ver 0.59 5.41 0.21 0.74 inf; +stagnez stagner ver 0.59 5.41 0.02 0.00 ind:pre:2p; +stagné stagner ver m s 0.59 5.41 0.02 0.27 par:pas; +stakhanoviste stakhanoviste nom s 0.27 0.07 0.27 0.07 +stalactite stalactite nom f s 0.15 0.61 0.11 0.07 +stalactites stalactite nom f p 0.15 0.61 0.04 0.54 +stalag stalag nom m s 0.37 0.74 0.37 0.61 +stalagmite stalagmite nom f s 0.12 0.34 0.11 0.07 +stalagmites stalagmite nom f p 0.12 0.34 0.01 0.27 +stalags stalag nom m p 0.37 0.74 0.00 0.14 +stalinien stalinien adj m s 0.48 3.72 0.02 1.42 +stalinienne stalinien adj f s 0.48 3.72 0.42 1.35 +staliniennes stalinien adj f p 0.48 3.72 0.03 0.54 +staliniens stalinien nom m p 0.05 1.69 0.04 1.28 +stalinisme stalinisme nom m s 0.14 1.01 0.14 1.01 +stalinisée staliniser ver f s 0.00 0.07 0.00 0.07 par:pas; +stalino stalino adv 0.00 0.07 0.00 0.07 +stalle stalle nom f s 0.32 2.43 0.19 0.74 +stalles stalle nom f p 0.32 2.43 0.13 1.69 +stals stal nom p 0.00 0.20 0.00 0.20 +stance stance nom f s 0.25 0.41 0.25 0.00 +stances stance nom f p 0.25 0.41 0.00 0.41 +stand_by stand_by nom m 0.83 0.07 0.83 0.07 +stand stand nom m s 7.02 3.72 5.66 2.64 +standard standard adj 4.17 1.01 4.17 1.01 +standardisation standardisation nom f s 0.00 0.07 0.00 0.07 +standardiste standardiste nom s 0.56 1.55 0.53 1.28 +standardistes standardiste nom p 0.56 1.55 0.03 0.27 +standardisé standardiser ver m s 0.03 0.00 0.01 0.00 par:pas; +standardisée standardisé adj f s 0.13 0.14 0.11 0.00 +standardisées standardiser ver f p 0.03 0.00 0.01 0.00 par:pas; +standardisés standardisé adj m p 0.13 0.14 0.01 0.00 +standards standard nom m p 3.24 2.30 0.72 0.27 +standing standing nom m s 1.00 2.03 1.00 2.03 +stands stand nom m p 7.02 3.72 1.36 1.08 +staphylococcie staphylococcie nom f s 0.01 0.00 0.01 0.00 +staphylococcique staphylococcique adj m s 0.01 0.00 0.01 0.00 +staphylocoque staphylocoque nom m s 0.11 0.00 0.09 0.00 +staphylocoques staphylocoque nom m p 0.11 0.00 0.02 0.00 +star_system star_system nom m s 0.01 0.00 0.01 0.00 +star star nom f s 39.34 9.86 28.91 6.35 +starking starking nom f s 0.00 0.14 0.00 0.14 +starlette starlette nom f s 0.39 1.22 0.21 0.54 +starlettes starlette nom f p 0.39 1.22 0.18 0.68 +staroste staroste nom m s 0.60 0.14 0.60 0.14 +stars star nom f p 39.34 9.86 10.44 3.51 +start_up start_up nom f 0.35 0.00 0.35 0.00 +starter starter nom m s 1.00 0.34 1.00 0.34 +starting_gate starting_gate nom f s 0.04 0.14 0.04 0.14 +stase stase nom f s 1.23 0.07 1.23 0.07 +stat stat nom s 0.05 0.00 0.05 0.00 +state stater ver 0.58 1.69 0.57 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stater stater ver 0.58 1.69 0.01 0.00 inf; +statices statice nom m p 0.00 0.07 0.00 0.07 +station_service station_service nom f s 4.22 3.58 3.95 3.24 +station_éclair station_éclair nom f s 0.00 0.07 0.00 0.07 +station station nom f s 29.71 24.26 26.73 17.97 +stationna stationner ver 1.67 8.85 0.00 0.07 ind:pas:3s; +stationnaient stationner ver 1.67 8.85 0.00 2.03 ind:imp:3p; +stationnaire stationnaire adj s 0.64 0.41 0.64 0.41 +stationnait stationner ver 1.67 8.85 0.00 1.89 ind:imp:3s; +stationnant stationner ver 1.67 8.85 0.01 0.41 par:pre; +stationne stationner ver 1.67 8.85 0.30 0.61 imp:pre:2s;ind:pre:3s; +stationnement stationnement nom m s 1.83 2.64 1.79 2.64 +stationnements stationnement nom m p 1.83 2.64 0.04 0.00 +stationnent stationner ver 1.67 8.85 0.10 0.41 ind:pre:3p; +stationner stationner ver 1.67 8.85 0.47 0.81 inf; +stationnera stationner ver 1.67 8.85 0.01 0.07 ind:fut:3s; +stationnez stationner ver 1.67 8.85 0.07 0.00 imp:pre:2p;ind:pre:2p; +stationnions stationner ver 1.67 8.85 0.00 0.07 ind:imp:1p; +stationnèrent stationner ver 1.67 8.85 0.00 0.07 ind:pas:3p; +stationné stationner ver m s 1.67 8.85 0.41 0.68 par:pas; +stationnée stationner ver f s 1.67 8.85 0.09 0.81 par:pas; +stationnées stationner ver f p 1.67 8.85 0.14 0.61 par:pas; +stationnés stationner ver m p 1.67 8.85 0.06 0.34 par:pas; +station_service station_service nom f p 4.22 3.58 0.27 0.34 +stations station nom f p 29.71 24.26 2.98 6.28 +statique statique adj s 0.65 1.42 0.61 1.28 +statiques statique adj p 0.65 1.42 0.03 0.14 +statisticien statisticien nom m s 0.10 0.00 0.09 0.00 +statisticienne statisticien nom f s 0.10 0.00 0.01 0.00 +statistique statistique adj s 1.13 0.88 0.61 0.47 +statistiquement statistiquement adv 0.91 0.07 0.91 0.07 +statistiquer statistiquer ver 0.00 0.07 0.00 0.07 inf; +statistiques statistique nom f p 5.11 3.45 4.59 3.31 +statère statère nom m s 0.00 0.74 0.00 0.68 +statères statère nom m p 0.00 0.74 0.00 0.07 +statu_quo statu_quo nom m s 0.94 1.08 0.94 1.08 +statuaient statuer ver 0.71 1.01 0.00 0.07 ind:imp:3p; +statuaire statuaire nom s 0.00 0.88 0.00 0.88 +statuant statuer ver 0.71 1.01 0.01 0.07 par:pre; +statue statue nom f s 19.50 42.84 15.42 25.54 +statuer statuer ver 0.71 1.01 0.27 0.34 inf; +statuera statuer ver 0.71 1.01 0.02 0.07 ind:fut:3s; +statuerai statuer ver 0.71 1.01 0.01 0.00 ind:fut:1s; +statuerait statuer ver 0.71 1.01 0.00 0.07 cnd:pre:3s; +statues statue nom f p 19.50 42.84 4.08 17.30 +statuette statuette nom f s 0.54 4.93 0.37 3.45 +statuettes statuette nom f p 0.54 4.93 0.17 1.49 +statufia statufier ver 0.06 1.28 0.00 0.07 ind:pas:3s; +statufiais statufier ver 0.06 1.28 0.00 0.07 ind:imp:1s; +statufiait statufier ver 0.06 1.28 0.00 0.07 ind:imp:3s; +statufiant statufier ver 0.06 1.28 0.00 0.14 par:pre; +statufier statufier ver 0.06 1.28 0.01 0.14 inf; +statufièrent statufier ver 0.06 1.28 0.01 0.00 ind:pas:3p; +statufié statufier ver m s 0.06 1.28 0.03 0.27 par:pas; +statufiée statufier ver f s 0.06 1.28 0.00 0.41 par:pas; +statufiées statufier ver f p 0.06 1.28 0.00 0.07 par:pas; +statufiés statufier ver m p 0.06 1.28 0.01 0.07 par:pas; +stature stature nom f s 0.75 4.05 0.75 3.92 +statures stature nom f p 0.75 4.05 0.00 0.14 +staturo_pondéral staturo_pondéral adj m s 0.01 0.00 0.01 0.00 +status status nom m 0.22 0.14 0.22 0.14 +statut statut nom m s 6.13 5.74 5.66 4.66 +statutaire statutaire adj f s 0.11 0.00 0.11 0.00 +statuts statut nom m p 6.13 5.74 0.48 1.08 +statué statuer ver m s 0.71 1.01 0.19 0.00 par:pas; +stayer stayer nom m s 0.00 0.47 0.00 0.47 +steak steak nom m s 10.76 2.57 8.15 1.69 +steaks steak nom m p 10.76 2.57 2.61 0.88 +steamboat steamboat nom m s 0.04 0.00 0.04 0.00 +steamer steamer nom m s 0.06 0.27 0.05 0.20 +steamers steamer nom m p 0.06 0.27 0.01 0.07 +steeple_chase steeple_chase nom m s 0.02 0.07 0.02 0.07 +steeple steeple nom m s 0.09 0.07 0.08 0.07 +steeples steeple nom m p 0.09 0.07 0.01 0.00 +stegomya stegomya nom f s 0.00 0.07 0.00 0.07 +stellaire stellaire adj s 1.76 0.88 1.55 0.54 +stellaires stellaire adj p 1.76 0.88 0.21 0.34 +stem stem nom m s 0.00 0.07 0.00 0.07 +stencil stencil nom m s 0.01 0.07 0.01 0.07 +stendhalien stendhalien adj m s 0.00 0.07 0.00 0.07 +stendhalien stendhalien nom m s 0.00 0.07 0.00 0.07 +stentor stentor nom m s 0.04 0.88 0.04 0.81 +stentors stentor nom m p 0.04 0.88 0.00 0.07 +steppe steppe nom f s 2.78 18.65 1.57 12.97 +stepper stepper nom m s 0.09 0.00 0.07 0.00 +steppers stepper nom m p 0.09 0.00 0.01 0.00 +steppes steppe nom f p 2.78 18.65 1.21 5.68 +stercoraire stercoraire adj m s 0.00 0.07 0.00 0.07 +stercoraires stercoraire nom m p 0.00 0.07 0.00 0.07 +sterling sterling adj 0.93 0.61 0.93 0.61 +sternal sternal adj m s 0.26 0.14 0.04 0.14 +sternale sternal adj f s 0.26 0.14 0.22 0.00 +sterne sterne nom f s 0.01 0.14 0.00 0.07 +sternes sterne nom f p 0.01 0.14 0.01 0.07 +sterno_cléido_mastoïdien sterno_cléido_mastoïdien adj m s 0.01 0.00 0.01 0.00 +sternum sternum nom m s 0.97 0.81 0.97 0.81 +stetson stetson nom m s 0.21 0.07 0.21 0.07 +steward steward nom m s 0.00 1.35 0.00 1.35 +sèche_cheveux sèche_cheveux nom m 0.97 0.00 0.97 0.00 +sèche_linge sèche_linge nom m 0.74 0.00 0.74 0.00 +sèche_mains sèche_mains nom m 0.04 0.00 0.04 0.00 +sèche sec adj f s 43.02 142.84 8.72 35.00 +sèchement sèchement adv 0.35 11.55 0.35 11.55 +sèchent sécher ver 19.49 40.41 0.57 2.57 ind:pre:3p; +sèches sec adj f p 43.02 142.84 2.00 18.45 +sème semer ver 19.80 25.41 4.35 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sèment semer ver 19.80 25.41 0.94 0.54 ind:pre:3p; +sèmera semer ver 19.80 25.41 0.18 0.00 ind:fut:3s; +sèmerai semer ver 19.80 25.41 0.01 0.07 ind:fut:1s; +sèmerais semer ver 19.80 25.41 0.01 0.00 cnd:pre:2s; +sèmerait semer ver 19.80 25.41 0.06 0.14 cnd:pre:3s; +sèmeras semer ver 19.80 25.41 0.01 0.00 ind:fut:2s; +sèmerez semer ver 19.80 25.41 0.01 0.00 ind:fut:2p; +sèmerions semer ver 19.80 25.41 0.00 0.07 cnd:pre:1p; +sèmerons semer ver 19.80 25.41 0.01 0.07 ind:fut:1p; +sèmeront semer ver 19.80 25.41 0.01 0.07 ind:fut:3p; +sèmes semer ver 19.80 25.41 0.32 0.14 ind:pre:2s; +sève sève nom f s 3.19 7.91 3.19 7.03 +sèves sève nom f p 3.19 7.91 0.00 0.88 +sèvres sèvres nom m 0.01 0.07 0.01 0.07 +stick stick nom m s 0.78 0.95 0.54 0.95 +sticker sticker nom m s 0.04 0.00 0.04 0.00 +sticks stick nom m p 0.78 0.95 0.23 0.00 +stigma stigma nom m s 0.00 0.07 0.00 0.07 +stigmate stigmate nom m s 0.99 3.11 0.16 0.27 +stigmates stigmate nom m p 0.99 3.11 0.83 2.84 +stigmatisaient stigmatiser ver 0.18 0.74 0.00 0.07 ind:imp:3p; +stigmatisait stigmatiser ver 0.18 0.74 0.00 0.14 ind:imp:3s; +stigmatisant stigmatiser ver 0.18 0.74 0.01 0.20 par:pre; +stigmatiser stigmatiser ver 0.18 0.74 0.01 0.14 inf; +stigmatisé stigmatiser ver m s 0.18 0.74 0.02 0.00 par:pas; +stigmatisée stigmatiser ver f s 0.18 0.74 0.14 0.14 par:pas; +stigmatisés stigmatisé adj m p 0.06 0.07 0.05 0.00 +stilton stilton nom m s 0.04 0.20 0.04 0.20 +stimula stimuler ver 4.60 4.05 0.00 0.14 ind:pas:3s; +stimulaient stimuler ver 4.60 4.05 0.01 0.07 ind:imp:3p; +stimulait stimuler ver 4.60 4.05 0.03 0.41 ind:imp:3s; +stimulant stimulant nom m s 1.81 0.47 1.47 0.27 +stimulante stimulant adj f s 1.97 1.55 0.33 0.41 +stimulantes stimulant adj f p 1.97 1.55 0.04 0.07 +stimulants stimulant nom m p 1.81 0.47 0.35 0.20 +stimulateur stimulateur nom m s 0.42 0.00 0.42 0.00 +stimulation stimulation nom f s 1.29 0.27 1.23 0.27 +stimulations stimulation nom f p 1.29 0.27 0.05 0.00 +stimule stimuler ver 4.60 4.05 1.58 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stimulent stimuler ver 4.60 4.05 0.08 0.20 ind:pre:3p; +stimuler stimuler ver 4.60 4.05 1.45 1.22 inf; +stimulera stimuler ver 4.60 4.05 0.09 0.00 ind:fut:3s; +stimulerait stimuler ver 4.60 4.05 0.12 0.07 cnd:pre:3s; +stimuleront stimuler ver 4.60 4.05 0.02 0.00 ind:fut:3p; +stimulez stimuler ver 4.60 4.05 0.01 0.00 imp:pre:2p; +stimuli stimulus nom m p 0.84 0.14 0.45 0.00 +stimulons stimuler ver 4.60 4.05 0.02 0.00 imp:pre:1p;ind:pre:1p; +stimulé stimuler ver m s 4.60 4.05 0.66 0.41 par:pas; +stimulée stimuler ver f s 4.60 4.05 0.09 0.27 par:pas; +stimulées stimuler ver f p 4.60 4.05 0.03 0.07 par:pas; +stimulus_réponse stimulus_réponse nom m 0.00 0.14 0.00 0.14 +stimulés stimuler ver m p 4.60 4.05 0.16 0.20 par:pas; +stimulus stimulus nom m 0.84 0.14 0.39 0.14 +stipendiés stipendier ver m p 0.00 0.14 0.00 0.14 par:pas; +stipes stipe nom m p 0.01 0.07 0.01 0.07 +stipulait stipuler ver 1.81 0.54 0.21 0.00 ind:imp:3s; +stipulant stipuler ver 1.81 0.54 0.10 0.27 par:pre; +stipulation stipulation nom f s 0.02 0.20 0.01 0.00 +stipulations stipulation nom f p 0.02 0.20 0.01 0.20 +stipule stipuler ver 1.81 0.54 0.98 0.20 imp:pre:2s;ind:pre:3s; +stipulent stipuler ver 1.81 0.54 0.14 0.00 ind:pre:3p; +stipuler stipuler ver 1.81 0.54 0.03 0.00 inf; +stipulé stipuler ver m s 1.81 0.54 0.29 0.07 par:pas; +stipulée stipuler ver f s 1.81 0.54 0.01 0.00 par:pas; +stipulées stipuler ver f p 1.81 0.54 0.03 0.00 par:pas; +stipulés stipuler ver m p 1.81 0.54 0.01 0.00 par:pas; +stoïcien stoïcien adj m s 0.01 0.34 0.01 0.34 +stoïciens stoïcien nom m p 0.01 0.61 0.01 0.41 +stoïcisme stoïcisme nom m s 0.07 0.61 0.07 0.61 +stoïque stoïque adj s 0.39 0.95 0.35 0.88 +stoïquement stoïquement adv 0.00 0.27 0.00 0.27 +stoïques stoïque adj p 0.39 0.95 0.03 0.07 +stochastique stochastique adj m s 0.01 0.00 0.01 0.00 +stock_car stock_car nom m s 0.19 0.14 0.16 0.14 +stock_car stock_car nom m p 0.19 0.14 0.03 0.00 +stock_option stock_option nom f p 0.18 0.00 0.18 0.00 +stock stock nom m s 5.66 7.91 4.23 4.80 +stockage stockage nom m s 1.33 0.47 1.32 0.41 +stockages stockage nom m p 1.33 0.47 0.01 0.07 +stockaient stocker ver 3.54 1.15 0.07 0.07 ind:imp:3p; +stockait stocker ver 3.54 1.15 0.06 0.20 ind:imp:3s; +stocke stocker ver 3.54 1.15 0.48 0.00 ind:pre:1s;ind:pre:3s; +stockent stocker ver 3.54 1.15 0.20 0.14 ind:pre:3p; +stocker stocker ver 3.54 1.15 1.22 0.14 inf; +stockez stocker ver 3.54 1.15 0.17 0.00 imp:pre:2p;ind:pre:2p; +stockons stocker ver 3.54 1.15 0.04 0.00 imp:pre:1p;ind:pre:1p; +stocks stock nom m p 5.66 7.91 1.44 3.11 +stocké stocker ver m s 3.54 1.15 0.31 0.27 par:pas; +stockée stocker ver f s 3.54 1.15 0.24 0.00 par:pas; +stockées stocker ver f p 3.54 1.15 0.50 0.14 par:pas; +stockés stocker ver m p 3.54 1.15 0.24 0.20 par:pas; +stoker stoker nom m s 0.65 0.00 0.65 0.00 +stokes stokes nom m 0.10 0.00 0.10 0.00 +stomacal stomacal adj m s 0.06 0.61 0.03 0.27 +stomacale stomacal adj f s 0.06 0.61 0.03 0.14 +stomacales stomacal adj f p 0.06 0.61 0.00 0.14 +stomacaux stomacal adj m p 0.06 0.61 0.00 0.07 +stomates stomate nom m p 0.01 0.00 0.01 0.00 +stomie stomie nom f s 0.02 0.00 0.02 0.00 +stomoxys stomoxys nom m 0.27 0.00 0.27 0.00 +stone stone adj s 2.06 2.16 1.11 0.34 +stones stone adj p 2.06 2.16 0.94 1.82 +stop stop nom m s 44.50 6.76 44.36 6.49 +stoppa stopper ver 9.46 15.61 0.11 2.36 ind:pas:3s; +stoppage stoppage nom m s 0.00 0.14 0.00 0.14 +stoppai stopper ver 9.46 15.61 0.00 0.07 ind:pas:1s; +stoppaient stopper ver 9.46 15.61 0.00 0.20 ind:imp:3p; +stoppais stopper ver 9.46 15.61 0.00 0.07 ind:imp:1s; +stoppait stopper ver 9.46 15.61 0.01 0.68 ind:imp:3s; +stoppant stopper ver 9.46 15.61 0.01 0.34 par:pre; +stoppe stopper ver 9.46 15.61 0.54 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stoppent stopper ver 9.46 15.61 0.06 0.14 ind:pre:3p; +stopper stopper ver 9.46 15.61 4.88 3.11 inf; +stoppera stopper ver 9.46 15.61 0.09 0.00 ind:fut:3s; +stopperai stopper ver 9.46 15.61 0.02 0.00 ind:fut:1s; +stopperiez stopper ver 9.46 15.61 0.01 0.00 cnd:pre:2p; +stoppes stopper ver 9.46 15.61 0.01 0.14 ind:pre:2s; +stoppeur stoppeur nom m s 0.07 0.14 0.04 0.07 +stoppeurs stoppeur nom m p 0.07 0.14 0.02 0.00 +stoppeuse stoppeur nom f s 0.07 0.14 0.00 0.07 +stoppez stopper ver 9.46 15.61 1.33 0.00 imp:pre:2p;ind:pre:2p; +stoppions stopper ver 9.46 15.61 0.01 0.07 ind:imp:1p; +stoppons stopper ver 9.46 15.61 0.08 0.00 imp:pre:1p;ind:pre:1p; +stoppât stopper ver 9.46 15.61 0.00 0.07 sub:imp:3s; +stoppèrent stopper ver 9.46 15.61 0.10 0.61 ind:pas:3p; +stoppé stopper ver m s 9.46 15.61 1.60 3.38 par:pas; +stoppée stopper ver f s 9.46 15.61 0.44 0.74 par:pas; +stoppées stopper ver f p 9.46 15.61 0.03 0.20 par:pas; +stoppés stopper ver m p 9.46 15.61 0.13 0.54 par:pas; +stops stop nom m p 44.50 6.76 0.14 0.27 +storage storage nom m s 0.01 0.00 0.01 0.00 +store store nom m s 3.59 7.09 1.35 4.12 +stores store nom m p 3.59 7.09 2.23 2.97 +story_board story_board nom m s 0.28 0.07 0.23 0.00 +story_board story_board nom m p 0.28 0.07 0.03 0.00 +story_board story_board nom m s 0.28 0.07 0.03 0.07 +stout stout nom m s 0.45 0.14 0.45 0.14 +strabisme strabisme nom m s 0.02 0.95 0.02 0.88 +strabismes strabisme nom m p 0.02 0.95 0.00 0.07 +stradivarius stradivarius nom m 0.04 0.07 0.04 0.07 +straight straight adj s 0.40 0.14 0.40 0.14 +stramoine stramoine nom f s 0.01 0.00 0.01 0.00 +stramonium stramonium nom m s 0.04 0.00 0.04 0.00 +strangula stranguler ver 0.02 0.47 0.01 0.07 ind:pas:3s; +strangulant stranguler ver 0.02 0.47 0.00 0.14 par:pre; +strangulation strangulation nom f s 1.28 0.68 1.28 0.68 +stranguler stranguler ver 0.02 0.47 0.00 0.07 inf; +strangulé stranguler ver m s 0.02 0.47 0.00 0.20 par:pas; +strangulées stranguler ver f p 0.02 0.47 0.01 0.00 par:pas; +strapontin strapontin nom m s 0.18 1.89 0.16 1.35 +strapontins strapontin nom m p 0.18 1.89 0.03 0.54 +strasbourgeois strasbourgeois adj m s 0.14 0.54 0.14 0.47 +strasbourgeoise strasbourgeois adj f s 0.14 0.54 0.00 0.07 +strass strass nom m 0.21 1.69 0.21 1.69 +strasse strasse nom f s 0.39 0.20 0.39 0.20 +stratagème stratagème nom m s 1.89 1.76 1.54 1.35 +stratagèmes stratagème nom m p 1.89 1.76 0.34 0.41 +strate strate nom f s 0.34 0.47 0.17 0.00 +strates strate nom f p 0.34 0.47 0.17 0.47 +stratification stratification nom f s 0.01 0.41 0.01 0.14 +stratifications stratification nom f p 0.01 0.41 0.00 0.27 +stratifié stratifié adj m s 0.04 0.54 0.04 0.41 +stratifiée stratifier ver f s 0.01 0.00 0.01 0.00 par:pas; +stratifiées stratifié adj f p 0.04 0.54 0.00 0.07 +stratigraphique stratigraphique adj s 0.00 0.07 0.00 0.07 +stratosphère stratosphère nom f s 0.62 0.68 0.62 0.68 +stratosphérique stratosphérique adj m s 0.02 0.14 0.02 0.07 +stratosphériques stratosphérique adj f p 0.02 0.14 0.00 0.07 +stratège stratège nom m s 1.31 1.62 1.11 1.01 +stratèges stratège nom m p 1.31 1.62 0.20 0.61 +stratégie stratégie nom f s 9.80 7.23 8.96 6.89 +stratégies stratégie nom f p 9.80 7.23 0.84 0.34 +stratégique stratégique adj s 3.21 10.14 2.26 6.96 +stratégiquement stratégiquement adv 0.30 0.54 0.30 0.54 +stratégiques stratégique adj p 3.21 10.14 0.95 3.18 +stratégiste stratégiste nom s 0.01 0.00 0.01 0.00 +stratus stratus nom m 0.01 0.00 0.01 0.00 +strelitzia strelitzia nom m s 0.01 0.00 0.01 0.00 +streptococcie streptococcie nom f s 0.01 0.00 0.01 0.00 +streptococcique streptococcique adj f s 0.01 0.00 0.01 0.00 +streptocoque streptocoque nom m s 0.18 0.07 0.18 0.07 +streptokinase streptokinase nom f s 0.01 0.00 0.01 0.00 +streptomycine streptomycine nom f s 0.04 0.14 0.04 0.14 +stress stress nom m 10.85 0.41 10.85 0.41 +stressais stresser ver 7.34 0.34 0.11 0.00 ind:imp:1s; +stressait stresser ver 7.34 0.34 0.02 0.00 ind:imp:3s; +stressant stressant adj m s 1.81 0.00 1.16 0.00 +stressante stressant adj f s 1.81 0.00 0.45 0.00 +stressantes stressant adj f p 1.81 0.00 0.13 0.00 +stressants stressant adj m p 1.81 0.00 0.07 0.00 +stresse stresser ver 7.34 0.34 1.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stressent stresser ver 7.34 0.34 0.13 0.00 ind:pre:3p; +stresser stresser ver 7.34 0.34 0.75 0.00 inf; +stressera stresser ver 7.34 0.34 0.01 0.00 ind:fut:3s; +stresserai stresser ver 7.34 0.34 0.01 0.00 ind:fut:1s; +stressé stresser ver m s 7.34 0.34 2.94 0.14 par:pas; +stressée stresser ver f s 7.34 0.34 1.81 0.14 par:pas; +stressées stresser ver f p 7.34 0.34 0.07 0.00 par:pas; +stressés stresser ver m p 7.34 0.34 0.35 0.07 par:pas; +stretch stretch nom m s 0.29 0.20 0.29 0.20 +stretching stretching nom m s 0.28 0.00 0.28 0.00 +striaient strier ver 0.03 4.26 0.01 0.20 ind:imp:3p; +striait strier ver 0.03 4.26 0.00 0.27 ind:imp:3s; +striations striation nom f p 0.09 0.00 0.09 0.00 +strict strict adj m s 7.66 14.39 3.36 7.03 +stricte strict adj f s 7.66 14.39 2.58 5.27 +strictement strictement adv 4.95 7.91 4.95 7.91 +strictes strict adj f p 7.66 14.39 1.18 1.22 +stricto_sensu stricto_sensu adv 0.01 0.00 0.01 0.00 +stricts strict adj m p 7.66 14.39 0.54 0.88 +stridence stridence nom f s 0.01 1.96 0.01 0.95 +stridences stridence nom f p 0.01 1.96 0.00 1.01 +strident strident adj m s 0.74 7.30 0.40 3.04 +stridente strident adj f s 0.74 7.30 0.14 1.15 +stridentes strident adj f p 0.74 7.30 0.02 1.01 +stridents strident adj m p 0.74 7.30 0.19 2.09 +strider strider ver 0.12 0.00 0.12 0.00 inf; +stridor stridor nom m s 0.04 0.00 0.04 0.00 +stridulait striduler ver 0.00 0.20 0.00 0.07 ind:imp:3s; +stridulation stridulation nom f s 0.16 0.27 0.02 0.14 +stridulations stridulation nom f p 0.16 0.27 0.14 0.14 +stridule striduler ver 0.00 0.20 0.00 0.07 ind:pre:3s; +striduler striduler ver 0.00 0.20 0.00 0.07 inf; +striduleuse striduleux adj f s 0.00 0.07 0.00 0.07 +strie strie nom f s 0.73 1.82 0.05 0.07 +strient strier ver 0.03 4.26 0.00 0.07 ind:pre:3p; +strier strier ver 0.03 4.26 0.00 0.14 inf; +stries strie nom f p 0.73 1.82 0.68 1.76 +string string nom m s 3.90 0.34 2.59 0.34 +strings string nom m p 3.90 0.34 1.31 0.00 +strip_poker strip_poker nom m s 0.08 0.07 0.08 0.07 +strip_tease strip_tease nom m s 4.04 1.01 3.63 0.95 +strip_tease strip_tease nom m p 4.04 1.01 0.41 0.07 +strip_teaseur strip_teaseur nom m s 3.23 0.47 0.11 0.00 +strip_teaseur strip_teaseur nom m p 3.23 0.47 0.14 0.00 +strip_teaseur strip_teaseur nom f s 3.23 0.47 2.98 0.27 +strip_teaseuse strip_teaseuse nom f p 0.79 0.00 0.79 0.00 +strip strip nom m s 2.44 0.27 2.44 0.27 +stripper stripper ver 0.01 0.00 0.01 0.00 inf; +striptease striptease nom m s 0.60 0.00 0.60 0.00 +stripteaseuse stripteaseur nom f s 0.26 0.20 0.26 0.14 +stripteaseuses stripteaseuse nom f p 0.19 0.00 0.19 0.00 +strié strié adj m s 0.06 0.74 0.03 0.14 +striée strier ver f s 0.03 4.26 0.01 0.81 par:pas; +striées strié adj f p 0.06 0.74 0.01 0.14 +striures striure nom f p 0.05 0.41 0.05 0.41 +striés strié adj m p 0.06 0.74 0.01 0.20 +stroboscope stroboscope nom m s 0.05 0.00 0.05 0.00 +stroboscopique stroboscopique adj m s 0.10 0.00 0.10 0.00 +strontiane strontiane nom f s 0.00 0.07 0.00 0.07 +strontium strontium nom m s 0.06 0.07 0.06 0.07 +strophe strophe nom f s 0.30 2.16 0.26 0.81 +strophes strophe nom f p 0.30 2.16 0.04 1.35 +stropiats stropiat nom m p 0.00 0.68 0.00 0.68 +structura structurer ver 0.51 1.22 0.00 0.47 ind:pas:3s; +structuraient structurer ver 0.51 1.22 0.00 0.07 ind:imp:3p; +structurait structurer ver 0.51 1.22 0.00 0.14 ind:imp:3s; +structural structural adj m s 0.06 0.27 0.00 0.20 +structurale structural adj f s 0.06 0.27 0.04 0.07 +structuralement structuralement adv 0.00 0.07 0.00 0.07 +structurales structural adj f p 0.06 0.27 0.01 0.00 +structuralisme structuralisme nom m s 0.00 0.14 0.00 0.14 +structuraliste structuraliste adj s 0.01 0.07 0.01 0.00 +structuralistes structuraliste adj m p 0.01 0.07 0.00 0.07 +structurant structurer ver 0.51 1.22 0.01 0.00 par:pre; +structurations structuration nom f p 0.00 0.07 0.00 0.07 +structuraux structural adj m p 0.06 0.27 0.01 0.00 +structure structure nom f s 8.74 7.70 7.81 5.88 +structurel structurel adj m s 0.59 0.00 0.12 0.00 +structurelle structurel adj f s 0.59 0.00 0.27 0.00 +structurellement structurellement adv 0.05 0.00 0.05 0.00 +structurels structurel adj m p 0.59 0.00 0.20 0.00 +structurent structurer ver 0.51 1.22 0.00 0.14 ind:pre:3p; +structurer structurer ver 0.51 1.22 0.14 0.00 inf; +structures structure nom f p 8.74 7.70 0.93 1.82 +structuré structurer ver m s 0.51 1.22 0.29 0.27 par:pas; +structurée structuré adj f s 0.25 0.54 0.07 0.07 +structurés structuré adj m p 0.25 0.54 0.14 0.00 +strudel strudel nom m s 0.46 0.41 0.37 0.07 +strudels strudel nom m p 0.46 0.41 0.09 0.34 +struggle_for_life struggle_for_life nom m 0.00 0.07 0.00 0.07 +strychnine strychnine nom f s 0.74 0.20 0.74 0.20 +strychnos strychnos nom m 0.01 0.00 0.01 0.00 +stryges stryge nom f p 0.00 0.07 0.00 0.07 +stèle stèle nom f s 0.35 2.57 0.31 1.49 +stèles stèle nom f p 0.35 2.57 0.04 1.08 +stère stère nom m s 0.04 0.61 0.01 0.14 +stères stère nom m p 0.04 0.61 0.03 0.47 +stéarate stéarate nom m s 0.01 0.00 0.01 0.00 +stéarique stéarique adj s 0.01 0.00 0.01 0.00 +stéatopyges stéatopyge adj m p 0.00 0.07 0.00 0.07 +stuc stuc nom m s 0.16 1.89 0.15 1.55 +stucs stuc nom m p 0.16 1.89 0.01 0.34 +studette studette nom f s 0.00 0.07 0.00 0.07 +studieuse studieux adj f s 0.67 4.05 0.09 1.42 +studieusement studieusement adv 0.00 0.27 0.00 0.27 +studieuses studieux adj f p 0.67 4.05 0.04 0.81 +studieux studieux adj m 0.67 4.05 0.54 1.82 +studio studio nom m s 27.77 22.09 20.95 18.85 +studiolo studiolo nom m s 0.01 0.00 0.01 0.00 +studios studio nom m p 27.77 22.09 6.82 3.24 +stégosaure stégosaure nom m s 0.06 0.00 0.06 0.00 +stuka stuka nom m s 0.05 1.15 0.02 0.34 +stukas stuka nom m p 0.05 1.15 0.03 0.81 +sténo sténo nom s 0.86 0.61 0.80 0.54 +sténodactylo sténodactylo nom s 0.02 0.14 0.02 0.14 +sténodactylographie sténodactylographie nom f s 0.00 0.07 0.00 0.07 +sténographe sténographe nom s 0.08 0.00 0.08 0.00 +sténographiai sténographier ver 0.00 0.07 0.00 0.07 ind:pas:1s; +sténographie sténographie nom f s 0.32 0.14 0.32 0.14 +sténographique sténographique adj m s 0.02 0.07 0.02 0.00 +sténographiques sténographique adj m p 0.02 0.07 0.00 0.07 +sténopé sténopé nom m s 0.07 0.14 0.07 0.07 +sténopés sténopé nom m p 0.07 0.14 0.00 0.07 +sténos sténo nom p 0.86 0.61 0.06 0.07 +sténose sténose nom f s 0.07 0.00 0.07 0.00 +sténotype sténotype nom f s 0.01 0.00 0.01 0.00 +sténotypiste sténotypiste nom s 0.02 0.07 0.02 0.00 +sténotypistes sténotypiste nom p 0.02 0.07 0.00 0.07 +stup stups nom m s 2.47 0.20 0.20 0.00 +stupas stupa nom m p 0.00 0.07 0.00 0.07 +stupeur stupeur nom f s 1.57 24.05 1.57 24.05 +stéphanois stéphanois nom m 0.27 0.14 0.27 0.14 +stupide stupide adj s 71.75 27.50 60.06 21.76 +stupidement stupidement adv 0.82 5.07 0.82 5.07 +stupides stupide adj p 71.75 27.50 11.70 5.74 +stupidité stupidité nom f s 3.63 3.31 2.98 2.77 +stupidités stupidité nom f p 3.63 3.31 0.65 0.54 +stuporeuse stuporeux adj f s 0.00 0.07 0.00 0.07 +stupre stupre nom m s 0.14 0.81 0.14 0.81 +stups stups nom m p 2.47 0.20 2.26 0.20 +stupéfaction stupéfaction nom f s 0.36 8.04 0.36 8.04 +stupéfait stupéfait adj m s 2.25 14.73 1.43 8.24 +stupéfaite stupéfait adj f s 2.25 14.73 0.48 4.05 +stupéfaites stupéfait adj f p 2.25 14.73 0.00 0.14 +stupéfaits stupéfait adj m p 2.25 14.73 0.34 2.30 +stupéfia stupéfier ver 0.98 5.07 0.02 0.54 ind:pas:3s; +stupéfiaient stupéfier ver 0.98 5.07 0.00 0.07 ind:imp:3p; +stupéfiait stupéfier ver 0.98 5.07 0.00 1.08 ind:imp:3s; +stupéfiant stupéfiant adj m s 2.80 6.49 1.77 2.36 +stupéfiante stupéfiant adj f s 2.80 6.49 0.60 3.58 +stupéfiantes stupéfiant adj f p 2.80 6.49 0.09 0.34 +stupéfiants stupéfiant nom m p 2.69 0.88 1.54 0.47 +stupéfie stupéfier ver 0.98 5.07 0.22 0.68 ind:pre:3s; +stupéfient stupéfier ver 0.98 5.07 0.04 0.14 ind:pre:3p; +stupéfier stupéfier ver 0.98 5.07 0.15 0.20 inf; +stupéfierait stupéfier ver 0.98 5.07 0.00 0.07 cnd:pre:3s; +stupéfiez stupéfier ver 0.98 5.07 0.04 0.00 ind:pre:2p; +stupéfié stupéfier ver m s 0.98 5.07 0.26 1.55 par:pas; +stupéfiée stupéfier ver f s 0.98 5.07 0.11 0.54 par:pas; +stupéfiées stupéfier ver f p 0.98 5.07 0.10 0.07 par:pas; +stupéfiés stupéfier ver m p 0.98 5.07 0.01 0.07 par:pas; +stérile stérile adj s 7.07 11.69 5.59 9.59 +stérilement stérilement adv 0.00 0.20 0.00 0.20 +stériles stérile adj p 7.07 11.69 1.48 2.09 +stérilet stérilet nom m s 0.11 0.61 0.11 0.61 +stérilisa stériliser ver 1.49 0.81 0.00 0.07 ind:pas:3s; +stérilisait stériliser ver 1.49 0.81 0.00 0.07 ind:imp:3s; +stérilisant stériliser ver 1.49 0.81 0.02 0.00 par:pre; +stérilisante stérilisant adj f s 0.01 0.14 0.00 0.07 +stérilisantes stérilisant adj f p 0.01 0.14 0.00 0.07 +stérilisateur stérilisateur nom m s 0.18 0.00 0.18 0.00 +stérilisation stérilisation nom f s 0.37 0.07 0.37 0.00 +stérilisations stérilisation nom f p 0.37 0.07 0.00 0.07 +stérilise stériliser ver 1.49 0.81 0.22 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stérilisent stériliser ver 1.49 0.81 0.04 0.00 ind:pre:3p; +stériliser stériliser ver 1.49 0.81 0.76 0.27 inf; +stérilisez stériliser ver 1.49 0.81 0.17 0.00 imp:pre:2p;ind:pre:2p; +stérilisé stériliser ver m s 1.49 0.81 0.17 0.20 par:pas; +stérilisée stérilisé adj f s 0.23 0.41 0.06 0.34 +stérilisées stériliser ver f p 1.49 0.81 0.02 0.07 par:pas; +stérilisés stériliser ver m p 1.49 0.81 0.06 0.00 par:pas; +stérilité stérilité nom f s 1.09 2.91 1.09 2.91 +stéroïde stéroïde adj m s 2.00 0.00 0.13 0.00 +stéroïdes stéroïde adj p 2.00 0.00 1.88 0.00 +stéréo stéréo nom f s 2.51 1.15 2.47 1.15 +stéréophonie stéréophonie nom f s 0.01 0.27 0.01 0.27 +stéréophonique stéréophonique adj m s 0.04 0.14 0.04 0.14 +stéréos stéréo nom f p 2.51 1.15 0.04 0.00 +stéréoscope stéréoscope nom m s 0.01 0.27 0.01 0.27 +stéréoscopie stéréoscopie nom f s 0.00 0.07 0.00 0.07 +stéréoscopique stéréoscopique adj s 0.02 0.20 0.02 0.20 +stéréotype stéréotype nom m s 0.54 1.22 0.23 0.54 +stéréotyper stéréotyper ver 0.05 0.61 0.01 0.00 inf; +stéréotypes stéréotype nom m p 0.54 1.22 0.31 0.68 +stéréotypie stéréotypie nom f s 0.00 0.07 0.00 0.07 +stéréotypé stéréotypé adj m s 0.16 0.68 0.03 0.20 +stéréotypée stéréotypé adj f s 0.16 0.68 0.01 0.20 +stéréotypées stéréotyper ver f p 0.05 0.61 0.02 0.07 par:pas; +stéréotypés stéréotypé adj m p 0.16 0.68 0.11 0.14 +stéthoscope stéthoscope nom m s 0.50 0.68 0.48 0.54 +stéthoscopes stéthoscope nom m p 0.50 0.68 0.02 0.14 +stygien stygien adj m s 0.01 0.00 0.01 0.00 +style style nom m s 32.34 46.62 31.08 45.14 +styler styler ver 0.29 1.55 0.04 0.00 inf; +styles style nom m p 32.34 46.62 1.26 1.49 +stylet stylet nom m s 0.07 0.74 0.07 0.61 +stylets stylet nom m p 0.07 0.74 0.00 0.14 +stylisa styliser ver 0.44 1.96 0.00 0.07 ind:pas:3s; +stylisation stylisation nom f s 0.01 0.00 0.01 0.00 +stylise styliser ver 0.44 1.96 0.02 0.07 ind:pre:1s;ind:pre:3s; +stylisme stylisme nom m s 0.23 0.07 0.23 0.07 +styliste styliste nom s 1.34 0.54 1.17 0.34 +stylistes styliste nom p 1.34 0.54 0.17 0.20 +stylistique stylistique adj m s 0.11 0.20 0.11 0.14 +stylistiques stylistique adj p 0.11 0.20 0.00 0.07 +stylisé styliser ver m s 0.44 1.96 0.30 0.74 par:pas; +stylisée styliser ver f s 0.44 1.96 0.12 0.41 par:pas; +stylisées styliser ver f p 0.44 1.96 0.00 0.34 par:pas; +stylisés styliser ver m p 0.44 1.96 0.00 0.34 par:pas; +stylite stylite nom m s 0.00 0.27 0.00 0.27 +stylo_bille stylo_bille nom m s 0.17 0.14 0.17 0.14 +stylo_feutre stylo_feutre nom m s 0.00 0.27 0.00 0.14 +stylo stylo nom m s 17.73 12.77 15.34 10.61 +styloïde styloïde adj s 0.01 0.00 0.01 0.00 +stylobille stylobille nom m s 0.00 0.27 0.00 0.27 +stylographe stylographe nom m s 0.01 0.47 0.01 0.41 +stylographes stylographe nom m p 0.01 0.47 0.00 0.07 +stylomine stylomine nom m s 0.00 0.54 0.00 0.54 +stylo_feutre stylo_feutre nom m p 0.00 0.27 0.00 0.14 +stylos stylo nom m p 17.73 12.77 2.39 2.16 +stylé stylé adj m s 0.20 0.88 0.11 0.54 +stylée stylé adj f s 0.20 0.88 0.05 0.27 +stylées stylé adj f p 0.20 0.88 0.01 0.07 +stylés stylé adj m p 0.20 0.88 0.03 0.00 +styrax styrax nom m 0.00 0.07 0.00 0.07 +styrène styrène nom m s 0.04 0.00 0.04 0.00 +su savoir ver_sup m s 4516.72 2003.58 83.37 77.64 par:pas; +sua suer ver 7.28 10.34 0.00 0.47 ind:pas:3s; +suaient suer ver 7.28 10.34 0.00 0.41 ind:imp:3p; +suaire suaire nom m s 0.30 2.64 0.28 1.82 +suaires suaire nom m p 0.30 2.64 0.02 0.81 +suais suer ver 7.28 10.34 0.07 0.54 ind:imp:1s; +suait suer ver 7.28 10.34 0.04 2.09 ind:imp:3s; +séance séance nom f s 22.91 32.36 18.49 22.30 +séances séance nom f p 22.91 32.36 4.43 10.07 +suant suant adj m s 0.25 2.43 0.20 1.15 +séant séant nom m s 0.04 1.42 0.04 1.42 +suante suant adj f s 0.25 2.43 0.02 0.34 +séante séant adj f s 0.04 0.27 0.01 0.00 +suantes suant adj f p 0.25 2.43 0.01 0.20 +suants suant adj m p 0.25 2.43 0.02 0.74 +suave suave adj s 1.11 7.43 0.94 5.47 +suavement suavement adv 0.01 0.61 0.01 0.61 +suaves suave adj p 1.11 7.43 0.17 1.96 +suavité suavité nom f s 0.02 1.55 0.02 1.55 +sub_aquatique sub_aquatique adj f s 0.00 0.07 0.00 0.07 +sub_atomique sub_atomique adj s 0.07 0.00 0.04 0.00 +sub_atomique sub_atomique adj p 0.07 0.00 0.04 0.00 +sub_claquant sub_claquant adj m s 0.01 0.00 0.01 0.00 +sub_espace sub_espace nom m s 0.08 0.00 0.08 0.00 +sub_normaux sub_normaux adj m p 0.14 0.00 0.14 0.00 +sub_nucléaire sub_nucléaire adj f p 0.01 0.00 0.01 0.00 +sub_vocal sub_vocal adj m s 0.01 0.07 0.01 0.07 +sub_véhiculaire sub_véhiculaire adj s 0.01 0.00 0.01 0.00 +sub_zéro sub_zéro nom m s 0.01 0.00 0.01 0.00 +sub sub adv 0.22 0.20 0.22 0.20 +subît subir ver 30.13 53.72 0.00 0.07 sub:imp:3s; +subîtes subir ver 30.13 53.72 0.00 0.07 ind:pas:2p; +sébacé sébacé adj m s 0.10 0.14 0.05 0.00 +sébacée sébacé adj f s 0.10 0.14 0.01 0.00 +sébacées sébacé adj f p 0.10 0.14 0.04 0.14 +subaiguë subaigu adj f s 0.01 0.00 0.01 0.00 +subalterne subalterne nom s 0.42 1.49 0.28 0.47 +subalternes subalterne adj p 0.58 2.36 0.46 1.42 +subaquatique subaquatique adj s 0.03 0.00 0.03 0.00 +sébaste sébaste nom m s 0.01 0.00 0.01 0.00 +subatomique subatomique adj s 0.33 0.00 0.13 0.00 +subatomiques subatomique adj p 0.33 0.00 0.19 0.00 +subcarpatique subcarpatique adj f s 0.00 0.07 0.00 0.07 +subcellulaire subcellulaire adj s 0.02 0.00 0.02 0.00 +subconsciemment subconsciemment adv 0.04 0.00 0.04 0.00 +subconscient subconscient nom m s 2.17 1.28 2.16 1.28 +subconsciente subconscient adj f s 0.27 0.34 0.04 0.00 +subconscientes subconscient adj f p 0.27 0.34 0.00 0.14 +subconscients subconscient nom m p 2.17 1.28 0.01 0.00 +subculture subculture nom f s 0.02 0.00 0.02 0.00 +subdivisa subdiviser ver 0.02 0.41 0.00 0.07 ind:pas:3s; +subdivisaient subdiviser ver 0.02 0.41 0.00 0.07 ind:imp:3p; +subdivisait subdiviser ver 0.02 0.41 0.00 0.14 ind:imp:3s; +subdivisent subdiviser ver 0.02 0.41 0.00 0.07 ind:pre:3p; +subdivision subdivision nom f s 0.16 0.47 0.06 0.34 +subdivisions subdivision nom f p 0.16 0.47 0.10 0.14 +subdivisé subdiviser ver m s 0.02 0.41 0.01 0.00 par:pas; +subdivisée subdiviser ver f s 0.02 0.41 0.01 0.00 par:pas; +subdivisés subdiviser ver m p 0.02 0.41 0.00 0.07 par:pas; +subduction subduction nom f s 0.04 0.00 0.04 0.00 +suber suber nom m s 0.01 0.00 0.01 0.00 +subi subir ver m s 30.13 53.72 10.22 10.81 par:pas; +subie subir ver f s 30.13 53.72 0.10 1.28 par:pas; +subies subir ver f p 30.13 53.72 0.40 2.50 par:pas; +sébile sébile nom f s 0.04 0.47 0.04 0.41 +sébiles sébile nom f p 0.04 0.47 0.01 0.07 +subir subir ver 30.13 53.72 10.64 21.28 inf; +subira subir ver 30.13 53.72 0.68 0.34 ind:fut:3s; +subirai subir ver 30.13 53.72 0.12 0.07 ind:fut:1s; +subiraient subir ver 30.13 53.72 0.04 0.14 cnd:pre:3p; +subirais subir ver 30.13 53.72 0.02 0.07 cnd:pre:1s; +subirait subir ver 30.13 53.72 0.04 0.14 cnd:pre:3s; +subiras subir ver 30.13 53.72 0.17 0.00 ind:fut:2s; +subirent subir ver 30.13 53.72 0.12 0.20 ind:pas:3p; +subirez subir ver 30.13 53.72 0.67 0.14 ind:fut:2p; +subirions subir ver 30.13 53.72 0.00 0.07 cnd:pre:1p; +subirons subir ver 30.13 53.72 0.16 0.20 ind:fut:1p; +subiront subir ver 30.13 53.72 0.26 0.27 ind:fut:3p; +subis subir ver m p 30.13 53.72 1.59 2.09 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +subissaient subir ver 30.13 53.72 0.01 1.35 ind:imp:3p; +subissais subir ver 30.13 53.72 0.04 1.01 ind:imp:1s;ind:imp:2s; +subissait subir ver 30.13 53.72 0.54 4.46 ind:imp:3s; +subissant subir ver 30.13 53.72 0.10 1.01 par:pre; +subisse subir ver 30.13 53.72 0.31 0.41 sub:pre:1s;sub:pre:3s; +subissent subir ver 30.13 53.72 1.13 1.82 ind:pre:3p; +subisses subir ver 30.13 53.72 0.05 0.00 sub:pre:2s; +subissez subir ver 30.13 53.72 0.25 0.20 imp:pre:2p;ind:pre:2p; +subissiez subir ver 30.13 53.72 0.04 0.00 ind:imp:2p; +subissions subir ver 30.13 53.72 0.10 0.07 ind:imp:1p; +subissons subir ver 30.13 53.72 0.26 0.27 imp:pre:1p;ind:pre:1p; +subit subir ver 30.13 53.72 2.07 3.38 ind:pre:3s; +subite subit adj f s 3.06 16.49 1.45 9.19 +subitement subitement adv 4.39 15.54 4.39 15.54 +subites subit adj f p 3.06 16.49 0.15 1.28 +subito subito adv_sup 0.05 1.15 0.05 1.15 +subits subit adj m p 3.06 16.49 0.12 1.01 +subjectif subjectif adj m s 1.25 1.49 0.65 0.54 +subjectifs subjectif adj m p 1.25 1.49 0.03 0.07 +subjective subjectif adj f s 1.25 1.49 0.43 0.61 +subjectivement subjectivement adv 0.01 0.00 0.01 0.00 +subjectives subjectif adj f p 1.25 1.49 0.14 0.27 +subjectivisme subjectivisme nom m s 0.00 0.20 0.00 0.20 +subjectiviste subjectiviste adj m s 0.00 0.07 0.00 0.07 +subjectivité subjectivité nom f s 0.44 0.20 0.44 0.20 +subjonctif subjonctif nom m s 0.22 1.55 0.22 1.35 +subjonctifs subjonctif nom m p 0.22 1.55 0.00 0.20 +subjugation subjugation nom f s 0.01 0.00 0.01 0.00 +subjugua subjuguer ver 0.88 5.27 0.01 0.34 ind:pas:3s; +subjuguaient subjuguer ver 0.88 5.27 0.00 0.07 ind:imp:3p; +subjuguait subjuguer ver 0.88 5.27 0.00 0.27 ind:imp:3s; +subjuguant subjuguer ver 0.88 5.27 0.00 0.07 par:pre; +subjugue subjuguer ver 0.88 5.27 0.04 0.47 imp:pre:2s;ind:pre:3s; +subjuguer subjuguer ver 0.88 5.27 0.28 0.81 inf; +subjuguerais subjuguer ver 0.88 5.27 0.00 0.07 cnd:pre:1s; +subjuguerait subjuguer ver 0.88 5.27 0.00 0.07 cnd:pre:3s; +subjugues subjuguer ver 0.88 5.27 0.01 0.07 ind:pre:2s; +subjugué subjuguer ver m s 0.88 5.27 0.35 1.55 par:pas; +subjuguée subjuguer ver f s 0.88 5.27 0.17 1.01 par:pas; +subjuguées subjuguer ver f p 0.88 5.27 0.00 0.20 par:pas; +subjugués subjuguer ver m p 0.88 5.27 0.03 0.27 par:pas; +sublimable sublimable adj f s 0.00 0.07 0.00 0.07 +sublimais sublimer ver 0.67 1.42 0.02 0.07 ind:imp:1s; +sublimait sublimer ver 0.67 1.42 0.00 0.14 ind:imp:3s; +sublimant sublimer ver 0.67 1.42 0.01 0.07 par:pre; +sublimation sublimation nom f s 0.04 0.41 0.03 0.27 +sublimations sublimation nom f p 0.04 0.41 0.01 0.14 +sublime sublime adj s 11.74 12.91 9.51 9.39 +sublimement sublimement adv 0.02 0.14 0.02 0.14 +subliment sublimer ver 0.67 1.42 0.00 0.07 ind:pre:3p; +sublimer sublimer ver 0.67 1.42 0.11 0.14 inf; +sublimes sublime adj p 11.74 12.91 2.23 3.51 +subliminal subliminal adj m s 0.53 0.07 0.14 0.00 +subliminale subliminal adj f s 0.53 0.07 0.05 0.07 +subliminales subliminal adj f p 0.53 0.07 0.06 0.00 +subliminaux subliminal adj m p 0.53 0.07 0.27 0.00 +sublimissime sublimissime adj f s 0.00 0.07 0.00 0.07 +sublimité sublimité nom f s 0.01 0.20 0.01 0.07 +sublimités sublimité nom f p 0.01 0.20 0.00 0.14 +sublimé sublimer ver m s 0.67 1.42 0.03 0.00 par:pas; +sublimée sublimer ver f s 0.67 1.42 0.03 0.27 par:pas; +sublimées sublimer ver f p 0.67 1.42 0.01 0.07 par:pas; +sublimés sublimer ver m p 0.67 1.42 0.01 0.07 par:pas; +sublingual sublingual adj m s 0.04 0.07 0.04 0.00 +sublinguaux sublingual adj m p 0.04 0.07 0.00 0.07 +sublunaire sublunaire adj s 0.00 0.20 0.00 0.14 +sublunaires sublunaire adj p 0.00 0.20 0.00 0.07 +submerge submerger ver 3.57 12.91 0.44 2.03 ind:pre:1s;ind:pre:3s; +submergea submerger ver 3.57 12.91 0.02 1.01 ind:pas:3s; +submergeaient submerger ver 3.57 12.91 0.01 0.14 ind:imp:3p; +submergeait submerger ver 3.57 12.91 0.14 1.15 ind:imp:3s; +submergeant submerger ver 3.57 12.91 0.01 0.34 par:pre; +submergent submerger ver 3.57 12.91 0.16 0.54 ind:pre:3p; +submergeât submerger ver 3.57 12.91 0.00 0.14 sub:imp:3s; +submerger submerger ver 3.57 12.91 0.53 1.22 inf; +submergera submerger ver 3.57 12.91 0.04 0.07 ind:fut:3s; +submergerait submerger ver 3.57 12.91 0.00 0.20 cnd:pre:3s; +submergèrent submerger ver 3.57 12.91 0.01 0.00 ind:pas:3p; +submergé submerger ver m s 3.57 12.91 1.23 2.97 par:pas; +submergée submerger ver f s 3.57 12.91 0.39 1.49 par:pas; +submergées submerger ver f p 3.57 12.91 0.14 0.47 par:pas; +submergés submerger ver m p 3.57 12.91 0.46 1.15 par:pas; +submersible submersible nom m s 0.19 0.27 0.17 0.00 +submersibles submersible nom m p 0.19 0.27 0.02 0.27 +submersion submersion nom f s 0.05 0.00 0.05 0.00 +subodora subodorer ver 0.30 2.50 0.00 0.07 ind:pas:3s; +subodorais subodorer ver 0.30 2.50 0.00 0.27 ind:imp:1s; +subodorait subodorer ver 0.30 2.50 0.01 0.41 ind:imp:3s; +subodorant subodorer ver 0.30 2.50 0.01 0.07 par:pre; +subodore subodorer ver 0.30 2.50 0.16 0.88 ind:pre:1s;ind:pre:3s; +subodorent subodorer ver 0.30 2.50 0.00 0.07 ind:pre:3p; +subodorer subodorer ver 0.30 2.50 0.11 0.14 inf; +subodorèrent subodorer ver 0.30 2.50 0.00 0.07 ind:pas:3p; +subodoré subodorer ver m s 0.30 2.50 0.01 0.47 par:pas; +subodorés subodorer ver m p 0.30 2.50 0.00 0.07 par:pas; +suborbitale suborbital adj f s 0.01 0.00 0.01 0.00 +subordination subordination nom f s 0.01 1.55 0.01 1.55 +subordonnaient subordonner ver 0.31 2.23 0.00 0.07 ind:imp:3p; +subordonnais subordonner ver 0.31 2.23 0.00 0.07 ind:imp:1s; +subordonnant subordonner ver 0.31 2.23 0.00 0.07 par:pre; +subordonne subordonner ver 0.31 2.23 0.00 0.14 ind:pre:3s;sub:pre:1s; +subordonner subordonner ver 0.31 2.23 0.14 0.68 inf; +subordonné subordonné nom m s 0.81 2.77 0.14 1.01 +subordonnée subordonné adj f s 0.24 0.47 0.16 0.00 +subordonnées subordonner ver f p 0.31 2.23 0.00 0.34 par:pas; +subordonnés subordonné nom m p 0.81 2.77 0.67 1.76 +subornation subornation nom f s 0.09 0.07 0.09 0.07 +suborner suborner ver 0.21 0.07 0.04 0.00 inf; +suborneur suborneur nom m s 0.01 0.41 0.01 0.34 +suborneurs suborneur nom m p 0.01 0.41 0.00 0.07 +suborné suborner ver m s 0.21 0.07 0.03 0.00 par:pas; +subornée suborner ver f s 0.21 0.07 0.00 0.07 par:pas; +subornés suborner ver m p 0.21 0.07 0.14 0.00 par:pas; +séborrhée séborrhée nom f s 0.00 0.07 0.00 0.07 +séborrhéique séborrhéique adj f s 0.01 0.00 0.01 0.00 +subreptice subreptice adj s 0.02 0.61 0.02 0.41 +subrepticement subrepticement adv 0.15 2.64 0.15 2.64 +subreptices subreptice adj m p 0.02 0.61 0.00 0.20 +subrogation subrogation nom f s 0.02 0.00 0.02 0.00 +subrogé subroger ver m s 0.00 0.07 0.00 0.07 par:pas; +subrécargue subrécargue nom m s 0.01 0.07 0.01 0.07 +subsaharienne subsaharien adj f s 0.00 0.07 0.00 0.07 +subside subside nom m s 0.51 0.88 0.28 0.00 +subsides subside nom m p 0.51 0.88 0.23 0.88 +subsidiaire subsidiaire adj s 0.11 0.20 0.06 0.14 +subsidiairement subsidiairement adv 0.00 0.07 0.00 0.07 +subsidiaires subsidiaire adj p 0.11 0.20 0.04 0.07 +subsista subsister ver 2.08 17.09 0.01 0.34 ind:pas:3s; +subsistaient subsister ver 2.08 17.09 0.12 1.62 ind:imp:3p; +subsistait subsister ver 2.08 17.09 0.04 3.78 ind:imp:3s; +subsistance subsistance nom f s 0.67 1.55 0.64 1.42 +subsistances subsistance nom f p 0.67 1.55 0.02 0.14 +subsistant subsistant adj m s 0.01 0.20 0.01 0.07 +subsistantes subsistant adj f p 0.01 0.20 0.00 0.07 +subsistants subsistant adj m p 0.01 0.20 0.00 0.07 +subsiste subsister ver 2.08 17.09 1.17 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +subsistent subsister ver 2.08 17.09 0.05 1.82 ind:pre:3p; +subsister subsister ver 2.08 17.09 0.45 3.92 inf; +subsistera subsister ver 2.08 17.09 0.04 0.07 ind:fut:3s; +subsisteraient subsister ver 2.08 17.09 0.00 0.07 cnd:pre:3p; +subsisterait subsister ver 2.08 17.09 0.00 0.34 cnd:pre:3s; +subsisteront subsister ver 2.08 17.09 0.03 0.07 ind:fut:3p; +subsistions subsister ver 2.08 17.09 0.00 0.07 ind:imp:1p; +subsistâmes subsister ver 2.08 17.09 0.01 0.00 ind:pas:1p; +subsistons subsister ver 2.08 17.09 0.01 0.00 ind:pre:1p; +subsistât subsister ver 2.08 17.09 0.00 0.20 sub:imp:3s; +subsistèrent subsister ver 2.08 17.09 0.00 0.07 ind:pas:3p; +subsisté subsister ver m s 2.08 17.09 0.14 0.20 par:pas; +subsonique subsonique adj s 0.19 0.00 0.19 0.00 +substance substance nom f s 8.87 14.39 6.60 12.84 +substances substance nom f p 8.87 14.39 2.27 1.55 +substantiel substantiel adj m s 1.08 2.43 0.46 0.41 +substantielle substantiel adj f s 1.08 2.43 0.45 0.81 +substantiellement substantiellement adv 0.04 0.27 0.04 0.27 +substantielles substantiel adj f p 1.08 2.43 0.08 0.68 +substantiels substantiel adj m p 1.08 2.43 0.10 0.54 +substantif substantif nom m s 0.01 0.34 0.01 0.20 +substantifique substantifique adj f s 0.00 0.20 0.00 0.20 +substantifs substantif nom m p 0.01 0.34 0.00 0.14 +substitua substituer ver 1.23 8.11 0.00 0.61 ind:pas:3s; +substituai substituer ver 1.23 8.11 0.01 0.07 ind:pas:1s; +substituaient substituer ver 1.23 8.11 0.01 0.41 ind:imp:3p; +substituait substituer ver 1.23 8.11 0.11 0.81 ind:imp:3s; +substituant substituer ver 1.23 8.11 0.05 0.41 par:pre; +substitue substituer ver 1.23 8.11 0.03 0.88 ind:pre:3s; +substituent substituer ver 1.23 8.11 0.01 0.07 ind:pre:3p; +substituer substituer ver 1.23 8.11 0.58 3.45 inf; +substituerait substituer ver 1.23 8.11 0.00 0.07 cnd:pre:3s; +substituerez substituer ver 1.23 8.11 0.01 0.00 ind:fut:2p; +substituez substituer ver 1.23 8.11 0.06 0.07 imp:pre:2p;ind:pre:2p; +substituons substituer ver 1.23 8.11 0.00 0.14 imp:pre:1p; +substitut substitut nom m s 2.37 2.70 2.05 2.09 +substitution substitution nom f s 0.69 2.30 0.67 2.03 +substitutions substitution nom f p 0.69 2.30 0.02 0.27 +substituts substitut nom m p 2.37 2.70 0.32 0.61 +substitué substituer ver m s 1.23 8.11 0.34 0.68 par:pas; +substituées substituer ver f p 1.23 8.11 0.00 0.14 par:pas; +substitués substituer ver m p 1.23 8.11 0.00 0.34 par:pas; +substrat substrat nom m s 0.09 0.00 0.09 0.00 +substratum substratum nom m s 0.00 0.27 0.00 0.27 +substruction substruction nom f s 0.00 0.07 0.00 0.07 +subséquemment subséquemment adv 0.23 0.20 0.23 0.20 +subséquent subséquent adj m s 0.09 0.34 0.02 0.00 +subséquente subséquent adj f s 0.09 0.34 0.04 0.14 +subséquentes subséquent adj f p 0.09 0.34 0.01 0.14 +subséquents subséquent adj m p 0.09 0.34 0.02 0.07 +subterfuge subterfuge nom m s 0.80 1.35 0.48 0.88 +subterfuges subterfuge nom m p 0.80 1.35 0.32 0.47 +subtil subtil adj m s 7.54 22.91 4.54 10.88 +subtile subtil adj f s 7.54 22.91 2.12 5.68 +subtilement subtilement adv 0.44 2.30 0.44 2.30 +subtiles subtil adj f p 7.54 22.91 0.37 3.11 +subtilisa subtiliser ver 0.52 2.16 0.00 0.27 ind:pas:3s; +subtilisait subtiliser ver 0.52 2.16 0.00 0.07 ind:imp:3s; +subtilisant subtiliser ver 0.52 2.16 0.02 0.07 par:pre; +subtilisassent subtiliser ver 0.52 2.16 0.00 0.07 sub:imp:3p; +subtilise subtiliser ver 0.52 2.16 0.00 0.14 ind:pre:1s;ind:pre:3s; +subtiliser subtiliser ver 0.52 2.16 0.16 0.41 inf; +subtilisera subtiliser ver 0.52 2.16 0.00 0.07 ind:fut:3s; +subtilisé subtiliser ver m s 0.52 2.16 0.28 0.54 par:pas; +subtilisée subtiliser ver f s 0.52 2.16 0.02 0.20 par:pas; +subtilisées subtiliser ver f p 0.52 2.16 0.04 0.07 par:pas; +subtilisés subtiliser ver m p 0.52 2.16 0.00 0.27 par:pas; +subtilité subtilité nom f s 0.97 5.20 0.55 3.45 +subtilités subtilité nom f p 0.97 5.20 0.41 1.76 +subtils subtil adj m p 7.54 22.91 0.52 3.24 +subtropical subtropical adj m s 0.04 0.14 0.00 0.07 +subtropicale subtropical adj f s 0.04 0.14 0.03 0.00 +subtropicales subtropical adj f p 0.04 0.14 0.01 0.07 +sébum sébum nom m s 0.00 0.07 0.00 0.07 +suburbain suburbain adj m s 0.05 0.34 0.01 0.07 +suburbaine suburbain adj f s 0.05 0.34 0.01 0.00 +suburbaines suburbain adj f p 0.05 0.34 0.02 0.14 +suburbains suburbain adj m p 0.05 0.34 0.00 0.14 +subvenant subvenir ver 1.52 1.08 0.03 0.00 par:pre; +subvenez subvenir ver 1.52 1.08 0.02 0.00 ind:pre:2p; +subvenir subvenir ver 1.52 1.08 1.30 1.01 inf; +subvention subvention nom f s 3.00 0.88 1.66 0.54 +subventionnant subventionner ver 0.79 0.68 0.01 0.07 par:pre; +subventionne subventionner ver 0.79 0.68 0.30 0.00 imp:pre:2s;ind:pre:3s; +subventionnent subventionner ver 0.79 0.68 0.05 0.00 ind:pre:3p; +subventionner subventionner ver 0.79 0.68 0.24 0.20 inf; +subventionnera subventionner ver 0.79 0.68 0.00 0.07 ind:fut:3s; +subventionné subventionner ver m s 0.79 0.68 0.11 0.20 par:pas; +subventionnée subventionné adj f s 0.10 0.14 0.07 0.00 +subventionnées subventionné adj f p 0.10 0.14 0.00 0.07 +subventionnés subventionner ver m p 0.79 0.68 0.04 0.14 par:pas; +subventions subvention nom f p 3.00 0.88 1.34 0.34 +subvenu subvenir ver m s 1.52 1.08 0.07 0.00 par:pas; +subversif subversif adj m s 3.61 2.43 1.30 0.54 +subversifs subversif adj m p 3.61 2.43 0.97 0.47 +subversion subversion nom f s 0.66 0.95 0.56 0.95 +subversions subversion nom f p 0.66 0.95 0.10 0.00 +subversive subversif adj f s 3.61 2.43 0.41 0.54 +subversives subversif adj f p 3.61 2.43 0.94 0.88 +subvertir subvertir ver 0.00 0.07 0.00 0.07 inf; +subviendra subvenir ver 1.52 1.08 0.00 0.07 ind:fut:3s; +subviendrait subvenir ver 1.52 1.08 0.01 0.00 cnd:pre:3s; +subviens subvenir ver 1.52 1.08 0.03 0.00 ind:pre:1s; +subvient subvenir ver 1.52 1.08 0.06 0.00 ind:pre:3s; +suc suc nom m s 0.61 3.18 0.53 1.89 +sécateur sécateur nom m s 0.17 1.49 0.15 1.35 +sécateurs sécateur nom m p 0.17 1.49 0.03 0.14 +successeur successeur nom m s 2.80 6.96 2.59 5.47 +successeurs successeur nom m p 2.80 6.96 0.21 1.49 +successibles successible adj p 0.00 0.07 0.00 0.07 +successif successif adj m s 0.69 18.99 0.00 0.20 +successifs successif adj m p 0.69 18.99 0.26 8.78 +succession succession nom f s 2.92 11.35 2.72 11.01 +successions succession nom f p 2.92 11.35 0.20 0.34 +successive successif adj f s 0.69 18.99 0.00 0.41 +successivement successivement adv 0.32 12.57 0.32 12.57 +successives successif adj f p 0.69 18.99 0.43 9.59 +successoral successoral adj m s 0.03 0.00 0.02 0.00 +successorale successoral adj f s 0.03 0.00 0.01 0.00 +succinct succinct adj m s 0.20 0.88 0.12 0.54 +succincte succinct adj f s 0.20 0.88 0.06 0.14 +succinctement succinctement adv 0.07 0.41 0.07 0.41 +succinctes succinct adj f p 0.20 0.88 0.02 0.20 +succion succion nom f s 0.33 1.69 0.33 1.49 +succions succion nom f p 0.33 1.69 0.00 0.20 +succomba succomber ver 4.79 9.66 0.14 0.88 ind:pas:3s; +succombai succomber ver 4.79 9.66 0.00 0.20 ind:pas:1s; +succombaient succomber ver 4.79 9.66 0.00 0.34 ind:imp:3p; +succombais succomber ver 4.79 9.66 0.00 0.14 ind:imp:1s; +succombait succomber ver 4.79 9.66 0.02 0.61 ind:imp:3s; +succombant succomber ver 4.79 9.66 0.17 0.34 par:pre; +succombe succomber ver 4.79 9.66 1.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +succombent succomber ver 4.79 9.66 0.32 0.68 ind:pre:3p; +succomber succomber ver 4.79 9.66 1.15 2.43 inf; +succombera succomber ver 4.79 9.66 0.13 0.20 ind:fut:3s; +succomberai succomber ver 4.79 9.66 0.01 0.07 ind:fut:1s; +succomberaient succomber ver 4.79 9.66 0.00 0.07 cnd:pre:3p; +succomberais succomber ver 4.79 9.66 0.01 0.00 cnd:pre:1s; +succomberait succomber ver 4.79 9.66 0.03 0.07 cnd:pre:3s; +succomberont succomber ver 4.79 9.66 0.31 0.07 ind:fut:3p; +succombes succomber ver 4.79 9.66 0.01 0.00 ind:pre:2s; +succombez succomber ver 4.79 9.66 0.03 0.00 imp:pre:2p;ind:pre:2p; +succombions succomber ver 4.79 9.66 0.00 0.07 ind:imp:1p; +succombèrent succomber ver 4.79 9.66 0.00 0.14 ind:pas:3p; +succombé succomber ver m s 4.79 9.66 1.24 2.43 par:pas; +succède succéder ver 4.25 33.78 0.60 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +succèdent succéder ver 4.25 33.78 0.32 5.07 ind:pre:3p; +succès succès nom m 39.58 53.72 39.58 53.72 +succube succube nom m s 0.46 0.34 0.39 0.27 +succubes succube nom m p 0.46 0.34 0.07 0.07 +succéda succéder ver 4.25 33.78 0.16 1.82 ind:pas:3s; +succédaient succéder ver 4.25 33.78 0.06 5.74 ind:imp:3p; +succédait succéder ver 4.25 33.78 0.10 2.64 ind:imp:3s; +succédant succéder ver 4.25 33.78 0.00 2.77 par:pre; +succédané succédané nom m s 0.04 0.95 0.03 0.68 +succédanés succédané nom m p 0.04 0.95 0.01 0.27 +succédassent succéder ver 4.25 33.78 0.00 0.07 sub:imp:3p; +succéder succéder ver 4.25 33.78 1.78 4.53 inf; +succédera succéder ver 4.25 33.78 0.36 0.54 ind:fut:3s; +succéderai succéder ver 4.25 33.78 0.01 0.00 ind:fut:1s; +succéderaient succéder ver 4.25 33.78 0.00 0.07 cnd:pre:3p; +succéderait succéder ver 4.25 33.78 0.16 0.47 cnd:pre:3s; +succéderas succéder ver 4.25 33.78 0.01 0.00 ind:fut:2s; +succéderez succéder ver 4.25 33.78 0.02 0.00 ind:fut:2p; +succéderiez succéder ver 4.25 33.78 0.01 0.00 cnd:pre:2p; +succéderont succéder ver 4.25 33.78 0.21 0.20 ind:fut:3p; +succédions succéder ver 4.25 33.78 0.00 0.07 ind:imp:1p; +succédâmes succéder ver 4.25 33.78 0.00 0.07 ind:pas:1p; +succédât succéder ver 4.25 33.78 0.00 0.07 sub:imp:3s; +succédèrent succéder ver 4.25 33.78 0.02 2.50 ind:pas:3p; +succédé succéder ver m s 4.25 33.78 0.41 4.73 par:pas; +succédées succéder ver f p 4.25 33.78 0.02 0.07 par:pas; +succulence succulence nom f s 0.01 0.68 0.01 0.68 +succulent succulent adj m s 1.46 2.77 0.71 1.15 +succulente succulent adj f s 1.46 2.77 0.51 0.61 +succulentes succulent adj f p 1.46 2.77 0.14 0.47 +succulents succulent adj m p 1.46 2.77 0.09 0.54 +succursale succursale nom f s 1.17 1.42 1.05 1.15 +succursales succursale nom f p 1.17 1.42 0.12 0.27 +suce sucer ver 23.45 18.51 7.84 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +sucent sucer ver 23.45 18.51 0.51 0.27 ind:pre:3p; +sucer sucer ver 23.45 18.51 9.68 4.86 ind:imp:3s;ind:pre:2p;inf; +sucera sucer ver 23.45 18.51 0.22 0.07 ind:fut:3s; +sucerai sucer ver 23.45 18.51 0.10 0.27 ind:fut:1s; +suceraient sucer ver 23.45 18.51 0.02 0.07 cnd:pre:3p; +sucerais sucer ver 23.45 18.51 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +sucerait sucer ver 23.45 18.51 0.07 0.14 cnd:pre:3s; +suces sucer ver 23.45 18.51 0.94 0.07 ind:pre:2s;sub:pre:2s; +sécession sécession nom f s 0.26 0.74 0.26 0.74 +sécessionniste sécessionniste nom s 0.06 0.00 0.02 0.00 +sécessionnistes sécessionniste nom p 0.06 0.00 0.04 0.00 +sucette sucette nom f s 2.29 2.64 1.27 1.49 +sucettes sucette nom f p 2.29 2.64 1.02 1.15 +suceur suceur nom m s 2.15 0.54 0.96 0.07 +suceurs suceur nom m p 2.15 0.54 0.65 0.14 +suceuse suceur nom f s 2.15 0.54 0.55 0.34 +suceuses suceuse nom f p 0.73 0.00 0.73 0.00 +sucez sucer ver 23.45 18.51 0.39 0.07 imp:pre:2p;ind:pre:2p; +sécha sécher ver 19.49 40.41 0.01 0.61 ind:pas:3s; +séchage séchage nom m s 0.17 0.41 0.17 0.41 +séchai sécher ver 19.49 40.41 0.00 0.14 ind:pas:1s; +séchaient sécher ver 19.49 40.41 0.05 3.24 ind:imp:3p; +séchais sécher ver 19.49 40.41 0.35 0.20 ind:imp:1s;ind:imp:2s; +séchait sécher ver 19.49 40.41 0.54 2.57 ind:imp:3s; +séchant sécher ver 19.49 40.41 0.15 1.42 par:pre; +séchard séchard nom m s 0.01 0.14 0.01 0.14 +sécher sécher ver 19.49 40.41 5.84 10.27 inf; +séchera sécher ver 19.49 40.41 0.05 0.41 ind:fut:3s; +sécherai sécher ver 19.49 40.41 0.13 0.00 ind:fut:1s; +sécheraient sécher ver 19.49 40.41 0.00 0.07 cnd:pre:3p; +sécherais sécher ver 19.49 40.41 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +sécherait sécher ver 19.49 40.41 0.02 0.20 cnd:pre:3s; +sécheresse sécheresse nom f s 2.63 11.15 2.30 10.81 +sécheresses sécheresse nom f p 2.63 11.15 0.33 0.34 +sécherez sécher ver 19.49 40.41 0.01 0.00 ind:fut:2p; +sécherie sécherie nom f s 0.03 0.20 0.01 0.14 +sécheries sécherie nom f p 0.03 0.20 0.01 0.07 +sécheront sécher ver 19.49 40.41 0.01 0.07 ind:fut:3p; +sécheuse sécheur nom f s 0.05 0.00 0.05 0.00 +séchez sécher ver 19.49 40.41 0.79 0.20 imp:pre:2p;ind:pre:2p; +séchiez sécher ver 19.49 40.41 0.03 0.00 ind:imp:2p; +séchions sécher ver 19.49 40.41 0.01 0.07 ind:imp:1p; +séchoir séchoir nom m s 0.95 1.28 0.91 1.08 +séchoirs séchoir nom m p 0.95 1.28 0.04 0.20 +séchons sécher ver 19.49 40.41 0.11 0.00 imp:pre:1p;ind:pre:1p; +séchât sécher ver 19.49 40.41 0.00 0.07 sub:imp:3s; +séchèrent sécher ver 19.49 40.41 0.00 0.47 ind:pas:3p; +séché sécher ver m s 19.49 40.41 3.68 5.34 par:pas; +séchée sécher ver f s 19.49 40.41 1.09 3.11 par:pas; +séchées sécher ver f p 19.49 40.41 0.56 2.23 par:pas; +séchés sécher ver m p 19.49 40.41 0.16 1.42 par:pas; +sécolle sécolle pro_per 0.00 0.14 0.00 0.14 +sécot sécot nom m s 0.00 0.07 0.00 0.07 +sucra sucrer ver 1.90 4.73 0.00 0.14 ind:pas:3s; +sucrait sucrer ver 1.90 4.73 0.05 0.07 ind:imp:3s; +sucrant sucrer ver 1.90 4.73 0.00 0.07 par:pre; +sucre sucre nom m s 32.01 32.77 30.57 30.54 +sucrent sucrer ver 1.90 4.73 0.05 0.07 ind:pre:3p; +sucrer sucrer ver 1.90 4.73 0.38 0.74 inf; +sucrerait sucrer ver 1.90 4.73 0.00 0.14 cnd:pre:3s; +sucrerie sucrerie nom f s 2.82 3.58 0.25 0.88 +sucreries sucrerie nom f p 2.82 3.58 2.57 2.70 +sucres sucre nom m p 32.01 32.77 1.44 2.23 +sucrette sucrette nom f s 0.52 0.14 0.04 0.00 +sucrettes sucrette nom f p 0.52 0.14 0.48 0.14 +sucrier sucrier nom m s 0.58 1.08 0.51 0.95 +sucriers sucrier nom m p 0.58 1.08 0.05 0.14 +sucrins sucrin adj m p 0.00 0.07 0.00 0.07 +sucrière sucrier adj f s 1.79 0.20 1.47 0.07 +sucrières sucrier adj f p 1.79 0.20 0.32 0.00 +sécrète sécréter ver 0.85 3.24 0.41 0.68 ind:pre:3s; +sécrètent sécréter ver 0.85 3.24 0.12 0.27 ind:pre:3p; +sécrètes sécréter ver 0.85 3.24 0.01 0.00 ind:pre:2s; +sucré sucré adj m s 3.69 9.05 2.19 4.39 +sucrée sucré adj f s 3.69 9.05 0.96 2.77 +sucrées sucré adj f p 3.69 9.05 0.42 0.88 +sucrés sucré adj m p 3.69 9.05 0.13 1.01 +sécrétaient sécréter ver 0.85 3.24 0.00 0.07 ind:imp:3p; +sécrétais sécréter ver 0.85 3.24 0.00 0.07 ind:imp:1s; +sécrétait sécréter ver 0.85 3.24 0.00 0.47 ind:imp:3s; +sécrétant sécréter ver 0.85 3.24 0.00 0.27 par:pre; +sécréter sécréter ver 0.85 3.24 0.02 0.47 inf; +sécréteur sécréteur nom m s 0.02 0.00 0.01 0.00 +sécréteurs sécréteur nom m p 0.02 0.00 0.01 0.00 +sécrétez sécréter ver 0.85 3.24 0.00 0.07 ind:pre:2p; +sécrétine sécrétine nom f s 0.01 0.00 0.01 0.00 +sécrétion sécrétion nom f s 0.83 1.49 0.17 0.41 +sécrétions sécrétion nom f p 0.83 1.49 0.66 1.08 +sécrétât sécréter ver 0.85 3.24 0.00 0.07 sub:imp:3s; +sécrété sécréter ver m s 0.85 3.24 0.15 0.41 par:pas; +sécrétée sécréter ver f s 0.85 3.24 0.14 0.27 par:pas; +sécrétés sécréter ver m p 0.85 3.24 0.00 0.14 par:pas; +sucs suc nom m p 0.61 3.18 0.08 1.28 +sucèrent sucer ver 23.45 18.51 0.00 0.07 ind:pas:3p; +sécu sécu nom f s 1.50 0.74 1.50 0.74 +sucé sucer ver m s 23.45 18.51 2.34 1.76 par:pas; +sucée sucer ver f s 23.45 18.51 0.12 0.27 par:pas; +sucées sucer ver f p 23.45 18.51 0.04 0.07 par:pas; +séculaire séculaire adj s 0.26 4.73 0.12 3.04 +séculairement séculairement adv 0.00 0.14 0.00 0.14 +séculaires séculaire adj p 0.26 4.73 0.14 1.69 +séculariser séculariser ver 0.01 0.07 0.01 0.00 inf; +sécularisées séculariser ver f p 0.01 0.07 0.00 0.07 par:pas; +séculier séculier adj m s 0.02 1.49 0.00 1.15 +séculiers séculier adj m p 0.02 1.49 0.00 0.07 +séculière séculier adj f s 0.02 1.49 0.02 0.27 +sécurisait sécuriser ver 6.48 0.34 0.00 0.07 ind:imp:3s; +sécurisant sécurisant adj m s 0.37 0.20 0.34 0.00 +sécurisante sécurisant adj f s 0.37 0.20 0.04 0.20 +sécurisation sécurisation nom f s 0.01 0.00 0.01 0.00 +sécuriser sécuriser ver 6.48 0.34 1.09 0.00 inf; +sécurisez sécuriser ver 6.48 0.34 0.79 0.00 imp:pre:2p;ind:pre:2p; +sécurisé sécuriser ver m s 6.48 0.34 2.16 0.07 par:pas; +sécurisée sécuriser ver f s 6.48 0.34 1.94 0.07 par:pas; +sécurisées sécuriser ver f p 6.48 0.34 0.20 0.00 par:pas; +sécurisés sécuriser ver m p 6.48 0.34 0.28 0.07 par:pas; +sécurit sécurit nom m s 0.15 0.14 0.15 0.14 +sécuritaire sécuritaire adj s 0.23 0.00 0.23 0.00 +sécurité sécurité nom f s 113.17 39.12 112.69 38.92 +sécurités sécurité nom f p 113.17 39.12 0.48 0.20 +sucés sucer ver m p 23.45 18.51 0.06 0.07 par:pas; +sud_africain sud_africain nom m s 0.28 0.07 0.15 0.00 +sud_africain sud_africain adj f s 0.29 0.47 0.07 0.34 +sud_africain sud_africain adj f p 0.29 0.47 0.04 0.00 +sud_africain sud_africain nom m p 0.28 0.07 0.10 0.07 +sud_américain sud_américain adj m s 0.77 1.55 0.29 0.41 +sud_américain sud_américain adj f s 0.77 1.55 0.35 0.54 +sud_américain sud_américain adj f p 0.77 1.55 0.01 0.20 +sud_américain sud_américain adj m p 0.77 1.55 0.11 0.41 +sud_coréen sud_coréen adj m s 0.21 0.00 0.01 0.00 +sud_coréen sud_coréen nom m s 0.01 0.00 0.01 0.00 +sud_coréen sud_coréen adj f s 0.21 0.00 0.15 0.00 +sud_coréen sud_coréen adj f p 0.21 0.00 0.02 0.00 +sud_coréen sud_coréen adj m p 0.21 0.00 0.02 0.00 +sud_est sud_est nom m 3.30 2.30 3.30 2.30 +sud_ouest sud_ouest nom m 2.10 3.51 2.10 3.51 +sud_sud_est sud_sud_est nom m s 0.03 0.00 0.03 0.00 +sud_vietnamien sud_vietnamien adj m s 0.10 0.07 0.05 0.00 +sud_vietnamien sud_vietnamien adj f s 0.10 0.07 0.03 0.00 +sud_vietnamien sud_vietnamien nom m p 0.12 0.20 0.11 0.20 +sud sud nom m s 23.95 28.38 23.95 28.38 +sédatif sédatif nom m s 3.93 0.27 2.80 0.00 +sédatifs sédatif nom m p 3.93 0.27 1.13 0.27 +sédation sédation nom f s 0.08 0.00 0.08 0.00 +sudation sudation nom f s 0.14 0.07 0.14 0.07 +sédative sédatif adj f s 0.27 0.34 0.00 0.20 +sédatives sédatif adj f p 0.27 0.34 0.02 0.07 +sudatoires sudatoire adj f p 0.00 0.07 0.00 0.07 +sédentaire sédentaire adj s 0.23 2.30 0.21 1.76 +sédentaires sédentaire nom p 0.05 1.55 0.05 0.81 +sédentarisaient sédentariser ver 0.01 0.14 0.00 0.07 ind:imp:3p; +sédentarisation sédentarisation nom f s 0.00 0.07 0.00 0.07 +sédentarise sédentariser ver 0.01 0.14 0.01 0.00 ind:pre:3s; +sédentariser sédentariser ver 0.01 0.14 0.00 0.07 inf; +sédentarisme sédentarisme nom m s 0.00 0.07 0.00 0.07 +sédentarité sédentarité nom f s 0.00 0.27 0.00 0.27 +sédiment sédiment nom m s 0.14 0.61 0.03 0.14 +sédimentaire sédimentaire adj s 0.05 0.20 0.05 0.07 +sédimentaires sédimentaire adj f p 0.05 0.20 0.00 0.14 +sédimentation sédimentation nom f s 0.09 0.20 0.09 0.14 +sédimentations sédimentation nom f p 0.09 0.20 0.00 0.07 +sédimente sédimenter ver 0.00 0.14 0.00 0.07 ind:pre:3s; +sédiments sédiment nom m p 0.14 0.61 0.11 0.47 +sédimentée sédimenter ver f s 0.00 0.14 0.00 0.07 par:pas; +sudiste sudiste nom s 2.82 0.68 1.94 0.47 +sudistes sudiste nom p 2.82 0.68 0.88 0.20 +séditieuse séditieux adj f s 0.35 0.74 0.03 0.14 +séditieuses séditieux adj f p 0.35 0.74 0.00 0.07 +séditieux séditieux adj m 0.35 0.74 0.32 0.54 +sédition sédition nom f s 1.28 0.54 1.28 0.54 +sudoripare sudoripare adj s 0.14 0.14 0.02 0.07 +sudoripares sudoripare adj f p 0.14 0.14 0.13 0.07 +sudète sudète adj s 0.00 0.14 0.00 0.07 +sudètes sudète adj m p 0.00 0.14 0.00 0.07 +séducteur séducteur nom m s 2.34 4.86 1.97 3.72 +séducteurs séducteur nom m p 2.34 4.86 0.20 0.68 +séduction séduction nom f s 2.54 9.39 2.50 7.97 +séductions séduction nom f p 2.54 9.39 0.04 1.42 +séductrice séducteur nom f s 2.34 4.86 0.16 0.41 +séductrices séducteur adj f p 0.31 2.36 0.01 0.34 +séduira séduire ver 16.48 22.23 0.16 0.07 ind:fut:3s; +séduirait séduire ver 16.48 22.23 0.16 0.00 cnd:pre:3s; +séduiras séduire ver 16.48 22.23 0.12 0.00 ind:fut:2s; +séduire séduire ver 16.48 22.23 7.64 9.59 inf; +séduis séduire ver 16.48 22.23 0.70 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +séduisaient séduire ver 16.48 22.23 0.00 0.14 ind:imp:3p; +séduisait séduire ver 16.48 22.23 0.19 1.42 ind:imp:3s; +séduisant séduisant adj m s 9.13 8.18 4.68 3.85 +séduisante séduisant adj f s 9.13 8.18 3.71 2.91 +séduisantes séduisant adj f p 9.13 8.18 0.39 0.54 +séduisants séduisant adj m p 9.13 8.18 0.35 0.88 +séduise séduire ver 16.48 22.23 0.17 0.20 sub:pre:1s;sub:pre:3s; +séduisent séduire ver 16.48 22.23 0.10 0.41 ind:pre:3p; +séduises séduire ver 16.48 22.23 0.02 0.07 sub:pre:2s; +séduisez séduire ver 16.48 22.23 0.16 0.00 imp:pre:2p;ind:pre:2p; +séduisirent séduire ver 16.48 22.23 0.10 0.14 ind:pas:3p; +séduisit séduire ver 16.48 22.23 0.03 0.41 ind:pas:3s; +séduit séduire ver m s 16.48 22.23 5.09 5.95 ind:pre:3s;par:pas; +séduite séduire ver f s 16.48 22.23 1.09 2.30 par:pas; +séduites séduit adj f p 1.08 1.89 0.27 0.14 +séduits séduire ver m p 16.48 22.23 0.08 0.41 par:pas; +sue suer ver 7.28 10.34 0.85 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +suent suer ver 7.28 10.34 0.23 0.34 ind:pre:3p; +suer suer ver 7.28 10.34 2.72 2.77 inf; +suerai suer ver 7.28 10.34 0.03 0.00 ind:fut:1s; +suerais suer ver 7.28 10.34 0.01 0.00 cnd:pre:2s; +suerait suer ver 7.28 10.34 0.00 0.07 cnd:pre:3s; +suerte suerte nom f s 0.22 0.00 0.22 0.00 +sues suer ver 7.28 10.34 0.41 0.07 ind:pre:2s; +sueur sueur nom f s 11.71 60.34 10.27 57.30 +sueurs sueur nom f p 11.71 60.34 1.45 3.04 +suez suer ver 7.28 10.34 0.35 0.07 imp:pre:2p;ind:pre:2p; +séfarade séfarade adj m s 0.01 0.00 0.01 0.00 +séfarade séfarade nom s 0.01 0.00 0.01 0.00 +suffît suffire ver 232.08 159.39 0.64 0.14 sub:imp:3s; +suffi suffire ver m s 232.08 159.39 4.52 17.97 par:pas; +sufficit sufficit adv 0.00 0.07 0.00 0.07 +suffira suffire ver 232.08 159.39 13.85 4.39 ind:fut:3s; +suffirai suffire ver 232.08 159.39 0.02 0.00 ind:fut:1s; +suffiraient suffire ver 232.08 159.39 0.63 1.82 cnd:pre:3p; +suffirais suffire ver 232.08 159.39 0.02 0.00 cnd:pre:1s; +suffirait suffire ver 232.08 159.39 4.81 11.89 cnd:pre:3s; +suffire suffire ver 232.08 159.39 5.24 4.86 inf; +suffirent suffire ver 232.08 159.39 0.05 0.95 ind:pas:3p; +suffiront suffire ver 232.08 159.39 2.23 0.68 ind:fut:3p; +suffis suffire ver 232.08 159.39 0.53 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +suffisaient suffire ver 232.08 159.39 0.73 4.93 ind:imp:3p; +suffisais suffire ver 232.08 159.39 0.01 0.27 ind:imp:1s; +suffisait suffire ver 232.08 159.39 6.56 44.66 ind:imp:3s; +suffisamment suffisamment adv 18.30 20.07 18.30 20.07 +suffisance suffisance nom f s 0.90 3.99 0.90 3.92 +suffisances suffisance nom f p 0.90 3.99 0.00 0.07 +suffisant suffisant adj m s 17.56 18.99 12.95 10.00 +suffisante suffisant adj f s 17.56 18.99 2.98 5.61 +suffisantes suffisant adj f p 17.56 18.99 0.93 2.03 +suffisants suffisant adj m p 17.56 18.99 0.70 1.35 +suffise suffire ver 232.08 159.39 0.80 1.15 sub:pre:3s; +suffisent suffire ver 232.08 159.39 2.91 4.32 ind:pre:3p; +suffisez suffire ver 232.08 159.39 0.01 0.14 ind:pre:2p; +suffisions suffire ver 232.08 159.39 0.11 0.14 ind:imp:1p; +suffisons suffire ver 232.08 159.39 0.02 0.00 ind:pre:1p; +suffit suffire ver 232.08 159.39 188.10 59.66 ind:pre:3s;ind:pas:3s; +suffixes suffixe nom m p 0.00 0.14 0.00 0.14 +suffocant suffocant adj m s 0.33 3.78 0.24 1.28 +suffocante suffocant adj f s 0.33 3.78 0.06 1.76 +suffocantes suffocant adj f p 0.33 3.78 0.01 0.27 +suffocants suffocant adj m p 0.33 3.78 0.01 0.47 +suffocation suffocation nom f s 0.42 1.35 0.42 1.01 +suffocations suffocation nom f p 0.42 1.35 0.00 0.34 +suffoqua suffoquer ver 2.48 11.76 0.00 0.47 ind:pas:3s; +suffoquai suffoquer ver 2.48 11.76 0.00 0.07 ind:pas:1s; +suffoquaient suffoquer ver 2.48 11.76 0.00 0.27 ind:imp:3p; +suffoquais suffoquer ver 2.48 11.76 0.15 0.47 ind:imp:1s; +suffoquait suffoquer ver 2.48 11.76 0.07 1.89 ind:imp:3s; +suffoquant suffoquer ver 2.48 11.76 0.01 1.55 par:pre; +suffoque suffoquer ver 2.48 11.76 0.93 1.69 ind:pre:1s;ind:pre:3s; +suffoquent suffoquer ver 2.48 11.76 0.02 0.14 ind:pre:3p; +suffoquer suffoquer ver 2.48 11.76 0.91 0.81 inf; +suffoquera suffoquer ver 2.48 11.76 0.03 0.00 ind:fut:3s; +suffoquerait suffoquer ver 2.48 11.76 0.01 0.00 cnd:pre:3s; +suffoqueront suffoquer ver 2.48 11.76 0.01 0.07 ind:fut:3p; +suffoquez suffoquer ver 2.48 11.76 0.03 0.07 imp:pre:2p;ind:pre:2p; +suffoquions suffoquer ver 2.48 11.76 0.00 0.20 ind:imp:1p; +suffoquons suffoquer ver 2.48 11.76 0.00 0.14 imp:pre:1p;ind:pre:1p; +suffoquèrent suffoquer ver 2.48 11.76 0.00 0.07 ind:pas:3p; +suffoqué suffoquer ver m s 2.48 11.76 0.13 2.23 par:pas; +suffoquée suffoquer ver f s 2.48 11.76 0.15 1.28 par:pas; +suffoqués suffoquer ver m p 2.48 11.76 0.04 0.34 par:pas; +suffrage suffrage nom m s 0.60 3.99 0.33 2.50 +suffrages suffrage nom m p 0.60 3.99 0.27 1.49 +suffragette suffragette nom f s 0.20 0.27 0.12 0.27 +suffragettes suffragette nom f p 0.20 0.27 0.08 0.00 +suffète suffète nom m s 0.00 0.07 0.00 0.07 +suggestibilité suggestibilité nom f s 0.02 0.00 0.02 0.00 +suggestif suggestif adj m s 0.58 1.22 0.27 0.27 +suggestifs suggestif adj m p 0.58 1.22 0.01 0.14 +suggestion suggestion nom f s 8.35 7.77 5.63 3.51 +suggestionner suggestionner ver 0.02 0.14 0.01 0.07 inf; +suggestionné suggestionner ver m s 0.02 0.14 0.01 0.07 par:pas; +suggestions suggestion nom f p 8.35 7.77 2.71 4.26 +suggestive suggestif adj f s 0.58 1.22 0.16 0.74 +suggestives suggestif adj f p 0.58 1.22 0.14 0.07 +suggestivité suggestivité nom f s 0.01 0.00 0.01 0.00 +suggère suggérer ver 28.99 25.34 11.47 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +suggèrent suggérer ver 28.99 25.34 0.82 0.54 ind:pre:3p; +suggères suggérer ver 28.99 25.34 1.54 0.00 ind:pre:2s; +suggéra suggérer ver 28.99 25.34 0.11 4.46 ind:pas:3s; +suggérai suggérer ver 28.99 25.34 0.01 1.01 ind:pas:1s; +suggéraient suggérer ver 28.99 25.34 0.04 0.27 ind:imp:3p; +suggérais suggérer ver 28.99 25.34 0.47 0.54 ind:imp:1s;ind:imp:2s; +suggérait suggérer ver 28.99 25.34 0.23 3.24 ind:imp:3s; +suggérant suggérer ver 28.99 25.34 0.89 0.95 par:pre; +suggérer suggérer ver 28.99 25.34 4.18 3.45 ind:pre:2p;inf; +suggérera suggérer ver 28.99 25.34 0.01 0.07 ind:fut:3s; +suggérerai suggérer ver 28.99 25.34 0.01 0.07 ind:fut:1s; +suggérerais suggérer ver 28.99 25.34 0.32 0.00 cnd:pre:1s;cnd:pre:2s; +suggérerait suggérer ver 28.99 25.34 0.16 0.27 cnd:pre:3s; +suggérez suggérer ver 28.99 25.34 3.29 0.07 imp:pre:2p;ind:pre:2p; +suggériez suggérer ver 28.99 25.34 0.17 0.00 ind:imp:2p; +suggérions suggérer ver 28.99 25.34 0.01 0.07 ind:imp:1p; +suggérons suggérer ver 28.99 25.34 0.18 0.07 imp:pre:1p;ind:pre:1p; +suggérât suggérer ver 28.99 25.34 0.00 0.14 sub:imp:3s; +suggérèrent suggérer ver 28.99 25.34 0.00 0.07 ind:pas:3p; +suggéré suggérer ver m s 28.99 25.34 4.76 3.99 par:pas; +suggérée suggérer ver f s 28.99 25.34 0.14 0.95 par:pas; +suggérées suggérer ver f p 28.99 25.34 0.15 0.41 par:pas; +suggérés suggérer ver m p 28.99 25.34 0.02 0.14 par:pas; +ségrégation ségrégation nom f s 0.40 0.74 0.40 0.74 +ségrégationniste ségrégationniste adj m s 0.11 0.00 0.11 0.00 +séguedille séguedille nom f s 0.00 0.14 0.00 0.14 +sui_generis sui_generis adj m p 0.23 0.07 0.23 0.07 +sui sui nom m s 0.55 0.27 0.55 0.27 +suicida suicider ver 30.09 11.35 0.30 0.47 ind:pas:3s; +suicidaient suicider ver 30.09 11.35 0.01 0.14 ind:imp:3p; +suicidaire suicidaire adj s 2.63 1.22 2.63 1.22 +suicidaires suicidaire nom p 1.79 1.35 1.23 0.68 +suicidait suicider ver 30.09 11.35 0.09 0.27 ind:imp:3s; +suicidant suicidant nom m s 0.08 0.20 0.08 0.14 +suicidants suicidant nom m p 0.08 0.20 0.00 0.07 +suicide suicide nom m s 27.33 18.92 25.34 17.50 +suicident suicider ver 30.09 11.35 0.62 0.41 ind:pre:3p; +suicider suicider ver 30.09 11.35 10.49 4.19 inf; +suicidera suicider ver 30.09 11.35 0.09 0.27 ind:fut:3s; +suiciderai suicider ver 30.09 11.35 0.48 0.07 ind:fut:1s; +suiciderais suicider ver 30.09 11.35 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +suiciderait suicider ver 30.09 11.35 0.33 0.14 cnd:pre:3s; +suiciderez suicider ver 30.09 11.35 0.00 0.14 ind:fut:2p; +suicideriez suicider ver 30.09 11.35 0.01 0.00 cnd:pre:2p; +suicides suicide nom m p 27.33 18.92 1.98 1.42 +suicidez suicider ver 30.09 11.35 0.27 0.00 ind:pre:2p; +suicidiez suicider ver 30.09 11.35 0.04 0.00 ind:imp:2p; +suicidons suicider ver 30.09 11.35 0.11 0.07 imp:pre:1p;ind:pre:1p; +suicidât suicider ver 30.09 11.35 0.00 0.07 sub:imp:3s; +suicidèrent suicider ver 30.09 11.35 0.00 0.07 ind:pas:3p; +suicidé suicider ver m s 30.09 11.35 8.38 1.82 par:pas; +suicidée suicider ver f s 30.09 11.35 2.75 1.35 par:pas; +suicidées suicider ver f p 30.09 11.35 0.15 0.00 par:pas; +suicidés suicider ver m p 30.09 11.35 1.25 0.34 par:pas; +séide séide nom m s 0.02 0.20 0.01 0.00 +séides séide nom m p 0.02 0.20 0.01 0.20 +suie suie nom f s 0.72 7.43 0.72 7.30 +suies suie nom f p 0.72 7.43 0.00 0.14 +suif suif nom m s 0.96 2.03 0.96 2.03 +suifer suifer ver 0.00 0.14 0.00 0.07 inf; +suiffard suiffard nom m s 0.00 0.07 0.00 0.07 +suiffeuses suiffeux adj f p 0.00 0.14 0.00 0.07 +suiffeux suiffeux adj m 0.00 0.14 0.00 0.07 +suiffé suiffer ver m s 0.00 0.27 0.00 0.14 par:pas; +suiffée suiffer ver f s 0.00 0.27 0.00 0.07 par:pas; +suiffés suiffer ver m p 0.00 0.27 0.00 0.07 par:pas; +suifés suifer ver m p 0.00 0.14 0.00 0.07 par:pas; +suint suint nom m s 0.00 0.88 0.00 0.88 +suinta suinter ver 0.96 5.95 0.00 0.14 ind:pas:3s; +suintaient suinter ver 0.96 5.95 0.02 0.54 ind:imp:3p; +suintait suinter ver 0.96 5.95 0.02 1.96 ind:imp:3s; +suintant suinter ver 0.96 5.95 0.10 0.41 par:pre; +suintante suintant adj f s 0.17 2.70 0.05 0.34 +suintantes suintant adj f p 0.17 2.70 0.01 0.68 +suintants suintant adj m p 0.17 2.70 0.06 0.88 +suinte suinter ver 0.96 5.95 0.43 1.55 imp:pre:2s;ind:pre:3s; +suintement suintement nom m s 0.12 0.81 0.11 0.54 +suintements suintement nom m p 0.12 0.81 0.01 0.27 +suintent suinter ver 0.96 5.95 0.06 0.47 ind:pre:3p; +suinter suinter ver 0.96 5.95 0.20 0.74 inf; +suinté suinter ver m s 0.96 5.95 0.13 0.14 par:pas; +suis être aux 8074.24 6501.82 1272.28 560.47 ind:pre:1s; +séisme séisme nom m s 3.31 1.22 2.60 1.01 +séismes séisme nom m p 3.31 1.22 0.71 0.20 +suisse suisse adj s 5.01 10.27 3.91 6.62 +suisses suisse adj p 5.01 10.27 1.10 3.58 +suissesse suisse nom f s 1.42 3.38 0.11 0.47 +suissesses suisse nom f p 1.42 3.38 0.00 0.07 +suit suivre ver 2090.53 949.12 32.57 29.39 ind:pre:3s; +suite suite nom f s 275.90 275.81 274.18 270.88 +suites suite nom f p 275.90 275.81 1.72 4.93 +suitée suitée adj f s 0.00 0.07 0.00 0.07 +suiv suiv adj 0.01 0.00 0.01 0.00 +suivîmes suivre ver 2090.53 949.12 0.02 0.74 ind:pas:1p; +suivît suivre ver 2090.53 949.12 0.00 0.41 sub:imp:3s; +suivaient suivre ver 2090.53 949.12 1.11 15.54 ind:imp:3p; +suivais suivre ver 2090.53 949.12 3.46 8.11 ind:imp:1s;ind:imp:2s; +suivait suivre ver 2090.53 949.12 6.09 40.54 ind:imp:3s; +suivant suivant pre 2.61 15.47 2.61 15.47 +suivante suivant adj f s 28.81 51.08 11.20 19.46 +suivantes suivant adj f p 28.81 51.08 2.55 5.61 +suivants suivant adj m p 28.81 51.08 4.26 9.19 +suive suivre ver 2090.53 949.12 4.09 1.62 sub:pre:1s;sub:pre:3s; +suivent suivre ver 2090.53 949.12 11.14 12.64 ind:pre:3p;sub:pre:3p; +suives suivre ver 2090.53 949.12 0.98 0.00 sub:pre:2s; +suiveur suiveur nom m s 0.27 0.88 0.07 0.27 +suiveurs suiveur nom m p 0.27 0.88 0.17 0.54 +suiveuse suiveur nom f s 0.27 0.88 0.03 0.07 +suiveuses suiveur adj f p 0.02 0.27 0.00 0.14 +suivez_moi_jeune_homme suivez_moi_jeune_homme nom m s 0.00 0.07 0.00 0.07 +suivez suivre ver 2090.53 949.12 57.03 6.35 imp:pre:2p;ind:pre:2p; +suivi suivre ver m s 2090.53 949.12 34.99 48.04 par:pas; +suivie suivre ver f s 2090.53 949.12 9.18 15.54 par:pas; +suivies suivre ver f p 2090.53 949.12 1.21 3.51 par:pas; +suiviez suivre ver 2090.53 949.12 1.27 0.14 ind:imp:2p;sub:pre:2p; +suivions suivre ver 2090.53 949.12 0.24 2.70 ind:imp:1p; +suivirent suivre ver 2090.53 949.12 0.69 15.27 ind:pas:3p; +suivis suivre ver m p 2090.53 949.12 4.80 11.42 ind:pas:1s;par:pas;par:pas; +suivissent suivre ver 2090.53 949.12 0.00 0.20 sub:imp:3p; +suivistes suiviste nom p 0.00 0.07 0.00 0.07 +suivit suivre ver 2090.53 949.12 0.70 35.47 ind:pas:3s; +suivons suivre ver 2090.53 949.12 4.45 3.11 imp:pre:1p;ind:pre:1p; +suivra suivre ver 2090.53 949.12 5.27 2.70 ind:fut:3s; +suivrai suivre ver 2090.53 949.12 4.21 1.15 ind:fut:1s; +suivraient suivre ver 2090.53 949.12 0.58 1.42 cnd:pre:3p; +suivrais suivre ver 2090.53 949.12 1.62 0.95 cnd:pre:1s;cnd:pre:2s; +suivrait suivre ver 2090.53 949.12 0.96 3.18 cnd:pre:3s; +suivras suivre ver 2090.53 949.12 0.64 0.20 ind:fut:2s; +suivre suivre ver 2090.53 949.12 73.91 80.14 inf;; +suivrez suivre ver 2090.53 949.12 1.18 0.20 ind:fut:2p; +suivriez suivre ver 2090.53 949.12 0.06 0.00 cnd:pre:2p; +suivrions suivre ver 2090.53 949.12 0.00 0.14 cnd:pre:1p; +suivrons suivre ver 2090.53 949.12 1.94 0.34 ind:fut:1p; +suivront suivre ver 2090.53 949.12 2.46 2.16 ind:fut:3p; +sujet sujet nom m s 120.42 105.74 107.92 88.04 +sujets sujet nom m p 120.42 105.74 12.51 17.70 +sujette sujet adj f s 3.90 6.62 0.70 1.42 +sujettes sujet adj f p 3.90 6.62 0.09 0.20 +séjour séjour nom m s 16.60 43.58 15.70 36.82 +séjourna séjourner ver 2.48 6.96 0.00 0.34 ind:pas:3s; +séjournaient séjourner ver 2.48 6.96 0.02 0.34 ind:imp:3p; +séjournais séjourner ver 2.48 6.96 0.00 0.07 ind:imp:1s; +séjournait séjourner ver 2.48 6.96 0.27 1.22 ind:imp:3s; +séjournant séjourner ver 2.48 6.96 0.00 0.27 par:pre; +séjourne séjourner ver 2.48 6.96 0.83 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +séjournent séjourner ver 2.48 6.96 0.14 0.07 ind:pre:3p; +séjourner séjourner ver 2.48 6.96 0.39 1.35 inf; +séjourneraient séjourner ver 2.48 6.96 0.00 0.07 cnd:pre:3p; +séjournerez séjourner ver 2.48 6.96 0.12 0.07 ind:fut:2p; +séjourneriez séjourner ver 2.48 6.96 0.01 0.00 cnd:pre:2p; +séjournerons séjourner ver 2.48 6.96 0.01 0.00 ind:fut:1p; +séjournes séjourner ver 2.48 6.96 0.01 0.00 ind:pre:2s; +séjournez séjourner ver 2.48 6.96 0.10 0.00 imp:pre:2p;ind:pre:2p; +séjourniez séjourner ver 2.48 6.96 0.01 0.07 ind:imp:2p; +séjournions séjourner ver 2.48 6.96 0.00 0.20 ind:imp:1p; +séjournâmes séjourner ver 2.48 6.96 0.00 0.07 ind:pas:1p; +séjourné séjourner ver m s 2.48 6.96 0.56 2.36 par:pas; +séjours séjour nom m p 16.60 43.58 0.90 6.76 +sujétion sujétion nom f s 0.03 1.15 0.03 0.81 +sujétions sujétion nom f p 0.03 1.15 0.00 0.34 +sélect sélect adj m s 0.13 0.54 0.08 0.41 +sélecte sélect adj f s 0.13 0.54 0.02 0.00 +sélecteur sélecteur nom m s 0.05 0.27 0.03 0.07 +sélecteurs sélecteur nom m p 0.05 0.27 0.03 0.20 +sélectif sélectif adj m s 1.18 1.22 0.21 0.47 +sélectifs sélectif adj m p 1.18 1.22 0.08 0.14 +sélection sélection nom f s 4.69 2.64 4.45 2.36 +sélectionna sélectionner ver 4.08 1.76 0.00 0.07 ind:pas:3s; +sélectionnaient sélectionner ver 4.08 1.76 0.00 0.07 ind:imp:3p; +sélectionnait sélectionner ver 4.08 1.76 0.03 0.14 ind:imp:3s; +sélectionnant sélectionner ver 4.08 1.76 0.16 0.00 par:pre; +sélectionne sélectionner ver 4.08 1.76 0.38 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sélectionner sélectionner ver 4.08 1.76 1.13 0.61 inf; +sélectionnera sélectionner ver 4.08 1.76 0.11 0.00 ind:fut:3s; +sélectionnerai sélectionner ver 4.08 1.76 0.02 0.00 ind:fut:1s; +sélectionnerais sélectionner ver 4.08 1.76 0.01 0.00 cnd:pre:1s; +sélectionneur sélectionneur nom m s 0.00 0.07 0.00 0.07 +sélectionneuse sélectionneuse nom f s 0.01 0.00 0.01 0.00 +sélectionnez sélectionner ver 4.08 1.76 0.11 0.00 imp:pre:2p;ind:pre:2p; +sélectionné sélectionner ver m s 4.08 1.76 1.09 0.27 par:pas; +sélectionnée sélectionner ver f s 4.08 1.76 0.13 0.27 par:pas; +sélectionnées sélectionner ver f p 4.08 1.76 0.17 0.07 par:pas; +sélectionnés sélectionner ver m p 4.08 1.76 0.75 0.27 par:pas; +sélections sélection nom f p 4.69 2.64 0.24 0.27 +sélective sélectif adj f s 1.18 1.22 0.83 0.61 +sélectivement sélectivement adv 0.05 0.00 0.05 0.00 +sélectives sélectif adj f p 1.18 1.22 0.05 0.00 +sélectivité sélectivité nom f s 0.01 0.07 0.01 0.07 +sélects sélect adj m p 0.13 0.54 0.02 0.14 +sulfamide sulfamide nom m s 0.19 0.14 0.02 0.00 +sulfamides sulfamide nom m p 0.19 0.14 0.17 0.14 +sulfatages sulfatage nom m p 0.00 0.07 0.00 0.07 +sulfatant sulfater ver 0.04 0.27 0.00 0.07 par:pre; +sulfate sulfate nom m s 0.46 0.68 0.45 0.47 +sulfater sulfater ver 0.04 0.27 0.01 0.20 inf; +sulfates sulfate nom m p 0.46 0.68 0.01 0.20 +sulfateuse sulfateur nom f s 0.06 0.27 0.06 0.14 +sulfateuses sulfateur nom f p 0.06 0.27 0.00 0.14 +sulfaté sulfaté adj m s 0.10 0.07 0.10 0.00 +sulfatées sulfaté adj f p 0.10 0.07 0.00 0.07 +sulfhydrique sulfhydrique adj m s 0.01 0.07 0.01 0.07 +sulfite sulfite nom m s 0.03 0.07 0.03 0.07 +sulfonate sulfonate nom m s 0.03 0.00 0.03 0.00 +sulfonique sulfonique adj s 0.01 0.00 0.01 0.00 +sulfonée sulfoner ver f s 0.00 0.14 0.00 0.07 par:pas; +sulfonés sulfoner ver m p 0.00 0.14 0.00 0.07 par:pas; +sulfure sulfure nom m s 0.15 0.68 0.14 0.34 +sulfures sulfure nom m p 0.15 0.68 0.01 0.34 +sulfureuse sulfureux adj f s 0.50 1.89 0.27 0.95 +sulfureuses sulfureux adj f p 0.50 1.89 0.16 0.47 +sulfureux sulfureux adj m 0.50 1.89 0.07 0.47 +sulfurique sulfurique adj m s 0.82 0.41 0.82 0.41 +sulfurisé sulfurisé adj m s 0.04 0.20 0.04 0.20 +sulfuré sulfuré adj m s 0.03 0.00 0.02 0.00 +sulfurée sulfuré adj f s 0.03 0.00 0.01 0.00 +sulky sulky nom m s 0.14 0.41 0.14 0.41 +sulpicien sulpicien adj m s 0.00 0.61 0.00 0.20 +sulpicienne sulpicien adj f s 0.00 0.61 0.00 0.27 +sulpiciennes sulpicien adj f p 0.00 0.61 0.00 0.14 +sultan sultan nom m s 1.75 7.09 1.68 4.86 +sultanat sultanat nom m s 0.02 0.20 0.02 0.20 +sultane sultane nom f s 0.05 3.78 0.05 3.78 +sultanes sultan nom f p 1.75 7.09 0.00 0.07 +sultans sultan nom m p 1.75 7.09 0.07 2.16 +sélénite sélénite nom s 0.20 0.00 0.02 0.00 +sélénites sélénite nom p 0.20 0.00 0.17 0.00 +sélénium sélénium nom m s 0.19 0.00 0.19 0.00 +séléniure séléniure nom m s 0.03 0.00 0.03 0.00 +sélénographie sélénographie nom f s 0.00 0.07 0.00 0.07 +sumac sumac nom m s 0.13 0.14 0.13 0.14 +sémantique sémantique nom f s 0.29 0.34 0.29 0.34 +sémantiques sémantique adj p 0.05 0.14 0.00 0.07 +sémaphore sémaphore nom m s 0.15 1.01 0.12 0.61 +sémaphores sémaphore nom m p 0.15 1.01 0.03 0.41 +sémaphoriques sémaphorique adj m p 0.00 0.07 0.00 0.07 +sémillant sémillant adj m s 0.19 0.61 0.19 0.41 +sémillante sémillant adj f s 0.19 0.61 0.00 0.20 +sémillon sémillon nom m s 0.00 0.07 0.00 0.07 +séminaire séminaire nom m s 3.58 4.59 2.73 3.58 +séminaires séminaire nom m p 3.58 4.59 0.86 1.01 +séminal séminal adj m s 0.21 1.08 0.17 0.07 +séminale séminal adj f s 0.21 1.08 0.03 0.74 +séminales séminal adj f p 0.21 1.08 0.01 0.07 +séminariste séminariste nom s 0.21 3.72 0.20 2.97 +séminaristes séminariste nom p 0.21 3.72 0.01 0.74 +séminaux séminal adj m p 0.21 1.08 0.00 0.20 +séminole séminole nom s 0.08 0.07 0.03 0.00 +séminoles séminole nom p 0.08 0.07 0.05 0.07 +séminome séminome nom m s 0.01 0.00 0.01 0.00 +sémiologie sémiologie nom f s 0.01 0.07 0.01 0.07 +sémiologue sémiologue nom s 0.00 0.07 0.00 0.07 +sémiotique sémiotique nom f s 0.04 0.00 0.04 0.00 +sémiotiques sémiotique nom f p 0.04 0.00 0.01 0.00 +sémite sémite nom s 0.36 0.34 0.12 0.20 +sémites sémite nom p 0.36 0.34 0.23 0.14 +sémitique sémitique adj s 0.02 0.20 0.02 0.07 +sémitiques sémitique adj f p 0.02 0.20 0.00 0.14 +summum summum nom m s 0.56 0.47 0.56 0.47 +sumo sumo nom m s 0.88 0.07 0.88 0.07 +sumérien sumérien nom m s 0.04 0.00 0.04 0.00 +sénat sénat nom m s 1.38 1.82 1.38 1.82 +sénateur sénateur nom m s 19.77 3.31 14.85 2.03 +sénateurs sénateur nom m p 19.77 3.31 4.48 1.28 +sénatorial sénatorial adj m s 0.25 0.47 0.07 0.20 +sénatoriale sénatorial adj f s 0.25 0.47 0.17 0.20 +sénatoriales sénatorial nom f p 0.03 0.00 0.03 0.00 +sénatrice sénateur nom f s 19.77 3.31 0.44 0.00 +sénatus_consulte sénatus_consulte nom m s 0.00 0.07 0.00 0.07 +sénescence sénescence nom f s 0.01 0.14 0.01 0.14 +sénevé sénevé nom m s 0.00 0.14 0.00 0.14 +sénile sénile adj s 2.18 1.82 1.94 1.49 +sénilement sénilement adv 0.00 0.07 0.00 0.07 +séniles sénile adj p 2.18 1.82 0.23 0.34 +sénilité sénilité nom f s 0.23 0.81 0.23 0.81 +sunlight sunlight nom m s 0.16 0.41 0.16 0.00 +sunlights sunlight nom m p 0.16 0.41 0.00 0.41 +sunna sunna nom f s 0.02 0.07 0.02 0.07 +sunnites sunnite nom p 0.02 0.00 0.02 0.00 +séné séné nom m s 0.16 0.14 0.16 0.07 +sénéchal sénéchal nom m s 0.01 5.81 0.01 5.20 +sénéchaux sénéchal nom m p 0.01 5.81 0.00 0.61 +sénégalais sénégalais nom m 0.14 2.09 0.14 1.82 +sénégalaise sénégalais adj f s 0.11 3.24 0.01 0.00 +sénégalaises sénégalais adj f p 0.11 3.24 0.01 0.00 +sénés séné nom m p 0.16 0.14 0.00 0.07 +suons suer ver 7.28 10.34 0.02 0.00 ind:pre:1p; +suât suer ver 7.28 10.34 0.00 0.07 sub:imp:3s; +séoudite séoudite adj f s 0.00 0.27 0.00 0.27 +sépale sépale nom m s 0.03 0.00 0.01 0.00 +sépales sépale nom m p 0.03 0.00 0.02 0.00 +sépara séparer ver 66.22 109.80 0.27 2.77 ind:pas:3s; +séparable séparable adj s 0.00 0.14 0.00 0.14 +séparai séparer ver 66.22 109.80 0.01 0.14 ind:pas:1s; +séparaient séparer ver 66.22 109.80 0.30 7.70 ind:imp:3p; +séparais séparer ver 66.22 109.80 0.01 0.34 ind:imp:1s; +séparait séparer ver 66.22 109.80 1.23 18.04 ind:imp:3s; +séparant séparer ver 66.22 109.80 0.56 4.26 par:pre; +séparateur séparateur nom m s 0.07 0.00 0.07 0.00 +séparation séparation nom f s 10.15 14.39 9.88 13.45 +séparations séparation nom f p 10.15 14.39 0.27 0.95 +séparatiste séparatiste adj m s 0.45 0.20 0.09 0.20 +séparatistes séparatiste nom p 0.45 0.00 0.40 0.00 +séparatrice séparateur adj f s 0.01 0.20 0.01 0.00 +sépare séparer ver 66.22 109.80 12.77 14.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +séparent séparer ver 66.22 109.80 3.41 6.42 ind:pre:3p; +séparer séparer ver 66.22 109.80 20.34 18.38 ind:pre:2p;inf; +séparera séparer ver 66.22 109.80 1.39 0.34 ind:fut:3s; +séparerai séparer ver 66.22 109.80 0.32 0.34 ind:fut:1s; +sépareraient séparer ver 66.22 109.80 0.17 0.14 cnd:pre:3p; +séparerais séparer ver 66.22 109.80 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +séparerait séparer ver 66.22 109.80 0.22 0.54 cnd:pre:3s; +sépareras séparer ver 66.22 109.80 0.02 0.00 ind:fut:2s; +séparerez séparer ver 66.22 109.80 0.16 0.14 ind:fut:2p; +séparerons séparer ver 66.22 109.80 0.25 0.20 ind:fut:1p; +sépareront séparer ver 66.22 109.80 0.09 0.00 ind:fut:3p; +séparez séparer ver 66.22 109.80 2.59 0.14 imp:pre:2p;ind:pre:2p; +sépariez séparer ver 66.22 109.80 0.32 0.07 ind:imp:2p; +séparions séparer ver 66.22 109.80 0.08 0.68 ind:imp:1p; +séparâmes séparer ver 66.22 109.80 0.01 0.34 ind:pas:1p; +séparons séparer ver 66.22 109.80 2.17 0.47 imp:pre:1p;ind:pre:1p; +séparât séparer ver 66.22 109.80 0.00 0.27 sub:imp:3s; +séparèrent séparer ver 66.22 109.80 0.30 3.11 ind:pas:3p; +séparé séparer ver m s 66.22 109.80 4.11 8.78 par:pas; +séparée séparer ver f s 66.22 109.80 2.11 6.49 par:pas; +séparées séparé adj f p 5.41 7.30 1.11 1.28 +séparément séparément adv 4.01 3.78 4.01 3.78 +séparés séparer ver m p 66.22 109.80 11.81 12.43 par:pas; +super_espion super_espion nom m s 0.02 0.00 0.02 0.00 +super_grand super_grand nom m p 0.00 0.07 0.00 0.07 +super_pilote super_pilote adj s 0.01 0.00 0.01 0.00 +super_puissance super_puissance nom f p 0.03 0.00 0.03 0.00 +super super adj 154.83 7.09 154.83 7.09 +superbe superbe adj s 53.42 23.85 45.32 19.05 +superbement superbement adv 0.30 2.64 0.30 2.64 +superbes superbe adj p 53.42 23.85 8.10 4.80 +supercalculateur supercalculateur nom m s 0.06 0.00 0.06 0.00 +supercarburant supercarburant nom m s 0.02 0.00 0.02 0.00 +superchampion superchampion nom m s 0.01 0.07 0.00 0.07 +superchampions superchampion nom m p 0.01 0.07 0.01 0.00 +supercherie supercherie nom f s 1.60 1.76 1.55 1.69 +supercheries supercherie nom f p 1.60 1.76 0.04 0.07 +superfamille superfamille nom f s 0.01 0.00 0.01 0.00 +superficialité superficialité nom f s 0.27 0.34 0.26 0.34 +superficialités superficialité nom f p 0.27 0.34 0.01 0.00 +superficie superficie nom f s 0.35 1.01 0.35 1.01 +superficiel superficiel adj m s 5.71 5.61 2.12 1.96 +superficielle superficiel adj f s 5.71 5.61 1.93 2.23 +superficiellement superficiellement adv 0.06 0.41 0.06 0.41 +superficielles superficiel adj f p 5.71 5.61 1.00 0.68 +superficiels superficiel adj m p 5.71 5.61 0.67 0.74 +superfin superfin adj m s 0.00 0.07 0.00 0.07 +superflu superflu adj m s 2.94 4.46 1.41 2.16 +superflue superflu adj f s 2.94 4.46 0.16 1.08 +superflues superflu adj f p 2.94 4.46 0.35 0.68 +superfluité superfluité nom f s 0.00 0.20 0.00 0.07 +superfluités superfluité nom f p 0.00 0.20 0.00 0.14 +superflus superflu adj m p 2.94 4.46 1.01 0.54 +superforteresses superforteresse adj f p 0.00 0.07 0.00 0.07 +superfétatoire superfétatoire adj s 0.03 0.54 0.03 0.27 +superfétatoires superfétatoire adj f p 0.03 0.54 0.00 0.27 +supergrand supergrand nom m s 0.00 0.07 0.00 0.07 +superintendant superintendant nom m s 0.10 0.14 0.10 0.07 +superintendante superintendante nom f s 0.00 0.07 0.00 0.07 +superintendants superintendant nom m p 0.10 0.14 0.00 0.07 +superlatif superlatif adj m s 0.03 0.07 0.02 0.07 +superlatifs superlatif nom m p 0.02 0.27 0.02 0.27 +superlative superlatif adj f s 0.03 0.07 0.01 0.00 +superlativement superlativement adv 0.00 0.07 0.00 0.07 +superman superman nom m 1.52 0.20 1.12 0.14 +supermarché supermarché nom m s 12.19 5.68 10.68 5.34 +supermarchés supermarché nom m p 12.19 5.68 1.51 0.34 +supermen superman nom m p 1.52 0.20 0.40 0.07 +supernova supernova nom f s 0.58 0.07 0.55 0.07 +supernovas supernova nom f p 0.58 0.07 0.04 0.00 +superordinateur superordinateur nom m s 0.03 0.00 0.03 0.00 +superphosphates superphosphate nom m p 0.00 0.07 0.00 0.07 +superposa superposer ver 0.56 7.50 0.00 0.07 ind:pas:3s; +superposable superposable adj s 0.00 0.20 0.00 0.07 +superposables superposable adj m p 0.00 0.20 0.00 0.14 +superposaient superposer ver 0.56 7.50 0.00 1.01 ind:imp:3p; +superposait superposer ver 0.56 7.50 0.00 0.34 ind:imp:3s; +superposant superposer ver 0.56 7.50 0.02 0.74 par:pre; +superpose superposer ver 0.56 7.50 0.04 0.81 ind:pre:1s;ind:pre:3s; +superposent superposer ver 0.56 7.50 0.26 1.35 ind:pre:3p; +superposer superposer ver 0.56 7.50 0.03 0.88 inf; +superposez superposer ver 0.56 7.50 0.01 0.00 ind:pre:2p; +superposition superposition nom f s 0.03 0.95 0.02 0.61 +superpositions superposition nom f p 0.03 0.95 0.01 0.34 +superposé superposé adj m s 0.37 5.00 0.10 0.14 +superposée superposer ver f s 0.56 7.50 0.01 0.27 par:pas; +superposées superposé adj f p 0.37 5.00 0.04 1.96 +superposés superposé adj m p 0.37 5.00 0.23 2.84 +superpouvoirs superpouvoir nom m p 0.20 0.00 0.20 0.00 +superproduction superproduction nom f s 0.08 0.27 0.06 0.20 +superproductions superproduction nom f p 0.08 0.27 0.02 0.07 +superpuissance superpuissance nom f s 0.34 0.00 0.22 0.00 +superpuissances superpuissance nom f p 0.34 0.00 0.12 0.00 +superpuissant superpuissant adj m s 0.04 0.07 0.01 0.00 +superpuissante superpuissant adj f s 0.04 0.07 0.01 0.00 +superpuissants superpuissant adj m p 0.04 0.07 0.01 0.07 +supers super nom m p 73.26 2.77 1.78 0.07 +supersonique supersonique adj s 0.33 0.20 0.11 0.07 +supersoniques supersonique adj p 0.33 0.20 0.23 0.14 +superstar superstar nom f s 1.82 0.41 1.67 0.34 +superstars superstar nom f p 1.82 0.41 0.15 0.07 +superstitieuse superstitieux adj f s 2.54 3.92 0.30 1.82 +superstitieusement superstitieusement adv 0.00 0.34 0.00 0.34 +superstitieuses superstitieux adj f p 2.54 3.92 0.17 0.14 +superstitieux superstitieux adj m 2.54 3.92 2.08 1.96 +superstition superstition nom f s 6.11 5.95 3.61 4.19 +superstitions superstition nom f p 6.11 5.95 2.50 1.76 +superstructure superstructure nom f s 0.11 1.35 0.11 0.20 +superstructures superstructure nom f p 0.11 1.35 0.00 1.15 +supertanker supertanker nom m s 0.03 0.00 0.03 0.00 +supervisa superviser ver 3.61 0.74 0.02 0.00 ind:pas:3s; +supervisais superviser ver 3.61 0.74 0.03 0.00 ind:imp:1s; +supervisait superviser ver 3.61 0.74 0.14 0.27 ind:imp:3s; +supervisant superviser ver 3.61 0.74 0.03 0.00 par:pre; +supervise superviser ver 3.61 0.74 1.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supervisent superviser ver 3.61 0.74 0.05 0.00 ind:pre:3p; +superviser superviser ver 3.61 0.74 1.03 0.20 inf; +supervisera superviser ver 3.61 0.74 0.11 0.00 ind:fut:3s; +superviserai superviser ver 3.61 0.74 0.09 0.00 ind:fut:1s; +superviserais superviser ver 3.61 0.74 0.01 0.00 cnd:pre:1s; +superviserait superviser ver 3.61 0.74 0.04 0.00 cnd:pre:3s; +superviseras superviser ver 3.61 0.74 0.02 0.00 ind:fut:2s; +superviserez superviser ver 3.61 0.74 0.04 0.00 ind:fut:2p; +superviserons superviser ver 3.61 0.74 0.01 0.00 ind:fut:1p; +superviseront superviser ver 3.61 0.74 0.01 0.07 ind:fut:3p; +superviseur superviseur nom m s 1.99 0.07 1.66 0.00 +superviseurs superviseur nom m p 1.99 0.07 0.33 0.07 +supervisez superviser ver 3.61 0.74 0.04 0.00 ind:pre:2p; +supervisiez superviser ver 3.61 0.74 0.05 0.00 ind:imp:2p; +supervision supervision nom f s 0.68 0.27 0.68 0.20 +supervisions supervision nom f p 0.68 0.27 0.00 0.07 +supervisons superviser ver 3.61 0.74 0.05 0.00 ind:pre:1p; +supervisé superviser ver m s 3.61 0.74 0.62 0.07 par:pas; +supervisée superviser ver f s 3.61 0.74 0.11 0.00 par:pas; +supervisées superviser ver f p 3.61 0.74 0.04 0.00 par:pas; +supervisés superviser ver m p 3.61 0.74 0.03 0.07 par:pas; +sépharade sépharade adj f s 0.01 0.20 0.01 0.07 +sépharades sépharade nom p 0.00 0.41 0.00 0.14 +sépia sépia nom f s 0.02 1.15 0.02 1.08 +sépias sépia nom f p 0.02 1.15 0.00 0.07 +supin supin nom m s 0.00 0.07 0.00 0.07 +supination supination nom f s 0.05 0.14 0.05 0.14 +suppôt suppôt nom m s 0.39 0.95 0.17 0.54 +suppôts suppôt nom m p 0.39 0.95 0.22 0.41 +supplanta supplanter ver 0.60 1.62 0.00 0.07 ind:pas:3s; +supplantait supplanter ver 0.60 1.62 0.03 0.20 ind:imp:3s; +supplantant supplanter ver 0.60 1.62 0.01 0.07 par:pre; +supplante supplanter ver 0.60 1.62 0.07 0.00 ind:pre:3s; +supplantent supplanter ver 0.60 1.62 0.04 0.07 ind:pre:3p; +supplanter supplanter ver 0.60 1.62 0.20 0.34 inf; +supplanté supplanter ver m s 0.60 1.62 0.26 0.54 par:pas; +supplantée supplanter ver f s 0.60 1.62 0.00 0.34 par:pas; +supplia supplier ver 53.65 34.46 0.55 3.65 ind:pas:3s; +suppliai supplier ver 53.65 34.46 0.01 0.81 ind:pas:1s; +suppliaient supplier ver 53.65 34.46 0.08 0.95 ind:imp:3p; +suppliais supplier ver 53.65 34.46 0.27 0.88 ind:imp:1s;ind:imp:2s; +suppliait supplier ver 53.65 34.46 0.95 5.07 ind:imp:3s; +suppliant supplier ver 53.65 34.46 0.57 3.11 par:pre; +suppliante suppliant adj f s 1.20 7.09 0.50 2.70 +suppliantes suppliant adj f p 1.20 7.09 0.00 0.47 +suppliants suppliant adj m p 1.20 7.09 0.50 1.15 +supplication supplication nom f s 0.33 4.80 0.11 2.03 +supplications supplication nom f p 0.33 4.80 0.22 2.77 +supplice supplice nom m s 3.77 13.38 3.13 11.35 +supplices supplice nom m p 3.77 13.38 0.64 2.03 +supplicia supplicier ver 0.48 0.88 0.00 0.07 ind:pas:3s; +suppliciant suppliciant adj m s 0.00 0.27 0.00 0.14 +suppliciantes suppliciant adj f p 0.00 0.27 0.00 0.14 +supplicient supplicier ver 0.48 0.88 0.00 0.14 ind:pre:3p; +supplicier supplicier ver 0.48 0.88 0.14 0.41 inf; +supplicierez supplicier ver 0.48 0.88 0.14 0.00 ind:fut:2p; +supplicié supplicier ver m s 0.48 0.88 0.10 0.14 par:pas; +suppliciée supplicié nom f s 0.01 2.64 0.01 0.20 +suppliciées supplicié nom f p 0.01 2.64 0.00 0.14 +suppliciés supplicier ver m p 0.48 0.88 0.11 0.07 par:pas; +supplie supplier ver 53.65 34.46 37.38 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +supplient supplier ver 53.65 34.46 0.12 0.74 ind:pre:3p; +supplier supplier ver 53.65 34.46 4.96 4.19 inf; +suppliera supplier ver 53.65 34.46 0.10 0.00 ind:fut:3s; +supplierai supplier ver 53.65 34.46 0.39 0.07 ind:fut:1s; +supplieraient supplier ver 53.65 34.46 0.02 0.00 cnd:pre:3p; +supplierais supplier ver 53.65 34.46 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +supplierait supplier ver 53.65 34.46 0.05 0.07 cnd:pre:3s; +supplieras supplier ver 53.65 34.46 0.44 0.00 ind:fut:2s; +supplierez supplier ver 53.65 34.46 0.06 0.00 ind:fut:2p; +supplieriez supplier ver 53.65 34.46 0.01 0.00 cnd:pre:2p; +supplieront supplier ver 53.65 34.46 0.17 0.00 ind:fut:3p; +supplies supplier ver 53.65 34.46 0.42 0.14 ind:pre:2s; +suppliez supplier ver 53.65 34.46 0.17 0.00 imp:pre:2p;ind:pre:2p; +supplions supplier ver 53.65 34.46 0.27 0.20 ind:pre:1p; +suppliât supplier ver 53.65 34.46 0.00 0.07 sub:imp:3s; +supplique supplique nom f s 0.28 1.08 0.21 0.68 +suppliques supplique nom f p 0.28 1.08 0.07 0.41 +supplié supplier ver m s 53.65 34.46 4.33 2.97 par:pas; +suppliée supplier ver f s 53.65 34.46 1.89 0.41 par:pas; +suppliés supplier ver m p 53.65 34.46 0.42 0.14 par:pas; +suppléaient suppléer ver 0.19 2.30 0.00 0.20 ind:imp:3p; +suppléait suppléer ver 0.19 2.30 0.01 0.34 ind:imp:3s; +suppléance suppléance nom f s 0.14 0.00 0.14 0.00 +suppléant suppléant nom m s 0.50 0.54 0.34 0.41 +suppléante suppléant adj f s 0.20 0.20 0.03 0.00 +suppléants suppléant nom m p 0.50 0.54 0.14 0.14 +supplée suppléer ver 0.19 2.30 0.00 0.47 ind:pre:3s; +suppléent suppléer ver 0.19 2.30 0.00 0.07 ind:pre:3p; +suppléer suppléer ver 0.19 2.30 0.14 0.68 inf; +suppléeraient suppléer ver 0.19 2.30 0.00 0.07 cnd:pre:3p; +suppléerait suppléer ver 0.19 2.30 0.00 0.14 cnd:pre:3s; +suppléerez suppléer ver 0.19 2.30 0.00 0.07 ind:fut:2p; +supplément supplément nom m s 2.80 7.50 2.60 6.42 +supplémentaire supplémentaire adj s 8.97 15.68 4.19 10.20 +supplémentaires supplémentaire adj p 8.97 15.68 4.79 5.47 +supplémenter supplémenter ver 0.00 0.14 0.00 0.07 inf; +suppléments supplément nom m p 2.80 7.50 0.20 1.08 +supplémentées supplémenter ver f p 0.00 0.14 0.00 0.07 par:pas; +supplétifs supplétif nom m p 0.00 0.14 0.00 0.14 +supplétive supplétif adj f s 0.00 0.14 0.00 0.14 +suppléé suppléer ver m s 0.19 2.30 0.00 0.07 par:pas; +support support nom m s 2.94 6.42 2.71 5.20 +supporta supporter ver 86.04 81.22 0.05 1.01 ind:pas:3s; +supportable supportable adj s 1.73 6.22 1.60 5.00 +supportables supportable adj p 1.73 6.22 0.13 1.22 +supportai supporter ver 86.04 81.22 0.01 0.14 ind:pas:1s; +supportaient supporter ver 86.04 81.22 0.14 1.49 ind:imp:3p; +supportais supporter ver 86.04 81.22 2.29 2.30 ind:imp:1s;ind:imp:2s; +supportait supporter ver 86.04 81.22 2.38 10.47 ind:imp:3s; +supportant supporter ver 86.04 81.22 0.14 2.43 par:pre; +supporte supporter ver 86.04 81.22 29.14 12.43 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +supportent supporter ver 86.04 81.22 2.14 2.23 ind:pre:3p;sub:pre:3p; +supporter supporter ver 86.04 81.22 30.04 33.45 inf; +supportera supporter ver 86.04 81.22 1.46 0.47 ind:fut:3s; +supporterai supporter ver 86.04 81.22 2.27 0.95 ind:fut:1s; +supporteraient supporter ver 86.04 81.22 0.23 0.20 cnd:pre:3p; +supporterais supporter ver 86.04 81.22 2.58 1.01 cnd:pre:1s;cnd:pre:2s; +supporterait supporter ver 86.04 81.22 1.18 3.38 cnd:pre:3s; +supporteras supporter ver 86.04 81.22 0.52 0.07 ind:fut:2s; +supporterez supporter ver 86.04 81.22 0.25 0.14 ind:fut:2p; +supporteriez supporter ver 86.04 81.22 0.05 0.20 cnd:pre:2p; +supporterons supporter ver 86.04 81.22 0.22 0.07 ind:fut:1p; +supporteront supporter ver 86.04 81.22 0.13 0.07 ind:fut:3p; +supporters supporter nom m p 6.07 5.54 1.75 2.91 +supportes supporter ver 86.04 81.22 3.86 0.34 ind:pre:2s; +supporteur supporteur nom m s 0.08 0.07 0.02 0.00 +supportez supporter ver 86.04 81.22 1.37 0.54 imp:pre:2p;ind:pre:2p; +supportiez supporter ver 86.04 81.22 0.18 0.00 ind:imp:2p; +supportions supporter ver 86.04 81.22 0.00 0.41 ind:imp:1p; +supportons supporter ver 86.04 81.22 0.44 0.27 imp:pre:1p;ind:pre:1p; +supportât supporter ver 86.04 81.22 0.00 0.27 sub:imp:3s; +supportrice supporteur nom f s 0.08 0.07 0.06 0.00 +supportrices supportrice nom f p 0.13 0.00 0.13 0.00 +support_chaussette support_chaussette nom m p 0.00 0.07 0.00 0.07 +supports support nom m p 2.94 6.42 0.22 1.22 +supportèrent supporter ver 86.04 81.22 0.00 0.07 ind:pas:3p; +supporté supporter ver m s 86.04 81.22 4.56 5.00 par:pas; +supportée supporter ver f s 86.04 81.22 0.20 0.81 par:pas; +supportées supporter ver f p 86.04 81.22 0.01 0.54 par:pas; +supportés supporter ver m p 86.04 81.22 0.21 0.47 par:pas; +supposa supposer ver 120.31 62.50 0.02 0.95 ind:pas:3s; +supposable supposable adj s 0.00 0.07 0.00 0.07 +supposai supposer ver 120.31 62.50 0.00 0.61 ind:pas:1s; +supposaient supposer ver 120.31 62.50 0.03 0.41 ind:imp:3p; +supposais supposer ver 120.31 62.50 0.50 2.30 ind:imp:1s;ind:imp:2s; +supposait supposer ver 120.31 62.50 0.11 3.18 ind:imp:3s; +supposant supposer ver 120.31 62.50 1.62 1.89 par:pre; +suppose supposer ver 120.31 62.50 89.07 29.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supposent supposer ver 120.31 62.50 0.16 0.88 ind:pre:3p; +supposer supposer ver 120.31 62.50 3.92 14.46 inf; +supposera supposer ver 120.31 62.50 0.05 0.00 ind:fut:3s; +supposerai supposer ver 120.31 62.50 0.14 0.00 ind:fut:1s; +supposerait supposer ver 120.31 62.50 0.22 0.34 cnd:pre:3s; +supposeront supposer ver 120.31 62.50 0.04 0.07 ind:fut:3p; +supposes supposer ver 120.31 62.50 0.88 0.07 ind:pre:2s; +supposez supposer ver 120.31 62.50 1.43 1.28 imp:pre:2p;ind:pre:2p; +supposiez supposer ver 120.31 62.50 0.07 0.07 ind:imp:2p; +supposions supposer ver 120.31 62.50 0.06 0.07 ind:imp:1p; +supposition supposition nom f s 4.10 5.34 2.74 2.50 +suppositions supposition nom f p 4.10 5.34 1.36 2.84 +suppositoire suppositoire nom m s 0.56 0.88 0.27 0.54 +suppositoires suppositoire nom m p 0.56 0.88 0.29 0.34 +supposâmes supposer ver 120.31 62.50 0.00 0.07 ind:pas:1p; +supposons supposer ver 120.31 62.50 4.54 1.62 imp:pre:1p;ind:pre:1p; +supposèrent supposer ver 120.31 62.50 0.01 0.07 ind:pas:3p; +supposé supposer ver m s 120.31 62.50 12.07 3.24 par:pas; +supposée supposer ver f s 120.31 62.50 2.71 0.95 par:pas; +supposées supposer ver f p 120.31 62.50 0.36 0.07 par:pas; +supposément supposément adv 0.04 0.00 0.04 0.00 +supposés supposer ver m p 120.31 62.50 2.30 0.41 par:pas; +suppresseur suppresseur adj m s 0.03 0.00 0.03 0.00 +suppresseur suppresseur nom m s 0.03 0.00 0.03 0.00 +suppression suppression nom f s 0.80 2.09 0.74 1.96 +suppressions suppression nom f p 0.80 2.09 0.06 0.14 +supprima supprimer ver 13.45 15.07 0.00 0.41 ind:pas:3s; +supprimai supprimer ver 13.45 15.07 0.00 0.07 ind:pas:1s; +supprimaient supprimer ver 13.45 15.07 0.10 0.07 ind:imp:3p; +supprimais supprimer ver 13.45 15.07 0.07 0.07 ind:imp:1s; +supprimait supprimer ver 13.45 15.07 0.17 0.88 ind:imp:3s; +supprimant supprimer ver 13.45 15.07 0.21 1.28 par:pre; +supprime supprimer ver 13.45 15.07 1.99 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +suppriment supprimer ver 13.45 15.07 0.21 0.14 ind:pre:3p; +supprimer supprimer ver 13.45 15.07 5.86 5.74 inf; +supprimera supprimer ver 13.45 15.07 0.05 0.07 ind:fut:3s; +supprimerai supprimer ver 13.45 15.07 0.15 0.07 ind:fut:1s; +supprimeraient supprimer ver 13.45 15.07 0.03 0.07 cnd:pre:3p; +supprimerait supprimer ver 13.45 15.07 0.07 0.14 cnd:pre:3s; +supprimerons supprimer ver 13.45 15.07 0.00 0.07 ind:fut:1p; +supprimez supprimer ver 13.45 15.07 0.62 0.07 imp:pre:2p;ind:pre:2p; +supprimons supprimer ver 13.45 15.07 0.54 0.14 imp:pre:1p;ind:pre:1p; +supprimât supprimer ver 13.45 15.07 0.00 0.14 sub:imp:3s; +supprimé supprimer ver m s 13.45 15.07 2.19 2.57 par:pas; +supprimée supprimer ver f s 13.45 15.07 0.35 0.61 par:pas; +supprimées supprimer ver f p 13.45 15.07 0.23 0.34 par:pas; +supprimés supprimer ver m p 13.45 15.07 0.60 0.54 par:pas; +suppuraient suppurer ver 0.23 0.68 0.00 0.07 ind:imp:3p; +suppurait suppurer ver 0.23 0.68 0.00 0.14 ind:imp:3s; +suppurant suppurer ver 0.23 0.68 0.01 0.07 par:pre; +suppurante suppurant adj f s 0.03 0.07 0.01 0.00 +suppurantes suppurant adj f p 0.03 0.07 0.01 0.07 +suppuration suppuration nom f s 0.01 0.14 0.01 0.07 +suppurations suppuration nom f p 0.01 0.14 0.00 0.07 +suppure suppurer ver 0.23 0.68 0.17 0.20 ind:pre:3s; +suppurent suppurer ver 0.23 0.68 0.02 0.00 ind:pre:3p; +suppurer suppurer ver 0.23 0.68 0.02 0.14 inf; +suppurerait suppurer ver 0.23 0.68 0.00 0.07 cnd:pre:3s; +supputa supputer ver 0.16 4.19 0.00 0.14 ind:pas:3s; +supputai supputer ver 0.16 4.19 0.00 0.07 ind:pas:1s; +supputaient supputer ver 0.16 4.19 0.00 0.27 ind:imp:3p; +supputais supputer ver 0.16 4.19 0.00 0.07 ind:imp:1s; +supputait supputer ver 0.16 4.19 0.01 0.88 ind:imp:3s; +supputant supputer ver 0.16 4.19 0.00 0.54 par:pre; +supputation supputation nom f s 0.03 0.95 0.00 0.14 +supputations supputation nom f p 0.03 0.95 0.03 0.81 +suppute supputer ver 0.16 4.19 0.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supputent supputer ver 0.16 4.19 0.00 0.14 ind:pre:3p; +supputer supputer ver 0.16 4.19 0.01 0.95 inf; +supputé supputer ver m s 0.16 4.19 0.00 0.20 par:pas; +supputées supputer ver f p 0.16 4.19 0.00 0.07 par:pas; +supra_humain supra_humain adj m s 0.00 0.07 0.00 0.07 +supra supra adv 0.26 0.34 0.26 0.34 +supraconducteur supraconducteur nom m s 0.16 0.00 0.09 0.00 +supraconducteurs supraconducteur nom m p 0.16 0.00 0.07 0.00 +supraconductivité supraconductivité nom f s 0.01 0.00 0.01 0.00 +supraconductrice supraconducteur adj f s 0.01 0.00 0.01 0.00 +supranational supranational adj m s 0.00 0.14 0.00 0.07 +supranationales supranational adj f p 0.00 0.14 0.00 0.07 +supranaturel supranaturel adj m s 0.01 0.00 0.01 0.00 +supraterrestre supraterrestre adj s 0.01 0.14 0.01 0.14 +suprématie suprématie nom f s 0.47 1.08 0.47 1.08 +suprême suprême adj s 15.26 22.97 14.98 21.76 +suprêmement suprêmement adv 0.09 0.81 0.09 0.81 +suprêmes suprême adj p 15.26 22.97 0.28 1.22 +sépulcral sépulcral adj m s 0.03 1.08 0.01 0.34 +sépulcrale sépulcral adj f s 0.03 1.08 0.01 0.68 +sépulcrales sépulcral adj f p 0.03 1.08 0.01 0.07 +sépulcre sépulcre nom m s 0.48 1.08 0.08 1.01 +sépulcres sépulcre nom m p 0.48 1.08 0.40 0.07 +sépulture sépulture nom f s 1.51 2.97 1.44 2.16 +sépultures sépulture nom f p 1.51 2.97 0.07 0.81 +supérette supérette nom f s 0.56 0.07 0.56 0.07 +supérieur supérieur adj m s 25.72 46.69 8.74 17.70 +supérieure supérieur adj f s 25.72 46.69 10.70 18.65 +supérieurement supérieurement adv 0.07 1.01 0.07 1.01 +supérieures supérieur adj f p 25.72 46.69 2.82 3.51 +supérieurs supérieur nom m p 13.63 8.11 6.04 2.77 +supériorité supériorité nom f s 2.00 9.26 2.00 8.72 +supériorités supériorité nom f p 2.00 9.26 0.00 0.54 +séquanaise séquanais nom f s 0.00 0.20 0.00 0.20 +séquelle séquelle nom f s 1.31 2.36 0.11 0.41 +séquelles séquelle nom f p 1.31 2.36 1.21 1.96 +séquence séquence nom f s 7.61 4.73 6.02 2.97 +séquencer séquencer ver 0.20 0.00 0.20 0.00 inf; +séquences séquence nom f p 7.61 4.73 1.59 1.76 +séquenceur séquenceur nom m s 0.11 0.00 0.11 0.00 +séquençage séquençage nom m s 0.27 0.00 0.27 0.00 +séquentiel séquentiel adj m s 0.13 0.00 0.02 0.00 +séquentielle séquentiel adj f s 0.13 0.00 0.11 0.00 +séquentiellement séquentiellement adv 0.01 0.00 0.01 0.00 +séquestraient séquestrer ver 2.05 2.03 0.01 0.07 ind:imp:3p; +séquestrait séquestrer ver 2.05 2.03 0.14 0.20 ind:imp:3s; +séquestration séquestration nom f s 0.50 0.47 0.30 0.34 +séquestrations séquestration nom f p 0.50 0.47 0.20 0.14 +séquestre séquestre nom m s 0.33 0.95 0.31 0.81 +séquestrer séquestrer ver 2.05 2.03 0.44 0.47 inf; +séquestres séquestre nom m p 0.33 0.95 0.02 0.14 +séquestrez séquestrer ver 2.05 2.03 0.12 0.00 ind:pre:2p; +séquestré séquestrer ver m s 2.05 2.03 0.37 0.54 par:pas; +séquestrée séquestrer ver f s 2.05 2.03 0.83 0.47 par:pas; +séquestrés séquestrer ver m p 2.05 2.03 0.08 0.14 par:pas; +séquoia séquoia nom m s 0.41 1.49 0.30 1.22 +séquoias séquoia nom m p 0.41 1.49 0.11 0.27 +sur_le_champ sur_le_champ adv 6.79 10.95 6.79 10.95 +sur_mesure sur_mesure nom m s 0.03 0.00 0.03 0.00 +sur_place sur_place nom m s 0.20 0.27 0.20 0.27 +sur sur pre 2520.11 5320.47 2520.11 5320.47 +surabondaient surabonder ver 0.00 0.14 0.00 0.07 ind:imp:3p; +surabondamment surabondamment adv 0.00 0.20 0.00 0.20 +surabondance surabondance nom f s 0.08 1.35 0.08 1.08 +surabondances surabondance nom f p 0.08 1.35 0.00 0.27 +surabondant surabondant adj m s 0.00 0.61 0.00 0.27 +surabondante surabondant adj f s 0.00 0.61 0.00 0.27 +surabondantes surabondant adj f p 0.00 0.61 0.00 0.07 +surabondent surabonder ver 0.00 0.14 0.00 0.07 ind:pre:3p; +sérac sérac nom m s 0.21 0.07 0.21 0.00 +séracs sérac nom m p 0.21 0.07 0.00 0.07 +suractiver suractiver ver 0.01 0.00 0.01 0.00 inf; +suractivité suractivité nom f s 0.00 0.07 0.00 0.07 +suractivé suractivé adj m s 0.03 0.14 0.03 0.07 +suractivée suractivé adj f s 0.03 0.14 0.00 0.07 +suradaptation suradaptation nom f s 0.00 0.14 0.00 0.14 +suradapté antiadapter ver m s 0.00 0.20 0.00 0.20 par:pas; +surah surah nom m s 0.00 0.20 0.00 0.20 +suraigu suraigu adj m s 0.03 3.38 0.01 1.28 +suraigus suraigu adj m p 0.03 3.38 0.01 0.61 +suraiguë suraigu adj f s 0.03 3.38 0.01 1.22 +suraiguës suraigu adj f p 0.03 3.38 0.00 0.27 +sérail sérail nom m s 0.47 13.31 0.47 13.31 +surajoute surajouter ver 0.00 0.41 0.00 0.07 ind:pre:3s; +surajouter surajouter ver 0.00 0.41 0.00 0.07 inf; +surajouté surajouter ver m s 0.00 0.41 0.00 0.07 par:pas; +surajoutée surajouter ver f s 0.00 0.41 0.00 0.07 par:pas; +surajoutés surajouter ver m p 0.00 0.41 0.00 0.14 par:pas; +suralimentation suralimentation nom f s 0.00 0.07 0.00 0.07 +suralimenter suralimenter ver 0.04 0.20 0.02 0.07 inf; +suralimentes suralimenter ver 0.04 0.20 0.01 0.07 ind:pre:2s; +suralimentée suralimenté adj f s 0.14 0.14 0.00 0.14 +suralimentés suralimenté adj m p 0.14 0.14 0.14 0.00 +suranné suranné adj m s 0.04 1.96 0.02 0.61 +surannée suranné adj f s 0.04 1.96 0.01 0.47 +surannées suranné adj f p 0.04 1.96 0.00 0.41 +surannés suranné adj m p 0.04 1.96 0.01 0.47 +séraphin séraphin nom m s 0.20 0.41 0.06 0.20 +séraphins séraphin nom m p 0.20 0.41 0.14 0.20 +séraphique séraphique adj s 0.00 0.54 0.00 0.34 +séraphiques séraphique adj p 0.00 0.54 0.00 0.20 +surard surard nom m s 0.00 0.07 0.00 0.07 +surarmement surarmement nom m s 0.01 0.00 0.01 0.00 +surarmé surarmer ver m s 0.07 0.00 0.02 0.00 par:pas; +surarmée surarmer ver f s 0.07 0.00 0.01 0.00 par:pas; +surarmés surarmer ver m p 0.07 0.00 0.04 0.00 par:pas; +surbaissé surbaissé adj m s 0.01 0.68 0.00 0.14 +surbaissée surbaissé adj f s 0.01 0.68 0.01 0.27 +surbaissées surbaissé adj f p 0.01 0.68 0.00 0.14 +surbaissés surbaissé adj m p 0.01 0.68 0.00 0.14 +surbooké surbooké adj m s 0.23 0.00 0.18 0.00 +surbookée surbooké adj f s 0.23 0.00 0.03 0.00 +surbookées surbooké adj f p 0.23 0.00 0.02 0.00 +surboum surboum nom f s 0.23 0.88 0.20 0.41 +surboums surboum nom f p 0.23 0.88 0.03 0.47 +surbrillance surbrillance nom f s 0.01 0.00 0.01 0.00 +surbrodé surbrodé adj m s 0.00 0.07 0.00 0.07 +surcapacité surcapacité nom f s 0.03 0.00 0.03 0.00 +surcharge surcharge nom f s 1.57 0.88 1.55 0.61 +surchargeaient surcharger ver 2.52 7.30 0.00 0.20 ind:imp:3p; +surchargeait surcharger ver 2.52 7.30 0.12 0.00 ind:imp:3s; +surchargeant surcharger ver 2.52 7.30 0.00 0.14 par:pre; +surcharger surcharger ver 2.52 7.30 0.44 0.27 inf; +surcharges surcharge nom f p 1.57 0.88 0.02 0.27 +surchargé surcharger ver m s 2.52 7.30 1.07 1.76 par:pas; +surchargée surcharger ver f s 2.52 7.30 0.28 1.69 par:pas; +surchargées surcharger ver f p 2.52 7.30 0.03 1.15 par:pas; +surchargés surcharger ver m p 2.52 7.30 0.32 1.76 par:pas; +surchauffait surchauffer ver 0.67 3.31 0.01 0.07 ind:imp:3s; +surchauffe surchauffe nom f s 0.48 0.27 0.48 0.27 +surchauffer surchauffer ver 0.67 3.31 0.13 0.00 inf; +surchauffez surchauffer ver 0.67 3.31 0.01 0.00 ind:pre:2p; +surchauffé surchauffer ver m s 0.67 3.31 0.29 1.08 par:pas; +surchauffée surchauffer ver f s 0.67 3.31 0.03 1.28 par:pas; +surchauffées surchauffer ver f p 0.67 3.31 0.00 0.27 par:pas; +surchauffés surchauffer ver m p 0.67 3.31 0.00 0.54 par:pas; +surchoix surchoix nom m 0.01 0.20 0.01 0.20 +surclassait surclasser ver 0.28 0.47 0.01 0.07 ind:imp:3s; +surclassant surclasser ver 0.28 0.47 0.00 0.07 par:pre; +surclasse surclasser ver 0.28 0.47 0.08 0.00 ind:pre:1s;ind:pre:3s; +surclassent surclasser ver 0.28 0.47 0.00 0.07 ind:pre:3p; +surclasser surclasser ver 0.28 0.47 0.02 0.07 inf; +surclasserais surclasser ver 0.28 0.47 0.00 0.07 cnd:pre:1s; +surclasserait surclasser ver 0.28 0.47 0.02 0.00 cnd:pre:3s; +surclasseras surclasser ver 0.28 0.47 0.00 0.07 ind:fut:2s; +surclassé surclasser ver m s 0.28 0.47 0.11 0.00 par:pas; +surclassés surclasser ver m p 0.28 0.47 0.04 0.07 par:pas; +surcoût surcoût nom m s 0.02 0.00 0.02 0.00 +surcompensation surcompensation nom f s 0.01 0.07 0.01 0.07 +surcompenser surcompenser ver 0.03 0.07 0.00 0.07 inf; +surcompensé surcompenser ver m s 0.03 0.07 0.03 0.00 par:pas; +surcomprimée surcomprimer ver f s 0.01 0.00 0.01 0.00 par:pas; +surconsommation surconsommation nom f s 0.02 0.00 0.02 0.00 +surconsomme surconsommer ver 0.00 0.07 0.00 0.07 ind:pre:3s; +surcontre surcontre nom m s 0.03 0.00 0.03 0.00 +surcot surcot nom m s 0.00 0.14 0.00 0.07 +surcots surcot nom m p 0.00 0.14 0.00 0.07 +surcoupé surcouper ver m s 0.01 0.00 0.01 0.00 par:pas; +surcroît surcroît nom m s 1.21 17.03 1.21 16.96 +surcroîts surcroît nom m p 1.21 17.03 0.00 0.07 +surdimensionné surdimensionné adj m s 0.13 0.00 0.09 0.00 +surdimensionnée surdimensionné adj f s 0.13 0.00 0.04 0.00 +surdité surdité nom f s 0.41 2.16 0.41 2.16 +surdoré surdorer ver m s 0.00 0.14 0.00 0.07 par:pas; +surdorée surdorer ver f s 0.00 0.14 0.00 0.07 par:pas; +surdosage surdosage nom m s 0.01 0.00 0.01 0.00 +surdose surdose nom f s 0.27 0.00 0.27 0.00 +surdoué surdoué nom m s 1.00 1.08 0.23 0.47 +surdouée surdoué nom f s 1.00 1.08 0.04 0.00 +surdoués surdoué nom m p 1.00 1.08 0.72 0.61 +surdéterminé surdéterminer ver m s 0.00 0.07 0.00 0.07 par:pas; +surdévelopper surdévelopper ver 0.01 0.00 0.01 0.00 inf; +surdéveloppé surdéveloppé adj m s 0.06 0.07 0.04 0.00 +surdéveloppée surdéveloppé adj f s 0.06 0.07 0.01 0.00 +surdéveloppées surdéveloppé adj f p 0.06 0.07 0.00 0.07 +surdéveloppés surdéveloppé adj m p 0.06 0.07 0.01 0.00 +sure sur adj_sup f s 65.92 16.22 12.38 0.41 +sureau sureau nom m s 0.15 1.89 0.05 1.42 +sureaux sureau nom m p 0.15 1.89 0.10 0.47 +sureffectif sureffectif nom m s 0.10 0.00 0.10 0.00 +suremploi suremploi nom m s 0.01 0.00 0.01 0.00 +surenchère surenchère nom f s 0.65 2.91 0.64 1.76 +surenchères surenchère nom f p 0.65 2.91 0.01 1.15 +surenchéri surenchérir ver m s 0.30 1.08 0.11 0.00 par:pas; +surenchérir surenchérir ver 0.30 1.08 0.16 0.34 inf; +surenchérissant surenchérir ver 0.30 1.08 0.00 0.07 par:pre; +surenchérissent surenchérir ver 0.30 1.08 0.00 0.07 ind:pre:3p; +surenchérit surenchérir ver 0.30 1.08 0.04 0.61 ind:pre:3s;ind:pas:3s; +surencombrée surencombré adj f s 0.00 0.07 0.00 0.07 +surendettés surendetté adj m p 0.04 0.00 0.04 0.00 +surent savoir ver_sup 4516.72 2003.58 0.07 1.42 ind:pas:3p; +surentraînement surentraînement nom m s 0.10 0.00 0.10 0.00 +surentraîné surentraîné adj m s 0.09 0.00 0.02 0.00 +surentraînées surentraîné adj f p 0.09 0.00 0.02 0.00 +surentraînés surentraîné adj m p 0.09 0.00 0.05 0.00 +sures sur adj_sup f p 65.92 16.22 0.25 0.20 +surestimation surestimation nom f s 0.01 0.00 0.01 0.00 +surestime surestimer ver 1.83 0.54 0.34 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surestimer surestimer ver 1.83 0.54 0.16 0.07 inf; +surestimerais surestimer ver 1.83 0.54 0.00 0.07 cnd:pre:2s; +surestimez surestimer ver 1.83 0.54 0.58 0.07 imp:pre:2p;ind:pre:2p; +surestimé surestimer ver m s 1.83 0.54 0.44 0.07 par:pas; +surestimée surestimer ver f s 1.83 0.54 0.28 0.14 par:pas; +surestimés surestimer ver m p 1.83 0.54 0.04 0.07 par:pas; +suret suret adj m s 0.10 0.27 0.00 0.07 +surets suret adj m p 0.10 0.27 0.10 0.00 +surette suret adj f s 0.10 0.27 0.00 0.20 +séreux séreux adj m s 0.00 0.07 0.00 0.07 +surexcitait surexciter ver 1.48 1.69 0.00 0.07 ind:imp:3s; +surexcitant surexciter ver 1.48 1.69 0.01 0.00 par:pre; +surexcitation surexcitation nom f s 0.04 0.81 0.04 0.81 +surexcite surexciter ver 1.48 1.69 0.02 0.00 ind:pre:3s; +surexciter surexciter ver 1.48 1.69 0.00 0.14 inf; +surexcité surexciter ver m s 1.48 1.69 0.92 0.54 par:pas; +surexcitée surexciter ver f s 1.48 1.69 0.18 0.27 par:pas; +surexcitées surexciter ver f p 1.48 1.69 0.14 0.14 par:pas; +surexcités surexciter ver m p 1.48 1.69 0.20 0.54 par:pas; +surexploité surexploiter ver m s 0.03 0.00 0.03 0.00 par:pas; +surexposition surexposition nom f s 0.02 0.00 0.02 0.00 +surexposé surexposer ver m s 0.07 0.14 0.02 0.07 par:pas; +surexposée surexposer ver f s 0.07 0.14 0.01 0.00 par:pas; +surexposées surexposer ver f p 0.07 0.14 0.02 0.00 par:pas; +surexposés surexposer ver m p 0.07 0.14 0.02 0.07 par:pas; +surf surf nom m s 5.57 0.34 5.57 0.34 +surface surface nom f s 22.70 57.23 21.85 51.49 +surfacer surfacer ver 0.01 0.00 0.01 0.00 inf; +surfaces surface nom f p 22.70 57.23 0.84 5.74 +surfactant surfactant nom m s 0.08 0.00 0.08 0.00 +surfacturation surfacturation nom f s 0.04 0.00 0.04 0.00 +surfacture surfacturer ver 0.15 0.00 0.04 0.00 ind:pre:1s;ind:pre:3s; +surfacturer surfacturer ver 0.15 0.00 0.05 0.00 inf; +surfacturé surfacturer ver m s 0.15 0.00 0.03 0.00 par:pas; +surfacturés surfacturer ver m p 0.15 0.00 0.02 0.00 par:pas; +surfaire surfaire ver 0.09 0.20 0.00 0.07 inf; +surfais surfer ver 9.38 0.34 0.09 0.00 ind:imp:1s; +surfaisait surfaire ver 0.09 0.20 0.00 0.07 ind:imp:3s; +surfait surfait adj m s 0.46 0.34 0.38 0.14 +surfaite surfaire ver f s 0.09 0.20 0.07 0.07 par:pas; +surfaites surfait adj f p 0.46 0.34 0.03 0.00 +surfaits surfaire ver m p 0.09 0.20 0.02 0.00 par:pas; +surfant surfer ver 9.38 0.34 0.16 0.00 par:pre; +surfaçage surfaçage nom m s 0.00 0.07 0.00 0.07 +surfe surfer ver 9.38 0.34 3.15 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surfent surfer ver 9.38 0.34 0.09 0.00 ind:pre:3p; +surfer surfer ver 9.38 0.34 5.28 0.20 inf; +surferas surfer ver 9.38 0.34 0.01 0.00 ind:fut:2s; +surfes surfer ver 9.38 0.34 0.10 0.00 ind:pre:2s; +surfeur surfeur nom m s 1.95 0.00 0.65 0.00 +surfeurs surfeur nom m p 1.95 0.00 1.06 0.00 +surfeuse surfeur nom f s 1.95 0.00 0.24 0.00 +surfeuses surfeuse nom f p 0.01 0.00 0.01 0.00 +surfez surfer ver 9.38 0.34 0.09 0.00 imp:pre:2p;ind:pre:2p; +surfilage surfilage nom m s 0.00 0.07 0.00 0.07 +surfin surfin adj m s 0.14 0.07 0.14 0.00 +surfine surfin adj f s 0.14 0.07 0.00 0.07 +surfons surfer ver 9.38 0.34 0.02 0.00 imp:pre:1p; +surfé surfer ver m s 9.38 0.34 0.28 0.00 par:pas; +surgît surgir ver 10.95 73.18 0.00 0.07 sub:imp:3s; +surgeler surgeler ver 0.09 0.34 0.01 0.00 inf; +surgelé surgelé nom m s 1.11 0.47 0.22 0.27 +surgelée surgelé adj f s 0.64 0.54 0.19 0.14 +surgelées surgelé adj f p 0.64 0.54 0.17 0.00 +surgelés surgelé nom m p 1.11 0.47 0.88 0.20 +surgeon surgeon nom m s 0.02 0.54 0.02 0.34 +surgeonnent surgeonner ver 0.00 0.07 0.00 0.07 ind:pre:3p; +surgeons surgeon nom m p 0.02 0.54 0.00 0.20 +surgi surgir ver m s 10.95 73.18 2.79 7.70 par:pas; +surgie surgir ver f s 10.95 73.18 0.04 2.23 par:pas; +surgies surgir ver f p 10.95 73.18 0.02 0.95 par:pas; +surgir surgir ver 10.95 73.18 2.26 17.84 inf; +surgira surgir ver 10.95 73.18 0.19 0.34 ind:fut:3s; +surgiraient surgir ver 10.95 73.18 0.00 0.14 cnd:pre:3p; +surgirait surgir ver 10.95 73.18 0.02 0.54 cnd:pre:3s; +surgirent surgir ver 10.95 73.18 0.17 1.55 ind:pas:3p; +surgiront surgir ver 10.95 73.18 0.04 0.41 ind:fut:3p; +surgis surgir ver m p 10.95 73.18 0.09 1.96 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +surgissaient surgir ver 10.95 73.18 0.28 5.20 ind:imp:3p; +surgissais surgir ver 10.95 73.18 0.10 0.07 ind:imp:1s;ind:imp:2s; +surgissait surgir ver 10.95 73.18 0.30 8.04 ind:imp:3s; +surgissant surgir ver 10.95 73.18 0.20 3.85 par:pre; +surgisse surgir ver 10.95 73.18 0.04 0.81 sub:pre:3s; +surgissement surgissement nom m s 0.00 1.01 0.00 0.95 +surgissements surgissement nom m p 0.00 1.01 0.00 0.07 +surgissent surgir ver 10.95 73.18 1.31 4.39 ind:pre:3p; +surgissez surgir ver 10.95 73.18 0.14 0.14 imp:pre:2p;ind:pre:2p; +surgit surgir ver 10.95 73.18 2.96 16.96 ind:pre:3s;ind:pas:3s; +surgèle surgeler ver 0.09 0.34 0.00 0.14 ind:pre:3s; +surgé surgé nom s 0.01 1.08 0.01 1.08 +surgénérateur surgénérateur nom m s 0.03 0.00 0.03 0.00 +surhomme surhomme nom m s 1.11 1.08 0.86 0.81 +surhommes surhomme nom m p 1.11 1.08 0.25 0.27 +surhumain surhumain adj m s 1.71 4.19 0.40 2.50 +surhumaine surhumain adj f s 1.71 4.19 1.00 1.15 +surhumaines surhumain adj f p 1.71 4.19 0.04 0.27 +surhumains surhumain adj m p 1.71 4.19 0.28 0.27 +surhumanité surhumanité nom f s 0.00 0.07 0.00 0.07 +suri suri adj m s 0.07 0.54 0.06 0.20 +sérial sérial nom m s 0.03 0.00 0.03 0.00 +sériant sérier ver 0.00 0.14 0.00 0.07 par:pre; +suricate suricate nom m s 0.05 0.00 0.05 0.00 +série série nom f s 36.53 39.59 33.34 35.41 +surie suri adj f s 0.07 0.54 0.01 0.27 +sériel sériel adj m s 0.01 0.41 0.01 0.14 +sérielle sériel adj f s 0.01 0.41 0.00 0.27 +sérier sérier ver 0.00 0.14 0.00 0.07 inf; +séries série nom f p 36.53 39.59 3.19 4.19 +suries suri adj f p 0.07 0.54 0.00 0.07 +sérieuse sérieux adj f s 110.48 66.01 23.64 13.65 +sérieusement sérieusement adv 39.34 21.76 39.34 21.76 +sérieuses sérieux adj f p 110.48 66.01 5.85 9.53 +sérieux sérieux adj m 110.48 66.01 80.99 42.84 +surimi surimi nom m s 0.01 0.00 0.01 0.00 +surimpression surimpression nom f s 0.05 0.81 0.05 0.68 +surimpressions surimpression nom f p 0.05 0.81 0.00 0.14 +surin surin nom m s 0.66 3.99 0.66 3.85 +surinait suriner ver 0.15 0.54 0.01 0.00 ind:imp:3s; +surine suriner ver 0.15 0.54 0.00 0.07 ind:pre:3s; +surinent suriner ver 0.15 0.54 0.00 0.07 ind:pre:3p; +suriner suriner ver 0.15 0.54 0.02 0.34 inf; +surinerais suriner ver 0.15 0.54 0.00 0.07 cnd:pre:2s; +surinfections surinfection nom f p 0.00 0.07 0.00 0.07 +surinformation surinformation nom f s 0.00 0.07 0.00 0.07 +surinformé surinformer ver m s 0.00 0.88 0.00 0.88 par:pas; +surins surin nom m p 0.66 3.99 0.00 0.14 +surintendance surintendance nom f s 0.00 0.07 0.00 0.07 +surintendant surintendant nom m s 0.43 0.27 0.43 0.07 +surintendante surintendant nom f s 0.43 0.27 0.00 0.20 +surintensité surintensité nom f s 0.04 0.00 0.04 0.00 +suriné suriner ver m s 0.15 0.54 0.12 0.00 par:pas; +surinvestissement surinvestissement nom m s 0.01 0.07 0.01 0.07 +sérique sérique adj m s 0.01 0.00 0.01 0.00 +surir surir ver 0.01 0.20 0.00 0.14 inf; +surit surir ver 0.01 0.20 0.00 0.07 ind:pre:3s; +surjet surjet nom m s 0.04 0.14 0.04 0.07 +surjeteuse jeteur nom f s 0.23 0.47 0.02 0.00 +surjets surjet nom m p 0.04 0.14 0.00 0.07 +surlendemain surlendemain nom m s 0.35 7.57 0.35 7.57 +surligner surligner ver 0.24 0.00 0.07 0.00 inf; +surligneur surligneur nom m s 0.03 0.00 0.03 0.00 +surligné surligner ver m s 0.24 0.00 0.17 0.00 par:pas; +surmenage surmenage nom m s 0.63 0.61 0.63 0.61 +surmenait surmener ver 1.33 0.88 0.01 0.14 ind:imp:3s; +surmenant surmener ver 1.33 0.88 0.01 0.00 par:pre; +surmener surmener ver 1.33 0.88 0.08 0.07 ind:pre:2p;inf; +surmenez surmener ver 1.33 0.88 0.15 0.00 imp:pre:2p;ind:pre:2p; +surmené surmener ver m s 1.33 0.88 0.69 0.20 par:pas; +surmenée surmené adj f s 0.69 1.01 0.20 0.20 +surmenées surmené adj f p 0.69 1.01 0.03 0.14 +surmenés surmener ver m p 1.33 0.88 0.15 0.20 par:pas; +surmoi surmoi nom m 0.12 0.68 0.12 0.68 +surmâle surmâle nom m s 0.00 0.14 0.00 0.14 +surmonta surmonter ver 9.31 28.11 0.10 0.47 ind:pas:3s; +surmontai surmonter ver 9.31 28.11 0.00 0.14 ind:pas:1s; +surmontaient surmonter ver 9.31 28.11 0.01 0.47 ind:imp:3p; +surmontais surmonter ver 9.31 28.11 0.00 0.07 ind:imp:1s; +surmontait surmonter ver 9.31 28.11 0.00 1.62 ind:imp:3s; +surmontant surmonter ver 9.31 28.11 0.00 1.96 par:pre; +surmonte surmonter ver 9.31 28.11 0.51 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surmontent surmonter ver 9.31 28.11 0.06 0.47 ind:pre:3p; +surmonter surmonter ver 9.31 28.11 5.85 5.00 inf; +surmontera surmonter ver 9.31 28.11 0.17 0.14 ind:fut:3s; +surmonterai surmonter ver 9.31 28.11 0.04 0.00 ind:fut:1s; +surmonteraient surmonter ver 9.31 28.11 0.00 0.07 cnd:pre:3p; +surmonterait surmonter ver 9.31 28.11 0.00 0.20 cnd:pre:3s; +surmonteras surmonter ver 9.31 28.11 0.32 0.00 ind:fut:2s; +surmonterez surmonter ver 9.31 28.11 0.03 0.07 ind:fut:2p; +surmonterons surmonter ver 9.31 28.11 0.23 0.00 ind:fut:1p; +surmontez surmonter ver 9.31 28.11 0.04 0.00 imp:pre:2p;ind:pre:2p; +surmontions surmonter ver 9.31 28.11 0.00 0.07 ind:imp:1p; +surmontèrent surmonter ver 9.31 28.11 0.01 0.07 ind:pas:3p; +surmonté surmonter ver m s 9.31 28.11 1.46 6.49 par:pas; +surmontée surmonter ver f s 9.31 28.11 0.28 5.27 par:pas; +surmontées surmonter ver f p 9.31 28.11 0.03 1.82 par:pas; +surmontés surmonter ver m p 9.31 28.11 0.14 2.30 par:pas; +surmène surmener ver 1.33 0.88 0.08 0.07 imp:pre:2s;ind:pre:3s; +surmédicalisation surmédicalisation nom f s 0.01 0.00 0.01 0.00 +surmulot surmulot nom m s 0.00 0.34 0.00 0.07 +surmulots surmulot nom m p 0.00 0.34 0.00 0.27 +surmultipliée surmultiplié adj f s 0.04 0.14 0.04 0.07 +surmultipliées surmultiplié adj f p 0.04 0.14 0.00 0.07 +surnage surnager ver 0.09 2.64 0.05 0.41 imp:pre:2s;ind:pre:3s; +surnagea surnager ver 0.09 2.64 0.00 0.14 ind:pas:3s; +surnageaient surnager ver 0.09 2.64 0.00 0.34 ind:imp:3p; +surnageait surnager ver 0.09 2.64 0.00 0.61 ind:imp:3s; +surnageant surnager ver 0.09 2.64 0.00 0.14 par:pre; +surnageants surnageant adj m p 0.00 0.20 0.00 0.07 +surnagent surnager ver 0.09 2.64 0.01 0.27 ind:pre:3p; +surnageons surnager ver 0.09 2.64 0.01 0.00 ind:pre:1p; +surnager surnager ver 0.09 2.64 0.01 0.54 inf; +surnagera surnager ver 0.09 2.64 0.00 0.07 ind:fut:3s; +surnages surnager ver 0.09 2.64 0.00 0.07 ind:pre:2s; +surnagèrent surnager ver 0.09 2.64 0.00 0.07 ind:pas:3p; +surnagé surnager ver m s 0.09 2.64 0.01 0.00 par:pas; +surnaturel surnaturel nom m s 2.71 0.54 2.71 0.54 +surnaturelle surnaturel adj f s 3.38 6.22 0.88 2.30 +surnaturelles surnaturel adj f p 3.38 6.22 0.39 1.01 +surnaturels surnaturel adj m p 3.38 6.22 0.75 0.34 +surnom surnom nom m s 7.79 6.49 6.20 5.61 +surnombre surnombre nom_sup m s 0.30 0.68 0.30 0.68 +surnomma surnommer ver 4.93 6.55 0.03 0.14 ind:pas:3s; +surnommaient surnommer ver 4.93 6.55 0.01 0.14 ind:imp:3p; +surnommais surnommer ver 4.93 6.55 0.02 0.00 ind:imp:1s;ind:imp:2s; +surnommait surnommer ver 4.93 6.55 0.48 1.08 ind:imp:3s; +surnommant surnommer ver 4.93 6.55 0.01 0.07 par:pre; +surnomme surnommer ver 4.93 6.55 1.27 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surnomment surnommer ver 4.93 6.55 0.44 0.07 ind:pre:3p; +surnommer surnommer ver 4.93 6.55 0.04 0.74 inf;; +surnommera surnommer ver 4.93 6.55 0.01 0.00 ind:fut:3s; +surnommerais surnommer ver 4.93 6.55 0.00 0.07 cnd:pre:1s; +surnommions surnommer ver 4.93 6.55 0.00 0.07 ind:imp:1p; +surnommèrent surnommer ver 4.93 6.55 0.01 0.00 ind:pas:3p; +surnommé surnommer ver m s 4.93 6.55 2.28 2.77 par:pas; +surnommée surnommé adj f s 0.84 1.69 0.26 0.20 +surnommés surnommer ver m p 4.93 6.55 0.08 0.07 par:pas; +surnoms surnom nom m p 7.79 6.49 1.59 0.88 +surnuméraire surnuméraire nom s 0.07 0.14 0.07 0.00 +surnuméraires surnuméraire adj m p 0.04 0.14 0.03 0.00 +suroît suroît nom m s 0.03 0.61 0.03 0.47 +suroîts suroît nom m p 0.03 0.61 0.00 0.14 +sérologie sérologie nom f s 0.09 0.00 0.09 0.00 +séronégatif séronégatif adj m s 0.23 0.14 0.19 0.14 +séronégatifs séronégatif nom m p 0.03 0.34 0.03 0.27 +séronégative séronégatif adj f s 0.23 0.14 0.03 0.00 +séropo séropo nom s 0.17 0.14 0.17 0.14 +séropositif séropositif adj m s 2.04 1.15 0.99 0.81 +séropositifs séropositif adj m p 2.04 1.15 0.17 0.27 +séropositive séropositif adj f s 2.04 1.15 0.81 0.00 +séropositives séropositif adj f p 2.04 1.15 0.09 0.07 +séropositivité séropositivité nom f s 0.09 0.27 0.09 0.27 +sérosité sérosité nom f s 0.02 0.07 0.02 0.07 +sérotonine sérotonine nom f s 0.61 0.00 0.61 0.00 +suroxygéner suroxygéner ver 0.01 0.00 0.01 0.00 inf; +suroxygéné suroxygéné adj m s 0.00 0.07 0.00 0.07 +surpassa surpasser ver 6.64 3.45 0.12 0.27 ind:pas:3s; +surpassaient surpasser ver 6.64 3.45 0.01 0.07 ind:imp:3p; +surpassais surpasser ver 6.64 3.45 0.10 0.20 ind:imp:1s; +surpassait surpasser ver 6.64 3.45 0.05 0.41 ind:imp:3s; +surpassant surpasser ver 6.64 3.45 0.14 0.14 par:pre; +surpasse surpasser ver 6.64 3.45 1.36 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surpassent surpasser ver 6.64 3.45 0.35 0.14 ind:pre:3p; +surpasser surpasser ver 6.64 3.45 1.46 0.74 inf; +surpassera surpasser ver 6.64 3.45 0.54 0.00 ind:fut:3s; +surpasserai surpasser ver 6.64 3.45 0.02 0.00 ind:fut:1s; +surpasseraient surpasser ver 6.64 3.45 0.01 0.00 cnd:pre:3p; +surpasserait surpasser ver 6.64 3.45 0.02 0.14 cnd:pre:3s; +surpasseras surpasser ver 6.64 3.45 0.01 0.00 ind:fut:2s; +surpasses surpasser ver 6.64 3.45 0.21 0.00 ind:pre:2s; +surpassez surpasser ver 6.64 3.45 0.04 0.00 imp:pre:2p;ind:pre:2p; +surpassons surpasser ver 6.64 3.45 0.16 0.00 imp:pre:1p;ind:pre:1p; +surpassât surpasser ver 6.64 3.45 0.01 0.07 sub:imp:3s; +surpassé surpasser ver m s 6.64 3.45 1.50 0.41 par:pas; +surpassée surpasser ver f s 6.64 3.45 0.36 0.20 par:pas; +surpassées surpasser ver f p 6.64 3.45 0.00 0.07 par:pas; +surpassés surpasser ver m p 6.64 3.45 0.20 0.20 par:pas; +surpatte surpatte nom f s 0.00 0.20 0.00 0.14 +surpattes surpatte nom f p 0.00 0.20 0.00 0.07 +surpaye surpayer ver 0.21 0.00 0.01 0.00 ind:pre:3s; +surpayé surpayer ver m s 0.21 0.00 0.13 0.00 par:pas; +surpayés surpayer ver m p 0.21 0.00 0.08 0.00 par:pas; +surpeuplement surpeuplement nom m s 0.03 0.07 0.03 0.07 +surpeupler surpeupler ver 0.01 0.00 0.01 0.00 inf; +surpeuplé surpeuplé adj m s 0.80 1.62 0.27 0.74 +surpeuplée surpeuplé adj f s 0.80 1.62 0.33 0.20 +surpeuplées surpeuplé adj f p 0.80 1.62 0.06 0.14 +surpeuplés surpeuplé adj m p 0.80 1.62 0.13 0.54 +surpiqûres surpiqûre nom f p 0.00 0.07 0.00 0.07 +surplace surplace nom m s 0.30 0.34 0.30 0.34 +surplis surplis nom m 0.07 1.69 0.07 1.69 +surplomb surplomb nom m s 0.09 2.23 0.09 2.03 +surplomba surplomber ver 0.69 8.85 0.00 0.07 ind:pas:3s; +surplombaient surplomber ver 0.69 8.85 0.00 0.88 ind:imp:3p; +surplombait surplomber ver 0.69 8.85 0.03 2.30 ind:imp:3s; +surplombant surplomber ver 0.69 8.85 0.24 1.28 par:pre; +surplombante surplombant adj f s 0.02 0.41 0.00 0.07 +surplombe surplomber ver 0.69 8.85 0.37 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surplombent surplomber ver 0.69 8.85 0.03 0.54 ind:pre:3p; +surplomber surplomber ver 0.69 8.85 0.01 0.14 inf; +surplomberait surplomber ver 0.69 8.85 0.00 0.07 cnd:pre:3s; +surplombions surplomber ver 0.69 8.85 0.00 0.14 ind:imp:1p; +surplombs surplomb nom m p 0.09 2.23 0.00 0.20 +surplombé surplomber ver m s 0.69 8.85 0.01 0.34 par:pas; +surplombée surplomber ver f s 0.69 8.85 0.00 0.20 par:pas; +surplombés surplomber ver m p 0.69 8.85 0.00 0.07 par:pas; +surplus surplus nom m 1.25 10.95 1.25 10.95 +surpoids surpoids nom m 0.23 0.00 0.23 0.00 +surpopulation surpopulation nom f s 0.45 0.14 0.45 0.14 +surprît surprendre ver 56.80 116.62 0.01 0.47 sub:imp:3s; +surprenaient surprendre ver 56.80 116.62 0.11 0.74 ind:imp:3p; +surprenais surprendre ver 56.80 116.62 0.07 1.76 ind:imp:1s;ind:imp:2s; +surprenait surprendre ver 56.80 116.62 0.45 7.30 ind:imp:3s; +surprenant surprenant adj m s 8.03 19.73 4.89 8.78 +surprenante surprenant adj f s 8.03 19.73 2.67 7.84 +surprenantes surprenant adj f p 8.03 19.73 0.34 1.76 +surprenants surprenant adj m p 8.03 19.73 0.14 1.35 +surprend surprendre ver 56.80 116.62 5.74 7.09 ind:pre:3s; +surprendra surprendre ver 56.80 116.62 0.75 0.61 ind:fut:3s; +surprendrai surprendre ver 56.80 116.62 0.20 0.14 ind:fut:1s; +surprendraient surprendre ver 56.80 116.62 0.05 0.07 cnd:pre:3p; +surprendrais surprendre ver 56.80 116.62 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +surprendrait surprendre ver 56.80 116.62 0.33 0.88 cnd:pre:3s; +surprendras surprendre ver 56.80 116.62 0.07 0.00 ind:fut:2s; +surprendre surprendre ver 56.80 116.62 8.00 17.43 inf; +surprendrez surprendre ver 56.80 116.62 0.02 0.00 ind:fut:2p; +surprendrons surprendre ver 56.80 116.62 0.01 0.07 ind:fut:1p; +surprendront surprendre ver 56.80 116.62 0.19 0.07 ind:fut:3p; +surprends surprendre ver 56.80 116.62 1.59 2.03 imp:pre:2s;ind:pre:1s;ind:pre:2s; +surprenez surprendre ver 56.80 116.62 1.06 0.27 imp:pre:2p;ind:pre:2p; +surpreniez surprendre ver 56.80 116.62 0.11 0.00 ind:imp:2p; +surprenions surprendre ver 56.80 116.62 0.00 0.14 ind:imp:1p; +surprenne surprendre ver 56.80 116.62 0.98 0.61 sub:pre:1s;sub:pre:3s; +surprennent surprendre ver 56.80 116.62 0.33 0.88 ind:pre:3p; +surprenons surprendre ver 56.80 116.62 0.04 0.14 imp:pre:1p;ind:pre:1p; +surpresseur surpresseur nom m s 0.01 0.00 0.01 0.00 +surpression surpression nom f s 0.09 0.14 0.09 0.14 +surprime surprime nom f s 0.14 0.00 0.14 0.00 +surprirent surprendre ver 56.80 116.62 0.11 0.68 ind:pas:3p; +surpris surprendre ver m 56.80 116.62 24.64 50.00 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +surprise_partie surprise_partie nom f s 0.20 0.61 0.18 0.27 +surprise_party surprise_party nom f s 0.10 0.07 0.10 0.07 +surprise surprise nom f s 82.94 77.16 75.62 68.51 +surprise_partie surprise_partie nom f p 0.20 0.61 0.02 0.34 +surprises surprise nom f p 82.94 77.16 7.32 8.65 +surprit surprendre ver 56.80 116.62 0.39 10.61 ind:pas:3s; +surproduction surproduction nom f s 0.05 0.14 0.05 0.14 +surprotecteur surprotecteur adj m s 0.06 0.00 0.06 0.00 +surprotectrice surprotecteur nom f s 0.10 0.00 0.10 0.00 +surprotège surprotéger ver 0.17 0.00 0.04 0.00 ind:pre:1s; +surprotégeais surprotéger ver 0.17 0.00 0.01 0.00 ind:imp:1s; +surprotéger surprotéger ver 0.17 0.00 0.10 0.00 inf; +surprotégé surprotéger ver m s 0.17 0.00 0.02 0.00 par:pas; +surpuissance surpuissance nom f s 0.01 0.07 0.01 0.07 +surpuissant surpuissant adj m s 0.16 0.41 0.09 0.27 +surpuissante surpuissant adj f s 0.16 0.41 0.04 0.07 +surpuissants surpuissant adj m p 0.16 0.41 0.03 0.07 +surqualifié surqualifié adj m s 0.11 0.00 0.08 0.00 +surqualifiée surqualifié adj f s 0.11 0.00 0.03 0.00 +surréalisme surréalisme nom m s 0.10 1.96 0.10 1.96 +surréaliste surréaliste adj s 0.98 2.64 0.95 1.96 +surréalistes surréaliste adj p 0.98 2.64 0.03 0.68 +surréalité surréalité nom f s 0.00 0.14 0.00 0.14 +surréel surréel adj m s 0.06 0.41 0.03 0.07 +surréelle surréel adj f s 0.06 0.41 0.02 0.20 +surréelles surréel adj f p 0.06 0.41 0.00 0.14 +surrégime surrégime nom m s 0.03 0.07 0.03 0.07 +surrénal surrénal adj m s 0.23 0.07 0.01 0.00 +surrénale surrénal adj f s 0.23 0.07 0.05 0.00 +surrénales surrénal adj f p 0.23 0.07 0.17 0.07 +surrénalien surrénalien adj m s 0.01 0.00 0.01 0.00 +surréservation surréservation nom f s 0.01 0.00 0.01 0.00 +surs sur adj_sup m p 65.92 16.22 1.11 0.07 +sursaturé sursaturer ver m s 0.01 0.20 0.01 0.20 par:pas; +sursaturée sursaturé adj f s 0.00 0.14 0.00 0.07 +sursaturées sursaturé adj f p 0.00 0.14 0.00 0.07 +sursaut sursaut nom m s 0.77 21.28 0.71 17.57 +sursauta sursauter ver 1.66 28.11 0.22 8.78 ind:pas:3s; +sursautai sursauter ver 1.66 28.11 0.10 1.15 ind:pas:1s; +sursautaient sursauter ver 1.66 28.11 0.01 0.54 ind:imp:3p; +sursautais sursauter ver 1.66 28.11 0.00 0.20 ind:imp:1s;ind:imp:2s; +sursautait sursauter ver 1.66 28.11 0.00 1.15 ind:imp:3s; +sursautant sursauter ver 1.66 28.11 0.00 1.89 par:pre; +sursaute sursauter ver 1.66 28.11 0.14 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sursautent sursauter ver 1.66 28.11 0.02 0.34 ind:pre:3p; +sursauter sursauter ver 1.66 28.11 0.69 5.95 inf; +sursauteraient sursauter ver 1.66 28.11 0.00 0.07 cnd:pre:3p; +sursauterais sursauter ver 1.66 28.11 0.00 0.07 cnd:pre:1s; +sursautez sursauter ver 1.66 28.11 0.01 0.14 imp:pre:2p;ind:pre:2p; +sursautons sursauter ver 1.66 28.11 0.00 0.14 ind:pre:1p; +sursautât sursauter ver 1.66 28.11 0.00 0.07 sub:imp:3s; +sursauts sursaut nom m p 0.77 21.28 0.06 3.72 +sursautèrent sursauter ver 1.66 28.11 0.00 0.14 ind:pas:3p; +sursauté sursauter ver m s 1.66 28.11 0.47 2.84 par:pas; +surseoir surseoir ver 0.12 0.74 0.10 0.47 inf; +sursis sursis nom m 3.60 7.36 3.60 7.36 +sursitaire sursitaire adj s 0.01 0.00 0.01 0.00 +sursitaires sursitaire nom p 0.00 0.07 0.00 0.07 +sursum_corda sursum_corda adv 0.00 0.20 0.00 0.20 +surtaxe surtaxe nom f s 0.13 0.14 0.13 0.07 +surtaxer surtaxer ver 0.04 0.00 0.01 0.00 inf; +surtaxes surtaxe nom f p 0.13 0.14 0.00 0.07 +surtaxés surtaxer ver m p 0.04 0.00 0.02 0.00 par:pas; +surtendu surtendu adj m s 0.00 0.07 0.00 0.07 +surtension surtension nom f s 0.37 0.00 0.37 0.00 +surtout surtout adv_sup 148.66 291.49 148.66 291.49 +surtouts surtout nom_sup m p 0.54 2.84 0.00 0.14 +surélevait surélever ver 0.34 2.50 0.00 0.07 ind:imp:3s; +surélever surélever ver 0.34 2.50 0.06 0.14 inf; +surélevez surélever ver 0.34 2.50 0.02 0.00 imp:pre:2p; +surélevé surélever ver m s 0.34 2.50 0.10 1.15 par:pas; +surélevée surélever ver f s 0.34 2.50 0.08 0.47 par:pas; +surélevées surélever ver f p 0.34 2.50 0.02 0.41 par:pas; +surélevés surélever ver m p 0.34 2.50 0.04 0.14 par:pas; +surélève surélever ver 0.34 2.50 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surélévation surélévation nom f s 0.03 0.00 0.03 0.00 +sérum sérum nom m s 4.16 0.81 4.00 0.74 +suréminente suréminent adj f s 0.00 0.07 0.00 0.07 +sérums sérum nom m p 4.16 0.81 0.15 0.07 +sérénade sérénade nom f s 1.13 1.08 1.02 0.81 +sérénades sérénade nom f p 1.13 1.08 0.11 0.27 +sérénissime sérénissime adj s 0.07 1.62 0.07 1.62 +sérénité sérénité nom f s 4.71 12.91 4.71 12.91 +suréquipée suréquiper ver f s 0.01 0.07 0.01 0.07 par:pas; +surévaluation surévaluation nom f s 0.01 0.07 0.01 0.07 +surévalué surévaluer ver m s 0.03 0.07 0.03 0.07 par:pas; +survînt survenir ver 4.86 15.54 0.00 0.20 sub:imp:3s; +surveilla surveiller ver 84.82 54.39 0.01 0.41 ind:pas:3s; +surveillaient surveiller ver 84.82 54.39 0.46 1.96 ind:imp:3p; +surveillais surveiller ver 84.82 54.39 0.98 1.89 ind:imp:1s;ind:imp:2s; +surveillait surveiller ver 84.82 54.39 1.61 8.92 ind:imp:3s; +surveillance surveillance nom f s 19.16 12.23 19.05 12.16 +surveillances surveillance nom f p 19.16 12.23 0.11 0.07 +surveillant surveillant nom m s 2.58 6.55 1.65 3.58 +surveillante surveillant nom f s 2.58 6.55 0.45 0.74 +surveillantes surveillant nom f p 2.58 6.55 0.03 0.68 +surveillants surveillant nom m p 2.58 6.55 0.45 1.55 +surveille surveiller ver 84.82 54.39 26.27 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +surveillent surveiller ver 84.82 54.39 3.72 1.69 ind:pre:3p; +surveiller surveiller ver 84.82 54.39 26.94 18.11 inf;; +surveillera surveiller ver 84.82 54.39 1.13 0.07 ind:fut:3s; +surveillerai surveiller ver 84.82 54.39 0.90 0.27 ind:fut:1s; +surveilleraient surveiller ver 84.82 54.39 0.02 0.07 cnd:pre:3p; +surveillerais surveiller ver 84.82 54.39 0.23 0.00 cnd:pre:1s;cnd:pre:2s; +surveillerait surveiller ver 84.82 54.39 0.08 0.41 cnd:pre:3s; +surveilleras surveiller ver 84.82 54.39 0.25 0.14 ind:fut:2s; +surveillerez surveiller ver 84.82 54.39 0.09 0.00 ind:fut:2p; +surveillerons surveiller ver 84.82 54.39 0.23 0.00 ind:fut:1p; +surveilleront surveiller ver 84.82 54.39 0.27 0.00 ind:fut:3p; +surveilles surveiller ver 84.82 54.39 2.09 0.34 ind:pre:2s; +surveillez surveiller ver 84.82 54.39 9.71 0.68 imp:pre:2p;ind:pre:2p; +surveilliez surveiller ver 84.82 54.39 0.41 0.00 ind:imp:2p; +surveillions surveiller ver 84.82 54.39 0.02 0.14 ind:imp:1p; +surveillons surveiller ver 84.82 54.39 0.90 0.20 imp:pre:1p;ind:pre:1p; +surveillât surveiller ver 84.82 54.39 0.00 0.07 sub:imp:3s; +surveillé surveiller ver m s 84.82 54.39 3.77 3.11 par:pas; +surveillée surveiller ver f s 84.82 54.39 2.46 2.09 par:pas; +surveillées surveiller ver f p 84.82 54.39 0.58 0.68 par:pas; +surveillés surveiller ver m p 84.82 54.39 1.33 1.49 par:pas; +survenaient survenir ver 4.86 15.54 0.00 0.41 ind:imp:3p; +survenais survenir ver 4.86 15.54 0.00 0.07 ind:imp:1s; +survenait survenir ver 4.86 15.54 0.12 1.49 ind:imp:3s; +survenant survenir ver 4.86 15.54 0.02 0.81 par:pre; +survenants survenant nom m p 0.00 0.14 0.00 0.14 +survenir survenir ver 4.86 15.54 0.80 1.69 inf; +survenu survenir ver m s 4.86 15.54 0.61 1.96 par:pas; +survenue survenir ver f s 4.86 15.54 0.32 0.95 par:pas; +survenues survenue nom f p 0.17 1.62 0.14 0.00 +survenus survenir ver m p 4.86 15.54 0.72 0.95 par:pas; +survie survie nom f s 11.64 6.08 11.64 6.08 +surviendra survenir ver 4.86 15.54 0.17 0.14 ind:fut:3s; +surviendraient survenir ver 4.86 15.54 0.00 0.14 cnd:pre:3p; +surviendrait survenir ver 4.86 15.54 0.01 0.34 cnd:pre:3s; +surviendront survenir ver 4.86 15.54 0.00 0.20 ind:fut:3p; +survienne survenir ver 4.86 15.54 0.20 0.27 sub:pre:3s; +surviennent survenir ver 4.86 15.54 0.36 0.47 ind:pre:3p; +survient survenir ver 4.86 15.54 1.01 1.96 ind:pre:3s; +survinrent survenir ver 4.86 15.54 0.14 0.34 ind:pas:3p; +survint survenir ver 4.86 15.54 0.30 2.84 ind:pas:3s; +survire survirer ver 0.01 0.00 0.01 0.00 ind:pre:3s; +survis survivre ver 63.65 27.77 1.33 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +survit survivre ver 63.65 27.77 3.88 2.23 ind:pre:3s; +survitesse survitesse nom f s 0.00 0.14 0.00 0.14 +survivaient survivre ver 63.65 27.77 0.16 0.81 ind:imp:3p; +survivais survivre ver 63.65 27.77 0.04 0.14 ind:imp:1s;ind:imp:2s; +survivait survivre ver 63.65 27.77 0.28 1.76 ind:imp:3s; +survivaliste survivaliste nom s 0.01 0.00 0.01 0.00 +survivance survivance nom f s 0.05 1.08 0.04 0.88 +survivances survivance nom f p 0.05 1.08 0.01 0.20 +survivant survivant nom m s 12.80 7.77 3.57 2.03 +survivante survivant nom f s 12.80 7.77 0.39 0.14 +survivantes survivant nom f p 12.80 7.77 0.03 0.20 +survivants survivant nom m p 12.80 7.77 8.81 5.41 +survive survivre ver 63.65 27.77 1.42 0.54 sub:pre:1s;sub:pre:3s; +survivent survivre ver 63.65 27.77 1.79 1.22 ind:pre:3p; +survives survivre ver 63.65 27.77 0.24 0.00 sub:pre:2s; +survivez survivre ver 63.65 27.77 0.30 0.00 imp:pre:2p;ind:pre:2p; +surviviez survivre ver 63.65 27.77 0.06 0.00 ind:imp:2p; +survivions survivre ver 63.65 27.77 0.06 0.00 ind:imp:1p; +survivons survivre ver 63.65 27.77 0.20 0.14 imp:pre:1p;ind:pre:1p; +survivra survivre ver 63.65 27.77 3.92 0.54 ind:fut:3s; +survivrai survivre ver 63.65 27.77 2.99 0.14 ind:fut:1s; +survivraient survivre ver 63.65 27.77 0.25 0.27 cnd:pre:3p; +survivrais survivre ver 63.65 27.77 0.46 0.07 cnd:pre:1s;cnd:pre:2s; +survivrait survivre ver 63.65 27.77 0.80 1.28 cnd:pre:3s; +survivras survivre ver 63.65 27.77 0.61 0.00 ind:fut:2s; +survivre survivre ver 63.65 27.77 22.44 11.42 inf; +survivrez survivre ver 63.65 27.77 0.61 0.00 ind:fut:2p; +survivriez survivre ver 63.65 27.77 0.06 0.00 cnd:pre:2p; +survivrons survivre ver 63.65 27.77 0.33 0.07 ind:fut:1p; +survivront survivre ver 63.65 27.77 0.94 0.54 ind:fut:3p; +survol survol nom m s 0.83 0.27 0.80 0.27 +survola survoler ver 5.38 6.22 0.01 0.14 ind:pas:3s; +survolaient survoler ver 5.38 6.22 0.04 0.41 ind:imp:3p; +survolais survoler ver 5.38 6.22 0.06 0.07 ind:imp:1s; +survolait survoler ver 5.38 6.22 0.38 0.61 ind:imp:3s; +survolant survoler ver 5.38 6.22 0.19 0.54 par:pre; +survole survoler ver 5.38 6.22 1.04 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +survolent survoler ver 5.38 6.22 0.90 0.27 ind:pre:3p; +survoler survoler ver 5.38 6.22 1.27 1.76 inf; +survolera survoler ver 5.38 6.22 0.10 0.00 ind:fut:3s; +survolerai survoler ver 5.38 6.22 0.04 0.00 ind:fut:1s; +survolerez survoler ver 5.38 6.22 0.16 0.00 ind:fut:2p; +survolerons survoler ver 5.38 6.22 0.07 0.00 ind:fut:1p; +survolez survoler ver 5.38 6.22 0.22 0.00 imp:pre:2p;ind:pre:2p; +survolions survoler ver 5.38 6.22 0.01 0.14 ind:imp:1p; +survolâmes survoler ver 5.38 6.22 0.00 0.07 ind:pas:1p; +survolons survoler ver 5.38 6.22 0.22 0.07 imp:pre:1p;ind:pre:1p; +survols survol nom m p 0.83 0.27 0.03 0.00 +survoltage survoltage nom m s 0.05 0.20 0.05 0.20 +survoltait survolter ver 0.25 0.68 0.00 0.07 ind:imp:3s; +survolteur survolteur nom m s 0.02 0.00 0.02 0.00 +survolté survolté adj m s 0.28 1.42 0.10 0.34 +survoltée survolté adj f s 0.28 1.42 0.16 0.54 +survoltées survolté adj f p 0.28 1.42 0.02 0.07 +survoltés survolter ver m p 0.25 0.68 0.05 0.14 par:pas; +survolé survoler ver m s 5.38 6.22 0.65 1.08 par:pas; +survolée survoler ver f s 5.38 6.22 0.03 0.27 par:pas; +survolées survoler ver f p 5.38 6.22 0.00 0.20 par:pas; +survécûmes survivre ver 63.65 27.77 0.01 0.00 ind:pas:1p; +survécût survivre ver 63.65 27.77 0.00 0.14 sub:imp:3s; +survécu survivre ver m s 63.65 27.77 18.74 4.53 par:pas; +survécurent survivre ver 63.65 27.77 0.27 0.00 ind:pas:3p; +survécus survivre ver 63.65 27.77 0.07 0.14 ind:pas:1s; +survécut survivre ver 63.65 27.77 0.21 0.81 ind:pas:3s; +survêt survêt nom m s 0.00 0.47 0.00 0.27 +survêtement survêtement nom m s 0.65 2.77 0.63 2.23 +survêtements survêtement nom m p 0.65 2.77 0.02 0.54 +survêts survêt nom m p 0.00 0.47 0.00 0.20 +sus_orbitaire sus_orbitaire adj m s 0.01 0.00 0.01 0.00 +sus sus adv_sup 2.57 3.65 2.57 3.65 +sésame sésame nom m s 1.26 1.35 1.26 1.35 +sésamoïdes sésamoïde adj p 0.01 0.00 0.01 0.00 +susceptibilité susceptibilité nom f s 0.09 2.57 0.09 1.49 +susceptibilités susceptibilité nom f p 0.09 2.57 0.00 1.08 +susceptible susceptible adj s 5.18 11.89 3.87 7.77 +susceptibles susceptible adj p 5.18 11.89 1.30 4.12 +suscita susciter ver 3.94 23.31 0.12 1.15 ind:pas:3s; +suscitaient susciter ver 3.94 23.31 0.01 1.49 ind:imp:3p; +suscitais susciter ver 3.94 23.31 0.10 0.14 ind:imp:1s;ind:imp:2s; +suscitait susciter ver 3.94 23.31 0.10 2.97 ind:imp:3s; +suscitant susciter ver 3.94 23.31 0.14 1.42 par:pre; +suscite susciter ver 3.94 23.31 1.08 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +suscitent susciter ver 3.94 23.31 0.16 1.01 ind:pre:3p; +susciter susciter ver 3.94 23.31 1.23 7.16 inf; +susciteraient susciter ver 3.94 23.31 0.10 0.07 cnd:pre:3p; +susciterait susciter ver 3.94 23.31 0.01 0.20 cnd:pre:3s; +susciteront susciter ver 3.94 23.31 0.00 0.07 ind:fut:3p; +suscites susciter ver 3.94 23.31 0.02 0.07 ind:pre:2s; +suscité susciter ver m s 3.94 23.31 0.59 2.23 par:pas; +suscitée susciter ver f s 3.94 23.31 0.21 1.42 par:pas; +suscitées susciter ver f p 3.94 23.31 0.02 0.47 par:pas; +suscités susciter ver m p 3.94 23.31 0.04 0.61 par:pas; +suscription suscription nom f s 0.00 0.14 0.00 0.14 +susdit susdit adj m s 0.14 0.47 0.12 0.27 +susdite susdit nom f s 0.31 0.07 0.20 0.00 +susdites susdit adj f p 0.14 0.47 0.00 0.14 +sushi sushi nom m 2.03 0.00 2.03 0.00 +susmentionné susmentionné adj m s 0.30 0.07 0.19 0.00 +susmentionnée susmentionné adj f s 0.30 0.07 0.11 0.07 +susnommé susnommé adj m s 0.05 0.27 0.04 0.07 +susnommée susnommé adj f s 0.05 0.27 0.01 0.14 +susnommés susnommé adj m p 0.05 0.27 0.00 0.07 +suspect suspect nom m s 32.45 3.65 22.86 1.55 +suspectaient suspecter ver 6.13 3.38 0.00 0.14 ind:imp:3p; +suspectais suspecter ver 6.13 3.38 0.10 0.07 ind:imp:1s;ind:imp:2s; +suspectait suspecter ver 6.13 3.38 0.29 0.20 ind:imp:3s; +suspectant suspecter ver 6.13 3.38 0.11 0.07 par:pre; +suspecte suspect adj f s 12.95 16.82 2.34 4.93 +suspectent suspecter ver 6.13 3.38 0.25 0.00 ind:pre:3p; +suspecter suspecter ver 6.13 3.38 0.95 0.88 inf; +suspectera suspecter ver 6.13 3.38 0.07 0.00 ind:fut:3s; +suspecteraient suspecter ver 6.13 3.38 0.00 0.07 cnd:pre:3p; +suspecterait suspecter ver 6.13 3.38 0.05 0.00 cnd:pre:3s; +suspecteront suspecter ver 6.13 3.38 0.03 0.00 ind:fut:3p; +suspectes suspect adj f p 12.95 16.82 0.69 1.49 +suspectez suspecter ver 6.13 3.38 0.34 0.00 imp:pre:2p;ind:pre:2p; +suspectiez suspecter ver 6.13 3.38 0.11 0.00 ind:imp:2p; +suspectons suspecter ver 6.13 3.38 0.12 0.07 imp:pre:1p;ind:pre:1p; +suspects suspect nom m p 32.45 3.65 8.81 1.76 +suspecté suspecter ver m s 6.13 3.38 1.48 0.88 par:pas; +suspectée suspecter ver f s 6.13 3.38 0.38 0.14 par:pas; +suspectées suspecter ver f p 6.13 3.38 0.04 0.00 par:pas; +suspectés suspecter ver m p 6.13 3.38 0.16 0.41 par:pas; +suspend suspendre ver 13.99 39.32 0.53 1.55 ind:pre:3s; +suspendît suspendre ver 13.99 39.32 0.00 0.07 sub:imp:3s; +suspendaient suspendre ver 13.99 39.32 0.02 0.27 ind:imp:3p; +suspendais suspendre ver 13.99 39.32 0.01 0.07 ind:imp:1s; +suspendait suspendre ver 13.99 39.32 0.03 1.28 ind:imp:3s; +suspendant suspendre ver 13.99 39.32 0.04 0.74 par:pre; +suspende suspendre ver 13.99 39.32 0.13 0.00 sub:pre:1s;sub:pre:3s; +suspendent suspendre ver 13.99 39.32 0.04 0.27 ind:pre:3p; +suspendez suspendre ver 13.99 39.32 0.54 0.07 imp:pre:2p;ind:pre:2p; +suspendirent suspendre ver 13.99 39.32 0.00 0.20 ind:pas:3p; +suspendit suspendre ver 13.99 39.32 0.01 1.96 ind:pas:3s; +suspendons suspendre ver 13.99 39.32 0.06 0.20 imp:pre:1p;ind:pre:1p; +suspendra suspendre ver 13.99 39.32 0.08 0.07 ind:fut:3s; +suspendrai suspendre ver 13.99 39.32 0.06 0.00 ind:fut:1s; +suspendrait suspendre ver 13.99 39.32 0.10 0.27 cnd:pre:3s; +suspendre suspendre ver 13.99 39.32 2.42 4.19 inf;; +suspendrez suspendre ver 13.99 39.32 0.01 0.00 ind:fut:2p; +suspendrons suspendre ver 13.99 39.32 0.04 0.00 ind:fut:1p; +suspendront suspendre ver 13.99 39.32 0.03 0.07 ind:fut:3p; +suspends suspendre ver 13.99 39.32 0.98 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +suspendu suspendre ver m s 13.99 39.32 4.41 12.77 par:pas; +suspendue suspendre ver f s 13.99 39.32 2.59 7.50 par:pas; +suspendues suspendre ver f p 13.99 39.32 0.75 3.11 par:pas; +suspendus suspendre ver m p 13.99 39.32 1.13 4.39 par:pas; +suspens suspens nom m 1.44 7.43 1.44 7.43 +suspense suspense nom s 4.09 1.76 4.08 1.62 +suspenses suspense nom p 4.09 1.76 0.01 0.14 +suspenseur suspenseur adj m s 0.01 0.07 0.01 0.00 +suspenseurs suspenseur adj m p 0.01 0.07 0.00 0.07 +suspensif suspensif adj m s 0.01 0.07 0.00 0.07 +suspension suspension nom f s 4.06 7.91 3.92 7.23 +suspensions suspension nom f p 4.06 7.91 0.14 0.68 +suspensive suspensif adj f s 0.01 0.07 0.01 0.00 +suspensoir suspensoir nom m s 0.11 0.14 0.09 0.14 +suspensoirs suspensoir nom m p 0.11 0.14 0.02 0.00 +suspente suspente nom f s 0.01 0.14 0.00 0.07 +suspentes suspente nom f p 0.01 0.14 0.01 0.07 +suspicieuse suspicieux adj f s 1.10 0.88 0.33 0.34 +suspicieusement suspicieusement adv 0.04 0.14 0.04 0.14 +suspicieuses suspicieux adj f p 1.10 0.88 0.12 0.00 +suspicieux suspicieux adj m 1.10 0.88 0.65 0.54 +suspicion suspicion nom f s 1.44 2.57 1.21 2.23 +suspicions suspicion nom f p 1.44 2.57 0.23 0.34 +susse savoir ver_sup 4516.72 2003.58 0.00 0.20 sub:imp:1s; +sussent savoir ver_sup 4516.72 2003.58 0.00 0.14 sub:imp:3p; +sustentation sustentation nom f s 0.01 0.14 0.01 0.14 +sustente sustenter ver 0.11 0.68 0.04 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +sustenter sustenter ver 0.11 0.68 0.08 0.54 inf; +sustentés sustenter ver m p 0.11 0.68 0.00 0.07 par:pas; +susu susu adj s 0.00 0.07 0.00 0.07 +susucre susucre nom m s 0.00 0.20 0.00 0.20 +susurra susurrer ver 0.22 4.86 0.00 1.08 ind:pas:3s; +susurrai susurrer ver 0.22 4.86 0.00 0.07 ind:pas:1s; +susurraient susurrer ver 0.22 4.86 0.00 0.14 ind:imp:3p; +susurrait susurrer ver 0.22 4.86 0.01 0.74 ind:imp:3s; +susurrant susurrer ver 0.22 4.86 0.13 0.14 par:pre; +susurre susurrer ver 0.22 4.86 0.01 1.01 imp:pre:2s;ind:pre:3s; +susurrement susurrement nom m s 0.00 0.47 0.00 0.14 +susurrements susurrement nom m p 0.00 0.47 0.00 0.34 +susurrent susurrer ver 0.22 4.86 0.02 0.34 ind:pre:3p; +susurrer susurrer ver 0.22 4.86 0.01 0.54 inf; +susurrerai susurrer ver 0.22 4.86 0.01 0.00 ind:fut:1s; +susurré susurrer ver m s 0.22 4.86 0.01 0.54 par:pas; +susurrée susurrer ver f s 0.22 4.86 0.00 0.14 par:pas; +susurrées susurrer ver f p 0.22 4.86 0.01 0.07 par:pas; +susurrés susurrer ver m p 0.22 4.86 0.00 0.07 par:pas; +susvisée susvisé adj f s 0.00 0.07 0.00 0.07 +sut savoir ver_sup 4516.72 2003.58 1.68 20.41 ind:pas:3s; +suça sucer ver 23.45 18.51 0.14 0.54 ind:pas:3s; +suçage suçage nom m s 0.01 0.07 0.01 0.00 +suçages suçage nom m p 0.01 0.07 0.00 0.07 +suçaient sucer ver 23.45 18.51 0.02 0.81 ind:imp:3p; +suçais sucer ver 23.45 18.51 0.32 0.20 ind:imp:1s;ind:imp:2s; +suçait sucer ver 23.45 18.51 0.21 2.36 ind:imp:3s; +suçant sucer ver 23.45 18.51 0.39 1.96 par:pre; +suède suède nom m s 0.00 0.07 0.00 0.07 +suçoir suçoir nom m s 0.00 0.27 0.00 0.14 +suçoirs suçoir nom m p 0.00 0.27 0.00 0.14 +suçon suçon nom m s 1.05 0.14 0.89 0.00 +suçons suçon nom m p 1.05 0.14 0.17 0.14 +suçota suçoter ver 0.01 1.35 0.00 0.07 ind:pas:3s; +suçotait suçoter ver 0.01 1.35 0.00 0.27 ind:imp:3s; +suçotant suçoter ver 0.01 1.35 0.00 0.07 par:pre; +suçote suçoter ver 0.01 1.35 0.00 0.34 ind:pre:1s;ind:pre:3s; +suçotements suçotement nom m p 0.00 0.07 0.00 0.07 +suçotent suçoter ver 0.01 1.35 0.00 0.07 ind:pre:3p; +suçoter suçoter ver 0.01 1.35 0.01 0.41 inf; +suçoté suçoter ver m s 0.01 1.35 0.00 0.14 par:pas; +séton séton nom m s 0.00 0.07 0.00 0.07 +sutra sutra nom m s 0.20 0.20 0.20 0.20 +sutémi sutémi nom m s 0.00 0.14 0.00 0.14 +suturant suturer ver 0.45 0.27 0.00 0.07 par:pre; +suture suture nom f s 4.54 0.68 3.77 0.47 +suturer suturer ver 0.45 0.27 0.38 0.07 inf; +sutures suture nom f p 4.54 0.68 0.77 0.20 +suturé suturer ver m s 0.45 0.27 0.06 0.07 par:pas; +suturée suturer ver f s 0.45 0.27 0.01 0.07 par:pas; +sué suer ver m s 7.28 10.34 2.50 0.41 par:pas; +suédine suédine nom f s 0.00 0.54 0.00 0.54 +suédois suédois nom m 4.76 2.64 3.21 1.49 +suédoise suédois adj f s 3.67 6.89 1.41 2.77 +suédoises suédois nom f p 4.76 2.64 0.69 0.34 +suée suée nom f s 0.35 1.96 0.33 0.81 +suées suée nom f p 0.35 1.96 0.02 1.15 +sévît sévir ver 3.23 5.61 0.00 0.07 sub:imp:3s; +sévi sévir ver m s 3.23 5.61 0.14 0.68 par:pas; +sévice sévices nom m s 1.25 2.50 0.12 0.34 +sévices sévices nom m p 1.25 2.50 1.13 2.16 +sévillan sévillan nom m s 0.00 0.27 0.00 0.07 +sévillane sévillan nom f s 0.00 0.27 0.00 0.20 +sévir sévir ver 3.23 5.61 0.75 1.62 inf; +sévira sévir ver 3.23 5.61 0.04 0.00 ind:fut:3s; +sévirai sévir ver 3.23 5.61 0.14 0.07 ind:fut:1s; +sévissaient sévir ver 3.23 5.61 0.10 0.34 ind:imp:3p; +sévissais sévir ver 3.23 5.61 0.00 0.07 ind:imp:1s; +sévissait sévir ver 3.23 5.61 0.50 1.01 ind:imp:3s; +sévissant sévir ver 3.23 5.61 0.01 0.00 par:pre; +sévisse sévir ver 3.23 5.61 0.03 0.07 sub:pre:3s; +sévissent sévir ver 3.23 5.61 0.18 0.34 ind:pre:3p; +sévit sévir ver 3.23 5.61 1.33 1.35 ind:pre:3s;ind:pas:3s; +sévrienne sévrienne nom f s 0.00 0.14 0.00 0.07 +sévriennes sévrienne nom f p 0.00 0.14 0.00 0.07 +sévère sévère adj s 9.47 29.73 8.28 22.91 +sévèrement sévèrement adv 2.46 6.08 2.46 6.08 +sévères sévère adj p 9.47 29.73 1.20 6.82 +sévérité sévérité nom f s 0.96 7.16 0.95 6.89 +sévérités sévérité nom f p 0.96 7.16 0.01 0.27 +suzerain suzerain nom m s 0.20 0.68 0.20 0.47 +suzeraine suzerain nom f s 0.20 0.68 0.00 0.14 +suzeraineté suzeraineté nom f s 0.01 0.14 0.01 0.14 +suzerains suzerain nom m p 0.20 0.68 0.00 0.07 +sézigue sézigue pro_per s 0.00 0.27 0.00 0.27 +svastika svastika nom m s 0.09 0.20 0.09 0.14 +svastikas svastika nom m p 0.09 0.20 0.00 0.07 +svelte svelte adj s 0.43 2.77 0.39 2.43 +sveltes svelte adj p 0.43 2.77 0.04 0.34 +sveltesse sveltesse nom f s 0.00 0.61 0.00 0.61 +svp svp adv 6.36 0.07 6.36 0.07 +swahili swahili nom m s 0.00 0.54 0.00 0.54 +sweat_shirt sweat_shirt nom m s 0.00 0.20 0.00 0.20 +sweater sweater nom m s 0.00 1.01 0.00 0.74 +sweaters sweater nom m p 0.00 1.01 0.00 0.27 +sweepstake sweepstake nom m s 0.00 0.07 0.00 0.07 +swiftiennes swiftien adj f p 0.00 0.07 0.00 0.07 +swing swing nom m s 0.00 0.88 0.00 0.74 +swings swing nom m p 0.00 0.88 0.00 0.14 +swinguaient swinguer ver 0.00 0.07 0.00 0.07 ind:imp:3p; +sybarites sybarite adj p 0.01 0.00 0.01 0.00 +sybaritisme sybaritisme nom m s 0.00 0.07 0.00 0.07 +sycomore sycomore nom m s 0.14 1.08 0.11 0.34 +sycomores sycomore nom m p 0.14 1.08 0.04 0.74 +sycophante sycophante nom m s 0.03 0.07 0.03 0.00 +sycophantes sycophante nom m p 0.03 0.07 0.00 0.07 +syllabe syllabe nom f s 1.52 11.28 0.65 2.30 +syllabes syllabe nom f p 1.52 11.28 0.88 8.99 +syllabus syllabus nom m 0.01 0.00 0.01 0.00 +syllepse syllepse nom f s 0.00 0.07 0.00 0.07 +syllogisme syllogisme nom m s 0.13 0.54 0.13 0.14 +syllogismes syllogisme nom m p 0.13 0.54 0.00 0.41 +syllogistique syllogistique adj f s 0.01 0.07 0.01 0.00 +syllogistiques syllogistique adj p 0.01 0.07 0.00 0.07 +sylphes sylphe nom m p 0.02 0.07 0.02 0.07 +sylphide sylphide nom f s 0.01 0.27 0.00 0.07 +sylphides sylphide nom f p 0.01 0.27 0.01 0.20 +sylvain sylvain nom m s 0.20 0.07 0.20 0.00 +sylvains sylvain nom m p 0.20 0.07 0.00 0.07 +sylvaner sylvaner nom m s 0.00 0.14 0.00 0.14 +sylve sylve nom f s 0.00 0.14 0.00 0.14 +sylvestre sylvestre adj s 0.35 1.22 0.23 0.81 +sylvestres sylvestre adj p 0.35 1.22 0.12 0.41 +sylviculture sylviculture nom f s 0.01 0.14 0.01 0.14 +sylvie sylvie nom f s 0.00 2.09 0.00 2.09 +symbionte symbionte nom m s 0.01 0.00 0.01 0.00 +symbiose symbiose nom f s 0.68 0.41 0.68 0.41 +symbiote symbiote nom m s 4.04 0.00 3.38 0.00 +symbiotes symbiote nom m p 4.04 0.00 0.66 0.00 +symbiotique symbiotique adj s 0.36 0.00 0.36 0.00 +symbole symbole nom m s 14.95 18.92 10.74 12.57 +symboles symbole nom m p 14.95 18.92 4.20 6.35 +symbolique symbolique adj s 2.35 9.53 2.23 7.91 +symboliquement symboliquement adv 0.21 0.88 0.21 0.88 +symboliques symbolique adj p 2.35 9.53 0.12 1.62 +symbolisa symboliser ver 2.65 5.07 0.00 0.07 ind:pas:3s; +symbolisaient symboliser ver 2.65 5.07 0.04 0.20 ind:imp:3p; +symbolisait symboliser ver 2.65 5.07 0.18 1.28 ind:imp:3s; +symbolisant symboliser ver 2.65 5.07 0.20 0.47 par:pre; +symbolisation symbolisation nom f s 0.00 0.14 0.00 0.14 +symbolise symboliser ver 2.65 5.07 1.17 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +symbolisent symboliser ver 2.65 5.07 0.30 0.54 ind:pre:3p; +symboliser symboliser ver 2.65 5.07 0.28 0.61 inf; +symbolisera symboliser ver 2.65 5.07 0.03 0.07 ind:fut:3s; +symboliserai symboliser ver 2.65 5.07 0.01 0.00 ind:fut:1s; +symboliserait symboliser ver 2.65 5.07 0.01 0.00 cnd:pre:3s; +symbolisme symbolisme nom m s 0.19 0.81 0.19 0.81 +symbolisât symboliser ver 2.65 5.07 0.00 0.07 sub:imp:3s; +symboliste symboliste adj s 0.01 0.20 0.01 0.20 +symbolisé symboliser ver m s 2.65 5.07 0.14 0.27 par:pas; +symbolisée symboliser ver f s 2.65 5.07 0.04 0.34 par:pas; +symbolisés symboliser ver m p 2.65 5.07 0.23 0.07 par:pas; +sympa sympa adj s 83.39 7.77 77.46 7.16 +sympas sympa adj p 83.39 7.77 5.92 0.61 +sympathectomie sympathectomie nom f s 0.01 0.07 0.01 0.07 +sympathie sympathie nom f s 7.68 26.15 6.87 24.05 +sympathies sympathie nom f p 7.68 26.15 0.81 2.09 +sympathique sympathique adj s 16.23 15.54 12.79 13.11 +sympathiques sympathique adj p 16.23 15.54 3.45 2.43 +sympathisai sympathiser ver 2.12 1.96 0.00 0.07 ind:pas:1s; +sympathisaient sympathiser ver 2.12 1.96 0.01 0.00 ind:imp:3p; +sympathisait sympathiser ver 2.12 1.96 0.02 0.41 ind:imp:3s; +sympathisant sympathisant nom m s 0.75 1.62 0.33 0.20 +sympathisante sympathisant nom f s 0.75 1.62 0.03 0.00 +sympathisantes sympathisant adj f p 0.41 0.20 0.02 0.07 +sympathisants sympathisant nom m p 0.75 1.62 0.36 1.42 +sympathise sympathiser ver 2.12 1.96 0.40 0.20 ind:pre:1s;ind:pre:3s; +sympathiser sympathiser ver 2.12 1.96 0.42 0.47 inf; +sympathisera sympathiser ver 2.12 1.96 0.00 0.07 ind:fut:3s; +sympathiserez sympathiser ver 2.12 1.96 0.01 0.00 ind:fut:2p; +sympathisez sympathiser ver 2.12 1.96 0.04 0.00 ind:pre:2p; +sympathisions sympathiser ver 2.12 1.96 0.00 0.07 ind:imp:1p; +sympathisons sympathiser ver 2.12 1.96 0.00 0.14 ind:pre:1p; +sympathisé sympathiser ver m s 2.12 1.96 1.21 0.54 par:pas; +sympathomimétique sympathomimétique adj s 0.01 0.00 0.01 0.00 +symphonie symphonie nom f s 1.63 5.54 1.30 4.86 +symphonies symphonie nom f p 1.63 5.54 0.32 0.68 +symphonique symphonique adj s 1.02 0.14 1.01 0.14 +symphoniques symphonique adj m p 1.02 0.14 0.01 0.00 +symphorines symphorine nom f p 0.00 0.07 0.00 0.07 +symphyse symphyse nom f s 0.05 0.00 0.05 0.00 +symposium symposium nom m s 0.15 0.81 0.14 0.68 +symposiums symposium nom m p 0.15 0.81 0.01 0.14 +symptôme symptôme nom m s 11.64 4.39 2.03 1.22 +symptômes symptôme nom m p 11.64 4.39 9.61 3.18 +symptomatique symptomatique adj m s 0.25 0.41 0.11 0.34 +symptomatiques symptomatique adj m p 0.25 0.41 0.14 0.07 +symptomatologie symptomatologie nom f s 0.11 0.00 0.11 0.00 +symétrie symétrie nom f s 1.20 2.97 1.20 2.70 +symétries symétrie nom f p 1.20 2.97 0.00 0.27 +symétrique symétrique adj s 1.03 3.92 0.46 2.16 +symétriquement symétriquement adv 0.03 0.95 0.03 0.95 +symétriques symétrique adj p 1.03 3.92 0.57 1.76 +synagogale synagogal adj f s 0.00 0.14 0.00 0.07 +synagogaux synagogal adj m p 0.00 0.14 0.00 0.07 +synagogue synagogue nom f s 2.88 3.65 2.31 3.11 +synagogues synagogue nom f p 2.88 3.65 0.57 0.54 +synapse synapse nom f s 0.70 0.34 0.32 0.07 +synapses synapse nom f p 0.70 0.34 0.38 0.27 +synaptique synaptique adj s 0.23 0.00 0.16 0.00 +synaptiques synaptique adj m p 0.23 0.00 0.07 0.00 +synchro synchro adj s 1.97 0.14 1.93 0.14 +synchrone synchrone adj s 0.16 0.54 0.10 0.07 +synchrones synchrone adj p 0.16 0.54 0.06 0.47 +synchronie synchronie nom f s 0.00 0.07 0.00 0.07 +synchronique synchronique adj s 0.02 0.07 0.02 0.07 +synchronisaient synchroniser ver 2.09 0.54 0.01 0.00 ind:imp:3p; +synchronisation synchronisation nom f s 1.87 0.27 1.87 0.27 +synchronise synchroniser ver 2.09 0.54 0.22 0.00 imp:pre:2s;ind:pre:3s; +synchroniser synchroniser ver 2.09 0.54 0.27 0.07 inf; +synchronisera synchroniser ver 2.09 0.54 0.04 0.00 ind:fut:3s; +synchroniseur synchroniseur nom m s 0.05 0.00 0.05 0.00 +synchronisez synchroniser ver 2.09 0.54 0.26 0.00 imp:pre:2p; +synchronisme synchronisme nom m s 0.08 0.54 0.08 0.54 +synchronisons synchroniser ver 2.09 0.54 0.34 0.00 imp:pre:1p;ind:pre:1p; +synchronisé synchroniser ver m s 2.09 0.54 0.44 0.34 par:pas; +synchronisée synchroniser ver f s 2.09 0.54 0.14 0.07 par:pas; +synchronisées synchroniser ver f p 2.09 0.54 0.08 0.07 par:pas; +synchronisés synchroniser ver m p 2.09 0.54 0.29 0.00 par:pas; +synchros synchro adj p 1.97 0.14 0.04 0.00 +synchrotron synchrotron nom m s 0.01 0.00 0.01 0.00 +syncopal syncopal adj m s 0.01 0.07 0.01 0.07 +syncope syncope nom f s 0.76 1.76 0.73 1.35 +syncoper syncoper ver 0.02 0.54 0.01 0.00 inf; +syncopes syncope nom f p 0.76 1.76 0.02 0.41 +syncopé syncopé adj m s 0.05 0.95 0.03 0.34 +syncopée syncopé adj f s 0.05 0.95 0.01 0.14 +syncopées syncopé adj f p 0.05 0.95 0.01 0.14 +syncopés syncoper ver m p 0.02 0.54 0.01 0.07 par:pas; +syncrétisme syncrétisme nom m s 0.00 0.14 0.00 0.14 +syncrétiste syncrétiste adj s 0.00 0.07 0.00 0.07 +syncytial syncytial adj m s 0.01 0.00 0.01 0.00 +syndic syndic nom m s 0.61 1.08 0.48 0.95 +syndical syndical adj m s 1.50 2.23 0.65 0.47 +syndicale syndical adj f s 1.50 2.23 0.38 0.95 +syndicales syndical adj f p 1.50 2.23 0.33 0.41 +syndicalisation syndicalisation nom f s 0.04 0.00 0.04 0.00 +syndicaliser syndicaliser ver 0.02 0.00 0.02 0.00 inf; +syndicalisme syndicalisme nom m s 0.04 0.95 0.04 0.95 +syndicaliste syndicaliste nom s 0.53 0.74 0.30 0.41 +syndicalistes syndicaliste nom p 0.53 0.74 0.23 0.34 +syndicat syndicat nom m s 14.25 8.45 9.93 5.20 +syndication syndication nom f s 0.05 0.00 0.05 0.00 +syndicats syndicat nom m p 14.25 8.45 4.33 3.24 +syndicaux syndical adj m p 1.50 2.23 0.15 0.41 +syndics syndic nom m p 0.61 1.08 0.14 0.14 +syndique syndiquer ver 0.63 0.68 0.03 0.07 ind:pre:1s;ind:pre:3s; +syndiquer syndiquer ver 0.63 0.68 0.23 0.07 inf; +syndiquez syndiquer ver 0.63 0.68 0.05 0.00 imp:pre:2p; +syndiqué syndiqué adj m s 0.45 0.61 0.24 0.14 +syndiquée syndiquer ver f s 0.63 0.68 0.04 0.00 par:pas; +syndiquées syndiqué adj f p 0.45 0.61 0.02 0.07 +syndiqués syndiqué adj m p 0.45 0.61 0.15 0.41 +syndrome syndrome nom m s 5.47 0.81 5.26 0.68 +syndromes syndrome nom m p 5.47 0.81 0.21 0.14 +synecdoque synecdoque nom f s 0.00 0.14 0.00 0.14 +synergie synergie nom f s 0.15 0.00 0.14 0.00 +synergies synergie nom f p 0.15 0.00 0.01 0.00 +synergique synergique adj f s 0.02 0.00 0.02 0.00 +synergétique synergétique adj m s 0.03 0.00 0.03 0.00 +synesthésie synesthésie nom f s 0.01 0.00 0.01 0.00 +synode synode nom m s 0.20 0.07 0.20 0.07 +synonyme synonyme adj s 0.97 1.49 0.84 1.08 +synonymes synonyme adj f p 0.97 1.49 0.13 0.41 +synopsie synopsie nom f s 0.01 0.00 0.01 0.00 +synopsis synopsis nom m 0.17 0.47 0.17 0.47 +synoptique synoptique adj s 0.01 0.07 0.01 0.07 +synoviales synovial adj f p 0.01 0.00 0.01 0.00 +synovite synovite nom f s 0.04 0.00 0.04 0.00 +syntagme syntagme nom m s 0.00 0.07 0.00 0.07 +syntaxe syntaxe nom f s 0.27 2.03 0.27 1.96 +syntaxes syntaxe nom f p 0.27 2.03 0.00 0.07 +syntaxique syntaxique adj m s 0.01 0.00 0.01 0.00 +synthèse synthèse nom f s 1.63 1.96 1.62 1.82 +synthèses synthèse nom f p 1.63 1.96 0.01 0.14 +synthé synthé nom m s 0.61 0.27 0.60 0.20 +synthés synthé nom m p 0.61 0.27 0.01 0.07 +synthétique synthétique adj s 3.05 2.64 1.58 1.96 +synthétiquement synthétiquement adv 0.01 0.00 0.01 0.00 +synthétiques synthétique adj p 3.05 2.64 1.47 0.68 +synthétise synthétiser ver 0.61 0.20 0.04 0.20 ind:pre:1s;ind:pre:3s; +synthétisent synthétiser ver 0.61 0.20 0.01 0.00 ind:pre:3p; +synthétiser synthétiser ver 0.61 0.20 0.32 0.00 inf; +synthétisera synthétiser ver 0.61 0.20 0.01 0.00 ind:fut:3s; +synthétiseur synthétiseur nom m s 0.39 0.41 0.36 0.34 +synthétiseurs synthétiseur nom m p 0.39 0.41 0.03 0.07 +synthétisé synthétiser ver m s 0.61 0.20 0.16 0.00 par:pas; +synthétisée synthétiser ver f s 0.61 0.20 0.05 0.00 par:pas; +synthétisés synthétiser ver m p 0.61 0.20 0.02 0.00 par:pas; +synérèses synérèse nom f p 0.00 0.07 0.00 0.07 +syphilis syphilis nom f 1.53 1.01 1.53 1.01 +syphilitique syphilitique adj s 0.86 0.61 0.71 0.41 +syphilitiques syphilitique adj p 0.86 0.61 0.15 0.20 +syrah syrah nom f s 0.09 0.00 0.09 0.00 +syriaque syriaque nom s 0.00 0.07 0.00 0.07 +syriaques syriaque adj p 0.00 0.07 0.00 0.07 +syrien syrien adj m s 1.79 6.82 0.81 2.30 +syrienne syrien adj f s 1.79 6.82 0.58 1.76 +syriennes syrienne adj f p 0.03 0.00 0.03 0.00 +syriens syrien nom m p 1.40 1.42 1.38 0.88 +syringomyélie syringomyélie nom f s 0.01 0.00 0.01 0.00 +syrinx syrinx nom f 0.00 0.07 0.00 0.07 +syro syro adv 0.03 0.20 0.03 0.20 +syrtes syrte nom f p 0.00 5.47 0.00 5.47 +systole systole nom f s 0.01 0.20 0.01 0.20 +systolique systolique adj s 0.77 0.07 0.76 0.00 +systoliques systolique adj p 0.77 0.07 0.01 0.07 +système système nom m s 76.92 46.96 66.12 42.23 +systèmes_clé systèmes_clé nom m p 0.03 0.00 0.03 0.00 +systèmes système nom m p 76.92 46.96 10.80 4.73 +systématique systématique adj s 0.86 3.85 0.67 3.45 +systématiquement systématiquement adv 1.25 4.19 1.25 4.19 +systématiques systématique adj p 0.86 3.85 0.19 0.41 +systématisation systématisation nom f s 0.00 0.07 0.00 0.07 +systématiser systématiser ver 0.00 0.07 0.00 0.07 inf; +systématisé systématisé adj m s 0.00 0.27 0.00 0.07 +systématisée systématisé adj f s 0.00 0.27 0.00 0.14 +systématisés systématisé adj m p 0.00 0.27 0.00 0.07 +systémique systémique adj s 0.14 0.00 0.14 0.00 +syénite syénite nom f s 0.01 0.00 0.01 0.00 +syzygie syzygie nom m s 0.00 0.20 0.00 0.14 +syzygies syzygie nom m p 0.00 0.20 0.00 0.07 +t t pro_per s 4344.23 779.93 4344.23 779.93 +t_shirt t_shirt nom m s 10.87 0.54 7.59 0.20 +t_shirt t_shirt nom m p 10.87 0.54 3.28 0.34 +tînmes tenir ver 504.69 741.22 0.00 0.20 ind:pas:1p; +tînt tenir ver 504.69 741.22 0.00 2.57 sub:imp:3s; +tôlarde tôlard nom f s 0.01 0.00 0.01 0.00 +tôle tôle nom f s 3.58 15.41 3.29 12.50 +tôlerie tôlerie nom f s 0.00 0.20 0.00 0.20 +tôles tôle nom f p 3.58 15.41 0.29 2.91 +tôlier tôlier nom m s 0.02 0.27 0.01 0.14 +tôliers tôlier nom m p 0.02 0.27 0.00 0.07 +tôlière tôlier nom f s 0.02 0.27 0.01 0.07 +tôt_fait tôt_fait nom m s 0.00 0.07 0.00 0.07 +tôt tôt adv 129.98 126.76 129.98 126.76 +tûmes taire ver 154.47 139.80 0.00 0.20 ind:pas:1p; +tût taire ver 154.47 139.80 0.03 0.41 sub:imp:3s; +ta ta adj_pos 1265.97 251.69 1265.97 251.69 +taï_chi taï_chi nom m s 0.16 0.00 0.16 0.00 +taïaut taïaut ono 0.20 0.74 0.20 0.74 +taïga taïga nom f s 1.50 0.95 1.50 0.88 +taïgas taïga nom f p 1.50 0.95 0.00 0.07 +tab tab adj m s 0.23 0.00 0.23 0.00 +tabac tabac nom m s 16.00 41.89 15.70 41.28 +tabacs tabac nom m p 16.00 41.89 0.30 0.61 +tabagie tabagie nom f s 0.15 0.41 0.15 0.27 +tabagies tabagie nom f p 0.15 0.41 0.00 0.14 +tabagisme tabagisme nom m s 0.26 0.00 0.26 0.00 +tabard tabard nom m s 0.13 0.00 0.13 0.00 +tabaski tabaski nom f s 0.00 0.07 0.00 0.07 +tabassage tabassage nom m s 0.07 0.27 0.07 0.14 +tabassages tabassage nom m p 0.07 0.27 0.00 0.14 +tabassaient tabasser ver 12.71 2.30 0.04 0.00 ind:imp:3p; +tabassais tabasser ver 12.71 2.30 0.14 0.00 ind:imp:1s;ind:imp:2s; +tabassait tabasser ver 12.71 2.30 0.33 0.14 ind:imp:3s; +tabassant tabasser ver 12.71 2.30 0.01 0.00 par:pre; +tabasse tabasser ver 12.71 2.30 1.96 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tabassent tabasser ver 12.71 2.30 0.38 0.07 ind:pre:3p; +tabasser tabasser ver 12.71 2.30 4.91 1.01 inf; +tabassera tabasser ver 12.71 2.30 0.08 0.00 ind:fut:3s; +tabasseraient tabasser ver 12.71 2.30 0.01 0.00 cnd:pre:3p; +tabasserais tabasser ver 12.71 2.30 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +tabasses tabasser ver 12.71 2.30 0.25 0.07 ind:pre:2s; +tabassez tabasser ver 12.71 2.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +tabassons tabasser ver 12.71 2.30 0.01 0.07 imp:pre:1p;ind:pre:1p; +tabassèrent tabasser ver 12.71 2.30 0.01 0.00 ind:pas:3p; +tabassé tabasser ver m s 12.71 2.30 3.59 0.34 par:pas; +tabassée tabasser ver f s 12.71 2.30 0.48 0.14 par:pas; +tabassés tabasser ver m p 12.71 2.30 0.26 0.20 par:pas; +tabatière tabatière nom f s 0.46 2.57 0.35 2.16 +tabatières tabatière nom f p 0.46 2.57 0.11 0.41 +tabellion tabellion nom m s 0.00 0.20 0.00 0.14 +tabellions tabellion nom m p 0.00 0.20 0.00 0.07 +tabernacle tabernacle nom m s 0.69 2.16 0.69 2.03 +tabernacles tabernacle nom m p 0.69 2.16 0.00 0.14 +tabla tabler ver 0.95 1.62 0.01 0.00 ind:pas:3s; +tablais tabler ver 0.95 1.62 0.01 0.00 ind:imp:2s; +tablant tabler ver 0.95 1.62 0.01 0.14 par:pre; +tablature tablature nom f s 0.00 0.07 0.00 0.07 +table_bureau table_bureau nom f s 0.00 0.07 0.00 0.07 +table_coiffeuse table_coiffeuse nom f s 0.00 0.27 0.00 0.27 +table table nom f s 118.37 379.80 111.44 341.08 +tableau tableau nom m s 50.11 90.00 37.80 57.84 +tableautin tableautin nom m s 0.00 0.27 0.00 0.07 +tableautins tableautin nom m p 0.00 0.27 0.00 0.20 +tableaux tableau nom m p 50.11 90.00 12.31 32.16 +tabler tabler ver 0.95 1.62 0.04 0.54 inf; +tablerez tabler ver 0.95 1.62 0.01 0.00 ind:fut:2p; +tables table nom f p 118.37 379.80 6.92 38.72 +tablette tablette nom f s 2.70 9.86 2.08 6.76 +tabletterie tabletterie nom f s 0.00 0.07 0.00 0.07 +tablettes tablette nom f p 2.70 9.86 0.63 3.11 +tableur tableur nom m s 0.05 0.00 0.05 0.00 +tablier tablier nom m s 4.98 30.34 4.13 27.16 +tabliers tablier nom m p 4.98 30.34 0.86 3.18 +tabloïd tabloïd nom m s 0.45 0.00 0.17 0.00 +tabloïde tabloïde nom s 0.11 0.07 0.04 0.07 +tabloïdes tabloïde nom p 0.11 0.07 0.07 0.00 +tabloïds tabloïd nom m p 0.45 0.00 0.27 0.00 +tablons tabler ver 0.95 1.62 0.02 0.00 imp:pre:1p;ind:pre:1p; +tablé tabler ver m s 0.95 1.62 0.00 0.07 par:pas; +tablée tablée nom f s 0.02 1.49 0.02 1.15 +tablées tablée nom f p 0.02 1.49 0.00 0.34 +tabor tabor nom m s 0.00 1.15 0.00 0.07 +taborites taborite nom m p 0.00 0.07 0.00 0.07 +tabors tabor nom m p 0.00 1.15 0.00 1.08 +tabou tabou adj m s 1.11 1.35 0.78 0.95 +taboue tabou adj f s 1.11 1.35 0.11 0.07 +taboues tabou adj f p 1.11 1.35 0.01 0.00 +taboulé taboulé nom m s 0.18 0.00 0.18 0.00 +tabouret tabouret nom m s 3.19 18.38 2.79 15.47 +tabourets tabouret nom m p 3.19 18.38 0.41 2.91 +tabous tabou nom m p 1.18 3.11 0.64 1.42 +tabès tabès nom m 0.00 0.07 0.00 0.07 +tabula tabuler ver 0.04 0.00 0.04 0.00 ind:pas:3s; +tabulaire tabulaire adj f s 0.00 0.20 0.00 0.20 +tabulateur tabulateur nom m s 0.01 0.07 0.01 0.07 +tabulations tabulation nom f p 0.01 0.00 0.01 0.00 +tac tac nom m s 3.21 4.66 3.16 4.59 +tacatac tacatac ono 0.00 0.07 0.00 0.07 +tacatacatac tacatacatac ono 0.00 0.07 0.00 0.07 +tacauds tacaud nom m p 0.00 0.07 0.00 0.07 +tachaient tacher ver 6.53 16.49 0.00 0.27 ind:imp:3p; +tachait tacher ver 6.53 16.49 0.00 0.88 ind:imp:3s; +tachant tacher ver 6.53 16.49 0.00 0.41 par:pre; +tache tache nom f s 21.04 71.28 12.61 33.92 +tachent tacher ver 6.53 16.49 0.05 0.07 ind:pre:3p; +tacher tacher ver 6.53 16.49 1.10 1.01 inf; +tachera tacher ver 6.53 16.49 0.16 0.07 ind:fut:3s; +tacherai tacher ver 6.53 16.49 0.03 0.14 ind:fut:1s; +tacherais tacher ver 6.53 16.49 0.00 0.07 cnd:pre:2s; +tacherait tacher ver 6.53 16.49 0.10 0.07 cnd:pre:3s; +taches tache nom f p 21.04 71.28 8.44 37.36 +tachetaient tacheter ver 0.29 3.11 0.00 0.07 ind:imp:3p; +tachetant tacheter ver 0.29 3.11 0.00 0.07 par:pre; +tacheter tacheter ver 0.29 3.11 0.00 0.07 inf; +tacheté tacheter ver m s 0.29 3.11 0.16 0.81 par:pas; +tachetée tacheter ver f s 0.29 3.11 0.10 1.08 par:pas; +tachetées tacheter ver f p 0.29 3.11 0.02 0.54 par:pas; +tachetures tacheture nom f p 0.00 0.07 0.00 0.07 +tachetés tacheter ver m p 0.29 3.11 0.01 0.47 par:pas; +tachez tacher ver 6.53 16.49 0.19 0.07 imp:pre:2p;ind:pre:2p; +tachiste tachiste adj f s 0.00 0.07 0.00 0.07 +tachons tacher ver 6.53 16.49 0.04 0.00 imp:pre:1p; +taché tacher ver m s 6.53 16.49 1.70 4.32 par:pas; +tachée tacher ver f s 6.53 16.49 1.05 3.92 par:pas; +tachées tacher ver f p 6.53 16.49 0.69 1.42 par:pas; +tachéomètre tachéomètre nom m s 0.02 0.00 0.02 0.00 +tachés tacher ver m p 6.53 16.49 0.39 2.36 par:pas; +tachyarythmie tachyarythmie nom f s 0.04 0.00 0.04 0.00 +tachycarde tachycarder ver 0.53 0.07 0.53 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tachycardie tachycardie nom f s 0.82 0.61 0.82 0.47 +tachycardies tachycardie nom f p 0.82 0.61 0.00 0.14 +tachymètre tachymètre nom m s 0.00 0.14 0.00 0.14 +tachyon tachyon nom m s 0.24 0.00 0.07 0.00 +tachyons tachyon nom m p 0.24 0.00 0.16 0.00 +tacite tacite adj s 0.58 4.66 0.57 4.26 +tacitement tacitement adv 0.01 1.62 0.01 1.62 +tacites tacite adj p 0.58 4.66 0.01 0.41 +taciturne taciturne adj s 1.03 6.55 0.93 5.41 +taciturnes taciturne adj p 1.03 6.55 0.10 1.15 +taciturnité taciturnité nom f s 0.00 0.20 0.00 0.20 +tacle tacle nom m s 0.38 0.07 0.38 0.07 +tacler tacler ver 0.04 0.00 0.04 0.00 inf; +taco taco nom m s 2.00 0.27 0.99 0.00 +tacon tacon nom m s 0.00 0.14 0.00 0.14 +taconnet taconnet nom m s 0.00 0.34 0.00 0.34 +tacos taco nom m p 2.00 0.27 1.01 0.27 +tacot tacot nom m s 1.31 0.74 1.25 0.74 +tacots tacot nom m p 1.31 0.74 0.06 0.00 +tacs tac nom m p 3.21 4.66 0.05 0.07 +tact tact nom m s 2.68 4.80 2.68 4.80 +tacticien tacticien nom m s 0.36 0.41 0.25 0.41 +tacticienne tacticien nom f s 0.36 0.41 0.10 0.00 +tacticiens tacticien nom m p 0.36 0.41 0.01 0.00 +tactile tactile adj s 0.21 0.88 0.14 0.61 +tactilement tactilement adv 0.00 0.14 0.00 0.14 +tactiles tactile adj p 0.21 0.88 0.07 0.27 +tactique tactique nom f s 5.31 6.69 4.46 6.42 +tactiquement tactiquement adv 0.25 0.07 0.25 0.07 +tactiques tactique nom f p 5.31 6.69 0.85 0.27 +tadjik tadjik nom m s 0.00 0.14 0.00 0.14 +tadorne tadorne nom m s 0.00 0.41 0.00 0.20 +tadornes tadorne nom m p 0.00 0.41 0.00 0.20 +taenia taenia nom m s 0.00 0.68 0.00 0.68 +taf taf nom m s 1.05 0.54 1.04 0.54 +tafanard tafanard nom m s 0.00 0.20 0.00 0.20 +taffe taffe nom f s 2.06 0.14 2.02 0.14 +taffes taffe nom f p 2.06 0.14 0.03 0.00 +taffetas taffetas nom m 0.17 1.76 0.17 1.76 +tafia tafia nom m s 0.01 0.07 0.01 0.07 +tafs taf nom m p 1.05 0.54 0.01 0.00 +tag tag nom m s 0.79 0.41 0.79 0.41 +tagada tagada ono 0.99 0.34 0.99 0.34 +tagalog tagalog nom m s 0.04 0.14 0.04 0.14 +tagger tagger nom m s 0.13 0.00 0.13 0.00 +tagliatelle tagliatelle nom f s 0.38 0.47 0.01 0.34 +tagliatelles tagliatelle nom f p 0.38 0.47 0.37 0.14 +taguais taguer ver 0.28 0.00 0.01 0.00 ind:imp:2s; +tague taguer ver 0.28 0.00 0.06 0.00 imp:pre:2s;ind:pre:3s; +taguer taguer ver 0.28 0.00 0.21 0.00 inf; +tagueur tagueur nom m s 0.06 0.00 0.03 0.00 +tagueurs tagueur nom m p 0.06 0.00 0.04 0.00 +tahitien tahitien nom m s 0.06 0.34 0.04 0.00 +tahitienne tahitien adj f s 0.16 0.00 0.11 0.00 +tahitiennes tahitien nom f p 0.06 0.34 0.02 0.20 +tahitiens tahitien nom m p 0.06 0.34 0.00 0.07 +tai_chi tai_chi nom m s 0.12 0.00 0.12 0.00 +taie taie nom f s 0.51 2.57 0.35 1.96 +taies taie nom f p 0.51 2.57 0.16 0.61 +taifas taifa nom m p 0.00 0.07 0.00 0.07 +tailla tailler ver 13.28 37.64 0.01 1.01 ind:pas:3s; +taillable taillable adj m s 0.00 0.14 0.00 0.07 +taillables taillable adj p 0.00 0.14 0.00 0.07 +taillada taillader ver 1.57 1.82 0.00 0.07 ind:pas:3s; +tailladait taillader ver 1.57 1.82 0.03 0.20 ind:imp:3s; +tailladant taillader ver 1.57 1.82 0.12 0.20 par:pre; +taillade taillade nom f s 0.30 0.00 0.30 0.00 +tailladent taillader ver 1.57 1.82 0.01 0.07 ind:pre:3p; +taillader taillader ver 1.57 1.82 0.47 0.34 inf; +tailladez taillader ver 1.57 1.82 0.00 0.07 imp:pre:2p; +tailladé taillader ver m s 1.57 1.82 0.48 0.34 par:pas; +tailladée taillader ver f s 1.57 1.82 0.25 0.14 par:pas; +tailladées taillader ver f p 1.57 1.82 0.00 0.14 par:pas; +tailladés taillader ver m p 1.57 1.82 0.06 0.27 par:pas; +taillaient tailler ver 13.28 37.64 0.03 0.68 ind:imp:3p; +taillais tailler ver 13.28 37.64 0.19 0.41 ind:imp:1s;ind:imp:2s; +taillait tailler ver 13.28 37.64 0.25 3.11 ind:imp:3s; +taillandier taillandier nom m s 0.00 0.07 0.00 0.07 +taillant tailler ver 13.28 37.64 0.14 1.42 par:pre; +taillants taillant nom m p 0.00 0.07 0.00 0.07 +taille_crayon taille_crayon nom m s 0.07 0.68 0.04 0.54 +taille_crayon taille_crayon nom m p 0.07 0.68 0.03 0.14 +taille_douce taille_douce nom f s 0.00 0.20 0.00 0.14 +taille_haie taille_haie nom m s 0.07 0.07 0.06 0.00 +taille_haie taille_haie nom m p 0.07 0.07 0.01 0.07 +taille taille nom f s 43.17 76.49 41.32 72.84 +taillent tailler ver 13.28 37.64 0.56 1.15 ind:pre:3p; +tailler tailler ver 13.28 37.64 2.93 6.89 inf; +taillera tailler ver 13.28 37.64 0.06 0.14 ind:fut:3s; +taillerai tailler ver 13.28 37.64 0.18 0.27 ind:fut:1s; +taillerais tailler ver 13.28 37.64 0.30 0.00 cnd:pre:1s;cnd:pre:2s; +taillerait tailler ver 13.28 37.64 0.02 0.27 cnd:pre:3s; +taillerez tailler ver 13.28 37.64 0.00 0.07 ind:fut:2p; +tailleront tailler ver 13.28 37.64 0.04 0.00 ind:fut:3p; +taille_douce taille_douce nom f p 0.00 0.20 0.00 0.07 +tailles taille nom f p 43.17 76.49 1.85 3.65 +tailleur_pantalon tailleur_pantalon nom m s 0.01 0.07 0.01 0.07 +tailleur tailleur nom m s 8.03 25.20 7.00 22.64 +tailleurs tailleur nom m p 8.03 25.20 1.03 2.57 +tailleuse tailleuse nom f s 2.29 0.07 2.29 0.07 +taillez tailler ver 13.28 37.64 0.27 0.27 imp:pre:2p;ind:pre:2p; +taillis taillis nom m 0.34 15.00 0.34 15.00 +tailloir tailloir nom m s 0.00 0.20 0.00 0.14 +tailloirs tailloir nom m p 0.00 0.20 0.00 0.07 +taillons taillon nom m p 0.12 0.14 0.12 0.14 +taillèrent tailler ver 13.28 37.64 0.01 0.07 ind:pas:3p; +taillé tailler ver m s 13.28 37.64 2.38 7.70 par:pas; +taillée tailler ver f s 13.28 37.64 0.48 4.32 par:pas; +taillées tailler ver f p 13.28 37.64 0.28 2.30 par:pas; +taillés tailler ver m p 13.28 37.64 0.27 3.85 par:pas; +tain tain nom m s 0.83 1.55 0.83 1.55 +taira taire ver 154.47 139.80 0.22 0.74 ind:fut:3s; +tairai taire ver 154.47 139.80 1.74 0.34 ind:fut:1s; +tairaient taire ver 154.47 139.80 0.01 0.07 cnd:pre:3p; +tairais taire ver 154.47 139.80 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +tairait taire ver 154.47 139.80 0.01 0.88 cnd:pre:3s; +tairas taire ver 154.47 139.80 0.29 0.00 ind:fut:2s; +taire taire ver 154.47 139.80 31.81 31.69 inf; +tairez taire ver 154.47 139.80 0.06 0.07 ind:fut:2p; +tairions taire ver 154.47 139.80 0.00 0.14 cnd:pre:1p; +tairons taire ver 154.47 139.80 0.06 0.20 ind:fut:1p; +tairont taire ver 154.47 139.80 0.51 0.14 ind:fut:3p; +tais taire ver 154.47 139.80 77.46 17.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +taisaient taire ver 154.47 139.80 0.30 4.53 ind:imp:3p; +taisais taire ver 154.47 139.80 0.53 2.50 ind:imp:1s;ind:imp:2s; +taisait taire ver 154.47 139.80 0.63 12.36 ind:imp:3s; +taisant taire ver 154.47 139.80 0.24 2.03 par:pre; +taise taire ver 154.47 139.80 1.51 1.49 sub:pre:1s;sub:pre:3s; +taisent taire ver 154.47 139.80 1.28 5.00 ind:pre:3p; +taises taire ver 154.47 139.80 0.16 0.14 sub:pre:2s; +taiseux taiseux adj m s 0.02 0.14 0.02 0.14 +taisez taire ver 154.47 139.80 24.30 4.39 imp:pre:2p;ind:pre:2p; +taisiez taire ver 154.47 139.80 0.10 0.07 ind:imp:2p; +taisions taire ver 154.47 139.80 0.02 1.08 ind:imp:1p; +taisons taire ver 154.47 139.80 0.23 1.82 imp:pre:1p;ind:pre:1p; +tait taire ver 154.47 139.80 7.42 11.62 ind:pre:3s; +tajine tajine nom m s 0.00 0.41 0.00 0.20 +tajines tajine nom m p 0.00 0.41 0.00 0.20 +take_off take_off nom m 0.08 0.00 0.08 0.00 +tala tala nom m s 0.34 0.27 0.34 0.07 +talait taler ver 0.12 0.54 0.00 0.14 ind:imp:3s; +talas tala nom m p 0.34 0.27 0.00 0.20 +talavera_de_la_reina talavera_de_la_reina nom s 0.00 0.07 0.00 0.07 +talbin talbin nom m s 0.05 1.49 0.01 0.47 +talbins talbin nom m p 0.05 1.49 0.04 1.01 +talc talc nom m s 1.40 1.49 1.40 1.49 +tale taler ver 0.12 0.54 0.02 0.14 ind:pre:3s; +talent talent nom m s 44.17 38.11 33.28 31.08 +talents talent nom m p 44.17 38.11 10.89 7.03 +talentueuse talentueux adj f s 4.39 0.95 0.93 0.14 +talentueusement talentueusement adv 0.00 0.07 0.00 0.07 +talentueuses talentueux adj f p 4.39 0.95 0.12 0.00 +talentueux talentueux adj m 4.39 0.95 3.35 0.81 +taler taler ver 0.12 0.54 0.00 0.07 inf; +taleth taleth nom m s 0.03 0.27 0.03 0.20 +taleths taleth nom m p 0.03 0.27 0.00 0.07 +taliban taliban nom m s 1.81 0.00 0.23 0.00 +talibans taliban nom m p 1.81 0.00 1.58 0.00 +talion talion nom m s 0.05 3.18 0.05 3.18 +talisman talisman nom m s 1.79 2.97 1.38 2.64 +talismans talisman nom m p 1.79 2.97 0.41 0.34 +talkie_walkie talkie_walkie nom m s 1.37 0.20 0.89 0.07 +talkie talkie nom m s 0.32 0.00 0.17 0.00 +talkie_walkie talkie_walkie nom m p 1.37 0.20 0.48 0.14 +talkies talkie nom m p 0.32 0.00 0.16 0.00 +talle talle nom f s 0.00 0.07 0.00 0.07 +taller taller ver 0.02 0.00 0.01 0.00 inf; +tallipot tallipot nom m s 0.00 0.07 0.00 0.07 +tallons taller ver 0.02 0.00 0.01 0.00 ind:pre:1p; +talmouse talmouse nom f s 0.00 0.07 0.00 0.07 +talmudique talmudique adj s 0.94 0.07 0.94 0.00 +talmudiques talmudique adj p 0.94 0.07 0.00 0.07 +talmudiste talmudiste nom s 0.14 0.34 0.14 0.27 +talmudistes talmudiste nom p 0.14 0.34 0.00 0.07 +talochaient talocher ver 0.01 0.27 0.00 0.07 ind:imp:3p; +talochait talocher ver 0.01 0.27 0.00 0.07 ind:imp:3s; +taloche taloche nom f s 0.25 1.22 0.14 0.47 +talocher talocher ver 0.01 0.27 0.01 0.07 inf; +taloches taloche nom f p 0.25 1.22 0.11 0.74 +talon talon nom m s 11.72 49.26 4.03 12.36 +talonna talonner ver 0.37 2.57 0.00 0.14 ind:pas:3s; +talonnades talonnade nom f p 0.00 0.07 0.00 0.07 +talonnait talonner ver 0.37 2.57 0.01 0.47 ind:imp:3s; +talonnant talonner ver 0.37 2.57 0.01 0.27 par:pre; +talonne talonner ver 0.37 2.57 0.20 0.41 ind:pre:1s;ind:pre:3s; +talonnent talonner ver 0.37 2.57 0.05 0.07 ind:pre:3p; +talonner talonner ver 0.37 2.57 0.06 0.20 inf; +talonnette talonnette nom f s 0.06 0.74 0.00 0.27 +talonnettes talonnette nom f p 0.06 0.74 0.06 0.47 +talonneur talonneur nom m s 0.00 0.07 0.00 0.07 +talonnons talonner ver 0.37 2.57 0.01 0.00 ind:pre:1p; +talonné talonner ver m s 0.37 2.57 0.03 0.61 par:pas; +talonnée talonner ver f s 0.37 2.57 0.01 0.20 par:pas; +talonnés talonner ver m p 0.37 2.57 0.00 0.20 par:pas; +talons talon nom m p 11.72 49.26 7.70 36.89 +talqua talquer ver 0.04 0.54 0.00 0.07 ind:pas:3s; +talquer talquer ver 0.04 0.54 0.02 0.20 inf; +talquât talquer ver 0.04 0.54 0.00 0.07 sub:imp:3s; +talqué talquer ver m s 0.04 0.54 0.01 0.14 par:pas; +talquées talquer ver f p 0.04 0.54 0.00 0.07 par:pas; +talée taler ver f s 0.12 0.54 0.00 0.07 par:pas; +talées talé adj f p 0.14 0.27 0.00 0.14 +talures talure nom f p 0.00 0.07 0.00 0.07 +talés talé adj m p 0.14 0.27 0.14 0.07 +talus talus nom m 0.69 19.53 0.69 19.53 +tam_tam tam_tam nom m s 1.06 3.45 0.37 2.77 +tam_tam tam_tam nom m p 1.06 3.45 0.69 0.68 +tamagotchi tamagotchi nom m s 0.08 0.00 0.08 0.00 +tamanoir tamanoir nom m s 0.00 0.07 0.00 0.07 +tamarin tamarin nom m s 0.14 0.07 0.14 0.07 +tamarinier tamarinier nom m s 0.01 0.14 0.01 0.00 +tamariniers tamarinier nom m p 0.01 0.14 0.00 0.14 +tamaris tamaris nom m 0.01 0.61 0.01 0.61 +tambouille tambouille nom f s 0.71 1.96 0.71 1.69 +tambouilles tambouille nom f p 0.71 1.96 0.00 0.27 +tambour_major tambour_major nom m s 0.26 0.74 0.26 0.74 +tambour tambour nom m s 10.20 19.32 7.80 10.54 +tambourin tambourin nom m s 0.56 1.08 0.49 0.47 +tambourina tambouriner ver 0.66 5.54 0.00 0.47 ind:pas:3s; +tambourinade tambourinade nom f s 0.00 0.07 0.00 0.07 +tambourinaient tambouriner ver 0.66 5.54 0.00 0.20 ind:imp:3p; +tambourinaire tambourinaire nom m s 0.00 0.27 0.00 0.07 +tambourinaires tambourinaire nom m p 0.00 0.27 0.00 0.20 +tambourinais tambouriner ver 0.66 5.54 0.01 0.07 ind:imp:1s; +tambourinait tambouriner ver 0.66 5.54 0.02 1.08 ind:imp:3s; +tambourinant tambouriner ver 0.66 5.54 0.04 0.74 par:pre; +tambourine tambouriner ver 0.66 5.54 0.08 1.08 ind:pre:1s;ind:pre:3s; +tambourinement tambourinement nom m s 0.00 0.95 0.00 0.95 +tambourinent tambouriner ver 0.66 5.54 0.28 0.07 ind:pre:3p; +tambouriner tambouriner ver 0.66 5.54 0.09 1.42 inf; +tambourineur tambourineur nom m s 0.00 0.07 0.00 0.07 +tambourins tambourin nom m p 0.56 1.08 0.07 0.61 +tambourinèrent tambouriner ver 0.66 5.54 0.00 0.07 ind:pas:3p; +tambouriné tambouriner ver m s 0.66 5.54 0.01 0.27 par:pas; +tambourinée tambouriner ver f s 0.66 5.54 0.14 0.07 par:pas; +tambours tambour nom m p 10.20 19.32 2.40 8.78 +tamia tamia nom m s 0.04 0.00 0.04 0.00 +tamis tamis nom m 0.53 1.82 0.53 1.82 +tamisage tamisage nom m s 0.01 0.00 0.01 0.00 +tamisaient tamiser ver 0.38 2.30 0.00 0.14 ind:imp:3p; +tamisais tamiser ver 0.38 2.30 0.00 0.07 ind:imp:1s; +tamisait tamiser ver 0.38 2.30 0.00 0.20 ind:imp:3s; +tamisant tamiser ver 0.38 2.30 0.00 0.20 par:pre; +tamise tamiser ver 0.38 2.30 0.16 0.07 imp:pre:2s;ind:pre:3s; +tamisent tamiser ver 0.38 2.30 0.00 0.07 ind:pre:3p; +tamiser tamiser ver 0.38 2.30 0.17 0.27 inf; +tamiseur tamiseur nom m s 0.14 0.00 0.14 0.00 +tamisez tamiser ver 0.38 2.30 0.02 0.00 imp:pre:2p; +tamisé tamisé adj m s 0.76 1.96 0.02 0.34 +tamisée tamisé adj f s 0.76 1.96 0.68 1.01 +tamisées tamisé adj f p 0.76 1.96 0.07 0.54 +tamisés tamiser ver m p 0.38 2.30 0.00 0.14 par:pas; +tamoul tamoul nom m s 0.00 0.14 0.00 0.14 +tamouré tamouré nom m s 0.02 0.07 0.02 0.07 +tampax tampax nom m 0.29 0.27 0.29 0.27 +tampon_buvard tampon_buvard nom m s 0.00 0.20 0.00 0.20 +tampon tampon nom m s 4.28 8.72 2.96 5.14 +tamponna tamponner ver 1.66 6.35 0.00 0.61 ind:pas:3s; +tamponnade tamponnade nom f s 0.17 0.00 0.17 0.00 +tamponnage tamponnage nom m s 0.02 0.07 0.02 0.00 +tamponnages tamponnage nom m p 0.02 0.07 0.00 0.07 +tamponnai tamponner ver 1.66 6.35 0.00 0.07 ind:pas:1s; +tamponnaient tamponner ver 1.66 6.35 0.00 0.20 ind:imp:3p; +tamponnais tamponner ver 1.66 6.35 0.11 0.07 ind:imp:1s;ind:imp:2s; +tamponnait tamponner ver 1.66 6.35 0.01 0.95 ind:imp:3s; +tamponnant tamponner ver 1.66 6.35 0.00 0.41 par:pre; +tamponne tamponner ver 1.66 6.35 0.52 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tamponnement tamponnement nom m s 0.00 0.20 0.00 0.20 +tamponnent tamponner ver 1.66 6.35 0.03 0.14 ind:pre:3p; +tamponner tamponner ver 1.66 6.35 0.27 0.81 inf; +tamponnera tamponner ver 1.66 6.35 0.01 0.00 ind:fut:3s; +tamponneur tamponneur adj m s 0.26 0.54 0.02 0.00 +tamponneuse tamponneur adj f s 0.26 0.54 0.10 0.00 +tamponneuses tamponneur adj f p 0.26 0.54 0.14 0.54 +tamponnez tamponner ver 1.66 6.35 0.15 0.07 imp:pre:2p;ind:pre:2p; +tamponnoir tamponnoir nom m s 0.00 0.14 0.00 0.07 +tamponnoirs tamponnoir nom m p 0.00 0.14 0.00 0.07 +tamponné tamponner ver m s 1.66 6.35 0.40 0.41 par:pas; +tamponnée tamponner ver f s 1.66 6.35 0.15 0.00 par:pas; +tamponnés tamponner ver m p 1.66 6.35 0.02 0.14 par:pas; +tampons tampon nom m p 4.28 8.72 1.32 3.58 +tamtam tamtam nom m s 0.13 0.07 0.13 0.07 +tan_sad tan_sad nom m s 0.00 0.20 0.00 0.20 +tan tan nom m s 0.66 0.20 0.50 0.20 +tanaisie tanaisie nom f s 0.01 0.00 0.01 0.00 +tance tancer ver 0.03 1.01 0.00 0.14 ind:pre:3s; +tancer tancer ver 0.03 1.01 0.01 0.47 inf; +tanche tanche nom f s 0.06 0.74 0.04 0.41 +tanches tanche nom f p 0.06 0.74 0.01 0.34 +tancé tancer ver m s 0.03 1.01 0.00 0.07 par:pas; +tancée tancer ver f s 0.03 1.01 0.00 0.07 par:pas; +tancés tancer ver m p 0.03 1.01 0.01 0.07 par:pas; +tandem tandem nom m s 0.60 2.03 0.60 1.82 +tandems tandem nom m p 0.60 2.03 0.00 0.20 +tandis_qu tandis_qu con 0.01 0.07 0.01 0.07 +tandis_que tandis_que con 15.04 136.15 15.04 136.15 +tandoori tandoori nom m s 0.06 0.00 0.06 0.00 +tangage tangage nom m s 0.24 1.08 0.24 1.08 +tangara tangara nom m s 0.08 0.00 0.06 0.00 +tangaras tangara nom m p 0.08 0.00 0.02 0.00 +tangence tangence nom f s 0.00 0.14 0.00 0.14 +tangent tangent adj m s 0.03 0.61 0.03 0.07 +tangente tangente nom f s 0.35 1.15 0.35 0.88 +tangentes tangente nom f p 0.35 1.15 0.00 0.27 +tangentiel tangentiel adj m s 0.00 0.07 0.00 0.07 +tangents tangent adj m p 0.03 0.61 0.00 0.14 +tangerine tangerine nom f s 0.00 0.14 0.00 0.14 +tangibilité tangibilité nom f s 0.01 0.00 0.01 0.00 +tangible tangible adj s 1.53 2.09 0.90 1.55 +tangibles tangible adj p 1.53 2.09 0.63 0.54 +tango tango nom m s 5.74 6.28 5.58 4.53 +tangon tangon nom m s 0.02 0.00 0.02 0.00 +tangos tango nom m p 5.74 6.28 0.16 1.76 +tangua tanguer ver 0.69 7.91 0.00 0.74 ind:pas:3s; +tanguaient tanguer ver 0.69 7.91 0.00 0.20 ind:imp:3p; +tanguait tanguer ver 0.69 7.91 0.02 2.64 ind:imp:3s; +tanguant tanguer ver 0.69 7.91 0.01 0.54 par:pre; +tangue tanguer ver 0.69 7.91 0.38 1.69 ind:pre:1s;ind:pre:3s; +tanguent tanguer ver 0.69 7.91 0.11 0.27 ind:pre:3p; +tanguer tanguer ver 0.69 7.91 0.17 1.55 inf; +tangueraient tanguer ver 0.69 7.91 0.00 0.07 cnd:pre:3p; +tangérois tangérois adj m s 0.00 0.07 0.00 0.07 +tangué tanguer ver m s 0.69 7.91 0.00 0.20 par:pas; +tanin tanin nom m s 0.05 0.34 0.05 0.34 +tanière tanière nom f s 2.06 4.80 2.00 3.92 +tanières tanière nom f p 2.06 4.80 0.06 0.88 +tank tank nom m s 8.41 4.86 3.80 1.89 +tanka tanka nom m s 0.00 0.54 0.00 0.54 +tanker tanker nom m s 0.78 0.07 0.49 0.07 +tankers tanker nom m p 0.78 0.07 0.29 0.00 +tankiste tankiste nom s 0.00 0.27 0.00 0.07 +tankistes tankiste nom p 0.00 0.27 0.00 0.20 +tanks tank nom m p 8.41 4.86 4.62 2.97 +tanna tanner ver 2.71 2.70 0.45 0.00 ind:pas:3s; +tannage tannage nom m s 0.01 0.00 0.01 0.00 +tannaient tanner ver 2.71 2.70 0.00 0.07 ind:imp:3p; +tannait tanner ver 2.71 2.70 0.02 0.27 ind:imp:3s; +tannant tanner ver 2.71 2.70 0.01 0.00 par:pre; +tannante tannant adj f s 0.00 0.27 0.00 0.07 +tannantes tannant adj f p 0.00 0.27 0.00 0.07 +tanne tanner ver 2.71 2.70 0.44 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tannent tanner ver 2.71 2.70 0.06 0.14 ind:pre:3p;sub:pre:3p; +tanner tanner ver 2.71 2.70 0.73 0.41 inf; +tannerai tanner ver 2.71 2.70 0.03 0.07 ind:fut:1s; +tannerie tannerie nom f s 0.04 0.34 0.04 0.34 +tannes tanner ver 2.71 2.70 0.04 0.00 ind:pre:2s; +tanneur tanneur nom m s 0.31 1.15 0.31 0.27 +tanneurs tanneur nom m p 0.31 1.15 0.00 0.88 +tannin tannin nom m s 0.01 0.00 0.01 0.00 +tanné tanner ver m s 2.71 2.70 0.70 0.74 par:pas; +tannée tanner ver f s 2.71 2.70 0.17 0.61 par:pas; +tannées tannée nom f p 0.18 0.27 0.01 0.00 +tannés tanner ver m p 2.71 2.70 0.04 0.20 par:pas; +tanrec tanrec nom m s 0.00 0.07 0.00 0.07 +tans tan nom m p 0.66 0.20 0.13 0.00 +tansad tansad nom m s 0.00 0.07 0.00 0.07 +tant tant adv_sup 380.34 436.42 380.34 436.42 +tantôt tantôt adv 5.62 66.76 5.62 66.76 +tante tante nom f s 76.62 118.38 70.69 110.95 +tantes tante nom f p 76.62 118.38 5.93 7.43 +tançai tancer ver 0.03 1.01 0.00 0.07 ind:pas:1s; +tançait tancer ver 0.03 1.01 0.00 0.07 ind:imp:3s; +tançant tancer ver 0.03 1.01 0.00 0.07 par:pre; +tantine tantine nom f s 1.08 0.20 1.08 0.14 +tantines tantine nom f p 1.08 0.20 0.00 0.07 +tantinet tantinet nom m s 1.02 1.55 1.02 1.55 +tantièmes tantième nom m p 0.00 0.07 0.00 0.07 +tantouse tantouse nom f s 0.69 0.74 0.63 0.14 +tantouses tantouse nom f p 0.69 0.74 0.06 0.61 +tantouze tantouze nom f s 1.14 0.27 0.85 0.14 +tantouzes tantouze nom f p 1.14 0.27 0.28 0.14 +tantra tantra nom m s 0.11 0.00 0.11 0.00 +tantrique tantrique adj m s 0.19 0.14 0.18 0.07 +tantriques tantrique adj m p 0.19 0.14 0.01 0.07 +tantrisme tantrisme nom m s 0.17 0.34 0.17 0.34 +tao tao nom m s 0.05 0.61 0.05 0.61 +taoïsme taoïsme nom m s 0.06 0.07 0.06 0.07 +taoïste taoïste adj s 0.03 0.47 0.03 0.34 +taoïstes taoïste nom p 0.03 0.61 0.02 0.20 +taon taon nom m s 0.73 0.61 0.01 0.14 +taons taon nom m p 0.73 0.61 0.72 0.47 +tap tap ono 0.53 2.50 0.53 2.50 +tapa taper ver 61.06 67.91 0.03 4.93 ind:pas:3s;;ind:pas:3s; +tapage tapage nom m s 1.53 6.08 1.52 6.01 +tapageait tapager ver 0.00 0.14 0.00 0.14 ind:imp:3s; +tapages tapage nom m p 1.53 6.08 0.01 0.07 +tapageur tapageur adj m s 0.23 2.97 0.10 1.28 +tapageurs tapageur nom m p 0.11 0.07 0.05 0.07 +tapageuse tapageur adj f s 0.23 2.97 0.10 1.01 +tapageuses tapageur adj f p 0.23 2.97 0.01 0.20 +tapai taper ver 61.06 67.91 0.00 0.14 ind:pas:1s; +tapaient taper ver 61.06 67.91 0.32 2.57 ind:imp:3p; +tapais taper ver 61.06 67.91 0.68 1.08 ind:imp:1s;ind:imp:2s; +tapait taper ver 61.06 67.91 1.78 9.05 ind:imp:3s; +tapant taper ver 61.06 67.91 0.72 5.81 par:pre; +tapante tapant adj f s 0.57 0.68 0.02 0.00 +tapantes tapant adj f p 0.57 0.68 0.49 0.27 +tapas tapa nom m p 0.15 0.00 0.15 0.00 +tape_cul tape_cul nom m s 0.04 0.41 0.04 0.41 +tape_à_l_oeil tape_à_l_oeil adj 0.00 0.41 0.00 0.41 +tape taper ver 61.06 67.91 18.45 11.89 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tapecul tapecul nom m s 0.00 0.07 0.00 0.07 +tapement tapement nom m s 0.01 0.14 0.01 0.00 +tapements tapement nom m p 0.01 0.14 0.00 0.14 +tapenade tapenade nom f s 0.02 0.00 0.02 0.00 +tapent taper ver 61.06 67.91 1.60 1.76 ind:pre:3p; +taper taper ver 61.06 67.91 19.14 20.07 inf; +tapera taper ver 61.06 67.91 0.19 0.34 ind:fut:3s; +taperai taper ver 61.06 67.91 0.59 0.14 ind:fut:1s; +taperaient taper ver 61.06 67.91 0.01 0.07 cnd:pre:3p; +taperais taper ver 61.06 67.91 0.65 0.20 cnd:pre:1s;cnd:pre:2s; +taperait taper ver 61.06 67.91 0.07 0.34 cnd:pre:3s; +taperas taper ver 61.06 67.91 0.13 0.00 ind:fut:2s; +taperez taper ver 61.06 67.91 0.01 0.14 ind:fut:2p; +taperiez taper ver 61.06 67.91 0.01 0.00 cnd:pre:2p; +taperont taper ver 61.06 67.91 0.04 0.00 ind:fut:3p; +tapes taper ver 61.06 67.91 3.17 0.54 ind:pre:2s;sub:pre:2s; +tapette tapette nom f s 7.16 1.15 4.77 0.61 +tapettes tapette nom f p 7.16 1.15 2.39 0.54 +tapeur tapeur nom m s 0.20 0.27 0.19 0.07 +tapeurs tapeur nom m p 0.20 0.27 0.02 0.14 +tapeuses tapeur nom f p 0.20 0.27 0.00 0.07 +tapez taper ver 61.06 67.91 2.83 0.14 imp:pre:2p;ind:pre:2p; +tapi tapir ver m s 0.92 11.82 0.19 4.39 par:pas; +tapie tapir ver f s 0.92 11.82 0.22 2.84 par:pas; +tapies tapir ver f p 0.92 11.82 0.02 0.61 par:pas; +tapiez taper ver 61.06 67.91 0.06 0.07 ind:imp:2p; +tapin tapin nom m s 2.31 5.41 2.25 3.58 +tapinage tapinage nom m s 0.16 0.00 0.16 0.00 +tapinaient tapiner ver 1.76 2.70 0.01 0.07 ind:imp:3p; +tapinais tapiner ver 1.76 2.70 0.02 0.14 ind:imp:1s;ind:imp:2s; +tapinait tapiner ver 1.76 2.70 0.09 0.47 ind:imp:3s; +tapinant tapiner ver 1.76 2.70 0.01 0.00 par:pre; +tapine tapiner ver 1.76 2.70 0.97 0.68 ind:pre:1s;ind:pre:3s; +tapinent tapiner ver 1.76 2.70 0.14 0.41 ind:pre:3p; +tapiner tapiner ver 1.76 2.70 0.39 0.68 inf; +tapinera tapiner ver 1.76 2.70 0.01 0.07 ind:fut:3s; +tapinerai tapiner ver 1.76 2.70 0.00 0.07 ind:fut:1s; +tapinerais tapiner ver 1.76 2.70 0.01 0.00 cnd:pre:1s; +tapines tapiner ver 1.76 2.70 0.11 0.00 ind:pre:2s; +tapineuse tapineur nom f s 0.06 0.54 0.06 0.20 +tapineuses tapineuse nom f p 0.02 0.00 0.02 0.00 +tapins tapin nom m p 2.31 5.41 0.06 1.82 +tapiné tapiner ver m s 1.76 2.70 0.00 0.07 par:pas; +tapinée tapiner ver f s 1.76 2.70 0.00 0.07 par:pas; +tapioca tapioca nom m s 0.33 1.69 0.33 1.69 +tapir tapir nom m s 0.16 0.34 0.13 0.34 +tapira tapir ver 0.92 11.82 0.01 0.07 ind:fut:3s; +tapirs tapir nom m p 0.16 0.34 0.02 0.00 +tapis_brosse tapis_brosse nom m s 0.01 0.14 0.01 0.14 +tapis tapis nom m 20.13 60.88 20.13 60.88 +tapissa tapisser ver 1.12 10.95 0.00 0.14 ind:pas:3s; +tapissaient tapisser ver 1.12 10.95 0.01 0.88 ind:imp:3p; +tapissais tapisser ver 1.12 10.95 0.00 0.07 ind:imp:1s; +tapissait tapisser ver 1.12 10.95 0.00 1.28 ind:imp:3s; +tapissant tapisser ver 1.12 10.95 0.01 0.27 par:pre; +tapisse tapisser ver 1.12 10.95 0.06 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tapissent tapir ver 0.92 11.82 0.10 0.00 sub:imp:3p; +tapisser tapisser ver 1.12 10.95 0.14 0.54 inf; +tapisserai tapisser ver 1.12 10.95 0.01 0.00 ind:fut:1s; +tapisserie tapisserie nom f s 1.34 12.57 0.89 9.73 +tapisseries tapisserie nom f p 1.34 12.57 0.45 2.84 +tapissier tapissier nom m s 0.32 1.69 0.17 1.22 +tapissiers tapissier nom m p 0.32 1.69 0.05 0.34 +tapissière tapissier nom f s 0.32 1.69 0.10 0.14 +tapissé tapisser ver m s 1.12 10.95 0.33 1.82 par:pas; +tapissée tapisser ver f s 1.12 10.95 0.27 2.57 par:pas; +tapissées tapisser ver f p 1.12 10.95 0.01 0.81 par:pas; +tapissés tapisser ver m p 1.12 10.95 0.20 1.76 par:pas; +tapit tapir ver 0.92 11.82 0.06 0.54 ind:pre:3s;ind:pas:3s; +tapâmes taper ver 61.06 67.91 0.00 0.14 ind:pas:1p; +tapons taper ver 61.06 67.91 0.06 0.14 imp:pre:1p;ind:pre:1p; +tapota tapoter ver 1.16 16.55 0.11 3.18 ind:pas:3s; +tapotai tapoter ver 1.16 16.55 0.00 0.07 ind:pas:1s; +tapotaient tapoter ver 1.16 16.55 0.00 0.27 ind:imp:3p; +tapotais tapoter ver 1.16 16.55 0.00 0.07 ind:imp:1s; +tapotait tapoter ver 1.16 16.55 0.04 3.38 ind:imp:3s; +tapotant tapoter ver 1.16 16.55 0.04 3.31 par:pre; +tapote tapoter ver 1.16 16.55 0.36 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tapotement tapotement nom m s 0.07 1.22 0.06 0.47 +tapotements tapotement nom m p 0.07 1.22 0.01 0.74 +tapotent tapoter ver 1.16 16.55 0.01 0.47 ind:pre:3p; +tapoter tapoter ver 1.16 16.55 0.29 1.76 inf; +tapotez tapoter ver 1.16 16.55 0.20 0.00 imp:pre:2p;ind:pre:2p; +tapotis tapotis nom m 0.00 0.07 0.00 0.07 +tapotons tapoter ver 1.16 16.55 0.00 0.07 imp:pre:1p; +tapotèrent tapoter ver 1.16 16.55 0.00 0.20 ind:pas:3p; +tapoté tapoter ver m s 1.16 16.55 0.11 0.68 par:pas; +tapèrent taper ver 61.06 67.91 0.00 0.47 ind:pas:3p; +tapé taper ver m s 61.06 67.91 9.43 6.55 par:pas; +tapée taper ver f s 61.06 67.91 0.92 0.81 par:pas; +tapées tapé adj f p 0.37 0.61 0.16 0.14 +tapés tapé adj m p 0.37 0.61 0.14 0.07 +taquet taquet nom m s 0.14 0.27 0.10 0.27 +taquets taquet nom m p 0.14 0.27 0.04 0.00 +taquin taquin adj m s 0.46 1.35 0.34 0.88 +taquina taquiner ver 5.24 5.74 0.00 0.34 ind:pas:3s; +taquinaient taquiner ver 5.24 5.74 0.04 0.20 ind:imp:3p; +taquinais taquiner ver 5.24 5.74 0.28 0.20 ind:imp:1s;ind:imp:2s; +taquinait taquiner ver 5.24 5.74 0.27 1.15 ind:imp:3s; +taquinant taquiner ver 5.24 5.74 0.01 0.20 par:pre; +taquine taquiner ver 5.24 5.74 1.91 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +taquinent taquiner ver 5.24 5.74 0.06 0.27 ind:pre:3p; +taquiner taquiner ver 5.24 5.74 1.48 2.03 inf; +taquinerait taquiner ver 5.24 5.74 0.21 0.00 cnd:pre:3s; +taquinerie taquinerie nom f s 0.27 0.74 0.03 0.20 +taquineries taquinerie nom f p 0.27 0.74 0.23 0.54 +taquines taquiner ver 5.24 5.74 0.29 0.00 ind:pre:2s; +taquinez taquiner ver 5.24 5.74 0.16 0.00 imp:pre:2p;ind:pre:2p; +taquins taquin adj m p 0.46 1.35 0.02 0.07 +taquiné taquiner ver m s 5.24 5.74 0.41 0.27 par:pas; +taquinée taquiner ver f s 5.24 5.74 0.11 0.00 par:pas; +taquoir taquoir nom m s 0.00 0.14 0.00 0.14 +tar tare nom m s 1.79 5.20 0.23 0.00 +tara tarer ver 6.08 0.54 0.57 0.00 ind:pas:3s;;ind:pas:3s;;ind:pas:3s; +tarabiscot tarabiscot nom m s 0.00 0.07 0.00 0.07 +tarabiscotages tarabiscotage nom m p 0.00 0.14 0.00 0.14 +tarabiscoté tarabiscoté adj m s 0.16 1.01 0.01 0.34 +tarabiscotée tarabiscoté adj f s 0.16 1.01 0.14 0.27 +tarabiscotées tarabiscoté adj f p 0.16 1.01 0.01 0.20 +tarabiscotés tarabiscoté adj m p 0.16 1.01 0.00 0.20 +tarabustait tarabuster ver 0.19 1.55 0.00 0.54 ind:imp:3s; +tarabuste tarabuster ver 0.19 1.55 0.01 0.47 ind:pre:1s;ind:pre:3s; +tarabustent tarabuster ver 0.19 1.55 0.01 0.07 ind:pre:3p; +tarabuster tarabuster ver 0.19 1.55 0.16 0.14 inf; +tarabustes tarabuster ver 0.19 1.55 0.00 0.07 ind:pre:2s; +tarabustèrent tarabuster ver 0.19 1.55 0.00 0.07 ind:pas:3p; +tarabusté tarabuster ver m s 0.19 1.55 0.01 0.14 par:pas; +tarabustés tarabuster ver m p 0.19 1.55 0.00 0.07 par:pas; +tarama tarama nom m s 0.28 0.00 0.28 0.00 +tarare tarare nom m s 0.00 0.20 0.00 0.20 +taratata taratata ono 0.29 0.34 0.29 0.34 +taraud taraud nom m s 0.00 0.34 0.00 0.20 +taraudaient tarauder ver 0.77 2.64 0.00 0.07 ind:imp:3p; +taraudait tarauder ver 0.77 2.64 0.00 0.34 ind:imp:3s; +taraudant taraudant adj m s 0.00 0.14 0.00 0.14 +taraude tarauder ver 0.77 2.64 0.73 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +taraudent tarauder ver 0.77 2.64 0.01 0.27 ind:pre:3p; +tarauder tarauder ver 0.77 2.64 0.02 0.41 inf; +tarauds taraud nom m p 0.00 0.34 0.00 0.14 +taraudèrent tarauder ver 0.77 2.64 0.00 0.07 ind:pas:3p; +taraudé tarauder ver m s 0.77 2.64 0.00 0.34 par:pas; +taraudée tarauder ver f s 0.77 2.64 0.00 0.14 par:pas; +taraudées tarauder ver f p 0.77 2.64 0.00 0.07 par:pas; +taraudés tarauder ver m p 0.77 2.64 0.00 0.14 par:pas; +tarbais tarbais adj m 0.00 0.20 0.00 0.20 +tarbouche tarbouche nom m s 0.00 0.07 0.00 0.07 +tarbouif tarbouif nom m s 0.00 0.14 0.00 0.14 +tard_venu tard_venu adj m s 0.00 0.07 0.00 0.07 +tard tard adv_sup 350.38 344.26 350.38 344.26 +tarda tarder ver 28.36 34.46 0.17 3.51 ind:pas:3s; +tardai tarder ver 28.36 34.46 0.01 0.34 ind:pas:1s; +tardaient tarder ver 28.36 34.46 0.00 0.68 ind:imp:3p; +tardais tarder ver 28.36 34.46 0.47 0.20 ind:imp:1s;ind:imp:2s; +tardait tarder ver 28.36 34.46 0.35 4.46 ind:imp:3s; +tardant tarder ver 28.36 34.46 0.01 0.20 par:pre; +tarde tarder ver 28.36 34.46 4.63 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tardent tarder ver 28.36 34.46 0.52 0.27 ind:pre:3p; +tarder tarder ver 28.36 34.46 15.01 12.09 inf; +tardera tarder ver 28.36 34.46 1.69 0.47 ind:fut:3s; +tarderai tarder ver 28.36 34.46 0.51 0.07 ind:fut:1s; +tarderaient tarder ver 28.36 34.46 0.03 0.54 cnd:pre:3p; +tarderais tarder ver 28.36 34.46 0.11 0.27 cnd:pre:1s; +tarderait tarder ver 28.36 34.46 0.03 1.82 cnd:pre:3s; +tarderas tarder ver 28.36 34.46 0.33 0.00 ind:fut:2s; +tarderez tarder ver 28.36 34.46 0.05 0.00 ind:fut:2p; +tarderie tarderie nom f s 0.00 0.20 0.00 0.14 +tarderies tarderie nom f p 0.00 0.20 0.00 0.07 +tarderiez tarder ver 28.36 34.46 0.01 0.00 cnd:pre:2p; +tarderions tarder ver 28.36 34.46 0.00 0.14 cnd:pre:1p; +tarderons tarder ver 28.36 34.46 0.02 0.07 ind:fut:1p; +tarderont tarder ver 28.36 34.46 0.32 0.14 ind:fut:3p; +tardes tarder ver 28.36 34.46 0.65 0.00 ind:pre:2s; +tardez tarder ver 28.36 34.46 1.14 0.27 imp:pre:2p;ind:pre:2p; +tardiez tarder ver 28.36 34.46 0.01 0.07 ind:imp:2p; +tardif tardif adj m s 2.62 10.00 0.65 2.23 +tardifs tardif adj m p 2.62 10.00 0.34 0.68 +tardigrade tardigrade nom m s 0.01 0.00 0.01 0.00 +tardillon tardillon nom m s 0.00 0.14 0.00 0.14 +tardions tarder ver 28.36 34.46 0.00 0.07 ind:imp:1p; +tardive tardif adj f s 2.62 10.00 1.36 5.74 +tardivement tardivement adv 0.46 1.35 0.46 1.35 +tardives tardif adj f p 2.62 10.00 0.28 1.35 +tardâmes tarder ver 28.36 34.46 0.00 0.07 ind:pas:1p; +tardons tarder ver 28.36 34.46 0.07 0.14 imp:pre:1p;ind:pre:1p; +tardèrent tarder ver 28.36 34.46 0.15 0.81 ind:pas:3p; +tardé tarder ver m s 28.36 34.46 2.08 3.92 par:pas; +tardée tarder ver f s 28.36 34.46 0.00 0.07 par:pas; +tare tare nom f s 1.79 5.20 1.06 3.04 +tarentelle tarentelle nom f s 0.12 0.14 0.12 0.07 +tarentelles tarentelle nom f p 0.12 0.14 0.00 0.07 +tarentule tarentule nom f s 0.32 0.41 0.23 0.34 +tarentules tarentule nom f p 0.32 0.41 0.08 0.07 +tares tare nom f p 1.79 5.20 0.49 2.16 +taret taret nom m s 0.00 0.20 0.00 0.14 +tarets taret nom m p 0.00 0.20 0.00 0.07 +targe targe nom f s 0.40 0.00 0.40 0.00 +targette targette nom f s 0.00 1.01 0.00 0.68 +targettes targette nom f p 0.00 1.01 0.00 0.34 +targua targuer ver 0.27 1.69 0.00 0.07 ind:pas:3s; +targuaient targuer ver 0.27 1.69 0.00 0.14 ind:imp:3p; +targuais targuer ver 0.27 1.69 0.00 0.07 ind:imp:1s; +targuait targuer ver 0.27 1.69 0.00 0.41 ind:imp:3s; +targuant targuer ver 0.27 1.69 0.00 0.14 par:pre; +targue targuer ver 0.27 1.69 0.22 0.27 ind:pre:1s;ind:pre:3s; +targuent targuer ver 0.27 1.69 0.00 0.14 ind:pre:3p; +targuer targuer ver 0.27 1.69 0.04 0.34 inf; +targuez targuer ver 0.27 1.69 0.01 0.00 ind:pre:2p; +targui targui adj m s 0.00 0.07 0.00 0.07 +targui targui nom m s 0.00 0.07 0.00 0.07 +targuât targuer ver 0.27 1.69 0.00 0.07 sub:imp:3s; +targué targuer ver m s 0.27 1.69 0.00 0.07 par:pas; +tari tarir ver m s 1.83 4.93 0.28 0.61 par:pas; +taride taride nom f s 0.00 0.20 0.00 0.20 +tarie tarir ver f s 1.83 4.93 0.69 0.74 par:pas; +taries tarir ver f p 1.83 4.93 0.01 0.34 par:pas; +tarif tarif nom m s 6.26 4.80 4.58 2.84 +tarification tarification nom f s 0.02 0.00 0.01 0.00 +tarifications tarification nom f p 0.02 0.00 0.01 0.00 +tarifié tarifier ver m s 0.00 0.07 0.00 0.07 par:pas; +tarifs tarif nom m p 6.26 4.80 1.69 1.96 +tarifée tarifer ver f s 0.01 0.27 0.00 0.14 par:pas; +tarifées tarifer ver f p 0.01 0.27 0.01 0.07 par:pas; +tarifés tarifer ver m p 0.01 0.27 0.00 0.07 par:pas; +tarin tarin nom m s 0.10 2.91 0.10 2.91 +tarir tarir ver 1.83 4.93 0.05 1.22 inf; +tarira tarir ver 1.83 4.93 0.02 0.00 ind:fut:3s; +tarirent tarir ver 1.83 4.93 0.14 0.20 ind:pas:3p; +taris tarir ver m p 1.83 4.93 0.01 0.07 ind:pre:2s;par:pas; +tarissaient tarir ver 1.83 4.93 0.00 0.14 ind:imp:3p; +tarissait tarir ver 1.83 4.93 0.00 0.27 ind:imp:3s; +tarissant tarir ver 1.83 4.93 0.00 0.20 par:pre; +tarisse tarir ver 1.83 4.93 0.00 0.07 sub:pre:1s; +tarissement tarissement nom m s 0.00 0.27 0.00 0.27 +tarissent tarir ver 1.83 4.93 0.01 0.14 ind:pre:3p; +tarissez tarir ver 1.83 4.93 0.00 0.07 imp:pre:2p; +tarit tarir ver 1.83 4.93 0.62 0.88 ind:pre:3s;ind:pas:3s; +tarière tarière nom f s 0.00 0.20 0.00 0.07 +tarières tarière nom f p 0.00 0.20 0.00 0.14 +tarlatane tarlatane nom f s 0.00 0.07 0.00 0.07 +tarmac tarmac nom m s 0.28 0.07 0.28 0.07 +taro taro nom m s 4.21 0.00 4.21 0.00 +tarot tarot nom m s 0.65 2.09 0.37 0.74 +tarots tarot nom m p 0.65 2.09 0.28 1.35 +tarpan tarpan nom m s 0.00 0.20 0.00 0.14 +tarpans tarpan nom m p 0.00 0.20 0.00 0.07 +tarpon tarpon nom m s 0.08 0.00 0.08 0.00 +tarpé tarpé nom m s 0.32 0.07 0.32 0.07 +tarpéienne tarpéienne nom s 0.01 0.00 0.01 0.00 +tarse tarse nom m s 0.02 0.14 0.02 0.07 +tarses tarse nom m p 0.02 0.14 0.00 0.07 +tarsienne tarsien adj f s 0.01 0.14 0.01 0.00 +tarsiens tarsien adj m p 0.01 0.14 0.00 0.14 +tarsier tarsier nom m s 0.01 0.00 0.01 0.00 +tartan tartan nom m s 0.51 0.27 0.07 0.20 +tartane tartan nom f s 0.51 0.27 0.44 0.07 +tartare tartare adj s 0.46 1.15 0.45 0.61 +tartares tartare nom p 0.94 1.76 0.52 1.15 +tartarin tartarin nom m s 0.00 0.47 0.00 0.41 +tartarinades tartarinade nom f p 0.00 0.14 0.00 0.14 +tartarins tartarin nom m p 0.00 0.47 0.00 0.07 +tarte_minute tarte_minute adj f s 0.01 0.00 0.01 0.00 +tarte tarte nom f s 13.04 10.34 10.41 8.31 +tartelette tartelette nom f s 0.68 0.81 0.04 0.34 +tartelettes tartelette nom f p 0.68 0.81 0.64 0.47 +tartempion tartempion nom m s 0.04 0.00 0.04 0.00 +tartes tarte nom f p 13.04 10.34 2.62 2.03 +tartignolle tartignolle adj s 0.00 0.20 0.00 0.14 +tartignolles tartignolle adj p 0.00 0.20 0.00 0.07 +tartina tartiner ver 0.65 3.18 0.00 0.14 ind:pas:3s; +tartinaient tartiner ver 0.65 3.18 0.00 0.07 ind:imp:3p; +tartinais tartiner ver 0.65 3.18 0.00 0.07 ind:imp:1s; +tartinait tartiner ver 0.65 3.18 0.00 0.34 ind:imp:3s; +tartinant tartiner ver 0.65 3.18 0.01 0.14 par:pre; +tartine tartine nom f s 2.23 16.89 1.41 8.38 +tartinent tartiner ver 0.65 3.18 0.02 0.27 ind:pre:3p; +tartiner tartiner ver 0.65 3.18 0.41 0.88 inf;; +tartinerait tartiner ver 0.65 3.18 0.00 0.07 cnd:pre:3s; +tartines tartine nom f p 2.23 16.89 0.82 8.51 +tartinez tartiner ver 0.65 3.18 0.03 0.00 imp:pre:2p;ind:pre:2p; +tartiné tartiner ver m s 0.65 3.18 0.03 0.27 par:pas; +tartinée tartiner ver f s 0.65 3.18 0.00 0.34 par:pas; +tartinées tartiner ver f p 0.65 3.18 0.00 0.20 par:pas; +tartir tartir ver 0.00 1.89 0.00 1.28 inf; +tartiss tartiss nom m 0.00 0.41 0.00 0.41 +tartissent tartir ver 0.00 1.89 0.00 0.07 ind:pre:3p; +tartisses tartir ver 0.00 1.89 0.00 0.54 sub:pre:2s; +tartouille tartouille nom f s 0.00 0.20 0.00 0.07 +tartouilles tartouille nom f p 0.00 0.20 0.00 0.14 +tartre tartre nom m s 0.03 0.54 0.03 0.54 +tartufe tartufe nom m s 0.01 0.14 0.01 0.14 +tartuferie tartuferie nom f s 0.00 0.14 0.00 0.07 +tartuferies tartuferie nom f p 0.00 0.14 0.00 0.07 +tartufferie tartufferie nom f s 0.00 0.07 0.00 0.07 +tartuffes tartuffe nom m p 0.00 0.07 0.00 0.07 +taré taré nom m s 10.48 2.09 6.96 1.01 +tarée taré adj f s 4.44 1.08 1.45 0.20 +tarées tarer ver f p 6.08 0.54 0.17 0.00 par:pas; +tarés taré nom m p 10.48 2.09 3.53 1.08 +tarzan tarzan nom m s 0.16 0.20 0.14 0.14 +tarzans tarzan nom m p 0.16 0.20 0.01 0.07 +tas tas nom m 65.28 83.78 65.28 83.78 +tasmanien tasmanien adj m s 0.01 0.07 0.01 0.07 +tassa tasser ver 2.21 19.19 0.00 1.08 ind:pas:3s; +tassai tasser ver 2.21 19.19 0.00 0.20 ind:pas:1s; +tassaient tasser ver 2.21 19.19 0.01 0.54 ind:imp:3p; +tassais tasser ver 2.21 19.19 0.00 0.07 ind:imp:1s; +tassait tasser ver 2.21 19.19 0.01 2.03 ind:imp:3s; +tassant tasser ver 2.21 19.19 0.00 0.88 par:pre; +tasse tasse nom f s 21.89 34.12 18.52 25.07 +tasseau tasseau nom m s 0.01 0.00 0.01 0.00 +tassement tassement nom m s 0.06 0.68 0.04 0.61 +tassements tassement nom m p 0.06 0.68 0.01 0.07 +tassent tasser ver 2.21 19.19 0.10 0.81 ind:pre:3p; +tasser tasser ver 2.21 19.19 0.45 1.76 inf; +tassera tasser ver 2.21 19.19 0.25 0.27 ind:fut:3s; +tasserai tasser ver 2.21 19.19 0.00 0.07 ind:fut:1s; +tasserait tasser ver 2.21 19.19 0.03 0.07 cnd:pre:3s; +tasses tasse nom f p 21.89 34.12 3.37 9.05 +tassez tasser ver 2.21 19.19 0.17 0.07 imp:pre:2p; +tassiez tasser ver 2.21 19.19 0.00 0.07 ind:imp:2p; +tassili tassili nom m s 0.00 0.34 0.00 0.34 +tassons tasser ver 2.21 19.19 0.00 0.07 ind:pre:1p; +tassèrent tasser ver 2.21 19.19 0.00 0.34 ind:pas:3p; +tassé tasser ver m s 2.21 19.19 0.41 3.78 par:pas; +tassée tasser ver f s 2.21 19.19 0.06 2.57 par:pas; +tassées tasser ver f p 2.21 19.19 0.04 0.41 par:pas; +tassés tassé adj m p 0.26 4.32 0.06 0.81 +taste_vin taste_vin nom m 0.01 0.14 0.01 0.14 +tata tata nom f s 3.00 0.68 2.96 0.47 +tatami tatami nom m s 0.02 0.20 0.02 0.14 +tatamis tatami nom m p 0.02 0.20 0.00 0.07 +tatane tatane nom f s 0.02 2.64 0.01 1.01 +tatanes tatane nom f p 0.02 2.64 0.01 1.62 +tatar tatar nom m s 0.01 0.07 0.01 0.07 +tatars tatar adj m p 0.00 0.20 0.00 0.07 +tatas tata nom f p 3.00 0.68 0.04 0.20 +tatillon tatillon adj m s 0.47 1.76 0.22 1.01 +tatillonne tatillon adj f s 0.47 1.76 0.09 0.34 +tatillonner tatillonner ver 0.00 0.07 0.00 0.07 inf; +tatillonnes tatillon adj f p 0.47 1.76 0.00 0.07 +tatillons tatillon adj m p 0.47 1.76 0.16 0.34 +tatin tatin nom f s 0.03 0.14 0.03 0.14 +tatou tatou nom m s 0.51 0.27 0.46 0.20 +tatouage tatouage nom m s 12.06 3.38 8.28 1.55 +tatouages tatouage nom m p 12.06 3.38 3.77 1.82 +tatouaient tatouer ver 4.22 3.72 0.00 0.07 ind:imp:3p; +tatouait tatouer ver 4.22 3.72 0.01 0.14 ind:imp:3s; +tatoue tatouer ver 4.22 3.72 0.08 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tatouent tatouer ver 4.22 3.72 0.02 0.00 ind:pre:3p; +tatouer tatouer ver 4.22 3.72 1.91 0.81 inf; +tatoueur tatoueur nom m s 0.37 1.01 0.14 1.01 +tatoueurs tatoueur nom m p 0.37 1.01 0.09 0.00 +tatoueuse tatoueur nom f s 0.37 1.01 0.14 0.00 +tatouez tatouer ver 4.22 3.72 0.02 0.00 imp:pre:2p;ind:pre:2p; +tatous tatou nom m p 0.51 0.27 0.04 0.07 +tatoué tatouer ver m s 4.22 3.72 1.23 1.15 par:pas; +tatouée tatouer ver f s 4.22 3.72 0.52 0.61 par:pas; +tatouées tatoué adj f p 1.61 2.16 0.11 0.07 +tatoués tatouer ver m p 4.22 3.72 0.36 0.54 par:pas; +tau tau nom m s 0.88 0.07 0.88 0.07 +taube taube nom m s 0.07 0.27 0.07 0.27 +taudis taudis nom m 4.17 3.24 4.17 3.24 +taulard taulard nom m s 1.78 2.03 0.82 0.61 +taularde taulard nom f s 1.78 2.03 0.17 0.14 +taulardes taulard nom f p 1.78 2.03 0.02 0.07 +taulards taulard nom m p 1.78 2.03 0.77 1.22 +taule taule nom f s 27.00 14.73 26.92 13.85 +taules taule nom f p 27.00 14.73 0.08 0.88 +taulier taulier nom m s 0.95 5.41 0.67 3.31 +tauliers taulier nom m p 0.95 5.41 0.14 0.54 +taulière taulier nom f s 0.95 5.41 0.15 1.49 +taulières taulier nom f p 0.95 5.41 0.00 0.07 +taupe taupe nom f s 6.60 4.39 5.42 2.84 +taupes taupe nom f p 6.60 4.39 1.17 1.55 +taupicide taupicide nom m s 0.00 0.07 0.00 0.07 +taupin taupin nom m s 0.40 0.07 0.40 0.07 +taupinière taupinière nom f s 0.07 1.22 0.05 0.88 +taupinières taupinière nom f p 0.07 1.22 0.02 0.34 +taupinées taupinée nom f p 0.00 0.07 0.00 0.07 +taupé taupé adj m s 0.01 0.14 0.01 0.07 +taupés taupé adj m p 0.01 0.14 0.00 0.07 +taure taure nom f s 0.00 0.07 0.00 0.07 +taureau taureau nom m s 10.82 13.38 8.37 10.00 +taureaux taureau nom m p 10.82 13.38 2.46 3.38 +taurillon taurillon nom m s 0.00 0.27 0.00 0.20 +taurillons taurillon nom m p 0.00 0.27 0.00 0.07 +taurin taurin adj m s 0.00 0.20 0.00 0.07 +taurine taurin adj f s 0.00 0.20 0.00 0.07 +taurins taurin adj m p 0.00 0.20 0.00 0.07 +taurobole taurobole nom m s 0.00 0.14 0.00 0.14 +tauromachie tauromachie nom f s 0.22 0.34 0.22 0.34 +tauromachique tauromachique adj s 0.00 0.14 0.00 0.14 +tautologie tautologie nom f s 0.01 0.14 0.01 0.14 +taux taux nom m 11.22 2.64 11.22 2.64 +tavel tavel nom m s 0.03 0.14 0.03 0.14 +tavelant taveler ver 0.00 0.74 0.00 0.14 par:pre; +tavelé taveler ver m s 0.00 0.74 0.00 0.14 par:pas; +tavelée taveler ver f s 0.00 0.74 0.00 0.27 par:pas; +tavelées taveler ver f p 0.00 0.74 0.00 0.20 par:pas; +tavelures tavelure nom f p 0.01 0.34 0.01 0.34 +taverne taverne nom f s 3.02 8.51 2.63 6.01 +tavernes taverne nom f p 3.02 8.51 0.39 2.50 +tavernier tavernier nom m s 0.06 0.88 0.06 0.68 +taverniers tavernier nom m p 0.06 0.88 0.00 0.20 +taxa taxer ver 2.19 3.04 0.00 0.14 ind:pas:3s; +taxables taxable adj f p 0.01 0.00 0.01 0.00 +taxaient taxer ver 2.19 3.04 0.00 0.14 ind:imp:3p; +taxait taxer ver 2.19 3.04 0.02 0.14 ind:imp:3s; +taxant taxer ver 2.19 3.04 0.05 0.07 par:pre; +taxation taxation nom f s 0.02 0.07 0.02 0.07 +taxaudier taxaudier nom m s 0.00 0.20 0.00 0.20 +taxe taxe nom f s 4.34 1.82 1.86 1.15 +taxent taxer ver 2.19 3.04 0.16 0.20 ind:pre:3p; +taxer taxer ver 2.19 3.04 0.83 1.15 inf; +taxerait taxer ver 2.19 3.04 0.01 0.14 cnd:pre:3s; +taxes taxe nom f p 4.34 1.82 2.49 0.68 +taxez taxer ver 2.19 3.04 0.01 0.00 ind:pre:2p; +taxi_auto taxi_auto nom m s 0.00 0.07 0.00 0.07 +taxi_brousse taxi_brousse nom m s 0.14 0.14 0.14 0.14 +taxi_girl taxi_girl nom f s 0.00 0.27 0.00 0.07 +taxi_girl taxi_girl nom f p 0.00 0.27 0.00 0.20 +taxi taxi nom m s 63.77 46.82 59.42 41.22 +taxidermie taxidermie nom f s 0.07 0.07 0.07 0.07 +taxidermiste taxidermiste nom s 0.17 0.14 0.16 0.14 +taxidermistes taxidermiste nom p 0.17 0.14 0.01 0.00 +taximan taximan nom m s 0.34 0.27 0.23 0.14 +taximen taximan nom m p 0.34 0.27 0.10 0.14 +taximètre taximètre nom m s 0.01 0.00 0.01 0.00 +taxinomie taxinomie nom f s 0.10 0.14 0.10 0.14 +taxinomique taxinomique adj m s 0.00 0.07 0.00 0.07 +taxinomiste taxinomiste nom s 0.01 0.00 0.01 0.00 +taxiphone taxiphone nom m s 0.02 0.07 0.01 0.07 +taxiphones taxiphone nom m p 0.02 0.07 0.01 0.00 +taxis taxi nom m p 63.77 46.82 4.35 5.61 +taxonomie taxonomie nom f s 0.01 0.00 0.01 0.00 +taxonomique taxonomique adj m s 0.01 0.00 0.01 0.00 +taxé taxer ver m s 2.19 3.04 0.45 0.61 par:pas; +taxée taxer ver f s 2.19 3.04 0.10 0.14 par:pas; +taxés taxé adj m p 0.07 0.14 0.05 0.00 +taylorisme taylorisme nom m s 0.00 0.07 0.00 0.07 +taylorisé tayloriser ver m s 0.00 0.07 0.00 0.07 par:pas; +tchadiens tchadien nom m p 0.00 0.07 0.00 0.07 +tchador tchador nom m s 0.23 0.07 0.23 0.07 +tchao tchao ono 2.25 2.03 2.25 2.03 +tchatchant tchatcher ver 0.68 0.14 0.00 0.07 par:pre; +tchatche tchatche nom f s 0.79 0.27 0.79 0.27 +tchatchent tchatcher ver 0.68 0.14 0.14 0.07 ind:pre:3p; +tchatcher tchatcher ver 0.68 0.14 0.47 0.00 inf; +tchatches tchatcher ver 0.68 0.14 0.01 0.00 ind:pre:2s; +tchatché tchatcher ver m s 0.68 0.14 0.04 0.00 par:pas; +tcherkesse tcherkesse nom m s 0.00 0.07 0.00 0.07 +tchernoziom tchernoziom nom m s 0.00 0.14 0.00 0.14 +tchetnik tchetnik nom m s 0.83 0.00 0.81 0.00 +tchetniks tchetnik nom m p 0.83 0.00 0.02 0.00 +tchin_tchin tchin_tchin ono 0.11 0.14 0.11 0.14 +tchin_tchin tchin_tchin ono 0.01 0.47 0.01 0.47 +tchèque tchèque adj s 2.00 1.55 1.83 0.68 +tchèques tchèque nom p 0.81 1.42 0.33 0.68 +tchécoslovaque tchécoslovaque adj s 0.37 1.82 0.35 1.35 +tchécoslovaques tchécoslovaque nom p 0.16 0.20 0.09 0.20 +tchékhoviennes tchékhovien adj f p 0.10 0.00 0.10 0.00 +tchékiste tchékiste nom s 0.00 0.14 0.00 0.14 +tchétchène tchétchène nom s 1.08 0.00 0.63 0.00 +tchétchènes tchétchène nom p 1.08 0.00 0.45 0.00 +te_deum te_deum nom m 0.00 0.14 0.00 0.14 +te te pro_per s 4006.10 774.32 4006.10 774.32 +tea_room tea_room nom m s 0.00 0.20 0.00 0.20 +team team nom m s 13.84 0.27 13.68 0.20 +teams team nom m p 13.84 0.27 0.16 0.07 +teaser teaser nom m s 0.04 0.00 0.04 0.00 +tec tec nom m 0.01 0.00 0.01 0.00 +technicien technicien nom m s 5.03 4.32 1.99 1.01 +technicienne technicien adj f s 1.73 0.74 0.34 0.07 +techniciens technicien nom m p 5.03 4.32 3.01 3.24 +technicité technicité nom f s 0.14 0.07 0.14 0.07 +technico_commerciaux technico_commerciaux nom m p 0.00 0.07 0.00 0.07 +technicolor technicolor nom m s 0.41 0.88 0.41 0.88 +technique technique adj s 14.90 13.04 11.72 8.31 +techniquement techniquement adv 6.42 0.61 6.42 0.61 +techniques technique nom p 11.39 14.05 3.30 3.65 +techno techno adj s 0.52 0.00 0.52 0.00 +technocrate technocrate nom s 0.32 0.47 0.31 0.20 +technocrates technocrate nom p 0.32 0.47 0.01 0.27 +technocratique technocratique adj s 0.00 0.07 0.00 0.07 +technocratisme technocratisme nom m s 0.00 0.07 0.00 0.07 +technologie technologie nom f s 17.57 0.54 14.78 0.54 +technologies technologie nom f p 17.57 0.54 2.79 0.00 +technologique technologique adj s 1.62 0.27 1.27 0.27 +technologiquement technologiquement adv 0.15 0.00 0.15 0.00 +technologiques technologique adj p 1.62 0.27 0.35 0.00 +technétium technétium nom m s 0.01 0.00 0.01 0.00 +teck teck nom m s 0.11 0.34 0.11 0.34 +teckel teckel nom m s 0.23 1.01 0.21 0.81 +teckels teckel nom m p 0.23 1.01 0.02 0.20 +tectonique tectonique adj s 0.10 0.07 0.03 0.00 +tectoniques tectonique adj f p 0.10 0.07 0.08 0.07 +tee_shirt tee_shirt nom m s 3.19 5.27 2.94 3.99 +tee_shirt tee_shirt nom m p 3.19 5.27 0.25 1.28 +tee tee nom m s 0.93 0.34 0.90 0.34 +teen_ager teen_ager nom p 0.00 0.20 0.00 0.20 +teenager teenager nom s 0.06 0.27 0.02 0.14 +teenagers teenager nom p 0.06 0.27 0.03 0.14 +tees tee nom m p 0.93 0.34 0.03 0.00 +tefillin tefillin nom m s 0.02 0.14 0.02 0.14 +teignais teindre ver 3.71 4.32 0.14 0.00 ind:imp:1s; +teignait teindre ver 3.71 4.32 0.02 0.74 ind:imp:3s; +teignant teindre ver 3.71 4.32 0.00 0.07 par:pre; +teigne teigne nom f s 1.22 1.15 1.18 0.95 +teignent teindre ver 3.71 4.32 0.22 0.07 ind:pre:3p; +teignes teigne nom f p 1.22 1.15 0.04 0.20 +teigneuse teigneux adj f s 0.66 2.84 0.04 0.68 +teigneuses teigneux adj f p 0.66 2.84 0.00 0.14 +teigneux teigneux adj m 0.66 2.84 0.62 2.03 +teignit teindre ver 3.71 4.32 0.00 0.14 ind:pas:3s; +teille teiller ver 0.00 0.07 0.00 0.07 ind:pre:3s; +teindra teindre ver 3.71 4.32 0.02 0.00 ind:fut:3s; +teindrai teindre ver 3.71 4.32 0.12 0.00 ind:fut:1s; +teindrait teindre ver 3.71 4.32 0.01 0.07 cnd:pre:3s; +teindre teindre ver 3.71 4.32 1.28 1.22 inf; +teins teindre ver 3.71 4.32 0.74 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +teint teint nom m s 4.87 24.26 4.84 23.58 +teinta teinter ver 1.32 10.14 0.00 0.27 ind:pas:3s; +teintaient teinter ver 1.32 10.14 0.00 0.27 ind:imp:3p; +teintait teinter ver 1.32 10.14 0.00 0.95 ind:imp:3s; +teintant teinter ver 1.32 10.14 0.28 0.47 par:pre; +teinte teinte nom f s 0.77 12.91 0.60 7.43 +teintent teinter ver 1.32 10.14 0.03 0.14 ind:pre:3p; +teinter teinter ver 1.32 10.14 0.01 0.27 inf; +teinteraient teinter ver 1.32 10.14 0.00 0.07 cnd:pre:3p; +teintes teinte nom f p 0.77 12.91 0.17 5.47 +teints teint adj m p 0.99 3.85 0.25 1.62 +teinté teinter ver m s 1.32 10.14 0.35 2.43 par:pas; +teintée teinter ver f s 1.32 10.14 0.26 2.77 par:pas; +teintées teinter ver f p 1.32 10.14 0.37 1.15 par:pas; +teinture teinture nom f s 2.49 3.38 2.18 3.04 +teinturerie teinturerie nom f s 0.46 0.61 0.43 0.47 +teintureries teinturerie nom f p 0.46 0.61 0.03 0.14 +teintures teinture nom f p 2.49 3.38 0.31 0.34 +teinturier teinturier nom m s 1.06 1.55 0.99 1.08 +teinturiers teinturier nom m p 1.06 1.55 0.06 0.20 +teinturière teinturier nom f s 1.06 1.55 0.01 0.27 +teintés teinter ver m p 1.32 10.14 0.01 1.01 par:pas; +tek tek nom m s 0.12 0.00 0.12 0.00 +tel tel adj_ind m s 66.90 115.74 66.90 115.74 +tell tell nom m s 2.92 0.07 2.92 0.07 +telle telle adj_ind f s 48.77 118.58 48.77 118.58 +tellement tellement adv 183.70 168.51 183.70 168.51 +telles telles adj_ind f p 15.12 27.16 15.12 27.16 +tellure tellure nom m s 0.14 0.00 0.14 0.00 +tellurique tellurique adj s 0.00 1.62 0.00 1.42 +telluriques tellurique adj m p 0.00 1.62 0.00 0.20 +tels tels adj_ind m p 13.65 30.14 13.65 30.14 +telson telson nom m s 0.07 0.00 0.07 0.00 +tem tem nom m s 0.03 0.07 0.03 0.07 +tempe tempe nom f s 3.38 29.46 2.23 9.66 +tempera tempera nom f s 0.10 0.00 0.10 0.00 +tempes tempe nom f p 3.38 29.46 1.15 19.80 +tempi tempo nom m p 1.44 1.35 0.00 0.14 +temple temple nom m s 15.69 20.20 14.36 13.72 +temples temple nom m p 15.69 20.20 1.33 6.49 +templier templier nom m s 0.35 5.74 0.12 3.65 +templiers templier nom m p 0.35 5.74 0.23 2.09 +templière templier adj f s 0.23 0.14 0.23 0.14 +tempo tempo nom m s 1.44 1.35 1.38 1.22 +temporaire temporaire adj s 7.51 3.38 6.54 2.57 +temporairement temporairement adv 2.64 0.95 2.64 0.95 +temporaires temporaire adj p 7.51 3.38 0.96 0.81 +temporal temporal adj m s 0.76 0.34 0.65 0.00 +temporale temporal adj f s 0.76 0.34 0.02 0.14 +temporales temporal adj f p 0.76 0.34 0.01 0.14 +temporalité temporalité nom f s 0.00 0.34 0.00 0.27 +temporalités temporalité nom f p 0.00 0.34 0.00 0.07 +temporaux temporal adj m p 0.76 0.34 0.07 0.07 +temporel temporel adj m s 4.59 1.82 1.36 1.08 +temporelle temporel adj f s 4.59 1.82 2.61 0.54 +temporellement temporellement adv 0.00 0.14 0.00 0.14 +temporelles temporel adj f p 4.59 1.82 0.37 0.07 +temporels temporel adj m p 4.59 1.82 0.26 0.14 +temporisaient temporiser ver 0.49 0.74 0.00 0.07 ind:imp:3p; +temporisait temporiser ver 0.49 0.74 0.01 0.07 ind:imp:3s; +temporisateur temporisateur adj m s 0.00 0.07 0.00 0.07 +temporisation temporisation nom f s 0.02 0.20 0.02 0.20 +temporise temporiser ver 0.49 0.74 0.01 0.07 ind:pre:1s;ind:pre:3s; +temporisent temporiser ver 0.49 0.74 0.01 0.00 ind:pre:3p; +temporiser temporiser ver 0.49 0.74 0.41 0.34 inf; +temporiserai temporiser ver 0.49 0.74 0.01 0.00 ind:fut:1s; +temporisez temporiser ver 0.49 0.74 0.01 0.00 imp:pre:2p; +temporisons temporiser ver 0.49 0.74 0.00 0.07 imp:pre:1p; +temporisé temporiser ver m s 0.49 0.74 0.02 0.07 par:pas; +temporisée temporiser ver f s 0.49 0.74 0.01 0.07 par:pas; +tempos tempo nom m p 1.44 1.35 0.06 0.00 +temps temps nom m s 1031.05 1289.39 1031.05 1289.39 +tempère tempérer ver 0.25 3.85 0.03 0.34 imp:pre:2s;ind:pre:3s; +tempéra tempérer ver 0.25 3.85 0.00 0.34 ind:pas:3s; +tempura tempura nom f s 0.06 0.00 0.05 0.00 +tempéraient tempérer ver 0.25 3.85 0.00 0.14 ind:imp:3p; +tempérait tempérer ver 0.25 3.85 0.00 0.88 ind:imp:3s; +tempérament tempérament nom m s 4.74 9.93 4.69 9.05 +tempéraments tempérament nom m p 4.74 9.93 0.05 0.88 +tempérance tempérance nom f s 0.32 0.07 0.32 0.07 +tempuras tempura nom f p 0.06 0.00 0.01 0.00 +température température nom f s 15.68 10.95 14.42 10.41 +températures température nom f p 15.68 10.95 1.26 0.54 +tempérer tempérer ver 0.25 3.85 0.12 0.68 inf; +tempéreraient tempérer ver 0.25 3.85 0.00 0.07 cnd:pre:3p; +tempérerait tempérer ver 0.25 3.85 0.01 0.07 cnd:pre:3s; +tempéré tempéré adj m s 0.34 1.22 0.22 0.54 +tempérée tempéré adj f s 0.34 1.22 0.11 0.20 +tempérées tempéré adj f p 0.34 1.22 0.01 0.27 +tempérés tempérer ver m p 0.25 3.85 0.00 0.20 par:pas; +tempêta tempêter ver 0.57 3.51 0.00 0.34 ind:pas:3s; +tempêtaient tempêter ver 0.57 3.51 0.01 0.07 ind:imp:3p; +tempêtais tempêter ver 0.57 3.51 0.00 0.14 ind:imp:1s; +tempêtait tempêter ver 0.57 3.51 0.00 0.74 ind:imp:3s; +tempêtant tempêter ver 0.57 3.51 0.00 0.47 par:pre; +tempête tempête nom f s 19.73 31.28 15.72 24.26 +tempêtent tempêter ver 0.57 3.51 0.01 0.07 ind:pre:3p; +tempêter tempêter ver 0.57 3.51 0.11 0.61 inf; +tempêtes tempête nom f p 19.73 31.28 4.01 7.03 +tempêté tempêter ver m s 0.57 3.51 0.01 0.14 par:pas; +tempétueux tempétueux adj m s 0.02 0.14 0.02 0.14 +tenable tenable adj f s 0.03 0.68 0.03 0.68 +tenace tenace adj s 1.96 12.43 1.62 10.20 +tenacement tenacement adv 0.00 0.20 0.00 0.20 +tenaces tenace adj p 1.96 12.43 0.34 2.23 +tenaient tenir ver 504.69 741.22 3.56 35.68 ind:imp:3p; +tenaillaient tenailler ver 0.48 3.92 0.00 0.27 ind:imp:3p; +tenaillait tenailler ver 0.48 3.92 0.02 1.42 ind:imp:3s; +tenaillant tenailler ver 0.48 3.92 0.00 0.27 par:pre; +tenaille tenaille nom f s 1.83 2.43 0.48 1.22 +tenaillent tenailler ver 0.48 3.92 0.00 0.07 ind:pre:3p; +tenailler tenailler ver 0.48 3.92 0.10 0.14 inf; +tenailles tenaille nom f p 1.83 2.43 1.34 1.22 +tenaillé tenailler ver m s 0.48 3.92 0.01 0.88 par:pas; +tenaillée tenailler ver f s 0.48 3.92 0.02 0.14 par:pas; +tenais tenir ver 504.69 741.22 11.03 24.80 ind:imp:1s;ind:imp:2s; +tenait tenir ver 504.69 741.22 20.65 179.12 ind:imp:3s; +tenancier tenancier nom m s 0.48 2.43 0.18 0.95 +tenanciers tenancier nom m p 0.48 2.43 0.03 0.34 +tenancière tenancier nom f s 0.48 2.43 0.28 1.08 +tenancières tenancier nom f p 0.48 2.43 0.00 0.07 +tenant tenir ver 504.69 741.22 3.68 46.62 par:pre; +tenante tenant adj f s 0.88 4.73 0.47 1.69 +tenants tenant nom m p 0.69 4.46 0.39 2.16 +tend tendre ver 26.65 218.38 3.72 31.22 ind:pre:3s; +tendît tendre ver 26.65 218.38 0.00 0.27 sub:imp:3s; +tendaient tendre ver 26.65 218.38 0.10 6.15 ind:imp:3p; +tendais tendre ver 26.65 218.38 0.19 2.03 ind:imp:1s;ind:imp:2s; +tendait tendre ver 26.65 218.38 1.17 24.12 ind:imp:3s; +tendance tendance nom f s 12.98 20.88 10.95 14.26 +tendances tendance nom f p 12.98 20.88 2.03 6.62 +tendancieuse tendancieux adj f s 0.34 0.95 0.05 0.20 +tendancieusement tendancieusement adv 0.00 0.14 0.00 0.14 +tendancieuses tendancieux adj f p 0.34 0.95 0.01 0.47 +tendancieux tendancieux adj m p 0.34 0.95 0.28 0.27 +tendant tendre ver 26.65 218.38 0.93 16.01 par:pre; +tende tendre ver 26.65 218.38 0.42 0.54 sub:pre:1s;sub:pre:3s; +tendelet tendelet nom m s 0.00 0.20 0.00 0.20 +tendent tendre ver 26.65 218.38 0.54 5.20 ind:pre:3p; +tender tender nom m s 0.36 0.95 0.36 0.88 +tenders tender nom m p 0.36 0.95 0.00 0.07 +tendeur tendeur nom m s 0.23 0.74 0.19 0.41 +tendeurs tendeur nom m p 0.23 0.74 0.04 0.34 +tendez tendre ver 26.65 218.38 2.00 0.54 imp:pre:2p;ind:pre:2p; +tendiez tendre ver 26.65 218.38 0.03 0.00 ind:imp:2p; +tendineuses tendineux adj f p 0.00 0.07 0.00 0.07 +tendinite tendinite nom f s 0.24 0.00 0.24 0.00 +tendions tendre ver 26.65 218.38 0.00 0.20 ind:imp:1p; +tendirent tendre ver 26.65 218.38 0.00 1.49 ind:pas:3p; +tendis tendre ver 26.65 218.38 0.12 2.70 ind:pas:1s; +tendissent tendre ver 26.65 218.38 0.00 0.07 sub:imp:3p; +tendit tendre ver 26.65 218.38 0.05 51.22 ind:pas:3s; +tendon tendon nom m s 1.38 3.99 0.90 0.61 +tendons tendon nom m p 1.38 3.99 0.48 3.38 +tendra tendre ver 26.65 218.38 0.06 0.68 ind:fut:3s; +tendrai tendre ver 26.65 218.38 0.42 0.07 ind:fut:1s; +tendraient tendre ver 26.65 218.38 0.01 0.07 cnd:pre:3p; +tendrais tendre ver 26.65 218.38 0.08 0.14 cnd:pre:1s;cnd:pre:2s; +tendrait tendre ver 26.65 218.38 0.22 0.74 cnd:pre:3s; +tendre tendre adj s 21.66 61.15 18.34 45.54 +tendrement tendrement adv 3.42 12.84 3.42 12.84 +tendres tendre adj p 21.66 61.15 3.33 15.61 +tendresse tendresse nom f s 15.87 61.69 15.66 59.39 +tendresses tendresse nom f p 15.87 61.69 0.20 2.30 +tendreté tendreté nom f s 0.01 0.14 0.01 0.14 +tendron tendron nom m s 0.35 0.61 0.05 0.34 +tendrons tendron nom m p 0.35 0.61 0.30 0.27 +tendront tendre ver 26.65 218.38 0.00 0.07 ind:fut:3p; +tends tendre ver 26.65 218.38 3.46 6.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tendu tendre ver m s 26.65 218.38 6.24 25.68 par:pas; +tendue tendu adj f s 9.71 37.57 3.10 13.51 +tendues tendu adj f p 9.71 37.57 0.85 3.45 +tendus tendu adj m p 9.71 37.57 1.26 7.23 +teneur teneur nom s 0.90 1.35 0.90 1.35 +tenez tenir ver 504.69 741.22 99.49 30.61 imp:pre:2p;ind:pre:2p; +teniez tenir ver 504.69 741.22 2.34 0.95 ind:imp:2p; +tenions tenir ver 504.69 741.22 0.57 4.80 ind:imp:1p;sub:pre:1p; +tenir tenir ver 504.69 741.22 82.83 126.82 inf; +tennis_ballon tennis_ballon nom m 0.00 0.07 0.00 0.07 +tennis_club tennis_club nom m 0.00 0.34 0.00 0.34 +tennis tennis nom m 11.37 13.24 11.37 13.24 +tennisman tennisman nom m s 0.07 0.61 0.06 0.34 +tennismen tennisman nom m p 0.07 0.61 0.01 0.27 +tenon tenon nom m s 0.23 0.34 0.16 0.14 +tenons tenir ver 504.69 741.22 5.94 3.92 imp:pre:1p;ind:pre:1p; +tenseur tenseur nom m s 0.02 0.00 0.02 0.00 +tensiomètre tensiomètre nom m s 0.02 0.00 0.02 0.00 +tension tension nom f s 21.28 15.61 20.05 14.93 +tensions tension nom f p 21.28 15.61 1.23 0.68 +tenta tenter ver 79.74 126.96 1.00 14.19 ind:pas:3s; +tentaculaire tentaculaire adj s 0.01 0.61 0.01 0.47 +tentaculaires tentaculaire adj p 0.01 0.61 0.00 0.14 +tentacule tentacule nom m s 1.11 2.50 0.27 0.20 +tentacules tentacule nom m p 1.11 2.50 0.84 2.30 +tentai tenter ver 79.74 126.96 0.02 3.38 ind:pas:1s; +tentaient tenter ver 79.74 126.96 0.68 4.73 ind:imp:3p; +tentais tenter ver 79.74 126.96 0.42 2.16 ind:imp:1s;ind:imp:2s; +tentait tenter ver 79.74 126.96 1.98 15.41 ind:imp:3s; +tentant tentant adj m s 2.70 3.18 2.10 2.23 +tentante tentant adj f s 2.70 3.18 0.51 0.47 +tentantes tentant adj f p 2.70 3.18 0.01 0.27 +tentants tentant adj m p 2.70 3.18 0.09 0.20 +tentateur tentateur adj m s 0.48 1.01 0.34 0.54 +tentateurs tentateur adj m p 0.48 1.01 0.10 0.07 +tentation tentation nom f s 7.56 20.61 5.82 16.01 +tentations tentation nom f p 7.56 20.61 1.74 4.59 +tentative tentative nom f s 19.04 19.53 16.24 14.12 +tentatives tentative nom f p 19.04 19.53 2.81 5.41 +tentatrice tentateur nom f s 0.18 0.41 0.17 0.07 +tentatrices tentatrice nom f p 0.01 0.00 0.01 0.00 +tente tenter ver 79.74 126.96 16.94 13.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tentent tenter ver 79.74 126.96 2.28 1.76 ind:pre:3p; +tenter tenter ver 79.74 126.96 20.40 32.43 inf; +tentera tenter ver 79.74 126.96 1.30 0.34 ind:fut:3s; +tenterai tenter ver 79.74 126.96 0.56 0.14 ind:fut:1s; +tenteraient tenter ver 79.74 126.96 0.10 0.54 cnd:pre:3p; +tenterais tenter ver 79.74 126.96 0.20 0.34 cnd:pre:1s;cnd:pre:2s; +tenterait tenter ver 79.74 126.96 0.33 1.42 cnd:pre:3s; +tenteras tenter ver 79.74 126.96 0.19 0.14 ind:fut:2s; +tenterez tenter ver 79.74 126.96 0.17 0.00 ind:fut:2p; +tenteriez tenter ver 79.74 126.96 0.01 0.00 cnd:pre:2p; +tenterons tenter ver 79.74 126.96 0.74 0.00 ind:fut:1p; +tenteront tenter ver 79.74 126.96 0.48 0.20 ind:fut:3p; +tentes tente nom f p 16.65 26.22 2.25 7.09 +tentez tenter ver 79.74 126.96 3.31 0.54 imp:pre:2p;ind:pre:2p; +tentiaire tentiaire nom f s 0.00 0.41 0.00 0.41 +tentiez tenter ver 79.74 126.96 0.45 0.14 ind:imp:2p; +tentions tenter ver 79.74 126.96 0.12 0.68 ind:imp:1p; +tentâmes tenter ver 79.74 126.96 0.00 0.14 ind:pas:1p; +tentons tenter ver 79.74 126.96 2.03 0.20 imp:pre:1p;ind:pre:1p; +tentât tenter ver 79.74 126.96 0.00 0.61 sub:imp:3s; +tentèrent tenter ver 79.74 126.96 0.22 1.96 ind:pas:3p; +tenté tenter ver m s 79.74 126.96 21.70 25.34 par:pas; +tentée tenter ver f s 79.74 126.96 1.29 2.50 par:pas; +tentées tenter ver f p 79.74 126.96 0.24 0.34 par:pas; +tenture tenture nom f s 0.66 8.18 0.20 3.24 +tentures tenture nom f p 0.66 8.18 0.45 4.93 +tentés tenter ver m p 79.74 126.96 0.30 1.49 par:pas; +tenu tenir ver m s 504.69 741.22 27.10 54.12 par:pas; +tenue tenue nom f s 21.96 31.89 19.64 27.97 +tenues tenue nom f p 21.96 31.89 2.32 3.92 +tenure tenure nom f s 0.01 0.00 0.01 0.00 +tenus tenir ver m p 504.69 741.22 1.39 6.89 par:pas; +tepidarium tepidarium nom m s 0.01 0.00 0.01 0.00 +tequila tequila nom f s 3.81 0.20 3.52 0.20 +tequilas tequila nom f p 3.81 0.20 0.29 0.00 +ter ter adv 0.72 9.46 0.72 9.46 +terce tercer ver 0.10 0.07 0.00 0.07 ind:pre:3s; +tercer tercer ver 0.10 0.07 0.10 0.00 inf; +tercets tercet nom m p 0.00 0.07 0.00 0.07 +tercio tercio nom m s 0.01 0.14 0.01 0.14 +tergal tergal nom m s 0.16 0.41 0.16 0.41 +tergiversaient tergiverser ver 0.81 1.35 0.00 0.07 ind:imp:3p; +tergiversais tergiverser ver 0.81 1.35 0.00 0.07 ind:imp:1s; +tergiversant tergiverser ver 0.81 1.35 0.00 0.07 par:pre; +tergiversation tergiversation nom f s 0.09 1.28 0.03 0.00 +tergiversations tergiversation nom f p 0.09 1.28 0.06 1.28 +tergiverse tergiverser ver 0.81 1.35 0.23 0.20 imp:pre:2s;ind:pre:3s; +tergiverser tergiverser ver 0.81 1.35 0.40 0.81 inf; +tergiverses tergiverser ver 0.81 1.35 0.03 0.00 ind:pre:2s; +tergiversez tergiverser ver 0.81 1.35 0.04 0.00 imp:pre:2p;ind:pre:2p; +tergiversons tergiverser ver 0.81 1.35 0.03 0.07 imp:pre:1p;ind:pre:1p; +tergiversé tergiverser ver m s 0.81 1.35 0.09 0.07 par:pas; +terme terme nom m s 37.67 59.73 25.72 34.86 +termes terme nom m p 37.67 59.73 11.96 24.86 +termina terminer ver 142.38 100.00 0.28 5.20 ind:pas:3s; +terminai terminer ver 142.38 100.00 0.05 0.68 ind:pas:1s; +terminaient terminer ver 142.38 100.00 0.05 2.09 ind:imp:3p; +terminais terminer ver 142.38 100.00 0.56 0.27 ind:imp:1s; +terminaison terminaison nom f s 0.36 0.41 0.17 0.00 +terminaisons terminaison nom f p 0.36 0.41 0.20 0.41 +terminait terminer ver 142.38 100.00 0.41 7.91 ind:imp:3s; +terminal terminal nom m s 5.61 0.88 2.08 0.14 +terminale terminal nom f s 5.61 0.88 2.94 0.61 +terminales terminal nom f p 5.61 0.88 0.36 0.14 +terminant terminer ver 142.38 100.00 0.14 2.43 par:pre; +terminateur terminateur nom m s 0.02 0.00 0.02 0.00 +terminatrice terminateur adj f s 0.01 0.00 0.01 0.00 +terminaux terminal nom m p 5.61 0.88 0.23 0.00 +termine terminer ver 142.38 100.00 14.90 9.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +terminent terminer ver 142.38 100.00 1.14 1.49 ind:pre:3p; +terminer terminer ver 142.38 100.00 18.04 13.18 inf; +terminera terminer ver 142.38 100.00 1.35 0.34 ind:fut:3s; +terminerai terminer ver 142.38 100.00 0.88 0.34 ind:fut:1s; +termineraient terminer ver 142.38 100.00 0.03 0.20 cnd:pre:3p; +terminerait terminer ver 142.38 100.00 0.41 1.28 cnd:pre:3s; +termineras terminer ver 142.38 100.00 0.08 0.07 ind:fut:2s; +terminerez terminer ver 142.38 100.00 0.15 0.14 ind:fut:2p; +terminerons terminer ver 142.38 100.00 0.24 0.00 ind:fut:1p; +termineront terminer ver 142.38 100.00 0.04 0.14 ind:fut:3p; +termines terminer ver 142.38 100.00 0.82 0.07 ind:pre:2s; +terminez terminer ver 142.38 100.00 0.85 0.00 imp:pre:2p;ind:pre:2p; +terminiez terminer ver 142.38 100.00 0.03 0.00 ind:imp:2p; +terminions terminer ver 142.38 100.00 0.02 0.20 ind:imp:1p; +terminologie terminologie nom f s 0.46 0.27 0.46 0.27 +terminologique terminologique adj s 0.00 0.07 0.00 0.07 +terminons terminer ver 142.38 100.00 0.57 0.14 imp:pre:1p;ind:pre:1p; +terminât terminer ver 142.38 100.00 0.00 0.34 sub:imp:3s; +terminèrent terminer ver 142.38 100.00 0.01 0.47 ind:pas:3p; +terminé terminer ver m s 142.38 100.00 78.47 34.93 par:pas; +terminée terminer ver f s 142.38 100.00 18.61 12.70 par:pas; +terminées terminer ver f p 142.38 100.00 2.34 2.91 par:pas; +terminés terminer ver m p 142.38 100.00 1.92 2.64 par:pas; +terminus terminus nom m 3.30 5.00 3.30 5.00 +termite termite nom m s 2.23 1.96 0.35 0.00 +termites termite nom m p 2.23 1.96 1.88 1.96 +termitière termitière nom f s 0.00 0.81 0.00 0.61 +termitières termitière nom f p 0.00 0.81 0.00 0.20 +ternaire ternaire adj s 0.00 0.14 0.00 0.14 +terne terne adj s 2.00 16.15 1.36 9.73 +ternes terne adj p 2.00 16.15 0.64 6.42 +terni ternir ver m s 1.32 6.28 0.35 1.01 par:pas; +ternie ternir ver f s 1.32 6.28 0.20 0.34 par:pas; +ternies ternir ver f p 1.32 6.28 0.01 0.34 par:pas; +ternir ternir ver 1.32 6.28 0.35 1.49 inf; +ternirai ternir ver 1.32 6.28 0.01 0.00 ind:fut:1s; +ternirait ternir ver 1.32 6.28 0.06 0.07 cnd:pre:3s; +ternis ternir ver m p 1.32 6.28 0.04 0.34 ind:pre:2s;par:pas; +ternissaient ternir ver 1.32 6.28 0.00 0.14 ind:imp:3p; +ternissait ternir ver 1.32 6.28 0.00 1.22 ind:imp:3s; +ternissant ternir ver 1.32 6.28 0.00 0.07 par:pre; +ternisse ternir ver 1.32 6.28 0.15 0.14 sub:pre:3s; +ternissent ternir ver 1.32 6.28 0.05 0.14 ind:pre:3p; +ternit ternir ver 1.32 6.28 0.10 1.01 ind:pre:3s;ind:pas:3s; +terra_incognita terra_incognita nom f s 0.02 0.34 0.02 0.34 +terra terrer ver 2.62 7.70 0.90 0.41 ind:pas:3s;;ind:pas:3s; +terrage terrage nom m s 0.00 0.54 0.00 0.54 +terrai terrer ver 2.62 7.70 0.00 0.07 ind:pas:1s; +terraient terrer ver 2.62 7.70 0.03 0.20 ind:imp:3p; +terrain terrain nom m s 52.58 74.73 49.12 64.86 +terrains terrain nom m p 52.58 74.73 3.46 9.86 +terrait terrer ver 2.62 7.70 0.05 0.54 ind:imp:3s; +terramycine terramycine nom f s 0.14 0.00 0.14 0.00 +terrant terrer ver 2.62 7.70 0.00 0.20 par:pre; +terraplane terraplane nom m s 0.02 0.00 0.02 0.00 +terrarium terrarium nom m s 0.06 0.00 0.06 0.00 +terrassa terrasser ver 2.48 5.00 0.23 0.34 ind:pas:3s; +terrassai terrasser ver 2.48 5.00 0.00 0.14 ind:pas:1s; +terrassaient terrasser ver 2.48 5.00 0.00 0.14 ind:imp:3p; +terrassait terrasser ver 2.48 5.00 0.00 0.27 ind:imp:3s; +terrassant terrasser ver 2.48 5.00 0.00 0.27 par:pre; +terrasse terrasse nom f s 10.57 74.05 9.66 61.15 +terrassement terrassement nom m s 0.02 0.95 0.01 0.68 +terrassements terrassement nom m p 0.02 0.95 0.01 0.27 +terrasser terrasser ver 2.48 5.00 0.37 0.34 inf; +terrasserait terrasser ver 2.48 5.00 0.00 0.20 cnd:pre:3s; +terrasses terrasse nom f p 10.57 74.05 0.92 12.91 +terrassier terrassier nom m s 0.36 2.97 0.15 1.15 +terrassiers terrassier nom m p 0.36 2.97 0.22 1.82 +terrasson terrasson nom m s 0.00 0.14 0.00 0.14 +terrassât terrasser ver 2.48 5.00 0.00 0.07 sub:imp:3s; +terrassèrent terrasser ver 2.48 5.00 0.00 0.07 ind:pas:3p; +terrassé terrasser ver m s 2.48 5.00 1.29 1.76 par:pas; +terrassée terrasser ver f s 2.48 5.00 0.18 0.81 par:pas; +terrassées terrasser ver f p 2.48 5.00 0.02 0.00 par:pas; +terrassés terrasser ver m p 2.48 5.00 0.07 0.14 par:pas; +terre_neuvas terre_neuvas nom m 0.00 0.34 0.00 0.34 +terre_neuve terre_neuve nom m 0.03 0.27 0.03 0.27 +terre_neuvien terre_neuvien adj m s 0.01 0.00 0.01 0.00 +terre_neuvien terre_neuvien nom m s 0.01 0.00 0.01 0.00 +terre_à_terre terre_à_terre adj f s 0.00 0.20 0.00 0.20 +terre_plein terre_plein nom m s 0.20 5.81 0.20 5.74 +terre_plein terre_plein nom m p 0.20 5.81 0.00 0.07 +terre terre nom f s 294.45 452.91 276.29 420.88 +terreau terreau nom m s 0.19 3.78 0.18 3.72 +terreaux terreau nom m p 0.19 3.78 0.01 0.07 +terrent terrer ver 2.62 7.70 0.26 0.34 ind:pre:3p; +terrer terrer ver 2.62 7.70 0.46 1.96 inf; +terrerait terrer ver 2.62 7.70 0.02 0.00 cnd:pre:3s; +terreront terrer ver 2.62 7.70 0.01 0.07 ind:fut:3p; +terres terre nom f p 294.45 452.91 18.16 32.03 +terrestre terrestre adj s 6.96 12.57 4.92 7.36 +terrestres terrestre adj p 6.96 12.57 2.04 5.20 +terreur terreur nom f s 15.18 27.09 13.87 23.78 +terreurs terreur nom f p 15.18 27.09 1.30 3.31 +terreuse terreuse adj f s 0.06 0.00 0.06 0.00 +terreuses terreux adj f p 0.47 5.88 0.12 1.01 +terreux terreux adj m 0.47 5.88 0.35 2.50 +terrez terrer ver 2.62 7.70 0.02 0.00 ind:pre:2p; +terri terri nom m s 0.43 0.00 0.43 0.00 +terrible terrible adj s 87.66 88.11 76.56 73.24 +terriblement terriblement adv 11.88 14.53 11.88 14.53 +terribles terrible adj p 87.66 88.11 11.10 14.86 +terrien terrien adj m s 4.20 1.82 1.35 0.88 +terrienne terrien adj f s 4.20 1.82 1.59 0.20 +terriennes terrien adj f p 4.20 1.82 0.63 0.34 +terriens terrien nom m p 3.59 1.01 1.85 0.54 +terrier terrier nom m s 1.15 2.91 0.90 2.23 +terriers terrier nom m p 1.15 2.91 0.25 0.68 +terrifia terrifier ver 8.49 4.86 0.02 0.14 ind:pas:3s; +terrifiaient terrifier ver 8.49 4.86 0.25 0.27 ind:imp:3p; +terrifiait terrifier ver 8.49 4.86 0.39 0.54 ind:imp:3s; +terrifiant terrifiant adj m s 8.33 10.34 5.20 4.39 +terrifiante terrifiant adj f s 8.33 10.34 2.19 3.31 +terrifiantes terrifiant adj f p 8.33 10.34 0.45 1.28 +terrifiants terrifiant adj m p 8.33 10.34 0.48 1.35 +terrifie terrifier ver 8.49 4.86 1.15 0.41 ind:pre:1s;ind:pre:3s; +terrifient terrifier ver 8.49 4.86 0.14 0.27 ind:pre:3p; +terrifier terrifier ver 8.49 4.86 0.19 0.14 inf; +terrifierait terrifier ver 8.49 4.86 0.11 0.00 cnd:pre:3s; +terrifiez terrifier ver 8.49 4.86 0.08 0.00 imp:pre:2p;ind:pre:2p; +terrifions terrifier ver 8.49 4.86 0.01 0.00 ind:pre:1p; +terrifique terrifique adj m s 0.00 0.14 0.00 0.14 +terrifié terrifier ver m s 8.49 4.86 2.61 1.76 par:pas; +terrifiée terrifier ver f s 8.49 4.86 1.88 0.68 par:pas; +terrifiées terrifier ver f p 8.49 4.86 0.07 0.07 par:pas; +terrifiés terrifier ver m p 8.49 4.86 1.07 0.14 par:pas; +terril terril nom m s 0.03 0.68 0.02 0.27 +terrils terril nom m p 0.03 0.68 0.01 0.41 +terrine terrine nom f s 0.21 3.31 0.20 2.23 +terrines terrine nom f p 0.21 3.31 0.01 1.08 +territoire territoire nom m s 19.09 58.24 15.34 36.08 +territoires territoire nom m p 19.09 58.24 3.75 22.16 +territorial territorial adj m s 0.67 3.24 0.08 0.61 +territoriale territorial adj f s 0.67 3.24 0.15 1.22 +territorialement territorialement adv 0.00 0.07 0.00 0.07 +territoriales territorial adj f p 0.67 3.24 0.20 1.08 +territorialité territorialité nom f s 0.05 0.00 0.05 0.00 +territoriaux territorial adj m p 0.67 3.24 0.24 0.34 +terroir terroir nom m s 0.17 1.82 0.17 1.82 +terrons terrer ver 2.62 7.70 0.00 0.07 ind:pre:1p; +terrorisa terroriser ver 7.82 4.59 0.14 0.14 ind:pas:3s; +terrorisaient terroriser ver 7.82 4.59 0.03 0.27 ind:imp:3p; +terrorisait terroriser ver 7.82 4.59 0.30 0.74 ind:imp:3s; +terrorisant terroriser ver 7.82 4.59 0.06 0.34 par:pre; +terrorisante terrorisant adj f s 0.03 0.34 0.00 0.07 +terrorisants terrorisant adj m p 0.03 0.34 0.01 0.07 +terrorise terroriser ver 7.82 4.59 1.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +terrorisent terroriser ver 7.82 4.59 0.55 0.20 ind:pre:3p; +terroriser terroriser ver 7.82 4.59 1.56 0.88 inf; +terroriseront terroriser ver 7.82 4.59 0.01 0.00 ind:fut:3p; +terrorises terroriser ver 7.82 4.59 0.16 0.07 ind:pre:2s; +terrorisez terroriser ver 7.82 4.59 0.05 0.00 ind:pre:2p; +terrorisme terrorisme nom m s 5.59 1.22 5.59 1.15 +terrorismes terrorisme nom m p 5.59 1.22 0.00 0.07 +terroriste terroriste nom s 16.62 2.50 5.87 0.74 +terroristes terroriste nom p 16.62 2.50 10.75 1.76 +terrorisé terroriser ver m s 7.82 4.59 1.06 0.81 par:pas; +terrorisée terroriser ver f s 7.82 4.59 1.74 0.47 par:pas; +terrorisées terrorisé adj f p 1.43 2.97 0.14 0.20 +terrorisés terroriser ver m p 7.82 4.59 0.69 0.34 par:pas; +terré terrer ver m s 2.62 7.70 0.42 0.74 par:pas; +terrée terrer ver f s 2.62 7.70 0.04 0.88 par:pas; +terrées terrer ver f p 2.62 7.70 0.00 0.20 par:pas; +terrés terrer ver m p 2.62 7.70 0.12 0.74 par:pas; +tertiaire tertiaire adj s 0.09 0.14 0.06 0.14 +tertiaires tertiaire adj m p 0.09 0.14 0.03 0.00 +tertio tertio adv_sup 1.08 0.81 1.08 0.81 +tertre tertre nom m s 0.17 2.50 0.16 2.23 +tertres tertre nom m p 0.17 2.50 0.01 0.27 +tes tes adj_pos 690.24 145.00 690.24 145.00 +tesla tesla nom m s 0.02 0.00 0.02 0.00 +tessiture tessiture nom f s 0.00 0.41 0.00 0.41 +tesson tesson nom m s 0.76 2.43 0.48 0.27 +tessons tesson nom m p 0.76 2.43 0.28 2.16 +test_match test_match nom m s 0.01 0.00 0.01 0.00 +test test nom m s 55.38 5.61 34.87 2.91 +testa tester ver 20.66 2.43 0.21 0.54 ind:pas:3s; +testais tester ver 20.66 2.43 0.29 0.00 ind:imp:1s;ind:imp:2s; +testait tester ver 20.66 2.43 0.28 0.14 ind:imp:3s; +testament testament nom m s 10.90 8.24 10.70 7.70 +testamentaire testamentaire adj s 0.47 0.27 0.44 0.07 +testamentaires testamentaire adj f p 0.47 0.27 0.04 0.20 +testaments testament nom m p 10.90 8.24 0.20 0.54 +testant tester ver 20.66 2.43 0.23 0.14 par:pre; +teste tester ver 20.66 2.43 2.76 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +testent tester ver 20.66 2.43 0.53 0.00 ind:pre:3p; +tester tester ver 20.66 2.43 8.73 0.81 inf; +testera tester ver 20.66 2.43 0.03 0.00 ind:fut:3s; +testeras tester ver 20.66 2.43 0.01 0.00 ind:fut:2s; +testerons tester ver 20.66 2.43 0.18 0.00 ind:fut:1p; +testeront tester ver 20.66 2.43 0.01 0.00 ind:fut:3p; +testes tester ver 20.66 2.43 0.37 0.07 ind:pre:2s; +testeur testeur nom m s 0.17 0.00 0.16 0.00 +testeuse testeur nom f s 0.17 0.00 0.01 0.00 +testez tester ver 20.66 2.43 1.18 0.00 imp:pre:2p;ind:pre:2p; +testiculaire testiculaire adj s 0.07 0.07 0.07 0.07 +testicule testicule nom m s 2.46 1.89 0.44 0.27 +testicules testicule nom m p 2.46 1.89 2.02 1.62 +testiez tester ver 20.66 2.43 0.11 0.00 ind:imp:2p; +testions tester ver 20.66 2.43 0.03 0.07 ind:imp:1p; +testons tester ver 20.66 2.43 0.39 0.00 imp:pre:1p;ind:pre:1p; +testostérone testostérone nom f s 1.18 0.00 1.15 0.00 +testostérones testostérone nom f p 1.18 0.00 0.03 0.00 +tests test nom m p 55.38 5.61 20.50 2.70 +testèrent tester ver 20.66 2.43 0.00 0.07 ind:pas:3p; +testé tester ver m s 20.66 2.43 3.88 0.14 par:pas; +testu testu nom m s 0.00 0.07 0.00 0.07 +testée tester ver f s 20.66 2.43 0.71 0.07 par:pas; +testées tester ver f p 20.66 2.43 0.23 0.00 par:pas; +testés tester ver m p 20.66 2.43 0.48 0.07 par:pas; +tette tette nom f s 0.14 0.00 0.14 0.00 +teuf_teuf teuf_teuf nom m s 0.04 0.41 0.04 0.41 +teuton teuton nom m s 0.14 0.34 0.13 0.14 +teutonique teutonique adj s 0.11 0.88 0.00 0.34 +teutoniques teutonique adj m p 0.11 0.88 0.11 0.54 +teutonne teuton adj f s 0.25 0.74 0.12 0.54 +teutonnes teuton adj f p 0.25 0.74 0.00 0.14 +teutons teuton nom m p 0.14 0.34 0.01 0.20 +tex tex nom m 1.70 0.14 1.70 0.14 +texan texan nom m s 0.95 0.61 0.47 0.41 +texane texan adj f s 0.79 0.61 0.21 0.07 +texanes texan adj f p 0.79 0.61 0.03 0.20 +texans texan nom m p 0.95 0.61 0.39 0.20 +texte texte nom m s 20.42 43.24 16.22 31.42 +textes texte nom m p 20.42 43.24 4.20 11.82 +textile textile adj s 0.65 0.88 0.62 0.47 +textiles textile nom m p 0.72 1.22 0.15 0.20 +texto texto adv 0.45 0.61 0.45 0.61 +textologie textologie nom f s 0.00 0.07 0.00 0.07 +textuel textuel adj m s 0.03 0.41 0.00 0.27 +textuelle textuel adj f s 0.03 0.41 0.01 0.07 +textuellement textuellement adv 0.03 1.08 0.03 1.08 +textuelles textuel adj f p 0.03 0.41 0.01 0.07 +texture texture nom f s 1.57 1.69 1.33 1.69 +textures texture nom f p 1.57 1.69 0.25 0.00 +ça ça pro_dem s 8933.66 2477.64 8933.66 2477.64 +thaï thaï adj m s 0.97 0.34 0.52 0.20 +thaïe thaï adj f s 0.97 0.34 0.16 0.07 +thaïlandais thaïlandais adj m 0.56 0.41 0.40 0.27 +thaïlandaise thaïlandais adj f s 0.56 0.41 0.13 0.00 +thaïlandaises thaïlandais adj f p 0.56 0.41 0.04 0.14 +thaïs thaï adj m p 0.97 0.34 0.29 0.07 +thalamique thalamique adj f s 0.01 0.00 0.01 0.00 +thalamus thalamus nom m 0.13 0.00 0.13 0.00 +thalasso thalasso nom f s 0.45 0.00 0.45 0.00 +thalassothérapeutes thalassothérapeute nom p 0.00 0.07 0.00 0.07 +thalassothérapie thalassothérapie nom f s 0.01 0.20 0.01 0.20 +thalassémie thalassémie nom f s 0.01 0.00 0.01 0.00 +thaler thaler nom m s 0.10 0.07 0.05 0.00 +thalers thaler nom m p 0.10 0.07 0.05 0.07 +thalidomide thalidomide nom f s 0.05 0.00 0.05 0.00 +thallium thallium nom m s 0.14 0.00 0.14 0.00 +thalweg thalweg nom m s 0.00 0.07 0.00 0.07 +thanatologie thanatologie nom f s 0.01 0.00 0.01 0.00 +thanatologique thanatologique adj m s 0.00 0.07 0.00 0.07 +thanatopraxie thanatopraxie nom f s 0.01 0.00 0.01 0.00 +thanatos thanatos nom m 0.04 0.00 0.04 0.00 +thanksgiving thanksgiving nom m s 6.89 0.00 6.89 0.00 +thatchériennes thatchérien adj f p 0.00 0.07 0.00 0.07 +thaumaturge thaumaturge nom s 0.00 0.47 0.00 0.34 +thaumaturges thaumaturge nom p 0.00 0.47 0.00 0.14 +thaumaturgie thaumaturgie nom f s 0.00 0.07 0.00 0.07 +thermal thermal adj m s 0.83 1.69 0.21 0.54 +thermale thermal adj f s 0.83 1.69 0.38 0.74 +thermales thermal adj f p 0.83 1.69 0.11 0.41 +thermaux thermal adj m p 0.83 1.69 0.14 0.00 +thermes thermes nom m p 0.55 0.41 0.55 0.41 +thermidor thermidor nom m s 0.07 0.20 0.07 0.20 +thermidorienne thermidorien adj f s 0.00 0.07 0.00 0.07 +thermique thermique adj s 2.37 0.47 1.58 0.34 +thermiques thermique adj p 2.37 0.47 0.79 0.14 +thermite thermite nom f s 0.04 0.00 0.04 0.00 +thermo thermo nom m s 0.10 0.00 0.10 0.00 +thermocollants thermocollant adj m p 0.00 0.07 0.00 0.07 +thermodynamique thermodynamique nom f s 0.09 0.20 0.09 0.20 +thermoformage thermoformage nom m s 0.00 0.07 0.00 0.07 +thermographe thermographe nom m s 0.04 0.00 0.04 0.00 +thermographie thermographie nom f s 0.04 0.00 0.04 0.00 +thermogène thermogène adj s 0.00 0.54 0.00 0.54 +thermoluminescence thermoluminescence nom f s 0.01 0.00 0.01 0.00 +thermomètre thermomètre nom m s 1.43 5.27 1.37 5.07 +thermomètres thermomètre nom m p 1.43 5.27 0.06 0.20 +thermonucléaire thermonucléaire adj s 0.66 0.14 0.42 0.07 +thermonucléaires thermonucléaire adj p 0.66 0.14 0.23 0.07 +thermorégulateur thermorégulateur adj m s 0.01 0.00 0.01 0.00 +thermos thermos adj s 0.91 2.36 0.91 2.36 +thermosensible thermosensible adj m s 0.03 0.00 0.03 0.00 +thermostat thermostat nom m s 1.31 0.54 1.21 0.54 +thermostats thermostat nom m p 1.31 0.54 0.10 0.00 +thermoélectriques thermoélectrique adj m p 0.01 0.00 0.01 0.00 +thesaurus thesaurus nom m 0.01 0.00 0.01 0.00 +thessalien thessalien adj m s 0.03 0.00 0.02 0.00 +thessaliens thessalien adj m p 0.03 0.00 0.01 0.00 +thiamine thiamine nom f s 0.04 0.00 0.04 0.00 +thibaude thibaude nom f s 0.00 0.14 0.00 0.14 +çà çà adv 7.78 21.15 7.78 21.15 +thomas thomas nom m 4.83 25.81 4.83 25.81 +thomisme thomisme nom m s 0.00 0.14 0.00 0.14 +thomiste thomiste adj m s 0.00 0.14 0.00 0.14 +thon thon nom m s 5.88 2.16 5.66 1.89 +thonier thonier nom m s 0.03 0.34 0.03 0.14 +thoniers thonier nom m p 0.03 0.34 0.00 0.20 +thons thon nom m p 5.88 2.16 0.23 0.27 +thoracentèse thoracentèse nom f s 0.04 0.00 0.04 0.00 +thoracique thoracique adj s 2.12 1.82 1.89 1.42 +thoraciques thoracique adj p 2.12 1.82 0.23 0.41 +thoracotomie thoracotomie nom f s 0.31 0.00 0.31 0.00 +thorax thorax nom m 3.62 2.03 3.62 2.03 +thorine thorine nom f s 0.13 0.00 0.13 0.00 +thoron thoron nom m s 0.01 0.00 0.01 0.00 +thrace thrace adj s 0.14 0.41 0.13 0.20 +thraces thrace adj f p 0.14 0.41 0.01 0.20 +ère ère nom f s 13.23 7.84 12.91 7.64 +ères ère nom f p 13.23 7.84 0.32 0.20 +thrill thrill nom m s 0.07 0.00 0.07 0.00 +thriller thriller nom m s 0.58 0.07 0.55 0.00 +thrillers thriller nom m p 0.58 0.07 0.03 0.07 +thrombolyse thrombolyse nom f s 0.01 0.00 0.01 0.00 +thrombolytique thrombolytique adj f s 0.01 0.00 0.01 0.00 +thrombose thrombose nom f s 0.56 0.00 0.56 0.00 +thrombosé thrombosé adj m s 0.03 0.00 0.03 0.00 +thrombotique thrombotique adj s 0.07 0.00 0.07 0.00 +thrène thrène nom m s 0.10 0.00 0.10 0.00 +çruti çruti nom m s 0.00 0.07 0.00 0.07 +ès ès pre 0.00 1.08 0.00 1.08 +thème thème nom m s 17.32 14.26 15.49 10.54 +thèmes thème nom m p 17.32 14.26 1.83 3.72 +thèse thèse nom f s 10.67 9.32 10.22 7.77 +thèses thèse nom f p 10.67 9.32 0.46 1.55 +thé thé nom m s 69.01 44.86 67.84 44.19 +thébaïde thébaïde nom f s 0.00 0.34 0.00 0.27 +thébaïdes thébaïde nom f p 0.00 0.34 0.00 0.07 +thébaïne thébaïne nom f s 0.00 0.07 0.00 0.07 +thug thug nom m s 0.33 0.14 0.01 0.00 +thugs thug nom m p 0.33 0.14 0.32 0.14 +théier théier nom m s 0.01 0.00 0.01 0.00 +théine théine nom f s 0.01 0.00 0.01 0.00 +théiste théiste adj f s 0.02 0.00 0.02 0.00 +théière théière nom f s 1.00 2.91 0.80 2.43 +théières théière nom f p 1.00 2.91 0.20 0.47 +thématique thématique nom f s 0.14 0.07 0.12 0.00 +thématiquement thématiquement adv 0.00 0.07 0.00 0.07 +thématiques thématique adj m p 0.06 0.20 0.03 0.00 +thune thune nom f s 4.63 5.68 3.52 5.00 +thunes thune nom f p 4.63 5.68 1.11 0.68 +théo théo nom s 0.14 0.00 0.14 0.00 +théocratique théocratique adj f s 0.00 0.14 0.00 0.14 +théodolite théodolite nom m s 0.01 0.00 0.01 0.00 +théologales théologal adj f p 0.00 0.20 0.00 0.20 +théologie théologie nom f s 1.97 4.19 1.96 4.19 +théologien théologien nom m s 0.46 2.09 0.35 0.81 +théologiennes théologien nom f p 0.46 2.09 0.00 0.07 +théologiens théologien nom m p 0.46 2.09 0.11 1.22 +théologies théologie nom f p 1.97 4.19 0.01 0.00 +théologique théologique adj s 0.39 1.35 0.29 0.88 +théologiquement théologiquement adv 0.03 0.00 0.03 0.00 +théologiques théologique adj f p 0.39 1.35 0.10 0.47 +théophylline théophylline nom f s 0.04 0.00 0.04 0.00 +théorbe théorbe nom m s 0.00 0.34 0.00 0.20 +théorbes théorbe nom m p 0.00 0.34 0.00 0.14 +théoricien théoricien nom m s 0.40 1.15 0.25 0.47 +théoricienne théoricien nom f s 0.40 1.15 0.13 0.00 +théoriciens théoricien nom m p 0.40 1.15 0.03 0.68 +théorie théorie nom f s 32.38 15.27 27.29 8.04 +théories théorie nom f p 32.38 15.27 5.09 7.23 +théorique théorique adj s 2.11 3.58 1.76 2.43 +théoriquement théoriquement adv 2.58 2.70 2.58 2.70 +théoriques théorique adj p 2.11 3.58 0.35 1.15 +théorise théoriser ver 0.07 0.00 0.02 0.00 ind:pre:1s;ind:pre:3s; +théoriser théoriser ver 0.07 0.00 0.04 0.00 inf; +théorème théorème nom m s 0.41 0.81 0.36 0.41 +théorèmes théorème nom m p 0.41 0.81 0.05 0.41 +théosophes théosophe nom p 0.00 0.07 0.00 0.07 +théosophie théosophie nom f s 0.03 0.00 0.03 0.00 +théosophique théosophique adj m s 0.00 0.07 0.00 0.07 +théâtral théâtral adj m s 1.78 7.97 0.80 3.51 +théâtrale théâtral adj f s 1.78 7.97 0.76 3.45 +théâtralement théâtralement adv 0.02 0.47 0.02 0.47 +théâtrales théâtral adj f p 1.78 7.97 0.17 0.88 +théâtralisant théâtraliser ver 0.00 0.20 0.00 0.07 par:pre; +théâtralisé théâtraliser ver m s 0.00 0.20 0.00 0.07 par:pas; +théâtralisée théâtraliser ver f s 0.00 0.20 0.00 0.07 par:pas; +théâtralité théâtralité nom f s 0.04 0.07 0.04 0.07 +théâtraux théâtral adj m p 1.78 7.97 0.05 0.14 +théâtre théâtre nom m s 41.49 68.18 40.51 64.32 +théâtres théâtre nom m p 41.49 68.18 0.98 3.85 +théâtreuse théâtreux nom f s 0.18 0.20 0.02 0.07 +théâtreux théâtreux nom m 0.18 0.20 0.16 0.14 +thérapeute thérapeute nom s 3.67 0.07 3.44 0.07 +thérapeutes thérapeute nom p 3.67 0.07 0.23 0.00 +thérapeutique thérapeutique adj s 1.68 0.54 1.30 0.34 +thérapeutiques thérapeutique adj p 1.68 0.54 0.38 0.20 +thérapie thérapie nom f s 13.63 0.07 12.98 0.07 +thérapies thérapie nom f p 13.63 0.07 0.65 0.00 +thuriféraire thuriféraire nom m s 0.00 0.34 0.00 0.14 +thuriféraires thuriféraire nom m p 0.00 0.34 0.00 0.20 +thés thé nom m p 69.01 44.86 1.17 0.68 +thésard thésard nom m s 0.08 0.00 0.04 0.00 +thésards thésard nom m p 0.08 0.00 0.04 0.00 +thésaurise thésauriser ver 0.25 0.41 0.11 0.14 ind:pre:3s; +thésauriser thésauriser ver 0.25 0.41 0.14 0.14 inf; +thésaurisés thésauriser ver m p 0.25 0.41 0.00 0.14 par:pas; +thésaurus thésaurus nom m 0.01 0.00 0.01 0.00 +thêta thêta nom m 0.21 0.00 0.21 0.00 +théurgiques théurgique adj p 0.00 0.07 0.00 0.07 +thuya thuya nom m s 0.00 0.27 0.00 0.20 +thuyas thuya nom m p 0.00 0.27 0.00 0.07 +ève pas adv_sup 18189.04 8795.20 0.01 0.00 +thym thym nom m s 1.17 2.09 1.17 2.09 +thymectomie thymectomie nom f s 0.03 0.00 0.03 0.00 +thymine thymine nom f s 0.04 0.00 0.04 0.00 +thymus thymus nom m 0.05 0.00 0.05 0.00 +thyroïde thyroïde nom f s 0.27 0.14 0.27 0.14 +thyroïdectomie thyroïdectomie nom f s 0.03 0.00 0.03 0.00 +thyroïdien thyroïdien adj m s 0.04 0.00 0.03 0.00 +thyroïdienne thyroïdien adj f s 0.04 0.00 0.01 0.00 +thyroxine thyroxine nom f s 0.02 0.00 0.02 0.00 +thyrses thyrse nom m p 0.00 0.07 0.00 0.07 +thyréotoxicose thyréotoxicose nom f s 0.01 0.00 0.01 0.00 +tiama tiama nom m s 0.17 0.00 0.17 0.00 +tian tian nom m s 0.18 0.20 0.18 0.20 +tiare tiare nom f s 0.51 0.88 0.50 0.81 +tiares tiare nom f p 0.51 0.88 0.01 0.07 +tiaré tiaré nom m s 0.00 0.07 0.00 0.07 +tibia tibia nom m s 2.33 3.04 2.02 1.01 +tibial tibial adj m s 0.09 0.14 0.04 0.00 +tibiale tibial adj f s 0.09 0.14 0.05 0.14 +tibias tibia nom m p 2.33 3.04 0.30 2.03 +tibétain tibétain adj m s 0.53 0.68 0.29 0.27 +tibétaine tibétain adj f s 0.53 0.68 0.11 0.07 +tibétaines tibétain adj f p 0.53 0.68 0.02 0.07 +tibétains tibétain adj m p 0.53 0.68 0.11 0.27 +tic_tac tic_tac nom m 2.52 2.91 2.52 2.91 +tic tic nom m s 3.00 9.86 2.47 4.86 +ticheurte ticheurte nom m s 0.00 0.07 0.00 0.07 +ticket ticket nom m s 24.25 15.81 13.62 6.15 +tickets ticket nom m p 24.25 15.81 10.63 9.66 +tics tic nom m p 3.00 9.86 0.53 5.00 +ticsons ticson nom m p 0.00 0.14 0.00 0.14 +tictaquer tictaquer ver 0.03 0.00 0.03 0.00 inf; +tie_break tie_break nom m s 0.02 0.00 0.02 0.00 +tien tien pro_pos m s 26.21 5.54 26.21 5.54 +tiendra tenir ver 504.69 741.22 12.15 4.59 ind:fut:3s; +tiendrai tenir ver 504.69 741.22 8.61 1.89 ind:fut:1s; +tiendraient tenir ver 504.69 741.22 0.28 1.28 cnd:pre:3p; +tiendrais tenir ver 504.69 741.22 1.36 1.89 cnd:pre:1s;cnd:pre:2s; +tiendrait tenir ver 504.69 741.22 2.39 6.49 cnd:pre:3s; +tiendras tenir ver 504.69 741.22 2.76 0.61 ind:fut:2s; +tiendrez tenir ver 504.69 741.22 1.42 0.74 ind:fut:2p; +tiendriez tenir ver 504.69 741.22 0.28 0.14 cnd:pre:2p; +tiendrons tenir ver 504.69 741.22 1.94 0.74 ind:fut:1p; +tiendront tenir ver 504.69 741.22 1.86 0.68 ind:fut:3p; +tienne tienne pro_pos f s 25.41 5.81 25.41 5.81 +tiennent tenir ver 504.69 741.22 11.43 24.26 ind:pre:3p; +tiennes tiennes pro_pos f p 4.09 0.95 4.09 0.95 +tiens_la_moi tiens_la_moi adj_pos m s 0.14 0.00 0.14 0.00 +tiens tiens ono 212.99 81.89 212.99 81.89 +tient tenir ver 504.69 741.22 78.32 96.69 ind:pre:3s; +tierce tiers adj f s 0.78 2.97 0.32 0.41 +tiercefeuille tiercefeuille nom f s 0.00 0.07 0.00 0.07 +tiercelet tiercelet nom m s 0.00 0.14 0.00 0.07 +tiercelets tiercelet nom m p 0.00 0.14 0.00 0.07 +tierces tiers adj f p 0.78 2.97 0.00 0.14 +tiercé tiercé nom m s 1.32 2.03 1.32 1.89 +tiercés tiercé nom m p 1.32 2.03 0.00 0.14 +tiers_monde tiers_monde nom m s 1.96 0.20 1.96 0.14 +tiers_monde tiers_monde nom m p 1.96 0.20 0.00 0.07 +tiers_mondisme tiers_mondisme nom m s 0.00 0.07 0.00 0.07 +tiers_mondiste tiers_mondiste adj f s 0.15 0.20 0.15 0.00 +tiers_mondiste tiers_mondiste adj m p 0.15 0.20 0.00 0.20 +tiers_ordre tiers_ordre nom m 0.00 0.07 0.00 0.07 +tiers_point tiers_point nom m s 0.00 0.14 0.00 0.14 +tiers_état tiers_état nom m s 0.03 0.00 0.03 0.00 +tiers tiers nom m 6.24 14.93 6.18 13.85 +tif tif nom m s 1.71 6.01 0.84 0.27 +tifs tif nom m p 1.71 6.01 0.86 5.74 +tige tige nom f s 3.73 22.23 2.39 11.15 +tigelles tigelle nom f p 0.00 0.20 0.00 0.20 +tiges tige nom f p 3.73 22.23 1.34 11.08 +tignasse tignasse nom f s 0.89 4.80 0.87 4.46 +tignasses tignasse nom f p 0.89 4.80 0.02 0.34 +tigre tigre nom m s 14.90 8.65 11.14 4.86 +tigres tigre nom m p 14.90 8.65 2.66 2.50 +tigresse tigre nom f s 14.90 8.65 1.10 1.08 +tigresses tigresse nom f p 0.29 0.00 0.29 0.00 +tigré tigrer ver m s 0.02 0.47 0.02 0.27 par:pas; +tigrée tigré adj f s 0.01 1.69 0.00 0.41 +tigrées tigré adj f p 0.01 1.69 0.00 0.14 +tigrure tigrure nom f s 0.00 0.07 0.00 0.07 +tigrés tigré adj m p 0.01 1.69 0.00 0.54 +tiki tiki nom m s 0.16 0.00 0.16 0.00 +tilbury tilbury nom m s 0.00 0.81 0.00 0.74 +tilburys tilbury nom m p 0.00 0.81 0.00 0.07 +till till nom m s 0.35 0.00 0.35 0.00 +tillac tillac nom m s 0.00 0.14 0.00 0.07 +tillacs tillac nom m p 0.00 0.14 0.00 0.07 +tille tille nom f s 0.18 0.00 0.12 0.00 +tiller tiller ver 0.01 0.00 0.01 0.00 inf; +tilles tille nom f p 0.18 0.00 0.07 0.00 +tilleul tilleul nom m s 1.59 11.01 1.03 5.00 +tilleuls tilleul nom m p 1.59 11.01 0.56 6.01 +tilt tilt nom m s 1.11 1.55 1.11 1.49 +tilts tilt nom m p 1.11 1.55 0.00 0.07 +timbale timbale nom f s 0.97 2.43 0.60 1.76 +timbales timbale nom f p 0.97 2.43 0.37 0.68 +timbalier timbalier nom m s 0.00 0.14 0.00 0.07 +timbaliers timbalier nom m p 0.00 0.14 0.00 0.07 +timbrage timbrage nom m s 0.00 0.07 0.00 0.07 +timbrait timbrer ver 1.38 1.22 0.00 0.07 ind:imp:3s; +timbre_poste timbre_poste nom m s 0.12 1.28 0.11 0.68 +timbre timbre nom m s 7.86 20.81 1.82 13.18 +timbrer timbrer ver 1.38 1.22 0.05 0.00 inf; +timbre_poste timbre_poste nom m p 0.12 1.28 0.01 0.61 +timbres timbre nom m p 7.86 20.81 6.04 7.64 +timbrât timbrer ver 1.38 1.22 0.00 0.07 sub:imp:3s; +timbré timbrer ver m s 1.38 1.22 1.03 0.27 par:pas; +timbrée timbré adj f s 1.57 2.36 0.25 1.08 +timbrées timbré adj f p 1.57 2.36 0.01 0.14 +timbrés timbré adj m p 1.57 2.36 0.48 0.27 +time_sharing time_sharing nom m s 0.01 0.00 0.01 0.00 +timide timide adj s 16.36 25.14 14.18 19.53 +timidement timidement adv 0.10 11.22 0.10 11.22 +timides timide adj p 16.36 25.14 2.18 5.61 +timidité timidité nom f s 1.75 11.55 1.75 11.15 +timidités timidité nom f p 1.75 11.55 0.00 0.41 +timing timing nom m s 3.59 0.14 3.58 0.07 +timings timing nom m p 3.59 0.14 0.01 0.07 +timon timon nom m s 0.10 2.09 0.10 2.03 +timonerie timonerie nom f s 0.09 0.54 0.09 0.54 +timonier timonier nom m s 1.05 0.68 1.03 0.68 +timoniers timonier nom m p 1.05 0.68 0.02 0.00 +timons timon nom m p 0.10 2.09 0.00 0.07 +timoré timoré adj m s 0.70 2.09 0.44 0.68 +timorée timoré adj f s 0.70 2.09 0.05 0.41 +timorées timoré adj f p 0.70 2.09 0.00 0.07 +timorés timoré adj m p 0.70 2.09 0.21 0.95 +tin tin nom m s 0.52 0.20 0.45 0.00 +tine tine nom f s 0.16 0.00 0.16 0.00 +tinette tinette nom f s 0.12 1.55 0.12 0.68 +tinettes tinette nom f p 0.12 1.55 0.00 0.88 +tinrent tenir ver 504.69 741.22 0.01 1.55 ind:pas:3p; +tins tenir ver 504.69 741.22 0.16 2.57 ind:pas:1s;ind:pas:2s; +tinssent tenir ver 504.69 741.22 0.00 0.27 sub:imp:3p; +tint tenir ver 504.69 741.22 0.84 15.20 ind:pas:3s; +tinta tinter ver 0.95 11.76 0.00 0.88 ind:pas:3s; +tintaient tinter ver 0.95 11.76 0.02 0.47 ind:imp:3p; +tintait tinter ver 0.95 11.76 0.17 1.08 ind:imp:3s; +tintamarre tintamarre nom m s 0.04 3.51 0.04 3.31 +tintamarrent tintamarrer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +tintamarres tintamarre nom m p 0.04 3.51 0.00 0.20 +tintamarresque tintamarresque adj s 0.00 0.41 0.00 0.34 +tintamarresques tintamarresque adj p 0.00 0.41 0.00 0.07 +tintant tinter ver 0.95 11.76 0.00 1.15 par:pre; +tinte tinter ver 0.95 11.76 0.39 1.55 imp:pre:2s;ind:pre:3s; +tintement tintement nom m s 0.95 8.78 0.68 6.82 +tintements tintement nom m p 0.95 8.78 0.28 1.96 +tintent tinter ver 0.95 11.76 0.07 1.82 ind:pre:3p; +tinter tinter ver 0.95 11.76 0.31 3.92 inf; +tintin tintin ono 1.08 1.69 1.08 1.69 +tintinnabula tintinnabuler ver 0.01 0.74 0.00 0.07 ind:pas:3s; +tintinnabulaient tintinnabuler ver 0.01 0.74 0.00 0.07 ind:imp:3p; +tintinnabulant tintinnabuler ver 0.01 0.74 0.01 0.07 par:pre; +tintinnabulante tintinnabulant adj f s 0.00 0.41 0.00 0.14 +tintinnabulantes tintinnabulant adj f p 0.00 0.41 0.00 0.07 +tintinnabulants tintinnabulant adj m p 0.00 0.41 0.00 0.07 +tintinnabule tintinnabuler ver 0.01 0.74 0.00 0.14 ind:pre:3s; +tintinnabulement tintinnabulement nom m s 0.00 0.14 0.00 0.07 +tintinnabulements tintinnabulement nom m p 0.00 0.14 0.00 0.07 +tintinnabulent tintinnabuler ver 0.01 0.74 0.00 0.34 ind:pre:3p; +tintinnabuler tintinnabuler ver 0.01 0.74 0.00 0.07 inf; +tintouin tintouin nom m s 0.39 2.09 0.39 1.89 +tintouins tintouin nom m p 0.39 2.09 0.00 0.20 +tintèrent tinter ver 0.95 11.76 0.00 0.41 ind:pas:3p; +tinté tinter ver m s 0.95 11.76 0.00 0.41 par:pas; +tintés tinter ver m p 0.95 11.76 0.00 0.07 par:pas; +tinée tinée nom f s 0.00 0.14 0.00 0.14 +tipe tiper ver 0.02 0.00 0.02 0.00 ind:pre:3s; +tipi tipi nom m s 0.36 0.00 0.32 0.00 +tipis tipi nom m p 0.36 0.00 0.04 0.00 +tipper tipper ver 0.05 0.00 0.05 0.00 inf; +tipule tipule nom f s 0.00 0.07 0.00 0.07 +tiqua tiquer ver 0.28 2.91 0.00 0.20 ind:pas:3s; +tiquai tiquer ver 0.28 2.91 0.00 0.07 ind:pas:1s; +tiquaient tiquer ver 0.28 2.91 0.00 0.07 ind:imp:3p; +tiquais tiquer ver 0.28 2.91 0.00 0.14 ind:imp:1s; +tiquait tiquer ver 0.28 2.91 0.01 0.34 ind:imp:3s; +tiquant tiquer ver 0.28 2.91 0.00 0.14 par:pre; +tique tique nom f s 1.95 0.81 0.72 0.54 +tiquent tiquer ver 0.28 2.91 0.01 0.07 ind:pre:3p; +tiquer tiquer ver 0.28 2.91 0.13 0.47 inf; +tiquerais tiquer ver 0.28 2.91 0.01 0.00 cnd:pre:2s; +tiques tique nom f p 1.95 0.81 1.23 0.27 +tiqueté tiqueté adj m s 0.00 0.07 0.00 0.07 +tiqué tiquer ver m s 0.28 2.91 0.08 0.88 par:pas; +tir tir nom m s 32.11 18.85 24.54 16.01 +tira tirer ver 415.14 383.24 1.39 39.59 ind:pas:3s; +tirade tirade nom f s 1.55 4.05 1.25 3.18 +tirades tirade nom f p 1.55 4.05 0.30 0.88 +tirage tirage nom m s 3.76 6.01 3.01 5.07 +tirages tirage nom m p 3.76 6.01 0.75 0.95 +tirai tirer ver 415.14 383.24 0.23 2.43 ind:pas:1s; +tiraient tirer ver 415.14 383.24 1.76 10.47 ind:imp:3p; +tirailla tirailler ver 0.68 3.85 0.00 0.20 ind:pas:3s; +tiraillaient tirailler ver 0.68 3.85 0.00 0.20 ind:imp:3p; +tiraillait tirailler ver 0.68 3.85 0.15 0.68 ind:imp:3s; +tiraillant tirailler ver 0.68 3.85 0.01 0.41 par:pre; +tiraille tirailler ver 0.68 3.85 0.00 0.20 ind:pre:3s; +tiraillement tiraillement nom m s 0.13 0.95 0.10 0.34 +tiraillements tiraillement nom m p 0.13 0.95 0.03 0.61 +tiraillent tirailler ver 0.68 3.85 0.01 0.07 ind:pre:3p; +tirailler tirailler ver 0.68 3.85 0.16 0.61 inf; +tiraillerait tirailler ver 0.68 3.85 0.00 0.14 cnd:pre:3s; +tirailleries tiraillerie nom f p 0.00 0.07 0.00 0.07 +tirailleur tirailleur nom m s 0.12 6.49 0.04 0.88 +tirailleurs tirailleur nom m p 0.12 6.49 0.08 5.61 +tiraillez tirailler ver 0.68 3.85 0.01 0.00 imp:pre:2p; +tiraillons tirailler ver 0.68 3.85 0.00 0.07 ind:pre:1p; +tiraillé tirailler ver m s 0.68 3.85 0.26 0.95 par:pas; +tiraillée tirailler ver f s 0.68 3.85 0.07 0.07 par:pas; +tiraillées tirailler ver f p 0.68 3.85 0.00 0.07 par:pas; +tiraillés tirailler ver m p 0.68 3.85 0.01 0.20 par:pas; +tirais tirer ver 415.14 383.24 1.71 3.24 ind:imp:1s;ind:imp:2s; +tirait tirer ver 415.14 383.24 3.97 34.86 ind:imp:3s; +tiramisu tiramisu nom m s 0.24 0.00 0.24 0.00 +tirant tirer ver 415.14 383.24 2.66 25.95 par:pre; +tirants tirant nom m p 0.33 1.89 0.02 0.20 +tiras tirer ver 415.14 383.24 0.00 0.07 ind:pas:2s; +tirassent tirasser ver 0.00 0.07 0.00 0.07 ind:pre:3p; +tire_au_cul tire_au_cul nom m 0.02 0.00 0.02 0.00 +tire_au_flanc tire_au_flanc nom m 0.51 0.34 0.51 0.34 +tire_botte tire_botte nom m s 0.01 0.07 0.01 0.07 +tire_bouchon tire_bouchon nom m s 0.93 2.43 0.90 2.16 +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.00 0.14 ind:imp:3p; +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.00 0.07 par:pre; +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.01 0.27 ind:pre:3s; +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.01 0.07 ind:pre:3p; +tire_bouchonner tire_bouchonner ver m s 0.02 0.88 0.00 0.27 par:pas; +tire_bouchonner tire_bouchonner ver m p 0.02 0.88 0.00 0.07 par:pas; +tire_bouchon tire_bouchon nom m p 0.93 2.43 0.03 0.27 +tire_bouton tire_bouton nom m s 0.00 0.07 0.00 0.07 +tire_d_aile tire_d_aile nom f s 0.02 0.00 0.02 0.00 +tire_fesse tire_fesse nom f s 0.01 0.00 0.01 0.00 +tire_jus tire_jus nom m 0.00 0.20 0.00 0.20 +tire_laine tire_laine nom m 0.02 0.07 0.02 0.07 +tire_lait tire_lait nom m 0.07 0.00 0.07 0.00 +tire_larigot tire_larigot nom f s 0.00 0.07 0.00 0.07 +tire_ligne tire_ligne nom m s 0.00 0.34 0.00 0.20 +tire_ligne tire_ligne nom m p 0.00 0.34 0.00 0.14 +tire_lire tire_lire nom m 0.00 0.14 0.00 0.14 +tire tirer ver 415.14 383.24 107.25 55.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tirebouchonner tirebouchonner ver 0.00 0.34 0.00 0.14 inf; +tirebouchonné tirebouchonner ver m s 0.00 0.34 0.00 0.14 par:pas; +tirebouchonnée tirebouchonner ver f s 0.00 0.34 0.00 0.07 par:pas; +tirelire tirelire nom f s 1.43 2.16 1.39 2.09 +tirelirent tirelirer ver 0.00 0.07 0.00 0.07 ind:pre:3p; +tirelires tirelire nom f p 1.43 2.16 0.03 0.07 +tirent tirer ver 415.14 383.24 10.30 10.95 ind:pre:3p;sub:pre:3p; +tirer tirer ver 415.14 383.24 113.71 99.73 inf;;inf;;inf;;inf;; +tirera tirer ver 415.14 383.24 5.81 2.16 ind:fut:3s; +tirerai tirer ver 415.14 383.24 2.57 1.08 ind:fut:1s; +tireraient tirer ver 415.14 383.24 0.21 0.88 cnd:pre:3p; +tirerais tirer ver 415.14 383.24 1.54 0.61 cnd:pre:1s;cnd:pre:2s; +tirerait tirer ver 415.14 383.24 0.76 3.24 cnd:pre:3s; +tireras tirer ver 415.14 383.24 2.94 0.54 ind:fut:2s; +tirerez tirer ver 415.14 383.24 2.13 0.54 ind:fut:2p; +tireriez tirer ver 415.14 383.24 0.27 0.07 cnd:pre:2p; +tirerions tirer ver 415.14 383.24 0.00 0.07 cnd:pre:1p; +tirerons tirer ver 415.14 383.24 1.02 0.47 ind:fut:1p; +tireront tirer ver 415.14 383.24 1.75 0.61 ind:fut:3p; +tires tirer ver 415.14 383.24 11.70 2.09 ind:pre:2s;sub:pre:2s; +tiret tiret nom m s 0.20 0.54 0.20 0.27 +tirets tiret nom m p 0.20 0.54 0.00 0.27 +tirette tirette nom f s 0.04 1.22 0.03 0.41 +tirettes tirette nom f p 0.04 1.22 0.01 0.81 +tireur tireur nom m s 18.07 8.72 12.83 5.41 +tireurs tireur nom m p 18.07 8.72 5.08 2.64 +tireuse tireur nom f s 18.07 8.72 0.16 0.54 +tireuses tireuse nom f p 0.02 0.00 0.02 0.00 +tirez tirer ver 415.14 383.24 45.90 3.51 imp:pre:2p;ind:pre:2p; +tiriez tirer ver 415.14 383.24 0.42 0.20 ind:imp:2p; +tirions tirer ver 415.14 383.24 0.05 0.81 ind:imp:1p;sub:pre:1p; +tiroir_caisse tiroir_caisse nom m s 0.49 2.16 0.48 2.03 +tiroir tiroir nom m s 14.65 37.09 12.18 26.22 +tiroir_caisse tiroir_caisse nom m p 0.49 2.16 0.01 0.14 +tiroirs tiroir nom m p 14.65 37.09 2.47 10.88 +tirâmes tirer ver 415.14 383.24 0.00 0.07 ind:pas:1p; +tirons tirer ver 415.14 383.24 6.13 1.82 imp:pre:1p;ind:pre:1p; +tirât tirer ver 415.14 383.24 0.00 0.34 sub:imp:3s; +tirs tir nom m p 32.11 18.85 7.57 2.84 +tirèrent tirer ver 415.14 383.24 0.48 2.03 ind:pas:3p; +tiré tirer ver m s 415.14 383.24 76.78 53.04 par:pas; +tirée tirer ver f s 415.14 383.24 6.45 10.20 par:pas; +tirées tirer ver f p 415.14 383.24 1.16 2.77 par:pas; +tirés tirer ver m p 415.14 383.24 4.11 13.65 par:pas; +tisa tiser ver 0.28 0.14 0.00 0.14 ind:pas:3s; +tisane tisane nom f s 2.86 4.80 2.15 3.78 +tisanes tisane nom f p 2.86 4.80 0.72 1.01 +tisanière tisanière nom f s 0.00 0.14 0.00 0.14 +tisané tisaner ver m s 0.00 0.20 0.00 0.20 par:pas; +tiser tiser ver 0.28 0.14 0.28 0.00 inf; +tison tison nom m s 0.23 2.16 0.13 0.74 +tisonna tisonner ver 0.02 1.22 0.00 0.41 ind:pas:3s; +tisonnait tisonner ver 0.02 1.22 0.01 0.14 ind:imp:3s; +tisonnant tisonner ver 0.02 1.22 0.00 0.27 par:pre; +tisonne tisonner ver 0.02 1.22 0.00 0.07 ind:pre:3s; +tisonnent tisonner ver 0.02 1.22 0.00 0.14 ind:pre:3p; +tisonner tisonner ver 0.02 1.22 0.01 0.14 inf; +tisonnier tisonnier nom m s 1.01 0.95 0.98 0.88 +tisonniers tisonnier nom m p 1.01 0.95 0.04 0.07 +tisonné tisonner ver m s 0.02 1.22 0.00 0.07 par:pas; +tisonnés tisonné adj m p 0.00 0.14 0.00 0.07 +tisons tison nom m p 0.23 2.16 0.10 1.42 +tissa tisser ver 2.97 11.15 0.06 0.00 ind:pas:3s; +tissage tissage nom m s 0.26 1.55 0.25 1.49 +tissages tissage nom m p 0.26 1.55 0.01 0.07 +tissaient tisser ver 2.97 11.15 0.00 0.61 ind:imp:3p; +tissais tisser ver 2.97 11.15 0.01 0.00 ind:imp:2s; +tissait tisser ver 2.97 11.15 0.03 1.22 ind:imp:3s; +tissant tisser ver 2.97 11.15 0.01 0.61 par:pre; +tisse tisser ver 2.97 11.15 0.87 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tissent tisser ver 2.97 11.15 0.14 0.74 ind:pre:3p; +tisser tisser ver 2.97 11.15 0.58 2.36 inf; +tisserai tisser ver 2.97 11.15 0.02 0.00 ind:fut:1s; +tisserais tisser ver 2.97 11.15 0.01 0.00 cnd:pre:1s; +tisserait tisser ver 2.97 11.15 0.01 0.07 cnd:pre:3s; +tisserand tisserand nom m s 0.34 1.08 0.11 0.34 +tisserande tisserand nom f s 0.34 1.08 0.21 0.07 +tisserands tisserand nom m p 0.34 1.08 0.02 0.68 +tisserons tisser ver 2.97 11.15 0.01 0.07 ind:fut:1p; +tisseur tisseur nom m s 0.44 0.47 0.00 0.34 +tisseuse tisseur nom f s 0.44 0.47 0.44 0.14 +tissez tisser ver 2.97 11.15 0.29 0.00 imp:pre:2p;ind:pre:2p; +tissons tisser ver 2.97 11.15 0.01 0.07 ind:pre:1p; +tissât tisser ver 2.97 11.15 0.00 0.07 sub:imp:3s; +tissèrent tisser ver 2.97 11.15 0.00 0.07 ind:pas:3p; +tissu_éponge tissu_éponge nom m s 0.00 0.41 0.00 0.41 +tissé tisser ver m s 2.97 11.15 0.73 1.55 par:pas; +tissu tissu nom m s 15.69 34.66 9.21 25.95 +tissée tisser ver f s 2.97 11.15 0.13 1.55 par:pas; +tissue tissu adj f s 0.98 1.69 0.07 0.00 +tissées tissé adj f p 0.04 0.74 0.01 0.00 +tissues tissu adj f p 0.98 1.69 0.00 0.14 +tissulaire tissulaire adj s 0.33 0.07 0.28 0.00 +tissulaires tissulaire adj p 0.33 0.07 0.05 0.07 +tissés tisser ver m p 2.97 11.15 0.05 0.88 par:pas; +tissus tissu nom m p 15.69 34.66 6.48 8.72 +tissuterie tissuterie nom f s 0.00 0.14 0.00 0.14 +tissutier tissutier nom m s 0.00 0.07 0.00 0.07 +titan titan nom m s 1.33 0.88 1.06 0.68 +titane titane nom m s 1.69 0.20 1.69 0.20 +titanesque titanesque adj s 0.25 0.88 0.21 0.74 +titanesques titanesque adj p 0.25 0.88 0.03 0.14 +titanique titanique adj m s 0.01 0.00 0.01 0.00 +titans titan nom m p 1.33 0.88 0.27 0.20 +tiède tiède adj s 3.85 44.73 3.35 36.69 +tièdement tièdement adv 0.00 0.14 0.00 0.14 +tièdes tiède adj p 3.85 44.73 0.50 8.04 +titi titi nom m s 4.79 6.28 4.79 6.15 +titilla titiller ver 1.10 1.69 0.00 0.07 ind:pas:3s; +titillaient titiller ver 1.10 1.69 0.03 0.07 ind:imp:3p; +titillais titiller ver 1.10 1.69 0.02 0.07 ind:imp:1s;ind:imp:2s; +titillait titiller ver 1.10 1.69 0.04 0.41 ind:imp:3s; +titillant titiller ver 1.10 1.69 0.03 0.07 par:pre; +titillation titillation nom f s 0.00 0.27 0.00 0.20 +titillations titillation nom f p 0.00 0.27 0.00 0.07 +titille titiller ver 1.10 1.69 0.48 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +titillement titillement nom m s 0.02 0.20 0.00 0.14 +titillements titillement nom m p 0.02 0.20 0.02 0.07 +titillent titiller ver 1.10 1.69 0.04 0.00 ind:pre:3p; +titiller titiller ver 1.10 1.69 0.36 0.34 inf; +titillera titiller ver 1.10 1.69 0.01 0.00 ind:fut:3s; +titillé titiller ver m s 1.10 1.69 0.09 0.00 par:pas; +titillées titiller ver f p 1.10 1.69 0.00 0.14 par:pas; +titillés titiller ver m p 1.10 1.69 0.00 0.14 par:pas; +titis titi nom m p 4.79 6.28 0.00 0.14 +titisme titisme nom m s 0.00 0.14 0.00 0.14 +titra titrer ver 1.75 1.08 1.10 0.07 ind:pas:3s; +titrage titrage nom m s 0.31 0.00 0.31 0.00 +titrait titrer ver 1.75 1.08 0.00 0.27 ind:imp:3s; +titre titre nom m s 41.35 71.22 32.40 53.04 +titrer titrer ver 1.75 1.08 0.03 0.34 inf; +titres titre nom m p 41.35 71.22 8.95 18.18 +titré titré adj m s 0.46 0.61 0.28 0.20 +titrée titrer ver f s 1.75 1.08 0.01 0.00 par:pas; +titrées titré adj f p 0.46 0.61 0.15 0.07 +titrés titré adj m p 0.46 0.61 0.01 0.34 +tituba tituber ver 1.34 13.31 0.01 0.74 ind:pas:3s; +titubai tituber ver 1.34 13.31 0.00 0.07 ind:pas:1s; +titubaient tituber ver 1.34 13.31 0.00 0.47 ind:imp:3p; +titubais tituber ver 1.34 13.31 0.13 0.20 ind:imp:1s;ind:imp:2s; +titubait tituber ver 1.34 13.31 0.06 1.96 ind:imp:3s; +titubant tituber ver 1.34 13.31 0.28 5.61 par:pre; +titubante titubant adj f s 0.24 3.78 0.02 1.49 +titubantes titubant adj f p 0.24 3.78 0.01 0.20 +titubants titubant adj m p 0.24 3.78 0.20 0.81 +titubation titubation nom f s 0.00 0.20 0.00 0.14 +titubations titubation nom f p 0.00 0.20 0.00 0.07 +titube tituber ver 1.34 13.31 0.31 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +titubement titubement nom m s 0.00 0.07 0.00 0.07 +titubent tituber ver 1.34 13.31 0.24 0.14 ind:pre:3p; +tituber tituber ver 1.34 13.31 0.13 1.35 inf; +titubez tituber ver 1.34 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +titubiez tituber ver 1.34 13.31 0.02 0.00 ind:imp:2p; +titubions tituber ver 1.34 13.31 0.00 0.07 ind:imp:1p; +titubèrent tituber ver 1.34 13.31 0.01 0.07 ind:pas:3p; +titubé tituber ver m s 1.34 13.31 0.11 0.34 par:pas; +titulaire titulaire nom s 1.80 0.95 1.27 0.61 +titulaires titulaire nom p 1.80 0.95 0.53 0.34 +titularisation titularisation nom f s 0.13 0.00 0.13 0.00 +titulariser titulariser ver 0.22 0.07 0.03 0.00 inf; +titularisé titulariser ver m s 0.22 0.07 0.06 0.00 par:pas; +titularisée titulariser ver f s 0.22 0.07 0.13 0.07 par:pas; +tiédasse tiédasse adj s 0.01 0.61 0.00 0.54 +tiédasses tiédasse adj p 0.01 0.61 0.01 0.07 +tiédeur tiédeur nom f s 0.28 10.27 0.28 10.00 +tiédeurs tiédeur nom f p 0.28 10.27 0.00 0.27 +tiédi tiédir ver m s 0.17 2.16 0.00 0.20 par:pas; +tiédie tiédir ver f s 0.17 2.16 0.00 0.34 par:pas; +tiédies tiédir ver f p 0.17 2.16 0.00 0.07 par:pas; +tiédir tiédir ver 0.17 2.16 0.01 0.61 inf; +tiédirait tiédir ver 0.17 2.16 0.00 0.07 cnd:pre:3s; +tiédis tiédir ver m p 0.17 2.16 0.00 0.07 par:pas; +tiédissaient tiédir ver 0.17 2.16 0.00 0.14 ind:imp:3p; +tiédissait tiédir ver 0.17 2.16 0.00 0.27 ind:imp:3s; +tiédissant tiédir ver 0.17 2.16 0.00 0.14 par:pre; +tiédissent tiédir ver 0.17 2.16 0.00 0.07 ind:pre:3p; +tiédit tiédir ver 0.17 2.16 0.16 0.20 ind:pre:3s;ind:pas:3s; +to to pro_per f s 0.01 0.00 0.01 0.00 +toast toast nom m s 16.30 4.39 13.73 1.96 +toaster toaster nom m s 0.45 0.00 0.45 0.00 +toasteur toasteur nom m s 0.17 0.00 0.17 0.00 +toasts toast nom m p 16.30 4.39 2.56 2.43 +toasté toaster ver m s 0.09 0.00 0.07 0.00 par:pas; +toboggan toboggan nom m s 0.86 1.69 0.59 1.22 +toboggans toboggan nom m p 0.86 1.69 0.28 0.47 +toc toc adj 4.83 7.09 4.83 7.09 +tocade tocade nom f s 0.30 0.00 0.30 0.00 +tocante tocante nom f s 0.06 0.54 0.06 0.54 +tocard tocard nom m s 1.27 1.08 0.94 0.74 +tocarde tocard adj f s 0.39 1.15 0.09 0.27 +tocardes tocard adj f p 0.39 1.15 0.00 0.07 +tocards tocard nom m p 1.27 1.08 0.33 0.34 +toccata toccata nom f s 0.04 0.07 0.04 0.07 +tâcha tâcher ver 11.41 27.50 0.00 1.35 ind:pas:3s; +tâchai tâcher ver 11.41 27.50 0.00 0.81 ind:pas:1s; +tâchaient tâcher ver 11.41 27.50 0.00 0.74 ind:imp:3p; +tâchais tâcher ver 11.41 27.50 0.02 1.35 ind:imp:1s; +tâchait tâcher ver 11.41 27.50 0.13 2.77 ind:imp:3s; +tâchant tâcher ver 11.41 27.50 0.15 2.43 par:pre; +tâche tâche nom f s 31.01 44.53 25.20 35.95 +tâchent tâcher ver 11.41 27.50 0.00 0.61 ind:pre:3p; +tâcher tâcher ver 11.41 27.50 2.31 6.35 inf; +tâchera tâcher ver 11.41 27.50 0.34 0.41 ind:fut:3s; +tâcherai tâcher ver 11.41 27.50 1.10 1.62 ind:fut:1s; +tâcheraient tâcher ver 11.41 27.50 0.00 0.07 cnd:pre:3p; +tâcherait tâcher ver 11.41 27.50 0.00 0.54 cnd:pre:3s; +tâcheras tâcher ver 11.41 27.50 0.02 0.00 ind:fut:2s; +tâcherez tâcher ver 11.41 27.50 0.00 0.27 ind:fut:2p; +tâcheron tâcheron nom m s 0.05 0.81 0.01 0.20 +tâcherons tâcher ver 11.41 27.50 0.13 0.14 ind:fut:1p; +tâcheront tâcher ver 11.41 27.50 0.01 0.07 ind:fut:3p; +tâches tâche nom f p 31.01 44.53 5.81 8.58 +tâchez tâcher ver 11.41 27.50 4.41 1.96 imp:pre:2p;ind:pre:2p; +tâchions tâcher ver 11.41 27.50 0.00 0.68 ind:imp:1p; +tâchons tâcher ver 11.41 27.50 1.31 0.47 imp:pre:1p;ind:pre:1p; +tâchât tâcher ver 11.41 27.50 0.00 0.07 sub:imp:3s; +tâchèrent tâcher ver 11.41 27.50 0.00 0.07 ind:pas:3p; +tâché tâcher ver m s 11.41 27.50 0.33 1.08 par:pas; +tâchée tâcher ver f s 11.41 27.50 0.08 0.07 par:pas; +tâchés tâcher ver m p 11.41 27.50 0.04 0.00 par:pas; +tocs toc nom m p 2.26 4.05 0.00 0.54 +tocsin tocsin nom m s 0.48 1.42 0.48 1.28 +tocsins tocsin nom m p 0.48 1.42 0.00 0.14 +toffee toffee nom m s 0.01 0.00 0.01 0.00 +tofu tofu nom m s 1.56 0.00 1.56 0.00 +toge toge nom f s 0.77 1.55 0.60 1.35 +toges toge nom f p 0.77 1.55 0.16 0.20 +togolais togolais adj m 0.00 0.41 0.00 0.14 +togolaise togolais adj f s 0.00 0.41 0.00 0.20 +togolaises togolais adj f p 0.00 0.41 0.00 0.07 +tohu_bohu tohu_bohu nom m 0.18 1.42 0.18 1.42 +toi_même toi_même pro_per s 45.83 11.89 45.83 11.89 +toi toi pro_per s 2519.50 450.34 2519.50 450.34 +toilasses toiler ver 0.00 0.27 0.00 0.07 sub:imp:2s; +toile toile nom f s 17.99 106.62 11.75 81.35 +toiles toile nom f p 17.99 106.62 6.24 25.27 +toiletta toiletter ver 0.03 0.68 0.00 0.07 ind:pas:3s; +toilettage toilettage nom m s 0.13 0.00 0.13 0.00 +toilettait toiletter ver 0.03 0.68 0.00 0.14 ind:imp:3s; +toilette toilette nom f s 62.84 45.68 9.76 32.30 +toiletter toiletter ver 0.03 0.68 0.01 0.20 inf; +toilettes toilette nom f p 62.84 45.68 53.08 13.38 +toiletteur toiletteur nom m s 0.04 0.00 0.04 0.00 +toiletté toiletter ver m s 0.03 0.68 0.02 0.14 par:pas; +toilettées toiletter ver f p 0.03 0.68 0.00 0.07 par:pas; +toilettés toiletter ver m p 0.03 0.68 0.00 0.07 par:pas; +toilé toiler ver m s 0.00 0.27 0.00 0.07 par:pas; +toilée toiler ver f s 0.00 0.27 0.00 0.07 par:pas; +toilés toiler ver m p 0.00 0.27 0.00 0.07 par:pas; +toisa toiser ver 0.14 8.38 0.01 3.04 ind:pas:3s; +toisaient toiser ver 0.14 8.38 0.01 0.20 ind:imp:3p; +toisait toiser ver 0.14 8.38 0.00 0.81 ind:imp:3s; +toisant toiser ver 0.14 8.38 0.00 0.95 par:pre; +toise toiser ver 0.14 8.38 0.04 1.35 ind:pre:3s; +toisent toiser ver 0.14 8.38 0.02 0.07 ind:pre:3p; +toiser toiser ver 0.14 8.38 0.03 0.81 inf; +toises toise nom f p 0.29 1.01 0.27 0.47 +toisez toiser ver 0.14 8.38 0.00 0.07 ind:pre:2p; +toison toison nom f s 0.69 6.35 0.68 5.74 +toisons toison nom f p 0.69 6.35 0.01 0.61 +toisèrent toiser ver 0.14 8.38 0.00 0.54 ind:pas:3p; +toisé toiser ver m s 0.14 8.38 0.01 0.14 par:pas; +toisée toiser ver f s 0.14 8.38 0.03 0.20 par:pas; +toisés toiser ver m p 0.14 8.38 0.00 0.20 par:pas; +toit toit nom m s 49.01 91.76 42.63 54.59 +toits toit nom m p 49.01 91.76 6.37 37.16 +toiture toiture nom f s 0.50 7.57 0.28 5.95 +toitures toiture nom f p 0.50 7.57 0.22 1.62 +tokamak tokamak nom m s 0.04 0.00 0.04 0.00 +tokay tokay nom m s 0.00 0.07 0.00 0.07 +tokharien tokharien nom m s 0.00 0.07 0.00 0.07 +tolar tolar nom m s 0.08 0.00 0.08 0.00 +tolet tolet nom m s 0.02 0.27 0.01 0.07 +tolets tolet nom m p 0.02 0.27 0.01 0.20 +tollé tollé nom m s 0.19 0.47 0.19 0.47 +tolstoïen tolstoïen adj m s 0.00 0.07 0.00 0.07 +tolère tolérer ver 13.05 13.45 2.58 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tolèrent tolérer ver 13.05 13.45 0.28 0.47 ind:pre:3p; +toltèque toltèque adj s 0.03 0.14 0.02 0.07 +toltèques toltèque adj m p 0.03 0.14 0.01 0.07 +tolu tolu nom m s 0.00 0.14 0.00 0.14 +toluidine toluidine nom f s 0.01 0.00 0.01 0.00 +toléra tolérer ver 13.05 13.45 0.02 0.00 ind:pas:3s; +tolérable tolérable adj s 0.47 1.49 0.29 1.01 +tolérables tolérable adj p 0.47 1.49 0.18 0.47 +toléraient tolérer ver 13.05 13.45 0.11 0.54 ind:imp:3p; +tolérais tolérer ver 13.05 13.45 0.04 0.41 ind:imp:1s; +tolérait tolérer ver 13.05 13.45 0.58 2.30 ind:imp:3s; +tolérance tolérance nom f s 3.03 4.39 3.03 4.39 +tolérant tolérant adj m s 2.44 1.49 1.30 0.74 +tolérante tolérant adj f s 2.44 1.49 0.45 0.34 +tolérantes tolérant adj f p 2.44 1.49 0.16 0.07 +tolérants tolérant adj m p 2.44 1.49 0.54 0.34 +tolérer tolérer ver 13.05 13.45 2.96 2.97 inf; +tolérera tolérer ver 13.05 13.45 0.31 0.14 ind:fut:3s; +tolérerai tolérer ver 13.05 13.45 2.31 0.20 ind:fut:1s; +tolérerais tolérer ver 13.05 13.45 0.15 0.07 cnd:pre:1s; +tolérerait tolérer ver 13.05 13.45 0.07 0.34 cnd:pre:3s; +tolérerions tolérer ver 13.05 13.45 0.00 0.07 cnd:pre:1p; +tolérerons tolérer ver 13.05 13.45 0.24 0.00 ind:fut:1p; +toléreront tolérer ver 13.05 13.45 0.14 0.00 ind:fut:3p; +tolérez tolérer ver 13.05 13.45 0.24 0.07 imp:pre:2p;ind:pre:2p; +tolériez tolérer ver 13.05 13.45 0.01 0.00 ind:imp:2p; +tolérions tolérer ver 13.05 13.45 0.00 0.07 ind:imp:1p; +tolérons tolérer ver 13.05 13.45 0.37 0.07 ind:pre:1p; +tolérât tolérer ver 13.05 13.45 0.00 0.14 sub:imp:3s; +toléré tolérer ver m s 13.05 13.45 1.50 2.30 par:pas; +tolérée tolérer ver f s 13.05 13.45 0.25 0.74 par:pas; +tolérées tolérer ver f p 13.05 13.45 0.06 0.47 par:pas; +tolérés tolérer ver m p 13.05 13.45 0.10 0.20 par:pas; +toluène toluène nom m s 0.04 0.00 0.04 0.00 +tom_pouce tom_pouce nom m 0.00 0.54 0.00 0.54 +tom_tom tom_tom nom m 0.04 0.00 0.04 0.00 +tom tom nom m s 2.51 0.14 2.51 0.14 +toma tomer ver 0.14 0.00 0.14 0.00 ind:pas:3s; +tomahawk tomahawk nom m s 0.00 0.27 0.00 0.20 +tomahawks tomahawk nom m p 0.00 0.27 0.00 0.07 +toman toman nom m s 0.27 0.00 0.27 0.00 +tomate tomate nom f s 20.77 13.31 7.88 5.74 +tomates tomate nom f p 20.77 13.31 12.89 7.57 +tomba tomber ver 407.82 441.42 4.17 31.08 ind:pas:3s; +tombai tomber ver 407.82 441.42 0.23 3.58 ind:pas:1s; +tombaient tomber ver 407.82 441.42 1.49 18.65 ind:imp:3p; +tombais tomber ver 407.82 441.42 1.36 2.43 ind:imp:1s;ind:imp:2s; +tombait tomber ver 407.82 441.42 4.01 49.05 ind:imp:3s; +tombal tombal adj m s 2.71 2.70 0.14 0.00 +tombale tombal adj f s 2.71 2.70 1.99 1.49 +tombales tombal adj f p 2.71 2.70 0.58 1.22 +tombant tomber ver 407.82 441.42 3.26 12.97 par:pre; +tombante tombant adj f s 0.88 9.12 0.34 5.00 +tombantes tombant adj f p 0.88 9.12 0.10 1.15 +tombants tombant adj m p 0.88 9.12 0.05 0.41 +tombe tomber ver 407.82 441.42 66.39 60.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tombeau tombeau nom m s 10.22 11.96 9.51 8.92 +tombeaux tombeau nom m p 10.22 11.96 0.71 3.04 +tombent tomber ver 407.82 441.42 13.08 17.97 ind:pre:3p; +tomber tomber ver 407.82 441.42 180.25 133.18 inf; +tombera tomber ver 407.82 441.42 6.26 2.16 ind:fut:3s; +tomberai tomber ver 407.82 441.42 0.88 0.74 ind:fut:1s; +tomberaient tomber ver 407.82 441.42 0.28 0.74 cnd:pre:3p; +tomberais tomber ver 407.82 441.42 0.45 0.81 cnd:pre:1s;cnd:pre:2s; +tomberait tomber ver 407.82 441.42 1.56 3.18 cnd:pre:3s; +tomberas tomber ver 407.82 441.42 1.52 0.07 ind:fut:2s; +tombereau tombereau nom m s 0.01 2.50 0.01 1.15 +tombereaux tombereau nom m p 0.01 2.50 0.00 1.35 +tomberez tomber ver 407.82 441.42 0.90 0.27 ind:fut:2p; +tomberiez tomber ver 407.82 441.42 0.26 0.07 cnd:pre:2p; +tomberions tomber ver 407.82 441.42 0.16 0.07 cnd:pre:1p; +tomberons tomber ver 407.82 441.42 0.16 0.14 ind:fut:1p; +tomberont tomber ver 407.82 441.42 1.54 0.95 ind:fut:3p; +tombes tombe nom f p 49.67 34.86 8.34 10.68 +tombeur tombeur nom m s 2.12 1.01 1.94 0.74 +tombeurs tombeur nom m p 2.12 1.01 0.17 0.20 +tombeuse tombeur nom f s 2.12 1.01 0.01 0.07 +tombeuses tombeuse nom f p 0.01 0.00 0.01 0.00 +tombez tomber ver 407.82 441.42 4.88 1.96 imp:pre:2p;ind:pre:2p; +tombiez tomber ver 407.82 441.42 0.45 0.34 ind:imp:2p; +tombions tomber ver 407.82 441.42 0.17 0.54 ind:imp:1p; +tombola tombola nom f s 1.23 0.68 1.21 0.61 +tombolas tombola nom f p 1.23 0.68 0.02 0.07 +tombâmes tomber ver 407.82 441.42 0.01 0.68 ind:pas:1p; +tombons tomber ver 407.82 441.42 0.91 1.08 imp:pre:1p;ind:pre:1p; +tombât tomber ver 407.82 441.42 0.02 1.55 sub:imp:3s; +tombèrent tomber ver 407.82 441.42 0.27 6.08 ind:pas:3p; +tombé tomber ver m s 407.82 441.42 62.89 47.97 par:pas; +tombée tomber ver f s 407.82 441.42 30.49 25.20 par:pas; +tombées tomber ver f p 407.82 441.42 2.15 3.38 par:pas; +tombés tomber ver m p 407.82 441.42 9.63 12.70 par:pas; +tome tome nom m s 0.88 7.09 0.67 4.66 +tomes tome nom m p 0.88 7.09 0.21 2.43 +tomettes tomette nom f p 0.00 0.47 0.00 0.47 +tomme tomme nom f s 0.07 0.14 0.07 0.07 +tommes tomme nom f p 0.07 0.14 0.00 0.07 +tommette tommette nom f s 0.00 0.88 0.00 0.14 +tommettes tommette nom f p 0.00 0.88 0.00 0.74 +tommies tommies nom m p 0.12 0.07 0.12 0.07 +tommy tommy nom m s 0.11 0.00 0.11 0.00 +tomodensitomètre tomodensitomètre nom m s 0.03 0.00 0.03 0.00 +tomodensitométrie tomodensitométrie nom f s 0.04 0.00 0.04 0.00 +tomographe tomographe nom m s 0.03 0.00 0.03 0.00 +tomographie tomographie nom f s 0.56 0.00 0.56 0.00 +ton ton nom_sup m s 53.24 146.35 51.73 138.45 +tonal tonal adj m s 0.12 0.07 0.02 0.00 +tonale tonal adj f s 0.12 0.07 0.10 0.07 +tonalité tonalité nom f s 1.78 3.04 1.26 2.50 +tonalités tonalité nom f p 1.78 3.04 0.52 0.54 +tond tondre ver 2.77 4.26 0.48 0.20 ind:pre:3s; +tondais tondre ver 2.77 4.26 0.02 0.00 ind:imp:1s; +tondait tondre ver 2.77 4.26 0.05 0.34 ind:imp:3s; +tondant tondre ver 2.77 4.26 0.04 0.00 par:pre; +tonde tondre ver 2.77 4.26 0.03 0.07 sub:pre:1s;sub:pre:3s; +tondent tondre ver 2.77 4.26 0.05 0.14 ind:pre:3p; +tondes tondre ver 2.77 4.26 0.01 0.00 sub:pre:2s; +tondeur tondeur nom m s 1.76 2.30 0.04 0.61 +tondeuse tondeur nom f s 1.76 2.30 1.72 1.49 +tondeuses tondeuse nom f p 0.28 0.00 0.28 0.00 +tondit tondre ver 2.77 4.26 0.01 0.07 ind:pas:3s; +tondons tondre ver 2.77 4.26 0.02 0.00 imp:pre:1p;ind:pre:1p; +tondrai tondre ver 2.77 4.26 0.02 0.00 ind:fut:1s; +tondrais tondre ver 2.77 4.26 0.16 0.00 cnd:pre:1s; +tondre tondre ver 2.77 4.26 1.38 1.01 inf; +tonds tondre ver 2.77 4.26 0.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tondu tondu adj m s 0.74 3.65 0.51 1.89 +tondue tondre ver f s 2.77 4.26 0.06 0.54 par:pas; +tondues tondu adj f p 0.74 3.65 0.00 0.41 +tondus tondu adj m p 0.74 3.65 0.20 0.81 +toner toner nom m s 0.07 0.00 0.07 0.00 +tong tong nom f s 1.73 0.20 1.12 0.07 +tongs tong nom f p 1.73 0.20 0.61 0.14 +tonic tonic nom m s 2.04 0.20 1.93 0.20 +tonicardiaque tonicardiaque nom m s 0.14 0.00 0.14 0.00 +tonicité tonicité nom f s 0.07 0.00 0.07 0.00 +tonics tonic nom m p 2.04 0.20 0.11 0.00 +tonie tonie nom f s 0.02 0.00 0.02 0.00 +tonifiaient tonifier ver 0.06 0.34 0.00 0.07 ind:imp:3p; +tonifiant tonifiant adj m s 0.04 0.14 0.03 0.00 +tonifiante tonifiant adj f s 0.04 0.14 0.00 0.07 +tonifiants tonifiant adj m p 0.04 0.14 0.01 0.07 +tonifie tonifier ver 0.06 0.34 0.03 0.07 ind:pre:3s; +tonifient tonifier ver 0.06 0.34 0.01 0.07 ind:pre:3p; +tonifier tonifier ver 0.06 0.34 0.01 0.07 inf; +tonique tonique adj s 0.40 1.82 0.35 1.55 +toniques tonique adj p 0.40 1.82 0.05 0.27 +tonitrua tonitruer ver 0.01 1.89 0.00 0.68 ind:pas:3s; +tonitruaient tonitruer ver 0.01 1.89 0.00 0.07 ind:imp:3p; +tonitruais tonitruer ver 0.01 1.89 0.00 0.07 ind:imp:1s; +tonitruait tonitruer ver 0.01 1.89 0.00 0.27 ind:imp:3s; +tonitruance tonitruance nom f s 0.00 0.14 0.00 0.07 +tonitruances tonitruance nom f p 0.00 0.14 0.00 0.07 +tonitruant tonitruant adj m s 0.29 3.04 0.05 0.95 +tonitruante tonitruant adj f s 0.29 3.04 0.24 1.28 +tonitruantes tonitruant adj f p 0.29 3.04 0.00 0.34 +tonitruants tonitruant adj m p 0.29 3.04 0.00 0.47 +tonitrue tonitruer ver 0.01 1.89 0.01 0.14 imp:pre:2s;ind:pre:3s; +tonitruent tonitruer ver 0.01 1.89 0.00 0.07 ind:pre:3p; +tonitruer tonitruer ver 0.01 1.89 0.00 0.20 inf; +tonitrué tonitruer ver m s 0.01 1.89 0.00 0.07 par:pas; +tonka tonka nom f s 0.03 0.00 0.03 0.00 +tonkinois tonkinois nom m 0.02 0.20 0.01 0.07 +tonkinoise tonkinois nom f s 0.02 0.20 0.01 0.14 +tonna tonner ver 1.94 5.14 0.14 0.74 ind:pas:3s; +tonnage tonnage nom m s 0.07 1.55 0.07 1.42 +tonnages tonnage nom m p 0.07 1.55 0.00 0.14 +tonnaient tonner ver 1.94 5.14 0.01 0.41 ind:imp:3p; +tonnais tonner ver 1.94 5.14 0.01 0.00 ind:imp:2s; +tonnait tonner ver 1.94 5.14 0.01 0.68 ind:imp:3s; +tonnant tonnant adj m s 0.14 1.08 0.14 0.14 +tonnante tonnant adj f s 0.14 1.08 0.00 0.74 +tonnantes tonnant adj f p 0.14 1.08 0.00 0.07 +tonnants tonnant adj m p 0.14 1.08 0.00 0.14 +tonne tonne nom f s 16.29 14.19 4.48 2.64 +tonneau tonneau nom m s 4.37 12.16 2.94 6.89 +tonneaux tonneau nom m p 4.37 12.16 1.43 5.27 +tonnelet tonnelet nom m s 0.43 1.55 0.40 1.15 +tonnelets tonnelet nom m p 0.43 1.55 0.03 0.41 +tonnelier tonnelier nom m s 0.06 0.61 0.06 0.47 +tonneliers tonnelier nom m p 0.06 0.61 0.00 0.14 +tonnelle tonnelle nom f s 0.62 3.51 0.61 2.84 +tonnellerie tonnellerie nom f s 0.07 0.88 0.07 0.81 +tonnelleries tonnellerie nom f p 0.07 0.88 0.00 0.07 +tonnelles tonnelle nom f p 0.62 3.51 0.01 0.68 +tonnent tonner ver 1.94 5.14 0.02 0.74 ind:pre:3p; +tonner tonner ver 1.94 5.14 0.12 1.28 inf; +tonnerait tonner ver 1.94 5.14 0.00 0.07 cnd:pre:3s; +tonnerre tonnerre nom m s 11.40 19.39 10.90 18.65 +tonnerres tonnerre nom m p 11.40 19.39 0.50 0.74 +tonnes tonne nom f p 16.29 14.19 11.80 11.55 +tonnez tonner ver 1.94 5.14 0.00 0.07 imp:pre:2p; +tonné tonner ver m s 1.94 5.14 0.20 0.20 par:pas; +tons ton nom_sup m p 53.24 146.35 1.51 7.91 +tonsure tonsure nom f s 0.85 0.88 0.85 0.81 +tonsures tonsure nom f p 0.85 0.88 0.00 0.07 +tonsuré tonsurer ver m s 0.00 0.07 0.00 0.07 par:pas; +tonte tonte nom f s 0.17 0.74 0.17 0.74 +tonton tonton nom m s 14.02 12.43 13.94 11.89 +tontons tonton nom m p 14.02 12.43 0.08 0.54 +tonus tonus nom m 0.34 0.61 0.34 0.61 +too_much too_much adj m s 0.19 0.47 0.19 0.47 +top_modèle top_modèle nom f s 0.22 0.00 0.21 0.00 +top_modèle top_modèle nom f p 0.22 0.00 0.01 0.00 +top_model top_model nom f p 0.12 0.07 0.12 0.07 +top top nom m s 19.35 2.09 19.18 2.09 +topa toper ver 2.59 0.68 0.00 0.07 ind:pas:3s; +topaze topaze nom f s 0.37 0.88 0.36 0.81 +topazes topaze nom f p 0.37 0.88 0.01 0.07 +tope toper ver 2.59 0.68 2.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +toper toper ver 2.59 0.68 0.04 0.07 inf; +topette topette nom f s 0.00 0.20 0.00 0.14 +topettes topette nom f p 0.00 0.20 0.00 0.07 +topez toper ver 2.59 0.68 0.18 0.07 imp:pre:2p; +tophus tophus nom m 0.00 0.07 0.00 0.07 +topinambour topinambour nom m s 0.16 1.35 0.02 0.41 +topinambours topinambour nom m p 0.16 1.35 0.14 0.95 +topions toper ver 2.59 0.68 0.01 0.00 ind:imp:1p; +topique topique adj m s 0.03 0.07 0.03 0.07 +topless topless adj f 0.26 0.00 0.26 0.00 +topo topo nom m s 3.17 2.43 3.16 2.36 +topographie topographie nom f s 0.33 1.35 0.33 1.35 +topographique topographique adj s 0.23 0.54 0.17 0.34 +topographiquement topographiquement adv 0.00 0.14 0.00 0.14 +topographiques topographique adj p 0.23 0.54 0.06 0.20 +topologie topologie nom f s 0.04 0.07 0.04 0.07 +topologique topologique adj f s 0.01 0.00 0.01 0.00 +topons toper ver 2.59 0.68 0.03 0.14 imp:pre:1p; +toponymie toponymie nom f s 0.00 0.07 0.00 0.07 +topos topo nom m p 3.17 2.43 0.01 0.07 +tops top nom m p 19.35 2.09 0.17 0.00 +topé toper ver m s 2.59 0.68 0.28 0.00 par:pas; +topés toper ver m p 2.59 0.68 0.01 0.00 par:pas; +toqua toquer ver 1.33 2.03 0.10 0.34 ind:pas:3s; +toquade toquade nom f s 0.13 0.41 0.13 0.14 +toquades toquade nom f p 0.13 0.41 0.00 0.27 +toquais toquer ver 1.33 2.03 0.00 0.07 ind:imp:1s; +toquait toquer ver 1.33 2.03 0.00 0.14 ind:imp:3s; +toquant toquer ver 1.33 2.03 0.00 0.07 par:pre; +toquante toquante nom f s 0.03 0.27 0.01 0.20 +toquantes toquante nom f p 0.03 0.27 0.02 0.07 +toquard toquard nom m s 0.11 0.41 0.07 0.27 +toquarde toquard adj f s 0.13 0.41 0.10 0.07 +toquardes toquard adj f p 0.13 0.41 0.00 0.07 +toquards toquard nom m p 0.11 0.41 0.04 0.14 +toque toque nom f s 0.82 7.57 0.65 6.55 +toquer toquer ver 1.33 2.03 0.07 0.41 inf; +toques toque nom f p 0.82 7.57 0.17 1.01 +toquez toquer ver 1.33 2.03 0.01 0.00 imp:pre:2p; +toqué toquer ver m s 1.33 2.03 0.72 0.20 par:pas; +toquée toqué adj f s 0.89 0.34 0.36 0.07 +toquées toquer ver f p 1.33 2.03 0.10 0.07 par:pas; +toqués toqué adj m p 0.89 0.34 0.11 0.00 +torana torana nom m s 0.01 0.00 0.01 0.00 +torcha torcher ver 3.20 5.54 0.00 0.34 ind:pas:3s; +torchaient torcher ver 3.20 5.54 0.00 0.07 ind:imp:3p; +torchais torcher ver 3.20 5.54 0.01 0.07 ind:imp:1s;ind:imp:2s; +torchait torcher ver 3.20 5.54 0.03 0.20 ind:imp:3s; +torchant torcher ver 3.20 5.54 0.02 0.20 par:pre; +torchassions torcher ver 3.20 5.54 0.00 0.07 sub:imp:1p; +torche_cul torche_cul nom m s 0.06 0.00 0.06 0.00 +torche torche nom f s 8.09 11.96 6.71 7.16 +torchent torcher ver 3.20 5.54 0.01 0.27 ind:pre:3p; +torcher torcher ver 3.20 5.54 1.23 1.89 inf; +torcherais torcher ver 3.20 5.54 0.04 0.07 cnd:pre:1s; +torcheras torcher ver 3.20 5.54 0.01 0.07 ind:fut:2s; +torches torche nom f p 8.09 11.96 1.38 4.80 +torchez torcher ver 3.20 5.54 0.03 0.00 imp:pre:2p;ind:pre:2p; +torchis torchis nom m 0.03 2.23 0.03 2.23 +torchon torchon nom m s 3.48 10.14 2.95 7.23 +torchonnait torchonner ver 0.00 0.68 0.00 0.34 ind:imp:3s; +torchonne torchonner ver 0.00 0.68 0.00 0.14 ind:pre:3s; +torchonner torchonner ver 0.00 0.68 0.00 0.20 inf; +torchons torchon nom m p 3.48 10.14 0.54 2.91 +torchère torchère nom f s 0.01 1.42 0.00 0.47 +torchères torchère nom f p 0.01 1.42 0.01 0.95 +torché torcher ver m s 3.20 5.54 0.38 0.41 par:pas; +torchée torcher ver f s 3.20 5.54 0.01 0.14 par:pas; +torchées torchée nom f p 0.00 0.07 0.00 0.07 +torchés torcher ver m p 3.20 5.54 0.16 0.07 par:pas; +tord_boyaux tord_boyaux nom m 0.27 0.47 0.27 0.47 +tord_nez tord_nez nom m s 0.00 0.14 0.00 0.14 +tord tordre ver 12.24 38.38 2.08 4.80 ind:pre:3s; +tordît tordre ver 12.24 38.38 0.00 0.07 sub:imp:3s; +tordage tordage nom m s 0.07 0.00 0.07 0.00 +tordaient tordre ver 12.24 38.38 0.17 1.89 ind:imp:3p; +tordais tordre ver 12.24 38.38 0.17 0.34 ind:imp:1s;ind:imp:2s; +tordait tordre ver 12.24 38.38 0.14 6.89 ind:imp:3s; +tordant tordant adj m s 1.65 0.88 1.25 0.61 +tordante tordant adj f s 1.65 0.88 0.33 0.00 +tordantes tordant adj f p 1.65 0.88 0.02 0.07 +tordants tordant adj m p 1.65 0.88 0.05 0.20 +torde tordre ver 12.24 38.38 0.26 0.14 sub:pre:1s;sub:pre:3s; +tordent tordre ver 12.24 38.38 0.36 1.28 ind:pre:3p; +tordeur tordeur nom m s 0.13 0.00 0.12 0.00 +tordeurs tordeur nom m p 0.13 0.00 0.01 0.00 +tordez tordre ver 12.24 38.38 0.10 0.14 imp:pre:2p;ind:pre:2p; +tordiez tordre ver 12.24 38.38 0.01 0.00 ind:imp:2p; +tordion tordion nom m s 0.00 0.14 0.00 0.07 +tordions tordion nom m p 0.00 0.14 0.00 0.07 +tordirent tordre ver 12.24 38.38 0.01 0.34 ind:pas:3p; +tordis tordre ver 12.24 38.38 0.00 0.14 ind:pas:1s; +tordit tordre ver 12.24 38.38 0.01 2.64 ind:pas:3s; +tordra tordre ver 12.24 38.38 0.01 0.07 ind:fut:3s; +tordrai tordre ver 12.24 38.38 0.18 0.07 ind:fut:1s; +tordraient tordre ver 12.24 38.38 0.00 0.07 cnd:pre:3p; +tordrais tordre ver 12.24 38.38 0.20 0.07 cnd:pre:1s;cnd:pre:2s; +tordrait tordre ver 12.24 38.38 0.06 0.20 cnd:pre:3s; +tordras tordre ver 12.24 38.38 0.02 0.00 ind:fut:2s; +tordre tordre ver 12.24 38.38 2.77 5.27 inf; +tordrez tordre ver 12.24 38.38 0.01 0.07 ind:fut:2p; +tordront tordre ver 12.24 38.38 0.01 0.14 ind:fut:3p; +tords tordre ver 12.24 38.38 1.17 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tordu tordu adj m s 7.76 14.80 4.10 4.46 +tordue tordu adj f s 7.76 14.80 1.75 4.12 +tordues tordu adj f p 7.76 14.80 0.66 2.30 +tordus tordu adj m p 7.76 14.80 1.25 3.92 +tore tore nom m s 0.14 0.07 0.04 0.00 +torera torera nom f s 0.20 0.00 0.20 0.00 +torero torero nom m s 1.17 2.43 0.94 1.35 +toreros torero nom m p 1.17 2.43 0.23 1.08 +tores tore nom m p 0.14 0.07 0.10 0.07 +torgnole torgnole nom f s 0.31 1.08 0.14 0.47 +torgnoles torgnole nom f p 0.31 1.08 0.17 0.61 +tories tories nom m p 0.12 0.00 0.12 0.00 +toril toril nom m s 0.00 0.41 0.00 0.41 +tornade tornade nom f s 2.66 4.12 2.13 3.11 +tornades tornade nom f p 2.66 4.12 0.52 1.01 +toro toro nom m s 0.91 0.74 0.91 0.74 +torons toron nom m p 0.00 0.07 0.00 0.07 +torpeur torpeur nom f s 0.78 13.38 0.78 13.24 +torpeurs torpeur nom f p 0.78 13.38 0.00 0.14 +torpide torpide adj f s 0.00 0.27 0.00 0.27 +torpillage torpillage nom m s 0.13 0.20 0.13 0.14 +torpillages torpillage nom m p 0.13 0.20 0.00 0.07 +torpillaient torpiller ver 1.21 1.08 0.00 0.07 ind:imp:3p; +torpillait torpiller ver 1.21 1.08 0.00 0.07 ind:imp:3s; +torpille torpille nom f s 5.28 1.62 2.42 0.61 +torpiller torpiller ver 1.21 1.08 0.28 0.34 inf; +torpillera torpiller ver 1.21 1.08 0.01 0.00 ind:fut:3s; +torpilles torpille nom f p 5.28 1.62 2.86 1.01 +torpilleur torpilleur nom m s 0.39 1.62 0.28 0.68 +torpilleurs torpilleur nom m p 0.39 1.62 0.11 0.95 +torpillé torpiller ver m s 1.21 1.08 0.32 0.34 par:pas; +torpillée torpiller ver f s 1.21 1.08 0.03 0.07 par:pas; +torpillés torpiller ver m p 1.21 1.08 0.03 0.00 par:pas; +torpédo torpédo nom f s 0.03 2.91 0.03 2.70 +torpédos torpédo nom f p 0.03 2.91 0.00 0.20 +torque torque nom m s 0.05 0.00 0.05 0.00 +torrent torrent nom m s 2.46 16.35 1.60 11.96 +torrentiel torrentiel adj m s 0.23 1.01 0.02 0.14 +torrentielle torrentiel adj f s 0.23 1.01 0.20 0.27 +torrentielles torrentiel adj f p 0.23 1.01 0.01 0.47 +torrentiels torrentiel adj m p 0.23 1.01 0.00 0.14 +torrents torrent nom m p 2.46 16.35 0.86 4.39 +torrentueuses torrentueux adj f p 0.00 0.20 0.00 0.14 +torrentueux torrentueux adj m s 0.00 0.20 0.00 0.07 +torride torride adj s 1.96 4.32 1.70 3.18 +torrides torride adj p 1.96 4.32 0.26 1.15 +torréfaction torréfaction nom f s 0.02 0.07 0.02 0.07 +torréfiait torréfier ver 0.01 0.41 0.00 0.14 ind:imp:3s; +torréfiant torréfier ver 0.01 0.41 0.00 0.07 par:pre; +torréfie torréfier ver 0.01 0.41 0.00 0.07 ind:pre:3s; +torréfient torréfier ver 0.01 0.41 0.00 0.07 ind:pre:3p; +torréfié torréfié adj m s 0.12 0.47 0.12 0.14 +torréfiée torréfié adj f s 0.12 0.47 0.00 0.27 +torréfiées torréfié adj f p 0.12 0.47 0.00 0.07 +tors tors adj m s 0.67 4.73 0.27 0.34 +torsada torsader ver 0.12 2.57 0.00 0.07 ind:pas:3s; +torsade torsade nom f s 0.17 2.91 0.00 1.01 +torsades torsade nom f p 0.17 2.91 0.17 1.89 +torsadé torsader ver m s 0.12 2.57 0.00 0.54 par:pas; +torsadée torsader ver f s 0.12 2.57 0.03 0.61 par:pas; +torsadées torsader ver f p 0.12 2.57 0.01 0.88 par:pas; +torsadés torsader ver m p 0.12 2.57 0.08 0.47 par:pas; +torse torse nom m s 3.82 21.08 3.75 19.39 +torses torse nom m p 3.82 21.08 0.07 1.69 +torsion torsion nom f s 0.37 3.11 0.36 2.23 +torsions torsion nom f p 0.37 3.11 0.01 0.88 +tort tort nom m s 67.97 55.00 64.89 51.55 +tortellini tortellini nom m s 0.34 0.00 0.23 0.00 +tortellinis tortellini nom m p 0.34 0.00 0.11 0.00 +torticolis torticolis nom m 0.92 0.74 0.92 0.74 +tortil tortil nom m s 0.00 0.14 0.00 0.07 +tortilla tortilla nom f s 1.73 0.41 1.40 0.07 +tortillaient tortiller ver 1.96 9.66 0.02 0.20 ind:imp:3p; +tortillais tortiller ver 1.96 9.66 0.02 0.20 ind:imp:1s; +tortillait tortiller ver 1.96 9.66 0.14 2.09 ind:imp:3s; +tortillant tortiller ver 1.96 9.66 0.06 1.49 par:pre; +tortillard tortillard nom m s 0.16 1.69 0.16 1.62 +tortillards tortillard nom m p 0.16 1.69 0.00 0.07 +tortillas tortilla nom f p 1.73 0.41 0.34 0.34 +tortille tortiller ver 1.96 9.66 0.72 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tortillement tortillement nom m s 0.03 0.20 0.02 0.00 +tortillements tortillement nom m p 0.03 0.20 0.01 0.20 +tortillent tortiller ver 1.96 9.66 0.06 0.20 ind:pre:3p; +tortiller tortiller ver 1.96 9.66 0.76 1.82 inf; +tortillez tortiller ver 1.96 9.66 0.12 0.00 imp:pre:2p;ind:pre:2p; +tortillon tortillon nom m s 0.06 1.28 0.06 0.81 +tortillons tortillon nom m p 0.06 1.28 0.00 0.47 +tortillé tortiller ver m s 1.96 9.66 0.03 0.41 par:pas; +tortillée tortiller ver f s 1.96 9.66 0.02 0.34 par:pas; +tortillées tortiller ver f p 1.96 9.66 0.00 0.14 par:pas; +tortillés tortiller ver m p 1.96 9.66 0.00 0.27 par:pas; +tortils tortil nom m p 0.00 0.14 0.00 0.07 +tortionnaire tortionnaire nom s 0.50 2.43 0.24 1.28 +tortionnaires tortionnaire nom p 0.50 2.43 0.26 1.15 +tortora tortorer ver 0.00 0.81 0.00 0.14 ind:pas:3s; +tortorait tortorer ver 0.00 0.81 0.00 0.14 ind:imp:3s; +tortorant tortorer ver 0.00 0.81 0.00 0.07 par:pre; +tortore tortore nom f s 0.00 1.82 0.00 1.82 +tortorent tortorer ver 0.00 0.81 0.00 0.07 ind:pre:3p; +tortorer tortorer ver 0.00 0.81 0.00 0.27 inf; +tortoré tortorer ver m s 0.00 0.81 0.00 0.14 par:pas; +torts tort nom m p 67.97 55.00 3.08 3.45 +tortu tortu adj m s 0.69 0.68 0.00 0.07 +tortue tortue nom f s 5.34 6.22 4.00 4.66 +tortues tortue nom f p 5.34 6.22 1.33 1.55 +tortueuse tortueux adj f s 0.86 3.11 0.39 0.68 +tortueuses tortueux adj f p 0.86 3.11 0.04 0.95 +tortueux tortueux adj m 0.86 3.11 0.44 1.49 +tortura torturer ver 24.63 15.41 0.03 0.07 ind:pas:3s; +torturai torturer ver 24.63 15.41 0.01 0.07 ind:pas:1s; +torturaient torturer ver 24.63 15.41 0.25 0.61 ind:imp:3p; +torturais torturer ver 24.63 15.41 0.07 0.14 ind:imp:1s;ind:imp:2s; +torturait torturer ver 24.63 15.41 0.59 2.36 ind:imp:3s; +torturant torturer ver 24.63 15.41 0.13 0.54 par:pre; +torturante torturant adj f s 0.12 1.28 0.10 0.41 +torturantes torturant adj f p 0.12 1.28 0.00 0.20 +torturants torturant adj m p 0.12 1.28 0.01 0.14 +torture torture nom f s 12.94 17.03 10.13 11.96 +torturent torturer ver 24.63 15.41 0.96 0.68 ind:pre:3p;sub:pre:3p; +torturer torturer ver 24.63 15.41 8.28 3.78 inf;;inf;;inf;; +torturera torturer ver 24.63 15.41 0.10 0.07 ind:fut:3s; +torturerai torturer ver 24.63 15.41 0.06 0.00 ind:fut:1s; +tortureraient torturer ver 24.63 15.41 0.01 0.00 cnd:pre:3p; +torturerez torturer ver 24.63 15.41 0.00 0.07 ind:fut:2p; +tortureront torturer ver 24.63 15.41 0.05 0.00 ind:fut:3p; +tortures torture nom f p 12.94 17.03 2.81 5.07 +tortureurs tortureur nom m p 0.00 0.07 0.00 0.07 +torturez torturer ver 24.63 15.41 1.24 0.20 imp:pre:2p;ind:pre:2p; +torturions torturer ver 24.63 15.41 0.00 0.07 ind:imp:1p; +torturons torturer ver 24.63 15.41 0.30 0.00 imp:pre:1p;ind:pre:1p; +torturèrent torturer ver 24.63 15.41 0.00 0.07 ind:pas:3p; +torturé torturer ver m s 24.63 15.41 5.56 3.11 par:pas; +torturée torturer ver f s 24.63 15.41 1.27 1.01 par:pas; +torturées torturé adj f p 2.44 4.26 0.33 0.41 +torturés torturé ver m p 0.92 0.00 0.92 0.00 par:pas; +tortus tortu adj m p 0.69 0.68 0.00 0.07 +toréador_vedette toréador_vedette nom m s 0.00 0.07 0.00 0.07 +toréador toréador nom m s 0.31 0.61 0.29 0.47 +toréadors toréador nom m p 0.31 0.61 0.02 0.14 +torée toréer ver 0.43 0.07 0.01 0.00 ind:pre:3s; +toréer toréer ver 0.43 0.07 0.42 0.07 inf; +torve torve adj s 0.12 2.36 0.02 1.96 +torves torve adj p 0.12 2.36 0.10 0.41 +tos to nom m p 55.51 3.78 0.02 0.00 +toscan toscan adj m s 0.46 1.22 0.21 0.41 +toscane toscan adj f s 0.46 1.22 0.05 0.68 +toscanes toscan adj f p 0.46 1.22 0.20 0.07 +toscans toscan nom m p 0.04 0.20 0.03 0.00 +toss toss nom m 0.02 0.07 0.02 0.07 +tossé tosser ver m s 0.00 0.07 0.00 0.07 par:pas; +tâta tâter ver 3.95 21.55 0.00 2.91 ind:pas:3s; +tâtai tâter ver 3.95 21.55 0.00 0.34 ind:pas:1s; +tâtaient tâter ver 3.95 21.55 0.00 0.68 ind:imp:3p; +tâtais tâter ver 3.95 21.55 0.01 0.54 ind:imp:1s; +tâtait tâter ver 3.95 21.55 0.03 2.03 ind:imp:3s; +total total adj m s 24.59 41.62 9.29 16.35 +totale total adj f s 24.59 41.62 15.26 24.86 +totalement totalement adv 28.62 22.16 28.62 22.16 +totales total adj f p 24.59 41.62 0.02 0.41 +totalisait totaliser ver 0.13 0.95 0.02 0.20 ind:imp:3s; +totalisant totalisant adj m s 0.01 0.27 0.01 0.27 +totalisateur totalisateur nom m s 0.01 0.00 0.01 0.00 +totalisation totalisation nom f s 0.00 0.07 0.00 0.07 +totalise totaliser ver 0.13 0.95 0.03 0.20 ind:pre:1s;ind:pre:3s; +totalisent totaliser ver 0.13 0.95 0.03 0.07 ind:pre:3p; +totaliser totaliser ver 0.13 0.95 0.03 0.20 inf; +totalisé totaliser ver m s 0.13 0.95 0.01 0.07 par:pas; +totalitaire totalitaire adj s 0.09 1.42 0.05 1.08 +totalitaires totalitaire adj p 0.09 1.42 0.04 0.34 +totalitarisme totalitarisme nom m s 0.03 0.95 0.03 0.88 +totalitarismes totalitarisme nom m p 0.03 0.95 0.00 0.07 +totalité totalité nom f s 3.11 9.39 3.11 9.26 +totalités totalité nom f p 3.11 9.39 0.00 0.14 +tâtant tâter ver 3.95 21.55 0.04 2.03 par:pre; +totaux total nom m p 3.86 9.66 0.20 0.14 +tâte tâter ver 3.95 21.55 1.02 4.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +totem totem nom m s 1.42 1.35 1.27 0.81 +totems totem nom m p 1.42 1.35 0.15 0.54 +tâtent tâter ver 3.95 21.55 0.04 0.20 ind:pre:3p; +tâter tâter ver 3.95 21.55 1.94 5.74 inf; +tâtera tâter ver 3.95 21.55 0.01 0.07 ind:fut:3s; +tâterai tâter ver 3.95 21.55 0.06 0.00 ind:fut:1s; +tâteras tâter ver 3.95 21.55 0.01 0.00 ind:fut:2s; +tâterez tâter ver 3.95 21.55 0.05 0.00 ind:fut:2p; +tâtez tâter ver 3.95 21.55 0.41 0.14 imp:pre:2p;ind:pre:2p; +tâtiez tâter ver 3.95 21.55 0.00 0.14 ind:imp:2p; +toto toto nom m s 0.30 0.20 0.26 0.00 +totoche totoche nom s 0.00 0.41 0.00 0.27 +totoches totoche nom p 0.00 0.41 0.00 0.14 +toton toton nom m s 0.15 0.41 0.14 0.27 +tâtonna tâtonner ver 0.70 10.54 0.00 1.28 ind:pas:3s; +tâtonnai tâtonner ver 0.70 10.54 0.00 0.14 ind:pas:1s; +tâtonnaient tâtonner ver 0.70 10.54 0.00 0.27 ind:imp:3p; +tâtonnais tâtonner ver 0.70 10.54 0.01 0.07 ind:imp:1s; +tâtonnait tâtonner ver 0.70 10.54 0.10 0.81 ind:imp:3s; +tâtonnant tâtonner ver 0.70 10.54 0.00 3.38 par:pre; +tâtonnante tâtonnant adj f s 0.00 1.28 0.00 0.41 +tâtonnantes tâtonnant adj f p 0.00 1.28 0.00 0.41 +tâtonnants tâtonnant adj m p 0.00 1.28 0.00 0.07 +tâtonne tâtonner ver 0.70 10.54 0.47 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tâtonnement tâtonnement nom m s 0.12 2.03 0.00 0.47 +tâtonnements tâtonnement nom m p 0.12 2.03 0.12 1.55 +tâtonnent tâtonner ver 0.70 10.54 0.01 0.34 ind:pre:3p; +tâtonner tâtonner ver 0.70 10.54 0.08 0.81 inf; +tâtonnera tâtonner ver 0.70 10.54 0.01 0.07 ind:fut:3s; +tâtonnerais tâtonner ver 0.70 10.54 0.00 0.07 cnd:pre:1s; +tâtonnions tâtonner ver 0.70 10.54 0.00 0.20 ind:imp:1p; +tâtonnâmes tâtonner ver 0.70 10.54 0.00 0.07 ind:pas:1p; +tâtonnât tâtonner ver 0.70 10.54 0.00 0.07 sub:imp:3s; +tâtonnèrent tâtonner ver 0.70 10.54 0.00 0.14 ind:pas:3p; +tâtonné tâtonner ver m s 0.70 10.54 0.01 0.41 par:pas; +tâtonnée tâtonner ver f s 0.70 10.54 0.00 0.07 par:pas; +tâtons tâter ver 3.95 21.55 0.03 0.07 imp:pre:1p; +totons toton nom m p 0.15 0.41 0.01 0.14 +totos toto nom m p 0.30 0.20 0.04 0.20 +tâtèrent tâter ver 3.95 21.55 0.00 0.14 ind:pas:3p; +tâté tâter ver m s 3.95 21.55 0.29 2.03 par:pas; +totémique totémique adj m s 0.01 0.27 0.00 0.14 +totémiques totémique adj m p 0.01 0.27 0.01 0.14 +totémisme totémisme nom m s 0.01 0.00 0.01 0.00 +tâtés tâter ver m p 3.95 21.55 0.01 0.07 par:pas; +touareg touareg adj m s 0.06 0.00 0.03 0.00 +touaregs touareg adj m p 0.06 0.00 0.03 0.00 +toubab toubab nom m s 0.30 0.61 0.10 0.54 +toubabs toubab nom m p 0.30 0.61 0.20 0.07 +toubib toubib nom m s 6.62 13.72 5.71 11.35 +toubibs toubib nom m p 6.62 13.72 0.91 2.36 +toucan toucan nom m s 0.03 0.14 0.03 0.14 +toucha toucher ver 270.26 190.27 0.32 10.95 ind:pas:3s; +touchai toucher ver 270.26 190.27 0.01 1.82 ind:pas:1s; +touchaient toucher ver 270.26 190.27 0.44 6.15 ind:imp:3p; +touchais toucher ver 270.26 190.27 1.87 3.04 ind:imp:1s;ind:imp:2s; +touchait toucher ver 270.26 190.27 2.99 18.58 ind:imp:3s; +touchant touchant adj m s 7.42 9.73 6.02 5.34 +touchante touchant adj f s 7.42 9.73 1.04 2.70 +touchantes touchant adj f p 7.42 9.73 0.03 1.01 +touchants touchant adj m p 7.42 9.73 0.33 0.68 +touche_pipi touche_pipi nom m 0.35 0.61 0.35 0.61 +touche_touche touche_touche nom f s 0.01 0.00 0.01 0.00 +touche toucher ver 270.26 190.27 91.91 29.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +touchent toucher ver 270.26 190.27 4.96 6.69 ind:pre:3p;sub:pre:3p; +toucher toucher ver 270.26 190.27 49.41 56.15 inf;;inf;;inf;; +touchera toucher ver 270.26 190.27 4.35 1.35 ind:fut:3s; +toucherai toucher ver 270.26 190.27 2.73 0.61 ind:fut:1s; +toucheraient toucher ver 270.26 190.27 0.08 0.27 cnd:pre:3p; +toucherais toucher ver 270.26 190.27 1.12 0.47 cnd:pre:1s;cnd:pre:2s; +toucherait toucher ver 270.26 190.27 1.05 1.62 cnd:pre:3s; +toucheras toucher ver 270.26 190.27 1.27 0.14 ind:fut:2s; +toucherez toucher ver 270.26 190.27 0.98 0.41 ind:fut:2p; +toucherions toucher ver 270.26 190.27 0.02 0.07 cnd:pre:1p; +toucherons toucher ver 270.26 190.27 0.06 0.14 ind:fut:1p; +toucheront toucher ver 270.26 190.27 0.56 0.20 ind:fut:3p; +touchers toucher nom m p 7.41 10.14 0.00 0.20 +touches toucher ver 270.26 190.27 10.35 1.55 ind:pre:2s; +touchette touchette nom f s 0.01 0.00 0.01 0.00 +touchez toucher ver 270.26 190.27 26.76 2.84 imp:pre:2p;ind:pre:2p; +touchiez toucher ver 270.26 190.27 0.27 0.07 ind:imp:2p; +touchions toucher ver 270.26 190.27 0.13 1.08 ind:imp:1p; +touchons toucher ver 270.26 190.27 0.66 0.81 imp:pre:1p;ind:pre:1p; +touchât toucher ver 270.26 190.27 0.01 0.74 sub:imp:3s; +touchotter touchotter nom m s 0.00 0.07 0.00 0.07 +touchèrent toucher ver 270.26 190.27 0.26 1.22 ind:pas:3p; +touché toucher ver m s 270.26 190.27 50.97 27.77 par:pas; +touchée toucher ver f s 270.26 190.27 11.29 4.93 par:pas; +touchées toucher ver f p 270.26 190.27 0.74 0.68 par:pas; +touchés toucher ver m p 270.26 190.27 3.34 2.36 par:pas; +toue toue nom f s 0.02 0.68 0.02 0.61 +touer touer ver 0.02 0.14 0.02 0.00 inf; +toues toue nom f p 0.02 0.68 0.00 0.07 +touffe touffe nom f s 2.20 16.69 1.60 6.69 +touffes touffe nom f p 2.20 16.69 0.60 10.00 +touffeur touffeur nom f s 0.00 1.35 0.00 1.28 +touffeurs touffeur nom f p 0.00 1.35 0.00 0.07 +touffu touffu adj m s 1.01 4.80 0.42 1.49 +touffue touffu adj f s 1.01 4.80 0.14 0.88 +touffues touffu adj f p 1.01 4.80 0.01 0.34 +touffus touffu adj m p 1.01 4.80 0.43 2.09 +touillais touiller ver 0.29 2.30 0.00 0.07 ind:imp:1s; +touillait touiller ver 0.29 2.30 0.14 0.27 ind:imp:3s; +touillant touiller ver 0.29 2.30 0.00 0.47 par:pre; +touille touiller ver 0.29 2.30 0.01 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +touillent touiller ver 0.29 2.30 0.00 0.14 ind:pre:3p; +touiller touiller ver 0.29 2.30 0.10 0.54 inf; +touillé touillé adj m s 0.10 0.20 0.10 0.07 +touillée touillé adj f s 0.10 0.20 0.00 0.07 +touillées touiller ver f p 0.29 2.30 0.00 0.07 par:pas; +touillés touiller ver m p 0.29 2.30 0.01 0.07 par:pas; +toujours toujours adv_sup 1072.36 1093.78 1072.36 1093.78 +toulonnais toulonnais nom m 0.00 0.41 0.00 0.41 +touloupes touloupe nom f p 0.00 0.14 0.00 0.14 +toulousain toulousain nom m s 0.00 2.57 0.00 1.01 +toulousaine toulousain adj f s 0.00 1.49 0.00 0.14 +toulousaines toulousain adj f p 0.00 1.49 0.00 0.14 +toulousains toulousain nom m p 0.00 2.57 0.00 1.49 +toundra toundra nom f s 0.29 0.47 0.19 0.41 +toundras toundra nom f p 0.29 0.47 0.10 0.07 +toungouse toungouse adj f s 0.00 0.14 0.00 0.14 +toupet toupet nom m s 2.23 2.30 2.08 2.23 +toupets toupet nom m p 2.23 2.30 0.15 0.07 +toupie toupie nom f s 1.79 3.92 1.50 3.04 +toupies toupie nom f p 1.79 3.92 0.29 0.88 +toupilleur toupilleur nom m s 0.00 0.07 0.00 0.07 +toupinant toupiner ver 0.00 0.14 0.00 0.14 par:pre; +touque touque nom f s 0.02 0.14 0.02 0.07 +touques touque nom f p 0.02 0.14 0.00 0.07 +tour tour nom s 193.82 308.72 175.56 280.27 +tourangeau tourangeau adj m s 0.00 0.41 0.00 0.20 +tourangeaux tourangeau adj m p 0.00 0.41 0.00 0.20 +tourangelle tourangelle adj f s 0.00 0.14 0.00 0.07 +tourangelles tourangelle adj f p 0.00 0.14 0.00 0.07 +tourbe tourbe nom f s 0.44 2.03 0.44 1.96 +tourbes tourbe nom f p 0.44 2.03 0.00 0.07 +tourbeuse tourbeux adj f s 0.00 0.20 0.00 0.14 +tourbeux tourbeux adj m p 0.00 0.20 0.00 0.07 +tourbiers tourbier nom m p 0.06 0.95 0.00 0.07 +tourbillon tourbillon nom m s 2.88 17.77 2.34 11.01 +tourbillonna tourbillonner ver 1.16 5.88 0.00 0.20 ind:pas:3s; +tourbillonnaient tourbillonner ver 1.16 5.88 0.04 0.74 ind:imp:3p; +tourbillonnaire tourbillonnaire adj f s 0.00 0.14 0.00 0.14 +tourbillonnais tourbillonner ver 1.16 5.88 0.00 0.07 ind:imp:1s; +tourbillonnait tourbillonner ver 1.16 5.88 0.02 1.08 ind:imp:3s; +tourbillonnant tourbillonner ver 1.16 5.88 0.01 1.15 par:pre; +tourbillonnante tourbillonnant adj f s 0.06 1.62 0.03 0.54 +tourbillonnantes tourbillonnant adj f p 0.06 1.62 0.03 0.34 +tourbillonnants tourbillonnant adj m p 0.06 1.62 0.00 0.27 +tourbillonne tourbillonner ver 1.16 5.88 0.26 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tourbillonnement tourbillonnement nom m s 0.00 0.20 0.00 0.14 +tourbillonnements tourbillonnement nom m p 0.00 0.20 0.00 0.07 +tourbillonnent tourbillonner ver 1.16 5.88 0.68 0.81 ind:pre:3p; +tourbillonner tourbillonner ver 1.16 5.88 0.12 0.74 inf; +tourbillonnez tourbillonner ver 1.16 5.88 0.02 0.00 imp:pre:2p; +tourbillonnèrent tourbillonner ver 1.16 5.88 0.00 0.07 ind:pas:3p; +tourbillonné tourbillonner ver m s 1.16 5.88 0.02 0.00 par:pas; +tourbillons tourbillon nom m p 2.88 17.77 0.54 6.76 +tourbière tourbier nom f s 0.06 0.95 0.06 0.20 +tourbières tourbière nom f p 0.04 0.00 0.04 0.00 +tourde tourd nom f s 0.10 0.00 0.10 0.00 +tourelle tourelle nom f s 1.71 3.92 1.53 1.69 +tourelles tourelle nom f p 1.71 3.92 0.18 2.23 +touret touret nom m s 0.00 0.07 0.00 0.07 +tourillon tourillon nom m s 0.00 0.07 0.00 0.07 +tourisme tourisme nom m s 2.98 4.66 2.98 4.66 +touriste touriste nom s 14.36 24.19 4.05 6.28 +touristes touriste nom p 14.36 24.19 10.31 17.91 +touristique touristique adj s 2.54 3.51 1.95 2.16 +touristiques touristique adj p 2.54 3.51 0.59 1.35 +tourière tourier adj f s 0.00 0.41 0.00 0.41 +tourlourou tourlourou nom m s 0.01 0.07 0.01 0.07 +tourlousine tourlousine nom f s 0.00 0.07 0.00 0.07 +tourmalines tourmaline nom f p 0.01 0.20 0.01 0.20 +tourment tourment nom m s 7.30 12.30 2.94 5.41 +tourmenta tourmenter ver 10.50 16.28 0.01 0.41 ind:pas:3s; +tourmentai tourmenter ver 10.50 16.28 0.00 0.07 ind:pas:1s; +tourmentaient tourmenter ver 10.50 16.28 0.03 0.95 ind:imp:3p; +tourmentais tourmenter ver 10.50 16.28 0.01 0.41 ind:imp:1s; +tourmentait tourmenter ver 10.50 16.28 0.36 2.64 ind:imp:3s; +tourmentant tourmenter ver 10.50 16.28 0.03 0.14 par:pre; +tourmentante tourmentant adj f s 0.00 0.20 0.00 0.07 +tourmentantes tourmentant adj f p 0.00 0.20 0.00 0.07 +tourmente tourmenter ver 10.50 16.28 3.48 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tourmentent tourmenter ver 10.50 16.28 0.52 0.54 ind:pre:3p; +tourmenter tourmenter ver 10.50 16.28 2.59 3.58 inf; +tourmentera tourmenter ver 10.50 16.28 0.21 0.07 ind:fut:3s; +tourmenterai tourmenter ver 10.50 16.28 0.01 0.07 ind:fut:1s; +tourmenteraient tourmenter ver 10.50 16.28 0.00 0.07 cnd:pre:3p; +tourmenteront tourmenter ver 10.50 16.28 0.02 0.07 ind:fut:3p; +tourmentes tourmente nom f p 1.48 2.84 0.28 0.54 +tourmenteur tourmenteur nom m s 0.03 0.47 0.02 0.14 +tourmenteurs tourmenteur nom m p 0.03 0.47 0.01 0.34 +tourmentez tourmenter ver 10.50 16.28 0.49 0.47 imp:pre:2p;ind:pre:2p; +tourmentiez tourmenter ver 10.50 16.28 0.00 0.07 ind:imp:2p; +tourmentin tourmentin nom m s 0.03 0.07 0.03 0.00 +tourmentins tourmentin nom m p 0.03 0.07 0.00 0.07 +tourmentât tourmenter ver 10.50 16.28 0.00 0.27 sub:imp:3s; +tourments tourment nom m p 7.30 12.30 4.36 6.89 +tourmentèrent tourmenter ver 10.50 16.28 0.00 0.07 ind:pas:3p; +tourmenté tourmenter ver m s 10.50 16.28 1.48 2.64 par:pas; +tourmentée tourmenter ver f s 10.50 16.28 0.78 1.01 par:pas; +tourmentées tourmenté adj f p 2.31 5.41 0.19 0.20 +tourmentés tourmenté adj m p 2.31 5.41 0.40 0.95 +tourna tourner ver 204.13 377.09 0.43 58.72 ind:pas:3s; +tournage tournage nom m s 16.59 2.70 15.75 2.36 +tournages tournage nom m p 16.59 2.70 0.84 0.34 +tournai tourner ver 204.13 377.09 0.14 5.07 ind:pas:1s; +tournaient tourner ver 204.13 377.09 0.98 16.42 ind:imp:3p; +tournaillaient tournailler ver 0.14 0.20 0.00 0.07 ind:imp:3p; +tournailler tournailler ver 0.14 0.20 0.14 0.07 inf; +tournaillé tournailler ver m s 0.14 0.20 0.00 0.07 par:pas; +tournais tourner ver 204.13 377.09 1.23 3.58 ind:imp:1s;ind:imp:2s; +tournait tourner ver 204.13 377.09 5.65 50.41 ind:imp:3s; +tournant tournant nom m s 3.44 20.34 3.38 18.31 +tournante tournant adj f s 1.42 7.09 0.59 1.35 +tournantes tournant adj f p 1.42 7.09 0.20 0.68 +tournants tournant nom m p 3.44 20.34 0.06 2.03 +tournas tourner ver 204.13 377.09 0.00 0.07 ind:pas:2s; +tourne_disque tourne_disque nom m s 0.74 1.35 0.50 0.95 +tourne_disque tourne_disque nom m p 0.74 1.35 0.24 0.41 +tourne tourner ver 204.13 377.09 80.72 60.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tourneboulant tournebouler ver 0.40 0.88 0.00 0.07 par:pre; +tourneboule tournebouler ver 0.40 0.88 0.05 0.20 ind:pre:3s; +tourneboulé tournebouler ver m s 0.40 0.88 0.32 0.34 par:pas; +tourneboulée tournebouler ver f s 0.40 0.88 0.03 0.20 par:pas; +tourneboulés tournebouler ver m p 0.40 0.88 0.00 0.07 par:pas; +tournebroche tournebroche nom m s 0.02 0.07 0.02 0.07 +tournedos tournedos nom m 0.25 0.20 0.25 0.20 +tournelle tournelle nom f s 0.00 1.15 0.00 1.15 +tournemain tournemain nom m s 0.06 0.74 0.06 0.74 +tournements tournement nom m p 0.00 0.07 0.00 0.07 +tournent tourner ver 204.13 377.09 5.97 11.35 ind:pre:3p;sub:pre:3p; +tourner tourner ver 204.13 377.09 51.03 68.78 inf; +tournera tourner ver 204.13 377.09 1.71 0.68 ind:fut:3s; +tournerai tourner ver 204.13 377.09 0.70 0.34 ind:fut:1s; +tourneraient tourner ver 204.13 377.09 0.06 0.34 cnd:pre:3p; +tournerais tourner ver 204.13 377.09 0.11 0.34 cnd:pre:1s;cnd:pre:2s; +tournerait tourner ver 204.13 377.09 1.08 1.82 cnd:pre:3s; +tourneras tourner ver 204.13 377.09 0.21 0.14 ind:fut:2s; +tournerez tourner ver 204.13 377.09 0.44 0.14 ind:fut:2p; +tourneries tournerie nom f p 0.00 0.07 0.00 0.07 +tourneriez tourner ver 204.13 377.09 0.03 0.00 cnd:pre:2p; +tournerions tourner ver 204.13 377.09 0.01 0.00 cnd:pre:1p; +tournerons tourner ver 204.13 377.09 0.18 0.07 ind:fut:1p; +tourneront tourner ver 204.13 377.09 0.36 0.20 ind:fut:3p; +tournes tourner ver 204.13 377.09 4.85 0.95 ind:pre:2s; +tournesol tournesol nom m s 1.43 1.22 0.86 0.61 +tournesols tournesol nom m p 1.43 1.22 0.57 0.61 +tournette tournette nom f s 0.01 0.00 0.01 0.00 +tourneur tourneur nom m s 0.57 1.08 0.35 0.61 +tourneurs tourneur nom m p 0.57 1.08 0.22 0.41 +tourneuses tourneur nom f p 0.57 1.08 0.00 0.07 +tournevis tournevis nom m 3.46 3.24 3.46 3.24 +tournez tourner ver 204.13 377.09 15.82 1.55 imp:pre:2p;ind:pre:2p; +tournicota tournicoter ver 0.03 1.01 0.01 0.00 ind:pas:3s; +tournicotais tournicoter ver 0.03 1.01 0.00 0.07 ind:imp:1s; +tournicotait tournicoter ver 0.03 1.01 0.00 0.20 ind:imp:3s; +tournicotant tournicoter ver 0.03 1.01 0.00 0.07 par:pre; +tournicote tournicoter ver 0.03 1.01 0.01 0.20 imp:pre:2s;ind:pre:3s; +tournicotent tournicoter ver 0.03 1.01 0.00 0.07 ind:pre:3p; +tournicoter tournicoter ver 0.03 1.01 0.01 0.20 inf; +tournicoterais tournicoter ver 0.03 1.01 0.00 0.07 cnd:pre:1s; +tournicoté tournicoter ver m s 0.03 1.01 0.00 0.07 par:pas; +tournicotés tournicoter ver m p 0.03 1.01 0.00 0.07 par:pas; +tournillant tourniller ver 0.00 0.07 0.00 0.07 par:pre; +tournions tourner ver 204.13 377.09 0.06 0.68 ind:imp:1p; +tourniquant tourniquer ver 0.20 0.20 0.00 0.14 par:pre; +tournique tourniquer ver 0.20 0.20 0.00 0.07 ind:pre:3s; +tourniquer tourniquer ver 0.20 0.20 0.20 0.00 inf; +tourniquet tourniquet nom m s 0.68 2.77 0.65 2.30 +tourniquets tourniquet nom m p 0.68 2.77 0.03 0.47 +tournis tournis nom m 0.58 1.62 0.58 1.62 +tournoi tournoi nom m s 6.86 3.38 5.84 2.16 +tournoie tournoyer ver 1.26 14.80 0.19 1.28 ind:pre:3s; +tournoiement tournoiement nom m s 0.04 1.49 0.04 1.15 +tournoiements tournoiement nom m p 0.04 1.49 0.00 0.34 +tournoient tournoyer ver 1.26 14.80 0.19 2.30 ind:pre:3p; +tournoieraient tournoyer ver 1.26 14.80 0.11 0.07 cnd:pre:3p; +tournoieront tournoyer ver 1.26 14.80 0.00 0.07 ind:fut:3p; +tournois tournoi nom m p 6.86 3.38 1.02 1.22 +tournâmes tourner ver 204.13 377.09 0.00 0.41 ind:pas:1p; +tournons tourner ver 204.13 377.09 1.88 1.82 imp:pre:1p;ind:pre:1p; +tournât tourner ver 204.13 377.09 0.01 0.54 sub:imp:3s; +tournoya tournoyer ver 1.26 14.80 0.00 0.47 ind:pas:3s; +tournoyaient tournoyer ver 1.26 14.80 0.03 2.50 ind:imp:3p; +tournoyais tournoyer ver 1.26 14.80 0.00 0.07 ind:imp:1s; +tournoyait tournoyer ver 1.26 14.80 0.19 1.96 ind:imp:3s; +tournoyant tournoyer ver 1.26 14.80 0.26 2.16 par:pre; +tournoyante tournoyant adj f s 0.04 2.36 0.01 0.68 +tournoyantes tournoyant adj f p 0.04 2.36 0.01 0.34 +tournoyants tournoyant adj m p 0.04 2.36 0.00 0.54 +tournoyer tournoyer ver 1.26 14.80 0.27 3.65 inf; +tournoyèrent tournoyer ver 1.26 14.80 0.00 0.14 ind:pas:3p; +tournoyé tournoyer ver m s 1.26 14.80 0.02 0.14 par:pas; +tournèrent tourner ver 204.13 377.09 0.08 4.59 ind:pas:3p; +tourné tourner ver m s 204.13 377.09 24.84 38.78 par:pas; +tournée tournée nom f s 20.57 23.85 18.64 18.72 +tournées tournée nom f p 20.57 23.85 1.93 5.14 +tournure tournure nom f s 3.00 8.24 2.82 6.42 +tournures tournure nom f p 3.00 8.24 0.18 1.82 +tournés tourner ver m p 204.13 377.09 1.17 4.46 par:pas; +tours_minute tours_minute nom p 0.00 0.07 0.00 0.07 +tours tour nom p 193.82 308.72 18.26 28.45 +tourte tourte nom f s 1.15 0.74 1.03 0.54 +tourteau tourteau nom m s 0.01 0.81 0.00 0.27 +tourteaux tourteau nom m p 0.01 0.81 0.01 0.54 +tourtereau tourtereau nom m s 2.00 2.50 0.13 0.00 +tourtereaux tourtereau nom m p 2.00 2.50 1.59 0.61 +tourterelle tourtereau nom f s 2.00 2.50 0.28 1.01 +tourterelles tourterelle nom f p 0.39 0.00 0.39 0.00 +tourtes tourte nom f p 1.15 0.74 0.12 0.20 +tourtière tourtière nom f s 0.03 0.07 0.02 0.00 +tourtières tourtière nom f p 0.03 0.07 0.01 0.07 +tous_terrains tous_terrains adj m p 0.00 0.07 0.00 0.07 +tous tous pro_ind m p 376.64 238.72 376.64 238.72 +toussa tousser ver 9.28 23.18 0.00 5.34 ind:pas:3s; +toussai tousser ver 9.28 23.18 0.00 0.07 ind:pas:1s; +toussaient tousser ver 9.28 23.18 0.11 0.34 ind:imp:3p; +toussaint toussaint nom f s 0.54 0.27 0.54 0.27 +toussais tousser ver 9.28 23.18 0.16 0.07 ind:imp:1s;ind:imp:2s; +toussait tousser ver 9.28 23.18 0.35 3.65 ind:imp:3s; +toussant tousser ver 9.28 23.18 0.08 0.95 par:pre; +tousse tousser ver 9.28 23.18 4.89 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +toussent tousser ver 9.28 23.18 0.33 0.20 ind:pre:3p; +tousser tousser ver 9.28 23.18 1.84 5.81 inf; +toussera tousser ver 9.28 23.18 0.03 0.07 ind:fut:3s; +tousserait tousser ver 9.28 23.18 0.00 0.27 cnd:pre:3s; +tousses tousser ver 9.28 23.18 0.27 0.14 ind:pre:2s; +tousseur tousseur adj m s 0.01 0.20 0.00 0.14 +tousseurs tousseur adj m p 0.01 0.20 0.01 0.07 +tousseux tousseux adj m 0.00 0.07 0.00 0.07 +toussez tousser ver 9.28 23.18 0.51 0.20 imp:pre:2p;ind:pre:2p; +toussions tousser ver 9.28 23.18 0.00 0.07 ind:imp:1p; +toussons tousser ver 9.28 23.18 0.01 0.14 imp:pre:1p;ind:pre:1p; +toussota toussoter ver 0.14 5.14 0.00 2.43 ind:pas:3s; +toussotai toussoter ver 0.14 5.14 0.00 0.07 ind:pas:1s; +toussotaient toussoter ver 0.14 5.14 0.00 0.07 ind:imp:3p; +toussotait toussoter ver 0.14 5.14 0.00 0.54 ind:imp:3s; +toussotant toussoter ver 0.14 5.14 0.00 0.47 par:pre; +toussote toussoter ver 0.14 5.14 0.00 0.95 ind:pre:1s;ind:pre:3s; +toussotement toussotement nom m s 0.01 0.68 0.01 0.41 +toussotements toussotement nom m p 0.01 0.68 0.00 0.27 +toussotent toussoter ver 0.14 5.14 0.00 0.07 ind:pre:3p; +toussoter toussoter ver 0.14 5.14 0.01 0.34 inf; +toussoteux toussoteux adj m p 0.00 0.07 0.00 0.07 +toussotiez toussoter ver 0.14 5.14 0.00 0.07 ind:imp:2p; +toussoté toussoter ver m s 0.14 5.14 0.14 0.14 par:pas; +toussé tousser ver m s 9.28 23.18 0.70 1.15 par:pas; +tout_fait tout_fait adj_ind m s 0.14 0.00 0.11 0.00 +tout_fou tout_fou adj m s 0.01 0.00 0.01 0.00 +tout_à_l_égout tout_à_l_égout nom m 0.00 0.47 0.00 0.47 +tout_paris tout_paris nom m 0.16 1.01 0.16 1.01 +tout_petit tout_petit nom m s 0.20 0.74 0.03 0.34 +tout_petit tout_petit nom m p 0.20 0.74 0.17 0.41 +tout_puissant tout_puissant adj m s 7.22 3.65 5.70 2.09 +tout_puissant tout_puissant adj m p 7.22 3.65 0.17 0.41 +tout_terrain tout_terrain nom m s 0.28 0.00 0.28 0.00 +tout_étoile tout_étoile nom m s 0.01 0.00 0.01 0.00 +tout_venant tout_venant nom m 0.05 0.74 0.05 0.74 +tout tout pro_ind m s 1366.45 838.04 1366.45 838.04 +toute_puissance toute_puissance nom f 0.08 2.03 0.08 2.03 +tout_puissant tout_puissant adj f s 7.22 3.65 1.35 1.15 +toute toute adj_ind f s 118.32 194.26 118.32 194.26 +toutefois toutefois adv_sup 5.37 35.47 5.37 35.47 +toute_puissante toute_puissante adj f p 0.01 0.14 0.01 0.14 +toutes toutes pro_ind f p 20.86 24.19 20.86 24.19 +toutim toutim nom m s 0.31 0.88 0.31 0.88 +toutime toutime nom m s 0.00 0.74 0.00 0.74 +toutou toutou nom m s 6.06 1.89 5.65 1.55 +toutous toutou nom m p 6.06 1.89 0.41 0.34 +touts tout nom_sup m p 330.70 281.01 0.10 0.00 +toué touer ver m s 0.02 0.14 0.00 0.07 par:pas; +toux toux nom f 4.94 12.23 4.94 12.23 +toxicité toxicité nom f s 0.34 0.20 0.34 0.20 +toxico toxico nom s 1.33 0.88 1.14 0.20 +toxicologie toxicologie nom f s 0.61 0.00 0.61 0.00 +toxicologique toxicologique adj s 0.93 0.00 0.93 0.00 +toxicologue toxicologue nom s 0.06 0.00 0.04 0.00 +toxicologues toxicologue nom p 0.06 0.00 0.01 0.00 +toxicomane toxicomane nom s 1.67 0.54 1.16 0.07 +toxicomanes toxicomane nom p 1.67 0.54 0.51 0.47 +toxicomanie toxicomanie nom f s 0.21 0.00 0.21 0.00 +toxicos toxico nom p 1.33 0.88 0.19 0.68 +toxine toxine nom f s 2.29 0.07 0.90 0.00 +toxines toxine nom f p 2.29 0.07 1.39 0.07 +toxique toxique adj s 5.20 0.74 3.00 0.34 +toxiques toxique adj p 5.20 0.74 2.20 0.41 +toxoplasmose toxoplasmose nom f s 0.07 0.20 0.07 0.20 +trôler trôler ver 0.01 0.00 0.01 0.00 inf; +trôna trôner ver 0.34 10.20 0.00 0.07 ind:pas:3s; +trônaient trôner ver 0.34 10.20 0.00 0.81 ind:imp:3p; +trônais trôner ver 0.34 10.20 0.00 0.07 ind:imp:1s; +trônait trôner ver 0.34 10.20 0.11 5.34 ind:imp:3s; +trônant trôner ver 0.34 10.20 0.11 1.49 par:pre; +trône trône nom m s 14.32 12.03 13.99 11.49 +trônent trôner ver 0.34 10.20 0.01 0.34 ind:pre:3p; +trôner trôner ver 0.34 10.20 0.03 0.34 inf; +trônerait trôner ver 0.34 10.20 0.00 0.07 cnd:pre:3s; +trônes trône nom m p 14.32 12.03 0.33 0.54 +trôné trôner ver m s 0.34 10.20 0.00 0.07 par:pas; +traîna traîner ver 65.49 122.77 0.05 4.05 ind:pas:3s; +traînage traînage nom m s 0.01 0.00 0.01 0.00 +traînai traîner ver 65.49 122.77 0.01 1.08 ind:pas:1s; +traînaient traîner ver 65.49 122.77 0.45 11.15 ind:imp:3p; +traînaillait traînailler ver 0.03 0.74 0.00 0.07 ind:imp:3s; +traînaillant traînailler ver 0.03 0.74 0.01 0.14 par:pre; +traînaille traînailler ver 0.03 0.74 0.00 0.07 ind:pre:3s; +traînailler traînailler ver 0.03 0.74 0.02 0.27 inf; +traînaillons traînailler ver 0.03 0.74 0.00 0.07 imp:pre:1p; +traînaillé traînailler ver m s 0.03 0.74 0.00 0.14 par:pas; +traînais traîner ver 65.49 122.77 1.94 2.16 ind:imp:1s;ind:imp:2s; +traînait traîner ver 65.49 122.77 3.66 19.59 ind:imp:3s; +traînant traîner ver 65.49 122.77 1.41 13.18 par:pre; +traînante traînant adj f s 0.05 5.88 0.00 1.96 +traînantes traînant adj f p 0.05 5.88 0.00 0.61 +traînants traînant adj m p 0.05 5.88 0.01 0.27 +traînard traînard nom m s 0.35 1.35 0.16 0.27 +traînarde traînard adj f s 0.07 0.88 0.01 0.07 +traînards traînard nom m p 0.35 1.35 0.19 1.01 +traînassaient traînasser ver 0.49 1.28 0.01 0.07 ind:imp:3p; +traînassais traînasser ver 0.49 1.28 0.02 0.00 ind:imp:1s; +traînassait traînasser ver 0.49 1.28 0.00 0.07 ind:imp:3s; +traînassant traînasser ver 0.49 1.28 0.00 0.07 par:pre; +traînasse traînasser ver 0.49 1.28 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +traînassent traînasser ver 0.49 1.28 0.00 0.14 ind:pre:3p; +traînasser traînasser ver 0.49 1.28 0.34 0.41 inf; +traînasserai traînasser ver 0.49 1.28 0.01 0.00 ind:fut:1s; +traînasses traînasser ver 0.49 1.28 0.03 0.00 ind:pre:2s; +traînassez traînasser ver 0.49 1.28 0.01 0.00 imp:pre:2p; +traînassons traînasser ver 0.49 1.28 0.00 0.07 ind:pre:1p; +traînassé traînasser ver m s 0.49 1.28 0.00 0.14 par:pas; +traîne_misère traîne_misère nom m 0.01 0.07 0.01 0.07 +traîne_patins traîne_patins nom m 0.00 0.47 0.00 0.47 +traîne_savate traîne_savate nom m s 0.01 0.07 0.01 0.07 +traîne_savates traîne_savates nom m 0.22 0.54 0.22 0.54 +traîne_semelle traîne_semelle nom s 0.00 0.07 0.00 0.07 +traîne_semelles traîne_semelles nom m 0.01 0.07 0.01 0.07 +traîne traîner ver 65.49 122.77 14.63 16.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +traîneau traîneau nom m s 2.27 3.45 2.27 3.45 +traîneaux traineaux nom m p 0.10 1.08 0.10 1.08 +traînement traînement nom m s 0.03 0.00 0.03 0.00 +traînent traîner ver 65.49 122.77 3.42 7.03 ind:pre:3p; +traîner traîner ver 65.49 122.77 21.48 28.04 inf;; +traînera traîner ver 65.49 122.77 0.31 0.47 ind:fut:3s; +traînerai traîner ver 65.49 122.77 0.54 0.07 ind:fut:1s; +traîneraient traîner ver 65.49 122.77 0.02 0.07 cnd:pre:3p; +traînerais traîner ver 65.49 122.77 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +traînerait traîner ver 65.49 122.77 0.10 0.34 cnd:pre:3s; +traîneras traîner ver 65.49 122.77 0.09 0.00 ind:fut:2s; +traînerez traîner ver 65.49 122.77 0.19 0.00 ind:fut:2p; +traînerons traîner ver 65.49 122.77 0.17 0.00 ind:fut:1p; +traîneront traîner ver 65.49 122.77 0.04 0.20 ind:fut:3p; +traînes traîner ver 65.49 122.77 4.29 0.68 ind:pre:2s; +traîneur traîneur nom m s 0.01 0.41 0.00 0.27 +traîneurs traîneur nom m p 0.01 0.41 0.01 0.07 +traîneuses traîneuse nom f p 0.01 0.00 0.01 0.00 +traînez traîner ver 65.49 122.77 2.95 0.47 imp:pre:2p;ind:pre:2p; +traînier traînier nom m s 0.00 0.20 0.00 0.20 +traîniez traîner ver 65.49 122.77 0.12 0.07 ind:imp:2p; +traînions traîner ver 65.49 122.77 0.04 0.41 ind:imp:1p; +traînâmes traîner ver 65.49 122.77 0.00 0.07 ind:pas:1p; +traînons traîner ver 65.49 122.77 0.29 0.47 imp:pre:1p;ind:pre:1p; +traînât traîner ver 65.49 122.77 0.00 0.20 sub:imp:3s; +traînèrent traîner ver 65.49 122.77 0.12 0.88 ind:pas:3p; +traîné traîner ver m s 65.49 122.77 6.80 11.89 par:pas; +traînée traînée nom f s 7.35 13.24 6.49 6.28 +traînées traînée nom f p 7.35 13.24 0.86 6.96 +traînés traîner ver m p 65.49 122.77 0.73 1.35 par:pas; +traître traître nom m s 26.36 13.24 19.18 7.30 +traîtres traître nom m p 26.36 13.24 7.18 5.95 +traîtresse traîtresse nom f s 1.54 0.41 1.14 0.34 +traîtresses traîtresse nom f p 1.54 0.41 0.41 0.07 +traîtreusement traîtreusement adv 0.01 1.01 0.01 1.01 +traîtrise traîtrise nom f s 1.27 1.96 1.27 1.82 +traîtrises traîtrise nom f p 1.27 1.96 0.00 0.14 +trabans traban nom m p 0.00 0.07 0.00 0.07 +traboules traboule nom f p 0.14 0.07 0.14 0.07 +trabuco trabuco nom m s 0.02 0.14 0.02 0.14 +trac trac nom m s 5.17 8.38 4.91 8.24 +tracas tracas nom m 1.43 4.46 1.43 4.46 +tracassa tracasser ver 10.37 5.88 0.00 0.07 ind:pas:3s; +tracassaient tracasser ver 10.37 5.88 0.03 0.14 ind:imp:3p; +tracassait tracasser ver 10.37 5.88 0.47 1.42 ind:imp:3s; +tracassant tracasser ver 10.37 5.88 0.00 0.14 par:pre; +tracasse tracasser ver 10.37 5.88 7.15 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tracassent tracasser ver 10.37 5.88 0.27 0.20 ind:pre:3p; +tracasser tracasser ver 10.37 5.88 0.56 0.68 inf; +tracassera tracasser ver 10.37 5.88 0.02 0.00 ind:fut:3s; +tracasserais tracasser ver 10.37 5.88 0.02 0.00 cnd:pre:1s; +tracasserait tracasser ver 10.37 5.88 0.03 0.07 cnd:pre:3s; +tracasserie tracasserie nom f s 0.34 0.95 0.01 0.07 +tracasseries tracasserie nom f p 0.34 0.95 0.33 0.88 +tracasserons tracasser ver 10.37 5.88 0.01 0.00 ind:fut:1p; +tracasses tracasser ver 10.37 5.88 0.47 0.07 ind:pre:2s; +tracassez tracasser ver 10.37 5.88 0.83 0.61 imp:pre:2p;ind:pre:2p; +tracassier tracassier adj m s 0.10 0.27 0.10 0.20 +tracassin tracassin nom m s 0.00 0.27 0.00 0.27 +tracassière tracassier nom f s 0.00 0.07 0.00 0.07 +tracassières tracassier adj f p 0.10 0.27 0.00 0.07 +tracassé tracasser ver m s 10.37 5.88 0.45 0.41 par:pas; +tracassée tracasser ver f s 10.37 5.88 0.06 0.27 par:pas; +tracassées tracasser ver f p 10.37 5.88 0.00 0.07 par:pas; +trace trace nom f s 60.18 80.27 29.20 39.32 +tracent tracer ver 10.49 42.36 0.30 1.42 ind:pre:3p; +tracer tracer ver 10.49 42.36 2.08 7.23 inf; +tracera tracer ver 10.49 42.36 0.01 0.07 ind:fut:3s; +tracerez tracer ver 10.49 42.36 0.01 0.00 ind:fut:2p; +tracerons tracer ver 10.49 42.36 0.01 0.00 ind:fut:1p; +traces trace nom f p 60.18 80.27 30.98 40.95 +traceur traceur nom m s 0.59 0.00 0.52 0.00 +traceurs traceur nom m p 0.59 0.00 0.08 0.00 +traceuse traceur adj f s 0.11 0.20 0.01 0.00 +traceuses traceur adj f p 0.11 0.20 0.00 0.20 +tracez tracer ver 10.49 42.36 0.26 0.14 imp:pre:2p;ind:pre:2p; +trachome trachome nom m s 0.02 0.07 0.02 0.07 +trachéal trachéal adj m s 0.09 0.00 0.05 0.00 +trachéale trachéal adj f s 0.09 0.00 0.04 0.00 +trachée_artère trachée_artère nom f s 0.02 0.20 0.02 0.20 +trachée trachée nom f s 0.97 0.41 0.97 0.34 +trachées trachée nom f p 0.97 0.41 0.00 0.07 +trachéite trachéite nom f s 0.00 0.07 0.00 0.07 +trachéotomie trachéotomie nom f s 0.35 0.14 0.35 0.14 +tracions tracer ver 10.49 42.36 0.00 0.07 ind:imp:1p; +tracs trac nom m p 5.17 8.38 0.26 0.14 +tract tract nom m s 3.67 9.39 0.41 2.50 +tractage tractage nom m s 0.01 0.00 0.01 0.00 +tractait tracter ver 0.27 0.41 0.01 0.07 ind:imp:3s; +tractant tracter ver 0.27 0.41 0.01 0.07 par:pre; +tractation tractation nom f s 0.12 1.96 0.01 0.27 +tractations tractation nom f p 0.12 1.96 0.11 1.69 +tracter tracter ver 0.27 0.41 0.23 0.14 inf; +tracteur tracteur nom m s 3.86 6.82 2.87 5.27 +tracteurs tracteur nom m p 3.86 6.82 0.99 1.55 +tracèrent tracer ver 10.49 42.36 0.00 0.14 ind:pas:3p; +traction_avant traction_avant nom f s 0.00 0.07 0.00 0.07 +traction traction nom f s 1.19 8.31 1.06 7.43 +tractions traction nom f p 1.19 8.31 0.13 0.88 +tractopelle tractopelle nom f s 0.24 0.00 0.24 0.00 +tractoriste tractoriste nom s 0.10 0.20 0.10 0.07 +tractoristes tractoriste nom p 0.10 0.20 0.00 0.14 +tracts tract nom m p 3.67 9.39 3.26 6.89 +tracté tracté adj m s 0.04 0.20 0.04 0.14 +tractée tracter ver f s 0.27 0.41 0.00 0.07 par:pas; +tractés tracté adj m p 0.04 0.20 0.00 0.07 +tractus tractus nom m 0.12 0.20 0.12 0.20 +tracé tracer ver m s 10.49 42.36 2.22 7.30 par:pas; +tracée tracer ver f s 10.49 42.36 1.13 3.24 par:pas; +tracées tracer ver f p 10.49 42.36 0.28 3.31 par:pas; +tracés tracer ver m p 10.49 42.36 0.40 3.51 par:pas; +trader trader nom m s 0.33 0.00 0.33 0.00 +tradition tradition nom f s 20.56 33.92 15.68 23.38 +traditionalisme traditionalisme nom m s 0.11 0.54 0.11 0.54 +traditionaliste traditionaliste adj s 0.07 0.41 0.07 0.41 +traditionalistes traditionaliste nom p 0.09 0.61 0.04 0.41 +traditionnel traditionnel adj m s 6.85 15.20 2.66 5.47 +traditionnelle traditionnel adj f s 6.85 15.20 2.72 5.14 +traditionnellement traditionnellement adv 0.34 3.24 0.34 3.24 +traditionnelles traditionnel adj f p 6.85 15.20 0.75 2.43 +traditionnels traditionnel adj m p 6.85 15.20 0.71 2.16 +traditions tradition nom f p 20.56 33.92 4.87 10.54 +traduc traduc nom f s 0.17 0.00 0.17 0.00 +traducteur traducteur nom m s 4.41 3.51 2.95 2.09 +traducteurs traducteur nom m p 4.41 3.51 0.85 0.88 +traduction traduction nom f s 5.24 11.15 4.70 8.45 +traductions traduction nom f p 5.24 11.15 0.55 2.70 +traductrice traducteur nom f s 4.41 3.51 0.60 0.41 +traductrices traductrice nom f p 0.01 0.00 0.01 0.00 +traduira traduire ver 15.41 34.32 0.25 0.14 ind:fut:3s; +traduirai traduire ver 15.41 34.32 0.09 0.07 ind:fut:1s; +traduiraient traduire ver 15.41 34.32 0.00 0.14 cnd:pre:3p; +traduirais traduire ver 15.41 34.32 0.25 0.00 cnd:pre:1s; +traduirait traduire ver 15.41 34.32 0.01 0.14 cnd:pre:3s; +traduire traduire ver 15.41 34.32 5.27 11.01 inf; +traduirez traduire ver 15.41 34.32 0.23 0.07 ind:fut:2p; +traduis traduire ver 15.41 34.32 2.17 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s; +traduisît traduire ver 15.41 34.32 0.00 0.07 sub:imp:3s; +traduisaient traduire ver 15.41 34.32 0.01 0.74 ind:imp:3p; +traduisais traduire ver 15.41 34.32 0.16 0.47 ind:imp:1s;ind:imp:2s; +traduisait traduire ver 15.41 34.32 0.15 4.86 ind:imp:3s; +traduisant traduire ver 15.41 34.32 0.14 1.08 par:pre; +traduise traduire ver 15.41 34.32 0.21 0.14 sub:pre:1s;sub:pre:3s; +traduisent traduire ver 15.41 34.32 0.23 0.95 ind:pre:3p; +traduises traduire ver 15.41 34.32 0.03 0.00 sub:pre:2s; +traduisez traduire ver 15.41 34.32 0.99 0.20 imp:pre:2p;ind:pre:2p; +traduisibles traduisible adj f p 0.01 0.14 0.01 0.14 +traduisions traduire ver 15.41 34.32 0.01 0.00 ind:imp:1p; +traduisis traduire ver 15.41 34.32 0.00 0.47 ind:pas:1s; +traduisit traduire ver 15.41 34.32 0.01 1.69 ind:pas:3s; +traduisons traduire ver 15.41 34.32 0.00 0.07 imp:pre:1p; +traduit traduire ver m s 15.41 34.32 4.30 8.24 ind:pre:3s;par:pas; +traduite traduire ver f s 15.41 34.32 0.25 0.81 par:pas; +traduites traduire ver f p 15.41 34.32 0.06 0.68 par:pas; +traduits traduire ver m p 15.41 34.32 0.59 1.08 par:pas; +trafalgar trafalgar nom s 0.00 0.20 0.00 0.20 +trafic trafic nom m s 14.02 10.27 13.24 8.65 +traficotaient traficoter ver 0.49 0.47 0.00 0.07 ind:imp:3p; +traficotait traficoter ver 0.49 0.47 0.16 0.14 ind:imp:3s; +traficote traficoter ver 0.49 0.47 0.13 0.07 ind:pre:3s; +traficoter traficoter ver 0.49 0.47 0.11 0.14 inf; +traficotes traficoter ver 0.49 0.47 0.06 0.00 ind:pre:2s; +traficoteurs traficoteur nom m p 0.00 0.07 0.00 0.07 +traficotez traficoter ver 0.49 0.47 0.01 0.00 ind:pre:2p; +traficoté traficoter ver m s 0.49 0.47 0.02 0.07 par:pas; +trafics trafic nom m p 14.02 10.27 0.78 1.62 +trafiquaient trafiquer ver 7.25 3.78 0.07 0.20 ind:imp:3p; +trafiquais trafiquer ver 7.25 3.78 0.31 0.00 ind:imp:1s;ind:imp:2s; +trafiquait trafiquer ver 7.25 3.78 0.29 0.27 ind:imp:3s; +trafiquant_espion trafiquant_espion nom m s 0.00 0.07 0.00 0.07 +trafiquant trafiquant nom m s 5.41 3.38 2.65 1.28 +trafiquante trafiquant nom f s 5.41 3.38 0.04 0.00 +trafiquants trafiquant nom m p 5.41 3.38 2.72 2.09 +trafique trafiquer ver 7.25 3.78 1.06 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trafiquent trafiquer ver 7.25 3.78 0.13 0.34 ind:pre:3p; +trafiquer trafiquer ver 7.25 3.78 1.08 1.01 inf; +trafiquerais trafiquer ver 7.25 3.78 0.01 0.00 cnd:pre:1s; +trafiques trafiquer ver 7.25 3.78 0.34 0.07 ind:pre:2s; +trafiquez trafiquer ver 7.25 3.78 0.31 0.07 imp:pre:2p;ind:pre:2p; +trafiquions trafiquer ver 7.25 3.78 0.00 0.07 ind:imp:1p; +trafiqué trafiquer ver m s 7.25 3.78 1.83 0.54 par:pas; +trafiquée trafiquer ver f s 7.25 3.78 0.46 0.34 par:pas; +trafiquées trafiquer ver f p 7.25 3.78 0.53 0.07 par:pas; +trafiqués trafiquer ver m p 7.25 3.78 0.25 0.07 par:pas; +tragi_comique tragi_comique adj f s 0.00 0.47 0.00 0.34 +tragi_comique tragi_comique adj m p 0.00 0.47 0.00 0.14 +tragi_comédie tragi_comédie nom f s 0.00 0.27 0.00 0.14 +tragi_comédie tragi_comédie nom f p 0.00 0.27 0.00 0.14 +tragicomédies tragicomédie nom f p 0.01 0.00 0.01 0.00 +tragique tragique adj s 12.13 22.50 10.55 17.97 +tragiquement tragiquement adv 0.58 1.96 0.58 1.96 +tragiques tragique adj p 12.13 22.50 1.59 4.53 +tragédie tragédie nom f s 15.59 14.46 14.23 10.88 +tragédien tragédien nom m s 0.52 1.15 0.07 0.20 +tragédienne tragédien nom f s 0.52 1.15 0.25 0.54 +tragédiennes tragédienne nom f p 0.01 0.00 0.01 0.00 +tragédiens tragédien nom m p 0.52 1.15 0.20 0.34 +tragédies tragédie nom f p 15.59 14.46 1.36 3.58 +trahi trahir ver m s 46.83 41.55 16.18 8.11 par:pas; +trahie trahir ver f s 46.83 41.55 2.35 2.97 par:pas; +trahies trahir ver f p 46.83 41.55 0.17 0.14 par:pas; +trahir trahir ver 46.83 41.55 10.16 11.01 inf; +trahira trahir ver 46.83 41.55 1.38 0.34 ind:fut:3s; +trahirai trahir ver 46.83 41.55 0.97 0.07 ind:fut:1s; +trahiraient trahir ver 46.83 41.55 0.07 0.20 cnd:pre:3p; +trahirais trahir ver 46.83 41.55 0.40 0.07 cnd:pre:1s;cnd:pre:2s; +trahirait trahir ver 46.83 41.55 0.77 0.34 cnd:pre:3s; +trahiras trahir ver 46.83 41.55 0.09 0.07 ind:fut:2s; +trahirent trahir ver 46.83 41.55 0.00 0.20 ind:pas:3p; +trahirez trahir ver 46.83 41.55 0.07 0.14 ind:fut:2p; +trahiriez trahir ver 46.83 41.55 0.05 0.00 cnd:pre:2p; +trahirons trahir ver 46.83 41.55 0.01 0.00 ind:fut:1p; +trahiront trahir ver 46.83 41.55 0.10 0.41 ind:fut:3p; +trahis trahir ver m p 46.83 41.55 5.92 2.91 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +trahison trahison nom f s 18.61 18.51 16.74 15.27 +trahisons trahison nom f p 18.61 18.51 1.88 3.24 +trahissaient trahir ver 46.83 41.55 0.26 1.55 ind:imp:3p; +trahissais trahir ver 46.83 41.55 0.06 0.34 ind:imp:1s;ind:imp:2s; +trahissait trahir ver 46.83 41.55 0.16 4.59 ind:imp:3s; +trahissant trahir ver 46.83 41.55 0.50 0.95 par:pre; +trahisse trahir ver 46.83 41.55 0.45 0.74 sub:pre:1s;sub:pre:3s; +trahissent trahir ver 46.83 41.55 1.50 1.62 ind:pre:3p; +trahissez trahir ver 46.83 41.55 1.07 0.27 imp:pre:2p;ind:pre:2p; +trahissiez trahir ver 46.83 41.55 0.28 0.00 ind:imp:2p; +trahissions trahir ver 46.83 41.55 0.01 0.00 ind:imp:1p; +trahissons trahir ver 46.83 41.55 0.01 0.00 imp:pre:1p; +trahit trahir ver 46.83 41.55 3.85 4.53 ind:pre:3s;ind:pas:3s; +traie traire ver 3.69 4.59 0.27 0.00 sub:pre:1s; +train_train train_train nom m 0.69 1.62 0.69 1.62 +train train nom m s 255.28 288.65 244.40 271.28 +trainglots trainglot nom m p 0.00 0.07 0.00 0.07 +training training nom m s 0.02 0.07 0.02 0.07 +trains train nom m p 255.28 288.65 10.88 17.36 +traintrain traintrain nom m 0.00 0.14 0.00 0.14 +traira traire ver 3.69 4.59 0.01 0.00 ind:fut:3s; +trairait traire ver 3.69 4.59 0.01 0.07 cnd:pre:3s; +traire traire ver 3.69 4.59 1.80 1.82 inf; +trais traire ver 3.69 4.59 0.35 0.00 ind:pre:1s;ind:pre:2s; +trait trait nom m s 15.86 97.30 7.83 37.91 +traita traiter ver 104.05 69.93 0.38 2.43 ind:pas:3s; +traitable traitable adj m s 0.05 0.14 0.05 0.07 +traitables traitable adj p 0.05 0.14 0.00 0.07 +traitai traiter ver 104.05 69.93 0.00 0.47 ind:pas:1s; +traitaient traiter ver 104.05 69.93 0.67 2.91 ind:imp:3p; +traitais traiter ver 104.05 69.93 0.81 0.47 ind:imp:1s;ind:imp:2s; +traitait traiter ver 104.05 69.93 2.74 10.34 ind:imp:3s; +traitant traiter ver 104.05 69.93 1.30 3.18 par:pre; +traitante traitant adj f s 0.34 0.41 0.00 0.07 +traitants traitant adj m p 0.34 0.41 0.01 0.07 +traitassent traiter ver 104.05 69.93 0.00 0.07 sub:imp:3p; +traite traiter ver 104.05 69.93 24.08 8.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +traitement traitement nom m s 29.23 14.66 25.44 11.08 +traitements traitement nom m p 29.23 14.66 3.79 3.58 +traitent traiter ver 104.05 69.93 3.95 1.15 ind:pre:3p;sub:pre:3p; +traiter traiter ver 104.05 69.93 25.23 20.27 ind:pre:2p;inf; +traitera traiter ver 104.05 69.93 1.15 0.27 ind:fut:3s; +traiterai traiter ver 104.05 69.93 0.51 0.14 ind:fut:1s; +traiteraient traiter ver 104.05 69.93 0.09 0.14 cnd:pre:3p; +traiterais traiter ver 104.05 69.93 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +traiterait traiter ver 104.05 69.93 0.39 0.81 cnd:pre:3s; +traiteras traiter ver 104.05 69.93 0.25 0.00 ind:fut:2s; +traiterez traiter ver 104.05 69.93 0.32 0.00 ind:fut:2p; +traiteriez traiter ver 104.05 69.93 0.10 0.00 cnd:pre:2p; +traiterons traiter ver 104.05 69.93 0.20 0.00 ind:fut:1p; +traiteront traiter ver 104.05 69.93 0.49 0.27 ind:fut:3p; +traites traiter ver 104.05 69.93 6.84 0.14 ind:pre:2s;sub:pre:2s; +traiteur traiteur nom m s 4.07 1.62 3.45 1.35 +traiteurs traiteur nom m p 4.07 1.62 0.62 0.27 +traitez traiter ver 104.05 69.93 6.09 0.74 imp:pre:2p;ind:pre:2p; +traitiez traiter ver 104.05 69.93 0.40 0.07 ind:imp:2p;sub:pre:2p; +traitions traiter ver 104.05 69.93 0.05 0.54 ind:imp:1p; +traitons traiter ver 104.05 69.93 1.16 0.14 imp:pre:1p;ind:pre:1p; +traitât traiter ver 104.05 69.93 0.00 0.54 sub:imp:3s; +traits trait nom m p 15.86 97.30 8.03 59.39 +traitèrent traiter ver 104.05 69.93 0.10 0.20 ind:pas:3p; +traité traiter ver m s 104.05 69.93 15.51 7.84 par:pas; +traitée traiter ver f s 104.05 69.93 6.87 3.99 par:pas; +traitées traiter ver f p 104.05 69.93 0.78 0.74 par:pas; +traités traiter ver m p 104.05 69.93 3.41 3.92 par:pas; +trajectographie trajectographie nom f s 0.02 0.00 0.02 0.00 +trajectoire trajectoire nom f s 5.90 6.42 5.53 5.54 +trajectoires trajectoire nom f p 5.90 6.42 0.37 0.88 +trajet trajet nom m s 7.74 16.69 7.23 14.66 +trajets trajet nom m p 7.74 16.69 0.51 2.03 +tralala tralala nom m s 1.10 1.55 1.09 1.28 +tralalas tralala nom m p 1.10 1.55 0.01 0.27 +tram tram nom m s 5.73 2.30 5.51 1.69 +tramaient tramer ver 3.06 3.31 0.01 0.54 ind:imp:3p; +tramail tramail nom m s 0.00 0.27 0.00 0.20 +tramails tramail nom m p 0.00 0.27 0.00 0.07 +tramait tramer ver 3.06 3.31 0.16 0.88 ind:imp:3s; +tramant tramer ver 3.06 3.31 0.00 0.27 par:pre; +trame tramer ver 3.06 3.31 2.36 1.08 ind:pre:1s;ind:pre:3s; +trament tramer ver 3.06 3.31 0.10 0.00 ind:pre:3p; +tramer tramer ver 3.06 3.31 0.32 0.07 inf; +trames trame nom f p 0.75 5.41 0.32 0.14 +tramez tramer ver 3.06 3.31 0.03 0.00 imp:pre:2p;ind:pre:2p; +tramontane tramontane nom f s 0.14 0.34 0.14 0.27 +tramontanes tramontane nom f p 0.14 0.34 0.00 0.07 +tramp tramp nom m s 0.04 0.00 0.04 0.00 +trampoline trampoline nom s 1.17 0.14 1.17 0.14 +trams tram nom m p 5.73 2.30 0.22 0.61 +tramé tramer ver m s 3.06 3.31 0.06 0.41 par:pas; +tramés tramer ver m p 3.06 3.31 0.00 0.07 par:pas; +tramway tramway nom m s 0.17 7.64 0.17 5.54 +tramways tramway nom m p 0.17 7.64 0.00 2.09 +trancha trancher ver 11.97 24.73 0.02 4.39 ind:pas:3s; +tranchage tranchage nom m s 0.01 0.07 0.01 0.07 +tranchai trancher ver 11.97 24.73 0.01 0.07 ind:pas:1s; +tranchaient trancher ver 11.97 24.73 0.01 0.95 ind:imp:3p; +tranchais trancher ver 11.97 24.73 0.23 0.00 ind:imp:1s; +tranchait trancher ver 11.97 24.73 0.05 2.43 ind:imp:3s; +tranchant tranchant adj m s 2.54 5.27 1.49 2.43 +tranchante tranchant adj f s 2.54 5.27 0.62 1.96 +tranchantes tranchant adj f p 2.54 5.27 0.23 0.41 +tranchants tranchant adj m p 2.54 5.27 0.20 0.47 +tranche_montagne tranche_montagne nom m s 0.28 0.07 0.28 0.07 +tranche tranche nom f s 6.95 21.82 5.28 11.08 +tranchecaille tranchecaille nom f s 0.00 0.07 0.00 0.07 +tranchelards tranchelard nom m p 0.00 0.07 0.00 0.07 +tranchent trancher ver 11.97 24.73 0.18 0.81 ind:pre:3p; +trancher trancher ver 11.97 24.73 3.88 5.07 inf; +tranchera trancher ver 11.97 24.73 0.26 0.14 ind:fut:3s; +trancherai trancher ver 11.97 24.73 0.23 0.20 ind:fut:1s; +trancherais trancher ver 11.97 24.73 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +trancherait trancher ver 11.97 24.73 0.17 0.27 cnd:pre:3s; +trancheras trancher ver 11.97 24.73 0.16 0.00 ind:fut:2s; +trancheront trancher ver 11.97 24.73 0.06 0.00 ind:fut:3p; +tranches tranche nom f p 6.95 21.82 1.68 10.74 +tranchet tranchet nom m s 0.00 0.27 0.00 0.20 +tranchets tranchet nom m p 0.00 0.27 0.00 0.07 +trancheur trancheur nom m s 0.19 0.00 0.15 0.00 +trancheuse trancheur nom f s 0.19 0.00 0.04 0.00 +tranchez trancher ver 11.97 24.73 0.24 0.00 imp:pre:2p; +tranchiez trancher ver 11.97 24.73 0.01 0.00 ind:imp:2p; +tranchoir tranchoir nom m s 0.03 0.34 0.01 0.14 +tranchoirs tranchoir nom m p 0.03 0.34 0.01 0.20 +tranchons trancher ver 11.97 24.73 0.06 0.14 imp:pre:1p;ind:pre:1p; +tranchât trancher ver 11.97 24.73 0.00 0.14 sub:imp:3s; +tranchèrent trancher ver 11.97 24.73 0.03 0.00 ind:pas:3p; +tranché trancher ver m s 11.97 24.73 2.51 2.91 par:pas; +tranchée_abri tranchée_abri nom f s 0.00 0.81 0.00 0.74 +tranchée tranchée nom f s 6.22 33.72 3.70 21.55 +tranchée_abri tranchée_abri nom f p 0.00 0.81 0.00 0.07 +tranchées tranchée nom f p 6.22 33.72 2.52 12.16 +tranchés tranché adj m p 2.13 3.72 0.05 0.34 +tranquille tranquille adj s 119.69 91.96 103.28 77.50 +tranquillement tranquillement adv 13.26 26.82 13.26 26.82 +tranquilles tranquille adj p 119.69 91.96 16.41 14.46 +tranquillisa tranquilliser ver 1.22 2.09 0.00 0.07 ind:pas:3s; +tranquillisai tranquilliser ver 1.22 2.09 0.01 0.07 ind:pas:1s; +tranquillisaient tranquilliser ver 1.22 2.09 0.00 0.07 ind:imp:3p; +tranquillisait tranquilliser ver 1.22 2.09 0.01 0.34 ind:imp:3s; +tranquillisant tranquillisant nom m s 2.33 1.01 0.86 0.14 +tranquillisante tranquillisant adj f s 0.51 0.20 0.17 0.07 +tranquillisantes tranquillisant adj f p 0.51 0.20 0.06 0.00 +tranquillisants tranquillisant nom m p 2.33 1.01 1.46 0.88 +tranquillise tranquilliser ver 1.22 2.09 0.31 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tranquillisent tranquilliser ver 1.22 2.09 0.01 0.07 ind:pre:3p; +tranquilliser tranquilliser ver 1.22 2.09 0.65 0.20 inf; +tranquillisera tranquilliser ver 1.22 2.09 0.11 0.00 ind:fut:3s; +tranquilliserait tranquilliser ver 1.22 2.09 0.01 0.07 cnd:pre:3s; +tranquillises tranquilliser ver 1.22 2.09 0.01 0.07 ind:pre:2s; +tranquillisez tranquilliser ver 1.22 2.09 0.01 0.14 imp:pre:2p;ind:pre:2p; +tranquillisé tranquilliser ver m s 1.22 2.09 0.03 0.14 par:pas; +tranquillisée tranquilliser ver f s 1.22 2.09 0.03 0.47 par:pas; +tranquillisés tranquilliser ver m p 1.22 2.09 0.00 0.14 par:pas; +tranquillité tranquillité nom f s 4.68 11.01 4.68 10.81 +tranquillités tranquillité nom f p 4.68 11.01 0.00 0.20 +tranquillos tranquillos adv 0.00 0.81 0.00 0.81 +trans trans adv 0.16 0.00 0.16 0.00 +transaction transaction nom f s 4.47 1.28 3.26 0.34 +transactionnelle transactionnel adj f s 0.00 0.07 0.00 0.07 +transactions transaction nom f p 4.47 1.28 1.21 0.95 +transafricain transafricain adj m s 0.00 0.07 0.00 0.07 +transalpines transalpin adj f p 0.00 0.07 0.00 0.07 +transamazonienne transamazonien adj f s 0.00 0.14 0.00 0.14 +transaminase transaminase nom f s 0.03 0.07 0.01 0.00 +transaminases transaminase nom f p 0.03 0.07 0.01 0.07 +transat transat nom s 0.31 1.49 0.16 0.88 +transatlantique transatlantique nom m s 0.19 2.50 0.19 2.09 +transatlantiques transatlantique adj p 0.12 1.01 0.05 0.34 +transats transat nom p 0.31 1.49 0.15 0.61 +transbahutaient transbahuter ver 0.04 1.42 0.00 0.07 ind:imp:3p; +transbahutant transbahuter ver 0.04 1.42 0.01 0.34 par:pre; +transbahute transbahuter ver 0.04 1.42 0.00 0.14 ind:pre:3s; +transbahutent transbahuter ver 0.04 1.42 0.00 0.07 ind:pre:3p; +transbahuter transbahuter ver 0.04 1.42 0.03 0.27 inf; +transbahutez transbahuter ver 0.04 1.42 0.00 0.07 ind:pre:2p; +transbahuté transbahuter ver m s 0.04 1.42 0.00 0.34 par:pas; +transbahutée transbahuter ver f s 0.04 1.42 0.00 0.07 par:pas; +transbahutés transbahuter ver m p 0.04 1.42 0.00 0.07 par:pas; +transbordement transbordement nom m s 0.06 0.61 0.06 0.41 +transbordements transbordement nom m p 0.06 0.61 0.00 0.20 +transborder transborder ver 0.02 0.14 0.01 0.07 inf; +transbordeur transbordeur nom m s 0.04 0.20 0.04 0.20 +transbordé transborder ver m s 0.02 0.14 0.01 0.07 par:pas; +transcanadienne transcanadienne adj f s 0.03 0.00 0.03 0.00 +transcaspien transcaspien adj m s 0.00 0.07 0.00 0.07 +transcendance transcendance nom f s 0.04 0.61 0.04 0.61 +transcendant transcendant adj m s 0.33 0.68 0.13 0.41 +transcendantal transcendantal adj m s 0.08 0.95 0.00 0.54 +transcendantale transcendantal adj f s 0.08 0.95 0.08 0.34 +transcendantales transcendantal adj f p 0.08 0.95 0.00 0.07 +transcendantalistes transcendantaliste nom p 0.01 0.07 0.01 0.07 +transcendante transcendant adj f s 0.33 0.68 0.15 0.27 +transcendantes transcendant adj f p 0.33 0.68 0.03 0.00 +transcendants transcendant adj m p 0.33 0.68 0.02 0.00 +transcende transcender ver 2.83 0.61 0.46 0.14 imp:pre:2s;ind:pre:3s; +transcendent transcender ver 2.83 0.61 1.84 0.00 ind:pre:3p; +transcender transcender ver 2.83 0.61 0.29 0.20 inf; +transcendons transcender ver 2.83 0.61 0.01 0.00 imp:pre:1p; +transcendé transcender ver m s 2.83 0.61 0.18 0.14 par:pas; +transcendée transcender ver f s 2.83 0.61 0.01 0.07 par:pas; +transcontinental transcontinental adj m s 0.13 0.07 0.09 0.07 +transcontinentale transcontinental adj f s 0.13 0.07 0.05 0.00 +transcriptase transcriptase nom f s 0.12 0.00 0.12 0.00 +transcripteur transcripteur nom m s 0.01 0.00 0.01 0.00 +transcription transcription nom f s 1.24 1.15 0.84 1.08 +transcriptions transcription nom f p 1.24 1.15 0.40 0.07 +transcrire transcrire ver 0.71 3.51 0.35 0.88 inf; +transcris transcrire ver 0.71 3.51 0.01 0.41 imp:pre:2s;ind:pre:1s; +transcrit transcrire ver m s 0.71 3.51 0.24 0.61 ind:pre:3s;par:pas; +transcrite transcrire ver f s 0.71 3.51 0.02 0.20 par:pas; +transcrites transcrire ver f p 0.71 3.51 0.01 0.14 par:pas; +transcrits transcrire ver m p 0.71 3.51 0.01 0.27 par:pas; +transcrivaient transcrire ver 0.71 3.51 0.00 0.07 ind:imp:3p; +transcrivais transcrire ver 0.71 3.51 0.02 0.07 ind:imp:1s; +transcrivait transcrire ver 0.71 3.51 0.00 0.47 ind:imp:3s; +transcrivant transcrire ver 0.71 3.51 0.00 0.20 par:pre; +transcrive transcrire ver 0.71 3.51 0.01 0.07 sub:pre:1s; +transcrivez transcrire ver 0.71 3.51 0.03 0.00 imp:pre:2p;ind:pre:2p; +transcrivis transcrire ver 0.71 3.51 0.00 0.07 ind:pas:1s; +transcrivit transcrire ver 0.71 3.51 0.00 0.07 ind:pas:3s; +transcutané transcutané adj m s 0.03 0.00 0.03 0.00 +transdermique transdermique adj f s 0.01 0.00 0.01 0.00 +transducteur transducteur nom m s 0.06 0.00 0.04 0.00 +transducteurs transducteur nom m p 0.06 0.00 0.02 0.00 +transduction transduction nom f s 0.03 0.00 0.03 0.00 +transe transe nom f s 2.49 5.14 2.41 3.51 +transept transept nom m s 0.01 1.01 0.00 0.88 +transepts transept nom m p 0.01 1.01 0.01 0.14 +transes transe nom f p 2.49 5.14 0.08 1.62 +transfert transfert nom m s 11.07 3.85 10.14 3.31 +transferts transfert nom m p 11.07 3.85 0.94 0.54 +transfigura transfigurer ver 0.28 5.07 0.00 0.14 ind:pas:3s; +transfiguraient transfigurer ver 0.28 5.07 0.00 0.14 ind:imp:3p; +transfigurait transfigurer ver 0.28 5.07 0.00 1.01 ind:imp:3s; +transfigurant transfigurer ver 0.28 5.07 0.10 0.14 par:pre; +transfiguration transfiguration nom f s 0.25 0.88 0.25 0.81 +transfigurations transfiguration nom f p 0.25 0.88 0.00 0.07 +transfiguratrice transfigurateur nom f s 0.00 0.07 0.00 0.07 +transfigure transfigurer ver 0.28 5.07 0.01 0.47 imp:pre:2s;ind:pre:3s; +transfigurent transfigurer ver 0.28 5.07 0.00 0.27 ind:pre:3p; +transfigurer transfigurer ver 0.28 5.07 0.00 0.47 inf; +transfigurerait transfigurer ver 0.28 5.07 0.00 0.07 cnd:pre:3s; +transfigurez transfigurer ver 0.28 5.07 0.14 0.00 imp:pre:2p; +transfiguré transfigurer ver m s 0.28 5.07 0.01 1.35 par:pas; +transfigurée transfigurer ver f s 0.28 5.07 0.01 0.61 par:pas; +transfigurées transfigurer ver f p 0.28 5.07 0.00 0.14 par:pas; +transfigurés transfigurer ver m p 0.28 5.07 0.02 0.27 par:pas; +transfilaient transfiler ver 0.00 0.14 0.00 0.07 ind:imp:3p; +transfilée transfiler ver f s 0.00 0.14 0.00 0.07 par:pas; +transfo transfo nom m s 0.34 0.00 0.24 0.00 +transforma transformer ver 42.14 60.68 0.50 3.11 ind:pas:3s; +transformable transformable adj s 0.01 0.14 0.01 0.14 +transformai transformer ver 42.14 60.68 0.01 0.34 ind:pas:1s; +transformaient transformer ver 42.14 60.68 0.35 2.77 ind:imp:3p; +transformais transformer ver 42.14 60.68 0.13 0.14 ind:imp:1s;ind:imp:2s; +transformait transformer ver 42.14 60.68 0.67 7.36 ind:imp:3s; +transformant transformer ver 42.14 60.68 0.77 1.89 par:pre; +transformas transformer ver 42.14 60.68 0.00 0.07 ind:pas:2s; +transformateur transformateur nom m s 0.64 0.47 0.43 0.34 +transformateurs transformateur nom m p 0.64 0.47 0.22 0.14 +transformation transformation nom f s 4.48 6.22 3.12 4.39 +transformations transformation nom f p 4.48 6.22 1.36 1.82 +transformatrice transformateur adj f s 0.11 0.14 0.01 0.00 +transforme transformer ver 42.14 60.68 9.38 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +transforment transformer ver 42.14 60.68 1.76 1.82 ind:pre:3p; +transformer transformer ver 42.14 60.68 11.79 13.99 inf; +transformera transformer ver 42.14 60.68 0.66 0.34 ind:fut:3s; +transformerai transformer ver 42.14 60.68 0.42 0.00 ind:fut:1s; +transformeraient transformer ver 42.14 60.68 0.05 0.14 cnd:pre:3p; +transformerais transformer ver 42.14 60.68 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +transformerait transformer ver 42.14 60.68 0.15 0.54 cnd:pre:3s; +transformeras transformer ver 42.14 60.68 0.05 0.07 ind:fut:2s; +transformeriez transformer ver 42.14 60.68 0.04 0.00 cnd:pre:2p; +transformerons transformer ver 42.14 60.68 0.04 0.00 ind:fut:1p; +transformeront transformer ver 42.14 60.68 0.34 0.14 ind:fut:3p; +transformes transformer ver 42.14 60.68 0.70 0.14 ind:pre:2s; +transformez transformer ver 42.14 60.68 0.99 0.14 imp:pre:2p;ind:pre:2p; +transformiez transformer ver 42.14 60.68 0.04 0.00 ind:imp:2p; +transformiste transformiste nom s 0.19 0.00 0.19 0.00 +transformons transformer ver 42.14 60.68 0.23 0.07 imp:pre:1p;ind:pre:1p; +transformât transformer ver 42.14 60.68 0.00 0.34 sub:imp:3s; +transformèrent transformer ver 42.14 60.68 0.03 0.27 ind:pas:3p; +transformé transformer ver m s 42.14 60.68 8.41 10.20 par:pas; +transformée transformer ver f s 42.14 60.68 2.50 6.69 par:pas; +transformées transformer ver f p 42.14 60.68 0.36 1.49 par:pas; +transformés transformer ver m p 42.14 60.68 1.74 1.89 par:pas; +transfos transfo nom m p 0.34 0.00 0.10 0.00 +transfère transférer ver 18.40 5.20 2.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transfèrement transfèrement nom m s 0.00 0.27 0.00 0.14 +transfèrements transfèrement nom m p 0.00 0.27 0.00 0.14 +transfèrent transférer ver 18.40 5.20 0.34 0.00 ind:pre:3p; +transfuge transfuge nom m s 0.60 1.15 0.41 0.47 +transfuges transfuge nom m p 0.60 1.15 0.20 0.68 +transféra transférer ver 18.40 5.20 0.02 0.00 ind:pas:3s; +transférable transférable adj s 0.02 0.00 0.02 0.00 +transféraient transférer ver 18.40 5.20 0.01 0.07 ind:imp:3p; +transférais transférer ver 18.40 5.20 0.01 0.07 ind:imp:1s;ind:imp:2s; +transférait transférer ver 18.40 5.20 0.09 0.27 ind:imp:3s; +transférant transférer ver 18.40 5.20 0.09 0.07 par:pre; +transférer transférer ver 18.40 5.20 4.67 0.88 inf; +transférera transférer ver 18.40 5.20 0.05 0.00 ind:fut:3s; +transférerai transférer ver 18.40 5.20 0.30 0.00 ind:fut:1s; +transférerait transférer ver 18.40 5.20 0.02 0.00 cnd:pre:3s; +transféreras transférer ver 18.40 5.20 0.01 0.00 ind:fut:2s; +transférerez transférer ver 18.40 5.20 0.01 0.00 ind:fut:2p; +transférerons transférer ver 18.40 5.20 0.11 0.00 ind:fut:1p; +transféreront transférer ver 18.40 5.20 0.05 0.00 ind:fut:3p; +transférez transférer ver 18.40 5.20 0.80 0.00 imp:pre:2p;ind:pre:2p; +transfériez transférer ver 18.40 5.20 0.03 0.00 ind:imp:2p; +transférâmes transférer ver 18.40 5.20 0.00 0.07 ind:pas:1p; +transférons transférer ver 18.40 5.20 0.20 0.00 imp:pre:1p;ind:pre:1p; +transférèrent transférer ver 18.40 5.20 0.01 0.07 ind:pas:3p; +transféré transférer ver m s 18.40 5.20 6.51 2.09 par:pas; +transférée transférer ver f s 18.40 5.20 1.69 0.88 par:pas; +transférées transférer ver f p 18.40 5.20 0.28 0.07 par:pas; +transférés transférer ver m p 18.40 5.20 1.03 0.41 par:pas; +transfusait transfuser ver 0.33 0.54 0.01 0.14 ind:imp:3s; +transfuse transfuser ver 0.33 0.54 0.06 0.00 imp:pre:2s;ind:pre:3s; +transfuser transfuser ver 0.33 0.54 0.23 0.34 inf; +transfuseur transfuseur nom m s 0.01 0.00 0.01 0.00 +transfusion transfusion nom f s 2.37 1.82 2.02 1.42 +transfusions transfusion nom f p 2.37 1.82 0.35 0.41 +transfusé transfuser ver m s 0.33 0.54 0.03 0.00 par:pas; +transfusée transfusé nom f s 0.01 0.00 0.01 0.00 +transfusés transfuser ver m p 0.33 0.54 0.00 0.07 par:pas; +transgressait transgresser ver 1.58 1.28 0.00 0.14 ind:imp:3s; +transgresse transgresser ver 1.58 1.28 0.12 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transgressent transgresser ver 1.58 1.28 0.04 0.00 ind:pre:3p; +transgresser transgresser ver 1.58 1.28 0.87 0.61 inf; +transgresseur transgresseur nom m s 0.04 0.00 0.04 0.00 +transgressez transgresser ver 1.58 1.28 0.14 0.00 ind:pre:2p; +transgression transgression nom f s 0.95 1.28 0.56 1.08 +transgressions transgression nom f p 0.95 1.28 0.39 0.20 +transgressons transgresser ver 1.58 1.28 0.01 0.07 imp:pre:1p;ind:pre:1p; +transgressé transgresser ver m s 1.58 1.28 0.28 0.27 par:pas; +transgressée transgresser ver f s 1.58 1.28 0.04 0.07 par:pas; +transgressées transgresser ver f p 1.58 1.28 0.07 0.07 par:pas; +transgénique transgénique adj s 0.37 0.00 0.20 0.00 +transgéniques transgénique adj p 0.37 0.00 0.17 0.00 +transhistorique transhistorique adj s 0.00 0.07 0.00 0.07 +transhumait transhumer ver 0.01 0.07 0.00 0.07 ind:imp:3s; +transhumance transhumance nom f s 0.01 0.14 0.01 0.07 +transhumances transhumance nom f p 0.01 0.14 0.00 0.07 +transhumant transhumant adj m s 0.00 0.20 0.00 0.07 +transhumantes transhumant adj f p 0.00 0.20 0.00 0.07 +transhumants transhumant adj m p 0.00 0.20 0.00 0.07 +transhumés transhumer ver m p 0.01 0.07 0.01 0.00 par:pas; +transi transi adj m s 0.53 3.85 0.40 2.43 +transie transi adj f s 0.53 3.85 0.10 0.27 +transies transir ver f p 0.17 2.43 0.02 0.27 par:pas; +transige transiger ver 0.64 1.42 0.08 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transigeait transiger ver 0.64 1.42 0.00 0.20 ind:imp:3s; +transigeant transiger ver 0.64 1.42 0.00 0.07 par:pre; +transigent transiger ver 0.64 1.42 0.00 0.07 ind:pre:3p; +transigeons transiger ver 0.64 1.42 0.02 0.00 imp:pre:1p; +transiger transiger ver 0.64 1.42 0.46 0.74 inf; +transigera transiger ver 0.64 1.42 0.01 0.07 ind:fut:3s; +transigerai transiger ver 0.64 1.42 0.00 0.07 ind:fut:1s; +transigé transiger ver m s 0.64 1.42 0.07 0.20 par:pas; +transillumination transillumination nom f s 0.01 0.00 0.01 0.00 +transir transir ver 0.17 2.43 0.00 0.14 inf; +transis transi adj m p 0.53 3.85 0.02 1.01 +transistor transistor nom m s 1.00 5.07 0.62 3.99 +transistorisées transistorisé adj f p 0.01 0.07 0.00 0.07 +transistorisés transistorisé adj m p 0.01 0.07 0.01 0.00 +transistors transistor nom m p 1.00 5.07 0.38 1.08 +transit transit nom m s 1.64 2.64 1.62 2.50 +transitaient transiter ver 0.44 1.35 0.00 0.14 ind:imp:3p; +transitaire transitaire adj f s 0.04 0.07 0.04 0.00 +transitaires transitaire adj p 0.04 0.07 0.00 0.07 +transitaires transitaire nom p 0.00 0.07 0.00 0.07 +transitais transiter ver 0.44 1.35 0.00 0.07 ind:imp:1s; +transitait transiter ver 0.44 1.35 0.00 0.20 ind:imp:3s; +transitant transiter ver 0.44 1.35 0.00 0.14 par:pre; +transite transiter ver 0.44 1.35 0.08 0.07 imp:pre:2s;ind:pre:3s; +transitent transiter ver 0.44 1.35 0.04 0.00 ind:pre:3p; +transiter transiter ver 0.44 1.35 0.22 0.41 inf; +transitif transitif adj m s 0.04 0.14 0.01 0.14 +transitifs transitif adj m p 0.04 0.14 0.02 0.00 +transition transition nom f s 3.68 8.78 3.45 7.57 +transitionnel transitionnel adj m s 0.04 0.00 0.03 0.00 +transitionnelle transitionnel adj f s 0.04 0.00 0.01 0.00 +transitions transition nom f p 3.68 8.78 0.23 1.22 +transitoire transitoire adj s 0.41 1.42 0.39 1.01 +transitoirement transitoirement adv 0.01 0.00 0.01 0.00 +transitoires transitoire adj f p 0.41 1.42 0.02 0.41 +transits transit nom m p 1.64 2.64 0.03 0.14 +transité transiter ver m s 0.44 1.35 0.10 0.34 par:pas; +translater translater ver 0.01 0.07 0.01 0.00 inf; +translates translater ver 0.01 0.07 0.00 0.07 ind:pre:2s; +translation translation nom f s 0.60 0.47 0.60 0.41 +translations translation nom f p 0.60 0.47 0.00 0.07 +translocation translocation nom f s 0.01 0.00 0.01 0.00 +translucide translucide adj s 0.84 5.88 0.81 4.26 +translucides translucide adj p 0.84 5.88 0.03 1.62 +translucidité translucidité nom f s 0.00 0.14 0.00 0.14 +transmet transmettre ver 25.09 24.39 3.00 2.09 ind:pre:3s; +transmets transmettre ver 25.09 24.39 1.75 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +transmettaient transmettre ver 25.09 24.39 0.03 0.95 ind:imp:3p; +transmettais transmettre ver 25.09 24.39 0.03 0.14 ind:imp:1s; +transmettait transmettre ver 25.09 24.39 0.05 1.89 ind:imp:3s; +transmettant transmettre ver 25.09 24.39 0.32 0.54 par:pre; +transmette transmettre ver 25.09 24.39 0.31 0.27 sub:pre:1s;sub:pre:3s; +transmettent transmettre ver 25.09 24.39 0.75 0.88 ind:pre:3p; +transmetteur transmetteur nom m s 1.83 0.00 1.62 0.00 +transmetteurs transmetteur nom m p 1.83 0.00 0.21 0.00 +transmettez transmettre ver 25.09 24.39 1.61 0.20 imp:pre:2p;ind:pre:2p; +transmettions transmettre ver 25.09 24.39 0.00 0.07 ind:imp:1p; +transmettons transmettre ver 25.09 24.39 0.43 0.00 imp:pre:1p;ind:pre:1p; +transmettra transmettre ver 25.09 24.39 0.74 0.07 ind:fut:3s; +transmettrai transmettre ver 25.09 24.39 1.53 0.20 ind:fut:1s; +transmettrait transmettre ver 25.09 24.39 0.04 0.14 cnd:pre:3s; +transmettras transmettre ver 25.09 24.39 0.07 0.07 ind:fut:2s; +transmettre transmettre ver 25.09 24.39 7.79 7.70 inf; +transmettrez transmettre ver 25.09 24.39 0.12 0.07 ind:fut:2p; +transmettrons transmettre ver 25.09 24.39 0.21 0.00 ind:fut:1p; +transmettront transmettre ver 25.09 24.39 0.08 0.07 ind:fut:3p; +transmigrait transmigrer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +transmigration transmigration nom f s 0.05 0.14 0.05 0.14 +transmigrent transmigrer ver 0.00 0.14 0.00 0.07 ind:pre:3p; +transmirent transmettre ver 25.09 24.39 0.00 0.14 ind:pas:3p; +transmis transmettre ver m 25.09 24.39 5.25 5.27 par:pas; +transmise transmettre ver f s 25.09 24.39 0.61 1.49 par:pas; +transmises transmettre ver f p 25.09 24.39 0.34 1.22 par:pas; +transmissible transmissible adj s 0.39 0.41 0.19 0.34 +transmissibles transmissible adj f p 0.39 0.41 0.20 0.07 +transmission transmission nom f s 9.63 6.55 7.63 3.24 +transmissions transmission nom f p 9.63 6.55 1.99 3.31 +transmit transmettre ver 25.09 24.39 0.04 0.88 ind:pas:3s; +transmuait transmuer ver 0.11 0.54 0.00 0.07 ind:imp:3s; +transmuer transmuer ver 0.11 0.54 0.11 0.00 inf; +transmutait transmuter ver 0.16 0.41 0.01 0.14 ind:imp:3s; +transmutant transmuter ver 0.16 0.41 0.01 0.00 par:pre; +transmutation transmutation nom f s 0.15 1.35 0.10 1.22 +transmutations transmutation nom f p 0.15 1.35 0.05 0.14 +transmute transmuter ver 0.16 0.41 0.01 0.14 ind:pre:1s;ind:pre:3s; +transmutent transmuter ver 0.16 0.41 0.00 0.07 ind:pre:3p; +transmuter transmuter ver 0.16 0.41 0.01 0.00 inf; +transmuté transmuter ver m s 0.16 0.41 0.11 0.07 par:pas; +transmué transmuer ver m s 0.11 0.54 0.00 0.07 par:pas; +transmuée transmuer ver f s 0.11 0.54 0.00 0.20 par:pas; +transmuées transmuer ver f p 0.11 0.54 0.00 0.07 par:pas; +transmués transmuer ver m p 0.11 0.54 0.00 0.14 par:pas; +transnational transnational adj m s 0.02 0.00 0.01 0.00 +transnationaux transnational adj m p 0.02 0.00 0.01 0.00 +transocéanique transocéanique adj s 0.01 0.07 0.01 0.00 +transocéaniques transocéanique adj m p 0.01 0.07 0.00 0.07 +transparaît transparaître ver 0.44 3.72 0.13 0.68 ind:pre:3s; +transparaître transparaître ver 0.44 3.72 0.19 1.15 inf; +transparaissaient transparaître ver 0.44 3.72 0.00 0.07 ind:imp:3p; +transparaissait transparaître ver 0.44 3.72 0.01 1.42 ind:imp:3s; +transparaisse transparaître ver 0.44 3.72 0.11 0.07 sub:pre:3s; +transparaissent transparaître ver 0.44 3.72 0.00 0.34 ind:pre:3p; +transparence transparence nom f s 1.64 11.35 1.59 10.68 +transparences transparence nom f p 1.64 11.35 0.05 0.68 +transparent transparent adj m s 5.48 30.81 2.66 11.89 +transparente transparent adj f s 5.48 30.81 1.69 12.23 +transparentes transparent adj f p 5.48 30.81 0.69 3.92 +transparents transparent adj m p 5.48 30.81 0.45 2.77 +transperce transpercer ver 4.42 8.11 0.82 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transpercent transpercer ver 4.42 8.11 0.05 0.41 ind:pre:3p; +transpercer transpercer ver 4.42 8.11 0.73 0.95 inf; +transpercerai transpercer ver 4.42 8.11 0.13 0.00 ind:fut:1s; +transpercerait transpercer ver 4.42 8.11 0.03 0.07 cnd:pre:3s; +transpercez transpercer ver 4.42 8.11 0.15 0.00 imp:pre:2p;ind:pre:2p; +transpercèrent transpercer ver 4.42 8.11 0.00 0.07 ind:pas:3p; +transpercé transpercer ver m s 4.42 8.11 1.63 2.09 par:pas; +transpercée transpercer ver f s 4.42 8.11 0.32 1.08 par:pas; +transpercées transpercer ver f p 4.42 8.11 0.01 0.14 par:pas; +transpercés transpercer ver m p 4.42 8.11 0.06 0.27 par:pas; +transperça transpercer ver 4.42 8.11 0.35 0.54 ind:pas:3s; +transperçaient transpercer ver 4.42 8.11 0.01 0.41 ind:imp:3p; +transperçait transpercer ver 4.42 8.11 0.02 0.61 ind:imp:3s; +transperçant transpercer ver 4.42 8.11 0.10 0.07 par:pre; +transpira transpirer ver 7.75 10.74 0.00 0.27 ind:pas:3s; +transpiraient transpirer ver 7.75 10.74 0.12 0.47 ind:imp:3p; +transpirais transpirer ver 7.75 10.74 0.10 0.34 ind:imp:1s;ind:imp:2s; +transpirait transpirer ver 7.75 10.74 0.10 3.51 ind:imp:3s; +transpirant transpirer ver 7.75 10.74 0.10 1.01 par:pre; +transpirante transpirant adj f s 0.07 0.61 0.00 0.07 +transpirants transpirant adj m p 0.07 0.61 0.02 0.07 +transpiration transpiration nom f s 0.75 3.24 0.75 3.24 +transpire transpirer ver 7.75 10.74 2.52 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transpirent transpirer ver 7.75 10.74 0.25 0.27 ind:pre:3p; +transpirer transpirer ver 7.75 10.74 1.94 1.96 inf; +transpirera transpirer ver 7.75 10.74 0.18 0.00 ind:fut:3s; +transpirerait transpirer ver 7.75 10.74 0.00 0.07 cnd:pre:3s; +transpires transpirer ver 7.75 10.74 0.84 0.14 ind:pre:2s; +transpirez transpirer ver 7.75 10.74 0.80 0.07 imp:pre:2p;ind:pre:2p; +transpiré transpirer ver m s 7.75 10.74 0.79 0.20 par:pas; +transplantable transplantable adj m s 0.00 0.07 0.00 0.07 +transplantait transplanter ver 0.20 1.08 0.01 0.07 ind:imp:3s; +transplantation transplantation nom f s 2.85 0.20 2.04 0.14 +transplantations transplantation nom f p 2.85 0.20 0.81 0.07 +transplante transplanter ver 0.20 1.08 0.03 0.07 ind:pre:3s; +transplanter transplanter ver 0.20 1.08 0.05 0.34 inf; +transplantons transplanter ver 0.20 1.08 0.01 0.00 ind:pre:1p; +transplants transplant nom m p 0.02 0.00 0.02 0.00 +transplanté transplanter ver m s 0.20 1.08 0.04 0.27 par:pas; +transplantée transplanter ver f s 0.20 1.08 0.03 0.27 par:pas; +transplantées transplanté adj f p 0.07 0.34 0.00 0.07 +transplantés transplanter ver m p 0.20 1.08 0.04 0.07 par:pas; +transpondeur transpondeur nom m s 0.97 0.00 0.97 0.00 +transport transport nom m s 20.34 22.16 13.06 14.12 +transporta transporter ver 22.06 40.88 0.22 1.96 ind:pas:3s; +transportable transportable adj s 0.52 0.61 0.41 0.47 +transportables transportable adj m p 0.52 0.61 0.11 0.14 +transportai transporter ver 22.06 40.88 0.00 0.20 ind:pas:1s; +transportaient transporter ver 22.06 40.88 0.43 1.76 ind:imp:3p; +transportais transporter ver 22.06 40.88 0.21 0.68 ind:imp:1s;ind:imp:2s; +transportait transporter ver 22.06 40.88 1.28 4.86 ind:imp:3s; +transportant transporter ver 22.06 40.88 1.18 1.69 par:pre; +transportation transportation nom f s 0.07 0.00 0.07 0.00 +transporte transporter ver 22.06 40.88 3.56 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +transportent transporter ver 22.06 40.88 0.59 1.28 ind:pre:3p;sub:pre:3p; +transporter transporter ver 22.06 40.88 7.31 10.34 inf; +transportera transporter ver 22.06 40.88 0.16 0.34 ind:fut:3s; +transporteraient transporter ver 22.06 40.88 0.00 0.20 cnd:pre:3p; +transporterais transporter ver 22.06 40.88 0.02 0.07 cnd:pre:1s; +transporterait transporter ver 22.06 40.88 0.01 0.20 cnd:pre:3s; +transporterons transporter ver 22.06 40.88 0.00 0.07 ind:fut:1p; +transporteur transporteur nom m s 2.46 0.74 2.20 0.41 +transporteurs transporteur nom m p 2.46 0.74 0.26 0.34 +transporteuse transporteur adj f s 0.50 0.20 0.01 0.00 +transportez transporter ver 22.06 40.88 1.43 0.54 imp:pre:2p;ind:pre:2p; +transportiez transporter ver 22.06 40.88 0.06 0.07 ind:imp:2p; +transportions transporter ver 22.06 40.88 0.04 0.20 ind:imp:1p; +transportâmes transporter ver 22.06 40.88 0.00 0.14 ind:pas:1p; +transportons transporter ver 22.06 40.88 0.44 0.00 imp:pre:1p;ind:pre:1p; +transportât transporter ver 22.06 40.88 0.00 0.14 sub:imp:3s; +transports transport nom m p 20.34 22.16 7.28 8.04 +transportèrent transporter ver 22.06 40.88 0.00 0.47 ind:pas:3p; +transporté transporter ver m s 22.06 40.88 3.59 6.62 par:pas; +transportée transporter ver f s 22.06 40.88 0.91 3.24 par:pas; +transportées transporter ver f p 22.06 40.88 0.24 1.15 par:pas; +transportés transporter ver m p 22.06 40.88 0.37 1.49 par:pas; +transposable transposable adj m s 0.00 0.14 0.00 0.07 +transposables transposable adj m p 0.00 0.14 0.00 0.07 +transposaient transposer ver 0.36 3.31 0.00 0.27 ind:imp:3p; +transposait transposer ver 0.36 3.31 0.00 0.41 ind:imp:3s; +transposant transposer ver 0.36 3.31 0.01 0.20 par:pre; +transpose transposer ver 0.36 3.31 0.00 0.41 imp:pre:2s;ind:pre:3s; +transposent transposer ver 0.36 3.31 0.00 0.07 ind:pre:3p; +transposer transposer ver 0.36 3.31 0.10 0.81 inf; +transposez transposer ver 0.36 3.31 0.02 0.07 imp:pre:2p;ind:pre:2p; +transposition transposition nom f s 0.41 0.61 0.31 0.34 +transpositions transposition nom f p 0.41 0.61 0.10 0.27 +transposon transposon nom m s 0.04 0.00 0.04 0.00 +transposons transposer ver 0.36 3.31 0.02 0.14 imp:pre:1p;ind:pre:1p;; +transposé transposer ver m s 0.36 3.31 0.08 0.41 par:pas; +transposée transposer ver f s 0.36 3.31 0.12 0.27 par:pas; +transposés transposer ver m p 0.36 3.31 0.01 0.27 par:pas; +transsaharienne transsaharien adj f s 0.00 0.07 0.00 0.07 +transsaharienne transsaharien nom f s 0.00 0.07 0.00 0.07 +transsexualisme transsexualisme nom m s 0.01 0.00 0.01 0.00 +transsexualité transsexualité nom f s 0.01 0.00 0.01 0.00 +transsexuel transsexuel adj m s 0.69 0.14 0.32 0.07 +transsexuelle transsexuel adj f s 0.69 0.14 0.12 0.00 +transsexuels transsexuel adj m p 0.69 0.14 0.26 0.07 +transsibérien transsibérien nom m s 0.11 0.07 0.11 0.07 +transsibérienne transsibérien adj f s 0.02 0.07 0.02 0.07 +transsubstantiation transsubstantiation nom f s 0.03 0.34 0.03 0.34 +transsudait transsuder ver 0.00 0.14 0.00 0.07 ind:imp:3s; +transsudant transsuder ver 0.00 0.14 0.00 0.07 par:pre; +transsudat transsudat nom m s 0.03 0.00 0.03 0.00 +transuranienne transuranien adj f s 0.01 0.00 0.01 0.00 +transvasait transvaser ver 0.31 0.61 0.00 0.20 ind:imp:3s; +transvase transvaser ver 0.31 0.61 0.14 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transvaser transvaser ver 0.31 0.61 0.06 0.14 inf; +transvasons transvaser ver 0.31 0.61 0.10 0.00 ind:pre:1p; +transvasèrent transvaser ver 0.31 0.61 0.00 0.07 ind:pas:3p; +transvasées transvaser ver f p 0.31 0.61 0.00 0.07 par:pas; +transversal transversal adj m s 0.28 2.70 0.06 0.20 +transversale transversal adj f s 0.28 2.70 0.13 1.62 +transversalement transversalement adv 0.01 0.07 0.01 0.07 +transversales transversal adj f p 0.28 2.70 0.08 0.81 +transversaux transversal adj m p 0.28 2.70 0.00 0.07 +transverse transverse adj f s 0.08 0.00 0.08 0.00 +transvestisme transvestisme nom m s 0.02 0.00 0.02 0.00 +transylvain transylvain adj m s 0.00 0.07 0.00 0.07 +transylvanienne transylvanien adj f s 0.01 0.00 0.01 0.00 +trappe trappe nom f s 5.18 6.49 4.86 5.41 +trappes trappe nom f p 5.18 6.49 0.32 1.08 +trappeur trappeur nom m s 1.65 2.03 1.00 1.35 +trappeurs trappeur nom m p 1.65 2.03 0.65 0.68 +trappiste trappiste nom m s 0.12 0.47 0.05 0.27 +trappistes trappiste nom m p 0.12 0.47 0.07 0.20 +trappon trappon nom m s 0.00 0.41 0.00 0.41 +trapèze trapèze nom m s 1.14 3.78 1.10 3.04 +trapèzes trapèze nom m p 1.14 3.78 0.04 0.74 +trapu trapu adj m s 0.42 9.05 0.39 4.86 +trapue trapu adj f s 0.42 9.05 0.02 1.76 +trapues trapu adj f p 0.42 9.05 0.01 0.81 +trapus trapu adj m p 0.42 9.05 0.00 1.62 +trapéziste trapéziste nom s 1.03 1.01 0.95 0.81 +trapézistes trapéziste nom p 1.03 1.01 0.08 0.20 +trapézoïdal trapézoïdal adj m s 0.02 0.68 0.02 0.14 +trapézoïdale trapézoïdal adj f s 0.02 0.68 0.00 0.27 +trapézoïdales trapézoïdal adj f p 0.02 0.68 0.00 0.20 +trapézoïdaux trapézoïdal adj m p 0.02 0.68 0.00 0.07 +trapézoïde trapézoïde adj s 0.08 0.00 0.08 0.00 +traqua traquer ver 13.97 14.39 0.01 0.07 ind:pas:3s; +traquaient traquer ver 13.97 14.39 0.38 0.68 ind:imp:3p; +traquais traquer ver 13.97 14.39 0.19 0.41 ind:imp:1s;ind:imp:2s; +traquait traquer ver 13.97 14.39 0.59 1.22 ind:imp:3s; +traquant traquer ver 13.97 14.39 0.28 0.47 par:pre; +traque traquer ver 13.97 14.39 2.53 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +traquenard traquenard nom m s 1.14 1.89 0.98 1.35 +traquenards traquenard nom m p 1.14 1.89 0.16 0.54 +traquent traquer ver 13.97 14.39 1.22 0.47 ind:pre:3p; +traquer traquer ver 13.97 14.39 3.04 1.96 inf; +traquera traquer ver 13.97 14.39 0.23 0.07 ind:fut:3s; +traquerai traquer ver 13.97 14.39 0.32 0.00 ind:fut:1s; +traquerais traquer ver 13.97 14.39 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +traquerait traquer ver 13.97 14.39 0.04 0.00 cnd:pre:3s; +traquerons traquer ver 13.97 14.39 0.04 0.00 ind:fut:1p; +traqueront traquer ver 13.97 14.39 0.17 0.00 ind:fut:3p; +traques traquer ver 13.97 14.39 0.67 0.00 ind:pre:2s; +traquet traquet nom m s 0.06 0.34 0.06 0.20 +traquets traquet nom m p 0.06 0.34 0.00 0.14 +traqueur traqueur nom m s 0.78 0.68 0.49 0.34 +traqueurs traqueur nom m p 0.78 0.68 0.29 0.27 +traqueuse traqueur nom f s 0.78 0.68 0.00 0.07 +traquez traquer ver 13.97 14.39 0.18 0.00 imp:pre:2p;ind:pre:2p; +traquiez traquer ver 13.97 14.39 0.04 0.00 ind:imp:2p; +traquions traquer ver 13.97 14.39 0.04 0.07 ind:imp:1p; +traquons traquer ver 13.97 14.39 0.12 0.00 imp:pre:1p;ind:pre:1p; +traquèrent traquer ver 13.97 14.39 0.02 0.00 ind:pas:3p; +traqué traquer ver m s 13.97 14.39 2.64 4.53 par:pas; +traquée traquer ver f s 13.97 14.39 0.34 1.49 par:pas; +traquées traquer ver f p 13.97 14.39 0.03 0.07 par:pas; +traqués traquer ver m p 13.97 14.39 0.67 1.82 par:pas; +traça tracer ver 10.49 42.36 0.00 2.36 ind:pas:3s; +traçabilité traçabilité nom f s 0.02 0.00 0.02 0.00 +traçage traçage nom m s 0.29 0.00 0.29 0.00 +traçai tracer ver 10.49 42.36 0.00 0.14 ind:pas:1s; +traçaient tracer ver 10.49 42.36 0.02 1.82 ind:imp:3p; +traçais tracer ver 10.49 42.36 0.03 0.41 ind:imp:1s; +traçait tracer ver 10.49 42.36 0.14 3.24 ind:imp:3s; +traçant tracer ver 10.49 42.36 0.15 2.30 par:pre; +traçante traçant adj f s 0.17 0.41 0.02 0.20 +traçantes traçant adj f p 0.17 0.41 0.15 0.20 +traçons tracer ver 10.49 42.36 0.11 0.00 ind:pre:1p; +traçât tracer ver 10.49 42.36 0.00 0.14 sub:imp:3s; +trattoria trattoria nom f s 0.19 0.41 0.19 0.34 +trattorias trattoria nom f p 0.19 0.41 0.00 0.07 +trauma trauma nom m s 4.69 0.47 4.44 0.47 +traumas trauma nom m p 4.69 0.47 0.25 0.00 +traumatique traumatique adj s 0.65 0.07 0.56 0.07 +traumatiques traumatique adj p 0.65 0.07 0.09 0.00 +traumatisant traumatisant adj m s 1.48 0.14 0.85 0.07 +traumatisante traumatisant adj f s 1.48 0.14 0.42 0.00 +traumatisantes traumatisant adj f p 1.48 0.14 0.14 0.07 +traumatisants traumatisant adj m p 1.48 0.14 0.07 0.00 +traumatise traumatiser ver 2.94 1.55 0.20 0.14 ind:pre:3s; +traumatiser traumatiser ver 2.94 1.55 0.24 0.14 inf; +traumatisme traumatisme nom m s 6.69 1.08 6.10 0.88 +traumatismes traumatisme nom m p 6.69 1.08 0.59 0.20 +traumatisé traumatiser ver m s 2.94 1.55 1.20 0.54 par:pas; +traumatisée traumatiser ver f s 2.94 1.55 0.78 0.47 par:pas; +traumatisées traumatiser ver f p 2.94 1.55 0.04 0.00 par:pas; +traumatisés traumatiser ver m p 2.94 1.55 0.43 0.27 par:pas; +traumatologie traumatologie nom f s 0.09 0.00 0.09 0.00 +traumatologique traumatologique adj m s 0.01 0.00 0.01 0.00 +traumatologue traumatologue nom s 0.02 0.00 0.02 0.00 +travail travail nom m s 389.83 263.45 367.43 223.99 +travailla travailler ver 479.48 202.70 0.56 2.09 ind:pas:3s; +travaillai travailler ver 479.48 202.70 0.08 0.27 ind:pas:1s; +travaillaient travailler ver 479.48 202.70 3.02 9.12 ind:imp:3p; +travaillais travailler ver 479.48 202.70 13.68 7.03 ind:imp:1s;ind:imp:2s; +travaillait travailler ver 479.48 202.70 24.57 27.84 ind:imp:3s; +travaillant travailler ver 479.48 202.70 5.39 6.42 par:pre; +travaillassent travailler ver 479.48 202.70 0.00 0.14 sub:imp:3p; +travaille travailler ver 479.48 202.70 149.22 35.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +travaillent travailler ver 479.48 202.70 18.51 8.18 ind:pre:3p; +travailler travailler ver 479.48 202.70 147.83 67.77 ind:pre:2p;inf; +travaillera travailler ver 479.48 202.70 2.11 0.74 ind:fut:3s; +travaillerai travailler ver 479.48 202.70 4.07 1.01 ind:fut:1s; +travailleraient travailler ver 479.48 202.70 0.05 0.20 cnd:pre:3p; +travaillerais travailler ver 479.48 202.70 1.06 0.41 cnd:pre:1s;cnd:pre:2s; +travaillerait travailler ver 479.48 202.70 0.64 1.28 cnd:pre:3s; +travailleras travailler ver 479.48 202.70 1.78 0.81 ind:fut:2s; +travaillerez travailler ver 479.48 202.70 1.12 0.14 ind:fut:2p; +travailleriez travailler ver 479.48 202.70 0.24 0.07 cnd:pre:2p; +travaillerions travailler ver 479.48 202.70 0.05 0.07 cnd:pre:1p; +travaillerons travailler ver 479.48 202.70 1.47 0.41 ind:fut:1p; +travailleront travailler ver 479.48 202.70 0.66 0.14 ind:fut:3p; +travailles travailler ver 479.48 202.70 20.96 3.18 ind:pre:2s; +travailleur travailleur nom m s 10.60 12.57 3.34 2.64 +travailleurs travailleur nom m p 10.60 12.57 7.09 9.46 +travailleuse travailleur adj f s 4.19 3.72 0.32 0.81 +travailleuses travailleur adj f p 4.19 3.72 0.26 0.14 +travaillez travailler ver 479.48 202.70 22.73 3.58 imp:pre:2p;ind:pre:2p; +travailliez travailler ver 479.48 202.70 2.68 0.27 ind:imp:2p; +travaillions travailler ver 479.48 202.70 0.93 1.08 ind:imp:1p; +travailliste travailliste adj m s 0.30 0.41 0.28 0.27 +travaillistes travailliste nom p 0.06 0.54 0.05 0.41 +travaillâmes travailler ver 479.48 202.70 0.00 0.27 ind:pas:1p; +travaillons travailler ver 479.48 202.70 5.99 1.62 imp:pre:1p;ind:pre:1p; +travaillât travailler ver 479.48 202.70 0.00 0.41 sub:imp:3s; +travaillèrent travailler ver 479.48 202.70 0.07 0.54 ind:pas:3p; +travaillé travailler ver m s 479.48 202.70 49.81 20.00 par:pas;par:pas;par:pas; +travaillée travailler ver f s 479.48 202.70 0.20 0.88 par:pas; +travaillées travaillé adj f p 0.79 1.82 0.02 0.34 +travaillés travaillé adj m p 0.79 1.82 0.05 0.41 +travaux travail nom m p 389.83 263.45 22.40 39.46 +trave trave nom f s 0.02 0.07 0.02 0.07 +traveller_s_chèque traveller_s_chèque nom m p 0.04 0.00 0.04 0.00 +traveller traveller nom m s 0.21 0.00 0.12 0.00 +travellers traveller nom m p 0.21 0.00 0.09 0.00 +travelling travelling nom m s 0.71 0.81 0.70 0.61 +travellings travelling nom m p 0.71 0.81 0.01 0.20 +travelo travelo nom m s 1.20 1.08 0.96 0.88 +travelos travelo nom m p 1.20 1.08 0.25 0.20 +travers travers nom m 65.60 247.64 65.60 247.64 +traversa traverser ver 72.26 200.81 0.63 25.00 ind:pas:3s; +traversable traversable adj m s 0.01 0.14 0.01 0.07 +traversables traversable adj p 0.01 0.14 0.00 0.07 +traversai traverser ver 72.26 200.81 0.13 2.77 ind:pas:1s; +traversaient traverser ver 72.26 200.81 0.34 7.91 ind:imp:3p; +traversais traverser ver 72.26 200.81 0.73 2.43 ind:imp:1s;ind:imp:2s; +traversait traverser ver 72.26 200.81 1.73 19.86 ind:imp:3s; +traversant traverser ver 72.26 200.81 2.39 15.07 par:pre; +traverse traverser ver 72.26 200.81 13.53 25.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +traversent traverser ver 72.26 200.81 3.32 7.57 ind:pre:3p; +traverser traverser ver 72.26 200.81 22.74 37.57 inf; +traversera traverser ver 72.26 200.81 0.89 0.68 ind:fut:3s; +traverserai traverser ver 72.26 200.81 0.22 0.27 ind:fut:1s; +traverseraient traverser ver 72.26 200.81 0.07 0.34 cnd:pre:3p; +traverserais traverser ver 72.26 200.81 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +traverserait traverser ver 72.26 200.81 0.18 0.61 cnd:pre:3s; +traverseras traverser ver 72.26 200.81 0.11 0.07 ind:fut:2s; +traverserez traverser ver 72.26 200.81 0.26 0.14 ind:fut:2p; +traverserons traverser ver 72.26 200.81 0.41 0.14 ind:fut:1p; +traverseront traverser ver 72.26 200.81 0.28 0.20 ind:fut:3p; +traverses traverser ver 72.26 200.81 1.69 0.27 ind:pre:2s; +traversez traverser ver 72.26 200.81 2.08 0.54 imp:pre:2p;ind:pre:2p; +traversier traversier nom m s 0.16 0.00 0.16 0.00 +traversiez traverser ver 72.26 200.81 0.16 0.00 ind:imp:2p; +traversin traversin nom m s 0.44 2.57 0.44 2.30 +traversine traversine nom f s 0.00 0.07 0.00 0.07 +traversins traversin nom m p 0.44 2.57 0.00 0.27 +traversions traverser ver 72.26 200.81 0.11 2.36 ind:imp:1p; +traversière traversier adj f s 0.01 0.20 0.01 0.07 +traversières traversier adj f p 0.01 0.20 0.00 0.07 +traversâmes traverser ver 72.26 200.81 0.14 1.42 ind:pas:1p; +traversons traverser ver 72.26 200.81 1.33 2.84 imp:pre:1p;ind:pre:1p; +traversèrent traverser ver 72.26 200.81 0.22 7.30 ind:pas:3p; +traversé traverser ver m s 72.26 200.81 17.34 29.93 par:pas; +traversée traversée nom f s 3.82 14.80 3.75 13.58 +traversées traversée nom f p 3.82 14.80 0.07 1.22 +traversés traverser ver m p 72.26 200.81 0.37 1.76 par:pas; +travertin travertin nom m s 0.09 0.00 0.09 0.00 +travesti travesti nom m s 2.75 1.89 1.63 1.15 +travestie travesti adj f s 0.26 1.01 0.03 0.27 +travesties travestir ver f p 0.39 2.57 0.00 0.14 par:pas; +travestir travestir ver 0.39 2.57 0.22 0.88 inf; +travestis travesti nom m p 2.75 1.89 1.12 0.74 +travestisme travestisme nom m s 0.14 0.00 0.14 0.00 +travestissais travestir ver 0.39 2.57 0.01 0.07 ind:imp:1s; +travestissant travestir ver 0.39 2.57 0.00 0.07 par:pre; +travestissement travestissement nom m s 0.13 0.88 0.13 0.68 +travestissements travestissement nom m p 0.13 0.88 0.00 0.20 +travestissez travestir ver 0.39 2.57 0.01 0.07 ind:pre:2p; +travestit travestir ver 0.39 2.57 0.02 0.14 ind:pre:3s; +travois travois nom m 0.01 0.00 0.01 0.00 +travée travée nom f s 0.11 3.65 0.11 1.55 +travées travée nom f p 0.11 3.65 0.00 2.09 +trax trax nom m 0.01 0.00 0.01 0.00 +trayait traire ver 3.69 4.59 0.00 0.81 ind:imp:3s; +trayant traire ver 3.69 4.59 0.00 0.07 par:pre; +trayeuse trayeur nom f s 0.08 0.14 0.08 0.07 +trayeuses trayeuse nom f p 0.15 0.00 0.15 0.00 +trayon trayon nom m s 0.00 0.27 0.00 0.07 +trayons trayon nom m p 0.00 0.27 0.00 0.20 +trecento trecento nom m s 0.20 0.00 0.20 0.00 +treillage treillage nom m s 0.05 1.22 0.05 1.01 +treillages treillage nom m p 0.05 1.22 0.00 0.20 +treillard treillard nom m s 0.02 0.00 0.02 0.00 +treille treille nom f s 1.66 2.70 1.32 2.03 +treilles treille nom f p 1.66 2.70 0.34 0.68 +treillis treillis nom m 0.45 4.12 0.45 4.12 +treillissé treillisser ver m s 0.00 0.14 0.00 0.07 par:pas; +treillissée treillisser ver f s 0.00 0.14 0.00 0.07 par:pas; +treizaine treizaine nom f s 0.00 0.07 0.00 0.07 +treize treize adj_num 7.00 20.95 7.00 20.95 +treizième treizième adj 0.31 1.01 0.31 1.01 +trek trek nom m s 0.03 0.00 0.03 0.00 +trekkeur trekkeur nom m s 0.01 0.00 0.01 0.00 +trekking trekking nom m s 0.03 0.00 0.03 0.00 +trembla trembler ver 34.13 94.05 0.30 1.55 ind:pas:3s; +tremblai trembler ver 34.13 94.05 0.02 0.20 ind:pas:1s; +tremblaient trembler ver 34.13 94.05 1.00 12.57 ind:imp:3p; +tremblais trembler ver 34.13 94.05 1.44 2.97 ind:imp:1s;ind:imp:2s; +tremblait trembler ver 34.13 94.05 2.00 22.64 ind:imp:3s; +tremblant trembler ver 34.13 94.05 1.30 7.57 par:pre; +tremblante tremblant adj f s 2.91 21.08 1.69 10.47 +tremblantes tremblant adj f p 2.91 21.08 0.19 4.53 +tremblants tremblant adj m p 2.91 21.08 0.31 2.23 +tremble trembler ver 34.13 94.05 10.60 14.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tremblement tremblement nom m s 8.24 20.41 6.39 15.95 +tremblements tremblement nom m p 8.24 20.41 1.85 4.46 +tremblent trembler ver 34.13 94.05 2.65 5.68 ind:pre:3p; +trembler trembler ver 34.13 94.05 6.37 21.96 inf; +tremblera trembler ver 34.13 94.05 0.67 0.00 ind:fut:3s; +tremblerai trembler ver 34.13 94.05 0.01 0.07 ind:fut:1s; +trembleraient trembler ver 34.13 94.05 0.01 0.14 cnd:pre:3p; +tremblerais trembler ver 34.13 94.05 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +tremblerait trembler ver 34.13 94.05 0.05 0.00 cnd:pre:3s; +tremblerons trembler ver 34.13 94.05 0.02 0.00 ind:fut:1p; +trembleront trembler ver 34.13 94.05 0.16 0.07 ind:fut:3p; +trembles trembler ver 34.13 94.05 3.66 0.34 ind:pre:2s; +trembleur trembleur nom m s 0.14 0.00 0.14 0.00 +trembleurs trembleur adj m p 0.01 0.07 0.00 0.07 +tremblez trembler ver 34.13 94.05 2.42 0.27 imp:pre:2p;ind:pre:2p; +trembliez trembler ver 34.13 94.05 0.01 0.00 ind:imp:2p; +tremblions trembler ver 34.13 94.05 0.02 0.07 ind:imp:1p; +tremblochant tremblocher ver 0.00 0.07 0.00 0.07 par:pre; +tremblons trembler ver 34.13 94.05 0.05 0.14 imp:pre:1p;ind:pre:1p; +tremblât trembler ver 34.13 94.05 0.00 0.07 sub:imp:3s; +tremblota trembloter ver 0.09 5.61 0.00 0.14 ind:pas:3s; +tremblotaient trembloter ver 0.09 5.61 0.00 0.47 ind:imp:3p; +tremblotait trembloter ver 0.09 5.61 0.01 1.55 ind:imp:3s; +tremblotant tremblotant adj m s 0.07 3.11 0.06 0.54 +tremblotante tremblotant adj f s 0.07 3.11 0.00 1.35 +tremblotantes tremblotant adj f p 0.07 3.11 0.01 0.61 +tremblotants tremblotant adj m p 0.07 3.11 0.00 0.61 +tremblote tremblote nom f s 0.45 0.95 0.45 0.95 +tremblotement tremblotement nom m s 0.00 0.20 0.00 0.07 +tremblotements tremblotement nom m p 0.00 0.20 0.00 0.14 +tremblotent trembloter ver 0.09 5.61 0.01 0.41 ind:pre:3p; +trembloter trembloter ver 0.09 5.61 0.02 0.47 inf; +trembloté trembloter ver m s 0.09 5.61 0.00 0.07 par:pas; +tremblèrent trembler ver 34.13 94.05 0.10 0.34 ind:pas:3p; +tremblé trembler ver m s 34.13 94.05 1.03 2.30 par:pas; +tremblée tremblé adj f s 0.03 1.49 0.00 0.61 +tremblées tremblé adj f p 0.03 1.49 0.01 0.14 +tremblés trembler ver m p 34.13 94.05 0.14 0.00 par:pas; +tremolos tremolo nom m p 0.00 0.07 0.00 0.07 +trempa tremper ver 15.88 32.16 0.00 1.82 ind:pas:3s; +trempage trempage nom m s 0.21 0.07 0.21 0.00 +trempages trempage nom m p 0.21 0.07 0.00 0.07 +trempai tremper ver 15.88 32.16 0.00 0.14 ind:pas:1s; +trempaient tremper ver 15.88 32.16 0.04 1.08 ind:imp:3p; +trempais tremper ver 15.88 32.16 0.06 0.27 ind:imp:1s;ind:imp:2s; +trempait tremper ver 15.88 32.16 0.40 2.09 ind:imp:3s; +trempant tremper ver 15.88 32.16 0.06 1.76 par:pre; +trempe trempe nom f s 2.26 3.31 2.13 2.70 +trempent tremper ver 15.88 32.16 0.11 0.61 ind:pre:3p; +tremper tremper ver 15.88 32.16 2.98 5.07 inf; +trempera tremper ver 15.88 32.16 0.01 0.00 ind:fut:3s; +tremperaient tremper ver 15.88 32.16 0.00 0.07 cnd:pre:3p; +tremperais tremper ver 15.88 32.16 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +tremperait tremper ver 15.88 32.16 0.01 0.14 cnd:pre:3s; +trempes tremper ver 15.88 32.16 0.45 0.14 ind:pre:2s; +trempette trempette nom f s 0.95 0.41 0.95 0.41 +trempeur trempeur nom m s 0.16 0.00 0.16 0.00 +trempez tremper ver 15.88 32.16 0.22 0.00 imp:pre:2p;ind:pre:2p; +trempions tremper ver 15.88 32.16 0.00 0.07 ind:imp:1p; +tremplin tremplin nom m s 0.36 1.28 0.36 1.28 +trempoline trempoline nom m s 0.00 0.07 0.00 0.07 +trempons tremper ver 15.88 32.16 0.04 0.07 imp:pre:1p;ind:pre:1p; +trempèrent tremper ver 15.88 32.16 0.01 0.20 ind:pas:3p; +trempé tremper ver m s 15.88 32.16 5.37 8.11 par:pas; +trempée tremper ver f s 15.88 32.16 2.59 3.18 par:pas; +trempées tremper ver f p 15.88 32.16 0.41 1.22 par:pas; +trempés tremper ver m p 15.88 32.16 1.28 3.11 par:pas; +trench_coat trench_coat nom m s 0.04 1.55 0.04 1.49 +trench_coat trench_coat nom m p 0.04 1.55 0.00 0.07 +trench trench nom m s 0.41 0.20 0.41 0.20 +trentaine trentaine nom f s 3.23 13.45 3.23 13.45 +trente_cinq trente_cinq adj_num 1.33 11.55 1.33 11.55 +trente_cinquième trente_cinquième adj 0.00 0.14 0.00 0.14 +trente_deux trente_deux adj_num 0.82 3.58 0.82 3.58 +trente_et_quarante trente_et_quarante nom m 0.00 0.07 0.00 0.07 +trente_et_un trente_et_un nom m 0.39 0.07 0.39 0.07 +trente_et_unième trente_et_unième adj 0.00 0.07 0.00 0.07 +trente_huit trente_huit adj_num 0.64 2.64 0.64 2.64 +trente_huitième trente_huitième adj 0.00 0.20 0.00 0.20 +trente_neuf trente_neuf adj_num 0.55 2.16 0.55 2.16 +trente_neuvième trente_neuvième adj 0.01 0.14 0.01 0.14 +trente_quatre trente_quatre adj_num 0.43 1.08 0.43 1.08 +trente_quatrième trente_quatrième adj 0.00 0.07 0.00 0.07 +trente_sept trente_sept adj_num 0.71 2.23 0.71 2.23 +trente_septième trente_septième adj 0.20 0.14 0.20 0.14 +trente_six trente_six adj_num 0.55 6.82 0.55 6.82 +trente_sixième trente_sixième adj 0.02 0.61 0.02 0.61 +trente_trois trente_trois adj_num 0.78 2.36 0.78 2.36 +trente_troisième trente_troisième adj 0.00 0.20 0.00 0.20 +trente trente adj_num 18.91 79.12 18.91 79.12 +trentenaire trentenaire adj s 0.10 0.14 0.08 0.14 +trentenaires trentenaire adj p 0.10 0.14 0.01 0.00 +trentième trentième adj 0.69 0.88 0.69 0.88 +tressa tresser ver 1.15 8.85 0.00 0.07 ind:pas:3s; +tressaient tresser ver 1.15 8.85 0.00 0.41 ind:imp:3p; +tressaillaient tressaillir ver 1.30 13.72 0.00 0.20 ind:imp:3p; +tressaillais tressaillir ver 1.30 13.72 0.00 0.07 ind:imp:1s; +tressaillait tressaillir ver 1.30 13.72 0.00 1.55 ind:imp:3s; +tressaillant tressaillir ver 1.30 13.72 0.01 0.88 par:pre; +tressaille tressaillir ver 1.30 13.72 0.19 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tressaillement tressaillement nom m s 0.36 3.85 0.13 2.36 +tressaillements tressaillement nom m p 0.36 3.85 0.23 1.49 +tressaillent tressaillir ver 1.30 13.72 0.02 0.54 ind:pre:3p; +tressaillez tressaillir ver 1.30 13.72 0.11 0.00 ind:pre:2p; +tressailli tressaillir ver m s 1.30 13.72 0.23 1.22 par:pas; +tressaillir tressaillir ver 1.30 13.72 0.38 4.12 inf; +tressaillira tressaillir ver 1.30 13.72 0.00 0.07 ind:fut:3s; +tressaillirait tressaillir ver 1.30 13.72 0.00 0.07 cnd:pre:3s; +tressaillirent tressaillir ver 1.30 13.72 0.10 0.14 ind:pas:3p; +tressaillis tressaillir ver 1.30 13.72 0.02 0.14 ind:pas:1s;ind:pas:2s; +tressaillit tressaillir ver 1.30 13.72 0.25 3.65 ind:pas:3s; +tressait tresser ver 1.15 8.85 0.00 0.47 ind:imp:3s; +tressant tresser ver 1.15 8.85 0.00 0.41 par:pre; +tressauta tressauter ver 0.03 4.53 0.00 0.27 ind:pas:3s; +tressautaient tressauter ver 0.03 4.53 0.00 0.27 ind:imp:3p; +tressautait tressauter ver 0.03 4.53 0.01 0.95 ind:imp:3s; +tressautant tressauter ver 0.03 4.53 0.00 0.41 par:pre; +tressautante tressautant adj f s 0.00 0.61 0.00 0.27 +tressaute tressauter ver 0.03 4.53 0.01 0.95 ind:pre:1s;ind:pre:3s; +tressautement tressautement nom m s 0.00 0.74 0.00 0.27 +tressautements tressautement nom m p 0.00 0.74 0.00 0.47 +tressautent tressauter ver 0.03 4.53 0.00 0.88 ind:pre:3p; +tressauter tressauter ver 0.03 4.53 0.01 0.68 inf; +tressautera tressauter ver 0.03 4.53 0.00 0.07 ind:fut:3s; +tressautés tressauter ver m p 0.03 4.53 0.00 0.07 par:pas; +tresse tresse nom f s 1.83 4.73 0.77 1.08 +tressent tresser ver 1.15 8.85 0.10 0.14 ind:pre:3p; +tresser tresser ver 1.15 8.85 0.34 1.69 inf; +tresseraient tresser ver 1.15 8.85 0.00 0.07 cnd:pre:3p; +tresseras tresser ver 1.15 8.85 0.01 0.00 ind:fut:2s; +tresses tresse nom f p 1.83 4.73 1.06 3.65 +tresseurs tresseur nom m p 0.00 0.07 0.00 0.07 +tressons tresser ver 1.15 8.85 0.14 0.07 imp:pre:1p;ind:pre:1p; +tressèrent tresser ver 1.15 8.85 0.00 0.07 ind:pas:3p; +tressé tresser ver m s 1.15 8.85 0.13 1.96 par:pas; +tressée tresser ver f s 1.15 8.85 0.17 1.89 par:pas; +tressées tresser ver f p 1.15 8.85 0.00 1.01 par:pas; +tressés tresser ver m p 1.15 8.85 0.20 0.47 par:pas; +treuil treuil nom m s 1.48 2.16 1.34 1.69 +treuiller treuiller ver 0.14 0.00 0.14 0.00 inf; +treuils treuil nom m p 1.48 2.16 0.14 0.47 +tri tri nom m s 1.60 3.04 1.58 2.84 +tria trier ver 3.68 7.84 0.02 0.27 ind:pas:3s; +triade triade nom f s 1.18 0.14 1.05 0.07 +triades triade nom f p 1.18 0.14 0.14 0.07 +triage triage nom m s 1.42 1.55 1.42 1.55 +triaient trier ver 3.68 7.84 0.03 0.14 ind:imp:3p; +triais trier ver 3.68 7.84 0.07 0.41 ind:imp:1s;ind:imp:2s; +triait trier ver 3.68 7.84 0.04 1.28 ind:imp:3s; +trial trial nom m s 0.04 0.47 0.04 0.47 +triangle triangle nom m s 3.83 13.24 3.42 10.68 +triangles triangle nom m p 3.83 13.24 0.41 2.57 +triangulaire triangulaire adj s 0.17 6.62 0.16 4.73 +triangulairement triangulairement adv 0.00 0.07 0.00 0.07 +triangulaires triangulaire adj p 0.17 6.62 0.01 1.89 +triangulation triangulation nom f s 0.20 0.07 0.20 0.07 +trianguler trianguler ver 0.26 0.00 0.23 0.00 inf; +triangulez trianguler ver 0.26 0.00 0.02 0.00 imp:pre:2p; +trianon trianon nom m s 0.00 0.07 0.00 0.07 +triant trier ver 3.68 7.84 0.12 0.07 par:pre; +trias trias nom m 0.01 0.00 0.01 0.00 +triasique triasique adj f s 0.02 0.00 0.02 0.00 +triathlon triathlon nom m s 0.18 0.00 0.18 0.00 +triathlète triathlète nom s 0.03 0.00 0.03 0.00 +tribal tribal adj m s 1.00 1.01 0.28 0.47 +tribale tribal adj f s 1.00 1.01 0.34 0.27 +tribales tribal adj f p 1.00 1.01 0.26 0.14 +tribart tribart nom m s 0.00 0.07 0.00 0.07 +tribaux tribal adj m p 1.00 1.01 0.12 0.14 +tribord tribord nom m s 3.79 1.28 3.79 1.28 +tribu tribu nom f s 11.57 18.24 7.96 13.58 +tribulation tribulation nom f s 0.14 1.69 0.01 0.54 +tribulations tribulation nom f p 0.14 1.69 0.13 1.15 +tribun tribun nom m s 0.37 1.96 0.36 1.49 +tribunal tribunal nom m s 37.98 18.04 35.35 15.00 +tribunat tribunat nom m s 0.34 0.00 0.34 0.00 +tribunaux tribunal nom m p 37.98 18.04 2.62 3.04 +tribune tribune nom f s 2.87 8.99 1.75 6.96 +tribunes tribune nom f p 2.87 8.99 1.12 2.03 +tribuns tribun nom m p 0.37 1.96 0.01 0.47 +tribus tribu nom f p 11.57 18.24 3.62 4.66 +tribut tribut nom m s 0.87 2.16 0.69 2.16 +tributaire tributaire adj f s 0.34 0.61 0.32 0.34 +tributaires tributaire adj p 0.34 0.61 0.02 0.27 +tributs tribut nom m p 0.87 2.16 0.19 0.00 +tric tric nom m s 0.07 0.00 0.07 0.00 +tricard tricard adj m s 0.61 0.61 0.46 0.41 +tricarde tricard adj f s 0.61 0.61 0.01 0.14 +tricards tricard adj m p 0.61 0.61 0.14 0.07 +tricentenaire tricentenaire nom m s 0.05 0.07 0.05 0.07 +triceps triceps nom m 0.34 0.07 0.34 0.07 +tricha tricher ver 16.16 9.73 0.00 0.14 ind:pas:3s; +trichaient tricher ver 16.16 9.73 0.14 0.34 ind:imp:3p; +trichais tricher ver 16.16 9.73 0.20 0.20 ind:imp:1s;ind:imp:2s; +trichait tricher ver 16.16 9.73 0.41 0.81 ind:imp:3s; +trichant tricher ver 16.16 9.73 0.21 0.68 par:pre; +triche tricher ver 16.16 9.73 3.71 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trichent tricher ver 16.16 9.73 0.31 0.14 ind:pre:3p; +tricher tricher ver 16.16 9.73 4.70 4.05 inf; +trichera tricher ver 16.16 9.73 0.16 0.07 ind:fut:3s; +tricherai tricher ver 16.16 9.73 0.18 0.00 ind:fut:1s; +tricherais tricher ver 16.16 9.73 0.01 0.14 cnd:pre:1s;cnd:pre:2s; +tricherait tricher ver 16.16 9.73 0.03 0.00 cnd:pre:3s; +tricherie tricherie nom f s 1.13 1.28 0.76 1.15 +tricheries tricherie nom f p 1.13 1.28 0.37 0.14 +tricheront tricher ver 16.16 9.73 0.00 0.07 ind:fut:3p; +triches tricher ver 16.16 9.73 1.56 0.20 ind:pre:2s; +tricheur tricheur nom m s 3.45 1.01 2.73 0.34 +tricheurs tricheur nom m p 3.45 1.01 0.36 0.61 +tricheuse tricheur nom f s 3.45 1.01 0.35 0.00 +tricheuses tricheur adj f p 0.90 0.27 0.02 0.00 +trichez tricher ver 16.16 9.73 0.65 0.07 imp:pre:2p;ind:pre:2p; +trichiez tricher ver 16.16 9.73 0.06 0.07 ind:imp:2p; +trichinose trichinose nom f s 0.04 0.07 0.04 0.07 +trichloracétique trichloracétique adj m s 0.01 0.00 0.01 0.00 +trichlorure trichlorure nom m s 0.01 0.00 0.01 0.00 +trichloréthylène trichloréthylène nom m s 0.02 0.00 0.02 0.00 +trichons tricher ver 16.16 9.73 0.02 0.20 ind:pre:1p; +trichophyties trichophytie nom f p 0.01 0.00 0.01 0.00 +triché tricher ver m s 16.16 9.73 3.81 0.95 par:pas; +trichée tricher ver f s 16.16 9.73 0.00 0.07 par:pas; +trichées tricher ver f p 16.16 9.73 0.00 0.07 par:pas; +trick trick nom m s 0.35 0.00 0.35 0.00 +tricoises tricoises nom f p 0.00 0.07 0.00 0.07 +tricolore tricolore adj s 0.40 7.50 0.30 6.08 +tricolores tricolore adj p 0.40 7.50 0.10 1.42 +tricorne tricorne nom m s 0.02 0.88 0.01 0.74 +tricornes tricorne nom m p 0.02 0.88 0.01 0.14 +tricot tricot nom m s 1.44 14.19 1.25 11.96 +tricota tricoter ver 3.19 13.04 0.00 0.27 ind:pas:3s; +tricotage tricotage nom m s 0.04 0.41 0.04 0.34 +tricotages tricotage nom m p 0.04 0.41 0.00 0.07 +tricotai tricoter ver 3.19 13.04 0.00 0.07 ind:pas:1s; +tricotaient tricoter ver 3.19 13.04 0.01 0.88 ind:imp:3p; +tricotais tricoter ver 3.19 13.04 0.21 0.07 ind:imp:1s;ind:imp:2s; +tricotait tricoter ver 3.19 13.04 0.23 3.04 ind:imp:3s; +tricotant tricoter ver 3.19 13.04 0.00 1.15 par:pre; +tricote tricoter ver 3.19 13.04 0.65 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tricotent tricoter ver 3.19 13.04 0.04 0.41 ind:pre:3p; +tricoter tricoter ver 3.19 13.04 1.37 3.11 inf; +tricotera tricoter ver 3.19 13.04 0.11 0.00 ind:fut:3s; +tricoterai tricoter ver 3.19 13.04 0.03 0.07 ind:fut:1s; +tricoterait tricoter ver 3.19 13.04 0.01 0.07 cnd:pre:3s; +tricoteras tricoter ver 3.19 13.04 0.00 0.07 ind:fut:2s; +tricoterons tricoter ver 3.19 13.04 0.10 0.00 ind:fut:1p; +tricoteur tricoteur nom m s 0.14 0.68 0.00 0.07 +tricoteuse tricoteur nom f s 0.14 0.68 0.14 0.41 +tricoteuses tricoteur nom f p 0.14 0.68 0.00 0.20 +tricotez tricoter ver 3.19 13.04 0.04 0.00 imp:pre:2p;ind:pre:2p; +tricots tricot nom m p 1.44 14.19 0.19 2.23 +tricoté tricoter ver m s 3.19 13.04 0.35 1.22 par:pas; +tricotée tricoter ver f s 3.19 13.04 0.00 0.41 par:pas; +tricotées tricoter ver f p 3.19 13.04 0.02 0.34 par:pas; +tricotés tricoter ver m p 3.19 13.04 0.01 0.47 par:pas; +trictrac trictrac nom m s 0.14 0.14 0.14 0.14 +tricéphale tricéphale adj f s 0.00 0.27 0.00 0.27 +tricératops tricératops nom m 0.02 0.00 0.02 0.00 +tricuspide tricuspide adj f s 0.07 0.00 0.07 0.00 +tricycle tricycle nom m s 0.52 0.95 0.50 0.61 +tricycles tricycle nom m p 0.52 0.95 0.02 0.34 +tricycliste tricycliste nom s 0.00 0.20 0.00 0.20 +trident trident nom m s 0.13 0.68 0.12 0.68 +tridents trident nom m p 0.13 0.68 0.01 0.00 +tridi tridi nom m s 0.00 0.07 0.00 0.07 +tridimensionnel tridimensionnel adj m s 0.24 0.00 0.17 0.00 +tridimensionnelle tridimensionnel adj f s 0.24 0.00 0.07 0.00 +trie trier ver 3.68 7.84 1.01 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +triennale triennal adj f s 0.00 0.20 0.00 0.14 +triennales triennal adj f p 0.00 0.20 0.00 0.07 +trient trier ver 3.68 7.84 0.05 0.07 ind:pre:3p; +trier trier ver 3.68 7.84 1.08 3.38 inf; +triera trier ver 3.68 7.84 0.01 0.07 ind:fut:3s; +trierait trier ver 3.68 7.84 0.00 0.07 cnd:pre:3s; +trieur trieur nom m s 0.18 0.14 0.05 0.00 +trieurs trieur nom m p 0.18 0.14 0.02 0.00 +trieuse trieur nom f s 0.18 0.14 0.11 0.00 +trieuses trieuse nom f p 0.02 0.00 0.02 0.00 +triez trier ver 3.68 7.84 0.18 0.07 imp:pre:2p;ind:pre:2p; +trifolium trifolium nom m s 0.01 0.07 0.01 0.07 +triforium triforium nom m s 0.00 0.07 0.00 0.07 +trifouillaient trifouiller ver 0.30 1.35 0.00 0.14 ind:imp:3p; +trifouillait trifouiller ver 0.30 1.35 0.00 0.07 ind:imp:3s; +trifouille trifouiller ver 0.30 1.35 0.02 0.41 imp:pre:2s;ind:pre:3s; +trifouiller trifouiller ver 0.30 1.35 0.13 0.41 inf; +trifouillez trifouiller ver 0.30 1.35 0.01 0.00 ind:pre:2p; +trifouillé trifouiller ver m s 0.30 1.35 0.14 0.34 par:pas; +trigger trigger nom m s 0.09 0.00 0.09 0.00 +trigles trigle nom m p 0.00 0.07 0.00 0.07 +triglycéride triglycéride nom m s 0.07 0.07 0.03 0.00 +triglycérides triglycéride nom m p 0.07 0.07 0.05 0.07 +trigonométrie trigonométrie nom f s 0.28 0.20 0.28 0.20 +trigrammes trigramme nom m p 0.01 0.00 0.01 0.00 +trilatérale trilatéral adj f s 0.04 0.07 0.04 0.07 +trilingue trilingue adj s 0.01 0.07 0.01 0.00 +trilingues trilingue adj f p 0.01 0.07 0.00 0.07 +trillant triller ver 0.01 0.14 0.00 0.07 par:pre; +trille trille nom m s 0.30 2.64 0.03 1.01 +trilles trille nom m p 0.30 2.64 0.28 1.62 +trillion trillion nom m s 0.22 0.14 0.06 0.00 +trillions trillion nom m p 0.22 0.14 0.16 0.14 +trillé triller ver m s 0.01 0.14 0.00 0.07 par:pas; +trilobite trilobite nom m s 0.02 0.00 0.02 0.00 +trilobée trilobé adj f s 0.00 0.14 0.00 0.07 +trilobés trilobé adj m p 0.00 0.14 0.00 0.07 +trilogie trilogie nom f s 0.36 0.07 0.36 0.07 +trimait trimer ver 4.38 3.31 0.02 0.34 ind:imp:3s; +trimant trimer ver 4.38 3.31 0.00 0.07 par:pre; +trimard trimard nom m s 0.02 1.76 0.00 0.61 +trimarde trimarder ver 0.00 0.14 0.00 0.07 ind:pre:1s; +trimarder trimarder ver 0.00 0.14 0.00 0.07 inf; +trimardeur trimardeur nom m s 0.03 0.81 0.03 0.61 +trimardeurs trimardeur nom m p 0.03 0.81 0.00 0.20 +trimards trimard nom m p 0.02 1.76 0.02 1.15 +trimbala trimbaler ver 1.62 7.09 0.00 0.07 ind:pas:3s; +trimbalaient trimbaler ver 1.62 7.09 0.00 0.07 ind:imp:3p; +trimbalais trimbaler ver 1.62 7.09 0.00 0.34 ind:imp:1s;ind:imp:2s; +trimbalait trimbaler ver 1.62 7.09 0.06 1.15 ind:imp:3s; +trimbalant trimbaler ver 1.62 7.09 0.11 0.41 par:pre; +trimbale trimbaler ver 1.62 7.09 0.50 1.82 ind:pre:1s;ind:pre:3s;sub:pre:3s; +trimbalent trimbaler ver 1.62 7.09 0.23 0.47 ind:pre:3p; +trimbaler trimbaler ver 1.62 7.09 0.42 1.82 inf; +trimbalerai trimbaler ver 1.62 7.09 0.00 0.07 ind:fut:1s; +trimbalerait trimbaler ver 1.62 7.09 0.01 0.00 cnd:pre:3s; +trimbalerez trimbaler ver 1.62 7.09 0.01 0.00 ind:fut:2p; +trimbales trimbaler ver 1.62 7.09 0.13 0.20 ind:pre:2s; +trimbalez trimbaler ver 1.62 7.09 0.02 0.00 ind:pre:2p; +trimballage trimballage nom m s 0.01 0.00 0.01 0.00 +trimballaient trimballer ver 3.34 3.11 0.00 0.20 ind:imp:3p; +trimballais trimballer ver 3.34 3.11 0.04 0.34 ind:imp:1s;ind:imp:2s; +trimballait trimballer ver 3.34 3.11 0.09 0.41 ind:imp:3s; +trimballe trimballer ver 3.34 3.11 0.67 0.61 ind:pre:1s;ind:pre:3s; +trimballent trimballer ver 3.34 3.11 0.19 0.14 ind:pre:3p; +trimballer trimballer ver 3.34 3.11 1.16 0.81 inf; +trimballera trimballer ver 3.34 3.11 0.00 0.07 ind:fut:3s; +trimballes trimballer ver 3.34 3.11 0.64 0.00 ind:pre:2s; +trimballez trimballer ver 3.34 3.11 0.05 0.00 ind:pre:2p; +trimballât trimballer ver 3.34 3.11 0.00 0.07 sub:imp:3s; +trimballé trimballer ver m s 3.34 3.11 0.45 0.27 par:pas; +trimballée trimballer ver f s 3.34 3.11 0.04 0.20 par:pas; +trimballés trimballer ver m p 3.34 3.11 0.01 0.00 par:pas; +trimbalons trimbaler ver 1.62 7.09 0.00 0.07 ind:pre:1p; +trimbalé trimbaler ver m s 1.62 7.09 0.12 0.34 par:pas; +trimbalée trimbaler ver f s 1.62 7.09 0.00 0.14 par:pas; +trimbalés trimbaler ver m p 1.62 7.09 0.00 0.14 par:pas; +trime trimer ver 4.38 3.31 1.17 0.74 ind:pre:1s;ind:pre:3s; +triment trimer ver 4.38 3.31 0.23 0.27 ind:pre:3p; +trimer trimer ver 4.38 3.31 1.73 1.28 inf; +trimes trimer ver 4.38 3.31 0.21 0.00 ind:pre:2s; +trimestre trimestre nom m s 2.50 5.54 2.44 4.80 +trimestres trimestre nom m p 2.50 5.54 0.06 0.74 +trimestriel trimestriel adj m s 0.39 0.81 0.26 0.34 +trimestrielle trimestriel adj f s 0.39 0.81 0.02 0.14 +trimestriellement trimestriellement adv 0.04 0.00 0.04 0.00 +trimestrielles trimestriel adj f p 0.39 0.81 0.04 0.14 +trimestriels trimestriel adj m p 0.39 0.81 0.08 0.20 +trimeur trimeur nom m s 0.11 0.14 0.11 0.07 +trimeurs trimeur nom m p 0.11 0.14 0.00 0.07 +trimmer trimmer nom m s 0.02 0.00 0.02 0.00 +trimons trimer ver 4.38 3.31 0.02 0.07 imp:pre:1p;ind:pre:1p; +trimé trimer ver m s 4.38 3.31 1.00 0.54 par:pas; +trinôme trinôme nom m s 0.01 0.00 0.01 0.00 +trinacrie trinacrie nom f s 0.00 0.07 0.00 0.07 +trine trin adj f s 0.04 0.00 0.04 0.00 +tringlaient tringler ver 0.90 1.62 0.00 0.07 ind:imp:3p; +tringlais tringler ver 0.90 1.62 0.02 0.00 ind:imp:1s;ind:imp:2s; +tringlait tringler ver 0.90 1.62 0.02 0.07 ind:imp:3s; +tringle tringle nom f s 0.30 3.18 0.10 1.49 +tringler tringler ver 0.90 1.62 0.66 1.01 inf; +tringlerais tringler ver 0.90 1.62 0.01 0.07 cnd:pre:1s; +tringles tringle nom f p 0.30 3.18 0.20 1.69 +tringlette tringlette nom f s 0.01 0.14 0.01 0.14 +tringlot tringlot nom m s 0.00 0.34 0.00 0.27 +tringlots tringlot nom m p 0.00 0.34 0.00 0.07 +tringlé tringler ver m s 0.90 1.62 0.04 0.14 par:pas; +tringlée tringler ver f s 0.90 1.62 0.07 0.07 par:pas; +trinidadienne trinidadienne adj f s 0.01 0.00 0.01 0.00 +trinidadienne trinidadienne nom f s 0.01 0.00 0.01 0.00 +trinitaire trinitaire adj m s 0.03 0.20 0.03 0.20 +trinitrine trinitrine nom f s 0.13 0.00 0.13 0.00 +trinité trinité nom f s 0.45 0.41 0.45 0.41 +trinqua trinquer ver 12.21 9.19 0.01 0.74 ind:pas:3s; +trinquaient trinquer ver 12.21 9.19 0.01 0.47 ind:imp:3p; +trinquais trinquer ver 12.21 9.19 0.01 0.14 ind:imp:1s;ind:imp:2s; +trinquait trinquer ver 12.21 9.19 0.11 0.54 ind:imp:3s; +trinquant trinquer ver 12.21 9.19 0.00 0.47 par:pre; +trinque trinquer ver 12.21 9.19 2.69 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trinquent trinquer ver 12.21 9.19 0.60 0.61 ind:pre:3p; +trinquer trinquer ver 12.21 9.19 2.95 2.50 inf; +trinquera trinquer ver 12.21 9.19 0.11 0.07 ind:fut:3s; +trinquerai trinquer ver 12.21 9.19 0.05 0.07 ind:fut:1s; +trinquerais trinquer ver 12.21 9.19 0.00 0.07 cnd:pre:1s; +trinquerait trinquer ver 12.21 9.19 0.00 0.07 cnd:pre:3s; +trinqueras trinquer ver 12.21 9.19 0.00 0.07 ind:fut:2s; +trinquerez trinquer ver 12.21 9.19 0.01 0.00 ind:fut:2p; +trinquerons trinquer ver 12.21 9.19 0.16 0.00 ind:fut:1p; +trinques trinquer ver 12.21 9.19 0.19 0.00 ind:pre:2s; +trinquette trinquette nom f s 0.03 0.07 0.03 0.07 +trinquez trinquer ver 12.21 9.19 1.97 0.00 imp:pre:2p;ind:pre:2p; +trinquions trinquer ver 12.21 9.19 0.00 0.20 ind:imp:1p; +trinquâmes trinquer ver 12.21 9.19 0.00 0.07 ind:pas:1p; +trinquons trinquer ver 12.21 9.19 3.04 0.27 imp:pre:1p;ind:pre:1p; +trinquèrent trinquer ver 12.21 9.19 0.00 0.95 ind:pas:3p; +trinqué trinquer ver m s 12.21 9.19 0.30 0.95 par:pas; +trio trio nom m s 2.74 5.47 2.30 5.34 +triode triode nom f s 0.00 0.07 0.00 0.07 +triolet triolet nom m s 0.25 0.27 0.14 0.00 +triolets triolet nom m p 0.25 0.27 0.10 0.27 +triolisme triolisme nom m s 0.01 0.00 0.01 0.00 +triompha triompher ver 7.67 19.19 0.28 1.28 ind:pas:3s; +triomphai triompher ver 7.67 19.19 0.14 0.14 ind:pas:1s; +triomphaient triompher ver 7.67 19.19 0.05 0.54 ind:imp:3p; +triomphais triompher ver 7.67 19.19 0.00 0.14 ind:imp:1s; +triomphait triompher ver 7.67 19.19 0.11 3.65 ind:imp:3s; +triomphal triomphal adj m s 0.79 8.58 0.12 3.51 +triomphale triomphal adj f s 0.79 8.58 0.64 4.26 +triomphalement triomphalement adv 0.03 3.38 0.03 3.38 +triomphales triomphal adj f p 0.79 8.58 0.03 0.74 +triomphalisme triomphalisme nom m s 0.01 0.00 0.01 0.00 +triomphaliste triomphaliste adj s 0.00 0.14 0.00 0.07 +triomphalistes triomphaliste adj p 0.00 0.14 0.00 0.07 +triomphant triomphant adj m s 0.64 12.77 0.14 5.47 +triomphante triomphant adj f s 0.64 12.77 0.43 5.41 +triomphantes triomphant adj f p 0.64 12.77 0.00 0.47 +triomphants triomphant adj m p 0.64 12.77 0.07 1.42 +triomphateur triomphateur nom m s 0.14 0.81 0.13 0.54 +triomphateurs triomphateur nom m p 0.14 0.81 0.01 0.07 +triomphatrice triomphateur nom f s 0.14 0.81 0.00 0.14 +triomphatrices triomphateur nom f p 0.14 0.81 0.00 0.07 +triomphaux triomphal adj m p 0.79 8.58 0.00 0.07 +triomphe triomphe nom m s 9.44 29.19 8.83 27.30 +triomphent triompher ver 7.67 19.19 0.21 0.61 ind:pre:3p; +triompher triompher ver 7.67 19.19 2.75 4.46 inf; +triomphera triompher ver 7.67 19.19 0.20 0.20 ind:fut:3s; +triompherai triompher ver 7.67 19.19 0.04 0.14 ind:fut:1s; +triompherais triompher ver 7.67 19.19 0.01 0.07 cnd:pre:1s; +triompherait triompher ver 7.67 19.19 0.02 0.20 cnd:pre:3s; +triompheras triompher ver 7.67 19.19 0.01 0.07 ind:fut:2s; +triompherez triompher ver 7.67 19.19 0.01 0.00 ind:fut:2p; +triompherions triompher ver 7.67 19.19 0.14 0.00 cnd:pre:1p; +triompherons triompher ver 7.67 19.19 0.13 0.00 ind:fut:1p; +triompheront triompher ver 7.67 19.19 0.03 0.00 ind:fut:3p; +triomphes triomphe nom m p 9.44 29.19 0.61 1.89 +triomphez triompher ver 7.67 19.19 0.04 0.00 ind:pre:2p; +triomphions triompher ver 7.67 19.19 0.03 0.00 ind:imp:1p; +triomphâmes triompher ver 7.67 19.19 0.00 0.07 ind:pas:1p; +triomphons triompher ver 7.67 19.19 0.25 0.27 ind:pre:1p; +triomphât triompher ver 7.67 19.19 0.00 0.07 sub:imp:3s; +triomphèrent triompher ver 7.67 19.19 0.01 0.07 ind:pas:3p; +triomphé triompher ver m s 7.67 19.19 1.13 2.43 par:pas; +trional trional nom m s 0.01 0.00 0.01 0.00 +trionix trionix nom m 0.00 0.07 0.00 0.07 +trios trio nom m p 2.74 5.47 0.44 0.14 +trip trip nom m s 4.62 1.22 4.37 1.22 +tripaille tripaille nom f s 0.17 0.88 0.16 0.68 +tripailles tripaille nom f p 0.17 0.88 0.01 0.20 +tripang tripang nom m s 0.02 0.00 0.01 0.00 +tripangs tripang nom m p 0.02 0.00 0.01 0.00 +tripant tripant adj m s 0.03 0.00 0.03 0.00 +tripartite tripartite adj s 0.01 0.74 0.01 0.61 +tripartites tripartite adj f p 0.01 0.74 0.00 0.14 +tripatouillage tripatouillage nom m s 0.00 0.14 0.00 0.07 +tripatouillages tripatouillage nom m p 0.00 0.14 0.00 0.07 +tripatouillant tripatouiller ver 0.07 0.54 0.00 0.07 par:pre; +tripatouillent tripatouiller ver 0.07 0.54 0.00 0.07 ind:pre:3p; +tripatouiller tripatouiller ver 0.07 0.54 0.03 0.27 inf; +tripatouillez tripatouiller ver 0.07 0.54 0.01 0.07 imp:pre:2p;ind:pre:2p; +tripatouillé tripatouiller ver m s 0.07 0.54 0.02 0.00 par:pas; +tripatouillée tripatouiller ver f s 0.07 0.54 0.00 0.07 par:pas; +tripe tripe nom f s 8.75 13.58 0.36 1.42 +triper triper ver 0.05 0.00 0.05 0.00 inf; +triperie triperie nom f s 0.00 0.20 0.00 0.14 +triperies triperie nom f p 0.00 0.20 0.00 0.07 +tripes tripe nom f p 8.75 13.58 8.39 12.16 +tripette tripette nom f s 0.26 0.54 0.26 0.54 +triphasé triphasé adj m s 0.14 0.00 0.14 0.00 +triphosphate triphosphate nom m s 0.01 0.00 0.01 0.00 +tripier tripier nom m s 0.00 0.27 0.00 0.07 +tripiers tripier nom m p 0.00 0.27 0.00 0.07 +tripière tripier nom f s 0.00 0.27 0.00 0.14 +tripla tripler ver 2.08 1.76 0.00 0.20 ind:pas:3s; +triplace triplace adj s 0.00 0.07 0.00 0.07 +triplai tripler ver 2.08 1.76 0.00 0.07 ind:pas:1s; +triplaient tripler ver 2.08 1.76 0.00 0.07 ind:imp:3p; +triplait tripler ver 2.08 1.76 0.01 0.07 ind:imp:3s; +triplant tripler ver 2.08 1.76 0.01 0.07 par:pre; +triple triple adj s 4.94 9.12 4.81 7.77 +triplement triplement adv 0.01 0.00 0.01 0.00 +triplent tripler ver 2.08 1.76 0.01 0.07 ind:pre:3p; +tripler tripler ver 2.08 1.76 0.47 0.27 inf; +triplerais tripler ver 2.08 1.76 0.01 0.07 cnd:pre:1s; +triplerait tripler ver 2.08 1.76 0.03 0.00 cnd:pre:3s; +triples triple adj p 4.94 9.12 0.12 1.35 +triplets triplet nom m p 0.06 0.00 0.06 0.00 +triplette triplette nom f s 0.16 0.00 0.16 0.00 +triplex triplex nom m 0.04 0.00 0.04 0.00 +triplice triplice nom f s 0.14 0.00 0.14 0.00 +triplions tripler ver 2.08 1.76 0.01 0.00 ind:imp:1p; +triploïde triploïde adj f s 0.01 0.00 0.01 0.00 +triplons tripler ver 2.08 1.76 0.01 0.00 ind:pre:1p; +triplèrent tripler ver 2.08 1.76 0.00 0.07 ind:pas:3p; +triplé tripler ver m s 2.08 1.76 1.02 0.54 par:pas; +triplée tripler ver f s 2.08 1.76 0.05 0.07 par:pas; +triplées triplé nom f p 1.54 0.47 0.29 0.20 +triplés triplé nom m p 1.54 0.47 1.15 0.20 +tripode tripode nom m s 0.02 0.00 0.02 0.00 +tripoli tripoli nom m s 0.14 0.07 0.14 0.07 +triporteur triporteur nom m s 0.12 5.61 0.10 5.27 +triporteurs triporteur nom m p 0.12 5.61 0.02 0.34 +tripot tripot nom m s 1.57 1.22 1.09 0.81 +tripota tripoter ver 7.80 7.97 0.00 0.27 ind:pas:3s; +tripotage tripotage nom m s 0.16 0.27 0.03 0.27 +tripotages tripotage nom m p 0.16 0.27 0.14 0.00 +tripotaient tripoter ver 7.80 7.97 0.03 0.34 ind:imp:3p; +tripotais tripoter ver 7.80 7.97 0.04 0.34 ind:imp:1s;ind:imp:2s; +tripotait tripoter ver 7.80 7.97 0.36 0.95 ind:imp:3s; +tripotant tripoter ver 7.80 7.97 0.22 0.74 par:pre; +tripote tripoter ver 7.80 7.97 1.76 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tripotent tripoter ver 7.80 7.97 0.60 0.34 ind:pre:3p;sub:pre:3p; +tripoter tripoter ver 7.80 7.97 3.09 2.30 inf; +tripoterai tripoter ver 7.80 7.97 0.01 0.00 ind:fut:1s; +tripotes tripoter ver 7.80 7.97 0.33 0.07 ind:pre:2s; +tripoteur tripoteur nom m s 0.04 0.00 0.02 0.00 +tripoteuse tripoteur nom f s 0.04 0.00 0.02 0.00 +tripotez tripoter ver 7.80 7.97 0.10 0.07 ind:pre:2p; +tripotiez tripoter ver 7.80 7.97 0.15 0.07 ind:imp:2p; +tripots tripot nom m p 1.57 1.22 0.48 0.41 +tripotèrent tripoter ver 7.80 7.97 0.00 0.07 ind:pas:3p; +tripoté tripoter ver m s 7.80 7.97 0.85 0.54 par:pas; +tripotée tripotée nom f s 0.26 0.27 0.26 0.27 +tripotées tripoter ver f p 7.80 7.97 0.00 0.07 par:pas; +tripotés tripoter ver m p 7.80 7.97 0.03 0.20 par:pas; +tripoux tripoux nom m p 0.00 0.20 0.00 0.20 +trips trip nom m p 4.62 1.22 0.26 0.00 +triptyque triptyque nom m s 0.06 0.74 0.04 0.61 +triptyques triptyque nom m p 0.06 0.74 0.01 0.14 +triquais triquer ver 0.27 0.68 0.00 0.14 ind:imp:1s; +triquait triquer ver 0.27 0.68 0.00 0.07 ind:imp:3s; +trique trique nom f s 2.73 4.46 2.69 4.05 +triqueballe triqueballe nom m s 0.00 0.14 0.00 0.14 +triquer triquer ver 0.27 0.68 0.16 0.41 inf; +triques trique nom f p 2.73 4.46 0.03 0.41 +trirème trirème nom f s 0.00 0.20 0.00 0.14 +trirèmes trirème nom f p 0.00 0.20 0.00 0.07 +tris tri nom m p 1.60 3.04 0.03 0.20 +trisaïeul trisaïeul nom m s 0.14 0.34 0.01 0.20 +trisaïeule trisaïeul nom f s 0.14 0.34 0.00 0.07 +trisaïeuls trisaïeul nom m p 0.14 0.34 0.14 0.07 +trismique trismique adj f s 0.00 0.07 0.00 0.07 +trismégiste trismégiste adj s 0.06 0.07 0.06 0.07 +trismus trismus nom m 0.00 0.07 0.00 0.07 +trisomie trisomie nom f s 0.01 0.00 0.01 0.00 +trisomique trisomique adj s 0.32 0.00 0.32 0.00 +trissait trisser ver 0.02 1.15 0.00 0.14 ind:imp:3s; +trisse trisser ver 0.02 1.15 0.02 0.41 ind:pre:1s;ind:pre:3s; +trissent trisser ver 0.02 1.15 0.00 0.14 ind:pre:3p; +trisser trisser ver 0.02 1.15 0.00 0.41 inf; +trissés trisser ver m p 0.02 1.15 0.00 0.07 par:pas; +triste triste adj s 103.44 105.61 93.03 86.89 +tristement tristement adv 1.67 11.82 1.67 11.82 +tristes triste adj p 103.44 105.61 10.41 18.72 +tristesse tristesse nom f s 13.39 48.72 12.91 46.96 +tristesses tristesse nom f p 13.39 48.72 0.48 1.76 +tristouillard tristouillard adj m s 0.00 0.14 0.00 0.07 +tristouillarde tristouillard adj f s 0.00 0.14 0.00 0.07 +tristouille tristouille adj m s 0.16 0.27 0.16 0.20 +tristouilles tristouille adj p 0.16 0.27 0.00 0.07 +tristounet tristounet adj m s 0.13 0.34 0.09 0.07 +tristounette tristounet adj f s 0.13 0.34 0.02 0.14 +tristounettes tristounet adj f p 0.13 0.34 0.02 0.14 +trièrent trier ver 3.68 7.84 0.00 0.07 ind:pas:3p; +trithéisme trithéisme nom m s 0.00 0.07 0.00 0.07 +trithérapie trithérapie nom f s 0.17 0.00 0.17 0.00 +tritium tritium nom m s 0.11 0.00 0.11 0.00 +triton triton nom m s 0.81 0.27 0.35 0.07 +tritons triton nom m p 0.81 0.27 0.46 0.20 +tritura triturer ver 0.25 5.07 0.00 0.27 ind:pas:3s; +trituraient triturer ver 0.25 5.07 0.01 0.27 ind:imp:3p; +triturais triturer ver 0.25 5.07 0.01 0.14 ind:imp:1s; +triturait triturer ver 0.25 5.07 0.01 1.08 ind:imp:3s; +triturant triturer ver 0.25 5.07 0.00 0.68 par:pre; +trituration trituration nom f s 0.00 0.20 0.00 0.14 +triturations trituration nom f p 0.00 0.20 0.00 0.07 +triture triturer ver 0.25 5.07 0.02 0.47 ind:pre:1s;ind:pre:3s; +triturent triturer ver 0.25 5.07 0.01 0.20 ind:pre:3p; +triturer triturer ver 0.25 5.07 0.14 1.22 inf; +triturera triturer ver 0.25 5.07 0.00 0.07 ind:fut:3s; +triturons triturer ver 0.25 5.07 0.00 0.07 imp:pre:1p; +trituré triturer ver m s 0.25 5.07 0.02 0.20 par:pas; +triturée triturer ver f s 0.25 5.07 0.02 0.14 par:pas; +triturées triturer ver f p 0.25 5.07 0.00 0.14 par:pas; +triturés triturer ver m p 0.25 5.07 0.00 0.14 par:pas; +trié trier ver m s 3.68 7.84 0.39 0.54 par:pas; +triée trier ver f s 3.68 7.84 0.11 0.27 par:pas; +triées trier ver f p 3.68 7.84 0.23 0.07 par:pas; +triumvir triumvir nom m s 0.09 0.00 0.09 0.00 +triumvirat triumvirat nom m s 0.57 0.14 0.57 0.14 +triés trier ver m p 3.68 7.84 0.33 0.81 par:pas; +trivial trivial adj m s 0.61 3.51 0.47 1.28 +triviale trivial adj f s 0.61 3.51 0.09 0.81 +trivialement trivialement adv 0.01 0.07 0.01 0.07 +triviales trivial adj f p 0.61 3.51 0.04 0.81 +trivialiser trivialiser ver 0.03 0.00 0.03 0.00 inf; +trivialité trivialité nom f s 0.03 0.34 0.03 0.27 +trivialités trivialité nom f p 0.03 0.34 0.00 0.07 +triviaux trivial adj m p 0.61 3.51 0.02 0.61 +trivium trivium nom m s 0.04 0.07 0.04 0.07 +troïka troïka nom f s 0.00 0.81 0.00 0.54 +troïkas troïka nom f p 0.00 0.81 0.00 0.27 +trobriandais trobriandais nom m 0.00 0.07 0.00 0.07 +troc troc nom m s 1.08 2.03 1.08 1.76 +trocart trocart nom m s 0.01 0.14 0.01 0.14 +trochaïque trochaïque adj m s 0.00 0.07 0.00 0.07 +trochanter trochanter nom m s 0.02 0.00 0.02 0.00 +troche troche nom f s 0.00 0.14 0.00 0.14 +trochée trochée nom s 0.00 0.14 0.00 0.14 +trochures trochure nom f p 0.00 0.07 0.00 0.07 +trocs troc nom m p 1.08 2.03 0.00 0.27 +troglodyte troglodyte nom m s 0.20 0.68 0.10 0.27 +troglodytes troglodyte nom m p 0.20 0.68 0.10 0.41 +troglodytique troglodytique adj m s 0.01 0.07 0.01 0.00 +troglodytiques troglodytique adj p 0.01 0.07 0.00 0.07 +trogne trogne nom f s 0.07 3.85 0.07 3.18 +trognes trogne nom f p 0.07 3.85 0.00 0.68 +trognon trognon nom m s 0.84 3.38 0.75 2.30 +trognons trognon nom m p 0.84 3.38 0.09 1.08 +trois_deux trois_deux nom m 0.01 0.00 0.01 0.00 +trois_huit trois_huit nom m 0.17 0.00 0.17 0.00 +trois_mâts trois_mâts nom m 0.16 0.47 0.16 0.47 +trois_points trois_points nom m 0.01 0.00 0.01 0.00 +trois_quarts trois_quarts nom m 0.59 0.34 0.59 0.34 +trois_quatre trois_quatre nom m 0.02 0.47 0.02 0.47 +trois_six trois_six nom m 0.01 0.07 0.01 0.07 +trois trois adj_num 380.80 660.34 380.80 660.34 +troisième troisième adj 30.50 57.43 30.47 57.23 +troisièmement troisièmement adv 1.38 0.54 1.38 0.54 +troisièmes troisième nom p 14.60 31.55 0.05 0.20 +troll troll nom m s 2.07 0.27 0.96 0.20 +trolle trolle nom f s 0.00 0.07 0.00 0.07 +trolley trolley nom m s 0.48 0.61 0.48 0.47 +trolleybus trolleybus nom m 0.00 1.08 0.00 1.08 +trolleys trolley nom m p 0.48 0.61 0.00 0.14 +trolls troll nom m p 2.07 0.27 1.11 0.07 +trâlée trâlée nom f s 0.00 0.07 0.00 0.07 +trombe trombe nom f s 0.82 9.32 0.61 7.23 +trombes trombe nom f p 0.82 9.32 0.20 2.09 +trombine trombine nom f s 0.02 1.28 0.01 1.01 +trombines trombine nom f p 0.02 1.28 0.01 0.27 +trombinoscope trombinoscope nom m s 0.07 0.14 0.07 0.14 +tromblon tromblon nom m s 0.06 0.68 0.05 0.20 +tromblons tromblon nom m p 0.06 0.68 0.01 0.47 +trombone trombone nom m s 2.96 1.42 1.78 0.54 +trombones trombone nom m p 2.96 1.42 1.17 0.88 +tromboniste tromboniste nom s 0.01 0.00 0.01 0.00 +trommel trommel nom m s 0.00 0.14 0.00 0.14 +trompa tromper ver 149.09 97.30 0.16 0.61 ind:pas:3s; +trompai tromper ver 149.09 97.30 0.00 0.20 ind:pas:1s; +trompaient tromper ver 149.09 97.30 0.39 1.96 ind:imp:3p; +trompais tromper ver 149.09 97.30 3.19 4.12 ind:imp:1s;ind:imp:2s; +trompait tromper ver 149.09 97.30 3.34 9.39 ind:imp:3s; +trompant tromper ver 149.09 97.30 0.28 1.62 par:pre; +trompe_l_oeil trompe_l_oeil nom m 0.33 2.43 0.33 2.43 +trompe tromper ver 149.09 97.30 27.72 15.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +trompent tromper ver 149.09 97.30 3.43 3.11 ind:pre:3p; +tromper tromper ver 149.09 97.30 27.42 22.16 inf;;inf;;inf;; +trompera tromper ver 149.09 97.30 0.24 0.27 ind:fut:3s; +tromperai tromper ver 149.09 97.30 0.19 0.41 ind:fut:1s; +tromperaient tromper ver 149.09 97.30 0.01 0.14 cnd:pre:3p; +tromperais tromper ver 149.09 97.30 0.36 0.07 cnd:pre:1s;cnd:pre:2s; +tromperait tromper ver 149.09 97.30 0.39 0.61 cnd:pre:3s; +tromperas tromper ver 149.09 97.30 0.39 0.14 ind:fut:2s; +tromperez tromper ver 149.09 97.30 0.06 0.07 ind:fut:2p; +tromperie tromperie nom f s 1.56 2.16 1.17 1.69 +tromperies tromperie nom f p 1.56 2.16 0.39 0.47 +tromperiez tromper ver 149.09 97.30 0.01 0.14 cnd:pre:2p; +tromperons tromper ver 149.09 97.30 0.01 0.00 ind:fut:1p; +tromperont tromper ver 149.09 97.30 0.21 0.14 ind:fut:3p; +trompes tromper ver 149.09 97.30 17.21 3.45 ind:pre:2s;sub:pre:2s; +trompeter trompeter ver 0.10 0.00 0.10 0.00 inf; +trompette trompette nom s 8.02 11.49 5.71 5.61 +trompettes trompette nom p 8.02 11.49 2.31 5.88 +trompettiste trompettiste nom s 0.77 0.68 0.73 0.68 +trompettistes trompettiste nom p 0.77 0.68 0.04 0.00 +trompeur trompeur adj m s 3.10 5.00 0.71 1.28 +trompeurs trompeur adj m p 3.10 5.00 0.59 0.61 +trompeuse trompeur adj f s 3.10 5.00 0.22 2.43 +trompeusement trompeusement adv 0.01 0.27 0.01 0.27 +trompeuses trompeur adj f p 3.10 5.00 1.58 0.68 +trompez tromper ver 149.09 97.30 12.82 2.43 imp:pre:2p;ind:pre:2p; +trompiez tromper ver 149.09 97.30 0.52 0.07 ind:imp:2p; +trompions tromper ver 149.09 97.30 0.14 0.34 ind:imp:1p; +trompâmes tromper ver 149.09 97.30 0.00 0.07 ind:pas:1p; +trompons tromper ver 149.09 97.30 0.25 0.34 imp:pre:1p;ind:pre:1p; +trompât tromper ver 149.09 97.30 0.00 0.54 sub:imp:3s; +trompèrent tromper ver 149.09 97.30 0.00 0.27 ind:pas:3p; +trompé tromper ver m s 149.09 97.30 29.98 17.70 par:pas;par:pas;par:pas; +trompée tromper ver f s 149.09 97.30 12.98 8.11 par:pas; +trompées tromper ver f p 149.09 97.30 0.39 0.41 par:pas; +trompés tromper ver m p 149.09 97.30 7.03 3.04 par:pas; +tronc tronc nom m s 5.81 36.62 4.84 20.74 +tronchais troncher ver 0.09 0.14 0.02 0.00 ind:imp:1s; +tronche tronche nom f s 8.92 25.68 8.25 22.57 +troncher troncher ver 0.09 0.14 0.03 0.07 inf; +tronches tronche nom f p 8.92 25.68 0.67 3.11 +tronché troncher ver m s 0.09 0.14 0.01 0.00 par:pas; +tronchée troncher ver f s 0.09 0.14 0.03 0.07 par:pas; +tronconique tronconique adj s 0.01 0.27 0.01 0.27 +troncs tronc nom m p 5.81 36.62 0.97 15.88 +tronquer tronquer ver 0.06 0.61 0.01 0.07 inf; +tronqué tronqué adj m s 0.08 1.08 0.04 0.34 +tronquée tronquer ver f s 0.06 0.61 0.03 0.27 par:pas; +tronquées tronqué adj f p 0.08 1.08 0.01 0.47 +tronqués tronqué adj m p 0.08 1.08 0.01 0.00 +tronçon tronçon nom m s 0.31 3.99 0.17 2.03 +tronçonnaient tronçonner ver 0.17 0.81 0.00 0.07 ind:imp:3p; +tronçonnait tronçonner ver 0.17 0.81 0.00 0.07 ind:imp:3s; +tronçonne tronçonner ver 0.17 0.81 0.01 0.14 imp:pre:2s;ind:pre:3s; +tronçonner tronçonner ver 0.17 0.81 0.00 0.14 inf; +tronçonneuse tronçonneur nom f s 1.63 1.08 1.63 0.95 +tronçonneuses tronçonneuse nom f p 0.22 0.00 0.22 0.00 +tronçonné tronçonner ver m s 0.17 0.81 0.16 0.07 par:pas; +tronçonnée tronçonner ver f s 0.17 0.81 0.00 0.14 par:pas; +tronçonnées tronçonner ver f p 0.17 0.81 0.00 0.14 par:pas; +tronçonnés tronçonner ver m p 0.17 0.81 0.00 0.07 par:pas; +tronçons tronçon nom m p 0.31 3.99 0.14 1.96 +trop_perçu trop_perçu nom m s 0.01 0.00 0.01 0.00 +trop_plein trop_plein nom m s 0.30 2.64 0.30 2.50 +trop_plein trop_plein nom m p 0.30 2.64 0.00 0.14 +trop trop adv_sup 859.54 790.00 859.54 790.00 +trope trope nom m s 0.00 0.07 0.00 0.07 +trophée trophée nom m s 7.02 4.93 4.85 2.57 +trophées trophée nom m p 7.02 4.93 2.17 2.36 +tropical tropical adj m s 3.28 6.62 1.56 1.28 +tropicale tropical adj f s 3.28 6.62 0.96 2.77 +tropicales tropical adj f p 3.28 6.62 0.45 1.42 +tropicaux tropical adj m p 3.28 6.62 0.30 1.15 +tropique tropique nom m s 1.37 2.43 0.38 0.20 +tropiques tropique nom m p 1.37 2.43 0.99 2.23 +tropisme tropisme nom m s 0.00 0.61 0.00 0.54 +tropismes tropisme nom m p 0.00 0.61 0.00 0.07 +troposphère troposphère nom f s 0.01 0.20 0.01 0.20 +troposphérique troposphérique adj f s 0.00 0.20 0.00 0.14 +troposphériques troposphérique adj p 0.00 0.20 0.00 0.07 +tropézienne tropézien nom f s 0.00 0.14 0.00 0.14 +tropéziens tropézien adj m p 0.00 0.07 0.00 0.07 +troqua troquer ver 1.64 4.73 0.03 0.41 ind:pas:3s; +troquaient troquer ver 1.64 4.73 0.00 0.27 ind:imp:3p; +troquais troquer ver 1.64 4.73 0.00 0.07 ind:imp:1s; +troquait troquer ver 1.64 4.73 0.01 0.20 ind:imp:3s; +troquant troquer ver 1.64 4.73 0.04 0.07 par:pre; +troquas troquer ver 1.64 4.73 0.00 0.07 ind:pas:2s; +troque troquer ver 1.64 4.73 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +troquer troquer ver 1.64 4.73 0.56 2.36 inf; +troquera troquer ver 1.64 4.73 0.01 0.00 ind:fut:3s; +troquerai troquer ver 1.64 4.73 0.11 0.07 ind:fut:1s; +troquerais troquer ver 1.64 4.73 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +troquet troquet nom m s 0.34 6.82 0.33 4.66 +troquets troquet nom m p 0.34 6.82 0.01 2.16 +troquez troquer ver 1.64 4.73 0.17 0.07 imp:pre:2p;ind:pre:2p; +troquèrent troquer ver 1.64 4.73 0.10 0.07 ind:pas:3p; +troqué troquer ver m s 1.64 4.73 0.35 0.74 par:pas; +troquée troquer ver f s 1.64 4.73 0.06 0.07 par:pas; +troquées troquer ver f p 1.64 4.73 0.04 0.14 par:pas; +troqués troquer ver m p 1.64 4.73 0.01 0.07 par:pas; +trot trot nom m s 1.67 10.47 1.66 10.41 +troène troène nom m s 0.02 1.28 0.01 0.07 +troènes troène nom m p 0.02 1.28 0.01 1.22 +trots trot nom m p 1.67 10.47 0.01 0.07 +trotskisme trotskisme nom m s 0.00 0.14 0.00 0.14 +trotskiste trotskiste adj s 0.51 0.68 0.51 0.41 +trotskistes trotskiste nom p 0.03 0.47 0.02 0.41 +trotskystes trotskyste nom p 0.01 0.20 0.01 0.20 +trotta trotter ver 2.66 10.27 0.14 0.20 ind:pas:3s; +trottaient trotter ver 2.66 10.27 0.04 0.74 ind:imp:3p; +trottais trotter ver 2.66 10.27 0.00 0.07 ind:imp:1s; +trottait trotter ver 2.66 10.27 0.54 2.16 ind:imp:3s; +trottant trotter ver 2.66 10.27 0.00 1.08 par:pre; +trotte_menu trotte_menu adj m s 0.00 0.41 0.00 0.41 +trotte trotter ver 2.66 10.27 0.75 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trottent trotter ver 2.66 10.27 0.17 0.81 ind:pre:3p; +trotter trotter ver 2.66 10.27 0.90 2.64 inf; +trottera trotter ver 2.66 10.27 0.01 0.07 ind:fut:3s; +trotterions trotter ver 2.66 10.27 0.00 0.07 cnd:pre:1p; +trottes trotter ver 2.66 10.27 0.01 0.00 ind:pre:2s; +trotteur trotteur nom m s 0.09 0.88 0.01 0.00 +trotteurs trotteur nom m p 0.09 0.88 0.02 0.27 +trotteuse trotteur nom f s 0.09 0.88 0.06 0.54 +trotteuses trotteuse nom f p 0.01 0.00 0.01 0.00 +trottez trotter ver 2.66 10.27 0.03 0.07 imp:pre:2p;ind:pre:2p; +trottignolles trottignolle nom m p 0.00 0.07 0.00 0.07 +trottin trottin nom m s 0.00 0.14 0.00 0.07 +trottina trottiner ver 0.22 7.50 0.00 0.20 ind:pas:3s; +trottinais trottiner ver 0.22 7.50 0.00 0.07 ind:imp:1s; +trottinait trottiner ver 0.22 7.50 0.01 1.55 ind:imp:3s; +trottinant trottiner ver 0.22 7.50 0.01 2.64 par:pre; +trottine trottiner ver 0.22 7.50 0.01 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trottinement trottinement nom m s 0.01 0.81 0.01 0.74 +trottinements trottinement nom m p 0.01 0.81 0.00 0.07 +trottinent trottiner ver 0.22 7.50 0.00 0.20 ind:pre:3p; +trottiner trottiner ver 0.22 7.50 0.03 1.62 inf; +trottinerait trottiner ver 0.22 7.50 0.00 0.07 cnd:pre:3s; +trottinette trottinette nom f s 0.35 0.81 0.32 0.68 +trottinettes trottinette nom f p 0.35 0.81 0.04 0.14 +trottinez trottiner ver 0.22 7.50 0.14 0.00 imp:pre:2p;ind:pre:2p; +trottinions trottiner ver 0.22 7.50 0.00 0.07 ind:imp:1p; +trottins trottin nom m p 0.00 0.14 0.00 0.07 +trottiné trottiner ver m s 0.22 7.50 0.01 0.14 par:pas; +trottions trotter ver 2.66 10.27 0.00 0.14 ind:imp:1p; +trottoir trottoir nom m s 10.87 87.36 9.93 70.54 +trottoirs trottoir nom m p 10.87 87.36 0.94 16.82 +trottons trotter ver 2.66 10.27 0.00 0.14 ind:pre:1p; +trotté trotter ver m s 2.66 10.27 0.09 0.41 par:pas; +trou_du_cul trou_du_cul nom m s 0.43 0.14 0.29 0.14 +trou_trou trou_trou nom m s 0.00 0.34 0.00 0.14 +trou_trou trou_trou nom m p 0.00 0.34 0.00 0.20 +trou trou nom m s 90.72 108.38 75.32 76.08 +troua trouer ver 4.27 11.76 0.00 0.34 ind:pas:3s; +trouai trouer ver 4.27 11.76 0.00 0.07 ind:pas:1s; +trouaient trouer ver 4.27 11.76 0.00 0.81 ind:imp:3p; +trouais trouer ver 4.27 11.76 0.00 0.07 ind:imp:1s; +trouait trouer ver 4.27 11.76 0.01 1.22 ind:imp:3s; +trouant trouer ver 4.27 11.76 0.01 0.74 par:pre; +troubades troubade nom m p 0.00 0.07 0.00 0.07 +troubadour troubadour nom m s 0.84 1.62 0.50 0.68 +troubadours troubadour nom m p 0.84 1.62 0.34 0.95 +troubla troubler ver 16.33 37.97 0.03 3.51 ind:pas:3s; +troublai troubler ver 16.33 37.97 0.00 0.07 ind:pas:1s; +troublaient troubler ver 16.33 37.97 0.01 2.03 ind:imp:3p; +troublais troubler ver 16.33 37.97 0.00 0.14 ind:imp:1s; +troublait troubler ver 16.33 37.97 0.76 4.59 ind:imp:3s; +troublant troublant adj m s 2.74 8.99 1.25 4.19 +troublante troublant adj f s 2.74 8.99 0.93 2.84 +troublantes troublant adj f p 2.74 8.99 0.42 1.08 +troublants troublant adj m p 2.74 8.99 0.14 0.88 +trouble_fête trouble_fête nom p 0.28 0.00 0.28 0.00 +trouble trouble nom m s 12.84 25.68 5.76 18.31 +troublent troubler ver 16.33 37.97 0.53 0.95 ind:pre:3p; +troubler troubler ver 16.33 37.97 2.94 8.45 inf; +troublera troubler ver 16.33 37.97 0.15 0.14 ind:fut:3s; +troublerais troubler ver 16.33 37.97 0.00 0.07 cnd:pre:2s; +troublerait troubler ver 16.33 37.97 0.42 0.41 cnd:pre:3s; +troubleront troubler ver 16.33 37.97 0.01 0.07 ind:fut:3p; +troubles trouble nom m p 12.84 25.68 7.08 7.36 +troublez troubler ver 16.33 37.97 0.50 0.14 imp:pre:2p;ind:pre:2p; +troublât troubler ver 16.33 37.97 0.01 0.14 sub:imp:3s; +troublèrent troubler ver 16.33 37.97 0.00 0.61 ind:pas:3p; +troublé troubler ver m s 16.33 37.97 4.58 7.50 par:pas; +troublée troubler ver f s 16.33 37.97 1.72 3.45 par:pas; +troublées troubler ver f p 16.33 37.97 0.04 0.41 par:pas; +troublés troublé adj m p 3.32 7.97 0.57 1.08 +trouduc trouduc nom m s 3.68 0.41 3.68 0.41 +trouducuteries trouducuterie nom f p 0.00 0.07 0.00 0.07 +troue trouer ver 4.27 11.76 1.30 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trouent trouer ver 4.27 11.76 0.04 0.95 ind:pre:3p; +trouer trouer ver 4.27 11.76 1.32 1.35 inf; +trouerai trouer ver 4.27 11.76 0.02 0.00 ind:fut:1s; +trouerais trouer ver 4.27 11.76 0.03 0.00 cnd:pre:1s; +trouez trouer ver 4.27 11.76 0.30 0.00 imp:pre:2p;ind:pre:2p; +troufignard troufignard nom m s 0.00 0.07 0.00 0.07 +troufignon troufignon nom m s 0.03 0.14 0.02 0.14 +troufignons troufignon nom m p 0.03 0.14 0.01 0.00 +troufion troufion nom m s 1.13 1.76 0.78 0.68 +troufions troufion nom m p 1.13 1.76 0.34 1.08 +trouillait trouiller ver 0.00 0.07 0.00 0.07 ind:imp:3s; +trouillard trouillard nom m s 3.76 1.01 3.34 0.54 +trouillarde trouillard adj f s 1.66 0.54 0.26 0.00 +trouillards trouillard nom m p 3.76 1.01 0.27 0.47 +trouille trouille nom f s 17.43 15.74 16.90 14.46 +trouilles trouille nom f p 17.43 15.74 0.53 1.28 +trouillomètre trouillomètre nom m s 0.14 0.20 0.14 0.20 +troupe troupe nom f s 30.93 105.41 10.30 32.30 +troupeau troupeau nom m s 11.48 25.54 9.73 16.28 +troupeaux troupeau nom m p 11.48 25.54 1.76 9.26 +troupes troupe nom f p 30.93 105.41 20.64 73.11 +troupier troupier nom m s 0.20 1.22 0.06 0.47 +troupiers troupier nom m p 0.20 1.22 0.14 0.74 +trou_du_cul trou_du_cul nom m p 0.43 0.14 0.14 0.00 +trous trou nom m p 90.72 108.38 15.40 32.30 +troussa trousser ver 0.39 2.30 0.00 0.07 ind:pas:3s; +troussaient trousser ver 0.39 2.30 0.00 0.07 ind:imp:3p; +troussait trousser ver 0.39 2.30 0.00 0.34 ind:imp:3s; +troussant trousser ver 0.39 2.30 0.00 0.27 par:pre; +trousse trousse nom f s 8.79 8.92 3.77 4.59 +trousseau trousseau nom m s 2.14 5.95 2.13 5.41 +trousseaux trousseau nom m p 2.14 5.95 0.01 0.54 +troussequin troussequin nom m s 0.00 0.07 0.00 0.07 +trousser trousser ver 0.39 2.30 0.01 0.47 inf; +trousses trousse nom f p 8.79 8.92 5.03 4.32 +trousseur trousseur nom m s 0.00 0.14 0.00 0.14 +troussèrent trousser ver 0.39 2.30 0.00 0.07 ind:pas:3p; +troussé trousser ver m s 0.39 2.30 0.14 0.27 par:pas; +troussée trousser ver f s 0.39 2.30 0.11 0.27 par:pas; +troussées troussé adj f p 0.00 1.01 0.00 0.34 +troussés troussé adj m p 0.00 1.01 0.00 0.14 +trouèrent trouer ver 4.27 11.76 0.00 0.07 ind:pas:3p; +troué trouer ver m s 4.27 11.76 0.89 1.96 imp:pre:2s;par:pas; +trouée trouée nom f s 0.30 5.81 0.27 5.00 +trouées troué adj f p 0.96 5.27 0.43 1.01 +troués troué adj m p 0.96 5.27 0.20 0.74 +trouva trouver ver 1335.49 972.50 4.37 59.53 ind:pas:3s; +trouvable trouvable adj s 0.04 0.07 0.04 0.07 +trouvai trouver ver 1335.49 972.50 1.00 18.51 ind:pas:1s; +trouvaient trouver ver 1335.49 972.50 3.38 36.35 ind:imp:3p; +trouvaille trouvaille nom f s 1.90 7.84 1.38 5.14 +trouvailles trouvaille nom f p 1.90 7.84 0.52 2.70 +trouvais trouver ver 1335.49 972.50 13.84 37.84 ind:imp:1s;ind:imp:2s; +trouvait trouver ver 1335.49 972.50 17.91 149.19 ind:imp:3s; +trouvant trouver ver 1335.49 972.50 2.57 15.14 par:pre; +trouvas trouver ver 1335.49 972.50 0.00 0.14 ind:pas:2s; +trouvasse trouver ver 1335.49 972.50 0.00 0.14 sub:imp:1s; +trouvassent trouver ver 1335.49 972.50 0.00 0.34 sub:imp:3p; +trouve trouver ver 1335.49 972.50 284.45 163.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +trouvent trouver ver 1335.49 972.50 22.04 22.50 ind:pre:3p;sub:pre:3p; +trouver trouver ver 1335.49 972.50 324.94 192.70 inf;;inf;;inf;;inf;; +trouvera trouver ver 1335.49 972.50 29.30 11.42 ind:fut:3s; +trouverai trouver ver 1335.49 972.50 26.27 4.12 ind:fut:1s; +trouveraient trouver ver 1335.49 972.50 0.75 3.58 cnd:pre:3p; +trouverais trouver ver 1335.49 972.50 6.35 4.93 cnd:pre:1s;cnd:pre:2s; +trouverait trouver ver 1335.49 972.50 4.24 15.34 cnd:pre:3s; +trouveras trouver ver 1335.49 972.50 19.10 3.78 ind:fut:2s; +trouverez trouver ver 1335.49 972.50 18.23 5.61 ind:fut:2p; +trouveriez trouver ver 1335.49 972.50 1.05 0.41 cnd:pre:2p; +trouverions trouver ver 1335.49 972.50 0.28 1.08 cnd:pre:1p; +trouverons trouver ver 1335.49 972.50 8.06 1.55 ind:fut:1p; +trouveront trouver ver 1335.49 972.50 6.99 3.45 ind:fut:3p; +trouves trouver ver 1335.49 972.50 70.05 17.91 ind:pre:2s;sub:pre:1p;sub:pre:2s; +trouveur trouveur nom m s 0.03 0.07 0.02 0.00 +trouveurs trouveur nom m p 0.03 0.07 0.01 0.07 +trouvez trouver ver 1335.49 972.50 62.69 14.12 imp:pre:2p;ind:pre:2p; +trouviez trouver ver 1335.49 972.50 2.98 1.01 ind:imp:2p; +trouvions trouver ver 1335.49 972.50 1.39 6.28 ind:imp:1p;sub:pre:1p; +trouvâmes trouver ver 1335.49 972.50 0.28 2.70 ind:pas:1p; +trouvons trouver ver 1335.49 972.50 10.25 4.32 imp:pre:1p;ind:pre:1p; +trouvât trouver ver 1335.49 972.50 0.00 3.85 sub:imp:3s; +trouvère trouvère nom m s 0.20 0.20 0.20 0.07 +trouvèrent trouver ver 1335.49 972.50 0.88 8.31 ind:pas:3p; +trouvères trouvère nom m p 0.20 0.20 0.00 0.14 +trouvé trouver ver m s 1335.49 972.50 339.29 135.74 par:pas;par:pas;par:pas; +trouvée trouver ver f s 1335.49 972.50 36.28 16.42 par:pas; +trouvées trouver ver f p 1335.49 972.50 5.44 2.77 par:pas; +trouvés trouver ver m p 1335.49 972.50 10.85 7.64 par:pas;par:pas;par:pas; +troyen troyen adj m s 0.24 0.14 0.23 0.07 +troyenne troyen adj f s 0.24 0.14 0.01 0.07 +trèfle trèfle nom m s 3.52 5.00 2.75 4.19 +trèfles trèfle nom m p 3.52 5.00 0.78 0.81 +trèpe trèpe nom m s 0.00 1.49 0.00 1.49 +très très adv 1589.92 1120.81 1589.92 1120.81 +truand truand nom m s 5.82 6.49 2.52 2.57 +truandage truandage nom m s 0.00 0.68 0.00 0.54 +truandages truandage nom m p 0.00 0.68 0.00 0.14 +truandaille truandaille nom f s 0.00 0.27 0.00 0.27 +truande truand nom f s 5.82 6.49 0.03 0.14 +truander truander ver 0.35 0.14 0.13 0.00 inf; +truanderie truanderie nom f s 0.00 0.54 0.00 0.54 +truandes truander ver 0.35 0.14 0.02 0.00 ind:pre:2s; +truands truand nom m p 5.82 6.49 3.27 3.72 +truandé truander ver m s 0.35 0.14 0.17 0.07 par:pas; +trublion trublion nom m s 0.09 0.34 0.08 0.14 +trublions trublion nom m p 0.09 0.34 0.01 0.20 +trébucha trébucher ver 4.91 12.64 0.01 1.82 ind:pas:3s; +trébuchai trébucher ver 4.91 12.64 0.01 0.27 ind:pas:1s; +trébuchaient trébucher ver 4.91 12.64 0.00 0.20 ind:imp:3p; +trébuchais trébucher ver 4.91 12.64 0.05 0.27 ind:imp:1s; +trébuchait trébucher ver 4.91 12.64 0.04 1.49 ind:imp:3s; +trébuchant trébucher ver 4.91 12.64 0.23 3.31 par:pre; +trébuchante trébuchant adj f s 0.07 1.55 0.00 0.47 +trébuchantes trébuchant adj f p 0.07 1.55 0.04 0.34 +trébuchants trébuchant adj m p 0.07 1.55 0.00 0.20 +trébuche trébucher ver 4.91 12.64 0.88 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trébuchement trébuchement nom m s 0.02 0.20 0.01 0.07 +trébuchements trébuchement nom m p 0.02 0.20 0.01 0.14 +trébuchent trébucher ver 4.91 12.64 0.13 0.47 ind:pre:3p; +trébucher trébucher ver 4.91 12.64 1.14 1.89 inf; +trébuches trébucher ver 4.91 12.64 0.17 0.00 ind:pre:2s; +trébuchet trébuchet nom m s 0.01 0.27 0.01 0.27 +trébuchez trébucher ver 4.91 12.64 0.05 0.00 imp:pre:2p;ind:pre:2p; +trébuchons trébucher ver 4.91 12.64 0.00 0.34 imp:pre:1p;ind:pre:1p; +trébuché trébucher ver m s 4.91 12.64 2.21 0.74 par:pas; +truc truc nom m s 381.34 87.77 274.94 51.15 +trucage trucage nom m s 0.69 0.41 0.25 0.41 +trucages trucage nom m p 0.69 0.41 0.44 0.00 +truchement truchement nom m s 0.14 2.57 0.14 2.43 +truchements truchement nom m p 0.14 2.57 0.00 0.14 +trucida trucider ver 1.01 1.22 0.00 0.34 ind:pas:3s; +trucidais trucider ver 1.01 1.22 0.00 0.07 ind:imp:1s; +trucidant trucider ver 1.01 1.22 0.00 0.07 par:pre; +trucident trucider ver 1.01 1.22 0.01 0.00 ind:pre:3p; +trucider trucider ver 1.01 1.22 0.43 0.47 inf; +truciderai trucider ver 1.01 1.22 0.03 0.00 ind:fut:1s; +trucides trucider ver 1.01 1.22 0.01 0.00 ind:pre:2s; +trucidons trucider ver 1.01 1.22 0.01 0.00 imp:pre:1p; +trucidé trucider ver m s 1.01 1.22 0.39 0.14 par:pas; +trucidée trucider ver f s 1.01 1.22 0.01 0.14 par:pas; +trucidés trucider ver m p 1.01 1.22 0.12 0.00 par:pas; +truck truck nom m s 0.39 0.07 0.35 0.00 +trucks truck nom m p 0.39 0.07 0.04 0.07 +trucmuche trucmuche nom m s 0.11 0.14 0.11 0.14 +trucs truc nom m p 381.34 87.77 106.41 36.62 +truculence truculence nom f s 0.00 0.27 0.00 0.27 +truculent truculent adj m s 0.02 0.54 0.02 0.27 +truculente truculent adj f s 0.02 0.54 0.00 0.27 +truelle truelle nom f s 0.73 2.43 0.73 2.30 +truelles truelle nom f p 0.73 2.43 0.00 0.14 +truffaient truffer ver 1.29 3.85 0.00 0.14 ind:imp:3p; +truffait truffer ver 1.29 3.85 0.00 0.14 ind:imp:3s; +truffant truffer ver 1.29 3.85 0.03 0.20 par:pre; +truffe truffe nom f s 2.65 4.73 0.82 3.38 +truffer truffer ver 1.29 3.85 0.08 0.14 inf; +truffes truffe nom f p 2.65 4.73 1.83 1.35 +truffier truffier nom m s 0.01 0.34 0.00 0.14 +truffiers truffier nom m p 0.01 0.34 0.01 0.20 +truffons truffer ver 1.29 3.85 0.01 0.00 imp:pre:1p; +truffé truffer ver m s 1.29 3.85 0.69 0.74 par:pas; +truffée truffer ver f s 1.29 3.85 0.27 0.81 par:pas; +truffées truffer ver f p 1.29 3.85 0.02 0.41 par:pas; +truffés truffer ver m p 1.29 3.85 0.12 1.15 par:pas; +tréfilés tréfiler ver m p 0.00 0.07 0.00 0.07 par:pas; +tréflières tréflière nom f p 0.00 0.07 0.00 0.07 +tréfonds tréfonds nom m 0.62 2.91 0.62 2.91 +truie truie nom f s 3.35 2.36 3.16 2.16 +truies truie nom f p 3.35 2.36 0.19 0.20 +truisme truisme nom m s 0.03 0.20 0.02 0.14 +truismes truisme nom m p 0.03 0.20 0.01 0.07 +truite truite nom f s 3.65 7.91 2.35 3.38 +truitelle truitelle nom f s 0.00 0.07 0.00 0.07 +truites truite nom f p 3.65 7.91 1.30 4.53 +tréma tréma nom m s 0.04 0.14 0.02 0.14 +trémail trémail nom m s 0.00 0.14 0.00 0.14 +trémas tréma nom m p 0.04 0.14 0.01 0.00 +trumeau trumeau nom m s 0.01 0.61 0.01 0.34 +trumeaux trumeau nom m p 0.01 0.61 0.00 0.27 +trémie trémie nom f s 0.10 0.41 0.10 0.00 +trémies trémie nom f p 0.10 0.41 0.00 0.41 +trémière trémière adj f s 0.01 1.89 0.00 0.54 +trémières trémière adj f p 0.01 1.89 0.01 1.35 +trémois trémois nom m 0.00 0.07 0.00 0.07 +trémolo trémolo nom m s 0.19 1.15 0.16 0.74 +trémolos trémolo nom m p 0.19 1.15 0.02 0.41 +trémoussa trémousser ver 0.93 2.23 0.00 0.14 ind:pas:3s; +trémoussaient trémousser ver 0.93 2.23 0.00 0.47 ind:imp:3p; +trémoussait trémousser ver 0.93 2.23 0.03 0.27 ind:imp:3s; +trémoussant trémousser ver 0.93 2.23 0.02 0.34 par:pre; +trémousse trémousser ver 0.93 2.23 0.36 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trémoussement trémoussement nom m s 0.00 0.34 0.00 0.14 +trémoussements trémoussement nom m p 0.00 0.34 0.00 0.20 +trémoussent trémousser ver 0.93 2.23 0.06 0.07 ind:pre:3p; +trémousser trémousser ver 0.93 2.23 0.45 0.41 inf; +trémousses trémousser ver 0.93 2.23 0.02 0.00 ind:pre:2s; +trémoussât trémousser ver 0.93 2.23 0.00 0.07 sub:imp:3s; +trémoussèrent trémousser ver 0.93 2.23 0.00 0.07 ind:pas:3p; +trémulant trémuler ver 0.00 0.27 0.00 0.20 par:pre; +trémulante trémulant adj f s 0.00 0.14 0.00 0.07 +trémulation trémulation nom f s 0.00 0.34 0.00 0.34 +trémuler trémuler ver 0.00 0.27 0.00 0.07 inf; +trépan trépan nom m s 0.05 0.14 0.05 0.14 +trépanation trépanation nom f s 0.20 0.00 0.20 0.00 +trépaner trépaner ver 0.17 0.34 0.03 0.34 inf; +trépané trépaner ver m s 0.17 0.34 0.14 0.00 par:pas; +trépanée trépané nom f s 0.00 0.20 0.00 0.14 +trépas trépas nom m 0.38 1.55 0.38 1.55 +trépassaient trépasser ver 0.39 1.08 0.00 0.07 ind:imp:3p; +trépassait trépasser ver 0.39 1.08 0.00 0.14 ind:imp:3s; +trépassant trépasser ver 0.39 1.08 0.00 0.07 par:pre; +trépasse trépasser ver 0.39 1.08 0.23 0.14 ind:pre:3s; +trépassent trépasser ver 0.39 1.08 0.01 0.14 ind:pre:3p; +trépasser trépasser ver 0.39 1.08 0.01 0.34 inf; +trépasserait trépasser ver 0.39 1.08 0.00 0.07 cnd:pre:3s; +trépasseront trépasser ver 0.39 1.08 0.02 0.00 ind:fut:3p; +trépassé trépasser ver m s 0.39 1.08 0.12 0.07 par:pas; +trépassée trépassé adj f s 0.02 0.20 0.01 0.07 +trépassées trépassé nom f p 0.16 0.47 0.01 0.00 +trépassés trépassé nom m p 0.16 0.47 0.03 0.34 +trépidant trépidant adj m s 0.33 1.28 0.03 0.34 +trépidante trépidant adj f s 0.33 1.28 0.18 0.61 +trépidantes trépidant adj f p 0.33 1.28 0.12 0.14 +trépidants trépidant adj m p 0.33 1.28 0.00 0.20 +trépidation trépidation nom f s 0.10 1.96 0.10 1.22 +trépidations trépidation nom f p 0.10 1.96 0.00 0.74 +trépide trépider ver 0.01 0.68 0.01 0.20 ind:pre:3s; +trépident trépider ver 0.01 0.68 0.00 0.07 ind:pre:3p; +trépider trépider ver 0.01 0.68 0.00 0.27 inf; +trépied trépied nom m s 1.15 2.70 1.14 2.30 +trépieds trépied nom m p 1.15 2.70 0.01 0.41 +trépigna trépigner ver 0.32 3.85 0.01 0.20 ind:pas:3s; +trépignaient trépigner ver 0.32 3.85 0.14 0.20 ind:imp:3p; +trépignais trépigner ver 0.32 3.85 0.00 0.27 ind:imp:1s; +trépignait trépigner ver 0.32 3.85 0.01 1.15 ind:imp:3s; +trépignant trépignant adj m s 0.01 1.08 0.01 0.95 +trépignante trépignant adj f s 0.01 1.08 0.00 0.07 +trépignants trépignant adj m p 0.01 1.08 0.00 0.07 +trépigne trépigner ver 0.32 3.85 0.06 0.74 ind:pre:1s;ind:pre:3s; +trépignement trépignement nom m s 0.02 0.61 0.01 0.07 +trépignements trépignement nom m p 0.02 0.61 0.01 0.54 +trépignent trépigner ver 0.32 3.85 0.05 0.20 ind:pre:3p; +trépigner trépigner ver 0.32 3.85 0.02 0.81 inf; +trépignerai trépigner ver 0.32 3.85 0.00 0.07 ind:fut:1s; +trépignez trépigner ver 0.32 3.85 0.01 0.07 imp:pre:2p;ind:pre:2p; +trépigné trépigner ver m s 0.32 3.85 0.01 0.07 par:pas; +trépignée trépigner ver f s 0.32 3.85 0.00 0.07 par:pas; +tréponème tréponème nom m s 0.00 0.27 0.00 0.07 +tréponèmes tréponème nom m p 0.00 0.27 0.00 0.20 +truqua truquer ver 4.62 3.45 0.00 0.07 ind:pas:3s; +truquage truquage nom m s 0.45 1.15 0.34 0.54 +truquages truquage nom m p 0.45 1.15 0.11 0.61 +truquaient truquer ver 4.62 3.45 0.02 0.07 ind:imp:3p; +truquait truquer ver 4.62 3.45 0.05 0.00 ind:imp:3s; +truquant truquer ver 4.62 3.45 0.04 0.14 par:pre; +truque truquer ver 4.62 3.45 0.59 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +truquer truquer ver 4.62 3.45 0.85 0.95 inf; +truquerai truquer ver 4.62 3.45 0.03 0.07 ind:fut:1s; +truquerez truquer ver 4.62 3.45 0.02 0.00 ind:fut:2p; +truqueur truqueur nom m s 0.28 0.34 0.25 0.20 +truqueurs truqueur nom m p 0.28 0.34 0.01 0.07 +truqueuse truqueur nom f s 0.28 0.34 0.02 0.07 +truquez truquer ver 4.62 3.45 0.01 0.00 imp:pre:2p; +truquions truquer ver 4.62 3.45 0.00 0.07 ind:imp:1p; +truqué truquer ver m s 4.62 3.45 1.88 0.88 par:pas; +truquée truquer ver f s 4.62 3.45 0.71 0.34 par:pas; +truquées truqué adj f p 1.60 2.03 0.29 0.47 +truqués truquer ver m p 4.62 3.45 0.31 0.20 par:pas; +trésor trésor nom m s 49.92 34.66 44.86 20.14 +trésorerie trésorerie nom f s 0.40 0.81 0.40 0.81 +trésorier_payeur trésorier_payeur nom m s 0.02 0.07 0.02 0.07 +trésorier trésorier nom m s 1.83 1.82 1.55 1.62 +trésoriers trésorier nom m p 1.83 1.82 0.02 0.00 +trésorière trésorier nom f s 1.83 1.82 0.26 0.20 +trésors trésor nom m p 49.92 34.66 5.07 14.53 +trusquin trusquin nom m s 0.00 0.14 0.00 0.14 +trust trust nom m s 1.16 1.08 1.11 0.54 +trustais truster ver 0.02 0.34 0.00 0.07 ind:imp:1s; +trustait truster ver 0.02 0.34 0.00 0.07 ind:imp:3s; +truste truster ver 0.02 0.34 0.00 0.07 ind:pre:3s; +trustee trustee nom m s 0.00 0.27 0.00 0.07 +trustees trustee nom m p 0.00 0.27 0.00 0.20 +trusteeship trusteeship nom m s 0.00 0.41 0.00 0.34 +trusteeships trusteeship nom m p 0.00 0.41 0.00 0.07 +truster truster ver 0.02 0.34 0.02 0.07 inf; +trusterait truster ver 0.02 0.34 0.00 0.07 cnd:pre:3s; +trusts trust nom m p 1.16 1.08 0.05 0.54 +tréteau tréteau nom m s 0.64 3.99 0.37 0.81 +tréteaux tréteau nom m p 0.64 3.99 0.27 3.18 +trêve trêve nom f s 6.69 11.42 6.68 11.15 +trêves trêve nom f p 6.69 11.42 0.01 0.27 +trypanosome trypanosome nom m s 0.00 0.14 0.00 0.07 +trypanosomes trypanosome nom m p 0.00 0.14 0.00 0.07 +trypanosomiase trypanosomiase nom f s 0.13 0.00 0.13 0.00 +trypsine trypsine nom f s 0.01 0.00 0.01 0.00 +tryptophane tryptophane nom m s 0.02 0.00 0.02 0.00 +tsar tsar nom m s 14.30 8.85 11.65 6.82 +tsarine tsar nom f s 14.30 8.85 2.27 0.88 +tsarisme tsarisme nom m s 0.00 0.34 0.00 0.34 +tsariste tsariste adj m s 0.10 0.34 0.10 0.27 +tsaristes tsariste adj m p 0.10 0.34 0.00 0.07 +tsars tsar nom m p 14.30 8.85 0.38 1.15 +tsarévitch tsarévitch nom m s 2.90 0.00 2.90 0.00 +tsigane tsigane adj s 0.27 0.20 0.27 0.14 +tsiganes tsigane nom p 0.14 0.34 0.01 0.27 +tsoin_tsoin tsoin_tsoin nom m s 0.01 0.47 0.01 0.47 +tss_tss tss_tss nom m 0.01 0.14 0.01 0.07 +tss_tss tss_tss nom m 0.01 0.14 0.00 0.07 +tsé_tsé tsé_tsé nom f 0.00 0.07 0.00 0.07 +tsuica tsuica nom f s 0.14 0.00 0.14 0.00 +tsunami tsunami nom m s 0.53 0.00 0.53 0.00 +tète téter ver 1.71 5.88 0.64 1.35 imp:pre:2s;ind:pre:3s; +tètent téter ver 1.71 5.88 0.00 0.20 ind:pre:3p; +tu_autem tu_autem nom m s 0.00 0.07 0.00 0.07 +té té ono 0.80 0.47 0.80 0.47 +tu tu pro_per s 14661.76 2537.03 14661.76 2537.03 +tua tuer ver 928.05 171.15 2.00 2.03 ind:pas:3s; +tuai tuer ver 928.05 171.15 0.25 0.07 ind:pas:1s; +tuaient tuer ver 928.05 171.15 0.91 1.28 ind:imp:3p; +tuais tuer ver 928.05 171.15 1.89 0.54 ind:imp:1s;ind:imp:2s; +tuait tuer ver 928.05 171.15 4.77 5.68 ind:imp:3s; +tuant tuer ver 928.05 171.15 6.42 1.96 par:pre; +tuante tuant adj f s 0.76 1.08 0.01 0.27 +tuantes tuant adj f p 0.76 1.08 0.00 0.14 +tuants tuant adj m p 0.76 1.08 0.01 0.00 +tuas tuer ver 928.05 171.15 0.18 0.00 ind:pas:2s; +tub tub nom m s 0.08 1.15 0.07 1.15 +tuba tuba nom m s 1.44 0.54 1.38 0.47 +tubages tubage nom m p 0.00 0.07 0.00 0.07 +tubard tubard adj m s 0.20 1.28 0.08 0.88 +tubarde tubard adj f s 0.20 1.28 0.12 0.14 +tubardise tubardise nom f s 0.00 0.68 0.00 0.68 +tubards tubard nom m p 0.16 0.95 0.10 0.34 +tubas tuba nom m p 1.44 0.54 0.06 0.07 +tube tube nom m s 17.40 20.47 12.16 11.35 +tuber tuber ver 0.41 0.34 0.01 0.20 inf; +tubercule tubercule nom m s 0.17 0.61 0.02 0.34 +tubercules tubercule nom m p 0.17 0.61 0.15 0.27 +tuberculeuse tuberculeux adj f s 0.44 2.16 0.38 0.81 +tuberculeuses tuberculeux adj f p 0.44 2.16 0.01 0.27 +tuberculeux tuberculeux adj m 0.44 2.16 0.05 1.08 +tuberculine tuberculine nom f s 0.00 0.14 0.00 0.14 +tuberculose tuberculose nom f s 2.44 3.04 2.44 3.04 +tubes tube nom m p 17.40 20.47 5.24 9.12 +tubs tub nom m p 0.08 1.15 0.01 0.00 +tubé tuber ver m s 0.41 0.34 0.14 0.14 par:pas; +tubulaire tubulaire adj s 0.07 0.27 0.06 0.07 +tubulaires tubulaire adj m p 0.07 0.27 0.01 0.20 +tubule tubule nom m s 0.01 0.00 0.01 0.00 +tubuleuses tubuleux adj f p 0.00 0.07 0.00 0.07 +tubulure tubulure nom f s 0.00 1.22 0.00 0.14 +tubulures tubulure nom f p 0.00 1.22 0.00 1.08 +tubéreuse tubéreux adj f s 0.06 0.54 0.04 0.14 +tubéreuses tubéreux adj f p 0.06 0.54 0.02 0.34 +tubéreux tubéreux adj m p 0.06 0.54 0.00 0.07 +tubérosité tubérosité nom f s 0.01 0.00 0.01 0.00 +tudesque tudesque adj s 0.00 0.47 0.00 0.27 +tudesques tudesque adj m p 0.00 0.47 0.00 0.20 +tudieu tudieu ono 1.11 0.27 1.11 0.27 +tue_loup tue_loup nom m s 0.06 0.00 0.05 0.00 +tue_loup tue_loup nom m p 0.06 0.00 0.01 0.00 +tue_mouche tue_mouche adj m s 0.15 0.54 0.00 0.07 +tue_mouche tue_mouche adj p 0.15 0.54 0.15 0.47 +tue tuer ver 928.05 171.15 116.46 16.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tuent tuer ver 928.05 171.15 14.08 3.31 ind:pre:3p; +tuer tuer ver 928.05 171.15 346.17 65.54 inf;;inf;;inf;; +tuera tuer ver 928.05 171.15 19.27 1.42 ind:fut:3s; +tuerai tuer ver 928.05 171.15 18.55 2.97 ind:fut:1s; +tuerais tuer ver 928.05 171.15 6.70 1.15 cnd:pre:1s;cnd:pre:2s; +tuerait tuer ver 928.05 171.15 8.77 2.23 cnd:pre:3s; +tueras tuer ver 928.05 171.15 3.21 0.41 ind:fut:2s; +tuerez tuer ver 928.05 171.15 1.52 0.20 ind:fut:2p; +tuerie tuerie nom f s 3.17 2.77 2.22 1.35 +tueries tuerie nom f p 3.17 2.77 0.95 1.42 +tueriez tuer ver 928.05 171.15 1.11 0.07 cnd:pre:2p; +tuerions tuer ver 928.05 171.15 0.16 0.07 cnd:pre:1p; +tuerons tuer ver 928.05 171.15 1.69 0.07 ind:fut:1p; +tueront tuer ver 928.05 171.15 8.49 0.61 ind:fut:3p; +tues tuer ver 928.05 171.15 11.20 0.20 ind:pre:2s;sub:pre:2s; +tueur tueur nom m s 64.06 12.43 52.42 7.30 +tueurs tueur nom m p 64.06 12.43 10.32 4.93 +tueuse tueuse nom f s 6.26 0.27 6.26 0.27 +tueuses tueur nom f p 64.06 12.43 1.31 0.20 +tuez tuer ver 928.05 171.15 27.32 2.43 imp:pre:2p;ind:pre:2p; +tuf tuf nom m s 0.01 0.54 0.01 0.54 +tuffeau tuffeau nom m s 0.00 0.34 0.00 0.27 +tuffeaux tuffeau nom m p 0.00 0.34 0.00 0.07 +téflon téflon nom m s 0.17 0.00 0.17 0.00 +tégument tégument nom m s 0.00 0.14 0.00 0.14 +tégumentaire tégumentaire adj m s 0.01 0.00 0.01 0.00 +tégénaires tégénaire nom f p 0.00 0.07 0.00 0.07 +tuiez tuer ver 928.05 171.15 1.06 0.07 ind:imp:2p;sub:pre:2p; +tuile tuile nom f s 2.71 13.38 1.28 2.84 +tuilerie tuilerie nom f s 0.03 1.15 0.03 0.61 +tuileries tuilerie nom f p 0.03 1.15 0.00 0.54 +tuiles tuile nom f p 2.71 13.38 1.42 10.54 +tuions tuer ver 928.05 171.15 0.03 0.00 ind:imp:1p; +tél tél nom m s 0.04 0.00 0.04 0.00 +tél. tél. nom m s 0.14 0.14 0.14 0.14 +tularémie tularémie nom f s 0.18 0.00 0.18 0.00 +télencéphale télencéphale nom m s 1.20 0.00 1.20 0.00 +télescopage télescopage nom m s 0.02 0.41 0.02 0.41 +télescopait télescoper ver 0.05 1.08 0.01 0.07 ind:imp:3s; +télescope télescope nom m s 2.46 0.95 2.31 0.81 +télescopent télescoper ver 0.05 1.08 0.00 0.20 ind:pre:3p; +télescoper télescoper ver 0.05 1.08 0.01 0.07 inf; +télescopes télescope nom m p 2.46 0.95 0.14 0.14 +télescopique télescopique adj s 0.23 0.61 0.20 0.54 +télescopiques télescopique adj m p 0.23 0.61 0.03 0.07 +télescopèrent télescoper ver 0.05 1.08 0.00 0.07 ind:pas:3p; +télescopé télescoper ver m s 0.05 1.08 0.00 0.20 par:pas; +télescopée télescoper ver f s 0.05 1.08 0.00 0.07 par:pas; +télescopées télescoper ver f p 0.05 1.08 0.01 0.34 par:pas; +télescripteurs télescripteur nom m p 0.00 0.07 0.00 0.07 +télex télex nom m 1.18 1.49 1.18 1.49 +télexa télexer ver 0.02 0.41 0.00 0.07 ind:pas:3s; +télexer télexer ver 0.02 0.41 0.01 0.27 inf; +télexes télexer ver 0.02 0.41 0.00 0.07 ind:pre:2s; +télexé télexer ver m s 0.02 0.41 0.01 0.00 par:pas; +tulipe tulipe nom f s 2.63 2.91 1.53 0.54 +tulipes tulipe nom f p 2.63 2.91 1.10 2.36 +tulipier tulipier nom m s 0.01 0.14 0.01 0.00 +tulipiers tulipier nom m p 0.01 0.14 0.00 0.14 +tulle tulle nom m s 0.29 3.51 0.19 3.31 +tulles tulle nom m p 0.29 3.51 0.10 0.20 +téloche téloche nom f s 0.16 1.62 0.16 1.62 +télègue télègue nom f s 0.00 1.42 0.00 1.42 +télé télé nom f s 106.42 26.15 104.35 25.27 +téléachat téléachat nom m s 0.06 0.00 0.06 0.00 +téléavertisseur téléavertisseur nom m s 0.02 0.00 0.02 0.00 +télécabine télécabine nom f s 0.34 0.00 0.34 0.00 +télécartes télécarte nom f p 0.01 0.00 0.01 0.00 +télécharge télécharger ver 2.55 0.00 0.34 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +téléchargeables téléchargeable adj f p 0.01 0.00 0.01 0.00 +téléchargement téléchargement nom m s 0.32 0.00 0.32 0.00 +téléchargent télécharger ver 2.55 0.00 0.06 0.00 ind:pre:3p; +téléchargeons télécharger ver 2.55 0.00 0.02 0.00 ind:pre:1p; +télécharger télécharger ver 2.55 0.00 0.91 0.00 inf; +téléchargera télécharger ver 2.55 0.00 0.02 0.00 ind:fut:3s; +téléchargerai télécharger ver 2.55 0.00 0.01 0.00 ind:fut:1s; +téléchargerons télécharger ver 2.55 0.00 0.01 0.00 ind:fut:1p; +téléchargez télécharger ver 2.55 0.00 0.11 0.00 imp:pre:2p;ind:pre:2p; +téléchargé télécharger ver m s 2.55 0.00 0.75 0.00 par:pas; +téléchargée télécharger ver f s 2.55 0.00 0.15 0.00 par:pas; +téléchargées télécharger ver f p 2.55 0.00 0.11 0.00 par:pas; +téléchargés télécharger ver m p 2.55 0.00 0.05 0.00 par:pas; +télécinéma télécinéma nom m s 0.01 0.00 0.01 0.00 +télécommande télécommande nom f s 4.37 0.27 4.02 0.27 +télécommander télécommander ver 0.69 0.20 0.06 0.00 inf; +télécommandes télécommande nom f p 4.37 0.27 0.35 0.00 +télécommandé télécommander ver m s 0.69 0.20 0.24 0.00 par:pas; +télécommandée télécommander ver f s 0.69 0.20 0.10 0.07 par:pas; +télécommandées télécommander ver f p 0.69 0.20 0.08 0.00 par:pas; +télécommandés télécommander ver m p 0.69 0.20 0.05 0.14 par:pas; +télécommunication télécommunication nom f s 0.94 0.20 0.53 0.07 +télécommunications télécommunication nom f p 0.94 0.20 0.41 0.14 +télécoms télécom nom f p 0.30 0.00 0.30 0.00 +téléconférence téléconférence nom f s 0.41 0.00 0.41 0.00 +télécopieur télécopieur nom m s 0.03 0.00 0.03 0.00 +télécran télécran nom m s 0.05 0.00 0.03 0.00 +télécrans télécran nom m p 0.05 0.00 0.02 0.00 +télédiffuser télédiffuser ver 0.03 0.00 0.03 0.00 inf; +télédiffusion télédiffusion nom f s 0.01 0.00 0.01 0.00 +téléfax téléfax nom m 0.01 0.07 0.01 0.07 +téléfaxe téléfaxer ver 0.02 0.00 0.01 0.00 ind:pre:1s; +téléfaxez téléfaxer ver 0.02 0.00 0.01 0.00 ind:pre:2p; +téléfilm téléfilm nom m s 0.50 0.00 0.45 0.00 +téléfilms téléfilm nom m p 0.50 0.00 0.04 0.00 +téléfériques téléférique nom m p 0.00 0.07 0.00 0.07 +télégramme télégramme nom m s 11.44 38.78 10.53 34.59 +télégrammes télégramme nom m p 11.44 38.78 0.90 4.19 +télégraphe télégraphe nom m s 1.66 0.81 1.53 0.68 +télégraphes télégraphe nom m p 1.66 0.81 0.12 0.14 +télégraphia télégraphier ver 1.23 6.15 0.00 0.47 ind:pas:3s; +télégraphiai télégraphier ver 1.23 6.15 0.01 1.08 ind:pas:1s; +télégraphiait télégraphier ver 1.23 6.15 0.00 0.47 ind:imp:3s; +télégraphiant télégraphier ver 1.23 6.15 0.00 0.14 par:pre; +télégraphie télégraphie nom f s 0.06 0.14 0.06 0.14 +télégraphient télégraphier ver 1.23 6.15 0.00 0.07 ind:pre:3p; +télégraphier télégraphier ver 1.23 6.15 0.21 0.74 inf; +télégraphierai télégraphier ver 1.23 6.15 0.03 0.14 ind:fut:1s; +télégraphierais télégraphier ver 1.23 6.15 0.00 0.07 cnd:pre:1s; +télégraphierait télégraphier ver 1.23 6.15 0.00 0.07 cnd:pre:3s; +télégraphiez télégraphier ver 1.23 6.15 0.17 0.07 imp:pre:2p; +télégraphiâmes télégraphier ver 1.23 6.15 0.00 0.07 ind:pas:1p; +télégraphions télégraphier ver 1.23 6.15 0.01 0.00 imp:pre:1p; +télégraphique télégraphique adj s 0.50 2.97 0.20 1.42 +télégraphiques télégraphique adj p 0.50 2.97 0.29 1.55 +télégraphiste télégraphiste nom s 0.37 0.54 0.36 0.34 +télégraphistes télégraphiste nom p 0.37 0.54 0.01 0.20 +télégraphié télégraphier ver m s 1.23 6.15 0.75 1.82 par:pas; +télégraphiée télégraphier ver f s 1.23 6.15 0.00 0.07 par:pas; +télégraphiées télégraphier ver f p 1.23 6.15 0.00 0.14 par:pas; +télégraphiés télégraphier ver m p 1.23 6.15 0.00 0.07 par:pas; +téléguidage téléguidage nom m s 0.15 0.00 0.15 0.00 +téléguider téléguider ver 0.35 0.47 0.01 0.00 inf; +téléguidé téléguider ver m s 0.35 0.47 0.20 0.20 par:pas; +téléguidée téléguider ver f s 0.35 0.47 0.13 0.07 par:pas; +téléguidées téléguider ver f p 0.35 0.47 0.00 0.07 par:pas; +téléguidés téléguider ver m p 0.35 0.47 0.02 0.14 par:pas; +télégénie télégénie nom f s 0.01 0.00 0.01 0.00 +télégénique télégénique adj s 0.02 0.00 0.02 0.00 +télékinésie télékinésie nom f s 0.60 0.00 0.60 0.00 +télémark télémark nom m s 0.00 0.07 0.00 0.07 +télémarketing télémarketing nom m s 0.14 0.00 0.14 0.00 +télématique télématique adj s 0.01 0.07 0.01 0.07 +télémesure télémesure nom f s 0.07 0.00 0.03 0.00 +télémesures télémesure nom f p 0.07 0.00 0.04 0.00 +télémètre télémètre nom m s 0.03 0.20 0.02 0.14 +télémètres télémètre nom m p 0.03 0.20 0.01 0.07 +télémétrie télémétrie nom f s 0.85 0.00 0.85 0.00 +télémétrique télémétrique adj s 0.16 0.00 0.08 0.00 +télémétriques télémétrique adj p 0.16 0.00 0.07 0.00 +téléobjectif téléobjectif nom m s 0.72 0.54 0.62 0.27 +téléobjectifs téléobjectif nom m p 0.72 0.54 0.10 0.27 +téléologique téléologique adj s 0.01 0.00 0.01 0.00 +télépathe télépathe nom s 1.53 0.07 1.17 0.07 +télépathes télépathe nom p 1.53 0.07 0.36 0.00 +télépathie télépathie nom f s 1.94 0.47 1.94 0.47 +télépathique télépathique adj s 0.53 0.27 0.41 0.27 +télépathiquement télépathiquement adv 0.01 0.00 0.01 0.00 +télépathiques télépathique adj p 0.53 0.27 0.13 0.00 +téléphona téléphoner ver 60.49 67.03 0.02 4.53 ind:pas:3s; +téléphonage téléphonage nom m s 0.00 0.07 0.00 0.07 +téléphonai téléphoner ver 60.49 67.03 0.01 0.74 ind:pas:1s; +téléphonaient téléphoner ver 60.49 67.03 0.02 0.34 ind:imp:3p; +téléphonais téléphoner ver 60.49 67.03 0.63 0.34 ind:imp:1s;ind:imp:2s; +téléphonait téléphoner ver 60.49 67.03 0.87 3.31 ind:imp:3s; +téléphonant téléphoner ver 60.49 67.03 0.20 1.49 par:pre; +téléphone téléphone nom m s 160.80 96.82 155.68 93.99 +téléphonent téléphoner ver 60.49 67.03 0.36 0.61 ind:pre:3p; +téléphoner téléphoner ver 60.49 67.03 20.22 19.73 inf; +téléphonera téléphoner ver 60.49 67.03 0.61 0.68 ind:fut:3s; +téléphonerai téléphoner ver 60.49 67.03 2.07 1.35 ind:fut:1s; +téléphoneraient téléphoner ver 60.49 67.03 0.01 0.07 cnd:pre:3p; +téléphonerais téléphoner ver 60.49 67.03 0.12 0.27 cnd:pre:1s;cnd:pre:2s; +téléphonerait téléphoner ver 60.49 67.03 0.06 1.42 cnd:pre:3s; +téléphoneras téléphoner ver 60.49 67.03 0.17 0.14 ind:fut:2s; +téléphonerez téléphoner ver 60.49 67.03 0.27 0.20 ind:fut:2p; +téléphoneriez téléphoner ver 60.49 67.03 0.00 0.07 cnd:pre:2p; +téléphonerons téléphoner ver 60.49 67.03 0.03 0.07 ind:fut:1p; +téléphoneront téléphoner ver 60.49 67.03 0.14 0.07 ind:fut:3p; +téléphones téléphone nom m p 160.80 96.82 5.12 2.84 +téléphonez téléphoner ver 60.49 67.03 2.26 1.69 imp:pre:2p;ind:pre:2p; +téléphonie téléphonie nom f s 0.22 0.07 0.22 0.07 +téléphoniez téléphoner ver 60.49 67.03 0.05 0.14 ind:imp:2p; +téléphonions téléphoner ver 60.49 67.03 0.00 0.07 ind:imp:1p; +téléphonique téléphonique adj s 9.23 10.88 6.03 7.70 +téléphoniquement téléphoniquement adv 0.14 0.07 0.14 0.07 +téléphoniques téléphonique adj p 9.23 10.88 3.20 3.18 +téléphoniste téléphoniste nom s 0.27 1.22 0.10 0.68 +téléphonistes téléphoniste nom p 0.27 1.22 0.17 0.54 +téléphonons téléphoner ver 60.49 67.03 0.05 0.00 imp:pre:1p;ind:pre:1p; +téléphonât téléphoner ver 60.49 67.03 0.00 0.07 sub:imp:3s; +téléphoné téléphoner ver m s 60.49 67.03 20.80 18.11 par:pas; +téléphonée téléphoné adj f s 0.21 0.54 0.01 0.00 +téléphonées téléphoné adj f p 0.21 0.54 0.00 0.07 +téléphonés téléphoner ver m p 60.49 67.03 0.01 0.07 par:pas; +téléphérique téléphérique nom m s 0.36 0.54 0.36 0.54 +téléport téléport nom m s 0.01 0.00 0.01 0.00 +téléportation téléportation nom f s 1.00 0.00 1.00 0.00 +téléprompteur téléprompteur nom m s 0.08 0.00 0.08 0.00 +téléreportage téléreportage nom m s 0.01 0.00 0.01 0.00 +téléroman téléroman nom m s 0.05 0.00 0.05 0.00 +télés télé nom f p 106.42 26.15 2.06 0.88 +téléscripteur téléscripteur nom m s 0.05 1.08 0.04 0.14 +téléscripteurs téléscripteur nom m p 0.05 1.08 0.01 0.95 +télésiège télésiège nom m s 1.18 0.00 1.04 0.00 +télésièges télésiège nom m p 1.18 0.00 0.14 0.00 +téléski téléski nom m s 0.02 0.00 0.02 0.00 +téléspectateur téléspectateur nom m s 2.18 0.47 0.13 0.14 +téléspectateurs téléspectateur nom m p 2.18 0.47 2.03 0.27 +téléspectatrice téléspectateur nom f s 2.18 0.47 0.03 0.00 +téléspectatrices téléspectatrice nom f p 0.01 0.00 0.01 0.00 +télésurveillance télésurveillance nom f s 0.01 0.00 0.01 0.00 +télétexte télétexte nom m s 0.10 0.00 0.10 0.00 +télétravail télétravail nom m s 0.01 0.00 0.01 0.00 +télétravailleuse télétravailleur nom f s 0.01 0.00 0.01 0.00 +télétype télétype nom m s 0.10 0.07 0.08 0.00 +télétypes télétype nom m p 0.10 0.07 0.02 0.07 +télévangéliste télévangéliste nom s 0.06 0.00 0.05 0.00 +télévangélistes télévangéliste nom p 0.06 0.00 0.01 0.00 +télévendeur télévendeur nom m s 0.01 0.00 0.01 0.00 +télévente télévente nom f s 0.01 0.00 0.01 0.00 +télévise téléviser ver 0.37 1.42 0.01 0.47 ind:pre:1s;ind:pre:3s; +télévisera téléviser ver 0.37 1.42 0.00 0.14 ind:fut:3s; +télévises téléviser ver 0.37 1.42 0.00 0.20 ind:pre:2s; +téléviseur téléviseur nom m s 2.43 1.01 1.74 0.95 +téléviseurs téléviseur nom m p 2.43 1.01 0.69 0.07 +télévision télévision nom f s 26.38 24.32 25.45 23.51 +télévisions télévision nom f p 26.38 24.32 0.93 0.81 +télévisé télévisé adj m s 3.37 2.57 2.11 1.01 +télévisée télévisé adj f s 3.37 2.57 0.48 0.47 +télévisuel télévisuel adj m s 0.33 0.34 0.27 0.20 +télévisuelle télévisuel adj f s 0.33 0.34 0.05 0.07 +télévisuels télévisuel adj m p 0.33 0.34 0.00 0.07 +télévisées télévisé adj f p 3.37 2.57 0.14 0.74 +télévisés télévisé adj m p 3.37 2.57 0.64 0.34 +tumescence tumescence nom f s 0.04 0.00 0.04 0.00 +tumescent tumescent adj m s 0.01 0.00 0.01 0.00 +tumeur tumeur nom f s 7.96 1.89 6.70 1.28 +tumeurs tumeur nom f p 7.96 1.89 1.27 0.61 +témoigna témoigner ver 24.29 25.68 0.02 0.54 ind:pas:3s; +témoignage témoignage nom m s 16.12 19.73 12.28 10.95 +témoignages témoignage nom m p 16.12 19.73 3.84 8.78 +témoignaient témoigner ver 24.29 25.68 0.02 2.91 ind:imp:3p; +témoignais témoigner ver 24.29 25.68 0.04 0.07 ind:imp:1s;ind:imp:2s; +témoignait témoigner ver 24.29 25.68 0.32 5.27 ind:imp:3s; +témoignant témoigner ver 24.29 25.68 0.20 1.35 par:pre; +témoigne témoigner ver 24.29 25.68 3.10 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +témoignent témoigner ver 24.29 25.68 0.81 1.35 ind:pre:3p; +témoigner témoigner ver 24.29 25.68 13.36 7.64 ind:pre:2p;inf; +témoignera témoigner ver 24.29 25.68 1.09 0.07 ind:fut:3s; +témoignerai témoigner ver 24.29 25.68 0.88 0.07 ind:fut:1s; +témoigneraient témoigner ver 24.29 25.68 0.00 0.07 cnd:pre:3p; +témoignerais témoigner ver 24.29 25.68 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +témoignerait témoigner ver 24.29 25.68 0.13 0.07 cnd:pre:3s; +témoigneras témoigner ver 24.29 25.68 0.08 0.00 ind:fut:2s; +témoignerez témoigner ver 24.29 25.68 0.28 0.00 ind:fut:2p; +témoigneront témoigner ver 24.29 25.68 0.18 0.07 ind:fut:3p; +témoignes témoigner ver 24.29 25.68 0.29 0.07 ind:pre:2s; +témoignez témoigner ver 24.29 25.68 0.91 0.14 imp:pre:2p;ind:pre:2p; +témoigniez témoigner ver 24.29 25.68 0.11 0.00 ind:imp:2p; +témoignât témoigner ver 24.29 25.68 0.00 0.07 sub:imp:3s; +témoignèrent témoigner ver 24.29 25.68 0.00 0.27 ind:pas:3p; +témoigné témoigner ver m s 24.29 25.68 1.99 2.09 par:pas; +témoignée témoigner ver f s 24.29 25.68 0.31 0.20 par:pas; +témoignées témoigner ver f p 24.29 25.68 0.01 0.07 par:pas; +témoignés témoigner ver m p 24.29 25.68 0.11 0.07 par:pas; +témoin_clé témoin_clé nom m s 0.13 0.00 0.13 0.00 +témoin_vedette témoin_vedette nom m s 0.01 0.00 0.01 0.00 +témoin témoin nom m s 74.78 46.01 49.35 28.38 +témoins_clé témoins_clé nom m p 0.05 0.00 0.05 0.00 +témoins témoin nom m p 74.78 46.01 25.43 17.64 +tumorale tumoral adj f s 0.05 0.00 0.04 0.00 +tumoraux tumoral adj m p 0.05 0.00 0.01 0.00 +tuméfaction tuméfaction nom f s 0.07 0.07 0.07 0.07 +tuméfie tuméfier ver 0.00 1.08 0.00 0.07 ind:pre:3s; +tuméfier tuméfier ver 0.00 1.08 0.00 0.07 inf; +tuméfié tuméfié adj m s 0.44 2.36 0.36 1.08 +tuméfiée tuméfié adj f s 0.44 2.36 0.04 0.88 +tuméfiées tuméfié adj f p 0.44 2.36 0.02 0.34 +tuméfiés tuméfié adj m p 0.44 2.36 0.03 0.07 +tumuli tumulus nom m p 0.22 1.49 0.00 0.14 +tumulte tumulte nom m s 1.19 13.11 1.07 12.09 +tumultes tumulte nom m p 1.19 13.11 0.12 1.01 +tumultuaire tumultuaire adj s 0.00 0.07 0.00 0.07 +tumultueuse tumultueux adj f s 1.13 5.95 0.31 2.36 +tumultueusement tumultueusement adv 0.02 0.14 0.02 0.14 +tumultueuses tumultueux adj f p 1.13 5.95 0.04 0.88 +tumultueux tumultueux adj m 1.13 5.95 0.78 2.70 +tumulus tumulus nom m 0.22 1.49 0.22 1.35 +téméraire téméraire adj s 2.38 3.04 2.04 2.50 +témérairement témérairement adv 0.00 0.27 0.00 0.27 +téméraires téméraire adj p 2.38 3.04 0.34 0.54 +témérité témérité nom f s 0.87 1.35 0.87 1.22 +témérités témérité nom f p 0.87 1.35 0.00 0.14 +ténacité ténacité nom f s 0.89 2.30 0.89 2.30 +tune tune nom f s 1.23 2.16 0.85 0.20 +tuner tuner nom m s 0.06 0.07 0.06 0.07 +tunes tune nom f p 1.23 2.16 0.38 1.96 +tungstène tungstène nom m s 0.12 0.47 0.12 0.47 +ténia ténia nom m s 0.11 0.68 0.08 0.68 +ténias ténia nom m p 0.11 0.68 0.03 0.00 +tunique tunique nom f s 1.32 10.27 1.07 8.04 +tuniques tunique nom f p 1.32 10.27 0.25 2.23 +tunisien tunisien adj m s 0.30 3.51 0.15 1.28 +tunisienne tunisien adj f s 0.30 3.51 0.16 0.61 +tunisiennes tunisien adj f p 0.30 3.51 0.00 0.20 +tunisiens tunisien adj m p 0.30 3.51 0.00 1.42 +tunnel tunnel nom m s 19.24 14.59 15.88 12.30 +tunnels tunnel nom m p 19.24 14.59 3.36 2.30 +ténor ténor nom m s 1.38 2.70 1.01 2.03 +ténors ténor nom m p 1.38 2.70 0.36 0.68 +ténèbre ténèbre nom f s 12.70 26.76 0.01 0.61 +ténèbres ténèbre nom f p 12.70 26.76 12.68 26.15 +ténu ténu adj m s 0.40 5.95 0.30 2.84 +ténébreuse ténébreux adj f s 1.50 7.91 0.24 2.36 +ténébreuses ténébreux adj f p 1.50 7.91 0.15 0.88 +ténébreux ténébreux adj m 1.50 7.91 1.11 4.66 +ténébrionidé ténébrionidé nom m s 0.00 0.07 0.00 0.07 +ténue ténu adj f s 0.40 5.95 0.08 1.76 +ténues ténu adj f p 0.40 5.95 0.01 0.61 +ténuité ténuité nom f s 0.00 0.14 0.00 0.14 +ténus ténu adj m p 0.40 5.95 0.01 0.74 +tuons tuer ver 928.05 171.15 2.27 0.41 imp:pre:1p;ind:pre:1p; +tuât tuer ver 928.05 171.15 0.00 0.34 sub:imp:3s; +tuque tuque nom f s 0.00 0.07 0.00 0.07 +téraoctets téraoctet nom m p 0.01 0.00 0.01 0.00 +tératologique tératologique adj f s 0.00 0.34 0.00 0.27 +tératologiques tératologique adj f p 0.00 0.34 0.00 0.07 +tératome tératome nom m s 0.05 0.00 0.05 0.00 +turban turban nom m s 0.72 7.30 0.66 6.08 +turbans turban nom m p 0.72 7.30 0.07 1.22 +turbin turbin nom m s 0.41 4.19 0.41 3.92 +turbina turbiner ver 0.35 1.28 0.00 0.07 ind:pas:3s; +turbinaient turbiner ver 0.35 1.28 0.00 0.14 ind:imp:3p; +turbinait turbiner ver 0.35 1.28 0.00 0.07 ind:imp:3s; +turbine turbine nom f s 1.02 1.28 0.51 1.08 +turbiner turbiner ver 0.35 1.28 0.16 0.47 inf; +turbines turbine nom f p 1.02 1.28 0.51 0.20 +turbinez turbiner ver 0.35 1.28 0.00 0.07 ind:pre:2p; +turbins turbin nom m p 0.41 4.19 0.00 0.27 +turbiné turbiner ver m s 0.35 1.28 0.01 0.20 par:pas; +turbo turbo nom s 1.19 0.54 1.03 0.54 +turbocompresseur turbocompresseur nom m s 0.14 0.00 0.01 0.00 +turbocompresseurs turbocompresseur nom m p 0.14 0.00 0.14 0.00 +turbopropulseur turbopropulseur nom m s 0.28 0.00 0.28 0.00 +turboréacteur turboréacteur nom m s 0.01 0.00 0.01 0.00 +turbos turbo nom p 1.19 0.54 0.15 0.00 +turbot turbot nom m s 0.12 0.68 0.12 0.68 +turbotière turbotière nom f s 0.01 0.07 0.01 0.00 +turbotières turbotière nom f p 0.01 0.07 0.00 0.07 +turbé turbé nom m s 0.00 0.34 0.00 0.27 +turbulence turbulence nom f s 1.46 2.36 0.56 1.15 +turbulences turbulence nom f p 1.46 2.36 0.89 1.22 +turbulent turbulent adj m s 1.49 3.04 0.61 1.49 +turbulente turbulent adj f s 1.49 3.04 0.69 0.68 +turbulentes turbulent adj f p 1.49 3.04 0.01 0.20 +turbulents turbulent adj m p 1.49 3.04 0.19 0.68 +turbés turbé nom m p 0.00 0.34 0.00 0.07 +turc turc adj m s 4.25 10.54 2.12 4.26 +turco turco nom m s 0.61 0.07 0.61 0.00 +turcoman turcoman adj m s 0.00 0.14 0.00 0.14 +turcomans turcoman nom m p 0.00 0.34 0.00 0.27 +turcos turco nom m p 0.61 0.07 0.00 0.07 +turcs turc adj m p 4.25 10.54 0.56 2.09 +turdus turdus nom m 0.00 0.20 0.00 0.20 +turelure turelure nom f s 0.00 0.07 0.00 0.07 +turent taire ver 154.47 139.80 0.20 6.62 ind:pas:3p; +turf turf nom m s 0.43 1.82 0.43 1.76 +turfiste turfiste nom s 0.08 0.47 0.03 0.14 +turfistes turfiste nom p 0.08 0.47 0.05 0.34 +turfs turf nom m p 0.43 1.82 0.00 0.07 +turgescence turgescence nom f s 0.14 0.07 0.14 0.07 +turgescent turgescent adj m s 0.04 0.41 0.03 0.07 +turgescente turgescent adj f s 0.04 0.41 0.01 0.20 +turgescentes turgescent adj f p 0.04 0.41 0.00 0.07 +turgescents turgescent adj m p 0.04 0.41 0.00 0.07 +turgide turgide adj m s 0.04 0.00 0.04 0.00 +turgotine turgotine nom f s 0.00 0.07 0.00 0.07 +turinois turinois adj m 0.21 0.07 0.20 0.00 +turinoise turinois adj f s 0.21 0.07 0.01 0.07 +turista turista nom f s 0.06 0.54 0.05 0.00 +turistas turista nom f p 0.06 0.54 0.01 0.54 +turkmènes turkmène adj m p 0.00 0.14 0.00 0.14 +turlu turlu nom m s 0.01 0.34 0.01 0.34 +turlupinade turlupinade nom f s 0.00 0.14 0.00 0.07 +turlupinades turlupinade nom f p 0.00 0.14 0.00 0.07 +turlupinaient turlupiner ver 0.35 1.28 0.00 0.07 ind:imp:3p; +turlupinait turlupiner ver 0.35 1.28 0.02 0.47 ind:imp:3s; +turlupine turlupiner ver 0.35 1.28 0.30 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +turlupinent turlupiner ver 0.35 1.28 0.01 0.07 ind:pre:3p; +turlupiner turlupiner ver 0.35 1.28 0.01 0.14 inf; +turlupinera turlupiner ver 0.35 1.28 0.01 0.00 ind:fut:3s; +turlupins turlupin nom m p 0.00 0.14 0.00 0.14 +turlupiné turlupiner ver m s 0.35 1.28 0.00 0.14 par:pas; +turlupinée turlupiner ver f s 0.35 1.28 0.00 0.14 par:pas; +turlutaines turlutaine nom f p 0.00 0.07 0.00 0.07 +turlute turluter ver 0.25 0.27 0.05 0.07 ind:pre:1s;ind:pre:3s; +turlutent turluter ver 0.25 0.27 0.00 0.07 ind:pre:3p; +turluter turluter ver 0.25 0.27 0.00 0.07 inf; +turlutes turluter ver 0.25 0.27 0.20 0.07 ind:pre:2s; +turlutte turlutte nom f s 0.26 0.20 0.26 0.20 +turlututu turlututu ono 0.01 0.14 0.01 0.14 +turne turne nom f s 0.56 1.96 0.56 1.76 +turnes turne nom f p 0.56 1.96 0.00 0.20 +turnover turnover nom m s 0.03 0.00 0.03 0.00 +turpides turpide adj f p 0.00 0.07 0.00 0.07 +turpitude turpitude nom f s 0.54 2.36 0.18 0.41 +turpitudes turpitude nom f p 0.54 2.36 0.35 1.96 +turque turc adj f s 4.25 10.54 1.33 2.70 +turquerie turquerie nom f s 0.00 0.14 0.00 0.14 +turques turque nom f p 0.32 0.00 0.32 0.00 +turquin turquin adj m s 0.00 0.14 0.00 0.14 +turquoise turquoise nom f s 0.65 1.01 0.30 0.61 +turquoises turquoise nom f p 0.65 1.01 0.35 0.41 +térébenthine térébenthine nom f s 0.55 1.28 0.55 1.28 +térébinthe térébinthe nom m s 0.01 0.20 0.01 0.14 +térébinthes térébinthe nom m p 0.01 0.20 0.00 0.07 +térébrant térébrant adj m s 0.00 0.20 0.00 0.14 +térébrants térébrant adj m p 0.00 0.20 0.00 0.07 +tés té nom m p 2.35 1.08 0.19 0.00 +tus taire ver m p 154.47 139.80 0.40 4.39 ind:pas:1s;par:pas;par:pas; +tussent taire ver 154.47 139.80 0.00 0.07 sub:imp:3p; +tussilage tussilage nom m s 0.01 0.00 0.01 0.00 +tussor tussor nom m s 0.01 1.69 0.01 1.69 +têt têt nom m s 0.34 1.08 0.34 1.08 +tut taire ver 154.47 139.80 0.69 28.92 ind:pas:3s; +téta téter ver 1.71 5.88 0.01 0.14 ind:pas:3s; +tétaient téter ver 1.71 5.88 0.01 0.07 ind:imp:3p; +tétais téter ver 1.71 5.88 0.13 0.20 ind:imp:1s;ind:imp:2s; +tétait téter ver 1.71 5.88 0.06 0.34 ind:imp:3s; +tétanie tétanie nom f s 0.15 0.07 0.15 0.07 +tétanique tétanique adj s 0.00 0.34 0.00 0.27 +tétaniques tétanique adj f p 0.00 0.34 0.00 0.07 +tétanisait tétaniser ver 0.42 1.08 0.00 0.14 ind:imp:3s; +tétanisant tétaniser ver 0.42 1.08 0.00 0.07 par:pre; +tétanisation tétanisation nom f s 0.00 0.07 0.00 0.07 +tétanisent tétaniser ver 0.42 1.08 0.01 0.07 ind:pre:3p; +tétaniser tétaniser ver 0.42 1.08 0.00 0.07 inf; +tétanisé tétaniser ver m s 0.42 1.08 0.17 0.54 par:pas; +tétanisée tétaniser ver f s 0.42 1.08 0.25 0.20 par:pas; +tétanisées tétanisé adj f p 0.12 0.88 0.00 0.07 +tétanisés tétanisé adj m p 0.12 0.88 0.00 0.34 +tétanos tétanos nom m 0.64 0.95 0.64 0.95 +tétant téter ver 1.71 5.88 0.10 0.54 par:pre; +têtard têtard nom m s 0.86 1.89 0.68 0.34 +têtards têtard nom m p 0.86 1.89 0.17 1.55 +tétasses téter ver 1.71 5.88 0.00 0.07 sub:imp:2s; +tête_bêche tête_bêche nom m 0.03 0.47 0.03 0.47 +tête_de_mort tête_de_mort nom f 0.01 0.41 0.01 0.41 +tête_de_nègre tête_de_nègre adj 0.00 0.20 0.00 0.20 +tête_à_queue tête_à_queue nom m 0.00 0.20 0.00 0.20 +tête_à_tête tête_à_tête nom m 0.00 5.95 0.00 5.95 +tête tête nom f s 475.87 923.45 453.13 861.49 +tutelle tutelle nom f s 2.00 2.43 2.00 2.43 +téter téter ver 1.71 5.88 0.43 2.03 inf; +tête_de_loup tête_de_loup nom f p 0.00 0.27 0.00 0.27 +têtes tête nom f p 475.87 923.45 22.74 61.96 +téteur téteur nom m s 0.05 0.00 0.05 0.00 +tuteur tuteur nom m s 4.60 2.36 3.28 2.03 +tuteurs tuteur nom m p 4.60 2.36 0.46 0.27 +tuèrent tuer ver 928.05 171.15 0.41 0.41 ind:pas:3p; +tétiez téter ver 1.71 5.88 0.01 0.00 ind:imp:2p; +tétine tétine nom f s 0.81 1.15 0.43 0.68 +tétines tétine nom f p 0.81 1.15 0.38 0.47 +tétins tétin nom m p 0.00 0.20 0.00 0.20 +têtière têtière nom f s 0.00 0.27 0.00 0.14 +têtières têtière nom f p 0.00 0.27 0.00 0.14 +tutoie tutoyer ver 6.25 10.07 1.25 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tutoiement tutoiement nom m s 0.38 1.89 0.38 1.82 +tutoiements tutoiement nom m p 0.38 1.89 0.00 0.07 +tutoient tutoyer ver 6.25 10.07 0.13 0.41 ind:pre:3p; +tutoiera tutoyer ver 6.25 10.07 0.00 0.07 ind:fut:3s; +tutoierai tutoyer ver 6.25 10.07 0.00 0.07 ind:fut:1s; +tutoies tutoyer ver 6.25 10.07 0.41 0.14 ind:pre:2s; +téton téton nom m s 4.59 1.76 1.21 0.47 +tétons téton nom m p 4.59 1.76 3.39 1.28 +tutorat tutorat nom m s 0.33 0.00 0.33 0.00 +tutorial tutorial adj m s 0.04 0.14 0.03 0.14 +tutoriaux tutorial adj m p 0.04 0.14 0.01 0.00 +tutoya tutoyer ver 6.25 10.07 0.00 0.34 ind:pas:3s; +tutoyaient tutoyer ver 6.25 10.07 0.00 0.41 ind:imp:3p; +tutoyais tutoyer ver 6.25 10.07 0.00 0.14 ind:imp:1s; +tutoyait tutoyer ver 6.25 10.07 0.37 1.76 ind:imp:3s; +tutoyant tutoyer ver 6.25 10.07 0.00 0.54 par:pre; +tutoyer tutoyer ver 6.25 10.07 3.05 2.84 inf; +tutoyeuses tutoyeur adj f p 0.00 0.07 0.00 0.07 +tutoyez tutoyer ver 6.25 10.07 0.55 0.07 imp:pre:2p;ind:pre:2p; +tutoyions tutoyer ver 6.25 10.07 0.00 0.07 ind:imp:1p; +tutoyons tutoyer ver 6.25 10.07 0.34 0.14 imp:pre:1p;ind:pre:1p; +tutoyât tutoyer ver 6.25 10.07 0.00 0.07 sub:imp:3s; +tutoyèrent tutoyer ver 6.25 10.07 0.00 0.07 ind:pas:3p; +tutoyé tutoyer ver m s 6.25 10.07 0.01 0.41 par:pas; +tutoyée tutoyer ver f s 6.25 10.07 0.14 0.07 par:pas; +tutoyés tutoyer ver m p 6.25 10.07 0.01 0.14 par:pas; +tétra tétra nom m s 0.01 0.00 0.01 0.00 +tétrachlorure tétrachlorure nom m s 0.04 0.07 0.04 0.07 +tétracycline tétracycline nom f s 0.09 0.00 0.09 0.00 +tétradrachme tétradrachme nom m s 0.00 0.07 0.00 0.07 +tétragones tétragone nom f p 0.00 0.07 0.00 0.07 +tétragramme tétragramme nom m s 0.01 0.07 0.00 0.07 +tétragrammes tétragramme nom m p 0.01 0.07 0.01 0.00 +tétralogie tétralogie nom f s 0.01 0.07 0.01 0.07 +tétramère tétramère adj m s 0.00 0.07 0.00 0.07 +tétramètre tétramètre nom m s 0.03 0.00 0.03 0.00 +tétraplégie tétraplégie nom f s 0.14 0.00 0.14 0.00 +tétraplégique tétraplégique adj s 0.44 0.00 0.44 0.00 +tétrarque tétrarque nom m s 0.10 0.47 0.10 0.00 +tétrarques tétrarque nom m p 0.10 0.47 0.00 0.47 +tétras tétras nom m 0.16 0.00 0.16 0.00 +tutrice tuteur nom f s 4.60 2.36 0.86 0.07 +tétrodotoxine tétrodotoxine nom f s 0.02 0.00 0.02 0.00 +tétère téter nom f s 0.00 0.14 0.00 0.14 +tétèrent téter ver 1.71 5.88 0.00 0.07 ind:pas:3p; +tutti_frutti tutti_frutti adv 0.09 0.41 0.09 0.41 +tutti_quanti tutti_quanti adv 0.15 0.20 0.15 0.20 +tété téter ver m s 1.71 5.88 0.29 0.61 par:pas; +têtu têtu adj m s 9.78 9.19 6.17 5.14 +tutu tutu nom m s 0.92 3.51 0.83 2.77 +tétée tétée nom f s 0.63 1.01 0.51 0.68 +têtue têtu adj f s 9.78 9.19 2.97 2.77 +tétées tétée nom f p 0.63 1.01 0.11 0.34 +têtues têtu adj f p 9.78 9.19 0.09 0.34 +tutélaire tutélaire adj s 0.01 1.76 0.01 1.55 +tutélaires tutélaire adj p 0.01 1.76 0.00 0.20 +têtus têtu adj m p 9.78 9.19 0.55 0.95 +tutus tutu nom m p 0.92 3.51 0.09 0.74 +tutute tutut nom f s 0.00 0.34 0.00 0.34 +tué tuer ver m s 928.05 171.15 259.79 46.82 par:pas; +tuée tuer ver f s 928.05 171.15 39.56 5.88 par:pas; +tuées tuer ver f p 928.05 171.15 3.15 0.68 par:pas; +tués tuer ver m p 928.05 171.15 20.66 7.36 par:pas; +tévé tévé nom f s 0.00 0.34 0.00 0.34 +tuyau tuyau nom m s 26.73 20.61 17.51 11.96 +tuyautages tuyautage nom m p 0.00 0.07 0.00 0.07 +tuyautait tuyauter ver 0.54 0.61 0.01 0.07 ind:imp:3s; +tuyautent tuyauter ver 0.54 0.61 0.03 0.00 ind:pre:3p; +tuyauter tuyauter ver 0.54 0.61 0.07 0.20 inf; +tuyautera tuyauter ver 0.54 0.61 0.02 0.00 ind:fut:3s; +tuyauterie tuyauterie nom f s 1.11 1.69 1.10 0.68 +tuyauteries tuyauterie nom f p 1.11 1.69 0.01 1.01 +tuyauteur tuyauteur nom m s 0.00 0.27 0.00 0.14 +tuyauteurs tuyauteur nom m p 0.00 0.27 0.00 0.14 +tuyauté tuyauter ver m s 0.54 0.61 0.17 0.14 par:pas; +tuyautée tuyauter ver f s 0.54 0.61 0.01 0.07 par:pas; +tuyautées tuyauter ver f p 0.54 0.61 0.00 0.07 par:pas; +tuyautés tuyauter ver m p 0.54 0.61 0.23 0.07 par:pas; +tuyaux tuyau nom m p 26.73 20.61 9.22 8.65 +tuyère tuyère nom f s 0.04 0.07 0.03 0.00 +tuyères tuyère nom f p 0.04 0.07 0.01 0.07 +tézig tézig pro_per s 0.00 0.07 0.00 0.07 +tézigue tézigue pro_per s 0.00 0.34 0.00 0.34 +tweed tweed nom m s 0.00 5.34 0.00 5.14 +tweeds tweed nom m p 0.00 5.34 0.00 0.20 +twill twill nom m s 0.00 0.14 0.00 0.14 +twin_set twin_set nom m s 0.00 0.14 0.00 0.14 +twist twist nom m s 0.00 0.74 0.00 0.68 +twistant twister ver 0.00 0.20 0.00 0.07 par:pre; +twister twister ver 0.00 0.20 0.00 0.07 inf; +twists twist nom m p 0.00 0.74 0.00 0.07 +twistées twister ver f p 0.00 0.20 0.00 0.07 par:pas; +tympan tympan nom m s 1.25 6.01 0.36 2.50 +tympanique tympanique adj s 0.01 0.00 0.01 0.00 +tympanon tympanon nom m s 0.03 0.20 0.03 0.20 +tympans tympan nom m p 1.25 6.01 0.89 3.51 +type type nom m s 334.85 184.19 280.62 145.95 +typer typer ver 0.07 0.00 0.02 0.00 inf; +types type nom m p 334.85 184.19 54.23 38.24 +typhique typhique adj s 0.00 0.14 0.00 0.07 +typhiques typhique adj m p 0.00 0.14 0.00 0.07 +typhoïde typhoïde nom f s 0.36 1.01 0.36 1.01 +typhon typhon nom m s 0.78 1.89 0.72 1.28 +typhons typhon nom m p 0.78 1.89 0.06 0.61 +typhus typhus nom m 1.74 1.76 1.74 1.76 +typique typique adj s 9.34 2.84 8.62 2.30 +typiquement typiquement adv 1.86 1.96 1.86 1.96 +typiques typique adj p 9.34 2.84 0.72 0.54 +typo typo nom m s 0.07 1.49 0.04 1.01 +typographe typographe nom s 0.02 1.08 0.01 0.47 +typographes typographe nom p 0.02 1.08 0.01 0.61 +typographie typographie nom f s 0.34 0.47 0.34 0.47 +typographier typographier ver 0.00 0.07 0.00 0.07 inf; +typographique typographique adj f s 0.06 0.34 0.05 0.20 +typographiques typographique adj p 0.06 0.34 0.01 0.14 +typologie typologie nom f s 0.10 0.20 0.10 0.20 +typomètre typomètre nom m s 0.00 0.14 0.00 0.14 +typos typo nom m p 0.07 1.49 0.02 0.47 +typé typer ver m s 0.07 0.00 0.03 0.00 par:pas; +typée typé adj f s 0.01 0.14 0.01 0.00 +typés typer ver m p 0.07 0.00 0.01 0.00 par:pas; +tyran tyran nom m s 7.79 5.20 6.17 4.59 +tyranneau tyranneau nom m s 0.01 0.14 0.00 0.14 +tyranneaux tyranneau nom m p 0.01 0.14 0.01 0.00 +tyrannicide tyrannicide nom s 0.01 0.14 0.00 0.07 +tyrannicides tyrannicide nom p 0.01 0.14 0.01 0.07 +tyrannie tyrannie nom f s 2.63 2.50 2.50 2.43 +tyrannies tyrannie nom f p 2.63 2.50 0.14 0.07 +tyrannique tyrannique adj s 0.65 2.43 0.59 2.03 +tyranniquement tyranniquement adv 0.14 0.14 0.14 0.14 +tyranniques tyrannique adj p 0.65 2.43 0.06 0.41 +tyrannisais tyranniser ver 0.25 0.95 0.00 0.07 ind:imp:1s; +tyrannisait tyranniser ver 0.25 0.95 0.02 0.20 ind:imp:3s; +tyrannisant tyranniser ver 0.25 0.95 0.01 0.07 par:pre; +tyrannise tyranniser ver 0.25 0.95 0.03 0.14 ind:pre:1s;ind:pre:3s; +tyrannisent tyranniser ver 0.25 0.95 0.11 0.00 ind:pre:3p; +tyranniser tyranniser ver 0.25 0.95 0.05 0.20 inf; +tyrannisèrent tyranniser ver 0.25 0.95 0.00 0.07 ind:pas:3p; +tyrannisé tyranniser ver m s 0.25 0.95 0.02 0.20 par:pas; +tyrannisée tyranniser ver f s 0.25 0.95 0.01 0.00 par:pas; +tyrannosaure tyrannosaure nom m s 0.15 0.07 0.13 0.07 +tyrannosaures tyrannosaure nom m p 0.15 0.07 0.02 0.00 +tyrans tyran nom m p 7.79 5.20 1.62 0.61 +tyrienne tyrien adj f s 0.02 0.00 0.02 0.00 +tyrolien tyrolien adj m s 0.38 1.62 0.16 0.88 +tyrolienne tyrolien adj f s 0.38 1.62 0.08 0.27 +tyroliennes tyrolien adj f p 0.38 1.62 0.03 0.27 +tyroliens tyrolien nom m p 0.13 0.20 0.12 0.07 +tyrrhénienne tyrrhénienne adj f s 0.20 0.27 0.20 0.27 +tzar tzar nom m s 0.03 0.88 0.03 0.68 +tzarevitch tzarevitch nom m s 0.00 0.07 0.00 0.07 +tzarine tzar nom f s 0.03 0.88 0.00 0.14 +tzars tzar nom m p 0.03 0.88 0.00 0.07 +tzigane tzigane adj s 0.89 1.76 0.78 1.08 +tziganes tzigane nom p 1.49 0.61 1.10 0.54 +é é adv 0.05 0.00 0.05 0.00 +u u nom m 18.40 2.97 18.40 2.97 +ubac ubac nom m s 0.00 0.14 0.00 0.14 +ébahi ébahir ver m s 0.46 1.96 0.16 0.61 par:pas; +ébahie ébahir ver f s 0.46 1.96 0.15 0.27 par:pas; +ébahies ébahi adj f p 0.27 3.18 0.01 0.27 +ébahir ébahir ver 0.46 1.96 0.02 0.07 inf; +ébahirons ébahir ver 0.46 1.96 0.01 0.00 ind:fut:1p; +ébahis ébahir ver m p 0.46 1.96 0.09 0.41 ind:pre:2s;par:pas; +ébahissait ébahir ver 0.46 1.96 0.00 0.34 ind:imp:3s; +ébahissant ébahir ver 0.46 1.96 0.00 0.07 par:pre; +ébahissement ébahissement nom m s 0.00 1.15 0.00 1.15 +ébahissent ébahir ver 0.46 1.96 0.01 0.14 ind:pre:3p; +ébahissons ébahir ver 0.46 1.96 0.00 0.07 ind:pre:1p; +ébahit ébahir ver 0.46 1.96 0.02 0.00 ind:pre:3s; +ébarbage ébarbage nom m s 0.00 0.07 0.00 0.07 +ébarbait ébarber ver 0.00 0.20 0.00 0.07 ind:imp:3s; +ébarber ébarber ver 0.00 0.20 0.00 0.07 inf; +ébarbé ébarber ver m s 0.00 0.20 0.00 0.07 par:pas; +ébat ébattre ver 0.10 3.18 0.01 0.07 ind:pre:3s; +ébats ébat nom m p 0.41 2.30 0.41 2.30 +ébattît ébattre ver 0.10 3.18 0.00 0.07 sub:imp:3s; +ébattaient ébattre ver 0.10 3.18 0.00 0.74 ind:imp:3p; +ébattait ébattre ver 0.10 3.18 0.02 0.41 ind:imp:3s; +ébattant ébattre ver 0.10 3.18 0.01 0.20 par:pre; +ébattements ébattement nom m p 0.00 0.07 0.00 0.07 +ébattent ébattre ver 0.10 3.18 0.01 0.20 ind:pre:3p; +ébattit ébattre ver 0.10 3.18 0.00 0.07 ind:pas:3s; +ébattons ébattre ver 0.10 3.18 0.00 0.07 ind:pre:1p; +ébattre ébattre ver 0.10 3.18 0.05 1.35 inf; +ébaubi ébaubir ver m s 0.00 0.41 0.00 0.14 par:pas; +ébaubie ébaubir ver f s 0.00 0.41 0.00 0.07 par:pas; +ébaubis ébaubir ver m p 0.00 0.41 0.00 0.14 par:pas; +ébaubissaient ébaubir ver 0.00 0.41 0.00 0.07 ind:imp:3p; +ébaucha ébaucher ver 0.05 7.97 0.00 2.36 ind:pas:3s; +ébauchai ébaucher ver 0.05 7.97 0.00 0.14 ind:pas:1s; +ébauchaient ébaucher ver 0.05 7.97 0.00 0.34 ind:imp:3p; +ébauchais ébaucher ver 0.05 7.97 0.00 0.20 ind:imp:1s; +ébauchait ébaucher ver 0.05 7.97 0.00 0.88 ind:imp:3s; +ébauchant ébaucher ver 0.05 7.97 0.00 0.68 par:pre; +ébauche ébauche nom f s 1.33 5.47 1.17 4.46 +ébauchent ébaucher ver 0.05 7.97 0.00 0.34 ind:pre:3p; +ébaucher ébaucher ver 0.05 7.97 0.03 1.15 inf; +ébauches ébauche nom f p 1.33 5.47 0.16 1.01 +ébaucheurs ébaucheur nom m p 0.00 0.07 0.00 0.07 +ébauchons ébaucher ver 0.05 7.97 0.01 0.00 ind:pre:1p; +ébauchât ébaucher ver 0.05 7.97 0.00 0.07 sub:imp:3s; +ébauchèrent ébaucher ver 0.05 7.97 0.00 0.27 ind:pas:3p; +ébauché ébauché adj m s 0.14 1.69 0.00 0.74 +ébauchée ébaucher ver f s 0.05 7.97 0.00 0.34 par:pas; +ébauchées ébauché adj f p 0.14 1.69 0.00 0.34 +ébauchés ébauché adj m p 0.14 1.69 0.14 0.34 +ébaudi ébaudir ver m s 0.00 0.07 0.00 0.07 par:pas; +éberlua éberluer ver 0.02 1.89 0.00 0.07 ind:pas:3s; +éberluait éberluer ver 0.02 1.89 0.00 0.14 ind:imp:3s; +éberlue éberluer ver 0.02 1.89 0.00 0.07 ind:pre:3s; +éberluer éberluer ver 0.02 1.89 0.01 0.07 inf; +éberlué éberlué adj m s 0.01 2.70 0.01 1.28 +éberluée éberluer ver f s 0.02 1.89 0.01 0.27 par:pas; +éberluées éberlué adj f p 0.01 2.70 0.00 0.14 +éberlués éberlué adj m p 0.01 2.70 0.00 0.61 +ubique ubique adj s 0.00 0.07 0.00 0.07 +ubiquiste ubiquiste nom s 0.01 0.27 0.01 0.27 +ubiquitaire ubiquitaire adj m s 0.00 0.14 0.00 0.14 +ubiquité ubiquité nom f s 0.04 1.82 0.04 1.82 +ébloui éblouir ver m s 3.88 19.73 0.65 5.68 par:pas; +éblouie éblouir ver f s 3.88 19.73 0.28 2.09 par:pas; +éblouies éblouir ver f p 3.88 19.73 0.03 0.20 par:pas; +éblouir éblouir ver 3.88 19.73 0.92 2.30 inf; +éblouira éblouir ver 3.88 19.73 0.03 0.07 ind:fut:3s; +éblouirai éblouir ver 3.88 19.73 0.10 0.07 ind:fut:1s; +éblouirait éblouir ver 3.88 19.73 0.00 0.14 cnd:pre:3s; +éblouirent éblouir ver 3.88 19.73 0.00 0.14 ind:pas:3p; +éblouirez éblouir ver 3.88 19.73 0.00 0.07 ind:fut:2p; +éblouis éblouir ver m p 3.88 19.73 0.65 1.82 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +éblouissaient éblouir ver 3.88 19.73 0.00 0.54 ind:imp:3p; +éblouissait éblouir ver 3.88 19.73 0.12 1.82 ind:imp:3s; +éblouissant éblouissant adj m s 2.07 13.24 0.65 3.04 +éblouissante éblouissant adj f s 2.07 13.24 1.00 6.28 +éblouissantes éblouissant adj f p 2.07 13.24 0.14 2.36 +éblouissants éblouissant adj m p 2.07 13.24 0.27 1.55 +éblouisse éblouir ver 3.88 19.73 0.04 0.07 sub:pre:3s; +éblouissement éblouissement nom m s 0.29 5.95 0.29 5.14 +éblouissements éblouissement nom m p 0.29 5.95 0.00 0.81 +éblouissent éblouir ver 3.88 19.73 0.27 1.01 ind:pre:3p; +éblouisses éblouir ver 3.88 19.73 0.00 0.07 sub:pre:2s; +éblouissez éblouir ver 3.88 19.73 0.03 0.07 imp:pre:2p;ind:pre:2p; +éblouissions éblouir ver 3.88 19.73 0.00 0.07 ind:imp:1p; +éblouit éblouir ver 3.88 19.73 0.58 2.57 ind:pre:3s;ind:pas:3s; +ébonite ébonite nom f s 0.00 0.88 0.00 0.88 +éborgna éborgner ver 0.47 0.54 0.00 0.07 ind:pas:3s; +éborgne éborgner ver 0.47 0.54 0.02 0.14 ind:pre:1s;ind:pre:3s; +éborgner éborgner ver 0.47 0.54 0.41 0.20 inf; +éborgné éborgner ver m s 0.47 0.54 0.04 0.14 par:pas; +éboueur éboueur nom m s 1.93 2.70 0.97 0.61 +éboueurs éboueur nom m p 1.93 2.70 0.96 2.09 +ébouillanta ébouillanter ver 0.58 0.61 0.14 0.00 ind:pas:3s; +ébouillante ébouillanter ver 0.58 0.61 0.05 0.14 ind:pre:1s;ind:pre:3s; +ébouillanter ébouillanter ver 0.58 0.61 0.16 0.20 inf; +ébouillanté ébouillanter ver m s 0.58 0.61 0.22 0.14 par:pas; +ébouillantée ébouillanté adj f s 0.15 0.47 0.14 0.07 +ébouillantées ébouillanté adj f p 0.15 0.47 0.01 0.07 +ébouillantés ébouillanté adj m p 0.15 0.47 0.00 0.20 +éboula ébouler ver 0.03 1.82 0.00 0.07 ind:pas:3s; +éboulaient ébouler ver 0.03 1.82 0.00 0.14 ind:imp:3p; +éboulait ébouler ver 0.03 1.82 0.00 0.14 ind:imp:3s; +éboulant ébouler ver 0.03 1.82 0.00 0.14 par:pre; +éboule ébouler ver 0.03 1.82 0.00 0.41 ind:pre:3s; +éboulement éboulement nom m s 0.54 2.36 0.48 1.49 +éboulements éboulement nom m p 0.54 2.36 0.06 0.88 +éboulent ébouler ver 0.03 1.82 0.00 0.07 ind:pre:3p; +ébouler ébouler ver 0.03 1.82 0.01 0.07 inf; +ébouleuses ébouleux adj f p 0.00 0.07 0.00 0.07 +éboulis éboulis nom m 0.16 3.99 0.16 3.99 +éboulèrent ébouler ver 0.03 1.82 0.00 0.07 ind:pas:3p; +éboulé ébouler ver m s 0.03 1.82 0.01 0.14 par:pas; +éboulée ébouler ver f s 0.03 1.82 0.00 0.20 par:pas; +éboulées ébouler ver f p 0.03 1.82 0.00 0.20 par:pas; +éboulés ébouler ver m p 0.03 1.82 0.01 0.20 par:pas; +ébouriffa ébouriffer ver 0.08 2.97 0.00 0.74 ind:pas:3s; +ébouriffaient ébouriffer ver 0.08 2.97 0.00 0.14 ind:imp:3p; +ébouriffait ébouriffer ver 0.08 2.97 0.01 0.41 ind:imp:3s; +ébouriffant ébouriffant adj m s 0.03 0.07 0.01 0.07 +ébouriffante ébouriffant adj f s 0.03 0.07 0.02 0.00 +ébouriffe ébouriffer ver 0.08 2.97 0.02 0.14 imp:pre:2s;ind:pre:3s; +ébouriffent ébouriffer ver 0.08 2.97 0.00 0.20 ind:pre:3p; +ébouriffer ébouriffer ver 0.08 2.97 0.00 0.20 inf; +ébouriffé ébouriffé adj m s 0.22 3.45 0.05 1.01 +ébouriffée ébouriffé adj f s 0.22 3.45 0.12 0.74 +ébouriffées ébouriffé adj f p 0.22 3.45 0.00 0.20 +ébouriffés ébouriffé adj m p 0.22 3.45 0.05 1.49 +ébouser ébouser ver 0.00 0.07 0.00 0.07 inf; +éboué ébouer ver m s 0.00 1.82 0.00 1.82 par:pas; +ébouzer ébouzer ver 0.00 0.14 0.00 0.07 inf; +ébouzé ébouzer ver m s 0.00 0.14 0.00 0.07 par:pas; +ébrancha ébrancher ver 0.00 0.68 0.00 0.14 ind:pas:3s; +ébranchait ébrancher ver 0.00 0.68 0.00 0.14 ind:imp:3s; +ébranchant ébrancher ver 0.00 0.68 0.00 0.07 par:pre; +ébranchement ébranchement nom m s 0.00 0.07 0.00 0.07 +ébrancher ébrancher ver 0.00 0.68 0.00 0.14 inf; +ébrancherez ébrancher ver 0.00 0.68 0.00 0.07 ind:fut:2p; +ébranché ébranché adj m s 0.00 0.07 0.00 0.07 +ébranchés ébrancher ver m p 0.00 0.68 0.00 0.14 par:pas; +ébranla ébranler ver 3.37 23.45 0.15 3.85 ind:pas:3s; +ébranlaient ébranler ver 3.37 23.45 0.00 0.95 ind:imp:3p; +ébranlait ébranler ver 3.37 23.45 0.01 2.70 ind:imp:3s; +ébranlant ébranler ver 3.37 23.45 0.00 0.74 par:pre; +ébranle ébranler ver 3.37 23.45 0.22 2.97 imp:pre:2s;ind:pre:3s; +ébranlement ébranlement nom m s 0.01 1.55 0.01 1.08 +ébranlements ébranlement nom m p 0.01 1.55 0.00 0.47 +ébranlent ébranler ver 3.37 23.45 0.03 1.08 ind:pre:3p; +ébranler ébranler ver 3.37 23.45 1.35 3.78 inf; +ébranlera ébranler ver 3.37 23.45 0.03 0.07 ind:fut:3s; +ébranlerai ébranler ver 3.37 23.45 0.01 0.00 ind:fut:1s; +ébranleraient ébranler ver 3.37 23.45 0.01 0.07 cnd:pre:3p; +ébranlerais ébranler ver 3.37 23.45 0.00 0.07 cnd:pre:1s; +ébranlerait ébranler ver 3.37 23.45 0.00 0.07 cnd:pre:3s; +ébranlât ébranler ver 3.37 23.45 0.00 0.14 sub:imp:3s; +ébranlèrent ébranler ver 3.37 23.45 0.00 0.61 ind:pas:3p; +ébranlé ébranler ver m s 3.37 23.45 0.89 3.51 par:pas; +ébranlée ébranler ver f s 3.37 23.45 0.59 2.03 par:pas; +ébranlées ébranler ver f p 3.37 23.45 0.01 0.20 par:pas; +ébranlés ébranler ver m p 3.37 23.45 0.06 0.61 par:pas; +ébriété ébriété nom f s 0.73 1.15 0.73 1.15 +ébroua ébrouer ver 0.01 8.11 0.00 1.76 ind:pas:3s; +ébrouaient ébrouer ver 0.01 8.11 0.00 0.27 ind:imp:3p; +ébrouais ébrouer ver 0.01 8.11 0.00 0.07 ind:imp:1s; +ébrouait ébrouer ver 0.01 8.11 0.00 1.55 ind:imp:3s; +ébrouant ébrouer ver 0.01 8.11 0.00 1.22 par:pre; +ébroue ébrouer ver 0.01 8.11 0.00 1.35 ind:pre:1s;ind:pre:3s; +ébrouement ébrouement nom m s 0.00 0.14 0.00 0.14 +ébrouent ébrouer ver 0.01 8.11 0.00 0.61 ind:pre:3p; +ébrouer ébrouer ver 0.01 8.11 0.01 0.95 inf; +ébrouèrent ébrouer ver 0.01 8.11 0.00 0.14 ind:pas:3p; +ébroué ébrouer ver m s 0.01 8.11 0.00 0.20 par:pas; +ébrèche ébrécher ver 0.74 0.95 0.03 0.07 ind:pre:3s; +ébréchaient ébrécher ver 0.74 0.95 0.00 0.07 ind:imp:3p; +ébrécher ébrécher ver 0.74 0.95 0.00 0.14 inf; +ébréché ébrécher ver m s 0.74 0.95 0.39 0.14 par:pas; +ébréchée ébrécher ver f s 0.74 0.95 0.32 0.27 par:pas; +ébréchées ébréché adj f p 0.37 3.65 0.14 0.61 +ébréchure ébréchure nom f s 0.00 0.20 0.00 0.07 +ébréchures ébréchure nom f p 0.00 0.20 0.00 0.14 +ébréchés ébréché adj m p 0.37 3.65 0.00 0.81 +ébruita ébruiter ver 1.32 1.22 0.00 0.07 ind:pas:3s; +ébruite ébruiter ver 1.32 1.22 0.58 0.27 imp:pre:2s;ind:pre:3s; +ébruitent ébruiter ver 1.32 1.22 0.02 0.00 ind:pre:3p; +ébruiter ébruiter ver 1.32 1.22 0.37 0.54 inf; +ébruitera ébruiter ver 1.32 1.22 0.01 0.00 ind:fut:3s; +ébruiterait ébruiter ver 1.32 1.22 0.02 0.00 cnd:pre:3s; +ébruitez ébruiter ver 1.32 1.22 0.22 0.07 imp:pre:2p;ind:pre:2p; +ébruitons ébruiter ver 1.32 1.22 0.05 0.00 imp:pre:1p;ind:pre:1p; +ébruitât ébruiter ver 1.32 1.22 0.00 0.07 sub:imp:3s; +ébruité ébruiter ver m s 1.32 1.22 0.03 0.00 par:pas; +ébruitée ébruiter ver f s 1.32 1.22 0.01 0.20 par:pas; +ébène ébène nom f s 0.51 4.26 0.51 4.26 +ubuesque ubuesque adj f s 0.14 0.07 0.14 0.07 +ébullition ébullition nom f s 0.79 1.35 0.79 1.35 +ébéniste ébéniste nom s 0.24 1.55 0.11 1.35 +ébénisterie ébénisterie nom f s 0.00 0.41 0.00 0.34 +ébénisteries ébénisterie nom f p 0.00 0.41 0.00 0.07 +ébénistes ébéniste nom p 0.24 1.55 0.13 0.20 +écaillage écaillage nom m s 0.03 0.00 0.03 0.00 +écaillaient écailler ver 0.74 4.66 0.00 0.34 ind:imp:3p; +écaillait écailler ver 0.74 4.66 0.14 0.61 ind:imp:3s; +écaillant écailler ver 0.74 4.66 0.00 0.34 par:pre; +écaille écaille nom f s 1.42 11.35 0.57 6.15 +écaillent écailler ver 0.74 4.66 0.01 0.20 ind:pre:3p; +écailler écailler ver 0.74 4.66 0.28 0.61 inf; +écaillera écailler ver 0.74 4.66 0.01 0.00 ind:fut:3s; +écaillerai écailler ver 0.74 4.66 0.00 0.07 ind:fut:1s; +écaillers écailler nom m p 0.11 0.27 0.00 0.07 +écailles écaille nom f p 1.42 11.35 0.84 5.20 +écailleur écailleur nom m s 0.00 0.07 0.00 0.07 +écailleuse écailleux adj f s 0.00 0.74 0.00 0.34 +écailleuses écailleux adj f p 0.00 0.74 0.00 0.07 +écailleux écailleux adj m 0.00 0.74 0.00 0.34 +écaillère écailler nom f s 0.11 0.27 0.01 0.00 +écaillé écailler ver m s 0.74 4.66 0.04 0.27 par:pas; +écaillée écailler ver f s 0.74 4.66 0.06 0.81 par:pas; +écaillées écaillé adj f p 0.07 2.97 0.03 0.41 +écaillure écaillure nom f s 0.00 0.14 0.00 0.07 +écaillures écaillure nom f p 0.00 0.14 0.00 0.07 +écaillés écaillé adj m p 0.07 2.97 0.01 0.27 +écalait écaler ver 0.00 0.14 0.00 0.07 ind:imp:3s; +écale écale nom f s 0.02 0.07 0.00 0.07 +écaler écaler ver 0.00 0.14 0.00 0.07 inf; +écales écale nom f p 0.02 0.07 0.02 0.00 +écarlate écarlate adj s 0.78 8.58 0.66 5.95 +écarlates écarlate adj p 0.78 8.58 0.12 2.64 +écarquilla écarquiller ver 0.76 8.85 0.00 0.95 ind:pas:3s; +écarquillai écarquiller ver 0.76 8.85 0.00 0.14 ind:pas:1s; +écarquillaient écarquiller ver 0.76 8.85 0.01 0.34 ind:imp:3p; +écarquillais écarquiller ver 0.76 8.85 0.10 0.07 ind:imp:1s; +écarquillait écarquiller ver 0.76 8.85 0.00 0.54 ind:imp:3s; +écarquillant écarquiller ver 0.76 8.85 0.00 0.95 par:pre; +écarquille écarquiller ver 0.76 8.85 0.11 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écarquillement écarquillement nom m s 0.00 0.20 0.00 0.20 +écarquillent écarquiller ver 0.76 8.85 0.00 0.20 ind:pre:3p; +écarquiller écarquiller ver 0.76 8.85 0.00 0.41 inf; +écarquillez écarquiller ver 0.76 8.85 0.02 0.00 imp:pre:2p;ind:pre:2p; +écarquillions écarquiller ver 0.76 8.85 0.00 0.14 ind:imp:1p; +écarquillèrent écarquiller ver 0.76 8.85 0.10 0.07 ind:pas:3p; +écarquillé écarquiller ver m s 0.76 8.85 0.00 0.34 par:pas; +écarquillée écarquiller ver f s 0.76 8.85 0.00 0.07 par:pas; +écarquillées écarquiller ver f p 0.76 8.85 0.00 0.20 par:pas; +écarquillés écarquiller ver m p 0.76 8.85 0.41 3.24 par:pas; +écart écart nom m s 14.71 34.53 14.36 32.30 +écarta écarter ver 24.83 92.36 0.51 13.72 ind:pas:3s; +écartai écarter ver 24.83 92.36 0.00 1.89 ind:pas:1s; +écartaient écarter ver 24.83 92.36 0.04 4.66 ind:imp:3p; +écartais écarter ver 24.83 92.36 0.06 0.68 ind:imp:1s;ind:imp:2s; +écartait écarter ver 24.83 92.36 0.51 7.23 ind:imp:3s; +écartant écarter ver 24.83 92.36 0.16 9.86 par:pre; +écarte écarter ver 24.83 92.36 5.95 13.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écartela écarteler ver 0.35 3.18 0.00 0.07 ind:pas:3s; +écartelaient écarteler ver 0.35 3.18 0.00 0.14 ind:imp:3p; +écartelait écarteler ver 0.35 3.18 0.00 0.20 ind:imp:3s; +écartelant écarteler ver 0.35 3.18 0.01 0.07 par:pre; +écarteler écarteler ver 0.35 3.18 0.06 0.34 inf; +écartelé écarteler ver m s 0.35 3.18 0.20 0.95 par:pas; +écartelée écarteler ver f s 0.35 3.18 0.02 0.20 par:pas; +écartelées écartelé adj f p 0.19 1.96 0.14 0.47 +écartelés écartelé adj m p 0.19 1.96 0.01 0.27 +écartement écartement nom m s 0.05 0.47 0.05 0.41 +écartements écartement nom m p 0.05 0.47 0.00 0.07 +écartent écarter ver 24.83 92.36 0.26 3.78 ind:pre:3p; +écarter écarter ver 24.83 92.36 4.77 16.89 ind:pre:2p;inf; +écartera écarter ver 24.83 92.36 0.05 0.14 ind:fut:3s; +écarteraient écarter ver 24.83 92.36 0.00 0.07 cnd:pre:3p; +écarterait écarter ver 24.83 92.36 0.04 0.07 cnd:pre:3s; +écarteras écarter ver 24.83 92.36 0.12 0.00 ind:fut:2s; +écarterez écarter ver 24.83 92.36 0.01 0.00 ind:fut:2p; +écarteront écarter ver 24.83 92.36 0.01 0.07 ind:fut:3p; +écartes écarter ver 24.83 92.36 0.72 0.20 ind:pre:2s; +écarteur écarteur nom m s 0.27 0.00 0.27 0.00 +écartez écarter ver 24.83 92.36 6.30 1.01 imp:pre:2p;ind:pre:2p; +écartions écarter ver 24.83 92.36 0.02 0.14 ind:imp:1p; +écartâmes écarter ver 24.83 92.36 0.00 0.07 ind:pas:1p; +écartons écarter ver 24.83 92.36 0.32 0.14 imp:pre:1p;ind:pre:1p; +écartât écarter ver 24.83 92.36 0.00 0.41 sub:imp:3s; +écarts écart nom m p 14.71 34.53 0.35 2.23 +écartèle écarteler ver 0.35 3.18 0.05 0.47 ind:pre:1s;ind:pre:3s; +écartèlement écartèlement nom m s 0.03 0.34 0.02 0.27 +écartèlements écartèlement nom m p 0.03 0.34 0.01 0.07 +écartèlent écarteler ver 0.35 3.18 0.00 0.27 ind:pre:3p; +écartèleront écarteler ver 0.35 3.18 0.01 0.00 ind:fut:3p; +écartèrent écarter ver 24.83 92.36 0.12 2.43 ind:pas:3p; +écarté écarter ver m s 24.83 92.36 2.69 8.04 par:pas; +écartée écarter ver f s 24.83 92.36 0.88 1.89 par:pas; +écartées écarté adj f p 3.36 16.76 1.57 8.85 +écartés écarter ver m p 24.83 92.36 1.10 3.11 par:pas; +écervelé écervelé adj m s 0.81 0.61 0.46 0.14 +écervelée écervelé nom f s 0.91 0.88 0.34 0.27 +écervelées écervelé nom f p 0.91 0.88 0.17 0.07 +écervelés écervelé adj m p 0.81 0.61 0.17 0.14 +échût échoir ver 0.86 2.16 0.00 0.14 sub:imp:3s; +échafaud échafaud nom m s 0.85 2.43 0.85 2.23 +échafauda échafauder ver 0.44 3.24 0.00 0.07 ind:pas:3s; +échafaudage échafaudage nom m s 0.86 6.42 0.70 3.78 +échafaudages échafaudage nom m p 0.86 6.42 0.15 2.64 +échafaudaient échafauder ver 0.44 3.24 0.01 0.20 ind:imp:3p; +échafaudais échafauder ver 0.44 3.24 0.00 0.14 ind:imp:1s; +échafaudait échafauder ver 0.44 3.24 0.00 0.74 ind:imp:3s; +échafaudant échafauder ver 0.44 3.24 0.14 0.41 par:pre; +échafaude échafauder ver 0.44 3.24 0.02 0.20 ind:pre:3s; +échafaudent échafauder ver 0.44 3.24 0.00 0.14 ind:pre:3p; +échafauder échafauder ver 0.44 3.24 0.17 0.54 inf; +échafaudons échafauder ver 0.44 3.24 0.00 0.07 ind:pre:1p; +échafauds échafaud nom m p 0.85 2.43 0.00 0.20 +échafaudèrent échafauder ver 0.44 3.24 0.00 0.07 ind:pas:3p; +échafaudé échafauder ver m s 0.44 3.24 0.09 0.27 par:pas; +échafaudées échafauder ver f p 0.44 3.24 0.01 0.14 par:pas; +échafaudés échafauder ver m p 0.44 3.24 0.00 0.27 par:pas; +échalas échalas nom m 0.41 1.76 0.41 1.76 +échalier échalier nom m s 0.02 0.20 0.02 0.00 +échaliers échalier nom m p 0.02 0.20 0.00 0.20 +échalote échalote nom f s 1.30 1.28 0.80 0.81 +échalotes échalote nom f p 1.30 1.28 0.50 0.47 +échancraient échancrer ver 0.01 0.95 0.00 0.07 ind:imp:3p; +échancre échancrer ver 0.01 0.95 0.00 0.14 ind:pre:3s; +échancrer échancrer ver 0.01 0.95 0.00 0.20 inf; +échancré échancré adj m s 0.06 1.15 0.03 0.47 +échancrée échancré adj f s 0.06 1.15 0.02 0.27 +échancrées échancré adj f p 0.06 1.15 0.00 0.20 +échancrure échancrure nom f s 0.00 3.31 0.00 3.04 +échancrures échancrure nom f p 0.00 3.31 0.00 0.27 +échancrés échancré adj m p 0.06 1.15 0.01 0.20 +échange échange nom m s 32.77 32.43 29.97 23.99 +échangea échanger ver 27.38 58.18 0.02 2.03 ind:pas:3s; +échangeables échangeable adj m p 0.01 0.07 0.01 0.07 +échangeai échanger ver 27.38 58.18 0.03 0.61 ind:pas:1s; +échangeaient échanger ver 27.38 58.18 0.07 5.41 ind:imp:3p; +échangeais échanger ver 27.38 58.18 0.06 0.34 ind:imp:1s;ind:imp:2s; +échangeait échanger ver 27.38 58.18 0.27 2.91 ind:imp:3s; +échangeant échanger ver 27.38 58.18 0.16 3.11 par:pre; +échangent échanger ver 27.38 58.18 0.81 3.72 ind:pre:3p; +échangeâmes échanger ver 27.38 58.18 0.02 1.49 ind:pas:1p; +échangeons échanger ver 27.38 58.18 0.17 0.68 imp:pre:1p;ind:pre:1p; +échanger échanger ver 27.38 58.18 9.86 12.03 inf; +échangera échanger ver 27.38 58.18 0.36 0.07 ind:fut:3s; +échangerai échanger ver 27.38 58.18 0.31 0.07 ind:fut:1s; +échangeraient échanger ver 27.38 58.18 0.04 0.20 cnd:pre:3p; +échangerais échanger ver 27.38 58.18 0.92 0.07 cnd:pre:1s;cnd:pre:2s; +échangerait échanger ver 27.38 58.18 0.25 0.41 cnd:pre:3s; +échangeras échanger ver 27.38 58.18 0.16 0.00 ind:fut:2s; +échangerez échanger ver 27.38 58.18 0.14 0.00 ind:fut:2p; +échangeriez échanger ver 27.38 58.18 0.06 0.00 cnd:pre:2p; +échangerions échanger ver 27.38 58.18 0.00 0.07 cnd:pre:1p; +échangerons échanger ver 27.38 58.18 0.09 0.07 ind:fut:1p; +échangeront échanger ver 27.38 58.18 0.06 0.07 ind:fut:3p; +échanges échange nom m p 32.77 32.43 2.81 8.45 +échangeur échangeur nom m s 0.30 0.47 0.30 0.20 +échangeurs échangeur nom m p 0.30 0.47 0.00 0.27 +échangez échanger ver 27.38 58.18 0.44 0.27 imp:pre:2p;ind:pre:2p; +échangiez échanger ver 27.38 58.18 0.04 0.07 ind:imp:2p; +échangions échanger ver 27.38 58.18 0.19 1.35 ind:imp:1p; +échangisme échangisme nom m s 0.16 0.00 0.16 0.00 +échangiste échangiste nom s 0.29 0.07 0.14 0.00 +échangistes échangiste nom p 0.29 0.07 0.16 0.07 +échangèrent échanger ver 27.38 58.18 0.02 5.27 ind:pas:3p; +échangé échanger ver m s 27.38 58.18 5.79 8.58 par:pas; +échangée échanger ver f s 27.38 58.18 0.41 0.41 par:pas; +échangées échanger ver f p 27.38 58.18 0.46 2.09 par:pas; +échangés échanger ver m p 27.38 58.18 0.81 3.65 par:pas; +échanson échanson nom m s 0.00 0.34 0.00 0.27 +échansons échanson nom m p 0.00 0.34 0.00 0.07 +échantillon échantillon nom m s 16.87 6.96 10.36 2.43 +échantillonnage échantillonnage nom m s 0.41 0.74 0.41 0.74 +échantillonne échantillonner ver 0.02 0.00 0.02 0.00 ind:pre:1s; +échantillons échantillon nom m p 16.87 6.96 6.51 4.53 +échappa échapper ver 95.05 132.64 0.28 4.05 ind:pas:3s; +échappai échapper ver 95.05 132.64 0.12 0.14 ind:pas:1s; +échappaient échapper ver 95.05 132.64 0.48 6.96 ind:imp:3p; +échappais échapper ver 95.05 132.64 0.28 1.08 ind:imp:1s;ind:imp:2s; +échappait échapper ver 95.05 132.64 0.94 15.41 ind:imp:3s; +échappant échapper ver 95.05 132.64 0.29 3.78 par:pre; +échappatoire échappatoire nom f s 1.96 0.95 1.46 0.61 +échappatoires échappatoire nom f p 1.96 0.95 0.50 0.34 +échappe échapper ver 95.05 132.64 16.76 18.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +échappement échappement nom m s 2.03 1.69 1.93 1.55 +échappements échappement nom m p 2.03 1.69 0.10 0.14 +échappent échapper ver 95.05 132.64 3.84 6.69 ind:pre:3p;sub:pre:3p; +échapper échapper ver 95.05 132.64 39.70 48.04 inf; +échappera échapper ver 95.05 132.64 2.76 1.28 ind:fut:3s; +échapperai échapper ver 95.05 132.64 0.38 0.07 ind:fut:1s; +échapperaient échapper ver 95.05 132.64 0.02 0.41 cnd:pre:3p; +échapperais échapper ver 95.05 132.64 0.17 0.20 cnd:pre:1s;cnd:pre:2s; +échapperait échapper ver 95.05 132.64 0.28 1.96 cnd:pre:3s; +échapperas échapper ver 95.05 132.64 1.81 0.27 ind:fut:2s; +échapperez échapper ver 95.05 132.64 0.81 0.34 ind:fut:2p; +échapperiez échapper ver 95.05 132.64 0.02 0.00 cnd:pre:2p; +échapperions échapper ver 95.05 132.64 0.01 0.07 cnd:pre:1p; +échapperons échapper ver 95.05 132.64 0.05 0.07 ind:fut:1p; +échapperont échapper ver 95.05 132.64 0.14 0.27 ind:fut:3p; +échappes échapper ver 95.05 132.64 0.51 0.20 ind:pre:2s; +échappez échapper ver 95.05 132.64 0.13 0.14 imp:pre:2p;ind:pre:2p; +échappiez échapper ver 95.05 132.64 0.09 0.07 ind:imp:2p;sub:pre:2p; +échappions échapper ver 95.05 132.64 0.13 0.34 ind:imp:1p; +échappâmes échapper ver 95.05 132.64 0.00 0.07 ind:pas:1p; +échappons échapper ver 95.05 132.64 0.26 0.27 imp:pre:1p;ind:pre:1p; +échappât échapper ver 95.05 132.64 0.00 0.61 sub:imp:3s; +échappèrent échapper ver 95.05 132.64 0.05 1.15 ind:pas:3p; +échappé échapper ver m s 95.05 132.64 19.84 17.64 par:pas; +échappée échapper ver f s 95.05 132.64 2.17 1.08 par:pas; +échappées échapper ver f p 95.05 132.64 0.22 0.34 par:pas; +échappés échapper ver m p 95.05 132.64 2.50 1.01 par:pas; +écharde écharde nom f s 0.62 2.91 0.37 1.42 +échardes écharde nom f p 0.62 2.91 0.25 1.49 +écharnait écharner ver 0.00 0.27 0.00 0.07 ind:imp:3s; +écharner écharner ver 0.00 0.27 0.00 0.20 inf; +écharpe écharpe nom f s 5.14 13.92 4.68 11.22 +écharpent écharper ver 0.07 1.08 0.01 0.00 ind:pre:3p; +écharper écharper ver 0.07 1.08 0.04 0.47 inf; +écharperaient écharper ver 0.07 1.08 0.00 0.07 cnd:pre:3p; +écharpes écharpe nom f p 5.14 13.92 0.46 2.70 +écharpé écharper ver m s 0.07 1.08 0.00 0.07 par:pas; +écharpée écharper ver f s 0.07 1.08 0.00 0.20 par:pas; +échasse échasse nom f s 0.42 1.15 0.04 0.00 +échasses échasse nom f p 0.42 1.15 0.38 1.15 +échassier échassier nom m s 0.02 3.51 0.01 2.57 +échassiers échassier nom m p 0.02 3.51 0.01 0.95 +échassière échassier adj f s 0.00 0.61 0.00 0.20 +échassières échassier adj f p 0.00 0.61 0.00 0.41 +échauder échauder ver 0.05 0.34 0.00 0.07 inf; +échauderont échauder ver 0.05 0.34 0.00 0.07 ind:fut:3p; +échaudé échaudé adj m s 0.05 0.34 0.05 0.27 +échaudée échaudé adj f s 0.05 0.34 0.00 0.07 +échaudés échauder ver m p 0.05 0.34 0.04 0.00 par:pas; +échauffa échauffer ver 3.25 6.76 0.01 0.20 ind:pas:3s; +échauffaient échauffer ver 3.25 6.76 0.00 0.27 ind:imp:3p; +échauffais échauffer ver 3.25 6.76 0.04 0.20 ind:imp:1s; +échauffait échauffer ver 3.25 6.76 0.06 0.81 ind:imp:3s; +échauffant échauffer ver 3.25 6.76 0.02 0.27 par:pre; +échauffe échauffer ver 3.25 6.76 0.59 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +échauffement échauffement nom m s 0.66 0.88 0.62 0.74 +échauffements échauffement nom m p 0.66 0.88 0.04 0.14 +échauffent échauffer ver 3.25 6.76 0.11 0.27 ind:pre:3p;sub:pre:3p; +échauffer échauffer ver 3.25 6.76 1.39 0.88 inf; +échauffez échauffer ver 3.25 6.76 0.26 0.14 imp:pre:2p;ind:pre:2p; +échauffons échauffer ver 3.25 6.76 0.11 0.00 imp:pre:1p;ind:pre:1p; +échauffourée échauffourée nom f s 0.32 1.35 0.08 0.95 +échauffourées échauffourée nom f p 0.32 1.35 0.24 0.41 +échauffé échauffer ver m s 3.25 6.76 0.43 1.62 par:pas; +échauffée échauffer ver f s 3.25 6.76 0.17 0.61 par:pas; +échauffées échauffer ver f p 3.25 6.76 0.01 0.20 par:pas; +échauffés échauffer ver m p 3.25 6.76 0.06 0.41 par:pas; +échauguette échauguette nom f s 0.00 0.27 0.00 0.07 +échauguettes échauguette nom f p 0.00 0.27 0.00 0.20 +échec échec nom m s 24.31 33.72 15.47 21.76 +échecs échec nom m p 24.31 33.72 8.84 11.96 +échelle échelle nom f s 14.09 31.76 13.46 28.04 +échelles échelle nom f p 14.09 31.76 0.64 3.72 +échelon échelon nom m s 1.48 6.08 0.77 2.91 +échelonnaient échelonner ver 0.13 1.49 0.00 0.14 ind:imp:3p; +échelonnait échelonner ver 0.13 1.49 0.00 0.07 ind:imp:3s; +échelonnant échelonner ver 0.13 1.49 0.00 0.20 par:pre; +échelonne échelonner ver 0.13 1.49 0.00 0.07 ind:pre:3s; +échelonnent échelonner ver 0.13 1.49 0.01 0.14 ind:pre:3p; +échelonner échelonner ver 0.13 1.49 0.04 0.20 inf; +échelonnerons échelonner ver 0.13 1.49 0.00 0.07 ind:fut:1p; +échelonné échelonner ver m s 0.13 1.49 0.07 0.07 par:pas; +échelonnée échelonner ver f s 0.13 1.49 0.00 0.07 par:pas; +échelonnées échelonner ver f p 0.13 1.49 0.01 0.14 par:pas; +échelonnés échelonner ver m p 0.13 1.49 0.01 0.34 par:pas; +échelons échelon nom m p 1.48 6.08 0.71 3.18 +écher écher ver 0.01 0.00 0.01 0.00 inf; +écheveau écheveau nom m s 0.17 3.72 0.15 2.64 +écheveaux écheveau nom m p 0.17 3.72 0.02 1.08 +échevelait écheveler ver 0.03 1.42 0.00 0.27 ind:imp:3s; +échevelant écheveler ver 0.03 1.42 0.00 0.07 par:pre; +écheveler écheveler ver 0.03 1.42 0.00 0.07 inf; +échevellement échevellement nom m s 0.00 0.07 0.00 0.07 +échevelé échevelé adj m s 0.03 3.65 0.01 0.74 +échevelée échevelé adj f s 0.03 3.65 0.01 2.09 +échevelées échevelé adj f p 0.03 3.65 0.00 0.34 +échevelés échevelé adj m p 0.03 3.65 0.01 0.47 +échevin échevin nom m s 0.48 0.34 0.48 0.27 +échevins échevin nom m p 0.48 0.34 0.00 0.07 +échina échiner ver 0.61 1.22 0.01 0.00 ind:pas:3s; +échinaient échiner ver 0.61 1.22 0.01 0.07 ind:imp:3p; +échinais échiner ver 0.61 1.22 0.01 0.07 ind:imp:1s; +échinait échiner ver 0.61 1.22 0.10 0.20 ind:imp:3s; +échinant échiner ver 0.61 1.22 0.00 0.14 par:pre; +échine échine nom f s 1.18 8.85 1.18 8.18 +échinent échiner ver 0.61 1.22 0.02 0.07 ind:pre:3p; +échiner échiner ver 0.61 1.22 0.05 0.27 inf; +échines échiner ver 0.61 1.22 0.01 0.00 ind:pre:2s; +échinodermes échinoderme nom m p 0.01 0.00 0.01 0.00 +échiné échiner ver m s 0.61 1.22 0.16 0.07 par:pas; +échinée échiner ver f s 0.61 1.22 0.02 0.00 par:pas; +échiquier échiquier nom m s 0.75 2.84 0.70 2.77 +échiquiers échiquier nom m p 0.75 2.84 0.05 0.07 +écho écho nom m s 6.65 45.95 5.83 32.50 +échocardiogramme échocardiogramme nom m s 0.07 0.00 0.07 0.00 +échocardiographie échocardiographie nom f s 0.01 0.00 0.01 0.00 +échographie échographie nom f s 1.39 0.07 1.39 0.07 +échographier échographier ver 0.01 0.00 0.01 0.00 inf; +échographiste échographiste nom s 0.01 0.00 0.01 0.00 +échoir échoir ver 0.86 2.16 0.20 0.14 inf; +échoirait échoir ver 0.86 2.16 0.00 0.07 cnd:pre:3s; +échoit échoir ver 0.86 2.16 0.23 0.47 ind:pre:3s; +écholocalisation écholocalisation nom f s 0.05 0.00 0.05 0.00 +écholocation écholocation nom f s 0.01 0.00 0.01 0.00 +échoppe échoppe nom f s 0.20 3.31 0.19 2.03 +échoppes échoppe nom f p 0.20 3.31 0.01 1.28 +échos_radar échos_radar nom m p 0.01 0.00 0.01 0.00 +échos écho nom m p 6.65 45.95 0.82 13.45 +échotier échotier nom m s 0.04 0.61 0.00 0.07 +échotiers échotier nom m p 0.04 0.61 0.03 0.47 +échotière échotier nom f s 0.04 0.61 0.01 0.07 +échoua échouer ver 30.62 20.61 0.19 0.88 ind:pas:3s; +échouage échouage nom m s 0.02 0.34 0.01 0.20 +échouages échouage nom m p 0.02 0.34 0.01 0.14 +échouai échouer ver 30.62 20.61 0.02 0.27 ind:pas:1s; +échouaient échouer ver 30.62 20.61 0.02 0.41 ind:imp:3p; +échouais échouer ver 30.62 20.61 0.07 0.54 ind:imp:1s;ind:imp:2s; +échouait échouer ver 30.62 20.61 0.31 0.68 ind:imp:3s; +échouant échouer ver 30.62 20.61 0.14 0.07 par:pre; +échoue échouer ver 30.62 20.61 4.62 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +échouement échouement nom m s 0.00 0.07 0.00 0.07 +échouent échouer ver 30.62 20.61 0.86 0.47 ind:pre:3p; +échouer échouer ver 30.62 20.61 5.41 3.99 inf; +échouera échouer ver 30.62 20.61 0.51 0.20 ind:fut:3s; +échouerai échouer ver 30.62 20.61 0.33 0.00 ind:fut:1s; +échoueraient échouer ver 30.62 20.61 0.10 0.00 cnd:pre:3p; +échouerais échouer ver 30.62 20.61 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +échouerait échouer ver 30.62 20.61 0.13 0.20 cnd:pre:3s; +échoueras échouer ver 30.62 20.61 0.22 0.00 ind:fut:2s; +échouerez échouer ver 30.62 20.61 0.21 0.00 ind:fut:2p; +échouerons échouer ver 30.62 20.61 0.17 0.00 ind:fut:1p; +échoueront échouer ver 30.62 20.61 0.13 0.07 ind:fut:3p; +échouez échouer ver 30.62 20.61 0.48 0.00 imp:pre:2p;ind:pre:2p; +échouiez échouer ver 30.62 20.61 0.02 0.00 ind:imp:2p; +échouions échouer ver 30.62 20.61 0.02 0.07 ind:imp:1p; +échouâmes échouer ver 30.62 20.61 0.00 0.14 ind:pas:1p; +échouons échouer ver 30.62 20.61 0.38 0.27 ind:pre:1p; +échouât échouer ver 30.62 20.61 0.00 0.07 sub:imp:3s; +échouèrent échouer ver 30.62 20.61 0.02 0.34 ind:pas:3p; +échoué échouer ver m s 30.62 20.61 15.44 7.50 par:pas; +échouée échouer ver f s 30.62 20.61 0.41 1.01 par:pas; +échouées échouer ver f p 30.62 20.61 0.04 0.95 par:pas; +échoués échouer ver m p 30.62 20.61 0.29 1.01 par:pas; +échu échoir ver m s 0.86 2.16 0.29 0.54 par:pas; +échéance échéance nom f s 2.47 6.69 2.13 5.68 +échéances échéance nom f p 2.47 6.69 0.34 1.01 +échéancier échéancier nom m s 0.03 0.14 0.03 0.14 +échéant échéant adj m s 0.47 3.85 0.47 3.85 +échue échoir ver f s 0.86 2.16 0.00 0.47 par:pas; +échues échoir ver f p 0.86 2.16 0.02 0.14 par:pas; +échut échoir ver 0.86 2.16 0.11 0.20 ind:pas:3s; +éclaboussa éclabousser ver 1.98 9.80 0.00 0.34 ind:pas:3s; +éclaboussaient éclabousser ver 1.98 9.80 0.00 0.81 ind:imp:3p; +éclaboussait éclabousser ver 1.98 9.80 0.02 1.76 ind:imp:3s; +éclaboussant éclabousser ver 1.98 9.80 0.02 1.01 par:pre; +éclaboussante éclaboussant adj f s 0.01 0.54 0.00 0.14 +éclaboussantes éclaboussant adj f p 0.01 0.54 0.01 0.07 +éclaboussants éclaboussant adj m p 0.01 0.54 0.00 0.07 +éclabousse éclabousser ver 1.98 9.80 0.54 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éclaboussement éclaboussement nom m s 0.04 1.01 0.01 0.61 +éclaboussements éclaboussement nom m p 0.04 1.01 0.03 0.41 +éclaboussent éclabousser ver 1.98 9.80 0.05 0.61 ind:pre:3p; +éclabousser éclabousser ver 1.98 9.80 0.48 0.74 inf; +éclaboussera éclabousser ver 1.98 9.80 0.04 0.00 ind:fut:3s; +éclabousses éclabousser ver 1.98 9.80 0.03 0.07 ind:pre:2s; +éclaboussez éclabousser ver 1.98 9.80 0.02 0.00 imp:pre:2p;ind:pre:2p; +éclaboussèrent éclabousser ver 1.98 9.80 0.00 0.14 ind:pas:3p; +éclaboussé éclabousser ver m s 1.98 9.80 0.61 1.49 par:pas; +éclaboussée éclabousser ver f s 1.98 9.80 0.12 1.01 par:pas; +éclaboussées éclabousser ver f p 1.98 9.80 0.03 0.14 par:pas; +éclaboussure éclaboussure nom f s 1.98 3.51 0.59 0.54 +éclaboussures éclaboussure nom f p 1.98 3.51 1.39 2.97 +éclaboussés éclabousser ver m p 1.98 9.80 0.02 0.88 par:pas; +éclair éclair nom m s 11.25 35.00 7.86 21.08 +éclaira éclairer ver 18.03 85.95 0.19 6.62 ind:pas:3s; +éclairage éclairage nom m s 4.34 12.77 3.71 10.74 +éclairages éclairage nom m p 4.34 12.77 0.62 2.03 +éclairagiste éclairagiste nom s 0.14 0.14 0.13 0.07 +éclairagistes éclairagiste nom p 0.14 0.14 0.01 0.07 +éclairai éclairer ver 18.03 85.95 0.00 0.14 ind:pas:1s; +éclairaient éclairer ver 18.03 85.95 0.16 4.39 ind:imp:3p; +éclairais éclairer ver 18.03 85.95 0.00 0.07 ind:imp:1s; +éclairait éclairer ver 18.03 85.95 0.70 14.59 ind:imp:3s; +éclairant éclairer ver 18.03 85.95 0.15 3.24 par:pre; +éclairante éclairant adj f s 0.55 1.08 0.25 0.20 +éclairantes éclairant adj f p 0.55 1.08 0.21 0.47 +éclairants éclairant adj m p 0.55 1.08 0.04 0.00 +éclairci éclaircir ver m s 8.53 13.18 1.14 1.76 par:pas; +éclaircie éclaircir ver f s 8.53 13.18 0.14 1.15 par:pas; +éclaircies éclaircie nom f p 0.11 3.31 0.03 1.35 +éclaircir éclaircir ver 8.53 13.18 4.75 5.34 inf; +éclaircira éclaircir ver 8.53 13.18 0.38 0.34 ind:fut:3s; +éclaircirai éclaircir ver 8.53 13.18 0.19 0.00 ind:fut:1s; +éclaircirait éclaircir ver 8.53 13.18 0.08 0.14 cnd:pre:3s; +éclairciras éclaircir ver 8.53 13.18 0.01 0.00 ind:fut:2s; +éclaircirez éclaircir ver 8.53 13.18 0.01 0.00 ind:fut:2p; +éclaircirons éclaircir ver 8.53 13.18 0.04 0.00 ind:fut:1p; +éclairciront éclaircir ver 8.53 13.18 0.03 0.07 ind:fut:3p; +éclaircis éclaircir ver m p 8.53 13.18 0.14 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +éclaircissage éclaircissage nom m s 0.01 0.00 0.01 0.00 +éclaircissaient éclaircir ver 8.53 13.18 0.00 0.47 ind:imp:3p; +éclaircissait éclaircir ver 8.53 13.18 0.03 0.74 ind:imp:3s; +éclaircissant éclaircir ver 8.53 13.18 0.00 0.47 par:pre; +éclaircisse éclaircir ver 8.53 13.18 0.27 0.20 sub:pre:1s;sub:pre:3s; +éclaircissement éclaircissement nom m s 0.94 1.96 0.19 1.15 +éclaircissements éclaircissement nom m p 0.94 1.96 0.75 0.81 +éclaircissent éclaircir ver 8.53 13.18 0.12 0.07 ind:pre:3p; +éclaircissez éclaircir ver 8.53 13.18 0.07 0.00 imp:pre:2p;ind:pre:2p; +éclaircissons éclaircir ver 8.53 13.18 0.02 0.00 imp:pre:1p; +éclaircit éclaircir ver 8.53 13.18 1.10 1.76 ind:pre:3s;ind:pas:3s; +éclaire éclairer ver 18.03 85.95 6.53 12.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éclairement éclairement nom m s 0.14 0.20 0.14 0.20 +éclairent éclairer ver 18.03 85.95 0.23 2.36 ind:pre:3p; +éclairer éclairer ver 18.03 85.95 5.91 12.97 inf;;inf;;inf;; +éclairera éclairer ver 18.03 85.95 0.51 0.34 ind:fut:3s; +éclaireraient éclairer ver 18.03 85.95 0.01 0.07 cnd:pre:3p; +éclairerait éclairer ver 18.03 85.95 0.16 0.20 cnd:pre:3s; +éclaireront éclairer ver 18.03 85.95 0.16 0.20 ind:fut:3p; +éclaires éclairer ver 18.03 85.95 0.21 0.00 ind:pre:2s;sub:pre:2s; +éclaireur éclaireur nom m s 3.59 2.50 1.96 1.42 +éclaireurs éclaireur nom m p 3.59 2.50 1.54 1.01 +éclaireuse éclaireur nom f s 3.59 2.50 0.07 0.00 +éclaireuses éclaireuse nom f p 0.08 0.00 0.08 0.00 +éclairez éclairer ver 18.03 85.95 0.63 0.20 imp:pre:2p;ind:pre:2p; +éclairiez éclairer ver 18.03 85.95 0.01 0.14 ind:imp:2p; +éclairons éclairer ver 18.03 85.95 0.01 0.14 ind:pre:1p; +éclairât éclairer ver 18.03 85.95 0.00 0.14 sub:imp:3s; +éclairs éclair nom m p 11.25 35.00 3.39 13.92 +éclairèrent éclairer ver 18.03 85.95 0.01 0.54 ind:pas:3p; +éclairé éclairé adj m s 3.34 17.64 1.62 6.08 +éclairée éclairé adj f s 3.34 17.64 1.17 6.49 +éclairées éclairé adj f p 3.34 17.64 0.28 3.18 +éclairés éclairer ver m p 18.03 85.95 0.27 3.38 par:pas; +éclampsie éclampsie nom f s 0.10 0.00 0.10 0.00 +éclamptique éclamptique adj s 0.03 0.00 0.03 0.00 +éclat éclat nom m s 14.28 82.77 9.73 50.95 +éclata éclater ver 41.33 100.47 0.55 20.07 ind:pas:3s; +éclatage éclatage nom m s 0.00 0.07 0.00 0.07 +éclatai éclater ver 41.33 100.47 0.00 1.49 ind:pas:1s; +éclataient éclater ver 41.33 100.47 0.14 5.47 ind:imp:3p; +éclatais éclater ver 41.33 100.47 0.12 0.20 ind:imp:1s;ind:imp:2s; +éclatait éclater ver 41.33 100.47 0.39 8.24 ind:imp:3s; +éclatant éclatant adj m s 3.62 20.14 1.42 6.35 +éclatante éclatant adj f s 3.62 20.14 1.88 7.64 +éclatantes éclatant adj f p 3.62 20.14 0.12 3.72 +éclatants éclatant adj m p 3.62 20.14 0.20 2.43 +éclate éclater ver 41.33 100.47 11.69 16.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éclatement éclatement nom m s 0.41 7.03 0.40 4.19 +éclatements éclatement nom m p 0.41 7.03 0.01 2.84 +éclatent éclater ver 41.33 100.47 1.38 6.55 ind:pre:3p; +éclater éclater ver 41.33 100.47 15.52 19.59 imp:pre:2p;inf; +éclatera éclater ver 41.33 100.47 0.76 0.34 ind:fut:3s; +éclaterai éclater ver 41.33 100.47 0.18 0.07 ind:fut:1s; +éclateraient éclater ver 41.33 100.47 0.00 0.27 cnd:pre:3p; +éclaterais éclater ver 41.33 100.47 0.27 0.00 cnd:pre:1s;cnd:pre:2s; +éclaterait éclater ver 41.33 100.47 0.18 0.54 cnd:pre:3s; +éclateras éclater ver 41.33 100.47 0.03 0.07 ind:fut:2s; +éclateriez éclater ver 41.33 100.47 0.01 0.00 cnd:pre:2p; +éclateront éclater ver 41.33 100.47 0.07 0.14 ind:fut:3p; +éclates éclater ver 41.33 100.47 0.68 0.07 ind:pre:2s; +éclateurs éclateur nom m p 0.00 0.07 0.00 0.07 +éclatez éclater ver 41.33 100.47 0.90 0.00 imp:pre:2p;ind:pre:2p; +éclatiez éclater ver 41.33 100.47 0.05 0.00 ind:imp:2p; +éclatons éclater ver 41.33 100.47 0.05 0.20 imp:pre:1p;ind:pre:1p; +éclatât éclater ver 41.33 100.47 0.00 0.54 sub:imp:3s; +éclats éclat nom m p 14.28 82.77 4.55 31.82 +éclatèrent éclater ver 41.33 100.47 0.02 3.58 ind:pas:3p; +éclaté éclater ver m s 41.33 100.47 7.19 9.26 par:pas; +éclatée éclater ver f s 41.33 100.47 0.56 0.68 par:pas; +éclatées éclaté adj f p 1.13 3.99 0.02 1.08 +éclatés éclater ver m p 41.33 100.47 0.49 0.34 par:pas; +éclectique éclectique adj s 0.41 0.74 0.36 0.34 +éclectiques éclectique adj p 0.41 0.74 0.04 0.41 +éclectisme éclectisme nom m s 0.05 0.20 0.05 0.20 +éclipsa éclipser ver 2.92 10.07 0.02 1.08 ind:pas:3s; +éclipsai éclipser ver 2.92 10.07 0.00 0.07 ind:pas:1s; +éclipsaient éclipser ver 2.92 10.07 0.01 0.20 ind:imp:3p; +éclipsait éclipser ver 2.92 10.07 0.04 0.74 ind:imp:3s; +éclipsant éclipser ver 2.92 10.07 0.05 0.20 par:pre; +éclipse éclipse nom f s 1.70 2.64 1.60 1.89 +éclipsent éclipser ver 2.92 10.07 0.04 0.14 ind:pre:3p; +éclipser éclipser ver 2.92 10.07 1.50 2.23 inf; +éclipsera éclipser ver 2.92 10.07 0.10 0.07 ind:fut:3s; +éclipserais éclipser ver 2.92 10.07 0.01 0.07 cnd:pre:1s; +éclipserait éclipser ver 2.92 10.07 0.00 0.07 cnd:pre:3s; +éclipses éclipse nom f p 1.70 2.64 0.10 0.74 +éclipsez éclipser ver 2.92 10.07 0.07 0.00 imp:pre:2p;ind:pre:2p; +éclipsions éclipser ver 2.92 10.07 0.01 0.00 ind:imp:1p; +éclipsèrent éclipser ver 2.92 10.07 0.00 0.27 ind:pas:3p; +éclipsé éclipser ver m s 2.92 10.07 0.32 1.28 par:pas; +éclipsée éclipser ver f s 2.92 10.07 0.09 1.01 par:pas; +éclipsées éclipser ver f p 2.92 10.07 0.02 0.07 par:pas; +éclipsés éclipser ver m p 2.92 10.07 0.05 1.01 par:pas; +écliptique écliptique nom m s 0.01 0.14 0.01 0.14 +éclisse éclisse nom f s 0.02 0.47 0.02 0.07 +éclisses éclisse nom f p 0.02 0.47 0.00 0.41 +éclopait écloper ver 0.04 0.27 0.00 0.07 ind:imp:3s; +écloper écloper ver 0.04 0.27 0.03 0.00 inf; +éclopé éclopé nom m s 0.46 1.42 0.17 0.20 +éclopée éclopé adj f s 0.19 0.34 0.14 0.07 +éclopés éclopé nom m p 0.46 1.42 0.26 1.22 +éclore éclore ver 0.83 2.84 0.82 2.84 inf; +éclos éclos adj m 1.03 2.09 0.63 0.74 +éclose éclos adj f s 1.03 2.09 0.28 0.41 +écloses éclos adj f p 1.03 2.09 0.12 0.95 +éclosion éclosion nom f s 0.13 2.16 0.10 1.89 +éclosions éclosion nom f p 0.13 2.16 0.03 0.27 +éclusa écluser ver 0.09 3.11 0.00 0.07 ind:pas:3s; +éclusaient écluser ver 0.09 3.11 0.00 0.20 ind:imp:3p; +éclusais écluser ver 0.09 3.11 0.00 0.14 ind:imp:1s; +éclusait écluser ver 0.09 3.11 0.00 0.27 ind:imp:3s; +éclusant écluser ver 0.09 3.11 0.00 0.20 par:pre; +écluse écluse nom f s 0.60 3.31 0.39 1.69 +éclusent écluser ver 0.09 3.11 0.00 0.14 ind:pre:3p; +écluser écluser ver 0.09 3.11 0.07 0.88 inf; +écluses écluse nom f p 0.60 3.31 0.21 1.62 +éclusier éclusier nom m s 0.01 0.20 0.00 0.14 +éclusiers éclusier nom m p 0.01 0.20 0.01 0.07 +éclusé écluser ver m s 0.09 3.11 0.00 0.54 par:pas; +éclusée écluser ver f s 0.09 3.11 0.00 0.07 par:pas; +éclusées écluser ver f p 0.09 3.11 0.00 0.07 par:pas; +écoeura écoeurer ver 1.56 9.66 0.00 0.14 ind:pas:3s; +écoeuraient écoeurer ver 1.56 9.66 0.00 0.41 ind:imp:3p; +écoeurais écoeurer ver 1.56 9.66 0.00 0.14 ind:imp:1s; +écoeurait écoeurer ver 1.56 9.66 0.01 1.28 ind:imp:3s; +écoeurant écoeurant adj m s 2.02 7.23 1.64 2.30 +écoeurante écoeurant adj f s 2.02 7.23 0.16 3.99 +écoeurantes écoeurant adj f p 2.02 7.23 0.05 0.47 +écoeurants écoeurant adj m p 2.02 7.23 0.18 0.47 +écoeure écoeurer ver 1.56 9.66 0.66 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écoeurement écoeurement nom m s 0.14 3.18 0.14 3.11 +écoeurements écoeurement nom m p 0.14 3.18 0.00 0.07 +écoeurent écoeurer ver 1.56 9.66 0.04 0.20 ind:pre:3p; +écoeurer écoeurer ver 1.56 9.66 0.17 0.81 inf; +écoeurerais écoeurer ver 1.56 9.66 0.00 0.07 cnd:pre:1s; +écoeurez écoeurer ver 1.56 9.66 0.24 0.00 imp:pre:2p;ind:pre:2p; +écoeurèrent écoeurer ver 1.56 9.66 0.00 0.14 ind:pas:3p; +écoeuré écoeuré adj m s 0.33 3.72 0.30 2.64 +écoeurée écoeurer ver f s 1.56 9.66 0.13 1.22 par:pas; +écoeurées écoeurer ver f p 1.56 9.66 0.00 0.07 par:pas; +écoeurés écoeuré adj m p 0.33 3.72 0.01 0.27 +écoinçon écoinçon nom m s 0.00 0.07 0.00 0.07 +école école nom f s 206.88 143.99 197.04 128.51 +écoles école nom f p 206.88 143.99 9.84 15.47 +écolier écolier nom m s 3.00 21.22 0.79 10.54 +écoliers écolier nom m p 3.00 21.22 1.11 5.81 +écolière écolier nom f s 3.00 21.22 1.11 3.85 +écolières écolière nom f p 0.32 0.00 0.32 0.00 +écolo écolo nom s 0.80 0.74 0.40 0.47 +écologie écologie nom f s 0.41 0.20 0.41 0.20 +écologique écologique adj s 1.79 0.88 1.59 0.74 +écologiquement écologiquement adv 0.01 0.00 0.01 0.00 +écologiques écologique adj p 1.79 0.88 0.20 0.14 +écologiste écologiste adj s 0.61 0.20 0.49 0.07 +écologistes écologiste nom p 0.50 0.20 0.25 0.20 +écolos écolo nom p 0.80 0.74 0.40 0.27 +éconduira éconduire ver 0.66 1.82 0.01 0.00 ind:fut:3s; +éconduire éconduire ver 0.66 1.82 0.03 0.61 inf; +éconduis éconduire ver 0.66 1.82 0.01 0.00 imp:pre:2s; +éconduisirent éconduire ver 0.66 1.82 0.00 0.07 ind:pas:3p; +éconduisit éconduire ver 0.66 1.82 0.00 0.07 ind:pas:3s; +éconduit éconduire ver m s 0.66 1.82 0.54 0.88 ind:pre:3s;par:pas; +éconduite éconduire ver f s 0.66 1.82 0.03 0.14 par:pas; +éconduits éconduire ver m p 0.66 1.82 0.04 0.07 par:pas; +éconocroques éconocroques nom f p 0.00 0.74 0.00 0.74 +économat économat nom m s 0.03 0.54 0.03 0.54 +économe économe nom s 0.51 0.74 0.47 0.61 +économes économe adj p 0.52 2.30 0.21 0.54 +économie économie nom f s 16.97 23.78 9.20 15.74 +économies économie nom f p 16.97 23.78 7.77 8.04 +économique économique adj s 8.27 20.81 6.09 14.53 +économiquement économiquement adv 0.72 0.95 0.72 0.95 +économiques économique adj p 8.27 20.81 2.19 6.28 +économisaient économiser ver 12.50 6.62 0.02 0.14 ind:imp:3p; +économisais économiser ver 12.50 6.62 0.13 0.07 ind:imp:1s;ind:imp:2s; +économisait économiser ver 12.50 6.62 0.07 0.34 ind:imp:3s; +économisant économiser ver 12.50 6.62 0.10 0.41 par:pre; +économise économiser ver 12.50 6.62 3.15 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +économisent économiser ver 12.50 6.62 0.18 0.07 ind:pre:3p; +économiser économiser ver 12.50 6.62 5.73 3.58 inf; +économisera économiser ver 12.50 6.62 0.36 0.14 ind:fut:3s; +économiserai économiser ver 12.50 6.62 0.12 0.00 ind:fut:1s; +économiserais économiser ver 12.50 6.62 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +économiserait économiser ver 12.50 6.62 0.31 0.14 cnd:pre:3s; +économiserez économiser ver 12.50 6.62 0.07 0.07 ind:fut:2p; +économiserons économiser ver 12.50 6.62 0.02 0.00 ind:fut:1p; +économiseront économiser ver 12.50 6.62 0.01 0.00 ind:fut:3p; +économiseur économiseur nom m s 0.06 0.07 0.06 0.00 +économiseurs économiseur nom m p 0.06 0.07 0.00 0.07 +économisez économiser ver 12.50 6.62 0.37 0.14 imp:pre:2p;ind:pre:2p; +économisme économisme nom m s 0.00 0.07 0.00 0.07 +économisons économiser ver 12.50 6.62 0.06 0.00 imp:pre:1p;ind:pre:1p; +économiste économiste nom s 0.55 0.47 0.41 0.34 +économistes économiste nom p 0.55 0.47 0.14 0.14 +économisé économiser ver m s 12.50 6.62 1.62 0.41 par:pas; +économisée économiser ver f s 12.50 6.62 0.01 0.14 par:pas; +économisées économiser ver f p 12.50 6.62 0.00 0.20 par:pas; +économisés économiser ver m p 12.50 6.62 0.04 0.27 par:pas; +écopa écoper ver 2.47 2.57 0.02 0.20 ind:pas:3s; +écopai écoper ver 2.47 2.57 0.00 0.07 ind:pas:1s; +écopais écoper ver 2.47 2.57 0.01 0.07 ind:imp:1s; +écopait écoper ver 2.47 2.57 0.01 0.27 ind:imp:3s; +écope écoper ver 2.47 2.57 0.34 0.14 ind:pre:1s;ind:pre:3s; +écopent écoper ver 2.47 2.57 0.03 0.00 ind:pre:3p; +écoper écoper ver 2.47 2.57 0.72 0.61 inf; +écopera écoper ver 2.47 2.57 0.23 0.00 ind:fut:3s; +écoperai écoper ver 2.47 2.57 0.03 0.07 ind:fut:1s; +écoperait écoper ver 2.47 2.57 0.00 0.07 cnd:pre:3s; +écoperas écoper ver 2.47 2.57 0.14 0.00 ind:fut:2s; +écoperches écoperche nom f p 0.00 0.07 0.00 0.07 +écoperez écoper ver 2.47 2.57 0.04 0.00 ind:fut:2p; +écoperont écoper ver 2.47 2.57 0.01 0.07 ind:fut:3p; +écopes écoper ver 2.47 2.57 0.04 0.00 ind:pre:2s; +écopez écoper ver 2.47 2.57 0.04 0.07 imp:pre:2p;ind:pre:2p; +écopiez écoper ver 2.47 2.57 0.01 0.07 ind:imp:2p; +écopons écoper ver 2.47 2.57 0.00 0.07 ind:pre:1p; +écopé écoper ver m s 2.47 2.57 0.79 0.74 par:pas; +écopée écoper ver f s 2.47 2.57 0.00 0.07 par:pas; +écorce écorce nom f s 1.90 11.76 1.83 9.39 +écorcer écorcer ver 0.17 0.20 0.01 0.07 inf; +écorces écorce nom f p 1.90 11.76 0.07 2.36 +écorcha écorcher ver 4.02 7.03 0.00 0.41 ind:pas:3s; +écorchage écorchage nom m s 0.01 0.00 0.01 0.00 +écorchaient écorcher ver 4.02 7.03 0.02 0.47 ind:imp:3p; +écorchais écorcher ver 4.02 7.03 0.01 0.14 ind:imp:1s; +écorchait écorcher ver 4.02 7.03 0.11 0.95 ind:imp:3s; +écorchant écorcher ver 4.02 7.03 0.11 0.54 par:pre; +écorche écorcher ver 4.02 7.03 0.53 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écorchement écorchement nom m s 0.04 0.07 0.04 0.07 +écorchent écorcher ver 4.02 7.03 0.16 0.34 ind:pre:3p; +écorcher écorcher ver 4.02 7.03 1.20 1.28 inf; +écorchera écorcher ver 4.02 7.03 0.16 0.00 ind:fut:3s; +écorcherai écorcher ver 4.02 7.03 0.17 0.00 ind:fut:1s; +écorcherais écorcher ver 4.02 7.03 0.11 0.00 cnd:pre:1s; +écorcherait écorcher ver 4.02 7.03 0.07 0.14 cnd:pre:3s; +écorcherie écorcherie nom f s 0.10 0.07 0.10 0.07 +écorcheront écorcher ver 4.02 7.03 0.01 0.00 ind:fut:3p; +écorcheur écorcheur nom m s 0.06 0.27 0.03 0.07 +écorcheurs écorcheur nom m p 0.06 0.27 0.03 0.20 +écorchez écorcher ver 4.02 7.03 0.02 0.14 imp:pre:2p;ind:pre:2p; +écorchiez écorcher ver 4.02 7.03 0.00 0.07 ind:imp:2p; +écorchions écorcher ver 4.02 7.03 0.00 0.07 ind:imp:1p; +écorché écorcher ver m s 4.02 7.03 1.07 0.74 par:pas; +écorchée écorcher ver f s 4.02 7.03 0.25 0.27 par:pas; +écorchées écorché adj f p 0.61 3.58 0.11 0.27 +écorchure écorchure nom f s 1.02 1.55 0.61 0.81 +écorchures écorchure nom f p 1.02 1.55 0.41 0.74 +écorchés écorché adj m p 0.61 3.58 0.11 1.35 +écorcé écorcé adj m s 0.00 0.54 0.00 0.20 +écorcés écorcé adj m p 0.00 0.54 0.00 0.34 +écornait écorner ver 0.03 0.81 0.00 0.07 ind:imp:3s; +écornent écorner ver 0.03 0.81 0.00 0.07 ind:pre:3p; +écorner écorner ver 0.03 0.81 0.00 0.20 inf; +écornifler écornifler ver 0.00 0.07 0.00 0.07 inf; +écorné écorné adj m s 0.19 0.74 0.03 0.34 +écornée écorné adj f s 0.19 0.74 0.14 0.07 +écornées écorné adj f p 0.19 0.74 0.01 0.20 +écornés écorné adj m p 0.19 0.74 0.02 0.14 +écosphère écosphère nom f s 0.01 0.00 0.01 0.00 +écossa écosser ver 0.70 5.95 0.00 0.07 ind:pas:3s; +écossaient écosser ver 0.70 5.95 0.00 0.20 ind:imp:3p; +écossais écossais adj m 2.57 6.55 1.53 2.57 +écossaise écossais adj f s 2.57 6.55 0.89 3.18 +écossaises écossais adj f p 2.57 6.55 0.16 0.81 +écossait écosser ver 0.70 5.95 0.00 0.20 ind:imp:3s; +écossant écosser ver 0.70 5.95 0.00 0.07 par:pre; +écosse écosser ver 0.70 5.95 0.67 4.19 imp:pre:2s;ind:pre:3s; +écossent écosser ver 0.70 5.95 0.03 0.07 ind:pre:3p; +écosser écosser ver 0.70 5.95 0.00 0.95 inf; +écossé écosser ver m s 0.70 5.95 0.00 0.07 par:pas; +écossés écosser ver m p 0.70 5.95 0.00 0.07 par:pas; +écosystème écosystème nom m s 0.63 0.00 0.59 0.00 +écosystèmes écosystème nom m p 0.63 0.00 0.04 0.00 +écot écot nom m s 0.48 0.95 0.48 0.95 +écotone écotone nom m s 0.01 0.00 0.01 0.00 +écoula écouler ver 9.01 26.62 0.23 2.16 ind:pas:3s; +écoulaient écouler ver 9.01 26.62 0.08 1.35 ind:imp:3p; +écoulait écouler ver 9.01 26.62 0.30 3.18 ind:imp:3s; +écoulant écouler ver 9.01 26.62 0.15 0.47 par:pre; +écoule écouler ver 9.01 26.62 1.92 3.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +écoulement écoulement nom m s 0.79 4.46 0.77 4.12 +écoulements écoulement nom m p 0.79 4.46 0.02 0.34 +écoulent écouler ver 9.01 26.62 0.52 1.42 ind:pre:3p; +écouler écouler ver 9.01 26.62 1.09 4.93 inf; +écoulera écouler ver 9.01 26.62 0.22 0.07 ind:fut:3s; +écouleraient écouler ver 9.01 26.62 0.03 0.20 cnd:pre:3p; +écoulerait écouler ver 9.01 26.62 0.01 0.47 cnd:pre:3s; +écouleront écouler ver 9.01 26.62 0.01 0.00 ind:fut:3p; +écoulât écouler ver 9.01 26.62 0.00 0.14 sub:imp:3s; +écoulèrent écouler ver 9.01 26.62 0.04 1.89 ind:pas:3p; +écoulé écouler ver m s 9.01 26.62 3.06 2.16 par:pas; +écoulée écoulé adj f s 1.10 2.97 0.27 1.08 +écoulées écouler ver f p 9.01 26.62 0.69 1.62 par:pas; +écoulés écouler ver m p 9.01 26.62 0.44 1.82 par:pas; +écourta écourter ver 1.54 2.09 0.00 0.20 ind:pas:3s; +écourtaient écourter ver 1.54 2.09 0.00 0.07 ind:imp:3p; +écourtais écourter ver 1.54 2.09 0.01 0.14 ind:imp:1s; +écourtant écourter ver 1.54 2.09 0.00 0.07 par:pre; +écourte écourter ver 1.54 2.09 0.06 0.20 ind:pre:1s;ind:pre:3s; +écourter écourter ver 1.54 2.09 0.91 0.81 inf; +écourtera écourter ver 1.54 2.09 0.03 0.00 ind:fut:3s; +écourteraient écourter ver 1.54 2.09 0.00 0.07 cnd:pre:3p; +écourté écourter ver m s 1.54 2.09 0.38 0.27 par:pas; +écourtée écourter ver f s 1.54 2.09 0.05 0.14 par:pas; +écourtées écourté adj f p 0.04 0.34 0.01 0.07 +écourtés écourter ver m p 1.54 2.09 0.11 0.07 par:pas; +écouta écouter ver 470.93 314.05 0.06 14.53 ind:pas:3s; +écoutai écouter ver 470.93 314.05 0.17 2.36 ind:pas:1s; +écoutaient écouter ver 470.93 314.05 1.21 7.30 ind:imp:3p; +écoutais écouter ver 470.93 314.05 5.74 16.62 ind:imp:1s;ind:imp:2s; +écoutait écouter ver 470.93 314.05 4.65 45.61 ind:imp:3s; +écoutant écouter ver 470.93 314.05 3.00 22.16 par:pre; +écoute écouter ver 470.93 314.05 214.67 83.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +écoutent écouter ver 470.93 314.05 6.05 5.00 ind:pre:3p; +écouter écouter ver 470.93 314.05 73.13 56.15 ind:pre:2p;inf; +écoutera écouter ver 470.93 314.05 4.14 0.81 ind:fut:3s; +écouterai écouter ver 470.93 314.05 1.89 0.54 ind:fut:1s; +écouteraient écouter ver 470.93 314.05 0.14 0.14 cnd:pre:3p; +écouterais écouter ver 470.93 314.05 0.55 0.41 cnd:pre:1s;cnd:pre:2s; +écouterait écouter ver 470.93 314.05 0.96 0.47 cnd:pre:3s; +écouteras écouter ver 470.93 314.05 1.06 0.27 ind:fut:2s; +écouterez écouter ver 470.93 314.05 0.24 0.07 ind:fut:2p; +écouteriez écouter ver 470.93 314.05 0.15 0.00 cnd:pre:2p; +écouterons écouter ver 470.93 314.05 0.69 0.20 ind:fut:1p; +écouteront écouter ver 470.93 314.05 1.36 0.34 ind:fut:3p; +écoutes écouter ver 470.93 314.05 26.59 4.19 ind:pre:2s;sub:pre:2s; +écouteur écouteur nom m s 1.34 4.19 0.37 3.65 +écouteurs écouteur nom m p 1.34 4.19 0.97 0.47 +écouteuse écouteur nom f s 1.34 4.19 0.00 0.07 +écoutez écouter ver 470.93 314.05 92.46 24.80 imp:pre:2p;ind:pre:2p; +écoutiez écouter ver 470.93 314.05 2.20 0.20 ind:imp:2p;sub:pre:2p; +écoutille écoutille nom f s 2.22 0.88 1.79 0.47 +écoutilles écoutille nom f p 2.22 0.88 0.43 0.41 +écoutions écouter ver 470.93 314.05 0.18 2.84 ind:imp:1p; +écoutâmes écouter ver 470.93 314.05 0.00 0.14 ind:pas:1p; +écoutons écouter ver 470.93 314.05 3.95 2.30 imp:pre:1p;ind:pre:1p; +écoutât écouter ver 470.93 314.05 0.00 0.54 sub:imp:3s; +écoutèrent écouter ver 470.93 314.05 0.03 1.76 ind:pas:3p; +écouté écouter ver m s 470.93 314.05 21.06 16.01 par:pas; +écoutée écouter ver f s 470.93 314.05 3.45 3.11 par:pas; +écoutées écouter ver f p 470.93 314.05 0.27 0.68 par:pas; +écoutés écouter ver m p 470.93 314.05 0.88 0.95 par:pas; +écouvillon écouvillon nom m s 0.26 0.20 0.01 0.20 +écouvillonne écouvillonner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +écouvillons écouvillon nom m p 0.26 0.20 0.25 0.00 +écrabouilla écrabouiller ver 2.22 2.91 0.00 0.07 ind:pas:3s; +écrabouillage écrabouillage nom m s 0.01 0.14 0.01 0.14 +écrabouillait écrabouiller ver 2.22 2.91 0.00 0.07 ind:imp:3s; +écrabouillant écrabouiller ver 2.22 2.91 0.00 0.14 par:pre; +écrabouille écrabouiller ver 2.22 2.91 0.30 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écrabouillement écrabouillement nom m s 0.00 0.27 0.00 0.20 +écrabouillements écrabouillement nom m p 0.00 0.27 0.00 0.07 +écrabouiller écrabouiller ver 2.22 2.91 0.86 0.74 inf; +écrabouillera écrabouiller ver 2.22 2.91 0.03 0.00 ind:fut:3s; +écrabouillons écrabouiller ver 2.22 2.91 0.00 0.07 ind:pre:1p; +écrabouillèrent écrabouiller ver 2.22 2.91 0.00 0.07 ind:pas:3p; +écrabouillé écrabouiller ver m s 2.22 2.91 0.72 0.68 par:pas; +écrabouillée écrabouiller ver f s 2.22 2.91 0.24 0.41 par:pas; +écrabouillées écrabouiller ver f p 2.22 2.91 0.01 0.07 par:pas; +écrabouillés écrabouiller ver m p 2.22 2.91 0.07 0.34 par:pas; +écran écran nom m s 23.68 23.31 19.78 21.15 +écrans écran nom m p 23.68 23.31 3.91 2.16 +écrasa écraser ver 54.42 90.81 0.07 5.74 ind:pas:3s; +écrasage écrasage nom m s 0.00 0.07 0.00 0.07 +écrasai écraser ver 54.42 90.81 0.00 0.68 ind:pas:1s; +écrasaient écraser ver 54.42 90.81 0.06 3.65 ind:imp:3p; +écrasais écraser ver 54.42 90.81 0.23 1.01 ind:imp:1s;ind:imp:2s; +écrasait écraser ver 54.42 90.81 0.46 8.51 ind:imp:3s; +écrasant écraser ver 54.42 90.81 0.47 5.34 par:pre; +écrasante écrasant adj f s 0.96 7.03 0.52 3.24 +écrasantes écrasant adj f p 0.96 7.03 0.04 0.47 +écrasants écrasant adj m p 0.96 7.03 0.00 0.34 +écrase_merde écrase_merde nom m s 0.00 0.41 0.00 0.20 +écrase_merde écrase_merde nom m p 0.00 0.41 0.00 0.20 +écrase écraser ver 54.42 90.81 11.11 13.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +écrasement écrasement nom m s 0.19 3.72 0.14 3.51 +écrasements écrasement nom m p 0.19 3.72 0.04 0.20 +écrasent écraser ver 54.42 90.81 0.78 2.16 ind:pre:3p; +écraser écraser ver 54.42 90.81 16.75 20.47 inf; +écrasera écraser ver 54.42 90.81 0.73 0.74 ind:fut:3s; +écraserai écraser ver 54.42 90.81 1.17 0.20 ind:fut:1s; +écraseraient écraser ver 54.42 90.81 0.16 0.34 cnd:pre:3p; +écraserais écraser ver 54.42 90.81 0.39 0.20 cnd:pre:1s;cnd:pre:2s; +écraserait écraser ver 54.42 90.81 0.53 0.47 cnd:pre:3s; +écraseras écraser ver 54.42 90.81 0.02 0.14 ind:fut:2s; +écraserez écraser ver 54.42 90.81 0.05 0.00 ind:fut:2p; +écraserons écraser ver 54.42 90.81 0.47 0.00 ind:fut:1p; +écraseront écraser ver 54.42 90.81 0.33 0.14 ind:fut:3p; +écrases écraser ver 54.42 90.81 1.79 0.20 ind:pre:2s; +écraseur écraseur nom m s 0.19 0.07 0.19 0.07 +écrasez écraser ver 54.42 90.81 2.15 0.20 imp:pre:2p;ind:pre:2p; +écrasiez écraser ver 54.42 90.81 0.03 0.07 ind:imp:2p; +écrasions écraser ver 54.42 90.81 0.00 0.34 ind:imp:1p; +écrasons écraser ver 54.42 90.81 0.26 0.07 imp:pre:1p;ind:pre:1p; +écrasât écraser ver 54.42 90.81 0.00 0.14 sub:imp:3s; +écrasèrent écraser ver 54.42 90.81 0.02 0.61 ind:pas:3p; +écrasé écraser ver m s 54.42 90.81 10.97 13.24 par:pas; +écrasée écraser ver f s 54.42 90.81 2.48 6.22 par:pas; +écrasées écraser ver f p 54.42 90.81 0.31 1.96 par:pas; +écrasure écrasure nom f s 0.00 0.07 0.00 0.07 +écrasés écraser ver m p 54.42 90.81 2.66 4.39 par:pas; +écrevisse écrevisse nom f s 1.06 5.47 0.54 1.62 +écrevisses écrevisse nom f p 1.06 5.47 0.52 3.85 +écria écrier ver 1.75 47.43 0.35 25.68 ind:pas:3s; +écriai écrier ver 1.75 47.43 0.00 2.70 ind:pas:1s; +écriaient écrier ver 1.75 47.43 0.01 0.07 ind:imp:3p; +écriais écrier ver 1.75 47.43 0.01 0.14 ind:imp:1s; +écriait écrier ver 1.75 47.43 0.02 2.97 ind:imp:3s; +écriant écrier ver 1.75 47.43 0.00 0.95 par:pre; +écrie écrier ver 1.75 47.43 0.47 8.24 ind:pre:1s;ind:pre:3s; +écrient écrier ver 1.75 47.43 0.06 0.61 ind:pre:3p; +écrier écrier ver 1.75 47.43 0.30 1.76 inf; +écriera écrier ver 1.75 47.43 0.00 0.14 ind:fut:3s; +écrierait écrier ver 1.75 47.43 0.01 0.07 cnd:pre:3s; +écries écrier ver 1.75 47.43 0.00 0.07 ind:pre:2s; +écrin écrin nom m s 0.37 3.78 0.36 3.38 +écrins écrin nom m p 0.37 3.78 0.01 0.41 +écrions écrier ver 1.75 47.43 0.00 0.07 ind:pre:1p; +écriât écrier ver 1.75 47.43 0.00 0.20 sub:imp:3s; +écrira écrire ver 305.92 341.82 1.77 1.69 ind:fut:3s; +écrirai écrire ver 305.92 341.82 6.40 4.05 ind:fut:1s; +écriraient écrire ver 305.92 341.82 0.11 0.34 cnd:pre:3p; +écrirais écrire ver 305.92 341.82 0.83 1.82 cnd:pre:1s;cnd:pre:2s; +écrirait écrire ver 305.92 341.82 0.83 2.43 cnd:pre:3s; +écriras écrire ver 305.92 341.82 1.67 1.01 ind:fut:2s; +écrire écrire ver 305.92 341.82 84.14 116.15 inf; +écrirez écrire ver 305.92 341.82 0.42 0.41 ind:fut:2p; +écririez écrire ver 305.92 341.82 0.04 0.00 cnd:pre:2p; +écrirons écrire ver 305.92 341.82 0.21 0.00 ind:fut:1p; +écriront écrire ver 305.92 341.82 0.09 0.20 ind:fut:3p; +écris écrire ver 305.92 341.82 38.24 24.80 imp:pre:2s;ind:pre:1s;ind:pre:2s; +écrit écrire ver m s 305.92 341.82 128.35 95.07 ind:pre:3s;par:pas; +écrite écrire ver f s 305.92 341.82 7.51 6.35 par:pas; +écriteau écriteau nom m s 2.25 3.65 2.20 3.04 +écriteaux écriteau nom m p 2.25 3.65 0.06 0.61 +écrites écrire ver f p 305.92 341.82 2.00 4.53 par:pas; +écrièrent écrier ver 1.75 47.43 0.12 0.41 ind:pas:3p; +écritoire écritoire nom f s 0.41 2.09 0.40 1.82 +écritoires écritoire nom f p 0.41 2.09 0.01 0.27 +écrits écrire ver m p 305.92 341.82 2.96 5.07 par:pas; +écriture écriture nom f s 13.65 36.35 11.99 32.03 +écritures écriture nom f p 13.65 36.35 1.66 4.32 +écrié écrier ver m s 1.75 47.43 0.36 2.50 par:pas; +écriée écrier ver f s 1.75 47.43 0.03 0.74 par:pas; +écriés écrier ver m p 1.75 47.43 0.00 0.14 par:pas; +écrivîmes écrire ver 305.92 341.82 0.00 0.07 ind:pas:1p; +écrivît écrire ver 305.92 341.82 0.00 0.34 sub:imp:3s; +écrivaient écrire ver 305.92 341.82 0.26 2.36 ind:imp:3p; +écrivailler écrivailler ver 0.00 0.14 0.00 0.07 inf; +écrivailleur écrivailleur nom m s 0.01 0.00 0.01 0.00 +écrivaillon écrivaillon nom m s 0.03 0.27 0.03 0.14 +écrivaillons écrivaillon nom m p 0.03 0.27 0.00 0.14 +écrivaillé écrivailler ver m s 0.00 0.14 0.00 0.07 par:pas; +écrivain écrivain nom m s 24.57 48.99 20.70 32.43 +écrivaine écrivain nom f s 24.57 48.99 0.06 0.20 +écrivaines écrivain nom f p 24.57 48.99 0.00 0.14 +écrivains écrivain nom m p 24.57 48.99 3.81 16.22 +écrivais écrire ver 305.92 341.82 5.20 9.12 ind:imp:1s;ind:imp:2s; +écrivait écrire ver 305.92 341.82 6.04 25.68 ind:imp:3s; +écrivant écrire ver 305.92 341.82 1.34 6.42 par:pre; +écrivassiers écrivassier nom m p 0.00 0.14 0.00 0.14 +écrive écrire ver 305.92 341.82 2.67 3.11 sub:pre:1s;sub:pre:3s; +écrivent écrire ver 305.92 341.82 2.46 6.01 ind:pre:3p; +écrives écrire ver 305.92 341.82 0.82 0.27 sub:pre:2s; +écriveur écriveur nom m s 0.14 0.00 0.14 0.00 +écrivez écrire ver 305.92 341.82 9.04 5.20 imp:pre:2p;ind:pre:2p; +écriviez écrire ver 305.92 341.82 0.97 0.41 ind:imp:2p; +écrivions écrire ver 305.92 341.82 0.10 0.61 ind:imp:1p; +écrivirent écrire ver 305.92 341.82 0.02 0.20 ind:pas:3p; +écrivis écrire ver 305.92 341.82 0.07 4.66 ind:pas:1s; +écrivisse écrire ver 305.92 341.82 0.00 0.20 sub:imp:1s; +écrivit écrire ver 305.92 341.82 1.00 12.36 ind:pas:3s; +écrivons écrire ver 305.92 341.82 0.37 0.88 imp:pre:1p;ind:pre:1p; +écrou écrou nom m s 0.72 3.24 0.34 2.43 +écrouelles écrouelles nom f p 0.00 0.07 0.00 0.07 +écrouer écrouer ver 0.54 0.34 0.19 0.14 inf; +écroueront écrouer ver 0.54 0.34 0.00 0.07 ind:fut:3p; +écroula écrouler ver 13.98 36.08 0.19 4.32 ind:pas:3s; +écroulai écrouler ver 13.98 36.08 0.00 0.34 ind:pas:1s; +écroulaient écrouler ver 13.98 36.08 0.22 1.49 ind:imp:3p; +écroulais écrouler ver 13.98 36.08 0.01 0.41 ind:imp:1s; +écroulait écrouler ver 13.98 36.08 0.33 3.65 ind:imp:3s; +écroulant écrouler ver 13.98 36.08 0.02 0.81 par:pre; +écroule écrouler ver 13.98 36.08 4.47 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écroulement écroulement nom m s 0.32 5.07 0.32 4.39 +écroulements écroulement nom m p 0.32 5.07 0.00 0.68 +écroulent écrouler ver 13.98 36.08 0.60 1.49 ind:pre:3p; +écrouler écrouler ver 13.98 36.08 3.42 6.49 inf; +écroulera écrouler ver 13.98 36.08 0.53 0.20 ind:fut:3s; +écroulerai écrouler ver 13.98 36.08 0.02 0.00 ind:fut:1s; +écrouleraient écrouler ver 13.98 36.08 0.01 0.14 cnd:pre:3p; +écroulerais écrouler ver 13.98 36.08 0.05 0.07 cnd:pre:1s; +écroulerait écrouler ver 13.98 36.08 0.28 0.34 cnd:pre:3s; +écrouleras écrouler ver 13.98 36.08 0.13 0.07 ind:fut:2s; +écroulerions écrouler ver 13.98 36.08 0.01 0.00 cnd:pre:1p; +écrouleront écrouler ver 13.98 36.08 0.05 0.07 ind:fut:3p; +écroulions écrouler ver 13.98 36.08 0.00 0.07 ind:imp:1p; +écroulons écrouler ver 13.98 36.08 0.02 0.07 ind:pre:1p; +écroulât écrouler ver 13.98 36.08 0.00 0.27 sub:imp:3s; +écroulèrent écrouler ver 13.98 36.08 0.01 0.34 ind:pas:3p; +écroulé écrouler ver m s 13.98 36.08 2.47 5.00 par:pas; +écroulée écrouler ver f s 13.98 36.08 0.70 1.82 par:pas; +écroulées écrouler ver f p 13.98 36.08 0.12 0.74 par:pas; +écroulés écrouler ver m p 13.98 36.08 0.29 1.55 par:pas; +écrous écrou nom m p 0.72 3.24 0.39 0.81 +écroué écrouer ver m s 0.54 0.34 0.32 0.07 par:pas; +écrouée écrouer ver f s 0.54 0.34 0.03 0.07 par:pas; +écrème écrémer ver 0.70 0.34 0.04 0.14 ind:pre:1s;ind:pre:3s; +écru écru adj m s 0.07 1.08 0.06 0.34 +écrue écru adj f s 0.07 1.08 0.01 0.74 +écrémage écrémage nom m s 0.03 0.07 0.03 0.07 +écrémer écrémer ver 0.70 0.34 0.08 0.07 inf; +écrémeuse écrémeur nom f s 0.00 0.07 0.00 0.07 +écrémé écrémer ver m s 0.70 0.34 0.58 0.07 par:pas; +écrémées écrémer ver f p 0.70 0.34 0.00 0.07 par:pas; +écrêtait écrêter ver 0.00 0.20 0.00 0.07 ind:imp:3s; +écrêter écrêter ver 0.00 0.20 0.00 0.07 inf; +écrêtée écrêter ver f s 0.00 0.20 0.00 0.07 par:pas; +écu écu nom m s 1.75 4.59 0.65 1.49 +écubier écubier nom m s 0.00 0.20 0.00 0.20 +écueil écueil nom m s 0.26 2.09 0.18 0.88 +écueils écueil nom m p 0.26 2.09 0.08 1.22 +écuelle écuelle nom f s 1.09 2.97 0.98 2.36 +écuelles écuelle nom f p 1.09 2.97 0.11 0.61 +écuellée écuellée nom f s 0.00 0.14 0.00 0.07 +écuellées écuellée nom f p 0.00 0.14 0.00 0.07 +écuissé écuisser ver m s 0.00 0.14 0.00 0.07 par:pas; +écuissées écuisser ver f p 0.00 0.14 0.00 0.07 par:pas; +éculer éculer ver 0.23 0.54 0.00 0.07 inf; +éculé éculé adj m s 0.19 1.55 0.14 0.14 +éculée éculé adj f s 0.19 1.55 0.01 0.20 +éculées éculé adj f p 0.19 1.55 0.01 0.81 +éculés éculer ver m p 0.23 0.54 0.10 0.27 par:pas; +écuma écumer ver 0.94 3.92 0.00 0.07 ind:pas:3s; +écumai écumer ver 0.94 3.92 0.00 0.07 ind:pas:1s; +écumaient écumer ver 0.94 3.92 0.02 0.34 ind:imp:3p; +écumais écumer ver 0.94 3.92 0.02 0.14 ind:imp:1s; +écumait écumer ver 0.94 3.92 0.01 0.61 ind:imp:3s; +écumant écumer ver 0.94 3.92 0.01 0.68 par:pre; +écumante écumant adj f s 0.03 0.95 0.01 0.34 +écumantes écumant adj f p 0.03 0.95 0.00 0.20 +écumants écumant adj m p 0.03 0.95 0.01 0.20 +écume écume nom f s 2.31 16.15 2.31 16.08 +écument écumer ver 0.94 3.92 0.04 0.20 ind:pre:3p; +écumer écumer ver 0.94 3.92 0.31 0.61 inf; +écumera écumer ver 0.94 3.92 0.01 0.00 ind:fut:3s; +écumeront écumer ver 0.94 3.92 0.01 0.00 ind:fut:3p; +écumes écume nom f p 2.31 16.15 0.00 0.07 +écumeur écumeur nom m s 0.27 0.47 0.27 0.20 +écumeurs écumeur nom m p 0.27 0.47 0.00 0.20 +écumeuse écumeux adj f s 0.00 1.22 0.00 0.54 +écumeuses écumeux adj f p 0.00 1.22 0.00 0.07 +écumeux écumeux adj m 0.00 1.22 0.00 0.61 +écumez écumer ver 0.94 3.92 0.01 0.00 ind:pre:2p; +écumiez écumer ver 0.94 3.92 0.02 0.00 ind:imp:2p; +écumoire écumoire nom f s 0.30 0.88 0.30 0.68 +écumoires écumoire nom f p 0.30 0.88 0.00 0.20 +écumâmes écumer ver 0.94 3.92 0.00 0.07 ind:pas:1p; +écumèrent écumer ver 0.94 3.92 0.01 0.00 ind:pas:3p; +écumé écumer ver m s 0.94 3.92 0.33 0.41 par:pas; +écumée écumer ver f s 0.94 3.92 0.00 0.07 par:pas; +écureuil écureuil nom m s 7.22 10.41 5.71 8.85 +écureuils écureuil nom m p 7.22 10.41 1.51 1.55 +écurie écurie nom f s 6.88 12.84 5.08 8.85 +écuries écurie nom f p 6.88 12.84 1.80 3.99 +écus écu nom m p 1.75 4.59 1.11 3.11 +écusson écusson nom m s 0.37 3.78 0.32 2.23 +écussonné écussonner ver m s 0.00 0.61 0.00 0.27 par:pas; +écussonnées écussonner ver f p 0.00 0.61 0.00 0.07 par:pas; +écussonnés écussonner ver m p 0.00 0.61 0.00 0.27 par:pas; +écussons écusson nom m p 0.37 3.78 0.05 1.55 +écuyer écuyer nom m s 1.56 5.27 1.18 3.04 +écuyers écuyer nom m p 1.56 5.27 0.12 1.49 +écuyère écuyer nom f s 1.56 5.27 0.26 0.54 +écuyères écuyer nom f p 1.56 5.27 0.00 0.20 +édam édam nom m s 0.03 0.34 0.03 0.34 +éden éden nom s 0.42 2.36 0.42 2.30 +édens éden nom m p 0.42 2.36 0.00 0.07 +édenté édenté adj m s 0.43 3.58 0.23 0.74 +édentée édenté adj f s 0.43 3.58 0.15 1.69 +édentées édenté adj f p 0.43 3.58 0.01 0.81 +édentés édenté adj m p 0.43 3.58 0.04 0.34 +édicte édicter ver 0.28 0.61 0.10 0.07 imp:pre:2s;ind:pre:3s; +édicter édicter ver 0.28 0.61 0.01 0.14 inf; +édicté édicter ver m s 0.28 0.61 0.15 0.07 par:pas; +édictée édicter ver f s 0.28 0.61 0.00 0.20 par:pas; +édictées édicter ver f p 0.28 0.61 0.02 0.14 par:pas; +édicule édicule nom m s 0.40 0.20 0.40 0.14 +édicules édicule nom m p 0.40 0.20 0.00 0.07 +édifia édifier ver 0.90 11.96 0.12 0.27 ind:pas:3s; +édifiaient édifier ver 0.90 11.96 0.02 0.61 ind:imp:3p; +édifiait édifier ver 0.90 11.96 0.14 0.88 ind:imp:3s; +édifiant édifiant adj m s 0.76 4.12 0.51 1.28 +édifiante édifiant adj f s 0.76 4.12 0.16 1.28 +édifiantes édifiant adj f p 0.76 4.12 0.03 1.08 +édifiants édifiant adj m p 0.76 4.12 0.05 0.47 +édification édification nom f s 0.38 1.28 0.38 1.28 +édifice édifice nom m s 3.25 13.99 2.71 10.95 +édifices édifice nom m p 3.25 13.99 0.53 3.04 +édifie édifier ver 0.90 11.96 0.02 1.08 ind:pre:1s;ind:pre:3s; +édifient édifier ver 0.90 11.96 0.01 0.27 ind:pre:3p; +édifier édifier ver 0.90 11.96 0.31 3.04 inf; +édifierait édifier ver 0.90 11.96 0.00 0.07 cnd:pre:3s; +édifierons édifier ver 0.90 11.96 0.01 0.00 ind:fut:1p; +édifions édifier ver 0.90 11.96 0.16 0.07 ind:pre:1p; +édifièrent édifier ver 0.90 11.96 0.00 0.14 ind:pas:3p; +édifié édifier ver m s 0.90 11.96 0.06 2.84 par:pas; +édifiée édifier ver f s 0.90 11.96 0.03 1.35 par:pas; +édifiées édifier ver f p 0.90 11.96 0.00 0.34 par:pas; +édifiés édifier ver m p 0.90 11.96 0.01 0.68 par:pas; +édiles édile nom m p 0.08 0.14 0.08 0.14 +édilitaire édilitaire adj f s 0.00 0.20 0.00 0.07 +édilitaires édilitaire adj m p 0.00 0.20 0.00 0.14 +édit édit nom m s 0.35 0.74 0.32 0.61 +éditait éditer ver 0.69 2.36 0.01 0.14 ind:imp:3s; +édite éditer ver 0.69 2.36 0.08 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éditer éditer ver 0.69 2.36 0.31 0.54 inf; +éditera éditer ver 0.69 2.36 0.02 0.07 ind:fut:3s; +éditerais éditer ver 0.69 2.36 0.00 0.07 cnd:pre:1s; +éditeur éditeur nom m s 8.46 12.30 6.84 8.78 +éditeurs éditeur nom m p 8.46 12.30 1.37 3.45 +édition édition nom f s 9.61 16.62 7.83 10.61 +éditions édition nom f p 9.61 16.62 1.78 6.01 +édito édito nom m s 0.16 0.14 0.12 0.07 +éditons éditer ver 0.69 2.36 0.01 0.07 ind:pre:1p; +éditorial éditorial nom m s 0.57 2.16 0.40 1.42 +éditoriale éditorial adj f s 0.19 0.34 0.08 0.14 +éditorialiste éditorialiste nom s 0.06 0.68 0.03 0.34 +éditorialistes éditorialiste nom p 0.06 0.68 0.02 0.34 +éditoriaux éditorial nom m p 0.57 2.16 0.17 0.74 +éditos édito nom m p 0.16 0.14 0.04 0.07 +éditrice éditeur nom f s 8.46 12.30 0.26 0.07 +éditrices éditrice nom f p 0.04 0.00 0.04 0.00 +édits édit nom m p 0.35 0.74 0.04 0.14 +édité éditer ver m s 0.69 2.36 0.16 0.54 par:pas; +éditée éditer ver f s 0.69 2.36 0.05 0.20 par:pas; +éditées éditer ver f p 0.69 2.36 0.01 0.07 par:pas; +édités éditer ver m p 0.69 2.36 0.01 0.54 par:pas; +édouardienne édouardien adj f s 0.02 0.07 0.02 0.07 +édredon édredon nom m s 0.59 6.22 0.39 5.00 +édredons édredon nom m p 0.59 6.22 0.20 1.22 +éducable éducable adj s 0.01 0.20 0.00 0.14 +éducables éducable adj p 0.01 0.20 0.01 0.07 +éducateur éducateur nom m s 1.05 2.84 0.52 0.81 +éducateurs éducateur nom m p 1.05 2.84 0.27 0.74 +éducatif éducatif adj m s 2.04 1.08 1.18 0.34 +éducatifs éducatif adj m p 2.04 1.08 0.27 0.20 +éducation éducation nom f s 20.48 27.23 20.45 27.09 +éducationnel éducationnel adj m s 0.02 0.00 0.01 0.00 +éducationnelle éducationnel adj f s 0.02 0.00 0.01 0.00 +éducations éducation nom f p 20.48 27.23 0.04 0.14 +éducative éducatif adj f s 2.04 1.08 0.34 0.14 +éducatives éducatif adj f p 2.04 1.08 0.25 0.41 +éducatrice éducateur nom f s 1.05 2.84 0.27 0.88 +éducatrices éducateur nom f p 1.05 2.84 0.00 0.41 +éduen éduen adj m s 0.00 0.41 0.00 0.07 +éduennes éduen adj f p 0.00 0.41 0.00 0.07 +éduens éduen adj m p 0.00 0.41 0.00 0.27 +édulcorais édulcorer ver 0.12 0.54 0.00 0.07 ind:imp:1s; +édulcorant édulcorant nom m s 0.08 0.00 0.08 0.00 +édulcorer édulcorer ver 0.12 0.54 0.02 0.00 inf; +édulcoré édulcorer ver m s 0.12 0.54 0.05 0.07 par:pas; +édulcorée édulcorer ver f s 0.12 0.54 0.05 0.20 par:pas; +édulcorées édulcorer ver f p 0.12 0.54 0.00 0.20 par:pas; +édénique édénique adj s 0.11 0.34 0.01 0.20 +édéniques édénique adj m p 0.11 0.34 0.10 0.14 +éduquais éduquer ver 8.07 3.78 0.00 0.07 ind:imp:1s; +éduquant éduquer ver 8.07 3.78 0.11 0.00 par:pre; +éduque éduquer ver 8.07 3.78 0.41 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éduquer éduquer ver 8.07 3.78 3.96 1.69 inf; +éduquera éduquer ver 8.07 3.78 0.03 0.07 ind:fut:3s; +éduquez éduquer ver 8.07 3.78 0.03 0.00 imp:pre:2p;ind:pre:2p; +éduquons éduquer ver 8.07 3.78 0.02 0.00 ind:pre:1p; +éduqué éduquer ver m s 8.07 3.78 1.95 0.68 par:pas; +éduquée éduquer ver f s 8.07 3.78 0.48 0.27 par:pas; +éduquées éduquer ver f p 8.07 3.78 0.29 0.00 par:pas; +éduqués éduquer ver m p 8.07 3.78 0.79 0.74 par:pas; +ufologie ufologie nom f s 0.04 0.00 0.04 0.00 +égaie égayer ver 1.39 5.68 0.02 0.20 ind:pre:3s; +égaieraient égayer ver 1.39 5.68 0.01 0.14 cnd:pre:3p; +égaierait égayer ver 1.39 5.68 0.00 0.07 cnd:pre:3s; +égaieront égayer ver 1.39 5.68 0.20 0.00 ind:fut:3p; +égailla égailler ver 0.00 2.16 0.00 0.14 ind:pas:3s; +égaillaient égailler ver 0.00 2.16 0.00 0.27 ind:imp:3p; +égaillait égailler ver 0.00 2.16 0.00 0.07 ind:imp:3s; +égaillant égailler ver 0.00 2.16 0.00 0.20 par:pre; +égaillent égailler ver 0.00 2.16 0.00 0.41 ind:pre:3p; +égailler égailler ver 0.00 2.16 0.00 0.47 inf; +égaillèrent égailler ver 0.00 2.16 0.00 0.27 ind:pas:3p; +égaillée égailler ver f s 0.00 2.16 0.00 0.14 par:pas; +égaillées égailler ver f p 0.00 2.16 0.00 0.07 par:pas; +égaillés égailler ver m p 0.00 2.16 0.00 0.14 par:pas; +égal égal adj m s 38.08 39.32 27.40 20.27 +égala égaler ver 4.96 4.39 0.02 0.07 ind:pas:3s; +égalable égalable adj f s 0.01 0.00 0.01 0.00 +égalaient égaler ver 4.96 4.39 0.00 0.07 ind:imp:3p; +égalais égaler ver 4.96 4.39 0.00 0.07 ind:imp:1s; +égalait égaler ver 4.96 4.39 0.06 0.54 ind:imp:3s; +égalant égaler ver 4.96 4.39 0.01 0.20 par:pre; +égale égal adj f s 38.08 39.32 4.51 12.91 +également également adv 32.19 71.01 32.19 71.01 +égalent égaler ver 4.96 4.39 0.79 0.34 ind:pre:3p; +égaler égaler ver 4.96 4.39 1.12 1.35 inf; +égalera égaler ver 4.96 4.39 0.09 0.07 ind:fut:3s; +égalerai égaler ver 4.96 4.39 0.01 0.00 ind:fut:1s; +égalerais égaler ver 4.96 4.39 0.01 0.00 cnd:pre:1s; +égalerait égaler ver 4.96 4.39 0.02 0.14 cnd:pre:3s; +égaleras égaler ver 4.96 4.39 0.01 0.00 ind:fut:2s; +égaleront égaler ver 4.96 4.39 0.01 0.07 ind:fut:3p; +égales égal adj f p 38.08 39.32 2.98 3.31 +égalisa égaliser ver 1.76 3.04 0.00 0.20 ind:pas:3s; +égalisais égaliser ver 1.76 3.04 0.00 0.07 ind:imp:1s; +égalisait égaliser ver 1.76 3.04 0.01 0.88 ind:imp:3s; +égalisant égaliser ver 1.76 3.04 0.00 0.14 par:pre; +égalisateur égalisateur adj m s 0.02 0.20 0.01 0.14 +égalisateurs égalisateur adj m p 0.02 0.20 0.00 0.07 +égalisation égalisation nom f s 0.04 0.27 0.04 0.27 +égalisatrice égalisateur adj f s 0.02 0.20 0.01 0.00 +égalise égaliser ver 1.76 3.04 0.19 0.54 ind:pre:1s;ind:pre:3s; +égalisent égaliser ver 1.76 3.04 0.02 0.07 ind:pre:3p; +égaliser égaliser ver 1.76 3.04 0.87 0.74 inf; +égaliseur égaliseur nom m s 0.05 0.00 0.05 0.00 +égalisez égaliser ver 1.76 3.04 0.03 0.00 imp:pre:2p;ind:pre:2p; +égalisèrent égaliser ver 1.76 3.04 0.00 0.07 ind:pas:3p; +égalisé égaliser ver m s 1.76 3.04 0.62 0.27 par:pas; +égalisées égaliser ver f p 1.76 3.04 0.01 0.00 par:pas; +égalisés égaliser ver m p 1.76 3.04 0.01 0.07 par:pas; +égalitaire égalitaire adj s 0.09 0.34 0.09 0.34 +égalitarisme égalitarisme nom m s 0.00 0.07 0.00 0.07 +égalité égalité nom f s 6.99 8.18 6.96 8.11 +égalités égalité nom f p 6.99 8.18 0.02 0.07 +égalât égaler ver 4.96 4.39 0.14 0.07 sub:imp:3s; +égalé égaler ver m s 4.96 4.39 0.33 0.14 par:pas; +égalée égaler ver f s 4.96 4.39 0.07 0.00 par:pas; +égalées égaler ver f p 4.96 4.39 0.00 0.07 par:pas; +égara égarer ver 10.55 22.77 0.00 0.14 ind:pas:3s; +égarai égarer ver 10.55 22.77 0.00 0.14 ind:pas:1s; +égaraient égarer ver 10.55 22.77 0.00 0.61 ind:imp:3p; +égarais égarer ver 10.55 22.77 0.00 0.20 ind:imp:1s; +égarait égarer ver 10.55 22.77 0.04 1.42 ind:imp:3s; +égarant égarer ver 10.55 22.77 0.02 0.34 par:pre; +égard égard nom m s 9.19 65.61 6.77 58.31 +égards égard nom m p 9.19 65.61 2.42 7.30 +égare égarer ver 10.55 22.77 2.25 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +égarement égarement nom m s 1.04 3.65 0.44 2.50 +égarements égarement nom m p 1.04 3.65 0.61 1.15 +égarent égarer ver 10.55 22.77 0.34 0.81 ind:pre:3p; +égarer égarer ver 10.55 22.77 1.51 3.11 inf; +égareraient égarer ver 10.55 22.77 0.00 0.07 cnd:pre:3p; +égarerais égarer ver 10.55 22.77 0.00 0.07 cnd:pre:1s; +égarerait égarer ver 10.55 22.77 0.01 0.20 cnd:pre:3s; +égarerions égarer ver 10.55 22.77 0.00 0.07 cnd:pre:1p; +égares égarer ver 10.55 22.77 0.27 0.07 ind:pre:2s; +égarez égarer ver 10.55 22.77 0.34 0.07 imp:pre:2p;ind:pre:2p; +égarons égarer ver 10.55 22.77 0.18 0.14 imp:pre:1p;ind:pre:1p; +égarât égarer ver 10.55 22.77 0.00 0.07 sub:imp:3s; +égarèrent égarer ver 10.55 22.77 0.00 0.20 ind:pas:3p; +égaré égarer ver m s 10.55 22.77 3.27 5.81 par:pas; +égarée égaré adj f s 3.43 11.89 0.91 2.77 +égarées égaré adj f p 3.43 11.89 0.37 0.68 +égarés égarer ver m p 10.55 22.77 1.21 2.91 par:pas; +égaux égal adj m p 38.08 39.32 3.18 2.84 +égaya égayer ver 1.39 5.68 0.00 0.27 ind:pas:3s; +égayaient égayer ver 1.39 5.68 0.00 0.20 ind:imp:3p; +égayait égayer ver 1.39 5.68 0.00 0.88 ind:imp:3s; +égayant égayer ver 1.39 5.68 0.00 0.14 par:pre; +égayante égayant adj f s 0.00 0.07 0.00 0.07 +égaye égayer ver 1.39 5.68 0.07 0.54 imp:pre:2s;ind:pre:3s; +égayer égayer ver 1.39 5.68 1.00 1.42 inf; +égayerais égayer ver 1.39 5.68 0.01 0.00 cnd:pre:1s; +égayez égayer ver 1.39 5.68 0.01 0.00 imp:pre:2p; +égayât égayer ver 1.39 5.68 0.00 0.07 sub:imp:3s; +égayèrent égayer ver 1.39 5.68 0.00 0.07 ind:pas:3p; +égayé égayer ver m s 1.39 5.68 0.06 0.95 par:pas; +égayée égayer ver f s 1.39 5.68 0.01 0.54 par:pas; +égayées égayer ver f p 1.39 5.68 0.00 0.07 par:pas; +égayés égayer ver m p 1.39 5.68 0.00 0.14 par:pas; +égide égide nom f s 0.20 0.95 0.20 0.95 +égipan égipan nom m s 0.00 0.14 0.00 0.07 +égipans égipan nom m p 0.00 0.14 0.00 0.07 +églantier églantier nom m s 0.00 0.61 0.00 0.07 +églantiers églantier nom m p 0.00 0.61 0.00 0.54 +églantine églantine nom f s 0.96 2.03 0.95 1.76 +églantines églantine nom f p 0.96 2.03 0.01 0.27 +église église nom f s 64.75 145.07 60.20 123.58 +églises église nom f p 64.75 145.07 4.55 21.49 +églogue églogue nom f s 0.10 0.34 0.00 0.27 +églogues églogue nom f p 0.10 0.34 0.10 0.07 +égoïne égoïne nom f s 0.00 0.47 0.00 0.47 +égoïsme égoïsme nom m s 2.15 9.53 2.15 9.39 +égoïsmes égoïsme nom m p 2.15 9.53 0.00 0.14 +égoïste égoïste adj s 8.13 7.91 7.27 6.82 +égoïstement égoïstement adv 0.24 0.41 0.24 0.41 +égoïstes égoïste adj p 8.13 7.91 0.86 1.08 +égocentrique égocentrique adj s 1.49 0.34 1.21 0.34 +égocentriques égocentrique adj p 1.49 0.34 0.28 0.00 +égocentrisme égocentrisme nom m s 0.23 0.27 0.23 0.20 +égocentrismes égocentrisme nom m p 0.23 0.27 0.00 0.07 +égocentriste égocentriste nom s 0.03 0.07 0.03 0.00 +égocentristes égocentriste nom p 0.03 0.07 0.00 0.07 +égorge égorger ver 9.04 9.66 2.74 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égorgea égorger ver 9.04 9.66 0.14 0.07 ind:pas:3s; +égorgeaient égorger ver 9.04 9.66 0.00 0.14 ind:imp:3p; +égorgeais égorger ver 9.04 9.66 0.01 0.00 ind:imp:1s; +égorgeait égorger ver 9.04 9.66 0.16 0.74 ind:imp:3s; +égorgeant égorger ver 9.04 9.66 0.14 0.14 par:pre; +égorgement égorgement nom m s 0.05 0.74 0.05 0.34 +égorgements égorgement nom m p 0.05 0.74 0.00 0.41 +égorgent égorger ver 9.04 9.66 0.35 0.34 ind:pre:3p; +égorgeoir égorgeoir nom m s 0.00 0.14 0.00 0.14 +égorger égorger ver 9.04 9.66 2.96 2.84 inf;; +égorgerai égorger ver 9.04 9.66 0.04 0.00 ind:fut:1s; +égorgeraient égorger ver 9.04 9.66 0.02 0.00 cnd:pre:3p; +égorgerais égorger ver 9.04 9.66 0.15 0.00 cnd:pre:1s; +égorgeras égorger ver 9.04 9.66 0.01 0.00 ind:fut:2s; +égorgeront égorger ver 9.04 9.66 0.04 0.00 ind:fut:3p; +égorgeur égorgeur nom m s 0.20 0.95 0.19 0.34 +égorgeurs égorgeur nom m p 0.20 0.95 0.01 0.54 +égorgeuses égorgeur nom f p 0.20 0.95 0.00 0.07 +égorgez égorger ver 9.04 9.66 0.00 0.07 imp:pre:2p; +égorgèrent égorger ver 9.04 9.66 0.00 0.07 ind:pas:3p; +égorgé égorger ver m s 9.04 9.66 1.14 1.89 par:pas; +égorgée égorger ver f s 9.04 9.66 0.65 0.54 par:pas; +égorgées égorger ver f p 9.04 9.66 0.16 0.27 par:pas; +égorgés égorger ver m p 9.04 9.66 0.35 1.22 par:pas; +égosilla égosiller ver 0.20 2.03 0.00 0.14 ind:pas:3s; +égosillaient égosiller ver 0.20 2.03 0.00 0.14 ind:imp:3p; +égosillait égosiller ver 0.20 2.03 0.10 0.54 ind:imp:3s; +égosillant égosiller ver 0.20 2.03 0.00 0.20 par:pre; +égosille égosiller ver 0.20 2.03 0.02 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égosillent égosiller ver 0.20 2.03 0.01 0.14 ind:pre:3p; +égosiller égosiller ver 0.20 2.03 0.07 0.47 inf; +égotisme égotisme nom m s 0.16 0.20 0.16 0.20 +égotiste égotiste adj s 0.05 0.07 0.05 0.00 +égotistes égotiste nom p 0.03 0.07 0.02 0.00 +égout égout nom m s 7.01 8.45 3.23 6.22 +égoutier égoutier nom m s 0.06 1.76 0.01 1.62 +égoutiers égoutier nom m p 0.06 1.76 0.05 0.14 +égouts égout nom m p 7.01 8.45 3.78 2.23 +égoutta égoutter ver 0.34 4.39 0.00 0.34 ind:pas:3s; +égouttaient égoutter ver 0.34 4.39 0.01 0.54 ind:imp:3p; +égouttait égoutter ver 0.34 4.39 0.10 1.28 ind:imp:3s; +égouttant égoutter ver 0.34 4.39 0.00 0.54 par:pre; +égoutte égoutter ver 0.34 4.39 0.01 0.14 ind:pre:3s; +égouttement égouttement nom m s 0.00 0.34 0.00 0.34 +égouttent égoutter ver 0.34 4.39 0.01 0.34 ind:pre:3p; +égoutter égoutter ver 0.34 4.39 0.18 0.68 inf; +égoutterait égoutter ver 0.34 4.39 0.00 0.07 cnd:pre:3s; +égouttez égoutter ver 0.34 4.39 0.00 0.14 imp:pre:2p; +égouttis égouttis nom m 0.00 0.07 0.00 0.07 +égouttoir égouttoir nom m s 0.14 0.54 0.14 0.54 +égouttèrent égoutter ver 0.34 4.39 0.00 0.07 ind:pas:3p; +égoutté égoutter ver m s 0.34 4.39 0.02 0.27 par:pas; +égrainer égrainer ver 0.00 0.07 0.00 0.07 inf; +égrappait égrapper ver 0.00 0.07 0.00 0.07 ind:imp:3s; +égratigna égratigner ver 0.57 1.62 0.00 0.14 ind:pas:3s; +égratignaient égratigner ver 0.57 1.62 0.00 0.14 ind:imp:3p; +égratignait égratigner ver 0.57 1.62 0.00 0.14 ind:imp:3s; +égratignant égratigner ver 0.57 1.62 0.00 0.14 par:pre; +égratigne égratigner ver 0.57 1.62 0.07 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égratignent égratigner ver 0.57 1.62 0.03 0.07 ind:pre:3p; +égratigner égratigner ver 0.57 1.62 0.15 0.14 inf; +égratignes égratigner ver 0.57 1.62 0.01 0.07 ind:pre:2s; +égratigné égratigner ver m s 0.57 1.62 0.25 0.34 par:pas; +égratignée égratigner ver f s 0.57 1.62 0.05 0.27 par:pas; +égratignure égratignure nom f s 4.86 2.23 3.97 1.35 +égratignures égratignure nom f p 4.86 2.23 0.89 0.88 +égratignés égratigner ver m p 0.57 1.62 0.02 0.07 par:pas; +égrena égrener ver 0.32 7.70 0.01 0.20 ind:pas:3s; +égrenage égrenage nom m s 0.01 0.00 0.01 0.00 +égrenaient égrener ver 0.32 7.70 0.01 0.74 ind:imp:3p; +égrenais égrener ver 0.32 7.70 0.00 0.27 ind:imp:1s;ind:imp:2s; +égrenait égrener ver 0.32 7.70 0.00 0.61 ind:imp:3s; +égrenant égrener ver 0.32 7.70 0.00 1.22 par:pre; +égrener égrener ver 0.32 7.70 0.02 1.35 inf; +égreneuse égreneur nom f s 0.44 0.00 0.44 0.00 +égrenèrent égrener ver 0.32 7.70 0.00 0.27 ind:pas:3p; +égrené égrener ver m s 0.32 7.70 0.10 0.34 par:pas; +égrenée égrener ver f s 0.32 7.70 0.00 0.14 par:pas; +égrenées égrener ver f p 0.32 7.70 0.00 0.54 par:pas; +égrenés égrener ver m p 0.32 7.70 0.01 0.34 par:pas; +égrillard égrillard adj m s 0.00 1.55 0.00 0.74 +égrillarde égrillard adj f s 0.00 1.55 0.00 0.27 +égrillardes égrillard adj f p 0.00 1.55 0.00 0.27 +égrillards égrillard adj m p 0.00 1.55 0.00 0.27 +égrotant égrotant adj m s 0.00 0.34 0.00 0.20 +égrotantes égrotant adj f p 0.00 0.34 0.00 0.07 +égrotants égrotant adj m p 0.00 0.34 0.00 0.07 +égrène égrener ver 0.32 7.70 0.16 1.22 imp:pre:2s;ind:pre:3s; +égrènements égrènement nom m p 0.00 0.07 0.00 0.07 +égrènent égrener ver 0.32 7.70 0.01 0.47 ind:pre:3p; +égéenne égéen adj f s 0.00 0.07 0.00 0.07 +égérie égérie nom f s 0.46 0.27 0.46 0.27 +égyptien égyptien adj m s 7.48 4.73 2.60 1.96 +égyptienne égyptien adj f s 7.48 4.73 1.31 1.15 +égyptiennes égyptien adj f p 7.48 4.73 0.41 0.54 +égyptiens égyptien adj m p 7.48 4.73 3.16 1.08 +égyptologie égyptologie nom f s 0.06 0.14 0.06 0.14 +égyptologue égyptologue nom s 0.17 0.14 0.04 0.00 +égyptologues égyptologue nom p 0.17 0.14 0.14 0.14 +uhlan uhlan nom m s 0.19 1.15 0.14 0.14 +uhlans uhlan nom m p 0.19 1.15 0.05 1.01 +éhonté éhonté adj m s 1.07 1.28 0.40 0.20 +éhontée éhonté adj f s 1.07 1.28 0.60 0.61 +éhontées éhonté adj f p 1.07 1.28 0.01 0.07 +éhontés éhonté adj m p 1.07 1.28 0.06 0.41 +uht uht adj m s 0.01 0.00 0.01 0.00 +éjacula éjaculer ver 1.98 1.42 0.27 0.14 ind:pas:3s; +éjaculait éjaculer ver 1.98 1.42 0.01 0.07 ind:imp:3s; +éjaculant éjaculer ver 1.98 1.42 0.16 0.07 par:pre; +éjaculat éjaculat nom m s 0.01 0.20 0.01 0.20 +éjaculateur éjaculateur nom m s 0.16 0.14 0.15 0.14 +éjaculateurs éjaculateur nom m p 0.16 0.14 0.01 0.00 +éjaculation éjaculation nom f s 1.40 1.42 1.11 1.22 +éjaculations éjaculation nom f p 1.40 1.42 0.29 0.20 +éjacule éjaculer ver 1.98 1.42 0.44 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éjaculent éjaculer ver 1.98 1.42 0.04 0.14 ind:pre:3p; +éjaculer éjaculer ver 1.98 1.42 0.33 0.34 inf; +éjaculé éjaculer ver m s 1.98 1.42 0.73 0.27 par:pas; +éjaculés éjaculer ver m p 1.98 1.42 0.00 0.07 par:pas; +éjecta éjecter ver 4.46 3.18 0.02 0.07 ind:pas:3s; +éjectable éjectable adj m s 0.38 0.07 0.38 0.00 +éjectables éjectable adj f p 0.38 0.07 0.00 0.07 +éjectaient éjecter ver 4.46 3.18 0.00 0.20 ind:imp:3p; +éjectait éjecter ver 4.46 3.18 0.02 0.20 ind:imp:3s; +éjectant éjecter ver 4.46 3.18 0.06 0.14 par:pre; +éjectas éjecter ver 4.46 3.18 0.01 0.00 ind:pas:2s; +éjecte éjecter ver 4.46 3.18 0.56 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éjectent éjecter ver 4.46 3.18 0.02 0.00 ind:pre:3p; +éjecter éjecter ver 4.46 3.18 1.18 0.54 inf; +éjectera éjecter ver 4.46 3.18 0.03 0.00 ind:fut:3s; +éjecterais éjecter ver 4.46 3.18 0.12 0.00 cnd:pre:1s;cnd:pre:2s; +éjecteur éjecteur nom m s 0.10 0.00 0.05 0.00 +éjecteurs éjecteur nom m p 0.10 0.00 0.05 0.00 +éjectez éjecter ver 4.46 3.18 0.08 0.00 imp:pre:2p;ind:pre:2p; +éjection éjection nom f s 0.44 0.14 0.42 0.14 +éjections éjection nom f p 0.44 0.14 0.02 0.00 +éjectons éjecter ver 4.46 3.18 0.02 0.00 imp:pre:1p;ind:pre:1p; +éjectèrent éjecter ver 4.46 3.18 0.00 0.07 ind:pas:3p; +éjecté éjecter ver m s 4.46 3.18 1.40 0.74 par:pas; +éjectée éjecter ver f s 4.46 3.18 0.61 0.41 par:pas; +éjectées éjecter ver f p 4.46 3.18 0.09 0.20 par:pas; +éjectés éjecter ver m p 4.46 3.18 0.23 0.20 par:pas; +ukase ukase nom m s 0.20 0.07 0.20 0.00 +ukases ukase nom m p 0.20 0.07 0.00 0.07 +ukrainien ukrainien nom m s 0.69 0.61 0.39 0.07 +ukrainienne ukrainien adj f s 0.61 0.88 0.28 0.14 +ukrainiennes ukrainien adj f p 0.61 0.88 0.01 0.14 +ukrainiens ukrainien nom m p 0.69 0.61 0.30 0.41 +ukulélé ukulélé nom m s 0.16 0.07 0.16 0.07 +élabora élaborer ver 2.08 5.20 0.00 0.07 ind:pas:3s; +élaborai élaborer ver 2.08 5.20 0.01 0.07 ind:pas:1s; +élaboraient élaborer ver 2.08 5.20 0.00 0.20 ind:imp:3p; +élaborait élaborer ver 2.08 5.20 0.06 0.68 ind:imp:3s; +élaborant élaborer ver 2.08 5.20 0.00 0.20 par:pre; +élaboration élaboration nom f s 0.23 1.76 0.23 1.62 +élaborations élaboration nom f p 0.23 1.76 0.00 0.14 +élabore élaborer ver 2.08 5.20 0.25 0.14 ind:pre:1s;ind:pre:3s; +élaborent élaborer ver 2.08 5.20 0.10 0.14 ind:pre:3p; +élaborer élaborer ver 2.08 5.20 0.63 1.55 inf; +élaboreraient élaborer ver 2.08 5.20 0.00 0.07 cnd:pre:3p; +élaboriez élaborer ver 2.08 5.20 0.01 0.00 ind:imp:2p; +élaborions élaborer ver 2.08 5.20 0.00 0.07 ind:imp:1p; +élaborons élaborer ver 2.08 5.20 0.01 0.00 ind:pre:1p; +élaborèrent élaborer ver 2.08 5.20 0.02 0.07 ind:pas:3p; +élaboré élaborer ver m s 2.08 5.20 0.68 0.61 par:pas; +élaborée élaboré adj f s 1.22 0.68 0.27 0.34 +élaborées élaboré adj f p 1.22 0.68 0.18 0.00 +élaborés élaboré adj m p 1.22 0.68 0.36 0.07 +élagage élagage nom m s 0.03 0.34 0.03 0.34 +élaguais élaguer ver 0.18 0.88 0.01 0.00 ind:imp:1s; +élaguait élaguer ver 0.18 0.88 0.00 0.14 ind:imp:3s; +élague élaguer ver 0.18 0.88 0.01 0.07 imp:pre:2s;ind:pre:1s; +élaguer élaguer ver 0.18 0.88 0.09 0.34 inf; +élagueur élagueur nom m s 0.04 0.14 0.03 0.00 +élagueurs élagueur nom m p 0.04 0.14 0.01 0.14 +élaguez élaguer ver 0.18 0.88 0.01 0.07 imp:pre:2p;ind:pre:2p; +élaguons élaguer ver 0.18 0.88 0.01 0.00 ind:pre:1p; +élagué élaguer ver m s 0.18 0.88 0.05 0.07 par:pas; +élagués élaguer ver m p 0.18 0.88 0.00 0.20 par:pas; +élan élan nom m s 5.66 44.73 4.61 37.57 +élance élancer ver 2.25 20.27 0.94 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +élancement élancement nom m s 0.13 2.30 0.04 1.22 +élancements élancement nom m p 0.13 2.30 0.08 1.08 +élancent élancer ver 2.25 20.27 0.20 1.15 ind:pre:3p; +élancer élancer ver 2.25 20.27 0.61 3.85 inf; +élancera élancer ver 2.25 20.27 0.01 0.14 ind:fut:3s; +élanceraient élancer ver 2.25 20.27 0.00 0.07 cnd:pre:3p; +élancerait élancer ver 2.25 20.27 0.01 0.07 cnd:pre:3s; +élancerions élancer ver 2.25 20.27 0.00 0.07 cnd:pre:1p; +élanceront élancer ver 2.25 20.27 0.00 0.07 ind:fut:3p; +élancions élancer ver 2.25 20.27 0.00 0.27 ind:imp:1p; +élancèrent élancer ver 2.25 20.27 0.00 0.47 ind:pas:3p; +élancé élancer ver m s 2.25 20.27 0.21 0.68 par:pas; +élancée élancé adj f s 0.13 3.51 0.03 1.49 +élancées élancé adj f p 0.13 3.51 0.00 0.47 +élancés élancer ver m p 2.25 20.27 0.02 0.27 par:pas; +élans élan nom m p 5.66 44.73 1.05 7.16 +élança élancer ver 2.25 20.27 0.03 4.46 ind:pas:3s; +élançai élancer ver 2.25 20.27 0.14 0.34 ind:pas:1s; +élançaient élancer ver 2.25 20.27 0.03 0.74 ind:imp:3p; +élançais élancer ver 2.25 20.27 0.00 0.41 ind:imp:1s; +élançait élancer ver 2.25 20.27 0.02 1.55 ind:imp:3s; +élançant élancer ver 2.25 20.27 0.00 1.28 par:pre; +élargît élargir ver 4.85 19.32 0.00 0.07 sub:imp:3s; +élargi élargir ver m s 4.85 19.32 0.72 2.36 par:pas; +élargie élargir ver f s 4.85 19.32 0.31 1.55 par:pas; +élargies élargir ver f p 4.85 19.32 0.04 0.61 par:pas; +élargir élargir ver 4.85 19.32 2.07 4.12 inf; +élargira élargir ver 4.85 19.32 0.12 0.07 ind:fut:3s; +élargirait élargir ver 4.85 19.32 0.01 0.14 cnd:pre:3s; +élargirent élargir ver 4.85 19.32 0.00 0.34 ind:pas:3p; +élargirez élargir ver 4.85 19.32 0.00 0.07 ind:fut:2p; +élargirons élargir ver 4.85 19.32 0.01 0.00 ind:fut:1p; +élargis élargir ver m p 4.85 19.32 0.26 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +élargissaient élargir ver 4.85 19.32 0.01 1.01 ind:imp:3p; +élargissait élargir ver 4.85 19.32 0.10 3.18 ind:imp:3s; +élargissant élargir ver 4.85 19.32 0.17 1.89 par:pre; +élargissement élargissement nom m s 0.17 1.22 0.17 1.22 +élargissent élargir ver 4.85 19.32 0.09 0.47 ind:pre:3p; +élargissez élargir ver 4.85 19.32 0.07 0.00 imp:pre:2p; +élargissions élargir ver 4.85 19.32 0.00 0.07 ind:imp:1p; +élargit élargir ver 4.85 19.32 0.86 2.57 ind:pre:3s;ind:pas:3s; +élasticimétrie élasticimétrie nom f s 0.01 0.00 0.01 0.00 +élasticité élasticité nom f s 0.30 1.76 0.30 1.76 +élastique élastique nom m s 2.12 6.35 1.73 4.26 +élastiques élastique nom m p 2.12 6.35 0.39 2.09 +élastomère élastomère nom m s 0.01 0.14 0.01 0.14 +ulcère ulcère nom m s 4.69 2.50 3.98 1.76 +ulcères ulcère nom m p 4.69 2.50 0.71 0.74 +ulcéra ulcérer ver 0.66 1.49 0.00 0.07 ind:pas:3s; +ulcérait ulcérer ver 0.66 1.49 0.00 0.07 ind:imp:3s; +ulcérant ulcérer ver 0.66 1.49 0.00 0.07 par:pre; +ulcérations ulcération nom f p 0.01 0.20 0.01 0.20 +ulcérative ulcératif adj f s 0.01 0.00 0.01 0.00 +ulcéreuse ulcéreux adj f s 0.03 0.20 0.01 0.14 +ulcéreuses ulcéreux adj f p 0.03 0.20 0.00 0.07 +ulcéreux ulcéreux adj m s 0.03 0.20 0.01 0.00 +ulcéré ulcérer ver m s 0.66 1.49 0.48 0.68 par:pas; +ulcérée ulcéré adj f s 0.01 1.62 0.00 0.68 +ulcérées ulcéré adj f p 0.01 1.62 0.00 0.07 +ulcérés ulcérer ver m p 0.66 1.49 0.15 0.00 par:pas; +électeur électeur nom m s 3.47 3.11 0.48 0.47 +électeurs électeur nom m p 3.47 3.11 2.96 2.23 +électif électif adj m s 0.03 0.27 0.01 0.20 +élection élection nom f s 17.17 14.12 5.95 4.32 +élections élection nom f p 17.17 14.12 11.22 9.80 +élective électif adj f s 0.03 0.27 0.01 0.00 +électivement électivement adv 0.00 0.14 0.00 0.14 +électives électif adj f p 0.03 0.27 0.00 0.07 +électoral électoral adj m s 3.01 4.39 0.32 1.55 +électorale électoral adj f s 3.01 4.39 2.23 1.55 +électoralement électoralement adv 0.00 0.07 0.00 0.07 +électorales électoral adj f p 3.01 4.39 0.28 0.88 +électorat électorat nom m s 0.24 0.07 0.24 0.07 +électoraux électoral adj m p 3.01 4.39 0.19 0.41 +électrice électeur nom f s 3.47 3.11 0.02 0.20 +électrices électrice nom f p 0.07 0.00 0.07 0.00 +électricien électricien nom m s 2.79 2.64 2.62 1.82 +électricienne électricien nom f s 2.79 2.64 0.00 0.07 +électriciennes électricien nom f p 2.79 2.64 0.00 0.07 +électriciens électricien nom m p 2.79 2.64 0.17 0.68 +électricité électricité nom f s 15.76 12.97 15.76 12.97 +électrifia électrifier ver 1.22 0.54 0.01 0.00 ind:pas:3s; +électrifiait électrifier ver 1.22 0.54 0.00 0.07 ind:imp:3s; +électrifiant électrifier ver 1.22 0.54 0.02 0.00 par:pre; +électrification électrification nom f s 0.02 0.27 0.02 0.27 +électrifier électrifier ver 1.22 0.54 0.03 0.00 inf; +électrifié électrifier ver m s 1.22 0.54 0.29 0.27 par:pas; +électrifiée électrifier ver f s 1.22 0.54 0.37 0.14 par:pas; +électrifiées électrifier ver f p 1.22 0.54 0.04 0.00 par:pas; +électrifiés électrifier ver m p 1.22 0.54 0.44 0.07 par:pas; +électrique électrique adj s 20.36 35.81 15.95 27.50 +électriquement électriquement adv 0.21 0.47 0.21 0.47 +électriques électrique adj p 20.36 35.81 4.41 8.31 +électrisa électriser ver 0.25 2.03 0.00 0.20 ind:pas:3s; +électrisaient électriser ver 0.25 2.03 0.00 0.07 ind:imp:3p; +électrisais électriser ver 0.25 2.03 0.01 0.00 ind:imp:1s; +électrisait électriser ver 0.25 2.03 0.02 0.14 ind:imp:3s; +électrisant électrisant adj m s 0.23 0.27 0.18 0.14 +électrisante électrisant adj f s 0.23 0.27 0.05 0.14 +électrisation électrisation nom f s 0.00 0.07 0.00 0.07 +électrise électriser ver 0.25 2.03 0.07 0.34 ind:pre:1s;ind:pre:3s; +électrisent électriser ver 0.25 2.03 0.01 0.07 ind:pre:3p; +électriser électriser ver 0.25 2.03 0.03 0.07 inf; +électrisèrent électriser ver 0.25 2.03 0.00 0.07 ind:pas:3p; +électrisé électriser ver m s 0.25 2.03 0.04 0.68 par:pas; +électrisée électriser ver f s 0.25 2.03 0.01 0.07 par:pas; +électrisées électriser ver f p 0.25 2.03 0.00 0.14 par:pas; +électro_acoustique électro_acoustique nom f s 0.00 0.14 0.00 0.14 +électro_aimant électro_aimant nom m s 0.02 0.00 0.02 0.00 +électro_encéphalogramme électro_encéphalogramme nom m s 0.16 0.07 0.16 0.07 +électroacoustique électroacoustique nom f s 0.01 0.00 0.01 0.00 +électroaimant électroaimant nom m s 0.06 0.00 0.03 0.00 +électroaimants électroaimant nom m p 0.06 0.00 0.03 0.00 +électrobiologie électrobiologie nom f s 0.01 0.00 0.01 0.00 +électrocardiogramme électrocardiogramme nom m s 0.25 0.34 0.25 0.34 +électrochimie électrochimie nom f s 0.02 0.00 0.02 0.00 +électrochimique électrochimique adj f s 0.07 0.00 0.02 0.00 +électrochimiques électrochimique adj p 0.07 0.00 0.05 0.00 +électrochoc électrochoc nom m s 3.14 0.74 0.28 0.54 +électrochocs électrochoc nom m p 3.14 0.74 2.86 0.20 +électrocutant électrocuter ver 2.08 0.54 0.03 0.00 par:pre; +électrocute électrocuter ver 2.08 0.54 0.11 0.07 ind:pre:1s;ind:pre:3s; +électrocutent électrocuter ver 2.08 0.54 0.02 0.00 ind:pre:3p; +électrocuter électrocuter ver 2.08 0.54 0.47 0.07 inf; +électrocutera électrocuter ver 2.08 0.54 0.11 0.00 ind:fut:3s; +électrocutes électrocuter ver 2.08 0.54 0.02 0.00 ind:pre:2s; +électrocutez électrocuter ver 2.08 0.54 0.01 0.00 imp:pre:2p; +électrocution électrocution nom f s 0.40 0.20 0.40 0.20 +électrocuté électrocuter ver m s 2.08 0.54 1.16 0.27 par:pas; +électrocutée électrocuter ver f s 2.08 0.54 0.14 0.14 par:pas; +électrocutés électrocuter ver m p 2.08 0.54 0.01 0.00 par:pas; +électrode électrode nom f s 0.87 0.07 0.25 0.00 +électrodes électrode nom f p 0.87 0.07 0.62 0.07 +électrodynamique électrodynamique nom f s 0.00 0.07 0.00 0.07 +électroencéphalogramme électroencéphalogramme nom m s 0.09 0.00 0.09 0.00 +électroencéphalographie électroencéphalographie nom f s 0.02 0.00 0.02 0.00 +électrogène électrogène adj m s 1.10 0.34 1.10 0.34 +électrologie électrologie nom f s 0.01 0.00 0.01 0.00 +électrolyse électrolyse nom f s 0.05 0.20 0.05 0.20 +électrolyte électrolyte nom m s 0.35 0.00 0.10 0.00 +électrolytes électrolyte nom m p 0.35 0.00 0.25 0.00 +électrolytique électrolytique adj m s 0.05 0.07 0.05 0.07 +électromagnétique électromagnétique adj s 1.92 0.07 1.29 0.00 +électromagnétiques électromagnétique adj p 1.92 0.07 0.62 0.07 +électromagnétisme électromagnétisme nom m s 0.11 0.00 0.11 0.00 +électromètre électromètre nom m s 0.07 0.00 0.07 0.00 +électroménager électroménager nom m s 0.26 0.34 0.26 0.34 +électron électron nom m s 1.28 0.20 0.45 0.07 +électronicien électronicien nom m s 0.06 0.07 0.04 0.00 +électroniciens électronicien nom m p 0.06 0.07 0.02 0.07 +électronique électronique adj s 6.70 3.51 5.00 1.96 +électroniquement électroniquement adv 0.21 0.00 0.21 0.00 +électroniques électronique adj p 6.70 3.51 1.69 1.55 +électrons électron nom m p 1.28 0.20 0.83 0.14 +électronucléaire électronucléaire adj f s 0.01 0.00 0.01 0.00 +électronvolts électronvolt nom m p 0.02 0.00 0.02 0.00 +électrophone électrophone nom m s 0.28 3.04 0.28 2.97 +électrophones électrophone nom m p 0.28 3.04 0.00 0.07 +électrophorèse électrophorèse nom f s 0.01 0.00 0.01 0.00 +électrostatique électrostatique adj s 0.28 0.07 0.25 0.07 +électrostatiques électrostatique adj p 0.28 0.07 0.04 0.00 +électrum électrum nom m s 0.27 0.07 0.27 0.07 +électuaires électuaire nom m p 0.00 0.14 0.00 0.14 +éleusinienne éleusinien adj f s 0.00 0.07 0.00 0.07 +éleva élever ver 52.03 103.85 0.28 12.91 ind:pas:3s; +élevage élevage nom m s 3.15 3.38 2.88 2.91 +élevages élevage nom m p 3.15 3.38 0.28 0.47 +élevai élever ver 52.03 103.85 0.23 0.41 ind:pas:1s; +élevaient élever ver 52.03 103.85 0.17 4.73 ind:imp:3p; +élevais élever ver 52.03 103.85 0.26 0.61 ind:imp:1s;ind:imp:2s; +élevait élever ver 52.03 103.85 1.00 15.34 ind:imp:3s; +élevant élever ver 52.03 103.85 0.36 8.38 par:pre; +élever élever ver 52.03 103.85 15.57 20.20 ind:pre:2p;inf; +éleveur éleveur nom m s 1.82 1.76 0.98 1.01 +éleveurs éleveur nom m p 1.82 1.76 0.80 0.74 +éleveuse éleveur nom f s 1.82 1.76 0.04 0.00 +élevez élever ver 52.03 103.85 0.69 0.27 imp:pre:2p;ind:pre:2p; +éleviez élever ver 52.03 103.85 0.23 0.00 ind:imp:2p; +élevions élever ver 52.03 103.85 0.02 0.07 ind:imp:1p; +élevons élever ver 52.03 103.85 0.34 0.14 imp:pre:1p;ind:pre:1p; +élevât élever ver 52.03 103.85 0.00 0.20 sub:imp:3s; +élevèrent élever ver 52.03 103.85 0.07 1.76 ind:pas:3p; +élevé élevé adj m s 25.02 30.68 14.37 15.20 +élevée élevé adj f s 25.02 30.68 5.82 7.50 +élevées élevé adj f p 25.02 30.68 1.06 1.76 +élevures élevure nom f p 0.00 0.07 0.00 0.07 +élevés élevé adj m p 25.02 30.68 3.78 6.22 +élia élier ver 0.05 8.99 0.00 1.35 ind:pas:3s; +élias élier ver 0.05 8.99 0.04 0.00 ind:pas:2s; +éliciter éliciter ver 0.01 0.00 0.01 0.00 inf; +élie élier ver 0.05 8.99 0.01 7.64 imp:pre:2s;ind:pre:3s; +éligibilité éligibilité nom f s 0.04 0.14 0.04 0.14 +éligible éligible adj s 0.11 0.20 0.10 0.07 +éligibles éligible adj p 0.11 0.20 0.01 0.14 +élime élimer ver 0.04 1.01 0.00 0.07 ind:pre:3s; +élimer élimer ver 0.04 1.01 0.01 0.00 inf; +élimina éliminer ver 30.28 8.04 0.01 0.20 ind:pas:3s; +éliminais éliminer ver 30.28 8.04 0.02 0.00 ind:imp:1s; +éliminait éliminer ver 30.28 8.04 0.17 0.61 ind:imp:3s; +éliminant éliminer ver 30.28 8.04 0.67 0.14 par:pre; +éliminateur éliminateur adj m s 0.03 0.00 0.01 0.00 +éliminateurs éliminateur adj m p 0.03 0.00 0.02 0.00 +élimination élimination nom f s 1.55 1.96 1.47 1.89 +éliminations élimination nom f p 1.55 1.96 0.08 0.07 +éliminatoire éliminatoire adj s 0.12 0.20 0.08 0.20 +éliminatoires éliminatoire nom f p 0.32 0.34 0.29 0.34 +élimine éliminer ver 30.28 8.04 4.00 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éliminent éliminer ver 30.28 8.04 0.30 0.14 ind:pre:3p; +éliminer éliminer ver 30.28 8.04 14.66 3.58 inf; +éliminera éliminer ver 30.28 8.04 0.40 0.00 ind:fut:3s; +éliminerai éliminer ver 30.28 8.04 0.11 0.07 ind:fut:1s; +élimineraient éliminer ver 30.28 8.04 0.06 0.00 cnd:pre:3p; +éliminerais éliminer ver 30.28 8.04 0.04 0.07 cnd:pre:1s; +éliminerait éliminer ver 30.28 8.04 0.13 0.07 cnd:pre:3s; +élimineras éliminer ver 30.28 8.04 0.01 0.00 ind:fut:2s; +éliminerez éliminer ver 30.28 8.04 0.34 0.00 ind:fut:2p; +éliminerons éliminer ver 30.28 8.04 0.11 0.20 ind:fut:1p; +élimineront éliminer ver 30.28 8.04 0.06 0.07 ind:fut:3p; +élimines éliminer ver 30.28 8.04 0.47 0.07 ind:pre:2s; +éliminez éliminer ver 30.28 8.04 0.47 0.00 imp:pre:2p;ind:pre:2p; +éliminiez éliminer ver 30.28 8.04 0.03 0.00 ind:imp:2p; +éliminons éliminer ver 30.28 8.04 0.19 0.00 imp:pre:1p;ind:pre:1p; +éliminèrent éliminer ver 30.28 8.04 0.00 0.07 ind:pas:3p; +éliminé éliminer ver m s 30.28 8.04 5.47 0.95 par:pas; +éliminée éliminer ver f s 30.28 8.04 0.65 0.20 par:pas; +éliminées éliminer ver f p 30.28 8.04 0.25 0.14 par:pas; +éliminés éliminer ver m p 30.28 8.04 1.67 0.47 par:pas; +élimâmes élimer ver 0.04 1.01 0.00 0.07 ind:pas:1p; +élimé élimé adj m s 0.04 2.64 0.01 1.01 +élimée élimé adj f s 0.04 2.64 0.03 0.27 +élimées élimer ver f p 0.04 1.01 0.01 0.07 par:pas; +élimés élimer ver m p 0.04 1.01 0.02 0.14 par:pas; +élingue élingue nom f s 0.02 0.00 0.02 0.00 +élirait élire ver 11.24 13.51 0.01 0.07 cnd:pre:3s; +élire élire ver 11.24 13.51 2.15 2.03 inf; +élirez élire ver 11.24 13.51 0.02 0.07 ind:fut:2p; +éliront élire ver 11.24 13.51 0.03 0.14 ind:fut:3p; +élis élire ver 11.24 13.51 2.00 0.07 imp:pre:2s;ind:pre:1s; +élisabéthain élisabéthain adj m s 0.05 0.27 0.02 0.07 +élisabéthaine élisabéthain adj f s 0.05 0.27 0.03 0.20 +élisaient élire ver 11.24 13.51 0.00 0.14 ind:imp:3p; +élisais élire ver 11.24 13.51 0.00 0.07 ind:imp:1s; +élisait élire ver 11.24 13.51 0.01 0.07 ind:imp:3s; +élisant élire ver 11.24 13.51 0.12 0.14 par:pre; +élise élire ver 11.24 13.51 0.27 4.86 sub:pre:1s;sub:pre:3s; +élisent élire ver 11.24 13.51 0.16 0.27 ind:pre:3p; +élisez élire ver 11.24 13.51 0.08 0.07 imp:pre:2p;ind:pre:2p; +élit élire ver 11.24 13.51 0.12 0.14 ind:pre:3s; +élite élite nom f s 7.38 10.27 7.24 8.65 +élites élite nom f p 7.38 10.27 0.14 1.62 +élitisme élitisme nom m s 0.16 0.00 0.16 0.00 +élitiste élitiste adj s 0.28 0.34 0.25 0.20 +élitistes élitiste adj f p 0.28 0.34 0.03 0.14 +élixir élixir nom m s 1.56 1.42 1.52 1.28 +élixirs élixir nom m p 1.56 1.42 0.04 0.14 +ulna ulna nom f s 0.01 0.00 0.01 0.00 +ulnaire ulnaire adj m s 0.01 0.00 0.01 0.00 +élocution élocution nom f s 0.84 1.62 0.84 1.62 +éloge éloge nom m s 2.62 8.85 1.31 5.47 +éloges éloge nom m p 2.62 8.85 1.31 3.38 +élogieuse élogieux adj f s 0.42 0.81 0.06 0.34 +élogieuses élogieux adj f p 0.42 0.81 0.05 0.14 +élogieux élogieux adj m 0.42 0.81 0.30 0.34 +éloigna éloigner ver 41.15 133.11 0.10 19.19 ind:pas:3s; +éloignai éloigner ver 41.15 133.11 0.02 0.74 ind:pas:1s; +éloignaient éloigner ver 41.15 133.11 0.16 4.73 ind:imp:3p; +éloignais éloigner ver 41.15 133.11 0.28 0.41 ind:imp:1s;ind:imp:2s; +éloignait éloigner ver 41.15 133.11 0.45 16.82 ind:imp:3s; +éloignant éloigner ver 41.15 133.11 0.65 7.64 par:pre; +éloigne éloigner ver 41.15 133.11 9.77 19.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éloignement éloignement nom m s 1.12 7.50 1.12 7.50 +éloignent éloigner ver 41.15 133.11 1.64 5.54 ind:pre:3p; +éloigner éloigner ver 41.15 133.11 14.51 28.45 ind:pre:2p;inf; +éloignera éloigner ver 41.15 133.11 0.43 0.47 ind:fut:3s; +éloignerai éloigner ver 41.15 133.11 0.11 0.07 ind:fut:1s; +éloigneraient éloigner ver 41.15 133.11 0.15 0.27 cnd:pre:3p; +éloignerais éloigner ver 41.15 133.11 0.09 0.00 cnd:pre:1s; +éloignerait éloigner ver 41.15 133.11 0.11 0.41 cnd:pre:3s; +éloigneras éloigner ver 41.15 133.11 0.14 0.07 ind:fut:2s; +éloignerez éloigner ver 41.15 133.11 0.04 0.00 ind:fut:2p; +éloignerons éloigner ver 41.15 133.11 0.04 0.14 ind:fut:1p; +éloigneront éloigner ver 41.15 133.11 0.04 0.00 ind:fut:3p; +éloignes éloigner ver 41.15 133.11 1.00 0.27 ind:pre:2s;sub:pre:2s; +éloignez éloigner ver 41.15 133.11 3.36 0.68 imp:pre:2p;ind:pre:2p; +éloignions éloigner ver 41.15 133.11 0.20 0.68 ind:imp:1p; +éloignâmes éloigner ver 41.15 133.11 0.00 0.20 ind:pas:1p; +éloignons éloigner ver 41.15 133.11 0.43 0.54 imp:pre:1p;ind:pre:1p; +éloignât éloigner ver 41.15 133.11 0.10 0.41 sub:imp:3s; +éloignèrent éloigner ver 41.15 133.11 0.01 3.51 ind:pas:3p; +éloigné éloigner ver m s 41.15 133.11 4.25 11.82 par:pas; +éloignée éloigner ver f s 41.15 133.11 1.48 5.07 par:pas; +éloignées éloigné adj f p 4.14 12.16 0.37 1.82 +éloignés éloigner ver m p 41.15 133.11 1.38 3.99 par:pas; +élongation élongation nom f s 0.08 0.34 0.08 0.27 +élongations élongation nom f p 0.08 0.34 0.00 0.07 +éloquemment éloquemment adv 0.05 0.34 0.05 0.34 +éloquence éloquence nom f s 1.30 4.46 1.30 4.46 +éloquent éloquent adj m s 0.98 5.34 0.81 2.30 +éloquente éloquent adj f s 0.98 5.34 0.08 1.62 +éloquentes éloquent adj f p 0.98 5.34 0.02 0.54 +éloquents éloquent adj m p 0.98 5.34 0.07 0.88 +élève élève nom s 36.84 57.77 15.83 21.69 +élèvent élever ver 52.03 103.85 1.87 5.27 ind:pre:3p; +élèvera élever ver 52.03 103.85 1.23 0.34 ind:fut:3s; +élèverai élever ver 52.03 103.85 0.55 0.41 ind:fut:1s; +élèveraient élever ver 52.03 103.85 0.11 0.07 cnd:pre:3p; +élèverais élever ver 52.03 103.85 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +élèverait élever ver 52.03 103.85 0.21 0.81 cnd:pre:3s; +élèveras élever ver 52.03 103.85 0.20 0.00 ind:fut:2s; +élèveriez élever ver 52.03 103.85 0.00 0.07 cnd:pre:2p; +élèverons élever ver 52.03 103.85 0.22 0.07 ind:fut:1p; +élèveront élever ver 52.03 103.85 0.19 0.14 ind:fut:3p; +élèves élève nom p 36.84 57.77 21.01 36.08 +ultima_ratio ultima_ratio nom f s 0.00 0.07 0.00 0.07 +ultimatum ultimatum nom m s 1.32 1.55 1.23 1.55 +ultimatums ultimatum nom m p 1.32 1.55 0.09 0.00 +ultime ultime adj s 8.56 25.74 8.01 21.49 +ultimement ultimement adv 0.01 0.07 0.01 0.07 +ultimes ultime adj p 8.56 25.74 0.55 4.26 +ultimo ultimo adv 0.00 0.07 0.00 0.07 +ultra_catholique ultra_catholique adj m s 0.10 0.00 0.10 0.00 +ultra_chic ultra_chic adj s 0.03 0.20 0.03 0.14 +ultra_chic ultra_chic adj f p 0.03 0.20 0.00 0.07 +ultra_court ultra_court adj f p 0.16 0.07 0.02 0.00 +ultra_court ultra_court adj m p 0.16 0.07 0.14 0.07 +ultra_gauche ultra_gauche nom f s 0.00 0.07 0.00 0.07 +ultra_rapide ultra_rapide adj s 0.20 0.27 0.20 0.27 +ultra_secret ultra_secret adj m s 0.20 0.07 0.20 0.07 +ultra_sensible ultra_sensible adj m s 0.01 0.14 0.01 0.14 +ultra_son ultra_son nom m p 0.03 0.14 0.03 0.14 +ultra_violet ultra_violet adj 0.04 0.07 0.01 0.00 +ultra_violet ultra_violet nom s 0.04 0.07 0.04 0.07 +ultra ultra adj 1.59 1.49 1.59 1.49 +ultrafin ultrafin adj m s 0.00 0.07 0.00 0.07 +ultragauche ultragauche nom f s 0.00 0.07 0.00 0.07 +ultraléger ultraléger adj m s 0.01 0.00 0.01 0.00 +ultramarine ultramarin adj f s 0.00 0.14 0.00 0.14 +ultramoderne ultramoderne adj s 0.49 0.14 0.34 0.07 +ultramodernes ultramoderne adj p 0.49 0.14 0.14 0.07 +ultramontain ultramontain adj m s 0.00 0.20 0.00 0.07 +ultramontains ultramontain adj m p 0.00 0.20 0.00 0.14 +ultraperformant ultraperformant adj m s 0.00 0.07 0.00 0.07 +ultrarapide ultrarapide adj s 0.06 0.07 0.03 0.07 +ultrarapides ultrarapide adj m p 0.06 0.07 0.02 0.00 +ultras ultra nom p 0.49 0.81 0.00 0.34 +ultrasecret ultrasecret adj m s 0.10 0.07 0.06 0.00 +ultrasecrète ultrasecret adj f s 0.10 0.07 0.04 0.07 +ultrasensible ultrasensible adj s 0.25 0.07 0.23 0.00 +ultrasensibles ultrasensible adj m p 0.25 0.07 0.01 0.07 +ultrason ultrason nom m s 0.87 0.00 0.34 0.00 +ultrasonique ultrasonique adj s 0.25 0.00 0.25 0.00 +ultrasons ultrason nom m p 0.87 0.00 0.53 0.00 +ultraviolet ultraviolet adj m s 0.32 0.07 0.16 0.00 +ultraviolets ultraviolet nom m p 0.33 0.07 0.27 0.07 +ultraviolette ultraviolet adj f s 0.32 0.07 0.07 0.00 +ultraviolettes ultraviolet adj f p 0.32 0.07 0.01 0.00 +ultravirus ultravirus nom m 0.01 0.00 0.01 0.00 +ultérieur ultérieur adj m s 0.71 2.36 0.27 0.41 +ultérieure ultérieur adj f s 0.71 2.36 0.28 0.95 +ultérieurement ultérieurement adv 0.37 2.03 0.37 2.03 +ultérieures ultérieur adj f p 0.71 2.36 0.09 0.81 +ultérieurs ultérieur adj m p 0.71 2.36 0.07 0.20 +élu élire ver m s 11.24 13.51 5.85 4.46 par:pas; +éléates éléate nom p 0.00 0.07 0.00 0.07 +élucida élucider ver 2.43 2.64 0.00 0.07 ind:pas:3s; +élucidai élucider ver 2.43 2.64 0.00 0.07 ind:pas:1s; +élucidation élucidation nom f s 0.05 0.61 0.05 0.61 +élucide élucider ver 2.43 2.64 0.10 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +élucider élucider ver 2.43 2.64 1.31 1.69 inf; +élucideraient élucider ver 2.43 2.64 0.00 0.07 cnd:pre:3p; +éluciderait élucider ver 2.43 2.64 0.01 0.00 cnd:pre:3s; +élucidé élucider ver m s 2.43 2.64 0.60 0.20 par:pas; +élucidée élucider ver f s 2.43 2.64 0.09 0.07 par:pas; +élucidées élucider ver f p 2.43 2.64 0.20 0.20 par:pas; +élucidés élucider ver m p 2.43 2.64 0.13 0.07 par:pas; +élucubration élucubration nom f s 0.18 1.15 0.00 0.07 +élucubrations élucubration nom f p 0.18 1.15 0.18 1.08 +élucubre élucubrer ver 0.01 0.27 0.00 0.07 ind:pre:3s; +élucubrent élucubrer ver 0.01 0.27 0.00 0.07 ind:pre:3p; +élucubrer élucubrer ver 0.01 0.27 0.01 0.14 inf; +éluda éluder ver 0.69 5.00 0.00 0.74 ind:pas:3s; +éludai éluder ver 0.69 5.00 0.00 0.07 ind:pas:1s; +éludaient éluder ver 0.69 5.00 0.00 0.14 ind:imp:3p; +éludais éluder ver 0.69 5.00 0.01 0.07 ind:imp:1s; +éludait éluder ver 0.69 5.00 0.00 0.41 ind:imp:3s; +éludant éluder ver 0.69 5.00 0.00 0.07 par:pre; +élude éluder ver 0.69 5.00 0.07 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éludent éluder ver 0.69 5.00 0.01 0.07 ind:pre:3p; +éluder éluder ver 0.69 5.00 0.33 1.89 inf; +éludes éluder ver 0.69 5.00 0.04 0.07 ind:pre:2s; +éludez éluder ver 0.69 5.00 0.13 0.00 imp:pre:2p;ind:pre:2p; +éludât éluder ver 0.69 5.00 0.00 0.14 sub:imp:3s; +éludé éluder ver m s 0.69 5.00 0.07 0.61 par:pas; +éludée éluder ver f s 0.69 5.00 0.01 0.07 par:pas; +éludées éluder ver f p 0.69 5.00 0.02 0.20 par:pas; +élue élu adj f s 5.49 4.73 3.62 2.16 +élues élu adj f p 5.49 4.73 0.14 0.68 +élégamment élégamment adv 0.23 1.89 0.23 1.89 +élégance élégance nom f s 4.17 23.51 4.12 22.77 +élégances élégance nom f p 4.17 23.51 0.06 0.74 +élégant élégant adj m s 10.13 28.85 4.74 11.35 +élégante élégant adj f s 10.13 28.85 3.86 9.46 +élégantes élégant adj f p 10.13 28.85 0.86 3.38 +élégants élégant adj m p 10.13 28.85 0.68 4.66 +élégiaque élégiaque adj s 0.10 0.27 0.10 0.20 +élégiaques élégiaque nom p 0.00 0.34 0.00 0.20 +élégie élégie nom f s 0.15 0.41 0.11 0.27 +élégies élégie nom f p 0.15 0.41 0.04 0.14 +ulula ululer ver 0.01 0.47 0.00 0.07 ind:pas:3s; +ululait ululer ver 0.01 0.47 0.00 0.14 ind:imp:3s; +ululant ululer ver 0.01 0.47 0.00 0.07 par:pre; +ulule ululer ver 0.01 0.47 0.01 0.07 ind:pre:3s; +ululement ululement nom m s 0.00 0.47 0.00 0.41 +ululements ululement nom m p 0.00 0.47 0.00 0.07 +ululer ululer ver 0.01 0.47 0.00 0.14 inf; +élément_clé élément_clé nom m s 0.09 0.00 0.09 0.00 +élément élément nom m s 24.03 63.04 10.20 16.15 +élémentaire élémentaire adj s 3.09 14.05 2.26 10.20 +élémentaires élémentaire adj p 3.09 14.05 0.82 3.85 +élémentarité élémentarité nom f s 0.00 0.07 0.00 0.07 +éléments_clé éléments_clé nom m p 0.02 0.00 0.02 0.00 +éléments élément nom m p 24.03 63.04 13.83 46.89 +éléphant éléphant nom m s 15.36 15.20 10.17 8.92 +éléphante éléphant nom f s 15.36 15.20 0.02 0.20 +éléphanteau éléphanteau nom m s 0.02 0.20 0.02 0.20 +éléphantes éléphant nom f p 15.36 15.20 0.00 0.07 +éléphantesque éléphantesque adj s 0.02 0.27 0.02 0.07 +éléphantesques éléphantesque adj p 0.02 0.27 0.00 0.20 +éléphantiasique éléphantiasique adj s 0.01 0.00 0.01 0.00 +éléphantiasis éléphantiasis nom m 0.04 0.27 0.04 0.27 +éléphantine éléphantin adj f s 0.01 0.34 0.01 0.07 +éléphantines éléphantin adj f p 0.01 0.34 0.00 0.27 +éléphants éléphant nom m p 15.36 15.20 5.17 6.01 +élus élu nom m p 4.41 5.81 1.59 4.12 +élusifs élusif adj m p 0.01 0.07 0.00 0.07 +élusive élusif adj f s 0.01 0.07 0.01 0.00 +élut élire ver 11.24 13.51 0.00 0.14 ind:pas:3s; +élévateur élévateur nom m s 0.28 0.00 0.25 0.00 +élévateurs élévateur nom m p 0.28 0.00 0.03 0.00 +élévation élévation nom f s 0.33 3.11 0.30 2.97 +élévations élévation nom f p 0.33 3.11 0.04 0.14 +élévatrice élévateur adj f s 0.23 0.27 0.01 0.00 +élévatrices élévateur adj f p 0.23 0.27 0.01 0.00 +élysée élysée nom m s 0.16 3.72 0.16 3.72 +élyséen élyséen adj m s 0.00 0.14 0.00 0.07 +élyséenne élyséen adj f s 0.00 0.14 0.00 0.07 +élytre élytre nom m s 0.01 1.76 0.01 0.00 +élytres élytre nom m p 0.01 1.76 0.00 1.76 +émût émouvoir ver 9.46 37.43 0.00 0.07 sub:imp:3s; +émaciait émacier ver 0.17 1.01 0.00 0.14 ind:imp:3s; +émacie émacier ver 0.17 1.01 0.00 0.14 ind:pre:3s; +émacié émacier ver m s 0.17 1.01 0.14 0.41 par:pas; +émaciée émacié adj f s 0.05 2.57 0.00 0.34 +émaciées émacier ver f p 0.17 1.01 0.01 0.00 par:pas; +émaciés émacié adj m p 0.05 2.57 0.02 0.07 +émail émail nom m s 0.57 6.42 0.56 5.74 +émailla émailler ver 0.24 2.84 0.00 0.07 ind:pas:3s; +émaillaient émailler ver 0.24 2.84 0.00 0.47 ind:imp:3p; +émaillait émailler ver 0.24 2.84 0.00 0.07 ind:imp:3s; +émaillant émailler ver 0.24 2.84 0.01 0.00 par:pre; +émaille émailler ver 0.24 2.84 0.01 0.07 ind:pre:1s;ind:pre:3s; +émaillent émailler ver 0.24 2.84 0.00 0.20 ind:pre:3p; +émailler émailler ver 0.24 2.84 0.01 0.34 inf; +émaillé émailler ver m s 0.24 2.84 0.03 0.74 par:pas; +émaillée émailler ver f s 0.24 2.84 0.17 0.47 par:pas; +émaillées émailler ver f p 0.24 2.84 0.01 0.27 par:pas; +émaillés émaillé adj m p 0.01 2.64 0.00 0.27 +émanaient émaner ver 2.77 9.93 0.06 0.54 ind:imp:3p; +émanait émaner ver 2.77 9.93 0.15 4.66 ind:imp:3s; +émanant émaner ver 2.77 9.93 0.72 1.22 par:pre; +émanation émanation nom f s 0.78 3.11 0.07 1.08 +émanations émanation nom f p 0.78 3.11 0.70 2.03 +émancipait émanciper ver 0.41 0.74 0.00 0.07 ind:imp:3s; +émancipateur émancipateur adj m s 0.02 0.07 0.02 0.00 +émancipation émancipation nom f s 1.12 1.15 1.12 1.15 +émancipatrice émancipateur adj f s 0.02 0.07 0.00 0.07 +émancipe émanciper ver 0.41 0.74 0.05 0.00 ind:pre:3s; +émancipent émanciper ver 0.41 0.74 0.00 0.14 ind:pre:3p; +émanciper émanciper ver 0.41 0.74 0.11 0.27 inf; +émancipé émanciper ver m s 0.41 0.74 0.14 0.07 par:pas; +émancipée émancipé adj f s 0.25 0.41 0.12 0.20 +émancipées émanciper ver f p 0.41 0.74 0.00 0.14 par:pas; +émancipés émanciper ver m p 0.41 0.74 0.02 0.00 par:pas; +émane émaner ver 2.77 9.93 1.31 2.09 imp:pre:2s;ind:pre:3s; +émanent émaner ver 2.77 9.93 0.34 0.47 ind:pre:3p; +émaner émaner ver 2.77 9.93 0.10 0.54 inf; +émanera émaner ver 2.77 9.93 0.01 0.00 ind:fut:3s; +émanerait émaner ver 2.77 9.93 0.02 0.07 cnd:pre:3s; +émané émaner ver m s 2.77 9.93 0.04 0.00 par:pas; +émanée émaner ver f s 2.77 9.93 0.00 0.20 par:pas; +émanées émaner ver f p 2.77 9.93 0.00 0.07 par:pas; +émanés émaner ver m p 2.77 9.93 0.00 0.07 par:pas; +émarge émarger ver 0.02 0.41 0.02 0.07 ind:pre:1s;ind:pre:3s; +émargeaient émarger ver 0.02 0.41 0.00 0.07 ind:imp:3p; +émargeait émarger ver 0.02 0.41 0.00 0.07 ind:imp:3s; +émargeant émarger ver 0.02 0.41 0.00 0.07 par:pre; +émargement émargement nom m s 0.01 0.00 0.01 0.00 +émarger émarger ver 0.02 0.41 0.00 0.14 inf; +émasculaient émasculer ver 0.31 0.68 0.00 0.07 ind:imp:3p; +émasculation émasculation nom f s 0.02 0.14 0.02 0.14 +émascule émasculer ver 0.31 0.68 0.03 0.14 ind:pre:1s;ind:pre:3s; +émasculer émasculer ver 0.31 0.68 0.22 0.14 inf; +émasculé émasculer ver m s 0.31 0.68 0.04 0.07 par:pas; +émasculée émasculer ver f s 0.31 0.68 0.00 0.07 par:pas; +émasculées émasculer ver f p 0.31 0.68 0.00 0.07 par:pas; +émasculés émasculer ver m p 0.31 0.68 0.03 0.14 par:pas; +émaux émail nom m p 0.57 6.42 0.01 0.68 +umbanda umbanda nom m s 0.10 0.00 0.10 0.00 +émeraude émeraude nom f s 2.77 6.42 0.88 3.58 +émeraudes émeraude nom p 2.77 6.42 1.88 2.84 +émerge émerger ver 3.73 30.20 1.14 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émergea émerger ver 3.73 30.20 0.04 2.64 ind:pas:3s; +émergeai émerger ver 3.73 30.20 0.04 0.20 ind:pas:1s; +émergeaient émerger ver 3.73 30.20 0.10 2.50 ind:imp:3p; +émergeais émerger ver 3.73 30.20 0.21 0.27 ind:imp:1s; +émergeait émerger ver 3.73 30.20 0.03 5.41 ind:imp:3s; +émergeant émerger ver 3.73 30.20 0.28 4.53 par:pre; +émergence émergence nom f s 0.49 0.54 0.49 0.41 +émergences émergence nom f p 0.49 0.54 0.00 0.14 +émergent émerger ver 3.73 30.20 0.22 2.64 ind:pre:3p;sub:pre:3p; +émergente émergent adj f s 0.11 0.41 0.01 0.00 +émergeons émerger ver 3.73 30.20 0.00 0.27 ind:pre:1p; +émergeât émerger ver 3.73 30.20 0.00 0.07 sub:imp:3s; +émerger émerger ver 3.73 30.20 0.70 4.46 inf; +émergera émerger ver 3.73 30.20 0.34 0.07 ind:fut:3s; +émergerait émerger ver 3.73 30.20 0.00 0.14 cnd:pre:3s; +émergeras émerger ver 3.73 30.20 0.00 0.07 ind:fut:2s; +émergerons émerger ver 3.73 30.20 0.03 0.00 ind:fut:1p; +émergeront émerger ver 3.73 30.20 0.01 0.00 ind:fut:3p; +émerges émerger ver 3.73 30.20 0.06 0.14 ind:pre:2s; +émergions émerger ver 3.73 30.20 0.00 0.20 ind:imp:1p; +émergèrent émerger ver 3.73 30.20 0.11 0.27 ind:pas:3p; +émergé émerger ver m s 3.73 30.20 0.38 1.01 par:pas; +émergée émerger ver f s 3.73 30.20 0.05 0.20 par:pas; +émergées émergé adj f p 0.00 0.34 0.00 0.07 +émergés émerger ver m p 3.73 30.20 0.00 0.07 par:pas; +émeri émeri nom m s 0.16 0.95 0.16 0.95 +émerillon émerillon nom m s 0.00 0.20 0.00 0.20 +émerillonné émerillonné adj m s 0.00 0.07 0.00 0.07 +émerisé émeriser ver m s 0.00 0.14 0.00 0.07 par:pas; +émerisées émeriser ver f p 0.00 0.14 0.00 0.07 par:pas; +émersion émersion nom f s 0.00 0.07 0.00 0.07 +émerveilla émerveiller ver 1.40 20.81 0.00 0.47 ind:pas:3s; +émerveillai émerveiller ver 1.40 20.81 0.00 0.14 ind:pas:1s; +émerveillaient émerveiller ver 1.40 20.81 0.00 0.88 ind:imp:3p; +émerveillais émerveiller ver 1.40 20.81 0.01 0.34 ind:imp:1s; +émerveillait émerveiller ver 1.40 20.81 0.01 3.38 ind:imp:3s; +émerveillant émerveiller ver 1.40 20.81 0.01 0.81 par:pre; +émerveille émerveiller ver 1.40 20.81 0.43 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émerveillement émerveillement nom m s 0.58 8.24 0.56 7.36 +émerveillements émerveillement nom m p 0.58 8.24 0.02 0.88 +émerveillent émerveiller ver 1.40 20.81 0.00 0.74 ind:pre:3p; +émerveiller émerveiller ver 1.40 20.81 0.12 1.15 inf; +émerveillerait émerveiller ver 1.40 20.81 0.00 0.07 cnd:pre:3s; +émerveillèrent émerveiller ver 1.40 20.81 0.00 0.07 ind:pas:3p; +émerveillé émerveiller ver m s 1.40 20.81 0.36 5.81 par:pas; +émerveillée émerveiller ver f s 1.40 20.81 0.38 3.11 par:pas; +émerveillées émerveiller ver f p 1.40 20.81 0.01 0.34 par:pas; +émerveillés émerveiller ver m p 1.40 20.81 0.08 1.89 par:pas; +émet émettre ver 9.45 17.23 1.85 2.57 ind:pre:3s; +émets émettre ver 9.45 17.23 0.48 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +émettaient émettre ver 9.45 17.23 0.01 0.74 ind:imp:3p; +émettait émettre ver 9.45 17.23 0.09 1.55 ind:imp:3s; +émettant émettre ver 9.45 17.23 0.14 1.08 par:pre; +émette émettre ver 9.45 17.23 0.20 0.00 sub:pre:1s;sub:pre:3s; +émettent émettre ver 9.45 17.23 0.91 0.34 ind:pre:3p; +émetteur_récepteur émetteur_récepteur nom m s 0.05 0.00 0.05 0.00 +émetteur émetteur nom m s 3.35 0.54 3.06 0.34 +émetteurs émetteur nom m p 3.35 0.54 0.29 0.20 +émettez émettre ver 9.45 17.23 0.10 0.07 imp:pre:2p;ind:pre:2p; +émettons émettre ver 9.45 17.23 0.14 0.07 imp:pre:1p;ind:pre:1p; +émettra émettre ver 9.45 17.23 0.28 0.07 ind:fut:3s; +émettrai émettre ver 9.45 17.23 0.04 0.00 ind:fut:1s; +émettre émettre ver 9.45 17.23 2.96 3.04 inf; +émettrice émetteur adj f s 1.01 0.47 0.01 0.07 +émettrons émettre ver 9.45 17.23 0.05 0.00 ind:fut:1p; +émettront émettre ver 9.45 17.23 0.00 0.07 ind:fut:3p; +émeu émeu nom m s 0.09 0.07 0.09 0.00 +émeus émouvoir ver 9.46 37.43 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +émeut émouvoir ver 9.46 37.43 1.22 4.73 ind:pre:3s; +émeute émeute nom f s 6.75 5.81 4.03 3.65 +émeutes émeute nom f p 6.75 5.81 2.71 2.16 +émeutier émeutier nom m s 0.26 0.81 0.01 0.00 +émeutiers émeutier nom m p 0.26 0.81 0.25 0.81 +émeuve émouvoir ver 9.46 37.43 0.01 0.54 sub:pre:1s;sub:pre:3s; +émeuvent émouvoir ver 9.46 37.43 0.14 1.01 ind:pre:3p;sub:pre:3p; +émietta émietter ver 0.09 3.31 0.00 0.47 ind:pas:3s; +émiettaient émietter ver 0.09 3.31 0.00 0.41 ind:imp:3p; +émiettait émietter ver 0.09 3.31 0.00 0.54 ind:imp:3s; +émiette émietter ver 0.09 3.31 0.02 0.47 ind:pre:1s;ind:pre:3s; +émiettement émiettement nom m s 0.00 0.47 0.00 0.27 +émiettements émiettement nom m p 0.00 0.47 0.00 0.20 +émiettent émietter ver 0.09 3.31 0.01 0.07 ind:pre:3p; +émietter émietter ver 0.09 3.31 0.05 0.47 inf; +émietterait émietter ver 0.09 3.31 0.00 0.07 cnd:pre:3s; +émiettez émietter ver 0.09 3.31 0.01 0.00 ind:pre:2p; +émiettèrent émietter ver 0.09 3.31 0.00 0.07 ind:pas:3p; +émietté émietter ver m s 0.09 3.31 0.00 0.61 par:pas; +émiettée émietter ver f s 0.09 3.31 0.00 0.07 par:pas; +émiettés émietter ver m p 0.09 3.31 0.00 0.07 par:pas; +émigra émigrer ver 3.15 3.31 0.02 0.07 ind:pas:3s; +émigrai émigrer ver 3.15 3.31 0.01 0.07 ind:pas:1s; +émigraient émigrer ver 3.15 3.31 0.01 0.00 ind:imp:3p; +émigrais émigrer ver 3.15 3.31 0.01 0.07 ind:imp:1s; +émigrait émigrer ver 3.15 3.31 0.00 0.07 ind:imp:3s; +émigrant émigrant nom m s 0.50 0.81 0.20 0.20 +émigrante émigrant nom f s 0.50 0.81 0.10 0.00 +émigrants émigrant nom m p 0.50 0.81 0.20 0.61 +émigration émigration nom f s 0.60 1.15 0.60 1.15 +émigre émigrer ver 3.15 3.31 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émigrent émigrer ver 3.15 3.31 0.14 0.00 ind:pre:3p; +émigrer émigrer ver 3.15 3.31 1.02 0.47 inf; +émigrèrent émigrer ver 3.15 3.31 0.01 0.07 ind:pas:3p; +émigré émigrer ver m s 3.15 3.31 1.63 1.55 par:pas; +émigrée émigrer ver f s 3.15 3.31 0.01 0.27 par:pas; +émigrés émigré nom m p 0.91 3.45 0.62 2.30 +émilien émilien nom m s 0.00 3.38 0.00 0.07 +émilienne émilien nom f s 0.00 3.38 0.00 3.31 +émincer émincer ver 0.38 0.47 0.12 0.07 inf; +émincez émincer ver 0.38 0.47 0.12 0.00 imp:pre:2p;ind:pre:2p; +émincé émincer ver m s 0.38 0.47 0.11 0.20 par:pas; +émincée émincer ver f s 0.38 0.47 0.01 0.00 par:pas; +émincées émincer ver f p 0.38 0.47 0.01 0.14 par:pas; +émincés émincé nom m p 0.15 0.14 0.11 0.00 +éminemment éminemment adv 0.13 1.49 0.13 1.49 +éminence éminence nom f s 1.19 3.85 1.18 3.04 +éminences éminence nom f p 1.19 3.85 0.01 0.81 +éminent éminent adj m s 2.37 5.00 1.66 2.03 +éminente éminent adj f s 2.37 5.00 0.07 1.15 +éminentes éminent adj f p 2.37 5.00 0.03 0.47 +éminentissimes éminentissime adj m p 0.00 0.07 0.00 0.07 +éminents éminent adj m p 2.37 5.00 0.61 1.35 +émir émir nom m s 0.86 0.81 0.75 0.68 +émirat émirat nom m s 0.01 0.27 0.00 0.07 +émirats émirat nom m p 0.01 0.27 0.01 0.20 +émirs émir nom m p 0.86 0.81 0.11 0.14 +émis émettre ver m 9.45 17.23 1.57 2.30 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +émise émettre ver f s 9.45 17.23 0.23 0.20 par:pas; +émises émettre ver f p 9.45 17.23 0.32 0.47 par:pas; +émissaire émissaire adj m s 2.02 1.22 1.87 1.01 +émissaires émissaire nom m p 2.03 3.72 0.33 2.57 +émission émission nom f s 32.31 10.95 27.75 7.36 +émissions émission nom f p 32.31 10.95 4.56 3.58 +émit émettre ver 9.45 17.23 0.10 4.19 ind:pas:3s; +émoi émoi nom m s 1.71 7.77 1.41 5.88 +émois émoi nom m p 1.71 7.77 0.30 1.89 +émollient émollient adj m s 0.00 0.41 0.00 0.07 +émolliente émollient adj f s 0.00 0.41 0.00 0.34 +émoluments émolument nom m p 0.01 0.20 0.01 0.20 +émondait émonder ver 0.02 0.68 0.00 0.07 ind:imp:3s; +émonder émonder ver 0.02 0.68 0.01 0.27 inf; +émondera émonder ver 0.02 0.68 0.00 0.07 ind:fut:3s; +émondeur émondeur nom m s 0.00 0.14 0.00 0.14 +émondons émonder ver 0.02 0.68 0.00 0.07 imp:pre:1p; +émondé émonder ver m s 0.02 0.68 0.01 0.07 par:pas; +émondée émonder ver f s 0.02 0.68 0.00 0.07 par:pas; +émondées émonder ver f p 0.02 0.68 0.00 0.07 par:pas; +émotif émotif adj m s 2.65 1.15 1.16 0.61 +émotifs émotif adj m p 2.65 1.15 0.10 0.27 +émotion émotion nom f s 26.33 59.59 14.03 47.97 +émotionnante émotionnant adj f s 0.00 0.07 0.00 0.07 +émotionne émotionner ver 0.54 0.14 0.14 0.07 ind:pre:3s; +émotionnel émotionnel adj m s 5.57 0.41 3.14 0.27 +émotionnelle émotionnel adj f s 5.57 0.41 1.58 0.07 +émotionnellement émotionnellement adv 1.53 0.00 1.53 0.00 +émotionnelles émotionnel adj f p 5.57 0.41 0.17 0.00 +émotionnels émotionnel adj m p 5.57 0.41 0.68 0.07 +émotionné émotionner ver m s 0.54 0.14 0.40 0.07 par:pas; +émotions émotion nom f p 26.33 59.59 12.30 11.62 +émotive émotif adj f s 2.65 1.15 1.22 0.27 +émotives émotif adj f p 2.65 1.15 0.16 0.00 +émotivité émotivité nom f s 0.15 0.47 0.15 0.47 +émouchets émouchet nom m p 0.00 0.07 0.00 0.07 +émoulu émoudre ver m s 0.02 0.61 0.02 0.47 par:pas; +émoulue émoulu adj f s 0.02 0.14 0.01 0.00 +émoulus émoudre ver m p 0.02 0.61 0.00 0.07 par:pas; +émoussa émousser ver 0.61 2.64 0.00 0.07 ind:pas:3s; +émoussai émousser ver 0.61 2.64 0.00 0.07 ind:pas:1s; +émoussaient émousser ver 0.61 2.64 0.00 0.07 ind:imp:3p; +émoussait émousser ver 0.61 2.64 0.01 0.07 ind:imp:3s; +émoussant émousser ver 0.61 2.64 0.13 0.07 par:pre; +émousse émousser ver 0.61 2.64 0.17 0.41 imp:pre:2s;ind:pre:3s; +émoussement émoussement nom m s 0.00 0.07 0.00 0.07 +émoussent émousser ver 0.61 2.64 0.01 0.20 ind:pre:3p; +émousser émousser ver 0.61 2.64 0.05 0.47 inf; +émousseront émousser ver 0.61 2.64 0.00 0.07 ind:fut:3p; +émoussèrent émousser ver 0.61 2.64 0.00 0.07 ind:pas:3p; +émoussé émousser ver m s 0.61 2.64 0.19 0.07 par:pas; +émoussée émoussé adj f s 0.59 0.81 0.34 0.14 +émoussées émoussé adj f p 0.59 0.81 0.04 0.27 +émoussés émoussé adj m p 0.59 0.81 0.14 0.14 +émoustilla émoustiller ver 0.38 2.36 0.00 0.14 ind:pas:3s; +émoustillait émoustiller ver 0.38 2.36 0.01 0.27 ind:imp:3s; +émoustillant émoustillant adj m s 0.23 0.14 0.11 0.00 +émoustillante émoustillant adj f s 0.23 0.14 0.12 0.14 +émoustiller émoustiller ver 0.38 2.36 0.16 0.41 inf; +émoustillera émoustiller ver 0.38 2.36 0.00 0.07 ind:fut:3s; +émoustillé émoustiller ver m s 0.38 2.36 0.07 0.68 par:pas; +émoustillée émoustiller ver f s 0.38 2.36 0.06 0.41 par:pas; +émoustillées émoustiller ver f p 0.38 2.36 0.00 0.07 par:pas; +émoustillés émoustiller ver m p 0.38 2.36 0.04 0.34 par:pas; +émouvaient émouvoir ver 9.46 37.43 0.01 0.27 ind:imp:3p; +émouvais émouvoir ver 9.46 37.43 0.10 0.34 ind:imp:1s;ind:imp:2s; +émouvait émouvoir ver 9.46 37.43 0.03 2.64 ind:imp:3s; +émouvant émouvant adj m s 5.21 14.05 3.51 4.80 +émouvante émouvant adj f s 5.21 14.05 1.16 6.08 +émouvantes émouvant adj f p 5.21 14.05 0.28 1.55 +émouvants émouvant adj m p 5.21 14.05 0.26 1.62 +émouvez émouvoir ver 9.46 37.43 0.00 0.07 imp:pre:2p; +émouvoir émouvoir ver 9.46 37.43 1.29 6.08 inf; +émouvrait émouvoir ver 9.46 37.43 0.01 0.14 cnd:pre:3s; +émèchent émécher ver 0.40 0.27 0.00 0.07 ind:pre:3p; +ému émouvoir ver m s 9.46 37.43 3.69 10.47 par:pas; +éméché émécher ver m s 0.40 0.27 0.26 0.00 par:pas; +éméchée émécher ver f s 0.40 0.27 0.05 0.07 par:pas; +éméchées émécher ver f p 0.40 0.27 0.02 0.07 par:pas; +éméchés éméché adj m p 0.27 1.82 0.09 0.95 +émue ému adj f s 4.89 12.09 1.92 3.78 +émues ému adj f p 4.89 12.09 0.14 0.54 +émulation émulation nom f s 0.07 2.30 0.07 2.23 +émulations émulation nom f p 0.07 2.30 0.00 0.07 +émule émule nom s 0.24 0.95 0.17 0.88 +émuler émuler ver 0.01 0.00 0.01 0.00 inf; +émules émule nom p 0.24 0.95 0.07 0.07 +émulsifiant émulsifiant adj m s 0.01 0.00 0.01 0.00 +émulsifier émulsifier ver 0.01 0.00 0.01 0.00 inf; +émulsion émulsion nom f s 0.24 0.07 0.24 0.07 +émulsionné émulsionner ver m s 0.00 0.07 0.00 0.07 par:pas; +émulsive émulsif adj f s 0.01 0.00 0.01 0.00 +émurent émouvoir ver 9.46 37.43 0.00 0.34 ind:pas:3p; +émérite émérite adj s 0.92 0.20 0.80 0.14 +émérites émérite adj p 0.92 0.20 0.12 0.07 +émus ému adj m p 4.89 12.09 0.52 0.88 +émussent émouvoir ver 9.46 37.43 0.00 0.07 sub:imp:3p; +émut émouvoir ver 9.46 37.43 0.40 3.24 ind:pas:3s; +émétine émétine nom f s 0.01 0.00 0.01 0.00 +émétique émétique adj m s 0.27 0.00 0.27 0.00 +un un art_ind m s 12087.62 13550.68 12087.62 13550.68 +unît unir ver 25.15 32.16 0.00 0.07 sub:imp:3s; +énamourant énamourer ver 0.00 0.41 0.00 0.07 par:pre; +énamouré énamouré adj m s 0.06 0.54 0.04 0.14 +énamourée énamouré adj f s 0.06 0.54 0.00 0.14 +énamourées énamouré adj f p 0.06 0.54 0.01 0.00 +énamourés énamouré adj m p 0.06 0.54 0.01 0.27 +unanime unanime adj s 2.18 6.08 1.77 4.66 +unanimement unanimement adv 0.06 1.35 0.06 1.35 +unanimes unanime adj p 2.18 6.08 0.41 1.42 +unanimisme unanimisme nom m s 0.00 0.07 0.00 0.07 +unanimité unanimité nom f s 2.63 3.78 2.63 3.78 +énarque énarque nom s 0.15 0.34 0.15 0.20 +énarques énarque nom p 0.15 0.34 0.00 0.14 +unau unau nom m s 0.01 0.00 0.01 0.00 +underground underground adj 0.89 0.34 0.89 0.34 +une une art_ind f s 7907.85 9587.97 7907.85 9587.97 +énergie énergie nom f s 43.06 29.66 42.18 27.64 +énergies énergie nom f p 43.06 29.66 0.88 2.03 +énergique énergique adj s 1.77 5.47 1.37 3.99 +énergiquement énergiquement adv 0.35 3.65 0.35 3.65 +énergiques énergique adj p 1.77 5.47 0.40 1.49 +énergisant énergisant adj m s 0.08 0.00 0.01 0.00 +énergisant énergisant nom m s 0.01 0.00 0.01 0.00 +énergisante énergisant adj f s 0.08 0.00 0.07 0.00 +énergisée énergisé adj f s 0.01 0.00 0.01 0.00 +énergumène énergumène nom s 0.68 1.49 0.51 0.95 +énergumènes énergumène nom p 0.68 1.49 0.18 0.54 +énergétique énergétique adj s 2.50 0.61 1.75 0.27 +énergétiques énergétique adj p 2.50 0.61 0.74 0.34 +énerva énerver ver 53.83 23.72 0.10 2.16 ind:pas:3s; +énervai énerver ver 53.83 23.72 0.00 0.07 ind:pas:1s; +énervaient énerver ver 53.83 23.72 0.03 0.81 ind:imp:3p; +énervais énerver ver 53.83 23.72 0.16 0.14 ind:imp:1s;ind:imp:2s; +énervait énerver ver 53.83 23.72 0.98 4.53 ind:imp:3s; +énervant énervant adj m s 1.98 1.89 1.27 0.74 +énervante énervant adj f s 1.98 1.89 0.57 0.88 +énervantes énervant adj f p 1.98 1.89 0.04 0.20 +énervants énervant adj m p 1.98 1.89 0.11 0.07 +énerve énerver ver 53.83 23.72 21.70 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +énervement énervement nom m s 0.34 3.58 0.34 3.38 +énervements énervement nom m p 0.34 3.58 0.00 0.20 +énervent énerver ver 53.83 23.72 1.27 0.61 ind:pre:3p; +énerver énerver ver 53.83 23.72 10.36 3.38 inf; +énervera énerver ver 53.83 23.72 0.09 0.00 ind:fut:3s; +énerverai énerver ver 53.83 23.72 0.05 0.00 ind:fut:1s; +énerveraient énerver ver 53.83 23.72 0.01 0.00 cnd:pre:3p; +énerverait énerver ver 53.83 23.72 0.70 0.00 cnd:pre:3s; +énerveront énerver ver 53.83 23.72 0.01 0.00 ind:fut:3p; +énerves énerver ver 53.83 23.72 4.36 0.74 ind:pre:2s; +énervez énerver ver 53.83 23.72 2.83 0.68 imp:pre:2p;ind:pre:2p; +énerviez énerver ver 53.83 23.72 0.07 0.00 ind:imp:2p; +énervions énerver ver 53.83 23.72 0.01 0.00 ind:imp:1p; +énervâmes énerver ver 53.83 23.72 0.00 0.07 ind:pas:1p; +énervons énerver ver 53.83 23.72 0.17 0.00 imp:pre:1p;ind:pre:1p; +énervé énerver ver m s 53.83 23.72 7.03 1.69 par:pas; +énervée énerver ver f s 53.83 23.72 3.00 1.08 par:pas; +énervées énerver ver f p 53.83 23.72 0.10 0.14 par:pas; +énervés énerver ver m p 53.83 23.72 0.55 0.68 par:pas; +unes unes pro_ind f p 3.42 19.59 3.42 19.59 +unetelle unetelle nom m s 0.01 0.61 0.01 0.61 +unguéal unguéal adj m s 0.01 0.00 0.01 0.00 +uni unir ver m s 25.15 32.16 1.57 2.77 par:pas; +uniate uniate adj m s 0.00 0.07 0.00 0.07 +unicellulaire unicellulaire adj m s 0.05 0.00 0.05 0.00 +unicité unicité nom f s 0.19 0.41 0.19 0.41 +unicorne unicorne adj s 0.01 0.00 0.01 0.00 +unidimensionnel unidimensionnel adj m s 0.16 0.07 0.14 0.07 +unidimensionnelle unidimensionnel adj f s 0.16 0.07 0.01 0.00 +unidirectionnel unidirectionnel adj m s 0.06 0.14 0.03 0.14 +unidirectionnelle unidirectionnel adj f s 0.06 0.14 0.02 0.00 +unidirectionnels unidirectionnel adj m p 0.06 0.14 0.01 0.00 +unie uni adj f s 10.08 13.78 1.17 2.57 +unies uni adj f p 10.08 13.78 3.46 4.73 +unification unification nom f s 1.50 0.34 1.50 0.34 +unificatrice unificateur adj f s 0.03 0.00 0.03 0.00 +unifie unifier ver 1.51 1.42 0.00 0.14 ind:pre:3s; +unifient unifier ver 1.51 1.42 0.04 0.00 ind:pre:3p; +unifier unifier ver 1.51 1.42 0.56 0.54 inf; +unifiez unifier ver 1.51 1.42 0.02 0.00 imp:pre:2p; +unifié unifier ver m s 1.51 1.42 0.40 0.41 par:pas; +unifiée unifier ver f s 1.51 1.42 0.20 0.14 par:pas; +unifiées unifier ver f p 1.51 1.42 0.00 0.14 par:pas; +unifiés unifier ver m p 1.51 1.42 0.30 0.07 par:pas; +uniforme uniforme nom m s 31.01 50.14 24.92 38.72 +uniformes uniforme nom m p 31.01 50.14 6.09 11.42 +uniformisait uniformiser ver 0.10 0.54 0.00 0.14 ind:imp:3s; +uniformisation uniformisation nom f s 0.01 0.27 0.01 0.27 +uniformise uniformiser ver 0.10 0.54 0.10 0.20 ind:pre:3s; +uniformiser uniformiser ver 0.10 0.54 0.00 0.07 inf; +uniformisée uniformiser ver f s 0.10 0.54 0.00 0.07 par:pas; +uniformisés uniformiser ver m p 0.10 0.54 0.00 0.07 par:pas; +uniformité uniformité nom f s 0.07 1.35 0.07 1.35 +uniformément uniformément adv 0.06 4.05 0.06 4.05 +énigmatique énigmatique adj s 0.82 8.11 0.80 5.88 +énigmatiquement énigmatiquement adv 0.00 0.47 0.00 0.47 +énigmatiques énigmatique adj p 0.82 8.11 0.02 2.23 +énigme énigme nom f s 7.29 10.88 5.45 8.58 +énigmes énigme nom f p 7.29 10.88 1.85 2.30 +unijambiste unijambiste adj s 0.54 0.20 0.53 0.20 +unijambistes unijambiste nom p 0.22 0.20 0.01 0.07 +unilatéral unilatéral adj m s 0.43 0.68 0.22 0.20 +unilatérale unilatéral adj f s 0.43 0.68 0.16 0.27 +unilatéralement unilatéralement adv 0.10 0.41 0.10 0.41 +unilatérales unilatéral adj f p 0.43 0.68 0.04 0.20 +unilatéralité unilatéralité nom f s 0.03 0.00 0.03 0.00 +unilatéraux unilatéral adj m p 0.43 0.68 0.01 0.00 +uniment uniment adv 0.00 0.47 0.00 0.47 +uninominal uninominal adj m s 0.00 0.27 0.00 0.20 +uninominales uninominal adj f p 0.00 0.27 0.00 0.07 +union union nom f s 19.14 30.07 18.10 29.19 +unioniste unioniste adj s 0.07 0.07 0.07 0.07 +unionistes unioniste nom p 0.01 0.07 0.00 0.07 +unions union nom f p 19.14 30.07 1.04 0.88 +uniprix uniprix nom m 0.00 0.61 0.00 0.61 +unique unique adj s 45.43 70.14 43.12 66.76 +uniquement uniquement adv 21.86 24.66 21.86 24.66 +uniques unique adj p 45.43 70.14 2.31 3.38 +unir unir ver 25.15 32.16 5.84 5.14 inf; +unira unir ver 25.15 32.16 0.45 0.20 ind:fut:3s; +unirai unir ver 25.15 32.16 0.16 0.00 ind:fut:1s; +uniraient unir ver 25.15 32.16 0.00 0.14 cnd:pre:3p; +unirait unir ver 25.15 32.16 0.06 0.20 cnd:pre:3s; +unirent unir ver 25.15 32.16 0.17 0.34 ind:pas:3p; +unirez unir ver 25.15 32.16 0.01 0.00 ind:fut:2p; +unirions unir ver 25.15 32.16 0.14 0.00 cnd:pre:1p; +unirons unir ver 25.15 32.16 0.27 0.00 ind:fut:1p; +uniront unir ver 25.15 32.16 0.21 0.00 ind:fut:3p; +unis unir ver m p 25.15 32.16 6.63 4.53 imp:pre:2s;ind:pre:1s;par:pas; +unisexe unisexe adj s 0.12 0.14 0.10 0.14 +unisexes unisexe adj f p 0.12 0.14 0.01 0.00 +unissaient unir ver 25.15 32.16 0.29 2.57 ind:imp:3p; +unissais unir ver 25.15 32.16 0.00 0.07 ind:imp:1s; +unissait unir ver 25.15 32.16 0.34 5.20 ind:imp:3s; +unissant unir ver 25.15 32.16 0.14 1.28 par:pre; +unisse unir ver 25.15 32.16 1.04 0.07 sub:pre:1s;sub:pre:3s; +unissent unir ver 25.15 32.16 1.23 2.09 ind:pre:3p; +unisses unir ver 25.15 32.16 0.00 0.07 sub:pre:2s; +unissez unir ver 25.15 32.16 1.43 0.47 imp:pre:2p;ind:pre:2p; +unissiez unir ver 25.15 32.16 0.00 0.07 ind:imp:2p; +unissions unir ver 25.15 32.16 0.02 0.14 ind:imp:1p; +unisson unisson nom m s 0.81 4.53 0.81 4.53 +unissons unir ver 25.15 32.16 0.81 0.20 imp:pre:1p;ind:pre:1p; +unit unir ver 25.15 32.16 2.72 3.51 ind:pre:3s;ind:pas:3s; +unitaire unitaire adj s 0.04 0.14 0.04 0.14 +unitarien unitarien adj m s 0.04 0.00 0.02 0.00 +unitarienne unitarien adj f s 0.04 0.00 0.02 0.00 +énième énième adj s 0.56 1.55 0.56 1.55 +unième unième adj s 0.17 0.81 0.17 0.81 +unité unité nom f s 43.46 40.41 29.29 25.07 +unités unité nom f p 43.46 40.41 14.18 15.34 +univalves univalve adj p 0.00 0.07 0.00 0.07 +univers univers nom m 34.21 58.45 34.21 58.45 +universal universal nom m s 1.24 0.00 1.24 0.00 +universalisais universaliser ver 0.01 0.07 0.00 0.07 ind:imp:1s; +universalise universaliser ver 0.01 0.07 0.01 0.00 ind:pre:3s; +universalisme universalisme nom m s 0.00 0.14 0.00 0.14 +universaliste universaliste nom s 0.01 0.00 0.01 0.00 +universalité universalité nom f s 0.00 0.27 0.00 0.27 +universel universel adj m s 5.09 15.14 2.51 5.95 +universelle universel adj f s 5.09 15.14 2.34 8.51 +universellement universellement adv 0.26 0.41 0.26 0.41 +universelles universel adj f p 5.09 15.14 0.18 0.54 +universels universel adj m p 5.09 15.14 0.06 0.14 +universitaire universitaire adj s 3.58 3.92 2.72 2.50 +universitaires universitaire adj p 3.58 3.92 0.85 1.42 +université université nom f s 40.64 15.00 38.22 13.24 +universités université nom f p 40.64 15.00 2.42 1.76 +univoque univoque adj m s 0.25 0.20 0.25 0.20 +énonce énoncer ver 1.52 4.86 0.48 0.34 ind:pre:1s;ind:pre:3s; +énoncent énoncer ver 1.52 4.86 0.01 0.14 ind:pre:3p; +énoncer énoncer ver 1.52 4.86 0.30 1.49 inf; +énonceront énoncer ver 1.52 4.86 0.34 0.00 ind:fut:3p; +énonciateurs énonciateur nom m p 0.00 0.07 0.00 0.07 +énonciation énonciation nom f s 0.04 0.07 0.04 0.07 +énoncé énoncé nom m s 0.64 1.76 0.49 1.55 +énoncée énoncer ver f s 1.52 4.86 0.12 0.14 par:pas; +énoncées énoncer ver f p 1.52 4.86 0.14 0.14 par:pas; +énoncés énoncé nom m p 0.64 1.76 0.14 0.20 +énonça énoncer ver 1.52 4.86 0.00 0.74 ind:pas:3s; +énonçai énoncer ver 1.52 4.86 0.00 0.20 ind:pas:1s; +énonçaient énoncer ver 1.52 4.86 0.00 0.07 ind:imp:3p; +énonçais énoncer ver 1.52 4.86 0.00 0.07 ind:imp:1s; +énonçait énoncer ver 1.52 4.86 0.01 0.74 ind:imp:3s; +énonçant énoncer ver 1.52 4.86 0.00 0.34 par:pre; +énorme énorme adj s 49.27 120.00 39.73 81.22 +énormes énorme adj p 49.27 120.00 9.55 38.78 +énormité énormité nom f s 0.38 3.04 0.16 2.43 +énormités énormité nom f p 0.38 3.04 0.22 0.61 +énormément énormément adv 12.27 8.38 12.27 8.38 +uns uns pro_ind m p 15.74 62.91 15.74 62.91 +untel untel nom m s 1.03 2.77 1.03 2.77 +énucléation énucléation nom f s 0.01 0.07 0.01 0.07 +énucléer énucléer ver 0.16 0.07 0.11 0.00 inf; +énucléé énucléer ver m s 0.16 0.07 0.03 0.00 par:pas; +énucléés énucléer ver m p 0.16 0.07 0.02 0.07 par:pas; +énumère énumérer ver 1.32 7.30 0.51 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +énumèrent énumérer ver 1.32 7.30 0.04 0.14 ind:pre:3p; +énumères énumérer ver 1.32 7.30 0.14 0.07 ind:pre:2s; +énuméra énumérer ver 1.32 7.30 0.01 0.81 ind:pas:3s; +énumérai énumérer ver 1.32 7.30 0.00 0.14 ind:pas:1s; +énuméraient énumérer ver 1.32 7.30 0.00 0.14 ind:imp:3p; +énumérais énumérer ver 1.32 7.30 0.00 0.27 ind:imp:1s; +énumérait énumérer ver 1.32 7.30 0.03 1.08 ind:imp:3s; +énumérant énumérer ver 1.32 7.30 0.02 0.68 par:pre; +énumération énumération nom f s 0.20 2.16 0.20 1.96 +énumérations énumération nom f p 0.20 2.16 0.00 0.20 +énumérative énumératif adj f s 0.00 0.07 0.00 0.07 +énumérer énumérer ver 1.32 7.30 0.46 2.43 inf; +énumérerai énumérer ver 1.32 7.30 0.00 0.07 ind:fut:1s; +énumérerais énumérer ver 1.32 7.30 0.00 0.07 cnd:pre:1s; +énumérez énumérer ver 1.32 7.30 0.01 0.07 imp:pre:2p;ind:pre:2p; +énumérons énumérer ver 1.32 7.30 0.01 0.00 ind:pre:1p; +énuméré énumérer ver m s 1.32 7.30 0.07 0.41 par:pas; +énumérées énumérer ver f p 1.32 7.30 0.02 0.27 par:pas; +énurésie énurésie nom f s 0.02 0.07 0.02 0.07 +énurétique énurétique nom s 0.01 0.00 0.01 0.00 +éocène éocène nom m s 0.01 0.00 0.01 0.00 +éolien éolien nom m s 0.04 1.76 0.00 1.15 +éolienne éolien nom f s 0.04 1.76 0.04 0.47 +éoliennes éolienne nom f p 0.10 0.00 0.10 0.00 +éoliens éolien adj m p 0.00 1.15 0.00 0.07 +éon éon nom m s 0.07 0.00 0.07 0.00 +éonisme éonisme nom m s 0.00 0.07 0.00 0.07 +éosine éosine nom f s 0.01 0.00 0.01 0.00 +épître épître nom f s 0.40 1.22 0.18 0.88 +épîtres épître nom f p 0.40 1.22 0.21 0.34 +épagneul épagneul nom m s 0.27 1.55 0.26 1.49 +épagneule épagneul nom f s 0.27 1.55 0.01 0.07 +épagomènes épagomène adj m p 0.00 0.14 0.00 0.14 +épais épais adj m 10.19 90.61 6.08 41.01 +épaisse épais adj f s 10.19 90.61 3.28 35.88 +épaissement épaissement adv 0.00 0.61 0.00 0.61 +épaisses épais adj f p 10.19 90.61 0.82 13.72 +épaisseur épaisseur nom f s 2.16 25.34 1.89 21.89 +épaisseurs épaisseur nom f p 2.16 25.34 0.27 3.45 +épaissi épaissir ver m s 1.13 9.53 0.16 1.35 par:pas; +épaissie épaissir ver f s 1.13 9.53 0.04 1.15 par:pas; +épaissies épaissir ver f p 1.13 9.53 0.00 0.14 par:pas; +épaissir épaissir ver 1.13 9.53 0.28 1.49 inf; +épaissirais épaissir ver 1.13 9.53 0.00 0.07 cnd:pre:1s; +épaissirent épaissir ver 1.13 9.53 0.00 0.07 ind:pas:3p; +épaissis épaissir ver m p 1.13 9.53 0.02 0.27 imp:pre:2s;par:pas; +épaississaient épaissir ver 1.13 9.53 0.00 0.54 ind:imp:3p; +épaississait épaissir ver 1.13 9.53 0.02 2.09 ind:imp:3s; +épaississant épaissir ver 1.13 9.53 0.00 0.47 par:pre; +épaississe épaissir ver 1.13 9.53 0.00 0.07 sub:pre:3s; +épaississement épaississement nom m s 0.00 0.20 0.00 0.20 +épaississent épaissir ver 1.13 9.53 0.02 0.41 ind:pre:3p; +épaissit épaissir ver 1.13 9.53 0.59 1.42 ind:pre:3s;ind:pas:3s; +épancha épancher ver 0.49 1.89 0.00 0.14 ind:pas:3s; +épanchaient épancher ver 0.49 1.89 0.00 0.07 ind:imp:3p; +épanchais épancher ver 0.49 1.89 0.01 0.07 ind:imp:1s; +épanchait épancher ver 0.49 1.89 0.00 0.20 ind:imp:3s; +épanchant épancher ver 0.49 1.89 0.00 0.14 par:pre; +épanche épancher ver 0.49 1.89 0.02 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épanchement épanchement nom m s 0.14 1.82 0.10 1.08 +épanchements épanchement nom m p 0.14 1.82 0.04 0.74 +épanchent épancher ver 0.49 1.89 0.01 0.20 ind:pre:3p; +épancher épancher ver 0.49 1.89 0.37 0.68 inf; +épancherait épancher ver 0.49 1.89 0.00 0.07 cnd:pre:3s; +épanché épancher ver m s 0.49 1.89 0.07 0.14 par:pas; +épand épandre ver 0.01 1.96 0.00 0.54 ind:pre:3s; +épandage épandage nom m s 0.11 0.47 0.11 0.27 +épandages épandage nom m p 0.11 0.47 0.00 0.20 +épandaient épandre ver 0.01 1.96 0.00 0.07 ind:imp:3p; +épandait épandre ver 0.01 1.96 0.00 0.27 ind:imp:3s; +épandant épandre ver 0.01 1.96 0.00 0.20 par:pre; +épandent épandre ver 0.01 1.96 0.00 0.07 ind:pre:3p; +épandeur épandeur nom m s 0.02 0.00 0.02 0.00 +épandez épandre ver 0.01 1.96 0.01 0.00 imp:pre:2p; +épandre épandre ver 0.01 1.96 0.00 0.41 inf; +épands épandre ver 0.01 1.96 0.00 0.07 imp:pre:2s; +épandu épandre ver m s 0.01 1.96 0.00 0.14 par:pas; +épandue épandre ver f s 0.01 1.96 0.00 0.07 par:pas; +épandues épandre ver f p 0.01 1.96 0.00 0.14 par:pas; +upanisads upanisad nom f p 0.00 0.07 0.00 0.07 +upanishad upanishad nom m 0.02 0.07 0.02 0.07 +épanouît épanouir ver 4.51 14.66 0.00 0.07 sub:imp:3s; +épanoui épanouir ver m s 4.51 14.66 0.26 1.28 par:pas; +épanouie épanouir ver f s 4.51 14.66 0.65 1.42 par:pas; +épanouies épanoui adj f p 0.86 5.54 0.03 1.01 +épanouir épanouir ver 4.51 14.66 1.48 3.72 inf; +épanouira épanouir ver 4.51 14.66 0.41 0.07 ind:fut:3s; +épanouirait épanouir ver 4.51 14.66 0.03 0.14 cnd:pre:3s; +épanouirent épanouir ver 4.51 14.66 0.12 0.20 ind:pas:3p; +épanouis épanoui adj m p 0.86 5.54 0.18 0.41 +épanouissaient épanouir ver 4.51 14.66 0.00 1.01 ind:imp:3p; +épanouissais épanouir ver 4.51 14.66 0.01 0.07 ind:imp:1s; +épanouissait épanouir ver 4.51 14.66 0.03 1.69 ind:imp:3s; +épanouissant épanouir ver 4.51 14.66 0.14 0.41 par:pre; +épanouissante épanouissant adj f s 0.38 0.07 0.35 0.00 +épanouissantes épanouissant adj f p 0.38 0.07 0.00 0.07 +épanouisse épanouir ver 4.51 14.66 0.04 0.00 sub:pre:3s; +épanouissement épanouissement nom m s 0.62 3.72 0.62 3.65 +épanouissements épanouissement nom m p 0.62 3.72 0.00 0.07 +épanouissent épanouir ver 4.51 14.66 0.28 1.01 ind:pre:3p; +épanouisses épanouir ver 4.51 14.66 0.15 0.00 sub:pre:2s; +épanouit épanouir ver 4.51 14.66 0.75 3.11 ind:pre:3s;ind:pas:3s; +épargna épargner ver 26.39 25.95 0.12 1.35 ind:pas:3s; +épargnaient épargner ver 26.39 25.95 0.01 0.74 ind:imp:3p; +épargnais épargner ver 26.39 25.95 0.04 0.20 ind:imp:1s;ind:imp:2s; +épargnait épargner ver 26.39 25.95 0.17 0.81 ind:imp:3s; +épargnant épargner ver 26.39 25.95 0.10 0.95 par:pre; +épargnantes épargnant adj f p 0.02 0.00 0.01 0.00 +épargnants épargnant nom m p 0.17 0.61 0.14 0.14 +épargne épargner ver 26.39 25.95 6.17 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épargnent épargner ver 26.39 25.95 0.09 0.27 ind:pre:3p; +épargner épargner ver 26.39 25.95 6.90 7.64 ind:pre:2p;inf; +épargnera épargner ver 26.39 25.95 1.07 0.41 ind:fut:3s; +épargnerai épargner ver 26.39 25.95 0.55 0.00 ind:fut:1s; +épargnerais épargner ver 26.39 25.95 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +épargnerait épargner ver 26.39 25.95 0.16 0.41 cnd:pre:3s; +épargneras épargner ver 26.39 25.95 0.04 0.00 ind:fut:2s; +épargnerez épargner ver 26.39 25.95 0.19 0.07 ind:fut:2p; +épargneriez épargner ver 26.39 25.95 0.02 0.00 cnd:pre:2p; +épargnerons épargner ver 26.39 25.95 0.07 0.07 ind:fut:1p; +épargneront épargner ver 26.39 25.95 0.23 0.00 ind:fut:3p; +épargnes épargner ver 26.39 25.95 0.10 0.07 ind:pre:2s; +épargnez épargner ver 26.39 25.95 2.78 0.74 imp:pre:2p;ind:pre:2p; +épargniez épargner ver 26.39 25.95 0.04 0.00 ind:imp:2p; +épargnions épargner ver 26.39 25.95 0.00 0.14 ind:imp:1p; +épargnons épargner ver 26.39 25.95 0.02 0.00 imp:pre:1p; +épargnât épargner ver 26.39 25.95 0.00 0.27 sub:imp:3s; +épargnèrent épargner ver 26.39 25.95 0.02 0.14 ind:pas:3p; +épargné épargner ver m s 26.39 25.95 5.04 5.34 par:pas; +épargnée épargner ver f s 26.39 25.95 1.63 1.76 par:pas; +épargnées épargner ver f p 26.39 25.95 0.11 0.81 par:pas; +épargnés épargner ver m p 26.39 25.95 0.63 1.08 par:pas; +éparpilla éparpiller ver 2.16 13.51 0.00 0.68 ind:pas:3s; +éparpillaient éparpiller ver 2.16 13.51 0.00 0.68 ind:imp:3p; +éparpillait éparpiller ver 2.16 13.51 0.01 1.08 ind:imp:3s; +éparpillant éparpiller ver 2.16 13.51 0.11 0.81 par:pre; +éparpille éparpiller ver 2.16 13.51 0.25 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éparpillement éparpillement nom m s 0.01 0.88 0.01 0.88 +éparpillent éparpiller ver 2.16 13.51 0.01 0.74 ind:pre:3p; +éparpiller éparpiller ver 2.16 13.51 0.34 1.55 inf; +éparpillera éparpiller ver 2.16 13.51 0.02 0.00 ind:fut:3s; +éparpilleraient éparpiller ver 2.16 13.51 0.00 0.07 cnd:pre:3p; +éparpillez éparpiller ver 2.16 13.51 0.06 0.00 imp:pre:2p;ind:pre:2p; +éparpillons éparpiller ver 2.16 13.51 0.03 0.00 ind:pre:1p; +éparpillèrent éparpiller ver 2.16 13.51 0.00 0.74 ind:pas:3p; +éparpillé éparpiller ver m s 2.16 13.51 0.40 0.81 par:pas; +éparpillée éparpillé adj f s 0.40 2.77 0.14 0.41 +éparpillées éparpiller ver f p 2.16 13.51 0.26 1.42 par:pas; +éparpillés éparpiller ver m p 2.16 13.51 0.57 2.57 par:pas; +épars épars adj m 0.46 11.15 0.32 7.23 +éparse épars adj f s 0.46 11.15 0.00 0.95 +éparses épars adj f p 0.46 11.15 0.14 2.97 +épart épart nom m s 0.01 0.00 0.01 0.00 +upas upas adv 0.01 0.00 0.01 0.00 +épastrouillant épastrouillant adj m s 0.00 0.07 0.00 0.07 +épastrouillera épastrouiller ver 0.00 0.07 0.00 0.07 ind:fut:3s; +épata épater ver 4.96 8.78 0.00 0.34 ind:pas:3s; +épataient épater ver 4.96 8.78 0.01 0.07 ind:imp:3p; +épatais épater ver 4.96 8.78 0.01 0.14 ind:imp:1s; +épatait épater ver 4.96 8.78 0.00 0.95 ind:imp:3s; +épatamment épatamment adv 0.00 0.27 0.00 0.27 +épatant épatant adj m s 5.99 6.82 4.11 4.86 +épatante épatant adj f s 5.99 6.82 1.31 1.28 +épatantes épatant adj f p 5.99 6.82 0.04 0.34 +épatants épatant adj m p 5.99 6.82 0.53 0.34 +épate épater ver 4.96 8.78 1.49 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épatement épatement nom m s 0.00 0.07 0.00 0.07 +épatent épater ver 4.96 8.78 0.02 0.00 ind:pre:3p; +épater épater ver 4.96 8.78 1.48 3.58 inf; +épatera épater ver 4.96 8.78 0.04 0.07 ind:fut:3s; +épaterait épater ver 4.96 8.78 0.00 0.34 cnd:pre:3s; +épateras épater ver 4.96 8.78 0.02 0.00 ind:fut:2s; +épates épater ver 4.96 8.78 0.27 0.00 ind:pre:2s; +épateur épateur adj m s 0.00 0.20 0.00 0.14 +épateurs épateur adj m p 0.00 0.20 0.00 0.07 +épatez épater ver 4.96 8.78 0.19 0.00 imp:pre:2p;ind:pre:2p; +épaté épater ver m s 4.96 8.78 0.43 1.01 par:pas; +épatée épater ver f s 4.96 8.78 0.23 0.41 par:pas; +épatés épater ver m p 4.96 8.78 0.13 0.14 par:pas; +épaula épauler ver 1.93 3.85 0.01 0.61 ind:pas:3s; +épaulaient épauler ver 1.93 3.85 0.01 0.07 ind:imp:3p; +épaulait épauler ver 1.93 3.85 0.00 0.61 ind:imp:3s; +épaulant épauler ver 1.93 3.85 0.00 0.07 par:pre; +épaulard épaulard nom m s 0.28 0.00 0.25 0.00 +épaulards épaulard nom m p 0.28 0.00 0.03 0.00 +épaule épaule nom f s 32.41 288.72 17.91 116.96 +épaulement épaulement nom m s 0.00 0.47 0.00 0.34 +épaulements épaulement nom m p 0.00 0.47 0.00 0.14 +épaulent épauler ver 1.93 3.85 0.11 0.14 ind:pre:3p; +épauler épauler ver 1.93 3.85 0.48 0.95 inf; +épauleras épauler ver 1.93 3.85 0.02 0.00 ind:fut:2s; +épaules épaule nom f p 32.41 288.72 14.50 171.76 +épaulette épaulette nom f s 0.81 2.97 0.02 0.61 +épaulettes épaulette nom f p 0.81 2.97 0.79 2.36 +épaulez épauler ver 1.93 3.85 0.31 0.00 imp:pre:2p;ind:pre:2p; +épaulière épaulière nom f s 0.01 0.20 0.00 0.07 +épaulières épaulière nom f p 0.01 0.20 0.01 0.14 +épaulèrent épauler ver 1.93 3.85 0.00 0.07 ind:pas:3p; +épaulé épauler ver m s 1.93 3.85 0.11 0.14 par:pas; +épaulée épauler ver f s 1.93 3.85 0.00 0.20 par:pas; +épaulées épauler ver f p 1.93 3.85 0.00 0.07 par:pas; +épaulés épauler ver m p 1.93 3.85 0.13 0.00 par:pas; +épave épave nom f s 7.50 12.23 6.52 6.28 +épaves épave nom f p 7.50 12.23 0.97 5.95 +update update nom f s 0.04 0.00 0.04 0.00 +updater updater ver 0.01 0.00 0.01 0.00 inf; +épeautre épeautre nom m s 0.00 0.07 0.00 0.07 +épectase épectase nom f s 0.00 0.07 0.00 0.07 +épeichette épeichette nom f s 0.00 0.07 0.00 0.07 +épeire épeire nom f s 0.00 0.07 0.00 0.07 +épela épeler ver 3.00 2.23 0.00 0.27 ind:pas:3s; +épelais épeler ver 3.00 2.23 0.01 0.00 ind:imp:1s; +épelait épeler ver 3.00 2.23 0.04 0.27 ind:imp:3s; +épelant épeler ver 3.00 2.23 0.03 0.27 par:pre; +épeler épeler ver 3.00 2.23 1.75 0.88 inf; +épelez épeler ver 3.00 2.23 0.17 0.00 imp:pre:2p;ind:pre:2p; +épeliez épeler ver 3.00 2.23 0.01 0.00 ind:imp:2p; +épelions épeler ver 3.00 2.23 0.00 0.07 ind:imp:1p; +épellation épellation nom f s 0.04 0.00 0.04 0.00 +épelle épeler ver 3.00 2.23 0.45 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épellent épeler ver 3.00 2.23 0.02 0.14 ind:pre:3p; +épellerais épeler ver 3.00 2.23 0.03 0.00 cnd:pre:1s; +épelles épeler ver 3.00 2.23 0.16 0.00 ind:pre:2s; +épelé épeler ver m s 3.00 2.23 0.32 0.14 par:pas; +épelés épeler ver m p 3.00 2.23 0.01 0.07 par:pas; +épendyme épendyme nom m s 0.01 0.00 0.01 0.00 +éperdu éperdre ver m s 0.20 3.92 0.16 2.09 par:pas; +éperdue éperdu adj f s 0.37 7.57 0.13 2.57 +éperdues éperdu adj f p 0.37 7.57 0.00 0.61 +éperdument éperdument adv 1.01 5.68 1.01 5.68 +éperdus éperdu adj m p 0.37 7.57 0.16 0.95 +éperlan éperlan nom m s 0.03 0.00 0.02 0.00 +éperlans éperlan nom m p 0.03 0.00 0.01 0.00 +éperon éperon nom m s 1.07 8.18 0.20 3.04 +éperonna éperonner ver 0.36 1.35 0.00 0.14 ind:pas:3s; +éperonnant éperonner ver 0.36 1.35 0.00 0.14 par:pre; +éperonne éperonner ver 0.36 1.35 0.12 0.07 ind:pre:3s; +éperonner éperonner ver 0.36 1.35 0.04 0.27 inf; +éperonnera éperonner ver 0.36 1.35 0.01 0.00 ind:fut:3s; +éperonnez éperonner ver 0.36 1.35 0.01 0.00 ind:pre:2p; +éperonnèrent éperonner ver 0.36 1.35 0.00 0.07 ind:pas:3p; +éperonné éperonner ver m s 0.36 1.35 0.16 0.47 par:pas; +éperonnée éperonner ver f s 0.36 1.35 0.00 0.07 par:pas; +éperonnés éperonner ver m p 0.36 1.35 0.02 0.14 par:pas; +éperons éperon nom m p 1.07 8.18 0.87 5.14 +épervier épervier nom m s 0.27 1.49 0.27 1.15 +éperviers épervier nom m p 0.27 1.49 0.00 0.34 +épervière épervière nom f s 0.00 0.14 0.00 0.07 +épervières épervière nom f p 0.00 0.14 0.00 0.07 +épeurant épeurer ver 0.02 0.47 0.02 0.00 par:pre; +épeurer épeurer ver 0.02 0.47 0.00 0.07 inf; +épeuré épeurer ver m s 0.02 0.47 0.00 0.20 par:pas; +épeurée épeurer ver f s 0.02 0.47 0.00 0.20 par:pas; +upgradée upgrader ver f s 0.14 0.00 0.14 0.00 par:pas; +éphèbe éphèbe nom m s 0.21 2.23 0.06 1.82 +éphèbes éphèbe nom m p 0.21 2.23 0.14 0.41 +éphébie éphébie nom f s 0.00 0.07 0.00 0.07 +éphédrine éphédrine nom f s 0.08 0.00 0.08 0.00 +éphélides éphélide nom f p 0.00 0.27 0.00 0.27 +éphémère éphémère adj s 1.73 9.19 1.33 5.74 +éphémèrement éphémèrement adv 0.00 0.20 0.00 0.20 +éphémères éphémère adj p 1.73 9.19 0.41 3.45 +éphéméride éphéméride nom f s 0.01 0.81 0.01 0.54 +éphémérides éphéméride nom f p 0.01 0.81 0.00 0.27 +éphésiens éphésien adj m p 0.01 0.07 0.01 0.07 +épi épi nom m s 1.61 5.81 1.09 1.82 +épia épier ver 4.92 15.88 0.00 0.20 ind:pas:3s; +épiai épier ver 4.92 15.88 0.00 0.07 ind:pas:1s; +épiaient épier ver 4.92 15.88 0.21 1.22 ind:imp:3p; +épiais épier ver 4.92 15.88 0.47 1.08 ind:imp:1s;ind:imp:2s; +épiait épier ver 4.92 15.88 0.20 2.50 ind:imp:3s; +épiant épier ver 4.92 15.88 0.14 1.96 par:pre; +épicanthus épicanthus nom m 0.01 0.00 0.01 0.00 +épice épice nom f s 3.06 6.76 1.46 1.69 +épicemard épicemard nom m s 0.00 0.41 0.00 0.14 +épicemards épicemard nom m p 0.00 0.41 0.00 0.27 +épicentre épicentre nom m s 0.53 0.34 0.53 0.34 +épicer épicer ver 1.04 1.01 0.27 0.14 inf; +épicerie épicerie nom f s 6.79 9.46 6.52 8.31 +épiceries épicerie nom f p 6.79 9.46 0.27 1.15 +épices épice nom f p 3.06 6.76 1.61 5.07 +épicier épicier nom m s 2.81 10.27 2.73 7.70 +épiciers épicier nom m p 2.81 10.27 0.08 0.61 +épicière épicier nom f s 2.81 10.27 0.01 1.89 +épicières épicier nom f p 2.81 10.27 0.00 0.07 +épicondyle épicondyle nom m s 0.01 0.00 0.01 0.00 +épicrânienne épicrânien adj f s 0.02 0.00 0.02 0.00 +épicé épicé adj m s 1.75 0.95 0.81 0.14 +épicéa épicéa nom m s 0.05 0.07 0.05 0.07 +épicée épicé adj f s 1.75 0.95 0.57 0.41 +épicées épicé adj f p 1.75 0.95 0.09 0.20 +épicurien épicurien adj m s 0.14 0.47 0.14 0.34 +épicurienne épicurien adj f s 0.14 0.47 0.00 0.14 +épicuriens épicurien adj m p 0.14 0.47 0.01 0.00 +épicurisme épicurisme nom m s 0.00 0.27 0.00 0.27 +épicés épicé adj m p 1.75 0.95 0.27 0.20 +épiderme épiderme nom m s 0.46 2.97 0.45 2.70 +épidermes épiderme nom m p 0.46 2.97 0.01 0.27 +épidermique épidermique adj s 0.20 0.54 0.17 0.41 +épidermiques épidermique adj p 0.20 0.54 0.03 0.14 +épidiascopes épidiascope nom m p 0.00 0.07 0.00 0.07 +épididyme épididyme nom m s 0.02 0.14 0.02 0.07 +épididymes épididyme nom m p 0.02 0.14 0.00 0.07 +épidémie épidémie nom f s 9.05 5.07 7.91 3.24 +épidémies épidémie nom f p 9.05 5.07 1.14 1.82 +épidémiologie épidémiologie nom f s 0.14 0.14 0.14 0.14 +épidémiologique épidémiologique adj m s 0.04 0.00 0.04 0.00 +épidémiologiste épidémiologiste nom s 0.01 0.07 0.01 0.07 +épidémique épidémique adj s 0.44 0.14 0.40 0.07 +épidémiques épidémique adj p 0.44 0.14 0.03 0.07 +épidural épidural adj m s 0.15 0.00 0.03 0.00 +épidurale épidural adj f s 0.15 0.00 0.13 0.00 +épie épier ver 4.92 15.88 1.30 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +épient épier ver 4.92 15.88 0.16 0.47 ind:pre:3p; +épier épier ver 4.92 15.88 1.52 3.85 inf; +épierais épier ver 4.92 15.88 0.00 0.20 cnd:pre:1s; +épierait épier ver 4.92 15.88 0.00 0.07 cnd:pre:3s; +épierrer épierrer ver 0.00 0.07 0.00 0.07 inf; +épies épier ver 4.92 15.88 0.03 0.07 ind:pre:2s; +épieu épieu nom m s 0.44 0.20 0.44 0.20 +épieux épieux nom m p 0.02 0.27 0.02 0.27 +épiez épier ver 4.92 15.88 0.08 0.00 imp:pre:2p;ind:pre:2p; +épigastre épigastre nom m s 0.00 0.20 0.00 0.20 +épigastrique épigastrique adj f s 0.01 0.00 0.01 0.00 +épiglotte épiglotte nom f s 0.06 0.00 0.06 0.00 +épigone épigone nom m s 0.20 0.41 0.20 0.20 +épigones épigone nom m p 0.20 0.41 0.00 0.20 +épigramme épigramme nom f s 0.01 0.41 0.01 0.20 +épigrammes épigramme nom f p 0.01 0.41 0.00 0.20 +épigraphe épigraphe nom f s 0.01 0.61 0.01 0.61 +épigraphie épigraphie nom f s 0.00 0.14 0.00 0.14 +épigraphistes épigraphiste nom p 0.00 0.07 0.00 0.07 +épilais épiler ver 2.04 2.77 0.00 0.07 ind:imp:1s; +épilait épiler ver 2.04 2.77 0.02 0.07 ind:imp:3s; +épilant épiler ver 2.04 2.77 0.02 0.07 par:pre; +épilateur épilateur nom m s 0.04 0.00 0.04 0.00 +épilation épilation nom f s 0.53 0.20 0.53 0.20 +épilatoire épilatoire adj s 0.03 0.00 0.03 0.00 +épile épiler ver 2.04 2.77 0.18 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épilent épiler ver 2.04 2.77 0.02 0.07 ind:pre:3p; +épilepsie épilepsie nom f s 1.89 1.55 1.89 1.55 +épileptiforme épileptiforme adj f s 0.01 0.00 0.01 0.00 +épileptique épileptique adj s 1.80 0.61 1.63 0.47 +épileptiques épileptique adj p 1.80 0.61 0.17 0.14 +épiler épiler ver 2.04 2.77 1.13 1.22 inf;; +épileuse épileur nom f s 0.00 0.07 0.00 0.07 +épilez épiler ver 2.04 2.77 0.05 0.00 ind:pre:2p; +épiloguaient épiloguer ver 0.06 1.15 0.00 0.07 ind:imp:3p; +épilogue épilogue nom m s 0.29 1.76 0.29 1.62 +épiloguer épiloguer ver 0.06 1.15 0.06 0.74 inf; +épilogues épilogue nom m p 0.29 1.76 0.00 0.14 +épiloguions épiloguer ver 0.06 1.15 0.00 0.14 ind:imp:1p; +épiloguèrent épiloguer ver 0.06 1.15 0.00 0.07 ind:pas:3p; +épilogué épiloguer ver m s 0.06 1.15 0.00 0.14 par:pas; +épilé épiler ver m s 2.04 2.77 0.20 0.27 par:pas; +épilée épiler ver f s 2.04 2.77 0.36 0.07 par:pas; +épilées épiler ver f p 2.04 2.77 0.03 0.27 par:pas; +épilés épiler ver m p 2.04 2.77 0.03 0.27 par:pas; +épinaie épinaie nom f s 0.01 0.00 0.01 0.00 +épinard épinard nom m s 1.91 2.23 0.12 0.41 +épinards épinard nom m p 1.91 2.23 1.79 1.82 +épine_vinette épine_vinette nom f s 0.00 0.07 0.00 0.07 +épine épine nom f s 5.81 12.43 2.52 3.92 +épines épine nom f p 5.81 12.43 3.29 8.51 +épinette épinette nom f s 0.01 0.20 0.01 0.14 +épinettes épinette nom f p 0.01 0.20 0.00 0.07 +épineuse épineux adj f s 1.01 4.39 0.50 1.28 +épineuses épineux adj f p 1.01 4.39 0.02 0.81 +épineux épineux adj m 1.01 4.39 0.50 2.30 +épingla épingler ver 2.76 6.82 0.00 0.41 ind:pas:3s; +épinglage épinglage nom m s 0.01 0.07 0.01 0.07 +épinglai épingler ver 2.76 6.82 0.00 0.07 ind:pas:1s; +épinglaient épingler ver 2.76 6.82 0.01 0.00 ind:imp:3p; +épinglait épingler ver 2.76 6.82 0.00 0.27 ind:imp:3s; +épingle épingle nom f s 5.57 18.24 3.29 8.92 +épinglent épingler ver 2.76 6.82 0.04 0.07 ind:pre:3p; +épingler épingler ver 2.76 6.82 1.35 0.88 inf; +épinglera épingler ver 2.76 6.82 0.07 0.07 ind:fut:3s; +épinglerai épingler ver 2.76 6.82 0.04 0.00 ind:fut:1s; +épingleront épingler ver 2.76 6.82 0.00 0.07 ind:fut:3p; +épingles épingle nom f p 5.57 18.24 2.28 9.32 +épinglette épinglette nom f s 0.01 0.00 0.01 0.00 +épinglez épingler ver 2.76 6.82 0.03 0.07 imp:pre:2p; +épinglons épingler ver 2.76 6.82 0.01 0.00 ind:pre:1p; +épinglèrent épingler ver 2.76 6.82 0.00 0.07 ind:pas:3p; +épinglé épingler ver m s 2.76 6.82 0.65 1.96 par:pas; +épinglée épingler ver f s 2.76 6.82 0.04 1.62 par:pas; +épinglées épingler ver f p 2.76 6.82 0.04 0.54 par:pas; +épinglés épingler ver m p 2.76 6.82 0.04 0.47 par:pas; +épiniers épinier nom m p 0.00 0.07 0.00 0.07 +épinière épinier adj f s 1.39 1.49 1.39 1.49 +épinoches épinoche nom f p 0.00 0.07 0.00 0.07 +épions épier ver 4.92 15.88 0.01 0.07 ind:pre:1p; +épiphane épiphane adj m s 0.00 0.07 0.00 0.07 +épiphanie épiphanie nom f s 0.23 0.74 0.23 0.74 +épiphénomène épiphénomène nom m s 0.00 0.07 0.00 0.07 +épiphylle épiphylle nom m s 0.00 0.14 0.00 0.07 +épiphylles épiphylle nom m p 0.00 0.14 0.00 0.07 +épiphysaire épiphysaire adj f s 0.01 0.00 0.01 0.00 +épiphyse épiphyse nom f s 0.16 0.00 0.16 0.00 +épiphyte épiphyte nom m s 0.05 0.00 0.01 0.00 +épiphytes épiphyte nom m p 0.05 0.00 0.04 0.00 +épiploon épiploon nom m s 0.00 0.14 0.00 0.07 +épiploons épiploon nom m p 0.00 0.14 0.00 0.07 +épique épique adj s 0.75 2.50 0.68 1.76 +épiques épique adj p 0.75 2.50 0.06 0.74 +épis épi nom m p 1.61 5.81 0.52 3.99 +épiscopal épiscopal adj m s 0.10 1.15 0.01 0.54 +épiscopale épiscopal adj f s 0.10 1.15 0.07 0.47 +épiscopales épiscopal adj f p 0.10 1.15 0.00 0.07 +épiscopalien épiscopalien adj m s 0.11 0.00 0.05 0.00 +épiscopalienne épiscopalien adj f s 0.11 0.00 0.06 0.00 +épiscopat épiscopat nom m s 0.00 0.27 0.00 0.27 +épiscopaux épiscopal adj m p 0.10 1.15 0.01 0.07 +épisiotomie épisiotomie nom f s 0.05 0.00 0.05 0.00 +épisode épisode nom m s 17.32 18.51 13.63 12.50 +épisodes épisode nom m p 17.32 18.51 3.69 6.01 +épisodique épisodique adj s 0.01 2.16 0.01 1.15 +épisodiquement épisodiquement adv 0.01 1.01 0.01 1.01 +épisodiques épisodique adj p 0.01 2.16 0.00 1.01 +épisser épisser ver 0.03 0.07 0.02 0.00 inf; +épissoirs épissoir nom m p 0.02 0.07 0.02 0.07 +épissé épisser ver m s 0.03 0.07 0.01 0.07 par:pas; +épissures épissure nom f p 0.01 0.14 0.01 0.14 +épistolaire épistolaire adj s 0.00 0.95 0.00 0.54 +épistolaires épistolaire adj p 0.00 0.95 0.00 0.41 +épistolier épistolier nom m s 0.01 0.27 0.01 0.20 +épistolière épistolier nom f s 0.01 0.27 0.00 0.07 +épistémologie épistémologie nom f s 0.04 0.07 0.04 0.07 +épistémologique épistémologique adj m s 0.00 0.07 0.00 0.07 +épistémologues épistémologue nom p 0.00 0.07 0.00 0.07 +épitaphe épitaphe nom f s 0.72 1.69 0.72 1.35 +épitaphes épitaphe nom f p 0.72 1.69 0.00 0.34 +épithalame épithalame nom m s 0.00 0.20 0.00 0.07 +épithalames épithalame nom m p 0.00 0.20 0.00 0.14 +épièrent épier ver 4.92 15.88 0.00 0.20 ind:pas:3p; +épithète épithète nom f s 0.17 1.96 0.04 1.08 +épithètes épithète nom f p 0.17 1.96 0.12 0.88 +épithélial épithélial adj m s 0.04 0.00 0.04 0.00 +épithéliale épithélial adj f s 0.04 0.00 0.01 0.00 +épithélioma épithélioma nom m s 0.01 0.00 0.01 0.00 +épithélium épithélium nom m s 0.19 0.00 0.19 0.00 +épitoge épitoge nom f s 0.00 0.14 0.00 0.14 +épitomé épitomé nom m s 0.00 0.07 0.00 0.07 +épié épier ver m s 4.92 15.88 0.37 1.69 par:pas; +épiée épier ver f s 4.92 15.88 0.37 0.54 par:pas; +épiées épier ver f p 4.92 15.88 0.00 0.14 par:pas; +épiés épier ver m p 4.92 15.88 0.05 0.27 par:pas; +éploie éployer ver 0.00 1.01 0.00 0.41 ind:pre:3s; +éploient éployer ver 0.00 1.01 0.00 0.07 ind:pre:3p; +éploré éploré adj m s 0.67 2.23 0.20 0.54 +éplorée éploré adj f s 0.67 2.23 0.39 0.88 +éplorées éploré adj f p 0.67 2.23 0.05 0.41 +éplorés éploré adj m p 0.67 2.23 0.03 0.41 +éployai éployer ver 0.00 1.01 0.00 0.07 ind:pas:1s; +éployait éployer ver 0.00 1.01 0.00 0.14 ind:imp:3s; +éployer éployer ver 0.00 1.01 0.00 0.07 inf; +éployé éployer ver m s 0.00 1.01 0.00 0.07 par:pas; +éployée éployer ver f s 0.00 1.01 0.00 0.07 par:pas; +éployées éployer ver f p 0.00 1.01 0.00 0.07 par:pas; +éployés éployer ver m p 0.00 1.01 0.00 0.07 par:pas; +éplucha éplucher ver 3.27 9.19 0.00 0.34 ind:pas:3s; +épluchage épluchage nom m s 0.04 0.68 0.04 0.41 +épluchages épluchage nom m p 0.04 0.68 0.00 0.27 +épluchaient éplucher ver 3.27 9.19 0.01 0.34 ind:imp:3p; +épluchais éplucher ver 3.27 9.19 0.02 0.14 ind:imp:1s; +épluchait éplucher ver 3.27 9.19 0.01 1.55 ind:imp:3s; +épluchant éplucher ver 3.27 9.19 0.05 0.81 par:pre; +épluche_légumes épluche_légumes nom m 0.01 0.00 0.01 0.00 +épluche éplucher ver 3.27 9.19 0.70 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épluchent éplucher ver 3.27 9.19 0.09 0.14 ind:pre:3p; +éplucher éplucher ver 3.27 9.19 1.32 3.04 inf; +épluchera éplucher ver 3.27 9.19 0.14 0.00 ind:fut:3s; +éplucherai éplucher ver 3.27 9.19 0.02 0.07 ind:fut:1s; +éplucherons éplucher ver 3.27 9.19 0.00 0.07 ind:fut:1p; +épluches éplucher ver 3.27 9.19 0.26 0.07 ind:pre:2s; +éplucheur éplucheur nom m s 0.09 0.20 0.09 0.07 +éplucheurs éplucheur nom m p 0.09 0.20 0.00 0.07 +éplucheuses éplucheur nom f p 0.09 0.20 0.00 0.07 +épluchez éplucher ver 3.27 9.19 0.03 0.07 imp:pre:2p;ind:pre:2p; +épluchions éplucher ver 3.27 9.19 0.00 0.07 ind:imp:1p; +épluchons éplucher ver 3.27 9.19 0.04 0.14 imp:pre:1p;ind:pre:1p; +épluchât éplucher ver 3.27 9.19 0.00 0.07 sub:imp:3s; +épluché éplucher ver m s 3.27 9.19 0.45 0.81 par:pas; +épluchée éplucher ver f s 3.27 9.19 0.01 0.14 par:pas; +épluchées éplucher ver f p 3.27 9.19 0.11 0.14 par:pas; +épluchure épluchure nom f s 0.23 3.18 0.12 0.41 +épluchures épluchure nom f p 0.23 3.18 0.10 2.77 +épluchés éplucher ver m p 3.27 9.19 0.01 0.34 par:pas; +épointé épointer ver m s 0.11 0.20 0.10 0.07 par:pas; +épointées épointer ver f p 0.11 0.20 0.00 0.07 par:pas; +épointés épointer ver m p 0.11 0.20 0.01 0.07 par:pas; +éponge éponge nom f s 7.11 14.53 6.14 10.14 +épongea éponger ver 0.97 10.20 0.00 1.62 ind:pas:3s; +épongeage épongeage nom m s 0.00 0.07 0.00 0.07 +épongeaient éponger ver 0.97 10.20 0.00 0.14 ind:imp:3p; +épongeais éponger ver 0.97 10.20 0.00 0.07 ind:imp:1s; +épongeait éponger ver 0.97 10.20 0.00 1.35 ind:imp:3s; +épongeant éponger ver 0.97 10.20 0.00 1.01 par:pre; +épongent éponger ver 0.97 10.20 0.00 0.14 ind:pre:3p; +épongeons éponger ver 0.97 10.20 0.00 0.07 imp:pre:1p; +éponger éponger ver 0.97 10.20 0.51 2.97 inf; +éponges éponge nom f p 7.11 14.53 0.97 4.39 +épongez éponger ver 0.97 10.20 0.01 0.00 ind:pre:2p; +épongiez éponger ver 0.97 10.20 0.00 0.07 ind:imp:2p; +épongèrent éponger ver 0.97 10.20 0.00 0.07 ind:pas:3p; +épongé éponger ver m s 0.97 10.20 0.07 0.34 par:pas; +épongée éponger ver f s 0.97 10.20 0.02 0.27 par:pas; +épongés éponger ver m p 0.97 10.20 0.00 0.14 par:pas; +éponyme éponyme adj s 0.00 0.07 0.00 0.07 +épopée épopée nom f s 1.20 4.73 1.13 4.19 +épopées épopée nom f p 1.20 4.73 0.07 0.54 +époque époque nom f s 68.44 138.51 67.23 132.70 +époques époque nom f p 68.44 138.51 1.21 5.81 +épouillage épouillage nom m s 0.01 0.07 0.01 0.07 +épouillaient épouiller ver 0.50 1.08 0.00 0.14 ind:imp:3p; +épouillait épouiller ver 0.50 1.08 0.03 0.34 ind:imp:3s; +épouille épouiller ver 0.50 1.08 0.14 0.07 ind:pre:1s;ind:pre:3s; +épouillent épouiller ver 0.50 1.08 0.03 0.00 ind:pre:3p; +épouiller épouiller ver 0.50 1.08 0.29 0.41 inf; +épouillé épouiller ver m s 0.50 1.08 0.00 0.07 par:pas; +épouillés épouiller ver m p 0.50 1.08 0.02 0.07 par:pas; +époumonaient époumoner ver 0.09 0.88 0.01 0.00 ind:imp:3p; +époumonait époumoner ver 0.09 0.88 0.00 0.20 ind:imp:3s; +époumonant époumoner ver 0.09 0.88 0.02 0.14 par:pre; +époumone époumoner ver 0.09 0.88 0.02 0.20 imp:pre:2s;ind:pre:3s; +époumoner époumoner ver 0.09 0.88 0.04 0.14 inf; +époumonèrent époumoner ver 0.09 0.88 0.00 0.07 ind:pas:3p; +époumonés époumoner ver m p 0.09 0.88 0.00 0.14 par:pas; +épousa épouser ver 118.78 59.26 0.88 2.09 ind:pas:3s; +épousable épousable adj s 0.00 0.07 0.00 0.07 +épousai épouser ver 118.78 59.26 0.02 0.14 ind:pas:1s; +épousaient épouser ver 118.78 59.26 0.14 0.68 ind:imp:3p; +épousailles épousailles nom f p 0.29 0.61 0.29 0.61 +épousais épouser ver 118.78 59.26 1.01 0.20 ind:imp:1s;ind:imp:2s; +épousait épouser ver 118.78 59.26 0.65 4.46 ind:imp:3s; +épousant épouser ver 118.78 59.26 0.87 3.18 par:pre; +épouse époux nom f s 61.54 46.62 41.98 24.26 +épousent épouser ver 118.78 59.26 0.52 0.47 ind:pre:3p; +épouser épouser ver 118.78 59.26 57.87 20.20 inf;; +épousera épouser ver 118.78 59.26 1.75 1.01 ind:fut:3s; +épouserai épouser ver 118.78 59.26 4.25 0.68 ind:fut:1s; +épouseraient épouser ver 118.78 59.26 0.01 0.34 cnd:pre:3p; +épouserais épouser ver 118.78 59.26 1.81 0.74 cnd:pre:1s;cnd:pre:2s; +épouserait épouser ver 118.78 59.26 1.78 0.88 cnd:pre:3s; +épouseras épouser ver 118.78 59.26 1.75 0.34 ind:fut:2s; +épouserez épouser ver 118.78 59.26 0.54 0.07 ind:fut:2p; +épouseriez épouser ver 118.78 59.26 0.17 0.14 cnd:pre:2p; +épouserons épouser ver 118.78 59.26 0.12 0.00 ind:fut:1p; +épouseront épouser ver 118.78 59.26 0.03 0.14 ind:fut:3p; +épouses épouse nom f p 3.80 0.00 3.80 0.00 +épouseur épouseur nom m s 0.40 0.07 0.40 0.00 +épouseurs épouseur nom m p 0.40 0.07 0.00 0.07 +épousez épouser ver 118.78 59.26 1.31 0.27 imp:pre:2p;ind:pre:2p; +épousiez épouser ver 118.78 59.26 0.25 0.14 ind:imp:2p; +épousions épouser ver 118.78 59.26 0.00 0.34 ind:imp:1p; +épousons épouser ver 118.78 59.26 0.03 0.07 ind:pre:1p; +épousât épouser ver 118.78 59.26 0.00 0.54 sub:imp:3s; +épousseta épousseter ver 0.54 4.32 0.00 0.74 ind:pas:3s; +époussetage époussetage nom m s 0.00 0.07 0.00 0.07 +époussetaient épousseter ver 0.54 4.32 0.00 0.20 ind:imp:3p; +époussetais épousseter ver 0.54 4.32 0.03 0.07 ind:imp:1s; +époussetait épousseter ver 0.54 4.32 0.00 0.41 ind:imp:3s; +époussetant épousseter ver 0.54 4.32 0.02 0.34 par:pre; +épousseter épousseter ver 0.54 4.32 0.26 0.54 inf; +époussetez épousseter ver 0.54 4.32 0.03 0.00 imp:pre:2p; +époussette épousseter ver 0.54 4.32 0.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +époussettent épousseter ver 0.54 4.32 0.01 0.07 ind:pre:3p; +époussetèrent épousseter ver 0.54 4.32 0.00 0.07 ind:pas:3p; +épousseté épousseter ver m s 0.54 4.32 0.09 0.81 par:pas; +époussetée épousseter ver f s 0.54 4.32 0.02 0.14 par:pas; +époussetés épousseter ver m p 0.54 4.32 0.00 0.20 par:pas; +épousèrent épouser ver 118.78 59.26 0.16 0.14 ind:pas:3p; +époustouflait époustoufler ver 0.27 0.41 0.02 0.00 ind:imp:3s; +époustouflant époustouflant adj m s 0.90 1.35 0.67 0.14 +époustouflante époustouflant adj f s 0.90 1.35 0.20 0.74 +époustouflantes époustouflant adj f p 0.90 1.35 0.02 0.34 +époustouflants époustouflant adj m p 0.90 1.35 0.01 0.14 +époustoufle époustoufler ver 0.27 0.41 0.00 0.14 ind:pre:1s;ind:pre:3s; +époustoufler époustoufler ver 0.27 0.41 0.05 0.00 inf; +époustouflé époustoufler ver m s 0.27 0.41 0.07 0.14 par:pas; +époustouflée époustoufler ver f s 0.27 0.41 0.04 0.07 par:pas; +époustouflés époustoufler ver m p 0.27 0.41 0.04 0.07 par:pas; +épousé épouser ver m s 118.78 59.26 18.09 10.88 par:pas; +épousée épouser ver f s 118.78 59.26 5.85 2.84 par:pas; +épousées épouser ver f p 118.78 59.26 0.27 0.14 par:pas; +épousés épouser ver m p 118.78 59.26 0.06 0.20 par:pas; +épouvanta épouvanter ver 1.81 7.97 0.00 0.68 ind:pas:3s; +épouvantable épouvantable adj s 10.82 9.53 9.53 7.43 +épouvantablement épouvantablement adv 0.34 0.95 0.34 0.95 +épouvantables épouvantable adj p 10.82 9.53 1.29 2.09 +épouvantaient épouvanter ver 1.81 7.97 0.00 0.68 ind:imp:3p; +épouvantail épouvantail nom m s 2.31 3.51 2.00 2.77 +épouvantails épouvantail nom m p 2.31 3.51 0.32 0.74 +épouvantait épouvanter ver 1.81 7.97 0.34 1.08 ind:imp:3s; +épouvante épouvante nom f s 1.93 9.80 1.79 9.59 +épouvantement épouvantement nom m s 0.00 0.27 0.00 0.20 +épouvantements épouvantement nom m p 0.00 0.27 0.00 0.07 +épouvantent épouvanter ver 1.81 7.97 0.02 0.41 ind:pre:3p; +épouvanter épouvanter ver 1.81 7.97 0.16 0.47 inf; +épouvanteraient épouvanter ver 1.81 7.97 0.00 0.07 cnd:pre:3p; +épouvantes épouvanter ver 1.81 7.97 0.17 0.00 ind:pre:2s; +épouvantez épouvanter ver 1.81 7.97 0.01 0.00 ind:pre:2p; +épouvantèrent épouvanter ver 1.81 7.97 0.00 0.07 ind:pas:3p; +épouvanté épouvanter ver m s 1.81 7.97 0.20 1.96 par:pas; +épouvantée épouvanté adj f s 0.29 3.85 0.11 1.01 +épouvantées épouvanter ver f p 1.81 7.97 0.01 0.14 par:pas; +épouvantés épouvanté adj m p 0.29 3.85 0.01 1.01 +époux époux nom m 61.54 46.62 19.57 16.42 +époxy époxy adj f s 0.04 0.00 0.04 0.00 +époxyde époxyde nom m s 0.01 0.00 0.01 0.00 +uppercut uppercut nom m s 0.33 1.28 0.28 0.95 +uppercuts uppercut nom m p 0.33 1.28 0.04 0.34 +éprenait éprendre ver 2.95 5.95 0.00 0.14 ind:imp:3s; +éprenant éprendre ver 2.95 5.95 0.00 0.14 par:pre; +éprend éprendre ver 2.95 5.95 0.04 0.27 ind:pre:3s; +éprendre éprendre ver 2.95 5.95 0.32 0.68 inf; +éprends éprendre ver 2.95 5.95 0.05 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +éprenne éprendre ver 2.95 5.95 0.00 0.07 sub:pre:3s; +éprennent éprendre ver 2.95 5.95 0.03 0.07 ind:pre:3p; +épreuve épreuve nom f s 23.43 46.28 16.88 27.91 +épreuves épreuve nom f p 23.43 46.28 6.55 18.38 +épris éprendre ver m 2.95 5.95 1.56 3.04 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +éprise éprendre ver f s 2.95 5.95 0.83 1.01 par:pas; +éprises éprendre ver f p 2.95 5.95 0.01 0.14 par:pas; +éprit éprendre ver 2.95 5.95 0.13 0.41 ind:pas:3s; +éprouva éprouver ver 23.35 127.09 0.01 9.39 ind:pas:3s; +éprouvai éprouver ver 23.35 127.09 0.03 5.27 ind:pas:1s; +éprouvaient éprouver ver 23.35 127.09 0.03 3.51 ind:imp:3p; +éprouvais éprouver ver 23.35 127.09 1.18 13.04 ind:imp:1s;ind:imp:2s; +éprouvait éprouver ver 23.35 127.09 0.88 26.35 ind:imp:3s; +éprouvant éprouvant adj m s 1.42 2.77 0.61 1.01 +éprouvante éprouvant adj f s 1.42 2.77 0.46 1.08 +éprouvantes éprouvant adj f p 1.42 2.77 0.16 0.54 +éprouvants éprouvant adj m p 1.42 2.77 0.19 0.14 +éprouve éprouver ver 23.35 127.09 6.74 19.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éprouvent éprouver ver 23.35 127.09 0.87 1.96 ind:pre:3p; +éprouver éprouver ver 23.35 127.09 3.97 19.05 inf; +éprouvera éprouver ver 23.35 127.09 0.06 0.07 ind:fut:3s; +éprouverai éprouver ver 23.35 127.09 0.42 0.07 ind:fut:1s; +éprouveraient éprouver ver 23.35 127.09 0.01 0.07 cnd:pre:3p; +éprouverais éprouver ver 23.35 127.09 0.03 0.27 cnd:pre:1s;cnd:pre:2s; +éprouverait éprouver ver 23.35 127.09 0.16 0.74 cnd:pre:3s; +éprouveras éprouver ver 23.35 127.09 0.36 0.00 ind:fut:2s; +éprouverez éprouver ver 23.35 127.09 0.05 0.34 ind:fut:2p; +éprouveront éprouver ver 23.35 127.09 0.03 0.14 ind:fut:3p; +éprouves éprouver ver 23.35 127.09 1.91 0.34 ind:pre:2s; +éprouvette éprouvette nom f s 0.59 1.22 0.44 0.88 +éprouvettes éprouvette nom f p 0.59 1.22 0.16 0.34 +éprouvez éprouver ver 23.35 127.09 1.20 0.34 imp:pre:2p;ind:pre:2p; +éprouviez éprouver ver 23.35 127.09 0.21 0.07 ind:imp:2p; +éprouvions éprouver ver 23.35 127.09 0.02 0.74 ind:imp:1p; +éprouvâmes éprouver ver 23.35 127.09 0.00 0.07 ind:pas:1p; +éprouvons éprouver ver 23.35 127.09 0.28 1.01 ind:pre:1p; +éprouvât éprouver ver 23.35 127.09 0.00 0.54 sub:imp:3s; +éprouvèrent éprouver ver 23.35 127.09 0.02 0.41 ind:pas:3p; +éprouvé éprouver ver m s 23.35 127.09 3.96 16.22 par:pas; +éprouvée éprouver ver f s 23.35 127.09 0.37 2.64 par:pas; +éprouvées éprouvé adj f p 0.59 4.19 0.11 0.47 +éprouvés éprouvé adj m p 0.59 4.19 0.25 1.22 +épucer épucer ver 0.01 0.07 0.01 0.00 inf; +épée épée nom f s 32.81 25.20 29.34 19.12 +épées épée nom f p 32.81 25.20 3.48 6.08 +épuisa épuiser ver 25.41 33.11 0.00 0.47 ind:pas:3s; +épuisai épuiser ver 25.41 33.11 0.00 0.14 ind:pas:1s; +épuisaient épuiser ver 25.41 33.11 0.05 1.08 ind:imp:3p; +épuisais épuiser ver 25.41 33.11 0.01 0.34 ind:imp:1s; +épuisait épuiser ver 25.41 33.11 0.03 1.89 ind:imp:3s; +épuisant épuisant adj m s 2.24 5.81 1.40 2.30 +épuisante épuisant adj f s 2.24 5.81 0.59 2.03 +épuisantes épuisant adj f p 2.24 5.81 0.17 0.68 +épuisants épuisant adj m p 2.24 5.81 0.09 0.81 +épuise épuiser ver 25.41 33.11 1.79 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épuisement épuisement nom m s 1.94 7.91 1.93 7.84 +épuisements épuisement nom m p 1.94 7.91 0.01 0.07 +épuisent épuiser ver 25.41 33.11 0.78 1.08 ind:pre:3p; +épuiser épuiser ver 25.41 33.11 1.91 4.53 inf; +épuisera épuiser ver 25.41 33.11 0.17 0.14 ind:fut:3s; +épuiseraient épuiser ver 25.41 33.11 0.01 0.07 cnd:pre:3p; +épuiserait épuiser ver 25.41 33.11 0.14 0.14 cnd:pre:3s; +épuiseras épuiser ver 25.41 33.11 0.04 0.00 ind:fut:2s; +épuiserons épuiser ver 25.41 33.11 0.01 0.07 ind:fut:1p; +épuiseront épuiser ver 25.41 33.11 0.02 0.00 ind:fut:3p; +épuises épuiser ver 25.41 33.11 0.26 0.14 ind:pre:2s; +épuisette épuisette nom f s 0.51 1.49 0.51 1.15 +épuisettes épuisette nom f p 0.51 1.49 0.00 0.34 +épuisez épuiser ver 25.41 33.11 0.41 0.00 imp:pre:2p;ind:pre:2p; +épuisiez épuiser ver 25.41 33.11 0.00 0.07 ind:imp:2p; +épuisons épuiser ver 25.41 33.11 0.16 0.14 ind:pre:1p; +épuisât épuiser ver 25.41 33.11 0.00 0.07 sub:imp:3s; +épéiste épéiste nom s 0.08 0.00 0.06 0.00 +épéistes épéiste nom p 0.08 0.00 0.02 0.00 +épuisèrent épuiser ver 25.41 33.11 0.00 0.20 ind:pas:3p; +épuisé épuiser ver m s 25.41 33.11 11.11 10.47 par:pas; +épuisée épuiser ver f s 25.41 33.11 6.04 4.93 par:pas; +épuisées épuiser ver f p 25.41 33.11 0.67 0.27 par:pas; +épuisés épuiser ver m p 25.41 33.11 1.77 2.70 par:pas; +épulie épulie nom f s 0.00 0.07 0.00 0.07 +épépine épépiner ver 0.00 0.07 0.00 0.07 ind:pre:3s; +épurait épurer ver 0.62 1.96 0.00 0.20 ind:imp:3s; +épurant épurer ver 0.62 1.96 0.00 0.14 par:pre; +épurateur épurateur nom m s 0.15 0.07 0.15 0.07 +épuration épuration nom f s 0.46 1.69 0.44 1.49 +épurations épuration nom f p 0.46 1.69 0.01 0.20 +épurative épuratif adj f s 0.01 0.00 0.01 0.00 +épure épure nom f s 0.28 1.28 0.14 0.74 +épurer épurer ver 0.62 1.96 0.03 0.34 inf; +épures épure nom f p 0.28 1.28 0.14 0.54 +épuré épurer ver m s 0.62 1.96 0.05 0.41 par:pas; +épurée épurer ver f s 0.62 1.96 0.50 0.34 par:pas; +épurées épurer ver f p 0.62 1.96 0.01 0.14 par:pas; +épurés épurer ver m p 0.62 1.96 0.01 0.20 par:pas; +épuçât épucer ver 0.01 0.07 0.00 0.07 sub:imp:3s; +équanimité équanimité nom f s 0.00 0.14 0.00 0.14 +équarisseur équarisseur nom m s 0.01 0.27 0.00 0.14 +équarisseurs équarisseur nom m p 0.01 0.27 0.01 0.14 +équarri équarri adj m s 0.01 0.95 0.01 0.20 +équarrie équarri adj f s 0.01 0.95 0.00 0.07 +équarries équarri adj f p 0.01 0.95 0.00 0.54 +équarrir équarrir ver 0.01 0.54 0.01 0.14 inf; +équarris équarri adj m p 0.01 0.95 0.00 0.14 +équarrissage équarrissage nom m s 0.03 0.14 0.03 0.14 +équarrissait équarrir ver 0.01 0.54 0.00 0.14 ind:imp:3s; +équarrisseur équarrisseur nom m s 0.00 0.47 0.00 0.41 +équarrisseurs équarrisseur nom m p 0.00 0.47 0.00 0.07 +équateur équateur nom m s 0.38 1.55 0.38 1.55 +équation équation nom f s 3.50 2.84 2.49 1.35 +équations équation nom f p 3.50 2.84 1.00 1.49 +équatorial équatorial adj m s 0.38 4.59 0.01 0.74 +équatoriale équatorial adj f s 0.38 4.59 0.37 3.45 +équatoriaux équatorial adj m p 0.38 4.59 0.00 0.41 +équatorien équatorien nom m s 0.01 0.07 0.01 0.07 +équatoriennes équatorien adj f p 0.01 0.00 0.01 0.00 +équerrage équerrage nom m s 0.00 0.07 0.00 0.07 +équerre équerre nom f s 0.20 1.55 0.19 1.49 +équerres équerre nom f p 0.20 1.55 0.01 0.07 +équestre équestre adj s 0.29 2.09 0.28 1.35 +équestres équestre adj p 0.29 2.09 0.01 0.74 +équeuter équeuter ver 0.01 0.00 0.01 0.00 inf; +équeutées équeuté adj f p 0.00 0.07 0.00 0.07 +équidistance équidistance nom f s 0.11 0.00 0.11 0.00 +équidistant équidistant adj m s 0.15 0.54 0.14 0.14 +équidistante équidistant adj f s 0.15 0.54 0.00 0.14 +équidistantes équidistant adj f p 0.15 0.54 0.00 0.07 +équidistants équidistant adj m p 0.15 0.54 0.01 0.20 +équidés équidé nom m p 0.01 0.00 0.01 0.00 +équilatéral équilatéral adj m s 0.04 0.34 0.04 0.27 +équilatéraux équilatéral adj m p 0.04 0.34 0.00 0.07 +équilibra équilibrer ver 1.97 5.34 0.00 0.14 ind:pas:3s; +équilibrage équilibrage nom m s 0.17 0.00 0.17 0.00 +équilibraient équilibrer ver 1.97 5.34 0.00 0.47 ind:imp:3p; +équilibrais équilibrer ver 1.97 5.34 0.00 0.07 ind:imp:1s; +équilibrait équilibrer ver 1.97 5.34 0.01 0.34 ind:imp:3s; +équilibrant équilibrer ver 1.97 5.34 0.00 0.20 par:pre; +équilibrante équilibrant adj f s 0.00 0.14 0.00 0.14 +équilibre équilibre nom m s 10.66 39.73 10.53 39.05 +équilibrent équilibrer ver 1.97 5.34 0.04 0.41 ind:pre:3p; +équilibrer équilibrer ver 1.97 5.34 0.84 1.69 inf; +équilibres équilibre nom m p 10.66 39.73 0.13 0.68 +équilibreur équilibreur nom m s 0.03 0.00 0.03 0.00 +équilibrisme équilibrisme nom m s 0.00 0.07 0.00 0.07 +équilibriste équilibriste nom s 0.70 0.88 0.45 0.54 +équilibristes équilibriste nom p 0.70 0.88 0.26 0.34 +équilibrèrent équilibrer ver 1.97 5.34 0.00 0.14 ind:pas:3p; +équilibré équilibré adj m s 2.23 2.57 1.37 1.28 +équilibrée équilibré adj f s 2.23 2.57 0.64 0.74 +équilibrées équilibré adj f p 2.23 2.57 0.02 0.34 +équilibrés équilibré adj m p 2.23 2.57 0.21 0.20 +équin équin adj m s 0.05 0.07 0.00 0.07 +équine équin adj f s 0.05 0.07 0.05 0.00 +équinoxe équinoxe nom m s 0.44 3.18 0.44 2.50 +équinoxes équinoxe nom m p 0.44 3.18 0.00 0.68 +équipa équiper ver 6.27 9.46 0.01 0.07 ind:pas:3s; +équipage équipage nom m s 19.91 17.16 18.48 11.28 +équipages équipage nom m p 19.91 17.16 1.42 5.88 +équipai équiper ver 6.27 9.46 0.01 0.00 ind:pas:1s; +équipait équiper ver 6.27 9.46 0.00 0.20 ind:imp:3s; +équipant équiper ver 6.27 9.46 0.01 0.27 par:pre; +équipe équipe nom f s 129.97 34.32 118.00 26.28 +équipement équipement nom m s 12.82 8.51 10.71 6.42 +équipements équipement nom m p 12.82 8.51 2.11 2.09 +équipent équiper ver 6.27 9.46 0.15 0.14 ind:pre:3p; +équiper équiper ver 6.27 9.46 0.89 1.89 inf; +équipera équiper ver 6.27 9.46 0.05 0.00 ind:fut:3s; +équiperai équiper ver 6.27 9.46 0.01 0.00 ind:fut:1s; +équiperais équiper ver 6.27 9.46 0.02 0.00 cnd:pre:1s; +équipes équipe nom f p 129.97 34.32 11.97 8.04 +équipez équiper ver 6.27 9.46 0.01 0.07 imp:pre:2p;ind:pre:2p; +équipier équipier nom m s 4.34 1.08 3.07 0.81 +équipiers équipier nom m p 4.34 1.08 0.71 0.27 +équipière équipier nom f s 4.34 1.08 0.56 0.00 +équipons équiper ver 6.27 9.46 0.02 0.00 imp:pre:1p;ind:pre:1p; +équipèrent équiper ver 6.27 9.46 0.00 0.07 ind:pas:3p; +équipé équiper ver m s 6.27 9.46 1.65 2.09 par:pas; +équipée équiper ver f s 6.27 9.46 1.46 1.69 par:pas; +équipées équiper ver f p 6.27 9.46 0.20 0.81 par:pas; +équipés équiper ver m p 6.27 9.46 0.93 1.35 par:pas; +équitable équitable adj s 3.41 2.97 3.30 2.77 +équitablement équitablement adv 0.46 1.35 0.46 1.35 +équitables équitable adj p 3.41 2.97 0.10 0.20 +équitation équitation nom f s 1.14 1.42 1.14 1.42 +équité équité nom f s 0.79 1.49 0.79 1.49 +équivalût équivaloir ver 2.23 3.72 0.00 0.07 sub:imp:3s; +équivalaient équivaloir ver 2.23 3.72 0.01 0.07 ind:imp:3p; +équivalait équivaloir ver 2.23 3.72 0.16 1.42 ind:imp:3s; +équivalant équivaloir ver 2.23 3.72 0.12 0.41 par:pre; +équivalence équivalence nom f s 0.22 0.81 0.19 0.61 +équivalences équivalence nom f p 0.22 0.81 0.04 0.20 +équivalent équivalent nom m s 2.45 5.74 2.43 4.93 +équivalente équivalent adj f s 0.99 1.69 0.25 0.27 +équivalentes équivalent adj f p 0.99 1.69 0.03 0.20 +équivalents équivalent adj m p 0.99 1.69 0.12 0.34 +équivaloir équivaloir ver 2.23 3.72 0.00 0.07 inf; +équivalu équivaloir ver m s 2.23 3.72 0.00 0.14 par:pas; +équivaudra équivaloir ver 2.23 3.72 0.16 0.07 ind:fut:3s; +équivaudrait équivaloir ver 2.23 3.72 0.10 0.27 cnd:pre:3s; +équivaut équivaloir ver 2.23 3.72 1.41 1.08 ind:pre:3s; +équivoque équivoque nom f s 0.78 3.78 0.64 3.38 +équivoquer équivoquer ver 0.01 0.00 0.01 0.00 inf; +équivoques équivoque adj p 0.88 5.14 0.34 1.22 +érable érable nom m s 1.15 2.03 1.11 1.15 +érables érable nom m p 1.15 2.03 0.04 0.88 +érablières érablière nom f p 0.00 0.07 0.00 0.07 +éradicateur éradicateur nom m s 0.02 0.00 0.02 0.00 +éradication éradication nom f s 0.31 0.00 0.31 0.00 +éradiquer éradiquer ver 1.34 0.07 0.97 0.07 inf; +éradiquerai éradiquer ver 1.34 0.07 0.02 0.00 ind:fut:1s; +éradiqueront éradiquer ver 1.34 0.07 0.02 0.00 ind:fut:3p; +éradiquons éradiquer ver 1.34 0.07 0.03 0.00 imp:pre:1p;ind:pre:1p; +éradiqué éradiquer ver m s 1.34 0.07 0.22 0.00 par:pas; +éradiquée éradiquer ver f s 1.34 0.07 0.08 0.00 par:pas; +érafla érafler ver 0.91 2.03 0.00 0.20 ind:pas:3s; +éraflait érafler ver 0.91 2.03 0.00 0.14 ind:imp:3s; +érafle érafler ver 0.91 2.03 0.05 0.20 ind:pre:1s;ind:pre:3s; +érafler érafler ver 0.91 2.03 0.15 0.20 inf; +éraflez érafler ver 0.91 2.03 0.02 0.00 imp:pre:2p;ind:pre:2p; +éraflé érafler ver m s 0.91 2.03 0.55 0.81 par:pas; +éraflée érafler ver f s 0.91 2.03 0.05 0.34 par:pas; +éraflées érafler ver f p 0.91 2.03 0.06 0.07 par:pas; +éraflure éraflure nom f s 1.75 1.76 1.00 0.81 +éraflures éraflure nom f p 1.75 1.76 0.75 0.95 +éraflés érafler ver m p 0.91 2.03 0.04 0.07 par:pas; +érailla érailler ver 0.04 1.42 0.00 0.07 ind:pas:3s; +éraillaient érailler ver 0.04 1.42 0.00 0.07 ind:imp:3p; +éraillait érailler ver 0.04 1.42 0.00 0.07 ind:imp:3s; +éraillant érailler ver 0.04 1.42 0.00 0.07 par:pre; +éraille érailler ver 0.04 1.42 0.00 0.14 ind:pre:3s; +éraillent érailler ver 0.04 1.42 0.00 0.07 ind:pre:3p; +érailler érailler ver 0.04 1.42 0.02 0.00 inf; +éraillé éraillé adj m s 0.03 2.16 0.00 0.27 +éraillée éraillé adj f s 0.03 2.16 0.03 1.69 +éraillées érailler ver f p 0.04 1.42 0.00 0.27 par:pas; +éraillures éraillure nom f p 0.00 0.07 0.00 0.07 +éraillés éraillé adj m p 0.03 2.16 0.00 0.14 +urane urane nom m s 0.00 0.07 0.00 0.07 +uraniens uranien adj m p 0.01 0.00 0.01 0.00 +uranisme uranisme nom m s 0.00 0.07 0.00 0.07 +uraniste uraniste nom m s 0.02 0.00 0.02 0.00 +uranium uranium nom m s 1.60 0.47 1.60 0.47 +urbain urbain adj m s 3.06 4.39 0.96 1.89 +urbaine urbain adj f s 3.06 4.39 1.28 1.35 +urbaines urbain adj f p 3.06 4.39 0.42 0.34 +urbains urbain adj m p 3.06 4.39 0.41 0.81 +urbanisation urbanisation nom f s 0.14 0.00 0.14 0.00 +urbanisme urbanisme nom m s 1.48 0.14 1.48 0.14 +urbaniste urbaniste adj s 0.01 0.07 0.01 0.00 +urbanistes urbaniste nom p 0.29 0.41 0.29 0.27 +urbanisé urbaniser ver m s 0.02 0.07 0.00 0.07 par:pas; +urbanisée urbaniser ver f s 0.02 0.07 0.02 0.00 par:pas; +urbanité urbanité nom f s 0.00 0.41 0.00 0.41 +urbi_et_orbi urbi_et_orbi adv 0.01 0.27 0.01 0.27 +urdu urdu nom m s 0.02 0.00 0.02 0.00 +ure ure nom m s 0.07 0.07 0.06 0.00 +érectile érectile adj s 0.13 0.14 0.02 0.14 +érectiles érectile adj m p 0.13 0.14 0.11 0.00 +érection érection nom f s 3.56 4.05 3.27 3.31 +érections érection nom f p 3.56 4.05 0.30 0.74 +éreintait éreinter ver 0.88 0.95 0.00 0.07 ind:imp:3s; +éreintant éreintant adj m s 0.54 0.14 0.21 0.14 +éreintante éreintant adj f s 0.54 0.14 0.31 0.00 +éreintants éreintant adj m p 0.54 0.14 0.02 0.00 +éreinte éreinter ver 0.88 0.95 0.09 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +éreintement éreintement nom m s 0.00 0.27 0.00 0.27 +éreintent éreinter ver 0.88 0.95 0.07 0.00 ind:pre:3p; +éreinter éreinter ver 0.88 0.95 0.14 0.20 inf; +éreinteur éreinteur nom m s 0.01 0.00 0.01 0.00 +éreinté éreinter ver m s 0.88 0.95 0.23 0.41 par:pas; +éreintée éreinter ver f s 0.88 0.95 0.23 0.00 par:pas; +éreintées éreinter ver f p 0.88 0.95 0.01 0.07 par:pas; +éreintés éreinter ver m p 0.88 0.95 0.09 0.07 par:pas; +ures ure nom m p 0.07 0.07 0.01 0.07 +uretère uretère nom m s 0.04 0.00 0.04 0.00 +urf urf adj m s 0.00 0.07 0.00 0.07 +urge urger ver 0.81 1.08 0.77 0.61 imp:pre:2s;ind:pre:3s;sub:pre:3s; +urgeait urger ver 0.81 1.08 0.01 0.34 ind:imp:3s; +urgemment urgemment adv 0.01 0.14 0.01 0.14 +urgence urgence nom f s 53.03 23.11 38.78 21.35 +urgences urgence nom f p 53.03 23.11 14.24 1.76 +urgent urgent adj m s 31.56 16.96 26.75 11.62 +urgente urgent adj f s 31.56 16.96 3.18 2.91 +urgentes urgent adj f p 31.56 16.96 0.84 1.49 +urgentissime urgentissime adj s 0.02 0.00 0.02 0.00 +urgentiste urgentiste nom s 0.25 0.00 0.25 0.00 +urgents urgent adj m p 31.56 16.96 0.79 0.95 +urger urger ver 0.81 1.08 0.01 0.07 inf; +érige ériger ver 1.91 5.20 0.10 0.88 ind:pre:1s;ind:pre:3s;sub:pre:1s; +érigea ériger ver 1.91 5.20 0.02 0.07 ind:pas:3s; +érigeaient ériger ver 1.91 5.20 0.14 0.27 ind:imp:3p; +érigeait ériger ver 1.91 5.20 0.00 0.14 ind:imp:3s; +érigeant ériger ver 1.91 5.20 0.02 0.34 par:pre; +érigent ériger ver 1.91 5.20 0.01 0.27 ind:pre:3p; +érigeât ériger ver 1.91 5.20 0.00 0.07 sub:imp:3s; +ériger ériger ver 1.91 5.20 0.79 1.15 inf; +érigé ériger ver m s 1.91 5.20 0.45 0.95 par:pas; +érigée ériger ver f s 1.91 5.20 0.23 0.68 par:pas; +érigées ériger ver f p 1.91 5.20 0.14 0.20 par:pas; +érigés ériger ver m p 1.91 5.20 0.01 0.20 par:pas; +urina uriner ver 2.00 2.70 0.00 0.34 ind:pas:3s; +urinaient uriner ver 2.00 2.70 0.12 0.07 ind:imp:3p; +urinaire urinaire adj s 1.27 0.34 0.98 0.14 +urinaires urinaire adj p 1.27 0.34 0.28 0.20 +urinais uriner ver 2.00 2.70 0.00 0.07 ind:imp:1s; +urinait uriner ver 2.00 2.70 0.01 0.27 ind:imp:3s; +urinal urinal nom m s 0.03 0.20 0.03 0.20 +urinant uriner ver 2.00 2.70 0.06 0.07 par:pre; +urine urine nom f s 5.72 6.62 4.63 6.28 +urinent uriner ver 2.00 2.70 0.08 0.07 ind:pre:3p; +uriner uriner ver 2.00 2.70 0.86 1.35 inf; +urinera uriner ver 2.00 2.70 0.01 0.00 ind:fut:3s; +urines urine nom f p 5.72 6.62 1.08 0.34 +urineuse urineux adj f s 0.00 0.07 0.00 0.07 +urinez uriner ver 2.00 2.70 0.10 0.00 imp:pre:2p;ind:pre:2p; +urinoir urinoir nom m s 0.69 1.35 0.37 0.61 +urinoirs urinoir nom m p 0.69 1.35 0.32 0.74 +urinons uriner ver 2.00 2.70 0.00 0.14 imp:pre:1p; +uriné uriner ver m s 2.00 2.70 0.25 0.14 par:pas; +urique urique adj m s 0.06 0.07 0.06 0.07 +urne urne nom f s 2.69 3.38 1.94 1.96 +urnes urne nom f p 2.69 3.38 0.74 1.42 +érode éroder ver 0.16 0.68 0.10 0.20 ind:pre:3s; +érodent éroder ver 0.16 0.68 0.01 0.00 ind:pre:3p; +éroder éroder ver 0.16 0.68 0.00 0.07 inf; +érodé éroder ver m s 0.16 0.68 0.03 0.14 par:pas; +érodée érodé adj f s 0.03 0.27 0.02 0.07 +érodées éroder ver f p 0.16 0.68 0.00 0.07 par:pas; +érodés éroder ver m p 0.16 0.68 0.00 0.14 par:pas; +urographie urographie nom f s 0.00 0.07 0.00 0.07 +érogène érogène adj f s 0.14 0.61 0.04 0.20 +érogènes érogène adj p 0.14 0.61 0.10 0.41 +urokinase urokinase nom f s 0.01 0.00 0.01 0.00 +urologie urologie nom f s 0.23 0.07 0.23 0.07 +urologique urologique adj m s 0.01 0.00 0.01 0.00 +urologue urologue nom s 0.29 0.20 0.29 0.20 +éros éros nom m 0.33 0.54 0.33 0.54 +uroscopie uroscopie nom f s 0.00 0.07 0.00 0.07 +érosion érosion nom f s 0.34 1.49 0.32 1.28 +érosions érosion nom f p 0.34 1.49 0.02 0.20 +érotique érotique adj s 5.06 8.85 3.04 5.95 +érotiquement érotiquement adj s 0.01 0.34 0.01 0.34 +érotiques érotique adj p 5.06 8.85 2.02 2.91 +érotise érotiser ver 0.01 0.20 0.00 0.07 ind:pre:3s; +érotiser érotiser ver 0.01 0.20 0.01 0.00 inf; +érotisme érotisme nom m s 1.64 3.38 1.64 3.38 +érotisé érotiser ver m s 0.01 0.20 0.00 0.07 par:pas; +érotisée érotiser ver f s 0.01 0.20 0.00 0.07 par:pas; +érotomane érotomane adj m s 0.00 0.14 0.00 0.14 +érotomane érotomane nom s 0.00 0.14 0.00 0.14 +érotomanie érotomanie nom f s 0.04 0.14 0.04 0.14 +ursuline ursuline nom f s 0.23 1.01 0.00 0.07 +ursulines ursuline nom f p 0.23 1.01 0.23 0.95 +urètre urètre nom m s 0.16 0.47 0.16 0.47 +urticaire urticaire nom f s 1.22 0.61 1.22 0.61 +urticante urticant adj f s 0.02 0.20 0.01 0.00 +urticantes urticant adj f p 0.02 0.20 0.01 0.14 +urticants urticant adj m p 0.02 0.20 0.00 0.07 +urubu urubu nom m s 0.00 0.34 0.00 0.07 +urubus urubu nom m p 0.00 0.34 0.00 0.27 +éructa éructer ver 0.21 2.50 0.00 0.27 ind:pas:3s; +éructait éructer ver 0.21 2.50 0.00 0.41 ind:imp:3s; +éructant éructer ver 0.21 2.50 0.02 0.27 par:pre; +éructation éructation nom f s 0.02 0.20 0.01 0.00 +éructations éructation nom f p 0.02 0.20 0.01 0.20 +éructe éructer ver 0.21 2.50 0.14 1.01 ind:pre:1s;ind:pre:3s; +éructer éructer ver 0.21 2.50 0.04 0.27 inf; +éructes éructer ver 0.21 2.50 0.01 0.00 ind:pre:2s; +éructé éructer ver m s 0.21 2.50 0.00 0.20 par:pas; +éructées éructer ver f p 0.21 2.50 0.00 0.07 par:pas; +érudit érudit nom m s 1.43 1.69 1.09 0.61 +érudite érudit adj f s 0.56 1.01 0.11 0.00 +érudites érudit adj f p 0.56 1.01 0.01 0.14 +érudition érudition nom f s 0.40 2.84 0.40 2.84 +érudits érudit nom m p 1.43 1.69 0.30 1.08 +urée urée nom f s 0.20 0.14 0.20 0.14 +uruguayen uruguayen nom m s 0.57 0.00 0.57 0.00 +urémie urémie nom f s 0.31 0.27 0.31 0.27 +urémique urémique adj s 0.02 0.00 0.02 0.00 +éruption éruption nom f s 3.73 2.09 3.32 1.55 +éruptions éruption nom f p 3.73 2.09 0.41 0.54 +éruptive éruptif adj f s 0.01 0.07 0.01 0.00 +éruptives éruptif adj f p 0.01 0.07 0.00 0.07 +urus urus nom m 0.00 0.20 0.00 0.20 +uréthane uréthane nom m s 0.08 0.00 0.08 0.00 +urétrite urétrite nom f s 0.04 0.00 0.04 0.00 +érythromycine érythromycine nom f s 0.04 0.00 0.04 0.00 +érythrophobie érythrophobie nom f s 0.05 0.00 0.05 0.00 +érythréenne érythréen nom f s 0.01 0.00 0.01 0.00 +érythème érythème nom m s 0.17 0.14 0.16 0.00 +érythèmes érythème nom m p 0.17 0.14 0.01 0.14 +érythémateux érythémateux adj m 0.03 0.00 0.03 0.00 +us us nom m p 9.10 1.55 9.10 1.55 +usa user ver 13.58 45.00 0.15 0.61 ind:pas:3s; +usage usage nom m s 14.45 47.97 13.26 42.30 +usager usager nom m s 0.07 1.55 0.02 0.54 +usagers usager nom m p 0.07 1.55 0.05 0.95 +usages usage nom m p 14.45 47.97 1.19 5.68 +usagères usager nom f p 0.07 1.55 0.00 0.07 +usagé usagé adj m s 1.37 3.11 0.22 1.01 +usagée usagé adj f s 1.37 3.11 0.39 0.68 +usagées usagé adj f p 1.37 3.11 0.31 0.74 +usagés usagé adj m p 1.37 3.11 0.45 0.68 +usai user ver 13.58 45.00 0.00 0.41 ind:pas:1s; +usaient user ver 13.58 45.00 0.14 1.49 ind:imp:3p; +usais user ver 13.58 45.00 0.02 0.61 ind:imp:1s;ind:imp:2s; +usait user ver 13.58 45.00 0.08 4.26 ind:imp:3s; +usant user ver 13.58 45.00 0.59 2.36 par:pre; +usante usant adj f s 0.40 0.14 0.01 0.00 +use user ver 13.58 45.00 3.19 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +usent user ver 13.58 45.00 0.17 2.23 ind:pre:3p; +user user ver 13.58 45.00 3.48 9.73 inf; +usera user ver 13.58 45.00 0.34 0.00 ind:fut:3s; +userai user ver 13.58 45.00 0.22 0.20 ind:fut:1s; +userais user ver 13.58 45.00 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +userait user ver 13.58 45.00 0.04 0.61 cnd:pre:3s; +useriez user ver 13.58 45.00 0.02 0.00 cnd:pre:2p; +userons user ver 13.58 45.00 0.01 0.07 ind:fut:1p; +useront user ver 13.58 45.00 0.02 0.07 ind:fut:3p; +uses user ver 13.58 45.00 0.19 0.00 ind:pre:2s; +usez user ver 13.58 45.00 0.46 0.27 imp:pre:2p;ind:pre:2p; +usinage usinage nom m s 0.05 0.00 0.05 0.00 +usinaient usiner ver 0.05 0.95 0.00 0.07 ind:imp:3p; +usinant usiner ver 0.05 0.95 0.00 0.07 par:pre; +usine_pilote usine_pilote nom f s 0.00 0.07 0.00 0.07 +usine usine nom f s 51.59 42.97 43.51 28.04 +usiner usiner ver 0.05 0.95 0.01 0.00 inf; +usines usine nom f p 51.59 42.97 8.08 14.93 +usinier usinier adj m s 0.00 0.14 0.00 0.07 +usiniers usinier nom m p 0.00 0.07 0.00 0.07 +usinière usinier adj f s 0.00 0.14 0.00 0.07 +usiné usiner ver m s 0.05 0.95 0.00 0.07 par:pas; +usinée usiner ver f s 0.05 0.95 0.00 0.07 par:pas; +usinées usiner ver f p 0.05 0.95 0.00 0.07 par:pas; +usinés usiner ver m p 0.05 0.95 0.00 0.07 par:pas; +usions user ver 13.58 45.00 0.02 0.20 ind:imp:1p; +usité usité adj m s 0.01 0.27 0.00 0.20 +usités usité adj m p 0.01 0.27 0.01 0.07 +usons user ver 13.58 45.00 0.14 0.27 imp:pre:1p;ind:pre:1p; +usât user ver 13.58 45.00 0.00 0.20 sub:imp:3s; +ésotérique ésotérique adj s 0.53 1.08 0.18 0.68 +ésotériques ésotérique adj p 0.53 1.08 0.35 0.41 +ésotérisme ésotérisme nom m s 0.23 0.54 0.23 0.54 +ésotéristes ésotériste nom p 0.00 0.07 0.00 0.07 +ustensile ustensile nom m s 1.32 5.27 0.27 1.35 +ustensiles ustensile nom m p 1.32 5.27 1.06 3.92 +usèrent user ver 13.58 45.00 0.00 0.07 ind:pas:3p; +ustion ustion nom f s 0.00 0.14 0.00 0.14 +usé user ver m s 13.58 45.00 2.02 8.92 par:pas; +usée user ver f s 13.58 45.00 0.80 3.72 par:pas; +usuel usuel adj m s 0.19 1.28 0.04 0.41 +usuelle usuel adj f s 0.19 1.28 0.04 0.20 +usuellement usuellement adv 0.10 0.00 0.10 0.00 +usuelles usuel adj f p 0.19 1.28 0.00 0.20 +usuels usuel adj m p 0.19 1.28 0.10 0.47 +usées usé adj f p 2.49 17.09 0.50 2.70 +usufruit usufruit nom m s 0.15 0.47 0.15 0.47 +usufruitier usufruitier nom m s 0.00 0.14 0.00 0.14 +usuraire usuraire adj m s 0.04 0.14 0.01 0.14 +usuraires usuraire adj m p 0.04 0.14 0.02 0.00 +usure usure nom f s 1.78 10.20 1.77 10.00 +usures usure nom f p 1.78 10.20 0.01 0.20 +usurier usurier nom m s 2.17 1.28 1.20 0.61 +usuriers usurier nom m p 2.17 1.28 0.86 0.61 +usurière usurier nom f s 2.17 1.28 0.11 0.07 +usurpaient usurper ver 1.09 2.03 0.00 0.14 ind:imp:3p; +usurpait usurper ver 1.09 2.03 0.00 0.07 ind:imp:3s; +usurpant usurper ver 1.09 2.03 0.01 0.20 par:pre; +usurpateur usurpateur nom m s 0.43 1.62 0.21 0.68 +usurpateurs usurpateur nom m p 0.43 1.62 0.05 0.61 +usurpation usurpation nom f s 0.59 1.35 0.59 1.35 +usurpatrice usurpateur nom f s 0.43 1.62 0.17 0.34 +usurpent usurper ver 1.09 2.03 0.01 0.07 ind:pre:3p; +usurper usurper ver 1.09 2.03 0.51 0.34 inf; +usurperont usurper ver 1.09 2.03 0.01 0.00 ind:fut:3p; +usurpé usurper ver m s 1.09 2.03 0.54 0.74 par:pas; +usurpée usurper ver f s 1.09 2.03 0.00 0.27 par:pas; +usurpées usurper ver f p 1.09 2.03 0.00 0.14 par:pas; +usurpés usurper ver m p 1.09 2.03 0.01 0.07 par:pas; +usés user ver m p 13.58 45.00 1.05 2.09 par:pas; +ut ut nom m 1.02 0.54 1.02 0.54 +établît établir ver 26.38 57.77 0.00 0.27 sub:imp:3s; +étable étable nom f s 5.37 9.46 4.85 7.50 +étables étable nom f p 5.37 9.46 0.52 1.96 +établi établir ver m s 26.38 57.77 7.41 11.01 par:pas; +établie établir ver f s 26.38 57.77 1.89 4.66 par:pas; +établies établir ver f p 26.38 57.77 0.58 1.96 par:pas; +établir établir ver 26.38 57.77 10.52 20.68 inf; +établira établir ver 26.38 57.77 0.34 0.27 ind:fut:3s; +établirai établir ver 26.38 57.77 0.07 0.14 ind:fut:1s; +établiraient établir ver 26.38 57.77 0.01 0.07 cnd:pre:3p; +établirais établir ver 26.38 57.77 0.14 0.07 cnd:pre:1s; +établirait établir ver 26.38 57.77 0.04 0.88 cnd:pre:3s; +établirent établir ver 26.38 57.77 0.04 1.01 ind:pas:3p; +établirez établir ver 26.38 57.77 0.01 0.14 ind:fut:2p; +établirions établir ver 26.38 57.77 0.01 0.00 cnd:pre:1p; +établirons établir ver 26.38 57.77 0.07 0.07 ind:fut:1p; +établiront établir ver 26.38 57.77 0.05 0.14 ind:fut:3p; +établis établir ver m p 26.38 57.77 1.29 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +établissaient établir ver 26.38 57.77 0.02 1.08 ind:imp:3p; +établissais établir ver 26.38 57.77 0.03 0.27 ind:imp:1s;ind:imp:2s; +établissait établir ver 26.38 57.77 0.17 3.78 ind:imp:3s; +établissant établir ver 26.38 57.77 0.55 1.01 par:pre; +établisse établir ver 26.38 57.77 0.26 0.81 sub:pre:1s;sub:pre:3s; +établissement établissement nom m s 7.59 22.23 6.11 17.36 +établissements établissement nom m p 7.59 22.23 1.48 4.86 +établissent établir ver 26.38 57.77 0.28 1.22 ind:pre:3p; +établisses établir ver 26.38 57.77 0.01 0.00 sub:pre:2s; +établissez établir ver 26.38 57.77 0.50 0.14 imp:pre:2p;ind:pre:2p; +établissions établir ver 26.38 57.77 0.05 0.14 ind:imp:1p; +établissons établir ver 26.38 57.77 0.29 0.20 imp:pre:1p;ind:pre:1p; +établit établir ver 26.38 57.77 1.74 5.07 ind:pre:3s;ind:pas:3s; +étage étage nom m s 46.45 96.55 39.47 69.19 +étagea étager ver 0.73 3.58 0.00 0.07 ind:pas:3s; +étageaient étager ver 0.73 3.58 0.00 0.81 ind:imp:3p; +étageait étager ver 0.73 3.58 0.00 0.27 ind:imp:3s; +étageant étager ver 0.73 3.58 0.00 0.41 par:pre; +étagent étager ver 0.73 3.58 0.00 0.74 ind:pre:3p; +étages étage nom m p 46.45 96.55 6.98 27.36 +étagère étagère nom f s 5.06 16.69 3.29 9.59 +étagères étagère nom f p 5.06 16.69 1.77 7.09 +étagé étagé adj m s 0.00 0.54 0.00 0.07 +étagée étager ver f s 0.73 3.58 0.00 0.20 par:pas; +étagées étager ver f p 0.73 3.58 0.00 0.41 par:pas; +étagés étager ver m p 0.73 3.58 0.00 0.27 par:pas; +étai étai nom m s 0.28 0.88 0.19 0.54 +étaie étayer ver 0.72 4.05 0.04 0.14 ind:pre:1s;ind:pre:3s; +étaient être aux 8074.24 6501.82 55.30 393.85 ind:imp:3p; +étain étain nom m s 1.19 4.66 1.08 4.39 +étains étain nom m p 1.19 4.66 0.11 0.27 +étais être aux 8074.24 6501.82 184.97 224.66 ind:imp:2s; +était être aux 8074.24 6501.82 350.91 1497.84 ind:imp:3s; +étal étal nom m s 0.56 5.54 0.33 3.38 +étala étaler ver 6.36 63.11 0.00 4.05 ind:pas:3s; +étalage étalage nom m s 2.22 11.42 1.95 7.64 +étalages étalage nom m p 2.22 11.42 0.27 3.78 +étalagiste étalagiste nom s 0.00 0.20 0.00 0.20 +étalai étaler ver 6.36 63.11 0.00 0.27 ind:pas:1s; +étalaient étaler ver 6.36 63.11 0.03 6.15 ind:imp:3p; +étalais étaler ver 6.36 63.11 0.18 0.20 ind:imp:1s; +étalait étaler ver 6.36 63.11 0.08 10.00 ind:imp:3s; +étalant étaler ver 6.36 63.11 0.13 2.30 par:pre; +étale étaler ver 6.36 63.11 0.93 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +étalement étalement nom m s 0.14 0.47 0.14 0.41 +étalements étalement nom m p 0.14 0.47 0.00 0.07 +étalent étaler ver 6.36 63.11 0.32 2.57 ind:pre:3p; +étaler étaler ver 6.36 63.11 2.42 7.16 inf; +étalera étaler ver 6.36 63.11 0.00 0.14 ind:fut:3s; +étalerai étaler ver 6.36 63.11 0.01 0.00 ind:fut:1s; +étaleraient étaler ver 6.36 63.11 0.00 0.14 cnd:pre:3p; +étalerait étaler ver 6.36 63.11 0.01 0.14 cnd:pre:3s; +étaleras étaler ver 6.36 63.11 0.00 0.07 ind:fut:2s; +étaleront étaler ver 6.36 63.11 0.01 0.07 ind:fut:3p; +étales étaler ver 6.36 63.11 0.28 0.00 ind:pre:2s; +étalez étaler ver 6.36 63.11 0.04 0.14 imp:pre:2p;ind:pre:2p; +étalions étaler ver 6.36 63.11 0.00 0.14 ind:imp:1p; +étalon étalon nom m s 6.20 5.41 5.13 4.39 +étalonnage étalonnage nom m s 0.45 0.07 0.45 0.00 +étalonnages étalonnage nom m p 0.45 0.07 0.00 0.07 +étalonne étalonner ver 0.02 0.14 0.00 0.07 ind:pre:1s; +étalonner étalonner ver 0.02 0.14 0.01 0.07 inf; +étalonné étalonner ver m s 0.02 0.14 0.01 0.00 par:pas; +étalonnés étalonné adj m p 0.01 0.00 0.01 0.00 +étalons étalon nom m p 6.20 5.41 1.07 1.01 +étalât étaler ver 6.36 63.11 0.00 0.14 sub:imp:3s; +étals étal nom m p 0.56 5.54 0.23 2.16 +étalèrent étaler ver 6.36 63.11 0.00 0.54 ind:pas:3p; +étalé étaler ver m s 6.36 63.11 0.94 6.55 par:pas; +étalée étaler ver f s 6.36 63.11 0.41 4.73 par:pas; +étalées étaler ver f p 6.36 63.11 0.14 3.18 par:pas; +étalés étaler ver m p 6.36 63.11 0.30 3.99 par:pas; +étamaient étamer ver 0.00 0.14 0.00 0.07 ind:imp:3p; +étambot étambot nom m s 0.01 0.14 0.01 0.14 +étameur étameur nom m s 0.03 0.07 0.03 0.00 +étameurs étameur nom m p 0.03 0.07 0.00 0.07 +étamine étamine nom f s 0.06 1.22 0.05 0.61 +étamines étamine nom f p 0.06 1.22 0.01 0.61 +étampes étampe nom f p 0.00 1.01 0.00 1.01 +étampures étampure nom f p 0.00 0.07 0.00 0.07 +étamé étamé adj m s 0.00 0.27 0.00 0.27 +étanchaient étancher ver 0.48 1.89 0.00 0.07 ind:imp:3p; +étanchait étancher ver 0.48 1.89 0.00 0.20 ind:imp:3s; +étanche étanche adj s 1.87 1.96 1.40 1.15 +étanchement étanchement nom m s 0.20 0.00 0.20 0.00 +étanchent étancher ver 0.48 1.89 0.00 0.07 ind:pre:3p; +étancher étancher ver 0.48 1.89 0.16 1.35 inf; +étancherait étancher ver 0.48 1.89 0.00 0.07 cnd:pre:3s; +étanches étanche adj p 1.87 1.96 0.47 0.81 +étanché étancher ver m s 0.48 1.89 0.26 0.07 par:pas; +étanchée étancher ver f s 0.48 1.89 0.02 0.00 par:pas; +étanchéité étanchéité nom f s 0.13 0.34 0.13 0.34 +étang étang nom m s 7.10 15.47 6.57 10.47 +étangs étang nom m p 7.10 15.47 0.53 5.00 +étant être aux 8074.24 6501.82 30.94 76.82 par:pre; +étançon étançon nom m s 0.00 0.20 0.00 0.20 +étape étape nom f s 15.77 23.65 12.44 14.46 +étapes étape nom f p 15.77 23.65 3.34 9.19 +état_civil état_civil nom m s 0.03 0.54 0.03 0.47 +état_major état_major nom m s 5.24 22.43 5.16 18.31 +état état nom m s 145.72 218.18 136.81 192.03 +étatique étatique adj s 0.07 0.20 0.07 0.07 +étatiques étatique adj p 0.07 0.20 0.00 0.14 +étatisation étatisation nom f s 0.03 0.00 0.03 0.00 +étatisme étatisme nom m s 0.01 0.07 0.01 0.07 +état_civil état_civil nom m p 0.03 0.54 0.00 0.07 +état_major état_major nom m p 5.24 22.43 0.09 4.12 +états état nom m p 145.72 218.18 8.91 26.15 +étau étau nom m s 0.75 4.86 0.61 4.39 +étaux étau nom m p 0.75 4.86 0.14 0.47 +étayage étayage nom m s 0.01 0.07 0.01 0.07 +étayaient étayer ver 0.72 4.05 0.00 0.20 ind:imp:3p; +étayait étayer ver 0.72 4.05 0.00 0.41 ind:imp:3s; +étayant étayer ver 0.72 4.05 0.01 0.34 par:pre; +étaye étayer ver 0.72 4.05 0.08 0.00 ind:pre:3s; +étayer étayer ver 0.72 4.05 0.47 1.15 inf; +étayez étayer ver 0.72 4.05 0.03 0.07 imp:pre:2p;ind:pre:2p; +étayé étayer ver m s 0.72 4.05 0.02 0.54 par:pas; +étayée étayer ver f s 0.72 4.05 0.02 0.47 par:pas; +étayées étayer ver f p 0.72 4.05 0.05 0.14 par:pas; +étayés étayer ver m p 0.72 4.05 0.00 0.61 par:pas; +éteignît éteindre ver 57.32 76.82 0.00 0.54 sub:imp:3s; +éteignaient éteindre ver 57.32 76.82 0.18 2.23 ind:imp:3p; +éteignais éteindre ver 57.32 76.82 0.10 0.34 ind:imp:1s;ind:imp:2s; +éteignait éteindre ver 57.32 76.82 0.22 4.46 ind:imp:3s; +éteignant éteindre ver 57.32 76.82 0.34 2.84 par:pre; +éteigne éteindre ver 57.32 76.82 1.16 0.81 sub:pre:1s;sub:pre:3s; +éteignent éteindre ver 57.32 76.82 1.36 2.64 ind:pre:3p; +éteignes éteindre ver 57.32 76.82 0.08 0.00 sub:pre:2s; +éteignez éteindre ver 57.32 76.82 3.98 0.54 imp:pre:2p;ind:pre:2p; +éteignions éteindre ver 57.32 76.82 0.00 0.07 ind:imp:1p; +éteignirent éteindre ver 57.32 76.82 0.04 1.69 ind:pas:3p; +éteignis éteindre ver 57.32 76.82 0.10 0.47 ind:pas:1s; +éteignit éteindre ver 57.32 76.82 0.39 11.15 ind:pas:3s; +éteignoir éteignoir nom m s 0.16 0.14 0.16 0.14 +éteignons éteindre ver 57.32 76.82 0.10 0.00 imp:pre:1p;ind:pre:1p; +éteindra éteindre ver 57.32 76.82 1.69 0.54 ind:fut:3s; +éteindrai éteindre ver 57.32 76.82 0.92 0.00 ind:fut:1s; +éteindraient éteindre ver 57.32 76.82 0.01 0.07 cnd:pre:3p; +éteindrais éteindre ver 57.32 76.82 0.04 0.07 cnd:pre:1s; +éteindrait éteindre ver 57.32 76.82 0.19 0.47 cnd:pre:3s; +éteindras éteindre ver 57.32 76.82 0.18 0.00 ind:fut:2s; +éteindre éteindre ver 57.32 76.82 14.48 16.62 inf; +éteindrez éteindre ver 57.32 76.82 0.14 0.14 ind:fut:2p; +éteindrons éteindre ver 57.32 76.82 0.23 0.41 ind:fut:1p; +éteindront éteindre ver 57.32 76.82 0.21 0.34 ind:fut:3p; +éteins éteindre ver 57.32 76.82 10.44 2.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +éteint éteindre ver m s 57.32 76.82 16.42 19.12 ind:pre:3s;par:pas; +éteinte éteindre ver f s 57.32 76.82 2.98 4.53 par:pas; +éteintes éteindre ver f p 57.32 76.82 0.77 1.69 par:pas; +éteints éteint adj m p 2.79 17.91 0.80 4.32 +étend étendre ver 21.90 111.89 4.98 11.28 ind:pre:3s; +étendîmes étendre ver 21.90 111.89 0.00 0.07 ind:pas:1p; +étendît étendre ver 21.90 111.89 0.00 0.34 sub:imp:3s; +étendage étendage nom m s 0.02 0.20 0.02 0.20 +étendaient étendre ver 21.90 111.89 0.14 3.45 ind:imp:3p; +étendais étendre ver 21.90 111.89 0.03 0.88 ind:imp:1s; +étendait étendre ver 21.90 111.89 1.01 13.99 ind:imp:3s; +étendant étendre ver 21.90 111.89 0.07 3.24 par:pre; +étendard étendard nom m s 0.77 4.80 0.65 2.23 +étendards étendard nom m p 0.77 4.80 0.12 2.57 +étende étendre ver 21.90 111.89 0.27 0.47 sub:pre:1s;sub:pre:3s; +étendent étendre ver 21.90 111.89 0.81 2.30 ind:pre:3p; +étendez étendre ver 21.90 111.89 0.27 0.20 imp:pre:2p;ind:pre:2p; +étendions étendre ver 21.90 111.89 0.00 0.14 ind:imp:1p; +étendirent étendre ver 21.90 111.89 0.00 1.01 ind:pas:3p; +étendis étendre ver 21.90 111.89 0.02 1.22 ind:pas:1s; +étendit étendre ver 21.90 111.89 0.28 12.09 ind:pas:3s; +étendoir étendoir nom m s 0.02 0.14 0.02 0.14 +étendons étendre ver 21.90 111.89 0.04 0.20 imp:pre:1p;ind:pre:1p; +étendra étendre ver 21.90 111.89 0.21 0.14 ind:fut:3s; +étendrai étendre ver 21.90 111.89 0.08 0.27 ind:fut:1s; +étendraient étendre ver 21.90 111.89 0.00 0.07 cnd:pre:3p; +étendrais étendre ver 21.90 111.89 0.01 0.14 cnd:pre:1s; +étendrait étendre ver 21.90 111.89 0.06 0.61 cnd:pre:3s; +étendre étendre ver 21.90 111.89 5.87 19.59 inf;; +étendrez étendre ver 21.90 111.89 0.00 0.07 ind:fut:2p; +étendrions étendre ver 21.90 111.89 0.00 0.07 cnd:pre:1p; +étendrons étendre ver 21.90 111.89 0.05 0.00 ind:fut:1p; +étendront étendre ver 21.90 111.89 0.05 0.00 ind:fut:3p; +étends étendre ver 21.90 111.89 1.42 2.23 imp:pre:2s;ind:pre:1s;ind:pre:2s; +étendu étendre ver m s 21.90 111.89 3.56 20.54 par:pas; +étendue étendue nom f s 3.96 24.46 3.52 18.85 +étendues étendue nom f p 3.96 24.46 0.45 5.61 +étendus étendre ver m p 21.90 111.89 0.51 3.38 par:pas; +éternel éternel adj m s 30.53 45.88 14.06 19.86 +éternelle éternel adj f s 30.53 45.88 12.85 18.18 +éternellement éternellement adv 8.01 9.93 8.01 9.93 +éternelles éternel adj f p 30.53 45.88 1.52 3.78 +éternels éternel adj m p 30.53 45.88 2.10 4.05 +éternisa éterniser ver 1.31 4.32 0.00 0.34 ind:pas:3s; +éternisaient éterniser ver 1.31 4.32 0.00 0.14 ind:imp:3p; +éternisais éterniser ver 1.31 4.32 0.00 0.07 ind:imp:1s; +éternisait éterniser ver 1.31 4.32 0.00 0.95 ind:imp:3s; +éternise éterniser ver 1.31 4.32 0.41 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éternisent éterniser ver 1.31 4.32 0.02 0.20 ind:pre:3p; +éterniser éterniser ver 1.31 4.32 0.65 1.35 inf; +éterniserai éterniser ver 1.31 4.32 0.02 0.00 ind:fut:1s; +éterniserait éterniser ver 1.31 4.32 0.00 0.07 cnd:pre:3s; +éterniserons éterniser ver 1.31 4.32 0.01 0.00 ind:fut:1p; +éternisez éterniser ver 1.31 4.32 0.13 0.00 imp:pre:2p;ind:pre:2p; +éternisons éterniser ver 1.31 4.32 0.00 0.07 imp:pre:1p; +éternisât éterniser ver 1.31 4.32 0.00 0.07 sub:imp:3s; +éternisé éterniser ver m s 1.31 4.32 0.04 0.20 par:pas; +éternisée éterniser ver f s 1.31 4.32 0.02 0.00 par:pas; +éternisés éterniser ver m p 1.31 4.32 0.01 0.14 par:pas; +éternité éternité nom f s 18.20 31.62 18.00 30.95 +éternités éternité nom f p 18.20 31.62 0.20 0.68 +éternua éternuer ver 3.48 4.26 0.00 1.28 ind:pas:3s; +éternuaient éternuer ver 3.48 4.26 0.00 0.07 ind:imp:3p; +éternuais éternuer ver 3.48 4.26 0.03 0.07 ind:imp:1s; +éternuait éternuer ver 3.48 4.26 0.02 0.20 ind:imp:3s; +éternuant éternuer ver 3.48 4.26 0.20 0.20 par:pre; +éternue éternuer ver 3.48 4.26 1.25 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éternuement éternuement nom m s 1.00 1.55 0.65 1.01 +éternuements éternuement nom m p 1.00 1.55 0.36 0.54 +éternuent éternuer ver 3.48 4.26 0.04 0.00 ind:pre:3p; +éternuer éternuer ver 3.48 4.26 1.02 1.62 inf; +éternuerait éternuer ver 3.48 4.26 0.00 0.07 cnd:pre:3s; +éternues éternuer ver 3.48 4.26 0.23 0.00 ind:pre:2s; +éternuez éternuer ver 3.48 4.26 0.06 0.07 imp:pre:2p;ind:pre:2p; +éternué éternuer ver m s 3.48 4.26 0.63 0.27 par:pas; +êtes être aux 8074.24 6501.82 260.22 51.89 ind:pre:2p; +éteule éteule nom f s 0.00 0.54 0.00 0.07 +éteules éteule nom f p 0.00 0.54 0.00 0.47 +éthane éthane nom m s 0.01 0.00 0.01 0.00 +éthanol éthanol nom m s 0.29 0.00 0.29 0.00 +éther éther nom m s 1.43 4.05 1.43 3.92 +éthers éther nom m p 1.43 4.05 0.00 0.14 +éthiopien éthiopien adj m s 0.59 0.47 0.31 0.07 +éthiopienne éthiopien adj f s 0.59 0.47 0.14 0.27 +éthiopiennes éthiopien adj f p 0.59 0.47 0.01 0.00 +éthiopiens éthiopien adj m p 0.59 0.47 0.14 0.14 +éthique éthique nom f s 4.56 1.08 4.55 1.01 +éthiquement éthiquement adv 0.09 0.00 0.09 0.00 +éthiques éthique adj p 1.22 0.41 0.28 0.27 +éthologie éthologie nom f s 0.11 0.07 0.11 0.07 +éthologue éthologue nom s 0.01 0.00 0.01 0.00 +éthérique éthérique adj f s 0.01 0.00 0.01 0.00 +éthéré éthéré adj m s 0.40 0.95 0.23 0.27 +éthérée éthéré adj f s 0.40 0.95 0.00 0.41 +éthérées éthéré adj f p 0.40 0.95 0.16 0.20 +éthérés éthéré adj m p 0.40 0.95 0.01 0.07 +éthyle éthyle nom m s 0.07 0.00 0.07 0.00 +éthylique éthylique adj s 0.26 0.61 0.26 0.34 +éthyliques éthylique adj p 0.26 0.61 0.00 0.27 +éthylisme éthylisme nom m s 0.10 0.20 0.10 0.20 +éthylotest éthylotest nom m s 0.05 0.00 0.05 0.00 +éthylène éthylène nom m s 0.09 0.00 0.09 0.00 +étiage étiage nom m s 0.00 0.34 0.00 0.34 +étier étier nom m s 0.00 0.34 0.00 0.07 +étiers étier nom m p 0.00 0.34 0.00 0.27 +étiez être aux 8074.24 6501.82 23.15 7.30 ind:imp:2p; +utile utile adj s 44.99 32.70 36.47 23.99 +utilement utilement adv 0.03 1.49 0.03 1.49 +utiles utile adj p 44.99 32.70 8.52 8.72 +utilisa utiliser ver 182.44 43.51 0.23 0.68 ind:pas:3s; +utilisable utilisable adj s 1.62 1.69 1.30 1.15 +utilisables utilisable adj p 1.62 1.69 0.32 0.54 +utilisai utiliser ver 182.44 43.51 0.00 0.14 ind:pas:1s; +utilisaient utiliser ver 182.44 43.51 1.68 1.96 ind:imp:3p; +utilisais utiliser ver 182.44 43.51 1.15 0.47 ind:imp:1s;ind:imp:2s; +utilisait utiliser ver 182.44 43.51 3.84 5.41 ind:imp:3s; +utilisant utiliser ver 182.44 43.51 5.73 3.72 par:pre; +utilisateur utilisateur nom m s 1.24 0.20 0.79 0.00 +utilisateurs utilisateur nom m p 1.24 0.20 0.44 0.20 +utilisation utilisation nom f s 4.67 4.26 4.47 4.12 +utilisations utilisation nom f p 4.67 4.26 0.20 0.14 +utilisatrice utilisateur nom f s 1.24 0.20 0.01 0.00 +utilise utiliser ver 182.44 43.51 31.68 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +utilisent utiliser ver 182.44 43.51 8.00 1.49 ind:pre:3p; +utiliser utiliser ver 182.44 43.51 61.97 15.61 ind:pre:2p;inf; +utilisera utiliser ver 182.44 43.51 1.62 0.14 ind:fut:3s; +utiliserai utiliser ver 182.44 43.51 1.82 0.20 ind:fut:1s; +utiliseraient utiliser ver 182.44 43.51 0.20 0.34 cnd:pre:3p; +utiliserais utiliser ver 182.44 43.51 1.17 0.14 cnd:pre:1s;cnd:pre:2s; +utiliserait utiliser ver 182.44 43.51 0.80 0.34 cnd:pre:3s; +utiliseras utiliser ver 182.44 43.51 0.58 0.00 ind:fut:2s; +utiliserez utiliser ver 182.44 43.51 0.36 0.00 ind:fut:2p; +utiliseriez utiliser ver 182.44 43.51 0.17 0.00 cnd:pre:2p; +utiliserions utiliser ver 182.44 43.51 0.03 0.00 cnd:pre:1p; +utiliserons utiliser ver 182.44 43.51 1.02 0.00 ind:fut:1p; +utiliseront utiliser ver 182.44 43.51 0.49 0.07 ind:fut:3p; +utilises utiliser ver 182.44 43.51 3.80 0.20 ind:pre:2s;sub:pre:2s; +utilisez utiliser ver 182.44 43.51 11.86 0.34 imp:pre:2p;ind:pre:2p; +utilisiez utiliser ver 182.44 43.51 0.66 0.41 ind:imp:2p;sub:pre:2p; +utilisions utiliser ver 182.44 43.51 0.37 0.14 ind:imp:1p; +utilisons utiliser ver 182.44 43.51 3.04 0.07 imp:pre:1p;ind:pre:1p; +utilisât utiliser ver 182.44 43.51 0.00 0.07 sub:imp:3s; +utilisèrent utiliser ver 182.44 43.51 0.06 0.07 ind:pas:3p; +utilisé utiliser ver m s 182.44 43.51 30.65 4.19 par:pas; +utilisée utiliser ver f s 182.44 43.51 5.59 1.62 par:pas; +utilisées utiliser ver f p 182.44 43.51 1.43 0.88 par:pas; +utilisés utiliser ver m p 182.44 43.51 2.44 1.89 par:pas; +utilitaire utilitaire nom s 0.16 0.34 0.15 0.14 +utilitaires utilitaire adj p 0.12 1.35 0.01 0.27 +utilitarisme utilitarisme nom m s 0.00 0.07 0.00 0.07 +utilité utilité nom f s 4.28 7.09 4.15 6.49 +utilités utilité nom f p 4.28 7.09 0.13 0.61 +étincela étinceler ver 1.29 10.81 0.00 0.41 ind:pas:3s; +étincelaient étinceler ver 1.29 10.81 0.05 2.36 ind:imp:3p; +étincelait étinceler ver 1.29 10.81 0.02 3.11 ind:imp:3s; +étincelant étincelant adj m s 1.29 13.18 0.34 3.24 +étincelante étincelant adj f s 1.29 13.18 0.58 4.53 +étincelantes étincelant adj f p 1.29 13.18 0.25 2.70 +étincelants étincelant adj m p 1.29 13.18 0.12 2.70 +étinceler étinceler ver 1.29 10.81 0.07 0.88 inf; +étincelle étincelle nom f s 6.30 12.97 3.59 5.07 +étincellement étincellement nom m s 0.14 0.81 0.14 0.74 +étincellements étincellement nom m p 0.14 0.81 0.00 0.07 +étincellent étinceler ver 1.29 10.81 0.16 0.61 ind:pre:3p; +étincellera étinceler ver 1.29 10.81 0.03 0.00 ind:fut:3s; +étincelles étincelle nom f p 6.30 12.97 2.71 7.91 +étincelèrent étinceler ver 1.29 10.81 0.00 0.34 ind:pas:3p; +étincelé étinceler ver m s 1.29 10.81 0.00 0.20 par:pas; +étiolaient étioler ver 0.45 2.09 0.00 0.07 ind:imp:3p; +étiolais étioler ver 0.45 2.09 0.00 0.07 ind:imp:1s; +étiolait étioler ver 0.45 2.09 0.00 0.14 ind:imp:3s; +étiolant étioler ver 0.45 2.09 0.00 0.07 par:pre; +étiole étioler ver 0.45 2.09 0.16 0.41 ind:pre:1s;ind:pre:3s; +étiolement étiolement nom m s 0.00 0.07 0.00 0.07 +étiolent étioler ver 0.45 2.09 0.01 0.54 ind:pre:3p; +étioler étioler ver 0.45 2.09 0.26 0.54 inf; +étiologie étiologie nom f s 0.03 0.00 0.03 0.00 +étiologique étiologique adj m s 0.02 0.07 0.01 0.00 +étiologiques étiologique adj p 0.02 0.07 0.01 0.07 +étiolé étioler ver m s 0.45 2.09 0.00 0.07 par:pas; +étiolée étioler ver f s 0.45 2.09 0.03 0.14 par:pas; +étiolées étioler ver f p 0.45 2.09 0.00 0.07 par:pas; +étions être aux 8074.24 6501.82 9.63 47.77 ind:imp:1p; +étique étique adj s 0.11 0.68 0.09 0.34 +étiques étique adj p 0.11 0.68 0.02 0.34 +étiquetage étiquetage nom m s 0.12 0.00 0.12 0.00 +étiquetaient étiqueter ver 1.13 2.03 0.00 0.07 ind:imp:3p; +étiqueter étiqueter ver 1.13 2.03 0.35 0.27 inf; +étiqueteuse étiqueteur nom f s 0.04 0.00 0.04 0.00 +étiquetez étiqueter ver 1.13 2.03 0.09 0.00 imp:pre:2p;ind:pre:2p; +étiquette étiquette nom f s 7.38 15.74 5.44 8.65 +étiquettent étiqueter ver 1.13 2.03 0.01 0.07 ind:pre:3p; +étiquettes étiquette nom f p 7.38 15.74 1.94 7.09 +étiqueté étiqueter ver m s 1.13 2.03 0.31 0.47 par:pas; +étiquetée étiqueter ver f s 1.13 2.03 0.09 0.14 par:pas; +étiquetées étiqueter ver f p 1.13 2.03 0.05 0.34 par:pas; +étiquetés étiqueter ver m p 1.13 2.03 0.15 0.54 par:pas; +étira étirer ver 3.28 40.27 0.00 7.09 ind:pas:3s; +étirable étirable adj m s 0.01 0.00 0.01 0.00 +étirage étirage nom m s 0.14 0.00 0.14 0.00 +étirai étirer ver 3.28 40.27 0.00 0.34 ind:pas:1s; +étiraient étirer ver 3.28 40.27 0.02 2.50 ind:imp:3p; +étirais étirer ver 3.28 40.27 0.11 0.27 ind:imp:1s;ind:imp:2s; +étirait étirer ver 3.28 40.27 0.06 5.07 ind:imp:3s; +étirant étirer ver 3.28 40.27 0.06 4.39 par:pre; +étire étirer ver 3.28 40.27 0.99 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +étirement étirement nom m s 0.33 1.01 0.09 0.54 +étirements étirement nom m p 0.33 1.01 0.24 0.47 +étirent étirer ver 3.28 40.27 0.35 1.96 ind:pre:3p; +étirer étirer ver 3.28 40.27 0.93 3.11 inf; +étirerait étirer ver 3.28 40.27 0.02 0.00 cnd:pre:3s; +étirez étirer ver 3.28 40.27 0.09 0.00 imp:pre:2p;ind:pre:2p; +étirèrent étirer ver 3.28 40.27 0.01 0.54 ind:pas:3p; +étiré étirer ver m s 3.28 40.27 0.29 2.03 par:pas; +étirée étirer ver f s 3.28 40.27 0.06 1.49 par:pas; +étirées étirer ver f p 3.28 40.27 0.12 1.69 par:pas; +étirés étirer ver m p 3.28 40.27 0.15 1.76 par:pas; +étisie étisie nom f s 0.00 0.07 0.00 0.07 +étoffaient étoffer ver 0.33 0.81 0.00 0.07 ind:imp:3p; +étoffait étoffer ver 0.33 0.81 0.00 0.14 ind:imp:3s; +étoffe étoffe nom f s 3.10 28.24 2.90 19.26 +étoffer étoffer ver 0.33 0.81 0.14 0.14 inf; +étoffes étoffe nom f p 3.10 28.24 0.20 8.99 +étoffé étoffer ver m s 0.33 0.81 0.11 0.27 par:pas; +étoffée étoffer ver f s 0.33 0.81 0.04 0.07 par:pas; +étoffées étoffé adj f p 0.07 0.34 0.00 0.07 +étoffés étoffer ver m p 0.33 0.81 0.00 0.07 par:pas; +étoila étoiler ver 0.95 3.78 0.00 0.07 ind:pas:3s; +étoilaient étoiler ver 0.95 3.78 0.00 0.20 ind:imp:3p; +étoilait étoiler ver 0.95 3.78 0.01 0.47 ind:imp:3s; +étoile étoile nom f s 54.63 81.82 21.65 29.80 +étoilent étoiler ver 0.95 3.78 0.00 0.07 ind:pre:3p; +étoiles étoile nom f p 54.63 81.82 32.98 52.03 +étoilé étoilé adj m s 1.35 3.18 0.59 1.28 +étoilée étoilé adj f s 1.35 3.18 0.71 0.88 +étoilées étoilé adj f p 1.35 3.18 0.03 0.68 +étoilés étoilé adj m p 1.35 3.18 0.02 0.34 +étole étole nom f s 0.29 2.09 0.29 1.69 +étoles étole nom f p 0.29 2.09 0.00 0.41 +étonna étonner ver 53.63 116.55 0.23 14.19 ind:pas:3s; +étonnai étonner ver 53.63 116.55 0.00 1.49 ind:pas:1s; +étonnaient étonner ver 53.63 116.55 0.02 2.64 ind:imp:3p; +étonnais étonner ver 53.63 116.55 0.23 3.58 ind:imp:1s;ind:imp:2s; +étonnait étonner ver 53.63 116.55 0.91 15.47 ind:imp:3s; +étonnamment étonnamment adv 1.01 3.99 1.01 3.99 +étonnant étonnant adj m s 19.85 30.00 15.52 16.15 +étonnante étonnant adj f s 19.85 30.00 2.95 10.47 +étonnantes étonnant adj f p 19.85 30.00 0.72 1.89 +étonnants étonnant adj m p 19.85 30.00 0.66 1.49 +étonne étonner ver 53.63 116.55 21.18 21.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +étonnement étonnement nom m s 1.28 31.96 1.28 30.74 +étonnements étonnement nom m p 1.28 31.96 0.00 1.22 +étonnent étonner ver 53.63 116.55 0.49 1.96 ind:pre:3p; +étonner étonner ver 53.63 116.55 3.40 12.23 inf; +étonnera étonner ver 53.63 116.55 0.62 1.08 ind:fut:3s; +étonnerai étonner ver 53.63 116.55 0.18 0.07 ind:fut:1s; +étonneraient étonner ver 53.63 116.55 0.03 0.41 cnd:pre:3p; +étonnerais étonner ver 53.63 116.55 0.02 0.14 cnd:pre:1s; +étonnerait étonner ver 53.63 116.55 10.62 7.84 cnd:pre:3s; +étonneras étonner ver 53.63 116.55 0.10 0.14 ind:fut:2s; +étonnerez étonner ver 53.63 116.55 0.06 0.07 ind:fut:2p; +étonneriez étonner ver 53.63 116.55 0.00 0.07 cnd:pre:2p; +étonnerons étonner ver 53.63 116.55 0.00 0.07 ind:fut:1p; +étonneront étonner ver 53.63 116.55 0.04 0.27 ind:fut:3p; +étonnes étonner ver 53.63 116.55 4.30 1.15 ind:pre:2s; +étonnez étonner ver 53.63 116.55 1.46 1.62 imp:pre:2p;ind:pre:2p; +étonniez étonner ver 53.63 116.55 0.02 0.07 ind:imp:2p; +étonnions étonner ver 53.63 116.55 0.00 0.27 ind:imp:1p; +étonnâmes étonner ver 53.63 116.55 0.00 0.14 ind:pas:1p; +étonnons étonner ver 53.63 116.55 0.01 0.20 imp:pre:1p;ind:pre:1p; +étonnât étonner ver 53.63 116.55 0.00 0.07 sub:imp:3s; +étonnèrent étonner ver 53.63 116.55 0.00 1.15 ind:pas:3p; +étonné étonner ver m s 53.63 116.55 3.21 15.07 par:pas; +étonnée étonner ver f s 53.63 116.55 2.39 6.76 par:pas; +étonnées étonné adj f p 3.37 23.31 0.10 0.61 +étonnés étonner ver m p 53.63 116.55 0.52 2.03 par:pas; +utopie utopie nom f s 1.48 1.28 1.16 0.88 +utopies utopie nom f p 1.48 1.28 0.32 0.41 +utopique utopique adj s 0.49 0.61 0.33 0.41 +utopiques utopique adj f p 0.49 0.61 0.16 0.20 +utopiste utopiste nom s 0.29 0.07 0.11 0.07 +utopistes utopiste nom p 0.29 0.07 0.18 0.00 +étouffa étouffer ver 28.50 59.46 0.11 2.50 ind:pas:3s; +étouffai étouffer ver 28.50 59.46 0.00 0.14 ind:pas:1s; +étouffaient étouffer ver 28.50 59.46 0.03 2.84 ind:imp:3p; +étouffais étouffer ver 28.50 59.46 0.32 1.96 ind:imp:1s;ind:imp:2s; +étouffait étouffer ver 28.50 59.46 0.34 8.92 ind:imp:3s; +étouffant étouffant adj m s 1.36 7.97 0.83 2.70 +étouffante étouffant adj f s 1.36 7.97 0.51 4.19 +étouffantes étouffant adj f p 1.36 7.97 0.01 0.54 +étouffants étouffant adj m p 1.36 7.97 0.01 0.54 +étouffassent étouffer ver 28.50 59.46 0.00 0.07 sub:imp:3p; +étouffe_chrétien étouffe_chrétien nom m 0.01 0.00 0.01 0.00 +étouffe étouffer ver 28.50 59.46 11.88 8.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +étouffement étouffement nom m s 0.64 3.92 0.64 3.45 +étouffements étouffement nom m p 0.64 3.92 0.00 0.47 +étouffent étouffer ver 28.50 59.46 0.98 1.49 ind:pre:3p; +étouffer étouffer ver 28.50 59.46 7.45 12.30 inf;; +étouffera étouffer ver 28.50 59.46 0.22 0.20 ind:fut:3s; +étoufferai étouffer ver 28.50 59.46 0.26 0.00 ind:fut:1s; +étoufferaient étouffer ver 28.50 59.46 0.10 0.07 cnd:pre:3p; +étoufferais étouffer ver 28.50 59.46 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +étoufferait étouffer ver 28.50 59.46 0.29 0.47 cnd:pre:3s; +étoufferez étouffer ver 28.50 59.46 0.04 0.00 ind:fut:2p; +étoufferiez étouffer ver 28.50 59.46 0.01 0.00 cnd:pre:2p; +étoufferons étouffer ver 28.50 59.46 0.03 0.07 ind:fut:1p; +étoufferont étouffer ver 28.50 59.46 0.03 0.07 ind:fut:3p; +étouffes étouffer ver 28.50 59.46 1.32 0.95 ind:pre:2s; +étouffeur étouffeur nom m s 0.03 0.07 0.03 0.00 +étouffeuses étouffeur nom f p 0.03 0.07 0.00 0.07 +étouffez étouffer ver 28.50 59.46 0.32 0.07 imp:pre:2p;ind:pre:2p; +étouffiez étouffer ver 28.50 59.46 0.02 0.00 ind:imp:2p; +étouffions étouffer ver 28.50 59.46 0.00 0.14 ind:imp:1p; +étouffoir étouffoir nom m s 0.00 0.20 0.00 0.14 +étouffoirs étouffoir nom m p 0.00 0.20 0.00 0.07 +étouffons étouffer ver 28.50 59.46 0.02 0.07 imp:pre:1p;ind:pre:1p; +étouffât étouffer ver 28.50 59.46 0.00 0.34 sub:imp:3s; +étouffèrent étouffer ver 28.50 59.46 0.20 0.34 ind:pas:3p; +étouffé étouffer ver m s 28.50 59.46 2.48 5.20 par:pas; +étouffée étouffer ver f s 28.50 59.46 1.36 5.27 par:pas; +étouffées étouffer ver f p 28.50 59.46 0.17 1.82 par:pas; +étouffés étouffé adj m p 0.74 8.11 0.46 3.78 +étoupe étoupe nom f s 0.07 1.28 0.07 1.28 +étourderie étourderie nom f s 0.30 1.69 0.30 1.49 +étourderies étourderie nom f p 0.30 1.69 0.00 0.20 +étourdi étourdi adj m s 1.00 3.58 0.56 2.30 +étourdie étourdi adj f s 1.00 3.58 0.44 0.88 +étourdies étourdi nom f p 0.73 2.16 0.01 0.00 +étourdiment étourdiment adv 0.01 0.95 0.01 0.95 +étourdir étourdir ver 1.13 7.64 0.17 1.22 inf; +étourdira étourdir ver 1.13 7.64 0.01 0.00 ind:fut:3s; +étourdirait étourdir ver 1.13 7.64 0.00 0.07 cnd:pre:3s; +étourdirent étourdir ver 1.13 7.64 0.00 0.07 ind:pas:3p; +étourdis étourdir ver m p 1.13 7.64 0.06 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +étourdissaient étourdir ver 1.13 7.64 0.00 0.41 ind:imp:3p; +étourdissait étourdir ver 1.13 7.64 0.00 1.22 ind:imp:3s; +étourdissant étourdissant adj m s 0.40 2.03 0.23 0.88 +étourdissante étourdissant adj f s 0.40 2.03 0.14 0.95 +étourdissantes étourdissant adj f p 0.40 2.03 0.03 0.14 +étourdissants étourdissant adj m p 0.40 2.03 0.00 0.07 +étourdissement étourdissement nom m s 0.81 1.82 0.62 1.42 +étourdissements étourdissement nom m p 0.81 1.82 0.20 0.41 +étourdissent étourdir ver 1.13 7.64 0.03 0.14 ind:pre:3p; +étourdissez étourdir ver 1.13 7.64 0.11 0.00 ind:pre:2p; +étourdissons étourdir ver 1.13 7.64 0.00 0.07 ind:pre:1p; +étourdit étourdir ver 1.13 7.64 0.20 0.88 ind:pre:3s;ind:pas:3s; +étourneau étourneau nom m s 0.41 1.22 0.33 0.27 +étourneaux étourneau nom m p 0.41 1.22 0.09 0.95 +étrange étrange adj s 85.61 103.58 70.99 83.65 +étrangement étrangement adv 3.85 14.86 3.85 14.86 +étranger étranger nom m s 58.84 66.62 35.72 33.85 +étrangers étranger nom m p 58.84 66.62 19.67 23.85 +étranges étrange adj p 85.61 103.58 14.61 19.93 +étrangeté étrangeté nom f s 0.39 5.68 0.35 4.93 +étrangetés étrangeté nom f p 0.39 5.68 0.04 0.74 +étrangla étrangler ver 18.53 22.09 0.00 2.30 ind:pas:3s; +étranglai étrangler ver 18.53 22.09 0.00 0.20 ind:pas:1s; +étranglaient étrangler ver 18.53 22.09 0.04 0.41 ind:imp:3p; +étranglais étrangler ver 18.53 22.09 0.04 0.14 ind:imp:1s;ind:imp:2s; +étranglait étrangler ver 18.53 22.09 0.21 2.70 ind:imp:3s; +étranglant étrangler ver 18.53 22.09 0.10 1.15 par:pre; +étrangle étrangler ver 18.53 22.09 4.04 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +étranglement étranglement nom m s 0.62 1.42 0.61 1.08 +étranglements étranglement nom m p 0.62 1.42 0.01 0.34 +étranglent étrangler ver 18.53 22.09 0.36 0.27 ind:pre:3p; +étrangler étrangler ver 18.53 22.09 6.87 6.49 ind:pre:2p;inf; +étranglera étrangler ver 18.53 22.09 0.16 0.14 ind:fut:3s; +étranglerai étrangler ver 18.53 22.09 0.16 0.20 ind:fut:1s; +étrangleraient étrangler ver 18.53 22.09 0.01 0.07 cnd:pre:3p; +étranglerais étrangler ver 18.53 22.09 0.46 0.00 cnd:pre:1s;cnd:pre:2s; +étranglerait étrangler ver 18.53 22.09 0.15 0.00 cnd:pre:3s; +étrangleront étrangler ver 18.53 22.09 0.17 0.00 ind:fut:3p; +étrangles étrangler ver 18.53 22.09 0.36 0.07 ind:pre:2s; +étrangleur étrangleur nom m s 0.66 0.88 0.62 0.74 +étrangleurs étrangleur nom m p 0.66 0.88 0.03 0.14 +étrangleuse étrangleur nom f s 0.66 0.88 0.01 0.00 +étrangleuses étrangleur adj f p 0.04 0.27 0.00 0.07 +étranglez étrangler ver 18.53 22.09 0.11 0.07 imp:pre:2p;ind:pre:2p; +étranglât étrangler ver 18.53 22.09 0.00 0.07 sub:imp:3s; +étranglé étrangler ver m s 18.53 22.09 3.44 2.23 par:pas; +étranglée étrangler ver f s 18.53 22.09 1.50 1.96 par:pas; +étranglées étrangler ver f p 18.53 22.09 0.14 0.14 par:pas; +étranglés étrangler ver m p 18.53 22.09 0.22 0.14 par:pas; +étrangère étranger adj f s 31.39 75.00 7.25 20.47 +étrangères étranger adj f p 31.39 75.00 4.46 16.82 +étrangéité étrangéité nom f s 0.00 0.07 0.00 0.07 +étrave étrave nom f s 0.07 3.31 0.07 3.11 +étraves étrave nom f p 0.07 3.31 0.00 0.20 +être_là être_là nom m 0.14 0.00 0.14 0.00 +être être aux 8074.24 6501.82 725.09 685.47 inf; +étreignîmes étreindre ver 3.05 16.96 0.00 0.07 ind:pas:1p; +étreignaient étreindre ver 3.05 16.96 0.11 0.81 ind:imp:3p; +étreignais étreindre ver 3.05 16.96 0.02 0.07 ind:imp:1s; +étreignait étreindre ver 3.05 16.96 0.14 3.45 ind:imp:3s; +étreignant étreindre ver 3.05 16.96 0.26 1.22 par:pre; +étreigne étreindre ver 3.05 16.96 0.14 0.07 sub:pre:1s;sub:pre:3s; +étreignent étreindre ver 3.05 16.96 0.06 1.08 ind:pre:3p;sub:pre:3p; +étreignions étreindre ver 3.05 16.96 0.00 0.27 ind:imp:1p; +étreignirent étreindre ver 3.05 16.96 0.00 0.41 ind:pas:3p; +étreignit étreindre ver 3.05 16.96 0.16 1.76 ind:pas:3s; +étreignons étreindre ver 3.05 16.96 0.01 0.07 imp:pre:1p;ind:pre:1p; +étreindrait étreindre ver 3.05 16.96 0.00 0.07 cnd:pre:3s; +étreindre étreindre ver 3.05 16.96 0.69 2.97 inf;; +étreindrons étreindre ver 3.05 16.96 0.00 0.07 ind:fut:1p; +étreindront étreindre ver 3.05 16.96 0.14 0.07 ind:fut:3p; +étreins étreindre ver 3.05 16.96 0.30 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +étreint étreindre ver m s 3.05 16.96 0.95 3.38 ind:pre:3s;par:pas; +étreinte étreinte nom f s 2.75 16.42 2.06 12.36 +étreintes étreinte nom f p 2.75 16.42 0.70 4.05 +étreints étreindre ver m p 3.05 16.96 0.01 0.68 par:pas; +étrenna étrenner ver 0.37 1.28 0.00 0.07 ind:pas:3s; +étrennait étrenner ver 0.37 1.28 0.01 0.20 ind:imp:3s; +étrennant étrenner ver 0.37 1.28 0.00 0.07 par:pre; +étrenne étrenner ver 0.37 1.28 0.14 0.07 ind:pre:3s; +étrennent étrenner ver 0.37 1.28 0.00 0.07 ind:pre:3p; +étrenner étrenner ver 0.37 1.28 0.07 0.47 inf; +étrennera étrenner ver 0.37 1.28 0.01 0.07 ind:fut:3s; +étrennerais étrenner ver 0.37 1.28 0.00 0.07 cnd:pre:1s; +étrennes étrenne nom f p 0.17 1.22 0.17 1.08 +étrenné étrenner ver m s 0.37 1.28 0.02 0.07 par:pas; +étrennée étrenner ver f s 0.37 1.28 0.01 0.14 par:pas; +êtres être nom m p 100.69 122.57 21.91 45.20 +étrier étrier nom m s 0.83 5.00 0.33 2.43 +étriers étrier nom m p 0.83 5.00 0.50 2.57 +étrilla étriller ver 0.11 1.15 0.00 0.14 ind:pas:3s; +étrillage étrillage nom m s 0.00 0.14 0.00 0.14 +étrillaient étriller ver 0.11 1.15 0.00 0.07 ind:imp:3p; +étrillait étriller ver 0.11 1.15 0.00 0.07 ind:imp:3s; +étrille étrille nom f s 0.01 0.41 0.01 0.20 +étriller étriller ver 0.11 1.15 0.06 0.41 inf; +étrillerez étriller ver 0.11 1.15 0.01 0.00 ind:fut:2p; +étrilles étrille nom f p 0.01 0.41 0.00 0.20 +étrillé étriller ver m s 0.11 1.15 0.02 0.27 par:pas; +étrillée étriller ver f s 0.11 1.15 0.01 0.07 par:pas; +étrillés étriller ver m p 0.11 1.15 0.00 0.14 par:pas; +étripage étripage nom m s 0.01 0.07 0.01 0.00 +étripages étripage nom m p 0.01 0.07 0.00 0.07 +étripaient étriper ver 3.07 1.76 0.00 0.07 ind:imp:3p; +étripe étriper ver 3.07 1.76 1.30 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +étripent étriper ver 3.07 1.76 0.06 0.07 ind:pre:3p; +étriper étriper ver 3.07 1.76 1.35 0.74 inf; +étripera étriper ver 3.07 1.76 0.03 0.00 ind:fut:3s; +étriperai étriper ver 3.07 1.76 0.03 0.00 ind:fut:1s; +étriperaient étriper ver 3.07 1.76 0.01 0.00 cnd:pre:3p; +étriperais étriper ver 3.07 1.76 0.01 0.00 cnd:pre:1s; +étripèrent étriper ver 3.07 1.76 0.00 0.07 ind:pas:3p; +étripé étriper ver m s 3.07 1.76 0.19 0.14 par:pas; +étripée étriper ver f s 3.07 1.76 0.01 0.07 par:pas; +étripés étriper ver m p 3.07 1.76 0.06 0.14 par:pas; +étriqua étriquer ver 0.19 1.15 0.00 0.07 ind:pas:3s; +étriquaient étriquer ver 0.19 1.15 0.00 0.07 ind:imp:3p; +étriquant étriquer ver 0.19 1.15 0.00 0.07 par:pre; +étriqué étriqué adj m s 0.23 3.78 0.13 1.96 +étriquée étriquer ver f s 0.19 1.15 0.16 0.20 par:pas; +étriquées étriqué adj f p 0.23 3.78 0.01 0.41 +étriqués étriqué adj m p 0.23 3.78 0.07 0.54 +étrivière étrivière nom f s 0.00 0.41 0.00 0.07 +étrivières étrivière nom f p 0.00 0.41 0.00 0.34 +étroit étroit adj m s 10.79 75.81 5.94 28.18 +étroite étroit adj f s 10.79 75.81 2.91 29.59 +étroitement étroitement adv 1.51 10.81 1.51 10.81 +étroites étroit adj f p 10.79 75.81 1.06 10.88 +étroitesse étroitesse nom f s 0.36 2.36 0.36 2.36 +étroits étroit adj m p 10.79 75.81 0.88 7.16 +étron étron nom m s 0.75 2.43 0.44 1.55 +étrons étron nom m p 0.75 2.43 0.31 0.88 +étréci étrécir ver m s 0.00 0.27 0.00 0.07 par:pas; +étrécie étrécir ver f s 0.00 0.27 0.00 0.07 par:pas; +étrécir étrécir ver 0.00 0.27 0.00 0.07 inf; +étrécissement étrécissement nom m s 0.00 0.07 0.00 0.07 +étrécit étrécir ver 0.00 0.27 0.00 0.07 ind:pas:3s; +étrésillon étrésillon nom m s 0.00 0.07 0.00 0.07 +étrusque étrusque adj m s 0.33 0.54 0.14 0.14 +étrusques étrusque adj p 0.33 0.54 0.19 0.41 +été être aux m s 8074.24 6501.82 24.71 40.20 par:pas; +étude étude nom f s 44.22 63.04 11.35 19.66 +études étude nom f p 44.22 63.04 32.87 43.38 +étudia étudier ver 70.77 30.41 0.21 1.15 ind:pas:3s; +étudiai étudier ver 70.77 30.41 0.02 0.34 ind:pas:1s; +étudiaient étudier ver 70.77 30.41 0.12 0.47 ind:imp:3p; +étudiais étudier ver 70.77 30.41 1.23 0.81 ind:imp:1s;ind:imp:2s; +étudiait étudier ver 70.77 30.41 1.86 2.50 ind:imp:3s; +étudiant étudiant nom m s 38.07 38.45 10.12 14.05 +étudiante étudiant nom f s 38.07 38.45 4.49 3.72 +étudiantes étudiant nom f p 38.07 38.45 2.24 1.89 +étudiants étudiant nom m p 38.07 38.45 21.22 18.78 +étudie étudier ver 70.77 30.41 11.42 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +étudient étudier ver 70.77 30.41 1.93 0.20 ind:pre:3p; +étudier étudier ver 70.77 30.41 26.86 11.42 inf; +étudiera étudier ver 70.77 30.41 0.51 0.34 ind:fut:3s; +étudierai étudier ver 70.77 30.41 0.62 0.20 ind:fut:1s; +étudierais étudier ver 70.77 30.41 0.14 0.14 cnd:pre:1s;cnd:pre:2s; +étudierait étudier ver 70.77 30.41 0.02 0.07 cnd:pre:3s; +étudieras étudier ver 70.77 30.41 0.39 0.00 ind:fut:2s; +étudierez étudier ver 70.77 30.41 0.13 0.07 ind:fut:2p; +étudierions étudier ver 70.77 30.41 0.00 0.07 cnd:pre:1p; +étudierons étudier ver 70.77 30.41 0.16 0.14 ind:fut:1p; +étudies étudier ver 70.77 30.41 2.58 0.20 ind:pre:2s; +étudiez étudier ver 70.77 30.41 2.12 0.14 imp:pre:2p;ind:pre:2p; +étudions étudier ver 70.77 30.41 0.77 0.14 imp:pre:1p;ind:pre:1p; +étudièrent étudier ver 70.77 30.41 0.01 0.20 ind:pas:3p; +étudié étudier ver m s 70.77 30.41 17.23 6.55 par:pas; +étudiée étudier ver f s 70.77 30.41 0.39 0.61 par:pas; +étudiées étudier ver f p 70.77 30.41 0.23 0.61 par:pas; +étudiés étudier ver m p 70.77 30.41 0.25 0.74 par:pas; +étui étui nom m s 2.54 7.97 2.37 7.09 +étuis étui nom m p 2.54 7.97 0.17 0.88 +utérin utérin adj m s 0.18 0.81 0.06 0.34 +utérine utérin adj f s 0.18 0.81 0.09 0.34 +utérines utérin adj f p 0.18 0.81 0.02 0.14 +utérins utérin adj m p 0.18 0.81 0.01 0.00 +utérus utérus nom m 2.88 0.68 2.88 0.68 +étés été nom m p 67.27 125.47 5.47 3.92 +étêta étêter ver 0.00 0.34 0.00 0.07 ind:pas:3s; +étêtait étêter ver 0.00 0.34 0.00 0.07 ind:imp:3s; +étêté étêter ver m s 0.00 0.34 0.00 0.07 par:pas; +étêtés étêter ver m p 0.00 0.34 0.00 0.14 par:pas; +étuve étuve nom f s 0.43 3.78 0.43 3.45 +étuver étuver ver 0.01 0.34 0.00 0.07 inf; +étuves étuve nom f p 0.43 3.78 0.00 0.34 +étuveuse étuveur nom f s 0.00 0.07 0.00 0.07 +étuvé étuver ver m s 0.01 0.34 0.01 0.27 par:pas; +étuvée étuvée nom f s 0.05 0.14 0.05 0.14 +étymologie étymologie nom f s 0.09 1.08 0.09 0.95 +étymologies étymologie nom f p 0.09 1.08 0.00 0.14 +étymologique étymologique adj s 0.00 0.54 0.00 0.47 +étymologiquement étymologiquement adv 0.01 0.14 0.01 0.14 +étymologiques étymologique adj p 0.00 0.54 0.00 0.07 +étymologiste étymologiste nom s 0.00 0.14 0.00 0.14 +évacua évacuer ver 17.61 9.80 0.00 0.14 ind:pas:3s; +évacuai évacuer ver 17.61 9.80 0.00 0.07 ind:pas:1s; +évacuaient évacuer ver 17.61 9.80 0.02 0.20 ind:imp:3p; +évacuais évacuer ver 17.61 9.80 0.00 0.07 ind:imp:1s; +évacuait évacuer ver 17.61 9.80 0.04 0.61 ind:imp:3s; +évacuant évacuer ver 17.61 9.80 0.04 0.07 par:pre; +évacuation évacuation nom f s 6.30 3.38 6.08 3.24 +évacuations évacuation nom f p 6.30 3.38 0.22 0.14 +évacue évacuer ver 17.61 9.80 1.97 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évacuent évacuer ver 17.61 9.80 0.33 0.27 ind:pre:3p; +évacuer évacuer ver 17.61 9.80 9.66 4.05 inf; +évacuera évacuer ver 17.61 9.80 0.08 0.00 ind:fut:3s; +évacuerai évacuer ver 17.61 9.80 0.00 0.07 ind:fut:1s; +évacueraient évacuer ver 17.61 9.80 0.00 0.20 cnd:pre:3p; +évacuerais évacuer ver 17.61 9.80 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +évacuerait évacuer ver 17.61 9.80 0.01 0.14 cnd:pre:3s; +évacuerez évacuer ver 17.61 9.80 0.04 0.00 ind:fut:2p; +évacuerions évacuer ver 17.61 9.80 0.00 0.07 cnd:pre:1p; +évacuerons évacuer ver 17.61 9.80 0.01 0.00 ind:fut:1p; +évacueront évacuer ver 17.61 9.80 0.17 0.00 ind:fut:3p; +évacuez évacuer ver 17.61 9.80 1.10 0.14 imp:pre:2p;ind:pre:2p; +évacuons évacuer ver 17.61 9.80 0.39 0.00 imp:pre:1p;ind:pre:1p; +évacuèrent évacuer ver 17.61 9.80 0.01 0.07 ind:pas:3p; +évacué évacuer ver m s 17.61 9.80 2.02 1.69 par:pas; +évacuée évacuer ver f s 17.61 9.80 0.47 0.20 par:pas; +évacuées évacuer ver f p 17.61 9.80 0.16 0.14 par:pas; +évacués évacuer ver m p 17.61 9.80 1.05 0.74 par:pas; +évada évader ver 12.80 13.38 0.02 0.07 ind:pas:3s; +évadaient évader ver 12.80 13.38 0.00 0.07 ind:imp:3p; +évadais évader ver 12.80 13.38 0.04 0.27 ind:imp:1s;ind:imp:2s; +évadait évader ver 12.80 13.38 0.02 0.74 ind:imp:3s; +évadant évader ver 12.80 13.38 0.04 0.27 par:pre; +évade évader ver 12.80 13.38 1.35 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +évadent évader ver 12.80 13.38 0.26 0.07 ind:pre:3p; +évader évader ver 12.80 13.38 5.95 6.69 inf; +évadera évader ver 12.80 13.38 0.19 0.00 ind:fut:3s; +évaderai évader ver 12.80 13.38 0.05 0.00 ind:fut:1s; +évaderaient évader ver 12.80 13.38 0.00 0.14 cnd:pre:3p; +évaderais évader ver 12.80 13.38 0.03 0.20 cnd:pre:1s;cnd:pre:2s; +évaderait évader ver 12.80 13.38 0.03 0.27 cnd:pre:3s; +évaderas évader ver 12.80 13.38 0.01 0.07 ind:fut:2s; +évaderont évader ver 12.80 13.38 0.13 0.00 ind:fut:3p; +évades évader ver 12.80 13.38 0.10 0.07 ind:pre:2s; +évadez évader ver 12.80 13.38 0.04 0.00 imp:pre:2p;ind:pre:2p; +évadèrent évader ver 12.80 13.38 0.17 0.07 ind:pas:3p; +évadé évader ver m s 12.80 13.38 3.79 2.30 par:pas; +évadée évader ver f s 12.80 13.38 0.17 0.54 par:pas; +évadées évadé nom f p 1.76 1.08 0.02 0.07 +évadés évadé nom m p 1.76 1.08 0.98 0.61 +évalua évaluer ver 5.75 9.73 0.00 1.08 ind:pas:3s; +évaluables évaluable adj p 0.00 0.07 0.00 0.07 +évaluaient évaluer ver 5.75 9.73 0.02 0.14 ind:imp:3p; +évaluais évaluer ver 5.75 9.73 0.04 0.07 ind:imp:1s; +évaluait évaluer ver 5.75 9.73 0.07 1.28 ind:imp:3s; +évaluant évaluer ver 5.75 9.73 0.09 0.74 par:pre; +évaluateur évaluateur nom m s 0.00 0.14 0.00 0.14 +évaluation évaluation nom f s 3.91 1.35 3.37 1.28 +évaluations évaluation nom f p 3.91 1.35 0.54 0.07 +évalue évaluer ver 5.75 9.73 0.75 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évaluent évaluer ver 5.75 9.73 0.07 0.14 ind:pre:3p; +évaluer évaluer ver 5.75 9.73 2.75 3.92 inf; +évaluerez évaluer ver 5.75 9.73 0.00 0.07 ind:fut:2p; +évalueront évaluer ver 5.75 9.73 0.02 0.00 ind:fut:3p; +évalues évaluer ver 5.75 9.73 0.14 0.07 ind:pre:2s; +évaluez évaluer ver 5.75 9.73 0.25 0.27 imp:pre:2p;ind:pre:2p; +évaluons évaluer ver 5.75 9.73 0.23 0.00 imp:pre:1p;ind:pre:1p; +évaluât évaluer ver 5.75 9.73 0.00 0.07 sub:imp:3s; +évaluèrent évaluer ver 5.75 9.73 0.01 0.07 ind:pas:3p; +évalué évaluer ver m s 5.75 9.73 1.03 0.68 par:pas; +évaluée évaluer ver f s 5.75 9.73 0.14 0.00 par:pas; +évaluées évaluer ver f p 5.75 9.73 0.07 0.07 par:pas; +évalués évaluer ver m p 5.75 9.73 0.04 0.14 par:pas; +évanescence évanescence nom f s 0.00 0.27 0.00 0.14 +évanescences évanescence nom f p 0.00 0.27 0.00 0.14 +évanescent évanescent adj m s 0.17 1.49 0.01 0.68 +évanescente évanescent adj f s 0.17 1.49 0.02 0.47 +évanescentes évanescent adj f p 0.17 1.49 0.14 0.20 +évanescents évanescent adj m p 0.17 1.49 0.00 0.14 +évangile évangile nom m s 1.34 8.24 1.17 6.69 +évangiles évangile nom m p 1.34 8.24 0.18 1.55 +évangéliaire évangéliaire nom m s 0.00 0.27 0.00 0.27 +évangélique évangélique adj s 0.22 2.23 0.20 1.69 +évangéliques évangélique adj p 0.22 2.23 0.02 0.54 +évangélisateur évangélisateur adj m s 0.01 0.07 0.01 0.00 +évangélisation évangélisation nom f s 0.01 0.00 0.01 0.00 +évangélisatrices évangélisateur adj f p 0.01 0.07 0.00 0.07 +évangéliser évangéliser ver 0.26 0.47 0.11 0.34 inf; +évangéliseront évangéliser ver 0.26 0.47 0.01 0.00 ind:fut:3p; +évangélisons évangéliser ver 0.26 0.47 0.00 0.07 ind:pre:1p; +évangéliste évangéliste nom m s 1.45 0.88 0.74 0.61 +évangélistes évangéliste nom m p 1.45 0.88 0.70 0.27 +évangélisé évangéliser ver m s 0.26 0.47 0.00 0.07 par:pas; +évangélisés évangéliser ver m p 0.26 0.47 0.14 0.00 par:pas; +évanouît évanouir ver 18.93 24.93 0.00 0.07 sub:imp:3s; +évanoui évanouir ver m s 18.93 24.93 5.21 2.77 par:pas; +évanouie évanouir ver f s 18.93 24.93 4.79 3.04 par:pas; +évanouies évanouir ver f p 18.93 24.93 0.16 0.27 par:pas; +évanouir évanouir ver 18.93 24.93 4.40 8.24 inf; +évanouira évanouir ver 18.93 24.93 0.11 0.07 ind:fut:3s; +évanouirai évanouir ver 18.93 24.93 0.04 0.07 ind:fut:1s; +évanouirait évanouir ver 18.93 24.93 0.05 0.27 cnd:pre:3s; +évanouirent évanouir ver 18.93 24.93 0.02 0.47 ind:pas:3p; +évanouirez évanouir ver 18.93 24.93 0.14 0.00 ind:fut:2p; +évanouiront évanouir ver 18.93 24.93 0.05 0.00 ind:fut:3p; +évanouis évanouir ver m p 18.93 24.93 1.30 1.42 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +évanouissaient évanouir ver 18.93 24.93 0.02 0.95 ind:imp:3p; +évanouissais évanouir ver 18.93 24.93 0.06 0.20 ind:imp:1s;ind:imp:2s; +évanouissait évanouir ver 18.93 24.93 0.09 1.82 ind:imp:3s; +évanouissant évanouir ver 18.93 24.93 0.09 0.34 par:pre; +évanouisse évanouir ver 18.93 24.93 0.18 0.14 sub:pre:1s;sub:pre:3s; +évanouissement évanouissement nom m s 0.83 3.31 0.62 2.91 +évanouissements évanouissement nom m p 0.83 3.31 0.21 0.41 +évanouissent évanouir ver 18.93 24.93 0.65 1.35 ind:pre:3p; +évanouisses évanouir ver 18.93 24.93 0.07 0.00 sub:pre:2s; +évanouissez évanouir ver 18.93 24.93 0.09 0.07 imp:pre:2p;ind:pre:2p; +évanouit évanouir ver 18.93 24.93 1.41 3.38 ind:pre:3s;ind:pas:3s; +évapora évaporer ver 2.52 3.85 0.00 0.14 ind:pas:3s; +évaporaient évaporer ver 2.52 3.85 0.01 0.27 ind:imp:3p; +évaporais évaporer ver 2.52 3.85 0.01 0.07 ind:imp:1s; +évaporait évaporer ver 2.52 3.85 0.01 0.54 ind:imp:3s; +évaporateur évaporateur nom m s 0.17 0.00 0.14 0.00 +évaporateurs évaporateur nom m p 0.17 0.00 0.02 0.00 +évaporation évaporation nom f s 0.38 0.88 0.38 0.88 +évapore évaporer ver 2.52 3.85 0.56 0.68 ind:pre:1s;ind:pre:3s; +évaporent évaporer ver 2.52 3.85 0.58 0.27 ind:pre:3p; +évaporer évaporer ver 2.52 3.85 0.64 0.74 inf; +évaporerait évaporer ver 2.52 3.85 0.00 0.07 cnd:pre:3s; +évaporeront évaporer ver 2.52 3.85 0.00 0.07 ind:fut:3p; +évaporé évaporer ver m s 2.52 3.85 0.54 0.68 par:pas; +évaporée évaporé adj f s 0.47 1.35 0.17 0.74 +évaporées évaporé adj f p 0.47 1.35 0.01 0.20 +évaporés évaporer ver m p 2.52 3.85 0.17 0.34 par:pas; +évasaient évaser ver 0.04 2.03 0.00 0.07 ind:imp:3p; +évasait évaser ver 0.04 2.03 0.00 0.14 ind:imp:3s; +évasant évaser ver 0.04 2.03 0.00 0.61 par:pre; +évase évaser ver 0.04 2.03 0.01 0.47 ind:pre:3s; +évasement évasement nom m s 0.00 0.07 0.00 0.07 +évasent évaser ver 0.04 2.03 0.00 0.14 ind:pre:3p; +évaser évaser ver 0.04 2.03 0.00 0.14 inf; +évasif évasif adj m s 0.85 5.14 0.35 3.31 +évasifs évasif adj m p 0.85 5.14 0.05 0.41 +évasion évasion nom f s 9.69 10.07 9.48 9.12 +évasions évasion nom f p 9.69 10.07 0.21 0.95 +évasive évasif adj f s 0.85 5.14 0.25 0.81 +évasivement évasivement adv 0.01 1.08 0.01 1.08 +évasives évasif adj f p 0.85 5.14 0.20 0.61 +évasé évasé adj m s 0.03 0.74 0.00 0.47 +évasée évaser ver f s 0.04 2.03 0.02 0.14 par:pas; +évasées évaser ver f p 0.04 2.03 0.00 0.14 par:pas; +évasés évasé adj m p 0.03 0.74 0.01 0.00 +éveil éveil nom m s 1.65 6.42 1.64 6.22 +éveilla éveiller ver 17.28 55.27 0.16 5.61 ind:pas:3s; +éveillai éveiller ver 17.28 55.27 0.01 1.01 ind:pas:1s; +éveillaient éveiller ver 17.28 55.27 0.01 1.76 ind:imp:3p; +éveillais éveiller ver 17.28 55.27 0.24 0.95 ind:imp:1s;ind:imp:2s; +éveillait éveiller ver 17.28 55.27 0.27 6.69 ind:imp:3s; +éveillant éveiller ver 17.28 55.27 0.07 2.97 par:pre; +éveille éveiller ver 17.28 55.27 2.49 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éveillent éveiller ver 17.28 55.27 0.33 1.96 ind:pre:3p; +éveiller éveiller ver 17.28 55.27 4.61 12.16 inf; +éveillera éveiller ver 17.28 55.27 0.39 0.07 ind:fut:3s; +éveillerai éveiller ver 17.28 55.27 0.13 0.34 ind:fut:1s; +éveilleraient éveiller ver 17.28 55.27 0.00 0.07 cnd:pre:3p; +éveillerait éveiller ver 17.28 55.27 0.24 0.27 cnd:pre:3s; +éveilleras éveiller ver 17.28 55.27 0.02 0.00 ind:fut:2s; +éveillerez éveiller ver 17.28 55.27 0.02 0.07 ind:fut:2p; +éveilleront éveiller ver 17.28 55.27 0.05 0.07 ind:fut:3p; +éveilles éveiller ver 17.28 55.27 0.07 0.00 ind:pre:2s; +éveilleur éveilleur nom m s 0.00 0.14 0.00 0.14 +éveillez éveiller ver 17.28 55.27 0.32 0.27 imp:pre:2p;ind:pre:2p; +éveillions éveiller ver 17.28 55.27 0.00 0.20 ind:imp:1p; +éveillons éveiller ver 17.28 55.27 0.02 0.07 imp:pre:1p;ind:pre:1p; +éveillât éveiller ver 17.28 55.27 0.00 0.20 sub:imp:3s; +éveillèrent éveiller ver 17.28 55.27 0.14 0.88 ind:pas:3p; +éveillé éveiller ver m s 17.28 55.27 4.70 7.84 par:pas; +éveillée éveiller ver f s 17.28 55.27 2.12 2.50 par:pas; +éveillées éveillé adj f p 2.78 8.92 0.12 0.54 +éveillés éveiller ver m p 17.28 55.27 0.81 1.15 par:pas; +éveils éveil nom m p 1.65 6.42 0.01 0.20 +éveinage éveinage nom m s 0.01 0.00 0.01 0.00 +évent évent nom m s 0.15 0.00 0.11 0.00 +éventa éventer ver 0.60 4.26 0.00 0.20 ind:pas:3s; +éventai éventer ver 0.60 4.26 0.00 0.07 ind:pas:1s; +éventaient éventer ver 0.60 4.26 0.01 0.07 ind:imp:3p; +éventail éventail nom m s 2.96 13.99 2.82 10.88 +éventails éventail nom m p 2.96 13.99 0.14 3.11 +éventaire éventaire nom m s 0.25 2.16 0.25 1.22 +éventaires éventaire nom m p 0.25 2.16 0.00 0.95 +éventait éventer ver 0.60 4.26 0.01 0.88 ind:imp:3s; +éventant éventer ver 0.60 4.26 0.00 0.54 par:pre; +évente éventer ver 0.60 4.26 0.01 0.74 ind:pre:1s;ind:pre:3s; +éventent éventer ver 0.60 4.26 0.01 0.07 ind:pre:3p; +éventer éventer ver 0.60 4.26 0.07 0.88 inf; +éventerai éventer ver 0.60 4.26 0.00 0.07 ind:fut:1s; +éventez éventer ver 0.60 4.26 0.01 0.00 imp:pre:2p; +éventons éventer ver 0.60 4.26 0.01 0.00 imp:pre:1p; +éventra éventrer ver 2.81 5.20 0.00 0.07 ind:pas:3s; +éventraient éventrer ver 2.81 5.20 0.01 0.14 ind:imp:3p; +éventrait éventrer ver 2.81 5.20 0.16 0.47 ind:imp:3s; +éventrant éventrer ver 2.81 5.20 0.01 0.41 par:pre; +éventration éventration nom f s 0.02 0.14 0.02 0.14 +éventre éventrer ver 2.81 5.20 0.47 0.47 ind:pre:1s;ind:pre:3s; +éventrement éventrement nom m s 0.00 0.07 0.00 0.07 +éventrent éventrer ver 2.81 5.20 0.01 0.14 ind:pre:3p; +éventrer éventrer ver 2.81 5.20 0.96 1.01 inf; +éventrerai éventrer ver 2.81 5.20 0.01 0.00 ind:fut:1s; +éventrerait éventrer ver 2.81 5.20 0.00 0.07 cnd:pre:3s; +éventrerez éventrer ver 2.81 5.20 0.01 0.00 ind:fut:2p; +éventres éventrer ver 2.81 5.20 0.00 0.07 ind:pre:2s; +éventreur éventreur nom m s 0.50 0.95 0.36 0.68 +éventreurs éventreur nom m p 0.50 0.95 0.14 0.27 +éventrez éventrer ver 2.81 5.20 0.14 0.00 imp:pre:2p; +éventrions éventrer ver 2.81 5.20 0.00 0.07 ind:imp:1p; +éventrât éventrer ver 2.81 5.20 0.14 0.00 sub:imp:3s; +éventré éventrer ver m s 2.81 5.20 0.58 1.69 par:pas; +éventrée éventrer ver f s 2.81 5.20 0.25 0.07 par:pas; +éventrées éventré adj f p 0.35 5.00 0.14 1.28 +éventrés éventrer ver m p 2.81 5.20 0.05 0.47 par:pas; +évents évent nom m p 0.15 0.00 0.04 0.00 +éventé éventé adj m s 0.35 1.35 0.18 0.41 +éventualité éventualité nom f s 2.47 6.15 2.00 5.20 +éventualités éventualité nom f p 2.47 6.15 0.47 0.95 +éventée éventer ver f s 0.60 4.26 0.28 0.27 par:pas; +éventuel éventuel adj m s 4.92 13.18 1.38 3.92 +éventuelle éventuel adj f s 4.92 13.18 1.30 5.07 +éventuellement éventuellement adv 2.49 5.81 2.49 5.81 +éventuelles éventuel adj f p 4.92 13.18 1.17 1.55 +éventuels éventuel adj m p 4.92 13.18 1.07 2.64 +éventées éventer ver f p 0.60 4.26 0.01 0.07 par:pas; +éventés éventé adj m p 0.35 1.35 0.14 0.20 +évergète évergète adj s 0.00 0.07 0.00 0.07 +éversé éversé adj m s 0.00 0.14 0.00 0.07 +éversées éversé adj f p 0.00 0.14 0.00 0.07 +évertua évertuer ver 0.22 2.97 0.00 0.07 ind:pas:3s; +évertuaient évertuer ver 0.22 2.97 0.01 0.41 ind:imp:3p; +évertuais évertuer ver 0.22 2.97 0.00 0.14 ind:imp:1s; +évertuait évertuer ver 0.22 2.97 0.00 1.15 ind:imp:3s; +évertuant évertuer ver 0.22 2.97 0.02 0.14 par:pre; +évertue évertuer ver 0.22 2.97 0.10 0.47 ind:pre:1s;ind:pre:3s; +évertuent évertuer ver 0.22 2.97 0.04 0.14 ind:pre:3p; +évertuer évertuer ver 0.22 2.97 0.01 0.14 inf; +évertué évertuer ver m s 0.22 2.97 0.04 0.34 par:pas; +éviction éviction nom f s 0.05 0.41 0.05 0.41 +évida évider ver 0.25 1.22 0.01 0.07 ind:pas:3s; +évidaient évider ver 0.25 1.22 0.00 0.07 ind:imp:3p; +évide évider ver 0.25 1.22 0.01 0.20 ind:pre:1s;ind:pre:3s; +évidement évidement nom m s 0.21 0.07 0.21 0.07 +évidemment évidemment adv 28.23 88.11 28.23 88.11 +évidence évidence nom f s 11.47 39.93 11.14 37.77 +évidences évidence nom f p 11.47 39.93 0.33 2.16 +évident évident adj m s 32.59 33.58 28.75 20.14 +évidente évident adj f s 32.59 33.58 2.27 9.32 +évidentes évident adj f p 32.59 33.58 0.84 2.43 +évidents évident adj m p 32.59 33.58 0.72 1.69 +évider évider ver 0.25 1.22 0.01 0.20 inf; +évidé évidé adj m s 0.04 0.47 0.02 0.34 +évidée évidé adj f s 0.04 0.47 0.02 0.14 +évidées évider ver f p 0.25 1.22 0.01 0.07 par:pas; +évidés évider ver m p 0.25 1.22 0.00 0.07 par:pas; +évier évier nom m s 3.87 12.16 3.81 11.35 +éviers évier nom m p 3.87 12.16 0.05 0.81 +évince évincer ver 1.28 0.61 0.03 0.07 ind:pre:1s;ind:pre:3s; +évincer évincer ver 1.28 0.61 0.58 0.27 inf; +évincerait évincer ver 1.28 0.61 0.00 0.07 cnd:pre:3s; +évincez évincer ver 1.28 0.61 0.01 0.00 ind:pre:2p; +évincé évincer ver m s 1.28 0.61 0.45 0.14 par:pas; +évincée évincer ver f s 1.28 0.61 0.04 0.00 par:pas; +évincés évincer ver m p 1.28 0.61 0.13 0.00 par:pas; +évinçai évincer ver 1.28 0.61 0.00 0.07 ind:pas:1s; +évinçant évincer ver 1.28 0.61 0.03 0.00 par:pre; +éviscère éviscérer ver 0.50 0.14 0.04 0.07 ind:pre:1s;ind:pre:3s; +éviscèrent éviscérer ver 0.50 0.14 0.02 0.00 ind:pre:3p; +éviscérant éviscérer ver 0.50 0.14 0.03 0.00 par:pre; +éviscération éviscération nom f s 0.22 0.00 0.22 0.00 +éviscérer éviscérer ver 0.50 0.14 0.26 0.00 inf;; +éviscérée éviscérer ver f s 0.50 0.14 0.04 0.07 par:pas; +éviscérés éviscérer ver m p 0.50 0.14 0.13 0.00 par:pas; +évita éviter ver 87.47 110.47 0.03 5.00 ind:pas:3s; +évitable évitable adj s 0.21 0.27 0.20 0.14 +évitables évitable adj f p 0.21 0.27 0.01 0.14 +évitai éviter ver 87.47 110.47 0.01 0.74 ind:pas:1s; +évitaient éviter ver 87.47 110.47 0.06 2.23 ind:imp:3p; +évitais éviter ver 87.47 110.47 0.70 2.03 ind:imp:1s;ind:imp:2s; +évitait éviter ver 87.47 110.47 0.74 7.57 ind:imp:3s; +évitant éviter ver 87.47 110.47 1.69 10.47 par:pre; +évite éviter ver 87.47 110.47 10.70 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évitement évitement nom m s 0.18 0.00 0.18 0.00 +évitent éviter ver 87.47 110.47 1.13 1.22 ind:pre:3p; +éviter éviter ver 87.47 110.47 53.71 60.07 ind:pre:2p;inf; +évitera éviter ver 87.47 110.47 2.09 0.95 ind:fut:3s; +éviterai éviter ver 87.47 110.47 0.24 0.34 ind:fut:1s; +éviteraient éviter ver 87.47 110.47 0.00 0.41 cnd:pre:3p; +éviterais éviter ver 87.47 110.47 0.97 0.41 cnd:pre:1s;cnd:pre:2s; +éviterait éviter ver 87.47 110.47 0.77 1.62 cnd:pre:3s; +éviteras éviter ver 87.47 110.47 0.45 0.00 ind:fut:2s; +éviterez éviter ver 87.47 110.47 0.37 0.20 ind:fut:2p; +éviteriez éviter ver 87.47 110.47 0.07 0.00 cnd:pre:2p; +éviterons éviter ver 87.47 110.47 0.24 0.34 ind:fut:1p; +éviteront éviter ver 87.47 110.47 0.22 0.14 ind:fut:3p; +évites éviter ver 87.47 110.47 2.48 0.07 ind:pre:2s; +évitez éviter ver 87.47 110.47 3.31 0.68 imp:pre:2p;ind:pre:2p; +évitiez éviter ver 87.47 110.47 0.25 0.14 ind:imp:2p; +évitions éviter ver 87.47 110.47 0.12 0.47 ind:imp:1p; +évitâmes éviter ver 87.47 110.47 0.00 0.20 ind:pas:1p; +évitons éviter ver 87.47 110.47 1.30 0.27 imp:pre:1p;ind:pre:1p; +évitât éviter ver 87.47 110.47 0.00 0.41 sub:imp:3s; +évitèrent éviter ver 87.47 110.47 0.02 0.88 ind:pas:3p; +évité éviter ver m s 87.47 110.47 4.80 5.88 par:pas; +évitée éviter ver f s 87.47 110.47 0.57 0.81 par:pas; +évitées éviter ver f p 87.47 110.47 0.24 0.07 par:pas; +évités éviter ver m p 87.47 110.47 0.18 0.54 par:pas; +évocateur évocateur adj m s 0.15 1.49 0.13 0.74 +évocateurs évocateur adj m p 0.15 1.49 0.01 0.27 +évocation évocation nom f s 0.55 8.72 0.55 7.30 +évocations évocation nom f p 0.55 8.72 0.00 1.42 +évocatrice évocateur adj f s 0.15 1.49 0.01 0.20 +évocatrices évocateur adj f p 0.15 1.49 0.00 0.27 +évolua évoluer ver 10.60 11.69 0.05 0.27 ind:pas:3s; +évoluaient évoluer ver 10.60 11.69 0.05 1.08 ind:imp:3p; +évoluais évoluer ver 10.60 11.69 0.01 0.07 ind:imp:1s; +évoluait évoluer ver 10.60 11.69 0.29 1.62 ind:imp:3s; +évoluant évoluer ver 10.60 11.69 0.25 0.41 par:pre; +évolue évoluer ver 10.60 11.69 1.73 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évoluent évoluer ver 10.60 11.69 1.13 0.81 ind:pre:3p; +évoluer évoluer ver 10.60 11.69 2.90 3.18 inf; +évoluera évoluer ver 10.60 11.69 0.05 0.00 ind:fut:3s; +évoluerait évoluer ver 10.60 11.69 0.04 0.14 cnd:pre:3s; +évolueront évoluer ver 10.60 11.69 0.02 0.14 ind:fut:3p; +évoluez évoluer ver 10.60 11.69 0.06 0.00 ind:pre:2p; +évoluons évoluer ver 10.60 11.69 0.21 0.00 imp:pre:1p;ind:pre:1p; +évoluèrent évoluer ver 10.60 11.69 0.28 0.07 ind:pas:3p; +évolutif évolutif adj m s 0.47 0.20 0.08 0.07 +évolution évolution nom f s 8.09 14.19 7.87 11.69 +évolutionniste évolutionniste adj f s 0.15 0.00 0.15 0.00 +évolutions évolution nom f p 8.09 14.19 0.23 2.50 +évolutive évolutif adj f s 0.47 0.20 0.38 0.07 +évolutives évolutif adj f p 0.47 0.20 0.01 0.07 +évolué évoluer ver m s 10.60 11.69 3.29 2.09 par:pas; +évoluée évolué adj f s 1.69 1.28 0.73 0.20 +évoluées évolué adj f p 1.69 1.28 0.09 0.20 +évolués évolué adj m p 1.69 1.28 0.38 0.41 +évoqua évoquer ver 11.57 73.51 0.02 3.51 ind:pas:3s; +évoquai évoquer ver 11.57 73.51 0.00 0.68 ind:pas:1s; +évoquaient évoquer ver 11.57 73.51 0.01 5.27 ind:imp:3p; +évoquais évoquer ver 11.57 73.51 0.14 2.03 ind:imp:1s;ind:imp:2s; +évoquait évoquer ver 11.57 73.51 0.34 13.51 ind:imp:3s; +évoquant évoquer ver 11.57 73.51 0.44 7.84 par:pre; +évoque évoquer ver 11.57 73.51 3.68 11.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évoquent évoquer ver 11.57 73.51 0.71 2.57 ind:pre:3p; +évoquer évoquer ver 11.57 73.51 2.15 15.88 inf; +évoquera évoquer ver 11.57 73.51 0.10 0.54 ind:fut:3s; +évoquerai évoquer ver 11.57 73.51 0.04 0.07 ind:fut:1s; +évoqueraient évoquer ver 11.57 73.51 0.00 0.07 cnd:pre:3p; +évoquerait évoquer ver 11.57 73.51 0.04 0.47 cnd:pre:3s; +évoquerez évoquer ver 11.57 73.51 0.01 0.00 ind:fut:2p; +évoquerons évoquer ver 11.57 73.51 0.02 0.07 ind:fut:1p; +évoqueront évoquer ver 11.57 73.51 0.01 0.14 ind:fut:3p; +évoques évoquer ver 11.57 73.51 0.04 0.14 ind:pre:2s; +évoquez évoquer ver 11.57 73.51 0.56 0.07 imp:pre:2p;ind:pre:2p; +évoquiez évoquer ver 11.57 73.51 0.28 0.00 ind:imp:2p; +évoquions évoquer ver 11.57 73.51 0.17 0.34 ind:imp:1p; +évoquâmes évoquer ver 11.57 73.51 0.00 0.14 ind:pas:1p; +évoquons évoquer ver 11.57 73.51 0.08 0.41 imp:pre:1p;ind:pre:1p; +évoquât évoquer ver 11.57 73.51 0.00 0.07 sub:imp:3s; +évoquèrent évoquer ver 11.57 73.51 0.10 0.61 ind:pas:3p; +évoqué évoquer ver m s 11.57 73.51 2.01 5.00 par:pas; +évoquée évoquer ver f s 11.57 73.51 0.52 0.54 par:pas; +évoquées évoquer ver f p 11.57 73.51 0.03 0.41 par:pas; +évoqués évoquer ver m p 11.57 73.51 0.06 1.28 par:pas; +évènement évènement nom m s 6.59 0.00 3.27 0.00 +évènementielle évènementiel adj f s 0.01 0.00 0.01 0.00 +évènements évènement nom m p 6.59 0.00 3.32 0.00 +évêché évêché nom m s 0.14 3.85 0.14 3.72 +évêchés évêché nom m p 0.14 3.85 0.00 0.14 +événement événement nom m s 28.57 84.59 13.61 26.35 +événementiel événementiel adj m s 0.04 0.00 0.04 0.00 +événements événement nom m p 28.57 84.59 14.96 58.24 +évêque évêque nom m s 5.70 19.32 4.70 14.53 +évêques évêque nom m p 5.70 19.32 1.00 4.80 +éwé éwé adj m s 0.00 0.20 0.00 0.07 +éwés éwé adj m p 0.00 0.20 0.00 0.14 +uxorilocal uxorilocal adj m s 0.00 0.07 0.00 0.07 +v v nom_sup m 26.54 5.00 26.54 5.00 +vîmes voir ver 4119.49 2401.76 0.66 4.73 ind:pas:1p; +vînt venir ver 2763.69 1514.53 0.30 6.62 sub:imp:3s; +vît voir ver 4119.49 2401.76 0.03 4.05 sub:imp:3s; +vôtre vôtre pro_pos s 33.05 11.69 33.05 11.69 +vôtres vôtres pro_pos p 12.14 4.39 12.14 4.39 +va_et_vient va_et_vient nom m 1.30 10.61 1.30 10.61 +va_tout va_tout nom m 0.05 0.41 0.05 0.41 +va aller ver 9992.78 2854.93 3382.55 694.59 imp:pre:2s;ind:pre:3s; +vacance vacance nom f s 67.90 82.57 0.29 0.88 +vacances vacance nom f p 67.90 82.57 67.60 81.69 +vacancier vacancier nom m s 0.23 2.23 0.02 0.14 +vacanciers vacancier nom m p 0.23 2.23 0.20 1.89 +vacancière vacancier nom f s 0.23 2.23 0.01 0.14 +vacancières vacancière nom f p 0.01 0.00 0.01 0.00 +vacant vacant adj m s 1.68 5.07 0.84 2.57 +vacante vacant adj f s 1.68 5.07 0.60 1.42 +vacantes vacant adj f p 1.68 5.07 0.01 0.41 +vacants vacant adj m p 1.68 5.07 0.22 0.68 +vacarme vacarme nom m s 3.46 15.61 3.46 15.20 +vacarmes vacarme nom m p 3.46 15.61 0.00 0.41 +vacataire vacataire nom s 0.05 0.00 0.05 0.00 +vacation vacation nom f s 0.05 0.54 0.05 0.14 +vacations vacation nom f p 0.05 0.54 0.00 0.41 +vaccin vaccin nom m s 6.54 4.93 5.01 4.12 +vaccinal vaccinal adj m s 0.01 0.00 0.01 0.00 +vaccinant vaccinant adj m s 0.00 0.07 0.00 0.07 +vaccination vaccination nom f s 0.50 0.54 0.20 0.47 +vaccinations vaccination nom f p 0.50 0.54 0.30 0.07 +vaccine vacciner ver 1.66 1.62 0.18 0.14 imp:pre:2s;ind:pre:3s; +vaccinent vacciner ver 1.66 1.62 0.00 0.07 ind:pre:3p; +vacciner vacciner ver 1.66 1.62 0.68 0.47 inf; +vaccins vaccin nom m p 6.54 4.93 1.54 0.81 +vacciné vacciner ver m s 1.66 1.62 0.53 0.47 par:pas; +vaccinée vacciner ver f s 1.66 1.62 0.14 0.20 par:pas; +vaccinées vacciner ver f p 1.66 1.62 0.01 0.07 par:pas; +vaccinés vacciner ver m p 1.66 1.62 0.11 0.20 par:pas; +vachard vachard adj m s 0.08 1.42 0.08 0.74 +vacharde vachard adj f s 0.08 1.42 0.00 0.34 +vachardes vachard adj f p 0.08 1.42 0.00 0.14 +vachardise vachardise nom f s 0.00 0.14 0.00 0.14 +vachards vachard adj m p 0.08 1.42 0.00 0.20 +vache vache nom f s 47.71 53.45 36.24 26.08 +vachement vachement adv 15.74 11.82 15.74 11.82 +vacher vacher nom m s 0.91 0.81 0.77 0.61 +vacherie vacherie nom f s 0.69 5.41 0.42 3.18 +vacheries vacherie nom f p 0.69 5.41 0.27 2.23 +vacherin vacherin nom m s 0.00 0.54 0.00 0.54 +vachers vacher nom m p 0.91 0.81 0.13 0.20 +vaches vache nom f p 47.71 53.45 11.46 27.36 +vachette vachette nom f s 0.02 0.41 0.02 0.34 +vachettes vachette nom f p 0.02 0.41 0.00 0.07 +vachère vachère nom f s 0.11 0.61 0.00 0.41 +vachères vachère nom f p 0.11 0.61 0.11 0.20 +vacilla vaciller ver 1.87 12.84 0.10 1.69 ind:pas:3s; +vacillai vaciller ver 1.87 12.84 0.00 0.07 ind:pas:1s; +vacillaient vaciller ver 1.87 12.84 0.00 0.54 ind:imp:3p; +vacillait vaciller ver 1.87 12.84 0.02 2.23 ind:imp:3s; +vacillant vaciller ver 1.87 12.84 0.27 1.28 par:pre; +vacillante vacillant adj f s 0.28 4.80 0.19 1.82 +vacillantes vacillant adj f p 0.28 4.80 0.01 0.81 +vacillants vacillant adj m p 0.28 4.80 0.01 0.41 +vacillations vacillation nom f p 0.00 0.07 0.00 0.07 +vacille vaciller ver 1.87 12.84 0.93 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vacillement vacillement nom m s 0.01 0.34 0.01 0.34 +vacillent vaciller ver 1.87 12.84 0.22 0.34 ind:pre:3p; +vaciller vaciller ver 1.87 12.84 0.29 3.45 inf; +vacillât vaciller ver 1.87 12.84 0.00 0.07 sub:imp:3s; +vacillèrent vaciller ver 1.87 12.84 0.00 0.27 ind:pas:3p; +vacillé vaciller ver m s 1.87 12.84 0.03 0.34 par:pas; +vacuité vacuité nom f s 0.27 1.42 0.27 1.42 +vacuole vacuole nom f s 0.01 0.00 0.01 0.00 +vacuolisation vacuolisation nom f s 0.01 0.00 0.01 0.00 +vacuum vacuum nom m s 0.13 0.20 0.13 0.20 +vade_retro vade_retro adv 0.26 0.68 0.26 0.68 +vadrouillais vadrouiller ver 0.35 1.35 0.01 0.07 ind:imp:2s; +vadrouillait vadrouiller ver 0.35 1.35 0.01 0.07 ind:imp:3s; +vadrouille vadrouille nom f s 0.95 1.89 0.80 1.69 +vadrouillent vadrouiller ver 0.35 1.35 0.00 0.07 ind:pre:3p; +vadrouiller vadrouiller ver 0.35 1.35 0.21 0.81 inf; +vadrouilles vadrouille nom f p 0.95 1.89 0.14 0.20 +vadrouilleur vadrouilleur nom m s 0.11 0.14 0.10 0.00 +vadrouilleurs vadrouilleur nom m p 0.11 0.14 0.01 0.00 +vadrouilleuse vadrouilleur nom f s 0.11 0.14 0.00 0.07 +vadrouilleuses vadrouilleur nom f p 0.11 0.14 0.00 0.07 +vadrouillez vadrouiller ver 0.35 1.35 0.01 0.00 ind:pre:2p; +vadrouillé vadrouiller ver m s 0.35 1.35 0.06 0.07 par:pas; +vae_soli vae_soli adv 0.00 0.07 0.00 0.07 +vae_victis vae_victis adv 0.02 0.07 0.02 0.07 +vagabond vagabond nom m s 5.72 6.22 3.10 3.38 +vagabonda vagabonder ver 2.42 2.64 0.00 0.07 ind:pas:3s; +vagabondage vagabondage nom m s 0.70 2.57 0.68 1.76 +vagabondages vagabondage nom m p 0.70 2.57 0.02 0.81 +vagabondaient vagabonder ver 2.42 2.64 0.00 0.14 ind:imp:3p; +vagabondais vagabonder ver 2.42 2.64 0.28 0.00 ind:imp:1s;ind:imp:2s; +vagabondait vagabonder ver 2.42 2.64 0.26 0.88 ind:imp:3s; +vagabondant vagabonder ver 2.42 2.64 0.04 0.00 par:pre; +vagabonde vagabonder ver 2.42 2.64 0.68 0.34 ind:pre:1s;ind:pre:3s; +vagabondent vagabonder ver 2.42 2.64 0.17 0.14 ind:pre:3p; +vagabonder vagabonder ver 2.42 2.64 0.78 0.81 inf; +vagabondes vagabonder ver 2.42 2.64 0.12 0.07 ind:pre:2s; +vagabondiez vagabonder ver 2.42 2.64 0.01 0.00 ind:imp:2p; +vagabonds vagabond nom m p 5.72 6.22 2.30 2.57 +vagabondèrent vagabonder ver 2.42 2.64 0.00 0.07 ind:pas:3p; +vagabondé vagabonder ver m s 2.42 2.64 0.08 0.14 par:pas; +vagal vagal adj m s 0.41 0.00 0.41 0.00 +vagi vagir ver m s 0.15 1.76 0.00 0.14 par:pas; +vagin vagin nom m s 4.40 2.16 4.11 2.09 +vaginal vaginal adj m s 1.80 0.54 0.45 0.14 +vaginale vaginal adj f s 1.80 0.54 0.90 0.34 +vaginales vaginal adj f p 1.80 0.54 0.38 0.07 +vaginaux vaginal adj m p 1.80 0.54 0.08 0.00 +vaginite vaginite nom f s 0.03 0.00 0.03 0.00 +vagins vagin nom m p 4.40 2.16 0.29 0.07 +vagir vagir ver 0.15 1.76 0.00 0.20 inf; +vagis vagir ver 0.15 1.76 0.00 0.07 ind:pre:1s; +vagissaient vagir ver 0.15 1.76 0.00 0.07 ind:imp:3p; +vagissais vagir ver 0.15 1.76 0.14 0.07 ind:imp:1s;ind:imp:2s; +vagissait vagir ver 0.15 1.76 0.00 0.81 ind:imp:3s; +vagissant vagissant adj m s 0.03 0.20 0.03 0.20 +vagissement vagissement nom m s 0.70 0.95 0.43 0.34 +vagissements vagissement nom m p 0.70 0.95 0.27 0.61 +vagissent vagir ver 0.15 1.76 0.01 0.07 ind:pre:3p; +vagissons vagir ver 0.15 1.76 0.00 0.07 ind:pre:1p; +vagit vagir ver 0.15 1.76 0.00 0.20 ind:pre:3s;ind:pas:3s; +vagotomie vagotomie nom f s 0.01 0.00 0.01 0.00 +vagua vaguer ver 0.21 1.89 0.00 0.07 ind:pas:3s; +vaguait vaguer ver 0.21 1.89 0.00 0.27 ind:imp:3s; +vaguant vaguer ver 0.21 1.89 0.00 0.07 par:pre; +vague vague nom s 21.59 73.58 12.80 38.18 +vaguelette vaguelette nom f s 0.04 2.84 0.02 0.61 +vaguelettes vaguelette nom f p 0.04 2.84 0.02 2.23 +vaguement vaguement adv 4.72 51.76 4.72 51.76 +vaguemestre vaguemestre nom s 0.14 0.68 0.14 0.68 +vaguent vaguer ver 0.21 1.89 0.00 0.14 ind:pre:3p; +vaguer vaguer ver 0.21 1.89 0.10 0.47 inf; +vagues vague nom p 21.59 73.58 8.79 35.41 +vahiné vahiné nom f s 0.13 0.54 0.09 0.27 +vahinés vahiné nom f p 0.13 0.54 0.03 0.27 +vaillamment vaillamment adv 0.60 2.64 0.60 2.64 +vaillance vaillance nom f s 1.20 2.03 1.20 2.03 +vaillant vaillant adj m s 5.45 8.58 3.75 3.31 +vaillante vaillant adj f s 5.45 8.58 0.65 2.43 +vaillantes vaillant adj f p 5.45 8.58 0.05 0.95 +vaillants vaillant adj m p 5.45 8.58 1.00 1.89 +vaille valoir ver 236.07 175.74 3.04 5.34 sub:pre:1s;sub:pre:3s; +vaillent valoir ver 236.07 175.74 0.21 0.20 sub:pre:3p; +vain vain adj m s 19.87 57.03 16.02 40.14 +vainc vaincre ver 27.84 25.68 0.14 0.27 ind:pre:3s; +vaincra vaincre ver 27.84 25.68 0.82 0.27 ind:fut:3s; +vaincrai vaincre ver 27.84 25.68 0.42 0.20 ind:fut:1s; +vaincraient vaincre ver 27.84 25.68 0.02 0.07 cnd:pre:3p; +vaincrais vaincre ver 27.84 25.68 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +vaincrait vaincre ver 27.84 25.68 0.27 0.07 cnd:pre:3s; +vaincras vaincre ver 27.84 25.68 0.19 0.00 ind:fut:2s; +vaincre vaincre ver 27.84 25.68 13.71 13.31 inf; +vaincrez vaincre ver 27.84 25.68 0.11 0.00 ind:fut:2p; +vaincrons vaincre ver 27.84 25.68 1.62 0.47 ind:fut:1p; +vaincront vaincre ver 27.84 25.68 0.09 0.14 ind:fut:3p; +vaincs vaincre ver 27.84 25.68 0.06 0.14 imp:pre:2s;ind:pre:2s; +vaincu vaincre ver m s 27.84 25.68 7.28 6.62 par:pas; +vaincue vaincre ver f s 27.84 25.68 1.10 2.23 par:pas; +vaincues vaincre ver f p 27.84 25.68 0.18 0.14 par:pas; +vaincus vaincre ver m p 27.84 25.68 1.42 1.55 par:pas; +vaine vain adj f s 19.87 57.03 1.04 8.18 +vainement vainement adv 0.55 12.09 0.55 12.09 +vaines vain adj f p 19.87 57.03 1.57 5.20 +vainquant vaincre ver 27.84 25.68 0.01 0.07 par:pre; +vainquent vaincre ver 27.84 25.68 0.01 0.00 ind:pre:3p; +vainqueur vainqueur nom m s 9.10 11.35 6.71 5.74 +vainqueurs vainqueur nom m p 9.10 11.35 2.38 5.61 +vainquez vaincre ver 27.84 25.68 0.03 0.00 imp:pre:2p; +vainquions vaincre ver 27.84 25.68 0.02 0.00 ind:imp:1p; +vainquirent vaincre ver 27.84 25.68 0.01 0.00 ind:pas:3p; +vainquit vaincre ver 27.84 25.68 0.18 0.14 ind:pas:3s; +vainquons vaincre ver 27.84 25.68 0.03 0.00 ind:pre:1p; +vains vain adj m p 19.87 57.03 1.23 3.51 +vair vair nom m s 0.09 0.27 0.09 0.27 +vairon vairon adj m s 0.00 0.54 0.00 0.20 +vairons vairon nom m p 0.04 0.54 0.04 0.41 +vais aller ver 9992.78 2854.93 1644.99 280.00 ind:pre:1s; +vaisseau_amiral vaisseau_amiral nom m s 0.05 0.00 0.05 0.00 +vaisseau vaisseau nom m s 83.39 12.43 67.11 7.23 +vaisseaux vaisseau nom m p 83.39 12.43 16.27 5.20 +vaisselier vaisselier nom m s 0.07 0.68 0.07 0.61 +vaisseliers vaisselier nom m p 0.07 0.68 0.00 0.07 +vaisselle vaisselle nom f s 12.11 25.95 12.10 24.93 +vaisselles vaisselle nom f p 12.11 25.95 0.01 1.01 +val val nom m s 3.61 4.93 2.12 3.04 +valût valoir ver 236.07 175.74 0.00 0.61 sub:imp:3s; +valable valable adj s 9.10 10.41 7.46 8.65 +valablement valablement adv 0.00 0.27 0.00 0.27 +valables valable adj p 9.10 10.41 1.63 1.76 +valaient valoir ver 236.07 175.74 1.03 5.27 ind:imp:3p; +valais valoir ver 236.07 175.74 0.46 0.47 ind:imp:1s;ind:imp:2s; +valait valoir ver 236.07 175.74 15.82 41.62 ind:imp:3s; +valant valoir ver 236.07 175.74 1.00 1.49 par:pre; +valaque valaque nom s 0.01 0.00 0.01 0.00 +valdôtains valdôtain nom m p 0.00 0.14 0.00 0.14 +valdingua valdinguer ver 0.05 1.76 0.00 0.07 ind:pas:3s; +valdingue valdinguer ver 0.05 1.76 0.00 1.01 ind:pre:3s; +valdinguer valdinguer ver 0.05 1.76 0.05 0.14 inf; +valdingues valdinguer ver 0.05 1.76 0.00 0.41 ind:pre:2s; +valdingué valdinguer ver m s 0.05 1.76 0.00 0.07 par:pas; +valdingués valdinguer ver m p 0.05 1.76 0.00 0.07 par:pas; +valence valence nom f s 0.28 0.07 0.28 0.07 +valencien valencien nom m s 0.00 0.14 0.00 0.07 +valencienne valencienne nom f s 0.14 0.00 0.14 0.00 +valent valoir ver 236.07 175.74 9.79 8.58 ind:pre:3p; +valentin valentin nom m s 0.27 0.00 0.11 0.00 +valentine valentin nom f s 0.27 0.00 0.16 0.00 +valentinien valentinien nom m s 0.02 0.00 0.02 0.00 +valet valet nom m s 11.40 19.80 9.23 13.65 +valetaille valetaille nom f s 0.01 1.01 0.01 1.01 +valeter valeter ver 0.14 0.00 0.14 0.00 inf; +valets valet nom m p 11.40 19.80 2.17 6.15 +valeur_refuge valeur_refuge nom f s 0.00 0.07 0.00 0.07 +valeur valeur nom f s 45.40 52.30 32.48 40.74 +valeureuse valeureux adj f s 2.45 2.36 0.00 0.07 +valeureusement valeureusement adv 0.01 0.00 0.01 0.00 +valeureuses valeureux adj f p 2.45 2.36 0.01 0.07 +valeureux valeureux adj m 2.45 2.36 2.44 2.23 +valeurs valeur nom f p 45.40 52.30 12.91 11.55 +valez valoir ver 236.07 175.74 2.49 0.54 imp:pre:2p;ind:pre:2p; +valgus valgus adj m 0.02 0.00 0.02 0.00 +valida valider ver 1.23 0.54 0.00 0.07 ind:pas:3s; +validait valider ver 1.23 0.54 0.00 0.07 ind:imp:3s; +validant valider ver 1.23 0.54 0.00 0.07 par:pre; +validation validation nom f s 0.14 0.07 0.14 0.07 +valide valide adj s 2.31 3.38 1.72 1.55 +valident valider ver 1.23 0.54 0.01 0.00 ind:pre:3p; +valider valider ver 1.23 0.54 0.72 0.14 inf; +valideront valider ver 1.23 0.54 0.03 0.00 ind:fut:3p; +valides valide adj p 2.31 3.38 0.59 1.82 +validité validité nom f s 0.35 0.41 0.35 0.41 +validé valider ver m s 1.23 0.54 0.18 0.07 par:pas; +validée validé adj f s 0.07 2.57 0.04 0.00 +valiez valoir ver 236.07 175.74 0.15 0.00 ind:imp:2p; +valions valoir ver 236.07 175.74 0.16 0.14 ind:imp:1p; +valise valise nom f s 50.99 70.34 33.21 47.43 +valises valise nom f p 50.99 70.34 17.79 22.91 +valisé valiser ver m s 0.00 0.14 0.00 0.14 par:pas; +valkyries valkyrie nom f p 0.02 0.00 0.02 0.00 +valleuse valleuse nom f s 0.00 0.07 0.00 0.07 +vallon vallon nom m s 2.50 6.89 2.11 5.74 +vallonnaient vallonner ver 0.00 0.27 0.00 0.07 ind:imp:3p; +vallonnait vallonner ver 0.00 0.27 0.00 0.07 ind:imp:3s; +vallonnement vallonnement nom m s 0.00 2.09 0.00 0.88 +vallonnements vallonnement nom m p 0.00 2.09 0.00 1.22 +vallonner vallonner ver 0.00 0.27 0.00 0.07 inf; +vallonné vallonné adj m s 0.06 0.74 0.03 0.27 +vallonnée vallonné adj f s 0.06 0.74 0.01 0.27 +vallonnées vallonné adj f p 0.06 0.74 0.01 0.14 +vallonnés vallonné adj m p 0.06 0.74 0.01 0.07 +vallons vallon nom m p 2.50 6.89 0.40 1.15 +vallée vallée nom f s 13.54 35.68 12.51 30.14 +vallées vallée nom f p 13.54 35.68 1.03 5.54 +valoche valoche nom f s 0.46 3.38 0.19 2.03 +valoches valoche nom f p 0.46 3.38 0.27 1.35 +valoir valoir ver 236.07 175.74 4.62 9.32 inf; +valons valoir ver 236.07 175.74 0.78 0.41 imp:pre:1p;ind:pre:1p; +valorisait valoriser ver 0.45 0.81 0.00 0.07 ind:imp:3s; +valorisant valorisant adj m s 0.37 0.14 0.35 0.14 +valorisante valorisant adj f s 0.37 0.14 0.02 0.00 +valorisation valorisation nom f s 0.01 0.00 0.01 0.00 +valorise valoriser ver 0.45 0.81 0.19 0.27 imp:pre:2s;ind:pre:3s; +valoriser valoriser ver 0.45 0.81 0.22 0.20 inf; +valorisez valoriser ver 0.45 0.81 0.01 0.00 ind:pre:2p; +valorisé valoriser ver m s 0.45 0.81 0.00 0.07 par:pas; +valorisée valoriser ver f s 0.45 0.81 0.02 0.07 par:pas; +valorisés valoriser ver m p 0.45 0.81 0.01 0.14 par:pas; +valpolicella valpolicella nom m s 0.01 0.14 0.01 0.14 +vals val nom m p 3.61 4.93 0.61 0.54 +valsa valser ver 1.93 5.14 0.00 0.20 ind:pas:3s; +valsaient valser ver 1.93 5.14 0.00 0.47 ind:imp:3p; +valsait valser ver 1.93 5.14 0.04 0.34 ind:imp:3s; +valsant valser ver 1.93 5.14 0.05 0.27 par:pre; +valse_hésitation valse_hésitation nom f s 0.00 0.27 0.00 0.20 +valse valse nom f s 5.55 9.32 5.45 7.91 +valsent valser ver 1.93 5.14 0.11 0.20 ind:pre:3p; +valser valser ver 1.93 5.14 1.33 2.43 inf; +valsera valser ver 1.93 5.14 0.01 0.00 ind:fut:3s; +valse_hésitation valse_hésitation nom f p 0.00 0.27 0.00 0.07 +valses valse nom f p 5.55 9.32 0.11 1.42 +valseur valseur nom m s 0.12 1.35 0.01 1.08 +valseurs valseur nom m p 0.12 1.35 0.00 0.14 +valseuse valseur nom f s 0.12 1.35 0.11 0.00 +valseuses valseuse nom f p 0.14 0.00 0.14 0.00 +valsez valser ver 1.93 5.14 0.04 0.07 ind:pre:2p; +valsons valser ver 1.93 5.14 0.02 0.00 imp:pre:1p;ind:pre:1p; +valsèrent valser ver 1.93 5.14 0.01 0.07 ind:pas:3p; +valsé valser ver m s 1.93 5.14 0.20 0.61 par:pas; +valu valoir ver m s 236.07 175.74 3.82 9.39 par:pas; +value valoir ver f s 236.07 175.74 0.12 0.07 par:pas; +values valoir ver f p 236.07 175.74 0.00 0.14 par:pas; +valurent valoir ver 236.07 175.74 0.03 0.81 ind:pas:3p; +valériane valériane nom f s 0.30 0.14 0.30 0.14 +valut valoir ver 236.07 175.74 0.56 3.45 ind:pas:3s; +valétudinaire valétudinaire adj m s 0.01 0.14 0.01 0.14 +valve valve nom f s 2.63 1.01 1.60 0.47 +valves valve nom f p 2.63 1.01 1.03 0.54 +valvulaires valvulaire adj p 0.00 0.07 0.00 0.07 +valvule valvule nom f s 0.22 0.07 0.22 0.07 +vamp_club vamp_club nom f s 0.01 0.00 0.01 0.00 +vamp vamp nom f s 0.48 1.42 0.33 1.22 +vampe vamper ver 0.24 0.07 0.01 0.00 imp:pre:2s; +vamper vamper ver 0.24 0.07 0.20 0.07 inf; +vampire vampire nom m s 27.27 3.24 15.29 1.82 +vampires vampire nom m p 27.27 3.24 11.98 1.42 +vampirique vampirique adj s 0.21 0.20 0.21 0.20 +vampirisant vampiriser ver 0.10 0.20 0.01 0.00 par:pre; +vampirise vampiriser ver 0.10 0.20 0.04 0.07 ind:pre:1s;ind:pre:3s; +vampirisme vampirisme nom m s 0.32 0.14 0.32 0.14 +vampirisé vampiriser ver m s 0.10 0.20 0.00 0.07 par:pas; +vampirisée vampiriser ver f s 0.10 0.20 0.05 0.00 par:pas; +vampirisées vampiriser ver f p 0.10 0.20 0.00 0.07 par:pas; +vamps vamp nom f p 0.48 1.42 0.16 0.20 +vampé vamper ver m s 0.24 0.07 0.03 0.00 par:pas; +van van nom_sup m s 8.90 3.24 8.78 3.24 +vanadium vanadium nom m s 0.00 0.74 0.00 0.74 +vandale vandale nom s 1.14 0.88 0.33 0.47 +vandales vandale nom p 1.14 0.88 0.81 0.41 +vandalisent vandaliser ver 0.33 0.14 0.01 0.07 ind:pre:3p; +vandaliser vandaliser ver 0.33 0.14 0.09 0.07 inf; +vandalisme vandalisme nom m s 1.53 1.55 1.53 1.55 +vandalisé vandaliser ver m s 0.33 0.14 0.23 0.00 par:pas; +vandoises vandoise nom f p 0.00 0.14 0.00 0.14 +vanille vanille nom f s 2.50 3.38 2.50 3.38 +vanillé vanillé adj m s 0.17 0.20 0.17 0.07 +vanillée vanillé adj f s 0.17 0.20 0.00 0.07 +vanillées vanillé adj f p 0.17 0.20 0.00 0.07 +vaniteuse vaniteux adj f s 2.23 2.50 0.49 0.68 +vaniteusement vaniteusement adv 0.00 0.07 0.00 0.07 +vaniteuses vaniteux adj f p 2.23 2.50 0.14 0.07 +vaniteux vaniteux adj m 2.23 2.50 1.60 1.76 +vanité vanité nom f s 5.75 17.97 5.16 16.49 +vanités vanité nom f p 5.75 17.97 0.59 1.49 +vanity_case vanity_case nom m s 0.11 0.14 0.11 0.14 +vanna vanner ver 1.32 4.39 0.04 1.96 ind:pas:3s; +vannais vanner ver 1.32 4.39 0.00 0.07 ind:imp:1s; +vannait vanner ver 1.32 4.39 0.00 0.07 ind:imp:3s; +vanne vanne nom f s 2.73 7.36 0.94 3.11 +vanneau vanneau nom m s 0.00 0.74 0.00 0.34 +vanneaux vanneau nom m p 0.00 0.74 0.00 0.41 +vannent vanner ver 1.32 4.39 0.02 0.00 ind:pre:3p; +vanner vanner ver 1.32 4.39 0.09 0.54 inf; +vannerie vannerie nom f s 0.14 0.74 0.14 0.68 +vanneries vannerie nom f p 0.14 0.74 0.00 0.07 +vannes vanne nom f p 2.73 7.36 1.79 4.26 +vanneur vanneur nom m s 0.00 0.20 0.00 0.14 +vanneurs vanneur nom m p 0.00 0.20 0.00 0.07 +vannier vannier nom m s 0.00 0.27 0.00 0.20 +vanniers vannier nom m p 0.00 0.27 0.00 0.07 +vannières vannière nom f p 0.00 0.07 0.00 0.07 +vannèrent vanner ver 1.32 4.39 0.00 0.07 ind:pas:3p; +vanné vanner ver m s 1.32 4.39 0.56 0.34 par:pas; +vannée vanner ver f s 1.32 4.39 0.36 0.27 par:pas; +vannés vanner ver m p 1.32 4.39 0.16 0.00 par:pas; +vans van nom_sup m p 8.90 3.24 0.13 0.00 +vanta vanter ver 10.73 23.24 0.03 0.68 ind:pas:3s; +vantai vanter ver 10.73 23.24 0.00 0.14 ind:pas:1s; +vantaient vanter ver 10.73 23.24 0.05 1.49 ind:imp:3p; +vantail vantail nom m s 0.00 3.85 0.00 2.23 +vantais vanter ver 10.73 23.24 0.25 0.41 ind:imp:1s;ind:imp:2s; +vantait vanter ver 10.73 23.24 0.49 4.46 ind:imp:3s; +vantant vanter ver 10.73 23.24 0.36 1.42 par:pre; +vantard vantard nom m s 1.60 0.14 1.06 0.07 +vantarde vantard adj f s 0.34 0.74 0.01 0.00 +vantardes vantard adj f p 0.34 0.74 0.01 0.07 +vantardise vantardise nom f s 0.19 1.69 0.16 0.74 +vantardises vantardise nom f p 0.19 1.69 0.03 0.95 +vantards vantard nom m p 1.60 0.14 0.53 0.07 +vantaux vantail nom m p 0.00 3.85 0.00 1.62 +vante vanter ver 10.73 23.24 1.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vantent vanter ver 10.73 23.24 0.39 1.15 ind:pre:3p; +vanter vanter ver 10.73 23.24 4.80 7.50 inf; +vantera vanter ver 10.73 23.24 0.01 0.20 ind:fut:3s; +vanterai vanter ver 10.73 23.24 0.16 0.07 ind:fut:1s; +vanterais vanter ver 10.73 23.24 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +vanterait vanter ver 10.73 23.24 0.01 0.00 cnd:pre:3s; +vanteras vanter ver 10.73 23.24 0.14 0.00 ind:fut:2s; +vanterie vanterie nom f s 0.01 0.20 0.00 0.07 +vanteries vanterie nom f p 0.01 0.20 0.01 0.14 +vanteront vanter ver 10.73 23.24 0.02 0.07 ind:fut:3p; +vantes vanter ver 10.73 23.24 0.46 0.20 ind:pre:2s; +vantez vanter ver 10.73 23.24 0.16 0.14 imp:pre:2p;ind:pre:2p; +vantiez vanter ver 10.73 23.24 0.01 0.00 ind:imp:2p; +vantions vanter ver 10.73 23.24 0.10 0.00 ind:imp:1p; +vantons vanter ver 10.73 23.24 0.03 0.00 imp:pre:1p;ind:pre:1p; +vantât vanter ver 10.73 23.24 0.00 0.07 sub:imp:3s; +vanté vanter ver m s 10.73 23.24 1.12 1.89 par:pas; +vantée vanter ver f s 10.73 23.24 0.22 0.34 par:pas; +vantées vanter ver f p 10.73 23.24 0.00 0.20 par:pas; +vantés vanter ver m p 10.73 23.24 0.01 0.20 par:pas; +vape vape nom f s 1.26 3.04 0.00 2.30 +vapes vape nom f p 1.26 3.04 1.26 0.74 +vapeur vapeur nom s 8.02 26.76 6.17 19.12 +vapeurs vapeur nom p 8.02 26.76 1.85 7.64 +vaporetto vaporetto nom m s 0.32 0.41 0.32 0.41 +vaporeuse vaporeux adj f s 0.21 4.53 0.17 1.76 +vaporeuses vaporeux adj f p 0.21 4.53 0.00 0.47 +vaporeux vaporeux adj m 0.21 4.53 0.04 2.30 +vaporisa vaporiser ver 1.47 1.82 0.00 0.34 ind:pas:3s; +vaporisais vaporiser ver 1.47 1.82 0.01 0.00 ind:imp:1s; +vaporisait vaporiser ver 1.47 1.82 0.14 0.41 ind:imp:3s; +vaporisant vaporiser ver 1.47 1.82 0.00 0.07 par:pre; +vaporisateur vaporisateur nom m s 0.30 1.08 0.28 0.74 +vaporisateurs vaporisateur nom m p 0.30 1.08 0.01 0.34 +vaporisation vaporisation nom f s 0.09 0.14 0.09 0.07 +vaporisations vaporisation nom f p 0.09 0.14 0.00 0.07 +vaporise vaporiser ver 1.47 1.82 0.20 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vaporiser vaporiser ver 1.47 1.82 0.51 0.34 inf; +vaporiserait vaporiser ver 1.47 1.82 0.03 0.07 cnd:pre:3s; +vaporises vaporiser ver 1.47 1.82 0.02 0.00 ind:pre:2s; +vaporisez vaporiser ver 1.47 1.82 0.08 0.00 imp:pre:2p;ind:pre:2p; +vaporisé vaporiser ver m s 1.47 1.82 0.42 0.00 par:pas; +vaporisée vaporiser ver f s 1.47 1.82 0.07 0.41 par:pas; +vaps vaps nom f p 0.24 0.00 0.24 0.00 +vaquai vaquer ver 0.67 3.18 0.00 0.07 ind:pas:1s; +vaquaient vaquer ver 0.67 3.18 0.04 0.27 ind:imp:3p; +vaquais vaquer ver 0.67 3.18 0.03 0.07 ind:imp:1s; +vaquait vaquer ver 0.67 3.18 0.01 1.28 ind:imp:3s; +vaquant vaquer ver 0.67 3.18 0.02 0.27 par:pre; +vaque vaquer ver 0.67 3.18 0.07 0.27 ind:pre:1s;ind:pre:3s; +vaquent vaquer ver 0.67 3.18 0.00 0.14 ind:pre:3p; +vaquer vaquer ver 0.67 3.18 0.37 0.61 inf; +vaquerait vaquer ver 0.67 3.18 0.00 0.07 cnd:pre:3s; +vaquero vaquero nom m s 0.11 0.07 0.06 0.07 +vaqueros vaquero nom m p 0.11 0.07 0.05 0.00 +vaquions vaquer ver 0.67 3.18 0.00 0.07 ind:imp:1p; +vaquons vaquer ver 0.67 3.18 0.10 0.07 imp:pre:1p;ind:pre:1p; +vaqué vaquer ver m s 0.67 3.18 0.02 0.00 par:pas; +var var nom m s 0.01 0.00 0.01 0.00 +vara vara adj f s 0.00 0.07 0.00 0.07 +varan varan nom m s 0.02 0.07 0.01 0.07 +varans varan nom m p 0.02 0.07 0.01 0.00 +varappe varappe nom f s 0.06 0.07 0.06 0.07 +varapper varapper ver 0.00 0.07 0.00 0.07 inf; +varappeur varappeur nom m s 0.00 0.07 0.00 0.07 +varech varech nom m s 0.25 2.70 0.25 2.43 +varechs varech nom m p 0.25 2.70 0.00 0.27 +varenne varenne nom f s 0.00 4.53 0.00 4.12 +varennes varenne nom f p 0.00 4.53 0.00 0.41 +vareuse vareuse nom f s 0.81 8.24 0.56 6.82 +vareuses vareuse nom f p 0.81 8.24 0.25 1.42 +varia varia nom m p 0.02 0.07 0.02 0.07 +variabilité variabilité nom f s 0.05 0.14 0.05 0.14 +variable variable adj s 0.98 2.64 0.81 1.76 +variables variable nom f p 1.05 0.14 0.74 0.00 +variaient varier ver 2.69 8.92 0.01 0.61 ind:imp:3p; +variais varier ver 2.69 8.92 0.00 0.14 ind:imp:1s; +variait varier ver 2.69 8.92 0.03 1.22 ind:imp:3s; +variance variance nom f s 0.03 0.00 0.03 0.00 +variant varier ver 2.69 8.92 0.03 0.81 par:pre; +variante variante nom f s 0.95 3.24 0.77 0.81 +variantes variante nom f p 0.95 3.24 0.18 2.43 +variateur variateur nom m s 0.02 0.14 0.02 0.14 +variation variation nom f s 1.83 6.28 0.50 1.08 +variations variation nom f p 1.83 6.28 1.33 5.20 +varice varice nom f s 0.67 1.76 0.01 0.00 +varicelle varicelle nom f s 1.03 0.74 1.03 0.74 +varices varice nom f p 0.67 1.76 0.66 1.76 +varie varier ver 2.69 8.92 0.91 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +varient varier ver 2.69 8.92 0.46 0.61 ind:pre:3p; +varier varier ver 2.69 8.92 0.66 1.76 inf; +varierai varier ver 2.69 8.92 0.01 0.07 ind:fut:1s; +varieraient varier ver 2.69 8.92 0.00 0.07 cnd:pre:3p; +varierait varier ver 2.69 8.92 0.00 0.14 cnd:pre:3s; +varieront varier ver 2.69 8.92 0.00 0.07 ind:fut:3p; +variole variole nom f s 2.42 0.34 2.42 0.34 +variorum variorum nom m s 0.00 0.07 0.00 0.07 +variât varier ver 2.69 8.92 0.00 0.07 sub:imp:3s; +variqueuses variqueux adj f p 0.00 0.47 0.00 0.14 +variqueux variqueux adj m 0.00 0.47 0.00 0.34 +varié varié adj m s 1.53 5.74 0.47 0.61 +variée varier ver f s 2.69 8.92 0.23 0.41 par:pas; +variées varié adj f p 1.53 5.74 0.43 1.69 +variés varié adj m p 1.53 5.74 0.41 2.70 +variétal variétal adj m s 0.01 0.00 0.01 0.00 +variété variété nom f s 3.42 9.73 2.17 6.42 +variétés variété nom f p 3.42 9.73 1.25 3.31 +varlet varlet nom m s 0.01 0.07 0.01 0.07 +varlope varlope nom f s 0.00 0.41 0.00 0.41 +varon varon nom m s 0.12 0.00 0.12 0.00 +varsovien varsovien nom m s 0.10 0.00 0.10 0.00 +vas aller ver 9992.78 2854.93 1009.22 136.35 imp:pre:2s;ind:pre:2s; +vasa vaser ver 0.02 0.41 0.02 0.20 ind:pas:3s; +vasais vasais nom m 0.00 0.20 0.00 0.20 +vasait vaser ver 0.02 0.41 0.00 0.07 ind:imp:3s; +vasards vasard adj m p 0.00 0.14 0.00 0.14 +vasculaire vasculaire adj s 1.26 0.27 1.01 0.07 +vasculaires vasculaire adj m p 1.26 0.27 0.25 0.20 +vascularisé vascularisé adj m s 0.02 0.00 0.02 0.00 +vasculo_nerveux vasculo_nerveux nom m 0.01 0.00 0.01 0.00 +vase vase nom s 10.74 32.97 9.83 26.76 +vasectomie vasectomie nom f s 0.38 0.00 0.38 0.00 +vaseline vaseline nom f s 0.94 1.28 0.94 1.28 +vaseliner vaseliner ver 0.02 0.07 0.01 0.00 inf; +vaselinez vaseliner ver 0.02 0.07 0.01 0.00 imp:pre:2p; +vaseliné vaseliner ver m s 0.02 0.07 0.00 0.07 par:pas; +vaser vaser ver 0.02 0.41 0.00 0.14 inf; +vases vase nom p 10.74 32.97 0.91 6.22 +vaseuse vaseux adj f s 0.43 2.43 0.14 0.54 +vaseuses vaseux adj f p 0.43 2.43 0.03 0.20 +vaseux vaseux adj m 0.43 2.43 0.25 1.69 +vasistas vasistas nom m 0.08 3.85 0.08 3.85 +vasière vasière nom f s 0.00 0.88 0.00 0.07 +vasières vasière nom f p 0.00 0.88 0.00 0.81 +vasoconstricteur vasoconstricteur adj m s 0.14 0.00 0.14 0.00 +vasoconstriction vasoconstriction nom f s 0.03 0.00 0.03 0.00 +vasodilatateur vasodilatateur adj m s 0.01 0.00 0.01 0.00 +vasodilatation vasodilatation nom f s 0.01 0.00 0.01 0.00 +vasomoteurs vasomoteur adj m p 0.02 0.00 0.02 0.00 +vasopressine vasopressine nom f s 0.01 0.00 0.01 0.00 +vasouillard vasouillard adj m s 0.00 0.34 0.00 0.27 +vasouillarde vasouillard adj f s 0.00 0.34 0.00 0.07 +vasouille vasouiller ver 0.12 0.20 0.01 0.07 ind:pre:3s; +vasouiller vasouiller ver 0.12 0.20 0.10 0.14 inf; +vasouilles vasouiller ver 0.12 0.20 0.01 0.00 ind:pre:2s; +vasque vasque nom f s 0.25 3.99 0.01 2.91 +vasques vasque nom f p 0.25 3.99 0.24 1.08 +vassal vassal nom m s 2.24 4.39 1.77 1.49 +vassale vassal nom f s 2.24 4.39 0.00 0.14 +vassalité vassalité nom f s 0.00 0.20 0.00 0.20 +vassaux vassal nom m p 2.24 4.39 0.47 2.77 +vaste vaste adj s 10.32 71.76 8.44 55.61 +vastes vaste adj p 10.32 71.76 1.88 16.15 +vastité vastité nom f s 0.00 0.07 0.00 0.07 +vastitude vastitude nom f s 0.00 0.27 0.00 0.20 +vastitudes vastitude nom f p 0.00 0.27 0.00 0.07 +vater vater nom m s 0.00 0.07 0.00 0.07 +vaticane vaticane adj f s 0.00 0.20 0.00 0.20 +vaticanesque vaticanesque adj s 0.00 0.07 0.00 0.07 +vaticinait vaticiner ver 0.00 0.61 0.00 0.14 ind:imp:3s; +vaticinant vaticiner ver 0.00 0.61 0.00 0.27 par:pre; +vaticination vaticination nom f s 0.00 0.47 0.00 0.07 +vaticinations vaticination nom f p 0.00 0.47 0.00 0.41 +vaticine vaticiner ver 0.00 0.61 0.00 0.07 ind:pre:3s; +vaticiner vaticiner ver 0.00 0.61 0.00 0.14 inf; +vatères vatère nom m p 0.00 0.14 0.00 0.14 +vau_l_eau vau_l_eau nom m s 0.00 0.14 0.00 0.14 +vau vau nom m s 0.01 0.20 0.01 0.20 +vauclusien vauclusien adj m s 0.14 0.07 0.14 0.00 +vauclusiennes vauclusien adj f p 0.14 0.07 0.00 0.07 +vaudeville vaudeville nom m s 0.41 1.82 0.35 1.55 +vaudevilles vaudeville nom m p 0.41 1.82 0.05 0.27 +vaudevillesque vaudevillesque adj s 0.03 0.14 0.03 0.07 +vaudevillesques vaudevillesque adj p 0.03 0.14 0.00 0.07 +vaudois vaudois adj m 0.00 0.74 0.00 0.68 +vaudoise vaudois adj f s 0.00 0.74 0.00 0.07 +vaudou vaudou nom m s 2.93 0.41 2.92 0.41 +vaudoue vaudou adj f s 1.48 0.68 0.03 0.07 +vaudoues vaudou adj f p 1.48 0.68 0.00 0.14 +vaudouisme vaudouisme nom m s 0.02 0.00 0.02 0.00 +vaudous vaudou adj m p 1.48 0.68 0.12 0.07 +vaudra valoir ver 236.07 175.74 4.34 3.51 ind:fut:3s; +vaudrai valoir ver 236.07 175.74 0.07 0.07 ind:fut:1s; +vaudraient valoir ver 236.07 175.74 0.29 0.14 cnd:pre:3p; +vaudrais valoir ver 236.07 175.74 0.07 0.14 cnd:pre:1s;cnd:pre:2s; +vaudrait valoir ver 236.07 175.74 14.23 11.08 cnd:pre:3s; +vaudras valoir ver 236.07 175.74 0.21 0.07 ind:fut:2s; +vaudrez valoir ver 236.07 175.74 0.03 0.00 ind:fut:2p; +vaudrions valoir ver 236.07 175.74 0.02 0.00 cnd:pre:1p; +vaudrons valoir ver 236.07 175.74 0.00 0.07 ind:fut:1p; +vaudront valoir ver 236.07 175.74 0.42 0.47 ind:fut:3p; +vaurien vaurien nom m s 10.22 2.36 7.06 1.89 +vaurienne vaurien nom f s 10.22 2.36 0.21 0.07 +vauriens vaurien nom m p 10.22 2.36 2.94 0.41 +vaut valoir ver 236.07 175.74 161.53 69.39 ind:pre:3s; +vautour vautour nom m s 5.89 4.39 2.41 2.57 +vautours vautour nom m p 5.89 4.39 3.48 1.82 +vautra vautrer ver 2.73 10.27 0.00 0.07 ind:pas:3s; +vautraient vautrer ver 2.73 10.27 0.00 0.27 ind:imp:3p; +vautrais vautrer ver 2.73 10.27 0.02 0.41 ind:imp:1s; +vautrait vautrer ver 2.73 10.27 0.03 0.54 ind:imp:3s; +vautrant vautrer ver 2.73 10.27 0.12 0.14 par:pre; +vautre vautrer ver 2.73 10.27 0.31 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vautrent vautrer ver 2.73 10.27 0.04 0.14 ind:pre:3p; +vautrer vautrer ver 2.73 10.27 1.07 1.62 inf; +vautreraient vautrer ver 2.73 10.27 0.00 0.14 cnd:pre:3p; +vautrerais vautrer ver 2.73 10.27 0.00 0.07 cnd:pre:1s; +vautrez vautrer ver 2.73 10.27 0.16 0.07 imp:pre:2p;ind:pre:2p; +vautrèrent vautrer ver 2.73 10.27 0.00 0.07 ind:pas:3p; +vautré vautrer ver m s 2.73 10.27 0.60 2.16 par:pas; +vautrée vautrer ver f s 2.73 10.27 0.22 1.28 par:pas; +vautrées vautrer ver f p 2.73 10.27 0.01 0.20 par:pas; +vautrés vautrer ver m p 2.73 10.27 0.16 1.96 par:pas; +vauvert vauvert nom s 0.00 0.14 0.00 0.14 +vaux valoir ver 236.07 175.74 10.79 2.97 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vauxhall vauxhall nom m s 0.06 0.07 0.06 0.07 +veau veau nom m s 8.66 16.96 7.69 13.92 +veaux veau nom m p 8.66 16.96 0.97 3.04 +vecteur vecteur nom m s 0.92 0.27 0.62 0.20 +vecteurs vecteur nom m p 0.92 0.27 0.30 0.07 +vectoriel vectoriel adj m s 0.24 0.07 0.03 0.00 +vectorielle vectoriel adj f s 0.24 0.07 0.21 0.07 +vedettariat vedettariat nom m s 0.07 0.14 0.07 0.14 +vedette vedette nom f s 13.55 20.88 11.18 13.92 +vedettes vedette nom f p 13.55 20.88 2.37 6.96 +veilla veiller ver 38.41 41.62 0.01 0.54 ind:pas:3s; +veillai veiller ver 38.41 41.62 0.10 0.07 ind:pas:1s; +veillaient veiller ver 38.41 41.62 0.18 2.70 ind:imp:3p; +veillais veiller ver 38.41 41.62 0.48 0.54 ind:imp:1s;ind:imp:2s; +veillait veiller ver 38.41 41.62 0.79 8.92 ind:imp:3s; +veillant veiller ver 38.41 41.62 0.25 1.76 par:pre; +veille veille nom f s 17.07 89.05 16.84 87.36 +veillent veiller ver 38.41 41.62 1.14 1.96 ind:pre:3p; +veiller veiller ver 38.41 41.62 10.18 12.91 inf; +veillera veiller ver 38.41 41.62 1.66 0.61 ind:fut:3s; +veillerai veiller ver 38.41 41.62 4.61 0.34 ind:fut:1s; +veillerais veiller ver 38.41 41.62 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +veillerait veiller ver 38.41 41.62 0.23 0.34 cnd:pre:3s; +veilleras veiller ver 38.41 41.62 0.27 0.07 ind:fut:2s; +veillerez veiller ver 38.41 41.62 0.27 0.07 ind:fut:2p; +veillerons veiller ver 38.41 41.62 0.30 0.14 ind:fut:1p; +veilleront veiller ver 38.41 41.62 0.23 0.20 ind:fut:3p; +veilles veiller ver 38.41 41.62 1.19 0.27 ind:pre:2s;sub:pre:2s; +veilleur veilleur nom m s 3.68 12.57 2.10 3.31 +veilleurs veilleur nom m p 3.68 12.57 0.05 0.68 +veilleuse veilleur nom f s 3.68 12.57 1.53 6.89 +veilleuses veilleuse nom f p 0.17 0.00 0.17 0.00 +veillez veiller ver 38.41 41.62 5.11 0.68 imp:pre:2p;ind:pre:2p; +veillions veiller ver 38.41 41.62 0.02 0.07 ind:imp:1p; +veillâmes veiller ver 38.41 41.62 0.00 0.07 ind:pas:1p; +veillons veiller ver 38.41 41.62 0.10 0.14 imp:pre:1p;ind:pre:1p; +veillât veiller ver 38.41 41.62 0.00 0.07 sub:imp:3s; +veillèrent veiller ver 38.41 41.62 0.01 0.07 ind:pas:3p; +veillé veiller ver m s 38.41 41.62 2.71 3.18 par:pas; +veillée veillée nom f s 2.56 8.31 2.34 4.73 +veillées veillée nom f p 2.56 8.31 0.22 3.58 +veillés veiller ver m p 38.41 41.62 0.00 0.20 par:pas; +veinaient veiner ver 0.01 1.55 0.00 0.14 ind:imp:3p; +veinait veiner ver 0.01 1.55 0.01 0.00 ind:imp:3s; +veinard veinard nom m s 5.79 1.89 4.33 0.88 +veinarde veinard nom f s 5.79 1.89 0.90 0.14 +veinardes veinard adj f p 1.75 1.22 0.04 0.00 +veinards veinard nom m p 5.79 1.89 0.53 0.88 +veine veine nom f s 19.74 35.41 10.75 15.27 +veinent veiner ver 0.01 1.55 0.00 0.07 ind:pre:3p; +veines veine nom f p 19.74 35.41 8.99 20.14 +veineuse veineux adj f s 0.20 0.27 0.06 0.20 +veineux veineux adj m s 0.20 0.27 0.14 0.07 +veiné veiné adj m s 0.11 1.01 0.00 0.88 +veinée veiné adj f s 0.11 1.01 0.11 0.00 +veinées veiner ver f p 0.01 1.55 0.00 0.27 par:pas; +veinule veinule nom f s 0.00 1.15 0.00 0.07 +veinules veinule nom f p 0.00 1.15 0.00 1.08 +veinulé veinulé adj m s 0.00 0.14 0.00 0.14 +veinures veinure nom f p 0.00 0.14 0.00 0.14 +veinés veiner ver m p 0.01 1.55 0.00 0.14 par:pas; +velcro velcro nom m s 0.39 0.00 0.39 0.00 +veld veld nom m s 0.01 0.00 0.01 0.00 +veldt veldt nom m s 0.04 0.00 0.04 0.00 +vellave vellave adj f s 0.00 0.07 0.00 0.07 +velléitaire velléitaire adj s 0.04 0.95 0.04 0.95 +velléité velléité nom f s 0.20 3.92 0.10 1.55 +velléités velléité nom f p 0.20 3.92 0.10 2.36 +velours velours nom m 4.31 35.88 4.31 35.88 +veloutaient velouter ver 0.03 1.08 0.00 0.07 ind:imp:3p; +veloutait velouter ver 0.03 1.08 0.00 0.07 ind:imp:3s; +veloute velouter ver 0.03 1.08 0.00 0.14 ind:pre:3s; +veloutent velouter ver 0.03 1.08 0.00 0.07 ind:pre:3p; +velouter velouter ver 0.03 1.08 0.00 0.07 inf; +velouteuse velouteux adj f s 0.01 0.07 0.01 0.00 +velouteux velouteux adj m s 0.01 0.07 0.00 0.07 +velouté velouté adj m s 0.36 4.93 0.30 2.36 +veloutée velouté adj f s 0.36 4.93 0.05 1.15 +veloutées velouter ver f p 0.03 1.08 0.01 0.20 par:pas; +veloutés velouté nom m p 0.27 1.76 0.14 0.07 +velte velte nom f s 0.01 0.00 0.01 0.00 +velu velu adj m s 1.03 7.43 0.47 2.43 +velue velu adj f s 1.03 7.43 0.25 2.50 +velues velu adj f p 1.03 7.43 0.22 1.76 +velum velum nom m s 0.03 0.00 0.03 0.00 +velus velu adj m p 1.03 7.43 0.10 0.74 +velux velux nom m s 0.01 0.00 0.01 0.00 +velvet velvet nom m s 0.15 0.27 0.15 0.27 +venaient venir ver 2763.69 1514.53 9.96 73.65 ind:imp:3p; +venais venir ver 2763.69 1514.53 23.32 29.86 ind:imp:1s;ind:imp:2s; +venaison venaison nom f s 0.08 0.54 0.08 0.41 +venaisons venaison nom f p 0.08 0.54 0.00 0.14 +venait venir ver 2763.69 1514.53 50.25 271.89 ind:imp:3s; +venant venir ver 2763.69 1514.53 17.66 32.36 par:pre; +vend vendre ver 206.95 92.64 22.75 8.65 ind:pre:3s; +vendît vendre ver 206.95 92.64 0.00 0.07 sub:imp:3s; +vendômois vendômois adj m 0.00 0.07 0.00 0.07 +vendable vendable adj s 0.04 0.14 0.02 0.07 +vendables vendable adj p 0.04 0.14 0.02 0.07 +vendaient vendre ver 206.95 92.64 0.56 2.23 ind:imp:3p; +vendais vendre ver 206.95 92.64 1.96 0.95 ind:imp:1s;ind:imp:2s; +vendait vendre ver 206.95 92.64 4.46 9.93 ind:imp:3s; +vendange vendange nom f s 1.54 3.38 0.17 0.95 +vendangeait vendanger ver 0.74 0.20 0.00 0.07 ind:imp:3s; +vendanger vendanger ver 0.74 0.20 0.47 0.00 inf; +vendanges vendange nom f p 1.54 3.38 1.37 2.43 +vendangeur vendangeur nom m s 0.00 0.54 0.00 0.14 +vendangeurs vendangeur nom m p 0.00 0.54 0.00 0.34 +vendangeuses vendangeur nom f p 0.00 0.54 0.00 0.07 +vendangé vendanger ver m s 0.74 0.20 0.00 0.07 par:pas; +vendant vendre ver 206.95 92.64 2.11 2.30 par:pre; +vende vendre ver 206.95 92.64 1.93 0.61 sub:pre:1s;sub:pre:3s; +vendent vendre ver 206.95 92.64 6.09 3.04 ind:pre:3p; +vendes vendre ver 206.95 92.64 0.29 0.00 sub:pre:2s; +vendetta vendetta nom f s 1.25 0.81 1.20 0.74 +vendettas vendetta nom f p 1.25 0.81 0.05 0.07 +vendeur vendeur nom m s 16.05 18.65 11.30 4.93 +vendeurs vendeur nom m p 16.05 18.65 2.71 4.59 +vendeuse vendeur nom f s 16.05 18.65 2.04 7.09 +vendeuses vendeuse nom f p 0.79 0.00 0.79 0.00 +vendez vendre ver 206.95 92.64 6.11 1.22 imp:pre:2p;ind:pre:2p; +vendiez vendre ver 206.95 92.64 0.34 0.07 ind:imp:2p; +vendions vendre ver 206.95 92.64 0.13 1.01 ind:imp:1p; +vendirent vendre ver 206.95 92.64 0.16 0.07 ind:pas:3p; +vendis vendre ver 206.95 92.64 0.31 0.20 ind:pas:1s; +vendisse vendre ver 206.95 92.64 0.00 0.07 sub:imp:1s; +vendit vendre ver 206.95 92.64 0.26 1.96 ind:pas:3s; +vendons vendre ver 206.95 92.64 1.34 0.20 imp:pre:1p;ind:pre:1p; +vendra vendre ver 206.95 92.64 3.03 0.61 ind:fut:3s; +vendrai vendre ver 206.95 92.64 3.15 0.54 ind:fut:1s; +vendraient vendre ver 206.95 92.64 0.23 0.27 cnd:pre:3p; +vendrais vendre ver 206.95 92.64 1.68 0.47 cnd:pre:1s;cnd:pre:2s; +vendrait vendre ver 206.95 92.64 1.34 1.08 cnd:pre:3s; +vendras vendre ver 206.95 92.64 0.48 0.07 ind:fut:2s; +vendre vendre ver 206.95 92.64 73.62 30.81 ind:pre:2p;inf; +vendredi vendredi nom m s 32.49 19.05 31.36 18.31 +vendredis vendredi nom m p 32.49 19.05 1.13 0.74 +vendrez vendre ver 206.95 92.64 0.65 0.41 ind:fut:2p; +vendriez vendre ver 206.95 92.64 0.30 0.00 cnd:pre:2p; +vendrons vendre ver 206.95 92.64 0.44 0.07 ind:fut:1p; +vendront vendre ver 206.95 92.64 0.53 0.27 ind:fut:3p; +vends vendre ver 206.95 92.64 23.35 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vendu vendre ver m s 206.95 92.64 37.62 14.73 par:pas; +vendue vendre ver f s 206.95 92.64 7.17 2.97 par:pas; +vendéen vendéen adj m s 0.00 0.34 0.00 0.14 +vendéenne vendéen adj f s 0.00 0.34 0.00 0.07 +vendéennes vendéen adj f p 0.00 0.34 0.00 0.07 +vendéens vendéen adj m p 0.00 0.34 0.00 0.07 +vendues vendre ver f p 206.95 92.64 1.09 1.08 par:pas; +vendémiaire vendémiaire nom m s 0.00 0.34 0.00 0.34 +vendus vendre ver m p 206.95 92.64 3.47 1.82 par:pas; +venelle venelle nom f s 0.21 3.58 0.21 1.82 +venelles venelle nom f p 0.21 3.58 0.00 1.76 +venette venette nom f s 0.01 0.07 0.01 0.07 +veneur veneur nom m s 0.00 2.91 0.00 2.57 +veneurs veneur nom m p 0.00 2.91 0.00 0.34 +venez venir ver 2763.69 1514.53 304.03 41.42 imp:pre:2p;ind:pre:2p; +venge venger ver 37.73 24.46 3.89 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +vengea venger ver 37.73 24.46 0.17 0.34 ind:pas:3s; +vengeai venger ver 37.73 24.46 0.00 0.07 ind:pas:1s; +vengeaient venger ver 37.73 24.46 0.00 0.41 ind:imp:3p; +vengeais venger ver 37.73 24.46 0.03 0.20 ind:imp:1s; +vengeait venger ver 37.73 24.46 0.16 2.30 ind:imp:3s; +vengeance vengeance nom f s 28.27 17.03 27.85 15.88 +vengeances vengeance nom f p 28.27 17.03 0.42 1.15 +vengeant venger ver 37.73 24.46 0.25 0.34 par:pre; +vengent venger ver 37.73 24.46 0.71 0.88 ind:pre:3p; +vengeons venger ver 37.73 24.46 0.32 0.07 imp:pre:1p;ind:pre:1p; +vengeât venger ver 37.73 24.46 0.00 0.07 sub:imp:3s; +venger venger ver 37.73 24.46 20.93 12.09 inf; +vengera venger ver 37.73 24.46 0.97 0.34 ind:fut:3s; +vengerai venger ver 37.73 24.46 1.88 0.41 ind:fut:1s; +vengerais venger ver 37.73 24.46 0.31 0.14 cnd:pre:1s;cnd:pre:2s; +vengerait venger ver 37.73 24.46 0.21 0.20 cnd:pre:3s; +vengeresse vengeur adj f s 1.54 3.85 0.35 0.81 +vengeresses vengeur adj f p 1.54 3.85 0.01 0.27 +vengerez venger ver 37.73 24.46 0.24 0.00 ind:fut:2p; +vengerons venger ver 37.73 24.46 0.44 0.07 ind:fut:1p; +vengeront venger ver 37.73 24.46 0.58 0.00 ind:fut:3p; +venges venger ver 37.73 24.46 0.59 0.14 ind:pre:2s;sub:pre:2s; +vengeur vengeur nom m s 1.27 1.08 1.15 0.68 +vengeurs vengeur adj m p 1.54 3.85 0.23 0.88 +vengez venger ver 37.73 24.46 0.77 0.20 imp:pre:2p;ind:pre:2p; +vengiez venger ver 37.73 24.46 0.11 0.00 ind:imp:2p; +vengèrent venger ver 37.73 24.46 0.00 0.20 ind:pas:3p; +vengé venger ver m s 37.73 24.46 3.19 2.03 par:pas; +vengée venger ver f s 37.73 24.46 1.23 0.68 par:pas; +vengées venger ver f p 37.73 24.46 0.15 0.07 par:pas; +vengés venger ver m p 37.73 24.46 0.60 0.54 par:pas; +veniez venir ver 2763.69 1514.53 9.37 3.24 ind:imp:2p; +venimeuse venimeux adj f s 2.67 2.77 0.77 0.74 +venimeusement venimeusement adv 0.00 0.07 0.00 0.07 +venimeuses venimeux adj f p 2.67 2.77 0.32 0.34 +venimeux venimeux adj m 2.67 2.77 1.58 1.69 +venin venin nom m s 3.59 3.11 3.57 2.97 +venins venin nom m p 3.59 3.11 0.02 0.14 +venions venir ver 2763.69 1514.53 2.07 5.88 ind:imp:1p; +venir venir ver 2763.69 1514.53 367.13 196.01 inf; +venise venise nom f s 0.03 0.07 0.03 0.07 +venons venir ver 2763.69 1514.53 17.22 8.18 imp:pre:1p;ind:pre:1p; +vent vent nom m s 77.34 220.27 71.50 207.64 +ventôse ventôse nom m s 0.14 0.88 0.14 0.88 +venta venter ver 0.74 0.81 0.26 0.41 ind:pas:3s; +ventail ventail nom m s 0.01 0.00 0.01 0.00 +ventas venter ver 0.74 0.81 0.00 0.14 ind:pas:2s; +vente vente nom f s 27.54 18.99 20.93 12.97 +venter venter ver 0.74 0.81 0.03 0.14 inf; +ventes vente nom f p 27.54 18.99 6.61 6.01 +venteuse venteux adj f s 0.14 0.95 0.03 0.20 +venteuses venteux adj f p 0.14 0.95 0.00 0.27 +venteux venteux adj m 0.14 0.95 0.11 0.47 +ventilant ventiler ver 0.73 0.68 0.00 0.14 par:pre; +ventilateur ventilateur nom m s 3.02 2.64 2.43 2.09 +ventilateurs ventilateur nom m p 3.02 2.64 0.59 0.54 +ventilation ventilation nom f s 2.90 0.47 2.84 0.47 +ventilations ventilation nom f p 2.90 0.47 0.05 0.00 +ventile ventiler ver 0.73 0.68 0.32 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ventiler ventiler ver 0.73 0.68 0.23 0.14 inf; +ventilez ventiler ver 0.73 0.68 0.07 0.00 imp:pre:2p; +ventilo ventilo nom m s 0.54 0.14 0.32 0.07 +ventilos ventilo nom m p 0.54 0.14 0.22 0.07 +ventilé ventilé adj m s 0.35 0.34 0.17 0.14 +ventilée ventiler ver f s 0.73 0.68 0.01 0.34 par:pas; +ventilées ventilé adj f p 0.35 0.34 0.14 0.20 +ventilés ventilé adj m p 0.35 0.34 0.02 0.00 +ventis ventis nom m 0.01 0.07 0.01 0.07 +ventouse ventouse nom f s 0.69 4.66 0.44 1.76 +ventousent ventouser ver 0.01 0.14 0.00 0.07 ind:pre:3p; +ventouses ventouse nom f p 0.69 4.66 0.25 2.91 +ventousé ventouser ver m s 0.01 0.14 0.00 0.07 par:pas; +ventousée ventouser ver f s 0.01 0.14 0.01 0.00 par:pas; +ventral ventral adj m s 0.17 1.28 0.09 0.27 +ventrale ventral adj f s 0.17 1.28 0.08 1.01 +ventre_saint_gris ventre_saint_gris ono 0.00 0.07 0.00 0.07 +ventre ventre nom m s 46.91 141.96 46.07 136.62 +ventrebleu ventrebleu ono 0.02 0.00 0.02 0.00 +ventres ventre nom m p 46.91 141.96 0.84 5.34 +ventriculaire ventriculaire adj s 0.61 0.00 0.61 0.00 +ventricule ventricule nom m s 0.78 0.07 0.55 0.00 +ventricules ventricule nom m p 0.78 0.07 0.23 0.07 +ventriloque ventriloque nom s 1.14 0.47 1.05 0.47 +ventriloques ventriloque nom p 1.14 0.47 0.08 0.00 +ventriloquie ventriloquie nom f s 0.04 0.00 0.04 0.00 +ventripotent ventripotent adj m s 0.01 0.88 0.01 0.74 +ventripotents ventripotent adj m p 0.01 0.88 0.00 0.14 +ventrière ventrière nom f s 0.01 0.14 0.01 0.14 +ventru ventru adj m s 0.12 3.51 0.08 1.82 +ventrée ventrée nom f s 0.11 0.54 0.01 0.41 +ventrue ventru adj f s 0.12 3.51 0.01 0.47 +ventrées ventrée nom f p 0.11 0.54 0.10 0.14 +ventrues ventru adj f p 0.12 3.51 0.00 0.34 +ventrus ventru adj m p 0.12 3.51 0.03 0.88 +vents vent nom m p 77.34 220.27 5.84 12.64 +venté venté adj m s 0.04 0.14 0.02 0.07 +ventée venté adj f s 0.04 0.14 0.03 0.00 +ventées venté adj f p 0.04 0.14 0.00 0.07 +ventés venter ver m p 0.74 0.81 0.00 0.07 par:pas; +venu venir ver m s 2763.69 1514.53 244.70 135.14 par:pas; +venue venir ver f s 2763.69 1514.53 93.14 60.47 par:pas; +venues venir ver f p 2763.69 1514.53 5.49 6.96 par:pas; +venus venir ver m p 2763.69 1514.53 53.34 40.41 par:pas; +ver ver nom m s 12.32 16.01 10.21 5.61 +verbal verbal adj m s 2.27 6.76 0.92 1.89 +verbale verbal adj f s 2.27 6.76 0.71 2.57 +verbalement verbalement adv 0.53 0.54 0.53 0.54 +verbales verbal adj f p 2.27 6.76 0.39 1.76 +verbalisation verbalisation nom f s 0.04 0.00 0.04 0.00 +verbalise verbaliser ver 0.79 0.14 0.27 0.00 ind:pre:1s;ind:pre:3s; +verbaliser verbaliser ver 0.79 0.14 0.42 0.14 inf; +verbalisez verbaliser ver 0.79 0.14 0.02 0.00 imp:pre:2p;ind:pre:2p; +verbalisme verbalisme nom m s 0.00 0.41 0.00 0.41 +verbaliste verbaliste nom s 0.00 0.07 0.00 0.07 +verbalisé verbaliser ver m s 0.79 0.14 0.08 0.00 par:pas; +verbalisée verbaliser ver f s 0.79 0.14 0.01 0.00 par:pas; +verbatim verbatim nom m s 0.01 0.00 0.01 0.00 +verbaux verbal adj m p 2.27 6.76 0.25 0.54 +verbe verbe nom m s 2.02 9.93 1.66 8.38 +verbes verbe nom m p 2.02 9.93 0.36 1.55 +verbeuse verbeux adj f s 0.18 0.47 0.01 0.07 +verbeuses verbeux adj f p 0.18 0.47 0.00 0.14 +verbeux verbeux adj m 0.18 0.47 0.17 0.27 +verbiage verbiage nom m s 0.18 0.74 0.18 0.74 +verbosité verbosité nom f s 0.00 0.27 0.00 0.20 +verbosités verbosité nom f p 0.00 0.27 0.00 0.07 +verdelet verdelet adj m s 0.00 0.07 0.00 0.07 +verdeur verdeur nom f s 0.00 1.08 0.00 1.01 +verdeurs verdeur nom f p 0.00 1.08 0.00 0.07 +verdi verdi adj m s 0.02 1.01 0.02 0.34 +verdict verdict nom m s 8.63 5.47 8.57 5.00 +verdicts verdict nom m p 8.63 5.47 0.07 0.47 +verdie verdir ver f s 0.21 2.97 0.00 0.41 par:pas; +verdier verdier nom m s 0.03 0.14 0.00 0.07 +verdiers verdier nom m p 0.03 0.14 0.03 0.07 +verdies verdi adj f p 0.02 1.01 0.00 0.20 +verdine verdin nom f s 0.00 0.07 0.00 0.07 +verdir verdir ver 0.21 2.97 0.16 0.20 inf; +verdis verdir ver m p 0.21 2.97 0.01 0.14 par:pas; +verdissaient verdir ver 0.21 2.97 0.00 0.27 ind:imp:3p; +verdissait verdir ver 0.21 2.97 0.00 0.41 ind:imp:3s; +verdissant verdissant adj m s 0.00 0.61 0.00 0.20 +verdissante verdissant adj f s 0.00 0.61 0.00 0.27 +verdissants verdissant adj m p 0.00 0.61 0.00 0.14 +verdissent verdir ver 0.21 2.97 0.02 0.20 ind:pre:3p; +verdit verdir ver 0.21 2.97 0.02 0.47 ind:pre:3s;ind:pas:3s; +verdoie verdoyer ver 0.13 0.68 0.11 0.20 ind:pre:3s; +verdoiement verdoiement nom m s 0.14 0.07 0.14 0.07 +verdoient verdoyer ver 0.13 0.68 0.02 0.14 ind:pre:3p; +verdâtre verdâtre adj s 0.11 9.73 0.08 6.62 +verdâtres verdâtre adj p 0.11 9.73 0.03 3.11 +verdoyant verdoyant adj m s 0.67 2.43 0.13 0.95 +verdoyante verdoyant adj f s 0.67 2.43 0.06 0.68 +verdoyantes verdoyant adj f p 0.67 2.43 0.46 0.47 +verdoyants verdoyant adj m p 0.67 2.43 0.02 0.34 +verdoyer verdoyer ver 0.13 0.68 0.00 0.20 inf; +verdure verdure nom f s 1.15 10.95 1.05 10.14 +verdures verdure nom f p 1.15 10.95 0.10 0.81 +verge verge nom f s 0.81 5.41 0.69 3.65 +vergence vergence nom f s 0.02 0.00 0.02 0.00 +verger verger nom m s 3.13 11.69 2.54 5.88 +vergers verger nom m p 3.13 11.69 0.59 5.81 +verges verge nom f p 0.81 5.41 0.13 1.76 +vergeture vergeture nom f s 0.42 0.41 0.01 0.00 +vergetures vergeture nom f p 0.42 0.41 0.41 0.41 +verglacé verglacer ver m s 0.06 0.14 0.03 0.00 par:pas; +verglacée verglacé adj f s 0.06 0.41 0.03 0.07 +verglacées verglacé adj f p 0.06 0.41 0.02 0.14 +verglas verglas nom m 0.94 1.62 0.94 1.62 +vergne vergne nom m s 0.00 0.34 0.00 0.27 +vergnes vergne nom m p 0.00 0.34 0.00 0.07 +vergogne vergogne nom f s 0.51 4.05 0.51 4.05 +vergogneux vergogneux adj m 0.00 0.27 0.00 0.27 +vergé vergé adj m s 0.01 0.34 0.00 0.27 +vergue vergue nom f s 0.41 0.47 0.38 0.27 +vergues vergue nom f p 0.41 0.47 0.03 0.20 +vergés vergé adj m p 0.01 0.34 0.01 0.07 +verjus verjus nom m 0.01 0.27 0.01 0.27 +verlan verlan nom m s 0.07 0.34 0.07 0.34 +vermeil vermeil adj m s 1.66 3.11 1.25 0.88 +vermeille vermeil adj f s 1.66 3.11 0.27 0.81 +vermeilles vermeil adj f p 1.66 3.11 0.03 1.08 +vermeils vermeil adj m p 1.66 3.11 0.10 0.34 +vermicelle vermicelle nom m s 0.29 0.81 0.15 0.54 +vermicelles vermicelle nom m p 0.29 0.81 0.14 0.27 +vermiculaire vermiculaire adj s 0.00 0.14 0.00 0.07 +vermiculaires vermiculaire adj p 0.00 0.14 0.00 0.07 +vermiculées vermiculé adj f p 0.00 0.07 0.00 0.07 +vermifuge vermifuge nom m s 0.03 0.14 0.03 0.14 +vermillon vermillon adj 0.02 1.15 0.02 1.15 +vermillonnait vermillonner ver 0.00 0.27 0.00 0.07 ind:imp:3s; +vermillonnée vermillonner ver f s 0.00 0.27 0.00 0.14 par:pas; +vermillonnés vermillonner ver m p 0.00 0.27 0.00 0.07 par:pas; +vermillons vermillon nom m p 0.02 1.08 0.00 0.14 +vermine vermine nom f s 7.31 4.93 6.77 4.46 +vermines vermine nom f p 7.31 4.93 0.54 0.47 +vermineux vermineux adj m 0.00 0.14 0.00 0.14 +vermisseau vermisseau nom m s 0.49 0.07 0.29 0.07 +vermisseaux vermisseau nom m p 0.49 0.07 0.20 0.00 +vermoulu vermoulu adj m s 0.17 3.31 0.01 1.15 +vermoulue vermoulu adj f s 0.17 3.31 0.02 1.22 +vermoulues vermoulu adj f p 0.17 3.31 0.01 0.47 +vermoulure vermoulure nom f s 0.00 0.34 0.00 0.20 +vermoulures vermoulure nom f p 0.00 0.34 0.00 0.14 +vermoulus vermoulu adj m p 0.17 3.31 0.14 0.47 +vermout vermout nom m s 0.01 0.00 0.01 0.00 +vermouth vermouth nom m s 1.19 1.49 1.18 1.28 +vermouths vermouth nom m p 1.19 1.49 0.01 0.20 +vernaculaire vernaculaire adj s 0.01 0.00 0.01 0.00 +vernal vernal adj m s 0.01 0.00 0.01 0.00 +verne verne nom m s 0.14 0.00 0.14 0.00 +verni vernir ver m s 1.77 8.51 0.66 1.96 par:pas; +vernie vernir ver f s 1.77 8.51 0.14 0.95 par:pas; +vernier vernier nom m s 0.00 0.07 0.00 0.07 +vernies verni adj f p 0.48 6.62 0.15 1.62 +vernir vernir ver 1.77 8.51 0.16 0.61 inf; +vernis vernis nom m 2.81 9.80 2.81 9.80 +vernissage vernissage nom m s 2.21 1.82 1.88 1.35 +vernissages vernissage nom m p 2.21 1.82 0.33 0.47 +vernissaient vernir ver 1.77 8.51 0.00 0.07 ind:imp:3p; +vernissait vernir ver 1.77 8.51 0.01 0.00 ind:imp:3s; +vernissant vernir ver 1.77 8.51 0.00 0.07 par:pre; +vernissent vernir ver 1.77 8.51 0.00 0.07 ind:pre:3p; +vernisser vernisser ver 0.00 1.49 0.00 0.07 inf; +vernisseur vernisseur nom m s 0.10 0.00 0.10 0.00 +vernissé vernissé adj m s 0.00 2.36 0.00 0.34 +vernissée vernisser ver f s 0.00 1.49 0.00 0.47 par:pas; +vernissées vernissé adj f p 0.00 2.36 0.00 1.08 +vernissés vernissé adj m p 0.00 2.36 0.00 0.54 +vernit vernir ver 1.77 8.51 0.13 0.41 ind:pre:3s;ind:pas:3s; +verra voir ver 4119.49 2401.76 78.66 26.28 ind:fut:3s; +verrai voir ver 4119.49 2401.76 31.76 10.54 ind:fut:1s; +verraient voir ver 4119.49 2401.76 1.01 2.23 cnd:pre:3p; +verrais voir ver 4119.49 2401.76 9.03 6.49 cnd:pre:1s;cnd:pre:2s; +verrait voir ver 4119.49 2401.76 6.58 16.76 cnd:pre:3s; +verras voir ver 4119.49 2401.76 51.34 23.78 ind:fut:2s; +verrat verrat nom m s 0.08 0.74 0.08 0.68 +verrats verrat nom m p 0.08 0.74 0.00 0.07 +verre verre nom m s 176.57 230.07 154.13 175.20 +verrerie verrerie nom f s 1.14 0.74 0.93 0.47 +verreries verrerie nom f p 1.14 0.74 0.21 0.27 +verres verre nom m p 176.57 230.07 22.45 54.86 +verrez voir ver 4119.49 2401.76 35.50 18.51 ind:fut:2p; +verrier verrier adj m s 0.00 0.27 0.00 0.07 +verriers verrier adj m p 0.00 0.27 0.00 0.07 +verriez voir ver 4119.49 2401.76 1.84 0.81 cnd:pre:2p; +verrions voir ver 4119.49 2401.76 0.12 1.01 cnd:pre:1p; +verrière verrière nom f s 0.42 5.95 0.42 4.53 +verrières verrière nom f p 0.42 5.95 0.00 1.42 +verrons voir ver 4119.49 2401.76 13.26 7.57 ind:fut:1p; +verront voir ver 4119.49 2401.76 6.54 2.70 ind:fut:3p; +verroterie verroterie nom f s 0.05 1.42 0.04 1.01 +verroteries verroterie nom f p 0.05 1.42 0.01 0.41 +verrou verrou nom m s 5.28 12.03 3.54 7.64 +verrouilla verrouiller ver 8.77 3.72 0.11 0.61 ind:pas:3s; +verrouillage verrouillage nom m s 1.23 0.54 1.23 0.54 +verrouillai verrouiller ver 8.77 3.72 0.00 0.07 ind:pas:1s; +verrouillait verrouiller ver 8.77 3.72 0.15 0.34 ind:imp:3s; +verrouillant verrouiller ver 8.77 3.72 0.00 0.20 par:pre; +verrouille verrouiller ver 8.77 3.72 1.98 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +verrouillent verrouiller ver 8.77 3.72 0.28 0.00 ind:pre:3p; +verrouiller verrouiller ver 8.77 3.72 1.36 0.47 inf; +verrouilles verrouiller ver 8.77 3.72 0.09 0.14 ind:pre:2s; +verrouillez verrouiller ver 8.77 3.72 1.27 0.00 imp:pre:2p;ind:pre:2p; +verrouillons verrouiller ver 8.77 3.72 0.02 0.00 ind:pre:1p; +verrouillèrent verrouiller ver 8.77 3.72 0.00 0.07 ind:pas:3p; +verrouillé verrouiller ver m s 8.77 3.72 1.85 0.61 par:pas; +verrouillée verrouiller ver f s 8.77 3.72 1.24 0.61 par:pas; +verrouillées verrouiller ver f p 8.77 3.72 0.33 0.14 par:pas; +verrouillés verrouiller ver m p 8.77 3.72 0.09 0.20 par:pas; +verrous verrou nom m p 5.28 12.03 1.74 4.39 +verrue verrue nom f s 1.20 3.11 0.66 1.76 +verrues verrue nom f p 1.20 3.11 0.54 1.35 +verruqueuse verruqueux adj f s 0.00 0.14 0.00 0.14 +vers vers pre 227.77 956.15 227.77 956.15 +versa verser ver 31.20 53.99 1.88 10.68 ind:pas:3s; +versai verser ver 31.20 53.99 0.01 1.08 ind:pas:1s; +versaient verser ver 31.20 53.99 0.06 1.55 ind:imp:3p; +versaillais versaillais nom m 0.00 0.54 0.00 0.54 +versaillaise versaillais adj f s 0.00 0.34 0.00 0.20 +versais verser ver 31.20 53.99 0.21 0.47 ind:imp:1s;ind:imp:2s; +versait verser ver 31.20 53.99 0.64 5.61 ind:imp:3s; +versant versant nom m s 0.59 10.68 0.53 8.92 +versants versant nom m p 0.59 10.68 0.06 1.76 +versatile versatile adj s 0.34 0.34 0.33 0.20 +versatiles versatile adj f p 0.34 0.34 0.01 0.14 +versatilité versatilité nom f s 0.02 0.34 0.02 0.34 +verse verser ver 31.20 53.99 7.50 7.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +verseau verseau nom m s 0.02 0.00 0.02 0.00 +versement versement nom m s 2.76 0.88 1.91 0.61 +versements versement nom m p 2.76 0.88 0.85 0.27 +versent verser ver 31.20 53.99 0.29 0.95 ind:pre:3p; +verser verser ver 31.20 53.99 4.62 9.86 ind:pre:2p;inf; +versera verser ver 31.20 53.99 0.60 0.41 ind:fut:3s; +verserai verser ver 31.20 53.99 0.62 0.00 ind:fut:1s; +verserais verser ver 31.20 53.99 0.08 0.07 cnd:pre:1s; +verserait verser ver 31.20 53.99 0.14 0.07 cnd:pre:3s; +verseras verser ver 31.20 53.99 0.16 0.07 ind:fut:2s; +verserez verser ver 31.20 53.99 0.04 0.07 ind:fut:2p; +verseriez verser ver 31.20 53.99 0.02 0.00 cnd:pre:2p; +verserons verser ver 31.20 53.99 0.18 0.00 ind:fut:1p; +verseront verser ver 31.20 53.99 0.04 0.14 ind:fut:3p; +verses verser ver 31.20 53.99 0.93 0.07 ind:pre:2s; +verset verset nom m s 2.46 4.39 1.43 2.03 +versets verset nom m p 2.46 4.39 1.03 2.36 +verseur verseur adj m s 0.03 0.07 0.03 0.00 +verseurs verseur adj m p 0.03 0.07 0.00 0.07 +verseuse verseur nom f s 0.04 0.27 0.04 0.20 +verseuses verseuse nom f p 0.04 0.00 0.04 0.00 +versez verser ver 31.20 53.99 3.60 0.27 imp:pre:2p;ind:pre:2p; +versicolores versicolore adj p 0.00 0.27 0.00 0.27 +versiculets versiculet nom m p 0.00 0.07 0.00 0.07 +versiez verser ver 31.20 53.99 0.02 0.00 ind:imp:2p; +versificateur versificateur nom m s 0.00 0.07 0.00 0.07 +versification versification nom f s 0.01 0.00 0.01 0.00 +versifier versifier ver 0.00 0.07 0.00 0.07 inf; +versifiées versifié adj f p 0.00 0.14 0.00 0.14 +version version nom f s 20.09 12.97 19.10 11.01 +versions version nom f p 20.09 12.97 0.98 1.96 +verso verso nom m s 0.62 1.96 0.61 1.82 +versâmes verser ver 31.20 53.99 0.00 0.07 ind:pas:1p; +versons verser ver 31.20 53.99 0.22 0.14 imp:pre:1p;ind:pre:1p; +versos verso nom m p 0.62 1.96 0.01 0.14 +versât verser ver 31.20 53.99 0.00 0.14 sub:imp:3s; +verstes verste nom f p 0.47 0.14 0.47 0.14 +versèrent verser ver 31.20 53.99 0.01 0.47 ind:pas:3p; +versé verser ver m s 31.20 53.99 7.50 7.70 par:pas; +versée verser ver f s 31.20 53.99 0.86 0.81 par:pas; +versées verser ver f p 31.20 53.99 0.36 0.54 par:pas; +versés verser ver m p 31.20 53.99 0.17 0.54 par:pas; +versus versus pre 0.07 0.07 0.07 0.07 +vert_de_gris vert_de_gris adj 0.02 0.81 0.02 0.81 +vert_de_grisé vert_de_grisé adj m s 0.00 0.34 0.00 0.07 +vert_de_grisé vert_de_grisé adj f s 0.00 0.34 0.00 0.07 +vert_de_grisé vert_de_grisé adj f p 0.00 0.34 0.00 0.14 +vert_de_grisé vert_de_grisé adj m p 0.00 0.34 0.00 0.07 +vert_galant vert_galant nom m s 0.00 0.20 0.00 0.20 +vert_jaune vert_jaune adj m s 0.02 0.07 0.02 0.07 +vert_jaune vert_jaune nom m s 0.02 0.07 0.02 0.07 +vert vert adj m s 52.59 145.14 24.74 59.12 +verte vert adj f s 52.59 145.14 14.24 38.45 +vertement vertement adv 0.14 1.08 0.14 1.08 +vertes vert adj f p 52.59 145.14 4.29 23.72 +vertex vertex nom m 0.00 1.22 0.00 1.22 +vertical vertical adj m s 1.54 15.41 0.61 3.85 +verticale verticale nom f s 1.85 5.07 1.44 4.46 +verticalement verticalement adv 0.17 3.31 0.17 3.31 +verticales verticale nom f p 1.85 5.07 0.41 0.61 +verticalité verticalité nom f s 0.00 0.20 0.00 0.20 +verticaux vertical adj m p 1.54 15.41 0.08 2.77 +verticille verticille nom m s 0.01 0.00 0.01 0.00 +vertige vertige nom m s 9.06 26.62 6.14 24.26 +vertiges vertige nom m p 9.06 26.62 2.91 2.36 +vertigineuse vertigineux adj f s 0.69 10.41 0.14 4.86 +vertigineusement vertigineusement adv 0.10 1.15 0.10 1.15 +vertigineuses vertigineux adj f p 0.69 10.41 0.11 1.35 +vertigineux vertigineux adj m 0.69 10.41 0.45 4.19 +vertigo vertigo nom m s 0.13 0.14 0.13 0.14 +verts vert adj m p 52.59 145.14 9.32 23.85 +vertèbre vertèbre nom f s 1.27 3.38 0.68 0.81 +vertèbres vertèbre nom f p 1.27 3.38 0.59 2.57 +vertu vertu nom f s 17.75 38.45 13.49 24.05 +vertubleu vertubleu ono 0.27 0.00 0.27 0.00 +vertébral vertébral adj m s 3.23 2.36 0.06 0.00 +vertébrale vertébral adj f s 3.23 2.36 3.09 2.36 +vertébrales vertébral adj f p 3.23 2.36 0.06 0.00 +vertébraux vertébral adj m p 3.23 2.36 0.01 0.00 +vertébré vertébré nom m s 0.36 0.14 0.13 0.07 +vertébrés vertébré nom m p 0.36 0.14 0.23 0.07 +vertueuse vertueux adj f s 5.08 3.78 1.92 1.42 +vertueusement vertueusement adv 0.00 0.27 0.00 0.27 +vertueuses vertueux adj f p 5.08 3.78 0.30 0.68 +vertueux vertueux adj m 5.08 3.78 2.85 1.69 +vertugadin vertugadin nom m s 0.01 0.14 0.01 0.14 +vertus vertu nom f p 17.75 38.45 4.26 14.39 +verve verve nom f s 0.40 3.04 0.40 3.04 +verveine verveine nom f s 0.72 1.76 0.72 1.76 +verveux verveux adj m 0.00 0.14 0.00 0.14 +vesce vesce nom f s 0.01 0.20 0.01 0.00 +vesces vesce nom f p 0.01 0.20 0.00 0.20 +vespa vespa nom f s 1.19 0.68 1.19 0.61 +vespas vespa nom f p 1.19 0.68 0.00 0.07 +vespasienne vespasien nom f s 0.12 0.41 0.02 0.00 +vespasiennes vespasien nom f p 0.12 0.41 0.10 0.41 +vesprée vesprée nom f s 0.00 0.07 0.00 0.07 +vespéral vespéral adj m s 0.01 0.88 0.00 0.07 +vespérale vespéral adj f s 0.01 0.88 0.00 0.61 +vespérales vespéral adj f p 0.01 0.88 0.01 0.14 +vespéraux vespéral adj m p 0.01 0.88 0.00 0.07 +vesse_de_loup vesse_de_loup nom f s 0.02 0.20 0.00 0.14 +vesse_de_loup vesse_de_loup nom f p 0.02 0.20 0.02 0.07 +vesses vesse nom f p 0.00 0.14 0.00 0.14 +vessie vessie nom f s 3.34 2.57 3.21 2.23 +vessies vessie nom f p 3.34 2.57 0.13 0.34 +vestalat vestalat nom m s 0.00 0.07 0.00 0.07 +vestale vestale nom f s 0.70 0.81 0.54 0.41 +vestales vestale nom f p 0.70 0.81 0.16 0.41 +veste veste nom f s 37.72 61.62 36.00 55.68 +vestes veste nom f p 37.72 61.62 1.71 5.95 +vestiaire vestiaire nom m s 5.71 12.43 4.04 9.86 +vestiaires vestiaire nom m p 5.71 12.43 1.67 2.57 +vestibule vestibule nom m s 0.96 12.77 0.96 12.43 +vestibules vestibule nom m p 0.96 12.77 0.00 0.34 +vestige vestige nom m s 1.48 7.77 0.54 1.62 +vestiges vestige nom m p 1.48 7.77 0.94 6.15 +vestimentaire vestimentaire adj s 0.90 2.84 0.63 1.76 +vestimentaires vestimentaire adj p 0.90 2.84 0.27 1.08 +veston veston nom m s 1.68 16.55 1.66 15.27 +vestons veston nom m p 1.68 16.55 0.02 1.28 +veto veto nom m 1.94 0.74 1.94 0.74 +veuf veuf adj m s 8.39 10.14 1.65 3.11 +veufs veuf nom m p 16.52 32.70 0.06 0.20 +veuille vouloir ver_sup 5249.31 1640.14 10.13 8.45 imp:pre:2s;sub:pre:1s;sub:pre:3s; +veuillent vouloir ver_sup 5249.31 1640.14 1.15 1.08 sub:pre:3p; +veuilles vouloir ver_sup 5249.31 1640.14 6.72 1.28 sub:pre:2s; +veuillez vouloir ver_sup 5249.31 1640.14 45.84 8.99 imp:pre:2p; +veule veule adj s 0.18 1.76 0.16 1.42 +veulent vouloir ver_sup 5249.31 1640.14 142.38 39.05 ind:pre:3p; +veulerie veulerie nom f s 0.21 2.50 0.21 2.36 +veuleries veulerie nom f p 0.21 2.50 0.00 0.14 +veules veule adj m p 0.18 1.76 0.02 0.34 +veut vouloir ver_sup 5249.31 1640.14 701.19 210.61 ind:pre:3s; +veuvage veuvage nom m s 0.78 2.84 0.78 2.50 +veuvages veuvage nom m p 0.78 2.84 0.00 0.34 +veuve veuf nom f s 16.52 32.70 15.64 26.89 +veuves veuve nom f p 1.89 0.00 1.89 0.00 +veux vouloir ver_sup 5249.31 1640.14 2486.93 377.97 ind:pre:1s;ind:pre:2s; +vexa vexer ver 15.56 11.76 0.00 0.34 ind:pas:3s; +vexai vexer ver 15.56 11.76 0.00 0.07 ind:pas:1s; +vexait vexer ver 15.56 11.76 0.02 0.54 ind:imp:3s; +vexant vexant adj m s 0.40 1.01 0.39 0.74 +vexante vexant adj f s 0.40 1.01 0.01 0.14 +vexantes vexant adj f p 0.40 1.01 0.00 0.07 +vexants vexant adj m p 0.40 1.01 0.00 0.07 +vexation vexation nom f s 0.17 1.82 0.12 0.68 +vexations vexation nom f p 0.17 1.82 0.05 1.15 +vexatoire vexatoire adj s 0.00 0.20 0.00 0.14 +vexatoires vexatoire adj f p 0.00 0.20 0.00 0.07 +vexe vexer ver 15.56 11.76 1.65 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vexent vexer ver 15.56 11.76 0.12 0.07 ind:pre:3p; +vexer vexer ver 15.56 11.76 4.30 2.57 inf;; +vexera vexer ver 15.56 11.76 0.26 0.00 ind:fut:3s; +vexerai vexer ver 15.56 11.76 0.30 0.00 ind:fut:1s; +vexerait vexer ver 15.56 11.76 0.02 0.41 cnd:pre:3s; +vexeras vexer ver 15.56 11.76 0.14 0.07 ind:fut:2s; +vexerez vexer ver 15.56 11.76 0.01 0.00 ind:fut:2p; +vexerions vexer ver 15.56 11.76 0.00 0.07 cnd:pre:1p; +vexes vexer ver 15.56 11.76 0.34 0.14 ind:pre:2s; +vexez vexer ver 15.56 11.76 0.41 0.00 imp:pre:2p;ind:pre:2p; +vexons vexer ver 15.56 11.76 0.04 0.00 imp:pre:1p;ind:pre:1p; +vexé vexer ver m s 15.56 11.76 5.21 4.19 par:pas; +vexée vexer ver f s 15.56 11.76 2.34 1.08 par:pas; +vexées vexer ver f p 15.56 11.76 0.01 0.00 par:pas; +vexés vexer ver m p 15.56 11.76 0.36 0.34 par:pas; +via via pre 6.53 5.41 6.53 5.41 +viabilité viabilité nom f s 0.10 0.07 0.10 0.07 +viable viable adj s 1.57 1.22 1.27 0.95 +viables viable adj p 1.57 1.22 0.29 0.27 +viaduc viaduc nom m s 0.17 0.88 0.17 0.88 +viager viager nom m s 0.14 0.27 0.14 0.27 +viagra viagra nom m s 0.45 0.00 0.45 0.00 +viagère viager adj f s 0.03 0.14 0.03 0.14 +viandard viandard nom m s 0.00 0.07 0.00 0.07 +viandasse viander ver 0.05 0.41 0.00 0.20 sub:imp:1s; +viande viande nom f s 44.43 45.00 43.78 41.35 +viander viander ver 0.05 0.41 0.01 0.14 inf; +viandes viande nom f p 44.43 45.00 0.65 3.65 +viandeuse viandeux adj f s 0.00 0.07 0.00 0.07 +viandox viandox nom m 0.02 0.68 0.02 0.68 +viandé viander ver m s 0.05 0.41 0.04 0.07 par:pas; +viatique viatique nom m s 0.01 1.28 0.01 1.28 +vibra vibrer ver 4.73 24.53 0.00 0.95 ind:pas:3s; +vibraient vibrer ver 4.73 24.53 0.06 0.68 ind:imp:3p; +vibrais vibrer ver 4.73 24.53 0.01 0.20 ind:imp:1s; +vibrait vibrer ver 4.73 24.53 0.22 6.22 ind:imp:3s; +vibrant vibrant adj m s 0.86 6.89 0.56 1.89 +vibrante vibrant adj f s 0.86 6.89 0.22 3.78 +vibrantes vibrant adj f p 0.86 6.89 0.03 0.88 +vibrants vibrant adj m p 0.86 6.89 0.05 0.34 +vibraphone vibraphone nom m s 0.03 0.14 0.03 0.07 +vibraphones vibraphone nom m p 0.03 0.14 0.00 0.07 +vibrateur vibrateur nom m s 0.14 0.07 0.14 0.00 +vibrateurs vibrateur nom m p 0.14 0.07 0.01 0.07 +vibratile vibratile adj f s 0.14 0.34 0.01 0.20 +vibratiles vibratile adj m p 0.14 0.34 0.14 0.14 +vibration vibration nom f s 4.49 12.64 1.28 8.58 +vibrations vibration nom f p 4.49 12.64 3.21 4.05 +vibrato vibrato nom m s 0.12 0.54 0.12 0.34 +vibratoire vibratoire adj s 0.11 0.47 0.10 0.34 +vibratoires vibratoire adj p 0.11 0.47 0.01 0.14 +vibratos vibrato nom m p 0.12 0.54 0.00 0.20 +vibre vibrer ver 4.73 24.53 1.79 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vibrent vibrer ver 4.73 24.53 0.23 0.68 ind:pre:3p; +vibrer vibrer ver 4.73 24.53 2.06 8.31 inf; +vibrera vibrer ver 4.73 24.53 0.03 0.00 ind:fut:3s; +vibreur vibreur nom m s 0.25 0.00 0.25 0.00 +vibrez vibrer ver 4.73 24.53 0.01 0.00 imp:pre:2p; +vibrionnaient vibrionner ver 0.00 0.34 0.00 0.07 ind:imp:3p; +vibrionnait vibrionner ver 0.00 0.34 0.00 0.14 ind:imp:3s; +vibrionnant vibrionner ver 0.00 0.34 0.00 0.07 par:pre; +vibrionne vibrionner ver 0.00 0.34 0.00 0.07 ind:pre:1s; +vibrions vibrion nom m p 0.14 0.20 0.14 0.20 +vibrisses vibrisse nom f p 0.00 0.14 0.00 0.14 +vibro_masseur vibro_masseur nom m s 0.08 0.07 0.08 0.07 +vibromasseur vibromasseur nom m s 0.93 0.00 0.85 0.00 +vibromasseurs vibromasseur nom m p 0.93 0.00 0.08 0.00 +vibré vibrer ver m s 4.73 24.53 0.04 0.95 par:pas; +vibrée vibrer ver f s 4.73 24.53 0.01 0.07 par:pas; +vibrées vibrer ver f p 4.73 24.53 0.00 0.07 par:pas; +vibura viburer ver 0.00 0.81 0.00 0.07 ind:pas:3s; +viburait viburer ver 0.00 0.81 0.00 0.07 ind:imp:3s; +vibure viburer ver 0.00 0.81 0.00 0.68 ind:pre:3s; +vicaire vicaire nom m s 0.71 2.57 0.68 2.23 +vicaires vicaire nom m p 0.71 2.57 0.04 0.34 +vice_amiral vice_amiral nom m s 0.10 0.61 0.10 0.61 +vice_chancelier vice_chancelier nom m s 0.07 0.00 0.07 0.00 +vice_consul vice_consul nom m s 0.18 0.54 0.18 0.54 +vice_ministre vice_ministre nom s 0.27 0.27 0.27 0.20 +vice_ministre vice_ministre nom p 0.27 0.27 0.00 0.07 +vice_premier vice_premier nom m s 0.01 0.00 0.01 0.00 +vice_présidence vice_présidence nom f s 0.57 0.00 0.57 0.00 +vice_président vice_président nom m s 8.63 0.61 7.91 0.54 +vice_président vice_président nom f s 8.63 0.61 0.60 0.00 +vice_président vice_président nom m p 8.63 0.61 0.12 0.07 +vice_recteur vice_recteur nom m s 0.10 0.00 0.10 0.00 +vice_roi vice_roi nom m s 0.94 0.54 0.84 0.54 +vice_roi vice_roi nom m p 0.94 0.54 0.10 0.00 +vice_versa vice_versa adv 0.85 0.27 0.85 0.27 +vice vice nom m s 12.29 18.45 7.78 13.45 +vicelard vicelard adj m s 0.89 3.38 0.60 1.49 +vicelarde vicelard adj f s 0.89 3.38 0.07 0.81 +vicelardes vicelard adj f p 0.89 3.38 0.01 0.27 +vicelardise vicelardise nom f s 0.00 0.20 0.00 0.14 +vicelardises vicelardise nom f p 0.00 0.20 0.00 0.07 +vicelards vicelard adj m p 0.89 3.38 0.20 0.81 +vices vice nom m p 12.29 18.45 4.52 5.00 +vichy vichy nom m s 0.69 1.22 0.69 1.22 +vichysme vichysme nom m s 0.00 0.07 0.00 0.07 +vichyssois vichyssois adj m 0.06 0.07 0.00 0.07 +vichyssois vichyssois nom m 0.00 0.07 0.00 0.07 +vichyssoise vichyssois adj f s 0.06 0.07 0.06 0.00 +vichyste vichyste adj s 0.03 0.27 0.01 0.14 +vichystes vichyste adj p 0.03 0.27 0.02 0.14 +vicier vicier ver 0.22 0.41 0.00 0.07 inf; +vicieuse vicieux adj f s 5.75 7.03 1.11 1.96 +vicieusement vicieusement adv 0.07 0.27 0.07 0.27 +vicieuses vicieux adj f p 5.75 7.03 0.45 0.27 +vicieux vicieux adj m 5.75 7.03 4.19 4.80 +vicinal vicinal adj m s 0.00 0.81 0.00 0.47 +vicinales vicinal adj f p 0.00 0.81 0.00 0.07 +vicinalité vicinalité nom f s 0.00 0.07 0.00 0.07 +vicinaux vicinal adj m p 0.00 0.81 0.00 0.27 +vicissitude vicissitude nom f s 0.06 2.16 0.02 0.14 +vicissitudes vicissitude nom f p 0.06 2.16 0.04 2.03 +vicié vicié adj m s 0.23 0.54 0.23 0.41 +viciée vicier ver f s 0.22 0.41 0.00 0.14 par:pas; +viciés vicié adj m p 0.23 0.54 0.00 0.14 +vicomte vicomte nom m s 0.43 6.28 0.41 5.61 +vicomtes vicomte nom m p 0.43 6.28 0.00 0.20 +vicomtesse vicomte nom f s 0.43 6.28 0.03 0.41 +vicomtesses vicomtesse nom f p 0.01 0.00 0.01 0.00 +vicomté vicomté nom f s 0.00 0.41 0.00 0.41 +victimaire victimaire nom m s 0.00 0.07 0.00 0.07 +victime victime nom f s 106.25 46.22 66.47 28.45 +victimes victime nom f p 106.25 46.22 39.78 17.77 +victimologie victimologie nom f s 0.04 0.00 0.04 0.00 +victoire victoire nom f s 34.96 63.24 31.31 57.23 +victoires victoire nom f p 34.96 63.24 3.65 6.01 +victoria victoria nom s 0.02 0.47 0.02 0.34 +victorias victoria nom p 0.02 0.47 0.00 0.14 +victorien victorien adj m s 0.49 1.35 0.12 0.41 +victorienne victorien adj f s 0.49 1.35 0.25 0.81 +victoriennes victorien adj f p 0.49 1.35 0.04 0.14 +victoriens victorien adj m p 0.49 1.35 0.08 0.00 +victorieuse victorieux adj f s 2.95 9.32 0.22 4.73 +victorieusement victorieusement adv 0.00 1.82 0.00 1.82 +victorieuses victorieux adj f p 2.95 9.32 0.19 1.35 +victorieux victorieux adj m 2.95 9.32 2.54 3.24 +victuaille victuaille nom f s 0.42 4.26 0.01 0.07 +victuailles victuaille nom f p 0.42 4.26 0.41 4.19 +vida vider ver 30.68 70.81 1.06 9.32 ind:pas:3s; +vidage vidage nom m s 0.04 0.14 0.04 0.14 +vidai vider ver 30.68 70.81 0.00 1.22 ind:pas:1s; +vidaient vider ver 30.68 70.81 0.08 1.76 ind:imp:3p; +vidais vider ver 30.68 70.81 0.47 0.34 ind:imp:1s; +vidait vider ver 30.68 70.81 0.43 5.95 ind:imp:3s; +vidame vidame nom m s 0.00 0.07 0.00 0.07 +vidange vidange nom f s 1.29 1.55 1.09 1.35 +vidanger vidanger ver 0.30 0.34 0.20 0.14 inf; +vidanges vidange nom f p 1.29 1.55 0.20 0.20 +vidangeur vidangeur nom m s 0.01 0.27 0.01 0.07 +vidangeurs vidangeur nom m p 0.01 0.27 0.00 0.20 +vidangez vidanger ver 0.30 0.34 0.02 0.07 imp:pre:2p;ind:pre:2p; +vidangé vidanger ver m s 0.30 0.34 0.02 0.07 par:pas; +vidangée vidanger ver f s 0.30 0.34 0.02 0.00 par:pas; +vidant vider ver 30.68 70.81 0.24 2.84 par:pre; +vidas vider ver 30.68 70.81 0.10 0.07 ind:pas:2s; +vide_gousset vide_gousset nom m s 0.27 0.00 0.27 0.00 +vide_greniers vide_greniers nom m 0.04 0.00 0.04 0.00 +vide_ordure vide_ordure nom m s 0.06 0.00 0.06 0.00 +vide_ordures vide_ordures nom m 0.55 1.22 0.55 1.22 +vide_poche vide_poche nom m s 0.04 0.14 0.04 0.14 +vide_poches vide_poches nom m 0.00 0.27 0.00 0.27 +vide vide adj s 60.33 147.50 48.53 102.84 +vident vider ver 30.68 70.81 0.81 1.49 ind:pre:3p; +vider vider ver 30.68 70.81 8.31 16.82 inf; +videra vider ver 30.68 70.81 0.16 0.14 ind:fut:3s; +viderai vider ver 30.68 70.81 0.11 0.14 ind:fut:1s; +viderais vider ver 30.68 70.81 0.15 0.07 cnd:pre:1s; +viderait vider ver 30.68 70.81 0.47 0.47 cnd:pre:3s; +videras vider ver 30.68 70.81 0.00 0.07 ind:fut:2s; +viderions vider ver 30.68 70.81 0.01 0.00 cnd:pre:1p; +videront vider ver 30.68 70.81 0.14 0.07 ind:fut:3p; +vides vide adj p 60.33 147.50 11.80 44.66 +videur videur nom m s 1.48 1.22 1.24 0.74 +videurs videur nom m p 1.48 1.22 0.24 0.47 +videz vider ver 30.68 70.81 2.71 0.27 imp:pre:2p;ind:pre:2p; +vidicon vidicon nom m s 0.01 0.00 0.01 0.00 +vidiez vider ver 30.68 70.81 0.12 0.00 ind:imp:2p; +vidons vider ver 30.68 70.81 0.09 0.14 imp:pre:1p;ind:pre:1p; +vidèrent vider ver 30.68 70.81 0.11 1.35 ind:pas:3p; +vidé vider ver m s 30.68 70.81 7.22 11.89 par:pas; +vidéaste vidéaste nom s 0.08 0.00 0.07 0.00 +vidéastes vidéaste nom p 0.08 0.00 0.01 0.00 +vidée vider ver f s 30.68 70.81 1.42 3.45 par:pas; +vidées vider ver f p 30.68 70.81 0.23 1.28 par:pas; +viduité viduité nom f s 0.01 0.00 0.01 0.00 +vidéo_clip vidéo_clip nom m s 0.19 0.27 0.14 0.20 +vidéo_clip vidéo_clip nom m p 0.19 0.27 0.04 0.07 +vidéo_club vidéo_club nom f s 0.44 0.00 0.44 0.00 +vidéo_espion vidéo_espion nom m s 0.00 0.07 0.00 0.07 +vidéo vidéo adj 23.61 0.74 23.61 0.74 +vidéocassette vidéocassette nom f s 0.10 0.00 0.06 0.00 +vidéocassettes vidéocassette nom f p 0.10 0.00 0.04 0.00 +vidéoclip vidéoclip nom m s 0.02 0.00 0.02 0.00 +vidéoclub vidéoclub nom m s 1.34 0.00 1.34 0.00 +vidéoconférence vidéoconférence nom f s 0.05 0.00 0.05 0.00 +vidéogramme vidéogramme nom m s 0.01 0.00 0.01 0.00 +vidéophone vidéophone nom m s 0.04 0.00 0.04 0.00 +vidéophonie vidéophonie nom f s 0.01 0.00 0.01 0.00 +vidéos vidéo nom f p 21.34 0.41 6.10 0.20 +vidéosurveillance vidéosurveillance nom f s 0.42 0.00 0.42 0.00 +vidéothèque vidéothèque nom f s 0.36 0.00 0.36 0.00 +vidures vidure nom f p 0.00 0.07 0.00 0.07 +vidés vider ver m p 30.68 70.81 0.46 2.23 par:pas; +vie vie nom f s 1021.22 853.31 986.59 835.47 +vieil vieil adj m s 34.69 51.22 34.69 51.22 +vieillard vieillard nom m s 11.75 55.14 7.62 37.77 +vieillarde vieillard nom f s 11.75 55.14 0.16 0.34 +vieillardes vieillard nom f p 11.75 55.14 0.00 0.34 +vieillards vieillard nom m p 11.75 55.14 3.96 16.69 +vieille vieux adj f s 282.20 512.91 84.59 184.12 +vieillerie vieillerie nom f s 1.91 2.30 0.54 0.68 +vieilleries vieillerie nom f p 1.91 2.30 1.37 1.62 +vieilles vieux adj f p 282.20 512.91 17.52 55.47 +vieillesse vieillesse nom f s 4.88 14.53 4.75 14.39 +vieillesses vieillesse nom f p 4.88 14.53 0.14 0.14 +vieilli vieillir ver m s 20.47 32.23 4.28 9.39 par:pas; +vieillie vieillir ver f s 20.47 32.23 0.30 0.61 par:pas; +vieillies vieillir ver f p 20.47 32.23 0.01 0.00 par:pas; +vieillir vieillir ver 20.47 32.23 5.49 8.58 inf; +vieillira vieillir ver 20.47 32.23 0.12 0.41 ind:fut:3s; +vieillirai vieillir ver 20.47 32.23 0.23 0.14 ind:fut:1s; +vieilliraient vieillir ver 20.47 32.23 0.01 0.07 cnd:pre:3p; +vieillirais vieillir ver 20.47 32.23 0.01 0.00 cnd:pre:1s; +vieillirait vieillir ver 20.47 32.23 0.07 0.41 cnd:pre:3s; +vieilliras vieillir ver 20.47 32.23 0.33 0.14 ind:fut:2s; +vieillirent vieillir ver 20.47 32.23 0.02 0.00 ind:pas:3p; +vieillirez vieillir ver 20.47 32.23 0.06 0.07 ind:fut:2p; +vieillirons vieillir ver 20.47 32.23 0.07 0.07 ind:fut:1p; +vieilliront vieillir ver 20.47 32.23 0.30 0.07 ind:fut:3p; +vieillis vieillir ver m p 20.47 32.23 2.74 1.89 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +vieillissaient vieillir ver 20.47 32.23 0.01 0.47 ind:imp:3p; +vieillissais vieillir ver 20.47 32.23 0.11 0.34 ind:imp:1s;ind:imp:2s; +vieillissait vieillir ver 20.47 32.23 0.48 2.50 ind:imp:3s; +vieillissant vieillir ver 20.47 32.23 1.38 2.23 par:pre; +vieillissante vieillissant adj f s 0.41 2.30 0.18 0.81 +vieillissantes vieillissant adj f p 0.41 2.30 0.12 0.20 +vieillissants vieillissant adj m p 0.41 2.30 0.04 0.41 +vieillisse vieillir ver 20.47 32.23 0.13 0.27 sub:pre:1s;sub:pre:3s; +vieillissement vieillissement nom m s 1.04 2.50 1.04 2.50 +vieillissent vieillir ver 20.47 32.23 0.76 0.88 ind:pre:3p; +vieillissez vieillir ver 20.47 32.23 0.29 0.14 imp:pre:2p;ind:pre:2p; +vieillissiez vieillir ver 20.47 32.23 0.00 0.07 ind:imp:2p; +vieillissions vieillir ver 20.47 32.23 0.00 0.07 ind:imp:1p; +vieillissons vieillir ver 20.47 32.23 0.08 0.00 imp:pre:1p;ind:pre:1p; +vieillit vieillir ver 20.47 32.23 3.19 3.45 ind:pre:3s;ind:pas:3s; +vieillot vieillot adj m s 0.34 2.57 0.25 1.28 +vieillots vieillot adj m p 0.34 2.57 0.01 0.27 +vieillotte vieillot adj f s 0.34 2.57 0.04 0.74 +vieillottes vieillot adj f p 0.34 2.57 0.03 0.27 +vielle vielle nom f s 2.01 0.68 1.49 0.47 +vielles vielle nom f p 2.01 0.68 0.52 0.20 +vielleux vielleux nom m 0.14 0.07 0.14 0.07 +viendra venir ver 2763.69 1514.53 52.92 23.11 ind:fut:3s; +viendrai venir ver 2763.69 1514.53 21.68 5.95 ind:fut:1s; +viendraient venir ver 2763.69 1514.53 1.68 6.35 cnd:pre:3p; +viendrais venir ver 2763.69 1514.53 11.80 2.70 cnd:pre:1s;cnd:pre:2s; +viendrait venir ver 2763.69 1514.53 9.89 20.27 cnd:pre:3s; +viendras venir ver 2763.69 1514.53 13.72 3.85 ind:fut:2s; +viendrez venir ver 2763.69 1514.53 5.73 4.05 ind:fut:2p; +viendriez venir ver 2763.69 1514.53 3.04 1.15 cnd:pre:2p; +viendrions venir ver 2763.69 1514.53 0.13 0.34 cnd:pre:1p; +viendrons venir ver 2763.69 1514.53 1.67 0.74 ind:fut:1p; +viendront venir ver 2763.69 1514.53 14.25 8.31 ind:fut:3p; +vienne venir ver 2763.69 1514.53 34.52 25.00 sub:pre:1s;sub:pre:3s; +viennent venir ver 2763.69 1514.53 76.48 62.77 ind:pre:3p;sub:pre:3p; +viennes venir ver 2763.69 1514.53 11.59 3.11 sub:pre:2s; +viennois viennois adj m 0.27 2.23 0.18 0.88 +viennoise viennois adj f s 0.27 2.23 0.08 0.81 +viennoiserie viennoiserie nom f s 0.66 0.00 0.52 0.00 +viennoiseries viennoiserie nom f p 0.66 0.00 0.14 0.00 +viennoises viennois adj f p 0.27 2.23 0.01 0.54 +viens venir ver 2763.69 1514.53 944.68 126.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vient venir ver 2763.69 1514.53 352.24 206.22 ind:pre:3s; +vierge vierge adj s 26.03 25.14 24.22 21.82 +vierges vierge nom f p 23.79 25.61 4.38 2.43 +vies vie nom f p 1021.22 853.31 34.63 17.84 +vietnamien vietnamien adj m s 1.04 0.68 0.45 0.41 +vietnamienne vietnamien adj f s 1.04 0.68 0.28 0.14 +vietnamiennes vietnamien adj f p 1.04 0.68 0.20 0.07 +vietnamiens vietnamien nom m p 1.19 0.74 0.81 0.14 +vieux_rose vieux_rose adj m 0.00 0.20 0.00 0.20 +vieux vieux adj m 282.20 512.91 180.08 273.31 +vif_argent vif_argent nom m s 0.21 0.20 0.21 0.20 +vif vif adj m s 22.95 95.07 9.27 41.62 +vifs vif adj m p 22.95 95.07 2.88 10.14 +vigie vigie nom f s 0.68 1.69 0.51 1.35 +vigies vigie nom f p 0.68 1.69 0.17 0.34 +vigil vigil adj m s 0.34 0.00 0.04 0.00 +vigilance vigilance nom f s 0.88 8.18 0.88 7.97 +vigilances vigilance nom f p 0.88 8.18 0.00 0.20 +vigilant vigilant adj m s 4.61 4.66 1.73 1.82 +vigilante vigilant adj f s 4.61 4.66 1.04 1.49 +vigilantes vigilant adj f p 4.61 4.66 0.03 0.41 +vigilants vigilant adj m p 4.61 4.66 1.80 0.95 +vigile vigile nom s 3.44 1.42 2.09 0.68 +vigiler vigiler ver 0.24 0.27 0.01 0.00 inf; +vigiles vigile nom p 3.44 1.42 1.35 0.74 +vigne vigne nom f s 6.87 20.41 4.97 10.61 +vigneaux vigneau nom m p 0.00 0.07 0.00 0.07 +vigneron vigneron nom m s 1.18 1.96 0.36 0.61 +vigneronne vigneron nom f s 1.18 1.96 0.14 0.00 +vigneronnes vigneron nom f p 1.18 1.96 0.00 0.07 +vignerons vigneron nom m p 1.18 1.96 0.68 1.28 +vignes vigne nom f p 6.87 20.41 1.90 9.80 +vignette vignette nom f s 0.26 1.76 0.19 0.41 +vignettes vignette nom f p 0.26 1.76 0.07 1.35 +vignoble vignoble nom m s 1.52 1.96 1.10 0.74 +vignobles vignoble nom m p 1.52 1.96 0.43 1.22 +vigogne vigogne nom f s 0.12 0.20 0.12 0.20 +vigoureuse vigoureux adj f s 2.62 10.54 0.56 3.18 +vigoureusement vigoureusement adv 0.55 3.92 0.55 3.92 +vigoureuses vigoureux adj f p 2.62 10.54 0.01 1.01 +vigoureux vigoureux adj m 2.62 10.54 2.05 6.35 +vigousse vigousse adj m s 0.00 0.07 0.00 0.07 +vigueur vigueur nom f s 3.61 15.61 3.61 15.54 +vigueurs vigueur nom f p 3.61 15.61 0.00 0.07 +viguier viguier nom m s 0.00 0.88 0.00 0.81 +viguiers viguier nom m p 0.00 0.88 0.00 0.07 +viking viking nom m s 0.43 0.20 0.25 0.00 +vikings viking nom m p 0.43 0.20 0.19 0.20 +vil vil adj m s 6.07 3.18 3.54 2.16 +vilain vilain adj m s 20.67 19.32 11.03 8.72 +vilaine vilain adj f s 20.67 19.32 6.23 6.22 +vilainement vilainement adv 0.04 0.47 0.04 0.47 +vilaines vilain adj f p 20.67 19.32 1.81 2.57 +vilains vilain adj m p 20.67 19.32 1.61 1.82 +vile vil adj f s 6.07 3.18 1.72 0.47 +vilebrequin vilebrequin nom m s 0.13 0.68 0.12 0.68 +vilebrequins vilebrequin nom m p 0.13 0.68 0.01 0.00 +vilement vilement adv 0.14 0.00 0.14 0.00 +vilenie vilenie nom f s 0.58 1.15 0.46 0.74 +vilenies vilenie nom f p 0.58 1.15 0.13 0.41 +viles vil adj f p 6.07 3.18 0.22 0.20 +vilipendaient vilipender ver 0.20 0.61 0.01 0.00 ind:imp:3p; +vilipendant vilipender ver 0.20 0.61 0.01 0.07 par:pre; +vilipender vilipender ver 0.20 0.61 0.15 0.07 inf; +vilipendé vilipender ver m s 0.20 0.61 0.03 0.27 par:pas; +vilipendées vilipender ver f p 0.20 0.61 0.00 0.07 par:pas; +vilipendés vilipender ver m p 0.20 0.61 0.00 0.14 par:pas; +villa villa nom f s 16.61 33.72 15.30 24.80 +village village nom m s 95.82 143.99 87.60 118.24 +villageois villageois nom m 4.83 2.91 4.59 2.36 +villageoise villageois nom f s 4.83 2.91 0.07 0.27 +villageoises villageois nom f p 4.83 2.91 0.17 0.27 +villages village nom m p 95.82 143.99 8.22 25.74 +villas villa nom f p 16.61 33.72 1.31 8.92 +ville_champignon ville_champignon nom f s 0.02 0.00 0.02 0.00 +ville_dortoir ville_dortoir nom f s 0.00 0.07 0.00 0.07 +ville ville nom f s 295.14 352.97 277.98 311.69 +villes_clé villes_clé nom f p 0.01 0.00 0.01 0.00 +villes ville nom f p 295.14 352.97 17.17 41.28 +villette villette nom f s 0.18 0.88 0.18 0.88 +villégiaturait villégiaturer ver 0.01 0.14 0.00 0.07 ind:imp:3s; +villégiature villégiature nom f s 0.10 2.70 0.10 2.16 +villégiaturer villégiaturer ver 0.01 0.14 0.01 0.00 inf; +villégiatures villégiature nom f p 0.10 2.70 0.00 0.54 +villégiaturé villégiaturer ver m s 0.01 0.14 0.00 0.07 par:pas; +vils vil adj m p 6.07 3.18 0.59 0.34 +vin vin nom m s 86.86 110.47 80.92 99.93 +vina vina nom f 0.11 0.00 0.11 0.00 +vinaigre vinaigre nom m s 2.91 5.61 2.91 5.54 +vinaigrer vinaigrer ver 0.01 0.47 0.00 0.14 inf; +vinaigres vinaigre nom m p 2.91 5.61 0.00 0.07 +vinaigrette vinaigrette nom f s 0.59 0.68 0.59 0.68 +vinaigré vinaigrer ver m s 0.01 0.47 0.01 0.00 par:pas; +vinaigrée vinaigrer ver f s 0.01 0.47 0.00 0.20 par:pas; +vinasse vinasse nom f s 0.21 1.62 0.21 1.62 +vindicatif vindicatif adj m s 1.10 2.23 0.79 1.28 +vindicatifs vindicatif adj m p 1.10 2.23 0.07 0.47 +vindicative vindicatif adj f s 1.10 2.23 0.12 0.41 +vindicativement vindicativement adv 0.00 0.07 0.00 0.07 +vindicatives vindicatif adj f p 1.10 2.23 0.12 0.07 +vindicte vindicte nom f s 0.19 1.15 0.19 1.15 +vine viner ver 0.06 0.20 0.04 0.00 imp:pre:2s; +viner viner ver 0.06 0.20 0.01 0.07 inf; +vines viner ver 0.06 0.20 0.00 0.07 ind:pre:2s; +vineuse vineux adj f s 0.00 1.76 0.00 0.88 +vineuses vineux adj f p 0.00 1.76 0.00 0.27 +vineux vineux adj m 0.00 1.76 0.00 0.61 +vinez viner ver 0.06 0.20 0.01 0.07 imp:pre:2p; +vingt_cinq vingt_cinq adj_num 3.53 28.18 3.53 28.18 +vingt_cinquième vingt_cinquième adj 0.01 0.34 0.01 0.34 +vingt_deux vingt_deux adj_num 1.25 8.99 1.25 8.99 +vingt_deuxième vingt_deuxième adj 0.03 0.27 0.03 0.27 +vingt_et_un vingt_et_un nom m 0.28 0.74 0.28 0.68 +vingt_et_un vingt_et_un nom f s 0.28 0.74 0.01 0.07 +vingt_et_unième vingt_et_unième adj 0.01 0.07 0.01 0.07 +vingt_huit vingt_huit adj_num 0.97 5.34 0.97 5.34 +vingt_huitième vingt_huitième adj 0.00 0.74 0.00 0.74 +vingt_neuf vingt_neuf adj_num 0.96 2.77 0.96 2.77 +vingt_neuvième vingt_neuvième adj 0.01 0.00 0.01 0.00 +vingt_quatre vingt_quatre adj_num 2.13 17.36 2.13 17.36 +vingt_quatrième vingt_quatrième adj 0.01 0.27 0.01 0.27 +vingt_sept vingt_sept adj_num 0.67 4.59 0.67 4.59 +vingt_septième vingt_septième adj 0.00 0.54 0.00 0.54 +vingt_six vingt_six adj_num 1.09 7.50 1.09 7.50 +vingt_sixième vingt_sixième adj 0.01 0.20 0.01 0.20 +vingt_trois vingt_trois adj_num 2.08 7.57 2.08 7.57 +vingt_troisième vingt_troisième adj 0.01 0.61 0.01 0.61 +vingt vingt adj_num 29.47 154.59 29.47 154.59 +vingtaine vingtaine nom f s 4.11 15.47 4.11 15.34 +vingtaines vingtaine nom f p 4.11 15.47 0.00 0.14 +vingtième vingtième adj 0.34 3.24 0.34 3.18 +vingtièmes vingtième adj 0.34 3.24 0.00 0.07 +vinicole vinicole adj s 0.04 0.00 0.04 0.00 +vinificatrice vinificateur nom f s 0.01 0.00 0.01 0.00 +vinrent venir ver 2763.69 1514.53 1.53 10.54 ind:pas:3p; +vins vin nom m p 86.86 110.47 5.95 10.54 +vinsse venir ver 2763.69 1514.53 0.00 0.20 sub:imp:1s; +vinssent venir ver 2763.69 1514.53 0.00 1.08 sub:imp:3p; +vint venir ver 2763.69 1514.53 7.58 88.72 ind:pas:3s; +vintage vintage nom m s 0.17 0.07 0.17 0.07 +vinyle vinyle nom m s 0.70 0.74 0.34 0.74 +vinyles vinyle nom m p 0.70 0.74 0.35 0.00 +vinylique vinylique adj m s 0.00 0.07 0.00 0.07 +vioc vioc nom m s 0.04 0.41 0.03 0.34 +viocard viocard nom m s 0.00 0.14 0.00 0.14 +viocque viocque nom s 0.00 0.07 0.00 0.07 +viocs vioc nom m p 0.04 0.41 0.01 0.07 +viol viol nom m s 15.33 8.51 13.43 7.23 +viola violer ver 39.43 19.19 1.49 0.54 ind:pas:3s; +violacer violacer ver 0.03 1.62 0.00 0.07 inf; +violacé violacé adj m s 0.04 5.88 0.01 1.89 +violacée violacé adj f s 0.04 5.88 0.02 1.55 +violacées violacer ver f p 0.03 1.62 0.02 0.47 par:pas; +violacés violacé adj m p 0.04 5.88 0.01 0.74 +violaient violer ver 39.43 19.19 0.19 0.27 ind:imp:3p; +violais violer ver 39.43 19.19 0.04 0.00 ind:imp:1s;ind:imp:2s; +violait violer ver 39.43 19.19 1.01 0.81 ind:imp:3s; +violant violer ver 39.43 19.19 0.68 0.61 par:pre; +violaçait violacer ver 0.03 1.62 0.00 0.07 ind:imp:3s; +violation violation nom f s 4.54 1.96 4.09 1.62 +violations violation nom f p 4.54 1.96 0.46 0.34 +viole violer ver 39.43 19.19 3.00 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +violemment violemment adv 2.80 20.88 2.80 20.88 +violence violence nom f s 41.45 56.49 39.66 53.11 +violences violence nom f p 41.45 56.49 1.79 3.38 +violent violent adj m s 24.99 51.49 12.84 19.39 +violentaient violenter ver 0.62 1.42 0.00 0.07 ind:imp:3p; +violentait violenter ver 0.62 1.42 0.01 0.20 ind:imp:3s; +violente violent adj f s 24.99 51.49 5.17 18.04 +violenter violenter ver 0.62 1.42 0.16 0.47 inf; +violentes violent adj f p 24.99 51.49 2.44 7.84 +violents violent adj m p 24.99 51.49 4.54 6.22 +violenté violenter ver m s 0.62 1.42 0.20 0.07 par:pas; +violentée violenter ver f s 0.62 1.42 0.07 0.14 par:pas; +violer violer ver 39.43 19.19 8.36 4.93 inf;; +violerai violer ver 39.43 19.19 0.03 0.07 ind:fut:1s; +violerais violer ver 39.43 19.19 0.10 0.00 cnd:pre:1s;cnd:pre:2s; +violerait violer ver 39.43 19.19 0.21 0.20 cnd:pre:3s; +violeras violer ver 39.43 19.19 0.02 0.00 ind:fut:2s; +violeront violer ver 39.43 19.19 0.05 0.07 ind:fut:3p; +violes violer ver 39.43 19.19 0.55 0.07 ind:pre:2s; +violet violet adj m s 4.38 26.28 2.29 7.91 +violeta violeter ver 0.44 0.00 0.44 0.00 ind:pas:3s; +violets violet adj m p 4.38 26.28 0.39 4.39 +violette violet adj f s 4.38 26.28 1.04 9.12 +violettes violette nom f p 1.94 6.89 1.17 4.39 +violeur violeur nom m s 6.41 2.30 4.52 1.35 +violeurs violeur nom m p 6.41 2.30 1.89 0.88 +violeuses violeur nom f p 6.41 2.30 0.00 0.07 +violez violer ver 39.43 19.19 0.60 0.00 imp:pre:2p;ind:pre:2p; +violine violine nom m s 0.00 0.20 0.00 0.20 +violines violine adj p 0.00 0.14 0.00 0.07 +violon violon nom m s 13.65 13.31 11.56 9.73 +violoncelle violoncelle nom m s 3.28 3.38 3.04 3.31 +violoncelles violoncelle nom m p 3.28 3.38 0.24 0.07 +violoncelliste violoncelliste nom s 0.81 0.14 0.79 0.07 +violoncellistes violoncelliste nom p 0.81 0.14 0.02 0.07 +violone violoner ver 0.00 0.07 0.00 0.07 ind:pre:1s; +violoneux violoneux nom m 0.00 0.41 0.00 0.41 +violoniste violoniste nom s 3.07 2.43 2.91 1.82 +violonistes violoniste nom p 3.07 2.43 0.16 0.61 +violons violon nom m p 13.65 13.31 2.09 3.58 +violâtre violâtre adj s 0.00 0.88 0.00 0.47 +violâtres violâtre adj p 0.00 0.88 0.00 0.41 +viols viol nom m p 15.33 8.51 1.90 1.28 +violé violer ver m s 39.43 19.19 9.36 2.97 par:pas; +violée violer ver f s 39.43 19.19 10.97 3.99 ind:imp:3p;par:pas; +violées violer ver f p 39.43 19.19 1.18 1.89 par:pas; +violés violer ver m p 39.43 19.19 0.70 0.41 par:pas; +vioque vioque nom f s 0.77 4.93 0.40 4.32 +vioques vioque nom f p 0.77 4.93 0.38 0.61 +viorne viorne nom f s 0.00 0.41 0.00 0.20 +viornes viorne nom f p 0.00 0.41 0.00 0.20 +vipère vipère nom f s 4.84 5.41 3.42 3.31 +vipères vipère nom f p 4.84 5.41 1.42 2.09 +vipéreau vipéreau nom m s 0.00 0.07 0.00 0.07 +vipérine vipérin adj f s 0.14 0.20 0.14 0.14 +vipérines vipérin adj f p 0.14 0.20 0.00 0.07 +vira virer ver 86.28 37.84 0.03 1.82 ind:pas:3s; +virage virage nom m s 6.75 12.91 5.98 8.72 +virages virage nom m p 6.75 12.91 0.77 4.19 +virago virago nom f s 0.02 0.20 0.01 0.07 +viragos virago nom f p 0.02 0.20 0.01 0.14 +virai virer ver 86.28 37.84 0.00 0.07 ind:pas:1s; +viraient virer ver 86.28 37.84 0.05 1.08 ind:imp:3p; +virais virer ver 86.28 37.84 0.19 0.07 ind:imp:1s;ind:imp:2s; +virait virer ver 86.28 37.84 0.21 2.30 ind:imp:3s; +viral viral adj m s 1.19 0.61 0.35 0.07 +virale viral adj f s 1.19 0.61 0.73 0.47 +virales viral adj f p 1.19 0.61 0.10 0.07 +virant virer ver 86.28 37.84 0.15 1.49 par:pre; +viraux viral adj m p 1.19 0.61 0.01 0.00 +vire virer ver 86.28 37.84 13.27 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +virement virement nom m s 1.75 0.34 1.48 0.14 +virements virement nom m p 1.75 0.34 0.27 0.20 +virent virer ver 86.28 37.84 2.04 11.62 ind:pre:3p; +virer virer ver 86.28 37.84 25.72 6.76 inf; +virera virer ver 86.28 37.84 0.44 0.07 ind:fut:3s; +virerai virer ver 86.28 37.84 0.20 0.00 ind:fut:1s; +virerais virer ver 86.28 37.84 0.21 0.00 cnd:pre:1s;cnd:pre:2s; +virerait virer ver 86.28 37.84 0.14 0.20 cnd:pre:3s; +vireras virer ver 86.28 37.84 0.05 0.00 ind:fut:2s; +virerez virer ver 86.28 37.84 0.09 0.00 ind:fut:2p; +vireront virer ver 86.28 37.84 0.11 0.00 ind:fut:3p; +vires virer ver 86.28 37.84 1.39 0.34 ind:pre:2s;sub:pre:2s; +vireuse vireux adj f s 0.00 0.07 0.00 0.07 +virevolta virevolter ver 0.48 2.97 0.00 0.14 ind:pas:3s; +virevoltaient virevolter ver 0.48 2.97 0.11 0.47 ind:imp:3p; +virevoltait virevolter ver 0.48 2.97 0.04 0.34 ind:imp:3s; +virevoltant virevolter ver 0.48 2.97 0.06 0.27 par:pre; +virevoltante virevoltant adj f s 0.01 0.41 0.01 0.20 +virevoltantes virevoltant adj f p 0.01 0.41 0.00 0.07 +virevolte virevolter ver 0.48 2.97 0.04 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +virevoltent virevolter ver 0.48 2.97 0.04 0.41 ind:pre:3p; +virevolter virevolter ver 0.48 2.97 0.18 0.41 inf; +virevoltes virevolter ver 0.48 2.97 0.01 0.00 ind:pre:2s; +virevolté virevolter ver m s 0.48 2.97 0.00 0.07 par:pas; +virez virer ver 86.28 37.84 6.47 0.00 imp:pre:2p;ind:pre:2p; +virgilien virgilien adj m s 0.00 0.41 0.00 0.14 +virgilienne virgilien adj f s 0.00 0.41 0.00 0.27 +virginal virginal adj m s 0.58 2.30 0.23 0.95 +virginale virginal adj f s 0.58 2.30 0.35 0.81 +virginalement virginalement adv 0.00 0.07 0.00 0.07 +virginales virginal adj f p 0.58 2.30 0.00 0.20 +virginaux virginal adj m p 0.58 2.30 0.00 0.34 +virginie virginie nom m s 0.11 31.28 0.11 31.28 +virginien virginien nom m s 0.07 0.34 0.04 0.07 +virginiens virginien nom m p 0.07 0.34 0.04 0.27 +virginité virginité nom f s 4.26 3.58 4.25 3.51 +virginités virginité nom f p 4.26 3.58 0.01 0.07 +virgule virgule nom f s 4.69 4.73 4.44 3.04 +virgules virgule nom f p 4.69 4.73 0.25 1.69 +viriez virer ver 86.28 37.84 0.07 0.00 ind:imp:2p; +viril viril adj m s 4.82 10.68 2.81 4.53 +virile viril adj f s 4.82 10.68 1.31 3.72 +virilement virilement adv 0.01 0.61 0.01 0.61 +viriles viril adj f p 4.82 10.68 0.25 1.15 +virilise viriliser ver 0.01 0.34 0.00 0.07 ind:pre:3s; +viriliser viriliser ver 0.01 0.34 0.01 0.07 inf; +virilisé viriliser ver m s 0.01 0.34 0.00 0.14 par:pas; +virilisés viriliser ver m p 0.01 0.34 0.00 0.07 par:pas; +virilité virilité nom f s 2.46 6.69 2.46 6.35 +virilités virilité nom f p 2.46 6.69 0.00 0.34 +virils viril adj m p 4.82 10.68 0.45 1.28 +viroles virole nom f p 0.00 0.07 0.00 0.07 +virolet virolet nom m s 0.00 0.07 0.00 0.07 +virologie virologie nom f s 0.28 0.00 0.28 0.00 +virologiste virologiste nom s 0.12 0.00 0.12 0.00 +virologue virologue nom s 0.14 0.00 0.13 0.00 +virologues virologue nom p 0.14 0.00 0.01 0.00 +virons virer ver 86.28 37.84 0.33 0.00 imp:pre:1p;ind:pre:1p; +virât virer ver 86.28 37.84 0.00 0.07 sub:imp:3s; +virèrent virer ver 86.28 37.84 0.00 0.07 ind:pas:3p; +virtualité virtualité nom f s 0.03 0.41 0.03 0.20 +virtualités virtualité nom f p 0.03 0.41 0.00 0.20 +virtuel virtuel adj m s 2.38 2.16 1.44 0.81 +virtuelle virtuel adj f s 2.38 2.16 0.77 0.54 +virtuellement virtuellement adv 0.60 1.15 0.60 1.15 +virtuelles virtuel adj f p 2.38 2.16 0.09 0.47 +virtuels virtuel adj m p 2.38 2.16 0.09 0.34 +virtuose virtuose nom s 0.80 2.23 0.52 1.55 +virtuoses virtuose nom p 0.80 2.23 0.28 0.68 +virtuosité virtuosité nom f s 0.20 1.82 0.20 1.82 +viré virer ver m s 86.28 37.84 25.59 6.28 par:pas;par:pas;par:pas; +virée virer ver f s 86.28 37.84 6.23 0.61 par:pas; +virées virée nom f p 4.13 3.92 0.70 1.28 +virulence virulence nom f s 0.12 0.95 0.12 0.95 +virulent virulent adj m s 0.96 1.62 0.23 0.41 +virulente virulent adj f s 0.96 1.62 0.55 0.81 +virulentes virulent adj f p 0.96 1.62 0.14 0.07 +virulents virulent adj m p 0.96 1.62 0.03 0.34 +virés virer ver m p 86.28 37.84 3.21 0.81 par:pas; +virus virus nom m 23.98 6.42 23.98 6.42 +vis_à_vis vis_à_vis pre 0.00 19.39 0.00 19.39 +vis voir ver 4119.49 2401.76 54.62 38.24 ind:pas:1s;ind:pas:2s; +visa visa nom m s 7.39 3.38 6.14 2.50 +visage visage nom m s 141.23 565.00 125.52 490.54 +visages visage nom m p 141.23 565.00 15.71 74.46 +visagiste visagiste nom s 0.01 0.14 0.01 0.14 +visai viser ver 38.03 27.57 0.00 0.20 ind:pas:1s; +visaient viser ver 38.03 27.57 0.48 2.03 ind:imp:3p; +visais viser ver 38.03 27.57 1.10 0.61 ind:imp:1s;ind:imp:2s; +visait viser ver 38.03 27.57 1.65 3.18 ind:imp:3s; +visant viser ver 38.03 27.57 1.23 3.38 par:pre; +visas visa nom m p 7.39 3.38 1.25 0.88 +viscose viscose nom f s 0.03 0.14 0.03 0.07 +viscoses viscose nom f p 0.03 0.14 0.00 0.07 +viscosité viscosité nom f s 0.06 0.74 0.06 0.68 +viscosités viscosité nom f p 0.06 0.74 0.00 0.07 +viscère viscère nom m s 0.43 2.97 0.03 0.20 +viscères viscère nom m p 0.43 2.97 0.40 2.77 +viscéral viscéral adj m s 0.37 1.96 0.23 0.61 +viscérale viscéral adj f s 0.37 1.96 0.11 1.22 +viscéralement viscéralement adv 0.07 0.00 0.07 0.00 +viscérales viscéral adj f p 0.37 1.96 0.01 0.07 +viscéraux viscéral adj m p 0.37 1.96 0.01 0.07 +vise viser ver 38.03 27.57 13.96 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visent viser ver 38.03 27.57 1.32 0.88 ind:pre:3p; +viser viser ver 38.03 27.57 5.87 4.05 inf; +visera viser ver 38.03 27.57 0.14 0.00 ind:fut:3s; +viserai viser ver 38.03 27.57 0.07 0.07 ind:fut:1s; +viseraient viser ver 38.03 27.57 0.01 0.14 cnd:pre:3p; +viserais viser ver 38.03 27.57 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +viserait viser ver 38.03 27.57 0.02 0.20 cnd:pre:3s; +viseront viser ver 38.03 27.57 0.05 0.07 ind:fut:3p; +vises viser ver 38.03 27.57 1.44 0.27 ind:pre:2s; +viseur viseur nom m s 1.93 1.22 1.48 1.08 +viseurs viseur nom m p 1.93 1.22 0.45 0.14 +visez viser ver 38.03 27.57 5.69 1.22 imp:pre:2p;ind:pre:2p; +vishnouisme vishnouisme nom m s 0.02 0.00 0.02 0.00 +visibilité visibilité nom f s 1.27 1.55 1.27 1.55 +visible visible adj s 8.98 30.61 7.41 24.05 +visiblement visiblement adv 6.94 23.99 6.94 23.99 +visibles visible adj p 8.98 30.61 1.57 6.55 +visiez viser ver 38.03 27.57 0.17 0.00 ind:imp:2p; +visioconférence visioconférence nom f s 0.01 0.00 0.01 0.00 +vision vision nom f s 35.48 41.82 25.81 33.78 +visionna visionner ver 1.56 0.88 0.01 0.00 ind:pas:3s; +visionnage visionnage nom m s 0.16 0.07 0.16 0.07 +visionnaire visionnaire nom m s 1.46 1.15 1.08 0.88 +visionnaires visionnaire nom m p 1.46 1.15 0.38 0.27 +visionnant visionner ver 1.56 0.88 0.04 0.00 par:pre; +visionne visionner ver 1.56 0.88 0.13 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visionnent visionner ver 1.56 0.88 0.01 0.00 ind:pre:3p; +visionner visionner ver 1.56 0.88 0.56 0.34 inf; +visionnera visionner ver 1.56 0.88 0.04 0.00 ind:fut:3s; +visionneront visionner ver 1.56 0.88 0.02 0.00 ind:fut:3p; +visionneuse visionneur nom f s 0.06 0.14 0.06 0.14 +visionnez visionner ver 1.56 0.88 0.20 0.00 imp:pre:2p;ind:pre:2p; +visionnons visionner ver 1.56 0.88 0.04 0.00 imp:pre:1p; +visionné visionner ver m s 1.56 0.88 0.51 0.00 par:pas; +visionnés visionner ver m p 1.56 0.88 0.00 0.07 par:pas; +visions vision nom f p 35.48 41.82 9.66 8.04 +visiophone visiophone nom m s 0.01 0.00 0.01 0.00 +visita visiter ver 34.92 52.16 0.26 2.16 ind:pas:3s; +visitai visiter ver 34.92 52.16 0.00 1.01 ind:pas:1s; +visitaient visiter ver 34.92 52.16 0.04 0.95 ind:imp:3p; +visitais visiter ver 34.92 52.16 0.46 0.54 ind:imp:1s;ind:imp:2s; +visitait visiter ver 34.92 52.16 0.33 2.77 ind:imp:3s; +visitandines visitandine nom f p 0.00 0.07 0.00 0.07 +visitant visiter ver 34.92 52.16 0.24 1.96 par:pre; +visitation visitation nom f s 0.15 0.95 0.15 0.95 +visite_éclair visite_éclair nom f s 0.00 0.07 0.00 0.07 +visite visite nom f s 99.95 99.32 86.34 80.61 +visitent visiter ver 34.92 52.16 0.52 0.54 ind:pre:3p; +visiter visiter ver 34.92 52.16 21.23 23.18 inf; +visitera visiter ver 34.92 52.16 0.05 0.00 ind:fut:3s; +visiterai visiter ver 34.92 52.16 0.33 0.07 ind:fut:1s; +visiteraient visiter ver 34.92 52.16 0.00 0.07 cnd:pre:3p; +visiterait visiter ver 34.92 52.16 0.02 0.27 cnd:pre:3s; +visiteras visiter ver 34.92 52.16 0.03 0.14 ind:fut:2s; +visiterez visiter ver 34.92 52.16 0.06 0.34 ind:fut:2p; +visiterons visiter ver 34.92 52.16 0.17 0.27 ind:fut:1p; +visites visite nom f p 99.95 99.32 13.60 18.72 +visiteur visiteur nom m s 12.46 35.54 4.74 15.07 +visiteurs visiteur nom m p 12.46 35.54 7.55 16.76 +visiteuse visiteur nom f s 12.46 35.54 0.16 2.97 +visiteuses visiteuse nom f p 0.16 0.00 0.16 0.00 +visitez visiter ver 34.92 52.16 1.14 0.74 imp:pre:2p;ind:pre:2p; +visière visière nom f s 0.37 10.14 0.33 9.19 +visières visière nom f p 0.37 10.14 0.04 0.95 +visitiez visiter ver 34.92 52.16 0.13 0.07 ind:imp:2p; +visitions visiter ver 34.92 52.16 0.02 0.61 ind:imp:1p; +visitâmes visiter ver 34.92 52.16 0.00 0.47 ind:pas:1p; +visitons visiter ver 34.92 52.16 0.40 0.34 imp:pre:1p;ind:pre:1p; +visitât visiter ver 34.92 52.16 0.00 0.27 sub:imp:3s; +visitèrent visiter ver 34.92 52.16 0.01 0.61 ind:pas:3p; +visité visiter ver m s 34.92 52.16 4.15 6.01 par:pas; +visitée visiter ver f s 34.92 52.16 0.32 1.42 par:pas; +visitées visiter ver f p 34.92 52.16 0.30 0.54 par:pas; +visités visiter ver m p 34.92 52.16 0.27 0.95 par:pas; +vison vison nom m s 1.65 2.97 1.56 2.30 +visons viser ver 38.03 27.57 0.16 0.00 imp:pre:1p;ind:pre:1p; +visqueuse visqueux adj f s 1.71 7.43 0.53 2.57 +visqueuses visqueux adj f p 1.71 7.43 0.24 0.74 +visqueux visqueux adj m 1.71 7.43 0.94 4.12 +vissa visser ver 2.90 8.24 0.00 0.61 ind:pas:3s; +vissaient visser ver 2.90 8.24 0.00 0.07 ind:imp:3p; +vissait visser ver 2.90 8.24 0.01 0.68 ind:imp:3s; +vissant visser ver 2.90 8.24 0.10 0.34 par:pre; +visse visser ver 2.90 8.24 0.33 0.54 ind:pre:1s;ind:pre:3s; +vissent visser ver 2.90 8.24 0.11 0.00 ind:pre:3p; +visser visser ver 2.90 8.24 1.45 0.88 inf; +visserait visser ver 2.90 8.24 0.00 0.07 cnd:pre:3s; +visserie visserie nom f s 0.02 0.00 0.02 0.00 +vissez visser ver 2.90 8.24 0.17 0.00 imp:pre:2p;ind:pre:2p; +vissèrent visser ver 2.90 8.24 0.00 0.07 ind:pas:3p; +vissé visser ver m s 2.90 8.24 0.42 2.84 par:pas; +vissée visser ver f s 2.90 8.24 0.17 0.81 par:pas; +vissées vissé adj f p 0.11 0.20 0.01 0.07 +vissés visser ver m p 2.90 8.24 0.14 0.74 par:pas; +vista vista nom f s 0.86 0.14 0.86 0.14 +visé viser ver m s 38.03 27.57 3.70 2.23 par:pas; +visualisaient visualiser ver 1.41 0.34 0.00 0.07 ind:imp:3p; +visualisais visualiser ver 1.41 0.34 0.05 0.00 ind:imp:1s;ind:imp:2s; +visualisant visualiser ver 1.41 0.34 0.01 0.00 par:pre; +visualisation visualisation nom f s 0.21 0.00 0.21 0.00 +visualise visualiser ver 1.41 0.34 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visualiser visualiser ver 1.41 0.34 0.48 0.00 inf; +visualiserai visualiser ver 1.41 0.34 0.01 0.00 ind:fut:1s; +visualises visualiser ver 1.41 0.34 0.29 0.07 ind:pre:2s; +visualisez visualiser ver 1.41 0.34 0.25 0.00 imp:pre:2p;ind:pre:2p; +visualisé visualiser ver m s 1.41 0.34 0.04 0.00 par:pas; +visualisée visualiser ver f s 1.41 0.34 0.00 0.07 par:pas; +visualisées visualiser ver f p 1.41 0.34 0.01 0.00 par:pas; +visualisés visualiser ver m p 1.41 0.34 0.01 0.00 par:pas; +visée visée nom f s 0.93 2.57 0.73 1.49 +visuel visuel adj m s 6.71 3.24 4.38 1.96 +visuelle visuel adj f s 6.71 3.24 1.34 0.68 +visuellement visuellement adv 0.32 0.14 0.32 0.14 +visuelles visuel adj f p 6.71 3.24 0.26 0.20 +visuels visuel adj m p 6.71 3.24 0.73 0.41 +visées visée nom f p 0.93 2.57 0.20 1.08 +visés visé adj m p 2.05 1.62 0.30 0.34 +vit vivre ver 510.05 460.34 74.42 39.80 ind:pre:3s; +vital vital adj m s 12.24 9.80 4.17 4.86 +vitale vital adj f s 12.24 9.80 4.11 3.11 +vitales vital adj f p 12.24 9.80 1.13 0.95 +vitaliser vitaliser ver 0.01 0.00 0.01 0.00 inf; +vitalité vitalité nom f s 1.08 6.49 1.08 6.49 +vitamine vitamine nom f s 5.77 2.30 1.31 0.34 +vitaminer vitaminer ver 0.00 0.07 0.00 0.07 inf; +vitamines vitamine nom f p 5.77 2.30 4.46 1.96 +vitaminé vitaminé adj m s 0.12 0.20 0.03 0.00 +vitaminée vitaminé adj f s 0.12 0.20 0.07 0.14 +vitaminées vitaminé adj f p 0.12 0.20 0.02 0.00 +vitaminés vitaminé adj m p 0.12 0.20 0.00 0.07 +vitaux vital adj m p 12.24 9.80 2.84 0.88 +vite vite adv_sup 491.64 351.89 491.64 351.89 +vitellin vitellin adj m s 0.01 0.00 0.01 0.00 +vitement vitement adv 0.00 0.07 0.00 0.07 +vitesse vitesse nom f s 40.12 57.84 37.89 54.59 +vitesses vitesse nom f p 40.12 57.84 2.23 3.24 +viticole viticole adj s 0.04 0.00 0.04 0.00 +viticulteur viticulteur nom m s 0.60 0.68 0.05 0.34 +viticulteurs viticulteur nom m p 0.60 0.68 0.16 0.34 +viticultrice viticulteur nom f s 0.60 0.68 0.40 0.00 +viticulture viticulture nom f s 0.03 0.00 0.03 0.00 +vitiligo vitiligo nom m s 0.01 0.00 0.01 0.00 +vitrage vitrage nom m s 0.24 0.81 0.14 0.54 +vitrages vitrage nom m p 0.24 0.81 0.10 0.27 +vitrail vitrail nom m s 1.77 7.77 1.38 3.58 +vitrauphanie vitrauphanie nom f s 0.00 0.07 0.00 0.07 +vitraux vitrail nom m p 1.77 7.77 0.40 4.19 +vitre vitre nom f s 16.35 76.22 10.21 41.28 +vitres vitre nom f p 16.35 76.22 6.14 34.93 +vitreuse vitreux adj f s 0.34 4.53 0.00 0.47 +vitreuses vitreux adj f p 0.34 4.53 0.01 0.14 +vitreux vitreux adj m 0.34 4.53 0.33 3.92 +vitrier vitrier nom m s 0.20 0.74 0.17 0.68 +vitriers vitrier nom m p 0.20 0.74 0.03 0.07 +vitrifia vitrifier ver 0.05 1.69 0.00 0.07 ind:pas:3s; +vitrifie vitrifier ver 0.05 1.69 0.01 0.07 ind:pre:1s;ind:pre:3s; +vitrifient vitrifier ver 0.05 1.69 0.00 0.07 ind:pre:3p; +vitrifier vitrifier ver 0.05 1.69 0.01 0.14 inf; +vitrifié vitrifier ver m s 0.05 1.69 0.01 0.88 par:pas; +vitrifiée vitrifier ver f s 0.05 1.69 0.01 0.20 par:pas; +vitrifiées vitrifier ver f p 0.05 1.69 0.00 0.07 par:pas; +vitrifiés vitrifier ver m p 0.05 1.69 0.01 0.20 par:pas; +vitrine vitrine nom f s 6.84 33.99 5.09 20.68 +vitrines vitrine nom f p 6.84 33.99 1.75 13.31 +vitriol vitriol nom m s 0.43 0.74 0.43 0.68 +vitrioler vitrioler ver 0.01 0.20 0.01 0.00 inf; +vitrioleurs vitrioleur nom m p 0.00 0.07 0.00 0.07 +vitriolique vitriolique adj f s 0.00 0.07 0.00 0.07 +vitriols vitriol nom m p 0.43 0.74 0.00 0.07 +vitriolé vitrioler ver m s 0.01 0.20 0.00 0.20 par:pas; +vitrophanie vitrophanie nom f s 0.00 0.07 0.00 0.07 +vitré vitré adj m s 0.57 15.61 0.06 1.62 +vitrée vitré adj f s 0.57 15.61 0.30 11.22 +vitrées vitré adj f p 0.57 15.61 0.21 2.36 +vitrés vitré adj m p 0.57 15.61 0.00 0.41 +vits vit nom m p 0.00 0.14 0.00 0.14 +vitupère vitupérer ver 0.02 1.08 0.00 0.07 imp:pre:2s; +vitupéraient vitupérer ver 0.02 1.08 0.00 0.07 ind:imp:3p; +vitupérait vitupérer ver 0.02 1.08 0.00 0.41 ind:imp:3s; +vitupérant vitupérer ver 0.02 1.08 0.00 0.27 par:pre; +vitupérations vitupération nom f p 0.00 0.07 0.00 0.07 +vitupérer vitupérer ver 0.02 1.08 0.02 0.27 inf; +vivable vivable adj s 0.41 1.35 0.40 1.08 +vivables vivable adj p 0.41 1.35 0.01 0.27 +vivace vivace adj s 0.52 4.66 0.35 3.58 +vivaces vivace adj p 0.52 4.66 0.17 1.08 +vivacité vivacité nom f s 0.74 8.58 0.74 8.51 +vivacités vivacité nom f p 0.74 8.58 0.00 0.07 +vivaient vivre ver 510.05 460.34 6.18 15.74 ind:imp:3p; +vivais vivre ver 510.05 460.34 8.91 10.81 ind:imp:1s;ind:imp:2s; +vivait vivre ver 510.05 460.34 20.50 53.18 ind:imp:3s; +vivandier vivandier nom m s 0.10 0.34 0.10 0.00 +vivandiers vivandier nom m p 0.10 0.34 0.00 0.14 +vivandière vivandier nom f s 0.10 0.34 0.00 0.14 +vivandières vivandière nom f p 0.01 0.00 0.01 0.00 +vivant vivant adj m s 124.97 92.23 76.38 41.15 +vivante vivant adj f s 124.97 92.23 28.12 29.32 +vivantes vivant adj f p 124.97 92.23 3.31 6.35 +vivants vivant adj m p 124.97 92.23 17.16 15.41 +vivarium vivarium nom m s 0.03 0.41 0.03 0.41 +vivat vivat nom_sup m s 0.84 0.00 0.84 0.00 +vivats vivats nom m p 0.06 1.82 0.06 1.82 +vive vive ono 35.95 12.09 35.95 12.09 +vivement vivement adv 5.85 29.86 5.85 29.86 +vivent vivre ver 510.05 460.34 30.50 19.39 ind:pre:3p;sub:pre:3p; +vives vif adj f p 22.95 95.07 1.71 12.70 +viveur viveur nom m s 0.03 0.41 0.03 0.34 +viveurs viveur nom m p 0.03 0.41 0.00 0.07 +vivez vivre ver 510.05 460.34 15.09 2.84 imp:pre:2p;ind:pre:2p; +vivier vivier nom m s 0.10 1.42 0.07 1.15 +viviers vivier nom m p 0.10 1.42 0.02 0.27 +viviez vivre ver 510.05 460.34 1.94 0.74 ind:imp:2p; +vivifiait vivifier ver 0.22 1.15 0.02 0.14 ind:imp:3s; +vivifiant vivifiant adj m s 0.58 1.28 0.29 0.81 +vivifiante vivifiant adj f s 0.58 1.28 0.17 0.47 +vivifiantes vivifiant adj f p 0.58 1.28 0.10 0.00 +vivifiants vivifiant adj m p 0.58 1.28 0.01 0.00 +vivification vivification nom f s 0.01 0.00 0.01 0.00 +vivifie vivifier ver 0.22 1.15 0.01 0.07 ind:pre:3s; +vivifier vivifier ver 0.22 1.15 0.01 0.07 inf; +vivifié vivifier ver m s 0.22 1.15 0.11 0.14 par:pas; +vivifiée vivifier ver f s 0.22 1.15 0.01 0.34 par:pas; +vivifiées vivifier ver f p 0.22 1.15 0.02 0.14 par:pas; +vivions vivre ver 510.05 460.34 2.69 7.64 ind:imp:1p; +vivisecteur vivisecteur nom m s 0.04 0.00 0.04 0.00 +vivisection vivisection nom f s 0.34 0.41 0.34 0.14 +vivisections vivisection nom f p 0.34 0.41 0.00 0.27 +vivons vivre ver 510.05 460.34 12.40 7.64 imp:pre:1p;ind:pre:1p; +vivota vivoter ver 0.47 1.28 0.00 0.07 ind:pas:3s; +vivotaient vivoter ver 0.47 1.28 0.00 0.07 ind:imp:3p; +vivotais vivoter ver 0.47 1.28 0.01 0.07 ind:imp:1s; +vivotait vivoter ver 0.47 1.28 0.14 0.47 ind:imp:3s; +vivotant vivoter ver 0.47 1.28 0.00 0.14 par:pre; +vivote vivoter ver 0.47 1.28 0.27 0.20 ind:pre:1s;ind:pre:3s; +vivotent vivoter ver 0.47 1.28 0.00 0.07 ind:pre:3p; +vivoter vivoter ver 0.47 1.28 0.02 0.14 inf; +vivotèrent vivoter ver 0.47 1.28 0.00 0.07 ind:pas:3p; +vivoté vivoter ver m s 0.47 1.28 0.03 0.00 par:pas; +vivra vivre ver 510.05 460.34 7.86 2.64 ind:fut:3s; +vivrai vivre ver 510.05 460.34 5.25 1.62 ind:fut:1s; +vivraient vivre ver 510.05 460.34 0.65 0.68 cnd:pre:3p; +vivrais vivre ver 510.05 460.34 1.58 1.49 cnd:pre:1s;cnd:pre:2s; +vivrait vivre ver 510.05 460.34 2.56 3.38 cnd:pre:3s; +vivras vivre ver 510.05 460.34 3.84 0.27 ind:fut:2s; +vivre vivre ver 510.05 460.34 218.39 186.82 inf; +vivres vivre nom m p 12.61 10.34 7.37 6.89 +vivrez vivre ver 510.05 460.34 3.24 0.41 ind:fut:2p; +vivriers vivrier adj m p 0.00 0.07 0.00 0.07 +vivriez vivre ver 510.05 460.34 0.05 0.07 cnd:pre:2p; +vivrions vivre ver 510.05 460.34 0.32 0.00 cnd:pre:1p; +vivrons vivre ver 510.05 460.34 3.28 1.42 ind:fut:1p; +vivront vivre ver 510.05 460.34 1.22 0.41 ind:fut:3p; +vizir vizir nom m s 0.15 7.97 0.15 7.03 +vizirs vizir nom m p 0.15 7.97 0.00 0.95 +vlan vlan ono 1.05 3.18 1.05 3.18 +vlouf vlouf ono 0.00 0.54 0.00 0.54 +voïvodie voïvodie nom f s 0.40 0.00 0.27 0.00 +voïvodies voïvodie nom f p 0.40 0.00 0.14 0.00 +voûta voûter ver 0.18 5.54 0.00 0.20 ind:pas:3s; +voûtaient voûter ver 0.18 5.54 0.00 0.14 ind:imp:3p; +voûtait voûter ver 0.18 5.54 0.00 0.54 ind:imp:3s; +voûtant voûter ver 0.18 5.54 0.00 0.14 par:pre; +voûte voûte nom f s 2.21 27.09 1.71 18.85 +voûtent voûter ver 0.18 5.54 0.00 0.14 ind:pre:3p; +voûter voûter ver 0.18 5.54 0.01 0.34 inf; +voûtes voûte nom f p 2.21 27.09 0.50 8.24 +voûtât voûter ver 0.18 5.54 0.00 0.07 sub:imp:3s; +voûtèrent voûter ver 0.18 5.54 0.00 0.14 ind:pas:3p; +voûté voûté adj m s 0.41 11.82 0.35 6.89 +voûtée voûté adj f s 0.41 11.82 0.01 2.50 +voûtées voûté adj f p 0.41 11.82 0.01 1.42 +voûtés voûté adj m p 0.41 11.82 0.04 1.01 +vocable vocable nom m s 0.22 2.16 0.02 1.08 +vocables vocable nom m p 0.22 2.16 0.20 1.08 +vocabulaire vocabulaire nom m s 3.02 10.41 3.02 10.27 +vocabulaires vocabulaire nom m p 3.02 10.41 0.00 0.14 +vocal vocal adj m s 4.63 3.72 1.13 0.68 +vocale vocal adj f s 4.63 3.72 2.45 0.68 +vocalement vocalement adv 0.01 0.07 0.01 0.07 +vocales vocal adj f p 4.63 3.72 0.84 2.23 +vocalique vocalique adj f s 0.00 0.07 0.00 0.07 +vocalisait vocaliser ver 0.02 0.34 0.00 0.14 ind:imp:3s; +vocalisant vocaliser ver 0.02 0.34 0.01 0.07 par:pre; +vocalisation vocalisation nom f s 0.02 0.27 0.02 0.14 +vocalisations vocalisation nom f p 0.02 0.27 0.00 0.14 +vocalise vocalise nom f s 0.05 1.28 0.00 0.27 +vocaliser vocaliser ver 0.02 0.34 0.01 0.00 inf; +vocalises vocalise nom f p 0.05 1.28 0.05 1.01 +vocaliste vocaliste nom s 0.02 0.07 0.02 0.07 +vocatif vocatif nom m s 0.01 0.14 0.01 0.00 +vocatifs vocatif nom m p 0.01 0.14 0.00 0.14 +vocation vocation nom f s 9.26 22.84 8.87 21.82 +vocations vocation nom f p 9.26 22.84 0.39 1.01 +vocaux vocal adj m p 4.63 3.72 0.21 0.14 +vocifère vociférer ver 0.49 3.92 0.16 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vocifèrent vociférer ver 0.49 3.92 0.00 0.14 ind:pre:3p; +vociféra vociférer ver 0.49 3.92 0.00 0.54 ind:pas:3s; +vociférai vociférer ver 0.49 3.92 0.00 0.07 ind:pas:1s; +vociféraient vociférer ver 0.49 3.92 0.00 0.14 ind:imp:3p; +vociférais vociférer ver 0.49 3.92 0.00 0.14 ind:imp:1s; +vociférait vociférer ver 0.49 3.92 0.01 0.68 ind:imp:3s; +vociférant vociférant adj m s 0.14 0.95 0.14 0.34 +vociférante vociférant adj f s 0.14 0.95 0.00 0.14 +vociférantes vociférant adj f p 0.14 0.95 0.00 0.34 +vociférants vociférant adj m p 0.14 0.95 0.00 0.14 +vocifération vocifération nom f s 0.02 2.03 0.00 0.14 +vociférations vocifération nom f p 0.02 2.03 0.02 1.89 +vociférer vociférer ver 0.49 3.92 0.29 0.54 inf; +vociférés vociférer ver m p 0.49 3.92 0.00 0.07 par:pas; +vocodeur vocodeur nom m s 0.01 0.00 0.01 0.00 +vodka vodka nom f s 17.07 8.31 16.93 8.24 +vodkas vodka nom f p 17.07 8.31 0.14 0.07 +vodou vodou nom m s 0.04 0.00 0.03 0.00 +vodous vodou nom m p 0.04 0.00 0.01 0.00 +voeu voeu nom m s 28.58 21.28 10.72 10.61 +voeux voeu nom m p 28.58 21.28 17.86 10.68 +vogua voguer ver 2.69 6.35 0.14 0.07 ind:pas:3s; +voguaient voguer ver 2.69 6.35 0.00 0.14 ind:imp:3p; +voguais voguer ver 2.69 6.35 0.02 0.00 ind:imp:1s;ind:imp:2s; +voguait voguer ver 2.69 6.35 0.28 1.35 ind:imp:3s; +voguant voguer ver 2.69 6.35 0.13 0.54 par:pre; +vogue vogue nom f s 2.43 3.58 2.43 3.51 +voguent voguer ver 2.69 6.35 0.26 0.61 ind:pre:3p;sub:pre:3p; +voguer voguer ver 2.69 6.35 1.18 1.15 inf; +voguera voguer ver 2.69 6.35 0.03 0.07 ind:fut:3s; +voguerai voguer ver 2.69 6.35 0.04 0.00 ind:fut:1s; +voguerait voguer ver 2.69 6.35 0.00 0.07 cnd:pre:3s; +voguerions voguer ver 2.69 6.35 0.00 0.07 cnd:pre:1p; +voguerons voguer ver 2.69 6.35 0.12 0.07 ind:fut:1p; +vogues voguer ver 2.69 6.35 0.01 0.07 ind:pre:2s; +voguions voguer ver 2.69 6.35 0.01 0.41 ind:imp:1p; +voguons voguer ver 2.69 6.35 0.09 0.14 imp:pre:1p;ind:pre:1p; +vogué voguer ver m s 2.69 6.35 0.02 0.34 par:pas; +voici voici pre 277.59 97.30 277.59 97.30 +voie voie nom f s 56.06 71.01 47.01 53.58 +voient voir ver 4119.49 2401.76 26.16 20.20 ind:pre:3p;sub:pre:3p; +voies voie nom f p 56.06 71.01 9.05 17.43 +voila voiler ver 39.65 14.73 35.54 1.35 ind:pas:3s; +voilage voilage nom m s 0.00 0.74 0.00 0.27 +voilages voilage nom m p 0.00 0.74 0.00 0.47 +voilaient voiler ver 39.65 14.73 0.00 0.88 ind:imp:3p; +voilais voiler ver 39.65 14.73 0.02 0.07 ind:imp:1s; +voilait voiler ver 39.65 14.73 0.02 1.69 ind:imp:3s; +voilant voiler ver 39.65 14.73 0.00 0.74 par:pre; +voile voile nom s 20.51 48.31 15.49 30.27 +voilent voiler ver 39.65 14.73 0.13 0.47 ind:pre:3p; +voiler voiler ver 39.65 14.73 0.68 1.42 inf; +voilera voiler ver 39.65 14.73 0.14 0.00 ind:fut:3s; +voileront voiler ver 39.65 14.73 0.01 0.00 ind:fut:3p; +voiles voile nom p 20.51 48.31 5.02 18.04 +voilette voilette nom f s 0.06 2.97 0.05 2.57 +voilettes voilette nom f p 0.06 2.97 0.01 0.41 +voilez voiler ver 39.65 14.73 0.08 0.07 imp:pre:2p;ind:pre:2p; +voilier voilier nom m s 1.94 4.86 1.67 2.77 +voiliers voilier nom m p 1.94 4.86 0.27 2.09 +voilà voilà pre 726.44 329.12 726.44 329.12 +voilons voiler ver 39.65 14.73 0.06 0.14 imp:pre:1p;ind:pre:1p; +voilèrent voiler ver 39.65 14.73 0.00 0.07 ind:pas:3p; +voilé voiler ver m s 39.65 14.73 0.30 2.09 par:pas; +voilée voilé adj f s 1.50 6.08 0.90 2.30 +voilées voilé adj f p 1.50 6.08 0.10 1.28 +voilure voilure nom f s 0.17 0.74 0.16 0.47 +voilures voilure nom f p 0.17 0.74 0.01 0.27 +voilés voilé adj m p 1.50 6.08 0.31 0.95 +voir voir ver 4119.49 2401.76 1401.10 716.55 ind:imp:3s;inf; +voire voire adv_sup 7.42 16.89 7.42 16.89 +voirie voirie nom f s 0.77 1.22 0.77 1.22 +vois voir ver 4119.49 2401.76 689.75 253.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +voisin voisin nom m s 56.00 81.82 19.55 28.85 +voisinage voisinage nom m s 5.17 10.41 5.16 10.34 +voisinages voisinage nom m p 5.17 10.41 0.01 0.07 +voisinaient voisiner ver 0.04 3.31 0.00 1.08 ind:imp:3p; +voisinait voisiner ver 0.04 3.31 0.00 0.47 ind:imp:3s; +voisinant voisiner ver 0.04 3.31 0.00 0.41 par:pre; +voisine voisin nom f s 56.00 81.82 10.92 15.07 +voisinent voisiner ver 0.04 3.31 0.01 0.61 ind:pre:3p; +voisiner voisiner ver 0.04 3.31 0.01 0.34 inf; +voisines voisin adj f p 14.31 49.73 1.67 5.54 +voisins voisin nom m p 56.00 81.82 24.33 33.31 +voisiné voisiner ver m s 0.04 3.31 0.01 0.00 par:pas; +voit voir ver 4119.49 2401.76 181.98 158.78 ind:pre:3s; +voituraient voiturer ver 2.05 0.88 0.00 0.07 ind:imp:3p; +voiturait voiturer ver 2.05 0.88 0.00 0.07 ind:imp:3s; +voiture_balai voiture_balai nom f s 0.23 0.07 0.23 0.00 +voiture_bar voiture_bar nom f s 0.01 0.00 0.01 0.00 +voiture_lit voiture_lit nom f s 0.01 0.00 0.01 0.00 +voiture_restaurant voiture_restaurant nom f s 0.05 0.00 0.05 0.00 +voiture voiture nom s 429.40 283.11 388.87 221.15 +voiturer voiturer ver 2.05 0.88 0.02 0.14 inf; +voitureront voiturer ver 2.05 0.88 0.00 0.07 ind:fut:3p; +voiture_balai voiture_balai nom f p 0.23 0.07 0.00 0.07 +voitures voiture nom f p 429.40 283.11 40.53 61.96 +voiturette voiturette nom f s 0.38 0.74 0.35 0.34 +voiturettes voiturette nom f p 0.38 0.74 0.02 0.41 +voiturier voiturier nom m s 0.86 0.47 0.70 0.47 +voituriers voiturier nom m p 0.86 0.47 0.16 0.00 +voiturin voiturin nom m s 0.00 0.07 0.00 0.07 +voituré voiturer ver m s 2.05 0.88 0.00 0.07 par:pas; +voix_off voix_off nom f 0.04 0.00 0.04 0.00 +voix voix nom f 130.83 612.70 130.83 612.70 +vol_au_vent vol_au_vent nom m 0.02 0.14 0.02 0.14 +vol vol nom m s 82.42 48.31 74.14 41.22 +vola voler ver 238.82 88.65 0.93 1.96 ind:pas:3s; +volage volage adj s 1.79 1.62 1.69 1.62 +volages volage adj p 1.79 1.62 0.10 0.00 +volai voler ver 238.82 88.65 0.14 0.27 ind:pas:1s; +volaient voler ver 238.82 88.65 1.14 5.20 ind:imp:3p; +volaille volaille nom f s 2.61 6.49 2.31 3.45 +volailler volailler nom m s 0.02 0.20 0.02 0.07 +volaillers volailler nom m p 0.02 0.20 0.00 0.14 +volailles volaille nom f p 2.61 6.49 0.30 3.04 +volais voler ver 238.82 88.65 2.02 1.08 ind:imp:1s;ind:imp:2s; +volait voler ver 238.82 88.65 4.45 5.95 ind:imp:3s; +volant volant nom m s 19.65 37.30 19.23 33.51 +volante volant adj f s 8.78 9.66 2.81 1.62 +volantes volant adj f p 8.78 9.66 1.24 1.96 +volants volant adj m p 8.78 9.66 2.47 2.03 +volanté volanter ver m s 0.05 0.14 0.00 0.07 par:pas; +volapük volapük nom m s 0.00 0.07 0.00 0.07 +volassent voler ver 238.82 88.65 0.00 0.07 sub:imp:3p; +volatil volatil adj m s 0.64 1.49 0.06 0.34 +volatile volatil adj f s 0.64 1.49 0.49 0.61 +volatiles volatile nom m p 0.47 2.57 0.30 1.22 +volatilisa volatiliser ver 2.00 2.97 0.00 0.14 ind:pas:3s; +volatilisaient volatiliser ver 2.00 2.97 0.00 0.14 ind:imp:3p; +volatilisait volatiliser ver 2.00 2.97 0.02 0.14 ind:imp:3s; +volatilisant volatiliser ver 2.00 2.97 0.00 0.07 par:pre; +volatilisation volatilisation nom f s 0.01 0.00 0.01 0.00 +volatilise volatiliser ver 2.00 2.97 0.07 0.14 imp:pre:2s;ind:pre:3s; +volatilisent volatiliser ver 2.00 2.97 0.05 0.14 ind:pre:3p; +volatiliser volatiliser ver 2.00 2.97 0.13 0.27 inf; +volatilisé volatiliser ver m s 2.00 2.97 0.95 0.68 par:pas; +volatilisée volatiliser ver f s 2.00 2.97 0.56 0.54 par:pas; +volatilisées volatiliser ver f p 2.00 2.97 0.02 0.20 par:pas; +volatilisés volatiliser ver m p 2.00 2.97 0.20 0.54 par:pas; +volatilité volatilité nom f s 0.04 0.00 0.04 0.00 +volatils volatil adj m p 0.64 1.49 0.01 0.20 +volcan volcan nom m s 5.50 5.34 4.52 3.85 +volcanique volcanique adj s 0.91 1.69 0.69 1.15 +volcaniques volcanique adj p 0.91 1.69 0.22 0.54 +volcanologique volcanologique adj m s 0.01 0.00 0.01 0.00 +volcanologue volcanologue nom s 0.02 0.00 0.02 0.00 +volcans volcan nom m p 5.50 5.34 0.98 1.49 +vole voler ver 238.82 88.65 35.31 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +volent voler ver 238.82 88.65 9.53 5.61 ind:pre:3p; +voler voler ver 238.82 88.65 67.88 26.01 inf; +volera voler ver 238.82 88.65 2.68 0.47 ind:fut:3s; +volerai voler ver 238.82 88.65 1.00 0.07 ind:fut:1s; +voleraient voler ver 238.82 88.65 0.07 0.07 cnd:pre:3p; +volerais voler ver 238.82 88.65 0.44 0.07 cnd:pre:1s;cnd:pre:2s; +volerait voler ver 238.82 88.65 0.94 0.68 cnd:pre:3s; +voleras voler ver 238.82 88.65 0.57 0.00 ind:fut:2s; +volerez voler ver 238.82 88.65 0.25 0.07 ind:fut:2p; +volerie volerie nom f s 0.01 0.00 0.01 0.00 +voleriez voler ver 238.82 88.65 0.05 0.00 cnd:pre:2p; +volerons voler ver 238.82 88.65 0.50 0.00 ind:fut:1p; +voleront voler ver 238.82 88.65 0.89 0.34 ind:fut:3p; +voles voler ver 238.82 88.65 4.82 0.68 ind:pre:2s;sub:pre:2s; +volet volet nom m s 5.93 41.55 2.21 6.89 +voleta voleter ver 0.45 7.23 0.00 0.20 ind:pas:3s; +voletaient voleter ver 0.45 7.23 0.01 1.82 ind:imp:3p; +voletait voleter ver 0.45 7.23 0.00 1.22 ind:imp:3s; +voletant voleter ver 0.45 7.23 0.03 1.42 par:pre; +voletante voletant adj f s 0.01 0.81 0.00 0.27 +voletantes voletant adj f p 0.01 0.81 0.00 0.20 +voleter voleter ver 0.45 7.23 0.14 1.35 inf; +voletez voleter ver 0.45 7.23 0.02 0.00 imp:pre:2p; +volets volet nom m p 5.93 41.55 3.72 34.66 +volette voleter ver 0.45 7.23 0.14 0.54 ind:pre:1s;ind:pre:3s; +volettent voleter ver 0.45 7.23 0.10 0.68 ind:pre:3p; +voleur voleur nom m s 68.01 22.70 41.39 11.15 +voleurs voleur nom m p 68.01 22.70 21.91 9.86 +voleuse voleur nom f s 68.01 22.70 4.71 1.55 +voleuses voleuse nom f p 0.17 0.00 0.17 0.00 +volez voler ver 238.82 88.65 3.59 0.27 imp:pre:2p;ind:pre:2p; +voliez voler ver 238.82 88.65 0.65 0.07 ind:imp:2p; +volige volige nom f s 0.01 0.54 0.00 0.14 +voliges volige nom f p 0.01 0.54 0.01 0.41 +volions voler ver 238.82 88.65 0.19 0.14 ind:imp:1p; +volière volière nom f s 0.36 3.24 0.34 2.97 +volières volière nom f p 0.36 3.24 0.02 0.27 +volition volition nom f s 0.00 0.27 0.00 0.14 +volitions volition nom f p 0.00 0.27 0.00 0.14 +volley_ball volley_ball nom m s 0.25 0.68 0.25 0.68 +volley volley nom m s 1.51 0.07 1.51 0.07 +volleyeur volleyeur nom m s 0.14 0.14 0.14 0.07 +volleyeurs volleyeur nom m p 0.14 0.14 0.00 0.07 +volons voler ver 238.82 88.65 0.79 0.20 imp:pre:1p;ind:pre:1p; +volontaire volontaire adj s 14.48 13.99 11.54 10.74 +volontairement volontairement adv 3.59 9.12 3.59 9.12 +volontaires volontaire nom p 8.03 6.28 5.05 5.27 +volontariat volontariat nom m s 0.60 0.20 0.60 0.20 +volontarisme volontarisme nom m s 0.00 0.14 0.00 0.14 +volontariste volontariste adj s 0.00 0.20 0.00 0.14 +volontaristes volontariste adj p 0.00 0.20 0.00 0.07 +volontiers volontiers adv_sup 19.41 40.61 19.41 40.61 +volonté volonté nom f s 47.08 74.93 44.41 70.54 +volontés volonté nom f p 47.08 74.93 2.67 4.39 +volât voler ver 238.82 88.65 0.00 0.14 sub:imp:3s; +vols vol nom m p 82.42 48.31 8.28 7.09 +volt volt nom m s 2.00 0.27 0.40 0.00 +voltaïque voltaïque adj f s 0.01 0.00 0.01 0.00 +voltage voltage nom m s 0.41 0.34 0.41 0.34 +voltaient volter ver 0.01 0.14 0.00 0.07 ind:imp:3p; +voltaire voltaire nom m s 0.00 0.14 0.00 0.07 +voltaires voltaire nom m p 0.00 0.14 0.00 0.07 +voltairien voltairien adj m s 0.01 0.00 0.01 0.00 +volte_face volte_face nom f 0.26 3.31 0.26 3.31 +volte volte nom f s 0.67 1.35 0.67 0.74 +volter volter ver 0.01 0.14 0.01 0.07 inf; +voltes volte nom f p 0.67 1.35 0.00 0.61 +volèrent voler ver 238.82 88.65 0.04 0.68 ind:pas:3p; +voltige voltige nom f s 0.45 2.09 0.45 1.96 +voltigea voltiger ver 1.40 4.46 0.00 0.27 ind:pas:3s; +voltigeaient voltiger ver 1.40 4.46 0.00 1.28 ind:imp:3p; +voltigeait voltiger ver 1.40 4.46 0.00 0.07 ind:imp:3s; +voltigeant voltiger ver 1.40 4.46 0.14 0.68 par:pre; +voltigement voltigement nom m s 0.00 0.07 0.00 0.07 +voltigent voltiger ver 1.40 4.46 0.81 0.47 ind:pre:3p; +voltiger voltiger ver 1.40 4.46 0.21 0.95 inf; +voltiges voltige nom f p 0.45 2.09 0.00 0.14 +voltigeur voltigeur nom m s 0.15 5.00 0.14 2.09 +voltigeurs voltigeur nom m p 0.15 5.00 0.01 2.91 +voltigèrent voltiger ver 1.40 4.46 0.00 0.34 ind:pas:3p; +voltigé voltiger ver m s 1.40 4.46 0.03 0.07 par:pas; +voltmètre voltmètre nom m s 0.23 0.07 0.23 0.07 +volts volt nom m p 2.00 0.27 1.60 0.27 +volé voler ver m s 238.82 88.65 79.01 19.26 par:pas; +volubile volubile adj s 0.07 4.73 0.05 3.72 +volubilement volubilement adv 0.00 0.74 0.00 0.74 +volubiles volubile adj p 0.07 4.73 0.02 1.01 +volubilis volubilis nom m 0.00 1.35 0.00 1.35 +volubilité volubilité nom f s 0.00 1.55 0.00 1.55 +volée voler ver f s 238.82 88.65 10.14 2.23 par:pas; +volées voler ver f p 238.82 88.65 2.24 0.81 par:pas; +volume volume nom m s 6.48 27.84 5.45 16.35 +volumes volume nom m p 6.48 27.84 1.03 11.49 +volémie volémie nom f s 0.01 0.00 0.01 0.00 +volumineuse volumineux adj f s 0.37 5.41 0.04 1.55 +volumineuses volumineux adj f p 0.37 5.41 0.10 0.47 +volumineux volumineux adj m 0.37 5.41 0.22 3.38 +volumique volumique adj f s 0.01 0.00 0.01 0.00 +volumétrique volumétrique adj s 0.02 0.00 0.02 0.00 +volupté volupté nom f s 3.27 11.42 3.27 10.20 +voluptueuse voluptueux adj f s 0.62 7.36 0.41 1.96 +voluptueusement voluptueusement adv 0.01 3.11 0.01 3.11 +voluptueuses voluptueux adj f p 0.62 7.36 0.11 0.95 +voluptueux voluptueux adj m 0.62 7.36 0.10 4.46 +voluptés volupté nom f p 3.27 11.42 0.00 1.22 +volés voler ver m p 238.82 88.65 4.93 2.09 par:pas; +volute volute nom f s 0.03 6.69 0.00 0.41 +volutes volute nom f p 0.03 6.69 0.03 6.28 +volvaires volvaire nom f p 0.00 0.07 0.00 0.07 +volve volve nom f s 0.01 0.07 0.01 0.07 +vomi vomir ver m s 26.12 23.31 5.19 2.70 par:pas; +vomie vomir ver f s 26.12 23.31 0.24 0.27 par:pas; +vomies vomir ver f p 26.12 23.31 0.14 0.14 par:pas; +vomique vomique adj m s 0.00 0.07 0.00 0.07 +vomir vomir ver 26.12 23.31 13.75 11.62 inf; +vomira vomir ver 26.12 23.31 0.09 0.14 ind:fut:3s; +vomirai vomir ver 26.12 23.31 0.05 0.00 ind:fut:1s; +vomirais vomir ver 26.12 23.31 0.18 0.07 cnd:pre:1s; +vomirait vomir ver 26.12 23.31 0.03 0.14 cnd:pre:3s; +vomiras vomir ver 26.12 23.31 0.03 0.07 ind:fut:2s; +vomirent vomir ver 26.12 23.31 0.00 0.07 ind:pas:3p; +vomirez vomir ver 26.12 23.31 0.04 0.00 ind:fut:2p; +vomiront vomir ver 26.12 23.31 0.01 0.07 ind:fut:3p; +vomis vomir ver m p 26.12 23.31 1.94 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +vomissaient vomir ver 26.12 23.31 0.28 0.41 ind:imp:3p; +vomissais vomir ver 26.12 23.31 0.06 0.27 ind:imp:1s;ind:imp:2s; +vomissait vomir ver 26.12 23.31 0.33 2.30 ind:imp:3s; +vomissant vomir ver 26.12 23.31 0.11 0.81 par:pre; +vomisse vomir ver 26.12 23.31 0.43 0.34 sub:pre:1s;sub:pre:3s; +vomissement vomissement nom m s 1.31 1.55 0.44 0.61 +vomissements vomissement nom m p 1.31 1.55 0.88 0.95 +vomissent vomir ver 26.12 23.31 0.61 0.20 ind:pre:3p; +vomisseur vomisseur adj m s 0.03 0.07 0.03 0.07 +vomissez vomir ver 26.12 23.31 0.16 0.07 imp:pre:2p;ind:pre:2p; +vomissions vomir ver 26.12 23.31 0.00 0.14 ind:imp:1p; +vomissure vomissure nom f s 0.53 1.15 0.20 0.34 +vomissures vomissure nom f p 0.53 1.15 0.33 0.81 +vomit vomir ver 26.12 23.31 2.45 2.64 ind:pre:3s;ind:pas:3s; +vomitif vomitif adj m s 0.05 0.27 0.05 0.07 +vomitifs vomitif adj m p 0.05 0.27 0.00 0.07 +vomitifs vomitif nom m p 0.04 0.27 0.00 0.07 +vomitives vomitif adj f p 0.05 0.27 0.00 0.14 +vomito_negro vomito_negro nom m s 0.01 0.00 0.01 0.00 +vomitoire vomitoire nom m s 0.03 0.07 0.02 0.00 +vomitoires vomitoire nom m p 0.03 0.07 0.01 0.07 +vont aller ver 9992.78 2854.93 281.35 116.62 ind:pre:3p; +vopo vopo nom m s 0.00 0.07 0.00 0.07 +vorace vorace adj s 0.95 4.19 0.56 2.64 +voracement voracement adv 0.03 0.81 0.03 0.81 +voraces vorace adj p 0.95 4.19 0.38 1.55 +voracité voracité nom f s 0.07 1.69 0.07 1.69 +vortex vortex nom m 6.14 0.14 6.14 0.14 +vos vos adj_pos 649.07 180.27 649.07 180.27 +vosgien vosgien nom m s 0.00 0.14 0.00 0.14 +vosgienne vosgien adj f s 0.00 0.14 0.00 0.14 +vota voter ver 29.61 8.51 0.00 0.27 ind:pas:3s; +votaient voter ver 29.61 8.51 0.10 0.41 ind:imp:3p; +votais voter ver 29.61 8.51 0.02 0.00 ind:imp:1s; +votait voter ver 29.61 8.51 0.28 0.34 ind:imp:3s; +votant voter ver 29.61 8.51 0.20 0.07 par:pre; +votants votant nom m p 0.17 0.20 0.15 0.20 +vote vote nom m s 15.04 4.46 11.62 3.72 +votent voter ver 29.61 8.51 1.48 0.41 ind:pre:3p; +voter voter ver 29.61 8.51 7.96 2.64 inf; +votera voter ver 29.61 8.51 0.67 0.14 ind:fut:3s; +voterai voter ver 29.61 8.51 0.43 0.00 ind:fut:1s; +voterais voter ver 29.61 8.51 0.20 0.00 cnd:pre:1s;cnd:pre:2s; +voterait voter ver 29.61 8.51 0.21 0.00 cnd:pre:3s; +voteras voter ver 29.61 8.51 0.02 0.00 ind:fut:2s; +voterez voter ver 29.61 8.51 0.12 0.14 ind:fut:2p; +voterons voter ver 29.61 8.51 0.17 0.07 ind:fut:1p; +voteront voter ver 29.61 8.51 0.34 0.00 ind:fut:3p; +votes vote nom m p 15.04 4.46 3.42 0.74 +votez voter ver 29.61 8.51 3.66 0.00 imp:pre:2p;ind:pre:2p; +votiez voter ver 29.61 8.51 0.02 0.00 ind:imp:2p; +votif votif adj m s 0.13 0.81 0.01 0.00 +votifs votif adj m p 0.13 0.81 0.00 0.07 +votions voter ver 29.61 8.51 0.03 0.07 ind:imp:1p; +votive votif adj f s 0.13 0.81 0.11 0.34 +votives votif adj f p 0.13 0.81 0.01 0.41 +votons voter ver 29.61 8.51 0.95 0.00 imp:pre:1p;ind:pre:1p; +votre votre pro_pos s 0.32 0.00 0.32 0.00 +votèrent voter ver 29.61 8.51 0.02 0.00 ind:pas:3p; +voté voter ver m s 29.61 8.51 7.11 1.76 par:pas; +votée voter ver f s 29.61 8.51 0.90 0.34 par:pas; +votées voter ver f p 29.61 8.51 0.03 0.07 par:pas; +votés voter ver m p 29.61 8.51 0.01 0.20 par:pas; +voua vouer ver 6.88 18.92 0.03 0.41 ind:pas:3s; +vouai vouer ver 6.88 18.92 0.00 0.07 ind:pas:1s; +vouaient vouer ver 6.88 18.92 0.17 0.41 ind:imp:3p; +vouais vouer ver 6.88 18.92 0.71 0.41 ind:imp:1s;ind:imp:2s; +vouait vouer ver 6.88 18.92 0.15 1.82 ind:imp:3s; +vouant vouer ver 6.88 18.92 0.01 0.14 par:pre; +voudra vouloir ver_sup 5249.31 1640.14 21.62 12.03 ind:fut:3s; +voudrai vouloir ver_sup 5249.31 1640.14 4.06 1.62 ind:fut:1s; +voudraient vouloir ver_sup 5249.31 1640.14 6.02 6.42 cnd:pre:3p; +voudrais vouloir ver_sup 5249.31 1640.14 194.56 92.09 cnd:pre:1s;cnd:pre:2s; +voudrait vouloir ver_sup 5249.31 1640.14 44.48 43.45 cnd:pre:3s; +voudras vouloir ver_sup 5249.31 1640.14 26.03 10.27 ind:fut:2s; +voudrez vouloir ver_sup 5249.31 1640.14 19.77 10.41 ind:fut:2p; +voudriez vouloir ver_sup 5249.31 1640.14 19.29 4.19 cnd:pre:2p; +voudrions vouloir ver_sup 5249.31 1640.14 5.14 1.82 cnd:pre:1p; +voudrons vouloir ver_sup 5249.31 1640.14 0.32 0.27 ind:fut:1p; +voudront vouloir ver_sup 5249.31 1640.14 6.93 3.38 ind:fut:3p; +voue vouer ver 6.88 18.92 0.51 0.95 ind:pre:1s;ind:pre:3s; +vouent vouer ver 6.88 18.92 0.25 0.07 ind:pre:3p; +vouer vouer ver 6.88 18.92 0.42 2.43 inf;;inf;;inf;; +vouera vouer ver 6.88 18.92 0.01 0.07 ind:fut:3s; +vouerait vouer ver 6.88 18.92 0.00 0.07 cnd:pre:3s; +vouge vouge nom f s 0.01 0.14 0.01 0.14 +vouivre vouivre nom f s 0.00 3.18 0.00 3.04 +vouivres vouivre nom f p 0.00 3.18 0.00 0.14 +voulûmes vouloir ver_sup 5249.31 1640.14 0.00 0.07 ind:pas:1p; +voulût vouloir ver_sup 5249.31 1640.14 0.00 3.72 sub:imp:3s; +voulaient vouloir ver_sup 5249.31 1640.14 28.88 30.20 ind:imp:3p; +voulais vouloir ver_sup 5249.31 1640.14 415.76 107.30 ind:imp:1s;ind:imp:2s; +voulait vouloir ver_sup 5249.31 1640.14 192.15 225.34 ind:imp:3s; +voulant vouloir ver_sup 5249.31 1640.14 4.28 18.45 par:pre; +voulez vouloir ver_sup 5249.31 1640.14 553.40 113.58 imp:pre:2p;ind:pre:2p; +vouliez vouloir ver_sup 5249.31 1640.14 43.78 5.81 ind:imp:2p;sub:pre:2p; +voulions vouloir ver_sup 5249.31 1640.14 9.07 6.08 ind:imp:1p;sub:pre:1p; +vouloir vouloir ver_sup 5249.31 1640.14 63.87 62.97 inf; +vouloirs vouloir nom_sup m p 1.28 2.57 0.00 0.14 +voulons vouloir ver_sup 5249.31 1640.14 40.38 9.53 imp:pre:1p;ind:pre:1p; +voulu vouloir ver_sup m s 5249.31 1640.14 151.04 174.19 par:pas; +voulue vouloir ver_sup f s 5249.31 1640.14 0.91 2.70 par:pas; +voulues voulu adj f p 4.42 9.12 0.18 0.68 +voulurent vouloir ver_sup 5249.31 1640.14 0.40 2.30 ind:pas:3p; +voulus vouloir ver_sup m p 5249.31 1640.14 0.36 6.22 ind:pas:1s;par:pas; +voulusse vouloir ver_sup 5249.31 1640.14 0.00 0.34 sub:imp:1s; +voulussent vouloir ver_sup 5249.31 1640.14 0.00 0.41 sub:imp:3p; +voulut vouloir ver_sup 5249.31 1640.14 2.42 36.89 ind:pas:3s; +vouons vouer ver 6.88 18.92 0.31 0.14 imp:pre:1p;ind:pre:1p; +vous_même vous_même pro_per p 28.20 17.84 28.20 17.84 +vous_mêmes vous_mêmes pro_per p 4.30 1.55 4.30 1.55 +vous vous pro_per p 13589.70 3507.16 13589.70 3507.16 +vousoyait vousoyer ver 0.00 0.14 0.00 0.07 ind:imp:3s; +vousoyez vousoyer ver 0.00 0.14 0.00 0.07 ind:pre:2p; +voussoie voussoyer ver 0.02 0.47 0.00 0.07 ind:pre:3s; +voussoiement voussoiement nom m s 0.00 0.34 0.00 0.34 +voussoient voussoyer ver 0.02 0.47 0.00 0.07 ind:pre:3p; +voussoyait voussoyer ver 0.02 0.47 0.00 0.14 ind:imp:3s; +voussoyer voussoyer ver 0.02 0.47 0.00 0.20 inf; +voussoyez voussoyer ver 0.02 0.47 0.02 0.00 imp:pre:2p; +voussure voussure nom f s 0.00 0.81 0.00 0.54 +voussures voussure nom f p 0.00 0.81 0.00 0.27 +vouèrent vouer ver 6.88 18.92 0.00 0.07 ind:pas:3p; +voué vouer ver m s 6.88 18.92 2.47 5.14 par:pas; +vouée vouer ver f s 6.88 18.92 1.42 4.12 par:pas; +vouées vouer ver f p 6.88 18.92 0.14 0.81 par:pas; +voués vouer ver m p 6.88 18.92 0.27 1.82 par:pas; +vouvoie vouvoyer ver 0.79 1.35 0.27 0.14 imp:pre:2s;ind:pre:3s; +vouvoiement vouvoiement nom m s 0.00 0.47 0.00 0.41 +vouvoiements vouvoiement nom m p 0.00 0.47 0.00 0.07 +vouvoient vouvoyer ver 0.79 1.35 0.00 0.07 ind:pre:3p; +vouvoies vouvoyer ver 0.79 1.35 0.02 0.07 ind:pre:2s; +vouvoya vouvoyer ver 0.79 1.35 0.00 0.07 ind:pas:3s; +vouvoyait vouvoyer ver 0.79 1.35 0.01 0.81 ind:imp:3s; +vouvoyant vouvoyer ver 0.79 1.35 0.00 0.14 par:pre; +vouvoyer vouvoyer ver 0.79 1.35 0.49 0.07 inf; +vouvray vouvray nom m s 0.00 0.07 0.00 0.07 +vox_populi vox_populi nom f 0.05 0.27 0.05 0.27 +voyage voyage nom m s 123.17 140.07 112.19 110.54 +voyagea voyager ver 45.74 27.50 0.06 0.54 ind:pas:3s; +voyageaient voyager ver 45.74 27.50 0.30 1.49 ind:imp:3p; +voyageais voyager ver 45.74 27.50 0.62 0.47 ind:imp:1s;ind:imp:2s; +voyageait voyager ver 45.74 27.50 1.27 2.91 ind:imp:3s; +voyageant voyager ver 45.74 27.50 0.71 0.54 par:pre; +voyagent voyager ver 45.74 27.50 1.71 1.22 ind:pre:3p; +voyageons voyager ver 45.74 27.50 0.62 0.27 imp:pre:1p;ind:pre:1p; +voyager voyager ver 45.74 27.50 19.45 9.19 inf; +voyagera voyager ver 45.74 27.50 0.41 0.00 ind:fut:3s; +voyagerai voyager ver 45.74 27.50 0.16 0.07 ind:fut:1s; +voyagerais voyager ver 45.74 27.50 0.08 0.07 cnd:pre:1s; +voyagerait voyager ver 45.74 27.50 0.22 0.27 cnd:pre:3s; +voyageras voyager ver 45.74 27.50 0.28 0.07 ind:fut:2s; +voyagerez voyager ver 45.74 27.50 0.07 0.00 ind:fut:2p; +voyageriez voyager ver 45.74 27.50 0.02 0.00 cnd:pre:2p; +voyagerons voyager ver 45.74 27.50 0.24 0.07 ind:fut:1p; +voyageront voyager ver 45.74 27.50 0.02 0.00 ind:fut:3p; +voyage_éclair voyage_éclair nom m p 0.00 0.07 0.00 0.07 +voyages voyage nom m p 123.17 140.07 10.98 29.53 +voyageur voyageur nom m s 8.11 43.38 3.17 20.88 +voyageurs voyageur nom m p 8.11 43.38 4.68 20.74 +voyageuse voyageur nom f s 8.11 43.38 0.26 1.08 +voyageuses voyageur nom f p 8.11 43.38 0.00 0.68 +voyagez voyager ver 45.74 27.50 1.69 0.14 imp:pre:2p;ind:pre:2p; +voyagiez voyager ver 45.74 27.50 0.28 0.00 ind:imp:2p; +voyagions voyager ver 45.74 27.50 0.34 0.34 ind:imp:1p; +voyagèrent voyager ver 45.74 27.50 0.01 0.14 ind:pas:3p; +voyagé voyager ver m s 45.74 27.50 5.90 4.93 par:pas; +voyaient voir ver 4119.49 2401.76 3.03 21.35 ind:imp:3p; +voyais voir ver 4119.49 2401.76 31.14 90.27 ind:imp:1s;ind:imp:2s; +voyait voir ver 4119.49 2401.76 25.32 180.95 ind:imp:3s; +voyance voyance nom f s 0.71 0.74 0.71 0.68 +voyances voyance nom f p 0.71 0.74 0.00 0.07 +voyant voir ver 4119.49 2401.76 17.16 42.64 par:pre; +voyante voyant nom f s 4.25 8.65 1.60 2.57 +voyantes voyant adj f p 3.55 8.58 0.22 0.88 +voyants voyant nom m p 4.25 8.65 0.56 1.89 +voyelle voyelle nom f s 0.71 1.76 0.36 0.47 +voyelles voyelle nom f p 0.71 1.76 0.35 1.28 +voyer voyer nom m s 0.16 0.00 0.16 0.00 +voyeur voyeur nom m s 3.71 4.26 2.94 2.77 +voyeurisme voyeurisme nom m s 0.13 0.34 0.13 0.34 +voyeurs voyeur nom m p 3.71 4.26 0.76 1.35 +voyeuse voyeur nom f s 3.71 4.26 0.02 0.14 +voyez voir ver 4119.49 2401.76 191.63 83.65 imp:pre:2p;ind:pre:2p; +voyiez voir ver 4119.49 2401.76 4.47 1.96 ind:imp:2p;sub:pre:2p; +voyions voir ver 4119.49 2401.76 0.88 4.80 ind:imp:1p; +voyons voir ver 4119.49 2401.76 127.93 44.80 imp:pre:1p;ind:pre:1p; +voyou voyou nom m s 21.09 25.07 11.69 14.59 +voyoucratie voyoucratie nom f s 0.00 0.27 0.00 0.27 +voyous voyou nom m p 21.09 25.07 9.41 10.47 +voyoute voyoute adj f s 0.00 0.47 0.00 0.27 +voyouterie voyouterie nom f s 0.00 0.34 0.00 0.34 +voyoutes voyoute adj f p 0.00 0.47 0.00 0.20 +voyoutisme voyoutisme nom m s 0.00 0.07 0.00 0.07 +vrac vrac nom m s 1.17 5.20 1.17 5.20 +vrai_faux vrai_faux adj m s 0.00 0.07 0.00 0.07 +vrai vrai adj m s 807.03 430.07 678.47 311.89 +vraie vrai adj f s 807.03 430.07 83.64 77.57 +vraies vrai adj f p 807.03 430.07 13.91 16.76 +vraiment vraiment adv 968.57 274.32 968.57 274.32 +vrais vrai adj m p 807.03 430.07 31.01 23.85 +vraisemblable vraisemblable adj s 0.89 5.74 0.89 5.54 +vraisemblablement vraisemblablement adv 1.39 5.68 1.39 5.68 +vraisemblables vraisemblable adj m p 0.89 5.74 0.00 0.20 +vraisemblance vraisemblance nom f s 0.12 2.91 0.09 2.77 +vraisemblances vraisemblance nom f p 0.12 2.91 0.03 0.14 +vraquier vraquier nom m s 0.00 0.07 0.00 0.07 +vrilla vriller ver 0.13 3.18 0.00 0.41 ind:pas:3s; +vrillaient vriller ver 0.13 3.18 0.00 0.14 ind:imp:3p; +vrillait vriller ver 0.13 3.18 0.00 0.54 ind:imp:3s; +vrillant vriller ver 0.13 3.18 0.01 0.61 par:pre; +vrille vrille nom f s 0.72 2.57 0.65 1.82 +vrillement vrillement nom m s 0.00 0.07 0.00 0.07 +vrillent vriller ver 0.13 3.18 0.00 0.14 ind:pre:3p; +vriller vriller ver 0.13 3.18 0.00 0.14 inf; +vrilles vrille nom f p 0.72 2.57 0.07 0.74 +vrillette vrillette nom f s 0.01 0.07 0.01 0.00 +vrillettes vrillette nom f p 0.01 0.07 0.00 0.07 +vrillèrent vriller ver 0.13 3.18 0.00 0.07 ind:pas:3p; +vrillé vriller ver m s 0.13 3.18 0.09 0.20 par:pas; +vrillées vriller ver f p 0.13 3.18 0.00 0.14 par:pas; +vrillés vriller ver m p 0.13 3.18 0.00 0.14 par:pas; +vrombir vrombir ver 0.26 1.96 0.02 0.27 inf; +vrombis vrombir ver 0.26 1.96 0.00 0.07 ind:pre:1s; +vrombissaient vrombir ver 0.26 1.96 0.02 0.07 ind:imp:3p; +vrombissait vrombir ver 0.26 1.96 0.00 0.27 ind:imp:3s; +vrombissant vrombir ver 0.26 1.96 0.01 0.27 par:pre; +vrombissante vrombissant adj f s 0.01 0.68 0.00 0.27 +vrombissantes vrombissant adj f p 0.01 0.68 0.00 0.34 +vrombissement vrombissement nom m s 0.47 1.35 0.47 1.15 +vrombissements vrombissement nom m p 0.47 1.35 0.00 0.20 +vrombissent vrombir ver 0.26 1.96 0.00 0.14 ind:pre:3p; +vrombissions vrombir ver 0.26 1.96 0.00 0.07 ind:imp:1p; +vrombit vrombir ver 0.26 1.96 0.21 0.81 ind:pre:3s;ind:pas:3s; +vroom vroom ono 0.07 0.41 0.07 0.41 +vroum vroum ono 0.38 0.34 0.38 0.34 +vu voir ver m s 4119.49 2401.76 905.21 393.45 par:pas; +vécûmes vivre ver 510.05 460.34 0.04 0.41 ind:pas:1p; +vécût vivre ver 510.05 460.34 0.00 0.54 sub:imp:3s; +vécu vivre ver m s 510.05 460.34 51.14 56.62 par:pas; +vécue vivre ver f s 510.05 460.34 2.26 4.26 par:pas; +vécues vivre ver f p 510.05 460.34 0.79 1.62 par:pas; +vécurent vivre ver 510.05 460.34 1.65 1.15 ind:pas:3p; +vécus vivre ver m p 510.05 460.34 1.10 2.43 ind:pas:1s;ind:pas:2s;par:pas; +vécés vécés nom m p 0.01 1.08 0.01 1.08 +vécussent vivre ver 510.05 460.34 0.00 0.14 sub:imp:3p; +vécut vivre ver 510.05 460.34 1.43 4.19 ind:pas:3s; +vue voir ver f s 4119.49 2401.76 109.21 56.35 par:pas; +vues voir ver f p 4119.49 2401.76 9.31 8.11 par:pas; +végète végéter ver 0.57 2.91 0.16 0.34 ind:pre:1s;ind:pre:3s; +végètent végéter ver 0.57 2.91 0.10 0.14 ind:pre:3p; +végètes végéter ver 0.57 2.91 0.02 0.00 ind:pre:2s; +végéta végéter ver 0.57 2.91 0.01 0.00 ind:pas:3s; +végétaient végéter ver 0.57 2.91 0.00 0.41 ind:imp:3p; +végétais végéter ver 0.57 2.91 0.00 0.07 ind:imp:1s; +végétait végéter ver 0.57 2.91 0.00 0.74 ind:imp:3s; +végétal végétal adj m s 0.78 8.85 0.18 2.97 +végétale végétal adj f s 0.78 8.85 0.51 3.85 +végétales végétal adj f p 0.78 8.85 0.03 0.95 +végétalien végétalien adj m s 0.22 0.07 0.11 0.00 +végétalienne végétalien adj f s 0.22 0.07 0.11 0.07 +végétalisme végétalisme nom m s 0.01 0.00 0.01 0.00 +végétarien végétarien adj m s 3.94 1.82 2.31 0.88 +végétarienne végétarien adj f s 3.94 1.82 1.32 0.68 +végétariennes végétarien adj f p 3.94 1.82 0.07 0.00 +végétariens végétarien nom m p 0.90 0.27 0.47 0.07 +végétarisme végétarisme nom m s 0.03 0.00 0.03 0.00 +végétatif végétatif adj m s 0.47 1.55 0.40 0.41 +végétatifs végétatif adj m p 0.47 1.55 0.01 0.07 +végétation végétation nom f s 1.47 9.53 0.78 8.85 +végétations végétation nom f p 1.47 9.53 0.69 0.68 +végétative végétatif adj f s 0.47 1.55 0.04 1.01 +végétatives végétatif adj f p 0.47 1.55 0.02 0.07 +végétaux végétal nom m p 0.44 1.89 0.26 0.88 +végéter végéter ver 0.57 2.91 0.26 0.88 inf; +végéteras végéter ver 0.57 2.91 0.01 0.00 ind:fut:2s; +végéterez végéter ver 0.57 2.91 0.00 0.07 ind:fut:2p; +végétons végéter ver 0.57 2.91 0.00 0.07 ind:pre:1p; +végétât végéter ver 0.57 2.91 0.00 0.07 sub:imp:3s; +végété végéter ver m s 0.57 2.91 0.01 0.14 par:pas; +véhiculaient véhiculer ver 0.72 2.30 0.02 0.07 ind:imp:3p; +véhiculait véhiculer ver 0.72 2.30 0.03 0.20 ind:imp:3s; +véhiculant véhiculer ver 0.72 2.30 0.04 0.20 par:pre; +véhicule véhicule nom m s 22.08 22.09 17.04 14.86 +véhiculent véhiculer ver 0.72 2.30 0.14 0.07 ind:pre:3p; +véhiculer véhiculer ver 0.72 2.30 0.12 0.95 inf; +véhicules véhicule nom m p 22.08 22.09 5.04 7.23 +véhiculez véhiculer ver 0.72 2.30 0.01 0.00 imp:pre:2p; +véhiculé véhiculer ver m s 0.72 2.30 0.00 0.14 par:pas; +véhiculée véhiculer ver f s 0.72 2.30 0.04 0.20 par:pas; +véhémence véhémence nom f s 0.31 5.07 0.31 5.07 +véhément véhément adj m s 0.29 5.88 0.02 1.49 +véhémente véhément adj f s 0.29 5.88 0.28 1.89 +véhémentement véhémentement adv 0.01 0.34 0.01 0.34 +véhémentes véhément adj f p 0.29 5.88 0.00 1.22 +véhéments véhément adj m p 0.29 5.88 0.00 1.28 +vêlage vêlage nom m s 0.00 0.20 0.00 0.14 +vêlages vêlage nom m p 0.00 0.20 0.00 0.07 +vélaires vélaire nom f p 0.00 0.07 0.00 0.07 +vélar vélar nom m s 0.04 0.00 0.04 0.00 +vulcain vulcain nom m s 0.06 0.00 0.06 0.00 +vulcanienne vulcanienne adj f s 0.01 0.00 0.01 0.00 +vulcanisait vulcaniser ver 0.01 0.07 0.00 0.07 ind:imp:3s; +vulcanisation vulcanisation nom f s 0.00 0.07 0.00 0.07 +vulcaniser vulcaniser ver 0.01 0.07 0.01 0.00 inf; +vulcanisé vulcanisé adj m s 0.01 0.14 0.01 0.14 +vulcanologue vulcanologue nom s 0.00 0.07 0.00 0.07 +vêler vêler ver 0.02 0.54 0.01 0.47 inf; +vulgaire vulgaire adj s 10.36 16.76 8.48 12.84 +vulgairement vulgairement adv 0.40 1.22 0.40 1.22 +vulgaires vulgaire adj p 10.36 16.76 1.88 3.92 +vulgarisateurs vulgarisateur nom m p 0.00 0.07 0.00 0.07 +vulgarisation vulgarisation nom f s 0.01 0.41 0.01 0.34 +vulgarisations vulgarisation nom f p 0.01 0.41 0.00 0.07 +vulgariser vulgariser ver 0.01 0.14 0.01 0.14 inf; +vulgarisée vulgarisé adj f s 0.00 0.07 0.00 0.07 +vulgarité vulgarité nom f s 1.75 5.68 1.59 5.34 +vulgarités vulgarité nom f p 1.75 5.68 0.17 0.34 +vulgate vulgate nom f s 0.00 0.20 0.00 0.20 +vulgum_pecus vulgum_pecus nom m 0.01 0.07 0.01 0.07 +vélin vélin adj m s 0.02 0.07 0.02 0.07 +vélins vélin nom m p 0.00 0.68 0.00 0.07 +véliplanchiste véliplanchiste nom s 0.01 0.00 0.01 0.00 +vélique vélique adj f s 0.00 0.07 0.00 0.07 +vulnérabilité vulnérabilité nom f s 0.77 1.01 0.77 1.01 +vulnérable vulnérable adj s 7.76 7.97 6.00 6.35 +vulnérables vulnérable adj p 7.76 7.97 1.77 1.62 +vulnéraire vulnéraire nom s 0.00 0.20 0.00 0.14 +vulnéraires vulnéraire nom p 0.00 0.20 0.00 0.07 +vulnérant vulnérant adj m s 0.00 0.07 0.00 0.07 +vélo_cross vélo_cross nom m 0.00 0.07 0.00 0.07 +vélo_pousse vélo_pousse nom m s 0.01 0.00 0.01 0.00 +vélo vélo nom m s 35.58 28.45 32.95 24.32 +véloce véloce adj s 0.06 0.74 0.04 0.54 +vélocement vélocement adv 0.01 0.00 0.01 0.00 +véloces véloce adj f p 0.06 0.74 0.02 0.20 +vélocipède vélocipède nom m s 0.13 0.41 0.11 0.27 +vélocipèdes vélocipède nom m p 0.13 0.41 0.02 0.14 +vélocipédique vélocipédique adj s 0.00 0.20 0.00 0.14 +vélocipédiques vélocipédique adj f p 0.00 0.20 0.00 0.07 +vélocipédistes vélocipédiste nom p 0.00 0.07 0.00 0.07 +vélocité vélocité nom f s 0.25 1.08 0.25 1.08 +vélodrome vélodrome nom m s 0.00 0.88 0.00 0.68 +vélodromes vélodrome nom m p 0.00 0.88 0.00 0.20 +vélomoteur vélomoteur nom m s 0.23 1.49 0.23 1.22 +vélomoteurs vélomoteur nom m p 0.23 1.49 0.00 0.27 +vélos vélo nom m p 35.58 28.45 2.64 4.12 +vulpin vulpin nom m s 0.00 0.07 0.00 0.07 +vêlé vêler ver m s 0.02 0.54 0.01 0.07 par:pas; +vélum vélum nom m s 0.02 0.41 0.02 0.27 +vélums vélum nom m p 0.02 0.41 0.00 0.14 +vulvaire vulvaire nom f s 0.03 0.07 0.03 0.00 +vulvaires vulvaire nom f p 0.03 0.07 0.00 0.07 +vulve vulve nom f s 0.32 1.35 0.32 0.95 +vulves vulve nom f p 0.32 1.35 0.00 0.41 +vénal vénal adj m s 0.54 1.76 0.45 0.81 +vénale vénal adj f s 0.54 1.76 0.09 0.41 +vénales vénal adj f p 0.54 1.76 0.00 0.41 +vénalité vénalité nom f s 0.02 0.41 0.02 0.41 +vénaux vénal adj m p 0.54 1.76 0.00 0.14 +vénerie vénerie nom f s 0.00 0.61 0.00 0.61 +véniel véniel adj m s 0.32 0.81 0.30 0.20 +vénielle véniel adj f s 0.32 0.81 0.00 0.07 +vénielles véniel adj f p 0.32 0.81 0.00 0.14 +véniels véniel adj m p 0.32 0.81 0.01 0.41 +vénitien vénitien adj m s 0.95 6.96 0.86 2.43 +vénitienne vénitienne nom f s 0.14 0.54 0.14 0.34 +vénitiennes vénitien adj f p 0.95 6.96 0.03 1.28 +vénitiens vénitien nom m p 0.36 1.82 0.24 1.15 +vénère vénérer ver 5.86 4.66 1.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vénèrent vénérer ver 5.86 4.66 0.67 0.20 ind:pre:3p; +vénères vénérer ver 5.86 4.66 0.27 0.07 ind:pre:2s; +vénéneuse vénéneux adj f s 0.69 2.36 0.09 0.74 +vénéneuses vénéneux adj f p 0.69 2.36 0.06 0.41 +vénéneux vénéneux adj m 0.69 2.36 0.55 1.22 +vénérable vénérable adj s 2.56 6.35 2.20 4.80 +vénérables vénérable adj p 2.56 6.35 0.36 1.55 +vénérai vénérer ver 5.86 4.66 0.00 0.07 ind:pas:1s; +vénéraient vénérer ver 5.86 4.66 0.21 0.14 ind:imp:3p; +vénérais vénérer ver 5.86 4.66 0.19 0.27 ind:imp:1s;ind:imp:2s; +vénérait vénérer ver 5.86 4.66 0.47 1.35 ind:imp:3s; +vénérant vénérer ver 5.86 4.66 0.15 0.14 par:pre; +vénéras vénérer ver 5.86 4.66 0.01 0.00 ind:pas:2s; +vénération vénération nom f s 0.23 2.84 0.23 2.70 +vénérations vénération nom f p 0.23 2.84 0.00 0.14 +vénérer vénérer ver 5.86 4.66 0.94 0.88 inf; +vénérera vénérer ver 5.86 4.66 0.01 0.00 ind:fut:3s; +vénéreraient vénérer ver 5.86 4.66 0.00 0.07 cnd:pre:3p; +vénérerais vénérer ver 5.86 4.66 0.01 0.00 cnd:pre:1s; +vénérez vénérer ver 5.86 4.66 0.27 0.00 imp:pre:2p;ind:pre:2p; +vénérien vénérien adj m s 0.61 0.95 0.02 0.14 +vénérienne vénérien adj f s 0.61 0.95 0.28 0.20 +vénériennes vénérien adj f p 0.61 0.95 0.31 0.54 +vénériens vénérien adj m p 0.61 0.95 0.00 0.07 +vénérions vénérer ver 5.86 4.66 0.03 0.14 ind:imp:1p; +vénérons vénérer ver 5.86 4.66 0.32 0.00 ind:pre:1p; +vénéré vénéré adj m s 1.10 1.69 0.91 0.88 +vénérée vénéré adj f s 1.10 1.69 0.12 0.14 +vénérées vénérer ver f p 5.86 4.66 0.14 0.07 par:pas; +vénéréologie vénéréologie nom f s 0.01 0.00 0.01 0.00 +vénérés vénérer ver m p 5.86 4.66 0.06 0.20 par:pas; +vénus vénus nom f 0.56 0.41 0.56 0.41 +vénusien vénusien adj m s 0.11 0.20 0.01 0.14 +vénusienne vénusien adj f s 0.11 0.20 0.04 0.00 +vénusiens vénusien adj m p 0.11 0.20 0.06 0.07 +vénusté vénusté nom f s 0.00 0.34 0.00 0.34 +vénézuélien vénézuélien adj m s 0.48 0.27 0.07 0.20 +vénézuélienne vénézuélien adj f s 0.48 0.27 0.26 0.00 +vénézuéliens vénézuélien adj m p 0.48 0.27 0.16 0.07 +vêpre vêpres nom m s 0.64 2.43 0.00 0.07 +vêpres vêpres nom f p 0.64 2.43 0.64 2.36 +vérace vérace adj f s 0.00 0.14 0.00 0.07 +véraces vérace adj p 0.00 0.14 0.00 0.07 +véracité véracité nom f s 0.58 0.74 0.58 0.74 +véranda véranda nom f s 1.90 10.20 1.86 9.12 +vérandas véranda nom f p 1.90 10.20 0.03 1.08 +véreuse véreux adj f s 1.67 1.62 0.35 0.14 +véreuses véreux adj f p 1.67 1.62 0.10 0.27 +véreux véreux adj m 1.67 1.62 1.23 1.22 +véridique véridique adj s 0.82 2.23 0.66 1.69 +véridiquement véridiquement adv 0.01 0.14 0.01 0.14 +véridiques véridique adj p 0.82 2.23 0.16 0.54 +vérif vérif nom f s 0.10 0.27 0.10 0.27 +vérifia vérifier ver 110.87 40.27 0.04 2.91 ind:pas:3s; +vérifiable vérifiable adj s 0.21 0.20 0.18 0.14 +vérifiables vérifiable adj f p 0.21 0.20 0.03 0.07 +vérifiai vérifier ver 110.87 40.27 0.01 0.20 ind:pas:1s; +vérifiaient vérifier ver 110.87 40.27 0.05 0.27 ind:imp:3p; +vérifiais vérifier ver 110.87 40.27 1.33 0.68 ind:imp:1s;ind:imp:2s; +vérifiait vérifier ver 110.87 40.27 0.73 2.50 ind:imp:3s; +vérifiant vérifier ver 110.87 40.27 0.20 1.49 par:pre; +vérificateur vérificateur nom m s 0.42 0.07 0.33 0.00 +vérificateurs vérificateur nom m p 0.42 0.07 0.03 0.07 +vérification vérification nom f s 4.07 3.45 3.40 2.50 +vérifications vérification nom f p 4.07 3.45 0.68 0.95 +vérificatrice vérificateur nom f s 0.42 0.07 0.07 0.00 +vérifie vérifier ver 110.87 40.27 20.47 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +vérifient vérifier ver 110.87 40.27 1.27 0.27 ind:pre:3p; +vérifier vérifier ver 110.87 40.27 45.69 22.09 inf; +vérifiera vérifier ver 110.87 40.27 0.55 0.20 ind:fut:3s; +vérifierai vérifier ver 110.87 40.27 1.35 0.20 ind:fut:1s; +vérifierais vérifier ver 110.87 40.27 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +vérifierait vérifier ver 110.87 40.27 0.03 0.07 cnd:pre:3s; +vérifieras vérifier ver 110.87 40.27 0.17 0.07 ind:fut:2s; +vérifierons vérifier ver 110.87 40.27 0.32 0.07 ind:fut:1p; +vérifieront vérifier ver 110.87 40.27 0.22 0.00 ind:fut:3p; +vérifies vérifier ver 110.87 40.27 0.94 0.14 ind:pre:2s; +vérifieur vérifieur nom m s 0.02 0.00 0.02 0.00 +vérifiez vérifier ver 110.87 40.27 12.16 0.47 imp:pre:2p;ind:pre:2p; +vérifiions vérifier ver 110.87 40.27 0.00 0.07 ind:imp:1p; +vérifions vérifier ver 110.87 40.27 2.15 0.14 imp:pre:1p;ind:pre:1p; +vérifièrent vérifier ver 110.87 40.27 0.01 0.14 ind:pas:3p; +vérifié vérifier ver m s 110.87 40.27 21.64 4.19 par:pas; +vérifiée vérifier ver f s 110.87 40.27 0.50 0.14 par:pas; +vérifiées vérifier ver f p 110.87 40.27 0.37 0.00 par:pas; +vérifiés vérifier ver m p 110.87 40.27 0.57 0.00 par:pas; +vérin vérin nom m s 0.06 0.34 0.05 0.07 +vérins vérin nom m p 0.06 0.34 0.01 0.27 +vériste vériste adj m s 0.00 0.07 0.00 0.07 +véritable véritable adj s 29.36 56.08 26.78 48.51 +véritablement véritablement adv 2.03 5.88 2.03 5.88 +véritables véritable adj p 29.36 56.08 2.58 7.57 +vérité vérité nom f s 193.24 140.88 190.21 133.38 +vérités vérité nom f p 193.24 140.88 3.03 7.50 +vérole vérole nom f s 0.79 3.58 0.79 3.45 +véroles vérole nom f p 0.79 3.58 0.00 0.14 +vérolé vérolé adj m s 0.33 1.96 0.02 1.42 +vérolée vérolé adj f s 0.33 1.96 0.17 0.00 +vérolées vérolé adj f p 0.33 1.96 0.00 0.34 +vérolés vérolé adj m p 0.33 1.96 0.14 0.20 +véronaise véronais adj f s 0.00 0.07 0.00 0.07 +véronal véronal nom m s 0.04 0.00 0.04 0.00 +véronique véronique nom f s 0.10 0.74 0.10 0.54 +véroniques véronique nom f p 0.10 0.74 0.00 0.20 +vus voir ver m p 4119.49 2401.76 47.81 28.72 par:pas; +vésanie vésanie nom f s 0.00 0.27 0.00 0.20 +vésanies vésanie nom f p 0.00 0.27 0.00 0.07 +vésicale vésical adj f s 0.01 0.00 0.01 0.00 +vésicante vésicant adj f s 0.10 0.00 0.10 0.00 +vésicatoire vésicatoire adj s 0.10 0.07 0.10 0.00 +vésicatoires vésicatoire adj m p 0.10 0.07 0.00 0.07 +vésiculaire vésiculaire adj s 0.10 0.00 0.10 0.00 +vésicule vésicule nom f s 1.01 0.74 0.90 0.61 +vésicules vésicule nom f p 1.01 0.74 0.11 0.14 +vésuviennes vésuvien adj f p 0.00 0.07 0.00 0.07 +vêt vêtir ver 7.67 63.85 0.02 0.14 ind:pre:3s; +vêtaient vêtir ver 7.67 63.85 0.00 0.07 ind:imp:3p; +vêtait vêtir ver 7.67 63.85 0.14 0.41 ind:imp:3s; +vêtant vêtir ver 7.67 63.85 0.00 0.14 par:pre; +vête vêtir ver 7.67 63.85 0.00 0.07 sub:pre:3s; +vêtement vêtement nom m s 61.48 90.14 3.84 15.34 +vêtements vêtement nom m p 61.48 90.14 57.65 74.80 +vêtent vêtir ver 7.67 63.85 0.11 0.34 ind:pre:3p; +vêtez vêtir ver 7.67 63.85 0.01 0.34 imp:pre:2p;ind:pre:2p; +vétille vétille nom f s 0.39 1.22 0.22 0.20 +vétilles vétille nom f p 0.39 1.22 0.16 1.01 +vétilleuse vétilleux adj f s 0.00 0.68 0.00 0.27 +vétilleuses vétilleux adj f p 0.00 0.68 0.00 0.07 +vétilleux vétilleux adj m 0.00 0.68 0.00 0.34 +vêtir vêtir ver 7.67 63.85 1.55 3.18 inf; +vêtira vêtir ver 7.67 63.85 0.02 0.07 ind:fut:3s; +vêtirais vêtir ver 7.67 63.85 0.00 0.07 cnd:pre:1s; +vêtirait vêtir ver 7.67 63.85 0.00 0.07 cnd:pre:3s; +vêtirons vêtir ver 7.67 63.85 0.00 0.07 ind:fut:1p; +vêtis vêtir ver 7.67 63.85 0.00 0.07 ind:pas:1s; +vêtit vêtir ver 7.67 63.85 0.00 0.20 ind:pas:3s; +vétiver vétiver nom m s 0.00 0.27 0.00 0.27 +vêtons vêtir ver 7.67 63.85 0.00 0.07 ind:pre:1p; +vêts vêtir ver 7.67 63.85 0.00 0.54 ind:pre:1s;ind:pre:2s; +vêtu vêtir ver m s 7.67 63.85 3.47 26.96 par:pas; +vêtue vêtir ver f s 7.67 63.85 1.23 15.27 par:pas; +vêtues vêtir ver f p 7.67 63.85 0.28 4.73 par:pas; +vétéran vétéran nom m s 3.84 2.43 1.86 1.28 +vétérans vétéran nom m p 3.84 2.43 1.98 1.15 +vêture vêture nom f s 0.00 0.61 0.00 0.54 +vêtures vêture nom f p 0.00 0.61 0.00 0.07 +vétérinaire vétérinaire nom s 3.93 3.85 3.74 3.72 +vétérinaires vétérinaire nom p 3.93 3.85 0.19 0.14 +vêtus vêtir ver m p 7.67 63.85 0.83 11.08 par:pas; +vétuste vétuste adj s 0.25 3.18 0.05 2.03 +vétustes vétuste adj p 0.25 3.18 0.20 1.15 +vétusté vétusté nom f s 0.02 0.68 0.02 0.68 +vétyver vétyver nom m s 0.00 0.07 0.00 0.07 +w w nom m 3.54 2.70 3.54 2.70 +wagnérien wagnérien adj m s 0.04 0.47 0.01 0.34 +wagnérienne wagnérien adj f s 0.04 0.47 0.03 0.07 +wagnériennes wagnérien adj f p 0.04 0.47 0.00 0.07 +wagon_bar wagon_bar nom m s 0.03 0.00 0.03 0.00 +wagon_lit wagon_lit nom m s 1.79 1.89 0.70 0.81 +wagon_lits wagon_lits nom m 0.00 0.07 0.00 0.07 +wagon_restaurant wagon_restaurant nom m s 0.35 1.01 0.35 0.81 +wagon_salon wagon_salon nom m s 0.01 0.54 0.01 0.54 +wagon wagon nom m s 10.24 32.77 6.53 18.11 +wagonnet wagonnet nom m s 0.26 1.28 0.12 0.20 +wagonnets wagonnet nom m p 0.26 1.28 0.14 1.08 +wagon_citerne wagon_citerne nom m p 0.00 0.07 0.00 0.07 +wagon_lit wagon_lit nom m p 1.79 1.89 1.09 1.08 +wagon_restaurant wagon_restaurant nom m p 0.35 1.01 0.00 0.20 +wagons wagon nom m p 10.24 32.77 3.71 14.66 +wait_and_see wait_and_see nom m s 0.16 0.00 0.16 0.00 +wali wali nom m s 0.02 0.00 0.02 0.00 +walkie_talkie walkie_talkie nom m s 0.08 0.14 0.05 0.14 +walkie_talkie walkie_talkie nom m p 0.08 0.14 0.03 0.00 +walkman walkman nom m s 1.18 1.28 1.13 1.22 +walkmans walkman nom m p 1.18 1.28 0.05 0.07 +walkyrie walkyrie nom f s 0.00 0.27 0.00 0.27 +wall_street wall_street nom s 0.03 0.07 0.03 0.07 +wallaby wallaby nom m s 0.13 0.00 0.13 0.00 +wallace wallace nom f s 0.91 0.00 0.91 0.00 +wallon wallon adj m s 0.28 0.07 0.01 0.07 +wallonne wallon adj f s 0.28 0.07 0.27 0.00 +walter walter nom m s 0.27 0.00 0.27 0.00 +wapiti wapiti nom m s 0.03 0.20 0.02 0.07 +wapitis wapiti nom m p 0.03 0.20 0.01 0.14 +warning warning nom m s 0.34 0.07 0.07 0.00 +warnings warning nom m p 0.34 0.07 0.28 0.07 +warrants warrant nom m p 0.00 0.07 0.00 0.07 +wassingue wassingue nom f s 0.00 0.14 0.00 0.07 +wassingues wassingue nom f p 0.00 0.14 0.00 0.07 +water_closet water_closet nom m s 0.00 0.14 0.00 0.14 +water_polo water_polo nom m s 0.23 0.00 0.23 0.00 +water water nom m s 2.49 1.55 1.03 0.20 +waterman waterman nom m s 0.12 0.34 0.12 0.34 +waterproof waterproof adj m s 0.07 0.07 0.07 0.07 +waters water nom m p 2.49 1.55 1.46 1.35 +watt watt nom m s 1.78 0.81 0.03 0.00 +wattman wattman nom m s 0.00 0.20 0.00 0.20 +watts watt nom m p 1.78 0.81 1.75 0.81 +wax wax nom m 0.74 0.07 0.74 0.07 +way_of_life way_of_life nom m s 0.02 0.14 0.02 0.14 +web web nom m s 2.34 0.00 2.34 0.00 +webcam webcam nom f s 0.31 0.00 0.31 0.00 +week_end week_end nom m s 44.51 14.32 39.41 12.16 +week_end week_end nom m p 44.51 14.32 3.13 2.16 +week_end week_end nom m s 44.51 14.32 1.96 0.00 +weimarienne weimarien adj f s 0.00 0.07 0.00 0.07 +weltanschauung weltanschauung nom f s 0.02 0.07 0.02 0.07 +welter welter nom m s 0.14 0.00 0.10 0.00 +welters welter nom m p 0.14 0.00 0.04 0.00 +western_spaghetti western_spaghetti nom m 0.00 0.07 0.00 0.07 +western western nom m s 6.35 3.78 5.19 1.96 +westerns western nom m p 6.35 3.78 1.16 1.82 +westphalien westphalien adj m s 0.00 0.14 0.00 0.07 +westphaliennes westphalien adj f p 0.00 0.14 0.00 0.07 +wharf wharf nom m s 0.03 1.22 0.03 1.22 +whig whig nom m s 0.21 0.07 0.03 0.07 +whigs whig nom m p 0.21 0.07 0.18 0.00 +whipcord whipcord nom m s 0.00 0.07 0.00 0.07 +whiskey whiskey nom m s 1.20 0.27 1.20 0.27 +whiskies whiskies nom m p 0.53 1.89 0.53 1.89 +whisky_soda whisky_soda nom m s 0.13 0.07 0.13 0.07 +whisky whisky nom m s 30.20 25.47 29.89 25.14 +whiskys whisky nom m p 30.20 25.47 0.32 0.34 +whist whist nom m s 0.19 0.27 0.19 0.27 +white_spirit white_spirit nom m s 0.01 0.00 0.01 0.00 +wicket wicket nom m s 0.16 0.00 0.16 0.00 +wigwam wigwam nom m s 0.00 0.27 0.00 0.14 +wigwams wigwam nom m p 0.00 0.27 0.00 0.14 +wildcat wildcat nom m s 0.02 0.00 0.02 0.00 +wilhelmien wilhelmien adj m s 0.00 0.14 0.00 0.14 +willaya willaya nom f s 0.00 0.68 0.00 0.61 +willayas willaya nom f p 0.00 0.68 0.00 0.07 +william william nom m s 0.09 0.27 0.09 0.27 +williams williams nom f s 0.46 0.00 0.46 0.00 +winchester winchester nom m s 0.05 0.27 0.01 0.27 +winchesters winchester nom m p 0.05 0.27 0.04 0.00 +windsurf windsurf nom m s 0.05 0.00 0.05 0.00 +wintergreen wintergreen nom m s 0.01 0.00 0.01 0.00 +wishbone wishbone nom m s 0.01 0.00 0.01 0.00 +wisigothe wisigoth nom f s 0.00 0.14 0.00 0.07 +wisigothique wisigothique adj f s 0.00 0.14 0.00 0.07 +wisigothiques wisigothique adj f p 0.00 0.14 0.00 0.07 +wisigoths wisigoth nom m p 0.00 0.14 0.00 0.07 +witz witz nom m 0.01 0.00 0.01 0.00 +wombat wombat nom m s 0.04 0.00 0.04 0.00 +woofer woofer nom m s 0.04 0.00 0.01 0.00 +woofers woofer nom m p 0.04 0.00 0.03 0.00 +world_music world_music nom f 0.02 0.00 0.02 0.00 +wouah wouah ono 1.29 0.07 1.29 0.07 +wurtembergeois wurtembergeois adj m 0.00 0.14 0.00 0.07 +wurtembergeoise wurtembergeois adj f s 0.00 0.14 0.00 0.07 +x x adj_num 7.48 4.46 7.48 4.46 +xavier xavier nom m s 0.67 0.07 0.67 0.07 +xiang xiang nom m s 0.01 0.00 0.01 0.00 +xiphidion xiphidion nom m s 0.00 0.07 0.00 0.07 +xiphoïde xiphoïde adj m s 0.14 0.00 0.14 0.00 +xième xième adj m s 0.28 0.00 0.28 0.00 +xénogenèse xénogenèse nom f s 0.01 0.00 0.01 0.00 +xénogreffe xénogreffe nom f s 0.01 0.00 0.01 0.00 +xénon xénon nom m s 0.34 0.00 0.34 0.00 +xénophilie xénophilie nom f s 0.00 0.14 0.00 0.14 +xénophobe xénophobe adj s 0.07 0.14 0.04 0.00 +xénophobes xénophobe adj p 0.07 0.14 0.04 0.14 +xénophobie xénophobie nom f s 0.25 0.88 0.25 0.88 +xérographie xérographie nom f s 0.01 0.00 0.01 0.00 +xérographique xérographique adj m s 0.01 0.00 0.01 0.00 +xérès xérès nom m 0.41 0.54 0.41 0.54 +xylographie xylographie nom f s 0.20 0.00 0.20 0.00 +xylophone xylophone nom m s 0.28 0.34 0.28 0.27 +xylophones xylophone nom m p 0.28 0.34 0.00 0.07 +xylophoniste xylophoniste nom s 0.04 0.00 0.04 0.00 +xylène xylène nom m s 0.03 0.00 0.03 0.00 +y y pro_per 4346.55 3086.76 4346.55 3086.76 +ya ya nom m s 11.45 3.31 11.45 3.31 +yacht_club yacht_club nom m s 0.04 0.07 0.04 0.07 +yacht yacht nom m s 6.95 4.80 6.51 3.78 +yachting yachting nom m s 0.04 0.14 0.04 0.14 +yachtman yachtman nom m s 0.02 0.14 0.02 0.07 +yachtmen yachtman nom m p 0.02 0.14 0.00 0.07 +yachts yacht nom m p 6.95 4.80 0.44 1.01 +yachtwoman yachtwoman nom f s 0.00 0.07 0.00 0.07 +yack yack nom m s 3.15 1.76 0.46 1.42 +yacks yack nom m p 3.15 1.76 2.69 0.34 +yak yak nom m s 0.38 0.41 0.28 0.41 +yakitori yakitori nom m s 0.01 0.00 0.01 0.00 +yaks yak nom m p 0.38 0.41 0.10 0.00 +yakusa yakusa nom m s 0.15 0.00 0.15 0.00 +yakuza yakuza nom m s 0.86 0.00 0.79 0.00 +yakuzas yakuza nom m p 0.86 0.00 0.07 0.00 +yali yali nom m s 0.00 1.01 0.00 0.88 +yalis yali nom m p 0.00 1.01 0.00 0.14 +yama yama nom m s 0.24 0.07 0.24 0.07 +yang yang nom m s 3.25 0.81 3.25 0.81 +yankee yankee nom s 8.71 1.08 3.71 0.68 +yankees yankee nom p 8.71 1.08 5.00 0.41 +yanquis yanqui adj p 0.01 0.00 0.01 0.00 +yaourt yaourt nom m s 3.58 4.73 2.87 3.18 +yaourtières yaourtière nom f p 0.00 0.07 0.00 0.07 +yaourts yaourt nom m p 3.58 4.73 0.71 1.55 +yard yard nom m s 2.10 0.34 0.46 0.27 +yards yard nom m p 2.10 0.34 1.64 0.07 +yatagan yatagan nom m s 0.01 0.88 0.01 0.54 +yatagans yatagan nom m p 0.01 0.88 0.00 0.34 +yeah yeah ono 14.01 0.27 14.01 0.27 +yearling yearling nom m s 0.01 0.14 0.01 0.14 +yen yen nom m s 3.27 0.61 1.87 0.47 +yens yen nom m p 3.27 0.61 1.40 0.14 +yeshiva yeshiva nom f s 1.13 0.20 1.13 0.20 +yeti yeti nom m s 0.29 0.14 0.29 0.14 +yeuse yeuse nom f s 0.12 0.81 0.02 0.14 +yeuses yeuse nom f p 0.12 0.81 0.10 0.68 +oeil_radars oeil_radars nom m p 0.00 0.07 0.00 0.07 +yeux oeil nom m p 413.04 1234.59 315.89 955.68 +yiddish yiddish adj m s 0.70 0.74 0.70 0.74 +yin yin nom m s 2.17 0.81 2.17 0.81 +ylang_ylang ylang_ylang nom m s 0.01 0.00 0.01 0.00 +yo_yo yo_yo nom m 1.03 0.47 1.03 0.47 +yodlait yodler ver 0.03 0.07 0.00 0.07 ind:imp:3s; +yodler yodler ver 0.03 0.07 0.03 0.00 inf; +yoga yoga nom m s 3.17 1.08 3.17 1.08 +yoghourt yoghourt nom m s 0.00 0.34 0.00 0.34 +yogi yogi nom m s 0.57 0.47 0.52 0.41 +yogis yogi nom m p 0.57 0.47 0.05 0.07 +yogourt yogourt nom m s 0.31 0.07 0.31 0.07 +yole yole nom f s 0.04 0.47 0.04 0.47 +yom_kippour yom_kippour nom m 0.45 0.34 0.45 0.34 +yom_kippur yom_kippur nom m s 0.04 0.00 0.04 0.00 +york york nom m s 0.48 0.61 0.48 0.61 +yorkshire yorkshire nom m s 0.01 0.00 0.01 0.00 +you_you you_you nom m s 0.00 0.07 0.00 0.07 +yougoslave yougoslave adj s 0.69 1.42 0.55 0.81 +yougoslaves yougoslave adj p 0.69 1.42 0.14 0.61 +youp youp ono 0.17 0.68 0.17 0.68 +youpi youpi ono 1.12 0.54 1.12 0.54 +youpin youpin nom m s 1.08 1.62 1.05 1.42 +youpine youpin nom f s 1.08 1.62 0.03 0.20 +yourte yourte nom f s 0.56 2.91 0.56 1.28 +yourtes yourte nom f p 0.56 2.91 0.00 1.62 +youtre youtre nom s 0.01 0.00 0.01 0.00 +youyou youyou nom m s 0.00 1.62 0.00 1.42 +youyous youyou nom m p 0.00 1.62 0.00 0.20 +yoyo yoyo nom m s 0.64 0.54 0.59 0.34 +yoyos yoyo nom m p 0.64 0.54 0.05 0.20 +ypérite ypérite nom f s 0.00 0.14 0.00 0.14 +yèbles yèble nom f p 0.00 0.14 0.00 0.14 +yé_yé yé_yé nom m 0.00 0.14 0.00 0.14 +yu y nom_sup m s 33.20 26.62 2.94 0.00 +yuan yuan nom m s 4.69 0.00 0.50 0.00 +yuans yuan nom m p 4.69 0.00 4.19 0.00 +yucca yucca nom m s 0.31 0.07 0.24 0.00 +yuccas yucca nom m p 0.31 0.07 0.07 0.07 +yue yue nom m 0.43 0.00 0.43 0.00 +yéménites yéménite nom p 0.01 0.07 0.01 0.07 +yuppie yuppie nom s 1.04 0.07 0.45 0.00 +yuppies yuppie nom p 1.04 0.07 0.60 0.07 +yéti yéti nom m s 0.65 0.14 0.65 0.14 +yéyé yéyé nom s 0.41 0.34 0.41 0.20 +yéyés yéyé nom p 0.41 0.34 0.00 0.14 +z z nom m 5.39 5.07 5.39 5.07 +zaïrois zaïrois nom m 0.01 0.00 0.01 0.00 +zaïroise zaïrois adj f s 0.01 0.14 0.00 0.07 +zaïroises zaïrois adj f p 0.01 0.14 0.01 0.07 +zadé zader ver m s 0.00 0.47 0.00 0.47 par:pas; +zaibatsu zaibatsu nom m 0.01 0.00 0.01 0.00 +zain zain adj m s 0.00 0.07 0.00 0.07 +zakouski zakouski nom m 0.62 0.34 0.62 0.07 +zakouskis zakouski nom m p 0.62 0.34 0.00 0.27 +zani zani nom m s 0.04 0.00 0.04 0.00 +zanimaux zanimaux nom m p 0.00 0.07 0.00 0.07 +zanzi zanzi nom m s 0.02 8.04 0.02 8.04 +zanzibar zanzibar nom m s 0.01 0.00 0.01 0.00 +zappant zapper ver 2.73 0.14 0.01 0.00 par:pre; +zappe zapper ver 2.73 0.14 1.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zapper zapper ver 2.73 0.14 0.75 0.07 inf; +zapperai zapper ver 2.73 0.14 0.02 0.00 ind:fut:1s; +zapperait zapper ver 2.73 0.14 0.01 0.00 cnd:pre:3s; +zappes zapper ver 2.73 0.14 0.17 0.00 ind:pre:2s; +zappeur zappeur nom m s 0.14 0.00 0.14 0.00 +zappez zapper ver 2.73 0.14 0.09 0.00 imp:pre:2p;ind:pre:2p; +zapping zapping nom m s 0.02 0.00 0.02 0.00 +zappé zapper ver m s 2.73 0.14 0.64 0.07 par:pas; +zarabe zarabe nom s 0.10 0.00 0.10 0.00 +zarbi zarbi adj s 0.70 0.14 0.63 0.14 +zarbis zarbi adj m p 0.70 0.14 0.07 0.00 +zazou zazou adj m s 0.06 1.01 0.04 1.01 +zazous zazou nom m p 0.11 0.88 0.07 0.20 +zeb zeb nom m s 0.50 0.07 0.50 0.07 +zef zef nom m s 0.01 4.53 0.01 4.53 +zelle zelle nom m s 0.71 0.74 0.71 0.74 +zemstvo zemstvo nom m s 0.00 0.07 0.00 0.07 +zen zen adj m s 2.55 1.76 2.55 1.76 +zens zen nom m p 0.93 0.81 0.01 0.20 +zeppelin zeppelin nom m s 0.07 0.41 0.04 0.14 +zeppelins zeppelin nom m p 0.07 0.41 0.03 0.27 +zest zest nom m s 0.05 0.07 0.05 0.07 +zeste zeste nom m s 0.70 0.88 0.69 0.74 +zester zester ver 0.01 0.00 0.01 0.00 inf; +zestes zeste nom m p 0.70 0.88 0.01 0.14 +zibeline zibeline nom f s 1.48 1.08 0.86 0.81 +zibelines zibeline nom f p 1.48 1.08 0.61 0.27 +zicmu zicmu nom f s 0.14 0.00 0.14 0.00 +zieute zieuter ver 0.16 0.88 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zieutent zieuter ver 0.16 0.88 0.00 0.14 ind:pre:3p; +zieuter zieuter ver 0.16 0.88 0.06 0.34 inf; +zieutes zieuter ver 0.16 0.88 0.01 0.07 ind:pre:2s; +zieutez zieuter ver 0.16 0.88 0.02 0.00 imp:pre:2p; +zig_zig zig_zig adv 0.03 0.00 0.03 0.00 +zig zig nom m s 1.16 0.68 1.16 0.68 +ziggourat ziggourat nom f s 0.05 0.07 0.05 0.00 +ziggourats ziggourat nom f p 0.05 0.07 0.00 0.07 +zigomar zigomar nom m s 0.02 0.27 0.01 0.20 +zigomars zigomar nom m p 0.02 0.27 0.01 0.07 +zigoto zigoto nom m s 0.30 1.42 0.25 0.68 +zigotos zigoto nom m p 0.30 1.42 0.05 0.74 +zigouillais zigouiller ver 1.59 1.22 0.00 0.07 ind:imp:1s; +zigouillait zigouiller ver 1.59 1.22 0.00 0.07 ind:imp:3s; +zigouille zigouiller ver 1.59 1.22 0.45 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zigouillent zigouiller ver 1.59 1.22 0.01 0.00 ind:pre:3p; +zigouiller zigouiller ver 1.59 1.22 0.54 0.47 inf; +zigouillez zigouiller ver 1.59 1.22 0.03 0.07 imp:pre:2p;ind:pre:2p; +zigouillé zigouiller ver m s 1.59 1.22 0.46 0.27 par:pas; +zigouillées zigouiller ver f p 1.59 1.22 0.01 0.00 par:pas; +zigouillés zigouiller ver m p 1.59 1.22 0.10 0.07 par:pas; +zigounette zigounette nom f s 0.14 0.07 0.14 0.07 +zigue zigue nom m s 0.34 0.74 0.30 0.54 +zigues zigue nom m p 0.34 0.74 0.03 0.20 +zigzag zigzag nom m s 0.42 2.64 0.36 1.49 +zigzagant zigzagant adj m s 0.00 0.61 0.00 0.20 +zigzagante zigzagant adj f s 0.00 0.61 0.00 0.34 +zigzagantes zigzagant adj f p 0.00 0.61 0.00 0.07 +zigzags zigzag nom m p 0.42 2.64 0.05 1.15 +zigzagua zigzaguer ver 0.82 4.66 0.00 0.20 ind:pas:3s; +zigzaguai zigzaguer ver 0.82 4.66 0.00 0.07 ind:pas:1s; +zigzaguaient zigzaguer ver 0.82 4.66 0.00 0.41 ind:imp:3p; +zigzaguait zigzaguer ver 0.82 4.66 0.04 0.81 ind:imp:3s; +zigzaguant zigzaguer ver 0.82 4.66 0.14 1.42 par:pre; +zigzague zigzaguer ver 0.82 4.66 0.17 0.54 ind:pre:1s;ind:pre:3s; +zigzaguent zigzaguer ver 0.82 4.66 0.01 0.20 ind:pre:3p; +zigzaguer zigzaguer ver 0.82 4.66 0.41 0.68 inf; +zigzaguèrent zigzaguer ver 0.82 4.66 0.00 0.07 ind:pas:3p; +zigzagué zigzaguer ver m s 0.82 4.66 0.04 0.20 par:pas; +zigzaguée zigzaguer ver f s 0.82 4.66 0.00 0.07 par:pas; +zinc zinc nom m s 2.12 17.30 1.96 16.49 +zincs zinc nom m p 2.12 17.30 0.16 0.81 +zingage zingage nom m s 0.00 0.07 0.00 0.07 +zingaro zingaro nom m s 0.10 17.97 0.10 17.97 +zingué zinguer ver m s 0.00 0.14 0.00 0.07 par:pas; +zingués zinguer ver m p 0.00 0.14 0.00 0.07 par:pas; +zinnia zinnia nom m s 0.11 0.34 0.01 0.07 +zinnias zinnia nom m p 0.11 0.34 0.10 0.27 +zinzin zinzin adj m s 0.64 0.41 0.64 0.41 +zinzins zinzin nom m p 0.27 0.74 0.08 0.20 +zinzolin zinzolin adj m p 0.00 0.07 0.00 0.07 +zip zip nom m s 0.78 0.41 0.78 0.41 +zippa zipper ver 0.25 0.20 0.00 0.07 ind:pas:3s; +zippait zipper ver 0.25 0.20 0.00 0.07 ind:imp:3s; +zipper zipper ver 0.25 0.20 0.21 0.07 inf; +zippé zipper ver m s 0.25 0.20 0.04 0.00 par:pas; +zircon zircon nom m s 0.20 0.00 0.18 0.00 +zirconium zirconium nom m s 0.05 0.00 0.05 0.00 +zircons zircon nom m p 0.20 0.00 0.02 0.00 +zizanie zizanie nom f s 0.56 0.41 0.56 0.34 +zizanies zizanie nom f p 0.56 0.41 0.00 0.07 +zizi zizi nom m s 2.89 2.84 2.69 2.30 +zizique zizique nom f s 0.17 0.34 0.17 0.34 +zizis zizi nom m p 2.89 2.84 0.20 0.54 +zloty zloty nom m s 1.29 0.07 0.01 0.00 +zlotys zloty nom m p 1.29 0.07 1.28 0.07 +zob zob nom m s 1.57 1.35 1.54 1.35 +zobs zob nom m p 1.57 1.35 0.03 0.00 +zodiac zodiac nom m s 0.01 0.00 0.01 0.00 +zodiacal zodiacal adj m s 0.14 0.07 0.14 0.07 +zodiacale zodiacal adj f s 0.14 0.07 0.01 0.00 +zodiaque zodiaque nom m s 0.53 0.68 0.53 0.68 +zombi zombi nom m s 0.65 3.58 0.28 2.97 +zombie zombie nom m s 5.04 1.01 2.33 0.54 +zombies zombie nom m p 5.04 1.01 2.71 0.47 +zombification zombification nom f s 0.02 0.00 0.02 0.00 +zombis zombi nom m p 0.65 3.58 0.37 0.61 +zona zona nom m s 0.37 0.61 0.36 0.61 +zonage zonage nom m s 0.10 0.00 0.10 0.00 +zonait zoner ver 0.23 0.81 0.04 0.07 ind:imp:3s; +zonal zonal adj m s 0.00 0.07 0.00 0.07 +zonant zoner ver 0.23 0.81 0.01 0.07 par:pre; +zonard zonard nom m s 0.18 4.26 0.08 1.76 +zonarde zonard nom f s 0.18 4.26 0.00 0.27 +zonardes zonard nom f p 0.18 4.26 0.00 0.14 +zonards zonard nom m p 0.18 4.26 0.10 2.09 +zonas zona nom m p 0.37 0.61 0.01 0.00 +zone zone nom f s 53.94 42.50 46.97 34.39 +zoner zoner ver 0.23 0.81 0.03 0.54 inf; +zonera zoner ver 0.23 0.81 0.01 0.00 ind:fut:3s; +zones_clé zones_clé nom f p 0.00 0.07 0.00 0.07 +zones zone nom f p 53.94 42.50 6.98 8.11 +zoning zoning nom m s 0.01 0.00 0.01 0.00 +zoné zoner ver m s 0.23 0.81 0.13 0.14 par:pas; +zonzon zonzon nom m s 0.33 0.54 0.33 0.54 +zoo zoo nom m s 12.17 6.49 11.45 6.08 +zoologie zoologie nom f s 0.40 0.34 0.40 0.34 +zoologique zoologique adj s 0.36 1.22 0.35 1.01 +zoologiques zoologique adj m p 0.36 1.22 0.01 0.20 +zoologiste zoologiste nom s 0.25 0.00 0.25 0.00 +zoologue zoologue nom m s 0.02 0.00 0.02 0.00 +zoom zoom nom m s 2.40 0.41 2.27 0.34 +zoome zoomer ver 1.49 0.00 0.58 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zoomer zoomer ver 1.49 0.00 0.37 0.00 inf; +zoomes zoomer ver 1.49 0.00 0.28 0.00 ind:pre:2s; +zoomez zoomer ver 1.49 0.00 0.26 0.00 imp:pre:2p; +zooms zoom nom m p 2.40 0.41 0.12 0.07 +zoophile zoophile adj f s 0.03 0.14 0.01 0.14 +zoophiles zoophile adj f p 0.03 0.14 0.02 0.00 +zoophilie zoophilie nom f s 0.08 0.00 0.08 0.00 +zoos zoo nom m p 12.17 6.49 0.72 0.41 +zoreille zoreille nom m s 0.02 0.07 0.02 0.00 +zoreilles zoreille nom m p 0.02 0.07 0.00 0.07 +zorille zorille nom f s 0.00 0.07 0.00 0.07 +zoroastrien zoroastrien nom m s 0.02 0.00 0.01 0.00 +zoroastriens zoroastrien nom m p 0.02 0.00 0.01 0.00 +zoroastrisme zoroastrisme nom m s 0.01 0.00 0.01 0.00 +zou zou ono 1.86 0.54 1.86 0.54 +zouave zouave nom m s 0.46 2.70 0.46 1.76 +zouaves zouave nom m p 0.46 2.70 0.00 0.95 +zouk zouk nom m s 0.01 0.00 0.01 0.00 +zoulou zoulou adj m s 0.16 0.07 0.15 0.00 +zouloue zoulou adj f s 0.16 0.07 0.01 0.00 +zoulous zoulou nom m p 0.11 0.07 0.05 0.07 +zoziaux zoziaux nom m p 0.01 0.07 0.01 0.07 +zozo zozo nom m s 0.88 0.81 0.70 0.41 +zozos zozo nom m p 0.88 0.81 0.18 0.41 +zozotait zozoter ver 0.06 0.61 0.00 0.14 ind:imp:3s; +zozotant zozoter ver 0.06 0.61 0.00 0.34 par:pre; +zozote zozoter ver 0.06 0.61 0.05 0.07 ind:pre:3s; +zozotement zozotement nom m s 0.01 0.14 0.01 0.07 +zozotements zozotement nom m p 0.01 0.14 0.00 0.07 +zozotes zozoter ver 0.06 0.61 0.00 0.07 ind:pre:2s; +zozoteuse zozoteur nom f s 0.00 0.07 0.00 0.07 +zozotez zozoter ver 0.06 0.61 0.01 0.00 ind:pre:2p; +zèbre zèbre nom m s 3.80 5.14 2.65 3.04 +zèbrent zébrer ver 0.20 2.84 0.00 0.07 ind:pre:3p; +zèbres zèbre nom m p 3.80 5.14 1.15 2.09 +zèle zèle nom m s 4.92 10.68 4.92 10.61 +zèles zèle nom m p 4.92 10.68 0.00 0.07 +zébra zébrer ver 0.20 2.84 0.16 0.14 ind:pas:3s; +zébraient zébrer ver 0.20 2.84 0.00 0.54 ind:imp:3p; +zébrait zébrer ver 0.20 2.84 0.00 0.14 ind:imp:3s; +zébrant zébrer ver 0.20 2.84 0.00 0.41 par:pre; +zébrer zébrer ver 0.20 2.84 0.00 0.27 inf; +zébré zébré adj m s 0.04 0.68 0.03 0.14 +zébrée zébré adj f s 0.04 0.68 0.02 0.27 +zébrées zébrer ver f p 0.20 2.84 0.00 0.14 par:pas; +zébrure zébrure nom f s 0.03 1.49 0.00 0.47 +zébrures zébrure nom f p 0.03 1.49 0.03 1.01 +zébrés zébrer ver m p 0.20 2.84 0.01 0.14 par:pas; +zébu zébu nom m s 0.06 0.41 0.06 0.20 +zébus zébu nom m p 0.06 0.41 0.00 0.20 +zélateur zélateur nom m s 0.02 0.41 0.00 0.07 +zélateurs zélateur nom m p 0.02 0.41 0.00 0.34 +zélatrice zélateur nom f s 0.02 0.41 0.02 0.00 +zélote zélote nom m s 0.08 0.81 0.02 0.34 +zélotes zélote nom m p 0.08 0.81 0.06 0.47 +zélé zélé adj m s 1.19 2.97 0.69 1.42 +zélée zélé adj f s 1.19 2.97 0.11 0.47 +zélées zélé adj f p 1.19 2.97 0.00 0.20 +zélés zélé adj m p 1.19 2.97 0.39 0.88 +zénana zénana nom f s 0.00 0.07 0.00 0.07 +zénith zénith nom m s 0.63 3.38 0.63 3.38 +zénithale zénithal adj f s 0.00 0.14 0.00 0.07 +zénithales zénithal adj f p 0.00 0.14 0.00 0.07 +zéphire zéphire adj s 0.10 0.00 0.10 0.00 +zéphyr zéphyr nom m s 0.09 0.61 0.04 0.47 +zéphyrs zéphyr nom m p 0.09 0.61 0.05 0.14 +zurichois zurichois nom m 0.00 0.14 0.00 0.14 +zurichoise zurichois adj f s 0.00 0.14 0.00 0.07 +zéro zéro nom m s 32.85 18.24 30.44 16.49 +zéros zéro nom m p 32.85 18.24 2.41 1.76 +zut zut ono 13.69 7.16 13.69 7.16 +zézaie zézayer ver 0.02 0.74 0.01 0.27 ind:pre:3s; +zézaiement zézaiement nom m s 0.03 0.20 0.03 0.20 +zézaient zézayer ver 0.02 0.74 0.00 0.07 ind:pre:3p; +zézayaient zézayer ver 0.02 0.74 0.00 0.07 ind:imp:3p; +zézayant zézayer ver 0.02 0.74 0.01 0.20 par:pre; +zézaye zézayer ver 0.02 0.74 0.00 0.07 ind:pre:3s; +zézayer zézayer ver 0.02 0.74 0.00 0.07 inf; +zézette zézette nom f s 0.24 9.32 0.24 9.05 +zézettes zézette nom f p 0.24 9.32 0.00 0.27 +zydeco zydeco nom f s 0.01 0.00 0.01 0.00 +zyeuta zyeuter ver 0.16 2.77 0.00 0.07 ind:pas:3s; +zyeutais zyeuter ver 0.16 2.77 0.00 0.07 ind:imp:1s; +zyeutait zyeuter ver 0.16 2.77 0.00 0.14 ind:imp:3s; +zyeutant zyeuter ver 0.16 2.77 0.00 0.20 par:pre; +zyeute zyeuter ver 0.16 2.77 0.12 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zyeuter zyeuter ver 0.16 2.77 0.02 0.95 inf; +zyeutes zyeuter ver 0.16 2.77 0.01 0.00 ind:pre:2s; +zyeuté zyeuter ver m s 0.16 2.77 0.01 0.14 par:pas; +zygoma zygoma nom m s 0.00 0.07 0.00 0.07 +zygomatique zygomatique adj f s 0.16 0.34 0.11 0.14 +zygomatiques zygomatique adj f p 0.16 0.34 0.05 0.20 +zygote zygote nom m s 0.06 0.00 0.06 0.00 +zyklon zyklon nom m s 0.82 0.00 0.82 0.00 +zzz zzz ono 0.04 0.00 0.04 0.00 +zzzz zzzz ono 0.00 0.07 0.00 0.07 diff --git a/dictionnaires/lexique_de.txt b/dictionnaires/lexique_de.txt new file mode 100644 index 0000000..ae42797 --- /dev/null +++ b/dictionnaires/lexique_de.txt @@ -0,0 +1,737 @@ +"a.a." "a.a." "sw" +"a.a.o." "a.a.o." "sw" +"ab" "ab" "sw" +"abb." "abb." "sw" +"aber" "aber" "sw" +"abg." "abg." "sw" +"acht" "acht" "sw" +"allerdings" "allerdings" "sw" +"allerlei" "allerlei" "sw" +"allg." "allg." "sw" +"allmählich" "allmählich" "sw" +"allzu" "allzu" "sw" +"als" "als" "sw" +"alsbald" "alsbald" "sw" +"also" "also" "sw" +"am" "am" "sw" +"amtsbl." "amtsbl." "sw" +"an" "an" "sw" +"anderenfalls" "anderenfalls" "sw" +"andererseits" "andererseits" "sw" +"anderm" "anderm" "sw" +"andern" "andern" "sw" +"andernfalls" "andernfalls" "sw" +"anders" "anders" "sw" +"anm." "anm." "sw" +"anstatt" "anstatt" "sw" +"auch" "auch" "sw" +"auf" "auf" "sw" +"aufgrund" "aufgrund" "sw" +"aus" "aus" "sw" +"außerdem" "außerdem" "sw" +"außerhalb" "außerhalb" "sw" +"bald" "bald" "sw" +"bei" "bei" "sw" +"beide" "beide" "sw" +"beiden" "beiden" "sw" +"beider" "beider" "sw" +"beiderlei" "beiderlei" "sw" +"beides" "beides" "sw" +"beim" "beim" "sw" +"beinahe" "beinahe" "sw" +"bereits" "bereits" "sw" +"bes." "bes." "sw" +"betr." "betr." "sw" +"bevor" "bevor" "sw" +"bez." "bez." "sw" +"bezüglich" "bezüglich" "sw" +"bin" "bin" "sw" +"bis" "bis" "sw" +"bisher" "bisher" "sw" +"bislang" "bislang" "sw" +"bist" "bist" "sw" +"bitte" "bitte" "sw" +"bloss" "bloss" "sw" +"bsp." "bsp." "sw" +"bspw." "bspw." "sw" +"bzgl." "bzgl." "sw" +"bzw" "bzw" "sw" +"bzw." "bzw." "sw" +"c.p." "c.p." "sw" +"ca." "ca." "sw" +"cf." "cf." "sw" +"d.h." "d.h." "sw" +"da" "da" "sw" +"dabei" "dabei" "sw" +"dadurch" "dadurch" "sw" +"daher" "daher" "sw" +"dahin" "dahin" "sw" +"damals" "damals" "sw" +"damit" "damit" "sw" +"danach" "danach" "sw" +"daneben" "daneben" "sw" +"dann" "dann" "sw" +"dannen" "dannen" "sw" +"daran" "daran" "sw" +"darauf" "darauf" "sw" +"daraus" "daraus" "sw" +"darin" "darin" "sw" +"darüber" "darüber" "sw" +"darüberhinaus" "darüberhinaus" "sw" +"darueber" "darueber" "sw" +"darueberhinaus" "darueberhinaus" "sw" +"darum" "darum" "sw" +"darunter" "darunter" "sw" +"das" "das" "sw" +"daß" "daß" "sw" +"dasselbe" "dasselbe" "sw" +"davon" "davon" "sw" +"davor" "davor" "sw" +"dazu" "dazu" "sw" +"dein" "dein" "sw" +"deine" "deine" "sw" +"deinem" "deinem" "sw" +"deinen" "deinen" "sw" +"deiner" "deiner" "sw" +"deines" "deines" "sw" +"dem" "dem" "sw" +"demnach" "demnach" "sw" +"demselben" "demselben" "sw" +"den" "den" "sw" +"denen" "denen" "sw" +"denn" "denn" "sw" +"dennoch" "dennoch" "sw" +"denselben" "denselben" "sw" +"der" "der" "sw" +"derart" "derart" "sw" +"derartig" "derartig" "sw" +"derem" "derem" "sw" +"deren" "deren" "sw" +"derer" "derer" "sw" +"derjenige" "derjenige" "sw" +"derjenigen" "derjenigen" "sw" +"derselbe" "derselbe" "sw" +"derselben" "derselben" "sw" +"derzeit" "derzeit" "sw" +"des" "des" "sw" +"deshalb" "deshalb" "sw" +"desselben" "desselben" "sw" +"dessen" "dessen" "sw" +"desto" "desto" "sw" +"deswegen" "deswegen" "sw" +"dgl." "dgl." "sw" +"dich" "dich" "sw" +"die" "die" "sw" +"diejenige" "diejenige" "sw" +"dies" "dies" "sw" +"diese" "diese" "sw" +"dieselbe" "dieselbe" "sw" +"dieselben" "dieselben" "sw" +"diesem" "diesem" "sw" +"diesen" "diesen" "sw" +"dieser" "dieser" "sw" +"dieses" "dieses" "sw" +"diesseits" "diesseits" "sw" +"dir" "dir" "sw" +"doch" "doch" "sw" +"doppelt" "doppelt" "sw" +"dort" "dort" "sw" +"dorther" "dorther" "sw" +"dorthin" "dorthin" "sw" +"drauf" "drauf" "sw" +"drei" "drei" "sw" +"dreißig" "dreißig" "sw" +"drin" "drin" "sw" +"dritte" "dritte" "sw" +"drüber" "drüber" "sw" +"drunter" "drunter" "sw" +"du" "du" "sw" +"dunklen" "dunklen" "sw" +"durch" "durch" "sw" +"durchaus" "durchaus" "sw" +"eben" "eben" "sw" +"ebenfalls" "ebenfalls" "sw" +"ebenso" "ebenso" "sw" +"ed." "ed." "sw" +"ehe" "ehe" "sw" +"ehem." "ehem." "sw" +"eher" "eher" "sw" +"eigentlich" "eigentlich" "sw" +"ein" "ein" "sw" +"eine" "eine" "sw" +"einem" "einem" "sw" +"einen" "einen" "sw" +"einer" "einer" "sw" +"einerseits" "einerseits" "sw" +"eines" "eines" "sw" +"einfach" "einfach" "sw" +"einige" "einige" "sw" +"einigem" "einigem" "sw" +"einiger" "einiger" "sw" +"einigermaßen" "einigermaßen" "sw" +"einiges" "einiges" "sw" +"eins" "eins" "sw" +"einst" "einst" "sw" +"einstmals" "einstmals" "sw" +"einzig" "einzig" "sw" +"entgegen" "entgegen" "sw" +"entspr." "entspr." "sw" +"entsprechend" "entsprechend" "sw" +"entweder" "entweder" "sw" +"er" "er" "sw" +"erneut" "erneut" "sw" +"erst" "erst" "sw" +"es" "es" "sw" +"et al." "et al." "sw" +"etc" "etc" "sw" +"etc." "etc." "sw" +"etliche" "etliche" "sw" +"etwa" "etwa" "sw" +"etwas" "etwas" "sw" +"euch" "euch" "sw" +"euer" "euer" "sw" +"eure" "eure" "sw" +"eurem" "eurem" "sw" +"euren" "euren" "sw" +"eurer" "eurer" "sw" +"eures" "eures" "sw" +"exkl." "exkl." "sw" +"fa." "fa." "sw" +"falls" "falls" "sw" +"fand" "fand" "sw" +"fast" "fast" "sw" +"ferner" "ferner" "sw" +"folgende" "folgende" "sw" +"folgenden" "folgenden" "sw" +"folgender" "folgender" "sw" +"folgendes" "folgendes" "sw" +"folglich" "folglich" "sw" +"fort" "fort" "sw" +"forts." "forts." "sw" +"fr." "fr." "sw" +"fünf" "fünf" "sw" +"für" "für" "sw" +"gänzlich" "gänzlich" "sw" +"gar" "gar" "sw" +"gbr" "gbr" "sw" +"geb." "geb." "sw" +"geehrt" "geehrt" "sw" +"geehrte" "geehrte" "sw" +"geehrten" "geehrten" "sw" +"geehrter" "geehrter" "sw" +"gefälligst" "gefälligst" "sw" +"gegenüber" "gegenüber" "sw" +"gegr." "gegr." "sw" +"gehabt" "gehabt" "sw" +"gemäß" "gemäß" "sw" +"ges." "ges." "sw" +"gest." "gest." "sw" +"gestern" "gestern" "sw" +"gestrige" "gestrige" "sw" +"gew." "gew." "sw" +"gewissermaßen" "gewissermaßen" "sw" +"gez." "gez." "sw" +"ggf" "ggf" "sw" +"ggf." "ggf." "sw" +"gleichwohl" "gleichwohl" "sw" +"gleichzeitig" "gleichzeitig" "sw" +"glücklicherweise" "glücklicherweise" "sw" +"gmbh" "gmbh" "sw" +"gründlich" "gründlich" "sw" +"gute" "gute" "sw" +"guten" "guten" "sw" +"hab" "hab" "sw" +"habe" "habe" "sw" +"haben" "haben" "sw" +"habt" "habt" "sw" +"halb" "halb" "sw" +"hallo" "hallo" "sw" +"hast" "hast" "sw" +"hat" "hat" "sw" +"hatte" "hatte" "sw" +"hätte" "hätte" "sw" +"hatten" "hatten" "sw" +"hätten" "hätten" "sw" +"hattest" "hattest" "sw" +"hattet" "hattet" "sw" +"häufig" "häufig" "sw" +"heraus" "heraus" "sw" +"herein" "herein" "sw" +"heute" "heute" "sw" +"heutige" "heutige" "sw" +"hg." "hg." "sw" +"hier" "hier" "sw" +"hier hinter" "hier hinter" "sw" +"hiermit" "hiermit" "sw" +"hiesige" "hiesige" "sw" +"hin" "hin" "sw" +"hindurch" "hindurch" "sw" +"hinein" "hinein" "sw" +"hintendran" "hintendran" "sw" +"hinunter" "hinunter" "sw" +"höchstens" "höchstens" "sw" +"hr." "hr." "sw" +"hrn." "hrn." "sw" +"hrsg." "hrsg." "sw" +"hundert" "hundert" "sw" +"i.a." "i.a." "sw" +"i.d.r." "i.d.r." "sw" +"i.e." "i.e." "sw" +"i.h.v." "i.h.v." "sw" +"ich" "ich" "sw" +"igitt" "igitt" "sw" +"ihm" "ihm" "sw" +"ihn" "ihn" "sw" +"ihnen" "ihnen" "sw" +"ihr" "ihr" "sw" +"ihre" "ihre" "sw" +"ihrem" "ihrem" "sw" +"ihren" "ihren" "sw" +"ihrer" "ihrer" "sw" +"ihres" "ihres" "sw" +"ihrige" "ihrige" "sw" +"ihrigen" "ihrigen" "sw" +"ihriges" "ihriges" "sw" +"im" "im" "sw" +"immer" "immer" "sw" +"immerhin" "immerhin" "sw" +"in" "in" "sw" +"indem" "indem" "sw" +"indessen" "indessen" "sw" +"info" "info" "sw" +"infolge" "infolge" "sw" +"inkl." "inkl." "sw" +"innen" "innen" "sw" +"innerhalb" "innerhalb" "sw" +"innerlich" "innerlich" "sw" +"ins" "ins" "sw" +"insofern" "insofern" "sw" +"inzwischen" "inzwischen" "sw" +"irgend" "irgend" "sw" +"irgendeine" "irgendeine" "sw" +"irgendetwas" "irgendetwas" "sw" +"irgendwas" "irgendwas" "sw" +"irgendwelche" "irgendwelche" "sw" +"irgendwen" "irgendwen" "sw" +"irgendwenn" "irgendwenn" "sw" +"irgendwer" "irgendwer" "sw" +"irgendwie" "irgendwie" "sw" +"irgendwo" "irgendwo" "sw" +"irgendwohin" "irgendwohin" "sw" +"ist" "ist" "sw" +"ja" "ja" "sw" +"jährig" "jährig" "sw" +"jährige" "jährige" "sw" +"jährigen" "jährigen" "sw" +"jähriges" "jähriges" "sw" +"je" "je" "sw" +"jede" "jede" "sw" +"jedem" "jedem" "sw" +"jeden" "jeden" "sw" +"jedenfalls" "jedenfalls" "sw" +"jeder" "jeder" "sw" +"jederlei" "jederlei" "sw" +"jedes" "jedes" "sw" +"jedoch" "jedoch" "sw" +"jemals" "jemals" "sw" +"jemand" "jemand" "sw" +"jemandem" "jemandem" "sw" +"jemanden" "jemanden" "sw" +"jemandes" "jemandes" "sw" +"jene" "jene" "sw" +"jenem" "jenem" "sw" +"jenen" "jenen" "sw" +"jener" "jener" "sw" +"jenes" "jenes" "sw" +"jenseits" "jenseits" "sw" +"jetzt" "jetzt" "sw" +"jr." "jr." "sw" +"Kap." "Kap." "sw" +"keinerlei" "keinerlei" "sw" +"keineswegs" "keineswegs" "sw" +"künftig" "künftig" "sw" +"längst" "längst" "sw" +"längstens" "längstens" "sw" +"lediglich" "lediglich" "sw" +"leider" "leider" "sw" +"letztendlich" "letztendlich" "sw" +"letztens" "letztens" "sw" +"letztlich" "letztlich" "sw" +"lt." "lt." "sw" +"mal" "mal" "sw" +"man" "man" "sw" +"manche" "manche" "sw" +"manchem" "manchem" "sw" +"manchen" "manchen" "sw" +"mancher" "mancher" "sw" +"mancherorts" "mancherorts" "sw" +"manches" "manches" "sw" +"manchmal" "manchmal" "sw" +"mehr" "mehr" "sw" +"mehrere" "mehrere" "sw" +"mein" "mein" "sw" +"meine" "meine" "sw" +"meinem" "meinem" "sw" +"meinen" "meinen" "sw" +"meiner" "meiner" "sw" +"meines" "meines" "sw" +"meist" "meist" "sw" +"meiste" "meiste" "sw" +"meisten" "meisten" "sw" +"meistens" "meistens" "sw" +"meta" "meta" "sw" +"mich" "mich" "sw" +"min." "min." "sw" +"mindestens" "mindestens" "sw" +"mir" "mir" "sw" +"mit" "mit" "sw" +"mithin" "mithin" "sw" +"möglich" "möglich" "sw" +"mögliche" "mögliche" "sw" +"möglichen" "möglichen" "sw" +"möglicher" "möglicher" "sw" +"möglicherweise" "möglicherweise" "sw" +"morgen" "morgen" "sw" +"morgige" "morgige" "sw" +"nach" "nach" "sw" +"nachdem" "nachdem" "sw" +"nacher" "nacher" "sw" +"nachhinein" "nachhinein" "sw" +"nächste" "nächste" "sw" +"nacht" "nacht" "sw" +"naechste" "naechste" "sw" +"nämlich" "nämlich" "sw" +"natürlich" "natürlich" "sw" +"neben" "neben" "sw" +"nebenan" "nebenan" "sw" +"nein" "nein" "sw" +"neun" "neun" "sw" +"nimmer" "nimmer" "sw" +"nirgends" "nirgends" "sw" +"nirgendwo" "nirgendwo" "sw" +"noch" "noch" "sw" +"nötigenfalls" "nötigenfalls" "sw" +"nun" "nun" "sw" +"nur" "nur" "sw" +"oä." "oä." "sw" +"ob" "ob" "sw" +"oben" "oben" "sw" +"oberhalb" "oberhalb" "sw" +"obgleich" "obgleich" "sw" +"obschon" "obschon" "sw" +"obwohl" "obwohl" "sw" +"oder" "oder" "sw" +"oft" "oft" "sw" +"ohne" "ohne" "sw" +"p.a." "p.a." "sw" +"p.c." "p.c." "sw" +"pc." "pc." "sw" +"per" "per" "sw" +"pfui" "pfui" "sw" +"plötzlich" "plötzlich" "sw" +"Prof." "Prof." "sw" +"rd." "rd." "sw" +"rund" "rund" "sw" +"s." "s." "sw" +"s.a." "s.a." "sw" +"s.o." "s.o." "sw" +"s.s." "s.s." "sw" +"s.u." "s.u." "sw" +"sämtliche" "sämtliche" "sw" +"schließlich" "schließlich" "sw" +"schon" "schon" "sw" +"sechs" "sechs" "sw" +"sehr" "sehr" "sw" +"sehrwohl" "sehrwohl" "sw" +"sei" "sei" "sw" +"seid" "seid" "sw" +"seien" "seien" "sw" +"seiest" "seiest" "sw" +"seiet" "seiet" "sw" +"sein" "sein" "sw" +"seine" "seine" "sw" +"seinem" "seinem" "sw" +"seinen" "seinen" "sw" +"seiner" "seiner" "sw" +"seines" "seines" "sw" +"seit" "seit" "sw" +"seitdem" "seitdem" "sw" +"seither" "seither" "sw" +"selber" "selber" "sw" +"selbst" "selbst" "sw" +"sich" "sich" "sw" +"sicher" "sicher" "sw" +"sicherlich" "sicherlich" "sw" +"sie" "sie" "sw" +"sieben" "sieben" "sw" +"siebte" "siebte" "sw" +"siehe" "siehe" "sw" +"sieht" "sieht" "sw" +"sind" "sind" "sw" +"so" "so" "sw" +"sobald" "sobald" "sw" +"sodaß" "sodaß" "sw" +"soeben" "soeben" "sw" +"sofern" "sofern" "sw" +"sofort" "sofort" "sw" +"sog." "sog." "sw" +"sogar" "sogar" "sw" +"solange" "solange" "sw" +"solch" "solch" "sw" +"solche" "solche" "sw" +"solchem" "solchem" "sw" +"solchen" "solchen" "sw" +"solcher" "solcher" "sw" +"solches" "solches" "sw" +"somit" "somit" "sw" +"sondern" "sondern" "sw" +"sonst" "sonst" "sw" +"sonstwo" "sonstwo" "sw" +"sooft" "sooft" "sw" +"soviel" "soviel" "sw" +"soweit" "soweit" "sw" +"sowie" "sowie" "sw" +"sowohl" "sowohl" "sw" +"später" "später" "sw" +"statt" "statt" "sw" +"stattdessen" "stattdessen" "sw" +"stets" "stets" "sw" +"tages" "tages" "sw" +"tatsächlich" "tatsächlich" "sw" +"tatsächlichen" "tatsächlichen" "sw" +"tatsächlicher" "tatsächlicher" "sw" +"tatsächliches" "tatsächliches" "sw" +"tatsaechlich" "tatsaechlich" "sw" +"tausend" "tausend" "sw" +"total" "total" "sw" +"trotzdem" "trotzdem" "sw" +"tun" "tun" "sw" +"tust" "tust" "sw" +"tut" "tut" "sw" +"u." "u." "sw" +"u. ä." "u. ä." "sw" +"u.a." "u.a." "sw" +"u.a.m." "u.a.m." "sw" +"u.u." "u.u." "sw" +"u.v.a." "u.v.a." "sw" +"u.v.m." "u.v.m." "sw" +"über" "über" "sw" +"überall" "überall" "sw" +"überallhin" "überallhin" "sw" +"überdies" "überdies" "sw" +"überll" "überll" "sw" +"übermorgen" "übermorgen" "sw" +"übrigens" "übrigens" "sw" +"um" "um" "sw" +"umso" "umso" "sw" +"unbedingt" "unbedingt" "sw" +"und" "und" "sw" +"ungefähr" "ungefähr" "sw" +"univ.-prof." "univ.-prof." "sw" +"uns" "uns" "sw" +"unse" "unse" "sw" +"unsem" "unsem" "sw" +"unsen" "unsen" "sw" +"unser" "unser" "sw" +"unsere" "unsere" "sw" +"unserem" "unserem" "sw" +"unseren" "unseren" "sw" +"unserer" "unserer" "sw" +"unseres" "unseres" "sw" +"unserm" "unserm" "sw" +"unses" "unses" "sw" +"unten" "unten" "sw" +"unter" "unter" "sw" +"unterhalb" "unterhalb" "sw" +"usf." "usf." "sw" +"usw" "usw" "sw" +"usw." "usw." "sw" +"v.v." "v.v." "sw" +"vermutlich" "vermutlich" "sw" +"vielleicht" "vielleicht" "sw" +"vielmals" "vielmals" "sw" +"vier" "vier" "sw" +"vom" "vom" "sw" +"von" "von" "sw" +"vor" "vor" "sw" +"voran" "voran" "sw" +"vorbei" "vorbei" "sw" +"vorgestern" "vorgestern" "sw" +"vorher" "vorher" "sw" +"vorne" "vorne" "sw" +"Vors." "Vors." "sw" +"vorüber" "vorüber" "sw" +"vorueber" "vorueber" "sw" +"vs." "vs." "sw" +"waehrend" "waehrend" "sw" +"waere" "waere" "sw" +"während" "während" "sw" +"währenddessen" "währenddessen" "sw" +"wann" "wann" "sw" +"war" "war" "sw" +"wär" "wär" "sw" +"wäre" "wäre" "sw" +"waren" "waren" "sw" +"wären" "wären" "sw" +"warst" "warst" "sw" +"wart" "wart" "sw" +"warum" "warum" "sw" +"was" "was" "sw" +"weder" "weder" "sw" +"weg" "weg" "sw" +"wegen" "wegen" "sw" +"weil" "weil" "sw" +"weit" "weit" "sw" +"weiter" "weiter" "sw" +"weitere" "weitere" "sw" +"weiterem" "weiterem" "sw" +"weiteren" "weiteren" "sw" +"weiterer" "weiterer" "sw" +"weiteres" "weiteres" "sw" +"weiterhin" "weiterhin" "sw" +"welche" "welche" "sw" +"welchem" "welchem" "sw" +"welchen" "welchen" "sw" +"welcher" "welcher" "sw" +"welches" "welches" "sw" +"wem" "wem" "sw" +"wen" "wen" "sw" +"wenig" "wenig" "sw" +"wenige" "wenige" "sw" +"weniger" "weniger" "sw" +"wenigstens" "wenigstens" "sw" +"wenn" "wenn" "sw" +"wenngleich" "wenngleich" "sw" +"wer" "wer" "sw" +"werde" "werde" "sw" +"werden" "werden" "sw" +"werdet" "werdet" "sw" +"weshalb" "weshalb" "sw" +"wessen" "wessen" "sw" +"wie" "wie" "sw" +"wieder" "wieder" "sw" +"wieso" "wieso" "sw" +"wieviel" "wieviel" "sw" +"wiewohl" "wiewohl" "sw" +"wir" "wir" "sw" +"wird" "wird" "sw" +"wirklich" "wirklich" "sw" +"wirst" "wirst" "sw" +"wo" "wo" "sw" +"wodurch" "wodurch" "sw" +"wogegen" "wogegen" "sw" +"woher" "woher" "sw" +"wohin" "wohin" "sw" +"wohingegen" "wohingegen" "sw" +"wohl" "wohl" "sw" +"wohlweislich" "wohlweislich" "sw" +"womit" "womit" "sw" +"woraufhin" "woraufhin" "sw" +"woraus" "woraus" "sw" +"worin" "worin" "sw" +"wurde" "wurde" "sw" +"wurden" "wurden" "sw" +"würden" "würden" "sw" +"wurdest" "wurdest" "sw" +"würdest" "würdest" "sw" +"wurdet" "wurdet" "sw" +"würdet" "würdet" "sw" +"z.B." "z.B." "sw" +"z.T." "z.T." "sw" +"zahlreich" "zahlreich" "sw" +"zehn" "zehn" "sw" +"zeitweise" "zeitweise" "sw" +"ziemlich" "ziemlich" "sw" +"zu" "zu" "sw" +"zudem" "zudem" "sw" +"zuerst" "zuerst" "sw" +"zufolge" "zufolge" "sw" +"zugleich" "zugleich" "sw" +"zuletzt" "zuletzt" "sw" +"zum" "zum" "sw" +"zumal" "zumal" "sw" +"zur" "zur" "sw" +"zurück" "zurück" "sw" +"zuviel" "zuviel" "sw" +"zw." "zw." "sw" +"zwanzig" "zwanzig" "sw" +"zwar" "zwar" "sw" +"zwei" "zwei" "sw" +"zwischen" "zwischen" "sw" +"zwölf" "zwölf" "sw" +"ähnlich" "ähnlich" "sw" +"andere" "andere" "sw" +"anderem" "anderem" "sw" +"anderen" "anderen" "sw" +"anderer" "anderer" "sw" +"anderes" "anderes" "sw" +"außen" "außen" "sw" +"ausser" "ausser" "sw" +"außer" "außer" "sw" +"genug" "genug" "sw" +"hinten" "hinten" "sw" +"hinter" "hinter" "sw" +"hinterher" "hinterher" "sw" +"hoch" "hoch" "sw" +"viel" "viel" "sw" +"viele" "viele" "sw" +"vielen" "vielen" "sw" +"vieler" "vieler" "sw" +"vieles" "vieles" "sw" +"völlig" "völlig" "sw" +"vollständig" "vollständig" "sw" +"will" "will" "sw" +"willst" "willst" "sw" +"wolle" "wolle" "sw" +"wollen" "wollen" "sw" +"wollt" "wollt" "sw" +"wollte" "wollte" "sw" +"wollten" "wollten" "sw" +"wolltest" "wolltest" "sw" +"wolltet" "wolltet" "sw" +"würde" "würde" "sw" +"zusammen" "zusammen" "sw" +"soll" "soll" "sw" +"sollen" "sollen" "sw" +"sollst" "sollst" "sw" +"sollt" "sollt" "sw" +"sollte" "sollte" "sw" +"sollten" "sollten" "sw" +"solltest" "solltest" "sw" +"solltet" "solltet" "sw" +"hingegen" "hingegen" "sw" +"darüber hinaus" "darüber hinaus" "sw" +"alle" "alle" "sw" +"allein" "allein" "sw" +"allem" "allem" "sw" +"allen" "allen" "sw" +"aller" "aller" "sw" +"alles" "alles" "sw" +"sogenannt" "sogenannt" "sw" +"sogenannte" "sogenannte" "sw" +"sogenannten" "sogenannten" "sw" +"so genannte" "so genannte" "sw" +"so genannten" "so genannten" "sw" +"so genannte" "so genannte" "sw" +"worden" "worden" "sw" +"ach" "ach" "sw" +"weh" "weh" "sw" +"geworden" "geworden" "sw" +"gewollt" "gewollt" "sw" +"her" "her" "sw" +"co" "co" "sw" +"ohnehin" "ohnehin" "sw" +"klipp" "klipp" "sw" +"na" "na" "sw" +"genauso" "genauso" "sw" +"diejenigen" "diejenigen" "sw" +"worum" "worum" "sw" +"nebenbei" "nebenbei" "sw" +"et_al sw et_al" +"hier_hinter sw hier_hinter" +"u_ä sw u_ä" +"univ_prof sw univ_prof" +"darüber_hinaus sw darüber_hinaus" +"so_genannte sw so_genannte" +"so_genannten sw so_genannten" +"so_genannte sw so_genannte" diff --git a/dictionnaires/lexique_en.txt b/dictionnaires/lexique_en.txt new file mode 100644 index 0000000..02d5cc0 --- /dev/null +++ b/dictionnaires/lexique_en.txt @@ -0,0 +1,97893 @@ +a a sw +a_s a_s sw +aardvark aardvark nom +aardvarks aardvark nom +aardwolf aardwolf nom +aardwolves aardwolf nom +aba aba nom +abaca abaca nom +abacas abaca nom +abacus abacus nom +abacuses abacus nom +abalone abalone nom +abalones abalone nom +abamp abamp nom +abampere abampere nom +abamperes abampere nom +abamps abamp nom +abandon abandon nom +abandoned abandon ver +abandoning abandon ver +abandonment abandonment nom +abandonments abandonment nom +abandons abandon nom +abas aba nom +abase abase ver +abased abase ver +abasement abasement nom +abasements abasement nom +abases abase ver +abash abash ver +abashed abash ver +abashes abash ver +abashing abash ver +abashment abashment nom +abashments abashment nom +abasia abasia nom +abasias abasia nom +abasing abase ver +abate abate ver +abated abate ver +abatement abatement nom +abatements abatement nom +abates abate ver +abating abate ver +abatis abatis nom +abatises abatis nom +abattis abattis nom +abattises abattis nom +abattoir abattoir nom +abattoirs abattoir nom +abbacies abbacy nom +abbacy abbacy nom +abbe abbe nom +abbes abbe nom +abbess abbess nom +abbesses abbess nom +abbey abbey nom +abbeys abbey nom +abbot abbot nom +abbots abbot nom +abbreviate abbreviate ver +abbreviated abbreviate ver +abbreviates abbreviate ver +abbreviating abbreviate ver +abbreviation abbreviation nom +abbreviations abbreviation nom +abcoulomb abcoulomb nom +abcoulombs abcoulomb nom +abdicate abdicate ver +abdicated abdicate ver +abdicates abdicate ver +abdicating abdicate ver +abdication abdication nom +abdications abdication nom +abdicator abdicator nom +abdicators abdicator nom +abdomen abdomen nom +abdomens abdomen nom +abdominal abdominal nom +abdominals abdominal nom +abduce abduce ver +abduced abduce ver +abduces abduce ver +abducing abduce ver +abduct abduct ver +abducted abduct ver +abducting abduct ver +abduction abduction nom +abductions abduction nom +abductor abductor nom +abductors abductor nom +abducts abduct ver +abecedarian abecedarian nom +abecedarians abecedarian nom +abele abele nom +abeles abele nom +abelia abelia nom +abelias abelia nom +abelmosk abelmosk nom +abelmosks abelmosk nom +aberrance aberrance nom +aberrances aberrance nom +aberrancies aberrancy nom +aberrancy aberrancy nom +aberrant aberrant nom +aberrants aberrant nom +aberration aberration nom +aberrations aberration nom +abet abet ver +abetment abetment nom +abetments abetment nom +abets abet ver +abetted abet ver +abetter abetter nom +abetters abetter nom +abetting abet ver +abettor abettor nom +abettors abettor nom +abeyance abeyance nom +abeyances abeyance nom +abfarad abfarad nom +abfarads abfarad nom +abhenries abhenry nom +abhenry abhenry nom +abhor abhor ver +abhorred abhor ver +abhorrence abhorrence nom +abhorrences abhorrence nom +abhorrer abhorrer nom +abhorrers abhorrer nom +abhorring abhor ver +abhors abhor ver +abidance abidance nom +abidances abidance nom +abide abide ver +abides abide ver +abiding abide ver +abilities ability nom +ability ability nom +abiogeneses abiogenesis nom +abiogenesis abiogenesis nom +abiogenist abiogenist nom +abiogenists abiogenist nom +abjection abjection nom +abjections abjection nom +abjectness abjectness nom +abjectnesses abjectness nom +abjuration abjuration nom +abjurations abjuration nom +abjure abjure ver +abjured abjure ver +abjurer abjurer nom +abjurers abjurer nom +abjures abjure ver +abjuring abjure ver +ablate ablate ver +ablated ablate ver +ablates ablate ver +ablating ablate ver +ablation ablation nom +ablations ablation nom +ablative ablative nom +ablatives ablative nom +ablaut ablaut nom +ablauts ablaut nom +able able sw +ableism ableism nom +ableisms ableism nom +abler able adj +ablest able adj +ablution ablution nom +ablutions ablution nom +abnegate abnegate ver +abnegated abnegate ver +abnegates abnegate ver +abnegating abnegate ver +abnegation abnegation nom +abnegations abnegation nom +abnegator abnegator nom +abnegators abnegator nom +abnormal abnormal nom +abnormalities abnormality nom +abnormality abnormality nom +abnormals abnormal nom +abode abide ver +abodes abode nom +abohm abohm nom +abohms abohm nom +abolish abolish ver +abolished abolish ver +abolishes abolish ver +abolishing abolish ver +abolishment abolishment nom +abolishments abolishment nom +abolition abolition nom +abolitionism abolitionism nom +abolitionisms abolitionism nom +abolitionist abolitionist nom +abolitionists abolitionist nom +abolitions abolition nom +abomasa abomasum nom +abomasum abomasum nom +abominate abominate ver +abominated abominate ver +abominates abominate ver +abominating abominate ver +abomination abomination nom +abominations abomination nom +abominator abominator nom +abominators abominator nom +aboriginal aboriginal nom +aboriginals aboriginal nom +aborigine aborigine nom +aborigines aborigine nom +abort abort ver +aborted abort ver +aborticide aborticide nom +aborticides aborticide nom +abortifacient abortifacient nom +abortifacients abortifacient nom +aborting abort ver +abortion abortion nom +abortionist abortionist nom +abortionists abortionist nom +abortions abortion nom +aborts abort ver +abortus abortus nom +abortuses abortus nom +aboulia aboulia nom +aboulias aboulia nom +abound abound ver +abounded abound ver +abounding abound ver +abounds abound ver +about about sw +above above sw +aboves above nom +abracadabra abracadabra nom +abracadabras abracadabra nom +abrachia abrachia nom +abrachias abrachia nom +abradant abradant nom +abradants abradant nom +abrade abrade ver +abraded abrade ver +abrader abrader nom +abraders abrader nom +abrades abrade ver +abrading abrade ver +abrasion abrasion nom +abrasions abrasion nom +abrasive abrasive nom +abrasiveness abrasiveness nom +abrasivenesses abrasiveness nom +abrasives abrasive nom +abreact abreact ver +abreacted abreact ver +abreacting abreact ver +abreaction abreaction nom +abreactions abreaction nom +abreacts abreact ver +abridge abridge ver +abridged abridge ver +abridgement abridgement nom +abridgements abridgement nom +abridger abridger nom +abridgers abridger nom +abridges abridge ver +abridging abridge ver +abridgment abridgment nom +abridgments abridgment nom +abrogate abrogate ver +abrogated abrogate ver +abrogates abrogate ver +abrogating abrogate ver +abrogation abrogation nom +abrogations abrogation nom +abrogator abrogator nom +abrogators abrogator nom +abrupt abrupt adj +abrupter abrupt adj +abruptest abrupt adj +abruption abruption nom +abruptions abruption nom +abruptness abruptness nom +abruptnesses abruptness nom +abscess abscess nom +abscessed abscess ver +abscesses abscess nom +abscessing abscess ver +abscise abscise ver +abscised abscise ver +abscises abscise ver +abscising abscise ver +abscissa abscissa nom +abscissas abscissa nom +abscission abscission nom +abscissions abscission nom +abscond abscond ver +absconded abscond ver +absconder absconder nom +absconders absconder nom +absconding abscond ver +absconds abscond ver +abseil abseil nom +abseiled abseil ver +abseiling abseil ver +abseils abseil nom +absence absence nom +absences absence nom +absent absent ver +absented absent ver +absentee absentee nom +absenteeism absenteeism nom +absenteeisms absenteeism nom +absentees absentee nom +absenting absent ver +absentmindedness absentmindedness nom +absentmindednesses absentmindedness nom +absents absent ver +absinth absinth nom +absinthe absinthe nom +absinthes absinthe nom +absinths absinth nom +absolute absolute adj +absoluteness absoluteness nom +absolutenesses absoluteness nom +absoluter absolute adj +absolutes absolute nom +absolutest absolute adj +absolution absolution nom +absolutions absolution nom +absolutism absolutism nom +absolutisms absolutism nom +absolutist absolutist nom +absolutists absolutist nom +absolve absolve ver +absolved absolve ver +absolver absolver nom +absolvers absolver nom +absolves absolve ver +absolving absolve ver +absorb absorb ver +absorbed absorb ver +absorbencies absorbency nom +absorbency absorbency nom +absorbent absorbent nom +absorbents absorbent nom +absorber absorber nom +absorbers absorber nom +absorbing absorb ver +absorbs absorb ver +absorptance absorptance nom +absorptances absorptance nom +absorption absorption nom +absorptions absorption nom +absorptivities absorptivity nom +absorptivity absorptivity nom +absquatulate absquatulate ver +absquatulated absquatulate ver +absquatulates absquatulate ver +absquatulating absquatulate ver +abstain abstain ver +abstained abstain ver +abstainer abstainer nom +abstainers abstainer nom +abstaining abstain ver +abstains abstain ver +abstemiousness abstemiousness nom +abstemiousnesses abstemiousness nom +abstention abstention nom +abstentions abstention nom +abstinence abstinence nom +abstinences abstinence nom +abstract abstract adj +abstracted abstract ver +abstractedness abstractedness nom +abstractednesses abstractedness nom +abstracter abstract adj +abstracters abstracter nom +abstractest abstract adj +abstracting abstract ver +abstraction abstraction nom +abstractionism abstractionism nom +abstractionisms abstractionism nom +abstractionist abstractionist nom +abstractionists abstractionist nom +abstractions abstraction nom +abstractness abstractness nom +abstractnesses abstractness nom +abstractor abstractor nom +abstractors abstractor nom +abstracts abstract nom +abstruse abstruse adj +abstruseness abstruseness nom +abstrusenesses abstruseness nom +abstruser abstruse adj +abstrusest abstruse adj +abstrusities abstrusity nom +abstrusity abstrusity nom +absurd absurd adj +absurder absurd adj +absurdest absurd adj +absurdities absurdity nom +absurdity absurdity nom +absurdness absurdness nom +absurdnesses absurdness nom +absurds absurd nom +abulia abulia nom +abulias abulia nom +abundance abundance nom +abundances abundance nom +abuse abuse nom +abused abuse ver +abuser abuser nom +abusers abuser nom +abuses abuse nom +abusing abuse ver +abusiveness abusiveness nom +abusivenesses abusiveness nom +abut abut ver +abutment abutment nom +abutments abutment nom +abuts abut ver +abutted abut ver +abutter abutter nom +abutters abutter nom +abutting abut ver +abvolt abvolt nom +abvolts abvolt nom +abwatt abwatt nom +abwatts abwatt nom +abysm abysm nom +abysms abysm nom +abyss abyss nom +abysses abyss nom +acacia acacia nom +acacias acacia nom +academe academe nom +academes academe nom +academia academia nom +academias academia nom +academic academic nom +academician academician nom +academicians academician nom +academicism academicism nom +academicisms academicism nom +academics academic nom +academies academy nom +academism academism nom +academisms academism nom +academy academy nom +acanthocephalan acanthocephalan nom +acanthocephalans acanthocephalan nom +acanthopterygian acanthopterygian nom +acanthopterygians acanthopterygian nom +acanthus acanthus nom +acanthuses acanthus nom +acapnia acapnia nom +acapnias acapnia nom +acari acarus nom +acariases acariasis nom +acariasis acariasis nom +acaricide acaricide nom +acaricides acaricide nom +acarid acarid nom +acarids acarid nom +acarine acarine nom +acarines acarine nom +acarophobia acarophobia nom +acarophobias acarophobia nom +acarus acarus nom +accede accede ver +acceded accede ver +accedes accede ver +acceding accede ver +accelerando accelerando nom +accelerandos accelerando nom +accelerate accelerate ver +accelerated accelerate ver +accelerates accelerate ver +accelerating accelerate ver +acceleration acceleration nom +accelerations acceleration nom +accelerator accelerator nom +accelerators accelerator nom +accelerometer accelerometer nom +accelerometers accelerometer nom +accent accent nom +accented accent ver +accenting accent ver +accentor accentor nom +accentors accentor nom +accents accent nom +accentuate accentuate ver +accentuated accentuate ver +accentuates accentuate ver +accentuating accentuate ver +accentuation accentuation nom +accentuations accentuation nom +accept accept ver +acceptabilities acceptability nom +acceptability acceptability nom +acceptableness acceptableness nom +acceptablenesses acceptableness nom +acceptance acceptance nom +acceptances acceptance nom +acceptation acceptation nom +acceptations acceptation nom +accepted accept ver +accepting accept ver +acceptor acceptor nom +acceptors acceptor nom +accepts accept ver +access access nom +accessaries accessary nom +accessary accessary nom +accessed access ver +accesses access nom +accessibilities accessibility nom +accessibility accessibility nom +accessing access ver +accession accession nom +accessioned accession ver +accessioning accession ver +accessions accession nom +accessories accessory nom +accessory accessory nom +acciaccatura acciaccatura nom +acciaccaturas acciaccatura nom +accidence accidence nom +accidences accidence nom +accident accident nom +accidental accidental nom +accidentals accidental nom +accidents accident nom +acclaim acclaim nom +acclaimed acclaim ver +acclaiming acclaim ver +acclaims acclaim nom +acclamation acclamation nom +acclamations acclamation nom +acclimate acclimate ver +acclimated acclimate ver +acclimates acclimate ver +acclimating acclimate ver +acclimation acclimation nom +acclimations acclimation nom +acclimatisation acclimatisation nom +acclimatisations acclimatisation nom +acclimatization acclimatization nom +acclimatizations acclimatization nom +acclimatize acclimatize ver +acclimatized acclimatize ver +acclimatizes acclimatize ver +acclimatizing acclimatize ver +acclivities acclivity nom +acclivity acclivity nom +accolade accolade nom +accolades accolade nom +accommodate accommodate ver +accommodated accommodate ver +accommodates accommodate ver +accommodating accommodate ver +accommodation accommodation nom +accommodations accommodation nom +accompanied accompany ver +accompanies accompany ver +accompaniment accompaniment nom +accompaniments accompaniment nom +accompanist accompanist nom +accompanists accompanist nom +accompany accompany ver +accompanying accompany ver +accompanyist accompanyist nom +accompanyists accompanyist nom +accomplice accomplice nom +accomplices accomplice nom +accomplish accomplish ver +accomplished accomplish ver +accomplishes accomplish ver +accomplishing accomplish ver +accomplishment accomplishment nom +accomplishments accomplishment nom +accord accord nom +accordance accordance nom +accordances accordance nom +accorded accord ver +according according sw +accordingly accordingly sw +accordion accordion nom +accordionist accordionist nom +accordionists accordionist nom +accordions accordion nom +accords accord nom +accost accost nom +accosted accost ver +accosting accost ver +accosts accost nom +accouchement accouchement nom +accouchements accouchement nom +accoucheur accoucheur nom +accoucheurs accoucheur nom +accoucheuse accoucheuse nom +accoucheuses accoucheuse nom +account account nom +accountabilities accountability nom +accountability accountability nom +accountancies accountancy nom +accountancy accountancy nom +accountant accountant nom +accountants accountant nom +accountantship accountantship nom +accountantships accountantship nom +accounted account ver +accounting account ver +accountings accounting nom +accounts account nom +accouter accouter ver +accoutered accouter ver +accoutering accouter ver +accouterment accouterment nom +accouterments accouterment nom +accouters accouter ver +accoutre accoutre ver +accoutred accoutre ver +accoutrement accoutrement nom +accoutrements accoutrement nom +accoutres accoutre ver +accoutring accoutre ver +accredit accredit ver +accreditation accreditation nom +accreditations accreditation nom +accredited accredit ver +accrediting accredit ver +accredits accredit ver +accrete accrete ver +accreted accrete ver +accretes accrete ver +accreting accrete ver +accretion accretion nom +accretions accretion nom +accrual accrual nom +accruals accrual nom +accrue accrue ver +accrued accrue ver +accruement accruement nom +accruements accruement nom +accrues accrue ver +accruing accrue ver +acculturate acculturate ver +acculturated acculturate ver +acculturates acculturate ver +acculturating acculturate ver +acculturation acculturation nom +acculturations acculturation nom +accumulate accumulate ver +accumulated accumulate ver +accumulates accumulate ver +accumulating accumulate ver +accumulation accumulation nom +accumulations accumulation nom +accumulator accumulator nom +accumulators accumulator nom +accuracies accuracy nom +accuracy accuracy nom +accurateness accurateness nom +accuratenesses accurateness nom +accursedness accursedness nom +accursednesses accursedness nom +accusal accusal nom +accusals accusal nom +accusation accusation nom +accusations accusation nom +accusative accusative nom +accusatives accusative nom +accuse accuse ver +accused accuse ver +accuser accuser nom +accusers accuser nom +accuses accuse ver +accusing accuse ver +accustom accustom ver +accustomed accustom ver +accustoming accustom ver +accustoms accustom ver +ace ace nom +aced ace ver +acedia acedia nom +acedias acedia nom +acerb acerb adj +acerbate acerbate ver +acerbated acerbate ver +acerbates acerbate ver +acerbating acerbate ver +acerber acerb adj +acerbest acerb adj +acerbities acerbity nom +acerbity acerbity nom +acerola acerola nom +acerolas acerola nom +acervuli acervulus nom +acervulus acervulus nom +aces ace nom +acetabulum acetabulum nom +acetabulums acetabulum nom +acetal acetal nom +acetaldehyde acetaldehyde nom +acetaldehydes acetaldehyde nom +acetals acetal nom +acetamide acetamide nom +acetamides acetamide nom +acetaminophen acetaminophen nom +acetaminophens acetaminophen nom +acetanilid acetanilid nom +acetanilide acetanilide nom +acetanilides acetanilide nom +acetanilids acetanilid nom +acetate acetate nom +acetates acetate nom +acetified acetify ver +acetifies acetify ver +acetify acetify ver +acetifying acetify ver +acetone acetone nom +acetones acetone nom +acetophenetidin acetophenetidin nom +acetophenetidins acetophenetidin nom +acetyl acetyl nom +acetylate acetylate ver +acetylated acetylate ver +acetylates acetylate ver +acetylating acetylate ver +acetylcholine acetylcholine nom +acetylcholines acetylcholine nom +acetylene acetylene nom +acetylenes acetylene nom +acetyls acetyl nom +ache ache nom +ached ache ver +achene achene nom +achenes achene nom +aches ache nom +achier achy adj +achiest achy adj +achieve achieve ver +achieved achieve ver +achievement achievement nom +achievements achievement nom +achiever achiever nom +achievers achiever nom +achieves achieve ver +achieving achieve ver +achillea achillea nom +achilleas achillea nom +aching ache ver +achings aching nom +achira achira nom +achiras achira nom +achlorhydria achlorhydria nom +achlorhydrias achlorhydria nom +acholia acholia nom +acholias acholia nom +achondrite achondrite nom +achondrites achondrite nom +achondroplasia achondroplasia nom +achondroplasias achondroplasia nom +achromatin achromatin nom +achromatins achromatin nom +achromatise achromatise ver +achromatised achromatise ver +achromatises achromatise ver +achromatising achromatise ver +achromatism achromatism nom +achromatisms achromatism nom +achromatize achromatize ver +achromatized achromatize ver +achromatizes achromatize ver +achromatizing achromatize ver +achy achy adj +acicula acicula nom +aciculas acicula nom +acid acid adj +acidemia acidemia nom +acidemias acidemia nom +acider acid adj +acidest acid adj +acidification acidification nom +acidifications acidification nom +acidified acidify ver +acidifies acidify ver +acidify acidify ver +acidifying acidify ver +acidimetries acidimetry nom +acidimetry acidimetry nom +acidities acidity nom +acidity acidity nom +acidophil acidophil nom +acidophile acidophile nom +acidophiles acidophile nom +acidophils acidophil nom +acidoses acidosis nom +acidosis acidosis nom +acids acid nom +acidulate acidulate ver +acidulated acidulate ver +acidulates acidulate ver +acidulating acidulate ver +acing ace ver +acini acinus nom +acinus acinus nom +ackee ackee nom +ackees ackee nom +acknowledge acknowledge ver +acknowledged acknowledge ver +acknowledgement acknowledgement nom +acknowledgements acknowledgement nom +acknowledges acknowledge ver +acknowledging acknowledge ver +acknowledgment acknowledgment nom +acknowledgments acknowledgment nom +acme acme nom +acmes acme nom +acne acne nom +acnes acne nom +acolyte acolyte nom +acolytes acolyte nom +aconite aconite nom +aconites aconite nom +acorn acorn nom +acorns acorn nom +acoustic acoustic nom +acoustician acoustician nom +acousticians acoustician nom +acoustics acoustic nom +acquaint acquaint ver +acquaintance acquaintance nom +acquaintances acquaintance nom +acquaintanceship acquaintanceship nom +acquaintanceships acquaintanceship nom +acquainted acquaint ver +acquainting acquaint ver +acquaints acquaint ver +acquiesce acquiesce ver +acquiesced acquiesce ver +acquiescence acquiescence nom +acquiescences acquiescence nom +acquiesces acquiesce ver +acquiescing acquiesce ver +acquire acquire ver +acquired acquire ver +acquirement acquirement nom +acquirements acquirement nom +acquirer acquirer nom +acquirers acquirer nom +acquires acquire ver +acquiring acquire ver +acquisition acquisition nom +acquisitions acquisition nom +acquisitiveness acquisitiveness nom +acquisitivenesses acquisitiveness nom +acquit acquit ver +acquits acquit ver +acquittal acquittal nom +acquittals acquittal nom +acquittance acquittance nom +acquittances acquittance nom +acquitted acquit ver +acquitting acquit ver +acre acre nom +acreage acreage nom +acreages acreage nom +acres acre nom +acrid acrid adj +acrider acrid adj +acridest acrid adj +acridities acridity nom +acridity acridity nom +acridness acridness nom +acridnesses acridness nom +acrimonies acrimony nom +acrimoniousness acrimoniousness nom +acrimoniousnesses acrimoniousness nom +acrimony acrimony nom +acrobat acrobat nom +acrobats acrobat nom +acrocephalies acrocephaly nom +acrocephaly acrocephaly nom +acrodont acrodont nom +acrodonts acrodont nom +acrogen acrogen nom +acrogens acrogen nom +acrolein acrolein nom +acroleins acrolein nom +acromegalies acromegaly nom +acromegaly acromegaly nom +acromion acromion nom +acromions acromion nom +acronym acronym nom +acronyms acronym nom +acrophobia acrophobia nom +acrophobias acrophobia nom +acropolis acropolis nom +acropolises acropolis nom +acrosome acrosome nom +acrosomes acrosome nom +across across sw +acrostic acrostic nom +acrostics acrostic nom +acrylate acrylate nom +acrylates acrylate nom +acrylic acrylic nom +acrylics acrylic nom +acrylonitrile acrylonitrile nom +acrylonitriles acrylonitrile nom +act act nom +acted act ver +actin actin nom +acting act ver +actings acting nom +actinia actinia nom +actinian actinian nom +actinians actinian nom +actinias actinia nom +actinism actinism nom +actinisms actinism nom +actinium actinium nom +actiniums actinium nom +actinolite actinolite nom +actinolites actinolite nom +actinometer actinometer nom +actinometers actinometer nom +actinometries actinometry nom +actinometry actinometry nom +actinomycete actinomycete nom +actinomycetes actinomycete nom +actinomycin actinomycin nom +actinomycins actinomycin nom +actinomycoses actinomycosis nom +actinomycosis actinomycosis nom +actins actin nom +action action nom +actions action nom +activate activate ver +activated activate ver +activates activate ver +activating activate ver +activation activation nom +activations activation nom +activator activator nom +activators activator nom +active active nom +activeness activeness nom +activenesses activeness nom +actives active nom +activism activism nom +activisms activism nom +activist activist nom +activists activist nom +activities activity nom +activity activity nom +actomyosin actomyosin nom +actomyosins actomyosin nom +actor actor nom +actors actor nom +actress actress nom +actresses actress nom +acts act nom +actual actual nom +actualisation actualisation nom +actualisations actualisation nom +actualities actuality nom +actuality actuality nom +actualization actualization nom +actualizations actualization nom +actualize actualize ver +actualized actualize ver +actualizes actualize ver +actualizing actualize ver +actually actually sw +actuals actual nom +actuaries actuary nom +actuary actuary nom +actuate actuate ver +actuated actuate ver +actuates actuate ver +actuating actuate ver +actuation actuation nom +actuations actuation nom +actuator actuator nom +actuators actuator nom +acuities acuity nom +acuity acuity nom +aculei aculeus nom +aculeus aculeus nom +acumen acumen nom +acumens acumen nom +acuminate acuminate ver +acuminated acuminate ver +acuminates acuminate ver +acuminating acuminate ver +acupressure acupressure nom +acupressures acupressure nom +acupuncture acupuncture nom +acupunctured acupuncture ver +acupunctures acupuncture nom +acupuncturing acupuncture ver +acupuncturist acupuncturist nom +acupuncturists acupuncturist nom +acute acute adj +acuteness acuteness nom +acutenesses acuteness nom +acuter acute adj +acutes acute nom +acutest acute adj +acyclovir acyclovir nom +acyclovirs acyclovir nom +ad ad nom +adage adage nom +adages adage nom +adagio adagio nom +adagios adagio nom +adamance adamance nom +adamances adamance nom +adamant adamant nom +adamants adamant nom +adapt adapt ver +adaptabilities adaptability nom +adaptability adaptability nom +adaptation adaptation nom +adaptations adaptation nom +adapted adapt ver +adapter adapter nom +adapters adapter nom +adapting adapt ver +adaptor adaptor nom +adaptors adaptor nom +adapts adapt ver +add add ver +addax addax nom +addaxes addax nom +added add ver +addend addend nom +addenda addendum nom +addends addend nom +addendum addendum nom +adder adder nom +adders adder nom +addict addict nom +addicted addict ver +addicting addict ver +addiction addiction nom +addictions addiction nom +addicts addict nom +adding add ver +addition addition nom +additions addition nom +additive additive nom +additives additive nom +addle addle ver +addled addle ver +addles addle ver +addling addle ver +address address nom +addressed address ver +addressee addressee nom +addressees addressee nom +addresses address nom +addressing address ver +adds add ver +adduce adduce ver +adduced adduce ver +adduces adduce ver +adducing adduce ver +adduct adduct ver +adducted adduct ver +adducting adduct ver +adduction adduction nom +adductions adduction nom +adductor adductor nom +adductors adductor nom +adducts adduct ver +adenine adenine nom +adenines adenine nom +adenitis adenitis nom +adenitises adenitis nom +adenocarcinoma adenocarcinoma nom +adenocarcinomas adenocarcinoma nom +adenohypophyses adenohypophysis nom +adenohypophysis adenohypophysis nom +adenoid adenoid nom +adenoidectomies adenoidectomy nom +adenoidectomy adenoidectomy nom +adenoids adenoid nom +adenoma adenoma nom +adenomas adenoma nom +adenoses adenosis nom +adenosine adenosine nom +adenosines adenosine nom +adenosis adenosis nom +adenovirus adenovirus nom +adenoviruses adenovirus nom +adept adept adj +adepter adept adj +adeptest adept adj +adeptness adeptness nom +adeptnesses adeptness nom +adepts adept nom +adequacies adequacy nom +adequacy adequacy nom +adequateness adequateness nom +adequatenesses adequateness nom +adhere adhere ver +adhered adhere ver +adherence adherence nom +adherences adherence nom +adherent adherent nom +adherents adherent nom +adheres adhere ver +adhering adhere ver +adhesion adhesion nom +adhesions adhesion nom +adhesive adhesive nom +adhesiveness adhesiveness nom +adhesivenesses adhesiveness nom +adhesives adhesive nom +adieu adieu nom +adieus adieu nom +adipose adipose nom +adiposeness adiposeness nom +adiposenesses adiposeness nom +adiposes adipose nom +adiposis adiposis nom +adiposities adiposity nom +adiposity adiposity nom +adit adit nom +adits adit nom +adjacencies adjacency nom +adjacency adjacency nom +adjective adjective nom +adjectives adjective nom +adjoin adjoin ver +adjoined adjoin ver +adjoining adjoin ver +adjoins adjoin ver +adjourn adjourn ver +adjourned adjourn ver +adjourning adjourn ver +adjournment adjournment nom +adjournments adjournment nom +adjourns adjourn ver +adjudge adjudge ver +adjudged adjudge ver +adjudges adjudge ver +adjudging adjudge ver +adjudicate adjudicate ver +adjudicated adjudicate ver +adjudicates adjudicate ver +adjudicating adjudicate ver +adjudication adjudication nom +adjudications adjudication nom +adjudicator adjudicator nom +adjudicators adjudicator nom +adjunct adjunct nom +adjunction adjunction nom +adjunctions adjunction nom +adjuncts adjunct nom +adjuration adjuration nom +adjurations adjuration nom +adjure adjure ver +adjured adjure ver +adjures adjure ver +adjuring adjure ver +adjust adjust ver +adjusted adjust ver +adjuster adjuster nom +adjusters adjuster nom +adjusting adjust ver +adjustment adjustment nom +adjustments adjustment nom +adjustor adjustor nom +adjustors adjustor nom +adjusts adjust ver +adjutant adjutant nom +adjutants adjutant nom +adjuvant adjuvant nom +adjuvants adjuvant nom +adman adman nom +admass admass nom +admasses admass nom +admeasure admeasure ver +admeasured admeasure ver +admeasures admeasure ver +admeasuring admeasure ver +admen adman nom +administer administer ver +administered administer ver +administering administer ver +administers administer ver +administrate administrate ver +administrated administrate ver +administrates administrate ver +administrating administrate ver +administration administration nom +administrations administration nom +administrator administrator nom +administrators administrator nom +admirabilities admirability nom +admirability admirability nom +admirableness admirableness nom +admirablenesses admirableness nom +admiral admiral nom +admirals admiral nom +admiralties admiralty nom +admiralty admiralty nom +admiration admiration nom +admirations admiration nom +admire admire ver +admired admire ver +admirer admirer nom +admirers admirer nom +admires admire ver +admiring admire ver +admissibilities admissibility nom +admissibility admissibility nom +admission admission nom +admissions admission nom +admit admit ver +admits admit ver +admittance admittance nom +admittances admittance nom +admitted admit ver +admitting admit ver +admix admix ver +admixed admix ver +admixes admix ver +admixing admix ver +admixture admixture nom +admixtures admixture nom +admonish admonish ver +admonished admonish ver +admonisher admonisher nom +admonishers admonisher nom +admonishes admonish ver +admonishing admonish ver +admonishment admonishment nom +admonishments admonishment nom +admonition admonition nom +admonitions admonition nom +adnoun adnoun nom +adnouns adnoun nom +ado ado nom +adobe adobe nom +adobes adobe nom +adobo adobo nom +adobos adobo nom +adolescence adolescence nom +adolescences adolescence nom +adolescent adolescent nom +adolescents adolescent nom +adonis adonis nom +adonises adonis nom +adopt adopt ver +adopted adopt ver +adopter adopter nom +adopters adopter nom +adopting adopt ver +adoption adoption nom +adoptions adoption nom +adopts adopt ver +adorabilities adorability nom +adorability adorability nom +adorableness adorableness nom +adorablenesses adorableness nom +adoration adoration nom +adorations adoration nom +adore adore ver +adored adore ver +adorer adorer nom +adorers adorer nom +adores adore ver +adoring adore ver +adorn adorn ver +adorned adorn ver +adorning adorn ver +adornment adornment nom +adornments adornment nom +adorns adorn ver +ados ado nom +adrenal adrenal nom +adrenalectomies adrenalectomy nom +adrenalectomy adrenalectomy nom +adrenalin adrenalin nom +adrenaline adrenaline nom +adrenalines adrenaline nom +adrenalins adrenalin nom +adrenals adrenal nom +adrenocorticotrophin adrenocorticotrophin nom +adrenocorticotrophins adrenocorticotrophin nom +adrenocorticotropin adrenocorticotropin nom +adrenocorticotropins adrenocorticotropin nom +adroit adroit adj +adroiter adroit adj +adroitest adroit adj +adroitness adroitness nom +adroitnesses adroitness nom +ads ad nom +adsorb adsorb ver +adsorbate adsorbate nom +adsorbates adsorbate nom +adsorbed adsorb ver +adsorbent adsorbent nom +adsorbents adsorbent nom +adsorbing adsorb ver +adsorbs adsorb ver +adsorption adsorption nom +adsorptions adsorption nom +adulate adulate ver +adulated adulate ver +adulates adulate ver +adulating adulate ver +adulation adulation nom +adulations adulation nom +adulator adulator nom +adulators adulator nom +adult adult nom +adulterant adulterant nom +adulterants adulterant nom +adulterate adulterate ver +adulterated adulterate ver +adulterates adulterate ver +adulterating adulterate ver +adulteration adulteration nom +adulterations adulteration nom +adulterer adulterer nom +adulterers adulterer nom +adulteress adulteress nom +adulteresses adulteress nom +adulteries adultery nom +adultery adultery nom +adulthood adulthood nom +adulthoods adulthood nom +adults adult nom +adumbrate adumbrate ver +adumbrated adumbrate ver +adumbrates adumbrate ver +adumbrating adumbrate ver +adumbration adumbration nom +adumbrations adumbration nom +advance advance nom +advanced advance ver +advancement advancement nom +advancements advancement nom +advances advance nom +advancing advance ver +advantage advantage nom +advantaged advantage ver +advantageousness advantageousness nom +advantageousnesses advantageousness nom +advantages advantage nom +advantaging advantage ver +advection advection nom +advections advection nom +advent advent nom +adventitia adventitia nom +adventitias adventitia nom +advents advent nom +adventure adventure nom +adventured adventure ver +adventurer adventurer nom +adventurers adventurer nom +adventures adventure nom +adventuress adventuress nom +adventuresses adventuress nom +adventuring adventure ver +adventurism adventurism nom +adventurisms adventurism nom +adventurousness adventurousness nom +adventurousnesses adventurousness nom +adverb adverb nom +adverbial adverbial nom +adverbials adverbial nom +adverbs adverb nom +adversaries adversary nom +adversary adversary nom +adverse adverse adj +adverseness adverseness nom +adversenesses adverseness nom +adverser adverse adj +adversest adverse adj +adversities adversity nom +adversity adversity nom +advert advert nom +adverted advert ver +advertence advertence nom +advertences advertence nom +advertencies advertency nom +advertency advertency nom +adverting advert ver +advertise advertise ver +advertised advertise ver +advertisement advertisement nom +advertisements advertisement nom +advertiser advertiser nom +advertisers advertiser nom +advertises advertise ver +advertising advertise ver +advertisings advertising nom +advertize advertize ver +advertized advertize ver +advertizement advertizement nom +advertizements advertizement nom +advertizes advertize ver +advertizing advertize ver +advertorial advertorial nom +advertorials advertorial nom +adverts advert nom +advice advice nom +advices advice nom +advisabilities advisability nom +advisability advisability nom +advise advise ver +advised advise ver +advisee advisee nom +advisees advisee nom +advisement advisement nom +advisements advisement nom +adviser adviser nom +advisers adviser nom +advises advise ver +advising advise ver +advisor advisor nom +advisories advisory nom +advisors advisor nom +advisory advisory nom +advocacies advocacy nom +advocacy advocacy nom +advocate advocate nom +advocated advocate ver +advocates advocate nom +advocating advocate ver +advowson advowson nom +advowsons advowson nom +adynamia adynamia nom +adynamias adynamia nom +adz adz nom +adze adze nom +adzed adz ver +adzes adz nom +adzing adz ver +aecia aecium nom +aeciospore aeciospore nom +aeciospores aeciospore nom +aecium aecium nom +aegis aegis nom +aegises aegis nom +aeon aeon nom +aeons aeon nom +aepyornis aepyornis nom +aepyornises aepyornis nom +aerate aerate ver +aerated aerate ver +aerates aerate ver +aerating aerate ver +aeration aeration nom +aerations aeration nom +aerator aerator nom +aerators aerator nom +aerial aerial nom +aerialist aerialist nom +aerialists aerialist nom +aerials aerial nom +aerie aerie nom +aerier aery adj +aeries aerie nom +aeriest aery adj +aerified aerify ver +aerifies aerify ver +aerify aerify ver +aerifying aerify ver +aerobe aerobe nom +aerobes aerobe nom +aerobioses aerobiosis nom +aerobiosis aerobiosis nom +aerodrome aerodrome nom +aerodromes aerodrome nom +aeroembolism aeroembolism nom +aeroembolisms aeroembolism nom +aerofoil aerofoil nom +aerofoils aerofoil nom +aerogram aerogram nom +aerogramme aerogramme nom +aerogrammes aerogramme nom +aerograms aerogram nom +aerolite aerolite nom +aerolites aerolite nom +aerologies aerology nom +aerology aerology nom +aeromedicine aeromedicine nom +aeromedicines aeromedicine nom +aeronaut aeronaut nom +aeronauts aeronaut nom +aerophagia aerophagia nom +aerophagias aerophagia nom +aerophyte aerophyte nom +aerophytes aerophyte nom +aeroplane aeroplane nom +aeroplanes aeroplane nom +aerosol aerosol nom +aerosolize aerosolize ver +aerosolized aerosolize ver +aerosolizes aerosolize ver +aerosolizing aerosolize ver +aerosols aerosol nom +aerospace aerospace nom +aerospaces aerospace nom +aery aery adj +aesthete aesthete nom +aesthetes aesthete nom +aesthetic aesthetic nom +aesthetician aesthetician nom +aestheticians aesthetician nom +aestheticism aestheticism nom +aestheticisms aestheticism nom +aesthetics aesthetic nom +aestivate aestivate ver +aestivated aestivate ver +aestivates aestivate ver +aestivating aestivate ver +aestivation aestivation nom +aestivations aestivation nom +aether aether nom +aethers aether nom +aetiologies aetiology nom +aetiology aetiology nom +afar afar nom +afars afar nom +affabilities affability nom +affability affability nom +affable affable adj +affabler affable adj +affablest affable adj +affair affair nom +affaire affaire nom +affaires affaire nom +affairs affair nom +affect affect nom +affectation affectation nom +affectations affectation nom +affected affect ver +affectedness affectedness nom +affectednesses affectedness nom +affecting affect ver +affection affection nom +affectionateness affectionateness nom +affectionatenesses affectionateness nom +affections affection nom +affects affect nom +affenpinscher affenpinscher nom +affenpinschers affenpinscher nom +afferent afferent nom +afferents afferent nom +affiance affiance nom +affianced affiance ver +affiances affiance nom +affiancing affiance ver +afficionado afficionado nom +afficionados afficionado nom +affidavit affidavit nom +affidavits affidavit nom +affiliate affiliate nom +affiliated affiliate ver +affiliates affiliate nom +affiliating affiliate ver +affiliation affiliation nom +affiliations affiliation nom +affinities affinity nom +affinity affinity nom +affirm affirm ver +affirmation affirmation nom +affirmations affirmation nom +affirmative affirmative nom +affirmatives affirmative nom +affirmed affirm ver +affirming affirm ver +affirms affirm ver +affix affix nom +affixation affixation nom +affixations affixation nom +affixed affix ver +affixes affix nom +affixing affix ver +afflatus afflatus nom +afflatuses afflatus nom +afflict afflict ver +afflicted afflict ver +afflicting afflict ver +affliction affliction nom +afflictions affliction nom +afflicts afflict ver +affluence affluence nom +affluences affluence nom +affluent affluent nom +affluents affluent nom +afford afford ver +afforded afford ver +affording afford ver +affords afford ver +afforest afforest ver +afforestation afforestation nom +afforestations afforestation nom +afforested afforest ver +afforesting afforest ver +afforests afforest ver +affranchise affranchise ver +affranchised affranchise ver +affranchises affranchise ver +affranchising affranchise ver +affray affray nom +affrayed affray ver +affraying affray ver +affrays affray nom +affricate affricate nom +affricates affricate nom +affrication affrication nom +affrications affrication nom +affricative affricative nom +affricatives affricative nom +affright affright ver +affrighted affright ver +affrighting affright ver +affrights affright ver +affront affront nom +affronted affront ver +affronting affront ver +affronts affront nom +affusion affusion nom +affusions affusion nom +afghan afghan nom +afghani afghani nom +afghanis afghani nom +afghans afghan nom +aficionado aficionado nom +aficionados aficionado nom +aforethought aforethought nom +aforethoughts aforethought nom +after after sw +afterbirth afterbirth nom +afterbirths afterbirth nom +afterburner afterburner nom +afterburners afterburner nom +aftercare aftercare nom +aftercares aftercare nom +afterdamp afterdamp nom +afterdamps afterdamp nom +afterdeck afterdeck nom +afterdecks afterdeck nom +aftereffect aftereffect nom +aftereffects aftereffect nom +afterglow afterglow nom +afterglows afterglow nom +afterimage afterimage nom +afterimages afterimage nom +afterlife afterlife nom +afterlives afterlife nom +aftermath aftermath nom +aftermaths aftermath nom +afternoon afternoon nom +afternoons afternoon nom +afterpiece afterpiece nom +afterpieces afterpiece nom +aftersensation aftersensation nom +aftersensations aftersensation nom +aftershaft aftershaft nom +aftershafts aftershaft nom +aftershave aftershave nom +aftershaves aftershave nom +aftershock aftershock nom +aftershocks aftershock nom +aftertaste aftertaste nom +aftertastes aftertaste nom +afterthought afterthought nom +afterthoughts afterthought nom +afterwards afterwards sw +afterword afterword nom +afterwords afterword nom +afterworld afterworld nom +afterworlds afterworld nom +again again sw +against against sw +agama agama nom +agamas agama nom +agamid agamid nom +agamids agamid nom +agammaglobulinemia agammaglobulinemia nom +agammaglobulinemias agammaglobulinemia nom +agamogeneses agamogenesis nom +agamogenesis agamogenesis nom +agapae agape nom +agapanthus agapanthus nom +agapanthuses agapanthus nom +agape agape nom +agar agar nom +agaric agaric nom +agarics agaric nom +agars agar nom +agate agate nom +agates agate nom +agateware agateware nom +agatewares agateware nom +agave agave nom +agaves agave nom +age age nom +aged age ver +agedness agedness nom +agednesses agedness nom +ageing ageing nom +ageings ageing nom +ageism ageism nom +ageisms ageism nom +ageist ageist nom +ageists ageist nom +agelessness agelessness nom +agelessnesses agelessness nom +agencies agency nom +agency agency nom +agenda agenda nom +agendas agenda nom +agendum agendum nom +agendums agendum nom +ageneses agenesis nom +agenesia agenesia nom +agenesias agenesia nom +agenesis agenesis nom +agenize agenize ver +agenized agenize ver +agenizes agenize ver +agenizing agenize ver +agent agent nom +agented agent ver +agenting agent ver +agents agent nom +ageratum ageratum nom +ages age nom +agglomerate agglomerate nom +agglomerated agglomerate ver +agglomerates agglomerate nom +agglomerating agglomerate ver +agglomeration agglomeration nom +agglomerations agglomeration nom +agglutinate agglutinate ver +agglutinated agglutinate ver +agglutinates agglutinate ver +agglutinating agglutinate ver +agglutination agglutination nom +agglutinations agglutination nom +agglutinin agglutinin nom +agglutinins agglutinin nom +agglutinogen agglutinogen nom +agglutinogens agglutinogen nom +aggrade aggrade ver +aggraded aggrade ver +aggrades aggrade ver +aggrading aggrade ver +aggrandisement aggrandisement nom +aggrandisements aggrandisement nom +aggrandize aggrandize ver +aggrandized aggrandize ver +aggrandizement aggrandizement nom +aggrandizements aggrandizement nom +aggrandizes aggrandize ver +aggrandizing aggrandize ver +aggravate aggravate ver +aggravated aggravate ver +aggravates aggravate ver +aggravating aggravate ver +aggravation aggravation nom +aggravations aggravation nom +aggregate aggregate nom +aggregated aggregate ver +aggregates aggregate nom +aggregating aggregate ver +aggregation aggregation nom +aggregations aggregation nom +aggress aggress ver +aggressed aggress ver +aggresses aggress ver +aggressing aggress ver +aggression aggression nom +aggressions aggression nom +aggressiveness aggressiveness nom +aggressivenesses aggressiveness nom +aggressor aggressor nom +aggressors aggressor nom +aggrieve aggrieve ver +aggrieved aggrieve ver +aggrieves aggrieve ver +aggrieving aggrieve ver +aggro aggro nom +aggros aggro nom +agile agile adj +agiler agile adj +agilest agile adj +agilities agility nom +agility agility nom +aging age ver +agings aging nom +agio agio nom +agios agio nom +agiotage agiotage nom +agiotages agiotage nom +agism agism nom +agisms agism nom +agitate agitate ver +agitated agitate ver +agitates agitate ver +agitating agitate ver +agitation agitation nom +agitations agitation nom +agitator agitator nom +agitators agitator nom +agitprop agitprop nom +agitprops agitprop nom +aglet aglet nom +aglets aglet nom +agnail agnail nom +agnails agnail nom +agnate agnate nom +agnates agnate nom +agnation agnation nom +agnations agnation nom +agnise agnise ver +agnised agnise ver +agnises agnise ver +agnising agnise ver +agnize agnize ver +agnized agnize ver +agnizes agnize ver +agnizing agnize ver +agnosia agnosia nom +agnosias agnosia nom +agnostic agnostic nom +agnosticism agnosticism nom +agnosticisms agnosticism nom +agnostics agnostic nom +agonies agony nom +agonise agonise ver +agonised agonise ver +agonises agonise ver +agonising agonise ver +agonist agonist nom +agonists agonist nom +agonize agonize ver +agonized agonize ver +agonizes agonize ver +agonizing agonize ver +agony agony nom +agora agora nom +agoraphobia agoraphobia nom +agoraphobias agoraphobia nom +agoraphobic agoraphobic nom +agoraphobics agoraphobic nom +agoras agora nom +agouti agouti nom +agoutis agouti nom +agranulocytoses agranulocytosis nom +agranulocytosis agranulocytosis nom +agraphia agraphia nom +agraphias agraphia nom +agrarian agrarian nom +agrarianism agrarianism nom +agrarianisms agrarianism nom +agrarians agrarian nom +agree agree ver +agreeabilities agreeability nom +agreeability agreeability nom +agreeableness agreeableness nom +agreeablenesses agreeableness nom +agreed agree ver +agreeing agree ver +agreement agreement nom +agreements agreement nom +agrees agree ver +agribusiness agribusiness nom +agribusinesses agribusiness nom +agriculturalist agriculturalist nom +agriculturalists agriculturalist nom +agriculture agriculture nom +agricultures agriculture nom +agriculturist agriculturist nom +agriculturists agriculturist nom +agrimonies agrimony nom +agrimony agrimony nom +agrobiologies agrobiology nom +agrobiology agrobiology nom +agrologies agrology nom +agrology agrology nom +agronomies agronomy nom +agronomist agronomist nom +agronomists agronomist nom +agronomy agronomy nom +agrypnia agrypnia nom +agrypnias agrypnia nom +ague ague nom +agues ague nom +agueweed agueweed nom +agueweeds agueweed nom +ai ai nom +aid aid nom +aide aide nom +aided aid ver +aides aide nom +aiding aid ver +aids aid nom +aiglet aiglet nom +aiglets aiglet nom +aigret aigret nom +aigrets aigret nom +aigrette aigrette nom +aigrettes aigrette nom +aikido aikido nom +aikidos aikido nom +ail ail nom +ailanthus ailanthus nom +ailanthuses ailanthus nom +ailed ail ver +aileron aileron nom +ailerons aileron nom +ailing ail ver +ailment ailment nom +ailments ailment nom +ails ail nom +ailurophobia ailurophobia nom +ailurophobias ailurophobia nom +aim aim nom +aimed aim ver +aiming aim ver +aimlessness aimlessness nom +aimlessnesses aimlessness nom +aims aim nom +ain_t ain_t sw +aioli aioli nom +aiolis aioli nom +air air adj +airbag airbag nom +airbags airbag nom +airbase airbase nom +airbases airbase nom +airbrush airbrush nom +airbrushed airbrush ver +airbrushes airbrush nom +airbrushing airbrush ver +airbus airbus nom +airbuses airbus nom +aircraft aircraft nom +aircraftman aircraftman nom +aircraftmen aircraftman nom +aircrew aircrew nom +aircrews aircrew nom +airdrome airdrome nom +airdromes airdrome nom +airdrop airdrop nom +airdropped airdrop ver +airdropping airdrop ver +airdrops airdrop nom +aired air ver +airer air adj +airest air adj +airfare airfare nom +airfares airfare nom +airfield airfield nom +airfields airfield nom +airflow airflow nom +airflows airflow nom +airfoil airfoil nom +airfoils airfoil nom +airframe airframe nom +airframes airframe nom +airfreight airfreight nom +airfreighted airfreight ver +airfreighting airfreight ver +airfreights airfreight nom +airhead airhead nom +airheads airhead nom +airier airy adj +airiest airy adj +airiness airiness nom +airinesses airiness nom +airing air ver +airings airing nom +airlessness airlessness nom +airlessnesses airlessness nom +airlift airlift nom +airlifted airlift ver +airlifting airlift ver +airlifts airlift nom +airline airline nom +airliner airliner nom +airliners airliner nom +airlines airline nom +airlock airlock nom +airlocks airlock nom +airmail airmail nom +airmailed airmail ver +airmailing airmail ver +airmails airmail nom +airman airman nom +airmanship airmanship nom +airmanships airmanship nom +airmen airman nom +airplane airplane nom +airplanes airplane nom +airplay airplay nom +airplays airplay nom +airport airport nom +airports airport nom +airpost airpost nom +airposts airpost nom +airs air nom +airscrew airscrew nom +airscrews airscrew nom +airship airship nom +airships airship nom +airsickness airsickness nom +airsicknesses airsickness nom +airspace airspace nom +airspaces airspace nom +airspeed airspeed nom +airspeeds airspeed nom +airstream airstream nom +airstreams airstream nom +airstrike airstrike nom +airstrikes airstrike nom +airstrip airstrip nom +airstrips airstrip nom +airt airt ver +airted airt ver +airting airt ver +airts airt ver +airwave airwave nom +airwaves airwave nom +airway airway nom +airways airway nom +airwoman airwoman nom +airwomen airwoman nom +airworthier airworthy adj +airworthiest airworthy adj +airworthiness airworthiness nom +airworthinesses airworthiness nom +airworthy airworthy adj +airy airy adj +ais ai nom +aisle aisle nom +aisles aisle nom +aitch aitch nom +aitchbone aitchbone nom +aitchbones aitchbone nom +aitches aitch nom +akaryote akaryote nom +akaryotes akaryote nom +akee akee nom +akees akee nom +akinesia akinesia nom +akinesias akinesia nom +akvavit akvavit nom +akvavits akvavit nom +ala ala nom +alabaster alabaster nom +alabasters alabaster nom +alacrities alacrity nom +alacrity alacrity nom +alanine alanine nom +alanines alanine nom +alarm alarm nom +alarmed alarm ver +alarming alarm ver +alarmism alarmism nom +alarmisms alarmism nom +alarmist alarmist nom +alarmists alarmist nom +alarms alarm nom +alarum alarum nom +alarums alarum nom +alas ala nom +alb alb nom +albacore albacore nom +albatross albatross nom +albedo albedo nom +albedoes albedo nom +albinism albinism nom +albinisms albinism nom +albino albino nom +albinos albino nom +albite albite nom +albites albite nom +albizia albizia nom +albizias albizia nom +albizzia albizzia nom +albizzias albizzia nom +albs alb nom +album album nom +albumen albumen nom +albumens albumen nom +albumin albumin nom +albuminoid albuminoid nom +albuminoids albuminoid nom +albumins albumin nom +albuminuria albuminuria nom +albuminurias albuminuria nom +albums album nom +alcahest alcahest nom +alcahests alcahest nom +alcazar alcazar nom +alcazars alcazar nom +alchemies alchemy nom +alchemist alchemist nom +alchemists alchemist nom +alchemize alchemize ver +alchemized alchemize ver +alchemizes alchemize ver +alchemizing alchemize ver +alchemy alchemy nom +alcohol alcohol nom +alcoholic alcoholic nom +alcoholics alcoholic nom +alcoholism alcoholism nom +alcoholisms alcoholism nom +alcoholize alcoholize ver +alcoholized alcoholize ver +alcoholizes alcoholize ver +alcoholizing alcoholize ver +alcohols alcohol nom +alcove alcove nom +alcoves alcove nom +aldehyde aldehyde nom +aldehydes aldehyde nom +alder alder nom +alderflies alderfly nom +alderfly alderfly nom +alderman alderman nom +aldermen alderman nom +alders alder nom +alderwoman alderwoman nom +alderwomen alderwoman nom +aldol aldol nom +aldols aldol nom +aldose aldose nom +aldoses aldose nom +aldosterone aldosterone nom +aldosterones aldosterone nom +aldosteronism aldosteronism nom +aldosteronisms aldosteronism nom +ale ale nom +alecost alecost nom +alecosts alecost nom +alehouse alehouse nom +alehouses alehouse nom +alembic alembic nom +alembics alembic nom +aleph aleph nom +alephs aleph nom +alert alert adj +alerted alert ver +alerter alert adj +alertest alert adj +alerting alert ver +alertness alertness nom +alertnesses alertness nom +alerts alert nom +ales ale nom +aleurone aleurone nom +aleurones aleurone nom +alewife alewife nom +alewives alewife nom +alexandrite alexandrite nom +alexandrites alexandrite nom +alexia alexia nom +alexias alexia nom +alfalfa alfalfa nom +alfalfas alfalfa nom +alfilaria alfilaria nom +alfilarias alfilaria nom +alfileria alfileria nom +alfilerias alfileria nom +alga alga nom +algae alga nom +algarroba algarroba nom +algarrobas algarroba nom +algebra algebra nom +algebraist algebraist nom +algebraists algebraist nom +algebras algebra nom +algin algin nom +algins algin nom +algometer algometer nom +algometers algometer nom +algometries algometry nom +algometry algometry nom +algophobia algophobia nom +algophobias algophobia nom +algorism algorism nom +algorisms algorism nom +algorithm algorithm nom +algorithms algorithm nom +alias alias nom +aliased alias ver +aliases alias nom +aliasing alias ver +alibi alibi nom +alibied alibi ver +alibiing alibi ver +alibis alibi nom +alien alien nom +alienage alienage nom +alienages alienage nom +alienate alienate ver +alienated alienate ver +alienates alienate ver +alienating alienate ver +alienation alienation nom +alienations alienation nom +aliened alien ver +aliening alien ver +alienism alienism nom +alienisms alienism nom +alienist alienist nom +alienists alienist nom +aliens alien nom +alight alight ver +alighted alight ver +alighting alight ver +alights alight ver +align align ver +aligned align ver +aligner aligner nom +aligners aligner nom +aligning align ver +alignment alignment nom +alignments alignment nom +aligns align ver +alikeness alikeness nom +alikenesses alikeness nom +aliment aliment nom +alimentation alimentation nom +alimentations alimentation nom +alimented aliment ver +alimenting aliment ver +aliments aliment nom +alimonies alimony nom +alimony alimony nom +aline aline ver +alined aline ver +alinement alinement nom +alinements alinement nom +alines aline ver +alining aline ver +aliquot aliquot nom +aliquots aliquot nom +aliterate aliterate nom +aliterates aliterate nom +aliveness aliveness nom +alivenesses aliveness nom +aliyah aliyah nom +aliyahs aliyah nom +alizarin alizarin nom +alizarine alizarine nom +alizarines alizarine nom +alizarins alizarin nom +alkahest alkahest nom +alkahests alkahest nom +alkali alkali nom +alkalies alkali nom +alkalified alkalify ver +alkalifies alkalify ver +alkalify alkalify ver +alkalifying alkalify ver +alkalimetries alkalimetry nom +alkalimetry alkalimetry nom +alkalinities alkalinity nom +alkalinity alkalinity nom +alkalinize alkalinize ver +alkalinized alkalinize ver +alkalinizes alkalinize ver +alkalinizing alkalinize ver +alkalize alkalize ver +alkalized alkalize ver +alkalizes alkalize ver +alkalizing alkalize ver +alkaloid alkaloid nom +alkaloids alkaloid nom +alkaloses alkalosis nom +alkalosis alkalosis nom +alkane alkane nom +alkanes alkane nom +alkanet alkanet nom +alkanets alkanet nom +alkene alkene nom +alkenes alkene nom +alkyd alkyd nom +alkyds alkyd nom +alkyl alkyl nom +alkyls alkyl nom +all all sw +allamanda allamanda nom +allamandas allamanda nom +allantois allantois nom +allantoises allantois nom +allay allay ver +allayed allay ver +allaying allay ver +allays allay ver +allegation allegation nom +allegations allegation nom +allege allege ver +alleged allege ver +alleges allege ver +allegiance allegiance nom +allegiances allegiance nom +alleging allege ver +allegories allegory nom +allegorist allegorist nom +allegorists allegorist nom +allegorize allegorize ver +allegorized allegorize ver +allegorizes allegorize ver +allegorizing allegorize ver +allegory allegory nom +allegretto allegretto nom +allegrettos allegretto nom +allegro allegro nom +allegros allegro nom +allele allele nom +alleles allele nom +allelomorph allelomorph nom +allelomorphs allelomorph nom +alleluia alleluia nom +alleluias alleluia nom +allemande allemande nom +allemandes allemande nom +allergen allergen nom +allergens allergen nom +allergies allergy nom +allergist allergist nom +allergists allergist nom +allergy allergy nom +alleviate alleviate ver +alleviated alleviate ver +alleviates alleviate ver +alleviating alleviate ver +alleviation alleviation nom +alleviations alleviation nom +alley alley nom +alleys alley nom +alleyway alleyway nom +alleyways alleyway nom +alliance alliance nom +alliances alliance nom +allice allice nom +allices allice nom +allied ally ver +allies ally nom +alligator alligator nom +alligatored alligator ver +alligatorfish alligatorfish nom +alligatoring alligator ver +alligators alligator nom +allis allis nom +allises allis nom +alliterate alliterate ver +alliterated alliterate ver +alliterates alliterate ver +alliterating alliterate ver +alliteration alliteration nom +alliterations alliteration nom +allocate allocate ver +allocated allocate ver +allocates allocate ver +allocating allocate ver +allocation allocation nom +allocations allocation nom +allogamies allogamy nom +allogamy allogamy nom +allograft allograft nom +allografts allograft nom +allograph allograph nom +allographs allograph nom +allomerism allomerism nom +allomerisms allomerism nom +allometries allometry nom +allometry allometry nom +allomorph allomorph nom +allomorphs allomorph nom +allopathies allopathy nom +allopathy allopathy nom +allophone allophone nom +allophones allophone nom +allopurinol allopurinol nom +allopurinols allopurinol nom +allosaur allosaur nom +allosaurs allosaur nom +allosaurus allosaurus nom +allosauruses allosaurus nom +allot allot ver +allotment allotment nom +allotments allotment nom +allotrope allotrope nom +allotropes allotrope nom +allotropies allotropy nom +allotropism allotropism nom +allotropisms allotropism nom +allotropy allotropy nom +allots allot ver +allotted allot ver +allotting allot ver +allover allover nom +allovers allover nom +allow allow sw +allowance allowance nom +allowanced allowance ver +allowances allowance nom +allowancing allowance ver +allowed allow ver +allowing allow ver +allows allows sw +alloy alloy nom +alloyed alloy ver +alloying alloy ver +alloys alloy nom +alls alls nom +allspice allspice nom +allspices allspice nom +allude allude ver +alluded allude ver +alludes allude ver +alluding allude ver +allure allure nom +allured allure ver +allurement allurement nom +allurements allurement nom +allures allure nom +alluring allure ver +allusion allusion nom +allusions allusion nom +allusiveness allusiveness nom +allusivenesses allusiveness nom +alluvial alluvial nom +alluvials alluvial nom +alluvion alluvion nom +alluvions alluvion nom +alluvium alluvium nom +alluviums alluvium nom +ally ally nom +allying ally ver +allyl allyl nom +allyls allyl nom +almanac almanac nom +almanacs almanac nom +almandine almandine nom +almandines almandine nom +almandite almandite nom +almandites almandite nom +almond almond nom +almonds almond nom +almoner almoner nom +almoners almoner nom +almost almost sw +almsgiver almsgiver nom +almsgivers almsgiver nom +almshouse almshouse nom +almshouses almshouse nom +alnico alnico nom +alnicoes alnico nom +alnicos alnico nom +alocasia alocasia nom +alocasias alocasia nom +aloe aloe nom +aloes aloe nom +aloha aloha nom +alohas aloha nom +alone alone sw +aloneness aloneness nom +alonenesses aloneness nom +along along sw +aloofness aloofness nom +aloofnesses aloofness nom +alopecia alopecia nom +alopecias alopecia nom +alp alp nom +alpaca alpaca nom +alpacas alpaca nom +alpenstock alpenstock nom +alpenstocks alpenstock nom +alpha alpha nom +alphabet alphabet nom +alphabetization alphabetization nom +alphabetizations alphabetization nom +alphabetize alphabetize ver +alphabetized alphabetize ver +alphabetizer alphabetizer nom +alphabetizers alphabetizer nom +alphabetizes alphabetize ver +alphabetizing alphabetize ver +alphabets alphabet nom +alphas alpha nom +alpinist alpinist nom +alpinists alpinist nom +alps alp nom +already already sw +also also sw +alstroemeria alstroemeria nom +alstroemerias alstroemeria nom +altar altar nom +altarpiece altarpiece nom +altarpieces altarpiece nom +altars altar nom +altazimuth altazimuth nom +altazimuths altazimuth nom +alter alter ver +alterabilities alterability nom +alterability alterability nom +alteration alteration nom +alterations alteration nom +altercate altercate ver +altercated altercate ver +altercates altercate ver +altercating altercate ver +altercation altercation nom +altercations altercation nom +altered alter ver +altering alter ver +alternate alternate nom +alternated alternate ver +alternates alternate nom +alternating alternate ver +alternation alternation nom +alternations alternation nom +alternative alternative nom +alternatives alternative nom +alternator alternator nom +alternators alternator nom +alters alter ver +althaea althaea nom +althaeas althaea nom +althea althea nom +altheas althea nom +although although sw +altimeter altimeter nom +altimeters altimeter nom +altitude altitude nom +altitudes altitude nom +alto alto nom +altocumuli altocumulus nom +altocumulus altocumulus nom +altogether altogether nom +altogethers altogether nom +altos alto nom +altostrati altostratus nom +altostratus altostratus nom +altruism altruism nom +altruisms altruism nom +altruist altruist nom +altruists altruist nom +alula alula nom +alulas alula nom +alum alum nom +alumina alumina nom +aluminas alumina nom +aluminium aluminium nom +aluminiums aluminium nom +aluminize aluminize ver +aluminized aluminize ver +aluminizes aluminize ver +aluminizing aluminize ver +aluminum aluminum nom +aluminums aluminum nom +alumna alumna nom +alumnae alumna nom +alumni alumnus nom +alumnus alumnus nom +alumroot alumroot nom +alumroots alumroot nom +alums alum nom +alveolar alveolar nom +alveolars alveolar nom +alveoli alveolus nom +alveolus alveolus nom +always always sw +alyssum alyssum nom +alyssums alyssum nom +am am sw +amadavat amadavat nom +amadavats amadavat nom +amah amah nom +amahs amah nom +amalgam amalgam nom +amalgamate amalgamate ver +amalgamated amalgamate ver +amalgamates amalgamate ver +amalgamating amalgamate ver +amalgamation amalgamation nom +amalgamations amalgamation nom +amalgams amalgam nom +amanuenses amanuensis nom +amanuensis amanuensis nom +amaranth amaranth nom +amaranths amaranth nom +amarelle amarelle nom +amarelles amarelle nom +amaretto amaretto nom +amarettos amaretto nom +amaryllis amaryllis nom +amaryllises amaryllis nom +amass amass ver +amassed amass ver +amasses amass ver +amassing amass ver +amateur amateur nom +amateurishness amateurishness nom +amateurishnesses amateurishness nom +amateurism amateurism nom +amateurisms amateurism nom +amateurs amateur nom +amativeness amativeness nom +amativenesses amativeness nom +amauroses amaurosis nom +amaurosis amaurosis nom +amaze amaze nom +amazed amaze ver +amazement amazement nom +amazements amazement nom +amazes amaze nom +amazing amaze ver +amazon amazon nom +amazons amazon nom +ambassador ambassador nom +ambassadors ambassador nom +ambassadorship ambassadorship nom +ambassadorships ambassadorship nom +ambassadress ambassadress nom +ambassadresses ambassadress nom +amber amber nom +amberfish amberfish nom +ambergris ambergris nom +ambergrises ambergris nom +amberjack amberjack nom +amberjacks amberjack nom +ambers amber nom +ambiance ambiance nom +ambiances ambiance nom +ambidexterities ambidexterity nom +ambidexterity ambidexterity nom +ambience ambience nom +ambiences ambience nom +ambient ambient nom +ambients ambient nom +ambiguities ambiguity nom +ambiguity ambiguity nom +ambit ambit nom +ambition ambition nom +ambitioned ambition ver +ambitioning ambition ver +ambitions ambition nom +ambitiousness ambitiousness nom +ambitiousnesses ambitiousness nom +ambits ambit nom +ambivalence ambivalence nom +ambivalences ambivalence nom +ambivalencies ambivalency nom +ambivalency ambivalency nom +ambiversion ambiversion nom +ambiversions ambiversion nom +amble amble nom +ambled amble ver +ambler ambler nom +amblers ambler nom +ambles amble nom +ambling amble ver +amblygonite amblygonite nom +amblygonites amblygonite nom +amblyopia amblyopia nom +amblyopias amblyopia nom +ambo ambo nom +ambos ambo nom +amboyna amboyna nom +amboynas amboyna nom +ambrosia ambrosia nom +ambrosias ambrosia nom +ambulacra ambulacrum nom +ambulacrum ambulacrum nom +ambulance ambulance nom +ambulances ambulance nom +ambulate ambulate ver +ambulated ambulate ver +ambulates ambulate ver +ambulating ambulate ver +ambulation ambulation nom +ambulations ambulation nom +ambulatories ambulatory nom +ambulatory ambulatory nom +ambuscade ambuscade nom +ambuscaded ambuscade ver +ambuscades ambuscade nom +ambuscading ambuscade ver +ambush ambush nom +ambushed ambush ver +ambushes ambush nom +ambushing ambush ver +ameba ameba nom +amebas ameba nom +amebiases amebiasis nom +amebiasis amebiasis nom +ameer ameer nom +ameers ameer nom +ameliorate ameliorate ver +ameliorated ameliorate ver +ameliorates ameliorate ver +ameliorating ameliorate ver +amelioration amelioration nom +ameliorations amelioration nom +ameloblast ameloblast nom +ameloblasts ameloblast nom +amen amen adj +amenabilities amenability nom +amenability amenability nom +amenableness amenableness nom +amenablenesses amenableness nom +amend amend ver +amended amend ver +amending amend ver +amendment amendment nom +amendments amendment nom +amends amend ver +amener amen adj +amenest amen adj +amenities amenity nom +amenity amenity nom +amenorrhea amenorrhea nom +amenorrheas amenorrhea nom +amenorrhoea amenorrhoea nom +amenorrhoeas amenorrhoea nom +amens amen nom +ament ament nom +amentia amentia nom +amentias amentia nom +aments ament nom +amerce amerce ver +amerced amerce ver +amercement amercement nom +amercements amercement nom +amerces amerce ver +amercing amerce ver +americium americium nom +americiums americium nom +amethyst amethyst nom +amethysts amethyst nom +ametropia ametropia nom +ametropias ametropia nom +amiabilities amiability nom +amiability amiability nom +amiableness amiableness nom +amiablenesses amiableness nom +amicabilities amicability nom +amicability amicability nom +amicableness amicableness nom +amicablenesses amicableness nom +amide amide nom +amides amide nom +amigo amigo nom +amigos amigo nom +amine amine nom +amines amine nom +aminoaciduria aminoaciduria nom +aminoacidurias aminoaciduria nom +aminophylline aminophylline nom +aminophyllines aminophylline nom +aminopyrine aminopyrine nom +aminopyrines aminopyrine nom +amir amir nom +amirs amir nom +amities amity nom +amitoses amitosis nom +amitosis amitosis nom +amitriptyline amitriptyline nom +amitriptylines amitriptyline nom +amity amity nom +ammeter ammeter nom +ammeters ammeter nom +ammine ammine nom +ammines ammine nom +ammo ammo nom +ammonia ammonia nom +ammoniac ammoniac nom +ammoniacs ammoniac nom +ammonias ammonia nom +ammoniate ammoniate ver +ammoniated ammoniate ver +ammoniates ammoniate ver +ammoniating ammoniate ver +ammonification ammonification nom +ammonifications ammonification nom +ammonified ammonify ver +ammonifies ammonify ver +ammonify ammonify ver +ammonifying ammonify ver +ammonite ammonite nom +ammonites ammonite nom +ammonium ammonium nom +ammoniums ammonium nom +ammonoid ammonoid nom +ammonoids ammonoid nom +ammos ammo nom +ammunition ammunition nom +ammunitions ammunition nom +amnesia amnesia nom +amnesiac amnesiac nom +amnesiacs amnesiac nom +amnesias amnesia nom +amnesic amnesic nom +amnesics amnesic nom +amnestied amnesty ver +amnesties amnesty nom +amnesty amnesty nom +amnestying amnesty ver +amniocenteses amniocentesis nom +amniocentesis amniocentesis nom +amnion amnion nom +amnions amnion nom +amniote amniote nom +amniotes amniote nom +amobarbital amobarbital nom +amobarbitals amobarbital nom +amoeba amoeba nom +amoebas amoeba nom +amoebiases amoebiasis nom +amoebiasis amoebiasis nom +amok amok nom +amoks amok nom +among among sw +amongst amongst sw +amontillado amontillado nom +amontillados amontillado nom +amoralism amoralism nom +amoralisms amoralism nom +amoralist amoralist nom +amoralists amoralist nom +amoralities amorality nom +amorality amorality nom +amorist amorist nom +amorists amorist nom +amorousness amorousness nom +amorousnesses amorousness nom +amorphousness amorphousness nom +amorphousnesses amorphousness nom +amortisation amortisation nom +amortisations amortisation nom +amortise amortise ver +amortised amortise ver +amortises amortise ver +amortising amortise ver +amortization amortization nom +amortizations amortization nom +amortize amortize ver +amortized amortize ver +amortizes amortize ver +amortizing amortize ver +amount amount nom +amounted amount ver +amounting amount ver +amounts amount nom +amour amour nom +amours amour nom +amoxicillin amoxicillin nom +amoxicillins amoxicillin nom +amp amp nom +amperage amperage nom +amperages amperage nom +ampere ampere nom +amperes ampere nom +ampersand ampersand nom +ampersands ampersand nom +amphetamine amphetamine nom +amphetamines amphetamine nom +amphibian amphibian nom +amphibians amphibian nom +amphibole amphibole nom +amphiboles amphibole nom +amphibolite amphibolite nom +amphibolites amphibolite nom +amphibologies amphibology nom +amphibology amphibology nom +amphibrach amphibrach nom +amphibrachs amphibrach nom +amphictyonies amphictyony nom +amphictyony amphictyony nom +amphidiploid amphidiploid nom +amphidiploids amphidiploid nom +amphigories amphigory nom +amphigory amphigory nom +amphimixes amphimixis nom +amphimixis amphimixis nom +amphioxus amphioxus nom +amphioxuses amphioxus nom +amphipod amphipod nom +amphipods amphipod nom +amphisbaena amphisbaena nom +amphisbaenas amphisbaena nom +amphitheater amphitheater nom +amphitheaters amphitheater nom +amphitheatre amphitheatre nom +amphitheatres amphitheatre nom +amphora amphora nom +amphorae amphora nom +ampicillin ampicillin nom +ampicillins ampicillin nom +ample ample adj +ampleness ampleness nom +amplenesses ampleness nom +ampler ample adj +amplest ample adj +amplification amplification nom +amplifications amplification nom +amplified amplify ver +amplifier amplifier nom +amplifiers amplifier nom +amplifies amplify ver +amplify amplify ver +amplifying amplify ver +amplitude amplitude nom +amplitudes amplitude nom +ampoule ampoule nom +ampoules ampoule nom +amps amp nom +ampul ampul nom +ampule ampule nom +ampules ampule nom +ampulla ampulla nom +ampullae ampulla nom +ampuls ampul nom +amputate amputate ver +amputated amputate ver +amputates amputate ver +amputating amputate ver +amputation amputation nom +amputations amputation nom +amputee amputee nom +amputees amputee nom +amuck amuck nom +amucks amuck nom +amulet amulet nom +amulets amulet nom +amuse amuse ver +amused amuse ver +amusement amusement nom +amusements amusement nom +amuses amuse ver +amusing amuse ver +amygdala amygdala nom +amygdalas amygdala nom +amylase amylase nom +amylases amylase nom +amyloid amyloid nom +amyloidoses amyloidosis nom +amyloidosis amyloidosis nom +amyloids amyloid nom +amylolyses amylolysis nom +amylolysis amylolysis nom +amylum amylum nom +amylums amylum nom +amyotonia amyotonia nom +amyotonias amyotonia nom +an an sw +ana ana nom +anabioses anabiosis nom +anabiosis anabiosis nom +anabolism anabolism nom +anabolisms anabolism nom +anachronism anachronism nom +anachronisms anachronism nom +anaclises anaclisis nom +anaclisis anaclisis nom +anacoluthia anacoluthia nom +anacoluthias anacoluthia nom +anacoluthon anacoluthon nom +anacoluthons anacoluthon nom +anaconda anaconda nom +anacondas anaconda nom +anadiploses anadiplosis nom +anadiplosis anadiplosis nom +anaemia anaemia nom +anaemias anaemia nom +anaerobe anaerobe nom +anaerobes anaerobe nom +anaesthesia anaesthesia nom +anaesthesias anaesthesia nom +anaesthetic anaesthetic nom +anaesthetics anaesthetic nom +anaesthetist anaesthetist nom +anaesthetists anaesthetist nom +anaesthetize anaesthetize ver +anaesthetized anaesthetize ver +anaesthetizes anaesthetize ver +anaesthetizing anaesthetize ver +anaglyph anaglyph nom +anaglyphs anaglyph nom +anagoge anagoge nom +anagoges anagoge nom +anagram anagram nom +anagrammatize anagrammatize ver +anagrammatized anagrammatize ver +anagrammatizes anagrammatize ver +anagrammatizing anagrammatize ver +anagrammed anagram ver +anagramming anagram ver +anagrams anagram nom +analeptic analeptic nom +analeptics analeptic nom +analgesia analgesia nom +analgesias analgesia nom +analgesic analgesic nom +analgesics analgesic nom +analog analog nom +analogies analogy nom +analogist analogist nom +analogists analogist nom +analogize analogize ver +analogized analogize ver +analogizes analogize ver +analogizing analogize ver +analogousness analogousness nom +analogousnesses analogousness nom +analogs analog nom +analogue analogue nom +analogues analogue nom +analogy analogy nom +analphabetic analphabetic nom +analphabetics analphabetic nom +analysand analysand nom +analysands analysand nom +analyse analyse ver +analysed analyse ver +analyser analyser nom +analysers analyser nom +analyses analyse ver +analysing analyse ver +analysis analysis nom +analyst analyst nom +analysts analyst nom +analyticities analyticity nom +analyticity analyticity nom +analyze analyze ver +analyzed analyze ver +analyzer analyzer nom +analyzers analyzer nom +analyzes analyze ver +analyzing analyze ver +anamneses anamnesis nom +anamnesis anamnesis nom +anamorphoses anamorphosis nom +anamorphosis anamorphosis nom +ananas ananas nom +ananases ananas nom +anapaest anapaest nom +anapaests anapaest nom +anapest anapest nom +anapestic anapestic nom +anapestics anapestic nom +anapests anapest nom +anaphase anaphase nom +anaphases anaphase nom +anaphor anaphor nom +anaphora anaphora nom +anaphoras anaphora nom +anaphors anaphor nom +anaphrodisia anaphrodisia nom +anaphrodisias anaphrodisia nom +anaphylaxes anaphylaxis nom +anaphylaxis anaphylaxis nom +anaplasia anaplasia nom +anaplasias anaplasia nom +anaplasmoses anaplasmosis nom +anaplasmosis anaplasmosis nom +anarchies anarchy nom +anarchism anarchism nom +anarchisms anarchism nom +anarchist anarchist nom +anarchists anarchist nom +anarchy anarchy nom +anas ana nom +anasarca anasarca nom +anasarcas anasarca nom +anastigmat anastigmat nom +anastigmats anastigmat nom +anastomose anastomose ver +anastomosed anastomose ver +anastomoses anastomose ver +anastomosing anastomose ver +anastomosis anastomosis nom +anastrophe anastrophe nom +anastrophes anastrophe nom +anathema anathema nom +anathemas anathema nom +anathematize anathematize ver +anathematized anathematize ver +anathematizes anathematize ver +anathematizing anathematize ver +anatomies anatomy nom +anatomise anatomise ver +anatomised anatomise ver +anatomises anatomise ver +anatomising anatomise ver +anatomist anatomist nom +anatomists anatomist nom +anatomize anatomize ver +anatomized anatomize ver +anatomizes anatomize ver +anatomizing anatomize ver +anatomy anatomy nom +ancestor ancestor nom +ancestors ancestor nom +ancestress ancestress nom +ancestresses ancestress nom +ancestries ancestry nom +ancestry ancestry nom +anchor anchor nom +anchorage anchorage nom +anchorages anchorage nom +anchored anchor ver +anchoring anchor ver +anchorite anchorite nom +anchorites anchorite nom +anchorman anchorman nom +anchormen anchorman nom +anchorpeople anchorperson nom +anchorperson anchorperson nom +anchors anchor nom +anchorwoman anchorwoman nom +anchorwomen anchorwoman nom +anchovies anchovy nom +anchovy anchovy nom +anchusa anchusa nom +anchusas anchusa nom +anchyloses anchylosis nom +anchylosis anchylosis nom +ancient ancient adj +ancienter ancient adj +ancientest ancient adj +ancientness ancientness nom +ancientnesses ancientness nom +ancients ancient nom +ancillaries ancillary nom +ancillary ancillary nom +and and sw +andante andante nom +andantes andante nom +andesite andesite nom +andesites andesite nom +andiron andiron nom +andirons andiron nom +andradite andradite nom +andradites andradite nom +androgen androgen nom +androgeneses androgenesis nom +androgenesis androgenesis nom +androgens androgen nom +androgyne androgyne nom +androgynes androgyne nom +androgynies androgyny nom +androgyny androgyny nom +android android nom +androids android nom +andromeda andromeda nom +andromedas andromeda nom +androsterone androsterone nom +androsterones androsterone nom +anecdote anecdote nom +anecdotes anecdote nom +anecdotist anecdotist nom +anecdotists anecdotist nom +anele anele ver +aneled anele ver +aneles anele ver +aneling anele ver +anemia anemia nom +anemias anemia nom +anemographies anemography nom +anemography anemography nom +anemometer anemometer nom +anemometers anemometer nom +anemometries anemometry nom +anemometry anemometry nom +anemone anemone nom +anemones anemone nom +anencephalies anencephaly nom +anencephaly anencephaly nom +anergies anergy nom +anergy anergy nom +aneroid aneroid nom +aneroids aneroid nom +anesthesia anesthesia nom +anesthesias anesthesia nom +anesthesiologies anesthesiology nom +anesthesiologist anesthesiologist nom +anesthesiologists anesthesiologist nom +anesthesiology anesthesiology nom +anesthetic anesthetic nom +anesthetics anesthetic nom +anesthetist anesthetist nom +anesthetists anesthetist nom +anesthetization anesthetization nom +anesthetizations anesthetization nom +anesthetize anesthetize ver +anesthetized anesthetize ver +anesthetizes anesthetize ver +anesthetizing anesthetize ver +anestrus anestrus nom +anestruses anestrus nom +aneuploidies aneuploidy nom +aneuploidy aneuploidy nom +aneurin aneurin nom +aneurins aneurin nom +aneurism aneurism nom +aneurisms aneurism nom +aneurysm aneurysm nom +aneurysms aneurysm nom +angel angel nom +angeled angel ver +angelfish angelfish nom +angelica angelica nom +angelicas angelica nom +angeling angel ver +angels angel nom +angelus angelus nom +angeluses angelus nom +anger anger nom +angered anger ver +angering anger ver +angers anger nom +angina angina nom +anginas angina nom +angiogram angiogram nom +angiograms angiogram nom +angiographies angiography nom +angiography angiography nom +angiologies angiology nom +angiology angiology nom +angioma angioma nom +angiomas angioma nom +angiopathies angiopathy nom +angiopathy angiopathy nom +angioplasties angioplasty nom +angioplasty angioplasty nom +angiosperm angiosperm nom +angiosperms angiosperm nom +angiotensin angiotensin nom +angiotensins angiotensin nom +angle angle nom +angled angle ver +angledozer angledozer nom +angledozers angledozer nom +angler angler nom +anglerfish anglerfish nom +anglers angler nom +angles angle nom +angleworm angleworm nom +angleworms angleworm nom +anglicise anglicise ver +anglicised anglicise ver +anglicises anglicise ver +anglicising anglicise ver +anglicize anglicize ver +anglicized anglicize ver +anglicizes anglicize ver +anglicizing anglicize ver +angling angle ver +anglings angling nom +anglophil anglophil nom +anglophile anglophile nom +anglophiles anglophile nom +anglophils anglophil nom +anglophobe anglophobe nom +anglophobes anglophobe nom +angora angora nom +angoras angora nom +angostura angostura nom +angosturas angostura nom +angrier angry adj +angriest angry adj +angriness angriness nom +angrinesses angriness nom +angry angry adj +angst angst nom +angstrom angstrom nom +angstroms angstrom nom +angsts angst nom +anguish anguish nom +anguished anguish ver +anguishes anguish nom +anguishing anguish ver +angularities angularity nom +angularity angularity nom +angulation angulation nom +angulations angulation nom +angwantibo angwantibo nom +angwantibos angwantibo nom +anhedonia anhedonia nom +anhedonias anhedonia nom +anhinga anhinga nom +anhingas anhinga nom +anhydride anhydride nom +anhydrides anhydride nom +ani ani nom +anil anil nom +anile anile adj +aniler anile adj +anilest anile adj +aniline aniline nom +anilines aniline nom +anils anil nom +anima anima nom +animadversion animadversion nom +animadversions animadversion nom +animadvert animadvert ver +animadverted animadvert ver +animadverting animadvert ver +animadverts animadvert ver +animal animal nom +animalcula animalculum nom +animalcule animalcule nom +animalcules animalcule nom +animalculum animalculum nom +animalism animalism nom +animalisms animalism nom +animalities animality nom +animality animality nom +animalization animalization nom +animalizations animalization nom +animalize animalize ver +animalized animalize ver +animalizes animalize ver +animalizing animalize ver +animals animal nom +animas anima nom +animate animate ver +animated animate ver +animateness animateness nom +animatenesses animateness nom +animates animate ver +animating animate ver +animation animation nom +animations animation nom +animator animator nom +animators animator nom +anime anime nom +animes anime nom +animism animism nom +animisms animism nom +animist animist nom +animists animist nom +animosities animosity nom +animosity animosity nom +animus animus nom +animuses animus nom +anion anion nom +anions anion nom +anis ani nom +anise anise nom +aniseed aniseed nom +aniseeds aniseed nom +aniseikonia aniseikonia nom +aniseikonias aniseikonia nom +anises anise nom +anisette anisette nom +anisettes anisette nom +anisogamete anisogamete nom +anisogametes anisogamete nom +anisogamies anisogamy nom +anisogamy anisogamy nom +anisometropia anisometropia nom +anisometropias anisometropia nom +ankh ankh nom +ankhs ankh nom +ankle ankle nom +anklebone anklebone nom +anklebones anklebone nom +ankles ankle nom +anklet anklet nom +anklets anklet nom +ankylosaur ankylosaur nom +ankylosaurs ankylosaur nom +ankylosaurus ankylosaurus nom +ankylosauruses ankylosaurus nom +ankylose ankylose ver +ankylosed ankylose ver +ankyloses ankylose ver +ankylosing ankylose ver +ankylosis ankylosis nom +anlage anlage nom +anlages anlage nom +anna anna nom +annalist annalist nom +annalists annalist nom +annas anna nom +anneal anneal nom +annealed anneal ver +annealing anneal ver +annealings annealing nom +anneals anneal nom +annelid annelid nom +annelids annelid nom +annex annex nom +annexation annexation nom +annexations annexation nom +annexe annexe nom +annexed annex ver +annexes annex nom +annexing annex ver +annihilate annihilate ver +annihilated annihilate ver +annihilates annihilate ver +annihilating annihilate ver +annihilation annihilation nom +annihilations annihilation nom +annihilator annihilator nom +annihilators annihilator nom +anniversaries anniversary nom +anniversary anniversary nom +annotate annotate ver +annotated annotate ver +annotates annotate ver +annotating annotate ver +annotation annotation nom +annotations annotation nom +annotator annotator nom +annotators annotator nom +announce announce ver +announced announce ver +announcement announcement nom +announcements announcement nom +announcer announcer nom +announcers announcer nom +announces announce ver +announcing announce ver +annoy annoy ver +annoyance annoyance nom +annoyances annoyance nom +annoyed annoy ver +annoyer annoyer nom +annoyers annoyer nom +annoying annoy ver +annoys annoy ver +annual annual nom +annuals annual nom +annuitant annuitant nom +annuitants annuitant nom +annuities annuity nom +annuity annuity nom +annul annul ver +annulet annulet nom +annulets annulet nom +annulled annul ver +annulling annul ver +annulment annulment nom +annulments annulment nom +annuls annul ver +annulus annulus nom +annuluses annulus nom +annunciate annunciate ver +annunciated annunciate ver +annunciates annunciate ver +annunciating annunciate ver +annunciation annunciation nom +annunciations annunciation nom +annunciator annunciator nom +annunciators annunciator nom +anoa anoa nom +anoas anoa nom +anode anode nom +anodes anode nom +anodize anodize ver +anodized anodize ver +anodizes anodize ver +anodizing anodize ver +anodyne anodyne nom +anodynes anodyne nom +anoestrus anoestrus nom +anoestruses anoestrus nom +anoint anoint ver +anointed anoint ver +anointing anoint ver +anointment anointment nom +anointments anointment nom +anoints anoint ver +anole anole nom +anoles anole nom +anomalies anomaly nom +anomalousness anomalousness nom +anomalousnesses anomalousness nom +anomaly anomaly nom +anomia anomia nom +anomias anomia nom +anomie anomie nom +anomies anomie nom +anon anon nom +anons anon nom +anonym anonym nom +anonymities anonymity nom +anonymity anonymity nom +anonyms anonym nom +anopheles anopheles nom +anopheline anopheline nom +anophelines anopheline nom +anopia anopia nom +anopias anopia nom +anorak anorak nom +anoraks anorak nom +anorectic anorectic nom +anorectics anorectic nom +anorexia anorexia nom +anorexias anorexia nom +anorexic anorexic nom +anorexics anorexic nom +anorthite anorthite nom +anorthites anorthite nom +anosmia anosmia nom +anosmias anosmia nom +another another sw +anovulation anovulation nom +anovulations anovulation nom +anoxemia anoxemia nom +anoxemias anoxemia nom +anoxia anoxia nom +anoxias anoxia nom +answer answer nom +answerabilities answerability nom +answerability answerability nom +answerableness answerableness nom +answerablenesses answerableness nom +answered answer ver +answerer answerer nom +answerers answerer nom +answering answer ver +answers answer nom +ant ant nom +antacid antacid nom +antacids antacid nom +antagonise antagonise ver +antagonised antagonise ver +antagonises antagonise ver +antagonising antagonise ver +antagonism antagonism nom +antagonisms antagonism nom +antagonist antagonist nom +antagonists antagonist nom +antagonize antagonize ver +antagonized antagonize ver +antagonizes antagonize ver +antagonizing antagonize ver +antbird antbird nom +antbirds antbird nom +ante ante nom +anteater anteater nom +anteaters anteater nom +antecede antecede ver +anteceded antecede ver +antecedence antecedence nom +antecedences antecedence nom +antecedencies antecedency nom +antecedency antecedency nom +antecedent antecedent nom +antecedents antecedent nom +antecedes antecede ver +anteceding antecede ver +antechamber antechamber nom +antechambers antechamber nom +anted ante ver +antedate antedate nom +antedated antedate ver +antedates antedate nom +antedating antedate ver +antediluvian antediluvian nom +antediluvians antediluvian nom +antefix antefix nom +antefixes antefix nom +anteing ante ver +antelope antelope nom +antenna antenna nom +antennae antenna nom +antennas antenna nom +antepenult antepenult nom +antepenultimate antepenultimate nom +antepenultimates antepenultimate nom +antepenults antepenult nom +anteriorities anteriority nom +anteriority anteriority nom +anteroom anteroom nom +anterooms anteroom nom +antes ante nom +anthelminthic anthelminthic nom +anthelminthics anthelminthic nom +anthelmintic anthelmintic nom +anthelmintics anthelmintic nom +anthem anthem nom +anthemed anthem ver +antheming anthem ver +anthems anthem nom +anther anther nom +antheridium antheridium nom +antheridiums antheridium nom +antherozoid antherozoid nom +antherozoids antherozoid nom +anthers anther nom +antheses anthesis nom +anthesis anthesis nom +anthill anthill nom +anthills anthill nom +anthologies anthology nom +anthologist anthologist nom +anthologists anthologist nom +anthologize anthologize ver +anthologized anthologize ver +anthologizes anthologize ver +anthologizing anthologize ver +anthology anthology nom +anthophyllite anthophyllite nom +anthophyllites anthophyllite nom +anthozoan anthozoan nom +anthozoans anthozoan nom +anthraces anthrax nom +anthracite anthracite nom +anthracites anthracite nom +anthracoses anthracosis nom +anthracosis anthracosis nom +anthrax anthrax nom +anthropocentricities anthropocentricity nom +anthropocentricity anthropocentricity nom +anthropocentrism anthropocentrism nom +anthropocentrisms anthropocentrism nom +anthropogeneses anthropogenesis nom +anthropogenesis anthropogenesis nom +anthropogenies anthropogeny nom +anthropogeny anthropogeny nom +anthropoid anthropoid nom +anthropoids anthropoid nom +anthropologies anthropology nom +anthropologist anthropologist nom +anthropologists anthropologist nom +anthropology anthropology nom +anthropometries anthropometry nom +anthropometry anthropometry nom +anthropomorphism anthropomorphism nom +anthropomorphisms anthropomorphism nom +anthropomorphize anthropomorphize ver +anthropomorphized anthropomorphize ver +anthropomorphizes anthropomorphize ver +anthropomorphizing anthropomorphize ver +anthropophagi anthropophagus nom +anthropophagite anthropophagite nom +anthropophagites anthropophagite nom +anthropophagus anthropophagus nom +anthurium anthurium nom +anthuriums anthurium nom +anti anti nom +antiabortionist antiabortionist nom +antiabortionists antiabortionist nom +antiaircraft antiaircraft nom +antiarrhythmic antiarrhythmic nom +antiarrhythmics antiarrhythmic nom +antibacterial antibacterial nom +antibacterials antibacterial nom +antibaryon antibaryon nom +antibaryons antibaryon nom +antibiotic antibiotic nom +antibiotics antibiotic nom +antibodies antibody nom +antibody antibody nom +antic antic nom +anticatalyst anticatalyst nom +anticatalysts anticatalyst nom +antichrist antichrist nom +antichrists antichrist nom +anticipate anticipate ver +anticipated anticipate ver +anticipates anticipate ver +anticipating anticipate ver +anticipation anticipation nom +anticipations anticipation nom +anticked antic ver +anticking antic ver +anticlimax anticlimax nom +anticlimaxes anticlimax nom +anticline anticline nom +anticlines anticline nom +anticoagulant anticoagulant nom +anticoagulants anticoagulant nom +anticommunism anticommunism nom +anticommunisms anticommunism nom +anticommunist anticommunist nom +anticommunists anticommunist nom +anticonvulsant anticonvulsant nom +anticonvulsants anticonvulsant nom +antics antic nom +anticyclone anticyclone nom +anticyclones anticyclone nom +antidepressant antidepressant nom +antidepressants antidepressant nom +antidiabetic antidiabetic nom +antidiabetics antidiabetic nom +antidiarrheal antidiarrheal nom +antidiarrheals antidiarrheal nom +antidiuretic antidiuretic nom +antidiuretics antidiuretic nom +antidote antidote nom +antidoted antidote ver +antidotes antidote nom +antidoting antidote ver +antielectron antielectron nom +antielectrons antielectron nom +antiemetic antiemetic nom +antiemetics antiemetic nom +antiepileptic antiepileptic nom +antiepileptics antiepileptic nom +antifascist antifascist nom +antifascists antifascist nom +antifeminism antifeminism nom +antifeminisms antifeminism nom +antifeminist antifeminist nom +antifeminists antifeminist nom +antiferromagnetism antiferromagnetism nom +antiferromagnetisms antiferromagnetism nom +antifreeze antifreeze nom +antifreezes antifreeze nom +antifungal antifungal nom +antifungals antifungal nom +antigen antigen nom +antigenicities antigenicity nom +antigenicity antigenicity nom +antigens antigen nom +antihero antihero nom +antiheroes antihero nom +antihistamine antihistamine nom +antihistamines antihistamine nom +antihypertensive antihypertensive nom +antihypertensives antihypertensive nom +antiknock antiknock nom +antiknocks antiknock nom +antilepton antilepton nom +antileptons antilepton nom +antilog antilog nom +antilogarithm antilogarithm nom +antilogarithms antilogarithm nom +antilogs antilog nom +antimacassar antimacassar nom +antimacassars antimacassar nom +antimalarial antimalarial nom +antimalarials antimalarial nom +antimatter antimatter nom +antimatters antimatter nom +antimetabolite antimetabolite nom +antimetabolites antimetabolite nom +antimicrobial antimicrobial nom +antimicrobials antimicrobial nom +antimissile antimissile nom +antimissiles antimissile nom +antimonies antimony nom +antimony antimony nom +antimycin antimycin nom +antimycins antimycin nom +antineoplastic antineoplastic nom +antineoplastics antineoplastic nom +antineutrino antineutrino nom +antineutrinos antineutrino nom +antineutron antineutron nom +antineutrons antineutron nom +antinomian antinomian nom +antinomianism antinomianism nom +antinomianisms antinomianism nom +antinomians antinomian nom +antioxidant antioxidant nom +antioxidants antioxidant nom +antiparticle antiparticle nom +antiparticles antiparticle nom +antipasto antipasto nom +antipastos antipasto nom +antipathies antipathy nom +antipathy antipathy nom +antiperspirant antiperspirant nom +antiperspirants antiperspirant nom +antiphon antiphon nom +antiphonal antiphonal nom +antiphonals antiphonal nom +antiphonaries antiphonary nom +antiphonary antiphonary nom +antiphonies antiphony nom +antiphons antiphon nom +antiphony antiphony nom +antiphrases antiphrasis nom +antiphrasis antiphrasis nom +antipodal antipodal nom +antipodals antipodal nom +antipode antipode nom +antipodean antipodean nom +antipodeans antipodean nom +antipodes antipode nom +antiproton antiproton nom +antiprotons antiproton nom +antipruritic antipruritic nom +antipruritics antipruritic nom +antipsychotic antipsychotic nom +antipsychotics antipsychotic nom +antipyretic antipyretic nom +antipyretics antipyretic nom +antiquarian antiquarian nom +antiquarianism antiquarianism nom +antiquarianisms antiquarianism nom +antiquarians antiquarian nom +antiquaries antiquary nom +antiquark antiquark nom +antiquarks antiquark nom +antiquary antiquary nom +antiquate antiquate ver +antiquated antiquate ver +antiquates antiquate ver +antiquating antiquate ver +antique antique nom +antiqued antique ver +antiques antique nom +antiquing antique ver +antiquities antiquity nom +antiquity antiquity nom +antis anti nom +antisemitism antisemitism nom +antisemitisms antisemitism nom +antisepses antisepsis nom +antisepsis antisepsis nom +antiseptic antiseptic nom +antiseptics antiseptic nom +antiserum antiserum nom +antiserums antiserum nom +antislaveries antislavery nom +antislavery antislavery nom +antispasmodic antispasmodic nom +antispasmodics antispasmodic nom +antistrophe antistrophe nom +antistrophes antistrophe nom +antisyphilitic antisyphilitic nom +antisyphilitics antisyphilitic nom +antitheses antithesis nom +antithesis antithesis nom +antitoxin antitoxin nom +antitoxins antitoxin nom +antitrade antitrade nom +antitrades antitrade nom +antitussive antitussive nom +antitussives antitussive nom +antitype antitype nom +antitypes antitype nom +antivenin antivenin nom +antivenins antivenin nom +antiviral antiviral nom +antivirals antiviral nom +antivivisectionist antivivisectionist nom +antivivisectionists antivivisectionist nom +antler antler nom +antlers antler nom +antlion antlion nom +antlions antlion nom +antonym antonym nom +antonymies antonymy nom +antonyms antonym nom +antonymy antonymy nom +antrum antrum nom +antrums antrum nom +ants ant nom +antsier antsy adj +antsiest antsy adj +antsy antsy adj +anuran anuran nom +anurans anuran nom +anureses anuresis nom +anuresis anuresis nom +anuria anuria nom +anurias anuria nom +anus anus nom +anuses anus nom +anvil anvil nom +anvils anvil nom +anxieties anxiety nom +anxiety anxiety nom +anxiolytic anxiolytic nom +anxiolytics anxiolytic nom +anxiousness anxiousness nom +anxiousnesses anxiousness nom +any any sw +anybodies anybody nom +anybody anybody sw +anyhow anyhow sw +anyone anyone sw +anything anything sw +anythings anything nom +anyway anyway sw +anyways anyways sw +anywhere anywhere sw +aorist aorist nom +aorists aorist nom +aorta aorta nom +aortas aorta nom +aoudad aoudad nom +aoudads aoudad nom +apache apache nom +apaches apache nom +apanage apanage nom +apanages apanage nom +apart apart sw +apartheid apartheid nom +apartheids apartheid nom +apartment apartment nom +apartments apartment nom +apathies apathy nom +apathy apathy nom +apatite apatite nom +apatites apatite nom +apatosaurus apatosaurus nom +apatosauruses apatosaurus nom +ape ape nom +aped ape ver +aper aper nom +apercu apercu nom +apercus apercu nom +aperient aperient nom +aperients aperient nom +aperies apery nom +aperitif aperitif nom +aperitifs aperitif nom +apers aper nom +aperture aperture nom +apertures aperture nom +apery apery nom +apes ape nom +apex apex nom +apexes apex nom +aphaereses aphaeresis nom +aphaeresis aphaeresis nom +aphagia aphagia nom +aphagias aphagia nom +aphakia aphakia nom +aphakias aphakia nom +aphanite aphanite nom +aphanites aphanite nom +aphasia aphasia nom +aphasias aphasia nom +aphasic aphasic nom +aphasics aphasic nom +aphelia aphelion nom +aphelion aphelion nom +aphereses apheresis nom +apheresis apheresis nom +apheses aphesis nom +aphesis aphesis nom +aphid aphid nom +aphids aphid nom +aphonia aphonia nom +aphonias aphonia nom +aphorism aphorism nom +aphorisms aphorism nom +aphorist aphorist nom +aphorists aphorist nom +aphorize aphorize ver +aphorized aphorize ver +aphorizes aphorize ver +aphorizing aphorize ver +aphrodisiac aphrodisiac nom +aphrodisiacs aphrodisiac nom +apiaries apiary nom +apiarist apiarist nom +apiarists apiarist nom +apiary apiary nom +apical apical nom +apicals apical nom +apiculture apiculture nom +apicultures apiculture nom +apiculturist apiculturist nom +apiculturists apiculturist nom +aping ape ver +aplasia aplasia nom +aplasias aplasia nom +aplite aplite nom +aplites aplite nom +aplomb aplomb nom +aplombs aplomb nom +apnea apnea nom +apneas apnea nom +apocalypse apocalypse nom +apocalypses apocalypse nom +apocope apocope nom +apocopes apocope nom +apoenzyme apoenzyme nom +apoenzymes apoenzyme nom +apogamies apogamy nom +apogamy apogamy nom +apogee apogee nom +apogees apogee nom +apologia apologia nom +apologias apologia nom +apologies apology nom +apologise apologise ver +apologised apologise ver +apologises apologise ver +apologising apologise ver +apologist apologist nom +apologists apologist nom +apologize apologize ver +apologized apologize ver +apologizes apologize ver +apologizing apologize ver +apologue apologue nom +apologues apologue nom +apology apology nom +apolune apolune nom +apolunes apolune nom +apomict apomict nom +apomicts apomict nom +apomixis apomixis nom +apomixises apomixis nom +apomorphine apomorphine nom +apomorphines apomorphine nom +aponeuroses aponeurosis nom +aponeurosis aponeurosis nom +apophases apophasis nom +apophasis apophasis nom +apophthegm apophthegm nom +apophthegms apophthegm nom +apophyses apophysis nom +apophysis apophysis nom +apoplectic apoplectic nom +apoplectics apoplectic nom +apoplexies apoplexy nom +apoplexy apoplexy nom +aposiopeses aposiopesis nom +aposiopesis aposiopesis nom +apostasies apostasy nom +apostasy apostasy nom +apostate apostate nom +apostates apostate nom +apostatise apostatise ver +apostatised apostatise ver +apostatises apostatise ver +apostatising apostatise ver +apostatize apostatize ver +apostatized apostatize ver +apostatizes apostatize ver +apostatizing apostatize ver +apostle apostle nom +apostles apostle nom +apostleship apostleship nom +apostleships apostleship nom +apostrophe apostrophe nom +apostrophes apostrophe nom +apostrophize apostrophize ver +apostrophized apostrophize ver +apostrophizes apostrophize ver +apostrophizing apostrophize ver +apothecaries apothecary nom +apothecary apothecary nom +apothecia apothecium nom +apothecium apothecium nom +apothegm apothegm nom +apothegms apothegm nom +apotheoses apotheosis nom +apotheosis apotheosis nom +apotheosize apotheosize ver +apotheosized apotheosize ver +apotheosizes apotheosize ver +apotheosizing apotheosize ver +appal appal ver +appall appall ver +appalled appal ver +appalling appal ver +appalls appall ver +appaloosa appaloosa nom +appaloosas appaloosa nom +appals appal ver +appanage appanage nom +appanages appanage nom +apparatus apparatus nom +apparatuses apparatus nom +apparel apparel nom +appareled apparel ver +appareling apparel ver +apparels apparel nom +apparencies apparency nom +apparency apparency nom +apparentness apparentness nom +apparentnesses apparentness nom +apparition apparition nom +apparitions apparition nom +appeal appeal nom +appealed appeal ver +appealing appeal ver +appeals appeal nom +appear appear sw +appearance appearance nom +appearances appearance nom +appeared appear ver +appearing appear ver +appears appear ver +appease appease ver +appeased appease ver +appeasement appeasement nom +appeasements appeasement nom +appeaser appeaser nom +appeasers appeaser nom +appeases appease ver +appeasing appease ver +appellant appellant nom +appellants appellant nom +appellation appellation nom +appellations appellation nom +appellative appellative nom +appellatives appellative nom +append append ver +appendage appendage nom +appendages appendage nom +appendectomies appendectomy nom +appendectomy appendectomy nom +appended append ver +appendicectomies appendicectomy nom +appendicectomy appendicectomy nom +appendices appendix nom +appendicitis appendicitis nom +appendicitises appendicitis nom +appendicle appendicle nom +appendicles appendicle nom +appending append ver +appendix appendix nom +appendixes appendix nom +appends append ver +apperceive apperceive ver +apperceived apperceive ver +apperceives apperceive ver +apperceiving apperceive ver +apperception apperception nom +apperceptions apperception nom +appertain appertain ver +appertained appertain ver +appertaining appertain ver +appertains appertain ver +appetence appetence nom +appetences appetence nom +appetencies appetency nom +appetency appetency nom +appetite appetite nom +appetites appetite nom +appetizer appetizer nom +appetizers appetizer nom +applaud applaud ver +applauded applaud ver +applauder applauder nom +applauders applauder nom +applauding applaud ver +applauds applaud ver +applause applause nom +applauses applause nom +apple apple nom +applecart applecart nom +applecarts applecart nom +applejack applejack nom +applejacks applejack nom +apples apple nom +applesauce applesauce nom +applesauces applesauce nom +applet applet nom +applets applet nom +appliance appliance nom +appliances appliance nom +applicabilities applicability nom +applicability applicability nom +applicant applicant nom +applicants applicant nom +application application nom +applications application nom +applicator applicator nom +applicators applicator nom +applied apply ver +applier applier nom +appliers applier nom +applies apply ver +applique applique nom +appliqued applique ver +appliqueing applique ver +appliques applique nom +apply apply ver +applying apply ver +appoggiatura appoggiatura nom +appoggiaturas appoggiatura nom +appoint appoint ver +appointed appoint ver +appointee appointee nom +appointees appointee nom +appointing appoint ver +appointment appointment nom +appointments appointment nom +appoints appoint ver +apportion apportion ver +apportioned apportion ver +apportioning apportion ver +apportionment apportionment nom +apportionments apportionment nom +apportions apportion ver +appose appose ver +apposed appose ver +apposes appose ver +apposing appose ver +appositeness appositeness nom +appositenesses appositeness nom +apposition apposition nom +appositions apposition nom +appositive appositive nom +appositives appositive nom +appraisal appraisal nom +appraisals appraisal nom +appraise appraise ver +appraised appraise ver +appraiser appraiser nom +appraisers appraiser nom +appraises appraise ver +appraising appraise ver +appreciate appreciate sw +appreciated appreciate ver +appreciates appreciate ver +appreciating appreciate ver +appreciation appreciation nom +appreciations appreciation nom +appreciativeness appreciativeness nom +appreciativenesses appreciativeness nom +appreciator appreciator nom +appreciators appreciator nom +apprehend apprehend ver +apprehended apprehend ver +apprehending apprehend ver +apprehends apprehend ver +apprehension apprehension nom +apprehensions apprehension nom +apprehensiveness apprehensiveness nom +apprehensivenesses apprehensiveness nom +apprentice apprentice nom +apprenticed apprentice ver +apprentices apprentice nom +apprenticeship apprenticeship nom +apprenticeships apprenticeship nom +apprenticing apprentice ver +apprise apprise ver +apprised apprise ver +apprises apprise ver +apprising apprise ver +apprize apprize ver +apprized apprize ver +apprizes apprize ver +apprizing apprize ver +approach approach nom +approachabilities approachability nom +approachability approachability nom +approached approach ver +approaches approach nom +approaching approach ver +approbate approbate ver +approbated approbate ver +approbates approbate ver +approbating approbate ver +approbation approbation nom +approbations approbation nom +appropriate appropriate sw +appropriated appropriate ver +appropriateness appropriateness nom +appropriatenesses appropriateness nom +appropriates appropriate ver +appropriating appropriate ver +appropriation appropriation nom +appropriations appropriation nom +appropriator appropriator nom +appropriators appropriator nom +approval approval nom +approvals approval nom +approve approve ver +approved approve ver +approves approve ver +approving approve ver +approximate approximate ver +approximated approximate ver +approximates approximate ver +approximating approximate ver +approximation approximation nom +approximations approximation nom +appurtenance appurtenance nom +appurtenances appurtenance nom +appurtenant appurtenant nom +appurtenants appurtenant nom +apraxia apraxia nom +apraxias apraxia nom +apricot apricot nom +apricots apricot nom +apron apron nom +aproned apron ver +aproning apron ver +aprons apron nom +apse apse nom +apses apse nom +apsis apsis nom +apt apt adj +apter apt adj +apteryx apteryx nom +apteryxes apteryx nom +aptest apt adj +aptitude aptitude nom +aptitudes aptitude nom +aptness aptness nom +aptnesses aptness nom +aqua aqua nom +aquaculture aquaculture nom +aquacultures aquaculture nom +aqualung aqualung nom +aqualungs aqualung nom +aquamarine aquamarine nom +aquamarines aquamarine nom +aquanaut aquanaut nom +aquanauts aquanaut nom +aquaplane aquaplane nom +aquaplaned aquaplane ver +aquaplanes aquaplane nom +aquaplaning aquaplane ver +aquarium aquarium nom +aquariums aquarium nom +aquas aqua nom +aquatic aquatic nom +aquatics aquatic nom +aquatint aquatint nom +aquatinted aquatint ver +aquatinting aquatint ver +aquatints aquatint nom +aquavit aquavit nom +aquavits aquavit nom +aqueduct aqueduct nom +aqueducts aqueduct nom +aquiculture aquiculture nom +aquicultures aquiculture nom +aquifer aquifer nom +aquifers aquifer nom +aquilegia aquilegia nom +aquilegias aquilegia nom +arabesque arabesque nom +arabesques arabesque nom +arabilities arability nom +arability arability nom +arable arable nom +arables arable nom +arachnid arachnid nom +arachnids arachnid nom +arachnoid arachnoid nom +arachnoids arachnoid nom +arak arak nom +araks arak nom +aralia aralia nom +aralias aralia nom +araroba araroba nom +ararobas araroba nom +araucaria araucaria nom +araucarias araucaria nom +arb arb nom +arbiter arbiter nom +arbiters arbiter nom +arbitrage arbitrage nom +arbitraged arbitrage ver +arbitrager arbitrager nom +arbitragers arbitrager nom +arbitrages arbitrage nom +arbitrageur arbitrageur nom +arbitrageurs arbitrageur nom +arbitraging arbitrage ver +arbitrament arbitrament nom +arbitraments arbitrament nom +arbitraries arbitrary nom +arbitrariness arbitrariness nom +arbitrarinesses arbitrariness nom +arbitrary arbitrary nom +arbitrate arbitrate ver +arbitrated arbitrate ver +arbitrates arbitrate ver +arbitrating arbitrate ver +arbitration arbitration nom +arbitrations arbitration nom +arbitrator arbitrator nom +arbitrators arbitrator nom +arbitrement arbitrement nom +arbitrements arbitrement nom +arbor arbor nom +arboretum arboretum nom +arboretums arboretum nom +arboriculture arboriculture nom +arboricultures arboriculture nom +arboriculturist arboriculturist nom +arboriculturists arboriculturist nom +arborize arborize ver +arborized arborize ver +arborizes arborize ver +arborizing arborize ver +arbors arbor nom +arborvitae arborvitae nom +arborvitaes arborvitae nom +arbour arbour nom +arbours arbour nom +arbs arb nom +arbutus arbutus nom +arbutuses arbutus nom +arc arc nom +arcade arcade nom +arcaded arcade ver +arcades arcade nom +arcading arcade ver +arcanum arcanum nom +arcanums arcanum nom +arced arc ver +arch arch adj +archaebacteria archaebacterium nom +archaebacterium archaebacterium nom +archaeologies archaeology nom +archaeologist archaeologist nom +archaeologists archaeologist nom +archaeology archaeology nom +archaeopteryx archaeopteryx nom +archaeopteryxes archaeopteryx nom +archaism archaism nom +archaisms archaism nom +archaist archaist nom +archaists archaist nom +archaize archaize ver +archaized archaize ver +archaizes archaize ver +archaizing archaize ver +archangel archangel nom +archangels archangel nom +archbishop archbishop nom +archbishopric archbishopric nom +archbishoprics archbishopric nom +archbishops archbishop nom +archdeacon archdeacon nom +archdeaconries archdeaconry nom +archdeaconry archdeaconry nom +archdeacons archdeacon nom +archdiocese archdiocese nom +archdioceses archdiocese nom +archduchess archduchess nom +archduchesses archduchess nom +archduchies archduchy nom +archduchy archduchy nom +archduke archduke nom +archdukes archduke nom +arched arch ver +archegonia archegonium nom +archegonium archegonium nom +archenemies archenemy nom +archenemy archenemy nom +archenteron archenteron nom +archenterons archenteron nom +archeologies archeology nom +archeologist archeologist nom +archeologists archeologist nom +archeology archeology nom +archer arch adj +archerfish archerfish nom +archeries archery nom +archers archer nom +archery archery nom +arches arch nom +archespore archespore nom +archespores archespore nom +archesporia archesporium nom +archesporium archesporium nom +archest arch adj +archetype archetype nom +archetypes archetype nom +archfiend archfiend nom +archfiends archfiend nom +archidiaconate archidiaconate nom +archidiaconates archidiaconate nom +archil archil nom +archils archil nom +archimandrite archimandrite nom +archimandrites archimandrite nom +archine archine nom +archines archine nom +arching arch ver +archipelago archipelago nom +archipelagos archipelago nom +architect architect nom +architected architect ver +architecting architect ver +architects architect nom +architecture architecture nom +architectures architecture nom +architrave architrave nom +architraves architrave nom +archive archive nom +archived archive ver +archives archive nom +archiving archive ver +archivist archivist nom +archivists archivist nom +archness archness nom +archnesses archness nom +archosaur archosaur nom +archosaurs archosaur nom +archpriest archpriest nom +archpriests archpriest nom +archway archway nom +archways archway nom +arcing arc ver +arcs arc nom +arctic arctic nom +arctics arctic nom +arctiid arctiid nom +arctiids arctiid nom +arcus arcus nom +arcuses arcus nom +ardeb ardeb nom +ardebs ardeb nom +ardor ardor nom +ardors ardor nom +ardour ardour nom +ardours ardour nom +arduousness arduousness nom +arduousnesses arduousness nom +are are sw +area area nom +areas area nom +areaway areaway nom +areaways areaway nom +areca areca nom +arecas areca nom +aren_t aren_t sw +arena arena nom +arenas arena nom +areola areola nom +areolas areola nom +arete arete nom +aretes arete nom +arethusa arethusa nom +arethusas arethusa nom +argal argal nom +argali argali nom +argalis argali nom +argals argal nom +argemone argemone nom +argemones argemone nom +argent argent nom +argentine argentine nom +argentines argentine nom +argentite argentite nom +argentites argentite nom +argents argent nom +argillite argillite nom +argillites argillite nom +arginine arginine nom +arginines arginine nom +argon argon nom +argonaut argonaut nom +argonauts argonaut nom +argons argon nom +argosies argosy nom +argosy argosy nom +argot argot nom +argots argot nom +argue argue ver +argued argue ver +arguer arguer nom +arguers arguer nom +argues argue ver +argufied argufy ver +argufies argufy ver +argufy argufy ver +argufying argufy ver +arguing argue ver +argument argument nom +argumentation argumentation nom +argumentations argumentation nom +argumentativeness argumentativeness nom +argumentativenesses argumentativeness nom +arguments argument nom +argus argus nom +arguses argus nom +argyle argyle nom +argyles argyle nom +aria aria nom +arias aria nom +arid arid adj +arider arid adj +aridest arid adj +aridities aridity nom +aridity aridity nom +aridness aridness nom +aridnesses aridness nom +arietta arietta nom +ariettas arietta nom +aril aril nom +arils aril nom +arioso arioso nom +ariosos arioso nom +arise arise ver +arisen arise ver +arises arise ver +arising arise ver +arista arista nom +aristas arista nom +aristocracies aristocracy nom +aristocracy aristocracy nom +aristocrat aristocrat nom +aristocrats aristocrat nom +arithmetic arithmetic nom +arithmetician arithmetician nom +arithmeticians arithmetician nom +arithmetics arithmetic nom +ark ark nom +arks ark nom +arm arm nom +armada armada nom +armadas armada nom +armadillo armadillo nom +armadillos armadillo nom +armament armament nom +armamentarium armamentarium nom +armamentariums armamentarium nom +armaments armament nom +armature armature nom +armatures armature nom +armband armband nom +armbands armband nom +armchair armchair nom +armchairs armchair nom +armed arm ver +armet armet nom +armets armet nom +armful armful nom +armfuls armful nom +armhole armhole nom +armholes armhole nom +armies army nom +armiger armiger nom +armigers armiger nom +arming arm ver +armings arming nom +armistice armistice nom +armistices armistice nom +armlet armlet nom +armlets armlet nom +armoire armoire nom +armoires armoire nom +armor armor nom +armored armor ver +armorer armorer nom +armorers armorer nom +armorial armorial nom +armorials armorial nom +armories armory nom +armoring armor ver +armors armor nom +armory armory nom +armour armour nom +armoured armour ver +armourer armourer nom +armourers armourer nom +armouries armoury nom +armouring armour ver +armours armour nom +armoury armoury nom +armpit armpit nom +armpits armpit nom +armrest armrest nom +armrests armrest nom +arms arm nom +army army nom +armyworm armyworm nom +armyworms armyworm nom +arnica arnica nom +arnicas arnica nom +aroid aroid nom +aroids aroid nom +aroma aroma nom +aromas aroma nom +aromatherapies aromatherapy nom +aromatherapist aromatherapist nom +aromatherapists aromatherapist nom +aromatherapy aromatherapy nom +aromatic aromatic nom +aromatics aromatic nom +aromatize aromatize ver +aromatized aromatize ver +aromatizes aromatize ver +aromatizing aromatize ver +arose arise ver +around around sw +arousal arousal nom +arousals arousal nom +arouse arouse ver +aroused arouse ver +arouses arouse ver +arousing arouse ver +arpeggio arpeggio nom +arpeggios arpeggio nom +arpent arpent nom +arpents arpent nom +arquebus arquebus nom +arquebuses arquebus nom +arrack arrack nom +arracks arrack nom +arraign arraign ver +arraigned arraign ver +arraigning arraign ver +arraignment arraignment nom +arraignments arraignment nom +arraigns arraign ver +arrange arrange ver +arranged arrange ver +arrangement arrangement nom +arrangements arrangement nom +arranger arranger nom +arrangers arranger nom +arranges arrange ver +arranging arrange ver +arras arras nom +arrases arras nom +array array nom +arrayed array ver +arraying array ver +arrays array nom +arrest arrest nom +arrested arrest ver +arrester arrester nom +arresters arrester nom +arresting arrest ver +arrests arrest nom +arrhythmia arrhythmia nom +arrhythmias arrhythmia nom +arrival arrival nom +arrivals arrival nom +arrive arrive ver +arrived arrive ver +arriver arriver nom +arrivers arriver nom +arrives arrive ver +arriving arrive ver +arroba arroba nom +arrobas arroba nom +arrogance arrogance nom +arrogances arrogance nom +arrogate arrogate ver +arrogated arrogate ver +arrogates arrogate ver +arrogating arrogate ver +arrogation arrogation nom +arrogations arrogation nom +arrow arrow nom +arrowed arrow ver +arrowhead arrowhead nom +arrowheads arrowhead nom +arrowing arrow ver +arrowroot arrowroot nom +arrowroots arrowroot nom +arrows arrow nom +arrowworm arrowworm nom +arrowworms arrowworm nom +arroyo arroyo nom +arroyos arroyo nom +arse arse nom +arsehole arsehole nom +arseholes arsehole nom +arsenal arsenal nom +arsenals arsenal nom +arsenate arsenate nom +arsenates arsenate nom +arsenic arsenic nom +arsenics arsenic nom +arsenopyrite arsenopyrite nom +arsenopyrites arsenopyrite nom +arses arse nom +arsine arsine nom +arsines arsine nom +arson arson nom +arsonist arsonist nom +arsonists arsonist nom +arsons arson nom +art art nom +artefact artefact nom +artefacts artefact nom +artemisia artemisia nom +artemisias artemisia nom +arterial arterial nom +arterialise arterialise ver +arterialised arterialise ver +arterialises arterialise ver +arterialising arterialise ver +arterialize arterialize ver +arterialized arterialize ver +arterializes arterialize ver +arterializing arterialize ver +arterials arterial nom +arteries artery nom +arteriogram arteriogram nom +arteriograms arteriogram nom +arteriographies arteriography nom +arteriography arteriography nom +arteriole arteriole nom +arterioles arteriole nom +arterioscleroses arteriosclerosis nom +arteriosclerosis arteriosclerosis nom +arteritis arteritis nom +arteritises arteritis nom +artery artery nom +artfulness artfulness nom +artfulnesses artfulness nom +arthralgia arthralgia nom +arthralgias arthralgia nom +arthritic arthritic nom +arthritics arthritic nom +arthritides arthritis nom +arthritis arthritis nom +arthrogram arthrogram nom +arthrograms arthrogram nom +arthrographies arthrography nom +arthrography arthrography nom +arthromere arthromere nom +arthromeres arthromere nom +arthropod arthropod nom +arthropods arthropod nom +arthroscope arthroscope nom +arthroscopes arthroscope nom +arthroscopies arthroscopy nom +arthroscopy arthroscopy nom +arthrospore arthrospore nom +arthrospores arthrospore nom +artichoke artichoke nom +artichokes artichoke nom +article article nom +articled article ver +articles article nom +articling article ver +articulate articulate ver +articulated articulate ver +articulateness articulateness nom +articulatenesses articulateness nom +articulates articulate ver +articulating articulate ver +articulation articulation nom +articulations articulation nom +artier arty adj +artiest arty adj +artifact artifact nom +artifacts artifact nom +artifice artifice nom +artificer artificer nom +artificers artificer nom +artifices artifice nom +artificialities artificiality nom +artificiality artificiality nom +artilleries artillery nom +artillery artillery nom +artilleryman artilleryman nom +artillerymen artilleryman nom +artiness artiness nom +artinesses artiness nom +artiodactyl artiodactyl nom +artiodactyls artiodactyl nom +artisan artisan nom +artisans artisan nom +artist artist nom +artiste artiste nom +artistes artiste nom +artistries artistry nom +artistry artistry nom +artists artist nom +artlessness artlessness nom +artlessnesses artlessness nom +arts art nom +artsier artsy adj +artsiest artsy adj +artsy artsy adj +artwork artwork nom +artworks artwork nom +arty arty adj +arugula arugula nom +arugulas arugula nom +arum arum nom +arums arum nom +arytaenoid arytaenoid nom +arytaenoids arytaenoid nom +arytenoid arytenoid nom +arytenoids arytenoid nom +as as sw +asafetida asafetida nom +asafetidas asafetida nom +asana asana nom +asanas asana nom +asarabacca asarabacca nom +asarabaccas asarabacca nom +asbestos asbestos nom +asbestoses asbestos nom +asbestosis asbestosis nom +ascariases ascariasis nom +ascariasis ascariasis nom +ascend ascend ver +ascendance ascendance nom +ascendances ascendance nom +ascendancies ascendancy nom +ascendancy ascendancy nom +ascendant ascendant nom +ascendants ascendant nom +ascended ascend ver +ascendence ascendence nom +ascendences ascendence nom +ascendencies ascendency nom +ascendency ascendency nom +ascendent ascendent nom +ascendents ascendent nom +ascending ascend ver +ascends ascend ver +ascension ascension nom +ascensions ascension nom +ascent ascent nom +ascents ascent nom +ascertain ascertain ver +ascertained ascertain ver +ascertaining ascertain ver +ascertainment ascertainment nom +ascertainments ascertainment nom +ascertains ascertain ver +ascetic ascetic nom +asceticism asceticism nom +asceticisms asceticism nom +ascetics ascetic nom +asci ascus nom +ascidian ascidian nom +ascidians ascidian nom +asclepiad asclepiad nom +asclepiads asclepiad nom +ascocarp ascocarp nom +ascocarps ascocarp nom +ascoma ascoma nom +ascomata ascoma nom +ascomycete ascomycete nom +ascomycetes ascomycete nom +ascospore ascospore nom +ascospores ascospore nom +ascot ascot nom +ascots ascot nom +ascribe ascribe ver +ascribed ascribe ver +ascribes ascribe ver +ascribing ascribe ver +ascription ascription nom +ascriptions ascription nom +ascus ascus nom +asdic asdic nom +asdics asdic nom +asepses asepsis nom +asepsis asepsis nom +aseptic aseptic nom +aseptics aseptic nom +asexualities asexuality nom +asexuality asexuality nom +ash ash nom +ashcake ashcake nom +ashcakes ashcake nom +ashcan ashcan nom +ashcans ashcan nom +ashed ash ver +ashes ash nom +ashier ashy adj +ashiest ashy adj +ashing ash ver +ashlar ashlar nom +ashlared ashlar ver +ashlaring ashlar ver +ashlars ashlar nom +ashram ashram nom +ashrams ashram nom +ashtray ashtray nom +ashtrays ashtray nom +ashy ashy adj +aside aside sw +asides aside nom +asininities asininity nom +asininity asininity nom +ask ask sw +asked ask ver +asker asker nom +askers asker nom +asking asking sw +askings asking nom +asks ask ver +asp asp nom +asparagine asparagine nom +asparagines asparagine nom +asparagus asparagus nom +asparaguses asparagus nom +aspartame aspartame nom +aspartames aspartame nom +aspect aspect nom +aspects aspect nom +aspen aspen nom +aspens aspen nom +asper asper nom +aspergill aspergill nom +aspergilloses aspergillosis nom +aspergillosis aspergillosis nom +aspergills aspergill nom +asperities asperity nom +asperity asperity nom +aspers asper nom +asperse asperse ver +aspersed asperse ver +asperses asperse ver +aspersing asperse ver +aspersion aspersion nom +aspersions aspersion nom +asphalt asphalt nom +asphalted asphalt ver +asphalting asphalt ver +asphalts asphalt nom +asphodel asphodel nom +asphodels asphodel nom +asphyxia asphyxia nom +asphyxias asphyxia nom +asphyxiate asphyxiate ver +asphyxiated asphyxiate ver +asphyxiates asphyxiate ver +asphyxiating asphyxiate ver +asphyxiation asphyxiation nom +asphyxiations asphyxiation nom +aspic aspic nom +aspics aspic nom +aspidistra aspidistra nom +aspidistras aspidistra nom +aspirant aspirant nom +aspirants aspirant nom +aspirate aspirate nom +aspirated aspirate ver +aspirates aspirate nom +aspirating aspirate ver +aspiration aspiration nom +aspirations aspiration nom +aspirator aspirator nom +aspirators aspirator nom +aspire aspire ver +aspired aspire ver +aspires aspire ver +aspirin aspirin nom +aspiring aspire ver +aspirins aspirin nom +asps asp nom +ass ass nom +assagai assagai nom +assagais assagai nom +assail assail ver +assailant assailant nom +assailants assailant nom +assailed assail ver +assailing assail ver +assails assail ver +assassin assassin nom +assassinate assassinate ver +assassinated assassinate ver +assassinates assassinate ver +assassinating assassinate ver +assassination assassination nom +assassinations assassination nom +assassins assassin nom +assault assault nom +assaulted assault ver +assaulting assault ver +assaults assault nom +assay assay nom +assayed assay ver +assayer assayer nom +assayers assayer nom +assaying assay ver +assays assay nom +assegai assegai nom +assegais assegai nom +assemblage assemblage nom +assemblages assemblage nom +assemble assemble ver +assembled assemble ver +assembler assembler nom +assemblers assembler nom +assembles assemble ver +assemblies assembly nom +assembling assemble ver +assembly assembly nom +assemblyman assemblyman nom +assemblymen assemblyman nom +assemblywoman assemblywoman nom +assemblywomen assemblywoman nom +assent assent nom +assented assent ver +assenting assent ver +assents assent nom +assert assert ver +asserted assert ver +asserting assert ver +assertion assertion nom +assertions assertion nom +assertiveness assertiveness nom +assertivenesses assertiveness nom +asserts assert ver +asses ass nom +assess assess ver +assessed assess ver +assesses assess ver +assessing assess ver +assessment assessment nom +assessments assessment nom +assessor assessor nom +assessors assessor nom +asset asset nom +assets asset nom +asseverate asseverate ver +asseverated asseverate ver +asseverates asseverate ver +asseverating asseverate ver +asseveration asseveration nom +asseverations asseveration nom +asshole asshole nom +assholes asshole nom +assibilate assibilate ver +assibilated assibilate ver +assibilates assibilate ver +assibilating assibilate ver +assiduities assiduity nom +assiduity assiduity nom +assiduousness assiduousness nom +assiduousnesses assiduousness nom +assign assign nom +assignation assignation nom +assignations assignation nom +assigned assign ver +assignee assignee nom +assignees assignee nom +assigner assigner nom +assigners assigner nom +assigning assign ver +assignment assignment nom +assignments assignment nom +assignor assignor nom +assignors assignor nom +assigns assign nom +assimilate assimilate ver +assimilated assimilate ver +assimilates assimilate ver +assimilating assimilate ver +assimilation assimilation nom +assimilations assimilation nom +assist assist nom +assistance assistance nom +assistances assistance nom +assistant assistant nom +assistants assistant nom +assisted assist ver +assisting assist ver +assists assist nom +assize assize nom +assizes assize nom +associabilities associability nom +associability associability nom +associate associate nom +associated associated sw +associates associate nom +associating associate ver +association association nom +associationism associationism nom +associationisms associationism nom +associations association nom +assoil assoil ver +assoiled assoil ver +assoiling assoil ver +assoils assoil ver +assonance assonance nom +assonances assonance nom +assonant assonant nom +assonants assonant nom +assort assort ver +assorted assort ver +assorting assort ver +assortment assortment nom +assortments assortment nom +assorts assort ver +assuage assuage ver +assuaged assuage ver +assuagement assuagement nom +assuagements assuagement nom +assuages assuage ver +assuaging assuage ver +assume assume ver +assumed assume ver +assumes assume ver +assuming assume ver +assumption assumption nom +assumptions assumption nom +assurance assurance nom +assurances assurance nom +assure assure ver +assured assure ver +assuredness assuredness nom +assurednesses assuredness nom +assureds assured nom +assures assure ver +assuring assure ver +astasia astasia nom +astasias astasia nom +astatine astatine nom +astatines astatine nom +aster aster nom +asterisk asterisk nom +asterisked asterisk ver +asterisking asterisk ver +asterisks asterisk nom +asterism asterism nom +asterisms asterism nom +asteroid asteroid nom +asteroids asteroid nom +asters aster nom +asthenia asthenia nom +asthenias asthenia nom +asthenies astheny nom +asthenopia asthenopia nom +asthenopias asthenopia nom +asthenosphere asthenosphere nom +asthenospheres asthenosphere nom +astheny astheny nom +asthma asthma nom +asthmas asthma nom +asthmatic asthmatic nom +asthmatics asthmatic nom +astigmatic astigmatic nom +astigmatics astigmatic nom +astigmatism astigmatism nom +astigmatisms astigmatism nom +astigmia astigmia nom +astigmias astigmia nom +astilbe astilbe nom +astilbes astilbe nom +astonish astonish ver +astonished astonish ver +astonishes astonish ver +astonishing astonish ver +astonishment astonishment nom +astonishments astonishment nom +astound astound ver +astounded astound ver +astounding astound ver +astounds astound ver +astragal astragal nom +astragals astragal nom +astragalus astragalus nom +astragaluses astragalus nom +astrakhan astrakhan nom +astrakhans astrakhan nom +astringencies astringency nom +astringency astringency nom +astringent astringent nom +astringents astringent nom +astrocyte astrocyte nom +astrocytes astrocyte nom +astrodome astrodome nom +astrodomes astrodome nom +astrolabe astrolabe nom +astrolabes astrolabe nom +astrologer astrologer nom +astrologers astrologer nom +astrologies astrology nom +astrologist astrologist nom +astrologists astrologist nom +astrology astrology nom +astrometries astrometry nom +astrometry astrometry nom +astronaut astronaut nom +astronauts astronaut nom +astronavigation astronavigation nom +astronavigations astronavigation nom +astronomer astronomer nom +astronomers astronomer nom +astronomies astronomy nom +astronomy astronomy nom +astrophysicist astrophysicist nom +astrophysicists astrophysicist nom +astute astute adj +astuteness astuteness nom +astutenesses astuteness nom +astuter astute adj +astutest astute adj +asylum asylum nom +asylums asylum nom +asymmetries asymmetry nom +asymmetry asymmetry nom +asymptote asymptote nom +asymptotes asymptote nom +asynchronies asynchrony nom +asynchronism asynchronism nom +asynchronisms asynchronism nom +asynchrony asynchrony nom +asynergies asynergy nom +asynergy asynergy nom +asystole asystole nom +asystoles asystole nom +at at sw +atar atar nom +ataractic ataractic nom +ataractics ataractic nom +ataraxia ataraxia nom +ataraxias ataraxia nom +ataraxic ataraxic nom +ataraxics ataraxic nom +atars atar nom +atavism atavism nom +atavisms atavism nom +atavist atavist nom +atavists atavist nom +ataxia ataxia nom +ataxias ataxia nom +ataxic ataxic nom +ataxics ataxic nom +ataxies ataxy nom +ataxy ataxy nom +ate eat ver +atelectases atelectasis nom +atelectasis atelectasis nom +atelier atelier nom +ateliers atelier nom +atenolol atenolol nom +atenolols atenolol nom +atheism atheism nom +atheisms atheism nom +atheist atheist nom +atheists atheist nom +athenaeum athenaeum nom +athenaeums athenaeum nom +atheneum atheneum nom +atheneums atheneum nom +atherogeneses atherogenesis nom +atherogenesis atherogenesis nom +atheroma atheroma nom +atheromas atheroma nom +atheroscleroses atherosclerosis nom +atherosclerosis atherosclerosis nom +athetoses athetosis nom +athetosis athetosis nom +athlete athlete nom +athletes athlete nom +athleticism athleticism nom +athleticisms athleticism nom +athodyd athodyd nom +athodyds athodyd nom +atlantes atlas nom +atlas atlas nom +atlases atlas nom +atmometer atmometer nom +atmometers atmometer nom +atmosphere atmosphere nom +atmospheres atmosphere nom +atoll atoll nom +atolls atoll nom +atom atom nom +atomisation atomisation nom +atomisations atomisation nom +atomiser atomiser nom +atomisers atomiser nom +atomization atomization nom +atomizations atomization nom +atomize atomize ver +atomized atomize ver +atomizer atomizer nom +atomizers atomizer nom +atomizes atomize ver +atomizing atomize ver +atoms atom nom +atonalism atonalism nom +atonalisms atonalism nom +atonalities atonality nom +atonality atonality nom +atone atone ver +atoned atone ver +atonement atonement nom +atonements atonement nom +atones atone ver +atonia atonia nom +atonias atonia nom +atonicities atonicity nom +atonicity atonicity nom +atonies atony nom +atoning atone ver +atony atony nom +atopies atopy nom +atopy atopy nom +atresia atresia nom +atresias atresia nom +atria atrium nom +atrium atrium nom +atrociousness atrociousness nom +atrociousnesses atrociousness nom +atrocities atrocity nom +atrocity atrocity nom +atrophied atrophy ver +atrophies atrophy nom +atrophy atrophy nom +atrophying atrophy ver +atropine atropine nom +atropines atropine nom +attach attach ver +attache attache nom +attached attach ver +attaches attach ver +attaching attach ver +attachment attachment nom +attachments attachment nom +attack attack nom +attacked attack ver +attacker attacker nom +attackers attacker nom +attacking attack ver +attacks attack nom +attain attain ver +attainabilities attainability nom +attainability attainability nom +attainableness attainableness nom +attainablenesses attainableness nom +attainder attainder nom +attainders attainder nom +attained attain ver +attaining attain ver +attainment attainment nom +attainments attainment nom +attains attain ver +attaint attaint ver +attainted attaint ver +attainting attaint ver +attaints attaint ver +attar attar nom +attars attar nom +attemper attemper ver +attempered attemper ver +attempering attemper ver +attempers attemper ver +attempt attempt nom +attempted attempt ver +attempting attempt ver +attempts attempt nom +attend attend ver +attendance attendance nom +attendances attendance nom +attendant attendant nom +attendants attendant nom +attended attend ver +attender attender nom +attenders attender nom +attending attend ver +attendings attending nom +attends attend ver +attention attention nom +attentions attention nom +attentiveness attentiveness nom +attentivenesses attentiveness nom +attenuate attenuate ver +attenuated attenuate ver +attenuates attenuate ver +attenuating attenuate ver +attenuation attenuation nom +attenuations attenuation nom +attest attest ver +attestant attestant nom +attestants attestant nom +attestation attestation nom +attestations attestation nom +attested attest ver +attesting attest ver +attests attest ver +attic attic nom +attics attic nom +attire attire nom +attired attire ver +attires attire nom +attiring attire ver +attitude attitude nom +attitudes attitude nom +attitudinise attitudinise ver +attitudinised attitudinise ver +attitudinises attitudinise ver +attitudinising attitudinise ver +attitudinize attitudinize ver +attitudinized attitudinize ver +attitudinizes attitudinize ver +attitudinizing attitudinize ver +attorn attorn ver +attorned attorn ver +attorney attorney nom +attorneys attorney nom +attorneyship attorneyship nom +attorneyships attorneyship nom +attorning attorn ver +attorns attorn ver +attract attract ver +attractant attractant nom +attractants attractant nom +attracted attract ver +attracting attract ver +attraction attraction nom +attractions attraction nom +attractiveness attractiveness nom +attractivenesses attractiveness nom +attracts attract ver +attribute attribute nom +attributed attribute ver +attributes attribute nom +attributing attribute ver +attribution attribution nom +attributions attribution nom +attributive attributive nom +attributives attributive nom +attrition attrition nom +attritions attrition nom +attune attune ver +attuned attune ver +attunes attune ver +attuning attune ver +atypicalities atypicality nom +atypicality atypicality nom +aubergine aubergine nom +aubergines aubergine nom +auburn auburn nom +auburns auburn nom +auction auction nom +auctioned auction ver +auctioneer auctioneer nom +auctioneered auctioneer ver +auctioneering auctioneer ver +auctioneers auctioneer nom +auctioning auction ver +auctions auction nom +audaciousness audaciousness nom +audaciousnesses audaciousness nom +audacities audacity nom +audacity audacity nom +audad audad nom +audads audad nom +audibilities audibility nom +audibility audibility nom +audible audible nom +audibleness audibleness nom +audiblenesses audibleness nom +audibles audible nom +audience audience nom +audiences audience nom +audile audile nom +audiles audile nom +audio audio nom +audiobook audiobook nom +audiobooks audiobook nom +audiocassette audiocassette nom +audiocassettes audiocassette nom +audiogram audiogram nom +audiograms audiogram nom +audiologies audiology nom +audiologist audiologist nom +audiologists audiologist nom +audiology audiology nom +audiometer audiometer nom +audiometers audiometer nom +audiometries audiometry nom +audiometry audiometry nom +audiophile audiophile nom +audiophiles audiophile nom +audios audio nom +audiotape audiotape nom +audiotapes audiotape nom +audiovisual audiovisual nom +audiovisuals audiovisual nom +audit audit nom +audited audit ver +auditing audit ver +audition audition nom +auditioned audition ver +auditioning audition ver +auditions audition nom +auditor auditor nom +auditories auditory nom +auditorium auditorium nom +auditoriums auditorium nom +auditors auditor nom +auditory auditory nom +audits audit nom +augend augend nom +augends augend nom +auger auger nom +augers auger nom +aught aught nom +aughts aught nom +augite augite nom +augites augite nom +augment augment nom +augmentation augmentation nom +augmentations augmentation nom +augmentative augmentative nom +augmentatives augmentative nom +augmented augment ver +augmenter augmenter nom +augmenters augmenter nom +augmenting augment ver +augments augment nom +augur augur nom +augured augur ver +auguries augury nom +auguring augur ver +augurs augur nom +augury augury nom +august august adj +auguster august adj +augustest august adj +augustness augustness nom +augustnesses augustness nom +auk auk nom +auklet auklet nom +auklets auklet nom +auks auk nom +auld auld adj +aulder auld adj +auldest auld adj +aunt aunt nom +auntie auntie nom +aunties auntie nom +aunts aunt nom +aunty aunty nom +aura aura nom +auras aura nom +aureola aureola nom +aureolas aureola nom +aureole aureole nom +aureoles aureole nom +auricle auricle nom +auricles auricle nom +auricula auricula nom +auricular auricular nom +auriculars auricular nom +auriculas auricula nom +aurified aurify ver +aurifies aurify ver +aurify aurify ver +aurifying aurify ver +aurochs aurochs nom +aurochses aurochs nom +aurora aurora nom +auroras aurora nom +auscultate auscultate ver +auscultated auscultate ver +auscultates auscultate ver +auscultating auscultate ver +auscultation auscultation nom +auscultations auscultation nom +auspex auspex nom +auspicate auspicate ver +auspicated auspicate ver +auspicates auspicate ver +auspicating auspicate ver +auspice auspice nom +auspices auspex nom +auspiciousness auspiciousness nom +auspiciousnesses auspiciousness nom +austenite austenite nom +austenites austenite nom +austere austere adj +austereness austereness nom +austerenesses austereness nom +austerer austere adj +austerest austere adj +austerities austerity nom +austerity austerity nom +austral austral nom +australes austral nom +australopithecine australopithecine nom +australopithecines australopithecine nom +autacoid autacoid nom +autacoids autacoid nom +autarchies autarchy nom +autarchy autarchy nom +autarkies autarky nom +autarky autarky nom +authenticate authenticate ver +authenticated authenticate ver +authenticates authenticate ver +authenticating authenticate ver +authentication authentication nom +authentications authentication nom +authenticities authenticity nom +authenticity authenticity nom +author author nom +authored author ver +authoress authoress nom +authoresses authoress nom +authoring author ver +authorisation authorisation nom +authorisations authorisation nom +authorise authorise ver +authorised authorise ver +authorises authorise ver +authorising authorise ver +authoritarian authoritarian nom +authoritarianism authoritarianism nom +authoritarianisms authoritarianism nom +authoritarians authoritarian nom +authoritativeness authoritativeness nom +authoritativenesses authoritativeness nom +authorities authority nom +authority authority nom +authorization authorization nom +authorizations authorization nom +authorize authorize ver +authorized authorize ver +authorizes authorize ver +authorizing authorize ver +authors author nom +authorship authorship nom +authorships authorship nom +autism autism nom +autisms autism nom +auto auto nom +autobahn autobahn nom +autobahns autobahn nom +autobiographer autobiographer nom +autobiographers autobiographer nom +autobiographies autobiography nom +autobiography autobiography nom +autobus autobus nom +autobuses autobus nom +autocatalyses autocatalysis nom +autocatalysis autocatalysis nom +autochthonies autochthony nom +autochthony autochthony nom +autoclave autoclave nom +autoclaved autoclave ver +autoclaves autoclave nom +autoclaving autoclave ver +autocoid autocoid nom +autocoids autocoid nom +autocracies autocracy nom +autocracy autocracy nom +autocrat autocrat nom +autocrats autocrat nom +autocue autocue nom +autocues autocue nom +autodidact autodidact nom +autodidacts autodidact nom +autoeroticism autoeroticism nom +autoeroticisms autoeroticism nom +autoerotism autoerotism nom +autoerotisms autoerotism nom +autogamies autogamy nom +autogamy autogamy nom +autogeneses autogenesis nom +autogenesis autogenesis nom +autogenies autogeny nom +autogeny autogeny nom +autogiro autogiro nom +autogiros autogiro nom +autograft autograft nom +autografts autograft nom +autograph autograph nom +autographed autograph ver +autographing autograph ver +autographs autograph nom +autogyro autogyro nom +autogyros autogyro nom +autoimmunities autoimmunity nom +autoimmunity autoimmunity nom +autoloader autoloader nom +autoloaders autoloader nom +autolyses autolysis nom +autolysis autolysis nom +automaker automaker nom +automakers automaker nom +automat automat nom +automate automate ver +automated automate ver +automates automate ver +automatic automatic nom +automatics automatic nom +automating automate ver +automation automation nom +automations automation nom +automatism automatism nom +automatisms automatism nom +automatize automatize ver +automatized automatize ver +automatizes automatize ver +automatizing automatize ver +automaton automaton nom +automatons automaton nom +automats automat nom +automobile automobile nom +automobiled automobile ver +automobiles automobile nom +automobiling automobile ver +automobilist automobilist nom +automobilists automobilist nom +autonomies autonomy nom +autonomy autonomy nom +autophyte autophyte nom +autophytes autophyte nom +autopilot autopilot nom +autopilots autopilot nom +autoplasties autoplasty nom +autoplasty autoplasty nom +autopsied autopsy ver +autopsies autopsy nom +autopsy autopsy nom +autopsying autopsy ver +autoradiograph autoradiograph nom +autoradiographies autoradiography nom +autoradiographs autoradiograph nom +autoradiography autoradiography nom +autos auto nom +autosome autosome nom +autosomes autosome nom +autostrada autostrada nom +autostradas autostrada nom +autosuggestion autosuggestion nom +autosuggestions autosuggestion nom +autotelism autotelism nom +autotelisms autotelism nom +autotomies autotomy nom +autotomize autotomize ver +autotomized autotomize ver +autotomizes autotomize ver +autotomizing autotomize ver +autotomy autotomy nom +autotroph autotroph nom +autotrophs autotroph nom +autotype autotype nom +autotypes autotype nom +autotypies autotypy nom +autotypy autotypy nom +autoworker autoworker nom +autoworkers autoworker nom +autumn autumn nom +autumns autumn nom +auxeses auxesis nom +auxesis auxesis nom +auxiliaries auxiliary nom +auxiliary auxiliary nom +auxin auxin nom +auxins auxin nom +avadavat avadavat nom +avadavats avadavat nom +avail avail nom +availabilities availability nom +availability availability nom +available available sw +availableness availableness nom +availablenesses availableness nom +availed avail ver +availing avail ver +avails avail nom +avalanche avalanche nom +avalanched avalanche ver +avalanches avalanche nom +avalanching avalanche ver +avarice avarice nom +avarices avarice nom +avariciousness avariciousness nom +avariciousnesses avariciousness nom +avatar avatar nom +avatars avatar nom +avenge avenge ver +avenged avenge ver +avenger avenger nom +avengers avenger nom +avenges avenge ver +avenging avenge ver +avens avens nom +avenses avens nom +aventail aventail nom +aventails aventail nom +aventurine aventurine nom +aventurines aventurine nom +avenue avenue nom +avenues avenue nom +aver aver ver +average average nom +averaged average ver +averageness averageness nom +averagenesses averageness nom +averages average nom +averaging average ver +averment averment nom +averments averment nom +averred aver ver +averring aver ver +avers aver ver +aversion aversion nom +aversions aversion nom +avert avert ver +averted avert ver +averting avert ver +averts avert ver +avianize avianize ver +avianized avianize ver +avianizes avianize ver +avianizing avianize ver +aviaries aviary nom +aviary aviary nom +aviate aviate ver +aviated aviate ver +aviates aviate ver +aviating aviate ver +aviation aviation nom +aviations aviation nom +aviator aviator nom +aviators aviator nom +aviatress aviatress nom +aviatresses aviatress nom +aviatrix aviatrix nom +aviatrixes aviatrix nom +avid avid adj +avider avid adj +avidest avid adj +avidities avidity nom +avidity avidity nom +avidness avidness nom +avidnesses avidness nom +avifauna avifauna nom +avifaunas avifauna nom +avitaminoses avitaminosis nom +avitaminosis avitaminosis nom +avo avo nom +avocado avocado nom +avocados avocado nom +avocation avocation nom +avocations avocation nom +avocet avocet nom +avocets avocet nom +avoid avoid ver +avoidance avoidance nom +avoidances avoidance nom +avoided avoid ver +avoiding avoid ver +avoids avoid ver +avoirdupois avoirdupois nom +avoirdupoises avoirdupois nom +avos avo nom +avouch avouch ver +avouched avouch ver +avouches avouch ver +avouching avouch ver +avow avow ver +avowal avowal nom +avowals avowal nom +avowed avow ver +avowing avow ver +avows avow ver +avulse avulse ver +avulsed avulse ver +avulses avulse ver +avulsing avulse ver +avulsion avulsion nom +avulsions avulsion nom +await await ver +awaited await ver +awaiting await ver +awaits await ver +awake awake ver +awaken awaken ver +awakened awaken ver +awakening awaken ver +awakenings awakening nom +awakens awaken ver +awakes awake ver +awaking awake ver +award award nom +awarded award ver +awarding award ver +awards award nom +aware aware adj +awareness awareness nom +awarenesses awareness nom +awarer aware adj +awarest aware adj +away away sw +awayness awayness nom +awaynesses awayness nom +awe awe nom +awed awe ver +awes awe nom +awesomeness awesomeness nom +awesomenesses awesomeness nom +awful awful adj +awfuller awful adj +awfullest awful adj +awfully awfully sw +awfulness awfulness nom +awfulnesses awfulness nom +awing awe ver +awkward awkward adj +awkwarder awkward adj +awkwardest awkward adj +awkwardness awkwardness nom +awkwardnesses awkwardness nom +awl awl nom +awls awl nom +awlwort awlwort nom +awlworts awlwort nom +awn awn nom +awnier awny adj +awniest awny adj +awning awning nom +awnings awning nom +awns awn nom +awny awny adj +awoke awake ver +awoken awake ver +awol awol nom +awols awol nom +awrier awry adj +awriest awry adj +awry awry adj +ax ax nom +axe axe nom +axed ax ver +axes ax nom +axil axil nom +axilla axilla nom +axillas axilla nom +axils axil nom +axing ax ver +axiologies axiology nom +axiology axiology nom +axiom axiom nom +axioms axiom nom +axis axis nom +axises axis nom +axle axle nom +axles axle nom +axletree axletree nom +axletrees axletree nom +axolemma axolemma nom +axolemmas axolemma nom +axolotl axolotl nom +axolotls axolotl nom +axon axon nom +axone axone nom +axones axone nom +axons axon nom +axseed axseed nom +axseeds axseed nom +ay ay nom +ayah ayah nom +ayahs ayah nom +ayatollah ayatollah nom +ayatollahs ayatollah nom +aye aye nom +ayes ay nom +ayin ayin nom +ayins ayin nom +azalea azalea nom +azaleas azalea nom +azathioprine azathioprine nom +azathioprines azathioprine nom +azide azide nom +azides azide nom +azidothymidine azidothymidine nom +azidothymidines azidothymidine nom +azimuth azimuth nom +azimuths azimuth nom +azote azote nom +azotemia azotemia nom +azotemias azotemia nom +azotes azote nom +azoturia azoturia nom +azoturias azoturia nom +azure azure nom +azures azure nom +b b sw +baa baa nom +baaed baa ver +baaing baa ver +baas baa nom +baases baas nom +baba baba nom +babas baba nom +babassu babassu nom +babassus babassu nom +babbitt babbitt nom +babbitted babbitt ver +babbitting babbitt ver +babbitts babbitt nom +babble babble nom +babbled babble ver +babbler babbler nom +babblers babbler nom +babbles babble nom +babbling babble ver +babblings babbling nom +babe babe nom +babel babel nom +babels babel nom +babes babe nom +babied baby ver +babier baby adj +babies baby nom +babiest baby adj +babiroussa babiroussa nom +babiroussas babiroussa nom +babirusa babirusa nom +babirusas babirusa nom +babirussa babirussa nom +babirussas babirussa nom +baboo baboo nom +baboon baboon nom +baboons baboon nom +baboos baboo nom +babu babu nom +babus babu nom +babushka babushka nom +babushkas babushka nom +baby baby adj +babyhood babyhood nom +babyhoods babyhood nom +babying baby ver +babysat babysit ver +babysit babysit ver +babysits babysit ver +babysitter babysitter nom +babysitters babysitter nom +babysitting babysit ver +babysittings babysitting nom +bacca bacca nom +baccalaureate baccalaureate nom +baccalaureates baccalaureate nom +baccarat baccarat nom +baccarats baccarat nom +baccas bacca nom +bacchanal bacchanal nom +bacchanalia bacchanalia nom +bacchanalian bacchanalian nom +bacchanalians bacchanalian nom +bacchanals bacchanal nom +bacchant bacchant nom +bacchante bacchante nom +bacchantes bacchante nom +bacchants bacchant nom +baccies baccy nom +baccy baccy nom +bach bach ver +bached bach ver +bachelor bachelor nom +bachelorhood bachelorhood nom +bachelorhoods bachelorhood nom +bachelors bachelor nom +baches bach ver +baching bach ver +bacilli bacillus nom +bacillus bacillus nom +bacitracin bacitracin nom +bacitracins bacitracin nom +back back nom +backache backache nom +backaches backache nom +backband backband nom +backbands backband nom +backbench backbench nom +backbencher backbencher nom +backbenchers backbencher nom +backbenches backbench nom +backbend backbend nom +backbends backbend nom +backbit backbite ver +backbite backbite ver +backbiter backbiter nom +backbiters backbiter nom +backbites backbite ver +backbiting backbite ver +backbitten backbite ver +backboard backboard nom +backboards backboard nom +backbone backbone nom +backbones backbone nom +backchat backchat nom +backchats backchat nom +backcloth backcloth nom +backcloths backcloth nom +backcross backcross ver +backcrossed backcross ver +backcrosses backcross ver +backcrossing backcross ver +backdate backdate ver +backdated backdate ver +backdates backdate ver +backdating backdate ver +backdown backdown nom +backdowns backdown nom +backdrop backdrop nom +backdropped backdrop ver +backdropping backdrop ver +backdrops backdrop nom +backed back ver +backer backer nom +backers backer nom +backfield backfield nom +backfields backfield nom +backfire backfire nom +backfired backfire ver +backfires backfire nom +backfiring backfire ver +backflow backflow nom +backflows backflow nom +backgammon backgammon nom +backgammoned backgammon ver +backgammoning backgammon ver +backgammons backgammon nom +background background nom +backgrounded background ver +backgrounder backgrounder nom +backgrounders backgrounder nom +backgrounding background ver +backgrounds background nom +backhand backhand nom +backhanded backhand ver +backhander backhander nom +backhanders backhander nom +backhanding backhand ver +backhands backhand nom +backhoe backhoe nom +backhoes backhoe nom +backing back ver +backings backing nom +backlash backlash nom +backlashed backlash ver +backlashes backlash nom +backlashing backlash ver +backlog backlog nom +backlogged backlog ver +backlogging backlog ver +backlogs backlog nom +backpack backpack nom +backpacked backpack ver +backpacker backpacker nom +backpackers backpacker nom +backpacking backpack ver +backpackings backpacking nom +backpacks backpack nom +backpedal backpedal ver +backpedaled backpedal ver +backpedaling backpedal ver +backpedals backpedal ver +backplate backplate nom +backplates backplate nom +backrest backrest nom +backrests backrest nom +backroom backroom nom +backrooms backroom nom +backs back nom +backsaw backsaw nom +backsaws backsaw nom +backscatter backscatter ver +backscattered backscatter ver +backscattering backscatter ver +backscatters backscatter ver +backscratcher backscratcher nom +backscratchers backscratcher nom +backseat backseat nom +backseats backseat nom +backsheesh backsheesh nom +backsheeshes backsheesh nom +backside backside nom +backsides backside nom +backslap backslap ver +backslapped backslap ver +backslapper backslapper nom +backslappers backslapper nom +backslapping backslap ver +backslappings backslapping nom +backslaps backslap ver +backslash backslash nom +backslashes backslash nom +backslid backslide ver +backslide backslide ver +backslider backslider nom +backsliders backslider nom +backslides backslide ver +backsliding backslide ver +backspace backspace nom +backspaced backspace ver +backspacer backspacer nom +backspacers backspacer nom +backspaces backspace nom +backspacing backspace ver +backspin backspin nom +backspins backspin nom +backstage backstage nom +backstages backstage nom +backstay backstay nom +backstays backstay nom +backstitch backstitch nom +backstitched backstitch ver +backstitches backstitch nom +backstitching backstitch ver +backstop backstop nom +backstopped backstop ver +backstopping backstop ver +backstops backstop nom +backstretch backstretch nom +backstretches backstretch nom +backstroke backstroke nom +backstroked backstroke ver +backstrokes backstroke nom +backstroking backstroke ver +backswimmer backswimmer nom +backswimmers backswimmer nom +backsword backsword nom +backswords backsword nom +backtalk backtalk nom +backtalks backtalk nom +backtrack backtrack ver +backtracked backtrack ver +backtracking backtrack ver +backtracks backtrack ver +backup backup nom +backups backup nom +backwardness backwardness nom +backwardnesses backwardness nom +backwash backwash nom +backwashed backwash ver +backwashes backwash nom +backwashing backwash ver +backwater backwater nom +backwaters backwater nom +backwoodsman backwoodsman nom +backwoodsmen backwoodsman nom +backyard backyard nom +backyards backyard nom +bacon bacon nom +bacons bacon nom +bacteremia bacteremia nom +bacteremias bacteremia nom +bacteria bacterium nom +bacterias bacteria nom +bactericide bactericide nom +bactericides bactericide nom +bacteriochlorophyll bacteriochlorophyll nom +bacteriochlorophylls bacteriochlorophyll nom +bacteriologies bacteriology nom +bacteriologist bacteriologist nom +bacteriologists bacteriologist nom +bacteriology bacteriology nom +bacteriolyses bacteriolysis nom +bacteriolysis bacteriolysis nom +bacteriophage bacteriophage nom +bacteriophages bacteriophage nom +bacteriostases bacteriostasis nom +bacteriostasis bacteriostasis nom +bacteriostat bacteriostat nom +bacteriostats bacteriostat nom +bacterise bacterise ver +bacterised bacterise ver +bacterises bacterise ver +bacterising bacterise ver +bacterium bacterium nom +bacterize bacterize ver +bacterized bacterize ver +bacterizes bacterize ver +bacterizing bacterize ver +bacteroid bacteroid nom +bacteroids bacteroid nom +bad bad adj +badder bad adj +baddest bad adj +baddie baddie nom +baddies baddie nom +baddy baddy nom +bade bid ver +badge badge nom +badged badge ver +badger badger nom +badgered badger ver +badgering badger ver +badgers badger nom +badges badge nom +badging badge ver +badinage badinage nom +badinaged badinage ver +badinages badinage nom +badinaging badinage ver +badman badman nom +badmen badman nom +badminton badminton nom +badmintons badminton nom +badmouth badmouth ver +badmouthed badmouth ver +badmouthing badmouth ver +badmouths badmouth ver +badness badness nom +badnesses badness nom +bads bad nom +baffle baffle nom +baffled baffle ver +bafflement bafflement nom +bafflements bafflement nom +baffler baffler nom +bafflers baffler nom +baffles baffle nom +baffling baffle ver +bag bag nom +bagasse bagasse nom +bagasses bagasse nom +bagatelle bagatelle nom +bagatelles bagatelle nom +bagel bagel nom +bagels bagel nom +bagful bagful nom +bagfuls bagful nom +baggage baggage nom +baggages baggage nom +bagged bag ver +bagger bagger nom +baggers bagger nom +baggier baggy adj +baggiest baggy adj +bagginess bagginess nom +bagginesses bagginess nom +bagging bag ver +baggings bagging nom +baggy baggy adj +bagman bagman nom +bagmen bagman nom +bagnio bagnio nom +bagnios bagnio nom +bagpipe bagpipe nom +bagpiped bagpipe ver +bagpiper bagpiper nom +bagpipers bagpiper nom +bagpipes bagpipe nom +bagpiping bagpipe ver +bags bag nom +baguet baguet nom +baguets baguet nom +baguette baguette nom +baguettes baguette nom +baht baht nom +bahts baht nom +bail bail nom +bailed bail ver +bailee bailee nom +bailees bailee nom +bailey bailey nom +baileys bailey nom +bailiff bailiff nom +bailiffs bailiff nom +bailiffship bailiffship nom +bailiffships bailiffship nom +bailing bail ver +bailiwick bailiwick nom +bailiwicks bailiwick nom +bailment bailment nom +bailments bailment nom +bailor bailor nom +bailors bailor nom +bailout bailout nom +bailouts bailout nom +bails bail nom +bailsman bailsman nom +bailsmen bailsman nom +bairn bairn nom +bairns bairn nom +bait bait nom +baited bait ver +baiting bait ver +baitings baiting nom +baits bait nom +baiza baiza nom +baizas baiza nom +baize baize nom +baized baize ver +baizes baize nom +baizing baize ver +bake bake nom +bakeapple bakeapple nom +bakeapples bakeapple nom +baked bake ver +baker baker nom +bakeries bakery nom +bakers baker nom +bakery bakery nom +bakes bake nom +bakeshop bakeshop nom +bakeshops bakeshop nom +baking bake ver +bakings baking nom +baklava baklava nom +baklavas baklava nom +baksheesh baksheesh nom +baksheeshed baksheesh ver +baksheeshes baksheesh nom +baksheeshing baksheesh ver +bakshish bakshish nom +bakshishes bakshish nom +balaclava balaclava nom +balaclavas balaclava nom +balalaika balalaika nom +balalaikas balalaika nom +balance balance nom +balanced balance ver +balancer balancer nom +balancers balancer nom +balances balance nom +balancing balance ver +balas balas nom +balases balas nom +balata balata nom +balatas balata nom +balboa balboa nom +balboas balboa nom +balbriggan balbriggan nom +balbriggans balbriggan nom +balconies balcony nom +balcony balcony nom +bald bald adj +baldachin baldachin nom +baldachins baldachin nom +balded bald ver +balder bald adj +balderdash balderdash nom +balderdashes balderdash nom +baldest bald adj +baldhead baldhead nom +baldheads baldhead nom +baldies baldy nom +balding bald ver +baldness baldness nom +baldnesses baldness nom +baldpate baldpate nom +baldpates baldpate nom +baldric baldric nom +baldrick baldrick nom +baldricks baldrick nom +baldrics baldric nom +balds bald ver +baldy baldy nom +bale bale nom +baled bale ver +baleen baleen nom +baleens baleen nom +balefire balefire nom +balefires balefire nom +baleful baleful adj +balefuller baleful adj +balefullest baleful adj +balefulness balefulness nom +balefulnesses balefulness nom +baler baler nom +balers baler nom +bales bale nom +baling bale ver +balk balk nom +balkanize balkanize ver +balkanized balkanize ver +balkanizes balkanize ver +balkanizing balkanize ver +balked balk ver +balkier balky adj +balkiest balky adj +balkiness balkiness nom +balkinesses balkiness nom +balking balk ver +balkline balkline nom +balklines balkline nom +balks balk nom +balky balky adj +ball ball nom +ballad ballad nom +ballade ballade nom +balladeer balladeer nom +balladeers balladeer nom +ballades ballade nom +balladries balladry nom +balladry balladry nom +ballads ballad nom +ballast ballast nom +ballasted ballast ver +ballasting ballast ver +ballasts ballast nom +ballcock ballcock nom +ballcocks ballcock nom +balled ball ver +ballerina ballerina nom +ballerinas ballerina nom +ballet ballet nom +balletomane balletomane nom +balletomanes balletomane nom +ballets ballet nom +ballgame ballgame nom +ballgames ballgame nom +ballier bally adj +balliest bally adj +balling ball ver +ballock ballock nom +ballocks ballock nom +balloon balloon nom +ballooned balloon ver +balloonfish balloonfish nom +ballooning balloon ver +balloonings ballooning nom +balloonist balloonist nom +balloonists balloonist nom +balloons balloon nom +ballot ballot nom +balloted ballot ver +balloting ballot ver +ballots ballot nom +ballpark ballpark nom +ballparks ballpark nom +ballpen ballpen nom +ballpens ballpen nom +ballplayer ballplayer nom +ballplayers ballplayer nom +ballpoint ballpoint nom +ballpoints ballpoint nom +ballroom ballroom nom +ballrooms ballroom nom +balls ball nom +ballsier ballsy adj +ballsiest ballsy adj +ballsy ballsy adj +bally bally adj +ballyhoo ballyhoo nom +ballyhooed ballyhoo ver +ballyhooing ballyhoo ver +ballyhoos ballyhoo nom +ballyrag ballyrag ver +ballyragged ballyrag ver +ballyragging ballyrag ver +ballyrags ballyrag ver +balm balm nom +balmier balmy adj +balmiest balmy adj +balminess balminess nom +balminesses balminess nom +balmoral balmoral nom +balmorals balmoral nom +balms balm nom +balmy balmy adj +baloney baloney nom +baloneys baloney nom +balsa balsa nom +balsam balsam nom +balsams balsam nom +balsas balsa nom +baluster baluster nom +balusters baluster nom +balustrade balustrade nom +balustrades balustrade nom +bambino bambino nom +bambinos bambino nom +bamboo bamboo nom +bamboos bamboo nom +bamboozle bamboozle ver +bamboozled bamboozle ver +bamboozles bamboozle ver +bamboozling bamboozle ver +ban ban nom +banal banal adj +banaler banal adj +banalest banal adj +banalities banality nom +banality banality nom +banana banana nom +bananas banana nom +band band nom +bandage bandage nom +bandaged bandage ver +bandages bandage nom +bandaging bandage ver +bandana bandana nom +bandanas bandana nom +bandanna bandanna nom +bandannas bandanna nom +bandbox bandbox nom +bandboxes bandbox nom +bandeau bandeau nom +bandeaux bandeau nom +banded band ver +bandelet bandelet nom +bandelets bandelet nom +banderilla banderilla nom +banderillas banderilla nom +banderillero banderillero nom +banderilleros banderillero nom +bandicoot bandicoot nom +bandicoots bandicoot nom +bandied bandy ver +bandier bandy adj +bandies bandy nom +bandiest bandy adj +banding band ver +bandings banding nom +bandit bandit nom +banditries banditry nom +banditry banditry nom +bandits bandit nom +bandleader bandleader nom +bandleaders bandleader nom +bandmaster bandmaster nom +bandmasters bandmaster nom +bandoleer bandoleer nom +bandoleers bandoleer nom +bandolier bandolier nom +bandoliers bandolier nom +bands band nom +bandsaw bandsaw nom +bandsaws bandsaw nom +bandsman bandsman nom +bandsmen bandsman nom +bandstand bandstand nom +bandstands bandstand nom +bandwagon bandwagon nom +bandwagons bandwagon nom +bandwidth bandwidth nom +bandwidths bandwidth nom +bandy bandy adj +bandying bandy ver +bane bane nom +baneberries baneberry nom +baneberry baneberry nom +baneful baneful adj +banefuller baneful adj +banefullest baneful adj +banes bane nom +bang bang nom +banged bang ver +banger banger nom +bangers banger nom +banging bang ver +bangle bangle nom +bangles bangle nom +bangs bang nom +bangtail bangtail nom +bangtails bangtail nom +bani ban nom +banian banian nom +banians banian nom +banish banish ver +banished banish ver +banishes banish ver +banishing banish ver +banishment banishment nom +banishments banishment nom +banister banister nom +banisters banister nom +banjo banjo nom +banjoist banjoist nom +banjoists banjoist nom +banjos banjo nom +bank bank nom +bankbook bankbook nom +bankbooks bankbook nom +bankcard bankcard nom +bankcards bankcard nom +banked bank ver +banker banker nom +bankers banker nom +banking bank ver +bankings banking nom +banknote banknote nom +banknotes banknote nom +bankroll bankroll nom +bankrolled bankroll ver +bankrolling bankroll ver +bankrolls bankroll nom +bankrupt bankrupt nom +bankruptcies bankruptcy nom +bankruptcy bankruptcy nom +bankrupted bankrupt ver +bankrupting bankrupt ver +bankrupts bankrupt nom +banks bank nom +banksia banksia nom +banksias banksia nom +banned ban ver +banner banner nom +banneret banneret nom +bannerets banneret nom +banners banner nom +banning ban ver +bannister bannister nom +bannisters bannister nom +bannock bannock nom +bannocks bannock nom +banquet banquet nom +banqueted banquet ver +banqueter banqueter nom +banqueters banqueter nom +banqueting banquet ver +banquets banquet nom +banquette banquette nom +banquettes banquette nom +bans ban nom +banshee banshee nom +banshees banshee nom +banshie banshie nom +banshies banshie nom +bantam bantam nom +bantams bantam nom +bantamweight bantamweight nom +bantamweights bantamweight nom +banteng banteng nom +bantengs banteng nom +banter banter nom +bantered banter ver +bantering banter ver +banters banter nom +banting banting nom +bantings banting nom +banyan banyan nom +banyans banyan nom +banzai banzai nom +banzais banzai nom +baobab baobab nom +baobabs baobab nom +bap bap nom +baps bap nom +baptise baptise ver +baptised baptise ver +baptises baptise ver +baptising baptise ver +baptism baptism nom +baptisms baptism nom +baptisteries baptistery nom +baptistery baptistery nom +baptistries baptistry nom +baptistry baptistry nom +baptize baptize ver +baptized baptize ver +baptizer baptizer nom +baptizers baptizer nom +baptizes baptize ver +baptizing baptize ver +bar bar nom +barb barb nom +barbarian barbarian nom +barbarianism barbarianism nom +barbarianisms barbarianism nom +barbarians barbarian nom +barbarisation barbarisation nom +barbarisations barbarisation nom +barbarise barbarise ver +barbarised barbarise ver +barbarises barbarise ver +barbarising barbarise ver +barbarism barbarism nom +barbarisms barbarism nom +barbarities barbarity nom +barbarity barbarity nom +barbarization barbarization nom +barbarizations barbarization nom +barbarize barbarize ver +barbarized barbarize ver +barbarizes barbarize ver +barbarizing barbarize ver +barbarousness barbarousness nom +barbarousnesses barbarousness nom +barbasco barbasco nom +barbascoes barbasco nom +barbascos barbasco nom +barbecue barbecue nom +barbecued barbecue ver +barbecues barbecue nom +barbecuing barbecue ver +barbed barb ver +barbel barbel nom +barbell barbell nom +barbells barbell nom +barbels barbel nom +barbeque barbeque nom +barbequed barbeque ver +barbeques barbeque nom +barbequing barbeque ver +barber barber nom +barbered barber ver +barbering barber ver +barberries barberry nom +barberry barberry nom +barbers barber nom +barbershop barbershop nom +barbershops barbershop nom +barbet barbet nom +barbets barbet nom +barbette barbette nom +barbettes barbette nom +barbican barbican nom +barbicans barbican nom +barbing barb ver +barbital barbital nom +barbitals barbital nom +barbitone barbitone nom +barbitones barbitone nom +barbiturate barbiturate nom +barbiturates barbiturate nom +barbs barb nom +barbwire barbwire nom +barbwires barbwire nom +barcarole barcarole nom +barcaroles barcarole nom +barcarolle barcarolle nom +barcarolles barcarolle nom +bard bard nom +barded bard ver +barding bard ver +bardolatries bardolatry nom +bardolatry bardolatry nom +bards bard nom +bare bare adj +bared bare ver +bareness bareness nom +barenesses bareness nom +barer bare adj +bares bare ver +barest bare adj +barf barf nom +barfed barf ver +barfing barf ver +barflies barfly nom +barfly barfly nom +barfs barf nom +bargain bargain nom +bargained bargain ver +bargainer bargainer nom +bargainers bargainer nom +bargaining bargain ver +bargains bargain nom +barge barge nom +barged barge ver +bargee bargee nom +bargees bargee nom +bargello bargello nom +bargellos bargello nom +bargeman bargeman nom +bargemen bargeman nom +barges barge nom +barging barge ver +barhop barhop ver +barhopped barhop ver +barhopping barhop ver +barhops barhop ver +barilla barilla nom +barillas barilla nom +baring bare ver +barite barite nom +barites barite nom +baritone baritone nom +baritones baritone nom +barium barium nom +bariums barium nom +bark bark nom +barked bark ver +barkeep barkeep nom +barkeeper barkeeper nom +barkeepers barkeeper nom +barkeeps barkeep nom +barker barker nom +barkers barker nom +barkier barky adj +barkiest barky adj +barking bark ver +barks bark nom +barky barky adj +barley barley nom +barleycorn barleycorn nom +barleycorns barleycorn nom +barleys barley nom +barm barm nom +barmaid barmaid nom +barmaids barmaid nom +barman barman nom +barmbrack barmbrack nom +barmbracks barmbrack nom +barmen barman nom +barmier barmy adj +barmiest barmy adj +barms barm nom +barmy barmy adj +barn barn nom +barnacle barnacle nom +barnacles barnacle nom +barnburner barnburner nom +barnburners barnburner nom +barndoor barndoor nom +barndoors barndoor nom +barned barn ver +barning barn ver +barns barn nom +barnstorm barnstorm ver +barnstormed barnstorm ver +barnstormer barnstormer nom +barnstormers barnstormer nom +barnstorming barnstorm ver +barnstorms barnstorm ver +barnyard barnyard nom +barnyards barnyard nom +barograph barograph nom +barographs barograph nom +barometer barometer nom +barometers barometer nom +baron baron nom +baronage baronage nom +baronages baronage nom +baroness baroness nom +baronesses baroness nom +baronet baronet nom +baronetcies baronetcy nom +baronetcy baronetcy nom +baronets baronet nom +barong barong nom +barongs barong nom +baronies barony nom +barons baron nom +barony barony nom +baroque baroque nom +baroques baroque nom +baroreceptor baroreceptor nom +baroreceptors baroreceptor nom +barouche barouche nom +barouches barouche nom +barque barque nom +barques barque nom +barrack barrack nom +barracked barrack ver +barracking barrack ver +barrackings barracking nom +barracks barrack nom +barracuda barracuda nom +barracudas barracuda nom +barrage barrage nom +barraged barrage ver +barrages barrage nom +barraging barrage ver +barramunda barramunda nom +barramundas barramunda nom +barre barre nom +barred bar ver +barrel barrel nom +barreled barrel ver +barrelfish barrelfish nom +barrelful barrelful nom +barrelfuls barrelful nom +barrelhouse barrelhouse nom +barrelhouses barrelhouse nom +barreling barrel ver +barrels barrel nom +barren barren adj +barrener barren adj +barrenest barren adj +barrenness barrenness nom +barrennesses barrenness nom +barrens barren nom +barrenwort barrenwort nom +barrenworts barrenwort nom +barres barre nom +barrette barrette nom +barretter barretter nom +barretters barretter nom +barrettes barrette nom +barricade barricade nom +barricaded barricade ver +barricades barricade nom +barricading barricade ver +barricado barricado ver +barricadoed barricado ver +barricadoes barricado ver +barricadoing barricado ver +barricados barricado ver +barrier barrier nom +barriers barrier nom +barring bar ver +barrings barring nom +barrio barrio nom +barrios barrio nom +barrister barrister nom +barristers barrister nom +barroom barroom nom +barrooms barroom nom +barrow barrow nom +barrows barrow nom +bars bar nom +bartender bartender nom +bartenders bartender nom +barter barter nom +bartered barter ver +barterer barterer nom +barterers barterer nom +bartering barter ver +barters barter nom +barycenter barycenter nom +barycenters barycenter nom +barye barye nom +baryes barye nom +baryon baryon nom +baryons baryon nom +baryta baryta nom +barytas baryta nom +barytone barytone nom +barytones barytone nom +basalt basalt nom +basalts basalt nom +bascule bascule nom +bascules bascule nom +base base adj +baseball baseball nom +baseballs baseball nom +baseboard baseboard nom +baseboards baseboard nom +based base ver +baseline baseline nom +baselines baseline nom +baseman baseman nom +basemen baseman nom +basement basement nom +basements basement nom +baseness baseness nom +basenesses baseness nom +basenji basenji nom +basenjis basenji nom +baser base adj +bases base nom +basest base adj +bash bash nom +bashed bash ver +bashes bash nom +bashfulness bashfulness nom +bashfulnesses bashfulness nom +bashing bash ver +bashings bashing nom +basic basic nom +basics basic nom +basidia basidium nom +basidiomycete basidiomycete nom +basidiomycetes basidiomycete nom +basidiospore basidiospore nom +basidiospores basidiospore nom +basidium basidium nom +basified basify ver +basifies basify ver +basify basify ver +basifying basify ver +basil basil nom +basilica basilica nom +basilicas basilica nom +basilisk basilisk nom +basilisks basilisk nom +basils basil nom +basin basin nom +basinet basinet nom +basinets basinet nom +basinful basinful nom +basinfuls basinful nom +basing base ver +basins basin nom +basis basis nom +bask bask ver +basked bask ver +basket basket nom +basketball basketball nom +basketballs basketball nom +basketful basketful nom +basketfuls basketful nom +basketries basketry nom +basketry basketry nom +baskets basket nom +basketwork basketwork nom +basketworks basketwork nom +basking bask ver +basks bask ver +basophil basophil nom +basophile basophile nom +basophiles basophile nom +basophilia basophilia nom +basophilias basophilia nom +basophils basophil nom +bass bass adj +basser bass adj +basses bass nom +bassest bass adj +basset basset nom +basseted basset ver +basseting basset ver +bassets basset nom +bassinet bassinet nom +bassinets bassinet nom +bassist bassist nom +bassists bassist nom +basso basso nom +bassoon bassoon nom +bassoonist bassoonist nom +bassoonists bassoonist nom +bassoons bassoon nom +bassos basso nom +basswood basswood nom +basswoods basswood nom +bast bast nom +bastard bastard nom +bastardies bastardy nom +bastardisation bastardisation nom +bastardisations bastardisation nom +bastardise bastardise ver +bastardised bastardise ver +bastardises bastardise ver +bastardising bastardise ver +bastardization bastardization nom +bastardizations bastardization nom +bastardize bastardize ver +bastardized bastardize ver +bastardizes bastardize ver +bastardizing bastardize ver +bastards bastard nom +bastardy bastardy nom +baste baste nom +basted baste ver +baster baster nom +basters baster nom +bastes baste nom +bastinado bastinado nom +bastinadoed bastinado ver +bastinadoes bastinado nom +bastinadoing bastinado ver +bastinados bastinado nom +basting baste ver +bastings basting nom +bastion bastion nom +bastions bastion nom +bastnaesite bastnaesite nom +bastnaesites bastnaesite nom +basts bast nom +bat bat nom +batch batch nom +batched batch ver +batches batch nom +batching batch ver +bate bate nom +bated bate ver +bates bate nom +batfish batfish nom +batfowl batfowl ver +batfowled batfowl ver +batfowling batfowl ver +batfowls batfowl ver +bath bath nom +bathe bathe nom +bathed bath ver +bather bather nom +bathers bather nom +bathes bathe nom +bathhouse bathhouse nom +bathhouses bathhouse nom +bathing bath ver +bathings bathing nom +bathmat bathmat nom +bathmats bathmat nom +batholite batholite nom +batholites batholite nom +batholith batholith nom +batholiths batholith nom +bathos bathos nom +bathoses bathos nom +bathrobe bathrobe nom +bathrobes bathrobe nom +bathroom bathroom nom +bathrooms bathroom nom +baths bath nom +bathtub bathtub nom +bathtubs bathtub nom +bathymetries bathymetry nom +bathymetry bathymetry nom +bathyscape bathyscape nom +bathyscapes bathyscape nom +bathyscaph bathyscaph nom +bathyscaphe bathyscaphe nom +bathyscaphes bathyscaphe nom +bathyscaphs bathyscaph nom +bathysphere bathysphere nom +bathyspheres bathysphere nom +batik batik nom +batiked batik ver +batiking batik ver +batiks batik nom +bating bate ver +batiste batiste nom +batistes batiste nom +batman batman nom +batmen batman nom +baton baton nom +batons baton nom +batrachian batrachian nom +batrachians batrachian nom +bats bat nom +batsman batsman nom +batsmen batsman nom +battalion battalion nom +battalions battalion nom +batted bat ver +batten batten nom +battened batten ver +battening batten ver +battens batten nom +batter batter nom +battercake battercake nom +battercakes battercake nom +battered batter ver +batterer batterer nom +batterers batterer nom +batteries battery nom +battering batter ver +batters batter nom +battery battery nom +battier batty adj +battiest batty adj +batting bat ver +battings batting nom +battle battle nom +battleax battleax nom +battleaxe battleaxe nom +battleaxes battleax nom +battled battle ver +battledore battledore nom +battledored battledore ver +battledores battledore nom +battledoring battledore ver +battlefield battlefield nom +battlefields battlefield nom +battlefront battlefront nom +battlefronts battlefront nom +battleground battleground nom +battlegrounds battleground nom +battlement battlement nom +battlements battlement nom +battler battler nom +battlers battler nom +battles battle nom +battleship battleship nom +battleships battleship nom +battlewagon battlewagon nom +battlewagons battlewagon nom +battling battle ver +battue battue nom +battues battue nom +batty batty adj +bauble bauble nom +baubles bauble nom +baud baud nom +baulk baulk nom +baulked baulk ver +baulking baulk ver +baulks baulk nom +bauxite bauxite nom +bauxites bauxite nom +bawbee bawbee nom +bawbees bawbee nom +bawd bawd nom +bawdier bawdy adj +bawdies bawdy nom +bawdiest bawdy adj +bawdiness bawdiness nom +bawdinesses bawdiness nom +bawdries bawdry nom +bawdry bawdry nom +bawds bawd nom +bawdy bawdy adj +bawdyhouse bawdyhouse nom +bawdyhouses bawdyhouse nom +bawl bawl nom +bawled bawl ver +bawling bawl ver +bawlings bawling nom +bawls bawl nom +bay bay nom +bayberries bayberry nom +bayberry bayberry nom +bayed bay ver +baying bay ver +bayonet bayonet nom +bayoneted bayonet ver +bayoneting bayonet ver +bayonets bayonet nom +bayou bayou nom +bayous bayou nom +bays bay nom +bazaar bazaar nom +bazaars bazaar nom +bazar bazar nom +bazars bazar nom +bazooka bazooka nom +bazookas bazooka nom +bdellium bdellium nom +bdelliums bdellium nom +be be sw +beach beach nom +beachcomber beachcomber nom +beachcombers beachcomber nom +beached beach ver +beaches beach nom +beachhead beachhead nom +beachheads beachhead nom +beachier beachy adj +beachiest beachy adj +beaching beach ver +beachwear beachwear nom +beachwears beachwear nom +beachy beachy adj +beacon beacon nom +beaconed beacon ver +beaconing beacon ver +beacons beacon nom +bead bead nom +beaded bead ver +beadier beady adj +beadiest beady adj +beading bead ver +beadings beading nom +beadle beadle nom +beadles beadle nom +beads bead nom +beadsman beadsman nom +beadsmen beadsman nom +beadwork beadwork nom +beadworks beadwork nom +beady beady adj +beagle beagle nom +beagles beagle nom +beagling beagling nom +beaglings beagling nom +beak beak nom +beaker beaker nom +beakers beaker nom +beaks beak nom +beam beam nom +beamed beam ver +beamier beamy adj +beamiest beamy adj +beaming beam ver +beams beam nom +beamy beamy adj +bean bean nom +beanbag beanbag nom +beanbags beanbag nom +beanball beanball nom +beanballs beanball nom +beaned bean ver +beanfeast beanfeast nom +beanfeasts beanfeast nom +beanie beanie nom +beanies beanie nom +beaning bean ver +beano beano nom +beanos beano nom +beanpole beanpole nom +beanpoles beanpole nom +beans bean nom +beanstalk beanstalk nom +beanstalks beanstalk nom +beany beany nom +bear bear nom +bearberries bearberry nom +bearberry bearberry nom +bearcat bearcat nom +bearcats bearcat nom +beard beard nom +bearded beard ver +bearding beard ver +beards beard nom +bearer bearer nom +bearers bearer nom +bearing bear ver +bearings bearing nom +bearishness bearishness nom +bearishnesses bearishness nom +bearnaise bearnaise nom +bearnaises bearnaise nom +bears bear nom +bearskin bearskin nom +bearskins bearskin nom +bearwood bearwood nom +bearwoods bearwood nom +beast beast nom +beastlier beastly adj +beastliest beastly adj +beastliness beastliness nom +beastlinesses beastliness nom +beastly beastly adj +beasts beast nom +beat beat ver +beaten beat ver +beater beater nom +beaters beater nom +beatification beatification nom +beatifications beatification nom +beatified beatify ver +beatifies beatify ver +beatify beatify ver +beatifying beatify ver +beating beat ver +beatings beating nom +beatitude beatitude nom +beatitudes beatitude nom +beatnik beatnik nom +beatniks beatnik nom +beats beat nom +beau beau nom +beaued beau ver +beauing beau ver +beaus beau nom +beaut beaut nom +beauteousness beauteousness nom +beauteousnesses beauteousness nom +beautician beautician nom +beauticians beautician nom +beauties beauty nom +beautification beautification nom +beautifications beautification nom +beautified beautify ver +beautifier beautifier nom +beautifiers beautifier nom +beautifies beautify ver +beautiful beautiful adj +beautifuler beautiful adj +beautifulest beautiful adj +beautify beautify ver +beautifying beautify ver +beauts beaut nom +beauty beauty nom +beaver beaver nom +beavered beaver ver +beavering beaver ver +beavers beaver nom +bebop bebop nom +bebops bebop nom +becalm becalm ver +becalmed becalm ver +becalming becalm ver +becalms becalm ver +became became sw +because because sw +bechamel bechamel nom +bechamels bechamel nom +bechance bechance ver +bechanced bechance ver +bechances bechance ver +bechancing bechance ver +becharm becharm ver +becharmed becharm ver +becharming becharm ver +becharms becharm ver +beck beck nom +becked beck ver +becking beck ver +beckon beckon nom +beckoned beckon ver +beckoning beckon ver +beckons beckon nom +becks beck nom +becloud becloud ver +beclouded becloud ver +beclouding becloud ver +beclouds becloud ver +become become sw +becomes becomes sw +becoming becoming sw +becomingness becomingness nom +becomingnesses becomingness nom +bed bed nom +bedamn bedamn ver +bedamned bedamn ver +bedamning bedamn ver +bedamns bedamn ver +bedaub bedaub ver +bedaubed bedaub ver +bedaubing bedaub ver +bedaubs bedaub ver +bedazzle bedazzle ver +bedazzled bedazzle ver +bedazzlement bedazzlement nom +bedazzlements bedazzlement nom +bedazzles bedazzle ver +bedazzling bedazzle ver +bedbug bedbug nom +bedbugs bedbug nom +bedchamber bedchamber nom +bedchambers bedchamber nom +bedcover bedcover nom +bedcovers bedcover nom +bedded bed ver +bedder bedder nom +bedders bedder nom +bedding bed ver +beddings bedding nom +bedeck bedeck ver +bedecked bedeck ver +bedecking bedeck ver +bedecks bedeck ver +bedevil bedevil ver +bedeviled bedevil ver +bedeviling bedevil ver +bedevilment bedevilment nom +bedevilments bedevilment nom +bedevils bedevil ver +bedew bedew ver +bedewed bedew ver +bedewing bedew ver +bedews bedew ver +bedfellow bedfellow nom +bedfellows bedfellow nom +bedframe bedframe nom +bedframes bedframe nom +bedight bedight ver +bedighted bedight ver +bedighting bedight ver +bedights bedight ver +bedim bedim ver +bedimmed bedim ver +bedimming bedim ver +bedims bedim ver +bedizen bedizen ver +bedizened bedizen ver +bedizening bedizen ver +bedizens bedizen ver +bedlam bedlam nom +bedlamite bedlamite nom +bedlamites bedlamite nom +bedlams bedlam nom +bedpan bedpan nom +bedpans bedpan nom +bedpost bedpost nom +bedposts bedpost nom +bedraggle bedraggle ver +bedraggled bedraggle ver +bedraggles bedraggle ver +bedraggling bedraggle ver +bedrock bedrock nom +bedrocks bedrock nom +bedroll bedroll nom +bedrolls bedroll nom +bedroom bedroom nom +bedrooms bedroom nom +beds bed nom +bedside bedside nom +bedsides bedside nom +bedsit bedsit nom +bedsits bedsit nom +bedsore bedsore nom +bedsores bedsore nom +bedspread bedspread nom +bedspreads bedspread nom +bedspring bedspring nom +bedsprings bedspring nom +bedstead bedstead nom +bedsteads bedstead nom +bedstraw bedstraw nom +bedstraws bedstraw nom +bedtime bedtime nom +bedtimes bedtime nom +bee bee nom +beebread beebread nom +beebreads beebread nom +beech beech nom +beeches beech nom +beechnut beechnut nom +beechnuts beechnut nom +beef beef nom +beefalo beefalo nom +beefaloes beefalo nom +beefalos beefalo nom +beefburger beefburger nom +beefburgers beefburger nom +beefcake beefcake nom +beefcakes beefcake nom +beefeater beefeater nom +beefeaters beefeater nom +beefed beef ver +beefier beefy adj +beefiest beefy adj +beefiness beefiness nom +beefinesses beefiness nom +beefing beef ver +beefs beef nom +beefsteak beefsteak nom +beefsteaks beefsteak nom +beefwood beefwood nom +beefwoods beefwood nom +beefy beefy adj +beehive beehive nom +beehives beehive nom +beekeeper beekeeper nom +beekeepers beekeeper nom +beekeeping beekeeping nom +beekeepings beekeeping nom +beeline beeline nom +beelines beeline nom +been been sw +beep beep nom +beeped beep ver +beeper beeper nom +beepers beeper nom +beeping beep ver +beeps beep nom +beer beer nom +beerier beery adj +beeriest beery adj +beers beer nom +beery beery adj +bees bee nom +beeswax beeswax nom +beeswaxed beeswax ver +beeswaxes beeswax nom +beeswaxing beeswax ver +beet beet nom +beetle beetle nom +beetled beetle ver +beetles beetle nom +beetleweed beetleweed nom +beetleweeds beetleweed nom +beetling beetle ver +beetroot beetroot nom +beetroots beetroot nom +beets beet nom +beeves beef nom +befall befall ver +befallen befall ver +befalling befall ver +befalls befall ver +befell befall ver +befit befit ver +befits befit ver +befitted befit ver +befitting befit ver +befog befog ver +befogged befog ver +befogging befog ver +befogs befog ver +befool befool ver +befooled befool ver +befooling befool ver +befools befool ver +before before sw +beforehand beforehand sw +befoul befoul ver +befouled befoul ver +befouling befoul ver +befoulment befoulment nom +befoulments befoulment nom +befouls befoul ver +befriend befriend ver +befriended befriend ver +befriending befriend ver +befriends befriend ver +befuddle befuddle ver +befuddled befuddle ver +befuddlement befuddlement nom +befuddlements befuddlement nom +befuddles befuddle ver +befuddling befuddle ver +beg beg nom +began begin ver +beget beget ver +begets beget ver +begetter begetter nom +begetters begetter nom +begetting beget ver +beggar beggar nom +beggared beggar ver +beggaries beggary nom +beggaring beggar ver +beggarman beggarman nom +beggarmen beggarman nom +beggars beggar nom +beggarweed beggarweed nom +beggarweeds beggarweed nom +beggarwoman beggarwoman nom +beggarwomen beggarwoman nom +beggary beggary nom +begged beg ver +begging beg ver +beggings begging nom +begin begin ver +beginner beginner nom +beginners beginner nom +beginning begin ver +beginnings beginning nom +begins begin ver +begird begird ver +begirded begird ver +begirding begird ver +begirds begird ver +begonia begonia nom +begonias begonia nom +begot beget ver +begotten beget ver +begrime begrime ver +begrimed begrime ver +begrimes begrime ver +begriming begrime ver +begrudge begrudge ver +begrudged begrudge ver +begrudges begrudge ver +begrudging begrudge ver +begs beg nom +beguile beguile ver +beguiled beguile ver +beguilement beguilement nom +beguilements beguilement nom +beguiler beguiler nom +beguilers beguiler nom +beguiles beguile ver +beguiling beguile ver +beguine beguine nom +beguines beguine nom +begum begum nom +begummed begum ver +begumming begum ver +begums begum nom +begun begin ver +behalf behalf nom +behalves behalf nom +behave behave ver +behaved behave ver +behaves behave ver +behaving behave ver +behavior behavior nom +behaviorism behaviorism nom +behaviorisms behaviorism nom +behaviorist behaviorist nom +behaviorists behaviorist nom +behaviors behavior nom +behaviour behaviour nom +behaviourist behaviourist nom +behaviourists behaviourist nom +behaviours behaviour nom +behead behead ver +beheaded behead ver +beheading behead ver +beheadings beheading nom +beheads behead ver +beheld behold ver +behemoth behemoth nom +behemoths behemoth nom +behest behest nom +behests behest nom +behind behind sw +behinds behind nom +behold behold ver +beholder beholder nom +beholders beholder nom +beholding behold ver +beholds behold ver +behoove behoove ver +behooved behoove ver +behooves behoove ver +behooving behoove ver +behove behove ver +behoved behove ver +behoves behove ver +behoving behove ver +beige beige nom +beiges beige nom +being being sw +beings being nom +bejewel bejewel ver +bejeweled bejewel ver +bejeweling bejewel ver +bejewelled bejewel ver +bejewelling bejewel ver +bejewels bejewel ver +bel bel nom +belabor belabor ver +belabored belabor ver +belaboring belabor ver +belabors belabor ver +belabour belabour ver +belaboured belabour ver +belabouring belabour ver +belabours belabour ver +belay belay nom +belayed belay ver +belaying belay ver +belays belay nom +belch belch nom +belched belch ver +belches belch nom +belching belch ver +beldam beldam nom +beldame beldame nom +beldames beldame nom +beldams beldam nom +beleaguer beleaguer ver +beleaguered beleaguer ver +beleaguering beleaguer ver +beleaguers beleaguer ver +belemnite belemnite nom +belemnites belemnite nom +belfries belfry nom +belfry belfry nom +belie belie ver +belied belie ver +belief belief nom +beliefs belief nom +belies belie ver +believabilities believability nom +believability believability nom +believe believe sw +believed believe ver +believer believer nom +believers believer nom +believes believe ver +believing believe ver +belittle belittle ver +belittled belittle ver +belittlement belittlement nom +belittlements belittlement nom +belittles belittle ver +belittling belittle ver +bell bell nom +belladonna belladonna nom +belladonnas belladonna nom +bellarmine bellarmine nom +bellarmines bellarmine nom +bellbird bellbird nom +bellbirds bellbird nom +bellboy bellboy nom +bellboys bellboy nom +belle belle nom +belled bell ver +belles belle nom +belletrist belletrist nom +belletrists belletrist nom +bellflower bellflower nom +bellflowers bellflower nom +bellhop bellhop nom +bellhops bellhop nom +bellicosities bellicosity nom +bellicosity bellicosity nom +bellied belly ver +bellies belly nom +belligerence belligerence nom +belligerences belligerence nom +belligerencies belligerency nom +belligerency belligerency nom +belligerent belligerent nom +belligerents belligerent nom +belling bell ver +bellman bellman nom +bellmen bellman nom +bellow bellow nom +bellowed bellow ver +bellowing bellow ver +bellows bellow nom +bellpull bellpull nom +bellpulls bellpull nom +bells bell nom +bellwether bellwether nom +bellwethers bellwether nom +bellwort bellwort nom +bellworts bellwort nom +belly belly nom +bellyache bellyache nom +bellyached bellyache ver +bellyacher bellyacher nom +bellyachers bellyacher nom +bellyaches bellyache nom +bellyaching bellyache ver +bellyband bellyband nom +bellybands bellyband nom +bellybutton bellybutton nom +bellybuttons bellybutton nom +bellyful bellyful nom +bellyfuls bellyful nom +bellying belly ver +bellylaugh bellylaugh ver +bellylaughed bellylaugh ver +bellylaughing bellylaugh ver +bellylaughs bellylaugh ver +belong belong ver +belonged belong ver +belonging belong ver +belongings belonging nom +belongs belong ver +beloved beloved nom +beloveds beloved nom +below below sw +bels bel nom +belt belt nom +belted belt ver +belting belt ver +beltings belting nom +belts belt nom +beltway beltway nom +beltways beltway nom +beluga beluga nom +belugas beluga nom +belvedere belvedere nom +belvederes belvedere nom +belying belie ver +bema bema nom +bemas bema nom +bemire bemire ver +bemired bemire ver +bemires bemire ver +bemiring bemire ver +bemoan bemoan ver +bemoaned bemoan ver +bemoaning bemoan ver +bemoans bemoan ver +bemock bemock ver +bemocked bemock ver +bemocking bemock ver +bemocks bemock ver +bemuse bemuse ver +bemused bemuse ver +bemusement bemusement nom +bemusements bemusement nom +bemuses bemuse ver +bemusing bemuse ver +ben ben nom +bench bench nom +benched bench ver +benches bench nom +benching bench ver +benchmark benchmark nom +benchmarked benchmark ver +benchmarking benchmark ver +benchmarks benchmark nom +bend bend nom +benday benday ver +bendayed benday ver +bendaying benday ver +bendays benday ver +bender bender nom +benders bender nom +bending bend ver +bendings bending nom +bends bend nom +benedick benedick nom +benedicks benedick nom +benedict benedict nom +benediction benediction nom +benedictions benediction nom +benedicts benedict nom +benefaction benefaction nom +benefactions benefaction nom +benefactor benefactor nom +benefactors benefactor nom +benefactress benefactress nom +benefactresses benefactress nom +benefice benefice nom +beneficed benefice ver +beneficence beneficence nom +beneficences beneficence nom +benefices benefice nom +beneficiaries beneficiary nom +beneficiary beneficiary nom +beneficiation beneficiation nom +beneficiations beneficiation nom +beneficing benefice ver +benefit benefit nom +benefited benefit ver +benefiting benefit ver +benefits benefit nom +benevolence benevolence nom +benevolences benevolence nom +benign benign adj +benignancies benignancy nom +benignancy benignancy nom +benigner benign adj +benignest benign adj +benignities benignity nom +benignity benignity nom +benison benison nom +benisons benison nom +benjamin benjamin nom +benjamins benjamin nom +benne benne nom +bennes benne nom +bennet bennet nom +bennets bennet nom +benni benni nom +bennie bennie nom +bennies bennie nom +bennis benni nom +benny benny nom +bens ben nom +bent bend ver +bentgrass bentgrass nom +bentgrasses bentgrass nom +benthos benthos nom +benthoses benthos nom +bentonite bentonite nom +bentonites bentonite nom +bents bent nom +bentwood bentwood nom +bentwoods bentwood nom +benumb benumb ver +benumbed benumb ver +benumbing benumb ver +benumbs benumb ver +benzene benzene nom +benzenes benzene nom +benzine benzine nom +benzines benzine nom +benzoate benzoate nom +benzoates benzoate nom +benzocaine benzocaine nom +benzocaines benzocaine nom +benzodiazepine benzodiazepine nom +benzodiazepines benzodiazepine nom +benzofuran benzofuran nom +benzofurans benzofuran nom +benzoin benzoin nom +benzoins benzoin nom +benzol benzol nom +benzols benzol nom +benzyl benzyl nom +benzyls benzyl nom +bepaint bepaint ver +bepainted bepaint ver +bepainting bepaint ver +bepaints bepaint ver +bequeath bequeath ver +bequeathed bequeath ver +bequeathing bequeath ver +bequeaths bequeath ver +bequest bequest nom +bequests bequest nom +berate berate ver +berated berate ver +berates berate ver +berating berate ver +berceuse berceuse nom +berceuses berceuse nom +bereave bereave ver +bereaved bereave ver +bereavement bereavement nom +bereavements bereavement nom +bereaves bereave ver +bereaving bereave ver +beret beret nom +berets beret nom +berg berg nom +bergamot bergamot nom +bergamots bergamot nom +bergenia bergenia nom +bergenias bergenia nom +bergs berg nom +beriberi beriberi nom +beriberis beriberi nom +berkelium berkelium nom +berkeliums berkelium nom +berlin berlin nom +berlins berlin nom +berm berm nom +berms berm nom +berried berry ver +berries berry nom +berry berry nom +berrying berry ver +berserk berserk nom +berserks berserk nom +berth berth nom +berthed berth ver +berthing berth ver +berths berth nom +beryl beryl nom +beryllium beryllium nom +berylliums beryllium nom +beryls beryl nom +beseech beseech ver +beseecher beseecher nom +beseechers beseecher nom +beseeches beseech ver +beseeching beseech ver +beseem beseem ver +beseemed beseem ver +beseeming beseem ver +beseems beseem ver +beset beset ver +besets beset ver +besetting beset ver +beshrew beshrew ver +beshrewed beshrew ver +beshrewing beshrew ver +beshrews beshrew ver +beside beside sw +besides besides sw +besiege besiege ver +besieged besiege ver +besieger besieger nom +besiegers besieger nom +besieges besiege ver +besieging besiege ver +besiegings besieging nom +besmear besmear ver +besmeared besmear ver +besmearing besmear ver +besmears besmear ver +besmirch besmirch ver +besmirched besmirch ver +besmirches besmirch ver +besmirching besmirch ver +besom besom nom +besoms besom nom +besot besot ver +besots besot ver +besotted besot ver +besotting besot ver +besought beseech ver +bespangle bespangle ver +bespangled bespangle ver +bespangles bespangle ver +bespangling bespangle ver +bespatter bespatter ver +bespattered bespatter ver +bespattering bespatter ver +bespatters bespatter ver +bespeak bespeak ver +bespeaking bespeak ver +bespeaks bespeak ver +bespoke bespeak ver +bespoken bespeak ver +besprinkle besprinkle ver +besprinkled besprinkle ver +besprinkles besprinkle ver +besprinkling besprinkle ver +best best sw +bested best ver +bestialise bestialise ver +bestialised bestialise ver +bestialises bestialise ver +bestialising bestialise ver +bestialities bestiality nom +bestiality bestiality nom +bestialize bestialize ver +bestialized bestialize ver +bestializes bestialize ver +bestializing bestialize ver +bestiaries bestiary nom +bestiary bestiary nom +besting best ver +bestir bestir ver +bestirred bestir ver +bestirring bestir ver +bestirs bestir ver +bestow bestow ver +bestowal bestowal nom +bestowals bestowal nom +bestowed bestow ver +bestowing bestow ver +bestowment bestowment nom +bestowments bestowment nom +bestows bestow ver +bestrew bestrew ver +bestrewed bestrew ver +bestrewing bestrew ver +bestrews bestrew ver +bestridden bestride ver +bestride bestride ver +bestrides bestride ver +bestriding bestride ver +bestrode bestride ver +bests best nom +bestseller bestseller nom +bestsellers bestseller nom +bet bet ver +beta beta nom +betake betake ver +betaken betake ver +betakes betake ver +betaking betake ver +betas beta nom +betatron betatron nom +betatrons betatron nom +betel betel nom +betels betel nom +beth beth nom +bethel bethel nom +bethels bethel nom +bethink bethink ver +bethinking bethink ver +bethinks bethink ver +bethought bethink ver +beths beth nom +betide betide ver +betided betide ver +betides betide ver +betiding betide ver +betise betise nom +betises betise nom +betoken betoken ver +betokened betoken ver +betokening betoken ver +betokens betoken ver +betook betake ver +betray betray ver +betrayal betrayal nom +betrayals betrayal nom +betrayed betray ver +betrayer betrayer nom +betrayers betrayer nom +betraying betray ver +betrays betray ver +betroth betroth ver +betrothal betrothal nom +betrothals betrothal nom +betrothed betroth ver +betrothing betroth ver +betroths betroth ver +bets bet nom +better better sw +bettered better ver +bettering better ver +betterment betterment nom +betterments betterment nom +betters better nom +betting bet ver +bettor bettor nom +bettors bettor nom +between between sw +betweens between nom +bevatron bevatron nom +bevatrons bevatron nom +bevel bevel nom +beveled bevel ver +beveling bevel ver +bevels bevel nom +beverage beverage nom +beverages beverage nom +bevies bevy nom +bevy bevy nom +bewail bewail ver +bewailed bewail ver +bewailing bewail ver +bewails bewail ver +beware beware ver +bewared beware ver +bewares beware ver +bewaring beware ver +bewilder bewilder ver +bewildered bewilder ver +bewildering bewilder ver +bewilderment bewilderment nom +bewilderments bewilderment nom +bewilders bewilder ver +bewitch bewitch ver +bewitched bewitch ver +bewitcheries bewitchery nom +bewitchery bewitchery nom +bewitches bewitch ver +bewitching bewitch ver +bewitchment bewitchment nom +bewitchments bewitchment nom +bewray bewray ver +bewrayed bewray ver +bewraying bewray ver +bewrays bewray ver +bey bey nom +beyond beyond sw +beys bey nom +bezant bezant nom +bezants bezant nom +bezel bezel nom +bezels bezel nom +bezique bezique nom +beziques bezique nom +bezzant bezzant nom +bezzants bezzant nom +bhang bhang nom +bhangs bhang nom +bi bi nom +bialies bialy nom +bialy bialy nom +bias bias nom +biased bias ver +biases bias nom +biasing bias ver +biathlon biathlon nom +biathlons biathlon nom +bib bib nom +bibbed bib ver +bibbing bib ver +bible bible nom +bibles bible nom +bibliographer bibliographer nom +bibliographers bibliographer nom +bibliographies bibliography nom +bibliography bibliography nom +bibliolatries bibliolatry nom +bibliolatry bibliolatry nom +bibliomania bibliomania nom +bibliomanias bibliomania nom +bibliophile bibliophile nom +bibliophiles bibliophile nom +bibliopole bibliopole nom +bibliopoles bibliopole nom +bibliopolist bibliopolist nom +bibliopolists bibliopolist nom +bibliotheca bibliotheca nom +bibliothecas bibliotheca nom +bibliotist bibliotist nom +bibliotists bibliotist nom +bibs bib nom +bicameralism bicameralism nom +bicameralisms bicameralism nom +bicarb bicarb nom +bicarbonate bicarbonate nom +bicarbonates bicarbonate nom +bicarbs bicarb nom +bicentenaries bicentenary nom +bicentenary bicentenary nom +bicentennial bicentennial nom +bicentennials bicentennial nom +biceps biceps nom +bichloride bichloride nom +bichlorides bichloride nom +bichromate bichromate nom +bichromates bichromate nom +bicker bicker nom +bickered bicker ver +bickerer bickerer nom +bickerers bickerer nom +bickering bicker ver +bickers bicker nom +bicorn bicorn nom +bicorne bicorne nom +bicornes bicorne nom +bicorns bicorn nom +bicuspid bicuspid nom +bicuspids bicuspid nom +bicycle bicycle nom +bicycled bicycle ver +bicycler bicycler nom +bicyclers bicycler nom +bicycles bicycle nom +bicycling bicycle ver +bicyclist bicyclist nom +bicyclists bicyclist nom +bid bid ver +bidden bid ver +bidder bidder nom +bidders bidder nom +biddies biddy nom +bidding bid ver +biddings bidding nom +biddy biddy nom +bide bide ver +bides bide ver +bidet bidet nom +bidets bidet nom +biding bide ver +bids bid nom +bield bield ver +bielded bield ver +bielding bield ver +bields bield ver +biennial biennial nom +biennials biennial nom +biennium biennium nom +bienniums biennium nom +bier bier nom +biers bier nom +biff biff nom +biffed biff ver +biffing biff ver +biffs biff nom +bifurcate bifurcate ver +bifurcated bifurcate ver +bifurcates bifurcate ver +bifurcating bifurcate ver +bifurcation bifurcation nom +bifurcations bifurcation nom +big big adj +bigamies bigamy nom +bigamist bigamist nom +bigamists bigamist nom +bigamy bigamy nom +bigarade bigarade nom +bigarades bigarade nom +bigeye bigeye nom +bigeyes bigeye nom +bigged big ver +bigger big adj +biggest big adj +biggie biggie nom +biggies biggie nom +biggin biggin nom +bigging big ver +biggins biggin nom +bighead bighead nom +bigheads bighead nom +bigheartedness bigheartedness nom +bigheartednesses bigheartedness nom +bighorn bighorn nom +bighorns bighorn nom +bight bight nom +bighted bight ver +bighting bight ver +bights bight nom +bigmouth bigmouth nom +bigmouths bigmouth nom +bigness bigness nom +bignesses bigness nom +bigot bigot nom +bigotries bigotry nom +bigotry bigotry nom +bigots bigot nom +bigs big ver +bigwig bigwig nom +bigwigs bigwig nom +bijou bijou nom +bijoux bijou nom +bike bike nom +biked bike ver +biker biker nom +bikers biker nom +bikes bike nom +biking bike ver +bikini bikini nom +bikinis bikini nom +bilabial bilabial nom +bilabials bilabial nom +bilateralism bilateralism nom +bilateralisms bilateralism nom +bilberries bilberry nom +bilberry bilberry nom +bilbies bilby nom +bilby bilby nom +bile bile nom +biles bile nom +bilge bilge nom +bilged bilge ver +bilges bilge nom +bilgewater bilgewater nom +bilgewaters bilgewater nom +bilgier bilgy adj +bilgiest bilgy adj +bilging bilge ver +bilgy bilgy adj +bilharzia bilharzia nom +bilharzias bilharzia nom +bilharziases bilharziasis nom +bilharziasis bilharziasis nom +bilimbi bilimbi nom +bilimbis bilimbi nom +bilingual bilingual nom +bilingualism bilingualism nom +bilingualisms bilingualism nom +bilinguals bilingual nom +biliousness biliousness nom +biliousnesses biliousness nom +bilirubin bilirubin nom +bilirubins bilirubin nom +bilk bilk nom +bilked bilk ver +bilker bilker nom +bilkers bilker nom +bilking bilk ver +bilks bilk nom +bill bill nom +billboard billboard nom +billboarded billboard ver +billboarding billboard ver +billboards billboard nom +billed bill ver +billet billet nom +billeted billet ver +billeting billet ver +billets billet nom +billfish billfish nom +billfold billfold nom +billfolds billfold nom +billhook billhook nom +billhooks billhook nom +billies billy nom +billing bill ver +billings billing nom +billingsgate billingsgate nom +billingsgates billingsgate nom +billion billion nom +billionaire billionaire nom +billionaires billionaire nom +billions billion nom +billionth billionth nom +billionths billionth nom +billow billow nom +billowed billow ver +billowier billowy adj +billowiest billowy adj +billowing billow ver +billows billow nom +billowy billowy adj +bills bill nom +billy billy nom +bilsted bilsted nom +bilsteds bilsted nom +biltong biltong nom +biltongs biltong nom +bimbo bimbo nom +bimbos bimbo nom +bimester bimester nom +bimesters bimester nom +bimetal bimetal nom +bimetallic bimetallic nom +bimetallics bimetallic nom +bimetallism bimetallism nom +bimetallisms bimetallism nom +bimetallist bimetallist nom +bimetallists bimetallist nom +bimetals bimetal nom +bimillenaries bimillenary nom +bimillenary bimillenary nom +bimillennium bimillennium nom +bimillenniums bimillennium nom +bimonthlies bimonthly nom +bimonthly bimonthly nom +bin bin nom +binaries binary nom +binary binary nom +bind bind nom +binder binder nom +binderies bindery nom +binders binder nom +bindery bindery nom +binding bind ver +bindings binding nom +binds bind nom +bindweed bindweed nom +bindweeds bindweed nom +bine bine nom +bines bine nom +binge binge nom +binged binge ver +binges binge nom +binging binge ver +bingle bingle nom +bingles bingle nom +bingo bingo nom +bingos bingo nom +binnacle binnacle nom +binnacles binnacle nom +binned bin ver +binning bin ver +binocular binocular nom +binoculars binocular nom +binomial binomial nom +binomials binomial nom +bins bin nom +binturong binturong nom +binturongs binturong nom +bioassay bioassay nom +bioassayed bioassay ver +bioassaying bioassay ver +bioassays bioassay nom +biocatalyst biocatalyst nom +biocatalysts biocatalyst nom +biochemical biochemical nom +biochemicals biochemical nom +biochemist biochemist nom +biochemistries biochemistry nom +biochemistry biochemistry nom +biochemists biochemist nom +bioclimatologies bioclimatology nom +bioclimatology bioclimatology nom +biodegradabilities biodegradability nom +biodegradability biodegradability nom +biodiversities biodiversity nom +biodiversity biodiversity nom +bioelectricities bioelectricity nom +bioelectricity bioelectricity nom +bioengineering bioengineering nom +bioengineerings bioengineering nom +biofeedback biofeedback nom +biofeedbacks biofeedback nom +biogeneses biogenesis nom +biogenesis biogenesis nom +biogenies biogeny nom +biogeny biogeny nom +biogeographies biogeography nom +biogeography biogeography nom +biographer biographer nom +biographers biographer nom +biographies biography nom +biography biography nom +biologic biologic nom +biological biological nom +biologicals biological nom +biologics biologic nom +biologies biology nom +biologism biologism nom +biologisms biologism nom +biologist biologist nom +biologists biologist nom +biology biology nom +bioluminescence bioluminescence nom +bioluminescences bioluminescence nom +biomass biomass nom +biomasses biomass nom +biomedicine biomedicine nom +biomedicines biomedicine nom +biont biont nom +bionts biont nom +biophysicist biophysicist nom +biophysicists biophysicist nom +biopic biopic nom +biopics biopic nom +biopsied biopsy ver +biopsies biopsy nom +biopsy biopsy nom +biopsying biopsy ver +bioremediation bioremediation nom +bioremediations bioremediation nom +biorhythm biorhythm nom +biorhythms biorhythm nom +bioscope bioscope nom +bioscopes bioscope nom +biosphere biosphere nom +biospheres biosphere nom +biosyntheses biosynthesis nom +biosynthesis biosynthesis nom +biota biota nom +biotas biota nom +biotechnologies biotechnology nom +biotechnology biotechnology nom +biotin biotin nom +biotins biotin nom +biotite biotite nom +biotites biotite nom +biotype biotype nom +biotypes biotype nom +bipartisanship bipartisanship nom +bipartisanships bipartisanship nom +biped biped nom +bipeds biped nom +biplane biplane nom +biplanes biplane nom +bipolarities bipolarity nom +bipolarity bipolarity nom +biprism biprism nom +biprisms biprism nom +biquadratic biquadratic nom +biquadratics biquadratic nom +birch birch nom +birched birch ver +birches birch nom +birching birch ver +bird bird nom +birdbath birdbath nom +birdbaths birdbath nom +birdbrain birdbrain nom +birdbrains birdbrain nom +birdcage birdcage nom +birdcages birdcage nom +birdcall birdcall nom +birdcalls birdcall nom +birded bird ver +birder birder nom +birders birder nom +birdhouse birdhouse nom +birdhouses birdhouse nom +birdie birdie nom +birdied birdie ver +birdieing birdie ver +birdies birdie nom +birding bird ver +birdlime birdlime nom +birdlimed birdlime ver +birdlimes birdlime nom +birdliming birdlime ver +birds bird nom +birdseed birdseed nom +birdseeds birdseed nom +birdsong birdsong nom +birdsongs birdsong nom +birdwatcher birdwatcher nom +birdwatchers birdwatcher nom +birefringence birefringence nom +birefringences birefringence nom +biretta biretta nom +birettas biretta nom +birl birl ver +birle birle ver +birled birl ver +birles birle ver +birling birl ver +birlings birling nom +birls birl ver +birr birr nom +birred birr ver +birring birr ver +birrs birr nom +birth birth nom +birthday birthday nom +birthdays birthday nom +birthed birth ver +birthing birth ver +birthings birthing nom +birthmark birthmark nom +birthmarks birthmark nom +birthplace birthplace nom +birthplaces birthplace nom +birthrate birthrate nom +birthrates birthrate nom +birthright birthright nom +birthrights birthright nom +birthroot birthroot nom +birthroots birthroot nom +births birth nom +birthstone birthstone nom +birthstones birthstone nom +birthwort birthwort nom +birthworts birthwort nom +bis bi nom +biscuit biscuit nom +biscuits biscuit nom +bise bise nom +bisect bisect ver +bisected bisect ver +bisecting bisect ver +bisection bisection nom +bisections bisection nom +bisector bisector nom +bisectors bisector nom +bisects bisect ver +bises bise nom +bisexual bisexual nom +bisexualities bisexuality nom +bisexuality bisexuality nom +bisexuals bisexual nom +bishop bishop nom +bishoped bishop ver +bishoping bishop ver +bishopric bishopric nom +bishoprics bishopric nom +bishops bishop nom +bismuth bismuth nom +bismuths bismuth nom +bison bison nom +bisque bisque nom +bisques bisque nom +bister bister nom +bisters bister nom +bistre bistre nom +bistres bistre nom +bistro bistro nom +bistros bistro nom +bit bite ver +bitartrate bitartrate nom +bitartrates bitartrate nom +bitch bitch nom +bitched bitch ver +bitcheries bitchery nom +bitchery bitchery nom +bitches bitch nom +bitchier bitchy adj +bitchiest bitchy adj +bitchiness bitchiness nom +bitchinesses bitchiness nom +bitching bitch ver +bitchy bitchy adj +bite bite nom +biteplate biteplate nom +biteplates biteplate nom +biter biter nom +biters biter nom +bites bite nom +bitewing bitewing nom +bitewings bitewing nom +biting bite ver +bitmap bitmap nom +bitmaps bitmap nom +bits bit nom +bitstock bitstock nom +bitstocks bitstock nom +bitt bitt nom +bitted bit ver +bitten bite ver +bitter bitter adj +bittered bitter ver +bitterer bitter adj +bitterest bitter adj +bittering bitter ver +bittern bittern nom +bitterness bitterness nom +bitternesses bitterness nom +bitterns bittern nom +bitternut bitternut nom +bitternuts bitternut nom +bitterroot bitterroot nom +bitterroots bitterroot nom +bitters bitter nom +bittersweet bittersweet nom +bittersweets bittersweet nom +bitterweed bitterweed nom +bitterweeds bitterweed nom +bitterwood bitterwood nom +bitterwoods bitterwood nom +bittie bittie adj +bittier bittie adj +bittiest bittie adj +bitting bit ver +bitts bitt nom +bitty bitty adj +bitumen bitumen nom +bitumens bitumen nom +bituminize bituminize ver +bituminized bituminize ver +bituminizes bituminize ver +bituminizing bituminize ver +bivalent bivalent nom +bivalents bivalent nom +bivalve bivalve nom +bivalves bivalve nom +bivouac bivouac nom +bivouacked bivouac ver +bivouacking bivouac ver +bivouacs bivouac nom +biweeklies biweekly nom +biweekly biweekly nom +biz biz nom +bizarreness bizarreness nom +bizarrenesses bizarreness nom +bize bize nom +bizes bize nom +bizzes biz nom +blab blab nom +blabbed blab ver +blabber blabber nom +blabbered blabber ver +blabbering blabber ver +blabbermouth blabbermouth nom +blabbermouths blabbermouth nom +blabbers blabber nom +blabbing blab ver +blabs blab nom +black black adj +blackamoor blackamoor nom +blackamoors blackamoor nom +blackball blackball nom +blackballed blackball ver +blackballing blackball ver +blackballs blackball nom +blackberries blackberry nom +blackberry blackberry nom +blackbird blackbird nom +blackbirded blackbird ver +blackbirding blackbird ver +blackbirds blackbird nom +blackboard blackboard nom +blackboards blackboard nom +blackbodies blackbody nom +blackbody blackbody nom +blackbuck blackbuck nom +blackbucks blackbuck nom +blackcap blackcap nom +blackcaps blackcap nom +blackcock blackcock nom +blackcocks blackcock nom +blackdamp blackdamp nom +blackdamps blackdamp nom +blacked black ver +blacken blacken ver +blackened blacken ver +blackening blacken ver +blackenings blackening nom +blackens blacken ver +blacker black adj +blackest black adj +blackface blackface nom +blackfaces blackface nom +blackfish blackfish nom +blackflies blackfly nom +blackfly blackfly nom +blackguard blackguard nom +blackguarded blackguard ver +blackguarding blackguard ver +blackguards blackguard nom +blackhead blackhead nom +blackheads blackhead nom +blackheart blackheart nom +blackhearts blackheart nom +blacking black ver +blackings blacking nom +blackjack blackjack nom +blackjacked blackjack ver +blackjacking blackjack ver +blackjacks blackjack nom +blackleg blackleg nom +blacklegged blackleg ver +blacklegging blackleg ver +blacklegs blackleg nom +blacklist blacklist nom +blacklisted blacklist ver +blacklisting blacklist ver +blacklists blacklist nom +blackmail blackmail nom +blackmailed blackmail ver +blackmailer blackmailer nom +blackmailers blackmailer nom +blackmailing blackmail ver +blackmails blackmail nom +blackness blackness nom +blacknesses blackness nom +blackout blackout nom +blackouts blackout nom +blackpoll blackpoll nom +blackpolls blackpoll nom +blacks black nom +blacksmith blacksmith nom +blacksmiths blacksmith nom +blacksnake blacksnake nom +blacksnakes blacksnake nom +blacktail blacktail nom +blacktails blacktail nom +blackthorn blackthorn nom +blackthorns blackthorn nom +blacktop blacktop nom +blacktopped blacktop ver +blacktopping blacktop ver +blacktops blacktop nom +blackwater blackwater nom +blackwaters blackwater nom +blackwood blackwood nom +blackwoods blackwood nom +bladder bladder nom +bladdernose bladdernose nom +bladdernoses bladdernose nom +bladders bladder nom +bladderwort bladderwort nom +bladderworts bladderwort nom +blade blade nom +blades blade nom +blaeberries blaeberry nom +blaeberry blaeberry nom +blah blah nom +blahs blah nom +blain blain nom +blains blain nom +blame blame nom +blamed blame ver +blamelessness blamelessness nom +blamelessnesses blamelessness nom +blames blame nom +blameworthier blameworthy adj +blameworthiest blameworthy adj +blameworthiness blameworthiness nom +blameworthinesses blameworthiness nom +blameworthy blameworthy adj +blaming blame ver +blanch blanch ver +blanched blanch ver +blanches blanch ver +blanching blanch ver +blancmange blancmange nom +blancmanges blancmange nom +blanco blanco ver +blancoed blanco ver +blancoes blanco ver +blancoing blanco ver +bland bland adj +blander bland adj +blandest bland adj +blandish blandish ver +blandished blandish ver +blandishes blandish ver +blandishing blandish ver +blandishment blandishment nom +blandishments blandishment nom +blandness blandness nom +blandnesses blandness nom +blank blank adj +blanked blank ver +blanker blank adj +blankest blank adj +blanket blanket nom +blanketed blanket ver +blanketing blanket ver +blankets blanket nom +blanking blank ver +blankness blankness nom +blanknesses blankness nom +blanks blank nom +blare blare nom +blared blare ver +blares blare nom +blaring blare ver +blarney blarney nom +blarneyed blarney ver +blarneying blarney ver +blarneys blarney nom +blaspheme blaspheme ver +blasphemed blaspheme ver +blasphemer blasphemer nom +blasphemers blasphemer nom +blasphemes blaspheme ver +blasphemies blasphemy nom +blaspheming blaspheme ver +blasphemy blasphemy nom +blast blast nom +blasted blast ver +blastema blastema nom +blastemas blastema nom +blaster blaster nom +blasters blaster nom +blasting blast ver +blastocoel blastocoel nom +blastocoels blastocoel nom +blastoderm blastoderm nom +blastoderms blastoderm nom +blastodisc blastodisc nom +blastodiscs blastodisc nom +blastoff blastoff nom +blastoffs blastoff nom +blastogeneses blastogenesis nom +blastogenesis blastogenesis nom +blastomere blastomere nom +blastomeres blastomere nom +blastomycete blastomycete nom +blastomycetes blastomycete nom +blastomycoses blastomycosis nom +blastomycosis blastomycosis nom +blastopore blastopore nom +blastopores blastopore nom +blastosphere blastosphere nom +blastospheres blastosphere nom +blasts blast nom +blastula blastula nom +blastulas blastula nom +blat blat ver +blatancies blatancy nom +blatancy blatancy nom +blather blather nom +blathered blather ver +blathering blather ver +blathers blather nom +blatherskite blatherskite nom +blatherskites blatherskite nom +blats blat ver +blatted blat ver +blatting blat ver +blaze blaze nom +blazed blaze ver +blazer blazer nom +blazers blazer nom +blazes blaze nom +blazing blaze ver +blazon blazon nom +blazoned blazon ver +blazoning blazon ver +blazonries blazonry nom +blazonry blazonry nom +blazons blazon nom +bleach bleach nom +bleached bleach ver +bleacher bleacher nom +bleachers bleacher nom +bleaches bleach nom +bleaching bleach ver +bleak bleak adj +bleaker bleak adj +bleakest bleak adj +bleakness bleakness nom +bleaknesses bleakness nom +bleaks bleak nom +blear blear adj +bleared blear ver +blearer blear adj +blearest blear adj +blearier bleary adj +bleariest bleary adj +bleariness bleariness nom +blearinesses bleariness nom +blearing blear ver +blears blear ver +bleary bleary adj +bleat bleat nom +bleated bleat ver +bleating bleat ver +bleats bleat nom +bleb bleb nom +blebs bleb nom +bled bleed ver +bleed bleed nom +bleeder bleeder nom +bleeders bleeder nom +bleeding bleed ver +bleedings bleeding nom +bleeds bleed nom +bleep bleep nom +bleeped bleep ver +bleeper bleeper nom +bleepers bleeper nom +bleeping bleep ver +bleeps bleep nom +blemish blemish nom +blemished blemish ver +blemishes blemish nom +blemishing blemish ver +blench blench ver +blenched blench ver +blenches blench ver +blenching blench ver +blend blend nom +blende blende nom +blended blend ver +blender blender nom +blenders blender nom +blendes blende nom +blending blend ver +blendings blending nom +blends blend nom +blennies blenny nom +blenny blenny nom +blepharitides blepharitis nom +blepharitis blepharitis nom +bless bless ver +blessed bless ver +blesseder blessed adj +blessedest blessed adj +blessedness blessedness nom +blessednesses blessedness nom +blesses bless ver +blessing bless ver +blessings blessing nom +blether blether nom +blethered blether ver +blethering blether ver +blethers blether nom +blew blow ver +blewits blewits nom +blewitses blewits nom +blight blight nom +blighted blight ver +blighter blighter nom +blighters blighter nom +blighting blight ver +blights blight nom +blimp blimp nom +blimps blimp nom +blind blind adj +blinded blind ver +blinder blind adj +blinders blinder nom +blindest blind adj +blindfold blindfold nom +blindfolded blindfold ver +blindfolding blindfold ver +blindfolds blindfold nom +blinding blind ver +blindings blinding nom +blindness blindness nom +blindnesses blindness nom +blinds blind nom +blindside blindside ver +blindsided blindside ver +blindsides blindside ver +blindsiding blindside ver +blindworm blindworm nom +blindworms blindworm nom +blini blini nom +blinis blini nom +blink blink nom +blinked blink ver +blinker blinker nom +blinkered blinker ver +blinkering blinker ver +blinkers blinker nom +blinking blink ver +blinks blink nom +blinkses blinks nom +blintz blintz nom +blintze blintze nom +blintzes blintz nom +blip blip nom +blipped blip ver +blipping blip ver +blips blip nom +bliss bliss nom +blisses bliss nom +blissfulness blissfulness nom +blissfulnesses blissfulness nom +blister blister nom +blistered blister ver +blistering blister ver +blisters blister nom +blithe blithe adj +blitheness blitheness nom +blithenesses blitheness nom +blither blithe adj +blithered blither ver +blithering blither ver +blithers blither ver +blithest blithe adj +blitz blitz nom +blitzed blitz ver +blitzes blitz nom +blitzing blitz ver +blitzkrieg blitzkrieg nom +blitzkrieged blitzkrieg ver +blitzkrieging blitzkrieg ver +blitzkriegs blitzkrieg nom +blizzard blizzard nom +blizzards blizzard nom +bloat bloat nom +bloated bloat ver +bloater bloater nom +bloaters bloater nom +bloating bloat ver +bloats bloat nom +blob blob nom +blobbed blob ver +blobbing blob ver +blobs blob nom +bloc bloc nom +block block nom +blockade blockade nom +blockaded blockade ver +blockader blockader nom +blockaders blockader nom +blockades blockade nom +blockading blockade ver +blockage blockage nom +blockages blockage nom +blockbuster blockbuster nom +blockbusters blockbuster nom +blockbusting blockbusting nom +blockbustings blockbusting nom +blocked block ver +blocker blocker nom +blockers blocker nom +blockhead blockhead nom +blockheads blockhead nom +blockhouse blockhouse nom +blockhouses blockhouse nom +blockier blocky adj +blockiest blocky adj +blocking block ver +blockings blocking nom +blocks block nom +blocky blocky adj +blocs bloc nom +bloke bloke nom +blokes bloke nom +blond blond adj +blonde blonde adj +blonder blond adj +blondes blonde nom +blondest blond adj +blondness blondness nom +blondnesses blondness nom +blonds blond nom +blood blood nom +bloodbath bloodbath nom +bloodbaths bloodbath nom +blooded blood ver +bloodguilt bloodguilt nom +bloodguilts bloodguilt nom +bloodhound bloodhound nom +bloodhounds bloodhound nom +bloodied bloody ver +bloodier bloody adj +bloodies bloody ver +bloodiest bloody adj +bloodiness bloodiness nom +bloodinesses bloodiness nom +blooding blood ver +bloodlessness bloodlessness nom +bloodlessnesses bloodlessness nom +bloodletting bloodletting nom +bloodlettings bloodletting nom +bloodline bloodline nom +bloodlines bloodline nom +bloodlust bloodlust nom +bloodlusts bloodlust nom +bloodmobile bloodmobile nom +bloodmobiles bloodmobile nom +bloodroot bloodroot nom +bloodroots bloodroot nom +bloods blood nom +bloodshed bloodshed nom +bloodsheds bloodshed nom +bloodstain bloodstain nom +bloodstains bloodstain nom +bloodstock bloodstock nom +bloodstocks bloodstock nom +bloodstone bloodstone nom +bloodstones bloodstone nom +bloodstream bloodstream nom +bloodstreams bloodstream nom +bloodsucker bloodsucker nom +bloodsuckers bloodsucker nom +bloodthirstier bloodthirsty adj +bloodthirstiest bloodthirsty adj +bloodthirstiness bloodthirstiness nom +bloodthirstinesses bloodthirstiness nom +bloodthirsty bloodthirsty adj +bloodworm bloodworm nom +bloodworms bloodworm nom +bloodwort bloodwort nom +bloodworts bloodwort nom +bloody bloody adj +bloodying bloody ver +bloom bloom nom +bloomed bloom ver +bloomer bloomer nom +bloomers bloomer nom +bloomier bloomy adj +bloomiest bloomy adj +blooming bloom ver +blooms bloom nom +bloomy bloomy adj +bloop bloop nom +blooped bloop ver +blooper blooper nom +bloopers blooper nom +blooping bloop ver +bloops bloop nom +blossom blossom nom +blossomed blossom ver +blossoming blossom ver +blossomings blossoming nom +blossoms blossom nom +blot blot nom +blotch blotch nom +blotched blotch ver +blotches blotch nom +blotchier blotchy adj +blotchiest blotchy adj +blotching blotch ver +blotchy blotchy adj +blots blot nom +blotted blot ver +blotter blotter nom +blotters blotter nom +blotting blot ver +blouse blouse nom +bloused blouse ver +blouses blouse nom +blousing blouse ver +blow blow nom +blowback blowback nom +blowbacks blowback nom +blowball blowball nom +blowballs blowball nom +blower blower nom +blowers blower nom +blowfish blowfish nom +blowflies blowfly nom +blowfly blowfly nom +blowgun blowgun nom +blowguns blowgun nom +blowhard blowhard nom +blowhards blowhard nom +blowhole blowhole nom +blowholes blowhole nom +blowier blowy adj +blowiest blowy adj +blowing blow ver +blowjob blowjob nom +blowjobs blowjob nom +blowlamp blowlamp nom +blowlamps blowlamp nom +blown blow ver +blowout blowout nom +blowouts blowout nom +blowpipe blowpipe nom +blowpipes blowpipe nom +blows blow nom +blowsier blowsy adj +blowsiest blowsy adj +blowsy blowsy adj +blowtorch blowtorch nom +blowtorched blowtorch ver +blowtorches blowtorch nom +blowtorching blowtorch ver +blowtube blowtube nom +blowtubes blowtube nom +blowup blowup nom +blowups blowup nom +blowy blowy adj +blowzier blowzy adj +blowziest blowzy adj +blowzy blowzy adj +blubber blubber nom +blubbered blubber ver +blubbering blubber ver +blubbers blubber nom +blucher blucher nom +bluchers blucher nom +bludgeon bludgeon nom +bludgeoned bludgeon ver +bludgeoning bludgeon ver +bludgeons bludgeon nom +blue blue adj +bluebell bluebell nom +bluebells bluebell nom +blueberries blueberry nom +blueberry blueberry nom +bluebill bluebill nom +bluebills bluebill nom +bluebird bluebird nom +bluebirds bluebird nom +bluebonnet bluebonnet nom +bluebonnets bluebonnet nom +bluebottle bluebottle nom +bluebottles bluebottle nom +blued blue ver +bluefin bluefin nom +bluefins bluefin nom +bluefish bluefish nom +bluefishes bluefish nom +bluegill bluegill nom +bluegills bluegill nom +bluegrass bluegrass nom +bluegrasses bluegrass nom +bluehead bluehead nom +blueheads bluehead nom +blueing blueing nom +blueings blueing nom +bluejacket bluejacket nom +bluejackets bluejacket nom +bluejay bluejay nom +bluejays bluejay nom +blueness blueness nom +bluenesses blueness nom +bluenose bluenose nom +bluenoses bluenose nom +bluepoint bluepoint nom +bluepoints bluepoint nom +blueprint blueprint nom +blueprinted blueprint ver +blueprinting blueprint ver +blueprints blueprint nom +bluer blue adj +blues blue nom +bluesier bluesy adj +bluesiest bluesy adj +bluest blue adj +bluestem bluestem nom +bluestems bluestem nom +bluestocking bluestocking nom +bluestockings bluestocking nom +bluestone bluestone nom +bluestones bluestone nom +bluesy bluesy adj +bluet bluet nom +bluethroat bluethroat nom +bluethroats bluethroat nom +bluetick bluetick nom +blueticks bluetick nom +bluets bluet nom +blueweed blueweed nom +blueweeds blueweed nom +bluewing bluewing nom +bluewings bluewing nom +bluff bluff adj +bluffed bluff ver +bluffer bluff adj +bluffers bluffer nom +bluffest bluff adj +bluffing bluff ver +bluffness bluffness nom +bluffnesses bluffness nom +bluffs bluff nom +bluing blue ver +bluings bluing nom +blunder blunder nom +blunderbuss blunderbuss nom +blunderbusses blunderbuss nom +blundered blunder ver +blunderer blunderer nom +blunderers blunderer nom +blundering blunder ver +blunders blunder nom +blunt blunt adj +blunted blunt ver +blunter blunt adj +bluntest blunt adj +blunting blunt ver +bluntness bluntness nom +bluntnesses bluntness nom +blunts blunt ver +blur blur nom +blurb blurb nom +blurbed blurb ver +blurbing blurb ver +blurbs blurb nom +blurred blur ver +blurrier blurry adj +blurriest blurry adj +blurriness blurriness nom +blurrinesses blurriness nom +blurring blur ver +blurry blurry adj +blurs blur nom +blurt blurt ver +blurted blurt ver +blurting blurt ver +blurts blurt ver +blush blush nom +blushed blush ver +blusher blusher nom +blushers blusher nom +blushes blush nom +blushing blush ver +bluster bluster nom +blustered bluster ver +blusterer blusterer nom +blusterers blusterer nom +blusterier blustery adj +blusteriest blustery adj +blustering bluster ver +blusters bluster nom +blustery blustery adj +boa boa nom +boar boar nom +board board nom +boarded board ver +boarder boarder nom +boarders boarder nom +boarding board ver +boardinghouse boardinghouse nom +boardinghouses boardinghouse nom +boardings boarding nom +boardroom boardroom nom +boardrooms boardroom nom +boards board nom +boardwalk boardwalk nom +boardwalks boardwalk nom +boarfish boarfish nom +boarhound boarhound nom +boarhounds boarhound nom +boars boar nom +boas boa nom +boast boast nom +boasted boast ver +boaster boaster nom +boasters boaster nom +boastfulness boastfulness nom +boastfulnesses boastfulness nom +boasting boast ver +boastings boasting nom +boasts boast nom +boat boat nom +boatbill boatbill nom +boatbills boatbill nom +boatbuilder boatbuilder nom +boatbuilders boatbuilder nom +boated boat ver +boater boater nom +boaters boater nom +boathouse boathouse nom +boathouses boathouse nom +boating boat ver +boatings boating nom +boatload boatload nom +boatloads boatload nom +boatman boatman nom +boatmanship boatmanship nom +boatmanships boatmanship nom +boatmen boatman nom +boats boat nom +boatswain boatswain nom +boatswains boatswain nom +bob bob nom +bobbed bob ver +bobber bobber nom +bobbers bobber nom +bobbies bobby nom +bobbin bobbin nom +bobbing bob ver +bobbins bobbin nom +bobble bobble nom +bobbled bobble ver +bobbles bobble nom +bobbling bobble ver +bobby bobby nom +bobbysock bobbysock nom +bobbysocks bobbysock nom +bobbysoxer bobbysoxer nom +bobbysoxers bobbysoxer nom +bobcat bobcat nom +bobcats bobcat nom +bobolink bobolink nom +bobolinks bobolink nom +bobs bob nom +bobsled bobsled nom +bobsledded bobsled ver +bobsledder bobsledder nom +bobsledders bobsledder nom +bobsledding bobsled ver +bobsleddings bobsledding nom +bobsleds bobsled nom +bobsleigh bobsleigh nom +bobsleighed bobsleigh ver +bobsleighing bobsleigh ver +bobsleighs bobsleigh nom +bobtail bobtail nom +bobtailed bobtail ver +bobtailing bobtail ver +bobtails bobtail nom +bobwhite bobwhite nom +bobwhites bobwhite nom +bocce bocce nom +bocces bocce nom +bocci bocci nom +boccie boccie nom +boccies boccie nom +boccis bocci nom +bock bock nom +bocks bock nom +bod bod nom +bode bide ver +boded bode ver +bodega bodega nom +bodegas bodega nom +bodes bode ver +bodice bodice nom +bodices bodice nom +bodied body ver +bodies body nom +boding bode ver +bodings boding nom +bodkin bodkin nom +bodkins bodkin nom +bods bod nom +body body nom +bodybuilder bodybuilder nom +bodybuilders bodybuilder nom +bodybuilding bodybuilding nom +bodybuildings bodybuilding nom +bodyguard bodyguard nom +bodyguards bodyguard nom +bodying body ver +bodysuit bodysuit nom +bodysuits bodysuit nom +bodywork bodywork nom +bodyworks bodywork nom +boffin boffin nom +boffins boffin nom +bog bog nom +bogbean bogbean nom +bogbeans bogbean nom +bogey bogey nom +bogeyed bogey ver +bogeying bogey ver +bogeyman bogeyman nom +bogeymen bogeyman nom +bogeys bogey nom +bogged bog ver +boggier boggy adj +boggiest boggy adj +bogging bog ver +boggle boggle ver +boggled boggle ver +boggles boggle ver +boggling boggle ver +boggy boggy adj +bogie bogie nom +bogied bogie ver +bogieing bogie ver +bogies bogie nom +bogs bog nom +bogy bogy nom +bogyman bogyman nom +bogymen bogyman nom +bohemian bohemian nom +bohemianism bohemianism nom +bohemianisms bohemianism nom +bohemians bohemian nom +boil boil nom +boiled boil ver +boiler boiler nom +boilermaker boilermaker nom +boilermakers boilermaker nom +boilerplate boilerplate nom +boilerplates boilerplate nom +boilers boiler nom +boilersuit boilersuit nom +boilersuits boilersuit nom +boiling boil ver +boilings boiling nom +boils boil nom +boisterousness boisterousness nom +boisterousnesses boisterousness nom +bola bola nom +bolas bola nom +bold bold adj +bolder bold adj +boldest bold adj +boldface boldface nom +boldfaced boldface ver +boldfaces boldface nom +boldfacing boldface ver +boldness boldness nom +boldnesses boldness nom +bole bole nom +bolero bolero nom +boleros bolero nom +boles bole nom +bolete bolete nom +boletes bolete nom +bolide bolide nom +bolides bolide nom +bolivar bolivar nom +bolivars bolivar nom +bolivia bolivia nom +boliviano boliviano nom +bolivianos boliviano nom +bolivias bolivia nom +boll boll nom +bollard bollard nom +bollards bollard nom +bollix bollix nom +bollixed bollix ver +bollixes bollix nom +bollixing bollix ver +bollock bollock nom +bollocks bollock nom +bollocksed bollocks ver +bollockses bollocks ver +bollocksing bollocks ver +bolls boll nom +bollworm bollworm nom +bollworms bollworm nom +bolo bolo nom +bologna bologna nom +bolognas bologna nom +bolometer bolometer nom +bolometers bolometer nom +boloney boloney nom +boloneys boloney nom +bolos bolo nom +bolshevik bolshevik nom +bolsheviks bolshevik nom +bolshevise bolshevise ver +bolshevised bolshevise ver +bolshevises bolshevise ver +bolshevising bolshevise ver +bolshevism bolshevism nom +bolshevisms bolshevism nom +bolshevize bolshevize ver +bolshevized bolshevize ver +bolshevizes bolshevize ver +bolshevizing bolshevize ver +bolster bolster nom +bolstered bolster ver +bolstering bolster ver +bolsters bolster nom +bolt bolt nom +bolted bolt ver +bolting bolt ver +bolts bolt nom +bolus bolus nom +boluses bolus nom +bomb bomb nom +bombard bombard nom +bombarded bombard ver +bombardier bombardier nom +bombardiers bombardier nom +bombarding bombard ver +bombardment bombardment nom +bombardments bombardment nom +bombardon bombardon nom +bombardons bombardon nom +bombards bombard nom +bombast bombast nom +bombasts bombast nom +bombed bomb ver +bomber bomber nom +bombers bomber nom +bombilate bombilate ver +bombilated bombilate ver +bombilates bombilate ver +bombilating bombilate ver +bombinate bombinate ver +bombinated bombinate ver +bombinates bombinate ver +bombinating bombinate ver +bombing bomb ver +bombings bombing nom +bombproof bombproof nom +bombproofed bombproof ver +bombproofing bombproof ver +bombproofs bombproof nom +bombs bomb nom +bombshell bombshell nom +bombshells bombshell nom +bombsight bombsight nom +bombsights bombsight nom +bombycid bombycid nom +bombycids bombycid nom +bonanza bonanza nom +bonanzas bonanza nom +bonbon bonbon nom +bonbons bonbon nom +bond bond nom +bondage bondage nom +bondages bondage nom +bonded bond ver +bondholder bondholder nom +bondholders bondholder nom +bonding bond ver +bondings bonding nom +bondmaid bondmaid nom +bondmaids bondmaid nom +bondman bondman nom +bondmen bondman nom +bonds bond nom +bondsman bondsman nom +bondsmen bondsman nom +bondswoman bondswoman nom +bondswomen bondswoman nom +bonduc bonduc nom +bonducs bonduc nom +bondwoman bondwoman nom +bondwomen bondwoman nom +bone bone nom +boned bone ver +bonefish bonefish nom +bonehead bonehead nom +boneheads bonehead nom +bonemeal bonemeal nom +bonemeals bonemeal nom +boner boner nom +boners boner nom +bones bone nom +boneset boneset nom +bonesets boneset nom +bonesetter bonesetter nom +bonesetters bonesetter nom +boneshaker boneshaker nom +boneshakers boneshaker nom +boney boney adj +bonfire bonfire nom +bonfires bonfire nom +bong bong nom +bonged bong ver +bonging bong ver +bongo bongo nom +bongos bongo nom +bongs bong nom +bonhomie bonhomie nom +bonhomies bonhomie nom +bonier boney adj +boniest boney adj +boniness boniness nom +boninesses boniness nom +boning bone ver +bonito bonito nom +bonitos bonito nom +bonk bonk ver +bonked bonk ver +bonking bonk ver +bonks bonk ver +bonnet bonnet nom +bonneted bonnet ver +bonneting bonnet ver +bonnets bonnet nom +bonnie bonnie adj +bonnier bonnie adj +bonnies bonnie nom +bonniest bonnie adj +bonny bonny adj +bonobo bonobo nom +bonobos bonobo nom +bonsai bonsai nom +bonsais bonsai nom +bonus bonus nom +bonuses bonus nom +bonxie bonxie nom +bonxies bonxie nom +bony bony adj +boo boo nom +boob boob nom +boobed boob ver +boobies booby nom +boobing boob ver +booboo booboo nom +booboos booboo nom +boobs boob nom +booby booby nom +boodle boodle nom +boodled boodle ver +boodles boodle nom +boodling boodle ver +booed boo ver +booger booger nom +boogers booger nom +boogeyman boogeyman nom +boogeymen boogeyman nom +boogie boogie nom +boogied boogie ver +boogieing boogie ver +boogies boogie nom +boohoo boohoo nom +boohooed boohoo ver +boohooing boohoo ver +boohoos boohoo nom +booing boo ver +book book nom +bookbinder bookbinder nom +bookbinderies bookbindery nom +bookbinders bookbinder nom +bookbindery bookbindery nom +bookbinding bookbinding nom +bookbindings bookbinding nom +bookcase bookcase nom +bookcases bookcase nom +booked book ver +bookend bookend nom +bookends bookend nom +booker booker nom +bookers booker nom +bookie bookie nom +bookies bookie nom +booking book ver +bookings booking nom +bookishness bookishness nom +bookishnesses bookishness nom +bookkeeper bookkeeper nom +bookkeepers bookkeeper nom +bookkeeping bookkeeping nom +bookkeepings bookkeeping nom +booklet booklet nom +booklets booklet nom +bookmaker bookmaker nom +bookmakers bookmaker nom +bookmaking bookmaking nom +bookmakings bookmaking nom +bookmark bookmark nom +bookmarked bookmark ver +bookmarker bookmarker nom +bookmarkers bookmarker nom +bookmarking bookmark ver +bookmarks bookmark nom +bookmobile bookmobile nom +bookmobiles bookmobile nom +bookplate bookplate nom +bookplates bookplate nom +books book nom +bookseller bookseller nom +booksellers bookseller nom +bookshelf bookshelf nom +bookshelves bookshelf nom +bookshop bookshop nom +bookshops bookshop nom +bookstall bookstall nom +bookstalls bookstall nom +bookstore bookstore nom +bookstores bookstore nom +bookworm bookworm nom +bookworms bookworm nom +boom boom nom +boombox boombox nom +boomboxes boombox nom +boomed boom ver +boomer boomer nom +boomerang boomerang nom +boomeranged boomerang ver +boomeranging boomerang ver +boomerangs boomerang nom +boomers boomer nom +booming boom ver +booms boom nom +boon boon nom +boondoggle boondoggle nom +boondoggled boondoggle ver +boondoggler boondoggler nom +boondogglers boondoggler nom +boondoggles boondoggle nom +boondoggling boondoggle ver +boons boon nom +boor boor nom +boorishness boorishness nom +boorishnesses boorishness nom +boors boor nom +boos boo nom +boost boost nom +boosted boost ver +booster booster nom +boosters booster nom +boosting boost ver +boosts boost nom +boot boot nom +bootblack bootblack nom +bootblacks bootblack nom +booted boot ver +bootee bootee nom +bootees bootee nom +booth booth nom +booths booth nom +bootie bootie nom +booties bootie nom +booting boot ver +bootjack bootjack nom +bootjacks bootjack nom +bootlace bootlace nom +bootlaces bootlace nom +bootleg bootleg nom +bootlegged bootleg ver +bootlegger bootlegger nom +bootleggers bootlegger nom +bootlegging bootleg ver +bootleggings bootlegging nom +bootlegs bootleg nom +bootlick bootlick ver +bootlicked bootlick ver +bootlicker bootlicker nom +bootlickers bootlicker nom +bootlicking bootlick ver +bootlicks bootlick ver +bootmaker bootmaker nom +bootmakers bootmaker nom +boots boot nom +bootstrap bootstrap nom +bootstrapped bootstrap ver +bootstrapping bootstrap ver +bootstraps bootstrap nom +booty booty nom +booze booze nom +boozed booze ver +boozer boozer nom +boozers boozer nom +boozes booze nom +boozier boozy adj +booziest boozy adj +boozing booze ver +boozy boozy adj +bop bop nom +bopeep bopeep nom +bopeeps bopeep nom +bopped bop ver +bopping bop ver +bops bop nom +borage borage nom +borages borage nom +borate borate nom +borates borate nom +borax borax nom +boraxes borax nom +bordello bordello nom +bordellos bordello nom +border border nom +bordered border ver +borderer borderer nom +borderers borderer nom +bordering border ver +borderland borderland nom +borderlands borderland nom +borderline borderline nom +borderlines borderline nom +borders border nom +bore bear ver +borecole borecole nom +borecoles borecole nom +bored bore ver +boredom boredom nom +boredoms boredom nom +borer borer nom +borers borer nom +bores bore nom +boring bore ver +boringness boringness nom +boringnesses boringness nom +borings boring nom +borne bear ver +bornite bornite nom +bornites bornite nom +boron boron nom +borons boron nom +borosilicate borosilicate nom +borosilicates borosilicate nom +borough borough nom +boroughs borough nom +borrelia borrelia nom +borrelias borrelia nom +borrow borrow ver +borrowed borrow ver +borrower borrower nom +borrowers borrower nom +borrowing borrow ver +borrowings borrowing nom +borrows borrow ver +borsch borsch nom +borsches borsch nom +borscht borscht nom +borschts borscht nom +borsht borsht nom +borshts borsht nom +bortsch bortsch nom +bortsches bortsch nom +borzoi borzoi nom +borzois borzoi nom +bosh bosh nom +boshes bosh nom +boskier bosky adj +boskiest bosky adj +bosky bosky adj +bosom bosom nom +bosomed bosom ver +bosomier bosomy adj +bosomiest bosomy adj +bosoming bosom ver +bosoms bosom nom +bosomy bosomy adj +boson boson nom +bosons boson nom +boss boss adj +bossed boss ver +bosser boss adj +bosses boss nom +bossest boss adj +bossier bossy adj +bossies bossy nom +bossiest bossy adj +bossiness bossiness nom +bossinesses bossiness nom +bossing boss ver +bossism bossism nom +bossisms bossism nom +bossy bossy adj +bosun bosun nom +bosuns bosun nom +bot bot nom +bota bota nom +botanical botanical nom +botanicals botanical nom +botanies botany nom +botanise botanise ver +botanised botanise ver +botanises botanise ver +botanising botanise ver +botanist botanist nom +botanists botanist nom +botanize botanize ver +botanized botanize ver +botanizes botanize ver +botanizing botanize ver +botany botany nom +botas bota nom +botch botch nom +botched botch ver +botcher botcher nom +botchers botcher nom +botches botch nom +botchier botchy adj +botchiest botchy adj +botching botch ver +botchy botchy adj +botflies botfly nom +botfly botfly nom +both both sw +bother bother nom +botheration botheration nom +botherations botheration nom +bothered bother ver +bothering bother ver +bothers bother nom +bots bot nom +bottle bottle nom +bottlebrush bottlebrush nom +bottlebrushes bottlebrush nom +bottled bottle ver +bottleful bottleful nom +bottlefuls bottleful nom +bottleneck bottleneck nom +bottlenecked bottleneck ver +bottlenecking bottleneck ver +bottlenecks bottleneck nom +bottlenose bottlenose nom +bottlenoses bottlenose nom +bottler bottler nom +bottlers bottler nom +bottles bottle nom +bottling bottle ver +bottom bottom nom +bottomed bottom ver +bottoming bottom ver +bottomland bottomland nom +bottomlands bottomland nom +bottomlessness bottomlessness nom +bottomlessnesses bottomlessness nom +bottoms bottom nom +botulin botulin nom +botulins botulin nom +botulinum botulinum nom +botulinums botulinum nom +botulinus botulinus nom +botulinuses botulinus nom +botulism botulism nom +botulisms botulism nom +bouchee bouchee nom +bouchees bouchee nom +boucle boucle nom +boucles boucle nom +boudoir boudoir nom +boudoirs boudoir nom +bouffant bouffant nom +bouffants bouffant nom +bouffe bouffe nom +bouffes bouffe nom +bougainvillea bougainvillea nom +bougainvilleas bougainvillea nom +bough bough nom +boughs bough nom +bought buy ver +bouillabaisse bouillabaisse nom +bouillabaisses bouillabaisse nom +bouillon bouillon nom +bouillons bouillon nom +boulder boulder nom +boulders boulder nom +boule boule nom +boules boule nom +boulevard boulevard nom +boulevards boulevard nom +boulle boulle nom +boulles boulle nom +bounce bounce nom +bounced bounce ver +bouncer bouncer nom +bouncers bouncer nom +bounces bounce nom +bouncier bouncy adj +bounciest bouncy adj +bounciness bounciness nom +bouncinesses bounciness nom +bouncing bounce ver +bouncy bouncy adj +bound bind ver +boundaries boundary nom +boundary boundary nom +bounded bound ver +boundedness boundedness nom +boundednesses boundedness nom +bounder bounder nom +bounders bounder nom +bounding bound ver +boundlessness boundlessness nom +boundlessnesses boundlessness nom +bounds bound nom +bounteousness bounteousness nom +bounteousnesses bounteousness nom +bounties bounty nom +bountifulness bountifulness nom +bountifulnesses bountifulness nom +bounty bounty nom +bouquet bouquet nom +bouquets bouquet nom +bourbon bourbon nom +bourbons bourbon nom +bourdon bourdon nom +bourdons bourdon nom +bourgeois bourgeois nom +bourgeoisie bourgeoisie nom +bourgeoisies bourgeoisie nom +bourgeon bourgeon ver +bourgeoned bourgeon ver +bourgeoning bourgeon ver +bourgeons bourgeon ver +bourguignon bourguignon nom +bourguignons bourguignon nom +bourn bourn nom +bourne bourne nom +bournes bourne nom +bourns bourn nom +bourtree bourtree nom +bourtrees bourtree nom +bouse bouse ver +boused bouse ver +bouses bouse ver +bousing bouse ver +boustrophedon boustrophedon nom +boustrophedons boustrophedon nom +bout bout nom +boutique boutique nom +boutiques boutique nom +boutonniere boutonniere nom +boutonnieres boutonniere nom +bouts bout nom +bovid bovid nom +bovids bovid nom +bovine bovine nom +bovines bovine nom +bow bow nom +bowdlerisation bowdlerisation nom +bowdlerisations bowdlerisation nom +bowdlerise bowdlerise ver +bowdlerised bowdlerise ver +bowdlerises bowdlerise ver +bowdlerising bowdlerise ver +bowdlerization bowdlerization nom +bowdlerizations bowdlerization nom +bowdlerize bowdlerize ver +bowdlerized bowdlerize ver +bowdlerizes bowdlerize ver +bowdlerizing bowdlerize ver +bowed bow ver +bowel bowel nom +boweled bowel ver +boweling bowel ver +bowels bowel nom +bower bower nom +bowerbird bowerbird nom +bowerbirds bowerbird nom +bowered bower ver +bowering bower ver +bowers bower nom +bowfin bowfin nom +bowfins bowfin nom +bowhead bowhead nom +bowheads bowhead nom +bowing bow ver +bowings bowing nom +bowknot bowknot nom +bowknots bowknot nom +bowl bowl nom +bowlder bowlder nom +bowlders bowlder nom +bowled bowl ver +bowleg bowleg nom +bowlegs bowleg nom +bowler bowler nom +bowlers bowler nom +bowlful bowlful nom +bowlfuls bowlful nom +bowline bowline nom +bowlines bowline nom +bowling bowl ver +bowls bowl nom +bowman bowman nom +bowmen bowman nom +bows bow nom +bowse bowse ver +bowsed bowse ver +bowses bowse ver +bowsing bowse ver +bowsprit bowsprit nom +bowsprits bowsprit nom +bowstring bowstring nom +bowstringed bowstring ver +bowstringing bowstring ver +bowstrings bowstring nom +bowwow bowwow nom +bowwows bowwow nom +box box nom +boxberries boxberry nom +boxberry boxberry nom +boxcar boxcar nom +boxcars boxcar nom +boxed box ver +boxer boxer nom +boxers boxer nom +boxes box nom +boxfish boxfish nom +boxful boxful nom +boxfuls boxful nom +boxier boxy adj +boxiest boxy adj +boxing box ver +boxings boxing nom +boxthorn boxthorn nom +boxthorns boxthorn nom +boxwood boxwood nom +boxwoods boxwood nom +boxy boxy adj +boy boy nom +boycott boycott nom +boycotted boycott ver +boycotting boycott ver +boycotts boycott nom +boyfriend boyfriend nom +boyfriends boyfriend nom +boyhood boyhood nom +boyhoods boyhood nom +boyishness boyishness nom +boyishnesses boyishness nom +boys boy nom +boysenberries boysenberry nom +boysenberry boysenberry nom +bozo bozo nom +bozos bozo nom +bra bra nom +brabble brabble ver +brabbled brabble ver +brabbles brabble ver +brabbling brabble ver +brace brace nom +braced brace ver +bracelet bracelet nom +bracelets bracelet nom +bracer bracer nom +bracers bracer nom +braces brace nom +brachia brachium nom +brachiate brachiate ver +brachiated brachiate ver +brachiates brachiate ver +brachiating brachiate ver +brachiation brachiation nom +brachiations brachiation nom +brachiopod brachiopod nom +brachiopods brachiopod nom +brachium brachium nom +brachydactylia brachydactylia nom +brachydactylias brachydactylia nom +brachyuran brachyuran nom +brachyurans brachyuran nom +bracing brace ver +bracings bracing nom +bracken bracken nom +brackens bracken nom +bracket bracket nom +bracketed bracket ver +bracketing bracket ver +brackets bracket nom +brackishness brackishness nom +brackishnesses brackishness nom +bract bract nom +bracteole bracteole nom +bracteoles bracteole nom +bracts bract nom +brad brad nom +bradawl bradawl nom +bradawls bradawl nom +bradded brad ver +bradding brad ver +brads brad nom +bradycardia bradycardia nom +bradycardias bradycardia nom +brae brae nom +braes brae nom +brag brag adj +braggadocio braggadocio nom +braggadocios braggadocio nom +braggart braggart nom +braggarts braggart nom +bragged brag ver +bragger brag adj +braggers bragger nom +braggest brag adj +braggier braggy adj +braggiest braggy adj +bragging brag ver +braggings bragging nom +braggy braggy adj +brags brag nom +braid braid nom +braided braid ver +braiding braid ver +braidings braiding nom +braids braid nom +brail brail ver +brailed brail ver +brailing brail ver +braille braille nom +brailled braille ver +brailles braille nom +brailling braille ver +brails brail ver +brain brain nom +braincase braincase nom +braincases braincase nom +brainchild brainchild nom +brainchildren brainchild nom +brained brain ver +brainier brainy adj +brainiest brainy adj +braininess braininess nom +braininesses braininess nom +braining brain ver +brainpan brainpan nom +brainpans brainpan nom +brainpower brainpower nom +brainpowers brainpower nom +brains brain nom +brainstem brainstem nom +brainstems brainstem nom +brainstorm brainstorm nom +brainstormed brainstorm ver +brainstorming brainstorm ver +brainstormings brainstorming nom +brainstorms brainstorm nom +brainteaser brainteaser nom +brainteasers brainteaser nom +brainwash brainwash ver +brainwashed brainwash ver +brainwashes brainwash ver +brainwashing brainwash ver +brainwashings brainwashing nom +brainwave brainwave nom +brainwaves brainwave nom +brainworker brainworker nom +brainworkers brainworker nom +brainy brainy adj +braise braise ver +braised braise ver +braises braise ver +braising braise ver +brake brake nom +braked brake ver +brakeman brakeman nom +brakemen brakeman nom +brakes brake nom +brakier braky adj +brakiest braky adj +braking brake ver +braky braky adj +bramble bramble nom +brambled bramble ver +brambles bramble nom +bramblier brambly adj +brambliest brambly adj +brambling bramble ver +bramblings brambling nom +brambly brambly adj +bran bran nom +branch branch nom +branched branch ver +branches branch nom +branchia branchia nom +branchiae branchia nom +branchier branchy adj +branchiest branchy adj +branching branch ver +branchings branching nom +branchiopod branchiopod nom +branchiopods branchiopod nom +branchlet branchlet nom +branchlets branchlet nom +branchy branchy adj +brand brand nom +branded brand ver +brander brander nom +brandered brander ver +brandering brander ver +branders brander nom +brandied brandy ver +brandies brandy nom +branding brand ver +brandish brandish nom +brandished brandish ver +brandishes brandish nom +brandishing brandish ver +brands brand nom +brandy brandy nom +brandying brandy ver +branned bran ver +branning bran ver +brans bran nom +brant brant nom +brants brant nom +bras bra nom +brash brash adj +brasher brash adj +brashes brash nom +brashest brash adj +brashness brashness nom +brashnesses brashness nom +brasier brasier nom +brasiers brasier nom +brass brass nom +brassard brassard nom +brassards brassard nom +brasserie brasserie nom +brasseries brasserie nom +brasses brass nom +brassie brassie nom +brassier brassy adj +brassiere brassiere nom +brassieres brassiere nom +brassies brassie nom +brassiest brassy adj +brassiness brassiness nom +brassinesses brassiness nom +brassy brassy adj +brat brat nom +brats brat nom +brattice brattice ver +bratticed brattice ver +brattices brattice ver +bratticing brattice ver +brattier bratty adj +brattiest bratty adj +brattle brattle ver +brattled brattle ver +brattles brattle ver +brattling brattle ver +bratty bratty adj +bratwurst bratwurst nom +bratwursts bratwurst nom +bravado bravado nom +bravadoes bravado nom +brave brave adj +braved brave ver +braveness braveness nom +bravenesses braveness nom +braver brave adj +braveries bravery nom +bravery bravery nom +braves brave nom +bravest brave adj +braving brave ver +bravo bravo nom +bravoed bravo ver +bravoing bravo ver +bravos bravo nom +bravura bravura nom +bravuras bravura nom +braw braw adj +brawer braw adj +brawest braw adj +brawl brawl nom +brawled brawl ver +brawler brawler nom +brawlers brawler nom +brawling brawl ver +brawls brawl nom +brawn brawn nom +brawnier brawny adj +brawniest brawny adj +brawniness brawniness nom +brawninesses brawniness nom +brawns brawn nom +brawny brawny adj +bray bray nom +brayed bray ver +braying bray ver +brays bray nom +braze braze ver +brazed braze ver +brazen brazen ver +brazened brazen ver +brazening brazen ver +brazenness brazenness nom +brazennesses brazenness nom +brazens brazen ver +brazer brazer nom +brazers brazer nom +brazes braze ver +brazier brazier nom +braziers brazier nom +brazil brazil nom +brazils brazil nom +brazilwood brazilwood nom +brazilwoods brazilwood nom +brazing braze ver +breach breach nom +breached breach ver +breaches breach nom +breaching breach ver +bread bread nom +breadbasket breadbasket nom +breadbaskets breadbasket nom +breadboard breadboard nom +breadboarded breadboard ver +breadboarding breadboard ver +breadboards breadboard nom +breadbox breadbox nom +breadboxes breadbox nom +breadcrumb breadcrumb nom +breadcrumbs breadcrumb nom +breaded bread ver +breadfruit breadfruit nom +breadfruits breadfruit nom +breading bread ver +breadline breadline nom +breadlines breadline nom +breadroot breadroot nom +breadroots breadroot nom +breads bread nom +breadstick breadstick nom +breadsticks breadstick nom +breadstuff breadstuff nom +breadstuffs breadstuff nom +breadth breadth nom +breadths breadth nom +breadwinner breadwinner nom +breadwinners breadwinner nom +break break nom +breakable breakable nom +breakableness breakableness nom +breakablenesses breakableness nom +breakables breakable nom +breakage breakage nom +breakages breakage nom +breakaway breakaway nom +breakaways breakaway nom +breakdown breakdown nom +breakdowns breakdown nom +breaker breaker nom +breakers breaker nom +breakeven breakeven nom +breakevens breakeven nom +breakfast breakfast nom +breakfasted breakfast ver +breakfasting breakfast ver +breakfasts breakfast nom +breakfront breakfront nom +breakfronts breakfront nom +breaking break ver +breakings breaking nom +breakout breakout nom +breakouts breakout nom +breaks break nom +breakthrough breakthrough nom +breakthroughs breakthrough nom +breakup breakup nom +breakups breakup nom +breakwater breakwater nom +breakwaters breakwater nom +bream bream nom +breamed bream ver +breaming bream ver +breams bream nom +breast breast nom +breastbone breastbone nom +breastbones breastbone nom +breasted breast ver +breasting breast ver +breastpin breastpin nom +breastpins breastpin nom +breastplate breastplate nom +breastplates breastplate nom +breasts breast nom +breaststroke breaststroke nom +breaststrokes breaststroke nom +breastwork breastwork nom +breastworks breastwork nom +breath breath nom +breathalyse breathalyse ver +breathalysed breathalyse ver +breathalyser breathalyser nom +breathalysers breathalyser nom +breathalyses breathalyse ver +breathalysing breathalyse ver +breathalyze breathalyze ver +breathalyzed breathalyze ver +breathalyzer breathalyzer nom +breathalyzers breathalyzer nom +breathalyzes breathalyze ver +breathalyzing breathalyze ver +breathe breathe ver +breathed breathe ver +breather breather nom +breathers breather nom +breathes breathe ver +breathier breathy adj +breathiest breathy adj +breathing breathe ver +breathings breathing nom +breathlessness breathlessness nom +breathlessnesses breathlessness nom +breaths breath nom +breathy breathy adj +breccia breccia nom +breccias breccia nom +brecciate brecciate ver +brecciated brecciate ver +brecciates brecciate ver +brecciating brecciate ver +bred breed ver +breech breech nom +breechblock breechblock nom +breechblocks breechblock nom +breechcloth breechcloth nom +breechcloths breechcloth nom +breechclout breechclout nom +breechclouts breechclout nom +breeched breech ver +breeches breech nom +breeching breech ver +breed breed nom +breeder breeder nom +breeders breeder nom +breeding breed ver +breedings breeding nom +breeds breed nom +breeze breeze nom +breezed breeze ver +breezes breeze nom +breezeway breezeway nom +breezeways breezeway nom +breezier breezy adj +breeziest breezy adj +breeziness breeziness nom +breezinesses breeziness nom +breezing breeze ver +breezy breezy adj +bregma bregma nom +bregmata bregma nom +brent brent nom +brents brent nom +brethren brother nom +breve breve nom +breves breve nom +brevet brevet nom +brevets brevet nom +brevetted brevet ver +brevetting brevet ver +breviaries breviary nom +breviary breviary nom +brevities brevity nom +brevity brevity nom +brew brew nom +brewage brewage nom +brewages brewage nom +brewed brew ver +brewer brewer nom +breweries brewery nom +brewers brewer nom +brewery brewery nom +brewing brew ver +brewings brewing nom +brewpub brewpub nom +brewpubs brewpub nom +brews brew nom +briar briar nom +briard briard nom +briards briard nom +briarroot briarroot nom +briarroots briarroot nom +briars briar nom +briarwood briarwood nom +briarwoods briarwood nom +bribe bribe nom +bribed bribe ver +briber briber nom +briberies bribery nom +bribers briber nom +bribery bribery nom +bribes bribe nom +bribing bribe ver +brick brick nom +brickbat brickbat nom +brickbats brickbat nom +bricked brick ver +brickfield brickfield nom +brickfields brickfield nom +bricking brick ver +brickkiln brickkiln nom +brickkilns brickkiln nom +bricklayer bricklayer nom +bricklayers bricklayer nom +bricklaying bricklaying nom +bricklayings bricklaying nom +bricks brick nom +brickwork brickwork nom +brickworks brickwork nom +brickyard brickyard nom +brickyards brickyard nom +bricole bricole nom +bricoles bricole nom +bridal bridal nom +bridals bridal nom +bride bride nom +bridecake bridecake nom +bridecakes bridecake nom +bridegroom bridegroom nom +bridegrooms bridegroom nom +brides bride nom +bridesmaid bridesmaid nom +bridesmaids bridesmaid nom +bridge bridge nom +bridged bridge ver +bridgehead bridgehead nom +bridgeheads bridgehead nom +bridges bridge nom +bridgework bridgework nom +bridgeworks bridgework nom +bridging bridge ver +bridle bridle nom +bridled bridle ver +bridles bridle nom +bridling bridle ver +bridoon bridoon nom +bridoons bridoon nom +brie brie nom +brief brief sw +briefcase briefcase nom +briefcases briefcase nom +briefed brief ver +briefer brief adj +briefest brief adj +briefing brief ver +briefings briefing nom +briefness briefness nom +briefnesses briefness nom +briefs brief nom +brier brier nom +briers brier nom +brierwood brierwood nom +brierwoods brierwood nom +bries brie nom +brig brig nom +brigade brigade nom +brigaded brigade ver +brigades brigade nom +brigadier brigadier nom +brigadiers brigadier nom +brigading brigade ver +brigand brigand nom +brigandage brigandage nom +brigandages brigandage nom +brigandine brigandine nom +brigandines brigandine nom +brigands brigand nom +brigantine brigantine nom +brigantines brigantine nom +bright bright adj +brighten brighten ver +brightened brighten ver +brightener brightener nom +brighteners brightener nom +brightening brighten ver +brightens brighten ver +brighter bright adj +brightest bright adj +brightness brightness nom +brightnesses brightness nom +brigs brig nom +brill brill nom +brilliance brilliance nom +brilliances brilliance nom +brilliancies brilliancy nom +brilliancy brilliancy nom +brilliant brilliant nom +brilliantine brilliantine nom +brilliantines brilliantine nom +brilliants brilliant nom +brills brill nom +brim brim nom +brimmed brim ver +brimming brim ver +brims brim nom +brimstone brimstone nom +brimstones brimstone nom +brindle brindle nom +brindles brindle nom +brine brine nom +brined brine ver +brines brine nom +bring bring ver +bringer bringer nom +bringers bringer nom +bringing bring ver +bringings bringing nom +brings bring ver +brinier briny adj +brinies briny nom +briniest briny adj +brininess brininess nom +brininesses brininess nom +brining brine ver +brinjal brinjal nom +brinjals brinjal nom +brink brink nom +brinkmanship brinkmanship nom +brinkmanships brinkmanship nom +brinks brink nom +brinksmanship brinksmanship nom +brinksmanships brinksmanship nom +briny briny adj +brioche brioche nom +brioches brioche nom +brionies briony nom +briony briony nom +briquet briquet nom +briquets briquet nom +briquette briquette nom +briquetted briquet ver +briquettes briquette nom +briquetting briquet ver +brisance brisance nom +brisances brisance nom +brisk brisk adj +brisked brisk ver +brisken brisken ver +briskened brisken ver +briskening brisken ver +briskens brisken ver +brisker brisk adj +briskest brisk adj +brisket brisket nom +briskets brisket nom +brisking brisk ver +briskness briskness nom +brisknesses briskness nom +brisks brisk ver +brisling brisling nom +bristle bristle nom +bristled bristle ver +bristles bristle nom +bristletail bristletail nom +bristletails bristletail nom +bristlier bristly adj +bristliest bristly adj +bristling bristle ver +bristly bristly adj +brit brit nom +brits brit nom +britt britt nom +brittle brittle adj +brittlebush brittlebush nom +brittlebushes brittlebush nom +brittled brittle ver +brittleness brittleness nom +brittlenesses brittleness nom +brittler brittle adj +brittles brittle nom +brittlest brittle adj +brittling brittle ver +britts britt nom +bro bro nom +broach broach nom +broached broach ver +broaches broach nom +broaching broach ver +broad broad adj +broadax broadax nom +broadaxe broadaxe nom +broadaxes broadax nom +broadband broadband nom +broadbands broadband nom +broadbill broadbill nom +broadbills broadbill nom +broadcast broadcast ver +broadcaster broadcaster nom +broadcasters broadcaster nom +broadcasting broadcast ver +broadcastings broadcasting nom +broadcasts broadcast nom +broadcloth broadcloth nom +broadcloths broadcloth nom +broaden broaden ver +broadened broaden ver +broadening broaden ver +broadens broaden ver +broader broad adj +broadest broad adj +broadloom broadloom nom +broadlooms broadloom nom +broadness broadness nom +broadnesses broadness nom +broads broad nom +broadsheet broadsheet nom +broadsheets broadsheet nom +broadside broadside nom +broadsided broadside ver +broadsides broadside nom +broadsiding broadside ver +broadsword broadsword nom +broadswords broadsword nom +broadtail broadtail nom +broadtails broadtail nom +brocade brocade nom +brocaded brocade ver +brocades brocade nom +brocading brocade ver +broccoli broccoli nom +broccolis broccoli nom +brochette brochette nom +brochettes brochette nom +brochure brochure nom +brochures brochure nom +brocket brocket nom +brockets brocket nom +brogan brogan nom +brogans brogan nom +brogue brogue nom +brogues brogue nom +broider broider ver +broidered broider ver +broidering broider ver +broiders broider ver +broil broil nom +broiled broil ver +broiler broiler nom +broilers broiler nom +broiling broil ver +broils broil nom +broke break ver +broken break ver +brokenheartedness brokenheartedness nom +brokenheartednesses brokenheartedness nom +brokenness brokenness nom +brokennesses brokenness nom +broker broker nom +brokerage brokerage nom +brokerages brokerage nom +brokered broker ver +brokering broker ver +brokers broker nom +brollies brolly nom +brolly brolly nom +bromate bromate ver +bromated bromate ver +bromates bromate ver +bromating bromate ver +brome brome nom +bromegrass bromegrass nom +bromegrasses bromegrass nom +bromes brome nom +bromide bromide nom +bromides bromide nom +brominate brominate ver +brominated brominate ver +brominates brominate ver +brominating brominate ver +bromine bromine nom +bromines bromine nom +bronc bronc nom +bronchi bronchus nom +bronchiole bronchiole nom +bronchioles bronchiole nom +bronchitis bronchitis nom +bronchitises bronchitis nom +broncho broncho nom +bronchodilator bronchodilator nom +bronchodilators bronchodilator nom +bronchos broncho nom +bronchoscope bronchoscope nom +bronchoscopes bronchoscope nom +bronchospasm bronchospasm nom +bronchospasms bronchospasm nom +bronchus bronchus nom +bronco bronco nom +broncobuster broncobuster nom +broncobusters broncobuster nom +broncos bronco nom +broncs bronc nom +brontosaur brontosaur nom +brontosaurs brontosaur nom +brontosaurus brontosaurus nom +brontosauruses brontosaurus nom +bronze bronze nom +bronzed bronze ver +bronzes bronze nom +bronzier bronzy adj +bronziest bronzy adj +bronzing bronze ver +bronzy bronzy adj +brooch brooch nom +brooches brooch nom +brood brood nom +brooded brood ver +brooder brooder nom +brooders brooder nom +broodier broody adj +broodiest broody adj +brooding brood ver +broodings brooding nom +broodmare broodmare nom +broodmares broodmare nom +broods brood nom +broody broody adj +brook brook nom +brooked brook ver +brooking brook ver +brooklet brooklet nom +brooklets brooklet nom +brooklime brooklime nom +brooklimes brooklime nom +brooks brook nom +brookweed brookweed nom +brookweeds brookweed nom +broom broom nom +broomcorn broomcorn nom +broomcorns broomcorn nom +broomed broom ver +brooming broom ver +brooms broom nom +broomstick broomstick nom +broomsticks broomstick nom +bros bro nom +broth broth nom +brothel brothel nom +brothels brothel nom +brother brother nom +brotherhood brotherhood nom +brotherhoods brotherhood nom +brotherliness brotherliness nom +brotherlinesses brotherliness nom +brothers brother nom +broths broth nom +brougham brougham nom +broughams brougham nom +brought bring ver +brouhaha brouhaha nom +brouhahas brouhaha nom +brow brow nom +browallia browallia nom +browallias browallia nom +browbeat browbeat ver +browbeaten browbeat ver +browbeating browbeat ver +browbeats browbeat ver +brown brown adj +browned brown ver +browner brown adj +brownest brown adj +brownie brownie nom +brownies brownie nom +browning brown ver +brownings browning nom +brownness brownness nom +brownnesses brownness nom +brownout brownout nom +brownouts brownout nom +browns brown nom +brownstone brownstone nom +brownstones brownstone nom +brows brow nom +browse browse nom +browsed browse ver +browser browser nom +browsers browser nom +browses browse nom +browsing browse ver +browsings browsing nom +brucelloses brucellosis nom +brucellosis brucellosis nom +brucine brucine nom +brucines brucine nom +bruin bruin nom +bruins bruin nom +bruise bruise nom +bruised bruise ver +bruiser bruiser nom +bruisers bruiser nom +bruises bruise nom +bruising bruise ver +bruit bruit nom +bruited bruit ver +bruiting bruit ver +bruits bruit nom +brunch brunch nom +brunched brunch ver +brunches brunch nom +brunching brunch ver +brunet brunet nom +brunets brunet nom +brunette brunette nom +brunettes brunette nom +brunt brunt nom +brunts brunt nom +brush brush nom +brushed brush ver +brushes brush nom +brushier brushy adj +brushiest brushy adj +brushing brush ver +brushings brushing nom +brushoff brushoff nom +brushoffs brushoff nom +brushup brushup nom +brushups brushup nom +brushwood brushwood nom +brushwoods brushwood nom +brushwork brushwork nom +brushworks brushwork nom +brushy brushy adj +brusk brusk adj +brusker brusk adj +bruskest brusk adj +brusque brusque adj +brusqueness brusqueness nom +brusquenesses brusqueness nom +brusquer brusque adj +brusquest brusque adj +brutalisation brutalisation nom +brutalisations brutalisation nom +brutalise brutalise ver +brutalised brutalise ver +brutalises brutalise ver +brutalising brutalise ver +brutalities brutality nom +brutality brutality nom +brutalization brutalization nom +brutalizations brutalization nom +brutalize brutalize ver +brutalized brutalize ver +brutalizes brutalize ver +brutalizing brutalize ver +brute brute nom +bruted brute ver +brutes brute nom +bruting brute ver +brutishness brutishness nom +brutishnesses brutishness nom +bryonies bryony nom +bryony bryony nom +bryophyte bryophyte nom +bryophytes bryophyte nom +bryozoan bryozoan nom +bryozoans bryozoan nom +bub bub nom +bubble bubble nom +bubbled bubble ver +bubblegum bubblegum nom +bubblegums bubblegum nom +bubbler bubbler nom +bubblers bubbler nom +bubbles bubble nom +bubblier bubbly adj +bubblies bubbly nom +bubbliest bubbly adj +bubbliness bubbliness nom +bubblinesses bubbliness nom +bubbling bubble ver +bubbly bubbly adj +bubo bubo nom +buboes bubo nom +bubs bub nom +buccaneer buccaneer nom +buccaneered buccaneer ver +buccaneering buccaneer ver +buccaneers buccaneer nom +buck buck nom +buckaroo buckaroo nom +buckaroos buckaroo nom +buckbean buckbean nom +buckbeans buckbean nom +buckboard buckboard nom +buckboards buckboard nom +bucked buck ver +bucket bucket nom +bucketed bucket ver +bucketful bucketful nom +bucketfuls bucketful nom +bucketing bucket ver +buckets bucket nom +buckeye buckeye nom +buckeyes buckeye nom +bucking buck ver +buckle buckle nom +buckled buckle ver +buckler buckler nom +bucklered buckler ver +bucklering buckler ver +bucklers buckler nom +buckles buckle nom +buckling buckle ver +buckram buckram nom +buckramed buckram ver +buckraming buckram ver +buckrams buckram nom +bucks buck nom +bucksaw bucksaw nom +bucksaws bucksaw nom +buckshot buckshot nom +buckshots buckshot nom +buckskin buckskin nom +buckskins buckskin nom +buckteeth bucktooth nom +buckthorn buckthorn nom +buckthorns buckthorn nom +bucktooth bucktooth nom +buckwheat buckwheat nom +buckwheats buckwheat nom +bucolic bucolic nom +bucolics bucolic nom +bud bud nom +budded bud ver +buddied buddy ver +buddier buddy adj +buddies buddy nom +buddiest buddy adj +budding bud ver +buddings budding nom +buddleia buddleia nom +buddleias buddleia nom +buddy buddy adj +buddying buddy ver +budge budge nom +budged budge ver +budgerigar budgerigar nom +budgerigars budgerigar nom +budges budge nom +budget budget nom +budgeted budget ver +budgeting budget ver +budgets budget nom +budgie budgie nom +budgies budgie nom +budging budge ver +buds bud nom +buff buff nom +buffalo buffalo nom +buffaloed buffalo ver +buffaloes buffalo nom +buffalofish buffalofish nom +buffaloing buffalo ver +buffed buff ver +buffer buffer nom +buffered buffer ver +buffering buffer ver +buffers buffer nom +buffet buffet nom +buffeted buffet ver +buffeting buffet ver +buffetings buffeting nom +buffets buffet nom +buffing buff ver +bufflehead bufflehead nom +buffleheads bufflehead nom +buffoon buffoon nom +buffooneries buffoonery nom +buffoonery buffoonery nom +buffoons buffoon nom +buffs buff nom +bug bug nom +bugaboo bugaboo nom +bugaboos bugaboo nom +bugbane bugbane nom +bugbanes bugbane nom +bugbear bugbear nom +bugbears bugbear nom +bugged bug ver +bugger bugger nom +buggered bugger ver +buggeries buggery nom +buggering bugger ver +buggers bugger nom +buggery buggery nom +buggier buggy adj +buggies buggy nom +buggiest buggy adj +bugginess bugginess nom +bugginesses bugginess nom +bugging bug ver +buggy buggy adj +bugle bugle nom +bugled bugle ver +bugler bugler nom +buglers bugler nom +bugles bugle nom +bugleweed bugleweed nom +bugleweeds bugleweed nom +bugling bugle ver +bugloss bugloss nom +buglosses bugloss nom +bugs bug nom +buhl buhl nom +buhls buhl nom +build build nom +builder builder nom +builders builder nom +building build ver +buildings building nom +builds build nom +buildup buildup nom +buildups buildup nom +built build ver +bulb bulb nom +bulbil bulbil nom +bulbils bulbil nom +bulblet bulblet nom +bulblets bulblet nom +bulbs bulb nom +bulbul bulbul nom +bulbuls bulbul nom +bulge bulge nom +bulged bulge ver +bulges bulge nom +bulghur bulghur nom +bulghurs bulghur nom +bulgier bulgy adj +bulgiest bulgy adj +bulginess bulginess nom +bulginesses bulginess nom +bulging bulge ver +bulgur bulgur nom +bulgurs bulgur nom +bulgy bulgy adj +bulimarexia bulimarexia nom +bulimarexias bulimarexia nom +bulimia bulimia nom +bulimias bulimia nom +bulimic bulimic nom +bulimics bulimic nom +bulk bulk nom +bulked bulk ver +bulkhead bulkhead nom +bulkheads bulkhead nom +bulkier bulky adj +bulkiest bulky adj +bulkiness bulkiness nom +bulkinesses bulkiness nom +bulking bulk ver +bulks bulk nom +bulky bulky adj +bull bull nom +bulla bulla nom +bullace bullace nom +bullaces bullace nom +bullas bulla nom +bullbat bullbat nom +bullbats bullbat nom +bulldog bulldog nom +bulldogged bulldog ver +bulldogging bulldog ver +bulldogs bulldog nom +bulldoze bulldoze ver +bulldozed bulldoze ver +bulldozer bulldozer nom +bulldozers bulldozer nom +bulldozes bulldoze ver +bulldozing bulldoze ver +bulled bull ver +bullet bullet nom +bulleted bullet ver +bulletin bulletin nom +bulletined bulletin ver +bulleting bullet ver +bulletining bulletin ver +bulletins bulletin nom +bulletproof bulletproof ver +bulletproofed bulletproof ver +bulletproofing bulletproof ver +bulletproofs bulletproof ver +bullets bullet nom +bullfight bullfight nom +bullfighter bullfighter nom +bullfighters bullfighter nom +bullfighting bullfighting nom +bullfightings bullfighting nom +bullfights bullfight nom +bullfinch bullfinch nom +bullfinches bullfinch nom +bullfrog bullfrog nom +bullfrogs bullfrog nom +bullhead bullhead nom +bullheadedness bullheadedness nom +bullheadednesses bullheadedness nom +bullheads bullhead nom +bullhorn bullhorn nom +bullhorns bullhorn nom +bullied bully ver +bullier bully adj +bullies bully nom +bulliest bully adj +bulling bull ver +bullion bullion nom +bullions bullion nom +bullishness bullishness nom +bullishnesses bullishness nom +bullnose bullnose nom +bullnoses bullnose nom +bullock bullock nom +bullocks bullock nom +bullpen bullpen nom +bullpens bullpen nom +bullring bullring nom +bullrings bullring nom +bullrush bullrush nom +bullrushes bullrush nom +bulls bull nom +bullshit bullshit nom +bullshits bullshit nom +bullshitted bullshit ver +bullshitter bullshitter nom +bullshitters bullshitter nom +bullshitting bullshit ver +bullshot bullshot nom +bullshots bullshot nom +bullsnake bullsnake nom +bullsnakes bullsnake nom +bullterrier bullterrier nom +bullterriers bullterrier nom +bully bully adj +bullyboy bullyboy nom +bullyboys bullyboy nom +bullying bully ver +bullyrag bullyrag ver +bullyragged bullyrag ver +bullyragging bullyrag ver +bullyrags bullyrag ver +bulrush bulrush nom +bulrushes bulrush nom +bulwark bulwark nom +bulwarked bulwark ver +bulwarking bulwark ver +bulwarks bulwark nom +bum bum adj +bumble bumble nom +bumblebee bumblebee nom +bumblebees bumblebee nom +bumbled bumble ver +bumbler bumbler nom +bumblers bumbler nom +bumbles bumble nom +bumbling bumble ver +bumboat bumboat nom +bumboats bumboat nom +bummed bum ver +bummer bum adj +bummers bummer nom +bummest bum adj +bumming bum ver +bump bump nom +bumped bump ver +bumper bumper nom +bumpered bumper ver +bumpering bumper ver +bumpers bumper nom +bumpier bumpy adj +bumpiest bumpy adj +bumpiness bumpiness nom +bumpinesses bumpiness nom +bumping bump ver +bumpkin bumpkin nom +bumpkins bumpkin nom +bumps bump nom +bumptiousness bumptiousness nom +bumptiousnesses bumptiousness nom +bumpy bumpy adj +bums bum nom +bun bun nom +bunce bunce nom +bunces bunce nom +bunch bunch nom +bunchberries bunchberry nom +bunchberry bunchberry nom +bunched bunch ver +bunches bunch nom +bunchgrass bunchgrass nom +bunchgrasses bunchgrass nom +bunchier bunchy adj +bunchiest bunchy adj +bunching bunch ver +bunchy bunchy adj +bunco bunco nom +buncoed bunco ver +buncoing bunco ver +buncombe buncombe nom +buncombes buncombe nom +buncos bunco nom +bundle bundle nom +bundled bundle ver +bundles bundle nom +bundling bundle ver +bung bung nom +bungalow bungalow nom +bungalows bungalow nom +bunged bung ver +bungee bungee nom +bungees bungee nom +bunghole bunghole nom +bungholes bunghole nom +bunging bung ver +bungle bungle nom +bungled bungle ver +bungler bungler nom +bunglers bungler nom +bungles bungle nom +bungling bungle ver +bungs bung nom +bunion bunion nom +bunions bunion nom +bunk bunk nom +bunked bunk ver +bunker bunker nom +bunkered bunker ver +bunkering bunker ver +bunkers bunker nom +bunkhouse bunkhouse nom +bunkhouses bunkhouse nom +bunking bunk ver +bunkmate bunkmate nom +bunkmates bunkmate nom +bunko bunko nom +bunkoed bunko ver +bunkoing bunko ver +bunkos bunko nom +bunks bunk nom +bunkum bunkum nom +bunkums bunkum nom +bunnies bunny nom +bunny bunny nom +buns bun nom +bunt bunt nom +buntal buntal nom +buntals buntal nom +bunted bunt ver +bunter bunter nom +bunters bunter nom +bunting bunt ver +buntings bunting nom +bunts bunt nom +buoy buoy nom +buoyancies buoyancy nom +buoyancy buoyancy nom +buoyed buoy ver +buoying buoy ver +buoys buoy nom +bur bur nom +burble burble nom +burbled burble ver +burbles burble nom +burblier burbly adj +burbliest burbly adj +burbling burble ver +burbly burbly adj +burbot burbot nom +burbots burbot nom +burden burden nom +burdened burden ver +burdening burden ver +burdens burden nom +burdock burdock nom +burdocks burdock nom +bureau bureau nom +bureaucracies bureaucracy nom +bureaucracy bureaucracy nom +bureaucrat bureaucrat nom +bureaucratism bureaucratism nom +bureaucratisms bureaucratism nom +bureaucratization bureaucratization nom +bureaucratizations bureaucratization nom +bureaucratize bureaucratize ver +bureaucratized bureaucratize ver +bureaucratizes bureaucratize ver +bureaucratizing bureaucratize ver +bureaucrats bureaucrat nom +bureaus bureau nom +burette burette nom +burettes burette nom +burg burg nom +burgeon burgeon nom +burgeoned burgeon ver +burgeoning burgeon ver +burgeons burgeon nom +burger burger nom +burgers burger nom +burgess burgess nom +burgesses burgess nom +burgh burgh nom +burgher burgher nom +burghers burgher nom +burghs burgh nom +burglar burglar nom +burglaries burglary nom +burglarize burglarize ver +burglarized burglarize ver +burglarizes burglarize ver +burglarizing burglarize ver +burglarproof burglarproof ver +burglarproofed burglarproof ver +burglarproofing burglarproof ver +burglarproofs burglarproof ver +burglars burglar nom +burglary burglary nom +burgle burgle ver +burgled burgle ver +burgles burgle ver +burgling burgle ver +burgomaster burgomaster nom +burgomasters burgomaster nom +burgoo burgoo nom +burgoos burgoo nom +burgrave burgrave nom +burgraves burgrave nom +burgs burg nom +burgundies burgundy nom +burgundy burgundy nom +burial burial nom +burials burial nom +buried bury ver +buries bury ver +burin burin nom +burins burin nom +burke burke ver +burked burke ver +burkes burke ver +burking burke ver +burl burl nom +burlap burlap nom +burlaps burlap nom +burled burl ver +burlesque burlesque nom +burlesqued burlesque ver +burlesques burlesque nom +burlesquing burlesque ver +burlier burly adj +burliest burly adj +burliness burliness nom +burlinesses burliness nom +burling burl ver +burls burl nom +burly burly adj +burn burn nom +burnable burnable nom +burnables burnable nom +burned burn ver +burner burner nom +burners burner nom +burning burn ver +burnings burning nom +burnish burnish nom +burnished burnish ver +burnisher burnisher nom +burnishers burnisher nom +burnishes burnish nom +burnishing burnish ver +burnoose burnoose nom +burnooses burnoose nom +burnous burnous nom +burnouse burnouse nom +burnouses burnous nom +burnout burnout nom +burnouts burnout nom +burns burn nom +burnside burnside nom +burnsides burnside nom +burp burp nom +burped burp ver +burping burp ver +burps burp nom +burr burr nom +burred bur ver +burrfish burrfish nom +burrier burry adj +burriest burry adj +burring bur ver +burrito burrito nom +burritos burrito nom +burro burro nom +burros burro nom +burrow burrow nom +burrowed burrow ver +burrower burrower nom +burrowers burrower nom +burrowing burrow ver +burrows burrow nom +burrs burr nom +burry burry adj +burs bur nom +bursa bursa nom +bursae bursa nom +bursar bursar nom +bursaries bursary nom +bursars bursar nom +bursary bursary nom +bursitis bursitis nom +bursitises bursitis nom +burst burst ver +burster burster nom +bursters burster nom +bursting burst ver +bursts burst nom +burthen burthen nom +burthened burthen ver +burthening burthen ver +burthens burthen nom +bury bury ver +burying bury ver +bus bus nom +busbar busbar nom +busbars busbar nom +busbies busby nom +busboy busboy nom +busboys busboy nom +busby busby nom +bused bus ver +buses bus nom +busgirl busgirl nom +busgirls busgirl nom +bush bush nom +bushbabies bushbaby nom +bushbaby bushbaby nom +bushbuck bushbuck nom +bushbucks bushbuck nom +bushed bush ver +bushel bushel nom +busheled bushel ver +busheling bushel ver +bushels bushel nom +bushes bush nom +bushier bushy adj +bushiest bushy adj +bushiness bushiness nom +bushinesses bushiness nom +bushing bush ver +bushings bushing nom +bushman bushman nom +bushmaster bushmaster nom +bushmasters bushmaster nom +bushmen bushman nom +bushtit bushtit nom +bushtits bushtit nom +bushwhack bushwhack ver +bushwhacked bushwhack ver +bushwhacker bushwhacker nom +bushwhackers bushwhacker nom +bushwhacking bushwhack ver +bushwhacks bushwhack ver +bushy bushy adj +busied busy ver +busier busy adj +busies busy ver +busiest busy adj +business business nom +businesses business nom +businessman businessman nom +businessmen businessman nom +businesspeople businessperson nom +businessperson businessperson nom +businesswoman businesswoman nom +businesswomen businesswoman nom +busing bus ver +busings busing nom +busker busker nom +buskers busker nom +buskin buskin nom +buskins buskin nom +busman busman nom +busmen busman nom +buss buss nom +bussed buss ver +busses buss nom +bussing buss ver +bussings bussing nom +bust bust nom +bustard bustard nom +bustards bustard nom +busted bust ver +buster buster nom +busters buster nom +bustier busty adj +bustiest busty adj +busting bust ver +bustle bustle nom +bustled bustle ver +bustles bustle nom +bustling bustle ver +busts bust nom +busty busty adj +busy busy adj +busybodies busybody nom +busybody busybody nom +busying busy ver +busyness busyness nom +busynesses busyness nom +busywork busywork nom +busyworks busywork nom +but but sw +butadiene butadiene nom +butadienes butadiene nom +butane butane nom +butanes butane nom +butanol butanol nom +butanols butanol nom +butch butch adj +butcher butch adj +butcherbird butcherbird nom +butcherbirds butcherbird nom +butchered butcher ver +butcheries butchery nom +butchering butcher ver +butcherings butchering nom +butchers butcher nom +butchery butchery nom +butches butch nom +butchest butch adj +butene butene nom +butenes butene nom +butler butler nom +butlers butler nom +buts but nom +butt butt nom +butte butte nom +butted butt ver +butter butter nom +butterball butterball nom +butterballs butterball nom +butterbur butterbur nom +butterburs butterbur nom +buttercup buttercup nom +buttercups buttercup nom +buttered butter ver +butterfat butterfat nom +butterfats butterfat nom +butterfish butterfish nom +butterflied butterfly ver +butterflies butterfly nom +butterfly butterfly nom +butterflyfish butterflyfish nom +butterflying butterfly ver +butterier buttery adj +butteries buttery nom +butteriest buttery adj +buttering butter ver +buttermilk buttermilk nom +buttermilks buttermilk nom +butternut butternut nom +butternuts butternut nom +butters butter nom +butterscotch butterscotch nom +butterscotches butterscotch nom +butterweed butterweed nom +butterweeds butterweed nom +butterwort butterwort nom +butterworts butterwort nom +buttery buttery adj +buttes butte nom +butting butt ver +buttinskies buttinsky nom +buttinsky buttinsky nom +buttock buttock nom +buttocks buttock nom +button button nom +buttoned button ver +buttonhole buttonhole nom +buttonholed buttonhole ver +buttonholes buttonhole nom +buttonholing buttonhole ver +buttonhook buttonhook nom +buttonhooks buttonhook nom +buttoning button ver +buttonquail buttonquail nom +buttons button nom +buttonwood buttonwood nom +buttonwoods buttonwood nom +buttress buttress nom +buttressed buttress ver +buttresses buttress nom +buttressing buttress ver +butts butt nom +butut butut nom +bututs butut nom +butylate butylate ver +butylated butylate ver +butylates butylate ver +butylating butylate ver +butylene butylene nom +butylenes butylene nom +butyrin butyrin nom +butyrins butyrin nom +buxom buxom adj +buxomer buxom adj +buxomest buxom adj +buxomness buxomness nom +buxomnesses buxomness nom +buy buy nom +buyback buyback nom +buybacks buyback nom +buyer buyer nom +buyers buyer nom +buying buy ver +buyout buyout nom +buyouts buyout nom +buys buy nom +buzz buzz nom +buzzard buzzard nom +buzzards buzzard nom +buzzed buzz ver +buzzer buzzer nom +buzzers buzzer nom +buzzes buzz nom +buzzing buzz ver +buzzword buzzword nom +buzzwords buzzword nom +by by sw +bye bye nom +byelaw byelaw nom +byelaws byelaw nom +byes byes nom +bygone bygone nom +bygones bygone nom +bylaw bylaw nom +bylaws bylaw nom +byline byline nom +bylined byline ver +bylines byline nom +bylining byline ver +bypass bypass nom +bypassed bypass ver +bypasses bypass nom +bypassing bypass ver +bypath bypath nom +bypaths bypath nom +byplay byplay nom +byplays byplay nom +byproduct byproduct nom +byproducts byproduct nom +byrnie byrnie nom +byrnies byrnie nom +byroad byroad nom +byroads byroad nom +byssus byssus nom +byssuses byssus nom +bystander bystander nom +bystanders bystander nom +byte byte nom +bytes byte nom +byway byway nom +byways byway nom +byword byword nom +bywords byword nom +byzant byzant nom +byzants byzant nom +c c sw +c_mon c_mon sw +c_s c_s sw +cab cab nom +cabal cabal nom +cabala cabala nom +cabalas cabala nom +caballed cabal ver +caballero caballero nom +caballeros caballero nom +caballing cabal ver +cabals cabal nom +cabana cabana nom +cabanas cabana nom +cabaret cabaret nom +cabarets cabaret nom +cabbage cabbage nom +cabbaged cabbage ver +cabbages cabbage nom +cabbageworm cabbageworm nom +cabbageworms cabbageworm nom +cabbaging cabbage ver +cabbala cabbala nom +cabbalah cabbalah nom +cabbalahs cabbalah nom +cabbalas cabbala nom +cabbed cab ver +cabbie cabbie nom +cabbies cabbie nom +cabbing cab ver +cabby cabby nom +cabdriver cabdriver nom +cabdrivers cabdriver nom +caber caber nom +cabers caber nom +cabin cabin nom +cabined cabin ver +cabinet cabinet nom +cabinetmaker cabinetmaker nom +cabinetmakers cabinetmaker nom +cabinetmaking cabinetmaking nom +cabinetmakings cabinetmaking nom +cabinetries cabinetry nom +cabinetry cabinetry nom +cabinets cabinet nom +cabinetwork cabinetwork nom +cabinetworks cabinetwork nom +cabining cabin ver +cabins cabin nom +cable cable nom +cablecast cablecast ver +cablecasting cablecast ver +cablecasts cablecast nom +cabled cable ver +cablegram cablegram nom +cablegrams cablegram nom +cables cable nom +cabling cable ver +cabman cabman nom +cabmen cabman nom +cabochon cabochon nom +cabochons cabochon nom +caboodle caboodle nom +caboodles caboodle nom +caboose caboose nom +cabooses caboose nom +cabotage cabotage nom +cabotages cabotage nom +cabriolet cabriolet nom +cabriolets cabriolet nom +cabs cab nom +cabstand cabstand nom +cabstands cabstand nom +cacao cacao nom +cacaos cacao nom +cachalot cachalot nom +cachalots cachalot nom +cache cache nom +cached cache ver +cachepot cachepot nom +cachepots cachepot nom +caches cache nom +cachet cachet nom +cachets cachet nom +cachexia cachexia nom +cachexias cachexia nom +cachexies cachexy nom +cachexy cachexy nom +caching cache ver +cachinnate cachinnate ver +cachinnated cachinnate ver +cachinnates cachinnate ver +cachinnating cachinnate ver +cachou cachou nom +cachous cachou nom +cacique cacique nom +caciques cacique nom +cackle cackle nom +cackled cackle ver +cackler cackler nom +cacklers cackler nom +cackles cackle nom +cackling cackle ver +cacodaemon cacodaemon nom +cacodaemons cacodaemon nom +cacodemon cacodemon nom +cacodemons cacodemon nom +cacodyl cacodyl nom +cacodyls cacodyl nom +cacographies cacography nom +cacography cacography nom +cacomistle cacomistle nom +cacomistles cacomistle nom +cacomixle cacomixle nom +cacomixles cacomixle nom +cacophonies cacophony nom +cacophony cacophony nom +cacti cactus nom +cactus cactus nom +cad cad nom +cadaster cadaster nom +cadasters cadaster nom +cadastre cadastre nom +cadastres cadastre nom +cadaver cadaver nom +cadaverine cadaverine nom +cadaverines cadaverine nom +cadavers cadaver nom +caddie caddie nom +caddied caddie ver +caddies caddie nom +caddisflies caddisfly nom +caddisfly caddisfly nom +caddishness caddishness nom +caddishnesses caddishness nom +caddisworm caddisworm nom +caddisworms caddisworm nom +caddy caddy nom +caddying caddie ver +cadence cadence nom +cadenced cadence ver +cadences cadence nom +cadencies cadency nom +cadencing cadence ver +cadency cadency nom +cadenza cadenza nom +cadenzas cadenza nom +cadet cadet nom +cadets cadet nom +cadetship cadetship nom +cadetships cadetship nom +cadge cadge nom +cadged cadge ver +cadger cadger nom +cadgers cadger nom +cadges cadge nom +cadging cadge ver +cadmium cadmium nom +cadmiums cadmium nom +cadre cadre nom +cadres cadre nom +cads cad nom +caducei caduceus nom +caduceus caduceus nom +caeca caecum nom +caecilian caecilian nom +caecilians caecilian nom +caecum caecum nom +caesarean caesarean nom +caesareans caesarean nom +caesarian caesarian nom +caesarians caesarian nom +caesium caesium nom +caesiums caesium nom +caesura caesura nom +caesuras caesura nom +cafe cafe nom +cafes cafe nom +cafeteria cafeteria nom +cafeterias cafeteria nom +caff caff nom +caffein caffein nom +caffeine caffeine nom +caffeines caffeine nom +caffeinism caffeinism nom +caffeinisms caffeinism nom +caffeins caffein nom +caffs caff nom +caftan caftan nom +caftans caftan nom +cage cage nom +caged cage ver +cager cager nom +cagers cager nom +cages cage nom +cagey cagey adj +cagier cagey adj +cagiest cagey adj +caginess caginess nom +caginesses caginess nom +caging cage ver +cagoule cagoule nom +cagoules cagoule nom +cagy cagy adj +cahoot cahoot nom +cahoots cahoot nom +caiman caiman nom +caimans caiman nom +cairn cairn nom +cairngorm cairngorm nom +cairngorms cairngorm nom +cairns cairn nom +caisson caisson nom +caissons caisson nom +caitiff caitiff nom +caitiffs caitiff nom +cajole cajole ver +cajoled cajole ver +cajolement cajolement nom +cajolements cajolement nom +cajoler cajoler nom +cajoleries cajolery nom +cajolers cajoler nom +cajolery cajolery nom +cajoles cajole ver +cajoling cajole ver +cake cake nom +caked cake ver +cakes cake nom +cakewalk cakewalk nom +cakewalked cakewalk ver +cakewalking cakewalk ver +cakewalks cakewalk nom +caking cake ver +calabash calabash nom +calabashes calabash nom +calaboose calaboose nom +calabooses calaboose nom +caladium caladium nom +caladiums caladium nom +calamari calamari nom +calamaries calamary nom +calamaris calamari nom +calamary calamary nom +calamine calamine nom +calamines calamine nom +calamint calamint nom +calamints calamint nom +calamities calamity nom +calamity calamity nom +calamus calamus nom +calamuses calamus nom +calanthe calanthe nom +calanthes calanthe nom +calash calash nom +calashes calash nom +calcanei calcaneus nom +calcaneus calcaneus nom +calceolaria calceolaria nom +calceolarias calceolaria nom +calciferol calciferol nom +calciferols calciferol nom +calcification calcification nom +calcifications calcification nom +calcified calcify ver +calcifies calcify ver +calcify calcify ver +calcifying calcify ver +calcimine calcimine nom +calcimined calcimine ver +calcimines calcimine nom +calcimining calcimine ver +calcination calcination nom +calcinations calcination nom +calcine calcine ver +calcined calcine ver +calcines calcine ver +calcining calcine ver +calcite calcite nom +calcites calcite nom +calcium calcium nom +calciums calcium nom +calculate calculate ver +calculated calculate ver +calculates calculate ver +calculating calculate ver +calculation calculation nom +calculations calculation nom +calculator calculator nom +calculators calculator nom +calculi calculus nom +calculus calculus nom +caldera caldera nom +calderas caldera nom +caldron caldron nom +caldrons caldron nom +caleche caleche nom +caleches caleche nom +calefaction calefaction nom +calefactions calefaction nom +calendar calendar nom +calendared calendar ver +calendaring calendar ver +calendars calendar nom +calender calender nom +calendered calender ver +calendering calender ver +calenders calender nom +calendula calendula nom +calendulas calendula nom +calf calf nom +calfskin calfskin nom +calfskins calfskin nom +caliber caliber nom +calibers caliber nom +calibrate calibrate ver +calibrated calibrate ver +calibrates calibrate ver +calibrating calibrate ver +calibration calibration nom +calibrations calibration nom +calibrator calibrator nom +calibrators calibrator nom +calibre calibre nom +calibres calibre nom +caliche caliche nom +caliches caliche nom +calico calico nom +calicoes calico nom +calif calif nom +californium californium nom +californiums californium nom +califs calif nom +caliper caliper nom +calipered caliper ver +calipering caliper ver +calipers caliper nom +caliph caliph nom +caliphate caliphate nom +caliphates caliphate nom +caliphs caliph nom +calisaya calisaya nom +calisayas calisaya nom +calk calk nom +calked calk ver +calkin calkin nom +calking calk ver +calkins calkin nom +calks calk nom +call call nom +calla calla nom +callas calla nom +callback callback nom +callbacks callback nom +called call ver +caller caller nom +callers caller nom +calligrapher calligrapher nom +calligraphers calligrapher nom +calligraphies calligraphy nom +calligraphist calligraphist nom +calligraphists calligraphist nom +calligraphy calligraphy nom +calling call ver +callings calling nom +calliope calliope nom +calliopes calliope nom +calliopsis calliopsis nom +calliopsises calliopsis nom +calliper calliper nom +callipered calliper ver +callipering calliper ver +callipers calliper nom +callithump callithump nom +callithumps callithump nom +callosities callosity nom +callosity callosity nom +callous callous ver +calloused callous ver +callouses callous ver +callousing callous ver +callousness callousness nom +callousnesses callousness nom +callow callow adj +callower callow adj +callowest callow adj +callowness callowness nom +callownesses callowness nom +callows callow nom +calls call nom +callus callus nom +callused callus ver +calluses callus nom +callusing callus ver +calm calm adj +calmed calm ver +calmer calm adj +calmest calm adj +calming calm ver +calmness calmness nom +calmnesses calmness nom +calms calm nom +calomel calomel nom +calomels calomel nom +caloric caloric nom +calorics caloric nom +calorie calorie nom +calories calorie nom +calorimeter calorimeter nom +calorimeters calorimeter nom +calorimetries calorimetry nom +calorimetry calorimetry nom +calory calory nom +calque calque nom +calques calque nom +caltrop caltrop nom +caltrops caltrop nom +calumet calumet nom +calumets calumet nom +calumniate calumniate ver +calumniated calumniate ver +calumniates calumniate ver +calumniating calumniate ver +calumniation calumniation nom +calumniations calumniation nom +calumniator calumniator nom +calumniators calumniator nom +calumnies calumny nom +calumny calumny nom +calvaria calvaria nom +calvarias calvaria nom +calvaries calvary nom +calvary calvary nom +calve calve ver +calved calve ver +calves calf nom +calving calve ver +calx calx nom +calxes calx nom +calycle calycle nom +calycles calycle nom +calyculi calyculus nom +calyculus calyculus nom +calypso calypso nom +calypsos calypso nom +calypter calypter nom +calypters calypter nom +calyptra calyptra nom +calyptras calyptra nom +calyx calyx nom +calyxes calyx nom +cam cam nom +camail camail nom +camails camail nom +camaraderie camaraderie nom +camaraderies camaraderie nom +camarilla camarilla nom +camarillas camarilla nom +camas camas nom +camases camas nom +camass camass nom +camasses camass nom +camber camber nom +cambered camber ver +cambering camber ver +cambers camber nom +cambium cambium nom +cambiums cambium nom +cambric cambric nom +cambrics cambric nom +camcorder camcorder nom +camcorders camcorder nom +came came sw +camel camel nom +camelhair camelhair nom +camelhairs camelhair nom +camelia camelia nom +camelias camelia nom +camellia camellia nom +camellias camellia nom +camelopard camelopard nom +camelopards camelopard nom +camels camel nom +cameo cameo nom +cameos cameo nom +camera camera nom +camerae camera nom +cameraman cameraman nom +cameramen cameraman nom +cameras camera nom +camerawoman camerawoman nom +camerawomen camerawoman nom +cames came nom +camion camion nom +camions camion nom +camisole camisole nom +camisoles camisole nom +cammed cam ver +camming cam ver +camomile camomile nom +camomiles camomile nom +camouflage camouflage nom +camouflaged camouflage ver +camouflager camouflager nom +camouflagers camouflager nom +camouflages camouflage nom +camouflaging camouflage ver +camp camp adj +campaign campaign nom +campaigned campaign ver +campaigner campaigner nom +campaigners campaigner nom +campaigning campaign ver +campaigns campaign nom +campana campana nom +campanas campana nom +campanile campanile nom +campaniles campanile nom +campanologies campanology nom +campanologist campanologist nom +campanologists campanologist nom +campanology campanology nom +campanula campanula nom +campanulas campanula nom +camped camp ver +camper camp adj +campers camper nom +campest camp adj +campfire campfire nom +campfires campfire nom +campground campground nom +campgrounds campground nom +camphor camphor nom +camphorate camphorate ver +camphorated camphorate ver +camphorates camphorate ver +camphorating camphorate ver +camphors camphor nom +camphorweed camphorweed nom +camphorweeds camphorweed nom +campier campy adj +campiest campy adj +camping camp ver +campings camping nom +campion campion nom +campions campion nom +campong campong nom +campongs campong nom +camps camp nom +campsite campsite nom +campsites campsite nom +campstool campstool nom +campstools campstool nom +campus campus nom +campuses campus nom +campy campy adj +cams cam nom +camshaft camshaft nom +camshafts camshaft nom +camwood camwood nom +camwoods camwood nom +can can sw +can_t can_t sw +canal canal nom +canaliculi canaliculus nom +canaliculus canaliculus nom +canalisation canalisation nom +canalisations canalisation nom +canalization canalization nom +canalizations canalization nom +canalize canalize ver +canalized canalize ver +canalizes canalize ver +canalizing canalize ver +canalled canal ver +canalling canal ver +canals canal nom +canape canape nom +canapes canape nom +canard canard nom +canards canard nom +canaries canary nom +canary canary nom +canasta canasta nom +canastas canasta nom +cancan cancan nom +cancans cancan nom +cancel cancel nom +canceled cancel ver +canceler canceler nom +cancelers canceler nom +canceling cancel ver +cancellation cancellation nom +cancellations cancellation nom +canceller canceller nom +cancellers canceller nom +cancels cancel nom +cancer cancer nom +cancers cancer nom +cancroid cancroid nom +cancroids cancroid nom +candela candela nom +candelabra candelabrum nom +candelabras candelabra nom +candelabrum candelabrum nom +candelas candela nom +candelilla candelilla nom +candelillas candelilla nom +candid candid adj +candida candida nom +candidacies candidacy nom +candidacy candidacy nom +candidas candida nom +candidate candidate nom +candidated candidate ver +candidates candidate nom +candidating candidate ver +candidature candidature nom +candidatures candidature nom +candider candid adj +candidest candid adj +candidiases candidiasis nom +candidiasis candidiasis nom +candidness candidness nom +candidnesses candidness nom +candids candid nom +candied candy ver +candies candy nom +candle candle nom +candleberries candleberry nom +candleberry candleberry nom +candled candle ver +candlelight candlelight nom +candlelights candlelight nom +candlenut candlenut nom +candlenuts candlenut nom +candlepower candlepower nom +candlepowers candlepower nom +candler candler nom +candlers candler nom +candles candle nom +candlestick candlestick nom +candlesticks candlestick nom +candlewick candlewick nom +candlewicks candlewick nom +candlewood candlewood nom +candlewoods candlewood nom +candling candle ver +candor candor nom +candors candor nom +candour candour nom +candours candour nom +candy candy nom +candyfloss candyfloss nom +candyflosses candyfloss nom +candying candy ver +candytuft candytuft nom +candytufts candytuft nom +cane cane nom +canebrake canebrake nom +canebrakes canebrake nom +caned cane ver +canella canella nom +canellas canella nom +caner caner nom +caners caner nom +canes cane nom +canful canful nom +canfuls canful nom +canid canid nom +canids canid nom +canine canine nom +canines canine nom +caning cane ver +canings caning nom +canistel canistel nom +canistels canistel nom +canister canister nom +canisters canister nom +canker canker nom +cankered canker ver +cankering canker ver +cankers canker nom +cankerworm cankerworm nom +cankerworms cankerworm nom +canna canna nom +cannabin cannabin nom +cannabins cannabin nom +cannabis cannabis nom +cannabises cannabis nom +cannas canna nom +canned canned ver +canneries cannery nom +cannery cannery nom +cannibal cannibal nom +cannibalise cannibalise ver +cannibalised cannibalise ver +cannibalises cannibalise ver +cannibalising cannibalise ver +cannibalism cannibalism nom +cannibalisms cannibalism nom +cannibalization cannibalization nom +cannibalizations cannibalization nom +cannibalize cannibalize ver +cannibalized cannibalize ver +cannibalizes cannibalize ver +cannibalizing cannibalize ver +cannibals cannibal nom +cannier canny adj +canniest canny adj +cannikin cannikin nom +cannikins cannikin nom +canniness canniness nom +canninesses canniness nom +canning canning ver +cannister cannister nom +cannisters cannister nom +cannon cannon nom +cannonade cannonade nom +cannonaded cannonade ver +cannonades cannonade nom +cannonading cannonade ver +cannonball cannonball nom +cannonballs cannonball nom +cannoned cannon ver +cannoneer cannoneer nom +cannoneers cannoneer nom +cannoning cannon ver +cannons cannon nom +cannot cannot sw +cannula cannula nom +cannulas cannula nom +cannulation cannulation nom +cannulations cannulation nom +canny canny adj +canoe canoe nom +canoed canoe ver +canoeist canoeist nom +canoeists canoeist nom +canoes canoe nom +canoing canoe ver +canon canon nom +canonisation canonisation nom +canonisations canonisation nom +canonist canonist nom +canonists canonist nom +canonization canonization nom +canonizations canonization nom +canonize canonize ver +canonized canonize ver +canonizes canonize ver +canonizing canonize ver +canons canon nom +canoodle canoodle ver +canoodled canoodle ver +canoodles canoodle ver +canoodling canoodle ver +canopied canopy ver +canopies canopy nom +canopy canopy nom +canopying canopy ver +cans cans nom +cant cant sw +cantala cantala nom +cantalas cantala nom +cantaloup cantaloup nom +cantaloupe cantaloupe nom +cantaloupes cantaloupe nom +cantaloups cantaloup nom +cantankerousness cantankerousness nom +cantankerousnesses cantankerousness nom +cantata cantata nom +cantatas cantata nom +canted cant ver +canteen canteen nom +canteens canteen nom +canter cant adj +cantered canter ver +cantering canter ver +canters canter nom +cantest cant adj +canthi canthus nom +canthus canthus nom +canticle canticle nom +canticles canticle nom +cantier canty adj +cantiest canty adj +cantilever cantilever nom +cantilevered cantilever ver +cantilevering cantilever ver +cantilevers cantilever nom +cantillate cantillate ver +cantillated cantillate ver +cantillates cantillate ver +cantillating cantillate ver +canting cant ver +cantle cantle nom +cantles cantle nom +canto canto nom +canton canton nom +cantoned canton ver +cantoning canton ver +cantonment cantonment nom +cantonments cantonment nom +cantons canton nom +cantor cantor nom +cantors cantor nom +cantos canto nom +cants cant nom +canty canty adj +canvas canvas nom +canvasback canvasback nom +canvasbacks canvasback nom +canvased canvas ver +canvases canvas nom +canvasing canvas ver +canvass canvass nom +canvassed canvass ver +canvasser canvasser nom +canvassers canvasser nom +canvasses canvass nom +canvassing canvass ver +canyon canyon nom +canyons canyon nom +caoutchouc caoutchouc nom +caoutchoucs caoutchouc nom +cap cap nom +capabilities capability nom +capability capability nom +capable capable adj +capableness capableness nom +capablenesses capableness nom +capabler capable adj +capablest capable adj +capaciousness capaciousness nom +capaciousnesses capaciousness nom +capacitance capacitance nom +capacitances capacitance nom +capacitate capacitate ver +capacitated capacitate ver +capacitates capacitate ver +capacitating capacitate ver +capacities capacity nom +capacitor capacitor nom +capacitors capacitor nom +capacity capacity nom +caparison caparison nom +caparisoned caparison ver +caparisoning caparison ver +caparisons caparison nom +cape cape nom +caped cape ver +capelan capelan nom +capelans capelan nom +capelin capelin nom +capelins capelin nom +caper caper nom +capercaillie capercaillie nom +capercaillies capercaillie nom +capercailzie capercailzie nom +capercailzies capercailzie nom +capered caper ver +capering caper ver +capers caper nom +capes cape nom +capeskin capeskin nom +capeskins capeskin nom +capful capful nom +capfuls capful nom +capillaries capillary nom +capillarities capillarity nom +capillarity capillarity nom +capillary capillary nom +caping cape ver +capital capital nom +capitalisation capitalisation nom +capitalisations capitalisation nom +capitalism capitalism nom +capitalisms capitalism nom +capitalist capitalist nom +capitalists capitalist nom +capitalization capitalization nom +capitalizations capitalization nom +capitalize capitalize ver +capitalized capitalize ver +capitalizes capitalize ver +capitalizing capitalize ver +capitals capital nom +capitation capitation nom +capitations capitation nom +capitol capitol nom +capitols capitol nom +capitula capitulum nom +capitulate capitulate ver +capitulated capitulate ver +capitulates capitulate ver +capitulating capitulate ver +capitulation capitulation nom +capitulations capitulation nom +capitulum capitulum nom +capiz capiz nom +capizes capiz nom +caplet caplet nom +caplets caplet nom +caplin caplin nom +caplins caplin nom +capo capo nom +capon capon nom +caponize caponize ver +caponized caponize ver +caponizes caponize ver +caponizing caponize ver +capons capon nom +capos capo nom +capote capote nom +capotes capote nom +capped cap ver +capping cap ver +cappuccino cappuccino nom +cappuccinos cappuccino nom +caprice caprice nom +caprices caprice nom +capriciousness capriciousness nom +capriciousnesses capriciousness nom +caprifig caprifig nom +caprifigs caprifig nom +capriole capriole ver +caprioled capriole ver +caprioles capriole ver +caprioling capriole ver +caps cap nom +capsaicin capsaicin nom +capsaicins capsaicin nom +capsicum capsicum nom +capsicums capsicum nom +capsid capsid nom +capsids capsid nom +capsize capsize ver +capsized capsize ver +capsizes capsize ver +capsizing capsize ver +capstan capstan nom +capstans capstan nom +capstone capstone nom +capstones capstone nom +capsule capsule nom +capsuled capsule ver +capsules capsule nom +capsuling capsule ver +capsulize capsulize ver +capsulized capsulize ver +capsulizes capsulize ver +capsulizing capsulize ver +captain captain nom +captaincies captaincy nom +captaincy captaincy nom +captained captain ver +captaining captain ver +captains captain nom +captainship captainship nom +captainships captainship nom +caption caption nom +captioned caption ver +captioning caption ver +captions caption nom +captiousness captiousness nom +captiousnesses captiousness nom +captivate captivate ver +captivated captivate ver +captivates captivate ver +captivating captivate ver +captivation captivation nom +captivations captivation nom +captivator captivator nom +captivators captivator nom +captive captive nom +captives captive nom +captivities captivity nom +captivity captivity nom +captopril captopril nom +captoprils captopril nom +captor captor nom +captors captor nom +capture capture nom +captured capture ver +captures capture nom +capturing capture ver +capuchin capuchin nom +capuchins capuchin nom +capybara capybara nom +capybaras capybara nom +car car nom +carabao carabao nom +carabaos carabao nom +carabineer carabineer nom +carabineers carabineer nom +carabiner carabiner nom +carabiners carabiner nom +carabinier carabinier nom +carabiniers carabinier nom +caracal caracal nom +caracals caracal nom +caracara caracara nom +caracaras caracara nom +carack carack nom +caracks carack nom +caracole caracole ver +caracoled caracole ver +caracoles caracole ver +caracoling caracole ver +caracul caracul nom +caraculs caracul nom +carafe carafe nom +carafes carafe nom +caragana caragana nom +caraganas caragana nom +carageen carageen nom +carageens carageen nom +carambola carambola nom +carambolas carambola nom +caramel caramel nom +caramelise caramelise ver +caramelised caramelise ver +caramelises caramelise ver +caramelising caramelise ver +caramelize caramelize ver +caramelized caramelize ver +caramelizes caramelize ver +caramelizing caramelize ver +caramels caramel nom +carangid carangid nom +carangids carangid nom +carapace carapace nom +carapaces carapace nom +carat carat nom +carats carat nom +caravan caravan nom +caravaned caravan ver +caravaning caravan ver +caravans caravan nom +caravansaries caravansary nom +caravansary caravansary nom +caravanserai caravanserai nom +caravanserais caravanserai nom +caravel caravel nom +caravels caravel nom +caraway caraway nom +caraways caraway nom +carbamate carbamate nom +carbamates carbamate nom +carbamide carbamide nom +carbamides carbamide nom +carbide carbide nom +carbides carbide nom +carbine carbine nom +carbines carbine nom +carbohydrate carbohydrate nom +carbohydrates carbohydrate nom +carbon carbon nom +carbonado carbonado nom +carbonadoes carbonado nom +carbonados carbonado nom +carbonara carbonara nom +carbonaras carbonara nom +carbonate carbonate nom +carbonated carbonate ver +carbonates carbonate nom +carbonating carbonate ver +carbonation carbonation nom +carbonations carbonation nom +carbonisation carbonisation nom +carbonisations carbonisation nom +carbonization carbonization nom +carbonizations carbonization nom +carbonize carbonize ver +carbonized carbonize ver +carbonizes carbonize ver +carbonizing carbonize ver +carbons carbon nom +carbonyl carbonyl nom +carbonyls carbonyl nom +carborundum carborundum nom +carborundums carborundum nom +carboxyl carboxyl nom +carboxylate carboxylate ver +carboxylated carboxylate ver +carboxylates carboxylate ver +carboxylating carboxylate ver +carboxyls carboxyl nom +carboy carboy nom +carboys carboy nom +carbuncle carbuncle nom +carbuncles carbuncle nom +carburet carburet ver +carburetor carburetor nom +carburetors carburetor nom +carburets carburet ver +carburetted carburet ver +carburetter carburetter nom +carburetters carburetter nom +carburetting carburet ver +carburettor carburettor nom +carburettors carburettor nom +carburize carburize ver +carburized carburize ver +carburizes carburize ver +carburizing carburize ver +carcajou carcajou nom +carcajous carcajou nom +carcase carcase nom +carcases carcase nom +carcass carcass nom +carcassed carcass ver +carcasses carcass nom +carcassing carcass ver +carcinogen carcinogen nom +carcinogenic carcinogenic nom +carcinogenicities carcinogenicity nom +carcinogenicity carcinogenicity nom +carcinogenics carcinogenic nom +carcinogens carcinogen nom +carcinoid carcinoid nom +carcinoids carcinoid nom +carcinoma carcinoma nom +carcinomas carcinoma nom +card card nom +cardamom cardamom nom +cardamoms cardamom nom +cardamon cardamon nom +cardamons cardamon nom +cardamum cardamum nom +cardamums cardamum nom +cardboard cardboard nom +cardboards cardboard nom +cardcase cardcase nom +cardcases cardcase nom +carded card ver +carder carder nom +carders carder nom +cardia cardia nom +cardiac cardiac nom +cardiacs cardiac nom +cardias cardia nom +cardigan cardigan nom +cardigans cardigan nom +cardinal cardinal nom +cardinalate cardinalate nom +cardinalates cardinalate nom +cardinalfish cardinalfish nom +cardinals cardinal nom +cardinalship cardinalship nom +cardinalships cardinalship nom +carding card ver +cardiogram cardiogram nom +cardiograms cardiogram nom +cardiograph cardiograph nom +cardiographies cardiography nom +cardiographs cardiograph nom +cardiography cardiography nom +cardioid cardioid nom +cardioids cardioid nom +cardiologies cardiology nom +cardiologist cardiologist nom +cardiologists cardiologist nom +cardiology cardiology nom +cardiomyopathies cardiomyopathy nom +cardiomyopathy cardiomyopathy nom +cardiopathies cardiopathy nom +cardiopathy cardiopathy nom +carditis carditis nom +carditises carditis nom +cardoon cardoon nom +cardoons cardoon nom +cards card nom +cardsharp cardsharp nom +cardsharper cardsharper nom +cardsharpers cardsharper nom +cardsharps cardsharp nom +care care nom +cared care ver +careen careen nom +careened careen ver +careening careen ver +careens careen nom +career career nom +careered career ver +careering career ver +careerism careerism nom +careerisms careerism nom +careerist careerist nom +careerists careerist nom +careers career nom +careful careful adj +carefuller careful adj +carefullest careful adj +carefulness carefulness nom +carefulnesses carefulness nom +caregiver caregiver nom +caregivers caregiver nom +carelessness carelessness nom +carelessnesses carelessness nom +carer carer nom +carers carer nom +cares care nom +caress caress nom +caressed caress ver +caresses caress nom +caressing caress ver +caressings caressing nom +caret caret nom +caretaker caretaker nom +caretakers caretaker nom +carets caret nom +carfare carfare nom +carfares carfare nom +carful carful nom +carfuls carful nom +cargo cargo nom +cargoes cargo nom +carhop carhop nom +carhopped carhop ver +carhopping carhop ver +carhops carhop nom +caribe caribe nom +caribes caribe nom +caribou caribou nom +caricature caricature nom +caricatured caricature ver +caricatures caricature nom +caricaturing caricature ver +caricaturist caricaturist nom +caricaturists caricaturist nom +carillon carillon nom +carillons carillon nom +carina carina nom +carinas carina nom +caring care ver +carings caring nom +carjack carjack ver +carjacked carjack ver +carjacker carjacker nom +carjackers carjacker nom +carjacking carjack ver +carjackings carjacking nom +carjacks carjack ver +cark cark ver +carked cark ver +carking cark ver +carks cark ver +carload carload nom +carloads carload nom +carminative carminative nom +carminatives carminative nom +carmine carmine nom +carmines carmine nom +carnage carnage nom +carnages carnage nom +carnalities carnality nom +carnality carnality nom +carnalize carnalize ver +carnalized carnalize ver +carnalizes carnalize ver +carnalizing carnalize ver +carnallite carnallite nom +carnallites carnallite nom +carnation carnation nom +carnations carnation nom +carnauba carnauba nom +carnaubas carnauba nom +carnelian carnelian nom +carnelians carnelian nom +carney carney nom +carneys carney nom +carnied carny ver +carnier carny adj +carnies carny nom +carniest carny adj +carnified carnify ver +carnifies carnify ver +carnify carnify ver +carnifying carnify ver +carnival carnival nom +carnivals carnival nom +carnivore carnivore nom +carnivores carnivore nom +carnivorousness carnivorousness nom +carnivorousnesses carnivorousness nom +carnotite carnotite nom +carnotites carnotite nom +carny carny adj +carnying carny ver +carob carob nom +carobs carob nom +carol carol nom +caroled carol ver +caroler caroler nom +carolers caroler nom +caroling carol ver +caroller caroller nom +carollers caroller nom +carols carol nom +carom carom nom +caromed carom ver +caroming carom ver +caroms carom nom +carotene carotene nom +carotenes carotene nom +carotenoid carotenoid nom +carotenoids carotenoid nom +carotid carotid nom +carotids carotid nom +carotin carotin nom +carotins carotin nom +carousal carousal nom +carousals carousal nom +carouse carouse nom +caroused carouse ver +carousel carousel nom +carousels carousel nom +carouser carouser nom +carousers carouser nom +carouses carouse nom +carousing carouse ver +carp carp nom +carpal carpal nom +carpals carpal nom +carped carp ver +carpel carpel nom +carpels carpel nom +carpenter carpenter nom +carpentered carpenter ver +carpentering carpenter ver +carpenters carpenter nom +carpentries carpentry nom +carpentry carpentry nom +carper carper nom +carpers carper nom +carpet carpet nom +carpetbag carpetbag nom +carpetbagged carpetbag ver +carpetbagger carpetbagger nom +carpetbaggers carpetbagger nom +carpetbagging carpetbag ver +carpetbags carpetbag nom +carpeted carpet ver +carpeting carpet ver +carpetings carpeting nom +carpets carpet nom +carpetweed carpetweed nom +carpetweeds carpetweed nom +carpi carpus nom +carping carp ver +carpings carping nom +carpool carpool nom +carpooled carpool ver +carpooling carpool ver +carpools carpool nom +carport carport nom +carports carport nom +carpospore carpospore nom +carpospores carpospore nom +carps carp ver +carpus carpus nom +carrack carrack nom +carracks carrack nom +carrageen carrageen nom +carrageenan carrageenan nom +carrageenans carrageenan nom +carrageenin carrageenin nom +carrageenins carrageenin nom +carrageens carrageen nom +carragheen carragheen nom +carragheens carragheen nom +carrefour carrefour nom +carrefours carrefour nom +carrel carrel nom +carrell carrell nom +carrells carrell nom +carrels carrel nom +carriage carriage nom +carriages carriage nom +carriageway carriageway nom +carriageways carriageway nom +carried carry ver +carrier carrier nom +carriers carrier nom +carries carry nom +carrion carrion nom +carrions carrion nom +carrot carrot nom +carrotier carroty adj +carrotiest carroty adj +carrots carrot nom +carrottop carrottop nom +carrottops carrottop nom +carroty carroty adj +carrousel carrousel nom +carrousels carrousel nom +carry carry nom +carryall carryall nom +carryalls carryall nom +carrycot carrycot nom +carrycots carrycot nom +carrying carry ver +carryover carryover nom +carryovers carryover nom +cars car nom +carsickness carsickness nom +carsicknesses carsickness nom +cart cart nom +cartage cartage nom +cartages cartage nom +carte carte nom +carted cart ver +cartel cartel nom +cartels cartel nom +carter carter nom +carters carter nom +cartes carte nom +carthorse carthorse nom +carthorses carthorse nom +cartilage cartilage nom +cartilages cartilage nom +carting cart ver +cartload cartload nom +cartloads cartload nom +cartographer cartographer nom +cartographers cartographer nom +cartographies cartography nom +cartography cartography nom +carton carton nom +cartoned carton ver +cartoning carton ver +cartons carton nom +cartoon cartoon nom +cartooned cartoon ver +cartooning cartoon ver +cartoonist cartoonist nom +cartoonists cartoonist nom +cartoons cartoon nom +cartouch cartouch nom +cartouche cartouche nom +cartouches cartouch nom +cartridge cartridge nom +cartridges cartridge nom +cartroad cartroad nom +cartroads cartroad nom +carts cart nom +cartwheel cartwheel nom +cartwheeled cartwheel ver +cartwheeling cartwheel ver +cartwheels cartwheel nom +cartwright cartwright nom +cartwrights cartwright nom +caruncle caruncle nom +caruncles caruncle nom +carve carve ver +carved carve ver +carver carver nom +carvers carver nom +carves carve ver +carving carve ver +carvings carving nom +caryatid caryatid nom +caryatids caryatid nom +caryopses caryopsis nom +caryopsis caryopsis nom +casaba casaba nom +casabas casaba nom +casava casava nom +casavas casava nom +cascabel cascabel nom +cascabels cascabel nom +cascade cascade nom +cascaded cascade ver +cascades cascade nom +cascading cascade ver +cascara cascara nom +cascaras cascara nom +cascarilla cascarilla nom +cascarillas cascarilla nom +case case nom +caseate caseate ver +caseated caseate ver +caseates caseate ver +caseating caseate ver +casebook casebook nom +casebooks casebook nom +cased case ver +caseharden caseharden ver +casehardened caseharden ver +casehardening caseharden ver +casehardens caseharden ver +casein casein nom +caseins casein nom +caseload caseload nom +caseloads caseload nom +casement casement nom +casements casement nom +casern casern nom +caserns casern nom +cases case nom +casework casework nom +caseworker caseworker nom +caseworkers caseworker nom +caseworks casework nom +caseworm caseworm nom +caseworms caseworm nom +cash cash nom +cashbook cashbook nom +cashbooks cashbook nom +cashbox cashbox nom +cashboxes cashbox nom +cashed cash ver +cashes cash nom +cashew cashew nom +cashews cashew nom +cashier cashier nom +cashiered cashier ver +cashiering cashier ver +cashiers cashier nom +cashing cash ver +cashmere cashmere nom +cashmeres cashmere nom +casing case ver +casings casing nom +casino casino nom +casinos casino nom +cask cask nom +casked cask ver +casket casket nom +casketed casket ver +casketing casket ver +caskets casket nom +casking cask ver +casks cask nom +casque casque nom +casques casque nom +cassareep cassareep nom +cassareeps cassareep nom +cassava cassava nom +cassavas cassava nom +casserole casserole nom +casseroled casserole ver +casseroles casserole nom +casseroling casserole ver +cassette cassette nom +cassettes cassette nom +cassia cassia nom +cassias cassia nom +cassino cassino nom +cassinos cassino nom +cassiterite cassiterite nom +cassiterites cassiterite nom +cassock cassock nom +cassocks cassock nom +cassowaries cassowary nom +cassowary cassowary nom +cast cast ver +castanet castanet nom +castanets castanet nom +castaway castaway nom +castaways castaway nom +caste caste nom +caster caster nom +casters caster nom +castes caste nom +castigate castigate ver +castigated castigate ver +castigates castigate ver +castigating castigate ver +castigation castigation nom +castigations castigation nom +castigator castigator nom +castigators castigator nom +casting cast ver +castings casting nom +castle castle nom +castled castle ver +castles castle nom +castling castle ver +castoff castoff nom +castoffs castoff nom +castor castor nom +castors castor nom +castrate castrate nom +castrated castrate ver +castrates castrate nom +castrating castrate ver +castration castration nom +castrations castration nom +castrato castrato nom +castratos castrato nom +casts cast nom +casual casual nom +casualness casualness nom +casualnesses casualness nom +casuals casual nom +casualties casualty nom +casualty casualty nom +casuarina casuarina nom +casuarinas casuarina nom +casuist casuist nom +casuistries casuistry nom +casuistry casuistry nom +casuists casuist nom +cat cat nom +catabolism catabolism nom +catabolisms catabolism nom +catabolize catabolize ver +catabolized catabolize ver +catabolizes catabolize ver +catabolizing catabolize ver +catachreses catachresis nom +catachresis catachresis nom +cataclysm cataclysm nom +cataclysms cataclysm nom +catacomb catacomb nom +catacombs catacomb nom +catafalque catafalque nom +catafalques catafalque nom +catalase catalase nom +catalases catalase nom +catalepsies catalepsy nom +catalepsy catalepsy nom +cataleptic cataleptic nom +cataleptics cataleptic nom +catalog catalog nom +cataloged catalog ver +cataloger cataloger nom +catalogers cataloger nom +cataloging catalog ver +catalogs catalog nom +catalogue catalogue nom +catalogued catalogue ver +cataloguer cataloguer nom +cataloguers cataloguer nom +catalogues catalogue nom +cataloguing catalogue ver +catalpa catalpa nom +catalpas catalpa nom +catalyses catalysis nom +catalysis catalysis nom +catalyst catalyst nom +catalysts catalyst nom +catalytic catalytic nom +catalytics catalytic nom +catalyze catalyze ver +catalyzed catalyze ver +catalyzes catalyze ver +catalyzing catalyze ver +catamaran catamaran nom +catamarans catamaran nom +catamount catamount nom +catamountain catamountain nom +catamountains catamountain nom +catamounts catamount nom +cataphoreses cataphoresis nom +cataphoresis cataphoresis nom +cataplasia cataplasia nom +cataplasias cataplasia nom +cataplasm cataplasm nom +cataplasms cataplasm nom +catapult catapult nom +catapulted catapult ver +catapulting catapult ver +catapults catapult nom +cataract cataract nom +cataracts cataract nom +catarrh catarrh nom +catarrhs catarrh nom +catastrophe catastrophe nom +catastrophes catastrophe nom +catatonia catatonia nom +catatonias catatonia nom +catatonic catatonic nom +catatonics catatonic nom +catbird catbird nom +catbirds catbird nom +catboat catboat nom +catboats catboat nom +catbrier catbrier nom +catbriers catbrier nom +catcall catcall nom +catcalled catcall ver +catcalling catcall ver +catcalls catcall nom +catch catch nom +catchall catchall nom +catchalls catchall nom +catcher catcher nom +catchers catcher nom +catches catch nom +catchflies catchfly nom +catchfly catchfly nom +catchier catchy adj +catchiest catchy adj +catching catch ver +catchings catching nom +catchment catchment nom +catchments catchment nom +catchpennies catchpenny nom +catchpenny catchpenny nom +catchphrase catchphrase nom +catchphrases catchphrase nom +catchup catchup nom +catchups catchup nom +catchweed catchweed nom +catchweeds catchweed nom +catchword catchword nom +catchwords catchword nom +catchy catchy adj +catclaw catclaw nom +catclaws catclaw nom +catecheses catechesis nom +catechesis catechesis nom +catechise catechise ver +catechised catechise ver +catechises catechise ver +catechising catechise ver +catechism catechism nom +catechisms catechism nom +catechist catechist nom +catechists catechist nom +catechize catechize ver +catechized catechize ver +catechizes catechize ver +catechizing catechize ver +catecholamine catecholamine nom +catecholamines catecholamine nom +catechu catechu nom +catechumen catechumen nom +catechumens catechumen nom +catechus catechu nom +categories category nom +categorisation categorisation nom +categorisations categorisation nom +categorization categorization nom +categorizations categorization nom +categorize categorize ver +categorized categorize ver +categorizes categorize ver +categorizing categorize ver +category category nom +catenaries catenary nom +catenary catenary nom +catenate catenate ver +catenated catenate ver +catenates catenate ver +catenating catenate ver +cater cater ver +catered cater ver +caterer caterer nom +caterers caterer nom +catering cater ver +caterings catering nom +caterpillar caterpillar nom +caterpillars caterpillar nom +caters cater ver +caterwaul caterwaul nom +caterwauled caterwaul ver +caterwauling caterwaul ver +caterwauls caterwaul nom +catfish catfish nom +catgut catgut nom +catguts catgut nom +catharses catharsis nom +catharsis catharsis nom +cathartic cathartic nom +cathartics cathartic nom +cathect cathect ver +cathected cathect ver +cathecting cathect ver +cathects cathect ver +cathedra cathedra nom +cathedral cathedral nom +cathedrals cathedral nom +cathedras cathedra nom +catheter catheter nom +catheterize catheterize ver +catheterized catheterize ver +catheterizes catheterize ver +catheterizing catheterize ver +catheters catheter nom +cathexes cathexis nom +cathexis cathexis nom +cathode cathode nom +cathodes cathode nom +catholicities catholicity nom +catholicity catholicity nom +catholicize catholicize ver +catholicized catholicize ver +catholicizes catholicize ver +catholicizing catholicize ver +cathouse cathouse nom +cathouses cathouse nom +cation cation nom +cations cation nom +catkin catkin nom +catkins catkin nom +catling catling nom +catmint catmint nom +catmints catmint nom +catnap catnap nom +catnapped catnap ver +catnapping catnap ver +catnaps catnap nom +catnip catnip nom +catnips catnip nom +cats cat nom +catsup catsup nom +catsups catsup nom +cattail cattail nom +cattails cattail nom +cattalo cattalo nom +cattaloes cattalo nom +cattalos cattalo nom +catted cat ver +cattie cattie nom +cattier catty adj +catties cattie nom +cattiest catty adj +cattiness cattiness nom +cattinesses cattiness nom +catting cat ver +cattleman cattleman nom +cattlemen cattleman nom +cattleya cattleya nom +cattleyas cattleya nom +catty catty adj +catwalk catwalk nom +catwalks catwalk nom +caucus caucus nom +caucused caucus ver +caucuses caucus nom +caucusing caucus ver +caudate caudate nom +caudates caudate nom +caudex caudex nom +caudexes caudex nom +caught catch ver +caul caul nom +cauldron cauldron nom +cauldrons cauldron nom +cauliflower cauliflower nom +cauliflowers cauliflower nom +caulk caulk nom +caulked caulk ver +caulker caulker nom +caulkers caulker nom +caulking caulk ver +caulkings caulking nom +caulks caulk nom +cauls caul nom +causalgia causalgia nom +causalgias causalgia nom +causalities causality nom +causality causality nom +causation causation nom +causations causation nom +causative causative nom +causatives causative nom +cause cause sw +caused cause ver +causer causer nom +causerie causerie nom +causeries causerie nom +causers causer nom +causes causes sw +causeway causeway nom +causewayed causeway ver +causewaying causeway ver +causeways causeway nom +causing cause ver +caustic caustic nom +causticities causticity nom +causticity causticity nom +caustics caustic nom +cauteries cautery nom +cauterisation cauterisation nom +cauterisations cauterisation nom +cauterization cauterization nom +cauterizations cauterization nom +cauterize cauterize ver +cauterized cauterize ver +cauterizes cauterize ver +cauterizing cauterize ver +cautery cautery nom +caution caution nom +cautioned caution ver +cautioning caution ver +cautions caution nom +cautiousness cautiousness nom +cautiousnesses cautiousness nom +cavalcade cavalcade nom +cavalcades cavalcade nom +cavalier cavalier nom +cavaliered cavalier ver +cavaliering cavalier ver +cavaliers cavalier nom +cavalla cavalla nom +cavallas cavalla nom +cavalries cavalry nom +cavalry cavalry nom +cavalryman cavalryman nom +cavalrymen cavalryman nom +cave cave nom +caveat caveat nom +caveats caveat nom +caved cave ver +caveman caveman nom +cavemen caveman nom +cavern cavern nom +caverned cavern ver +caverning cavern ver +caverns cavern nom +caves cave nom +caviar caviar nom +caviare caviare nom +caviares caviare nom +caviars caviar nom +cavies cavy nom +cavil cavil nom +caviled cavil ver +caviler caviler nom +cavilers caviler nom +caviling cavil ver +caviller caviller nom +cavillers caviller nom +cavils cavil nom +caving cave ver +cavings caving nom +cavities cavity nom +cavity cavity nom +cavort cavort ver +cavorted cavort ver +cavorting cavort ver +cavorts cavort ver +cavy cavy nom +caw caw nom +cawed caw ver +cawing caw ver +caws caw nom +cay cay nom +cayenne cayenne nom +cayennes cayenne nom +cayman cayman nom +caymans cayman nom +cays cay nom +cayuse cayuse nom +cayuses cayuse nom +cazique cazique nom +caziques cazique nom +cease cease nom +ceased cease ver +ceasefire ceasefire nom +ceasefires ceasefire nom +ceaselessness ceaselessness nom +ceaselessnesses ceaselessness nom +ceases cease nom +ceasing cease ver +ceca cecum nom +cecities cecity nom +cecity cecity nom +cecropia cecropia nom +cecropias cecropia nom +cecum cecum nom +cedar cedar nom +cedarbird cedarbird nom +cedarbirds cedarbird nom +cedars cedar nom +cedarwood cedarwood nom +cedarwoods cedarwood nom +cede cede ver +ceded cede ver +ceder ceder nom +ceders ceder nom +cedes cede ver +cedi cedi nom +cedilla cedilla nom +cedillas cedilla nom +ceding cede ver +cedis cedi nom +ceiling ceiling nom +ceilings ceiling nom +celandine celandine nom +celandines celandine nom +celebrant celebrant nom +celebrants celebrant nom +celebrate celebrate ver +celebrated celebrate ver +celebrates celebrate ver +celebrating celebrate ver +celebration celebration nom +celebrations celebration nom +celebrator celebrator nom +celebrators celebrator nom +celebrities celebrity nom +celebrity celebrity nom +celeriac celeriac nom +celeriacs celeriac nom +celeries celery nom +celerities celerity nom +celerity celerity nom +celery celery nom +celesta celesta nom +celestas celesta nom +celestial celestial nom +celestials celestial nom +celestite celestite nom +celestites celestite nom +celibacies celibacy nom +celibacy celibacy nom +celibate celibate nom +celibates celibate nom +cell cell nom +cellar cellar nom +cellarage cellarage nom +cellarages cellarage nom +cellared cellar ver +cellaret cellaret nom +cellarets cellaret nom +cellaring cellar ver +cellars cellar nom +cellblock cellblock nom +cellblocks cellblock nom +cellist cellist nom +cellists cellist nom +cello cello nom +cellophane cellophane nom +cellophanes cellophane nom +cellos cello nom +cellphone cellphone nom +cellphones cellphone nom +cells cell nom +cellularities cellularity nom +cellularity cellularity nom +cellulite cellulite nom +cellulites cellulite nom +cellulitis cellulitis nom +cellulitises cellulitis nom +celluloid celluloid nom +celluloids celluloid nom +cellulose cellulose nom +celluloses cellulose nom +cellulosic cellulosic nom +cellulosics cellulosic nom +celom celom nom +celoma celoma nom +celomata celoma nom +celoms celom nom +cement cement nom +cementa cementum nom +cemented cement ver +cementer cementer nom +cementers cementer nom +cementing cement ver +cementite cementite nom +cementites cementite nom +cements cement nom +cementum cementum nom +cemeteries cemetery nom +cemetery cemetery nom +cenobite cenobite nom +cenobites cenobite nom +cenogeneses cenogenesis nom +cenogenesis cenogenesis nom +cenotaph cenotaph nom +cenotaphs cenotaph nom +cense cense ver +censed cense ver +censer censer nom +censers censer nom +censes cense ver +censing cense ver +censor censor nom +censored censor ver +censoring censor ver +censoriousness censoriousness nom +censoriousnesses censoriousness nom +censors censor nom +censorship censorship nom +censorships censorship nom +censure censure nom +censured censure ver +censurer censurer nom +censurers censurer nom +censures censure nom +censuring censure ver +census census nom +censused census ver +censuses census nom +censusing census ver +cent cent nom +cental cental nom +centals cental nom +centare centare nom +centares centare nom +centaur centaur nom +centauries centaury nom +centaurs centaur nom +centaury centaury nom +centavo centavo nom +centavos centavo nom +centenarian centenarian nom +centenarians centenarian nom +centenaries centenary nom +centenary centenary nom +centennial centennial nom +centennials centennial nom +center center nom +centerboard centerboard nom +centerboards centerboard nom +centered center ver +centerfold centerfold nom +centerfolds centerfold nom +centering center ver +centerings centering nom +centerline centerline nom +centerlines centerline nom +centerpiece centerpiece nom +centerpieces centerpiece nom +centers center nom +centeses centesis nom +centesimo centesimo nom +centesimos centesimo nom +centesis centesis nom +centigram centigram nom +centigramme centigramme nom +centigrammes centigramme nom +centigrams centigram nom +centiliter centiliter nom +centiliters centiliter nom +centilitre centilitre nom +centilitres centilitre nom +centime centime nom +centimes centime nom +centimeter centimeter nom +centimeters centimeter nom +centimetre centimetre nom +centimetres centimetre nom +centimo centimo nom +centimos centimo nom +centipede centipede nom +centipedes centipede nom +centner centner nom +centners centner nom +central central adj +centraler central adj +centralest central adj +centralisation centralisation nom +centralisations centralisation nom +centralities centrality nom +centrality centrality nom +centralization centralization nom +centralizations centralization nom +centralize centralize ver +centralized centralize ver +centralizer centralizer nom +centralizers centralizer nom +centralizes centralize ver +centralizing centralize ver +centrals central nom +centre centre nom +centreboard centreboard nom +centreboards centreboard nom +centred centre ver +centrepiece centrepiece nom +centrepieces centrepiece nom +centres centre nom +centrifugal centrifugal nom +centrifugals centrifugal nom +centrifugation centrifugation nom +centrifugations centrifugation nom +centrifuge centrifuge nom +centrifuged centrifuge ver +centrifuges centrifuge nom +centrifuging centrifuge ver +centring centre ver +centriole centriole nom +centrioles centriole nom +centrist centrist nom +centrists centrist nom +centroid centroid nom +centroids centroid nom +centromere centromere nom +centromeres centromere nom +centrosome centrosome nom +centrosomes centrosome nom +centrum centrum nom +centrums centrum nom +cents cent nom +centuries century nom +centurion centurion nom +centurions centurion nom +century century nom +cephalexin cephalexin nom +cephalexins cephalexin nom +cephalochordate cephalochordate nom +cephalochordates cephalochordate nom +cephalopod cephalopod nom +cephalopods cephalopod nom +cephaloridine cephaloridine nom +cephaloridines cephaloridine nom +cephalosporin cephalosporin nom +cephalosporins cephalosporin nom +cephalothin cephalothin nom +cephalothins cephalothin nom +ceramic ceramic nom +ceramicist ceramicist nom +ceramicists ceramicist nom +ceramics ceramic nom +ceramist ceramist nom +ceramists ceramist nom +cerate cerate nom +cerates cerate nom +ceratin ceratin nom +ceratins ceratin nom +ceratodus ceratodus nom +ceratoduses ceratodus nom +ceratopsian ceratopsian nom +ceratopsians ceratopsian nom +cercaria cercaria nom +cercarias cercaria nom +cere cere ver +cereal cereal nom +cereals cereal nom +cerebellum cerebellum nom +cerebellums cerebellum nom +cerebral cerebral nom +cerebrals cerebral nom +cerebrate cerebrate ver +cerebrated cerebrate ver +cerebrates cerebrate ver +cerebrating cerebrate ver +cerebration cerebration nom +cerebrations cerebration nom +cerebrum cerebrum nom +cerebrums cerebrum nom +cerecloth cerecloth nom +cerecloths cerecloth nom +cered cere ver +cerement cerement nom +cerements cerement nom +ceremonial ceremonial nom +ceremonials ceremonial nom +ceremonies ceremony nom +ceremoniousness ceremoniousness nom +ceremoniousnesses ceremoniousness nom +ceremony ceremony nom +ceres cere ver +cering cere ver +cerise cerise nom +cerises cerise nom +cerium cerium nom +ceriums cerium nom +cermet cermet nom +cermets cermet nom +cero cero nom +ceros cero nom +cert cert nom +certain certain sw +certainer certain adj +certainest certain adj +certainly certainly sw +certainties certainty nom +certainty certainty nom +certificate certificate nom +certificated certificate ver +certificates certificate nom +certificating certificate ver +certification certification nom +certifications certification nom +certified certify ver +certifies certify ver +certify certify ver +certifying certify ver +certiorari certiorari nom +certioraris certiorari nom +certitude certitude nom +certitudes certitude nom +certs cert nom +cerulean cerulean nom +ceruleans cerulean nom +cerumen cerumen nom +cerumens cerumen nom +cerussite cerussite nom +cerussites cerussite nom +cervices cervix nom +cervicitis cervicitis nom +cervicitises cervicitis nom +cervid cervid nom +cervids cervid nom +cervix cervix nom +cesarean cesarean nom +cesareans cesarean nom +cesarian cesarian nom +cesarians cesarian nom +cesium cesium nom +cesiums cesium nom +cessation cessation nom +cessations cessation nom +cession cession nom +cessions cession nom +cesspit cesspit nom +cesspits cesspit nom +cesspool cesspool nom +cesspools cesspool nom +cestode cestode nom +cestodes cestode nom +cetacean cetacean nom +cetaceans cetacean nom +cha chon nom +chacma chacma nom +chacmas chacma nom +chaeta chaeta nom +chaetae chaeta nom +chaetodon chaetodon nom +chaetodons chaetodon nom +chaetognath chaetognath nom +chaetognaths chaetognath nom +chafe chafe nom +chafed chafe ver +chafes chafe nom +chaff chaff nom +chaffed chaff ver +chaffer chaffer ver +chaffered chaffer ver +chaffering chaffer ver +chaffers chaffer ver +chaffier chaffy adj +chaffiest chaffy adj +chaffinch chaffinch nom +chaffinches chaffinch nom +chaffing chaff ver +chaffs chaff nom +chaffy chaffy adj +chafing chafe ver +chagrin chagrin nom +chagrined chagrin ver +chagrining chagrin ver +chagrins chagrin nom +chain chain nom +chained chain ver +chaining chain ver +chains chain nom +chainsaw chainsaw nom +chainsawed chainsaw ver +chainsawing chainsaw ver +chainsaws chainsaw nom +chair chair nom +chaired chair ver +chairing chair ver +chairlift chairlift nom +chairlifts chairlift nom +chairman chairman nom +chairmaned chairman ver +chairmaning chairman ver +chairmans chairman ver +chairmanship chairmanship nom +chairmanships chairmanship nom +chairmen chairman nom +chairperson chairperson nom +chairpersons chairperson nom +chairs chair nom +chairwoman chairwoman nom +chairwomen chairwoman nom +chaise chaise nom +chaises chaise nom +chalaza chalaza nom +chalazas chalaza nom +chalazion chalazion nom +chalazions chalazion nom +chalcedonies chalcedony nom +chalcedony chalcedony nom +chalcid chalcid nom +chalcids chalcid nom +chalcocite chalcocite nom +chalcocites chalcocite nom +chalcopyrite chalcopyrite nom +chalcopyrites chalcopyrite nom +chaldron chaldron nom +chaldrons chaldron nom +chalet chalet nom +chalets chalet nom +chalice chalice nom +chalices chalice nom +chalk chalk nom +chalkboard chalkboard nom +chalkboards chalkboard nom +chalked chalk ver +chalkier chalky adj +chalkiest chalky adj +chalkiness chalkiness nom +chalkinesses chalkiness nom +chalking chalk ver +chalkpit chalkpit nom +chalkpits chalkpit nom +chalks chalk nom +chalky chalky adj +challah challah nom +challahs challah nom +challenge challenge nom +challenged challenge ver +challenger challenger nom +challengers challenger nom +challenges challenge nom +challenging challenge ver +challis challis nom +challises challis nom +chamaeleon chamaeleon nom +chamaeleons chamaeleon nom +chamber chamber nom +chambered chamber ver +chambering chamber ver +chamberlain chamberlain nom +chamberlains chamberlain nom +chambermaid chambermaid nom +chambermaids chambermaid nom +chamberpot chamberpot nom +chamberpots chamberpot nom +chambers chamber nom +chambray chambray nom +chambrays chambray nom +chameleon chameleon nom +chameleons chameleon nom +chamfer chamfer ver +chamfered chamfer ver +chamfering chamfer ver +chamfers chamfer ver +chamfron chamfron nom +chamfrons chamfron nom +chammied chammy ver +chammies chammy nom +chammy chammy nom +chammying chammy ver +chamois chamois nom +chamoised chamois ver +chamoises chamois ver +chamoising chamois ver +chamomile chamomile nom +chamomiles chamomile nom +champ champ nom +champagne champagne nom +champagnes champagne nom +champaign champaign nom +champaigns champaign nom +champed champ ver +champing champ ver +champion champion nom +championed champion ver +championing champion ver +champions champion nom +championship championship nom +championships championship nom +champs champ nom +chance chance nom +chanced chance ver +chancel chancel nom +chancelleries chancellery nom +chancellery chancellery nom +chancellor chancellor nom +chancellors chancellor nom +chancellorship chancellorship nom +chancellorships chancellorship nom +chancels chancel nom +chanceries chancery nom +chancery chancery nom +chances chance nom +chancier chancy adj +chanciest chancy adj +chanciness chanciness nom +chancinesses chanciness nom +chancing chance ver +chancre chancre nom +chancres chancre nom +chancroid chancroid nom +chancroids chancroid nom +chancy chancy adj +chandelier chandelier nom +chandeliers chandelier nom +chandelle chandelle ver +chandelled chandelle ver +chandelles chandelle ver +chandelling chandelle ver +chandler chandler nom +chandleries chandlery nom +chandlers chandler nom +chandlery chandlery nom +chanfron chanfron nom +chanfrons chanfron nom +change change nom +changeabilities changeability nom +changeability changeability nom +changeableness changeableness nom +changeablenesses changeableness nom +changed change ver +changefulness changefulness nom +changefulnesses changefulness nom +changelessness changelessness nom +changelessnesses changelessness nom +changeling changeling nom +changeover changeover nom +changeovers changeover nom +changer changer nom +changers changer nom +changes changes sw +changing change ver +channel channel nom +channeled channel ver +channeling channel ver +channelization channelization nom +channelizations channelization nom +channelize channelize ver +channelized channelize ver +channelizes channelize ver +channelizing channelize ver +channels channel nom +chanson chanson nom +chansons chanson nom +chant chant nom +chanted chant ver +chanter chanter nom +chanterelle chanterelle nom +chanterelles chanterelle nom +chanters chanter nom +chanteuse chanteuse nom +chanteuses chanteuse nom +chantey chantey nom +chanteys chantey nom +chanticleer chanticleer nom +chanticleers chanticleer nom +chanties chanty nom +chanting chant ver +chantries chantry nom +chantry chantry nom +chants chant nom +chanty chanty nom +chaos chaos nom +chaoses chaos nom +chap chap nom +chaparral chaparral nom +chaparrals chaparral nom +chapati chapati nom +chapatis chapati nom +chapatti chapatti nom +chapattis chapatti nom +chapbook chapbook nom +chapbooks chapbook nom +chapeau chapeau nom +chapeaus chapeau nom +chapel chapel nom +chapeled chapel ver +chapeling chapel ver +chapels chapel nom +chaperon chaperon nom +chaperonage chaperonage nom +chaperonages chaperonage nom +chaperone chaperone nom +chaperoned chaperon ver +chaperones chaperone nom +chaperoning chaperon ver +chaperons chaperon nom +chapiter chapiter nom +chapiters chapiter nom +chaplain chaplain nom +chaplaincies chaplaincy nom +chaplaincy chaplaincy nom +chaplains chaplain nom +chaplainship chaplainship nom +chaplainships chaplainship nom +chaplet chaplet nom +chaplets chaplet nom +chapman chapman nom +chapmen chapman nom +chapped chap ver +chapping chap ver +chaps chap nom +chapter chapter nom +chaptered chapter ver +chapterhouse chapterhouse nom +chapterhouses chapterhouse nom +chaptering chapter ver +chapters chapter nom +char char nom +charabanc charabanc nom +charabancs charabanc nom +characid characid nom +characids characid nom +characin characin nom +characins characin nom +character character nom +charactered character ver +charactering character ver +characteristic characteristic nom +characteristics characteristic nom +characterization characterization nom +characterizations characterization nom +characterize characterize ver +characterized characterize ver +characterizes characterize ver +characterizing characterize ver +characters character nom +charade charade nom +charades charade nom +charbroil charbroil ver +charbroiled charbroil ver +charbroiling charbroil ver +charbroils charbroil ver +charcoal charcoal nom +charcoaled charcoal ver +charcoaling charcoal ver +charcoals charcoal nom +charcuterie charcuterie nom +charcuteries charcuterie nom +chard chard nom +chardonnay chardonnay nom +chardonnays chardonnay nom +chards chard nom +charge charge nom +charged charge ver +charger charger nom +chargers charger nom +charges charge nom +charging charge ver +charier chary adj +chariest chary adj +chariness chariness nom +charinesses chariness nom +chariot chariot nom +charioted chariot ver +charioteer charioteer nom +charioteers charioteer nom +charioting chariot ver +chariots chariot nom +charisma charisma nom +charismata charisma nom +charismatic charismatic nom +charismatics charismatic nom +charitableness charitableness nom +charitablenesses charitableness nom +charities charity nom +charity charity nom +charivari charivari nom +charivaris charivari nom +charlatan charlatan nom +charlatanism charlatanism nom +charlatanisms charlatanism nom +charlatanries charlatanry nom +charlatanry charlatanry nom +charlatans charlatan nom +charlock charlock nom +charlocks charlock nom +charlotte charlotte nom +charlottes charlotte nom +charm charm nom +charmed charm ver +charmer charmer nom +charmers charmer nom +charming charm ver +charminger charming adj +charmingest charming adj +charms charm nom +charnel charnel nom +charnels charnel nom +charred char ver +charring char ver +chars char nom +chart chart nom +charted chart ver +charter charter nom +chartered charter ver +charterer charterer nom +charterers charterer nom +chartering charter ver +charters charter nom +charting chart ver +chartreuse chartreuse nom +chartreuses chartreuse nom +charts chart nom +charwoman charwoman nom +charwomen charwoman nom +chary chary adj +chase chase nom +chased chase ver +chaser chaser nom +chasers chaser nom +chases chase nom +chasing chase ver +chasm chasm nom +chasms chasm nom +chasse chasse nom +chassed chasse ver +chasseing chasse ver +chasses chasse nom +chassis chassis nom +chaste chaste adj +chasten chasten ver +chastened chasten ver +chasteness chasteness nom +chastenesses chasteness nom +chastening chasten ver +chastens chasten ver +chaster chaste adj +chastest chaste adj +chastise chastise ver +chastised chastise ver +chastisement chastisement nom +chastisements chastisement nom +chastiser chastiser nom +chastisers chastiser nom +chastises chastise ver +chastising chastise ver +chastities chastity nom +chastity chastity nom +chasuble chasuble nom +chasubles chasuble nom +chat chat nom +chateau chateau nom +chateaux chateau nom +chatelaine chatelaine nom +chatelaines chatelaine nom +chats chat nom +chatted chat ver +chattel chattel nom +chattels chattel nom +chatter chatter nom +chatterbox chatterbox nom +chatterboxes chatterbox nom +chattered chatter ver +chatterer chatterer nom +chatterers chatterer nom +chattering chatter ver +chatterings chattering nom +chatters chatter nom +chattier chatty adj +chattiest chatty adj +chattiness chattiness nom +chattinesses chattiness nom +chatting chat ver +chatty chatty adj +chauffeur chauffeur nom +chauffeured chauffeur ver +chauffeuring chauffeur ver +chauffeurs chauffeur nom +chauffeuse chauffeuse nom +chauffeuses chauffeuse nom +chaulmoogra chaulmoogra nom +chaulmoogras chaulmoogra nom +chauvinism chauvinism nom +chauvinisms chauvinism nom +chauvinist chauvinist nom +chauvinists chauvinist nom +chaw chaw nom +chawbacon chawbacon nom +chawbacons chawbacon nom +chawed chaw ver +chawing chaw ver +chaws chaw nom +cheap cheap adj +cheapen cheapen ver +cheapened cheapen ver +cheapening cheapen ver +cheapens cheapen ver +cheaper cheap adj +cheapest cheap adj +cheapness cheapness nom +cheapnesses cheapness nom +cheaps cheap nom +cheapskate cheapskate nom +cheapskates cheapskate nom +cheat cheat nom +cheated cheat ver +cheater cheater nom +cheaters cheater nom +cheating cheat ver +cheats cheat nom +check check nom +checkbook checkbook nom +checkbooks checkbook nom +checked check ver +checker checker nom +checkerberries checkerberry nom +checkerberry checkerberry nom +checkerbloom checkerbloom nom +checkerblooms checkerbloom nom +checkerboard checkerboard nom +checkerboarded checkerboard ver +checkerboarding checkerboard ver +checkerboards checkerboard nom +checkered checker ver +checkering checker ver +checkers checker nom +checking check ver +checklist checklist nom +checklists checklist nom +checkmate checkmate nom +checkmated checkmate ver +checkmates checkmate nom +checkmating checkmate ver +checkoff checkoff nom +checkoffs checkoff nom +checkout checkout nom +checkouts checkout nom +checkpoint checkpoint nom +checkpoints checkpoint nom +checkrein checkrein nom +checkreins checkrein nom +checkroom checkroom nom +checkrooms checkroom nom +checkrow checkrow ver +checkrowed checkrow ver +checkrowing checkrow ver +checkrows checkrow ver +checks check nom +checkup checkup nom +checkups checkup nom +cheddar cheddar nom +cheddars cheddar nom +cheek cheek nom +cheekbone cheekbone nom +cheekbones cheekbone nom +cheeked cheek ver +cheekier cheeky adj +cheekiest cheeky adj +cheekiness cheekiness nom +cheekinesses cheekiness nom +cheeking cheek ver +cheekpiece cheekpiece nom +cheekpieces cheekpiece nom +cheeks cheek nom +cheeky cheeky adj +cheep cheep nom +cheeped cheep ver +cheeping cheep ver +cheeps cheep nom +cheer cheer nom +cheered cheer ver +cheerer cheerer nom +cheerers cheerer nom +cheerful cheerful adj +cheerfuller cheerful adj +cheerfullest cheerful adj +cheerfulness cheerfulness nom +cheerfulnesses cheerfulness nom +cheerier cheery adj +cheeriest cheery adj +cheeriness cheeriness nom +cheerinesses cheeriness nom +cheering cheer ver +cheerio cheerio nom +cheerios cheerio nom +cheerlead cheerlead ver +cheerleader cheerleader nom +cheerleaders cheerleader nom +cheerleading cheerlead ver +cheerleads cheerlead ver +cheerled cheerlead ver +cheerlessness cheerlessness nom +cheerlessnesses cheerlessness nom +cheers cheer nom +cheery cheery adj +cheese cheese nom +cheeseboard cheeseboard nom +cheeseboards cheeseboard nom +cheeseburger cheeseburger nom +cheeseburgers cheeseburger nom +cheesecake cheesecake nom +cheesecakes cheesecake nom +cheesecloth cheesecloth nom +cheesecloths cheesecloth nom +cheesed cheese ver +cheeseparing cheeseparing nom +cheeseparings cheeseparing nom +cheeses cheese nom +cheesier cheesy adj +cheesiest cheesy adj +cheesiness cheesiness nom +cheesinesses cheesiness nom +cheesing cheese ver +cheesy cheesy adj +cheetah cheetah nom +cheetahs cheetah nom +cheewink cheewink nom +cheewinks cheewink nom +chef chef nom +chefs chef nom +chela chela nom +chelas chela nom +chelate chelate nom +chelated chelate ver +chelates chelate nom +chelating chelate ver +chelation chelation nom +chelations chelation nom +chelicera chelicera nom +chelicerae chelicera nom +chelonian chelonian nom +chelonians chelonian nom +chemical chemical nom +chemicals chemical nom +chemiluminescence chemiluminescence nom +chemiluminescences chemiluminescence nom +chemise chemise nom +chemises chemise nom +chemisorb chemisorb ver +chemisorbed chemisorb ver +chemisorbing chemisorb ver +chemisorbs chemisorb ver +chemisorption chemisorption nom +chemisorptions chemisorption nom +chemist chemist nom +chemistries chemistry nom +chemistry chemistry nom +chemists chemist nom +chemoreceptor chemoreceptor nom +chemoreceptors chemoreceptor nom +chemosurgeries chemosurgery nom +chemosurgery chemosurgery nom +chemosyntheses chemosynthesis nom +chemosynthesis chemosynthesis nom +chemotaxes chemotaxis nom +chemotaxis chemotaxis nom +chemotherapies chemotherapy nom +chemotherapy chemotherapy nom +chemurgies chemurgy nom +chemurgy chemurgy nom +chenille chenille nom +chenilles chenille nom +cheque cheque nom +chequebook chequebook nom +chequebooks chequebook nom +chequer chequer ver +chequered chequer ver +chequering chequer ver +chequers chequer ver +cheques cheque nom +cherimoya cherimoya nom +cherimoyas cherimoya nom +cherish cherish ver +cherished cherish ver +cherishes cherish ver +cherishing cherish ver +cheroot cheroot nom +cheroots cheroot nom +cherrier cherry adj +cherries cherry nom +cherriest cherry adj +cherry cherry adj +cherrystone cherrystone nom +cherrystones cherrystone nom +chert chert nom +chertier cherty adj +chertiest cherty adj +cherts chert nom +cherty cherty adj +cherub cherub nom +cherubim cherub nom +cherubs cherub nom +chervil chervil nom +chervils chervil nom +chess chess nom +chessboard chessboard nom +chessboards chessboard nom +chesses chess nom +chessman chessman nom +chessmen chessman nom +chest chest nom +chesterfield chesterfield nom +chesterfields chesterfield nom +chestful chestful nom +chestfuls chestful nom +chestier chesty adj +chestiest chesty adj +chestnut chestnut nom +chestnuts chestnut nom +chests chest nom +chesty chesty adj +chetah chetah nom +chetahs chetah nom +chetrum chetrum nom +chetrums chetrum nom +chevalier chevalier nom +chevaliers chevalier nom +chevied chevy ver +chevies chevy ver +cheviot cheviot nom +cheviots cheviot nom +chevre chevre nom +chevres chevre nom +chevron chevron nom +chevrons chevron nom +chevrotain chevrotain nom +chevrotains chevrotain nom +chevy chevy ver +chevying chevy ver +chew chew nom +chewed chew ver +chewer chewer nom +chewers chewer nom +chewier chewy adj +chewiest chewy adj +chewiness chewiness nom +chewinesses chewiness nom +chewing chew ver +chewink chewink nom +chewinks chewink nom +chews chew nom +chewy chewy adj +chi chi nom +chiaroscuro chiaroscuro nom +chiaroscuros chiaroscuro nom +chiasm chiasm nom +chiasma chiasma nom +chiasmas chiasma nom +chiasms chiasm nom +chiasmus chiasmus nom +chiasmuses chiasmus nom +chic chic adj +chicane chicane nom +chicaned chicane ver +chicaneries chicanery nom +chicanery chicanery nom +chicanes chicane nom +chicaning chicane ver +chicer chic adj +chicest chic adj +chichi chichi adj +chichier chichi adj +chichiest chichi adj +chichis chichi nom +chick chick nom +chickadee chickadee nom +chickadees chickadee nom +chicken chicken nom +chickened chicken ver +chickenfeed chickenfeed nom +chickenfeeds chickenfeed nom +chickening chicken ver +chickenpox chickenpox nom +chickenpoxes chickenpox nom +chickens chicken nom +chickenshit chickenshit nom +chickenshits chickenshit nom +chickpea chickpea nom +chickpeas chickpea nom +chicks chick nom +chickweed chickweed nom +chickweeds chickweed nom +chicle chicle nom +chicles chicle nom +chicness chicness nom +chicnesses chicness nom +chicories chicory nom +chicory chicory nom +chics chic nom +chide chide ver +chided chide ver +chides chide ver +chiding chide ver +chidings chiding nom +chief chief adj +chiefdom chiefdom nom +chiefdoms chiefdom nom +chiefer chief adj +chiefest chief adj +chiefs chief nom +chieftain chieftain nom +chieftaincies chieftaincy nom +chieftaincy chieftaincy nom +chieftains chieftain nom +chieftainship chieftainship nom +chieftainships chieftainship nom +chiffon chiffon nom +chiffonier chiffonier nom +chiffoniers chiffonier nom +chiffons chiffon nom +chigetai chigetai nom +chigetais chigetai nom +chigger chigger nom +chiggers chigger nom +chignon chignon nom +chignons chignon nom +chigoe chigoe nom +chigoes chigoe nom +chihuahua chihuahua nom +chihuahuas chihuahua nom +chilblain chilblain nom +chilblains chilblain nom +child child nom +childbearing childbearing nom +childbearings childbearing nom +childbed childbed nom +childbeds childbed nom +childbirth childbirth nom +childbirths childbirth nom +childcare childcare nom +childcares childcare nom +childhood childhood nom +childhoods childhood nom +childishness childishness nom +childishnesses childishness nom +childlessness childlessness nom +childlessnesses childlessness nom +childlier childly adj +childliest childly adj +childly childly adj +childproof childproof ver +childproofed childproof ver +childproofing childproof ver +childproofs childproof ver +children child nom +chile chile nom +chiles chile nom +chili chili nom +chiliad chiliad nom +chiliads chiliad nom +chilies chili nom +chill chill adj +chilled chill ver +chiller chill adj +chillers chiller nom +chillest chill adj +chilli chilli nom +chillier chilly adj +chillies chilli nom +chilliest chilly adj +chilliness chilliness nom +chillinesses chilliness nom +chilling chill ver +chillings chilling nom +chillness chillness nom +chillnesses chillness nom +chills chill nom +chilly chilly adj +chimaera chimaera nom +chimaeras chimaera nom +chime chime nom +chimed chime ver +chimer chimer nom +chimera chimera nom +chimeras chimera nom +chimers chimer nom +chimes chime nom +chiming chime ver +chimney chimney nom +chimneyed chimney ver +chimneying chimney ver +chimneypiece chimneypiece nom +chimneypieces chimneypiece nom +chimneys chimney nom +chimp chimp nom +chimpanzee chimpanzee nom +chimpanzees chimpanzee nom +chimps chimp nom +chin chin nom +china china nom +chinaberries chinaberry nom +chinaberry chinaberry nom +chinas china nom +chinaware chinaware nom +chinawares chinaware nom +chincapin chincapin nom +chincapins chincapin nom +chinch chinch nom +chincherinchee chincherinchee nom +chincherinchees chincherinchee nom +chinches chinch nom +chinchier chinchy adj +chinchiest chinchy adj +chinchilla chinchillon nom +chinchillas chinchilla nom +chinchillon chinchillon nom +chinchy chinchy adj +chine chine nom +chined chine ver +chines chine nom +chining chine ver +chink chink nom +chinkapin chinkapin nom +chinkapins chinkapin nom +chinked chink ver +chinking chink ver +chinks chink nom +chinned chin ver +chinning chin ver +chino chino nom +chinoiserie chinoiserie nom +chinoiseries chinoiserie nom +chinook chinook nom +chinooks chinook nom +chinos chino nom +chinquapin chinquapin nom +chinquapins chinquapin nom +chins chin nom +chinstrap chinstrap nom +chinstraps chinstrap nom +chintz chintz nom +chintzes chintz nom +chintzier chintzy adj +chintziest chintzy adj +chintzy chintzy adj +chip chip nom +chipboard chipboard nom +chipboards chipboard nom +chipmunk chipmunk nom +chipmunks chipmunk nom +chipped chip ver +chipper chipper nom +chippered chipper ver +chippering chipper ver +chippers chipper nom +chipping chip ver +chippings chipping nom +chips chip nom +chirk chirk ver +chirked chirk ver +chirking chirk ver +chirks chirk ver +chirographies chirography nom +chirography chirography nom +chiromancer chiromancer nom +chiromancers chiromancer nom +chiromancies chiromancy nom +chiromancy chiromancy nom +chiropodies chiropody nom +chiropodist chiropodist nom +chiropodists chiropodist nom +chiropody chiropody nom +chiropractic chiropractic nom +chiropractics chiropractic nom +chiropractor chiropractor nom +chiropractors chiropractor nom +chiropteran chiropteran nom +chiropterans chiropteran nom +chirp chirp nom +chirped chirp ver +chirpier chirpy adj +chirpiest chirpy adj +chirpiness chirpiness nom +chirpinesses chirpiness nom +chirping chirp ver +chirps chirp nom +chirpy chirpy adj +chirr chirr ver +chirred chirr ver +chirring chirr ver +chirrs chirr ver +chirrup chirrup nom +chirruped chirrup ver +chirruping chirrup ver +chirrups chirrup nom +chis chi nom +chisel chisel nom +chiseled chisel ver +chiseler chiseler nom +chiselers chiseler nom +chiseling chisel ver +chiseller chiseller nom +chisellers chiseller nom +chisels chisel nom +chit chit nom +chitchat chitchat nom +chitchats chitchat nom +chitchatted chitchat ver +chitchatting chitchat ver +chitin chitin nom +chitins chitin nom +chiton chiton nom +chitons chiton nom +chits chit nom +chitter chitter ver +chittered chitter ver +chittering chitter ver +chitters chitter ver +chivalries chivalry nom +chivalrousness chivalrousness nom +chivalrousnesses chivalrousness nom +chivalry chivalry nom +chivaree chivaree nom +chivarees chivaree nom +chive chive nom +chives chive nom +chivied chivy ver +chivies chivy ver +chivvied chivvy ver +chivvies chivvy ver +chivvy chivvy ver +chivvying chivvy ver +chivy chivy ver +chivying chivy ver +chlamydia chlamydia nom +chlamydiae chlamydia nom +chloasma chloasma nom +chloasmas chloasma nom +chloral chloral nom +chlorals chloral nom +chloramine chloramine nom +chloramines chloramine nom +chloramphenicol chloramphenicol nom +chloramphenicols chloramphenicol nom +chlorate chlorate nom +chlorates chlorate nom +chlordane chlordane nom +chlordanes chlordane nom +chlordiazepoxide chlordiazepoxide nom +chlordiazepoxides chlordiazepoxide nom +chlorella chlorella nom +chlorellas chlorella nom +chloride chloride nom +chlorides chloride nom +chlorinate chlorinate ver +chlorinated chlorinate ver +chlorinates chlorinate ver +chlorinating chlorinate ver +chlorination chlorination nom +chlorinations chlorination nom +chlorine chlorine nom +chlorines chlorine nom +chlorofluorocarbon chlorofluorocarbon nom +chlorofluorocarbons chlorofluorocarbon nom +chloroform chloroform nom +chloroformed chloroform ver +chloroforming chloroform ver +chloroforms chloroform nom +chlorophyl chlorophyl nom +chlorophyll chlorophyll nom +chlorophylls chlorophyll nom +chlorophyls chlorophyl nom +chloroplast chloroplast nom +chloroplasts chloroplast nom +chloroprene chloroprene nom +chloroprenes chloroprene nom +chloroquine chloroquine nom +chloroquines chloroquine nom +chloroses chlorosis nom +chlorosis chlorosis nom +chlorothiazide chlorothiazide nom +chlorothiazides chlorothiazide nom +chlorpromazine chlorpromazine nom +chlorpromazines chlorpromazine nom +chlortetracycline chlortetracycline nom +chlortetracyclines chlortetracycline nom +choanocyte choanocyte nom +choanocytes choanocyte nom +choc choc nom +chocaholic chocaholic nom +chocaholics chocaholic nom +chock chock nom +chocked chock ver +chocking chock ver +chocks chock nom +chocoholic chocoholic nom +chocoholics chocoholic nom +chocolate chocolate nom +chocolates chocolate nom +chocs choc nom +choice choice adj +choiceness choiceness nom +choicenesses choiceness nom +choicer choice adj +choices choice nom +choicest choice adj +choir choir nom +choirboy choirboy nom +choirboys choirboy nom +choired choir ver +choiring choir ver +choirmaster choirmaster nom +choirmasters choirmaster nom +choirs choir nom +choke choke nom +chokecherries chokecherry nom +chokecherry chokecherry nom +choked choke ver +chokedamp chokedamp nom +chokedamps chokedamp nom +choker choker nom +chokers choker nom +chokes choke nom +chokey chokey nom +chokeys chokey nom +chokier choky adj +chokies choky nom +chokiest choky adj +choking choke ver +choky choky adj +cholangiographies cholangiography nom +cholangiography cholangiography nom +cholecystectomies cholecystectomy nom +cholecystectomy cholecystectomy nom +cholecystitides cholecystitis nom +cholecystitis cholecystitis nom +cholelithiases cholelithiasis nom +cholelithiasis cholelithiasis nom +choler choler nom +cholera cholera nom +choleras cholera nom +cholers choler nom +cholesterol cholesterol nom +cholesterols cholesterol nom +choline choline nom +cholines choline nom +cholla cholla nom +chollas cholla nom +chomp chomp nom +chomped chomp ver +chomping chomp ver +chomps chomp nom +chon chon nom +chondrified chondrify ver +chondrifies chondrify ver +chondrify chondrify ver +chondrifying chondrify ver +chondriosome chondriosome nom +chondriosomes chondriosome nom +chondrite chondrite nom +chondrites chondrite nom +chondroma chondroma nom +chondromas chondroma nom +chondrule chondrule nom +chondrules chondrule nom +choose choose ver +chooser chooser nom +choosers chooser nom +chooses choose ver +choosey choosey adj +choosier choosey adj +choosiest choosey adj +choosiness choosiness nom +choosinesses choosiness nom +choosing choose ver +choosy choosy adj +chop chop nom +chophouse chophouse nom +chophouses chophouse nom +chopine chopine nom +chopines chopine nom +chopped chop ver +chopper chopper nom +choppered chopper ver +choppering chopper ver +choppers chopper nom +choppier choppy adj +choppiest choppy adj +choppiness choppiness nom +choppinesses choppiness nom +chopping chop ver +choppy choppy adj +chops chop nom +chopstick chopstick nom +chopsticks chopstick nom +choragus choragus nom +choraguses choragus nom +choral choral nom +chorale chorale nom +chorales chorale nom +chorals choral nom +chord chord nom +chordamesoderm chordamesoderm nom +chordamesoderms chordamesoderm nom +chordate chordate nom +chordates chordate nom +chorded chord ver +chording chord ver +chordophone chordophone nom +chordophones chordophone nom +chords chord nom +chore chore nom +chorea chorea nom +choreas chorea nom +choreograph choreograph ver +choreographed choreograph ver +choreographer choreographer nom +choreographers choreographer nom +choreographies choreography nom +choreographing choreograph ver +choreographs choreograph ver +choreography choreography nom +chores chore nom +chorine chorine nom +chorines chorine nom +chorion chorion nom +chorions chorion nom +chorister chorister nom +choristers chorister nom +choroid choroid nom +choroids choroid nom +chortle chortle nom +chortled chortle ver +chortler chortler nom +chortlers chortler nom +chortles chortle nom +chortling chortle ver +chorus chorus nom +chorused chorus ver +choruses chorus nom +chorusing chorus ver +chose choose ver +chosen choose ver +choses chose nom +chough chough nom +choughs chough nom +chouse chouse ver +choused chouse ver +chouses chouse ver +chousing chouse ver +chow chow nom +chowchow chowchow nom +chowchows chowchow nom +chowder chowder nom +chowders chowder nom +chowed chow ver +chowing chow ver +chows chow nom +chrism chrism nom +chrisms chrism nom +chrisom chrisom nom +chrisoms chrisom nom +christen christen ver +christened christen ver +christening christen ver +christenings christening nom +christens christen ver +chroma chroma nom +chromas chroma nom +chromate chromate nom +chromates chromate nom +chromaticities chromaticity nom +chromaticity chromaticity nom +chromatid chromatid nom +chromatids chromatid nom +chromatin chromatin nom +chromatins chromatin nom +chromatism chromatism nom +chromatisms chromatism nom +chromatogram chromatogram nom +chromatograms chromatogram nom +chromatographies chromatography nom +chromatography chromatography nom +chrome chrome nom +chromed chrome ver +chromes chrome nom +chroming chrome ver +chromite chromite nom +chromites chromite nom +chromium chromium nom +chromiums chromium nom +chromolithographies chromolithography nom +chromolithography chromolithography nom +chromoplast chromoplast nom +chromoplasts chromoplast nom +chromosome chromosome nom +chromosomes chromosome nom +chronicle chronicle nom +chronicled chronicle ver +chronicler chronicler nom +chroniclers chronicler nom +chronicles chronicle nom +chronicling chronicle ver +chronograph chronograph nom +chronographs chronograph nom +chronologies chronology nom +chronologist chronologist nom +chronologists chronologist nom +chronologize chronologize ver +chronologized chronologize ver +chronologizes chronologize ver +chronologizing chronologize ver +chronology chronology nom +chronometer chronometer nom +chronometers chronometer nom +chronoscope chronoscope nom +chronoscopes chronoscope nom +chrysalis chrysalis nom +chrysalises chrysalis nom +chrysanthemum chrysanthemum nom +chrysanthemums chrysanthemum nom +chrysarobin chrysarobin nom +chrysarobins chrysarobin nom +chrysoberyl chrysoberyl nom +chrysoberyls chrysoberyl nom +chrysolite chrysolite nom +chrysolites chrysolite nom +chrysomelid chrysomelid nom +chrysomelids chrysomelid nom +chrysoprase chrysoprase nom +chrysoprases chrysoprase nom +chrysotile chrysotile nom +chrysotiles chrysotile nom +chub chub nom +chubbier chubby adj +chubbiest chubby adj +chubbiness chubbiness nom +chubbinesses chubbiness nom +chubby chubby adj +chuck chuck nom +chucked chuck ver +chuckhole chuckhole nom +chuckholes chuckhole nom +chucking chuck ver +chuckle chuckle nom +chuckled chuckle ver +chuckles chuckle nom +chuckling chuckle ver +chucks chuck nom +chuckwalla chuckwalla nom +chuckwallas chuckwalla nom +chufa chufa nom +chufas chufa nom +chuff chuff ver +chuffed chuff ver +chuffing chuff ver +chuffs chuff ver +chug chug nom +chugged chug ver +chugging chug ver +chugs chug nom +chukka chukka nom +chukkas chukka nom +chukker chukker nom +chukkers chukker nom +chum chum nom +chummed chum ver +chummier chummy adj +chummiest chummy adj +chumminess chumminess nom +chumminesses chumminess nom +chumming chum ver +chummy chummy adj +chump chump nom +chumped chump ver +chumping chump ver +chumps chump nom +chums chum nom +chunk chunk nom +chunked chunk ver +chunkier chunky adj +chunkiest chunky adj +chunkiness chunkiness nom +chunkinesses chunkiness nom +chunking chunk ver +chunks chunk nom +chunky chunky adj +chunnel chunnel nom +chunnels chunnel nom +church church nom +churched church ver +churches church nom +churchgoer churchgoer nom +churchgoers churchgoer nom +churchgoing churchgoing nom +churchgoings churchgoing nom +churching church ver +churchlier churchly adj +churchliest churchly adj +churchly churchly adj +churchman churchman nom +churchmen churchman nom +churchwarden churchwarden nom +churchwardens churchwarden nom +churchyard churchyard nom +churchyards churchyard nom +churl churl nom +churlishness churlishness nom +churlishnesses churlishness nom +churls churl nom +churn churn nom +churned churn ver +churner churner nom +churners churner nom +churning churn ver +churns churn nom +churr churr ver +churred churr ver +churring churr ver +churrs churr ver +chute chute nom +chuted chute ver +chutes chute nom +chuting chute ver +chutney chutney nom +chutneys chutney nom +chutzpa chutzpa nom +chutzpah chutzpah nom +chutzpahs chutzpah nom +chutzpas chutzpa nom +chyle chyle nom +chyles chyle nom +chyme chyme nom +chymes chyme nom +chymosin chymosin nom +chymosins chymosin nom +ciao ciao nom +ciaos ciao nom +cicada cicada nom +cicadas cicada nom +cicala cicala nom +cicalas cicala nom +cicatrice cicatrice nom +cicatrices cicatrice nom +cicatrix cicatrix nom +cicatrize cicatrize ver +cicatrized cicatrize ver +cicatrizes cicatrize ver +cicatrizing cicatrize ver +cicero cicero nom +cicerone cicerone nom +ciceroni cicerone nom +ciceros cicero nom +cichlid cichlid nom +cichlids cichlid nom +cider cider nom +ciders cider nom +cigar cigar nom +cigaret cigaret nom +cigarets cigaret nom +cigarette cigarette nom +cigarettes cigarette nom +cigarfish cigarfish nom +cigarillo cigarillo nom +cigarillos cigarillo nom +cigars cigar nom +cilantro cilantro nom +cilantros cilantro nom +cilia cilium nom +ciliate ciliate nom +ciliates ciliate nom +cilium cilium nom +cimetidine cimetidine nom +cimetidines cimetidine nom +cinch cinch nom +cinched cinch ver +cinches cinch nom +cinching cinch ver +cinchona cinchona nom +cinchonas cinchona nom +cincture cincture nom +cinctured cincture ver +cinctures cincture nom +cincturing cincture ver +cinder cinder nom +cindered cinder ver +cindering cinder ver +cinders cinder nom +cinema cinema nom +cinemas cinema nom +cinematize cinematize ver +cinematized cinematize ver +cinematizes cinematize ver +cinematizing cinematize ver +cinematographer cinematographer nom +cinematographers cinematographer nom +cinematographies cinematography nom +cinematography cinematography nom +cineraria cineraria nom +cinerarias cineraria nom +cingula cingulum nom +cingulum cingulum nom +cinnabar cinnabar nom +cinnabars cinnabar nom +cinnamon cinnamon nom +cinnamons cinnamon nom +cinque cinque nom +cinquefoil cinquefoil nom +cinquefoils cinquefoil nom +cinques cinque nom +cipher cipher nom +ciphered cipher ver +ciphering cipher ver +ciphers cipher nom +circle circle nom +circled circle ver +circles circle nom +circlet circlet nom +circlets circlet nom +circling circle ver +circuit circuit nom +circuited circuit ver +circuities circuity nom +circuiting circuit ver +circuitousness circuitousness nom +circuitousnesses circuitousness nom +circuitries circuitry nom +circuitry circuitry nom +circuits circuit nom +circuity circuity nom +circular circular nom +circularise circularise ver +circularised circularise ver +circularises circularise ver +circularising circularise ver +circularities circularity nom +circularity circularity nom +circularization circularization nom +circularizations circularization nom +circularize circularize ver +circularized circularize ver +circularizes circularize ver +circularizing circularize ver +circulars circular nom +circulate circulate ver +circulated circulate ver +circulates circulate ver +circulating circulate ver +circulation circulation nom +circulations circulation nom +circumambulate circumambulate ver +circumambulated circumambulate ver +circumambulates circumambulate ver +circumambulating circumambulate ver +circumcise circumcise ver +circumcised circumcise ver +circumcises circumcise ver +circumcising circumcise ver +circumcision circumcision nom +circumcisions circumcision nom +circumference circumference nom +circumferences circumference nom +circumflex circumflex nom +circumflexed circumflex ver +circumflexes circumflex nom +circumflexing circumflex ver +circumfuse circumfuse ver +circumfused circumfuse ver +circumfuses circumfuse ver +circumfusing circumfuse ver +circumlocution circumlocution nom +circumlocutions circumlocution nom +circumnavigate circumnavigate ver +circumnavigated circumnavigate ver +circumnavigates circumnavigate ver +circumnavigating circumnavigate ver +circumnavigation circumnavigation nom +circumnavigations circumnavigation nom +circumscribe circumscribe ver +circumscribed circumscribe ver +circumscribes circumscribe ver +circumscribing circumscribe ver +circumscription circumscription nom +circumscriptions circumscription nom +circumspection circumspection nom +circumspections circumspection nom +circumstance circumstance nom +circumstanced circumstance ver +circumstances circumstance nom +circumstancing circumstance ver +circumstantiate circumstantiate ver +circumstantiated circumstantiate ver +circumstantiates circumstantiate ver +circumstantiating circumstantiate ver +circumvallate circumvallate ver +circumvallated circumvallate ver +circumvallates circumvallate ver +circumvallating circumvallate ver +circumvent circumvent ver +circumvented circumvent ver +circumventing circumvent ver +circumvention circumvention nom +circumventions circumvention nom +circumvents circumvent ver +circumvolution circumvolution nom +circumvolutions circumvolution nom +circus circus nom +circuses circus nom +cirque cirque nom +cirques cirque nom +cirrhoses cirrhosis nom +cirrhosis cirrhosis nom +cirrhotic cirrhotic nom +cirrhotics cirrhotic nom +cirri cirrus nom +cirrocumuli cirrocumulus nom +cirrocumulus cirrocumulus nom +cirrostrati cirrostratus nom +cirrostratus cirrostratus nom +cirrus cirrus nom +cisco cisco nom +ciscoes cisco nom +ciscos cisco nom +cistern cistern nom +cisterna cisterna nom +cisternae cisterna nom +cisterns cistern nom +citadel citadel nom +citadels citadel nom +citation citation nom +citations citation nom +cite cite nom +cited cite ver +cites cite nom +cither cither nom +cithers cither nom +cities city nom +citified citify ver +citifies citify ver +citify citify ver +citifying citify ver +citing cite ver +citizen citizen nom +citizenries citizenry nom +citizenry citizenry nom +citizens citizen nom +citizenship citizenship nom +citizenships citizenship nom +citrange citrange nom +citranges citrange nom +citrin citrin nom +citrine citrine nom +citrines citrine nom +citrins citrin nom +citron citron nom +citronella citronella nom +citronellas citronella nom +citrons citron nom +citrulline citrulline nom +citrullines citrulline nom +citrus citrus nom +citruses citrus nom +city city nom +cive cive nom +cives cive nom +civet civet nom +civets civet nom +civilian civilian nom +civilians civilian nom +civilisation civilisation nom +civilisations civilisation nom +civilise civilise ver +civilised civilise ver +civilises civilise ver +civilising civilise ver +civilities civility nom +civility civility nom +civilization civilization nom +civilizations civilization nom +civilize civilize ver +civilized civilize ver +civilizes civilize ver +civilizing civilize ver +clabber clabber nom +clabbered clabber ver +clabbering clabber ver +clabbers clabber nom +clack clack nom +clacked clack ver +clacking clack ver +clacks clack nom +clad clad ver +cladding clad ver +claddings cladding nom +clade clade nom +clades clade nom +cladode cladode nom +cladodes cladode nom +cladogram cladogram nom +cladograms cladogram nom +cladophyll cladophyll nom +cladophylls cladophyll nom +clads clad ver +claim claim nom +claimant claimant nom +claimants claimant nom +claimed claim ver +claimer claimer nom +claimers claimer nom +claiming claim ver +claims claim nom +clairvoyance clairvoyance nom +clairvoyances clairvoyance nom +clairvoyant clairvoyant nom +clairvoyants clairvoyant nom +clam clam nom +clambake clambake nom +clambakes clambake nom +clamber clamber nom +clambered clamber ver +clamberer clamberer nom +clamberers clamberer nom +clambering clamber ver +clambers clamber nom +clammed clam ver +clammier clammy adj +clammiest clammy adj +clamminess clamminess nom +clamminesses clamminess nom +clamming clam ver +clammy clammy adj +clamor clamor nom +clamored clamor ver +clamoring clamor ver +clamors clamor nom +clamour clamour nom +clamoured clamour ver +clamouring clamour ver +clamours clamour nom +clamp clamp nom +clampdown clampdown nom +clampdowns clampdown nom +clamped clamp ver +clamping clamp ver +clamps clamp nom +clams clam nom +clamshell clamshell nom +clamshells clamshell nom +clan clan nom +clang clang nom +clanged clang ver +clanger clanger nom +clangers clanger nom +clanging clang ver +clangor clangor nom +clangored clangor ver +clangoring clangor ver +clangors clangor nom +clangour clangour nom +clangoured clangour ver +clangouring clangour ver +clangours clangour nom +clangs clang nom +clank clank nom +clanked clank ver +clanking clank ver +clanks clank nom +clannishness clannishness nom +clannishnesses clannishness nom +clans clan nom +clansman clansman nom +clansmen clansman nom +clanswoman clanswoman nom +clanswomen clanswoman nom +clap clap nom +clapboard clapboard nom +clapboarded clapboard ver +clapboarding clapboard ver +clapboards clapboard nom +clapped clap ver +clapper clapper nom +clapperboard clapperboard nom +clapperboards clapperboard nom +clapperclaw clapperclaw ver +clapperclawed clapperclaw ver +clapperclawing clapperclaw ver +clapperclaws clapperclaw ver +clappers clapper nom +clapping clap ver +clappings clapping nom +claps clap nom +claptrap claptrap nom +claptraps claptrap nom +claque claque nom +claques claque nom +claret claret nom +clarets claret nom +claries clary nom +clarification clarification nom +clarifications clarification nom +clarified clarify ver +clarifies clarify ver +clarify clarify ver +clarifying clarify ver +clarinet clarinet nom +clarinetist clarinetist nom +clarinetists clarinetist nom +clarinets clarinet nom +clarinettist clarinettist nom +clarinettists clarinettist nom +clarion clarion nom +clarioned clarion ver +clarioning clarion ver +clarions clarion nom +clarities clarity nom +clarity clarity nom +claro claro nom +claroes claro nom +claros claro nom +clary clary nom +clash clash nom +clashed clash ver +clashes clash nom +clashing clash ver +clasp clasp nom +clasped clasp ver +clasping clasp ver +clasps clasp nom +class class nom +classed class ver +classes class nom +classic classic nom +classical classical nom +classicals classical nom +classicism classicism nom +classicisms classicism nom +classicist classicist nom +classicists classicist nom +classicize classicize ver +classicized classicize ver +classicizes classicize ver +classicizing classicize ver +classics classic nom +classier classy adj +classiest classy adj +classification classification nom +classifications classification nom +classified classify ver +classifieds classified nom +classifier classifier nom +classifiers classifier nom +classifies classify ver +classify classify ver +classifying classify ver +classiness classiness nom +classinesses classiness nom +classing class ver +classmate classmate nom +classmates classmate nom +classroom classroom nom +classrooms classroom nom +classwork classwork nom +classworks classwork nom +classy classy adj +clatter clatter nom +clattered clatter ver +clattering clatter ver +clatters clatter nom +claudication claudication nom +claudications claudication nom +clause clause nom +clauses clause nom +claustra claustrum nom +claustrophobia claustrophobia nom +claustrophobias claustrophobia nom +claustrum claustrum nom +claver claver ver +clavered claver ver +clavering claver ver +clavers claver ver +clavi clavus nom +clavichord clavichord nom +clavichords clavichord nom +clavicle clavicle nom +clavicles clavicle nom +clavier clavier nom +claviers clavier nom +clavus clavus nom +claw claw nom +clawback clawback nom +clawbacks clawback nom +clawed claw ver +clawing claw ver +claws claw nom +claxon claxon nom +claxons claxon nom +clay clay nom +clayed clay ver +clayey clayey adj +clayier clayey adj +clayiest clayey adj +claying clay ver +clays clay nom +claystone claystone nom +claystones claystone nom +clayware clayware nom +claywares clayware nom +clean clean adj +cleaned clean ver +cleaner clean adj +cleaners cleaner nom +cleanest clean adj +cleaning clean ver +cleanings cleaning nom +cleanlier cleanly adj +cleanliest cleanly adj +cleanliness cleanliness nom +cleanlinesses cleanliness nom +cleanly cleanly adj +cleanness cleanness nom +cleannesses cleanness nom +cleans clean nom +cleanse cleanse ver +cleansed cleanse ver +cleanser cleanser nom +cleansers cleanser nom +cleanses cleanse ver +cleansing cleanse ver +cleansings cleansing nom +cleanup cleanup nom +cleanups cleanup nom +clear clear adj +clearance clearance nom +clearances clearance nom +cleared clear ver +clearer clear adj +clearest clear adj +clearing clear ver +clearinghouse clearinghouse nom +clearinghouses clearinghouse nom +clearings clearing nom +clearly clearly sw +clearness clearness nom +clearnesses clearness nom +clears clear nom +clearstories clearstory nom +clearstory clearstory nom +clearway clearway nom +clearways clearway nom +cleat cleat nom +cleated cleat ver +cleating cleat ver +cleats cleat nom +cleavage cleavage nom +cleavages cleavage nom +cleave cleave ver +cleaved cleave ver +cleaver cleaver nom +cleavers cleaver nom +cleaves cleave ver +cleaving cleave ver +clef clef nom +clefs clef nom +cleft cleft nom +clefts cleft nom +cleg cleg nom +clegs cleg nom +clematis clematis nom +clematises clematis nom +clemencies clemency nom +clemency clemency nom +clementine clementine nom +clementines clementine nom +clench clench nom +clenched clench ver +clenches clench nom +clenching clench ver +cleome cleome nom +cleomes cleome nom +clepsydra clepsydra nom +clepsydras clepsydra nom +clerestories clerestory nom +clerestory clerestory nom +clergies clergy nom +clergy clergy nom +clergyman clergyman nom +clergymen clergyman nom +clergywoman clergywoman nom +clergywomen clergywoman nom +cleric cleric nom +clerical clerical nom +clericalism clericalism nom +clericalisms clericalism nom +clericals clerical nom +clerics cleric nom +clerid clerid nom +clerids clerid nom +clerihew clerihew nom +clerihews clerihew nom +clerisies clerisy nom +clerisy clerisy nom +clerk clerk nom +clerked clerk ver +clerking clerk ver +clerks clerk nom +clerkship clerkship nom +clerkships clerkship nom +clever clever adj +cleverer clever adj +cleverest clever adj +cleverness cleverness nom +clevernesses cleverness nom +clevis clevis nom +clevises clevis nom +clew clew nom +clewed clew ver +clewing clew ver +clews clew nom +clianthus clianthus nom +clianthuses clianthus nom +cliche cliche nom +cliches cliche nom +click click nom +clicked click ver +clicking click ver +clicks click nom +client client nom +clientage clientage nom +clientages clientage nom +clientele clientele nom +clienteles clientele nom +clients client nom +cliff cliff nom +cliffhanger cliffhanger nom +cliffhangers cliffhanger nom +cliffier cliffy adj +cliffiest cliffy adj +cliffs cliff nom +cliffy cliffy adj +climacteric climacteric nom +climacterics climacteric nom +climate climate nom +climates climate nom +climatologies climatology nom +climatologist climatologist nom +climatologists climatologist nom +climatology climatology nom +climax climax nom +climaxed climax ver +climaxes climax nom +climaxing climax ver +climb climb nom +climbed climb ver +climber climber nom +climbers climber nom +climbing climb ver +climbings climbing nom +climbs climb nom +clime clime nom +climes clime nom +clinch clinch nom +clinched clinch ver +clincher clincher nom +clinchers clincher nom +clinches clinch nom +clinching clinch ver +cling cling nom +clinger clinger nom +clingers clinger nom +clingfish clingfish nom +clingier clingy adj +clingiest clingy adj +clinging cling ver +clings cling nom +clingstone clingstone nom +clingstones clingstone nom +clingy clingy adj +clinic clinic nom +clinician clinician nom +clinicians clinician nom +clinics clinic nom +clink clink nom +clinked clink ver +clinker clinker nom +clinkered clinker ver +clinkering clinker ver +clinkers clinker nom +clinking clink ver +clinks clink nom +clinometer clinometer nom +clinometers clinometer nom +clintonia clintonia nom +clintonias clintonia nom +cliometrician cliometrician nom +cliometricians cliometrician nom +clip clip nom +clipboard clipboard nom +clipboards clipboard nom +clipped clip ver +clipper clipper nom +clippers clipper nom +clipping clip ver +clippings clipping nom +clips clip nom +clique clique nom +cliqued clique ver +cliques clique nom +cliquey cliquey adj +cliquier cliquey adj +cliquiest cliquey adj +cliquing clique ver +cliquishness cliquishness nom +cliquishnesses cliquishness nom +clit clit nom +clitoris clitoris nom +clitorises clitoris nom +clits clit nom +clitter clitter ver +clittered clitter ver +clittering clitter ver +clitters clitter ver +cloaca cloaca nom +cloacae cloaca nom +cloak cloak nom +cloaked cloak ver +cloaking cloak ver +cloakroom cloakroom nom +cloakrooms cloakroom nom +cloaks cloak nom +clobber clobber nom +clobbered clobber ver +clobbering clobber ver +clobbers clobber nom +cloche cloche nom +cloches cloche nom +clock clock nom +clocked clock ver +clocking clock ver +clockmaker clockmaker nom +clockmakers clockmaker nom +clocks clock nom +clockwork clockwork nom +clockworks clockwork nom +clod clod nom +clodhopper clodhopper nom +clodhoppers clodhopper nom +clods clod nom +clofibrate clofibrate nom +clofibrates clofibrate nom +clog clog nom +clogged clog ver +cloggier cloggy adj +cloggiest cloggy adj +clogging clog ver +cloggy cloggy adj +clogs clog nom +cloisonne cloisonne nom +cloisonnes cloisonne nom +cloister cloister nom +cloistered cloister ver +cloistering cloister ver +cloisters cloister nom +clomiphene clomiphene nom +clomiphenes clomiphene nom +clomp clomp ver +clomped clomp ver +clomping clomp ver +clomps clomp ver +clon clon nom +clone clone nom +cloned clone ver +clones clone nom +clonidine clonidine nom +clonidines clonidine nom +cloning clone ver +clonk clonk nom +clonked clonk ver +clonking clonk ver +clonks clonk nom +clons clon nom +clonus clonus nom +clonuses clonus nom +clop clop nom +clopped clop ver +clopping clop ver +clops clop nom +close close adj +closed close ver +closedown closedown nom +closedowns closedown nom +closeness closeness nom +closenesses closeness nom +closeout closeout nom +closeouts closeout nom +closer close adj +closes close nom +closest close adj +closet closet nom +closeted closet ver +closeting closet ver +closets closet nom +closeup closeup nom +closeups closeup nom +closing close ver +closings closing nom +clostridium clostridium nom +clostridiums clostridium nom +closure closure nom +closured closure ver +closures closure nom +closuring closure ver +clot clot nom +clotbur clotbur nom +clotburs clotbur nom +cloth cloth nom +clothe clothe ver +clothed clothe ver +clothes clothe ver +clotheshorse clotheshorse nom +clotheshorses clotheshorse nom +clothesline clothesline nom +clotheslines clothesline nom +clothespin clothespin nom +clothespins clothespin nom +clothespress clothespress nom +clothespresses clothespress nom +clothier clothier nom +clothiers clothier nom +clothing clothe ver +clothings clothing nom +cloths cloth nom +clots clot nom +clotted clot ver +clotting clot ver +clottings clotting nom +cloture cloture nom +clotured cloture ver +clotures cloture nom +cloturing cloture ver +cloud cloud nom +cloudberries cloudberry nom +cloudberry cloudberry nom +cloudburst cloudburst nom +cloudbursts cloudburst nom +clouded cloud ver +cloudier cloudy adj +cloudiest cloudy adj +cloudiness cloudiness nom +cloudinesses cloudiness nom +clouding cloud ver +cloudings clouding nom +cloudlessness cloudlessness nom +cloudlessnesses cloudlessness nom +clouds cloud nom +cloudy cloudy adj +clout clout nom +clouted clout ver +clouting clout ver +clouts clout nom +clove clove nom +clover clover nom +cloverleaf cloverleaf nom +cloverleafs cloverleaf nom +cloverleaves cloverleaf nom +clovers clover nom +cloves clove nom +clowder clowder nom +clowders clowder nom +clown clown nom +clowned clown ver +clowning clown ver +clownings clowning nom +clownishness clownishness nom +clownishnesses clownishness nom +clowns clown nom +cloy cloy ver +cloyed cloy ver +cloying cloy ver +cloys cloy ver +club club nom +clubbed club ver +clubbier clubby adj +clubbiest clubby adj +clubbing club ver +clubbings clubbing nom +clubby clubby adj +clubfeet clubfoot nom +clubfoot clubfoot nom +clubhouse clubhouse nom +clubhouses clubhouse nom +clubroom clubroom nom +clubrooms clubroom nom +clubs club nom +cluck cluck nom +clucked cluck ver +clucking cluck ver +clucks cluck nom +clue clue nom +clued clue ver +clues clue nom +cluing clue ver +clumber clumber nom +clumbers clumber nom +clump clump nom +clumped clump ver +clumpier clumpy adj +clumpiest clumpy adj +clumping clump ver +clumps clump nom +clumpy clumpy adj +clumsier clumsy adj +clumsiest clumsy adj +clumsiness clumsiness nom +clumsinesses clumsiness nom +clumsy clumsy adj +clunch clunch nom +clunches clunch nom +clung cling ver +clunk clunk nom +clunked clunk ver +clunker clunker nom +clunkers clunker nom +clunkier clunky adj +clunkiest clunky adj +clunking clunk ver +clunks clunk nom +clunky clunky adj +clupeid clupeid nom +clupeids clupeid nom +clusia clusia nom +clusias clusia nom +cluster cluster nom +clustered cluster ver +clustering cluster ver +clusters cluster nom +clutch clutch nom +clutched clutch ver +clutches clutch nom +clutching clutch ver +clutter clutter nom +cluttered clutter ver +cluttering clutter ver +clutters clutter nom +clypeus clypeus nom +clypeuses clypeus nom +clyster clyster nom +clysters clyster nom +cnidarian cnidarian nom +cnidarians cnidarian nom +co co sw +coach coach nom +coachbuilder coachbuilder nom +coachbuilders coachbuilder nom +coached coach ver +coaches coach nom +coaching coach ver +coachings coaching nom +coachman coachman nom +coachmen coachman nom +coachwhip coachwhip nom +coachwhips coachwhip nom +coact coact ver +coacted coact ver +coacting coact ver +coaction coaction nom +coactions coaction nom +coacts coact ver +coadjutor coadjutor nom +coadjutors coadjutor nom +coagulant coagulant nom +coagulants coagulant nom +coagulase coagulase nom +coagulases coagulase nom +coagulate coagulate ver +coagulated coagulate ver +coagulates coagulate ver +coagulating coagulate ver +coagulation coagulation nom +coagulations coagulation nom +coagulator coagulator nom +coagulators coagulator nom +coagulum coagulum nom +coagulums coagulum nom +coal coal nom +coalbin coalbin nom +coalbins coalbin nom +coaled coal ver +coalesce coalesce ver +coalesced coalesce ver +coalescence coalescence nom +coalescences coalescence nom +coalesces coalesce ver +coalescing coalesce ver +coalface coalface nom +coalfaces coalface nom +coalfield coalfield nom +coalfields coalfield nom +coalhole coalhole nom +coalholes coalhole nom +coaling coal ver +coalition coalition nom +coalitionist coalitionist nom +coalitionists coalitionist nom +coalitions coalition nom +coalman coalman nom +coalmen coalman nom +coalmine coalmine nom +coalmines coalmine nom +coalpit coalpit nom +coalpits coalpit nom +coals coal nom +coaming coaming nom +coamings coaming nom +coapt coapt ver +coapted coapt ver +coapting coapt ver +coapts coapt ver +coarctation coarctation nom +coarctations coarctation nom +coarse coarse adj +coarsen coarsen ver +coarsened coarsen ver +coarseness coarseness nom +coarsenesses coarseness nom +coarsening coarsen ver +coarsens coarsen ver +coarser coarse adj +coarsest coarse adj +coast coast nom +coasted coast ver +coaster coaster nom +coasters coaster nom +coastguard coastguard nom +coastguards coastguard nom +coastguardsman coastguardsman nom +coastguardsmen coastguardsman nom +coasting coast ver +coastland coastland nom +coastlands coastland nom +coastline coastline nom +coastlines coastline nom +coasts coast nom +coat coat nom +coatdress coatdress nom +coatdresses coatdress nom +coated coat ver +coatee coatee nom +coatees coatee nom +coati coati nom +coating coat ver +coatings coating nom +coatis coati nom +coatrack coatrack nom +coatracks coatrack nom +coatroom coatroom nom +coatrooms coatroom nom +coats coat nom +coattail coattail nom +coattails coattail nom +coauthor coauthor nom +coauthored coauthor ver +coauthoring coauthor ver +coauthors coauthor nom +coax coax nom +coaxed coax ver +coaxer coaxer nom +coaxers coaxer nom +coaxes coax nom +coaxing coax ver +cob cob nom +cobalamin cobalamin nom +cobalamins cobalamin nom +cobalt cobalt nom +cobaltite cobaltite nom +cobaltites cobaltite nom +cobalts cobalt nom +cobber cobber nom +cobbers cobber nom +cobble cobble nom +cobbled cobble ver +cobbler cobbler nom +cobblers cobbler nom +cobbles cobble nom +cobblestone cobblestone nom +cobblestones cobblestone nom +cobbling cobble ver +cobia cobia nom +cobias cobia nom +cobnut cobnut nom +cobnuts cobnut nom +cobra cobra nom +cobras cobra nom +cobs cob nom +cobweb cobweb nom +cobwebbed cobweb ver +cobwebbier cobwebby adj +cobwebbiest cobwebby adj +cobwebbing cobweb ver +cobwebby cobwebby adj +cobwebs cobweb nom +coca coca nom +cocain cocain nom +cocaine cocaine nom +cocaines cocaine nom +cocainise cocainise ver +cocainised cocainise ver +cocainises cocainise ver +cocainising cocainise ver +cocainize cocainize ver +cocainized cocainize ver +cocainizes cocainize ver +cocainizing cocainize ver +cocains cocain nom +cocas coca nom +cocci coccus nom +coccidia coccidium nom +coccidioidomycoses coccidioidomycosis nom +coccidioidomycosis coccidioidomycosis nom +coccidioses coccidiosis nom +coccidiosis coccidiosis nom +coccidium coccidium nom +coccis cocci nom +coccus coccus nom +coccyges coccyx nom +coccyx coccyx nom +cochin cochin nom +cochineal cochineal nom +cochineals cochineal nom +cochins cochin nom +cochlea cochlea nom +cochleae cochlea nom +cock cock nom +cockade cockade nom +cockades cockade nom +cockateel cockateel nom +cockateels cockateel nom +cockatiel cockatiel nom +cockatiels cockatiel nom +cockatoo cockatoo nom +cockatoos cockatoo nom +cockatrice cockatrice nom +cockatrices cockatrice nom +cockchafer cockchafer nom +cockchafers cockchafer nom +cockcrow cockcrow nom +cockcrows cockcrow nom +cocked cock ver +cocker cocker nom +cockered cocker ver +cockerel cockerel nom +cockerels cockerel nom +cockering cocker ver +cockers cocker nom +cockfight cockfight nom +cockfighting cockfighting nom +cockfightings cockfighting nom +cockfights cockfight nom +cockhorse cockhorse nom +cockhorses cockhorse nom +cockier cocky adj +cockies cocky nom +cockiest cocky adj +cockiness cockiness nom +cockinesses cockiness nom +cocking cock ver +cockle cockle nom +cocklebur cocklebur nom +cockleburs cocklebur nom +cockled cockle ver +cockles cockle nom +cockleshell cockleshell nom +cockleshells cockleshell nom +cockling cockle ver +cockloft cockloft nom +cocklofts cockloft nom +cockney cockney nom +cockneys cockney nom +cockpit cockpit nom +cockpits cockpit nom +cockroach cockroach nom +cockroaches cockroach nom +cocks cock nom +cockscomb cockscomb nom +cockscombs cockscomb nom +cocksfoot cocksfoot nom +cocksfoots cocksfoot nom +cockspur cockspur nom +cockspurs cockspur nom +cocksucker cocksucker nom +cocksuckers cocksucker nom +cocksureness cocksureness nom +cocksurenesses cocksureness nom +cocktail cocktail nom +cocktailed cocktail ver +cocktailing cocktail ver +cocktails cocktail nom +cockup cockup nom +cockups cockup nom +cocky cocky adj +coco coco nom +cocoa cocoa nom +cocoanut cocoanut nom +cocoanuts cocoanut nom +cocoas cocoa nom +cocobolo cocobolo nom +cocobolos cocobolo nom +coconspirator coconspirator nom +coconspirators coconspirator nom +coconut coconut nom +coconuts coconut nom +cocoon cocoon nom +cocooned cocoon ver +cocooning cocoon ver +cocoons cocoon nom +cocos coco nom +cocotte cocotte nom +cocottes cocotte nom +cocoyam cocoyam nom +cocoyams cocoyam nom +cod cod nom +coda coda nom +codas coda nom +codded cod ver +codding cod ver +coddle coddle ver +coddled coddle ver +coddles coddle ver +coddling coddle ver +code code nom +coded code ver +codefendant codefendant nom +codefendants codefendant nom +codeine codeine nom +codeines codeine nom +codependencies codependency nom +codependency codependency nom +codependent codependent nom +codependents codependent nom +coder coder nom +coders coder nom +codes code nom +codex codex nom +codfish codfish nom +codger codger nom +codgers codger nom +codices codex nom +codicil codicil nom +codicils codicil nom +codification codification nom +codifications codification nom +codified codify ver +codifier codifier nom +codifiers codifier nom +codifies codify ver +codify codify ver +codifying codify ver +coding code ver +codling codling nom +codon codon nom +codons codon nom +codpiece codpiece nom +codpieces codpiece nom +cods cod ver +coed coed nom +coeds coed nom +coeducation coeducation nom +coeducations coeducation nom +coefficient coefficient nom +coefficients coefficient nom +coelacanth coelacanth nom +coelacanths coelacanth nom +coelentera coelenteron nom +coelenterate coelenterate nom +coelenterates coelenterate nom +coelenteron coelenteron nom +coelom coelom nom +coeloms coelom nom +coelostat coelostat nom +coelostats coelostat nom +coenobite coenobite nom +coenobites coenobite nom +coenzyme coenzyme nom +coenzymes coenzyme nom +coequal coequal nom +coequals coequal nom +coerce coerce ver +coerced coerce ver +coercer coercer nom +coercers coercer nom +coerces coerce ver +coercing coerce ver +coercion coercion nom +coercions coercion nom +coeval coeval nom +coevals coeval nom +coexist coexist ver +coexisted coexist ver +coexistence coexistence nom +coexistences coexistence nom +coexisting coexist ver +coexists coexist ver +cofactor cofactor nom +cofactors cofactor nom +coffee coffee nom +coffeecake coffeecake nom +coffeecakes coffeecake nom +coffeehouse coffeehouse nom +coffeehoused coffeehouse ver +coffeehouses coffeehouse nom +coffeehousing coffeehouse ver +coffeemaker coffeemaker nom +coffeemakers coffeemaker nom +coffeepot coffeepot nom +coffeepots coffeepot nom +coffees coffee nom +coffer coffer nom +cofferdam cofferdam nom +cofferdams cofferdam nom +coffered coffer ver +coffering coffer ver +coffers coffer nom +coffin coffin nom +coffined coffin ver +coffining coffin ver +coffins coffin nom +cofounder cofounder nom +cofounders cofounder nom +cog cog nom +cogencies cogency nom +cogency cogency nom +cogged cog ver +cogging cog ver +coggle coggle ver +coggled coggle ver +coggles coggle ver +coggling coggle ver +cogitate cogitate ver +cogitated cogitate ver +cogitates cogitate ver +cogitating cogitate ver +cogitation cogitation nom +cogitations cogitation nom +cogitator cogitator nom +cogitators cogitator nom +cognac cognac nom +cognacs cognac nom +cognate cognate nom +cognates cognate nom +cognation cognation nom +cognations cognation nom +cognition cognition nom +cognitions cognition nom +cognizance cognizance nom +cognizances cognizance nom +cognize cognize ver +cognized cognize ver +cognizes cognize ver +cognizing cognize ver +cognomen cognomen nom +cognomens cognomen nom +cognoscente cognoscente nom +cognoscenti cognoscente nom +cogs cog nom +cogwheel cogwheel nom +cogwheels cogwheel nom +cohabit cohabit ver +cohabitant cohabitant nom +cohabitants cohabitant nom +cohabitation cohabitation nom +cohabitations cohabitation nom +cohabited cohabit ver +cohabiting cohabit ver +cohabits cohabit ver +coheir coheir nom +coheirs coheir nom +cohere cohere ver +cohered cohere ver +coherence coherence nom +coherences coherence nom +coherencies coherency nom +coherency coherency nom +coheres cohere ver +cohering cohere ver +cohesion cohesion nom +cohesions cohesion nom +cohesiveness cohesiveness nom +cohesivenesses cohesiveness nom +coho coho nom +cohoe cohoe nom +cohoes cohoe nom +cohort cohort nom +cohorts cohort nom +cohosh cohosh nom +cohoshes cohosh nom +cohune cohune nom +cohunes cohune nom +coif coif nom +coiffe coiffe ver +coiffed coif ver +coiffes coiffe ver +coiffeur coiffeur nom +coiffeurs coiffeur nom +coiffeuse coiffeuse nom +coiffeuses coiffeuse nom +coiffing coif ver +coiffure coiffure nom +coiffured coiffure ver +coiffures coiffure nom +coiffuring coiffure ver +coifs coif nom +coign coign nom +coigne coigne nom +coignes coigne nom +coigns coign nom +coil coil nom +coiled coil ver +coiling coil ver +coils coil nom +coin coin nom +coinage coinage nom +coinages coinage nom +coincide coincide ver +coincided coincide ver +coincidence coincidence nom +coincidences coincidence nom +coincides coincide ver +coinciding coincide ver +coined coin ver +coiner coiner nom +coiners coiner nom +coining coin ver +coins coin nom +coinsurance coinsurance nom +coinsurances coinsurance nom +coinsure coinsure ver +coinsured coinsure ver +coinsures coinsure ver +coinsuring coinsure ver +coir coir nom +coirs coir nom +coition coition nom +coitions coition nom +coitus coitus nom +coituses coitus nom +coke coke nom +coked coke ver +cokes coke nom +coking coke ver +col col nom +cola cola nom +colander colander nom +colanders colander nom +colas cola nom +cold cold adj +coldcock coldcock ver +coldcocked coldcock ver +coldcocking coldcock ver +coldcocks coldcock ver +colder cold adj +coldest cold adj +coldheartedness coldheartedness nom +coldheartednesses coldheartedness nom +coldness coldness nom +coldnesses coldness nom +colds cold nom +cole cole nom +coles cole nom +coleslaw coleslaw nom +coleslaws coleslaw nom +coleus coleus nom +coleuses coleus nom +colewort colewort nom +coleworts colewort nom +colic colic nom +colicroot colicroot nom +colicroots colicroot nom +colics colic nom +coliseum coliseum nom +coliseums coliseum nom +colitis colitis nom +colitises colitis nom +collaborate collaborate ver +collaborated collaborate ver +collaborates collaborate ver +collaborating collaborate ver +collaboration collaboration nom +collaborationist collaborationist nom +collaborationists collaborationist nom +collaborations collaboration nom +collaborator collaborator nom +collaborators collaborator nom +collage collage nom +collaged collage ver +collagen collagen nom +collagens collagen nom +collages collage nom +collaging collage ver +collapse collapse nom +collapsed collapse ver +collapses collapse nom +collapsing collapse ver +collar collar nom +collarbone collarbone nom +collarbones collarbone nom +collard collard nom +collards collard nom +collared collar ver +collaring collar ver +collars collar nom +collate collate ver +collated collate ver +collateral collateral nom +collaterals collateral nom +collates collate ver +collating collate ver +collation collation nom +collations collation nom +collator collator nom +collators collator nom +colleague colleague nom +colleagues colleague nom +collect collect nom +collectable collectable nom +collectables collectable nom +collected collect ver +collectible collectible nom +collectibles collectible nom +collecting collect ver +collectings collecting nom +collection collection nom +collections collection nom +collective collective nom +collectives collective nom +collectivise collectivise ver +collectivised collectivise ver +collectivises collectivise ver +collectivising collectivise ver +collectivism collectivism nom +collectivisms collectivism nom +collectivist collectivist nom +collectivists collectivist nom +collectivization collectivization nom +collectivizations collectivization nom +collectivize collectivize ver +collectivized collectivize ver +collectivizes collectivize ver +collectivizing collectivize ver +collector collector nom +collectors collector nom +collects collect nom +colleen colleen nom +colleens colleen nom +college college nom +colleges college nom +collegialities collegiality nom +collegiality collegiality nom +collegian collegian nom +collegians collegian nom +collegiate collegiate nom +collegiates collegiate nom +collembolan collembolan nom +collembolans collembolan nom +collet collet nom +collets collet nom +collide collide ver +collided collide ver +collider collider nom +colliders collider nom +collides collide ver +colliding collide ver +collie collie nom +collied colly ver +collier collier nom +collieries colliery nom +colliers collier nom +colliery colliery nom +collies collie nom +colligate colligate ver +colligated colligate ver +colligates colligate ver +colligating colligate ver +collimate collimate ver +collimated collimate ver +collimates collimate ver +collimating collimate ver +collimator collimator nom +collimators collimator nom +collins collins nom +collinses collins nom +collision collision nom +collisions collision nom +collocate collocate ver +collocated collocate ver +collocates collocate ver +collocating collocate ver +collocation collocation nom +collocations collocation nom +collogue collogue ver +collogued collogue ver +collogues collogue ver +colloguing collogue ver +colloid colloid nom +colloids colloid nom +colloquialism colloquialism nom +colloquialisms colloquialism nom +colloquies colloquy nom +colloquium colloquium nom +colloquiums colloquium nom +colloquy colloquy nom +collotype collotype nom +collotypes collotype nom +collude collude ver +colluded collude ver +colludes collude ver +colluding collude ver +collusion collusion nom +collusions collusion nom +colly colly ver +collying colly ver +collyrium collyrium nom +collyriums collyrium nom +colobus colobus nom +colobuses colobus nom +cologne cologne nom +colognes cologne nom +colon colon nom +colonel colonel nom +colonelcies colonelcy nom +colonelcy colonelcy nom +colonels colonel nom +colonial colonial nom +colonialism colonialism nom +colonialisms colonialism nom +colonialist colonialist nom +colonialists colonialist nom +colonials colonial nom +colonic colonic nom +colonics colonic nom +colonies colony nom +colonisation colonisation nom +colonisations colonisation nom +colonist colonist nom +colonists colonist nom +colonization colonization nom +colonizations colonization nom +colonize colonize ver +colonized colonize ver +colonizer colonizer nom +colonizers colonizer nom +colonizes colonize ver +colonizing colonize ver +colonnade colonnade nom +colonnades colonnade nom +colons colon nom +colony colony nom +colophon colophon nom +colophonies colophony nom +colophons colophon nom +colophony colophony nom +color color nom +colorant colorant nom +colorants colorant nom +coloration coloration nom +colorations coloration nom +coloratura coloratura nom +coloraturas coloratura nom +colorblindness colorblindness nom +colorblindnesses colorblindness nom +colorcast colorcast ver +colorcasting colorcast ver +colorcasts colorcast ver +colored color ver +coloreds colored nom +colorfastness colorfastness nom +colorfastnesses colorfastness nom +colorfulness colorfulness nom +colorfulnesses colorfulness nom +colorimeter colorimeter nom +colorimeters colorimeter nom +colorimetries colorimetry nom +colorimetry colorimetry nom +coloring color ver +colorings coloring nom +colorist colorist nom +colorists colorist nom +colorization colorization nom +colorizations colorization nom +colorize colorize ver +colorized colorize ver +colorizes colorize ver +colorizing colorize ver +colorlessness colorlessness nom +colorlessnesses colorlessness nom +colors color nom +colossi colossus nom +colossus colossus nom +colostomies colostomy nom +colostomy colostomy nom +colostrum colostrum nom +colostrums colostrum nom +colour colour nom +coloured colour ver +colouring colour ver +colourings colouring nom +colours colour nom +colpitis colpitis nom +colpitises colpitis nom +cols col nom +colt colt nom +colter colter nom +colters colter nom +colts colt nom +coltsfoot coltsfoot nom +coltsfoots coltsfoot nom +colubrid colubrid nom +colubrids colubrid nom +colugo colugo nom +colugos colugo nom +columbaria columbarium nom +columbarium columbarium nom +columbine columbine nom +columbines columbine nom +columbite columbite nom +columbites columbite nom +columbium columbium nom +columbiums columbium nom +column column nom +columnea columnea nom +columneas columnea nom +columniation columniation nom +columniations columniation nom +columnist columnist nom +columnists columnist nom +columns column nom +colza colza nom +colzas colza nom +com com sw +coma coma nom +comae coma nom +comaker comaker nom +comakers comaker nom +comas coma nom +comatulid comatulid nom +comatulids comatulid nom +comb comb nom +combat combat nom +combatant combatant nom +combatants combatant nom +combated combat ver +combating combat ver +combativeness combativeness nom +combativenesses combativeness nom +combats combat nom +combed comb ver +comber comber nom +combers comber nom +combination combination nom +combinations combination nom +combine combine nom +combined combine ver +combiner combiner nom +combiners combiner nom +combines combine nom +combing comb ver +combings combing nom +combining combine ver +combo combo nom +combos combo nom +combretum combretum nom +combretums combretum nom +combs comb nom +combust combust ver +combusted combust ver +combustibilities combustibility nom +combustibility combustibility nom +combustible combustible nom +combustibles combustible nom +combusting combust ver +combustion combustion nom +combustions combustion nom +combusts combust ver +come come sw +comeback comeback nom +comebacks comeback nom +comedian comedian nom +comedians comedian nom +comedienne comedienne nom +comediennes comedienne nom +comedies comedy nom +comedo comedo nom +comedos comedo nom +comedown comedown nom +comedowns comedown nom +comedy comedy nom +comelier comely adj +comeliest comely adj +comeliness comeliness nom +comelinesses comeliness nom +comely comely adj +comer comer nom +comers comer nom +comes comes sw +comestible comestible nom +comestibles comestible nom +comet comet nom +comets comet nom +comeuppance comeuppance nom +comeuppances comeuppance nom +comfier comfy adj +comfiest comfy adj +comfit comfit nom +comfits comfit nom +comfort comfort nom +comfortableness comfortableness nom +comfortablenesses comfortableness nom +comforted comfort ver +comforter comforter nom +comforters comforter nom +comforting comfort ver +comforts comfort nom +comfrey comfrey nom +comfreys comfrey nom +comfy comfy adj +comic comic nom +comicalities comicality nom +comicality comicality nom +comics comic nom +coming come ver +comings coming nom +comities comity nom +comity comity nom +comma comma nom +command command nom +commandant commandant nom +commandants commandant nom +commanded command ver +commandeer commandeer ver +commandeered commandeer ver +commandeering commandeer ver +commandeers commandeer ver +commander commander nom +commanders commander nom +commandership commandership nom +commanderships commandership nom +commanding command ver +commandment commandment nom +commandments commandment nom +commando commando nom +commandos commando nom +commands command nom +commas comma nom +commemorate commemorate ver +commemorated commemorate ver +commemorates commemorate ver +commemorating commemorate ver +commemoration commemoration nom +commemorations commemoration nom +commemorative commemorative nom +commemoratives commemorative nom +commemorator commemorator nom +commemorators commemorator nom +commence commence ver +commenced commence ver +commencement commencement nom +commencements commencement nom +commences commence ver +commencing commence ver +commend commend ver +commendation commendation nom +commendations commendation nom +commended commend ver +commending commend ver +commends commend ver +commensal commensal nom +commensalism commensalism nom +commensalisms commensalism nom +commensals commensal nom +commensurateness commensurateness nom +commensuratenesses commensurateness nom +comment comment nom +commentaries commentary nom +commentary commentary nom +commentate commentate ver +commentated commentate ver +commentates commentate ver +commentating commentate ver +commentator commentator nom +commentators commentator nom +commented comment ver +commenting comment ver +comments comment nom +commerce commerce nom +commerces commerce nom +commercial commercial nom +commercialism commercialism nom +commercialisms commercialism nom +commercialization commercialization nom +commercializations commercialization nom +commercialize commercialize ver +commercialized commercialize ver +commercializes commercialize ver +commercializing commercialize ver +commercials commercial nom +commie commie nom +commies commie nom +commination commination nom +comminations commination nom +commingle commingle ver +commingled commingle ver +commingles commingle ver +commingling commingle ver +comminute comminute ver +comminuted comminute ver +comminutes comminute ver +comminuting comminute ver +commiserate commiserate ver +commiserated commiserate ver +commiserates commiserate ver +commiserating commiserate ver +commiseration commiseration nom +commiserations commiseration nom +commissar commissar nom +commissariat commissariat nom +commissariats commissariat nom +commissaries commissary nom +commissars commissar nom +commissary commissary nom +commission commission nom +commissionaire commissionaire nom +commissionaires commissionaire nom +commissioned commission ver +commissioner commissioner nom +commissioners commissioner nom +commissioning commission ver +commissions commission nom +commit commit ver +commitment commitment nom +commitments commitment nom +commits commit ver +committal committal nom +committals committal nom +committed commit ver +committee committee nom +committeeman committeeman nom +committeemen committeeman nom +committees committee nom +committeewoman committeewoman nom +committeewomen committeewoman nom +committing commit ver +commix commix ver +commixed commix ver +commixes commix ver +commixing commix ver +commixture commixture nom +commixtures commixture nom +commode commode nom +commodes commode nom +commodiousness commodiousness nom +commodiousnesses commodiousness nom +commodities commodity nom +commodity commodity nom +commodore commodore nom +commodores commodore nom +common common adj +commonage commonage nom +commonages commonage nom +commonalities commonality nom +commonality commonality nom +commonalties commonalty nom +commonalty commonalty nom +commoner common adj +commoners commoner nom +commonest common adj +commonness commonness nom +commonnesses commonness nom +commonplace commonplace nom +commonplaceness commonplaceness nom +commonplacenesses commonplaceness nom +commonplaces commonplace nom +commons common nom +commonweal commonweal nom +commonweals commonweal nom +commonwealth commonwealth nom +commonwealths commonwealth nom +commotion commotion nom +commotions commotion nom +commove commove ver +commoved commove ver +commoves commove ver +commoving commove ver +communalise communalise ver +communalised communalise ver +communalises communalise ver +communalising communalise ver +communalize communalize ver +communalized communalize ver +communalizes communalize ver +communalizing communalize ver +commune commune nom +communed commune ver +communes commune nom +communicabilities communicability nom +communicability communicability nom +communicant communicant nom +communicants communicant nom +communicate communicate ver +communicated communicate ver +communicates communicate ver +communicating communicate ver +communication communication nom +communications communication nom +communicativeness communicativeness nom +communicativenesses communicativeness nom +communicator communicator nom +communicators communicator nom +communing commune ver +communion communion nom +communions communion nom +communique communique nom +communiques communique nom +communism communism nom +communisms communism nom +communist communist nom +communists communist nom +communities community nom +community community nom +communization communization nom +communizations communization nom +communize communize ver +communized communize ver +communizes communize ver +communizing communize ver +commutabilities commutability nom +commutability commutability nom +commutate commutate ver +commutated commutate ver +commutates commutate ver +commutating commutate ver +commutation commutation nom +commutations commutation nom +commutator commutator nom +commutators commutator nom +commute commute ver +commuted commute ver +commuter commuter nom +commuters commuter nom +commutes commute ver +commuting commute ver +comp comp nom +compact compact adj +compacted compact ver +compacter compact adj +compactest compact adj +compacting compact ver +compaction compaction nom +compactions compaction nom +compactness compactness nom +compactnesses compactness nom +compactor compactor nom +compactors compactor nom +compacts compact nom +companied company ver +companies company nom +companion companion nom +companionabilities companionability nom +companionability companionability nom +companionableness companionableness nom +companionablenesses companionableness nom +companioned companion ver +companioning companion ver +companions companion nom +companionship companionship nom +companionships companionship nom +companionway companionway nom +companionways companionway nom +company company nom +companying company ver +comparabilities comparability nom +comparability comparability nom +comparative comparative nom +comparatives comparative nom +compare compare nom +compared compare ver +compares compare nom +comparing compare ver +comparison comparison nom +comparisons comparison nom +compart compart ver +comparted compart ver +comparting compart ver +compartment compartment nom +compartmentalise compartmentalise ver +compartmentalised compartmentalise ver +compartmentalises compartmentalise ver +compartmentalising compartmentalise ver +compartmentalization compartmentalization nom +compartmentalizations compartmentalization nom +compartmentalize compartmentalize ver +compartmentalized compartmentalize ver +compartmentalizes compartmentalize ver +compartmentalizing compartmentalize ver +compartmented compartment ver +compartmenting compartment ver +compartments compartment nom +comparts compart ver +compass compass nom +compassed compass ver +compasses compass nom +compassing compass ver +compassion compassion nom +compassionate compassionate ver +compassionated compassionate ver +compassionateness compassionateness nom +compassionatenesses compassionateness nom +compassionates compassionate ver +compassionating compassionate ver +compassioned compassion ver +compassioning compassion ver +compassions compassion nom +compatibilities compatibility nom +compatibility compatibility nom +compatible compatible nom +compatibles compatible nom +compatriot compatriot nom +compatriots compatriot nom +comped comp ver +compeer compeer nom +compeered compeer ver +compeering compeer ver +compeers compeer nom +compel compel ver +compelled compel ver +compelling compel ver +compels compel ver +compendium compendium nom +compendiums compendium nom +compensate compensate ver +compensated compensate ver +compensates compensate ver +compensating compensate ver +compensation compensation nom +compensations compensation nom +compere compere nom +compered compere ver +comperes compere nom +compering compere ver +compete compete ver +competed compete ver +competence competence nom +competences competence nom +competencies competency nom +competency competency nom +competes compete ver +competing compete ver +competition competition nom +competitions competition nom +competitiveness competitiveness nom +competitivenesses competitiveness nom +competitor competitor nom +competitors competitor nom +compilation compilation nom +compilations compilation nom +compile compile ver +compiled compile ver +compiler compiler nom +compilers compiler nom +compiles compile ver +compiling compile ver +comping comp ver +complacence complacence nom +complacences complacence nom +complacencies complacency nom +complacency complacency nom +complain complain ver +complainant complainant nom +complainants complainant nom +complained complain ver +complainer complainer nom +complainers complainer nom +complaining complain ver +complains complain ver +complaint complaint nom +complaints complaint nom +complaisance complaisance nom +complaisances complaisance nom +complement complement nom +complementaries complementary nom +complementarities complementarity nom +complementarity complementarity nom +complementary complementary nom +complementation complementation nom +complementations complementation nom +complemented complement ver +complementing complement ver +complements complement nom +complete complete adj +completed complete ver +completeness completeness nom +completenesses completeness nom +completer complete adj +completes complete ver +completest complete adj +completing complete ver +completion completion nom +completions completion nom +complex complex adj +complexed complex ver +complexer complex adj +complexes complex nom +complexest complex adj +complexified complexify ver +complexifies complexify ver +complexify complexify ver +complexifying complexify ver +complexing complex ver +complexion complexion nom +complexions complexion nom +complexities complexity nom +complexity complexity nom +complexness complexness nom +complexnesses complexness nom +compliance compliance nom +compliances compliance nom +compliancies compliancy nom +compliancy compliancy nom +complicate complicate ver +complicated complicate ver +complicatedness complicatedness nom +complicatednesses complicatedness nom +complicates complicate ver +complicating complicate ver +complication complication nom +complications complication nom +complicities complicity nom +complicity complicity nom +complied comply ver +complies comply ver +compliment compliment nom +complimented compliment ver +complimenting compliment ver +compliments compliment nom +complin complin nom +compline compline nom +complines compline nom +complins complin nom +complot complot ver +complots complot ver +complotted complot ver +complotting complot ver +comply comply ver +complying comply ver +component component nom +components component nom +comport comport ver +comported comport ver +comporting comport ver +comportment comportment nom +comportments comportment nom +comports comport ver +compose compose ver +composed compose ver +composer composer nom +composers composer nom +composes compose ver +composing compose ver +composite composite nom +composited composite ver +composites composite nom +compositing composite ver +composition composition nom +compositions composition nom +compositor compositor nom +compositors compositor nom +compost compost nom +composted compost ver +composting compost ver +composts compost nom +composure composure nom +composures composure nom +compote compote nom +compotes compote nom +compound compound nom +compounded compound ver +compounding compound ver +compounds compound nom +comprehend comprehend ver +comprehended comprehend ver +comprehending comprehend ver +comprehends comprehend ver +comprehensibilities comprehensibility nom +comprehensibility comprehensibility nom +comprehension comprehension nom +comprehensions comprehension nom +comprehensive comprehensive nom +comprehensiveness comprehensiveness nom +comprehensivenesses comprehensiveness nom +comprehensives comprehensive nom +compress compress nom +compressed compress ver +compresses compress nom +compressibilities compressibility nom +compressibility compressibility nom +compressing compress ver +compression compression nom +compressions compression nom +compressor compressor nom +compressors compressor nom +comprise comprise ver +comprised comprise ver +comprises comprise ver +comprising comprise ver +compromise compromise nom +compromised compromise ver +compromises compromise nom +compromising compromise ver +comps comp nom +comptroller comptroller nom +comptrollers comptroller nom +comptrollership comptrollership nom +comptrollerships comptrollership nom +compulsion compulsion nom +compulsions compulsion nom +compulsive compulsive nom +compulsiveness compulsiveness nom +compulsivenesses compulsiveness nom +compulsives compulsive nom +compulsivities compulsivity nom +compulsivity compulsivity nom +compulsories compulsory nom +compulsory compulsory nom +compunction compunction nom +compunctions compunction nom +computation computation nom +computations computation nom +compute compute nom +computed compute ver +computer computer nom +computerization computerization nom +computerizations computerization nom +computerize computerize ver +computerized computerize ver +computerizes computerize ver +computerizing computerize ver +computers computer nom +computes compute nom +computing compute ver +computings computing nom +comrade comrade nom +comradeliness comradeliness nom +comradelinesses comradeliness nom +comraderies comradery nom +comradery comradery nom +comrades comrade nom +comradeship comradeship nom +comradeships comradeship nom +con con nom +concatenate concatenate ver +concatenated concatenate ver +concatenates concatenate ver +concatenating concatenate ver +concatenation concatenation nom +concatenations concatenation nom +concave concave ver +concaved concave ver +concaveness concaveness nom +concavenesses concaveness nom +concaves concave ver +concaving concave ver +concavities concavity nom +concavity concavity nom +conceal conceal ver +concealed conceal ver +concealer concealer nom +concealers concealer nom +concealing conceal ver +concealment concealment nom +concealments concealment nom +conceals conceal ver +concede concede ver +conceded concede ver +concedes concede ver +conceding concede ver +conceit conceit nom +conceited conceit ver +conceitedness conceitedness nom +conceitednesses conceitedness nom +conceiting conceit ver +conceits conceit nom +conceivabilities conceivability nom +conceivability conceivability nom +conceivableness conceivableness nom +conceivablenesses conceivableness nom +conceive conceive ver +conceived conceive ver +conceiver conceiver nom +conceivers conceiver nom +conceives conceive ver +conceiving conceive ver +concenter concenter ver +concentered concenter ver +concentering concenter ver +concenters concenter ver +concentrate concentrate nom +concentrated concentrate ver +concentrates concentrate nom +concentrating concentrate ver +concentration concentration nom +concentrations concentration nom +concentricities concentricity nom +concentricity concentricity nom +concept concept nom +conception conception nom +conceptions conception nom +concepts concept nom +conceptualise conceptualise ver +conceptualised conceptualise ver +conceptualises conceptualise ver +conceptualising conceptualise ver +conceptualism conceptualism nom +conceptualisms conceptualism nom +conceptualities conceptuality nom +conceptuality conceptuality nom +conceptualization conceptualization nom +conceptualizations conceptualization nom +conceptualize conceptualize ver +conceptualized conceptualize ver +conceptualizes conceptualize ver +conceptualizing conceptualize ver +conceptus conceptus nom +conceptuses conceptus nom +concern concern nom +concerned concern ver +concerning concerning sw +concerns concern nom +concert concert nom +concerted concert ver +concertina concertina nom +concertinaed concertina ver +concertinaing concertina ver +concertinas concertina nom +concerting concert ver +concertize concertize ver +concertized concertize ver +concertizes concertize ver +concertizing concertize ver +concertmaster concertmaster nom +concertmasters concertmaster nom +concerto concerto nom +concertos concerto nom +concerts concert nom +concession concession nom +concessionaire concessionaire nom +concessionaires concessionaire nom +concessionaries concessionary nom +concessionary concessionary nom +concessioner concessioner nom +concessioners concessioner nom +concessions concession nom +conch conch nom +concha concha nom +conchas concha nom +conchfish conchfish nom +conchologies conchology nom +conchologist conchologist nom +conchologists conchologist nom +conchology conchology nom +conchs conch nom +concierge concierge nom +concierges concierge nom +conciliate conciliate ver +conciliated conciliate ver +conciliates conciliate ver +conciliating conciliate ver +conciliation conciliation nom +conciliations conciliation nom +conciliator conciliator nom +conciliators conciliator nom +concise concise adj +conciseness conciseness nom +concisenesses conciseness nom +conciser concise adj +concisest concise adj +concision concision nom +concisions concision nom +conclave conclave nom +conclaves conclave nom +conclude conclude ver +concluded conclude ver +concludes conclude ver +concluding conclude ver +conclusion conclusion nom +conclusions conclusion nom +conclusiveness conclusiveness nom +conclusivenesses conclusiveness nom +concoct concoct ver +concocted concoct ver +concocting concoct ver +concoction concoction nom +concoctions concoction nom +concocts concoct ver +concomitance concomitance nom +concomitances concomitance nom +concomitant concomitant nom +concomitants concomitant nom +concord concord nom +concordance concordance nom +concordances concordance nom +concordat concordat nom +concordats concordat nom +concords concord nom +concourse concourse nom +concourses concourse nom +concrete concrete nom +concreted concrete ver +concreteness concreteness nom +concretenesses concreteness nom +concretes concrete nom +concreting concrete ver +concretion concretion nom +concretions concretion nom +concretism concretism nom +concretisms concretism nom +concretize concretize ver +concretized concretize ver +concretizes concretize ver +concretizing concretize ver +concubinage concubinage nom +concubinages concubinage nom +concubine concubine nom +concubines concubine nom +concupiscence concupiscence nom +concupiscences concupiscence nom +concur concur ver +concurred concur ver +concurrence concurrence nom +concurrences concurrence nom +concurrent concurrent nom +concurrents concurrent nom +concurring concur ver +concurs concur ver +concuss concuss ver +concussed concuss ver +concusses concuss ver +concussing concuss ver +concussion concussion nom +concussions concussion nom +condemn condemn ver +condemnation condemnation nom +condemnations condemnation nom +condemned condemn ver +condemner condemner nom +condemners condemner nom +condemning condemn ver +condemns condemn ver +condensate condensate nom +condensates condensate nom +condensation condensation nom +condensations condensation nom +condense condense ver +condensed condense ver +condenser condenser nom +condensers condenser nom +condenses condense ver +condensing condense ver +condescend condescend ver +condescended condescend ver +condescending condescend ver +condescends condescend ver +condescension condescension nom +condescensions condescension nom +condiment condiment nom +condiments condiment nom +condition condition nom +conditional conditional nom +conditionalities conditionality nom +conditionality conditionality nom +conditionals conditional nom +conditioned condition ver +conditioner conditioner nom +conditioners conditioner nom +conditioning condition ver +conditionings conditioning nom +conditions condition nom +condo condo nom +condole condole ver +condoled condole ver +condolence condolence nom +condolences condolence nom +condoles condole ver +condoling condole ver +condom condom nom +condominium condominium nom +condominiums condominium nom +condoms condom nom +condonation condonation nom +condonations condonation nom +condone condone ver +condoned condone ver +condones condone ver +condoning condone ver +condor condor nom +condors condor nom +condos condo nom +conduce conduce ver +conduced conduce ver +conduces conduce ver +conducing conduce ver +conduct conduct nom +conductance conductance nom +conductances conductance nom +conducted conduct ver +conductibilities conductibility nom +conductibility conductibility nom +conducting conduct ver +conduction conduction nom +conductions conduction nom +conductivities conductivity nom +conductivity conductivity nom +conductor conductor nom +conductors conductor nom +conductress conductress nom +conductresses conductress nom +conducts conduct nom +conduit conduit nom +conduits conduit nom +condyle condyle nom +condyles condyle nom +cone cone nom +coned cone ver +coneflower coneflower nom +coneflowers coneflower nom +conenose conenose nom +conenoses conenose nom +cones cone nom +coney coney nom +coneys coney nom +confab confab nom +confabbed confab ver +confabbing confab ver +confabs confab nom +confabulate confabulate ver +confabulated confabulate ver +confabulates confabulate ver +confabulating confabulate ver +confabulation confabulation nom +confabulations confabulation nom +confect confect ver +confected confect ver +confecting confect ver +confection confection nom +confectioned confection ver +confectioner confectioner nom +confectioneries confectionery nom +confectioners confectioner nom +confectionery confectionery nom +confectioning confection ver +confections confection nom +confects confect ver +confederacies confederacy nom +confederacy confederacy nom +confederate confederate nom +confederated confederate ver +confederates confederate nom +confederating confederate ver +confederation confederation nom +confederations confederation nom +confer confer ver +conferee conferee nom +conferees conferee nom +conference conference nom +conferenced conference ver +conferences conference nom +conferencing conference ver +conferment conferment nom +conferments conferment nom +conferral conferral nom +conferrals conferral nom +conferred confer ver +conferrer conferrer nom +conferrers conferrer nom +conferring confer ver +confers confer ver +conferva conferva nom +confervas conferva nom +confess confess ver +confessed confess ver +confesses confess ver +confessing confess ver +confession confession nom +confessional confessional nom +confessionals confessional nom +confessions confession nom +confessor confessor nom +confessors confessor nom +confidant confidant nom +confidante confidante nom +confidantes confidante nom +confidants confidant nom +confide confide ver +confided confide ver +confidence confidence nom +confidences confidence nom +confident confident nom +confidentialities confidentiality nom +confidentiality confidentiality nom +confidents confident nom +confider confider nom +confiders confider nom +confides confide ver +confiding confide ver +configuration configuration nom +configurationism configurationism nom +configurationisms configurationism nom +configurations configuration nom +configure configure ver +configured configure ver +configures configure ver +configuring configure ver +confine confine nom +confined confine ver +confinement confinement nom +confinements confinement nom +confines confine nom +confining confine ver +confirm confirm ver +confirmation confirmation nom +confirmations confirmation nom +confirmed confirm ver +confirming confirm ver +confirms confirm ver +confiscate confiscate ver +confiscated confiscate ver +confiscates confiscate ver +confiscating confiscate ver +confiscation confiscation nom +confiscations confiscation nom +confiscator confiscator nom +confiscators confiscator nom +confiture confiture nom +confitures confiture nom +conflagration conflagration nom +conflagrations conflagration nom +conflate conflate ver +conflated conflate ver +conflates conflate ver +conflating conflate ver +conflation conflation nom +conflations conflation nom +conflict conflict nom +conflicted conflict ver +conflicting conflict ver +conflicts conflict nom +confluence confluence nom +confluences confluence nom +confluent confluent nom +confluents confluent nom +conflux conflux nom +confluxes conflux nom +conform conform ver +conformance conformance nom +conformances conformance nom +conformation conformation nom +conformations conformation nom +conformed conform ver +conformer conformer nom +conformers conformer nom +conforming conform ver +conformism conformism nom +conformisms conformism nom +conformist conformist nom +conformists conformist nom +conformities conformity nom +conformity conformity nom +conforms conform ver +confound confound ver +confounded confound ver +confounding confound ver +confounds confound ver +confraternities confraternity nom +confraternity confraternity nom +confrere confrere nom +confreres confrere nom +confront confront ver +confrontation confrontation nom +confrontations confrontation nom +confronted confront ver +confronting confront ver +confronts confront ver +confuse confuse ver +confused confuse ver +confuses confuse ver +confusing confuse ver +confusion confusion nom +confusions confusion nom +confutation confutation nom +confutations confutation nom +confute confute ver +confuted confute ver +confutes confute ver +confuting confute ver +conga conga nom +congaed conga ver +congaing conga ver +congas conga nom +conge conge nom +congeal congeal ver +congealed congeal ver +congealing congeal ver +congealment congealment nom +congealments congealment nom +congeals congeal ver +conged conge ver +congee congee ver +congeed conge ver +congeeing congee ver +congees congee ver +congeing conge ver +congener congener nom +congeners congener nom +congenialities congeniality nom +congeniality congeniality nom +congenialness congenialness nom +congenialnesses congenialness nom +conger conger nom +congers conger nom +conges conge nom +congest congest ver +congested congest ver +congesting congest ver +congestion congestion nom +congestions congestion nom +congests congest ver +congii congius nom +congius congius nom +conglobate conglobate ver +conglobated conglobate ver +conglobates conglobate ver +conglobating conglobate ver +conglobe conglobe ver +conglobed conglobe ver +conglobes conglobe ver +conglobing conglobe ver +conglomerate conglomerate nom +conglomerated conglomerate ver +conglomerates conglomerate nom +conglomerating conglomerate ver +conglomeration conglomeration nom +conglomerations conglomeration nom +conglutinate conglutinate ver +conglutinated conglutinate ver +conglutinates conglutinate ver +conglutinating conglutinate ver +congo congo nom +congoes congo nom +congos congo nom +congou congou nom +congous congou nom +congratulate congratulate ver +congratulated congratulate ver +congratulates congratulate ver +congratulating congratulate ver +congratulation congratulation nom +congratulations congratulation nom +congregate congregate ver +congregated congregate ver +congregates congregate ver +congregating congregate ver +congregation congregation nom +congregationalism congregationalism nom +congregationalisms congregationalism nom +congregationalist congregationalist nom +congregationalists congregationalist nom +congregations congregation nom +congress congress nom +congressed congress ver +congresses congress nom +congressing congress ver +congressman congressman nom +congressmen congressman nom +congresspeople congressperson nom +congressperson congressperson nom +congresswoman congresswoman nom +congresswomen congresswoman nom +congruence congruence nom +congruences congruence nom +congruities congruity nom +congruity congruity nom +congruousness congruousness nom +congruousnesses congruousness nom +conic conic nom +conics conic nom +conidia conidium nom +conidiophore conidiophore nom +conidiophores conidiophore nom +conidiospore conidiospore nom +conidiospores conidiospore nom +conidium conidium nom +conies cony nom +conifer conifer nom +conifers conifer nom +coning cone ver +conjecture conjecture nom +conjectured conjecture ver +conjectures conjecture nom +conjecturing conjecture ver +conjoin conjoin ver +conjoined conjoin ver +conjoiner conjoiner nom +conjoiners conjoiner nom +conjoining conjoin ver +conjoins conjoin ver +conjugate conjugate nom +conjugated conjugate ver +conjugates conjugate nom +conjugating conjugate ver +conjugation conjugation nom +conjugations conjugation nom +conjunct conjunct nom +conjunction conjunction nom +conjunctions conjunction nom +conjunctiva conjunctiva nom +conjunctivas conjunctiva nom +conjunctive conjunctive nom +conjunctives conjunctive nom +conjunctivitis conjunctivitis nom +conjunctivitises conjunctivitis nom +conjuncts conjunct nom +conjuncture conjuncture nom +conjunctures conjuncture nom +conjuration conjuration nom +conjurations conjuration nom +conjure conjure ver +conjured conjure ver +conjurer conjurer nom +conjurers conjurer nom +conjures conjure ver +conjuries conjury nom +conjuring conjure ver +conjurings conjuring nom +conjuror conjuror nom +conjurors conjuror nom +conjury conjury nom +conk conk nom +conked conk ver +conker conker nom +conkers conker nom +conking conk ver +conks conk nom +conman conman nom +conmen conman nom +conn conn ver +connect connect ver +connected connect ver +connectedness connectedness nom +connectednesses connectedness nom +connecter connecter nom +connecters connecter nom +connecting connect ver +connection connection nom +connections connection nom +connective connective nom +connectives connective nom +connectivities connectivity nom +connectivity connectivity nom +connector connector nom +connectors connector nom +connects connect ver +conned con ver +connexion connexion nom +connexions connexion nom +conning con ver +conniption conniption nom +conniptions conniption nom +connivance connivance nom +connivances connivance nom +connive connive ver +connived connive ver +conniver conniver nom +connivers conniver nom +connives connive ver +conniving connive ver +connoisseur connoisseur nom +connoisseurs connoisseur nom +connoisseurship connoisseurship nom +connoisseurships connoisseurship nom +connotation connotation nom +connotations connotation nom +connote connote ver +connoted connote ver +connotes connote ver +connoting connote ver +conns conn ver +conodont conodont nom +conodonts conodont nom +conoid conoid nom +conoids conoid nom +conquer conquer ver +conquered conquer ver +conquering conquer ver +conqueror conqueror nom +conquerors conqueror nom +conquers conquer ver +conquest conquest nom +conquests conquest nom +conquistador conquistador nom +conquistadors conquistador nom +cons con nom +consanguinities consanguinity nom +consanguinity consanguinity nom +conscience conscience nom +consciences conscience nom +conscientiousness conscientiousness nom +conscientiousnesses conscientiousness nom +consciousness consciousness nom +consciousnesses consciousness nom +conscript conscript nom +conscripted conscript ver +conscripting conscript ver +conscription conscription nom +conscriptions conscription nom +conscripts conscript nom +consecrate consecrate ver +consecrated consecrate ver +consecrates consecrate ver +consecrating consecrate ver +consecration consecration nom +consecrations consecration nom +consensus consensus nom +consensuses consensus nom +consent consent nom +consented consent ver +consenting consent ver +consents consent nom +consequence consequence nom +consequences consequence nom +consequent consequent nom +consequently consequently sw +consequents consequent nom +conservancies conservancy nom +conservancy conservancy nom +conservation conservation nom +conservationism conservationism nom +conservationisms conservationism nom +conservationist conservationist nom +conservationists conservationist nom +conservations conservation nom +conservatism conservatism nom +conservatisms conservatism nom +conservative conservative nom +conservatives conservative nom +conservatoire conservatoire nom +conservatoires conservatoire nom +conservator conservator nom +conservatories conservatory nom +conservators conservator nom +conservatory conservatory nom +conserve conserve nom +conserved conserve ver +conserves conserve nom +conserving conserve ver +consider consider sw +considerable considerable nom +considerables considerable nom +considerateness considerateness nom +consideratenesses considerateness nom +consideration consideration nom +considerations consideration nom +considered consider ver +considering considering sw +considers consider ver +consign consign ver +consigned consign ver +consignee consignee nom +consignees consignee nom +consigner consigner nom +consigners consigner nom +consigning consign ver +consignment consignment nom +consignments consignment nom +consignor consignor nom +consignors consignor nom +consigns consign ver +consist consist ver +consisted consist ver +consistence consistence nom +consistences consistence nom +consistencies consistency nom +consistency consistency nom +consisting consist ver +consistories consistory nom +consistory consistory nom +consists consist ver +consociate consociate ver +consociated consociate ver +consociates consociate ver +consociating consociate ver +consolation consolation nom +consolations consolation nom +console console nom +consoled console ver +consoles console nom +consolidate consolidate ver +consolidated consolidate ver +consolidates consolidate ver +consolidating consolidate ver +consolidation consolidation nom +consolidations consolidation nom +consolidator consolidator nom +consolidators consolidator nom +consoling console ver +consomme consomme nom +consommes consomme nom +consonance consonance nom +consonances consonance nom +consonant consonant nom +consonants consonant nom +consort consort nom +consorted consort ver +consortia consortium nom +consorting consort ver +consortium consortium nom +consorts consort nom +conspectus conspectus nom +conspectuses conspectus nom +conspicuousness conspicuousness nom +conspicuousnesses conspicuousness nom +conspiracies conspiracy nom +conspiracy conspiracy nom +conspirator conspirator nom +conspirators conspirator nom +conspire conspire ver +conspired conspire ver +conspires conspire ver +conspiring conspire ver +constable constable nom +constables constable nom +constabularies constabulary nom +constabulary constabulary nom +constancies constancy nom +constancy constancy nom +constant constant nom +constantan constantan nom +constantans constantan nom +constants constant nom +constatation constatation nom +constatations constatation nom +constellate constellate ver +constellated constellate ver +constellates constellate ver +constellating constellate ver +constellation constellation nom +constellations constellation nom +consternate consternate ver +consternated consternate ver +consternates consternate ver +consternating consternate ver +consternation consternation nom +consternations consternation nom +constipate constipate ver +constipated constipate ver +constipates constipate ver +constipating constipate ver +constipation constipation nom +constipations constipation nom +constituencies constituency nom +constituency constituency nom +constituent constituent nom +constituents constituent nom +constitute constitute ver +constituted constitute ver +constitutes constitute ver +constituting constitute ver +constitution constitution nom +constitutional constitutional nom +constitutionalism constitutionalism nom +constitutionalisms constitutionalism nom +constitutionalist constitutionalist nom +constitutionalists constitutionalist nom +constitutionalities constitutionality nom +constitutionality constitutionality nom +constitutionalize constitutionalize ver +constitutionalized constitutionalize ver +constitutionalizes constitutionalize ver +constitutionalizing constitutionalize ver +constitutionals constitutional nom +constitutions constitution nom +constrain constrain ver +constrained constrain ver +constraining constrain ver +constrains constrain ver +constraint constraint nom +constraints constraint nom +constrict constrict ver +constricted constrict ver +constricting constrict ver +constriction constriction nom +constrictions constriction nom +constrictor constrictor nom +constrictors constrictor nom +constricts constrict ver +constringe constringe ver +constringed constringe ver +constringes constringe ver +constringing constringe ver +construct construct nom +constructed construct ver +constructing construct ver +construction construction nom +constructionist constructionist nom +constructionists constructionist nom +constructions construction nom +constructiveness constructiveness nom +constructivenesses constructiveness nom +constructivism constructivism nom +constructivisms constructivism nom +constructivist constructivist nom +constructivists constructivist nom +constructor constructor nom +constructors constructor nom +constructs construct nom +construe construe nom +construed construe ver +construes construe nom +construing construe ver +consubstantiation consubstantiation nom +consubstantiations consubstantiation nom +consuetude consuetude nom +consuetudes consuetude nom +consuetudinaries consuetudinary nom +consuetudinary consuetudinary nom +consul consul nom +consulate consulate nom +consulates consulate nom +consuls consul nom +consulship consulship nom +consulships consulship nom +consult consult ver +consultancies consultancy nom +consultancy consultancy nom +consultant consultant nom +consultants consultant nom +consultation consultation nom +consultations consultation nom +consulted consult ver +consulting consult ver +consults consult ver +consumable consumable nom +consumables consumable nom +consume consume ver +consumed consume ver +consumer consumer nom +consumerism consumerism nom +consumerisms consumerism nom +consumerist consumerist nom +consumerists consumerist nom +consumers consumer nom +consumes consume ver +consuming consume ver +consummate consummate ver +consummated consummate ver +consummates consummate ver +consummating consummate ver +consummation consummation nom +consummations consummation nom +consumption consumption nom +consumptions consumption nom +consumptive consumptive nom +consumptives consumptive nom +contact contact nom +contacted contact ver +contacting contact ver +contacts contact nom +contadini contadino nom +contadino contadino nom +contagion contagion nom +contagions contagion nom +contagiousness contagiousness nom +contagiousnesses contagiousness nom +contain contain sw +contained contain ver +container container nom +containerization containerization nom +containerizations containerization nom +containerize containerize ver +containerized containerize ver +containerizes containerize ver +containerizing containerize ver +containers container nom +containership containership nom +containerships containership nom +containing containing sw +containment containment nom +containments containment nom +contains contains sw +contaminant contaminant nom +contaminants contaminant nom +contaminate contaminate ver +contaminated contaminate ver +contaminates contaminate ver +contaminating contaminate ver +contamination contamination nom +contaminations contamination nom +contaminator contaminator nom +contaminators contaminator nom +contemn contemn ver +contemned contemn ver +contemning contemn ver +contemns contemn ver +contemplate contemplate ver +contemplated contemplate ver +contemplates contemplate ver +contemplating contemplate ver +contemplation contemplation nom +contemplations contemplation nom +contemplative contemplative nom +contemplativeness contemplativeness nom +contemplativenesses contemplativeness nom +contemplatives contemplative nom +contemporaneities contemporaneity nom +contemporaneity contemporaneity nom +contemporaneousness contemporaneousness nom +contemporaneousnesses contemporaneousness nom +contemporaries contemporary nom +contemporary contemporary nom +contemporize contemporize ver +contemporized contemporize ver +contemporizes contemporize ver +contemporizing contemporize ver +contempt contempt nom +contemptibilities contemptibility nom +contemptibility contemptibility nom +contempts contempt nom +contemptuousness contemptuousness nom +contemptuousnesses contemptuousness nom +contend contend ver +contended contend ver +contender contender nom +contenders contender nom +contending contend ver +contends contend ver +content content nom +contented content ver +contentedness contentedness nom +contentednesses contentedness nom +contenting content ver +contention contention nom +contentions contention nom +contentiousness contentiousness nom +contentiousnesses contentiousness nom +contentment contentment nom +contentments contentment nom +contents content nom +contest contest nom +contestant contestant nom +contestants contestant nom +contestation contestation nom +contestations contestation nom +contested contest ver +contesting contest ver +contests contest nom +context context nom +contexts context nom +contextualize contextualize ver +contextualized contextualize ver +contextualizes contextualize ver +contextualizing contextualize ver +contiguities contiguity nom +contiguity contiguity nom +contiguousness contiguousness nom +contiguousnesses contiguousness nom +continence continence nom +continences continence nom +continent continent nom +continental continental nom +continentals continental nom +continents continent nom +contingencies contingency nom +contingency contingency nom +contingent contingent nom +contingents contingent nom +continua continuum nom +continuance continuance nom +continuances continuance nom +continuant continuant nom +continuants continuant nom +continuation continuation nom +continuations continuation nom +continue continue ver +continued continue ver +continues continue ver +continuing continue ver +continuities continuity nom +continuity continuity nom +continuousness continuousness nom +continuousnesses continuousness nom +continuum continuum nom +conto conto nom +contort contort ver +contorted contort ver +contorting contort ver +contortion contortion nom +contortionist contortionist nom +contortionists contortionist nom +contortions contortion nom +contorts contort ver +contos conto nom +contour contour nom +contoured contour ver +contouring contour ver +contours contour nom +contraband contraband nom +contrabandist contrabandist nom +contrabandists contrabandist nom +contrabands contraband nom +contrabass contrabass nom +contrabasses contrabass nom +contrabassoon contrabassoon nom +contrabassoons contrabassoon nom +contraception contraception nom +contraceptions contraception nom +contraceptive contraceptive nom +contraceptives contraceptive nom +contract contract nom +contracted contract ver +contractilities contractility nom +contractility contractility nom +contracting contract ver +contraction contraction nom +contractions contraction nom +contractor contractor nom +contractors contractor nom +contracts contract nom +contracture contracture nom +contractures contracture nom +contradict contradict ver +contradicted contradict ver +contradicting contradict ver +contradiction contradiction nom +contradictions contradiction nom +contradictories contradictory nom +contradictoriness contradictoriness nom +contradictorinesses contradictoriness nom +contradictory contradictory nom +contradicts contradict ver +contradistinction contradistinction nom +contradistinctions contradistinction nom +contradistinguish contradistinguish ver +contradistinguished contradistinguish ver +contradistinguishes contradistinguish ver +contradistinguishing contradistinguish ver +contrafagotto contrafagotto nom +contrafagottos contrafagotto nom +contrail contrail nom +contrails contrail nom +contraindicate contraindicate ver +contraindicated contraindicate ver +contraindicates contraindicate ver +contraindicating contraindicate ver +contraindication contraindication nom +contraindications contraindication nom +contralto contralto nom +contraltos contralto nom +contraption contraption nom +contraptions contraption nom +contrapuntist contrapuntist nom +contrapuntists contrapuntist nom +contrarian contrarian nom +contrarians contrarian nom +contraries contrary nom +contrarieties contrariety nom +contrariety contrariety nom +contrariness contrariness nom +contrarinesses contrariness nom +contrary contrary nom +contrast contrast nom +contrasted contrast ver +contrasting contrast ver +contrasts contrast nom +contravene contravene ver +contravened contravene ver +contravenes contravene ver +contravening contravene ver +contravention contravention nom +contraventions contravention nom +contredanse contredanse nom +contredanses contredanse nom +contretemps contretemps nom +contribute contribute ver +contributed contribute ver +contributes contribute ver +contributing contribute ver +contribution contribution nom +contributions contribution nom +contributor contributor nom +contributories contributory nom +contributors contributor nom +contributory contributory nom +contriteness contriteness nom +contritenesses contriteness nom +contrition contrition nom +contritions contrition nom +contrivance contrivance nom +contrivances contrivance nom +contrive contrive ver +contrived contrive ver +contriver contriver nom +contrivers contriver nom +contrives contrive ver +contriving contrive ver +control control nom +controlled control ver +controller controller nom +controllers controller nom +controllership controllership nom +controllerships controllership nom +controlling control ver +controls control nom +controversialist controversialist nom +controversialists controversialist nom +controversies controversy nom +controversy controversy nom +controvert controvert ver +controverted controvert ver +controverting controvert ver +controverts controvert ver +contumacies contumacy nom +contumacy contumacy nom +contumelies contumely nom +contumely contumely nom +contuse contuse ver +contused contuse ver +contuses contuse ver +contusing contuse ver +contusion contusion nom +contusions contusion nom +conundrum conundrum nom +conundrums conundrum nom +conurbation conurbation nom +conurbations conurbation nom +convalesce convalesce ver +convalesced convalesce ver +convalescence convalescence nom +convalescences convalescence nom +convalescent convalescent nom +convalescents convalescent nom +convalesces convalesce ver +convalescing convalesce ver +convect convect ver +convected convect ver +convecting convect ver +convection convection nom +convections convection nom +convector convector nom +convectors convector nom +convects convect ver +convene convene ver +convened convene ver +convener convener nom +conveners convener nom +convenes convene ver +convenience convenience nom +conveniences convenience nom +convening convene ver +convent convent nom +conventicle conventicle nom +conventicles conventicle nom +convention convention nom +conventionalise conventionalise ver +conventionalised conventionalise ver +conventionalises conventionalise ver +conventionalising conventionalise ver +conventionalism conventionalism nom +conventionalisms conventionalism nom +conventionalities conventionality nom +conventionality conventionality nom +conventionalization conventionalization nom +conventionalizations conventionalization nom +conventionalize conventionalize ver +conventionalized conventionalize ver +conventionalizes conventionalize ver +conventionalizing conventionalize ver +conventioneer conventioneer nom +conventioneers conventioneer nom +conventions convention nom +convents convent nom +converge converge ver +converged converge ver +convergence convergence nom +convergences convergence nom +convergencies convergency nom +convergency convergency nom +converges converge ver +converging converge ver +conversance conversance nom +conversances conversance nom +conversancies conversancy nom +conversancy conversancy nom +conversation conversation nom +conversationalist conversationalist nom +conversationalists conversationalist nom +conversations conversation nom +converse converse nom +conversed converse ver +converses converse nom +conversing converse ver +conversion conversion nom +conversions conversion nom +convert convert nom +converted convert ver +converter converter nom +converters converter nom +convertibilities convertibility nom +convertibility convertibility nom +convertible convertible nom +convertibles convertible nom +converting convert ver +convertor convertor nom +convertors convertor nom +converts convert nom +convexities convexity nom +convexity convexity nom +convey convey ver +conveyance conveyance nom +conveyancer conveyancer nom +conveyancers conveyancer nom +conveyances conveyance nom +conveyancing conveyancing nom +conveyancings conveyancing nom +conveyed convey ver +conveyer conveyer nom +conveyers conveyer nom +conveying convey ver +conveyor conveyor nom +conveyors conveyor nom +conveys convey ver +convict convict nom +convicted convict ver +convictfish convictfish nom +convicting convict ver +conviction conviction nom +convictions conviction nom +convicts convict nom +convince convince ver +convinced convince ver +convinces convince ver +convincing convince ver +convincingness convincingness nom +convincingnesses convincingness nom +convivialities conviviality nom +conviviality conviviality nom +convocation convocation nom +convocations convocation nom +convoke convoke ver +convoked convoke ver +convokes convoke ver +convoking convoke ver +convolute convolute ver +convoluted convolute ver +convolutes convolute ver +convoluting convolute ver +convolution convolution nom +convolutions convolution nom +convolve convolve ver +convolved convolve ver +convolves convolve ver +convolving convolve ver +convolvulus convolvulus nom +convolvuluses convolvulus nom +convoy convoy nom +convoyed convoy ver +convoying convoy ver +convoys convoy nom +convulse convulse ver +convulsed convulse ver +convulses convulse ver +convulsing convulse ver +convulsion convulsion nom +convulsions convulsion nom +cony cony nom +coo coo nom +cooccur cooccur ver +cooccured cooccur ver +cooccurring cooccur ver +cooccurs cooccur ver +cooed coo ver +cooing coo ver +cook cook nom +cookbook cookbook nom +cookbooks cookbook nom +cooked cook ver +cooker cooker nom +cookeries cookery nom +cookers cooker nom +cookery cookery nom +cookhouse cookhouse nom +cookhouses cookhouse nom +cookie cookie nom +cookies cookie nom +cooking cook ver +cookings cooking nom +cookout cookout nom +cookouts cookout nom +cooks cook nom +cookstove cookstove nom +cookstoves cookstove nom +cookware cookware nom +cookwares cookware nom +cooky cooky nom +cool cool adj +coolant coolant nom +coolants coolant nom +cooled cool ver +cooler cool adj +coolers cooler nom +coolest cool adj +coolie coolie nom +coolies coolie nom +cooling cool ver +coolness coolness nom +coolnesses coolness nom +cools cool nom +cooly cooly nom +coon coon nom +coonhound coonhound nom +coonhounds coonhound nom +coons coon nom +coonskin coonskin nom +coonskins coonskin nom +coontie coontie nom +coonties coontie nom +coop coop nom +cooped coop ver +cooper cooper nom +cooperage cooperage nom +cooperages cooperage nom +cooperate cooperate ver +cooperated cooperate ver +cooperates cooperate ver +cooperating cooperate ver +cooperation cooperation nom +cooperations cooperation nom +cooperative cooperative nom +cooperativeness cooperativeness nom +cooperativenesses cooperativeness nom +cooperatives cooperative nom +cooperator cooperator nom +cooperators cooperator nom +coopered cooper ver +coopering cooper ver +coopers cooper nom +cooping coop ver +coops coop nom +coordinate coordinate nom +coordinated coordinate ver +coordinates coordinate nom +coordinating coordinate ver +coordination coordination nom +coordinations coordination nom +coordinator coordinator nom +coordinators coordinator nom +coos coo nom +coot coot nom +cooter cooter nom +cooters cooter nom +cootie cootie nom +cooties cootie nom +coots coot nom +cop cop nom +copaiba copaiba nom +copaibas copaiba nom +copal copal nom +copals copal nom +copartner copartner nom +copartners copartner nom +copartnership copartnership nom +copartnerships copartnership nom +copay copay nom +copays copay nom +cope cope nom +copeck copeck nom +copecks copeck nom +coped cope ver +copepod copepod nom +copepods copepod nom +copes cope nom +copied copy ver +copier copier nom +copiers copier nom +copies copy nom +copilot copilot nom +copilots copilot nom +coping cope ver +copings coping nom +copiousness copiousness nom +copiousnesses copiousness nom +copolymer copolymer nom +copolymerise copolymerise ver +copolymerised copolymerise ver +copolymerises copolymerise ver +copolymerising copolymerise ver +copolymerize copolymerize ver +copolymerized copolymerize ver +copolymerizes copolymerize ver +copolymerizing copolymerize ver +copolymers copolymer nom +copout copout nom +copouts copout nom +copped cop ver +copper copper nom +coppered copper ver +copperhead copperhead nom +copperheads copperhead nom +coppering copper ver +copperplate copperplate nom +copperplates copperplate nom +coppers copper nom +coppersmith coppersmith nom +coppersmiths coppersmith nom +copperware copperware nom +copperwares copperware nom +coppice coppice nom +coppices coppice nom +copping cop ver +copra copra nom +copras copra nom +coprolalia coprolalia nom +coprolalias coprolalia nom +cops cop nom +copse copse nom +copses copse nom +copter copter nom +copters copter nom +copula copula nom +copulas copula nom +copulate copulate ver +copulated copulate ver +copulates copulate ver +copulating copulate ver +copulation copulation nom +copulations copulation nom +copulative copulative nom +copulatives copulative nom +copy copy nom +copybook copybook nom +copybooks copybook nom +copycat copycat nom +copycats copycat nom +copycatted copycat ver +copycatting copycat ver +copyedit copyedit ver +copyedited copyedit ver +copyediting copyedit ver +copyedits copyedit ver +copyhold copyhold nom +copyholder copyholder nom +copyholders copyholder nom +copyholds copyhold nom +copying copy ver +copyist copyist nom +copyists copyist nom +copyread copyread ver +copyreader copyreader nom +copyreaders copyreader nom +copyreading copyread ver +copyreads copyread ver +copyright copyright nom +copyrighted copyright ver +copyrighting copyright ver +copyrights copyright nom +copywriter copywriter nom +copywriters copywriter nom +coquet coquet ver +coquetries coquetry nom +coquetry coquetry nom +coquets coquet ver +coquette coquette nom +coquetted coquet ver +coquettes coquette nom +coquetting coquet ver +coquille coquille nom +coquilles coquille nom +coracle coracle nom +coracles coracle nom +coral coral nom +coralberries coralberry nom +coralberry coralberry nom +coralroot coralroot nom +coralroots coralroot nom +corals coral nom +corbel corbel nom +corbeled corbel ver +corbeling corbel ver +corbels corbel nom +corbiestep corbiestep nom +corbiesteps corbiestep nom +corbina corbina nom +corbinas corbina nom +cord cord nom +cordage cordage nom +cordages cordage nom +corded cord ver +cordgrass cordgrass nom +cordgrasses cordgrass nom +cordial cordial nom +cordialities cordiality nom +cordiality cordiality nom +cordials cordial nom +cordierite cordierite nom +cordierites cordierite nom +cordillera cordillera nom +cordilleras cordillera nom +cording cord ver +cordite cordite nom +cordites cordite nom +corditis corditis nom +cordoba cordoba nom +cordobas cordoba nom +cordon cordon nom +cordoned cordon ver +cordoning cordon ver +cordons cordon nom +cordovan cordovan nom +cordovans cordovan nom +cords cord nom +corduroy corduroy nom +corduroyed corduroy ver +corduroying corduroy ver +corduroys corduroy nom +cordwood cordwood nom +cordwoods cordwood nom +core core nom +cored core ver +corelate corelate ver +corelated corelate ver +corelates corelate ver +corelating corelate ver +coreligionist coreligionist nom +coreligionists coreligionist nom +coreopsis coreopsis nom +coreopsises coreopsis nom +corer corer nom +corers corer nom +cores core nom +corespondent corespondent nom +corespondents corespondent nom +corgi corgi nom +corgis corgi nom +coriander coriander nom +corianders coriander nom +coring core ver +corium corium nom +coriums corium nom +cork cork nom +corkage corkage nom +corkages corkage nom +corked cork ver +corker corker nom +corkers corker nom +corkier corky adj +corkiest corky adj +corking cork ver +corks cork nom +corkscrew corkscrew nom +corkscrewed corkscrew ver +corkscrewing corkscrew ver +corkscrews corkscrew nom +corkwood corkwood nom +corkwoods corkwood nom +corky corky adj +corm corm nom +cormorant cormorant nom +cormorants cormorant nom +corms corm nom +corn corn nom +cornball cornball nom +cornballs cornball nom +cornbread cornbread nom +cornbreads cornbread nom +corncob corncob nom +corncobs corncob nom +corncrake corncrake nom +corncrakes corncrake nom +cornea corneum nom +corneas cornea nom +corned corn ver +cornel cornel nom +cornelian cornelian nom +cornelians cornelian nom +cornels cornel nom +corner corner nom +cornered corner ver +cornering corner ver +corners corner nom +cornerstone cornerstone nom +cornerstones cornerstone nom +cornet cornet nom +cornetfish cornetfish nom +cornetist cornetist nom +cornetists cornetist nom +cornets cornet nom +corneum corneum nom +cornfield cornfield nom +cornfields cornfield nom +cornflower cornflower nom +cornflowers cornflower nom +cornhusk cornhusk nom +cornhusker cornhusker nom +cornhuskers cornhusker nom +cornhusking cornhusking nom +cornhuskings cornhusking nom +cornhusks cornhusk nom +cornice cornice nom +corniced cornice ver +cornices cornice nom +cornicing cornice ver +cornier corny adj +corniest corny adj +corniness corniness nom +corninesses corniness nom +corning corn ver +cornmeal cornmeal nom +cornmeals cornmeal nom +cornpone cornpone nom +cornpones cornpone nom +cornrow cornrow nom +cornrowed cornrow ver +cornrowing cornrow ver +cornrows cornrow nom +corns corn nom +cornstalk cornstalk nom +cornstalks cornstalk nom +cornstarch cornstarch nom +cornstarches cornstarch nom +cornu cornu nom +cornucopia cornucopia nom +cornucopias cornucopia nom +cornus cornu nom +corny corny adj +corolla corolla nom +corollaries corollary nom +corollary corollary nom +corollas corolla nom +corona corona nom +coronach coronach nom +coronachs coronach nom +coronal coronal nom +coronals coronal nom +coronaries coronary nom +coronary coronary nom +coronas corona nom +coronate coronate ver +coronated coronate ver +coronates coronate ver +coronating coronate ver +coronation coronation nom +coronations coronation nom +coroner coroner nom +coroners coroner nom +coronet coronet nom +coronets coronet nom +corozo corozo nom +corozos corozo nom +corp corp nom +corpora corpus nom +corporal corporal nom +corporals corporal nom +corporation corporation nom +corporations corporation nom +corporealities corporeality nom +corporeality corporeality nom +corposant corposant nom +corposants corposant nom +corps corp nom +corpse corpse nom +corpses corpse nom +corpsman corpsman nom +corpsmen corpsman nom +corpulence corpulence nom +corpulences corpulence nom +corpus corpus nom +corpuscle corpuscle nom +corpuscles corpuscle nom +corrade corrade ver +corraded corrade ver +corrades corrade ver +corrading corrade ver +corral corral nom +corralled corral ver +corralling corral ver +corrals corral nom +corrasion corrasion nom +corrasions corrasion nom +correct correct adj +corrected correct ver +correcter correct adj +correctest correct adj +correcting correct ver +correction correction nom +corrections correction nom +correctitude correctitude nom +correctitudes correctitude nom +corrective corrective nom +correctives corrective nom +correctness correctness nom +correctnesses correctness nom +corrects correct ver +correlate correlate nom +correlated correlate ver +correlates correlate nom +correlating correlate ver +correlation correlation nom +correlations correlation nom +correlative correlative nom +correlatives correlative nom +correlativities correlativity nom +correlativity correlativity nom +correspond correspond ver +corresponded correspond ver +correspondence correspondence nom +correspondences correspondence nom +correspondent correspondent nom +correspondents correspondent nom +corresponding corresponding sw +corresponds correspond ver +corrida corrida nom +corridas corrida nom +corridor corridor nom +corridors corridor nom +corrie corrie nom +corries corrie nom +corrigenda corrigendum nom +corrigendum corrigendum nom +corroborate corroborate ver +corroborated corroborate ver +corroborates corroborate ver +corroborating corroborate ver +corroboration corroboration nom +corroborations corroboration nom +corroborator corroborator nom +corroborators corroborator nom +corrode corrode ver +corroded corrode ver +corrodes corrode ver +corroding corrode ver +corrosion corrosion nom +corrosions corrosion nom +corrosive corrosive nom +corrosives corrosive nom +corrugate corrugate ver +corrugated corrugate ver +corrugates corrugate ver +corrugating corrugate ver +corrugation corrugation nom +corrugations corrugation nom +corrupt corrupt adj +corrupted corrupt ver +corrupter corrupt adj +corruptest corrupt adj +corruptibilities corruptibility nom +corruptibility corruptibility nom +corrupting corrupt ver +corruption corruption nom +corruptions corruption nom +corruptness corruptness nom +corruptnesses corruptness nom +corrupts corrupt ver +corsage corsage nom +corsages corsage nom +corsair corsair nom +corsairs corsair nom +corselet corselet nom +corselets corselet nom +corset corset nom +corseted corset ver +corseting corset ver +corsets corset nom +corslet corslet nom +corslets corslet nom +cortege cortege nom +corteges cortege nom +cortex cortex nom +cortices cortex nom +corticoid corticoid nom +corticoids corticoid nom +corticosteroid corticosteroid nom +corticosteroids corticosteroid nom +corticosterone corticosterone nom +corticosterones corticosterone nom +corticotrophin corticotrophin nom +corticotrophins corticotrophin nom +corticotropin corticotropin nom +corticotropins corticotropin nom +cortina cortina nom +cortinas cortina nom +cortisol cortisol nom +cortisols cortisol nom +cortisone cortisone nom +cortisones cortisone nom +corundum corundum nom +corundums corundum nom +coruscate coruscate ver +coruscated coruscate ver +coruscates coruscate ver +coruscating coruscate ver +coruscation coruscation nom +coruscations coruscation nom +corvee corvee nom +corvees corvee nom +corvette corvette nom +corvettes corvette nom +corydalis corydalis nom +corydalises corydalis nom +corymb corymb nom +corymbs corymb nom +coryza coryza nom +coryzas coryza nom +cos cos nom +cosecant cosecant nom +cosecants cosecant nom +coses cos nom +cosey cosey nom +coseys cosey nom +cosh cosh nom +coshed cosh ver +coshes cosh nom +coshing cosh ver +cosied cosy ver +cosier cosy adj +cosies cosy nom +cosiest cosy adj +cosign cosign ver +cosignatories cosignatory nom +cosignatory cosignatory nom +cosigned cosign ver +cosigner cosigner nom +cosigners cosigner nom +cosigning cosign ver +cosigns cosign ver +cosine cosine nom +cosines cosine nom +cosiness cosiness nom +cosinesses cosiness nom +cosmetic cosmetic nom +cosmetician cosmetician nom +cosmeticians cosmetician nom +cosmetics cosmetic nom +cosmetologies cosmetology nom +cosmetologist cosmetologist nom +cosmetologists cosmetologist nom +cosmetology cosmetology nom +cosmogonies cosmogony nom +cosmogonist cosmogonist nom +cosmogonists cosmogonist nom +cosmogony cosmogony nom +cosmographer cosmographer nom +cosmographers cosmographer nom +cosmographies cosmography nom +cosmography cosmography nom +cosmologies cosmology nom +cosmologist cosmologist nom +cosmologists cosmologist nom +cosmology cosmology nom +cosmonaut cosmonaut nom +cosmonauts cosmonaut nom +cosmopolitan cosmopolitan nom +cosmopolitanism cosmopolitanism nom +cosmopolitanisms cosmopolitanism nom +cosmopolitans cosmopolitan nom +cosmopolite cosmopolite nom +cosmopolites cosmopolite nom +cosmos cosmos nom +cosmoses cosmos nom +cosmotron cosmotron nom +cosmotrons cosmotron nom +cosponsor cosponsor nom +cosponsored cosponsor ver +cosponsoring cosponsor ver +cosponsors cosponsor nom +coss coss nom +cosses coss nom +cosset cosset nom +cosseted cosset ver +cosseting cosset ver +cossets cosset nom +cost cost ver +costa costa nom +costae costa nom +costar costar nom +costarred costar ver +costarring costar ver +costars costar nom +costermonger costermonger nom +costermongers costermonger nom +costing cost ver +costings costing nom +costlier costly adj +costliest costly adj +costliness costliness nom +costlinesses costliness nom +costly costly adj +costmaries costmary nom +costmary costmary nom +costs cost nom +costume costume nom +costumed costume ver +costumer costumer nom +costumers costumer nom +costumes costume nom +costumier costumier nom +costumiers costumier nom +costuming costume ver +cosy cosy adj +cosying cosy ver +cot cot nom +cotangent cotangent nom +cotangents cotangent nom +cote cote nom +coted cote ver +cotenant cotenant nom +cotenants cotenant nom +coterie coterie nom +coteries coterie nom +cotes cote nom +cotillion cotillion nom +cotillions cotillion nom +coting cote ver +cotinga cotinga nom +cotingas cotinga nom +cotoneaster cotoneaster nom +cotoneasters cotoneaster nom +cots cot nom +cottage cottage nom +cottager cottager nom +cottagers cottager nom +cottages cottage nom +cottar cottar nom +cottars cottar nom +cotter cotter nom +cottered cotter ver +cottering cotter ver +cotters cotter nom +cottier cottier nom +cottiers cottier nom +cotton cotton nom +cottoned cotton ver +cottoning cotton ver +cottonmouth cottonmouth nom +cottonmouths cottonmouth nom +cottons cotton nom +cottonseed cottonseed nom +cottonseeds cottonseed nom +cottontail cottontail nom +cottontails cottontail nom +cottonweed cottonweed nom +cottonweeds cottonweed nom +cottonwood cottonwood nom +cottonwoods cottonwood nom +cotyledon cotyledon nom +cotyledons cotyledon nom +coucal coucal nom +coucals coucal nom +couch couch nom +couched couch ver +couches couch nom +couchette couchette nom +couchettes couchette nom +couching couch ver +cougar cougar nom +cougars cougar nom +cough cough nom +coughed cough ver +coughing cough ver +coughings coughing nom +coughs cough nom +could could sw +couldn_t couldn_t sw +coulee coulee nom +coulees coulee nom +coulisse coulisse nom +coulisses coulisse nom +coulomb coulomb nom +coulombs coulomb nom +coulter coulter nom +coulters coulter nom +coumarone coumarone nom +coumarones coumarone nom +council council nom +councillor councillor nom +councillors councillor nom +councillorship councillorship nom +councillorships councillorship nom +councilman councilman nom +councilmen councilman nom +councilor councilor nom +councilors councilor nom +councilorship councilorship nom +councilorships councilorship nom +councilperson councilperson nom +councilpersons councilperson nom +councils council nom +councilwoman councilwoman nom +councilwomen councilwoman nom +counsel counsel nom +counseled counsel ver +counseling counsel ver +counselings counseling nom +counsellor counsellor nom +counsellors counsellor nom +counsellorship counsellorship nom +counsellorships counsellorship nom +counselor counselor nom +counselors counselor nom +counselorship counselorship nom +counselorships counselorship nom +counsels counsel nom +count count nom +countdown countdown nom +countdowns countdown nom +counted count ver +countenance countenance nom +countenanced countenance ver +countenances countenance nom +countenancing countenance ver +counter counter nom +counteract counteract ver +counteracted counteract ver +counteracting counteract ver +counteraction counteraction nom +counteractions counteraction nom +counteracts counteract ver +counterattack counterattack nom +counterattacked counterattack ver +counterattacking counterattack ver +counterattacks counterattack nom +counterbalance counterbalance nom +counterbalanced counterbalance ver +counterbalances counterbalance nom +counterbalancing counterbalance ver +counterblast counterblast nom +counterblasts counterblast nom +counterblow counterblow nom +counterblows counterblow nom +counterchange counterchange ver +counterchanged counterchange ver +counterchanges counterchange ver +counterchanging counterchange ver +countercheck countercheck ver +counterchecked countercheck ver +counterchecking countercheck ver +counterchecks countercheck ver +counterclaim counterclaim nom +counterclaimed counterclaim ver +counterclaiming counterclaim ver +counterclaims counterclaim nom +counterculture counterculture nom +countercultures counterculture nom +countercurrent countercurrent nom +countercurrents countercurrent nom +countered counter ver +counterespionage counterespionage nom +counterespionages counterespionage nom +counterexample counterexample nom +counterexamples counterexample nom +counterfeit counterfeit nom +counterfeited counterfeit ver +counterfeiter counterfeiter nom +counterfeiters counterfeiter nom +counterfeiting counterfeit ver +counterfeits counterfeit nom +counterfire counterfire nom +counterfires counterfire nom +counterfoil counterfoil nom +counterfoils counterfoil nom +counterglow counterglow nom +counterglows counterglow nom +countering counter ver +counterinsurgencies counterinsurgency nom +counterinsurgency counterinsurgency nom +counterintelligence counterintelligence nom +counterintelligences counterintelligence nom +counterirritant counterirritant nom +counterirritants counterirritant nom +counterman counterman nom +countermand countermand nom +countermanded countermand ver +countermanding countermand ver +countermands countermand nom +countermarch countermarch ver +countermarched countermarch ver +countermarches countermarch ver +countermarching countermarch ver +countermeasure countermeasure nom +countermeasures countermeasure nom +countermen counterman nom +countermine countermine nom +countermined countermine ver +countermines countermine nom +countermining countermine ver +countermove countermove nom +countermoves countermove nom +counteroffensive counteroffensive nom +counteroffensives counteroffensive nom +counteroffer counteroffer nom +counteroffered counteroffer ver +counteroffering counteroffer ver +counteroffers counteroffer nom +counterpane counterpane nom +counterpanes counterpane nom +counterpart counterpart nom +counterparts counterpart nom +counterplot counterplot nom +counterplots counterplot nom +counterplotted counterplot ver +counterplotting counterplot ver +counterpoint counterpoint nom +counterpointed counterpoint ver +counterpointing counterpoint ver +counterpoints counterpoint nom +counterpoise counterpoise nom +counterpoised counterpoise ver +counterpoises counterpoise nom +counterpoising counterpoise ver +counterpose counterpose ver +counterposed counterpose ver +counterposes counterpose ver +counterposing counterpose ver +counterproposal counterproposal nom +counterproposals counterproposal nom +counterpunch counterpunch nom +counterpunches counterpunch nom +counterrevolution counterrevolution nom +counterrevolutionaries counterrevolutionary nom +counterrevolutionary counterrevolutionary nom +counterrevolutionist counterrevolutionist nom +counterrevolutionists counterrevolutionist nom +counterrevolutions counterrevolution nom +counters counter nom +countershot countershot nom +countershots countershot nom +countersign countersign nom +countersignature countersignature nom +countersignatures countersignature nom +countersigned countersign ver +countersigning countersign ver +countersigns countersign nom +countersink countersink nom +countersinking countersink ver +countersinks countersink nom +counterspies counterspy nom +counterspy counterspy nom +countersunk countersink ver +countertenor countertenor nom +countertenors countertenor nom +countervail countervail ver +countervailed countervail ver +countervailing countervail ver +countervails countervail ver +counterweight counterweight nom +counterweighted counterweight ver +counterweighting counterweight ver +counterweights counterweight nom +countess countess nom +countesses countess nom +counties county nom +counting count ver +countinghouse countinghouse nom +countinghouses countinghouse nom +countries country nom +country country nom +countryman countryman nom +countrymen countryman nom +countryseat countryseat nom +countryseats countryseat nom +countryside countryside nom +countrysides countryside nom +countrywoman countrywoman nom +countrywomen countrywoman nom +counts count nom +county county nom +coup coup nom +coupe coupe nom +couped coup ver +coupes coupe nom +couping coup ver +couple couple nom +coupled couple ver +coupler coupler nom +couplers coupler nom +couples couple nom +couplet couplet nom +couplets couplet nom +coupling couple ver +coupon coupon nom +coupons coupon nom +coups coup nom +courage courage nom +courageousness courageousness nom +courageousnesses courageousness nom +courages courage nom +courbaril courbaril nom +courbarils courbaril nom +courgette courgette nom +courgettes courgette nom +courier courier nom +couriers courier nom +courlan courlan nom +courlans courlan nom +course course sw +coursed course ver +courser courser nom +coursers courser nom +courses course nom +coursing course ver +coursings coursing nom +court court nom +courted court ver +courteousness courteousness nom +courteousnesses courteousness nom +courtesan courtesan nom +courtesans courtesan nom +courtesied courtesy ver +courtesies courtesy nom +courtesy courtesy nom +courtesying courtesy ver +courthouse courthouse nom +courthouses courthouse nom +courtier courtier nom +courtiers courtier nom +courting court ver +courtings courting nom +courtlier courtly adj +courtliest courtly adj +courtliness courtliness nom +courtlinesses courtliness nom +courtly courtly adj +courtroom courtroom nom +courtrooms courtroom nom +courts court nom +courtship courtship nom +courtships courtship nom +courtyard courtyard nom +courtyards courtyard nom +couscous couscous nom +couscouses couscous nom +cousin cousin nom +cousins cousin nom +couth couth adj +couther couth adj +couthest couth adj +couthie couthie adj +couthier couthie adj +couthiest couthie adj +couthy couthy adj +couture couture nom +coutures couture nom +couturier couturier nom +couturiers couturier nom +couvade couvade nom +couvades couvade nom +covalence covalence nom +covalences covalence nom +covalencies covalency nom +covalency covalency nom +covariance covariance nom +covariances covariance nom +cove cove nom +coved cove ver +coven coven nom +covenant covenant nom +covenanted covenant ver +covenanting covenant ver +covenants covenant nom +covens coven nom +cover cover nom +coverage coverage nom +coverages coverage nom +coverall coverall nom +coveralls coverall nom +covered cover ver +covering cover ver +coverings covering nom +coverlet coverlet nom +coverlets coverlet nom +covers cover nom +covert covert nom +covertness covertness nom +covertnesses covertness nom +coverts covert nom +coverup coverup nom +coverups coverup nom +coves cove nom +covet covet ver +coveted covet ver +coveting covet ver +covetousness covetousness nom +covetousnesses covetousness nom +covets covet ver +covey covey nom +coveys covey nom +coving cove ver +cow cow nom +cowage cowage nom +cowages cowage nom +coward coward nom +cowardice cowardice nom +cowardices cowardice nom +cowardliness cowardliness nom +cowardlinesses cowardliness nom +cowards coward nom +cowbell cowbell nom +cowbells cowbell nom +cowberries cowberry nom +cowberry cowberry nom +cowbird cowbird nom +cowbirds cowbird nom +cowboy cowboy nom +cowboys cowboy nom +cowcatcher cowcatcher nom +cowcatchers cowcatcher nom +cowed cow ver +cower cower ver +cowered cower ver +cowering cower ver +cowers cower ver +cowfish cowfish nom +cowgirl cowgirl nom +cowgirls cowgirl nom +cowhand cowhand nom +cowhands cowhand nom +cowherb cowherb nom +cowherbs cowherb nom +cowherd cowherd nom +cowherds cowherd nom +cowhide cowhide nom +cowhided cowhide ver +cowhides cowhide nom +cowhiding cowhide ver +cowhouse cowhouse nom +cowhouses cowhouse nom +cowing cow ver +cowl cowl nom +cowled cowl ver +cowlick cowlick nom +cowlicks cowlick nom +cowling cowl ver +cowls cowl nom +cowman cowman nom +cowmen cowman nom +coworker coworker nom +coworkers coworker nom +cowpea cowpea nom +cowpeas cowpea nom +cowpoke cowpoke nom +cowpokes cowpoke nom +cowpox cowpox nom +cowpoxes cowpox nom +cowpuncher cowpuncher nom +cowpunchers cowpuncher nom +cowrie cowrie nom +cowries cowrie nom +cowry cowry nom +cows cow nom +cowshed cowshed nom +cowsheds cowshed nom +cowskin cowskin nom +cowskins cowskin nom +cowslip cowslip nom +cowslips cowslip nom +cox cox nom +coxa coxa nom +coxae coxa nom +coxcomb coxcomb nom +coxcombs coxcomb nom +coxed cox ver +coxes cox nom +coxing cox ver +coxsackievirus coxsackievirus nom +coxsackieviruses coxsackievirus nom +coxswain coxswain nom +coxswains coxswain nom +coy coy adj +coydog coydog nom +coydogs coydog nom +coyed coy ver +coyer coy adj +coyest coy adj +coying coy ver +coyness coyness nom +coynesses coyness nom +coyote coyote nom +coyotes coyote nom +coypu coypu nom +coypus coypu nom +coys coy ver +cozen cozen ver +cozenage cozenage nom +cozenages cozenage nom +cozened cozen ver +cozening cozen ver +cozens cozen ver +cozey cozey nom +cozeys cozey nom +cozie cozie nom +cozied cozy ver +cozier cozy adj +cozies cozie nom +coziest cozy adj +coziness coziness nom +cozinesses coziness nom +cozy cozy adj +cozying cozy ver +crab crab nom +crabbed crab ver +crabbedness crabbedness nom +crabbednesses crabbedness nom +crabber crabber nom +crabbers crabber nom +crabbier crabby adj +crabbiest crabby adj +crabbiness crabbiness nom +crabbinesses crabbiness nom +crabbing crab ver +crabby crabby adj +crabgrass crabgrass nom +crabgrasses crabgrass nom +crabmeat crabmeat nom +crabmeats crabmeat nom +crabs crab nom +crack crack nom +crackdown crackdown nom +crackdowns crackdown nom +cracked crack ver +cracker cracker nom +crackerjack crackerjack nom +crackerjacks crackerjack nom +crackers cracker nom +cracking crack ver +crackings cracking nom +crackle crackle nom +crackled crackle ver +crackles crackle nom +crackleware crackleware nom +cracklewares crackleware nom +cracklier crackly adj +crackliest crackly adj +crackling crackle ver +crackly crackly adj +crackpot crackpot nom +crackpots crackpot nom +cracks crack nom +cracksman cracksman nom +cracksmen cracksman nom +crackup crackup nom +crackups crackup nom +cradle cradle nom +cradled cradle ver +cradles cradle nom +cradlesong cradlesong nom +cradlesongs cradlesong nom +cradling cradle ver +craft craft nom +crafted craft ver +crafter crafter nom +crafters crafter nom +craftier crafty adj +craftiest crafty adj +craftiness craftiness nom +craftinesses craftiness nom +crafting craft ver +crafts craft nom +craftsman craftsman nom +craftsmanship craftsmanship nom +craftsmanships craftsmanship nom +craftsmen craftsman nom +craftswoman craftswoman nom +craftswomen craftswoman nom +crafty crafty adj +crag crag nom +craggier craggy adj +craggiest craggy adj +cragginess cragginess nom +cragginesses cragginess nom +craggy craggy adj +crags crag nom +cragsman cragsman nom +cragsmen cragsman nom +crake crake nom +crakes crake nom +cram cram nom +crammed cram ver +crammer crammer nom +crammers crammer nom +cramming cram ver +cramp cramp nom +cramped cramp ver +crampfish crampfish nom +cramping cramp ver +crampon crampon nom +crampons crampon nom +crampoon crampoon nom +crampoons crampoon nom +cramps cramp nom +crams cram nom +cran cran nom +cranberries cranberry nom +cranberry cranberry nom +cranch cranch ver +cranched cranch ver +cranches cranch ver +cranching cranch ver +crane crane nom +craned crane ver +cranes crane nom +cranesbill cranesbill nom +cranesbills cranesbill nom +craniate craniate nom +craniates craniate nom +craning crane ver +craniologist craniologist nom +craniologists craniologist nom +craniometer craniometer nom +craniometers craniometer nom +craniotomies craniotomy nom +craniotomy craniotomy nom +cranium cranium nom +craniums cranium nom +crank crank adj +crankcase crankcase nom +crankcases crankcase nom +cranked crank ver +cranker crank adj +crankest crank adj +crankier cranky adj +crankiest cranky adj +crankiness crankiness nom +crankinesses crankiness nom +cranking crank ver +cranks crank nom +crankshaft crankshaft nom +crankshafts crankshaft nom +cranky cranky adj +crannies cranny nom +cranny cranny nom +crans cran nom +crap crap nom +crapaud crapaud nom +crapauds crapaud nom +crape crape nom +craped crape ver +crapes crape nom +craping crape ver +crapped crap ver +crapper crapper nom +crappers crapper nom +crappie crappie nom +crappier crappy adj +crappiest crappy adj +crapping crap ver +crappy crappy adj +craps crap nom +crapshooter crapshooter nom +crapshooters crapshooter nom +crapulence crapulence nom +crapulences crapulence nom +crash crash nom +crashed crash ver +crasher crasher nom +crashers crasher nom +crashes crash nom +crashing crash ver +crass crass adj +crasser crass adj +crassest crass adj +crassitude crassitude nom +crassitudes crassitude nom +crassness crassness nom +crassnesses crassness nom +crate crate nom +crated crate ver +crater crater nom +cratered crater ver +cratering crater ver +craters crater nom +crates crate nom +crating crate ver +craunch craunch ver +craunched craunch ver +craunches craunch ver +craunching craunch ver +cravat cravat nom +cravats cravat nom +crave crave ver +craved crave ver +craven craven nom +cravened craven ver +cravening craven ver +cravenness cravenness nom +cravennesses cravenness nom +cravens craven nom +craves crave ver +craving crave ver +cravings craving nom +craw craw nom +crawdad crawdad nom +crawdaddies crawdaddy nom +crawdaddy crawdaddy nom +crawdads crawdad nom +crawfish crawfish nom +crawfished crawfish ver +crawfishes crawfish ver +crawfishing crawfish ver +crawl crawl nom +crawled crawl ver +crawler crawler nom +crawlers crawler nom +crawlier crawly adj +crawlies crawly nom +crawliest crawly adj +crawling crawl ver +crawls crawl nom +crawlspace crawlspace nom +crawlspaces crawlspace nom +crawly crawly adj +craws craw nom +crayfish crayfish nom +crayon crayon nom +crayoned crayon ver +crayoning crayon ver +crayons crayon nom +craze craze nom +crazed craze ver +crazes craze nom +crazier crazy adj +crazies crazy nom +craziest crazy adj +craziness craziness nom +crazinesses craziness nom +crazing craze ver +crazy crazy adj +crazyweed crazyweed nom +crazyweeds crazyweed nom +creak creak nom +creaked creak ver +creakier creaky adj +creakiest creaky adj +creakiness creakiness nom +creakinesses creakiness nom +creaking creak ver +creaks creak nom +creaky creaky adj +cream cream nom +creamed cream ver +creamer creamer nom +creameries creamery nom +creamers creamer nom +creamery creamery nom +creamier creamy adj +creamiest creamy adj +creaminess creaminess nom +creaminesses creaminess nom +creaming cream ver +creams cream nom +creamy creamy adj +crease crease nom +creased crease ver +creases crease nom +creasing crease ver +create create ver +created create ver +creates create ver +creatin creatin nom +creatine creatine nom +creatines creatine nom +creating create ver +creatins creatin nom +creation creation nom +creationism creationism nom +creationisms creationism nom +creationist creationist nom +creationists creationist nom +creations creation nom +creativeness creativeness nom +creativenesses creativeness nom +creativities creativity nom +creativity creativity nom +creator creator nom +creators creator nom +creature creature nom +creatures creature nom +creche creche nom +creches creche nom +credence credence nom +credences credence nom +credential credential nom +credentialed credential ver +credentialing credential ver +credentials credential nom +credenza credenza nom +credenzas credenza nom +credibilities credibility nom +credibility credibility nom +credibleness credibleness nom +crediblenesses credibleness nom +credit credit nom +credited credit ver +crediting credit ver +creditor creditor nom +creditors creditor nom +credits credit nom +creditworthiness creditworthiness nom +creditworthinesses creditworthiness nom +credo credo nom +credos credo nom +credulities credulity nom +credulity credulity nom +credulousness credulousness nom +credulousnesses credulousness nom +creed creed nom +creeds creed nom +creek creek nom +creeks creek nom +creel creel nom +creels creel nom +creep creep nom +creeper creeper nom +creepers creeper nom +creepier creepy adj +creepiest creepy adj +creepiness creepiness nom +creepinesses creepiness nom +creeping creep ver +creeps creep nom +creepy creepy adj +cremate cremate ver +cremated cremate ver +cremates cremate ver +cremating cremate ver +cremation cremation nom +cremations cremation nom +crematories crematory nom +crematorium crematorium nom +crematoriums crematorium nom +crematory crematory nom +creme creme nom +cremes creme nom +crenel crenel ver +crenelate crenelate ver +crenelated crenelate ver +crenelates crenelate ver +crenelating crenelate ver +crenelation crenelation nom +crenelations crenelation nom +creneled crenel ver +creneling crenel ver +crenellate crenellate ver +crenellated crenellate ver +crenellates crenellate ver +crenellating crenellate ver +crenellation crenellation nom +crenellations crenellation nom +crenels crenel ver +creole creole nom +creoles creole nom +creosote creosote nom +creosoted creosote ver +creosotes creosote nom +creosoting creosote ver +crepe crepe nom +creped crepe ver +crepes crepe nom +creping crepe ver +crepitate crepitate ver +crepitated crepitate ver +crepitates crepitate ver +crepitating crepitate ver +crepitation crepitation nom +crepitations crepitation nom +crept creep ver +crescendo crescendo nom +crescendoed crescendo ver +crescendoing crescendo ver +crescendos crescendo nom +crescent crescent nom +crescents crescent nom +cresol cresol nom +cresols cresol nom +cress cress nom +cresses cress nom +crest crest nom +crested crest ver +cresting crest ver +crests crest nom +cretin cretin nom +cretinism cretinism nom +cretinisms cretinism nom +cretins cretin nom +cretonne cretonne nom +cretonnes cretonne nom +crevasse crevasse nom +crevassed crevasse ver +crevasses crevasse nom +crevassing crevasse ver +crevice crevice nom +crevices crevice nom +crew crew nom +crewed crew ver +crewel crewel nom +crewels crewel nom +crewelwork crewelwork nom +crewelworks crewelwork nom +crewing crew ver +crewman crewman nom +crewmen crewman nom +crews crew nom +crib crib nom +cribbage cribbage nom +cribbages cribbage nom +cribbed crib ver +cribber cribber nom +cribbers cribber nom +cribbing crib ver +cribs crib nom +crick crick nom +cricked crick ver +cricket cricket nom +cricketed cricket ver +cricketer cricketer nom +cricketers cricketer nom +cricketing cricket ver +crickets cricket nom +cricking crick ver +cricks crick nom +cried cry ver +crier crier nom +criers crier nom +cries cry nom +crime crime nom +crimes crime nom +criminal criminal nom +criminalities criminality nom +criminality criminality nom +criminalize criminalize ver +criminalized criminalize ver +criminalizes criminalize ver +criminalizing criminalize ver +criminals criminal nom +criminate criminate ver +criminated criminate ver +criminates criminate ver +criminating criminate ver +criminologies criminology nom +criminologist criminologist nom +criminologists criminologist nom +criminology criminology nom +crimp crimp nom +crimped crimp ver +crimper crimper nom +crimpers crimper nom +crimping crimp ver +crimps crimp nom +crimson crimson nom +crimsoned crimson ver +crimsoning crimson ver +crimsons crimson nom +cringe cringe nom +cringed cringe ver +cringes cringe nom +cringing cringe ver +cringle cringle nom +cringles cringle nom +crinkle crinkle nom +crinkled crinkle ver +crinkleroot crinkleroot nom +crinkleroots crinkleroot nom +crinkles crinkle nom +crinklier crinkly adj +crinkliest crinkly adj +crinkling crinkle ver +crinkly crinkly adj +crinoid crinoid nom +crinoids crinoid nom +crinoline crinoline nom +crinolines crinoline nom +criollo criollo nom +criollos criollo nom +cripple cripple nom +crippled cripple ver +crippler crippler nom +cripplers crippler nom +cripples cripple nom +crippling cripple ver +crises crisis nom +crisis crisis nom +crisp crisp adj +crisped crisp ver +crisper crisp adj +crispest crisp adj +crispier crispy adj +crispiest crispy adj +crispiness crispiness nom +crispinesses crispiness nom +crisping crisp ver +crispness crispness nom +crispnesses crispness nom +crisps crisp nom +crispy crispy adj +crisscross crisscross nom +crisscrossed crisscross ver +crisscrosses crisscross nom +crisscrossing crisscross ver +criteria criterion nom +criterion criterion nom +crith crith nom +criths crith nom +critic critic nom +criticalities criticality nom +criticality criticality nom +criticalness criticalness nom +criticalnesses criticalness nom +criticise criticise ver +criticised criticise ver +criticises criticise ver +criticising criticise ver +criticism criticism nom +criticisms criticism nom +criticize criticize ver +criticized criticize ver +criticizer criticizer nom +criticizers criticizer nom +criticizes criticize ver +criticizing criticize ver +critics critic nom +critique critique nom +critiqued critique ver +critiques critique nom +critiquing critique ver +critter critter nom +critters critter nom +croak croak nom +croaked croak ver +croaker croaker nom +croakers croaker nom +croakier croaky adj +croakiest croaky adj +croaking croak ver +croakings croaking nom +croaks croak nom +croaky croaky adj +crochet crochet nom +crocheted crochet ver +crocheter crocheter nom +crocheters crocheter nom +crocheting crochet ver +crochetings crocheting nom +crochets crochet nom +crock crock nom +crocked crock ver +crockeries crockery nom +crockery crockery nom +crocket crocket nom +crockets crocket nom +crocking crock ver +crocks crock nom +crocodile crocodile nom +crocodiles crocodile nom +crocodilian crocodilian nom +crocodilians crocodilian nom +crocus crocus nom +crocuses crocus nom +croft croft nom +crofter crofter nom +crofters crofter nom +crofts croft nom +croissant croissant nom +croissants croissant nom +cromlech cromlech nom +cromlechs cromlech nom +cromorne cromorne nom +cromornes cromorne nom +crone crone nom +crones crone nom +cronies crony nom +crony crony nom +crook crook adj +crookback crookback nom +crookbacks crookback nom +crooked crook ver +crookeder crooked adj +crookedest crooked adj +crookedness crookedness nom +crookednesses crookedness nom +crooker crook adj +crookest crook adj +crooking crook ver +crookneck crookneck nom +crooknecks crookneck nom +crooks crook nom +croon croon nom +crooned croon ver +crooner crooner nom +crooners crooner nom +crooning croon ver +croonings crooning nom +croons croon nom +crop crop nom +cropland cropland nom +croplands cropland nom +cropped crop ver +cropper cropper nom +croppers cropper nom +cropping crop ver +crops crop nom +croquet croquet nom +croqueted croquet ver +croqueting croquet ver +croquets croquet nom +croquette croquette nom +croquettes croquette nom +crore crore nom +crores crore nom +crosier crosier nom +crosiers crosier nom +cross cross adj +crossbar crossbar nom +crossbars crossbar nom +crossbeam crossbeam nom +crossbeams crossbeam nom +crossbench crossbench nom +crossbencher crossbencher nom +crossbenchers crossbencher nom +crossbenches crossbench nom +crossbill crossbill nom +crossbills crossbill nom +crossbow crossbow nom +crossbowman crossbowman nom +crossbowmen crossbowman nom +crossbows crossbow nom +crossbred crossbreed ver +crossbreds crossbred nom +crossbreed crossbreed nom +crossbreeding crossbreed ver +crossbreeds crossbreed nom +crosscheck crosscheck nom +crosschecked crosscheck ver +crosschecking crosscheck ver +crosschecks crosscheck nom +crosscurrent crosscurrent nom +crosscurrents crosscurrent nom +crosscut crosscut ver +crosscuts crosscut nom +crosscutting crosscut ver +crosse crosse nom +crossed cross ver +crosser cross adj +crosses cross nom +crossest cross adj +crossfire crossfire nom +crossfires crossfire nom +crosshatch crosshatch nom +crosshatched crosshatch ver +crosshatches crosshatch nom +crosshatching crosshatch ver +crosshead crosshead nom +crossheads crosshead nom +crossing cross ver +crossings crossing nom +crossjack crossjack nom +crossjacks crossjack nom +crossness crossness nom +crossnesses crossness nom +crossopterygian crossopterygian nom +crossopterygians crossopterygian nom +crossover crossover nom +crossovers crossover nom +crosspatch crosspatch nom +crosspatches crosspatch nom +crosspiece crosspiece nom +crosspieces crosspiece nom +crossroad crossroad nom +crossroads crossroad nom +crossruff crossruff ver +crossruffed crossruff ver +crossruffing crossruff ver +crossruffs crossruff ver +crosstalk crosstalk nom +crosstalks crosstalk nom +crosstie crosstie nom +crossties crosstie nom +crosstown crosstown nom +crosstowns crosstown nom +crosswalk crosswalk nom +crosswalks crosswalk nom +crossway crossway nom +crossways crossway nom +crosswind crosswind nom +crosswinds crosswind nom +crossword crossword nom +crosswords crossword nom +crotal crotal nom +crotalaria crotalaria nom +crotalarias crotalaria nom +crotals crotal nom +crotch crotch nom +crotches crotch nom +crotchet crotchet nom +crotchetiness crotchetiness nom +crotchetinesses crotchetiness nom +crotchets crotchet nom +croton croton nom +crotons croton nom +crottle crottle nom +crottles crottle nom +crouch crouch nom +crouched crouch ver +crouches crouch nom +crouching crouch ver +croup croup nom +croupe croupe nom +croupes croupe nom +croupier croupy adj +croupiers croupier nom +croupiest croupy adj +croups croup nom +croupy croupy adj +crouton crouton nom +croutons crouton nom +crow crow nom +crowbar crowbar nom +crowbarred crowbar ver +crowbarring crowbar ver +crowbars crowbar nom +crowberries crowberry nom +crowberry crowberry nom +crowd crowd nom +crowded crowd ver +crowding crowd ver +crowds crowd nom +crowed crow ver +crowfeet crowfoot nom +crowfoot crowfoot nom +crowing crow ver +crown crown nom +crowned crown ver +crowning crown ver +crownings crowning nom +crowns crown nom +crownwork crownwork nom +crownworks crownwork nom +crows crow nom +crozier crozier nom +croziers crozier nom +crucible crucible nom +crucibles crucible nom +crucifer crucifer nom +crucifers crucifer nom +crucified crucify ver +crucifies crucify ver +crucifix crucifix nom +crucifixes crucifix nom +crucifixion crucifixion nom +crucifixions crucifixion nom +cruciform cruciform nom +cruciforms cruciform nom +crucify crucify ver +crucifying crucify ver +crud crud nom +crudded crud ver +cruddier cruddy adj +cruddiest cruddy adj +crudding crud ver +cruddy cruddy adj +crude crude adj +crudeness crudeness nom +crudenesses crudeness nom +cruder crude adj +crudes crude nom +crudest crude adj +crudities crudity nom +crudity crudity nom +cruds crud nom +cruel cruel adj +crueler cruel adj +cruelest cruel adj +cruelness cruelness nom +cruelnesses cruelness nom +cruelties cruelty nom +cruelty cruelty nom +cruet cruet nom +cruets cruet nom +cruise cruise nom +cruised cruise ver +cruiser cruiser nom +cruisers cruiser nom +cruiserweight cruiserweight nom +cruiserweights cruiserweight nom +cruises cruise nom +cruising cruise ver +cruller cruller nom +crullers cruller nom +crumb crumb nom +crumbed crumb ver +crumbier crumby adj +crumbiest crumby adj +crumbing crumb ver +crumble crumble nom +crumbled crumble ver +crumbles crumble nom +crumblier crumbly adj +crumbliest crumbly adj +crumbliness crumbliness nom +crumblinesses crumbliness nom +crumbling crumble ver +crumbly crumbly adj +crumbs crumb nom +crumby crumby adj +crumhorn crumhorn nom +crumhorns crumhorn nom +crummier crummy adj +crummies crummy nom +crummiest crummy adj +crumminess crumminess nom +crumminesses crumminess nom +crummy crummy adj +crump crump ver +crumped crump ver +crumpet crumpet nom +crumpets crumpet nom +crumping crump ver +crumple crumple nom +crumpled crumple ver +crumples crumple nom +crumpling crumple ver +crumps crump ver +crunch crunch nom +crunched crunch ver +crunches crunch nom +crunchier crunchy adj +crunchiest crunchy adj +crunchiness crunchiness nom +crunchinesses crunchiness nom +crunching crunch ver +crunchy crunchy adj +crupper crupper nom +cruppers crupper nom +crus crus nom +crusade crusade nom +crusaded crusade ver +crusader crusader nom +crusaders crusader nom +crusades crusade nom +crusading crusade ver +cruse cruse nom +cruses crus nom +crush crush nom +crushed crush ver +crusher crusher nom +crushers crusher nom +crushes crush nom +crushing crush ver +crust crust nom +crustacean crustacean nom +crustaceans crustacean nom +crusted crust ver +crustier crusty adj +crustiest crusty adj +crustiness crustiness nom +crustinesses crustiness nom +crusting crust ver +crusts crust nom +crusty crusty adj +crutch crutch nom +crutched crutch ver +crutches crutch nom +crutching crutch ver +crux crux nom +cruxes crux nom +cruzeiro cruzeiro nom +cruzeiros cruzeiro nom +cry cry nom +crybabies crybaby nom +crybaby crybaby nom +crying cry ver +cryings crying nom +cryogen cryogen nom +cryogenies cryogeny nom +cryogens cryogen nom +cryogeny cryogeny nom +cryolite cryolite nom +cryolites cryolite nom +cryometer cryometer nom +cryometers cryometer nom +cryoscope cryoscope nom +cryoscopes cryoscope nom +cryostat cryostat nom +cryostats cryostat nom +cryosurgeries cryosurgery nom +cryosurgery cryosurgery nom +crypt crypt nom +cryptococcoses cryptococcosis nom +cryptococcosis cryptococcosis nom +cryptogam cryptogam nom +cryptogams cryptogam nom +cryptogram cryptogram nom +cryptograms cryptogram nom +cryptograph cryptograph nom +cryptographer cryptographer nom +cryptographers cryptographer nom +cryptographies cryptography nom +cryptographs cryptograph nom +cryptography cryptography nom +cryptorchidism cryptorchidism nom +cryptorchidisms cryptorchidism nom +cryptorchism cryptorchism nom +cryptorchisms cryptorchism nom +crypts crypt nom +crystal crystal nom +crystaled crystal ver +crystaling crystal ver +crystalize crystalize ver +crystalized crystalize ver +crystalizes crystalize ver +crystalizing crystalize ver +crystallite crystallite nom +crystallites crystallite nom +crystallization crystallization nom +crystallizations crystallization nom +crystallize crystallize ver +crystallized crystallize ver +crystallizes crystallize ver +crystallizing crystallize ver +crystallographies crystallography nom +crystallography crystallography nom +crystals crystal nom +ctene ctene nom +ctenes ctene nom +ctenidia ctenidium nom +ctenidium ctenidium nom +ctenophore ctenophore nom +ctenophores ctenophore nom +cub cub nom +cubbed cub ver +cubbies cubby nom +cubbing cub ver +cubby cubby nom +cubbyhole cubbyhole nom +cubbyholes cubbyhole nom +cube cube nom +cubeb cubeb nom +cubebs cubeb nom +cubed cube ver +cuber cuber nom +cubers cuber nom +cubes cube nom +cubic cubic nom +cubicities cubicity nom +cubicity cubicity nom +cubicle cubicle nom +cubicles cubicle nom +cubics cubic nom +cubing cube ver +cubism cubism nom +cubisms cubism nom +cubist cubist nom +cubists cubist nom +cubit cubit nom +cubits cubit nom +cubitus cubitus nom +cubituses cubitus nom +cuboid cuboid nom +cuboids cuboid nom +cubs cub nom +cuckold cuckold nom +cuckolded cuckold ver +cuckolding cuckold ver +cuckoldries cuckoldry nom +cuckoldry cuckoldry nom +cuckolds cuckold nom +cuckoo cuckoo nom +cuckooed cuckoo ver +cuckooflower cuckooflower nom +cuckooflowers cuckooflower nom +cuckooing cuckoo ver +cuckoopint cuckoopint nom +cuckoopints cuckoopint nom +cuckoos cuckoo nom +cucumber cucumber nom +cucumbers cucumber nom +cucurbit cucurbit nom +cucurbits cucurbit nom +cud cud nom +cudbear cudbear nom +cudbears cudbear nom +cuddies cuddy nom +cuddle cuddle nom +cuddled cuddle ver +cuddles cuddle nom +cuddlier cuddly adj +cuddliest cuddly adj +cuddling cuddle ver +cuddly cuddly adj +cuddy cuddy nom +cudgel cudgel nom +cudgeled cudgel ver +cudgeling cudgel ver +cudgels cudgel nom +cuds cud nom +cudweed cudweed nom +cudweeds cudweed nom +cue cue nom +cued cue ver +cues cue nom +cuff cuff nom +cuffed cuff ver +cuffing cuff ver +cufflink cufflink nom +cufflinks cufflink nom +cuffs cuff nom +cuing cue ver +cuirass cuirass nom +cuirasses cuirass nom +cuirassier cuirassier nom +cuirassiers cuirassier nom +cuisine cuisine nom +cuisines cuisine nom +cuisse cuisse nom +cuisses cuisse nom +cuke cuke nom +cukes cuke nom +cull cull nom +culled cull ver +cullender cullender nom +cullenders cullender nom +culling cull ver +cullis cullis nom +cullises cullis nom +culls cull nom +culm culm nom +culminate culminate ver +culminated culminate ver +culminates culminate ver +culminating culminate ver +culmination culmination nom +culminations culmination nom +culms culm nom +culotte culotte nom +culottes culotte nom +culpabilities culpability nom +culpability culpability nom +culpableness culpableness nom +culpablenesses culpableness nom +culprit culprit nom +culprits culprit nom +cult cult nom +cultism cultism nom +cultisms cultism nom +cultist cultist nom +cultists cultist nom +cultivar cultivar nom +cultivars cultivar nom +cultivate cultivate ver +cultivated cultivate ver +cultivates cultivate ver +cultivating cultivate ver +cultivation cultivation nom +cultivations cultivation nom +cultivator cultivator nom +cultivators cultivator nom +cults cult nom +culture culture nom +cultured culture ver +cultures culture nom +culturing culture ver +culvert culvert nom +culverts culvert nom +cumber cumber nom +cumbered cumber ver +cumbering cumber ver +cumbers cumber nom +cumbersomeness cumbersomeness nom +cumbersomenesses cumbersomeness nom +cumin cumin nom +cumins cumin nom +cummerbund cummerbund nom +cummerbunds cummerbund nom +cumquat cumquat nom +cumquats cumquat nom +cumulate cumulate ver +cumulated cumulate ver +cumulates cumulate ver +cumulating cumulate ver +cumuli cumulus nom +cumulonimbi cumulonimbus nom +cumulonimbus cumulonimbus nom +cumulus cumulus nom +cunctation cunctation nom +cunctations cunctation nom +cunctator cunctator nom +cunctators cunctator nom +cuneiform cuneiform nom +cuneiforms cuneiform nom +cunner cunner nom +cunners cunner nom +cunnilinctus cunnilinctus nom +cunnilinctuses cunnilinctus nom +cunnilingus cunnilingus nom +cunnilinguses cunnilingus nom +cunning cunning adj +cunninger cunning adj +cunningest cunning adj +cunnings cunning nom +cunt cunt nom +cunts cunt nom +cup cup nom +cupbearer cupbearer nom +cupbearers cupbearer nom +cupboard cupboard nom +cupboards cupboard nom +cupcake cupcake nom +cupcakes cupcake nom +cupel cupel nom +cupels cupel nom +cupful cupful nom +cupfuls cupful nom +cupid cupid nom +cupidities cupidity nom +cupidity cupidity nom +cupids cupid nom +cupola cupola nom +cupolas cupola nom +cuppa cuppa nom +cuppas cuppa nom +cupped cup ver +cupper cupper nom +cuppers cupper nom +cupping cup ver +cuppings cupping nom +cuprite cuprite nom +cuprites cuprite nom +cupronickel cupronickel nom +cupronickels cupronickel nom +cups cup nom +cupule cupule nom +cupules cupule nom +cur cur nom +curabilities curability nom +curability curability nom +curableness curableness nom +curablenesses curableness nom +curacao curacao nom +curacaos curacao nom +curacies curacy nom +curacoa curacoa nom +curacoas curacoa nom +curacy curacy nom +curare curare nom +curares curare nom +curassow curassow nom +curassows curassow nom +curate curate nom +curates curate nom +curative curative nom +curatives curative nom +curator curator nom +curators curator nom +curatorship curatorship nom +curatorships curatorship nom +curb curb nom +curbed curb ver +curbing curb ver +curbings curbing nom +curbs curb nom +curbside curbside nom +curbsides curbside nom +curbstone curbstone nom +curbstones curbstone nom +curd curd nom +curded curd ver +curding curd ver +curdle curdle ver +curdled curdle ver +curdles curdle ver +curdling curdle ver +curds curd nom +cure cure nom +cured cure ver +curer curer nom +curers curer nom +cures cure nom +curet curet nom +curets curet nom +curettage curettage nom +curettages curettage nom +curette curette nom +curettement curettement nom +curettements curettement nom +curettes curette nom +curfew curfew nom +curfews curfew nom +curia curia nom +curiae curia nom +curie curie nom +curies curie nom +curing cure ver +curio curio nom +curios curio nom +curiosities curiosity nom +curiosity curiosity nom +curious curious adj +curiouser curious adj +curiousest curious adj +curiousness curiousness nom +curiousnesses curiousness nom +curium curium nom +curiums curium nom +curl curl nom +curled curl ver +curler curler nom +curlers curler nom +curlew curlew nom +curlews curlew nom +curlicue curlicue nom +curlicued curlicue ver +curlicues curlicue nom +curlicuing curlicue ver +curlier curly adj +curliest curly adj +curliness curliness nom +curlinesses curliness nom +curling curl ver +curls curl nom +curly curly adj +curlycue curlycue nom +curlycues curlycue nom +curmudgeon curmudgeon nom +curmudgeons curmudgeon nom +currant currant nom +currants currant nom +currawong currawong nom +currawongs currawong nom +currencies currency nom +currency currency nom +current current nom +currently currently sw +currentness currentness nom +currentnesses currentness nom +currents current nom +curricula curriculum nom +curriculum curriculum nom +curried curry ver +curries curry nom +curry curry nom +currycomb currycomb nom +currycombed currycomb ver +currycombing currycomb ver +currycombs currycomb nom +currying curry ver +curs cur nom +curse curse nom +cursed curse ver +curseder cursed adj +cursedest cursed adj +curses curse nom +cursing curse ver +cursive cursive nom +cursives cursive nom +cursor cursor nom +cursoriness cursoriness nom +cursorinesses cursoriness nom +cursors cursor nom +curt curt adj +curtail curtail ver +curtailed curtail ver +curtailing curtail ver +curtailment curtailment nom +curtailments curtailment nom +curtails curtail ver +curtain curtain nom +curtained curtain ver +curtaining curtain ver +curtains curtain nom +curter curt adj +curtest curt adj +curtness curtness nom +curtnesses curtness nom +curtsey curtsey nom +curtseyed curtsey ver +curtseying curtsey ver +curtseys curtsey nom +curtsied curtsy ver +curtsies curtsy nom +curtsy curtsy nom +curtsying curtsy ver +curvaceousness curvaceousness nom +curvaceousnesses curvaceousness nom +curvature curvature nom +curvatures curvature nom +curve curve nom +curved curve ver +curves curve nom +curvet curvet nom +curvets curvet nom +curvetted curvet ver +curvetting curvet ver +curvey curvey adj +curvier curvey adj +curviest curvey adj +curving curve ver +curvy curvy adj +cuscus cuscus nom +cuscuses cuscus nom +cushat cushat nom +cushats cushat nom +cushaw cushaw nom +cushaws cushaw nom +cushier cushy adj +cushiest cushy adj +cushion cushion nom +cushioned cushion ver +cushioning cushion ver +cushions cushion nom +cushy cushy adj +cusk cusk nom +cusks cusk nom +cusp cusp nom +cuspid cuspid nom +cuspidation cuspidation nom +cuspidations cuspidation nom +cuspidor cuspidor nom +cuspidors cuspidor nom +cuspids cuspid nom +cusps cusp nom +cuss cuss nom +cussed cuss ver +cussedness cussedness nom +cussednesses cussedness nom +cusses cuss nom +cussing cuss ver +custard custard nom +custards custard nom +custodial custodial nom +custodials custodial nom +custodian custodian nom +custodians custodian nom +custodianship custodianship nom +custodianships custodianship nom +custodies custody nom +custody custody nom +custom custom nom +customaries customary nom +customary customary nom +customer customer nom +customers customer nom +customhouse customhouse nom +customhouses customhouse nom +customise customise ver +customised customise ver +customises customise ver +customising customise ver +customization customization nom +customizations customization nom +customize customize ver +customized customize ver +customizes customize ver +customizing customize ver +customs custom nom +cut cut ver +cutaway cutaway nom +cutaways cutaway nom +cutback cutback nom +cutbacks cutback nom +cutch cutch nom +cutches cutch nom +cute cute adj +cuteness cuteness nom +cutenesses cuteness nom +cuter cute adj +cutesie cutesie adj +cutesier cutesie adj +cutesiest cutesie adj +cutest cut adj +cutesy cutesy adj +cuticle cuticle nom +cuticles cuticle nom +cuticula cuticula nom +cuticulae cuticula nom +cutis cutis nom +cutises cutis nom +cutlas cutlas nom +cutlases cutlas nom +cutlass cutlass nom +cutlasses cutlass nom +cutlassfish cutlassfish nom +cutler cutler nom +cutleries cutlery nom +cutlers cutler nom +cutlery cutlery nom +cutlet cutlet nom +cutlets cutlet nom +cutoff cutoff nom +cutoffs cutoff nom +cutout cutout nom +cutouts cutout nom +cutpurse cutpurse nom +cutpurses cutpurse nom +cuts cut nom +cutter cut adj +cutters cutter nom +cutthroat cutthroat nom +cutthroats cutthroat nom +cutting cut ver +cuttings cutting nom +cuttle cuttle nom +cuttlefish cuttlefish nom +cuttles cuttle nom +cutup cutup nom +cutups cutup nom +cutwork cutwork nom +cutworks cutwork nom +cutworm cutworm nom +cutworms cutworm nom +cwm cwm nom +cwms cwm nom +cyan cyan nom +cyanamid cyanamid nom +cyanamide cyanamide nom +cyanamides cyanamide nom +cyanamids cyanamid nom +cyanide cyanide nom +cyanided cyanide ver +cyanides cyanide nom +cyaniding cyanide ver +cyanocobalamin cyanocobalamin nom +cyanocobalamins cyanocobalamin nom +cyanogen cyanogen nom +cyanogens cyanogen nom +cyanohydrin cyanohydrin nom +cyanohydrins cyanohydrin nom +cyanoses cyanosis nom +cyanosis cyanosis nom +cyans cyan nom +cyberpunk cyberpunk nom +cyberpunks cyberpunk nom +cyberspace cyberspace nom +cyberspaces cyberspace nom +cyborg cyborg nom +cyborgs cyborg nom +cycad cycad nom +cycads cycad nom +cyclamen cyclamen nom +cyclamens cyclamen nom +cycle cycle nom +cycled cycle ver +cycles cycle nom +cyclical cyclical nom +cyclicals cyclical nom +cyclicities cyclicity nom +cyclicity cyclicity nom +cycling cycle ver +cyclings cycling nom +cyclist cyclist nom +cyclists cyclist nom +cycloid cycloid nom +cycloids cycloid nom +cyclometer cyclometer nom +cyclometers cyclometer nom +cyclone cyclone nom +cyclones cyclone nom +cyclopaedia cyclopaedia nom +cyclopaedias cyclopaedia nom +cyclopedia cyclopedia nom +cyclopedias cyclopedia nom +cyclopes cyclops nom +cyclopropane cyclopropane nom +cyclopropanes cyclopropane nom +cyclops cyclops nom +cyclorama cyclorama nom +cycloramas cyclorama nom +cycloserine cycloserine nom +cycloserines cycloserine nom +cycloses cyclosis nom +cyclosis cyclosis nom +cyclostome cyclostome nom +cyclostomes cyclostome nom +cyclostyle cyclostyle nom +cyclostyled cyclostyle ver +cyclostyles cyclostyle nom +cyclostyling cyclostyle ver +cyclothymia cyclothymia nom +cyclothymias cyclothymia nom +cyclotron cyclotron nom +cyclotrons cyclotron nom +cyder cyder nom +cyders cyder nom +cygnet cygnet nom +cygnets cygnet nom +cylinder cylinder nom +cylindered cylinder ver +cylindering cylinder ver +cylinders cylinder nom +cylindricalities cylindricality nom +cylindricality cylindricality nom +cyma cyma nom +cymas cyma nom +cymatium cymatium nom +cymatiums cymatium nom +cymbal cymbal nom +cymbalist cymbalist nom +cymbalists cymbalist nom +cymbals cymbal nom +cymbidium cymbidium nom +cymbidiums cymbidium nom +cyme cyme nom +cymes cyme nom +cymling cymling nom +cymlings cymling nom +cymograph cymograph nom +cymographs cymograph nom +cynic cynic nom +cynicism cynicism nom +cynicisms cynicism nom +cynics cynic nom +cynosure cynosure nom +cynosures cynosure nom +cypher cypher nom +cyphered cypher ver +cyphering cypher ver +cyphers cypher nom +cypre cypre nom +cypres cypre nom +cypress cypress nom +cypresses cypress nom +cyprian cyprian nom +cyprians cyprian nom +cyprinid cyprinid nom +cyprinids cyprinid nom +cyprinodont cyprinodont nom +cyprinodonts cyprinodont nom +cyproheptadine cyproheptadine nom +cyproheptadines cyproheptadine nom +cyst cyst nom +cysteine cysteine nom +cysteines cysteine nom +cystine cystine nom +cystines cystine nom +cystitides cystitis nom +cystitis cystitis nom +cystocele cystocele nom +cystoceles cystocele nom +cystolith cystolith nom +cystoliths cystolith nom +cysts cyst nom +cytogeneses cytogenesis nom +cytogenesis cytogenesis nom +cytologies cytology nom +cytologist cytologist nom +cytologists cytologist nom +cytology cytology nom +cytolyses cytolysis nom +cytolysis cytolysis nom +cytomegalovirus cytomegalovirus nom +cytomegaloviruses cytomegalovirus nom +cytoplasm cytoplasm nom +cytoplasms cytoplasm nom +cytosine cytosine nom +cytosines cytosine nom +cytotoxin cytotoxin nom +cytotoxins cytotoxin nom +czar czar nom +czarina czarina nom +czarinas czarina nom +czarist czarist nom +czarists czarist nom +czaritza czaritza nom +czaritzas czaritza nom +czars czar nom +d d sw +dab dab nom +dabbed dab ver +dabber dabber nom +dabbers dabber nom +dabbing dab ver +dabble dabble ver +dabbled dabble ver +dabbler dabbler nom +dabblers dabbler nom +dabbles dabble ver +dabbling dabble ver +dabchick dabchick nom +dabchicks dabchick nom +dabs dab nom +dace dace nom +dacha dacha nom +dachas dacha nom +dachshund dachshund nom +dachshunds dachshund nom +dacoit dacoit nom +dacoities dacoity nom +dacoits dacoit nom +dacoity dacoity nom +dacron dacron nom +dacrons dacron nom +dactyl dactyl nom +dactylic dactylic nom +dactylics dactylic nom +dactyls dactyl nom +dad dad nom +dada dada nom +dadaism dadaism nom +dadaisms dadaism nom +dadaist dadaist nom +dadaists dadaist nom +dadas dada nom +daddies daddy nom +daddy daddy nom +dado dado nom +dadoed dado ver +dadoes dado nom +dadoing dado ver +dads dad nom +daemon daemon nom +daemons daemon nom +daffier daffy adj +daffiest daffy adj +daffiness daffiness nom +daffinesses daffiness nom +daffodil daffodil nom +daffodils daffodil nom +daffy daffy adj +daft daft adj +dafter daft adj +daftest daft adj +daftness daftness nom +daftnesses daftness nom +dag dag nom +dagga dagga nom +daggas dagga nom +dagger dagger nom +daggered dagger ver +daggering dagger ver +daggers dagger nom +dago dago nom +dagoes dago nom +dagos dago nom +dags dag nom +daguerreotype daguerreotype nom +daguerreotyped daguerreotype ver +daguerreotypes daguerreotype nom +daguerreotyping daguerreotype ver +dah dah nom +dahl dahl nom +dahlia dahlia nom +dahlias dahlia nom +dahls dahl nom +dahs dah nom +daikon daikon nom +daikons daikon nom +dailies daily nom +dailiness dailiness nom +dailinesses dailiness nom +daily daily nom +daimon daimon nom +daimons daimon nom +daintier dainty adj +dainties dainty nom +daintiest dainty adj +daintiness daintiness nom +daintinesses daintiness nom +dainty dainty adj +daiquiri daiquiri nom +daiquiris daiquiri nom +dairies dairy nom +dairy dairy nom +dairying dairying nom +dairyings dairying nom +dairymaid dairymaid nom +dairymaids dairymaid nom +dairyman dairyman nom +dairymen dairyman nom +dairywoman dairywoman nom +dairywomen dairywoman nom +dais dais nom +daises dais nom +daisies daisy nom +daisy daisy nom +dak dak nom +dakoit dakoit nom +dakoities dakoity nom +dakoits dakoit nom +dakoity dakoity nom +daks dak nom +dal dal nom +dalasi dalasi nom +dalasis dalasi nom +dale dale nom +dales dale nom +dalesman dalesman nom +dalesmen dalesman nom +daleth daleth nom +daleths daleth nom +dali dalo nom +dalliance dalliance nom +dalliances dalliance nom +dallied dally ver +dallier dallier nom +dalliers dallier nom +dallies dally ver +dally dally ver +dallying dally ver +dalmatian dalmatian nom +dalmatians dalmatian nom +dalo dalo nom +dals dal nom +daltonism daltonism nom +daltonisms daltonism nom +dam dam nom +damage damage nom +damaged damage ver +damages damage nom +damaging damage ver +damar damar nom +damars damar nom +damascene damascene nom +damascened damascene ver +damascenes damascene nom +damascening damascene ver +damask damask nom +damasked damask ver +damasking damask ver +damasks damask nom +dame dame nom +dames dame nom +daminozide daminozide nom +daminozides daminozide nom +dammar dammar nom +dammars dammar nom +dammed dam ver +damming dam ver +damn damn nom +damnation damnation nom +damnations damnation nom +damndest damndest nom +damndests damndest nom +damned damn ver +damneder damned adj +damnedest damned adj +damnedests damnedest nom +damning damn ver +damns damn nom +damoiselle damoiselle nom +damoiselles damoiselle nom +damosel damosel nom +damosels damosel nom +damozel damozel nom +damozels damozel nom +damp damp adj +damped damp ver +dampen dampen ver +dampened dampen ver +dampener dampener nom +dampeners dampener nom +dampening dampen ver +dampens dampen ver +damper damp adj +dampers damper nom +dampest damp adj +damping damp ver +dampness dampness nom +dampnesses dampness nom +damps damp nom +dams dam nom +damsel damsel nom +damselfish damselfish nom +damselflies damselfly nom +damselfly damselfly nom +damsels damsel nom +damson damson nom +damsons damson nom +dance dance nom +danced dance ver +dancer dancer nom +dancers dancer nom +dances dance nom +dancing dance ver +dancings dancing nom +dandelion dandelion nom +dandelions dandelion nom +dander dander nom +danders dander nom +dandier dandy adj +dandies dandy nom +dandiest dandy adj +dandified dandify ver +dandifies dandify ver +dandify dandify ver +dandifying dandify ver +dandle dandle ver +dandled dandle ver +dandles dandle ver +dandling dandle ver +dandruff dandruff nom +dandruffs dandruff nom +dandy dandy adj +danewort danewort nom +daneworts danewort nom +dang dang ver +danged dang ver +danger danger nom +dangerousness dangerousness nom +dangerousnesses dangerousness nom +dangers danger nom +danging dang ver +dangle dangle nom +dangleberries dangleberry nom +dangleberry dangleberry nom +dangled dangle ver +dangler dangler nom +danglers dangler nom +dangles dangle nom +dangling dangle ver +dangs dang ver +danish danish nom +danishes danish nom +dank dank adj +danker dank adj +dankest dank adj +dankness dankness nom +danknesses dankness nom +danseur danseur nom +danseurs danseur nom +danseuse danseuse nom +danseuses danseuse nom +daphne daphne nom +daphnes daphne nom +daphnia daphnia nom +daphnias daphnia nom +dapper dapper adj +dapperer dapper adj +dapperest dapper adj +dapperness dapperness nom +dappernesses dapperness nom +dapple dapple nom +dappled dapple ver +dapples dapple nom +dappling dapple ver +daraf daraf nom +darafs daraf nom +dare dare nom +dared dare ver +daredevil daredevil nom +daredevilries daredevilry nom +daredevilry daredevilry nom +daredevils daredevil nom +daredeviltries daredeviltry nom +daredeviltry daredeviltry nom +darer darer nom +darers darer nom +dares dare nom +daring dare ver +darings daring nom +dark dark adj +darked dark ver +darken darken ver +darkened darken ver +darkener darkener nom +darkeners darkener nom +darkening darken ver +darkens darken ver +darker dark adj +darkest dark adj +darkey darkey nom +darkeys darkey nom +darkie darkie nom +darkies darkie nom +darking dark ver +darklier darkly adj +darkliest darkly adj +darkly darkly adj +darkness darkness nom +darknesses darkness nom +darkroom darkroom nom +darkrooms darkroom nom +darks dark nom +darky darky nom +darling darling nom +darlings darling nom +darn darn nom +darned darn ver +darneder darned adj +darnedest darned adj +darnel darnel nom +darnels darnel nom +darner darner nom +darners darner nom +darning darn ver +darnings darning nom +darns darn nom +dart dart nom +dartboard dartboard nom +dartboards dartboard nom +darted dart ver +darter darter nom +darters darter nom +darting dart ver +darts dart nom +dash dash nom +dashboard dashboard nom +dashboards dashboard nom +dashed dash ver +dasheen dasheen nom +dasheens dasheen nom +dasher dasher nom +dashers dasher nom +dashes dash nom +dashiki dashiki nom +dashikis dashiki nom +dashing dash ver +dassie dassie nom +dassies dassie nom +dastard dastard nom +dastardliness dastardliness nom +dastardlinesses dastardliness nom +dastards dastard nom +dasyure dasyure nom +dasyures dasyure nom +dasyurid dasyurid nom +dasyurids dasyurid nom +data datum nom +databank databank nom +databanks databank nom +database database nom +databases database nom +date date nom +dated date ver +dateline dateline nom +datelined dateline ver +datelines dateline nom +datelining dateline ver +dater dater nom +daters dater nom +dates date nom +dating date ver +dative dative nom +datives dative nom +datum datum nom +datums datum nom +daub daub nom +daubed daub ver +dauber dauber nom +daubers dauber nom +daubing daub ver +daubings daubing nom +daubs daub nom +daughter daughter nom +daughters daughter nom +daunt daunt ver +daunted daunt ver +daunting daunt ver +dauntlessness dauntlessness nom +dauntlessnesses dauntlessness nom +daunts daunt ver +dauphin dauphin nom +dauphins dauphin nom +davenport davenport nom +davenports davenport nom +davit davit nom +davits davit nom +daw daw nom +dawdle dawdle ver +dawdled dawdle ver +dawdler dawdler nom +dawdlers dawdler nom +dawdles dawdle ver +dawdling dawdle ver +dawdlings dawdling nom +dawn dawn nom +dawned dawn ver +dawning dawn ver +dawnings dawning nom +dawns dawn nom +daws daw nom +day day nom +daybed daybed nom +daybeds daybed nom +daybook daybook nom +daybooks daybook nom +daybreak daybreak nom +daybreaks daybreak nom +daycare daycare nom +daycares daycare nom +daydream daydream nom +daydreamed daydream ver +daydreamer daydreamer nom +daydreamers daydreamer nom +daydreaming daydream ver +daydreams daydream nom +dayflies dayfly nom +dayflower dayflower nom +dayflowers dayflower nom +dayfly dayfly nom +daylight daylight nom +daylighted daylight ver +daylighting daylight ver +daylights daylight nom +daylilies daylily nom +daylily daylily nom +days day nom +dayspring dayspring nom +daysprings dayspring nom +daytime daytime nom +daytimes daytime nom +daze daze nom +dazed daze ver +dazes daze nom +dazing daze ver +dazzle dazzle nom +dazzled dazzle ver +dazzler dazzler nom +dazzlers dazzler nom +dazzles dazzle nom +dazzling dazzle ver +deaccession deaccession ver +deaccessioned deaccession ver +deaccessioning deaccession ver +deaccessions deaccession ver +deacon deacon nom +deaconed deacon ver +deaconess deaconess nom +deaconesses deaconess nom +deaconing deacon ver +deacons deacon nom +deactivate deactivate ver +deactivated deactivate ver +deactivates deactivate ver +deactivating deactivate ver +deactivation deactivation nom +deactivations deactivation nom +dead dead nom +deadbeat deadbeat nom +deadbeats deadbeat nom +deadbolt deadbolt nom +deadbolts deadbolt nom +deaden deaden ver +deadened deaden ver +deadening deaden ver +deadenings deadening nom +deadens deaden ver +deader dead adj +deadest dead adj +deadhead deadhead nom +deadheads deadhead nom +deadlier deadly adj +deadliest deadly adj +deadlight deadlight nom +deadlights deadlight nom +deadline deadline nom +deadlines deadline nom +deadliness deadliness nom +deadlinesses deadliness nom +deadlock deadlock nom +deadlocked deadlock ver +deadlocking deadlock ver +deadlocks deadlock nom +deadly deadly adj +deadness deadness nom +deadnesses deadness nom +deadpan deadpan nom +deadpanned deadpan ver +deadpanning deadpan ver +deadpans deadpan nom +deadweight deadweight nom +deadweights deadweight nom +deadwood deadwood nom +deadwoods deadwood nom +deaf deaf adj +deafen deafen ver +deafened deafen ver +deafening deafen ver +deafenings deafening nom +deafens deafen ver +deafer deaf adj +deafest deaf adj +deafness deafness nom +deafnesses deafness nom +deal deal nom +dealer dealer nom +dealers dealer nom +dealership dealership nom +dealerships dealership nom +dealfish dealfish nom +dealing deal ver +dealings dealing nom +deals deal nom +dealt deal ver +dean dean nom +deaneries deanery nom +deanery deanery nom +deans dean nom +deanship deanship nom +deanships deanship nom +dear dear adj +dearer dear adj +dearest dear adj +dearie dearie nom +dearies dearie nom +dearness dearness nom +dearnesses dearness nom +dears dear nom +dearth dearth nom +dearths dearth nom +deary deary nom +death death nom +deathbed deathbed nom +deathbeds deathbed nom +deathblow deathblow nom +deathblows deathblow nom +deathlier deathly adj +deathliest deathly adj +deathly deathly adj +deaths death nom +deathtrap deathtrap nom +deathtraps deathtrap nom +deathwatch deathwatch nom +deathwatches deathwatch nom +deaves deaf nom +deb deb nom +debacle debacle nom +debacles debacle nom +debar debar ver +debark debark ver +debarkation debarkation nom +debarkations debarkation nom +debarked debark ver +debarking debark ver +debarks debark ver +debarment debarment nom +debarments debarment nom +debarred debar ver +debarring debar ver +debars debar ver +debase debase ver +debased debase ver +debasement debasement nom +debasements debasement nom +debases debase ver +debasing debase ver +debate debate nom +debated debate ver +debater debater nom +debaters debater nom +debates debate nom +debating debate ver +debauch debauch nom +debauched debauch ver +debauchee debauchee nom +debauchees debauchee nom +debaucher debaucher nom +debaucheries debauchery nom +debauchers debaucher nom +debauchery debauchery nom +debauches debauch nom +debauching debauch ver +debenture debenture nom +debentures debenture nom +debilitate debilitate ver +debilitated debilitate ver +debilitates debilitate ver +debilitating debilitate ver +debilitation debilitation nom +debilitations debilitation nom +debilities debility nom +debility debility nom +debit debit nom +debited debit ver +debiting debit ver +debits debit nom +debonairness debonairness nom +debonairnesses debonairness nom +debone debone ver +deboned debone ver +debones debone ver +deboning debone ver +debouch debouch nom +debouched debouch ver +debouches debouch nom +debouching debouch ver +debrief debrief ver +debriefed debrief ver +debriefing debrief ver +debriefings debriefing nom +debriefs debrief ver +debris debris nom +debs deb nom +debt debt nom +debtor debtor nom +debtors debtor nom +debts debt nom +debug debug ver +debugged debug ver +debugger debugger nom +debuggers debugger nom +debugging debug ver +debugs debug ver +debunk debunk ver +debunked debunk ver +debunking debunk ver +debunks debunk ver +debut debut nom +debutante debutante nom +debutantes debutante nom +debuted debut ver +debuting debut ver +debuts debut nom +decade decade nom +decadence decadence nom +decadences decadence nom +decadencies decadency nom +decadency decadency nom +decadent decadent nom +decadents decadent nom +decades decade nom +decaf decaf nom +decaffeinate decaffeinate ver +decaffeinated decaffeinate ver +decaffeinates decaffeinate ver +decaffeinating decaffeinate ver +decafs decaf nom +decagon decagon nom +decagons decagon nom +decagram decagram nom +decagrams decagram nom +decahedron decahedron nom +decahedrons decahedron nom +decal decal nom +decalcified decalcify ver +decalcifies decalcify ver +decalcify decalcify ver +decalcifying decalcify ver +decalcomania decalcomania nom +decalcomanias decalcomania nom +decaled decal ver +decaling decal ver +decaliter decaliter nom +decaliters decaliter nom +decalitre decalitre nom +decalitres decalitre nom +decals decal nom +decameter decameter nom +decameters decameter nom +decametre decametre nom +decametres decametre nom +decamp decamp ver +decamped decamp ver +decamping decamp ver +decampment decampment nom +decampments decampment nom +decamps decamp ver +decant decant ver +decanted decant ver +decanter decanter nom +decanters decanter nom +decanting decant ver +decants decant ver +decapitate decapitate ver +decapitated decapitate ver +decapitates decapitate ver +decapitating decapitate ver +decapitation decapitation nom +decapitations decapitation nom +decapitator decapitator nom +decapitators decapitator nom +decapod decapod nom +decapods decapod nom +decarbonize decarbonize ver +decarbonized decarbonize ver +decarbonizes decarbonize ver +decarbonizing decarbonize ver +decarburize decarburize ver +decarburized decarburize ver +decarburizes decarburize ver +decarburizing decarburize ver +decasyllable decasyllable nom +decasyllables decasyllable nom +decathlon decathlon nom +decathlons decathlon nom +decay decay nom +decayed decay ver +decaying decay ver +decays decay nom +decease decease nom +deceased decease ver +deceases decease nom +deceasing decease ver +decedent decedent nom +decedents decedent nom +deceit deceit nom +deceitfulness deceitfulness nom +deceitfulnesses deceitfulness nom +deceits deceit nom +deceive deceive ver +deceived deceive ver +deceiver deceiver nom +deceivers deceiver nom +deceives deceive ver +deceiving deceive ver +decelerate decelerate ver +decelerated decelerate ver +decelerates decelerate ver +decelerating decelerate ver +deceleration deceleration nom +decelerations deceleration nom +decelerator decelerator nom +decelerators decelerator nom +decencies decency nom +decency decency nom +decennaries decennary nom +decennary decennary nom +decennial decennial nom +decennials decennial nom +decennium decennium nom +decenniums decennium nom +decent decent adj +decenter decent adj +decentest decent adj +decentralise decentralise ver +decentralised decentralise ver +decentralises decentralise ver +decentralising decentralise ver +decentralization decentralization nom +decentralizations decentralization nom +decentralize decentralize ver +decentralized decentralize ver +decentralizes decentralize ver +decentralizing decentralize ver +deception deception nom +deceptions deception nom +deceptiveness deceptiveness nom +deceptivenesses deceptiveness nom +decertified decertify ver +decertifies decertify ver +decertify decertify ver +decertifying decertify ver +decibel decibel nom +decibels decibel nom +decide decide ver +decided decide ver +decides decide ver +deciding decide ver +decigram decigram nom +decigrams decigram nom +deciliter deciliter nom +deciliters deciliter nom +decilitre decilitre nom +decilitres decilitre nom +decimal decimal nom +decimalisation decimalisation nom +decimalisations decimalisation nom +decimalise decimalise ver +decimalised decimalise ver +decimalises decimalise ver +decimalising decimalise ver +decimalization decimalization nom +decimalizations decimalization nom +decimalize decimalize ver +decimalized decimalize ver +decimalizes decimalize ver +decimalizing decimalize ver +decimals decimal nom +decimate decimate ver +decimated decimate ver +decimates decimate ver +decimating decimate ver +decimation decimation nom +decimations decimation nom +decimeter decimeter nom +decimeters decimeter nom +decimetre decimetre nom +decimetres decimetre nom +decipher decipher ver +deciphered decipher ver +deciphering decipher ver +decipherment decipherment nom +decipherments decipherment nom +deciphers decipher ver +decision decision nom +decisioned decision ver +decisioning decision ver +decisions decision nom +decisiveness decisiveness nom +decisivenesses decisiveness nom +deck deck nom +decked deck ver +decker decker nom +deckers decker nom +deckhand deckhand nom +deckhands deckhand nom +decking deck ver +deckle deckle nom +deckles deckle nom +decks deck nom +declaim declaim ver +declaimed declaim ver +declaimer declaimer nom +declaimers declaimer nom +declaiming declaim ver +declaims declaim ver +declamation declamation nom +declamations declamation nom +declaration declaration nom +declarations declaration nom +declare declare ver +declared declare ver +declarer declarer nom +declarers declarer nom +declares declare ver +declaring declare ver +declassification declassification nom +declassifications declassification nom +declassified declassify ver +declassifies declassify ver +declassify declassify ver +declassifying declassify ver +declaw declaw ver +declawed declaw ver +declawing declaw ver +declaws declaw ver +declension declension nom +declensions declension nom +declination declination nom +declinations declination nom +decline decline nom +declined decline ver +decliner decliner nom +decliners decliner nom +declines decline nom +declining decline ver +declinometer declinometer nom +declinometers declinometer nom +declivities declivity nom +declivity declivity nom +declutch declutch ver +declutched declutch ver +declutches declutch ver +declutching declutch ver +decoct decoct ver +decocted decoct ver +decocting decoct ver +decoction decoction nom +decoctions decoction nom +decocts decoct ver +decode decode ver +decoded decode ver +decoder decoder nom +decoders decoder nom +decodes decode ver +decoding decode ver +decoke decoke ver +decoked decoke ver +decokes decoke ver +decoking decoke ver +decolletage decolletage nom +decolletages decolletage nom +decolonisation decolonisation nom +decolonisations decolonisation nom +decolonization decolonization nom +decolonizations decolonization nom +decolonize decolonize ver +decolonized decolonize ver +decolonizes decolonize ver +decolonizing decolonize ver +decolor decolor ver +decolored decolor ver +decoloring decolor ver +decolorize decolorize ver +decolorized decolorize ver +decolorizes decolorize ver +decolorizing decolorize ver +decolors decolor ver +decommission decommission ver +decommissioned decommission ver +decommissioning decommission ver +decommissions decommission ver +decompose decompose ver +decomposed decompose ver +decomposes decompose ver +decomposing decompose ver +decomposition decomposition nom +decompositions decomposition nom +decompress decompress ver +decompressed decompress ver +decompresses decompress ver +decompressing decompress ver +decompression decompression nom +decompressions decompression nom +deconcentrate deconcentrate ver +deconcentrated deconcentrate ver +deconcentrates deconcentrate ver +deconcentrating deconcentrate ver +decongestant decongestant nom +decongestants decongestant nom +deconsecrate deconsecrate ver +deconsecrated deconsecrate ver +deconsecrates deconsecrate ver +deconsecrating deconsecrate ver +deconstruct deconstruct ver +deconstructed deconstruct ver +deconstructing deconstruct ver +deconstruction deconstruction nom +deconstructionism deconstructionism nom +deconstructionisms deconstructionism nom +deconstructions deconstruction nom +deconstructs deconstruct ver +decontaminate decontaminate ver +decontaminated decontaminate ver +decontaminates decontaminate ver +decontaminating decontaminate ver +decontamination decontamination nom +decontaminations decontamination nom +decontrol decontrol ver +decontrolled decontrol ver +decontrolling decontrol ver +decontrols decontrol ver +decor decor nom +decorate decorate ver +decorated decorate ver +decorates decorate ver +decorating decorate ver +decoratings decorating nom +decoration decoration nom +decorations decoration nom +decorativeness decorativeness nom +decorativenesses decorativeness nom +decorator decorator nom +decorators decorator nom +decorousness decorousness nom +decorousnesses decorousness nom +decors decor nom +decorticate decorticate ver +decorticated decorticate ver +decorticates decorticate ver +decorticating decorticate ver +decorum decorum nom +decorums decorum nom +decoupage decoupage nom +decoupaged decoupage ver +decoupages decoupage nom +decoupaging decoupage ver +decoy decoy nom +decoyed decoy ver +decoying decoy ver +decoys decoy nom +decrease decrease nom +decreased decrease ver +decreases decrease nom +decreasing decrease ver +decree decree nom +decreed decree ver +decreeing decree ver +decrees decree nom +decrement decrement nom +decrements decrement nom +decrepitate decrepitate ver +decrepitated decrepitate ver +decrepitates decrepitate ver +decrepitating decrepitate ver +decrepitation decrepitation nom +decrepitations decrepitation nom +decrepitude decrepitude nom +decrepitudes decrepitude nom +decrescendo decrescendo nom +decrescendos decrescendo nom +decried decry ver +decries decry ver +decriminalization decriminalization nom +decriminalizations decriminalization nom +decriminalize decriminalize ver +decriminalized decriminalize ver +decriminalizes decriminalize ver +decriminalizing decriminalize ver +decry decry ver +decrying decry ver +decryption decryption nom +decryptions decryption nom +dedicate dedicate ver +dedicated dedicate ver +dedicates dedicate ver +dedicating dedicate ver +dedication dedication nom +dedications dedication nom +dedicator dedicator nom +dedicators dedicator nom +dedifferentiation dedifferentiation nom +dedifferentiations dedifferentiation nom +deduce deduce ver +deduced deduce ver +deduces deduce ver +deducing deduce ver +deduct deduct ver +deducted deduct ver +deductible deductible nom +deductibles deductible nom +deducting deduct ver +deduction deduction nom +deductions deduction nom +deducts deduct ver +deed deed nom +deeded deed ver +deeding deed ver +deeds deed nom +deejay deejay nom +deejays deejay nom +deem deem ver +deemed deem ver +deeming deem ver +deemphasize deemphasize ver +deemphasized deemphasize ver +deemphasizes deemphasize ver +deemphasizing deemphasize ver +deems deem ver +deep deep adj +deepen deepen ver +deepened deepen ver +deepening deepen ver +deepens deepen ver +deeper deep adj +deepest deep adj +deepfreeze deepfreeze nom +deepfreezes deepfreeze nom +deepness deepness nom +deepnesses deepness nom +deeps deep nom +deer deer nom +deerberries deerberry nom +deerberry deerberry nom +deerhound deerhound nom +deerhounds deerhound nom +deerskin deerskin nom +deerskins deerskin nom +deerstalker deerstalker nom +deerstalkers deerstalker nom +deescalate deescalate ver +deescalated deescalate ver +deescalates deescalate ver +deescalating deescalate ver +deescalation deescalation nom +deescalations deescalation nom +def def adj +deface deface ver +defaced deface ver +defacement defacement nom +defacements defacement nom +defacer defacer nom +defacers defacer nom +defaces deface ver +defacing deface ver +defalcate defalcate ver +defalcated defalcate ver +defalcates defalcate ver +defalcating defalcate ver +defalcation defalcation nom +defalcations defalcation nom +defamation defamation nom +defamations defamation nom +defame defame ver +defamed defame ver +defamer defamer nom +defamers defamer nom +defames defame ver +defaming defame ver +defang defang ver +defanged defang ver +defanging defang ver +defangs defang ver +default default nom +defaulted default ver +defaulter defaulter nom +defaulters defaulter nom +defaulting default ver +defaults default nom +defeat defeat nom +defeated defeat ver +defeater defeater nom +defeaters defeater nom +defeating defeat ver +defeatism defeatism nom +defeatisms defeatism nom +defeatist defeatist nom +defeatists defeatist nom +defeats defeat nom +defecate defecate ver +defecated defecate ver +defecates defecate ver +defecating defecate ver +defecation defecation nom +defecations defecation nom +defect defect nom +defected defect ver +defecting defect ver +defection defection nom +defections defection nom +defective defective nom +defectiveness defectiveness nom +defectivenesses defectiveness nom +defectives defective nom +defector defector nom +defectors defector nom +defects defect nom +defence defence nom +defenced defence ver +defences defence nom +defencing defence ver +defend defend ver +defendant defendant nom +defendants defendant nom +defended defend ver +defender defender nom +defenders defender nom +defending defend ver +defends defend ver +defense defense nom +defensed defense ver +defenselessness defenselessness nom +defenselessnesses defenselessness nom +defenses defense nom +defensing defense ver +defensive defensive nom +defensiveness defensiveness nom +defensivenesses defensiveness nom +defensives defensive nom +defer defer ver +deference deference nom +deferences deference nom +deferment deferment nom +deferments deferment nom +deferral deferral nom +deferrals deferral nom +deferred defer ver +deferring defer ver +defers defer ver +deffer def adj +deffest def adj +defiance defiance nom +defiances defiance nom +defibrillation defibrillation nom +defibrillations defibrillation nom +defibrillator defibrillator nom +defibrillators defibrillator nom +deficiencies deficiency nom +deficiency deficiency nom +deficient deficient nom +deficients deficient nom +deficit deficit nom +deficits deficit nom +defied defy ver +defies defy ver +defilade defilade nom +defilades defilade nom +defile defile nom +defiled defile ver +defilement defilement nom +defilements defilement nom +defiler defiler nom +defilers defiler nom +defiles defile nom +defiling defile ver +define define ver +defined define ver +definer definer nom +definers definer nom +defines define ver +defining define ver +definitely definitely sw +definiteness definiteness nom +definitenesses definiteness nom +definition definition nom +definitions definition nom +definitive definitive nom +definitives definitive nom +deflate deflate ver +deflated deflate ver +deflates deflate ver +deflating deflate ver +deflation deflation nom +deflations deflation nom +deflator deflator nom +deflators deflator nom +deflect deflect ver +deflected deflect ver +deflecting deflect ver +deflection deflection nom +deflections deflection nom +deflector deflector nom +deflectors deflector nom +deflects deflect ver +deflexion deflexion nom +deflexions deflexion nom +deflower deflower ver +deflowered deflower ver +deflowering deflower ver +deflowers deflower ver +defog defog ver +defogged defog ver +defogger defogger nom +defoggers defogger nom +defogging defog ver +defogs defog ver +defoliant defoliant nom +defoliants defoliant nom +defoliate defoliate ver +defoliated defoliate ver +defoliates defoliate ver +defoliating defoliate ver +defoliation defoliation nom +defoliations defoliation nom +defoliator defoliator nom +defoliators defoliator nom +deforest deforest ver +deforestation deforestation nom +deforestations deforestation nom +deforested deforest ver +deforesting deforest ver +deforests deforest ver +deform deform ver +deformation deformation nom +deformations deformation nom +deformed deform ver +deforming deform ver +deformities deformity nom +deformity deformity nom +deforms deform ver +defraud defraud ver +defrauded defraud ver +defrauder defrauder nom +defrauders defrauder nom +defrauding defraud ver +defrauds defraud ver +defray defray ver +defrayal defrayal nom +defrayals defrayal nom +defrayed defray ver +defraying defray ver +defrayment defrayment nom +defrayments defrayment nom +defrays defray ver +defrock defrock ver +defrocked defrock ver +defrocking defrock ver +defrocks defrock ver +defrost defrost ver +defrosted defrost ver +defroster defroster nom +defrosters defroster nom +defrosting defrost ver +defrosts defrost ver +deft deft adj +defter deft adj +deftest deft adj +deftness deftness nom +deftnesses deftness nom +defunctness defunctness nom +defunctnesses defunctness nom +defuse defuse ver +defused defuse ver +defuses defuse ver +defusing defuse ver +defy defy ver +defying defy ver +degas degas ver +degases degas ver +degassed degas ver +degassing degas ver +degauss degauss ver +degaussed degauss ver +degausses degauss ver +degaussing degauss ver +degeneracies degeneracy nom +degeneracy degeneracy nom +degenerate degenerate nom +degenerated degenerate ver +degenerates degenerate nom +degenerating degenerate ver +degeneration degeneration nom +degenerations degeneration nom +deglutition deglutition nom +deglutitions deglutition nom +degradation degradation nom +degradations degradation nom +degrade degrade ver +degraded degrade ver +degrades degrade ver +degrading degrade ver +degree degree nom +degrees degree nom +dehisce dehisce ver +dehisced dehisce ver +dehiscence dehiscence nom +dehiscences dehiscence nom +dehisces dehisce ver +dehiscing dehisce ver +dehorn dehorn ver +dehorned dehorn ver +dehorning dehorn ver +dehorns dehorn ver +dehumanization dehumanization nom +dehumanizations dehumanization nom +dehumanize dehumanize ver +dehumanized dehumanize ver +dehumanizes dehumanize ver +dehumanizing dehumanize ver +dehumidified dehumidify ver +dehumidifier dehumidifier nom +dehumidifiers dehumidifier nom +dehumidifies dehumidify ver +dehumidify dehumidify ver +dehumidifying dehumidify ver +dehydrate dehydrate ver +dehydrated dehydrate ver +dehydrates dehydrate ver +dehydrating dehydrate ver +dehydration dehydration nom +dehydrations dehydration nom +dehydrator dehydrator nom +dehydrators dehydrator nom +dehydrogenate dehydrogenate ver +dehydrogenated dehydrogenate ver +dehydrogenates dehydrogenate ver +dehydrogenating dehydrogenate ver +deice deice ver +deiced deice ver +deicer deicer nom +deicers deicer nom +deices deice ver +deicing deice ver +deictic deictic nom +deictics deictic nom +deification deification nom +deifications deification nom +deified deify ver +deifies deify ver +deify deify ver +deifying deify ver +deign deign ver +deigned deign ver +deigning deign ver +deigns deign ver +deinonychus deinonychus nom +deinonychuses deinonychus nom +deipnosophist deipnosophist nom +deipnosophists deipnosophist nom +deism deism nom +deisms deism nom +deist deist nom +deists deist nom +deities deity nom +deity deity nom +deixis deixis nom +deixises deixis nom +deject deject ver +dejected deject ver +dejecting deject ver +dejection dejection nom +dejections dejection nom +dejects deject ver +dejeuner dejeuner nom +dejeuners dejeuner nom +dekagram dekagram nom +dekagrams dekagram nom +dekaliter dekaliter nom +dekaliters dekaliter nom +dekameter dekameter nom +dekameters dekameter nom +dekko dekko nom +dekkos dekko nom +delay delay nom +delayed delay ver +delayer delayer nom +delayers delayer nom +delaying delay ver +delays delay nom +delectabilities delectability nom +delectability delectability nom +delectable delectable nom +delectables delectable nom +delectation delectation nom +delectations delectation nom +delegacies delegacy nom +delegacy delegacy nom +delegate delegate nom +delegated delegate ver +delegates delegate nom +delegating delegate ver +delegation delegation nom +delegations delegation nom +delete delete ver +deleted delete ver +deletes delete ver +deleting delete ver +deletion deletion nom +deletions deletion nom +delf delf nom +delfs delf nom +delft delft nom +delfts delft nom +delftware delftware nom +delftwares delftware nom +deli deli nom +deliberate deliberate ver +deliberated deliberate ver +deliberateness deliberateness nom +deliberatenesses deliberateness nom +deliberates deliberate ver +deliberating deliberate ver +deliberation deliberation nom +deliberations deliberation nom +delicacies delicacy nom +delicacy delicacy nom +delicate delicate nom +delicateness delicateness nom +delicatenesses delicateness nom +delicates delicate nom +delicatessen delicatessen nom +delicatessens delicatessen nom +deliciousness deliciousness nom +deliciousnesses deliciousness nom +delight delight nom +delighted delight ver +delighting delight ver +delights delight nom +delimit delimit ver +delimitate delimitate ver +delimitated delimitate ver +delimitates delimitate ver +delimitating delimitate ver +delimitation delimitation nom +delimitations delimitation nom +delimited delimit ver +delimiting delimit ver +delimits delimit ver +delineate delineate ver +delineated delineate ver +delineates delineate ver +delineating delineate ver +delineation delineation nom +delineations delineation nom +delinquencies delinquency nom +delinquency delinquency nom +delinquent delinquent nom +delinquents delinquent nom +deliquesce deliquesce ver +deliquesced deliquesce ver +deliquesces deliquesce ver +deliquescing deliquesce ver +deliriousness deliriousness nom +deliriousnesses deliriousness nom +delirium delirium nom +deliriums delirium nom +delis deli nom +deliver deliver ver +deliverance deliverance nom +deliverances deliverance nom +delivered deliver ver +deliverer deliverer nom +deliverers deliverer nom +deliveries delivery nom +delivering deliver ver +delivers deliver ver +delivery delivery nom +deliveryman deliveryman nom +deliverymen deliveryman nom +dell dell nom +dells dell nom +delouse delouse ver +deloused delouse ver +delouses delouse ver +delousing delouse ver +delphinium delphinium nom +delphiniums delphinium nom +delta delta nom +deltas delta nom +deltoid deltoid nom +deltoids deltoid nom +delude delude ver +deluded delude ver +deludes delude ver +deluding delude ver +deluge deluge nom +deluged deluge ver +deluges deluge nom +deluging deluge ver +delusion delusion nom +delusions delusion nom +delve delve ver +delved delve ver +delver delver nom +delvers delver nom +delves delve ver +delving delve ver +demagnetization demagnetization nom +demagnetizations demagnetization nom +demagnetize demagnetize ver +demagnetized demagnetize ver +demagnetizes demagnetize ver +demagnetizing demagnetize ver +demagog demagog nom +demagoged demagog ver +demagogies demagogy nom +demagoging demagog ver +demagogs demagog nom +demagogue demagogue nom +demagogued demagogue ver +demagogueries demagoguery nom +demagoguery demagoguery nom +demagogues demagogue nom +demagoguing demagogue ver +demagogy demagogy nom +demand demand nom +demanded demand ver +demander demander nom +demanders demander nom +demanding demand ver +demands demand nom +demantoid demantoid nom +demantoids demantoid nom +demarcate demarcate ver +demarcated demarcate ver +demarcates demarcate ver +demarcating demarcate ver +demarcation demarcation nom +demarcations demarcation nom +demarche demarche nom +demarches demarche nom +dematerialize dematerialize ver +dematerialized dematerialize ver +dematerializes dematerialize ver +dematerializing dematerialize ver +demean demean ver +demeaned demean ver +demeaning demean ver +demeanor demeanor nom +demeanors demeanor nom +demeanour demeanour nom +demeanours demeanour nom +demeans demean ver +dementedness dementedness nom +dementednesses dementedness nom +dementia dementia nom +dementias dementia nom +demerara demerara nom +demeraras demerara nom +demerit demerit nom +demerits demerit nom +demesne demesne nom +demesnes demesne nom +demigod demigod nom +demigods demigod nom +demijohn demijohn nom +demijohns demijohn nom +demilitarise demilitarise ver +demilitarised demilitarise ver +demilitarises demilitarise ver +demilitarising demilitarise ver +demilitarization demilitarization nom +demilitarizations demilitarization nom +demilitarize demilitarize ver +demilitarized demilitarize ver +demilitarizes demilitarize ver +demilitarizing demilitarize ver +demimondaine demimondaine nom +demimondaines demimondaine nom +demimonde demimonde nom +demimondes demimonde nom +demineralization demineralization nom +demineralizations demineralization nom +demise demise nom +demised demise ver +demisemiquaver demisemiquaver nom +demisemiquavers demisemiquaver nom +demises demise nom +demising demise ver +demist demist ver +demisted demist ver +demister demister nom +demisters demister nom +demisting demist ver +demists demist ver +demitasse demitasse nom +demitasses demitasse nom +demiurge demiurge nom +demiurges demiurge nom +demo demo nom +demob demob ver +demobbed demob ver +demobbing demob ver +demobilisation demobilisation nom +demobilisations demobilisation nom +demobilization demobilization nom +demobilizations demobilization nom +demobilize demobilize ver +demobilized demobilize ver +demobilizes demobilize ver +demobilizing demobilize ver +demobs demob ver +democracies democracy nom +democracy democracy nom +democrat democrat nom +democratization democratization nom +democratizations democratization nom +democratize democratize ver +democratized democratize ver +democratizes democratize ver +democratizing democratize ver +democrats democrat nom +demodulate demodulate ver +demodulated demodulate ver +demodulates demodulate ver +demodulating demodulate ver +demodulation demodulation nom +demodulations demodulation nom +demodulator demodulator nom +demodulators demodulator nom +demoed demo ver +demographer demographer nom +demographers demographer nom +demographic demographic nom +demographics demographic nom +demographies demography nom +demography demography nom +demoing demo ver +demoiselle demoiselle nom +demoiselles demoiselle nom +demolish demolish ver +demolished demolish ver +demolishes demolish ver +demolishing demolish ver +demolition demolition nom +demolitions demolition nom +demon demon nom +demonetisation demonetisation nom +demonetisations demonetisation nom +demonetization demonetization nom +demonetizations demonetization nom +demonetize demonetize ver +demonetized demonetize ver +demonetizes demonetize ver +demonetizing demonetize ver +demoniac demoniac nom +demoniacs demoniac nom +demonism demonism nom +demonisms demonism nom +demonize demonize ver +demonized demonize ver +demonizes demonize ver +demonizing demonize ver +demonolatries demonolatry nom +demonolatry demonolatry nom +demons demon nom +demonstrabilities demonstrability nom +demonstrability demonstrability nom +demonstrate demonstrate ver +demonstrated demonstrate ver +demonstrates demonstrate ver +demonstrating demonstrate ver +demonstration demonstration nom +demonstrations demonstration nom +demonstrative demonstrative nom +demonstrativeness demonstrativeness nom +demonstrativenesses demonstrativeness nom +demonstratives demonstrative nom +demonstrator demonstrator nom +demonstrators demonstrator nom +demoralization demoralization nom +demoralizations demoralization nom +demoralize demoralize ver +demoralized demoralize ver +demoralizes demoralize ver +demoralizing demoralize ver +demos demo nom +demote demote ver +demoted demote ver +demotes demote ver +demotic demotic nom +demotics demotic nom +demoting demote ver +demotion demotion nom +demotions demotion nom +demulcent demulcent nom +demulcents demulcent nom +demulsified demulsify ver +demulsifies demulsify ver +demulsify demulsify ver +demulsifying demulsify ver +demur demur nom +demure demure adj +demureness demureness nom +demurenesses demureness nom +demurer demure adj +demurest demure adj +demurrage demurrage nom +demurrages demurrage nom +demurral demurral nom +demurrals demurral nom +demurred demur ver +demurrer demurrer nom +demurrers demurrer nom +demurring demur ver +demurs demur nom +demystification demystification nom +demystifications demystification nom +demystified demystify ver +demystifies demystify ver +demystify demystify ver +demystifying demystify ver +demythologisation demythologisation nom +demythologisations demythologisation nom +demythologization demythologization nom +demythologizations demythologization nom +demythologize demythologize ver +demythologized demythologize ver +demythologizes demythologize ver +demythologizing demythologize ver +den den nom +denationalization denationalization nom +denationalizations denationalization nom +denationalize denationalize ver +denationalized denationalize ver +denationalizes denationalize ver +denationalizing denationalize ver +denaturalize denaturalize ver +denaturalized denaturalize ver +denaturalizes denaturalize ver +denaturalizing denaturalize ver +denaturant denaturant nom +denaturants denaturant nom +denature denature ver +denatured denature ver +denatures denature ver +denaturing denature ver +denazified denazify ver +denazifies denazify ver +denazify denazify ver +denazifying denazify ver +dendrite dendrite nom +dendrites dendrite nom +dendrobium dendrobium nom +dendrobiums dendrobium nom +dengue dengue nom +dengues dengue nom +denial denial nom +denials denial nom +denied deny ver +denier denier nom +deniers denier nom +denies deny ver +denigrate denigrate ver +denigrated denigrate ver +denigrates denigrate ver +denigrating denigrate ver +denigration denigration nom +denigrations denigration nom +denim denim nom +denims denim nom +denitrified denitrify ver +denitrifies denitrify ver +denitrify denitrify ver +denitrifying denitrify ver +denizen denizen nom +denizened denizen ver +denizening denizen ver +denizens denizen nom +denned den ver +denning den ver +denominate denominate ver +denominated denominate ver +denominates denominate ver +denominating denominate ver +denomination denomination nom +denominationalism denominationalism nom +denominationalisms denominationalism nom +denominations denomination nom +denominator denominator nom +denominators denominator nom +denotation denotation nom +denotations denotation nom +denote denote ver +denoted denote ver +denotes denote ver +denoting denote ver +denouement denouement nom +denouements denouement nom +denounce denounce ver +denounced denounce ver +denouncement denouncement nom +denouncements denouncement nom +denounces denounce ver +denouncing denounce ver +dens den nom +dense dense adj +denseness denseness nom +densenesses denseness nom +denser dense adj +densest dense adj +densification densification nom +densifications densification nom +densimeter densimeter nom +densimeters densimeter nom +densities density nom +densitometer densitometer nom +densitometers densitometer nom +densitometries densitometry nom +densitometry densitometry nom +density density nom +dent dent nom +dental dental nom +dentals dental nom +dented dent ver +denticle denticle nom +denticles denticle nom +dentifrice dentifrice nom +dentifrices dentifrice nom +dentin dentin nom +dentine dentine nom +dentines dentine nom +denting dent ver +dentins dentin nom +dentist dentist nom +dentistries dentistry nom +dentistry dentistry nom +dentists dentist nom +dentition dentition nom +dentitions dentition nom +dents dent nom +denture denture nom +dentures denture nom +denturist denturist nom +denturists denturist nom +denuclearize denuclearize ver +denuclearized denuclearize ver +denuclearizes denuclearize ver +denuclearizing denuclearize ver +denudate denudate ver +denudated denudate ver +denudates denudate ver +denudating denudate ver +denudation denudation nom +denudations denudation nom +denude denude ver +denuded denude ver +denudes denude ver +denuding denude ver +denunciation denunciation nom +denunciations denunciation nom +deny deny ver +denying deny ver +deodar deodar nom +deodars deodar nom +deodorant deodorant nom +deodorants deodorant nom +deodorization deodorization nom +deodorizations deodorization nom +deodorize deodorize ver +deodorized deodorize ver +deodorizer deodorizer nom +deodorizers deodorizer nom +deodorizes deodorize ver +deodorizing deodorize ver +deoxidise deoxidise ver +deoxidised deoxidise ver +deoxidises deoxidise ver +deoxidising deoxidise ver +deoxidize deoxidize ver +deoxidized deoxidize ver +deoxidizes deoxidize ver +deoxidizing deoxidize ver +deoxyribose deoxyribose nom +deoxyriboses deoxyribose nom +depart depart ver +departed depart ver +departer departer nom +departers departer nom +departing depart ver +department department nom +departmentalization departmentalization nom +departmentalizations departmentalization nom +departmentalize departmentalize ver +departmentalized departmentalize ver +departmentalizes departmentalize ver +departmentalizing departmentalize ver +departments department nom +departs depart ver +departure departure nom +departures departure nom +depend depend ver +dependabilities dependability nom +dependability dependability nom +dependableness dependableness nom +dependablenesses dependableness nom +dependance dependance nom +dependances dependance nom +dependant dependant nom +dependants dependant nom +depended depend ver +dependence dependence nom +dependences dependence nom +dependencies dependency nom +dependency dependency nom +dependent dependent nom +dependents dependent nom +depending depend ver +depends depend ver +depersonalize depersonalize ver +depersonalized depersonalize ver +depersonalizes depersonalize ver +depersonalizing depersonalize ver +depict depict ver +depicted depict ver +depicting depict ver +depiction depiction nom +depictions depiction nom +depicts depict ver +depilatories depilatory nom +depilatory depilatory nom +deplane deplane ver +deplaned deplane ver +deplanes deplane ver +deplaning deplane ver +deplete deplete ver +depleted deplete ver +depletes deplete ver +depleting deplete ver +depletion depletion nom +depletions depletion nom +deplore deplore ver +deplored deplore ver +deplores deplore ver +deploring deplore ver +deploy deploy ver +deployed deploy ver +deploying deploy ver +deployment deployment nom +deployments deployment nom +deploys deploy ver +deplume deplume ver +deplumed deplume ver +deplumes deplume ver +depluming deplume ver +depolarization depolarization nom +depolarizations depolarization nom +depolarize depolarize ver +depolarized depolarize ver +depolarizes depolarize ver +depolarizing depolarize ver +depoliticize depoliticize ver +depoliticized depoliticize ver +depoliticizes depoliticize ver +depoliticizing depoliticize ver +depone depone ver +deponed depone ver +deponent deponent nom +deponents deponent nom +depones depone ver +deponing depone ver +depopulate depopulate ver +depopulated depopulate ver +depopulates depopulate ver +depopulating depopulate ver +depopulation depopulation nom +depopulations depopulation nom +deport deport ver +deportation deportation nom +deportations deportation nom +deported deport ver +deportee deportee nom +deportees deportee nom +deporting deport ver +deportment deportment nom +deportments deportment nom +deports deport ver +depose depose ver +deposed depose ver +deposes depose ver +deposing depose ver +deposit deposit nom +deposited deposit ver +depositing deposit ver +deposition deposition nom +depositions deposition nom +depositor depositor nom +depositories depository nom +depositors depositor nom +depository depository nom +deposits deposit nom +depot depot nom +depots depot nom +deprave deprave ver +depraved deprave ver +depraves deprave ver +depraving deprave ver +depravities depravity nom +depravity depravity nom +deprecate deprecate ver +deprecated deprecate ver +deprecates deprecate ver +deprecating deprecate ver +deprecation deprecation nom +deprecations deprecation nom +depreciate depreciate ver +depreciated depreciate ver +depreciates depreciate ver +depreciating depreciate ver +depreciation depreciation nom +depreciations depreciation nom +depreciator depreciator nom +depreciators depreciator nom +depredation depredation nom +depredations depredation nom +depress depress ver +depressant depressant nom +depressants depressant nom +depressed depress ver +depresses depress ver +depressing depress ver +depression depression nom +depressions depression nom +depressive depressive nom +depressives depressive nom +depressor depressor nom +depressors depressor nom +depressurize depressurize ver +depressurized depressurize ver +depressurizes depressurize ver +depressurizing depressurize ver +deprivation deprivation nom +deprivations deprivation nom +deprive deprive ver +deprived deprive ver +deprives deprive ver +depriving deprive ver +deprogram deprogram ver +deprogrammed deprogram ver +deprogramming deprogram ver +deprograms deprogram ver +depth depth nom +depths depth nom +deputation deputation nom +deputations deputation nom +depute depute ver +deputed depute ver +deputes depute ver +deputies deputy nom +deputing depute ver +deputise deputise ver +deputised deputise ver +deputises deputise ver +deputising deputise ver +deputize deputize ver +deputized deputize ver +deputizes deputize ver +deputizing deputize ver +deputy deputy nom +deracinate deracinate ver +deracinated deracinate ver +deracinates deracinate ver +deracinating deracinate ver +derail derail nom +derailed derail ver +derailing derail ver +derailleur derailleur nom +derailleurs derailleur nom +derailment derailment nom +derailments derailment nom +derails derail nom +derange derange ver +deranged derange ver +derangement derangement nom +derangements derangement nom +deranges derange ver +deranging derange ver +derate derate ver +derated derate ver +derates derate ver +derating derate ver +derbies derby nom +derby derby nom +derecognize derecognize ver +derecognized derecognize ver +derecognizes derecognize ver +derecognizing derecognize ver +deregulate deregulate ver +deregulated deregulate ver +deregulates deregulate ver +deregulating deregulate ver +deregulation deregulation nom +deregulations deregulation nom +derelict derelict nom +dereliction dereliction nom +derelictions dereliction nom +derelicts derelict nom +derequisition derequisition ver +derequisitioned derequisition ver +derequisitioning derequisition ver +derequisitions derequisition ver +derestrict derestrict ver +derestricted derestrict ver +derestricting derestrict ver +derestricts derestrict ver +deride deride ver +derided deride ver +derides deride ver +deriding deride ver +derision derision nom +derisions derision nom +derisiveness derisiveness nom +derisivenesses derisiveness nom +derivation derivation nom +derivations derivation nom +derivative derivative nom +derivatives derivative nom +derive derive ver +derived derive ver +derives derive ver +deriving derive ver +derma derma nom +dermas derma nom +dermatitis dermatitis nom +dermatitises dermatitis nom +dermatologies dermatology nom +dermatologist dermatologist nom +dermatologists dermatologist nom +dermatology dermatology nom +dermatome dermatome nom +dermatomes dermatome nom +dermis dermis nom +dermises dermis nom +derogate derogate ver +derogated derogate ver +derogates derogate ver +derogating derogate ver +derogation derogation nom +derogations derogation nom +derrick derrick nom +derricked derrick ver +derricking derrick ver +derricks derrick nom +derriere derriere nom +derrieres derriere nom +derringer derringer nom +derringers derringer nom +derris derris nom +derrises derris nom +dervish dervish nom +dervishes dervish nom +desalinate desalinate ver +desalinated desalinate ver +desalinates desalinate ver +desalinating desalinate ver +desalination desalination nom +desalinations desalination nom +desalinization desalinization nom +desalinizations desalinization nom +desalinize desalinize ver +desalinized desalinize ver +desalinizes desalinize ver +desalinizing desalinize ver +desalt desalt ver +desalted desalt ver +desalting desalt ver +desalts desalt ver +descale descale ver +descaled descale ver +descales descale ver +descaling descale ver +descant descant nom +descanted descant ver +descanting descant ver +descants descant nom +descend descend ver +descendant descendant nom +descendants descendant nom +descended descend ver +descendent descendent nom +descendents descendent nom +descending descend ver +descends descend ver +descent descent nom +descents descent nom +describe describe ver +described described sw +describer describer nom +describers describer nom +describes describe ver +describing describe ver +descried descry ver +descries descry ver +description description nom +descriptions description nom +descriptiveness descriptiveness nom +descriptivenesses descriptiveness nom +descry descry ver +descrying descry ver +desecrate desecrate ver +desecrated desecrate ver +desecrates desecrate ver +desecrating desecrate ver +desecration desecration nom +desecrations desecration nom +desegregate desegregate ver +desegregated desegregate ver +desegregates desegregate ver +desegregating desegregate ver +desegregation desegregation nom +desegregations desegregation nom +desensitisation desensitisation nom +desensitisations desensitisation nom +desensitization desensitization nom +desensitizations desensitization nom +desensitize desensitize ver +desensitized desensitize ver +desensitizes desensitize ver +desensitizing desensitize ver +desert desert nom +deserted desert ver +deserter deserter nom +deserters deserter nom +deserting desert ver +desertion desertion nom +desertions desertion nom +deserts desert nom +deserve deserve ver +deserved deserve ver +deserves deserve ver +deserving deserve ver +deservingness deservingness nom +deservingnesses deservingness nom +desex desex ver +desexed desex ver +desexes desex ver +desexing desex ver +desexualize desexualize ver +desexualized desexualize ver +desexualizes desexualize ver +desexualizing desexualize ver +deshabille deshabille nom +deshabilles deshabille nom +desiccant desiccant nom +desiccants desiccant nom +desiccate desiccate ver +desiccated desiccate ver +desiccates desiccate ver +desiccating desiccate ver +desiccation desiccation nom +desiccations desiccation nom +desiccator desiccator nom +desiccators desiccator nom +desiderata desideratum nom +desideratum desideratum nom +design design nom +designate designate ver +designated designate ver +designates designate ver +designating designate ver +designation designation nom +designations designation nom +designed design ver +designer designer nom +designers designer nom +designing design ver +designings designing nom +designs design nom +desirabilities desirability nom +desirability desirability nom +desirable desirable nom +desirableness desirableness nom +desirablenesses desirableness nom +desirables desirable nom +desire desire nom +desired desire ver +desires desire nom +desiring desire ver +desist desist ver +desisted desist ver +desisting desist ver +desists desist ver +desk desk nom +deskman deskman nom +deskmen deskman nom +desks desk nom +desktop desktop nom +desktops desktop nom +desmid desmid nom +desmids desmid nom +desolate desolate ver +desolated desolate ver +desolateness desolateness nom +desolatenesses desolateness nom +desolates desolate ver +desolating desolate ver +desolation desolation nom +desolations desolation nom +desorption desorption nom +desorptions desorption nom +despair despair nom +despaired despair ver +despairing despair ver +despairs despair nom +despatch despatch nom +despatched despatch ver +despatches despatch nom +despatching despatch ver +desperado desperado nom +desperadoes desperado nom +desperateness desperateness nom +desperatenesses desperateness nom +desperation desperation nom +desperations desperation nom +despicableness despicableness nom +despicablenesses despicableness nom +despisal despisal nom +despisals despisal nom +despise despise ver +despised despise ver +despises despise ver +despising despise ver +despite despite sw +despited despite ver +despites despite nom +despiting despite ver +despoil despoil ver +despoiled despoil ver +despoiler despoiler nom +despoilers despoiler nom +despoiling despoil ver +despoilment despoilment nom +despoilments despoilment nom +despoils despoil ver +despoliation despoliation nom +despoliations despoliation nom +despondence despondence nom +despondences despondence nom +despondencies despondency nom +despondency despondency nom +despot despot nom +despotism despotism nom +despotisms despotism nom +despots despot nom +desquamate desquamate ver +desquamated desquamate ver +desquamates desquamate ver +desquamating desquamate ver +dessert dessert nom +desserts dessert nom +dessertspoon dessertspoon nom +dessertspoonful dessertspoonful nom +dessertspoonfuls dessertspoonful nom +dessertspoons dessertspoon nom +dessiatine dessiatine nom +dessiatines dessiatine nom +destabilization destabilization nom +destabilizations destabilization nom +destabilize destabilize ver +destabilized destabilize ver +destabilizes destabilize ver +destabilizing destabilize ver +destination destination nom +destinations destination nom +destine destine ver +destined destine ver +destines destine ver +destinies destiny nom +destining destine ver +destiny destiny nom +destitute destitute ver +destituted destitute ver +destitutes destitute ver +destituting destitute ver +destitution destitution nom +destitutions destitution nom +destroy destroy ver +destroyed destroy ver +destroyer destroyer nom +destroyers destroyer nom +destroying destroy ver +destroys destroy ver +destruct destruct nom +destructed destruct ver +destructibilities destructibility nom +destructibility destructibility nom +destructing destruct ver +destruction destruction nom +destructions destruction nom +destructiveness destructiveness nom +destructivenesses destructiveness nom +destructs destruct nom +desuetude desuetude nom +desuetudes desuetude nom +detach detach ver +detached detach ver +detaches detach ver +detaching detach ver +detachment detachment nom +detachments detachment nom +detail detail nom +detailed detail ver +detailing detail ver +details detail nom +detain detain ver +detained detain ver +detainee detainee nom +detainees detainee nom +detaining detain ver +detainment detainment nom +detainments detainment nom +detains detain ver +detect detect ver +detected detect ver +detecting detect ver +detection detection nom +detections detection nom +detective detective nom +detectives detective nom +detector detector nom +detectors detector nom +detects detect ver +detent detent nom +detente detente nom +detentes detente nom +detention detention nom +detentions detention nom +detents detent nom +deter deter ver +detergence detergence nom +detergences detergence nom +detergencies detergency nom +detergency detergency nom +detergent detergent nom +detergents detergent nom +deteriorate deteriorate ver +deteriorated deteriorate ver +deteriorates deteriorate ver +deteriorating deteriorate ver +deterioration deterioration nom +deteriorations deterioration nom +determent determent nom +determents determent nom +determinant determinant nom +determinants determinant nom +determinate determinate ver +determinated determinate ver +determinateness determinateness nom +determinatenesses determinateness nom +determinates determinate ver +determinating determinate ver +determination determination nom +determinations determination nom +determinative determinative nom +determinatives determinative nom +determine determine ver +determined determine ver +determiner determiner nom +determiners determiner nom +determines determine ver +determining determine ver +determinism determinism nom +determinisms determinism nom +determinist determinist nom +determinists determinist nom +deterred deter ver +deterrence deterrence nom +deterrences deterrence nom +deterrent deterrent nom +deterrents deterrent nom +deterring deter ver +deters deter ver +detest detest ver +detestation detestation nom +detestations detestation nom +detested detest ver +detesting detest ver +detests detest ver +dethrone dethrone ver +dethroned dethrone ver +dethronement dethronement nom +dethronements dethronement nom +dethrones dethrone ver +dethroning dethrone ver +detonate detonate ver +detonated detonate ver +detonates detonate ver +detonating detonate ver +detonation detonation nom +detonations detonation nom +detonator detonator nom +detonators detonator nom +detour detour nom +detoured detour ver +detouring detour ver +detours detour nom +detox detox nom +detoxed detox ver +detoxes detox nom +detoxicate detoxicate ver +detoxicated detoxicate ver +detoxicates detoxicate ver +detoxicating detoxicate ver +detoxification detoxification nom +detoxifications detoxification nom +detoxified detoxify ver +detoxifies detoxify ver +detoxify detoxify ver +detoxifying detoxify ver +detoxing detox ver +detract detract ver +detracted detract ver +detracting detract ver +detraction detraction nom +detractions detraction nom +detractor detractor nom +detractors detractor nom +detracts detract ver +detrain detrain ver +detrained detrain ver +detraining detrain ver +detrains detrain ver +detribalization detribalization nom +detribalizations detribalization nom +detribalize detribalize ver +detribalized detribalize ver +detribalizes detribalize ver +detribalizing detribalize ver +detriment detriment nom +detrimental detrimental nom +detrimentals detrimental nom +detriments detriment nom +detrition detrition nom +detritions detrition nom +detritus detritus nom +deuce deuce nom +deuces deuce nom +deuteranopia deuteranopia nom +deuteranopias deuteranopia nom +deuterium deuterium nom +deuteriums deuterium nom +deuteron deuteron nom +deuterons deuteron nom +deutzia deutzia nom +deutzias deutzia nom +devaluate devaluate ver +devaluated devaluate ver +devaluates devaluate ver +devaluating devaluate ver +devaluation devaluation nom +devaluations devaluation nom +devalue devalue ver +devalued devalue ver +devalues devalue ver +devaluing devalue ver +devastate devastate ver +devastated devastate ver +devastates devastate ver +devastating devastate ver +devastation devastation nom +devastations devastation nom +devastator devastator nom +devastators devastator nom +develop develop ver +developed develop ver +developer developer nom +developers developer nom +developing develop ver +development development nom +developments development nom +develops develop ver +deviance deviance nom +deviances deviance nom +deviancies deviancy nom +deviancy deviancy nom +deviant deviant nom +deviants deviant nom +deviate deviate nom +deviated deviate ver +deviates deviate nom +deviating deviate ver +deviation deviation nom +deviationism deviationism nom +deviationisms deviationism nom +deviationist deviationist nom +deviationists deviationist nom +deviations deviation nom +device device nom +devices device nom +devil devil nom +deviled devil ver +devilfish devilfish nom +deviling devil ver +devilishness devilishness nom +devilishnesses devilishness nom +devilment devilment nom +devilments devilment nom +devilries devilry nom +devilry devilry nom +devils devil nom +deviltries deviltry nom +deviltry deviltry nom +devilwood devilwood nom +devilwoods devilwood nom +deviousness deviousness nom +deviousnesses deviousness nom +devisal devisal nom +devisals devisal nom +devise devise nom +devised devise ver +devisee devisee nom +devisees devisee nom +deviser deviser nom +devisers deviser nom +devises devise nom +devising devise ver +devitalisation devitalisation nom +devitalisations devitalisation nom +devitalise devitalise ver +devitalised devitalise ver +devitalises devitalise ver +devitalising devitalise ver +devitalization devitalization nom +devitalizations devitalization nom +devitalize devitalize ver +devitalized devitalize ver +devitalizes devitalize ver +devitalizing devitalize ver +devitrified devitrify ver +devitrifies devitrify ver +devitrify devitrify ver +devitrifying devitrify ver +devoice devoice ver +devoiced devoice ver +devoices devoice ver +devoicing devoice ver +devoir devoir nom +devoirs devoir nom +devolution devolution nom +devolutions devolution nom +devolve devolve ver +devolved devolve ver +devolvement devolvement nom +devolvements devolvement nom +devolves devolve ver +devolving devolve ver +devote devote ver +devoted devote ver +devotedness devotedness nom +devotednesses devotedness nom +devotee devotee nom +devotees devotee nom +devotes devote ver +devoting devote ver +devotion devotion nom +devotional devotional nom +devotionals devotional nom +devotions devotion nom +devour devour ver +devoured devour ver +devourer devourer nom +devourers devourer nom +devouring devour ver +devours devour ver +devout devout adj +devouter devout adj +devoutest devout adj +devoutness devoutness nom +devoutnesses devoutness nom +dew dew nom +dewberries dewberry nom +dewberry dewberry nom +dewclaw dewclaw nom +dewclaws dewclaw nom +dewdrop dewdrop nom +dewdrops dewdrop nom +dewed dew ver +dewier dewy adj +dewiest dewy adj +dewiness dewiness nom +dewinesses dewiness nom +dewing dew ver +dewlap dewlap nom +dewlaps dewlap nom +dews dew nom +dewy dewy adj +dexamethasone dexamethasone nom +dexamethasones dexamethasone nom +dexterities dexterity nom +dexterity dexterity nom +dexterousness dexterousness nom +dexterousnesses dexterousness nom +dextralities dextrality nom +dextrality dextrality nom +dextroglucose dextroglucose nom +dextroglucoses dextroglucose nom +dextrose dextrose nom +dextroses dextrose nom +dhak dhak nom +dhaks dhak nom +dhal dhal nom +dhals dhal nom +dhole dhole nom +dholes dhole nom +dhoti dhoti nom +dhotis dhoti nom +dhow dhow nom +dhows dhow nom +diabetes diabetes nom +diabetic diabetic nom +diabetics diabetic nom +diabolism diabolism nom +diabolisms diabolism nom +diabolist diabolist nom +diabolists diabolist nom +diabolize diabolize ver +diabolized diabolize ver +diabolizes diabolize ver +diabolizing diabolize ver +diacritic diacritic nom +diacritics diacritic nom +diadem diadem nom +diademed diadem ver +diademing diadem ver +diadems diadem nom +diaereses diaeresis nom +diaeresis diaeresis nom +diaglyph diaglyph nom +diaglyphs diaglyph nom +diagnose diagnose ver +diagnosed diagnose ver +diagnoses diagnose ver +diagnosing diagnose ver +diagnosis diagnosis nom +diagnostic diagnostic nom +diagnostician diagnostician nom +diagnosticians diagnostician nom +diagnostics diagnostic nom +diagonal diagonal nom +diagonalization diagonalization nom +diagonalizations diagonalization nom +diagonalize diagonalize ver +diagonalized diagonalize ver +diagonalizes diagonalize ver +diagonalizing diagonalize ver +diagonals diagonal nom +diagram diagram nom +diagrammed diagram ver +diagramming diagram ver +diagrams diagram nom +diakineses diakinesis nom +diakinesis diakinesis nom +dial dial nom +dialect dialect nom +dialectic dialectic nom +dialectician dialectician nom +dialecticians dialectician nom +dialectics dialectic nom +dialects dialect nom +dialed dial ver +dialing dial ver +dialog dialog nom +dialoged dialog ver +dialoging dialog ver +dialogs dialog nom +dialogue dialogue nom +dialogued dialogue ver +dialogues dialogue nom +dialoguing dialogue ver +dials dial nom +dialyse dialyse ver +dialysed dialyse ver +dialyses dialyse ver +dialysing dialyse ver +dialysis dialysis nom +dialyze dialyze ver +dialyzed dialyze ver +dialyzer dialyzer nom +dialyzers dialyzer nom +dialyzes dialyze ver +dialyzing dialyze ver +diamagnet diamagnet nom +diamagnetism diamagnetism nom +diamagnetisms diamagnetism nom +diamagnets diamagnet nom +diameter diameter nom +diameters diameter nom +diamine diamine nom +diamines diamine nom +diamond diamond nom +diamondback diamondback nom +diamondbacks diamondback nom +diamonded diamond ver +diamonding diamond ver +diamonds diamond nom +diapason diapason nom +diapasons diapason nom +diaper diaper nom +diapered diaper ver +diapering diaper ver +diapers diaper nom +diaphone diaphone nom +diaphones diaphone nom +diaphoreses diaphoresis nom +diaphoresis diaphoresis nom +diaphoretic diaphoretic nom +diaphoretics diaphoretic nom +diaphragm diaphragm nom +diaphragmed diaphragm ver +diaphragming diaphragm ver +diaphragms diaphragm nom +diaphyses diaphysis nom +diaphysis diaphysis nom +diarchies diarchy nom +diarchy diarchy nom +diaries diary nom +diarist diarist nom +diarists diarist nom +diarrhea diarrhea nom +diarrheas diarrhea nom +diarrhoea diarrhoea nom +diarrhoeas diarrhoea nom +diary diary nom +diastase diastase nom +diastases diastase nom +diastasis diastasis nom +diastole diastole nom +diastoles diastole nom +diastrophism diastrophism nom +diastrophisms diastrophism nom +diathermies diathermy nom +diathermy diathermy nom +diatheses diathesis nom +diathesis diathesis nom +diatom diatom nom +diatomite diatomite nom +diatomites diatomite nom +diatoms diatom nom +diatribe diatribe nom +diatribes diatribe nom +diazepam diazepam nom +diazepams diazepam nom +diazonium diazonium nom +diazoniums diazonium nom +dibber dibber nom +dibbers dibber nom +dibble dibble nom +dibbled dibble ver +dibbles dibble nom +dibbling dibble ver +dibbuk dibbuk nom +dibbuks dibbuk nom +dibranchiate dibranchiate nom +dibranchiates dibranchiate nom +dice die nom +diced dice ver +dices dice nom +dicey dicey adj +dichloride dichloride nom +dichlorides dichloride nom +dichondra dichondra nom +dichondras dichondra nom +dichotomies dichotomy nom +dichotomization dichotomization nom +dichotomizations dichotomization nom +dichotomize dichotomize ver +dichotomized dichotomize ver +dichotomizes dichotomize ver +dichotomizing dichotomize ver +dichotomy dichotomy nom +dichroism dichroism nom +dichroisms dichroism nom +dichromate dichromate nom +dichromates dichromate nom +dicier dicey adj +diciest dicey adj +dicing dice ver +dick dick nom +dicked dick ver +dickens dickens nom +dickenses dickens nom +dicker dicker nom +dickered dicker ver +dickering dicker ver +dickers dicker nom +dickey dickey adj +dickeys dickey nom +dickie dickie nom +dickier dickey adj +dickies dickie nom +dickiest dickey adj +dicking dick ver +dicks dick nom +dicky dicky adj +dicot dicot nom +dicots dicot nom +dicotyledon dicotyledon nom +dicotyledons dicotyledon nom +dicta dictum nom +dictate dictate nom +dictated dictate ver +dictates dictate nom +dictating dictate ver +dictation dictation nom +dictations dictation nom +dictator dictator nom +dictators dictator nom +dictatorship dictatorship nom +dictatorships dictatorship nom +diction diction nom +dictionaries dictionary nom +dictionary dictionary nom +dictions diction nom +dictum dictum nom +dicynodont dicynodont nom +dicynodonts dicynodont nom +did did sw +diddle diddle ver +diddled diddle ver +diddler diddler nom +diddlers diddler nom +diddles diddle ver +diddling diddle ver +didn_t didn_t sw +dido dido nom +didoes dido nom +die die nom +dieback dieback nom +diebacks dieback nom +died die ver +diehard diehard nom +diehards diehard nom +dieing die ver +dielectric dielectric nom +dielectrics dielectric nom +diemaker diemaker nom +diemakers diemaker nom +diencephalon diencephalon nom +diencephalons diencephalon nom +diereses dieresis nom +dieresis dieresis nom +dies die nom +diesel diesel nom +dieseled diesel ver +dieseling diesel ver +diesels diesel nom +diesinker diesinker nom +diesinkers diesinker nom +diestock diestock nom +diestocks diestock nom +diestrum diestrum nom +diestrums diestrum nom +diestrus diestrus nom +diestruses diestrus nom +diet diet nom +dietaries dietary nom +dietary dietary nom +dieted diet ver +dieter dieter nom +dieters dieter nom +diethylstilbestrol diethylstilbestrol nom +diethylstilbestrols diethylstilbestrol nom +dietician dietician nom +dieticians dietician nom +dieting diet ver +dietitian dietitian nom +dietitians dietitian nom +diets diet nom +differ differ ver +differed differ ver +difference difference nom +differenced difference ver +differences difference nom +differencing difference ver +different different sw +differentia differentia nom +differentiae differentia nom +differential differential nom +differentials differential nom +differentiate differentiate ver +differentiated differentiate ver +differentiates differentiate ver +differentiating differentiate ver +differentiation differentiation nom +differentiations differentiation nom +differentiator differentiator nom +differentiators differentiator nom +differing differ ver +differs differ ver +difficulties difficulty nom +difficulty difficulty nom +diffidence diffidence nom +diffidences diffidence nom +diffract diffract ver +diffracted diffract ver +diffracting diffract ver +diffraction diffraction nom +diffractions diffraction nom +diffracts diffract ver +diffuse diffuse ver +diffused diffuse ver +diffuseness diffuseness nom +diffusenesses diffuseness nom +diffuser diffuser nom +diffusers diffuser nom +diffuses diffuse ver +diffusing diffuse ver +diffusion diffusion nom +diffusions diffusion nom +diffusor diffusor nom +diffusors diffusor nom +dig dig nom +digest digest nom +digested digest ver +digester digester nom +digesters digester nom +digestibilities digestibility nom +digestibility digestibility nom +digesting digest ver +digestion digestion nom +digestions digestion nom +digestive digestive nom +digestives digestive nom +digests digest nom +digger digger nom +diggers digger nom +digging dig ver +diggings digging nom +digit digit nom +digital digital nom +digitalin digitalin nom +digitalins digitalin nom +digitalis digitalis nom +digitalises digitalis nom +digitalization digitalization nom +digitalizations digitalization nom +digitalize digitalize ver +digitalized digitalize ver +digitalizes digitalize ver +digitalizing digitalize ver +digitals digital nom +digitization digitization nom +digitizations digitization nom +digitize digitize ver +digitized digitize ver +digitizer digitizer nom +digitizers digitizer nom +digitizes digitize ver +digitizing digitize ver +digits digit nom +dignified dignify ver +dignifies dignify ver +dignify dignify ver +dignifying dignify ver +dignitaries dignitary nom +dignitary dignitary nom +dignities dignity nom +dignity dignity nom +digraph digraph nom +digraphs digraph nom +digress digress ver +digressed digress ver +digresses digress ver +digressing digress ver +digression digression nom +digressions digression nom +digs dig nom +dike dike nom +diked dike ver +dikes dike nom +diking dike ver +dilapidate dilapidate ver +dilapidated dilapidate ver +dilapidates dilapidate ver +dilapidating dilapidate ver +dilapidation dilapidation nom +dilapidations dilapidation nom +dilatation dilatation nom +dilatations dilatation nom +dilate dilate ver +dilated dilate ver +dilates dilate ver +dilating dilate ver +dilation dilation nom +dilations dilation nom +dilator dilator nom +dilatoriness dilatoriness nom +dilatorinesses dilatoriness nom +dilators dilator nom +dildo dildo nom +dildoes dildo nom +dildos dildo nom +dilemma dilemma nom +dilemmas dilemma nom +dilettante dilettante nom +dilettantes dilettante nom +dilettantism dilettantism nom +dilettantisms dilettantism nom +diligence diligence nom +diligences diligence nom +dill dill nom +dillies dilly nom +dills dill nom +dilly dilly nom +dillydallied dillydally ver +dillydallies dillydally ver +dillydally dillydally ver +dillydallying dillydally ver +dilute dilute ver +diluted dilute ver +dilutes dilute ver +diluting dilute ver +dilution dilution nom +dilutions dilution nom +dim dim adj +dime dime nom +dimenhydrinate dimenhydrinate nom +dimenhydrinates dimenhydrinate nom +dimension dimension nom +dimensionalities dimensionality nom +dimensionality dimensionality nom +dimensioned dimension ver +dimensioning dimension ver +dimensions dimension nom +dimer dimer nom +dimers dimer nom +dimes dime nom +diminish diminish ver +diminished diminish ver +diminishes diminish ver +diminishing diminish ver +diminuendo diminuendo nom +diminuendos diminuendo nom +diminution diminution nom +diminutions diminution nom +diminutive diminutive nom +diminutiveness diminutiveness nom +diminutivenesses diminutiveness nom +diminutives diminutive nom +dimities dimity nom +dimity dimity nom +dimmed dim ver +dimmer dim adj +dimmers dimmer nom +dimmest dim adj +dimming dim ver +dimness dimness nom +dimnesses dimness nom +dimout dimout nom +dimouts dimout nom +dimple dimple nom +dimpled dimple ver +dimples dimple nom +dimplier dimply adj +dimpliest dimply adj +dimpling dimple ver +dimply dimply adj +dims dim ver +dimwit dimwit nom +dimwits dimwit nom +din din nom +dinar dinar nom +dinars dinar nom +dine dine ver +dined dine ver +diner diner nom +dinero dinero nom +dineros dinero nom +diners diner nom +dines dine ver +dinette dinette nom +dinettes dinette nom +ding ding nom +dingbat dingbat nom +dingbats dingbat nom +dingdong dingdong nom +dingdonged dingdong ver +dingdonging dingdong ver +dingdongs dingdong nom +dinge dinge ver +dinged ding ver +dinges dinge ver +dinghies dinghy nom +dinghy dinghy nom +dingier dingy adj +dingiest dingy adj +dinginess dinginess nom +dinginesses dinginess nom +dinging ding ver +dingle dingle nom +dingles dingle nom +dingo dingo nom +dingoes dingo nom +dings ding nom +dingus dingus nom +dinguses dingus nom +dingy dingy adj +dining dine ver +dinkier dinky adj +dinkies dinky nom +dinkiest dinky adj +dinky dinky adj +dinned din ver +dinner dinner nom +dinnered dinner ver +dinnering dinner ver +dinners dinner nom +dinnertime dinnertime nom +dinnertimes dinnertime nom +dinnerware dinnerware nom +dinnerwares dinnerware nom +dinning din ver +dinoflagellate dinoflagellate nom +dinoflagellates dinoflagellate nom +dinosaur dinosaur nom +dinosaurs dinosaur nom +dins din nom +dint dint nom +dinted dint ver +dinting dint ver +dints dint nom +diocesan diocesan nom +diocesans diocesan nom +diocese diocese nom +dioceses diocese nom +diode diode nom +diodes diode nom +diol diol nom +diols diol nom +diorama diorama nom +dioramas diorama nom +diorite diorite nom +diorites diorite nom +dioxide dioxide nom +dioxides dioxide nom +dioxin dioxin nom +dioxins dioxin nom +dip dip nom +diphenylhydantoin diphenylhydantoin nom +diphenylhydantoins diphenylhydantoin nom +diphtheria diphtheria nom +diphtherias diphtheria nom +diphthong diphthong nom +diphthonged diphthong ver +diphthonging diphthong ver +diphthongize diphthongize ver +diphthongized diphthongize ver +diphthongizes diphthongize ver +diphthongizing diphthongize ver +diphthongs diphthong nom +diplococci diplococcus nom +diplococcus diplococcus nom +diplodocus diplodocus nom +diplodocuses diplodocus nom +diploid diploid nom +diploids diploid nom +diploma diploma nom +diplomacies diplomacy nom +diplomacy diplomacy nom +diplomaed diploma ver +diplomaing diploma ver +diplomas diploma nom +diplomat diplomat nom +diplomata diploma nom +diplomatist diplomatist nom +diplomatists diplomatist nom +diplomats diplomat nom +diplotene diplotene nom +diplotenes diplotene nom +dipole dipole nom +dipoles dipole nom +dipped dip ver +dipper dipper nom +dippers dipper nom +dippier dippy adj +dippiest dippy adj +dipping dip ver +dippy dippy adj +dips dip nom +dipsomania dipsomania nom +dipsomaniac dipsomaniac nom +dipsomaniacs dipsomaniac nom +dipsomanias dipsomania nom +dipstick dipstick nom +dipsticks dipstick nom +diptera dipteron nom +dipteran dipteran nom +dipterans dipteran nom +dipterocarp dipterocarp nom +dipterocarps dipterocarp nom +dipteron dipteron nom +diptych diptych nom +diptychs diptych nom +dire dire adj +direct direct adj +directed direct ver +directer direct adj +directest direct adj +directing direct ver +direction direction nom +directionalities directionality nom +directionality directionality nom +directions direction nom +directive directive nom +directives directive nom +directivities directivity nom +directivity directivity nom +directness directness nom +directnesses directness nom +director director nom +directorate directorate nom +directorates directorate nom +directories directory nom +directors director nom +directorship directorship nom +directorships directorship nom +directory directory nom +directs direct ver +direr dire adj +direst dire adj +dirge dirge nom +dirges dirge nom +dirham dirham nom +dirhams dirham nom +dirigible dirigible nom +dirigibles dirigible nom +dirk dirk nom +dirked dirk ver +dirking dirk ver +dirks dirk nom +dirndl dirndl nom +dirndls dirndl nom +dirt dirt nom +dirtied dirty ver +dirtier dirty adj +dirties dirty ver +dirtiest dirty adj +dirtiness dirtiness nom +dirtinesses dirtiness nom +dirts dirt nom +dirty dirty adj +dirtying dirty ver +dis dis nom +disabilities disability nom +disability disability nom +disable disable ver +disabled disable ver +disablement disablement nom +disablements disablement nom +disables disable ver +disabling disable ver +disabuse disabuse ver +disabused disabuse ver +disabuses disabuse ver +disabusing disabuse ver +disaccharide disaccharide nom +disaccharides disaccharide nom +disaccord disaccord ver +disaccorded disaccord ver +disaccording disaccord ver +disaccords disaccord ver +disadvantage disadvantage nom +disadvantaged disadvantage ver +disadvantages disadvantage nom +disadvantaging disadvantage ver +disaffect disaffect ver +disaffected disaffect ver +disaffecting disaffect ver +disaffection disaffection nom +disaffections disaffection nom +disaffects disaffect ver +disaffiliate disaffiliate ver +disaffiliated disaffiliate ver +disaffiliates disaffiliate ver +disaffiliating disaffiliate ver +disaffiliation disaffiliation nom +disaffiliations disaffiliation nom +disafforest disafforest ver +disafforested disafforest ver +disafforesting disafforest ver +disafforests disafforest ver +disagree disagree ver +disagreeable disagreeable nom +disagreeableness disagreeableness nom +disagreeablenesses disagreeableness nom +disagreeables disagreeable nom +disagreed disagree ver +disagreeing disagree ver +disagreement disagreement nom +disagreements disagreement nom +disagrees disagree ver +disallow disallow ver +disallowed disallow ver +disallowing disallow ver +disallows disallow ver +disambiguate disambiguate ver +disambiguated disambiguate ver +disambiguates disambiguate ver +disambiguating disambiguate ver +disappear disappear ver +disappearance disappearance nom +disappearances disappearance nom +disappeared disappear ver +disappearing disappear ver +disappears disappear ver +disappoint disappoint ver +disappointed disappoint ver +disappointing disappoint ver +disappointment disappointment nom +disappointments disappointment nom +disappoints disappoint ver +disapprobation disapprobation nom +disapprobations disapprobation nom +disapproval disapproval nom +disapprovals disapproval nom +disapprove disapprove ver +disapproved disapprove ver +disapproves disapprove ver +disapproving disapprove ver +disarm disarm ver +disarmament disarmament nom +disarmaments disarmament nom +disarmed disarm ver +disarmer disarmer nom +disarmers disarmer nom +disarming disarm ver +disarms disarm ver +disarrange disarrange ver +disarranged disarrange ver +disarrangement disarrangement nom +disarrangements disarrangement nom +disarranges disarrange ver +disarranging disarrange ver +disarray disarray nom +disarrayed disarray ver +disarraying disarray ver +disarrays disarray nom +disarticulate disarticulate ver +disarticulated disarticulate ver +disarticulates disarticulate ver +disarticulating disarticulate ver +disassemble disassemble ver +disassembled disassemble ver +disassembles disassemble ver +disassemblies disassembly nom +disassembling disassemble ver +disassembly disassembly nom +disassociate disassociate ver +disassociated disassociate ver +disassociates disassociate ver +disassociating disassociate ver +disassociation disassociation nom +disassociations disassociation nom +disaster disaster nom +disasters disaster nom +disavow disavow ver +disavowal disavowal nom +disavowals disavowal nom +disavowed disavow ver +disavowing disavow ver +disavows disavow ver +disband disband ver +disbanded disband ver +disbanding disband ver +disbandment disbandment nom +disbandments disbandment nom +disbands disband ver +disbar disbar ver +disbarment disbarment nom +disbarments disbarment nom +disbarred disbar ver +disbarring disbar ver +disbars disbar ver +disbelief disbelief nom +disbeliefs disbelief nom +disbelieve disbelieve ver +disbelieved disbelieve ver +disbeliever disbeliever nom +disbelievers disbeliever nom +disbelieves disbelieve ver +disbelieving disbelieve ver +disbud disbud ver +disbudded disbud ver +disbudding disbud ver +disbuds disbud ver +disburden disburden ver +disburdened disburden ver +disburdening disburden ver +disburdens disburden ver +disbursal disbursal nom +disbursals disbursal nom +disburse disburse ver +disbursed disburse ver +disbursement disbursement nom +disbursements disbursement nom +disburser disburser nom +disbursers disburser nom +disburses disburse ver +disbursing disburse ver +disc disc nom +discant discant nom +discants discant nom +discard discard nom +discarded discard ver +discarding discard ver +discards discard nom +discase discase ver +discased discase ver +discases discase ver +discasing discase ver +disced disc ver +discern discern ver +discerned discern ver +discerning discern ver +discernment discernment nom +discernments discernment nom +discerns discern ver +discharge discharge nom +discharged discharge ver +discharges discharge nom +discharging discharge ver +discing disc ver +disciple disciple nom +discipled disciple ver +disciples disciple nom +discipleship discipleship nom +discipleships discipleship nom +disciplinarian disciplinarian nom +disciplinarians disciplinarian nom +discipline discipline nom +disciplined discipline ver +disciplines discipline nom +discipling disciple ver +disciplining discipline ver +disclaim disclaim ver +disclaimed disclaim ver +disclaimer disclaimer nom +disclaimers disclaimer nom +disclaiming disclaim ver +disclaims disclaim ver +disclose disclose ver +disclosed disclose ver +discloses disclose ver +disclosing disclose ver +disclosure disclosure nom +disclosures disclosure nom +disco disco nom +discoed disco ver +discographies discography nom +discography discography nom +discoing disco ver +discolor discolor ver +discoloration discoloration nom +discolorations discoloration nom +discolored discolor ver +discoloring discolor ver +discolors discolor ver +discolour discolour ver +discolouration discolouration nom +discolourations discolouration nom +discoloured discolour ver +discolouring discolour ver +discolours discolour ver +discombobulate discombobulate ver +discombobulated discombobulate ver +discombobulates discombobulate ver +discombobulating discombobulate ver +discombobulation discombobulation nom +discombobulations discombobulation nom +discomfit discomfit nom +discomfited discomfit ver +discomfiting discomfit ver +discomfits discomfit nom +discomfiture discomfiture nom +discomfitures discomfiture nom +discomfort discomfort nom +discomforted discomfort ver +discomforting discomfort ver +discomforts discomfort nom +discommode discommode ver +discommoded discommode ver +discommodes discommode ver +discommoding discommode ver +discompose discompose ver +discomposed discompose ver +discomposes discompose ver +discomposing discompose ver +discomposure discomposure nom +discomposures discomposure nom +discomycete discomycete nom +discomycetes discomycete nom +disconcert disconcert ver +disconcerted disconcert ver +disconcerting disconcert ver +disconcertion disconcertion nom +disconcertions disconcertion nom +disconcertment disconcertment nom +disconcertments disconcertment nom +disconcerts disconcert ver +disconnect disconnect ver +disconnected disconnect ver +disconnectedness disconnectedness nom +disconnectednesses disconnectedness nom +disconnecting disconnect ver +disconnection disconnection nom +disconnections disconnection nom +disconnects disconnect ver +disconsolateness disconsolateness nom +disconsolatenesses disconsolateness nom +discontent discontent nom +discontented discontent ver +discontentedness discontentedness nom +discontentednesses discontentedness nom +discontenting discontent ver +discontentment discontentment nom +discontentments discontentment nom +discontents discontent nom +discontinuance discontinuance nom +discontinuances discontinuance nom +discontinuation discontinuation nom +discontinuations discontinuation nom +discontinue discontinue ver +discontinued discontinue ver +discontinues discontinue ver +discontinuing discontinue ver +discontinuities discontinuity nom +discontinuity discontinuity nom +discord discord nom +discordance discordance nom +discordances discordance nom +discorded discord ver +discording discord ver +discords discord nom +discos disco nom +discotheque discotheque nom +discotheques discotheque nom +discount discount nom +discounted discount ver +discountenance discountenance nom +discountenanced discountenance ver +discountenances discountenance nom +discountenancing discountenance ver +discounter discounter nom +discounters discounter nom +discounting discount ver +discounts discount nom +discourage discourage ver +discouraged discourage ver +discouragement discouragement nom +discouragements discouragement nom +discourages discourage ver +discouraging discourage ver +discourse discourse nom +discoursed discourse ver +discourses discourse nom +discoursing discourse ver +discourtesies discourtesy nom +discourtesy discourtesy nom +discover discover ver +discovered discover ver +discoverer discoverer nom +discoverers discoverer nom +discoveries discovery nom +discovering discover ver +discovers discover ver +discovery discovery nom +discredit discredit nom +discredited discredit ver +discrediting discredit ver +discredits discredit nom +discreet discreet adj +discreeter discreet adj +discreetest discreet adj +discreetness discreetness nom +discreetnesses discreetness nom +discrepancies discrepancy nom +discrepancy discrepancy nom +discrete discrete adj +discreteness discreteness nom +discretenesses discreteness nom +discreter discrete adj +discretest discrete adj +discretion discretion nom +discretions discretion nom +discriminate discriminate ver +discriminated discriminate ver +discriminates discriminate ver +discriminating discriminate ver +discrimination discrimination nom +discriminations discrimination nom +discriminator discriminator nom +discriminators discriminator nom +discs disc nom +discursiveness discursiveness nom +discursivenesses discursiveness nom +discus discus nom +discuses discus nom +discuss discuss ver +discussant discussant nom +discussants discussant nom +discussed discuss ver +discusses discuss ver +discussing discuss ver +discussion discussion nom +discussions discussion nom +disdain disdain nom +disdained disdain ver +disdainfulness disdainfulness nom +disdainfulnesses disdainfulness nom +disdaining disdain ver +disdains disdain nom +disease disease nom +diseased disease ver +diseases disease nom +diseasing disease ver +disembark disembark ver +disembarkation disembarkation nom +disembarkations disembarkation nom +disembarked disembark ver +disembarking disembark ver +disembarkment disembarkment nom +disembarkments disembarkment nom +disembarks disembark ver +disembarrass disembarrass ver +disembarrassed disembarrass ver +disembarrasses disembarrass ver +disembarrassing disembarrass ver +disembarrassment disembarrassment nom +disembarrassments disembarrassment nom +disembodied disembody ver +disembodies disembody ver +disembodiment disembodiment nom +disembodiments disembodiment nom +disembody disembody ver +disembodying disembody ver +disembowel disembowel ver +disemboweled disembowel ver +disemboweling disembowel ver +disembowelment disembowelment nom +disembowelments disembowelment nom +disembowels disembowel ver +disembroil disembroil ver +disembroiled disembroil ver +disembroiling disembroil ver +disembroils disembroil ver +disenable disenable ver +disenabled disenable ver +disenables disenable ver +disenabling disenable ver +disenchant disenchant ver +disenchanted disenchant ver +disenchanting disenchant ver +disenchantment disenchantment nom +disenchantments disenchantment nom +disenchants disenchant ver +disencumber disencumber ver +disencumbered disencumber ver +disencumbering disencumber ver +disencumbers disencumber ver +disenfranchise disenfranchise ver +disenfranchised disenfranchise ver +disenfranchisement disenfranchisement nom +disenfranchisements disenfranchisement nom +disenfranchises disenfranchise ver +disenfranchising disenfranchise ver +disengage disengage ver +disengaged disengage ver +disengagement disengagement nom +disengagements disengagement nom +disengages disengage ver +disengaging disengage ver +disentangle disentangle ver +disentangled disentangle ver +disentanglement disentanglement nom +disentanglements disentanglement nom +disentangles disentangle ver +disentangling disentangle ver +disequilibrium disequilibrium nom +disequilibriums disequilibrium nom +disestablish disestablish ver +disestablished disestablish ver +disestablishes disestablish ver +disestablishing disestablish ver +disestablishment disestablishment nom +disestablishments disestablishment nom +disesteem disesteem nom +disesteemed disesteem ver +disesteeming disesteem ver +disesteems disesteem nom +disfavor disfavor nom +disfavored disfavor ver +disfavoring disfavor ver +disfavors disfavor nom +disfavour disfavour nom +disfavoured disfavour ver +disfavouring disfavour ver +disfavours disfavour nom +disfigure disfigure ver +disfigured disfigure ver +disfigurement disfigurement nom +disfigurements disfigurement nom +disfigures disfigure ver +disfiguring disfigure ver +disforest disforest ver +disforested disforest ver +disforesting disforest ver +disforests disforest ver +disfranchise disfranchise ver +disfranchised disfranchise ver +disfranchisement disfranchisement nom +disfranchisements disfranchisement nom +disfranchises disfranchise ver +disfranchising disfranchise ver +disgorge disgorge ver +disgorged disgorge ver +disgorgement disgorgement nom +disgorgements disgorgement nom +disgorges disgorge ver +disgorging disgorge ver +disgrace disgrace nom +disgraced disgrace ver +disgracefulness disgracefulness nom +disgracefulnesses disgracefulness nom +disgraces disgrace nom +disgracing disgrace ver +disgruntle disgruntle ver +disgruntled disgruntle ver +disgruntlement disgruntlement nom +disgruntlements disgruntlement nom +disgruntles disgruntle ver +disgruntling disgruntle ver +disguise disguise nom +disguised disguise ver +disguises disguise nom +disguising disguise ver +disgust disgust nom +disgusted disgust ver +disgusting disgust ver +disgusts disgust nom +dish dish nom +dishabille dishabille nom +dishabilles dishabille nom +disharmonies disharmony nom +disharmony disharmony nom +dishcloth dishcloth nom +dishcloths dishcloth nom +dishearten dishearten ver +disheartened dishearten ver +disheartening dishearten ver +disheartenment disheartenment nom +disheartenments disheartenment nom +disheartens dishearten ver +dished dish ver +dishes dish nom +dishevel dishevel ver +disheveled dishevel ver +disheveling dishevel ver +dishevelment dishevelment nom +dishevelments dishevelment nom +dishevels dishevel ver +dishful dishful nom +dishfuls dishful nom +dishier dishy adj +dishiest dishy adj +dishing dish ver +dishonesties dishonesty nom +dishonesty dishonesty nom +dishonor dishonor nom +dishonorableness dishonorableness nom +dishonorablenesses dishonorableness nom +dishonored dishonor ver +dishonoring dishonor ver +dishonors dishonor nom +dishonour dishonour nom +dishonoured dishonour ver +dishonouring dishonour ver +dishonours dishonour nom +dishpan dishpan nom +dishpans dishpan nom +dishrag dishrag nom +dishrags dishrag nom +dishtowel dishtowel nom +dishtowels dishtowel nom +dishware dishware nom +dishwares dishware nom +dishwasher dishwasher nom +dishwashers dishwasher nom +dishwater dishwater nom +dishwaters dishwater nom +dishy dishy adj +disillusion disillusion nom +disillusioned disillusion ver +disillusioning disillusion ver +disillusionment disillusionment nom +disillusionments disillusionment nom +disillusions disillusion nom +disincentive disincentive nom +disincentives disincentive nom +disinclination disinclination nom +disinclinations disinclination nom +disincline disincline ver +disinclined disincline ver +disinclines disincline ver +disinclining disincline ver +disinfect disinfect ver +disinfectant disinfectant nom +disinfectants disinfectant nom +disinfected disinfect ver +disinfecting disinfect ver +disinfection disinfection nom +disinfections disinfection nom +disinfects disinfect ver +disinfest disinfest ver +disinfestation disinfestation nom +disinfestations disinfestation nom +disinfested disinfest ver +disinfesting disinfest ver +disinfests disinfest ver +disinflation disinflation nom +disinflations disinflation nom +disinformation disinformation nom +disinformations disinformation nom +disingenuousness disingenuousness nom +disingenuousnesses disingenuousness nom +disinherit disinherit ver +disinheritance disinheritance nom +disinheritances disinheritance nom +disinherited disinherit ver +disinheriting disinherit ver +disinherits disinherit ver +disintegrate disintegrate ver +disintegrated disintegrate ver +disintegrates disintegrate ver +disintegrating disintegrate ver +disintegration disintegration nom +disintegrations disintegration nom +disinter disinter ver +disinterest disinterest nom +disinterested disinterest ver +disinterestedness disinterestedness nom +disinterestednesses disinterestedness nom +disinteresting disinterest ver +disinterests disinterest nom +disinterment disinterment nom +disinterments disinterment nom +disinterred disinter ver +disinterring disinter ver +disinters disinter ver +disinvestment disinvestment nom +disinvestments disinvestment nom +disjoin disjoin ver +disjoined disjoin ver +disjoining disjoin ver +disjoins disjoin ver +disjoint disjoint ver +disjointed disjoint ver +disjointedness disjointedness nom +disjointednesses disjointedness nom +disjointing disjoint ver +disjoints disjoint ver +disjunction disjunction nom +disjunctions disjunction nom +disjunctive disjunctive nom +disjunctives disjunctive nom +disjuncture disjuncture nom +disjunctures disjuncture nom +disk disk nom +disked disk ver +diskette diskette nom +diskettes diskette nom +disking disk ver +disks disk nom +dislike dislike nom +disliked dislike ver +dislikes dislike nom +disliking dislike ver +dislocate dislocate ver +dislocated dislocate ver +dislocates dislocate ver +dislocating dislocate ver +dislocation dislocation nom +dislocations dislocation nom +dislodge dislodge ver +dislodged dislodge ver +dislodgement dislodgement nom +dislodgements dislodgement nom +dislodges dislodge ver +dislodging dislodge ver +dislodgment dislodgment nom +dislodgments dislodgment nom +disloyalties disloyalty nom +disloyalty disloyalty nom +dismal dismal adj +dismaler dismal adj +dismalest dismal adj +dismals dismal nom +dismantle dismantle ver +dismantled dismantle ver +dismantlement dismantlement nom +dismantlements dismantlement nom +dismantles dismantle ver +dismantling dismantle ver +dismay dismay nom +dismayed dismay ver +dismaying dismay ver +dismays dismay nom +dismember dismember ver +dismembered dismember ver +dismembering dismember ver +dismemberment dismemberment nom +dismemberments dismemberment nom +dismembers dismember ver +dismiss dismiss ver +dismissal dismissal nom +dismissals dismissal nom +dismissed dismiss ver +dismisses dismiss ver +dismissing dismiss ver +dismount dismount nom +dismounted dismount ver +dismounting dismount ver +dismounts dismount nom +disobedience disobedience nom +disobediences disobedience nom +disobey disobey ver +disobeyed disobey ver +disobeying disobey ver +disobeys disobey ver +disoblige disoblige ver +disobliged disoblige ver +disobliges disoblige ver +disobliging disoblige ver +disorder disorder nom +disordered disorder ver +disordering disorder ver +disorderliness disorderliness nom +disorderlinesses disorderliness nom +disorders disorder nom +disorganization disorganization nom +disorganizations disorganization nom +disorganize disorganize ver +disorganized disorganize ver +disorganizes disorganize ver +disorganizing disorganize ver +disorient disorient ver +disorientate disorientate ver +disorientated disorientate ver +disorientates disorientate ver +disorientating disorientate ver +disorientation disorientation nom +disorientations disorientation nom +disoriented disorient ver +disorienting disorient ver +disorients disorient ver +disown disown ver +disowned disown ver +disowning disown ver +disownment disownment nom +disownments disownment nom +disowns disown ver +disparage disparage ver +disparaged disparage ver +disparagement disparagement nom +disparagements disparagement nom +disparager disparager nom +disparagers disparager nom +disparages disparage ver +disparaging disparage ver +disparateness disparateness nom +disparatenesses disparateness nom +disparities disparity nom +disparity disparity nom +dispassion dispassion nom +dispassionateness dispassionateness nom +dispassionatenesses dispassionateness nom +dispassions dispassion nom +dispatch dispatch nom +dispatched dispatch ver +dispatcher dispatcher nom +dispatchers dispatcher nom +dispatches dispatch nom +dispatching dispatch ver +dispel dispel ver +dispelled dispel ver +dispelling dispel ver +dispels dispel ver +dispensabilities dispensability nom +dispensability dispensability nom +dispensableness dispensableness nom +dispensablenesses dispensableness nom +dispensaries dispensary nom +dispensary dispensary nom +dispensation dispensation nom +dispensations dispensation nom +dispense dispense ver +dispensed dispense ver +dispenser dispenser nom +dispensers dispenser nom +dispenses dispense ver +dispensing dispense ver +dispersal dispersal nom +dispersals dispersal nom +disperse disperse ver +dispersed disperse ver +disperses disperse ver +dispersing disperse ver +dispersion dispersion nom +dispersions dispersion nom +dispirit dispirit ver +dispirited dispirit ver +dispiritedness dispiritedness nom +dispiritednesses dispiritedness nom +dispiriting dispirit ver +dispirits dispirit ver +displace displace ver +displaced displace ver +displacement displacement nom +displacements displacement nom +displaces displace ver +displacing displace ver +display display nom +displayed display ver +displaying display ver +displays display nom +displease displease ver +displeased displease ver +displeases displease ver +displeasing displease ver +displeasure displeasure nom +displeasured displeasure ver +displeasures displeasure nom +displeasuring displeasure ver +displume displume ver +displumed displume ver +displumes displume ver +displuming displume ver +disport disport nom +disported disport ver +disporting disport ver +disports disport nom +disposable disposable nom +disposables disposable nom +disposal disposal nom +disposals disposal nom +dispose dispose nom +disposed dispose ver +disposer disposer nom +disposers disposer nom +disposes dispose nom +disposing dispose ver +disposition disposition nom +dispositions disposition nom +dispossess dispossess ver +dispossessed dispossess ver +dispossesses dispossess ver +dispossessing dispossess ver +dispossession dispossession nom +dispossessions dispossession nom +dispraise dispraise nom +dispraised dispraise ver +dispraises dispraise nom +dispraising dispraise ver +disproof disproof nom +disproofs disproof nom +disproportion disproportion nom +disproportioned disproportion ver +disproportioning disproportion ver +disproportions disproportion nom +disprove disprove ver +disproved disprove ver +disproves disprove ver +disproving disprove ver +disputant disputant nom +disputants disputant nom +disputation disputation nom +disputations disputation nom +dispute dispute nom +disputed dispute ver +disputer disputer nom +disputers disputer nom +disputes dispute nom +disputing dispute ver +disqualification disqualification nom +disqualifications disqualification nom +disqualified disqualify ver +disqualifies disqualify ver +disqualify disqualify ver +disqualifying disqualify ver +disquiet disquiet nom +disquieted disquiet ver +disquieting disquiet ver +disquiets disquiet nom +disquietude disquietude nom +disquietudes disquietude nom +disquisition disquisition nom +disquisitions disquisition nom +disregard disregard nom +disregarded disregard ver +disregarding disregard ver +disregards disregard nom +disrepair disrepair nom +disrepairs disrepair nom +disreputabilities disreputability nom +disreputability disreputability nom +disreputableness disreputableness nom +disreputablenesses disreputableness nom +disrepute disrepute nom +disreputes disrepute nom +disrespect disrespect nom +disrespected disrespect ver +disrespecting disrespect ver +disrespects disrespect nom +disrobe disrobe ver +disrobed disrobe ver +disrobes disrobe ver +disrobing disrobe ver +disrupt disrupt ver +disrupted disrupt ver +disrupting disrupt ver +disruption disruption nom +disruptions disruption nom +disrupts disrupt ver +diss diss ver +dissatisfaction dissatisfaction nom +dissatisfactions dissatisfaction nom +dissatisfied dissatisfy ver +dissatisfies dissatisfy ver +dissatisfy dissatisfy ver +dissatisfying dissatisfy ver +dissect dissect ver +dissected dissect ver +dissecting dissect ver +dissection dissection nom +dissections dissection nom +dissector dissector nom +dissectors dissector nom +dissects dissect ver +dissed dis ver +dissemblance dissemblance nom +dissemblances dissemblance nom +dissemble dissemble ver +dissembled dissemble ver +dissembler dissembler nom +dissemblers dissembler nom +dissembles dissemble ver +dissembling dissemble ver +disseminate disseminate ver +disseminated disseminate ver +disseminates disseminate ver +disseminating disseminate ver +dissemination dissemination nom +disseminations dissemination nom +disseminator disseminator nom +disseminators disseminator nom +dissension dissension nom +dissensions dissension nom +dissent dissent nom +dissented dissent ver +dissenter dissenter nom +dissenters dissenter nom +dissenting dissent ver +dissents dissent nom +dissertation dissertation nom +dissertations dissertation nom +disservice disservice nom +disservices disservice nom +disses dis nom +dissever dissever ver +dissevered dissever ver +dissevering dissever ver +dissevers dissever ver +dissidence dissidence nom +dissidences dissidence nom +dissident dissident nom +dissidents dissident nom +dissimilarities dissimilarity nom +dissimilarity dissimilarity nom +dissimilate dissimilate ver +dissimilated dissimilate ver +dissimilates dissimilate ver +dissimilating dissimilate ver +dissimilation dissimilation nom +dissimilations dissimilation nom +dissimilitude dissimilitude nom +dissimilitudes dissimilitude nom +dissimulate dissimulate ver +dissimulated dissimulate ver +dissimulates dissimulate ver +dissimulating dissimulate ver +dissimulation dissimulation nom +dissimulations dissimulation nom +dissimulator dissimulator nom +dissimulators dissimulator nom +dissing dis ver +dissipate dissipate ver +dissipated dissipate ver +dissipates dissipate ver +dissipating dissipate ver +dissipation dissipation nom +dissipations dissipation nom +dissociate dissociate ver +dissociated dissociate ver +dissociates dissociate ver +dissociating dissociate ver +dissociation dissociation nom +dissociations dissociation nom +dissolubilities dissolubility nom +dissolubility dissolubility nom +dissoluteness dissoluteness nom +dissolutenesses dissoluteness nom +dissolution dissolution nom +dissolutions dissolution nom +dissolve dissolve nom +dissolved dissolve ver +dissolvent dissolvent nom +dissolvents dissolvent nom +dissolver dissolver nom +dissolvers dissolver nom +dissolves dissolve nom +dissolving dissolve ver +dissonance dissonance nom +dissonances dissonance nom +dissuade dissuade ver +dissuaded dissuade ver +dissuades dissuade ver +dissuading dissuade ver +dissuasion dissuasion nom +dissuasions dissuasion nom +dissyllable dissyllable nom +dissyllables dissyllable nom +distaff distaff nom +distaffs distaff nom +distance distance nom +distanced distance ver +distances distance nom +distancing distance ver +distaste distaste nom +distasted distaste ver +distastefulness distastefulness nom +distastefulnesses distastefulness nom +distastes distaste nom +distasting distaste ver +distemper distemper nom +distempered distemper ver +distempering distemper ver +distempers distemper nom +distend distend ver +distended distend ver +distending distend ver +distends distend ver +distension distension nom +distensions distension nom +distention distention nom +distentions distention nom +distich distich nom +distichs distich nom +distil distil ver +distill distill ver +distillate distillate nom +distillates distillate nom +distillation distillation nom +distillations distillation nom +distilled distil ver +distiller distiller nom +distilleries distillery nom +distillers distiller nom +distillery distillery nom +distilling distil ver +distills distill ver +distils distil ver +distinct distinct adj +distincter distinct adj +distinctest distinct adj +distinction distinction nom +distinctions distinction nom +distinctiveness distinctiveness nom +distinctivenesses distinctiveness nom +distinctness distinctness nom +distinctnesses distinctness nom +distinguish distinguish ver +distinguished distinguish ver +distinguishes distinguish ver +distinguishing distinguish ver +distort distort ver +distorted distort ver +distorting distort ver +distortion distortion nom +distortions distortion nom +distorts distort ver +distract distract ver +distracted distract ver +distracting distract ver +distraction distraction nom +distractions distraction nom +distracts distract ver +distrain distrain ver +distrained distrain ver +distraining distrain ver +distrains distrain ver +distraint distraint nom +distraints distraint nom +distress distress nom +distressed distress ver +distresses distress nom +distressfulness distressfulness nom +distressfulnesses distressfulness nom +distressing distress ver +distributaries distributary nom +distributary distributary nom +distribute distribute ver +distributed distribute ver +distributer distributer nom +distributers distributer nom +distributes distribute ver +distributing distribute ver +distribution distribution nom +distributions distribution nom +distributive distributive nom +distributives distributive nom +distributor distributor nom +distributors distributor nom +district district nom +districted district ver +districting district ver +districts district nom +distrust distrust nom +distrusted distrust ver +distrustfulness distrustfulness nom +distrustfulnesses distrustfulness nom +distrusting distrust ver +distrusts distrust nom +disturb disturb ver +disturbance disturbance nom +disturbances disturbance nom +disturbed disturb ver +disturber disturber nom +disturbers disturber nom +disturbing disturb ver +disturbs disturb ver +disulfiram disulfiram nom +disulfirams disulfiram nom +disunion disunion nom +disunions disunion nom +disunite disunite ver +disunited disunite ver +disunites disunite ver +disunities disunity nom +disuniting disunite ver +disunity disunity nom +disuse disuse nom +disused disuse ver +disuses disuse nom +disusing disuse ver +disyllable disyllable nom +disyllables disyllable nom +dit dit nom +dita dita nom +ditas dita nom +ditch ditch nom +ditched ditch ver +ditches ditch nom +ditching ditch ver +dither dither nom +dithered dither ver +ditherer ditherer nom +ditherers ditherer nom +dithering dither ver +dithers dither nom +dithyramb dithyramb nom +dithyrambs dithyramb nom +dits dit nom +ditsier ditsy adj +ditsiest ditsy adj +ditsy ditsy adj +dittanies dittany nom +dittany dittany nom +dittied ditty ver +ditties ditty nom +ditto ditto nom +dittoed ditto ver +dittoing ditto ver +dittos ditto nom +ditty ditty nom +dittying ditty ver +ditz ditz nom +ditzes ditz nom +ditzier ditzy adj +ditziest ditzy adj +ditzy ditzy adj +diuretic diuretic nom +diuretics diuretic nom +diurnal diurnal nom +diurnals diurnal nom +diva diva nom +divagate divagate ver +divagated divagate ver +divagates divagate ver +divagating divagate ver +divagation divagation nom +divagations divagation nom +divan divan nom +divans divan nom +divaricate divaricate ver +divaricated divaricate ver +divaricates divaricate ver +divaricating divaricate ver +divarication divarication nom +divarications divarication nom +divas diva nom +dive dive nom +dived dive ver +diver diver nom +diverge diverge ver +diverged diverge ver +divergence divergence nom +divergences divergence nom +divergencies divergency nom +divergency divergency nom +diverges diverge ver +diverging diverge ver +divers diver nom +diverseness diverseness nom +diversenesses diverseness nom +diversification diversification nom +diversifications diversification nom +diversified diversify ver +diversifies diversify ver +diversify diversify ver +diversifying diversify ver +diversion diversion nom +diversionist diversionist nom +diversionists diversionist nom +diversions diversion nom +diversities diversity nom +diversity diversity nom +divert divert ver +diverted divert ver +diverticula diverticulum nom +diverticulitis diverticulitis nom +diverticulitises diverticulitis nom +diverticuloses diverticulosis nom +diverticulosis diverticulosis nom +diverticulum diverticulum nom +divertimento divertimento nom +divertimentos divertimento nom +diverting divert ver +diverts divert ver +dives dive nom +divest divest ver +divested divest ver +divesting divest ver +divestiture divestiture nom +divestitures divestiture nom +divestment divestment nom +divestments divestment nom +divests divest ver +divide divide nom +divided divide ver +dividend dividend nom +dividends dividend nom +divider divider nom +dividers divider nom +divides divide nom +dividing divide ver +divination divination nom +divinations divination nom +divine divine adj +divined divine ver +diviner divine adj +diviners diviner nom +divines divine nom +divinest divine adj +diving dive ver +divings diving nom +divining divine ver +divinities divinity nom +divinity divinity nom +divisibilities divisibility nom +divisibility divisibility nom +division division nom +divisions division nom +divisiveness divisiveness nom +divisivenesses divisiveness nom +divisor divisor nom +divisors divisor nom +divorce divorce nom +divorced divorce ver +divorcee divorcee nom +divorcees divorcee nom +divorcement divorcement nom +divorcements divorcement nom +divorces divorce nom +divorcing divorce ver +divot divot nom +divots divot nom +divulge divulge ver +divulged divulge ver +divulgement divulgement nom +divulgements divulgement nom +divulgence divulgence nom +divulgences divulgence nom +divulges divulge ver +divulging divulge ver +divvied divvy ver +divvies divvy nom +divvy divvy nom +divvying divvy ver +diwan diwan nom +diwans diwan nom +dixie dixie nom +dixieland dixieland nom +dixielands dixieland nom +dixies dixie nom +dizen dizen ver +dizened dizen ver +dizening dizen ver +dizens dizen ver +dizzied dizzy ver +dizzier dizzy adj +dizzies dizzy ver +dizziest dizzy adj +dizziness dizziness nom +dizzinesses dizziness nom +dizzy dizzy adj +dizzying dizzy ver +djellaba djellaba nom +djellabah djellabah nom +djellabahs djellabah nom +djellabas djellaba nom +djinn djinn nom +djinns djinn nom +do do sw +dobbin dobbin nom +dobbins dobbin nom +dobra dobra nom +dobras dobra nom +dobson dobson nom +dobsonflies dobsonfly nom +dobsonfly dobsonfly nom +dobsons dobson nom +doc doc nom +docent docent nom +docents docent nom +docile docile adj +dociler docile adj +docilest docile adj +docilities docility nom +docility docility nom +dock dock nom +dockage dockage nom +dockages dockage nom +docked dock ver +docker docker nom +dockers docker nom +docket docket nom +docketed docket ver +docketing docket ver +dockets docket nom +dockhand dockhand nom +dockhands dockhand nom +docking dock ver +dockings docking nom +docks dock nom +dockside dockside nom +docksides dockside nom +dockworker dockworker nom +dockworkers dockworker nom +dockyard dockyard nom +dockyards dockyard nom +docs doc nom +doctor doctor nom +doctorate doctorate nom +doctorates doctorate nom +doctored doctor ver +doctorfish doctorfish nom +doctoring doctor ver +doctors doctor nom +doctrinaire doctrinaire nom +doctrinaires doctrinaire nom +doctrine doctrine nom +doctrines doctrine nom +docudrama docudrama nom +docudramas docudrama nom +document document nom +documentaries documentary nom +documentary documentary nom +documentation documentation nom +documentations documentation nom +documented document ver +documenting document ver +documents document nom +dodder dodder nom +doddered dodder ver +dodderer dodderer nom +dodderers dodderer nom +doddering dodder ver +dodders dodder nom +dodecagon dodecagon nom +dodecagons dodecagon nom +dodecahedron dodecahedron nom +dodecahedrons dodecahedron nom +dodge dodge nom +dodged dodge ver +dodger dodger nom +dodgers dodger nom +dodges dodge nom +dodgier dodgy adj +dodgiest dodgy adj +dodging dodge ver +dodgy dodgy adj +dodo dodo nom +dodos dodo nom +doe doe nom +doer doer nom +doers doer nom +does does sw +doeskin doeskin nom +doeskins doeskin nom +doesn_t doesn_t sw +doff doff ver +doffed doff ver +doffing doff ver +doffs doff ver +dog dog nom +dogbane dogbane nom +dogbanes dogbane nom +dogcart dogcart nom +dogcarts dogcart nom +dogcatcher dogcatcher nom +dogcatchers dogcatcher nom +doge doge nom +dogear dogear ver +dogeared dogear ver +dogearing dogear ver +dogears dogear ver +doges doge nom +dogfight dogfight nom +dogfights dogfight nom +dogfish dogfish nom +dogfishes dogfish nom +dogged dog ver +doggeder dogged adj +doggedest dogged adj +doggedness doggedness nom +doggednesses doggedness nom +doggerel doggerel nom +doggerels doggerel nom +doggie doggie nom +doggier doggy adj +doggies doggie nom +doggiest doggy adj +dogging dog ver +doggone doggone adj +doggoned doggone ver +doggoneder doggoned adj +doggonedest doggoned adj +doggoner doggone adj +doggones doggone ver +doggonest doggone adj +doggoning doggone ver +doggy doggy adj +doghouse doghouse nom +doghouses doghouse nom +dogie dogie nom +dogies dogie nom +dogleg dogleg nom +doglegged dogleg ver +doglegging dogleg ver +doglegs dogleg nom +dogma dogma nom +dogmas dogma nom +dogmatism dogmatism nom +dogmatisms dogmatism nom +dogmatist dogmatist nom +dogmatists dogmatist nom +dogmatize dogmatize ver +dogmatized dogmatize ver +dogmatizes dogmatize ver +dogmatizing dogmatize ver +dogs dog nom +dogsbodies dogsbody nom +dogsbody dogsbody nom +dogsled dogsled nom +dogsleds dogsled nom +dogteeth dogtooth nom +dogtooth dogtooth nom +dogtrot dogtrot nom +dogtrots dogtrot nom +dogtrotted dogtrot ver +dogtrotting dogtrot ver +dogwatch dogwatch nom +dogwatches dogwatch nom +dogwood dogwood nom +dogwoods dogwood nom +dogy dogy nom +doh doh nom +dohs doh nom +doilies doily nom +doily doily nom +doing doing sw +doings doing nom +dol dol nom +dole dole nom +doled dole ver +doleful doleful adj +dolefuller doleful adj +dolefullest doleful adj +dolefulness dolefulness nom +dolefulnesses dolefulness nom +doles dole nom +doling dole ver +doll doll nom +dollar dollar nom +dollarfish dollarfish nom +dollars dollar nom +dolled doll ver +dollhouse dollhouse nom +dollhouses dollhouse nom +dollied dolly ver +dollies dolly nom +dolling doll ver +dollop dollop nom +dolloped dollop ver +dolloping dollop ver +dollops dollop nom +dolls doll nom +dolly dolly nom +dollying dolly ver +dolman dolman nom +dolmans dolman nom +dolmen dolmen nom +dolmens dolmen nom +dolomite dolomite nom +dolomites dolomite nom +dolor dolor nom +dolors dolor nom +dolour dolour nom +dolours dolour nom +dolphin dolphin nom +dolphinfish dolphinfish nom +dolphins dolphin nom +dols dol nom +dolt dolt nom +doltishness doltishness nom +doltishnesses doltishness nom +dolts dolt nom +domain domain nom +domains domain nom +dome dome nom +domed dome ver +domes dome nom +domestic domestic nom +domesticate domesticate ver +domesticated domesticate ver +domesticates domesticate ver +domesticating domesticate ver +domestication domestication nom +domestications domestication nom +domesticities domesticity nom +domesticity domesticity nom +domesticize domesticize ver +domesticized domesticize ver +domesticizes domesticize ver +domesticizing domesticize ver +domestics domestic nom +domicile domicile nom +domiciled domicile ver +domiciles domicile nom +domiciliation domiciliation nom +domiciliations domiciliation nom +domiciling domicile ver +dominance dominance nom +dominances dominance nom +dominant dominant nom +dominants dominant nom +dominate dominate ver +dominated dominate ver +dominates dominate ver +dominating dominate ver +domination domination nom +dominations domination nom +dominatrices dominatrix nom +dominatrix dominatrix nom +domine domine nom +dominee dominee nom +domineer domineer ver +domineered domineer ver +domineering domineer ver +domineeringness domineeringness nom +domineeringnesses domineeringness nom +domineers domineer ver +dominees dominee nom +domines domine nom +doming dome ver +dominie dominie nom +dominies dominie nom +dominion dominion nom +dominions dominion nom +domino domino nom +dominoes domino nom +don don nom +don_t don_t sw +dona dona nom +donas dona nom +donate donate ver +donated donate ver +donates donate ver +donating donate ver +donation donation nom +donations donation nom +done done sw +donee donee nom +donees donee nom +dong dong nom +donged dong ver +donging dong ver +dongle dongle nom +dongles dongle nom +dongs dong nom +donjon donjon nom +donjons donjon nom +donkey donkey nom +donkeys donkey nom +donkeywork donkeywork nom +donkeyworks donkeywork nom +donna donna nom +donnas donna nom +donned don ver +donning don ver +donnybrook donnybrook nom +donnybrooks donnybrook nom +donor donor nom +donors donor nom +dons don nom +donut donut nom +donuts donut nom +doodad doodad nom +doodads doodad nom +doodle doodle nom +doodlebug doodlebug nom +doodlebugs doodlebug nom +doodled doodle ver +doodler doodler nom +doodlers doodler nom +doodles doodle nom +doodling doodle ver +doofus doofus nom +doofuses doofus nom +doohickey doohickey nom +doohickeys doohickey nom +doom doom nom +doomed doom ver +dooming doom ver +dooms doom nom +doomsday doomsday nom +doomsdays doomsday nom +door door nom +doorbell doorbell nom +doorbells doorbell nom +doorframe doorframe nom +doorframes doorframe nom +doorhandle doorhandle nom +doorhandles doorhandle nom +doorjamb doorjamb nom +doorjambs doorjamb nom +doorkeeper doorkeeper nom +doorkeepers doorkeeper nom +doorknob doorknob nom +doorknobs doorknob nom +doorknocker doorknocker nom +doorknockers doorknocker nom +doorman doorman nom +doormat doormat nom +doormats doormat nom +doormen doorman nom +doornail doornail nom +doornails doornail nom +doorplate doorplate nom +doorplates doorplate nom +doorpost doorpost nom +doorposts doorpost nom +doors door nom +doorsill doorsill nom +doorsills doorsill nom +doorstep doorstep nom +doorsteps doorstep nom +doorstop doorstop nom +doorstopper doorstopper nom +doorstoppers doorstopper nom +doorstops doorstop nom +doorway doorway nom +doorways doorway nom +dooryard dooryard nom +dooryards dooryard nom +dopa dopa nom +dopamine dopamine nom +dopamines dopamine nom +dopas dopa nom +dope dope nom +doped dope ver +doper doper nom +dopers doper nom +dopes dope nom +dopey dopey adj +dopier dopey adj +dopiest dopey adj +dopiness dopiness nom +dopinesses dopiness nom +doping dope ver +dopy dopy adj +dorbeetle dorbeetle nom +dorbeetles dorbeetle nom +dories dory nom +dork dork nom +dorkier dorky adj +dorkiest dorky adj +dorks dork nom +dorky dorky adj +dorm dorm nom +dormancies dormancy nom +dormancy dormancy nom +dormer dormer nom +dormers dormer nom +dormice dormouse nom +dormitories dormitory nom +dormitory dormitory nom +dormouse dormouse nom +dorms dorm nom +dorsum dorsum nom +dorsums dorsum nom +dory dory nom +dos do nom +dosage dosage nom +dosages dosage nom +dose dose nom +dosed dose ver +doses dose nom +dosimeter dosimeter nom +dosimeters dosimeter nom +dosing dose ver +doss doss ver +dossed doss ver +dosser dosser nom +dossers dosser nom +dosses doss ver +dosshouse dosshouse nom +dosshouses dosshouse nom +dossier dossier nom +dossiers dossier nom +dossing doss ver +dot dot nom +dotage dotage nom +dotages dotage nom +dotard dotard nom +dotards dotard nom +dote dote ver +doted dote ver +doter doter nom +doters doter nom +dotes dote ver +doting dote ver +dots dot nom +dotted dot ver +dotterel dotterel nom +dotterels dotterel nom +dottier dotty adj +dottiest dotty adj +dotting dot ver +dottle dottle nom +dottles dottle nom +dotty dotty adj +double double nom +doubled double ver +doubleheader doubleheader nom +doubleheaders doubleheader nom +doubles double nom +doublespeak doublespeak nom +doublespeaks doublespeak nom +doublet doublet nom +doublethink doublethink nom +doublethinks doublethink nom +doubleton doubleton nom +doubletons doubleton nom +doublets doublet nom +doubling double ver +doublings doubling nom +doubloon doubloon nom +doubloons doubloon nom +doubt doubt nom +doubted doubt ver +doubter doubter nom +doubters doubter nom +doubtful doubtful adj +doubtfuller doubtful adj +doubtfullest doubtful adj +doubtfulness doubtfulness nom +doubtfulnesses doubtfulness nom +doubting doubt ver +doubts doubt nom +douche douche nom +douched douche ver +douches douche nom +douching douche ver +dough dough nom +doughier doughy adj +doughiest doughy adj +doughnut doughnut nom +doughnuts doughnut nom +doughs dough nom +doughtier doughty adj +doughtiest doughty adj +doughty doughty adj +doughy doughy adj +dour dour adj +doura doura nom +dourah dourah nom +dourahs dourah nom +douras doura nom +dourer dour adj +dourest dour adj +dourness dourness nom +dournesses dourness nom +douroucouli douroucouli nom +douroucoulis douroucouli nom +douse douse nom +doused douse ver +douses douse nom +dousing douse ver +dove dove nom +dovecote dovecote nom +dovecotes dovecote nom +dovekie dovekie nom +dovekies dovekie nom +doves dove nom +dovetail dovetail nom +dovetailed dovetail ver +dovetailing dovetail ver +dovetails dovetail nom +dovishness dovishness nom +dovishnesses dovishness nom +dowager dowager nom +dowagers dowager nom +dowdier dowdy adj +dowdies dowdy nom +dowdiest dowdy adj +dowdiness dowdiness nom +dowdinesses dowdiness nom +dowdy dowdy adj +dowel dowel nom +doweled dowel ver +doweling dowel ver +dowels dowel nom +dower dower nom +dowered dower ver +doweries dowery nom +dowering dower ver +dowers dower nom +dowery dowery nom +dowitcher dowitcher nom +dowitchers dowitcher nom +down down sw +downbeat downbeat nom +downbeats downbeat nom +downcast downcast nom +downcasts downcast nom +downdraft downdraft nom +downdrafts downdraft nom +downed down ver +downer downer nom +downers downer nom +downfall downfall nom +downfalls downfall nom +downgrade downgrade nom +downgraded downgrade ver +downgrades downgrade nom +downgrading downgrade ver +downheartedness downheartedness nom +downheartednesses downheartedness nom +downhill downhill nom +downhills downhill nom +downier downy adj +downiest downy adj +downiness downiness nom +downinesses downiness nom +downing down ver +download download ver +downloaded download ver +downloading download ver +downloads download ver +downplay downplay ver +downplayed downplay ver +downplaying downplay ver +downplays downplay ver +downpour downpour nom +downpours downpour nom +downrightness downrightness nom +downrightnesses downrightness nom +downs down nom +downside downside nom +downsides downside nom +downsize downsize ver +downsized downsize ver +downsizes downsize ver +downsizing downsize ver +downsizings downsizing nom +downspin downspin nom +downspins downspin nom +downspout downspout nom +downspouts downspout nom +downstage downstage nom +downstages downstage nom +downstate downstate nom +downstates downstate nom +downstroke downstroke nom +downstrokes downstroke nom +downswing downswing nom +downswings downswing nom +downtick downtick nom +downticks downtick nom +downtime downtime nom +downtimes downtime nom +downtown downtown nom +downtowns downtown nom +downturn downturn nom +downturns downturn nom +downwards downwards sw +downy downy adj +dowries dowry nom +dowry dowry nom +dowse dowse nom +dowsed dowse ver +dowser dowser nom +dowsers dowser nom +dowses dowse nom +dowsing dowse ver +doxies doxy nom +doxologies doxology nom +doxology doxology nom +doxorubicin doxorubicin nom +doxorubicins doxorubicin nom +doxy doxy nom +doxycycline doxycycline nom +doxycyclines doxycycline nom +doyen doyen nom +doyenne doyenne nom +doyennes doyenne nom +doyens doyen nom +doyley doyley nom +doyleys doyley nom +doylies doyly nom +doyly doyly nom +doze doze nom +dozed doze ver +dozen dozen nom +dozened dozen ver +dozening dozen ver +dozens dozen nom +dozer dozer nom +dozers dozer nom +dozes doze nom +dozier dozy adj +doziest dozy adj +dozing doze ver +dozy dozy adj +drab drab adj +drabbed drab ver +drabber drab adj +drabbest drab adj +drabbing drab ver +drabness drabness nom +drabnesses drabness nom +drabs drab nom +dracaena dracaena nom +dracaenas dracaena nom +drachm drachm nom +drachma drachma nom +drachmas drachma nom +drachms drachm nom +draft draft nom +drafted draft ver +draftee draftee nom +draftees draftee nom +drafter drafter nom +drafters drafter nom +draftier drafty adj +draftiest drafty adj +draftiness draftiness nom +draftinesses draftiness nom +drafting draft ver +draftings drafting nom +drafts draft nom +draftsman draftsman nom +draftsmanship draftsmanship nom +draftsmanships draftsmanship nom +draftsmen draftsman nom +draftsperson draftsperson nom +draftspersons draftsperson nom +draftswoman draftswoman nom +draftswomen draftswoman nom +drafty drafty adj +drag drag nom +dragee dragee nom +dragees dragee nom +dragged drag ver +draggier draggy adj +draggiest draggy adj +dragging drag ver +draggy draggy adj +dragnet dragnet nom +dragnets dragnet nom +dragoman dragoman nom +dragomans dragoman nom +dragon dragon nom +dragonet dragonet nom +dragonets dragonet nom +dragonflies dragonfly nom +dragonfly dragonfly nom +dragonhead dragonhead nom +dragonheads dragonhead nom +dragons dragon nom +dragoon dragoon nom +dragooned dragoon ver +dragooning dragoon ver +dragoons dragoon nom +drags drag nom +drain drain nom +drainage drainage nom +drainages drainage nom +drainboard drainboard nom +drainboards drainboard nom +drained drain ver +drainer drainer nom +drainers drainer nom +draining drain ver +drainpipe drainpipe nom +drainpipes drainpipe nom +drains drain nom +drake drake nom +drakes drake nom +dram dram nom +drama drama nom +dramas drama nom +dramatisation dramatisation nom +dramatisations dramatisation nom +dramatise dramatise ver +dramatised dramatise ver +dramatises dramatise ver +dramatising dramatise ver +dramatist dramatist nom +dramatists dramatist nom +dramatization dramatization nom +dramatizations dramatization nom +dramatize dramatize ver +dramatized dramatize ver +dramatizes dramatize ver +dramatizing dramatize ver +dramaturgies dramaturgy nom +dramaturgy dramaturgy nom +drammed dram ver +dramming dram ver +drams dram nom +drank drink ver +drape drape nom +draped drape ver +draper draper nom +draperies drapery nom +drapers draper nom +drapery drapery nom +drapes drape nom +draping drape ver +drat drat ver +drats drat ver +dratted drat ver +dratting drat ver +draught draught nom +draughted draught ver +draughtier draughty adj +draughtiest draughty adj +draughting draught ver +draughts draught nom +draughtsman draughtsman nom +draughtsmen draughtsman nom +draughty draughty adj +draw draw nom +drawback drawback nom +drawbacks drawback nom +drawbridge drawbridge nom +drawbridges drawbridge nom +drawee drawee nom +drawees drawee nom +drawer drawer nom +drawers drawer nom +drawing draw ver +drawings drawing nom +drawknife drawknife nom +drawknives drawknife nom +drawl drawl nom +drawled drawl ver +drawler drawler nom +drawlers drawler nom +drawling drawl ver +drawls drawl nom +drawn draw ver +drawnwork drawnwork nom +drawnworks drawnwork nom +draws draw nom +drawshave drawshave nom +drawshaves drawshave nom +drawstring drawstring nom +drawstrings drawstring nom +dray dray nom +drayed dray ver +draying dray ver +drays dray nom +dread dread nom +dreaded dread ver +dreadful dreadful nom +dreadfulness dreadfulness nom +dreadfulnesses dreadfulness nom +dreadfuls dreadful nom +dreading dread ver +dreadnaught dreadnaught nom +dreadnaughts dreadnaught nom +dreadnought dreadnought nom +dreadnoughts dreadnought nom +dreads dread nom +dream dream nom +dreamboat dreamboat nom +dreamboats dreamboat nom +dreamed dream ver +dreamer dreamer nom +dreamers dreamer nom +dreamier dreamy adj +dreamiest dreamy adj +dreaminess dreaminess nom +dreaminesses dreaminess nom +dreaming dream ver +dreamings dreaming nom +dreamland dreamland nom +dreamlands dreamland nom +dreams dream nom +dreamworld dreamworld nom +dreamworlds dreamworld nom +dreamy dreamy adj +drear drear adj +drearer drear adj +drearest drear adj +drearier dreary adj +dreariest dreary adj +dreariness dreariness nom +drearinesses dreariness nom +dreary dreary adj +dredge dredge nom +dredged dredge ver +dredger dredger nom +dredgers dredger nom +dredges dredge nom +dredging dredge ver +dreg dreg nom +dregs dreg nom +drench drench nom +drenched drench ver +drenches drench nom +drenching drench ver +dress dress nom +dressage dressage nom +dressages dressage nom +dressed dress ver +dresser dresser nom +dressers dresser nom +dresses dress nom +dressier dressy adj +dressiest dressy adj +dressiness dressiness nom +dressinesses dressiness nom +dressing dress ver +dressings dressing nom +dressmaker dressmaker nom +dressmakers dressmaker nom +dressmaking dressmaking nom +dressmakings dressmaking nom +dressy dressy adj +drew draw ver +dribble dribble nom +dribbled dribble ver +dribbler dribbler nom +dribblers dribbler nom +dribbles dribble nom +dribbling dribble ver +driblet driblet nom +driblets driblet nom +dried dry ver +drier dry adj +driers drier nom +dries dry ver +driest dry adj +drift drift nom +driftage driftage nom +driftages driftage nom +drifted drift ver +drifter drifter nom +drifters drifter nom +driftfish driftfish nom +drifting drift ver +drifts drift nom +driftwood driftwood nom +driftwoods driftwood nom +drill drill nom +drilled drill ver +driller driller nom +drillers driller nom +drilling drill ver +drillings drilling nom +drillmaster drillmaster nom +drillmasters drillmaster nom +drills drill nom +drink drink nom +drinkable drinkable nom +drinkables drinkable nom +drinker drinker nom +drinkers drinker nom +drinking drink ver +drinkings drinking nom +drinks drink nom +drip drip nom +dripped drip ver +drippier drippy adj +drippiest drippy adj +dripping drip ver +drippings dripping nom +drippy drippy adj +drips drip nom +drive drive nom +drivel drivel nom +driveled drivel ver +driveler driveler nom +drivelers driveler nom +driveling drivel ver +driveller driveller nom +drivellers driveller nom +drivels drivel nom +driven drive ver +driver driver nom +drivers driver nom +drives drive nom +driveshaft driveshaft nom +driveshafts driveshaft nom +driveway driveway nom +driveways driveway nom +driving drive ver +drivings driving nom +drizzle drizzle nom +drizzled drizzle ver +drizzles drizzle nom +drizzlier drizzly adj +drizzliest drizzly adj +drizzling drizzle ver +drizzly drizzly adj +drogue drogue nom +drogues drogue nom +droll droll adj +drolled droll ver +droller droll adj +drolleries drollery nom +drollery drollery nom +drollest droll adj +drolling droll ver +drollness drollness nom +drollnesses drollness nom +drolls droll ver +dromedaries dromedary nom +dromedary dromedary nom +drone drone nom +droned drone ver +drones drone nom +droning drone ver +drool drool nom +drooled drool ver +drooling drool ver +drools drool nom +droop droop nom +drooped droop ver +droopier droopy adj +droopiest droopy adj +droopiness droopiness nom +droopinesses droopiness nom +drooping droop ver +droops droop nom +droopy droopy adj +drop drop nom +dropforge dropforge ver +dropforged dropforge ver +dropforges dropforge ver +dropforging dropforge ver +dropkick dropkick nom +dropkicker dropkicker nom +dropkickers dropkicker nom +dropkicks dropkick nom +droplet droplet nom +droplets droplet nom +dropout dropout nom +dropouts dropout nom +dropped drop ver +dropper dropper nom +droppers dropper nom +dropping drop ver +drops drop nom +dropsies dropsy nom +dropsy dropsy nom +droshkies droshky nom +droshky droshky nom +droskies drosky nom +drosky drosky nom +drosophila drosophila nom +drosophilas drosophila nom +dross dross nom +drosses dross nom +drought drought nom +droughts drought nom +drouth drouth nom +drouths drouth nom +drove drive ver +droved drove ver +drover drover nom +drovers drover nom +droves drove nom +droving drove ver +drown drown ver +drowned drown ver +drowning drown ver +drownings drowning nom +drowns drown ver +drowse drowse nom +drowsed drowse ver +drowses drowse nom +drowsier drowsy adj +drowsiest drowsy adj +drowsiness drowsiness nom +drowsinesses drowsiness nom +drowsing drowse ver +drowsy drowsy adj +drub drub nom +drubbed drub ver +drubber drubber nom +drubbers drubber nom +drubbing drub ver +drubbings drubbing nom +drubs drub nom +drudge drudge nom +drudged drudge ver +drudgeries drudgery nom +drudgery drudgery nom +drudges drudge nom +drudging drudge ver +drug drug nom +drugged drug ver +drugget drugget nom +druggets drugget nom +druggie druggie adj +druggier druggie adj +druggies druggie nom +druggiest druggie adj +drugging drug ver +druggist druggist nom +druggists druggist nom +druggy druggy adj +drugs drug nom +drugstore drugstore nom +drugstores drugstore nom +druid druid nom +druidism druidism nom +druidisms druidism nom +druids druid nom +drum drum nom +drumbeat drumbeat nom +drumbeats drumbeat nom +drumfire drumfire nom +drumfires drumfire nom +drumfish drumfish nom +drumhead drumhead nom +drumheads drumhead nom +drumlin drumlin nom +drumlins drumlin nom +drummed drum ver +drummer drummer nom +drummers drummer nom +drumming drum ver +drums drum nom +drumstick drumstick nom +drumsticks drumstick nom +drunk drink ver +drunkard drunkard nom +drunkards drunkard nom +drunkenness drunkenness nom +drunkennesses drunkenness nom +drunker drunk adj +drunkest drunk adj +drunks drunk nom +drupe drupe nom +drupelet drupelet nom +drupelets drupelet nom +drupes drupe nom +dry dry adj +dryad dryad nom +dryads dryad nom +dryer dryer nom +dryers dryer nom +drying dry ver +dryness dryness nom +drynesses dryness nom +dryopithecine dryopithecine nom +dryopithecines dryopithecine nom +drys dry nom +drywall drywall nom +drywalls drywall nom +duad duad nom +duads duad nom +dual dual nom +dualism dualism nom +dualisms dualism nom +dualist dualist nom +dualists dualist nom +dualities duality nom +duality duality nom +duals dual nom +dub dub nom +dubbed dub ver +dubber dubber nom +dubbers dubber nom +dubbin dubbin nom +dubbing dub ver +dubbings dubbing nom +dubbins dubbin nom +dubieties dubiety nom +dubiety dubiety nom +dubiousness dubiousness nom +dubiousnesses dubiousness nom +dubs dub nom +ducat ducat nom +ducats ducat nom +duchess duchess nom +duchesses duchess nom +duchies duchy nom +duchy duchy nom +duck duck nom +duckbill duckbill nom +duckbills duckbill nom +ducked duck ver +duckier ducky adj +duckies ducky nom +duckiest ducky adj +ducking duck ver +duckings ducking nom +duckling duckling nom +duckpin duckpin nom +duckpins duckpin nom +ducks duck nom +duckweed duckweed nom +duckweeds duckweed nom +ducky ducky adj +duct duct nom +ducted duct ver +ductilities ductility nom +ductility ductility nom +ducting duct ver +ducts duct nom +ductule ductule nom +ductules ductule nom +dud dud nom +dude dude nom +duded dude ver +dudeen dudeen nom +dudeens dudeen nom +dudes dude nom +dudgeon dudgeon nom +dudgeons dudgeon nom +duding dude ver +duds dud nom +due due nom +duel duel nom +dueled duel ver +dueler dueler nom +duelers dueler nom +dueling duel ver +duelist duelist nom +duelists duelist nom +dueller dueller nom +duellers dueller nom +duellist duellist nom +duellists duellist nom +duels duel nom +duenna duenna nom +duennas duenna nom +dues due nom +duet duet nom +duets duet nom +duetted duet ver +duetting duet ver +duff duff nom +duffed duff ver +duffel duffel nom +duffels duffel nom +duffer duffer nom +duffers duffer nom +duffing duff ver +duffle duffle nom +duffles duffle nom +duffs duff nom +dug dig ver +dugong dugong nom +dugongs dugong nom +dugout dugout nom +dugouts dugout nom +dugs dug nom +duke duke nom +dukedom dukedom nom +dukedoms dukedom nom +dukes duke nom +dulcet dulcet nom +dulcets dulcet nom +dulciana dulciana nom +dulcianas dulciana nom +dulcified dulcify ver +dulcifies dulcify ver +dulcify dulcify ver +dulcifying dulcify ver +dulcimer dulcimer nom +dulcimers dulcimer nom +dull dull adj +dullard dullard nom +dullards dullard nom +dulled dull ver +duller dull adj +dullest dull adj +dulling dull ver +dullness dullness nom +dullnesses dullness nom +dulls dull ver +dulness dulness nom +dulnesses dulness nom +dulse dulse nom +dulses dulse nom +dumb dumb adj +dumbbell dumbbell nom +dumbbells dumbbell nom +dumber dumb adj +dumbest dumb adj +dumbfound dumbfound ver +dumbfounded dumbfound ver +dumbfounding dumbfound ver +dumbfounds dumbfound ver +dumbness dumbness nom +dumbnesses dumbness nom +dumbwaiter dumbwaiter nom +dumbwaiters dumbwaiter nom +dumdum dumdum nom +dumdums dumdum nom +dumfound dumfound ver +dumfounded dumfound ver +dumfounding dumfound ver +dumfounds dumfound ver +dummied dummy ver +dummier dummy adj +dummies dummy nom +dummiest dummy adj +dummy dummy adj +dummying dummy ver +dump dump nom +dumpcart dumpcart nom +dumpcarts dumpcart nom +dumped dump ver +dumper dumper nom +dumpers dumper nom +dumpier dumpy adj +dumpiest dumpy adj +dumpiness dumpiness nom +dumpinesses dumpiness nom +dumping dump ver +dumpings dumping nom +dumpling dumpling nom +dumps dump nom +dumpster dumpster nom +dumpsters dumpster nom +dumpy dumpy adj +dun dun adj +dunce dunce nom +dunces dunce nom +dunderhead dunderhead nom +dunderheads dunderhead nom +dune dune nom +dunes dune nom +dung dung nom +dungaree dungaree nom +dungarees dungaree nom +dunged dung ver +dungeon dungeon nom +dungeons dungeon nom +dunghill dunghill nom +dunghills dunghill nom +dunging dung ver +dungs dung nom +dunk dunk nom +dunked dunk ver +dunking dunk ver +dunks dunk nom +dunlin dunlin nom +dunlins dunlin nom +dunned dun ver +dunner dun adj +dunnest dun adj +dunning dun ver +dunnock dunnock nom +dunnocks dunnock nom +duns dun nom +duo duo nom +duodecimal duodecimal nom +duodecimals duodecimal nom +duodena duodenum nom +duodenum duodenum nom +duologue duologue nom +duologues duologue nom +duos duo nom +dupe dupe nom +duped dupe ver +duper duper nom +duperies dupery nom +dupers duper nom +dupery dupery nom +dupes dupe nom +duping dupe ver +duplex duplex nom +duplexed duplex ver +duplexes duplex nom +duplexing duplex ver +duplicabilities duplicability nom +duplicability duplicability nom +duplicate duplicate nom +duplicated duplicate ver +duplicates duplicate nom +duplicating duplicate ver +duplication duplication nom +duplications duplication nom +duplicator duplicator nom +duplicators duplicator nom +duplicities duplicity nom +duplicity duplicity nom +dura dura nom +durabilities durability nom +durability durability nom +durable durable nom +durables durable nom +duramen duramen nom +duramens duramen nom +durance durance nom +durances durance nom +duras dura nom +duration duration nom +durations duration nom +durative durative nom +duratives durative nom +durbar durbar nom +durbars durbar nom +duress duress nom +duresses duress nom +durian durian nom +durians durian nom +during during sw +durion durion nom +durions durion nom +durmast durmast nom +durmasts durmast nom +durra durra nom +durras durra nom +durum durum nom +durums durum nom +dusk dusk adj +dusked dusk ver +dusker dusk adj +duskest dusk adj +duskier dusky adj +duskiest dusky adj +duskiness duskiness nom +duskinesses duskiness nom +dusking dusk ver +dusks dusk nom +dusky dusky adj +dust dust nom +dustbin dustbin nom +dustbins dustbin nom +dustcart dustcart nom +dustcarts dustcart nom +dusted dust ver +duster duster nom +dusters duster nom +dustier dusty adj +dustiest dusty adj +dustiness dustiness nom +dustinesses dustiness nom +dusting dust ver +dustman dustman nom +dustmen dustman nom +dustpan dustpan nom +dustpans dustpan nom +dustrag dustrag nom +dustrags dustrag nom +dusts dust nom +dustup dustup nom +dustups dustup nom +dusty dusty adj +duties duty nom +dutifulness dutifulness nom +dutifulnesses dutifulness nom +duty duty nom +duvet duvet nom +duvets duvet nom +dwarf dwarf adj +dwarfed dwarf ver +dwarfer dwarf adj +dwarfest dwarf adj +dwarfing dwarf ver +dwarfishness dwarfishness nom +dwarfishnesses dwarfishness nom +dwarfism dwarfism nom +dwarfisms dwarfism nom +dwarfs dwarf nom +dweeb dweeb nom +dweebs dweeb nom +dwell dwell nom +dweller dweller nom +dwellers dweller nom +dwelling dwell ver +dwellings dwelling nom +dwells dwell nom +dwelt dwell ver +dwindle dwindle ver +dwindled dwindle ver +dwindles dwindle ver +dwindling dwindle ver +dyad dyad nom +dyads dyad nom +dyarchies dyarchy nom +dyarchy dyarchy nom +dybbuk dybbuk nom +dybbukim dybbuk nom +dye dye nom +dyed dye ver +dyeing dye ver +dyeings dyeing nom +dyer dyer nom +dyers dyer nom +dyes dye nom +dyestuff dyestuff nom +dyestuffs dyestuff nom +dyeweed dyeweed nom +dyeweeds dyeweed nom +dyewood dyewood nom +dyewoods dyewood nom +dying die ver +dyings dying nom +dyke dyke nom +dyked dyke ver +dykes dyke nom +dyking dyke ver +dynamic dynamic nom +dynamics dynamic nom +dynamism dynamism nom +dynamisms dynamism nom +dynamite dynamite nom +dynamited dynamite ver +dynamiter dynamiter nom +dynamiters dynamiter nom +dynamites dynamite nom +dynamiting dynamite ver +dynamize dynamize ver +dynamized dynamize ver +dynamizes dynamize ver +dynamizing dynamize ver +dynamo dynamo nom +dynamometer dynamometer nom +dynamometers dynamometer nom +dynamos dynamo nom +dynast dynast nom +dynasties dynasty nom +dynasts dynast nom +dynasty dynasty nom +dyne dyne nom +dynes dyne nom +dysenteries dysentery nom +dysentery dysentery nom +dysfunction dysfunction nom +dysfunctions dysfunction nom +dysgeneses dysgenesis nom +dysgenesis dysgenesis nom +dyskinesia dyskinesia nom +dyskinesias dyskinesia nom +dyslectic dyslectic nom +dyslectics dyslectic nom +dyslexia dyslexia nom +dyslexias dyslexia nom +dyslexic dyslexic nom +dyslexics dyslexic nom +dysmenorrhea dysmenorrhea nom +dysmenorrheas dysmenorrhea nom +dyspepsia dyspepsia nom +dyspepsias dyspepsia nom +dyspeptic dyspeptic nom +dyspeptics dyspeptic nom +dysphoria dysphoria nom +dysphorias dysphoria nom +dysplasia dysplasia nom +dysplasias dysplasia nom +dyspnea dyspnea nom +dyspneas dyspnea nom +dysprosium dysprosium nom +dysprosiums dysprosium nom +dystopia dystopia nom +dystopias dystopia nom +dziggetai dziggetai nom +dziggetais dziggetai nom +e e sw +each each sw +eager eager adj +eagerer eager adj +eagerest eager adj +eagerness eagerness nom +eagernesses eagerness nom +eagers eager nom +eagle eagle nom +eagled eagle ver +eagles eagle nom +eaglet eaglet nom +eaglets eaglet nom +eagling eagle ver +eagre eagre nom +eagres eagre nom +ear ear nom +earache earache nom +earaches earache nom +eardrop eardrop nom +eardrops eardrop nom +eardrum eardrum nom +eardrums eardrum nom +eared ear ver +earflap earflap nom +earflaps earflap nom +earful earful nom +earfuls earful nom +earing ear ver +earl earl nom +earlap earlap nom +earlaps earlap nom +earldom earldom nom +earldoms earldom nom +earlier early adj +earlies early nom +earliest early adj +earliness earliness nom +earlinesses earliness nom +earlobe earlobe nom +earlobes earlobe nom +earls earl nom +early early adj +earmark earmark nom +earmarked earmark ver +earmarking earmark ver +earmarks earmark nom +earmuff earmuff nom +earmuffs earmuff nom +earn earn ver +earned earn ver +earner earner nom +earners earner nom +earnest earnest nom +earnestness earnestness nom +earnestnesses earnestness nom +earnests earnest nom +earning earn ver +earns earn ver +earphone earphone nom +earphones earphone nom +earpiece earpiece nom +earpieces earpiece nom +earplug earplug nom +earplugs earplug nom +earring earring nom +earrings earring nom +ears ear nom +earshot earshot nom +earshots earshot nom +earth earth nom +earthed earth ver +earthenware earthenware nom +earthenwares earthenware nom +earthier earthy adj +earthiest earthy adj +earthiness earthiness nom +earthinesses earthiness nom +earthing earth ver +earthlier earthly adj +earthliest earthly adj +earthling earthling nom +earthly earthly adj +earthman earthman nom +earthmen earthman nom +earthnut earthnut nom +earthnuts earthnut nom +earthquake earthquake nom +earthquakes earthquake nom +earths earth nom +earthstar earthstar nom +earthstars earthstar nom +earthwork earthwork nom +earthworks earthwork nom +earthworm earthworm nom +earthworms earthworm nom +earthy earthy adj +earwax earwax nom +earwaxes earwax nom +earwig earwig nom +earwigged earwig ver +earwigging earwig ver +earwigs earwig nom +ease ease nom +eased ease ver +easel easel nom +easels easel nom +easement easement nom +easements easement nom +eases ease nom +easier easy adj +easiest easy adj +easiness easiness nom +easinesses easiness nom +easing ease ver +east east nom +easter easter nom +easterlies easterly nom +easterly easterly nom +easterner easterner nom +easterners easterner nom +easters easter nom +easts east nom +eastward eastward nom +eastwards eastward nom +easy easy adj +easygoingness easygoingness nom +easygoingnesses easygoingness nom +eat eat ver +eatable eatable nom +eatables eatable nom +eaten eat ver +eater eater nom +eateries eatery nom +eaters eater nom +eatery eatery nom +eating eat ver +eatings eating nom +eats eat ver +eave eave nom +eaves eave nom +eavesdrop eavesdrop ver +eavesdropped eavesdrop ver +eavesdropper eavesdropper nom +eavesdroppers eavesdropper nom +eavesdropping eavesdrop ver +eavesdrops eavesdrop ver +ebb ebb nom +ebbed ebb ver +ebbing ebb ver +ebbs ebb nom +ebbtide ebbtide nom +ebbtides ebbtide nom +ebonies ebony nom +ebonite ebonite nom +ebonites ebonite nom +ebonize ebonize ver +ebonized ebonize ver +ebonizes ebonize ver +ebonizing ebonize ver +ebony ebony nom +ebullience ebullience nom +ebulliences ebullience nom +ebullition ebullition nom +ebullitions ebullition nom +ecarte ecarte nom +ecartes ecarte nom +eccentric eccentric nom +eccentricities eccentricity nom +eccentricity eccentricity nom +eccentrics eccentric nom +ecclesiastic ecclesiastic nom +ecclesiasticism ecclesiasticism nom +ecclesiasticisms ecclesiasticism nom +ecclesiastics ecclesiastic nom +ecdyses ecdysis nom +ecdysiast ecdysiast nom +ecdysiasts ecdysiast nom +ecdysis ecdysis nom +eceses ecesis nom +ecesis ecesis nom +echelon echelon nom +echeloned echelon ver +echeloning echelon ver +echelons echelon nom +echidna echidna nom +echidnas echidna nom +echinococci echinococcus nom +echinococcoses echinococcosis nom +echinococcosis echinococcosis nom +echinococcus echinococcus nom +echinoderm echinoderm nom +echinoderms echinoderm nom +echo echo nom +echoed echo ver +echoes echo nom +echoing echo ver +echolocation echolocation nom +echolocations echolocation nom +echovirus echovirus nom +echoviruses echovirus nom +eclair eclair nom +eclairs eclair nom +eclampsia eclampsia nom +eclampsias eclampsia nom +eclat eclat nom +eclats eclat nom +eclectic eclectic nom +eclecticism eclecticism nom +eclecticisms eclecticism nom +eclectics eclectic nom +eclipse eclipse nom +eclipsed eclipse ver +eclipses eclipse nom +eclipsing eclipse ver +eclipsis eclipsis nom +eclipsises eclipsis nom +ecliptic ecliptic nom +ecliptics ecliptic nom +eclogue eclogue nom +eclogues eclogue nom +ecocide ecocide nom +ecocides ecocide nom +ecologies ecology nom +ecologist ecologist nom +ecologists ecologist nom +ecology ecology nom +econometrician econometrician nom +econometricians econometrician nom +economies economy nom +economise economise ver +economised economise ver +economiser economiser nom +economisers economiser nom +economises economise ver +economising economise ver +economist economist nom +economists economist nom +economize economize ver +economized economize ver +economizer economizer nom +economizers economizer nom +economizes economize ver +economizing economize ver +economy economy nom +ecosystem ecosystem nom +ecosystems ecosystem nom +ecphoneses ecphonesis nom +ecphonesis ecphonesis nom +ecru ecru nom +ecrus ecru nom +ecstasies ecstasy nom +ecstasy ecstasy nom +ecstatic ecstatic nom +ecstatics ecstatic nom +ectoblast ectoblast nom +ectoblasts ectoblast nom +ectoderm ectoderm nom +ectoderms ectoderm nom +ectomorph ectomorph nom +ectomorphies ectomorphy nom +ectomorphs ectomorph nom +ectomorphy ectomorphy nom +ectoparasite ectoparasite nom +ectoparasites ectoparasite nom +ectoplasm ectoplasm nom +ectoplasms ectoplasm nom +ectoproct ectoproct nom +ectoprocts ectoproct nom +ectozoa ectozoon nom +ectozoon ectozoon nom +ecumenicalism ecumenicalism nom +ecumenicalisms ecumenicalism nom +ecumenicism ecumenicism nom +ecumenicisms ecumenicism nom +ecumenism ecumenism nom +ecumenisms ecumenism nom +eczema eczema nom +eczemas eczema nom +edacities edacity nom +edacity edacity nom +eddied eddy ver +eddies eddy nom +eddo eddo nom +eddoes eddo nom +eddy eddy nom +eddying eddy ver +edelweiss edelweiss nom +edelweisses edelweiss nom +edema edema nom +edemas edema nom +edentate edentate nom +edentates edentate nom +edge edge nom +edged edge ver +edger edger nom +edgers edger nom +edges edge nom +edgier edgy adj +edgiest edgy adj +edginess edginess nom +edginesses edginess nom +edging edge ver +edgings edging nom +edgy edgy adj +edibilities edibility nom +edibility edibility nom +edible edible nom +edibleness edibleness nom +ediblenesses edibleness nom +edibles edible nom +edict edict nom +edicts edict nom +edification edification nom +edifications edification nom +edifice edifice nom +edifices edifice nom +edified edify ver +edifier edifier nom +edifiers edifier nom +edifies edify ver +edify edify ver +edifying edify ver +edit edit nom +edited edit ver +editing edit ver +edition edition nom +editions edition nom +editor editor nom +editorial editorial nom +editorialist editorialist nom +editorialists editorialist nom +editorialize editorialize ver +editorialized editorialize ver +editorializes editorialize ver +editorializing editorialize ver +editorials editorial nom +editors editor nom +editorship editorship nom +editorships editorship nom +edits edit nom +edu edu sw +educabilities educability nom +educability educability nom +educate educate ver +educated educate ver +educates educate ver +educating educate ver +education education nom +educationalist educationalist nom +educationalists educationalist nom +educationist educationist nom +educationists educationist nom +educations education nom +educator educator nom +educators educator nom +educe educe ver +educed educe ver +educes educe ver +educing educe ver +edulcorate edulcorate ver +edulcorated edulcorate ver +edulcorates edulcorate ver +edulcorating edulcorate ver +edutainment edutainment nom +edutainments edutainment nom +eel eel nom +eelgrass eelgrass nom +eelgrasses eelgrass nom +eelpout eelpout nom +eelpouts eelpout nom +eels eel nom +eelworm eelworm nom +eelworms eelworm nom +eerie eerie adj +eerier eerie adj +eeriest eerie adj +eeriness eeriness nom +eerinesses eeriness nom +eery eery adj +eff eff ver +efface efface ver +effaced efface ver +effacement effacement nom +effacements effacement nom +effaces efface ver +effacing efface ver +effect effect nom +effected effect ver +effecting effect ver +effective effective nom +effectiveness effectiveness nom +effectivenesses effectiveness nom +effectives effective nom +effectivities effectivity nom +effectivity effectivity nom +effector effector nom +effectors effector nom +effects effect nom +effectualities effectuality nom +effectuality effectuality nom +effectualness effectualness nom +effectualnesses effectualness nom +effectuate effectuate ver +effectuated effectuate ver +effectuates effectuate ver +effectuating effectuate ver +effectuation effectuation nom +effectuations effectuation nom +effed eff ver +effeminacies effeminacy nom +effeminacy effeminacy nom +effeminate effeminate ver +effeminated effeminate ver +effeminateness effeminateness nom +effeminatenesses effeminateness nom +effeminates effeminate ver +effeminating effeminate ver +effeminize effeminize ver +effeminized effeminize ver +effeminizes effeminize ver +effeminizing effeminize ver +effendi effendi nom +effendis effendi nom +efferent efferent nom +efferents efferent nom +effervesce effervesce ver +effervesced effervesce ver +effervescence effervescence nom +effervescences effervescence nom +effervesces effervesce ver +effervescing effervesce ver +effeteness effeteness nom +effetenesses effeteness nom +efficacies efficacy nom +efficaciousness efficaciousness nom +efficaciousnesses efficaciousness nom +efficacy efficacy nom +efficiencies efficiency nom +efficiency efficiency nom +effigies effigy nom +effigy effigy nom +effing eff ver +effleurage effleurage nom +effleurages effleurage nom +effloresce effloresce ver +effloresced effloresce ver +efflorescence efflorescence nom +efflorescences efflorescence nom +effloresces effloresce ver +efflorescing effloresce ver +effluence effluence nom +effluences effluence nom +effluent effluent nom +effluents effluent nom +effluvia effluvium nom +effluvium effluvium nom +efflux efflux nom +effluxes efflux nom +effort effort nom +effortfulness effortfulness nom +effortfulnesses effortfulness nom +effortlessness effortlessness nom +effortlessnesses effortlessness nom +efforts effort nom +effronteries effrontery nom +effrontery effrontery nom +effs eff ver +effulgence effulgence nom +effulgences effulgence nom +effuse effuse ver +effused effuse ver +effuses effuse ver +effusing effuse ver +effusion effusion nom +effusions effusion nom +effusiveness effusiveness nom +effusivenesses effusiveness nom +eft eft nom +efts eft nom +eg eg sw +egalitarian egalitarian nom +egalitarianism egalitarianism nom +egalitarianisms egalitarianism nom +egalitarians egalitarian nom +egest egest ver +egested egest ver +egesting egest ver +egests egest ver +egg egg nom +eggar eggar nom +eggars eggar nom +eggbeater eggbeater nom +eggbeaters eggbeater nom +eggcup eggcup nom +eggcups eggcup nom +egged egg ver +egger egger nom +eggers egger nom +eggfruit eggfruit nom +eggfruits eggfruit nom +egghead egghead nom +eggheads egghead nom +egging egg ver +eggnog eggnog nom +eggnogs eggnog nom +eggplant eggplant nom +eggplants eggplant nom +eggs egg nom +eggshake eggshake nom +eggshell eggshell nom +eggshells eggshell nom +egis egis nom +egises egis nom +eglantine eglantine nom +eglantines eglantine nom +ego ego nom +egocentric egocentric nom +egocentricities egocentricity nom +egocentricity egocentricity nom +egocentrics egocentric nom +egocentrism egocentrism nom +egocentrisms egocentrism nom +egoism egoism nom +egoisms egoism nom +egoist egoist nom +egoists egoist nom +egomania egomania nom +egomaniac egomaniac nom +egomaniacs egomaniac nom +egomanias egomania nom +egos ego nom +egotism egotism nom +egotisms egotism nom +egotist egotist nom +egotists egotist nom +egregiousness egregiousness nom +egregiousnesses egregiousness nom +egress egress nom +egressed egress ver +egresses egress nom +egressing egress ver +egression egression nom +egressions egression nom +egret egret nom +egrets egret nom +eider eider nom +eiderdown eiderdown nom +eiderdowns eiderdown nom +eiders eider nom +eight eight sw +eighteen eighteen nom +eighteens eighteen nom +eighteenth eighteenth nom +eighteenths eighteenth nom +eighth eighth nom +eighths eighth nom +eighties eighty nom +eightieth eightieth nom +eightieths eightieth nom +eightpence eightpence nom +eightpences eightpence nom +eights eights nom +eightsome eightsome nom +eightsomes eightsome nom +eightvo eightvo nom +eightvos eightvo nom +eighty eighty nom +einsteinium einsteinium nom +einsteiniums einsteinium nom +eisegeses eisegesis nom +eisegesis eisegesis nom +eisteddfod eisteddfod nom +eisteddfods eisteddfod nom +either either sw +ejaculate ejaculate nom +ejaculated ejaculate ver +ejaculates ejaculate nom +ejaculating ejaculate ver +ejaculation ejaculation nom +ejaculations ejaculation nom +ejaculator ejaculator nom +ejaculators ejaculator nom +eject eject ver +ejected eject ver +ejecting eject ver +ejection ejection nom +ejections ejection nom +ejector ejector nom +ejectors ejector nom +ejects eject ver +eke eke ver +eked eke ver +ekes eke ver +eking eke ver +el el nom +elaborate elaborate ver +elaborated elaborate ver +elaborateness elaborateness nom +elaboratenesses elaborateness nom +elaborates elaborate ver +elaborating elaborate ver +elaboration elaboration nom +elaborations elaboration nom +elan elan nom +eland eland nom +elans elan nom +elapid elapid nom +elapids elapid nom +elapse elapse ver +elapsed elapse ver +elapses elapse ver +elapsing elapse ver +elasmobranch elasmobranch nom +elasmobranchs elasmobranch nom +elastance elastance nom +elastances elastance nom +elastic elastic nom +elasticities elasticity nom +elasticity elasticity nom +elasticize elasticize ver +elasticized elasticize ver +elasticizes elasticize ver +elasticizing elasticize ver +elastics elastic nom +elastin elastin nom +elastins elastin nom +elastomer elastomer nom +elastomers elastomer nom +elate elate ver +elated elate ver +elater elater nom +elaterid elaterid nom +elaterids elaterid nom +elaters elater nom +elates elate ver +elating elate ver +elation elation nom +elations elation nom +elbow elbow nom +elbowed elbow ver +elbowing elbow ver +elbowroom elbowroom nom +elbowrooms elbowroom nom +elbows elbow nom +elder elder nom +elderberries elderberry nom +elderberry elderberry nom +elderlies elderly nom +elderly elderly nom +elders elder nom +eldership eldership nom +elderships eldership nom +elecampane elecampane nom +elecampanes elecampane nom +elect elect nom +elected elect ver +electing elect ver +election election nom +electioneer electioneer ver +electioneered electioneer ver +electioneering electioneer ver +electioneerings electioneering nom +electioneers electioneer ver +elections election nom +elective elective nom +electives elective nom +elector elector nom +electorate electorate nom +electorates electorate nom +electors elector nom +electric electric nom +electrician electrician nom +electricians electrician nom +electricities electricity nom +electricity electricity nom +electrics electric nom +electrification electrification nom +electrifications electrification nom +electrified electrify ver +electrifier electrifier nom +electrifiers electrifier nom +electrifies electrify ver +electrify electrify ver +electrifying electrify ver +electrocardiogram electrocardiogram nom +electrocardiograms electrocardiogram nom +electrocardiograph electrocardiograph nom +electrocardiographies electrocardiography nom +electrocardiographs electrocardiograph nom +electrocardiography electrocardiography nom +electrochemistries electrochemistry nom +electrochemistry electrochemistry nom +electrocute electrocute ver +electrocuted electrocute ver +electrocutes electrocute ver +electrocuting electrocute ver +electrocution electrocution nom +electrocutions electrocution nom +electrode electrode nom +electrodeposition electrodeposition nom +electrodepositions electrodeposition nom +electrodes electrode nom +electrodynamometer electrodynamometer nom +electrodynamometers electrodynamometer nom +electroencephalogram electroencephalogram nom +electroencephalograms electroencephalogram nom +electroencephalograph electroencephalograph nom +electroencephalographies electroencephalography nom +electroencephalographs electroencephalograph nom +electroencephalography electroencephalography nom +electrograph electrograph nom +electrographs electrograph nom +electrologist electrologist nom +electrologists electrologist nom +electrolyses electrolysis nom +electrolysis electrolysis nom +electrolyte electrolyte nom +electrolytes electrolyte nom +electromagnet electromagnet nom +electromagnetism electromagnetism nom +electromagnetisms electromagnetism nom +electromagnets electromagnet nom +electrometer electrometer nom +electrometers electrometer nom +electromyogram electromyogram nom +electromyograms electromyogram nom +electromyograph electromyograph nom +electromyographies electromyography nom +electromyographs electromyograph nom +electromyography electromyography nom +electron electron nom +electrons electron nom +electrophoreses electrophoresis nom +electrophoresis electrophoresis nom +electrophori electrophorus nom +electrophorus electrophorus nom +electroplate electroplate nom +electroplated electroplate ver +electroplates electroplate nom +electroplating electroplate ver +electroscope electroscope nom +electroscopes electroscope nom +electroshock electroshock nom +electroshocked electroshock ver +electroshocking electroshock ver +electroshocks electroshock nom +electrotype electrotype nom +electrotyped electrotype ver +electrotypes electrotype nom +electrotyping electrotype ver +electrum electrum nom +electrums electrum nom +elects elect ver +elegance elegance nom +elegances elegance nom +elegiac elegiac nom +elegiacs elegiac nom +elegies elegy nom +elegist elegist nom +elegists elegist nom +elegize elegize ver +elegized elegize ver +elegizes elegize ver +elegizing elegize ver +elegy elegy nom +element element nom +elemental elemental nom +elementals elemental nom +elements element nom +elemi elemi nom +elemis elemi nom +elephant elephant nom +elephantiases elephantiasis nom +elephantiasis elephantiasis nom +elephants elephant nom +elevate elevate ver +elevated elevate ver +elevateds elevated nom +elevates elevate ver +elevating elevate ver +elevation elevation nom +elevations elevation nom +elevator elevator nom +elevators elevator nom +eleven eleven nom +elevens eleven nom +eleventh eleventh nom +elevenths eleventh nom +elf elf nom +elfin elfin nom +elfins elfin nom +elicit elicit ver +elicitation elicitation nom +elicitations elicitation nom +elicited elicit ver +eliciting elicit ver +elicits elicit ver +elide elide ver +elided elide ver +elides elide ver +eliding elide ver +eligibilities eligibility nom +eligibility eligibility nom +eligible eligible nom +eligibles eligible nom +eliminate eliminate ver +eliminated eliminate ver +eliminates eliminate ver +eliminating eliminate ver +elimination elimination nom +eliminations elimination nom +elision elision nom +elisions elision nom +elite elite nom +elites elite nom +elitism elitism nom +elitisms elitism nom +elitist elitist nom +elitists elitist nom +elixir elixir nom +elixirs elixir nom +elk elk nom +elkhound elkhound nom +elkhounds elkhound nom +elks elk nom +ell ell nom +ellipse ellipse nom +ellipses ellipse nom +ellipsis ellipsis nom +ellipsoid ellipsoid nom +ellipsoids ellipsoid nom +elliptical elliptical nom +ellipticals elliptical nom +ellipticities ellipticity nom +ellipticity ellipticity nom +ells ell nom +elm elm nom +elms elm nom +elocution elocution nom +elocutionist elocutionist nom +elocutionists elocutionist nom +elocutions elocution nom +elodea elodea nom +elodeas elodea nom +elongate elongate ver +elongated elongate ver +elongates elongate ver +elongating elongate ver +elongation elongation nom +elongations elongation nom +elope elope ver +eloped elope ver +elopement elopement nom +elopements elopement nom +elopes elope ver +eloping elope ver +eloquence eloquence nom +eloquences eloquence nom +els el nom +else else sw +elsewhere elsewhere sw +eluate eluate nom +eluates eluate nom +elucidate elucidate ver +elucidated elucidate ver +elucidates elucidate ver +elucidating elucidate ver +elucidation elucidation nom +elucidations elucidation nom +elude elude ver +eluded elude ver +eludes elude ver +eluding elude ver +elusion elusion nom +elusions elusion nom +elusiveness elusiveness nom +elusivenesses elusiveness nom +elute elute ver +eluted elute ver +elutes elute ver +eluting elute ver +elution elution nom +elutions elution nom +elver elver nom +elvers elver nom +elves elf nom +elytron elytron nom +elytrons elytron nom +em em nom +emaciate emaciate ver +emaciated emaciate ver +emaciates emaciate ver +emaciating emaciate ver +emaciation emaciation nom +emaciations emaciation nom +email email nom +emailed email ver +emailing email ver +emails email nom +emanate emanate ver +emanated emanate ver +emanates emanate ver +emanating emanate ver +emanation emanation nom +emanations emanation nom +emancipate emancipate ver +emancipated emancipate ver +emancipates emancipate ver +emancipating emancipate ver +emancipation emancipation nom +emancipationist emancipationist nom +emancipationists emancipationist nom +emancipations emancipation nom +emancipator emancipator nom +emancipators emancipator nom +emasculate emasculate ver +emasculated emasculate ver +emasculates emasculate ver +emasculating emasculate ver +emasculation emasculation nom +emasculations emasculation nom +embalm embalm ver +embalmed embalm ver +embalmer embalmer nom +embalmers embalmer nom +embalming embalm ver +embalmment embalmment nom +embalmments embalmment nom +embalms embalm ver +embank embank ver +embanked embank ver +embanking embank ver +embankment embankment nom +embankments embankment nom +embanks embank ver +embargo embargo nom +embargoed embargo ver +embargoes embargo nom +embargoing embargo ver +embark embark ver +embarkation embarkation nom +embarkations embarkation nom +embarked embark ver +embarking embark ver +embarkment embarkment nom +embarkments embarkment nom +embarks embark ver +embarrass embarrass ver +embarrassed embarrass ver +embarrasses embarrass ver +embarrassing embarrass ver +embarrassment embarrassment nom +embarrassments embarrassment nom +embassies embassy nom +embassy embassy nom +embed embed ver +embedded embed ver +embedding embed ver +embeds embed ver +embellish embellish ver +embellished embellish ver +embellishes embellish ver +embellishing embellish ver +embellishment embellishment nom +embellishments embellishment nom +ember ember nom +embers ember nom +embezzle embezzle ver +embezzled embezzle ver +embezzlement embezzlement nom +embezzlements embezzlement nom +embezzler embezzler nom +embezzlers embezzler nom +embezzles embezzle ver +embezzling embezzle ver +embitter embitter ver +embittered embitter ver +embittering embitter ver +embitterment embitterment nom +embitterments embitterment nom +embitters embitter ver +emblazon emblazon ver +emblazoned emblazon ver +emblazoning emblazon ver +emblazonment emblazonment nom +emblazonments emblazonment nom +emblazons emblazon ver +emblem emblem nom +emblemed emblem ver +embleming emblem ver +emblems emblem nom +embodied embody ver +embodies embody ver +embodiment embodiment nom +embodiments embodiment nom +embody embody ver +embodying embody ver +embolden embolden ver +emboldened embolden ver +emboldening embolden ver +emboldens embolden ver +embolectomies embolectomy nom +embolectomy embolectomy nom +embolism embolism nom +embolisms embolism nom +embolus embolus nom +emboluses embolus nom +embonpoint embonpoint nom +embonpoints embonpoint nom +emboss emboss ver +embossed emboss ver +embosser embosser nom +embossers embosser nom +embosses emboss ver +embossing emboss ver +embossment embossment nom +embossments embossment nom +embouchure embouchure nom +embouchures embouchure nom +embower embower ver +embowered embower ver +embowering embower ver +embowers embower ver +embrace embrace nom +embraced embrace ver +embraces embrace nom +embracing embrace ver +embrangle embrangle ver +embrangled embrangle ver +embrangles embrangle ver +embrangling embrangle ver +embrasure embrasure nom +embrasures embrasure nom +embrocation embrocation nom +embrocations embrocation nom +embroider embroider ver +embroidered embroider ver +embroiderer embroiderer nom +embroiderers embroiderer nom +embroideries embroidery nom +embroidering embroider ver +embroiders embroider ver +embroidery embroidery nom +embroil embroil ver +embroiled embroil ver +embroiling embroil ver +embroilment embroilment nom +embroilments embroilment nom +embroils embroil ver +embrown embrown ver +embrowned embrown ver +embrowning embrown ver +embrowns embrown ver +embryo embryo nom +embryologies embryology nom +embryologist embryologist nom +embryologists embryologist nom +embryology embryology nom +embryos embryo nom +emcee emcee nom +emceed emcee ver +emceeing emcee ver +emcees emcee nom +emeer emeer nom +emeers emeer nom +emend emend ver +emendation emendation nom +emendations emendation nom +emended emend ver +emending emend ver +emends emend ver +emerald emerald nom +emeralds emerald nom +emerge emerge ver +emerged emerge ver +emergence emergence nom +emergences emergence nom +emergencies emergency nom +emergency emergency nom +emergent emergent nom +emergents emergent nom +emerges emerge ver +emerging emerge ver +emeries emery nom +emerita emerita nom +emeritae emerita nom +emeriti emeritus nom +emeritus emeritus nom +emersion emersion nom +emersions emersion nom +emery emery nom +emetic emetic nom +emetics emetic nom +emf emf nom +emfs emf nom +emigrant emigrant nom +emigrants emigrant nom +emigrate emigrate ver +emigrated emigrate ver +emigrates emigrate ver +emigrating emigrate ver +emigration emigration nom +emigrations emigration nom +emigre emigre nom +emigres emigre nom +eminence eminence nom +eminences eminence nom +emir emir nom +emirate emirate nom +emirates emirate nom +emirs emir nom +emissaries emissary nom +emissary emissary nom +emission emission nom +emissions emission nom +emit emit ver +emits emit ver +emitted emit ver +emitter emitter nom +emitters emitter nom +emitting emit ver +emmer emmer nom +emmers emmer nom +emmet emmet nom +emmets emmet nom +emollient emollient nom +emollients emollient nom +emolument emolument nom +emoluments emolument nom +emote emote ver +emoted emote ver +emotes emote ver +emoting emote ver +emotion emotion nom +emotionalism emotionalism nom +emotionalisms emotionalism nom +emotionalities emotionality nom +emotionality emotionality nom +emotionalize emotionalize ver +emotionalized emotionalize ver +emotionalizes emotionalize ver +emotionalizing emotionalize ver +emotionlessness emotionlessness nom +emotionlessnesses emotionlessness nom +emotions emotion nom +empale empale ver +empaled empale ver +empales empale ver +empaling empale ver +empanel empanel ver +empaneled empanel ver +empaneling empanel ver +empanels empanel ver +empathies empathy nom +empathize empathize ver +empathized empathize ver +empathizes empathize ver +empathizing empathize ver +empathy empathy nom +empennage empennage nom +empennages empennage nom +emperor emperor nom +emperors emperor nom +emphases emphasis nom +emphasis emphasis nom +emphasise emphasise ver +emphasised emphasise ver +emphasises emphasise ver +emphasising emphasise ver +emphasize emphasize ver +emphasized emphasize ver +emphasizes emphasize ver +emphasizing emphasize ver +emphatic emphatic nom +emphatics emphatic nom +emphysema emphysema nom +emphysemas emphysema nom +empire empire nom +empires empire nom +empiric empiric nom +empiricism empiricism nom +empiricisms empiricism nom +empiricist empiricist nom +empiricists empiricist nom +empirics empiric nom +emplacement emplacement nom +emplacements emplacement nom +emplane emplane ver +emplaned emplane ver +emplanes emplane ver +emplaning emplane ver +employ employ nom +employe employe nom +employed employ ver +employee employee nom +employees employee nom +employer employer nom +employers employer nom +employes employe nom +employing employ ver +employment employment nom +employments employment nom +employs employ nom +emporium emporium nom +emporiums emporium nom +empower empower ver +empowered empower ver +empowering empower ver +empowerment empowerment nom +empowerments empowerment nom +empowers empower ver +empress empress nom +empresses empress nom +emptied empty ver +emptier empty adj +empties empty nom +emptiest empty adj +emptiness emptiness nom +emptinesses emptiness nom +empty empty adj +emptying empty ver +emptyings emptying nom +empurple empurple ver +empurpled empurple ver +empurples empurple ver +empurpling empurple ver +empyrean empyrean nom +empyreans empyrean nom +ems em nom +emu emu nom +emulate emulate ver +emulated emulate ver +emulates emulate ver +emulating emulate ver +emulation emulation nom +emulations emulation nom +emulator emulator nom +emulators emulator nom +emulsification emulsification nom +emulsifications emulsification nom +emulsified emulsify ver +emulsifier emulsifier nom +emulsifiers emulsifier nom +emulsifies emulsify ver +emulsify emulsify ver +emulsifying emulsify ver +emulsion emulsion nom +emulsions emulsion nom +emus emu nom +en en nom +enable enable ver +enabled enable ver +enables enable ver +enabling enable ver +enact enact ver +enacted enact ver +enacting enact ver +enactment enactment nom +enactments enactment nom +enacts enact ver +enamel enamel nom +enameled enamel ver +enameler enameler nom +enamelers enameler nom +enameling enamel ver +enamels enamel nom +enamelware enamelware nom +enamelwares enamelware nom +enamine enamine nom +enamines enamine nom +enamor enamor ver +enamored enamor ver +enamoring enamor ver +enamors enamor ver +enamour enamour ver +enamoured enamour ver +enamouring enamour ver +enamours enamour ver +enantiomer enantiomer nom +enantiomers enantiomer nom +enantiomorph enantiomorph nom +enantiomorphism enantiomorphism nom +enantiomorphisms enantiomorphism nom +enantiomorphs enantiomorph nom +enarthroses enarthrosis nom +enarthrosis enarthrosis nom +enate enate nom +enates enate nom +enation enation nom +enations enation nom +encamp encamp ver +encamped encamp ver +encamping encamp ver +encampment encampment nom +encampments encampment nom +encamps encamp ver +encapsulate encapsulate ver +encapsulated encapsulate ver +encapsulates encapsulate ver +encapsulating encapsulate ver +encapsulation encapsulation nom +encapsulations encapsulation nom +encase encase ver +encased encase ver +encasement encasement nom +encasements encasement nom +encases encase ver +encasing encase ver +encaustic encaustic nom +encaustics encaustic nom +encephalitides encephalitis nom +encephalitis encephalitis nom +encephalogram encephalogram nom +encephalograms encephalogram nom +encephalon encephalon nom +encephalons encephalon nom +enchain enchain ver +enchained enchain ver +enchaining enchain ver +enchains enchain ver +enchant enchant ver +enchanted enchant ver +enchanter enchanter nom +enchanters enchanter nom +enchanting enchant ver +enchantment enchantment nom +enchantments enchantment nom +enchantress enchantress nom +enchantresses enchantress nom +enchants enchant ver +enchilada enchilada nom +enchiladas enchilada nom +enchiridion enchiridion nom +enchiridions enchiridion nom +encipher encipher ver +enciphered encipher ver +enciphering encipher ver +enciphers encipher ver +encircle encircle ver +encircled encircle ver +encirclement encirclement nom +encirclements encirclement nom +encircles encircle ver +encircling encircle ver +enclave enclave nom +enclaved enclave ver +enclaves enclave nom +enclaving enclave ver +enclose enclose ver +enclosed enclose ver +encloses enclose ver +enclosing enclose ver +enclosure enclosure nom +enclosures enclosure nom +encode encode ver +encoded encode ver +encoder encoder nom +encoders encoder nom +encodes encode ver +encoding encode ver +encomium encomium nom +encomiums encomium nom +encompass encompass ver +encompassed encompass ver +encompasses encompass ver +encompassing encompass ver +encompassment encompassment nom +encompassments encompassment nom +encore encore nom +encored encore ver +encores encore nom +encoring encore ver +encounter encounter nom +encountered encounter ver +encountering encounter ver +encounters encounter nom +encourage encourage ver +encouraged encourage ver +encouragement encouragement nom +encouragements encouragement nom +encourages encourage ver +encouraging encourage ver +encrimson encrimson ver +encrimsoned encrimson ver +encrimsoning encrimson ver +encrimsons encrimson ver +encroach encroach ver +encroached encroach ver +encroacher encroacher nom +encroachers encroacher nom +encroaches encroach ver +encroaching encroach ver +encroachment encroachment nom +encroachments encroachment nom +encrust encrust ver +encrustation encrustation nom +encrustations encrustation nom +encrusted encrust ver +encrusting encrust ver +encrusts encrust ver +encrypt encrypt ver +encrypted encrypt ver +encrypting encrypt ver +encryption encryption nom +encryptions encryption nom +encrypts encrypt ver +encumber encumber ver +encumbered encumber ver +encumbering encumber ver +encumbers encumber ver +encumbrance encumbrance nom +encumbrances encumbrance nom +encyclical encyclical nom +encyclicals encyclical nom +encyclopaedia encyclopaedia nom +encyclopaedias encyclopaedia nom +encyclopedia encyclopedia nom +encyclopedias encyclopedia nom +encyclopedist encyclopedist nom +encyclopedists encyclopedist nom +encyst encyst ver +encysted encyst ver +encysting encyst ver +encystment encystment nom +encystments encystment nom +encysts encyst ver +end end nom +endameba endameba nom +endamebas endameba nom +endanger endanger ver +endangered endanger ver +endangering endanger ver +endangerment endangerment nom +endangerments endangerment nom +endangers endanger ver +endear endear ver +endeared endear ver +endearing endear ver +endearment endearment nom +endearments endearment nom +endears endear ver +endeavor endeavor nom +endeavored endeavor ver +endeavoring endeavor ver +endeavors endeavor nom +endeavour endeavour nom +endeavoured endeavour ver +endeavouring endeavour ver +endeavours endeavour nom +ended end ver +endemic endemic nom +endemics endemic nom +endemism endemism nom +endemisms endemism nom +ending end ver +endings ending nom +endive endive nom +endives endive nom +endlessness endlessness nom +endlessnesses endlessness nom +endoblast endoblast nom +endoblasts endoblast nom +endocarditis endocarditis nom +endocarditises endocarditis nom +endocardium endocardium nom +endocardiums endocardium nom +endocarp endocarp nom +endocrine endocrine nom +endocrines endocrine nom +endocrinologies endocrinology nom +endocrinologist endocrinologist nom +endocrinologists endocrinologist nom +endocrinology endocrinology nom +endoderm endoderm nom +endoderms endoderm nom +endodontia endodontia nom +endodontias endodontia nom +endodontist endodontist nom +endodontists endodontist nom +endogamies endogamy nom +endogamy endogamy nom +endometrioses endometriosis nom +endometriosis endometriosis nom +endometritis endometritis nom +endometritises endometritis nom +endometrium endometrium nom +endometriums endometrium nom +endomorph endomorph nom +endomorphies endomorphy nom +endomorphs endomorph nom +endomorphy endomorphy nom +endoparasite endoparasite nom +endoparasites endoparasite nom +endoplasm endoplasm nom +endoplasms endoplasm nom +endorphin endorphin nom +endorphins endorphin nom +endorse endorse ver +endorsed endorse ver +endorsement endorsement nom +endorsements endorsement nom +endorser endorser nom +endorsers endorser nom +endorses endorse ver +endorsing endorse ver +endoscope endoscope nom +endoscopes endoscope nom +endoscopies endoscopy nom +endoscopy endoscopy nom +endoskeleton endoskeleton nom +endoskeletons endoskeleton nom +endosperm endosperm nom +endosperms endosperm nom +endospore endospore nom +endospores endospore nom +endothelia endothelium nom +endothelium endothelium nom +endow endow ver +endowed endow ver +endowing endow ver +endowment endowment nom +endowments endowment nom +endows endow ver +endpoint endpoint nom +endpoints endpoint nom +ends end nom +endue endue ver +endued endue ver +endues endue ver +enduing endue ver +endurance endurance nom +endurances endurance nom +endure endure ver +endured endure ver +endures endure ver +enduring endure ver +enduringness enduringness nom +enduringnesses enduringness nom +enema enema nom +enemas enema nom +enemies enemy nom +enemy enemy nom +energid energid nom +energids energid nom +energies energy nom +energise energise ver +energised energise ver +energises energise ver +energising energise ver +energize energize ver +energized energize ver +energizer energizer nom +energizers energizer nom +energizes energize ver +energizing energize ver +energy energy nom +enervate enervate ver +enervated enervate ver +enervates enervate ver +enervating enervate ver +enervation enervation nom +enervations enervation nom +enfeeble enfeeble ver +enfeebled enfeeble ver +enfeeblement enfeeblement nom +enfeeblements enfeeblement nom +enfeebles enfeeble ver +enfeebling enfeeble ver +enfilade enfilade nom +enfiladed enfilade ver +enfilades enfilade nom +enfilading enfilade ver +enfold enfold ver +enfolded enfold ver +enfolding enfold ver +enfolds enfold ver +enforce enforce ver +enforced enforce ver +enforcement enforcement nom +enforcements enforcement nom +enforcer enforcer nom +enforcers enforcer nom +enforces enforce ver +enforcing enforce ver +enfranchise enfranchise ver +enfranchised enfranchise ver +enfranchisement enfranchisement nom +enfranchisements enfranchisement nom +enfranchises enfranchise ver +enfranchising enfranchise ver +engage engage ver +engaged engage ver +engagement engagement nom +engagements engagement nom +engages engage ver +engaging engage ver +engender engender ver +engendered engender ver +engendering engender ver +engenders engender ver +engild engild ver +engilded engild ver +engilding engild ver +engilds engild ver +engine engine nom +engineer engineer nom +engineered engineer ver +engineering engineer ver +engineerings engineering nom +engineers engineer nom +engineries enginery nom +enginery enginery nom +engines engine nom +englut englut ver +engluts englut ver +englutted englut ver +englutting englut ver +engorge engorge ver +engorged engorge ver +engorgement engorgement nom +engorgements engorgement nom +engorges engorge ver +engorging engorge ver +engraft engraft ver +engrafted engraft ver +engrafting engraft ver +engrafts engraft ver +engram engram nom +engrams engram nom +engrave engrave ver +engraved engrave ver +engraver engraver nom +engravers engraver nom +engraves engrave ver +engraving engrave ver +engravings engraving nom +engross engross ver +engrossed engross ver +engrosses engross ver +engrossing engross ver +engrossment engrossment nom +engrossments engrossment nom +engulf engulf ver +engulfed engulf ver +engulfing engulf ver +engulfment engulfment nom +engulfments engulfment nom +engulfs engulf ver +enhance enhance ver +enhanced enhance ver +enhancement enhancement nom +enhancements enhancement nom +enhances enhance ver +enhancing enhance ver +enigma enigma nom +enigmas enigma nom +enjambement enjambement nom +enjambements enjambement nom +enjambment enjambment nom +enjambments enjambment nom +enjoin enjoin ver +enjoined enjoin ver +enjoining enjoin ver +enjoinment enjoinment nom +enjoinments enjoinment nom +enjoins enjoin ver +enjoy enjoy ver +enjoyableness enjoyableness nom +enjoyablenesses enjoyableness nom +enjoyed enjoy ver +enjoyer enjoyer nom +enjoyers enjoyer nom +enjoying enjoy ver +enjoyment enjoyment nom +enjoyments enjoyment nom +enjoys enjoy ver +enkephalin enkephalin nom +enkephalins enkephalin nom +enkindle enkindle ver +enkindled enkindle ver +enkindles enkindle ver +enkindling enkindle ver +enlace enlace ver +enlaced enlace ver +enlaces enlace ver +enlacing enlace ver +enlarge enlarge ver +enlarged enlarge ver +enlargement enlargement nom +enlargements enlargement nom +enlarger enlarger nom +enlargers enlarger nom +enlarges enlarge ver +enlarging enlarge ver +enlighten enlighten ver +enlightened enlighten ver +enlightening enlighten ver +enlightenment enlightenment nom +enlightenments enlightenment nom +enlightens enlighten ver +enlist enlist ver +enlisted enlist ver +enlistee enlistee nom +enlistees enlistee nom +enlisting enlist ver +enlistment enlistment nom +enlistments enlistment nom +enlists enlist ver +enliven enliven ver +enlivened enliven ver +enlivening enliven ver +enlivenment enlivenment nom +enlivenments enlivenment nom +enlivens enliven ver +enmesh enmesh ver +enmeshed enmesh ver +enmeshes enmesh ver +enmeshing enmesh ver +enmeshment enmeshment nom +enmeshments enmeshment nom +enmities enmity nom +enmity enmity nom +ennead ennead nom +enneads ennead nom +ennoble ennoble ver +ennobled ennoble ver +ennoblement ennoblement nom +ennoblements ennoblement nom +ennobles ennoble ver +ennobling ennoble ver +ennui ennui nom +ennuis ennui nom +enologies enology nom +enologist enologist nom +enologists enologist nom +enology enology nom +enormities enormity nom +enormity enormity nom +enormousness enormousness nom +enormousnesses enormousness nom +enough enough sw +enoughs enough nom +enounce enounce ver +enounced enounce ver +enounces enounce ver +enouncing enounce ver +enplane enplane ver +enplaned enplane ver +enplanes enplane ver +enplaning enplane ver +enquire enquire ver +enquired enquire ver +enquirer enquirer nom +enquirers enquirer nom +enquires enquire ver +enquiries enquiry nom +enquiring enquire ver +enquiry enquiry nom +enrage enrage ver +enraged enrage ver +enragement enragement nom +enragements enragement nom +enrages enrage ver +enraging enrage ver +enrapture enrapture ver +enraptured enrapture ver +enraptures enrapture ver +enrapturing enrapture ver +enrich enrich ver +enriched enrich ver +enriches enrich ver +enriching enrich ver +enrichment enrichment nom +enrichments enrichment nom +enrobe enrobe ver +enrobed enrobe ver +enrobes enrobe ver +enrobing enrobe ver +enrol enrol ver +enroll enroll ver +enrolled enrol ver +enrollee enrollee nom +enrollees enrollee nom +enrolling enrol ver +enrollment enrollment nom +enrollments enrollment nom +enrolls enroll ver +enrolment enrolment nom +enrolments enrolment nom +enrols enrol ver +ens en nom +ensconce ensconce ver +ensconced ensconce ver +ensconces ensconce ver +ensconcing ensconce ver +ensemble ensemble nom +ensembles ensemble nom +enshrine enshrine ver +enshrined enshrine ver +enshrinement enshrinement nom +enshrinements enshrinement nom +enshrines enshrine ver +enshrining enshrine ver +enshroud enshroud ver +enshrouded enshroud ver +enshrouding enshroud ver +enshrouds enshroud ver +ensign ensign nom +ensigns ensign nom +ensilage ensilage nom +ensilaged ensilage ver +ensilages ensilage nom +ensilaging ensilage ver +ensile ensile ver +ensiled ensile ver +ensiles ensile ver +ensiling ensile ver +enskied ensky ver +enskies ensky ver +ensky ensky ver +enskying ensky ver +enslave enslave ver +enslaved enslave ver +enslavement enslavement nom +enslavements enslavement nom +enslaves enslave ver +enslaving enslave ver +ensnare ensnare ver +ensnared ensnare ver +ensnarement ensnarement nom +ensnarements ensnarement nom +ensnares ensnare ver +ensnaring ensnare ver +ensnarl ensnarl ver +ensnarled ensnarl ver +ensnarling ensnarl ver +ensnarls ensnarl ver +ensue ensue ver +ensued ensue ver +ensues ensue ver +ensuing ensue ver +ensure ensure ver +ensured ensure ver +ensurer ensurer nom +ensurers ensurer nom +ensures ensure ver +ensuring ensure ver +entablature entablature nom +entablatures entablature nom +entail entail nom +entailed entail ver +entailing entail ver +entailment entailment nom +entailments entailment nom +entails entail nom +entangle entangle ver +entangled entangle ver +entanglement entanglement nom +entanglements entanglement nom +entangles entangle ver +entangling entangle ver +entellus entellus nom +entelluses entellus nom +entente entente nom +ententes entente nom +enter enter ver +entered enter ver +entering enter ver +enterings entering nom +enteritis enteritis nom +enteritises enteritis nom +enteron enteron nom +enterons enteron nom +enterovirus enterovirus nom +enteroviruses enterovirus nom +enterprise enterprise nom +enterpriser enterpriser nom +enterprisers enterpriser nom +enterprises enterprise nom +enters enter ver +entertain entertain ver +entertained entertain ver +entertainer entertainer nom +entertainers entertainer nom +entertaining entertain ver +entertainings entertaining nom +entertainment entertainment nom +entertainments entertainment nom +entertains entertain ver +enthalpies enthalpy nom +enthalpy enthalpy nom +enthral enthral ver +enthrall enthrall ver +enthralled enthral ver +enthralling enthral ver +enthrallment enthrallment nom +enthrallments enthrallment nom +enthralls enthrall ver +enthrals enthral ver +enthrone enthrone ver +enthroned enthrone ver +enthronement enthronement nom +enthronements enthronement nom +enthrones enthrone ver +enthroning enthrone ver +enthuse enthuse ver +enthused enthuse ver +enthuses enthuse ver +enthusiasm enthusiasm nom +enthusiasms enthusiasm nom +enthusiast enthusiast nom +enthusiasts enthusiast nom +enthusing enthuse ver +entice entice ver +enticed entice ver +enticement enticement nom +enticements enticement nom +entices entice ver +enticing entice ver +entire entire nom +entirely entirely sw +entireness entireness nom +entirenesses entireness nom +entires entire nom +entireties entirety nom +entirety entirety nom +entities entity nom +entitle entitle ver +entitled entitle ver +entitlement entitlement nom +entitlements entitlement nom +entitles entitle ver +entitling entitle ver +entity entity nom +entoblast entoblast nom +entoblasts entoblast nom +entoderm entoderm nom +entoderms entoderm nom +entomb entomb ver +entombed entomb ver +entombing entomb ver +entombment entombment nom +entombments entombment nom +entombs entomb ver +entomologies entomology nom +entomologist entomologist nom +entomologists entomologist nom +entomology entomology nom +entoproct entoproct nom +entoprocts entoproct nom +entourage entourage nom +entourages entourage nom +entozoa entozoon nom +entozoan entozoan nom +entozoans entozoan nom +entozoon entozoon nom +entrain entrain ver +entrained entrain ver +entraining entrain ver +entrains entrain ver +entrance entrance nom +entranced entrance ver +entrancement entrancement nom +entrancements entrancement nom +entrances entrance nom +entranceway entranceway nom +entranceways entranceway nom +entrancing entrance ver +entrant entrant nom +entrants entrant nom +entrap entrap ver +entrapment entrapment nom +entrapments entrapment nom +entrapped entrap ver +entrapping entrap ver +entraps entrap ver +entreat entreat ver +entreated entreat ver +entreaties entreaty nom +entreating entreat ver +entreats entreat ver +entreaty entreaty nom +entree entree nom +entrees entree nom +entrench entrench ver +entrenched entrench ver +entrenches entrench ver +entrenching entrench ver +entrenchment entrenchment nom +entrenchments entrenchment nom +entrepot entrepot nom +entrepots entrepot nom +entrepreneur entrepreneur nom +entrepreneurs entrepreneur nom +entries entry nom +entropies entropy nom +entropy entropy nom +entrust entrust ver +entrusted entrust ver +entrusting entrust ver +entrusts entrust ver +entry entry nom +entryway entryway nom +entryways entryway nom +entwine entwine ver +entwined entwine ver +entwines entwine ver +entwining entwine ver +enumerate enumerate ver +enumerated enumerate ver +enumerates enumerate ver +enumerating enumerate ver +enumeration enumeration nom +enumerations enumeration nom +enumerator enumerator nom +enumerators enumerator nom +enunciate enunciate ver +enunciated enunciate ver +enunciates enunciate ver +enunciating enunciate ver +enunciation enunciation nom +enunciations enunciation nom +enure enure ver +enured enure ver +enures enure ver +enureses enuresis nom +enuresis enuresis nom +enuring enure ver +envelop envelop ver +envelope envelope nom +enveloped envelop ver +enveloper enveloper nom +envelopers enveloper nom +envelopes envelope nom +enveloping envelop ver +envelopment envelopment nom +envelopments envelopment nom +envelops envelop ver +envenom envenom ver +envenomed envenom ver +envenoming envenom ver +envenoms envenom ver +envied envy ver +envies envy nom +enviousness enviousness nom +enviousnesses enviousness nom +environ environ ver +environed environ ver +environing environ ver +environment environment nom +environmentalism environmentalism nom +environmentalisms environmentalism nom +environmentalist environmentalist nom +environmentalists environmentalist nom +environments environment nom +environs environ ver +envisage envisage ver +envisaged envisage ver +envisages envisage ver +envisaging envisage ver +envision envision ver +envisioned envision ver +envisioning envision ver +envisions envision ver +envoi envoi nom +envois envoi nom +envoy envoy nom +envoys envoy nom +envy envy nom +envying envy ver +enwrap enwrap ver +enwrapped enwrap ver +enwrapping enwrap ver +enwraps enwrap ver +enzyme enzyme nom +enzymes enzyme nom +eohippus eohippus nom +eohippuses eohippus nom +eolith eolith nom +eoliths eolith nom +eon eon nom +eons eon nom +eosin eosin nom +eosinophil eosinophil nom +eosinophile eosinophile nom +eosinophiles eosinophile nom +eosinophilia eosinophilia nom +eosinophilias eosinophilia nom +eosinophils eosinophil nom +eosins eosin nom +epacris epacris nom +epacrises epacris nom +epanalepses epanalepsis nom +epanalepsis epanalepsis nom +epanorthoses epanorthosis nom +epanorthosis epanorthosis nom +eparchies eparchy nom +eparchy eparchy nom +epaulet epaulet nom +epaulets epaulet nom +epaulette epaulette nom +epaulettes epaulette nom +epee epee nom +epees epee nom +epergne epergne nom +epergnes epergne nom +epha epha nom +ephah ephah nom +ephahs ephah nom +ephas epha nom +ephedra ephedra nom +ephedras ephedra nom +ephedrine ephedrine nom +ephedrines ephedrine nom +ephemera ephemera nom +ephemeral ephemeral nom +ephemeralities ephemerality nom +ephemerality ephemerality nom +ephemeralness ephemeralness nom +ephemeralnesses ephemeralness nom +ephemerals ephemeral nom +ephemeras ephemera nom +ephemerid ephemerid nom +ephemerids ephemerid nom +epic epic nom +epicalyx epicalyx nom +epicalyxes epicalyx nom +epicarp epicarp nom +epicarps epicarp nom +epicenter epicenter nom +epicenters epicenter nom +epicentre epicentre nom +epicentres epicentre nom +epics epic nom +epicure epicure nom +epicurean epicurean nom +epicureanism epicureanism nom +epicureanisms epicureanism nom +epicureans epicurean nom +epicures epicure nom +epicycle epicycle nom +epicycles epicycle nom +epicycloid epicycloid nom +epicycloids epicycloid nom +epidemic epidemic nom +epidemics epidemic nom +epidemiologies epidemiology nom +epidemiologist epidemiologist nom +epidemiologists epidemiologist nom +epidemiology epidemiology nom +epidermis epidermis nom +epidermises epidermis nom +epidiascope epidiascope nom +epidiascopes epidiascope nom +epidural epidural nom +epidurals epidural nom +epigeneses epigenesis nom +epigenesis epigenesis nom +epiglottis epiglottis nom +epiglottises epiglottis nom +epigon epigon nom +epigone epigone nom +epigones epigone nom +epigons epigon nom +epigram epigram nom +epigrams epigram nom +epigraph epigraph nom +epigraphies epigraphy nom +epigraphs epigraph nom +epigraphy epigraphy nom +epilate epilate ver +epilated epilate ver +epilates epilate ver +epilating epilate ver +epilepsies epilepsy nom +epilepsy epilepsy nom +epileptic epileptic nom +epileptics epileptic nom +epilog epilog nom +epilogs epilog nom +epilogue epilogue nom +epilogues epilogue nom +epinephrin epinephrin nom +epinephrine epinephrine nom +epinephrines epinephrine nom +epinephrins epinephrin nom +epiphanies epiphany nom +epiphany epiphany nom +epiphenomenon epiphenomenon nom +epiphenomenons epiphenomenon nom +epiphyses epiphysis nom +epiphysis epiphysis nom +epiphyte epiphyte nom +epiphytes epiphyte nom +episcia episcia nom +episcias episcia nom +episcopacies episcopacy nom +episcopacy episcopacy nom +episcopate episcopate nom +episcopates episcopate nom +episiotomies episiotomy nom +episiotomy episiotomy nom +episode episode nom +episodes episode nom +episperm episperm nom +episperms episperm nom +epistases epistasis nom +epistasis epistasis nom +epistaxes epistaxis nom +epistaxis epistaxis nom +epistemologies epistemology nom +epistemologist epistemologist nom +epistemologists epistemologist nom +epistemology epistemology nom +epistle epistle nom +epistles epistle nom +epistrophe epistrophe nom +epistrophes epistrophe nom +epitaph epitaph nom +epitaphed epitaph ver +epitaphing epitaph ver +epitaphs epitaph nom +epithelioma epithelioma nom +epitheliomas epithelioma nom +epithelium epithelium nom +epitheliums epithelium nom +epithet epithet nom +epithets epithet nom +epitome epitome nom +epitomes epitome nom +epitomize epitomize ver +epitomized epitomize ver +epitomizes epitomize ver +epitomizing epitomize ver +epizoa epizoon nom +epizoon epizoon nom +epoch epoch nom +epochs epoch nom +eponym eponym nom +eponyms eponym nom +epos epos nom +eposes epos nom +epoxied epoxy ver +epoxies epoxy nom +epoxy epoxy nom +epoxying epoxy ver +epsilon epsilon nom +epsilons epsilon nom +equabilities equability nom +equability equability nom +equal equal nom +equaled equal ver +equaling equal ver +equaliser equaliser nom +equalisers equaliser nom +equalitarian equalitarian nom +equalitarianism equalitarianism nom +equalitarianisms equalitarianism nom +equalitarians equalitarian nom +equalities equality nom +equality equality nom +equalization equalization nom +equalizations equalization nom +equalize equalize ver +equalized equalize ver +equalizer equalizer nom +equalizers equalizer nom +equalizes equalize ver +equalizing equalize ver +equals equal nom +equanimities equanimity nom +equanimity equanimity nom +equatabilities equatability nom +equatability equatability nom +equate equate ver +equated equate ver +equates equate ver +equating equate ver +equation equation nom +equations equation nom +equator equator nom +equatorial equatorial nom +equatorials equatorial nom +equators equator nom +equerries equerry nom +equerry equerry nom +equestrian equestrian nom +equestrianism equestrianism nom +equestrianisms equestrianism nom +equestrians equestrian nom +equestrienne equestrienne nom +equestriennes equestrienne nom +equid equid nom +equids equid nom +equilateral equilateral nom +equilaterals equilateral nom +equilibrate equilibrate ver +equilibrated equilibrate ver +equilibrates equilibrate ver +equilibrating equilibrate ver +equilibrium equilibrium nom +equilibriums equilibrium nom +equine equine nom +equines equine nom +equinoctial equinoctial nom +equinoctials equinoctial nom +equinox equinox nom +equinoxes equinox nom +equip equip ver +equipage equipage nom +equipages equipage nom +equipment equipment nom +equipments equipment nom +equipoise equipoise nom +equipoised equipoise ver +equipoises equipoise nom +equipoising equipoise ver +equipped equip ver +equipping equip ver +equips equip ver +equitation equitation nom +equitations equitation nom +equities equity nom +equity equity nom +equivalence equivalence nom +equivalences equivalence nom +equivalent equivalent nom +equivalents equivalent nom +equivocalness equivocalness nom +equivocalnesses equivocalness nom +equivocate equivocate ver +equivocated equivocate ver +equivocates equivocate ver +equivocating equivocate ver +equivocation equivocation nom +equivocations equivocation nom +equivocator equivocator nom +equivocators equivocator nom +era era nom +eradicate eradicate ver +eradicated eradicate ver +eradicates eradicate ver +eradicating eradicate ver +eradication eradication nom +eradications eradication nom +eradicator eradicator nom +eradicators eradicator nom +eras era nom +erase erase ver +erased erase ver +eraser eraser nom +erasers eraser nom +erases erase ver +erasing erase ver +erasure erasure nom +erasures erasure nom +erbium erbium nom +erbiums erbium nom +erect erect ver +erected erect ver +erecting erect ver +erection erection nom +erections erection nom +erectness erectness nom +erectnesses erectness nom +erector erector nom +erectors erector nom +erects erect ver +eremite eremite nom +eremites eremite nom +erg erg nom +ergocalciferol ergocalciferol nom +ergocalciferols ergocalciferol nom +ergosterol ergosterol nom +ergosterols ergosterol nom +ergot ergot nom +ergotism ergotism nom +ergotisms ergotism nom +ergots ergot nom +ergs erg nom +erica erica nom +ericas erica nom +eringo eringo nom +eringoes eringo nom +eringos eringo nom +ermine ermine nom +ermines ermine nom +ern ern nom +erne erne nom +ernes erne nom +erns ern nom +erode erode ver +eroded erode ver +erodes erode ver +eroding erode ver +erosion erosion nom +erosions erosion nom +erotic erotic nom +eroticism eroticism nom +eroticisms eroticism nom +erotics erotic nom +erotism erotism nom +erotisms erotism nom +err err ver +errancies errancy nom +errancy errancy nom +errand errand nom +errands errand nom +errata erratum nom +erratas errata nom +erratum erratum nom +erred err ver +erring err ver +erroneousness erroneousness nom +erroneousnesses erroneousness nom +error error nom +errors error nom +errs err ver +ersatz ersatz nom +ersatzes ersatz nom +eruct eruct ver +eructation eructation nom +eructations eructation nom +eructed eruct ver +eructing eruct ver +eructs eruct ver +eruditeness eruditeness nom +eruditenesses eruditeness nom +erudition erudition nom +eruditions erudition nom +erupt erupt ver +erupted erupt ver +erupting erupt ver +eruption eruption nom +eruptions eruption nom +eruptive eruptive nom +eruptives eruptive nom +erupts erupt ver +eryngo eryngo nom +eryngoes eryngo nom +eryngos eryngo nom +erysipelas erysipelas nom +erysipelases erysipelas nom +erythrina erythrina nom +erythrinas erythrina nom +erythroblast erythroblast nom +erythroblasts erythroblast nom +erythrocyte erythrocyte nom +erythrocytes erythrocyte nom +erythromycin erythromycin nom +erythromycins erythromycin nom +es es nom +escalade escalade nom +escalades escalade nom +escalate escalate ver +escalated escalate ver +escalates escalate ver +escalating escalate ver +escalation escalation nom +escalations escalation nom +escalator escalator nom +escalators escalator nom +escallop escallop nom +escalloped escallop ver +escalloping escallop ver +escallops escallop nom +escalop escalop ver +escaloped escalop ver +escaloping escalop ver +escalops escalop ver +escapade escapade nom +escapades escapade nom +escape escape nom +escaped escape ver +escapee escapee nom +escapees escapee nom +escapement escapement nom +escapements escapement nom +escapes escape nom +escaping escape ver +escapism escapism nom +escapisms escapism nom +escapist escapist nom +escapists escapist nom +escapologist escapologist nom +escapologists escapologist nom +escargot escargot nom +escargots escargot nom +escarole escarole nom +escaroles escarole nom +escarp escarp nom +escarpment escarpment nom +escarpments escarpment nom +escarps escarp nom +eschalot eschalot nom +eschalots eschalot nom +eschar eschar nom +eschars eschar nom +eschatologies eschatology nom +eschatologist eschatologist nom +eschatologists eschatologist nom +eschatology eschatology nom +escheat escheat nom +escheats escheat nom +eschew eschew ver +eschewed eschew ver +eschewing eschew ver +eschews eschew ver +escolar escolar nom +escolars escolar nom +escort escort nom +escorted escort ver +escorting escort ver +escorts escort nom +escritoire escritoire nom +escritoires escritoire nom +escrow escrow nom +escrowed escrow ver +escrowing escrow ver +escrows escrow nom +escudo escudo nom +escudos escudo nom +escutcheon escutcheon nom +escutcheons escutcheon nom +esophagi esophagus nom +esophagus esophagus nom +espadrille espadrille nom +espadrilles espadrille nom +espalier espalier nom +espaliered espalier ver +espaliering espalier ver +espaliers espalier nom +espanole espanole nom +espanoles espanole nom +especially especially sw +espial espial nom +espials espial nom +espied espy ver +espies espy ver +espionage espionage nom +espionages espionage nom +esplanade esplanade nom +esplanades esplanade nom +espousal espousal nom +espousals espousal nom +espouse espouse ver +espoused espouse ver +espouses espouse ver +espousing espouse ver +espresso espresso nom +espressos espresso nom +esprit esprit nom +esprits esprit nom +espy espy ver +espying espy ver +esquire esquire nom +esquired esquire ver +esquires esquire nom +esquiring esquire ver +essay essay nom +essayed essay ver +essayer essayer nom +essayers essayer nom +essaying essay ver +essayist essayist nom +essayists essayist nom +essays essay nom +essence essence nom +essences essence nom +essential essential nom +essentialities essentiality nom +essentiality essentiality nom +essentialness essentialness nom +essentialnesses essentialness nom +essentials essential nom +essonite essonite nom +essonites essonite nom +establish establish ver +established establish ver +establishes establish ver +establishing establish ver +establishment establishment nom +establishments establishment nom +estaminet estaminet nom +estaminets estaminet nom +estate estate nom +estated estate ver +estates estate nom +estating estate ver +esteem esteem nom +esteemed esteem ver +esteeming esteem ver +esteems esteem nom +ester ester nom +esterified esterify ver +esterifies esterify ver +esterify esterify ver +esterifying esterify ver +esters ester nom +esthete esthete nom +esthetes esthete nom +esthetic esthetic nom +esthetician esthetician nom +estheticians esthetician nom +esthetics esthetic nom +estimate estimate nom +estimated estimate ver +estimates estimate nom +estimating estimate ver +estimation estimation nom +estimations estimation nom +estimator estimator nom +estimators estimator nom +estivate estivate ver +estivated estivate ver +estivates estivate ver +estivating estivate ver +estivation estivation nom +estivations estivation nom +estoppel estoppel nom +estoppels estoppel nom +estragon estragon nom +estragons estragon nom +estrange estrange ver +estranged estrange ver +estrangement estrangement nom +estrangements estrangement nom +estranges estrange ver +estranging estrange ver +estrogen estrogen nom +estrogens estrogen nom +estrone estrone nom +estrones estrone nom +estrus estrus nom +estruses estrus nom +estuaries estuary nom +estuary estuary nom +esurience esurience nom +esuriences esurience nom +et et sw +eta eta nom +etagere etagere nom +etageres etagere nom +etamin etamin nom +etamine etamine nom +etamines etamine nom +etamins etamin nom +etas eta nom +etc etc sw +etcetera etcetera nom +etceteras etcetera nom +etch etch ver +etched etch ver +etcher etcher nom +etchers etcher nom +etches etch ver +etching etch ver +etchings etching nom +eternal eternal nom +eternalize eternalize ver +eternalized eternalize ver +eternalizes eternalize ver +eternalizing eternalize ver +eternalness eternalness nom +eternalnesses eternalness nom +eternals eternal nom +eternities eternity nom +eternity eternity nom +eternize eternize ver +eternized eternize ver +eternizes eternize ver +eternizing eternize ver +ethane ethane nom +ethanes ethane nom +ethanol ethanol nom +ethanols ethanol nom +ethene ethene nom +ethenes ethene nom +ether ether nom +etherealize etherealize ver +etherealized etherealize ver +etherealizes etherealize ver +etherealizing etherealize ver +etherified etherify ver +etherifies etherify ver +etherify etherify ver +etherifying etherify ver +etherize etherize ver +etherized etherize ver +etherizes etherize ver +etherizing etherize ver +ethernet ethernet nom +ethernets ethernet nom +ethers ether nom +ethic ethic nom +ethics ethic nom +ethnic ethnic nom +ethnicities ethnicity nom +ethnicity ethnicity nom +ethnics ethnic nom +ethnocentrism ethnocentrism nom +ethnocentrisms ethnocentrism nom +ethnographer ethnographer nom +ethnographers ethnographer nom +ethnographies ethnography nom +ethnography ethnography nom +ethnologies ethnology nom +ethnologist ethnologist nom +ethnologists ethnologist nom +ethnology ethnology nom +ethnos ethnos nom +ethnoses ethnos nom +ethologies ethology nom +ethologist ethologist nom +ethologists ethologist nom +ethology ethology nom +ethos ethos nom +ethoses ethos nom +ethyl ethyl nom +ethylene ethylene nom +ethylenes ethylene nom +ethyls ethyl nom +ethyne ethyne nom +ethynes ethyne nom +etiolate etiolate ver +etiolated etiolate ver +etiolates etiolate ver +etiolating etiolate ver +etiologies etiology nom +etiologist etiologist nom +etiologists etiologist nom +etiology etiology nom +etiquette etiquette nom +etiquettes etiquette nom +etna etna nom +etnas etna nom +etude etude nom +etudes etude nom +etui etui nom +etuis etui nom +etymologies etymology nom +etymologist etymologist nom +etymologists etymologist nom +etymologize etymologize ver +etymologized etymologize ver +etymologizes etymologize ver +etymologizing etymologize ver +etymology etymology nom +etymon etymon nom +etymons etymon nom +eubacteria eubacterium nom +eubacterium eubacterium nom +eucalypt eucalypt nom +eucalypts eucalypt nom +eucalyptus eucalyptus nom +eucalyptuses eucalyptus nom +eucaryote eucaryote nom +eucaryotes eucaryote nom +euchre euchre nom +euchred euchre ver +euchres euchre nom +euchring euchre ver +eudaemon eudaemon nom +eudaemons eudaemon nom +eudemon eudemon nom +eudemonism eudemonism nom +eudemonisms eudemonism nom +eudemons eudemon nom +eudiometer eudiometer nom +eudiometers eudiometer nom +eugenicist eugenicist nom +eugenicists eugenicist nom +euglena euglena nom +euglenas euglena nom +euglenid euglenid nom +euglenids euglenid nom +euglenoid euglenoid nom +euglenoids euglenoid nom +eukaryote eukaryote nom +eukaryotes eukaryote nom +eulogies eulogy nom +eulogise eulogise ver +eulogised eulogise ver +eulogises eulogise ver +eulogising eulogise ver +eulogist eulogist nom +eulogists eulogist nom +eulogize eulogize ver +eulogized eulogize ver +eulogizer eulogizer nom +eulogizers eulogizer nom +eulogizes eulogize ver +eulogizing eulogize ver +eulogy eulogy nom +eunuch eunuch nom +eunuchs eunuch nom +euphemism euphemism nom +euphemisms euphemism nom +euphemize euphemize ver +euphemized euphemize ver +euphemizes euphemize ver +euphemizing euphemize ver +euphonies euphony nom +euphonium euphonium nom +euphoniums euphonium nom +euphony euphony nom +euphorbia euphorbium nom +euphorbium euphorbium nom +euphoria euphoria nom +euphoriant euphoriant nom +euphoriants euphoriant nom +euphorias euphoria nom +euphuism euphuism nom +euphuisms euphuism nom +europium europium nom +europiums europium nom +eurypterid eurypterid nom +eurypterids eurypterid nom +eutectic eutectic nom +eutectics eutectic nom +euthanasia euthanasia nom +euthanasias euthanasia nom +eutherian eutherian nom +eutherians eutherian nom +evacuate evacuate ver +evacuated evacuate ver +evacuates evacuate ver +evacuating evacuate ver +evacuation evacuation nom +evacuations evacuation nom +evacuee evacuee nom +evacuees evacuee nom +evade evade ver +evaded evade ver +evader evader nom +evaders evader nom +evades evade ver +evading evade ver +evaluate evaluate ver +evaluated evaluate ver +evaluates evaluate ver +evaluating evaluate ver +evaluation evaluation nom +evaluations evaluation nom +evaluator evaluator nom +evaluators evaluator nom +evanesce evanesce ver +evanesced evanesce ver +evanescence evanescence nom +evanescences evanescence nom +evanesces evanesce ver +evanescing evanesce ver +evangel evangel nom +evangelical evangelical nom +evangelicalism evangelicalism nom +evangelicalisms evangelicalism nom +evangelicals evangelical nom +evangelism evangelism nom +evangelisms evangelism nom +evangelist evangelist nom +evangelists evangelist nom +evangelize evangelize ver +evangelized evangelize ver +evangelizes evangelize ver +evangelizing evangelize ver +evangels evangel nom +evaporate evaporate ver +evaporated evaporate ver +evaporates evaporate ver +evaporating evaporate ver +evaporation evaporation nom +evaporations evaporation nom +evaporator evaporator nom +evaporators evaporator nom +evaporite evaporite nom +evaporites evaporite nom +evasion evasion nom +evasions evasion nom +evasiveness evasiveness nom +evasivenesses evasiveness nom +eve eve nom +even even sw +evened even ver +evener even adj +evenest even adj +evenfall evenfall nom +evenfalls evenfall nom +evening even ver +evenings evening nom +evenness evenness nom +evennesses evenness nom +evens even nom +evensong evensong nom +evensongs evensong nom +event event nom +eventfulness eventfulness nom +eventfulnesses eventfulness nom +eventide eventide nom +eventides eventide nom +events event nom +eventualities eventuality nom +eventuality eventuality nom +eventuate eventuate ver +eventuated eventuate ver +eventuates eventuate ver +eventuating eventuate ver +ever ever sw +everglade everglade nom +everglades everglade nom +evergreen evergreen nom +evergreens evergreen nom +everlasting everlasting nom +everlastingness everlastingness nom +everlastingnesses everlastingness nom +everlastings everlasting nom +eversion eversion nom +eversions eversion nom +every every sw +everybody everybody sw +everydayness everydayness nom +everydaynesses everydayness nom +everyman everyman nom +everymen everyman nom +everyone everyone sw +everything everything sw +everywhere everywhere sw +eves eve nom +evict evict ver +evicted evict ver +evicting evict ver +eviction eviction nom +evictions eviction nom +evicts evict ver +evidence evidence nom +evidenced evidence ver +evidences evidence nom +evidencing evidence ver +evil evil adj +evildoer evildoer nom +evildoers evildoer nom +evildoing evildoing nom +evildoings evildoing nom +eviler evil adj +evilest evil adj +evilness evilness nom +evilnesses evilness nom +evils evil nom +evince evince ver +evinced evince ver +evinces evince ver +evincing evince ver +eviscerate eviscerate ver +eviscerated eviscerate ver +eviscerates eviscerate ver +eviscerating eviscerate ver +evisceration evisceration nom +eviscerations evisceration nom +evocation evocation nom +evocations evocation nom +evoke evoke ver +evoked evoke ver +evokes evoke ver +evoking evoke ver +evolution evolution nom +evolutionist evolutionist nom +evolutionists evolutionist nom +evolutions evolution nom +evolve evolve ver +evolved evolve ver +evolves evolve ver +evolving evolve ver +ewe ewe nom +ewer ewer nom +ewers ewer nom +ewes ewe nom +ex ex sw +exacerbate exacerbate ver +exacerbated exacerbate ver +exacerbates exacerbate ver +exacerbating exacerbate ver +exacerbation exacerbation nom +exacerbations exacerbation nom +exact exact adj +exacta exacta nom +exactas exacta nom +exacted exact ver +exacter exact adj +exactest exact adj +exacting exact ver +exaction exaction nom +exactions exaction nom +exactitude exactitude nom +exactitudes exactitude nom +exactly exactly sw +exactness exactness nom +exactnesses exactness nom +exacts exact ver +exaggerate exaggerate ver +exaggerated exaggerate ver +exaggerates exaggerate ver +exaggerating exaggerate ver +exaggeration exaggeration nom +exaggerations exaggeration nom +exaggerator exaggerator nom +exaggerators exaggerator nom +exalt exalt ver +exaltation exaltation nom +exaltations exaltation nom +exalted exalt ver +exalting exalt ver +exalts exalt ver +exam exam nom +examen examen nom +examens examen nom +examination examination nom +examinations examination nom +examine examine ver +examined examine ver +examinee examinee nom +examinees examinee nom +examiner examiner nom +examiners examiner nom +examines examine ver +examining examine ver +example example sw +exampled example ver +examples example nom +exampling example ver +exams exam nom +exasperate exasperate ver +exasperated exasperate ver +exasperates exasperate ver +exasperating exasperate ver +exasperation exasperation nom +exasperations exasperation nom +excavate excavate ver +excavated excavate ver +excavates excavate ver +excavating excavate ver +excavation excavation nom +excavations excavation nom +excavator excavator nom +excavators excavator nom +exceed exceed ver +exceeded exceed ver +exceeding exceed ver +exceeds exceed ver +excel excel ver +excelled excel ver +excellence excellence nom +excellences excellence nom +excellencies excellency nom +excellency excellency nom +excelling excel ver +excels excel ver +excelsior excelsior nom +excelsiors excelsior nom +except except sw +excepted except ver +excepting except ver +exception exception nom +exceptions exception nom +excepts except ver +excerpt excerpt nom +excerpted excerpt ver +excerpting excerpt ver +excerpts excerpt nom +excess excess nom +excessed excess ver +excesses excess nom +excessing excess ver +excessiveness excessiveness nom +excessivenesses excessiveness nom +exchange exchange nom +exchangeabilities exchangeability nom +exchangeability exchangeability nom +exchanged exchange ver +exchanger exchanger nom +exchangers exchanger nom +exchanges exchange nom +exchanging exchange ver +exchequer exchequer nom +exchequers exchequer nom +excise excise nom +excised excise ver +exciseman exciseman nom +excisemen exciseman nom +excises excise nom +excising excise ver +excision excision nom +excisions excision nom +excitabilities excitability nom +excitability excitability nom +excitableness excitableness nom +excitablenesses excitableness nom +excitation excitation nom +excitations excitation nom +excite excite ver +excited excite ver +excitement excitement nom +excitements excitement nom +exciter exciter nom +exciters exciter nom +excites excite ver +exciting excite ver +exclaim exclaim ver +exclaimed exclaim ver +exclaiming exclaim ver +exclaims exclaim ver +exclamation exclamation nom +exclamations exclamation nom +exclude exclude ver +excluded exclude ver +excludes exclude ver +excluding exclude ver +exclusion exclusion nom +exclusions exclusion nom +exclusive exclusive nom +exclusiveness exclusiveness nom +exclusivenesses exclusiveness nom +exclusives exclusive nom +exclusivities exclusivity nom +exclusivity exclusivity nom +excogitate excogitate ver +excogitated excogitate ver +excogitates excogitate ver +excogitating excogitate ver +excogitation excogitation nom +excogitations excogitation nom +excommunicate excommunicate nom +excommunicated excommunicate ver +excommunicates excommunicate nom +excommunicating excommunicate ver +excommunication excommunication nom +excommunications excommunication nom +excoriate excoriate ver +excoriated excoriate ver +excoriates excoriate ver +excoriating excoriate ver +excoriation excoriation nom +excoriations excoriation nom +excrement excrement nom +excrements excrement nom +excrescence excrescence nom +excrescences excrescence nom +excrete excrete ver +excreted excrete ver +excretes excrete ver +excreting excrete ver +excretion excretion nom +excretions excretion nom +excruciate excruciate ver +excruciated excruciate ver +excruciates excruciate ver +excruciating excruciate ver +excruciation excruciation nom +excruciations excruciation nom +exculpate exculpate ver +exculpated exculpate ver +exculpates exculpate ver +exculpating exculpate ver +exculpation exculpation nom +exculpations exculpation nom +excursion excursion nom +excursioned excursion ver +excursioning excursion ver +excursionist excursionist nom +excursionists excursionist nom +excursions excursion nom +excursiveness excursiveness nom +excursivenesses excursiveness nom +excursus excursus nom +excursuses excursus nom +excuse excuse nom +excused excuse ver +excuses excuse nom +excusing excuse ver +exec exec nom +execrate execrate ver +execrated execrate ver +execrates execrate ver +execrating execrate ver +execration execration nom +execrations execration nom +execs exec nom +executant executant nom +executants executant nom +execute execute ver +executed execute ver +executes execute ver +executing execute ver +execution execution nom +executioner executioner nom +executioners executioner nom +executions execution nom +executive executive nom +executives executive nom +executor executor nom +executors executor nom +executrices executrix nom +executrix executrix nom +exegeses exegesis nom +exegesis exegesis nom +exemplar exemplar nom +exemplars exemplar nom +exemplification exemplification nom +exemplifications exemplification nom +exemplified exemplify ver +exemplifies exemplify ver +exemplify exemplify ver +exemplifying exemplify ver +exempt exempt nom +exempted exempt ver +exempting exempt ver +exemption exemption nom +exemptions exemption nom +exempts exempt nom +exercise exercise nom +exercised exercise ver +exerciser exerciser nom +exercisers exerciser nom +exercises exercise nom +exercising exercise ver +exert exert ver +exerted exert ver +exerting exert ver +exertion exertion nom +exertions exertion nom +exerts exert ver +exes ex nom +exfoliate exfoliate ver +exfoliated exfoliate ver +exfoliates exfoliate ver +exfoliating exfoliate ver +exhalation exhalation nom +exhalations exhalation nom +exhale exhale ver +exhaled exhale ver +exhales exhale ver +exhaling exhale ver +exhaust exhaust nom +exhausted exhaust ver +exhausting exhaust ver +exhaustion exhaustion nom +exhaustions exhaustion nom +exhaustiveness exhaustiveness nom +exhaustivenesses exhaustiveness nom +exhausts exhaust nom +exhibit exhibit nom +exhibited exhibit ver +exhibiting exhibit ver +exhibition exhibition nom +exhibitioner exhibitioner nom +exhibitioners exhibitioner nom +exhibitionism exhibitionism nom +exhibitionisms exhibitionism nom +exhibitionist exhibitionist nom +exhibitionists exhibitionist nom +exhibitions exhibition nom +exhibitor exhibitor nom +exhibitors exhibitor nom +exhibits exhibit nom +exhilarate exhilarate ver +exhilarated exhilarate ver +exhilarates exhilarate ver +exhilarating exhilarate ver +exhilaration exhilaration nom +exhilarations exhilaration nom +exhort exhort ver +exhortation exhortation nom +exhortations exhortation nom +exhorted exhort ver +exhorting exhort ver +exhorts exhort ver +exhumation exhumation nom +exhumations exhumation nom +exhume exhume ver +exhumed exhume ver +exhumes exhume ver +exhuming exhume ver +exigence exigence nom +exigences exigence nom +exigencies exigency nom +exigency exigency nom +exiguities exiguity nom +exiguity exiguity nom +exile exile nom +exiled exile ver +exiles exile nom +exiling exile ver +exist exist ver +existed exist ver +existence existence nom +existences existence nom +existent existent nom +existentialism existentialism nom +existentialisms existentialism nom +existentialist existentialist nom +existentialists existentialist nom +existents existent nom +existing exist ver +exists exist ver +exit exit nom +exited exit ver +exiting exit ver +exits exit nom +exobiologies exobiology nom +exobiology exobiology nom +exocarp exocarp nom +exocarps exocarp nom +exode exode nom +exodes exode nom +exodontia exodontia nom +exodontias exodontia nom +exodontist exodontist nom +exodontists exodontist nom +exodus exodus nom +exoduses exodus nom +exogamies exogamy nom +exogamy exogamy nom +exonerate exonerate ver +exonerated exonerate ver +exonerates exonerate ver +exonerating exonerate ver +exoneration exoneration nom +exonerations exoneration nom +exophthalmos exophthalmos nom +exophthalmoses exophthalmos nom +exorbitance exorbitance nom +exorbitances exorbitance nom +exorcise exorcise ver +exorcised exorcise ver +exorciser exorciser nom +exorcisers exorciser nom +exorcises exorcise ver +exorcising exorcise ver +exorcism exorcism nom +exorcisms exorcism nom +exorcist exorcist nom +exorcists exorcist nom +exorcize exorcize ver +exorcized exorcize ver +exorcizes exorcize ver +exorcizing exorcize ver +exoskeleton exoskeleton nom +exoskeletons exoskeleton nom +exosphere exosphere nom +exospheres exosphere nom +exotic exotic nom +exoticism exoticism nom +exoticisms exoticism nom +exoticness exoticness nom +exoticnesses exoticness nom +exotics exotic nom +exotism exotism nom +exotisms exotism nom +expand expand ver +expanded expand ver +expanding expand ver +expands expand ver +expanse expanse nom +expanses expanse nom +expansion expansion nom +expansionism expansionism nom +expansionisms expansionism nom +expansionist expansionist nom +expansionists expansionist nom +expansions expansion nom +expansiveness expansiveness nom +expansivenesses expansiveness nom +expansivities expansivity nom +expansivity expansivity nom +expatiate expatiate ver +expatiated expatiate ver +expatiates expatiate ver +expatiating expatiate ver +expatiation expatiation nom +expatiations expatiation nom +expatriate expatriate nom +expatriated expatriate ver +expatriates expatriate nom +expatriating expatriate ver +expatriation expatriation nom +expatriations expatriation nom +expect expect ver +expectancies expectancy nom +expectancy expectancy nom +expectant expectant nom +expectants expectant nom +expectation expectation nom +expectations expectation nom +expected expect ver +expectedness expectedness nom +expectednesses expectedness nom +expecting expect ver +expectorant expectorant nom +expectorants expectorant nom +expectorate expectorate ver +expectorated expectorate ver +expectorates expectorate ver +expectorating expectorate ver +expectoration expectoration nom +expectorations expectoration nom +expects expect ver +expedience expedience nom +expediences expedience nom +expediencies expediency nom +expediency expediency nom +expedient expedient nom +expedients expedient nom +expedite expedite ver +expedited expedite ver +expediter expediter nom +expediters expediter nom +expedites expedite ver +expediting expedite ver +expedition expedition nom +expeditions expedition nom +expeditiousness expeditiousness nom +expeditiousnesses expeditiousness nom +expeditor expeditor nom +expeditors expeditor nom +expel expel ver +expelled expel ver +expelling expel ver +expels expel ver +expend expend ver +expendable expendable nom +expendables expendable nom +expended expend ver +expender expender nom +expenders expender nom +expending expend ver +expenditure expenditure nom +expenditures expenditure nom +expends expend ver +expense expense nom +expensed expense ver +expenses expense nom +expensing expense ver +expensiveness expensiveness nom +expensivenesses expensiveness nom +experience experience nom +experienced experience ver +experiences experience nom +experiencing experience ver +experiment experiment nom +experimentalism experimentalism nom +experimentalisms experimentalism nom +experimentation experimentation nom +experimentations experimentation nom +experimented experiment ver +experimenter experimenter nom +experimenters experimenter nom +experimenting experiment ver +experiments experiment nom +expert expert nom +experted expert ver +experting expert ver +expertise expertise nom +expertised expertise ver +expertises expertise nom +expertising expertise ver +expertness expertness nom +expertnesses expertness nom +experts expert nom +expiate expiate ver +expiated expiate ver +expiates expiate ver +expiating expiate ver +expiation expiation nom +expiations expiation nom +expiration expiration nom +expirations expiration nom +expire expire ver +expired expire ver +expires expire ver +expiries expiry nom +expiring expire ver +expiry expiry nom +explain explain ver +explained explain ver +explaining explain ver +explains explain ver +explanation explanation nom +explanations explanation nom +expletive expletive nom +expletives expletive nom +explicate explicate ver +explicated explicate ver +explicates explicate ver +explicating explicate ver +explication explication nom +explications explication nom +explicitness explicitness nom +explicitnesses explicitness nom +explode explode ver +exploded explode ver +explodes explode ver +exploding explode ver +exploit exploit nom +exploitation exploitation nom +exploitations exploitation nom +exploited exploit ver +exploiter exploiter nom +exploiters exploiter nom +exploiting exploit ver +exploits exploit nom +exploration exploration nom +explorations exploration nom +explore explore ver +explored explore ver +explorer explorer nom +explorers explorer nom +explores explore ver +exploring explore ver +explosion explosion nom +explosions explosion nom +explosive explosive nom +explosiveness explosiveness nom +explosivenesses explosiveness nom +explosives explosive nom +expo expo nom +exponent exponent nom +exponential exponential nom +exponentials exponential nom +exponentiation exponentiation nom +exponentiations exponentiation nom +exponents exponent nom +export export nom +exportation exportation nom +exportations exportation nom +exported export ver +exporter exporter nom +exporters exporter nom +exporting export ver +exports export nom +expos expo nom +expose expose nom +exposed expose ver +exposes expose nom +exposing expose ver +exposit exposit ver +exposited exposit ver +expositing exposit ver +exposition exposition nom +expositions exposition nom +expositor expositor nom +expositors expositor nom +exposits exposit ver +expostulate expostulate ver +expostulated expostulate ver +expostulates expostulate ver +expostulating expostulate ver +expostulation expostulation nom +expostulations expostulation nom +exposure exposure nom +exposures exposure nom +expound expound ver +expounded expound ver +expounder expounder nom +expounders expounder nom +expounding expound ver +expounds expound ver +express express nom +expressage expressage nom +expressages expressage nom +expressed express ver +expresses express nom +expressing express ver +expression expression nom +expressionism expressionism nom +expressionisms expressionism nom +expressionist expressionist nom +expressionists expressionist nom +expressions expression nom +expressiveness expressiveness nom +expressivenesses expressiveness nom +expressway expressway nom +expressways expressway nom +expropriate expropriate ver +expropriated expropriate ver +expropriates expropriate ver +expropriating expropriate ver +expropriation expropriation nom +expropriations expropriation nom +expropriator expropriator nom +expropriators expropriator nom +expulsion expulsion nom +expulsions expulsion nom +expunction expunction nom +expunctions expunction nom +expunge expunge ver +expunged expunge ver +expunges expunge ver +expunging expunge ver +expurgate expurgate ver +expurgated expurgate ver +expurgates expurgate ver +expurgating expurgate ver +expurgation expurgation nom +expurgations expurgation nom +exquisite exquisite nom +exquisiteness exquisiteness nom +exquisitenesses exquisiteness nom +exquisites exquisite nom +extemporaneousness extemporaneousness nom +extemporaneousnesses extemporaneousness nom +extemporisation extemporisation nom +extemporisations extemporisation nom +extemporise extemporise ver +extemporised extemporise ver +extemporises extemporise ver +extemporising extemporise ver +extemporization extemporization nom +extemporizations extemporization nom +extemporize extemporize ver +extemporized extemporize ver +extemporizes extemporize ver +extemporizing extemporize ver +extend extend ver +extended extend ver +extender extender nom +extenders extender nom +extending extend ver +extends extend ver +extension extension nom +extensions extension nom +extensiveness extensiveness nom +extensivenesses extensiveness nom +extensor extensor nom +extensors extensor nom +extent extent nom +extents extent nom +extenuate extenuate ver +extenuated extenuate ver +extenuates extenuate ver +extenuating extenuate ver +extenuation extenuation nom +extenuations extenuation nom +exterior exterior nom +exteriorization exteriorization nom +exteriorizations exteriorization nom +exteriorize exteriorize ver +exteriorized exteriorize ver +exteriorizes exteriorize ver +exteriorizing exteriorize ver +exteriors exterior nom +exterminate exterminate ver +exterminated exterminate ver +exterminates exterminate ver +exterminating exterminate ver +extermination extermination nom +exterminations extermination nom +exterminator exterminator nom +exterminators exterminator nom +extern extern nom +external external nom +externalisation externalisation nom +externalisations externalisation nom +externalise externalise ver +externalised externalise ver +externalises externalise ver +externalising externalise ver +externalities externality nom +externality externality nom +externalization externalization nom +externalizations externalization nom +externalize externalize ver +externalized externalize ver +externalizes externalize ver +externalizing externalize ver +externals external nom +externs extern nom +extinct extinct ver +extincted extinct ver +extincting extinct ver +extinction extinction nom +extinctions extinction nom +extincts extinct ver +extinguish extinguish ver +extinguished extinguish ver +extinguisher extinguisher nom +extinguishers extinguisher nom +extinguishes extinguish ver +extinguishing extinguish ver +extirpate extirpate ver +extirpated extirpate ver +extirpates extirpate ver +extirpating extirpate ver +extirpation extirpation nom +extirpations extirpation nom +extol extol ver +extoll extoll ver +extolled extol ver +extoller extoller nom +extollers extoller nom +extolling extol ver +extolls extoll ver +extols extol ver +extort extort ver +extorted extort ver +extorting extort ver +extortion extortion nom +extortioner extortioner nom +extortioners extortioner nom +extortionist extortionist nom +extortionists extortionist nom +extortions extortion nom +extorts extort ver +extra extra nom +extract extract nom +extracted extract ver +extracting extract ver +extraction extraction nom +extractions extraction nom +extractor extractor nom +extractors extractor nom +extracts extract nom +extradite extradite ver +extradited extradite ver +extradites extradite ver +extraditing extradite ver +extradition extradition nom +extraditions extradition nom +extrados extrados nom +extradoses extrados nom +extraneousness extraneousness nom +extraneousnesses extraneousness nom +extraordinariness extraordinariness nom +extraordinarinesses extraordinariness nom +extrapolate extrapolate ver +extrapolated extrapolate ver +extrapolates extrapolate ver +extrapolating extrapolate ver +extrapolation extrapolation nom +extrapolations extrapolation nom +extras extra nom +extraterrestrial extraterrestrial nom +extraterrestrials extraterrestrial nom +extraterritorialities extraterritoriality nom +extraterritoriality extraterritoriality nom +extravagance extravagance nom +extravagances extravagance nom +extravaganza extravaganza nom +extravaganzas extravaganza nom +extravasate extravasate ver +extravasated extravasate ver +extravasates extravasate ver +extravasating extravasate ver +extravert extravert nom +extraverted extravert ver +extraverting extravert ver +extraverts extravert nom +extrema extremum nom +extreme extreme adj +extremeness extremeness nom +extremenesses extremeness nom +extremer extreme adj +extremes extreme nom +extremest extreme adj +extremism extremism nom +extremisms extremism nom +extremist extremist nom +extremists extremist nom +extremities extremity nom +extremity extremity nom +extremum extremum nom +extricate extricate ver +extricated extricate ver +extricates extricate ver +extricating extricate ver +extrication extrication nom +extrications extrication nom +extroversion extroversion nom +extroversions extroversion nom +extrovert extrovert nom +extroverted extrovert ver +extroverting extrovert ver +extroverts extrovert nom +extrude extrude ver +extruded extrude ver +extrudes extrude ver +extruding extrude ver +extrusion extrusion nom +extrusions extrusion nom +exuberance exuberance nom +exuberances exuberance nom +exudate exudate nom +exudates exudate nom +exudation exudation nom +exudations exudation nom +exude exude ver +exuded exude ver +exudes exude ver +exuding exude ver +exult exult ver +exultation exultation nom +exultations exultation nom +exulted exult ver +exulting exult ver +exults exult ver +exurb exurb nom +exurbanite exurbanite nom +exurbanites exurbanite nom +exurbia exurbia nom +exurbias exurbia nom +exurbs exurb nom +exuviate exuviate ver +exuviated exuviate ver +exuviates exuviate ver +exuviating exuviate ver +eyas eyas nom +eyases eyas nom +eye eye nom +eyeball eyeball nom +eyeballed eyeball ver +eyeballing eyeball ver +eyeballs eyeball nom +eyebrow eyebrow nom +eyebrows eyebrow nom +eyecup eyecup nom +eyecups eyecup nom +eyed eye ver +eyedness eyedness nom +eyednesses eyedness nom +eyedropper eyedropper nom +eyedroppers eyedropper nom +eyeful eyeful nom +eyefuls eyeful nom +eyeglass eyeglass nom +eyeglasses eyeglass nom +eyeing eye ver +eyelash eyelash nom +eyelashes eyelash nom +eyelet eyelet nom +eyeleted eyelet ver +eyeleting eyelet ver +eyelets eyelet nom +eyelid eyelid nom +eyelids eyelid nom +eyeliner eyeliner nom +eyeliners eyeliner nom +eyeopener eyeopener nom +eyeopeners eyeopener nom +eyepatch eyepatch nom +eyepatches eyepatch nom +eyepiece eyepiece nom +eyepieces eyepiece nom +eyes eye nom +eyeshade eyeshade nom +eyeshades eyeshade nom +eyeshadow eyeshadow nom +eyeshadows eyeshadow nom +eyeshot eyeshot nom +eyeshots eyeshot nom +eyesight eyesight nom +eyesights eyesight nom +eyesore eyesore nom +eyesores eyesore nom +eyespot eyespot nom +eyespots eyespot nom +eyestrain eyestrain nom +eyestrains eyestrain nom +eyeteeth eyetooth nom +eyetooth eyetooth nom +eyewash eyewash nom +eyewashes eyewash nom +eyewitness eyewitness nom +eyewitnesses eyewitness nom +eyra eyra nom +eyras eyra nom +eyrie eyrie nom +eyries eyrie nom +eyry eyry nom +f f sw +fa fa nom +fable fable nom +fabled fable ver +fables fable nom +fabling fable ver +fabric fabric nom +fabricate fabricate ver +fabricated fabricate ver +fabricates fabricate ver +fabricating fabricate ver +fabrication fabrication nom +fabrications fabrication nom +fabricator fabricator nom +fabricators fabricator nom +fabrics fabric nom +fabulist fabulist nom +fabulists fabulist nom +facade facade nom +facades facade nom +face face nom +facecloth facecloth nom +facecloths facecloth nom +faced face ver +facelift facelift nom +facelifted facelift ver +facelifting facelift ver +facelifts facelift nom +faceplate faceplate nom +faceplates faceplate nom +facer facer nom +facers facer nom +faces face nom +facet facet nom +faceted facet ver +faceting facet ver +facetiousness facetiousness nom +facetiousnesses facetiousness nom +facets facet nom +facia facia nom +facial facial nom +facials facial nom +facias facia nom +facilitate facilitate ver +facilitated facilitate ver +facilitates facilitate ver +facilitating facilitate ver +facilitation facilitation nom +facilitations facilitation nom +facilitator facilitator nom +facilitators facilitator nom +facilities facility nom +facility facility nom +facing face ver +facings facing nom +facsimile facsimile nom +facsimiled facsimile ver +facsimileing facsimile ver +facsimiles facsimile nom +fact fact nom +faction faction nom +factionalism factionalism nom +factionalisms factionalism nom +factions faction nom +factoid factoid nom +factoids factoid nom +factor factor nom +factored factor ver +factorial factorial nom +factorials factorial nom +factories factory nom +factoring factor ver +factorisation factorisation nom +factorisations factorisation nom +factorise factorise ver +factorised factorise ver +factorises factorise ver +factorising factorise ver +factorization factorization nom +factorizations factorization nom +factorize factorize ver +factorized factorize ver +factorizes factorize ver +factorizing factorize ver +factors factor nom +factory factory nom +factotum factotum nom +factotums factotum nom +facts fact nom +factualities factuality nom +factuality factuality nom +factualness factualness nom +factualnesses factualness nom +faculties faculty nom +faculty faculty nom +fad fad nom +faddier faddy adj +faddiest faddy adj +faddist faddist nom +faddists faddist nom +faddy faddy adj +fade fade nom +faded fade ver +fadeout fadeout nom +fadeouts fadeout nom +fades fade nom +fading fade ver +fadings fading nom +fads fad nom +faerie faerie nom +faeries faerie nom +faery faery nom +fag fag nom +fagged fag ver +fagging fag ver +faggot faggot nom +faggoting faggoting nom +faggotings faggoting nom +faggots faggot nom +fagot fagot nom +fagoting fagoting nom +fagotings fagoting nom +fagots fagot nom +fags fag nom +faience faience nom +faiences faience nom +fail fail nom +failed fail ver +failing fail ver +failings failing nom +faille faille nom +failles faille nom +fails fail nom +failure failure nom +failures failure nom +fain fain adj +fainer fain adj +fainest fain adj +faint faint adj +fainted faint ver +fainter faint adj +faintest faint adj +faintheartedness faintheartedness nom +faintheartednesses faintheartedness nom +fainting faint ver +faintness faintness nom +faintnesses faintness nom +faints faint nom +fair fair adj +faired fair ver +fairer fair adj +fairest fair adj +fairground fairground nom +fairgrounds fairground nom +fairies fairy nom +fairing fair ver +fairings fairing nom +fairlead fairlead nom +fairleads fairlead nom +fairness fairness nom +fairnesses fairness nom +fairs fair nom +fairway fairway nom +fairways fairway nom +fairy fairy nom +fairyland fairyland nom +fairylands fairyland nom +fairytale fairytale nom +fairytales fairytale nom +faith faith nom +faithful faithful nom +faithfulness faithfulness nom +faithfulnesses faithfulness nom +faithfuls faithful nom +faithlessness faithlessness nom +faithlessnesses faithlessness nom +faiths faith nom +fake fake nom +faked fake ver +fakeer fakeer nom +fakeers fakeer nom +faker faker nom +fakeries fakery nom +fakers faker nom +fakery fakery nom +fakes fake nom +faking fake ver +fakir fakir nom +fakirs fakir nom +falafel falafel nom +falafels falafel nom +falchion falchion nom +falchions falchion nom +falcon falcon nom +falconer falconer nom +falconers falconer nom +falconries falconry nom +falconry falconry nom +falcons falcon nom +falderal falderal nom +falderals falderal nom +fall fall nom +fallacies fallacy nom +fallaciousness fallaciousness nom +fallaciousnesses fallaciousness nom +fallacy fallacy nom +fallal fallal nom +fallals fallal nom +fallback fallback nom +fallbacks fallback nom +fallboard fallboard nom +fallboards fallboard nom +fallen fall ver +fallibilities fallibility nom +fallibility fallibility nom +fallibleness fallibleness nom +falliblenesses fallibleness nom +falling fall ver +fallings falling nom +falloff falloff nom +falloffs falloff nom +fallout fallout nom +fallouts fallout nom +fallow fallow adj +fallowed fallow ver +fallower fallow adj +fallowest fallow adj +fallowing fallow ver +fallows fallow nom +falls fall nom +false false adj +falsehood falsehood nom +falsehoods falsehood nom +falseness falseness nom +falsenesses falseness nom +falser false adj +falsest false adj +falsetto falsetto nom +falsettos falsetto nom +falsie falsie nom +falsies falsie nom +falsification falsification nom +falsifications falsification nom +falsified falsify ver +falsifier falsifier nom +falsifiers falsifier nom +falsifies falsify ver +falsify falsify ver +falsifying falsify ver +falsities falsity nom +falsity falsity nom +falter falter nom +faltered falter ver +faltering falter ver +falterings faltering nom +falters falter nom +fame fame nom +famed fame ver +fames fame nom +familiar familiar nom +familiarise familiarise ver +familiarised familiarise ver +familiarises familiarise ver +familiarising familiarise ver +familiarities familiarity nom +familiarity familiarity nom +familiarization familiarization nom +familiarizations familiarization nom +familiarize familiarize ver +familiarized familiarize ver +familiarizes familiarize ver +familiarizing familiarize ver +familiars familiar nom +families family nom +family family nom +famine famine nom +famines famine nom +faming fame ver +famish famish ver +famished famish ver +famishes famish ver +famishing famish ver +famishment famishment nom +famishments famishment nom +famulus famulus nom +famuluses famulus nom +fan fan nom +fanatic fanatic nom +fanaticism fanaticism nom +fanaticisms fanaticism nom +fanatics fanatic nom +fancied fancy ver +fancier fancy adj +fanciers fancier nom +fancies fancy nom +fanciest fancy adj +fancifulness fancifulness nom +fancifulnesses fancifulness nom +fanciness fanciness nom +fancinesses fanciness nom +fancy fancy adj +fancying fancy ver +fancywork fancywork nom +fancyworks fancywork nom +fandango fandango nom +fandangos fandango nom +fandom fandom nom +fandoms fandom nom +fanfare fanfare nom +fanfares fanfare nom +fang fang nom +fanged fang ver +fanging fang ver +fangs fang nom +fanion fanion nom +fanions fanion nom +fanlight fanlight nom +fanlights fanlight nom +fanned fan ver +fannies fanny nom +fanning fan ver +fanny fanny nom +fans fan nom +fantail fantail nom +fantails fantail nom +fantasia fantasia nom +fantasias fantasia nom +fantasied fantasy ver +fantasies fantasy nom +fantasist fantasist nom +fantasists fantasist nom +fantasize fantasize ver +fantasized fantasize ver +fantasizes fantasize ver +fantasizing fantasize ver +fantast fantast nom +fantastic fantastic nom +fantastics fantastic nom +fantasts fantast nom +fantasy fantasy nom +fantasying fantasy ver +fanwort fanwort nom +fanworts fanwort nom +fanzine fanzine nom +fanzines fanzine nom +faqir faqir nom +faqirs faqir nom +faquir faquir nom +faquirs faquir nom +far far sw +farad farad nom +farads farad nom +farandole farandole nom +farandoles farandole nom +farce farce nom +farced farce ver +farces farce nom +farcing farce ver +fardel fardel nom +fardels fardel nom +fare fare nom +fared fare ver +fares fare nom +farewell farewell nom +farewelled farewell ver +farewelling farewell ver +farewells farewell nom +farina farina nom +farinas farina nom +faring fare ver +farkleberries farkleberry nom +farkleberry farkleberry nom +farm farm nom +farmed farm ver +farmer farmer nom +farmerette farmerette nom +farmerettes farmerette nom +farmers farmer nom +farmhand farmhand nom +farmhands farmhand nom +farmhouse farmhouse nom +farmhouses farmhouse nom +farming farm ver +farmings farming nom +farmland farmland nom +farmlands farmland nom +farms farm nom +farmstead farmstead nom +farmsteads farmstead nom +farmyard farmyard nom +farmyards farmyard nom +farness farness nom +farnesses farness nom +faro faro nom +faros faro nom +farrago farrago nom +farragoes farrago nom +farrier farrier nom +farriers farrier nom +farrow farrow nom +farrowed farrow ver +farrowing farrow ver +farrows farrow nom +farsightedness farsightedness nom +farsightednesses farsightedness nom +fart fart nom +farted fart ver +farther far adj +farthest far adj +farthing farthing nom +farthingale farthingale nom +farthingales farthingale nom +farthings farthing nom +farting fart ver +farts fart nom +fas fa nom +fascia fascia nom +fascias fascia nom +fascicle fascicle nom +fascicles fascicle nom +fasciculation fasciculation nom +fasciculations fasciculation nom +fascicule fascicule nom +fascicules fascicule nom +fascinate fascinate ver +fascinated fascinate ver +fascinates fascinate ver +fascinating fascinate ver +fascination fascination nom +fascinations fascination nom +fascism fascism nom +fascisms fascism nom +fascist fascist nom +fascists fascist nom +fashion fashion nom +fashionable fashionable nom +fashionables fashionable nom +fashioned fashion ver +fashioner fashioner nom +fashioners fashioner nom +fashioning fashion ver +fashionmonger fashionmonger nom +fashionmongers fashionmonger nom +fashions fashion nom +fast fast adj +fastback fastback nom +fastbacks fastback nom +fastball fastball nom +fastballs fastball nom +fasted fast ver +fasten fasten ver +fastened fasten ver +fastener fastener nom +fasteners fastener nom +fastening fasten ver +fastenings fastening nom +fastens fasten ver +faster fast adj +fastest fast adj +fastidiousness fastidiousness nom +fastidiousnesses fastidiousness nom +fasting fast ver +fastings fasting nom +fastness fastness nom +fastnesses fastness nom +fasts fast nom +fat fat adj +fatalism fatalism nom +fatalisms fatalism nom +fatalist fatalist nom +fatalists fatalist nom +fatalities fatality nom +fatality fatality nom +fatback fatback nom +fatbacks fatback nom +fate fate nom +fated fate ver +fatefulness fatefulness nom +fatefulnesses fatefulness nom +fates fate nom +fathead fathead nom +fatheads fathead nom +father father nom +fathered father ver +fatherhood fatherhood nom +fatherhoods fatherhood nom +fathering father ver +fatherland fatherland nom +fatherlands fatherland nom +fatherliness fatherliness nom +fatherlinesses fatherliness nom +fathers father nom +fathom fathom nom +fathomed fathom ver +fathometer fathometer nom +fathometers fathometer nom +fathoming fathom ver +fathoms fathom nom +fatigue fatigue nom +fatigued fatigue ver +fatigues fatigue nom +fatiguing fatigue ver +fating fate ver +fatness fatness nom +fatnesses fatness nom +fats fat nom +fatso fatso nom +fatsoes fatso nom +fatsos fatso nom +fatted fat ver +fatten fatten ver +fattened fatten ver +fattening fatten ver +fattens fatten ver +fatter fat adj +fattest fat adj +fattier fatty adj +fatties fatty nom +fattiest fatty adj +fattiness fattiness nom +fattinesses fattiness nom +fatting fat ver +fatty fatty adj +fatuities fatuity nom +fatuity fatuity nom +fatuousness fatuousness nom +fatuousnesses fatuousness nom +fatwa fatwa nom +fatwas fatwa nom +faubourg faubourg nom +faubourgs faubourg nom +faucet faucet nom +faucets faucet nom +fauld fauld nom +faulds fauld nom +fault fault nom +faulted fault ver +faultfinder faultfinder nom +faultfinders faultfinder nom +faultfinding faultfinding nom +faultfindings faultfinding nom +faultier faulty adj +faultiest faulty adj +faultiness faultiness nom +faultinesses faultiness nom +faulting fault ver +faultlessness faultlessness nom +faultlessnesses faultlessness nom +faults fault nom +faulty faulty adj +faun faun nom +fauna fauna nom +faunas fauna nom +fauns faun nom +fauteuil fauteuil nom +fauteuils fauteuil nom +fauvism fauvism nom +fauvisms fauvism nom +favor favor nom +favorableness favorableness nom +favorablenesses favorableness nom +favored favor ver +favoring favor ver +favorite favorite nom +favorites favorite nom +favoritism favoritism nom +favoritisms favoritism nom +favors favor nom +favour favour nom +favoured favour ver +favouring favour ver +favourite favourite nom +favourites favourite nom +favours favour nom +fawn fawn nom +fawned fawn ver +fawner fawner nom +fawners fawner nom +fawning fawn ver +fawns fawn nom +fax fax nom +faxed fax ver +faxes fax nom +faxing fax ver +fay fay adj +fayer fay adj +fayest fay adj +fays fay nom +faze faze ver +fazed faze ver +fazes faze ver +fazing faze ver +fealties fealty nom +fealty fealty nom +fear fear nom +feared fear ver +fearful fearful adj +fearfuller fearful adj +fearfullest fearful adj +fearfulness fearfulness nom +fearfulnesses fearfulness nom +fearing fear ver +fearlessness fearlessness nom +fearlessnesses fearlessness nom +fears fear nom +feasibilities feasibility nom +feasibility feasibility nom +feasibleness feasibleness nom +feasiblenesses feasibleness nom +feast feast nom +feasted feast ver +feasting feast ver +feastings feasting nom +feasts feast nom +feat feat adj +feater feat adj +featest feat adj +feather feather nom +featherbed featherbed nom +featherbedded featherbed ver +featherbedding featherbed ver +featherbeddings featherbedding nom +featherbeds featherbed nom +feathered feather ver +featherier feathery adj +featheriest feathery adj +featheriness featheriness nom +featherinesses featheriness nom +feathering feather ver +featherings feathering nom +feathers feather nom +featherweight featherweight nom +featherweights featherweight nom +feathery feathery adj +feats feat nom +feature feature nom +featured feature ver +features feature nom +featuring feature ver +febricities febricity nom +febricity febricity nom +febrifuge febrifuge nom +febrifuges febrifuge nom +fecklessness fecklessness nom +fecklessnesses fecklessness nom +fecula fecula nom +feculae fecula nom +fecundate fecundate ver +fecundated fecundate ver +fecundates fecundate ver +fecundating fecundate ver +fecundation fecundation nom +fecundations fecundation nom +fecundities fecundity nom +fecundity fecundity nom +fed feed ver +federal federal nom +federalisation federalisation nom +federalisations federalisation nom +federalism federalism nom +federalisms federalism nom +federalist federalist nom +federalists federalist nom +federalization federalization nom +federalizations federalization nom +federalize federalize ver +federalized federalize ver +federalizes federalize ver +federalizing federalize ver +federals federal nom +federate federate ver +federated federate ver +federates federate ver +federating federate ver +federation federation nom +federations federation nom +fedora fedora nom +fedoras fedora nom +feds fed nom +fee fee nom +feeble feeble adj +feeblemindedness feeblemindedness nom +feeblemindednesses feeblemindedness nom +feebleness feebleness nom +feeblenesses feebleness nom +feebler feeble adj +feeblest feeble adj +feed fee ver +feedback feedback nom +feedbacks feedback nom +feedbag feedbag nom +feedbags feedbag nom +feeder feeder nom +feeders feeder nom +feeding feed ver +feedings feeding nom +feedlot feedlot nom +feedlots feedlot nom +feeds feed nom +feeing fee ver +feel feel nom +feeler feeler nom +feelers feeler nom +feeling feel ver +feels feel nom +fees fee nom +feet foot nom +feign feign ver +feigned feign ver +feigning feign ver +feignings feigning nom +feigns feign ver +feijoa feijoa nom +feijoas feijoa nom +feint feint nom +feinted feint ver +feinting feint ver +feints feint nom +feistier feisty adj +feistiest feisty adj +feisty feisty adj +felafel felafel nom +felafels felafel nom +feldspar feldspar nom +feldspars feldspar nom +felicitate felicitate ver +felicitated felicitate ver +felicitates felicitate ver +felicitating felicitate ver +felicitation felicitation nom +felicitations felicitation nom +felicities felicity nom +felicitousness felicitousness nom +felicitousnesses felicitousness nom +felicity felicity nom +felid felid nom +felids felid nom +feline feline nom +felines feline nom +fell fall ver +fella fella nom +fellah fellah nom +fellahs fellah nom +fellas fella nom +fellate fellate ver +fellated fellate ver +fellates fellate ver +fellating fellate ver +fellatio fellatio nom +fellation fellation nom +fellations fellation nom +fellatios fellatio nom +felled fell ver +feller fell adj +fellest fell adj +fellies felly nom +felling fell ver +felloe felloe nom +felloes felloe nom +fellow fellow nom +fellowed fellow ver +fellowing fellow ver +fellowman fellowman nom +fellowmen fellowman nom +fellows fellow nom +fellowship fellowship nom +fellowshipped fellowship ver +fellowshipping fellowship ver +fellowships fellowship nom +fells fell nom +felly felly nom +felon felon nom +felonies felony nom +felons felon nom +felony felony nom +felspar felspar nom +felspars felspar nom +felt feel ver +felted felt ver +felting felt ver +felts felt nom +felucca felucca nom +feluccas felucca nom +felwort felwort nom +felworts felwort nom +female female nom +femaleness femaleness nom +femalenesses femaleness nom +females female nom +feminine feminine nom +feminineness feminineness nom +femininenesses feminineness nom +feminines feminine nom +femininities femininity nom +femininity femininity nom +feminism feminism nom +feminisms feminism nom +feminist feminist nom +feminists feminist nom +femtosecond femtosecond nom +femtoseconds femtosecond nom +femur femur nom +femurs femur nom +fen fen nom +fence fence nom +fenced fence ver +fencer fencer nom +fencers fencer nom +fences fence nom +fencing fence ver +fencings fencing nom +fend fend ver +fended fend ver +fender fender nom +fenders fender nom +fending fend ver +fends fend ver +fenestella fenestella nom +fenestellas fenestella nom +fenestra fenestra nom +fenestras fenestra nom +fenestration fenestration nom +fenestrations fenestration nom +fennel fennel nom +fennels fennel nom +fens fen nom +fenugreek fenugreek nom +fenugreeks fenugreek nom +feoff feoff nom +feoffs feoff nom +fer f adj +feria feria nom +ferias feria nom +ferment ferment nom +fermentation fermentation nom +fermentations fermentation nom +fermented ferment ver +fermenting ferment ver +ferments ferment nom +fermi fermi nom +fermion fermion nom +fermions fermion nom +fermis fermi nom +fermium fermium nom +fermiums fermium nom +fern fern nom +fernier ferny adj +ferniest ferny adj +ferns fern nom +ferny ferny adj +ferociousness ferociousness nom +ferociousnesses ferociousness nom +ferocities ferocity nom +ferocity ferocity nom +ferret ferret nom +ferreted ferret ver +ferreting ferret ver +ferrets ferret nom +ferricyanide ferricyanide nom +ferricyanides ferricyanide nom +ferried ferry ver +ferries ferry nom +ferrimagnetism ferrimagnetism nom +ferrimagnetisms ferrimagnetism nom +ferrite ferrite nom +ferrites ferrite nom +ferritin ferritin nom +ferritins ferritin nom +ferroconcrete ferroconcrete nom +ferroconcretes ferroconcrete nom +ferrocyanide ferrocyanide nom +ferrocyanides ferrocyanide nom +ferromagnetism ferromagnetism nom +ferromagnetisms ferromagnetism nom +ferrule ferrule nom +ferruled ferrule ver +ferrules ferrule nom +ferruling ferrule ver +ferry ferry nom +ferryboat ferryboat nom +ferryboats ferryboat nom +ferrying ferry ver +ferryman ferryman nom +ferrymen ferryman nom +fertile fertile adj +fertiler fertile adj +fertilest fertile adj +fertilisation fertilisation nom +fertilisations fertilisation nom +fertilities fertility nom +fertility fertility nom +fertilization fertilization nom +fertilizations fertilization nom +fertilize fertilize ver +fertilized fertilize ver +fertilizer fertilizer nom +fertilizers fertilizer nom +fertilizes fertilize ver +fertilizing fertilize ver +ferule ferule nom +feruled ferule ver +ferules ferule nom +feruling ferule ver +fervencies fervency nom +fervency fervency nom +fervent fervent adj +ferventer fervent adj +ferventest fervent adj +fervid fervid adj +fervider fervid adj +fervidest fervid adj +fervidness fervidness nom +fervidnesses fervidness nom +fervor fervor nom +fervors fervor nom +fervour fervour nom +fervours fervour nom +fescue fescue nom +fescues fescue nom +fess fess nom +fesse fesse nom +fessed fess ver +fesses fess nom +fessing fess ver +fest f adj +fester fester nom +festered fester ver +festering fester ver +festers fester nom +festival festival nom +festivals festival nom +festiveness festiveness nom +festivenesses festiveness nom +festivities festivity nom +festivity festivity nom +festoon festoon nom +festooned festoon ver +festooning festoon ver +festoons festoon nom +feta feta nom +fetas feta nom +fetch fetch nom +fetched fetch ver +fetcher fetcher nom +fetchers fetcher nom +fetches fetch nom +fetching fetch ver +fete fete nom +feted fete ver +feterita feterita nom +feteritas feterita nom +fetes fete nom +fetich fetich nom +fetiches fetich nom +fetichism fetichism nom +fetichisms fetichism nom +feticide feticide nom +feticides feticide nom +fetid fetid adj +fetider fetid adj +fetidest fetid adj +fetidness fetidness nom +fetidnesses fetidness nom +feting fete ver +fetish fetish nom +fetishes fetish nom +fetishism fetishism nom +fetishisms fetishism nom +fetishist fetishist nom +fetishists fetishist nom +fetlock fetlock nom +fetlocks fetlock nom +fetoprotein fetoprotein nom +fetoproteins fetoprotein nom +fetor fetor nom +fetors fetor nom +fetter fetter nom +fetterbush fetterbush nom +fetterbushes fetterbush nom +fettered fetter ver +fettering fetter ver +fetters fetter nom +fettle fettle nom +fettled fettle ver +fettles fettle nom +fettling fettle ver +fettuccine fettuccine nom +fettuccines fettuccine nom +fetus fetus nom +fetuses fetus nom +feud feud nom +feudalism feudalism nom +feudalisms feudalism nom +feudatories feudatory nom +feudatory feudatory nom +feuded feud ver +feuding feud ver +feuds feud nom +fever fever nom +fevered fever ver +feverfew feverfew nom +feverfews feverfew nom +fevering fever ver +feverishness feverishness nom +feverishnesses feverishness nom +fevers fever nom +few few sw +fewer few adj +fewest few adj +fewness fewness nom +fewnesses fewness nom +fey fey adj +feyer fey adj +feyest fey adj +fez fez nom +fezzes fez nom +fiance fiance nom +fiancee fiancee nom +fiancees fiancee nom +fiances fiance nom +fiasco fiasco nom +fiascoes fiasco nom +fiat fiat nom +fiats fiat nom +fib fib nom +fibbed fib ver +fibber fibber nom +fibbers fibber nom +fibbing fib ver +fiber fiber nom +fiberboard fiberboard nom +fiberboards fiberboard nom +fiberfill fiberfill nom +fiberfills fiberfill nom +fiberglass fiberglass nom +fiberglassed fiberglass ver +fiberglasses fiberglass nom +fiberglassing fiberglass ver +fibers fiber nom +fiberscope fiberscope nom +fiberscopes fiberscope nom +fibre fibre nom +fibreboard fibreboard nom +fibreboards fibreboard nom +fibreglass fibreglass nom +fibreglasses fibreglass nom +fibres fibre nom +fibril fibril nom +fibrillate fibrillate ver +fibrillated fibrillate ver +fibrillates fibrillate ver +fibrillating fibrillate ver +fibrillation fibrillation nom +fibrillations fibrillation nom +fibrils fibril nom +fibrin fibrin nom +fibrinogen fibrinogen nom +fibrinogens fibrinogen nom +fibrinolyses fibrinolysis nom +fibrinolysin fibrinolysin nom +fibrinolysins fibrinolysin nom +fibrinolysis fibrinolysis nom +fibrins fibrin nom +fibroblast fibroblast nom +fibroblasts fibroblast nom +fibrocartilage fibrocartilage nom +fibrocartilages fibrocartilage nom +fibroid fibroid nom +fibroids fibroid nom +fibroses fibrosis nom +fibrosis fibrosis nom +fibrositis fibrositis nom +fibrositises fibrositis nom +fibs fib nom +fibula fibula nom +fibulae fibula nom +fiche fiche nom +fiches fiche nom +fichu fichu nom +fichus fichu nom +fickle fickle adj +fickleness fickleness nom +ficklenesses fickleness nom +fickler fickle adj +ficklest fickle adj +fiction fiction nom +fictionalization fictionalization nom +fictionalizations fictionalization nom +fictionalize fictionalize ver +fictionalized fictionalize ver +fictionalizes fictionalize ver +fictionalizing fictionalize ver +fictions fiction nom +ficus ficus nom +fiddle fiddle nom +fiddled fiddle ver +fiddlehead fiddlehead nom +fiddleheads fiddlehead nom +fiddler fiddler nom +fiddlers fiddler nom +fiddles fiddle nom +fiddlestick fiddlestick nom +fiddlesticks fiddlestick nom +fiddling fiddle ver +fidelities fidelity nom +fidelity fidelity nom +fidget fidget nom +fidgeted fidget ver +fidgetiness fidgetiness nom +fidgetinesses fidgetiness nom +fidgeting fidget ver +fidgets fidget nom +fiduciaries fiduciary nom +fiduciary fiduciary nom +fief fief nom +fiefdom fiefdom nom +fiefdoms fiefdom nom +fiefs fief nom +field field nom +fielded field ver +fielder fielder nom +fielders fielder nom +fieldfare fieldfare nom +fieldfares fieldfare nom +fielding field ver +fieldings fielding nom +fieldmice fieldmouse nom +fieldmouse fieldmouse nom +fields field nom +fieldsman fieldsman nom +fieldsmen fieldsman nom +fieldstone fieldstone nom +fieldstones fieldstone nom +fieldwork fieldwork nom +fieldworker fieldworker nom +fieldworkers fieldworker nom +fieldworks fieldwork nom +fiend fiend nom +fiends fiend nom +fierce fierce adj +fierceness fierceness nom +fiercenesses fierceness nom +fiercer fierce adj +fiercest fierce adj +fierier fiery adj +fieriest fiery adj +fieriness fieriness nom +fierinesses fieriness nom +fiery fiery adj +fiesta fiesta nom +fiestas fiesta nom +fife fife nom +fifed fife ver +fifer fifer nom +fifers fifer nom +fifes fife nom +fifing fife ver +fifteen fifteen nom +fifteens fifteen nom +fifteenth fifteenth nom +fifteenths fifteenth nom +fifth fifth sw +fifths fifth nom +fifties fifty nom +fiftieth fiftieth nom +fiftieths fiftieth nom +fifty fifty nom +fig fig nom +figeater figeater nom +figeaters figeater nom +fight fight nom +fighter fighter nom +fighters fighter nom +fighting fight ver +fightings fighting nom +fights fight nom +figment figment nom +figments figment nom +figs fig nom +figuration figuration nom +figurations figuration nom +figure figure nom +figured figure ver +figurehead figurehead nom +figureheads figurehead nom +figurer figurer nom +figurers figurer nom +figures figure nom +figurine figurine nom +figurines figurine nom +figuring figure ver +figwort figwort nom +figworts figwort nom +fila filum nom +filagree filagree nom +filagrees filagree nom +filament filament nom +filaments filament nom +filaree filaree nom +filarees filaree nom +filaria filaria nom +filariae filaria nom +filariases filariasis nom +filariasis filariasis nom +filature filature nom +filatures filature nom +filbert filbert nom +filberts filbert nom +filch filch ver +filched filch ver +filches filch ver +filching filch ver +file file nom +filed file ver +filefish filefish nom +filer filer nom +filers filer nom +files file nom +filet filet nom +fileted filet ver +fileting filet ver +filets filet nom +filiation filiation nom +filiations filiation nom +filibuster filibuster nom +filibustered filibuster ver +filibusterer filibusterer nom +filibusterers filibusterer nom +filibustering filibuster ver +filibusters filibuster nom +filigree filigree nom +filigreed filigree ver +filigreeing filigree ver +filigrees filigree nom +filing file ver +filings filing nom +fill fill nom +fille fille nom +filled fill ver +filler filler nom +fillers filler nom +filles fille nom +fillet fillet nom +filleted fillet ver +filleting fillet ver +fillets fillet nom +fillies filly nom +filling fill ver +fillip fillip nom +filliped fillip ver +filliping fillip ver +fillips fillip nom +fills fill nom +filly filly nom +film film nom +filmed film ver +filmier filmy adj +filmiest filmy adj +filminess filminess nom +filminesses filminess nom +filming film ver +filmmaker filmmaker nom +filmmakers filmmaker nom +films film nom +filmstrip filmstrip nom +filmstrips filmstrip nom +filmy filmy adj +fils fils nom +filses fils nom +filter filter nom +filtered filter ver +filterer filterer nom +filterers filterer nom +filtering filter ver +filters filter nom +filth filth nom +filthied filthy ver +filthier filthy adj +filthies filthy ver +filthiest filthy adj +filthiness filthiness nom +filthinesses filthiness nom +filths filth nom +filthy filthy adj +filthying filthy ver +filtrate filtrate nom +filtrated filtrate ver +filtrates filtrate nom +filtrating filtrate ver +filtration filtration nom +filtrations filtration nom +filum filum nom +fin fin nom +finagle finagle ver +finagled finagle ver +finagler finagler nom +finaglers finagler nom +finagles finagle ver +finagling finagle ver +final final nom +finale finale nom +finales finale nom +finalist finalist nom +finalists finalist nom +finalities finality nom +finality finality nom +finalization finalization nom +finalizations finalization nom +finalize finalize ver +finalized finalize ver +finalizes finalize ver +finalizing finalize ver +finals final nom +finance finance nom +financed finance ver +finances finance nom +financier financier nom +financiered financier ver +financiering financier ver +financiers financier nom +financing finance ver +financings financing nom +finback finback nom +finbacks finback nom +finch finch nom +finches finch nom +find find nom +finder finder nom +finders finder nom +finding find ver +findings finding nom +finds find nom +fine fine adj +fined fine ver +fineness fineness nom +finenesses fineness nom +finer fine adj +fineries finery nom +finery finery nom +fines fine nom +finesse finesse nom +finessed finesse ver +finesses finesse nom +finessing finesse ver +finest fine adj +finger finger nom +fingerboard fingerboard nom +fingerboards fingerboard nom +fingerbreadth fingerbreadth nom +fingerbreadths fingerbreadth nom +fingered finger ver +fingering finger ver +fingerings fingering nom +fingerling fingerling nom +fingermark fingermark nom +fingermarks fingermark nom +fingernail fingernail nom +fingernails fingernail nom +fingerpaint fingerpaint ver +fingerpainted fingerpaint ver +fingerpainting fingerpaint ver +fingerpaints fingerpaint ver +fingerpost fingerpost nom +fingerposts fingerpost nom +fingerprint fingerprint nom +fingerprinted fingerprint ver +fingerprinting fingerprint ver +fingerprintings fingerprinting nom +fingerprints fingerprint nom +fingers finger nom +fingerspelling fingerspelling nom +fingerspellings fingerspelling nom +fingerstall fingerstall nom +fingerstalls fingerstall nom +fingertip fingertip nom +fingertips fingertip nom +finial finial nom +finials finial nom +finickier finicky adj +finickiest finicky adj +finickiness finickiness nom +finickinesses finickiness nom +finicky finicky adj +fining fine ver +finings fining nom +finis finis nom +finises finis nom +finish finish nom +finished finish ver +finisher finisher nom +finishers finisher nom +finishes finish nom +finishing finish ver +finishings finishing nom +finite finite nom +finiteness finiteness nom +finitenesses finiteness nom +finites finite nom +finitude finitude nom +finitudes finitude nom +fink fink nom +finked fink ver +finking fink ver +finks fink nom +finnan finnan nom +finnans finnan nom +finned fin ver +finnier finny adj +finniest finny adj +finning fin ver +finny finny adj +finocchio finocchio nom +finocchios finocchio nom +fins fin nom +fiord fiord nom +fiords fiord nom +fipple fipple nom +fipples fipple nom +fir fir nom +fire fire nom +firearm firearm nom +firearms firearm nom +fireball fireball nom +fireballs fireball nom +firebase firebase nom +firebases firebase nom +firebird firebird nom +firebirds firebird nom +fireboat fireboat nom +fireboats fireboat nom +firebomb firebomb nom +firebombed firebomb ver +firebombing firebomb ver +firebombs firebomb nom +firebox firebox nom +fireboxes firebox nom +firebrand firebrand nom +firebrands firebrand nom +firebrat firebrat nom +firebrats firebrat nom +firebreak firebreak nom +firebreaks firebreak nom +firebrick firebrick nom +firebricks firebrick nom +firebug firebug nom +firebugs firebug nom +fireclay fireclay nom +fireclays fireclay nom +firecracker firecracker nom +firecrackers firecracker nom +fired fire ver +firedamp firedamp nom +firedamps firedamp nom +firedog firedog nom +firedogs firedog nom +firedrake firedrake nom +firedrakes firedrake nom +firefight firefight ver +firefighter firefighter nom +firefighters firefighter nom +firefighting firefight ver +firefightings firefighting nom +firefights firefight ver +fireflies firefly nom +firefly firefly nom +firefought firefight ver +fireguard fireguard nom +fireguards fireguard nom +firehouse firehouse nom +firehouses firehouse nom +firelight firelight nom +firelighter firelighter nom +firelighters firelighter nom +firelights firelight nom +firelock firelock nom +firelocks firelock nom +fireman fireman nom +firemen fireman nom +fireplace fireplace nom +fireplaces fireplace nom +fireplug fireplug nom +fireplugs fireplug nom +firepower firepower nom +firepowers firepower nom +fireproof fireproof ver +fireproofed fireproof ver +fireproofing fireproof ver +fireproofs fireproof ver +firer firer nom +fireroom fireroom nom +firerooms fireroom nom +firers firer nom +fires fire nom +fireside fireside nom +firesides fireside nom +firestone firestone nom +firestones firestone nom +firestorm firestorm nom +firestorms firestorm nom +firethorn firethorn nom +firethorns firethorn nom +firetrap firetrap nom +firetraps firetrap nom +firetruck firetruck nom +firetrucks firetruck nom +firewall firewall nom +firewalls firewall nom +firewater firewater nom +firewaters firewater nom +fireweed fireweed nom +fireweeds fireweed nom +firewood firewood nom +firewoods firewood nom +firework firework nom +fireworks firework nom +firing fire ver +firings firing nom +firkin firkin nom +firkins firkin nom +firm firm adj +firmament firmament nom +firmaments firmament nom +firmed firm ver +firmer firm adj +firmest firm adj +firming firm ver +firmness firmness nom +firmnesses firmness nom +firms firm nom +firmware firmware nom +firmwares firmware nom +firs fir nom +first first sw +firstborn firstborn nom +firsts first nom +firth firth nom +firths firth nom +fisc fisc nom +fiscal fiscal nom +fiscals fiscal nom +fiscs fisc nom +fish fish nom +fishbone fishbone nom +fishbones fishbone nom +fishbowl fishbowl nom +fishbowls fishbowl nom +fishcake fishcake nom +fishcakes fishcake nom +fished fish ver +fisher fisher nom +fisheries fishery nom +fisherman fisherman nom +fishermen fisherman nom +fishers fisher nom +fishery fishery nom +fishes fish ver +fishgig fishgig nom +fishgigs fishgig nom +fishhook fishhook nom +fishhooks fishhook nom +fishier fishy adj +fishiest fishy adj +fishiness fishiness nom +fishinesses fishiness nom +fishing fish ver +fishings fishing nom +fishmonger fishmonger nom +fishmongers fishmonger nom +fishnet fishnet nom +fishnets fishnet nom +fishplate fishplate nom +fishplates fishplate nom +fishpond fishpond nom +fishponds fishpond nom +fishtail fishtail nom +fishtailed fishtail ver +fishtailing fishtail ver +fishtails fishtail nom +fishwife fishwife nom +fishwives fishwife nom +fishworm fishworm nom +fishworms fishworm nom +fishy fishy adj +fission fission nom +fissionable fissionable nom +fissionables fissionable nom +fissioned fission ver +fissioning fission ver +fissions fission nom +fissiped fissiped nom +fissipeds fissiped nom +fissure fissure nom +fissured fissure ver +fissures fissure nom +fissuring fissure ver +fist fist nom +fisted fist ver +fistfight fistfight nom +fistfights fistfight nom +fistful fistful nom +fistfuls fistful nom +fisting fist ver +fists fist nom +fistula fistula nom +fistulas fistula nom +fit fit adj +fitch fitch nom +fitches fitch nom +fitfulness fitfulness nom +fitfulnesses fitfulness nom +fitlier fitly adj +fitliest fitly adj +fitly fitly adj +fitment fitment nom +fitments fitment nom +fitness fitness nom +fitnesses fitness nom +fits fit nom +fitted fit ver +fitter fit adj +fitters fitter nom +fittest fit adj +fitting fit ver +fittingness fittingness nom +fittingnesses fittingness nom +fittings fitting nom +five five sw +fivepence fivepence nom +fivepences fivepence nom +fiver fiver nom +fivers fiver nom +fives fives nom +fix fix nom +fixate fixate ver +fixated fixate ver +fixates fixate ver +fixating fixate ver +fixation fixation nom +fixations fixation nom +fixative fixative nom +fixatives fixative nom +fixed fix ver +fixedness fixedness nom +fixednesses fixedness nom +fixer fixer nom +fixers fixer nom +fixes fix nom +fixing fix ver +fixings fixing nom +fixities fixity nom +fixity fixity nom +fixture fixture nom +fixtures fixture nom +fizgig fizgig nom +fizgigs fizgig nom +fizz fizz nom +fizzed fizz ver +fizzes fizz nom +fizzier fizzy adj +fizziest fizzy adj +fizzing fizz ver +fizzle fizzle nom +fizzled fizzle ver +fizzles fizzle nom +fizzling fizzle ver +fizzy fizzy adj +fjord fjord nom +fjords fjord nom +flab flab nom +flabbergast flabbergast ver +flabbergasted flabbergast ver +flabbergasting flabbergast ver +flabbergasts flabbergast ver +flabbier flabby adj +flabbiest flabby adj +flabbiness flabbiness nom +flabbinesses flabbiness nom +flabby flabby adj +flabs flab nom +flaccid flaccid adj +flaccider flaccid adj +flaccidest flaccid adj +flaccidities flaccidity nom +flaccidity flaccidity nom +flack flack nom +flacked flack ver +flacking flack ver +flacks flack nom +flag flag nom +flagella flagellum nom +flagellant flagellant nom +flagellants flagellant nom +flagellate flagellate nom +flagellated flagellate ver +flagellates flagellate nom +flagellating flagellate ver +flagellation flagellation nom +flagellations flagellation nom +flagellum flagellum nom +flageolet flageolet nom +flageolets flageolet nom +flagfish flagfish nom +flagged flag ver +flagging flag ver +flaggings flagging nom +flagman flagman nom +flagmen flagman nom +flagon flagon nom +flagons flagon nom +flagpole flagpole nom +flagpoles flagpole nom +flagrance flagrance nom +flagrances flagrance nom +flagrancies flagrancy nom +flagrancy flagrancy nom +flags flag nom +flagship flagship nom +flagships flagship nom +flagstaff flagstaff nom +flagstaffs flagstaff nom +flagstone flagstone nom +flagstones flagstone nom +flail flail nom +flailed flail ver +flailing flail ver +flails flail nom +flair flair nom +flairs flair nom +flak flak nom +flake flake nom +flaked flake ver +flakes flake nom +flakey flakey adj +flakier flakey adj +flakiest flakey adj +flakiness flakiness nom +flakinesses flakiness nom +flaking flake ver +flaky flaky adj +flambe flambe nom +flambeau flambeau nom +flambeaus flambeau nom +flambeed flambe ver +flambeing flambe ver +flambes flambe nom +flamboyance flamboyance nom +flamboyances flamboyance nom +flamboyancies flamboyancy nom +flamboyancy flamboyancy nom +flamboyant flamboyant nom +flamboyants flamboyant nom +flame flame nom +flamed flame ver +flamefish flamefish nom +flamen flamen nom +flamenco flamenco nom +flamencos flamenco nom +flamens flamen nom +flameproof flameproof ver +flameproofed flameproof ver +flameproofing flameproof ver +flameproofs flameproof ver +flames flame nom +flamethrower flamethrower nom +flamethrowers flamethrower nom +flaming flame ver +flamingo flamingo nom +flamingos flamingo nom +flamings flaming nom +flammabilities flammability nom +flammability flammability nom +flan flan nom +flange flange nom +flanged flange ver +flanges flange nom +flanging flange ver +flank flank nom +flanked flank ver +flanker flanker nom +flankers flanker nom +flanking flank ver +flanks flank nom +flannel flannel nom +flanneled flannel ver +flannelet flannelet nom +flannelets flannelet nom +flannelette flannelette nom +flannelettes flannelette nom +flanneling flannel ver +flannels flannel nom +flans flan nom +flap flap nom +flapjack flapjack nom +flapjacks flapjack nom +flapped flap ver +flapper flapper nom +flappers flapper nom +flapping flap ver +flaps flap nom +flare flare nom +flared flare ver +flares flare nom +flareup flareup nom +flareups flareup nom +flaring flare ver +flash flash adj +flashback flashback nom +flashbacks flashback nom +flashbulb flashbulb nom +flashbulbs flashbulb nom +flashcard flashcard nom +flashcards flashcard nom +flashcube flashcube nom +flashcubes flashcube nom +flashed flash ver +flasher flash adj +flashers flasher nom +flashes flash nom +flashest flash adj +flashgun flashgun nom +flashguns flashgun nom +flashier flashy adj +flashiest flashy adj +flashiness flashiness nom +flashinesses flashiness nom +flashing flash ver +flashings flashing nom +flashlight flashlight nom +flashlights flashlight nom +flashpoint flashpoint nom +flashpoints flashpoint nom +flashy flashy adj +flask flask nom +flasks flask nom +flat flat adj +flatbed flatbed nom +flatbeds flatbed nom +flatboat flatboat nom +flatboats flatboat nom +flatbread flatbread nom +flatbreads flatbread nom +flatcar flatcar nom +flatcars flatcar nom +flatfeet flatfoot nom +flatfish flatfish nom +flatfoot flatfoot nom +flatfoots flatfoot nom +flathead flathead nom +flatheads flathead nom +flatiron flatiron nom +flatirons flatiron nom +flatland flatland nom +flatlands flatland nom +flatlet flatlet nom +flatlets flatlet nom +flatmate flatmate nom +flatmates flatmate nom +flatness flatness nom +flatnesses flatness nom +flats flat nom +flatted flat ver +flatten flatten ver +flattened flatten ver +flattening flatten ver +flattens flatten ver +flatter flat adj +flattered flatter ver +flatterer flatterer nom +flatterers flatterer nom +flatteries flattery nom +flattering flatter ver +flatters flatter ver +flattery flattery nom +flattest flat adj +flatting flat ver +flattop flattop nom +flattops flattop nom +flatulence flatulence nom +flatulences flatulence nom +flatulencies flatulency nom +flatulency flatulency nom +flatus flatus nom +flatuses flatus nom +flatware flatware nom +flatwares flatware nom +flatwork flatwork nom +flatworks flatwork nom +flatworm flatworm nom +flatworms flatworm nom +flaunt flaunt nom +flaunted flaunt ver +flauntier flaunty adj +flauntiest flaunty adj +flaunting flaunt ver +flaunts flaunt nom +flaunty flaunty adj +flautist flautist nom +flautists flautist nom +flavor flavor nom +flavored flavor ver +flavorer flavorer nom +flavorers flavorer nom +flavoring flavor ver +flavorings flavoring nom +flavors flavor nom +flavour flavour nom +flavoured flavour ver +flavouring flavour ver +flavourings flavouring nom +flavours flavour nom +flaw flaw nom +flawed flaw ver +flawing flaw ver +flawlessness flawlessness nom +flawlessnesses flawlessness nom +flaws flaw nom +flax flax nom +flaxes flax nom +flaxseed flaxseed nom +flaxseeds flaxseed nom +flay flay ver +flayed flay ver +flaying flay ver +flays flay ver +flea flea nom +fleabag fleabag nom +fleabags fleabag nom +fleabane fleabane nom +fleabanes fleabane nom +fleapit fleapit nom +fleapits fleapit nom +fleas flea nom +fleawort fleawort nom +fleaworts fleawort nom +fleck fleck nom +flecked fleck ver +flecking fleck ver +flecks fleck nom +flection flection nom +flections flection nom +fled flee ver +fledge fledge ver +fledged fledge ver +fledgeling fledgeling nom +fledges fledge ver +fledging fledge ver +fledgling fledgling nom +fledglings fledgling nom +flee flee ver +fleece fleece nom +fleeced fleece ver +fleecer fleecer nom +fleecers fleecer nom +fleeces fleece nom +fleecier fleecy adj +fleeciest fleecy adj +fleeciness fleeciness nom +fleecinesses fleeciness nom +fleecing fleece ver +fleecy fleecy adj +fleeing flee ver +flees flee ver +fleet fleet adj +fleeted fleet ver +fleeter fleet adj +fleetest fleet adj +fleeting fleet ver +fleetingness fleetingness nom +fleetingnesses fleetingness nom +fleetness fleetness nom +fleetnesses fleetness nom +fleets fleet nom +flesh flesh nom +fleshed flesh ver +fleshes flesh nom +fleshier fleshy adj +fleshiest fleshy adj +fleshiness fleshiness nom +fleshinesses fleshiness nom +fleshing flesh ver +fleshlier fleshly adj +fleshliest fleshly adj +fleshly fleshly adj +fleshpot fleshpot nom +fleshpots fleshpot nom +fleshy fleshy adj +flew fly ver +flews flew nom +flex flex nom +flexed flex ver +flexes flex nom +flexibilities flexibility nom +flexibility flexibility nom +flexibleness flexibleness nom +flexiblenesses flexibleness nom +flexing flex ver +flexion flexion nom +flexions flexion nom +flexitime flexitime nom +flexitimes flexitime nom +flexor flexor nom +flexors flexor nom +flextime flextime nom +flextimes flextime nom +flexure flexure nom +flexures flexure nom +flibbertigibbet flibbertigibbet nom +flibbertigibbets flibbertigibbet nom +flick flick nom +flicked flick ver +flicker flicker nom +flickered flicker ver +flickering flicker ver +flickers flicker nom +flicking flick ver +flicks flick nom +flied fly ver +flier fly adj +fliers flier nom +flies fly nom +fliest fly adj +flight flight nom +flighted flight ver +flightier flighty adj +flightiest flighty adj +flightiness flightiness nom +flightinesses flightiness nom +flighting flight ver +flights flight nom +flighty flighty adj +flimflam flimflam nom +flimflammed flimflam ver +flimflamming flimflam ver +flimflams flimflam nom +flimsier flimsy adj +flimsies flimsy nom +flimsiest flimsy adj +flimsiness flimsiness nom +flimsinesses flimsiness nom +flimsy flimsy adj +flinch flinch nom +flinched flinch ver +flinches flinch nom +flinching flinch ver +fling fling nom +flinging fling ver +flings fling nom +flint flint nom +flinted flint ver +flintier flinty adj +flintiest flinty adj +flinting flint ver +flintlock flintlock nom +flintlocks flintlock nom +flints flint nom +flinty flinty adj +flip flip adj +flippancies flippancy nom +flippancy flippancy nom +flipped flip ver +flipper flip adj +flippers flipper nom +flippest flip adj +flipping flip ver +flips flip nom +flirt flirt nom +flirtation flirtation nom +flirtations flirtation nom +flirtatiousness flirtatiousness nom +flirtatiousnesses flirtatiousness nom +flirted flirt ver +flirting flirt ver +flirtings flirting nom +flirts flirt nom +flit flit nom +flitch flitch nom +flitches flitch nom +flits flit nom +flitted flit ver +flitter flitter ver +flittered flitter ver +flittering flitter ver +flitters flitter ver +flitting flit ver +float float nom +floatation floatation nom +floatations floatation nom +floated float ver +floater floater nom +floaters floater nom +floatier floaty adj +floatiest floaty adj +floating float ver +floatplane floatplane nom +floatplanes floatplane nom +floats float nom +floaty floaty adj +floc floc nom +flocculate flocculate ver +flocculated flocculate ver +flocculates flocculate ver +flocculating flocculate ver +flocculation flocculation nom +flocculations flocculation nom +floccule floccule nom +floccules floccule nom +flock flock nom +flocked flock ver +flocking flock ver +flockings flocking nom +flocks flock nom +flocs floc nom +floe floe nom +floes floe nom +flog flog ver +flogged flog ver +flogger flogger nom +floggers flogger nom +flogging flog ver +floggings flogging nom +flogs flog ver +flood flood nom +flooded flood ver +floodgate floodgate nom +floodgates floodgate nom +flooding flood ver +floodings flooding nom +floodlight floodlight nom +floodlighted floodlight ver +floodlighting floodlight ver +floodlights floodlight nom +floodplain floodplain nom +floodplains floodplain nom +floods flood nom +floodwater floodwater nom +floodwaters floodwater nom +floor floor nom +floorboard floorboard nom +floorboards floorboard nom +floored floor ver +flooring floor ver +floorings flooring nom +floors floor nom +floorshow floorshow nom +floorshows floorshow nom +floorwalker floorwalker nom +floorwalkers floorwalker nom +floozie floozie nom +floozies floozie nom +floozy floozy nom +flop flop nom +flophouse flophouse nom +flophouses flophouse nom +flopped flop ver +floppier floppy adj +floppies floppy nom +floppiest floppy adj +floppiness floppiness nom +floppinesses floppiness nom +flopping flop ver +floppy floppy adj +flops flop nom +flora flora nom +floral floral nom +florals floral nom +floras flora nom +florescence florescence nom +florescences florescence nom +floret floret nom +florets floret nom +floriculture floriculture nom +floricultures floriculture nom +florid florid adj +florider florid adj +floridest florid adj +floridness floridness nom +floridnesses floridness nom +florilegia florilegium nom +florilegium florilegium nom +florin florin nom +florins florin nom +florist florist nom +florists florist nom +floss floss nom +flossed floss ver +flosses floss nom +flossier flossy adj +flossiest flossy adj +flossing floss ver +flossy flossy adj +flotation flotation nom +flotations flotation nom +flotilla flotilla nom +flotillas flotilla nom +flotsam flotsam nom +flotsams flotsam nom +flounce flounce nom +flounced flounce ver +flounces flounce nom +flouncier flouncy adj +flounciest flouncy adj +flouncing flounce ver +flouncy flouncy adj +flounder flounder nom +floundered flounder ver +floundering flounder ver +flounders flounder ver +flour flour nom +floured flour ver +flourier floury adj +flouriest floury adj +flouring flour ver +flourish flourish nom +flourished flourish ver +flourishes flourish nom +flourishing flourish ver +flours flour nom +floury floury adj +flout flout ver +flouted flout ver +flouter flouter nom +flouters flouter nom +flouting flout ver +flouts flout ver +flow flow nom +flowage flowage nom +flowages flowage nom +flowchart flowchart nom +flowcharts flowchart nom +flowed flow ver +flower flower nom +flowerbed flowerbed nom +flowerbeds flowerbed nom +flowered flower ver +flowerier flowery adj +floweriest flowery adj +floweriness floweriness nom +flowerinesses floweriness nom +flowering flower ver +flowerings flowering nom +flowerpot flowerpot nom +flowerpots flowerpot nom +flowers flower nom +flowery flowery adj +flowing flow ver +flown fly ver +flows flow nom +flu flu nom +flub flub nom +flubbed flub ver +flubbing flub ver +flubs flub nom +fluctuate fluctuate ver +fluctuated fluctuate ver +fluctuates fluctuate ver +fluctuating fluctuate ver +fluctuation fluctuation nom +fluctuations fluctuation nom +flue flue nom +fluegelhorn fluegelhorn nom +fluegelhorns fluegelhorn nom +fluencies fluency nom +fluency fluency nom +flues flue nom +fluff fluff nom +fluffed fluff ver +fluffier fluffy adj +fluffiest fluffy adj +fluffiness fluffiness nom +fluffinesses fluffiness nom +fluffing fluff ver +fluffs fluff nom +fluffy fluffy adj +flugelhorn flugelhorn nom +flugelhorns flugelhorn nom +fluid fluid nom +fluidities fluidity nom +fluidity fluidity nom +fluidness fluidness nom +fluidnesses fluidness nom +fluidram fluidram nom +fluidrams fluidram nom +fluids fluid nom +fluke fluke nom +flukes fluke nom +flukey flukey adj +flukier flukey adj +flukiest flukey adj +fluky fluky adj +flume flume nom +flumed flume ver +flumes flume nom +fluming flume ver +flummeries flummery nom +flummery flummery nom +flummox flummox ver +flummoxed flummox ver +flummoxes flummox ver +flummoxing flummox ver +flump flump ver +flumped flump ver +flumping flump ver +flumps flump ver +flung fling ver +flunk flunk nom +flunked flunk ver +flunkey flunkey nom +flunkeys flunkey nom +flunkies flunky nom +flunking flunk ver +flunks flunk nom +flunky flunky nom +fluor fluor nom +fluoresce fluoresce ver +fluoresced fluoresce ver +fluorescein fluorescein nom +fluoresceins fluorescein nom +fluorescence fluorescence nom +fluorescences fluorescence nom +fluorescent fluorescent nom +fluorescents fluorescent nom +fluoresces fluoresce ver +fluorescing fluoresce ver +fluoridate fluoridate ver +fluoridated fluoridate ver +fluoridates fluoridate ver +fluoridating fluoridate ver +fluoridation fluoridation nom +fluoridations fluoridation nom +fluoride fluoride nom +fluorides fluoride nom +fluoridize fluoridize ver +fluoridized fluoridize ver +fluoridizes fluoridize ver +fluoridizing fluoridize ver +fluorine fluorine nom +fluorines fluorine nom +fluorite fluorite nom +fluorites fluorite nom +fluorocarbon fluorocarbon nom +fluorocarbons fluorocarbon nom +fluorochrome fluorochrome nom +fluorochromes fluorochrome nom +fluoroscope fluoroscope nom +fluoroscoped fluoroscope ver +fluoroscopes fluoroscope nom +fluoroscopies fluoroscopy nom +fluoroscoping fluoroscope ver +fluoroscopy fluoroscopy nom +fluorouracil fluorouracil nom +fluorouracils fluorouracil nom +fluors fluor nom +fluorspar fluorspar nom +fluorspars fluorspar nom +fluoxetine fluoxetine nom +fluoxetines fluoxetine nom +flurried flurry ver +flurries flurry nom +flurry flurry nom +flurrying flurry ver +flus flu nom +flush flush adj +flushed flush ver +flusher flush adj +flushes flush nom +flushest flush adj +flushing flush ver +fluster fluster nom +flustered fluster ver +flustering fluster ver +flusters fluster nom +flute flute nom +fluted flute ver +flutes flute nom +fluting flute ver +flutings fluting nom +flutist flutist nom +flutists flutist nom +flutter flutter nom +fluttered flutter ver +fluttering flutter ver +flutters flutter nom +flux flux nom +fluxed flux ver +fluxes flux nom +fluxing flux ver +fluxion fluxion nom +fluxions fluxion nom +fly fly adj +flybridge flybridge nom +flybridges flybridge nom +flyby flyby nom +flybys flyby nom +flycatcher flycatcher nom +flycatchers flycatcher nom +flyer flyer nom +flyers flyer nom +flying fly ver +flyings flying nom +flyleaf flyleaf nom +flyleaves flyleaf nom +flyover flyover nom +flyovers flyover nom +flypaper flypaper nom +flypapers flypaper nom +flypast flypast nom +flypasts flypast nom +flyspeck flyspeck nom +flyspecked flyspeck ver +flyspecking flyspeck ver +flyspecks flyspeck nom +flyswatter flyswatter nom +flyswatters flyswatter nom +flytrap flytrap nom +flytraps flytrap nom +flyway flyway nom +flyways flyway nom +flyweight flyweight nom +flyweights flyweight nom +flywheel flywheel nom +flywheels flywheel nom +foal foal nom +foaled foal ver +foaling foal ver +foals foal nom +foam foam nom +foamed foam ver +foamflower foamflower nom +foamflowers foamflower nom +foamier foamy adj +foamiest foamy adj +foaminess foaminess nom +foaminesses foaminess nom +foaming foam ver +foams foam nom +foamy foamy adj +fob fob nom +fobbed fob ver +fobbing fob ver +fobs fob nom +focalization focalization nom +focalizations focalization nom +focus focus nom +focused focus ver +focuses focus nom +focusing focus ver +fodder fodder nom +foddered fodder ver +foddering fodder ver +fodders fodder nom +foe foe nom +foehn foehn nom +foehns foehn nom +foeman foeman nom +foemen foeman nom +foes foe nom +foetor foetor nom +foetors foetor nom +foetus foetus nom +foetuses foetus nom +fog fog nom +fogey fogey nom +fogeys fogey nom +fogged fog ver +foggier foggy adj +foggiest foggy adj +fogginess fogginess nom +fogginesses fogginess nom +fogging fog ver +foggy foggy adj +foghorn foghorn nom +foghorns foghorn nom +fogies fogy nom +fogs fog nom +fogsignal fogsignal nom +fogsignals fogsignal nom +fogy fogy nom +fohn fohn nom +fohns fohn nom +foible foible nom +foibles foible nom +foil foil nom +foiled foil ver +foiling foil ver +foilings foiling nom +foils foil nom +foist foist ver +foisted foist ver +foisting foist ver +foists foist ver +folacin folacin nom +folacins folacin nom +folate folate nom +folates folate nom +fold fold nom +foldaway foldaway nom +foldaways foldaway nom +folded fold ver +folder folder nom +folderol folderol nom +folderols folderol nom +folders folder nom +folding fold ver +foldings folding nom +foldout foldout nom +foldouts foldout nom +folds fold nom +foliage foliage nom +foliages foliage nom +foliate foliate ver +foliated foliate ver +foliates foliate ver +foliating foliate ver +foliation foliation nom +foliations foliation nom +folio folio nom +folioed folio ver +folioing folio ver +folios folio nom +folium folium nom +foliums folium nom +folk folk nom +folklore folklore nom +folklores folklore nom +folklorist folklorist nom +folklorists folklorist nom +folks folk nom +folksier folksy adj +folksiest folksy adj +folksiness folksiness nom +folksinesses folksiness nom +folksinger folksinger nom +folksingers folksinger nom +folksinging folksinging nom +folksingings folksinging nom +folksy folksy adj +folktale folktale nom +folktales folktale nom +folkway folkway nom +folkways folkway nom +follicle follicle nom +follicles follicle nom +follies folly nom +follow follow nom +followed followed sw +follower follower nom +followers follower nom +following following sw +followings following nom +follows follows sw +folly folly nom +foment foment ver +fomentation fomentation nom +fomentations fomentation nom +fomented foment ver +fomenter fomenter nom +fomenters fomenter nom +fomenting foment ver +foments foment ver +fond fond adj +fondant fondant nom +fondants fondant nom +fonder fond adj +fondest fond adj +fondle fondle ver +fondled fondle ver +fondles fondle ver +fondling fondle ver +fondness fondness nom +fondnesses fondness nom +fonds fond nom +fondu fondu nom +fondue fondue nom +fondues fondue nom +fondus fondu nom +font font nom +fontanel fontanel nom +fontanelle fontanelle nom +fontanelles fontanelle nom +fontanels fontanel nom +fonts font nom +food food nom +foodie foodie nom +foodies foodie nom +foods food nom +foodstuff foodstuff nom +foodstuffs foodstuff nom +fool fool nom +fooled fool ver +fooleries foolery nom +foolery foolery nom +foolhardier foolhardy adj +foolhardiest foolhardy adj +foolhardiness foolhardiness nom +foolhardinesses foolhardiness nom +foolhardy foolhardy adj +fooling fool ver +foolish foolish adj +foolisher foolish adj +foolishest foolish adj +foolishness foolishness nom +foolishnesses foolishness nom +fools fool nom +foolscap foolscap nom +foolscaps foolscap nom +foot foot nom +footage footage nom +footages footage nom +football football nom +footballer footballer nom +footballers footballer nom +footballs football nom +footbath footbath nom +footbaths footbath nom +footboard footboard nom +footboards footboard nom +footbridge footbridge nom +footbridges footbridge nom +footed foot ver +footer footer nom +footers footer nom +footfall footfall nom +footfalls footfall nom +footfault footfault nom +footfaults footfault nom +footgear footgear nom +footgears footgear nom +foothill foothill nom +foothills foothill nom +foothold foothold nom +footholds foothold nom +footing foot ver +footings footing nom +footle footle ver +footled footle ver +footles footle ver +footlight footlight nom +footlights footlight nom +footling footle ver +footlocker footlocker nom +footlockers footlocker nom +footman footman nom +footmark footmark nom +footmarks footmark nom +footmen footman nom +footnote footnote nom +footnoted footnote ver +footnotes footnote nom +footnoting footnote ver +footpath footpath nom +footpaths footpath nom +footplate footplate nom +footplates footplate nom +footprint footprint nom +footprints footprint nom +footrace footrace nom +footraces footrace nom +footrest footrest nom +footrests footrest nom +foots foot ver +footsie footsie nom +footsies footsie nom +footslog footslog ver +footslogged footslog ver +footslogger footslogger nom +footsloggers footslogger nom +footslogging footslog ver +footslogs footslog ver +footstall footstall nom +footstalls footstall nom +footstep footstep nom +footsteps footstep nom +footstool footstool nom +footstools footstool nom +footwall footwall nom +footwalls footwall nom +footwear footwear nom +footwears footwear nom +footwork footwork nom +footworks footwork nom +fop fop nom +fopperies foppery nom +foppery foppery nom +foppishness foppishness nom +foppishnesses foppishness nom +fops fop nom +for for sw +forage forage nom +foraged forage ver +forager forager nom +foragers forager nom +forages forage nom +foraging forage ver +foram foram nom +foramen foramen nom +foramens foramen nom +foraminifer foraminifer nom +foraminifers foraminifer nom +forams foram nom +foray foray nom +forayed foray ver +foraying foray ver +forays foray nom +forbade forbid ver +forbear forbear nom +forbearance forbearance nom +forbearances forbearance nom +forbearing forbear ver +forbears forbear nom +forbid forbid ver +forbiddance forbiddance nom +forbiddances forbiddance nom +forbidden forbid ver +forbidding forbid ver +forbiddings forbidding nom +forbids forbid ver +forbore forbear ver +forborne forbear ver +force force nom +forced force ver +forcefulness forcefulness nom +forcefulnesses forcefulness nom +forcemeat forcemeat nom +forcemeats forcemeat nom +forceps forceps nom +forces force nom +forcing force ver +ford ford nom +forded ford ver +fording ford ver +fords ford nom +fore fore nom +forearm forearm nom +forearmed forearm ver +forearming forearm ver +forearms forearm nom +forebear forebear nom +forebears forebear nom +forebode forebode ver +foreboded forebode ver +forebodes forebode ver +foreboding forebode ver +forebodings foreboding nom +forebrain forebrain nom +forebrains forebrain nom +forecast forecast ver +forecaster forecaster nom +forecasters forecaster nom +forecasting forecast ver +forecastle forecastle nom +forecastles forecastle nom +forecasts forecast nom +foreclose foreclose ver +foreclosed foreclose ver +forecloses foreclose ver +foreclosing foreclose ver +foreclosure foreclosure nom +foreclosures foreclosure nom +forecourt forecourt nom +forecourts forecourt nom +foredate foredate ver +foredated foredate ver +foredates foredate ver +foredating foredate ver +foredeck foredeck nom +foredecks foredeck nom +foredoom foredoom ver +foredoomed foredoom ver +foredooming foredoom ver +foredooms foredoom ver +forefather forefather nom +forefathers forefather nom +forefeet forefoot nom +forefinger forefinger nom +forefingers forefinger nom +forefoot forefoot nom +forefront forefront nom +forefronts forefront nom +foregather foregather ver +foregathered foregather ver +foregathering foregather ver +foregathers foregather ver +forego forego ver +foregoes forego ver +foregoing forego ver +foregone forego ver +foreground foreground nom +foregrounded foreground ver +foregrounding foreground ver +foregrounds foreground nom +forehand forehand nom +forehands forehand nom +forehead forehead nom +foreheads forehead nom +foreigner foreigner nom +foreigners foreigner nom +foreignness foreignness nom +foreignnesses foreignness nom +foreknew foreknow ver +foreknow foreknow ver +foreknowing foreknow ver +foreknowledge foreknowledge nom +foreknowledges foreknowledge nom +foreknown foreknow ver +foreknows foreknow ver +foreladies forelady nom +forelady forelady nom +foreland foreland nom +foreleg foreleg nom +forelegs foreleg nom +forelimb forelimb nom +forelimbs forelimb nom +forelock forelock nom +forelocked forelock ver +forelocking forelock ver +forelocks forelock nom +foreman foreman nom +foremanship foremanship nom +foremanships foremanship nom +foremast foremast nom +foremasts foremast nom +foremen foreman nom +foremilk foremilk nom +foremilks foremilk nom +foremother foremother nom +foremothers foremother nom +forename forename nom +forenames forename nom +forenoon forenoon nom +forenoons forenoon nom +forensic forensic nom +forensics forensic nom +foreordain foreordain ver +foreordained foreordain ver +foreordaining foreordain ver +foreordains foreordain ver +foreordination foreordination nom +foreordinations foreordination nom +forepart forepart nom +foreparts forepart nom +forepaw forepaw nom +forepaws forepaw nom +forepeople foreperson nom +foreperson foreperson nom +foreplay foreplay nom +foreplays foreplay nom +forequarter forequarter nom +forequarters forequarter nom +forerunner forerunner nom +forerunners forerunner nom +fores fore nom +foresail foresail nom +foresails foresail nom +foresaw foresee ver +foresee foresee ver +foreseeing foresee ver +foreseen foresee ver +foreseer foreseer nom +foreseers foreseer nom +foresees foresee ver +foreshadow foreshadow ver +foreshadowed foreshadow ver +foreshadowing foreshadow ver +foreshadowings foreshadowing nom +foreshadows foreshadow ver +foreshank foreshank nom +foreshanks foreshank nom +foreshock foreshock nom +foreshocks foreshock nom +foreshore foreshore nom +foreshores foreshore nom +foreshorten foreshorten ver +foreshortened foreshorten ver +foreshortening foreshorten ver +foreshortens foreshorten ver +foreshow foreshow ver +foreshowed foreshow ver +foreshowing foreshow ver +foreshown foreshow ver +foreshows foreshow ver +foresight foresight nom +foresightedness foresightedness nom +foresightednesses foresightedness nom +foresights foresight nom +foreskin foreskin nom +foreskins foreskin nom +forest forest nom +forestage forestage nom +forestages forestage nom +forestall forestall ver +forestalled forestall ver +forestalling forestall ver +forestalls forestall ver +forestation forestation nom +forestations forestation nom +forestay forestay nom +forestays forestay nom +forested forest ver +forester forester nom +foresters forester nom +foresting forest ver +forestland forestland nom +forestlands forestland nom +forestries forestry nom +forestry forestry nom +forests forest nom +foreswear foreswear ver +foreswearing foreswear ver +foreswears foreswear ver +foreswore foreswear ver +foresworn foreswear ver +foretaste foretaste nom +foretasted foretaste ver +foretastes foretaste nom +foretasting foretaste ver +foretell foretell ver +foretelling foretell ver +foretells foretell ver +forethought forethought nom +forethoughts forethought nom +foretold foretell ver +foretop foretop nom +foretops foretop nom +forever forever nom +forevers forever nom +forewarn forewarn ver +forewarned forewarn ver +forewarning forewarn ver +forewarnings forewarning nom +forewarns forewarn ver +forewent forego ver +forewing forewing nom +forewings forewing nom +forewoman forewoman nom +forewomen forewoman nom +foreword foreword nom +forewords foreword nom +forfeit forfeit nom +forfeited forfeit ver +forfeiting forfeit ver +forfeits forfeit nom +forfeiture forfeiture nom +forfeitures forfeiture nom +forgather forgather ver +forgathered forgather ver +forgathering forgather ver +forgathers forgather ver +forgave forgive ver +forge forge nom +forged forge ver +forger forger nom +forgeries forgery nom +forgers forger nom +forgery forgery nom +forges forge nom +forget forget ver +forgetfulness forgetfulness nom +forgetfulnesses forgetfulness nom +forgets forget ver +forgetting forget ver +forging forge ver +forgings forging nom +forgive forgive ver +forgiven forgive ver +forgiveness forgiveness nom +forgivenesses forgiveness nom +forgiver forgiver nom +forgivers forgiver nom +forgives forgive ver +forgiving forgive ver +forgivingness forgivingness nom +forgivingnesses forgivingness nom +forgo forgo ver +forgoer forgoer nom +forgoers forgoer nom +forgoes forgo ver +forgoing forgo ver +forgone forgo ver +forgot forget ver +forgotten forget ver +forint forint nom +forints forint nom +fork fork nom +forked fork ver +forkful forkful nom +forkfuls forkful nom +forking fork ver +forklift forklift nom +forklifted forklift ver +forklifting forklift ver +forklifts forklift nom +forks fork nom +forlorn forlorn adj +forlorner forlorn adj +forlornest forlorn adj +forlornness forlornness nom +forlornnesses forlornness nom +form form nom +formal formal nom +formaldehyde formaldehyde nom +formaldehydes formaldehyde nom +formalin formalin nom +formalins formalin nom +formalisation formalisation nom +formalisations formalisation nom +formalism formalism nom +formalisms formalism nom +formalist formalist nom +formalists formalist nom +formalities formality nom +formality formality nom +formalization formalization nom +formalizations formalization nom +formalize formalize ver +formalized formalize ver +formalizes formalize ver +formalizing formalize ver +formalness formalness nom +formalnesses formalness nom +formals formal nom +format format nom +formation formation nom +formations formation nom +formative formative nom +formatives formative nom +formats format nom +formatted format ver +formatting format ver +formed form ver +former former sw +formerly formerly sw +formers former nom +formica formica nom +formicas formica nom +formication formication nom +formications formication nom +formidabilities formidability nom +formidability formidability nom +forming form ver +formlessness formlessness nom +formlessnesses formlessness nom +formol formol nom +formols formol nom +forms form nom +formula formula nom +formularize formularize ver +formularized formularize ver +formularizes formularize ver +formularizing formularize ver +formulas formula nom +formulate formulate ver +formulated formulate ver +formulates formulate ver +formulating formulate ver +formulation formulation nom +formulations formulation nom +formulator formulator nom +formulators formulator nom +fornicate fornicate ver +fornicated fornicate ver +fornicates fornicate ver +fornicating fornicate ver +fornication fornication nom +fornications fornication nom +fornicator fornicator nom +fornicators fornicator nom +fornicatress fornicatress nom +fornicatresses fornicatress nom +fornix fornix nom +fornixes fornix nom +forsake forsake ver +forsaken forsake ver +forsakes forsake ver +forsaking forsake ver +forsakings forsaking nom +forsook forsake ver +forswear forswear ver +forswearing forswear ver +forswears forswear ver +forswore forswear ver +forsworn forswear ver +forsythia forsythia nom +forsythias forsythia nom +fort fort nom +forte forte nom +fortes forte nom +forth forth sw +forthcoming forthcoming nom +forthcomings forthcoming nom +forthright forthright nom +forthrightness forthrightness nom +forthrightnesses forthrightness nom +forthrights forthright nom +forties forty nom +fortieth fortieth nom +fortieths fortieth nom +fortification fortification nom +fortifications fortification nom +fortified fortify ver +fortifier fortifier nom +fortifiers fortifier nom +fortifies fortify ver +fortify fortify ver +fortifying fortify ver +fortissimo fortissimo nom +fortissimos fortissimo nom +fortitude fortitude nom +fortitudes fortitude nom +fortnight fortnight nom +fortnightlies fortnightly nom +fortnightly fortnightly nom +fortnights fortnight nom +fortress fortress nom +fortresses fortress nom +forts fort nom +fortuities fortuity nom +fortuitousness fortuitousness nom +fortuitousnesses fortuitousness nom +fortuity fortuity nom +fortune fortune nom +fortuned fortune ver +fortunes fortune nom +fortuneteller fortuneteller nom +fortunetellers fortuneteller nom +fortunetelling fortunetelling nom +fortunetellings fortunetelling nom +fortuning fortune ver +forty forty nom +forum forum nom +forums forum nom +forward forward adj +forwarded forward ver +forwarder forward adj +forwarders forwarder nom +forwardest forward adj +forwarding forward ver +forwardings forwarding nom +forwardness forwardness nom +forwardnesses forwardness nom +forwards forward nom +forwent forgo ver +fossa fossa nom +fossas fossa nom +fosse fosse nom +fosses fosse nom +fossil fossil nom +fossilization fossilization nom +fossilizations fossilization nom +fossilize fossilize ver +fossilized fossilize ver +fossilizes fossilize ver +fossilizing fossilize ver +fossils fossil nom +foster foster ver +fosterage fosterage nom +fosterages fosterage nom +fostered foster ver +fostering foster ver +fosterings fostering nom +fosters foster ver +fothergilla fothergilla nom +fothergillas fothergilla nom +fought fight ver +foul foul adj +foulard foulard nom +foulards foulard nom +fouled foul ver +fouler foul adj +foulest foul adj +fouling foul ver +foulness foulness nom +foulnesses foulness nom +fouls foul nom +foumart foumart nom +foumarts foumart nom +found find ver +foundation foundation nom +foundations foundation nom +founded found ver +founder founder nom +foundered founder ver +foundering founder ver +founders founder nom +founding found ver +foundings founding nom +foundling foundling nom +foundress foundress nom +foundresses foundress nom +foundries foundry nom +foundry foundry nom +founds found nom +fount fount nom +fountain fountain nom +fountainhead fountainhead nom +fountainheads fountainhead nom +fountains fountain nom +founts fount nom +four four sw +fourpence fourpence nom +fourpences fourpence nom +fourposter fourposter nom +fourposters fourposter nom +fours fours nom +fourscore fourscore nom +fourscores fourscore nom +foursome foursome nom +foursomes foursome nom +foursquare foursquare nom +foursquares foursquare nom +fourteen fourteen nom +fourteens fourteen nom +fourteenth fourteenth nom +fourteenths fourteenth nom +fourth fourth nom +fourths fourth nom +fovea fovea nom +foveas fovea nom +fowl fowl nom +fowled fowl ver +fowler fowler nom +fowlers fowler nom +fowling fowl ver +fowls fowl ver +fox fox nom +foxberries foxberry nom +foxberry foxberry nom +foxed fox ver +foxes fox nom +foxfire foxfire nom +foxfires foxfire nom +foxglove foxglove nom +foxgloves foxglove nom +foxhole foxhole nom +foxholes foxhole nom +foxhound foxhound nom +foxhounds foxhound nom +foxhunt foxhunt nom +foxhunted foxhunt ver +foxhunting foxhunt ver +foxhunts foxhunt nom +foxier foxy adj +foxiest foxy adj +foxiness foxiness nom +foxinesses foxiness nom +foxing fox ver +foxtail foxtail nom +foxtails foxtail nom +foxtrot foxtrot nom +foxtrots foxtrot nom +foxtrotted foxtrot ver +foxtrotting foxtrot ver +foxy foxy adj +foyer foyer nom +foyers foyer nom +fracas fracas nom +fracases fracas nom +fractal fractal nom +fractals fractal nom +fraction fraction nom +fractionate fractionate ver +fractionated fractionate ver +fractionates fractionate ver +fractionating fractionate ver +fractionation fractionation nom +fractionations fractionation nom +fractioned fraction ver +fractioning fraction ver +fractions fraction nom +fractiousness fractiousness nom +fractiousnesses fractiousness nom +fracture fracture nom +fractured fracture ver +fractures fracture nom +fracturing fracture ver +fragile fragile adj +fragiler fragile adj +fragilest fragile adj +fragilities fragility nom +fragility fragility nom +fragment fragment nom +fragmentation fragmentation nom +fragmentations fragmentation nom +fragmented fragment ver +fragmenting fragment ver +fragmentize fragmentize ver +fragmentized fragmentize ver +fragmentizes fragmentize ver +fragmentizing fragmentize ver +fragments fragment nom +fragrance fragrance nom +fragrances fragrance nom +frail frail adj +frailer frail adj +frailest frail adj +frailness frailness nom +frailnesses frailness nom +frails frail nom +frailties frailty nom +frailty frailty nom +fraise fraise nom +fraises fraise nom +frambesia frambesia nom +frambesias frambesia nom +framboise framboise nom +framboises framboise nom +frame frame nom +framed frame ver +framer framer nom +framers framer nom +frames frame nom +framework framework nom +frameworks framework nom +framing frame ver +framings framing nom +franc franc nom +franchise franchise nom +franchised franchise ver +franchisee franchisee nom +franchisees franchisee nom +franchiser franchiser nom +franchisers franchiser nom +franchises franchise nom +franchising franchise ver +franchisor franchisor nom +franchisors franchisor nom +francium francium nom +franciums francium nom +francs franc nom +frangibilities frangibility nom +frangibility frangibility nom +frangipane frangipane nom +frangipanes frangipane nom +frangipani frangipani nom +frangipanis frangipani nom +frank frank adj +franked frank ver +franker frank adj +frankest frank adj +frankfurter frankfurter nom +frankfurters frankfurter nom +frankincense frankincense nom +frankincenses frankincense nom +franking frank ver +franklin franklin nom +franklins franklin nom +frankness frankness nom +franknesses frankness nom +franks frank nom +frap frap ver +frappe frappe nom +frapped frap ver +frappeed frappe ver +frappeing frappe ver +frappes frappe nom +frapping frap ver +fraps frap ver +frat frat nom +fraternisation fraternisation nom +fraternisations fraternisation nom +fraternities fraternity nom +fraternity fraternity nom +fraternization fraternization nom +fraternizations fraternization nom +fraternize fraternize ver +fraternized fraternize ver +fraternizer fraternizer nom +fraternizers fraternizer nom +fraternizes fraternize ver +fraternizing fraternize ver +fratricide fratricide nom +fratricides fratricide nom +frats frat nom +fraud fraud nom +frauds fraud nom +fraudulence fraudulence nom +fraudulences fraudulence nom +fraught fraught adj +fraughter fraught adj +fraughtest fraught adj +fraughts fraught nom +fraxinella fraxinella nom +fraxinellas fraxinella nom +fray fray nom +frayed fray ver +fraying fray ver +frays fray nom +frazzle frazzle nom +frazzled frazzle ver +frazzles frazzle nom +frazzling frazzle ver +freak freak nom +freaked freak ver +freakier freaky adj +freakiest freaky adj +freaking freak ver +freakishness freakishness nom +freakishnesses freakishness nom +freakout freakout nom +freakouts freakout nom +freaks freak nom +freaky freaky adj +freckle freckle nom +freckled freckle ver +freckles freckle nom +frecklier freckly adj +freckliest freckly adj +freckling freckle ver +freckly freckly adj +free free adj +freebase freebase nom +freebased freebase ver +freebases freebase nom +freebasing freebase ver +freebee freebee nom +freebees freebee nom +freebie freebie nom +freebies freebie nom +freebooter freebooter nom +freebooters freebooter nom +freed free ver +freedman freedman nom +freedmen freedman nom +freedom freedom nom +freedoms freedom nom +freedwoman freedwoman nom +freedwomen freedwoman nom +freehold freehold nom +freeholder freeholder nom +freeholders freeholder nom +freeholds freehold nom +freeing free ver +freelance freelance nom +freelanced freelance ver +freelancer freelancer nom +freelancers freelancer nom +freelances freelance nom +freelancing freelance ver +freeload freeload ver +freeloaded freeload ver +freeloader freeloader nom +freeloaders freeloader nom +freeloading freeload ver +freeloads freeload ver +freeman freeman nom +freemasonries freemasonry nom +freemasonry freemasonry nom +freemen freeman nom +freer free adj +frees free nom +freesia freesia nom +freesias freesia nom +freest free adj +freestone freestone nom +freestones freestone nom +freestyle freestyle nom +freestyles freestyle nom +freethinker freethinker nom +freethinkers freethinker nom +freethinking freethinking nom +freethinkings freethinking nom +freeware freeware nom +freewares freeware nom +freeway freeway nom +freeways freeway nom +freewheel freewheel nom +freewheeled freewheel ver +freewheeler freewheeler nom +freewheelers freewheeler nom +freewheeling freewheel ver +freewheels freewheel nom +freewoman freewoman nom +freewomen freewoman nom +freeze freeze nom +freezer freezer nom +freezers freezer nom +freezes freeze nom +freezing freeze ver +freezings freezing nom +freight freight nom +freightage freightage nom +freightages freightage nom +freighted freight ver +freighter freighter nom +freighters freighter nom +freighting freight ver +freights freight nom +frenetic frenetic nom +frenetics frenetic nom +frenzied frenzy ver +frenzies frenzy nom +frenzy frenzy nom +frenzying frenzy ver +frequence frequence nom +frequences frequence nom +frequencies frequency nom +frequency frequency nom +frequent frequent adj +frequented frequent ver +frequenter frequent adj +frequenters frequenter nom +frequentest frequent adj +frequenting frequent ver +frequents frequent ver +fresco fresco nom +frescoed fresco ver +frescoes fresco nom +frescoing fresco ver +fresh fresh adj +freshed fresh ver +freshen freshen ver +freshened freshen ver +freshener freshener nom +fresheners freshener nom +freshening freshen ver +freshens freshen ver +fresher fresh adj +freshers fresher nom +freshes fresh nom +freshest fresh adj +freshet freshet nom +freshets freshet nom +freshing fresh ver +freshman freshman nom +freshmen freshman nom +freshness freshness nom +freshnesses freshness nom +freshwater freshwater nom +freshwaters freshwater nom +fress fress ver +fressed fress ver +fresses fress ver +fressing fress ver +fret fret nom +fretfulness fretfulness nom +fretfulnesses fretfulness nom +frets fret nom +fretsaw fretsaw nom +fretsaws fretsaw nom +fretted fret ver +fretting fret ver +fretwork fretwork nom +fretworks fretwork nom +friabilities friability nom +friability friability nom +friar friar nom +friaries friary nom +friars friar nom +friary friary nom +fricandeau fricandeau nom +fricandeaus fricandeau nom +fricassee fricassee nom +fricasseed fricassee ver +fricasseeing fricassee ver +fricassees fricassee nom +fricative fricative nom +fricatives fricative nom +friction friction nom +frictions friction nom +fridge fridge nom +fridges fridge nom +fried fry ver +friedcake friedcake nom +friedcakes friedcake nom +friend friend nom +friended friend ver +friending friend ver +friendlessness friendlessness nom +friendlessnesses friendlessness nom +friendlier friendly adj +friendlies friendly nom +friendliest friendly adj +friendliness friendliness nom +friendlinesses friendliness nom +friendly friendly adj +friends friend nom +friendship friendship nom +friendships friendship nom +frier frier nom +friers frier nom +fries fry nom +frieze frieze nom +friezes frieze nom +frig frig ver +frigate frigate nom +frigates frigate nom +frigged frig ver +frigging frig ver +fright fright nom +frighted fright ver +frighten frighten ver +frightened frighten ver +frightening frighten ver +frightens frighten ver +frightfulness frightfulness nom +frightfulnesses frightfulness nom +frighting fright ver +frights fright nom +frigid frigid adj +frigider frigid adj +frigidest frigid adj +frigidities frigidity nom +frigidity frigidity nom +frigidness frigidness nom +frigidnesses frigidness nom +frigs frig ver +frijol frijol nom +frijole frijole nom +frijoles frijol nom +frill frill nom +frilled frill ver +frillier frilly adj +frilliest frilly adj +frilling frill ver +frills frill nom +frilly frilly adj +fringe fringe nom +fringed fringe ver +fringes fringe nom +fringier fringy adj +fringiest fringy adj +fringing fringe ver +fringy fringy adj +fripperies frippery nom +frippery frippery nom +frisk frisk nom +frisked frisk ver +friskier frisky adj +friskiest frisky adj +friskiness friskiness nom +friskinesses friskiness nom +frisking frisk ver +friskings frisking nom +frisks frisk nom +frisky frisky adj +frisson frisson nom +frissons frisson nom +fritillaries fritillary nom +fritillary fritillary nom +frittata frittata nom +frittatas frittata nom +fritter fritter nom +frittered fritter ver +frittering fritter ver +fritters fritter nom +fritz fritz nom +fritzes fritz nom +frivol frivol ver +frivoled frivol ver +frivoling frivol ver +frivolities frivolity nom +frivolity frivolity nom +frivolousness frivolousness nom +frivolousnesses frivolousness nom +frivols frivol ver +friz friz nom +frizz frizz nom +frizzed friz ver +frizzes friz nom +frizzier frizzy adj +frizziest frizzy adj +frizzing friz ver +frizzle frizzle nom +frizzled frizzle ver +frizzles frizzle nom +frizzlier frizzly adj +frizzliest frizzly adj +frizzling frizzle ver +frizzly frizzly adj +frizzy frizzy adj +fro fro nom +frock frock nom +frocked frock ver +frocking frock ver +frocks frock nom +frog frog nom +frogbit frogbit nom +frogbits frogbit nom +frogfish frogfish nom +frogged frog ver +frogging frog ver +froghopper froghopper nom +froghoppers froghopper nom +frogman frogman nom +frogmarch frogmarch ver +frogmarched frogmarch ver +frogmarches frogmarch ver +frogmarching frogmarch ver +frogmen frogman nom +frogmouth frogmouth nom +frogmouths frogmouth nom +frogs frog nom +frolic frolic nom +frolicked frolic ver +frolicker frolicker nom +frolickers frolicker nom +frolicking frolic ver +frolics frolic nom +from from sw +frond frond nom +fronds frond nom +front front nom +frontage frontage nom +frontages frontage nom +frontal frontal nom +frontals frontal nom +fronted front ver +frontier frontier nom +frontiers frontier nom +frontiersman frontiersman nom +frontiersmen frontiersman nom +fronting front ver +frontispiece frontispiece nom +frontispieces frontispiece nom +frontlet frontlet nom +frontlets frontlet nom +frontrunner frontrunner nom +frontrunners frontrunner nom +fronts front nom +fros fro nom +frosh frosh nom +frost frost nom +frostbit frostbite ver +frostbite frostbite nom +frostbites frostbite nom +frostbiting frostbite ver +frostbitten frostbite ver +frosted frost ver +frosteds frosted nom +frostier frosty adj +frostiest frosty adj +frostiness frostiness nom +frostinesses frostiness nom +frosting frost ver +frostings frosting nom +frosts frost nom +frosty frosty adj +froth froth nom +frothed froth ver +frothier frothy adj +frothiest frothy adj +frothiness frothiness nom +frothinesses frothiness nom +frothing froth ver +froths froth nom +frothy frothy adj +frottage frottage nom +frottages frottage nom +frotteur frotteur nom +frotteurs frotteur nom +froufrou froufrou nom +froufrous froufrou nom +frowardness frowardness nom +frowardnesses frowardness nom +frown frown nom +frowned frown ver +frowning frown ver +frowns frown nom +frowsier frowsy adj +frowsiest frowsy adj +frowstier frowsty adj +frowstiest frowsty adj +frowsty frowsty adj +frowsy frowsy adj +frowzier frowzy adj +frowziest frowzy adj +frowziness frowziness nom +frowzinesses frowziness nom +frowzy frowzy adj +froze freeze ver +frozen freeze ver +fructification fructification nom +fructifications fructification nom +fructified fructify ver +fructifies fructify ver +fructify fructify ver +fructifying fructify ver +fructose fructose nom +fructoses fructose nom +frugalities frugality nom +frugality frugality nom +frugalness frugalness nom +frugalnesses frugalness nom +fruit fruit nom +fruitage fruitage nom +fruitages fruitage nom +fruitcake fruitcake nom +fruitcakes fruitcake nom +fruited fruit ver +fruiterer fruiterer nom +fruiterers fruiterer nom +fruitful fruitful adj +fruitfuller fruitful adj +fruitfullest fruitful adj +fruitfulness fruitfulness nom +fruitfulnesses fruitfulness nom +fruitier fruity adj +fruitiest fruity adj +fruitiness fruitiness nom +fruitinesses fruitiness nom +fruiting fruit ver +fruition fruition nom +fruitions fruition nom +fruitlessness fruitlessness nom +fruitlessnesses fruitlessness nom +fruitlet fruitlet nom +fruitlets fruitlet nom +fruits fruit nom +fruitwood fruitwood nom +fruitwoods fruitwood nom +fruity fruity adj +frumenties frumenty nom +frumenty frumenty nom +frump frump nom +frumpier frumpy adj +frumpiest frumpy adj +frumps frump nom +frumpy frumpy adj +frustrate frustrate ver +frustrated frustrate ver +frustrates frustrate ver +frustrating frustrate ver +frustration frustration nom +frustrations frustration nom +frustum frustum nom +frustums frustum nom +fry fry nom +fryer fryer nom +fryers fryer nom +frying fry ver +fryings frying nom +frypan frypan nom +frypans frypan nom +ftp ftp nom +ftps ftp nom +fuchsia fuchsia nom +fuchsias fuchsia nom +fuck fuck nom +fucked fuck ver +fucker fucker nom +fuckers fucker nom +fucking fuck ver +fuckings fucking nom +fucks fuck nom +fuckup fuckup nom +fuckups fuckup nom +fucoid fucoid nom +fucoids fucoid nom +fucus fucus nom +fucuses fucus nom +fuddle fuddle nom +fuddled fuddle ver +fuddles fuddle nom +fuddling fuddle ver +fudge fudge nom +fudged fudge ver +fudges fudge nom +fudging fudge ver +fuehrer fuehrer nom +fuehrers fuehrer nom +fuel fuel nom +fueled fuel ver +fueling fuel ver +fuels fuel nom +fug fug nom +fugaciousness fugaciousness nom +fugaciousnesses fugaciousness nom +fugacities fugacity nom +fugacity fugacity nom +fuggier fuggy adj +fuggiest fuggy adj +fuggy fuggy adj +fugitive fugitive nom +fugitives fugitive nom +fugs fug nom +fugu fugu nom +fugue fugue nom +fugued fugue ver +fugues fugue nom +fuguing fugue ver +fugus fugu nom +fuhrer fuhrer nom +fuhrers fuhrer nom +fuji fuji nom +fujis fuji nom +fulcrum fulcrum nom +fulcrumed fulcrum ver +fulcruming fulcrum ver +fulcrums fulcrum nom +fulfil fulfil ver +fulfill fulfill ver +fulfilled fulfil ver +fulfilling fulfil ver +fulfillment fulfillment nom +fulfillments fulfillment nom +fulfills fulfill ver +fulfilment fulfilment nom +fulfilments fulfilment nom +fulfils fulfil ver +full full adj +fullback fullback nom +fullbacks fullback nom +fulled full ver +fuller full adj +fullered fuller ver +fullering fuller ver +fullers fuller nom +fullest full adj +fulling full ver +fullness fullness nom +fullnesses fullness nom +fulls full nom +fulmar fulmar nom +fulmars fulmar nom +fulminate fulminate nom +fulminated fulminate ver +fulminates fulminate nom +fulminating fulminate ver +fulmination fulmination nom +fulminations fulmination nom +fulness fulness nom +fulnesses fulness nom +fulsome fulsome adj +fulsomeness fulsomeness nom +fulsomenesses fulsomeness nom +fulsomer fulsome adj +fulsomest fulsome adj +fumble fumble nom +fumbled fumble ver +fumbler fumbler nom +fumblers fumbler nom +fumbles fumble nom +fumbling fumble ver +fume fume nom +fumed fume ver +fumes fume nom +fumier fumy adj +fumiest fumy adj +fumigant fumigant nom +fumigants fumigant nom +fumigate fumigate ver +fumigated fumigate ver +fumigates fumigate ver +fumigating fumigate ver +fumigation fumigation nom +fumigations fumigation nom +fumigator fumigator nom +fumigators fumigator nom +fuming fume ver +fumitories fumitory nom +fumitory fumitory nom +fumy fumy adj +fun fun adj +function function nom +functional functional nom +functionalism functionalism nom +functionalisms functionalism nom +functionalist functionalist nom +functionalists functionalist nom +functionals functional nom +functionaries functionary nom +functionary functionary nom +functioned function ver +functioning function ver +functions function nom +fund fund nom +fundament fundament nom +fundamental fundamental nom +fundamentalism fundamentalism nom +fundamentalisms fundamentalism nom +fundamentalist fundamentalist nom +fundamentalists fundamentalist nom +fundamentals fundamental nom +fundaments fundament nom +funded fund ver +funding fund ver +fundings funding nom +fundraise fundraise ver +fundraised fundraise ver +fundraises fundraise ver +fundraising fundraise ver +funds fund nom +funeral funeral nom +funerals funeral nom +funfair funfair nom +funfairs funfair nom +fungi fungus nom +fungicide fungicide nom +fungicides fungicide nom +fungoid fungoid nom +fungoids fungoid nom +fungus fungus nom +funicle funicle nom +funicles funicle nom +funicular funicular nom +funiculars funicular nom +funiculi funiculus nom +funiculus funiculus nom +funk funk nom +funked funk ver +funkier funky adj +funkiest funky adj +funkiness funkiness nom +funkinesses funkiness nom +funking funk ver +funks funk nom +funky funky adj +funned fun ver +funnel funnel nom +funneled funnel ver +funneling funnel ver +funnels funnel nom +funner fun adj +funnest fun adj +funnier funny adj +funnies funny nom +funniest funny adj +funniness funniness nom +funninesses funniness nom +funning fun ver +funny funny adj +funs fun nom +fur fur nom +furan furan nom +furane furane nom +furanes furane nom +furans furan nom +furbelow furbelow nom +furbelowed furbelow ver +furbelowing furbelow ver +furbelows furbelow nom +furbish furbish ver +furbished furbish ver +furbishes furbish ver +furbishing furbish ver +furcation furcation nom +furcations furcation nom +furcula furcula nom +furculas furcula nom +furfural furfural nom +furfurals furfural nom +furfuran furfuran nom +furfurans furfuran nom +furies fury nom +furiousness furiousness nom +furiousnesses furiousness nom +furl furl nom +furled furl ver +furling furl ver +furlong furlong nom +furlongs furlong nom +furlough furlough nom +furloughed furlough ver +furloughing furlough ver +furloughs furlough nom +furls furl nom +furnace furnace nom +furnaced furnace ver +furnaces furnace nom +furnacing furnace ver +furnish furnish ver +furnished furnish ver +furnishes furnish ver +furnishing furnish ver +furniture furniture nom +furnitures furniture nom +furor furor nom +furore furore nom +furores furore nom +furors furor nom +furred fur ver +furrier furry adj +furriers furrier nom +furriest furry adj +furriness furriness nom +furrinesses furriness nom +furring fur ver +furrings furring nom +furrow furrow nom +furrowed furrow ver +furrowing furrow ver +furrows furrow nom +furry furry adj +furs fur nom +further further sw +furtherance furtherance nom +furtherances furtherance nom +furthered further ver +furthering further ver +furthermore furthermore sw +furthers further ver +furtiveness furtiveness nom +furtivenesses furtiveness nom +furuncle furuncle nom +furuncles furuncle nom +fury fury nom +furze furze nom +furzes furze nom +fusain fusain nom +fusains fusain nom +fuse fuse nom +fusebox fusebox nom +fuseboxes fusebox nom +fused fuse ver +fusee fusee nom +fusees fusee nom +fuselage fuselage nom +fuselages fuselage nom +fuses fuse nom +fusibilities fusibility nom +fusibility fusibility nom +fusil fusil nom +fusileer fusileer nom +fusileers fusileer nom +fusilier fusilier nom +fusiliers fusilier nom +fusillade fusillade nom +fusilladed fusillade ver +fusillades fusillade nom +fusillading fusillade ver +fusils fusil nom +fusing fuse ver +fusion fusion nom +fusions fusion nom +fuss fuss nom +fussbudget fussbudget nom +fussbudgets fussbudget nom +fussed fuss ver +fusses fuss nom +fussier fussy adj +fussiest fussy adj +fussiness fussiness nom +fussinesses fussiness nom +fussing fuss ver +fusspot fusspot nom +fusspots fusspot nom +fussy fussy adj +fustian fustian nom +fustians fustian nom +fustier fusty adj +fustiest fusty adj +fustiness fustiness nom +fustinesses fustiness nom +fusty fusty adj +futile futile adj +futiler futile adj +futilest futile adj +futilities futility nom +futility futility nom +futon futon nom +futons futon nom +future future nom +futures future nom +futurism futurism nom +futurisms futurism nom +futurist futurist nom +futurists futurist nom +futurities futurity nom +futurity futurity nom +futurologies futurology nom +futurologist futurologist nom +futurologists futurologist nom +futurology futurology nom +futz futz ver +futzed futz ver +futzes futz ver +futzing futz ver +fuze fuze nom +fuzed fuze ver +fuzee fuzee nom +fuzees fuzee nom +fuzes fuze nom +fuzing fuze ver +fuzz fuzz nom +fuzzed fuzz ver +fuzzes fuzz nom +fuzzier fuzzy adj +fuzziest fuzzy adj +fuzziness fuzziness nom +fuzzinesses fuzziness nom +fuzzing fuzz ver +fuzzy fuzzy adj +g g sw +gab gab nom +gabardine gabardine nom +gabardines gabardine nom +gabbed gab ver +gabbier gabby adj +gabbiest gabby adj +gabbiness gabbiness nom +gabbinesses gabbiness nom +gabbing gab ver +gabble gabble nom +gabbled gabble ver +gabbles gabble nom +gabbling gabble ver +gabbro gabbro nom +gabbros gabbro nom +gabby gabby adj +gaberdine gaberdine nom +gaberdines gaberdine nom +gabfest gabfest nom +gabfests gabfest nom +gable gable nom +gables gable nom +gabs gab nom +gad gad nom +gadabout gadabout nom +gadabouts gadabout nom +gadded gad ver +gadder gadder nom +gadders gadder nom +gaddi gaddi nom +gadding gad ver +gaddis gaddi nom +gadflies gadfly nom +gadfly gadfly nom +gadget gadget nom +gadgeteer gadgeteer nom +gadgeteers gadgeteer nom +gadgetries gadgetry nom +gadgetry gadgetry nom +gadgets gadget nom +gadoid gadoid nom +gadoids gadoid nom +gadolinite gadolinite nom +gadolinites gadolinite nom +gadolinium gadolinium nom +gadoliniums gadolinium nom +gads gad nom +gaff gaff nom +gaffe gaffe nom +gaffed gaff ver +gaffer gaffer nom +gaffers gaffer nom +gaffes gaffe nom +gaffing gaff ver +gaffs gaff nom +gaffsail gaffsail nom +gaffsails gaffsail nom +gag gag nom +gage gage nom +gaged gage ver +gages gage nom +gagged gag ver +gagging gag ver +gaggle gaggle nom +gaggled gaggle ver +gaggles gaggle nom +gaggling gaggle ver +gaging gage ver +gagman gagman nom +gagmen gagman nom +gags gag nom +gagster gagster nom +gagsters gagster nom +gaieties gaiety nom +gaiety gaiety nom +gaillardia gaillardia nom +gaillardias gaillardia nom +gain gain nom +gained gain ver +gainer gainer nom +gainers gainer nom +gaining gain ver +gainlier gainly adj +gainliest gainly adj +gainly gainly adj +gains gain nom +gainsaid gainsay ver +gainsay gainsay ver +gainsayer gainsayer nom +gainsayers gainsayer nom +gainsaying gainsay ver +gainsays gainsay ver +gait gait nom +gaited gait ver +gaiter gaiter nom +gaiters gaiter nom +gaiting gait ver +gaits gait nom +gal gal nom +gala gala nom +galactose galactose nom +galactoses galactose nom +galactosis galactosis nom +galago galago nom +galagos galago nom +galangal galangal nom +galangals galangal nom +galantine galantine nom +galantines galantine nom +galas gala nom +galax galax nom +galaxes galax nom +galaxies galaxy nom +galaxy galaxy nom +galbanum galbanum nom +galbanums galbanum nom +gale gale nom +galena galena nom +galenas galena nom +galere galere nom +galeres galere nom +gales gale nom +galingale galingale nom +galingales galingale nom +gall gall nom +gallant gallant adj +gallanted gallant ver +gallanter gallant adj +gallantest gallant adj +gallanting gallant ver +gallantries gallantry nom +gallantry gallantry nom +gallants gallant nom +gallbladder gallbladder nom +gallbladders gallbladder nom +galled gall ver +galleon galleon nom +galleons galleon nom +galleria galleria nom +gallerias galleria nom +galleries gallery nom +gallery gallery nom +galley galley nom +galleys galley nom +gallflies gallfly nom +gallfly gallfly nom +gallimaufries gallimaufry nom +gallimaufry gallimaufry nom +galling gall ver +gallinule gallinule nom +gallinules gallinule nom +gallium gallium nom +galliums gallium nom +gallivant gallivant ver +gallivanted gallivant ver +gallivanting gallivant ver +gallivants gallivant ver +gallon gallon nom +gallons gallon nom +gallop gallop nom +galloped gallop ver +galloping gallop ver +gallops gallop nom +gallows gallows nom +galls gall nom +gallstone gallstone nom +gallstones gallstone nom +gallus gallus nom +galluses gallus nom +galoot galoot nom +galoots galoot nom +galosh galosh nom +galoshe galoshe nom +galoshes galosh nom +gals gal nom +galumph galumph ver +galumphed galumph ver +galumphing galumph ver +galumphs galumph ver +galvanise galvanise ver +galvanised galvanise ver +galvanises galvanise ver +galvanising galvanise ver +galvanism galvanism nom +galvanisms galvanism nom +galvanization galvanization nom +galvanizations galvanization nom +galvanize galvanize ver +galvanized galvanize ver +galvanizes galvanize ver +galvanizing galvanize ver +galvanometer galvanometer nom +galvanometers galvanometer nom +gambit gambit nom +gambits gambit nom +gamble gamble nom +gambled gamble ver +gambler gambler nom +gamblers gambler nom +gambles gamble nom +gambling gamble ver +gamboge gamboge nom +gamboges gamboge nom +gambol gambol nom +gamboled gambol ver +gamboling gambol ver +gambols gambol nom +gambrel gambrel nom +gambrels gambrel nom +game game adj +gamecock gamecock nom +gamecocks gamecock nom +gamed game ver +gamekeeper gamekeeper nom +gamekeepers gamekeeper nom +gameness gameness nom +gamenesses gameness nom +gamer game adj +games game nom +gamesmanship gamesmanship nom +gamesmanships gamesmanship nom +gamest game adj +gamester gamester nom +gamesters gamester nom +gametangia gametangium nom +gametangium gametangium nom +gamete gamete nom +gametes gamete nom +gametocyte gametocyte nom +gametocytes gametocyte nom +gametophore gametophore nom +gametophores gametophore nom +gametophyte gametophyte nom +gametophytes gametophyte nom +gamey gamey adj +gamier gamey adj +gamiest gamey adj +gamin gamin nom +gamine gamine nom +gamines gamine nom +gaminess gaminess nom +gaminesses gaminess nom +gaming game ver +gamings gaming nom +gamins gamin nom +gamma gamma nom +gammas gamma nom +gammier gammy adj +gammiest gammy adj +gammon gammon nom +gammoned gammon ver +gammoning gammon ver +gammons gammon nom +gammy gammy adj +gamp gamp nom +gamps gamp nom +gamut gamut nom +gamuts gamut nom +gamy gamy adj +gander gander nom +gandered gander ver +gandering gander ver +ganders gander nom +gang gang nom +gangboard gangboard nom +gangboards gangboard nom +ganged gang ver +ganger ganger nom +gangers ganger nom +ganging gang ver +gangland gangland nom +ganglands gangland nom +ganglia ganglion nom +ganglier gangly adj +gangliest gangly adj +ganglion ganglion nom +gangly gangly adj +gangplank gangplank nom +gangplanks gangplank nom +gangrene gangrene nom +gangrened gangrene ver +gangrenes gangrene nom +gangrening gangrene ver +gangs gang nom +gangster gangster nom +gangsters gangster nom +gangway gangway nom +gangways gangway nom +ganja ganja nom +ganjas ganja nom +gannet gannet nom +gannets gannet nom +ganoid ganoid nom +ganoids ganoid nom +gantlet gantlet nom +gantleted gantlet ver +gantleting gantlet ver +gantlets gantlet nom +gantries gantry nom +gantry gantry nom +gaol gaol nom +gaoled gaol ver +gaoler gaoler nom +gaolers gaoler nom +gaoling gaol ver +gaols gaol nom +gap gap nom +gape gape nom +gaped gape ver +gapes gape nom +gaping gape ver +gapped gap ver +gapping gap ver +gaps gap nom +gar gar nom +garage garage nom +garaged garage ver +garages garage nom +garaging garage ver +garb garb nom +garbage garbage nom +garbages garbage nom +garbanzo garbanzo nom +garbanzos garbanzo nom +garbed garb ver +garbing garb ver +garble garble nom +garbled garble ver +garbles garble nom +garbling garble ver +garboard garboard nom +garboards garboard nom +garboil garboil nom +garboils garboil nom +garbologies garbology nom +garbology garbology nom +garbs garb nom +garcon garcon nom +garcons garcon nom +garden garden nom +gardened garden ver +gardener gardener nom +gardeners gardener nom +gardenia gardenia nom +gardenias gardenia nom +gardening garden ver +gardenings gardening nom +gardens garden nom +garfish garfish nom +garganey garganey nom +garganeys garganey nom +garget garget nom +gargets garget nom +gargle gargle nom +gargled gargle ver +gargles gargle nom +gargling gargle ver +gargoyle gargoyle nom +gargoyles gargoyle nom +garibaldi garibaldi nom +garibaldis garibaldi nom +garishness garishness nom +garishnesses garishness nom +garland garland nom +garlanded garland ver +garlanding garland ver +garlands garland nom +garlic garlic nom +garlics garlic nom +garment garment nom +garmented garment ver +garmenting garment ver +garments garment nom +garner garner nom +garnered garner ver +garnering garner ver +garners garner nom +garnet garnet nom +garnets garnet nom +garnierite garnierite nom +garnierites garnierite nom +garnish garnish nom +garnished garnish ver +garnishee garnishee nom +garnisheed garnishee ver +garnisheeing garnishee ver +garnishees garnishee nom +garnishes garnish nom +garnishing garnish ver +garnishment garnishment nom +garnishments garnishment nom +garote garote nom +garoted garote ver +garotes garote nom +garoting garote ver +garotte garotte nom +garotted garotte ver +garottes garotte nom +garotting garotte ver +garpike garpike nom +garpikes garpike nom +garred gar ver +garret garret nom +garrets garret nom +garring gar ver +garrison garrison nom +garrisoned garrison ver +garrisoning garrison ver +garrisons garrison nom +garrote garrote nom +garroted garrote ver +garroter garroter nom +garroters garroter nom +garrotes garrote nom +garroting garrote ver +garrotte garrotte nom +garrotted garrotte ver +garrotter garrotter nom +garrotters garrotter nom +garrottes garrotte nom +garrotting garrotte ver +garrulities garrulity nom +garrulity garrulity nom +garrulousness garrulousness nom +garrulousnesses garrulousness nom +gars gar nom +garter garter nom +gartered garter ver +gartering garter ver +garters garter nom +gas gas nom +gasbag gasbag nom +gasbags gasbag nom +gasconade gasconade ver +gasconaded gasconade ver +gasconades gasconade ver +gasconading gasconade ver +gaseousness gaseousness nom +gaseousnesses gaseousness nom +gases gas nom +gash gash adj +gashed gash ver +gasher gash adj +gashes gash nom +gashest gash adj +gashing gash ver +gasification gasification nom +gasifications gasification nom +gasified gasify ver +gasifies gasify ver +gasify gasify ver +gasifying gasify ver +gasket gasket nom +gaskets gasket nom +gaskin gaskin nom +gaskins gaskin nom +gaslight gaslight nom +gaslights gaslight nom +gasman gasman nom +gasmen gasman nom +gasohol gasohol nom +gasohols gasohol nom +gasolene gasolene nom +gasolenes gasolene nom +gasoline gasoline nom +gasolines gasoline nom +gasometer gasometer nom +gasometers gasometer nom +gasp gasp nom +gasped gasp ver +gasping gasp ver +gasps gasp nom +gassed gas ver +gassier gassy adj +gassiest gassy adj +gassing gas ver +gassings gassing nom +gassy gassy adj +gastritides gastritis nom +gastritis gastritis nom +gastrocnemii gastrocnemius nom +gastrocnemius gastrocnemius nom +gastroenteritides gastroenteritis nom +gastroenteritis gastroenteritis nom +gastronome gastronome nom +gastronomes gastronome nom +gastronomies gastronomy nom +gastronomy gastronomy nom +gastropod gastropod nom +gastropods gastropod nom +gastrula gastrula nom +gastrulas gastrula nom +gastrulation gastrulation nom +gastrulations gastrulation nom +gat gat nom +gate gate nom +gateau gateau nom +gateaus gateau nom +gatecrash gatecrash ver +gatecrashed gatecrash ver +gatecrasher gatecrasher nom +gatecrashers gatecrasher nom +gatecrashes gatecrash ver +gatecrashing gatecrash ver +gated gate ver +gatehouse gatehouse nom +gatehouses gatehouse nom +gatekeeper gatekeeper nom +gatekeepers gatekeeper nom +gatepost gatepost nom +gateposts gatepost nom +gates gate nom +gateway gateway nom +gateways gateway nom +gather gather nom +gathered gather ver +gatherer gatherer nom +gatherers gatherer nom +gathering gather ver +gatherings gathering nom +gathers gather nom +gating gate ver +gator gator nom +gators gator nom +gats gat nom +gauche gauche adj +gaucheness gaucheness nom +gauchenesses gaucheness nom +gaucher gauche adj +gaucherie gaucherie nom +gaucheries gaucherie nom +gauchest gauche adj +gaucho gaucho nom +gauchos gaucho nom +gaud gaud nom +gaudier gaudy adj +gaudies gaudy nom +gaudiest gaudy adj +gaudiness gaudiness nom +gaudinesses gaudiness nom +gauds gaud nom +gaudy gaudy adj +gauffer gauffer nom +gauffers gauffer nom +gauge gauge nom +gauged gauge ver +gauges gauge nom +gauging gauge ver +gaunt gaunt adj +gaunter gaunt adj +gauntest gaunt adj +gauntlet gauntlet nom +gauntleted gauntlet ver +gauntleting gauntlet ver +gauntlets gauntlet nom +gauntness gauntness nom +gauntnesses gauntness nom +gauntries gauntry nom +gauntry gauntry nom +gaur gaur nom +gaurs gaur nom +gauss gauss nom +gausses gauss nom +gauze gauze nom +gauzes gauze nom +gauzier gauzy adj +gauziest gauzy adj +gauziness gauziness nom +gauzinesses gauziness nom +gauzy gauzy adj +gave give ver +gavel gavel nom +gaveled gavel ver +gaveling gavel ver +gavels gavel nom +gavial gavial nom +gavials gavial nom +gavotte gavotte nom +gavotted gavotte ver +gavottes gavotte nom +gavotting gavotte ver +gawk gawk nom +gawked gawk ver +gawkier gawky adj +gawkiest gawky adj +gawkiness gawkiness nom +gawkinesses gawkiness nom +gawking gawk ver +gawks gawk nom +gawky gawky adj +gawp gawp ver +gawped gawp ver +gawping gawp ver +gawps gawp ver +gay gay adj +gayal gayal nom +gayals gayal nom +gayer gay adj +gayest gay adj +gayeties gayety nom +gayety gayety nom +gayness gayness nom +gaynesses gayness nom +gays gay nom +gazania gazania nom +gazanias gazania nom +gaze gaze nom +gazebo gazebo nom +gazebos gazebo nom +gazed gaze ver +gazelle gazelle nom +gazelles gazelle nom +gazer gazer nom +gazers gazer nom +gazes gaze nom +gazette gazette nom +gazetted gazette ver +gazetteer gazetteer nom +gazetteers gazetteer nom +gazettes gazette nom +gazetting gazette ver +gazing gaze ver +gazpacho gazpacho nom +gazpachos gazpacho nom +gazump gazump ver +gazumped gazump ver +gazumping gazump ver +gazumps gazump ver +gean gean nom +geans gean nom +gear gear nom +gearbox gearbox nom +gearboxes gearbox nom +geared gear ver +gearing gear ver +gearings gearing nom +gears gear nom +gearshift gearshift nom +gearshifts gearshift nom +gearstick gearstick nom +gearsticks gearstick nom +gearwheel gearwheel nom +gearwheels gearwheel nom +gecko gecko nom +geckos gecko nom +gee gee nom +geebung geebung nom +geebungs geebung nom +geed gee ver +geegaw geegaw nom +geegaws geegaw nom +geeing gee ver +geek geek nom +geekier geeky adj +geekiest geeky adj +geeks geek nom +geeky geeky adj +gees gee nom +geese goose nom +geezer geezer nom +geezers geezer nom +gegenschein gegenschein nom +gegenscheins gegenschein nom +geisha geisha nom +gel gel nom +gelatin gelatin nom +gelatine gelatine nom +gelatines gelatine nom +gelatinize gelatinize ver +gelatinized gelatinize ver +gelatinizes gelatinize ver +gelatinizing gelatinize ver +gelatinousness gelatinousness nom +gelatinousnesses gelatinousness nom +gelatins gelatin nom +gelcap gelcap nom +gelcaps gelcap nom +geld geld nom +gelded geld ver +gelding geld ver +geldings gelding nom +gelds geld nom +gelid gelid adj +gelider gelid adj +gelidest gelid adj +gelidities gelidity nom +gelidity gelidity nom +gelignite gelignite nom +gelignites gelignite nom +gelled gel ver +gelling gel ver +gels gel nom +gelt gelt nom +gelts gelt nom +gem gem nom +geminate geminate ver +geminated geminate ver +geminates geminate ver +geminating geminate ver +gemination gemination nom +geminations gemination nom +gemma gemma nom +gemmae gemma nom +gemmed gem ver +gemming gem ver +gemmologies gemmology nom +gemmology gemmology nom +gemologies gemology nom +gemologist gemologist nom +gemologists gemologist nom +gemology gemology nom +gems gem nom +gemsbok gemsbok nom +gemsboks gemsbok nom +gemsbuck gemsbuck nom +gemsbucks gemsbuck nom +gemstone gemstone nom +gemstones gemstone nom +gen gen nom +gendarme gendarme nom +gendarmerie gendarmerie nom +gendarmeries gendarmerie nom +gendarmery gendarmery nom +gendarmes gendarme nom +gender gender nom +gendered gender ver +gendering gender ver +genders gender nom +gene gene nom +genealogies genealogy nom +genealogist genealogist nom +genealogists genealogist nom +genealogy genealogy nom +genera genus nom +general general nom +generalise generalise ver +generalised generalise ver +generalises generalise ver +generalising generalise ver +generalissimo generalissimo nom +generalissimos generalissimo nom +generalist generalist nom +generalists generalist nom +generalities generality nom +generality generality nom +generalization generalization nom +generalizations generalization nom +generalize generalize ver +generalized generalize ver +generalizes generalize ver +generalizing generalize ver +generals general nom +generalship generalship nom +generalships generalship nom +generate generate ver +generated generate ver +generates generate ver +generating generate ver +generation generation nom +generations generation nom +generator generator nom +generators generator nom +generic generic nom +generics generic nom +generosities generosity nom +generosity generosity nom +generousness generousness nom +generousnesses generousness nom +genes gene nom +geneses genesis nom +genesis genesis nom +genet genet nom +geneticist geneticist nom +geneticists geneticist nom +genets genet nom +geneva geneva nom +genevas geneva nom +genialities geniality nom +geniality geniality nom +genie genie nom +genies genie nom +genii genius nom +genip genip nom +genipap genipap nom +genipaps genipap nom +genips genip nom +genitive genitive nom +genitives genitive nom +genitor genitor nom +genitors genitor nom +genius genius nom +geniuses genius nom +genocide genocide nom +genocides genocide nom +genoise genoise nom +genoises genoise nom +genome genome nom +genomes genome nom +genotype genotype nom +genotypes genotype nom +genre genre nom +genres genre nom +gens gen nom +gent gent nom +gentamicin gentamicin nom +gentamicins gentamicin nom +genteel genteel adj +genteeler genteel adj +genteelest genteel adj +genteelness genteelness nom +genteelnesses genteelness nom +gentian gentian nom +gentianella gentianella nom +gentianellas gentianella nom +gentians gentian nom +gentile gentile nom +gentiles gentile nom +gentilities gentility nom +gentility gentility nom +gentle gentle adj +gentled gentle ver +gentlefolk gentlefolk nom +gentlefolks gentlefolk nom +gentleman gentleman nom +gentlemen gentleman nom +gentleness gentleness nom +gentlenesses gentleness nom +gentler gentle adj +gentles gentle nom +gentlest gentle adj +gentlewoman gentlewoman nom +gentlewomen gentlewoman nom +gentling gentle ver +gentries gentry nom +gentrification gentrification nom +gentrifications gentrification nom +gentrified gentrify ver +gentrifies gentrify ver +gentrify gentrify ver +gentrifying gentrify ver +gentry gentry nom +gents gent nom +genu genu nom +genuflect genuflect ver +genuflected genuflect ver +genuflecting genuflect ver +genuflection genuflection nom +genuflections genuflection nom +genuflects genuflect ver +genuflexion genuflexion nom +genuflexions genuflexion nom +genuineness genuineness nom +genuinenesses genuineness nom +genus genu nom +geochemistries geochemistry nom +geochemistry geochemistry nom +geode geode nom +geodes geode nom +geodesic geodesic nom +geodesics geodesic nom +geodesies geodesy nom +geodesy geodesy nom +geographer geographer nom +geographers geographer nom +geographies geography nom +geography geography nom +geologies geology nom +geologist geologist nom +geologists geologist nom +geology geology nom +geomagnetism geomagnetism nom +geomagnetisms geomagnetism nom +geometer geometer nom +geometers geometer nom +geometric geometric nom +geometrician geometrician nom +geometricians geometrician nom +geometrics geometric nom +geometrid geometrid nom +geometrids geometrid nom +geometries geometry nom +geometry geometry nom +geomorphologies geomorphology nom +geomorphology geomorphology nom +geophysicist geophysicist nom +geophysicists geophysicist nom +geophyte geophyte nom +geophytes geophyte nom +georgette georgette nom +georgettes georgette nom +geosyncline geosyncline nom +geosynclines geosyncline nom +geotropism geotropism nom +geotropisms geotropism nom +geranium geranium nom +geraniums geranium nom +gerardia gerardia nom +gerardias gerardia nom +gerbil gerbil nom +gerbille gerbille nom +gerbilles gerbille nom +gerbils gerbil nom +gerenuk gerenuk nom +gerenuks gerenuk nom +gerfalcon gerfalcon nom +gerfalcons gerfalcon nom +geriatric geriatric nom +geriatrician geriatrician nom +geriatricians geriatrician nom +geriatrics geriatric nom +germ germ nom +germander germander nom +germanders germander nom +germaneness germaneness nom +germanenesses germaneness nom +germanium germanium nom +germaniums germanium nom +germicide germicide nom +germicides germicide nom +germier germy adj +germiest germy adj +germinate germinate ver +germinated germinate ver +germinates germinate ver +germinating germinate ver +germination germination nom +germinations germination nom +germs germ nom +germy germy adj +gerontologies gerontology nom +gerontologist gerontologist nom +gerontologists gerontologist nom +gerontology gerontology nom +gerrymander gerrymander nom +gerrymandered gerrymander ver +gerrymandering gerrymander ver +gerrymanders gerrymander nom +gerund gerund nom +gerunds gerund nom +gesneria gesneria nom +gesneriad gesneriad nom +gesneriads gesneriad nom +gesnerias gesneria nom +gestalt gestalt nom +gestalts gestalt nom +gestapo gestapo nom +gestapos gestapo nom +gestate gestate ver +gestated gestate ver +gestates gestate ver +gestating gestate ver +gestation gestation nom +gestations gestation nom +gesticulate gesticulate ver +gesticulated gesticulate ver +gesticulates gesticulate ver +gesticulating gesticulate ver +gesticulation gesticulation nom +gesticulations gesticulation nom +gesture gesture nom +gestured gesture ver +gestures gesture nom +gesturing gesture ver +get get sw +geta geta nom +getas geta nom +getaway getaway nom +getaways getaway nom +gets gets sw +getting getting sw +gettings getting nom +getup getup nom +getups getup nom +gewgaw gewgaw nom +gewgaws gewgaw nom +geyser geyser nom +geysered geyser ver +geysering geyser ver +geysers geyser nom +gharries gharry nom +gharry gharry nom +ghastlier ghastly adj +ghastliest ghastly adj +ghastliness ghastliness nom +ghastlinesses ghastliness nom +ghastly ghastly adj +ghat ghat nom +ghats ghat nom +ghee ghee nom +ghees ghee nom +gherkin gherkin nom +gherkins gherkin nom +ghetto ghetto nom +ghettoed ghetto ver +ghettoing ghetto ver +ghettoize ghettoize ver +ghettoized ghettoize ver +ghettoizes ghettoize ver +ghettoizing ghettoize ver +ghettos ghetto nom +ghillie ghillie nom +ghillies ghillie nom +ghost ghost nom +ghosted ghost ver +ghostfish ghostfish nom +ghosting ghost ver +ghostlier ghostly adj +ghostliest ghostly adj +ghostliness ghostliness nom +ghostlinesses ghostliness nom +ghostly ghostly adj +ghosts ghost nom +ghostwrite ghostwrite ver +ghostwriter ghostwriter nom +ghostwriters ghostwriter nom +ghostwrites ghostwrite ver +ghostwriting ghostwrite ver +ghostwritten ghostwrite ver +ghostwrote ghostwrite ver +ghoul ghoul nom +ghoulishness ghoulishness nom +ghoulishnesses ghoulishness nom +ghouls ghoul nom +giant giant nom +giantess giantess nom +giantesses giantess nom +giantism giantism nom +giantisms giantism nom +giants giant nom +giardia giardia nom +giardias giardia nom +gibber gibber nom +gibbered gibber ver +gibberellin gibberellin nom +gibberellins gibberellin nom +gibbering gibber ver +gibberish gibberish nom +gibberishes gibberish nom +gibbers gibber nom +gibbet gibbet nom +gibbeted gibbet ver +gibbeting gibbet ver +gibbets gibbet nom +gibbon gibbon nom +gibbons gibbon nom +gibbosities gibbosity nom +gibbosity gibbosity nom +gibbousness gibbousness nom +gibbousnesses gibbousness nom +gibe gibe nom +gibed gibe ver +gibes gibe nom +gibing gibe ver +giblet giblet nom +giblets giblet nom +giddied giddy ver +giddier giddy adj +giddies giddy ver +giddiest giddy adj +giddiness giddiness nom +giddinesses giddiness nom +giddy giddy adj +giddying giddy ver +gidgee gidgee nom +gidgees gidgee nom +gift gift nom +gifted gift ver +gifting gift ver +gifts gift nom +gig gig nom +gigabyte gigabyte nom +gigabytes gigabyte nom +gigacycle gigacycle nom +gigacycles gigacycle nom +gigahertz gigahertz nom +gigantism gigantism nom +gigantisms gigantism nom +gigged gig ver +gigging gig ver +giggle giggle nom +giggled giggle ver +giggler giggler nom +gigglers giggler nom +giggles giggle nom +gigglier giggly adj +giggliest giggly adj +giggling giggle ver +giggly giggly adj +gigolo gigolo nom +gigolos gigolo nom +gigot gigot nom +gigots gigot nom +gigs gig nom +gilbert gilbert nom +gilberts gilbert nom +gild gild nom +gilded gild ver +gilder gilder nom +gilders gilder nom +gildhall gildhall nom +gildhalls gildhall nom +gilding gild ver +gildings gilding nom +gilds gild nom +gill gill nom +gilled gill ver +gillie gillie nom +gillies gillie nom +gilling gill ver +gills gill nom +gillyflower gillyflower nom +gillyflowers gillyflower nom +gilt gilt nom +gilts gilt nom +gimcrack gimcrack nom +gimcrackeries gimcrackery nom +gimcrackery gimcrackery nom +gimcracks gimcrack nom +gimel gimel nom +gimels gimel nom +gimlet gimlet nom +gimleted gimlet ver +gimleting gimlet ver +gimlets gimlet nom +gimme gimme nom +gimmes gimme nom +gimmick gimmick nom +gimmicked gimmick ver +gimmickier gimmicky adj +gimmickiest gimmicky adj +gimmicking gimmick ver +gimmickries gimmickry nom +gimmickry gimmickry nom +gimmicks gimmick nom +gimmicky gimmicky adj +gimp gimp nom +gimped gimp ver +gimpier gimpy adj +gimpiest gimpy adj +gimping gimp ver +gimps gimp nom +gimpy gimpy adj +gin gin nom +ginger ginger nom +gingerbread gingerbread nom +gingerbreads gingerbread nom +gingered ginger ver +gingering ginger ver +gingerroot gingerroot nom +gingerroots gingerroot nom +gingers ginger nom +gingersnap gingersnap nom +gingersnaps gingersnap nom +gingham gingham nom +ginghams gingham nom +gingiva gingiva nom +gingivae gingiva nom +gingivitis gingivitis nom +gingivitises gingivitis nom +gingko gingko nom +gingkoes gingko nom +ginglymus ginglymus nom +ginglymuses ginglymus nom +ginkgo ginkgo nom +ginkgoes ginkgo nom +ginned gin ver +ginning gin ver +gins gin nom +ginseng ginseng nom +ginsengs ginseng nom +gipsied gipsy ver +gipsies gipsy nom +gipsy gipsy nom +gipsying gipsy ver +giraffe giraffe nom +giraffes giraffe nom +girandola girandola nom +girandolas girandola nom +girandole girandole nom +girandoles girandole nom +girasol girasol nom +girasols girasol nom +gird gird nom +girded gird ver +girder girder nom +girders girder nom +girding gird ver +girdle girdle nom +girdled girdle ver +girdles girdle nom +girdling girdle ver +girds gird nom +girl girl nom +girlfriend girlfriend nom +girlfriends girlfriend nom +girlhood girlhood nom +girlhoods girlhood nom +girlier girly adj +girlies girly nom +girliest girly adj +girlishness girlishness nom +girlishnesses girlishness nom +girls girl nom +girly girly adj +giro giro nom +giros giro nom +girt girt ver +girted girt ver +girth girth nom +girthed girth ver +girthing girth ver +girths girth nom +girting girt ver +girts girt ver +gismo gismo nom +gismos gismo nom +gist gist nom +gists gist nom +gittern gittern nom +gitterns gittern nom +give give nom +giveaway giveaway nom +giveaways giveaway nom +giveback giveback nom +givebacks giveback nom +given given sw +givens given nom +giver giver nom +givers giver nom +gives gives sw +giving give ver +givings giving nom +gizmo gizmo nom +gizmos gizmo nom +gizzard gizzard nom +gizzards gizzard nom +glace glace ver +glaceed glace ver +glaceing glace ver +glaces glace ver +glaciate glaciate ver +glaciated glaciate ver +glaciates glaciate ver +glaciating glaciate ver +glaciation glaciation nom +glaciations glaciation nom +glacier glacier nom +glaciers glacier nom +glad glad adj +gladded glad ver +gladden gladden ver +gladdened gladden ver +gladdening gladden ver +gladdens gladden ver +gladder glad adj +gladdest glad adj +gladding glad ver +gladdon gladdon nom +gladdons gladdon nom +glade glade nom +glades glade nom +gladiator gladiator nom +gladiators gladiator nom +gladiola gladiola nom +gladiolas gladiola nom +gladioli gladiolus nom +gladiolus gladiolus nom +gladlier gladly adj +gladliest gladly adj +gladly gladly adj +gladness gladness nom +gladnesses gladness nom +glads glad nom +gladsome gladsome adj +gladsomeness gladsomeness nom +gladsomenesses gladsomeness nom +gladsomer gladsome adj +gladsomest gladsome adj +gladstone gladstone nom +gladstones gladstone nom +glamor glamor nom +glamorization glamorization nom +glamorizations glamorization nom +glamorize glamorize ver +glamorized glamorize ver +glamorizes glamorize ver +glamorizing glamorize ver +glamors glamor nom +glamour glamour nom +glamoured glamour ver +glamouring glamour ver +glamourize glamourize ver +glamourized glamourize ver +glamourizes glamourize ver +glamourizing glamourize ver +glamours glamour nom +glance glance nom +glanced glance ver +glances glance nom +glancing glance ver +gland gland nom +glandes glans nom +glands gland nom +glans glans nom +glare glare nom +glared glare ver +glares glare nom +glarier glary adj +glariest glary adj +glaring glare ver +glary glary adj +glasnost glasnost nom +glasnosts glasnost nom +glass glass nom +glassblower glassblower nom +glassblowers glassblower nom +glassblowing glassblowing nom +glassblowings glassblowing nom +glassed glass ver +glasses glass nom +glassful glassful nom +glassfuls glassful nom +glasshouse glasshouse nom +glasshouses glasshouse nom +glassier glassy adj +glassies glassy nom +glassiest glassy adj +glassiness glassiness nom +glassinesses glassiness nom +glassing glass ver +glassmaker glassmaker nom +glassmakers glassmaker nom +glassware glassware nom +glasswares glassware nom +glasswork glasswork nom +glassworker glassworker nom +glassworkers glassworker nom +glassworks glasswork nom +glasswort glasswort nom +glassworts glasswort nom +glassy glassy adj +glaucoma glaucoma nom +glaucomas glaucoma nom +glauconite glauconite nom +glauconites glauconite nom +glaze glaze nom +glazed glaze ver +glazer glazer nom +glazers glazer nom +glazes glaze nom +glazier glazier nom +glaziers glazier nom +glazing glaze ver +glazings glazing nom +gleam gleam nom +gleamed gleam ver +gleaming gleam ver +gleamings gleaming nom +gleams gleam nom +glean glean ver +gleaned glean ver +gleaner gleaner nom +gleaners gleaner nom +gleaning glean ver +gleans glean ver +gleba gleba nom +glebae gleba nom +glebe glebe nom +glebes glebe nom +glee glee nom +gleed glee ver +gleefulness gleefulness nom +gleefulnesses gleefulness nom +gleeing glee ver +glees glee nom +gleet gleet nom +gleets gleet nom +glen glen nom +glens glen nom +glia glia nom +glias glia nom +glib glib adj +glibber glib adj +glibbest glib adj +glibness glibness nom +glibnesses glibness nom +glide glide nom +glided glide ver +glider glider nom +gliders glider nom +glides glide nom +gliding glide ver +glidings gliding nom +glimmer glimmer nom +glimmered glimmer ver +glimmering glimmer ver +glimmerings glimmering nom +glimmers glimmer nom +glimpse glimpse nom +glimpsed glimpse ver +glimpses glimpse nom +glimpsing glimpse ver +glint glint nom +glinted glint ver +glinting glint ver +glints glint nom +glioma glioma nom +gliomas glioma nom +glissade glissade nom +glissaded glissade ver +glissades glissade nom +glissading glissade ver +glissandi glissando nom +glissando glissando nom +glisten glisten nom +glistened glisten ver +glistening glisten ver +glistens glisten nom +glister glister nom +glistered glister ver +glistering glister ver +glisters glister nom +glitch glitch nom +glitches glitch nom +glitter glitter nom +glittered glitter ver +glittering glitter ver +glitters glitter nom +glitz glitz nom +glitzed glitz ver +glitzes glitz nom +glitzier glitzy adj +glitziest glitzy adj +glitzing glitz ver +glitzy glitzy adj +gloaming gloaming nom +gloamings gloaming nom +gloat gloat nom +gloated gloat ver +gloating gloat ver +gloats gloat nom +glob glob nom +globalism globalism nom +globalisms globalism nom +globalist globalist nom +globalists globalist nom +globe globe nom +globed globe ver +globefish globefish nom +globeflower globeflower nom +globeflowers globeflower nom +globes globe nom +globetrotter globetrotter nom +globetrotters globetrotter nom +globigerina globigerina nom +globigerinae globigerina nom +globin globin nom +globing globe ver +globins globin nom +globosities globosity nom +globosity globosity nom +globs glob nom +globularness globularness nom +globularnesses globularness nom +globule globule nom +globules globule nom +globulin globulin nom +globulins globulin nom +glockenspiel glockenspiel nom +glockenspiels glockenspiel nom +glogg glogg nom +gloggs glogg nom +glom glom ver +glomeruli glomerulus nom +glomerulonephritides glomerulonephritis nom +glomerulonephritis glomerulonephritis nom +glomerulus glomerulus nom +glommed glom ver +glomming glom ver +gloms glom ver +gloom gloom nom +gloomed gloom ver +gloomier gloomy adj +gloomiest gloomy adj +gloominess gloominess nom +gloominesses gloominess nom +glooming gloom ver +glooms gloom nom +gloomy gloomy adj +glop glop nom +gloppier gloppy adj +gloppiest gloppy adj +gloppy gloppy adj +glops glop nom +gloried glory ver +glories glory nom +glorification glorification nom +glorifications glorification nom +glorified glorify ver +glorifies glorify ver +glorify glorify ver +glorifying glorify ver +gloriosa gloriosa nom +gloriosas gloriosa nom +glory glory nom +glorying glory ver +gloss gloss nom +glossa glossa nom +glossaries glossary nom +glossary glossary nom +glossas glossa nom +glossed gloss ver +glosses gloss nom +glossier glossy adj +glossies glossy nom +glossiest glossy adj +glossina glossina nom +glossinas glossina nom +glossiness glossiness nom +glossinesses glossiness nom +glossing gloss ver +glossitis glossitis nom +glossitises glossitis nom +glossolalia glossolalia nom +glossolalias glossolalia nom +glossy glossy adj +glottis glottis nom +glottises glottis nom +glottochronologies glottochronology nom +glottochronology glottochronology nom +glove glove nom +gloved glove ver +gloves glove nom +gloving glove ver +glow glow nom +glowed glow ver +glower glower nom +glowered glower ver +glowering glower ver +glowers glower nom +glowing glow ver +glows glow nom +glowworm glowworm nom +glowworms glowworm nom +gloxinia gloxinia nom +gloxinias gloxinia nom +glucagon glucagon nom +glucagons glucagon nom +glucocorticoid glucocorticoid nom +glucocorticoids glucocorticoid nom +glucose glucose nom +glucoses glucose nom +glucoside glucoside nom +glucosides glucoside nom +glue glue nom +glued glue ver +glues glue nom +gluey gluey adj +glueyness glueyness nom +glueynesses glueyness nom +glug glug ver +glugged glug ver +glugging glug ver +glugs glug ver +gluier gluey adj +gluiest gluey adj +gluiness gluiness nom +gluinesses gluiness nom +gluing glue ver +glum glum adj +glume glume nom +glumes glume nom +glummer glum adj +glummest glum adj +glumness glumness nom +glumnesses glumness nom +gluon gluon nom +gluons gluon nom +glut glut nom +glutamate glutamate nom +glutamates glutamate nom +glutamine glutamine nom +glutamines glutamine nom +glutei gluteus nom +glutelin glutelin nom +glutelins glutelin nom +gluten gluten nom +glutens gluten nom +gluteus gluteus nom +glutinosities glutinosity nom +glutinosity glutinosity nom +glutinousness glutinousness nom +glutinousnesses glutinousness nom +gluts glut nom +glutted glut ver +glutting glut ver +glutton glutton nom +gluttonies gluttony nom +gluttonize gluttonize ver +gluttonized gluttonize ver +gluttonizes gluttonize ver +gluttonizing gluttonize ver +gluttons glutton nom +gluttony gluttony nom +glyceraldehyde glyceraldehyde nom +glyceraldehydes glyceraldehyde nom +glyceride glyceride nom +glycerides glyceride nom +glycerin glycerin nom +glycerine glycerine nom +glycerines glycerine nom +glycerins glycerin nom +glycerol glycerol nom +glycerols glycerol nom +glyceryl glyceryl nom +glyceryls glyceryl nom +glycine glycine nom +glycines glycine nom +glycogen glycogen nom +glycogens glycogen nom +glycol glycol nom +glycols glycol nom +glycolyses glycolysis nom +glycolysis glycolysis nom +glycoprotein glycoprotein nom +glycoproteins glycoprotein nom +glycoside glycoside nom +glycosides glycoside nom +glyph glyph nom +glyphs glyph nom +glyptographies glyptography nom +glyptography glyptography nom +gnarl gnarl nom +gnarled gnarl ver +gnarlier gnarly adj +gnarliest gnarly adj +gnarling gnarl ver +gnarls gnarl nom +gnarly gnarly adj +gnash gnash nom +gnashed gnash ver +gnashes gnash nom +gnashing gnash ver +gnat gnat nom +gnatcatcher gnatcatcher nom +gnatcatchers gnatcatcher nom +gnats gnat nom +gnaw gnaw ver +gnawed gnaw ver +gnawer gnawer nom +gnawers gnawer nom +gnawing gnaw ver +gnawings gnawing nom +gnaws gnaw ver +gneiss gneiss nom +gneisses gneiss nom +gnome gnome nom +gnomes gnome nom +gnomon gnomon nom +gnomons gnomon nom +gnoses gnosis nom +gnosis gnosis nom +gnostic gnostic nom +gnostics gnostic nom +gnu gnu nom +go go sw +goad goad nom +goaded goad ver +goading goad ver +goads goad nom +goal goal nom +goalie goalie nom +goalies goalie nom +goalkeeper goalkeeper nom +goalkeepers goalkeeper nom +goalkeeping goalkeeping nom +goalkeepings goalkeeping nom +goalmouth goalmouth nom +goalmouths goalmouth nom +goalpost goalpost nom +goalposts goalpost nom +goals goal nom +goaltender goaltender nom +goaltenders goaltender nom +goat goat nom +goatee goatee nom +goatees goatee nom +goatfish goatfish nom +goatherd goatherd nom +goatherds goatherd nom +goats goat nom +goatsbeard goatsbeard nom +goatsbeards goatsbeard nom +goatskin goatskin nom +goatskins goatskin nom +goatsucker goatsucker nom +goatsuckers goatsucker nom +gob gob nom +gobbed gob ver +gobbet gobbet nom +gobbets gobbet nom +gobbing gob ver +gobble gobble nom +gobbled gobble ver +gobbledegook gobbledegook nom +gobbledegooks gobbledegook nom +gobbledygook gobbledygook nom +gobbledygooks gobbledygook nom +gobbler gobbler nom +gobblers gobbler nom +gobbles gobble nom +gobbling gobble ver +gobies goby nom +goblet goblet nom +goblets goblet nom +goblin goblin nom +goblins goblin nom +gobs gob nom +goby goby nom +god god nom +godchild godchild nom +godchildren godchild nom +goddamn goddamn ver +goddamned goddamn ver +goddamning goddamn ver +goddamns goddamn ver +goddaughter goddaughter nom +goddaughters goddaughter nom +godded god ver +goddess goddess nom +goddesses goddess nom +godding god ver +godfather godfather nom +godfathered godfather ver +godfathering godfather ver +godfathers godfather nom +godhead godhead nom +godheads godhead nom +godhood godhood nom +godhoods godhood nom +godlessness godlessness nom +godlessnesses godlessness nom +godlier godly adj +godliest godly adj +godliness godliness nom +godlinesses godliness nom +godly godly adj +godmother godmother nom +godmothers godmother nom +godown godown nom +godowns godown nom +godparent godparent nom +godparents godparent nom +gods god nom +godsend godsend nom +godsends godsend nom +godson godson nom +godsons godson nom +godwit godwit nom +godwits godwit nom +goer goer nom +goers goer nom +goes goes sw +goethite goethite nom +goethites goethite nom +gofer gofer nom +gofers gofer nom +goffer goffer nom +goffers goffer nom +goggle goggle nom +goggled goggle ver +goggles goggle nom +goggling goggle ver +going going sw +goings going nom +goiter goiter nom +goiters goiter nom +goitre goitre nom +goitres goitre nom +goitrogen goitrogen nom +goitrogens goitrogen nom +gold gold adj +goldbeater goldbeater nom +goldbeaters goldbeater nom +goldbrick goldbrick nom +goldbricked goldbrick ver +goldbricker goldbricker nom +goldbrickers goldbricker nom +goldbricking goldbrick ver +goldbricks goldbrick nom +goldcrest goldcrest nom +goldcrests goldcrest nom +golden golden adj +goldener golden adj +goldenest golden adj +goldeneye goldeneye nom +goldeneyes goldeneye nom +goldenrod goldenrod nom +goldenrods goldenrod nom +goldenseal goldenseal nom +goldenseals goldenseal nom +golder gold adj +goldest gold adj +goldfield goldfield nom +goldfields goldfield nom +goldfinch goldfinch nom +goldfinches goldfinch nom +goldfish goldfish nom +goldmine goldmine nom +goldmines goldmine nom +golds gold nom +goldsmith goldsmith nom +goldsmiths goldsmith nom +goldstone goldstone nom +goldstones goldstone nom +goldthread goldthread nom +goldthreads goldthread nom +golem golem nom +golems golem nom +golf golf nom +golfed golf ver +golfer golfer nom +golfers golfer nom +golfing golf ver +golfings golfing nom +golfs golf nom +goliath goliath nom +goliaths goliath nom +golliwog golliwog nom +golliwogg golliwogg nom +golliwoggs golliwogg nom +golliwogs golliwog nom +golosh golosh nom +goloshes golosh nom +gomuti gomuti nom +gomutis gomuti nom +gonad gonad nom +gonadotropin gonadotropin nom +gonadotropins gonadotropin nom +gonads gonad nom +gondola gondola nom +gondolas gondola nom +gondolier gondolier nom +gondoliers gondolier nom +gone gone sw +goner goner nom +goners goner nom +gong gong nom +gonged gong ver +gonging gong ver +gongs gong nom +goniometer goniometer nom +goniometers goniometer nom +gonococci gonococcus nom +gonococcus gonococcus nom +gonorrhea gonorrhea nom +gonorrheas gonorrhea nom +gonorrhoea gonorrhoea nom +gonorrhoeas gonorrhoea nom +goo goo nom +goober goober nom +goobers goober nom +good good adj +goodby goodby nom +goodbye goodbye nom +goodbyes goodbye nom +goodbys goodby nom +goodie goodie nom +goodies goodie nom +goodlier goodly adj +goodliest goodly adj +goodly goodly adj +goodness goodness nom +goodnesses goodness nom +goods good nom +goodwill goodwill nom +goodwills goodwill nom +goody goody nom +gooey gooey adj +goof goof nom +goofed goof ver +goofier goofy adj +goofiest goofy adj +goofiness goofiness nom +goofinesses goofiness nom +goofing goof ver +goofs goof nom +goofy goofy adj +googlies googly nom +googly googly nom +gooier gooey adj +gooiest gooey adj +gook gook nom +gooks gook nom +goon goon nom +gooney gooney nom +gooneys gooney nom +goonie goonie nom +goonies goonie nom +goons goon nom +goony goony nom +goop goop nom +goops goop nom +goos goo nom +goosander goosander nom +goosanders goosander nom +goose goose nom +gooseberries gooseberry nom +gooseberry gooseberry nom +goosed goose ver +goosefish goosefish nom +gooseflesh gooseflesh nom +goosefleshes gooseflesh nom +goosefoot goosefoot nom +goosefoots goosefoot nom +gooseneck gooseneck nom +goosenecks gooseneck nom +gooses goose nom +goosey goosey adj +goosier goosey adj +goosiest goosey adj +goosing goose ver +goosy goosy adj +gopher gopher nom +gophered gopher ver +gophering gopher ver +gophers gopher nom +gopherwood gopherwood nom +gopherwoods gopherwood nom +goral goral nom +gorals goral nom +gore gore nom +gored gore ver +gores gore nom +gorge gorge nom +gorged gorge ver +gorgeousness gorgeousness nom +gorgeousnesses gorgeousness nom +gorgerin gorgerin nom +gorgerins gorgerin nom +gorges gorge nom +gorget gorget nom +gorgets gorget nom +gorging gorge ver +gorgon gorgon nom +gorgonian gorgonian nom +gorgonians gorgonian nom +gorgons gorgon nom +gorier gory adj +goriest gory adj +gorilla gorilla nom +gorillas gorilla nom +goriness goriness nom +gorinesses goriness nom +goring gore ver +gormandise gormandise ver +gormandised gormandise ver +gormandises gormandise ver +gormandising gormandise ver +gormandize gormandize nom +gormandized gormandize ver +gormandizer gormandizer nom +gormandizers gormandizer nom +gormandizes gormandize nom +gormandizing gormandize ver +gorp gorp nom +gorps gorp nom +gorse gorse nom +gorses gorse nom +gory gory adj +gos go nom +goshawk goshawk nom +goshawks goshawk nom +gosling gosling nom +gospel gospel nom +gospeled gospel ver +gospeler gospeler nom +gospelers gospeler nom +gospeling gospel ver +gospeller gospeller nom +gospellers gospeller nom +gospels gospel nom +gossamer gossamer nom +gossamers gossamer nom +gossip gossip nom +gossiped gossip ver +gossiper gossiper nom +gossipers gossiper nom +gossiping gossip ver +gossipings gossiping nom +gossips gossip nom +got got sw +gothite gothite nom +gothites gothite nom +gotten gotten sw +gouache gouache nom +gouaches gouache nom +gouge gouge nom +gouged gouge ver +gouger gouger nom +gougers gouger nom +gouges gouge nom +gouging gouge ver +goujon goujon nom +goujons goujon nom +goulash goulash nom +goulashes goulash nom +gourd gourd nom +gourde gourde nom +gourdes gourde nom +gourds gourd nom +gourmand gourmand nom +gourmandize gourmandize ver +gourmandized gourmandize ver +gourmandizes gourmandize ver +gourmandizing gourmandize ver +gourmands gourmand nom +gourmet gourmet nom +gourmets gourmet nom +gout gout nom +goutier gouty adj +goutiest gouty adj +gouts gout nom +gouty gouty adj +govern govern ver +governance governance nom +governances governance nom +governed govern ver +governess governess nom +governessed governess ver +governesses governess nom +governessing governess ver +governing govern ver +government government nom +governments government nom +governor governor nom +governors governor nom +governorship governorship nom +governorships governorship nom +governs govern ver +gown gown nom +gowned gown ver +gowning gown ver +gowns gown nom +goy goy nom +goys goy nom +grab grab nom +grabbed grab ver +grabber grabber nom +grabbers grabber nom +grabbier grabby adj +grabbiest grabby adj +grabbing grab ver +grabby grabby adj +grabs grab nom +grace grace nom +graced grace ver +graceful graceful adj +gracefuller graceful adj +gracefullest graceful adj +gracefulness gracefulness nom +gracefulnesses gracefulness nom +gracelessness gracelessness nom +gracelessnesses gracelessness nom +graces grace nom +gracilities gracility nom +gracility gracility nom +gracing grace ver +graciousness graciousness nom +graciousnesses graciousness nom +grackle grackle nom +grackles grackle nom +grad grad nom +gradate gradate ver +gradated gradate ver +gradates gradate ver +gradating gradate ver +gradation gradation nom +gradations gradation nom +grade grade nom +graded grade ver +grader grader nom +graders grader nom +grades grade nom +gradient gradient nom +gradients gradient nom +grading grade ver +grads grad nom +gradual gradual nom +gradualism gradualism nom +gradualisms gradualism nom +gradualities graduality nom +graduality graduality nom +gradualness gradualness nom +gradualnesses gradualness nom +graduals gradual nom +graduate graduate nom +graduated graduate ver +graduates graduate nom +graduating graduate ver +graduation graduation nom +graduations graduation nom +graffiti graffito nom +graffito graffito nom +graft graft nom +grafted graft ver +grafter grafter nom +grafters grafter nom +grafting graft ver +graftings grafting nom +grafts graft nom +graham graham nom +grahams graham nom +grail grail nom +grails grail nom +grain grain nom +grained grain ver +grainfield grainfield nom +grainfields grainfield nom +grainier grainy adj +grainiest grainy adj +graininess graininess nom +graininesses graininess nom +graining grain ver +grainings graining nom +grains grain nom +grainy grainy adj +gram gram nom +grama grama nom +gramas grama nom +gramicidin gramicidin nom +gramicidins gramicidin nom +gramma gramma nom +grammar grammar nom +grammarian grammarian nom +grammarians grammarian nom +grammars grammar nom +grammas gramma nom +gramme gramme nom +grammes gramme nom +gramophone gramophone nom +gramophones gramophone nom +grampus grampus nom +grampuses grampus nom +grams gram nom +granadilla granadilla nom +granadillas granadilla nom +granaries granary nom +granary granary nom +grand grand nom +grandad grandad nom +grandads grandad nom +grandam grandam nom +grandams grandam nom +grandaunt grandaunt nom +grandaunts grandaunt nom +grandchild grandchild nom +grandchildren grandchild nom +granddad granddad nom +granddaddies granddaddy nom +granddaddy granddaddy nom +granddads granddad nom +granddaughter granddaughter nom +granddaughters granddaughter nom +grandee grandee nom +grandees grandee nom +grander grand adj +grandest grand adj +grandeur grandeur nom +grandeurs grandeur nom +grandfather grandfather nom +grandfathered grandfather ver +grandfathering grandfather ver +grandfathers grandfather nom +grandiloquence grandiloquence nom +grandiloquences grandiloquence nom +grandiosities grandiosity nom +grandiosity grandiosity nom +grandma grandma nom +grandmas grandma nom +grandmother grandmother nom +grandmothers grandmother nom +grandnephew grandnephew nom +grandnephews grandnephew nom +grandness grandness nom +grandnesses grandness nom +grandniece grandniece nom +grandnieces grandniece nom +grandpa grandpa nom +grandparent grandparent nom +grandparents grandparent nom +grandpas grandpa nom +grands grand nom +grandson grandson nom +grandsons grandson nom +grandstand grandstand nom +grandstanded grandstand ver +grandstanding grandstand ver +grandstands grandstand nom +granduncle granduncle nom +granduncles granduncle nom +grange grange nom +granger granger nom +grangers granger nom +granges grange nom +granite granite nom +granites granite nom +graniteware graniteware nom +granitewares graniteware nom +grannie grannie nom +grannies grannie nom +granny granny nom +granola granola nom +granolas granola nom +grant grant nom +granted grant ver +grantee grantee nom +grantees grantee nom +granter granter nom +granters granter nom +granting grant ver +grantor grantor nom +grantors grantor nom +grants grant nom +grantsmanship grantsmanship nom +grantsmanships grantsmanship nom +granularities granularity nom +granularity granularity nom +granulate granulate ver +granulated granulate ver +granulates granulate ver +granulating granulate ver +granulation granulation nom +granulations granulation nom +granule granule nom +granules granule nom +granulocyte granulocyte nom +granulocytes granulocyte nom +granuloma granuloma nom +granulomas granuloma nom +grape grape nom +grapefruit grapefruit nom +grapefruits grapefruit nom +grapes grape nom +grapeshot grapeshot nom +grapeshots grapeshot nom +grapevine grapevine nom +grapevines grapevine nom +grapey grapey adj +graph graph nom +graphed graph ver +grapheme grapheme nom +graphemes grapheme nom +graphic graphic nom +graphics graphic nom +graphing graph ver +graphite graphite nom +graphites graphite nom +graphologies graphology nom +graphologist graphologist nom +graphologists graphologist nom +graphology graphology nom +graphs graph nom +grapier grapey adj +grapiest grapey adj +grapnel grapnel nom +grapnels grapnel nom +grappa grappa nom +grappas grappa nom +grapple grapple nom +grappled grapple ver +grappler grappler nom +grapplers grappler nom +grapples grapple nom +grappling grapple ver +grapplings grappling nom +grapy grapy adj +grasp grasp nom +grasped grasp ver +grasping grasp ver +grasps grasp nom +grass grass nom +grassed grass ver +grasses grass nom +grasshopper grasshopper nom +grasshoppers grasshopper nom +grassier grassy adj +grassiest grassy adj +grassing grass ver +grassland grassland nom +grasslands grassland nom +grassy grassy adj +grate grate nom +grated grate ver +grateful grateful adj +gratefuller grateful adj +gratefullest grateful adj +gratefulness gratefulness nom +gratefulnesses gratefulness nom +grater grater nom +graters grater nom +grates grate nom +graticule graticule nom +graticules graticule nom +gratification gratification nom +gratifications gratification nom +gratified gratify ver +gratifies gratify ver +gratify gratify ver +gratifying gratify ver +grating grate ver +gratings grating nom +gratitude gratitude nom +gratitudes gratitude nom +gratuities gratuity nom +gratuitousness gratuitousness nom +gratuitousnesses gratuitousness nom +gratuity gratuity nom +gravamen gravamen nom +gravamens gravamen nom +grave grave adj +graved grave ver +gravedigger gravedigger nom +gravediggers gravedigger nom +gravel gravel nom +graveled gravel ver +graveling gravel ver +gravels gravel nom +graven grave ver +graveness graveness nom +gravenesses graveness nom +graver grave adj +graves grave nom +graveside graveside nom +gravesides graveside nom +gravest grave adj +gravestone gravestone nom +gravestones gravestone nom +graveyard graveyard nom +graveyards graveyard nom +gravida gravida nom +gravidas gravida nom +gravidities gravidity nom +gravidity gravidity nom +gravidness gravidness nom +gravidnesses gravidness nom +gravies gravy nom +gravimeter gravimeter nom +gravimeters gravimeter nom +gravimetries gravimetry nom +gravimetry gravimetry nom +graving grave ver +gravitate gravitate ver +gravitated gravitate ver +gravitates gravitate ver +gravitating gravitate ver +gravitation gravitation nom +gravitations gravitation nom +gravities gravity nom +gravity gravity nom +gravure gravure nom +gravures gravure nom +gravy gravy nom +gray gray adj +grayback grayback nom +graybacks grayback nom +graybeard graybeard nom +graybeards graybeard nom +grayed gray ver +grayer gray adj +grayest gray adj +grayhen grayhen nom +grayhens grayhen nom +graying gray ver +graylag graylag nom +graylags graylag nom +grayness grayness nom +graynesses grayness nom +grays gray nom +graze graze nom +grazed graze ver +grazer grazer nom +grazers grazer nom +grazes graze nom +grazier grazier nom +graziers grazier nom +grazing graze ver +grazings grazing nom +grease grease nom +greaseball greaseball nom +greaseballs greaseball nom +greased grease ver +greasepaint greasepaint nom +greasepaints greasepaint nom +greaser greaser nom +greasers greaser nom +greases grease nom +greasewood greasewood nom +greasewoods greasewood nom +greasier greasy adj +greasiest greasy adj +greasiness greasiness nom +greasinesses greasiness nom +greasing grease ver +greasy greasy adj +great great adj +greatcoat greatcoat nom +greatcoats greatcoat nom +greater great adj +greatest great adj +greatness greatness nom +greatnesses greatness nom +greats great nom +greave greave nom +greaves greave nom +grebe grebe nom +grebes grebe nom +greed greed nom +greedier greedy adj +greediest greedy adj +greediness greediness nom +greedinesses greediness nom +greeds greed nom +greedy greedy adj +greegree greegree nom +greegrees greegree nom +green green adj +greenback greenback nom +greenbacks greenback nom +greenbelt greenbelt nom +greenbelts greenbelt nom +greenbottle greenbottle nom +greenbottles greenbottle nom +greenbrier greenbrier nom +greenbriers greenbrier nom +greened green ver +greener green adj +greeneries greenery nom +greenery greenery nom +greenest green adj +greenflies greenfly nom +greenfly greenfly nom +greengage greengage nom +greengages greengage nom +greengrocer greengrocer nom +greengroceries greengrocery nom +greengrocers greengrocer nom +greengrocery greengrocery nom +greenhorn greenhorn nom +greenhorns greenhorn nom +greenhouse greenhouse nom +greenhouses greenhouse nom +greening green ver +greenings greening nom +greenishness greenishness nom +greenishnesses greenishness nom +greenling greenling nom +greenmail greenmail nom +greenmails greenmail nom +greenmarket greenmarket nom +greenmarkets greenmarket nom +greenness greenness nom +greennesses greenness nom +greenockite greenockite nom +greenockites greenockite nom +greenroom greenroom nom +greenrooms greenroom nom +greens green nom +greensand greensand nom +greensands greensand nom +greenshank greenshank nom +greenshanks greenshank nom +greensickness greensickness nom +greensicknesses greensickness nom +greenskeeper greenskeeper nom +greenskeepers greenskeeper nom +greensward greensward nom +greenswards greensward nom +greenway greenway nom +greenways greenway nom +greenweed greenweed nom +greenweeds greenweed nom +greenwing greenwing nom +greenwings greenwing nom +greenwood greenwood nom +greenwoods greenwood nom +greet greet ver +greeted greet ver +greeter greeter nom +greeters greeter nom +greeting greet ver +greetings greetings sw +greets greet ver +gregarine gregarine nom +gregarines gregarine nom +gregariousness gregariousness nom +gregariousnesses gregariousness nom +greisen greisen nom +greisens greisen nom +gremlin gremlin nom +gremlins gremlin nom +grenade grenade nom +grenades grenade nom +grenadier grenadier nom +grenadiers grenadier nom +grenadine grenadine nom +grenadines grenadine nom +grew grow ver +grey grey adj +greybeard greybeard nom +greybeards greybeard nom +greyed grey ver +greyer grey adj +greyest grey adj +greyhound greyhound nom +greyhounds greyhound nom +greying grey ver +greylag greylag nom +greylags greylag nom +greyness greyness nom +greynesses greyness nom +greys grey nom +grid grid nom +griddle griddle nom +griddlecake griddlecake nom +griddlecakes griddlecake nom +griddled griddle ver +griddles griddle nom +griddling griddle ver +gridiron gridiron nom +gridironed gridiron ver +gridironing gridiron ver +gridirons gridiron nom +gridlock gridlock nom +gridlocks gridlock nom +grids grid nom +grief grief nom +griefs grief nom +grievance grievance nom +grievances grievance nom +grieve grieve ver +grieved grieve ver +griever griever nom +grievers griever nom +grieves grieve ver +grieving grieve ver +grievousness grievousness nom +grievousnesses grievousness nom +griffin griffin nom +griffins griffin nom +griffon griffon nom +griffons griffon nom +grigri grigri nom +grigris grigri nom +grill grill nom +grille grille nom +grilled grill ver +grilles grille nom +grilling grill ver +grillings grilling nom +grillroom grillroom nom +grillrooms grillroom nom +grills grill nom +grillwork grillwork nom +grillworks grillwork nom +grim grim adj +grimace grimace nom +grimaced grimace ver +grimaces grimace nom +grimacing grimace ver +grime grime nom +grimed grime ver +grimes grime nom +grimier grimy adj +grimiest grimy adj +griminess griminess nom +griminesses griminess nom +griming grime ver +grimmer grim adj +grimmest grim adj +grimness grimness nom +grimnesses grimness nom +grimoire grimoire nom +grimoires grimoire nom +grimy grimy adj +grin grin nom +grind grind nom +grinder grinder nom +grinders grinder nom +grinding grind ver +grindings grinding nom +grinds grind nom +grindstone grindstone nom +grindstones grindstone nom +gringo gringo nom +gringos gringo nom +grinned grin ver +grinning grin ver +grins grin nom +griot griot nom +griots griot nom +grip grip nom +gripe gripe nom +griped gripe ver +griper griper nom +gripers griper nom +gripes gripe nom +griping gripe ver +grippe grippe nom +gripped grip ver +gripper gripper nom +grippers gripper nom +grippes grippe nom +gripping grip ver +grips grip nom +gripsack gripsack nom +gripsacks gripsack nom +grisaille grisaille nom +grisailles grisaille nom +griseofulvin griseofulvin nom +griseofulvins griseofulvin nom +grislier grisly adj +grisliest grisly adj +grisliness grisliness nom +grislinesses grisliness nom +grisly grisly adj +grison grison nom +grisons grison nom +grist grist nom +gristle gristle nom +gristles gristle nom +gristlier gristly adj +gristliest gristly adj +gristly gristly adj +gristmill gristmill nom +gristmills gristmill nom +grists grist nom +grit grit nom +grits grit nom +gritstone gritstone nom +gritstones gritstone nom +gritted grit ver +gritter gritter nom +gritters gritter nom +grittier gritty adj +grittiest gritty adj +grittiness grittiness nom +grittinesses grittiness nom +gritting grit ver +gritty gritty adj +grivet grivet nom +grivets grivet nom +grizzle grizzle nom +grizzled grizzle ver +grizzles grizzle nom +grizzlier grizzly adj +grizzlies grizzly nom +grizzliest grizzly adj +grizzling grizzle ver +grizzly grizzly adj +groan groan nom +groaned groan ver +groaning groan ver +groans groan nom +groat groat nom +groats groat nom +grocer grocer nom +groceries grocery nom +grocers grocer nom +grocery grocery nom +grog grog nom +groggier groggy adj +groggiest groggy adj +grogginess grogginess nom +grogginesses grogginess nom +groggy groggy adj +grogram grogram nom +grograms grogram nom +grogs grog nom +groin groin nom +groined groin ver +groining groin ver +groins groin nom +grommet grommet nom +grommeted grommet ver +grommeting grommet ver +grommets grommet nom +gromwell gromwell nom +gromwells gromwell nom +groom groom nom +groomed groom ver +groomer groomer nom +groomers groomer nom +grooming groom ver +groomings grooming nom +grooms groom nom +groomsman groomsman nom +groomsmen groomsman nom +groove groove nom +grooved groove ver +groover groover nom +groovers groover nom +grooves groove nom +groovier groovy adj +grooviest groovy adj +grooving groove ver +groovy groovy adj +grope grope nom +groped grope ver +groper groper nom +gropers groper nom +gropes grope nom +groping grope ver +grosbeak grosbeak nom +grosbeaks grosbeak nom +groschen groschen nom +groschens groschen nom +grosgrain grosgrain nom +grosgrains grosgrain nom +gross gross adj +grossed gross ver +grosser gross adj +grosses gross nom +grossest gross adj +grossing gross ver +grossness grossness nom +grossnesses grossness nom +grot grot nom +grotesque grotesque adj +grotesqueness grotesqueness nom +grotesquenesses grotesqueness nom +grotesquer grotesque adj +grotesquerie grotesquerie nom +grotesqueries grotesquerie nom +grotesquery grotesquery nom +grotesques grotesque nom +grotesquest grotesque adj +grots grot nom +grottier grotty adj +grottiest grotty adj +grotto grotto nom +grottoes grotto nom +grotty grotty adj +grouch grouch nom +grouched grouch ver +grouches grouch nom +grouchier grouchy adj +grouchiest grouchy adj +grouchiness grouchiness nom +grouchinesses grouchiness nom +grouching grouch ver +grouchy grouchy adj +ground grind ver +groundbreaking groundbreaking nom +groundbreakings groundbreaking nom +grounded ground ver +grounder grounder nom +grounders grounder nom +groundfish groundfish nom +groundhog groundhog nom +groundhogs groundhog nom +grounding ground ver +groundings grounding nom +groundling groundling nom +groundmass groundmass nom +groundmasses groundmass nom +groundnut groundnut nom +groundnuts groundnut nom +grounds ground nom +groundsel groundsel nom +groundsels groundsel nom +groundsheet groundsheet nom +groundsheets groundsheet nom +groundskeeper groundskeeper nom +groundskeepers groundskeeper nom +groundsman groundsman nom +groundsmen groundsman nom +groundspeed groundspeed nom +groundspeeds groundspeed nom +groundswell groundswell nom +groundswells groundswell nom +groundwater groundwater nom +groundwaters groundwater nom +groundwork groundwork nom +groundworks groundwork nom +group group nom +grouped group ver +grouper grouper nom +groupers grouper nom +groupie groupie nom +groupies groupie nom +grouping group ver +groupings grouping nom +groups group nom +groupware groupware nom +groupwares groupware nom +grouse grouse nom +groused grouse ver +grouser grouse adj +grousers grouser nom +grouses grouse ver +grousest grouse adj +grousing grouse ver +grout grout nom +grouted grout ver +grouting grout ver +grouts grout nom +grove grove nom +grovel grovel ver +groveled grovel ver +groveler groveler nom +grovelers groveler nom +groveling grovel ver +groveller groveller nom +grovellers groveller nom +grovels grovel ver +groves grove nom +grow grow ver +grower grower nom +growers grower nom +growing grow ver +growings growing nom +growl growl nom +growled growl ver +growler growler nom +growlers growler nom +growling growl ver +growls growl nom +grown grow ver +grownup grownup nom +grownups grownup nom +grows grow ver +growth growth nom +growths growth nom +groyne groyne nom +groynes groyne nom +grub grub nom +grubbed grub ver +grubber grubber nom +grubbers grubber nom +grubbier grubby adj +grubbies grubby nom +grubbiest grubby adj +grubbiness grubbiness nom +grubbinesses grubbiness nom +grubbing grub ver +grubby grubby adj +grubs grub nom +grubstake grubstake nom +grubstaked grubstake ver +grubstakes grubstake nom +grubstaking grubstake ver +grudge grudge nom +grudged grudge ver +grudges grudge nom +grudging grudge ver +gruel gruel nom +grueling grueling nom +gruelling gruelling nom +gruellings gruelling nom +gruels gruel nom +gruesome gruesome adj +gruesomeness gruesomeness nom +gruesomenesses gruesomeness nom +gruesomer gruesome adj +gruesomest gruesome adj +gruff gruff adj +gruffer gruff adj +gruffest gruff adj +gruffness gruffness nom +gruffnesses gruffness nom +grugru grugru nom +grugrus grugru nom +grumble grumble nom +grumbled grumble ver +grumbler grumbler nom +grumblers grumbler nom +grumbles grumble nom +grumbling grumble ver +grumblings grumbling nom +grump grump nom +grumped grump ver +grumpier grumpy adj +grumpiest grumpy adj +grumpiness grumpiness nom +grumpinesses grumpiness nom +grumping grump ver +grumps grump nom +grumpy grumpy adj +grunge grunge nom +grunges grunge nom +grungier grungy adj +grungiest grungy adj +grungy grungy adj +grunion grunion nom +grunions grunion nom +grunt grunt nom +grunted grunt ver +grunting grunt ver +gruntle gruntle ver +gruntled gruntle ver +gruntles gruntle ver +gruntling gruntle ver +grunts grunt nom +gryphon gryphon nom +gryphons gryphon nom +gs g nom +guacamole guacamole nom +guacamoles guacamole nom +guacharo guacharo nom +guacharoes guacharo nom +guacharos guacharo nom +guaiac guaiac nom +guaiacs guaiac nom +guaiacum guaiacum nom +guaiacums guaiacum nom +guan guan nom +guanaco guanaco nom +guanacos guanaco nom +guanine guanine nom +guanines guanine nom +guano guano nom +guanos guano nom +guans guan nom +guar guar nom +guarani guarani nom +guaranis guarani nom +guarantee guarantee nom +guaranteed guarantee ver +guaranteeing guarantee ver +guarantees guarantee nom +guarantied guaranty ver +guaranties guaranty nom +guarantor guarantor nom +guarantors guarantor nom +guaranty guaranty nom +guarantying guaranty ver +guard guard nom +guarded guard ver +guarder guarder nom +guarders guarder nom +guardhouse guardhouse nom +guardhouses guardhouse nom +guardian guardian nom +guardians guardian nom +guardianship guardianship nom +guardianships guardianship nom +guarding guard ver +guardrail guardrail nom +guardrails guardrail nom +guardroom guardroom nom +guardrooms guardroom nom +guards guard nom +guardsman guardsman nom +guardsmen guardsman nom +guars guar nom +guava guava nom +guavas guava nom +guayule guayule nom +guayules guayule nom +gubbins gubbins nom +gubbinses gubbins nom +guck guck nom +gucks guck nom +gudgeon gudgeon nom +gudgeons gudgeon nom +guenon guenon nom +guenons guenon nom +guerdon guerdon nom +guerdons guerdon nom +guereza guereza nom +guerezas guereza nom +gueridon gueridon nom +gueridons gueridon nom +guerilla guerilla nom +guerillas guerilla nom +guerrilla guerrilla nom +guerrillas guerrilla nom +guess guess nom +guessed guess ver +guesser guesser nom +guessers guesser nom +guesses guess nom +guessing guess ver +guessings guessing nom +guesstimate guesstimate nom +guesstimated guesstimate ver +guesstimates guesstimate nom +guesstimating guesstimate ver +guesswork guesswork nom +guessworks guesswork nom +guest guest nom +guested guest ver +guesthouse guesthouse nom +guesthouses guesthouse nom +guestimate guestimate nom +guestimates guestimate nom +guesting guest ver +guestroom guestroom nom +guestrooms guestroom nom +guests guest nom +guff guff nom +guffaw guffaw nom +guffawed guffaw ver +guffawing guffaw ver +guffaws guffaw nom +guffs guff nom +guggle guggle ver +guggled guggle ver +guggles guggle ver +guggling guggle ver +guidance guidance nom +guidances guidance nom +guide guide nom +guidebook guidebook nom +guidebooks guidebook nom +guided guide ver +guideline guideline nom +guidelines guideline nom +guidepost guidepost nom +guideposts guidepost nom +guider guider nom +guiders guider nom +guides guide nom +guiding guide ver +guidings guiding nom +guild guild nom +guilder guilder nom +guilders guilder nom +guildhall guildhall nom +guildhalls guildhall nom +guilds guild nom +guile guile nom +guilelessness guilelessness nom +guilelessnesses guilelessness nom +guiles guile nom +guillemot guillemot nom +guillemots guillemot nom +guilloche guilloche nom +guilloches guilloche nom +guillotine guillotine nom +guillotined guillotine ver +guillotines guillotine nom +guillotining guillotine ver +guilt guilt nom +guiltier guilty adj +guiltiest guilty adj +guiltiness guiltiness nom +guiltinesses guiltiness nom +guiltlessness guiltlessness nom +guiltlessnesses guiltlessness nom +guilts guilt nom +guilty guilty adj +guimpe guimpe nom +guimpes guimpe nom +guinea guinea nom +guineas guinea nom +guise guise nom +guised guise ver +guises guise nom +guising guise ver +guitar guitar nom +guitarfish guitarfish nom +guitarist guitarist nom +guitarists guitarist nom +guitars guitar nom +gula gula nom +gulag gulag nom +gulags gulag nom +gulas gula nom +gulch gulch nom +gulches gulch nom +gulden gulden nom +guldens gulden nom +gulf gulf nom +gulfed gulf ver +gulfing gulf ver +gulfs gulf nom +gulfweed gulfweed nom +gulfweeds gulfweed nom +gull gull nom +gulled gull ver +gullet gullet ver +gulleting gullet ver +gullets gullet nom +gulley gulley nom +gulleys gulley nom +gullibilities gullibility nom +gullibility gullibility nom +gullied gully ver +gullies gully nom +gulling gull ver +gulls gull nom +gully gully nom +gullying gully ver +gulp gulp nom +gulped gulp ver +gulper gulper nom +gulpers gulper nom +gulping gulp ver +gulps gulp nom +gum gum nom +gumbo gumbo nom +gumboil gumboil nom +gumboils gumboil nom +gumbos gumbo nom +gumdrop gumdrop nom +gumdrops gumdrop nom +gumma gumma nom +gummas gumma nom +gummed gum ver +gummier gummy adj +gummiest gummy adj +gumminess gumminess nom +gumminesses gumminess nom +gumming gum ver +gummite gummite nom +gummites gummite nom +gummoses gummosis nom +gummosis gummosis nom +gummy gummy adj +gumption gumption nom +gumptions gumption nom +gums gum nom +gumshield gumshield nom +gumshields gumshield nom +gumshoe gumshoe nom +gumshoed gumshoe ver +gumshoeing gumshoe ver +gumshoes gumshoe nom +gumweed gumweed nom +gumweeds gumweed nom +gumwood gumwood nom +gumwoods gumwood nom +gun gun nom +gunboat gunboat nom +gunboats gunboat nom +guncotton guncotton nom +guncottons guncotton nom +gunfight gunfight nom +gunfighter gunfighter nom +gunfighters gunfighter nom +gunfights gunfight nom +gunfire gunfire nom +gunfires gunfire nom +gunflint gunflint nom +gunflints gunflint nom +gunite gunite nom +gunites gunite nom +gunk gunk nom +gunkier gunky adj +gunkiest gunky adj +gunks gunk nom +gunky gunky adj +gunlock gunlock nom +gunlocks gunlock nom +gunman gunman nom +gunmen gunman nom +gunmetal gunmetal nom +gunmetals gunmetal nom +gunned gun ver +gunnel gunnel nom +gunnels gunnel nom +gunner gunner nom +gunneries gunnery nom +gunners gunner nom +gunnery gunnery nom +gunnies gunny nom +gunning gun ver +gunny gunny nom +gunnysack gunnysack nom +gunnysacks gunnysack nom +gunplay gunplay nom +gunplays gunplay nom +gunpoint gunpoint nom +gunpoints gunpoint nom +gunpowder gunpowder nom +gunpowders gunpowder nom +gunrunner gunrunner nom +gunrunners gunrunner nom +gunrunning gunrunning nom +gunrunnings gunrunning nom +guns gun nom +gunship gunship nom +gunships gunship nom +gunshot gunshot nom +gunshots gunshot nom +gunslinger gunslinger nom +gunslingers gunslinger nom +gunsmith gunsmith nom +gunsmiths gunsmith nom +gunstock gunstock nom +gunstocks gunstock nom +gunwale gunwale nom +gunwales gunwale nom +guppies guppy nom +guppy guppy nom +gurge gurge ver +gurged gurge ver +gurges gurge ver +gurging gurge ver +gurgle gurgle nom +gurgled gurgle ver +gurgles gurgle nom +gurgling gurgle ver +gurglings gurgling nom +gurnard gurnard nom +gurnards gurnard nom +gurney gurney nom +gurneys gurney nom +guru guru nom +gurus guru nom +gush gush nom +gushed gush ver +gusher gusher nom +gushers gusher nom +gushes gush nom +gushier gushy adj +gushiest gushy adj +gushing gush ver +gushy gushy adj +gusset gusset nom +gusseted gusset ver +gusseting gusset ver +gussets gusset nom +gussied gussy ver +gussies gussy ver +gussy gussy ver +gussying gussy ver +gust gust nom +gustation gustation nom +gustations gustation nom +gusted gust ver +gustier gusty adj +gustiest gusty adj +gusting gust ver +gusto gusto nom +gustoes gusto nom +gusts gust nom +gusty gusty adj +gut gut nom +gutlessness gutlessness nom +gutlessnesses gutlessness nom +guts gut nom +gutsed guts ver +gutses guts nom +gutsier gutsy adj +gutsiest gutsy adj +gutsiness gutsiness nom +gutsinesses gutsiness nom +gutsing guts ver +gutsy gutsy adj +gutted gut ver +gutter gutter nom +guttered gutter ver +guttering gutter ver +gutters gutter nom +guttersnipe guttersnipe nom +guttier gutty adj +guttiest gutty adj +gutting gut ver +guttle guttle ver +guttled guttle ver +guttles guttle ver +guttling guttle ver +guttural guttural nom +gutturals guttural nom +gutty gutty adj +guy guy nom +guyed guy ver +guying guy ver +guyot guyot nom +guyots guyot nom +guys guy nom +guzzle guzzle ver +guzzled guzzle ver +guzzler guzzler nom +guzzlers guzzler nom +guzzles guzzle ver +guzzling guzzle ver +gybe gybe ver +gybed gybe ver +gybes gybe ver +gybing gybe ver +gym gym nom +gymkhana gymkhana nom +gymkhanas gymkhana nom +gymnasium gymnasium nom +gymnasiums gymnasium nom +gymnast gymnast nom +gymnasts gymnast nom +gymnosophist gymnosophist nom +gymnosophists gymnosophist nom +gymnosperm gymnosperm nom +gymnosperms gymnosperm nom +gyms gym nom +gynaecologies gynaecology nom +gynaecologist gynaecologist nom +gynaecologists gynaecologist nom +gynaecology gynaecology nom +gynandromorph gynandromorph nom +gynandromorphs gynandromorph nom +gynecologies gynecology nom +gynecologist gynecologist nom +gynecologists gynecologist nom +gynecology gynecology nom +gynecomastia gynecomastia nom +gynecomastias gynecomastia nom +gynoecium gynoecium nom +gynoeciums gynoecium nom +gynogeneses gynogenesis nom +gynogenesis gynogenesis nom +gyp gyp nom +gypped gyp ver +gypper gypper nom +gyppers gypper nom +gypping gyp ver +gyps gyp nom +gypsied gypsy ver +gypsies gypsy nom +gypster gypster nom +gypsters gypster nom +gypsum gypsum nom +gypsums gypsum nom +gypsy gypsy nom +gypsying gypsy ver +gypsywort gypsywort nom +gypsyworts gypsywort nom +gyrate gyrate ver +gyrated gyrate ver +gyrates gyrate ver +gyrating gyrate ver +gyration gyration nom +gyrations gyration nom +gyrator gyrator nom +gyrators gyrator nom +gyre gyre nom +gyres gyre nom +gyrfalcon gyrfalcon nom +gyrfalcons gyrfalcon nom +gyro gyro nom +gyrocompass gyrocompass nom +gyrocompasses gyrocompass nom +gyros gyro nom +gyroscope gyroscope nom +gyroscopes gyroscope nom +gyrostabilizer gyrostabilizer nom +gyrostabilizers gyrostabilizer nom +gyrus gyrus nom +gyruses gyrus nom +gyve gyve nom +gyved gyve ver +gyves gyve nom +gyving gyve ver +h h sw +haberdasher haberdasher nom +haberdasheries haberdashery nom +haberdashers haberdasher nom +haberdashery haberdashery nom +habergeon habergeon nom +habergeons habergeon nom +habiliment habiliment nom +habiliments habiliment nom +habilitate habilitate ver +habilitated habilitate ver +habilitates habilitate ver +habilitating habilitate ver +habit habit nom +habitabilities habitability nom +habitability habitability nom +habitat habitat nom +habitation habitation nom +habitations habitation nom +habitats habitat nom +habited habit ver +habiting habit ver +habits habit nom +habitualness habitualness nom +habitualnesses habitualness nom +habituate habituate ver +habituated habituate ver +habituates habituate ver +habituating habituate ver +habituation habituation nom +habituations habituation nom +habitude habitude nom +habitudes habitude nom +habitue habitue nom +habitues habitue nom +hacek hacek nom +haceks hacek nom +hachure hachure nom +hachures hachure nom +hacienda hacienda nom +haciendas hacienda nom +hack hack nom +hackamore hackamore nom +hackamores hackamore nom +hackberries hackberry nom +hackberry hackberry nom +hackbut hackbut nom +hackbuts hackbut nom +hacked hack ver +hackee hackee nom +hackees hackee nom +hacker hacker nom +hackers hacker nom +hacking hack ver +hackings hacking nom +hackle hackle nom +hackled hackle ver +hackles hackle nom +hackling hackle ver +hackmatack hackmatack nom +hackmatacks hackmatack nom +hackney hackney nom +hackneyed hackney ver +hackneying hackney ver +hackneys hackney nom +hacks hack nom +hacksaw hacksaw nom +hacksaws hacksaw nom +hackwork hackwork nom +hackworks hackwork nom +had had sw +haddock haddock nom +haddocks haddock nom +hadj hadj nom +hadjes hadj nom +hadji hadji nom +hadjis hadji nom +hadn_t hadn_t sw +hadron hadron nom +hadrons hadron nom +hadrosaur hadrosaur nom +hadrosaurs hadrosaur nom +haem haem nom +haematite haematite nom +haematites haematite nom +haematologist haematologist nom +haematologists haematologist nom +haematoma haematoma nom +haematomas haematoma nom +haemodialyses haemodialysis nom +haemodialysis haemodialysis nom +haemoglobin haemoglobin nom +haemoglobins haemoglobin nom +haemophilia haemophilia nom +haemophiliac haemophiliac nom +haemophiliacs haemophiliac nom +haemophilias haemophilia nom +haemorrhage haemorrhage nom +haemorrhaged haemorrhage ver +haemorrhages haemorrhage nom +haemorrhaging haemorrhage ver +haemostat haemostat nom +haemostats haemostat nom +haems haem nom +hafnium hafnium nom +hafniums hafnium nom +haft haft nom +hafted haft ver +hafting haft ver +hafts haft nom +hag hag nom +hagberries hagberry nom +hagberry hagberry nom +hagbut hagbut nom +hagbuts hagbut nom +hagfish hagfish nom +haggard haggard nom +haggardness haggardness nom +haggardnesses haggardness nom +haggards haggard nom +haggis haggis nom +haggises haggis nom +haggle haggle nom +haggled haggle ver +haggler haggler nom +hagglers haggler nom +haggles haggle nom +haggling haggle ver +hagiographer hagiographer nom +hagiographers hagiographer nom +hagiographies hagiography nom +hagiography hagiography nom +hagiolatries hagiolatry nom +hagiolatry hagiolatry nom +hagiologies hagiology nom +hagiology hagiology nom +hags hag nom +hahnium hahnium nom +hahniums hahnium nom +haiku haiku nom +hail hail nom +hailed hail ver +hailing hail ver +hails hail nom +hailstone hailstone nom +hailstones hailstone nom +hailstorm hailstorm nom +hailstorms hailstorm nom +hair hair nom +hairball hairball nom +hairballs hairball nom +hairbreadth hairbreadth nom +hairbreadths hairbreadth nom +hairbrush hairbrush nom +hairbrushes hairbrush nom +haircloth haircloth nom +haircloths haircloth nom +haircut haircut nom +haircuts haircut nom +hairdo hairdo nom +hairdos hairdo nom +hairdresser hairdresser nom +hairdressers hairdresser nom +hairdressing hairdressing nom +hairdressings hairdressing nom +hairdryer hairdryer nom +hairdryers hairdryer nom +hairier hairy adj +hairiest hairy adj +hairiness hairiness nom +hairinesses hairiness nom +hairlessness hairlessness nom +hairlessnesses hairlessness nom +hairline hairline nom +hairlines hairline nom +hairnet hairnet nom +hairnets hairnet nom +hairpiece hairpiece nom +hairpieces hairpiece nom +hairpin hairpin nom +hairpins hairpin nom +hairs hair nom +hairsbreadth hairsbreadth nom +hairsbreadths hairsbreadth nom +hairsplitter hairsplitter nom +hairsplitters hairsplitter nom +hairsplitting hairsplitting nom +hairsplittings hairsplitting nom +hairspring hairspring nom +hairsprings hairspring nom +hairstreak hairstreak nom +hairstreaks hairstreak nom +hairstyle hairstyle nom +hairstyles hairstyle nom +hairstylist hairstylist nom +hairstylists hairstylist nom +hairy hairy adj +haj haj nom +hajes haj nom +haji haji nom +hajis haji nom +hajj hajj nom +hajjes hajj nom +hajji hajji nom +hajjis hajji nom +hake hake nom +halal halal nom +halals halal nom +halberd halberd nom +halberdier halberdier nom +halberdiers halberdier nom +halberds halberd nom +halcyon halcyon nom +halcyons halcyon nom +hale hale adj +haled hale ver +haleness haleness nom +halenesses haleness nom +haler hale adj +halers haler nom +hales hale ver +halest hale adj +half half nom +halfback halfback nom +halfbacks halfback nom +halfbeak halfbeak nom +halfbeaks halfbeak nom +halfheartedness halfheartedness nom +halfheartednesses halfheartedness nom +halfpence halfpenny nom +halfpennies halfpenny nom +halfpenny halfpenny nom +halfpennyworth halfpennyworth nom +halfpennyworths halfpennyworth nom +halftime halftime nom +halftimes halftime nom +halftone halftone nom +halftones halftone nom +halibut halibut nom +halide halide nom +halides halide nom +haling hale ver +halite halite nom +halites halite nom +halitoses halitosis nom +halitosis halitosis nom +hall hall nom +hallah hallah nom +hallahs hallah nom +halleluiah halleluiah nom +halleluiahs halleluiah nom +hallelujah hallelujah nom +hallelujahs hallelujah nom +halliard halliard nom +halliards halliard nom +hallmark hallmark nom +hallmarked hallmark ver +hallmarking hallmark ver +hallmarks hallmark nom +hallo hallo nom +halloed hallo ver +halloing hallo ver +halloo halloo nom +hallooed halloo ver +hallooing halloo ver +halloos halloo nom +hallos hallo nom +hallow hallow ver +hallowed hallow ver +hallowing hallow ver +hallows hallow ver +halls hall nom +hallstand hallstand nom +hallstands hallstand nom +hallucinate hallucinate ver +hallucinated hallucinate ver +hallucinates hallucinate ver +hallucinating hallucinate ver +hallucination hallucination nom +hallucinations hallucination nom +hallucinogen hallucinogen nom +hallucinogenic hallucinogenic nom +hallucinogenics hallucinogenic nom +hallucinogens hallucinogen nom +hallway hallway nom +hallways hallway nom +halm halm nom +halma halma nom +halmas halma nom +halms halm nom +halo halo nom +halobacteria halobacterium nom +halobacterium halobacterium nom +halocarbon halocarbon nom +halocarbons halocarbon nom +haloed halo ver +halogen halogen nom +halogens halogen nom +halogeton halogeton nom +halogetons halogeton nom +haloing halo ver +halophile halophile nom +halophiles halophile nom +halophyte halophyte nom +halophytes halophyte nom +halos halo nom +halothane halothane nom +halothanes halothane nom +halt halt nom +halted halt ver +halter halter nom +haltere haltere nom +haltered halter ver +halteres haltere nom +haltering halter ver +halters halter nom +halting halt ver +halts halt nom +halve halve ver +halved halve ver +halves half nom +halving halve ver +halyard halyard nom +halyards halyard nom +ham ham nom +hamadryad hamadryad nom +hamadryads hamadryad nom +hamate hamate nom +hamates hamate nom +hamburg hamburg nom +hamburger hamburger nom +hamburgers hamburger nom +hamburgs hamburg nom +hame hame nom +hames hame nom +hamlet hamlet nom +hamlets hamlet nom +hammed ham ver +hammer hammer nom +hammered hammer ver +hammerer hammerer nom +hammerers hammerer nom +hammerhead hammerhead nom +hammerheads hammerhead nom +hammering hammer ver +hammerings hammering nom +hammerlock hammerlock nom +hammerlocks hammerlock nom +hammers hammer nom +hammertoe hammertoe nom +hammertoes hammertoe nom +hammier hammy adj +hammiest hammy adj +hamming ham ver +hammock hammock nom +hammocks hammock nom +hammy hammy adj +hamper hamper nom +hampered hamper ver +hampering hamper ver +hampers hamper nom +hams ham nom +hamster hamster nom +hamsters hamster nom +hamstring hamstring nom +hamstringing hamstring ver +hamstrings hamstring nom +hamstrung hamstring ver +hand hand nom +handbag handbag nom +handbags handbag nom +handball handball nom +handballs handball nom +handbarrow handbarrow nom +handbarrows handbarrow nom +handbasket handbasket nom +handbaskets handbasket nom +handbell handbell nom +handbells handbell nom +handbill handbill nom +handbills handbill nom +handbook handbook nom +handbooks handbook nom +handcar handcar nom +handcars handcar nom +handcart handcart nom +handcarts handcart nom +handclap handclap nom +handclaps handclap nom +handclasp handclasp nom +handclasps handclasp nom +handcraft handcraft nom +handcrafted handcraft ver +handcrafting handcraft ver +handcrafts handcraft nom +handcuff handcuff nom +handcuffed handcuff ver +handcuffing handcuff ver +handcuffs handcuff nom +handed hand ver +handedness handedness nom +handednesses handedness nom +handful handful nom +handfuls handful nom +handgrip handgrip nom +handgrips handgrip nom +handgun handgun nom +handguns handgun nom +handhold handhold nom +handholds handhold nom +handicap handicap nom +handicapped handicap ver +handicapper handicapper nom +handicappers handicapper nom +handicapping handicap ver +handicaps handicap nom +handicraft handicraft nom +handicrafts handicraft nom +handier handy adj +handiest handy adj +handiness handiness nom +handinesses handiness nom +handing hand ver +handiwork handiwork nom +handiworks handiwork nom +handkerchief handkerchief nom +handkerchiefs handkerchief nom +handle handle nom +handlebar handlebar nom +handlebars handlebar nom +handled handle ver +handler handler nom +handlers handler nom +handles handle nom +handling handle ver +handloom handloom nom +handlooms handloom nom +handmaid handmaid nom +handmaiden handmaiden nom +handmaidens handmaiden nom +handmaids handmaid nom +handoff handoff nom +handoffs handoff nom +handout handout nom +handouts handout nom +handover handover nom +handovers handover nom +handpick handpick ver +handpicked handpick ver +handpicking handpick ver +handpicks handpick ver +handrail handrail nom +handrails handrail nom +hands hand nom +handsaw handsaw nom +handsaws handsaw nom +handsbreadth handsbreadth nom +handsbreadths handsbreadth nom +handset handset ver +handsets handset nom +handsetting handset ver +handshake handshake nom +handshaking handshaking nom +handshakings handshaking nom +handsome handsome adj +handsomeness handsomeness nom +handsomenesses handsomeness nom +handsomer handsome adj +handsomest handsome adj +handspike handspike nom +handspikes handspike nom +handspring handspring nom +handsprings handspring nom +handstand handstand nom +handstands handstand nom +handwheel handwheel nom +handwheels handwheel nom +handwork handwork nom +handworks handwork nom +handwrite handwrite ver +handwrites handwrite ver +handwriting handwrite ver +handwritings handwriting nom +handwritten handwrite ver +handwrote handwrite ver +handy handy adj +handyman handyman nom +handymen handyman nom +hang hang nom +hangar hangar nom +hangared hangar ver +hangaring hangar ver +hangars hangar nom +hangbird hangbird nom +hangbirds hangbird nom +hangdog hangdog nom +hangdogs hangdog nom +hanged hang ver +hanger hanger nom +hangers hanger nom +hanging hang ver +hangings hanging nom +hangman hangman nom +hangmen hangman nom +hangnail hangnail nom +hangnails hangnail nom +hangout hangout nom +hangouts hangout nom +hangover hangover nom +hangovers hangover nom +hangs hang nom +hangup hangup nom +hangups hangup nom +hank hank nom +hanked hank ver +hanker hanker ver +hankered hanker ver +hankering hanker ver +hankerings hankering nom +hankers hanker ver +hankie hankie nom +hankies hankie nom +hanking hank ver +hanks hank nom +hanky hanky nom +hansom hansom nom +hansoms hansom nom +hanuman hanuman nom +hanumans hanuman nom +haoma haoma nom +haomas haoma nom +hap hap nom +haphazard haphazard nom +haphazardness haphazardness nom +haphazardnesses haphazardness nom +haphazards haphazard nom +haplessness haplessness nom +haplessnesses haplessness nom +haploid haploid nom +haploids haploid nom +happed hap ver +happen happen ver +happened happen ver +happening happen ver +happenings happening nom +happens happens sw +happenstance happenstance nom +happenstances happenstance nom +happier happy adj +happiest happy adj +happiness happiness nom +happinesses happiness nom +happing hap ver +happy happy adj +haps hap nom +harangue harangue nom +harangued harangue ver +harangues harangue nom +haranguing harangue ver +harass harass ver +harassed harass ver +harasser harasser nom +harassers harasser nom +harasses harass ver +harassing harass ver +harassment harassment nom +harassments harassment nom +harbinger harbinger nom +harbingered harbinger ver +harbingering harbinger ver +harbingers harbinger nom +harbor harbor nom +harborage harborage nom +harborages harborage nom +harbored harbor ver +harboring harbor ver +harbors harbor nom +harbour harbour nom +harbourage harbourage nom +harbourages harbourage nom +harboured harbour ver +harbouring harbour ver +harbours harbour nom +hard hard adj +hardback hardback nom +hardbacks hardback nom +hardbake hardbake nom +hardbakes hardbake nom +hardball hardball nom +hardballs hardball nom +hardboard hardboard nom +hardboards hardboard nom +hardcore hardcore nom +hardcores hardcore nom +hardcover hardcover nom +hardcovers hardcover nom +harden harden ver +hardened harden ver +hardener hardener nom +hardeners hardener nom +hardening harden ver +hardenings hardening nom +hardens harden ver +harder hard adj +hardest hard adj +hardhat hardhat nom +hardhats hardhat nom +hardheadedness hardheadedness nom +hardheadednesses hardheadedness nom +hardheartedness hardheartedness nom +hardheartednesses hardheartedness nom +hardier hardy adj +hardies hardy nom +hardiest hardy adj +hardihood hardihood nom +hardihoods hardihood nom +hardiness hardiness nom +hardinesses hardiness nom +hardinggrass hardinggrass nom +hardinggrasses hardinggrass nom +hardliner hardliner nom +hardliners hardliner nom +hardly hardly sw +hardness hardness nom +hardnesses hardness nom +hardpan hardpan nom +hardpans hardpan nom +hards hard nom +hardship hardship nom +hardships hardship nom +hardstand hardstand nom +hardstands hardstand nom +hardtack hardtack nom +hardtacks hardtack nom +hardtop hardtop nom +hardtops hardtop nom +hardware hardware nom +hardwareman hardwareman nom +hardwaremen hardwareman nom +hardwares hardware nom +hardwood hardwood nom +hardwoods hardwood nom +hardy hardy adj +hare hare nom +harebell harebell nom +harebells harebell nom +hared hare ver +hareem hareem nom +hareems hareem nom +harelip harelip nom +harelips harelip nom +harem harem nom +harems harem nom +hares hare nom +haricot haricot nom +haricots haricot nom +haring hare ver +hark hark ver +harked hark ver +harken harken ver +harkened harken ver +harkening harken ver +harkens harken ver +harking hark ver +harks hark ver +harlequin harlequin nom +harlequinade harlequinade nom +harlequinades harlequinade nom +harlequins harlequin nom +harlot harlot nom +harlotries harlotry nom +harlotry harlotry nom +harlots harlot nom +harm harm nom +harmattan harmattan nom +harmattans harmattan nom +harmed harm ver +harmfulness harmfulness nom +harmfulnesses harmfulness nom +harming harm ver +harmlessness harmlessness nom +harmlessnesses harmlessness nom +harmonic harmonic nom +harmonica harmonica nom +harmonicas harmonica nom +harmonics harmonic nom +harmonies harmony nom +harmoniousness harmoniousness nom +harmoniousnesses harmoniousness nom +harmonisation harmonisation nom +harmonisations harmonisation nom +harmonium harmonium nom +harmoniums harmonium nom +harmonization harmonization nom +harmonizations harmonization nom +harmonize harmonize ver +harmonized harmonize ver +harmonizer harmonizer nom +harmonizers harmonizer nom +harmonizes harmonize ver +harmonizing harmonize ver +harmony harmony nom +harms harm nom +harness harness nom +harnessed harness ver +harnesses harness nom +harnessing harness ver +harp harp nom +harped harp ver +harper harper nom +harpers harper nom +harpies harpy nom +harping harp ver +harpist harpist nom +harpists harpist nom +harpoon harpoon nom +harpooned harpoon ver +harpooneer harpooneer nom +harpooneers harpooneer nom +harpooner harpooner nom +harpooners harpooner nom +harpooning harpoon ver +harpoons harpoon nom +harps harp nom +harpsichord harpsichord nom +harpsichordist harpsichordist nom +harpsichordists harpsichordist nom +harpsichords harpsichord nom +harpy harpy nom +harquebus harquebus nom +harquebuses harquebus nom +harridan harridan nom +harridans harridan nom +harried harry ver +harrier harrier nom +harriers harrier nom +harries harry ver +harrow harrow nom +harrowed harrow ver +harrowing harrow ver +harrows harrow nom +harry harry ver +harrying harry ver +harsh harsh adj +harshen harshen ver +harshened harshen ver +harshening harshen ver +harshens harshen ver +harsher harsh adj +harshest harsh adj +harshness harshness nom +harshnesses harshness nom +hart hart nom +hartebeest hartebeest nom +hartebeests hartebeest nom +harts hart nom +harvest harvest nom +harvested harvest ver +harvester harvester nom +harvesters harvester nom +harvestfish harvestfish nom +harvesting harvest ver +harvestman harvestman nom +harvestmen harvestman nom +harvests harvest nom +has has sw +hash hash nom +hashed hash ver +hasheesh hasheesh nom +hasheeshes hasheesh nom +hashes hash nom +hashing hash ver +hashish hashish nom +hashishes hashish nom +haslet haslet nom +haslets haslet nom +hasn_t hasn_t sw +hasp hasp nom +hasped hasp ver +hasping hasp ver +hasps hasp nom +hassle hassle nom +hassled hassle ver +hassles hassle nom +hassling hassle ver +hassock hassock nom +hassocks hassock nom +haste haste nom +hasted haste ver +hasten hasten ver +hastened hasten ver +hastening hasten ver +hastens hasten ver +hastes haste nom +hastier hasty adj +hastiest hasty adj +hastiness hastiness nom +hastinesses hastiness nom +hasting haste ver +hasty hasty adj +hat hat nom +hatband hatband nom +hatbands hatband nom +hatbox hatbox nom +hatboxes hatbox nom +hatch hatch nom +hatchback hatchback nom +hatchbacks hatchback nom +hatcheck hatcheck nom +hatchecks hatcheck nom +hatched hatch ver +hatchel hatchel ver +hatcheled hatchel ver +hatcheling hatchel ver +hatchels hatchel ver +hatcheries hatchery nom +hatchery hatchery nom +hatches hatch nom +hatchet hatchet nom +hatcheted hatchet ver +hatcheting hatchet ver +hatchets hatchet nom +hatching hatch ver +hatchings hatching nom +hatchling hatchling nom +hatchway hatchway nom +hatchways hatchway nom +hate hate nom +hated hate ver +hatefulness hatefulness nom +hatefulnesses hatefulness nom +hatemonger hatemonger nom +hatemongers hatemonger nom +hater hater nom +haters hater nom +hates hate nom +hatful hatful nom +hatfuls hatful nom +hating hate ver +hatmaker hatmaker nom +hatmakers hatmaker nom +hatpin hatpin nom +hatpins hatpin nom +hatrack hatrack nom +hatracks hatrack nom +hatred hatred nom +hatreds hatred nom +hats hat nom +hatted hat ver +hatter hatter nom +hatters hatter nom +hatting hat ver +hauberk hauberk nom +hauberks hauberk nom +haughtier haughty adj +haughtiest haughty adj +haughtiness haughtiness nom +haughtinesses haughtiness nom +haughty haughty adj +haul haul nom +haulage haulage nom +haulages haulage nom +hauled haul ver +hauler hauler nom +haulers hauler nom +haulier haulier nom +hauliers haulier nom +hauling haul ver +haulm haulm nom +haulms haulm nom +hauls haul nom +haunch haunch nom +haunches haunch nom +haunt haunt nom +haunted haunt ver +haunter haunter nom +haunters haunter nom +haunting haunt ver +hauntings haunting nom +haunts haunt nom +hausen hausen nom +hausens hausen nom +haustoria haustorium nom +haustorium haustorium nom +hautboy hautboy nom +hautboys hautboy nom +hauteur hauteur nom +hauteurs hauteur nom +have have sw +haven haven nom +haven_t haven_t sw +havened haven ver +havening haven ver +havens haven nom +haversack haversack nom +haversacks haversack nom +haves haves nom +having having sw +havoc havoc nom +havocked havoc ver +havocking havoc ver +havocs havoc nom +haw haw nom +hawed haw ver +hawfinch hawfinch nom +hawfinches hawfinch nom +hawing haw ver +hawk hawk nom +hawkbill hawkbill nom +hawkbills hawkbill nom +hawkbit hawkbit nom +hawkbits hawkbit nom +hawked hawk ver +hawker hawker nom +hawkers hawker nom +hawking hawk ver +hawkings hawking nom +hawkishness hawkishness nom +hawkishnesses hawkishness nom +hawkmoth hawkmoth nom +hawkmoths hawkmoth nom +hawks hawk nom +hawksbill hawksbill nom +hawksbills hawksbill nom +hawkshaw hawkshaw nom +hawkshaws hawkshaw nom +hawkweed hawkweed nom +hawkweeds hawkweed nom +haws haw nom +hawse hawse nom +hawsehole hawsehole nom +hawseholes hawsehole nom +hawsepipe hawsepipe nom +hawsepipes hawsepipe nom +hawser hawser nom +hawsers hawser nom +hawses hawse nom +hawthorn hawthorn nom +hawthorns hawthorn nom +hay hay nom +haycock haycock nom +haycocks haycock nom +hayed hay ver +hayfield hayfield nom +hayfields hayfield nom +hayfork hayfork nom +hayforks hayfork nom +haying hay ver +hayings haying nom +hayloft hayloft nom +haylofts hayloft nom +haymaker haymaker nom +haymakers haymaker nom +haymaking haymaking nom +haymakings haymaking nom +haymow haymow nom +haymows haymow nom +hayrack hayrack nom +hayracks hayrack nom +hayrick hayrick nom +hayricks hayrick nom +hayride hayride nom +hayrides hayride nom +hays hay nom +hayseed hayseed nom +hayseeds hayseed nom +haystack haystack nom +haystacks haystack nom +haywire haywire nom +haywires haywire nom +hazan hazan nom +hazans hazan nom +hazard hazard nom +hazarded hazard ver +hazarding hazard ver +hazardousness hazardousness nom +hazardousnesses hazardousness nom +hazards hazard nom +haze haze nom +hazed haze ver +hazel hazel nom +hazelnut hazelnut nom +hazelnuts hazelnut nom +hazels hazel nom +hazer hazer nom +hazers hazer nom +hazes haze nom +hazier hazy adj +haziest hazy adj +haziness haziness nom +hazinesses haziness nom +hazing haze ver +hazings hazing nom +hazy hazy adj +he he sw +he_s he_s sw +head head nom +headache headache nom +headaches headache nom +headband headband nom +headbands headband nom +headboard headboard nom +headboards headboard nom +headcheese headcheese nom +headcheeses headcheese nom +headcount headcount nom +headcounts headcount nom +headdress headdress nom +headdresses headdress nom +headed head ver +header header nom +headers header nom +headfast headfast nom +headfasts headfast nom +headfish headfish nom +headful headful nom +headfuls headful nom +headgear headgear nom +headgears headgear nom +headhunt headhunt ver +headhunted headhunt ver +headhunter headhunter nom +headhunters headhunter nom +headhunting headhunt ver +headhuntings headhunting nom +headhunts headhunt ver +headier heady adj +headiest heady adj +headiness headiness nom +headinesses headiness nom +heading head ver +headings heading nom +headlamp headlamp nom +headlamps headlamp nom +headland headland nom +headlands headland nom +headlight headlight nom +headlights headlight nom +headline headline nom +headlined headline ver +headliner headliner nom +headliners headliner nom +headlines headline nom +headlining headline ver +headlock headlock nom +headlocks headlock nom +headman headman nom +headmaster headmaster nom +headmasters headmaster nom +headmastership headmastership nom +headmasterships headmastership nom +headmen headman nom +headmistress headmistress nom +headmistresses headmistress nom +headphone headphone nom +headphones headphone nom +headpiece headpiece nom +headpieces headpiece nom +headpin headpin nom +headpins headpin nom +headquarter headquarter ver +headquartered headquarter ver +headquartering headquarter ver +headquarters headquarter ver +headrace headrace nom +headraces headrace nom +headrest headrest nom +headrests headrest nom +headroom headroom nom +headrooms headroom nom +heads head nom +headsail headsail nom +headsails headsail nom +headscarf headscarf nom +headscarves headscarf nom +headset headset nom +headsets headset nom +headshake headshake nom +headshaking headshaking nom +headshakings headshaking nom +headship headship nom +headships headship nom +headshot headshot nom +headshots headshot nom +headshrinker headshrinker nom +headshrinkers headshrinker nom +headsman headsman nom +headsmen headsman nom +headspace headspace nom +headspaces headspace nom +headspring headspring nom +headsprings headspring nom +headstall headstall nom +headstalls headstall nom +headstand headstand nom +headstands headstand nom +headstock headstock nom +headstocks headstock nom +headstone headstone nom +headstones headstone nom +headwaiter headwaiter nom +headwaiters headwaiter nom +headway headway nom +headways headway nom +headwind headwind nom +headwinds headwind nom +headword headword nom +headwords headword nom +heady heady adj +heal heal ver +healed heal ver +healer healer nom +healers healer nom +healing heal ver +healings healing nom +heals heal ver +health health nom +healthfulness healthfulness nom +healthfulnesses healthfulness nom +healthier healthy adj +healthiest healthy adj +healthiness healthiness nom +healthinesses healthiness nom +healths health nom +healthy healthy adj +heap heap nom +heaped heap ver +heaping heap ver +heaps heap nom +hear hear ver +heard hear ver +hearer hearer nom +hearers hearer nom +hearing hear ver +hearings hearing nom +hearken hearken ver +hearkened hearken ver +hearkening hearken ver +hearkens hearken ver +hears hear ver +hearsay hearsay nom +hearsays hearsay nom +hearse hearse nom +hearses hearse nom +heart heart nom +heartache heartache nom +heartaches heartache nom +heartbeat heartbeat nom +heartbeats heartbeat nom +heartbreak heartbreak nom +heartbreaks heartbreak nom +heartburn heartburn nom +heartburning heartburning nom +heartburnings heartburning nom +heartburns heartburn nom +hearten hearten ver +heartened hearten ver +heartening hearten ver +heartens hearten ver +hearth hearth nom +hearthrug hearthrug nom +hearthrugs hearthrug nom +hearths hearth nom +hearthstone hearthstone nom +hearthstones hearthstone nom +heartier hearty adj +hearties hearty nom +heartiest hearty adj +heartiness heartiness nom +heartinesses heartiness nom +heartland heartland nom +heartlands heartland nom +heartleaf heartleaf nom +heartleafs heartleaf nom +heartlessness heartlessness nom +heartlessnesses heartlessness nom +hearts heart nom +heartsease heartsease nom +heartseases heartsease nom +heartseed heartseed nom +heartseeds heartseed nom +heartsickness heartsickness nom +heartsicknesses heartsickness nom +heartthrob heartthrob nom +heartthrobs heartthrob nom +heartwood heartwood nom +heartwoods heartwood nom +hearty hearty adj +heat heat nom +heated heat ver +heater heater nom +heaters heater nom +heath heath nom +heathen heathen nom +heathendom heathendom nom +heathendoms heathendom nom +heathenism heathenism nom +heathenisms heathenism nom +heathens heathen nom +heather heather nom +heathers heather nom +heathfowl heathfowl nom +heathland heathland nom +heathlands heathland nom +heaths heath nom +heating heat ver +heatings heating nom +heats heat nom +heatstroke heatstroke nom +heatstrokes heatstroke nom +heaume heaume nom +heaumes heaume nom +heave heave nom +heaved heave ver +heaven heaven nom +heavenlier heavenly adj +heavenliest heavenly adj +heavenly heavenly adj +heavens heaven nom +heaver heaver nom +heavers heaver nom +heaves heave nom +heavier heavy adj +heavies heavy nom +heaviest heavy adj +heaviness heaviness nom +heavinesses heaviness nom +heaving heave ver +heavings heaving nom +heavy heavy adj +heavyheartedness heavyheartedness nom +heavyheartednesses heavyheartedness nom +heavyweight heavyweight nom +heavyweights heavyweight nom +hebdomad hebdomad nom +hebdomads hebdomad nom +hebephrenia hebephrenia nom +hebephrenias hebephrenia nom +hebetude hebetude nom +hebetudes hebetude nom +hecatomb hecatomb nom +hecatombs hecatomb nom +heck heck nom +heckelphone heckelphone nom +heckelphones heckelphone nom +heckle heckle nom +heckled heckle ver +heckler heckler nom +hecklers heckler nom +heckles heckle nom +heckling heckle ver +hecks heck nom +hectare hectare nom +hectares hectare nom +hectogram hectogram nom +hectograms hectogram nom +hectograph hectograph nom +hectographed hectograph ver +hectographing hectograph ver +hectographs hectograph nom +hectoliter hectoliter nom +hectoliters hectoliter nom +hectolitre hectolitre nom +hectolitres hectolitre nom +hectometer hectometer nom +hectometers hectometer nom +hectometre hectometre nom +hectometres hectometre nom +hector hector nom +hectored hector ver +hectoring hector ver +hectors hector nom +hedge hedge nom +hedged hedge ver +hedgehog hedgehog nom +hedgehogs hedgehog nom +hedgehop hedgehop ver +hedgehopped hedgehop ver +hedgehopping hedgehop ver +hedgehops hedgehop ver +hedger hedger nom +hedgerow hedgerow nom +hedgerows hedgerow nom +hedgers hedger nom +hedges hedge nom +hedging hedge ver +hedgings hedging nom +hedonism hedonism nom +hedonisms hedonism nom +hedonist hedonist nom +hedonists hedonist nom +heed heed nom +heeded heed ver +heedfulness heedfulness nom +heedfulnesses heedfulness nom +heeding heed ver +heedlessness heedlessness nom +heedlessnesses heedlessness nom +heeds heed nom +heehaw heehaw nom +heehawed heehaw ver +heehawing heehaw ver +heehaws heehaw nom +heel heel nom +heeled heel ver +heeling heel ver +heels heel nom +heft heft nom +hefted heft ver +heftier hefty adj +heftiest hefty adj +heftiness heftiness nom +heftinesses heftiness nom +hefting heft ver +hefts heft nom +hefty hefty adj +hegari hegari nom +hegaris hegari nom +hegemonies hegemony nom +hegemony hegemony nom +hegira hegira nom +hegiras hegira nom +heifer heifer nom +heifers heifer nom +height height nom +heighten heighten ver +heightened heighten ver +heightening heighten ver +heightens heighten ver +heights height nom +heinousness heinousness nom +heinousnesses heinousness nom +heir heir nom +heired heir ver +heiress heiress nom +heiresses heiress nom +heiring heir ver +heirloom heirloom nom +heirlooms heirloom nom +heirs heir nom +heist heist nom +heisted heist ver +heisting heist ver +heists heist nom +hejira hejira nom +hejiras hejira nom +held hold ver +helianthus helianthus nom +helianthuses helianthus nom +helices helix nom +helicon helicon nom +helicons helicon nom +helicopter helicopter nom +helicoptered helicopter ver +helicoptering helicopter ver +helicopters helicopter nom +heliogram heliogram nom +heliograms heliogram nom +heliograph heliograph nom +heliographed heliograph ver +heliographing heliograph ver +heliographs heliograph nom +heliolatries heliolatry nom +heliolatry heliolatry nom +heliosphere heliosphere nom +heliospheres heliosphere nom +heliotrope heliotrope nom +heliotropes heliotrope nom +heliotropism heliotropism nom +heliotropisms heliotropism nom +heliotype heliotype nom +heliotypes heliotype nom +heliozoan heliozoan nom +heliozoans heliozoan nom +heliport heliport nom +heliports heliport nom +helium helium nom +heliums helium nom +helix helix nom +hell hell nom +hellbender hellbender nom +hellbenders hellbender nom +hellcat hellcat nom +hellcats hellcat nom +hellebore hellebore nom +hellebores hellebore nom +heller heller nom +helleri helleri nom +helleris helleri nom +hellers heller nom +hellfire hellfire nom +hellfires hellfire nom +hellhole hellhole nom +hellholes hellhole nom +hellhound hellhound nom +hellhounds hellhound nom +hellion hellion nom +hellions hellion nom +hellishness hellishness nom +hellishnesses hellishness nom +hello hello sw +helloed hello ver +helloing hello ver +hellos hello nom +hells hell nom +helm helm nom +helmed helm ver +helmet helmet nom +helmets helmet nom +helming helm ver +helminth helminth nom +helminthic helminthic nom +helminthics helminthic nom +helminths helminth nom +helms helm nom +helmsman helmsman nom +helmsmen helmsman nom +helot helot nom +helots helot nom +help help sw +helped help ver +helper helper nom +helpers helper nom +helpfulness helpfulness nom +helpfulnesses helpfulness nom +helping help ver +helpings helping nom +helplessness helplessness nom +helplessnesses helplessness nom +helpmate helpmate nom +helpmates helpmate nom +helpmeet helpmeet nom +helpmeets helpmeet nom +helps help nom +helve helve nom +helved helve ver +helves helve nom +helving helve ver +hem hem nom +hemangioma hemangioma nom +hemangiomas hemangioma nom +hematite hematite nom +hematites hematite nom +hematologies hematology nom +hematologist hematologist nom +hematologists hematologist nom +hematology hematology nom +hematoma hematoma nom +hematomas hematoma nom +hematuria hematuria nom +hematurias hematuria nom +heme heme nom +hemeralopia hemeralopia nom +hemeralopias hemeralopia nom +hemes heme nom +hemiacetal hemiacetal nom +hemiacetals hemiacetal nom +hemicrania hemicrania nom +hemicranias hemicrania nom +hemicycle hemicycle nom +hemicycles hemicycle nom +hemidemisemiquaver hemidemisemiquaver nom +hemidemisemiquavers hemidemisemiquaver nom +hemimorphite hemimorphite nom +hemimorphites hemimorphite nom +hemiparasite hemiparasite nom +hemiparasites hemiparasite nom +hemiplegia hemiplegia nom +hemiplegias hemiplegia nom +hemiplegic hemiplegic nom +hemiplegics hemiplegic nom +hemipode hemipode nom +hemipodes hemipode nom +hemipteran hemipteran nom +hemipterans hemipteran nom +hemipteron hemipteron nom +hemipterons hemipteron nom +hemisphere hemisphere nom +hemispheres hemisphere nom +hemline hemline nom +hemlines hemline nom +hemlock hemlock nom +hemlocks hemlock nom +hemmed hem ver +hemmer hemmer nom +hemmers hemmer nom +hemming hem ver +hemodialyses hemodialysis nom +hemodialysis hemodialysis nom +hemoglobin hemoglobin nom +hemoglobinopathies hemoglobinopathy nom +hemoglobinopathy hemoglobinopathy nom +hemoglobins hemoglobin nom +hemolyses hemolysis nom +hemolysin hemolysin nom +hemolysins hemolysin nom +hemolysis hemolysis nom +hemophilia hemophilia nom +hemophiliac hemophiliac nom +hemophiliacs hemophiliac nom +hemophilias hemophilia nom +hemorrhage hemorrhage nom +hemorrhaged hemorrhage ver +hemorrhages hemorrhage nom +hemorrhaging hemorrhage ver +hemorrhoid hemorrhoid nom +hemorrhoids hemorrhoid nom +hemosiderin hemosiderin nom +hemosiderins hemosiderin nom +hemostat hemostat nom +hemostats hemostat nom +hemp hemp nom +hemps hemp nom +hems hem nom +hemstitch hemstitch nom +hemstitched hemstitch ver +hemstitches hemstitch nom +hemstitching hemstitch ver +hen hen nom +henbane henbane nom +henbanes henbane nom +henbit henbit nom +henbits henbit nom +hence hence sw +henchman henchman nom +henchmen henchman nom +hencoop hencoop nom +hencoops hencoop nom +hendiadys hendiadys nom +hendiadyses hendiadys nom +henhouse henhouse nom +henhouses henhouse nom +henna henna nom +hennaed henna ver +hennaing henna ver +hennas henna nom +henpeck henpeck ver +henpecked henpeck ver +henpecking henpeck ver +henpecks henpeck ver +henries henry nom +henroost henroost nom +henroosts henroost nom +henry henry nom +hens hen nom +hep hep adj +heparin heparin nom +heparins heparin nom +hepatica hepatica nom +hepaticas hepatica nom +hepatitides hepatitis nom +hepatitis hepatitis nom +hepper hep adj +heppest hep adj +heptad heptad nom +heptads heptad nom +heptagon heptagon nom +heptagons heptagon nom +heptane heptane nom +heptanes heptane nom +heptathlon heptathlon nom +heptathlons heptathlon nom +her her sw +herald herald nom +heralded herald ver +heralding herald ver +heraldries heraldry nom +heraldry heraldry nom +heralds herald nom +herb herb nom +herbage herbage nom +herbages herbage nom +herbal herbal nom +herbalist herbalist nom +herbalists herbalist nom +herbals herbal nom +herbicide herbicide nom +herbicides herbicide nom +herbivore herbivore nom +herbivores herbivore nom +herbs herb nom +herd herd nom +herded herd ver +herder herder nom +herders herder nom +herding herd ver +herds herd nom +herdsman herdsman nom +herdsmen herdsman nom +here here sw +here_s here_s sw +hereafter hereafter sw +hereafters hereafter nom +hereby hereby sw +hereditament hereditament nom +hereditaments hereditament nom +heredities heredity nom +heredity heredity nom +herein herein sw +heres here nom +heresies heresy nom +heresy heresy nom +heretic heretic nom +heretics heretic nom +hereupon hereupon sw +heritage heritage nom +heritages heritage nom +heritor heritor nom +heritors heritor nom +hermaphrodite hermaphrodite nom +hermaphrodites hermaphrodite nom +hermaphroditism hermaphroditism nom +hermaphroditisms hermaphroditism nom +hermit hermit nom +hermitage hermitage nom +hermitages hermitage nom +hermits hermit nom +hernia hernia nom +hernias hernia nom +herniate herniate ver +herniated herniate ver +herniates herniate ver +herniating herniate ver +herniation herniation nom +herniations herniation nom +hero hero nom +heroes hero nom +heroic heroic nom +heroics heroic nom +heroin heroin nom +heroine heroine nom +heroines heroine nom +heroins heroin nom +heroism heroism nom +heroisms heroism nom +heron heron nom +heronries heronry nom +heronry heronry nom +herons heron nom +herpes herpes nom +herpeses herpes nom +herpetologies herpetology nom +herpetologist herpetologist nom +herpetologists herpetologist nom +herpetology herpetology nom +herring herring nom +herringbone herringbone nom +herringbones herringbone nom +hers hers sw +herself herself sw +hertz hertz nom +hes hes nom +hesitance hesitance nom +hesitances hesitance nom +hesitancies hesitancy nom +hesitancy hesitancy nom +hesitate hesitate ver +hesitated hesitate ver +hesitater hesitater nom +hesitaters hesitater nom +hesitates hesitate ver +hesitating hesitate ver +hesitation hesitation nom +hesitations hesitation nom +hesitator hesitator nom +hesitators hesitator nom +hessian hessian nom +hessians hessian nom +hessonite hessonite nom +hessonites hessonite nom +heterodoxies heterodoxy nom +heterodoxy heterodoxy nom +heterodyne heterodyne ver +heterodyned heterodyne ver +heterodynes heterodyne ver +heterodyning heterodyne ver +heterogeneities heterogeneity nom +heterogeneity heterogeneity nom +heterogeneousness heterogeneousness nom +heterogeneousnesses heterogeneousness nom +heterogeneses heterogenesis nom +heterogenesis heterogenesis nom +heterograft heterograft nom +heterografts heterograft nom +heteronym heteronym nom +heteronyms heteronym nom +heterosexism heterosexism nom +heterosexisms heterosexism nom +heterosexual heterosexual nom +heterosexualities heterosexuality nom +heterosexuality heterosexuality nom +heterosexuals heterosexual nom +heterospories heterospory nom +heterospory heterospory nom +heth heth nom +heths heth nom +heuristic heuristic nom +heuristics heuristic nom +hew hew ver +hewed hew ver +hewer hewer nom +hewers hewer nom +hewing hew ver +hews hew ver +hex hex nom +hexad hexad nom +hexads hexad nom +hexagon hexagon nom +hexagons hexagon nom +hexagram hexagram nom +hexagrams hexagram nom +hexahedron hexahedron nom +hexahedrons hexahedron nom +hexameter hexameter nom +hexameters hexameter nom +hexane hexane nom +hexanes hexane nom +hexed hex ver +hexes hex nom +hexing hex ver +hexose hexose nom +hexoses hexose nom +heyday heyday nom +heydays heyday nom +hi hi sw +hiatus hiatus nom +hiatuses hiatus nom +hibachi hibachi nom +hibachis hibachi nom +hibernate hibernate ver +hibernated hibernate ver +hibernates hibernate ver +hibernating hibernate ver +hibernation hibernation nom +hibernations hibernation nom +hibernator hibernator nom +hibernators hibernator nom +hibiscus hibiscus nom +hibiscuses hibiscus nom +hiccough hiccough nom +hiccoughed hiccough ver +hiccoughing hiccough ver +hiccoughs hiccough nom +hiccup hiccup nom +hiccuped hiccup ver +hiccuping hiccup ver +hiccups hiccup nom +hick hick nom +hickey hickey nom +hickeys hickey nom +hickories hickory nom +hickory hickory nom +hicks hick nom +hid hide ver +hidden hide ver +hiddenite hiddenite nom +hiddenites hiddenite nom +hide hide nom +hideaway hideaway nom +hideaways hideaway nom +hideousness hideousness nom +hideousnesses hideousness nom +hideout hideout nom +hideouts hideout nom +hider hider nom +hiders hider nom +hides hide nom +hiding hide ver +hidings hiding nom +hidroses hidrosis nom +hidrosis hidrosis nom +hie hie ver +hied hie ver +hieing hie ver +hierarch hierarch nom +hierarchies hierarchy nom +hierarchs hierarch nom +hierarchy hierarchy nom +hieroglyph hieroglyph nom +hieroglyphic hieroglyphic nom +hieroglyphics hieroglyphic nom +hieroglyphs hieroglyph nom +hies hie ver +higgle higgle ver +higgled higgle ver +higgles higgle ver +higgling higgle ver +high high adj +highball highball nom +highballed highball ver +highballing highball ver +highballs highball nom +highbinder highbinder nom +highbinders highbinder nom +highboy highboy nom +highboys highboy nom +highbrow highbrow nom +highbrows highbrow nom +highchair highchair nom +highchairs highchair nom +higher high adj +highest high adj +highflier highflier nom +highfliers highflier nom +highflyer highflyer nom +highflyers highflyer nom +highhandedness highhandedness nom +highhandednesses highhandedness nom +highjack highjack nom +highjacked highjack ver +highjacker highjacker nom +highjackers highjacker nom +highjacking highjack ver +highjacks highjack nom +highland highland nom +highlander highlander nom +highlanders highlander nom +highlands highland nom +highlight highlight nom +highlighted highlight ver +highlighter highlighter nom +highlighters highlighter nom +highlighting highlight ver +highlights highlight nom +highness highness nom +highnesses highness nom +highroad highroad nom +highroads highroad nom +highs high nom +hightail hightail ver +hightailed hightail ver +hightailing hightail ver +hightails hightail ver +highway highway nom +highwayman highwayman nom +highwaymen highwayman nom +highways highway nom +hijack hijack nom +hijacked hijack ver +hijacker hijacker nom +hijackers hijacker nom +hijacking hijack ver +hijackings hijacking nom +hijacks hijack nom +hike hike nom +hiked hike ver +hiker hiker nom +hikers hiker nom +hikes hike nom +hiking hike ver +hila hilum nom +hilariousness hilariousness nom +hilariousnesses hilariousness nom +hilarities hilarity nom +hilarity hilarity nom +hili hilus nom +hill hill nom +hillbillies hillbilly nom +hillbilly hillbilly nom +hilled hill ver +hillier hilly adj +hilliest hilly adj +hilliness hilliness nom +hillinesses hilliness nom +hilling hill ver +hillock hillock nom +hillocks hillock nom +hills hill nom +hillside hillside nom +hillsides hillside nom +hilltop hilltop nom +hilltopped hilltop ver +hilltopping hilltop ver +hilltops hilltop nom +hilly hilly adj +hilt hilt nom +hilted hilt ver +hilting hilt ver +hilts hilt nom +hilum hilum nom +hilus hilus nom +him him sw +hims him nom +himself himself sw +hin hin nom +hind hind nom +hindbrain hindbrain nom +hindbrains hindbrain nom +hinder hinder ver +hindered hinder ver +hindering hinder ver +hinders hinder ver +hindgut hindgut nom +hindguts hindgut nom +hindquarter hindquarter nom +hindquarters hindquarter nom +hindrance hindrance nom +hindrances hindrance nom +hinds hind nom +hindsight hindsight nom +hindsights hindsight nom +hinge hinge nom +hinged hinge ver +hinges hinge nom +hinging hinge ver +hinnies hinny nom +hinny hinny nom +hins hin nom +hint hint nom +hinted hint ver +hinter hinter nom +hinterland hinterland nom +hinterlands hinterland nom +hinters hinter nom +hinting hint ver +hints hint nom +hip hip adj +hipbone hipbone nom +hipbones hipbone nom +hipline hipline nom +hiplines hipline nom +hipness hipness nom +hipnesses hipness nom +hippeastrum hippeastrum nom +hippeastrums hippeastrum nom +hipped hip ver +hipper hip adj +hippest hip adj +hippie hippie nom +hippier hippy adj +hippies hippie nom +hippiest hippy adj +hipping hip ver +hippo hippo nom +hippocampi hippocampus nom +hippocampus hippocampus nom +hippodrome hippodrome nom +hippodromes hippodrome nom +hippopotamus hippopotamus nom +hippopotamuses hippopotamus nom +hippos hippo nom +hippy hippy adj +hips hip nom +hire hire nom +hired hire ver +hireling hireling nom +hirer hirer nom +hirers hirer nom +hires hire nom +hiring hire ver +hirings hiring nom +hirsuteness hirsuteness nom +hirsutenesses hirsuteness nom +hirsutism hirsutism nom +hirsutisms hirsutism nom +hirudinean hirudinean nom +hirudineans hirudinean nom +his his sw +hiss hiss nom +hissed hiss ver +hisses hisses nom +hissing hiss ver +hissings hissing nom +histaminase histaminase nom +histaminases histaminase nom +histamine histamine nom +histamines histamine nom +histidine histidine nom +histidines histidine nom +histiocyte histiocyte nom +histiocytes histiocyte nom +histogram histogram nom +histograms histogram nom +histologies histology nom +histologist histologist nom +histologists histologist nom +histology histology nom +histone histone nom +histones histone nom +historian historian nom +historians historian nom +historicalness historicalness nom +historicalnesses historicalness nom +historicities historicity nom +historicity historicity nom +histories history nom +historiographer historiographer nom +historiographers historiographer nom +historiographies historiography nom +historiography historiography nom +history history nom +histrionic histrionic nom +histrionics histrionic nom +hit hit ver +hitch hitch nom +hitched hitch ver +hitcher hitcher nom +hitchers hitcher nom +hitches hitch nom +hitchhike hitchhike ver +hitchhiked hitchhike ver +hitchhiker hitchhiker nom +hitchhikers hitchhiker nom +hitchhikes hitchhike ver +hitchhiking hitchhike ver +hitching hitch ver +hither hither sw +hits hit nom +hitter hitter nom +hitters hitter nom +hitting hit ver +hive hive nom +hived hive ver +hives hive nom +hiving hive ver +ho ho nom +hoactzin hoactzin nom +hoactzins hoactzin nom +hoagie hoagie nom +hoagies hoagie nom +hoagy hoagy nom +hoar hoar nom +hoard hoard nom +hoarded hoard ver +hoarder hoarder nom +hoarders hoarder nom +hoarding hoard ver +hoardings hoarding nom +hoards hoard nom +hoarfrost hoarfrost nom +hoarfrosts hoarfrost nom +hoarier hoary adj +hoariest hoary adj +hoariness hoariness nom +hoarinesses hoariness nom +hoars hoar nom +hoarse hoarse adj +hoarseness hoarseness nom +hoarsenesses hoarseness nom +hoarser hoarse adj +hoarsest hoarse adj +hoary hoary adj +hoatzin hoatzin nom +hoatzins hoatzin nom +hoax hoax nom +hoaxed hoax ver +hoaxer hoaxer nom +hoaxers hoaxer nom +hoaxes hoax nom +hoaxing hoax ver +hob hob nom +hobbed hob ver +hobbies hobby nom +hobbing hob ver +hobble hobble nom +hobbled hobble ver +hobbledehoy hobbledehoy nom +hobbledehoys hobbledehoy nom +hobbler hobbler nom +hobblers hobbler nom +hobbles hobble nom +hobbling hobble ver +hobby hobby nom +hobbyhorse hobbyhorse nom +hobbyhorses hobbyhorse nom +hobbyist hobbyist nom +hobbyists hobbyist nom +hobgoblin hobgoblin nom +hobgoblins hobgoblin nom +hobnail hobnail nom +hobnailed hobnail ver +hobnailing hobnail ver +hobnails hobnail nom +hobnob hobnob ver +hobnobbed hobnob ver +hobnobbing hobnob ver +hobnobs hobnob ver +hobo hobo nom +hobos hobo nom +hobs hob nom +hock hock nom +hocked hock ver +hockey hockey nom +hockeys hockey nom +hocking hock ver +hocks hock nom +hockshop hockshop nom +hockshops hockshop nom +hod hod nom +hodgepodge hodgepodge nom +hodgepodges hodgepodge nom +hodman hodman nom +hodmen hodman nom +hodometer hodometer nom +hodometers hodometer nom +hods hod nom +hoe hoe nom +hoecake hoecake nom +hoecakes hoecake nom +hoed hoe ver +hoedown hoedown nom +hoedowns hoedown nom +hoeing hoe ver +hoer hoer nom +hoers hoer nom +hoes hoe nom +hog hog nom +hogan hogan nom +hogans hogan nom +hogback hogback nom +hogbacks hogback nom +hogfish hogfish nom +hogg hogg nom +hogged hog ver +hogget hogget nom +hoggets hogget nom +hogging hog ver +hoggishness hoggishness nom +hoggishnesses hoggishness nom +hoggs hogg nom +hogs hog nom +hogshead hogshead nom +hogsheads hogshead nom +hogtie hogtie ver +hogtied hogtie ver +hogties hogtie ver +hogtying hogtie ver +hogwash hogwash nom +hogwashes hogwash nom +hogweed hogweed nom +hogweeds hogweed nom +hoist hoist nom +hoisted hoist ver +hoisting hoist ver +hoists hoist nom +hoke hoke ver +hoked hoke ver +hokes hoke ver +hokey hokey adj +hokier hokey adj +hokiest hokey adj +hoking hoke ver +hokum hokum nom +hokums hokum nom +hold hold nom +holdall holdall nom +holdalls holdall nom +holder holder nom +holders holder nom +holdfast holdfast nom +holdfasts holdfast nom +holding hold ver +holdings holding nom +holdout holdout nom +holdouts holdout nom +holdover holdover nom +holdovers holdover nom +holds hold nom +holdup holdup nom +holdups holdup nom +hole hole nom +holed hole ver +holes hole nom +holey holey adj +holibut holibut nom +holibuts holibut nom +holiday holiday nom +holidayed holiday ver +holidaying holiday ver +holidaymaker holidaymaker nom +holidaymakers holidaymaker nom +holidays holiday nom +holier holey adj +holies holy nom +holiest holey adj +holiness holiness nom +holinesses holiness nom +holing hole ver +holla holla nom +hollandaise hollandaise nom +hollandaises hollandaise nom +hollas holla nom +holler holler nom +hollered holler ver +hollering holler ver +hollers holler nom +hollies holly nom +hollo hollo nom +holloa holloa nom +holloas holloa nom +holloed hollo ver +holloes hollo nom +holloing hollo ver +hollos hollo nom +hollow hollow adj +holloware holloware nom +hollowares holloware nom +hollowed hollow ver +hollower hollow adj +hollowest hollow adj +hollowing hollow ver +hollowness hollowness nom +hollownesses hollowness nom +hollows hollow nom +hollowware hollowware nom +hollowwares hollowware nom +holly holly nom +hollyhock hollyhock nom +hollyhocks hollyhock nom +holmium holmium nom +holmiums holmium nom +holocaust holocaust nom +holocausts holocaust nom +hologram hologram nom +holograms hologram nom +holograph holograph nom +holographed holograph ver +holographies holography nom +holographing holograph ver +holographs holograph nom +holography holography nom +holothurian holothurian nom +holothurians holothurian nom +holotype holotype nom +holotypes holotype nom +holster holster nom +holstered holster ver +holstering holster ver +holsters holster nom +holy holy adj +holystone holystone nom +holystoned holystone ver +holystones holystone nom +holystoning holystone ver +homage homage nom +homages homage nom +hombre hombre nom +hombres hombre nom +homburg homburg nom +homburgs homburg nom +home home nom +homebodies homebody nom +homebody homebody nom +homeboy homeboy nom +homeboys homeboy nom +homebuilder homebuilder nom +homebuilders homebuilder nom +homecoming homecoming nom +homecomings homecoming nom +homed home ver +homefolk homefolk nom +homegirl homegirl nom +homegirls homegirl nom +homeland homeland nom +homelands homeland nom +homeless homeless nom +homelessness homelessness nom +homelessnesses homelessness nom +homelier homely adj +homeliest homely adj +homeliness homeliness nom +homelinesses homeliness nom +homely homely adj +homemaker homemaker nom +homemakers homemaker nom +homemaking homemaking nom +homemakings homemaking nom +homeopath homeopath nom +homeopathies homeopathy nom +homeopaths homeopath nom +homeopathy homeopathy nom +homeostases homeostasis nom +homeostasis homeostasis nom +homeowner homeowner nom +homeowners homeowner nom +homepage homepage nom +homepages homepage nom +homer homer nom +homered homer ver +homering homer ver +homeroom homeroom nom +homerooms homeroom nom +homers homer nom +homes home nom +homeschooling homeschooling nom +homeschoolings homeschooling nom +homesickness homesickness nom +homesicknesses homesickness nom +homespun homespun nom +homespuns homespun nom +homestead homestead nom +homesteaded homestead ver +homesteader homesteader nom +homesteaders homesteader nom +homesteading homestead ver +homesteads homestead nom +homestretch homestretch nom +homestretches homestretch nom +hometown hometown nom +hometowns hometown nom +homework homework nom +homeworks homework nom +homey homey adj +homeyness homeyness nom +homeynesses homeyness nom +homeys homey nom +homicide homicide nom +homicides homicide nom +homier homey adj +homiest homey adj +homilies homily nom +homily homily nom +hominess hominess nom +hominesses hominess nom +homing home ver +hominid hominid nom +hominids hominid nom +hominies hominy nom +hominoid hominoid nom +hominoids hominoid nom +hominy hominy nom +homo homo nom +homoeopath homoeopath nom +homoeopaths homoeopath nom +homoeroticism homoeroticism nom +homoeroticisms homoeroticism nom +homogenate homogenate nom +homogenates homogenate nom +homogeneities homogeneity nom +homogeneity homogeneity nom +homogeneousness homogeneousness nom +homogeneousnesses homogeneousness nom +homogenies homogeny nom +homogenisation homogenisation nom +homogenisations homogenisation nom +homogenization homogenization nom +homogenizations homogenization nom +homogenize homogenize ver +homogenized homogenize ver +homogenizes homogenize ver +homogenizing homogenize ver +homogeny homogeny nom +homograft homograft nom +homografts homograft nom +homograph homograph nom +homographs homograph nom +homologies homology nom +homologize homologize ver +homologized homologize ver +homologizes homologize ver +homologizing homologize ver +homology homology nom +homonym homonym nom +homonyms homonym nom +homophobia homophobia nom +homophobias homophobia nom +homophone homophone nom +homophones homophone nom +homophonies homophony nom +homophony homophony nom +homopteran homopteran nom +homopterans homopteran nom +homos homo nom +homosexual homosexual nom +homosexualities homosexuality nom +homosexuality homosexuality nom +homosexuals homosexual nom +homospories homospory nom +homospory homospory nom +homy homy adj +hon hon nom +honcho honcho nom +honchoed honcho ver +honchoing honcho ver +honchos honcho nom +hone hone nom +honed hone ver +honer honer nom +honers honer nom +hones hone nom +honest honest adj +honester honest adj +honestest honest adj +honesties honesty nom +honestness honestness nom +honestnesses honestness nom +honesty honesty nom +honey honey nom +honeybee honeybee nom +honeybees honeybee nom +honeycomb honeycomb nom +honeycombed honeycomb ver +honeycombing honeycomb ver +honeycombs honeycomb nom +honeycreeper honeycreeper nom +honeycreepers honeycreeper nom +honeydew honeydew nom +honeydews honeydew nom +honeyed honey ver +honeying honey ver +honeylocust honeylocust nom +honeylocusts honeylocust nom +honeymoon honeymoon nom +honeymooned honeymoon ver +honeymooner honeymooner nom +honeymooners honeymooner nom +honeymooning honeymoon ver +honeymoons honeymoon nom +honeypot honeypot nom +honeypots honeypot nom +honeys honey nom +honeysucker honeysucker nom +honeysuckers honeysucker nom +honeysuckle honeysuckle nom +honeysuckles honeysuckle nom +honing hone ver +honk honk nom +honked honk ver +honker honker nom +honkers honker nom +honkie honkie nom +honkies honkie nom +honking honk ver +honks honk nom +honky honky nom +honkytonk honkytonk nom +honkytonks honkytonk nom +honor honor nom +honorableness honorableness nom +honorablenesses honorableness nom +honorarium honorarium nom +honorariums honorarium nom +honored honor ver +honoree honoree nom +honorees honoree nom +honorer honorer nom +honorers honorer nom +honorific honorific nom +honorifics honorific nom +honoring honor ver +honors honor nom +honour honour nom +honoured honour ver +honouring honour ver +honours honour nom +hons hon nom +hooch hooch nom +hooches hooch nom +hood hood nom +hooded hood ver +hooding hood ver +hoodlum hoodlum nom +hoodlums hoodlum nom +hoodoo hoodoo nom +hoodooed hoodoo ver +hoodooing hoodoo ver +hoodooism hoodooism nom +hoodooisms hoodooism nom +hoodoos hoodoo nom +hoods hood nom +hoodwink hoodwink ver +hoodwinked hoodwink ver +hoodwinking hoodwink ver +hoodwinks hoodwink ver +hooey hooey nom +hooeys hooey nom +hoof hoof nom +hoofed hoof ver +hoofer hoofer nom +hoofers hoofer nom +hoofing hoof ver +hoofmark hoofmark nom +hoofmarks hoofmark nom +hoofprint hoofprint nom +hoofprints hoofprint nom +hoofs hoof nom +hook hook nom +hooka hooka nom +hookah hookah nom +hookahs hookah nom +hookas hooka nom +hooked hook ver +hooker hooker nom +hookers hooker nom +hookey hookey nom +hookeys hookey nom +hookier hooky adj +hookies hooky nom +hookiest hooky adj +hooking hook ver +hooknose hooknose nom +hooknoses hooknose nom +hooks hook nom +hookup hookup nom +hookups hookup nom +hookworm hookworm nom +hookworms hookworm nom +hooky hooky adj +hooligan hooligan nom +hooliganism hooliganism nom +hooliganisms hooliganism nom +hooligans hooligan nom +hoop hoop nom +hooped hoop ver +hooping hoop ver +hoopla hoopla nom +hooplas hoopla nom +hoopoe hoopoe nom +hoopoes hoopoe nom +hoopoo hoopoo nom +hoopoos hoopoo nom +hoops hoop nom +hoopskirt hoopskirt nom +hoopskirts hoopskirt nom +hooray hooray nom +hoorayed hooray ver +hooraying hooray ver +hoorays hooray nom +hoosegow hoosegow nom +hoosegows hoosegow nom +hoosgow hoosgow nom +hoosgows hoosgow nom +hoot hoot nom +hootch hootch nom +hootches hootch nom +hooted hoot ver +hootenannies hootenanny nom +hootenanny hootenanny nom +hooter hooter nom +hooters hooter nom +hooting hoot ver +hoots hoot nom +hoover hoover ver +hoovered hoover ver +hoovering hoover ver +hoovers hoover ver +hop hop nom +hope hope nom +hoped hope ver +hopeful hopeful nom +hopefully hopefully sw +hopefulness hopefulness nom +hopefulnesses hopefulness nom +hopefuls hopeful nom +hopelessness hopelessness nom +hopelessnesses hopelessness nom +hopes hope nom +hoping hope ver +hopped hop ver +hopper hopper nom +hoppers hopper nom +hopping hop ver +hopple hopple ver +hoppled hopple ver +hopples hopple ver +hoppling hopple ver +hops hop nom +hopsack hopsack nom +hopsacking hopsacking nom +hopsackings hopsacking nom +hopsacks hopsack nom +hopscotch hopscotch nom +hopscotched hopscotch ver +hopscotches hopscotch nom +hopscotching hopscotch ver +horde horde nom +horded horde ver +hordeola hordeolum nom +hordeolum hordeolum nom +hordes horde nom +hording horde ver +horehound horehound nom +horehounds horehound nom +horizon horizon nom +horizons horizon nom +horizontal horizontal nom +horizontalities horizontality nom +horizontality horizontality nom +horizontals horizontal nom +hormone hormone nom +hormones hormone nom +horn horn nom +hornbeam hornbeam nom +hornbeams hornbeam nom +hornbill hornbill nom +hornbills hornbill nom +hornblende hornblende nom +hornblendes hornblende nom +horned horn ver +hornet hornet nom +hornets hornet nom +hornfels hornfels nom +hornfelses hornfels nom +hornier horny adj +horniest horny adj +horniness horniness nom +horninesses horniness nom +horning horn ver +hornpipe hornpipe nom +hornpipes hornpipe nom +hornpout hornpout nom +hornpouts hornpout nom +horns horn nom +hornstone hornstone nom +hornstones hornstone nom +hornwort hornwort nom +hornworts hornwort nom +horny horny adj +horologer horologer nom +horologers horologer nom +horologies horology nom +horologist horologist nom +horologists horologist nom +horology horology nom +horoscope horoscope nom +horoscopes horoscope nom +horribleness horribleness nom +horriblenesses horribleness nom +horrid horrid adj +horrider horrid adj +horridest horrid adj +horridness horridness nom +horridnesses horridness nom +horrified horrify ver +horrifies horrify ver +horrify horrify ver +horrifying horrify ver +horror horror nom +horrors horror nom +horse horse nom +horseback horseback nom +horsebacks horseback nom +horsebean horsebean nom +horsebeans horsebean nom +horsecar horsecar nom +horsecars horsecar nom +horsed horse ver +horsefish horsefish nom +horseflesh horseflesh nom +horseflies horsefly nom +horsefly horsefly nom +horsehair horsehair nom +horsehairs horsehair nom +horsehide horsehide nom +horsehides horsehide nom +horselaugh horselaugh nom +horselaughed horselaugh ver +horselaughing horselaugh ver +horselaughs horselaugh nom +horseleech horseleech nom +horseleeches horseleech nom +horseman horseman nom +horsemanship horsemanship nom +horsemanships horsemanship nom +horsemeat horsemeat nom +horsemeats horsemeat nom +horsemen horseman nom +horsemint horsemint nom +horsemints horsemint nom +horseplay horseplay nom +horseplays horseplay nom +horsepond horsepond nom +horseponds horsepond nom +horsepower horsepower nom +horseradish horseradish nom +horseradishes horseradish nom +horses horse nom +horseshit horseshit nom +horseshits horseshit nom +horseshoe horseshoe nom +horseshoed horseshoe ver +horseshoeing horseshoe ver +horseshoer horseshoer nom +horseshoers horseshoer nom +horseshoes horseshoe nom +horsetail horsetail nom +horsetails horsetail nom +horseweed horseweed nom +horseweeds horseweed nom +horsewhip horsewhip nom +horsewhipped horsewhip ver +horsewhipping horsewhip ver +horsewhips horsewhip nom +horsewoman horsewoman nom +horsewomen horsewoman nom +horsey horsey adj +horsier horsey adj +horsiest horsey adj +horsing horse ver +horst horst nom +horsts horst nom +horsy horsy adj +horticulture horticulture nom +horticultures horticulture nom +horticulturist horticulturist nom +horticulturists horticulturist nom +hos ho nom +hosanna hosanna nom +hosannaed hosanna ver +hosannaing hosanna ver +hosannas hosanna nom +hose hose nom +hosed hose ver +hosepipe hosepipe nom +hosepipes hosepipe nom +hoses hose nom +hosier hosier nom +hosieries hosiery nom +hosiers hosier nom +hosiery hosiery nom +hosing hose ver +hospice hospice nom +hospices hospice nom +hospitableness hospitableness nom +hospitablenesses hospitableness nom +hospital hospital nom +hospitalisation hospitalisation nom +hospitalisations hospitalisation nom +hospitalities hospitality nom +hospitality hospitality nom +hospitalization hospitalization nom +hospitalizations hospitalization nom +hospitalize hospitalize ver +hospitalized hospitalize ver +hospitalizes hospitalize ver +hospitalizing hospitalize ver +hospitals hospital nom +host host nom +hostage hostage nom +hostaged hostage ver +hostages hostage nom +hostaging hostage ver +hosted host ver +hostel hostel nom +hosteled hostel ver +hosteler hosteler nom +hostelers hosteler nom +hosteling hostel ver +hosteller hosteller nom +hostellers hosteller nom +hostelries hostelry nom +hostelry hostelry nom +hostels hostel nom +hostess hostess nom +hostessed hostess ver +hostesses hostess nom +hostessing hostess ver +hostile hostile nom +hostiles hostile nom +hostilities hostility nom +hostility hostility nom +hosting host ver +hostler hostler nom +hostlers hostler nom +hosts host nom +hot hot adj +hotbed hotbed nom +hotbeds hotbed nom +hotbox hotbox nom +hotboxes hotbox nom +hotcake hotcake nom +hotcakes hotcake nom +hotchpotch hotchpotch nom +hotchpotches hotchpotch nom +hotdog hotdog nom +hotdogged hotdog ver +hotdogging hotdog ver +hotdogs hotdog nom +hotel hotel nom +hotelier hotelier nom +hoteliers hotelier nom +hotelkeeper hotelkeeper nom +hotelkeepers hotelkeeper nom +hotelman hotelman nom +hotelmen hotelman nom +hotels hotel nom +hotfoot hotfoot nom +hotfooted hotfoot ver +hotfooting hotfoot ver +hotfoots hotfoot nom +hothead hothead nom +hotheadedness hotheadedness nom +hotheadednesses hotheadedness nom +hotheads hothead nom +hothouse hothouse nom +hothouses hothouse nom +hotline hotline nom +hotlines hotline nom +hotness hotness nom +hotnesses hotness nom +hotplate hotplate nom +hotplates hotplate nom +hots hot ver +hotshot hotshot nom +hotshots hotshot nom +hotted hot ver +hotter hot adj +hottest hot adj +hotting hot ver +hound hound nom +hounded hound ver +hounding hound ver +hounds hound nom +hour hour nom +hourglass hourglass nom +hourglasses hourglass nom +houri houri nom +houris houri nom +hours hour nom +house house nom +houseboat houseboat nom +houseboats houseboat nom +houseboy houseboy nom +houseboys houseboy nom +housebreak housebreak ver +housebreaker housebreaker nom +housebreakers housebreaker nom +housebreaking housebreak ver +housebreakings housebreaking nom +housebreaks housebreak ver +housebroke housebreak ver +housebroken housebreak ver +houseclean houseclean ver +housecleaned houseclean ver +housecleaning houseclean ver +housecleanings housecleaning nom +housecleans houseclean ver +housecoat housecoat nom +housecoats housecoat nom +housed house ver +housedog housedog nom +housedogs housedog nom +housefather housefather nom +housefathers housefather nom +houseflies housefly nom +housefly housefly nom +houseful houseful nom +housefuls houseful nom +houseguest houseguest nom +houseguests houseguest nom +household household nom +householder householder nom +householders householder nom +households household nom +househusband househusband nom +househusbands househusband nom +housekeep housekeep ver +housekeeper housekeeper nom +housekeepers housekeeper nom +housekeeping housekeep ver +housekeepings housekeeping nom +housekeeps housekeep ver +housekept housekeep ver +housemaid housemaid nom +housemaids housemaid nom +houseman houseman nom +housemaster housemaster nom +housemasters housemaster nom +housemen houseman nom +housemother housemother nom +housemothers housemother nom +houseparent houseparent nom +houseparents houseparent nom +houseplant houseplant nom +houseplants houseplant nom +houseroom houseroom nom +houserooms houseroom nom +houses house nom +housetop housetop nom +housetops housetop nom +housewarming housewarming nom +housewarmings housewarming nom +housewife housewife nom +housewiferies housewifery nom +housewifery housewifery nom +housewives housewife nom +housework housework nom +houseworks housework nom +housing house ver +housings housing nom +hove heave ver +hovel hovel nom +hoveled hovel ver +hoveling hovel ver +hovels hovel nom +hover hover nom +hovercraft hovercraft nom +hovered hover ver +hovering hover ver +hovers hover nom +how how sw +howbeit howbeit sw +howdah howdah nom +howdahs howdah nom +howdies howdy nom +howdy howdy nom +however however sw +howitzer howitzer nom +howitzers howitzer nom +howl howl nom +howled howl ver +howler howler nom +howlers howler nom +howling howl ver +howls howl nom +hows how nom +hoy hoy nom +hoya hoya nom +hoyas hoya nom +hoyden hoyden nom +hoydens hoyden nom +hoys hoy nom +huarache huarache nom +huaraches huarache nom +hub hub nom +hubbed hub ver +hubbies hubby nom +hubbing hub ver +hubbub hubbub nom +hubbubs hubbub nom +hubby hubby nom +hubcap hubcap nom +hubcaps hubcap nom +hubris hubris nom +hubrises hubris nom +hubs hub nom +huck huck nom +huckaback huckaback nom +huckabacks huckaback nom +huckleberries huckleberry nom +huckleberry huckleberry nom +hucks huck nom +huckster huckster nom +huckstered huckster ver +huckstering huckster ver +hucksters huckster nom +huddle huddle nom +huddled huddle ver +huddles huddle nom +huddling huddle ver +hue hue nom +hues hue nom +huff huff nom +huffed huff ver +huffier huffy adj +huffiest huffy adj +huffiness huffiness nom +huffinesses huffiness nom +huffing huff ver +huffishness huffishness nom +huffishnesses huffishness nom +huffs huff nom +huffy huffy adj +hug hug nom +huge huge adj +hugeness hugeness nom +hugenesses hugeness nom +huger huge adj +hugest huge adj +hugged hug ver +hugging hug ver +hugs hug nom +huisache huisache nom +huisaches huisache nom +hula hula nom +hulas hula nom +hulk hulk nom +hulked hulk ver +hulkier hulky adj +hulkiest hulky adj +hulking hulk ver +hulks hulk nom +hulky hulky adj +hull hull nom +hullabaloo hullabaloo nom +hullabaloos hullabaloo nom +hulled hull ver +huller huller nom +hullers huller nom +hulling hull ver +hullo hullo nom +hulloed hullo ver +hulloing hullo ver +hullos hullo nom +hulls hull nom +hum hum nom +human human adj +humane humane adj +humaneness humaneness nom +humanenesses humaneness nom +humaner human adj +humanest human adj +humanise humanise ver +humanised humanise ver +humanises humanise ver +humanising humanise ver +humanism humanism nom +humanisms humanism nom +humanist humanist nom +humanists humanist nom +humanitarian humanitarian nom +humanitarianism humanitarianism nom +humanitarianisms humanitarianism nom +humanitarians humanitarian nom +humanities humanity nom +humanity humanity nom +humanization humanization nom +humanizations humanization nom +humanize humanize ver +humanized humanize ver +humanizer humanizer nom +humanizers humanizer nom +humanizes humanize ver +humanizing humanize ver +humanness humanness nom +humannesses humanness nom +humanoid humanoid nom +humanoids humanoid nom +humans human nom +humble humble adj +humblebee humblebee nom +humblebees humblebee nom +humbled humble ver +humbleness humbleness nom +humblenesses humbleness nom +humbler humble adj +humblers humbler nom +humbles humble ver +humblest humble adj +humbling humble ver +humblings humbling nom +humbug humbug nom +humbugged humbug ver +humbugging humbug ver +humbugs humbug nom +humdinger humdinger nom +humdingers humdinger nom +humdrum humdrum nom +humdrums humdrum nom +humeri humerus nom +humerus humerus nom +humid humid adj +humider humid adj +humidest humid adj +humidification humidification nom +humidifications humidification nom +humidified humidify ver +humidifier humidifier nom +humidifiers humidifier nom +humidifies humidify ver +humidify humidify ver +humidifying humidify ver +humidities humidity nom +humidity humidity nom +humidness humidness nom +humidnesses humidness nom +humidor humidor nom +humidors humidor nom +humiliate humiliate ver +humiliated humiliate ver +humiliates humiliate ver +humiliating humiliate ver +humiliation humiliation nom +humiliations humiliation nom +humilities humility nom +humility humility nom +hummed hum ver +hummer hummer nom +hummers hummer nom +humming hum ver +hummingbird hummingbird nom +hummingbirds hummingbird nom +hummings humming nom +hummock hummock nom +hummocks hummock nom +hummus hummus nom +hummuses hummus nom +humor humor nom +humored humor ver +humoring humor ver +humorist humorist nom +humorists humorist nom +humorlessness humorlessness nom +humorlessnesses humorlessness nom +humorousness humorousness nom +humorousnesses humorousness nom +humors humor nom +humour humour nom +humoured humour ver +humouring humour ver +humours humour nom +hump hump nom +humpback humpback nom +humpbacks humpback nom +humped hump ver +humph humph ver +humphed humph ver +humphing humph ver +humphs humph ver +humping hump ver +humps hump nom +hums hum nom +humus humus nom +humuses humus nom +hunch hunch nom +hunchback hunchback nom +hunchbacks hunchback nom +hunched hunch ver +hunches hunch nom +hunching hunch ver +hundred hundred nom +hundreds hundred nom +hundredth hundredth nom +hundredths hundredth nom +hundredweight hundredweight nom +hundredweights hundredweight nom +hung hang ver +hunger hunger nom +hungered hunger ver +hungering hunger ver +hungers hunger nom +hungrier hungry adj +hungriest hungry adj +hungriness hungriness nom +hungrinesses hungriness nom +hungry hungry adj +hunk hunk nom +hunker hunker ver +hunkered hunker ver +hunkering hunker ver +hunkers hunker ver +hunkier hunky adj +hunkies hunky nom +hunkiest hunky adj +hunks hunk nom +hunky hunky adj +hunt hunt nom +hunted hunt ver +hunter hunter nom +hunters hunter nom +hunting hunt ver +huntings hunting nom +huntress huntress nom +huntresses huntress nom +hunts hunt nom +huntsman huntsman nom +huntsmen huntsman nom +hurdle hurdle nom +hurdled hurdle ver +hurdler hurdler nom +hurdlers hurdler nom +hurdles hurdle nom +hurdling hurdle ver +hurdlings hurdling nom +hurl hurl nom +hurled hurl ver +hurler hurler nom +hurlers hurler nom +hurling hurl ver +hurlings hurling nom +hurls hurl nom +hurrah hurrah nom +hurrahed hurrah ver +hurrahing hurrah ver +hurrahs hurrah nom +hurray hurray nom +hurrayed hurray ver +hurraying hurray ver +hurrays hurray nom +hurricane hurricane nom +hurricanes hurricane nom +hurried hurry ver +hurriedness hurriedness nom +hurriednesses hurriedness nom +hurries hurry nom +hurry hurry nom +hurrying hurry ver +hurryings hurrying nom +hurt hurt ver +hurtfulness hurtfulness nom +hurtfulnesses hurtfulness nom +hurting hurt ver +hurtle hurtle ver +hurtled hurtle ver +hurtles hurtle ver +hurtling hurtle ver +hurts hurt nom +husband husband nom +husbanded husband ver +husbanding husband ver +husbandman husbandman nom +husbandmen husbandman nom +husbandries husbandry nom +husbandry husbandry nom +husbands husband nom +hush hush nom +hushed hush ver +hushes hush nom +hushing hush ver +husk husk nom +husked husk ver +husker husker nom +huskers husker nom +huskier husky adj +huskies husky nom +huskiest husky adj +huskiness huskiness nom +huskinesses huskiness nom +husking husk ver +huskings husking nom +husks husk nom +husky husky adj +hussar hussar nom +hussars hussar nom +hussies hussy nom +hussy hussy nom +hustle hustle nom +hustled hustle ver +hustler hustler nom +hustlers hustler nom +hustles hustle nom +hustling hustle ver +hut hut nom +hutch hutch nom +hutches hutch nom +hutment hutment nom +hutments hutment nom +huts hut nom +hutted hut ver +hutting hut ver +hutzpa hutzpa nom +hutzpah hutzpah nom +hutzpahs hutzpah nom +hutzpas hutzpa nom +huzza huzza nom +huzzaed huzza ver +huzzah huzzah nom +huzzahed huzzah ver +huzzahing huzzah ver +huzzahs huzzah nom +huzzaing huzza ver +huzzas huzza nom +hyacinth hyacinth nom +hyacinths hyacinth nom +hyaena hyaena nom +hyaenas hyaena nom +hyalin hyalin nom +hyaline hyaline nom +hyalines hyaline nom +hyalinization hyalinization nom +hyalinizations hyalinization nom +hyalins hyalin nom +hybrid hybrid nom +hybridisation hybridisation nom +hybridisations hybridisation nom +hybridism hybridism nom +hybridisms hybridism nom +hybridization hybridization nom +hybridizations hybridization nom +hybridize hybridize ver +hybridized hybridize ver +hybridizes hybridize ver +hybridizing hybridize ver +hybridoma hybridoma nom +hybridomas hybridoma nom +hybrids hybrid nom +hydra hydra nom +hydrangea hydrangea nom +hydrangeas hydrangea nom +hydrant hydrant nom +hydrants hydrant nom +hydras hydra nom +hydrate hydrate nom +hydrated hydrate ver +hydrates hydrate nom +hydrating hydrate ver +hydration hydration nom +hydrations hydration nom +hydrazine hydrazine nom +hydrazines hydrazine nom +hydride hydride nom +hydrides hydride nom +hydrilla hydrilla nom +hydrillas hydrilla nom +hydrocarbon hydrocarbon nom +hydrocarbons hydrocarbon nom +hydrocephali hydrocephalus nom +hydrocephalies hydrocephaly nom +hydrocephalus hydrocephalus nom +hydrocephaly hydrocephaly nom +hydrochloride hydrochloride nom +hydrochlorides hydrochloride nom +hydrochlorothiazide hydrochlorothiazide nom +hydrochlorothiazides hydrochlorothiazide nom +hydrocortisone hydrocortisone nom +hydrocortisones hydrocortisone nom +hydroelectricities hydroelectricity nom +hydroelectricity hydroelectricity nom +hydrofoil hydrofoil nom +hydrofoils hydrofoil nom +hydrogen hydrogen nom +hydrogenate hydrogenate ver +hydrogenated hydrogenate ver +hydrogenates hydrogenate ver +hydrogenating hydrogenate ver +hydrogenation hydrogenation nom +hydrogenations hydrogenation nom +hydrogens hydrogen nom +hydrographies hydrography nom +hydrography hydrography nom +hydroid hydroid nom +hydroids hydroid nom +hydrologies hydrology nom +hydrologist hydrologist nom +hydrologists hydrologist nom +hydrology hydrology nom +hydrolysate hydrolysate nom +hydrolysates hydrolysate nom +hydrolyse hydrolyse ver +hydrolysed hydrolyse ver +hydrolyses hydrolyse ver +hydrolysing hydrolyse ver +hydrolysis hydrolysis nom +hydrolyze hydrolyze ver +hydrolyzed hydrolyze ver +hydrolyzes hydrolyze ver +hydrolyzing hydrolyze ver +hydromel hydromel nom +hydromels hydromel nom +hydrometer hydrometer nom +hydrometers hydrometer nom +hydrometries hydrometry nom +hydrometry hydrometry nom +hydropathies hydropathy nom +hydropathy hydropathy nom +hydrophobia hydrophobia nom +hydrophobias hydrophobia nom +hydrophone hydrophone nom +hydrophones hydrophone nom +hydrophyte hydrophyte nom +hydrophytes hydrophyte nom +hydroplane hydroplane nom +hydroplaned hydroplane ver +hydroplanes hydroplane nom +hydroplaning hydroplane ver +hydrosphere hydrosphere nom +hydrospheres hydrosphere nom +hydrotherapies hydrotherapy nom +hydrotherapy hydrotherapy nom +hydroxide hydroxide nom +hydroxides hydroxide nom +hydroxyl hydroxyl nom +hydroxyls hydroxyl nom +hydroxyproline hydroxyproline nom +hydroxyprolines hydroxyproline nom +hydrozoan hydrozoan nom +hydrozoans hydrozoan nom +hyena hyena nom +hyenas hyena nom +hygiene hygiene nom +hygienes hygiene nom +hygienist hygienist nom +hygienists hygienist nom +hygrodeik hygrodeik nom +hygrodeiks hygrodeik nom +hygrometer hygrometer nom +hygrometers hygrometer nom +hygroscope hygroscope nom +hygroscopes hygroscope nom +hymen hymen nom +hymeneal hymeneal nom +hymeneals hymeneal nom +hymenium hymenium nom +hymeniums hymenium nom +hymenopteran hymenopteran nom +hymenopterans hymenopteran nom +hymenopteron hymenopteron nom +hymenopterons hymenopteron nom +hymens hymen nom +hymn hymn nom +hymnal hymnal nom +hymnals hymnal nom +hymnaries hymnary nom +hymnary hymnary nom +hymnbook hymnbook nom +hymnbooks hymnbook nom +hymned hymn ver +hymning hymn ver +hymnodies hymnody nom +hymnody hymnody nom +hymns hymn nom +hyoid hyoid nom +hyoids hyoid nom +hyoscine hyoscine nom +hyoscines hyoscine nom +hypallage hypallage nom +hypallages hypallage nom +hype hype nom +hyped hype ver +hyper hyper nom +hyperactivities hyperactivity nom +hyperactivity hyperactivity nom +hyperaemia hyperaemia nom +hyperaemias hyperaemia nom +hyperbaton hyperbaton nom +hyperbatons hyperbaton nom +hyperbola hyperbola nom +hyperbolas hyperbola nom +hyperbole hyperbole nom +hyperboles hyperbole nom +hyperbolize hyperbolize ver +hyperbolized hyperbolize ver +hyperbolizes hyperbolize ver +hyperbolizing hyperbolize ver +hypercapnia hypercapnia nom +hypercapnias hypercapnia nom +hyperemia hyperemia nom +hyperemias hyperemia nom +hyperextension hyperextension nom +hyperextensions hyperextension nom +hyperglycemia hyperglycemia nom +hyperglycemias hyperglycemia nom +hyperlipemia hyperlipemia nom +hyperlipemias hyperlipemia nom +hyperlipidemia hyperlipidemia nom +hyperlipidemias hyperlipidemia nom +hypermarket hypermarket nom +hypermarkets hypermarket nom +hypermedia hypermedia nom +hypermedias hypermedia nom +hypermetropia hypermetropia nom +hypermetropias hypermetropia nom +hypermetropies hypermetropy nom +hypermetropy hypermetropy nom +hypernym hypernym nom +hypernyms hypernym nom +hyperon hyperon nom +hyperons hyperon nom +hyperope hyperope nom +hyperopes hyperope nom +hyperopia hyperopia nom +hyperopias hyperopia nom +hyperplasia hyperplasia nom +hyperplasias hyperplasia nom +hyperpnea hyperpnea nom +hyperpneas hyperpnea nom +hyperpyrexia hyperpyrexia nom +hyperpyrexias hyperpyrexia nom +hypers hyper nom +hypersensitiveness hypersensitiveness nom +hypersensitivenesses hypersensitiveness nom +hypersensitivities hypersensitivity nom +hypersensitivity hypersensitivity nom +hypertension hypertension nom +hypertensions hypertension nom +hypertensive hypertensive nom +hypertensives hypertensive nom +hypertext hypertext nom +hypertexts hypertext nom +hyperthermia hyperthermia nom +hyperthermias hyperthermia nom +hyperthermies hyperthermy nom +hyperthermy hyperthermy nom +hyperthyroidism hyperthyroidism nom +hyperthyroidisms hyperthyroidism nom +hypertrophied hypertrophy ver +hypertrophies hypertrophy nom +hypertrophy hypertrophy nom +hypertrophying hypertrophy ver +hypervelocities hypervelocity nom +hypervelocity hypervelocity nom +hyperventilate hyperventilate ver +hyperventilated hyperventilate ver +hyperventilates hyperventilate ver +hyperventilating hyperventilate ver +hyperventilation hyperventilation nom +hyperventilations hyperventilation nom +hypervitaminoses hypervitaminosis nom +hypervitaminosis hypervitaminosis nom +hypes hype nom +hypha hypha nom +hyphae hypha nom +hyphen hyphen nom +hyphenate hyphenate ver +hyphenated hyphenate ver +hyphenates hyphenate ver +hyphenating hyphenate ver +hyphenation hyphenation nom +hyphenations hyphenation nom +hyphened hyphen ver +hyphening hyphen ver +hyphens hyphen nom +hyping hype ver +hypnoses hypnosis nom +hypnosis hypnosis nom +hypnotherapies hypnotherapy nom +hypnotherapy hypnotherapy nom +hypnotic hypnotic nom +hypnotics hypnotic nom +hypnotism hypnotism nom +hypnotisms hypnotism nom +hypnotist hypnotist nom +hypnotists hypnotist nom +hypnotize hypnotize ver +hypnotized hypnotize ver +hypnotizer hypnotizer nom +hypnotizers hypnotizer nom +hypnotizes hypnotize ver +hypnotizing hypnotize ver +hypo hypo nom +hypoblast hypoblast nom +hypoblasts hypoblast nom +hypochlorite hypochlorite nom +hypochlorites hypochlorite nom +hypochondria hypochondria nom +hypochondriac hypochondriac nom +hypochondriacs hypochondriac nom +hypochondrias hypochondria nom +hypochondriases hypochondriasis nom +hypochondriasis hypochondriasis nom +hypocrisies hypocrisy nom +hypocrisy hypocrisy nom +hypocrite hypocrite nom +hypocrites hypocrite nom +hypocycloid hypocycloid nom +hypocycloids hypocycloid nom +hypodermic hypodermic nom +hypodermics hypodermic nom +hypodermis hypodermis nom +hypodermises hypodermis nom +hypoed hypo ver +hypoglossal hypoglossal nom +hypoglossals hypoglossal nom +hypoglycemia hypoglycemia nom +hypoglycemias hypoglycemia nom +hypoglycemic hypoglycemic nom +hypoglycemics hypoglycemic nom +hypoing hypo ver +hyponym hyponym nom +hyponymies hyponymy nom +hyponyms hyponym nom +hyponymy hyponymy nom +hypophysectomize hypophysectomize ver +hypophysectomized hypophysectomize ver +hypophysectomizes hypophysectomize ver +hypophysectomizing hypophysectomize ver +hypophyses hypophysis nom +hypophysis hypophysis nom +hypoplasia hypoplasia nom +hypoplasias hypoplasia nom +hypos hypo nom +hypostasis hypostasis nom +hypostasises hypostasis nom +hypostatization hypostatization nom +hypostatizations hypostatization nom +hypostatize hypostatize ver +hypostatized hypostatize ver +hypostatizes hypostatize ver +hypostatizing hypostatize ver +hypotension hypotension nom +hypotensions hypotension nom +hypotenuse hypotenuse nom +hypotenuses hypotenuse nom +hypothalami hypothalamus nom +hypothalamus hypothalamus nom +hypothecate hypothecate ver +hypothecated hypothecate ver +hypothecates hypothecate ver +hypothecating hypothecate ver +hypothermia hypothermia nom +hypothermias hypothermia nom +hypotheses hypothesis nom +hypothesis hypothesis nom +hypothesize hypothesize ver +hypothesized hypothesize ver +hypothesizes hypothesize ver +hypothesizing hypothesize ver +hypothyroidism hypothyroidism nom +hypothyroidisms hypothyroidism nom +hypoxia hypoxia nom +hypoxias hypoxia nom +hyrax hyrax nom +hyraxes hyrax nom +hyssop hyssop nom +hyssops hyssop nom +hysterectomies hysterectomy nom +hysterectomy hysterectomy nom +hysteria hysteria nom +hysterias hysteria nom +hysteric hysteric nom +hysterics hysteric nom +i i sw +i_d i_d sw +i_ll i_ll sw +i_m i_m sw +i_ve i_ve sw +iamb iamb nom +iambic iambic nom +iambics iambic nom +iambs iamb nom +iambus iambus nom +iambuses iambus nom +ibex ibex nom +ibis ibis nom +ibuprofen ibuprofen nom +ibuprofens ibuprofen nom +ice ice nom +iceberg iceberg nom +icebergs iceberg nom +iceboat iceboat nom +iceboats iceboat nom +icebox icebox nom +iceboxes icebox nom +icebreaker icebreaker nom +icebreakers icebreaker nom +icecap icecap nom +icecaps icecap nom +iced ice ver +icefall icefall nom +icefalls icefall nom +icehouse icehouse nom +icehouses icehouse nom +iceman iceman nom +icemen iceman nom +ices ice nom +ichneumon ichneumon nom +ichneumons ichneumon nom +ichor ichor nom +ichors ichor nom +ichthyologies ichthyology nom +ichthyologist ichthyologist nom +ichthyologists ichthyologist nom +ichthyology ichthyology nom +ichthyosaur ichthyosaur nom +ichthyosaurs ichthyosaur nom +ichthyosaurus ichthyosaurus nom +ichthyosauruses ichthyosaurus nom +icicle icicle nom +icicles icicle nom +icier icy adj +iciest icy adj +iciness iciness nom +icinesses iciness nom +icing ice ver +icings icing nom +ickier icky adj +ickiest icky adj +icky icky adj +icon icon nom +iconoclasm iconoclasm nom +iconoclasms iconoclasm nom +iconoclast iconoclast nom +iconoclasts iconoclast nom +iconographies iconography nom +iconography iconography nom +iconolatries iconolatry nom +iconolatry iconolatry nom +iconoscope iconoscope nom +iconoscopes iconoscope nom +icons icon nom +icosahedron icosahedron nom +icosahedrons icosahedron nom +icterus icterus nom +icteruses icterus nom +ictus ictus nom +ictuses ictus nom +icy icy adj +id id nom +idea idea nom +ideal ideal nom +idealisation idealisation nom +idealisations idealisation nom +idealise idealise ver +idealised idealise ver +idealises idealise ver +idealising idealise ver +idealism idealism nom +idealisms idealism nom +idealist idealist nom +idealists idealist nom +idealization idealization nom +idealizations idealization nom +idealize idealize ver +idealized idealize ver +idealizes idealize ver +idealizing idealize ver +ideals ideal nom +ideas idea nom +ideate ideate ver +ideated ideate ver +ideates ideate ver +ideating ideate ver +ideation ideation nom +ideations ideation nom +identicalness identicalness nom +identicalnesses identicalness nom +identification identification nom +identifications identification nom +identified identify ver +identifies identify ver +identify identify ver +identifying identify ver +identities identity nom +identity identity nom +ideogram ideogram nom +ideograms ideogram nom +ideograph ideograph nom +ideographies ideography nom +ideographs ideograph nom +ideography ideography nom +ideologies ideology nom +ideologist ideologist nom +ideologists ideologist nom +ideologue ideologue nom +ideologues ideologue nom +ideology ideology nom +idiocies idiocy nom +idiocy idiocy nom +idiolect idiolect nom +idiolects idiolect nom +idiom idiom nom +idioms idiom nom +idiosyncrasies idiosyncrasy nom +idiosyncrasy idiosyncrasy nom +idiot idiot nom +idiots idiot nom +idle idle adj +idled idle ver +idleness idleness nom +idlenesses idleness nom +idler idle adj +idlers idler nom +idles idle ver +idlest idle adj +idling idle ver +idocrase idocrase nom +idocrases idocrase nom +idol idol nom +idolater idolater nom +idolaters idolater nom +idolatress idolatress nom +idolatresses idolatress nom +idolatries idolatry nom +idolatry idolatry nom +idolisation idolisation nom +idolisations idolisation nom +idolization idolization nom +idolizations idolization nom +idolize idolize ver +idolized idolize ver +idolizes idolize ver +idolizing idolize ver +idols idol nom +ids id nom +idyl idyl nom +idyll idyll nom +idylls idyll nom +idyls idyl nom +ie ie sw +if if sw +iffier iffy adj +iffiest iffy adj +iffiness iffiness nom +iffinesses iffiness nom +iffy iffy adj +ifs if nom +igloo igloo nom +igloos igloo nom +iglu iglu nom +iglus iglu nom +ignite ignite ver +ignited ignite ver +igniter igniter nom +igniters igniter nom +ignites ignite ver +igniting ignite ver +ignition ignition nom +ignitions ignition nom +ignitor ignitor nom +ignitors ignitor nom +ignoble ignoble adj +ignobleness ignobleness nom +ignoblenesses ignobleness nom +ignobler ignoble adj +ignoblest ignoble adj +ignominies ignominy nom +ignominiousness ignominiousness nom +ignominiousnesses ignominiousness nom +ignominy ignominy nom +ignoramus ignoramus nom +ignoramuses ignoramus nom +ignorance ignorance nom +ignorances ignorance nom +ignorantness ignorantness nom +ignorantnesses ignorantness nom +ignore ignore ver +ignored ignored sw +ignores ignore ver +ignoring ignore ver +iguana iguana nom +iguanas iguana nom +iguanid iguanid nom +iguanids iguanid nom +iguanodon iguanodon nom +iguanodons iguanodon nom +ikon ikon nom +ikons ikon nom +ilea ileum nom +ileitides ileitis nom +ileitis ileitis nom +ileum ileum nom +ilia ilium nom +ilium ilium nom +ilk ilk nom +ilks ilk nom +ill ill adj +illation illation nom +illations illation nom +illegal illegal nom +illegalities illegality nom +illegality illegality nom +illegalize illegalize ver +illegalized illegalize ver +illegalizes illegalize ver +illegalizing illegalize ver +illegals illegal nom +illegibilities illegibility nom +illegibility illegibility nom +illegitimacies illegitimacy nom +illegitimacy illegitimacy nom +illegitimate illegitimate nom +illegitimated illegitimate ver +illegitimates illegitimate nom +illegitimating illegitimate ver +illiberalities illiberality nom +illiberality illiberality nom +illicitness illicitness nom +illicitnesses illicitness nom +illiteracies illiteracy nom +illiteracy illiteracy nom +illiterate illiterate nom +illiterates illiterate nom +illness illness nom +illnesses illness nom +illogic illogic nom +illogicalities illogicality nom +illogicality illogicality nom +illogicalness illogicalness nom +illogicalnesses illogicalness nom +illogics illogic nom +ills ill nom +illume illume ver +illumed illume ver +illumes illume ver +illuminance illuminance nom +illuminances illuminance nom +illuminant illuminant nom +illuminants illuminant nom +illuminate illuminate nom +illuminated illuminate ver +illuminates illuminate nom +illuminating illuminate ver +illumination illumination nom +illuminations illumination nom +illumine illumine ver +illumined illumine ver +illumines illumine ver +illuming illume ver +illumining illumine ver +illusion illusion nom +illusionist illusionist nom +illusionists illusionist nom +illusions illusion nom +illustrate illustrate ver +illustrated illustrate ver +illustrates illustrate ver +illustrating illustrate ver +illustration illustration nom +illustrations illustration nom +illustrator illustrator nom +illustrators illustrator nom +illustriousness illustriousness nom +illustriousnesses illustriousness nom +ilmenite ilmenite nom +ilmenites ilmenite nom +image image nom +imaged image ver +imageries imagery nom +imagery imagery nom +images image nom +imaginaries imaginary nom +imaginary imaginary nom +imagination imagination nom +imaginations imagination nom +imaginativeness imaginativeness nom +imaginativenesses imaginativeness nom +imagine imagine ver +imagined imagine ver +imagines imagine ver +imaging image ver +imagings imaging nom +imagining imagine ver +imagism imagism nom +imagisms imagism nom +imago imago nom +imagoes imago nom +imam imam nom +imams imam nom +imaret imaret nom +imarets imaret nom +imaum imaum nom +imaums imaum nom +imbalance imbalance nom +imbalances imbalance nom +imbecile imbecile nom +imbeciles imbecile nom +imbecilities imbecility nom +imbecility imbecility nom +imbed imbed ver +imbedded imbed ver +imbedding imbed ver +imbeds imbed ver +imbibe imbibe ver +imbibed imbibe ver +imbiber imbiber nom +imbibers imbiber nom +imbibes imbibe ver +imbibing imbibe ver +imbibition imbibition nom +imbibitions imbibition nom +imbrication imbrication nom +imbrications imbrication nom +imbroglio imbroglio nom +imbroglios imbroglio nom +imbrue imbrue ver +imbrued imbrue ver +imbrues imbrue ver +imbruing imbrue ver +imbue imbue ver +imbued imbue ver +imbues imbue ver +imbuing imbue ver +imidazole imidazole nom +imidazoles imidazole nom +imide imide nom +imides imide nom +imipramine imipramine nom +imipramines imipramine nom +imitate imitate ver +imitated imitate ver +imitates imitate ver +imitating imitate ver +imitation imitation nom +imitations imitation nom +imitativeness imitativeness nom +imitativenesses imitativeness nom +imitator imitator nom +imitators imitator nom +immaculateness immaculateness nom +immaculatenesses immaculateness nom +immanence immanence nom +immanences immanence nom +immanencies immanency nom +immanency immanency nom +immaterialities immateriality nom +immateriality immateriality nom +immaterialize immaterialize ver +immaterialized immaterialize ver +immaterializes immaterialize ver +immaterializing immaterialize ver +immaterialness immaterialness nom +immaterialnesses immaterialness nom +immatureness immatureness nom +immaturenesses immatureness nom +immaturities immaturity nom +immaturity immaturity nom +immediacies immediacy nom +immediacy immediacy nom +immediate immediate sw +immediateness immediateness nom +immediatenesses immediateness nom +immense immense adj +immenseness immenseness nom +immensenesses immenseness nom +immenser immense adj +immensest immense adj +immensities immensity nom +immensity immensity nom +immerse immerse ver +immersed immerse ver +immerses immerse ver +immersing immerse ver +immersion immersion nom +immersions immersion nom +immigrant immigrant nom +immigrants immigrant nom +immigrate immigrate ver +immigrated immigrate ver +immigrates immigrate ver +immigrating immigrate ver +immigration immigration nom +immigrations immigration nom +imminence imminence nom +imminences imminence nom +imminencies imminency nom +imminency imminency nom +immingle immingle ver +immingled immingle ver +immingles immingle ver +immingling immingle ver +immix immix ver +immixed immix ver +immixes immix ver +immixing immix ver +immobilisation immobilisation nom +immobilisations immobilisation nom +immobilities immobility nom +immobility immobility nom +immobilization immobilization nom +immobilizations immobilization nom +immobilize immobilize ver +immobilized immobilize ver +immobilizes immobilize ver +immobilizing immobilize ver +immoderateness immoderateness nom +immoderatenesses immoderateness nom +immoderation immoderation nom +immoderations immoderation nom +immodesties immodesty nom +immodesty immodesty nom +immolate immolate ver +immolated immolate ver +immolates immolate ver +immolating immolate ver +immolation immolation nom +immolations immolation nom +immoralities immorality nom +immorality immorality nom +immortal immortal nom +immortalities immortality nom +immortality immortality nom +immortalize immortalize ver +immortalized immortalize ver +immortalizes immortalize ver +immortalizing immortalize ver +immortals immortal nom +immortelle immortelle nom +immortelles immortelle nom +immotilities immotility nom +immotility immotility nom +immovabilities immovability nom +immovability immovability nom +immovable immovable nom +immovableness immovableness nom +immovablenesses immovableness nom +immovables immovable nom +immune immune nom +immunes immune nom +immunisation immunisation nom +immunisations immunisation nom +immunities immunity nom +immunity immunity nom +immunization immunization nom +immunizations immunization nom +immunize immunize ver +immunized immunize ver +immunizes immunize ver +immunizing immunize ver +immunochemistries immunochemistry nom +immunochemistry immunochemistry nom +immunodeficiencies immunodeficiency nom +immunodeficiency immunodeficiency nom +immunoelectrophoreses immunoelectrophoresis nom +immunoelectrophoresis immunoelectrophoresis nom +immunofluorescence immunofluorescence nom +immunofluorescences immunofluorescence nom +immunogen immunogen nom +immunogens immunogen nom +immunoglobulin immunoglobulin nom +immunoglobulins immunoglobulin nom +immunologies immunology nom +immunologist immunologist nom +immunologists immunologist nom +immunology immunology nom +immunopathologies immunopathology nom +immunopathology immunopathology nom +immunosuppressant immunosuppressant nom +immunosuppressants immunosuppressant nom +immunosuppression immunosuppression nom +immunosuppressions immunosuppression nom +immure immure ver +immured immure ver +immurement immurement nom +immurements immurement nom +immures immure ver +immuring immure ver +immutabilities immutability nom +immutability immutability nom +immutableness immutableness nom +immutablenesses immutableness nom +imp imp nom +impact impact nom +impacted impact ver +impacting impact ver +impaction impaction nom +impactions impaction nom +impacts impact nom +impair impair ver +impaired impair ver +impairing impair ver +impairment impairment nom +impairments impairment nom +impairs impair ver +impala impala nom +impalas impala nom +impale impale ver +impaled impale ver +impalement impalement nom +impalements impalement nom +impales impale ver +impaling impale ver +impalpabilities impalpability nom +impalpability impalpability nom +impanel impanel ver +impaneled impanel ver +impaneling impanel ver +impanels impanel ver +impart impart ver +impartation impartation nom +impartations impartation nom +imparted impart ver +impartialities impartiality nom +impartiality impartiality nom +imparting impart ver +imparts impart ver +impasse impasse nom +impasses impasse nom +impassibilities impassibility nom +impassibility impassibility nom +impassiveness impassiveness nom +impassivenesses impassiveness nom +impassivities impassivity nom +impassivity impassivity nom +impasto impasto nom +impastos impasto nom +impatience impatience nom +impatiences impatience nom +impatiens impatiens nom +impeach impeach ver +impeachabilities impeachability nom +impeachability impeachability nom +impeached impeach ver +impeacher impeacher nom +impeachers impeacher nom +impeaches impeach ver +impeaching impeach ver +impeachment impeachment nom +impeachments impeachment nom +impeccabilities impeccability nom +impeccability impeccability nom +impecuniousness impecuniousness nom +impecuniousnesses impecuniousness nom +imped imp ver +impedance impedance nom +impedances impedance nom +impede impede ver +impeded impede ver +impedes impede ver +impediment impediment nom +impediments impediment nom +impeding impede ver +impel impel ver +impelled impel ver +impeller impeller nom +impellers impeller nom +impelling impel ver +impels impel ver +impend impend ver +impended impend ver +impendence impendence nom +impendences impendence nom +impendencies impendency nom +impendency impendency nom +impending impend ver +impends impend ver +impenetrabilities impenetrability nom +impenetrability impenetrability nom +impenetrableness impenetrableness nom +impenetrablenesses impenetrableness nom +impenitence impenitence nom +impenitences impenitence nom +impenitencies impenitency nom +impenitency impenitency nom +imperative imperative nom +imperativeness imperativeness nom +imperativenesses imperativeness nom +imperatives imperative nom +imperceptibilities imperceptibility nom +imperceptibility imperceptibility nom +imperfect imperfect nom +imperfection imperfection nom +imperfections imperfection nom +imperfective imperfective nom +imperfectives imperfective nom +imperfectness imperfectness nom +imperfectnesses imperfectness nom +imperfects imperfect nom +imperial imperial nom +imperialism imperialism nom +imperialisms imperialism nom +imperialist imperialist nom +imperialists imperialist nom +imperials imperial nom +imperil imperil ver +imperiled imperil ver +imperiling imperil ver +imperilment imperilment nom +imperilments imperilment nom +imperils imperil ver +imperiousness imperiousness nom +imperiousnesses imperiousness nom +imperishabilities imperishability nom +imperishability imperishability nom +impermanence impermanence nom +impermanences impermanence nom +impermanencies impermanency nom +impermanency impermanency nom +impermeabilities impermeability nom +impermeability impermeability nom +impermeableness impermeableness nom +impermeablenesses impermeableness nom +impermissibilities impermissibility nom +impermissibility impermissibility nom +impersonate impersonate ver +impersonated impersonate ver +impersonates impersonate ver +impersonating impersonate ver +impersonation impersonation nom +impersonations impersonation nom +impersonator impersonator nom +impersonators impersonator nom +impertinence impertinence nom +impertinences impertinence nom +imperturbabilities imperturbability nom +imperturbability imperturbability nom +imperturbableness imperturbableness nom +imperturbablenesses imperturbableness nom +imperviousness imperviousness nom +imperviousnesses imperviousness nom +impetigo impetigo nom +impetigos impetigo nom +impetuosities impetuosity nom +impetuosity impetuosity nom +impetuousness impetuousness nom +impetuousnesses impetuousness nom +impetus impetus nom +impetuses impetus nom +impieties impiety nom +impiety impiety nom +imping imp ver +impinge impinge ver +impinged impinge ver +impingement impingement nom +impingements impingement nom +impinges impinge ver +impinging impinge ver +impiousness impiousness nom +impiousnesses impiousness nom +impishness impishness nom +impishnesses impishness nom +implacabilities implacability nom +implacability implacability nom +implant implant nom +implantation implantation nom +implantations implantation nom +implanted implant ver +implanting implant ver +implants implant nom +implausibilities implausibility nom +implausibility implausibility nom +implausibleness implausibleness nom +implausiblenesses implausibleness nom +implement implement nom +implementation implementation nom +implementations implementation nom +implemented implement ver +implementing implement ver +implements implement nom +implicate implicate ver +implicated implicate ver +implicates implicate ver +implicating implicate ver +implication implication nom +implications implication nom +implicitness implicitness nom +implicitnesses implicitness nom +implied imply ver +implies imply ver +implode implode ver +imploded implode ver +implodes implode ver +imploding implode ver +implore implore ver +implored implore ver +implores implore ver +imploring implore ver +implosion implosion nom +implosions implosion nom +implosive implosive nom +implosives implosive nom +imply imply ver +implying imply ver +impolite impolite adj +impoliteness impoliteness nom +impolitenesses impoliteness nom +impoliter impolite adj +impolitest impolite adj +imponderable imponderable nom +imponderables imponderable nom +import import nom +importance importance nom +importances importance nom +importation importation nom +importations importation nom +imported import ver +importer importer nom +importers importer nom +importing import ver +imports import nom +importune importune ver +importuned importune ver +importunes importune ver +importuning importune ver +importunities importunity nom +importunity importunity nom +impose impose ver +imposed impose ver +imposer imposer nom +imposers imposer nom +imposes impose ver +imposing impose ver +imposition imposition nom +impositions imposition nom +impossibilities impossibility nom +impossibility impossibility nom +impossible impossible nom +impossibleness impossibleness nom +impossiblenesses impossibleness nom +impossibles impossible nom +impost impost nom +imposted impost ver +imposter imposter nom +imposters imposter nom +imposting impost ver +impostor impostor nom +impostors impostor nom +imposts impost nom +imposture imposture nom +impostures imposture nom +impotence impotence nom +impotences impotence nom +impotencies impotency nom +impotency impotency nom +impotent impotent nom +impotents impotent nom +impound impound ver +impounded impound ver +impounding impound ver +impoundment impoundment nom +impoundments impoundment nom +impounds impound ver +impoverish impoverish ver +impoverished impoverish ver +impoverishes impoverish ver +impoverishing impoverish ver +impoverishment impoverishment nom +impoverishments impoverishment nom +impracticabilities impracticability nom +impracticability impracticability nom +impracticableness impracticableness nom +impracticablenesses impracticableness nom +impracticalities impracticality nom +impracticality impracticality nom +imprecate imprecate ver +imprecated imprecate ver +imprecates imprecate ver +imprecating imprecate ver +imprecation imprecation nom +imprecations imprecation nom +impreciseness impreciseness nom +imprecisenesses impreciseness nom +imprecision imprecision nom +imprecisions imprecision nom +impregnabilities impregnability nom +impregnability impregnability nom +impregnate impregnate ver +impregnated impregnate ver +impregnates impregnate ver +impregnating impregnate ver +impregnation impregnation nom +impregnations impregnation nom +impresario impresario nom +impresarios impresario nom +impress impress nom +impressed impress ver +impresses impress nom +impressibilities impressibility nom +impressibility impressibility nom +impressing impress ver +impression impression nom +impressionabilities impressionability nom +impressionability impressionability nom +impressionism impressionism nom +impressionisms impressionism nom +impressionist impressionist nom +impressionists impressionist nom +impressions impression nom +impressiveness impressiveness nom +impressivenesses impressiveness nom +impressment impressment nom +impressments impressment nom +imprimatur imprimatur nom +imprimaturs imprimatur nom +imprint imprint nom +imprinted imprint ver +imprinter imprinter nom +imprinters imprinter nom +imprinting imprint ver +imprintings imprinting nom +imprints imprint nom +imprison imprison ver +imprisoned imprison ver +imprisoning imprison ver +imprisonment imprisonment nom +imprisonments imprisonment nom +imprisons imprison ver +improbabilities improbability nom +improbability improbability nom +improbableness improbableness nom +improbablenesses improbableness nom +impromptu impromptu nom +impromptus impromptu nom +improperness improperness nom +impropernesses improperness nom +improprieties impropriety nom +impropriety impropriety nom +improve improve ver +improved improve ver +improvement improvement nom +improvements improvement nom +improver improver nom +improvers improver nom +improves improve ver +improvidence improvidence nom +improvidences improvidence nom +improving improve ver +improvisation improvisation nom +improvisations improvisation nom +improvise improvise ver +improvised improvise ver +improviser improviser nom +improvisers improviser nom +improvises improvise ver +improvising improvise ver +improvisor improvisor nom +improvisors improvisor nom +imprudence imprudence nom +imprudences imprudence nom +imps imp nom +impudence impudence nom +impudences impudence nom +impugn impugn ver +impugned impugn ver +impugner impugner nom +impugners impugner nom +impugning impugn ver +impugns impugn ver +impuissance impuissance nom +impuissances impuissance nom +impulse impulse nom +impulsed impulse ver +impulses impulse nom +impulsing impulse ver +impulsion impulsion nom +impulsions impulsion nom +impulsiveness impulsiveness nom +impulsivenesses impulsiveness nom +impunities impunity nom +impunity impunity nom +impure impure adj +impureness impureness nom +impurenesses impureness nom +impurer impure adj +impurest impure adj +impurities impurity nom +impurity impurity nom +imputation imputation nom +imputations imputation nom +impute impute ver +imputed impute ver +imputes impute ver +imputing impute ver +in in sw +inabilities inability nom +inability inability nom +inaccessibilities inaccessibility nom +inaccessibility inaccessibility nom +inaccuracies inaccuracy nom +inaccuracy inaccuracy nom +inaction inaction nom +inactions inaction nom +inactivate inactivate ver +inactivated inactivate ver +inactivates inactivate ver +inactivating inactivate ver +inactivation inactivation nom +inactivations inactivation nom +inactiveness inactiveness nom +inactivenesses inactiveness nom +inactivities inactivity nom +inactivity inactivity nom +inadequacies inadequacy nom +inadequacy inadequacy nom +inadequateness inadequateness nom +inadequatenesses inadequateness nom +inadmissibilities inadmissibility nom +inadmissibility inadmissibility nom +inadvertence inadvertence nom +inadvertences inadvertence nom +inadvertencies inadvertency nom +inadvertency inadvertency nom +inadvisabilities inadvisability nom +inadvisability inadvisability nom +inalienabilities inalienability nom +inalienability inalienability nom +inamorata inamorata nom +inamoratas inamorata nom +inane inane adj +inaner inane adj +inanes inane nom +inanest inane adj +inanimateness inanimateness nom +inanimatenesses inanimateness nom +inanities inanity nom +inanition inanition nom +inanitions inanition nom +inanity inanity nom +inapplicabilities inapplicability nom +inapplicability inapplicability nom +inappositeness inappositeness nom +inappositenesses inappositeness nom +inappropriateness inappropriateness nom +inappropriatenesses inappropriateness nom +inaptitude inaptitude nom +inaptitudes inaptitude nom +inaptness inaptness nom +inaptnesses inaptness nom +inarticulateness inarticulateness nom +inarticulatenesses inarticulateness nom +inasmuch inasmuch sw +inattention inattention nom +inattentions inattention nom +inattentiveness inattentiveness nom +inattentivenesses inattentiveness nom +inaudibilities inaudibility nom +inaudibility inaudibility nom +inaugural inaugural nom +inaugurals inaugural nom +inaugurate inaugurate ver +inaugurated inaugurate ver +inaugurates inaugurate ver +inaugurating inaugurate ver +inauguration inauguration nom +inaugurations inauguration nom +inauspiciousness inauspiciousness nom +inauspiciousnesses inauspiciousness nom +inboard inboard nom +inboards inboard nom +inbred inbreed ver +inbreed inbreed ver +inbreeding inbreed ver +inbreedings inbreeding nom +inbreeds inbreed ver +inc inc sw +incalescence incalescence nom +incalescences incalescence nom +incandescence incandescence nom +incandescences incandescence nom +incantation incantation nom +incantations incantation nom +incapabilities incapability nom +incapability incapability nom +incapable incapable nom +incapableness incapableness nom +incapablenesses incapableness nom +incapables incapable nom +incapacitate incapacitate ver +incapacitated incapacitate ver +incapacitates incapacitate ver +incapacitating incapacitate ver +incapacities incapacity nom +incapacity incapacity nom +incarcerate incarcerate ver +incarcerated incarcerate ver +incarcerates incarcerate ver +incarcerating incarcerate ver +incarceration incarceration nom +incarcerations incarceration nom +incarnadine incarnadine ver +incarnadined incarnadine ver +incarnadines incarnadine ver +incarnadining incarnadine ver +incarnate incarnate ver +incarnated incarnate ver +incarnates incarnate ver +incarnating incarnate ver +incarnation incarnation nom +incarnations incarnation nom +incasement incasement nom +incasements incasement nom +incaution incaution nom +incautions incaution nom +incautiousness incautiousness nom +incautiousnesses incautiousness nom +incendiaries incendiary nom +incendiarism incendiarism nom +incendiarisms incendiarism nom +incendiary incendiary nom +incense incense nom +incensed incense ver +incenses incense nom +incensing incense ver +incentive incentive nom +incentives incentive nom +inception inception nom +inceptions inception nom +incertitude incertitude nom +incertitudes incertitude nom +incessancies incessancy nom +incessancy incessancy nom +incessantness incessantness nom +incessantnesses incessantness nom +incest incest nom +incests incest nom +incestuousness incestuousness nom +incestuousnesses incestuousness nom +inch inch nom +inched inch ver +inches inch nom +inching inch ver +inchworm inchworm nom +inchworms inchworm nom +incidence incidence nom +incidences incidence nom +incident incident nom +incidental incidental nom +incidentals incidental nom +incidents incident nom +incinerate incinerate ver +incinerated incinerate ver +incinerates incinerate ver +incinerating incinerate ver +incineration incineration nom +incinerations incineration nom +incinerator incinerator nom +incinerators incinerator nom +incipience incipience nom +incipiences incipience nom +incipiencies incipiency nom +incipiency incipiency nom +incise incise ver +incised incise ver +incises incise ver +incising incise ver +incision incision nom +incisions incision nom +incisiveness incisiveness nom +incisivenesses incisiveness nom +incisor incisor nom +incisors incisor nom +incitation incitation nom +incitations incitation nom +incite incite ver +incited incite ver +incitement incitement nom +incitements incitement nom +inciter inciter nom +inciters inciter nom +incites incite ver +inciting incite ver +incivilities incivility nom +incivility incivility nom +inclemencies inclemency nom +inclemency inclemency nom +inclination inclination nom +inclinations inclination nom +incline incline nom +inclined incline ver +inclines incline nom +inclining incline ver +inclinings inclining nom +inclinometer inclinometer nom +inclinometers inclinometer nom +inclose inclose ver +inclosed inclose ver +incloses inclose ver +inclosing inclose ver +inclosure inclosure nom +inclosures inclosure nom +include include ver +included include ver +includes include ver +including include ver +inclusion inclusion nom +inclusions inclusion nom +inclusiveness inclusiveness nom +inclusivenesses inclusiveness nom +incognito incognito nom +incognitos incognito nom +incoherence incoherence nom +incoherences incoherence nom +incoherencies incoherency nom +incoherency incoherency nom +incombustible incombustible nom +incombustibles incombustible nom +income income nom +incomes income nom +incoming incoming nom +incomings incoming nom +incommode incommode ver +incommoded incommode ver +incommodes incommode ver +incommoding incommode ver +incommodiousness incommodiousness nom +incommodiousnesses incommodiousness nom +incommutabilities incommutability nom +incommutability incommutability nom +incompatibilities incompatibility nom +incompatibility incompatibility nom +incompatible incompatible nom +incompatibles incompatible nom +incompetence incompetence nom +incompetences incompetence nom +incompetencies incompetency nom +incompetency incompetency nom +incompetent incompetent nom +incompetents incompetent nom +incompleteness incompleteness nom +incompletenesses incompleteness nom +incomprehensibilities incomprehensibility nom +incomprehensibility incomprehensibility nom +incomprehension incomprehension nom +incomprehensions incomprehension nom +incompressibilities incompressibility nom +incompressibility incompressibility nom +inconceivabilities inconceivability nom +inconceivability inconceivability nom +inconceivableness inconceivableness nom +inconceivablenesses inconceivableness nom +inconclusiveness inconclusiveness nom +inconclusivenesses inconclusiveness nom +incongruities incongruity nom +incongruity incongruity nom +incongruousness incongruousness nom +incongruousnesses incongruousness nom +inconsequence inconsequence nom +inconsequences inconsequence nom +inconsiderateness inconsiderateness nom +inconsideratenesses inconsiderateness nom +inconsideration inconsideration nom +inconsiderations inconsideration nom +inconsistencies inconsistency nom +inconsistency inconsistency nom +inconspicuousness inconspicuousness nom +inconspicuousnesses inconspicuousness nom +inconstancies inconstancy nom +inconstancy inconstancy nom +incontestabilities incontestability nom +incontestability incontestability nom +incontinence incontinence nom +incontinences incontinence nom +incontinencies incontinency nom +incontinency incontinency nom +incontrovertibilities incontrovertibility nom +incontrovertibility incontrovertibility nom +incontrovertibleness incontrovertibleness nom +incontrovertiblenesses incontrovertibleness nom +inconvenience inconvenience nom +inconvenienced inconvenience ver +inconveniences inconvenience nom +inconveniencing inconvenience ver +inconvertibilities inconvertibility nom +inconvertibility inconvertibility nom +incoordination incoordination nom +incoordinations incoordination nom +incorporate incorporate ver +incorporated incorporate ver +incorporates incorporate ver +incorporating incorporate ver +incorporation incorporation nom +incorporations incorporation nom +incorporealities incorporeality nom +incorporeality incorporeality nom +incorrectness incorrectness nom +incorrectnesses incorrectness nom +incorrigibilities incorrigibility nom +incorrigibility incorrigibility nom +incorrigible incorrigible nom +incorrigibles incorrigible nom +incorruptibilities incorruptibility nom +incorruptibility incorruptibility nom +incorruption incorruption nom +incorruptions incorruption nom +incorruptness incorruptness nom +incorruptnesses incorruptness nom +increase increase nom +increased increase ver +increases increase nom +increasing increase ver +incredibilities incredibility nom +incredibility incredibility nom +incredibleness incredibleness nom +incrediblenesses incredibleness nom +incredulities incredulity nom +incredulity incredulity nom +increment increment nom +increments increment nom +incriminate incriminate ver +incriminated incriminate ver +incriminates incriminate ver +incriminating incriminate ver +incrimination incrimination nom +incriminations incrimination nom +incrust incrust ver +incrustation incrustation nom +incrustations incrustation nom +incrusted incrust ver +incrusting incrust ver +incrusts incrust ver +incubate incubate ver +incubated incubate ver +incubates incubate ver +incubating incubate ver +incubation incubation nom +incubations incubation nom +incubator incubator nom +incubators incubator nom +incubus incubus nom +incubuses incubus nom +inculcate inculcate ver +inculcated inculcate ver +inculcates inculcate ver +inculcating inculcate ver +inculcation inculcation nom +inculcations inculcation nom +inculpabilities inculpability nom +inculpability inculpability nom +inculpableness inculpableness nom +inculpablenesses inculpableness nom +inculpate inculpate ver +inculpated inculpate ver +inculpates inculpate ver +inculpating inculpate ver +inculpation inculpation nom +inculpations inculpation nom +incumbencies incumbency nom +incumbency incumbency nom +incumbent incumbent nom +incumbents incumbent nom +incumber incumber ver +incumbered incumber ver +incumbering incumber ver +incumbers incumber ver +incunabula incunabulum nom +incunabulum incunabulum nom +incur incur ver +incurabilities incurability nom +incurability incurability nom +incurable incurable nom +incurableness incurableness nom +incurablenesses incurableness nom +incurables incurable nom +incurred incur ver +incurrence incurrence nom +incurrences incurrence nom +incurring incur ver +incurs incur ver +incursion incursion nom +incursions incursion nom +incus incus nom +incuses incus nom +indebtedness indebtedness nom +indebtednesses indebtedness nom +indecencies indecency nom +indecency indecency nom +indecent indecent adj +indecenter indecent adj +indecentest indecent adj +indecision indecision nom +indecisions indecision nom +indecisiveness indecisiveness nom +indecisivenesses indecisiveness nom +indecorousness indecorousness nom +indecorousnesses indecorousness nom +indecorum indecorum nom +indecorums indecorum nom +indeed indeed sw +indefatigabilities indefatigability nom +indefatigability indefatigability nom +indefatigableness indefatigableness nom +indefatigablenesses indefatigableness nom +indefinable indefinable nom +indefinables indefinable nom +indefiniteness indefiniteness nom +indefinitenesses indefiniteness nom +indelicacies indelicacy nom +indelicacy indelicacy nom +indemnification indemnification nom +indemnifications indemnification nom +indemnified indemnify ver +indemnifies indemnify ver +indemnify indemnify ver +indemnifying indemnify ver +indemnities indemnity nom +indemnity indemnity nom +indene indene nom +indenes indene nom +indent indent nom +indentation indentation nom +indentations indentation nom +indented indent ver +indenting indent ver +indention indention nom +indentions indention nom +indents indent nom +indenture indenture nom +indentured indenture ver +indentures indenture nom +indenturing indenture ver +independence independence nom +independences independence nom +independencies independency nom +independency independency nom +independent independent nom +independents independent nom +indestructibilities indestructibility nom +indestructibility indestructibility nom +indeterminacies indeterminacy nom +indeterminacy indeterminacy nom +indeterminateness indeterminateness nom +indeterminatenesses indeterminateness nom +indetermination indetermination nom +indeterminations indetermination nom +index index nom +indexation indexation nom +indexations indexation nom +indexed index ver +indexer indexer nom +indexers indexer nom +indexes index nom +indexing index ver +indexings indexing nom +indicant indicant nom +indicants indicant nom +indicate indicate sw +indicated indicated sw +indicates indicates sw +indicating indicate ver +indication indication nom +indications indication nom +indicative indicative nom +indicatives indicative nom +indicator indicator nom +indicators indicator nom +indict indict ver +indicted indict ver +indicting indict ver +indiction indiction nom +indictions indiction nom +indictment indictment nom +indictments indictment nom +indicts indict ver +indifference indifference nom +indifferences indifference nom +indigence indigence nom +indigences indigence nom +indigenousness indigenousness nom +indigenousnesses indigenousness nom +indigent indigent nom +indigents indigent nom +indigestibilities indigestibility nom +indigestibility indigestibility nom +indigestibleness indigestibleness nom +indigestiblenesses indigestibleness nom +indigestion indigestion nom +indigestions indigestion nom +indignation indignation nom +indignations indignation nom +indignities indignity nom +indignity indignity nom +indigo indigo nom +indigos indigo nom +indigotin indigotin nom +indigotins indigotin nom +indirect indirect ver +indirected indirect ver +indirecting indirect ver +indirection indirection nom +indirections indirection nom +indirectness indirectness nom +indirectnesses indirectness nom +indirects indirect ver +indiscipline indiscipline nom +indisciplines indiscipline nom +indiscreetness indiscreetness nom +indiscreetnesses indiscreetness nom +indiscretion indiscretion nom +indiscretions indiscretion nom +indispensabilities indispensability nom +indispensability indispensability nom +indispensable indispensable nom +indispensableness indispensableness nom +indispensablenesses indispensableness nom +indispensables indispensable nom +indispose indispose ver +indisposed indispose ver +indisposes indispose ver +indisposing indispose ver +indisposition indisposition nom +indispositions indisposition nom +indisputabilities indisputability nom +indisputability indisputability nom +indistinctness indistinctness nom +indistinctnesses indistinctness nom +indistinguishabilities indistinguishability nom +indistinguishability indistinguishability nom +indite indite ver +indited indite ver +indites indite ver +inditing indite ver +indium indium nom +indiums indium nom +individual individual nom +individualise individualise ver +individualised individualise ver +individualises individualise ver +individualising individualise ver +individualism individualism nom +individualisms individualism nom +individualist individualist nom +individualists individualist nom +individualities individuality nom +individuality individuality nom +individualization individualization nom +individualizations individualization nom +individualize individualize ver +individualized individualize ver +individualizes individualize ver +individualizing individualize ver +individuals individual nom +individuate individuate ver +individuated individuate ver +individuates individuate ver +individuating individuate ver +individuation individuation nom +individuations individuation nom +indivisibilities indivisibility nom +indivisibility indivisibility nom +indivisible indivisible nom +indivisibles indivisible nom +indoctrinate indoctrinate ver +indoctrinated indoctrinate ver +indoctrinates indoctrinate ver +indoctrinating indoctrinate ver +indoctrination indoctrination nom +indoctrinations indoctrination nom +indolence indolence nom +indolences indolence nom +indomethacin indomethacin nom +indomethacins indomethacin nom +indomitabilities indomitability nom +indomitability indomitability nom +indorse indorse ver +indorsed indorse ver +indorses indorse ver +indorsing indorse ver +indri indri nom +indris indri nom +indrises indris nom +indubitabilities indubitability nom +indubitability indubitability nom +induce induce ver +induced induce ver +inducement inducement nom +inducements inducement nom +inducer inducer nom +inducers inducer nom +induces induce ver +inducing induce ver +induct induct ver +inductance inductance nom +inductances inductance nom +inducted induct ver +inductee inductee nom +inductees inductee nom +inducting induct ver +induction induction nom +inductions induction nom +inductor inductor nom +inductors inductor nom +inducts induct ver +indue indue ver +indued indue ver +indues indue ver +induing indue ver +indulge indulge ver +indulged indulge ver +indulgence indulgence nom +indulgenced indulgence ver +indulgences indulgence nom +indulgencing indulgence ver +indulges indulge ver +indulging indulge ver +induration induration nom +indurations induration nom +indusia indusium nom +indusium indusium nom +industrial industrial nom +industrialism industrialism nom +industrialisms industrialism nom +industrialist industrialist nom +industrialists industrialist nom +industrialization industrialization nom +industrializations industrialization nom +industrialize industrialize ver +industrialized industrialize ver +industrializes industrialize ver +industrializing industrialize ver +industrials industrial nom +industries industry nom +industriousness industriousness nom +industriousnesses industriousness nom +industry industry nom +indwell indwell ver +indwelling indwell ver +indwells indwell ver +indwelt indwell ver +inebriant inebriant nom +inebriants inebriant nom +inebriate inebriate nom +inebriated inebriate ver +inebriates inebriate nom +inebriating inebriate ver +inebriation inebriation nom +inebriations inebriation nom +inebrieties inebriety nom +inebriety inebriety nom +ineffabilities ineffability nom +ineffability ineffability nom +ineffectiveness ineffectiveness nom +ineffectivenesses ineffectiveness nom +ineffectualities ineffectuality nom +ineffectuality ineffectuality nom +ineffectualness ineffectualness nom +ineffectualnesses ineffectualness nom +inefficacies inefficacy nom +inefficaciousness inefficaciousness nom +inefficaciousnesses inefficaciousness nom +inefficacy inefficacy nom +inefficiencies inefficiency nom +inefficiency inefficiency nom +inelasticities inelasticity nom +inelasticity inelasticity nom +inelegance inelegance nom +inelegances inelegance nom +ineligibilities ineligibility nom +ineligibility ineligibility nom +ineligible ineligible nom +ineligibles ineligible nom +inept inept adj +inepter inept adj +ineptest inept adj +ineptitude ineptitude nom +ineptitudes ineptitude nom +ineptness ineptness nom +ineptnesses ineptness nom +inequalities inequality nom +inequality inequality nom +inequities inequity nom +inequity inequity nom +inerrancies inerrancy nom +inerrancy inerrancy nom +inert inert adj +inerter inert adj +inertest inert adj +inertia inertia nom +inertias inertia nom +inertness inertness nom +inertnesses inertness nom +inessential inessential nom +inessentialities inessentiality nom +inessentiality inessentiality nom +inessentials inessential nom +inevitabilities inevitability nom +inevitability inevitability nom +inevitable inevitable nom +inevitableness inevitableness nom +inevitablenesses inevitableness nom +inevitables inevitable nom +inexactitude inexactitude nom +inexactitudes inexactitude nom +inexactness inexactness nom +inexactnesses inexactness nom +inexorabilities inexorability nom +inexorability inexorability nom +inexorableness inexorableness nom +inexorablenesses inexorableness nom +inexpedience inexpedience nom +inexpediences inexpedience nom +inexpediencies inexpediency nom +inexpediency inexpediency nom +inexpensiveness inexpensiveness nom +inexpensivenesses inexpensiveness nom +inexperience inexperience nom +inexperiences inexperience nom +inexplicitness inexplicitness nom +inexplicitnesses inexplicitness nom +inexpressible inexpressible nom +inexpressibles inexpressible nom +infallibilities infallibility nom +infallibility infallibility nom +infallible infallible nom +infallibles infallible nom +infamies infamy nom +infamy infamy nom +infancies infancy nom +infancy infancy nom +infant infant nom +infanticide infanticide nom +infanticides infanticide nom +infantilism infantilism nom +infantilisms infantilism nom +infantries infantry nom +infantry infantry nom +infantryman infantryman nom +infantrymen infantryman nom +infants infant nom +infarct infarct nom +infarction infarction nom +infarctions infarction nom +infarcts infarct nom +infatuate infatuate nom +infatuated infatuate ver +infatuates infatuate nom +infatuating infatuate ver +infatuation infatuation nom +infatuations infatuation nom +infeasibilities infeasibility nom +infeasibility infeasibility nom +infect infect ver +infected infect ver +infecting infect ver +infection infection nom +infections infection nom +infectiousness infectiousness nom +infectiousnesses infectiousness nom +infects infect ver +infelicities infelicity nom +infelicity infelicity nom +infer infer ver +inference inference nom +inferences inference nom +inferior inferior nom +inferiorities inferiority nom +inferiority inferiority nom +inferiors inferior nom +inferno inferno nom +infernos inferno nom +inferred infer ver +inferring infer ver +infers infer ver +infertilities infertility nom +infertility infertility nom +infest infest ver +infestation infestation nom +infestations infestation nom +infested infest ver +infesting infest ver +infests infest ver +infidel infidel nom +infidelities infidelity nom +infidelity infidelity nom +infidels infidel nom +infield infield nom +infielder infielder nom +infielders infielder nom +infields infield nom +infighter infighter nom +infighters infighter nom +infighting infighting nom +infightings infighting nom +infiltrate infiltrate nom +infiltrated infiltrate ver +infiltrates infiltrate nom +infiltrating infiltrate ver +infiltration infiltration nom +infiltrations infiltration nom +infiltrator infiltrator nom +infiltrators infiltrator nom +infinite infinite nom +infiniteness infiniteness nom +infinitenesses infiniteness nom +infinites infinite nom +infinitesimal infinitesimal nom +infinitesimals infinitesimal nom +infinities infinity nom +infinitive infinitive nom +infinitives infinitive nom +infinitude infinitude nom +infinitudes infinitude nom +infinity infinity nom +infirm infirm adj +infirmaries infirmary nom +infirmary infirmary nom +infirmed infirm ver +infirmer infirm adj +infirmest infirm adj +infirming infirm ver +infirmities infirmity nom +infirmity infirmity nom +infirms infirm ver +infix infix nom +infixed infix ver +infixes infix nom +infixing infix ver +inflame inflame ver +inflamed inflame ver +inflames inflame ver +inflaming inflame ver +inflammabilities inflammability nom +inflammability inflammability nom +inflammable inflammable nom +inflammables inflammable nom +inflammation inflammation nom +inflammations inflammation nom +inflatable inflatable nom +inflatables inflatable nom +inflate inflate ver +inflated inflate ver +inflater inflater nom +inflaters inflater nom +inflates inflate ver +inflating inflate ver +inflation inflation nom +inflations inflation nom +inflator inflator nom +inflators inflator nom +inflect inflect ver +inflected inflect ver +inflecting inflect ver +inflection inflection nom +inflections inflection nom +inflects inflect ver +inflexibilities inflexibility nom +inflexibility inflexibility nom +inflexibleness inflexibleness nom +inflexiblenesses inflexibleness nom +inflexion inflexion nom +inflexions inflexion nom +inflict inflict ver +inflicted inflict ver +inflicting inflict ver +infliction infliction nom +inflictions infliction nom +inflicts inflict ver +inflorescence inflorescence nom +inflorescences inflorescence nom +inflow inflow nom +inflows inflow nom +influence influence nom +influenced influence ver +influences influence nom +influencing influence ver +influential influential nom +influentials influential nom +influenza influenza nom +influenzas influenza nom +influx influx nom +influxes influx nom +info info nom +infold infold ver +infolded infold ver +infolding infold ver +infolds infold ver +infomercial infomercial nom +infomercials infomercial nom +inform inform ver +informalities informality nom +informality informality nom +informant informant nom +informants informant nom +information information nom +informations information nom +informativeness informativeness nom +informativenesses informativeness nom +informed inform ver +informer informer nom +informers informer nom +informing inform ver +informs inform ver +infos info nom +infotainment infotainment nom +infotainments infotainment nom +infract infract ver +infracted infract ver +infracting infract ver +infraction infraction nom +infractions infraction nom +infracts infract ver +infrared infrared nom +infrareds infrared nom +infrastructure infrastructure nom +infrastructures infrastructure nom +infrequence infrequence nom +infrequences infrequence nom +infrequencies infrequency nom +infrequency infrequency nom +infringe infringe ver +infringed infringe ver +infringement infringement nom +infringements infringement nom +infringes infringe ver +infringing infringe ver +infuriate infuriate ver +infuriated infuriate ver +infuriates infuriate ver +infuriating infuriate ver +infuriation infuriation nom +infuriations infuriation nom +infuse infuse ver +infused infuse ver +infuser infuser nom +infusers infuser nom +infuses infuse ver +infusing infuse ver +infusion infusion nom +infusions infusion nom +infusorian infusorian nom +infusorians infusorian nom +ingathering ingathering nom +ingatherings ingathering nom +ingeminate ingeminate ver +ingeminated ingeminate ver +ingeminates ingeminate ver +ingeminating ingeminate ver +ingeniousness ingeniousness nom +ingeniousnesses ingeniousness nom +ingenue ingenue nom +ingenues ingenue nom +ingenuities ingenuity nom +ingenuity ingenuity nom +ingenuousness ingenuousness nom +ingenuousnesses ingenuousness nom +ingest ingest ver +ingested ingest ver +ingesting ingest ver +ingestion ingestion nom +ingestions ingestion nom +ingests ingest ver +inglenook inglenook nom +inglenooks inglenook nom +ingot ingot nom +ingoted ingot ver +ingoting ingot ver +ingots ingot nom +ingraft ingraft ver +ingrafted ingraft ver +ingrafting ingraft ver +ingrafts ingraft ver +ingrain ingrain nom +ingrained ingrain ver +ingraining ingrain ver +ingrains ingrain nom +ingrate ingrate nom +ingrates ingrate nom +ingratiate ingratiate ver +ingratiated ingratiate ver +ingratiates ingratiate ver +ingratiating ingratiate ver +ingratiation ingratiation nom +ingratiations ingratiation nom +ingratitude ingratitude nom +ingratitudes ingratitude nom +ingredient ingredient nom +ingredients ingredient nom +ingress ingress nom +ingresses ingress nom +ingroup ingroup nom +ingroups ingroup nom +ingrowth ingrowth nom +ingrowths ingrowth nom +ingurgitate ingurgitate ver +ingurgitated ingurgitate ver +ingurgitates ingurgitate ver +ingurgitating ingurgitate ver +inhabit inhabit ver +inhabitancies inhabitancy nom +inhabitancy inhabitancy nom +inhabitant inhabitant nom +inhabitants inhabitant nom +inhabitation inhabitation nom +inhabitations inhabitation nom +inhabited inhabit ver +inhabiting inhabit ver +inhabits inhabit ver +inhalant inhalant nom +inhalants inhalant nom +inhalation inhalation nom +inhalations inhalation nom +inhalator inhalator nom +inhalators inhalator nom +inhale inhale ver +inhaled inhale ver +inhaler inhaler nom +inhalers inhaler nom +inhales inhale ver +inhaling inhale ver +inharmoniousness inharmoniousness nom +inharmoniousnesses inharmoniousness nom +inhere inhere ver +inhered inhere ver +inherence inherence nom +inherences inherence nom +inheres inhere ver +inhering inhere ver +inherit inherit ver +inheritance inheritance nom +inheritances inheritance nom +inherited inherit ver +inheriting inherit ver +inheritor inheritor nom +inheritors inheritor nom +inheritress inheritress nom +inheritresses inheritress nom +inheritrix inheritrix nom +inheritrixes inheritrix nom +inherits inherit ver +inhibit inhibit ver +inhibited inhibit ver +inhibiting inhibit ver +inhibition inhibition nom +inhibitions inhibition nom +inhibitor inhibitor nom +inhibitors inhibitor nom +inhibits inhibit ver +inhospitableness inhospitableness nom +inhospitablenesses inhospitableness nom +inhumanities inhumanity nom +inhumanity inhumanity nom +inhumation inhumation nom +inhumations inhumation nom +iniquities iniquity nom +iniquity iniquity nom +initial initial nom +initialed initial ver +initialing initial ver +initialization initialization nom +initializations initialization nom +initialize initialize ver +initialized initialize ver +initializes initialize ver +initializing initialize ver +initials initial nom +initiate initiate nom +initiated initiate ver +initiates initiate nom +initiating initiate ver +initiation initiation nom +initiations initiation nom +initiative initiative nom +initiatives initiative nom +initiator initiator nom +initiators initiator nom +inject inject ver +injectant injectant nom +injectants injectant nom +injected inject ver +injecting inject ver +injection injection nom +injections injection nom +injector injector nom +injectors injector nom +injects inject ver +injudiciousness injudiciousness nom +injudiciousnesses injudiciousness nom +injunction injunction nom +injunctions injunction nom +injure injure ver +injured injure ver +injurer injurer nom +injurers injurer nom +injures injure ver +injuries injury nom +injuring injure ver +injuriousness injuriousness nom +injuriousnesses injuriousness nom +injury injury nom +injustice injustice nom +injustices injustice nom +ink ink nom +inkberries inkberry nom +inkberry inkberry nom +inkblot inkblot nom +inkblots inkblot nom +inked ink ver +inkier inky adj +inkiest inky adj +inkiness inkiness nom +inkinesses inkiness nom +inking ink ver +inkle inkle nom +inkles inkle nom +inkling inkling nom +inkpot inkpot nom +inkpots inkpot nom +inks ink nom +inkstand inkstand nom +inkstands inkstand nom +inkwell inkwell nom +inkwells inkwell nom +inky inky adj +inlaid inlay ver +inland inland nom +inlands inland nom +inlay inlay nom +inlaying inlay ver +inlays inlay nom +inlet inlet ver +inlets inlet nom +inletting inlet ver +inmate inmate nom +inmates inmate nom +inn inn nom +innateness innateness nom +innatenesses innateness nom +inner inner sw +innermost innermost nom +innermosts innermost nom +innersole innersole nom +innersoles innersole nom +innervate innervate ver +innervated innervate ver +innervates innervate ver +innervating innervate ver +innervation innervation nom +innervations innervation nom +inning inning nom +innings inning nom +innkeeper innkeeper nom +innkeepers innkeeper nom +innocence innocence nom +innocences innocence nom +innocent innocent adj +innocenter innocent adj +innocentest innocent adj +innocents innocent nom +innocuousness innocuousness nom +innocuousnesses innocuousness nom +innovate innovate ver +innovated innovate ver +innovates innovate ver +innovating innovate ver +innovation innovation nom +innovations innovation nom +innovativeness innovativeness nom +innovativenesses innovativeness nom +innovator innovator nom +innovators innovator nom +inns inn nom +innuendo innuendo nom +innuendos innuendo nom +innumerableness innumerableness nom +innumerablenesses innumerableness nom +innumeracies innumeracy nom +innumeracy innumeracy nom +innumerate innumerate nom +innumerates innumerate nom +inoculate inoculate ver +inoculated inoculate ver +inoculates inoculate ver +inoculating inoculate ver +inoculation inoculation nom +inoculations inoculation nom +inoffensiveness inoffensiveness nom +inoffensivenesses inoffensiveness nom +inopportuneness inopportuneness nom +inopportunenesses inopportuneness nom +inordinateness inordinateness nom +inordinatenesses inordinateness nom +inosculation inosculation nom +inosculations inosculation nom +inositol inositol nom +inositols inositol nom +inpatient inpatient nom +inpatients inpatient nom +inpour inpour nom +inpouring inpouring nom +inpourings inpouring nom +inpours inpour nom +input input nom +inputs input nom +inputted input ver +inputting input ver +inquest inquest nom +inquests inquest nom +inquietude inquietude nom +inquietudes inquietude nom +inquire inquire ver +inquired inquire ver +inquirer inquirer nom +inquirers inquirer nom +inquires inquire ver +inquiries inquiry nom +inquiring inquire ver +inquiry inquiry nom +inquisition inquisition nom +inquisitions inquisition nom +inquisitiveness inquisitiveness nom +inquisitivenesses inquisitiveness nom +inquisitor inquisitor nom +inquisitors inquisitor nom +inroad inroad nom +inroads inroad nom +inrush inrush nom +inrushes inrush nom +insalubrities insalubrity nom +insalubrity insalubrity nom +insane insane adj +insaneness insaneness nom +insanenesses insaneness nom +insaner insane adj +insanest insane adj +insanities insanity nom +insanity insanity nom +insatiabilities insatiability nom +insatiability insatiability nom +inscribe inscribe ver +inscribed inscribe ver +inscriber inscriber nom +inscribers inscriber nom +inscribes inscribe ver +inscribing inscribe ver +inscription inscription nom +inscriptions inscription nom +inscrutabilities inscrutability nom +inscrutability inscrutability nom +inscrutableness inscrutableness nom +inscrutablenesses inscrutableness nom +inseam inseam nom +inseams inseam nom +insect insect nom +insecticide insecticide nom +insecticides insecticide nom +insectifuge insectifuge nom +insectifuges insectifuge nom +insectivore insectivore nom +insectivores insectivore nom +insects insect nom +insecureness insecureness nom +insecurenesses insecureness nom +insecurities insecurity nom +insecurity insecurity nom +inseminate inseminate ver +inseminated inseminate ver +inseminates inseminate ver +inseminating inseminate ver +insemination insemination nom +inseminations insemination nom +insensibilities insensibility nom +insensibility insensibility nom +insensitiveness insensitiveness nom +insensitivenesses insensitiveness nom +insensitivities insensitivity nom +insensitivity insensitivity nom +insentience insentience nom +insentiences insentience nom +inseparabilities inseparability nom +inseparability inseparability nom +inseparable inseparable nom +inseparables inseparable nom +insert insert nom +inserted insert ver +inserting insert ver +insertion insertion nom +insertions insertion nom +inserts insert nom +inset inset ver +insets inset nom +insetting inset ver +inside inside nom +insider insider nom +insiders insider nom +insides inside nom +insidiousness insidiousness nom +insidiousnesses insidiousness nom +insight insight nom +insightfulness insightfulness nom +insightfulnesses insightfulness nom +insights insight nom +insigne insigne nom +insignia insigne nom +insignias insignia nom +insignificance insignificance nom +insignificances insignificance nom +insincerities insincerity nom +insincerity insincerity nom +insinuate insinuate ver +insinuated insinuate ver +insinuates insinuate ver +insinuating insinuate ver +insinuation insinuation nom +insinuations insinuation nom +insinuator insinuator nom +insinuators insinuator nom +insipidities insipidity nom +insipidity insipidity nom +insipidness insipidness nom +insipidnesses insipidness nom +insist insist ver +insisted insist ver +insistence insistence nom +insistences insistence nom +insistencies insistency nom +insistency insistency nom +insisting insist ver +insists insist ver +insobrieties insobriety nom +insobriety insobriety nom +insofar insofar sw +insolation insolation nom +insolations insolation nom +insole insole nom +insolence insolence nom +insolences insolence nom +insolent insolent nom +insolents insolent nom +insoles insole nom +insolubilities insolubility nom +insolubility insolubility nom +insolvencies insolvency nom +insolvency insolvency nom +insolvent insolvent nom +insolvents insolvent nom +insomnia insomnia nom +insomniac insomniac nom +insomniacs insomniac nom +insomnias insomnia nom +insouciance insouciance nom +insouciances insouciance nom +inspan inspan ver +inspanned inspan ver +inspanning inspan ver +inspans inspan ver +inspect inspect ver +inspected inspect ver +inspecting inspect ver +inspection inspection nom +inspections inspection nom +inspector inspector nom +inspectorate inspectorate nom +inspectorates inspectorate nom +inspectors inspector nom +inspectorship inspectorship nom +inspectorships inspectorship nom +inspects inspect ver +inspiration inspiration nom +inspirations inspiration nom +inspire inspire ver +inspired inspire ver +inspires inspire ver +inspiring inspire ver +inspirit inspirit ver +inspirited inspirit ver +inspiriting inspirit ver +inspirits inspirit ver +inspissation inspissation nom +inspissations inspissation nom +instabilities instability nom +instability instability nom +instal instal ver +install install ver +installation installation nom +installations installation nom +installed instal ver +installer installer nom +installers installer nom +installing instal ver +installment installment nom +installments installment nom +installs install ver +instalment instalment nom +instalments instalment nom +instals instal ver +instance instance nom +instanced instance ver +instances instance nom +instancies instancy nom +instancing instance ver +instancy instancy nom +instant instant nom +instantaneousness instantaneousness nom +instantaneousnesses instantaneousness nom +instantiate instantiate ver +instantiated instantiate ver +instantiates instantiate ver +instantiating instantiate ver +instants instant nom +instar instar nom +instars instar nom +instate instate ver +instated instate ver +instates instate ver +instating instate ver +instauration instauration nom +instaurations instauration nom +instead instead sw +instep instep nom +insteps instep nom +instigate instigate ver +instigated instigate ver +instigates instigate ver +instigating instigate ver +instigation instigation nom +instigations instigation nom +instigator instigator nom +instigators instigator nom +instil instil ver +instill instill ver +instillation instillation nom +instillations instillation nom +instilled instil ver +instilling instil ver +instillment instillment nom +instillments instillment nom +instills instill ver +instilment instilment nom +instilments instilment nom +instils instil ver +instinct instinct nom +instincts instinct nom +institute institute nom +instituted institute ver +instituter instituter nom +instituters instituter nom +institutes institute nom +instituting institute ver +institution institution nom +institutionalization institutionalization nom +institutionalizations institutionalization nom +institutionalize institutionalize ver +institutionalized institutionalize ver +institutionalizes institutionalize ver +institutionalizing institutionalize ver +institutions institution nom +institutor institutor nom +institutors institutor nom +instroke instroke nom +instrokes instroke nom +instruct instruct ver +instructed instruct ver +instructing instruct ver +instruction instruction nom +instructions instruction nom +instructor instructor nom +instructors instructor nom +instructorship instructorship nom +instructorships instructorship nom +instructress instructress nom +instructresses instructress nom +instructs instruct ver +instrument instrument nom +instrumental instrumental nom +instrumentalist instrumentalist nom +instrumentalists instrumentalist nom +instrumentalities instrumentality nom +instrumentality instrumentality nom +instrumentals instrumental nom +instrumentation instrumentation nom +instrumentations instrumentation nom +instrumented instrument ver +instrumenting instrument ver +instruments instrument nom +insubordinate insubordinate nom +insubordinates insubordinate nom +insubordination insubordination nom +insubordinations insubordination nom +insubstantialities insubstantiality nom +insubstantiality insubstantiality nom +insufficiencies insufficiency nom +insufficiency insufficiency nom +insufflation insufflation nom +insufflations insufflation nom +insulant insulant nom +insulants insulant nom +insular insular nom +insularism insularism nom +insularisms insularism nom +insularities insularity nom +insularity insularity nom +insulars insular nom +insulate insulate ver +insulated insulate ver +insulates insulate ver +insulating insulate ver +insulation insulation nom +insulations insulation nom +insulator insulator nom +insulators insulator nom +insulin insulin nom +insulins insulin nom +insult insult nom +insulted insult ver +insulting insult ver +insults insult nom +insurance insurance nom +insurances insurance nom +insure insure ver +insured insure ver +insureds insured nom +insurer insurer nom +insurers insurer nom +insures insure ver +insurgence insurgence nom +insurgences insurgence nom +insurgencies insurgency nom +insurgency insurgency nom +insurgent insurgent nom +insurgents insurgent nom +insuring insure ver +insurrection insurrection nom +insurrectionist insurrectionist nom +insurrectionists insurrectionist nom +insurrections insurrection nom +intactness intactness nom +intactnesses intactness nom +intaglio intaglio nom +intaglioed intaglio ver +intaglioing intaglio ver +intaglios intaglio nom +intake intake nom +intakes intake nom +intangibilities intangibility nom +intangibility intangibility nom +intangible intangible nom +intangibleness intangibleness nom +intangiblenesses intangibleness nom +intangibles intangible nom +integer integer nom +integers integer nom +integral integral nom +integrals integral nom +integrate integrate ver +integrated integrate ver +integrates integrate ver +integrating integrate ver +integration integration nom +integrations integration nom +integrator integrator nom +integrators integrator nom +integrities integrity nom +integrity integrity nom +integument integument nom +integuments integument nom +intellect intellect nom +intellection intellection nom +intellections intellection nom +intellects intellect nom +intellectual intellectual nom +intellectualism intellectualism nom +intellectualisms intellectualism nom +intellectualize intellectualize ver +intellectualized intellectualize ver +intellectualizes intellectualize ver +intellectualizing intellectualize ver +intellectuals intellectual nom +intelligence intelligence nom +intelligences intelligence nom +intelligentsia intelligentsia nom +intelligentsias intelligentsia nom +intelligibilities intelligibility nom +intelligibility intelligibility nom +intemperance intemperance nom +intemperances intemperance nom +intemperateness intemperateness nom +intemperatenesses intemperateness nom +intend intend ver +intended intend ver +intendeds intended nom +intending intend ver +intends intend ver +intense intense adj +intenser intense adj +intensest intense adj +intensification intensification nom +intensifications intensification nom +intensified intensify ver +intensifier intensifier nom +intensifiers intensifier nom +intensifies intensify ver +intensify intensify ver +intensifying intensify ver +intension intension nom +intensions intension nom +intensities intensity nom +intensity intensity nom +intensive intensive nom +intensiveness intensiveness nom +intensivenesses intensiveness nom +intensives intensive nom +intent intent nom +intention intention nom +intentionalities intentionality nom +intentionality intentionality nom +intentions intention nom +intentness intentness nom +intentnesses intentness nom +intents intent nom +inter inter ver +interact interact ver +interacted interact ver +interacting interact ver +interaction interaction nom +interactions interaction nom +interacts interact ver +interbrain interbrain nom +interbrains interbrain nom +interbred interbreed ver +interbreed interbreed ver +interbreeding interbreed ver +interbreedings interbreeding nom +interbreeds interbreed ver +intercalate intercalate ver +intercalated intercalate ver +intercalates intercalate ver +intercalating intercalate ver +intercalation intercalation nom +intercalations intercalation nom +intercede intercede ver +interceded intercede ver +intercedes intercede ver +interceding intercede ver +intercept intercept nom +intercepted intercept ver +intercepting intercept ver +interception interception nom +interceptions interception nom +interceptor interceptor nom +interceptors interceptor nom +intercepts intercept nom +intercession intercession nom +intercessions intercession nom +intercessor intercessor nom +intercessors intercessor nom +interchange interchange nom +interchangeabilities interchangeability nom +interchangeability interchangeability nom +interchangeableness interchangeableness nom +interchangeablenesses interchangeableness nom +interchanged interchange ver +interchanges interchange nom +interchanging interchange ver +intercom intercom nom +intercommunicate intercommunicate ver +intercommunicated intercommunicate ver +intercommunicates intercommunicate ver +intercommunicating intercommunicate ver +intercommunication intercommunication nom +intercommunications intercommunication nom +intercommunion intercommunion nom +intercommunions intercommunion nom +intercoms intercom nom +interconnect interconnect ver +interconnected interconnect ver +interconnectedness interconnectedness nom +interconnectednesses interconnectedness nom +interconnecting interconnect ver +interconnection interconnection nom +interconnections interconnection nom +interconnects interconnect ver +intercostal intercostal nom +intercostals intercostal nom +intercourse intercourse nom +intercourses intercourse nom +interdepend interdepend ver +interdepended interdepend ver +interdependence interdependence nom +interdependences interdependence nom +interdependencies interdependency nom +interdependency interdependency nom +interdepending interdepend ver +interdepends interdepend ver +interdict interdict nom +interdicted interdict ver +interdicting interdict ver +interdiction interdiction nom +interdictions interdiction nom +interdicts interdict nom +interest interest nom +interested interest ver +interestedness interestedness nom +interestednesses interestedness nom +interesting interest ver +interestingness interestingness nom +interestingnesses interestingness nom +interests interest nom +interface interface nom +interfaced interface ver +interfaces interface nom +interfacing interface ver +interfere interfere ver +interfered interfere ver +interference interference nom +interferences interference nom +interferes interfere ver +interfering interfere ver +interferometer interferometer nom +interferometers interferometer nom +interferon interferon nom +interferons interferon nom +interfile interfile ver +interfiled interfile ver +interfiles interfile ver +interfiling interfile ver +interim interim nom +interims interim nom +interior interior nom +interiorise interiorise ver +interiorised interiorise ver +interiorises interiorise ver +interiorising interiorise ver +interiorize interiorize ver +interiorized interiorize ver +interiorizes interiorize ver +interiorizing interiorize ver +interiors interior nom +interject interject ver +interjected interject ver +interjecting interject ver +interjection interjection nom +interjections interjection nom +interjects interject ver +interlace interlace ver +interlaced interlace ver +interlaces interlace ver +interlacing interlace ver +interlanguage interlanguage nom +interlanguages interlanguage nom +interlard interlard ver +interlarded interlard ver +interlarding interlard ver +interlards interlard ver +interlayer interlayer nom +interlayers interlayer nom +interleave interleave ver +interleaved interleave ver +interleaves interleave ver +interleaving interleave ver +interleukin interleukin nom +interleukins interleukin nom +interline interline ver +interlinear interlinear nom +interlinears interlinear nom +interlined interline ver +interlines interline ver +interlingua interlingua nom +interlinguas interlingua nom +interlining interline ver +interlinings interlining nom +interlink interlink nom +interlinked interlink ver +interlinking interlink ver +interlinks interlink nom +interlock interlock nom +interlocked interlock ver +interlocking interlock ver +interlocks interlock nom +interlocutor interlocutor nom +interlocutors interlocutor nom +interlope interlope ver +interloped interlope ver +interloper interloper nom +interlopers interloper nom +interlopes interlope ver +interloping interlope ver +interlude interlude nom +interluded interlude ver +interludes interlude nom +interluding interlude ver +intermarriage intermarriage nom +intermarriages intermarriage nom +intermarried intermarry ver +intermarries intermarry ver +intermarry intermarry ver +intermarrying intermarry ver +intermediaries intermediary nom +intermediary intermediary nom +intermediate intermediate nom +intermediated intermediate ver +intermediates intermediate nom +intermediating intermediate ver +intermediation intermediation nom +intermediations intermediation nom +intermediator intermediator nom +intermediators intermediator nom +interment interment nom +interments interment nom +intermezzo intermezzo nom +intermezzos intermezzo nom +intermingle intermingle ver +intermingled intermingle ver +intermingles intermingle ver +intermingling intermingle ver +intermission intermission nom +intermissions intermission nom +intermit intermit ver +intermits intermit ver +intermitted intermit ver +intermittence intermittence nom +intermittences intermittence nom +intermittencies intermittency nom +intermittency intermittency nom +intermitting intermit ver +intermix intermix ver +intermixed intermix ver +intermixes intermix ver +intermixing intermix ver +intermixture intermixture nom +intermixtures intermixture nom +intern intern nom +internal internal nom +internalise internalise ver +internalised internalise ver +internalises internalise ver +internalising internalise ver +internalization internalization nom +internalizations internalization nom +internalize internalize ver +internalized internalize ver +internalizes internalize ver +internalizing internalize ver +internals internal nom +international international nom +internationalise internationalise ver +internationalised internationalise ver +internationalises internationalise ver +internationalising internationalise ver +internationalism internationalism nom +internationalisms internationalism nom +internationalist internationalist nom +internationalists internationalist nom +internationalities internationality nom +internationality internationality nom +internationalization internationalization nom +internationalizations internationalization nom +internationalize internationalize ver +internationalized internationalize ver +internationalizes internationalize ver +internationalizing internationalize ver +internationals international nom +interne interne nom +interned intern ver +internee internee nom +internees internee nom +internes interne nom +interning intern ver +internist internist nom +internists internist nom +internment internment nom +internments internment nom +interns intern nom +internship internship nom +internships internship nom +internuncio internuncio nom +internuncios internuncio nom +interpellate interpellate ver +interpellated interpellate ver +interpellates interpellate ver +interpellating interpellate ver +interpellation interpellation nom +interpellations interpellation nom +interpenetrate interpenetrate ver +interpenetrated interpenetrate ver +interpenetrates interpenetrate ver +interpenetrating interpenetrate ver +interphone interphone nom +interphones interphone nom +interplay interplay nom +interplayed interplay ver +interplaying interplay ver +interplays interplay nom +interpolate interpolate ver +interpolated interpolate ver +interpolates interpolate ver +interpolating interpolate ver +interpolation interpolation nom +interpolations interpolation nom +interpose interpose ver +interposed interpose ver +interposes interpose ver +interposing interpose ver +interposition interposition nom +interpositions interposition nom +interpret interpret ver +interpretation interpretation nom +interpretations interpretation nom +interpreted interpret ver +interpreter interpreter nom +interpreters interpreter nom +interpreting interpret ver +interprets interpret ver +interred inter ver +interregnum interregnum nom +interregnums interregnum nom +interrelate interrelate ver +interrelated interrelate ver +interrelatedness interrelatedness nom +interrelatednesses interrelatedness nom +interrelates interrelate ver +interrelating interrelate ver +interrelation interrelation nom +interrelations interrelation nom +interrelationship interrelationship nom +interrelationships interrelationship nom +interring inter ver +interrogate interrogate ver +interrogated interrogate ver +interrogates interrogate ver +interrogating interrogate ver +interrogation interrogation nom +interrogations interrogation nom +interrogative interrogative nom +interrogatives interrogative nom +interrogator interrogator nom +interrogatories interrogatory nom +interrogators interrogator nom +interrogatory interrogatory nom +interrupt interrupt nom +interrupted interrupt ver +interrupter interrupter nom +interrupters interrupter nom +interrupting interrupt ver +interruption interruption nom +interruptions interruption nom +interrupts interrupt nom +inters inter ver +intersect intersect ver +intersected intersect ver +intersecting intersect ver +intersection intersection nom +intersections intersection nom +intersects intersect ver +intersession intersession nom +intersessions intersession nom +interspersal interspersal nom +interspersals interspersal nom +intersperse intersperse ver +interspersed intersperse ver +intersperses intersperse ver +interspersing intersperse ver +interspersion interspersion nom +interspersions interspersion nom +interstate interstate nom +interstates interstate nom +interstice interstice nom +interstices interstice nom +interstitial interstitial nom +interstitials interstitial nom +interstratified interstratify ver +interstratifies interstratify ver +interstratify interstratify ver +interstratifying interstratify ver +intertwine intertwine ver +intertwined intertwine ver +intertwines intertwine ver +intertwining intertwine ver +interurban interurban nom +interurbans interurban nom +interval interval nom +intervals interval nom +intervene intervene ver +intervened intervene ver +intervenes intervene ver +intervening intervene ver +intervention intervention nom +interventionism interventionism nom +interventionisms interventionism nom +interventionist interventionist nom +interventionists interventionist nom +interventions intervention nom +interview interview nom +interviewed interview ver +interviewee interviewee nom +interviewees interviewee nom +interviewer interviewer nom +interviewers interviewer nom +interviewing interview ver +interviews interview nom +interweave interweave nom +interweaves interweave nom +interweaving interweave ver +interwove interweave ver +interwoven interweave ver +intestacies intestacy nom +intestacy intestacy nom +intestate intestate nom +intestates intestate nom +intestine intestine nom +intestines intestine nom +inti inti nom +intima intima nom +intimacies intimacy nom +intimacy intimacy nom +intimas intima nom +intimate intimate nom +intimated intimate ver +intimates intimate nom +intimating intimate ver +intimation intimation nom +intimations intimation nom +intimidate intimidate ver +intimidated intimidate ver +intimidates intimidate ver +intimidating intimidate ver +intimidation intimidation nom +intimidations intimidation nom +intis inti nom +into into sw +intolerance intolerance nom +intolerances intolerance nom +intolerant intolerant nom +intolerants intolerant nom +intonate intonate ver +intonated intonate ver +intonates intonate ver +intonating intonate ver +intonation intonation nom +intonations intonation nom +intone intone ver +intoned intone ver +intoner intoner nom +intoners intoner nom +intones intone ver +intoning intone ver +intoxicant intoxicant nom +intoxicants intoxicant nom +intoxicate intoxicate ver +intoxicated intoxicate ver +intoxicates intoxicate ver +intoxicating intoxicate ver +intoxication intoxication nom +intoxications intoxication nom +intractabilities intractability nom +intractability intractability nom +intractableness intractableness nom +intractablenesses intractableness nom +intrados intrados nom +intradoses intrados nom +intransigence intransigence nom +intransigences intransigence nom +intransigencies intransigency nom +intransigency intransigency nom +intransigent intransigent nom +intransigents intransigent nom +intransitive intransitive nom +intransitiveness intransitiveness nom +intransitivenesses intransitiveness nom +intransitives intransitive nom +intransitivities intransitivity nom +intransitivity intransitivity nom +intravenous intravenous nom +intravenouses intravenous nom +intrench intrench ver +intrenched intrench ver +intrenches intrench ver +intrenching intrench ver +intrenchment intrenchment nom +intrenchments intrenchment nom +intrepidities intrepidity nom +intrepidity intrepidity nom +intricacies intricacy nom +intricacy intricacy nom +intrigue intrigue nom +intrigued intrigue ver +intriguer intriguer nom +intriguers intriguer nom +intrigues intrigue nom +intriguing intrigue ver +intro intro nom +introduce introduce ver +introduced introduce ver +introduces introduce ver +introducing introduce ver +introduction introduction nom +introductions introduction nom +introit introit nom +introits introit nom +introject introject nom +introjected introject ver +introjecting introject ver +introjection introjection nom +introjections introjection nom +introjects introject nom +intromission intromission nom +intromissions intromission nom +intros intro nom +introspect introspect ver +introspected introspect ver +introspecting introspect ver +introspection introspection nom +introspections introspection nom +introspectiveness introspectiveness nom +introspectivenesses introspectiveness nom +introspects introspect ver +introversion introversion nom +introversions introversion nom +introvert introvert nom +introverted introvert ver +introverting introvert ver +introverts introvert nom +intrude intrude ver +intruded intrude ver +intruder intruder nom +intruders intruder nom +intrudes intrude ver +intruding intrude ver +intrusion intrusion nom +intrusions intrusion nom +intrusiveness intrusiveness nom +intrusivenesses intrusiveness nom +intrust intrust ver +intrusted intrust ver +intrusting intrust ver +intrusts intrust ver +intuit intuit ver +intuited intuit ver +intuiting intuit ver +intuition intuition nom +intuitionism intuitionism nom +intuitionisms intuitionism nom +intuitions intuition nom +intuitiveness intuitiveness nom +intuitivenesses intuitiveness nom +intuits intuit ver +intumescence intumescence nom +intumescences intumescence nom +intussusception intussusception nom +intussusceptions intussusception nom +inula inula nom +inulas inula nom +inulin inulin nom +inulins inulin nom +inunction inunction nom +inunctions inunction nom +inundate inundate ver +inundated inundate ver +inundates inundate ver +inundating inundate ver +inundation inundation nom +inundations inundation nom +inure inure ver +inured inure ver +inures inure ver +inuring inure ver +inutilities inutility nom +inutility inutility nom +invade invade ver +invaded invade ver +invader invader nom +invaders invader nom +invades invade ver +invading invade ver +invaginate invaginate ver +invaginated invaginate ver +invaginates invaginate ver +invaginating invaginate ver +invagination invagination nom +invaginations invagination nom +invalid invalid nom +invalidate invalidate ver +invalidated invalidate ver +invalidates invalidate ver +invalidating invalidate ver +invalidation invalidation nom +invalidations invalidation nom +invalided invalid ver +invaliding invalid ver +invalidism invalidism nom +invalidisms invalidism nom +invalidities invalidity nom +invalidity invalidity nom +invalids invalid nom +invaluableness invaluableness nom +invaluablenesses invaluableness nom +invariabilities invariability nom +invariability invariability nom +invariable invariable nom +invariableness invariableness nom +invariablenesses invariableness nom +invariables invariable nom +invariance invariance nom +invariances invariance nom +invasion invasion nom +invasions invasion nom +invective invective nom +invectives invective nom +inveigh inveigh ver +inveighed inveigh ver +inveighing inveigh ver +inveighs inveigh ver +inveigle inveigle ver +inveigled inveigle ver +inveigler inveigler nom +inveiglers inveigler nom +inveigles inveigle ver +inveigling inveigle ver +invent invent ver +invented invent ver +inventing invent ver +invention invention nom +inventions invention nom +inventiveness inventiveness nom +inventivenesses inventiveness nom +inventor inventor nom +inventoried inventory ver +inventories inventory nom +inventors inventor nom +inventory inventory nom +inventorying inventory ver +invents invent ver +inverse inverse nom +inversed inverse ver +inverses inverse nom +inversing inverse ver +inversion inversion nom +inversions inversion nom +invert invert nom +invertebrate invertebrate nom +invertebrates invertebrate nom +inverted invert ver +inverter inverter nom +inverters inverter nom +inverting invert ver +inverts invert nom +invest invest ver +invested invest ver +investigate investigate ver +investigated investigate ver +investigates investigate ver +investigating investigate ver +investigation investigation nom +investigations investigation nom +investigator investigator nom +investigators investigator nom +investing invest ver +investiture investiture nom +investitures investiture nom +investment investment nom +investments investment nom +investor investor nom +investors investor nom +invests invest ver +inveteracies inveteracy nom +inveteracy inveteracy nom +invidiousness invidiousness nom +invidiousnesses invidiousness nom +invigilate invigilate ver +invigilated invigilate ver +invigilates invigilate ver +invigilating invigilate ver +invigilation invigilation nom +invigilations invigilation nom +invigilator invigilator nom +invigilators invigilator nom +invigorate invigorate ver +invigorated invigorate ver +invigorates invigorate ver +invigorating invigorate ver +invigoration invigoration nom +invigorations invigoration nom +invincibilities invincibility nom +invincibility invincibility nom +inviolabilities inviolability nom +inviolability inviolability nom +invisibilities invisibility nom +invisibility invisibility nom +invisible invisible nom +invisibleness invisibleness nom +invisiblenesses invisibleness nom +invisibles invisible nom +invitation invitation nom +invitational invitational nom +invitationals invitational nom +invitations invitation nom +invite invite nom +invited invite ver +invitee invitee nom +invitees invitee nom +invites invite nom +inviting invite ver +invocation invocation nom +invocations invocation nom +invoice invoice nom +invoiced invoice ver +invoices invoice nom +invoicing invoice ver +invoke invoke ver +invoked invoke ver +invokes invoke ver +invoking invoke ver +involucre involucre nom +involucres involucre nom +involuntariness involuntariness nom +involuntarinesses involuntariness nom +involution involution nom +involutions involution nom +involve involve ver +involved involve ver +involvement involvement nom +involvements involvement nom +involves involve ver +involving involve ver +invulnerabilities invulnerability nom +invulnerability invulnerability nom +inward inward sw +inwardness inwardness nom +inwardnesses inwardness nom +inwards inward nom +inweave inweave ver +inweaved inweave ver +inweaves inweave ver +inweaving inweave ver +inwoven inweave ver +iodide iodide nom +iodides iodide nom +iodin iodin nom +iodinate iodinate ver +iodinated iodinate ver +iodinates iodinate ver +iodinating iodinate ver +iodination iodination nom +iodinations iodination nom +iodine iodine nom +iodines iodine nom +iodins iodin nom +iodise iodise ver +iodised iodise ver +iodises iodise ver +iodising iodise ver +iodize iodize ver +iodized iodize ver +iodizes iodize ver +iodizing iodize ver +iodoform iodoform nom +iodoforms iodoform nom +ion ion nom +ionization ionization nom +ionizations ionization nom +ionize ionize ver +ionized ionize ver +ionizer ionizer nom +ionizers ionizer nom +ionizes ionize ver +ionizing ionize ver +ionosphere ionosphere nom +ionospheres ionosphere nom +ions ion nom +iota iota nom +iotas iota nom +ipecac ipecac nom +ipecacs ipecac nom +irascibilities irascibility nom +irascibility irascibility nom +irate irate adj +irateness irateness nom +iratenesses irateness nom +irater irate adj +iratest irate adj +ire ire nom +ires ire nom +iridescence iridescence nom +iridescences iridescence nom +iridium iridium nom +iridiums iridium nom +iris iris nom +irised iris ver +irises iris nom +irising iris ver +irk irk ver +irked irk ver +irking irk ver +irks irk ver +irksomeness irksomeness nom +irksomenesses irksomeness nom +iron iron nom +ironclad ironclad nom +ironclads ironclad nom +ironed iron ver +ironies irony nom +ironing iron ver +ironings ironing nom +ironist ironist nom +ironists ironist nom +ironmonger ironmonger nom +ironmongeries ironmongery nom +ironmongers ironmonger nom +ironmongery ironmongery nom +irons iron nom +ironside ironside nom +ironsides ironside nom +ironstone ironstone nom +ironstones ironstone nom +ironware ironware nom +ironwares ironware nom +ironweed ironweed nom +ironweeds ironweed nom +ironwood ironwood nom +ironwoods ironwood nom +ironwork ironwork nom +ironworker ironworker nom +ironworkers ironworker nom +ironworks ironwork nom +irony irony nom +irradiate irradiate ver +irradiated irradiate ver +irradiates irradiate ver +irradiating irradiate ver +irradiation irradiation nom +irradiations irradiation nom +irrational irrational nom +irrationalities irrationality nom +irrationality irrationality nom +irrationals irrational nom +irrealities irreality nom +irreality irreality nom +irreconcilabilities irreconcilability nom +irreconcilability irreconcilability nom +irreconcilable irreconcilable nom +irreconcilables irreconcilable nom +irredenta irredenta nom +irredentas irredenta nom +irredentism irredentism nom +irredentisms irredentism nom +irredentist irredentist nom +irredentists irredentist nom +irregular irregular nom +irregularities irregularity nom +irregularity irregularity nom +irregulars irregular nom +irrelevance irrelevance nom +irrelevances irrelevance nom +irrelevancies irrelevancy nom +irrelevancy irrelevancy nom +irreligion irreligion nom +irreligionist irreligionist nom +irreligionists irreligionist nom +irreligions irreligion nom +irreligiousness irreligiousness nom +irreligiousnesses irreligiousness nom +irreplaceableness irreplaceableness nom +irreplaceablenesses irreplaceableness nom +irrepressibilities irrepressibility nom +irrepressibility irrepressibility nom +irreproducibilities irreproducibility nom +irreproducibility irreproducibility nom +irresoluteness irresoluteness nom +irresolutenesses irresoluteness nom +irresolution irresolution nom +irresolutions irresolution nom +irresponsibilities irresponsibility nom +irresponsibility irresponsibility nom +irresponsible irresponsible nom +irresponsibleness irresponsibleness nom +irresponsiblenesses irresponsibleness nom +irresponsibles irresponsible nom +irreverence irreverence nom +irreverences irreverence nom +irreversibilities irreversibility nom +irreversibility irreversibility nom +irridenta irridenta nom +irridentas irridenta nom +irrigate irrigate ver +irrigated irrigate ver +irrigates irrigate ver +irrigating irrigate ver +irrigation irrigation nom +irrigations irrigation nom +irritabilities irritability nom +irritability irritability nom +irritant irritant nom +irritants irritant nom +irritate irritate ver +irritated irritate ver +irritates irritate ver +irritating irritate ver +irritation irritation nom +irritations irritation nom +irrupt irrupt ver +irrupted irrupt ver +irrupting irrupt ver +irruption irruption nom +irruptions irruption nom +irrupts irrupt ver +is is sw +isarithm isarithm nom +isarithms isarithm nom +ischia ischium nom +ischium ischium nom +isinglass isinglass nom +isinglasses isinglass nom +island island nom +islanded island ver +islander islander nom +islanders islander nom +islanding island ver +islands island nom +isle isle nom +isled isle ver +isles isle nom +islet islet nom +islets islet nom +isling isle ver +ism ism nom +isms ism nom +isn_t isn_t sw +isobar isobar nom +isobars isobar nom +isobutylene isobutylene nom +isobutylenes isobutylene nom +isocarboxazid isocarboxazid nom +isocarboxazids isocarboxazid nom +isochrone isochrone nom +isochrones isochrone nom +isocyanate isocyanate nom +isocyanates isocyanate nom +isogamete isogamete nom +isogametes isogamete nom +isogamies isogamy nom +isogamy isogamy nom +isogone isogone nom +isogones isogone nom +isogram isogram nom +isograms isogram nom +isohel isohel nom +isohels isohel nom +isolate isolate ver +isolated isolate ver +isolates isolate ver +isolating isolate ver +isolation isolation nom +isolationism isolationism nom +isolationisms isolationism nom +isolationist isolationist nom +isolationists isolationist nom +isolations isolation nom +isoleucine isoleucine nom +isoleucines isoleucine nom +isomer isomer nom +isomerism isomerism nom +isomerisms isomerism nom +isomers isomer nom +isometric isometric nom +isometrics isometric nom +isometries isometry nom +isometropia isometropia nom +isometropias isometropia nom +isometry isometry nom +isomorphism isomorphism nom +isomorphisms isomorphism nom +isopleth isopleth nom +isopleths isopleth nom +isopod isopod nom +isopods isopod nom +isopropanol isopropanol nom +isopropanols isopropanol nom +isotherm isotherm nom +isotherms isotherm nom +isotope isotope nom +isotopes isotope nom +issuance issuance nom +issuances issuance nom +issue issue nom +issued issue ver +issuer issuer nom +issuers issuer nom +issues issue nom +issuing issue ver +isthmian isthmian nom +isthmians isthmian nom +isthmus isthmus nom +isthmuses isthmus nom +it it sw +it_d it_d sw +it_ll it_ll sw +it_s it_s sw +italic italic nom +italicization italicization nom +italicizations italicization nom +italicize italicize ver +italicized italicize ver +italicizes italicize ver +italicizing italicize ver +italics italic nom +itch itch nom +itched itch ver +itches itch nom +itchier itchy adj +itchiest itchy adj +itchiness itchiness nom +itchinesses itchiness nom +itching itch ver +itchings itching nom +itchy itchy adj +item item nom +itemed item ver +iteming item ver +itemization itemization nom +itemizations itemization nom +itemize itemize ver +itemized itemize ver +itemizes itemize ver +itemizing itemize ver +items item nom +iterate iterate ver +iterated iterate ver +iterates iterate ver +iterating iterate ver +iteration iteration nom +iterations iteration nom +itinerant itinerant nom +itinerants itinerant nom +itineraries itinerary nom +itinerary itinerary nom +its its sw +itself itself sw +ivies ivy nom +ivories ivory nom +ivory ivory nom +ivorybill ivorybill nom +ivorybills ivorybill nom +ivy ivy nom +ixodid ixodid nom +ixodids ixodid nom +j j sw +jab jab nom +jabbed jab ver +jabber jabber nom +jabbered jabber ver +jabberer jabberer nom +jabberers jabberer nom +jabbering jabber ver +jabberings jabbering nom +jabbers jabber nom +jabbing jab ver +jabiru jabiru nom +jabirus jabiru nom +jabot jabot nom +jaboticaba jaboticaba nom +jaboticabas jaboticaba nom +jabots jabot nom +jabs jab nom +jacamar jacamar nom +jacamars jacamar nom +jacaranda jacaranda nom +jacarandas jacaranda nom +jacinth jacinth nom +jacinths jacinth nom +jack jack nom +jackal jackal nom +jackals jackal nom +jackanapes jackanapes nom +jackanapeses jackanapes nom +jackass jackass nom +jackasses jackass nom +jackboot jackboot nom +jackboots jackboot nom +jackdaw jackdaw nom +jackdaws jackdaw nom +jacked jack ver +jacket jacket nom +jacketed jacket ver +jacketing jacket ver +jackets jacket nom +jackfruit jackfruit nom +jackfruits jackfruit nom +jackhammer jackhammer nom +jackhammers jackhammer nom +jacking jack ver +jackknife jackknife nom +jackknifed jackknife ver +jackknifes jackknife ver +jackknifing jackknife ver +jackknives jackknife nom +jacklight jacklight ver +jacklighted jacklight ver +jacklighting jacklight ver +jacklights jacklight ver +jackpot jackpot nom +jackpots jackpot nom +jackrabbit jackrabbit nom +jackrabbited jackrabbit ver +jackrabbiting jackrabbit ver +jackrabbits jackrabbit nom +jacks jack nom +jackscrew jackscrew nom +jackscrews jackscrew nom +jacksmelt jacksmelt nom +jacksmelts jacksmelt nom +jacksnipe jacksnipe nom +jackstraw jackstraw nom +jackstraws jackstraw nom +jacquard jacquard nom +jacquards jacquard nom +jactation jactation nom +jactations jactation nom +jactitation jactitation nom +jactitations jactitation nom +jade jade nom +jaded jade ver +jadedness jadedness nom +jadednesses jadedness nom +jadeite jadeite nom +jadeites jadeite nom +jades jade nom +jading jade ver +jaeger jaeger nom +jaegers jaeger nom +jag jag nom +jaggaries jaggary nom +jaggary jaggary nom +jagged jag ver +jaggeder jagged adj +jaggedest jagged adj +jaggedness jaggedness nom +jaggednesses jaggedness nom +jaggeries jaggery nom +jaggery jaggery nom +jaggheries jagghery nom +jagghery jagghery nom +jaggier jaggy adj +jaggiest jaggy adj +jagging jag ver +jaggy jaggy adj +jags jag nom +jaguar jaguar nom +jaguarondi jaguarondi nom +jaguarondis jaguarondi nom +jaguars jaguar nom +jaguarundi jaguarundi nom +jaguarundis jaguarundi nom +jail jail nom +jailbird jailbird nom +jailbirds jailbird nom +jailbreak jailbreak nom +jailbreaks jailbreak nom +jailed jail ver +jailer jailer nom +jailers jailer nom +jailhouse jailhouse nom +jailhouses jailhouse nom +jailing jail ver +jailor jailor nom +jailors jailor nom +jails jail nom +jak jak nom +jakes jakes nom +jakeses jakes nom +jaks jak nom +jalapeno jalapeno nom +jalapenos jalapeno nom +jalopies jalopy nom +jalopy jalopy nom +jalousie jalousie nom +jalousies jalousie nom +jam jam nom +jamb jamb nom +jambalaya jambalaya nom +jambalayas jambalaya nom +jambeau jambeau nom +jambeaux jambeau nom +jamboree jamboree nom +jamborees jamboree nom +jambs jamb nom +jamjar jamjar nom +jamjars jamjar nom +jammed jam ver +jamming jam ver +jampan jampan nom +jampans jampan nom +jampot jampot nom +jampots jampot nom +jams jam nom +jangle jangle nom +jangled jangle ver +jangler jangler nom +janglers jangler nom +jangles jangle nom +janglier jangly adj +jangliest jangly adj +jangling jangle ver +jangly jangly adj +janissaries janissary nom +janissary janissary nom +janitor janitor nom +janitors janitor nom +japan japan nom +japanned japan ver +japanning japan ver +japans japan nom +jape jape nom +japed jape ver +japes jape nom +japing jape ver +japonica japonica nom +japonicas japonica nom +jar jar nom +jardiniere jardiniere nom +jardinieres jardiniere nom +jarful jarful nom +jarfuls jarful nom +jargon jargon nom +jargoned jargon ver +jargoning jargon ver +jargons jargon nom +jargoon jargoon nom +jargoons jargoon nom +jarred jar ver +jarring jar ver +jars jar nom +jasmine jasmine nom +jasmines jasmine nom +jasper jasper nom +jaspers jasper nom +jassid jassid nom +jassids jassid nom +jato jato nom +jatos jato nom +jaundice jaundice nom +jaundiced jaundice ver +jaundices jaundice nom +jaundicing jaundice ver +jaunt jaunt nom +jaunted jaunt ver +jauntier jaunty adj +jauntiest jaunty adj +jauntiness jauntiness nom +jauntinesses jauntiness nom +jaunting jaunt ver +jaunts jaunt nom +jaunty jaunty adj +java java nom +javas java nom +javelin javelin nom +javelina javelina nom +javelinas javelina nom +javelined javelin ver +javelining javelin ver +javelins javelin nom +jaw jaw nom +jawbone jawbone nom +jawboned jawbone ver +jawbones jawbone nom +jawboning jawbone ver +jawbreaker jawbreaker nom +jawbreakers jawbreaker nom +jawed jaw ver +jawfish jawfish nom +jawing jaw ver +jaws jaw nom +jay jay nom +jaybird jaybird nom +jaybirds jaybird nom +jays jay nom +jaywalk jaywalk ver +jaywalked jaywalk ver +jaywalker jaywalker nom +jaywalkers jaywalker nom +jaywalking jaywalk ver +jaywalkings jaywalking nom +jaywalks jaywalk ver +jazz jazz nom +jazzed jazz ver +jazzes jazz nom +jazzier jazzy adj +jazziest jazzy adj +jazzing jazz ver +jazzman jazzman nom +jazzmen jazzman nom +jazzy jazzy adj +jealousies jealousy nom +jealousy jealousy nom +jean jean nom +jeans jean nom +jeep jeep nom +jeeped jeep ver +jeeping jeep ver +jeeps jeep nom +jeer jeer nom +jeered jeer ver +jeering jeer ver +jeerings jeering nom +jeers jeer nom +jehad jehad nom +jehads jehad nom +jejuna jejunum nom +jejuneness jejuneness nom +jejunenesses jejuneness nom +jejunities jejunity nom +jejunity jejunity nom +jejunostomies jejunostomy nom +jejunostomy jejunostomy nom +jejunum jejunum nom +jell jell ver +jellaba jellaba nom +jellabas jellaba nom +jelled jell ver +jellied jelly ver +jellies jelly nom +jellified jellify ver +jellifies jellify ver +jellify jellify ver +jellifying jellify ver +jelling jell ver +jello jello nom +jellos jello nom +jells jell ver +jelly jelly nom +jellybean jellybean nom +jellybeans jellybean nom +jellyfish jellyfish nom +jellying jelly ver +jellyroll jellyroll nom +jellyrolls jellyroll nom +jemmies jemmy nom +jemmy jemmy nom +jennet jennet nom +jennets jennet nom +jennies jenny nom +jenny jenny nom +jeopardies jeopardy nom +jeopardize jeopardize ver +jeopardized jeopardize ver +jeopardizes jeopardize ver +jeopardizing jeopardize ver +jeopardy jeopardy nom +jerboa jerboa nom +jerboas jerboa nom +jeremiad jeremiad nom +jeremiads jeremiad nom +jerk jerk nom +jerked jerk ver +jerkier jerky adj +jerkies jerky nom +jerkiest jerky adj +jerkin jerkin nom +jerkiness jerkiness nom +jerkinesses jerkiness nom +jerking jerk ver +jerkings jerking nom +jerkins jerkin nom +jerks jerk nom +jerkwater jerkwater nom +jerkwaters jerkwater nom +jerky jerky adj +jeroboam jeroboam nom +jeroboams jeroboam nom +jersey jersey nom +jerseys jersey nom +jessamine jessamine nom +jessamines jessamine nom +jest jest nom +jested jest ver +jester jester nom +jesters jester nom +jesting jest ver +jests jest nom +jet jet nom +jetliner jetliner nom +jetliners jetliner nom +jetport jetport nom +jetports jetport nom +jets jet nom +jetsam jetsam nom +jetsams jetsam nom +jetted jet ver +jettied jetty ver +jettier jetty adj +jetties jetty nom +jettiest jetty adj +jetting jet ver +jettison jettison nom +jettisoned jettison ver +jettisoning jettison ver +jettisons jettison nom +jetty jetty adj +jettying jetty ver +jewel jewel nom +jeweled jewel ver +jeweler jeweler nom +jewelers jeweler nom +jeweling jewel ver +jeweller jeweller nom +jewelleries jewellery nom +jewellers jeweller nom +jewellery jewellery nom +jewelries jewelry nom +jewelry jewelry nom +jewels jewel nom +jewelweed jewelweed nom +jewelweeds jewelweed nom +jewfish jewfish nom +jezebel jezebel nom +jezebels jezebel nom +jiao jiao nom +jiaos jiao nom +jib jib nom +jibbed jib ver +jibbing jib ver +jibboom jibboom nom +jibbooms jibboom nom +jibe jibe nom +jibed jibe ver +jibes jibe nom +jibing jibe ver +jibs jib nom +jiff jiff nom +jiffies jiffy nom +jiffs jiff nom +jiffy jiffy nom +jig jig nom +jigaboo jigaboo nom +jigaboos jigaboo nom +jigged jig ver +jigger jigger nom +jiggered jigger ver +jiggering jigger ver +jiggermast jiggermast nom +jiggermasts jiggermast nom +jiggers jigger nom +jigging jig ver +jiggle jiggle nom +jiggled jiggle ver +jiggles jiggle nom +jigglier jiggly adj +jiggliest jiggly adj +jiggling jiggle ver +jiggly jiggly adj +jigs jig nom +jigsaw jigsaw nom +jigsawed jigsaw ver +jigsawing jigsaw ver +jigsaws jigsaw nom +jihad jihad nom +jihads jihad nom +jilt jilt nom +jilted jilt ver +jilting jilt ver +jilts jilt nom +jimmied jimmy ver +jimmies jimmy nom +jimmy jimmy nom +jimmying jimmy ver +jimsonweed jimsonweed nom +jimsonweeds jimsonweed nom +jingle jingle nom +jingled jingle ver +jingles jingle nom +jinglier jingly adj +jingliest jingly adj +jingling jingle ver +jingly jingly adj +jingo jingo nom +jingoes jingo nom +jingoism jingoism nom +jingoisms jingoism nom +jingoist jingoist nom +jingoists jingoist nom +jinn jinn nom +jinni jinni nom +jinnis jinni nom +jinns jinn nom +jinricksha jinricksha nom +jinrickshas jinricksha nom +jinrikisha jinrikisha nom +jinrikishas jinrikisha nom +jinriksha jinriksha nom +jinrikshas jinriksha nom +jinx jinx nom +jinxed jinx ver +jinxes jinx nom +jinxing jinx ver +jitney jitney nom +jitneyed jitney ver +jitneying jitney ver +jitneys jitney nom +jitterbug jitterbug nom +jitterbugged jitterbug ver +jitterbugger jitterbugger nom +jitterbuggers jitterbugger nom +jitterbugging jitterbug ver +jitterbugs jitterbug nom +jitterier jittery adj +jitteriest jittery adj +jitteriness jitteriness nom +jitterinesses jitteriness nom +jittery jittery adj +jiujitsu jiujitsu nom +jiujitsus jiujitsu nom +jive jive nom +jived jive ver +jives jive nom +jiving jive ver +job job nom +jobbed job ver +jobber jobber nom +jobberies jobbery nom +jobbers jobber nom +jobbery jobbery nom +jobbing job ver +jobholder jobholder nom +jobholders jobholder nom +jobless jobless nom +joblessness joblessness nom +joblessnesses joblessness nom +jobs job nom +jock jock nom +jockey jockey nom +jockeyed jockey ver +jockeying jockey ver +jockeys jockey nom +jocks jock nom +jockstrap jockstrap nom +jockstraps jockstrap nom +jocoseness jocoseness nom +jocosenesses jocoseness nom +jocosities jocosity nom +jocosity jocosity nom +jocularities jocularity nom +jocularity jocularity nom +jocundities jocundity nom +jocundity jocundity nom +jog jog nom +jogged jog ver +jogger jogger nom +joggers jogger nom +jogging jog ver +joggings jogging nom +joggle joggle nom +joggled joggle ver +joggles joggle nom +joggling joggle ver +jogs jog nom +john john nom +johnnies johnny nom +johnny johnny nom +johnnycake johnnycake nom +johnnycakes johnnycake nom +johns john nom +join join nom +joined join ver +joiner joiner nom +joineries joinery nom +joiners joiner nom +joinery joinery nom +joining join ver +joinings joining nom +joins join nom +joint joint nom +jointed joint ver +jointer jointer nom +jointers jointer nom +jointing joint ver +joints joint nom +jointure jointure nom +jointures jointure nom +jointworm jointworm nom +jointworms jointworm nom +joist joist nom +joisted joist ver +joisting joist ver +joists joist nom +joke joke nom +joked joke ver +joker joker nom +jokers joker nom +jokes joke nom +jokester jokester nom +jokesters jokester nom +jokey jokey adj +jokier jokey adj +jokiest jokey adj +joking joke ver +joky joky adj +jollied jolly ver +jollier jolly adj +jollies jolly nom +jolliest jolly adj +jollification jollification nom +jollifications jollification nom +jolliness jolliness nom +jollinesses jolliness nom +jollities jollity nom +jollity jollity nom +jolly jolly adj +jollying jolly ver +jolt jolt nom +jolted jolt ver +jolter jolter nom +jolters jolter nom +joltier jolty adj +joltiest jolty adj +jolting jolt ver +jolts jolt nom +jolty jolty adj +jongleur jongleur nom +jongleurs jongleur nom +jonquil jonquil nom +jonquils jonquil nom +jorum jorum nom +jorums jorum nom +josh josh nom +joshed josh ver +josher josher nom +joshers josher nom +joshes josh nom +joshing josh ver +joss joss nom +josses joss nom +jostle jostle nom +jostled jostle ver +jostles jostle nom +jostling jostle ver +jostlings jostling nom +jot jot nom +jots jot nom +jotted jot ver +jotter jotter nom +jotters jotter nom +jotting jot ver +jottings jotting nom +joule joule nom +joules joule nom +jounce jounce nom +jounced jounce ver +jounces jounce nom +jouncier jouncy adj +jounciest jouncy adj +jouncing jounce ver +jouncy jouncy adj +journal journal nom +journaled journal ver +journalese journalese nom +journaleses journalese nom +journaling journal ver +journalism journalism nom +journalisms journalism nom +journalist journalist nom +journalists journalist nom +journals journal nom +journey journey nom +journeyed journey ver +journeyer journeyer nom +journeyers journeyer nom +journeying journey ver +journeyman journeyman nom +journeymen journeyman nom +journeys journey nom +joust joust nom +jousted joust ver +jouster jouster nom +jousters jouster nom +jousting joust ver +jousts joust nom +jovialities joviality nom +joviality joviality nom +jowl jowl nom +jowlier jowly adj +jowliest jowly adj +jowls jowl nom +jowly jowly adj +joy joy nom +joyed joy ver +joyful joyful adj +joyfuller joyful adj +joyfullest joyful adj +joyfulness joyfulness nom +joyfulnesses joyfulness nom +joying joy ver +joylessness joylessness nom +joylessnesses joylessness nom +joyousness joyousness nom +joyousnesses joyousness nom +joyridden joyride ver +joyride joyride nom +joyrider joyrider nom +joyriders joyrider nom +joyrides joyride nom +joyriding joyride ver +joyridings joyriding nom +joyrode joyride ver +joys joy nom +joystick joystick nom +joysticks joystick nom +jubilance jubilance nom +jubilances jubilance nom +jubilancies jubilancy nom +jubilancy jubilancy nom +jubilate jubilate ver +jubilated jubilate ver +jubilates jubilate ver +jubilating jubilate ver +jubilation jubilation nom +jubilations jubilation nom +jubilee jubilee nom +jubilees jubilee nom +judder judder ver +juddered judder ver +juddering judder ver +judders judder ver +judge judge nom +judged judge ver +judgement judgement nom +judgements judgement nom +judges judge nom +judgeship judgeship nom +judgeships judgeship nom +judging judge ver +judgment judgment nom +judgments judgment nom +judicatories judicatory nom +judicatory judicatory nom +judicature judicature nom +judicatures judicature nom +judiciaries judiciary nom +judiciary judiciary nom +judiciousness judiciousness nom +judiciousnesses judiciousness nom +judo judo nom +judos judo nom +jug jug nom +jugful jugful nom +jugfuls jugful nom +jugged jug ver +juggernaut juggernaut nom +juggernauts juggernaut nom +jugging jug ver +juggle juggle nom +juggled juggle ver +juggler juggler nom +juggleries jugglery nom +jugglers juggler nom +jugglery jugglery nom +juggles juggle nom +juggling juggle ver +jugglings juggling nom +jugs jug nom +jugular jugular nom +jugulars jugular nom +juice juice nom +juiced juice ver +juicer juicer nom +juicers juicer nom +juices juice nom +juicier juicy adj +juiciest juicy adj +juiciness juiciness nom +juicinesses juiciness nom +juicing juice ver +juicy juicy adj +jujitsu jujitsu nom +jujitsus jujitsu nom +juju juju nom +jujube jujube nom +jujubes jujube nom +jujus juju nom +jujutsu jujutsu nom +jujutsus jujutsu nom +jukebox jukebox nom +jukeboxes jukebox nom +julep julep nom +juleps julep nom +julienne julienne nom +juliennes julienne nom +jumbal jumbal nom +jumbals jumbal nom +jumble jumble nom +jumbled jumble ver +jumbles jumble nom +jumbling jumble ver +jumbo jumbo nom +jumbos jumbo nom +jump jump nom +jumped jump ver +jumper jumper nom +jumpers jumper nom +jumpier jumpy adj +jumpiest jumpy adj +jumpiness jumpiness nom +jumpinesses jumpiness nom +jumping jump ver +jumps jump nom +jumpsuit jumpsuit nom +jumpsuits jumpsuit nom +jumpy jumpy adj +junco junco nom +juncos junco nom +junction junction nom +junctions junction nom +juncture juncture nom +junctures juncture nom +jungle jungle nom +jungles jungle nom +junglier jungly adj +jungliest jungly adj +jungly jungly adj +junior junior nom +juniors junior nom +juniper juniper nom +junipers juniper nom +junk junk nom +junked junk ver +junker junker nom +junkers junker nom +junket junket nom +junketed junket ver +junketeer junketeer nom +junketeered junketeer ver +junketeering junketeer ver +junketeers junketeer nom +junketer junketer nom +junketers junketer nom +junketing junket ver +junketings junketing nom +junkets junket nom +junkie junkie nom +junkier junky adj +junkies junkie nom +junkiest junky adj +junking junk ver +junks junk nom +junky junky adj +junkyard junkyard nom +junkyards junkyard nom +junta junta nom +juntas junta nom +junto junto nom +juntos junto nom +jupati jupati nom +jupatis jupati nom +juried jury ver +juries jury nom +jurisdiction jurisdiction nom +jurisdictions jurisdiction nom +jurisprudence jurisprudence nom +jurisprudences jurisprudence nom +jurist jurist nom +jurists jurist nom +juror juror nom +jurors juror nom +jury jury nom +jurying jury ver +juryman juryman nom +jurymen juryman nom +jurywoman jurywoman nom +jurywomen jurywoman nom +just just sw +justed just ver +juster just adj +justest just adj +justice justice nom +justices justice nom +justiciar justiciar nom +justiciaries justiciary nom +justiciars justiciar nom +justiciary justiciary nom +justification justification nom +justifications justification nom +justified justify ver +justifier justifier nom +justifiers justifier nom +justifies justify ver +justify justify ver +justifying justify ver +justing just ver +justness justness nom +justnesses justness nom +justs just ver +jut jut nom +jute jute nom +jutes jute nom +juts jut nom +jutted jut ver +jutting jut ver +juvenescence juvenescence nom +juvenescences juvenescence nom +juvenile juvenile nom +juveniles juvenile nom +juvenilities juvenility nom +juvenility juvenility nom +juxtapose juxtapose ver +juxtaposed juxtapose ver +juxtaposes juxtapose ver +juxtaposing juxtapose ver +juxtaposition juxtaposition nom +juxtapositions juxtaposition nom +k k sw +kabala kabala nom +kabalas kabala nom +kabbala kabbala nom +kabbalah kabbalah nom +kabbalahs kabbalah nom +kabbalas kabbala nom +kabob kabob nom +kabobs kabob nom +kabuki kabuki nom +kabukis kabuki nom +kaddish kaddish nom +kaddishes kaddish nom +kaffeeklatch kaffeeklatch nom +kaffeeklatches kaffeeklatch nom +kaffeeklatsch kaffeeklatsch nom +kaffeeklatsches kaffeeklatsch nom +kaffir kaffir nom +kaffirs kaffir nom +kafir kafir nom +kafirs kafir nom +kaftan kaftan nom +kaftans kaftan nom +kail kail nom +kails kail nom +kainite kainite nom +kainites kainite nom +kaiser kaiser nom +kaisers kaiser nom +kaki kaki nom +kakis kaki nom +kale kale nom +kaleidoscope kaleidoscope nom +kaleidoscopes kaleidoscope nom +kales kale nom +kali kali nom +kalian kalian nom +kalians kalian nom +kalif kalif nom +kalifs kalif nom +kaliph kaliph nom +kaliphs kaliph nom +kalis kali nom +kalmia kalmia nom +kalmias kalmia nom +kamikaze kamikaze nom +kamikazes kamikaze nom +kangaroo kangaroo nom +kangaroos kangaroo nom +kanzu kanzu nom +kanzus kanzu nom +kaoliang kaoliang nom +kaoliangs kaoliang nom +kaolin kaolin nom +kaoline kaoline nom +kaolines kaoline nom +kaolinite kaolinite nom +kaolinites kaolinite nom +kaolins kaolin nom +kaon kaon nom +kaons kaon nom +kaph kaph nom +kaphs kaph nom +kapok kapok nom +kapoks kapok nom +kappa kappa nom +kappas kappa nom +karabiner karabiner nom +karabiners karabiner nom +karakul karakul nom +karakuls karakul nom +karaoke karaoke nom +karaokes karaoke nom +karat karat nom +karate karate nom +karates karate nom +karats karat nom +karma karma nom +karmas karma nom +kart kart nom +karts kart nom +karyoplasm karyoplasm nom +karyoplasms karyoplasm nom +karyotype karyotype nom +karyotypes karyotype nom +kasha kasha nom +kashas kasha nom +katharometer katharometer nom +katharometers katharometer nom +katharses katharsis nom +katharsis katharsis nom +katydid katydid nom +katydids katydid nom +kauri kauri nom +kauries kaury nom +kauris kauri nom +kaury kaury nom +kava kava nom +kavakava kavakava nom +kavakavas kavakava nom +kavas kava nom +kayak kayak nom +kayaked kayak ver +kayaking kayak ver +kayaks kayak nom +kayo kayo nom +kayoed kayo ver +kayoing kayo ver +kayos kayo nom +kazoo kazoo nom +kazoos kazoo nom +kea kea nom +keas kea nom +kebab kebab nom +kebabs kebab nom +kebob kebob nom +kebobs kebob nom +kedgeree kedgeree nom +kedgerees kedgeree nom +keel keel nom +keeled keel ver +keelhaul keelhaul ver +keelhauled keelhaul ver +keelhauling keelhaul ver +keelhauls keelhaul ver +keeling keel ver +keels keel nom +keelson keelson nom +keelsons keelson nom +keen keen adj +keened keen ver +keener keen adj +keenest keen adj +keening keen ver +keenness keenness nom +keennesses keenness nom +keens keen nom +keep keep sw +keeper keeper nom +keepers keeper nom +keeping keep ver +keepings keeping nom +keeps keeps sw +keepsake keepsake nom +keepsakes keepsake nom +keeshond keeshond nom +keeshonds keeshond nom +keg keg nom +kegs keg nom +keister keister nom +keisters keister nom +kelp kelp nom +kelped kelp ver +kelping kelp ver +kelps kelp nom +kelvin kelvin nom +kelvins kelvin nom +ken ken nom +kenaf kenaf nom +kenafs kenaf nom +kenned ken ver +kennel kennel nom +kenneled kennel ver +kenneling kennel ver +kennels kennel nom +kenning ken ver +kennings kenning nom +keno keno nom +kenos keno nom +kens ken nom +kepi kepi nom +kepis kepi nom +kept kept sw +keratin keratin nom +keratins keratin nom +keratitides keratitis nom +keratitis keratitis nom +keratoplasties keratoplasty nom +keratoplasty keratoplasty nom +keratoses keratosis nom +keratosis keratosis nom +kerb kerb nom +kerbed kerb ver +kerbing kerb ver +kerbs kerb nom +kerbstone kerbstone nom +kerbstones kerbstone nom +kerchief kerchief nom +kerchiefs kerchief nom +kernel kernel nom +kerneled kernel ver +kerneling kernel ver +kernels kernel nom +kernite kernite nom +kernites kernite nom +kerosene kerosene nom +kerosenes kerosene nom +kerosine kerosine nom +kerosines kerosine nom +kerygma kerygma nom +kerygmas kerygma nom +kestrel kestrel nom +kestrels kestrel nom +ketch ketch nom +ketches ketch nom +ketchup ketchup nom +ketchups ketchup nom +ketone ketone nom +ketones ketone nom +ketonuria ketonuria nom +ketonurias ketonuria nom +ketose ketose nom +ketoses ketose nom +ketosis ketosis nom +kettle kettle nom +kettledrum kettledrum nom +kettledrums kettledrum nom +kettleful kettleful nom +kettlefuls kettleful nom +kettles kettle nom +key key nom +keyboard keyboard nom +keyboarded keyboard ver +keyboarder keyboarder nom +keyboarders keyboarder nom +keyboarding keyboard ver +keyboardist keyboardist nom +keyboardists keyboardist nom +keyboards keyboard nom +keyed key ver +keyhole keyhole nom +keyholes keyhole nom +keying key ver +keynote keynote nom +keynoted keynote ver +keynoter keynoter nom +keynoters keynoter nom +keynotes keynote nom +keynoting keynote ver +keypad keypad nom +keypads keypad nom +keypunch keypunch nom +keypunched keypunch ver +keypuncher keypuncher nom +keypunchers keypuncher nom +keypunches keypunch nom +keypunching keypunch ver +keys key nom +keystone keystone nom +keystones keystone nom +keystroke keystroke nom +keystrokes keystroke nom +keyword keyword nom +keywords keyword nom +khaki khaki nom +khakis khaki nom +khalif khalif nom +khalifs khalif nom +khan khan nom +khans khan nom +khoum khoum nom +khoums khoum nom +kiang kiang nom +kiangs kiang nom +kibbitz kibbitz ver +kibbitzed kibbitz ver +kibbitzes kibbitz ver +kibbitzing kibbitz ver +kibble kibble nom +kibbled kibble ver +kibbles kibble nom +kibbling kibble ver +kibbutz kibbutz nom +kibbutzim kibbutz nom +kibbutznik kibbutznik nom +kibbutzniks kibbutznik nom +kibe kibe nom +kibes kibe nom +kibitz kibitz ver +kibitzed kibitz ver +kibitzer kibitzer nom +kibitzers kibitzer nom +kibitzes kibitz ver +kibitzing kibitz ver +kibosh kibosh nom +kiboshed kibosh ver +kiboshes kibosh nom +kiboshing kibosh ver +kick kick nom +kickback kickback nom +kickbacks kickback nom +kickball kickball nom +kickballs kickball nom +kicked kick ver +kicker kicker nom +kickers kicker nom +kickier kicky adj +kickiest kicky adj +kicking kick ver +kickoff kickoff nom +kickoffs kickoff nom +kicks kick nom +kickshaw kickshaw nom +kickshaws kickshaw nom +kicksorter kicksorter nom +kicksorters kicksorter nom +kickstand kickstand nom +kickstands kickstand nom +kicky kicky adj +kid kid nom +kidded kid ver +kidder kidder nom +kidders kidder nom +kiddie kiddie nom +kiddies kiddie nom +kidding kid ver +kiddo kiddo nom +kiddos kiddo nom +kiddy kiddy nom +kidnap kidnap ver +kidnaper kidnaper nom +kidnapers kidnaper nom +kidnapped kidnap ver +kidnapper kidnapper nom +kidnappers kidnapper nom +kidnapping kidnap ver +kidnappings kidnapping nom +kidnaps kidnap ver +kidney kidney nom +kidneys kidney nom +kids kid nom +kidskin kidskin nom +kidskins kidskin nom +kielbasa kielbasa nom +kielbasas kielbasa nom +kieselguhr kieselguhr nom +kieselguhrs kieselguhr nom +kike kike nom +kikes kike nom +kilderkin kilderkin nom +kilderkins kilderkin nom +kiley kiley nom +kileys kiley nom +kill kill nom +killdeer killdeer nom +killdeers killdeer nom +killed kill ver +killer killer nom +killers killer nom +killifish killifish nom +killifishes killifish nom +killing kill ver +killings killing nom +killjoy killjoy nom +killjoys killjoy nom +kills kill nom +kiln kiln nom +kilned kiln ver +kilning kiln ver +kilns kiln nom +kilo kilo nom +kilobyte kilobyte nom +kilobytes kilobyte nom +kilocalorie kilocalorie nom +kilocalories kilocalorie nom +kilocycle kilocycle nom +kilocycles kilocycle nom +kilogram kilogram nom +kilograms kilogram nom +kilohertz kilohertz nom +kiloliter kiloliter nom +kiloliters kiloliter nom +kilolitre kilolitre nom +kilolitres kilolitre nom +kilometer kilometer nom +kilometers kilometer nom +kilometre kilometre nom +kilometres kilometre nom +kilos kilo nom +kiloton kiloton nom +kilotons kiloton nom +kilovolt kilovolt nom +kilovolts kilovolt nom +kilowatt kilowatt nom +kilowatts kilowatt nom +kilt kilt nom +kilted kilt ver +kilter kilter nom +kilters kilter nom +kilting kilt ver +kilts kilt nom +kimono kimono nom +kimonos kimono nom +kin kin nom +kina kina nom +kinas kina nom +kind kind adj +kinder kind adj +kindergarten kindergarten nom +kindergartener kindergartener nom +kindergarteners kindergartener nom +kindergartens kindergarten nom +kindergartner kindergartner nom +kindergartners kindergartner nom +kindest kind adj +kindheartedness kindheartedness nom +kindheartednesses kindheartedness nom +kindle kindle ver +kindled kindle ver +kindles kindle ver +kindlier kindly adj +kindliest kindly adj +kindliness kindliness nom +kindlinesses kindliness nom +kindling kindle ver +kindly kindly adj +kindness kindness nom +kindnesses kindness nom +kindred kindred nom +kindreds kindred nom +kinds kind nom +kine kine nom +kines kine nom +kinescope kinescope nom +kinescopes kinescope nom +kineses kinesis nom +kinesis kinesis nom +kinestheses kinesthesis nom +kinesthesia kinesthesia nom +kinesthesias kinesthesia nom +kinesthesis kinesthesis nom +kinfolk kinfolk nom +kinfolks kinfolk nom +king king nom +kingbird kingbird nom +kingbirds kingbird nom +kingbolt kingbolt nom +kingbolts kingbolt nom +kingcup kingcup nom +kingcups kingcup nom +kingdom kingdom nom +kingdoms kingdom nom +kinged king ver +kingfish kingfish nom +kingfisher kingfisher nom +kingfishers kingfisher nom +kinging king ver +kinglet kinglet nom +kinglets kinglet nom +kinglier kingly adj +kingliest kingly adj +kingly kingly adj +kingpin kingpin nom +kingpins kingpin nom +kings king nom +kingship kingship nom +kingships kingship nom +kingsnake kingsnake nom +kingsnakes kingsnake nom +kingwood kingwood nom +kingwoods kingwood nom +kink kink nom +kinkajou kinkajou nom +kinkajous kinkajou nom +kinked kink ver +kinkier kinky adj +kinkiest kinky adj +kinkiness kinkiness nom +kinkinesses kinkiness nom +kinking kink ver +kinks kink nom +kinky kinky adj +kino kino nom +kinos kino nom +kins kin nom +kinsfolk kinsfolk nom +kinsfolks kinsfolk nom +kinship kinship nom +kinships kinship nom +kinsman kinsman nom +kinsmen kinsman nom +kinswoman kinswoman nom +kinswomen kinswoman nom +kiosk kiosk nom +kiosks kiosk nom +kip kip nom +kipped kip ver +kipper kipper nom +kippered kipper ver +kippering kipper ver +kippers kipper nom +kipping kip ver +kips kip nom +kirk kirk nom +kirks kirk nom +kirsch kirsch nom +kirsches kirsch nom +kirtle kirtle nom +kirtles kirtle nom +kishke kishke nom +kishkes kishke nom +kismat kismat nom +kismats kismat nom +kismet kismet nom +kismets kismet nom +kiss kiss nom +kissed kiss ver +kisser kisser nom +kissers kisser nom +kisses kiss nom +kissing kiss ver +kit kit nom +kitbag kitbag nom +kitbags kitbag nom +kitchen kitchen nom +kitchenette kitchenette nom +kitchenettes kitchenette nom +kitchens kitchen nom +kitchenware kitchenware nom +kitchenwares kitchenware nom +kite kite nom +kited kite ver +kites kite nom +kith kith nom +kiths kith nom +kiting kite ver +kits kit nom +kitsch kitsch nom +kitsches kitsch nom +kitschier kitschy adj +kitschiest kitschy adj +kitschy kitschy adj +kitted kit ver +kitten kitten nom +kittened kitten ver +kittening kitten ver +kittens kitten nom +kitties kitty nom +kitting kit ver +kittiwake kittiwake nom +kittiwakes kittiwake nom +kittul kittul nom +kittuls kittul nom +kitty kitty nom +kiwi kiwi nom +kiwifruit kiwifruit nom +kiwifruits kiwifruit nom +kiwis kiwi nom +klaxon klaxon nom +klaxons klaxon nom +kleptomania kleptomania nom +kleptomaniac kleptomaniac nom +kleptomaniacs kleptomaniac nom +kleptomanias kleptomania nom +klick klick nom +klicks klick nom +klutz klutz nom +klutzes klutz nom +klutzier klutzy adj +klutziest klutzy adj +klutziness klutziness nom +klutzinesses klutziness nom +klutzy klutzy adj +klystron klystron nom +klystrons klystron nom +knack knack nom +knacker knacker nom +knackers knacker nom +knacks knack nom +knackwurst knackwurst nom +knackwursts knackwurst nom +knap knap ver +knapped knap ver +knapping knap ver +knaps knap ver +knapsack knapsack nom +knapsacks knapsack nom +knapweed knapweed nom +knapweeds knapweed nom +knave knave nom +knaveries knavery nom +knavery knavery nom +knaves knave nom +knawe knawe nom +knawel knawel nom +knawels knawel nom +knawes knawe nom +knead knead ver +kneaded knead ver +kneader kneader nom +kneaders kneader nom +kneading knead ver +kneads knead ver +knee knee nom +kneecap kneecap nom +kneecapped kneecap ver +kneecapping kneecap ver +kneecaps kneecap nom +kneed knee ver +kneeing knee ver +kneel kneel nom +kneeler kneeler nom +kneelers kneeler nom +kneeling kneel ver +kneels kneel nom +kneepan kneepan nom +kneepans kneepan nom +knees knee nom +knell knell nom +knelled knell ver +knelling knell ver +knells knell nom +knelt kneel ver +knew know ver +knickknack knickknack nom +knickknacks knickknack nom +knife knife nom +knifed knife ver +knifes knife ver +knifing knife ver +knight knight nom +knighted knight ver +knighthood knighthood nom +knighthoods knighthood nom +knighting knight ver +knightlier knightly adj +knightliest knightly adj +knightliness knightliness nom +knightlinesses knightliness nom +knightly knightly adj +knights knight nom +knish knish nom +knishes knish nom +knit knit nom +knits knit nom +knitted knit ver +knitter knitter nom +knitters knitter nom +knitting knit ver +knittings knitting nom +knitwear knitwear nom +knitwears knitwear nom +knives knife nom +knob knob nom +knobbier knobby adj +knobbiest knobby adj +knobble knobble nom +knobbles knobble nom +knobblier knobbly adj +knobbliest knobbly adj +knobbly knobbly adj +knobby knobby adj +knobkerrie knobkerrie nom +knobkerries knobkerrie nom +knobkerry knobkerry nom +knobs knob nom +knock knock nom +knockabout knockabout nom +knockabouts knockabout nom +knockdown knockdown nom +knockdowns knockdown nom +knocked knock ver +knocker knocker nom +knockers knocker nom +knocking knock ver +knockings knocking nom +knockoff knockoff nom +knockoffs knockoff nom +knockout knockout nom +knockouts knockout nom +knocks knock nom +knockwurst knockwurst nom +knockwursts knockwurst nom +knoll knoll nom +knolled knoll ver +knolling knoll ver +knolls knoll nom +knot knot nom +knotgrass knotgrass nom +knotgrasses knotgrass nom +knothole knothole nom +knotholes knothole nom +knots knot nom +knotted knot ver +knottier knotty adj +knottiest knotty adj +knottiness knottiness nom +knottinesses knottiness nom +knotting knot ver +knotty knotty adj +knout knout nom +knouts knout nom +know know sw +knowing know ver +knowinger knowing adj +knowingest knowing adj +knowingness knowingness nom +knowingnesses knowingness nom +knowings knowing nom +knowledge knowledge nom +knowledges knowledge nom +known known sw +knowns known nom +knows knows sw +knuckle knuckle nom +knuckleball knuckleball nom +knuckleballs knuckleball nom +knuckled knuckle ver +knucklehead knucklehead nom +knuckleheads knucklehead nom +knuckler knuckler nom +knucklers knuckler nom +knuckles knuckle nom +knuckling knuckle ver +knurl knurl nom +knurled knurl ver +knurling knurl ver +knurls knurl nom +koala koala nom +koalas koala nom +kob kob nom +kobo kobo nom +kobos kobo nom +kobs kob nom +kohl kohl nom +kohlrabi kohlrabi nom +kohlrabies kohlrabi nom +kohls kohl nom +koine koine nom +koines koine nom +kola kola nom +kolas kola nom +kolkhoz kolkhoz nom +kolkhozes kolkhoz nom +kolkhoznik kolkhoznik nom +kolkhozniks kolkhoznik nom +komondor komondor nom +komondors komondor nom +koodoo koodoo nom +koodoos koodoo nom +kook kook nom +kookaburra kookaburra nom +kookaburras kookaburra nom +kookie kookie adj +kookier kookie adj +kookiest kookie adj +kookiness kookiness nom +kookinesses kookiness nom +kooks kook nom +kooky kooky adj +kopeck kopeck nom +kopecks kopeck nom +kopek kopek nom +kopeks kopek nom +kopje kopje nom +kopjes kopje nom +koppie koppie nom +koppies koppie nom +kor kor nom +kors kor nom +koruna koruna nom +korunas koruna nom +kos kos nom +koses kos nom +kosher kosher nom +koshered kosher ver +koshering kosher ver +koshers kosher nom +koto koto nom +kotos koto nom +kotow kotow nom +kotowed kotow ver +kotowing kotow ver +kotows kotow nom +koumiss koumiss nom +koumisses koumiss nom +kowhai kowhai nom +kowhais kowhai nom +kowtow kowtow nom +kowtowed kowtow ver +kowtowing kowtow ver +kowtows kowtow nom +kraal kraal nom +kraaled kraal ver +kraaling kraal ver +kraals kraal nom +kraft kraft nom +krafts kraft nom +krait krait nom +kraits krait nom +kraut kraut nom +krauts kraut nom +kremlin kremlin nom +kremlins kremlin nom +krill krill nom +krills krill nom +krona krona nom +krone krone nom +kroner krone nom +kronor krona nom +kronur krona nom +krubi krubi nom +krubis krubi nom +krummhorn krummhorn nom +krummhorns krummhorn nom +krypton krypton nom +kryptons krypton nom +ks k nom +kuchen kuchen nom +kudu kudu nom +kudus kudu nom +kudzu kudzu nom +kudzus kudzu nom +kumis kumis nom +kumisses kumis nom +kummel kummel nom +kummels kummel nom +kumquat kumquat nom +kumquats kumquat nom +kunzite kunzite nom +kunzites kunzite nom +kurchatovium kurchatovium nom +kurchatoviums kurchatovium nom +kurrajong kurrajong nom +kurrajongs kurrajong nom +kuru kuru nom +kurus kuru nom +kutch kutch nom +kutches kutch nom +kvass kvass nom +kvasses kvass nom +kvetch kvetch nom +kvetched kvetch ver +kvetches kvetch nom +kvetching kvetch ver +kwacha kwacha nom +kwachas kwacha nom +kwanza kwanza nom +kwanzas kwanza nom +kyat kyat nom +kyats kyat nom +kylie kylie nom +kylies kylie nom +kymograph kymograph nom +kymographs kymograph nom +kyphoses kyphosis nom +kyphosis kyphosis nom +l l sw +la la nom +laager laager nom +laagers laager nom +lab lab nom +labdanum labdanum nom +labdanums labdanum nom +label label nom +labeled label ver +labeling label ver +labels label nom +labia labium nom +labial labial nom +labialize labialize ver +labialized labialize ver +labializes labialize ver +labializing labialize ver +labials labial nom +labium labium nom +labor labor nom +laboratories laboratory nom +laboratory laboratory nom +labored labor ver +laborer laborer nom +laborers laborer nom +laboring labor ver +laboriousness laboriousness nom +laboriousnesses laboriousness nom +labors labor nom +labour labour nom +laboured labour ver +labourer labourer nom +labourers labourer nom +labouring labour ver +labours labour nom +labs lab nom +laburnum laburnum nom +laburnums laburnum nom +labyrinth labyrinth nom +labyrinthitis labyrinthitis nom +labyrinthitises labyrinthitis nom +labyrinthodont labyrinthodont nom +labyrinthodonts labyrinthodont nom +labyrinths labyrinth nom +lac lac nom +lace lace nom +lacebark lacebark nom +lacebarks lacebark nom +laced lace ver +lacerate lacerate ver +lacerated lacerate ver +lacerates lacerate ver +lacerating lacerate ver +laceration laceration nom +lacerations laceration nom +lacertid lacertid nom +lacertids lacertid nom +laces lace nom +lacewing lacewing nom +lacewings lacewing nom +lacewood lacewood nom +lacewoods lacewood nom +lacework lacework nom +laceworks lacework nom +lachrymal lachrymal nom +lachrymals lachrymal nom +lachrymation lachrymation nom +lachrymations lachrymation nom +lacier lacy adj +laciest lacy adj +lacing lace ver +lacings lacing nom +lack lack nom +lacked lack ver +lackey lackey nom +lackeyed lackey ver +lackeying lackey ver +lackeys lackey nom +lacking lack ver +lackluster lackluster nom +lacklusters lackluster nom +lacklustre lacklustre nom +lacklustres lacklustre nom +lacks lack nom +laconicism laconicism nom +laconicisms laconicism nom +laconism laconism nom +laconisms laconism nom +lacquer lacquer nom +lacquered lacquer ver +lacquering lacquer ver +lacquers lacquer nom +lacquerware lacquerware nom +lacquerwares lacquerware nom +lacrimal lacrimal nom +lacrimals lacrimal nom +lacrimation lacrimation nom +lacrimations lacrimation nom +lacrimator lacrimator nom +lacrimators lacrimator nom +lacrosse lacrosse nom +lacrosses lacrosse nom +lacs lac nom +lactalbumin lactalbumin nom +lactalbumins lactalbumin nom +lactate lactate nom +lactated lactate ver +lactates lactate nom +lactating lactate ver +lactation lactation nom +lactations lactation nom +lacteal lacteal nom +lactobacilli lactobacillus nom +lactobacillus lactobacillus nom +lactoflavin lactoflavin nom +lactoflavins lactoflavin nom +lactose lactose nom +lactoses lactose nom +lacuna lacuna nom +lacunae lacuna nom +lacy lacy adj +lad lad nom +ladanum ladanum nom +ladanums ladanum nom +ladder ladder nom +laddered ladder ver +laddering ladder ver +ladders ladder nom +laddie laddie nom +laddies laddie nom +lade lade ver +laded lade ver +laden lade ver +ladened laden ver +ladening laden ver +ladens laden ver +lades lade ver +ladies lady nom +lading lade ver +ladings lading nom +ladle ladle nom +ladled ladle ver +ladles ladle nom +ladling ladle ver +lads lad nom +lady lady nom +ladybeetle ladybeetle nom +ladybeetles ladybeetle nom +ladybird ladybird nom +ladybirds ladybird nom +ladybug ladybug nom +ladybugs ladybug nom +ladyfinger ladyfinger nom +ladyfingers ladyfinger nom +ladyfish ladyfish nom +ladylikeness ladylikeness nom +ladylikenesses ladylikeness nom +ladylove ladylove nom +ladyloves ladylove nom +ladyship ladyship nom +ladyships ladyship nom +laetrile laetrile nom +laetriles laetrile nom +lag lag nom +lagan lagan nom +lagans lagan nom +lagend lagend nom +lagends lagend nom +lager lager nom +lagered lager ver +lagering lager ver +lagers lager nom +laggard laggard nom +laggards laggard nom +lagged lag ver +lagging lag ver +laggings lagging nom +lagnappe lagnappe nom +lagnappes lagnappe nom +lagniappe lagniappe nom +lagniappes lagniappe nom +lagomorph lagomorph nom +lagomorphs lagomorph nom +lagoon lagoon nom +lagoons lagoon nom +lags lag nom +laguna laguna nom +lagunas laguna nom +lagune lagune nom +lagunes lagune nom +lah lah nom +lahar lahar nom +lahars lahar nom +lahs lah nom +laicize laicize ver +laicized laicize ver +laicizes laicize ver +laicizing laicize ver +laid lay ver +lain lie ver +lair lair nom +laird laird nom +lairds laird nom +laired lair ver +lairing lair ver +lairs lair nom +laities laity nom +laity laity nom +lake lake nom +lakefront lakefront nom +lakefronts lakefront nom +lakes lake nom +lakeshore lakeshore nom +lakeshores lakeshore nom +lakeside lakeside nom +lakesides lakeside nom +lakh lakh nom +lakhs lakh nom +lallygag lallygag ver +lallygagged lallygag ver +lallygagging lallygag ver +lallygags lallygag ver +lam lam nom +lama lama nom +lamas lama nom +lamaseries lamasery nom +lamasery lamasery nom +lamb lamb nom +lambada lambada nom +lambadas lambada nom +lambast lambast ver +lambaste lambaste ver +lambasted lambast ver +lambastes lambaste ver +lambasting lambast ver +lambasts lambast ver +lambda lambda nom +lambdas lambda nom +lambed lamb ver +lambencies lambency nom +lambency lambency nom +lambert lambert nom +lamberts lambert nom +lambing lamb ver +lambkill lambkill nom +lambkills lambkill nom +lambkin lambkin nom +lambkins lambkin nom +lambrequin lambrequin nom +lambrequins lambrequin nom +lambs lamb nom +lambskin lambskin nom +lambskins lambskin nom +lame lame adj +lamebrain lamebrain nom +lamebrains lamebrain nom +lamed lame ver +lamedh lamedh nom +lamedhs lamedh nom +lamella lamella nom +lamellas lamella nom +lamellibranch lamellibranch nom +lamellibranchs lamellibranch nom +lameness lameness nom +lamenesses lameness nom +lament lament nom +lamentation lamentation nom +lamentations lamentation nom +lamented lament ver +lamenter lamenter nom +lamenters lamenter nom +lamenting lament ver +laments lament nom +lamer lame adj +lames lame nom +lamest lame adj +lamia lamia nom +lamias lamia nom +lamina lamina nom +laminae lamina nom +laminate laminate nom +laminated laminate ver +laminates laminate nom +laminating laminate ver +lamination lamination nom +laminations lamination nom +laminectomies laminectomy nom +laminectomy laminectomy nom +laming lame ver +laminitis laminitis nom +laminitises laminitis nom +lammed lam ver +lammergeier lammergeier nom +lammergeiers lammergeier nom +lammergeyer lammergeyer nom +lammergeyers lammergeyer nom +lamming lam ver +lamp lamp nom +lampblack lampblack nom +lampblacks lampblack nom +lamped lamp ver +lamping lamp ver +lamplight lamplight nom +lamplighter lamplighter nom +lamplighters lamplighter nom +lamplights lamplight nom +lampoon lampoon nom +lampooned lampoon ver +lampooner lampooner nom +lampooners lampooner nom +lampooning lampoon ver +lampoons lampoon nom +lamppost lamppost nom +lampposts lamppost nom +lamprey lamprey nom +lampreys lamprey nom +lamps lamp nom +lampshade lampshade nom +lampshades lampshade nom +lampshell lampshell nom +lampshells lampshell nom +lams lam nom +lanai lanai nom +lanais lanai nom +lance lance nom +lanced lance ver +lancelet lancelet nom +lancelets lancelet nom +lancer lancer nom +lancers lancer nom +lances lance nom +lancet lancet nom +lancetfish lancetfish nom +lancets lancet nom +lancewood lancewood nom +lancewoods lancewood nom +lancing lance ver +land land nom +landau landau nom +landaus landau nom +landed land ver +landfall landfall nom +landfalls landfall nom +landfill landfill nom +landfilled landfill ver +landfilling landfill ver +landfills landfill nom +landgrave landgrave nom +landgraves landgrave nom +landholder landholder nom +landholders landholder nom +landholding landholding nom +landholdings landholding nom +landing land ver +landings landing nom +landladies landlady nom +landlady landlady nom +landler landler nom +landlers landler nom +landlord landlord nom +landlords landlord nom +landlubber landlubber nom +landlubbers landlubber nom +landman landman nom +landmark landmark nom +landmarked landmark ver +landmarking landmark ver +landmarks landmark nom +landmass landmass nom +landmasses landmass nom +landmen landman nom +landowner landowner nom +landowners landowner nom +landowning landowning nom +landownings landowning nom +lands land nom +landscape landscape nom +landscaped landscape ver +landscaper landscaper nom +landscapers landscaper nom +landscapes landscape nom +landscaping landscape ver +landscapist landscapist nom +landscapists landscapist nom +landside landside nom +landsides landside nom +landslid landslide ver +landslide landslide nom +landslides landslide nom +landsliding landslide ver +landslip landslip nom +landslips landslip nom +landsman landsman nom +landsmen landsman nom +lane lane nom +lanes lane nom +langbeinite langbeinite nom +langbeinites langbeinite nom +langley langley nom +langleys langley nom +langouste langouste nom +langoustes langouste nom +langoustine langoustine nom +langoustines langoustine nom +langsyne langsyne nom +langsynes langsyne nom +language language nom +languages language nom +languidness languidness nom +languidnesses languidness nom +languish languish ver +languished languish ver +languishes languish ver +languishing languish ver +languor languor nom +languors languor nom +langur langur nom +langurs langur nom +laniard laniard nom +laniards laniard nom +lank lank adj +lanker lank adj +lankest lank adj +lankier lanky adj +lankiest lanky adj +lankiness lankiness nom +lankinesses lankiness nom +lankness lankness nom +lanknesses lankness nom +lanky lanky adj +lanolin lanolin nom +lanolins lanolin nom +lantana lantana nom +lantanas lantana nom +lantern lantern nom +lanterned lantern ver +lanternfish lanternfish nom +lanterning lantern ver +lanterns lantern nom +lanthanide lanthanide nom +lanthanides lanthanide nom +lanthanum lanthanum nom +lanthanums lanthanum nom +lanyard lanyard nom +lanyards lanyard nom +lap lap nom +laparoscope laparoscope nom +laparoscopes laparoscope nom +laparoscopies laparoscopy nom +laparoscopy laparoscopy nom +laparotomies laparotomy nom +laparotomy laparotomy nom +lapboard lapboard nom +lapboards lapboard nom +lapdog lapdog nom +lapdogs lapdog nom +lapel lapel nom +lapels lapel nom +lapful lapful nom +lapfuls lapful nom +lapidaries lapidary nom +lapidarist lapidarist nom +lapidarists lapidarist nom +lapidary lapidary nom +lapidate lapidate ver +lapidated lapidate ver +lapidates lapidate ver +lapidating lapidate ver +lapidified lapidify ver +lapidifies lapidify ver +lapidify lapidify ver +lapidifying lapidify ver +lapidist lapidist nom +lapidists lapidist nom +lapin lapin nom +lapins lapin nom +lapped lap ver +lappet lappet nom +lappets lappet nom +lapping lap ver +lappings lapping nom +laps lap nom +lapse lapse nom +lapsed lapse ver +lapses lapse nom +lapsing lapse ver +laptop laptop nom +laptops laptop nom +lapwing lapwing nom +lapwings lapwing nom +larboard larboard nom +larboards larboard nom +larcener larcener nom +larceners larcener nom +larcenies larceny nom +larcenist larcenist nom +larcenists larcenist nom +larceny larceny nom +larch larch nom +larches larch nom +lard lard nom +larded lard ver +larder larder nom +larders larder nom +lardier lardy adj +lardiest lardy adj +larding lard ver +lards lard nom +lardy lardy adj +large large adj +largemouth largemouth nom +largemouths largemouth nom +largeness largeness nom +largenesses largeness nom +larger large adj +larges large nom +largess largess nom +largesse largesse nom +largesses largess nom +largest large adj +largo largo nom +largos largo nom +lariat lariat nom +lariats lariat nom +lark lark nom +larked lark ver +larking lark ver +larks lark nom +larkspur larkspur nom +larkspurs larkspur nom +larn larn ver +larned larn ver +larning larn ver +larns larn ver +larrup larrup ver +larruped larrup ver +larruping larrup ver +larrups larrup ver +larva larva nom +larvae larva nom +larvicide larvicide nom +larvicides larvicide nom +laryngeal laryngeal nom +laryngeals laryngeal nom +laryngectomies laryngectomy nom +laryngectomy laryngectomy nom +larynges larynx nom +laryngitides laryngitis nom +laryngitis laryngitis nom +laryngopharynx laryngopharynx nom +laryngopharynxes laryngopharynx nom +laryngoscope laryngoscope nom +laryngoscopes laryngoscope nom +larynx larynx nom +las la nom +lasagna lasagna nom +lasagnas lasagna nom +lasagne lasagne nom +lasagnes lasagne nom +lascar lascar nom +lascars lascar nom +lasciviousness lasciviousness nom +lasciviousnesses lasciviousness nom +laser laser nom +lasers laser nom +lash lash nom +lashed lash ver +lasher lasher nom +lashers lasher nom +lashes lash nom +lashing lash ver +lashings lashing nom +lass lass nom +lasses lass nom +lassie lassie nom +lassies lassie nom +lassitude lassitude nom +lassitudes lassitude nom +lasso lasso nom +lassoed lasso ver +lassoing lasso ver +lassos lasso nom +last last sw +lasted last ver +lasting last ver +lastingness lastingness nom +lastingnesses lastingness nom +lastings lasting nom +lasts last nom +lat lat nom +latch latch nom +latched latch ver +latches latch nom +latching latch ver +latchkey latchkey nom +latchkeys latchkey nom +latchstring latchstring nom +latchstrings latchstring nom +late late adj +latecomer latecomer nom +latecomers latecomer nom +lateen lateen nom +lateens lateen nom +lately lately sw +latencies latency nom +latency latency nom +lateness lateness nom +latenesses lateness nom +later later sw +lateral lateral nom +lateraled lateral ver +lateraling lateral ver +laterals lateral nom +laterite laterite nom +laterites laterite nom +latest late adj +latex latex nom +lath lath nom +lathe lathe nom +lathed lath ver +lathee lathee nom +lathees lathee nom +lather lather nom +lathered lather ver +lathering lather ver +lathers lather nom +lathes lathe nom +lathi lathi nom +lathing lath ver +lathis lathi nom +laths lath nom +latices latex nom +latinize latinize ver +latinized latinize ver +latinizes latinize ver +latinizing latinize ver +latitude latitude nom +latitudes latitude nom +latitudinarian latitudinarian nom +latitudinarians latitudinarian nom +latke latke nom +latkes latke nom +latria latria nom +latrias latria nom +latrine latrine nom +latrines latrine nom +lats lat nom +latte latte nom +latter latter sw +latterly latterly sw +lattes latte nom +lattice lattice nom +latticed lattice ver +lattices lattice nom +latticework latticework nom +latticeworks latticework nom +latticing lattice ver +laud laud nom +laudanum laudanum nom +laudanums laudanum nom +laudator laudator nom +laudators laudator nom +lauded laud ver +lauder lauder nom +lauders lauder nom +lauding laud ver +lauds laud nom +laugh laugh nom +laughed laugh ver +laugher laugher nom +laughers laugher nom +laughing laugh ver +laughings laughing nom +laughingstock laughingstock nom +laughingstocks laughingstock nom +laughs laugh nom +laughter laughter nom +laughters laughter nom +launce launce nom +launces launce nom +launch launch nom +launched launch ver +launcher launcher nom +launchers launcher nom +launches launch nom +launching launch ver +launchpad launchpad nom +launchpads launchpad nom +launder launder nom +laundered launder ver +launderer launderer nom +launderers launderer nom +launderette launderette nom +launderettes launderette nom +laundering launder ver +launders launder nom +laundress laundress nom +laundresses laundress nom +laundrette laundrette nom +laundrettes laundrette nom +laundries laundry nom +laundromat laundromat nom +laundromats laundromat nom +laundry laundry nom +laundryman laundryman nom +laundrymen laundryman nom +laundrywoman laundrywoman nom +laundrywomen laundrywoman nom +laureate laureate nom +laureates laureate nom +laureateship laureateship nom +laureateships laureateship nom +laurel laurel nom +laureled laurel ver +laureling laurel ver +laurels laurel nom +lav lav nom +lava lava nom +lavabo lavabo nom +lavaboes lavabo nom +lavabos lavabo nom +lavage lavage nom +lavages lavage nom +lavalier lavalier nom +lavaliere lavaliere nom +lavalieres lavaliere nom +lavaliers lavalier nom +lavalliere lavalliere nom +lavallieres lavalliere nom +lavas lava nom +lavation lavation nom +lavations lavation nom +lavatories lavatory nom +lavatory lavatory nom +lave lave ver +laved lave ver +lavender lavender nom +lavenders lavender nom +laver laver nom +lavers laver nom +laves lave ver +laving lave ver +lavish lavish adj +lavished lavish ver +lavisher lavish adj +lavishes lavish ver +lavishest lavish adj +lavishing lavish ver +lavishness lavishness nom +lavishnesses lavishness nom +lavs lav nom +law law adj +lawbreaker lawbreaker nom +lawbreakers lawbreaker nom +lawbreaking lawbreaking nom +lawbreakings lawbreaking nom +lawcourt lawcourt nom +lawcourts lawcourt nom +lawed law ver +lawer law adj +lawest law adj +lawfulness lawfulness nom +lawfulnesses lawfulness nom +lawgiver lawgiver nom +lawgivers lawgiver nom +lawing law ver +lawlessness lawlessness nom +lawlessnesses lawlessness nom +lawmaker lawmaker nom +lawmakers lawmaker nom +lawmaking lawmaking nom +lawmakings lawmaking nom +lawman lawman nom +lawmen lawman nom +lawn lawn nom +lawnmower lawnmower nom +lawnmowers lawnmower nom +lawns lawn nom +lawrencium lawrencium nom +lawrenciums lawrencium nom +laws law nom +lawsuit lawsuit nom +lawsuits lawsuit nom +lawyer lawyer nom +lawyered lawyer ver +lawyering lawyer ver +lawyers lawyer nom +lax lax adj +laxative laxative nom +laxatives laxative nom +laxer lax adj +laxest lax adj +laxities laxity nom +laxity laxity nom +laxness laxness nom +laxnesses laxness nom +lay lie ver +layabout layabout nom +layabouts layabout nom +layaway layaway nom +layaways layaway nom +layer layer nom +layered layer ver +layering layer ver +layerings layering nom +layers layer nom +layette layette nom +layettes layette nom +laying lay ver +layings laying nom +layman layman nom +laymen layman nom +layoff layoff nom +layoffs layoff nom +layout layout nom +layouts layout nom +layover layover nom +layovers layover nom +laypeople layperson nom +layperson layperson nom +lays lay nom +laywoman laywoman nom +laywomen laywoman nom +lazar lazar nom +lazaret lazaret nom +lazarets lazaret nom +lazarette lazarette nom +lazarettes lazarette nom +lazaretto lazaretto nom +lazarettos lazaretto nom +lazars lazar nom +laze laze nom +lazed laze ver +lazes laze nom +lazied lazy ver +lazier lazy adj +lazies lazy ver +laziest lazy adj +laziness laziness nom +lazinesses laziness nom +lazing laze ver +lazuli lazuli nom +lazulis lazuli nom +lazy lazy adj +lazying lazy ver +lea lea nom +leach leach nom +leached leach ver +leaches leach nom +leaching leach ver +leachings leaching nom +lead lead nom +leaded lead ver +leaden leaden ver +leadened leaden ver +leadening leaden ver +leadens leaden ver +leader leader nom +leaders leader nom +leadership leadership nom +leaderships leadership nom +leading lead ver +leadings leading nom +leadplant leadplant nom +leadplants leadplant nom +leads lead nom +leadwort leadwort nom +leadworts leadwort nom +leaf leaf nom +leafage leafage nom +leafages leafage nom +leafed leaf ver +leafhopper leafhopper nom +leafhoppers leafhopper nom +leafier leafy adj +leafiest leafy adj +leafing leaf ver +leaflet leaflet nom +leafleted leaflet ver +leafleting leaflet ver +leaflets leaflet nom +leafs leaf ver +leafstalk leafstalk nom +leafstalks leafstalk nom +leafy leafy adj +league league nom +leagued league ver +leagues league nom +leaguing league ver +leak leak nom +leakage leakage nom +leakages leakage nom +leaked leak ver +leakier leaky adj +leakiest leaky adj +leakiness leakiness nom +leakinesses leakiness nom +leaking leak ver +leaks leak nom +leaky leaky adj +lean lean adj +leaned lean ver +leaner lean adj +leanest lean adj +leaning lean ver +leanings leaning nom +leanness leanness nom +leannesses leanness nom +leans lean nom +leap leap nom +leaped leap ver +leaper leaper nom +leapers leaper nom +leapfrog leapfrog nom +leapfrogged leapfrog ver +leapfrogging leapfrog ver +leapfrogs leapfrog nom +leaping leap ver +leaps leap nom +learn learn ver +learned learn ver +learnedness learnedness nom +learnednesses learnedness nom +learner learner nom +learners learner nom +learning learn ver +learnings learning nom +learns learn ver +leas lea nom +lease lease nom +leaseback leaseback nom +leasebacks leaseback nom +leased lease ver +leasehold leasehold nom +leaseholder leaseholder nom +leaseholders leaseholder nom +leaseholds leasehold nom +leaser leaser nom +leasers leaser nom +leases lease nom +leash leash nom +leashed leash ver +leashes leash nom +leashing leash ver +leasing lease ver +least least sw +leasts least nom +leather leather nom +leatherback leatherback nom +leatherbacks leatherback nom +leathered leather ver +leatherette leatherette nom +leatherettes leatherette nom +leatherfish leatherfish nom +leathering leather ver +leatherleaf leatherleaf nom +leatherleaves leatherleaf nom +leatherneck leatherneck nom +leathernecks leatherneck nom +leathers leather nom +leatherwood leatherwood nom +leatherwoods leatherwood nom +leatherwork leatherwork nom +leatherworks leatherwork nom +leave leave nom +leaved leave ver +leaven leaven nom +leavened leaven ver +leavening leaven ver +leavenings leavening nom +leavens leaven nom +leaver leaver nom +leavers leaver nom +leaves leaf nom +leaving leave ver +leavings leaving nom +lebensraum lebensraum nom +lebensraums lebensraum nom +lecanora lecanora nom +lecanoras lecanora nom +lecher lecher nom +lechered lecher ver +lecheries lechery nom +lechering lecher ver +lecherousness lecherousness nom +lecherousnesses lecherousness nom +lechers lecher nom +lechery lechery nom +lechwe lechwe nom +lechwes lechwe nom +lecithin lecithin nom +lecithins lecithin nom +lectern lectern nom +lecterns lectern nom +lectin lectin nom +lectins lectin nom +lector lector nom +lectors lector nom +lecture lecture nom +lectured lecture ver +lecturer lecturer nom +lecturers lecturer nom +lectures lecture nom +lectureship lectureship nom +lectureships lectureship nom +lecturing lecture ver +led lead ver +ledge ledge nom +ledged ledge ver +ledger ledger nom +ledgers ledger nom +ledges ledge nom +ledging ledge ver +lee lee nom +leech leech nom +leeched leech ver +leeches leech nom +leeching leech ver +leek leek nom +leeks leek nom +leer leer nom +leered leer ver +leerier leery adj +leeriest leery adj +leeriness leeriness nom +leerinesses leeriness nom +leering leer ver +leers leer nom +leery leery adj +lees lee nom +leeward leeward nom +leewards leeward nom +leeway leeway nom +leeways leeway nom +left leave ver +lefter left adj +leftest left adj +leftie leftie nom +lefties leftie nom +leftism leftism nom +leftisms leftism nom +leftist leftist nom +leftists leftist nom +leftover leftover nom +leftovers leftover nom +lefts left nom +lefty lefty nom +leg leg nom +legacies legacy nom +legacy legacy nom +legal legal nom +legalese legalese nom +legaleses legalese nom +legalisation legalisation nom +legalisations legalisation nom +legalism legalism nom +legalisms legalism nom +legalities legality nom +legality legality nom +legalization legalization nom +legalizations legalization nom +legalize legalize ver +legalized legalize ver +legalizes legalize ver +legalizing legalize ver +legals legal nom +legate legate nom +legatee legatee nom +legatees legatee nom +legates legate nom +legateship legateship nom +legateships legateship nom +legation legation nom +legations legation nom +legato legato nom +legatos legato nom +legend legend nom +legendaries legendary nom +legendary legendary nom +legends legend nom +leger leger nom +legerdemain legerdemain nom +legerdemains legerdemain nom +legerities legerity nom +legerity legerity nom +legers leger nom +legged leg ver +leggier leggy adj +leggiest leggy adj +leggin leggin nom +legginess legginess nom +legginesses legginess nom +legging leg ver +leggings legging nom +leggins leggin nom +leggy leggy adj +leghorn leghorn nom +leghorns leghorn nom +legibilities legibility nom +legibility legibility nom +legion legion nom +legionaries legionary nom +legionary legionary nom +legionnaire legionnaire nom +legionnaires legionnaire nom +legions legion nom +legislate legislate ver +legislated legislate ver +legislates legislate ver +legislating legislate ver +legislation legislation nom +legislations legislation nom +legislative legislative nom +legislatives legislative nom +legislator legislator nom +legislators legislator nom +legislatorship legislatorship nom +legislatorships legislatorship nom +legislature legislature nom +legislatures legislature nom +legit legit nom +legitimacies legitimacy nom +legitimacy legitimacy nom +legitimate legitimate ver +legitimated legitimate ver +legitimates legitimate ver +legitimating legitimate ver +legitimatize legitimatize ver +legitimatized legitimatize ver +legitimatizes legitimatize ver +legitimatizing legitimatize ver +legitimization legitimization nom +legitimizations legitimization nom +legitimize legitimize ver +legitimized legitimize ver +legitimizes legitimize ver +legitimizing legitimize ver +legits legit nom +legman legman nom +legmen legman nom +legroom legroom nom +legrooms legroom nom +legs leg nom +legume legume nom +legumes legume nom +legwork legwork nom +legworks legwork nom +lei lei nom +leipoa leipoa nom +leipoas leipoa nom +leis lei nom +leishmaniases leishmaniasis nom +leishmaniasis leishmaniasis nom +leisure leisure nom +leisureliness leisureliness nom +leisurelinesses leisureliness nom +leisures leisure nom +leisurewear leisurewear nom +leisurewears leisurewear nom +leitmotif leitmotif nom +leitmotifs leitmotif nom +leitmotiv leitmotiv nom +leitmotivs leitmotiv nom +lek lek nom +leks lek nom +lekvar lekvar nom +lekvars lekvar nom +lemma lemma nom +lemmas lemma nom +lemming lemming nom +lemmings lemming nom +lemnisci lemniscus nom +lemniscus lemniscus nom +lemon lemon nom +lemonade lemonade nom +lemonades lemonade nom +lemons lemon nom +lempira lempira nom +lempiras lempira nom +lemur lemur nom +lemurs lemur nom +lend lend ver +lender lender nom +lenders lender nom +lending lend ver +lendings lending nom +lends lend ver +length length nom +lengthen lengthen ver +lengthened lengthen ver +lengthening lengthen ver +lengthens lengthen ver +lengthier lengthy adj +lengthiest lengthy adj +lengthiness lengthiness nom +lengthinesses lengthiness nom +lengths length nom +lengthy lengthy adj +lenience lenience nom +leniences lenience nom +leniencies leniency nom +leniency leniency nom +lenified lenify ver +lenifies lenify ver +lenify lenify ver +lenifying lenify ver +lenities lenity nom +lenitive lenitive nom +lenitives lenitive nom +lenity lenity nom +lens lens nom +lensed lens ver +lenses lens nom +lensing lens ver +lent lend ver +lentil lentil nom +lentils lentil nom +leone leone nom +leones leone nom +leopard leopard nom +leopardess leopardess nom +leopardesses leopardess nom +leopards leopard nom +leotard leotard nom +leotards leotard nom +leper leper nom +lepers leper nom +lepidolite lepidolite nom +lepidolites lepidolite nom +lepidoptera lepidopteron nom +lepidopteran lepidopteran nom +lepidopterans lepidopteran nom +lepidopterist lepidopterist nom +lepidopterists lepidopterist nom +lepidopteron lepidopteron nom +leporid leporid nom +leporids leporid nom +leppies leppy nom +leppy leppy nom +leprechaun leprechaun nom +leprechauns leprechaun nom +leprosies leprosy nom +leprosy leprosy nom +lepta lepton nom +leptocephalus leptocephalus nom +leptocephaluses leptocephalus nom +lepton lepton nom +leptons lepton nom +leptospiroses leptospirosis nom +leptospirosis leptospirosis nom +leptotene leptotene nom +leptotenes leptotene nom +lesbian lesbian nom +lesbianism lesbianism nom +lesbianisms lesbianism nom +lesbians lesbian nom +lesion lesion nom +lesioned lesion ver +lesioning lesion ver +lesions lesion nom +lespedeza lespedeza nom +lespedezas lespedeza nom +less less sw +lessee lessee nom +lessees lessee nom +lessen lessen ver +lessened lessen ver +lessening lessen ver +lessens lessen ver +lesser less adj +lesson lesson nom +lessoned lesson ver +lessoning lesson ver +lessons lesson nom +lessor lessor nom +lessors lessor nom +lest lest sw +let let sw +let_s let_s sw +letdown letdown nom +letdowns letdown nom +lethalities lethality nom +lethality lethality nom +lethargies lethargy nom +lethargy lethargy nom +lets let nom +letter letter nom +lettered letter ver +letterer letterer nom +letterers letterer nom +letterhead letterhead nom +letterheads letterhead nom +lettering letter ver +letterings lettering nom +letterman letterman nom +lettermen letterman nom +letterpress letterpress nom +letterpresses letterpress nom +letters letter nom +letting let ver +lettings letting nom +lettuce lettuce nom +lettuces lettuce nom +letup letup nom +letups letup nom +leucine leucine nom +leucines leucine nom +leucocyte leucocyte nom +leucocytes leucocyte nom +leucopenia leucopenia nom +leucopenias leucopenia nom +leucorrhea leucorrhea nom +leucorrheas leucorrhea nom +leukaemia leukaemia nom +leukaemias leukaemia nom +leukemia leukemia nom +leukemias leukemia nom +leukemic leukemic nom +leukemics leukemic nom +leukocyte leukocyte nom +leukocytes leukocyte nom +leukoderma leukoderma nom +leukodermas leukoderma nom +leukopenia leukopenia nom +leukopenias leukopenia nom +leukorrhea leukorrhea nom +leukorrheas leukorrhea nom +levant levant ver +levanted levant ver +levanter levanter nom +levanters levanter nom +levanting levant ver +levants levant ver +levee levee nom +leveed levee ver +leveeing levee ver +levees levee nom +level level adj +leveled level ver +leveler leveler nom +levelers leveler nom +levelheadedness levelheadedness nom +levelheadednesses levelheadedness nom +leveling level ver +leveller level adj +levellers leveller nom +levellest level adj +levelness levelness nom +levelnesses levelness nom +levels level nom +lever lever nom +leverage leverage nom +leveraged leverage ver +leverages leverage nom +leveraging leverage ver +levered lever ver +leveret leveret nom +leverets leveret nom +levering lever ver +levers lever nom +leviathan leviathan nom +leviathans leviathan nom +levied levy ver +levier levier nom +leviers levier nom +levies levy nom +levitate levitate ver +levitated levitate ver +levitates levitate ver +levitating levitate ver +levitation levitation nom +levitations levitation nom +levities levity nom +levity levity nom +levulose levulose nom +levuloses levulose nom +levy levy nom +levying levy ver +lewd lewd adj +lewder lewd adj +lewdest lewd adj +lewdness lewdness nom +lewdnesses lewdness nom +lexeme lexeme nom +lexemes lexeme nom +lexicalize lexicalize ver +lexicalized lexicalize ver +lexicalizes lexicalize ver +lexicalizing lexicalize ver +lexicographer lexicographer nom +lexicographers lexicographer nom +lexicographies lexicography nom +lexicography lexicography nom +lexicologies lexicology nom +lexicologist lexicologist nom +lexicologists lexicologist nom +lexicology lexicology nom +lexicon lexicon nom +lexicons lexicon nom +lexis lexis nom +lexises lexis nom +ley ley nom +leys ley nom +li li nom +liabilities liability nom +liability liability nom +liaise liaise ver +liaised liaise ver +liaises liaise ver +liaising liaise ver +liaison liaison nom +liaisons liaison nom +liana liana nom +lianas liana nom +liar liar nom +liars liar nom +lib lib nom +libation libation nom +libations libation nom +libber libber nom +libbers libber nom +libel libel nom +libeled libel ver +libeler libeler nom +libelers libeler nom +libeling libel ver +libeller libeller nom +libellers libeller nom +libels libel nom +liberal liberal nom +liberalisation liberalisation nom +liberalisations liberalisation nom +liberalism liberalism nom +liberalisms liberalism nom +liberalities liberality nom +liberality liberality nom +liberalization liberalization nom +liberalizations liberalization nom +liberalize liberalize ver +liberalized liberalize ver +liberalizes liberalize ver +liberalizing liberalize ver +liberalness liberalness nom +liberalnesses liberalness nom +liberals liberal nom +liberate liberate ver +liberated liberate ver +liberates liberate ver +liberating liberate ver +liberation liberation nom +liberations liberation nom +liberator liberator nom +liberators liberator nom +libertarian libertarian nom +libertarianism libertarianism nom +libertarianisms libertarianism nom +libertarians libertarian nom +liberties liberty nom +libertine libertine nom +libertines libertine nom +liberty liberty nom +libido libido nom +libidos libido nom +librarian librarian nom +librarians librarian nom +librarianship librarianship nom +librarianships librarianship nom +libraries library nom +library library nom +librate librate ver +librated librate ver +librates librate ver +librating librate ver +librettist librettist nom +librettists librettist nom +libretto libretto nom +librettos libretto nom +libs lib nom +lice louse nom +licence licence nom +licenced licence ver +licencee licencee nom +licencees licencee nom +licences licence nom +licencing licence ver +license license nom +licensed license ver +licensee licensee nom +licensees licensee nom +licenses license nom +licensing license ver +licentiate licentiate nom +licentiates licentiate nom +licentiousness licentiousness nom +licentiousnesses licentiousness nom +lichee lichee nom +lichees lichee nom +lichen lichen nom +lichened lichen ver +lichening lichen ver +lichens lichen nom +lichgate lichgate nom +lichgates lichgate nom +lichi lichi nom +lichis lichi nom +licitness licitness nom +licitnesses licitness nom +lick lick nom +licked lick ver +licking lick ver +lickings licking nom +licks lick nom +licorice licorice nom +licorices licorice nom +lid lid nom +lidded lid ver +lidding lid ver +lido lido nom +lidocaine lidocaine nom +lidocaines lidocaine nom +lidos lido nom +lids lid nom +lie lie nom +liebfraumilch liebfraumilch nom +liebfraumilchs liebfraumilch nom +lied lie ver +lieder lied nom +lief lief adj +liefer lief adj +liefest lief adj +liege liege nom +liegeman liegeman nom +liegemen liegeman nom +lieges liege nom +lien lien nom +liens lien nom +lies lie nom +lieu lieu nom +lieus lieu nom +lieutenancies lieutenancy nom +lieutenancy lieutenancy nom +lieutenant lieutenant nom +lieutenants lieutenant nom +life life nom +lifeblood lifeblood nom +lifebloods lifeblood nom +lifeboat lifeboat nom +lifeboats lifeboat nom +lifebuoy lifebuoy nom +lifebuoys lifebuoy nom +lifeguard lifeguard nom +lifeguarded lifeguard ver +lifeguarding lifeguard ver +lifeguards lifeguard nom +lifelessness lifelessness nom +lifelessnesses lifelessness nom +lifeline lifeline nom +lifelines lifeline nom +lifer lifer nom +lifers lifer nom +lifesaver lifesaver nom +lifesavers lifesaver nom +lifesaving lifesaving nom +lifesavings lifesaving nom +lifespan lifespan nom +lifespans lifespan nom +lifestyle lifestyle nom +lifestyles lifestyle nom +lifetime lifetime nom +lifetimes lifetime nom +lifework lifework nom +lifeworks lifework nom +lift lift nom +lifted lift ver +lifter lifter nom +lifters lifter nom +lifting lift ver +liftman liftman nom +liftmen liftman nom +liftoff liftoff nom +liftoffs liftoff nom +lifts lift nom +ligament ligament nom +ligaments ligament nom +ligan ligan nom +ligand ligand nom +ligands ligand nom +ligans ligan nom +ligate ligate ver +ligated ligate ver +ligates ligate ver +ligating ligate ver +ligation ligation nom +ligations ligation nom +ligature ligature nom +ligatured ligature ver +ligatures ligature nom +ligaturing ligature ver +liger liger nom +ligers liger nom +light light adj +lightbulb lightbulb nom +lightbulbs lightbulb nom +lighted light ver +lighten lighten ver +lightened lighten ver +lightener lightener nom +lighteners lightener nom +lightening lighten ver +lightenings lightening nom +lightens lighten ver +lighter light adj +lighterage lighterage nom +lighterages lighterage nom +lightered lighter ver +lightering lighter ver +lighterman lighterman nom +lightermen lighterman nom +lighters lighter nom +lightest light adj +lightface lightface nom +lightfaces lightface nom +lightheadedness lightheadedness nom +lightheadednesses lightheadedness nom +lightheartedness lightheartedness nom +lightheartednesses lightheartedness nom +lighthouse lighthouse nom +lighthouses lighthouse nom +lighting light ver +lightings lighting nom +lightness lightness nom +lightnesses lightness nom +lightning lightning ver +lightninged lightning ver +lightnings lightning nom +lights light nom +lightship lightship nom +lightships lightship nom +lightsomeness lightsomeness nom +lightsomenesses lightsomeness nom +lightweight lightweight nom +lightweights lightweight nom +lightwood lightwood nom +lightwoods lightwood nom +ligne ligne nom +lignes ligne nom +lignin lignin nom +lignins lignin nom +lignite lignite nom +lignites lignite nom +likabilities likability nom +likability likability nom +likableness likableness nom +likablenesses likableness nom +like like sw +liked liked sw +likelier likely adj +likeliest likely adj +likelihood likelihood nom +likelihoods likelihood nom +likeliness likeliness nom +likelinesses likeliness nom +likely likely sw +liken liken ver +likened liken ver +likeness likeness nom +likenesses likeness nom +likening liken ver +likens liken ver +liker like adj +likes like nom +likest like adj +liking like ver +likings liking nom +lilac lilac nom +lilacs lilac nom +lilies lily nom +lilliputian lilliputian nom +lilliputians lilliputian nom +lilt lilt nom +lilted lilt ver +lilting lilt ver +lilts lilt nom +lily lily nom +limb limb nom +limbed limb ver +limber limber adj +limbered limber ver +limberer limber adj +limberest limber adj +limbering limber ver +limberness limberness nom +limbernesses limberness nom +limbers limber nom +limbing limb ver +limbo limbo nom +limbos limbo nom +limbs limb nom +limbus limbus nom +limbuses limbus nom +lime lime nom +limeade limeade nom +limeades limeade nom +limed lime ver +limekiln limekiln nom +limekilns limekiln nom +limelight limelight nom +limelights limelight nom +limen limen nom +limens limen nom +limerick limerick nom +limericks limerick nom +limes lime nom +limestone limestone nom +limestones limestone nom +limewater limewater nom +limewaters limewater nom +limey limey nom +limeys limey nom +limier limy adj +limiest limy adj +liming lime ver +limit limit nom +limitation limitation nom +limitations limitation nom +limited limit ver +limiteds limited nom +limiter limiter nom +limiters limiter nom +limiting limit ver +limitings limiting nom +limitlessness limitlessness nom +limitlessnesses limitlessness nom +limits limit nom +limn limn ver +limned limn ver +limner limner nom +limners limner nom +limning limn ver +limnologies limnology nom +limnology limnology nom +limns limn ver +limo limo nom +limonene limonene nom +limonenes limonene nom +limonite limonite nom +limonites limonite nom +limos limo nom +limousine limousine nom +limousines limousine nom +limp limp adj +limpa limpa nom +limpas limpa nom +limped limp ver +limper limp adj +limpest limp adj +limpet limpet nom +limpets limpet nom +limpidities limpidity nom +limpidity limpidity nom +limpidness limpidness nom +limpidnesses limpidness nom +limping limp ver +limpings limping nom +limpkin limpkin nom +limpkins limpkin nom +limpness limpness nom +limpnesses limpness nom +limps limp nom +limy limy adj +linac linac nom +linacs linac nom +linage linage nom +linages linage nom +linalool linalool nom +linalools linalool nom +linchpin linchpin nom +linchpins linchpin nom +lincomycin lincomycin nom +lincomycins lincomycin nom +lindane lindane nom +lindanes lindane nom +linden linden nom +lindens linden nom +lindies lindy nom +lindy lindy nom +line line nom +lineage lineage nom +lineages lineage nom +lineament lineament nom +lineaments lineament nom +linearities linearity nom +linearity linearity nom +linearize linearize ver +linearized linearize ver +linearizes linearize ver +linearizing linearize ver +lineation lineation nom +lineations lineation nom +linebacker linebacker nom +linebackers linebacker nom +linecut linecut nom +linecuts linecut nom +lined line ver +lineman lineman nom +linemen lineman nom +linen linen nom +linendraper linendraper nom +linendrapers linendraper nom +linens linen nom +liner liner nom +liners liner nom +lines line nom +linesman linesman nom +linesmen linesman nom +lineup lineup nom +lineups lineup nom +ling ling nom +lingam lingam nom +lingams lingam nom +lingcod lingcod nom +lingcods lingcod nom +linger linger ver +lingered linger ver +lingerer lingerer nom +lingerers lingerer nom +lingerie lingerie nom +lingeries lingerie nom +lingering linger ver +lingerings lingering nom +lingers linger ver +lingo lingo nom +lingoes lingo nom +lingonberries lingonberry nom +lingonberry lingonberry nom +lingua lingua nom +lingual lingual nom +linguals lingual nom +linguas lingua nom +linguine linguine nom +linguini linguini nom +linguist linguist nom +linguists linguist nom +liniment liniment nom +liniments liniment nom +lining line ver +linings lining nom +link link nom +linkage linkage nom +linkages linkage nom +linkboy linkboy nom +linkboys linkboy nom +linked link ver +linking link ver +linkman linkman nom +linkmen linkman nom +links link nom +linksman linksman nom +linksmen linksman nom +linkup linkup nom +linkups linkup nom +linnet linnet nom +linnets linnet nom +lino lino nom +linocut linocut nom +linocuts linocut nom +linoleum linoleum nom +linoleums linoleum nom +linos lino nom +linotype linotype nom +linotypes linotype nom +linseed linseed nom +linseeds linseed nom +lint lint nom +lintel lintel nom +lintels lintel nom +lintier linty adj +lintiest linty adj +lints lint nom +linty linty adj +lion lion nom +lioness lioness nom +lionesses lioness nom +lionet lionet nom +lionets lionet nom +lionfish lionfish nom +lionization lionization nom +lionizations lionization nom +lionize lionize ver +lionized lionize ver +lionizes lionize ver +lionizing lionize ver +lions lion nom +lip lip nom +lipase lipase nom +lipases lipase nom +lipid lipid nom +lipide lipide nom +lipides lipide nom +lipids lipid nom +lipoid lipoid nom +lipoids lipoid nom +lipoma lipoma nom +lipomas lipoma nom +lipoprotein lipoprotein nom +lipoproteins lipoprotein nom +liposuction liposuction nom +liposuctions liposuction nom +lipped lip ver +lippier lippy adj +lippiest lippy adj +lipping lip ver +lippy lippy adj +lipread lipread ver +lipreader lipreader nom +lipreaders lipreader nom +lipreading lipread ver +lipreadings lipreading nom +lipreads lipread ver +lips lip nom +lipstick lipstick nom +lipsticked lipstick ver +lipsticking lipstick ver +lipsticks lipstick nom +liquefaction liquefaction nom +liquefactions liquefaction nom +liquefied liquefy ver +liquefies liquefy ver +liquefy liquefy ver +liquefying liquefy ver +liqueur liqueur nom +liqueurs liqueur nom +liquid liquid nom +liquidambar liquidambar nom +liquidambars liquidambar nom +liquidate liquidate ver +liquidated liquidate ver +liquidates liquidate ver +liquidating liquidate ver +liquidation liquidation nom +liquidations liquidation nom +liquidator liquidator nom +liquidators liquidator nom +liquidise liquidise ver +liquidised liquidise ver +liquidises liquidise ver +liquidising liquidise ver +liquidities liquidity nom +liquidity liquidity nom +liquidize liquidize ver +liquidized liquidize ver +liquidizer liquidizer nom +liquidizers liquidizer nom +liquidizes liquidize ver +liquidizing liquidize ver +liquidness liquidness nom +liquidnesses liquidness nom +liquids liquid nom +liquified liquify ver +liquifies liquify ver +liquify liquify ver +liquifying liquify ver +liquor liquor nom +liquored liquor ver +liquorice liquorice nom +liquorices liquorice nom +liquoring liquor ver +liquors liquor nom +lira lira nom +lire lira nom +lis li nom +lisle lisle nom +lisles lisle nom +lisp lisp nom +lisped lisp ver +lisper lisper nom +lispers lisper nom +lisping lisp ver +lisps lisp nom +lissomeness lissomeness nom +lissomenesses lissomeness nom +list list nom +listed list ver +listen listen ver +listened listen ver +listener listener nom +listeners listener nom +listening listen ver +listens listen ver +lister lister nom +listers lister nom +listing list ver +listings listing nom +listlessness listlessness nom +listlessnesses listlessness nom +lists list nom +lit lit nom +litanies litany nom +litany litany nom +litchi litchi nom +litchis litchi nom +liter liter nom +literacies literacy nom +literacy literacy nom +literal literal nom +literalism literalism nom +literalisms literalism nom +literalize literalize ver +literalized literalize ver +literalizes literalize ver +literalizing literalize ver +literalness literalness nom +literalnesses literalness nom +literals literal nom +literariness literariness nom +literarinesses literariness nom +literate literate nom +literates literate nom +literature literature nom +literatures literature nom +liters liter nom +lithe lithe adj +litheness litheness nom +lithenesses litheness nom +lither lithe adj +lithest lithe adj +lithiases lithiasis nom +lithiasis lithiasis nom +lithium lithium nom +lithiums lithium nom +lithograph lithograph nom +lithographed lithograph ver +lithographer lithographer nom +lithographers lithographer nom +lithographies lithography nom +lithographing lithograph ver +lithographs lithograph nom +lithography lithography nom +lithophyte lithophyte nom +lithophytes lithophyte nom +lithops lithops nom +lithopses lithops nom +lithosphere lithosphere nom +lithospheres lithosphere nom +lithotomies lithotomy nom +lithotomy lithotomy nom +litigant litigant nom +litigants litigant nom +litigate litigate ver +litigated litigate ver +litigates litigate ver +litigating litigate ver +litigation litigation nom +litigations litigation nom +litigator litigator nom +litigators litigator nom +litigiousness litigiousness nom +litigiousnesses litigiousness nom +litmus litmus nom +litmuses litmus nom +litote litote nom +litotes litote nom +litre litre nom +litres litre nom +lits lit nom +litter litter nom +litterateur litterateur nom +litterateurs litterateur nom +litterbug litterbug nom +litterbugs litterbug nom +littered litter ver +litterer litterer nom +litterers litterer nom +littering litter ver +litters litter nom +little little sw +littleneck littleneck nom +littlenecks littleneck nom +littleness littleness nom +littlenesses littleness nom +littler little adj +littles little nom +littlest little adj +littoral littoral nom +littorals littoral nom +liturgies liturgy nom +liturgist liturgist nom +liturgists liturgist nom +liturgy liturgy nom +livabilities livability nom +livability livability nom +live live adj +lived live ver +livelier lively adj +liveliest lively adj +livelihood livelihood nom +livelihoods livelihood nom +liveliness liveliness nom +livelinesses liveliness nom +livelong livelong nom +livelongs livelong nom +lively lively adj +liven liven ver +livened liven ver +liveness liveness nom +livenesses liveness nom +livening liven ver +livens liven ver +liver live adj +livered liver ver +liveries livery nom +livering liver ver +liverleaf liverleaf nom +liverleaves liverleaf nom +livers liver nom +liverwort liverwort nom +liverworts liverwort nom +liverwurst liverwurst nom +liverwursts liverwurst nom +livery livery nom +liveryman liveryman nom +liverymen liveryman nom +lives life nom +livest live adj +livestock livestock nom +livestocks livestock nom +livid livid adj +livider livid adj +lividest livid adj +lividities lividity nom +lividity lividity nom +lividness lividness nom +lividnesses lividness nom +living live ver +livings living nom +lizard lizard nom +lizardfish lizardfish nom +lizards lizard nom +llama llama nom +llamas llama nom +llano llano nom +llanos llano nom +loach loach nom +loaches loach nom +load load nom +loaded load ver +loader loader nom +loaders loader nom +loading load ver +loadings loading nom +loads load nom +loadstar loadstar nom +loadstars loadstar nom +loadstone loadstone nom +loadstones loadstone nom +loaf loaf nom +loafed loaf ver +loafer loafer nom +loafers loafer nom +loafing loaf ver +loafings loafing nom +loafs loaf ver +loam loam nom +loamed loam ver +loamier loamy adj +loamiest loamy adj +loaming loam ver +loams loam nom +loamy loamy adj +loan loan nom +loaned loan ver +loaner loaner nom +loaners loaner nom +loaning loan ver +loans loan nom +loansharking loansharking nom +loansharkings loansharking nom +loanword loanword nom +loanwords loanword nom +loath loath adj +loathe loathe adj +loathed loathe ver +loather loath adj +loathers loather nom +loathes loathe ver +loathest loath adj +loathing loathe ver +loathings loathing nom +loathlier loathly adj +loathliest loathly adj +loathly loathly adj +loathsomeness loathsomeness nom +loathsomenesses loathsomeness nom +loaves loaf nom +lob lob nom +lobbed lob ver +lobber lobber nom +lobbers lobber nom +lobbied lobby ver +lobbies lobby nom +lobbing lob ver +lobby lobby nom +lobbying lobby ver +lobbyist lobbyist nom +lobbyists lobbyist nom +lobe lobe nom +lobectomies lobectomy nom +lobectomy lobectomy nom +lobefin lobefin nom +lobefins lobefin nom +lobelia lobelia nom +lobelias lobelia nom +lobes lobe nom +loblollies loblolly nom +loblolly loblolly nom +lobotomies lobotomy nom +lobotomize lobotomize ver +lobotomized lobotomize ver +lobotomizes lobotomize ver +lobotomizing lobotomize ver +lobotomy lobotomy nom +lobs lob nom +lobscouse lobscouse nom +lobscouses lobscouse nom +lobster lobster nom +lobsterman lobsterman nom +lobstermen lobsterman nom +lobule lobule nom +lobules lobule nom +lobworm lobworm nom +lobworms lobworm nom +local local nom +locale locale nom +localed local ver +locales locale nom +localing local ver +localisation localisation nom +localisations localisation nom +localise localise ver +localised localise ver +localises localise ver +localising localise ver +localism localism nom +localisms localism nom +localities locality nom +locality locality nom +localization localization nom +localizations localization nom +localize localize ver +localized localize ver +localizes localize ver +localizing localize ver +locals local nom +locate locate ver +located locate ver +locates locate ver +locating locate ver +location location nom +locations location nom +locative locative nom +locatives locative nom +locator locator nom +locators locator nom +loch loch nom +lochs loch nom +loci locus nom +lock lock nom +lockage lockage nom +lockages lockage nom +lockbox lockbox nom +lockboxes lockbox nom +locked lock ver +locker locker nom +lockers locker nom +locket locket nom +lockets locket nom +locking lock ver +lockjaw lockjaw nom +lockjaws lockjaw nom +lockkeeper lockkeeper nom +lockkeepers lockkeeper nom +lockman lockman nom +lockmaster lockmaster nom +lockmasters lockmaster nom +lockmen lockman nom +locknut locknut nom +locknuts locknut nom +lockout lockout nom +lockouts lockout nom +locks lock nom +locksmith locksmith nom +locksmiths locksmith nom +lockstep lockstep nom +locksteps lockstep nom +lockstitch lockstitch nom +lockstitches lockstitch nom +lockup lockup nom +lockups lockup nom +loco loco nom +locoed loco ver +locoing loco ver +locoism locoism nom +locoisms locoism nom +locomote locomote ver +locomoted locomote ver +locomotes locomote ver +locomoting locomote ver +locomotion locomotion nom +locomotions locomotion nom +locomotive locomotive nom +locomotives locomotive nom +locos loco nom +locoweed locoweed nom +locoweeds locoweed nom +locum locum nom +locums locum nom +locus locus nom +locust locust nom +locusts locust nom +locution locution nom +locutions locution nom +lode lode nom +lodes lode nom +lodestar lodestar nom +lodestars lodestar nom +lodestone lodestone nom +lodestones lodestone nom +lodge lodge nom +lodged lodge ver +lodgement lodgement nom +lodgements lodgement nom +lodgepole lodgepole nom +lodgepoles lodgepole nom +lodger lodger nom +lodgers lodger nom +lodges lodge nom +lodging lodge ver +lodgings lodging nom +lodgment lodgment nom +lodgments lodgment nom +loess loess nom +loesses loess nom +loft loft nom +lofted loft ver +loftier lofty adj +loftiest lofty adj +loftiness loftiness nom +loftinesses loftiness nom +lofting loft ver +lofts loft nom +lofty lofty adj +log log nom +loganberries loganberry nom +loganberry loganberry nom +logarithm logarithm nom +logarithms logarithm nom +logbook logbook nom +logbooks logbook nom +loge loge nom +loges loge nom +logged log ver +logger logger nom +loggerhead loggerhead nom +loggerheads loggerhead nom +loggers logger nom +loggia loggia nom +loggias loggia nom +logging log ver +loggings logging nom +logic logic nom +logicalities logicality nom +logicality logicality nom +logicalness logicalness nom +logicalnesses logicalness nom +logician logician nom +logicians logician nom +logicism logicism nom +logicisms logicism nom +logics logic nom +logier logy adj +logiest logy adj +loginess loginess nom +loginesses loginess nom +logistic logistic nom +logistician logistician nom +logisticians logistician nom +logistics logistic nom +logjam logjam nom +logjams logjam nom +logo logo nom +logogram logogram nom +logograms logogram nom +logograph logograph nom +logographs logograph nom +logomach logomach nom +logomachist logomachist nom +logomachists logomachist nom +logomachs logomach nom +logorrhea logorrhea nom +logorrheas logorrhea nom +logos logo nom +logotype logotype nom +logotypes logotype nom +logrolling logrolling nom +logrollings logrolling nom +logs log nom +logwood logwood nom +logwoods logwood nom +logy logy adj +loin loin nom +loincloth loincloth nom +loincloths loincloth nom +loins loin nom +loir loir nom +loirs loir nom +loiter loiter ver +loitered loiter ver +loiterer loiterer nom +loiterers loiterer nom +loitering loiter ver +loiterings loitering nom +loiters loiter ver +loll loll nom +lolled loll ver +lollies lolly nom +lolling loll ver +lollipop lollipop nom +lollipops lollipop nom +lollop lollop ver +lolloped lollop ver +lolloping lollop ver +lollops lollop ver +lolls loll nom +lolly lolly nom +lollygag lollygag ver +lollygagged lollygag ver +lollygagging lollygag ver +lollygags lollygag ver +lollypop lollypop nom +lollypops lollypop nom +loment loment nom +loments loment nom +lonelier lonely adj +loneliest lonely adj +loneliness loneliness nom +lonelinesses loneliness nom +lonely lonely adj +loner loner nom +loners loner nom +lonesomeness lonesomeness nom +lonesomenesses lonesomeness nom +long long adj +longan longan nom +longanimities longanimity nom +longanimity longanimity nom +longans longan nom +longboat longboat nom +longboats longboat nom +longbow longbow nom +longbowman longbowman nom +longbowmen longbowman nom +longbows longbow nom +longed long ver +longer long adj +longest long adj +longevities longevity nom +longevity longevity nom +longhair longhair nom +longhairs longhair nom +longhand longhand nom +longhands longhand nom +longhorn longhorn nom +longhorns longhorn nom +longicorn longicorn nom +longicorns longicorn nom +longing long ver +longings longing nom +longitude longitude nom +longitudes longitude nom +longness longness nom +longnesses longness nom +longs long nom +longshoreman longshoreman nom +longshoremen longshoreman nom +longsightedness longsightedness nom +longsightednesses longsightedness nom +longueur longueur nom +longueurs longueur nom +longyi longyi nom +longyis longyi nom +loo loo nom +loofa loofa nom +loofah loofah nom +loofahs loofah nom +loofas loofa nom +look look sw +lookalike lookalike nom +lookalikes lookalike nom +lookdown lookdown nom +lookdowns lookdown nom +looked look ver +looker looker nom +lookers looker nom +looking looking sw +lookings looking nom +lookout lookout nom +lookouts lookout nom +looks looks sw +lookup lookup nom +lookups lookup nom +loom loom nom +loomed loom ver +looming loom ver +looms loom nom +loon loon nom +looney looney adj +looneys looney nom +loonier looney adj +loonies loony nom +looniest looney adj +loons loon nom +loony loony adj +loop loop nom +looped loop ver +looper looper nom +loopers looper nom +loophole loophole nom +loopholed loophole ver +loopholes loophole nom +loopholing loophole ver +loopier loopy adj +loopiest loopy adj +looping loop ver +loops loop nom +loopy loopy adj +loos loo nom +loose loose adj +loosed loose ver +loosen loosen ver +loosened loosen ver +looseness looseness nom +loosenesses looseness nom +loosening loosen ver +loosens loosen ver +looser loose adj +looses loose ver +loosest loose adj +loosestrife loosestrife nom +loosestrifes loosestrife nom +loosing loose ver +loot loot nom +looted loot ver +looter looter nom +looters looter nom +looting loot ver +lootings looting nom +loots loot nom +lop lop nom +lope lope nom +loped lope ver +lopes lope nom +loping lope ver +lopped lop ver +lopping lop ver +lops lop nom +lopsidedness lopsidedness nom +lopsidednesses lopsidedness nom +loquaciousness loquaciousness nom +loquaciousnesses loquaciousness nom +loquacities loquacity nom +loquacity loquacity nom +loquat loquat nom +loquats loquat nom +lord lord nom +lorded lord ver +lording lord ver +lordlier lordly adj +lordliest lordly adj +lordliness lordliness nom +lordlinesses lordliness nom +lordly lordly adj +lordoses lordosis nom +lordosis lordosis nom +lords lord nom +lordship lordship nom +lordships lordship nom +lore lore nom +lores lore nom +lorgnette lorgnette nom +lorgnettes lorgnette nom +lorica lorica nom +loricae lorica nom +lories lory nom +lorikeet lorikeet nom +lorikeets lorikeet nom +loris loris nom +lorises loris nom +lorries lorry nom +lorry lorry nom +lory lory nom +lose lose ver +loser loser nom +losers loser nom +loses lose ver +losing lose ver +losings losing nom +loss loss nom +losses loss nom +lost lose ver +lot lot nom +lota lota nom +lotas lota nom +loth loth adj +lother loth adj +lothest loth adj +lotion lotion nom +lotions lotion nom +lots lot nom +lotte lotte nom +lotted lot ver +lotteries lottery nom +lottery lottery nom +lottes lotte nom +lotting lot ver +lotto lotto nom +lottos lotto nom +lotus lotus nom +lotuses lotus nom +loud loud adj +louder loud adj +loudest loud adj +loudhailer loudhailer nom +loudhailers loudhailer nom +loudlier loudly adj +loudliest loudly adj +loudly loudly adj +loudmouth loudmouth nom +loudmouths loudmouth nom +loudness loudness nom +loudnesses loudness nom +loudspeaker loudspeaker nom +loudspeakers loudspeaker nom +lough lough nom +loughs lough nom +lounge lounge nom +lounged lounge ver +lounger lounger nom +loungers lounger nom +lounges lounge nom +lounging lounge ver +loupe loupe nom +loupes loupe nom +lour lour ver +loured lour ver +louring lour ver +lours lour ver +louse louse nom +louses louse nom +lousier lousy adj +lousiest lousy adj +lousiness lousiness nom +lousinesses lousiness nom +lousy lousy adj +lout lout nom +louted lout ver +louting lout ver +louts lout nom +louver louver nom +louvered louver ver +louvering louver ver +louvers louver nom +louvre louvre nom +louvres louvre nom +lovableness lovableness nom +lovablenesses lovableness nom +lovage lovage nom +lovages lovage nom +lovastatin lovastatin nom +lovastatins lovastatin nom +love love nom +lovebird lovebird nom +lovebirds lovebird nom +lovechild lovechild nom +lovechildren lovechild nom +loved love ver +lovelier lovely adj +lovelies lovely nom +loveliest lovely adj +loveliness loveliness nom +lovelinesses loveliness nom +lovely lovely adj +lovemaking lovemaking nom +lovemakings lovemaking nom +lover lover nom +lovers lover nom +loves love nom +loveseat loveseat nom +loveseats loveseat nom +lovesickness lovesickness nom +lovesicknesses lovesickness nom +loving love ver +lovingness lovingness nom +lovingnesses lovingness nom +low low adj +lowan lowan nom +lowans lowan nom +lowball lowball ver +lowballed lowball ver +lowballing lowball ver +lowballs lowball ver +lowboy lowboy nom +lowboys lowboy nom +lowbrow lowbrow nom +lowbrows lowbrow nom +lowdown lowdown nom +lowdowns lowdown nom +lowed low ver +lower low adj +lowercase lowercase nom +lowercased lowercase ver +lowercases lowercase nom +lowercasing lowercase ver +lowered lower ver +lowering lower ver +lowerings lowering nom +lowers lower nom +lowest low adj +lowing low ver +lowland lowland nom +lowlander lowlander nom +lowlanders lowlander nom +lowlands lowland nom +lowlier lowly adj +lowliest lowly adj +lowlife lowlife nom +lowlifes lowlife nom +lowliness lowliness nom +lowlinesses lowliness nom +lowly lowly adj +lowness lowness nom +lownesses lowness nom +lows low nom +lox lox nom +loxodrome loxodrome nom +loxodromes loxodrome nom +loyal loyal adj +loyaler loyal adj +loyalest loyal adj +loyalism loyalism nom +loyalisms loyalism nom +loyalist loyalist nom +loyalists loyalist nom +loyalties loyalty nom +loyalty loyalty nom +lozenge lozenge nom +lozenges lozenge nom +ls l nom +ltd ltd sw +luau luau nom +luaus luau nom +lubber lubber nom +lubbers lubber nom +lube lube nom +lubed lube ver +lubes lube nom +lubing lube ver +lubricant lubricant nom +lubricants lubricant nom +lubricate lubricate ver +lubricated lubricate ver +lubricates lubricate ver +lubricating lubricate ver +lubrication lubrication nom +lubrications lubrication nom +lubricator lubricator nom +lubricators lubricator nom +lubricities lubricity nom +lubricity lubricity nom +lucerne lucerne nom +lucernes lucerne nom +lucid lucid adj +lucider lucid adj +lucidest lucid adj +lucidities lucidity nom +lucidity lucidity nom +lucidness lucidness nom +lucidnesses lucidness nom +lucifer lucifer nom +luciferin luciferin nom +luciferins luciferin nom +lucifers lucifer nom +luck luck nom +lucked luck ver +luckier lucky adj +luckies lucky nom +luckiest lucky adj +luckiness luckiness nom +luckinesses luckiness nom +lucking luck ver +lucks luck nom +lucky lucky adj +lucrativeness lucrativeness nom +lucrativenesses lucrativeness nom +lucre lucre nom +lucres lucre nom +lucubrate lucubrate ver +lucubrated lucubrate ver +lucubrates lucubrate ver +lucubrating lucubrate ver +lucubration lucubration nom +lucubrations lucubration nom +ludicrousness ludicrousness nom +ludicrousnesses ludicrousness nom +ludo ludo nom +ludos ludo nom +luff luff nom +luffa luffa nom +luffas luffa nom +luffed luff ver +luffing luff ver +luffs luff nom +lug lug nom +luge luge nom +luged luge ver +lugeing luge ver +luger luger nom +lugers luger nom +luges luge nom +luggage luggage nom +luggages luggage nom +lugged lug ver +lugger lugger nom +luggers lugger nom +lugging lug ver +luging luge ver +lugings luging nom +lugs lug nom +lugsail lugsail nom +lugsails lugsail nom +lugubriousness lugubriousness nom +lugubriousnesses lugubriousness nom +lugworm lugworm nom +lugworms lugworm nom +lukewarmness lukewarmness nom +lukewarmnesses lukewarmness nom +lull lull nom +lullabied lullaby ver +lullabies lullaby nom +lullaby lullaby nom +lullabying lullaby ver +lulled lull ver +lulling lull ver +lulls lull nom +lulu lulu nom +lulus lulu nom +lumbago lumbago nom +lumbagos lumbago nom +lumbar lumbar nom +lumbars lumbar nom +lumber lumber nom +lumbered lumber ver +lumberer lumberer nom +lumberers lumberer nom +lumbering lumber ver +lumberings lumbering nom +lumberjack lumberjack nom +lumberjacks lumberjack nom +lumberman lumberman nom +lumbermen lumberman nom +lumbers lumber nom +lumberyard lumberyard nom +lumberyards lumberyard nom +lumen lumen nom +lumens lumen nom +luminance luminance nom +luminances luminance nom +luminaries luminary nom +luminary luminary nom +luminescence luminescence nom +luminescences luminescence nom +luminosities luminosity nom +luminosity luminosity nom +luminousness luminousness nom +luminousnesses luminousness nom +lummox lummox nom +lummoxes lummox nom +lump lump nom +lumpectomies lumpectomy nom +lumpectomy lumpectomy nom +lumped lump ver +lumper lumper nom +lumpers lumper nom +lumpfish lumpfish nom +lumpier lumpy adj +lumpiest lumpy adj +lumpiness lumpiness nom +lumpinesses lumpiness nom +lumping lump ver +lumps lump nom +lumpsucker lumpsucker nom +lumpsuckers lumpsucker nom +lumpy lumpy adj +lunacies lunacy nom +lunacy lunacy nom +lunar lunar nom +lunars lunar nom +lunatic lunatic nom +lunatics lunatic nom +lunation lunation nom +lunations lunation nom +lunch lunch nom +lunched lunch ver +luncheon luncheon nom +luncheonette luncheonette nom +luncheonettes luncheonette nom +luncheons luncheon nom +luncher luncher nom +lunchers luncher nom +lunches lunch nom +lunching lunch ver +lunchroom lunchroom nom +lunchrooms lunchroom nom +lunchtime lunchtime nom +lunchtimes lunchtime nom +lunette lunette nom +lunettes lunette nom +lung lung nom +lunge lunge nom +lunged lunge ver +lunger lunger nom +lungers lunger nom +lunges lunge nom +lungfish lungfish nom +lungfishes lungfish nom +lungi lungi nom +lunging lunge ver +lungis lungi nom +lungs lung nom +lungyi lungyi nom +lungyis lungyi nom +lunkhead lunkhead nom +lunkheads lunkhead nom +lunula lunula nom +lunulas lunula nom +lunule lunule nom +lunules lunule nom +lupin lupin nom +lupine lupine nom +lupines lupine nom +lupins lupin nom +lupus lupus nom +lupuses lupus nom +lurch lurch nom +lurched lurch ver +lurcher lurcher nom +lurchers lurcher nom +lurches lurch nom +lurching lurch ver +lure lure nom +lured lure ver +lures lure nom +lurid lurid adj +lurider lurid adj +luridest lurid adj +luridness luridness nom +luridnesses luridness nom +luring lure ver +lurk lurk nom +lurked lurk ver +lurker lurker nom +lurkers lurker nom +lurking lurk ver +lurks lurk nom +lusciousness lusciousness nom +lusciousnesses lusciousness nom +lush lush adj +lushed lush ver +lusher lush adj +lushes lush nom +lushest lush adj +lushing lush ver +lushness lushness nom +lushnesses lushness nom +lust lust nom +lusted lust ver +luster luster nom +lustered luster ver +lustering luster ver +lusters luster nom +lusterware lusterware nom +lusterwares lusterware nom +lustfulness lustfulness nom +lustfulnesses lustfulness nom +lustier lusty adj +lustiest lusty adj +lustiness lustiness nom +lustinesses lustiness nom +lusting lust ver +lustrate lustrate ver +lustrated lustrate ver +lustrates lustrate ver +lustrating lustrate ver +lustre lustre nom +lustred lustre ver +lustres lustre nom +lustring lustre ver +lustrum lustrum nom +lustrums lustrum nom +lusts lust nom +lusty lusty adj +lutanist lutanist nom +lutanists lutanist nom +lute lute nom +lutecium lutecium nom +luteciums lutecium nom +luted lute ver +lutefisk lutefisk nom +lutefisks lutefisk nom +lutein lutein nom +luteins lutein nom +lutenist lutenist nom +lutenists lutenist nom +lutes lute nom +lutetium lutetium nom +lutetiums lutetium nom +lutfisk lutfisk nom +lutfisks lutfisk nom +luting lute ver +lutings luting nom +lutist lutist nom +lutists lutist nom +lux lux nom +luxation luxation nom +luxations luxation nom +luxes lux nom +luxuriance luxuriance nom +luxuriances luxuriance nom +luxuriate luxuriate ver +luxuriated luxuriate ver +luxuriates luxuriate ver +luxuriating luxuriate ver +luxuriation luxuriation nom +luxuriations luxuriation nom +luxuries luxury nom +luxuriousness luxuriousness nom +luxuriousnesses luxuriousness nom +luxury luxury nom +lwei lwei nom +lweis lwei nom +lycanthrope lycanthrope nom +lycanthropes lycanthrope nom +lycanthropies lycanthropy nom +lycanthropy lycanthropy nom +lycee lycee nom +lycees lycee nom +lyceum lyceum nom +lyceums lyceum nom +lychee lychee nom +lychees lychee nom +lychgate lychgate nom +lychgates lychgate nom +lychnis lychnis nom +lychnises lychnis nom +lycopod lycopod nom +lycopods lycopod nom +lye lye nom +lyes lye nom +lying lie ver +lyings lying nom +lymph lymph nom +lymphatic lymphatic nom +lymphatics lymphatic nom +lymphoblast lymphoblast nom +lymphoblasts lymphoblast nom +lymphocyte lymphocyte nom +lymphocytes lymphocyte nom +lymphoma lymphoma nom +lymphomas lymphoma nom +lymphs lymph nom +lynch lynch ver +lynched lynch ver +lyncher lyncher nom +lynchers lyncher nom +lynches lynch ver +lynching lynch ver +lynchings lynching nom +lynchpin lynchpin nom +lynchpins lynchpin nom +lynx lynx nom +lyophilize lyophilize ver +lyophilized lyophilize ver +lyophilizes lyophilize ver +lyophilizing lyophilize ver +lyre lyre nom +lyrebird lyrebird nom +lyrebirds lyrebird nom +lyres lyre nom +lyric lyric nom +lyricism lyricism nom +lyricisms lyricism nom +lyricist lyricist nom +lyricists lyricist nom +lyrics lyric nom +lyses lysis nom +lysine lysine nom +lysines lysine nom +lysis lysis nom +m m sw +ma ma nom +mac mac nom +macadam macadam nom +macadamia macadamia nom +macadamias macadamia nom +macadamize macadamize ver +macadamized macadamize ver +macadamizes macadamize ver +macadamizing macadamize ver +macadams macadam nom +macaque macaque nom +macaques macaque nom +macaroni macaroni nom +macaronis macaroni nom +macaroon macaroon nom +macaroons macaroon nom +macaw macaw nom +macaws macaw nom +mace mace nom +macebearer macebearer nom +macebearers macebearer nom +maced mace ver +macedoine macedoine nom +macedoines macedoine nom +macer macer nom +macerate macerate ver +macerated macerate ver +macerates macerate ver +macerating macerate ver +maceration maceration nom +macerations maceration nom +macers macer nom +maces mace nom +machete machete nom +machetes machete nom +machinate machinate ver +machinated machinate ver +machinates machinate ver +machinating machinate ver +machination machination nom +machinations machination nom +machinator machinator nom +machinators machinator nom +machine machine nom +machined machine ver +machineries machinery nom +machinery machinery nom +machines machine nom +machining machine ver +machinist machinist nom +machinists machinist nom +machismo machismo nom +machismos machismo nom +macho macho nom +machos macho nom +macing mace ver +macintosh macintosh nom +macintoshes macintosh nom +mack mack nom +mackerel mackerel nom +mackinaw mackinaw nom +mackinaws mackinaw nom +mackintosh mackintosh nom +mackintoshes mackintosh nom +mackle mackle nom +mackles mackle nom +macks mack nom +macon macon nom +macons macon nom +macrame macrame nom +macramed macrame ver +macrameing macrame ver +macrames macrame nom +macro macro nom +macrobiotic macrobiotic nom +macrobiotics macrobiotic nom +macrocephalies macrocephaly nom +macrocephaly macrocephaly nom +macrocosm macrocosm nom +macrocosms macrocosm nom +macrocyte macrocyte nom +macrocytes macrocyte nom +macrocytoses macrocytosis nom +macrocytosis macrocytosis nom +macromolecule macromolecule nom +macromolecules macromolecule nom +macron macron nom +macrons macron nom +macrophage macrophage nom +macrophages macrophage nom +macros macro nom +macs mac nom +macula macula nom +maculas macula nom +maculate maculate ver +maculated maculate ver +maculates maculate ver +maculating maculate ver +maculation maculation nom +maculations maculation nom +macule macule nom +macules macule nom +macumba macumba nom +macumbas macumba nom +mad mad adj +madam madam nom +madame madame nom +madams madam nom +madcap madcap nom +madcaps madcap nom +madded mad ver +madden madden ver +maddened madden ver +maddening madden ver +maddens madden ver +madder mad adj +madders madder nom +maddest mad adj +madding mad ver +made make sw +mademoiselle mademoiselle nom +mademoiselles mademoiselle nom +madhouse madhouse nom +madhouses madhouse nom +madman madman nom +madmen madman nom +madness madness nom +madnesses madness nom +madras madras nom +madrases madras nom +madrepore madrepore nom +madrepores madrepore nom +madrigal madrigal nom +madrigalist madrigalist nom +madrigalists madrigalist nom +madrigals madrigal nom +madrilene madrilene nom +madrilenes madrilene nom +madrona madrona nom +madronas madrona nom +madrono madrono nom +madronos madrono nom +mads mad ver +madwoman madwoman nom +madwomen madwoman nom +madwort madwort nom +madworts madwort nom +maelstrom maelstrom nom +maelstroms maelstrom nom +maenad maenad nom +maenads maenad nom +maestro maestro nom +maestros maestro nom +maffia maffia nom +maffias maffia nom +maffick maffick ver +mafficked maffick ver +mafficking maffick ver +mafficks maffick ver +mafia mafia nom +mafias mafia nom +mafiosi mafioso nom +mafioso mafioso nom +mag mag nom +magazine magazine nom +magazines magazine nom +magdalen magdalen nom +magdalens magdalen nom +magenta magenta nom +magentas magenta nom +magged mag ver +magging mag ver +maggot maggot nom +maggotier maggoty adj +maggotiest maggoty adj +maggots maggot nom +maggoty maggoty adj +magi magus nom +magic magic nom +magician magician nom +magicians magician nom +magics magic nom +magistracies magistracy nom +magistracy magistracy nom +magistrate magistrate nom +magistrates magistrate nom +magma magma nom +magmas magma nom +magnanimities magnanimity nom +magnanimity magnanimity nom +magnanimousness magnanimousness nom +magnanimousnesses magnanimousness nom +magnate magnate nom +magnates magnate nom +magnesia magnesia nom +magnesias magnesia nom +magnesite magnesite nom +magnesites magnesite nom +magnesium magnesium nom +magnesiums magnesium nom +magnet magnet nom +magnetisation magnetisation nom +magnetisations magnetisation nom +magnetise magnetise ver +magnetised magnetise ver +magnetises magnetise ver +magnetising magnetise ver +magnetism magnetism nom +magnetisms magnetism nom +magnetite magnetite nom +magnetites magnetite nom +magnetization magnetization nom +magnetizations magnetization nom +magnetize magnetize ver +magnetized magnetize ver +magnetizes magnetize ver +magnetizing magnetize ver +magneto magneto nom +magnetometer magnetometer nom +magnetometers magnetometer nom +magneton magneton nom +magnetons magneton nom +magnetos magneto nom +magnetosphere magnetosphere nom +magnetospheres magnetosphere nom +magnetron magnetron nom +magnetrons magnetron nom +magnets magnet nom +magnification magnification nom +magnifications magnification nom +magnificence magnificence nom +magnificences magnificence nom +magnified magnify ver +magnifier magnifier nom +magnifiers magnifier nom +magnifies magnify ver +magnify magnify ver +magnifying magnify ver +magniloquence magniloquence nom +magniloquences magniloquence nom +magnitude magnitude nom +magnitudes magnitude nom +magnolia magnolia nom +magnolias magnolia nom +magnum magnum nom +magnums magnum nom +magpie magpie nom +magpies magpie nom +mags mag nom +maguey maguey nom +magueys maguey nom +magus magus nom +maharaja maharaja nom +maharajah maharajah nom +maharajahs maharajah nom +maharajas maharaja nom +maharanee maharanee nom +maharanees maharanee nom +maharani maharani nom +maharanis maharani nom +maharishi maharishi nom +maharishis maharishi nom +mahatma mahatma nom +mahatmas mahatma nom +mahimahi mahimahi nom +mahimahis mahimahi nom +mahjong mahjong nom +mahjongs mahjong nom +mahlstick mahlstick nom +mahlsticks mahlstick nom +mahoe mahoe nom +mahoes mahoe nom +mahoganies mahogany nom +mahogany mahogany nom +mahout mahout nom +mahouts mahout nom +mahuang mahuang nom +mahuangs mahuang nom +maid maid nom +maiden maiden nom +maidenhair maidenhair nom +maidenhairs maidenhair nom +maidenhead maidenhead nom +maidenheads maidenhead nom +maidenhood maidenhood nom +maidenhoods maidenhood nom +maidenliness maidenliness nom +maidenlinesses maidenliness nom +maidens maiden nom +maidhood maidhood nom +maidhoods maidhood nom +maids maid nom +maidservant maidservant nom +maidservants maidservant nom +maigre maigre nom +maigres maigre nom +mail mail nom +mailbag mailbag nom +mailbags mailbag nom +mailboat mailboat nom +mailboats mailboat nom +mailbox mailbox nom +mailboxes mailbox nom +maildrop maildrop nom +maildrops maildrop nom +mailed mail ver +mailer mailer nom +mailers mailer nom +mailing mail ver +mailings mailing nom +maillot maillot nom +maillots maillot nom +mailman mailman nom +mailmen mailman nom +mails mail nom +maim maim nom +maimed maim ver +maiming maim ver +maimings maiming nom +maims maim nom +main main adj +mained main ver +mainer main adj +mainest main adj +mainframe mainframe nom +mainframes mainframe nom +maining main ver +mainland mainland nom +mainlands mainland nom +mainline mainline ver +mainlined mainline ver +mainlines mainline ver +mainlining mainline ver +mainly mainly sw +mainmast mainmast nom +mainmasts mainmast nom +mains main nom +mainsail mainsail nom +mainsails mainsail nom +mainsheet mainsheet nom +mainsheets mainsheet nom +mainspring mainspring nom +mainsprings mainspring nom +mainstay mainstay nom +mainstays mainstay nom +mainstream mainstream nom +mainstreamed mainstream ver +mainstreaming mainstream ver +mainstreams mainstream nom +maintain maintain ver +maintained maintain ver +maintaining maintain ver +maintains maintain ver +maintenance maintenance nom +maintenances maintenance nom +maintop maintop nom +maintops maintop nom +maiolica maiolica nom +maiolicas maiolica nom +maisonette maisonette nom +maisonettes maisonette nom +maisonnette maisonnette nom +maisonnettes maisonnette nom +maize maize nom +maizes maize nom +majagua majagua nom +majaguas majagua nom +majesties majesty nom +majesty majesty nom +majolica majolica nom +majolicas majolica nom +major major nom +majordomo majordomo nom +majordomos majordomo nom +majored major ver +majorette majorette nom +majorettes majorette nom +majoring major ver +majorities majority nom +majority majority nom +majors major nom +make make sw +makeover makeover nom +makeovers makeover nom +maker maker nom +makereadies makeready nom +makeready makeready nom +makers maker nom +makes make sw +makeshift makeshift nom +makeshifts makeshift nom +makeup makeup nom +makeups makeup nom +makeweight makeweight nom +makeweights makeweight nom +making make sw +makings making nom +mako mako nom +makos mako nom +malabsorption malabsorption nom +malabsorptions malabsorption nom +malacca malacca nom +malaccas malacca nom +malachite malachite nom +malachites malachite nom +malacia malacia nom +malacias malacia nom +maladies malady nom +maladjustment maladjustment nom +maladjustments maladjustment nom +maladroitness maladroitness nom +maladroitnesses maladroitness nom +malady malady nom +malaise malaise nom +malaises malaise nom +malamute malamute nom +malamutes malamute nom +malanga malanga nom +malangas malanga nom +malaprop malaprop nom +malapropism malapropism nom +malapropisms malapropism nom +malaprops malaprop nom +malaria malaria nom +malarias malaria nom +malarkey malarkey nom +malarkeys malarkey nom +malathion malathion nom +malathions malathion nom +malcontent malcontent nom +malcontents malcontent nom +male male nom +maleate maleate nom +maleates maleate nom +maledict maledict ver +maledicted maledict ver +maledicting maledict ver +malediction malediction nom +maledictions malediction nom +maledicts maledict ver +malefaction malefaction nom +malefactions malefaction nom +malefactor malefactor nom +malefactors malefactor nom +maleficence maleficence nom +maleficences maleficence nom +malemute malemute nom +malemutes malemute nom +maleness maleness nom +malenesses maleness nom +males male nom +malevolence malevolence nom +malevolences malevolence nom +malfeasance malfeasance nom +malfeasances malfeasance nom +malfeasant malfeasant nom +malfeasants malfeasant nom +malformation malformation nom +malformations malformation nom +malfunction malfunction nom +malfunctioned malfunction ver +malfunctioning malfunction ver +malfunctions malfunction nom +malice malice nom +malices malice nom +maliciousness maliciousness nom +maliciousnesses maliciousness nom +malign malign ver +malignance malignance nom +malignances malignance nom +malignancies malignancy nom +malignancy malignancy nom +maligned malign ver +maligner maligner nom +maligners maligner nom +maligning malign ver +malignities malignity nom +malignity malignity nom +maligns malign ver +malinger malinger ver +malingered malinger ver +malingerer malingerer nom +malingerers malingerer nom +malingering malinger ver +malingers malinger ver +mall mall nom +mallard mallard nom +mallards mallard nom +malleabilities malleability nom +malleability malleability nom +mallee mallee nom +mallees mallee nom +mallet mallet nom +mallets mallet nom +malleus malleus nom +malleuses malleus nom +mallow mallow nom +mallows mallow nom +malls mall nom +malmsey malmsey nom +malmseys malmsey nom +malnourishment malnourishment nom +malnourishments malnourishment nom +malnutrition malnutrition nom +malnutritions malnutrition nom +malocclusion malocclusion nom +malocclusions malocclusion nom +malodor malodor nom +malodorousness malodorousness nom +malodorousnesses malodorousness nom +malodors malodor nom +malodour malodour nom +malodours malodour nom +malposition malposition nom +malpositions malposition nom +malpractice malpractice nom +malpractices malpractice nom +malt malt nom +malted malt ver +malteds malted nom +maltha maltha nom +malthas maltha nom +maltier malty adj +maltiest malty adj +malting malt ver +maltman maltman nom +maltmen maltman nom +maltose maltose nom +maltoses maltose nom +maltreat maltreat ver +maltreated maltreat ver +maltreating maltreat ver +maltreatment maltreatment nom +maltreatments maltreatment nom +maltreats maltreat ver +malts malt nom +maltster maltster nom +maltsters maltster nom +malty malty adj +malvasia malvasia nom +malvasias malvasia nom +malversation malversation nom +malversations malversation nom +mama mama nom +mamas mama nom +mamba mamba nom +mambas mamba nom +mambo mambo nom +mamboed mambo ver +mamboing mambo ver +mambos mambo nom +mamey mamey nom +mameys mamey nom +mamilla mamilla nom +mamillae mamilla nom +mamma mamma nom +mammae mamma nom +mammal mammal nom +mammalian mammalian nom +mammalians mammalian nom +mammalogies mammalogy nom +mammalogy mammalogy nom +mammals mammal nom +mammas mamma nom +mammee mammee nom +mammees mammee nom +mammies mammy nom +mammilla mammilla nom +mammillae mammilla nom +mammogram mammogram nom +mammograms mammogram nom +mammographies mammography nom +mammography mammography nom +mammon mammon nom +mammons mammon nom +mammoth mammoth nom +mammoths mammoth nom +mammy mammy nom +man man nom +manacle manacle nom +manacled manacle ver +manacles manacle nom +manacling manacle ver +manage manage ver +manageabilities manageability nom +manageability manageability nom +manageableness manageableness nom +manageablenesses manageableness nom +managed manage ver +management management nom +managements management nom +manager manager nom +manageress manageress nom +manageresses manageress nom +managers manager nom +managership managership nom +managerships managership nom +manages manage ver +managing manage ver +manakin manakin nom +manakins manakin nom +manana manana nom +mananas manana nom +manatee manatee nom +manatees manatee nom +mandala mandala nom +mandalas mandala nom +mandamus mandamus nom +mandamused mandamus ver +mandamuses mandamus nom +mandamusing mandamus ver +mandarin mandarin nom +mandarins mandarin nom +mandataries mandatary nom +mandatary mandatary nom +mandate mandate nom +mandated mandate ver +mandates mandate nom +mandating mandate ver +mandatories mandatory nom +mandatory mandatory nom +mandible mandible nom +mandibles mandible nom +mandioca mandioca nom +mandiocas mandioca nom +mandola mandola nom +mandolas mandola nom +mandolin mandolin nom +mandolins mandolin nom +mandrake mandrake nom +mandrakes mandrake nom +mandrel mandrel nom +mandrels mandrel nom +mandril mandril nom +mandrill mandrill nom +mandrills mandrill nom +mandrils mandril nom +manducate manducate ver +manducated manducate ver +manducates manducate ver +manducating manducate ver +mane mane nom +manege manege nom +maneges manege nom +manes mane nom +maneuver maneuver nom +maneuverabilities maneuverability nom +maneuverability maneuverability nom +maneuvered maneuver ver +maneuverer maneuverer nom +maneuverers maneuverer nom +maneuvering maneuver ver +maneuvers maneuver nom +manfulness manfulness nom +manfulnesses manfulness nom +mangabey mangabey nom +mangabeys mangabey nom +manganate manganate nom +manganates manganate nom +manganese manganese nom +manganeses manganese nom +manganite manganite nom +manganites manganite nom +mange mange nom +manger manger nom +mangers manger nom +manges mange nom +mangey mangey adj +mangier mangey adj +mangiest mangey adj +manginess manginess nom +manginesses manginess nom +mangle mangle nom +mangled mangle ver +mangles mangle nom +mangling mangle ver +mango mango nom +mangoes mango nom +mangold mangold nom +mangolds mangold nom +mangosteen mangosteen nom +mangosteens mangosteen nom +mangrove mangrove nom +mangroves mangrove nom +mangy mangy adj +manhandle manhandle ver +manhandled manhandle ver +manhandles manhandle ver +manhandling manhandle ver +manhattan manhattan nom +manhattans manhattan nom +manhole manhole nom +manholes manhole nom +manhood manhood nom +manhoods manhood nom +manhunt manhunt nom +manhunts manhunt nom +mania mania nom +maniac maniac nom +maniacs maniac nom +manias mania nom +manic manic nom +manicotti manicotti nom +manicottis manicotti nom +manics manic nom +manicure manicure nom +manicured manicure ver +manicures manicure nom +manicuring manicure ver +manicurist manicurist nom +manicurists manicurist nom +manifest manifest nom +manifestation manifestation nom +manifestations manifestation nom +manifested manifest ver +manifesting manifest ver +manifesto manifesto nom +manifestos manifesto nom +manifests manifest nom +manifold manifold nom +manifolded manifold ver +manifolding manifold ver +manifolds manifold nom +manikin manikin nom +manikins manikin nom +manila manila nom +manilas manila nom +manilla manilla nom +manillas manilla nom +manioc manioc nom +manioca manioca nom +maniocas manioca nom +maniocs manioc nom +manipulabilities manipulability nom +manipulability manipulability nom +manipulate manipulate ver +manipulated manipulate ver +manipulates manipulate ver +manipulating manipulate ver +manipulation manipulation nom +manipulations manipulation nom +manipulator manipulator nom +manipulators manipulator nom +manlier manly adj +manliest manly adj +manliness manliness nom +manlinesses manliness nom +manly manly adj +manna manna nom +mannas manna nom +manned man ver +mannequin mannequin nom +mannequins mannequin nom +manner manner nom +mannerism mannerism nom +mannerisms mannerism nom +manners manner nom +mannikin mannikin nom +mannikins mannikin nom +manning man ver +mannishness mannishness nom +mannishnesses mannishness nom +mannitol mannitol nom +mannitols mannitol nom +manoeuvre manoeuvre nom +manoeuvred manoeuvre ver +manoeuvres manoeuvre nom +manoeuvring manoeuvre ver +manometer manometer nom +manometers manometer nom +manor manor nom +manors manor nom +manpower manpower nom +manpowers manpower nom +mans man ver +mansard mansard nom +mansards mansard nom +manse manse nom +manservant manservant nom +manses manse nom +mansion mansion nom +mansions mansion nom +manslaughter manslaughter nom +manslaughters manslaughter nom +manta manta nom +mantas manta nom +mantel mantel nom +mantelet mantelet nom +mantelets mantelet nom +mantelpiece mantelpiece nom +mantelpieces mantelpiece nom +mantels mantel nom +manticore manticore nom +manticores manticore nom +mantid mantid nom +mantids mantid nom +mantilla mantilla nom +mantillas mantilla nom +mantis mantis nom +mantises mantis nom +mantissa mantissa nom +mantissas mantissa nom +mantle mantle nom +mantled mantle ver +mantlepiece mantlepiece nom +mantlepieces mantlepiece nom +mantles mantle nom +mantlet mantlet nom +mantlets mantlet nom +mantling mantle ver +mantra mantra nom +mantrap mantrap nom +mantraps mantrap nom +mantras mantra nom +mantua mantua nom +mantuas mantua nom +manual manual nom +manuals manual nom +manubrium manubrium nom +manubriums manubrium nom +manufactories manufactory nom +manufactory manufactory nom +manufacture manufacture nom +manufactured manufacture ver +manufacturer manufacturer nom +manufacturers manufacturer nom +manufactures manufacture nom +manufacturing manufacture ver +manufacturings manufacturing nom +manul manul nom +manuls manul nom +manumission manumission nom +manumissions manumission nom +manumit manumit ver +manumits manumit ver +manumitted manumit ver +manumitter manumitter nom +manumitters manumitter nom +manumitting manumit ver +manure manure nom +manured manure ver +manures manure nom +manuring manure ver +manus manus nom +manuscript manuscript nom +manuscripts manuscript nom +manuses manus nom +many many sw +manzanita manzanita nom +manzanitas manzanita nom +map map nom +maple maple nom +maples maple nom +mapmaker mapmaker nom +mapmakers mapmaker nom +mapmaking mapmaking nom +mapmakings mapmaking nom +mapped map ver +mapper mapper nom +mappers mapper nom +mapping map ver +mappings mapping nom +maps map nom +maquiladora maquiladora nom +maquiladoras maquiladora nom +mar mar ver +mara marum nom +marabou marabou nom +marabous marabou nom +marabout marabout nom +marabouts marabout nom +maraca maraca nom +maracas maraca nom +maranta maranta nom +marantas maranta nom +maras mara nom +marasca marasca nom +marascas marasca nom +maraschino maraschino nom +maraschinos maraschino nom +marasmus marasmus nom +marasmuses marasmus nom +marathon marathon nom +marathoner marathoner nom +marathoners marathoner nom +marathons marathon nom +maraud maraud nom +marauded maraud ver +marauder marauder nom +marauders marauder nom +marauding maraud ver +marauds maraud nom +marble marble nom +marbled marble ver +marbleize marbleize ver +marbleized marbleize ver +marbleizes marbleize ver +marbleizing marbleize ver +marbles marble nom +marblewood marblewood nom +marblewoods marblewood nom +marbling marble ver +marblings marbling nom +marc marc nom +marcel marcel ver +marcelled marcel ver +marcelling marcel ver +marcels marcel ver +march march nom +marched march ver +marcher marcher nom +marchers marcher nom +marches march nom +marching march ver +marchioness marchioness nom +marchionesses marchioness nom +marchland marchland nom +marchlands marchland nom +marchpane marchpane nom +marchpanes marchpane nom +marcs marc nom +mare mare nom +mares mare nom +margarin margarin nom +margarine margarine nom +margarines margarine nom +margarins margarin nom +margarita margarita nom +margaritas margarita nom +margay margay nom +margays margay nom +marge marge nom +marges marge nom +margin margin nom +marginalities marginality nom +marginality marginality nom +marginalize marginalize ver +marginalized marginalize ver +marginalizes marginalize ver +marginalizing marginalize ver +margined margin ver +margining margin ver +margins margin nom +margosa margosa nom +margosas margosa nom +margrave margrave nom +margraves margrave nom +marguerite marguerite nom +marguerites marguerite nom +mariachi mariachi nom +mariachis mariachi nom +marigold marigold nom +marigolds marigold nom +marihuana marihuana nom +marihuanas marihuana nom +marijuana marijuana nom +marijuanas marijuana nom +marimba marimba nom +marimbas marimba nom +marina marina nom +marinade marinade nom +marinaded marinade ver +marinades marinade nom +marinading marinade ver +marinara marinara nom +marinaras marinara nom +marinas marina nom +marinate marinate ver +marinated marinate ver +marinates marinate ver +marinating marinate ver +marination marination nom +marinations marination nom +marine marine nom +mariner mariner nom +mariners mariner nom +marines marine nom +marionette marionette nom +marionettes marionette nom +mariposa mariposa nom +mariposas mariposa nom +marjoram marjoram nom +marjorams marjoram nom +mark mark nom +markdown markdown nom +markdowns markdown nom +marked mark ver +marker marker nom +markers marker nom +market market nom +marketabilities marketability nom +marketability marketability nom +marketed market ver +marketeer marketeer nom +marketeers marketeer nom +marketer marketer nom +marketers marketer nom +marketing market ver +marketings marketing nom +marketplace marketplace nom +marketplaces marketplace nom +markets market nom +markhoor markhoor nom +markhoors markhoor nom +markhor markhor nom +markhors markhor nom +marking mark ver +markings marking nom +markka markka nom +markkaa markka nom +marks mark nom +marksman marksman nom +marksmanship marksmanship nom +marksmanships marksmanship nom +marksmen marksman nom +markup markup nom +markups markup nom +marl marl nom +marled marl ver +marlin marlin nom +marline marline nom +marlines marline nom +marlinespike marlinespike nom +marlinespikes marlinespike nom +marling marl ver +marlinspike marlinspike nom +marlinspikes marlinspike nom +marls marl nom +marmalade marmalade nom +marmalades marmalade nom +marmite marmite nom +marmites marmite nom +marmoset marmoset nom +marmosets marmoset nom +marmot marmot nom +marmots marmot nom +marocain marocain nom +marocains marocain nom +maroon maroon nom +marooned maroon ver +marooning maroon ver +maroons maroon nom +marque marque nom +marquee marquee nom +marquees marquee nom +marques marque nom +marquess marquess nom +marquesses marquess nom +marqueterie marqueterie nom +marqueteries marqueterie nom +marquetries marquetry nom +marquetry marquetry nom +marquis marquis nom +marquise marquise nom +marquises marquis nom +marquisette marquisette nom +marquisettes marquisette nom +marred mar ver +marri marri nom +marriage marriage nom +marriageabilities marriageability nom +marriageability marriageability nom +marriages marriage nom +married marry ver +marrieds married nom +marries marri nom +marring mar ver +marrow marrow nom +marrowbone marrowbone nom +marrowbones marrowbone nom +marrows marrow nom +marry marry ver +marrying marry ver +mars mar ver +marsh marsh nom +marshal marshal nom +marshaled marshal ver +marshaling marshal ver +marshall marshall nom +marshalls marshall nom +marshals marshal nom +marshalship marshalship nom +marshalships marshalship nom +marshes marsh nom +marshier marshy adj +marshiest marshy adj +marshland marshland nom +marshlands marshland nom +marshmallow marshmallow nom +marshmallows marshmallow nom +marshy marshy adj +marsupia marsupium nom +marsupial marsupial nom +marsupials marsupial nom +marsupium marsupium nom +mart mart nom +martagon martagon nom +martagons martagon nom +marten marten nom +martens marten nom +martensite martensite nom +martensites martensite nom +martin martin nom +martinet martinet nom +martinets martinet nom +martingale martingale nom +martingales martingale nom +martini martini nom +martinis martini nom +martins martin nom +marts mart nom +martyr martyr nom +martyrdom martyrdom nom +martyrdoms martyrdom nom +martyred martyr ver +martyring martyr ver +martyrize martyrize ver +martyrized martyrize ver +martyrizes martyrize ver +martyrizing martyrize ver +martyrs martyr nom +marum marum nom +marvel marvel nom +marveled marvel ver +marveling marvel ver +marvels marvel nom +marzipan marzipan nom +marzipans marzipan nom +mas ma nom +mascara mascara nom +mascaraed mascara ver +mascaraing mascara ver +mascaras mascara nom +mascot mascot nom +mascots mascot nom +masculine masculine nom +masculines masculine nom +masculinities masculinity nom +masculinity masculinity nom +masculinization masculinization nom +masculinizations masculinization nom +maser maser nom +masers maser nom +mash mash nom +mashed mash ver +masher masher nom +mashers masher nom +mashes mash nom +mashie mashie nom +mashies mashie nom +mashing mash ver +masjid masjid nom +masjids masjid nom +mask mask nom +masked mask ver +masker masker nom +maskers masker nom +masking mask ver +maskings masking nom +masks mask nom +masochism masochism nom +masochisms masochism nom +masochist masochist nom +masochists masochist nom +mason mason nom +masoned mason ver +masoning mason ver +masonries masonry nom +masonry masonry nom +masons mason nom +masque masque nom +masquerade masquerade nom +masqueraded masquerade ver +masquerader masquerader nom +masqueraders masquerader nom +masquerades masquerade nom +masquerading masquerade ver +masques masque nom +mass mass nom +massacre massacre nom +massacred massacre ver +massacres massacre nom +massacring massacre ver +massage massage nom +massaged massage ver +massager massager nom +massagers massager nom +massages massage nom +massaging massage ver +massasauga massasauga nom +massasaugas massasauga nom +masse masse nom +massed mass ver +masses mass nom +masseur masseur nom +masseurs masseur nom +masseuse masseuse nom +masseuses masseuse nom +massif massif nom +massifs massif nom +massing mass ver +massiveness massiveness nom +massivenesses massiveness nom +mast mast nom +mastectomies mastectomy nom +mastectomy mastectomy nom +masted mast ver +master master nom +mastered master ver +masteries mastery nom +mastering master ver +masterings mastering nom +mastermind mastermind nom +masterminded mastermind ver +masterminding mastermind ver +masterminds mastermind nom +masterpiece masterpiece nom +masterpieces masterpiece nom +masters master nom +mastership mastership nom +masterships mastership nom +masterstroke masterstroke nom +masterstrokes masterstroke nom +masterwork masterwork nom +masterworks masterwork nom +mastery mastery nom +masthead masthead nom +mastheaded masthead ver +mastheading masthead ver +mastheads masthead nom +mastic mastic nom +masticate masticate ver +masticated masticate ver +masticates masticate ver +masticating masticate ver +mastication mastication nom +mastications mastication nom +mastics mastic nom +mastiff mastiff nom +mastiffs mastiff nom +mastigophoran mastigophoran nom +mastigophorans mastigophoran nom +masting mast ver +mastitides mastitis nom +mastitis mastitis nom +mastodon mastodon nom +mastodons mastodon nom +mastodont mastodont nom +mastodonts mastodont nom +mastoid mastoid nom +mastoidectomies mastoidectomy nom +mastoidectomy mastoidectomy nom +mastoiditides mastoiditis nom +mastoiditis mastoiditis nom +mastoids mastoid nom +masts mast nom +masturbate masturbate ver +masturbated masturbate ver +masturbates masturbate ver +masturbating masturbate ver +masturbation masturbation nom +masturbations masturbation nom +masturbator masturbator nom +masturbators masturbator nom +mat mat nom +matador matador nom +matadors matador nom +matai matai nom +matais matai nom +match match nom +matchboard matchboard nom +matchboards matchboard nom +matchbook matchbook nom +matchbooks matchbook nom +matchbox matchbox nom +matchboxes matchbox nom +matched match ver +matches match nom +matchet matchet nom +matchets matchet nom +matching match ver +matchlock matchlock nom +matchlocks matchlock nom +matchmaker matchmaker nom +matchmakers matchmaker nom +matchmaking matchmaking nom +matchmakings matchmaking nom +matchstick matchstick nom +matchsticks matchstick nom +matchwood matchwood nom +matchwoods matchwood nom +mate mate nom +mated mate ver +matelote matelote nom +matelotes matelote nom +mater mater nom +material material nom +materialisation materialisation nom +materialisations materialisation nom +materialise materialise ver +materialised materialise ver +materialises materialise ver +materialising materialise ver +materialism materialism nom +materialisms materialism nom +materialist materialist nom +materialists materialist nom +materialities materiality nom +materiality materiality nom +materialization materialization nom +materializations materialization nom +materialize materialize ver +materialized materialize ver +materializes materialize ver +materializing materialize ver +materials material nom +materiel materiel nom +materiels materiel nom +maternities maternity nom +maternity maternity nom +maters mater nom +mates mate nom +matey matey adj +math math nom +mathematician mathematician nom +mathematicians mathematician nom +maths math nom +matier matey adj +matiest matey adj +matinee matinee nom +matinees matinee nom +mating mate ver +matings mating nom +matriarch matriarch nom +matriarchate matriarchate nom +matriarchates matriarchate nom +matriarchies matriarchy nom +matriarchs matriarch nom +matriarchy matriarchy nom +matric matric nom +matrices matrix nom +matricide matricide nom +matricides matricide nom +matrics matric nom +matriculate matriculate nom +matriculated matriculate ver +matriculates matriculate nom +matriculating matriculate ver +matriculation matriculation nom +matriculations matriculation nom +matrilineage matrilineage nom +matrilineages matrilineage nom +matrimonies matrimony nom +matrimony matrimony nom +matrix matrix nom +matron matron nom +matrons matron nom +matronymic matronymic nom +matronymics matronymic nom +mats mat nom +matt matt nom +matte matte nom +matted mat ver +matter matter nom +mattered matter ver +mattering matter ver +matters matter nom +mattes matte nom +matting mat ver +mattings matting nom +mattock mattock nom +mattocks mattock nom +mattress mattress nom +mattresses mattress nom +matts matt nom +maturate maturate ver +maturated maturate ver +maturates maturate ver +maturating maturate ver +maturation maturation nom +maturations maturation nom +mature mature adj +matured mature ver +matureness matureness nom +maturenesses matureness nom +maturer mature adj +matures mature ver +maturest mature adj +maturing mature ver +maturities maturity nom +maturity maturity nom +matzah matzah nom +matzahs matzah nom +matzo matzo nom +matzoh matzoh nom +matzohs matzoh nom +matzoth matzo nom +maul maul nom +mauled maul ver +mauler mauler nom +maulers mauler nom +mauling maul ver +mauls maul nom +maulstick maulstick nom +maulsticks maulstick nom +maund maund nom +maunder maunder ver +maundered maunder ver +maundering maunder ver +maunders maunder ver +maunds maund nom +mausoleum mausoleum nom +mausoleums mausoleum nom +mauve mauve adj +mauver mauve adj +mauves mauve nom +mauvest mauve adj +maven maven nom +mavens maven nom +maverick maverick nom +mavericks maverick nom +mavin mavin nom +mavins mavin nom +mavis mavis nom +mavises mavis nom +maw maw nom +mawkishness mawkishness nom +mawkishnesses mawkishness nom +maws maw nom +max max nom +maxed max ver +maxes max nom +maxi maxi nom +maxilla maxilla nom +maxillae maxilla nom +maxillaries maxillary nom +maxillary maxillary nom +maxim maxim nom +maximisation maximisation nom +maximisations maximisation nom +maximization maximization nom +maximizations maximization nom +maximize maximize ver +maximized maximize ver +maximizes maximize ver +maximizing maximize ver +maxims maxim nom +maximum maximum nom +maximums maximum nom +maxing max ver +maxis maxi nom +maxwell maxwell nom +maxwells maxwell nom +may may sw +mayapple mayapple nom +mayapples mayapple nom +maybe maybe sw +maybes maybe nom +mayday mayday nom +maydays mayday nom +mayfish mayfish nom +mayflies mayfly nom +mayflower mayflower nom +mayflowers mayflower nom +mayfly mayfly nom +mayhem mayhem nom +mayhems mayhem nom +mayo mayo nom +mayonnaise mayonnaise nom +mayonnaises mayonnaise nom +mayor mayor nom +mayoralties mayoralty nom +mayoralty mayoralty nom +mayoress mayoress nom +mayoresses mayoress nom +mayors mayor nom +mayos mayo nom +maypole maypole nom +maypoles maypole nom +maypop maypop nom +maypops maypop nom +mays may nom +mayweed mayweed nom +mayweeds mayweed nom +maze maze nom +mazed maze ver +mazer mazer nom +mazers mazer nom +mazes maze nom +mazier mazy adj +maziest mazy adj +mazing maze ver +mazourka mazourka nom +mazourkas mazourka nom +mazurka mazurka nom +mazurkas mazurka nom +mazy mazy adj +mazzard mazzard nom +mazzards mazzard nom +me me sw +mead mead nom +meadow meadow nom +meadowlark meadowlark nom +meadowlarks meadowlark nom +meadows meadow nom +meads mead nom +meager meager adj +meagerer meager adj +meagerest meager adj +meagerness meagerness nom +meagernesses meagerness nom +meagre meagre adj +meagrer meagre adj +meagres meagre nom +meagrest meagre adj +meal meal nom +mealie mealie nom +mealier mealy adj +mealies mealie nom +mealiest mealy adj +mealiness mealiness nom +mealinesses mealiness nom +meals meal nom +mealtime mealtime nom +mealtimes mealtime nom +mealworm mealworm nom +mealworms mealworm nom +mealy mealy adj +mealybug mealybug nom +mealybugs mealybug nom +mean mean sw +meander meander nom +meandered meander ver +meandering meander ver +meanders meander nom +meaner mean adj +meanest mean adj +meanie meanie nom +meanies meanie nom +meaning mean ver +meaningfulness meaningfulness nom +meaningfulnesses meaningfulness nom +meaninglessness meaninglessness nom +meaninglessnesses meaninglessness nom +meanings meaning nom +meanness meanness nom +meannesses meanness nom +means mean nom +meant mean ver +meantime meantime nom +meantimes meantime nom +meanwhile meanwhile sw +meanwhiles meanwhile nom +meany meany nom +measlier measly adj +measliest measly adj +measly measly adj +measurabilities measurability nom +measurability measurability nom +measure measure nom +measured measure ver +measurement measurement nom +measurements measurement nom +measures measure nom +measuring measure ver +measurings measuring nom +meat meat nom +meatball meatball nom +meatballs meatball nom +meatier meaty adj +meatiest meaty adj +meatiness meatiness nom +meatinesses meatiness nom +meatloaf meatloaf nom +meatloaves meatloaf nom +meatman meatman nom +meatmen meatman nom +meatpacking meatpacking nom +meatpackings meatpacking nom +meats meat nom +meatus meatus nom +meatuses meatus nom +meaty meaty adj +mecca mecca nom +meccas mecca nom +mechanic mechanic nom +mechanical mechanical nom +mechanicals mechanical nom +mechanics mechanic nom +mechanisation mechanisation nom +mechanisations mechanisation nom +mechanism mechanism nom +mechanisms mechanism nom +mechanization mechanization nom +mechanizations mechanization nom +mechanize mechanize ver +mechanized mechanize ver +mechanizes mechanize ver +mechanizing mechanize ver +meclizine meclizine nom +meclizines meclizine nom +meconium meconium nom +meconiums meconium nom +medal medal nom +medaled medal ver +medaling medal ver +medalist medalist nom +medalists medalist nom +medallion medallion nom +medallions medallion nom +medallist medallist nom +medallists medallist nom +medals medal nom +meddle meddle ver +meddled meddle ver +meddler meddler nom +meddlers meddler nom +meddles meddle ver +meddlesomeness meddlesomeness nom +meddlesomenesses meddlesomeness nom +meddling meddle ver +medflies medfly nom +medfly medfly nom +media medium nom +mediacies mediacy nom +mediacy mediacy nom +mediaeval mediaeval nom +mediaevals mediaeval nom +medial medial nom +medials medial nom +median median nom +medians median nom +mediant mediant nom +mediants mediant nom +medias media nom +mediastina mediastinum nom +mediastinum mediastinum nom +mediate mediate ver +mediated mediate ver +mediateness mediateness nom +mediatenesses mediateness nom +mediates mediate ver +mediating mediate ver +mediation mediation nom +mediations mediation nom +mediator mediator nom +mediators mediator nom +medic medic nom +medical medical nom +medicals medical nom +medicament medicament nom +medicaments medicament nom +medicate medicate ver +medicated medicate ver +medicates medicate ver +medicating medicate ver +medication medication nom +medications medication nom +medicine medicine nom +medicined medicine ver +medicines medicine nom +medicining medicine ver +medick medick nom +medicks medick nom +medico medico nom +medicos medico nom +medics medic nom +medieval medieval nom +medievalist medievalist nom +medievalists medievalist nom +medievals medieval nom +mediocrities mediocrity nom +mediocrity mediocrity nom +meditate meditate ver +meditated meditate ver +meditates meditate ver +meditating meditate ver +meditation meditation nom +meditations meditation nom +meditativeness meditativeness nom +meditativenesses meditativeness nom +medium medium nom +mediums medium nom +medlar medlar nom +medlars medlar nom +medley medley nom +medleys medley nom +medulla medulla nom +medullas medulla nom +medusa medusa nom +medusan medusan nom +medusans medusan nom +medusas medusa nom +meed meed nom +meeds meed nom +meek meek adj +meeker meek adj +meekest meek adj +meekness meekness nom +meeknesses meekness nom +meerkat meerkat nom +meerkats meerkat nom +meerschaum meerschaum nom +meerschaums meerschaum nom +meet meet adj +meeter meet adj +meetest meet adj +meeting meet ver +meetinghouse meetinghouse nom +meetinghouses meetinghouse nom +meetings meeting nom +meets meet nom +meg meg nom +megabit megabit nom +megabits megabit nom +megabyte megabyte nom +megabytes megabyte nom +megacephalies megacephaly nom +megacephaly megacephaly nom +megacycle megacycle nom +megacycles megacycle nom +megadeath megadeath nom +megadeaths megadeath nom +megahertz megahertz nom +megakaryocyte megakaryocyte nom +megakaryocytes megakaryocyte nom +megalith megalith nom +megaliths megalith nom +megaloblast megaloblast nom +megaloblasts megaloblast nom +megalocardia megalocardia nom +megalocardias megalocardia nom +megalocephalies megalocephaly nom +megalocephaly megalocephaly nom +megalomania megalomania nom +megalomaniac megalomaniac nom +megalomaniacs megalomaniac nom +megalomanias megalomania nom +megalopolis megalopolis nom +megalopolises megalopolis nom +megalosaur megalosaur nom +megalosaurs megalosaur nom +megalosaurus megalosaurus nom +megalosauruses megalosaurus nom +megaphone megaphone nom +megaphoned megaphone ver +megaphones megaphone nom +megaphoning megaphone ver +megapode megapode nom +megapodes megapode nom +megaspore megaspore nom +megaspores megaspore nom +megathere megathere nom +megatheres megathere nom +megaton megaton nom +megatons megaton nom +megawatt megawatt nom +megawatts megawatt nom +megilp megilp nom +megilps megilp nom +megohm megohm nom +megohms megohm nom +megrim megrim nom +megrims megrim nom +megs meg nom +meioses meiosis nom +meiosis meiosis nom +melamine melamine nom +melamines melamine nom +melancholia melancholia nom +melancholiac melancholiac nom +melancholiacs melancholiac nom +melancholias melancholia nom +melancholic melancholic nom +melancholics melancholic nom +melancholies melancholy nom +melancholy melancholy nom +melange melange nom +melanges melange nom +melanin melanin nom +melanins melanin nom +melanism melanism nom +melanisms melanism nom +melanize melanize ver +melanized melanize ver +melanizes melanize ver +melanizing melanize ver +melanoblast melanoblast nom +melanoblasts melanoblast nom +melanocyte melanocyte nom +melanocytes melanocyte nom +melanoma melanoma nom +melanomas melanoma nom +melanoses melanosis nom +melanosis melanosis nom +melatonin melatonin nom +melatonins melatonin nom +meld meld nom +melded meld ver +melding meld ver +melds meld nom +melee melee nom +melees melee nom +melena melena nom +melenas melena nom +melilot melilot nom +melilots melilot nom +meliorate meliorate ver +meliorated meliorate ver +meliorates meliorate ver +meliorating meliorate ver +melioration melioration nom +meliorations melioration nom +meliorism meliorism nom +meliorisms meliorism nom +meliorist meliorist nom +meliorists meliorist nom +mellifluousness mellifluousness nom +mellifluousnesses mellifluousness nom +mellow mellow adj +mellowed mellow ver +mellower mellow adj +mellowest mellow adj +mellowing mellow ver +mellowness mellowness nom +mellownesses mellowness nom +mellows mellow ver +melodies melody nom +melodiousness melodiousness nom +melodiousnesses melodiousness nom +melodize melodize ver +melodized melodize ver +melodizes melodize ver +melodizing melodize ver +melodrama melodrama nom +melodramas melodrama nom +melody melody nom +meloid meloid nom +meloids meloid nom +melon melon nom +melons melon nom +melphalan melphalan nom +melphalans melphalan nom +melt melt nom +meltdown meltdown nom +meltdowns meltdown nom +melted melt ver +melting melt ver +meltings melting nom +melts melt nom +mem mem nom +member member nom +members member nom +membership membership nom +memberships membership nom +membrane membrane nom +membranes membrane nom +memento memento nom +mementos memento nom +memo memo nom +memoir memoir nom +memoirs memoir nom +memorabilities memorability nom +memorability memorability nom +memorandum memorandum nom +memorandums memorandum nom +memorial memorial nom +memorialization memorialization nom +memorializations memorialization nom +memorialize memorialize ver +memorialized memorialize ver +memorializes memorialize ver +memorializing memorialize ver +memorials memorial nom +memories memory nom +memorization memorization nom +memorizations memorization nom +memorize memorize ver +memorized memorize ver +memorizer memorizer nom +memorizers memorizer nom +memorizes memorize ver +memorizing memorize ver +memory memory nom +memos memo nom +mems mem nom +memsahib memsahib nom +memsahibs memsahib nom +men man nom +menace menace nom +menaced menace ver +menaces menace nom +menacing menace ver +menadione menadione nom +menadiones menadione nom +menage menage nom +menagerie menagerie nom +menageries menagerie nom +menages menage nom +menarche menarche nom +menarches menarche nom +mend mend nom +mendacities mendacity nom +mendacity mendacity nom +mended mend ver +mendelevium mendelevium nom +mendeleviums mendelevium nom +mender mender nom +menders mender nom +mendicancies mendicancy nom +mendicancy mendicancy nom +mendicant mendicant nom +mendicants mendicant nom +mending mend ver +mendings mending nom +mends mend nom +menfolk menfolk nom +menfolks menfolk nom +menhaden menhaden nom +menhir menhir nom +menhirs menhir nom +menial menial nom +menials menial nom +meninges meninx nom +meningioma meningioma nom +meningiomas meningioma nom +meningitides meningitis nom +meningitis meningitis nom +meninx meninx nom +menisci meniscus nom +meniscus meniscus nom +menopause menopause nom +menopauses menopause nom +menorah menorah nom +menorahs menorah nom +menorrhagia menorrhagia nom +menorrhagias menorrhagia nom +menorrhea menorrhea nom +menorrheas menorrhea nom +mensch mensch nom +mensches mensch nom +menservants manservant nom +menstruate menstruate ver +menstruated menstruate ver +menstruates menstruate ver +menstruating menstruate ver +menstruation menstruation nom +menstruations menstruation nom +mensuration mensuration nom +mensurations mensuration nom +menswear menswear nom +menswears menswear nom +mentalism mentalism nom +mentalisms mentalism nom +mentalist mentalist nom +mentalists mentalist nom +mentalities mentality nom +mentality mentality nom +mentation mentation nom +mentations mentation nom +menthol menthol nom +menthols menthol nom +mention mention nom +mentioned mention ver +mentioning mention ver +mentions mention nom +mentor mentor nom +mentored mentor ver +mentoring mentor ver +mentors mentor nom +mentum mentum nom +mentums mentum nom +menu menu nom +menus menu nom +meow meow nom +meowed meow ver +meowing meow ver +meows meow nom +meperidine meperidine nom +meperidines meperidine nom +meprobamate meprobamate nom +meprobamates meprobamate nom +mercantilism mercantilism nom +mercantilisms mercantilism nom +mercaptopurine mercaptopurine nom +mercaptopurines mercaptopurine nom +mercenaries mercenary nom +mercenary mercenary nom +mercer mercer nom +mercerize mercerize ver +mercerized mercerize ver +mercerizes mercerize ver +mercerizing mercerize ver +mercers mercer nom +merchandise merchandise nom +merchandised merchandise ver +merchandiser merchandiser nom +merchandisers merchandiser nom +merchandises merchandise nom +merchandising merchandise ver +merchandisings merchandising nom +merchandize merchandize ver +merchandized merchandize ver +merchandizes merchandize ver +merchandizing merchandize ver +merchant merchant nom +merchantman merchantman nom +merchantmen merchantman nom +merchants merchant nom +mercies mercy nom +mercifulness mercifulness nom +mercifulnesses mercifulness nom +mercilessness mercilessness nom +mercilessnesses mercilessness nom +mercurial mercurial nom +mercurials mercurial nom +mercuries mercury nom +mercury mercury nom +mercy mercy nom +mere mere adj +merely merely sw +merer mere adj +meres mere nom +merest mere adj +merestone merestone nom +merestones merestone nom +meretriciousness meretriciousness nom +meretriciousnesses meretriciousness nom +merganser merganser nom +mergansers merganser nom +merge merge ver +merged merge ver +merger merger nom +mergers merger nom +merges merge ver +merging merge ver +mergings merging nom +meridian meridian nom +meridians meridian nom +meringue meringue nom +meringued meringue ver +meringues meringue nom +meringuing meringue ver +merino merino nom +merinos merino nom +meristem meristem nom +meristems meristem nom +merit merit nom +merited merit ver +meriting merit ver +meritocracies meritocracy nom +meritocracy meritocracy nom +meritoriousness meritoriousness nom +meritoriousnesses meritoriousness nom +merits merit nom +merl merl nom +merle merle nom +merles merle nom +merlin merlin nom +merlins merlin nom +merls merl nom +mermaid mermaid nom +mermaids mermaid nom +merman merman nom +mermen merman nom +merozoite merozoite nom +merozoites merozoite nom +merrier merry adj +merriest merry adj +merriment merriment nom +merriments merriment nom +merriness merriness nom +merrinesses merriness nom +merry merry adj +merrymaker merrymaker nom +merrymakers merrymaker nom +merrymaking merrymaking nom +merrymakings merrymaking nom +mes me nom +mesa mesa nom +mesalliance mesalliance nom +mesalliances mesalliance nom +mesas mesa nom +mescal mescal nom +mescaline mescaline nom +mescalines mescaline nom +mescals mescal nom +mesdames madam nom +mesencephalon mesencephalon nom +mesencephalons mesencephalon nom +mesenchyme mesenchyme nom +mesenchymes mesenchyme nom +mesenteries mesentery nom +mesentery mesentery nom +mesh mesh nom +meshed mesh ver +meshes mesh nom +meshing mesh ver +meshings meshing nom +meshwork meshwork nom +meshworks meshwork nom +mesmerism mesmerism nom +mesmerisms mesmerism nom +mesmerist mesmerist nom +mesmerists mesmerist nom +mesmerize mesmerize ver +mesmerized mesmerize ver +mesmerizer mesmerizer nom +mesmerizers mesmerizer nom +mesmerizes mesmerize ver +mesmerizing mesmerize ver +mesoblast mesoblast nom +mesoblasts mesoblast nom +mesoderm mesoderm nom +mesoderms mesoderm nom +mesomorph mesomorph nom +mesomorphies mesomorphy nom +mesomorphs mesomorph nom +mesomorphy mesomorphy nom +meson meson nom +mesons meson nom +mesophyte mesophyte nom +mesophytes mesophyte nom +mesosphere mesosphere nom +mesospheres mesosphere nom +mesothelia mesothelium nom +mesothelioma mesothelioma nom +mesotheliomas mesothelioma nom +mesothelium mesothelium nom +mesotron mesotron nom +mesotrons mesotron nom +mesquit mesquit nom +mesquite mesquite nom +mesquites mesquite nom +mesquits mesquit nom +mess mess nom +message message nom +messages message nom +messed mess ver +messeigneurs monseigneur nom +messenger messenger nom +messengered messenger ver +messengering messenger ver +messengers messenger nom +messes mess nom +messiah messiah nom +messiahs messiah nom +messiahship messiahship nom +messiahships messiahship nom +messier messy adj +messiest messy adj +messieurs monsieur nom +messiness messiness nom +messinesses messiness nom +messing mess ver +messmate messmate nom +messmates messmate nom +messuage messuage nom +messuages messuage nom +messy messy adj +mestizo mestizo nom +mestizos mestizo nom +mestranol mestranol nom +mestranols mestranol nom +met meet ver +metabolism metabolism nom +metabolisms metabolism nom +metabolite metabolite nom +metabolites metabolite nom +metabolize metabolize ver +metabolized metabolize ver +metabolizes metabolize ver +metabolizing metabolize ver +metacarpal metacarpal nom +metacarpals metacarpal nom +metacarpi metacarpus nom +metacarpus metacarpus nom +metageneses metagenesis nom +metagenesis metagenesis nom +metal metal nom +metalanguage metalanguage nom +metalanguages metalanguage nom +metaled metal ver +metalepses metalepsis nom +metalepsis metalepsis nom +metaling metal ver +metallic metallic nom +metallics metallic nom +metallurgies metallurgy nom +metallurgist metallurgist nom +metallurgists metallurgist nom +metallurgy metallurgy nom +metals metal nom +metalwork metalwork nom +metalworker metalworker nom +metalworkers metalworker nom +metalworking metalworking nom +metalworkings metalworking nom +metalworks metalwork nom +metamere metamere nom +metameres metamere nom +metamorphism metamorphism nom +metamorphisms metamorphism nom +metamorphose metamorphose ver +metamorphosed metamorphose ver +metamorphoses metamorphose ver +metamorphosing metamorphose ver +metamorphosis metamorphosis nom +metaphase metaphase nom +metaphases metaphase nom +metaphor metaphor nom +metaphors metaphor nom +metasequoia metasequoia nom +metasequoias metasequoia nom +metastases metastasis nom +metastasis metastasis nom +metastasize metastasize ver +metastasized metastasize ver +metastasizes metastasize ver +metastasizing metastasize ver +metatarsal metatarsal nom +metatarsals metatarsal nom +metatarsi metatarsus nom +metatarsus metatarsus nom +metatheses metathesis nom +metathesis metathesis nom +mete mete nom +meted mete ver +metempsychoses metempsychosis nom +metempsychosis metempsychosis nom +metencephalon metencephalon nom +metencephalons metencephalon nom +meteor meteor nom +meteorite meteorite nom +meteorites meteorite nom +meteoroid meteoroid nom +meteoroids meteoroid nom +meteorologies meteorology nom +meteorologist meteorologist nom +meteorologists meteorologist nom +meteorology meteorology nom +meteors meteor nom +meter meter nom +metered meter ver +metering meter ver +meters meter nom +metes mete nom +meth meth nom +methadon methadon nom +methadone methadone nom +methadones methadone nom +methadons methadon nom +methamphetamine methamphetamine nom +methamphetamines methamphetamine nom +methanal methanal nom +methanals methanal nom +methane methane nom +methanes methane nom +methanogen methanogen nom +methanogens methanogen nom +methanol methanol nom +methanols methanol nom +methaqualone methaqualone nom +methaqualones methaqualone nom +metheglin metheglin nom +metheglins metheglin nom +methenamine methenamine nom +methenamines methenamine nom +methicillin methicillin nom +methicillins methicillin nom +methinks methinks ver +methionine methionine nom +methionines methionine nom +method method nom +methodicalness methodicalness nom +methodicalnesses methodicalness nom +methodologies methodology nom +methodology methodology nom +methods method nom +methotrexate methotrexate nom +methotrexates methotrexate nom +methought methinks ver +meths meth nom +methyl methyl nom +methylbenzene methylbenzene nom +methylbenzenes methylbenzene nom +methyldopa methyldopa nom +methyldopas methyldopa nom +methylphenidate methylphenidate nom +methylphenidates methylphenidate nom +methyls methyl nom +metic metic nom +metical metical nom +meticals metical nom +metics metic nom +meticulosities meticulosity nom +meticulosity meticulosity nom +meticulousness meticulousness nom +meticulousnesses meticulousness nom +metier metier nom +metiers metier nom +meting mete ver +metis metis nom +metisses metis nom +metonym metonym nom +metonymies metonymy nom +metonyms metonym nom +metonymy metonymy nom +metralgia metralgia nom +metralgias metralgia nom +metre metre nom +metred metre ver +metres metre nom +metric metric nom +metricate metricate ver +metricated metricate ver +metricates metricate ver +metricating metricate ver +metrication metrication nom +metrications metrication nom +metricize metricize ver +metricized metricize ver +metricizes metricize ver +metricizing metricize ver +metrics metric nom +metrification metrification nom +metrifications metrification nom +metring metre ver +metritis metritis nom +metritises metritis nom +metro metro nom +metronome metronome nom +metronomes metronome nom +metronymic metronymic nom +metronymics metronymic nom +metropolis metropolis nom +metropolises metropolis nom +metropolitan metropolitan nom +metropolitans metropolitan nom +metrorrhagia metrorrhagia nom +metrorrhagias metrorrhagia nom +metros metro nom +mettle mettle nom +mettles mettle nom +mew mew nom +mewed mew ver +mewing mew ver +mewl mewl ver +mewled mewl ver +mewling mewl ver +mewls mewl ver +mews mew nom +mewses mews nom +mezcal mezcal nom +mezcals mezcal nom +mezereon mezereon nom +mezereons mezereon nom +mezereum mezereum nom +mezereums mezereum nom +mezzanine mezzanine nom +mezzanines mezzanine nom +mezzo mezzo nom +mezzos mezzo nom +mezzotint mezzotint nom +mezzotints mezzotint nom +mho mho nom +mhos mho nom +mi mi nom +miaou miaou nom +miaoued miaou ver +miaouing miaou ver +miaous miaou nom +miaow miaow nom +miaowed miaow ver +miaowing miaow ver +miaows miaow nom +miasma miasma nom +miasmas miasma nom +mica mica nom +micas mica nom +mice mouse nom +micelle micelle nom +micelles micelle nom +mickey mickey nom +mickeys mickey nom +mickle mickle nom +mickles mickle nom +micro micro nom +microbalance microbalance nom +microbalances microbalance nom +microbar microbar nom +microbars microbar nom +microbe microbe nom +microbes microbe nom +microbiologies microbiology nom +microbiologist microbiologist nom +microbiologists microbiologist nom +microbiology microbiology nom +microbreweries microbrewery nom +microbrewery microbrewery nom +microcephalies microcephaly nom +microcephaly microcephaly nom +microchip microchip nom +microchips microchip nom +microcircuit microcircuit nom +microcircuits microcircuit nom +microcomputer microcomputer nom +microcomputers microcomputer nom +microcosm microcosm nom +microcosms microcosm nom +microcyte microcyte nom +microcytes microcyte nom +microdot microdot nom +microdots microdot nom +microfiber microfiber nom +microfibers microfiber nom +microfiche microfiche nom +microfilm microfilm nom +microfilmed microfilm ver +microfilming microfilm ver +microfilms microfilm nom +microfossil microfossil nom +microfossils microfossil nom +microgram microgram nom +micrograms microgram nom +microgroove microgroove nom +microgrooves microgroove nom +microlight microlight nom +microlights microlight nom +micromanage micromanage ver +micromanaged micromanage ver +micromanagement micromanagement nom +micromanagements micromanagement nom +micromanages micromanage ver +micromanaging micromanage ver +micrometeorite micrometeorite nom +micrometeorites micrometeorite nom +micrometer micrometer nom +micrometers micrometer nom +micrometre micrometre nom +micrometres micrometre nom +micron micron nom +microns micron nom +microorganism microorganism nom +microorganisms microorganism nom +micropaleontologies micropaleontology nom +micropaleontology micropaleontology nom +microphone microphone nom +microphones microphone nom +microphotometer microphotometer nom +microphotometers microphotometer nom +microprocessor microprocessor nom +microprocessors microprocessor nom +micropyle micropyle nom +micropyles micropyle nom +micros micro nom +microscope microscope nom +microscopes microscope nom +microscopies microscopy nom +microscopy microscopy nom +microsecond microsecond nom +microseconds microsecond nom +microseism microseism nom +microseisms microseism nom +microsome microsome nom +microsomes microsome nom +microspore microspore nom +microspores microspore nom +microsurgeries microsurgery nom +microsurgery microsurgery nom +microtome microtome nom +microtomes microtome nom +microtubule microtubule nom +microtubules microtubule nom +microwave microwave nom +microwaved microwave ver +microwaves microwave nom +microwaving microwave ver +micturate micturate ver +micturated micturate ver +micturates micturate ver +micturating micturate ver +micturition micturition nom +micturitions micturition nom +mid mid nom +midafternoon midafternoon nom +midafternoons midafternoon nom +midair midair nom +midairs midair nom +midbrain midbrain nom +midbrains midbrain nom +midday midday nom +middays midday nom +midden midden nom +middens midden nom +middies middy nom +middle middle nom +middlebreaker middlebreaker nom +middlebreakers middlebreaker nom +middlebrow middlebrow nom +middlebrows middlebrow nom +middled middle ver +middleman middleman nom +middlemen middleman nom +middles middle nom +middleweight middleweight nom +middleweights middleweight nom +middling middle ver +middlings middling nom +middy middy nom +midfield midfield nom +midfields midfield nom +midge midge nom +midges midge nom +midget midget nom +midgets midget nom +midi midi nom +midinette midinette nom +midinettes midinette nom +midiron midiron nom +midirons midiron nom +midis midi nom +midland midland nom +midlands midland nom +midlife midlife nom +midline midline nom +midlines midline nom +midlives midlife nom +midnight midnight nom +midnights midnight nom +midpoint midpoint nom +midpoints midpoint nom +midrib midrib nom +midribs midrib nom +midriff midriff nom +midriffs midriff nom +mids mid nom +midsection midsection nom +midsections midsection nom +midshipman midshipman nom +midshipmen midshipman nom +midst midst nom +midstream midstream nom +midstreams midstream nom +midsts midst nom +midsummer midsummer nom +midsummers midsummer nom +midterm midterm nom +midterms midterm nom +midtown midtown nom +midtowns midtown nom +midwatch midwatch nom +midwatches midwatch nom +midway midway nom +midways midway nom +midweek midweek nom +midweeks midweek nom +midwife midwife nom +midwifed midwife ver +midwiferies midwifery nom +midwifery midwifery nom +midwifes midwife ver +midwifing midwife ver +midwinter midwinter nom +midwinters midwinter nom +midwives midwife nom +midyear midyear nom +midyears midyear nom +mien mien nom +miens mien nom +miff miff nom +miffed miff ver +miffing miff ver +miffs miff nom +might might sw +mightier mighty adj +mightiest mighty adj +mightiness mightiness nom +mightinesses mightiness nom +mights might nom +mighty mighty adj +mignonette mignonette nom +mignonettes mignonette nom +migraine migraine nom +migraines migraine nom +migrant migrant nom +migrants migrant nom +migrate migrate ver +migrated migrate ver +migrates migrate ver +migrating migrate ver +migration migration nom +migrations migration nom +mikado mikado nom +mikados mikado nom +mike mike nom +miked mike ver +mikes mike nom +miking mike ver +mil mil nom +miladies milady nom +milady milady nom +milage milage nom +milages milage nom +mild mild adj +milder mild adj +mildest mild adj +mildew mildew nom +mildewed mildew ver +mildewing mildew ver +mildews mildew nom +mildness mildness nom +mildnesses mildness nom +milds mild nom +mile mile nom +mileage mileage nom +mileages mileage nom +mileometer mileometer nom +mileometers mileometer nom +milepost milepost nom +mileposts milepost nom +miler miler nom +milers miler nom +miles mile nom +milestone milestone nom +milestones milestone nom +milfoil milfoil nom +milfoils milfoil nom +milia milium nom +milieu milieu nom +milieus milieu nom +militance militance nom +militances militance nom +militancies militancy nom +militancy militancy nom +militant militant nom +militants militant nom +militarism militarism nom +militarisms militarism nom +militarist militarist nom +militarists militarist nom +militarization militarization nom +militarizations militarization nom +militarize militarize ver +militarized militarize ver +militarizes militarize ver +militarizing militarize ver +military military nom +militate militate ver +militated militate ver +militates militate ver +militating militate ver +militia militia nom +militiaman militiaman nom +militiamen militiaman nom +militias militia nom +milium milium nom +milk milk nom +milked milk ver +milker milker nom +milkers milker nom +milkier milky adj +milkiest milky adj +milkiness milkiness nom +milkinesses milkiness nom +milking milk ver +milkmaid milkmaid nom +milkmaids milkmaid nom +milkman milkman nom +milkmen milkman nom +milks milk nom +milkshake milkshake nom +milksop milksop nom +milksops milksop nom +milkweed milkweed nom +milkweeds milkweed nom +milkwort milkwort nom +milkworts milkwort nom +milky milky adj +mill mill nom +millage millage nom +millages millage nom +millboard millboard nom +millboards millboard nom +milldam milldam nom +milldams milldam nom +milled mill ver +millenarian millenarian nom +millenarianism millenarianism nom +millenarianisms millenarianism nom +millenarians millenarian nom +millennium millennium nom +millenniums millennium nom +millepede millepede nom +millepedes millepede nom +miller miller nom +millerite millerite nom +millerites millerite nom +millers miller nom +millet millet nom +millets millet nom +milliammeter milliammeter nom +milliammeters milliammeter nom +milliampere milliampere nom +milliamperes milliampere nom +milliard milliard nom +milliards milliard nom +millibar millibar nom +millibars millibar nom +millicurie millicurie nom +millicuries millicurie nom +millidegree millidegree nom +millidegrees millidegree nom +millifarad millifarad nom +millifarads millifarad nom +milligram milligram nom +milligrams milligram nom +millihenries millihenry nom +millihenry millihenry nom +milliliter milliliter nom +milliliters milliliter nom +millilitre millilitre nom +millilitres millilitre nom +millime millime nom +millimes millime nom +millimeter millimeter nom +millimeters millimeter nom +millimetre millimetre nom +millimetres millimetre nom +millimicron millimicron nom +millimicrons millimicron nom +milline milline nom +milliner milliner nom +millineries millinery nom +milliners milliner nom +millinery millinery nom +millines milline nom +milling mill ver +million million nom +millionaire millionaire nom +millionaires millionaire nom +millionairess millionairess nom +millionairesses millionairess nom +millionnaire millionnaire nom +millionnaires millionnaire nom +millions million nom +millionth millionth nom +millionths millionth nom +milliped milliped nom +millipede millipede nom +millipedes millipede nom +millipeds milliped nom +milliradian milliradian nom +milliradians milliradian nom +millisecond millisecond nom +milliseconds millisecond nom +millivolt millivolt nom +millivolts millivolt nom +milliwatt milliwatt nom +milliwatts milliwatt nom +millpond millpond nom +millponds millpond nom +millrace millrace nom +millraces millrace nom +millrun millrun nom +millruns millrun nom +mills mill nom +millstone millstone nom +millstones millstone nom +millstream millstream nom +millstreams millstream nom +millwork millwork nom +millworks millwork nom +millwright millwright nom +millwrights millwright nom +milo milo nom +milometer milometer nom +milometers milometer nom +milord milord nom +milords milord nom +milos milo nom +milquetoast milquetoast nom +milquetoasts milquetoast nom +mils mil nom +milt milt nom +milted milt ver +milting milt ver +milts milt nom +mime mime nom +mimed mime ver +mimeo mimeo nom +mimeoed mimeo ver +mimeograph mimeograph nom +mimeographed mimeograph ver +mimeographing mimeograph ver +mimeographs mimeograph nom +mimeoing mimeo ver +mimeos mimeo nom +mimer mimer nom +mimers mimer nom +mimes mime nom +mimeses mimesis nom +mimesis mimesis nom +mimic mimic nom +mimicked mimic ver +mimicker mimicker nom +mimickers mimicker nom +mimicking mimic ver +mimicries mimicry nom +mimicry mimicry nom +mimics mimic nom +miming mime ver +mimosa mimosa nom +mimosas mimosa nom +mina mina nom +minaret minaret nom +minarets minaret nom +minas mina nom +mince mince nom +minced mince ver +mincemeat mincemeat nom +mincemeats mincemeat nom +mincer mincer nom +mincers mincer nom +minces mince nom +mincing mince ver +mind mind nom +minded mind ver +minder minder nom +minders minder nom +mindfulness mindfulness nom +mindfulnesses mindfulness nom +minding mind ver +mindlessness mindlessness nom +mindlessnesses mindlessness nom +minds mind nom +mindset mindset nom +mindsets mindset nom +mine mine nom +mined mine ver +minefield minefield nom +minefields minefield nom +minelayer minelayer nom +minelayers minelayer nom +miner miner nom +mineral mineral nom +mineralocorticoid mineralocorticoid nom +mineralocorticoids mineralocorticoid nom +mineralogies mineralogy nom +mineralogist mineralogist nom +mineralogists mineralogist nom +mineralogy mineralogy nom +minerals mineral nom +miners miner nom +mines mine nom +mineshaft mineshaft nom +mineshafts mineshaft nom +minestrone minestrone nom +minestrones minestrone nom +minesweeper minesweeper nom +minesweepers minesweeper nom +minesweeping minesweeping nom +minesweepings minesweeping nom +mineworker mineworker nom +mineworkers mineworker nom +mingier mingy adj +mingiest mingy adj +mingle mingle ver +mingled mingle ver +mingles mingle ver +mingling mingle ver +mingy mingy adj +mini mini adj +miniature miniature nom +miniatures miniature nom +miniaturise miniaturise ver +miniaturised miniaturise ver +miniaturises miniaturise ver +miniaturising miniaturise ver +miniaturist miniaturist nom +miniaturists miniaturist nom +miniaturization miniaturization nom +miniaturizations miniaturization nom +miniaturize miniaturize ver +miniaturized miniaturize ver +miniaturizes miniaturize ver +miniaturizing miniaturize ver +minibar minibar nom +minibars minibar nom +minibike minibike nom +minibikes minibike nom +minibus minibus nom +minibuses minibus nom +minicam minicam nom +minicams minicam nom +minicomputer minicomputer nom +minicomputers minicomputer nom +minier mini adj +miniest mini adj +minified minify ver +minifies minify ver +minify minify ver +minifying minify ver +minim minim nom +minimalism minimalism nom +minimalisms minimalism nom +minimalist minimalist nom +minimalists minimalist nom +minimisation minimisation nom +minimisations minimisation nom +minimization minimization nom +minimizations minimization nom +minimize minimize ver +minimized minimize ver +minimizes minimize ver +minimizing minimize ver +minims minim nom +minimum minimum nom +minimums minimum nom +mining mine ver +minings mining nom +minion minion nom +minions minion nom +minis mini nom +miniseries miniseries nom +miniskirt miniskirt nom +miniskirts miniskirt nom +minister minister nom +ministered minister ver +ministering minister ver +ministers minister nom +ministrant ministrant nom +ministrants ministrant nom +ministration ministration nom +ministrations ministration nom +ministries ministry nom +ministry ministry nom +minium minium nom +miniums minium nom +minivan minivan nom +minivans minivan nom +miniver miniver nom +minivers miniver nom +mink mink nom +minnesinger minnesinger nom +minnesingers minnesinger nom +minnow minnow nom +minnows minnow nom +minor minor nom +minored minor ver +minoring minor ver +minorities minority nom +minority minority nom +minors minor nom +minoxidil minoxidil nom +minoxidils minoxidil nom +minster minster nom +minsters minster nom +minstrel minstrel nom +minstrels minstrel nom +minstrelsies minstrelsy nom +minstrelsy minstrelsy nom +mint mint nom +mintage mintage nom +mintages mintage nom +minted mint ver +minter minter nom +minters minter nom +mintier minty adj +mintiest minty adj +minting mint ver +mints mint nom +minty minty adj +minuend minuend nom +minuends minuend nom +minuet minuet nom +minuets minuet nom +minus minus nom +minuscule minuscule nom +minuscules minuscule nom +minuses minus nom +minute minute adj +minuted minute ver +minuteman minuteman nom +minutemen minuteman nom +minuteness minuteness nom +minutenesses minuteness nom +minuter minute adj +minutes minute nom +minutest minute adj +minutia minutia nom +minutiae minutia nom +minuting minute ver +minx minx nom +minxes minx nom +miracle miracle nom +miracles miracle nom +mirage mirage nom +mirages mirage nom +mire mire nom +mired mire ver +mires mire nom +miri miro nom +mirier miry adj +miriest miry adj +miring mire ver +mirkier mirky adj +mirkiest mirky adj +mirky mirky adj +miro miro nom +mirror mirror nom +mirrored mirror ver +mirroring mirror ver +mirrors mirror nom +mirth mirth nom +mirthfulness mirthfulness nom +mirthfulnesses mirthfulness nom +mirths mirth nom +miry miry adj +mis mi nom +misaddress misaddress ver +misaddressed misaddress ver +misaddresses misaddress ver +misaddressing misaddress ver +misadventure misadventure nom +misadventures misadventure nom +misadvise misadvise ver +misadvised misadvise ver +misadvises misadvise ver +misadvising misadvise ver +misalignment misalignment nom +misalignments misalignment nom +misalliance misalliance nom +misalliances misalliance nom +misallied misally ver +misallies misally ver +misally misally ver +misallying misally ver +misanthrope misanthrope nom +misanthropes misanthrope nom +misanthropies misanthropy nom +misanthropist misanthropist nom +misanthropists misanthropist nom +misanthropy misanthropy nom +misapplication misapplication nom +misapplications misapplication nom +misapplied misapply ver +misapplies misapply ver +misapply misapply ver +misapplying misapply ver +misapprehend misapprehend ver +misapprehended misapprehend ver +misapprehending misapprehend ver +misapprehends misapprehend ver +misapprehension misapprehension nom +misapprehensions misapprehension nom +misappropriate misappropriate ver +misappropriated misappropriate ver +misappropriates misappropriate ver +misappropriating misappropriate ver +misappropriation misappropriation nom +misappropriations misappropriation nom +misbehave misbehave ver +misbehaved misbehave ver +misbehaves misbehave ver +misbehaving misbehave ver +misbehavior misbehavior nom +misbehaviors misbehavior nom +misbehaviour misbehaviour nom +misbehaviours misbehaviour nom +misbelieve misbelieve ver +misbelieved misbelieve ver +misbeliever misbeliever nom +misbelievers misbeliever nom +misbelieves misbelieve ver +misbelieving misbelieve ver +miscalculate miscalculate ver +miscalculated miscalculate ver +miscalculates miscalculate ver +miscalculating miscalculate ver +miscalculation miscalculation nom +miscalculations miscalculation nom +miscall miscall ver +miscalled miscall ver +miscalling miscall ver +miscalls miscall ver +miscarriage miscarriage nom +miscarriages miscarriage nom +miscarried miscarry ver +miscarries miscarry ver +miscarry miscarry ver +miscarrying miscarry ver +miscast miscast ver +miscasting miscast ver +miscasts miscast ver +miscegenate miscegenate ver +miscegenated miscegenate ver +miscegenates miscegenate ver +miscegenating miscegenate ver +miscegenation miscegenation nom +miscegenations miscegenation nom +miscellanies miscellany nom +miscellany miscellany nom +mischance mischance nom +mischances mischance nom +mischief mischief nom +mischiefs mischief nom +mischievousness mischievousness nom +mischievousnesses mischievousness nom +miscibilities miscibility nom +miscibility miscibility nom +misconceive misconceive ver +misconceived misconceive ver +misconceives misconceive ver +misconceiving misconceive ver +misconception misconception nom +misconceptions misconception nom +misconduct misconduct nom +misconducted misconduct ver +misconducting misconduct ver +misconducts misconduct nom +misconstruction misconstruction nom +misconstructions misconstruction nom +misconstrue misconstrue ver +misconstrued misconstrue ver +misconstrues misconstrue ver +misconstruing misconstrue ver +miscount miscount nom +miscounted miscount ver +miscounting miscount ver +miscounts miscount nom +miscreant miscreant nom +miscreants miscreant nom +miscreation miscreation nom +miscreations miscreation nom +miscue miscue nom +miscued miscue ver +miscues miscue nom +miscuing miscue ver +misdate misdate ver +misdated misdate ver +misdates misdate ver +misdating misdate ver +misdeal misdeal nom +misdealing misdeal ver +misdeals misdeal nom +misdealt misdeal ver +misdeed misdeed nom +misdeeds misdeed nom +misdemean misdemean ver +misdemeaned misdemean ver +misdemeaning misdemean ver +misdemeanor misdemeanor nom +misdemeanors misdemeanor nom +misdemeanour misdemeanour nom +misdemeanours misdemeanour nom +misdemeans misdemean ver +misdiagnose misdiagnose ver +misdiagnosed misdiagnose ver +misdiagnoses misdiagnose ver +misdiagnosing misdiagnose ver +misdid misdo ver +misdirect misdirect ver +misdirected misdirect ver +misdirecting misdirect ver +misdirection misdirection nom +misdirections misdirection nom +misdirects misdirect ver +misdo misdo ver +misdoes misdo ver +misdoing misdo ver +misdoings misdoing nom +misdone misdo ver +miser miser nom +miserableness miserableness nom +miserablenesses miserableness nom +miseries misery nom +miserliness miserliness nom +miserlinesses miserliness nom +misers miser nom +misery misery nom +misestimation misestimation nom +misestimations misestimation nom +misfeasance misfeasance nom +misfeasances misfeasance nom +misfile misfile ver +misfiled misfile ver +misfiles misfile ver +misfiling misfile ver +misfire misfire nom +misfired misfire ver +misfires misfire nom +misfiring misfire ver +misfit misfit nom +misfits misfit nom +misfitted misfit ver +misfitting misfit ver +misfortune misfortune nom +misfortunes misfortune nom +misfunction misfunction ver +misfunctioned misfunction ver +misfunctioning misfunction ver +misfunctions misfunction ver +misgauge misgauge ver +misgauged misgauge ver +misgauges misgauge ver +misgauging misgauge ver +misgave misgive ver +misgive misgive ver +misgiven misgive ver +misgives misgive ver +misgiving misgive ver +misgivings misgiving nom +misgovern misgovern ver +misgoverned misgovern ver +misgoverning misgovern ver +misgovernment misgovernment nom +misgovernments misgovernment nom +misgoverns misgovern ver +misguidance misguidance nom +misguidances misguidance nom +misguide misguide ver +misguided misguide ver +misguides misguide ver +misguiding misguide ver +mishandle mishandle ver +mishandled mishandle ver +mishandles mishandle ver +mishandling mishandle ver +mishap mishap nom +mishaps mishap nom +mishear mishear ver +misheard mishear ver +mishearing mishear ver +mishears mishear ver +mishmash mishmash nom +mishmashes mishmash nom +misidentified misidentify ver +misidentifies misidentify ver +misidentify misidentify ver +misidentifying misidentify ver +misinform misinform ver +misinformation misinformation nom +misinformations misinformation nom +misinformed misinform ver +misinforming misinform ver +misinforms misinform ver +misinterpret misinterpret ver +misinterpretation misinterpretation nom +misinterpretations misinterpretation nom +misinterpreted misinterpret ver +misinterpreting misinterpret ver +misinterprets misinterpret ver +misjudge misjudge ver +misjudged misjudge ver +misjudges misjudge ver +misjudging misjudge ver +misjudgment misjudgment nom +misjudgments misjudgment nom +mislabel mislabel ver +mislabeled mislabel ver +mislabeling mislabel ver +mislabels mislabel ver +mislaid mislay ver +mislay mislay ver +mislaying mislay ver +mislays mislay ver +mislead mislead ver +misleading mislead ver +misleads mislead ver +misled mislead ver +mismanage mismanage ver +mismanaged mismanage ver +mismanagement mismanagement nom +mismanagements mismanagement nom +mismanages mismanage ver +mismanaging mismanage ver +mismarried mismarry ver +mismarries mismarry ver +mismarry mismarry ver +mismarrying mismarry ver +mismatch mismatch nom +mismatched mismatch ver +mismatches mismatch nom +mismatching mismatch ver +mismate mismate ver +mismated mismate ver +mismates mismate ver +mismating mismate ver +misname misname ver +misnamed misname ver +misnames misname ver +misnaming misname ver +misnomer misnomer nom +misnomers misnomer nom +misogamies misogamy nom +misogamist misogamist nom +misogamists misogamist nom +misogamy misogamy nom +misogynies misogyny nom +misogynist misogynist nom +misogynists misogynist nom +misogyny misogyny nom +misologies misology nom +misology misology nom +misoneism misoneism nom +misoneisms misoneism nom +misperceive misperceive ver +misperceived misperceive ver +misperceives misperceive ver +misperceiving misperceive ver +mispickel mispickel nom +mispickels mispickel nom +misplace misplace ver +misplaced misplace ver +misplacement misplacement nom +misplacements misplacement nom +misplaces misplace ver +misplacing misplace ver +misplay misplay nom +misplayed misplay ver +misplaying misplay ver +misplays misplay nom +misprint misprint nom +misprinted misprint ver +misprinting misprint ver +misprints misprint nom +misprision misprision nom +misprisions misprision nom +mispronounce mispronounce ver +mispronounced mispronounce ver +mispronounces mispronounce ver +mispronouncing mispronounce ver +mispronunciation mispronunciation nom +mispronunciations mispronunciation nom +misquotation misquotation nom +misquotations misquotation nom +misquote misquote ver +misquoted misquote ver +misquotes misquote ver +misquoting misquote ver +misread misread ver +misreading misread ver +misreadings misreading nom +misreads misread ver +misreckoning misreckoning nom +misreckonings misreckoning nom +misremember misremember ver +misremembered misremember ver +misremembering misremember ver +misremembers misremember ver +misreport misreport nom +misreported misreport ver +misreporting misreport ver +misreports misreport nom +misrepresent misrepresent ver +misrepresentation misrepresentation nom +misrepresentations misrepresentation nom +misrepresented misrepresent ver +misrepresenting misrepresent ver +misrepresents misrepresent ver +misrule misrule nom +misruled misrule ver +misrules misrule nom +misruling misrule ver +miss miss nom +missal missal nom +missals missal nom +missang missing ver +missed miss ver +misses miss nom +misshape misshape ver +misshaped misshape ver +misshapenness misshapenness nom +misshapennesses misshapenness nom +misshapes misshape ver +misshaping misshape ver +missies missy nom +missile missile nom +missileries missilery nom +missilery missilery nom +missiles missile nom +missilries missilry nom +missilry missilry nom +missing miss ver +missinging missing ver +missings missing ver +mission mission nom +missionaries missionary nom +missionary missionary nom +missioner missioner nom +missioners missioner nom +missions mission nom +missis missis nom +missises missis nom +missive missive nom +missives missive nom +misspeak misspeak ver +misspeaking misspeak ver +misspeaks misspeak ver +misspell misspell ver +misspelled misspell ver +misspelling misspell ver +misspellings misspelling nom +misspells misspell ver +misspend misspend ver +misspending misspend ver +misspends misspend ver +misspent misspend ver +misspoke misspeak ver +misspoken misspeak ver +misstate misstate ver +misstated misstate ver +misstatement misstatement nom +misstatements misstatement nom +misstates misstate ver +misstating misstate ver +misstep misstep nom +missteps misstep nom +missung missing ver +missus missus nom +missuses missus nom +missy missy nom +mist mist nom +mistake mistake nom +mistaken mistake ver +mistakes mistake nom +mistaking mistake ver +misted mist ver +mister mister nom +mistered mister ver +mistering mister ver +misters mister nom +mistflower mistflower nom +mistflowers mistflower nom +mistier misty adj +mistiest misty adj +mistime mistime ver +mistimed mistime ver +mistimes mistime ver +mistiming mistime ver +mistiness mistiness nom +mistinesses mistiness nom +misting mist ver +mistletoe mistletoe nom +mistletoes mistletoe nom +mistook mistake ver +mistral mistral nom +mistrals mistral nom +mistranslate mistranslate ver +mistranslated mistranslate ver +mistranslates mistranslate ver +mistranslating mistranslate ver +mistranslation mistranslation nom +mistranslations mistranslation nom +mistreat mistreat ver +mistreated mistreat ver +mistreating mistreat ver +mistreatment mistreatment nom +mistreatments mistreatment nom +mistreats mistreat ver +mistress mistress nom +mistresses mistress nom +mistrial mistrial nom +mistrials mistrial nom +mistrust mistrust nom +mistrusted mistrust ver +mistrusting mistrust ver +mistrusts mistrust nom +mists mist nom +misty misty adj +misunderstand misunderstand ver +misunderstanding misunderstand ver +misunderstandings misunderstanding nom +misunderstands misunderstand ver +misunderstood misunderstand ver +misuse misuse nom +misused misuse ver +misuses misuse nom +misusing misuse ver +mite mite nom +miter miter nom +mitered miter ver +mitering miter ver +miters miter nom +miterwort miterwort nom +miterworts miterwort nom +mites mite nom +mitigate mitigate ver +mitigated mitigate ver +mitigates mitigate ver +mitigating mitigate ver +mitigation mitigation nom +mitigations mitigation nom +mitochondria mitochondrion nom +mitochondrion mitochondrion nom +mitoses mitosis nom +mitosis mitosis nom +mitre mitre nom +mitred mitre ver +mitres mitre nom +mitrewort mitrewort nom +mitreworts mitrewort nom +mitring mitre ver +mitt mitt nom +mitten mitten nom +mittens mitten nom +mitts mitt nom +mix mix nom +mixed mix ver +mixer mixer nom +mixers mixer nom +mixes mix nom +mixing mix ver +mixologist mixologist nom +mixologists mixologist nom +mixture mixture nom +mixtures mixture nom +mizen mizen nom +mizenmast mizenmast nom +mizenmasts mizenmast nom +mizens mizen nom +mizzen mizzen nom +mizzenmast mizzenmast nom +mizzenmasts mizzenmast nom +mizzens mizzen nom +mizzle mizzle nom +mizzled mizzle ver +mizzles mizzle nom +mizzling mizzle ver +mnemonic mnemonic nom +mnemonics mnemonic nom +moa moa nom +moan moan nom +moaned moan ver +moaner moaner nom +moaners moaner nom +moaning moan ver +moans moan nom +moas moa nom +moat moat nom +moats moat nom +mob mob nom +mobbed mob ver +mobbing mob ver +mobcap mobcap nom +mobcaps mobcap nom +mobile mobile nom +mobiles mobile nom +mobilisation mobilisation nom +mobilisations mobilisation nom +mobilities mobility nom +mobility mobility nom +mobilization mobilization nom +mobilizations mobilization nom +mobilize mobilize ver +mobilized mobilize ver +mobilizer mobilizer nom +mobilizers mobilizer nom +mobilizes mobilize ver +mobilizing mobilize ver +mobs mob nom +mobster mobster nom +mobsters mobster nom +moccasin moccasin nom +moccasins moccasin nom +mocha mocha nom +mochas mocha nom +mock mock nom +mocked mock ver +mocker mocker nom +mockeries mockery nom +mockernut mockernut nom +mockernuts mockernut nom +mockers mocker nom +mockery mockery nom +mocking mock ver +mockingbird mockingbird nom +mockingbirds mockingbird nom +mocks mock nom +mockup mockup nom +mockups mockup nom +mod mod adj +modal modal nom +modalities modality nom +modality modality nom +modals modal nom +mode mode nom +model model nom +modeled model ver +modeler modeler nom +modelers modeler nom +modeling model ver +modeller modeller nom +modellers modeller nom +modelling modelling nom +modellings modelling nom +models model nom +modem modem nom +modemed modem ver +modeming modem ver +modems modem nom +moder mod adj +moderate moderate nom +moderated moderate ver +moderateness moderateness nom +moderatenesses moderateness nom +moderates moderate nom +moderating moderate ver +moderation moderation nom +moderations moderation nom +moderator moderator nom +moderators moderator nom +moderatorship moderatorship nom +moderatorships moderatorship nom +modern modern adj +moderner modern adj +modernest modern adj +modernisation modernisation nom +modernisations modernisation nom +modernism modernism nom +modernisms modernism nom +modernist modernist nom +modernists modernist nom +modernities modernity nom +modernity modernity nom +modernization modernization nom +modernizations modernization nom +modernize modernize ver +modernized modernize ver +modernizer modernizer nom +modernizers modernizer nom +modernizes modernize ver +modernizing modernize ver +modernness modernness nom +modernnesses modernness nom +moderns modern nom +modes mode nom +modest mod adj +modester modest adj +modestest modest adj +modesties modesty nom +modesty modesty nom +modicum modicum nom +modicums modicum nom +modification modification nom +modifications modification nom +modified modify ver +modifier modifier nom +modifiers modifier nom +modifies modify ver +modify modify ver +modifying modify ver +modillion modillion nom +modillions modillion nom +modishness modishness nom +modishnesses modishness nom +modiste modiste nom +modistes modiste nom +mods mod nom +modular modular nom +modulars modular nom +modulate modulate ver +modulated modulate ver +modulates modulate ver +modulating modulate ver +modulation modulation nom +modulations modulation nom +modulator modulator nom +modulators modulator nom +module module nom +modules module nom +moduli modulus nom +modulus modulus nom +mogul mogul nom +moguls mogul nom +mohair mohair nom +mohairs mohair nom +moieties moiety nom +moiety moiety nom +moil moil nom +moiled moil ver +moiling moil ver +moils moil nom +moire moire nom +moires moire nom +moist moist adj +moisten moisten ver +moistened moisten ver +moistener moistener nom +moisteners moistener nom +moistening moisten ver +moistens moisten ver +moister moist adj +moistest moist adj +moistness moistness nom +moistnesses moistness nom +moisture moisture nom +moistures moisture nom +moisturize moisturize ver +moisturized moisturize ver +moisturizer moisturizer nom +moisturizers moisturizer nom +moisturizes moisturize ver +moisturizing moisturize ver +mojarra mojarra nom +mojarras mojarra nom +moke moke nom +mokes moke nom +mol mol nom +mola mola nom +molar molar nom +molarities molarity nom +molarity molarity nom +molars molar nom +molas mola nom +molasses molasses nom +molasseses molasses nom +mold mold nom +moldboard moldboard nom +moldboards moldboard nom +molded mold ver +molder molder nom +moldered molder ver +moldering molder ver +molders molder nom +moldier moldy adj +moldiest moldy adj +moldiness moldiness nom +moldinesses moldiness nom +molding mold ver +moldings molding nom +molds mold nom +moldy moldy adj +mole mole nom +molecularities molecularity nom +molecularity molecularity nom +molecule molecule nom +molecules molecule nom +molehill molehill nom +molehills molehill nom +moles mole nom +moleskin moleskin nom +moleskins moleskin nom +molest molest ver +molestation molestation nom +molestations molestation nom +molested molest ver +molester molester nom +molesters molester nom +molesting molest ver +molests molest ver +moll moll nom +mollie mollie nom +mollies mollie nom +mollification mollification nom +mollifications mollification nom +mollified mollify ver +mollifies mollify ver +mollify mollify ver +mollifying mollify ver +molls moll nom +mollusc mollusc nom +molluscan molluscan nom +molluscans molluscan nom +molluscs mollusc nom +mollusk mollusk nom +molluskan molluskan nom +molluskans molluskan nom +mollusks mollusk nom +molly molly nom +mollycoddle mollycoddle nom +mollycoddled mollycoddle ver +mollycoddles mollycoddle nom +mollycoddling mollycoddle ver +moloch moloch nom +molochs moloch nom +mols mol nom +molt molt nom +molted molt ver +molter molter nom +molters molter nom +molting molt ver +molts molt nom +molybdenite molybdenite nom +molybdenites molybdenite nom +molybdenum molybdenum nom +molybdenums molybdenum nom +mom mom nom +moment moment nom +momenta momentum nom +momentariness momentariness nom +momentarinesses momentariness nom +momentousness momentousness nom +momentousnesses momentousness nom +moments moment nom +momentum momentum nom +momism momism nom +momisms momism nom +momma momma nom +mommas momma nom +mommie mommie nom +mommies mommie nom +mommy mommy nom +moms mom nom +monad monad nom +monads monad nom +monal monal nom +monals monal nom +monandries monandry nom +monandry monandry nom +monarch monarch nom +monarchies monarchy nom +monarchism monarchism nom +monarchisms monarchism nom +monarchist monarchist nom +monarchists monarchist nom +monarchs monarch nom +monarchy monarchy nom +monarda monarda nom +monardas monarda nom +monas monas nom +monases monas nom +monasteries monastery nom +monastery monastery nom +monastic monastic nom +monasticism monasticism nom +monasticisms monasticism nom +monastics monastic nom +monaul monaul nom +monauls monaul nom +monazite monazite nom +monazites monazite nom +moneran moneran nom +monerans moneran nom +moneron moneron nom +monerons moneron nom +monetarism monetarism nom +monetarisms monetarism nom +monetarist monetarist nom +monetarists monetarist nom +monetisation monetisation nom +monetisations monetisation nom +monetization monetization nom +monetizations monetization nom +monetize monetize ver +monetized monetize ver +monetizes monetize ver +monetizing monetize ver +money money nom +moneybag moneybag nom +moneybags moneybag nom +moneygrubber moneygrubber nom +moneygrubbers moneygrubber nom +moneygrubbing moneygrubbing nom +moneygrubbings moneygrubbing nom +moneylender moneylender nom +moneylenders moneylender nom +moneymaker moneymaker nom +moneymakers moneymaker nom +moneymaking moneymaking nom +moneymakings moneymaking nom +moneyman moneyman nom +moneymen moneyman nom +moneys money nom +moneywort moneywort nom +moneyworts moneywort nom +monger monger nom +mongered monger ver +mongering monger ver +mongers monger nom +mongo mongo nom +mongoes mongo nom +mongolism mongolism nom +mongolisms mongolism nom +mongoloid mongoloid nom +mongoloids mongoloid nom +mongoose mongoose nom +mongooses mongoose nom +mongos mongo nom +mongrel mongrel nom +mongrelize mongrelize ver +mongrelized mongrelize ver +mongrelizes mongrelize ver +mongrelizing mongrelize ver +mongrels mongrel nom +monicker monicker nom +monickers monicker nom +moniker moniker nom +monikers moniker nom +monilia monilia nom +monilias monilia nom +moniliases moniliasis nom +moniliasis moniliasis nom +monism monism nom +monisms monism nom +monist monist nom +monists monist nom +monition monition nom +monitions monition nom +monitor monitor nom +monitored monitor ver +monitories monitory nom +monitoring monitor ver +monitors monitor nom +monitory monitory nom +monk monk nom +monkey monkey nom +monkeyed monkey ver +monkeying monkey ver +monkeypod monkeypod nom +monkeypods monkeypod nom +monkeys monkey nom +monkeyshine monkeyshine nom +monkeyshines monkeyshine nom +monkfish monkfish nom +monks monk nom +monkshood monkshood nom +monkshoods monkshood nom +mono mono nom +monoamine monoamine nom +monoamines monoamine nom +monocarp monocarp nom +monochrome monochrome nom +monochromes monochrome nom +monocle monocle nom +monocles monocle nom +monoclonal monoclonal nom +monoclonals monoclonal nom +monocot monocot nom +monocots monocot nom +monocotyledon monocotyledon nom +monocotyledons monocotyledon nom +monocracies monocracy nom +monocracy monocracy nom +monocular monocular nom +monoculars monocular nom +monocycle monocycle nom +monocycles monocycle nom +monocyte monocyte nom +monocytes monocyte nom +monodies monody nom +monodist monodist nom +monodists monodist nom +monody monody nom +monogamies monogamy nom +monogamist monogamist nom +monogamists monogamist nom +monogamy monogamy nom +monogeneses monogenesis nom +monogenesis monogenesis nom +monogram monogram nom +monogrammed monogram ver +monogramming monogram ver +monograms monogram nom +monograph monograph nom +monographed monograph ver +monographing monograph ver +monographs monograph nom +monogynies monogyny nom +monogynist monogynist nom +monogynists monogynist nom +monogyny monogyny nom +monolatries monolatry nom +monolatry monolatry nom +monolingual monolingual nom +monolinguals monolingual nom +monolith monolith nom +monoliths monolith nom +monolog monolog nom +monologist monologist nom +monologists monologist nom +monologs monolog nom +monologue monologue nom +monologues monologue nom +monologuist monologuist nom +monologuists monologuist nom +monomania monomania nom +monomaniac monomaniac nom +monomaniacs monomaniac nom +monomanias monomania nom +monomer monomer nom +monomers monomer nom +mononucleoses mononucleosis nom +mononucleosis mononucleosis nom +monoplane monoplane nom +monoplanes monoplane nom +monopolies monopoly nom +monopolisation monopolisation nom +monopolisations monopolisation nom +monopolist monopolist nom +monopolists monopolist nom +monopolization monopolization nom +monopolizations monopolization nom +monopolize monopolize ver +monopolized monopolize ver +monopolizer monopolizer nom +monopolizers monopolizer nom +monopolizes monopolize ver +monopolizing monopolize ver +monopoly monopoly nom +monopsonies monopsony nom +monopsony monopsony nom +monorail monorail nom +monorails monorail nom +monos mono nom +monosaccharide monosaccharide nom +monosaccharides monosaccharide nom +monosemies monosemy nom +monosemy monosemy nom +monosyllable monosyllable nom +monosyllables monosyllable nom +monotheism monotheism nom +monotheisms monotheism nom +monotheist monotheist nom +monotheists monotheist nom +monotone monotone nom +monotones monotone nom +monotonies monotony nom +monotonousness monotonousness nom +monotonousnesses monotonousness nom +monotony monotony nom +monotreme monotreme nom +monotremes monotreme nom +monotype monotype nom +monotypes monotype nom +monoxide monoxide nom +monoxides monoxide nom +monseigneur monseigneur nom +monsieur monsieur nom +monsignor monsignor nom +monsignors monsignor nom +monsoon monsoon nom +monsoons monsoon nom +monster monster nom +monstera monstera nom +monsteras monstera nom +monsters monster nom +monstrance monstrance nom +monstrances monstrance nom +monstrosities monstrosity nom +monstrosity monstrosity nom +montage montage nom +montaged montage ver +montages montage nom +montaging montage ver +monte monte nom +montes monte nom +month month nom +monthlies monthly nom +monthly monthly nom +months month nom +monument monument nom +monumentalize monumentalize ver +monumentalized monumentalize ver +monumentalizes monumentalize ver +monumentalizing monumentalize ver +monumented monument ver +monumenting monument ver +monuments monument nom +moo moo nom +mooch mooch nom +mooched mooch ver +moocher moocher nom +moochers moocher nom +mooches mooch nom +mooching mooch ver +mood mood nom +moodier moody adj +moodiest moody adj +moodiness moodiness nom +moodinesses moodiness nom +moods mood nom +moody moody adj +mooed moo ver +mooing moo ver +moolah moolah nom +moolahs moolah nom +moon moon nom +moonbeam moonbeam nom +moonbeams moonbeam nom +mooned moon ver +mooneye mooneye nom +mooneyes mooneye nom +moonfish moonfish nom +moonflower moonflower nom +moonflowers moonflower nom +moonier moony adj +mooniest moony adj +mooning moon ver +moonlight moonlight nom +moonlighted moonlight ver +moonlighter moonlighter nom +moonlighters moonlighter nom +moonlighting moonlight ver +moonlightings moonlighting nom +moonlights moonlight nom +moons moon nom +moonscape moonscape nom +moonscapes moonscape nom +moonseed moonseed nom +moonseeds moonseed nom +moonshine moonshine nom +moonshiner moonshiner nom +moonshiners moonshiner nom +moonshines moonshine nom +moonshot moonshot nom +moonshots moonshot nom +moonstone moonstone nom +moonstones moonstone nom +moonwalk moonwalk nom +moonwalked moonwalk ver +moonwalking moonwalk ver +moonwalks moonwalk nom +moonwort moonwort nom +moonworts moonwort nom +moony moony adj +moor moor nom +moorage moorage nom +moorages moorage nom +moorcock moorcock nom +moorcocks moorcock nom +moored moor ver +moorfowl moorfowl nom +moorhen moorhen nom +moorhens moorhen nom +mooring moor ver +moorings mooring nom +moorland moorland nom +moorlands moorland nom +moors moor nom +moorwort moorwort nom +moorworts moorwort nom +moos moo nom +moose moose nom +moosewood moosewood nom +moosewoods moosewood nom +moot moot adj +mooted moot ver +mooter moot adj +mootest moot adj +mooting moot ver +moots moot nom +mop mop nom +mopboard mopboard nom +mopboards mopboard nom +mope mope nom +moped mope ver +mopeds moped nom +moper moper nom +mopers moper nom +mopes mope nom +mopey mopey adj +mopier mopey adj +mopiest mopey adj +moping mope ver +mopped mop ver +moppet moppet nom +moppets moppet nom +mopping mop ver +mops mop nom +mopy mopy adj +moquette moquette nom +moquettes moquette nom +moraine moraine nom +moraines moraine nom +moral moral nom +morale morale nom +morales morale nom +moralise moralise ver +moralised moralise ver +moralises moralise ver +moralising moralise ver +moralist moralist nom +moralists moralist nom +moralities morality nom +morality morality nom +moralization moralization nom +moralizations moralization nom +moralize moralize ver +moralized moralize ver +moralizer moralizer nom +moralizers moralizer nom +moralizes moralize ver +moralizing moralize ver +morals moral nom +morass morass nom +morasses morass nom +moratorium moratorium nom +moratoriums moratorium nom +moray moray nom +morays moray nom +morbidities morbidity nom +morbidity morbidity nom +morbidness morbidness nom +morbidnesses morbidness nom +mordancies mordancy nom +mordancy mordancy nom +mordant mordant nom +mordanted mordant ver +mordanting mordant ver +mordants mordant nom +more more sw +morel morel nom +morello morello nom +morellos morello nom +morels morel nom +moreover moreover sw +mores more nom +morganite morganite nom +morganites morganite nom +morgen morgen nom +morgens morgen nom +morgue morgue nom +morgues morgue nom +morion morion nom +morions morion nom +morn morn nom +morning morning nom +mornings morning nom +morns morn nom +morocco morocco nom +moroccos morocco nom +moron moron nom +moronities moronity nom +moronity moronity nom +morons moron nom +morose morose adj +moroseness moroseness nom +morosenesses moroseness nom +moroser morose adj +morosest morose adj +morph morph nom +morphallaxes morphallaxis nom +morphallaxis morphallaxis nom +morphed morph ver +morpheme morpheme nom +morphemes morpheme nom +morphia morphia nom +morphias morphia nom +morphine morphine nom +morphines morphine nom +morphing morph ver +morphings morphing nom +morphologies morphology nom +morphology morphology nom +morphophoneme morphophoneme nom +morphophonemes morphophoneme nom +morphs morph nom +morrow morrow nom +morrows morrow nom +morsel morsel nom +morseled morsel ver +morseling morsel ver +morsels morsel nom +mortal mortal nom +mortalities mortality nom +mortality mortality nom +mortals mortal nom +mortar mortar nom +mortarboard mortarboard nom +mortarboards mortarboard nom +mortared mortar ver +mortaring mortar ver +mortars mortar nom +mortgage mortgage nom +mortgaged mortgage ver +mortgagee mortgagee nom +mortgagees mortgagee nom +mortgager mortgager nom +mortgagers mortgager nom +mortgages mortgage nom +mortgaging mortgage ver +mortgagor mortgagor nom +mortgagors mortgagor nom +mortice mortice nom +morticed mortice ver +mortices mortice nom +mortician mortician nom +morticians mortician nom +morticing mortice ver +mortification mortification nom +mortifications mortification nom +mortified mortify ver +mortifies mortify ver +mortify mortify ver +mortifying mortify ver +mortise mortise nom +mortised mortise ver +mortises mortise nom +mortising mortise ver +mortmain mortmain nom +mortmains mortmain nom +mortuaries mortuary nom +mortuary mortuary nom +mosaic mosaic nom +mosaicked mosaic ver +mosaicking mosaic ver +mosaics mosaic nom +mosey mosey ver +moseyed mosey ver +moseying mosey ver +moseys mosey ver +mosh mosh ver +moshed mosh ver +moshes mosh ver +moshing mosh ver +mosque mosque nom +mosques mosque nom +mosquito mosquito nom +mosquitoes mosquito nom +mosquitofish mosquitofish nom +moss moss nom +mossback mossback nom +mossbacks mossback nom +mossed moss ver +mosses moss nom +mossier mossy adj +mossiest mossy adj +mossing moss ver +mossy mossy adj +most most sw +mostly mostly sw +mosts most nom +mot mot nom +mote mote nom +motel motel nom +motels motel nom +motes mote nom +motet motet nom +motets motet nom +moth moth nom +mothball mothball nom +mothballed mothball ver +mothballing mothball ver +mothballs mothball nom +mother mother nom +motherboard motherboard nom +motherboards motherboard nom +mothered mother ver +motherfucker motherfucker nom +motherfuckers motherfucker nom +motherhood motherhood nom +motherhoods motherhood nom +mothering mother ver +motherland motherland nom +motherlands motherland nom +motherliness motherliness nom +motherlinesses motherliness nom +mothers mother nom +motherwort motherwort nom +motherworts motherwort nom +mothproof mothproof ver +mothproofed mothproof ver +mothproofing mothproof ver +mothproofs mothproof ver +moths moth nom +motif motif nom +motifs motif nom +motile motile nom +motiles motile nom +motilities motility nom +motility motility nom +motion motion nom +motioned motion ver +motioning motion ver +motionlessness motionlessness nom +motionlessnesses motionlessness nom +motions motion nom +motivate motivate ver +motivated motivate ver +motivates motivate ver +motivating motivate ver +motivation motivation nom +motivations motivation nom +motivator motivator nom +motivators motivator nom +motive motive nom +motived motive ver +motives motive nom +motiving motive ver +motivities motivity nom +motivity motivity nom +motley motley adj +motleys motley nom +motlier motley adj +motliest motley adj +motmot motmot nom +motmots motmot nom +motocross motocross nom +motocrosses motocross nom +motor motor nom +motorbike motorbike nom +motorbiked motorbike ver +motorbikes motorbike nom +motorbiking motorbike ver +motorboat motorboat nom +motorboats motorboat nom +motorbus motorbus nom +motorbuses motorbus nom +motorcade motorcade nom +motorcaded motorcade ver +motorcades motorcade nom +motorcading motorcade ver +motorcar motorcar nom +motorcars motorcar nom +motorcycle motorcycle nom +motorcycled motorcycle ver +motorcycles motorcycle nom +motorcycling motorcycle ver +motorcyclist motorcyclist nom +motorcyclists motorcyclist nom +motored motor ver +motoring motor ver +motorings motoring nom +motorisation motorisation nom +motorisations motorisation nom +motorist motorist nom +motorists motorist nom +motorization motorization nom +motorizations motorization nom +motorize motorize ver +motorized motorize ver +motorizes motorize ver +motorizing motorize ver +motorman motorman nom +motormen motorman nom +motormouth motormouth nom +motormouths motormouth nom +motors motor nom +motortruck motortruck nom +motortrucks motortruck nom +motorway motorway nom +motorways motorway nom +mots mot nom +mottle mottle nom +mottled mottle ver +mottles mottle nom +mottling mottle ver +motto motto nom +mottoes motto nom +moue moue nom +moues moue nom +moufflon moufflon nom +moufflons moufflon nom +mouflon mouflon nom +mouflons mouflon nom +moujik moujik nom +moujiks moujik nom +mould mould nom +moulded mould ver +moulder moulder nom +mouldered moulder ver +mouldering moulder ver +moulders moulder nom +mouldier mouldy adj +mouldiest mouldy adj +moulding mould ver +mouldings moulding nom +moulds mould nom +mouldy mouldy adj +moult moult nom +moulted moult ver +moulting moult ver +moultings moulting nom +moults moult nom +mound mound nom +moundbird moundbird nom +moundbirds moundbird nom +mounded mound ver +mounding mound ver +mounds mound nom +mount mount nom +mountain mountain nom +mountaineer mountaineer nom +mountaineered mountaineer ver +mountaineering mountaineer ver +mountaineerings mountaineering nom +mountaineers mountaineer nom +mountains mountain nom +mountainside mountainside nom +mountainsides mountainside nom +mountaintop mountaintop nom +mountaintops mountaintop nom +mountebank mountebank nom +mountebanked mountebank ver +mountebanking mountebank ver +mountebanks mountebank nom +mounted mount ver +mounter mounter nom +mounters mounter nom +mounting mount ver +mountings mounting nom +mounts mount nom +mourn mourn ver +mourned mourn ver +mourner mourner nom +mourners mourner nom +mournful mournful adj +mournfuller mournful adj +mournfullest mournful adj +mournfulness mournfulness nom +mournfulnesses mournfulness nom +mourning mourn ver +mournings mourning nom +mourns mourn ver +mouse mouse nom +moused mouse ver +mouser mouser nom +mousers mouser nom +mouses mouse ver +mousetrap mousetrap nom +mousetrapped mousetrap ver +mousetrapping mousetrap ver +mousetraps mousetrap nom +mousey mousey adj +mousier mousey adj +mousiest mousey adj +mousiness mousiness nom +mousinesses mousiness nom +mousing mouse ver +moussaka moussaka nom +moussakas moussaka nom +mousse mousse nom +moussed mousse ver +mousses mousse nom +moussing mousse ver +moustache moustache nom +moustaches moustache nom +moustachio moustachio nom +moustachios moustachio nom +mousy mousy adj +mouth mouth nom +mouthbreeder mouthbreeder nom +mouthbreeders mouthbreeder nom +mouthed mouth ver +mouthful mouthful nom +mouthfuls mouthful nom +mouthier mouthy adj +mouthiest mouthy adj +mouthiness mouthiness nom +mouthinesses mouthiness nom +mouthing mouth ver +mouthpart mouthpart nom +mouthparts mouthpart nom +mouthpiece mouthpiece nom +mouthpieces mouthpiece nom +mouths mouth nom +mouthwash mouthwash nom +mouthwashes mouthwash nom +mouthy mouthy adj +mouton mouton nom +moutons mouton nom +movabilities movability nom +movability movability nom +movable movable nom +movableness movableness nom +movablenesses movableness nom +movables movable nom +move move nom +moveable moveable nom +moveables moveable nom +moved move ver +movement movement nom +movements movement nom +mover mover nom +movers mover nom +moves move nom +movie movie nom +moviegoer moviegoer nom +moviegoers moviegoer nom +movies movie nom +moving move ver +mow mow nom +mowed mow ver +mower mower nom +mowers mower nom +mowing mow ver +mows mow nom +moxie moxie nom +moxies moxie nom +mozzarella mozzarella nom +mozzarellas mozzarella nom +ms m nom +mu mu nom +much much sw +muches much nom +muchness muchness nom +muchnesses muchness nom +mucilage mucilage nom +mucilages mucilage nom +mucin mucin nom +mucins mucin nom +muck muck nom +mucked muck ver +muckheap muckheap nom +muckheaps muckheap nom +muckier mucky adj +muckiest mucky adj +mucking muck ver +muckle muckle nom +muckles muckle nom +muckrake muckrake ver +muckraked muckrake ver +muckraker muckraker nom +muckrakers muckraker nom +muckrakes muckrake ver +muckraking muckrake ver +mucks muck nom +mucky mucky adj +mucor mucor nom +mucors mucor nom +mucosa mucosa nom +mucosas mucosa nom +mucus mucus nom +mucuses mucus nom +mud mud nom +mudcat mudcat nom +mudcats mudcat nom +mudded mud ver +muddied muddy ver +muddier muddy adj +muddies muddy ver +muddiest muddy adj +muddiness muddiness nom +muddinesses muddiness nom +mudding mud ver +muddle muddle nom +muddled muddle ver +muddles muddle nom +muddling muddle ver +muddy muddy adj +muddying muddy ver +mudflat mudflat nom +mudflats mudflat nom +mudguard mudguard nom +mudguards mudguard nom +mudra mudra nom +mudras mudra nom +mudroom mudroom nom +mudrooms mudroom nom +muds mud nom +mudskipper mudskipper nom +mudskippers mudskipper nom +mudslide mudslide nom +mudslides mudslide nom +mudslinger mudslinger nom +mudslingers mudslinger nom +mudslinging mudslinging nom +mudslingings mudslinging nom +muenster muenster nom +muensters muenster nom +muesli muesli nom +mueslis muesli nom +muezzin muezzin nom +muezzins muezzin nom +muff muff nom +muffed muff ver +muffin muffin nom +muffing muff ver +muffins muffin nom +muffle muffle nom +muffled muffle ver +muffler muffler nom +mufflers muffler nom +muffles muffle nom +muffling muffle ver +muffs muff nom +mufti mufti nom +muftis mufti nom +mug mug nom +mugful mugful nom +mugfuls mugful nom +mugged mug ver +muggee muggee nom +muggees muggee nom +mugger mugger nom +muggered mugger ver +muggering mugger ver +muggers mugger nom +muggier muggy adj +muggiest muggy adj +mugginess mugginess nom +mugginesses mugginess nom +mugging mug ver +muggings mugging nom +muggins muggins nom +mugginses muggins nom +muggy muggy adj +mugs mug nom +mugshot mugshot nom +mugshots mugshot nom +mugwort mugwort nom +mugworts mugwort nom +mugwump mugwump nom +mugwumps mugwump nom +mujik mujik nom +mujiks mujik nom +mukluk mukluk nom +mukluks mukluk nom +mulatto mulatto nom +mulattoes mulatto nom +mulberries mulberry nom +mulberry mulberry nom +mulch mulch nom +mulched mulch ver +mulches mulch nom +mulching mulch ver +mulct mulct nom +mulcted mulct ver +mulcting mulct ver +mulcts mulct nom +mule mule nom +mules mule nom +muleskinner muleskinner nom +muleskinners muleskinner nom +muleteer muleteer nom +muleteers muleteer nom +mulishness mulishness nom +mulishnesses mulishness nom +mull mull nom +mullah mullah nom +mullahs mullah nom +mulled mull ver +mullein mullein nom +mulleins mullein nom +mullet mullet nom +mullets mullet nom +mulligan mulligan nom +mulligans mulligan nom +mulligatawnies mulligatawny nom +mulligatawny mulligatawny nom +mulling mull ver +mullion mullion nom +mullioned mullion ver +mullioning mullion ver +mullions mullion nom +mulls mull nom +multiculturalism multiculturalism nom +multiculturalisms multiculturalism nom +multifariousness multifariousness nom +multifariousnesses multifariousness nom +multilingualism multilingualism nom +multilingualisms multilingualism nom +multimedia multimedia nom +multimedias multimedia nom +multimillionaire multimillionaire nom +multimillionaires multimillionaire nom +multinational multinational nom +multinationals multinational nom +multiple multiple nom +multiples multiple nom +multiplex multiplex nom +multiplexed multiplex ver +multiplexer multiplexer nom +multiplexers multiplexer nom +multiplexes multiplex nom +multiplexing multiplex ver +multiplexor multiplexor nom +multiplexors multiplexor nom +multiplicand multiplicand nom +multiplicands multiplicand nom +multiplication multiplication nom +multiplications multiplication nom +multiplicities multiplicity nom +multiplicity multiplicity nom +multiplied multiply ver +multiplier multiplier nom +multipliers multiplier nom +multiplies multiply ver +multiply multiply ver +multiplying multiply ver +multiprocessing multiprocessing nom +multiprocessings multiprocessing nom +multiprocessor multiprocessor nom +multiprocessors multiprocessor nom +multiprogramming multiprogramming nom +multiprogrammings multiprogramming nom +multitasking multitasking nom +multitaskings multitasking nom +multitude multitude nom +multitudes multitude nom +multitudinousness multitudinousness nom +multitudinousnesses multitudinousness nom +multivitamin multivitamin nom +multivitamins multivitamin nom +mum mum nom +mumble mumble nom +mumbled mumble ver +mumbler mumbler nom +mumblers mumbler nom +mumbles mumble nom +mumbletypeg mumbletypeg nom +mumbletypegs mumbletypeg nom +mumbling mumble ver +mumblings mumbling nom +mummed mum ver +mummer mummer nom +mummeries mummery nom +mummers mummer nom +mummery mummery nom +mummichog mummichog nom +mummichogs mummichog nom +mummied mummy ver +mummies mummy nom +mummification mummification nom +mummifications mummification nom +mummified mummify ver +mummifies mummify ver +mummify mummify ver +mummifying mummify ver +mumming mum ver +mummy mummy nom +mummying mummy ver +mums mum nom +munch munch ver +munched munch ver +munches munch ver +munching munch ver +mundane mundane adj +mundaner mundane adj +mundanest mundane adj +mung mung nom +mungs mung nom +municipal municipal nom +municipalities municipality nom +municipality municipality nom +municipals municipal nom +munificence munificence nom +munificences munificence nom +munition munition nom +munitioned munition ver +munitioning munition ver +munitions munition nom +muntjac muntjac nom +muntjacs muntjac nom +muon muon nom +muons muon nom +mural mural nom +muralist muralist nom +muralists muralist nom +murals mural nom +murder murder nom +murdered murder ver +murderer murderer nom +murderers murderer nom +murderess murderess nom +murderesses murderess nom +murdering murder ver +murderousness murderousness nom +murderousnesses murderousness nom +murders murder nom +murk murk adj +murker murk adj +murkest murk adj +murkier murky adj +murkiest murky adj +murkiness murkiness nom +murkinesses murkiness nom +murks murk nom +murky murky adj +murmur murmur nom +murmuration murmuration nom +murmurations murmuration nom +murmured murmur ver +murmurer murmurer nom +murmurers murmurer nom +murmuring murmur ver +murmurings murmuring nom +murmurs murmur nom +murphies murphy nom +murphy murphy nom +murrain murrain nom +murrains murrain nom +murre murre nom +murres murre nom +mus mu nom +muscadel muscadel nom +muscadels muscadel nom +muscadine muscadine nom +muscadines muscadine nom +muscat muscat nom +muscatel muscatel nom +muscatels muscatel nom +muscats muscat nom +muscle muscle nom +muscled muscle ver +muscleman muscleman nom +musclemen muscleman nom +muscles muscle nom +muscling muscle ver +muscovite muscovite nom +muscovites muscovite nom +muscularities muscularity nom +muscularity muscularity nom +musculature musculature nom +musculatures musculature nom +muse muse nom +mused muse ver +muses muse nom +musette musette nom +musettes musette nom +museum museum nom +museums museum nom +mush mush nom +mushed mush ver +mushes mush nom +mushier mushy adj +mushiest mushy adj +mushiness mushiness nom +mushinesses mushiness nom +mushing mush ver +mushroom mushroom nom +mushroomed mushroom ver +mushrooming mushroom ver +mushrooms mushroom nom +mushy mushy adj +music music nom +musical musical nom +musicale musicale nom +musicales musicale nom +musicalities musicality nom +musicality musicality nom +musicalness musicalness nom +musicalnesses musicalness nom +musicals musical nom +musician musician nom +musicians musician nom +musicianship musicianship nom +musicianships musicianship nom +musicologies musicology nom +musicologist musicologist nom +musicologists musicologist nom +musicology musicology nom +musics music nom +musing muse ver +musings musing nom +musjid musjid nom +musjids musjid nom +musk musk nom +muskeg muskeg nom +muskegs muskeg nom +muskellunge muskellunge nom +musket musket nom +musketeer musketeer nom +musketeers musketeer nom +musketries musketry nom +musketry musketry nom +muskets musket nom +muskie muskie nom +muskier musky adj +muskies muskie nom +muskiest musky adj +muskiness muskiness nom +muskinesses muskiness nom +muskmelon muskmelon nom +muskmelons muskmelon nom +muskox muskox nom +muskoxen muskox nom +muskrat muskrat nom +muskrats muskrat nom +musks musk nom +musky musky adj +muslin muslin nom +muslins muslin nom +musquash musquash nom +musquashes musquash nom +muss muss nom +mussed muss ver +mussel mussel nom +mussels mussel nom +musses muss nom +mussier mussy adj +mussiest mussy adj +mussiness mussiness nom +mussinesses mussiness nom +mussing muss ver +mussitate mussitate ver +mussitated mussitate ver +mussitates mussitate ver +mussitating mussitate ver +mussy mussy adj +must must sw +mustache mustache nom +mustaches mustache nom +mustachio mustachio nom +mustachios mustachio nom +mustang mustang nom +mustangs mustang nom +mustard mustard nom +mustards mustard nom +musted must ver +mustelid mustelid nom +mustelids mustelid nom +musteline musteline nom +mustelines musteline nom +muster muster nom +mustered muster ver +mustering muster ver +musters muster nom +mustier musty adj +musties musty nom +mustiest musty adj +mustiness mustiness nom +mustinesses mustiness nom +musting must ver +musts must nom +musty musty adj +mut mut nom +mutabilities mutability nom +mutability mutability nom +mutableness mutableness nom +mutablenesses mutableness nom +mutagen mutagen nom +mutagens mutagen nom +mutant mutant nom +mutants mutant nom +mutate mutate ver +mutated mutate ver +mutates mutate ver +mutating mutate ver +mutation mutation nom +mutations mutation nom +mutchkin mutchkin nom +mutchkins mutchkin nom +mute mute adj +muted mute ver +muteness muteness nom +mutenesses muteness nom +muter mute adj +mutes mute nom +mutest mute adj +mutilate mutilate ver +mutilated mutilate ver +mutilates mutilate ver +mutilating mutilate ver +mutilation mutilation nom +mutilations mutilation nom +mutilator mutilator nom +mutilators mutilator nom +mutineer mutineer nom +mutineers mutineer nom +muting mute ver +mutinied mutiny ver +mutinies mutiny nom +mutiny mutiny nom +mutinying mutiny ver +muts mut nom +mutt mutt nom +mutter mutter nom +muttered mutter ver +mutterer mutterer nom +mutterers mutterer nom +muttering mutter ver +mutterings muttering nom +mutters mutter nom +mutton mutton nom +muttonfish muttonfish nom +muttonhead muttonhead nom +muttonheads muttonhead nom +muttons mutton nom +mutts mutt nom +mutual mutual nom +mutualities mutuality nom +mutuality mutuality nom +mutuals mutual nom +muumuu muumuu nom +muumuus muumuu nom +muzhik muzhik nom +muzhiks muzhik nom +muzjik muzjik nom +muzjiks muzjik nom +muzzier muzzy adj +muzziest muzzy adj +muzzle muzzle nom +muzzled muzzle ver +muzzles muzzle nom +muzzling muzzle ver +muzzy muzzy adj +my my sw +myalgia myalgia nom +myalgias myalgia nom +mycelia mycelium nom +mycelium mycelium nom +mycobacteria mycobacterium nom +mycobacterium mycobacterium nom +mycologies mycology nom +mycologist mycologist nom +mycologists mycologist nom +mycology mycology nom +mycophagist mycophagist nom +mycophagists mycophagist nom +mycoplasma mycoplasma nom +mycoplasmas mycoplasma nom +mycoses mycosis nom +mycosis mycosis nom +myelencephalon myelencephalon nom +myelencephalons myelencephalon nom +myelin myelin nom +myeline myeline nom +myelines myeline nom +myelins myelin nom +myelitides myelitis nom +myelitis myelitis nom +myeloblast myeloblast nom +myeloblasts myeloblast nom +myelocyte myelocyte nom +myelocytes myelocyte nom +myelofibroses myelofibrosis nom +myelofibrosis myelofibrosis nom +myeloma myeloma nom +myelomas myeloma nom +mylar mylar nom +mylars mylar nom +mylodon mylodon nom +mylodons mylodon nom +myna myna nom +mynah mynah nom +mynahs mynah nom +mynas myna nom +myocarditis myocarditis nom +myocarditises myocarditis nom +myocardium myocardium nom +myocardiums myocardium nom +myofibril myofibril nom +myofibrils myofibril nom +myoglobin myoglobin nom +myoglobins myoglobin nom +myologies myology nom +myology myology nom +myoma myoma nom +myomas myoma nom +myope myope nom +myopes myope nom +myopia myopia nom +myopias myopia nom +myoses myosis nom +myosin myosin nom +myosins myosin nom +myosis myosis nom +myotonia myotonia nom +myotonias myotonia nom +myriad myriad nom +myriads myriad nom +myriapod myriapod nom +myriapods myriapod nom +myrmecophile myrmecophile nom +myrmecophiles myrmecophile nom +myrmidon myrmidon nom +myrmidons myrmidon nom +myrobalan myrobalan nom +myrobalans myrobalan nom +myrrh myrrh nom +myrrhs myrrh nom +myrtle myrtle nom +myrtles myrtle nom +mys my nom +myself myself sw +mysteries mystery nom +mysteriousness mysteriousness nom +mysteriousnesses mysteriousness nom +mystery mystery nom +mystic mystic nom +mysticism mysticism nom +mysticisms mysticism nom +mystics mystic nom +mystification mystification nom +mystifications mystification nom +mystified mystify ver +mystifies mystify ver +mystify mystify ver +mystifying mystify ver +mystique mystique nom +mystiques mystique nom +myth myth nom +mythologies mythology nom +mythologist mythologist nom +mythologists mythologist nom +mythologize mythologize ver +mythologized mythologize ver +mythologizes mythologize ver +mythologizing mythologize ver +mythology mythology nom +myths myth nom +myxedema myxedema nom +myxedemas myxedema nom +myxobacteria myxobacterium nom +myxobacterium myxobacterium nom +myxomatoses myxomatosis nom +myxomatosis myxomatosis nom +myxomycete myxomycete nom +myxomycetes myxomycete nom +myxovirus myxovirus nom +myxoviruses myxovirus nom +n n sw +nab nab ver +nabbed nab ver +nabbing nab ver +nabob nabob nom +nabobs nabob nom +nabs nab ver +nacelle nacelle nom +nacelles nacelle nom +nacho nacho nom +nachos nacho nom +nacre nacre nom +nacres nacre nom +nada nada nom +nadas nada nom +nadir nadir nom +nadirs nadir nom +nag nag nom +nagged nag ver +nagger nagger nom +naggers nagger nom +nagging nag ver +nags nag nom +naiad naiad nom +naiads naiad nom +nail nail nom +nailbrush nailbrush nom +nailbrushes nailbrush nom +nailed nail ver +nailhead nailhead nom +nailheads nailhead nom +nailing nail ver +nails nail nom +nainsook nainsook nom +nainsooks nainsook nom +naira naira nom +nairas naira nom +naive naive adj +naiveness naiveness nom +naivenesses naiveness nom +naiver naive adj +naivest naive adj +naivete naivete nom +naivetes naivete nom +naiveties naivety nom +naivety naivety nom +naked naked adj +nakeder naked adj +nakedest naked adj +nakedness nakedness nom +nakednesses nakedness nom +name name sw +named name ver +namedrop namedrop ver +namedropped namedrop ver +namedropper namedropper nom +namedroppers namedropper nom +namedropping namedrop ver +namedroppings namedropping nom +namedrops namedrop ver +namelessness namelessness nom +namelessnesses namelessness nom +namely namely sw +nameplate nameplate nom +nameplates nameplate nom +names name nom +namesake namesake nom +namesakes namesake nom +naming name ver +namings naming nom +nanism nanism nom +nanisms nanism nom +nankeen nankeen nom +nankeens nankeen nom +nannies nanny nom +nanny nanny nom +nanometer nanometer nom +nanometers nanometer nom +nanometre nanometre nom +nanometres nanometre nom +nanosecond nanosecond nom +nanoseconds nanosecond nom +nap nap nom +napa napa nom +napalm napalm nom +napalmed napalm ver +napalming napalm ver +napalms napalm nom +napas napa nom +nape nape nom +naperies napery nom +napery napery nom +napes nape nom +naphtha naphtha nom +naphthalene naphthalene nom +naphthalenes naphthalene nom +naphthas naphtha nom +napkin napkin nom +napkins napkin nom +napoleon napoleon nom +napoleons napoleon nom +napped nap ver +napper napper nom +nappers napper nom +nappier nappy adj +nappies nappy nom +nappiest nappy adj +napping nap ver +nappy nappy adj +naprapathies naprapathy nom +naprapathy naprapathy nom +naproxen naproxen nom +naproxens naproxen nom +naps nap nom +narc narc nom +narcism narcism nom +narcisms narcism nom +narcissism narcissism nom +narcissisms narcissism nom +narcissist narcissist nom +narcissists narcissist nom +narcissus narcissus nom +narcist narcist nom +narcists narcist nom +narcolepsies narcolepsy nom +narcolepsy narcolepsy nom +narcoleptic narcoleptic nom +narcoleptics narcoleptic nom +narcoses narcosis nom +narcosis narcosis nom +narcotic narcotic nom +narcotics narcotic nom +narcotization narcotization nom +narcotizations narcotization nom +narcotize narcotize ver +narcotized narcotize ver +narcotizes narcotize ver +narcotizing narcotize ver +narcs narc nom +nard nard nom +nardoo nardoo nom +nardoos nardoo nom +nards nard nom +nares naris nom +narghile narghile nom +narghiles narghile nom +naris naris nom +nark nark nom +narked nark ver +narking nark ver +narks nark nom +narrate narrate ver +narrated narrate ver +narrates narrate ver +narrating narrate ver +narration narration nom +narrations narration nom +narrative narrative nom +narratives narrative nom +narrator narrator nom +narrators narrator nom +narrow narrow adj +narrowed narrow ver +narrower narrow adj +narrowest narrow adj +narrowing narrow ver +narrowings narrowing nom +narrowness narrowness nom +narrownesses narrowness nom +narrows narrow nom +narthex narthex nom +narthexes narthex nom +narwal narwal nom +narwals narwal nom +narwhal narwhal nom +narwhale narwhale nom +narwhales narwhale nom +narwhals narwhal nom +nasal nasal nom +nasalise nasalise ver +nasalised nasalise ver +nasalises nasalise ver +nasalising nasalise ver +nasalities nasality nom +nasality nasality nom +nasalization nasalization nom +nasalizations nasalization nom +nasalize nasalize ver +nasalized nasalize ver +nasalizes nasalize ver +nasalizing nasalize ver +nasals nasal nom +nascence nascence nom +nascences nascence nom +nascencies nascency nom +nascency nascency nom +nasopharynx nasopharynx nom +nasopharynxes nasopharynx nom +nastier nasty adj +nasties nasty nom +nastiest nasty adj +nastiness nastiness nom +nastinesses nastiness nom +nasturtium nasturtium nom +nasturtiums nasturtium nom +nasty nasty adj +natatorium natatorium nom +natatoriums natatorium nom +nation nation nom +national national nom +nationalisation nationalisation nom +nationalisations nationalisation nom +nationalism nationalism nom +nationalisms nationalism nom +nationalist nationalist nom +nationalists nationalist nom +nationalities nationality nom +nationality nationality nom +nationalization nationalization nom +nationalizations nationalization nom +nationalize nationalize ver +nationalized nationalize ver +nationalizes nationalize ver +nationalizing nationalize ver +nationals national nom +nationhood nationhood nom +nationhoods nationhood nom +nations nation nom +native native nom +nativeness nativeness nom +nativenesses nativeness nom +natives native nom +nativism nativism nom +nativisms nativism nom +nativist nativist nom +nativists nativist nom +nativities nativity nom +nativity nativity nom +natter natter nom +nattered natter ver +nattering natter ver +natterjack natterjack nom +natterjacks natterjack nom +natters natter nom +nattier natty adj +nattiest natty adj +nattiness nattiness nom +nattinesses nattiness nom +natty natty adj +natural natural nom +naturalism naturalism nom +naturalisms naturalism nom +naturalist naturalist nom +naturalists naturalist nom +naturalization naturalization nom +naturalizations naturalization nom +naturalize naturalize ver +naturalized naturalize ver +naturalizes naturalize ver +naturalizing naturalize ver +naturalness naturalness nom +naturalnesses naturalness nom +naturals natural nom +nature nature nom +natures nature nom +naturism naturism nom +naturisms naturism nom +naturist naturist nom +naturists naturist nom +naturopath naturopath nom +naturopathies naturopathy nom +naturopaths naturopath nom +naturopathy naturopathy nom +naught naught nom +naughtier naughty adj +naughtiest naughty adj +naughtiness naughtiness nom +naughtinesses naughtiness nom +naughts naught nom +naughty naughty adj +naumachia naumachia nom +naumachias naumachia nom +naumachies naumachy nom +naumachy naumachy nom +nausea nausea nom +nauseant nauseant nom +nauseants nauseant nom +nauseas nausea nom +nauseate nauseate ver +nauseated nauseate ver +nauseates nauseate ver +nauseating nauseate ver +nauseousness nauseousness nom +nauseousnesses nauseousness nom +nautch nautch nom +nautches nautch nom +nautilus nautilus nom +nautiluses nautilus nom +nave nave nom +navel navel nom +navels navel nom +naves nave nom +navicular navicular nom +naviculars navicular nom +navies navy nom +navigabilities navigability nom +navigability navigability nom +navigate navigate ver +navigated navigate ver +navigates navigate ver +navigating navigate ver +navigation navigation nom +navigations navigation nom +navigator navigator nom +navigators navigator nom +navvies navvy nom +navvy navvy nom +navy navy nom +nay nay nom +nays nay nom +naysayer naysayer nom +naysayers naysayer nom +nd nd sw +neap neap nom +neaps neap nom +near near sw +neared near ver +nearer near adj +nearest near adj +nearing near ver +nearlier nearly adj +nearliest nearly adj +nearly nearly sw +nearness nearness nom +nearnesses nearness nom +nears near ver +nearside nearside nom +nearsides nearside nom +nearsightedness nearsightedness nom +nearsightednesses nearsightedness nom +neat neat nom +neaten neaten ver +neatened neaten ver +neatening neaten ver +neatens neaten ver +neater neat adj +neatest neat adj +neatness neatness nom +neatnesses neatness nom +neb neb nom +nebs neb nom +nebula nebula nom +nebulae nebula nom +nebulousness nebulousness nom +nebulousnesses nebulousness nom +necessaries necessary nom +necessary necessary sw +necessitarian necessitarian nom +necessitarians necessitarian nom +necessitate necessitate ver +necessitated necessitate ver +necessitates necessitate ver +necessitating necessitate ver +necessities necessity nom +necessity necessity nom +neck neck nom +neckband neckband nom +neckbands neckband nom +neckcloth neckcloth nom +neckcloths neckcloth nom +necked neck ver +neckerchief neckerchief nom +neckerchiefs neckerchief nom +necking neck ver +neckings necking nom +necklace necklace nom +necklaced necklace ver +necklaces necklace nom +necklacing necklace ver +necklet necklet nom +necklets necklet nom +neckline neckline nom +necklines neckline nom +neckpiece neckpiece nom +neckpieces neckpiece nom +necks neck nom +necktie necktie nom +neckties necktie nom +necrobioses necrobiosis nom +necrobiosis necrobiosis nom +necrologies necrology nom +necrology necrology nom +necromancer necromancer nom +necromancers necromancer nom +necromancies necromancy nom +necromancy necromancy nom +necrophagia necrophagia nom +necrophagias necrophagia nom +necrophilia necrophilia nom +necrophilias necrophilia nom +necrophilism necrophilism nom +necrophilisms necrophilism nom +necropolis necropolis nom +necropolises necropolis nom +necropsies necropsy nom +necropsy necropsy nom +necrose necrose ver +necrosed necrose ver +necroses necrose ver +necrosing necrose ver +necrosis necrosis nom +nectar nectar nom +nectaries nectary nom +nectarine nectarine nom +nectarines nectarine nom +nectars nectar nom +nectary nectary nom +need need sw +needed need ver +needier needy adj +neediest needy adj +neediness neediness nom +needinesses neediness nom +needing need ver +needle needle nom +needlecraft needlecraft nom +needlecrafts needlecraft nom +needled needle ver +needlefish needlefish nom +needlepoint needlepoint nom +needlepoints needlepoint nom +needles needle nom +needlessness needlessness nom +needlessnesses needlessness nom +needlewoman needlewoman nom +needlewomen needlewoman nom +needlework needlework nom +needleworker needleworker nom +needleworkers needleworker nom +needleworks needlework nom +needling needle ver +needs needs sw +needy needy adj +neem neem nom +neems neem nom +nefariousness nefariousness nom +nefariousnesses nefariousness nom +negate negate ver +negated negate ver +negates negate ver +negating negate ver +negation negation nom +negations negation nom +negative negative nom +negatived negative ver +negativeness negativeness nom +negativenesses negativeness nom +negatives negative nom +negativing negative ver +negativism negativism nom +negativisms negativism nom +negativist negativist nom +negativists negativist nom +negativities negativity nom +negativity negativity nom +neglect neglect nom +neglected neglect ver +neglectfulness neglectfulness nom +neglectfulnesses neglectfulness nom +neglecting neglect ver +neglects neglect nom +neglige neglige nom +negligee negligee nom +negligees negligee nom +negligence negligence nom +negligences negligence nom +negliges neglige nom +negotiabilities negotiability nom +negotiability negotiability nom +negotiable negotiable nom +negotiables negotiable nom +negotiant negotiant nom +negotiants negotiant nom +negotiate negotiate ver +negotiated negotiate ver +negotiates negotiate ver +negotiating negotiate ver +negotiation negotiation nom +negotiations negotiation nom +negotiator negotiator nom +negotiators negotiator nom +negotiatress negotiatress nom +negotiatresses negotiatress nom +negotiatrix negotiatrix nom +negotiatrixes negotiatrix nom +negritude negritude nom +negritudes negritude nom +negus negus nom +neguses negus nom +neigh neigh nom +neighbor neighbor nom +neighbored neighbor ver +neighborhood neighborhood nom +neighborhoods neighborhood nom +neighboring neighbor ver +neighborliness neighborliness nom +neighborlinesses neighborliness nom +neighbors neighbor nom +neighbour neighbour nom +neighboured neighbour ver +neighbourhood neighbourhood nom +neighbourhoods neighbourhood nom +neighbouring neighbour ver +neighbours neighbour nom +neighed neigh ver +neighing neigh ver +neighs neigh nom +neither neither sw +nekton nekton nom +nektons nekton nom +nelson nelson nom +nelsons nelson nom +nematode nematode nom +nematodes nematode nom +nemertean nemertean nom +nemerteans nemertean nom +nemertine nemertine nom +nemertines nemertine nom +nemeses nemesis nom +nemesis nemesis nom +nemophila nemophila nom +nemophilas nemophila nom +neoclassicism neoclassicism nom +neoclassicisms neoclassicism nom +neoclassicist neoclassicist nom +neoclassicists neoclassicist nom +neocolonialism neocolonialism nom +neocolonialisms neocolonialism nom +neocortex neocortex nom +neocortices neocortex nom +neodymium neodymium nom +neodymiums neodymium nom +neoliberal neoliberal nom +neoliberalism neoliberalism nom +neoliberalisms neoliberalism nom +neoliberals neoliberal nom +neolith neolith nom +neoliths neolith nom +neologies neology nom +neologism neologism nom +neologisms neologism nom +neologist neologist nom +neologists neologist nom +neology neology nom +neomycin neomycin nom +neomycins neomycin nom +neon neon nom +neonate neonate nom +neonates neonate nom +neons neon nom +neophyte neophyte nom +neophytes neophyte nom +neoplasia neoplasia nom +neoplasias neoplasia nom +neoplasm neoplasm nom +neoplasms neoplasm nom +neoprene neoprene nom +neoprenes neoprene nom +nepenthe nepenthe nom +nepenthes nepenthe nom +nephew nephew nom +nephews nephew nom +nephoscope nephoscope nom +nephoscopes nephoscope nom +nephrectomies nephrectomy nom +nephrectomy nephrectomy nom +nephrite nephrite nom +nephrites nephrite nom +nephritides nephritis nom +nephritis nephritis nom +nephron nephron nom +nephrons nephron nom +nepotism nepotism nom +nepotisms nepotism nom +nepotist nepotist nom +nepotists nepotist nom +neptunium neptunium nom +neptuniums neptunium nom +nerd nerd nom +nerdier nerdy adj +nerdiest nerdy adj +nerds nerd nom +nerdy nerdy adj +nerve nerve nom +nerved nerve ver +nervelessness nervelessness nom +nervelessnesses nervelessness nom +nerves nerve nom +nervier nervy adj +nerviest nervy adj +nerviness nerviness nom +nervinesses nerviness nom +nerving nerve ver +nervousness nervousness nom +nervousnesses nervousness nom +nervure nervure nom +nervures nervure nom +nervy nervy adj +nescience nescience nom +nesciences nescience nom +ness ness nom +nesses ness nom +nest nest nom +nested nest ver +nester nester nom +nesters nester nom +nesting nest ver +nestle nestle nom +nestled nestle ver +nestles nestle nom +nestling nestle ver +nests nest nom +net net nom +netherworld netherworld nom +netherworlds netherworld nom +nets net nom +nett nett nom +netted net ver +netting net ver +nettings netting nom +nettle nettle nom +nettled nettle ver +nettles nettle nom +nettling nettle ver +netts nett nom +network network nom +networked network ver +networking network ver +networkings networking nom +networks network nom +neuralgia neuralgia nom +neuralgias neuralgia nom +neurasthenia neurasthenia nom +neurasthenias neurasthenia nom +neurasthenic neurasthenic nom +neurasthenics neurasthenic nom +neurectomies neurectomy nom +neurectomy neurectomy nom +neuritic neuritic nom +neuritics neuritic nom +neuritides neuritis nom +neuritis neuritis nom +neuroanatomies neuroanatomy nom +neuroanatomy neuroanatomy nom +neurobiologies neurobiology nom +neurobiology neurobiology nom +neuroblast neuroblast nom +neuroblasts neuroblast nom +neurochemical neurochemical nom +neurochemicals neurochemical nom +neuroglia neuroglia nom +neuroglias neuroglia nom +neurohypophyses neurohypophysis nom +neurohypophysis neurohypophysis nom +neurologies neurology nom +neurologist neurologist nom +neurologists neurologist nom +neurology neurology nom +neuron neuron nom +neurons neuron nom +neurophysiologies neurophysiology nom +neurophysiology neurophysiology nom +neuropsychiatries neuropsychiatry nom +neuropsychiatry neuropsychiatry nom +neuropsychologies neuropsychology nom +neuropsychology neuropsychology nom +neuropteran neuropteran nom +neuropterans neuropteran nom +neuroscience neuroscience nom +neurosciences neuroscience nom +neuroses neurosis nom +neurosis neurosis nom +neurosurgeon neurosurgeon nom +neurosurgeons neurosurgeon nom +neurosurgeries neurosurgery nom +neurosurgery neurosurgery nom +neurotic neurotic nom +neuroticism neuroticism nom +neuroticisms neuroticism nom +neurotics neurotic nom +neurotransmitter neurotransmitter nom +neurotransmitters neurotransmitter nom +neurotropism neurotropism nom +neurotropisms neurotropism nom +neuter neuter nom +neutered neuter ver +neutering neuter ver +neuters neuter nom +neutral neutral nom +neutralism neutralism nom +neutralisms neutralism nom +neutralist neutralist nom +neutralists neutralist nom +neutralities neutrality nom +neutrality neutrality nom +neutralization neutralization nom +neutralizations neutralization nom +neutralize neutralize ver +neutralized neutralize ver +neutralizer neutralizer nom +neutralizers neutralizer nom +neutralizes neutralize ver +neutralizing neutralize ver +neutrals neutral nom +neutrino neutrino nom +neutrinos neutrino nom +neutron neutron nom +neutrons neutron nom +neutrophil neutrophil nom +neutrophils neutrophil nom +never never sw +nevertheless nevertheless sw +nevi nevus nom +nevus nevus nom +new new sw +newbie newbie nom +newbies newbie nom +newborn newborn nom +newborns newborn nom +newcomer newcomer nom +newcomers newcomer nom +newel newel nom +newels newel nom +newer new adj +newest new adj +newlywed newlywed nom +newlyweds newlywed nom +newmarket newmarket nom +newmarkets newmarket nom +newness newness nom +newnesses newness nom +news news nom +newsagent newsagent nom +newsagents newsagent nom +newsboy newsboy nom +newsboys newsboy nom +newscast newscast nom +newscaster newscaster nom +newscasters newscaster nom +newscasts newscast nom +newsdealer newsdealer nom +newsdealers newsdealer nom +newses news nom +newsflash newsflash nom +newsflashes newsflash nom +newsgirl newsgirl nom +newsgirls newsgirl nom +newsier newsy adj +newsies newsy nom +newsiest newsy adj +newsletter newsletter nom +newsletters newsletter nom +newsman newsman nom +newsmen newsman nom +newsmonger newsmonger nom +newsmongers newsmonger nom +newspaper newspaper nom +newspaperman newspaperman nom +newspapermen newspaperman nom +newspapers newspaper nom +newspaperwoman newspaperwoman nom +newspaperwomen newspaperwoman nom +newspeople newsperson nom +newsperson newsperson nom +newsprint newsprint nom +newsprints newsprint nom +newsreel newsreel nom +newsreels newsreel nom +newsroom newsroom nom +newsrooms newsroom nom +newssheet newssheet nom +newssheets newssheet nom +newsstand newsstand nom +newsstands newsstand nom +newsvendor newsvendor nom +newsvendors newsvendor nom +newsweeklies newsweekly nom +newsweekly newsweekly nom +newswoman newswoman nom +newswomen newswoman nom +newsworthier newsworthy adj +newsworthiest newsworthy adj +newsworthiness newsworthiness nom +newsworthinesses newsworthiness nom +newsworthy newsworthy adj +newsy newsy adj +newt newt nom +newton newton nom +newtons newton nom +newts newt nom +next next sw +nexus nexus nom +nexuses nexus nom +ngultrum ngultrum nom +ngultrums ngultrum nom +niacin niacin nom +niacins niacin nom +nib nib nom +nibble nibble nom +nibbled nibble ver +nibbler nibbler nom +nibblers nibbler nom +nibbles nibble nom +nibbling nibble ver +nibblings nibbling nom +niblick niblick nom +niblicks niblick nom +nibs nib nom +nicad nicad nom +nicads nicad nom +nice nice adj +niceness niceness nom +nicenesses niceness nom +nicer nice adj +nicest nice adj +niceties nicety nom +nicety nicety nom +niche niche nom +niched niche ver +niches niche nom +niching niche ver +nick nick nom +nicked nick ver +nickel nickel nom +nickeled nickel ver +nickeling nickel ver +nickelodeon nickelodeon nom +nickelodeons nickelodeon nom +nickels nickel nom +nicker nicker nom +nickered nicker ver +nickering nicker ver +nickers nicker nom +nicking nick ver +nicknack nicknack nom +nicknacks nicknack nom +nickname nickname nom +nicknamed nickname ver +nicknames nickname nom +nicknaming nickname ver +nicks nick nom +nicotine nicotine nom +nicotines nicotine nom +nictate nictate ver +nictated nictate ver +nictates nictate ver +nictating nictate ver +nictitate nictitate ver +nictitated nictitate ver +nictitates nictitate ver +nictitating nictitate ver +nidus nidus nom +niduses nidus nom +niece niece nom +nieces niece nom +niff niff nom +niffier niffy adj +niffiest niffy adj +niffs niff nom +niffy niffy adj +niftier nifty adj +nifties nifty nom +niftiest nifty adj +nifty nifty adj +nigella nigella nom +nigellas nigella nom +niggard niggard nom +niggardliness niggardliness nom +niggardlinesses niggardliness nom +niggards niggard nom +nigger nigger nom +niggered nigger ver +niggering nigger ver +niggers nigger nom +niggle niggle ver +niggled niggle ver +niggler niggler nom +nigglers niggler nom +niggles niggle ver +niggling niggle ver +nigh nigh adj +nighed nigh ver +nigher nigh adj +nighest nigh adj +nighing nigh ver +nighs nigh ver +night night nom +nightbird nightbird nom +nightbirds nightbird nom +nightcap nightcap nom +nightcaps nightcap nom +nightclub nightclub nom +nightclubbed nightclub ver +nightclubbing nightclub ver +nightclubs nightclub nom +nightdress nightdress nom +nightdresses nightdress nom +nightfall nightfall nom +nightfalls nightfall nom +nightgown nightgown nom +nightgowns nightgown nom +nighthawk nighthawk nom +nighthawks nighthawk nom +nightie nightie nom +nighties nightie nom +nightingale nightingale nom +nightingales nightingale nom +nightjar nightjar nom +nightjars nightjar nom +nightlife nightlife nom +nightlifes nightlife nom +nightmare nightmare nom +nightmares nightmare nom +nightrider nightrider nom +nightriders nightrider nom +nights night nom +nightshade nightshade nom +nightshades nightshade nom +nightshirt nightshirt nom +nightshirts nightshirt nom +nightspot nightspot nom +nightspots nightspot nom +nightstand nightstand nom +nightstands nightstand nom +nightstick nightstick nom +nightsticks nightstick nom +nighttime nighttime nom +nighttimes nighttime nom +nightwalker nightwalker nom +nightwalkers nightwalker nom +nightwear nightwear nom +nightwears nightwear nom +nighty nighty nom +nigrified nigrify ver +nigrifies nigrify ver +nigrify nigrify ver +nigrifying nigrify ver +nihil nihil nom +nihilism nihilism nom +nihilisms nihilism nom +nihilist nihilist nom +nihilists nihilist nom +nihils nihil nom +nil nil nom +nilgai nilgai nom +nilgais nilgai nom +nils nil nom +nimbi nimbus nom +nimble nimble adj +nimbleness nimbleness nom +nimblenesses nimbleness nom +nimbler nimble adj +nimblest nimble adj +nimbus nimbus nom +nimieties nimiety nom +nimiety nimiety nom +nincompoop nincompoop nom +nincompoops nincompoop nom +nine nine sw +ninepence ninepence nom +ninepences ninepence nom +ninepin ninepin nom +ninepins ninepin nom +nines nine nom +nineteen nineteen nom +nineteens nineteen nom +nineteenth nineteenth nom +nineteenths nineteenth nom +nineties ninety nom +ninetieth ninetieth nom +ninetieths ninetieth nom +ninety ninety nom +ninja ninja nom +ninjas ninja nom +ninnies ninny nom +ninny ninny nom +ninth ninth nom +ninths ninth nom +niobite niobite nom +niobites niobite nom +niobium niobium nom +niobiums niobium nom +nip nip nom +nipa nipa nom +nipas nipa nom +nipped nip ver +nipper nipper nom +nippers nipper nom +nippier nippy adj +nippiest nippy adj +nippiness nippiness nom +nippinesses nippiness nom +nipping nip ver +nipple nipple nom +nipples nipple nom +nippy nippy adj +nips nip nom +nirvana nirvana nom +nirvanas nirvana nom +nisei nisei nom +nisus nisus nom +nisuses nisus nom +nit nit nom +niter niter nom +niters niter nom +nitpick nitpick ver +nitpicked nitpick ver +nitpicker nitpicker nom +nitpickers nitpicker nom +nitpicking nitpick ver +nitpickings nitpicking nom +nitpicks nitpick ver +nitrate nitrate nom +nitrated nitrate ver +nitrates nitrate nom +nitrating nitrate ver +nitration nitration nom +nitrations nitration nom +nitre nitre nom +nitres nitre nom +nitrification nitrification nom +nitrifications nitrification nom +nitrified nitrify ver +nitrifies nitrify ver +nitrify nitrify ver +nitrifying nitrify ver +nitrile nitrile nom +nitriles nitrile nom +nitrite nitrite nom +nitrites nitrite nom +nitrobenzene nitrobenzene nom +nitrobenzenes nitrobenzene nom +nitrocellulose nitrocellulose nom +nitrocelluloses nitrocellulose nom +nitrogen nitrogen nom +nitrogens nitrogen nom +nitroglycerin nitroglycerin nom +nitroglycerine nitroglycerine nom +nitroglycerines nitroglycerine nom +nitroglycerins nitroglycerin nom +nits nit nom +nitwit nitwit nom +nitwits nitwit nom +nix nix nom +nixed nix ver +nixes nix nom +nixing nix ver +no no sw +nob nob nom +nobble nobble ver +nobbled nobble ver +nobbles nobble ver +nobbling nobble ver +nobelium nobelium nom +nobeliums nobelium nom +nobilities nobility nom +nobility nobility nom +noble noble adj +nobleman nobleman nom +noblemen nobleman nom +nobleness nobleness nom +noblenesses nobleness nom +nobler noble adj +nobles noble nom +noblesse noblesse nom +noblesses noblesse nom +noblest noble adj +noblewoman noblewoman nom +noblewomen noblewoman nom +nobodies nobody nom +nobody nobody sw +nobs nob nom +nock nock ver +nocked nock ver +nocking nock ver +nocks nock ver +noctambulism noctambulism nom +noctambulisms noctambulism nom +noctambulist noctambulist nom +noctambulists noctambulist nom +noctiluca noctiluca nom +noctilucas noctiluca nom +noctuid noctuid nom +noctuids noctuid nom +nocturnal nocturnal nom +nocturnals nocturnal nom +nocturne nocturne nom +nocturnes nocturne nom +nod nod nom +nodded nod ver +nodding nod ver +noddle noddle nom +noddles noddle nom +node node nom +nodes node nom +nods nod nom +nodule nodule nom +nodules nodule nom +noel noel nom +noels noel nom +noes no nom +nog nog nom +noggin noggin nom +nogging nogging nom +noggings nogging nom +noggins noggin nom +nogs nog nom +noise noise nom +noised noise ver +noiselessness noiselessness nom +noiselessnesses noiselessness nom +noisemaker noisemaker nom +noisemakers noisemaker nom +noises noise nom +noisier noisy adj +noisiest noisy adj +noisiness noisiness nom +noisinesses noisiness nom +noising noise ver +noisomeness noisomeness nom +noisomenesses noisomeness nom +noisy noisy adj +nomad nomad nom +nomads nomad nom +nombril nombril nom +nombrils nombril nom +nomenclature nomenclature nom +nomenclatures nomenclature nom +nomenklatura nomenklatura nom +nomenklaturas nomenklatura nom +nominal nominal nom +nominalism nominalism nom +nominalisms nominalism nom +nominals nominal nom +nominate nominate ver +nominated nominate ver +nominates nominate ver +nominating nominate ver +nomination nomination nom +nominations nomination nom +nominative nominative nom +nominatives nominative nom +nominator nominator nom +nominators nominator nom +nominee nominee nom +nominees nominee nom +nomogram nomogram nom +nomograms nomogram nom +nomograph nomograph nom +nomographs nomograph nom +non non sw +nonabsorbent nonabsorbent nom +nonabsorbents nonabsorbent nom +nonacademic nonacademic nom +nonacademics nonacademic nom +nonacceptance nonacceptance nom +nonacceptances nonacceptance nom +nonachievement nonachievement nom +nonachievements nonachievement nom +nonactive nonactive nom +nonactives nonactive nom +nonage nonage nom +nonagenarian nonagenarian nom +nonagenarians nonagenarian nom +nonages nonage nom +nonaggression nonaggression nom +nonaggressions nonaggression nom +nonagon nonagon nom +nonagons nonagon nom +nonalignment nonalignment nom +nonalignments nonalignment nom +nonappearance nonappearance nom +nonappearances nonappearance nom +nonattendance nonattendance nom +nonattendances nonattendance nom +nonattender nonattender nom +nonattenders nonattender nom +nonavailabilities nonavailability nom +nonavailability nonavailability nom +nonbeing nonbeing nom +nonbeings nonbeing nom +nonbeliever nonbeliever nom +nonbelievers nonbeliever nom +nonbelligerent nonbelligerent nom +nonbelligerents nonbelligerent nom +noncandidate noncandidate nom +noncandidates noncandidate nom +nonce nonce nom +nonces nonce nom +nonchalance nonchalance nom +nonchalances nonchalance nom +noncitizen noncitizen nom +noncitizens noncitizen nom +nonclerical nonclerical nom +nonclericals nonclerical nom +noncom noncom nom +noncombatant noncombatant nom +noncombatants noncombatant nom +noncombustible noncombustible nom +noncombustibles noncombustible nom +noncommercial noncommercial nom +noncommercials noncommercial nom +noncompliance noncompliance nom +noncompliances noncompliance nom +noncoms noncom nom +nonconductor nonconductor nom +nonconductors nonconductor nom +nonconformance nonconformance nom +nonconformances nonconformance nom +nonconformist nonconformist nom +nonconformists nonconformist nom +nonconformities nonconformity nom +nonconformity nonconformity nom +noncontributories noncontributory nom +noncontributory noncontributory nom +noncooperation noncooperation nom +noncooperations noncooperation nom +noncriminal noncriminal nom +noncriminals noncriminal nom +nondeliveries nondelivery nom +nondelivery nondelivery nom +nondescript nondescript nom +nondescripts nondescript nom +nondevelopment nondevelopment nom +nondevelopments nondevelopment nom +nondiscrimination nondiscrimination nom +nondiscriminations nondiscrimination nom +nondrinker nondrinker nom +nondrinkers nondrinker nom +nondriver nondriver nom +nondrivers nondriver nom +none none sw +noneffective noneffective nom +noneffectives noneffective nom +nonelectric nonelectric nom +nonelectrics nonelectric nom +nonentities nonentity nom +nonentity nonentity nom +nonequivalence nonequivalence nom +nonequivalences nonequivalence nom +nonequivalent nonequivalent nom +nonequivalents nonequivalent nom +nonessential nonessential nom +nonessentials nonessential nom +nonesuch nonesuch nom +nonesuches nonesuch nom +nonevent nonevent nom +nonevents nonevent nom +nonexempt nonexempt nom +nonexempts nonexempt nom +nonexistence nonexistence nom +nonexistences nonexistence nom +nonexplosive nonexplosive nom +nonexplosives nonexplosive nom +nonfeasance nonfeasance nom +nonfeasances nonfeasance nom +nonfiction nonfiction nom +nonfictions nonfiction nom +nonfood nonfood nom +nonfoods nonfood nom +nonintellectual nonintellectual nom +nonintellectuals nonintellectual nom +noninterference noninterference nom +noninterferences noninterference nom +nonintervention nonintervention nom +noninterventions nonintervention nom +nonliving nonliving nom +nonlivings nonliving nom +nonmember nonmember nom +nonmembers nonmember nom +nonmetal nonmetal nom +nonmetals nonmetal nom +nonmilitant nonmilitant nom +nonmilitants nonmilitant nom +nonnarcotic nonnarcotic nom +nonnarcotics nonnarcotic nom +nonnative nonnative nom +nonnatives nonnative nom +nonobservance nonobservance nom +nonobservances nonobservance nom +nonoccurence nonoccurence nom +nonoccurences nonoccurence nom +nonoccurrence nonoccurrence nom +nonoccurrences nonoccurrence nom +nonparallel nonparallel nom +nonparallels nonparallel nom +nonpareil nonpareil nom +nonpareils nonpareil nom +nonparticipant nonparticipant nom +nonparticipants nonparticipant nom +nonparticipation nonparticipation nom +nonparticipations nonparticipation nom +nonpartisan nonpartisan nom +nonpartisans nonpartisan nom +nonpartisanship nonpartisanship nom +nonpartisanships nonpartisanship nom +nonpayment nonpayment nom +nonpayments nonpayment nom +nonperformance nonperformance nom +nonperformances nonperformance nom +nonperishable nonperishable nom +nonperishables nonperishable nom +nonperson nonperson nom +nonpersons nonperson nom +nonplus nonplus nom +nonpluses nonplus nom +nonplussed nonplus ver +nonplussing nonplus ver +nonprofessional nonprofessional nom +nonprofessionals nonprofessional nom +nonprofit nonprofit nom +nonprofits nonprofit nom +nonproliferation nonproliferation nom +nonproliferations nonproliferation nom +nonreciprocal nonreciprocal nom +nonreciprocals nonreciprocal nom +nonrecognition nonrecognition nom +nonrecognitions nonrecognition nom +nonresident nonresident nom +nonresidents nonresident nom +nonresidual nonresidual nom +nonresiduals nonresidual nom +nonresistance nonresistance nom +nonresistances nonresistance nom +nonresistant nonresistant nom +nonresistants nonresistant nom +nonreturnable nonreturnable nom +nonreturnables nonreturnable nom +nonsense nonsense nom +nonsenses nonsense nom +nonsensicalities nonsensicality nom +nonsensicality nonsensicality nom +nonsmoker nonsmoker nom +nonsmokers nonsmoker nom +nonspecialist nonspecialist nom +nonspecialists nonspecialist nom +nonspiritual nonspiritual nom +nonspirituals nonspiritual nom +nonstarter nonstarter nom +nonstarters nonstarter nom +nonstop nonstop nom +nonstops nonstop nom +nonsuch nonsuch nom +nonsuches nonsuch nom +nonsupport nonsupport nom +nonsupports nonsupport nom +nonsympathizer nonsympathizer nom +nonsympathizers nonsympathizer nom +nontaxable nontaxable nom +nontaxables nontaxable nom +nonthinking nonthinking nom +nonthinkings nonthinking nom +nonuniformities nonuniformity nom +nonuniformity nonuniformity nom +nonunion nonunion nom +nonunions nonunion nom +nonuser nonuser nom +nonusers nonuser nom +nonviolence nonviolence nom +nonviolences nonviolence nom +nonvocal nonvocal nom +nonvocals nonvocal nom +nonvoter nonvoter nom +nonvoters nonvoter nom +nonwhite nonwhite nom +nonwhites nonwhite nom +nonworker nonworker nom +nonworkers nonworker nom +noodle noodle nom +noodled noodle ver +noodles noodle nom +noodling noodle ver +nook nook nom +nookies nooky nom +nooks nook nom +nooky nooky nom +noon noon nom +noonday noonday nom +noondays noonday nom +noone noone sw +noons noon nom +noontide noontide nom +noontides noontide nom +noontime noontime nom +noontimes noontime nom +noose noose nom +noosed noose ver +nooses noose nom +noosing noose ver +nopal nopal nom +nopals nopal nom +nor nor sw +noradrenaline noradrenaline nom +noradrenalines noradrenaline nom +norepinephrine norepinephrine nom +norepinephrines norepinephrine nom +norethindrone norethindrone nom +norethindrones norethindrone nom +noria noria nom +norias noria nom +norm norm nom +normal normal nom +normalcies normalcy nom +normalcy normalcy nom +normalisation normalisation nom +normalisations normalisation nom +normalities normality nom +normality normality nom +normalization normalization nom +normalizations normalization nom +normalize normalize ver +normalized normalize ver +normalizes normalize ver +normalizing normalize ver +normally normally sw +normals normal nom +normothermia normothermia nom +normothermias normothermia nom +norms norm nom +north north nom +northeast northeast nom +northeaster northeaster nom +northeasters northeaster nom +northeasts northeast nom +northeastward northeastward nom +northeastwards northeastward nom +norther norther nom +northerlies northerly nom +northerly northerly nom +northern northern nom +northerner northerner nom +northerners northerner nom +northernness northernness nom +northernnesses northernness nom +northerns northern nom +northers norther nom +northland northland nom +northlands northland nom +norths north nom +northward northward nom +northwards northward nom +northwest northwest nom +northwester northwester nom +northwesters northwester nom +northwests northwest nom +northwestward northwestward nom +northwestwards northwestward nom +nose nose nom +nosebag nosebag nom +nosebags nosebag nom +nosebleed nosebleed nom +nosebleeds nosebleed nom +nosecone nosecone nom +nosecones nosecone nom +nosed nose ver +nosedive nosedive ver +nosedived nosedive ver +nosedives nosedive ver +nosediving nosedive ver +nosegay nosegay nom +nosegays nosegay nom +nosepiece nosepiece nom +nosepieces nosepiece nom +noses nose nom +nosewheel nosewheel nom +nosewheels nosewheel nom +nosey nosey adj +nosh nosh nom +noshed nosh ver +noshes nosh nom +noshing nosh ver +nosier nosey adj +nosiest nosey adj +nosiness nosiness nom +nosinesses nosiness nom +nosing nose ver +nosologies nosology nom +nosology nosology nom +nostalgia nostalgia nom +nostalgias nostalgia nom +nostoc nostoc nom +nostocs nostoc nom +nostril nostril nom +nostrils nostril nom +nostrum nostrum nom +nostrums nostrum nom +nosy nosy adj +not not sw +notabilities notability nom +notability notability nom +notable notable nom +notables notable nom +notaries notary nom +notarization notarization nom +notarizations notarization nom +notarize notarize ver +notarized notarize ver +notarizes notarize ver +notarizing notarize ver +notary notary nom +notate notate ver +notated notate ver +notates notate ver +notating notate ver +notation notation nom +notations notation nom +notch notch nom +notched notch ver +notches notch nom +notching notch ver +note note nom +notebook notebook nom +notebooks notebook nom +notecase notecase nom +notecases notecase nom +noted note ver +notepad notepad nom +notepads notepad nom +notepaper notepaper nom +notepapers notepaper nom +notes note nom +noteworthier noteworthy adj +noteworthiest noteworthy adj +noteworthiness noteworthiness nom +noteworthinesses noteworthiness nom +noteworthy noteworthy adj +nothing nothing sw +nothingness nothingness nom +nothingnesses nothingness nom +nothings nothing nom +notice notice nom +noticeabilities noticeability nom +noticeability noticeability nom +noticed notice ver +notices notice nom +noticing notice ver +notification notification nom +notifications notification nom +notified notify ver +notifier notifier nom +notifiers notifier nom +notifies notify ver +notify notify ver +notifying notify ver +noting note ver +notion notion nom +notions notion nom +notochord notochord nom +notochords notochord nom +notorieties notoriety nom +notoriety notoriety nom +notornis notornis nom +notornises notornis nom +nougat nougat nom +nougats nougat nom +nought nought nom +noughts nought nom +noumena noumenon nom +noumenon noumenon nom +noun noun nom +nouns noun nom +nourish nourish ver +nourished nourish ver +nourishes nourish ver +nourishing nourish ver +nourishment nourishment nom +nourishments nourishment nom +nous nous nom +nouses nous nom +nova nova nom +novas nova nom +novel novel sw +novelette novelette nom +novelettes novelette nom +novelisation novelisation nom +novelisations novelisation nom +novelist novelist nom +novelists novelist nom +novelization novelization nom +novelizations novelization nom +novelize novelize ver +novelized novelize ver +novelizes novelize ver +novelizing novelize ver +novella novella nom +novellas novella nom +novels novel nom +novelties novelty nom +novelty novelty nom +novena novena nom +novenas novena nom +novice novice nom +novices novice nom +noviciate noviciate nom +noviciates noviciate nom +novitiate novitiate nom +novitiates novitiate nom +novobiocin novobiocin nom +novobiocins novobiocin nom +novocaine novocaine nom +novocaines novocaine nom +now now sw +nowhere nowhere sw +nowheres nowhere nom +nowness nowness nom +nownesses nowness nom +nows now nom +noxiousness noxiousness nom +noxiousnesses noxiousness nom +nozzle nozzle nom +nozzles nozzle nom +nu nu nom +nuance nuance nom +nuances nuance nom +nub nub nom +nubbier nubby adj +nubbiest nubby adj +nubbin nubbin nom +nubbiness nubbiness nom +nubbinesses nubbiness nom +nubbins nubbin nom +nubblier nubbly adj +nubbliest nubbly adj +nubbly nubbly adj +nubby nubby adj +nubs nub nom +nucellus nucellus nom +nucelluses nucellus nom +nucleate nucleate ver +nucleated nucleate ver +nucleates nucleate ver +nucleating nucleate ver +nucleation nucleation nom +nucleations nucleation nom +nuclei nucleus nom +nucleole nucleole nom +nucleoles nucleole nom +nucleoli nucleolus nom +nucleolus nucleolus nom +nucleon nucleon nom +nucleons nucleon nom +nucleoplasm nucleoplasm nom +nucleoplasms nucleoplasm nom +nucleoside nucleoside nom +nucleosides nucleoside nom +nucleotide nucleotide nom +nucleotides nucleotide nom +nucleus nucleus nom +nude nude adj +nudeness nudeness nom +nudenesses nudeness nom +nuder nude adj +nudes nude nom +nudest nude adj +nudge nudge nom +nudged nudge ver +nudges nudge nom +nudging nudge ver +nudibranch nudibranch nom +nudibranchs nudibranch nom +nudism nudism nom +nudisms nudism nom +nudist nudist nom +nudists nudist nom +nudities nudity nom +nudity nudity nom +nugget nugget nom +nuggets nugget nom +nuisance nuisance nom +nuisances nuisance nom +nuke nuke nom +nuked nuke ver +nukes nuke nom +nuking nuke ver +null null ver +nulled null ver +nullification nullification nom +nullifications nullification nom +nullified nullify ver +nullifies nullify ver +nullify nullify ver +nullifying nullify ver +nulling null ver +nullities nullity nom +nullity nullity nom +nulls null ver +numb numb adj +numbat numbat nom +numbats numbat nom +numbed numb ver +number numb adj +numbered number ver +numbering number ver +numbers number nom +numberses numbers nom +numbest numb adj +numbfish numbfish nom +numbing numb ver +numbness numbness nom +numbnesses numbness nom +numbs numb ver +numbskull numbskull nom +numbskulls numbskull nom +numdah numdah nom +numdahs numdah nom +numeracies numeracy nom +numeracy numeracy nom +numeral numeral nom +numerals numeral nom +numerate numerate ver +numerated numerate ver +numerates numerate ver +numerating numerate ver +numeration numeration nom +numerations numeration nom +numerator numerator nom +numerators numerator nom +numeric numeric nom +numerics numeric nom +numerologies numerology nom +numerologist numerologist nom +numerologists numerologist nom +numerology numerology nom +numerousness numerousness nom +numerousnesses numerousness nom +numismatist numismatist nom +numismatists numismatist nom +nummulite nummulite nom +nummulites nummulite nom +numskull numskull nom +numskulls numskull nom +nun nun nom +nuncio nuncio nom +nuncios nuncio nom +nunneries nunnery nom +nunnery nunnery nom +nuns nun nom +nuptial nuptial nom +nuptials nuptial nom +nurse nurse nom +nursed nurse ver +nurseling nurseling nom +nursemaid nursemaid nom +nursemaided nursemaid ver +nursemaiding nursemaid ver +nursemaids nursemaid nom +nurser nurser nom +nurseries nursery nom +nursers nurser nom +nursery nursery nom +nurseryman nurseryman nom +nurserymen nurseryman nom +nurses nurse nom +nursing nurse ver +nursings nursing nom +nursling nursling nom +nurture nurture nom +nurtured nurture ver +nurturer nurturer nom +nurturers nurturer nom +nurtures nurture nom +nurturing nurture ver +nus nu nom +nut nut nom +nutate nutate ver +nutated nutate ver +nutates nutate ver +nutating nutate ver +nutation nutation nom +nutations nutation nom +nutcase nutcase nom +nutcases nutcase nom +nutcracker nutcracker nom +nutcrackers nutcracker nom +nutgrass nutgrass nom +nutgrasses nutgrass nom +nuthatch nuthatch nom +nuthatches nuthatch nom +nuthouse nuthouse nom +nuthouses nuthouse nom +nutmeat nutmeat nom +nutmeats nutmeat nom +nutmeg nutmeg nom +nutmegs nutmeg nom +nutpick nutpick nom +nutpicks nutpick nom +nutria nutria nom +nutrias nutria nom +nutrient nutrient nom +nutrients nutrient nom +nutriment nutriment nom +nutriments nutriment nom +nutrition nutrition nom +nutritionist nutritionist nom +nutritionists nutritionist nom +nutritions nutrition nom +nutritiousness nutritiousness nom +nutritiousnesses nutritiousness nom +nutritive nutritive nom +nutritives nutritive nom +nuts nut nom +nutsedge nutsedge nom +nutsedges nutsedge nom +nutshell nutshell nom +nutshells nutshell nom +nutted nut ver +nuttier nutty adj +nuttiest nutty adj +nuttiness nuttiness nom +nuttinesses nuttiness nom +nutting nut ver +nutty nutty adj +nuzzle nuzzle ver +nuzzled nuzzle ver +nuzzler nuzzler nom +nuzzlers nuzzler nom +nuzzles nuzzle ver +nuzzling nuzzle ver +nyala nyala nom +nyalas nyala nom +nybble nybble nom +nybbles nybble nom +nyctalopia nyctalopia nom +nyctalopias nyctalopia nom +nyctophobia nyctophobia nom +nyctophobias nyctophobia nom +nylghai nylghai nom +nylghais nylghai nom +nylghau nylghau nom +nylghaus nylghau nom +nylon nylon nom +nylons nylon nom +nymph nymph nom +nymphalid nymphalid nom +nymphalids nymphalid nom +nymphet nymphet nom +nymphets nymphet nom +nympho nympho nom +nympholepsies nympholepsy nom +nympholepsy nympholepsy nom +nympholept nympholept nom +nympholepts nympholept nom +nymphomania nymphomania nom +nymphomaniac nymphomaniac nom +nymphomaniacs nymphomaniac nom +nymphomanias nymphomania nom +nymphos nympho nom +nymphs nymph nom +nystatin nystatin nom +nystatins nystatin nom +o o sw +oaf oaf nom +oafishness oafishness nom +oafishnesses oafishness nom +oafs oaf nom +oak oak nom +oaks oak nom +oakum oakum nom +oakums oakum nom +oar oar nom +oared oar ver +oarfish oarfish nom +oaring oar ver +oarlock oarlock nom +oarlocks oarlock nom +oars oar nom +oarsman oarsman nom +oarsmanship oarsmanship nom +oarsmanships oarsmanship nom +oarsmen oarsman nom +oarswoman oarswoman nom +oarswomen oarswoman nom +oases oasis nom +oasis oasis nom +oast oast nom +oasts oast nom +oat oat nom +oatcake oatcake nom +oatcakes oatcake nom +oath oath nom +oaths oath nom +oatmeal oatmeal nom +oatmeals oatmeal nom +oats oat nom +obbligato obbligato nom +obbligatos obbligato nom +obduracies obduracy nom +obduracy obduracy nom +obdurateness obdurateness nom +obduratenesses obdurateness nom +obeah obeah nom +obeahs obeah nom +obeche obeche nom +obeches obeche nom +obedience obedience nom +obediences obedience nom +obeisance obeisance nom +obeisances obeisance nom +obelisk obelisk nom +obelisks obelisk nom +obese obese adj +obeser obese adj +obesest obese adj +obesities obesity nom +obesity obesity nom +obey obey ver +obeyed obey ver +obeying obey ver +obeys obey ver +obfuscate obfuscate ver +obfuscated obfuscate ver +obfuscates obfuscate ver +obfuscating obfuscate ver +obfuscation obfuscation nom +obfuscations obfuscation nom +obi obi nom +obiism obiism nom +obiisms obiism nom +obis obi nom +obit obit nom +obits obit nom +obituaries obituary nom +obituary obituary nom +object object nom +objected object ver +objectification objectification nom +objectifications objectification nom +objectified objectify ver +objectifies objectify ver +objectify objectify ver +objectifying objectify ver +objecting object ver +objection objection nom +objectionableness objectionableness nom +objectionablenesses objectionableness nom +objections objection nom +objective objective nom +objectiveness objectiveness nom +objectivenesses objectiveness nom +objectives objective nom +objectivities objectivity nom +objectivity objectivity nom +objector objector nom +objectors objector nom +objects object nom +objurgate objurgate ver +objurgated objurgate ver +objurgates objurgate ver +objurgating objurgate ver +objurgation objurgation nom +objurgations objurgation nom +oblate oblate nom +oblateness oblateness nom +oblatenesses oblateness nom +oblates oblate nom +oblation oblation nom +oblations oblation nom +obligate obligate ver +obligated obligate ver +obligates obligate ver +obligating obligate ver +obligation obligation nom +obligations obligation nom +obligato obligato nom +obligatos obligato nom +oblige oblige ver +obliged oblige ver +obliges oblige ver +obliging oblige ver +obligingness obligingness nom +obligingnesses obligingness nom +oblique oblique adj +obliqued oblique ver +obliqueness obliqueness nom +obliquenesses obliqueness nom +obliquer oblique adj +obliques oblique nom +obliquest oblique adj +obliquing oblique ver +obliquities obliquity nom +obliquity obliquity nom +obliterate obliterate ver +obliterated obliterate ver +obliterates obliterate ver +obliterating obliterate ver +obliteration obliteration nom +obliterations obliteration nom +oblivion oblivion nom +oblivions oblivion nom +obliviousness obliviousness nom +obliviousnesses obliviousness nom +oblong oblong nom +oblongs oblong nom +obloquies obloquy nom +obloquy obloquy nom +obnoxiousness obnoxiousness nom +obnoxiousnesses obnoxiousness nom +oboe oboe nom +oboes oboe nom +oboist oboist nom +oboists oboist nom +oboli obolus nom +obolus obolus nom +obscene obscene adj +obscener obscene adj +obscenest obscene adj +obscenities obscenity nom +obscenity obscenity nom +obscurantism obscurantism nom +obscurantisms obscurantism nom +obscurantist obscurantist nom +obscurantists obscurantist nom +obscure obscure adj +obscured obscure ver +obscureness obscureness nom +obscurenesses obscureness nom +obscurer obscure adj +obscures obscure nom +obscurest obscure adj +obscuring obscure ver +obscurities obscurity nom +obscurity obscurity nom +obsequies obsequy nom +obsequiousness obsequiousness nom +obsequiousnesses obsequiousness nom +obsequy obsequy nom +observable observable nom +observables observable nom +observance observance nom +observances observance nom +observant observant nom +observants observant nom +observation observation nom +observations observation nom +observatories observatory nom +observatory observatory nom +observe observe ver +observed observe ver +observer observer nom +observers observer nom +observes observe ver +observing observe ver +obsess obsess ver +obsessed obsess ver +obsesses obsess ver +obsessing obsess ver +obsession obsession nom +obsessions obsession nom +obsessive obsessive nom +obsessiveness obsessiveness nom +obsessivenesses obsessiveness nom +obsessives obsessive nom +obsidian obsidian nom +obsidians obsidian nom +obsolesce obsolesce ver +obsolesced obsolesce ver +obsolescence obsolescence nom +obsolescences obsolescence nom +obsolesces obsolesce ver +obsolescing obsolesce ver +obsolete obsolete ver +obsoleted obsolete ver +obsoleteness obsoleteness nom +obsoletenesses obsoleteness nom +obsoletes obsolete ver +obsoleting obsolete ver +obstacle obstacle nom +obstacles obstacle nom +obstetrician obstetrician nom +obstetricians obstetrician nom +obstinacies obstinacy nom +obstinacy obstinacy nom +obstreperousness obstreperousness nom +obstreperousnesses obstreperousness nom +obstruct obstruct ver +obstructed obstruct ver +obstructing obstruct ver +obstruction obstruction nom +obstructionism obstructionism nom +obstructionisms obstructionism nom +obstructionist obstructionist nom +obstructionists obstructionist nom +obstructions obstruction nom +obstructiveness obstructiveness nom +obstructivenesses obstructiveness nom +obstructs obstruct ver +obtain obtain ver +obtained obtain ver +obtaining obtain ver +obtainment obtainment nom +obtainments obtainment nom +obtains obtain ver +obtention obtention nom +obtentions obtention nom +obtrude obtrude ver +obtruded obtrude ver +obtrudes obtrude ver +obtruding obtrude ver +obtrusion obtrusion nom +obtrusions obtrusion nom +obtrusiveness obtrusiveness nom +obtrusivenesses obtrusiveness nom +obtund obtund ver +obtunded obtund ver +obtunding obtund ver +obtunds obtund ver +obtuse obtuse adj +obtuseness obtuseness nom +obtusenesses obtuseness nom +obtuser obtuse adj +obtusest obtuse adj +obverse obverse nom +obverses obverse nom +obviate obviate ver +obviated obviate ver +obviates obviate ver +obviating obviate ver +obviation obviation nom +obviations obviation nom +obviously obviously sw +obviousness obviousness nom +obviousnesses obviousness nom +oca oca nom +ocarina ocarina nom +ocarinas ocarina nom +ocas oca nom +occasion occasion nom +occasioned occasion ver +occasioning occasion ver +occasions occasion nom +occident occident nom +occidental occidental nom +occidentalize occidentalize ver +occidentalized occidentalize ver +occidentalizes occidentalize ver +occidentalizing occidentalize ver +occidentals occidental nom +occidents occident nom +occiput occiput nom +occiputs occiput nom +occlude occlude ver +occluded occlude ver +occludes occlude ver +occluding occlude ver +occlusion occlusion nom +occlusions occlusion nom +occlusive occlusive nom +occlusives occlusive nom +occult occult nom +occulted occult ver +occulting occult ver +occultism occultism nom +occultisms occultism nom +occultist occultist nom +occultists occultist nom +occults occult nom +occupancies occupancy nom +occupancy occupancy nom +occupant occupant nom +occupants occupant nom +occupation occupation nom +occupations occupation nom +occupied occupy ver +occupier occupier nom +occupiers occupier nom +occupies occupy ver +occupy occupy ver +occupying occupy ver +occur occur ver +occurred occur ver +occurrence occurrence nom +occurrences occurrence nom +occurring occur ver +occurs occur ver +ocean ocean nom +oceanfront oceanfront nom +oceanfronts oceanfront nom +oceanographer oceanographer nom +oceanographers oceanographer nom +oceanographies oceanography nom +oceanography oceanography nom +oceanologies oceanology nom +oceanology oceanology nom +oceans ocean nom +ocelli ocellus nom +ocellus ocellus nom +ocelot ocelot nom +ocelots ocelot nom +ocher ocher nom +ochered ocher ver +ochering ocher ver +ochers ocher nom +ochre ochre nom +ochred ochre ver +ochres ochre nom +ochring ochre ver +ocotillo ocotillo nom +ocotillos ocotillo nom +octad octad nom +octads octad nom +octagon octagon nom +octagons octagon nom +octahedron octahedron nom +octahedrons octahedron nom +octameter octameter nom +octameters octameter nom +octane octane nom +octanes octane nom +octant octant nom +octants octant nom +octave octave nom +octaves octave nom +octavo octavo nom +octavos octavo nom +octet octet nom +octets octet nom +octette octette nom +octettes octette nom +octogenarian octogenarian nom +octogenarians octogenarian nom +octonaries octonary nom +octonary octonary nom +octopod octopod nom +octopods octopod nom +octopus octopus nom +octopuses octopus nom +octosyllable octosyllable nom +octosyllables octosyllable nom +octroi octroi nom +octrois octroi nom +ocular ocular nom +oculars ocular nom +oculi oculus nom +oculist oculist nom +oculists oculist nom +oculus oculus nom +odalisque odalisque nom +odalisques odalisque nom +odd odd adj +oddball oddball nom +oddballs oddball nom +odder odd adj +oddest odd adj +oddities oddity nom +oddity oddity nom +oddment oddment nom +oddments oddment nom +oddness oddness nom +oddnesses oddness nom +odds odd nom +ode ode nom +odes ode nom +odiousness odiousness nom +odiousnesses odiousness nom +odium odium nom +odiums odium nom +odometer odometer nom +odometers odometer nom +odonate odonate nom +odonates odonate nom +odontoglossum odontoglossum nom +odontoglossums odontoglossum nom +odor odor nom +odorize odorize ver +odorized odorize ver +odorizes odorize ver +odorizing odorize ver +odors odor nom +odour odour nom +odours odour nom +odyssey odyssey nom +odysseys odyssey nom +oedema oedema nom +oedemas oedema nom +oenologies oenology nom +oenologist oenologist nom +oenologists oenologist nom +oenology oenology nom +oenophile oenophile nom +oenophiles oenophile nom +oenophilist oenophilist nom +oenophilists oenophilist nom +oersted oersted nom +oersteds oersted nom +oesophagi oesophagus nom +oesophagus oesophagus nom +oestrogen oestrogen nom +oestrogens oestrogen nom +oestrone oestrone nom +oestrones oestrone nom +oestrus oestrus nom +oestruses oestrus nom +oeuvre oeuvre nom +oeuvres oeuvre nom +of of sw +off off sw +offal offal nom +offals offal nom +offbeat offbeat nom +offbeats offbeat nom +offed off ver +offence offence nom +offences offence nom +offend offend ver +offended offend ver +offender offender nom +offenders offender nom +offending offend ver +offends offend ver +offense offense nom +offenses offense nom +offensive offensive nom +offensiveness offensiveness nom +offensivenesses offensiveness nom +offensives offensive nom +offer offer nom +offered offer ver +offering offer ver +offerings offering nom +offers offer nom +offertories offertory nom +offertory offertory nom +offhandedness offhandedness nom +offhandednesses offhandedness nom +office office nom +officeholder officeholder nom +officeholders officeholder nom +officer officer nom +officered officer ver +officering officer ver +officers officer nom +offices office nom +official official nom +officialdom officialdom nom +officialdoms officialdom nom +officialese officialese nom +officialeses officialese nom +officialism officialism nom +officialisms officialism nom +officials official nom +officiant officiant nom +officiants officiant nom +officiate officiate ver +officiated officiate ver +officiates officiate ver +officiating officiate ver +officiation officiation nom +officiations officiation nom +officiator officiator nom +officiators officiator nom +officiousness officiousness nom +officiousnesses officiousness nom +offing off ver +offings offing nom +offload offload ver +offloaded offload ver +offloading offload ver +offloads offload ver +offprint offprint nom +offprinted offprint ver +offprinting offprint ver +offprints offprint nom +offs off nom +offsaddle offsaddle ver +offsaddled offsaddle ver +offsaddles offsaddle ver +offsaddling offsaddle ver +offset offset ver +offsets offset nom +offsetting offset ver +offshoot offshoot nom +offshoots offshoot nom +offspring offspring nom +offstage offstage nom +offstages offstage nom +oft oft adj +often often sw +oftener often adj +oftenest often adj +ofter oft adj +oftest oft adj +ogdoad ogdoad nom +ogdoads ogdoad nom +ogive ogive nom +ogives ogive nom +ogle ogle nom +ogled ogle ver +ogler ogler nom +oglers ogler nom +ogles ogle nom +ogling ogle ver +ogre ogre nom +ogres ogre nom +ogress ogress nom +ogresses ogress nom +oh oh sw +ohm ohm nom +ohmage ohmage nom +ohmages ohmage nom +ohmmeter ohmmeter nom +ohmmeters ohmmeter nom +ohms ohm nom +ohs oh nom +oil oil nom +oilbird oilbird nom +oilbirds oilbird nom +oilcan oilcan nom +oilcans oilcan nom +oilcloth oilcloth nom +oilcloths oilcloth nom +oiled oil ver +oiler oiler nom +oilers oiler nom +oilfield oilfield nom +oilfields oilfield nom +oilfish oilfish nom +oilier oily adj +oiliest oily adj +oiliness oiliness nom +oilinesses oiliness nom +oiling oil ver +oilman oilman nom +oilmen oilman nom +oilpaper oilpaper nom +oilpapers oilpaper nom +oils oil nom +oilseed oilseed nom +oilseeds oilseed nom +oilskin oilskin nom +oilskins oilskin nom +oilstone oilstone nom +oilstones oilstone nom +oily oily adj +oink oink nom +oinked oink ver +oinking oink ver +oinks oink nom +ointment ointment nom +ointments ointment nom +ok ok sw +oka oka nom +okapi okapi nom +okapis okapi nom +okas oka nom +okay okay sw +okayed okay ver +okaying okay ver +okays okay nom +okeh okeh nom +okehs okeh nom +okra okra nom +okras okra nom +old old sw +older old adj +oldest old adj +oldie oldie nom +oldies oldie nom +oldness oldness nom +oldnesses oldness nom +olds old nom +oldster oldster nom +oldsters oldster nom +oldwife oldwife nom +oldwives oldwife nom +ole ole nom +oleaginousness oleaginousness nom +oleaginousnesses oleaginousness nom +oleander oleander nom +oleanders oleander nom +oleaster oleaster nom +oleasters oleaster nom +olefin olefin nom +olefine olefine nom +olefines olefine nom +olefins olefin nom +olein olein nom +oleins olein nom +oleo oleo nom +oleomargarin oleomargarin nom +oleomargarine oleomargarine nom +oleomargarines oleomargarine nom +oleomargarins oleomargarin nom +oleoresin oleoresin nom +oleoresins oleoresin nom +oleos oleo nom +oles ole nom +olfaction olfaction nom +olfactions olfaction nom +olfactories olfactory nom +olfactory olfactory nom +olibanum olibanum nom +olibanums olibanum nom +oligarch oligarch nom +oligarchies oligarchy nom +oligarchs oligarch nom +oligarchy oligarchy nom +oligochaete oligochaete nom +oligochaetes oligochaete nom +oligoclase oligoclase nom +oligoclases oligoclase nom +oligodendrocyte oligodendrocyte nom +oligodendrocytes oligodendrocyte nom +oligodendroglia oligodendroglia nom +oligodendroglias oligodendroglia nom +oligosaccharide oligosaccharide nom +oligosaccharides oligosaccharide nom +oliguria oliguria nom +oligurias oliguria nom +olive olive nom +olives olive nom +olivine olivine nom +olivines olivine nom +olla olla nom +ollas olla nom +olm olm nom +olms olm nom +ologies ology nom +ology ology nom +om om nom +omasa omasum nom +omasum omasum nom +ombu ombu nom +ombudsman ombudsman nom +ombudsmen ombudsman nom +ombus ombu nom +omega omega nom +omegas omega nom +omelet omelet nom +omelets omelet nom +omelette omelette nom +omelettes omelette nom +omen omen nom +omened omen ver +omening omen ver +omens omen nom +omentum omentum nom +omentums omentum nom +omicron omicron nom +omicrons omicron nom +ominousness ominousness nom +ominousnesses ominousness nom +omission omission nom +omissions omission nom +omit omit ver +omits omit ver +omitted omit ver +omitting omit ver +omnibus omnibus nom +omnibuses omnibus nom +omnipotence omnipotence nom +omnipotences omnipotence nom +omnipotent omnipotent nom +omnipotents omnipotent nom +omnipresence omnipresence nom +omnipresences omnipresence nom +omniscience omniscience nom +omnisciences omniscience nom +omniscient omniscient nom +omniscients omniscient nom +omnivore omnivore nom +omnivores omnivore nom +omnivorousness omnivorousness nom +omnivorousnesses omnivorousness nom +omphali omphalus nom +omphalos omphalos nom +omphaloses omphalos nom +omphaloskepses omphaloskepsis nom +omphaloskepsis omphaloskepsis nom +omphalus omphalus nom +oms om nom +on on sw +onager onager nom +onagers onager nom +onanism onanism nom +onanisms onanism nom +onanist onanist nom +onanists onanist nom +once once sw +onces once nom +onchocerciases onchocerciasis nom +onchocerciasis onchocerciasis nom +oncidium oncidium nom +oncidiums oncidium nom +oncogene oncogene nom +oncogenes oncogene nom +oncologies oncology nom +oncologist oncologist nom +oncologists oncologist nom +oncology oncology nom +oncoming oncoming nom +oncomings oncoming nom +one one sw +oneness oneness nom +onenesses oneness nom +onerousness onerousness nom +onerousnesses onerousness nom +ones ones sw +onion onion nom +onions onion nom +onionskin onionskin nom +onionskins onionskin nom +onliest only adj +onlooker onlooker nom +onlookers onlooker nom +only only sw +onomasticon onomasticon nom +onomasticons onomasticon nom +onomatopoeia onomatopoeia nom +onomatopoeias onomatopoeia nom +onrush onrush nom +onrushes onrush nom +onset onset nom +onsets onset nom +onslaught onslaught nom +onslaughts onslaught nom +onto onto sw +ontogeneses ontogenesis nom +ontogenesis ontogenesis nom +ontogenies ontogeny nom +ontogeny ontogeny nom +ontologies ontology nom +ontology ontology nom +onus onus nom +onuses onus nom +onychophoran onychophoran nom +onychophorans onychophoran nom +onyx onyx nom +onyxes onyx nom +oocyte oocyte nom +oocytes oocyte nom +oogeneses oogenesis nom +oogenesis oogenesis nom +ooh ooh ver +oohed ooh ver +oohing ooh ver +oohs ooh ver +oolong oolong nom +oolongs oolong nom +oomph oomph nom +oomphs oomph nom +oophorectomies oophorectomy nom +oophorectomy oophorectomy nom +oosphere oosphere nom +oospheres oosphere nom +oospore oospore nom +oospores oospore nom +ooze ooze nom +oozed ooze ver +oozes ooze nom +oozier oozy adj +ooziest oozy adj +oozing ooze ver +oozy oozy adj +op op nom +opacities opacity nom +opacity opacity nom +opah opah nom +opahs opah nom +opal opal nom +opalesce opalesce ver +opalesced opalesce ver +opalescence opalescence nom +opalescences opalescence nom +opalesces opalesce ver +opalescing opalesce ver +opals opal nom +opaque opaque adj +opaqued opaque ver +opaqueness opaqueness nom +opaquenesses opaqueness nom +opaquer opaque adj +opaques opaque nom +opaquest opaque adj +opaquing opaque ver +ope ope ver +oped ope ver +open open adj +opened open ver +opener open adj +openers opener nom +openest open adj +openhandedness openhandedness nom +openhandednesses openhandedness nom +opening open ver +openings opening nom +openness openness nom +opennesses openness nom +opens open nom +openwork openwork nom +openworks openwork nom +opera opus nom +operagoer operagoer nom +operagoers operagoer nom +operand operand nom +operands operand nom +operas opera nom +operate operate ver +operated operate ver +operates operate ver +operating operate ver +operation operation nom +operationalism operationalism nom +operationalisms operationalism nom +operations operation nom +operative operative nom +operatives operative nom +operator operator nom +operators operator nom +operculum operculum nom +operculums operculum nom +operetta operetta nom +operettas operetta nom +operoseness operoseness nom +operosenesses operoseness nom +opes ope ver +ophidian ophidian nom +ophidians ophidian nom +ophthalmia ophthalmia nom +ophthalmias ophthalmia nom +ophthalmitis ophthalmitis nom +ophthalmitises ophthalmitis nom +ophthalmologies ophthalmology nom +ophthalmologist ophthalmologist nom +ophthalmologists ophthalmologist nom +ophthalmology ophthalmology nom +ophthalmoscope ophthalmoscope nom +ophthalmoscopes ophthalmoscope nom +opiate opiate nom +opiated opiate ver +opiates opiate nom +opiating opiate ver +opine opine ver +opined opine ver +opines opine ver +oping ope ver +opining opine ver +opinion opinion nom +opinions opinion nom +opium opium nom +opiums opium nom +opossum opossum nom +opossums opossum nom +opponent opponent nom +opponents opponent nom +opportuneness opportuneness nom +opportunenesses opportuneness nom +opportunism opportunism nom +opportunisms opportunism nom +opportunist opportunist nom +opportunists opportunist nom +opportunities opportunity nom +opportunity opportunity nom +oppose oppose ver +opposed oppose ver +opposes oppose ver +opposing oppose ver +opposite opposite nom +oppositeness oppositeness nom +oppositenesses oppositeness nom +opposites opposite nom +opposition opposition nom +oppositions opposition nom +oppress oppress ver +oppressed oppress ver +oppresses oppress ver +oppressing oppress ver +oppression oppression nom +oppressions oppression nom +oppressiveness oppressiveness nom +oppressivenesses oppressiveness nom +oppressor oppressor nom +oppressors oppressor nom +opprobrium opprobrium nom +opprobriums opprobrium nom +oppugn oppugn ver +oppugned oppugn ver +oppugning oppugn ver +oppugns oppugn ver +ops op nom +opsin opsin nom +opsins opsin nom +opt opt ver +optative optative nom +optatives optative nom +opted opt ver +optic optic nom +optician optician nom +opticians optician nom +optics optic nom +optima optimum nom +optimism optimism nom +optimisms optimism nom +optimist optimist nom +optimists optimist nom +optimization optimization nom +optimizations optimization nom +optimize optimize ver +optimized optimize ver +optimizes optimize ver +optimizing optimize ver +optimum optimum nom +opting opt ver +option option nom +optioned option ver +optioning option ver +options option nom +optometries optometry nom +optometrist optometrist nom +optometrists optometrist nom +optometry optometry nom +opts opt ver +opulence opulence nom +opulences opulence nom +opus opus nom +or or sw +orach orach nom +orache orache nom +oraches orach nom +oracle oracle nom +oracles oracle nom +oral oral nom +orals oral nom +orang orang nom +orange orange adj +orangeade orangeade nom +orangeades orangeade nom +oranger orange adj +orangeries orangery nom +orangery orangery nom +oranges orange nom +orangest orange adj +orangewood orangewood nom +orangewoods orangewood nom +orangs orang nom +orangutan orangutan nom +orangutang orangutang nom +orangutangs orangutang nom +orangutans orangutan nom +orate orate ver +orated orate ver +orates orate ver +orating orate ver +oration oration nom +orations oration nom +orator orator nom +oratories oratory nom +oratorio oratorio nom +oratorios oratorio nom +orators orator nom +oratory oratory nom +orb orb nom +orbed orb ver +orbing orb ver +orbit orbit nom +orbital orbital nom +orbitals orbital nom +orbited orbit ver +orbiter orbiter nom +orbiters orbiter nom +orbiting orbit ver +orbits orbit nom +orbs orb nom +orca orca nom +orcas orca nom +orchard orchard nom +orchards orchard nom +orchestra orchestra nom +orchestras orchestra nom +orchestrate orchestrate ver +orchestrated orchestrate ver +orchestrates orchestrate ver +orchestrating orchestrate ver +orchestration orchestration nom +orchestrations orchestration nom +orchestrator orchestrator nom +orchestrators orchestrator nom +orchid orchid nom +orchidectomies orchidectomy nom +orchidectomy orchidectomy nom +orchids orchid nom +orchiectomies orchiectomy nom +orchiectomy orchiectomy nom +orchil orchil nom +orchils orchil nom +orchis orchis nom +orchises orchis nom +orchitis orchitis nom +orchitises orchitis nom +ordain ordain ver +ordained ordain ver +ordaining ordain ver +ordainment ordainment nom +ordainments ordainment nom +ordains ordain ver +ordeal ordeal nom +ordeals ordeal nom +order order nom +ordered order ver +ordering order ver +orderings ordering nom +orderlies orderly nom +orderliness orderliness nom +orderlinesses orderliness nom +orderly orderly nom +orders order nom +ordinal ordinal nom +ordinals ordinal nom +ordinance ordinance nom +ordinances ordinance nom +ordinand ordinand nom +ordinands ordinand nom +ordinarier ordinary adj +ordinaries ordinary nom +ordinariest ordinary adj +ordinariness ordinariness nom +ordinarinesses ordinariness nom +ordinary ordinary adj +ordinate ordinate nom +ordinates ordinate nom +ordination ordination nom +ordinations ordination nom +ordnance ordnance nom +ordnances ordnance nom +ordure ordure nom +ordures ordure nom +ore ore nom +oregano oregano nom +oreganos oregano nom +ores ore nom +organ organ nom +organdie organdie nom +organdies organdie nom +organdy organdy nom +organelle organelle nom +organelles organelle nom +organic organic nom +organicism organicism nom +organicisms organicism nom +organics organic nom +organisation organisation nom +organisations organisation nom +organise organise ver +organised organise ver +organises organise ver +organising organise ver +organism organism nom +organisms organism nom +organist organist nom +organists organist nom +organization organization nom +organizations organization nom +organize organize ver +organized organize ver +organizer organizer nom +organizers organizer nom +organizes organize ver +organizing organize ver +organon organon nom +organons organon nom +organs organ nom +organza organza nom +organzas organza nom +orgasm orgasm nom +orgasmed orgasm ver +orgasming orgasm ver +orgasms orgasm nom +orgies orgy nom +orgy orgy nom +oriel oriel nom +oriels oriel nom +orient orient nom +oriental oriental nom +orientalist orientalist nom +orientalists orientalist nom +orientalize orientalize ver +orientalized orientalize ver +orientalizes orientalize ver +orientalizing orientalize ver +orientals oriental nom +orientate orientate ver +orientated orientate ver +orientates orientate ver +orientating orientate ver +orientation orientation nom +orientations orientation nom +oriented orient ver +orienting orient ver +orients orient nom +orifice orifice nom +orifices orifice nom +origami origami nom +origamis origami nom +origanum origanum nom +origanums origanum nom +origin origin nom +original original nom +originalism originalism nom +originalisms originalism nom +originalities originality nom +originality originality nom +originals original nom +originate originate ver +originated originate ver +originates originate ver +originating originate ver +origination origination nom +originations origination nom +originator originator nom +originators originator nom +origins origin nom +orinasal orinasal nom +orinasals orinasal nom +oriole oriole nom +orioles oriole nom +orison orison nom +orisons orison nom +orlop orlop nom +orlops orlop nom +ormer ormer nom +ormers ormer nom +ormolu ormolu nom +ormolus ormolu nom +ornament ornament nom +ornamental ornamental nom +ornamentals ornamental nom +ornamentation ornamentation nom +ornamentations ornamentation nom +ornamented ornament ver +ornamenting ornament ver +ornaments ornament nom +ornate ornate adj +ornateness ornateness nom +ornatenesses ornateness nom +ornater ornate adj +ornatest ornate adj +ornerier ornery adj +orneriest ornery adj +orneriness orneriness nom +ornerinesses orneriness nom +ornery ornery adj +ornithine ornithine nom +ornithines ornithine nom +ornithischian ornithischian nom +ornithischians ornithischian nom +ornithologies ornithology nom +ornithologist ornithologist nom +ornithologists ornithologist nom +ornithology ornithology nom +ornithopod ornithopod nom +ornithopods ornithopod nom +oropharynx oropharynx nom +oropharynxes oropharynx nom +orotundities orotundity nom +orotundity orotundity nom +orphan orphan nom +orphanage orphanage nom +orphanages orphanage nom +orphaned orphan ver +orphaning orphan ver +orphans orphan nom +orphrey orphrey nom +orphreys orphrey nom +orpiment orpiment nom +orpiments orpiment nom +orpin orpin nom +orpine orpine nom +orpines orpine nom +orpins orpin nom +orreries orrery nom +orrery orrery nom +orris orris nom +orrises orris nom +orrisroot orrisroot nom +orrisroots orrisroot nom +ors or nom +orthicon orthicon nom +orthicons orthicon nom +orthoclase orthoclase nom +orthoclases orthoclase nom +orthodontia orthodontia nom +orthodontias orthodontia nom +orthodontist orthodontist nom +orthodontists orthodontist nom +orthodoxies orthodoxy nom +orthodoxy orthodoxy nom +orthogonalities orthogonality nom +orthogonality orthogonality nom +orthographies orthography nom +orthography orthography nom +orthomyxovirus orthomyxovirus nom +orthomyxoviruses orthomyxovirus nom +orthopaedist orthopaedist nom +orthopaedists orthopaedist nom +orthopedist orthopedist nom +orthopedists orthopedist nom +orthophosphate orthophosphate nom +orthophosphates orthophosphate nom +orthopteran orthopteran nom +orthopterans orthopteran nom +orthopteron orthopteron nom +orthopterons orthopteron nom +ortolan ortolan nom +ortolans ortolan nom +oryx oryx nom +oryxes oryx nom +orzo orzo nom +orzos orzo nom +os os nom +oscillate oscillate ver +oscillated oscillate ver +oscillates oscillate ver +oscillating oscillate ver +oscillation oscillation nom +oscillations oscillation nom +oscillator oscillator nom +oscillators oscillator nom +oscillogram oscillogram nom +oscillograms oscillogram nom +oscillograph oscillograph nom +oscillographs oscillograph nom +oscilloscope oscilloscope nom +oscilloscopes oscilloscope nom +oscine oscine nom +oscines oscine nom +osculate osculate ver +osculated osculate ver +osculates osculate ver +osculating osculate ver +osculation osculation nom +osculations osculation nom +oses os nom +osier osier nom +osiers osier nom +osmium osmium nom +osmiums osmium nom +osmoses osmosis nom +osmosis osmosis nom +osmund osmund nom +osmunds osmund nom +osprey osprey nom +ospreys osprey nom +ossicle ossicle nom +ossicles ossicle nom +ossification ossification nom +ossifications ossification nom +ossified ossify ver +ossifies ossify ver +ossify ossify ver +ossifying ossify ver +osteitides osteitis nom +osteitis osteitis nom +ostentation ostentation nom +ostentations ostentation nom +ostentatiousness ostentatiousness nom +ostentatiousnesses ostentatiousness nom +osteoarthritides osteoarthritis nom +osteoarthritis osteoarthritis nom +osteoblast osteoblast nom +osteoblasts osteoblast nom +osteoma osteoma nom +osteomalacia osteomalacia nom +osteomalacias osteomalacia nom +osteomas osteoma nom +osteomyelitides osteomyelitis nom +osteomyelitis osteomyelitis nom +osteopath osteopath nom +osteopathies osteopathy nom +osteopathist osteopathist nom +osteopathists osteopathist nom +osteopaths osteopath nom +osteopathy osteopathy nom +osteoporoses osteoporosis nom +osteoporosis osteoporosis nom +osteosarcoma osteosarcoma nom +osteosarcomas osteosarcoma nom +ostinato ostinato nom +ostinatos ostinato nom +ostiole ostiole nom +ostioles ostiole nom +ostler ostler nom +ostlers ostler nom +ostracise ostracise ver +ostracised ostracise ver +ostracises ostracise ver +ostracising ostracise ver +ostracism ostracism nom +ostracisms ostracism nom +ostracize ostracize ver +ostracized ostracize ver +ostracizes ostracize ver +ostracizing ostracize ver +ostracod ostracod nom +ostracoderm ostracoderm nom +ostracoderms ostracoderm nom +ostracods ostracod nom +ostrich ostrich nom +ostriches ostrich nom +otalgia otalgia nom +otalgias otalgia nom +other other sw +otherness otherness nom +othernesses otherness nom +others others sw +otherwise otherwise sw +otherworldliness otherworldliness nom +otherworldlinesses otherworldliness nom +otitides otitis nom +otitis otitis nom +otolaryngologies otolaryngology nom +otolaryngologist otolaryngologist nom +otolaryngologists otolaryngologist nom +otolaryngology otolaryngology nom +otologies otology nom +otologist otologist nom +otologists otologist nom +otology otology nom +otorhinolaryngologist otorhinolaryngologist nom +otorhinolaryngologists otorhinolaryngologist nom +otoscope otoscope nom +otoscopes otoscope nom +ottar ottar nom +ottars ottar nom +otter otter nom +otterhound otterhound nom +otterhounds otterhound nom +otters otter nom +ottoman ottoman nom +ottomans ottoman nom +oubliette oubliette nom +oubliettes oubliette nom +ouch ouch nom +ouched ouch ver +ouches ouch nom +ouching ouch ver +ought ought sw +oughted ought ver +oughting ought ver +oughts ought nom +ouguiya ouguiya nom +ouguiyas ouguiya nom +ounce ounce nom +ounces ounce nom +our our sw +ours ours sw +ourselves ourselves sw +ousel ousel nom +ousels ousel nom +oust oust ver +ousted oust ver +ouster ouster nom +ousters ouster nom +ousting oust ver +ousts oust ver +out out sw +outage outage nom +outages outage nom +outargue outargue ver +outargued outargue ver +outargues outargue ver +outarguing outargue ver +outback outback nom +outbacks outback nom +outbalance outbalance ver +outbalanced outbalance ver +outbalances outbalance ver +outbalancing outbalance ver +outbid outbid ver +outbidding outbid ver +outbids outbid ver +outboard outboard nom +outboards outboard nom +outboast outboast ver +outboasted outboast ver +outboasting outboast ver +outboasts outboast ver +outbrave outbrave ver +outbraved outbrave ver +outbraves outbrave ver +outbraving outbrave ver +outbreak outbreak nom +outbreaks outbreak nom +outbuilding outbuilding nom +outbuildings outbuilding nom +outburst outburst nom +outbursts outburst nom +outcast outcast nom +outcaste outcaste nom +outcastes outcaste nom +outcasts outcast nom +outclass outclass ver +outclassed outclass ver +outclasses outclass ver +outclassing outclass ver +outcome outcome nom +outcomes outcome nom +outcried outcry ver +outcries outcry nom +outcrop outcrop nom +outcropped outcrop ver +outcropping outcrop ver +outcroppings outcropping nom +outcrops outcrop nom +outcry outcry nom +outcrying outcry ver +outdid outdo ver +outdistance outdistance ver +outdistanced outdistance ver +outdistances outdistance ver +outdistancing outdistance ver +outdo outdo ver +outdoes outdo ver +outdoing outdo ver +outdone outdo ver +outdraw outdraw ver +outdrawing outdraw ver +outdrawn outdraw ver +outdraws outdraw ver +outdrew outdraw ver +outed outed ver +outerwear outerwear nom +outerwears outerwear nom +outface outface ver +outfaced outface ver +outfaces outface ver +outfacing outface ver +outfall outfall nom +outfalls outfall nom +outfield outfield nom +outfielder outfielder nom +outfielders outfielder nom +outfields outfield nom +outfight outfight ver +outfighting outfight ver +outfights outfight ver +outfit outfit nom +outfits outfit nom +outfitted outfit ver +outfitter outfitter nom +outfitters outfitter nom +outfitting outfit ver +outflank outflank ver +outflanked outflank ver +outflanking outflank ver +outflanks outflank ver +outflow outflow nom +outflows outflow nom +outfought outfight ver +outfox outfox ver +outfoxed outfox ver +outfoxes outfox ver +outfoxing outfox ver +outgeneral outgeneral ver +outgeneraled outgeneral ver +outgeneraling outgeneral ver +outgenerals outgeneral ver +outgo outgo nom +outgoer outgoer nom +outgoers outgoer nom +outgoes outgo nom +outgrew outgrow ver +outgrow outgrow ver +outgrowing outgrow ver +outgrown outgrow ver +outgrows outgrow ver +outgrowth outgrowth nom +outgrowths outgrowth nom +outguess outguess ver +outguessed outguess ver +outguesses outguess ver +outguessing outguess ver +outhit outhit ver +outhits outhit ver +outhitting outhit ver +outhouse outhouse nom +outhouses outhouse nom +outing outing ver +outings outing nom +outlaid outlay ver +outlander outlander nom +outlanders outlander nom +outlandishness outlandishness nom +outlandishnesses outlandishness nom +outlast outlast ver +outlasted outlast ver +outlasting outlast ver +outlasts outlast ver +outlaw outlaw nom +outlawed outlaw ver +outlawing outlaw ver +outlawries outlawry nom +outlawry outlawry nom +outlaws outlaw nom +outlay outlay nom +outlaying outlay ver +outlays outlay nom +outlet outlet nom +outlets outlet nom +outlier outlier nom +outliers outlier nom +outline outline nom +outlined outline ver +outlines outline nom +outlining outline ver +outlive outlive ver +outlived outlive ver +outlives outlive ver +outliving outlive ver +outlook outlook nom +outlooks outlook nom +outmaneuver outmaneuver ver +outmaneuvered outmaneuver ver +outmaneuvering outmaneuver ver +outmaneuvers outmaneuver ver +outmanoeuvre outmanoeuvre ver +outmanoeuvred outmanoeuvre ver +outmanoeuvres outmanoeuvre ver +outmanoeuvring outmanoeuvre ver +outmarch outmarch ver +outmarched outmarch ver +outmarches outmarch ver +outmarching outmarch ver +outmatch outmatch ver +outmatched outmatch ver +outmatches outmatch ver +outmatching outmatch ver +outmode outmode ver +outmoded outmode ver +outmodes outmode ver +outmoding outmode ver +outnumber outnumber ver +outnumbered outnumber ver +outnumbering outnumber ver +outnumbers outnumber ver +outpace outpace ver +outpaced outpace ver +outpaces outpace ver +outpacing outpace ver +outpatient outpatient nom +outpatients outpatient nom +outperform outperform ver +outperformed outperform ver +outperforming outperform ver +outperforms outperform ver +outplacement outplacement nom +outplacements outplacement nom +outplay outplay ver +outplayed outplay ver +outplaying outplay ver +outplays outplay ver +outpoint outpoint ver +outpointed outpoint ver +outpointing outpoint ver +outpoints outpoint ver +outport outport nom +outports outport nom +outpost outpost nom +outposts outpost nom +outpouring outpouring nom +outpourings outpouring nom +outproduce outproduce ver +outproduced outproduce ver +outproduces outproduce ver +outproducing outproduce ver +output output nom +outputs output nom +outputted output ver +outputting output ver +outrace outrace ver +outraced outrace ver +outraces outrace ver +outracing outrace ver +outrage outrage nom +outraged outrage ver +outrageousness outrageousness nom +outrageousnesses outrageousness nom +outrages outrage nom +outraging outrage ver +outran outrun ver +outrange outrange ver +outranged outrange ver +outranges outrange ver +outranging outrange ver +outrank outrank ver +outranked outrank ver +outranking outrank ver +outranks outrank ver +outreach outreach nom +outreached outreach ver +outreaches outreach nom +outreaching outreach ver +outridden outride ver +outride outride ver +outrider outrider nom +outriders outrider nom +outrides outride ver +outriding outride ver +outrigger outrigger nom +outriggers outrigger nom +outrival outrival ver +outrivaled outrival ver +outrivaling outrival ver +outrivals outrival ver +outroar outroar ver +outroared outroar ver +outroaring outroar ver +outroars outroar ver +outrode outride ver +outrun outrun ver +outrunning outrun ver +outruns outrun ver +outs outs nom +outsail outsail ver +outsailed outsail ver +outsailing outsail ver +outsails outsail ver +outscore outscore ver +outscored outscore ver +outscores outscore ver +outscoring outscore ver +outsell outsell ver +outselling outsell ver +outsells outsell ver +outset outset nom +outsets outset nom +outshine outshine ver +outshines outshine ver +outshining outshine ver +outshone outshine ver +outshout outshout ver +outshouted outshout ver +outshouting outshout ver +outshouts outshout ver +outside outside sw +outsider outsider nom +outsiders outsider nom +outsides outside nom +outsize outsize nom +outsizes outsize nom +outskirt outskirt nom +outskirts outskirt nom +outsmart outsmart ver +outsmarted outsmart ver +outsmarting outsmart ver +outsmarts outsmart ver +outsold outsell ver +outsole outsole nom +outsoles outsole nom +outsource outsource ver +outsourced outsource ver +outsources outsource ver +outsourcing outsource ver +outsourcings outsourcing nom +outspan outspan ver +outspanned outspan ver +outspanning outspan ver +outspans outspan ver +outspend outspend ver +outspending outspend ver +outspends outspend ver +outspent outspend ver +outspokenness outspokenness nom +outspokennesses outspokenness nom +outspread outspread ver +outspreading outspread ver +outspreads outspread nom +outstation outstation nom +outstations outstation nom +outstay outstay ver +outstayed outstay ver +outstaying outstay ver +outstays outstay ver +outstretch outstretch ver +outstretched outstretch ver +outstretches outstretch ver +outstretching outstretch ver +outstrip outstrip ver +outstripped outstrip ver +outstripping outstrip ver +outstrips outstrip ver +outstroke outstroke nom +outstrokes outstroke nom +outtake outtake nom +outtakes outtake nom +outthrust outthrust nom +outthrusts outthrust nom +outturn outturn nom +outturns outturn nom +outvie outvie ver +outvied outvie ver +outvies outvie ver +outvote outvote ver +outvoted outvote ver +outvotes outvote ver +outvoting outvote ver +outvying outvie ver +outward outward nom +outwardness outwardness nom +outwardnesses outwardness nom +outwards outward nom +outwear outwear ver +outwearing outwear ver +outwears outwear ver +outweigh outweigh ver +outweighed outweigh ver +outweighing outweigh ver +outweighs outweigh ver +outwit outwit ver +outwits outwit ver +outwitted outwit ver +outwitting outwit ver +outwore outwear ver +outwork outwork nom +outworked outwork ver +outworking outwork ver +outworks outwork nom +outworn outwear ver +ouzel ouzel nom +ouzels ouzel nom +ouzo ouzo nom +ouzos ouzo nom +ova ovum nom +oval oval nom +ovalbumin ovalbumin nom +ovalbumins ovalbumin nom +ovals oval nom +ovariectomies ovariectomy nom +ovariectomy ovariectomy nom +ovaries ovary nom +ovary ovary nom +ovation ovation nom +ovations ovation nom +oven oven nom +ovenbird ovenbird nom +ovenbirds ovenbird nom +ovens oven nom +ovenware ovenware nom +ovenwares ovenware nom +over over sw +overabundance overabundance nom +overabundances overabundance nom +overachieve overachieve ver +overachieved overachieve ver +overachievement overachievement nom +overachievements overachievement nom +overachiever overachiever nom +overachievers overachiever nom +overachieves overachieve ver +overachieving overachieve ver +overact overact ver +overacted overact ver +overacting overact ver +overactivities overactivity nom +overactivity overactivity nom +overacts overact ver +overage overage nom +overages overage nom +overall overall sw +overalls overall nom +overanxieties overanxiety nom +overanxiety overanxiety nom +overarch overarch ver +overarched overarch ver +overarches overarch ver +overarching overarch ver +overarm overarm ver +overarmed overarm ver +overarming overarm ver +overarms overarm ver +overate overeat ver +overawe overawe ver +overawed overawe ver +overawes overawe ver +overawing overawe ver +overbalance overbalance nom +overbalanced overbalance ver +overbalances overbalance nom +overbalancing overbalance ver +overbear overbear ver +overbearing overbear ver +overbearingness overbearingness nom +overbearingnesses overbearingness nom +overbears overbear ver +overbid overbid ver +overbidding overbid ver +overbids overbid nom +overbite overbite nom +overbites overbite nom +overboil overboil ver +overboiled overboil ver +overboiling overboil ver +overboils overboil ver +overbook overbook ver +overbooked overbook ver +overbooking overbook ver +overbooks overbook ver +overbore overbear ver +overborne overbear ver +overbought overbuy ver +overbuild overbuild ver +overbuilding overbuild ver +overbuilds overbuild ver +overbuilt overbuild ver +overburden overburden nom +overburdened overburden ver +overburdening overburden ver +overburdens overburden nom +overbuy overbuy ver +overbuying overbuy ver +overbuys overbuy ver +overcall overcall nom +overcalls overcall nom +overcame overcome ver +overcapitalization overcapitalization nom +overcapitalizations overcapitalization nom +overcapitalize overcapitalize ver +overcapitalized overcapitalize ver +overcapitalizes overcapitalize ver +overcapitalizing overcapitalize ver +overcast overcast ver +overcasting overcast ver +overcastings overcasting nom +overcasts overcast nom +overcharge overcharge nom +overcharged overcharge ver +overcharges overcharge nom +overcharging overcharge ver +overcloud overcloud ver +overclouded overcloud ver +overclouding overcloud ver +overclouds overcloud ver +overcoat overcoat nom +overcoated overcoat ver +overcoating overcoat ver +overcoatings overcoating nom +overcoats overcoat nom +overcome overcome ver +overcomes overcome ver +overcoming overcome ver +overcompensate overcompensate ver +overcompensated overcompensate ver +overcompensates overcompensate ver +overcompensating overcompensate ver +overcompensation overcompensation nom +overcompensations overcompensation nom +overconfidence overconfidence nom +overconfidences overconfidence nom +overcook overcook ver +overcooked overcook ver +overcooking overcook ver +overcooks overcook ver +overcrop overcrop ver +overcropped overcrop ver +overcropping overcrop ver +overcrops overcrop ver +overcrowd overcrowd ver +overcrowded overcrowd ver +overcrowding overcrowd ver +overcrowdings overcrowding nom +overcrowds overcrowd ver +overdecorate overdecorate ver +overdecorated overdecorate ver +overdecorates overdecorate ver +overdecorating overdecorate ver +overdevelop overdevelop ver +overdeveloped overdevelop ver +overdeveloping overdevelop ver +overdevelops overdevelop ver +overdid overdo ver +overdo overdo ver +overdoes overdo ver +overdoing overdo ver +overdone overdo ver +overdose overdose nom +overdosed overdose ver +overdoses overdose nom +overdosing overdose ver +overdraft overdraft nom +overdrafts overdraft nom +overdramatize overdramatize ver +overdramatized overdramatize ver +overdramatizes overdramatize ver +overdramatizing overdramatize ver +overdraw overdraw ver +overdrawing overdraw ver +overdrawn overdraw ver +overdraws overdraw ver +overdress overdress nom +overdressed overdress ver +overdresses overdress nom +overdressing overdress ver +overdrew overdraw ver +overdrive overdrive nom +overdriven overdrive ver +overdrives overdrive nom +overdriving overdrive ver +overdrove overdrive ver +overdub overdub nom +overdubbed overdub ver +overdubbing overdub ver +overdubs overdub nom +overeat overeat ver +overeaten overeat ver +overeating overeat ver +overeats overeat ver +overemphases overemphasis nom +overemphasis overemphasis nom +overemphasize overemphasize ver +overemphasized overemphasize ver +overemphasizes overemphasize ver +overemphasizing overemphasize ver +overestimate overestimate nom +overestimated overestimate ver +overestimates overestimate nom +overestimating overestimate ver +overestimation overestimation nom +overestimations overestimation nom +overexcite overexcite ver +overexcited overexcite ver +overexcites overexcite ver +overexciting overexcite ver +overexercise overexercise ver +overexercised overexercise ver +overexercises overexercise ver +overexercising overexercise ver +overexert overexert ver +overexerted overexert ver +overexerting overexert ver +overexertion overexertion nom +overexertions overexertion nom +overexerts overexert ver +overexploitation overexploitation nom +overexploitations overexploitation nom +overexpose overexpose ver +overexposed overexpose ver +overexposes overexpose ver +overexposing overexpose ver +overexposure overexposure nom +overexposures overexposure nom +overextend overextend ver +overextended overextend ver +overextending overextend ver +overextends overextend ver +overfed overfeed ver +overfeed overfeed ver +overfeeding overfeed ver +overfeeds overfeed ver +overfill overfill ver +overfilled overfill ver +overfilling overfill ver +overfills overfill ver +overflew overfly ver +overflies overfly ver +overflight overflight nom +overflights overflight nom +overflow overflow nom +overflowed overflow ver +overflowing overflow ver +overflowings overflowing nom +overflown overfly ver +overflows overflow nom +overfly overfly ver +overflying overfly ver +overgarment overgarment nom +overgarments overgarment nom +overgeneralize overgeneralize ver +overgeneralized overgeneralize ver +overgeneralizes overgeneralize ver +overgeneralizing overgeneralize ver +overgraze overgraze ver +overgrazed overgraze ver +overgrazes overgraze ver +overgrazing overgraze ver +overgrew overgrow ver +overgrow overgrow ver +overgrowing overgrow ver +overgrown overgrow ver +overgrows overgrow ver +overgrowth overgrowth nom +overgrowths overgrowth nom +overhand overhand nom +overhanded overhand ver +overhanding overhand ver +overhands overhand nom +overhang overhang nom +overhanging overhang ver +overhangs overhang nom +overhaul overhaul nom +overhauled overhaul ver +overhauling overhaul ver +overhauls overhaul nom +overhead overhead nom +overheads overhead nom +overhear overhear ver +overheard overhear ver +overhearing overhear ver +overhears overhear ver +overheat overheat nom +overheated overheat ver +overheating overheat ver +overheats overheat nom +overhung overhang ver +overindulge overindulge ver +overindulged overindulge ver +overindulgence overindulgence nom +overindulgences overindulgence nom +overindulges overindulge ver +overindulging overindulge ver +overing over ver +overjoy overjoy ver +overjoyed overjoy ver +overjoying overjoy ver +overjoys overjoy ver +overkill overkill nom +overkills overkill nom +overlaid overlay ver +overlain overlie ver +overlap overlap nom +overlapped overlap ver +overlapping overlap ver +overlaps overlap nom +overlay overlie ver +overlaying overlay ver +overlays overlay nom +overleap overleap ver +overleaped overleap ver +overleaping overleap ver +overleaps overleap ver +overlie overlie ver +overlies overlie ver +overload overload nom +overloaded overload ver +overloading overload ver +overloads overload nom +overlook overlook nom +overlooked overlook ver +overlooking overlook ver +overlooks overlook nom +overlord overlord nom +overlorded overlord ver +overlording overlord ver +overlords overlord nom +overlordship overlordship nom +overlordships overlordship nom +overlying overlie ver +overmantel overmantel nom +overmantels overmantel nom +overmaster overmaster ver +overmastered overmaster ver +overmastering overmaster ver +overmasters overmaster ver +overmuch overmuch nom +overmuches overmuch nom +overnight overnight nom +overnighted overnight ver +overnighter overnighter nom +overnighters overnighter nom +overnighting overnight ver +overnights overnight nom +overoptimism overoptimism nom +overoptimisms overoptimism nom +overpaid overpay ver +overpass overpass nom +overpassed overpass ver +overpasses overpass nom +overpassing overpass ver +overpay overpay ver +overpaying overpay ver +overpayment overpayment nom +overpayments overpayment nom +overpays overpay ver +overplay overplay ver +overplayed overplay ver +overplaying overplay ver +overplays overplay ver +overplus overplus nom +overpluses overplus nom +overpopulate overpopulate ver +overpopulated overpopulate ver +overpopulates overpopulate ver +overpopulating overpopulate ver +overpopulation overpopulation nom +overpopulations overpopulation nom +overpower overpower ver +overpowered overpower ver +overpowering overpower ver +overpowers overpower ver +overpraise overpraise nom +overpraised overpraise ver +overpraises overpraise nom +overpraising overpraise ver +overprice overprice ver +overpriced overprice ver +overprices overprice ver +overpricing overprice ver +overprint overprint nom +overprinted overprint ver +overprinting overprint ver +overprints overprint nom +overproduce overproduce ver +overproduced overproduce ver +overproduces overproduce ver +overproducing overproduce ver +overproduction overproduction nom +overproductions overproduction nom +overprotect overprotect ver +overprotected overprotect ver +overprotecting overprotect ver +overprotection overprotection nom +overprotections overprotection nom +overprotects overprotect ver +overran overrun ver +overrate overrate ver +overrated overrate ver +overrates overrate ver +overrating overrate ver +overreach overreach ver +overreached overreach ver +overreaches overreach ver +overreaching overreach ver +overreact overreact ver +overreacted overreact ver +overreacting overreact ver +overreaction overreaction nom +overreactions overreaction nom +overreacts overreact ver +overred over ver +overrefinement overrefinement nom +overrefinements overrefinement nom +overridden override ver +override override nom +overrides override nom +overriding override ver +overrode override ver +overrule overrule ver +overruled overrule ver +overrules overrule ver +overruling overrule ver +overrun overrun ver +overrunning overrun ver +overruns overrun nom +overs over nom +oversaw oversee ver +oversea oversea nom +overseas oversea nom +oversee oversee ver +overseeing oversee ver +overseen oversee ver +overseer overseer nom +overseers overseer nom +oversees oversee ver +oversell oversell ver +overselling oversell ver +oversells oversell ver +oversensitiveness oversensitiveness nom +oversensitivenesses oversensitiveness nom +oversew oversew ver +oversewed oversew ver +oversewing oversew ver +oversews oversew ver +overshadow overshadow ver +overshadowed overshadow ver +overshadowing overshadow ver +overshadows overshadow ver +overshoe overshoe nom +overshoes overshoe nom +overshoot overshoot nom +overshooting overshoot ver +overshoots overshoot nom +overshot overshoot ver +overshots overshot nom +oversight oversight nom +oversights oversight nom +oversimplification oversimplification nom +oversimplifications oversimplification nom +oversimplified oversimplify ver +oversimplifies oversimplify ver +oversimplify oversimplify ver +oversimplifying oversimplify ver +oversize oversize nom +oversizes oversize nom +overskirt overskirt nom +overskirts overskirt nom +oversleep oversleep ver +oversleeping oversleep ver +oversleeps oversleep ver +overslept oversleep ver +oversold oversell ver +overspecialization overspecialization nom +overspecializations overspecialization nom +overspecialize overspecialize ver +overspecialized overspecialize ver +overspecializes overspecialize ver +overspecializing overspecialize ver +overspend overspend ver +overspending overspend ver +overspends overspend ver +overspent overspend ver +overspill overspill nom +overspilled overspill ver +overspilling overspill ver +overspills overspill nom +overspread overspread ver +overspreading overspread ver +overspreads overspread ver +overstate overstate ver +overstated overstate ver +overstatement overstatement nom +overstatements overstatement nom +overstates overstate ver +overstating overstate ver +overstay overstay ver +overstayed overstay ver +overstaying overstay ver +overstays overstay ver +overstep overstep ver +overstepped overstep ver +overstepping overstep ver +oversteps overstep ver +overstimulate overstimulate ver +overstimulated overstimulate ver +overstimulates overstimulate ver +overstimulating overstimulate ver +overstock overstock nom +overstocked overstock ver +overstocking overstock ver +overstocks overstock nom +overstrain overstrain nom +overstrained overstrain ver +overstraining overstrain ver +overstrains overstrain nom +overstress overstress ver +overstressed overstress ver +overstresses overstress ver +overstressing overstress ver +overstretch overstretch ver +overstretched overstretch ver +overstretches overstretch ver +overstretching overstretch ver +overstuff overstuff ver +overstuffed overstuff ver +overstuffing overstuff ver +overstuffs overstuff ver +oversubscribe oversubscribe ver +oversubscribed oversubscribe ver +oversubscribes oversubscribe ver +oversubscribing oversubscribe ver +oversupplied oversupply ver +oversupplies oversupply nom +oversupply oversupply nom +oversupplying oversupply ver +overtake overtake ver +overtaken overtake ver +overtakes overtake ver +overtaking overtake ver +overtax overtax ver +overtaxed overtax ver +overtaxes overtax ver +overtaxing overtax ver +overthrew overthrow ver +overthrow overthrow nom +overthrowing overthrow ver +overthrown overthrow ver +overthrows overthrow nom +overtime overtime nom +overtimed overtime ver +overtimes overtime nom +overtiming overtime ver +overtire overtire ver +overtired overtire ver +overtires overtire ver +overtiring overtire ver +overtone overtone nom +overtones overtone nom +overtook overtake ver +overtop overtop ver +overtopped overtop ver +overtopping overtop ver +overtops overtop ver +overtrump overtrump ver +overtrumped overtrump ver +overtrumping overtrump ver +overtrumps overtrump ver +overture overture nom +overtured overture ver +overtures overture nom +overturing overture ver +overturn overturn nom +overturned overturn ver +overturning overturn ver +overturns overturn nom +overuse overuse nom +overused overuse ver +overuses overuse nom +overusing overuse ver +overutilization overutilization nom +overutilizations overutilization nom +overvaluation overvaluation nom +overvaluations overvaluation nom +overvalue overvalue ver +overvalued overvalue ver +overvalues overvalue ver +overvaluing overvalue ver +overview overview nom +overviews overview nom +overwearied overweary ver +overwearies overweary ver +overweary overweary ver +overwearying overweary ver +overweight overweight nom +overweighted overweight ver +overweighting overweight ver +overweights overweight nom +overwhelm overwhelm ver +overwhelmed overwhelm ver +overwhelming overwhelm ver +overwhelms overwhelm ver +overwinter overwinter ver +overwintered overwinter ver +overwintering overwinter ver +overwinters overwinter ver +overwork overwork nom +overworked overwork ver +overworking overwork ver +overworks overwork nom +overwrite overwrite ver +overwrites overwrite ver +overwriting overwrite ver +overwritten overwrite ver +overwrote overwrite ver +oviduct oviduct nom +oviducts oviduct nom +ovipositor ovipositor nom +ovipositors ovipositor nom +ovoid ovoid nom +ovoids ovoid nom +ovulate ovulate ver +ovulated ovulate ver +ovulates ovulate ver +ovulating ovulate ver +ovulation ovulation nom +ovulations ovulation nom +ovule ovule nom +ovules ovule nom +ovum ovum nom +owe owe ver +owed owe ver +owes owe ver +owing owe ver +owl owl nom +owled owl ver +owlet owlet nom +owlets owlet nom +owling owl ver +owls owl nom +own own sw +owned own ver +owner owner nom +owners owner nom +ownership ownership nom +ownerships ownership nom +owning own ver +owns own ver +ox ox nom +oxalacetate oxalacetate nom +oxalacetates oxalacetate nom +oxalate oxalate nom +oxalates oxalate nom +oxalis oxalis nom +oxalises oxalis nom +oxaloacetate oxaloacetate nom +oxaloacetates oxaloacetate nom +oxazepam oxazepam nom +oxazepams oxazepam nom +oxblood oxblood nom +oxbloods oxblood nom +oxbow oxbow nom +oxbows oxbow nom +oxcart oxcart nom +oxcarts oxcart nom +oxen ox nom +oxes ox nom +oxeye oxeye nom +oxeyes oxeye nom +oxford oxford nom +oxfords oxford nom +oxheart oxheart nom +oxhearts oxheart nom +oxidant oxidant nom +oxidants oxidant nom +oxidase oxidase nom +oxidases oxidase nom +oxidation oxidation nom +oxidations oxidation nom +oxide oxide nom +oxides oxide nom +oxidisation oxidisation nom +oxidisations oxidisation nom +oxidise oxidise ver +oxidised oxidise ver +oxidises oxidise ver +oxidising oxidise ver +oxidization oxidization nom +oxidizations oxidization nom +oxidize oxidize ver +oxidized oxidize ver +oxidizer oxidizer nom +oxidizers oxidizer nom +oxidizes oxidize ver +oxidizing oxidize ver +oxidoreductase oxidoreductase nom +oxidoreductases oxidoreductase nom +oxime oxime nom +oximes oxime nom +oximeter oximeter nom +oximeters oximeter nom +oxlip oxlip nom +oxlips oxlip nom +oxtail oxtail nom +oxtails oxtail nom +oxtongue oxtongue nom +oxtongues oxtongue nom +oxyacetylene oxyacetylene nom +oxyacetylenes oxyacetylene nom +oxyacid oxyacid nom +oxyacids oxyacid nom +oxycephalies oxycephaly nom +oxycephaly oxycephaly nom +oxygen oxygen nom +oxygenase oxygenase nom +oxygenases oxygenase nom +oxygenate oxygenate ver +oxygenated oxygenate ver +oxygenates oxygenate ver +oxygenating oxygenate ver +oxygenation oxygenation nom +oxygenations oxygenation nom +oxygenize oxygenize ver +oxygenized oxygenize ver +oxygenizes oxygenize ver +oxygenizing oxygenize ver +oxygens oxygen nom +oxymora oxymoron nom +oxymoron oxymoron nom +oxyphenbutazone oxyphenbutazone nom +oxyphenbutazones oxyphenbutazone nom +oxytetracycline oxytetracycline nom +oxytetracyclines oxytetracycline nom +oxytocin oxytocin nom +oxytocins oxytocin nom +oyster oyster nom +oystercatcher oystercatcher nom +oystercatchers oystercatcher nom +oystered oyster ver +oysterfish oysterfish nom +oystering oyster ver +oysters oyster nom +ozocerite ozocerite nom +ozocerites ozocerite nom +ozokerite ozokerite nom +ozokerites ozokerite nom +ozone ozone nom +ozones ozone nom +p p sw +pa pa nom +pablum pablum nom +pablums pablum nom +pabulum pabulum nom +pabulums pabulum nom +paca paca nom +pacas paca nom +pace pace nom +paced pace ver +pacemaker pacemaker nom +pacemakers pacemaker nom +pacer pacer nom +pacers pacer nom +paces pace nom +pacesetter pacesetter nom +pacesetters pacesetter nom +pacha pacha nom +pachas pacha nom +pachinko pachinko nom +pachinkos pachinko nom +pachisi pachisi nom +pachisis pachisi nom +pachouli pachouli nom +pachoulis pachouli nom +pachuco pachuco nom +pachucos pachuco nom +pachyderm pachyderm nom +pachyderms pachyderm nom +pachysandra pachysandra nom +pachysandras pachysandra nom +pachytene pachytene nom +pachytenes pachytene nom +pacification pacification nom +pacifications pacification nom +pacificist pacificist nom +pacificists pacificist nom +pacified pacify ver +pacifier pacifier nom +pacifiers pacifier nom +pacifies pacify ver +pacifism pacifism nom +pacifisms pacifism nom +pacifist pacifist nom +pacifists pacifist nom +pacify pacify ver +pacifying pacify ver +pacing pace ver +pack pack nom +package package nom +packaged package ver +packager packager nom +packagers packager nom +packages package nom +packaging package ver +packagings packaging nom +packed pack ver +packer packer nom +packers packer nom +packet packet nom +packeted packet ver +packeting packet ver +packets packet nom +packhorse packhorse nom +packhorses packhorse nom +packing pack ver +packinghouse packinghouse nom +packinghouses packinghouse nom +packings packing nom +packs pack nom +packsaddle packsaddle nom +packsaddles packsaddle nom +packthread packthread nom +packthreads packthread nom +pact pact nom +pacts pact nom +pad pad nom +padauk padauk nom +padauks padauk nom +padded pad ver +paddies paddy nom +padding pad ver +paddings padding nom +paddle paddle nom +paddled paddle ver +paddlefish paddlefish nom +paddler paddler nom +paddlers paddler nom +paddles paddle nom +paddling paddle ver +paddock paddock nom +paddocked paddock ver +paddocking paddock ver +paddocks paddock nom +paddy paddy nom +paddymelon paddymelon nom +paddymelons paddymelon nom +pademelon pademelon nom +pademelons pademelon nom +padlock padlock nom +padlocked padlock ver +padlocking padlock ver +padlocks padlock nom +padouk padouk nom +padouks padouk nom +padre padre nom +padres padre nom +padrone padrone nom +padrones padrone nom +pads pad nom +paean paean nom +paeans paean nom +paederast paederast nom +paederasts paederast nom +paediatrician paediatrician nom +paediatricians paediatrician nom +paella paella nom +paellas paella nom +paeonies paeony nom +paeony paeony nom +pagan pagan nom +paganism paganism nom +paganisms paganism nom +pagans pagan nom +page page nom +pageant pageant nom +pageantries pageantry nom +pageantry pageantry nom +pageants pageant nom +pageboy pageboy nom +pageboys pageboy nom +paged page ver +pager pager nom +pagers pager nom +pages page nom +paginate paginate ver +paginated paginate ver +paginates paginate ver +paginating paginate ver +pagination pagination nom +paginations pagination nom +paging page ver +pagings paging nom +pagoda pagoda nom +pagodas pagoda nom +paid pay ver +paigle paigle nom +paigles paigle nom +pail pail nom +pailful pailful nom +pailfuls pailful nom +paillasse paillasse nom +paillasses paillasse nom +pails pail nom +pain pain nom +pained pain ver +painful painful adj +painfuller painful adj +painfullest painful adj +painfulness painfulness nom +painfulnesses painfulness nom +paining pain ver +painkiller painkiller nom +painkillers painkiller nom +painlessness painlessness nom +painlessnesses painlessness nom +pains pain nom +painstaking painstaking nom +painstakings painstaking nom +paint paint nom +paintbox paintbox nom +paintboxes paintbox nom +paintbrush paintbrush nom +paintbrushes paintbrush nom +painted paint ver +painter painter nom +painters painter nom +painting paint ver +paintings painting nom +paints paint nom +pair pair nom +paired pair ver +pairing pair ver +pairings pairing nom +pairs pair nom +paisa paisa nom +paisas paisa nom +paisley paisley nom +paisleys paisley nom +pajama pajama nom +pajamas pajama nom +pal pal nom +palace palace nom +palaces palace nom +paladin paladin nom +paladins paladin nom +palaeontologist palaeontologist nom +palaeontologists palaeontologist nom +palanquin palanquin nom +palanquins palanquin nom +palas palas nom +palases palas nom +palatabilities palatability nom +palatability palatability nom +palatableness palatableness nom +palatablenesses palatableness nom +palatal palatal nom +palatalise palatalise ver +palatalised palatalise ver +palatalises palatalise ver +palatalising palatalise ver +palatalization palatalization nom +palatalizations palatalization nom +palatalize palatalize ver +palatalized palatalize ver +palatalizes palatalize ver +palatalizing palatalize ver +palatals palatal nom +palate palate nom +palates palate nom +palatinate palatinate nom +palatinates palatinate nom +palatine palatine nom +palatines palatine nom +palaver palaver nom +palavered palaver ver +palavering palaver ver +palavers palaver nom +pale pale adj +paled pale ver +paleface paleface nom +palefaces paleface nom +paleness paleness nom +palenesses paleness nom +paleoanthropologies paleoanthropology nom +paleoanthropology paleoanthropology nom +paleobiologies paleobiology nom +paleobiology paleobiology nom +paleobotanies paleobotany nom +paleobotany paleobotany nom +paleoclimatologies paleoclimatology nom +paleoclimatology paleoclimatology nom +paleogeographies paleogeography nom +paleogeography paleogeography nom +paleographer paleographer nom +paleographers paleographer nom +paleographies paleography nom +paleography paleography nom +paleolith paleolith nom +paleoliths paleolith nom +paleontologies paleontology nom +paleontologist paleontologist nom +paleontologists paleontologist nom +paleontology paleontology nom +paleopathologies paleopathology nom +paleopathology paleopathology nom +paleozoologies paleozoology nom +paleozoology paleozoology nom +paler pale adj +pales pale nom +palest pale adj +palette palette nom +palettes palette nom +palfrey palfrey nom +palfreys palfrey nom +palimonies palimony nom +palimony palimony nom +palimpsest palimpsest nom +palimpsests palimpsest nom +palindrome palindrome nom +palindromes palindrome nom +paling pale ver +palingeneses palingenesis nom +palingenesis palingenesis nom +palings paling nom +palisade palisade nom +palisaded palisade ver +palisades palisade nom +palisading palisade ver +pall pall nom +palladium palladium nom +palladiums palladium nom +pallbearer pallbearer nom +pallbearers pallbearer nom +palled pal ver +pallet pallet nom +palleted pallet ver +palleting pallet ver +pallets pallet nom +pallette pallette nom +pallettes pallette nom +palliasse palliasse nom +palliasses palliasse nom +palliate palliate ver +palliated palliate ver +palliates palliate ver +palliating palliate ver +palliation palliation nom +palliations palliation nom +palliative palliative nom +palliatives palliative nom +pallid pallid adj +pallider pallid adj +pallidest pallid adj +pallidness pallidness nom +pallidnesses pallidness nom +pallier pally adj +palliest pally adj +palling pal ver +pallium pallium nom +palliums pallium nom +pallor pallor nom +pallors pallor nom +palls pall nom +pally pally adj +palm palm nom +palmed palm ver +palmer palmer nom +palmers palmer nom +palmetto palmetto nom +palmettos palmetto nom +palmier palmy adj +palmiest palmy adj +palming palm ver +palmist palmist nom +palmistries palmistry nom +palmistry palmistry nom +palmists palmist nom +palmitin palmitin nom +palmitins palmitin nom +palms palm nom +palmtop palmtop nom +palmtops palmtop nom +palmy palmy adj +palmyra palmyra nom +palmyras palmyra nom +palomino palomino nom +palominos palomino nom +palooka palooka nom +palookas palooka nom +palpabilities palpability nom +palpability palpability nom +palpate palpate ver +palpated palpate ver +palpates palpate ver +palpating palpate ver +palpation palpation nom +palpations palpation nom +palpitate palpitate ver +palpitated palpitate ver +palpitates palpitate ver +palpitating palpitate ver +palpitation palpitation nom +palpitations palpitation nom +pals pal nom +palsgrave palsgrave nom +palsgraves palsgrave nom +palsied palsy ver +palsier palsy adj +palsies palsy nom +palsiest palsy adj +palsy palsy adj +palsying palsy ver +palter palter ver +paltered palter ver +paltering palter ver +palters palter ver +paltrier paltry adj +paltriest paltry adj +paltriness paltriness nom +paltrinesses paltriness nom +paltry paltry adj +pamper pamper ver +pampered pamper ver +pampering pamper ver +pampers pamper ver +pamphlet pamphlet nom +pamphleted pamphlet ver +pamphleteer pamphleteer nom +pamphleteered pamphleteer ver +pamphleteering pamphleteer ver +pamphleteers pamphleteer nom +pamphleting pamphlet ver +pamphlets pamphlet nom +pan pan nom +panacea panacea nom +panaceas panacea nom +panache panache nom +panaches panache nom +panama panama nom +panamas panama nom +panatela panatela nom +panatelas panatela nom +pancake pancake nom +pancaked pancake ver +pancakes pancake nom +pancaking pancake ver +pancreas pancreas nom +pancreases pancreas nom +pancreatitides pancreatitis nom +pancreatitis pancreatitis nom +pancytopenia pancytopenia nom +pancytopenias pancytopenia nom +panda panda nom +pandanus pandanus nom +pandanuses pandanus nom +pandas panda nom +pandemic pandemic nom +pandemics pandemic nom +pandemonium pandemonium nom +pandemoniums pandemonium nom +pander pander nom +pandered pander ver +panderer panderer nom +panderers panderer nom +pandering pander ver +panders pander nom +pandowdies pandowdy nom +pandowdy pandowdy nom +pane pane nom +panegyric panegyric nom +panegyrics panegyric nom +panegyrist panegyrist nom +panegyrists panegyrist nom +panel panel nom +paneled panel ver +paneling panel ver +panelist panelist nom +panelists panelist nom +panelling panelling nom +panellings panelling nom +panels panel nom +panes pane nom +panetela panetela nom +panetelas panetela nom +panetella panetella nom +panetellas panetella nom +panfish panfish nom +pang pang nom +panga panga nom +pangas panga nom +pangolin pangolin nom +pangolins pangolin nom +pangs pang nom +panhandle panhandle nom +panhandled panhandle ver +panhandler panhandler nom +panhandlers panhandler nom +panhandles panhandle nom +panhandling panhandle ver +panic panic nom +panicked panic ver +panickier panicky adj +panickiest panicky adj +panicking panic ver +panicky panicky adj +panicle panicle nom +panicles panicle nom +panics panic nom +panier panier nom +paniers panier nom +panjandrum panjandrum nom +panjandrums panjandrum nom +panned pan ver +pannier pannier nom +panniers pannier nom +pannikin pannikin nom +pannikins pannikin nom +panning pan ver +panoplies panoply nom +panoply panoply nom +panorama panorama nom +panoramas panorama nom +panpipe panpipe nom +panpipes panpipe nom +pans pan nom +pansies pansy nom +pansy pansy nom +pant pant nom +pantaloon pantaloon nom +pantaloons pantaloon nom +pantechnicon pantechnicon nom +pantechnicons pantechnicon nom +panted pant ver +pantheism pantheism nom +pantheisms pantheism nom +pantheist pantheist nom +pantheists pantheist nom +pantheon pantheon nom +pantheons pantheon nom +panther panther nom +panthers panther nom +pantie pantie nom +panties pantie nom +pantile pantile nom +pantiles pantile nom +panting pant ver +pantings panting nom +panto panto nom +pantograph pantograph nom +pantographs pantograph nom +pantomime pantomime nom +pantomimed pantomime ver +pantomimes pantomime nom +pantomiming pantomime ver +pantomimist pantomimist nom +pantomimists pantomimist nom +pantos panto nom +pantries pantry nom +pantry pantry nom +pantryman pantryman nom +pantrymen pantryman nom +pants pant nom +pantsuit pantsuit nom +pantsuits pantsuit nom +panty panty nom +pantyliner pantyliner nom +pantyliners pantyliner nom +pantywaist pantywaist nom +pantywaists pantywaist nom +panzer panzer nom +panzers panzer nom +pap pap nom +papa papa nom +papacies papacy nom +papacy papacy nom +papain papain nom +papains papain nom +papas papa nom +papaverine papaverine nom +papaverines papaverine nom +papaw papaw nom +papaws papaw nom +papaya papaya nom +papayas papaya nom +paper paper nom +paperback paperback nom +paperbacks paperback nom +paperboard paperboard nom +paperboards paperboard nom +paperboy paperboy nom +paperboys paperboy nom +paperclip paperclip nom +paperclips paperclip nom +papered paper ver +paperer paperer nom +paperers paperer nom +papergirl papergirl nom +papergirls papergirl nom +paperhanger paperhanger nom +paperhangers paperhanger nom +paperhanging paperhanging nom +paperhangings paperhanging nom +paperier papery adj +paperiest papery adj +papering paper ver +paperings papering nom +paperknife paperknife nom +paperknives paperknife nom +papers paper nom +paperweight paperweight nom +paperweights paperweight nom +paperwork paperwork nom +paperworks paperwork nom +papery papery adj +papilla papilla nom +papillae papilla nom +papilloma papilloma nom +papillomas papilloma nom +papillon papillon nom +papillons papillon nom +papist papist nom +papists papist nom +papoose papoose nom +papooses papoose nom +papovavirus papovavirus nom +papovaviruses papovavirus nom +pappier pappy adj +pappies pappy nom +pappiest pappy adj +pappoose pappoose nom +pappooses pappoose nom +pappus pappus nom +pappuses pappus nom +pappy pappy adj +paprika paprika nom +paprikas paprika nom +paps pap nom +papule papule nom +papules papule nom +papyri papyrus nom +papyrus papyrus nom +par par nom +para para nom +parable parable nom +parables parable nom +parabola parabola nom +parabolas parabola nom +paraboloid paraboloid nom +paraboloids paraboloid nom +paracenteses paracentesis nom +paracentesis paracentesis nom +parachute parachute nom +parachuted parachute ver +parachuter parachuter nom +parachuters parachuter nom +parachutes parachute nom +parachuting parachute ver +parachutist parachutist nom +parachutists parachutist nom +parade parade nom +paraded parade ver +parader parader nom +paraders parader nom +parades parade nom +paradiddle paradiddle nom +paradiddles paradiddle nom +paradigm paradigm nom +paradigms paradigm nom +parading parade ver +paradise paradise nom +paradises paradise nom +paradox paradox nom +paradoxes paradox nom +paraesthesia paraesthesia nom +paraesthesias paraesthesia nom +paraffin paraffin nom +paraffined paraffin ver +paraffining paraffin ver +paraffins paraffin nom +paragon paragon nom +paragoned paragon ver +paragoning paragon ver +paragons paragon nom +paragraph paragraph nom +paragraphed paragraph ver +paragrapher paragrapher nom +paragraphers paragrapher nom +paragraphing paragraph ver +paragraphs paragraph nom +parakeet parakeet nom +parakeets parakeet nom +paralanguage paralanguage nom +paralanguages paralanguage nom +paralegal paralegal nom +paralegals paralegal nom +paraleipses paraleipsis nom +paraleipsis paraleipsis nom +paralepses paralepsis nom +paralepsis paralepsis nom +paralipses paralipsis nom +paralipsis paralipsis nom +parallax parallax nom +parallaxes parallax nom +parallel parallel nom +paralleled parallel ver +parallelepiped parallelepiped nom +parallelepipeds parallelepiped nom +paralleling parallel ver +parallelism parallelism nom +parallelisms parallelism nom +parallelize parallelize ver +parallelized parallelize ver +parallelizes parallelize ver +parallelizing parallelize ver +parallelogram parallelogram nom +parallelograms parallelogram nom +parallelopiped parallelopiped nom +parallelopipeds parallelopiped nom +parallels parallel nom +paralogism paralogism nom +paralogisms paralogism nom +paralyse paralyse ver +paralysed paralyse ver +paralyses paralyse ver +paralysing paralyse ver +paralysis paralysis nom +paralytic paralytic nom +paralytics paralytic nom +paralyze paralyze ver +paralyzed paralyze ver +paralyzes paralyze ver +paralyzing paralyze ver +paramagnet paramagnet nom +paramagnetism paramagnetism nom +paramagnetisms paramagnetism nom +paramagnets paramagnet nom +paramecia paramecium nom +paramecium paramecium nom +paramedic paramedic nom +paramedics paramedic nom +parameter parameter nom +parameters parameter nom +paramilitaries paramilitary nom +paramilitary paramilitary nom +paramnesia paramnesia nom +paramnesias paramnesia nom +paramount paramount nom +paramountcies paramountcy nom +paramountcy paramountcy nom +paramounts paramount nom +paramour paramour nom +paramours paramour nom +paramyxovirus paramyxovirus nom +paramyxoviruses paramyxovirus nom +parang parang nom +parangs parang nom +paranoia paranoia nom +paranoiac paranoiac nom +paranoiacs paranoiac nom +paranoias paranoia nom +paranoid paranoid nom +paranoids paranoid nom +parapet parapet nom +parapets parapet nom +paraphernalia paraphernalia nom +paraphernalias paraphernalia nom +paraphrase paraphrase nom +paraphrased paraphrase ver +paraphrases paraphrase nom +paraphrasing paraphrase ver +paraphrasis paraphrasis nom +paraphyses paraphysis nom +paraphysis paraphysis nom +paraplegia paraplegia nom +paraplegias paraplegia nom +paraplegic paraplegic nom +paraplegics paraplegic nom +parapodia parapodium nom +parapodium parapodium nom +paraprofessional paraprofessional nom +paraprofessionals paraprofessional nom +parapsychologies parapsychology nom +parapsychologist parapsychologist nom +parapsychologists parapsychologist nom +parapsychology parapsychology nom +paraquat paraquat nom +paraquats paraquat nom +paraquet paraquet nom +paraquets paraquet nom +paras para nom +parasail parasail nom +parasailing parasailing nom +parasailings parasailing nom +parasails parasail nom +parasite parasite nom +parasites parasite nom +parasitism parasitism nom +parasitisms parasitism nom +parasol parasol nom +parasols parasol nom +parasympathetic parasympathetic nom +parasympathetics parasympathetic nom +parathion parathion nom +parathions parathion nom +parathyroid parathyroid nom +parathyroids parathyroid nom +paratrooper paratrooper nom +paratroopers paratrooper nom +paratyphoid paratyphoid nom +paratyphoids paratyphoid nom +parazoan parazoan nom +parazoans parazoan nom +parboil parboil ver +parboiled parboil ver +parboiling parboil ver +parboils parboil ver +parcel parcel nom +parceled parcel ver +parceling parcel ver +parcelling parcelling nom +parcels parcel nom +parch parch ver +parched parch ver +parches parch ver +parching parch ver +parchment parchment nom +parchments parchment nom +pardner pardner nom +pardners pardner nom +pardon pardon nom +pardoned pardon ver +pardoner pardoner nom +pardoners pardoner nom +pardoning pardon ver +pardons pardon nom +pare pare ver +pared pare ver +paregoric paregoric nom +paregorics paregoric nom +parenchyma parenchyma nom +parenchymas parenchyma nom +parent parent nom +parentage parentage nom +parentages parentage nom +parented parent ver +parentheses parenthesis nom +parenthesis parenthesis nom +parenthesize parenthesize ver +parenthesized parenthesize ver +parenthesizes parenthesize ver +parenthesizing parenthesize ver +parenthood parenthood nom +parenthoods parenthood nom +parenting parent ver +parentings parenting nom +parents parent nom +parer parer nom +parers parer nom +pares pare ver +pareses paresis nom +paresis paresis nom +paresthesia paresthesia nom +paresthesias paresthesia nom +paretic paretic nom +paretics paretic nom +parfait parfait nom +parfaits parfait nom +parget parget nom +pargeting pargeting nom +pargetings pargeting nom +pargets parget nom +pargetted parget ver +pargetting parget ver +parhelia parhelion nom +parhelion parhelion nom +pariah pariah nom +pariahs pariah nom +parietal parietal nom +parietals parietal nom +parimutuel parimutuel nom +parimutuels parimutuel nom +paring pare ver +parings paring nom +parish parish nom +parishes parish nom +parishioner parishioner nom +parishioners parishioner nom +parities parity nom +parity parity nom +park park nom +parka parka nom +parkas parka nom +parked park ver +parkier parky adj +parkiest parky adj +parking park ver +parkings parking nom +parks park nom +parkway parkway nom +parkways parkway nom +parky parky adj +parlance parlance nom +parlances parlance nom +parlay parlay nom +parlayed parlay ver +parlaying parlay ver +parlays parlay nom +parley parley nom +parleyed parley ver +parleying parley ver +parleys parley nom +parliament parliament nom +parliamentarian parliamentarian nom +parliamentarians parliamentarian nom +parliaments parliament nom +parlor parlor nom +parlormaid parlormaid nom +parlormaids parlormaid nom +parlors parlor nom +parlour parlour nom +parlours parlour nom +parochialism parochialism nom +parochialisms parochialism nom +parodied parody ver +parodies parody nom +parodist parodist nom +parodists parodist nom +parody parody nom +parodying parody ver +parole parole nom +paroled parole ver +parolee parolee nom +parolees parolee nom +paroles parole nom +paroling parole ver +paroquet paroquet nom +paroquets paroquet nom +parotitis parotitis nom +parotitises parotitis nom +paroxysm paroxysm nom +paroxysms paroxysm nom +parquet parquet nom +parqueted parquet ver +parqueting parquet ver +parquetries parquetry nom +parquetry parquetry nom +parquets parquet nom +parr parr nom +parrakeet parrakeet nom +parrakeets parrakeet nom +parred par ver +parricide parricide nom +parricides parricide nom +parried parry ver +parries parry nom +parring par ver +parroket parroket nom +parrokets parroket nom +parrot parrot nom +parroted parrot ver +parrotfish parrotfish nom +parroting parrot ver +parrots parrot nom +parrs parr nom +parry parry nom +parrying parry ver +pars par nom +parse parse ver +parsec parsec nom +parsecs parsec nom +parsed parse ver +parses parse ver +parsimonies parsimony nom +parsimoniousness parsimoniousness nom +parsimoniousnesses parsimoniousness nom +parsimony parsimony nom +parsing parse ver +parsley parsley nom +parsleys parsley nom +parsnip parsnip nom +parsnips parsnip nom +parson parson nom +parsonage parsonage nom +parsonages parsonage nom +parsons parson nom +part part nom +partake partake ver +partaken partake ver +partaker partaker nom +partakers partaker nom +partakes partake ver +partaking partake ver +parted part ver +parterre parterre nom +parterres parterre nom +parthenogeneses parthenogenesis nom +parthenogenesis parthenogenesis nom +partial partial nom +partialities partiality nom +partiality partiality nom +partialness partialness nom +partialnesses partialness nom +partials partial nom +participant participant nom +participants participant nom +participate participate ver +participated participate ver +participates participate ver +participating participate ver +participation participation nom +participations participation nom +participator participator nom +participators participator nom +participle participle nom +participles participle nom +particle particle nom +particleboard particleboard nom +particleboards particleboard nom +particles particle nom +particular particular sw +particularism particularism nom +particularisms particularism nom +particularities particularity nom +particularity particularity nom +particularization particularization nom +particularizations particularization nom +particularize particularize ver +particularized particularize ver +particularizes particularize ver +particularizing particularize ver +particularly particularly sw +particulars particular nom +particulate particulate nom +particulates particulate nom +partied party ver +parties party nom +parting part ver +partings parting nom +partisan partisan nom +partisans partisan nom +partisanship partisanship nom +partisanships partisanship nom +partition partition nom +partitioned partition ver +partitioning partition ver +partitionist partitionist nom +partitionists partitionist nom +partitions partition nom +partitive partitive nom +partitives partitive nom +partizan partizan nom +partizans partizan nom +partner partner nom +partnered partner ver +partnering partner ver +partners partner nom +partnership partnership nom +partnerships partnership nom +partook partake ver +partridge partridge nom +partridgeberries partridgeberry nom +partridgeberry partridgeberry nom +partridges partridge nom +parts part nom +parturiencies parturiency nom +parturiency parturiency nom +parturition parturition nom +parturitions parturition nom +party party nom +partygoer partygoer nom +partygoers partygoer nom +partying party ver +parvenu parvenu nom +parvenus parvenu nom +parvis parvis nom +parvises parvis nom +parvo parvo nom +parvos parvo nom +parvovirus parvovirus nom +parvoviruses parvovirus nom +pas pa nom +pascal pascal nom +pascals pascal nom +paschal paschal nom +paschals paschal nom +paseo paseo nom +paseos paseo nom +pasha pasha nom +pashas pasha nom +paspalum paspalum nom +paspalums paspalum nom +pasqueflower pasqueflower nom +pasqueflowers pasqueflower nom +pasquinade pasquinade nom +pasquinades pasquinade nom +pass pass nom +passage passage nom +passaged passage ver +passages passage nom +passageway passageway nom +passageways passageway nom +passaging passage ver +passbook passbook nom +passbooks passbook nom +passe passe nom +passed pass ver +passel passel nom +passels passel nom +passementerie passementerie nom +passementeries passementerie nom +passenger passenger nom +passengers passenger nom +passer passer nom +passerby passerby nom +passerine passerine nom +passerines passerine nom +passers passer nom +passersby passerby nom +passes pass nom +passing pass ver +passings passing nom +passion passion nom +passionateness passionateness nom +passionatenesses passionateness nom +passionflower passionflower nom +passionflowers passionflower nom +passions passion nom +passive passive nom +passiveness passiveness nom +passivenesses passiveness nom +passives passive nom +passivism passivism nom +passivisms passivism nom +passivities passivity nom +passivity passivity nom +passkey passkey nom +passkeys passkey nom +passport passport nom +passports passport nom +password password nom +passwords password nom +past past nom +pasta pasta nom +pastas pasta nom +paste paste nom +pasteboard pasteboard nom +pasteboards pasteboard nom +pasted paste ver +pastel pastel nom +pastels pastel nom +pastern pastern nom +pasterns pastern nom +pastes paste nom +pasteurization pasteurization nom +pasteurizations pasteurization nom +pasteurize pasteurize ver +pasteurized pasteurize ver +pasteurizer pasteurizer nom +pasteurizers pasteurizer nom +pasteurizes pasteurize ver +pasteurizing pasteurize ver +pastiche pastiche nom +pastiches pastiche nom +pastier pasty adj +pasties pasty nom +pastiest pasty adj +pastil pastil nom +pastille pastille nom +pastilles pastille nom +pastils pastil nom +pastime pastime nom +pastimes pastime nom +pastiness pastiness nom +pastinesses pastiness nom +pasting paste ver +pastis pastis nom +pastises pastis nom +pastness pastness nom +pastnesses pastness nom +pastor pastor nom +pastoral pastoral nom +pastorale pastorale nom +pastorales pastorale nom +pastorals pastoral nom +pastorate pastorate nom +pastorates pastorate nom +pastored pastor ver +pastoring pastor ver +pastors pastor nom +pastorship pastorship nom +pastorships pastorship nom +pastrami pastrami nom +pastramis pastrami nom +pastries pastry nom +pastry pastry nom +pasts past nom +pasturage pasturage nom +pasturages pasturage nom +pasture pasture nom +pastured pasture ver +pastureland pastureland nom +pasturelands pastureland nom +pastures pasture nom +pasturing pasture ver +pasty pasty adj +pat pat nom +pataca pataca nom +patacas pataca nom +patch patch nom +patchboard patchboard nom +patchboards patchboard nom +patched patch ver +patches patch nom +patchier patchy adj +patchiest patchy adj +patchiness patchiness nom +patchinesses patchiness nom +patching patch ver +patchings patching nom +patchouli patchouli nom +patchoulies patchouly nom +patchoulis patchouli nom +patchouly patchouly nom +patchwork patchwork nom +patchworks patchwork nom +patchy patchy adj +pate pate nom +patella patella nom +patellas patella nom +patent patent nom +patented patent ver +patentee patentee nom +patentees patentee nom +patenting patent ver +patents patent nom +pater pater nom +paterfamilias paterfamilias nom +paterfamiliases paterfamilias nom +paternalism paternalism nom +paternalisms paternalism nom +paternities paternity nom +paternity paternity nom +paternoster paternoster nom +paternosters paternoster nom +paters pater nom +pates pate nom +path path nom +pathfinder pathfinder nom +pathfinders pathfinder nom +pathogen pathogen nom +pathogeneses pathogenesis nom +pathogenesis pathogenesis nom +pathogens pathogen nom +pathologies pathology nom +pathologist pathologist nom +pathologists pathologist nom +pathology pathology nom +pathos pathos nom +pathoses pathos nom +paths path nom +pathway pathway nom +pathways pathway nom +patience patience nom +patiences patience nom +patient patient adj +patienter patient adj +patientest patient adj +patients patient nom +patina patina nom +patinas patina nom +patinate patinate ver +patinated patinate ver +patinates patinate ver +patinating patinate ver +patinize patinize ver +patinized patinize ver +patinizes patinize ver +patinizing patinize ver +patio patio nom +patios patio nom +patisserie patisserie nom +patisseries patisserie nom +patness patness nom +patnesses patness nom +patois patois nom +patresfamilias paterfamilias nom +patrial patrial nom +patrials patrial nom +patriarch patriarch nom +patriarchate patriarchate nom +patriarchates patriarchate nom +patriarchies patriarchy nom +patriarchs patriarch nom +patriarchy patriarchy nom +patrician patrician nom +patricians patrician nom +patricide patricide nom +patricides patricide nom +patrilineage patrilineage nom +patrilineages patrilineage nom +patrimonies patrimony nom +patrimony patrimony nom +patriot patriot nom +patriotism patriotism nom +patriotisms patriotism nom +patriots patriot nom +patrol patrol nom +patrolled patrol ver +patroller patroller nom +patrollers patroller nom +patrolling patrol ver +patrolman patrolman nom +patrolmen patrolman nom +patrols patrol nom +patrolwoman patrolwoman nom +patrolwomen patrolwoman nom +patron patron nom +patronage patronage nom +patronages patronage nom +patroness patroness nom +patronesses patroness nom +patronize patronize ver +patronized patronize ver +patronizer patronizer nom +patronizers patronizer nom +patronizes patronize ver +patronizing patronize ver +patrons patron nom +patronymic patronymic nom +patronymics patronymic nom +patroon patroon nom +patroons patroon nom +pats pat nom +patsies patsy nom +patsy patsy nom +patted pat ver +patten patten nom +pattens patten nom +patter patter nom +pattered patter ver +pattering patter ver +pattern pattern nom +patterned pattern ver +patterning pattern ver +patternmaker patternmaker nom +patternmakers patternmaker nom +patterns pattern nom +patters patter nom +patties patty nom +patting pat ver +patty patty nom +patzer patzer nom +patzers patzer nom +paucities paucity nom +paucity paucity nom +paunch paunch nom +paunches paunch nom +paunchier paunchy adj +paunchiest paunchy adj +paunchiness paunchiness nom +paunchinesses paunchiness nom +paunchy paunchy adj +pauper pauper nom +paupered pauper ver +paupering pauper ver +pauperism pauperism nom +pauperisms pauperism nom +pauperization pauperization nom +pauperizations pauperization nom +pauperize pauperize ver +pauperized pauperize ver +pauperizes pauperize ver +pauperizing pauperize ver +paupers pauper nom +pause pause nom +paused pause ver +pauses pause nom +pausing pause ver +pavage pavage nom +pavages pavage nom +pavane pavane nom +pavanes pavane nom +pave pave ver +paved pave ver +pavement pavement nom +pavements pavement nom +paves pave ver +pavilion pavilion nom +pavilioned pavilion ver +pavilioning pavilion ver +pavilions pavilion nom +paving pave ver +pavings paving nom +pavior pavior nom +paviors pavior nom +paviour paviour nom +paviours paviour nom +pavis pavis nom +pavise pavise nom +pavises pavis nom +paw paw nom +pawed paw ver +pawing paw ver +pawkier pawky adj +pawkiest pawky adj +pawky pawky adj +pawl pawl nom +pawls pawl nom +pawn pawn nom +pawnbroker pawnbroker nom +pawnbrokers pawnbroker nom +pawnbroking pawnbroking nom +pawnbrokings pawnbroking nom +pawned pawn ver +pawning pawn ver +pawns pawn nom +pawnshop pawnshop nom +pawnshops pawnshop nom +pawpaw pawpaw nom +pawpaws pawpaw nom +paws paw nom +pax pax nom +paxes pax nom +pay pay nom +payable payable nom +payables payable nom +payback payback nom +paybacks payback nom +paycheck paycheck nom +paychecks paycheck nom +payday payday nom +paydays payday nom +payed pay ver +payee payee nom +payees payee nom +payer payer nom +payers payer nom +paygrade paygrade nom +paygrades paygrade nom +paying pay ver +payings paying nom +payload payload nom +payloads payload nom +paymaster paymaster nom +paymasters paymaster nom +payment payment nom +payments payment nom +paynim paynim nom +paynims paynim nom +payoff payoff nom +payoffs payoff nom +payola payola nom +payolas payola nom +payout payout nom +payouts payout nom +payroll payroll nom +payrolls payroll nom +pays pay nom +paysheet paysheet nom +paysheets paysheet nom +payslip payslip nom +payslips payslip nom +pe pe nom +pea pea nom +peace peace nom +peaceableness peaceableness nom +peaceablenesses peaceableness nom +peaced peace ver +peaceful peaceful adj +peacefuller peaceful adj +peacefullest peaceful adj +peacefulness peacefulness nom +peacefulnesses peacefulness nom +peacekeeper peacekeeper nom +peacekeepers peacekeeper nom +peacekeeping peacekeeping nom +peacekeepings peacekeeping nom +peacemaker peacemaker nom +peacemakers peacemaker nom +peacemaking peacemaking nom +peacemakings peacemaking nom +peacenik peacenik nom +peaceniks peacenik nom +peaces peace nom +peacetime peacetime nom +peacetimes peacetime nom +peach peach nom +peached peach ver +peaches peach nom +peachier peachy adj +peachiest peachy adj +peaching peach ver +peachy peachy adj +peacing peace ver +peacoat peacoat nom +peacoats peacoat nom +peacock peacock nom +peacocked peacock ver +peacocking peacock ver +peacocks peacock nom +peafowl peafowl nom +peafowls peafowl nom +peag peag nom +peags peag nom +peahen peahen nom +peahens peahen nom +peak peak nom +peaked peak ver +peakier peaky adj +peakiest peaky adj +peaking peak ver +peaks peak nom +peaky peaky adj +peal peal nom +pealed peal ver +pealing peal ver +peals peal nom +pean pean nom +peans pean nom +peanut peanut nom +peanuts peanut nom +pear pear nom +pearl pearl nom +pearled pearl ver +pearler pearler nom +pearlers pearler nom +pearlfish pearlfish nom +pearlier pearly adj +pearlies pearly nom +pearliest pearly adj +pearling pearl ver +pearlite pearlite nom +pearlites pearlite nom +pearls pearl nom +pearly pearly adj +pears pear nom +peas pea nom +peasant peasant nom +peasantries peasantry nom +peasantry peasantry nom +peasants peasant nom +peasecod peasecod nom +peasecods peasecod nom +peashooter peashooter nom +peashooters peashooter nom +peat peat nom +peatier peaty adj +peatiest peaty adj +peats peat nom +peaty peaty adj +peavey peavey nom +peaveys peavey nom +peavies peavy nom +peavy peavy nom +peba peba nom +pebas peba nom +pebble pebble nom +pebbled pebble ver +pebbles pebble nom +pebblier pebbly adj +pebbliest pebbly adj +pebbling pebble ver +pebbly pebbly adj +pecan pecan nom +pecans pecan nom +peccadillo peccadillo nom +peccadilloes peccadillo nom +peccaries peccary nom +peccary peccary nom +peck peck nom +pecked peck ver +pecker pecker nom +peckers pecker nom +pecking peck ver +pecks peck nom +pectin pectin nom +pectins pectin nom +pectoral pectoral nom +pectorals pectoral nom +peculate peculate ver +peculated peculate ver +peculates peculate ver +peculating peculate ver +peculation peculation nom +peculations peculation nom +peculator peculator nom +peculators peculator nom +peculiar peculiar nom +peculiarities peculiarity nom +peculiarity peculiarity nom +peculiars peculiar nom +pedagog pedagog nom +pedagogies pedagogy nom +pedagogs pedagog nom +pedagogue pedagogue nom +pedagogues pedagogue nom +pedagogy pedagogy nom +pedal pedal nom +pedaled pedal ver +pedaler pedaler nom +pedalers pedaler nom +pedaling pedal ver +pedaller pedaller nom +pedallers pedaller nom +pedals pedal nom +pedant pedant nom +pedantries pedantry nom +pedantry pedantry nom +pedants pedant nom +peddle peddle ver +peddled peddle ver +peddler peddler nom +peddlers peddler nom +peddles peddle ver +peddling peddle ver +pederast pederast nom +pederasties pederasty nom +pederasts pederast nom +pederasty pederasty nom +pedestal pedestal nom +pedestaled pedestal ver +pedestaling pedestal ver +pedestals pedestal nom +pedestrian pedestrian nom +pedestrianize pedestrianize ver +pedestrianized pedestrianize ver +pedestrianizes pedestrianize ver +pedestrianizing pedestrianize ver +pedestrians pedestrian nom +pediatrician pediatrician nom +pediatricians pediatrician nom +pediatrist pediatrist nom +pediatrists pediatrist nom +pedicab pedicab nom +pedicabs pedicab nom +pedicel pedicel nom +pedicels pedicel nom +pediculoses pediculosis nom +pediculosis pediculosis nom +pedicure pedicure nom +pedicured pedicure ver +pedicures pedicure nom +pedicuring pedicure ver +pedicurist pedicurist nom +pedicurists pedicurist nom +pedigree pedigree nom +pedigrees pedigree nom +pediment pediment nom +pediments pediment nom +pedlar pedlar nom +pedlars pedlar nom +pedodontist pedodontist nom +pedodontists pedodontist nom +pedometer pedometer nom +pedometers pedometer nom +peduncle peduncle nom +peduncles peduncle nom +pee pee nom +peed pee ver +peeing pee ver +peek peek nom +peekaboo peekaboo nom +peekaboos peekaboo nom +peeked peek ver +peeking peek ver +peeks peek nom +peel peel nom +peeled peel ver +peeler peeler nom +peelers peeler nom +peeling peel ver +peels peel nom +peen peen nom +peened peen ver +peening peen ver +peens peen nom +peep peep nom +peeped peep ver +peeper peeper nom +peepers peeper nom +peephole peephole nom +peepholes peephole nom +peeping peep ver +peeps peep nom +peepshow peepshow nom +peepshows peepshow nom +peepul peepul nom +peepuls peepul nom +peer peer nom +peerage peerage nom +peerages peerage nom +peered peer ver +peeress peeress nom +peeresses peeress nom +peering peer ver +peers peer nom +pees pee nom +peeve peeve nom +peeved peeve ver +peeves peeve nom +peeving peeve ver +peevishness peevishness nom +peevishnesses peevishness nom +peewee peewee nom +peewees peewee nom +peewit peewit nom +peewits peewit nom +peg peg nom +pegboard pegboard nom +pegboards pegboard nom +pegged peg ver +pegging peg ver +pegmatite pegmatite nom +pegmatites pegmatite nom +pegs peg nom +peignoir peignoir nom +peignoirs peignoir nom +pejoration pejoration nom +pejorations pejoration nom +pejorative pejorative nom +pejoratives pejorative nom +pekan pekan nom +pekans pekan nom +peke peke nom +pekes peke nom +pekinese pekinese nom +pekingese pekingese nom +pekoe pekoe nom +pekoes pekoe nom +pel pel nom +pelecypod pelecypod nom +pelecypods pelecypod nom +peles pel nom +pelf pelf nom +pelfs pelf nom +pelican pelican nom +pelicans pelican nom +pelisse pelisse nom +pelisses pelisse nom +pellagra pellagra nom +pellagras pellagra nom +pellet pellet nom +pelleted pellet ver +pelleting pellet ver +pellets pellet nom +pellicle pellicle nom +pellicles pellicle nom +pellitories pellitory nom +pellitory pellitory nom +pellmell pellmell nom +pellmells pellmell nom +pellucidities pellucidity nom +pellucidity pellucidity nom +pellucidness pellucidness nom +pellucidnesses pellucidness nom +pelmet pelmet nom +pelmets pelmet nom +pelota pelota nom +pelotas pelota nom +pelt pelt nom +pelted pelt ver +pelting pelt ver +peltings pelting nom +pelts pelt nom +pelvis pelvis nom +pelvises pelvis nom +pelycosaur pelycosaur nom +pelycosaurs pelycosaur nom +pemmican pemmican nom +pemmicans pemmican nom +pemphigus pemphigus nom +pemphiguses pemphigus nom +pen pen nom +penalization penalization nom +penalizations penalization nom +penalize penalize ver +penalized penalize ver +penalizes penalize ver +penalizing penalize ver +penalties penalty nom +penalty penalty nom +penance penance nom +penances penance nom +pence penny nom +penchant penchant nom +penchants penchant nom +pencil pencil nom +penciled pencil ver +penciling pencil ver +pencils pencil nom +pend pend ver +pendant pendant nom +pendants pendant nom +pended pend ver +pendent pendent nom +pendents pendent nom +pending pend ver +pendragon pendragon nom +pendragons pendragon nom +pends pend ver +pendulum pendulum nom +pendulums pendulum nom +penetrabilities penetrability nom +penetrability penetrability nom +penetrate penetrate ver +penetrated penetrate ver +penetrates penetrate ver +penetrating penetrate ver +penetration penetration nom +penetrations penetration nom +pengo pengo nom +pengos pengo nom +penguin penguin nom +penguins penguin nom +penicillin penicillin nom +penicillins penicillin nom +peninsula peninsula nom +peninsulas peninsula nom +penis penis nom +penises penis nom +penitence penitence nom +penitences penitence nom +penitent penitent nom +penitential penitential nom +penitentials penitential nom +penitentiaries penitentiary nom +penitentiary penitentiary nom +penitents penitent nom +penknife penknife nom +penknives penknife nom +penlight penlight nom +penlights penlight nom +penlite penlite nom +penlites penlite nom +penman penman nom +penmanship penmanship nom +penmanships penmanship nom +penmen penman nom +pennant pennant nom +pennants pennant nom +penned pen ver +penni penni nom +pennies penny nom +pennilessness pennilessness nom +pennilessnesses pennilessness nom +penning pen ver +pennis penni nom +pennon pennon nom +pennoncel pennoncel nom +pennoncelle pennoncelle nom +pennoncelles pennoncelle nom +pennoncels pennoncel nom +pennons pennon nom +penny penny nom +pennycress pennycress nom +pennycresses pennycress nom +pennyroyal pennyroyal nom +pennyroyals pennyroyal nom +pennyweight pennyweight nom +pennyweights pennyweight nom +pennywhistle pennywhistle nom +pennywhistles pennywhistle nom +pennyworth pennyworth nom +pennyworths pennyworth nom +penologies penology nom +penologist penologist nom +penologists penologist nom +penology penology nom +penoncel penoncel nom +penoncels penoncel nom +penpusher penpusher nom +penpushers penpusher nom +pens pen nom +pension pension nom +pensionaries pensionary nom +pensionary pensionary nom +pensioned pension ver +pensioner pensioner nom +pensioners pensioner nom +pensioning pension ver +pensions pension nom +pensiveness pensiveness nom +pensivenesses pensiveness nom +penstock penstock nom +penstocks penstock nom +pentacle pentacle nom +pentacles pentacle nom +pentad pentad nom +pentads pentad nom +pentagon pentagon nom +pentagons pentagon nom +pentagram pentagram nom +pentagrams pentagram nom +pentahedron pentahedron nom +pentahedrons pentahedron nom +pentameter pentameter nom +pentameters pentameter nom +pentathlete pentathlete nom +pentathletes pentathlete nom +pentathlon pentathlon nom +pentathlons pentathlon nom +penthouse penthouse nom +penthouses penthouse nom +pentlandite pentlandite nom +pentlandites pentlandite nom +pentobarbital pentobarbital nom +pentobarbitals pentobarbital nom +pentode pentode nom +pentodes pentode nom +pentose pentose nom +pentoses pentose nom +pentoxide pentoxide nom +pentoxides pentoxide nom +pentylenetetrazol pentylenetetrazol nom +pentylenetetrazols pentylenetetrazol nom +penuche penuche nom +penuches penuche nom +penult penult nom +penultima penultima nom +penultimas penultima nom +penultimate penultimate nom +penultimates penultimate nom +penults penult nom +penumbra penumbra nom +penumbrae penumbra nom +penumbras penumbra nom +penuries penury nom +penuriousness penuriousness nom +penuriousnesses penuriousness nom +penury penury nom +peon peon nom +peonage peonage nom +peonages peonage nom +peonies peony nom +peons peon nom +peony peony nom +people person nom +peopled people ver +peoples people nom +peopling people ver +pep pep nom +peperomia peperomia nom +peperomias peperomia nom +pepped pep ver +pepper pepper nom +peppercorn peppercorn nom +peppercorns peppercorn nom +peppered pepper ver +pepperidge pepperidge nom +pepperidges pepperidge nom +pepperier peppery adj +pepperiest peppery adj +pepperiness pepperiness nom +pepperinesses pepperiness nom +peppering pepper ver +peppermint peppermint nom +peppermints peppermint nom +pepperoni pepperoni nom +pepperonis pepperoni nom +peppers pepper nom +peppershaker peppershaker nom +peppershakers peppershaker nom +pepperwort pepperwort nom +pepperworts pepperwort nom +peppery peppery adj +peppier peppy adj +peppiest peppy adj +peppiness peppiness nom +peppinesses peppiness nom +pepping pep ver +peppy peppy adj +peps pep nom +pepsin pepsin nom +pepsins pepsin nom +peptic peptic nom +peptics peptic nom +peptidase peptidase nom +peptidases peptidase nom +peptide peptide nom +peptides peptide nom +peptization peptization nom +peptizations peptization nom +peptize peptize ver +peptized peptize ver +peptizes peptize ver +peptizing peptize ver +peptone peptone nom +peptones peptone nom +per per sw +peradventure peradventure nom +peradventures peradventure nom +perambulate perambulate ver +perambulated perambulate ver +perambulates perambulate ver +perambulating perambulate ver +perambulation perambulation nom +perambulations perambulation nom +perambulator perambulator nom +perambulators perambulator nom +percale percale nom +percales percale nom +perceive perceive ver +perceived perceive ver +perceiver perceiver nom +perceivers perceiver nom +perceives perceive ver +perceiving perceive ver +perceivings perceiving nom +percent percent nom +percentage percentage nom +percentages percentage nom +percentile percentile nom +percentiles percentile nom +percents percent nom +percept percept nom +perceptibilities perceptibility nom +perceptibility perceptibility nom +perception perception nom +perceptions perception nom +perceptiveness perceptiveness nom +perceptivenesses perceptiveness nom +perceptivities perceptivity nom +perceptivity perceptivity nom +percepts percept nom +perch perch nom +perched perch ver +perches perch ver +perching perch ver +perchlorate perchlorate nom +perchlorates perchlorate nom +percipience percipience nom +percipiences percipience nom +percipient percipient nom +percipients percipient nom +percoid percoid nom +percoids percoid nom +percolate percolate nom +percolated percolate ver +percolates percolate nom +percolating percolate ver +percolation percolation nom +percolations percolation nom +percolator percolator nom +percolators percolator nom +percussion percussion nom +percussionist percussionist nom +percussionists percussionist nom +percussions percussion nom +perdition perdition nom +perditions perdition nom +perdurabilities perdurability nom +perdurability perdurability nom +peregrinate peregrinate ver +peregrinated peregrinate ver +peregrinates peregrinate ver +peregrinating peregrinate ver +peregrination peregrination nom +peregrinations peregrination nom +peregrine peregrine nom +peregrines peregrine nom +perennate perennate ver +perennated perennate ver +perennates perennate ver +perennating perennate ver +perennial perennial nom +perennials perennial nom +perestroika perestroika nom +perestroikas perestroika nom +perfect perfect adj +perfecta perfecta nom +perfectas perfecta nom +perfected perfect ver +perfecter perfect adj +perfectest perfect adj +perfectibilities perfectibility nom +perfectibility perfectibility nom +perfecting perfect ver +perfection perfection nom +perfectionism perfectionism nom +perfectionisms perfectionism nom +perfectionist perfectionist nom +perfectionists perfectionist nom +perfections perfection nom +perfective perfective nom +perfectives perfective nom +perfectness perfectness nom +perfectnesses perfectness nom +perfects perfect nom +perfidies perfidy nom +perfidiousness perfidiousness nom +perfidiousnesses perfidiousness nom +perfidy perfidy nom +perforate perforate ver +perforated perforate ver +perforates perforate ver +perforating perforate ver +perforation perforation nom +perforations perforation nom +perform perform ver +performance performance nom +performances performance nom +performed perform ver +performer performer nom +performers performer nom +performing perform ver +performings performing nom +performs perform ver +perfume perfume nom +perfumed perfume ver +perfumer perfumer nom +perfumeries perfumery nom +perfumers perfumer nom +perfumery perfumery nom +perfumes perfume nom +perfuming perfume ver +perfuse perfuse ver +perfused perfuse ver +perfuses perfuse ver +perfusing perfuse ver +perfusion perfusion nom +perfusions perfusion nom +pergola pergola nom +pergolas pergola nom +perhaps perhaps sw +peri peri nom +perianth perianth nom +perianths perianth nom +pericardia pericardium nom +pericarditides pericarditis nom +pericarditis pericarditis nom +pericardium pericardium nom +pericarp pericarp nom +periclase periclase nom +periclases periclase nom +peridinian peridinian nom +peridinians peridinian nom +peridium peridium nom +peridiums peridium nom +peridot peridot nom +peridots peridot nom +perigee perigee nom +perigees perigee nom +perigon perigon nom +perigons perigon nom +perihelia perihelion nom +perihelion perihelion nom +peril peril nom +periled peril ver +periling peril ver +perilousness perilousness nom +perilousnesses perilousness nom +perils peril nom +perilune perilune nom +perilunes perilune nom +perimeter perimeter nom +perimeters perimeter nom +perinea perineum nom +perineum perineum nom +period period nom +periodical periodical nom +periodicals periodical nom +periodicities periodicity nom +periodicity periodicity nom +periodontia periodontia nom +periodontias periodontia nom +periodontist periodontist nom +periodontists periodontist nom +periodontitis periodontitis nom +periodontitises periodontitis nom +periods period nom +periostea periosteum nom +periosteum periosteum nom +peripatetic peripatetic nom +peripatetics peripatetic nom +peripatus peripatus nom +peripatuses peripatus nom +peripheral peripheral nom +peripherals peripheral nom +peripheries periphery nom +periphery periphery nom +periphrases periphrasis nom +periphrasis periphrasis nom +peris peri nom +periscope periscope nom +periscopes periscope nom +perish perish ver +perishable perishable nom +perishables perishable nom +perished perish ver +perisher perisher nom +perishers perisher nom +perishes perish ver +perishing perish ver +perissodactyl perissodactyl nom +perissodactyls perissodactyl nom +peristalses peristalsis nom +peristalsis peristalsis nom +peristome peristome nom +peristomes peristome nom +peristyle peristyle nom +peristyles peristyle nom +perithecia perithecium nom +perithecium perithecium nom +peritoneum peritoneum nom +peritoneums peritoneum nom +peritonitis peritonitis nom +peritonitises peritonitis nom +periwig periwig nom +periwigs periwig nom +periwinkle periwinkle nom +periwinkles periwinkle nom +perjure perjure ver +perjured perjure ver +perjurer perjurer nom +perjurers perjurer nom +perjures perjure ver +perjuries perjury nom +perjuring perjure ver +perjury perjury nom +perk perk nom +perked perk ver +perkier perky adj +perkiest perky adj +perkiness perkiness nom +perkinesses perkiness nom +perking perk ver +perks perk nom +perky perky adj +perm perm nom +permafrost permafrost nom +permafrosts permafrost nom +permanence permanence nom +permanences permanence nom +permanencies permanency nom +permanency permanency nom +permanent permanent nom +permanents permanent nom +permanganate permanganate nom +permanganates permanganate nom +permeabilities permeability nom +permeability permeability nom +permeate permeate ver +permeated permeate ver +permeates permeate ver +permeating permeate ver +permeation permeation nom +permeations permeation nom +permed perm ver +perming perm ver +permissibilities permissibility nom +permissibility permissibility nom +permission permission nom +permissions permission nom +permissiveness permissiveness nom +permissivenesses permissiveness nom +permit permit nom +permits permit nom +permitted permit ver +permitting permit ver +perms perm nom +permutabilities permutability nom +permutability permutability nom +permutation permutation nom +permutations permutation nom +permute permute ver +permuted permute ver +permutes permute ver +permuting permute ver +perniciousness perniciousness nom +perniciousnesses perniciousness nom +perorate perorate ver +perorated perorate ver +perorates perorate ver +perorating perorate ver +peroration peroration nom +perorations peroration nom +peroxide peroxide nom +peroxided peroxide ver +peroxides peroxide nom +peroxiding peroxide ver +perpendicular perpendicular nom +perpendicularities perpendicularity nom +perpendicularity perpendicularity nom +perpendiculars perpendicular nom +perpetrate perpetrate ver +perpetrated perpetrate ver +perpetrates perpetrate ver +perpetrating perpetrate ver +perpetration perpetration nom +perpetrations perpetration nom +perpetrator perpetrator nom +perpetrators perpetrator nom +perpetual perpetual nom +perpetuals perpetual nom +perpetuate perpetuate ver +perpetuated perpetuate ver +perpetuates perpetuate ver +perpetuating perpetuate ver +perpetuation perpetuation nom +perpetuations perpetuation nom +perpetuities perpetuity nom +perpetuity perpetuity nom +perplex perplex ver +perplexed perplex ver +perplexes perplex ver +perplexing perplex ver +perplexities perplexity nom +perplexity perplexity nom +perquisite perquisite nom +perquisites perquisite nom +perries perry nom +perry perry nom +persecute persecute ver +persecuted persecute ver +persecutes persecute ver +persecuting persecute ver +persecution persecution nom +persecutions persecution nom +persecutor persecutor nom +persecutors persecutor nom +perseverance perseverance nom +perseverances perseverance nom +perseveration perseveration nom +perseverations perseveration nom +persevere persevere ver +persevered persevere ver +perseveres persevere ver +persevering persevere ver +persiflage persiflage nom +persiflages persiflage nom +persimmon persimmon nom +persimmons persimmon nom +persist persist ver +persisted persist ver +persistence persistence nom +persistences persistence nom +persistencies persistency nom +persistency persistency nom +persisting persist ver +persists persist ver +person person nom +persona persona nom +personableness personableness nom +personablenesses personableness nom +personae persona nom +personage personage nom +personages personage nom +personal personal nom +personalities personality nom +personality personality nom +personalize personalize ver +personalized personalize ver +personalizes personalize ver +personalizing personalize ver +personals personal nom +personalties personalty nom +personalty personalty nom +personate personate ver +personated personate ver +personates personate ver +personating personate ver +personation personation nom +personations personation nom +personhood personhood nom +personhoods personhood nom +personification personification nom +personifications personification nom +personified personify ver +personifies personify ver +personify personify ver +personifying personify ver +personnel personnel nom +personnels personnel nom +perspective perspective nom +perspectives perspective nom +perspicaciousness perspicaciousness nom +perspicaciousnesses perspicaciousness nom +perspicacities perspicacity nom +perspicacity perspicacity nom +perspicuities perspicuity nom +perspicuity perspicuity nom +perspicuousness perspicuousness nom +perspicuousnesses perspicuousness nom +perspiration perspiration nom +perspirations perspiration nom +perspire perspire ver +perspired perspire ver +perspires perspire ver +perspiring perspire ver +persuade persuade ver +persuaded persuade ver +persuader persuader nom +persuaders persuader nom +persuades persuade ver +persuading persuade ver +persuasion persuasion nom +persuasions persuasion nom +persuasive persuasive nom +persuasiveness persuasiveness nom +persuasivenesses persuasiveness nom +persuasives persuasive nom +pert pert adj +pertain pertain ver +pertained pertain ver +pertaining pertain ver +pertains pertain ver +perter pert adj +pertest pert adj +pertinacities pertinacity nom +pertinacity pertinacity nom +pertinence pertinence nom +pertinences pertinence nom +pertinencies pertinency nom +pertinency pertinency nom +pertness pertness nom +pertnesses pertness nom +perturb perturb ver +perturbation perturbation nom +perturbations perturbation nom +perturbed perturb ver +perturbing perturb ver +perturbs perturb ver +pertussis pertussis nom +pertussises pertussis nom +peruke peruke nom +perukes peruke nom +perusal perusal nom +perusals perusal nom +peruse peruse ver +perused peruse ver +peruses peruse ver +perusing peruse ver +pervade pervade ver +pervaded pervade ver +pervades pervade ver +pervading pervade ver +pervasion pervasion nom +pervasions pervasion nom +pervasiveness pervasiveness nom +pervasivenesses pervasiveness nom +perverse perverse adj +perverseness perverseness nom +perversenesses perverseness nom +perverser perverse adj +perversest perverse adj +perversion perversion nom +perversions perversion nom +perversities perversity nom +perversity perversity nom +pervert pervert nom +perverted pervert ver +perverting pervert ver +perverts pervert nom +perviousness perviousness nom +perviousnesses perviousness nom +pes pe nom +peseta peseta nom +pesetas peseta nom +pesewa pesewa nom +pesewas pesewa nom +peskier pesky adj +peskiest pesky adj +peskiness peskiness nom +peskinesses peskiness nom +pesky pesky adj +peso peso nom +pesos peso nom +pessaries pessary nom +pessary pessary nom +pessimism pessimism nom +pessimisms pessimism nom +pessimist pessimist nom +pessimists pessimist nom +pest pest nom +pester pester ver +pestered pester ver +pesterer pesterer nom +pesterers pesterer nom +pestering pester ver +pesters pester ver +pesthole pesthole nom +pestholes pesthole nom +pesthouse pesthouse nom +pesthouses pesthouse nom +pesticide pesticide nom +pesticides pesticide nom +pestilence pestilence nom +pestilences pestilence nom +pestle pestle nom +pestled pestle ver +pestles pestle nom +pestling pestle ver +pesto pesto nom +pestos pesto nom +pests pest nom +pet pet nom +petal petal nom +petals petal nom +petard petard nom +petards petard nom +petcharies petchary nom +petchary petchary nom +petcock petcock nom +petcocks petcock nom +peter peter nom +petered peter ver +petering peter ver +peters peter nom +petiole petiole nom +petioles petiole nom +petite petite nom +petiteness petiteness nom +petitenesses petiteness nom +petites petite nom +petition petition nom +petitioned petition ver +petitioner petitioner nom +petitioners petitioner nom +petitioning petition ver +petitions petition nom +petrel petrel nom +petrels petrel nom +petrifaction petrifaction nom +petrifactions petrifaction nom +petrification petrification nom +petrifications petrification nom +petrified petrify ver +petrifies petrify ver +petrify petrify ver +petrifying petrify ver +petrochemical petrochemical nom +petrochemicals petrochemical nom +petrodollar petrodollar nom +petrodollars petrodollar nom +petrol petrol nom +petrolatum petrolatum nom +petrolatums petrolatum nom +petroleum petroleum nom +petroleums petroleum nom +petrolled petrol ver +petrolling petrol ver +petrologies petrology nom +petrologist petrologist nom +petrologists petrologist nom +petrology petrology nom +petrols petrol nom +pets pet nom +petted pet ver +petticoat petticoat nom +petticoats petticoat nom +pettier petty adj +pettiest petty adj +pettifog pettifog ver +pettifogged pettifog ver +pettifogger pettifogger nom +pettifoggers pettifogger nom +pettifogging pettifog ver +pettifogs pettifog ver +pettiness pettiness nom +pettinesses pettiness nom +petting pet ver +pettings petting nom +pettishness pettishness nom +pettishnesses pettishness nom +petty petty adj +petulance petulance nom +petulances petulance nom +petunia petunia nom +petunias petunia nom +pew pew nom +pewee pewee nom +pewees pewee nom +pewit pewit nom +pewits pewit nom +pews pew nom +pewter pewter nom +pewters pewter nom +peyote peyote nom +peyotes peyote nom +pfennig pfennig nom +pfennigs pfennig nom +phacelia phacelia nom +phacelias phacelia nom +phaeton phaeton nom +phaetons phaeton nom +phage phage nom +phages phage nom +phagocyte phagocyte nom +phagocytes phagocyte nom +phalanger phalanger nom +phalangers phalanger nom +phalanges phalanx nom +phalanx phalanx nom +phalanxes phalanx nom +phalarope phalarope nom +phalaropes phalarope nom +phalli phallus nom +phallus phallus nom +phanerogam phanerogam nom +phanerogams phanerogam nom +phantasied phantasy ver +phantasies phantasy nom +phantasm phantasm nom +phantasmagoria phantasmagoria nom +phantasmagorias phantasmagoria nom +phantasms phantasm nom +phantasy phantasy nom +phantasying phantasy ver +phantom phantom nom +phantoms phantom nom +pharaoh pharaoh nom +pharaohs pharaoh nom +pharisee pharisee nom +pharisees pharisee nom +pharmaceutic pharmaceutic nom +pharmaceutical pharmaceutical nom +pharmaceuticals pharmaceutical nom +pharmaceutics pharmaceutic nom +pharmacies pharmacy nom +pharmacist pharmacist nom +pharmacists pharmacist nom +pharmacologies pharmacology nom +pharmacologist pharmacologist nom +pharmacologists pharmacologist nom +pharmacology pharmacology nom +pharmacopeia pharmacopeia nom +pharmacopeias pharmacopeia nom +pharmacopoeia pharmacopoeia nom +pharmacopoeias pharmacopoeia nom +pharmacy pharmacy nom +pharos pharos nom +pharoses pharos nom +pharyngeal pharyngeal nom +pharyngeals pharyngeal nom +pharynges pharynx nom +pharyngitides pharyngitis nom +pharyngitis pharyngitis nom +pharynx pharynx nom +phase phase nom +phased phase ver +phaseout phaseout nom +phaseouts phaseout nom +phases phase nom +phasing phase ver +phasmid phasmid nom +phasmids phasmid nom +pheasant pheasant nom +pheasants pheasant nom +phellem phellem nom +phellems phellem nom +phenacetin phenacetin nom +phenacetins phenacetin nom +phenobarbital phenobarbital nom +phenobarbitals phenobarbital nom +phenobarbitone phenobarbitone nom +phenobarbitones phenobarbitone nom +phenol phenol nom +phenolic phenolic nom +phenolics phenolic nom +phenols phenol nom +phenomena phenomenon nom +phenomenon phenomenon nom +phenomenons phenomenon nom +phenothiazine phenothiazine nom +phenothiazines phenothiazine nom +phenotype phenotype nom +phenotypes phenotype nom +phenylalanine phenylalanine nom +phenylalanines phenylalanine nom +phenylbutazone phenylbutazone nom +phenylbutazones phenylbutazone nom +pheromone pheromone nom +pheromones pheromone nom +phi phi nom +phial phial nom +phials phial nom +philadelphus philadelphus nom +philadelphuses philadelphus nom +philander philander ver +philandered philander ver +philanderer philanderer nom +philanderers philanderer nom +philandering philander ver +philanders philander ver +philanthropies philanthropy nom +philanthropist philanthropist nom +philanthropists philanthropist nom +philanthropy philanthropy nom +philatelies philately nom +philatelist philatelist nom +philatelists philatelist nom +philately philately nom +philharmonic philharmonic nom +philharmonics philharmonic nom +philhellene philhellene nom +philhellenes philhellene nom +philippic philippic nom +philippics philippic nom +philistine philistine nom +philistines philistine nom +philistinism philistinism nom +philistinisms philistinism nom +philodendron philodendron nom +philodendrons philodendron nom +philologies philology nom +philologist philologist nom +philologists philologist nom +philologue philologue nom +philologues philologue nom +philology philology nom +philosopher philosopher nom +philosophers philosopher nom +philosophies philosophy nom +philosophise philosophise ver +philosophised philosophise ver +philosophises philosophise ver +philosophising philosophise ver +philosophize philosophize ver +philosophized philosophize ver +philosophizer philosophizer nom +philosophizers philosophizer nom +philosophizes philosophize ver +philosophizing philosophize ver +philosophy philosophy nom +philter philter nom +philtered philter ver +philtering philter ver +philters philter nom +philtre philtre nom +philtred philtre ver +philtres philtre nom +philtring philtre ver +phis phi nom +phlebitides phlebitis nom +phlebitis phlebitis nom +phlebogram phlebogram nom +phlebograms phlebogram nom +phlebotomies phlebotomy nom +phlebotomize phlebotomize ver +phlebotomized phlebotomize ver +phlebotomizes phlebotomize ver +phlebotomizing phlebotomize ver +phlebotomy phlebotomy nom +phlegm phlegm nom +phlegmier phlegmy adj +phlegmiest phlegmy adj +phlegms phlegm nom +phlegmy phlegmy adj +phloem phloem nom +phloems phloem nom +phlogopite phlogopite nom +phlogopites phlogopite nom +phlox phlox nom +phobia phobia nom +phobias phobia nom +phobic phobic nom +phobics phobic nom +phocomelia phocomelia nom +phocomelias phocomelia nom +phoebe phoebe nom +phoebes phoebe nom +phoenix phoenix nom +phoenixes phoenix nom +phon phon nom +phone phone nom +phoned phone ver +phoneme phoneme nom +phonemes phoneme nom +phoner phoner nom +phoners phoner nom +phones phone nom +phonetic phonetic nom +phonetician phonetician nom +phoneticians phonetician nom +phonetics phonetic nom +phoney phoney adj +phoneyed phoney ver +phoneying phoney ver +phoneys phoney nom +phonied phony ver +phonier phoney adj +phonies phony nom +phoniest phoney adj +phoniness phoniness nom +phoninesses phoniness nom +phoning phone ver +phonogram phonogram nom +phonograms phonogram nom +phonograph phonograph nom +phonographs phonograph nom +phonologies phonology nom +phonologist phonologist nom +phonologists phonologist nom +phonology phonology nom +phons phon nom +phony phony adj +phonying phony ver +phoronid phoronid nom +phoronids phoronid nom +phosgene phosgene nom +phosgenes phosgene nom +phosphate phosphate nom +phosphates phosphate nom +phosphine phosphine nom +phosphines phosphine nom +phospholipid phospholipid nom +phospholipids phospholipid nom +phosphoprotein phosphoprotein nom +phosphoproteins phosphoprotein nom +phosphor phosphor nom +phosphorescence phosphorescence nom +phosphorescences phosphorescence nom +phosphors phosphor nom +phosphorus phosphorus nom +phosphoruses phosphorus nom +phot phot nom +photo photo nom +photocathode photocathode nom +photocathodes photocathode nom +photocell photocell nom +photocells photocell nom +photochemistries photochemistry nom +photochemistry photochemistry nom +photoconductivities photoconductivity nom +photoconductivity photoconductivity nom +photocopied photocopy ver +photocopier photocopier nom +photocopiers photocopier nom +photocopies photocopy nom +photocopy photocopy nom +photocopying photocopy ver +photoed photo ver +photoelectron photoelectron nom +photoelectrons photoelectron nom +photoemission photoemission nom +photoemissions photoemission nom +photoengrave photoengrave ver +photoengraved photoengrave ver +photoengraver photoengraver nom +photoengravers photoengraver nom +photoengraves photoengrave ver +photoengraving photoengrave ver +photoengravings photoengraving nom +photofinishing photofinishing nom +photofinishings photofinishing nom +photoflash photoflash nom +photoflashes photoflash nom +photoflood photoflood nom +photofloods photoflood nom +photograph photograph nom +photographed photograph ver +photographer photographer nom +photographers photographer nom +photographies photography nom +photographing photograph ver +photographs photograph nom +photography photography nom +photogravure photogravure nom +photogravures photogravure nom +photoing photo ver +photojournalism photojournalism nom +photojournalisms photojournalism nom +photojournalist photojournalist nom +photojournalists photojournalist nom +photolithograph photolithograph nom +photolithographies photolithography nom +photolithographs photolithograph nom +photolithography photolithography nom +photometer photometer nom +photometers photometer nom +photomicrograph photomicrograph nom +photomicrographs photomicrograph nom +photomontage photomontage nom +photomontages photomontage nom +photon photon nom +photons photon nom +photos photo nom +photosensitivities photosensitivity nom +photosensitivity photosensitivity nom +photosensitize photosensitize ver +photosensitized photosensitize ver +photosensitizes photosensitize ver +photosensitizing photosensitize ver +photostat photostat nom +photostats photostat nom +photostatted photostat ver +photostatting photostat ver +photosyntheses photosynthesis nom +photosynthesis photosynthesis nom +photosynthesize photosynthesize ver +photosynthesized photosynthesize ver +photosynthesizes photosynthesize ver +photosynthesizing photosynthesize ver +phototropism phototropism nom +phototropisms phototropism nom +phots phot nom +phrase phrase nom +phrased phrase ver +phraseologies phraseology nom +phraseology phraseology nom +phrases phrase nom +phrasing phrase ver +phrasings phrasing nom +phratries phratry nom +phratry phratry nom +phrenetic phrenetic nom +phrenetics phrenetic nom +phrenologies phrenology nom +phrenologist phrenologist nom +phrenologists phrenologist nom +phrenology phrenology nom +phthises phthisis nom +phthisis phthisis nom +phycocyanin phycocyanin nom +phycocyanins phycocyanin nom +phycoerythrin phycoerythrin nom +phycoerythrins phycoerythrin nom +phyla phylum nom +phylacteries phylactery nom +phylactery phylactery nom +phyle phyle nom +phyles phyle nom +phyllo phyllo nom +phylloclad phylloclad nom +phylloclade phylloclade nom +phylloclades phylloclade nom +phylloclads phylloclad nom +phyllode phyllode nom +phyllodes phyllode nom +phylloquinone phylloquinone nom +phylloquinones phylloquinone nom +phyllos phyllo nom +phylogeneses phylogenesis nom +phylogenesis phylogenesis nom +phylogenies phylogeny nom +phylogeny phylogeny nom +phylum phylum nom +physic physic nom +physical physical nom +physicalism physicalism nom +physicalisms physicalism nom +physicalities physicality nom +physicality physicality nom +physicalness physicalness nom +physicalnesses physicalness nom +physicals physical nom +physician physician nom +physicians physician nom +physicist physicist nom +physicists physicist nom +physicked physic ver +physicking physic ver +physics physic nom +physiognomies physiognomy nom +physiognomy physiognomy nom +physiographies physiography nom +physiography physiography nom +physiologies physiology nom +physiologist physiologist nom +physiologists physiologist nom +physiology physiology nom +physiotherapies physiotherapy nom +physiotherapist physiotherapist nom +physiotherapists physiotherapist nom +physiotherapy physiotherapy nom +physique physique nom +physiques physique nom +physostigmine physostigmine nom +physostigmines physostigmine nom +phytohormone phytohormone nom +phytohormones phytohormone nom +phytologies phytology nom +phytologist phytologist nom +phytologists phytologist nom +phytology phytology nom +phytoplankton phytoplankton nom +phytoplanktons phytoplankton nom +pi pi nom +pia pia nom +piaffe piaffe nom +piaffes piaffe nom +pianism pianism nom +pianisms pianism nom +pianissimo pianissimo nom +pianissimos pianissimo nom +pianist pianist nom +pianists pianist nom +piano piano nom +pianoforte pianoforte nom +pianofortes pianoforte nom +pianos piano nom +pias pia nom +piaster piaster nom +piasters piaster nom +piastre piastre nom +piastres piastre nom +piazza piazza nom +piazzas piazza nom +pibroch pibroch nom +pibrochs pibroch nom +pica pica nom +picador picador nom +picadors picador nom +picaninnies picaninny nom +picaninny picaninny nom +picas pica nom +picayune picayune nom +picayunes picayune nom +piccalilli piccalilli nom +piccalillis piccalilli nom +piccaninnies piccaninny nom +piccaninny piccaninny nom +piccolo piccolo nom +piccolos piccolo nom +pichiciago pichiciago nom +pichiciagos pichiciago nom +pichiciego pichiciego nom +pichiciegos pichiciego nom +pick pick nom +pickaback pickaback nom +pickabacks pickaback nom +pickaninnies pickaninny nom +pickaninny pickaninny nom +pickax pickax nom +pickaxe pickaxe nom +pickaxed pickax ver +pickaxes pickax nom +pickaxing pickax ver +picked pick ver +pickelhaube pickelhaube nom +pickelhaubes pickelhaube nom +picker picker nom +pickerel pickerel nom +pickerelweed pickerelweed nom +pickerelweeds pickerelweed nom +pickers picker nom +picket picket nom +picketed picket ver +picketing picket ver +pickets picket nom +pickier picky adj +pickiest picky adj +picking pick ver +pickings picking nom +pickle pickle nom +pickled pickle ver +pickles pickle nom +pickling pickle ver +pickpocket pickpocket nom +pickpockets pickpocket nom +picks pick nom +pickup pickup nom +pickups pickup nom +picky picky adj +picnic picnic nom +picnicked picnic ver +picnicker picnicker nom +picnickers picnicker nom +picnicking picnic ver +picnics picnic nom +picofarad picofarad nom +picofarads picofarad nom +picornavirus picornavirus nom +picornaviruses picornavirus nom +picosecond picosecond nom +picoseconds picosecond nom +picot picot nom +picots picot nom +pictograph pictograph nom +pictographs pictograph nom +pictorial pictorial nom +pictorials pictorial nom +picture picture nom +pictured picture ver +pictures picture nom +picturesqueness picturesqueness nom +picturesquenesses picturesqueness nom +picturing picture ver +picul picul nom +piculet piculet nom +piculets piculet nom +piculs picul nom +piddle piddle nom +piddled piddle ver +piddles piddle nom +piddling piddle ver +piddock piddock nom +piddocks piddock nom +pidgin pidgin nom +pidgins pidgin nom +pie pie nom +piebald piebald nom +piebalds piebald nom +piece piece nom +pieced piece ver +pieces piece nom +piecework piecework nom +pieceworker pieceworker nom +pieceworkers pieceworker nom +pieceworks piecework nom +piecing piece ver +pied pi ver +pieing pie ver +pieplant pieplant nom +pieplants pieplant nom +pier pier nom +pierce pierce ver +pierced pierce ver +pierces pierce ver +piercing pierce ver +piercings piercing nom +pierid pierid nom +pierids pierid nom +piers pier nom +pies pi nom +pieta pieta nom +pietas pieta nom +pieties piety nom +pietism pietism nom +pietisms pietism nom +piety piety nom +piezoelectricities piezoelectricity nom +piezoelectricity piezoelectricity nom +piezometer piezometer nom +piezometers piezometer nom +piffle piffle nom +piffled piffle ver +piffles piffle nom +piffling piffle ver +pig pig nom +pigboat pigboat nom +pigboats pigboat nom +pigeon pigeon nom +pigeonhole pigeonhole nom +pigeonholed pigeonhole ver +pigeonholes pigeonhole nom +pigeonholing pigeonhole ver +pigeons pigeon nom +pigfish pigfish nom +pigged pig ver +piggeries piggery nom +piggery piggery nom +piggier piggy adj +piggies piggy nom +piggiest piggy adj +pigging pig ver +piggishness piggishness nom +piggishnesses piggishness nom +piggy piggy adj +piggyback piggyback nom +piggybacked piggyback ver +piggybacking piggyback ver +piggybacks piggyback nom +pigheadedness pigheadedness nom +pigheadednesses pigheadedness nom +piglet piglet nom +piglets piglet nom +pigment pigment nom +pigmentation pigmentation nom +pigmentations pigmentation nom +pigmented pigment ver +pigmenting pigment ver +pigments pigment nom +pigmies pigmy nom +pigmy pigmy nom +pignolia pignolia nom +pignolias pignolia nom +pignut pignut nom +pignuts pignut nom +pigpen pigpen nom +pigpens pigpen nom +pigs pig nom +pigskin pigskin nom +pigskins pigskin nom +pigsties pigsty nom +pigsty pigsty nom +pigswill pigswill nom +pigswills pigswill nom +pigtail pigtail nom +pigtails pigtail nom +pigwash pigwash nom +pigwashes pigwash nom +pigweed pigweed nom +pigweeds pigweed nom +piing pi ver +pika pika nom +pikas pika nom +pike pike nom +piked pike ver +pikeperch pikeperch nom +piker piker nom +pikers piker nom +pikes pike nom +pikestaff pikestaff nom +pikestaffs pikestaff nom +piking pike ver +pilaf pilaf nom +pilaff pilaff nom +pilaffs pilaff nom +pilafs pilaf nom +pilaster pilaster nom +pilasters pilaster nom +pilau pilau nom +pilaus pilau nom +pilaw pilaw nom +pilaws pilaw nom +pilchard pilchard nom +pilchards pilchard nom +pile pile nom +piled pile ver +pilei pileus nom +piles pile nom +pileup pileup nom +pileups pileup nom +pileus pileus nom +pilewort pilewort nom +pileworts pilewort nom +pilfer pilfer ver +pilferage pilferage nom +pilferages pilferage nom +pilfered pilfer ver +pilferer pilferer nom +pilferers pilferer nom +pilfering pilfer ver +pilfers pilfer ver +pilgrim pilgrim nom +pilgrimage pilgrimage nom +pilgrimaged pilgrimage ver +pilgrimages pilgrimage nom +pilgrimaging pilgrimage ver +pilgrims pilgrim nom +pili pilus nom +piling pile ver +pilings piling nom +pill pill nom +pillage pillage nom +pillaged pillage ver +pillager pillager nom +pillagers pillager nom +pillages pillage nom +pillaging pillage ver +pillar pillar nom +pillared pillar ver +pillaring pillar ver +pillars pillar nom +pillbox pillbox nom +pillboxes pillbox nom +pilled pill ver +pilling pill ver +pillion pillion nom +pillions pillion nom +pilloried pillory ver +pillories pillory nom +pillory pillory nom +pillorying pillory ver +pillow pillow nom +pillowcase pillowcase nom +pillowcases pillowcase nom +pillowed pillow ver +pillowing pillow ver +pillows pillow nom +pillowslip pillowslip nom +pillowslips pillowslip nom +pills pill nom +pillwort pillwort nom +pillworts pillwort nom +pilot pilot nom +pilotage pilotage nom +pilotages pilotage nom +piloted pilot ver +pilotfish pilotfish nom +pilothouse pilothouse nom +pilothouses pilothouse nom +piloting pilot ver +pilotings piloting nom +pilots pilot nom +pilsener pilsener nom +pilseners pilsener nom +pilsner pilsner nom +pilsners pilsner nom +pilus pilus nom +pimento pimento nom +pimentos pimento nom +pimiento pimiento nom +pimientos pimiento nom +pimp pimp nom +pimped pimp ver +pimpernel pimpernel nom +pimpernels pimpernel nom +pimping pimp ver +pimple pimple nom +pimples pimple nom +pimplier pimply adj +pimpliest pimply adj +pimply pimply adj +pimps pimp nom +pin pin nom +pinafore pinafore nom +pinafores pinafore nom +pinata pinata nom +pinatas pinata nom +pinball pinball nom +pinballs pinball nom +pincer pincer nom +pincered pincer ver +pincering pincer ver +pincers pincer nom +pinch pinch nom +pinchbeck pinchbeck nom +pinchbecks pinchbeck nom +pinche pinche nom +pinched pinch ver +pinches pinch nom +pinchgut pinchgut nom +pinchguts pinchgut nom +pinching pinch ver +pincushion pincushion nom +pincushions pincushion nom +pine pine nom +pineapple pineapple nom +pineapples pineapple nom +pinecone pinecone nom +pinecones pinecone nom +pined pine ver +pines pine nom +pinesap pinesap nom +pinesaps pinesap nom +pineta pinetum nom +pinetum pinetum nom +piney piney adj +pinfeather pinfeather nom +pinfeathers pinfeather nom +pinfish pinfish nom +pinfold pinfold nom +pinfolds pinfold nom +ping ping nom +pinged ping ver +pinging ping ver +pings ping nom +pinhead pinhead nom +pinheads pinhead nom +pinhole pinhole nom +pinholes pinhole nom +pinier piney adj +piniest piney adj +pining pine ver +pinion pinion nom +pinioned pinion ver +pinioning pinion ver +pinions pinion nom +pink pink adj +pinked pink ver +pinker pink adj +pinkest pink adj +pinkeye pinkeye nom +pinkeyes pinkeye nom +pinkie pinkie nom +pinkies pinkie nom +pinking pink ver +pinkness pinkness nom +pinknesses pinkness nom +pinko pinko nom +pinkos pinko nom +pinkroot pinkroot nom +pinkroots pinkroot nom +pinks pink nom +pinky pinky nom +pinna pinna nom +pinnace pinnace nom +pinnaces pinnace nom +pinnacle pinnacle nom +pinnacled pinnacle ver +pinnacles pinnacle nom +pinnacling pinnacle ver +pinnas pinna nom +pinned pin ver +pinner pinner nom +pinners pinner nom +pinnies pinny nom +pinning pin ver +pinnings pinning nom +pinniped pinniped nom +pinnipeds pinniped nom +pinnule pinnule nom +pinnules pinnule nom +pinny pinny nom +pinochle pinochle nom +pinochles pinochle nom +pinocle pinocle nom +pinocles pinocle nom +pinon pinon nom +pinons pinon nom +pinpoint pinpoint nom +pinpointed pinpoint ver +pinpointing pinpoint ver +pinpoints pinpoint nom +pinprick pinprick nom +pinpricks pinprick nom +pins pin nom +pinscher pinscher nom +pinschers pinscher nom +pinsetter pinsetter nom +pinsetters pinsetter nom +pinstripe pinstripe nom +pinstripes pinstripe nom +pint pint nom +pintado pintado nom +pintadoes pintado nom +pintados pintado nom +pintail pintail nom +pintails pintail nom +pintle pintle nom +pintles pintle nom +pinto pinto nom +pintos pinto nom +pints pint nom +pinup pinup nom +pinups pinup nom +pinwheel pinwheel nom +pinwheeled pinwheel ver +pinwheeling pinwheel ver +pinwheels pinwheel nom +pinworm pinworm nom +pinworms pinworm nom +piny piny adj +pinyin pinyin nom +pinyon pinyon nom +pinyons pinyon nom +pion pion nom +pioneer pioneer nom +pioneered pioneer ver +pioneering pioneer ver +pioneers pioneer nom +pions pion nom +piousness piousness nom +piousnesses piousness nom +pip pip nom +pipage pipage nom +pipages pipage nom +pipal pipal nom +pipals pipal nom +pipe pipe nom +piped pipe ver +pipefish pipefish nom +pipefitting pipefitting nom +pipefittings pipefitting nom +pipeful pipeful nom +pipefuls pipeful nom +pipeline pipeline nom +pipelined pipeline ver +pipelines pipeline nom +pipelining pipeline ver +piper piper nom +piperine piperine nom +piperines piperine nom +pipers piper nom +pipes pipe nom +pipette pipette nom +pipetted pipette ver +pipettes pipette nom +pipetting pipette ver +pipework pipework nom +pipeworks pipework nom +pipewort pipewort nom +pipeworts pipewort nom +piping pipe ver +pipings piping nom +pipistrel pipistrel nom +pipistrelle pipistrelle nom +pipistrelles pipistrelle nom +pipistrels pipistrel nom +pipit pipit nom +pipits pipit nom +pipped pip ver +pippin pippin nom +pipping pip ver +pippins pippin nom +pips pip nom +pipsissewa pipsissewa nom +pipsissewas pipsissewa nom +pipsqueak pipsqueak nom +pipsqueaks pipsqueak nom +pipul pipul nom +pipuls pipul nom +piquance piquance nom +piquances piquance nom +piquancies piquancy nom +piquancy piquancy nom +pique pique nom +piqued pique ver +piques pique nom +piquet piquet nom +piquets piquet nom +piquing pique ver +piracies piracy nom +piracy piracy nom +pirana pirana nom +piranas pirana nom +piranha piranha nom +pirate pirate nom +pirated pirate ver +pirates pirate nom +pirating pirate ver +pirogi pirogi nom +pirogies pirogi nom +pirogue pirogue nom +pirogues pirogue nom +piroplasm piroplasm nom +piroplasms piroplasm nom +pirouette pirouette nom +pirouetted pirouette ver +pirouettes pirouette nom +pirouetting pirouette ver +pis pi nom +piscaries piscary nom +piscary piscary nom +pisiform pisiform nom +pisiforms pisiform nom +pismire pismire nom +pismires pismire nom +piss piss nom +pissed piss ver +pisses piss nom +pissing piss ver +pistachio pistachio nom +pistachios pistachio nom +pistil pistil nom +pistils pistil nom +pistol pistol nom +pistoled pistol ver +pistoleer pistoleer nom +pistoleers pistoleer nom +pistoling pistol ver +pistols pistol nom +piston piston nom +pistons piston nom +pit pit nom +pita pita nom +pitahaya pitahaya nom +pitahayas pitahaya nom +pitapat pitapat nom +pitapats pitapat nom +pitapatted pitapat ver +pitapatting pitapat ver +pitas pita nom +pitch pitch nom +pitchblende pitchblende nom +pitchblendes pitchblende nom +pitched pitch ver +pitcher pitcher nom +pitcherful pitcherful nom +pitcherfuls pitcherful nom +pitchers pitcher nom +pitches pitch nom +pitchfork pitchfork nom +pitchforked pitchfork ver +pitchforking pitchfork ver +pitchforks pitchfork nom +pitchier pitchy adj +pitchiest pitchy adj +pitching pitch ver +pitchings pitching nom +pitchman pitchman nom +pitchmen pitchman nom +pitchstone pitchstone nom +pitchstones pitchstone nom +pitchy pitchy adj +piteousness piteousness nom +piteousnesses piteousness nom +pitfall pitfall nom +pitfalls pitfall nom +pith pith nom +pithead pithead nom +pitheads pithead nom +pithed pith ver +pithier pithy adj +pithiest pithy adj +pithiness pithiness nom +pithinesses pithiness nom +pithing pith ver +piths pith nom +pithy pithy adj +pitied pity ver +pities pity nom +pitiful pitiful adj +pitifuller pitiful adj +pitifullest pitiful adj +pitilessness pitilessness nom +pitilessnesses pitilessness nom +pitman pitman nom +pitmans pitman nom +piton piton nom +pitons piton nom +pitprop pitprop nom +pitprops pitprop nom +pits pit nom +pitsaw pitsaw nom +pitsaws pitsaw nom +pitta pitta nom +pittance pittance nom +pittances pittance nom +pittas pitta nom +pitted pit ver +pitting pit ver +pittings pitting nom +pituitaries pituitary nom +pituitary pituitary nom +pity pity nom +pitying pity ver +pivot pivot nom +pivoted pivot ver +pivoting pivot ver +pivots pivot nom +pix pix nom +pixel pixel nom +pixels pixel nom +pixes pix nom +pixie pixie nom +pixies pixie nom +pixy pixy nom +pizazz pizazz nom +pizazzes pizazz nom +pizza pizza nom +pizzas pizza nom +pizzaz pizzaz nom +pizzazz pizzazz nom +pizzazzes pizzaz nom +pizzeria pizzeria nom +pizzerias pizzeria nom +pizzicati pizzicato nom +pizzicato pizzicato nom +placard placard nom +placarded placard ver +placarding placard ver +placards placard nom +placate placate ver +placated placate ver +placates placate ver +placating placate ver +placation placation nom +placations placation nom +place place nom +placebo placebo nom +placebos placebo nom +placed placed sw +placeholder placeholder nom +placeholders placeholder nom +placekick placekick nom +placekicked placekick ver +placekicking placekick ver +placekicks placekick nom +placeman placeman nom +placemen placeman nom +placement placement nom +placements placement nom +placenta placenta nom +placental placental nom +placentals placental nom +placentas placenta nom +placentation placentation nom +placentations placentation nom +placer placer nom +placers placer nom +places place nom +placid placid adj +placider placid adj +placidest placid adj +placidities placidity nom +placidity placidity nom +placidness placidness nom +placidnesses placidness nom +placing place ver +placket placket nom +plackets placket nom +placoderm placoderm nom +placoderms placoderm nom +plage plage nom +plages plage nom +plagiaries plagiary nom +plagiarise plagiarise ver +plagiarised plagiarise ver +plagiarises plagiarise ver +plagiarising plagiarise ver +plagiarism plagiarism nom +plagiarisms plagiarism nom +plagiarist plagiarist nom +plagiarists plagiarist nom +plagiarize plagiarize ver +plagiarized plagiarize ver +plagiarizer plagiarizer nom +plagiarizers plagiarizer nom +plagiarizes plagiarize ver +plagiarizing plagiarize ver +plagiary plagiary nom +plagioclase plagioclase nom +plagioclases plagioclase nom +plague plague nom +plagued plague ver +plagues plague nom +plaguey plaguey adj +plaguier plaguey adj +plaguiest plaguey adj +plaguing plague ver +plaice plaice nom +plaices plaice nom +plaid plaid nom +plaids plaid nom +plain plain adj +plainchant plainchant nom +plainchants plainchant nom +plainclothesman plainclothesman nom +plainclothesmen plainclothesman nom +plained plain ver +plainer plain adj +plainest plain adj +plaining plain ver +plainness plainness nom +plainnesses plainness nom +plains plain nom +plainsman plainsman nom +plainsmen plainsman nom +plainsong plainsong nom +plainsongs plainsong nom +plaint plaint nom +plaintiff plaintiff nom +plaintiffs plaintiff nom +plaintiveness plaintiveness nom +plaintivenesses plaintiveness nom +plaints plaint nom +plait plait nom +plaited plait ver +plaiting plait ver +plaits plait nom +plan plan nom +planaria planaria nom +planarian planarian nom +planarians planarian nom +planarias planaria nom +planation planation nom +planations planation nom +planchet planchet nom +planchets planchet nom +planchette planchette nom +planchettes planchette nom +plane plane nom +planed plane ver +planeness planeness nom +planenesses planeness nom +planer planer nom +planers planer nom +planes plane nom +planet planet nom +planetaries planetary nom +planetarium planetarium nom +planetariums planetarium nom +planetary planetary nom +planetesimal planetesimal nom +planetesimals planetesimal nom +planetoid planetoid nom +planetoids planetoid nom +planets planet nom +plangencies plangency nom +plangency plangency nom +planimeter planimeter nom +planimeters planimeter nom +planing plane ver +plank plank nom +planked plank ver +planking plank ver +plankings planking nom +planks plank nom +plankton plankton nom +planktons plankton nom +planned plan ver +planner planner nom +planners planner nom +planning plan ver +plannings planning nom +planographies planography nom +planography planography nom +plans plan nom +plant plant nom +plantain plantain nom +plantains plantain nom +plantation plantation nom +plantations plantation nom +planted plant ver +planter planter nom +planters planter nom +planting plant ver +plantings planting nom +plants plant nom +plaque plaque nom +plaques plaque nom +plash plash nom +plashed plash ver +plashes plash nom +plashing plash ver +plasm plasm nom +plasma plasma nom +plasmacyte plasmacyte nom +plasmacytes plasmacyte nom +plasmaphereses plasmapheresis nom +plasmapheresis plasmapheresis nom +plasmas plasma nom +plasmin plasmin nom +plasminogen plasminogen nom +plasminogens plasminogen nom +plasmins plasmin nom +plasmodium plasmodium nom +plasmodiums plasmodium nom +plasms plasm nom +plaster plaster nom +plasterboard plasterboard nom +plasterboards plasterboard nom +plastered plaster ver +plasterer plasterer nom +plasterers plasterer nom +plastering plaster ver +plasterings plastering nom +plasters plaster nom +plastic plastic nom +plasticities plasticity nom +plasticity plasticity nom +plasticize plasticize ver +plasticized plasticize ver +plasticizer plasticizer nom +plasticizers plasticizer nom +plasticizes plasticize ver +plasticizing plasticize ver +plastics plastic nom +plastid plastid nom +plastids plastid nom +plastique plastique nom +plastiques plastique nom +plat plat nom +platan platan nom +platans platan nom +plate plate nom +plateau plateau nom +plateaued plateau ver +plateauing plateau ver +plateaus plateau nom +plated plate ver +plateful plateful nom +platefuls plateful nom +platelayer platelayer nom +platelayers platelayer nom +platelet platelet nom +platelets platelet nom +platen platen nom +platens platen nom +plates plate nom +platform platform nom +platformed platform ver +platforming platform ver +platforms platform nom +platier platy adj +platiest platy adj +plating plate ver +platings plating nom +platinum platinum nom +platinums platinum nom +platitude platitude nom +platitudes platitude nom +platoon platoon nom +platooned platoon ver +platooning platoon ver +platoons platoon nom +plats plat nom +platted plat ver +platter platter nom +platters platter nom +platting plat ver +platy platy adj +platyhelminth platyhelminth nom +platyhelminths platyhelminth nom +platypus platypus nom +platypuses platypus nom +platys platy nom +plaudit plaudit nom +plaudits plaudit nom +plausibilities plausibility nom +plausibility plausibility nom +plausibleness plausibleness nom +plausiblenesses plausibleness nom +play play nom +playact playact ver +playacted playact ver +playacting playact ver +playactings playacting nom +playacts playact ver +playback playback nom +playbacks playback nom +playbill playbill nom +playbills playbill nom +playboy playboy nom +playboys playboy nom +playday playday nom +playdays playday nom +played play ver +player player nom +players player nom +playfellow playfellow nom +playfellows playfellow nom +playfulness playfulness nom +playfulnesses playfulness nom +playgirl playgirl nom +playgirls playgirl nom +playgoer playgoer nom +playgoers playgoer nom +playground playground nom +playgrounds playground nom +playhouse playhouse nom +playhouses playhouse nom +playing play ver +playings playing nom +playlet playlet nom +playlets playlet nom +playmate playmate nom +playmates playmate nom +playoff playoff nom +playoffs playoff nom +playpen playpen nom +playpens playpen nom +playroom playroom nom +playrooms playroom nom +plays play nom +playschool playschool nom +playschools playschool nom +playsuit playsuit nom +playsuits playsuit nom +plaything plaything nom +playthings plaything nom +playtime playtime nom +playtimes playtime nom +playwright playwright nom +playwrights playwright nom +plaza plaza nom +plazas plaza nom +plea plea nom +pleach pleach ver +pleached pleach ver +pleaches pleach ver +pleaching pleach ver +plead plead ver +pleaded plead ver +pleader pleader nom +pleaders pleader nom +pleading plead ver +pleadings pleading nom +pleads plead ver +pleas plea nom +pleasance pleasance nom +pleasances pleasance nom +pleasant pleasant adj +pleasanter pleasant adj +pleasantest pleasant adj +pleasantness pleasantness nom +pleasantnesses pleasantness nom +pleasantries pleasantry nom +pleasantry pleasantry nom +please please sw +pleased please ver +pleases please ver +pleasing please ver +pleasingness pleasingness nom +pleasingnesses pleasingness nom +pleasings pleasing nom +pleasure pleasure nom +pleasured pleasure ver +pleasures pleasure nom +pleasuring pleasure ver +pleat pleat nom +pleated pleat ver +pleating pleat ver +pleats pleat nom +pleb pleb nom +plebe plebe nom +plebeian plebeian nom +plebeians plebeian nom +plebes plebe nom +plebiscite plebiscite nom +plebiscites plebiscite nom +plebs pleb nom +plecopteran plecopteran nom +plecopterans plecopteran nom +plectognath plectognath nom +plectognaths plectognath nom +plectra plectrum nom +plectron plectron nom +plectrons plectron nom +plectrum plectrum nom +pledge pledge nom +pledged pledge ver +pledges pledge nom +pledging pledge ver +plenipotentiaries plenipotentiary nom +plenipotentiary plenipotentiary nom +plenitude plenitude nom +plenitudes plenitude nom +plenteousness plenteousness nom +plenteousnesses plenteousness nom +plenties plenty nom +plentifulness plentifulness nom +plentifulnesses plentifulness nom +plentitude plentitude nom +plentitudes plentitude nom +plenty plenty nom +plenum plenum nom +plenums plenum nom +pleochroism pleochroism nom +pleochroisms pleochroism nom +pleomorphism pleomorphism nom +pleomorphisms pleomorphism nom +pleonasm pleonasm nom +pleonasms pleonasm nom +pleonaste pleonaste nom +pleonastes pleonaste nom +pleopod pleopod nom +pleopods pleopod nom +plesiosaur plesiosaur nom +plesiosaurs plesiosaur nom +plethora plethora nom +plethoras plethora nom +pleura pleura nom +pleurae pleura nom +pleurisies pleurisy nom +pleurisy pleurisy nom +pleurodont pleurodont nom +pleurodonts pleurodont nom +pleurodynia pleurodynia nom +pleurodynias pleurodynia nom +plexiglass plexiglass nom +plexiglasses plexiglass nom +plexor plexor nom +plexors plexor nom +plexus plexus nom +plexuses plexus nom +pliabilities pliability nom +pliability pliability nom +pliancies pliancy nom +pliancy pliancy nom +pliantness pliantness nom +pliantnesses pliantness nom +plica plica nom +plicae plica nom +plication plication nom +plications plication nom +plied ply ver +plies ply nom +plight plight nom +plighted plight ver +plighting plight ver +plights plight nom +plimsoll plimsoll nom +plimsolls plimsoll nom +plinth plinth nom +plinths plinth nom +plod plod nom +plodded plod ver +plodder plodder nom +plodders plodder nom +plodding plod ver +ploddings plodding nom +plods plod nom +plonk plonk nom +plonked plonk ver +plonking plonk ver +plonks plonk nom +plop plop nom +plopped plop ver +plopping plop ver +plops plop nom +plosion plosion nom +plosions plosion nom +plosive plosive nom +plosives plosive nom +plot plot nom +plots plot nom +plotted plot ver +plotter plotter nom +plotters plotter nom +plotting plot ver +plough plough nom +ploughboy ploughboy nom +ploughboys ploughboy nom +ploughed plough ver +ploughing plough ver +ploughings ploughing nom +ploughman ploughman nom +ploughmen ploughman nom +ploughs plough nom +ploughshare ploughshare nom +ploughshares ploughshare nom +ploughwright ploughwright nom +ploughwrights ploughwright nom +plover plover nom +plovers plover nom +plow plow nom +plowboy plowboy nom +plowboys plowboy nom +plowed plow ver +plowing plow ver +plowman plowman nom +plowmen plowman nom +plows plow nom +plowshare plowshare nom +plowshares plowshare nom +ploy ploy nom +ployed ploy ver +ploying ploy ver +ploys ploy nom +pluck pluck nom +plucked pluck ver +pluckier plucky adj +pluckiest plucky adj +pluckiness pluckiness nom +pluckinesses pluckiness nom +plucking pluck ver +plucks pluck nom +plucky plucky adj +plug plug nom +plugged plug ver +plugger plugger nom +pluggers plugger nom +plugging plug ver +plughole plughole nom +plugholes plughole nom +plugs plug nom +plum plum adj +plumage plumage nom +plumages plumage nom +plumb plumb nom +plumbago plumbago nom +plumbagos plumbago nom +plumbed plumb ver +plumber plumber nom +plumberies plumbery nom +plumbers plumber nom +plumbery plumbery nom +plumbing plumb ver +plumbings plumbing nom +plumbism plumbism nom +plumbisms plumbism nom +plumbs plumb nom +plumcot plumcot nom +plumcots plumcot nom +plume plume nom +plumed plume ver +plumes plume nom +plumier plumy adj +plumiest plumy adj +pluming plume ver +plummer plum adj +plummest plum adj +plummet plummet nom +plummeted plummet ver +plummeting plummet ver +plummets plummet nom +plummier plummy adj +plummiest plummy adj +plummy plummy adj +plump plump adj +plumped plump ver +plumper plump adj +plumpest plump adj +plumping plump ver +plumpness plumpness nom +plumpnesses plumpness nom +plumps plump nom +plums plum nom +plumy plumy adj +plunder plunder nom +plunderage plunderage nom +plunderages plunderage nom +plundered plunder ver +plunderer plunderer nom +plunderers plunderer nom +plundering plunder ver +plunders plunder nom +plunge plunge nom +plunged plunge ver +plunger plunger nom +plungers plunger nom +plunges plunge nom +plunging plunge ver +plunk plunk nom +plunked plunk ver +plunker plunker nom +plunkers plunker nom +plunking plunk ver +plunks plunk nom +pluperfect pluperfect nom +pluperfects pluperfect nom +plural plural nom +pluralism pluralism nom +pluralisms pluralism nom +pluralist pluralist nom +pluralists pluralist nom +pluralities plurality nom +plurality plurality nom +pluralization pluralization nom +pluralizations pluralization nom +pluralize pluralize ver +pluralized pluralize ver +pluralizes pluralize ver +pluralizing pluralize ver +plurals plural nom +plus plus sw +pluses plus nom +plush plush adj +plusher plush adj +plushes plush nom +plushest plush adj +plushier plushy adj +plushiest plushy adj +plushness plushness nom +plushnesses plushness nom +plushy plushy adj +plutocracies plutocracy nom +plutocracy plutocracy nom +plutocrat plutocrat nom +plutocrats plutocrat nom +pluton pluton nom +plutonium plutonium nom +plutoniums plutonium nom +plutons pluton nom +pluvial pluvial nom +pluvials pluvial nom +ply ply nom +plying ply ver +plywood plywood nom +plywoods plywood nom +pneumatic pneumatic nom +pneumatics pneumatic nom +pneumococci pneumococcus nom +pneumococcus pneumococcus nom +pneumoconioses pneumoconiosis nom +pneumoconiosis pneumoconiosis nom +pneumonectomies pneumonectomy nom +pneumonectomy pneumonectomy nom +pneumonia pneumonia nom +pneumonias pneumonia nom +pneumonitides pneumonitis nom +pneumonitis pneumonitis nom +poach poach ver +poached poach ver +poacher poacher nom +poachers poacher nom +poaches poach ver +poaching poach ver +poachings poaching nom +pochard pochard nom +pochards pochard nom +pock pock nom +pocked pock ver +pocket pocket nom +pocketbook pocketbook nom +pocketbooks pocketbook nom +pocketed pocket ver +pocketful pocketful nom +pocketfuls pocketful nom +pocketing pocket ver +pocketknife pocketknife nom +pocketknives pocketknife nom +pockets pocket nom +pocking pock ver +pockmark pockmark nom +pockmarked pockmark ver +pockmarking pockmark ver +pockmarks pockmark nom +pocks pock nom +pod pod nom +podded pod ver +podding pod ver +podetia podetium nom +podetium podetium nom +podgier podgy adj +podgiest podgy adj +podgy podgy adj +podiatries podiatry nom +podiatrist podiatrist nom +podiatrists podiatrist nom +podiatry podiatry nom +podium podium nom +podiums podium nom +pods pod nom +podsol podsol nom +podsols podsol nom +podzol podzol nom +podzols podzol nom +poem poem nom +poems poem nom +poesies poesy nom +poesy poesy nom +poet poet nom +poetaster poetaster nom +poetasters poetaster nom +poetess poetess nom +poetesses poetess nom +poetic poetic nom +poetics poetic nom +poetize poetize ver +poetized poetize ver +poetizes poetize ver +poetizing poetize ver +poetries poetry nom +poetry poetry nom +poets poet nom +pogey pogey nom +pogeys pogey nom +pogge pogge nom +pogges pogge nom +pogies pogy nom +pogonia pogonia nom +pogonias pogonia nom +pogonophoran pogonophoran nom +pogonophorans pogonophoran nom +pogrom pogrom nom +pogroms pogrom nom +pogy pogy nom +poi poi nom +poignance poignance nom +poignances poignance nom +poignancies poignancy nom +poignancy poignancy nom +poilu poilu nom +poilus poilu nom +poinciana poinciana nom +poincianas poinciana nom +poinsettia poinsettia nom +poinsettias poinsettia nom +point point nom +pointed point ver +pointedness pointedness nom +pointednesses pointedness nom +pointer pointer nom +pointers pointer nom +pointier pointy adj +pointiest pointy adj +pointillism pointillism nom +pointillisms pointillism nom +pointillist pointillist nom +pointillists pointillist nom +pointing point ver +pointlessness pointlessness nom +pointlessnesses pointlessness nom +points point nom +pointsman pointsman nom +pointsmen pointsman nom +pointy pointy adj +poise poise nom +poised poise ver +poises poise nom +poising poise ver +poison poison nom +poisoned poison ver +poisoner poisoner nom +poisoners poisoner nom +poisoning poison ver +poisonings poisoning nom +poisons poison nom +poke poke nom +poked poke ver +poker poker nom +pokers poker nom +pokes poke nom +pokeweed pokeweed nom +pokeweeds pokeweed nom +pokey pokey adj +pokeys pokey nom +pokier pokey adj +pokies poky nom +pokiest pokey adj +poking poke ver +poky poky adj +pol pol nom +polarimeter polarimeter nom +polarimeters polarimeter nom +polarisation polarisation nom +polarisations polarisation nom +polariscope polariscope nom +polariscopes polariscope nom +polarities polarity nom +polarity polarity nom +polarization polarization nom +polarizations polarization nom +polarize polarize ver +polarized polarize ver +polarizes polarize ver +polarizing polarize ver +pole pole nom +poleax poleax nom +poleaxe poleaxe nom +poleaxed poleax ver +poleaxes poleax nom +poleaxing poleax ver +polecat polecat nom +polecats polecat nom +poled pole ver +polemic polemic nom +polemicist polemicist nom +polemicists polemicist nom +polemicize polemicize ver +polemicized polemicize ver +polemicizes polemicize ver +polemicizing polemicize ver +polemics polemic nom +polemize polemize ver +polemized polemize ver +polemizes polemize ver +polemizing polemize ver +polemonium polemonium nom +polemoniums polemonium nom +poler poler nom +polers poler nom +poles pole nom +polestar polestar nom +polestars polestar nom +police police nom +policed police ver +policeman policeman nom +policemen policeman nom +polices police ver +policewoman policewoman nom +policewomen policewoman nom +policies policy nom +policing police ver +policy policy nom +policyholder policyholder nom +policyholders policyholder nom +poling pole ver +polio polio nom +poliomyelitides poliomyelitis nom +poliomyelitis poliomyelitis nom +polios polio nom +poliovirus poliovirus nom +polioviruses poliovirus nom +polish polish nom +polished polish ver +polisher polisher nom +polishers polisher nom +polishes polish nom +polishing polish ver +polishings polishing nom +politburo politburo nom +politburos politburo nom +polite polite adj +politeness politeness nom +politenesses politeness nom +politer polite adj +politesse politesse nom +politesses politesse nom +politest polite adj +politician politician nom +politicians politician nom +politicization politicization nom +politicizations politicization nom +politicize politicize ver +politicized politicize ver +politicizes politicize ver +politicizing politicize ver +politick politick ver +politicked politick ver +politicking politick ver +politickings politicking nom +politicks politick ver +politico politico nom +politicos politico nom +polities polity nom +polity polity nom +polka polka nom +polkaed polka ver +polkaing polka ver +polkas polka nom +poll poll nom +pollack pollack nom +pollard pollard nom +pollarded pollard ver +pollarding pollard ver +pollards pollard nom +polled poll ver +pollen pollen nom +pollened pollen ver +pollening pollen ver +pollens pollen nom +pollex pollex nom +pollices pollex nom +pollinate pollinate ver +pollinated pollinate ver +pollinates pollinate ver +pollinating pollinate ver +pollination pollination nom +pollinations pollination nom +pollinator pollinator nom +pollinators pollinator nom +polling poll ver +pollinoses pollinosis nom +pollinosis pollinosis nom +polliwog polliwog nom +polliwogs polliwog nom +pollock pollock nom +polls poll nom +pollster pollster nom +pollsters pollster nom +pollutant pollutant nom +pollutants pollutant nom +pollute pollute ver +polluted pollute ver +polluter polluter nom +polluters polluter nom +pollutes pollute ver +polluting pollute ver +pollution pollution nom +pollutions pollution nom +pollyfish pollyfish nom +pollywog pollywog nom +pollywogs pollywog nom +polo polo nom +polonaise polonaise nom +polonaises polonaise nom +polonies polony nom +polonium polonium nom +poloniums polonium nom +polony polony nom +polos polo nom +pols pol nom +poltergeist poltergeist nom +poltergeists poltergeist nom +poltroon poltroon nom +poltrooneries poltroonery nom +poltroonery poltroonery nom +poltroons poltroon nom +polyamide polyamide nom +polyamides polyamide nom +polyandries polyandry nom +polyandrist polyandrist nom +polyandrists polyandrist nom +polyandry polyandry nom +polyanthus polyanthus nom +polyanthuses polyanthus nom +polychaete polychaete nom +polychaetes polychaete nom +polychete polychete nom +polychetes polychete nom +polychrome polychrome ver +polychromed polychrome ver +polychromes polychrome ver +polychroming polychrome ver +polyclinic polyclinic nom +polyclinics polyclinic nom +polycythemia polycythemia nom +polycythemias polycythemia nom +polyelectrolyte polyelectrolyte nom +polyelectrolytes polyelectrolyte nom +polyester polyester nom +polyesters polyester nom +polyethylene polyethylene nom +polyethylenes polyethylene nom +polygamies polygamy nom +polygamist polygamist nom +polygamists polygamist nom +polygamy polygamy nom +polyglot polyglot nom +polyglots polyglot nom +polygon polygon nom +polygons polygon nom +polygraph polygraph nom +polygraphed polygraph ver +polygraphing polygraph ver +polygraphs polygraph nom +polygynies polygyny nom +polygynist polygynist nom +polygynists polygynist nom +polygyny polygyny nom +polyhedron polyhedron nom +polyhedrons polyhedron nom +polymath polymath nom +polymaths polymath nom +polymer polymer nom +polymerase polymerase nom +polymerases polymerase nom +polymerisation polymerisation nom +polymerisations polymerisation nom +polymerization polymerization nom +polymerizations polymerization nom +polymerize polymerize ver +polymerized polymerize ver +polymerizes polymerize ver +polymerizing polymerize ver +polymers polymer nom +polymorph polymorph nom +polymorphism polymorphism nom +polymorphisms polymorphism nom +polymorphs polymorph nom +polymyxin polymyxin nom +polymyxins polymyxin nom +polyneuritides polyneuritis nom +polyneuritis polyneuritis nom +polynomial polynomial nom +polynomials polynomial nom +polyoma polyoma nom +polyomas polyoma nom +polyp polyp nom +polypeptide polypeptide nom +polypeptides polypeptide nom +polyphone polyphone nom +polyphones polyphone nom +polyphonies polyphony nom +polyphony polyphony nom +polyploid polyploid nom +polyploids polyploid nom +polypodies polypody nom +polypody polypody nom +polypore polypore nom +polypores polypore nom +polypropylene polypropylene nom +polypropylenes polypropylene nom +polyps polyp nom +polypus polypus nom +polypuses polypus nom +polysaccharide polysaccharide nom +polysaccharides polysaccharide nom +polysemies polysemy nom +polysemy polysemy nom +polystyrene polystyrene nom +polystyrenes polystyrene nom +polysyllable polysyllable nom +polysyllables polysyllable nom +polysyndeton polysyndeton nom +polysyndetons polysyndeton nom +polytechnic polytechnic nom +polytechnics polytechnic nom +polytetrafluoroethylene polytetrafluoroethylene nom +polytetrafluoroethylenes polytetrafluoroethylene nom +polytheism polytheism nom +polytheisms polytheism nom +polytheist polytheist nom +polytheists polytheist nom +polythene polythene nom +polythenes polythene nom +polytonalities polytonality nom +polytonality polytonality nom +polyurethane polyurethane nom +polyurethanes polyurethane nom +polyzoan polyzoan nom +polyzoans polyzoan nom +pom pom nom +pomade pomade nom +pomaded pomade ver +pomades pomade nom +pomading pomade ver +pomander pomander nom +pomanders pomander nom +pomatum pomatum nom +pomatums pomatum nom +pome pome nom +pomegranate pomegranate nom +pomegranates pomegranate nom +pomelo pomelo nom +pomelos pomelo nom +pomes pome nom +pomfret pomfret nom +pomfrets pomfret nom +pommel pommel nom +pommeled pommel ver +pommeling pommel ver +pommels pommel nom +pommies pommy nom +pommy pommy nom +pomologies pomology nom +pomology pomology nom +pomp pomp nom +pompadour pompadour nom +pompadours pompadour nom +pompano pompano nom +pompom pompom nom +pompoms pompom nom +pompon pompon nom +pompons pompon nom +pomposities pomposity nom +pomposity pomposity nom +pompousness pompousness nom +pompousnesses pompousness nom +pomps pomp nom +poms pom nom +ponce ponce nom +ponces ponce nom +poncho poncho nom +ponchos poncho nom +pond pond nom +ponded pond ver +ponder ponder ver +pondered ponder ver +ponderer ponderer nom +ponderers ponderer nom +pondering ponder ver +ponderosa ponderosa nom +ponderosas ponderosa nom +ponderosities ponderosity nom +ponderosity ponderosity nom +ponderousness ponderousness nom +ponderousnesses ponderousness nom +ponders ponder ver +ponding pond ver +ponds pond nom +pondweed pondweed nom +pondweeds pondweed nom +pone pone nom +pones pone nom +pongee pongee nom +pongees pongee nom +pongid pongid nom +pongids pongid nom +poniard poniard nom +poniarded poniard ver +poniarding poniard ver +poniards poniard nom +ponied pony ver +ponies pony nom +pontiff pontiff nom +pontiffs pontiff nom +pontifical pontifical nom +pontificals pontifical nom +pontificate pontificate nom +pontificated pontificate ver +pontificates pontificate nom +pontificating pontificate ver +pontoon pontoon nom +pontoons pontoon nom +pony pony nom +ponying pony ver +ponytail ponytail nom +ponytails ponytail nom +pooch pooch nom +pooched pooch ver +pooches pooch nom +pooching pooch ver +pood pood nom +poodle poodle nom +poodles poodle nom +poods pood nom +poof poof nom +poofs poof nom +pooh pooh nom +poohed pooh ver +poohing pooh ver +poohs pooh nom +pool pool nom +pooled pool ver +pooling pool ver +poolroom poolroom nom +poolrooms poolroom nom +pools pool nom +poon poon nom +poons poon nom +poop poop nom +pooped poop ver +pooping poop ver +poops poop nom +poor poor adj +poorboy poorboy nom +poorboys poorboy nom +poorer poor adj +poorest poor adj +poorhouse poorhouse nom +poorhouses poorhouse nom +poorlier poorly adj +poorliest poorly adj +poorly poorly adj +poorness poorness nom +poornesses poorness nom +poorwill poorwill nom +poorwills poorwill nom +poove poove nom +pooves poove nom +pop pop nom +popcorn popcorn nom +popcorns popcorn nom +pope pope nom +poperies popery nom +popery popery nom +popes pope nom +popgun popgun nom +popguns popgun nom +popinjay popinjay nom +popinjays popinjay nom +poplar poplar nom +poplars poplar nom +poplin poplin nom +poplins poplin nom +popover popover nom +popovers popover nom +poppa poppa nom +poppas poppa nom +popped pop ver +popper popper nom +poppers popper nom +poppet poppet nom +poppets poppet nom +poppies poppy nom +popping pop ver +poppy poppy nom +poppycock poppycock nom +poppycocks poppycock nom +pops pop nom +popsicle popsicle nom +popsicles popsicle nom +populace populace nom +populaces populace nom +popularisation popularisation nom +popularisations popularisation nom +popularities popularity nom +popularity popularity nom +popularization popularization nom +popularizations popularization nom +popularize popularize ver +popularized popularize ver +popularizes popularize ver +popularizing popularize ver +populate populate ver +populated populate ver +populates populate ver +populating populate ver +population population nom +populations population nom +populism populism nom +populisms populism nom +populist populist nom +populists populist nom +populousness populousness nom +populousnesses populousness nom +porbeagle porbeagle nom +porbeagles porbeagle nom +porcelain porcelain nom +porcelains porcelain nom +porch porch nom +porches porch nom +porcupine porcupine nom +porcupinefish porcupinefish nom +porcupines porcupine nom +pore pore nom +pored pore ver +pores pore nom +porgy porgy nom +poriferan poriferan nom +poriferans poriferan nom +poring pore ver +pork pork nom +porker porker nom +porkers porker nom +porkfish porkfish nom +porkier porky adj +porkies porky nom +porkiest porky adj +porkpie porkpie nom +porkpies porkpie nom +porks pork nom +porky porky adj +porn porn nom +porno porno nom +pornographer pornographer nom +pornographers pornographer nom +pornographies pornography nom +pornography pornography nom +pornos porno nom +porns porn nom +porosities porosity nom +porosity porosity nom +porousness porousness nom +porousnesses porousness nom +porphyria porphyria nom +porphyrias porphyria nom +porphyries porphyry nom +porphyry porphyry nom +porpoise porpoise nom +porpoised porpoise ver +porpoises porpoise ver +porpoising porpoise ver +porridge porridge nom +porridges porridge nom +porringer porringer nom +porringers porringer nom +port port nom +portabilities portability nom +portability portability nom +portable portable nom +portables portable nom +portage portage nom +portaged portage ver +portages portage nom +portaging portage ver +portal portal nom +portals portal nom +portcullis portcullis nom +portcullises portcullis nom +ported port ver +portend portend ver +portended portend ver +portending portend ver +portends portend ver +portent portent nom +portents portent nom +porter porter nom +porterage porterage nom +porterages porterage nom +porterhouse porterhouse nom +porterhouses porterhouse nom +porters porter nom +portfolio portfolio nom +portfolios portfolio nom +porthole porthole nom +portholes porthole nom +portico portico nom +porticoes portico nom +portiere portiere nom +portieres portiere nom +porting port ver +portion portion nom +portioned portion ver +portioning portion ver +portions portion nom +portlier portly adj +portliest portly adj +portliness portliness nom +portlinesses portliness nom +portly portly adj +portmanteau portmanteau nom +portmanteaus portmanteau nom +portrait portrait nom +portraitist portraitist nom +portraitists portraitist nom +portraits portrait nom +portraiture portraiture nom +portraitures portraiture nom +portray portray ver +portrayal portrayal nom +portrayals portrayal nom +portrayed portray ver +portraying portray ver +portrays portray ver +ports port nom +portulaca portulaca nom +portulacas portulaca nom +pose pose nom +posed pose ver +poser poser nom +posers poser nom +poses pose nom +poseur poseur nom +poseurs poseur nom +poseuse poseuse nom +poseuses poseuse nom +posh posh adj +posher posh adj +poshest posh adj +posies posy nom +posing pose ver +posings posing nom +posit posit nom +posited posit ver +positing posit ver +position position nom +positioned position ver +positioner positioner nom +positioners positioner nom +positioning position ver +positions position nom +positive positive adj +positiveness positiveness nom +positivenesses positiveness nom +positiver positive adj +positives positive nom +positivest positive adj +positivism positivism nom +positivisms positivism nom +positivist positivist nom +positivists positivist nom +positivities positivity nom +positivity positivity nom +positron positron nom +positrons positron nom +posits posit nom +posologies posology nom +posology posology nom +posse posse nom +posses posse nom +possess possess ver +possessed possess ver +possesses possess ver +possessing possess ver +possession possession nom +possessions possession nom +possessive possessive nom +possessiveness possessiveness nom +possessivenesses possessiveness nom +possessives possessive nom +possessor possessor nom +possessors possessor nom +posset posset nom +possets posset nom +possibilities possibility nom +possibility possibility nom +possible possible sw +possibler possible adj +possibles possible nom +possiblest possible adj +possum possum nom +possums possum nom +post post nom +postage postage nom +postages postage nom +postal postal nom +postals postal nom +postbag postbag nom +postbags postbag nom +postbox postbox nom +postboxes postbox nom +postcard postcard nom +postcarded postcard ver +postcarding postcard ver +postcards postcard nom +postcava postcava nom +postcavae postcava nom +postcode postcode nom +postcodes postcode nom +postdate postdate ver +postdated postdate ver +postdates postdate ver +postdating postdate ver +posted post ver +poster poster nom +posterior posterior nom +posteriorities posteriority nom +posteriority posteriority nom +posteriors posterior nom +posterities posterity nom +posterity posterity nom +postern postern nom +posterns postern nom +posters poster nom +postgraduate postgraduate nom +postgraduates postgraduate nom +posthaste posthaste nom +posthastes posthaste nom +posthole posthole nom +postholes posthole nom +postiche postiche nom +postiches postiche nom +postilion postilion nom +postilions postilion nom +postillion postillion nom +postillions postillion nom +posting post ver +postings posting nom +postlude postlude nom +postludes postlude nom +postman postman nom +postmark postmark nom +postmarked postmark ver +postmarking postmark ver +postmarks postmark nom +postmaster postmaster nom +postmasters postmaster nom +postmen postman nom +postmistress postmistress nom +postmistresses postmistress nom +postmodernism postmodernism nom +postmodernisms postmodernism nom +postmortem postmortem nom +postmortems postmortem nom +postpone postpone ver +postponed postpone ver +postponement postponement nom +postponements postponement nom +postponer postponer nom +postponers postponer nom +postpones postpone ver +postponing postpone ver +postposition postposition nom +postpositions postposition nom +posts post nom +postscript postscript nom +postscripts postscript nom +postulant postulant nom +postulants postulant nom +postulate postulate nom +postulated postulate ver +postulates postulate nom +postulating postulate ver +postulation postulation nom +postulations postulation nom +posture posture nom +postured posture ver +postures posture nom +posturing posture ver +posturings posturing nom +posy posy nom +pot pot nom +potabilities potability nom +potability potability nom +potable potable nom +potables potable nom +potage potage nom +potages potage nom +potash potash nom +potashes potash nom +potassium potassium nom +potassiums potassium nom +potation potation nom +potations potation nom +potato potato nom +potatoes potato nom +potbellies potbelly nom +potbelly potbelly nom +potboiler potboiler nom +potboilers potboiler nom +potboy potboy nom +potboys potboy nom +poteen poteen nom +poteens poteen nom +potencies potency nom +potency potency nom +potent potent nom +potentate potentate nom +potentates potentate nom +potential potential nom +potentialities potentiality nom +potentiality potentiality nom +potentials potential nom +potentiometer potentiometer nom +potentiometers potentiometer nom +potents potent nom +potful potful nom +potfuls potful nom +pothead pothead nom +potheads pothead nom +pother pother nom +potherb potherb nom +potherbs potherb nom +pothered pother ver +pothering pother ver +pothers pother nom +potholder potholder nom +potholders potholder nom +pothole pothole nom +potholer potholer nom +potholers potholer nom +potholes pothole nom +pothook pothook nom +pothooks pothook nom +pothos pothos nom +pothoses pothos nom +pothouse pothouse nom +pothouses pothouse nom +pothunter pothunter nom +pothunters pothunter nom +potion potion nom +potions potion nom +potluck potluck nom +potlucks potluck nom +potman potman nom +potmen potman nom +potoroo potoroo nom +potoroos potoroo nom +potpie potpie nom +potpies potpie nom +potpourri potpourri nom +potpourris potpourri nom +pots pot nom +potsherd potsherd nom +potsherds potsherd nom +potshot potshot nom +potshots potshot nom +pottage pottage nom +pottages pottage nom +potted pot ver +potter potter nom +pottered potter ver +potterer potterer nom +potterers potterer nom +potteries pottery nom +pottering potter ver +potters potter nom +pottery pottery nom +pottier potty adj +potties potty nom +pottiest potty adj +potting pot ver +pottle pottle nom +pottles pottle nom +potto potto nom +pottos potto nom +potty potty adj +pouch pouch nom +pouched pouch ver +pouches pouch nom +pouching pouch ver +pouf pouf nom +pouffe pouffe nom +pouffes pouffe nom +poufs pouf nom +poulterer poulterer nom +poulterers poulterer nom +poultice poultice nom +poulticed poultice ver +poultices poultice nom +poulticing poultice ver +poultries poultry nom +poultry poultry nom +poultryman poultryman nom +poultrymen poultryman nom +pounce pounce nom +pounced pounce ver +pounces pounce nom +pouncing pounce ver +pound pound nom +poundage poundage nom +poundages poundage nom +poundal poundal nom +poundals poundal nom +pounded pound ver +pounder pounder nom +pounders pounder nom +pounding pound ver +poundings pounding nom +pounds pound nom +pour pour nom +poured pour ver +pouring pour ver +pourings pouring nom +pours pour nom +pout pout nom +pouted pout ver +pouter pouter nom +pouters pouter nom +pouting pout ver +pouts pout nom +poverties poverty nom +poverty poverty nom +powder powder nom +powdered powder ver +powderier powdery adj +powderiest powdery adj +powdering powder ver +powders powder nom +powdery powdery adj +power power nom +powerboat powerboat nom +powerboats powerboat nom +powered power ver +powerfulness powerfulness nom +powerfulnesses powerfulness nom +powerhouse powerhouse nom +powerhouses powerhouse nom +powering power ver +powerlessness powerlessness nom +powerlessnesses powerlessness nom +powers power nom +powwow powwow nom +powwowed powwow ver +powwowing powwow ver +powwows powwow nom +pox pox nom +poxes pox nom +poxvirus poxvirus nom +poxviruses poxvirus nom +poyou poyou nom +poyous poyou nom +practicabilities practicability nom +practicability practicability nom +practicableness practicableness nom +practicablenesses practicableness nom +practicalities practicality nom +practicality practicality nom +practice practice nom +practiced practice ver +practices practice nom +practician practician nom +practicians practician nom +practicing practice ver +practicum practicum nom +practicums practicum nom +practise practise nom +practised practise ver +practises practise nom +practising practise ver +practitioner practitioner nom +practitioners practitioner nom +praenomen praenomen nom +praenomens praenomen nom +praesidium praesidium nom +praesidiums praesidium nom +praetor praetor nom +praetorian praetorian nom +praetorians praetorian nom +praetorium praetorium nom +praetoriums praetorium nom +praetors praetor nom +praetorship praetorship nom +praetorships praetorship nom +pragmatic pragmatic nom +pragmatics pragmatic nom +pragmatism pragmatism nom +pragmatisms pragmatism nom +pragmatist pragmatist nom +pragmatists pragmatist nom +prairie prairie nom +prairies prairie nom +praise praise nom +praised praise ver +praises praise nom +praiseworthier praiseworthy adj +praiseworthiest praiseworthy adj +praiseworthiness praiseworthiness nom +praiseworthinesses praiseworthiness nom +praiseworthy praiseworthy adj +praising praise ver +praline praline nom +pralines praline nom +pram pram nom +prams pram nom +prance prance nom +pranced prance ver +prancer prancer nom +prancers prancer nom +prances prance nom +prancing prance ver +prank prank nom +pranked prank ver +pranking prank ver +prankishness prankishness nom +prankishnesses prankishness nom +pranks prank nom +prankster prankster nom +pranksters prankster nom +praseodymium praseodymium nom +praseodymiums praseodymium nom +prat prat nom +prate prate nom +prated prate ver +prater prater nom +praters prater nom +prates prate nom +pratfall pratfall nom +pratfalls pratfall nom +pratincole pratincole nom +pratincoles pratincole nom +prating prate ver +prats prat nom +prattle prattle nom +prattled prattle ver +prattler prattler nom +prattlers prattler nom +prattles prattle nom +prattling prattle ver +prawn prawn nom +prawned prawn ver +prawning prawn ver +prawns prawn nom +pray pray ver +prayed pray ver +prayer prayer nom +prayers prayer nom +praying pray ver +prays pray ver +preach preach ver +preached preach ver +preacher preacher nom +preachers preacher nom +preaches preach ver +preachier preachy adj +preachiest preachy adj +preachified preachify ver +preachifies preachify ver +preachify preachify ver +preachifying preachify ver +preaching preach ver +preachings preaching nom +preachment preachment nom +preachments preachment nom +preachy preachy adj +preadolescence preadolescence nom +preadolescences preadolescence nom +preamble preamble nom +preambled preamble ver +preambles preamble nom +preambling preamble ver +prearrange prearrange ver +prearranged prearrange ver +prearrangement prearrangement nom +prearrangements prearrangement nom +prearranges prearrange ver +prearranging prearrange ver +prebend prebend nom +prebendaries prebendary nom +prebendary prebendary nom +prebends prebend nom +precancel precancel nom +precanceled precancel ver +precanceling precancel ver +precancels precancel nom +precariousness precariousness nom +precariousnesses precariousness nom +precaution precaution nom +precautioned precaution ver +precautioning precaution ver +precautions precaution nom +precava precava nom +precavae precava nom +precede precede ver +preceded precede ver +precedence precedence nom +precedences precedence nom +precedencies precedency nom +precedency precedency nom +precedent precedent nom +precedents precedent nom +precedes precede ver +preceding precede ver +precentor precentor nom +precentors precentor nom +precentorship precentorship nom +precentorships precentorship nom +precept precept nom +preceptor preceptor nom +preceptors preceptor nom +preceptorship preceptorship nom +preceptorships preceptorship nom +precepts precept nom +precess precess ver +precessed precess ver +precesses precess ver +precessing precess ver +precession precession nom +precessions precession nom +precinct precinct nom +precincts precinct nom +preciosities preciosity nom +preciosity preciosity nom +precious precious nom +preciouses precious nom +preciousness preciousness nom +preciousnesses preciousness nom +precipice precipice nom +precipices precipice nom +precipitance precipitance nom +precipitances precipitance nom +precipitancies precipitancy nom +precipitancy precipitancy nom +precipitant precipitant nom +precipitants precipitant nom +precipitate precipitate nom +precipitated precipitate ver +precipitateness precipitateness nom +precipitatenesses precipitateness nom +precipitates precipitate nom +precipitating precipitate ver +precipitation precipitation nom +precipitations precipitation nom +precipitator precipitator nom +precipitators precipitator nom +precipitin precipitin nom +precipitins precipitin nom +precipitousness precipitousness nom +precipitousnesses precipitousness nom +precis precis nom +precise precise adj +precised precis ver +preciseness preciseness nom +precisenesses preciseness nom +preciser precise adj +precises precis ver +precisest precise adj +precising precis ver +precision precision nom +precisions precision nom +preclude preclude ver +precluded preclude ver +precludes preclude ver +precluding preclude ver +preclusion preclusion nom +preclusions preclusion nom +precociousness precociousness nom +precociousnesses precociousness nom +precocities precocity nom +precocity precocity nom +precognition precognition nom +precognitions precognition nom +preconceive preconceive ver +preconceived preconceive ver +preconceives preconceive ver +preconceiving preconceive ver +preconception preconception nom +preconceptions preconception nom +precondition precondition nom +preconditioned precondition ver +preconditioning precondition ver +preconditions precondition nom +precook precook ver +precooked precook ver +precooking precook ver +precooks precook ver +precursor precursor nom +precursors precursor nom +predate predate ver +predated predate ver +predates predate ver +predating predate ver +predation predation nom +predations predation nom +predator predator nom +predators predator nom +predecease predecease nom +predeceased predecease ver +predeceases predecease nom +predeceasing predecease ver +predecessor predecessor nom +predecessors predecessor nom +predesignate predesignate ver +predesignated predesignate ver +predesignates predesignate ver +predesignating predesignate ver +predestinate predestinate ver +predestinated predestinate ver +predestinates predestinate ver +predestinating predestinate ver +predestination predestination nom +predestinations predestination nom +predestine predestine ver +predestined predestine ver +predestines predestine ver +predestining predestine ver +predetermination predetermination nom +predeterminations predetermination nom +predetermine predetermine ver +predetermined predetermine ver +predeterminer predeterminer nom +predeterminers predeterminer nom +predetermines predetermine ver +predetermining predetermine ver +predicable predicable nom +predicables predicable nom +predicament predicament nom +predicaments predicament nom +predicate predicate nom +predicated predicate ver +predicates predicate nom +predicating predicate ver +predication predication nom +predications predication nom +predict predict ver +predictabilities predictability nom +predictability predictability nom +predicted predict ver +predicting predict ver +prediction prediction nom +predictions prediction nom +predictor predictor nom +predictors predictor nom +predicts predict ver +predigest predigest ver +predigested predigest ver +predigesting predigest ver +predigests predigest ver +predilection predilection nom +predilections predilection nom +predispose predispose ver +predisposed predispose ver +predisposes predispose ver +predisposing predispose ver +predisposition predisposition nom +predispositions predisposition nom +prednisone prednisone nom +prednisones prednisone nom +predominance predominance nom +predominances predominance nom +predominate predominate ver +predominated predominate ver +predominates predominate ver +predominating predominate ver +predomination predomination nom +predominations predomination nom +preeclampsia preeclampsia nom +preeclampsias preeclampsia nom +preemie preemie nom +preemies preemie nom +preeminence preeminence nom +preeminences preeminence nom +preempt preempt nom +preempted preempt ver +preempting preempt ver +preemption preemption nom +preemptions preemption nom +preempts preempt nom +preen preen nom +preened preen ver +preening preen ver +preens preen nom +preexist preexist ver +preexisted preexist ver +preexistence preexistence nom +preexistences preexistence nom +preexisting preexist ver +preexists preexist ver +prefab prefab nom +prefabbed prefab ver +prefabbing prefab ver +prefabricate prefabricate ver +prefabricated prefabricate ver +prefabricates prefabricate ver +prefabricating prefabricate ver +prefabrication prefabrication nom +prefabrications prefabrication nom +prefabs prefab nom +preface preface nom +prefaced preface ver +prefaces preface nom +prefacing preface ver +prefect prefect nom +prefects prefect nom +prefecture prefecture nom +prefectures prefecture nom +prefer prefer ver +preference preference nom +preferences preference nom +preferment preferment nom +preferments preferment nom +preferred prefer ver +preferring prefer ver +prefers prefer ver +prefiguration prefiguration nom +prefigurations prefiguration nom +prefigure prefigure ver +prefigured prefigure ver +prefigures prefigure ver +prefiguring prefigure ver +prefix prefix nom +prefixed prefix ver +prefixes prefix nom +prefixing prefix ver +preform preform nom +preformed preform ver +preforming preform ver +preforms preform nom +pregnancies pregnancy nom +pregnancy pregnancy nom +preheat preheat ver +preheated preheat ver +preheating preheat ver +preheats preheat ver +prehend prehend ver +prehended prehend ver +prehending prehend ver +prehends prehend ver +prehension prehension nom +prehensions prehension nom +prehistories prehistory nom +prehistory prehistory nom +prejudge prejudge ver +prejudged prejudge ver +prejudgement prejudgement nom +prejudgements prejudgement nom +prejudges prejudge ver +prejudging prejudge ver +prejudgment prejudgment nom +prejudgments prejudgment nom +prejudice prejudice nom +prejudiced prejudice ver +prejudices prejudice nom +prejudicing prejudice ver +prekindergarten prekindergarten nom +prekindergartens prekindergarten nom +prelacies prelacy nom +prelacy prelacy nom +prelate prelate nom +prelates prelate nom +prelature prelature nom +prelatures prelature nom +prelim prelim nom +preliminaries preliminary nom +preliminary preliminary nom +prelims prelim nom +prelude prelude nom +preluded prelude ver +preludes prelude nom +preluding prelude ver +premature premature nom +prematureness prematureness nom +prematurenesses prematureness nom +prematures premature nom +prematurities prematurity nom +prematurity prematurity nom +premed premed nom +premeditate premeditate ver +premeditated premeditate ver +premeditates premeditate ver +premeditating premeditate ver +premeditation premeditation nom +premeditations premeditation nom +premeds premed nom +premie premie nom +premier premier nom +premiere premiere nom +premiered premier ver +premieres premiere nom +premiering premier ver +premiers premier nom +premiership premiership nom +premierships premiership nom +premies premie nom +premise premise nom +premised premise ver +premises premise nom +premising premise ver +premiss premiss nom +premisses premiss nom +premium premium nom +premiums premium nom +premix premix nom +premixed premix ver +premixes premix nom +premixing premix ver +premolar premolar nom +premolars premolar nom +premonition premonition nom +premonitions premonition nom +prentice prentice nom +prentices prentice nom +preoccupancies preoccupancy nom +preoccupancy preoccupancy nom +preoccupation preoccupation nom +preoccupations preoccupation nom +preoccupied preoccupy ver +preoccupies preoccupy ver +preoccupy preoccupy ver +preoccupying preoccupy ver +preordain preordain ver +preordained preordain ver +preordaining preordain ver +preordains preordain ver +preordination preordination nom +preordinations preordination nom +prep prep nom +prepackage prepackage ver +prepackaged prepackage ver +prepackages prepackage ver +prepackaging prepackage ver +prepaid prepay ver +preparation preparation nom +preparations preparation nom +prepare prepare ver +prepared prepare ver +preparedness preparedness nom +preparednesses preparedness nom +prepares prepare ver +preparing prepare ver +prepay prepay ver +prepaying prepay ver +prepayment prepayment nom +prepayments prepayment nom +prepays prepay ver +preponderance preponderance nom +preponderances preponderance nom +preponderate preponderate ver +preponderated preponderate ver +preponderates preponderate ver +preponderating preponderate ver +preposition preposition nom +prepositions preposition nom +prepossess prepossess ver +prepossessed prepossess ver +prepossesses prepossess ver +prepossessing prepossess ver +prepossession prepossession nom +prepossessions prepossession nom +prepped prep ver +preppie preppie adj +preppier preppie adj +preppies preppie nom +preppiest preppie adj +prepping prep ver +preppy preppy adj +preps prep nom +prepubescence prepubescence nom +prepubescences prepubescence nom +prepubescent prepubescent nom +prepubescents prepubescent nom +prepuce prepuce nom +prepuces prepuce nom +prequel prequel nom +prequels prequel nom +prerecord prerecord ver +prerecorded prerecord ver +prerecording prerecord ver +prerecords prerecord ver +preregister preregister ver +preregistered preregister ver +preregistering preregister ver +preregisters preregister ver +preregistration preregistration nom +preregistrations preregistration nom +prerequisite prerequisite nom +prerequisites prerequisite nom +prerogative prerogative nom +prerogatives prerogative nom +presage presage nom +presaged presage ver +presages presage nom +presaging presage ver +presbyope presbyope nom +presbyopes presbyope nom +presbyopia presbyopia nom +presbyopias presbyopia nom +presbyter presbyter nom +presbyteries presbytery nom +presbyters presbyter nom +presbytery presbytery nom +preschool preschool nom +preschooler preschooler nom +preschoolers preschooler nom +preschools preschool nom +prescience prescience nom +presciences prescience nom +prescribe prescribe ver +prescribed prescribe ver +prescribes prescribe ver +prescribing prescribe ver +prescript prescript nom +prescription prescription nom +prescriptions prescription nom +prescripts prescript nom +preseason preseason nom +preseasons preseason nom +presence presence nom +presences presence nom +present present nom +presentation presentation nom +presentations presentation nom +presented present ver +presenter presenter nom +presenters presenter nom +presentiment presentiment nom +presentiments presentiment nom +presenting present ver +presentment presentment nom +presentments presentment nom +presentness presentness nom +presentnesses presentness nom +presents present nom +preservation preservation nom +preservationist preservationist nom +preservationists preservationist nom +preservations preservation nom +preservative preservative nom +preservatives preservative nom +preserve preserve nom +preserved preserve ver +preserver preserver nom +preservers preserver nom +preserves preserve nom +preserving preserve ver +preset preset ver +presets preset ver +presetting preset ver +preshrank preshrink ver +preshrink preshrink ver +preshrinking preshrink ver +preshrinks preshrink ver +preshrunk preshrink ver +preside preside ver +presided preside ver +presidencies presidency nom +presidency presidency nom +president president nom +presidents president nom +presidentship presidentship nom +presidentships presidentship nom +presides preside ver +presidia presidium nom +presiding preside ver +presidium presidium nom +presort presort ver +presorted presort ver +presorting presort ver +presorts presort ver +press press nom +pressed press ver +presser presser nom +pressers presser nom +presses press nom +pressing press ver +pressings pressing nom +pressman pressman nom +pressmark pressmark nom +pressmarks pressmark nom +pressmen pressman nom +pressure pressure nom +pressured pressure ver +pressures pressure nom +pressuring pressure ver +pressurization pressurization nom +pressurizations pressurization nom +pressurize pressurize ver +pressurized pressurize ver +pressurizer pressurizer nom +pressurizers pressurizer nom +pressurizes pressurize ver +pressurizing pressurize ver +prestidigitation prestidigitation nom +prestidigitations prestidigitation nom +prestidigitator prestidigitator nom +prestidigitators prestidigitator nom +prestige prestige nom +prestiges prestige nom +prestigiousness prestigiousness nom +prestigiousnesses prestigiousness nom +presto presto nom +prestos presto nom +presumably presumably sw +presume presume ver +presumed presume ver +presumes presume ver +presuming presume ver +presumption presumption nom +presumptions presumption nom +presumptuousness presumptuousness nom +presumptuousnesses presumptuousness nom +presuppose presuppose ver +presupposed presuppose ver +presupposes presuppose ver +presupposing presuppose ver +presupposition presupposition nom +presuppositions presupposition nom +preteen preteen nom +preteens preteen nom +pretence pretence nom +pretences pretence nom +pretend pretend ver +pretended pretend ver +pretender pretender nom +pretenders pretender nom +pretending pretend ver +pretends pretend ver +pretense pretense nom +pretenses pretense nom +pretension pretension nom +pretensioned pretension ver +pretensioning pretension ver +pretensions pretension nom +pretentiousness pretentiousness nom +pretentiousnesses pretentiousness nom +preterist preterist nom +preterists preterist nom +preterit preterit nom +preterite preterite nom +preterites preterite nom +preterition preterition nom +preteritions preterition nom +preterits preterit nom +pretermission pretermission nom +pretermissions pretermission nom +pretest pretest ver +pretested pretest ver +pretesting pretest ver +pretests pretest ver +pretext pretext nom +pretexts pretext nom +pretor pretor nom +pretors pretor nom +pretrial pretrial nom +pretrials pretrial nom +prettied pretty ver +prettier pretty adj +pretties pretty nom +prettiest pretty adj +prettified prettify ver +prettifies prettify ver +prettify prettify ver +prettifying prettify ver +prettiness prettiness nom +prettinesses prettiness nom +pretty pretty adj +prettying pretty ver +pretzel pretzel nom +pretzels pretzel nom +prevail prevail ver +prevailed prevail ver +prevailing prevail ver +prevails prevail ver +prevalence prevalence nom +prevalences prevalence nom +prevaricate prevaricate ver +prevaricated prevaricate ver +prevaricates prevaricate ver +prevaricating prevaricate ver +prevarication prevarication nom +prevarications prevarication nom +prevaricator prevaricator nom +prevaricators prevaricator nom +prevent prevent ver +preventative preventative nom +preventatives preventative nom +prevented prevent ver +preventing prevent ver +prevention prevention nom +preventions prevention nom +preventive preventive nom +preventives preventive nom +prevents prevent ver +preview preview nom +previewed preview ver +previewing preview ver +previews preview nom +prevision prevision nom +previsions prevision nom +prevue prevue nom +prevued prevue ver +prevues prevue nom +prevuing prevue ver +prey prey nom +preyed prey ver +preying prey ver +preys prey nom +price price nom +priced price ver +pricelessness pricelessness nom +pricelessnesses pricelessness nom +prices price nom +pricey pricey adj +pricier pricey adj +priciest pricey adj +pricing price ver +prick prick nom +pricked prick ver +pricker pricker nom +prickers pricker nom +pricket pricket nom +prickets pricket nom +pricking prick ver +prickings pricking nom +prickle prickle nom +prickled prickle ver +prickles prickle nom +pricklier prickly adj +prickliest prickly adj +prickliness prickliness nom +pricklinesses prickliness nom +prickling prickle ver +prickly prickly adj +pricks prick nom +pricy pricy adj +pride pride nom +prided pride ver +pridefulness pridefulness nom +pridefulnesses pridefulness nom +prides pride nom +priding pride ver +pried pry ver +prier prier nom +priers prier nom +pries pry nom +priest priest nom +priestcraft priestcraft nom +priestcrafts priestcraft nom +priested priest ver +priestess priestess nom +priestesses priestess nom +priesthood priesthood nom +priesthoods priesthood nom +priesting priest ver +priestlier priestly adj +priestliest priestly adj +priestliness priestliness nom +priestlinesses priestliness nom +priestly priestly adj +priests priest nom +prig prig nom +prigged prig ver +prigging prig ver +priggishness priggishness nom +priggishnesses priggishness nom +prigs prig nom +prim prim adj +primacies primacy nom +primacy primacy nom +primaries primary nom +primary primary nom +primate primate nom +primates primate nom +primateship primateship nom +primateships primateship nom +primatologies primatology nom +primatology primatology nom +prime prime nom +primed prime ver +primer primer nom +primers primer nom +primes prime nom +primigravida primigravida nom +primigravidas primigravida nom +priming prime ver +primings priming nom +primitive primitive nom +primitiveness primitiveness nom +primitivenesses primitiveness nom +primitives primitive nom +primitivism primitivism nom +primitivisms primitivism nom +primmed prim ver +primmer prim adj +primmest prim adj +primming prim ver +primness primness nom +primnesses primness nom +primogenitor primogenitor nom +primogenitors primogenitor nom +primogeniture primogeniture nom +primogenitures primogeniture nom +primordium primordium nom +primordiums primordium nom +primp primp ver +primped primp ver +primping primp ver +primps primp ver +primrose primrose nom +primroses primrose nom +prims prim ver +primula primula nom +primulas primula nom +primus primus nom +primuses primus nom +prince prince nom +princedom princedom nom +princedoms princedom nom +princelier princely adj +princeliest princely adj +princeliness princeliness nom +princelinesses princeliness nom +princely princely adj +princes prince nom +princess princess nom +princesses princess nom +principal principal nom +principalities principality nom +principality principality nom +principals principal nom +principalship principalship nom +principalships principalship nom +principle principle nom +principles principle nom +prink prink ver +prinked prink ver +prinking prink ver +prinks prink ver +print print nom +printed print ver +printer printer nom +printers printer nom +printing print ver +printings printing nom +printmaker printmaker nom +printmakers printmaker nom +printmaking printmaking nom +printmakings printmaking nom +printout printout nom +printouts printout nom +prints print nom +prior prior nom +prioress prioress nom +prioresses prioress nom +priories priory nom +priorities priority nom +prioritize prioritize ver +prioritized prioritize ver +prioritizes prioritize ver +prioritizing prioritize ver +priority priority nom +priors prior nom +priorship priorship nom +priorships priorship nom +priory priory nom +prise prise nom +prised prise ver +prises prise nom +prising prise ver +prism prism nom +prismatoid prismatoid nom +prismatoids prismatoid nom +prismoid prismoid nom +prismoids prismoid nom +prisms prism nom +prison prison nom +prisoner prisoner nom +prisoners prisoner nom +prisons prison nom +prissier prissy adj +prissiest prissy adj +prissiness prissiness nom +prissinesses prissiness nom +prissy prissy adj +privacies privacy nom +privacy privacy nom +private private adj +privateer privateer nom +privateered privateer ver +privateering privateer ver +privateers privateer nom +privateersman privateersman nom +privateersmen privateersman nom +privateness privateness nom +privatenesses privateness nom +privater private adj +privates private nom +privatest private adj +privation privation nom +privations privation nom +privatization privatization nom +privatizations privatization nom +privatize privatize ver +privatized privatize ver +privatizes privatize ver +privatizing privatize ver +privet privet nom +privets privet nom +privier privy adj +privies privy nom +priviest privy adj +privilege privilege nom +privileged privilege ver +privileges privilege nom +privileging privilege ver +privy privy adj +prize prize nom +prized prize ver +prizefight prizefight nom +prizefighter prizefighter nom +prizefighters prizefighter nom +prizefighting prizefighting nom +prizefightings prizefighting nom +prizefights prizefight nom +prizes prize nom +prizewinner prizewinner nom +prizewinners prizewinner nom +prizing prize ver +pro pro nom +probabilism probabilism nom +probabilisms probabilism nom +probabilities probability nom +probability probability nom +probable probable nom +probables probable nom +probably probably sw +probate probate nom +probated probate ver +probates probate nom +probating probate ver +probation probation nom +probationer probationer nom +probationers probationer nom +probations probation nom +probe probe nom +probed probe ver +probes probe nom +probing probe ver +probities probity nom +probity probity nom +problem problem nom +problems problem nom +proboscidean proboscidean nom +proboscideans proboscidean nom +proboscidian proboscidian nom +proboscidians proboscidian nom +proboscis proboscis nom +proboscises proboscis nom +procaine procaine nom +procaines procaine nom +procaryote procaryote nom +procaryotes procaryote nom +procedural procedural nom +procedurals procedural nom +procedure procedure nom +procedures procedure nom +proceed proceed ver +proceeded proceed ver +proceeding proceed ver +proceedings proceeding nom +proceeds proceed ver +process process nom +processed process ver +processes process nom +processing process ver +procession procession nom +processional processional nom +processionals processional nom +processioned procession ver +processioning procession ver +processions procession nom +processor processor nom +processors processor nom +proclaim proclaim ver +proclaimed proclaim ver +proclaiming proclaim ver +proclaims proclaim ver +proclamation proclamation nom +proclamations proclamation nom +proclivities proclivity nom +proclivity proclivity nom +proconsul proconsul nom +proconsulate proconsulate nom +proconsulates proconsulate nom +proconsuls proconsul nom +proconsulship proconsulship nom +proconsulships proconsulship nom +procrastinate procrastinate ver +procrastinated procrastinate ver +procrastinates procrastinate ver +procrastinating procrastinate ver +procrastination procrastination nom +procrastinations procrastination nom +procrastinator procrastinator nom +procrastinators procrastinator nom +procreate procreate ver +procreated procreate ver +procreates procreate ver +procreating procreate ver +procreation procreation nom +procreations procreation nom +proctitis proctitis nom +proctitises proctitis nom +proctologies proctology nom +proctologist proctologist nom +proctologists proctologist nom +proctology proctology nom +proctor proctor nom +proctored proctor ver +proctoring proctor ver +proctors proctor nom +proctorship proctorship nom +proctorships proctorship nom +proctoscope proctoscope nom +proctoscopes proctoscope nom +procural procural nom +procurals procural nom +procurance procurance nom +procurances procurance nom +procurator procurator nom +procurators procurator nom +procure procure ver +procured procure ver +procurement procurement nom +procurements procurement nom +procurer procurer nom +procurers procurer nom +procures procure ver +procuress procuress nom +procuresses procuress nom +procuring procure ver +prod prod nom +prodded prod ver +prodding prod ver +prodigal prodigal nom +prodigalities prodigality nom +prodigality prodigality nom +prodigals prodigal nom +prodigies prodigy nom +prodigy prodigy nom +prodrome prodrome nom +prodromes prodrome nom +prods prod nom +produce produce nom +produced produce ver +producer producer nom +producers producer nom +produces produce nom +producing produce ver +product product nom +production production nom +productions production nom +productiveness productiveness nom +productivenesses productiveness nom +productivities productivity nom +productivity productivity nom +products product nom +prof prof nom +profanation profanation nom +profanations profanation nom +profane profane ver +profaned profane ver +profaneness profaneness nom +profanenesses profaneness nom +profanes profane ver +profaning profane ver +profanities profanity nom +profanity profanity nom +profess profess ver +professed profess ver +professes profess ver +professing profess ver +profession profession nom +professional professional nom +professionalism professionalism nom +professionalisms professionalism nom +professionalize professionalize ver +professionalized professionalize ver +professionalizes professionalize ver +professionalizing professionalize ver +professionals professional nom +professions profession nom +professor professor nom +professors professor nom +professorship professorship nom +professorships professorship nom +proffer proffer nom +proffered proffer ver +proffering proffer ver +proffers proffer nom +proficiencies proficiency nom +proficiency proficiency nom +proficient proficient nom +proficients proficient nom +profile profile nom +profiled profile ver +profiles profile nom +profiling profile ver +profit profit nom +profitabilities profitability nom +profitability profitability nom +profitableness profitableness nom +profitablenesses profitableness nom +profited profit ver +profiteer profiteer nom +profiteered profiteer ver +profiteering profiteer ver +profiteerings profiteering nom +profiteers profiteer nom +profiterole profiterole nom +profiteroles profiterole nom +profiting profit ver +profits profit nom +profligacies profligacy nom +profligacy profligacy nom +profligate profligate nom +profligates profligate nom +profound profound adj +profounder profound adj +profoundest profound adj +profoundness profoundness nom +profoundnesses profoundness nom +profounds profound nom +profs prof nom +profundities profundity nom +profundity profundity nom +profuse profuse adj +profuseness profuseness nom +profusenesses profuseness nom +profuser profuse adj +profusest profuse adj +profusion profusion nom +profusions profusion nom +progenies progeny nom +progenitor progenitor nom +progenitors progenitor nom +progeny progeny nom +progesterone progesterone nom +progesterones progesterone nom +progestin progestin nom +progestins progestin nom +prognoses prognosis nom +prognosis prognosis nom +prognostic prognostic nom +prognosticate prognosticate ver +prognosticated prognosticate ver +prognosticates prognosticate ver +prognosticating prognosticate ver +prognostication prognostication nom +prognostications prognostication nom +prognosticator prognosticator nom +prognosticators prognosticator nom +prognostics prognostic nom +program program nom +programer programer nom +programers programer nom +programmable programmable nom +programmables programmable nom +programme programme nom +programmed program ver +programmer programmer nom +programmers programmer nom +programmes programme nom +programming program ver +programmings programming nom +programs program nom +progress progress nom +progressed progress ver +progresses progress nom +progressing progress ver +progression progression nom +progressions progression nom +progressive progressive nom +progressiveness progressiveness nom +progressivenesses progressiveness nom +progressives progressive nom +progressivism progressivism nom +progressivisms progressivism nom +progressivities progressivity nom +progressivity progressivity nom +prohibit prohibit ver +prohibited prohibit ver +prohibiting prohibit ver +prohibition prohibition nom +prohibitionist prohibitionist nom +prohibitionists prohibitionist nom +prohibitions prohibition nom +prohibits prohibit ver +project project nom +projected project ver +projectile projectile nom +projectiles projectile nom +projecting project ver +projection projection nom +projectionist projectionist nom +projectionists projectionist nom +projections projection nom +projector projector nom +projectors projector nom +projects project nom +prokaryote prokaryote nom +prokaryotes prokaryote nom +prolamine prolamine nom +prolamines prolamine nom +prolapse prolapse nom +prolapsed prolapse ver +prolapses prolapse nom +prolapsing prolapse ver +prolapsus prolapsus nom +prolapsuses prolapsus nom +prole prole nom +prolepses prolepsis nom +prolepsis prolepsis nom +proles prole nom +proletarian proletarian nom +proletarians proletarian nom +proletariat proletariat nom +proletariats proletariat nom +proliferate proliferate ver +proliferated proliferate ver +proliferates proliferate ver +proliferating proliferate ver +proliferation proliferation nom +proliferations proliferation nom +prolificacies prolificacy nom +prolificacy prolificacy nom +proline proline nom +prolines proline nom +prolixities prolixity nom +prolixity prolixity nom +prolog prolog nom +prologed prolog ver +prologing prolog ver +prologize prologize ver +prologized prologize ver +prologizes prologize ver +prologizing prologize ver +prologs prolog nom +prologue prologue nom +prologued prologue ver +prologues prologue nom +prologuing prologue ver +prolong prolong ver +prolongation prolongation nom +prolongations prolongation nom +prolonged prolong ver +prolonging prolong ver +prolongs prolong ver +prolusion prolusion nom +prolusions prolusion nom +prom prom nom +promenade promenade nom +promenaded promenade ver +promenades promenade nom +promenading promenade ver +promethium promethium nom +promethiums promethium nom +prominence prominence nom +prominences prominence nom +promiscuities promiscuity nom +promiscuity promiscuity nom +promiscuousness promiscuousness nom +promiscuousnesses promiscuousness nom +promise promise nom +promised promise ver +promisee promisee nom +promisees promisee nom +promiser promiser nom +promisers promiser nom +promises promise nom +promising promise ver +promisor promisor nom +promisors promisor nom +promo promo nom +promontories promontory nom +promontory promontory nom +promos promo nom +promote promote ver +promoted promote ver +promoter promoter nom +promoters promoter nom +promotes promote ver +promoting promote ver +promotion promotion nom +promotions promotion nom +prompt prompt adj +promptbook promptbook nom +promptbooks promptbook nom +prompted prompt ver +prompter prompt adj +prompters prompter nom +promptest prompt adj +prompting prompt ver +promptings prompting nom +promptitude promptitude nom +promptitudes promptitude nom +promptness promptness nom +promptnesses promptness nom +prompts prompt nom +proms prom nom +promulgate promulgate ver +promulgated promulgate ver +promulgates promulgate ver +promulgating promulgate ver +promulgation promulgation nom +promulgations promulgation nom +promulgator promulgator nom +promulgators promulgator nom +pronate pronate ver +pronated pronate ver +pronates pronate ver +pronating pronate ver +pronation pronation nom +pronations pronation nom +prone prone adj +proneness proneness nom +pronenesses proneness nom +proner prone adj +prones prone nom +pronest prone adj +prong prong nom +prongbuck prongbuck nom +prongbucks prongbuck nom +pronged prong ver +pronghorn pronghorn nom +pronghorns pronghorn nom +pronging prong ver +prongs prong nom +pronk pronk ver +pronked pronk ver +pronking pronk ver +pronks pronk ver +pronominal pronominal nom +pronominals pronominal nom +pronoun pronoun nom +pronounce pronounce ver +pronounced pronounce ver +pronouncement pronouncement nom +pronouncements pronouncement nom +pronounces pronounce ver +pronouncing pronounce ver +pronouns pronoun nom +pronunciamento pronunciamento nom +pronunciamentoes pronunciamento nom +pronunciamentos pronunciamento nom +pronunciation pronunciation nom +pronunciations pronunciation nom +proof proof nom +proofed proof ver +proofing proof ver +proofread proofread ver +proofreader proofreader nom +proofreaders proofreader nom +proofreading proofread ver +proofreads proofread ver +proofs proof nom +prop prop nom +propaganda propaganda nom +propagandas propaganda nom +propagandist propagandist nom +propagandists propagandist nom +propagandize propagandize ver +propagandized propagandize ver +propagandizes propagandize ver +propagandizing propagandize ver +propagate propagate ver +propagated propagate ver +propagates propagate ver +propagating propagate ver +propagation propagation nom +propagations propagation nom +propagator propagator nom +propagators propagator nom +propane propane nom +propanes propane nom +propanol propanol nom +propanols propanol nom +propel propel ver +propellant propellant nom +propellants propellant nom +propelled propel ver +propellent propellent nom +propellents propellent nom +propeller propeller nom +propellers propeller nom +propelling propel ver +propellor propellor nom +propellors propellor nom +propels propel ver +propene propene nom +propenes propene nom +propensities propensity nom +propensity propensity nom +proper proper adj +properer proper adj +properest proper adj +properness properness nom +propernesses properness nom +propers proper nom +properties property nom +property property nom +prophase prophase nom +prophases prophase nom +prophecies prophecy nom +prophecy prophecy nom +prophesied prophesy ver +prophesier prophesier nom +prophesiers prophesier nom +prophesies prophesy ver +prophesy prophesy ver +prophesying prophesy ver +prophet prophet nom +prophetess prophetess nom +prophetesses prophetess nom +prophets prophet nom +prophylactic prophylactic nom +prophylactics prophylactic nom +prophylaxes prophylaxis nom +prophylaxis prophylaxis nom +propinquities propinquity nom +propinquity propinquity nom +propitiate propitiate ver +propitiated propitiate ver +propitiates propitiate ver +propitiating propitiate ver +propitiation propitiation nom +propitiations propitiation nom +propitiatories propitiatory nom +propitiatory propitiatory nom +propitiousness propitiousness nom +propitiousnesses propitiousness nom +propjet propjet nom +propjets propjet nom +propman propman nom +propmen propman nom +proponent proponent nom +proponents proponent nom +proportion proportion nom +proportional proportional nom +proportionalities proportionality nom +proportionality proportionality nom +proportionals proportional nom +proportionate proportionate ver +proportionated proportionate ver +proportionateness proportionateness nom +proportionatenesses proportionateness nom +proportionates proportionate ver +proportionating proportionate ver +proportioned proportion ver +proportioning proportion ver +proportions proportion nom +proposal proposal nom +proposals proposal nom +propose propose ver +proposed propose ver +proposer proposer nom +proposers proposer nom +proposes propose ver +proposing propose ver +propositi propositus nom +proposition proposition nom +propositioned proposition ver +propositioning proposition ver +propositions proposition nom +propositus propositus nom +propound propound ver +propounded propound ver +propounding propound ver +propounds propound ver +propoxyphene propoxyphene nom +propoxyphenes propoxyphene nom +propped prop ver +propping prop ver +propranolol propranolol nom +propranolols propranolol nom +proprietaries proprietary nom +proprietary proprietary nom +proprieties propriety nom +proprietor proprietor nom +proprietors proprietor nom +proprietorship proprietorship nom +proprietorships proprietorship nom +proprietress proprietress nom +proprietresses proprietress nom +propriety propriety nom +proprioception proprioception nom +proprioceptions proprioception nom +props prop nom +propulsion propulsion nom +propulsions propulsion nom +propyl propyl nom +propylene propylene nom +propylenes propylene nom +propyls propyl nom +prorate prorate ver +prorated prorate ver +prorates prorate ver +prorating prorate ver +proration proration nom +prorations proration nom +prorogation prorogation nom +prorogations prorogation nom +prorogue prorogue ver +prorogued prorogue ver +prorogues prorogue ver +proroguing prorogue ver +pros pro nom +prosaicness prosaicness nom +prosaicnesses prosaicness nom +proscenium proscenium nom +prosceniums proscenium nom +prosciutti prosciutto nom +prosciutto prosciutto nom +proscribe proscribe ver +proscribed proscribe ver +proscribes proscribe ver +proscribing proscribe ver +proscription proscription nom +proscriptions proscription nom +prose prose nom +prosecute prosecute ver +prosecuted prosecute ver +prosecutes prosecute ver +prosecuting prosecute ver +prosecution prosecution nom +prosecutions prosecution nom +prosecutor prosecutor nom +prosecutors prosecutor nom +prosed prose ver +proselyte proselyte nom +proselyted proselyte ver +proselytes proselyte nom +proselyting proselyte ver +proselytism proselytism nom +proselytisms proselytism nom +proselytize proselytize ver +proselytized proselytize ver +proselytizer proselytizer nom +proselytizers proselytizer nom +proselytizes proselytize ver +proselytizing proselytize ver +prosencephalon prosencephalon nom +prosencephalons prosencephalon nom +proses prose nom +prosier prosy adj +prosiest prosy adj +prosimian prosimian nom +prosimians prosimian nom +prosiness prosiness nom +prosinesses prosiness nom +prosing prose ver +prosodies prosody nom +prosody prosody nom +prosopopoeia prosopopoeia nom +prosopopoeias prosopopoeia nom +prospect prospect nom +prospected prospect ver +prospecting prospect ver +prospector prospector nom +prospectors prospector nom +prospects prospect nom +prospectus prospectus nom +prospectuses prospectus nom +prosper prosper ver +prospered prosper ver +prospering prosper ver +prosperities prosperity nom +prosperity prosperity nom +prospers prosper ver +prostaglandin prostaglandin nom +prostaglandins prostaglandin nom +prostate prostate nom +prostatectomies prostatectomy nom +prostatectomy prostatectomy nom +prostates prostate nom +prostatitis prostatitis nom +prostatitises prostatitis nom +prostheses prosthesis nom +prosthesis prosthesis nom +prostitute prostitute nom +prostituted prostitute ver +prostitutes prostitute nom +prostituting prostitute ver +prostitution prostitution nom +prostitutions prostitution nom +prostrate prostrate ver +prostrated prostrate ver +prostrates prostrate ver +prostrating prostrate ver +prostration prostration nom +prostrations prostration nom +prosy prosy adj +protactinium protactinium nom +protactiniums protactinium nom +protagonist protagonist nom +protagonists protagonist nom +protamine protamine nom +protamines protamine nom +protanopia protanopia nom +protanopias protanopia nom +protea protea nom +proteas protea nom +protease protease nom +proteases protease nom +protect protect ver +protected protect ver +protecting protect ver +protection protection nom +protectionism protectionism nom +protectionisms protectionism nom +protectionist protectionist nom +protectionists protectionist nom +protections protection nom +protectiveness protectiveness nom +protectivenesses protectiveness nom +protector protector nom +protectorate protectorate nom +protectorates protectorate nom +protectors protector nom +protectorship protectorship nom +protectorships protectorship nom +protects protect ver +protege protege nom +protegee protegee nom +protegees protegee nom +proteges protege nom +protein protein nom +proteinase proteinase nom +proteinases proteinase nom +proteins protein nom +proteinuria proteinuria nom +proteinurias proteinuria nom +proteolyses proteolysis nom +proteolysis proteolysis nom +protest protest nom +protestation protestation nom +protestations protestation nom +protested protest ver +protester protester nom +protesters protester nom +protesting protest ver +protestor protestor nom +protestors protestor nom +protests protest nom +prothorax prothorax nom +prothoraxes prothorax nom +prothrombin prothrombin nom +prothrombins prothrombin nom +protist protist nom +protistan protistan nom +protistans protistan nom +protists protist nom +protoactinium protoactinium nom +protoactiniums protoactinium nom +protocol protocol nom +protocoled protocol ver +protocoling protocol ver +protocols protocol nom +protohistories protohistory nom +protohistory protohistory nom +proton proton nom +protons proton nom +protoplasm protoplasm nom +protoplasms protoplasm nom +protoplast protoplast nom +protoplasts protoplast nom +prototype prototype nom +prototyped prototype ver +prototypes prototype nom +prototyping prototype ver +protozoa protozoon nom +protozoan protozoan nom +protozoans protozoan nom +protozoologies protozoology nom +protozoologist protozoologist nom +protozoologists protozoologist nom +protozoology protozoology nom +protozoon protozoon nom +protract protract ver +protracted protract ver +protracting protract ver +protraction protraction nom +protractions protraction nom +protractor protractor nom +protractors protractor nom +protracts protract ver +protrude protrude ver +protruded protrude ver +protrudes protrude ver +protruding protrude ver +protrusion protrusion nom +protrusions protrusion nom +protuberance protuberance nom +protuberances protuberance nom +proud proud adj +prouder proud adj +proudest proud adj +provabilities provability nom +provability provability nom +prove prove ver +proved prove ver +provenance provenance nom +provenances provenance nom +provender provender nom +provenders provender nom +provenience provenience nom +proveniences provenience nom +proverb proverb nom +proverbed proverb ver +proverbing proverb ver +proverbs proverb nom +proves prove ver +provide provide ver +provided provide ver +providence providence nom +providences providence nom +provider provider nom +providers provider nom +provides provides sw +providing provide ver +province province nom +provinces province nom +provincial provincial nom +provincialism provincialism nom +provincialisms provincialism nom +provincials provincial nom +proving prove ver +provision provision nom +provisional provisional nom +provisionals provisional nom +provisioned provision ver +provisioner provisioner nom +provisioners provisioner nom +provisioning provision ver +provisions provision nom +proviso proviso nom +provisos proviso nom +provocation provocation nom +provocations provocation nom +provocative provocative nom +provocativeness provocativeness nom +provocativenesses provocativeness nom +provocatives provocative nom +provoke provoke ver +provoked provoke ver +provoker provoker nom +provokers provoker nom +provokes provoke ver +provoking provoke ver +provolone provolone nom +provolones provolone nom +provost provost nom +provosts provost nom +prow prow adj +prower prow adj +prowess prowess nom +prowesses prowess nom +prowest prow adj +prowl prowl nom +prowled prowl ver +prowler prowler nom +prowlers prowler nom +prowling prowl ver +prowls prowl nom +prows prow nom +proxies proxy nom +proximities proximity nom +proximity proximity nom +proxy proxy nom +prude prude nom +prudence prudence nom +prudences prudence nom +pruderies prudery nom +prudery prudery nom +prudes prude nom +prudishness prudishness nom +prudishnesses prudishness nom +prune prune nom +pruned prune ver +pruner pruner nom +pruners pruner nom +prunes prune nom +pruning prune ver +prunings pruning nom +prurience prurience nom +pruriences prurience nom +pruriencies pruriency nom +pruriency pruriency nom +pruritus pruritus nom +prurituses pruritus nom +pry pry nom +pryer pryer nom +pryers pryer nom +prying pry ver +pryings prying nom +psalm psalm nom +psalmed psalm ver +psalming psalm ver +psalmist psalmist nom +psalmists psalmist nom +psalmodies psalmody nom +psalmody psalmody nom +psalms psalm nom +psalteria psalterium nom +psalteries psaltery nom +psalterium psalterium nom +psaltery psaltery nom +psephologies psephology nom +psephologist psephologist nom +psephologists psephologist nom +psephology psephology nom +pseud pseud nom +pseudo pseudo nom +pseudocarp pseudocarp nom +pseudomonad pseudomonad nom +pseudomonads pseudomonad nom +pseudonym pseudonym nom +pseudonyms pseudonym nom +pseudopod pseudopod nom +pseudopodia pseudopodium nom +pseudopodium pseudopodium nom +pseudopods pseudopod nom +pseudos pseudo nom +pseudoscience pseudoscience nom +pseudosciences pseudoscience nom +pseudoscorpion pseudoscorpion nom +pseudoscorpions pseudoscorpion nom +pseuds pseud nom +pshaw pshaw nom +pshawed pshaw ver +pshawing pshaw ver +pshaws pshaw nom +psi psi nom +psilocin psilocin nom +psilocins psilocin nom +psilocybin psilocybin nom +psilocybins psilocybin nom +psilomelane psilomelane nom +psilomelanes psilomelane nom +psilophyte psilophyte nom +psilophytes psilophyte nom +psis psi nom +psittacoses psittacosis nom +psittacosis psittacosis nom +psocid psocid nom +psocids psocid nom +psoriases psoriasis nom +psoriasis psoriasis nom +psych psych ver +psyche psyche nom +psyched psych ver +psychedelia psychedelia nom +psychedelias psychedelia nom +psychedelic psychedelic nom +psychedelics psychedelic nom +psyches psyche nom +psychiatries psychiatry nom +psychiatrist psychiatrist nom +psychiatrists psychiatrist nom +psychiatry psychiatry nom +psychic psychic nom +psychics psychic nom +psyching psych ver +psycho psycho nom +psychoanalyse psychoanalyse ver +psychoanalysed psychoanalyse ver +psychoanalyses psychoanalyse ver +psychoanalysing psychoanalyse ver +psychoanalysis psychoanalysis nom +psychoanalyst psychoanalyst nom +psychoanalysts psychoanalyst nom +psychoanalyze psychoanalyze ver +psychoanalyzed psychoanalyze ver +psychoanalyzes psychoanalyze ver +psychoanalyzing psychoanalyze ver +psychobabble psychobabble nom +psychobabbles psychobabble nom +psychodrama psychodrama nom +psychodramas psychodrama nom +psychokineses psychokinesis nom +psychokinesis psychokinesis nom +psychologies psychology nom +psychologist psychologist nom +psychologists psychologist nom +psychology psychology nom +psychometries psychometry nom +psychometry psychometry nom +psychoneuroses psychoneurosis nom +psychoneurosis psychoneurosis nom +psychoneurotic psychoneurotic nom +psychoneurotics psychoneurotic nom +psychopath psychopath nom +psychopathies psychopathy nom +psychopathologies psychopathology nom +psychopathology psychopathology nom +psychopaths psychopath nom +psychopathy psychopathy nom +psychopharmacologies psychopharmacology nom +psychopharmacology psychopharmacology nom +psychophysiologies psychophysiology nom +psychophysiology psychophysiology nom +psychopomp psychopomp nom +psychopomps psychopomp nom +psychos psycho nom +psychoses psychosis nom +psychosexualities psychosexuality nom +psychosexuality psychosexuality nom +psychosis psychosis nom +psychotherapies psychotherapy nom +psychotherapist psychotherapist nom +psychotherapists psychotherapist nom +psychotherapy psychotherapy nom +psychotic psychotic nom +psychotics psychotic nom +psychotropic psychotropic nom +psychotropics psychotropic nom +psychrometer psychrometer nom +psychrometers psychrometer nom +psychs psych ver +psylla psylla nom +psyllas psylla nom +psyllid psyllid nom +psyllids psyllid nom +psyllium psyllium nom +psylliums psyllium nom +ptarmigan ptarmigan nom +pteridophyte pteridophyte nom +pteridophytes pteridophyte nom +pteridosperm pteridosperm nom +pteridosperms pteridosperm nom +pterodactyl pterodactyl nom +pterodactyls pterodactyl nom +pterosaur pterosaur nom +pterosaurs pterosaur nom +pterygium pterygium nom +pterygiums pterygium nom +ptomain ptomain nom +ptomaine ptomaine nom +ptomaines ptomaine nom +ptomains ptomain nom +ptoses ptosis nom +ptosis ptosis nom +ptyalin ptyalin nom +ptyalins ptyalin nom +ptyalism ptyalism nom +ptyalisms ptyalism nom +ptyalize ptyalize ver +ptyalized ptyalize ver +ptyalizes ptyalize ver +ptyalizing ptyalize ver +pub pub nom +puberties puberty nom +puberty puberty nom +pubes pubes nom +pubescence pubescence nom +pubescences pubescence nom +pubis pubis nom +public public nom +publican publican nom +publicans publican nom +publication publication nom +publications publication nom +publicise publicise ver +publicised publicise ver +publicises publicise ver +publicising publicise ver +publicist publicist nom +publicists publicist nom +publicities publicity nom +publicity publicity nom +publicize publicize ver +publicized publicize ver +publicizes publicize ver +publicizing publicize ver +publics public nom +publish publish ver +published publish ver +publisher publisher nom +publishers publisher nom +publishes publish ver +publishing publish ver +publishings publishing nom +pubs pub nom +puccoon puccoon nom +puccoons puccoon nom +puce puce nom +puces puce nom +puck puck nom +pucker pucker nom +puckered pucker ver +puckering pucker ver +puckers pucker nom +puckishness puckishness nom +puckishnesses puckishness nom +pucks puck nom +pud pud nom +pudding pudding nom +puddings pudding nom +puddle puddle nom +puddled puddle ver +puddler puddler nom +puddlers puddler nom +puddles puddle nom +puddling puddle ver +puddlings puddling nom +pudenda pudendum nom +pudendum pudendum nom +pudgier pudgy adj +pudgiest pudgy adj +pudginess pudginess nom +pudginesses pudginess nom +pudgy pudgy adj +puds pud nom +pueblo pueblo nom +pueblos pueblo nom +puerilities puerility nom +puerility puerility nom +puff puff nom +puffball puffball nom +puffballs puffball nom +puffbird puffbird nom +puffbirds puffbird nom +puffed puff ver +puffer puffer nom +puffers puffer nom +puffier puffy adj +puffiest puffy adj +puffin puffin nom +puffiness puffiness nom +puffinesses puffiness nom +puffing puff ver +puffings puffing nom +puffins puffin nom +puffs puff nom +puffy puffy adj +pug pug nom +pugged pug ver +pugging pug ver +pugilism pugilism nom +pugilisms pugilism nom +pugilist pugilist nom +pugilists pugilist nom +pugnaciousness pugnaciousness nom +pugnaciousnesses pugnaciousness nom +pugnacities pugnacity nom +pugnacity pugnacity nom +pugs pug nom +puissance puissance nom +puissances puissance nom +puke puke nom +puked puke ver +pukes puke nom +puking puke ver +pul pul nom +pula pula nom +pulas pula nom +pulchritude pulchritude nom +pulchritudes pulchritude nom +pule pule ver +puled pule ver +pules pule ver +puling pule ver +pull pull nom +pullback pullback nom +pullbacks pullback nom +pulled pull ver +puller puller nom +pullers puller nom +pullet pullet nom +pullets pullet nom +pulley pulley nom +pulleys pulley nom +pulling pull ver +pullout pullout nom +pullouts pullout nom +pullover pullover nom +pullovers pullover nom +pulls pull nom +pullulate pullulate ver +pullulated pullulate ver +pullulates pullulate ver +pullulating pullulate ver +pullulation pullulation nom +pullulations pullulation nom +pullup pullup nom +pullups pullup nom +pulp pulp nom +pulped pulp ver +pulpier pulpy adj +pulpiest pulpy adj +pulpiness pulpiness nom +pulpinesses pulpiness nom +pulping pulp ver +pulpit pulpit nom +pulpits pulpit nom +pulps pulp nom +pulpwood pulpwood nom +pulpwoods pulpwood nom +pulpy pulpy adj +pulque pulque nom +pulques pulque nom +puls pul nom +pulsar pulsar nom +pulsars pulsar nom +pulsate pulsate ver +pulsated pulsate ver +pulsates pulsate ver +pulsating pulsate ver +pulsation pulsation nom +pulsations pulsation nom +pulse pulse nom +pulsed pulse ver +pulses pulse nom +pulsing pulse ver +pulverisation pulverisation nom +pulverisations pulverisation nom +pulverization pulverization nom +pulverizations pulverization nom +pulverize pulverize ver +pulverized pulverize ver +pulverizes pulverize ver +pulverizing pulverize ver +puma puma nom +pumas puma nom +pumice pumice nom +pumiced pumice ver +pumices pumice nom +pumicing pumice ver +pummel pummel ver +pummeled pummel ver +pummeling pummel ver +pummelo pummelo nom +pummelos pummelo nom +pummels pummel ver +pump pump nom +pumped pump ver +pumper pumper nom +pumpernickel pumpernickel nom +pumpernickels pumpernickel nom +pumpers pumper nom +pumping pump ver +pumpkin pumpkin nom +pumpkins pumpkin nom +pumpkinseed pumpkinseed nom +pumpkinseeds pumpkinseed nom +pumps pump nom +pun pun nom +punch punch nom +punchball punchball nom +punchballs punchball nom +punched punch ver +puncheon puncheon nom +puncheons puncheon nom +puncher puncher nom +punchers puncher nom +punches punch nom +punchier punchy adj +punchiest punchy adj +punching punch ver +punchy punchy adj +punctilio punctilio nom +punctilios punctilio nom +punctiliousness punctiliousness nom +punctiliousnesses punctiliousness nom +punctualities punctuality nom +punctuality punctuality nom +punctuate punctuate ver +punctuated punctuate ver +punctuates punctuate ver +punctuating punctuate ver +punctuation punctuation nom +punctuations punctuation nom +puncture puncture nom +punctured puncture ver +punctures puncture nom +puncturing puncture ver +pundit pundit nom +punditries punditry nom +punditry punditry nom +pundits pundit nom +pung pung nom +pungencies pungency nom +pungency pungency nom +pungs pung nom +punier puny adj +puniest puny adj +puniness puniness nom +puninesses puniness nom +punish punish ver +punished punish ver +punishes punish ver +punishing punish ver +punishment punishment nom +punishments punishment nom +punk punk adj +punkah punkah nom +punkahs punkah nom +punker punk adj +punkest punk adj +punkey punkey nom +punkeys punkey nom +punkie punkie nom +punkies punkie nom +punkin punkin nom +punkins punkin nom +punks punk nom +punky punky nom +punned pun ver +punnet punnet nom +punnets punnet nom +punning pun ver +punnings punning nom +puns pun nom +punster punster nom +punsters punster nom +punt punt nom +punted punt ver +punter punter nom +punters punter nom +punting punt ver +punts punt nom +puny puny adj +pup pup nom +pupa pupa nom +pupae pupa nom +pupate pupate ver +pupated pupate ver +pupates pupate ver +pupating pupate ver +pupil pupil nom +pupils pupil nom +pupped pup ver +puppet puppet nom +puppeteer puppeteer nom +puppeteers puppeteer nom +puppetries puppetry nom +puppetry puppetry nom +puppets puppet nom +puppies puppy nom +pupping pup ver +puppy puppy nom +pups pup nom +purchase purchase nom +purchased purchase ver +purchaser purchaser nom +purchasers purchaser nom +purchases purchase nom +purchasing purchase ver +purdah purdah nom +purdahs purdah nom +pure pure adj +pureblood pureblood nom +purebloods pureblood nom +purebred purebred nom +purebreds purebred nom +puree puree nom +pureed puree ver +pureeing puree ver +purees puree nom +pureness pureness nom +purenesses pureness nom +purer pure adj +purest pure adj +purgation purgation nom +purgations purgation nom +purgative purgative nom +purgatives purgative nom +purgatories purgatory nom +purgatory purgatory nom +purge purge nom +purged purge ver +purger purger nom +purgers purger nom +purges purge nom +purging purge ver +purgings purging nom +purification purification nom +purifications purification nom +purified purify ver +purifier purifier nom +purifiers purifier nom +purifies purify ver +purify purify ver +purifying purify ver +purine purine nom +purines purine nom +purism purism nom +purisms purism nom +purist purist nom +purists purist nom +puritan puritan nom +puritanism puritanism nom +puritanisms puritanism nom +puritans puritan nom +purities purity nom +purity purity nom +purl purl nom +purled purl ver +purlieu purlieu nom +purlieus purlieu nom +purling purl ver +purloin purloin ver +purloined purloin ver +purloining purloin ver +purloins purloin ver +purls purl nom +purple purple adj +purpled purple ver +purpleness purpleness nom +purplenesses purpleness nom +purpler purple adj +purples purple nom +purplest purple adj +purpling purple ver +purport purport nom +purported purport ver +purporting purport ver +purports purport nom +purpose purpose nom +purposed purpose ver +purposefulness purposefulness nom +purposefulnesses purposefulness nom +purposelessness purposelessness nom +purposelessnesses purposelessness nom +purposes purpose nom +purposing purpose ver +purpura purpura nom +purpuras purpura nom +purr purr nom +purred purr ver +purring purr ver +purrs purr nom +purse purse nom +pursed purse ver +purser purser nom +pursers purser nom +purses purse nom +pursier pursy adj +pursiest pursy adj +pursing purse ver +purslane purslane nom +purslanes purslane nom +pursuance pursuance nom +pursuances pursuance nom +pursue pursue ver +pursued pursue ver +pursuer pursuer nom +pursuers pursuer nom +pursues pursue ver +pursuing pursue ver +pursuit pursuit nom +pursuits pursuit nom +pursy pursy adj +purulence purulence nom +purulences purulence nom +purulencies purulency nom +purulency purulency nom +purvey purvey ver +purveyance purveyance nom +purveyances purveyance nom +purveyed purvey ver +purveying purvey ver +purveyor purveyor nom +purveyors purveyor nom +purveys purvey ver +purview purview nom +purviews purview nom +pus pus nom +puses pus nom +push push nom +pushball pushball nom +pushballs pushball nom +pushcart pushcart nom +pushcarts pushcart nom +pushchair pushchair nom +pushchairs pushchair nom +pushed push ver +pusher pusher nom +pushers pusher nom +pushes push nom +pushier pushy adj +pushiest pushy adj +pushiness pushiness nom +pushinesses pushiness nom +pushing push ver +pushover pushover nom +pushovers pushover nom +pushpin pushpin nom +pushpins pushpin nom +pushup pushup nom +pushups pushup nom +pushy pushy adj +pusillanimities pusillanimity nom +pusillanimity pusillanimity nom +puss puss nom +pusses puss nom +pussier pussy adj +pussies pussy nom +pussiest pussy adj +pussley pussley nom +pussleys pussley nom +pussy pussy adj +pussycat pussycat nom +pussycats pussycat nom +pussyfoot pussyfoot nom +pussyfooted pussyfoot ver +pussyfooting pussyfoot ver +pussyfoots pussyfoot nom +pustule pustule nom +pustules pustule nom +put put ver +putdown putdown nom +putdowns putdown nom +putout putout nom +putouts putout nom +putrefaction putrefaction nom +putrefactions putrefaction nom +putrefied putrefy ver +putrefies putrefy ver +putrefy putrefy ver +putrefying putrefy ver +putrescence putrescence nom +putrescences putrescence nom +putrescine putrescine nom +putrescines putrescine nom +putrid putrid adj +putrider putrid adj +putridest putrid adj +putridities putridity nom +putridity putridity nom +putridness putridness nom +putridnesses putridness nom +puts put nom +putsch putsch nom +putsches putsch nom +putt putt nom +putted putt ver +puttee puttee nom +puttees puttee nom +putter putter nom +puttered putter ver +putterer putterer nom +putterers putterer nom +puttering putter ver +putters putter nom +puttied putty ver +putties putty nom +putting put ver +puttings putting nom +putts putt nom +putty putty nom +puttying putty ver +puttyroot puttyroot nom +puttyroots puttyroot nom +puzzle puzzle nom +puzzled puzzle ver +puzzlement puzzlement nom +puzzlements puzzlement nom +puzzler puzzler nom +puzzlers puzzler nom +puzzles puzzle nom +puzzling puzzle ver +pya pya nom +pyas pya nom +pycnidium pycnidium nom +pycnidiums pycnidium nom +pycnogonid pycnogonid nom +pycnogonids pycnogonid nom +pycnoses pycnosis nom +pycnosis pycnosis nom +pyelonephritides pyelonephritis nom +pyelonephritis pyelonephritis nom +pygmies pygmy nom +pygmy pygmy nom +pyjama pyjama nom +pyjamas pyjama nom +pyknoses pyknosis nom +pyknosis pyknosis nom +pylon pylon nom +pylons pylon nom +pylori pylorus nom +pylorus pylorus nom +pyorrhea pyorrhea nom +pyorrheas pyorrhea nom +pyorrhoea pyorrhoea nom +pyorrhoeas pyorrhoea nom +pyracanth pyracanth nom +pyracanths pyracanth nom +pyralid pyralid nom +pyralids pyralid nom +pyramid pyramid nom +pyramided pyramid ver +pyramiding pyramid ver +pyramids pyramid nom +pyre pyre nom +pyres pyre nom +pyrethrum pyrethrum nom +pyrethrums pyrethrum nom +pyrexia pyrexia nom +pyrexias pyrexia nom +pyridine pyridine nom +pyridines pyridine nom +pyridoxal pyridoxal nom +pyridoxals pyridoxal nom +pyridoxamine pyridoxamine nom +pyridoxamines pyridoxamine nom +pyridoxine pyridoxine nom +pyridoxines pyridoxine nom +pyrimidine pyrimidine nom +pyrimidines pyrimidine nom +pyrite pyrite nom +pyrites pyrite nom +pyrola pyrola nom +pyrolas pyrola nom +pyrolusite pyrolusite nom +pyrolusites pyrolusite nom +pyromania pyromania nom +pyromaniac pyromaniac nom +pyromaniacs pyromaniac nom +pyromanias pyromania nom +pyrometer pyrometer nom +pyrometers pyrometer nom +pyrophobia pyrophobia nom +pyrophobias pyrophobia nom +pyroscope pyroscope nom +pyroscopes pyroscope nom +pyroses pyrosis nom +pyrosis pyrosis nom +pyrostat pyrostat nom +pyrostats pyrostat nom +pyrotechnies pyrotechny nom +pyrotechny pyrotechny nom +pyroxene pyroxene nom +pyroxenes pyroxene nom +pyrrhic pyrrhic nom +pyrrhics pyrrhic nom +pyrrhuloxia pyrrhuloxia nom +pyrrhuloxias pyrrhuloxia nom +pythium pythium nom +pythiums pythium nom +python python nom +pythoness pythoness nom +pythonesses pythoness nom +pythons python nom +pyx pyx nom +pyxes pyx nom +pyxie pyxie nom +pyxies pyxie nom +pyxis pyxis nom +q q sw +qindarka qindarka nom +qindarkas qindarka nom +qintar qintar nom +qintars qintar nom +qoph qoph nom +qophs qoph nom +quack quack nom +quacked quack ver +quackeries quackery nom +quackery quackery nom +quacking quack ver +quacks quack nom +quad quad nom +quadded quad ver +quadding quad ver +quadrangle quadrangle nom +quadrangles quadrangle nom +quadrant quadrant nom +quadrants quadrant nom +quadraphonies quadraphony nom +quadraphony quadraphony nom +quadrate quadrate nom +quadrates quadrate nom +quadratic quadratic nom +quadratics quadratic nom +quadrature quadrature nom +quadratures quadrature nom +quadrennial quadrennial nom +quadrennials quadrennial nom +quadrennium quadrennium nom +quadrenniums quadrennium nom +quadric quadric nom +quadriceps quadriceps nom +quadricepses quadriceps nom +quadrics quadric nom +quadrilateral quadrilateral nom +quadrilaterals quadrilateral nom +quadrille quadrille nom +quadrilles quadrille nom +quadrillion quadrillion nom +quadrillions quadrillion nom +quadrillionth quadrillionth nom +quadrillionths quadrillionth nom +quadriplegia quadriplegia nom +quadriplegias quadriplegia nom +quadriplegic quadriplegic nom +quadriplegics quadriplegic nom +quadrivia quadrivium nom +quadrivium quadrivium nom +quadrumvirate quadrumvirate nom +quadrumvirates quadrumvirate nom +quadruped quadruped nom +quadrupeds quadruped nom +quadruple quadruple nom +quadrupled quadruple ver +quadruples quadruple nom +quadruplet quadruplet nom +quadruplets quadruplet nom +quadruplicate quadruplicate nom +quadruplicated quadruplicate ver +quadruplicates quadruplicate nom +quadruplicating quadruplicate ver +quadruplication quadruplication nom +quadruplications quadruplication nom +quadrupling quadruple ver +quads quad nom +quaff quaff nom +quaffed quaff ver +quaffing quaff ver +quaffs quaff nom +quagga quagga nom +quaggas quagga nom +quaggier quaggy adj +quaggiest quaggy adj +quaggy quaggy adj +quagmire quagmire nom +quagmires quagmire nom +quahaug quahaug nom +quahaugs quahaug nom +quahog quahog nom +quahogs quahog nom +quail quail nom +quailed quail ver +quailing quail ver +quails quail ver +quaint quaint adj +quainter quaint adj +quaintest quaint adj +quaintness quaintness nom +quaintnesses quaintness nom +quake quake nom +quaked quake ver +quakes quake nom +quakier quaky adj +quakiest quaky adj +quaking quake ver +quaky quaky adj +qualification qualification nom +qualifications qualification nom +qualified qualify ver +qualifier qualifier nom +qualifiers qualifier nom +qualifies qualify ver +qualify qualify ver +qualifying qualify ver +qualifyings qualifying nom +qualities quality nom +quality quality nom +qualm qualm nom +qualms qualm nom +quamash quamash nom +quamashes quamash nom +quandang quandang nom +quandangs quandang nom +quandaries quandary nom +quandary quandary nom +quandong quandong nom +quandongs quandong nom +quanta quantum nom +quantification quantification nom +quantifications quantification nom +quantified quantify ver +quantifier quantifier nom +quantifiers quantifier nom +quantifies quantify ver +quantify quantify ver +quantifying quantify ver +quantisation quantisation nom +quantisations quantisation nom +quantities quantity nom +quantity quantity nom +quantization quantization nom +quantizations quantization nom +quantong quantong nom +quantongs quantong nom +quantum quantum nom +quarantine quarantine nom +quarantined quarantine ver +quarantines quarantine nom +quarantining quarantine ver +quark quark nom +quarks quark nom +quarrel quarrel nom +quarreled quarrel ver +quarreler quarreler nom +quarrelers quarreler nom +quarreling quarrel ver +quarrels quarrel nom +quarrelsomeness quarrelsomeness nom +quarrelsomenesses quarrelsomeness nom +quarried quarry ver +quarrier quarrier nom +quarriers quarrier nom +quarries quarry nom +quarry quarry nom +quarrying quarry ver +quarryings quarrying nom +quarryman quarryman nom +quarrymen quarryman nom +quart quart nom +quarter quarter nom +quarterback quarterback nom +quarterbacked quarterback ver +quarterbacking quarterback ver +quarterbacks quarterback nom +quarterdeck quarterdeck nom +quarterdecks quarterdeck nom +quartered quarter ver +quarterfinal quarterfinal nom +quarterfinals quarterfinal nom +quartering quarter ver +quarterings quartering nom +quarterlies quarterly nom +quarterlight quarterlight nom +quarterlights quarterlight nom +quarterly quarterly nom +quartermaster quartermaster nom +quartermasters quartermaster nom +quartern quartern nom +quarterns quartern nom +quarters quarter nom +quarterstaff quarterstaff nom +quarterstaves quarterstaff nom +quartet quartet nom +quartets quartet nom +quartette quartette nom +quartettes quartette nom +quartic quartic nom +quartics quartic nom +quarto quarto nom +quartos quarto nom +quarts quart nom +quartz quartz nom +quartzes quartz nom +quartzite quartzite nom +quartzites quartzite nom +quasar quasar nom +quasars quasar nom +quash quash ver +quashed quash ver +quashes quash ver +quashing quash ver +quassia quassia nom +quassias quassia nom +quatercentenaries quatercentenary nom +quatercentenary quatercentenary nom +quaternaries quaternary nom +quaternary quaternary nom +quaternion quaternion nom +quaternions quaternion nom +quaternities quaternity nom +quaternity quaternity nom +quatrain quatrain nom +quatrains quatrain nom +quattrocento quattrocento nom +quattrocentos quattrocento nom +quaver quaver nom +quavered quaver ver +quavering quaver ver +quavers quaver nom +quay quay nom +quays quay nom +que que sw +queasier queasy adj +queasiest queasy adj +queasiness queasiness nom +queasinesses queasiness nom +queasy queasy adj +queen queen nom +queened queen ver +queenfish queenfish nom +queening queen ver +queenlier queenly adj +queenliest queenly adj +queenly queenly adj +queens queen nom +queer queer adj +queered queer ver +queerer queer adj +queerest queer adj +queering queer ver +queerness queerness nom +queernesses queerness nom +queers queer nom +quell quell ver +quelled quell ver +quelling quell ver +quells quell ver +quench quench ver +quenched quench ver +quencher quencher nom +quenchers quencher nom +quenches quench ver +quenching quench ver +quenchings quenching nom +quercitron quercitron nom +quercitrons quercitron nom +queried query ver +queries query nom +quern quern nom +querns quern nom +querulousness querulousness nom +querulousnesses querulousness nom +query query nom +querying query ver +quest quest nom +quested quest ver +questing quest ver +question question nom +questioned question ver +questioner questioner nom +questioners questioner nom +questioning question ver +questionings questioning nom +questionnaire questionnaire nom +questionnaires questionnaire nom +questions question nom +quests quest nom +quetch quetch ver +quetched quetch ver +quetches quetch ver +quetching quetch ver +quetzal quetzal nom +quetzals quetzal nom +queue queue nom +queued queue ver +queues queue nom +queuing queue ver +quibble quibble nom +quibbled quibble ver +quibbler quibbler nom +quibblers quibbler nom +quibbles quibble nom +quibbling quibble ver +quiche quiche nom +quiches quiche nom +quick quick adj +quicken quicken ver +quickened quicken ver +quickening quicken ver +quickenings quickening nom +quickens quicken ver +quicker quick adj +quickest quick adj +quickie quickie nom +quickies quickie nom +quicklime quicklime nom +quicklimes quicklime nom +quickness quickness nom +quicknesses quickness nom +quicks quick nom +quicksand quicksand nom +quicksands quicksand nom +quickset quickset nom +quicksets quickset nom +quicksilver quicksilver nom +quicksilvered quicksilver ver +quicksilvering quicksilver ver +quicksilvers quicksilver nom +quickstep quickstep nom +quicksteps quickstep nom +quicky quicky nom +quid quid nom +quids quid nom +quiesce quiesce ver +quiesced quiesce ver +quiescence quiescence nom +quiescences quiescence nom +quiesces quiesce ver +quiescing quiesce ver +quiet quiet adj +quieted quiet ver +quieten quieten ver +quietened quieten ver +quietening quieten ver +quietens quieten ver +quieter quiet adj +quietest quiet adj +quieting quiet ver +quietism quietism nom +quietisms quietism nom +quietist quietist nom +quietists quietist nom +quietness quietness nom +quietnesses quietness nom +quiets quiet nom +quietude quietude nom +quietudes quietude nom +quietus quietus nom +quietuses quietus nom +quiff quiff nom +quiffs quiff nom +quill quill nom +quilled quill ver +quilling quill ver +quills quill nom +quillwort quillwort nom +quillworts quillwort nom +quilt quilt nom +quilted quilt ver +quilter quilter nom +quilters quilter nom +quilting quilt ver +quiltings quilting nom +quilts quilt nom +quin quin nom +quinacrine quinacrine nom +quinacrines quinacrine nom +quince quince nom +quincentenaries quincentenary nom +quincentenary quincentenary nom +quincentennial quincentennial nom +quincentennials quincentennial nom +quinces quince nom +quinine quinine nom +quinines quinine nom +quins quin nom +quinsies quinsy nom +quinsy quinsy nom +quint quint nom +quintal quintal nom +quintals quintal nom +quintessence quintessence nom +quintessences quintessence nom +quintet quintet nom +quintets quintet nom +quintette quintette nom +quintettes quintette nom +quintillion quintillion nom +quintillions quintillion nom +quintillionth quintillionth nom +quintillionths quintillionth nom +quints quint nom +quintuple quintuple nom +quintupled quintuple ver +quintuples quintuple nom +quintuplet quintuplet nom +quintuplets quintuplet nom +quintupling quintuple ver +quip quip nom +quipped quip ver +quipping quip ver +quips quip nom +quipster quipster nom +quipsters quipster nom +quipu quipu nom +quipus quipu nom +quire quire nom +quired quire ver +quires quire nom +quiring quire ver +quirk quirk nom +quirked quirk ver +quirkier quirky adj +quirkiest quirky adj +quirkiness quirkiness nom +quirkinesses quirkiness nom +quirking quirk ver +quirks quirk nom +quirky quirky adj +quirt quirt nom +quirted quirt ver +quirting quirt ver +quirts quirt nom +quisling quisling nom +quislingism quislingism nom +quislingisms quislingism nom +quislings quisling nom +quit quit ver +quitclaim quitclaim nom +quitclaimed quitclaim ver +quitclaiming quitclaim ver +quitclaims quitclaim nom +quite quite sw +quits quit ver +quittance quittance nom +quittances quittance nom +quitter quitter nom +quitters quitter nom +quitting quit ver +quiver quiver nom +quivered quiver ver +quivering quiver ver +quivers quiver nom +quixotism quixotism nom +quixotisms quixotism nom +quiz quiz nom +quizmaster quizmaster nom +quizmasters quizmaster nom +quizzed quiz ver +quizzer quizzer nom +quizzers quizzer nom +quizzes quiz nom +quizzing quiz ver +quodlibet quodlibet nom +quodlibets quodlibet nom +quoin quoin nom +quoined quoin ver +quoining quoin ver +quoins quoin nom +quoit quoit nom +quoited quoit ver +quoiting quoit ver +quoits quoit nom +quorum quorum nom +quorums quorum nom +quota quota nom +quotabilities quotability nom +quotability quotability nom +quotas quota nom +quotation quotation nom +quotations quotation nom +quote quote nom +quoted quote ver +quotes quote nom +quotidian quotidian nom +quotidians quotidian nom +quotient quotient nom +quotients quotient nom +quoting quote ver +qurush qurush nom +qurushes qurush nom +qv qv sw +qwerty qwerty nom +qwertys qwerty nom +r r sw +rabato rabato nom +rabatos rabato nom +rabbet rabbet nom +rabbeted rabbet ver +rabbeting rabbet ver +rabbets rabbet nom +rabbi rabbi nom +rabbinate rabbinate nom +rabbinates rabbinate nom +rabbis rabbi nom +rabbit rabbit nom +rabbited rabbit ver +rabbitfish rabbitfish nom +rabbiting rabbit ver +rabbits rabbit nom +rabble rabble nom +rabbled rabble ver +rabbles rabble nom +rabbling rabble ver +rabid rabid adj +rabider rabid adj +rabidest rabid adj +rabidness rabidness nom +rabidnesses rabidness nom +rabies rabies nom +raccoon raccoon nom +raccoons raccoon nom +race race nom +racecard racecard nom +racecards racecard nom +racecourse racecourse nom +racecourses racecourse nom +raced race ver +racehorse racehorse nom +racehorses racehorse nom +raceme raceme nom +racemes raceme nom +racer racer nom +racers racer nom +racerunner racerunner nom +racerunners racerunner nom +races race nom +racetrack racetrack nom +racetracks racetrack nom +raceway raceway nom +raceways raceway nom +rachet rachet nom +rachets rachet nom +rachis rachis nom +rachises rachis nom +rachitides rachitis nom +rachitis rachitis nom +racialism racialism nom +racialisms racialism nom +racialist racialist nom +racialists racialist nom +racier racy adj +raciest racy adj +raciness raciness nom +racinesses raciness nom +racing race ver +racings racing nom +racism racism nom +racisms racism nom +racist racist nom +racists racist nom +rack rack nom +racked rack ver +racket racket nom +racketed racket ver +racketeer racketeer nom +racketeered racketeer ver +racketeering racketeer ver +racketeerings racketeering nom +racketeers racketeer nom +racketier rackety adj +racketiest rackety adj +racketing racket ver +rackets racket nom +rackety rackety adj +racking rack ver +racks rack nom +racon racon nom +racons racon nom +raconteur raconteur nom +raconteurs raconteur nom +racoon racoon nom +racoons racoon nom +racquet racquet nom +racquetball racquetball nom +racquetballs racquetball nom +racquets racquet nom +racy racy adj +rad rad adj +radar radar nom +radars radar nom +radarscope radarscope nom +radarscopes radarscope nom +radder rad adj +raddest rad adj +raddle raddle ver +raddled raddle ver +raddles raddle ver +raddling raddle ver +radial radial nom +radials radial nom +radian radian nom +radiance radiance nom +radiances radiance nom +radiancies radiancy nom +radiancy radiancy nom +radians radian nom +radiant radiant nom +radiants radiant nom +radiate radiate ver +radiated radiate ver +radiates radiate ver +radiating radiate ver +radiation radiation nom +radiations radiation nom +radiator radiator nom +radiators radiator nom +radical radical nom +radicalism radicalism nom +radicalisms radicalism nom +radicalization radicalization nom +radicalizations radicalization nom +radicalize radicalize ver +radicalized radicalize ver +radicalizes radicalize ver +radicalizing radicalize ver +radicals radical nom +radicchio radicchio nom +radicchios radicchio nom +radicle radicle nom +radicles radicle nom +radii radius nom +radio radio nom +radioactivities radioactivity nom +radioactivity radioactivity nom +radiocarbon radiocarbon nom +radiocarbons radiocarbon nom +radiochemistries radiochemistry nom +radiochemistry radiochemistry nom +radioed radio ver +radiogram radiogram nom +radiograms radiogram nom +radiograph radiograph nom +radiographer radiographer nom +radiographers radiographer nom +radiographies radiography nom +radiographs radiograph nom +radiography radiography nom +radioing radio ver +radioisotope radioisotope nom +radioisotopes radioisotope nom +radiolarian radiolarian nom +radiolarians radiolarian nom +radiolocation radiolocation nom +radiolocations radiolocation nom +radiologies radiology nom +radiologist radiologist nom +radiologists radiologist nom +radiology radiology nom +radioman radioman nom +radiomen radioman nom +radiometer radiometer nom +radiometers radiometer nom +radiometries radiometry nom +radiometry radiometry nom +radiophone radiophone nom +radiophones radiophone nom +radios radio nom +radioscopies radioscopy nom +radioscopy radioscopy nom +radiosensitivities radiosensitivity nom +radiosensitivity radiosensitivity nom +radiosonde radiosonde nom +radiosondes radiosonde nom +radiotelegraph radiotelegraph nom +radiotelegraphed radiotelegraph ver +radiotelegraphies radiotelegraphy nom +radiotelegraphing radiotelegraph ver +radiotelegraphs radiotelegraph nom +radiotelegraphy radiotelegraphy nom +radiotelephone radiotelephone nom +radiotelephoned radiotelephone ver +radiotelephones radiotelephone nom +radiotelephonies radiotelephony nom +radiotelephoning radiotelephone ver +radiotelephony radiotelephony nom +radiotherapies radiotherapy nom +radiotherapist radiotherapist nom +radiotherapists radiotherapist nom +radiotherapy radiotherapy nom +radish radish nom +radishes radish nom +radium radium nom +radiums radium nom +radius radius nom +radix radix nom +radixes radix nom +radome radome nom +radomes radome nom +radon radon nom +radons radon nom +rads rad nom +raffia raffia nom +raffias raffia nom +raffinose raffinose nom +raffinoses raffinose nom +raffishness raffishness nom +raffishnesses raffishness nom +raffle raffle nom +raffled raffle ver +raffles raffle nom +raffling raffle ver +raft raft nom +rafted raft ver +rafter rafter nom +raftered rafter ver +raftering rafter ver +rafters rafter nom +rafting raft ver +raftings rafting nom +raftman raftman nom +raftmen raftman nom +rafts raft nom +raftsman raftsman nom +raftsmen raftsman nom +rag rag nom +raga raga nom +ragamuffin ragamuffin nom +ragamuffins ragamuffin nom +ragas raga nom +ragbag ragbag nom +ragbags ragbag nom +rage rage nom +raged rage ver +ragee ragee nom +ragees ragee nom +rages rage nom +ragged rag ver +raggeder ragged adj +raggedest ragged adj +raggedier raggedy adj +raggediest raggedy adj +raggedness raggedness nom +raggednesses raggedness nom +raggedy raggedy adj +ragging rag ver +ragi ragi nom +raging rage ver +ragis ragi nom +raglan raglan nom +raglans raglan nom +ragout ragout nom +ragouted ragout ver +ragouting ragout ver +ragouts ragout nom +rags rag nom +ragtag ragtag nom +ragtags ragtag nom +ragtime ragtime nom +ragtimes ragtime nom +ragweed ragweed nom +ragweeds ragweed nom +ragwort ragwort nom +ragworts ragwort nom +raid raid nom +raided raid ver +raider raider nom +raiders raider nom +raiding raid ver +raids raid nom +rail rail nom +railcar railcar nom +railcars railcar nom +railed rail ver +railhead railhead nom +railheads railhead nom +railing rail ver +railleries raillery nom +raillery raillery nom +railroad railroad nom +railroaded railroad ver +railroader railroader nom +railroaders railroader nom +railroading railroad ver +railroadings railroading nom +railroads railroad nom +rails rail nom +railway railway nom +railwayman railwayman nom +railwaymen railwayman nom +railways railway nom +raiment raiment nom +raimented raiment ver +raimenting raiment ver +raiments raiment nom +rain rain nom +rainbow rainbow nom +rainbows rainbow nom +raincoat raincoat nom +raincoats raincoat nom +raindrop raindrop nom +raindrops raindrop nom +rained rain ver +rainfall rainfall nom +rainfalls rainfall nom +rainier rainy adj +rainiest rainy adj +raining rain ver +rainmaker rainmaker nom +rainmakers rainmaker nom +rainmaking rainmaking nom +rainmakings rainmaking nom +rainproof rainproof ver +rainproofed rainproof ver +rainproofing rainproof ver +rainproofs rainproof ver +rains rain nom +rainstorm rainstorm nom +rainstorms rainstorm nom +rainwater rainwater nom +rainwaters rainwater nom +rainy rainy adj +raise raise nom +raised raise ver +raiser raiser nom +raisers raiser nom +raises raise nom +raisin raisin nom +raising raise ver +raisings raising nom +raisins raisin nom +raj raj nom +raja raja nom +rajah rajah nom +rajahs rajah nom +rajas raja nom +rajes raj nom +rake rake nom +raked rake ver +rakes rake nom +raking rake ver +rakishness rakishness nom +rakishnesses rakishness nom +rale rale nom +rales rale nom +rallied rally ver +rallies rally nom +rally rally nom +rallying rally ver +rallyings rallying nom +ram ram nom +ramble ramble nom +rambled ramble ver +rambler rambler nom +ramblers rambler nom +rambles ramble nom +rambling ramble ver +rambunctiousness rambunctiousness nom +rambunctiousnesses rambunctiousness nom +rambutan rambutan nom +rambutans rambutan nom +ramee ramee nom +ramees ramee nom +ramekin ramekin nom +ramekins ramekin nom +ramequin ramequin nom +ramequins ramequin nom +ramie ramie nom +ramies ramie nom +ramification ramification nom +ramifications ramification nom +ramified ramify ver +ramifies ramify ver +ramify ramify ver +ramifying ramify ver +ramjet ramjet nom +ramjets ramjet nom +rammed ram ver +rammer rammer nom +rammers rammer nom +ramming ram ver +ramona ramona nom +ramonas ramona nom +ramp ramp nom +rampage rampage nom +rampaged rampage ver +rampages rampage nom +rampaging rampage ver +rampancies rampancy nom +rampancy rampancy nom +rampart rampart nom +ramparted rampart ver +ramparting rampart ver +ramparts rampart nom +ramped ramp ver +ramping ramp ver +rampion rampion nom +rampions rampion nom +ramps ramp nom +ramrod ramrod nom +ramrodded ramrod ver +ramrodding ramrod ver +ramrods ramrod nom +rams ram nom +ran run ver +ranch ranch nom +ranched ranch ver +rancher rancher nom +ranchers rancher nom +ranches ranch nom +ranching ranch ver +ranchings ranching nom +rancid rancid adj +rancider rancid adj +rancidest rancid adj +rancidities rancidity nom +rancidity rancidity nom +rancidness rancidness nom +rancidnesses rancidness nom +rancor rancor nom +rancors rancor nom +rancour rancour nom +rancours rancour nom +rand rand nom +randier randy adj +randies randy nom +randiest randy adj +randiness randiness nom +randinesses randiness nom +random random nom +randomisation randomisation nom +randomisations randomisation nom +randomization randomization nom +randomizations randomization nom +randomize randomize ver +randomized randomize ver +randomizes randomize ver +randomizing randomize ver +randomness randomness nom +randomnesses randomness nom +randoms random nom +rands rand nom +randy randy adj +ranee ranee nom +ranees ranee nom +rang ring ver +range range nom +ranged range ver +rangefinder rangefinder nom +rangefinders rangefinder nom +rangeland rangeland nom +ranger ranger nom +rangers ranger nom +ranges range nom +rangier rangy adj +rangiest rangy adj +ranginess ranginess nom +ranginesses ranginess nom +ranging range ver +rangy rangy adj +rani rani nom +ranid ranid nom +ranids ranid nom +ranis rani nom +rank rank adj +ranked rank ver +ranker rank adj +rankers ranker nom +rankest rank adj +ranking rank ver +rankings ranking nom +rankle rankle ver +rankled rankle ver +rankles rankle ver +rankling rankle ver +rankness rankness nom +ranknesses rankness nom +ranks rank nom +ransack ransack ver +ransacked ransack ver +ransacking ransack ver +ransacks ransack ver +ransom ransom nom +ransomed ransom ver +ransomer ransomer nom +ransomers ransomer nom +ransoming ransom ver +ransoms ransom nom +rant rant nom +ranted rant ver +ranter ranter nom +ranters ranter nom +ranting rant ver +rantings ranting nom +rants rant nom +rap rap nom +rapaciousness rapaciousness nom +rapaciousnesses rapaciousness nom +rapacities rapacity nom +rapacity rapacity nom +rape rape nom +raped rape ver +raper raper nom +rapers raper nom +rapes rape nom +rapeseed rapeseed nom +rapeseeds rapeseed nom +raphia raphia nom +raphias raphia nom +rapid rapid adj +rapider rapid adj +rapidest rapid adj +rapidities rapidity nom +rapidity rapidity nom +rapidness rapidness nom +rapidnesses rapidness nom +rapids rapid nom +rapier rapier nom +rapiers rapier nom +rapine rapine nom +rapines rapine nom +raping rape ver +rapist rapist nom +rapists rapist nom +rapped rap ver +rappel rappel nom +rappelled rappel ver +rappelling rappel ver +rappels rappel nom +rapper rapper nom +rappers rapper nom +rapping rap ver +rapport rapport nom +rapports rapport nom +rapprochement rapprochement nom +rapprochements rapprochement nom +raps rap nom +rapscallion rapscallion nom +rapscallions rapscallion nom +raptness raptness nom +raptnesses raptness nom +raptor raptor nom +raptors raptor nom +rapture rapture nom +raptured rapture ver +raptures rapture nom +rapturing rapture ver +rare rare adj +rarebit rarebit nom +rarebits rarebit nom +rared rare ver +rarefaction rarefaction nom +rarefactions rarefaction nom +rarefied rarefy ver +rarefies rarefy ver +rarefy rarefy ver +rarefying rarefy ver +rareness rareness nom +rarenesses rareness nom +rarer rare adj +rares rare ver +rarest rare adj +rarified rarify ver +rarifies rarify ver +rarify rarify ver +rarifying rarify ver +raring rare ver +rarities rarity nom +rarity rarity nom +rascal rascal nom +rascalities rascality nom +rascality rascality nom +rascals rascal nom +rase rase ver +rased rase ver +rases rase ver +rash rash adj +rasher rash adj +rashers rasher nom +rashes rash nom +rashest rash adj +rashness rashness nom +rashnesses rashness nom +rasing rase ver +rasp rasp nom +raspberries raspberry nom +raspberry raspberry nom +rasped rasp ver +raspier raspy adj +raspiest raspy adj +rasping rasp ver +raspings rasping nom +rasps rasp nom +raspy raspy adj +raster raster nom +rasters raster nom +rat rat nom +ratabilities ratability nom +ratability ratability nom +ratafee ratafee nom +ratafees ratafee nom +ratafia ratafia nom +ratafias ratafia nom +ratan ratan nom +ratans ratan nom +ratch ratch nom +ratches ratch nom +ratchet ratchet nom +ratcheted ratchet ver +ratcheting ratchet ver +ratchets ratchet nom +rate rate nom +rated rate ver +ratel ratel nom +ratels ratel nom +ratepayer ratepayer nom +ratepayers ratepayer nom +rater rater nom +raters rater nom +rates rate nom +rather rather sw +rathole rathole nom +ratholes rathole nom +rathskeller rathskeller nom +rathskellers rathskeller nom +ratification ratification nom +ratifications ratification nom +ratified ratify ver +ratifier ratifier nom +ratifiers ratifier nom +ratifies ratify ver +ratify ratify ver +ratifying ratify ver +rating rate ver +ratings rating nom +ratio ratio nom +ratiocinate ratiocinate ver +ratiocinated ratiocinate ver +ratiocinates ratiocinate ver +ratiocinating ratiocinate ver +ratiocination ratiocination nom +ratiocinations ratiocination nom +ratiocinator ratiocinator nom +ratiocinators ratiocinator nom +ration ration nom +rational rational nom +rationale rationale nom +rationales rationale nom +rationalisation rationalisation nom +rationalisations rationalisation nom +rationalism rationalism nom +rationalisms rationalism nom +rationalist rationalist nom +rationalists rationalist nom +rationalities rationality nom +rationality rationality nom +rationalization rationalization nom +rationalizations rationalization nom +rationalize rationalize ver +rationalized rationalize ver +rationalizes rationalize ver +rationalizing rationalize ver +rationalness rationalness nom +rationalnesses rationalness nom +rationals rational nom +rationed ration ver +rationing ration ver +rations ration nom +ratios ratio nom +ratite ratite nom +ratites ratite nom +ratlin ratlin nom +ratline ratline nom +ratlines ratline nom +ratlins ratlin nom +rats rat nom +rattail rattail nom +rattails rattail nom +rattan rattan nom +rattans rattan nom +ratted rat ver +ratter ratter nom +ratters ratter nom +rattier ratty adj +rattiest ratty adj +ratting rat ver +rattle rattle nom +rattlebox rattlebox nom +rattleboxes rattlebox nom +rattlebrain rattlebrain nom +rattlebrains rattlebrain nom +rattled rattle ver +rattler rattler nom +rattlers rattler nom +rattles rattle nom +rattlesnake rattlesnake nom +rattlesnakes rattlesnake nom +rattletrap rattletrap nom +rattletraps rattletrap nom +rattlier rattly adj +rattliest rattly adj +rattling rattle ver +rattlings rattling nom +rattly rattly adj +rattrap rattrap nom +rattraps rattrap nom +ratty ratty adj +raucousness raucousness nom +raucousnesses raucousness nom +raunchier raunchy adj +raunchiest raunchy adj +raunchiness raunchiness nom +raunchinesses raunchiness nom +raunchy raunchy adj +rauwolfia rauwolfia nom +rauwolfias rauwolfia nom +ravage ravage nom +ravaged ravage ver +ravager ravager nom +ravagers ravager nom +ravages ravage nom +ravaging ravage ver +rave rave nom +raved rave ver +ravel ravel nom +raveled ravel ver +raveling ravel ver +ravelling ravelling nom +ravellings ravelling nom +ravels ravel nom +raven raven nom +ravened raven ver +ravening raven ver +ravenings ravening nom +ravenousness ravenousness nom +ravenousnesses ravenousness nom +ravens raven nom +raver raver nom +ravers raver nom +raves rave nom +ravigote ravigote nom +ravigotes ravigote nom +ravine ravine nom +ravines ravine nom +raving rave ver +ravings raving nom +ravioli ravioli nom +raviolis ravioli nom +ravish ravish ver +ravished ravish ver +ravisher ravisher nom +ravishers ravisher nom +ravishes ravish ver +ravishing ravish ver +ravishment ravishment nom +ravishments ravishment nom +raw raw adj +rawer raw adj +rawest raw adj +rawhide rawhide nom +rawhided rawhide ver +rawhides rawhide nom +rawhiding rawhide ver +rawness rawness nom +rawnesses rawness nom +raws raw nom +ray ray nom +rayed ray ver +raying ray ver +rayon rayon nom +rayons rayon nom +rays ray nom +raze raze ver +razed raze ver +razes raze ver +razing raze ver +razor razor nom +razorback razorback nom +razorbacks razorback nom +razorbill razorbill nom +razorbills razorbill nom +razored razor ver +razorfish razorfish nom +razoring razor ver +razors razor nom +razz razz nom +razzed razz ver +razzes razz nom +razzing razz ver +razzle razzle nom +razzles razzle nom +razzmatazz razzmatazz nom +razzmatazzes razzmatazz nom +rd rd sw +re re sw +reabsorb reabsorb ver +reabsorbed reabsorb ver +reabsorbing reabsorb ver +reabsorbs reabsorb ver +reach reach nom +reached reach ver +reaches reach nom +reaching reach ver +reacquaint reacquaint ver +reacquainted reacquaint ver +reacquainting reacquaint ver +reacquaints reacquaint ver +reacquire reacquire ver +reacquired reacquire ver +reacquires reacquire ver +reacquiring reacquire ver +react react ver +reactance reactance nom +reactances reactance nom +reactant reactant nom +reactants reactant nom +reacted react ver +reacting react ver +reaction reaction nom +reactionaries reactionary nom +reactionary reactionary nom +reactions reaction nom +reactivate reactivate ver +reactivated reactivate ver +reactivates reactivate ver +reactivating reactivate ver +reactivation reactivation nom +reactivations reactivation nom +reactivities reactivity nom +reactivity reactivity nom +reactor reactor nom +reactors reactor nom +reacts react ver +read read ver +readabilities readability nom +readability readability nom +readapt readapt ver +readapted readapt ver +readapting readapt ver +readapts readapt ver +readdress readdress ver +readdressed readdress ver +readdresses readdress ver +readdressing readdress ver +reader reader nom +readers reader nom +readership readership nom +readerships readership nom +readied ready ver +readier ready adj +readies ready nom +readiest ready adj +readiness readiness nom +readinesses readiness nom +reading read ver +readings reading nom +readjust readjust ver +readjusted readjust ver +readjusting readjust ver +readjustment readjustment nom +readjustments readjustment nom +readjusts readjust ver +readmission readmission nom +readmissions readmission nom +readmit readmit ver +readmits readmit ver +readmitted readmit ver +readmitting readmit ver +readopt readopt ver +readopted readopt ver +readopting readopt ver +readopts readopt ver +readout readout nom +readouts readout nom +reads read nom +ready ready adj +readying ready ver +reaffirm reaffirm ver +reaffirmation reaffirmation nom +reaffirmations reaffirmation nom +reaffirmed reaffirm ver +reaffirming reaffirm ver +reaffirms reaffirm ver +reagent reagent nom +reagents reagent nom +real real adj +realer real adj +realest real adj +realgar realgar nom +realgars realgar nom +realign realign ver +realigned realign ver +realigning realign ver +realignment realignment nom +realignments realignment nom +realigns realign ver +realisation realisation nom +realisations realisation nom +realism realism nom +realisms realism nom +realist realist nom +realists realist nom +realities reality nom +reality reality nom +realization realization nom +realizations realization nom +realize realize ver +realized realize ver +realizes realize ver +realizing realize ver +reallocate reallocate ver +reallocated reallocate ver +reallocates reallocate ver +reallocating reallocate ver +reallocation reallocation nom +reallocations reallocation nom +reallotment reallotment nom +reallotments reallotment nom +really really sw +realm realm nom +realms realm nom +realness realness nom +realnesses realness nom +realpolitik realpolitik nom +realpolitiks realpolitik nom +reals real nom +realties realty nom +realtor realtor nom +realtors realtor nom +realty realty nom +ream ream nom +reamed ream ver +reamer reamer nom +reamers reamer nom +reaming ream ver +reams ream nom +reanalyses reanalysis nom +reanalysis reanalysis nom +reanalyze reanalyze ver +reanalyzed reanalyze ver +reanalyzes reanalyze ver +reanalyzing reanalyze ver +reanimate reanimate ver +reanimated reanimate ver +reanimates reanimate ver +reanimating reanimate ver +reanimation reanimation nom +reanimations reanimation nom +reap reap ver +reaped reap ver +reaper reaper nom +reapers reaper nom +reaping reap ver +reappear reappear ver +reappearance reappearance nom +reappearances reappearance nom +reappeared reappear ver +reappearing reappear ver +reappears reappear ver +reapplication reapplication nom +reapplications reapplication nom +reapplied reapply ver +reapplies reapply ver +reapply reapply ver +reapplying reapply ver +reappoint reappoint ver +reappointed reappoint ver +reappointing reappoint ver +reappointment reappointment nom +reappointments reappointment nom +reappoints reappoint ver +reapportion reapportion ver +reapportioned reapportion ver +reapportioning reapportion ver +reapportionment reapportionment nom +reapportionments reapportionment nom +reapportions reapportion ver +reappraisal reappraisal nom +reappraisals reappraisal nom +reappraise reappraise ver +reappraised reappraise ver +reappraises reappraise ver +reappraising reappraise ver +reaps reap ver +rear rear adj +reared rear ver +rearer rear adj +rearguard rearguard nom +rearguards rearguard nom +rearing rear ver +rearm rearm ver +rearmament rearmament nom +rearmaments rearmament nom +rearmed rearm ver +rearming rearm ver +rearms rearm ver +rearrange rearrange ver +rearranged rearrange ver +rearrangement rearrangement nom +rearrangements rearrangement nom +rearranges rearrange ver +rearranging rearrange ver +rearrest rear adj +rearrested rearrest ver +rearresting rearrest ver +rearrests rearrest nom +rears rear nom +rearward rearward nom +rearwards rearward nom +reascend reascend ver +reascended reascend ver +reascending reascend ver +reascends reascend ver +reason reason nom +reasonableness reasonableness nom +reasonablenesses reasonableness nom +reasonably reasonably sw +reasoned reason ver +reasoner reasoner nom +reasoners reasoner nom +reasoning reason ver +reasonings reasoning nom +reasons reason nom +reassail reassail ver +reassailed reassail ver +reassailing reassail ver +reassails reassail ver +reassemble reassemble ver +reassembled reassemble ver +reassembles reassemble ver +reassemblies reassembly nom +reassembling reassemble ver +reassembly reassembly nom +reassert reassert ver +reasserted reassert ver +reasserting reassert ver +reassertion reassertion nom +reassertions reassertion nom +reasserts reassert ver +reassess reassess ver +reassessed reassess ver +reassesses reassess ver +reassessing reassess ver +reassessment reassessment nom +reassessments reassessment nom +reassign reassign ver +reassigned reassign ver +reassigning reassign ver +reassignment reassignment nom +reassignments reassignment nom +reassigns reassign ver +reassurance reassurance nom +reassurances reassurance nom +reassure reassure ver +reassured reassure ver +reassures reassure ver +reassuring reassure ver +reattach reattach ver +reattached reattach ver +reattaches reattach ver +reattaching reattach ver +reattachment reattachment nom +reattachments reattachment nom +reattain reattain ver +reattained reattain ver +reattaining reattain ver +reattains reattain ver +reattempt reattempt ver +reattempted reattempt ver +reattempting reattempt ver +reattempts reattempt ver +reattribute reattribute ver +reattributed reattribute ver +reattributes reattribute ver +reattributing reattribute ver +reauthorize reauthorize ver +reauthorized reauthorize ver +reauthorizes reauthorize ver +reauthorizing reauthorize ver +reave reave ver +reaved reave ver +reaves reave ver +reaving reave ver +reawaken reawaken ver +reawakened reawaken ver +reawakening reawaken ver +reawakens reawaken ver +rebate rebate nom +rebated rebate ver +rebates rebate nom +rebating rebate ver +rebato rebato nom +rebatoes rebato nom +rebatos rebato nom +rebel rebel nom +rebelled rebel ver +rebelling rebel ver +rebellion rebellion nom +rebellions rebellion nom +rebelliousness rebelliousness nom +rebelliousnesses rebelliousness nom +rebels rebel nom +rebid rebid ver +rebidding rebid ver +rebids rebid nom +rebind rebind ver +rebinding rebind ver +rebinds rebind ver +rebirth rebirth nom +rebirths rebirth nom +reboil reboil ver +reboiled reboil ver +reboiling reboil ver +reboils reboil ver +reboot reboot ver +rebooted reboot ver +rebooting reboot ver +reboots reboot ver +rebound rebind ver +rebounded rebound ver +rebounding rebound ver +rebounds rebound nom +rebroadcast rebroadcast ver +rebroadcasting rebroadcast ver +rebroadcasts rebroadcast nom +rebuff rebuff nom +rebuffed rebuff ver +rebuffing rebuff ver +rebuffs rebuff nom +rebuild rebuild ver +rebuilding rebuild ver +rebuilds rebuild ver +rebuilt rebuild ver +rebuke rebuke nom +rebuked rebuke ver +rebukes rebuke nom +rebuking rebuke ver +reburial reburial nom +reburials reburial nom +reburied rebury ver +reburies rebury ver +rebury rebury ver +reburying rebury ver +rebus rebus nom +rebuses rebus nom +rebut rebut ver +rebuts rebut ver +rebuttal rebuttal nom +rebuttals rebuttal nom +rebutted rebut ver +rebutter rebutter nom +rebutters rebutter nom +rebutting rebut ver +rec rec nom +recalcitrance recalcitrance nom +recalcitrances recalcitrance nom +recalcitrancies recalcitrancy nom +recalcitrancy recalcitrancy nom +recalcitrant recalcitrant nom +recalcitrants recalcitrant nom +recalculate recalculate ver +recalculated recalculate ver +recalculates recalculate ver +recalculating recalculate ver +recalculation recalculation nom +recalculations recalculation nom +recall recall nom +recalled recall ver +recalling recall ver +recalls recall nom +recant recant ver +recantation recantation nom +recantations recantation nom +recanted recant ver +recanting recant ver +recants recant ver +recap recap nom +recapitulate recapitulate ver +recapitulated recapitulate ver +recapitulates recapitulate ver +recapitulating recapitulate ver +recapitulation recapitulation nom +recapitulations recapitulation nom +recapped recap ver +recapping recap ver +recaps recap nom +recapture recapture nom +recaptured recapture ver +recaptures recapture nom +recapturing recapture ver +recast recast ver +recasting recast ver +recastings recasting nom +recasts recast nom +recce recce nom +recces recce nom +reccies reccy nom +recco recco nom +reccos recco nom +reccy reccy nom +recede recede ver +receded recede ver +recedes recede ver +receding recede ver +receipt receipt nom +receipted receipt ver +receipting receipt ver +receipts receipt nom +receive receive ver +received receive ver +receiver receiver nom +receivers receiver nom +receivership receivership nom +receiverships receivership nom +receives receive ver +receiving receive ver +recencies recency nom +recency recency nom +recent recent adj +recenter recent adj +recentest recent adj +recentness recentness nom +recentnesses recentness nom +receptacle receptacle nom +receptacles receptacle nom +reception reception nom +receptionist receptionist nom +receptionists receptionist nom +receptions reception nom +receptiveness receptiveness nom +receptivenesses receptiveness nom +receptivities receptivity nom +receptivity receptivity nom +receptor receptor nom +receptors receptor nom +recess recess nom +recessed recess ver +recesses recess nom +recessing recess ver +recession recession nom +recessional recessional nom +recessionals recessional nom +recessions recession nom +recessive recessive nom +recessives recessive nom +recharge recharge ver +recharged recharge ver +recharges recharge ver +recharging recharge ver +recharter recharter ver +rechartered recharter ver +rechartering recharter ver +recharters recharter ver +rechauffe rechauffe nom +rechauffes rechauffe nom +recheck recheck nom +rechecked recheck ver +rechecking recheck ver +rechecks recheck nom +rechristen rechristen ver +rechristened rechristen ver +rechristening rechristen ver +rechristens rechristen ver +recidivism recidivism nom +recidivisms recidivism nom +recidivist recidivist nom +recidivists recidivist nom +recipe recipe nom +recipes recipe nom +recipient recipient nom +recipients recipient nom +reciprocal reciprocal nom +reciprocalities reciprocality nom +reciprocality reciprocality nom +reciprocals reciprocal nom +reciprocate reciprocate ver +reciprocated reciprocate ver +reciprocates reciprocate ver +reciprocating reciprocate ver +reciprocation reciprocation nom +reciprocations reciprocation nom +reciprocities reciprocity nom +reciprocity reciprocity nom +recirculate recirculate ver +recirculated recirculate ver +recirculates recirculate ver +recirculating recirculate ver +recital recital nom +recitalist recitalist nom +recitalists recitalist nom +recitals recital nom +recitation recitation nom +recitations recitation nom +recitative recitative nom +recitatives recitative nom +recite recite ver +recited recite ver +reciter reciter nom +reciters reciter nom +recites recite ver +reciting recite ver +recklessness recklessness nom +recklessnesses recklessness nom +reckon reckon ver +reckoned reckon ver +reckoner reckoner nom +reckoners reckoner nom +reckoning reckon ver +reckonings reckoning nom +reckons reckon ver +reclaim reclaim nom +reclaimed reclaim ver +reclaiming reclaim ver +reclaims reclaim nom +reclamation reclamation nom +reclamations reclamation nom +reclassification reclassification nom +reclassifications reclassification nom +reclassified reclassify ver +reclassifies reclassify ver +reclassify reclassify ver +reclassifying reclassify ver +recline recline ver +reclined recline ver +recliner recliner nom +recliners recliner nom +reclines recline ver +reclining recline ver +recluse recluse nom +recluses recluse nom +reclusiveness reclusiveness nom +reclusivenesses reclusiveness nom +recognition recognition nom +recognitions recognition nom +recognizance recognizance nom +recognizances recognizance nom +recognize recognize ver +recognized recognize ver +recognizes recognize ver +recognizing recognize ver +recoil recoil nom +recoiled recoil ver +recoiling recoil ver +recoils recoil nom +recollect recollect ver +recollected recollect ver +recollecting recollect ver +recollection recollection nom +recollections recollection nom +recollects recollect ver +recolonization recolonization nom +recolonizations recolonization nom +recolonize recolonize ver +recolonized recolonize ver +recolonizes recolonize ver +recolonizing recolonize ver +recolor recolor ver +recolored recolor ver +recoloring recolor ver +recolors recolor ver +recombine recombine ver +recombined recombine ver +recombines recombine ver +recombining recombine ver +recommence recommence ver +recommenced recommence ver +recommencement recommencement nom +recommencements recommencement nom +recommences recommence ver +recommencing recommence ver +recommend recommend ver +recommendation recommendation nom +recommendations recommendation nom +recommended recommend ver +recommending recommend ver +recommends recommend ver +recommission recommission nom +recommissioned recommission ver +recommissioning recommission ver +recommissions recommission nom +recommit recommit ver +recommits recommit ver +recommitted recommit ver +recommitting recommit ver +recompense recompense nom +recompensed recompense ver +recompenses recompense nom +recompensing recompense ver +recompose recompose ver +recomposed recompose ver +recomposes recompose ver +recomposing recompose ver +recompute recompute ver +recomputed recompute ver +recomputes recompute ver +recomputing recompute ver +reconcile reconcile ver +reconciled reconcile ver +reconciler reconciler nom +reconcilers reconciler nom +reconciles reconcile ver +reconciliation reconciliation nom +reconciliations reconciliation nom +reconciling reconcile ver +reconditeness reconditeness nom +reconditenesses reconditeness nom +recondition recondition ver +reconditioned recondition ver +reconditioning recondition ver +reconditions recondition ver +reconfirm reconfirm ver +reconfirmation reconfirmation nom +reconfirmations reconfirmation nom +reconfirmed reconfirm ver +reconfirming reconfirm ver +reconfirms reconfirm ver +reconnaissance reconnaissance nom +reconnaissances reconnaissance nom +reconnect reconnect ver +reconnected reconnect ver +reconnecting reconnect ver +reconnects reconnect ver +reconnoiter reconnoiter ver +reconnoitered reconnoiter ver +reconnoitering reconnoiter ver +reconnoiters reconnoiter ver +reconnoitre reconnoitre ver +reconnoitred reconnoitre ver +reconnoitres reconnoitre ver +reconnoitring reconnoitre ver +reconquer reconquer ver +reconquered reconquer ver +reconquering reconquer ver +reconquers reconquer ver +reconquest reconquest nom +reconquests reconquest nom +reconsecrate reconsecrate ver +reconsecrated reconsecrate ver +reconsecrates reconsecrate ver +reconsecrating reconsecrate ver +reconsecration reconsecration nom +reconsecrations reconsecration nom +reconsider reconsider ver +reconsideration reconsideration nom +reconsiderations reconsideration nom +reconsidered reconsider ver +reconsidering reconsider ver +reconsiders reconsider ver +reconsign reconsign ver +reconsigned reconsign ver +reconsigning reconsign ver +reconsigns reconsign ver +reconstitute reconstitute ver +reconstituted reconstitute ver +reconstitutes reconstitute ver +reconstituting reconstitute ver +reconstitution reconstitution nom +reconstitutions reconstitution nom +reconstruct reconstruct ver +reconstructed reconstruct ver +reconstructing reconstruct ver +reconstruction reconstruction nom +reconstructions reconstruction nom +reconstructs reconstruct ver +recontact recontact nom +recontacted recontact ver +recontacting recontact ver +recontacts recontact nom +recontaminate recontaminate ver +recontaminated recontaminate ver +recontaminates recontaminate ver +recontaminating recontaminate ver +reconvene reconvene ver +reconvened reconvene ver +reconvenes reconvene ver +reconvening reconvene ver +reconvert reconvert ver +reconverted reconvert ver +reconverting reconvert ver +reconverts reconvert ver +reconvict reconvict ver +reconvicted reconvict ver +reconvicting reconvict ver +reconvicts reconvict ver +recook recook ver +recooked recook ver +recooking recook ver +recooks recook ver +recopied recopy ver +recopies recopy ver +recopy recopy ver +recopying recopy ver +record record nom +recorded record ver +recorder recorder nom +recorders recorder nom +recording record ver +recordings recording nom +records record nom +recount recount nom +recounted recount ver +recounting recount ver +recounts recount nom +recoup recoup nom +recouped recoup ver +recouping recoup ver +recoups recoup nom +recourse recourse nom +recourses recourse nom +recover recover ver +recovered recover ver +recoverer recoverer nom +recoverers recoverer nom +recoveries recovery nom +recovering recover ver +recovers recover ver +recovery recovery nom +recreant recreant nom +recreants recreant nom +recreate recreate ver +recreated recreate ver +recreates recreate ver +recreating recreate ver +recreation recreation nom +recreations recreation nom +recriminate recriminate ver +recriminated recriminate ver +recriminates recriminate ver +recriminating recriminate ver +recrimination recrimination nom +recriminations recrimination nom +recross recross ver +recrossed recross ver +recrosses recross ver +recrossing recross ver +recrudesce recrudesce ver +recrudesced recrudesce ver +recrudescence recrudescence nom +recrudescences recrudescence nom +recrudesces recrudesce ver +recrudescing recrudesce ver +recruit recruit nom +recruited recruit ver +recruiter recruiter nom +recruiters recruiter nom +recruiting recruit ver +recruitment recruitment nom +recruitments recruitment nom +recruits recruit nom +recrystallize recrystallize ver +recrystallized recrystallize ver +recrystallizes recrystallize ver +recrystallizing recrystallize ver +recs rec nom +rectangle rectangle nom +rectangles rectangle nom +rectangularities rectangularity nom +rectangularity rectangularity nom +recti rectus nom +rectification rectification nom +rectifications rectification nom +rectified rectify ver +rectifier rectifier nom +rectifiers rectifier nom +rectifies rectify ver +rectify rectify ver +rectifying rectify ver +rectitude rectitude nom +rectitudes rectitude nom +recto recto nom +rector rector nom +rectories rectory nom +rectors rector nom +rectory rectory nom +rectos recto nom +rectum rectum nom +rectums rectum nom +rectus rectus nom +recuperate recuperate ver +recuperated recuperate ver +recuperates recuperate ver +recuperating recuperate ver +recuperation recuperation nom +recuperations recuperation nom +recur recur ver +recurred recur ver +recurrence recurrence nom +recurrences recurrence nom +recurring recur ver +recurs recur ver +recursion recursion nom +recursions recursion nom +recurve recurve ver +recurved recurve ver +recurves recurve ver +recurving recurve ver +recusal recusal nom +recusals recusal nom +recusancies recusancy nom +recusancy recusancy nom +recusant recusant nom +recusants recusant nom +recusation recusation nom +recusations recusation nom +recuse recuse ver +recused recuse ver +recuses recuse ver +recusing recuse ver +recyclable recyclable nom +recyclables recyclable nom +recycle recycle nom +recycled recycle ver +recycles recycle nom +recycling recycle ver +recyclings recycling nom +red red ver +redact redact ver +redacted redact ver +redacting redact ver +redaction redaction nom +redactions redaction nom +redactor redactor nom +redactors redactor nom +redacts redact ver +redbird redbird nom +redbirds redbird nom +redbone redbone nom +redbones redbone nom +redbreast redbreast nom +redbreasts redbreast nom +redbud redbud nom +redbuds redbud nom +redbug redbug nom +redbugs redbug nom +redcap redcap nom +redcaps redcap nom +redcoat redcoat nom +redcoats redcoat nom +redden redden ver +reddened redden ver +reddening redden ver +reddens redden ver +redder red adj +reddest red adj +redding red ver +redecorate redecorate ver +redecorated redecorate ver +redecorates redecorate ver +redecorating redecorate ver +redecoration redecoration nom +redecorations redecoration nom +rededicate rededicate ver +rededicated rededicate ver +rededicates rededicate ver +rededicating rededicate ver +rededication rededication nom +rededications rededication nom +redeem redeem ver +redeemed redeem ver +redeemer redeemer nom +redeemers redeemer nom +redeeming redeem ver +redeems redeem ver +redefine redefine ver +redefined redefine ver +redefines redefine ver +redefining redefine ver +redefinition redefinition nom +redefinitions redefinition nom +redeliver redeliver ver +redelivered redeliver ver +redelivering redeliver ver +redelivers redeliver ver +redemption redemption nom +redemptions redemption nom +redeploy redeploy ver +redeployed redeploy ver +redeploying redeploy ver +redeployment redeployment nom +redeployments redeployment nom +redeploys redeploy ver +redeposit redeposit nom +redeposited redeposit ver +redepositing redeposit ver +redeposits redeposit nom +redesign redesign ver +redesigned redesign ver +redesigning redesign ver +redesigns redesign ver +redetermination redetermination nom +redeterminations redetermination nom +redetermine redetermine ver +redetermined redetermine ver +redetermines redetermine ver +redetermining redetermine ver +redevelop redevelop ver +redeveloped redevelop ver +redeveloping redevelop ver +redevelopment redevelopment nom +redevelopments redevelopment nom +redevelops redevelop ver +redeye redeye nom +redeyes redeye nom +redfish redfish nom +redhead redhead nom +redheads redhead nom +redhorse redhorse nom +redhorses redhorse nom +redial redial nom +redialed redial ver +redialing redial ver +redials redial nom +redid redo ver +redirect redirect ver +redirected redirect ver +redirecting redirect ver +redirects redirect ver +rediscover rediscover ver +rediscovered rediscover ver +rediscoveries rediscovery nom +rediscovering rediscover ver +rediscovers rediscover ver +rediscovery rediscovery nom +redisposition redisposition nom +redispositions redisposition nom +redissolve redissolve ver +redissolved redissolve ver +redissolves redissolve ver +redissolving redissolve ver +redistribute redistribute ver +redistributed redistribute ver +redistributes redistribute ver +redistributing redistribute ver +redistribution redistribution nom +redistributions redistribution nom +redistrict redistrict ver +redistricted redistrict ver +redistricting redistrict ver +redistricts redistrict ver +redivide redivide ver +redivided redivide ver +redivides redivide ver +redividing redivide ver +redline redline ver +redlined redline ver +redlines redline ver +redlining redline ver +redlinings redlining nom +redneck redneck nom +rednecks redneck nom +redness redness nom +rednesses redness nom +redo redo ver +redoes redo ver +redoing redo ver +redolence redolence nom +redolences redolence nom +redone redo ver +redouble redouble nom +redoubled redouble ver +redoubles redouble nom +redoubling redouble ver +redoubt redoubt nom +redoubts redoubt nom +redound redound ver +redounded redound ver +redounding redound ver +redounds redound ver +redox redox nom +redoxes redox nom +redpoll redpoll nom +redpolls redpoll nom +redraft redraft nom +redrafted redraft ver +redrafting redraft ver +redrafts redraft nom +redraw redraw ver +redrawing redraw ver +redrawn redraw ver +redraws redraw ver +redress redress nom +redressed redress ver +redresses redress nom +redressing redress ver +redrew redraw ver +redroot redroot nom +redroots redroot nom +reds red nom +redshank redshank nom +redshanks redshank nom +redskin redskin nom +redskins redskin nom +redstart redstart nom +redstarts redstart nom +redtail redtail nom +redtails redtail nom +reduce reduce ver +reduced reduce ver +reducer reducer nom +reducers reducer nom +reduces reduce ver +reducing reduce ver +reduction reduction nom +reductionism reductionism nom +reductionisms reductionism nom +reductions reduction nom +reductive reductive nom +reductives reductive nom +redundance redundance nom +redundances redundance nom +redundancies redundancy nom +redundancy redundancy nom +reduplicate reduplicate ver +reduplicated reduplicate ver +reduplicates reduplicate ver +reduplicating reduplicate ver +reduplication reduplication nom +reduplications reduplication nom +reduviid reduviid nom +reduviids reduviid nom +redwing redwing nom +redwings redwing nom +redwood redwood nom +redwoods redwood nom +redye redye ver +redyed redye ver +redyeing redye ver +redyes redye ver +redying redye ver +reecho reecho ver +reechoed reecho ver +reechoes reecho ver +reechoing reecho ver +reed reed nom +reedbird reedbird nom +reedbirds reedbird nom +reeded reed ver +reedier reedy adj +reediest reedy adj +reediness reediness nom +reedinesses reediness nom +reeding reed ver +reedit reedit ver +reedited reedit ver +reediting reedit ver +reedits reedit ver +reeds reed nom +reeducate reeducate ver +reeducated reeducate ver +reeducates reeducate ver +reeducating reeducate ver +reeducation reeducation nom +reeducations reeducation nom +reedy reedy adj +reef reef nom +reefed reef ver +reefer reefer nom +reefers reefer nom +reefier reefy adj +reefiest reefy adj +reefing reef ver +reefs reef nom +reefy reefy adj +reek reek nom +reeked reek ver +reeking reek ver +reeks reek nom +reel reel nom +reelect reelect ver +reelected reelect ver +reelecting reelect ver +reelection reelection nom +reelections reelection nom +reelects reelect ver +reeled reel ver +reeling reel ver +reels reel nom +reembark reembark ver +reembarked reembark ver +reembarking reembark ver +reembarks reembark ver +reembodied reembody ver +reembodies reembody ver +reembody reembody ver +reembodying reembody ver +reemerge reemerge ver +reemerged reemerge ver +reemergence reemergence nom +reemergences reemergence nom +reemerges reemerge ver +reemerging reemerge ver +reemphasize reemphasize ver +reemphasized reemphasize ver +reemphasizes reemphasize ver +reemphasizing reemphasize ver +reemploy reemploy ver +reemployed reemploy ver +reemploying reemploy ver +reemployment reemployment nom +reemployments reemployment nom +reemploys reemploy ver +reenact reenact ver +reenacted reenact ver +reenacting reenact ver +reenactment reenactment nom +reenactments reenactment nom +reenacts reenact ver +reenforce reenforce ver +reenforced reenforce ver +reenforces reenforce ver +reenforcing reenforce ver +reengage reengage ver +reengaged reengage ver +reengages reengage ver +reengaging reengage ver +reenlist reenlist ver +reenlisted reenlist ver +reenlisting reenlist ver +reenlistment reenlistment nom +reenlistments reenlistment nom +reenlists reenlist ver +reenter reenter ver +reentered reenter ver +reentering reenter ver +reenters reenter ver +reentries reentry nom +reentry reentry nom +reequip reequip ver +reequipped reequip ver +reequipping reequip ver +reequips reequip ver +reestablish reestablish ver +reestablished reestablish ver +reestablishes reestablish ver +reestablishing reestablish ver +reestablishment reestablishment nom +reestablishments reestablishment nom +reevaluate reevaluate ver +reevaluated reevaluate ver +reevaluates reevaluate ver +reevaluating reevaluate ver +reevaluation reevaluation nom +reevaluations reevaluation nom +reeve reeve nom +reeves reeve nom +reeving reeve ver +reexamination reexamination nom +reexaminations reexamination nom +reexamine reexamine ver +reexamined reexamine ver +reexamines reexamine ver +reexamining reexamine ver +reexplain reexplain ver +reexplained reexplain ver +reexplaining reexplain ver +reexplains reexplain ver +reexport reexport ver +reexported reexport ver +reexporting reexport ver +reexports reexport ver +ref ref nom +reface reface ver +refaced reface ver +refaces reface ver +refacing reface ver +refashion refashion ver +refashioned refashion ver +refashioning refashion ver +refashions refashion ver +refasten refasten ver +refastened refasten ver +refastening refasten ver +refastens refasten ver +refection refection nom +refections refection nom +refectories refectory nom +refectory refectory nom +refer refer ver +referee referee nom +refereed referee ver +refereeing referee ver +referees referee nom +reference reference nom +referenced reference ver +references reference nom +referencing reference ver +referendum referendum nom +referendums referendum nom +referent referent nom +referents referent nom +referral referral nom +referrals referral nom +referred refer ver +referrer referrer nom +referrers referrer nom +referring refer ver +refers refer ver +reffed ref ver +reffing ref ver +refile refile ver +refiled refile ver +refiles refile ver +refiling refile ver +refill refill nom +refilled refill ver +refilling refill ver +refills refill nom +refinance refinance ver +refinanced refinance ver +refinances refinance ver +refinancing refinance ver +refine refine ver +refined refine ver +refinement refinement nom +refinements refinement nom +refiner refiner nom +refineries refinery nom +refiners refiner nom +refinery refinery nom +refines refine ver +refining refine ver +refinings refining nom +refinish refinish ver +refinished refinish ver +refinisher refinisher nom +refinishers refinisher nom +refinishes refinish ver +refinishing refinish ver +refit refit nom +refits refit nom +refitted refit ver +refitting refit ver +reflate reflate ver +reflated reflate ver +reflates reflate ver +reflating reflate ver +reflation reflation nom +reflations reflation nom +reflect reflect ver +reflectance reflectance nom +reflectances reflectance nom +reflected reflect ver +reflecting reflect ver +reflection reflection nom +reflections reflection nom +reflectivities reflectivity nom +reflectivity reflectivity nom +reflector reflector nom +reflectors reflector nom +reflects reflect ver +reflex reflex nom +reflexed reflex ver +reflexes reflex nom +reflexing reflex ver +reflexion reflexion nom +reflexions reflexion nom +reflexive reflexive nom +reflexiveness reflexiveness nom +reflexivenesses reflexiveness nom +reflexives reflexive nom +reflexivities reflexivity nom +reflexivity reflexivity nom +refloat refloat ver +refloated refloat ver +refloating refloat ver +refloats refloat ver +reflux reflux nom +refluxes reflux nom +refocus refocus ver +refocused refocus ver +refocuses refocus ver +refocusing refocus ver +refold refold ver +refolded refold ver +refolding refold ver +refolds refold ver +reforest reforest ver +reforestation reforestation nom +reforestations reforestation nom +reforested reforest ver +reforesting reforest ver +reforests reforest ver +reforge reforge ver +reforged reforge ver +reforges reforge ver +reforging reforge ver +reform reform nom +reformation reformation nom +reformations reformation nom +reformatories reformatory nom +reformatory reformatory nom +reformed reform ver +reformer reformer nom +reformers reformer nom +reforming reform ver +reformist reformist nom +reformists reformist nom +reforms reform nom +reformulate reformulate ver +reformulated reformulate ver +reformulates reformulate ver +reformulating reformulate ver +reformulation reformulation nom +reformulations reformulation nom +refortified refortify ver +refortifies refortify ver +refortify refortify ver +refortifying refortify ver +refract refract ver +refracted refract ver +refracting refract ver +refraction refraction nom +refractions refraction nom +refractiveness refractiveness nom +refractivenesses refractiveness nom +refractivities refractivity nom +refractivity refractivity nom +refractometer refractometer nom +refractometers refractometer nom +refractories refractory nom +refractoriness refractoriness nom +refractorinesses refractoriness nom +refractory refractory nom +refracts refract ver +refrain refrain nom +refrained refrain ver +refraining refrain ver +refrains refrain nom +refreeze refreeze ver +refreezes refreeze ver +refreezing refreeze ver +refresh refresh ver +refreshed refresh ver +refreshen refreshen ver +refreshened refreshen ver +refreshening refreshen ver +refreshens refreshen ver +refresher refresher nom +refreshers refresher nom +refreshes refresh ver +refreshing refresh ver +refreshment refreshment nom +refreshments refreshment nom +refrigerant refrigerant nom +refrigerants refrigerant nom +refrigerate refrigerate ver +refrigerated refrigerate ver +refrigerates refrigerate ver +refrigerating refrigerate ver +refrigeration refrigeration nom +refrigerations refrigeration nom +refrigerator refrigerator nom +refrigerators refrigerator nom +refroze refreeze ver +refrozen refreeze ver +refs ref nom +refuel refuel ver +refueled refuel ver +refueling refuel ver +refuels refuel ver +refuge refuge nom +refuged refuge ver +refugee refugee nom +refugees refugee nom +refuges refuge nom +refuging refuge ver +refulgence refulgence nom +refulgences refulgence nom +refulgencies refulgency nom +refulgency refulgency nom +refund refund nom +refunded refund ver +refunding refund ver +refunds refund nom +refurbish refurbish ver +refurbished refurbish ver +refurbishes refurbish ver +refurbishing refurbish ver +refurbishment refurbishment nom +refurbishments refurbishment nom +refurnish refurnish ver +refurnished refurnish ver +refurnishes refurnish ver +refurnishing refurnish ver +refusal refusal nom +refusals refusal nom +refuse refuse nom +refused refuse ver +refuses refuse nom +refusing refuse ver +refutation refutation nom +refutations refutation nom +refute refute ver +refuted refute ver +refuter refuter nom +refuters refuter nom +refutes refute ver +refuting refute ver +regain regain ver +regained regain ver +regaining regain ver +regains regain ver +regal regal nom +regale regale nom +regaled regale ver +regalement regalement nom +regalements regalement nom +regales regale nom +regaling regale ver +regals regal nom +regard regard nom +regarded regard ver +regarding regarding sw +regardless regardless sw +regards regards sw +regather regather ver +regathered regather ver +regathering regather ver +regathers regather ver +regatta regatta nom +regattas regatta nom +regencies regency nom +regency regency nom +regeneracies regeneracy nom +regeneracy regeneracy nom +regenerate regenerate ver +regenerated regenerate ver +regenerates regenerate ver +regenerating regenerate ver +regeneration regeneration nom +regenerations regeneration nom +regent regent nom +regents regent nom +reggae reggae nom +reggaes reggae nom +regicide regicide nom +regicides regicide nom +regime regime nom +regimen regimen nom +regimens regimen nom +regiment regiment nom +regimentation regimentation nom +regimentations regimentation nom +regimented regiment ver +regimenting regiment ver +regiments regiment nom +regimes regime nom +region region nom +regional regional nom +regionalism regionalism nom +regionalisms regionalism nom +regionals regional nom +regions region nom +register register nom +registered register ver +registering register ver +registers register nom +registrant registrant nom +registrants registrant nom +registrar registrar nom +registrars registrar nom +registration registration nom +registrations registration nom +registries registry nom +registry registry nom +regorge regorge ver +regorged regorge ver +regorges regorge ver +regorging regorge ver +regosol regosol nom +regosols regosol nom +regrade regrade ver +regraded regrade ver +regrades regrade ver +regrading regrade ver +regress regress nom +regressed regress ver +regresses regress nom +regressing regress ver +regression regression nom +regressions regression nom +regret regret nom +regrets regret nom +regretted regret ver +regretting regret ver +regrew regrow ver +regrind regrind ver +regrinding regrind ver +regrinds regrind ver +reground regrind ver +regroup regroup ver +regrouped regroup ver +regrouping regroup ver +regroups regroup ver +regrow regrow ver +regrowing regrow ver +regrown regrow ver +regrows regrow ver +regrowth regrowth nom +regrowths regrowth nom +regular regular nom +regularisation regularisation nom +regularisations regularisation nom +regularise regularise ver +regularised regularise ver +regularises regularise ver +regularising regularise ver +regularities regularity nom +regularity regularity nom +regularization regularization nom +regularizations regularization nom +regularize regularize ver +regularized regularize ver +regularizes regularize ver +regularizing regularize ver +regulars regular nom +regulate regulate ver +regulated regulate ver +regulates regulate ver +regulating regulate ver +regulation regulation nom +regulations regulation nom +regulator regulator nom +regulators regulator nom +regurgitate regurgitate ver +regurgitated regurgitate ver +regurgitates regurgitate ver +regurgitating regurgitate ver +regurgitation regurgitation nom +regurgitations regurgitation nom +rehab rehab nom +rehabbed rehab ver +rehabbing rehab ver +rehabilitate rehabilitate ver +rehabilitated rehabilitate ver +rehabilitates rehabilitate ver +rehabilitating rehabilitate ver +rehabilitation rehabilitation nom +rehabilitations rehabilitation nom +rehabs rehab nom +rehang rehang ver +rehanged rehang ver +rehanging rehang ver +rehangs rehang ver +rehash rehash nom +rehashed rehash ver +rehashes rehash nom +rehashing rehash ver +rehear rehear ver +reheard rehear ver +rehearing rehear ver +rehearings rehearing nom +rehears rehear ver +rehearsal rehearsal nom +rehearsals rehearsal nom +rehearse rehearse ver +rehearsed rehearse ver +rehearses rehearse ver +rehearsing rehearse ver +reheat reheat ver +reheated reheat ver +reheating reheat ver +reheats reheat ver +reheel reheel ver +reheeled reheel ver +reheeling reheel ver +reheels reheel ver +rehire rehire ver +rehired rehire ver +rehires rehire ver +rehiring rehire ver +rehouse rehouse ver +rehoused rehouse ver +rehouses rehouse ver +rehousing rehouse ver +rehung rehang ver +reification reification nom +reifications reification nom +reified reify ver +reifies reify ver +reify reify ver +reifying reify ver +reign reign nom +reigned reign ver +reigning reign ver +reignite reignite ver +reignited reignite ver +reignites reignite ver +reigniting reignite ver +reigns reign nom +reimburse reimburse ver +reimbursed reimburse ver +reimbursement reimbursement nom +reimbursements reimbursement nom +reimburses reimburse ver +reimbursing reimburse ver +reimpose reimpose ver +reimposed reimpose ver +reimposes reimpose ver +reimposing reimpose ver +reimposition reimposition nom +reimpositions reimposition nom +rein rein nom +reincarnate reincarnate ver +reincarnated reincarnate ver +reincarnates reincarnate ver +reincarnating reincarnate ver +reincarnation reincarnation nom +reincarnations reincarnation nom +reincorporate reincorporate ver +reincorporated reincorporate ver +reincorporates reincorporate ver +reincorporating reincorporate ver +reincorporation reincorporation nom +reincorporations reincorporation nom +reindeer reindeer nom +reined rein ver +reinfect reinfect ver +reinfected reinfect ver +reinfecting reinfect ver +reinfection reinfection nom +reinfections reinfection nom +reinfects reinfect ver +reinforce reinforce ver +reinforced reinforce ver +reinforcement reinforcement nom +reinforcements reinforcement nom +reinforcer reinforcer nom +reinforcers reinforcer nom +reinforces reinforce ver +reinforcing reinforce ver +reining rein ver +reinoculate reinoculate ver +reinoculated reinoculate ver +reinoculates reinoculate ver +reinoculating reinoculate ver +reins rein nom +reinsert reinsert ver +reinserted reinsert ver +reinserting reinsert ver +reinsertion reinsertion nom +reinsertions reinsertion nom +reinserts reinsert ver +reinspect reinspect ver +reinspected reinspect ver +reinspecting reinspect ver +reinspects reinspect ver +reinstall reinstall ver +reinstalled reinstall ver +reinstalling reinstall ver +reinstalls reinstall ver +reinstate reinstate ver +reinstated reinstate ver +reinstatement reinstatement nom +reinstatements reinstatement nom +reinstates reinstate ver +reinstating reinstate ver +reinsurance reinsurance nom +reinsurances reinsurance nom +reinsure reinsure ver +reinsured reinsure ver +reinsures reinsure ver +reinsuring reinsure ver +reintegrate reintegrate ver +reintegrated reintegrate ver +reintegrates reintegrate ver +reintegrating reintegrate ver +reintegration reintegration nom +reintegrations reintegration nom +reinterpret reinterpret ver +reinterpretation reinterpretation nom +reinterpretations reinterpretation nom +reinterpreted reinterpret ver +reinterpreting reinterpret ver +reinterprets reinterpret ver +reintroduce reintroduce ver +reintroduced reintroduce ver +reintroduces reintroduce ver +reintroducing reintroduce ver +reintroduction reintroduction nom +reintroductions reintroduction nom +reinvent reinvent ver +reinvented reinvent ver +reinventing reinvent ver +reinvention reinvention nom +reinventions reinvention nom +reinvents reinvent ver +reinvest reinvest ver +reinvested reinvest ver +reinvesting reinvest ver +reinvestment reinvestment nom +reinvestments reinvestment nom +reinvests reinvest ver +reinvigorate reinvigorate ver +reinvigorated reinvigorate ver +reinvigorates reinvigorate ver +reinvigorating reinvigorate ver +reissue reissue nom +reissued reissue ver +reissues reissue nom +reissuing reissue ver +reiterate reiterate ver +reiterated reiterate ver +reiterates reiterate ver +reiterating reiterate ver +reiteration reiteration nom +reiterations reiteration nom +reject reject nom +rejected reject ver +rejecting reject ver +rejection rejection nom +rejections rejection nom +rejects reject nom +rejig rejig ver +rejigged rejig ver +rejigging rejig ver +rejigs rejig ver +rejoice rejoice ver +rejoiced rejoice ver +rejoices rejoice ver +rejoicing rejoice ver +rejoicings rejoicing nom +rejoin rejoin ver +rejoinder rejoinder nom +rejoinders rejoinder nom +rejoined rejoin ver +rejoining rejoin ver +rejoins rejoin ver +rejudge rejudge ver +rejudged rejudge ver +rejudges rejudge ver +rejudging rejudge ver +rejuvenate rejuvenate ver +rejuvenated rejuvenate ver +rejuvenates rejuvenate ver +rejuvenating rejuvenate ver +rejuvenation rejuvenation nom +rejuvenations rejuvenation nom +rekindle rekindle ver +rekindled rekindle ver +rekindles rekindle ver +rekindling rekindle ver +relabel relabel ver +relabeled relabel ver +relabeling relabel ver +relabels relabel ver +relace relace ver +relaced relace ver +relaces relace ver +relacing relace ver +relaid relay ver +relapse relapse nom +relapsed relapse ver +relapses relapse nom +relapsing relapse ver +relate relate ver +related relate ver +relatedness relatedness nom +relatednesses relatedness nom +relater relater nom +relaters relater nom +relates relate ver +relating relate ver +relation relation nom +relations relation nom +relationship relationship nom +relationships relationship nom +relative relative nom +relatively relatively sw +relatives relative nom +relativism relativism nom +relativisms relativism nom +relativities relativity nom +relativity relativity nom +relativize relativize ver +relativized relativize ver +relativizes relativize ver +relativizing relativize ver +relaunch relaunch ver +relaunched relaunch ver +relaunches relaunch ver +relaunching relaunch ver +relax relax ver +relaxant relaxant nom +relaxants relaxant nom +relaxation relaxation nom +relaxations relaxation nom +relaxed relax ver +relaxer relaxer nom +relaxers relaxer nom +relaxes relax ver +relaxing relax ver +relay relay nom +relayed relay ver +relaying relay ver +relays relay nom +relearn relearn ver +relearned relearn ver +relearning relearn ver +relearns relearn ver +release release nom +released release ver +releases release nom +releasing release ver +relegate relegate ver +relegated relegate ver +relegates relegate ver +relegating relegate ver +relegation relegation nom +relegations relegation nom +relent relent ver +relented relent ver +relenting relent ver +relentlessness relentlessness nom +relentlessnesses relentlessness nom +relents relent ver +relevance relevance nom +relevances relevance nom +relevancies relevancy nom +relevancy relevancy nom +reliabilities reliability nom +reliability reliability nom +reliableness reliableness nom +reliablenesses reliableness nom +reliance reliance nom +reliances reliance nom +relic relic nom +relics relic nom +relict relict nom +relicts relict nom +relied rely ver +relief relief nom +reliefs relief nom +relies rely ver +relieve relieve ver +relieved relieve ver +reliever reliever nom +relievers reliever nom +relieves relieve ver +relieving relieve ver +relievo relievo nom +relievos relievo nom +relight relight ver +relighted relight ver +relighting relight ver +relights relight ver +religion religion nom +religionist religionist nom +religionists religionist nom +religions religion nom +religiosities religiosity nom +religiosity religiosity nom +religious religious nom +religiousness religiousness nom +religiousnesses religiousness nom +reline reline ver +relined reline ver +relines reline ver +relining reline ver +relinquish relinquish ver +relinquished relinquish ver +relinquishes relinquish ver +relinquishing relinquish ver +relinquishment relinquishment nom +relinquishments relinquishment nom +reliquaries reliquary nom +reliquary reliquary nom +relish relish nom +relished relish ver +relishes relish nom +relishing relish ver +relive relive ver +relived relive ver +relives relive ver +reliving relive ver +reload reload nom +reloaded reload ver +reloading reload ver +reloads reload nom +relocate relocate ver +relocated relocate ver +relocates relocate ver +relocating relocate ver +relocation relocation nom +relocations relocation nom +reluctance reluctance nom +reluctances reluctance nom +reluctivities reluctivity nom +reluctivity reluctivity nom +rely rely ver +relying rely ver +rem rem nom +remade remake ver +remain remain ver +remainder remainder nom +remaindered remainder ver +remaindering remainder ver +remainders remainder nom +remained remain ver +remaining remain ver +remains remain ver +remake remake nom +remakes remake nom +remaking remake ver +remand remand nom +remanded remand ver +remanding remand ver +remands remand nom +remap remap ver +remapped remap ver +remapping remap ver +remaps remap ver +remark remark nom +remarkableness remarkableness nom +remarkablenesses remarkableness nom +remarked remark ver +remarking remark ver +remarks remark nom +remarriage remarriage nom +remarriages remarriage nom +remarried remarry ver +remarries remarry ver +remarry remarry ver +remarrying remarry ver +rematch rematch nom +rematched rematch ver +rematches rematch nom +rematching rematch ver +remeasure remeasure ver +remeasured remeasure ver +remeasures remeasure ver +remeasuring remeasure ver +remediation remediation nom +remediations remediation nom +remedied remedy ver +remedies remedy nom +remedy remedy nom +remedying remedy ver +remelt remelt ver +remelted remelt ver +remelting remelt ver +remelts remelt ver +remember remember ver +remembered remember ver +remembering remember ver +remembers remember ver +remembrance remembrance nom +remembrances remembrance nom +remigrate remigrate ver +remigrated remigrate ver +remigrates remigrate ver +remigrating remigrate ver +remilitarization remilitarization nom +remilitarizations remilitarization nom +remilitarize remilitarize ver +remilitarized remilitarize ver +remilitarizes remilitarize ver +remilitarizing remilitarize ver +remind remind ver +reminded remind ver +reminder reminder nom +reminders reminder nom +reminding remind ver +reminds remind ver +reminisce reminisce ver +reminisced reminisce ver +reminiscence reminiscence nom +reminiscences reminiscence nom +reminisces reminisce ver +reminiscing reminisce ver +remission remission nom +remissions remission nom +remissness remissness nom +remissnesses remissness nom +remit remit nom +remits remit nom +remittal remittal nom +remittals remittal nom +remittance remittance nom +remittances remittance nom +remitted remit ver +remitting remit ver +remix remix nom +remixed remix ver +remixes remix nom +remixing remix ver +remnant remnant nom +remnants remnant nom +remodel remodel ver +remodeled remodel ver +remodeling remodel ver +remodels remodel ver +remold remold ver +remolded remold ver +remolding remold ver +remolds remold ver +remonstrance remonstrance nom +remonstrances remonstrance nom +remonstrant remonstrant nom +remonstrants remonstrant nom +remonstrate remonstrate ver +remonstrated remonstrate ver +remonstrates remonstrate ver +remonstrating remonstrate ver +remora remora nom +remoras remora nom +remorse remorse nom +remorselessness remorselessness nom +remorselessnesses remorselessness nom +remorses remorse nom +remote remote adj +remoteness remoteness nom +remotenesses remoteness nom +remoter remote adj +remotes remote nom +remotest remote adj +remotion remotion nom +remotions remotion nom +remould remould ver +remoulded remould ver +remoulding remould ver +remoulds remould ver +remount remount nom +remounted remount ver +remounting remount ver +remounts remount nom +removal removal nom +removals removal nom +remove remove nom +removed remove ver +remover remover nom +removers remover nom +removes remove nom +removing remove ver +rems rem nom +remuda remuda nom +remudas remuda nom +remunerate remunerate ver +remunerated remunerate ver +remunerates remunerate ver +remunerating remunerate ver +remuneration remuneration nom +remunerations remuneration nom +remunerator remunerator nom +remunerators remunerator nom +renaissance renaissance nom +renaissances renaissance nom +rename rename ver +renamed rename ver +renames rename ver +renaming rename ver +renascence renascence nom +renascences renascence nom +rend rend ver +render render nom +rendered render ver +rendering render ver +renderings rendering nom +renders render nom +rendezvous rendezvous nom +rendezvoused rendezvous ver +rendezvouses rendezvous ver +rendezvousing rendezvous ver +rending rend ver +rendition rendition nom +renditions rendition nom +rends rend ver +renegade renegade nom +renegaded renegade ver +renegades renegade nom +renegading renegade ver +renege renege nom +reneged renege ver +reneger reneger nom +renegers reneger nom +reneges renege nom +reneging renege ver +renegotiate renegotiate ver +renegotiated renegotiate ver +renegotiates renegotiate ver +renegotiating renegotiate ver +renegotiation renegotiation nom +renegotiations renegotiation nom +renew renew ver +renewable renewable nom +renewables renewable nom +renewal renewal nom +renewals renewal nom +renewed renew ver +renewing renew ver +renews renew ver +rennet rennet nom +rennets rennet nom +rennin rennin nom +rennins rennin nom +renominate renominate ver +renominated renominate ver +renominates renominate ver +renominating renominate ver +renomination renomination nom +renominations renomination nom +renormalize renormalize ver +renormalized renormalize ver +renormalizes renormalize ver +renormalizing renormalize ver +renounce renounce nom +renounced renounce ver +renouncement renouncement nom +renouncements renouncement nom +renounces renounce nom +renouncing renounce ver +renovate renovate ver +renovated renovate ver +renovates renovate ver +renovating renovate ver +renovation renovation nom +renovations renovation nom +renovator renovator nom +renovators renovator nom +renown renown nom +renowns renown nom +rent rend ver +rental rental nom +rentals rental nom +rente rente nom +rented rent ver +renter renter nom +renters renter nom +rentes rente nom +rentier rentier nom +rentiers rentier nom +renting rent ver +rents rent nom +renumber renumber ver +renumbered renumber ver +renumbering renumber ver +renumbers renumber ver +renunciation renunciation nom +renunciations renunciation nom +reoccupation reoccupation nom +reoccupations reoccupation nom +reoccupied reoccupy ver +reoccupies reoccupy ver +reoccupy reoccupy ver +reoccupying reoccupy ver +reoccur reoccur ver +reoccurred reoccur ver +reoccurring reoccur ver +reoccurs reoccur ver +reopen reopen ver +reopened reopen ver +reopening reopen ver +reopens reopen ver +reorder reorder nom +reordered reorder ver +reordering reorder ver +reorders reorder nom +reorganisation reorganisation nom +reorganisations reorganisation nom +reorganization reorganization nom +reorganizations reorganization nom +reorganize reorganize ver +reorganized reorganize ver +reorganizes reorganize ver +reorganizing reorganize ver +reorient reorient ver +reorientate reorientate ver +reorientated reorientate ver +reorientates reorientate ver +reorientating reorientate ver +reorientation reorientation nom +reorientations reorientation nom +reoriented reorient ver +reorienting reorient ver +reorients reorient ver +reovirus reovirus nom +reoviruses reovirus nom +rep rep nom +repack repack ver +repackage repackage ver +repackaged repackage ver +repackages repackage ver +repackaging repackage ver +repacked repack ver +repacking repack ver +repacks repack ver +repaid repay ver +repaint repaint nom +repainted repaint ver +repainting repaint ver +repaints repaint nom +repair repair nom +repaired repair ver +repairer repairer nom +repairers repairer nom +repairing repair ver +repairman repairman nom +repairmen repairman nom +repairs repair nom +reparation reparation nom +reparations reparation nom +repartee repartee nom +repartees repartee nom +repast repast nom +repasts repast nom +repatriate repatriate nom +repatriated repatriate ver +repatriates repatriate nom +repatriating repatriate ver +repatriation repatriation nom +repatriations repatriation nom +repave repave ver +repaved repave ver +repaves repave ver +repaving repave ver +repay repay ver +repaying repay ver +repayment repayment nom +repayments repayment nom +repays repay ver +repeal repeal nom +repealed repeal ver +repealing repeal ver +repeals repeal nom +repeat repeat nom +repeated repeat ver +repeater repeater nom +repeaters repeater nom +repeating repeat ver +repeatings repeating nom +repeats repeat nom +repel repel ver +repellant repellant nom +repellants repellant nom +repelled repel ver +repellent repellent nom +repellents repellent nom +repelling repel ver +repels repel ver +repent repent ver +repentance repentance nom +repentances repentance nom +repented repent ver +repenting repent ver +repents repent ver +repercussion repercussion nom +repercussions repercussion nom +repertoire repertoire nom +repertoires repertoire nom +repertories repertory nom +repertory repertory nom +repetition repetition nom +repetitions repetition nom +repetitiousness repetitiousness nom +repetitiousnesses repetitiousness nom +repetitiveness repetitiveness nom +repetitivenesses repetitiveness nom +rephotograph rephotograph nom +rephotographed rephotograph ver +rephotographing rephotograph ver +rephotographs rephotograph nom +rephrase rephrase ver +rephrased rephrase ver +rephrases rephrase ver +rephrasing rephrase ver +repine repine ver +repined repine ver +repines repine ver +repining repine ver +replace replace ver +replaced replace ver +replacement replacement nom +replacements replacement nom +replaces replace ver +replacing replace ver +replant replant ver +replanted replant ver +replanting replant ver +replants replant ver +replay replay nom +replayed replay ver +replaying replay ver +replays replay nom +replenish replenish ver +replenished replenish ver +replenishes replenish ver +replenishing replenish ver +replenishment replenishment nom +replenishments replenishment nom +replete replete ver +repleted replete ver +repleteness repleteness nom +repletenesses repleteness nom +repletes replete ver +repleting replete ver +repletion repletion nom +repletions repletion nom +replica replica nom +replicas replica nom +replicate replicate ver +replicated replicate ver +replicates replicate ver +replicating replicate ver +replication replication nom +replications replication nom +replied reply ver +replies reply nom +reply reply nom +replying reply ver +repoint repoint ver +repointed repoint ver +repointing repoint ver +repoints repoint ver +repopulate repopulate ver +repopulated repopulate ver +repopulates repopulate ver +repopulating repopulate ver +report report nom +reportage reportage nom +reportages reportage nom +reported report ver +reporter reporter nom +reporters reporter nom +reporting report ver +reportings reporting nom +reports report nom +repose repose nom +reposed repose ver +reposes repose nom +reposing repose ver +reposition reposition nom +repositioned reposition ver +repositioning reposition ver +repositions reposition nom +repositories repository nom +repository repository nom +repossess repossess ver +repossessed repossess ver +repossesses repossess ver +repossessing repossess ver +repossession repossession nom +repossessions repossession nom +repot repot ver +repots repot ver +repotted repot ver +repotting repot ver +repp repp nom +repps repp nom +reprehend reprehend ver +reprehended reprehend ver +reprehending reprehend ver +reprehends reprehend ver +reprehensibilities reprehensibility nom +reprehensibility reprehensibility nom +reprehension reprehension nom +reprehensions reprehension nom +represent represent ver +representation representation nom +representations representation nom +representative representative nom +representatives representative nom +represented represent ver +representing represent ver +represents represent ver +repress repress ver +repressed repress ver +represses repress ver +repressing repress ver +repression repression nom +repressions repression nom +reprice reprice ver +repriced reprice ver +reprices reprice ver +repricing reprice ver +reprieve reprieve nom +reprieved reprieve ver +reprieves reprieve nom +reprieving reprieve ver +reprimand reprimand nom +reprimanded reprimand ver +reprimanding reprimand ver +reprimands reprimand nom +reprint reprint nom +reprinted reprint ver +reprinting reprint ver +reprints reprint nom +reprisal reprisal nom +reprisals reprisal nom +reprise reprise nom +reprised reprise ver +reprises reprise nom +reprising reprise ver +reproach reproach nom +reproached reproach ver +reproaches reproach nom +reproaching reproach ver +reprobate reprobate nom +reprobated reprobate ver +reprobates reprobate nom +reprobating reprobate ver +reprobation reprobation nom +reprobations reprobation nom +reprocess reprocess ver +reprocessed reprocess ver +reprocesses reprocess ver +reprocessing reprocess ver +reproduce reproduce ver +reproduced reproduce ver +reproducer reproducer nom +reproducers reproducer nom +reproduces reproduce ver +reproducibilities reproducibility nom +reproducibility reproducibility nom +reproducing reproduce ver +reproduction reproduction nom +reproductions reproduction nom +reproductive reproductive nom +reproductives reproductive nom +reprogram reprogram ver +reprogrammed reprogram ver +reprogramming reprogram ver +reprograms reprogram ver +reproof reproof nom +reproofed reproof ver +reproofing reproof ver +reproofs reproof nom +reproval reproval nom +reprovals reproval nom +reprove reprove ver +reproved reprove ver +reproves reprove ver +reproving reprove ver +reps rep nom +reptile reptile nom +reptiles reptile nom +reptilian reptilian nom +reptilians reptilian nom +republic republic nom +republican republican nom +republicanism republicanism nom +republicanisms republicanism nom +republicans republican nom +republication republication nom +republications republication nom +republics republic nom +republish republish ver +republished republish ver +republishes republish ver +republishing republish ver +repudiate repudiate ver +repudiated repudiate ver +repudiates repudiate ver +repudiating repudiate ver +repudiation repudiation nom +repudiations repudiation nom +repudiator repudiator nom +repudiators repudiator nom +repugn repugn ver +repugnance repugnance nom +repugnances repugnance nom +repugned repugn ver +repugning repugn ver +repugns repugn ver +repulse repulse nom +repulsed repulse ver +repulses repulse nom +repulsing repulse ver +repulsion repulsion nom +repulsions repulsion nom +repulsiveness repulsiveness nom +repulsivenesses repulsiveness nom +repurchase repurchase nom +repurchased repurchase ver +repurchases repurchase nom +repurchasing repurchase ver +reputabilities reputability nom +reputability reputability nom +reputation reputation nom +reputations reputation nom +repute repute nom +reputed repute ver +reputes repute nom +reputing repute ver +request request nom +requested request ver +requesting request ver +requests request nom +requiem requiem nom +requiems requiem nom +requiescat requiescat nom +requiescats requiescat nom +require require ver +required require ver +requirement requirement nom +requirements requirement nom +requires require ver +requiring require ver +requisite requisite nom +requisiteness requisiteness nom +requisitenesses requisiteness nom +requisites requisite nom +requisition requisition nom +requisitioned requisition ver +requisitioning requisition ver +requisitions requisition nom +requital requital nom +requitals requital nom +requite requite ver +requited requite ver +requiter requiter nom +requiters requiter nom +requites requite ver +requiting requite ver +reran rerun ver +reread reread ver +rereading reread ver +rereads reread ver +rerebrace rerebrace nom +rerebraces rerebrace nom +rerecord rerecord ver +rerecorded rerecord ver +rerecording rerecord ver +rerecords rerecord ver +reredos reredos nom +reredoses reredos nom +reroute reroute ver +rerouted reroute ver +reroutes reroute ver +rerouting reroute ver +rerun rerun ver +rerunning rerun ver +reruns rerun nom +res re nom +resale resale nom +resales resale nom +rescale rescale ver +rescaled rescale ver +rescales rescale ver +rescaling rescale ver +reschedule reschedule ver +rescheduled reschedule ver +reschedules reschedule ver +rescheduling reschedule ver +rescind rescind ver +rescinded rescind ver +rescinding rescind ver +rescinds rescind ver +rescission rescission nom +rescissions rescission nom +rescript rescript nom +rescripts rescript nom +rescue rescue nom +rescued rescue ver +rescuer rescuer nom +rescuers rescuer nom +rescues rescue nom +rescuing rescue ver +reseal reseal ver +resealed reseal ver +resealing reseal ver +reseals reseal ver +research research nom +researched research ver +researcher researcher nom +researchers researcher nom +researches research nom +researching research ver +reseat reseat ver +reseated reseat ver +reseating reseat ver +reseats reseat ver +reseau reseau nom +reseaus reseau nom +resection resection nom +resections resection nom +reseda reseda nom +resedas reseda nom +reseed reseed ver +reseeded reseed ver +reseeding reseed ver +reseeds reseed ver +resell resell ver +reselling resell ver +resells resell ver +resemblance resemblance nom +resemblances resemblance nom +resemble resemble ver +resembled resemble ver +resembles resemble ver +resembling resemble ver +resent resent ver +resented resent ver +resentfulness resentfulness nom +resentfulnesses resentfulness nom +resenting resent ver +resentment resentment nom +resentments resentment nom +resents resent ver +reserpine reserpine nom +reserpines reserpine nom +reservation reservation nom +reservations reservation nom +reserve reserve nom +reserved reserve ver +reservedness reservedness nom +reservednesses reservedness nom +reserves reserve nom +reserving reserve ver +reservist reservist nom +reservists reservist nom +reservoir reservoir nom +reservoirs reservoir nom +reset reset ver +resets reset nom +resetting reset ver +resettle resettle ver +resettled resettle ver +resettlement resettlement nom +resettlements resettlement nom +resettles resettle ver +resettling resettle ver +resew resew ver +resewed resew ver +resewing resew ver +resews resew ver +resh resh nom +reshape reshape ver +reshaped reshape ver +reshapes reshape ver +reshaping reshape ver +resharpen resharpen ver +resharpened resharpen ver +resharpening resharpen ver +resharpens resharpen ver +reshes resh nom +reship reship ver +reshipment reshipment nom +reshipments reshipment nom +reshipped reship ver +reshipping reship ver +reships reship ver +reshoot reshoot ver +reshooting reshoot ver +reshoots reshoot ver +reshot reshoot ver +reshuffle reshuffle nom +reshuffled reshuffle ver +reshuffles reshuffle nom +reshuffling reshuffle ver +reside reside ver +resided reside ver +residence residence nom +residences residence nom +residencies residency nom +residency residency nom +resident resident nom +residents resident nom +resides reside ver +residing reside ver +residua residuum nom +residual residual nom +residuals residual nom +residue residue nom +residues residue nom +residuum residuum nom +resift resift ver +resifted resift ver +resifting resift ver +resifts resift ver +resign resign ver +resignation resignation nom +resignations resignation nom +resigned resign ver +resigning resign ver +resigns resign ver +resilience resilience nom +resiliences resilience nom +resiliencies resiliency nom +resiliency resiliency nom +resin resin nom +resinate resinate ver +resinated resinate ver +resinates resinate ver +resinating resinate ver +resined resin ver +resining resin ver +resinoid resinoid nom +resinoids resinoid nom +resins resin nom +resist resist nom +resistance resistance nom +resistances resistance nom +resistant resistant nom +resistants resistant nom +resisted resist ver +resister resister nom +resisters resister nom +resisting resist ver +resistivities resistivity nom +resistivity resistivity nom +resistor resistor nom +resistors resistor nom +resists resist nom +resize resize ver +resized resize ver +resizes resize ver +resizing resize ver +resold resell ver +resole resole ver +resoled resole ver +resoles resole ver +resoling resole ver +resolute resolute adj +resoluteness resoluteness nom +resolutenesses resoluteness nom +resoluter resolute adj +resolutest resolute adj +resolution resolution nom +resolutions resolution nom +resolve resolve nom +resolved resolve ver +resolvent resolvent nom +resolvents resolvent nom +resolves resolve nom +resolving resolve ver +resonance resonance nom +resonances resonance nom +resonant resonant nom +resonants resonant nom +resonate resonate ver +resonated resonate ver +resonates resonate ver +resonating resonate ver +resonator resonator nom +resonators resonator nom +resorcinol resorcinol nom +resorcinols resorcinol nom +resorption resorption nom +resorptions resorption nom +resort resort nom +resorted resort ver +resorting resort ver +resorts resort nom +resound resound ver +resounded resound ver +resounding resound ver +resounds resound ver +resource resource nom +resourcefulness resourcefulness nom +resourcefulnesses resourcefulness nom +resources resource nom +resow resow ver +resowed resow ver +resowing resow ver +resown resow ver +resows resow ver +respect respect nom +respectabilities respectability nom +respectability respectability nom +respected respect ver +respecter respecter nom +respecters respecter nom +respectfulness respectfulness nom +respectfulnesses respectfulness nom +respecting respect ver +respectively respectively sw +respects respect nom +respell respell ver +respelled respell ver +respelling respell ver +respells respell ver +respiration respiration nom +respirations respiration nom +respirator respirator nom +respirators respirator nom +respire respire ver +respired respire ver +respires respire ver +respiring respire ver +respite respite nom +respited respite ver +respites respite nom +respiting respite ver +resplendence resplendence nom +resplendences resplendence nom +resplendencies resplendency nom +resplendency resplendency nom +respond respond nom +responded respond ver +respondent respondent nom +respondents respondent nom +responder responder nom +responders responder nom +responding respond ver +responds respond nom +response response nom +responses response nom +responsibilities responsibility nom +responsibility responsibility nom +responsibleness responsibleness nom +responsiblenesses responsibleness nom +responsiveness responsiveness nom +responsivenesses responsiveness nom +respray respray ver +resprayed respray ver +respraying respray ver +resprays respray ver +rest rest nom +restaff restaff ver +restaffed restaff ver +restaffing restaff ver +restaffs restaff ver +restart restart nom +restarted restart ver +restarting restart ver +restarts restart nom +restate restate ver +restated restate ver +restatement restatement nom +restatements restatement nom +restates restate ver +restating restate ver +restaurant restaurant nom +restauranteur restauranteur nom +restauranteurs restauranteur nom +restaurants restaurant nom +restaurateur restaurateur nom +restaurateurs restaurateur nom +rested rest ver +restful restful adj +restfuller restful adj +restfullest restful adj +restfulness restfulness nom +restfulnesses restfulness nom +restharrow restharrow nom +restharrows restharrow nom +resting rest ver +restitch restitch ver +restitched restitch ver +restitches restitch ver +restitching restitch ver +restitute restitute ver +restituted restitute ver +restitutes restitute ver +restituting restitute ver +restitution restitution nom +restitutions restitution nom +restiveness restiveness nom +restivenesses restiveness nom +restlessness restlessness nom +restlessnesses restlessness nom +restock restock ver +restocked restock ver +restocking restock ver +restocks restock ver +restoration restoration nom +restorations restoration nom +restorative restorative nom +restoratives restorative nom +restore restore ver +restored restore ver +restorer restorer nom +restorers restorer nom +restores restore ver +restoring restore ver +restrain restrain ver +restrained restrain ver +restrainer restrainer nom +restrainers restrainer nom +restraining restrain ver +restrains restrain ver +restraint restraint nom +restraints restraint nom +restrengthen restrengthen ver +restrengthened restrengthen ver +restrengthening restrengthen ver +restrengthens restrengthen ver +restrict restrict ver +restricted restrict ver +restricting restrict ver +restriction restriction nom +restrictions restriction nom +restrictiveness restrictiveness nom +restrictivenesses restrictiveness nom +restricts restrict ver +restring restring ver +restringing restring ver +restrings restring ver +restroom restroom nom +restrooms restroom nom +restructure restructure ver +restructured restructure ver +restructures restructure ver +restructuring restructure ver +restructurings restructuring nom +restrung restring ver +rests rest nom +restudied restudy ver +restudies restudy nom +restudy restudy nom +restudying restudy ver +restyle restyle ver +restyled restyle ver +restyles restyle ver +restyling restyle ver +resubmit resubmit ver +resubmits resubmit ver +resubmitted resubmit ver +resubmitting resubmit ver +resubscribe resubscribe ver +resubscribed resubscribe ver +resubscribes resubscribe ver +resubscribing resubscribe ver +result result nom +resultant resultant nom +resultants resultant nom +resulted result ver +resulting result ver +results result nom +resume resume nom +resumed resume ver +resumes resume nom +resuming resume ver +resumption resumption nom +resumptions resumption nom +resupplied resupply ver +resupplies resupply ver +resupply resupply ver +resupplying resupply ver +resurface resurface ver +resurfaced resurface ver +resurfaces resurface ver +resurfacing resurface ver +resurgence resurgence nom +resurgences resurgence nom +resurrect resurrect ver +resurrected resurrect ver +resurrecting resurrect ver +resurrection resurrection nom +resurrections resurrection nom +resurrects resurrect ver +resurvey resurvey nom +resurveyed resurvey ver +resurveying resurvey ver +resurveys resurvey nom +resuscitate resuscitate ver +resuscitated resuscitate ver +resuscitates resuscitate ver +resuscitating resuscitate ver +resuscitation resuscitation nom +resuscitations resuscitation nom +resuscitator resuscitator nom +resuscitators resuscitator nom +ret ret ver +retail retail nom +retailed retail ver +retailer retailer nom +retailers retailer nom +retailing retail ver +retailings retailing nom +retails retail nom +retain retain ver +retained retain ver +retainer retainer nom +retainers retainer nom +retaining retain ver +retains retain ver +retake retake nom +retaken retake ver +retakes retake nom +retaking retake ver +retakings retaking nom +retaliate retaliate ver +retaliated retaliate ver +retaliates retaliate ver +retaliating retaliate ver +retaliation retaliation nom +retaliations retaliation nom +retaliator retaliator nom +retaliators retaliator nom +retard retard nom +retardant retardant nom +retardants retardant nom +retardation retardation nom +retardations retardation nom +retarded retard ver +retarder retarder nom +retarders retarder nom +retarding retard ver +retards retard nom +retaught reteach ver +retch retch nom +retched retch ver +retches retch nom +retching retch ver +reteach reteach ver +reteaches reteach ver +reteaching reteach ver +retell retell ver +retelling retell ver +retells retell ver +retem retem nom +retems retem nom +retention retention nom +retentions retention nom +retentiveness retentiveness nom +retentivenesses retentiveness nom +retentivities retentivity nom +retentivity retentivity nom +retest retest nom +retested retest ver +retesting retest ver +retests retest nom +rethink rethink nom +rethinking rethink ver +rethinks rethink nom +rethought rethink ver +reticence reticence nom +reticences reticence nom +reticle reticle nom +reticles reticle nom +reticulate reticulate ver +reticulated reticulate ver +reticulates reticulate ver +reticulating reticulate ver +reticulation reticulation nom +reticulations reticulation nom +reticule reticule nom +reticules reticule nom +reticulum reticulum nom +reticulums reticulum nom +retie retie ver +retied retie ver +reties retie ver +retina retina nom +retinal retinal nom +retinals retinal nom +retinas retina nom +retinene retinene nom +retinenes retinene nom +retinitides retinitis nom +retinitis retinitis nom +retinol retinol nom +retinols retinol nom +retinue retinue nom +retinues retinue nom +retire retire ver +retired retire ver +retiree retiree nom +retirees retiree nom +retirement retirement nom +retirements retirement nom +retires retire ver +retiring retire ver +retold retell ver +retook retake ver +retool retool ver +retooled retool ver +retooling retool ver +retools retool ver +retort retort nom +retorted retort ver +retorting retort ver +retorts retort nom +retouch retouch nom +retouched retouch ver +retouches retouch nom +retouching retouch ver +retrace retrace ver +retraced retrace ver +retraces retrace ver +retracing retrace ver +retract retract ver +retracted retract ver +retracting retract ver +retraction retraction nom +retractions retraction nom +retractor retractor nom +retractors retractor nom +retracts retract ver +retrain retrain ver +retrained retrain ver +retraining retrain ver +retrains retrain ver +retranslate retranslate ver +retranslated retranslate ver +retranslates retranslate ver +retranslating retranslate ver +retransmit retransmit ver +retransmits retransmit ver +retransmitted retransmit ver +retransmitting retransmit ver +retread retread nom +retreaded retread ver +retreading retread ver +retreads retread nom +retreat retreat nom +retreatant retreatant nom +retreatants retreatant nom +retreated retreat ver +retreating retreat ver +retreats retreat nom +retrench retrench ver +retrenched retrench ver +retrenches retrench ver +retrenching retrench ver +retrenchment retrenchment nom +retrenchments retrenchment nom +retrial retrial nom +retrials retrial nom +retribution retribution nom +retributions retribution nom +retried retry ver +retries retry ver +retrieval retrieval nom +retrievals retrieval nom +retrieve retrieve nom +retrieved retrieve ver +retriever retriever nom +retrievers retriever nom +retrieves retrieve nom +retrieving retrieve ver +retrod retread ver +retrodden retread ver +retrofire retrofire ver +retrofired retrofire ver +retrofires retrofire ver +retrofiring retrofire ver +retrofit retrofit ver +retrofits retrofit ver +retrofitted retrofit ver +retrofitting retrofit ver +retroflection retroflection nom +retroflections retroflection nom +retroflexion retroflexion nom +retroflexions retroflexion nom +retrograde retrograde ver +retrograded retrograde ver +retrogrades retrograde ver +retrograding retrograde ver +retrogress retrogress ver +retrogressed retrogress ver +retrogresses retrogress ver +retrogressing retrogress ver +retrogression retrogression nom +retrogressions retrogression nom +retrorocket retrorocket nom +retrorockets retrorocket nom +retrospect retrospect nom +retrospected retrospect ver +retrospecting retrospect ver +retrospection retrospection nom +retrospections retrospection nom +retrospective retrospective nom +retrospectives retrospective nom +retrospects retrospect nom +retroversion retroversion nom +retroversions retroversion nom +retrovirus retrovirus nom +retroviruses retrovirus nom +retry retry ver +retrying retry ver +rets ret ver +retsina retsina nom +retsinas retsina nom +retted ret ver +retting ret ver +return return nom +returnable returnable nom +returnables returnable nom +returned return ver +returnee returnee nom +returnees returnee nom +returner returner nom +returners returner nom +returning return ver +returns return nom +retying retie ver +retype retype ver +retyped retype ver +retypes retype ver +retyping retype ver +reunification reunification nom +reunifications reunification nom +reunified reunify ver +reunifies reunify ver +reunify reunify ver +reunifying reunify ver +reunion reunion nom +reunions reunion nom +reunite reunite ver +reunited reunite ver +reunites reunite ver +reuniting reunite ver +reupholster reupholster ver +reupholstered reupholster ver +reupholstering reupholster ver +reupholsters reupholster ver +reuptake reuptake nom +reuptakes reuptake nom +reuse reuse ver +reused reuse ver +reuses reuse ver +reusing reuse ver +rev rev nom +revaluation revaluation nom +revaluations revaluation nom +revalue revalue ver +revalued revalue ver +revalues revalue ver +revaluing revalue ver +revamp revamp nom +revamped revamp ver +revamping revamp ver +revamps revamp nom +reveal reveal nom +revealed reveal ver +revealing reveal ver +revealings revealing nom +reveals reveal nom +reveille reveille nom +reveilles reveille nom +revel revel nom +revelation revelation nom +revelations revelation nom +reveled revel ver +reveler reveler nom +revelers reveler nom +reveling revel ver +reveller reveller nom +revellers reveller nom +revelries revelry nom +revelry revelry nom +revels revel nom +revenge revenge nom +revenged revenge ver +revenges revenge nom +revenging revenge ver +revenue revenue nom +revenuer revenuer nom +revenuers revenuer nom +revenues revenue nom +reverberate reverberate ver +reverberated reverberate ver +reverberates reverberate ver +reverberating reverberate ver +reverberation reverberation nom +reverberations reverberation nom +revere revere nom +revered revere ver +reverence reverence nom +reverenced reverence ver +reverences reverence nom +reverencing reverence ver +reverend reverend nom +reverends reverend nom +reveres revere nom +reverie reverie nom +reveries reverie nom +revering revere ver +revers revers nom +reversal reversal nom +reversals reversal nom +reverse reverse nom +reversed reverse ver +reverses reverse nom +reversibilities reversibility nom +reversibility reversibility nom +reversible reversible nom +reversibles reversible nom +reversing reverse ver +reversion reversion nom +reversioner reversioner nom +reversioners reversioner nom +reversions reversion nom +revert revert nom +reverted revert ver +reverting revert ver +reverts revert nom +revery revery nom +revetment revetment nom +revetments revetment nom +review review nom +reviewed review ver +reviewer reviewer nom +reviewers reviewer nom +reviewing review ver +reviews review nom +revile revile ver +reviled revile ver +revilement revilement nom +revilements revilement nom +reviler reviler nom +revilers reviler nom +reviles revile ver +reviling revile ver +revisal revisal nom +revisals revisal nom +revise revise nom +revised revise ver +reviser reviser nom +revisers reviser nom +revises revise nom +revising revise ver +revision revision nom +revisionism revisionism nom +revisionisms revisionism nom +revisionist revisionist nom +revisionists revisionist nom +revisions revision nom +revisit revisit ver +revisited revisit ver +revisiting revisit ver +revisits revisit ver +revitalisation revitalisation nom +revitalisations revitalisation nom +revitalization revitalization nom +revitalizations revitalization nom +revitalize revitalize ver +revitalized revitalize ver +revitalizes revitalize ver +revitalizing revitalize ver +revival revival nom +revivalism revivalism nom +revivalisms revivalism nom +revivalist revivalist nom +revivalists revivalist nom +revivals revival nom +revive revive ver +revived revive ver +revives revive ver +revivification revivification nom +revivifications revivification nom +revivified revivify ver +revivifies revivify ver +revivify revivify ver +revivifying revivify ver +reviving revive ver +revocation revocation nom +revocations revocation nom +revoke revoke nom +revoked revoke ver +revokes revoke nom +revoking revoke ver +revolt revolt nom +revolted revolt ver +revolting revolt ver +revolts revolt nom +revolution revolution nom +revolutionaries revolutionary nom +revolutionary revolutionary nom +revolutionise revolutionise ver +revolutionised revolutionise ver +revolutionises revolutionise ver +revolutionising revolutionise ver +revolutionist revolutionist nom +revolutionists revolutionist nom +revolutionize revolutionize ver +revolutionized revolutionize ver +revolutionizes revolutionize ver +revolutionizing revolutionize ver +revolutions revolution nom +revolve revolve ver +revolved revolve ver +revolver revolver nom +revolvers revolver nom +revolves revolve ver +revolving revolve ver +revs rev nom +revue revue nom +revues revue nom +revulsion revulsion nom +revulsions revulsion nom +revved rev ver +revving rev ver +reward reward nom +rewarded reward ver +rewarding reward ver +rewards reward nom +rewarm rewarm ver +rewarmed rewarm ver +rewarming rewarm ver +rewarms rewarm ver +rewash rewash ver +rewashed rewash ver +rewashes rewash ver +rewashing rewash ver +reweave reweave ver +reweaves reweave ver +reweaving reweave ver +rewed rewed ver +rewedded rewed ver +rewedding rewed ver +reweds rewed ver +reweigh reweigh ver +reweighed reweigh ver +reweighing reweigh ver +reweighs reweigh ver +rewind rewind nom +rewinding rewind ver +rewinds rewind nom +rewire rewire ver +rewired rewire ver +rewires rewire ver +rewiring rewire ver +reword reword ver +reworded reword ver +rewording reword ver +rewords reword ver +rework rework ver +reworked rework ver +reworking rework ver +reworks rework ver +rewound rewind ver +rewove reweave ver +rewoven reweave ver +rewrite rewrite nom +rewriter rewriter nom +rewriters rewriter nom +rewrites rewrite nom +rewriting rewrite ver +rewritten rewrite ver +rewrote rewrite ver +rezone rezone ver +rezoned rezone ver +rezones rezone ver +rezoning rezone ver +rhabdovirus rhabdovirus nom +rhabdoviruses rhabdovirus nom +rhapsodies rhapsody nom +rhapsodize rhapsodize ver +rhapsodized rhapsodize ver +rhapsodizes rhapsodize ver +rhapsodizing rhapsodize ver +rhapsody rhapsody nom +rhea rhea nom +rheas rhea nom +rhenium rhenium nom +rheniums rhenium nom +rheologies rheology nom +rheology rheology nom +rheostat rheostat nom +rheostats rheostat nom +rhesus rhesus nom +rhesuses rhesus nom +rhetoric rhetoric nom +rhetorician rhetorician nom +rhetoricians rhetorician nom +rhetorics rhetoric nom +rheum rheum nom +rheumatic rheumatic nom +rheumatics rheumatic nom +rheumatism rheumatism nom +rheumatisms rheumatism nom +rheumatologies rheumatology nom +rheumatologist rheumatologist nom +rheumatologists rheumatologist nom +rheumatology rheumatology nom +rheumier rheumy adj +rheumiest rheumy adj +rheums rheum nom +rheumy rheumy adj +rhinestone rhinestone nom +rhinestones rhinestone nom +rhinitides rhinitis nom +rhinitis rhinitis nom +rhino rhino nom +rhinoceros rhinoceros nom +rhinoceroses rhinoceros nom +rhinoplasties rhinoplasty nom +rhinoplasty rhinoplasty nom +rhinos rhino nom +rhizoid rhizoid nom +rhizoids rhizoid nom +rhizome rhizome nom +rhizomes rhizome nom +rhizomorph rhizomorph nom +rhizomorphs rhizomorph nom +rhizopod rhizopod nom +rhizopodan rhizopodan nom +rhizopodans rhizopodan nom +rhizopods rhizopod nom +rhizopus rhizopus nom +rhizopuses rhizopus nom +rho rho nom +rhodium rhodium nom +rhodiums rhodium nom +rhodochrosite rhodochrosite nom +rhodochrosites rhodochrosite nom +rhododendron rhododendron nom +rhododendrons rhododendron nom +rhodopsin rhodopsin nom +rhodopsins rhodopsin nom +rhomb rhomb nom +rhombencephalon rhombencephalon nom +rhombencephalons rhombencephalon nom +rhombohedron rhombohedron nom +rhombohedrons rhombohedron nom +rhomboid rhomboid nom +rhomboids rhomboid nom +rhombs rhomb nom +rhombus rhombus nom +rhombuses rhombus nom +rhonchi rhonchus nom +rhonchus rhonchus nom +rhos rho nom +rhubarb rhubarb nom +rhubarbs rhubarb nom +rhumb rhumb nom +rhumba rhumba nom +rhumbaed rhumba ver +rhumbaing rhumba ver +rhumbas rhumba nom +rhumbs rhumb nom +rhyme rhyme nom +rhymed rhyme ver +rhymer rhymer nom +rhymers rhymer nom +rhymes rhyme nom +rhymester rhymester nom +rhymesters rhymester nom +rhyming rhyme ver +rhyolite rhyolite nom +rhyolites rhyolite nom +rhythm rhythm nom +rhythmic rhythmic nom +rhythmicities rhythmicity nom +rhythmicity rhythmicity nom +rhythmics rhythmic nom +rhythms rhythm nom +rhytidectomies rhytidectomy nom +rhytidectomy rhytidectomy nom +rial rial nom +rials rial nom +riata riata nom +riatas riata nom +rib rib nom +ribald ribald nom +ribaldries ribaldry nom +ribaldry ribaldry nom +ribalds ribald nom +riband riband nom +ribands riband nom +ribband ribband nom +ribbands ribband nom +ribbed rib ver +ribber ribber nom +ribbers ribber nom +ribbing rib ver +ribbings ribbing nom +ribbon ribbon nom +ribboned ribbon ver +ribbonfish ribbonfish nom +ribboning ribbon ver +ribbons ribbon nom +ribgrass ribgrass nom +ribgrasses ribgrass nom +ribier ribier nom +ribiers ribier nom +riboflavin riboflavin nom +riboflavins riboflavin nom +ribose ribose nom +riboses ribose nom +ribosome ribosome nom +ribosomes ribosome nom +ribs rib nom +ribwort ribwort nom +ribworts ribwort nom +rice rice nom +ricebird ricebird nom +ricebirds ricebird nom +riced rice ver +ricer ricer nom +ricers ricer nom +rices rice nom +rich rich adj +richer rich adj +riches rich nom +richest rich adj +richness richness nom +richnesses richness nom +richweed richweed nom +richweeds richweed nom +ricin ricin nom +ricing rice ver +ricins ricin nom +rick rick nom +ricked rick ver +ricketier rickety adj +ricketiest rickety adj +ricketiness ricketiness nom +ricketinesses ricketiness nom +rickettsia rickettsia nom +rickettsias rickettsia nom +rickety rickety adj +rickey rickey nom +rickeys rickey nom +ricking rick ver +rickrack rickrack nom +rickracks rickrack nom +ricks rick nom +ricksha ricksha nom +rickshas ricksha nom +rickshaw rickshaw nom +rickshaws rickshaw nom +ricochet ricochet nom +ricocheted ricochet ver +ricocheting ricochet ver +ricochets ricochet nom +ricotta ricotta nom +ricottas ricotta nom +ricrac ricrac nom +ricracs ricrac nom +rictus rictus nom +rictuses rictus nom +rid rid ver +riddance riddance nom +riddances riddance nom +ridden ride ver +ridding rid ver +riddle riddle nom +riddled riddle ver +riddles riddle nom +riddling riddle ver +ride ride nom +rider rider nom +riders rider nom +ridership ridership nom +riderships ridership nom +rides ride nom +ridge ridge nom +ridged ridge ver +ridgel ridgel nom +ridgeling ridgeling nom +ridgels ridgel nom +ridgepole ridgepole nom +ridgepoles ridgepole nom +ridges ridge nom +ridgier ridgy adj +ridgiest ridgy adj +ridgil ridgil nom +ridgils ridgil nom +ridging ridge ver +ridgling ridgling nom +ridglings ridgling nom +ridgy ridgy adj +ridicule ridicule nom +ridiculed ridicule ver +ridicules ridicule nom +ridiculing ridicule ver +ridiculousness ridiculousness nom +ridiculousnesses ridiculousness nom +riding ride ver +ridings riding nom +ridley ridley nom +ridleys ridley nom +rids rid ver +riel riel nom +riels riel nom +rife rife adj +rifer rife adj +rifest rife adj +riff riff nom +riffed riff ver +riffing riff ver +riffle riffle nom +riffled riffle ver +riffles riffle nom +riffling riffle ver +riffraff riffraff nom +riffraffs riffraff nom +riffs riff nom +rifle rifle nom +riflebird riflebird nom +riflebirds riflebird nom +rifled rifle ver +rifleman rifleman nom +riflemen rifleman nom +rifler rifler nom +riflers rifler nom +rifles rifle nom +rifling rifle ver +rift rift nom +rifted rift ver +rifting rift ver +rifts rift nom +rig rig nom +rigamarole rigamarole nom +rigamaroles rigamarole nom +rigatoni rigatoni nom +rigged rig ver +rigger rigger nom +riggers rigger nom +rigging rig ver +riggings rigging nom +right right sw +righted right ver +righteousness righteousness nom +righteousnesses righteousness nom +righter right adj +rightest right adj +rightfulness rightfulness nom +rightfulnesses rightfulness nom +righting right ver +rightism rightism nom +rightisms rightism nom +rightist rightist nom +rightists rightist nom +rightness rightness nom +rightnesses rightness nom +rights right nom +rightsize rightsize ver +rightsized rightsize ver +rightsizes rightsize ver +rightsizing rightsize ver +rigid rigid adj +rigider rigid adj +rigidest rigid adj +rigidified rigidify ver +rigidifies rigidify ver +rigidify rigidify ver +rigidifying rigidify ver +rigidities rigidity nom +rigidity rigidity nom +rigidness rigidness nom +rigidnesses rigidness nom +rigmarole rigmarole nom +rigmaroles rigmarole nom +rigor rigor nom +rigorousness rigorousness nom +rigorousnesses rigorousness nom +rigors rigor nom +rigour rigour nom +rigours rigour nom +rigout rigout nom +rigouts rigout nom +rigs rig nom +rile rile ver +riled rile ver +riles rile ver +rilievo rilievo nom +rilievos rilievo nom +riling rile ver +rill rill nom +rills rill nom +rim rim nom +rime rime nom +rimed rime ver +rimes rime nom +rimier rimy adj +rimiest rimy adj +riming rime ver +rimmed rim ver +rimming rim ver +rims rim nom +rimu rimu nom +rimus rimu nom +rimy rimy adj +rind rind nom +rinderpest rinderpest nom +rinderpests rinderpest nom +rinds rind nom +ring ring nom +ringdove ringdove nom +ringdoves ringdove nom +ringed ring ver +ringer ringer nom +ringers ringer nom +ringgit ringgit nom +ringgits ringgit nom +ringhals ringhals nom +ringhalses ringhals nom +ringing ring ver +ringings ringing nom +ringleader ringleader nom +ringleaders ringleader nom +ringlet ringlet nom +ringlets ringlet nom +ringmaster ringmaster nom +ringmasters ringmaster nom +rings ring nom +ringside ringside nom +ringsides ringside nom +ringtail ringtail nom +ringtails ringtail nom +ringworm ringworm nom +ringworms ringworm nom +rink rink nom +rinkhals rinkhals nom +rinkhalses rinkhals nom +rinks rink nom +rinse rinse nom +rinsed rinse ver +rinses rinse nom +rinsing rinse ver +rinsings rinsing nom +riot riot nom +rioted riot ver +rioter rioter nom +rioters rioter nom +rioting riot ver +riotings rioting nom +riots riot nom +rip rip nom +riparian riparian nom +riparians riparian nom +ripcord ripcord nom +ripcords ripcord nom +ripe ripe adj +ripen ripen ver +ripened ripen ver +ripeness ripeness nom +ripenesses ripeness nom +ripening ripen ver +ripenings ripening nom +ripens ripen ver +riper ripe adj +ripest ripe adj +ripoff ripoff nom +ripoffs ripoff nom +ripost ripost nom +riposte riposte nom +riposted ripost ver +ripostes riposte nom +riposting ripost ver +riposts ripost nom +ripped rip ver +ripper ripper nom +rippers ripper nom +ripping rip ver +ripple ripple nom +rippled ripple ver +ripples ripple nom +ripplier ripply adj +rippliest ripply adj +rippling ripple ver +ripplings rippling nom +ripply ripply adj +rips rip nom +ripsaw ripsaw nom +ripsawed ripsaw ver +ripsawing ripsaw ver +ripsaws ripsaw nom +riptide riptide nom +riptides riptide nom +rise rise nom +risen rise ver +riser riser nom +risers riser nom +rises rise nom +risibilities risibility nom +risibility risibility nom +rising rise ver +risings rising nom +risk risk nom +risked risk ver +riskier risky adj +riskiest risky adj +riskiness riskiness nom +riskinesses riskiness nom +risking risk ver +risks risk nom +risky risky adj +risotto risotto nom +risottos risotto nom +rissole rissole nom +rissoles rissole nom +rite rite nom +rites rite nom +ritual ritual nom +ritualism ritualism nom +ritualisms ritualism nom +ritualist ritualist nom +ritualists ritualist nom +ritualize ritualize ver +ritualized ritualize ver +ritualizes ritualize ver +ritualizing ritualize ver +rituals ritual nom +ritzier ritzy adj +ritziest ritzy adj +ritzy ritzy adj +rival rival nom +rivaled rival ver +rivaling rival ver +rivalries rivalry nom +rivalry rivalry nom +rivals rival nom +rive rive ver +rived rive ver +river river nom +riverbank riverbank nom +riverbanks riverbank nom +riverbed riverbed nom +riverbeds riverbed nom +riverboat riverboat nom +riverboats riverboat nom +rivers river nom +riverside riverside nom +riversides riverside nom +rives rive ver +rivet rivet nom +riveted rivet ver +riveter riveter nom +riveters riveter nom +riveting rivet ver +rivets rivet nom +riving rive ver +rivulet rivulet nom +rivulets rivulet nom +riyal riyal nom +riyals riyal nom +roach roach nom +roached roach ver +roaches roach nom +roaching roach ver +road road nom +roadbed roadbed nom +roadbeds roadbed nom +roadblock roadblock nom +roadblocked roadblock ver +roadblocking roadblock ver +roadblocks roadblock nom +roadhouse roadhouse nom +roadhouses roadhouse nom +roadie roadie nom +roadies roadie nom +roadkill roadkill nom +roadkills roadkill nom +roadman roadman nom +roadmen roadman nom +roadrunner roadrunner nom +roadrunners roadrunner nom +roads road nom +roadshow roadshow nom +roadshows roadshow nom +roadside roadside nom +roadsides roadside nom +roadstead roadstead nom +roadsteads roadstead nom +roadster roadster nom +roadsters roadster nom +roadway roadway nom +roadways roadway nom +roadwork roadwork nom +roadworks roadwork nom +roadworthier roadworthy adj +roadworthiest roadworthy adj +roadworthiness roadworthiness nom +roadworthinesses roadworthiness nom +roadworthy roadworthy adj +roam roam nom +roamed roam ver +roamer roamer nom +roamers roamer nom +roaming roam ver +roams roam nom +roan roan nom +roans roan nom +roar roar nom +roared roar ver +roarer roarer nom +roarers roarer nom +roaring roar ver +roarings roaring nom +roars roar nom +roast roast nom +roasted roast ver +roaster roaster nom +roasters roaster nom +roasting roast ver +roastings roasting nom +roasts roast nom +rob rob ver +robbed rob ver +robber robber nom +robberies robbery nom +robbers robber nom +robbery robbery nom +robbing rob ver +robe robe nom +robed robe ver +robes robe nom +robin robin nom +robing robe ver +robins robin nom +roble roble nom +robles roble nom +robot robot nom +robotize robotize ver +robotized robotize ver +robotizes robotize ver +robotizing robotize ver +robots robot nom +robs rob ver +robust robust adj +robuster robust adj +robustest robust adj +robustness robustness nom +robustnesses robustness nom +roc roc nom +rocambole rocambole nom +rocamboles rocambole nom +rock rock nom +rockabillies rockabilly nom +rockabilly rockabilly nom +rockcress rockcress nom +rockcresses rockcress nom +rocked rock ver +rocker rocker nom +rockeries rockery nom +rockers rocker nom +rockery rockery nom +rocket rocket nom +rocketed rocket ver +rocketing rocket ver +rocketries rocketry nom +rocketry rocketry nom +rockets rocket nom +rockfall rockfall nom +rockfalls rockfall nom +rockfish rockfish nom +rockier rocky adj +rockiest rocky adj +rockiness rockiness nom +rockinesses rockiness nom +rocking rock ver +rockrose rockrose nom +rockroses rockrose nom +rocks rock nom +rockslide rockslide nom +rockslides rockslide nom +rockweed rockweed nom +rockweeds rockweed nom +rocky rocky adj +rococo rococo nom +rococos rococo nom +rocs roc nom +rod rod nom +rodded rod ver +rodding rod ver +rode ride ver +rodent rodent nom +rodents rodent nom +rodeo rodeo nom +rodeoed rodeo ver +rodeoing rodeo ver +rodeos rodeo nom +rodes rode nom +rodomontade rodomontade nom +rodomontades rodomontade nom +rods rod nom +roe roe nom +roebuck roebuck nom +roebucks roebuck nom +roentgen roentgen nom +roentgenogram roentgenogram nom +roentgenograms roentgenogram nom +roentgenographies roentgenography nom +roentgenography roentgenography nom +roentgens roentgen nom +roes roe nom +rogation rogation nom +rogations rogation nom +roger roger ver +rogered roger ver +rogering roger ver +rogers roger ver +rogue rogue nom +rogued rogue ver +rogueries roguery nom +roguery roguery nom +rogues rogue nom +roguing rogue ver +roguishness roguishness nom +roguishnesses roguishness nom +roil roil ver +roiled roil ver +roilier roily adj +roiliest roily adj +roiling roil ver +roils roil ver +roily roily adj +roister roister ver +roistered roister ver +roisterer roisterer nom +roisterers roisterer nom +roistering roister ver +roisters roister ver +role role nom +roles role nom +roll roll nom +rollback rollback nom +rollbacks rollback nom +rolled roll ver +roller roller nom +rollers roller nom +rollerskating rollerskating nom +rollerskatings rollerskating nom +rollick rollick ver +rollicked rollick ver +rollicking rollick ver +rollickings rollicking nom +rollicks rollick ver +rolling roll ver +rollings rolling nom +rollover rollover nom +rollovers rollover nom +rolls roll nom +romaine romaine nom +romaines romaine nom +roman roman nom +romance romance nom +romanced romance ver +romancer romancer nom +romancers romancer nom +romances romance nom +romancing romance ver +romans roman nom +romantic romantic nom +romanticise romanticise ver +romanticised romanticise ver +romanticises romanticise ver +romanticising romanticise ver +romanticism romanticism nom +romanticisms romanticism nom +romanticist romanticist nom +romanticists romanticist nom +romanticization romanticization nom +romanticizations romanticization nom +romanticize romanticize ver +romanticized romanticize ver +romanticizes romanticize ver +romanticizing romanticize ver +romantics romantic nom +romeo romeo nom +romeos romeo nom +romp romp nom +romped romp ver +romper romper nom +rompers romper nom +romping romp ver +romps romp nom +rondeau rondeau nom +rondeaux rondeau nom +rondel rondel nom +rondels rondel nom +rondo rondo nom +rondos rondo nom +roneo roneo ver +roneoed roneo ver +roneoing roneo ver +roneos roneo ver +rood rood nom +roods rood nom +roof roof nom +roofed roof ver +roofer roofer nom +roofers roofer nom +roofing roof ver +roofings roofing nom +roofs roof nom +rooftop rooftop nom +rooftops rooftop nom +rooftree rooftree nom +rooftrees rooftree nom +rook rook nom +rooked rook ver +rookeries rookery nom +rookery rookery nom +rookie rookie nom +rookies rookie nom +rooking rook ver +rooks rook nom +room room nom +roomed room ver +roomer roomer nom +roomers roomer nom +roomette roomette nom +roomettes roomette nom +roomful roomful nom +roomfuls roomful nom +roomier roomy adj +roomies roomy nom +roomiest roomy adj +roominess roominess nom +roominesses roominess nom +rooming room ver +roommate roommate nom +roommates roommate nom +rooms room nom +roomy roomy adj +roost roost nom +roosted roost ver +rooster rooster nom +roosters rooster nom +roosting roost ver +roosts roost nom +root root nom +rooted root ver +rooter rooter nom +rooters rooter nom +rooting root ver +rootings rooting nom +rootle rootle ver +rootled rootle ver +rootles rootle ver +rootlet rootlet nom +rootlets rootlet nom +rootling rootle ver +roots root nom +rootstock rootstock nom +rootstocks rootstock nom +rope rope nom +roped rope ver +ropedancer ropedancer nom +ropedancers ropedancer nom +roper roper nom +ropers roper nom +ropes rope nom +ropewalk ropewalk nom +ropewalker ropewalker nom +ropewalkers ropewalker nom +ropewalks ropewalk nom +ropeway ropeway nom +ropeways ropeway nom +ropey ropey adj +ropier ropey adj +ropiest ropey adj +ropiness ropiness nom +ropinesses ropiness nom +roping rope ver +ropings roping nom +ropy ropy adj +roquette roquette nom +roquettes roquette nom +rorqual rorqual nom +rorquals rorqual nom +rosacea rosacea nom +rosaceas rosacea nom +rosaries rosary nom +rosary rosary nom +rose rise ver +rosebay rosebay nom +rosebays rosebay nom +rosebud rosebud nom +rosebuds rosebud nom +rosebush rosebush nom +rosebushes rosebush nom +rosed rose ver +rosefish rosefish nom +roselle roselle nom +roselles roselle nom +rosemaries rosemary nom +rosemary rosemary nom +roses rose nom +rosette rosette nom +rosettes rosette nom +rosewater rosewater nom +rosewaters rosewater nom +rosewood rosewood nom +rosewoods rosewood nom +rosier rosy adj +rosiest rosy adj +rosin rosin nom +rosined rosin ver +rosiness rosiness nom +rosinesses rosiness nom +rosing rose ver +rosining rosin ver +rosins rosin nom +rosinweed rosinweed nom +rosinweeds rosinweed nom +roster roster nom +rosters roster nom +rostrum rostrum nom +rostrums rostrum nom +rosy rosy adj +rot rot nom +rota rota nom +rotaries rotary nom +rotary rotary nom +rotas rota nom +rotate rotate ver +rotated rotate ver +rotates rotate ver +rotating rotate ver +rotation rotation nom +rotations rotation nom +rotavirus rotavirus nom +rotaviruses rotavirus nom +rote rote nom +rotenone rotenone nom +rotenones rotenone nom +rotes rote nom +rotgut rotgut nom +rotguts rotgut nom +rotifer rotifer nom +rotifers rotifer nom +rotisserie rotisserie nom +rotisseries rotisserie nom +rotl rotl nom +rotls rotl nom +rotogravure rotogravure nom +rotogravures rotogravure nom +rotor rotor nom +rotors rotor nom +rototiller rototiller nom +rototillers rototiller nom +rots rot nom +rotted rot ver +rotten rotten adj +rottener rotten adj +rottenest rotten adj +rottenness rottenness nom +rottennesses rottenness nom +rotter rotter nom +rotters rotter nom +rotting rot ver +rotund rotund adj +rotunda rotunda nom +rotundas rotunda nom +rotunder rotund adj +rotundest rotund adj +rotundities rotundity nom +rotundity rotundity nom +rotundness rotundness nom +rotundnesses rotundness nom +rouble rouble nom +roubles rouble nom +roue roue nom +roues roue nom +rouge rouge nom +rouged rouge ver +rouges rouge nom +rough rough adj +roughage roughage nom +roughages roughage nom +roughcast roughcast ver +roughcasting roughcast ver +roughcasts roughcast nom +roughed rough ver +roughen roughen ver +roughened roughen ver +roughening roughen ver +roughens roughen ver +rougher rough adj +roughest rough adj +roughhouse roughhouse nom +roughhoused roughhouse ver +roughhouses roughhouse nom +roughhousing roughhouse ver +roughing rough ver +roughleg roughleg nom +roughlegs roughleg nom +roughneck roughneck nom +roughnecked roughneck ver +roughnecking roughneck ver +roughnecks roughneck nom +roughness roughness nom +roughnesses roughness nom +roughrider roughrider nom +roughriders roughrider nom +roughs rough nom +rouging rouge ver +roulette roulette nom +rouletted roulette ver +roulettes roulette nom +rouletting roulette ver +round round adj +roundabout roundabout nom +roundabouts roundabout nom +rounded round ver +roundedness roundedness nom +roundednesses roundedness nom +roundel roundel nom +roundelay roundelay nom +roundelays roundelay nom +roundels roundel nom +rounder round adj +roundest round adj +roundhouse roundhouse nom +roundhouses roundhouse nom +rounding round ver +roundness roundness nom +roundnesses roundness nom +rounds round nom +roundsman roundsman nom +roundsmen roundsman nom +roundtable roundtable nom +roundtables roundtable nom +roundup roundup nom +roundups roundup nom +roundworm roundworm nom +roundworms roundworm nom +rouse rouse ver +roused rouse ver +rouses rouse ver +rousing rouse ver +roust roust ver +roustabout roustabout nom +roustabouts roustabout nom +rousted roust ver +rousting roust ver +rousts roust ver +rout rout nom +route route nom +routed rout ver +router router nom +routers router nom +routes route nom +routine routine nom +routines routine nom +routing rout ver +routinize routinize ver +routinized routinize ver +routinizes routinize ver +routinizing routinize ver +routs rout nom +rove reeve ver +roved rove ver +rover rover nom +rovers rover nom +roves rove nom +roving rove ver +rovings roving nom +row row nom +rowan rowan nom +rowanberries rowanberry nom +rowanberry rowanberry nom +rowans rowan nom +rowboat rowboat nom +rowboats rowboat nom +rowdier rowdy adj +rowdies rowdy nom +rowdiest rowdy adj +rowdiness rowdiness nom +rowdinesses rowdiness nom +rowdy rowdy adj +rowdyism rowdyism nom +rowdyisms rowdyism nom +rowed row ver +rowel rowel nom +roweled rowel ver +roweling rowel ver +rowels rowel nom +rower rower nom +rowers rower nom +rowing row ver +rowings rowing nom +rowlock rowlock nom +rowlocks rowlock nom +rows row nom +royal royal adj +royalist royalist nom +royalists royalist nom +royaller royal adj +royallest royal adj +royals royal nom +royalties royalty nom +royalty royalty nom +rub rub nom +rubato rubato nom +rubatos rubato nom +rubbed rub ver +rubber rubber nom +rubbered rubber ver +rubberier rubbery adj +rubberiest rubbery adj +rubbering rubber ver +rubberize rubberize ver +rubberized rubberize ver +rubberizes rubberize ver +rubberizing rubberize ver +rubberneck rubberneck nom +rubbernecked rubberneck ver +rubbernecker rubbernecker nom +rubberneckers rubbernecker nom +rubbernecking rubberneck ver +rubbernecks rubberneck nom +rubbers rubber nom +rubbery rubbery adj +rubbing rub ver +rubbings rubbing nom +rubbish rubbish nom +rubbished rubbish ver +rubbishes rubbish nom +rubbishing rubbish ver +rubble rubble nom +rubbles rubble nom +rubdown rubdown nom +rubdowns rubdown nom +rube rube nom +rubefacient rubefacient nom +rubefacients rubefacient nom +rubella rubella nom +rubellas rubella nom +rubeola rubeola nom +rubeolas rubeola nom +rubes rube nom +rubicelle rubicelle nom +rubicelles rubicelle nom +rubidium rubidium nom +rubidiums rubidium nom +rubier ruby adj +rubies ruby nom +rubiest ruby adj +rubified rubify ver +rubifies rubify ver +rubify rubify ver +rubifying rubify ver +ruble ruble nom +rubles ruble nom +rubric rubric nom +rubricate rubricate ver +rubricated rubricate ver +rubricates rubricate ver +rubricating rubricate ver +rubrics rubric nom +rubs rub nom +ruby ruby adj +ruck ruck nom +rucked ruck ver +rucking ruck ver +ruckle ruckle ver +ruckled ruckle ver +ruckles ruckle ver +ruckling ruckle ver +rucks ruck nom +rucksack rucksack nom +rucksacks rucksack nom +ruckus ruckus nom +ruckuses ruckus nom +ruction ruction nom +ructions ruction nom +rudd rudd nom +rudder rudder nom +rudderfish rudderfish nom +rudderpost rudderpost nom +rudderposts rudderpost nom +rudders rudder nom +rudderstock rudderstock nom +rudderstocks rudderstock nom +ruddier ruddy adj +ruddiest ruddy adj +ruddiness ruddiness nom +ruddinesses ruddiness nom +ruddle ruddle ver +ruddled ruddle ver +ruddles ruddle ver +ruddling ruddle ver +rudds rudd nom +ruddy ruddy adj +rude rude adj +rudeness rudeness nom +rudenesses rudeness nom +ruder rude adj +rudest rude adj +rudiment rudiment nom +rudiments rudiment nom +rue rue nom +rued rue ver +ruefulness ruefulness nom +ruefulnesses ruefulness nom +rues rue nom +ruff ruff nom +ruffed ruff ver +ruffian ruffian nom +ruffianism ruffianism nom +ruffianisms ruffianism nom +ruffians ruffian nom +ruffing ruff ver +ruffle ruffle nom +ruffled ruffle ver +ruffles ruffle nom +rufflier ruffly adj +ruffliest ruffly adj +ruffling ruffle ver +ruffly ruffly adj +ruffs ruff nom +rug rug nom +rugbies rugby nom +rugby rugby nom +rugged rugged adj +ruggeder rugged adj +ruggedest rugged adj +ruggedization ruggedization nom +ruggedizations ruggedization nom +ruggedness ruggedness nom +ruggednesses ruggedness nom +rugger rugger nom +ruggers rugger nom +rugs rug nom +ruin ruin nom +ruination ruination nom +ruinations ruination nom +ruined ruin ver +ruiner ruiner nom +ruiners ruiner nom +ruing rue ver +ruining ruin ver +ruinings ruining nom +ruins ruin nom +rule rule nom +ruled rule ver +ruler ruler nom +rulers ruler nom +rulership rulership nom +rulerships rulership nom +rules rule nom +rulier ruly adj +ruliest ruly adj +ruling rule ver +rulings ruling nom +ruly ruly adj +rum rum adj +rumba rumba nom +rumbaed rumba ver +rumbaing rumba ver +rumbas rumba nom +rumble rumble nom +rumbled rumble ver +rumbles rumble nom +rumbling rumble ver +rumblings rumbling nom +rumen rumen nom +rumens rumen nom +ruminant ruminant nom +ruminants ruminant nom +ruminate ruminate ver +ruminated ruminate ver +ruminates ruminate ver +ruminating ruminate ver +rumination rumination nom +ruminations rumination nom +rummage rummage nom +rummaged rummage ver +rummages rummage nom +rummaging rummage ver +rummer rum adj +rummers rummer nom +rummest rum adj +rummier rummy adj +rummies rummy nom +rummiest rummy adj +rummy rummy adj +rumor rumor nom +rumored rumor ver +rumoring rumor ver +rumormonger rumormonger nom +rumormongers rumormonger nom +rumors rumor nom +rumour rumour nom +rumoured rumour ver +rumouring rumour ver +rumourmonger rumourmonger nom +rumourmongers rumourmonger nom +rumours rumour nom +rump rump nom +rumple rumple nom +rumpled rumple ver +rumples rumple nom +rumplier rumply adj +rumpliest rumply adj +rumpling rumple ver +rumply rumply adj +rumps rump nom +rumpus rumpus nom +rumpuses rumpus nom +rumrunner rumrunner nom +rumrunners rumrunner nom +rums rum nom +run run ver +runabout runabout nom +runabouts runabout nom +runaround runaround nom +runarounds runaround nom +runaway runaway nom +runaways runaway nom +runch runch nom +runches runch nom +rundle rundle nom +rundles rundle nom +rundown rundown nom +rundowns rundown nom +rune rune nom +runes rune nom +rung ring ver +rungs rung nom +runlet runlet nom +runlets runlet nom +runnel runnel nom +runnels runnel nom +runner runner nom +runners runner nom +runnier runny adj +runniest runny adj +running run ver +runnings running nom +runny runny adj +runoff runoff nom +runoffs runoff nom +runs run nom +runt runt nom +runtier runty adj +runtiest runty adj +runtiness runtiness nom +runtinesses runtiness nom +runts runt nom +runty runty adj +runway runway nom +runways runway nom +rupee rupee nom +rupees rupee nom +rupiah rupiah nom +rupiahs rupiah nom +rupture rupture nom +ruptured rupture ver +ruptures rupture nom +rupturewort rupturewort nom +ruptureworts rupturewort nom +rupturing rupture ver +rural rural nom +ruralist ruralist nom +ruralists ruralist nom +rurals rural nom +ruse ruse nom +ruses ruse nom +rush rush nom +rushed rush ver +rusher rusher nom +rushers rusher nom +rushes rush nom +rushier rushy adj +rushiest rushy adj +rushing rush ver +rushings rushing nom +rushlight rushlight nom +rushlights rushlight nom +rushy rushy adj +rusk rusk nom +rusks rusk nom +russet russet nom +russets russet nom +rust rust nom +rusted rust ver +rustic rustic nom +rusticate rusticate ver +rusticated rusticate ver +rusticates rusticate ver +rusticating rusticate ver +rustication rustication nom +rustications rustication nom +rusticities rusticity nom +rusticity rusticity nom +rustics rustic nom +rustier rusty adj +rustiest rusty adj +rustiness rustiness nom +rustinesses rustiness nom +rusting rust ver +rustings rusting nom +rustle rustle nom +rustled rustle ver +rustler rustler nom +rustlers rustler nom +rustles rustle nom +rustling rustle ver +rustproof rustproof ver +rustproofed rustproof ver +rustproofing rustproof ver +rustproofs rustproof ver +rusts rust nom +rusty rusty adj +rut rut nom +rutabaga rutabaga nom +rutabagas rutabaga nom +ruth ruth nom +ruthenium ruthenium nom +rutheniums ruthenium nom +rutherford rutherford nom +rutherfordium rutherfordium nom +rutherfordiums rutherfordium nom +rutherfords rutherford nom +ruthfulness ruthfulness nom +ruthfulnesses ruthfulness nom +ruthlessness ruthlessness nom +ruthlessnesses ruthlessness nom +ruths ruth nom +rutile rutile nom +rutiles rutile nom +ruts rut nom +rutted rut ver +ruttier rutty adj +ruttiest rutty adj +rutting rut ver +rutty rutty adj +rya rya nom +ryas rya nom +rye rye nom +ryegrass ryegrass nom +ryegrasses ryegrass nom +ryes rye nom +s s sw +sabaton sabaton nom +sabatons sabaton nom +sabayon sabayon nom +sabayons sabayon nom +sabbat sabbat nom +sabbatical sabbatical nom +sabbaticals sabbatical nom +sabbats sabbat nom +saber saber nom +sabered saber ver +sabering saber ver +sabers saber nom +sabin sabin nom +sabins sabin nom +sable sable nom +sables sable nom +sabot sabot nom +sabotage sabotage nom +sabotaged sabotage ver +sabotages sabotage nom +sabotaging sabotage ver +saboteur saboteur nom +saboteurs saboteur nom +sabots sabot nom +sabra sabra nom +sabras sabra nom +sabre sabre nom +sabred sabre ver +sabres sabre nom +sabring sabre ver +sac sac nom +saccharide saccharide nom +saccharides saccharide nom +saccharin saccharin nom +saccharinities saccharinity nom +saccharinity saccharinity nom +saccharins saccharin nom +saccharose saccharose nom +saccharoses saccharose nom +saccule saccule nom +saccules saccule nom +sacculi sacculus nom +sacculus sacculus nom +sacerdotalism sacerdotalism nom +sacerdotalisms sacerdotalism nom +sachem sachem nom +sachems sachem nom +sachet sachet nom +sachets sachet nom +sack sack nom +sackbut sackbut nom +sackbuts sackbut nom +sackcloth sackcloth nom +sackcloths sackcloth nom +sacked sack ver +sackful sackful nom +sackfuls sackful nom +sacking sack ver +sackings sacking nom +sacks sack nom +sacque sacque nom +sacques sacque nom +sacra sacrum nom +sacrament sacrament nom +sacramental sacramental nom +sacramentals sacramental nom +sacraments sacrament nom +sacredness sacredness nom +sacrednesses sacredness nom +sacrifice sacrifice nom +sacrificed sacrifice ver +sacrifices sacrifice nom +sacrificing sacrifice ver +sacrilege sacrilege nom +sacrileges sacrilege nom +sacrilegiousness sacrilegiousness nom +sacrilegiousnesses sacrilegiousness nom +sacristan sacristan nom +sacristans sacristan nom +sacristies sacristy nom +sacristy sacristy nom +sacroiliac sacroiliac nom +sacroiliacs sacroiliac nom +sacrosanctness sacrosanctness nom +sacrosanctnesses sacrosanctness nom +sacrum sacrum nom +sacs sac nom +sad sad adj +sadden sadden ver +saddened sadden ver +saddening sadden ver +saddens sadden ver +sadder sad adj +saddest sad adj +saddhu saddhu nom +saddhus saddhu nom +saddle saddle nom +saddleback saddleback nom +saddlebacks saddleback nom +saddlebag saddlebag nom +saddlebags saddlebag nom +saddlebill saddlebill nom +saddlebills saddlebill nom +saddlebow saddlebow nom +saddlebows saddlebow nom +saddled saddle ver +saddler saddler nom +saddleries saddlery nom +saddlers saddler nom +saddlery saddlery nom +saddles saddle nom +saddling saddle ver +sadhe sadhe nom +sadhes sadhe nom +sadhu sadhu nom +sadhus sadhu nom +sadism sadism nom +sadisms sadism nom +sadist sadist nom +sadists sadist nom +sadness sadness nom +sadnesses sadness nom +sadomasochism sadomasochism nom +sadomasochisms sadomasochism nom +sadomasochist sadomasochist nom +sadomasochists sadomasochist nom +safari safari nom +safaried safari ver +safariing safari ver +safaris safari nom +safe safe adj +safecracker safecracker nom +safecrackers safecracker nom +safeguard safeguard nom +safeguarded safeguard ver +safeguarding safeguard ver +safeguards safeguard nom +safekeeping safekeeping nom +safekeepings safekeeping nom +safeness safeness nom +safenesses safeness nom +safer safe adj +safes safe nom +safest safe adj +safeties safety nom +safety safety nom +safflower safflower nom +safflowers safflower nom +saffron saffron nom +saffrons saffron nom +sag sag nom +saga saga nom +sagaciousness sagaciousness nom +sagaciousnesses sagaciousness nom +sagacities sagacity nom +sagacity sagacity nom +sagas saga nom +sage sage adj +sagebrush sagebrush nom +sagebrushes sagebrush nom +sager sage adj +sages sage nom +sagest sage adj +sagged sag ver +saggier saggy adj +saggiest saggy adj +sagging sag ver +saggy saggy adj +sagitta sagitta nom +sagittas sagitta nom +sago sago nom +sagos sago nom +sags sag nom +saguaro saguaro nom +saguaros saguaro nom +sahib sahib nom +sahibs sahib nom +sahuaro sahuaro nom +sahuaros sahuaro nom +said said sw +saids saids nom +saiga saiga nom +saigas saiga nom +sail sail nom +sailboard sailboard nom +sailboards sailboard nom +sailboat sailboat nom +sailboats sailboat nom +sailcloth sailcloth nom +sailcloths sailcloth nom +sailed sail ver +sailfish sailfish nom +sailing sail ver +sailor sailor nom +sailors sailor nom +sailplane sailplane nom +sailplaned sailplane ver +sailplanes sailplane nom +sailplaning sailplane ver +sails sail nom +sainfoin sainfoin nom +sainfoins sainfoin nom +saint saint nom +sainted saint ver +sainthood sainthood nom +sainthoods sainthood nom +sainting saint ver +saintlier saintly adj +saintliest saintly adj +saintliness saintliness nom +saintlinesses saintliness nom +saintly saintly adj +saints saint nom +sake sake nom +sakes sake nom +saki saki nom +sakis saki nom +salaam salaam nom +salaamed salaam ver +salaaming salaam ver +salaams salaam nom +salaciousness salaciousness nom +salaciousnesses salaciousness nom +salacities salacity nom +salacity salacity nom +salad salad nom +salads salad nom +salal salal nom +salals salal nom +salamander salamander nom +salamanders salamander nom +salami salami nom +salamis salami nom +salaries salary nom +salary salary nom +sale sale nom +saleratus saleratus nom +saleratuses saleratus nom +saleroom saleroom nom +salerooms saleroom nom +sales sale nom +salesclerk salesclerk nom +salesclerks salesclerk nom +salesgirl salesgirl nom +salesgirls salesgirl nom +salesladies saleslady nom +saleslady saleslady nom +salesman salesman nom +salesmanship salesmanship nom +salesmanships salesmanship nom +salesmen salesman nom +salespeople salesperson nom +salesperson salesperson nom +salesroom salesroom nom +salesrooms salesroom nom +saleswoman saleswoman nom +saleswomen saleswoman nom +salicylate salicylate nom +salicylates salicylate nom +salience salience nom +saliences salience nom +saliencies saliency nom +saliency saliency nom +salient salient nom +salientian salientian nom +salientians salientian nom +salients salient nom +saline saline nom +salines saline nom +salinities salinity nom +salinity salinity nom +salinometer salinometer nom +salinometers salinometer nom +saliva saliva nom +salivas saliva nom +salivate salivate ver +salivated salivate ver +salivates salivate ver +salivating salivate ver +salivation salivation nom +salivations salivation nom +sallet sallet nom +sallets sallet nom +sallied sally ver +sallies sally nom +sallow sallow adj +sallowed sallow ver +sallower sallow adj +sallowest sallow adj +sallowing sallow ver +sallowness sallowness nom +sallownesses sallowness nom +sallows sallow nom +sally sally nom +sallying sally ver +salmagundi salmagundi nom +salmagundis salmagundi nom +salmi salmi nom +salmis salmi nom +salmon salmon nom +salmonberries salmonberry nom +salmonberry salmonberry nom +salmonella salmonella nom +salmonellae salmonella nom +salmonelloses salmonellosis nom +salmonellosis salmonellosis nom +salmonid salmonid nom +salmonids salmonid nom +salol salol nom +salols salol nom +salon salon nom +salons salon nom +saloon saloon nom +saloons saloon nom +salp salp nom +salpa salpa nom +salpas salpa nom +salpiglossis salpiglossis nom +salpiglossises salpiglossis nom +salpingectomies salpingectomy nom +salpingectomy salpingectomy nom +salpingitis salpingitis nom +salpingitises salpingitis nom +salpinx salpinx nom +salpinxes salpinx nom +salps salp nom +salsa salsa nom +salsaed salsa ver +salsaing salsa ver +salsas salsa nom +salsifies salsify nom +salsify salsify nom +salsilla salsilla nom +salsillas salsilla nom +salt salt adj +saltate saltate ver +saltated saltate ver +saltates saltate ver +saltating saltate ver +saltbox saltbox nom +saltboxes saltbox nom +saltbush saltbush nom +saltbushes saltbush nom +saltcellar saltcellar nom +saltcellars saltcellar nom +salted salt ver +salter salt adj +saltest salt adj +saltier salty adj +saltiest salty adj +saltine saltine nom +saltines saltine nom +saltiness saltiness nom +saltinesses saltiness nom +salting salt ver +saltings salting nom +saltire saltire nom +saltires saltire nom +saltpan saltpan nom +saltpans saltpan nom +saltpeter saltpeter nom +saltpeters saltpeter nom +saltpetre saltpetre nom +saltpetres saltpetre nom +salts salt nom +saltshaker saltshaker nom +saltshakers saltshaker nom +saltwort saltwort nom +saltworts saltwort nom +salty salty adj +salubriousness salubriousness nom +salubriousnesses salubriousness nom +salubrities salubrity nom +salubrity salubrity nom +salutation salutation nom +salutations salutation nom +salutatorian salutatorian nom +salutatorians salutatorian nom +salutatories salutatory nom +salutatory salutatory nom +salute salute nom +saluted salute ver +salutes salute nom +saluting salute ver +salvage salvage nom +salvaged salvage ver +salvager salvager nom +salvagers salvager nom +salvages salvage nom +salvaging salvage ver +salvation salvation nom +salvations salvation nom +salve salve nom +salved salve ver +salver salver nom +salvers salver nom +salves salve nom +salvia salvia nom +salvias salvia nom +salving salve ver +salvo salvo nom +salvoed salvo ver +salvoing salvo ver +salvor salvor nom +salvors salvor nom +salvos salvo nom +samara samara nom +samaras samara nom +samarium samarium nom +samariums samarium nom +samarskite samarskite nom +samarskites samarskite nom +samba samba nom +sambaed samba ver +sambaing samba ver +sambar sambar nom +sambars sambar nom +sambas samba nom +sambur sambur nom +samburs sambur nom +same same sw +samekh samekh nom +samekhs samekh nom +sameness sameness nom +samenesses sameness nom +sames same nom +samiel samiel nom +samiels samiel nom +samovar samovar nom +samovars samovar nom +sampan sampan nom +sampans sampan nom +samphire samphire nom +samphires samphire nom +sample sample nom +sampled sample ver +sampler sampler nom +samplers sampler nom +samples sample nom +sampling sample ver +samurai samurai nom +sanatorium sanatorium nom +sanatoriums sanatorium nom +sanctification sanctification nom +sanctifications sanctification nom +sanctified sanctify ver +sanctifies sanctify ver +sanctify sanctify ver +sanctifying sanctify ver +sanctimonies sanctimony nom +sanctimoniousness sanctimoniousness nom +sanctimoniousnesses sanctimoniousness nom +sanctimony sanctimony nom +sanction sanction nom +sanctioned sanction ver +sanctioning sanction ver +sanctions sanction nom +sanctities sanctity nom +sanctity sanctity nom +sanctuaries sanctuary nom +sanctuary sanctuary nom +sanctum sanctum nom +sanctums sanctum nom +sand sand nom +sandal sandal nom +sandaled sandal ver +sandaling sandal ver +sandals sandal nom +sandalwood sandalwood nom +sandalwoods sandalwood nom +sandarac sandarac nom +sandaracs sandarac nom +sandbag sandbag nom +sandbagged sandbag ver +sandbagger sandbagger nom +sandbaggers sandbagger nom +sandbagging sandbag ver +sandbags sandbag nom +sandbank sandbank nom +sandbanks sandbank nom +sandbar sandbar nom +sandbars sandbar nom +sandblast sandblast nom +sandblasted sandblast ver +sandblaster sandblaster nom +sandblasters sandblaster nom +sandblasting sandblast ver +sandblasts sandblast nom +sandbox sandbox nom +sandboxes sandbox nom +sandboy sandboy nom +sandboys sandboy nom +sandbur sandbur nom +sandburs sandbur nom +sandcastle sandcastle nom +sandcastles sandcastle nom +sanded sand ver +sander sander nom +sanderling sanderling nom +sanders sander nom +sandfish sandfish nom +sandflies sandfly nom +sandfly sandfly nom +sandglass sandglass nom +sandglasses sandglass nom +sandgrouse sandgrouse nom +sandhog sandhog nom +sandhogs sandhog nom +sandier sandy adj +sandiest sandy adj +sandiness sandiness nom +sandinesses sandiness nom +sanding sand ver +sandlot sandlot nom +sandlots sandlot nom +sandlotter sandlotter nom +sandlotters sandlotter nom +sandman sandman nom +sandmen sandman nom +sandpaper sandpaper nom +sandpapered sandpaper ver +sandpapering sandpaper ver +sandpapers sandpaper nom +sandpile sandpile nom +sandpiles sandpile nom +sandpiper sandpiper nom +sandpipers sandpiper nom +sandpit sandpit nom +sandpits sandpit nom +sands sand nom +sandspur sandspur nom +sandspurs sandspur nom +sandstone sandstone nom +sandstones sandstone nom +sandstorm sandstorm nom +sandstorms sandstorm nom +sandwich sandwich nom +sandwiched sandwich ver +sandwiches sandwich nom +sandwiching sandwich ver +sandwort sandwort nom +sandworts sandwort nom +sandy sandy adj +sane sane adj +saneness saneness nom +sanenesses saneness nom +saner sane adj +sanest sane adj +sang sing ver +sangaree sangaree nom +sangarees sangaree nom +sangfroid sangfroid nom +sangfroids sangfroid nom +sangria sangria nom +sangrias sangria nom +sangs sang nom +sanguine sanguine nom +sanguineness sanguineness nom +sanguinenesses sanguineness nom +sanguines sanguine nom +sanguinities sanguinity nom +sanguinity sanguinity nom +sanicle sanicle nom +sanicles sanicle nom +sanitarian sanitarian nom +sanitarians sanitarian nom +sanitariness sanitariness nom +sanitarinesses sanitariness nom +sanitarium sanitarium nom +sanitariums sanitarium nom +sanitation sanitation nom +sanitations sanitation nom +sanities sanity nom +sanitisation sanitisation nom +sanitisations sanitisation nom +sanitization sanitization nom +sanitizations sanitization nom +sanitize sanitize ver +sanitized sanitize ver +sanitizes sanitize ver +sanitizing sanitize ver +sanity sanity nom +sank sink ver +sannup sannup nom +sannups sannup nom +sansevieria sansevieria nom +sansevierias sansevieria nom +sap sap nom +saphead saphead nom +sapheads saphead nom +sapidities sapidity nom +sapidity sapidity nom +sapidness sapidness nom +sapidnesses sapidness nom +sapience sapience nom +sapiences sapience nom +sapling sapling nom +sapodilla sapodilla nom +sapodillas sapodilla nom +saponification saponification nom +saponifications saponification nom +saponified saponify ver +saponifies saponify ver +saponify saponify ver +saponifying saponify ver +saponin saponin nom +saponins saponin nom +sapota sapota nom +sapotas sapota nom +sapote sapote nom +sapotes sapote nom +sapped sap ver +sapper sapper nom +sappers sapper nom +sapphire sapphire nom +sapphires sapphire nom +sapphirine sapphirine nom +sapphirines sapphirine nom +sapphism sapphism nom +sapphisms sapphism nom +sappier sappy adj +sappiest sappy adj +sappiness sappiness nom +sappinesses sappiness nom +sapping sap ver +sappy sappy adj +sapraemia sapraemia nom +sapraemias sapraemia nom +sapremia sapremia nom +sapremias sapremia nom +saprobe saprobe nom +saprobes saprobe nom +saprolite saprolite nom +saprolites saprolite nom +sapropel sapropel nom +sapropels sapropel nom +saprophyte saprophyte nom +saprophytes saprophyte nom +saps sap nom +sapsago sapsago nom +sapsagos sapsago nom +sapsucker sapsucker nom +sapsuckers sapsucker nom +sapwood sapwood nom +sapwoods sapwood nom +saraband saraband nom +sarabands saraband nom +saran saran nom +sarans saran nom +sarape sarape nom +sarapes sarape nom +sarcasm sarcasm nom +sarcasms sarcasm nom +sarcodinian sarcodinian nom +sarcodinians sarcodinian nom +sarcoidoses sarcoidosis nom +sarcoidosis sarcoidosis nom +sarcolemma sarcolemma nom +sarcolemmas sarcolemma nom +sarcoma sarcoma nom +sarcomas sarcoma nom +sarcomere sarcomere nom +sarcomeres sarcomere nom +sarcophagi sarcophagus nom +sarcophagus sarcophagus nom +sarcoplasm sarcoplasm nom +sarcoplasms sarcoplasm nom +sarcosome sarcosome nom +sarcosomes sarcosome nom +sarcostyle sarcostyle nom +sarcostyles sarcostyle nom +sard sard nom +sardine sardine nom +sardines sardine nom +sardius sardius nom +sardiuses sardius nom +sardonyx sardonyx nom +sardonyxes sardonyx nom +sards sard nom +saree saree nom +sarees saree nom +sargasso sargasso nom +sargassos sargasso nom +sargassum sargassum nom +sargassums sargassum nom +sarge sarge nom +sarges sarge nom +sari sari nom +saris sari nom +sarong sarong nom +sarongs sarong nom +sarsaparilla sarsaparilla nom +sarsaparillas sarsaparilla nom +sartor sartor nom +sartorii sartorius nom +sartorius sartorius nom +sartors sartor nom +sash sash nom +sashay sashay nom +sashayed sashay ver +sashaying sashay ver +sashays sashay nom +sashed sash ver +sashes sash nom +sashimi sashimi nom +sashimis sashimi nom +sashing sash ver +saskatoon saskatoon nom +saskatoons saskatoon nom +sass sass nom +sassabies sassaby nom +sassaby sassaby nom +sassafras sassafras nom +sassafrases sassafras nom +sassed sass ver +sasses sass nom +sassier sassy adj +sassies sassy nom +sassiest sassy adj +sassing sass ver +sassy sassy adj +sat sit ver +satang satang nom +satangs satang nom +satanism satanism nom +satanisms satanism nom +satanist satanist nom +satanists satanist nom +satchel satchel nom +satchels satchel nom +sate sate ver +sated sate ver +sateen sateen nom +sateens sateen nom +satellite satellite nom +satellited satellite ver +satellites satellite nom +satelliting satellite ver +sates sate ver +satiate satiate ver +satiated satiate ver +satiates satiate ver +satiating satiate ver +satiation satiation nom +satiations satiation nom +satieties satiety nom +satiety satiety nom +satin satin nom +sating sate ver +satinpod satinpod nom +satinpods satinpod nom +satins satin nom +satinwood satinwood nom +satinwoods satinwood nom +satire satire nom +satires satire nom +satirist satirist nom +satirists satirist nom +satirize satirize ver +satirized satirize ver +satirizes satirize ver +satirizing satirize ver +satisfaction satisfaction nom +satisfactions satisfaction nom +satisfactoriness satisfactoriness nom +satisfactorinesses satisfactoriness nom +satisfied satisfy ver +satisfies satisfy ver +satisfy satisfy ver +satisfying satisfy ver +satori satori nom +satoris satori nom +satrap satrap nom +satraps satrap nom +satsuma satsuma nom +satsumas satsuma nom +saturate saturate ver +saturated saturate ver +saturates saturate ver +saturating saturate ver +saturation saturation nom +saturations saturation nom +saturnalia saturnalia nom +saturnalias saturnalia nom +saturniid saturniid nom +saturniids saturniid nom +saturnism saturnism nom +saturnisms saturnism nom +satyr satyr nom +satyriases satyriasis nom +satyriasis satyriasis nom +satyrs satyr nom +sauce sauce nom +sauceboat sauceboat nom +sauceboats sauceboat nom +sauced sauce ver +saucepan saucepan nom +saucepans saucepan nom +saucer saucer nom +saucers saucer nom +sauces sauce nom +saucier saucy adj +sauciest saucy adj +sauciness sauciness nom +saucinesses sauciness nom +saucing sauce ver +saucy saucy adj +sauerbraten sauerbraten nom +sauerbratens sauerbraten nom +sauerkraut sauerkraut nom +sauerkrauts sauerkraut nom +sauna sauna nom +saunaed sauna ver +saunaing sauna ver +saunas sauna nom +saunter saunter nom +sauntered saunter ver +saunterer saunterer nom +saunterers saunterer nom +sauntering saunter ver +saunters saunter nom +saurel saurel nom +saurels saurel nom +saurian saurian nom +saurians saurian nom +sauries saury nom +saurischian saurischian nom +saurischians saurischian nom +sauropod sauropod nom +sauropods sauropod nom +saury saury nom +sausage sausage nom +sausages sausage nom +saute saute nom +sauteed saute ver +sauteing saute ver +sauterne sauterne nom +sauternes sauterne nom +sautes saute nom +savage savage adj +savaged savage ver +savageness savageness nom +savagenesses savageness nom +savager savage adj +savageries savagery nom +savagery savagery nom +savages savage nom +savagest savage adj +savaging savage ver +savanna savanna nom +savannah savannah nom +savannahs savannah nom +savannas savanna nom +savant savant nom +savants savant nom +savarin savarin nom +savarins savarin nom +save save nom +saved save ver +saveloy saveloy nom +saveloys saveloy nom +saver saver nom +savers saver nom +saves save nom +savin savin nom +saving save ver +savings saving nom +savins savin nom +savior savior nom +saviors savior nom +saviour saviour nom +saviours saviour nom +savor savor nom +savored savor ver +savorier savory adj +savories savory nom +savoriest savory adj +savoriness savoriness nom +savorinesses savoriness nom +savoring savor ver +savors savor nom +savory savory adj +savour savour nom +savoured savour ver +savourier savoury adj +savouries savoury nom +savouriest savoury adj +savouring savour ver +savours savour nom +savoury savoury adj +savoy savoy nom +savoys savoy nom +savvied savvy ver +savvier savvy adj +savvies savvy nom +savviest savvy adj +savvy savvy adj +savvying savvy ver +saw saw sw +sawbill sawbill nom +sawbills sawbill nom +sawbones sawbones nom +sawbuck sawbuck nom +sawbucks sawbuck nom +sawdust sawdust nom +sawdusts sawdust nom +sawed saw ver +sawfish sawfish nom +sawflies sawfly nom +sawfly sawfly nom +sawhorse sawhorse nom +sawhorses sawhorse nom +sawing saw ver +sawmill sawmill nom +sawmills sawmill nom +sawpit sawpit nom +sawpits sawpit nom +saws saw nom +sawteeth sawtooth nom +sawtooth sawtooth nom +sawyer sawyer nom +sawyers sawyer nom +sax sax nom +saxes sax nom +saxhorn saxhorn nom +saxhorns saxhorn nom +saxifrage saxifrage nom +saxifrages saxifrage nom +saxophone saxophone nom +saxophones saxophone nom +saxophonist saxophonist nom +saxophonists saxophonist nom +say say sw +sayer say adj +sayest say adj +saying saying sw +sayings saying nom +sayonara sayonara nom +sayonaras sayonara nom +says says sw +scab scab nom +scabbard scabbard nom +scabbarded scabbard ver +scabbarding scabbard ver +scabbards scabbard nom +scabbed scab ver +scabbier scabby adj +scabbiest scabby adj +scabbiness scabbiness nom +scabbinesses scabbiness nom +scabbing scab ver +scabby scabby adj +scabiosa scabiosa nom +scabiosas scabiosa nom +scabious scabious nom +scabiouses scabious nom +scabs scab nom +scad scad nom +scads scad nom +scaffold scaffold nom +scaffolded scaffold ver +scaffolding scaffold ver +scaffoldings scaffolding nom +scaffolds scaffold nom +scag scag nom +scags scag nom +scalage scalage nom +scalages scalage nom +scalar scalar nom +scalars scalar nom +scalawag scalawag nom +scalawags scalawag nom +scald scald nom +scalded scald ver +scalding scald ver +scalds scald nom +scale scale nom +scaled scale ver +scaleni scalenus nom +scalenus scalenus nom +scales scale nom +scaley scaley adj +scalier scaley adj +scaliest scaley adj +scaliness scaliness nom +scalinesses scaliness nom +scaling scale ver +scalings scaling nom +scallion scallion nom +scallions scallion nom +scallop scallop nom +scalloped scallop ver +scalloping scallop ver +scallopini scallopini nom +scallopinis scallopini nom +scallops scallop nom +scallywag scallywag nom +scallywags scallywag nom +scalp scalp nom +scalped scalp ver +scalpel scalpel nom +scalpels scalpel nom +scalper scalper nom +scalpers scalper nom +scalping scalp ver +scalps scalp nom +scaly scaly adj +scam scam nom +scammed scam ver +scamming scam ver +scammonies scammony nom +scammony scammony nom +scamp scamp nom +scamped scamp ver +scamper scamper nom +scampered scamper ver +scampering scamper ver +scampers scamper nom +scampi scampi nom +scamping scamp ver +scampo scampo nom +scamps scamp nom +scams scam nom +scan scan nom +scandal scandal nom +scandaled scandal ver +scandaling scandal ver +scandalization scandalization nom +scandalizations scandalization nom +scandalize scandalize ver +scandalized scandalize ver +scandalizes scandalize ver +scandalizing scandalize ver +scandalmonger scandalmonger nom +scandalmongering scandalmongering nom +scandalmongerings scandalmongering nom +scandalmongers scandalmonger nom +scandalousness scandalousness nom +scandalousnesses scandalousness nom +scandals scandal nom +scandium scandium nom +scandiums scandium nom +scanned scan ver +scanner scanner nom +scanners scanner nom +scanning scan ver +scannings scanning nom +scans scan nom +scansion scansion nom +scansions scansion nom +scant scant adj +scanted scant ver +scanter scant adj +scantest scant adj +scantier scanty adj +scanties scanty nom +scantiest scanty adj +scantiness scantiness nom +scantinesses scantiness nom +scanting scant ver +scantling scantling nom +scantness scantness nom +scantnesses scantness nom +scants scant ver +scanty scanty adj +scape scape nom +scapegoat scapegoat nom +scapegoated scapegoat ver +scapegoating scapegoat ver +scapegoats scapegoat nom +scapegrace scapegrace nom +scapegraces scapegrace nom +scapes scape nom +scaphopod scaphopod nom +scaphopods scaphopod nom +scapula scapula nom +scapulae scapula nom +scapular scapular nom +scapularies scapulary nom +scapulars scapular nom +scapulary scapulary nom +scar scar nom +scarab scarab nom +scarabaeid scarabaeid nom +scarabaeids scarabaeid nom +scarabaeus scarabaeus nom +scarabaeuses scarabaeus nom +scarabs scarab nom +scarce scarce adj +scarceness scarceness nom +scarcenesses scarceness nom +scarcer scarce adj +scarcest scarce adj +scarcities scarcity nom +scarcity scarcity nom +scare scare nom +scarecrow scarecrow nom +scarecrows scarecrow nom +scared scare ver +scareder scared adj +scaredest scared adj +scaremonger scaremonger nom +scaremongers scaremonger nom +scares scare nom +scarey scarey adj +scarf scarf nom +scarfed scarf ver +scarfing scarf ver +scarfpin scarfpin nom +scarfpins scarfpin nom +scarfs scarf ver +scarier scarey adj +scariest scarey adj +scarification scarification nom +scarifications scarification nom +scarified scarify ver +scarifies scarify ver +scarify scarify ver +scarifying scarify ver +scariness scariness nom +scarinesses scariness nom +scaring scare ver +scarlatina scarlatina nom +scarlatinas scarlatina nom +scarlet scarlet nom +scarlets scarlet nom +scarp scarp nom +scarped scarp ver +scarper scarper ver +scarpered scarper ver +scarpering scarper ver +scarpers scarper ver +scarping scarp ver +scarps scarp nom +scarred scar ver +scarring scar ver +scars scar nom +scarves scarf nom +scary scary adj +scat scat nom +scathe scathe nom +scathes scathe nom +scatologies scatology nom +scatology scatology nom +scats scat nom +scatted scat ver +scatter scatter nom +scatterbrain scatterbrain nom +scatterbrains scatterbrain nom +scattered scatter ver +scattergun scattergun nom +scatterguns scattergun nom +scattering scatter ver +scatterings scattering nom +scatters scatter nom +scattier scatty adj +scattiest scatty adj +scatting scat ver +scatty scatty adj +scaup scaup nom +scaups scaup nom +scavenge scavenge ver +scavenged scavenge ver +scavenger scavenger nom +scavengers scavenger nom +scavenges scavenge ver +scavenging scavenge ver +scenario scenario nom +scenarios scenario nom +scenarist scenarist nom +scenarists scenarist nom +scend scend ver +scended scend ver +scending scend ver +scends scend ver +scene scene nom +sceneries scenery nom +scenery scenery nom +scenes scene nom +sceneshifter sceneshifter nom +sceneshifters sceneshifter nom +scenic scenic nom +scenics scenic nom +scent scent nom +scented scent ver +scenting scent ver +scents scent nom +scepter scepter nom +sceptered scepter ver +sceptering scepter ver +scepters scepter nom +sceptic sceptic nom +scepticism scepticism nom +scepticisms scepticism nom +sceptics sceptic nom +sceptre sceptre nom +sceptred sceptre ver +sceptres sceptre nom +sceptring sceptre ver +schadenfreude schadenfreude nom +schadenfreudes schadenfreude nom +schedule schedule nom +scheduled schedule ver +schedules schedule nom +scheduling schedule ver +scheelite scheelite nom +scheelites scheelite nom +schema schema nom +schemata schema nom +schematic schematic nom +schematics schematic nom +schematization schematization nom +schematizations schematization nom +schematize schematize ver +schematized schematize ver +schematizes schematize ver +schematizing schematize ver +scheme scheme nom +schemed scheme ver +schemer schemer nom +schemers schemer nom +schemes scheme nom +scheming scheme ver +scherzo scherzo nom +scherzos scherzo nom +schilling schilling nom +schillings schilling nom +schipperke schipperke nom +schipperkes schipperke nom +schism schism nom +schismatic schismatic nom +schismatics schismatic nom +schisms schism nom +schist schist nom +schistosome schistosome nom +schistosomes schistosome nom +schistosomiases schistosomiasis nom +schistosomiasis schistosomiasis nom +schists schist nom +schizo schizo nom +schizogonies schizogony nom +schizogony schizogony nom +schizoid schizoid nom +schizoids schizoid nom +schizophrenia schizophrenia nom +schizophrenias schizophrenia nom +schizophrenic schizophrenic nom +schizophrenics schizophrenic nom +schizos schizo nom +schizothymia schizothymia nom +schizothymias schizothymia nom +schlemiel schlemiel nom +schlemiels schlemiel nom +schlep schlep nom +schlepp schlepp nom +schlepped schlep ver +schlepping schlep ver +schlepps schlepp nom +schleps schlep nom +schlock schlock nom +schlockier schlocky adj +schlockiest schlocky adj +schlockmeister schlockmeister nom +schlockmeisters schlockmeister nom +schlocks schlock nom +schlocky schlocky adj +schmaltz schmaltz nom +schmaltzes schmaltz nom +schmaltzier schmaltzy adj +schmaltziest schmaltzy adj +schmaltzy schmaltzy adj +schmalz schmalz nom +schmalzes schmalz nom +schmalzier schmalzy adj +schmalziest schmalzy adj +schmalzy schmalzy adj +schmear schmear nom +schmears schmear nom +schmeer schmeer nom +schmeers schmeer nom +schmo schmo nom +schmoe schmoe nom +schmoes schmo nom +schmooze schmooze nom +schmoozed schmooze ver +schmoozes schmooze nom +schmoozing schmooze ver +schmuck schmuck nom +schmucks schmuck nom +schnapps schnapps nom +schnaps schnaps nom +schnauzer schnauzer nom +schnauzers schnauzer nom +schnitzel schnitzel nom +schnitzels schnitzel nom +schnook schnook nom +schnooks schnook nom +schnorkel schnorkel nom +schnorkels schnorkel nom +schnoz schnoz nom +schnozes schnoz nom +schnozzle schnozzle nom +schnozzles schnozzle nom +scholar scholar nom +scholars scholar nom +scholarship scholarship nom +scholarships scholarship nom +scholastic scholastic nom +scholasticism scholasticism nom +scholasticisms scholasticism nom +scholastics scholastic nom +school school nom +schoolbag schoolbag nom +schoolbags schoolbag nom +schoolbook schoolbook nom +schoolbooks schoolbook nom +schoolboy schoolboy nom +schoolboys schoolboy nom +schoolchild schoolchild nom +schoolchildren schoolchild nom +schooled school ver +schoolfellow schoolfellow nom +schoolfellows schoolfellow nom +schoolgirl schoolgirl nom +schoolgirls schoolgirl nom +schoolhouse schoolhouse nom +schoolhouses schoolhouse nom +schooling school ver +schoolings schooling nom +schoolman schoolman nom +schoolmarm schoolmarm nom +schoolmarms schoolmarm nom +schoolmaster schoolmaster nom +schoolmastered schoolmaster ver +schoolmastering schoolmaster ver +schoolmasters schoolmaster nom +schoolmate schoolmate nom +schoolmates schoolmate nom +schoolmen schoolman nom +schoolmistress schoolmistress nom +schoolmistresses schoolmistress nom +schoolroom schoolroom nom +schoolrooms schoolroom nom +schools school nom +schoolteacher schoolteacher nom +schoolteachers schoolteacher nom +schooltime schooltime nom +schooltimes schooltime nom +schoolwork schoolwork nom +schoolworks schoolwork nom +schoolyard schoolyard nom +schoolyards schoolyard nom +schooner schooner nom +schooners schooner nom +schottische schottische nom +schottisches schottische nom +schrod schrod nom +schuss schuss nom +schussboomer schussboomer nom +schussboomers schussboomer nom +schussed schuss ver +schusses schuss nom +schussing schuss ver +schwa schwa nom +schwas schwa nom +sciaenid sciaenid nom +sciaenids sciaenid nom +sciarid sciarid nom +sciarids sciarid nom +sciatic sciatic nom +sciatica sciatica nom +sciaticas sciatica nom +sciatics sciatic nom +science science nom +sciences science nom +scientist scientist nom +scientists scientist nom +scilla scilla nom +scillas scilla nom +scimitar scimitar nom +scimitars scimitar nom +scintilla scintilla nom +scintillas scintilla nom +scintillate scintillate ver +scintillated scintillate ver +scintillates scintillate ver +scintillating scintillate ver +scintillation scintillation nom +scintillations scintillation nom +scion scion nom +scions scion nom +scission scission nom +scissions scission nom +scissor scissor ver +scissored scissor ver +scissoring scissor ver +scissors scissor ver +scissortail scissortail nom +scissortails scissortail nom +scissure scissure nom +scissures scissure nom +sclaff sclaff ver +sclaffed sclaff ver +sclaffing sclaff ver +sclaffs sclaff ver +sclera sclera nom +scleras sclera nom +sclerite sclerite nom +sclerites sclerite nom +scleritis scleritis nom +scleritises scleritis nom +scleroderma scleroderma nom +sclerodermas scleroderma nom +sclerometer sclerometer nom +sclerometers sclerometer nom +scleroprotein scleroprotein nom +scleroproteins scleroprotein nom +scleroses sclerosis nom +sclerosis sclerosis nom +sclerotia sclerotium nom +sclerotium sclerotium nom +sclerotomies sclerotomy nom +sclerotomy sclerotomy nom +scoff scoff nom +scoffed scoff ver +scoffer scoffer nom +scoffers scoffer nom +scoffing scoff ver +scoffings scoffing nom +scofflaw scofflaw nom +scofflaws scofflaw nom +scoffs scoff nom +scold scold nom +scolded scold ver +scolder scolder nom +scolders scolder nom +scolding scold ver +scoldings scolding nom +scolds scold nom +scolia scolion nom +scolion scolion nom +scolioses scoliosis nom +scoliosis scoliosis nom +scollop scollop nom +scolloped scollop ver +scolloping scollop ver +scollops scollop nom +scombroid scombroid nom +scombroids scombroid nom +sconce sconce nom +sconced sconce ver +sconces sconce nom +sconcing sconce ver +scone scone nom +scones scone nom +scoop scoop nom +scooped scoop ver +scoopful scoopful nom +scoopfuls scoopful nom +scooping scoop ver +scoops scoop nom +scoot scoot nom +scooted scoot ver +scooter scooter nom +scooters scooter nom +scooting scoot ver +scoots scoot nom +scope scope nom +scoped scope ver +scopes scope nom +scoping scope ver +scopolamine scopolamine nom +scopolamines scopolamine nom +scorch scorch nom +scorched scorch ver +scorcher scorcher nom +scorchers scorcher nom +scorches scorch nom +scorching scorch ver +score score nom +scoreboard scoreboard nom +scoreboards scoreboard nom +scorecard scorecard nom +scorecards scorecard nom +scored score ver +scorekeeper scorekeeper nom +scorekeepers scorekeeper nom +scorer scorer nom +scorers scorer nom +scores score nom +scoria scoria nom +scoriae scoria nom +scoring score ver +scorn scorn nom +scorned scorn ver +scorner scorner nom +scorners scorner nom +scorning scorn ver +scorns scorn nom +scorpaenid scorpaenid nom +scorpaenids scorpaenid nom +scorpaenoid scorpaenoid nom +scorpaenoids scorpaenoid nom +scorpion scorpion nom +scorpionfish scorpionfish nom +scorpions scorpion nom +scorzonera scorzonera nom +scorzoneras scorzonera nom +scotch scotch nom +scotched scotch ver +scotches scotch nom +scotching scotch ver +scoter scoter nom +scoters scoter nom +scoundrel scoundrel nom +scoundrels scoundrel nom +scour scour nom +scoured scour ver +scourer scourer nom +scourers scourer nom +scourge scourge nom +scourged scourge ver +scourges scourge nom +scourging scourge ver +scouring scour ver +scourings scouring nom +scours scour nom +scouse scouse nom +scouses scouse nom +scout scout nom +scouted scout ver +scouting scout ver +scoutings scouting nom +scoutmaster scoutmaster nom +scoutmasters scoutmaster nom +scouts scout nom +scow scow nom +scowed scow ver +scowing scow ver +scowl scowl nom +scowled scowl ver +scowling scowl ver +scowls scowl nom +scows scow nom +scrabble scrabble nom +scrabbled scrabble ver +scrabbler scrabbler nom +scrabblers scrabbler nom +scrabbles scrabble nom +scrabblier scrabbly adj +scrabbliest scrabbly adj +scrabbling scrabble ver +scrabbly scrabbly adj +scrag scrag nom +scragged scrag ver +scraggier scraggy adj +scraggiest scraggy adj +scragging scrag ver +scragglier scraggly adj +scraggliest scraggly adj +scraggly scraggly adj +scraggy scraggy adj +scrags scrag nom +scram scram ver +scramble scramble nom +scrambled scramble ver +scrambler scrambler nom +scramblers scrambler nom +scrambles scramble nom +scrambling scramble ver +scrammed scram ver +scramming scram ver +scrams scram ver +scranch scranch ver +scranched scranch ver +scranching scranch ver +scranchs scranch ver +scrap scrap nom +scrapbook scrapbook nom +scrapbooks scrapbook nom +scrape scrape nom +scraped scrape ver +scraper scraper nom +scrapers scraper nom +scrapes scrape nom +scrapheap scrapheap nom +scrapheaps scrapheap nom +scraping scrape ver +scrapings scraping nom +scrapped scrap ver +scrapper scrapper nom +scrappers scrapper nom +scrappier scrappy adj +scrappiest scrappy adj +scrappiness scrappiness nom +scrappinesses scrappiness nom +scrapping scrap ver +scrappy scrappy adj +scraps scrap nom +scratch scratch nom +scratched scratch ver +scratches scratch nom +scratchier scratchy adj +scratchiest scratchy adj +scratchiness scratchiness nom +scratchinesses scratchiness nom +scratching scratch ver +scratchings scratching nom +scratchpad scratchpad nom +scratchpads scratchpad nom +scratchy scratchy adj +scrawl scrawl nom +scrawled scrawl ver +scrawlier scrawly adj +scrawliest scrawly adj +scrawling scrawl ver +scrawls scrawl nom +scrawly scrawly adj +scrawnier scrawny adj +scrawniest scrawny adj +scrawniness scrawniness nom +scrawninesses scrawniness nom +scrawny scrawny adj +screak screak ver +screaked screak ver +screaking screak ver +screaks screak ver +scream scream nom +screamed scream ver +screamer screamer nom +screamers screamer nom +screaming scream ver +screams scream nom +scree scree nom +screech screech nom +screeched screech ver +screeches screech nom +screechier screechy adj +screechiest screechy adj +screeching screech ver +screechy screechy adj +screed screed nom +screeds screed nom +screen screen nom +screened screen ver +screening screen ver +screenings screening nom +screenplay screenplay nom +screenplays screenplay nom +screens screen nom +screenwriter screenwriter nom +screenwriters screenwriter nom +screes scree nom +screw screw nom +screwball screwball nom +screwballs screwball nom +screwbean screwbean nom +screwbeans screwbean nom +screwdriver screwdriver nom +screwdrivers screwdriver nom +screwed screw ver +screwier screwy adj +screwiest screwy adj +screwiness screwiness nom +screwinesses screwiness nom +screwing screw ver +screwings screwing nom +screws screw nom +screwworm screwworm nom +screwworms screwworm nom +screwy screwy adj +scribble scribble nom +scribbled scribble ver +scribbler scribbler nom +scribblers scribbler nom +scribbles scribble nom +scribbling scribble ver +scribe scribe nom +scribed scribe ver +scriber scriber nom +scribers scriber nom +scribes scribe nom +scribing scribe ver +scrim scrim nom +scrimmage scrimmage nom +scrimmaged scrimmage ver +scrimmages scrimmage nom +scrimmaging scrimmage ver +scrimp scrimp ver +scrimped scrimp ver +scrimpier scrimpy adj +scrimpiest scrimpy adj +scrimping scrimp ver +scrimps scrimp ver +scrimpy scrimpy adj +scrims scrim nom +scrimshank scrimshank ver +scrimshanked scrimshank ver +scrimshanking scrimshank ver +scrimshanks scrimshank ver +scrimshaw scrimshaw nom +scrimshawed scrimshaw ver +scrimshawing scrimshaw ver +scrimshaws scrimshaw nom +scrip scrip nom +scrips scrip nom +script script nom +scripted script ver +scripting script ver +scripts script nom +scripture scripture nom +scriptures scripture nom +scriptwriter scriptwriter nom +scriptwriters scriptwriter nom +scrivener scrivener nom +scriveners scrivener nom +scrod scrod nom +scrofula scrofula nom +scrofulas scrofula nom +scroll scroll nom +scrolled scroll ver +scrolling scroll ver +scrolls scroll nom +scrooge scrooge nom +scrooged scrooge ver +scrooges scrooge nom +scrooging scrooge ver +scrota scrotum nom +scrotum scrotum nom +scrounge scrounge ver +scrounged scrounge ver +scrounger scrounger nom +scroungers scrounger nom +scrounges scrounge ver +scroungier scroungy adj +scroungiest scroungy adj +scrounging scrounge ver +scroungy scroungy adj +scrub scrub nom +scrubbed scrub ver +scrubber scrubber nom +scrubbers scrubber nom +scrubbier scrubby adj +scrubbiest scrubby adj +scrubbing scrub ver +scrubby scrubby adj +scrubland scrubland nom +scrublands scrubland nom +scrubs scrub nom +scruff scruff nom +scruffier scruffy adj +scruffiest scruffy adj +scruffiness scruffiness nom +scruffinesses scruffiness nom +scruffs scruff nom +scruffy scruffy adj +scrum scrum nom +scrummage scrummage nom +scrummages scrummage nom +scrums scrum nom +scrunch scrunch nom +scrunched scrunch ver +scrunches scrunch nom +scrunchie scrunchie nom +scrunchies scrunchie nom +scrunching scrunch ver +scrunchy scrunchy nom +scruple scruple nom +scrupled scruple ver +scruples scruple nom +scrupling scruple ver +scrupulosities scrupulosity nom +scrupulosity scrupulosity nom +scrupulousness scrupulousness nom +scrupulousnesses scrupulousness nom +scrutineer scrutineer nom +scrutineers scrutineer nom +scrutinies scrutiny nom +scrutinize scrutinize ver +scrutinized scrutinize ver +scrutinizes scrutinize ver +scrutinizing scrutinize ver +scrutiny scrutiny nom +scuba scuba nom +scubaed scuba ver +scubaing scuba ver +scubas scuba nom +scud scud nom +scudded scud ver +scudding scud ver +scuds scud nom +scuff scuff nom +scuffed scuff ver +scuffing scuff ver +scuffle scuffle nom +scuffled scuffle ver +scuffles scuffle nom +scuffling scuffle ver +scuffs scuff nom +scull scull nom +sculled scull ver +sculler sculler nom +sculleries scullery nom +scullers sculler nom +scullery scullery nom +sculling scull ver +scullion scullion nom +scullions scullion nom +sculls scull nom +sculpin sculpin nom +sculpins sculpin nom +sculpt sculpt ver +sculpted sculpt ver +sculpting sculpt ver +sculptor sculptor nom +sculptors sculptor nom +sculptress sculptress nom +sculptresses sculptress nom +sculpts sculpt ver +sculpture sculpture nom +sculptured sculpture ver +sculptures sculpture nom +sculpturing sculpture ver +scum scum nom +scumbag scumbag nom +scumbags scumbag nom +scumble scumble nom +scumbles scumble nom +scummed scum ver +scummier scummy adj +scummiest scummy adj +scumming scum ver +scummy scummy adj +scums scum nom +scup scup nom +scupper scupper nom +scuppered scupper ver +scuppering scupper ver +scuppernong scuppernong nom +scuppernongs scuppernong nom +scuppers scupper nom +scups scup nom +scurf scurf nom +scurfier scurfy adj +scurfiest scurfy adj +scurfs scurf nom +scurfy scurfy adj +scurried scurry ver +scurries scurry nom +scurrilities scurrility nom +scurrility scurrility nom +scurrilousness scurrilousness nom +scurrilousnesses scurrilousness nom +scurry scurry nom +scurrying scurry ver +scurvier scurvy adj +scurvies scurvy nom +scurviest scurvy adj +scurvy scurvy adj +scut scut nom +scutcheon scutcheon nom +scutcheons scutcheon nom +scute scute nom +scutes scute nom +scuts scut nom +scuttle scuttle nom +scuttlebutt scuttlebutt nom +scuttlebutts scuttlebutt nom +scuttled scuttle ver +scuttles scuttle nom +scuttling scuttle ver +scuzzier scuzzy adj +scuzziest scuzzy adj +scuzzy scuzzy adj +scyphi scyphus nom +scyphozoan scyphozoan nom +scyphozoans scyphozoan nom +scyphus scyphus nom +scythe scythe nom +scythed scythe ver +scythes scythe nom +scything scythe ver +sea sea nom +seabag seabag nom +seabags seabag nom +seabed seabed nom +seabeds seabed nom +seabird seabird nom +seabirds seabird nom +seaboard seaboard nom +seaboards seaboard nom +seacoast seacoast nom +seacoasts seacoast nom +seafarer seafarer nom +seafarers seafarer nom +seafaring seafaring nom +seafarings seafaring nom +seafood seafood nom +seafoods seafood nom +seafowl seafowl nom +seafront seafront nom +seafronts seafront nom +seagull seagull nom +seagulls seagull nom +seahorse seahorse nom +seahorses seahorse nom +seal seal nom +sealant sealant nom +sealants sealant nom +sealed seal ver +sealer sealer nom +sealers sealer nom +sealing seal ver +seals seal nom +sealskin sealskin nom +sealskins sealskin nom +seam seam nom +seaman seaman nom +seamanship seamanship nom +seamanships seamanship nom +seamed seam ver +seamen seaman nom +seamier seamy adj +seamiest seamy adj +seaming seam ver +seamount seamount nom +seamounts seamount nom +seams seam nom +seamstress seamstress nom +seamstresses seamstress nom +seamy seamy adj +seance seance nom +seances seance nom +seaplane seaplane nom +seaplanes seaplane nom +seaport seaport nom +seaports seaport nom +seaquake seaquake nom +seaquakes seaquake nom +sear sear adj +search search nom +searched search ver +searcher searcher nom +searchers searcher nom +searches search nom +searching search ver +searchlight searchlight nom +searchlights searchlight nom +seared sear ver +searer sear adj +searest sear adj +searing sear ver +searobin searobin nom +searobins searobin nom +sears sear nom +seas sea nom +seascape seascape nom +seascapes seascape nom +seashell seashell nom +seashells seashell nom +seashore seashore nom +seashores seashore nom +seasick seasick adj +seasicker seasick adj +seasickest seasick adj +seasickness seasickness nom +seasicknesses seasickness nom +seaside seaside nom +seasides seaside nom +season season nom +seasonableness seasonableness nom +seasonablenesses seasonableness nom +seasoned season ver +seasoner seasoner nom +seasoners seasoner nom +seasoning season ver +seasonings seasoning nom +seasons season nom +seat seat nom +seated seat ver +seating seat ver +seatings seating nom +seats seat nom +seawall seawall nom +seawalls seawall nom +seaward seaward nom +seawards seaward nom +seawater seawater nom +seawaters seawater nom +seaway seaway nom +seaways seaway nom +seaweed seaweed nom +seaweeds seaweed nom +seaworthier seaworthy adj +seaworthiest seaworthy adj +seaworthiness seaworthiness nom +seaworthinesses seaworthiness nom +seaworthy seaworthy adj +seborrhea seborrhea nom +seborrheas seborrhea nom +seborrhoea seborrhoea nom +seborrhoeas seborrhoea nom +sebum sebum nom +sebums sebum nom +sec sec nom +secant secant nom +secants secant nom +secede secede ver +seceded secede ver +secedes secede ver +seceding secede ver +secern secern ver +secerned secern ver +secerning secern ver +secerns secern ver +secession secession nom +secessionism secessionism nom +secessionisms secessionism nom +secessionist secessionist nom +secessionists secessionist nom +secessions secession nom +seckel seckel nom +seckels seckel nom +seclude seclude ver +secluded seclude ver +secludes seclude ver +secluding seclude ver +seclusion seclusion nom +seclusions seclusion nom +secobarbital secobarbital nom +secobarbitals secobarbital nom +second second sw +secondaries secondary nom +secondary secondary nom +seconded second ver +seconder seconder nom +seconders seconder nom +seconding second ver +secondly secondly sw +secondment secondment nom +secondments secondment nom +seconds second nom +secpar secpar nom +secpars secpar nom +secrecies secrecy nom +secrecy secrecy nom +secret secret adj +secretaire secretaire nom +secretaires secretaire nom +secretariat secretariat nom +secretariate secretariate nom +secretariates secretariate nom +secretariats secretariat nom +secretaries secretary nom +secretary secretary nom +secretaryship secretaryship nom +secretaryships secretaryship nom +secrete secrete ver +secreted secrete ver +secreter secret adj +secretes secrete ver +secretest secret adj +secretin secretin nom +secreting secrete ver +secretins secretin nom +secretion secretion nom +secretions secretion nom +secretiveness secretiveness nom +secretivenesses secretiveness nom +secrets secret nom +secs sec nom +sect sect nom +sectarian sectarian nom +sectarianism sectarianism nom +sectarianisms sectarianism nom +sectarians sectarian nom +sectaries sectary nom +sectary sectary nom +section section nom +sectional sectional nom +sectionalism sectionalism nom +sectionalisms sectionalism nom +sectionalization sectionalization nom +sectionalizations sectionalization nom +sectionals sectional nom +sectioned section ver +sectioning section ver +sections section nom +sector sector nom +sectored sector ver +sectoring sector ver +sectors sector nom +sects sect nom +secular secular nom +secularisation secularisation nom +secularisations secularisation nom +secularism secularism nom +secularisms secularism nom +secularist secularist nom +secularists secularist nom +secularization secularization nom +secularizations secularization nom +secularize secularize ver +secularized secularize ver +secularizes secularize ver +secularizing secularize ver +seculars secular nom +secure secure adj +secured secure ver +secureness secureness nom +securenesses secureness nom +securer secure adj +secures secure ver +securest secure adj +securing secure ver +securities security nom +security security nom +sedan sedan nom +sedans sedan nom +sedate sedate adj +sedated sedate ver +sedateness sedateness nom +sedatenesses sedateness nom +sedater sedate adj +sedates sedate ver +sedatest sedate adj +sedating sedate ver +sedation sedation nom +sedations sedation nom +sedative sedative nom +sedatives sedative nom +sedge sedge nom +sedges sedge nom +sedgier sedgy adj +sedgiest sedgy adj +sedgy sedgy adj +sediment sediment nom +sedimentation sedimentation nom +sedimentations sedimentation nom +sedimented sediment ver +sedimenting sediment ver +sediments sediment nom +sedition sedition nom +seditions sedition nom +seduce seduce ver +seduced seduce ver +seducer seducer nom +seducers seducer nom +seduces seduce ver +seducing seduce ver +seduction seduction nom +seductions seduction nom +seductiveness seductiveness nom +seductivenesses seductiveness nom +seductress seductress nom +seductresses seductress nom +sedulities sedulity nom +sedulity sedulity nom +sedulousness sedulousness nom +sedulousnesses sedulousness nom +sedum sedum nom +sedums sedum nom +see see sw +seed seed nom +seedbed seedbed nom +seedbeds seedbed nom +seedcake seedcake nom +seedcakes seedcake nom +seedcase seedcase nom +seedcases seedcase nom +seeded seed ver +seeder seeder nom +seeders seeder nom +seedier seedy adj +seediest seedy adj +seediness seediness nom +seedinesses seediness nom +seeding seed ver +seedling seedling nom +seedman seedman nom +seedmen seedman nom +seedpod seedpod nom +seedpods seedpod nom +seeds seed nom +seedsman seedsman nom +seedsmen seedsman nom +seedtime seedtime nom +seedtimes seedtime nom +seedy seedy adj +seeing seeing sw +seeings seeing nom +seek seek nom +seeker seeker nom +seekers seeker nom +seeking seek ver +seeks seek nom +seel seel ver +seeled seel ver +seeling seel ver +seels seel ver +seem seem sw +seemed seemed sw +seeming seeming sw +seemings seeming nom +seemlier seemly adj +seemliest seemly adj +seemliness seemliness nom +seemlinesses seemliness nom +seemly seemly adj +seems seems sw +seen seen sw +seep seep nom +seepage seepage nom +seepages seepage nom +seeped seep ver +seeping seep ver +seeps seep nom +seer seer nom +seers seer nom +seersucker seersucker nom +seersuckers seersucker nom +sees see nom +seesaw seesaw nom +seesawed seesaw ver +seesawing seesaw ver +seesaws seesaw nom +seethe seethe nom +seethed seethe ver +seethes seethe nom +seething seethe ver +segment segment nom +segmentation segmentation nom +segmentations segmentation nom +segmented segment ver +segmenting segment ver +segments segment nom +segno segno nom +segnos segno nom +segregate segregate ver +segregated segregate ver +segregates segregate ver +segregating segregate ver +segregation segregation nom +segregationist segregationist nom +segregationists segregationist nom +segregations segregation nom +segue segue nom +segued segue ver +segueing segue ver +segues segue nom +seiche seiche nom +seiches seiche nom +seidel seidel nom +seidels seidel nom +seigneur seigneur nom +seigneuries seigneury nom +seigneurs seigneur nom +seigneury seigneury nom +seignior seignior nom +seigniorage seigniorage nom +seigniorages seigniorage nom +seigniors seignior nom +seignories seignory nom +seignory seignory nom +seine seine nom +seined seine ver +seiner seiner nom +seiners seiner nom +seines seine nom +seining seine ver +seism seism nom +seismograph seismograph nom +seismographer seismographer nom +seismographers seismographer nom +seismographies seismography nom +seismographs seismograph nom +seismography seismography nom +seismologies seismology nom +seismologist seismologist nom +seismologists seismologist nom +seismology seismology nom +seisms seism nom +seize seize ver +seized seize ver +seizer seizer nom +seizers seizer nom +seizes seize ver +seizing seize ver +seizings seizing nom +seizure seizure nom +seizures seizure nom +selachian selachian nom +selachians selachian nom +select select ver +selected select ver +selecting select ver +selection selection nom +selections selection nom +selectivities selectivity nom +selectivity selectivity nom +selectman selectman nom +selectmen selectman nom +selectness selectness nom +selectnesses selectness nom +selector selector nom +selectors selector nom +selects select ver +selectwoman selectwoman nom +selectwomen selectwoman nom +selenium selenium nom +seleniums selenium nom +selenographer selenographer nom +selenographers selenographer nom +selenographies selenography nom +selenography selenography nom +self self sw +selfed self ver +selfing self ver +selfishness selfishness nom +selfishnesses selfishness nom +selflessness selflessness nom +selflessnesses selflessness nom +selfs self ver +selfsameness selfsameness nom +selfsamenesses selfsameness nom +sell sell nom +seller seller nom +sellers seller nom +selling sell ver +sellout sellout nom +sellouts sellout nom +sells sell nom +seltzer seltzer nom +seltzers seltzer nom +selvage selvage nom +selvages selvage nom +selvedge selvedge nom +selvedges selvedge nom +selves selves sw +semanticist semanticist nom +semanticists semanticist nom +semaphore semaphore nom +semaphored semaphore ver +semaphores semaphore nom +semaphoring semaphore ver +semblance semblance nom +semblances semblance nom +semen semen nom +semens semen nom +semester semester nom +semesters semester nom +semi semi nom +semiautomatic semiautomatic nom +semiautomatics semiautomatic nom +semibreve semibreve nom +semibreves semibreve nom +semicircle semicircle nom +semicircles semicircle nom +semicolon semicolon nom +semicolons semicolon nom +semicoma semicoma nom +semicomas semicoma nom +semiconductor semiconductor nom +semiconductors semiconductor nom +semiconsciousness semiconsciousness nom +semiconsciousnesses semiconsciousness nom +semidarkness semidarkness nom +semidarknesses semidarkness nom +semidesert semidesert nom +semideserts semidesert nom +semidiameter semidiameter nom +semidiameters semidiameter nom +semifinal semifinal nom +semifinalist semifinalist nom +semifinalists semifinalist nom +semifinals semifinal nom +semifluidities semifluidity nom +semifluidity semifluidity nom +semigloss semigloss nom +semiglosses semigloss nom +semimonthlies semimonthly nom +semimonthly semimonthly nom +seminar seminar nom +seminarian seminarian nom +seminarians seminarian nom +seminaries seminary nom +seminarist seminarist nom +seminarists seminarist nom +seminars seminar nom +seminary seminary nom +seminoma seminoma nom +seminomas seminoma nom +semiotic semiotic nom +semiotician semiotician nom +semioticians semiotician nom +semiotics semiotic nom +semipro semipro nom +semiprofessional semiprofessional nom +semiprofessionals semiprofessional nom +semipros semipro nom +semiquaver semiquaver nom +semiquavers semiquaver nom +semis semi nom +semisolid semisolid nom +semisolids semisolid nom +semitone semitone nom +semitones semitone nom +semitrailer semitrailer nom +semitrailers semitrailer nom +semivowel semivowel nom +semivowels semivowel nom +semiweeklies semiweekly nom +semiweekly semiweekly nom +semolina semolina nom +semolinas semolina nom +sempstress sempstress nom +sempstresses sempstress nom +sen sen nom +senate senate nom +senates senate nom +senator senator nom +senators senator nom +senatorship senatorship nom +senatorships senatorship nom +send send nom +sender sender nom +senders sender nom +sending send ver +sendings sending nom +sends send nom +sendup sendup nom +sendups sendup nom +senega senega nom +senegas senega nom +senescence senescence nom +senescences senescence nom +seneschal seneschal nom +seneschals seneschal nom +senile senile nom +seniles senile nom +senilities senility nom +senility senility nom +senior senior nom +seniorities seniority nom +seniority seniority nom +seniors senior nom +senna senna nom +sennas senna nom +senor senor nom +senora senora nom +senoras senora nom +senorita senorita nom +senoritas senorita nom +senors senor nom +sens sen nom +sensation sensation nom +sensationalism sensationalism nom +sensationalisms sensationalism nom +sensationalist sensationalist nom +sensationalists sensationalist nom +sensationalize sensationalize ver +sensationalized sensationalize ver +sensationalizes sensationalize ver +sensationalizing sensationalize ver +sensations sensation nom +sense sense nom +sensed sense ver +senselessness senselessness nom +senselessnesses senselessness nom +senses sens nom +sensibilities sensibility nom +sensibility sensibility nom +sensible sensible sw +sensibleness sensibleness nom +sensiblenesses sensibleness nom +sensibler sensible adj +sensiblest sensible adj +sensing sense ver +sensings sensing nom +sensitisation sensitisation nom +sensitisations sensitisation nom +sensitive sensitive nom +sensitiveness sensitiveness nom +sensitivenesses sensitiveness nom +sensitives sensitive nom +sensitivities sensitivity nom +sensitivity sensitivity nom +sensitization sensitization nom +sensitizations sensitization nom +sensitize sensitize ver +sensitized sensitize ver +sensitizer sensitizer nom +sensitizers sensitizer nom +sensitizes sensitize ver +sensitizing sensitize ver +sensitometer sensitometer nom +sensitometers sensitometer nom +sensor sensor nom +sensors sensor nom +sensualism sensualism nom +sensualisms sensualism nom +sensualist sensualist nom +sensualists sensualist nom +sensualities sensuality nom +sensuality sensuality nom +sensualize sensualize ver +sensualized sensualize ver +sensualizes sensualize ver +sensualizing sensualize ver +sensualness sensualness nom +sensualnesses sensualness nom +sensuousness sensuousness nom +sensuousnesses sensuousness nom +sent sent sw +sentence sentence nom +sentenced sentence ver +sentences sentence nom +sentencing sentence ver +sentience sentience nom +sentiences sentience nom +sentiencies sentiency nom +sentiency sentiency nom +sentient sentient nom +sentients sentient nom +sentiment sentiment nom +sentimentalise sentimentalise ver +sentimentalised sentimentalise ver +sentimentalises sentimentalise ver +sentimentalising sentimentalise ver +sentimentalism sentimentalism nom +sentimentalisms sentimentalism nom +sentimentalist sentimentalist nom +sentimentalists sentimentalist nom +sentimentalities sentimentality nom +sentimentality sentimentality nom +sentimentalization sentimentalization nom +sentimentalizations sentimentalization nom +sentimentalize sentimentalize ver +sentimentalized sentimentalize ver +sentimentalizes sentimentalize ver +sentimentalizing sentimentalize ver +sentiments sentiment nom +sentinel sentinel nom +sentineled sentinel ver +sentineling sentinel ver +sentinels sentinel nom +sentries sentry nom +sentry sentry nom +sepal sepal nom +sepals sepal nom +separabilities separability nom +separability separability nom +separate separate nom +separated separate ver +separateness separateness nom +separatenesses separateness nom +separates separate nom +separating separate ver +separation separation nom +separations separation nom +separatism separatism nom +separatisms separatism nom +separatist separatist nom +separatists separatist nom +separator separator nom +separators separator nom +separatrix separatrix nom +separatrixes separatrix nom +sepia sepia nom +sepias sepia nom +sepiolite sepiolite nom +sepiolites sepiolite nom +sepses sepsis nom +sepsis sepsis nom +sept sept nom +septa septum nom +septation septation nom +septations septation nom +septentrion septentrion nom +septentrions septentrion nom +septet septet nom +septets septet nom +septette septette nom +septettes septette nom +septicemia septicemia nom +septicemias septicemia nom +septs sept nom +septuagenarian septuagenarian nom +septuagenarians septuagenarian nom +septum septum nom +sepulcher sepulcher nom +sepulchered sepulcher ver +sepulchering sepulcher ver +sepulchers sepulcher nom +sepulchre sepulchre nom +sepulchred sepulchre ver +sepulchres sepulchre nom +sepulchring sepulchre ver +sepulture sepulture nom +sepultures sepulture nom +sequel sequel nom +sequela sequela nom +sequelae sequela nom +sequels sequel nom +sequence sequence nom +sequenced sequence ver +sequences sequence nom +sequencing sequence ver +sequencings sequencing nom +sequester sequester ver +sequestered sequester ver +sequestering sequester ver +sequesters sequester ver +sequestrate sequestrate ver +sequestrated sequestrate ver +sequestrates sequestrate ver +sequestrating sequestrate ver +sequestration sequestration nom +sequestrations sequestration nom +sequin sequin nom +sequins sequin nom +sequoia sequoia nom +sequoias sequoia nom +seraglio seraglio nom +seraglios seraglio nom +serail serail nom +serails serail nom +serape serape nom +serapes serape nom +seraph seraph nom +seraphim seraphim nom +seraphs seraph nom +sere sere adj +serenade serenade nom +serenaded serenade ver +serenades serenade nom +serenading serenade ver +serendipities serendipity nom +serendipity serendipity nom +serene serene adj +sereneness sereneness nom +serenenesses sereneness nom +serener serene adj +serenest serene adj +serenities serenity nom +serenity serenity nom +serer sere adj +seres sere nom +serest sere adj +serf serf nom +serfdom serfdom nom +serfdoms serfdom nom +serfhood serfhood nom +serfhoods serfhood nom +serfs serf nom +serge serge nom +sergeant sergeant nom +sergeants sergeant nom +serged serge ver +serger serger nom +sergers serger nom +serges serge nom +serging serge ver +serial serial nom +serialisation serialisation nom +serialisations serialisation nom +serialism serialism nom +serialisms serialism nom +serialization serialization nom +serializations serialization nom +serialize serialize ver +serialized serialize ver +serializes serialize ver +serializing serialize ver +serials serial nom +sericteria sericterium nom +sericterium sericterium nom +sericulture sericulture nom +sericultures sericulture nom +sericulturist sericulturist nom +sericulturists sericulturist nom +seriema seriema nom +seriemas seriema nom +serif serif nom +serifs serif nom +serigraph serigraph nom +serigraphies serigraphy nom +serigraphs serigraph nom +serigraphy serigraphy nom +serin serin nom +serine serine nom +serines serine nom +serins serin nom +serious serious sw +seriously seriously sw +seriousness seriousness nom +seriousnesses seriousness nom +serjeant serjeant nom +serjeants serjeant nom +sermon sermon nom +sermonize sermonize ver +sermonized sermonize ver +sermonizer sermonizer nom +sermonizers sermonizer nom +sermonizes sermonize ver +sermonizing sermonize ver +sermons sermon nom +serologies serology nom +serologist serologist nom +serologists serologist nom +serology serology nom +serosa serosa nom +serosas serosa nom +serotine serotine nom +serotines serotine nom +serotonin serotonin nom +serotonins serotonin nom +serow serow nom +serows serow nom +serpent serpent nom +serpentine serpentine nom +serpentined serpentine ver +serpentines serpentine nom +serpentining serpentine ver +serpents serpent nom +serranid serranid nom +serranids serranid nom +serrate serrate ver +serrated serrate ver +serrates serrate ver +serrating serrate ver +serration serration nom +serrations serration nom +sertularian sertularian nom +sertularians sertularian nom +serum serum nom +serums serum nom +serval serval nom +servals serval nom +servant servant nom +servants servant nom +serve serve nom +served serve ver +server server nom +servers server nom +serves serve nom +service service nom +serviceabilities serviceability nom +serviceability serviceability nom +serviceableness serviceableness nom +serviceablenesses serviceableness nom +serviceberries serviceberry nom +serviceberry serviceberry nom +serviced service ver +serviceman serviceman nom +servicemen serviceman nom +services service nom +servicewoman servicewoman nom +servicewomen servicewoman nom +servicing service ver +serviette serviette nom +serviettes serviette nom +servilities servility nom +servility servility nom +serving serve ver +servings serving nom +servitor servitor nom +servitors servitor nom +servitude servitude nom +servitudes servitude nom +servo servo nom +servoed servo ver +servoing servo ver +servomechanism servomechanism nom +servomechanisms servomechanism nom +servomotor servomotor nom +servomotors servomotor nom +servos servo nom +sesame sesame nom +sesames sesame nom +sesquicentennial sesquicentennial nom +sesquicentennials sesquicentennial nom +sesquipedalian sesquipedalian nom +sesquipedalians sesquipedalian nom +session session nom +sessions session nom +sestet sestet nom +sestets sestet nom +set set ver +seta seta nom +setae seta nom +setback setback nom +setbacks setback nom +setoff setoff nom +setoffs setoff nom +sets set nom +setscrew setscrew nom +setscrews setscrew nom +sett sett nom +settee settee nom +settees settee nom +setter setter nom +setters setter nom +setterwort setterwort nom +setterworts setterwort nom +setting set ver +settings setting nom +settle settle nom +settled settle ver +settlement settlement nom +settlements settlement nom +settler settler nom +settlers settler nom +settles settle nom +settling settle ver +setts sett nom +setup setup nom +setups setup nom +seven seven sw +sevens sevens nom +seventeen seventeen nom +seventeens seventeen nom +seventeenth seventeenth nom +seventeenths seventeenth nom +seventh seventh nom +sevenths seventh nom +seventies seventy nom +seventieth seventieth nom +seventieths seventieth nom +seventy seventy nom +sever sever ver +several several sw +severals several nom +severalties severalty nom +severalty severalty nom +severance severance nom +severances severance nom +severe severe adj +severed sever ver +severeness severeness nom +severenesses severeness nom +severer severe adj +severest severe adj +severing sever ver +severities severity nom +severity severity nom +severs sever ver +sew sew ver +sewage sewage nom +sewages sewage nom +sewed sew ver +sewellel sewellel nom +sewellels sewellel nom +sewer sewer nom +sewerage sewerage nom +sewerages sewerage nom +sewered sewer ver +sewering sewer ver +sewers sewer nom +sewing sew ver +sewings sewing nom +sewn sew ver +sews sew ver +sex sex nom +sexagenarian sexagenarian nom +sexagenarians sexagenarian nom +sexed sex ver +sexes sex nom +sexier sexy adj +sexiest sexy adj +sexiness sexiness nom +sexinesses sexiness nom +sexing sex ver +sexism sexism nom +sexisms sexism nom +sexist sexist nom +sexists sexist nom +sexlessness sexlessness nom +sexlessnesses sexlessness nom +sexologies sexology nom +sexologist sexologist nom +sexologists sexologist nom +sexology sexology nom +sexpot sexpot nom +sexpots sexpot nom +sext sext nom +sextant sextant nom +sextants sextant nom +sextet sextet nom +sextets sextet nom +sextette sextette nom +sextettes sextette nom +sexton sexton nom +sextons sexton nom +sexts sext nom +sextuplet sextuplet nom +sextuplets sextuplet nom +sexualities sexuality nom +sexuality sexuality nom +sexy sexy adj +sforzando sforzando nom +sforzandos sforzando nom +sgraffiti sgraffito nom +sgraffito sgraffito nom +shabbier shabby adj +shabbiest shabby adj +shabbiness shabbiness nom +shabbinesses shabbiness nom +shabby shabby adj +shack shack nom +shacked shack ver +shacking shack ver +shackle shackle nom +shackled shackle ver +shackles shackle nom +shackling shackle ver +shacks shack nom +shad shad nom +shadberries shadberry nom +shadberry shadberry nom +shadblow shadblow nom +shadblows shadblow nom +shadbush shadbush nom +shadbushes shadbush nom +shaddock shaddock nom +shaddocks shaddock nom +shade shade nom +shaded shade ver +shades shade nom +shadflies shadfly nom +shadfly shadfly nom +shadier shady adj +shadiest shady adj +shadiness shadiness nom +shadinesses shadiness nom +shading shade ver +shadings shading nom +shadow shadow nom +shadowbox shadowbox ver +shadowboxed shadowbox ver +shadowboxes shadowbox ver +shadowboxing shadowbox ver +shadowboxings shadowboxing nom +shadowed shadow ver +shadowgraph shadowgraph nom +shadowgraphs shadowgraph nom +shadowier shadowy adj +shadowiest shadowy adj +shadowiness shadowiness nom +shadowinesses shadowiness nom +shadowing shadow ver +shadowings shadowing nom +shadows shadow nom +shadowy shadowy adj +shady shady adj +shaft shaft nom +shafted shaft ver +shafting shaft ver +shafts shaft nom +shag shag nom +shagbark shagbark nom +shagbarks shagbark nom +shagged shag ver +shaggier shaggy adj +shaggiest shaggy adj +shagginess shagginess nom +shagginesses shagginess nom +shagging shag ver +shaggy shaggy adj +shaggymane shaggymane nom +shaggymanes shaggymane nom +shags shag nom +shah shah nom +shahs shah nom +shake shake nom +shakedown shakedown nom +shakedowns shakedown nom +shaken shake ver +shakeout shakeout nom +shakeouts shakeout nom +shaker shaker nom +shakers shaker nom +shakes shake nom +shakeup shakeup nom +shakeups shakeup nom +shakier shaky adj +shakiest shaky adj +shakiness shakiness nom +shakinesses shakiness nom +shaking shake ver +shakings shaking nom +shako shako nom +shakoes shako nom +shakos shako nom +shaky shaky adj +shale shale nom +shales shale nom +shall shall sw +shallon shallon nom +shallons shallon nom +shallot shallot nom +shallots shallot nom +shallow shallow adj +shallowed shallow ver +shallower shallow adj +shallowest shallow adj +shallowing shallow ver +shallowness shallowness nom +shallownesses shallowness nom +shallows shallow nom +shallu shallu nom +shallus shallu nom +sham sham nom +shaman shaman nom +shamanism shamanism nom +shamanisms shamanism nom +shamans shaman nom +shamble shamble nom +shambled shamble ver +shambles shamble nom +shambling shamble ver +shamblings shambling nom +shame shame nom +shamed shame ver +shamefacedness shamefacedness nom +shamefacednesses shamefacedness nom +shamefulness shamefulness nom +shamefulnesses shamefulness nom +shamelessness shamelessness nom +shamelessnesses shamelessness nom +shames shame nom +shaming shame ver +shammed sham ver +shammied shammy ver +shammies shammy nom +shamming sham ver +shammy shammy nom +shammying shammy ver +shampoo shampoo nom +shampooed shampoo ver +shampooer shampooer nom +shampooers shampooer nom +shampooing shampoo ver +shampoos shampoo nom +shamrock shamrock nom +shamrocks shamrock nom +shams sham nom +shandies shandy nom +shandy shandy nom +shandygaff shandygaff nom +shandygaffs shandygaff nom +shanghai shanghai ver +shanghaied shanghai ver +shanghaier shanghaier nom +shanghaiers shanghaier nom +shanghaiing shanghai ver +shanghais shanghai ver +shank shank nom +shanked shank ver +shanking shank ver +shanks shank nom +shannies shanny nom +shanny shanny nom +shantied shanty ver +shanties shanty nom +shantung shantung nom +shantungs shantung nom +shanty shanty nom +shantying shanty ver +shantytown shantytown nom +shantytowns shantytown nom +shape shape nom +shaped shape ver +shapelessness shapelessness nom +shapelessnesses shapelessness nom +shapelier shapely adj +shapeliest shapely adj +shapeliness shapeliness nom +shapelinesses shapeliness nom +shapely shapely adj +shaper shaper nom +shapers shaper nom +shapes shape nom +shaping shape ver +shapings shaping nom +shard shard nom +shards shard nom +share share nom +sharecrop sharecrop ver +sharecropped sharecrop ver +sharecropper sharecropper nom +sharecroppers sharecropper nom +sharecropping sharecrop ver +sharecrops sharecrop ver +shared share ver +shareholder shareholder nom +shareholders shareholder nom +shareholding shareholding nom +shareholdings shareholding nom +sharer sharer nom +sharers sharer nom +shares share nom +shareware shareware nom +sharewares shareware nom +sharia sharia nom +sharias sharia nom +sharing share ver +sharings sharing nom +shark shark nom +sharked shark ver +sharking shark ver +sharks shark nom +sharkskin sharkskin nom +sharkskins sharkskin nom +sharksucker sharksucker nom +sharksuckers sharksucker nom +sharp sharp adj +sharped sharp ver +sharpen sharpen ver +sharpened sharpen ver +sharpener sharpener nom +sharpeners sharpener nom +sharpening sharpen ver +sharpens sharpen ver +sharper sharp adj +sharpers sharper nom +sharpest sharp adj +sharpie sharpie nom +sharpies sharpie nom +sharping sharp ver +sharpness sharpness nom +sharpnesses sharpness nom +sharps sharp nom +sharpshooter sharpshooter nom +sharpshooters sharpshooter nom +sharpshooting sharpshooting nom +sharpshootings sharpshooting nom +sharpy sharpy nom +shatter shatter nom +shattered shatter ver +shattering shatter ver +shatters shatter nom +shave shave nom +shaved shave ver +shaver shaver nom +shavers shaver nom +shaves shave nom +shaving shave ver +shavings shaving nom +shawl shawl nom +shawls shawl nom +shawm shawm nom +shawms shawm nom +shay shay nom +shays shay nom +she she sw +sheaf sheaf nom +sheafed sheaf ver +sheafing sheaf ver +sheafs sheaf ver +shear shear nom +sheared shear ver +shearer shearer nom +shearers shearer nom +shearing shear ver +shearings shearing nom +shears shear nom +shearwater shearwater nom +shearwaters shearwater nom +sheatfish sheatfish nom +sheatfishes sheatfish nom +sheath sheath nom +sheathe sheathe ver +sheathed sheath ver +sheathes sheathe ver +sheathing sheath ver +sheathings sheathing nom +sheaths sheath nom +sheave sheave nom +sheaved sheave ver +sheaves sheaf nom +sheaving sheave ver +shebang shebang nom +shebangs shebang nom +shebeen shebeen nom +shebeens shebeen nom +shed shed ver +shedding shed ver +sheddings shedding nom +sheds shed nom +sheen sheen nom +sheened sheen ver +sheenier sheeny adj +sheenies sheeny nom +sheeniest sheeny adj +sheening sheen ver +sheens sheen nom +sheeny sheeny adj +sheep sheep nom +sheepcote sheepcote nom +sheepcotes sheepcote nom +sheepdog sheepdog nom +sheepdogs sheepdog nom +sheepfold sheepfold nom +sheepfolds sheepfold nom +sheepherder sheepherder nom +sheepherders sheepherder nom +sheepishness sheepishness nom +sheepishnesses sheepishness nom +sheepman sheepman nom +sheepmen sheepman nom +sheepshank sheepshank nom +sheepshanks sheepshank nom +sheepshead sheepshead nom +sheepsheads sheepshead nom +sheepshearing sheepshearing nom +sheepshearings sheepshearing nom +sheepskin sheepskin nom +sheepskins sheepskin nom +sheepwalk sheepwalk nom +sheepwalks sheepwalk nom +sheer sheer adj +sheered sheer ver +sheerer sheer adj +sheerest sheer adj +sheering sheer ver +sheerness sheerness nom +sheernesses sheerness nom +sheers sheer nom +sheet sheet nom +sheeted sheet ver +sheeting sheet ver +sheetings sheeting nom +sheets sheet nom +sheik sheik nom +sheika sheika nom +sheikas sheika nom +sheikdom sheikdom nom +sheikdoms sheikdom nom +sheikh sheikh nom +sheikha sheikha nom +sheikhas sheikha nom +sheikhdom sheikhdom nom +sheikhdoms sheikhdom nom +sheikhs sheikh nom +sheiks sheik nom +shekel shekel nom +shekels shekel nom +sheldrake sheldrake nom +sheldrakes sheldrake nom +shelduck shelduck nom +shelducks shelduck nom +shelf shelf nom +shelfed shelf ver +shelfful shelfful nom +shelffuls shelfful nom +shelfing shelf ver +shelfs shelf ver +shell shell nom +shellac shellac nom +shellack shellack nom +shellacked shellac ver +shellacking shellac ver +shellackings shellacking nom +shellacks shellack nom +shellacs shellac nom +shellbark shellbark nom +shellbarks shellbark nom +shelled shell ver +shellfire shellfire nom +shellfires shellfire nom +shellfish shellfish nom +shelling shell ver +shellings shelling nom +shells shell nom +shelter shelter nom +shelterbelt shelterbelt nom +shelterbelts shelterbelt nom +sheltered shelter ver +sheltering shelter ver +shelters shelter nom +shelve shelve ver +shelved shelve ver +shelves shelf nom +shelvier shelvy adj +shelviest shelvy adj +shelving shelve ver +shelvings shelving nom +shelvy shelvy adj +shenanigan shenanigan nom +shenanigans shenanigan nom +shepherd shepherd nom +shepherded shepherd ver +shepherdess shepherdess nom +shepherdesses shepherdess nom +shepherding shepherd ver +shepherds shepherd nom +sherbert sherbert nom +sherberts sherbert nom +sherbet sherbet nom +sherbets sherbet nom +sherd sherd nom +sherds sherd nom +sheriff sheriff nom +sheriffs sheriff nom +sherlock sherlock nom +sherlocks sherlock nom +sherries sherry nom +sherry sherry nom +shes she nom +shew shew ver +shewed shew ver +shewing shew ver +shewn shew ver +shews shew ver +shiatsu shiatsu nom +shiatsus shiatsu nom +shibah shibah nom +shibahs shibah nom +shibboleth shibboleth nom +shibboleths shibboleth nom +shied shy ver +shield shield nom +shielded shield ver +shielding shield ver +shields shield nom +shier shier nom +shiers shier nom +shies shy nom +shift shift nom +shifted shift ver +shiftier shifty adj +shiftiest shifty adj +shiftiness shiftiness nom +shiftinesses shiftiness nom +shifting shift ver +shiftings shifting nom +shiftlessness shiftlessness nom +shiftlessnesses shiftlessness nom +shifts shift nom +shifty shifty adj +shigella shigella nom +shigellas shigella nom +shigelloses shigellosis nom +shigellosis shigellosis nom +shiitake shiitake nom +shiitakes shiitake nom +shiksa shiksa nom +shiksas shiksa nom +shikse shikse nom +shikses shikse nom +shill shill nom +shillalah shillalah nom +shillalahs shillalah nom +shilled shill ver +shillelagh shillelagh nom +shillelaghs shillelagh nom +shilling shill ver +shillings shilling nom +shills shill nom +shillyshallied shillyshally ver +shillyshallies shillyshally nom +shillyshally shillyshally nom +shillyshallying shillyshally ver +shim shim nom +shimmed shim ver +shimmer shimmer nom +shimmered shimmer ver +shimmering shimmer ver +shimmers shimmer nom +shimmied shimmy ver +shimmies shimmy nom +shimming shim ver +shimmy shimmy nom +shimmying shimmy ver +shims shim nom +shin shin nom +shinbone shinbone nom +shinbones shinbone nom +shindies shindy nom +shindig shindig nom +shindigs shindig nom +shindy shindy nom +shine shine nom +shined shine ver +shiner shiner nom +shiners shiner nom +shines shine nom +shingle shingle nom +shingled shingle ver +shingles shingle nom +shinglier shingly adj +shingliest shingly adj +shingling shingle ver +shinglings shingling nom +shingly shingly adj +shinguard shinguard nom +shinguards shinguard nom +shinier shiny adj +shiniest shiny adj +shininess shininess nom +shininesses shininess nom +shining shine ver +shinleaf shinleaf nom +shinleaves shinleaf nom +shinned shin ver +shinnied shinny ver +shinnies shinny nom +shinning shin ver +shinny shinny nom +shinnying shinny ver +shinplaster shinplaster nom +shinplasters shinplaster nom +shins shin nom +shiny shiny adj +ship ship nom +shipboard shipboard nom +shipboards shipboard nom +shipbuilder shipbuilder nom +shipbuilders shipbuilder nom +shipbuilding shipbuilding nom +shipbuildings shipbuilding nom +shipload shipload nom +shiploads shipload nom +shipmate shipmate nom +shipmates shipmate nom +shipment shipment nom +shipments shipment nom +shipowner shipowner nom +shipowners shipowner nom +shipped ship ver +shipper shipper nom +shippers shipper nom +shipping ship ver +shippings shipping nom +ships ship nom +shipside shipside nom +shipsides shipside nom +shipway shipway nom +shipways shipway nom +shipworm shipworm nom +shipworms shipworm nom +shipwreck shipwreck nom +shipwrecked shipwreck ver +shipwrecking shipwreck ver +shipwrecks shipwreck nom +shipwright shipwright nom +shipwrights shipwright nom +shipyard shipyard nom +shipyards shipyard nom +shire shire nom +shires shire nom +shirk shirk nom +shirked shirk ver +shirker shirker nom +shirkers shirker nom +shirking shirk ver +shirks shirk nom +shirr shirr nom +shirred shirr ver +shirring shirr ver +shirrings shirring nom +shirrs shirr nom +shirt shirt nom +shirtdress shirtdress nom +shirtdresses shirtdress nom +shirted shirt ver +shirtfront shirtfront nom +shirtfronts shirtfront nom +shirtier shirty adj +shirtiest shirty adj +shirting shirt ver +shirtings shirting nom +shirtmaker shirtmaker nom +shirtmakers shirtmaker nom +shirts shirt nom +shirtsleeve shirtsleeve nom +shirtsleeves shirtsleeve nom +shirttail shirttail nom +shirttails shirttail nom +shirtwaist shirtwaist nom +shirtwaister shirtwaister nom +shirtwaisters shirtwaister nom +shirtwaists shirtwaist nom +shirty shirty adj +shit shit ver +shithead shithead nom +shitheads shithead nom +shitlist shitlist nom +shitlists shitlist nom +shits shit nom +shittah shittah nom +shittahs shittah nom +shittier shitty adj +shittiest shitty adj +shittim shittim nom +shittims shittim nom +shittimwood shittimwood nom +shittimwoods shittimwood nom +shitting shit ver +shitty shitty adj +shiv shiv nom +shiva shiva nom +shivah shivah nom +shivahs shivah nom +shivaree shivaree nom +shivarees shivaree nom +shivas shiva nom +shiver shiver nom +shivered shiver ver +shivering shiver ver +shiverings shivering nom +shivers shiver nom +shivs shiv nom +shlemiel shlemiel nom +shlemiels shlemiel nom +shlep shlep nom +shlepp shlepp nom +shlepped shlep ver +shlepping shlep ver +shlepps shlepp nom +shleps shlep nom +shlock shlock nom +shlocks shlock nom +shmaltz shmaltz nom +shmaltzes shmaltz nom +shmear shmear nom +shmears shmear nom +shmooze shmooze ver +shmoozed shmooze ver +shmoozes shmooze ver +shmoozing shmooze ver +shoal shoal adj +shoaled shoal ver +shoaler shoal adj +shoalest shoal adj +shoalier shoaly adj +shoaliest shoaly adj +shoaling shoal ver +shoals shoal nom +shoaly shoaly adj +shoat shoat nom +shoats shoat nom +shock shock nom +shocked shock ver +shocker shocker nom +shockers shocker nom +shocking shock ver +shocks shock nom +shod shoe ver +shoddier shoddy adj +shoddies shoddy nom +shoddiest shoddy adj +shoddiness shoddiness nom +shoddinesses shoddiness nom +shoddy shoddy adj +shoe shoe nom +shoebill shoebill nom +shoebills shoebill nom +shoeblack shoeblack nom +shoeblacks shoeblack nom +shoebox shoebox nom +shoeboxes shoebox nom +shoehorn shoehorn nom +shoehorned shoehorn ver +shoehorning shoehorn ver +shoehorns shoehorn nom +shoeing shoe ver +shoelace shoelace nom +shoelaces shoelace nom +shoemaker shoemaker nom +shoemakers shoemaker nom +shoemaking shoemaking nom +shoemakings shoemaking nom +shoes shoe nom +shoeshine shoeshine nom +shoeshines shoeshine nom +shoestring shoestring nom +shoestrings shoestring nom +shoetree shoetree nom +shoetrees shoetree nom +shofar shofar nom +shofars shofar nom +shogi shogi nom +shogis shogi nom +shogun shogun nom +shogunate shogunate nom +shogunates shogunate nom +shoguns shogun nom +shoji shoji nom +shojis shoji nom +shone shine ver +shoo shoo ver +shooed shoo ver +shooflies shoofly nom +shoofly shoofly nom +shooing shoo ver +shook shake ver +shooks shook nom +shoos shoo ver +shoot shoot nom +shooter shooter nom +shooters shooter nom +shooting shoot ver +shootings shooting nom +shootout shootout nom +shootouts shootout nom +shoots shoot nom +shop shop nom +shopfront shopfront nom +shopfronts shopfront nom +shophar shophar nom +shophars shophar nom +shopkeeper shopkeeper nom +shopkeepers shopkeeper nom +shoplift shoplift ver +shoplifted shoplift ver +shoplifter shoplifter nom +shoplifters shoplifter nom +shoplifting shoplift ver +shopliftings shoplifting nom +shoplifts shoplift ver +shoppe shoppe nom +shopped shop ver +shopper shopper nom +shoppers shopper nom +shoppes shoppe nom +shopping shop ver +shoppings shopping nom +shops shop nom +shoptalk shoptalk nom +shoptalks shoptalk nom +shopwalker shopwalker nom +shopwalkers shopwalker nom +shopwindow shopwindow nom +shopwindows shopwindow nom +shore shore nom +shorebird shorebird nom +shorebirds shorebird nom +shored shore ver +shoreline shoreline nom +shorelines shoreline nom +shores shore nom +shoring shore ver +shorings shoring nom +short short adj +shortage shortage nom +shortages shortage nom +shortbread shortbread nom +shortbreads shortbread nom +shortcake shortcake nom +shortcakes shortcake nom +shortchange shortchange ver +shortchanged shortchange ver +shortchanges shortchange ver +shortchanging shortchange ver +shortcoming shortcoming nom +shortcomings shortcoming nom +shortcut shortcut nom +shortcuts shortcut nom +shorted short ver +shorten shorten ver +shortened shorten ver +shortening shorten ver +shortenings shortening nom +shortens shorten ver +shorter short adj +shortest short adj +shortfall shortfall nom +shortfalls shortfall nom +shortgrass shortgrass nom +shortgrasses shortgrass nom +shorthand shorthand nom +shorthands shorthand nom +shorthorn shorthorn nom +shorthorns shorthorn nom +shortia shortia nom +shortias shortia nom +shortie shortie nom +shorties shortie nom +shorting short ver +shortness shortness nom +shortnesses shortness nom +shorts short nom +shortsightedness shortsightedness nom +shortsightednesses shortsightedness nom +shortstop shortstop nom +shortstops shortstop nom +shortwave shortwave nom +shortwaved shortwave ver +shortwaves shortwave nom +shortwaving shortwave ver +shorty shorty nom +shot shoot ver +shotgun shotgun nom +shotgunned shotgun ver +shotgunning shotgun ver +shotguns shotgun nom +shots shot nom +shotted shot ver +shotting shot ver +should should sw +shoulder shoulder nom +shouldered shoulder ver +shouldering shoulder ver +shoulders shoulder nom +shouldn_t shouldn_t sw +shout shout nom +shouted shout ver +shouter shouter nom +shouters shouter nom +shouting shout ver +shoutings shouting nom +shouts shout nom +shove shove nom +shoved shove ver +shovel shovel nom +shoveled shovel ver +shoveler shoveler nom +shovelers shoveler nom +shovelful shovelful nom +shovelfuls shovelful nom +shovelhead shovelhead nom +shovelheads shovelhead nom +shoveling shovel ver +shovels shovel nom +shoves shove nom +shoving shove ver +show show nom +showbiz showbiz nom +showbizzes showbiz nom +showboat showboat nom +showboated showboat ver +showboating showboat ver +showboats showboat nom +showcase showcase nom +showcased showcase ver +showcases showcase nom +showcasing showcase ver +showdown showdown nom +showdowns showdown nom +showed show ver +shower shower nom +showered shower ver +showerhead showerhead nom +showerheads showerhead nom +showerier showery adj +showeriest showery adj +showering shower ver +showers shower nom +showery showery adj +showgirl showgirl nom +showgirls showgirl nom +showier showy adj +showiest showy adj +showiness showiness nom +showinesses showiness nom +showing show ver +showings showing nom +showman showman nom +showmanship showmanship nom +showmanships showmanship nom +showmen showman nom +shown show ver +showoff showoff nom +showoffs showoff nom +showpiece showpiece nom +showpieces showpiece nom +showplace showplace nom +showplaces showplace nom +showroom showroom nom +showrooms showroom nom +shows show nom +showy showy adj +shrank shrink ver +shrapnel shrapnel nom +shrapnels shrapnel nom +shred shred nom +shredded shred ver +shredder shredder nom +shredders shredder nom +shredding shred ver +shreds shred nom +shrew shrew nom +shrewd shrewd adj +shrewder shrewd adj +shrewdest shrewd adj +shrewdness shrewdness nom +shrewdnesses shrewdness nom +shrewishness shrewishness nom +shrewishnesses shrewishness nom +shrewmice shrewmouse nom +shrewmouse shrewmouse nom +shrews shrew nom +shriek shriek nom +shrieked shriek ver +shrieking shriek ver +shriekings shrieking nom +shrieks shriek nom +shrift shrift nom +shrifts shrift nom +shrike shrike nom +shrikes shrike nom +shrill shrill adj +shrilled shrill ver +shriller shrill adj +shrillest shrill adj +shrillier shrilly adj +shrilliest shrilly adj +shrilling shrill ver +shrillings shrilling nom +shrillness shrillness nom +shrillnesses shrillness nom +shrills shrill ver +shrilly shrilly adj +shrimp shrimp nom +shrimped shrimp ver +shrimpfish shrimpfish nom +shrimpier shrimpy adj +shrimpiest shrimpy adj +shrimping shrimp ver +shrimps shrimp ver +shrimpy shrimpy adj +shrine shrine nom +shrined shrine ver +shrines shrine nom +shrining shrine ver +shrink shrink nom +shrinkage shrinkage nom +shrinkages shrinkage nom +shrinking shrink ver +shrinks shrink nom +shrinkwrap shrinkwrap ver +shrinkwrapped shrinkwrap ver +shrinkwrapping shrinkwrap ver +shrinkwraps shrinkwrap ver +shrive shrive ver +shrived shrive ver +shrivel shrivel ver +shriveled shrivel ver +shriveling shrivel ver +shrivels shrivel ver +shriven shrive ver +shrives shrive ver +shriving shrive ver +shroud shroud nom +shrouded shroud ver +shrouding shroud ver +shrouds shroud nom +shrub shrub nom +shrubberies shrubbery nom +shrubbery shrubbery nom +shrubbier shrubby adj +shrubbiest shrubby adj +shrubby shrubby adj +shrubs shrub nom +shrug shrug nom +shrugged shrug ver +shrugging shrug ver +shrugs shrug nom +shrunk shrink ver +shtick shtick nom +shticks shtick nom +shuck shuck nom +shucked shuck ver +shucking shuck ver +shucks shuck nom +shuckses shucks nom +shudder shudder nom +shuddered shudder ver +shuddering shudder ver +shudders shudder nom +shuffle shuffle nom +shuffleboard shuffleboard nom +shuffleboards shuffleboard nom +shuffled shuffle ver +shuffler shuffler nom +shufflers shuffler nom +shuffles shuffle nom +shuffling shuffle ver +shufflings shuffling nom +shun shun ver +shunned shun ver +shunning shun ver +shuns shun ver +shunt shunt nom +shunted shunt ver +shunter shunter nom +shunters shunter nom +shunting shunt ver +shunts shunt nom +shush shush ver +shushed shush ver +shushes shush ver +shushing shush ver +shut shut ver +shutdown shutdown nom +shutdowns shutdown nom +shuteye shuteye nom +shuteyes shuteye nom +shutout shutout nom +shutouts shutout nom +shuts shut nom +shutter shutter nom +shutterbug shutterbug nom +shutterbugs shutterbug nom +shuttered shutter ver +shuttering shutter ver +shutters shutter nom +shutting shut ver +shuttle shuttle nom +shuttlecock shuttlecock nom +shuttlecocked shuttlecock ver +shuttlecocking shuttlecock ver +shuttlecocks shuttlecock nom +shuttled shuttle ver +shuttles shuttle nom +shuttling shuttle ver +shwa shwa nom +shwas shwa nom +shy shy adj +shyer shy adj +shyest shy adj +shying shy ver +shyness shyness nom +shynesses shyness nom +shyster shyster nom +shysters shyster nom +si si nom +sialolith sialolith nom +sialoliths sialolith nom +siamang siamang nom +siamangs siamang nom +sib sib nom +sibilant sibilant nom +sibilants sibilant nom +sibilate sibilate ver +sibilated sibilate ver +sibilates sibilate ver +sibilating sibilate ver +sibling sibling nom +sibs sib nom +sibyl sibyl nom +sibyls sibyl nom +sic sic ver +sick sick adj +sickbay sickbay nom +sickbays sickbay nom +sickbed sickbed nom +sickbeds sickbed nom +sicked sic ver +sicken sicken ver +sickened sicken ver +sickening sicken ver +sickens sicken ver +sicker sick adj +sickest sick adj +sickie sickie nom +sickies sickie nom +sicking sic ver +sickle sickle nom +sickles sickle nom +sicklied sickly ver +sicklier sickly adj +sicklies sickly ver +sickliest sickly adj +sickly sickly adj +sicklying sickly ver +sickness sickness nom +sicknesses sickness nom +sicko sicko nom +sickos sicko nom +sickout sickout nom +sickouts sickout nom +sickroom sickroom nom +sickrooms sickroom nom +sicks sick nom +sics sic ver +side side nom +sidearm sidearm nom +sidearms sidearm nom +sidebar sidebar nom +sidebars sidebar nom +sideboard sideboard nom +sideboards sideboard nom +sideburn sideburn nom +sideburns sideburn nom +sidecar sidecar nom +sidecars sidecar nom +sided side ver +sidekick sidekick nom +sidekicks sidekick nom +sidelight sidelight nom +sidelights sidelight nom +sideline sideline nom +sidelined sideline ver +sidelines sideline nom +sidelining sideline ver +sideman sideman nom +sidemen sideman nom +sidepiece sidepiece nom +sidepieces sidepiece nom +siderite siderite nom +siderites siderite nom +sideroses siderosis nom +siderosis siderosis nom +sides side nom +sidesaddle sidesaddle nom +sidesaddles sidesaddle nom +sideshow sideshow nom +sideshows sideshow nom +sideslip sideslip nom +sideslips sideslip nom +sidesman sidesman nom +sidesmen sidesman nom +sidestep sidestep nom +sidestepped sidestep ver +sidestepping sidestep ver +sidesteps sidestep nom +sidestroke sidestroke nom +sidestroked sidestroke ver +sidestrokes sidestroke nom +sidestroking sidestroke ver +sideswipe sideswipe nom +sideswiped sideswipe ver +sideswipes sideswipe nom +sideswiping sideswipe ver +sidetrack sidetrack nom +sidetracked sidetrack ver +sidetracking sidetrack ver +sidetracks sidetrack nom +sidewalk sidewalk nom +sidewalks sidewalk nom +sidewall sidewall nom +sidewalls sidewall nom +sidewinder sidewinder nom +sidewinders sidewinder nom +siding side ver +sidings siding nom +sidle sidle nom +sidled sidle ver +sidles sidle nom +sidling sidle ver +siege siege nom +sieged siege ver +sieges siege nom +sieging siege ver +sienna sienna nom +siennas sienna nom +sierra sierra nom +sierras sierra nom +siesta siesta nom +siestas siesta nom +sieve sieve nom +sieved sieve ver +sieves sieve nom +sieving sieve ver +sift sift ver +sifted sift ver +sifter sifter nom +sifters sifter nom +sifting sift ver +siftings sifting nom +sifts sift ver +sigh sigh nom +sighed sigh ver +sighing sigh ver +sighs sigh nom +sight sight nom +sighted sight ver +sightedness sightedness nom +sightednesses sightedness nom +sighting sight ver +sightings sighting nom +sightlessness sightlessness nom +sightlessnesses sightlessness nom +sightlier sightly adj +sightliest sightly adj +sightly sightly adj +sightread sightread ver +sightreading sightread ver +sightreads sightread ver +sights sight nom +sightsaw sightsee ver +sightsee sightsee ver +sightseeing sightsee ver +sightseeings sightseeing nom +sightseen sightsee ver +sightseer sightseer nom +sightseers sightseer nom +sightsees sightsee ver +sigma sigma nom +sigmas sigma nom +sigmoidoscope sigmoidoscope nom +sigmoidoscopes sigmoidoscope nom +sign sign nom +signal signal nom +signaled signal ver +signaler signaler nom +signalers signaler nom +signaling signal ver +signalization signalization nom +signalizations signalization nom +signalize signalize ver +signalized signalize ver +signalizes signalize ver +signalizing signalize ver +signaller signaller nom +signallers signaller nom +signalman signalman nom +signalmen signalman nom +signals signal nom +signatories signatory nom +signatory signatory nom +signature signature nom +signatures signature nom +signboard signboard nom +signboards signboard nom +signed sign ver +signer signer nom +signers signer nom +signet signet nom +signeted signet ver +signeting signet ver +signets signet nom +significance significance nom +significances significance nom +significant significant nom +significants significant nom +signification signification nom +significations signification nom +signified signify ver +signifies signify ver +signify signify ver +signifying signify ver +signing sign ver +signings signing nom +signior signior nom +signiors signior nom +signor signor nom +signora signora nom +signoras signora nom +signore signore nom +signori signore nom +signories signory nom +signorina signorina nom +signorinas signorina nom +signors signor nom +signory signory nom +signpost signpost nom +signposted signpost ver +signposting signpost ver +signposts signpost nom +signs sign nom +sika sika nom +sikas sika nom +silage silage nom +silages silage nom +sild sild nom +silds sild nom +silence silence nom +silenced silence ver +silencer silencer nom +silencers silencer nom +silences silence nom +silencing silence ver +silene silene nom +silenes silene nom +silent silent adj +silenter silent adj +silentest silent adj +silents silent nom +silenus silenus nom +silenuses silenus nom +silesia silesia nom +silesias silesia nom +silex silex nom +silexes silex nom +silhouette silhouette nom +silhouetted silhouette ver +silhouettes silhouette nom +silhouetting silhouette ver +silica silica nom +silicas silica nom +silicate silicate nom +silicates silicate nom +silicide silicide nom +silicides silicide nom +silicle silicle nom +silicles silicle nom +silicon silicon nom +silicone silicone nom +silicones silicone nom +silicons silicon nom +silicoses silicosis nom +silicosis silicosis nom +siliqua siliqua nom +siliquas siliqua nom +silique silique nom +siliques silique nom +silk silk nom +silked silk ver +silkier silky adj +silkiest silky adj +silkiness silkiness nom +silkinesses silkiness nom +silking silk ver +silks silk nom +silkscreen silkscreen nom +silkscreened silkscreen ver +silkscreening silkscreen ver +silkscreens silkscreen nom +silkweed silkweed nom +silkweeds silkweed nom +silkworm silkworm nom +silkworms silkworm nom +silky silky adj +sill sill nom +sillabub sillabub nom +sillabubs sillabub nom +sillier silly adj +sillies silly nom +silliest silly adj +silliness silliness nom +sillinesses silliness nom +sills sill nom +silly silly adj +silo silo nom +siloed silo ver +siloing silo ver +silos silo nom +siloxane siloxane nom +siloxanes siloxane nom +silt silt nom +silted silt ver +siltier silty adj +siltiest silty adj +silting silt ver +silts silt nom +siltstone siltstone nom +siltstones siltstone nom +silty silty adj +silurid silurid nom +silurids silurid nom +silva silva nom +silvan silvan nom +silvans silvan nom +silvas silva nom +silver silver nom +silverback silverback nom +silverbacks silverback nom +silverberries silverberry nom +silverberry silverberry nom +silvered silver ver +silverfish silverfish nom +silverier silvery adj +silveriest silvery adj +silvering silver ver +silverpoint silverpoint nom +silverpoints silverpoint nom +silvers silver nom +silverside silverside nom +silversides silverside nom +silversmith silversmith nom +silversmiths silversmith nom +silvertip silvertip nom +silvertips silvertip nom +silverware silverware nom +silverwares silverware nom +silverweed silverweed nom +silverweeds silverweed nom +silverwork silverwork nom +silverworks silverwork nom +silvery silvery adj +silvex silvex nom +silvexes silvex nom +silviculture silviculture nom +silvicultures silviculture nom +simazine simazine nom +simazines simazine nom +simian simian nom +simians simian nom +similarities similarity nom +similarity similarity nom +simile simile nom +similes simile nom +similitude similitude nom +similitudes similitude nom +simmer simmer nom +simmered simmer ver +simmering simmer ver +simmers simmer nom +simnel simnel nom +simnels simnel nom +simonies simony nom +simonize simonize ver +simonized simonize ver +simonizes simonize ver +simonizing simonize ver +simony simony nom +simoom simoom nom +simooms simoom nom +simoon simoon nom +simoons simoon nom +simper simper nom +simpered simper ver +simpering simper ver +simpers simper nom +simple simple adj +simpleness simpleness nom +simplenesses simpleness nom +simpler simple adj +simples simple nom +simplest simple adj +simpleton simpleton nom +simpletons simpleton nom +simplicities simplicity nom +simplicity simplicity nom +simplification simplification nom +simplifications simplification nom +simplified simplify ver +simplifies simplify ver +simplify simplify ver +simplifying simplify ver +simulacrum simulacrum nom +simulacrums simulacrum nom +simulate simulate ver +simulated simulate ver +simulates simulate ver +simulating simulate ver +simulation simulation nom +simulations simulation nom +simulator simulator nom +simulators simulator nom +simulcast simulcast ver +simulcasting simulcast ver +simulcasts simulcast nom +simultaneities simultaneity nom +simultaneity simultaneity nom +simultaneousness simultaneousness nom +simultaneousnesses simultaneousness nom +sin sin nom +sinapism sinapism nom +sinapisms sinapism nom +since since sw +sincere sincere adj +sincerer sincere adj +sincerest sincere adj +sincerities sincerity nom +sincerity sincerity nom +sinciput sinciput nom +sinciputs sinciput nom +sine sine nom +sinecure sinecure nom +sinecures sinecure nom +sines sine nom +sinew sinew nom +sinewed sinew ver +sinewier sinewy adj +sinewiest sinewy adj +sinewing sinew ver +sinews sinew nom +sinewy sinewy adj +sinfulness sinfulness nom +sinfulnesses sinfulness nom +sing sing nom +singe singe nom +singed singe ver +singeing singe ver +singer singer nom +singers singer nom +singes singe nom +singing sing ver +singings singing nom +single single nom +singled single ver +singleness singleness nom +singlenesses singleness nom +singles single nom +singlestick singlestick nom +singlesticks singlestick nom +singlet singlet nom +singleton singleton nom +singletons singleton nom +singletree singletree nom +singletrees singletree nom +singlets singlet nom +singling single ver +sings sing nom +singsong singsong nom +singsonged singsong ver +singsonging singsong ver +singsongs singsong nom +singular singular nom +singularities singularity nom +singularity singularity nom +singularize singularize ver +singularized singularize ver +singularizes singularize ver +singularizing singularize ver +singulars singular nom +sinistralities sinistrality nom +sinistrality sinistrality nom +sink sink nom +sinker sinker nom +sinkers sinker nom +sinkhole sinkhole nom +sinkholes sinkhole nom +sinking sink ver +sinkings sinking nom +sinks sink nom +sinlessness sinlessness nom +sinlessnesses sinlessness nom +sinned sin ver +sinner sinner nom +sinners sinner nom +sinning sin ver +sinopia sinopia nom +sinopias sinopia nom +sins sin nom +sinter sinter ver +sintered sinter ver +sintering sinter ver +sinters sinter ver +sinuosities sinuosity nom +sinuosity sinuosity nom +sinuousness sinuousness nom +sinuousnesses sinuousness nom +sinus sinus nom +sinuses sinus nom +sinusitis sinusitis nom +sinusitises sinusitis nom +sinusoid sinusoid nom +sinusoids sinusoid nom +sip sip nom +siphon siphon nom +siphoned siphon ver +siphoning siphon ver +siphonophore siphonophore nom +siphonophores siphonophore nom +siphons siphon nom +sipped sip ver +sipper sipper nom +sippers sipper nom +sipping sip ver +sips sip nom +sipunculid sipunculid nom +sipunculids sipunculid nom +sir sir nom +sirdar sirdar nom +sirdars sirdar nom +sire sire nom +sired sire ver +siren siren nom +sirenian sirenian nom +sirenians sirenian nom +sirens siren nom +sires sire nom +siriases siriasis nom +siriasis siriasis nom +siring sire ver +siris siris nom +sirloin sirloin nom +sirloins sirloin nom +sirocco sirocco nom +siroccos sirocco nom +sirrah sirrah nom +sirrahs sirrah nom +sirs sir nom +sirup sirup nom +siruped sirup ver +siruping sirup ver +sirups sirup nom +sis si nom +sisal sisal nom +sisals sisal nom +sise sise nom +sises sis nom +siskin siskin nom +siskins siskin nom +sissier sissy adj +sissies sissy nom +sissiest sissy adj +sissiness sissiness nom +sissinesses sissiness nom +sissoo sissoo nom +sissoos sissoo nom +sissy sissy adj +sister sister nom +sisterhood sisterhood nom +sisterhoods sisterhood nom +sisterliness sisterliness nom +sisterlinesses sisterliness nom +sisters sister nom +sit sit ver +sitar sitar nom +sitarist sitarist nom +sitarists sitarist nom +sitars sitar nom +sitcom sitcom nom +sitcoms sitcom nom +site site nom +sited site ver +sites site nom +siting site ver +sits sit ver +sitter sitter nom +sitters sitter nom +sitting sit ver +sittings sitting nom +situate situate ver +situated situate ver +situates situate ver +situating situate ver +situation situation nom +situations situation nom +situp situp nom +situps situp nom +six six sw +sixer sixer nom +sixers sixer nom +sixes sixes nom +sixpence sixpence nom +sixshooter sixshooter nom +sixshooters sixshooter nom +sixteen sixteen nom +sixteens sixteen nom +sixteenth sixteenth nom +sixteenths sixteenth nom +sixth sixth nom +sixths sixth nom +sixties sixty nom +sixtieth sixtieth nom +sixtieths sixtieth nom +sixty sixty nom +size size nom +sized size ver +sizes size nom +sizing size ver +sizings sizing nom +sizzle sizzle nom +sizzled sizzle ver +sizzles sizzle nom +sizzling sizzle ver +ska ska nom +skas ska nom +skate skate nom +skateboard skateboard nom +skateboarded skateboard ver +skateboarder skateboarder nom +skateboarders skateboarder nom +skateboarding skateboard ver +skateboardings skateboarding nom +skateboards skateboard nom +skated skate ver +skater skater nom +skaters skater nom +skates skate nom +skating skate ver +skatings skating nom +skedaddle skedaddle nom +skedaddled skedaddle ver +skedaddles skedaddle nom +skedaddling skedaddle ver +skeet skeet nom +skeets skeet nom +skeg skeg nom +skegs skeg nom +skein skein nom +skeins skein nom +skeleton skeleton nom +skeletons skeleton nom +skep skep nom +skepful skepful nom +skepfuls skepful nom +skeps skep nom +skeptic skeptic nom +skepticism skepticism nom +skepticisms skepticism nom +skeptics skeptic nom +sketch sketch nom +sketchbook sketchbook nom +sketchbooks sketchbook nom +sketched sketch ver +sketcher sketcher nom +sketchers sketcher nom +sketches sketch nom +sketchier sketchy adj +sketchiest sketchy adj +sketchiness sketchiness nom +sketchinesses sketchiness nom +sketching sketch ver +sketchy sketchy adj +skew skew nom +skewed skew ver +skewer skewer nom +skewered skewer ver +skewering skewer ver +skewers skewer nom +skewing skew ver +skewness skewness nom +skewnesses skewness nom +skews skew nom +ski ski nom +skiagram skiagram nom +skiagrams skiagram nom +skiagraph skiagraph nom +skiagraphies skiagraphy nom +skiagraphs skiagraph nom +skiagraphy skiagraphy nom +skibob skibob nom +skibobs skibob nom +skid skid nom +skidded skid ver +skidding skid ver +skidpan skidpan nom +skidpans skidpan nom +skids skid nom +skied ski ver +skier skier nom +skiers skier nom +skies sky nom +skiff skiff nom +skiffle skiffle nom +skiffles skiffle nom +skiffs skiff nom +skiing ski ver +skiings skiing nom +skill skill nom +skilled skill ver +skillet skillet nom +skilletfish skilletfish nom +skillets skillet nom +skillfulness skillfulness nom +skillfulnesses skillfulness nom +skilling skill ver +skills skill nom +skim skim nom +skimmed skim ver +skimmer skimmer nom +skimmers skimmer nom +skimming skim ver +skimmings skimming nom +skimp skimp ver +skimped skimp ver +skimpier skimpy adj +skimpiest skimpy adj +skimpiness skimpiness nom +skimpinesses skimpiness nom +skimping skimp ver +skimps skimp ver +skimpy skimpy adj +skims skim nom +skin skin nom +skincare skincare nom +skincares skincare nom +skinflick skinflick nom +skinflicks skinflick nom +skinflint skinflint nom +skinflints skinflint nom +skinhead skinhead nom +skinheads skinhead nom +skink skink nom +skinks skink nom +skinned skin ver +skinnier skinny adj +skinnies skinny nom +skinniest skinny adj +skinniness skinniness nom +skinninesses skinniness nom +skinning skin ver +skinny skinny adj +skins skin nom +skip skip nom +skipjack skipjack nom +skipjacks skipjack nom +skipped skip ver +skipper skipper nom +skippered skipper ver +skippering skipper ver +skippers skipper nom +skipping skip ver +skips skip nom +skirl skirl nom +skirled skirl ver +skirling skirl ver +skirls skirl nom +skirmish skirmish nom +skirmished skirmish ver +skirmisher skirmisher nom +skirmishers skirmisher nom +skirmishes skirmish nom +skirmishing skirmish ver +skirret skirret nom +skirrets skirret nom +skirt skirt nom +skirted skirt ver +skirting skirt ver +skirts skirt nom +skis ski nom +skit skit nom +skits skit nom +skitter skitter ver +skittered skitter ver +skittering skitter ver +skitters skitter ver +skittishness skittishness nom +skittishnesses skittishness nom +skittle skittle nom +skittled skittle ver +skittles skittle nom +skittling skittle ver +skive skive ver +skived skive ver +skives skive ver +skiving skive ver +skivvied skivvy ver +skivvies skivvy nom +skivvy skivvy nom +skivvying skivvy ver +skoal skoal nom +skoaled skoal ver +skoaling skoal ver +skoals skoal nom +skreigh skreigh ver +skreighed skreigh ver +skreighing skreigh ver +skreighs skreigh ver +skua skua nom +skuas skua nom +skulduggeries skulduggery nom +skulduggery skulduggery nom +skulk skulk nom +skulked skulk ver +skulker skulker nom +skulkers skulker nom +skulking skulk ver +skulkings skulking nom +skulks skulk nom +skull skull nom +skullcap skullcap nom +skullcaps skullcap nom +skullduggeries skullduggery nom +skullduggery skullduggery nom +skulls skull nom +skunk skunk nom +skunked skunk ver +skunking skunk ver +skunks skunk nom +skunkweed skunkweed nom +skunkweeds skunkweed nom +sky sky nom +skycap skycap nom +skycaps skycap nom +skydiver skydiver nom +skydivers skydiver nom +skydiving skydiving nom +skydivings skydiving nom +skying sky ver +skyjack skyjack ver +skyjacked skyjack ver +skyjacker skyjacker nom +skyjackers skyjacker nom +skyjacking skyjack ver +skyjackings skyjacking nom +skyjacks skyjack ver +skylark skylark nom +skylarked skylark ver +skylarking skylark ver +skylarks skylark nom +skylight skylight nom +skylights skylight nom +skyline skyline nom +skylined skyline ver +skylines skyline nom +skylining skyline ver +skyrocket skyrocket nom +skyrocketed skyrocket ver +skyrocketing skyrocket ver +skyrockets skyrocket nom +skysail skysail nom +skysails skysail nom +skyscraper skyscraper nom +skyscrapers skyscraper nom +skywriter skywriter nom +skywriters skywriter nom +skywriting skywriting nom +skywritings skywriting nom +slab slab nom +slabbed slab ver +slabber slabber ver +slabbered slabber ver +slabbering slabber ver +slabbers slabber ver +slabbing slab ver +slabs slab nom +slack slack adj +slacked slack ver +slacken slacken ver +slackened slacken ver +slackening slacken ver +slackenings slackening nom +slackens slacken ver +slacker slack adj +slackers slacker nom +slackest slack adj +slacking slack ver +slackness slackness nom +slacknesses slackness nom +slacks slack nom +slag slag nom +slagged slag ver +slagging slag ver +slags slag nom +slain slay ver +slake slake ver +slaked slake ver +slakes slake ver +slaking slake ver +slalom slalom nom +slalomed slalom ver +slaloming slalom ver +slaloms slalom nom +slam slam nom +slammed slam ver +slammer slammer nom +slammers slammer nom +slamming slam ver +slams slam nom +slander slander nom +slandered slander ver +slanderer slanderer nom +slanderers slanderer nom +slandering slander ver +slanders slander nom +slang slang nom +slanged slang ver +slangier slangy adj +slangiest slangy adj +slanginess slanginess nom +slanginesses slanginess nom +slanging slang ver +slangs slang nom +slangy slangy adj +slant slant nom +slanted slant ver +slanting slant ver +slants slant nom +slap slap nom +slaphappier slaphappy adj +slaphappiest slaphappy adj +slaphappy slaphappy adj +slapped slap ver +slapping slap ver +slaps slap nom +slapshot slapshot nom +slapshots slapshot nom +slapstick slapstick nom +slapsticks slapstick nom +slash slash nom +slashed slash ver +slasher slasher nom +slashers slasher nom +slashes slash nom +slashing slash ver +slashings slashing nom +slat slat nom +slate slate nom +slated slate ver +slater slater nom +slaters slater nom +slates slate nom +slatey slatey adj +slather slather ver +slathered slather ver +slathering slather ver +slathers slather ver +slatier slatey adj +slatiest slatey adj +slating slate ver +slatings slating nom +slats slat nom +slatted slat ver +slattern slattern nom +slatternliness slatternliness nom +slatternlinesses slatternliness nom +slatterns slattern nom +slatting slat ver +slaty slaty adj +slaughter slaughter nom +slaughtered slaughter ver +slaughterer slaughterer nom +slaughterers slaughterer nom +slaughterhouse slaughterhouse nom +slaughterhouses slaughterhouse nom +slaughtering slaughter ver +slaughters slaughter nom +slave slave nom +slaved slave ver +slaveholder slaveholder nom +slaveholders slaveholder nom +slaver slaver nom +slavered slaver ver +slaveries slavery nom +slavering slaver ver +slavers slaver nom +slavery slavery nom +slaves slave nom +slavey slavey nom +slaveys slavey nom +slaving slave ver +slavishness slavishness nom +slavishnesses slavishness nom +slaw slaw nom +slaws slaw nom +slay slay ver +slayer slayer nom +slayers slayer nom +slaying slay ver +slayings slaying nom +slays slay ver +sleaze sleaze nom +sleazes sleaze nom +sleazier sleazy adj +sleaziest sleazy adj +sleaziness sleaziness nom +sleazinesses sleaziness nom +sleazy sleazy adj +sled sled nom +sledded sled ver +sledder sledder nom +sledders sledder nom +sledding sled ver +sleddings sledding nom +sledge sledge nom +sledged sledge ver +sledgehammer sledgehammer nom +sledgehammered sledgehammer ver +sledgehammering sledgehammer ver +sledgehammers sledgehammer nom +sledges sledge nom +sledging sledge ver +sleds sled nom +sleek sleek adj +sleeked sleek ver +sleeker sleek adj +sleekest sleek adj +sleeking sleek ver +sleekness sleekness nom +sleeknesses sleekness nom +sleeks sleek ver +sleep sleep nom +sleeper sleeper nom +sleepers sleeper nom +sleepier sleepy adj +sleepiest sleepy adj +sleepiness sleepiness nom +sleepinesses sleepiness nom +sleeping sleep ver +sleepings sleeping nom +sleeplessness sleeplessness nom +sleeplessnesses sleeplessness nom +sleepover sleepover nom +sleepovers sleepover nom +sleeps sleep nom +sleepwalk sleepwalk ver +sleepwalked sleepwalk ver +sleepwalker sleepwalker nom +sleepwalkers sleepwalker nom +sleepwalking sleepwalk ver +sleepwalkings sleepwalking nom +sleepwalks sleepwalk ver +sleepwear sleepwear nom +sleepwears sleepwear nom +sleepy sleepy adj +sleepyhead sleepyhead nom +sleepyheads sleepyhead nom +sleet sleet nom +sleeted sleet ver +sleetier sleety adj +sleetiest sleety adj +sleeting sleet ver +sleets sleet nom +sleety sleety adj +sleeve sleeve nom +sleeved sleeve ver +sleeves sleeve nom +sleeving sleeve ver +sleigh sleigh nom +sleighed sleigh ver +sleighing sleigh ver +sleighs sleigh nom +sleight sleight nom +sleights sleight nom +slender slender adj +slenderer slender adj +slenderest slender adj +slenderize slenderize ver +slenderized slenderize ver +slenderizes slenderize ver +slenderizing slenderize ver +slenderness slenderness nom +slendernesses slenderness nom +slept sleep ver +sleuth sleuth nom +sleuthed sleuth ver +sleuthhound sleuthhound nom +sleuthhounds sleuthhound nom +sleuthing sleuth ver +sleuths sleuth nom +slew slay ver +slewed slew ver +slewing slew ver +slews slew nom +slice slice nom +sliced slice ver +slicer slicer nom +slicers slicer nom +slices slice nom +slicing slice ver +slicings slicing nom +slick slick adj +slicked slick ver +slicker slick adj +slickers slicker nom +slickest slick adj +slicking slick ver +slickness slickness nom +slicknesses slickness nom +slicks slick nom +slid slide ver +slide slide nom +slider slider nom +sliders slider nom +slides slide nom +sliding slide ver +slier sly adj +sliest sly adj +slight slight adj +slighted slight ver +slighter slight adj +slightest slight adj +slighting slight ver +slightness slightness nom +slightnesses slightness nom +slights slight nom +slim slim adj +slime slime nom +slimed slime ver +slimes slime nom +slimier slimy adj +slimiest slimy adj +sliminess sliminess nom +sliminesses sliminess nom +sliming slime ver +slimmed slim ver +slimmer slim adj +slimmest slim adj +slimming slim ver +slimmings slimming nom +slimness slimness nom +slimnesses slimness nom +slims slim ver +slimy slimy adj +sling sling nom +slinger slinger nom +slingers slinger nom +slinging sling ver +slings sling nom +slingshot slingshot nom +slingshots slingshot nom +slink slink nom +slinkier slinky adj +slinkiest slinky adj +slinking slink ver +slinks slink nom +slinky slinky adj +slip slip nom +slipcase slipcase nom +slipcases slipcase nom +slipcover slipcover nom +slipcovered slipcover ver +slipcovering slipcover ver +slipcovers slipcover nom +slipknot slipknot nom +slipknots slipknot nom +slipover slipover nom +slipovers slipover nom +slippage slippage nom +slippages slippage nom +slipped slip ver +slipper slipper nom +slippered slipper ver +slipperier slippery adj +slipperiest slippery adj +slipperiness slipperiness nom +slipperinesses slipperiness nom +slippering slipper ver +slippers slipper nom +slipperwort slipperwort nom +slipperworts slipperwort nom +slippery slippery adj +slippier slippy adj +slippiest slippy adj +slipping slip ver +slippy slippy adj +slips slip nom +slipstream slipstream nom +slipstreamed slipstream ver +slipstreaming slipstream ver +slipstreams slipstream nom +slipup slipup nom +slipups slipup nom +slipway slipway nom +slipways slipway nom +slit slit ver +slither slither nom +slithered slither ver +slitherier slithery adj +slitheriest slithery adj +slithering slither ver +slithers slither nom +slithery slithery adj +slits slit nom +slitted slit ver +slitting slit ver +sliver sliver nom +slivered sliver ver +slivering sliver ver +slivers sliver nom +slivovitz slivovitz nom +slivovitzes slivovitz nom +slob slob nom +slobber slobber nom +slobbered slobber ver +slobberier slobbery adj +slobberiest slobbery adj +slobbering slobber ver +slobbers slobber nom +slobbery slobbery adj +slobs slob nom +sloe sloe nom +sloes sloe nom +slog slog nom +slogan slogan nom +sloganeer sloganeer nom +sloganeered sloganeer ver +sloganeering sloganeer ver +sloganeers sloganeer nom +slogans slogan nom +slogged slog ver +slogger slogger nom +sloggers slogger nom +slogging slog ver +slogs slog nom +sloop sloop nom +sloops sloop nom +slop slop nom +slope slope nom +sloped slope ver +slopes slope nom +sloping slope ver +slopped slop ver +sloppier sloppy adj +sloppiest sloppy adj +sloppiness sloppiness nom +sloppinesses sloppiness nom +slopping slop ver +sloppy sloppy adj +slops slop nom +slosh slosh nom +sloshed slosh ver +sloshes slosh nom +sloshing slosh ver +slot slot nom +sloth sloth nom +slothfulness slothfulness nom +slothfulnesses slothfulness nom +sloths sloth nom +slots slot nom +slotted slot ver +slotting slot ver +slouch slouch nom +slouched slouch ver +sloucher sloucher nom +slouchers sloucher nom +slouches slouch nom +slouchier slouchy adj +slouchiest slouchy adj +slouching slouch ver +slouchy slouchy adj +slough slough nom +sloughed slough ver +sloughier sloughy adj +sloughiest sloughy adj +sloughing slough ver +sloughs slough nom +sloughy sloughy adj +sloven sloven nom +slovenlier slovenly adj +slovenliest slovenly adj +slovenliness slovenliness nom +slovenlinesses slovenliness nom +slovenly slovenly adj +slovens sloven nom +slow slow adj +slowcoach slowcoach nom +slowcoaches slowcoach nom +slowdown slowdown nom +slowdowns slowdown nom +slowed slow ver +slower slow adj +slowest slow adj +slowing slow ver +slowings slowing nom +slowness slowness nom +slownesses slowness nom +slowpoke slowpoke nom +slowpokes slowpoke nom +slows slow ver +slowworm slowworm nom +slowworms slowworm nom +slub slub nom +slubs slub nom +sludge sludge nom +sludges sludge nom +sludgier sludgy adj +sludgiest sludgy adj +sludgy sludgy adj +slue slue nom +slued slue ver +slues slue nom +slug slug nom +slugabed slugabed nom +slugabeds slugabed nom +slugfest slugfest nom +slugfests slugfest nom +sluggard sluggard nom +sluggards sluggard nom +slugged slug ver +slugger slugger nom +sluggers slugger nom +slugging slug ver +sluggishness sluggishness nom +sluggishnesses sluggishness nom +slugs slug nom +sluice sluice nom +sluiced sluice ver +sluicegate sluicegate nom +sluicegates sluicegate nom +sluices sluice nom +sluiceway sluiceway nom +sluiceways sluiceway nom +sluicing sluice ver +sluing slue ver +slum slum nom +slumber slumber nom +slumbered slumber ver +slumberer slumberer nom +slumberers slumberer nom +slumbering slumber ver +slumbers slumber nom +slumgullion slumgullion nom +slumgullions slumgullion nom +slumlord slumlord nom +slumlords slumlord nom +slummed slum ver +slummier slummy adj +slummiest slummy adj +slumming slum ver +slummy slummy adj +slump slump nom +slumped slump ver +slumping slump ver +slumps slump nom +slums slum nom +slung sling ver +slunk slink ver +slur slur nom +slurp slurp nom +slurped slurp ver +slurping slurp ver +slurps slurp nom +slurred slur ver +slurried slurry ver +slurries slurry nom +slurring slur ver +slurry slurry nom +slurrying slurry ver +slurs slur nom +slush slush nom +slushed slush ver +slushes slush nom +slushier slushy adj +slushiest slushy adj +slushiness slushiness nom +slushinesses slushiness nom +slushing slush ver +slushy slushy adj +slut slut nom +sluts slut nom +sluttier slutty adj +sluttiest slutty adj +sluttishness sluttishness nom +sluttishnesses sluttishness nom +slutty slutty adj +sly sly adj +slyness slyness nom +slynesses slyness nom +smack smack nom +smacked smack ver +smacker smacker nom +smackers smacker nom +smacking smack ver +smackings smacking nom +smacks smack nom +small small adj +smaller small adj +smallest small adj +smallholder smallholder nom +smallholders smallholder nom +smallholding smallholding nom +smallholdings smallholding nom +smallmouth smallmouth nom +smallmouths smallmouth nom +smallness smallness nom +smallnesses smallness nom +smallpox smallpox nom +smallpoxes smallpox nom +smalls small nom +smaltite smaltite nom +smaltites smaltite nom +smarm smarm nom +smarmier smarmy adj +smarmiest smarmy adj +smarminess smarminess nom +smarminesses smarminess nom +smarms smarm nom +smarmy smarmy adj +smart smart adj +smarted smart ver +smarten smarten ver +smartened smarten ver +smartening smarten ver +smartens smarten ver +smarter smart adj +smartest smart adj +smarting smart ver +smartness smartness nom +smartnesses smartness nom +smarts smart nom +smartypants smartypants nom +smash smash nom +smashed smash ver +smasher smasher nom +smashers smasher nom +smashes smash nom +smashing smash ver +smashup smashup nom +smashups smashup nom +smatter smatter ver +smattered smatter ver +smattering smatter ver +smatterings smattering nom +smatters smatter ver +smear smear nom +smeared smear ver +smearier smeary adj +smeariest smeary adj +smearing smear ver +smears smear nom +smeary smeary adj +smegma smegma nom +smegmas smegma nom +smell smell nom +smelled smell ver +smellier smelly adj +smelliest smelly adj +smelliness smelliness nom +smellinesses smelliness nom +smelling smell ver +smellings smelling nom +smells smell nom +smelly smelly adj +smelt smelt nom +smelted smelt ver +smelter smelter nom +smelteries smeltery nom +smelters smelter nom +smeltery smeltery nom +smelting smelt ver +smelts smelt nom +smew smew nom +smews smew nom +smidge smidge nom +smidgen smidgen nom +smidgens smidgen nom +smidgeon smidgeon nom +smidgeons smidgeon nom +smidges smidge nom +smidgin smidgin nom +smidgins smidgin nom +smilax smilax nom +smilaxes smilax nom +smile smile nom +smiled smile ver +smiler smiler nom +smilers smiler nom +smiles smile nom +smiling smile ver +smilings smiling nom +smirch smirch nom +smirched smirch ver +smirches smirch nom +smirching smirch ver +smirk smirk nom +smirked smirk ver +smirking smirk ver +smirks smirk nom +smite smite ver +smites smite ver +smith smith nom +smithed smith ver +smithies smithy nom +smithing smith ver +smiths smith nom +smithy smithy nom +smiting smite ver +smitten smite ver +smock smock nom +smocked smock ver +smocking smock ver +smockings smocking nom +smocks smock nom +smog smog nom +smoggier smoggy adj +smoggiest smoggy adj +smoggy smoggy adj +smogs smog nom +smoke smoke nom +smoked smoke ver +smokehouse smokehouse nom +smokehouses smokehouse nom +smoker smoker nom +smokers smoker nom +smokes smoke nom +smokescreen smokescreen nom +smokescreens smokescreen nom +smokestack smokestack nom +smokestacks smokestack nom +smokier smoky adj +smokiest smoky adj +smokiness smokiness nom +smokinesses smokiness nom +smoking smoke ver +smokings smoking nom +smoky smoky adj +smolder smolder nom +smoldered smolder ver +smoldering smolder ver +smolders smolder nom +smooch smooch nom +smooched smooch ver +smooches smooch nom +smooching smooch ver +smooth smooth adj +smoothed smooth ver +smoothen smoothen ver +smoothened smoothen ver +smoothening smoothen ver +smoothens smoothen ver +smoother smooth adj +smoothers smoother nom +smoothest smooth adj +smoothhound smoothhound nom +smoothhounds smoothhound nom +smoothie smoothie nom +smoothies smoothie nom +smoothing smooth ver +smoothness smoothness nom +smoothnesses smoothness nom +smooths smooth nom +smoothy smoothy nom +smorgasbord smorgasbord nom +smorgasbords smorgasbord nom +smote smite ver +smother smother nom +smothered smother ver +smothering smother ver +smothers smother nom +smoulder smoulder nom +smouldered smoulder ver +smouldering smoulder ver +smoulders smoulder nom +smudge smudge nom +smudged smudge ver +smudges smudge nom +smudgier smudgy adj +smudgiest smudgy adj +smudging smudge ver +smudgy smudgy adj +smug smug adj +smugger smug adj +smuggest smug adj +smuggle smuggle ver +smuggled smuggle ver +smuggler smuggler nom +smugglers smuggler nom +smuggles smuggle ver +smuggling smuggle ver +smugglings smuggling nom +smugness smugness nom +smugnesses smugness nom +smut smut nom +smutch smutch ver +smutched smutch ver +smutches smutch ver +smutching smutch ver +smuts smut nom +smutted smut ver +smuttier smutty adj +smuttiest smutty adj +smuttiness smuttiness nom +smuttinesses smuttiness nom +smutting smut ver +smutty smutty adj +snack snack nom +snacked snack ver +snacking snack ver +snacks snack nom +snaffle snaffle nom +snaffled snaffle ver +snaffles snaffle nom +snaffling snaffle ver +snafu snafu nom +snafued snafu ver +snafuing snafu ver +snafus snafu nom +snag snag nom +snagged snag ver +snagging snag ver +snags snag nom +snail snail nom +snailed snail ver +snailfish snailfish nom +snailing snail ver +snails snail nom +snake snake nom +snakebird snakebird nom +snakebirds snakebird nom +snakebite snakebite nom +snakebites snakebite nom +snaked snake ver +snakefish snakefish nom +snakehead snakehead nom +snakeheads snakehead nom +snakeroot snakeroot nom +snakeroots snakeroot nom +snakes snake nom +snakeweed snakeweed nom +snakeweeds snakeweed nom +snakewood snakewood nom +snakewoods snakewood nom +snakier snaky adj +snakiest snaky adj +snaking snake ver +snaky snaky adj +snap snap nom +snapdragon snapdragon nom +snapdragons snapdragon nom +snapped snap ver +snapper snapper nom +snappers snapper nom +snappier snappy adj +snappiest snappy adj +snappiness snappiness nom +snappinesses snappiness nom +snapping snap ver +snappishness snappishness nom +snappishnesses snappishness nom +snappy snappy adj +snaps snap nom +snapshot snapshot nom +snapshots snapshot nom +snapshotted snapshot ver +snapshotting snapshot ver +snare snare nom +snared snare ver +snares snare nom +snarf snarf ver +snarfed snarf ver +snarfing snarf ver +snarfs snarf ver +snaring snare ver +snarl snarl nom +snarled snarl ver +snarlier snarly adj +snarliest snarly adj +snarling snarl ver +snarls snarl nom +snarly snarly adj +snatch snatch nom +snatched snatch ver +snatcher snatcher nom +snatchers snatcher nom +snatches snatch nom +snatching snatch ver +snazzier snazzy adj +snazziest snazzy adj +snazzy snazzy adj +sneak sneak nom +sneaked sneak ver +sneaker sneaker nom +sneakers sneaker nom +sneakier sneaky adj +sneakiest sneaky adj +sneakiness sneakiness nom +sneakinesses sneakiness nom +sneaking sneak ver +sneaks sneak nom +sneaky sneaky adj +sneer sneer nom +sneered sneer ver +sneering sneer ver +sneerings sneering nom +sneers sneer nom +sneeze sneeze nom +sneezed sneeze ver +sneezes sneeze nom +sneezeweed sneezeweed nom +sneezeweeds sneezeweed nom +sneezewort sneezewort nom +sneezeworts sneezewort nom +sneezier sneezy adj +sneeziest sneezy adj +sneezing sneeze ver +sneezings sneezing nom +sneezy sneezy adj +snick snick nom +snicked snick ver +snicker snicker nom +snickered snicker ver +snickering snicker ver +snickers snicker nom +snickersnee snickersnee nom +snickersnees snickersnee nom +snicking snick ver +snicks snick nom +snide snide adj +snider snide adj +snidest snide adj +sniff sniff nom +sniffed sniff ver +sniffer sniffer nom +sniffers sniffer nom +sniffier sniffy adj +sniffiest sniffy adj +sniffing sniff ver +sniffle sniffle nom +sniffled sniffle ver +sniffles sniffle nom +sniffling sniffle ver +sniffs sniff nom +sniffy sniffy adj +snifter snifter nom +snifters snifter nom +snigger snigger nom +sniggered snigger ver +sniggering snigger ver +sniggers snigger nom +snip snip nom +snipe snipe nom +sniped snipe ver +snipefish snipefish nom +sniper sniper nom +snipers sniper nom +snipes snipe ver +sniping snipe ver +snipped snip ver +snippet snippet nom +snippets snippet nom +snippier snippy adj +snippiest snippy adj +snipping snip ver +snippings snipping nom +snippy snippy adj +snips snip nom +snit snit nom +snitch snitch nom +snitched snitch ver +snitches snitch nom +snitching snitch ver +snits snit nom +snivel snivel nom +sniveled snivel ver +sniveler sniveler nom +snivelers sniveler nom +sniveling snivel ver +snivels snivel nom +snob snob nom +snobberies snobbery nom +snobbery snobbery nom +snobbier snobby adj +snobbiest snobby adj +snobbishness snobbishness nom +snobbishnesses snobbishness nom +snobby snobby adj +snobs snob nom +snog snog ver +snogged snog ver +snogging snog ver +snogs snog ver +snood snood nom +snooded snood ver +snooding snood ver +snoods snood nom +snook snook nom +snooker snooker nom +snookered snooker ver +snookering snooker ver +snookers snooker nom +snooks snook nom +snoop snoop nom +snooped snoop ver +snooper snooper nom +snoopers snooper nom +snoopier snoopy adj +snoopiest snoopy adj +snooping snoop ver +snoops snoop nom +snoopy snoopy adj +snoot snoot nom +snooted snoot ver +snootier snooty adj +snootiest snooty adj +snootiness snootiness nom +snootinesses snootiness nom +snooting snoot ver +snoots snoot nom +snooty snooty adj +snooze snooze nom +snoozed snooze ver +snoozes snooze nom +snoozing snooze ver +snore snore nom +snored snore ver +snorer snorer nom +snorers snorer nom +snores snore nom +snoring snore ver +snorings snoring nom +snorkel snorkel nom +snorkeled snorkel ver +snorkeler snorkeler nom +snorkelers snorkeler nom +snorkeling snorkel ver +snorkelings snorkeling nom +snorkels snorkel nom +snort snort nom +snorted snort ver +snorter snorter nom +snorters snorter nom +snortier snorty adj +snortiest snorty adj +snorting snort ver +snortings snorting nom +snorts snort nom +snorty snorty adj +snot snot nom +snots snot nom +snottier snotty adj +snottiest snotty adj +snottiness snottiness nom +snottinesses snottiness nom +snotty snotty adj +snout snout nom +snouts snout nom +snow snow nom +snowball snowball nom +snowballed snowball ver +snowballing snowball ver +snowballs snowball nom +snowbank snowbank nom +snowbanks snowbank nom +snowbell snowbell nom +snowbells snowbell nom +snowberries snowberry nom +snowberry snowberry nom +snowbird snowbird nom +snowbirds snowbird nom +snowboard snowboard nom +snowboarded snowboard ver +snowboarder snowboarder nom +snowboarders snowboarder nom +snowboarding snowboard ver +snowboardings snowboarding nom +snowboards snowboard nom +snowdrift snowdrift nom +snowdrifts snowdrift nom +snowdrop snowdrop nom +snowdrops snowdrop nom +snowed snow ver +snowfall snowfall nom +snowfalls snowfall nom +snowfield snowfield nom +snowfields snowfield nom +snowflake snowflake nom +snowflakes snowflake nom +snowier snowy adj +snowiest snowy adj +snowiness snowiness nom +snowinesses snowiness nom +snowing snow ver +snowman snowman nom +snowmen snowman nom +snowmobile snowmobile nom +snowmobiled snowmobile ver +snowmobiles snowmobile nom +snowmobiling snowmobile ver +snowplough snowplough nom +snowploughs snowplough nom +snowplow snowplow nom +snowplowed snowplow ver +snowplowing snowplow ver +snowplows snowplow nom +snows snow nom +snowshoe snowshoe nom +snowshoed snowshoe ver +snowshoeing snowshoe ver +snowshoes snowshoe nom +snowstorm snowstorm nom +snowstorms snowstorm nom +snowsuit snowsuit nom +snowsuits snowsuit nom +snowy snowy adj +snub snub nom +snubbed snub ver +snubbing snub ver +snubs snub nom +snuff snuff nom +snuffbox snuffbox nom +snuffboxes snuffbox nom +snuffed snuff ver +snuffer snuffer nom +snuffers snuffer nom +snuffing snuff ver +snuffle snuffle nom +snuffled snuffle ver +snuffles snuffle nom +snufflier snuffly adj +snuffliest snuffly adj +snuffling snuffle ver +snuffly snuffly adj +snuffs snuff nom +snug snug adj +snugged snug ver +snugger snug adj +snuggeries snuggery nom +snuggery snuggery nom +snuggest snug adj +snugging snug ver +snuggle snuggle nom +snuggled snuggle ver +snuggles snuggle nom +snuggling snuggle ver +snugness snugness nom +snugnesses snugness nom +snugs snug nom +so so sw +soak soak nom +soakage soakage nom +soakages soakage nom +soaked soak ver +soaker soaker nom +soakers soaker nom +soaking soak ver +soakings soaking nom +soaks soak nom +soap soap nom +soapberries soapberry nom +soapberry soapberry nom +soapbox soapbox nom +soapboxes soapbox nom +soaped soap ver +soapfish soapfish nom +soapier soapy adj +soapiest soapy adj +soapiness soapiness nom +soapinesses soapiness nom +soaping soap ver +soaps soap nom +soapstone soapstone nom +soapstones soapstone nom +soapwort soapwort nom +soapworts soapwort nom +soapy soapy adj +soar soar nom +soared soar ver +soaring soar ver +soarings soaring nom +soars soar nom +sob sob nom +sobbed sob ver +sobbing sob ver +sobbings sobbing nom +sober sober adj +sobered sober ver +soberer sober adj +soberest sober adj +sobering sober ver +soberness soberness nom +sobernesses soberness nom +sobers sober ver +sobrieties sobriety nom +sobriety sobriety nom +sobriquet sobriquet nom +sobriquets sobriquet nom +sobs sob nom +socage socage nom +socages socage nom +soccer soccer nom +soccers soccer nom +sociabilities sociability nom +sociability sociability nom +sociable sociable nom +sociableness sociableness nom +sociablenesses sociableness nom +sociables sociable nom +social social nom +socialism socialism nom +socialisms socialism nom +socialist socialist nom +socialists socialist nom +socialite socialite nom +socialites socialite nom +socialities sociality nom +sociality sociality nom +socialization socialization nom +socializations socialization nom +socialize socialize ver +socialized socialize ver +socializes socialize ver +socializing socialize ver +socials social nom +societies society nom +society society nom +sociobiologies sociobiology nom +sociobiologist sociobiologist nom +sociobiologists sociobiologist nom +sociobiology sociobiology nom +sociolinguist sociolinguist nom +sociolinguists sociolinguist nom +sociologies sociology nom +sociologist sociologist nom +sociologists sociologist nom +sociology sociology nom +sociometries sociometry nom +sociometry sociometry nom +sociopath sociopath nom +sociopaths sociopath nom +sock sock nom +socked sock ver +socket socket nom +socketed socket ver +socketing socket ver +sockets socket nom +sockeye sockeye nom +sockeyes sockeye nom +socking sock ver +socks sock nom +socle socle nom +socles socle nom +sod sod nom +soda soda nom +sodalist sodalist nom +sodalists sodalist nom +sodalite sodalite nom +sodalites sodalite nom +sodalities sodality nom +sodality sodality nom +sodas soda nom +sodbuster sodbuster nom +sodbusters sodbuster nom +sodded sod ver +sodden sodden ver +soddened sodden ver +soddening sodden ver +soddens sodden ver +soddies soddy nom +sodding sod ver +soddy soddy nom +sodium sodium nom +sodiums sodium nom +sodomies sodomy nom +sodomist sodomist nom +sodomists sodomist nom +sodomite sodomite nom +sodomites sodomite nom +sodomize sodomize ver +sodomized sodomize ver +sodomizes sodomize ver +sodomizing sodomize ver +sodomy sodomy nom +sods sod nom +sofa sofa nom +sofabed sofabed nom +sofabeds sofabed nom +sofas sofa nom +soft soft adj +softback softback nom +softbacks softback nom +softball softball nom +softballs softball nom +softbound softbound nom +softbounds softbound nom +soften soften ver +softened soften ver +softener softener nom +softeners softener nom +softening soften ver +softenings softening nom +softens soften ver +softer soft adj +softest soft adj +softheartedness softheartedness nom +softheartednesses softheartedness nom +softie softie nom +softies softie nom +softness softness nom +softnesses softness nom +softs soft nom +software software nom +softwares software nom +softwood softwood nom +softwoods softwood nom +softy softy nom +soggier soggy adj +soggiest soggy adj +sogginess sogginess nom +sogginesses sogginess nom +soggy soggy adj +soh soh nom +sohs soh nom +soil soil nom +soiled soil ver +soiling soil ver +soilings soiling nom +soils soil nom +soilure soilure nom +soilures soilure nom +soiree soiree nom +soirees soiree nom +soja soja nom +sojas soja nom +sojourn sojourn nom +sojourned sojourn ver +sojourner sojourner nom +sojourners sojourner nom +sojourning sojourn ver +sojourns sojourn nom +sol sol nom +solace solace nom +solaced solace ver +solacement solacement nom +solacements solacement nom +solaces solace nom +solacing solace ver +solan solan nom +solans solan nom +solar solar nom +solaria solarium nom +solarium solarium nom +solarization solarization nom +solarizations solarization nom +solars solar nom +sold sell ver +solder solder nom +soldered solder ver +solderer solderer nom +solderers solderer nom +soldering solder ver +solderings soldering nom +solders solder nom +soldier soldier nom +soldiered soldier ver +soldierfish soldierfish nom +soldieries soldiery nom +soldiering soldier ver +soldierings soldiering nom +soldiers soldier nom +soldiership soldiership nom +soldierships soldiership nom +soldiery soldiery nom +sole sole nom +solecism solecism nom +solecisms solecism nom +soled sole ver +solemn solemn adj +solemner solemn adj +solemness solemness nom +solemnesses solemness nom +solemnest solemn adj +solemnified solemnify ver +solemnifies solemnify ver +solemnify solemnify ver +solemnifying solemnify ver +solemnities solemnity nom +solemnity solemnity nom +solemnization solemnization nom +solemnizations solemnization nom +solemnize solemnize ver +solemnized solemnize ver +solemnizes solemnize ver +solemnizing solemnize ver +solemnness solemnness nom +solemnnesses solemnness nom +solenoid solenoid nom +solenoids solenoid nom +soles sole nom +soleus soleus nom +soleuses soleus nom +solfa solfa nom +solfas solfa nom +solferino solferino nom +solferinos solferino nom +solicit solicit ver +solicitation solicitation nom +solicitations solicitation nom +solicited solicit ver +soliciting solicit ver +solicitor solicitor nom +solicitors solicitor nom +solicitorship solicitorship nom +solicitorships solicitorship nom +solicitousness solicitousness nom +solicitousnesses solicitousness nom +solicits solicit ver +solicitude solicitude nom +solicitudes solicitude nom +solid solid adj +solidarities solidarity nom +solidarity solidarity nom +solider solid adj +solidest solid adj +solidi solidus nom +solidification solidification nom +solidifications solidification nom +solidified solidify ver +solidifies solidify ver +solidify solidify ver +solidifying solidify ver +solidities solidity nom +solidity solidity nom +solidness solidness nom +solidnesses solidness nom +solids solid nom +solidus solidus nom +soliloquies soliloquy nom +soliloquize soliloquize ver +soliloquized soliloquize ver +soliloquizes soliloquize ver +soliloquizing soliloquize ver +soliloquy soliloquy nom +soling sole ver +solipsism solipsism nom +solipsisms solipsism nom +solitaire solitaire nom +solitaires solitaire nom +solitaries solitary nom +solitariness solitariness nom +solitarinesses solitariness nom +solitary solitary nom +solitude solitude nom +solitudes solitude nom +solitudinarian solitudinarian nom +solitudinarians solitudinarian nom +solleret solleret nom +sollerets solleret nom +solmisation solmisation nom +solmisations solmisation nom +solmization solmization nom +solmizations solmization nom +solo solo nom +soloed solo ver +soloing solo ver +soloist soloist nom +soloists soloist nom +solon solon nom +solons solon nom +solos solo nom +sols sol nom +solstice solstice nom +solstices solstice nom +solubilities solubility nom +solubility solubility nom +soluble soluble nom +solubleness solubleness nom +solublenesses solubleness nom +solubles soluble nom +solute solute nom +solutes solute nom +solution solution nom +solutions solution nom +solvate solvate nom +solvated solvate ver +solvates solvate nom +solvating solvate ver +solvation solvation nom +solvations solvation nom +solve solve ver +solved solve ver +solvencies solvency nom +solvency solvency nom +solvent solvent nom +solvents solvent nom +solver solver nom +solvers solver nom +solves solve ver +solving solve ver +soma soma nom +somas soma nom +somatotrophin somatotrophin nom +somatotrophins somatotrophin nom +somatotropin somatotropin nom +somatotropins somatotropin nom +somatotype somatotype nom +somatotypes somatotype nom +somber somber adj +somberer somber adj +somberest somber adj +somberness somberness nom +sombernesses somberness nom +sombre sombre adj +sombrer sombre adj +sombrero sombrero nom +sombreros sombrero nom +sombrest sombre adj +some some sw +somebodies somebody nom +somebody somebody sw +somehow somehow sw +someone someone sw +someones someone nom +somersault somersault nom +somersaulted somersault ver +somersaulting somersault ver +somersaults somersault nom +somerset somerset nom +somersets somerset nom +somersetted somerset ver +somersetting somerset ver +something something sw +somethings something nom +sometime sometime sw +sometimes sometimes sw +somewhat somewhat sw +somewhats somewhat nom +somewhere somewhere sw +somite somite nom +somites somite nom +sommelier sommelier nom +sommeliers sommelier nom +somnambulate somnambulate ver +somnambulated somnambulate ver +somnambulates somnambulate ver +somnambulating somnambulate ver +somnambulism somnambulism nom +somnambulisms somnambulism nom +somnambulist somnambulist nom +somnambulists somnambulist nom +somniloquist somniloquist nom +somniloquists somniloquist nom +somnolence somnolence nom +somnolences somnolence nom +son son nom +sonant sonant nom +sonants sonant nom +sonar sonar nom +sonars sonar nom +sonata sonata nom +sonatas sonata nom +sonatina sonatina nom +sonatinas sonatina nom +sone sone nom +sones sone nom +song song nom +songbird songbird nom +songbirds songbird nom +songbook songbook nom +songbooks songbook nom +songfest songfest nom +songfests songfest nom +songfulness songfulness nom +songfulnesses songfulness nom +songs song nom +songster songster nom +songsters songster nom +songstress songstress nom +songstresses songstress nom +songwriter songwriter nom +songwriters songwriter nom +sonnet sonnet nom +sonneted sonnet ver +sonneteer sonneteer nom +sonneteers sonneteer nom +sonneting sonnet ver +sonnets sonnet nom +sonnies sonny nom +sonny sonny nom +sonogram sonogram nom +sonograms sonogram nom +sonographies sonography nom +sonography sonography nom +sonorities sonority nom +sonority sonority nom +sonorousness sonorousness nom +sonorousnesses sonorousness nom +sons son nom +sonsie sonsie adj +sonsier sonsie adj +sonsiest sonsie adj +sonsy sonsy adj +soon soon sw +sooner soon adj +soonest soon adj +soot soot nom +sooted soot ver +sooth sooth adj +soothe soothe ver +soothed soothe ver +soother sooth adj +soothers soother nom +soothes soothe ver +soothest sooth adj +soothing soothe ver +sooths sooth nom +soothsayer soothsayer nom +soothsayers soothsayer nom +soothsaying soothsaying nom +soothsayings soothsaying nom +sootier sooty adj +sootiest sooty adj +sootiness sootiness nom +sootinesses sootiness nom +sooting soot ver +soots soot nom +sooty sooty adj +sop sop nom +sophism sophism nom +sophisms sophism nom +sophist sophist nom +sophisticate sophisticate nom +sophisticated sophisticate ver +sophisticates sophisticate nom +sophisticating sophisticate ver +sophistication sophistication nom +sophistications sophistication nom +sophistries sophistry nom +sophistry sophistry nom +sophists sophist nom +sophomore sophomore nom +sophomores sophomore nom +soporific soporific nom +soporifics soporific nom +sopped sop ver +soppier soppy adj +soppiest soppy adj +sopping sop ver +soppy soppy adj +soprano soprano nom +sopranos soprano nom +sops sop nom +sorb sorb nom +sorbate sorbate nom +sorbates sorbate nom +sorbed sorb ver +sorbent sorbent nom +sorbents sorbent nom +sorbet sorbet nom +sorbets sorbet nom +sorbing sorb ver +sorbs sorb nom +sorcerer sorcerer nom +sorcerers sorcerer nom +sorceress sorceress nom +sorceresses sorceress nom +sorceries sorcery nom +sorcery sorcery nom +sordid sordid adj +sordider sordid adj +sordidest sordid adj +sordidness sordidness nom +sordidnesses sordidness nom +sordini sordino nom +sordino sordino nom +sore sore adj +sorehead sorehead nom +soreheads sorehead nom +soreness soreness nom +sorenesses soreness nom +sorer sore adj +sores sore nom +sorest sore adj +sorgho sorgho nom +sorghos sorgho nom +sorghum sorghum nom +sorghums sorghum nom +sorgo sorgo nom +sorgos sorgo nom +sori sorus nom +sororities sorority nom +sorority sorority nom +sorption sorption nom +sorptions sorption nom +sorrel sorrel nom +sorrels sorrel nom +sorrier sorry adj +sorries sorry nom +sorriest sorry adj +sorriness sorriness nom +sorrinesses sorriness nom +sorrow sorrow nom +sorrowed sorrow ver +sorrowfulness sorrowfulness nom +sorrowfulnesses sorrowfulness nom +sorrowing sorrow ver +sorrows sorrow nom +sorry sorry sw +sort sort nom +sorted sort ver +sorter sorter nom +sorters sorter nom +sortie sortie nom +sortied sortie ver +sortieing sortie ver +sorties sortie nom +sorting sort ver +sortings sorting nom +sortition sortition nom +sortitions sortition nom +sorts sort nom +sorus sorus nom +sos sos nom +sot sot nom +sots sot nom +sottishness sottishness nom +sottishnesses sottishness nom +sou sou nom +souari souari nom +souaris souari nom +soubrette soubrette nom +soubrettes soubrette nom +soubriquet soubriquet nom +soubriquets soubriquet nom +souffle souffle nom +souffles souffle nom +sough sough nom +soughed sough ver +soughing sough ver +soughs sough nom +sought seek ver +souk souk nom +souks souk nom +soul soul nom +soulfulness soulfulness nom +soulfulnesses soulfulness nom +souls soul nom +sound sound adj +soundboard soundboard nom +soundboards soundboard nom +soundbox soundbox nom +soundboxes soundbox nom +sounded sound ver +sounder sound adj +sounders sounder nom +soundest sound adj +sounding sound ver +soundings sounding nom +soundlessness soundlessness nom +soundlessnesses soundlessness nom +soundman soundman nom +soundmen soundman nom +soundness soundness nom +soundnesses soundness nom +soundproof soundproof ver +soundproofed soundproof ver +soundproofing soundproof ver +soundproofings soundproofing nom +soundproofs soundproof ver +sounds sound nom +soundtrack soundtrack nom +soundtracks soundtrack nom +soup soup nom +soupcon soupcon nom +soupcons soupcon nom +souped soup ver +soupier soupy adj +soupiest soupy adj +souping soup ver +soups soup nom +soupspoon soupspoon nom +soupspoons soupspoon nom +soupy soupy adj +sour sour adj +sourball sourball nom +sourballs sourball nom +source source nom +sourced source ver +sources source nom +sourcing source ver +sourdine sourdine nom +sourdines sourdine nom +sourdough sourdough nom +sourdoughs sourdough nom +soured sour ver +sourer sour adj +sourest sour adj +souring sour ver +sourings souring nom +sourness sourness nom +sournesses sourness nom +sourpuss sourpuss nom +sourpusses sourpuss nom +sours sour nom +soursop soursop nom +soursops soursop nom +sourwood sourwood nom +sourwoods sourwood nom +sous sou nom +sousaphone sousaphone nom +sousaphones sousaphone nom +souse souse nom +soused souse ver +souses souse nom +sousing souse ver +sousings sousing nom +souslik souslik nom +sousliks souslik nom +soutache soutache nom +soutaches soutache nom +soutane soutane nom +soutanes soutane nom +south south nom +southeast southeast nom +southeaster southeaster nom +southeasters southeaster nom +southeasts southeast nom +southeastward southeastward nom +southeastwards southeastward nom +southed south ver +souther souther nom +southerlies southerly nom +southerly southerly nom +southern southern nom +southerner southerner nom +southerners southerner nom +southernism southernism nom +southernisms southernism nom +southernness southernness nom +southernnesses southernness nom +southerns southern nom +southernwood southernwood nom +southernwoods southernwood nom +southers souther nom +southing south ver +southland southland nom +southlands southland nom +southpaw southpaw nom +southpaws southpaw nom +souths south nom +southward southward nom +southwards southward nom +southwest southwest nom +southwester southwester nom +southwesters southwester nom +southwests southwest nom +southwestward southwestward nom +southwestwards southwestward nom +souvenir souvenir nom +souvenirs souvenir nom +souvlaki souvlaki nom +souvlakia souvlakia nom +souvlakias souvlakia nom +souvlakis souvlaki nom +sovereign sovereign nom +sovereigns sovereign nom +sovereignties sovereignty nom +sovereignty sovereignty nom +soviet soviet nom +sovietism sovietism nom +sovietisms sovietism nom +sovietize sovietize ver +sovietized sovietize ver +sovietizes sovietize ver +sovietizing sovietize ver +soviets soviet nom +sow sow nom +sowbellies sowbelly nom +sowbelly sowbelly nom +sowbread sowbread nom +sowbreads sowbread nom +sowed sow ver +sower sower nom +sowers sower nom +sowing sow ver +sown sow ver +sows sow nom +soy soy nom +soya soya nom +soyas soya nom +soybean soybean nom +soybeans soybean nom +soymilk soymilk nom +soymilks soymilk nom +soys soy nom +spa spa nom +space space nom +spacecraft spacecraft nom +spacecrafts spacecraft nom +spaced space ver +spacefaring spacefaring nom +spacefarings spacefaring nom +spaceflight spaceflight nom +spaceflights spaceflight nom +spaceman spaceman nom +spacemen spaceman nom +spaceport spaceport nom +spaceports spaceport nom +spacer spacer nom +spacers spacer nom +spaces space nom +spaceship spaceship nom +spaceships spaceship nom +spacesuit spacesuit nom +spacesuits spacesuit nom +spacewalk spacewalk nom +spacewalked spacewalk ver +spacewalking spacewalk ver +spacewalks spacewalk nom +spacewoman spacewoman nom +spacewomen spacewoman nom +spacey spacey adj +spacier spacey adj +spaciest spacey adj +spaciness spaciness nom +spacinesses spaciness nom +spacing space ver +spacings spacing nom +spaciousness spaciousness nom +spaciousnesses spaciousness nom +spackle spackle nom +spackles spackle nom +spacy spacy adj +spade spade nom +spaded spade ver +spadefish spadefish nom +spadeful spadeful nom +spadefuls spadeful nom +spades spade nom +spadework spadework nom +spadeworks spadework nom +spadices spadix nom +spading spade ver +spadix spadix nom +spaghetti spaghetti nom +spaghettini spaghettini nom +spaghettinis spaghettini nom +spaghettis spaghetti nom +span span nom +spandex spandex nom +spandexes spandex nom +spang spang ver +spanged spang ver +spanging spang ver +spangle spangle nom +spangled spangle ver +spangles spangle nom +spanglier spangly adj +spangliest spangly adj +spangling spangle ver +spangly spangly adj +spangs spang ver +spaniel spaniel nom +spaniels spaniel nom +spank spank nom +spanked spank ver +spanker spanker nom +spankers spanker nom +spanking spank ver +spankings spanking nom +spanks spank nom +spanned span ver +spanner spanner nom +spanners spanner nom +spanning span ver +spans span nom +spar spar nom +spare spare adj +spared spare ver +spareness spareness nom +sparenesses spareness nom +sparer spare adj +sparerib sparerib nom +spareribs sparerib nom +spares spare nom +sparest spare adj +sparid sparid nom +sparids sparid nom +sparing spare ver +spark spark nom +sparked spark ver +sparkier sparky adj +sparkiest sparky adj +sparking spark ver +sparkle sparkle nom +sparkleberries sparkleberry nom +sparkleberry sparkleberry nom +sparkled sparkle ver +sparkler sparkler nom +sparklers sparkler nom +sparkles sparkle nom +sparklier sparkly adj +sparkliest sparkly adj +sparkling sparkle ver +sparkly sparkly adj +sparks spark nom +sparky sparky adj +sparling sparling nom +sparred spar ver +sparring spar ver +sparrings sparring nom +sparrow sparrow nom +sparrows sparrow nom +spars spar nom +sparse sparse adj +sparseness sparseness nom +sparsenesses sparseness nom +sparser sparse adj +sparsest sparse adj +sparsities sparsity nom +sparsity sparsity nom +spas spa nom +spasm spasm nom +spasmolytic spasmolytic nom +spasmolytics spasmolytic nom +spasms spasm nom +spastic spastic nom +spasticities spasticity nom +spasticity spasticity nom +spastics spastic nom +spat spat nom +spatchcock spatchcock nom +spatchcocked spatchcock ver +spatchcocking spatchcock ver +spatchcocks spatchcock nom +spate spate nom +spates spate nom +spathe spathe nom +spathes spathe nom +spatialities spatiality nom +spatiality spatiality nom +spats spat nom +spatted spat ver +spatter spatter nom +spatterdock spatterdock nom +spatterdocks spatterdock nom +spattered spatter ver +spattering spatter ver +spatters spatter nom +spatting spat ver +spatula spatula nom +spatulas spatula nom +spavin spavin nom +spavins spavin nom +spawn spawn nom +spawned spawn ver +spawning spawn ver +spawns spawn nom +spay spay ver +spayed spay ver +spaying spay ver +spays spay ver +speak speak ver +speakeasies speakeasy nom +speakeasy speakeasy nom +speaker speaker nom +speakers speaker nom +speakership speakership nom +speakerships speakership nom +speaking speak ver +speakings speaking nom +speaks speak ver +spear spear nom +speared spear ver +spearfish spearfish nom +spearfished spearfish ver +spearfishes spearfish ver +spearfishing spearfish ver +spearhead spearhead nom +spearheaded spearhead ver +spearheading spearhead ver +spearheads spearhead nom +spearing spear ver +spearmint spearmint nom +spearmints spearmint nom +spears spear nom +spec spec nom +spec'd spec ver +spec'ing spec ver +special special adj +specialer special adj +specialisation specialisation nom +specialisations specialisation nom +specialism specialism nom +specialisms specialism nom +specialist special adj +specialists specialist nom +specialities speciality nom +speciality speciality nom +specialization specialization nom +specializations specialization nom +specialize specialize ver +specialized specialize ver +specializer specializer nom +specializers specializer nom +specializes specialize ver +specializing specialize ver +specialness specialness nom +specialnesses specialness nom +specials special nom +specialties specialty nom +specialty specialty nom +speciation speciation nom +speciations speciation nom +specie specie nom +species specie nom +specific specific nom +specification specification nom +specifications specification nom +specificities specificity nom +specificity specificity nom +specifics specific nom +specified specified sw +specifies specify ver +specify specify sw +specifying specifying sw +specimen specimen nom +specimens specimen nom +speciousness speciousness nom +speciousnesses speciousness nom +speck speck nom +specked speck ver +specking speck ver +speckle speckle nom +speckled speckle ver +speckles speckle nom +speckling speckle ver +specks speck nom +specs spec nom +spectacle spectacle nom +spectacles spectacle nom +spectacular spectacular nom +spectaculars spectacular nom +spectate spectate ver +spectated spectate ver +spectates spectate ver +spectating spectate ver +spectator spectator nom +spectators spectator nom +specter specter nom +specters specter nom +spectinomycin spectinomycin nom +spectinomycins spectinomycin nom +spectra spectrum nom +spectre spectre nom +spectres spectre nom +spectrogram spectrogram nom +spectrograms spectrogram nom +spectrograph spectrograph nom +spectrographs spectrograph nom +spectrometer spectrometer nom +spectrometers spectrometer nom +spectrometries spectrometry nom +spectrometry spectrometry nom +spectrophotometer spectrophotometer nom +spectrophotometers spectrophotometer nom +spectroscope spectroscope nom +spectroscopes spectroscope nom +spectroscopies spectroscopy nom +spectroscopy spectroscopy nom +spectrum spectrum nom +speculate speculate ver +speculated speculate ver +speculates speculate ver +speculating speculate ver +speculation speculation nom +speculations speculation nom +speculativeness speculativeness nom +speculativenesses speculativeness nom +speculator speculator nom +speculators speculator nom +speculum speculum nom +speculums speculum nom +sped speed ver +speech speech nom +speeches speech nom +speechified speechify ver +speechifies speechify ver +speechify speechify ver +speechifying speechify ver +speechlessness speechlessness nom +speechlessnesses speechlessness nom +speechmaker speechmaker nom +speechmakers speechmaker nom +speechwriter speechwriter nom +speechwriters speechwriter nom +speed speed nom +speedboat speedboat nom +speedboats speedboat nom +speeder speeder nom +speeders speeder nom +speedier speedy adj +speediest speedy adj +speediness speediness nom +speedinesses speediness nom +speeding speed ver +speedings speeding nom +speedometer speedometer nom +speedometers speedometer nom +speeds speed nom +speedster speedster nom +speedsters speedster nom +speedup speedup nom +speedups speedup nom +speedway speedway nom +speedways speedway nom +speedwell speedwell nom +speedwells speedwell nom +speedy speedy adj +spelaeologist spelaeologist nom +spelaeologists spelaeologist nom +speleologies speleology nom +speleologist speleologist nom +speleologists speleologist nom +speleology speleology nom +spell spell nom +spellbind spellbind ver +spellbinder spellbinder nom +spellbinders spellbinder nom +spellbinding spellbind ver +spellbinds spellbind ver +spellbound spellbind ver +spelldown spelldown nom +spelldowns spelldown nom +spelled spell ver +speller speller nom +spellers speller nom +spelling spell ver +spellings spelling nom +spells spell nom +spelt spelt nom +spelts spelt nom +spelunk spelunk ver +spelunked spelunk ver +spelunker spelunker nom +spelunkers spelunker nom +spelunking spelunk ver +spelunkings spelunking nom +spelunks spelunk ver +spend spend ver +spender spender nom +spenders spender nom +spending spend ver +spendings spending nom +spends spend ver +spendthrift spendthrift nom +spendthrifts spendthrift nom +spent spend ver +sperm sperm nom +spermaceti spermaceti nom +spermacetis spermaceti nom +spermatid spermatid nom +spermatids spermatid nom +spermatocele spermatocele nom +spermatoceles spermatocele nom +spermatocide spermatocide nom +spermatocides spermatocide nom +spermatocyte spermatocyte nom +spermatocytes spermatocyte nom +spermatogeneses spermatogenesis nom +spermatogenesis spermatogenesis nom +spermatophyte spermatophyte nom +spermatophytes spermatophyte nom +spermatozoa spermatozoon nom +spermatozoid spermatozoid nom +spermatozoids spermatozoid nom +spermatozoon spermatozoon nom +spermicide spermicide nom +spermicides spermicide nom +spermophile spermophile nom +spermophiles spermophile nom +sperms sperm nom +spew spew nom +spewed spew ver +spewer spewer nom +spewers spewer nom +spewing spew ver +spews spew nom +sphagnum sphagnum nom +sphagnums sphagnum nom +sphalerite sphalerite nom +sphalerites sphalerite nom +sphere sphere nom +sphered sphere ver +spheres sphere nom +sphericalness sphericalness nom +sphericalnesses sphericalness nom +sphericities sphericity nom +sphericity sphericity nom +sphering sphere ver +spheroid spheroid nom +spheroids spheroid nom +spherometer spherometer nom +spherometers spherometer nom +spherule spherule nom +spherules spherule nom +sphincter sphincter nom +sphincters sphincter nom +sphingid sphingid nom +sphingids sphingid nom +sphinx sphinx nom +sphinxes sphinx nom +sphygmomanometer sphygmomanometer nom +sphygmomanometers sphygmomanometer nom +spic spic nom +spice spice nom +spiceberries spiceberry nom +spiceberry spiceberry nom +spicebush spicebush nom +spicebushes spicebush nom +spiced spice ver +spiceries spicery nom +spicery spicery nom +spices spice nom +spicier spicy adj +spiciest spicy adj +spiciness spiciness nom +spicinesses spiciness nom +spicing spice ver +spick spick nom +spicks spick nom +spics spic nom +spicula spiculum nom +spicule spicule nom +spicules spicule nom +spiculum spiculum nom +spicy spicy adj +spider spider nom +spiderier spidery adj +spideriest spidery adj +spiders spider nom +spiderweb spiderweb nom +spiderwebbed spiderweb ver +spiderwebbing spiderweb ver +spiderwebs spiderweb nom +spiderwort spiderwort nom +spiderworts spiderwort nom +spidery spidery adj +spied spy ver +spiegel spiegel nom +spiegeleisen spiegeleisen nom +spiegeleisens spiegeleisen nom +spiegels spiegel nom +spiel spiel nom +spieled spiel ver +spieling spiel ver +spiels spiel nom +spies spy nom +spiffier spiffy adj +spiffiest spiffy adj +spiffy spiffy adj +spigot spigot nom +spigots spigot nom +spik spik nom +spike spike nom +spiked spike ver +spikelet spikelet nom +spikelets spikelet nom +spikenard spikenard nom +spikenards spikenard nom +spikes spike nom +spikier spiky adj +spikiest spiky adj +spikiness spikiness nom +spikinesses spikiness nom +spiking spike ver +spiks spik nom +spiky spiky adj +spile spile nom +spiles spile nom +spill spill nom +spillage spillage nom +spillages spillage nom +spilled spill ver +spillikin spillikin nom +spillikins spillikin nom +spilling spill ver +spillover spillover nom +spillovers spillover nom +spills spill nom +spillway spillway nom +spillways spillway nom +spin spin nom +spinach spinach nom +spinaches spinach nom +spinal spinal nom +spinals spinal nom +spindle spindle nom +spindled spindle ver +spindles spindle nom +spindlier spindly adj +spindliest spindly adj +spindling spindle ver +spindly spindly adj +spindrift spindrift nom +spindrifts spindrift nom +spine spine nom +spinel spinel nom +spinelessness spinelessness nom +spinelessnesses spinelessness nom +spinels spinel nom +spines spine nom +spinet spinet nom +spinets spinet nom +spinier spiny adj +spiniest spiny adj +spinnaker spinnaker nom +spinnakers spinnaker nom +spinner spinner nom +spinneret spinneret nom +spinnerets spinneret nom +spinners spinner nom +spinney spinney nom +spinneys spinney nom +spinning spin ver +spinnings spinning nom +spinoff spinoff nom +spinoffs spinoff nom +spins spin nom +spinster spinster nom +spinsterhood spinsterhood nom +spinsterhoods spinsterhood nom +spinsters spinster nom +spiny spiny adj +spiracle spiracle nom +spiracles spiracle nom +spiraea spiraea nom +spiraeas spiraea nom +spiral spiral nom +spiraled spiral ver +spiraling spiral ver +spirals spiral nom +spirant spirant nom +spirants spirant nom +spire spire nom +spirea spirea nom +spireas spirea nom +spired spire ver +spires spire nom +spirier spiry adj +spiriest spiry adj +spirilla spirillum nom +spirillum spirillum nom +spiring spire ver +spirit spirit nom +spirited spirit ver +spiritedness spiritedness nom +spiritednesses spiritedness nom +spiriting spirit ver +spiritlessness spiritlessness nom +spiritlessnesses spiritlessness nom +spirits spirit nom +spiritual spiritual nom +spiritualism spiritualism nom +spiritualisms spiritualism nom +spiritualist spiritualist nom +spiritualists spiritualist nom +spiritualities spirituality nom +spirituality spirituality nom +spiritualization spiritualization nom +spiritualizations spiritualization nom +spiritualize spiritualize ver +spiritualized spiritualize ver +spiritualizes spiritualize ver +spiritualizing spiritualize ver +spirituals spiritual nom +spiritualties spiritualty nom +spiritualty spiritualty nom +spirochaete spirochaete nom +spirochaetes spirochaete nom +spirochete spirochete nom +spirochetes spirochete nom +spirograph spirograph nom +spirographs spirograph nom +spirogyra spirogyra nom +spirogyras spirogyra nom +spironolactone spironolactone nom +spironolactones spironolactone nom +spirt spirt nom +spirted spirt ver +spirting spirt ver +spirts spirt nom +spirula spirula nom +spirulas spirula nom +spiry spiry adj +spit spit ver +spitball spitball nom +spitballs spitball nom +spite spite nom +spited spite ver +spiteful spiteful adj +spitefuller spiteful adj +spitefullest spiteful adj +spitefulness spitefulness nom +spitefulnesses spitefulness nom +spites spite nom +spitfire spitfire nom +spitfires spitfire nom +spiting spite ver +spits spit nom +spitted spit ver +spitting spit ver +spittings spitting nom +spittle spittle nom +spittlebug spittlebug nom +spittlebugs spittlebug nom +spittles spittle nom +spittoon spittoon nom +spittoons spittoon nom +spitz spitz nom +spitzes spitz nom +spiv spiv nom +spivs spiv nom +splash splash nom +splashboard splashboard nom +splashboards splashboard nom +splashdown splashdown nom +splashdowns splashdown nom +splashed splash ver +splashes splash nom +splashguard splashguard nom +splashguards splashguard nom +splashier splashy adj +splashiest splashy adj +splashiness splashiness nom +splashinesses splashiness nom +splashing splash ver +splashings splashing nom +splashy splashy adj +splat splat nom +splats splat nom +splatted splat ver +splatter splatter nom +splattered splatter ver +splattering splatter ver +splatters splatter nom +splatting splat ver +splay splay nom +splayed splay ver +splayfeet splayfoot nom +splayfoot splayfoot nom +splaying splay ver +splays splay nom +spleen spleen nom +spleens spleen nom +spleenwort spleenwort nom +spleenworts spleenwort nom +splendid splendid adj +splendider splendid adj +splendidest splendid adj +splendor splendor nom +splendors splendor nom +splendour splendour nom +splendours splendour nom +splenectomies splenectomy nom +splenectomy splenectomy nom +splenetic splenetic nom +splenetics splenetic nom +splenomegalies splenomegaly nom +splenomegaly splenomegaly nom +splice splice nom +spliced splice ver +splicer splicer nom +splicers splicer nom +splices splice nom +splicing splice ver +spline spline nom +splines spline nom +splint splint nom +splinted splint ver +splinter splinter nom +splintered splinter ver +splintering splinter ver +splinters splinter nom +splinting splint ver +splints splint nom +split split ver +splits split nom +splitting split ver +splittings splitting nom +splodge splodge nom +splodges splodge nom +splosh splosh ver +sploshed splosh ver +sploshes splosh ver +sploshing splosh ver +splotch splotch nom +splotched splotch ver +splotches splotch nom +splotchier splotchy adj +splotchiest splotchy adj +splotching splotch ver +splotchy splotchy adj +splurge splurge nom +splurged splurge ver +splurges splurge nom +splurging splurge ver +splutter splutter nom +spluttered splutter ver +spluttering splutter ver +splutters splutter nom +spodumene spodumene nom +spodumenes spodumene nom +spoil spoil nom +spoilage spoilage nom +spoilages spoilage nom +spoiled spoil ver +spoiler spoiler nom +spoilers spoiler nom +spoiling spoil ver +spoils spoil nom +spoilsport spoilsport nom +spoilsports spoilsport nom +spoke speak ver +spoked spoke ver +spoken speak ver +spokes spoke nom +spokesman spokesman nom +spokesmen spokesman nom +spokespeople spokesperson nom +spokesperson spokesperson nom +spokeswoman spokeswoman nom +spokeswomen spokeswoman nom +spoking spoke ver +spoliation spoliation nom +spoliations spoliation nom +spondee spondee nom +spondees spondee nom +spondylitis spondylitis nom +spondylitises spondylitis nom +sponge sponge nom +spongecake spongecake nom +spongecakes spongecake nom +sponged sponge ver +sponger sponger nom +spongers sponger nom +sponges sponge nom +spongier spongy adj +spongiest spongy adj +sponginess sponginess nom +sponginesses sponginess nom +sponging sponge ver +spongy spongy adj +sponsor sponsor nom +sponsored sponsor ver +sponsoring sponsor ver +sponsors sponsor nom +sponsorship sponsorship nom +sponsorships sponsorship nom +spontaneities spontaneity nom +spontaneity spontaneity nom +spontaneousness spontaneousness nom +spontaneousnesses spontaneousness nom +spoof spoof nom +spoofed spoof ver +spoofing spoof ver +spoofs spoof nom +spook spook nom +spooked spook ver +spookier spooky adj +spookiest spooky adj +spookiness spookiness nom +spookinesses spookiness nom +spooking spook ver +spooks spook nom +spooky spooky adj +spool spool nom +spooled spool ver +spooling spool ver +spools spool nom +spoon spoon nom +spoonbill spoonbill nom +spoonbills spoonbill nom +spoondrift spoondrift nom +spoondrifts spoondrift nom +spooned spoon ver +spoonerism spoonerism nom +spoonerisms spoonerism nom +spoonfed spoonfeed ver +spoonfeed spoonfeed ver +spoonfeeding spoonfeed ver +spoonfeeds spoonfeed ver +spoonful spoonful nom +spoonfuls spoonful nom +spooning spoon ver +spoons spoon nom +spoor spoor nom +spoored spoor ver +spooring spoor ver +spoors spoor nom +sporangia sporangium nom +sporangiophore sporangiophore nom +sporangiophores sporangiophore nom +sporangium sporangium nom +spore spore nom +spored spore ver +spores spore nom +sporing spore ver +sporocarp sporocarp nom +sporocarps sporocarp nom +sporophore sporophore nom +sporophores sporophore nom +sporophyl sporophyl nom +sporophyll sporophyll nom +sporophylls sporophyll nom +sporophyls sporophyl nom +sporophyte sporophyte nom +sporophytes sporophyte nom +sporotrichoses sporotrichosis nom +sporotrichosis sporotrichosis nom +sporozoan sporozoan nom +sporozoans sporozoan nom +sporozoite sporozoite nom +sporozoites sporozoite nom +sporran sporran nom +sporrans sporran nom +sport sport nom +sported sport ver +sportier sporty adj +sportiest sporty adj +sportiness sportiness nom +sportinesses sportiness nom +sporting sport ver +sportiveness sportiveness nom +sportivenesses sportiveness nom +sports sport nom +sportscast sportscast ver +sportscaster sportscaster nom +sportscasters sportscaster nom +sportscasting sportscast ver +sportscasts sportscast nom +sportsman sportsman nom +sportsmanship sportsmanship nom +sportsmanships sportsmanship nom +sportsmen sportsman nom +sportswear sportswear nom +sportswears sportswear nom +sportswoman sportswoman nom +sportswomen sportswoman nom +sportswriter sportswriter nom +sportswriters sportswriter nom +sporty sporty adj +sporulation sporulation nom +sporulations sporulation nom +spot spot nom +spotlessness spotlessness nom +spotlessnesses spotlessness nom +spotlight spotlight nom +spotlighted spotlight ver +spotlighting spotlight ver +spotlights spotlight nom +spots spot nom +spotted spot ver +spotter spotter nom +spotters spotter nom +spottier spotty adj +spottiest spotty adj +spottiness spottiness nom +spottinesses spottiness nom +spotting spot ver +spottings spotting nom +spotty spotty adj +spousal spousal nom +spousals spousal nom +spouse spouse nom +spoused spouse ver +spouses spouse nom +spousing spouse ver +spout spout nom +spouted spout ver +spouting spout ver +spouts spout nom +sprag sprag nom +sprags sprag nom +sprain sprain nom +sprained sprain ver +spraining sprain ver +sprains sprain nom +sprang spring ver +sprat sprat nom +sprats sprat nom +sprawl sprawl nom +sprawled sprawl ver +sprawlier sprawly adj +sprawliest sprawly adj +sprawling sprawl ver +sprawls sprawl nom +sprawly sprawly adj +spray spray nom +sprayed spray ver +sprayer sprayer nom +sprayers sprayer nom +spraying spray ver +sprays spray nom +spread spread ver +spreader spreader nom +spreaders spreader nom +spreading spread ver +spreadings spreading nom +spreads spread nom +spreadsheet spreadsheet nom +spreadsheets spreadsheet nom +spree spree nom +spreed spree ver +spreeing spree ver +sprees spree nom +sprier spry adj +spriest spry adj +sprig sprig nom +sprigged sprig ver +sprigging sprig ver +sprightlier sprightly adj +sprightliest sprightly adj +sprightliness sprightliness nom +sprightlinesses sprightliness nom +sprightly sprightly adj +sprigs sprig nom +sprigtail sprigtail nom +sprigtails sprigtail nom +spring spring nom +springboard springboard nom +springboards springboard nom +springbok springbok nom +springbuck springbuck nom +springbucks springbuck nom +springer springer nom +springers springer nom +springier springy adj +springiest springy adj +springiness springiness nom +springinesses springiness nom +springing spring ver +springs spring nom +springtail springtail nom +springtails springtail nom +springtide springtide nom +springtides springtide nom +springtime springtime nom +springtimes springtime nom +springy springy adj +sprinkle sprinkle nom +sprinkled sprinkle ver +sprinkler sprinkler nom +sprinklers sprinkler nom +sprinkles sprinkle nom +sprinkling sprinkle ver +sprinklings sprinkling nom +sprint sprint nom +sprinted sprint ver +sprinter sprinter nom +sprinters sprinter nom +sprinting sprint ver +sprints sprint nom +sprit sprit nom +sprite sprite nom +sprites sprite nom +sprits sprit nom +spritsail spritsail nom +spritsails spritsail nom +spritz spritz nom +spritzed spritz ver +spritzer spritzer nom +spritzers spritzer nom +spritzes spritz nom +spritzing spritz ver +sprocket sprocket nom +sprockets sprocket nom +sprout sprout nom +sprouted sprout ver +sprouting sprout ver +sproutings sprouting nom +sprouts sprout nom +spruce spruce adj +spruced spruce ver +spruceness spruceness nom +sprucenesses spruceness nom +sprucer spruce adj +spruces spruce nom +sprucest spruce adj +sprucing spruce ver +sprue sprue nom +sprues sprue nom +sprung spring ver +spry spry adj +spryness spryness nom +sprynesses spryness nom +spud spud nom +spudded spud ver +spudding spud ver +spuds spud nom +spue spue ver +spued spue ver +spues spue ver +spuing spue ver +spume spume nom +spumed spume ver +spumes spume nom +spumier spumy adj +spumiest spumy adj +spuming spume ver +spumone spumone nom +spumones spumone nom +spumoni spumoni nom +spumonis spumoni nom +spumy spumy adj +spun spin ver +spunk spunk nom +spunkier spunky adj +spunkiest spunky adj +spunks spunk nom +spunky spunky adj +spur spur nom +spurge spurge nom +spurges spurge nom +spuriousness spuriousness nom +spuriousnesses spuriousness nom +spurn spurn nom +spurned spurn ver +spurning spurn ver +spurns spurn nom +spurred spur ver +spurring spur ver +spurrings spurring nom +spurs spur nom +spurt spurt nom +spurted spurt ver +spurting spurt ver +spurts spurt nom +sputa sputum nom +sputnik sputnik nom +sputniks sputnik nom +sputter sputter nom +sputtered sputter ver +sputtering sputter ver +sputterings sputtering nom +sputters sputter nom +sputum sputum nom +spy spy nom +spyglass spyglass nom +spyglasses spyglass nom +spyhole spyhole nom +spyholes spyhole nom +spying spy ver +spyings spying nom +squab squab nom +squabber squab adj +squabbest squab adj +squabbier squabby adj +squabbiest squabby adj +squabble squabble nom +squabbled squabble ver +squabbler squabbler nom +squabblers squabbler nom +squabbles squabble nom +squabbling squabble ver +squabby squabby adj +squad squad nom +squadron squadron nom +squadroned squadron ver +squadroning squadron ver +squadrons squadron nom +squads squad nom +squalid squalid adj +squalider squalid adj +squalidest squalid adj +squalidness squalidness nom +squalidnesses squalidness nom +squall squall nom +squalled squall ver +squallier squally adj +squalliest squally adj +squalling squall ver +squalls squall nom +squally squally adj +squalor squalor nom +squalors squalor nom +squama squama nom +squamae squama nom +squamule squamule nom +squamules squamule nom +squander squander nom +squandered squander ver +squanderer squanderer nom +squanderers squanderer nom +squandering squander ver +squanderings squandering nom +squanders squander nom +square square adj +squared square ver +squareness squareness nom +squarenesses squareness nom +squarer square adj +squares square nom +squarest square adj +squaring square ver +squash squash nom +squashed squash ver +squashes squash nom +squashier squashy adj +squashiest squashy adj +squashing squash ver +squashy squashy adj +squat squat adj +squatness squatness nom +squatnesses squatness nom +squats squat nom +squatted squat ver +squatter squat adj +squatters squatter nom +squattest squat adj +squattier squatty adj +squattiest squatty adj +squatting squat ver +squatty squatty adj +squaw squaw nom +squawk squawk nom +squawked squawk ver +squawker squawker nom +squawkers squawker nom +squawkier squawky adj +squawkiest squawky adj +squawking squawk ver +squawks squawk nom +squawky squawky adj +squawroot squawroot nom +squawroots squawroot nom +squaws squaw nom +squeak squeak nom +squeaked squeak ver +squeaker squeaker nom +squeakers squeaker nom +squeakier squeaky adj +squeakiest squeaky adj +squeakiness squeakiness nom +squeakinesses squeakiness nom +squeaking squeak ver +squeaks squeak nom +squeaky squeaky adj +squeal squeal nom +squealed squeal ver +squealer squealer nom +squealers squealer nom +squealing squeal ver +squeals squeal nom +squeamishness squeamishness nom +squeamishnesses squeamishness nom +squeegee squeegee nom +squeegeed squeegee ver +squeegeeing squeegee ver +squeegees squeegee nom +squeezabilities squeezability nom +squeezability squeezability nom +squeeze squeeze nom +squeezed squeeze ver +squeezer squeezer nom +squeezers squeezer nom +squeezes squeeze nom +squeezing squeeze ver +squelch squelch nom +squelched squelch ver +squelches squelch nom +squelchier squelchy adj +squelchiest squelchy adj +squelching squelch ver +squelchy squelchy adj +squib squib nom +squibbed squib ver +squibbing squib ver +squibs squib nom +squid squid nom +squiffier squiffy adj +squiffiest squiffy adj +squiffy squiffy adj +squiggle squiggle nom +squiggled squiggle ver +squiggles squiggle nom +squigglier squiggly adj +squiggliest squiggly adj +squiggling squiggle ver +squiggly squiggly adj +squill squill nom +squilla squilla nom +squillas squilla nom +squills squill nom +squinch squinch nom +squinched squinch ver +squinches squinch nom +squinching squinch ver +squint squint adj +squinted squint ver +squinter squint adj +squintest squint adj +squintier squinty adj +squintiest squinty adj +squinting squint ver +squints squint nom +squinty squinty adj +squire squire nom +squirearchies squirearchy nom +squirearchy squirearchy nom +squired squire ver +squires squire nom +squiring squire ver +squirm squirm nom +squirmed squirm ver +squirmier squirmy adj +squirmiest squirmy adj +squirming squirm ver +squirms squirm nom +squirmy squirmy adj +squirrel squirrel nom +squirreled squirrel ver +squirrelfish squirrelfish nom +squirreling squirrel ver +squirrels squirrel nom +squirt squirt nom +squirted squirt ver +squirting squirt ver +squirts squirt nom +squish squish nom +squished squish ver +squishes squish nom +squishier squishy adj +squishiest squishy adj +squishing squish ver +squishy squishy adj +stab stab nom +stabbed stab ver +stabber stabber nom +stabbers stabber nom +stabbing stab ver +stabbings stabbing nom +stabile stabile nom +stabiles stabile nom +stabilisation stabilisation nom +stabilisations stabilisation nom +stabilities stability nom +stability stability nom +stabilization stabilization nom +stabilizations stabilization nom +stabilize stabilize ver +stabilized stabilize ver +stabilizer stabilizer nom +stabilizers stabilizer nom +stabilizes stabilize ver +stabilizing stabilize ver +stable stable adj +stableboy stableboy nom +stableboys stableboy nom +stabled stable ver +stableman stableman nom +stablemate stablemate nom +stablemates stablemate nom +stablemen stableman nom +stableness stableness nom +stablenesses stableness nom +stabler stable adj +stables stable nom +stablest stable adj +stabling stable ver +stabs stab nom +staccato staccato nom +staccatos staccato nom +stack stack nom +stacked stack ver +stacking stack ver +stacks stack nom +staddle staddle nom +staddles staddle nom +stadia stadia nom +stadias stadia nom +stadium stadium nom +stadiums stadium nom +staff staff nom +staffed staff ver +staffer staffer nom +staffers staffer nom +staffing staff ver +staffings staffing nom +staffs staff nom +stag stag nom +stage stage nom +stagecoach stagecoach nom +stagecoaches stagecoach nom +stagecraft stagecraft nom +stagecrafts stagecraft nom +staged stage ver +stagehand stagehand nom +stagehands stagehand nom +stager stager nom +stagers stager nom +stages stage nom +stagflation stagflation nom +stagflations stagflation nom +stagged stag ver +stagger stagger nom +staggerbush staggerbush nom +staggerbushes staggerbush nom +staggered stagger ver +staggerer staggerer nom +staggerers staggerer nom +staggering stagger ver +staggers stagger nom +stagging stag ver +staghound staghound nom +staghounds staghound nom +stagier stagy adj +stagiest stagy adj +staginess staginess nom +staginesses staginess nom +staging stage ver +stagings staging nom +stagnancies stagnancy nom +stagnancy stagnancy nom +stagnate stagnate ver +stagnated stagnate ver +stagnates stagnate ver +stagnating stagnate ver +stagnation stagnation nom +stagnations stagnation nom +stags stag nom +stagy stagy adj +staid staid adj +staider staid adj +staidest staid adj +staidness staidness nom +staidnesses staidness nom +stain stain nom +stainabilities stainability nom +stainability stainability nom +stained stain ver +staining stain ver +stainings staining nom +stainless stainless nom +stainlesses stainless nom +stains stain nom +stair stair nom +staircase staircase nom +staircases staircase nom +stairhead stairhead nom +stairheads stairhead nom +stairs stair nom +stairway stairway nom +stairways stairway nom +stairwell stairwell nom +stairwells stairwell nom +stake stake nom +staked stake ver +stakeholder stakeholder nom +stakeholders stakeholder nom +stakeout stakeout nom +stakeouts stakeout nom +stakes stake nom +staking stake ver +stalactite stalactite nom +stalactites stalactite nom +stalagmite stalagmite nom +stalagmites stalagmite nom +stale stale adj +staled stale ver +stalemate stalemate nom +stalemated stalemate ver +stalemates stalemate nom +stalemating stalemate ver +staleness staleness nom +stalenesses staleness nom +staler stale adj +stales stale ver +stalest stale adj +staling stale ver +stalk stalk nom +stalked stalk ver +stalker stalker nom +stalkers stalker nom +stalking stalk ver +stalkings stalking nom +stalks stalk nom +stall stall nom +stalled stall ver +stalling stall ver +stallings stalling nom +stallion stallion nom +stallions stallion nom +stalls stall nom +stalwart stalwart nom +stalwartness stalwartness nom +stalwartnesses stalwartness nom +stalwarts stalwart nom +stamen stamen nom +stamens stamen nom +stamina stamina nom +staminas stamina nom +stammel stammel nom +stammels stammel nom +stammer stammer nom +stammered stammer ver +stammerer stammerer nom +stammerers stammerer nom +stammering stammer ver +stammers stammer nom +stamp stamp nom +stamped stamp ver +stampede stampede nom +stampeded stampede ver +stampedes stampede nom +stampeding stampede ver +stamper stamper nom +stampers stamper nom +stamping stamp ver +stamps stamp nom +stance stance nom +stances stance nom +stanch stanch adj +stanched stanch ver +stancher stanch adj +stanches stanch nom +stanchest stanch adj +stanching stanch ver +stanchion stanchion nom +stanchioned stanchion ver +stanchioning stanchion ver +stanchions stanchion nom +stand stand nom +standard standard nom +standardization standardization nom +standardizations standardization nom +standardize standardize ver +standardized standardize ver +standardizes standardize ver +standardizing standardize ver +standards standard nom +standby standby nom +standbys standby nom +standdown standdown nom +standdowns standdown nom +standee standee nom +standees standee nom +stander stander nom +standers stander nom +standing stand ver +standings standing nom +standoff standoff nom +standoffishness standoffishness nom +standoffishnesses standoffishness nom +standoffs standoff nom +standout standout nom +standouts standout nom +standpipe standpipe nom +standpipes standpipe nom +standpoint standpoint nom +standpoints standpoint nom +stands stand nom +standstill standstill nom +standstills standstill nom +standup standup nom +standups standup nom +stank stink ver +stannite stannite nom +stannites stannite nom +stanza stanza nom +stanzas stanza nom +stapedectomies stapedectomy nom +stapedectomy stapedectomy nom +stapelia stapelia nom +stapelias stapelia nom +stapes stapes nom +stapeses stapes nom +staph staph nom +staphs staph nom +staphylococci staphylococcus nom +staphylococcus staphylococcus nom +staple staple nom +stapled staple ver +stapler stapler nom +staplers stapler nom +staples staple nom +stapling staple ver +star star nom +starboard starboard nom +starboarded starboard ver +starboarding starboard ver +starboards starboard nom +starch starch nom +starched starch ver +starches starch nom +starchier starchy adj +starchiest starchy adj +starchiness starchiness nom +starchinesses starchiness nom +starching starch ver +starchy starchy adj +stardom stardom nom +stardoms stardom nom +stardust stardust nom +stardusts stardust nom +stare stare nom +stared stare ver +starer starer nom +starers starer nom +stares stare nom +starets starets nom +staretses starets nom +starfish starfish nom +starflower starflower nom +starflowers starflower nom +stargaze stargaze ver +stargazed stargaze ver +stargazer stargazer nom +stargazers stargazer nom +stargazes stargaze ver +stargazing stargaze ver +stargazings stargazing nom +staring stare ver +stark stark adj +starker stark adj +starkest stark adj +starkness starkness nom +starknesses starkness nom +starlet starlet nom +starlets starlet nom +starlight starlight nom +starlights starlight nom +starling starling nom +starred star ver +starrier starry adj +starriest starry adj +starring star ver +starry starry adj +stars star nom +start start nom +started start ver +starter starter nom +starters starter nom +starting start ver +startings starting nom +startle startle nom +startled startle ver +startles startle nom +startling startle ver +starts start nom +startup startup nom +startups startup nom +starvation starvation nom +starvations starvation nom +starve starve ver +starved starve ver +starveling starveling nom +starves starve ver +starving starve ver +starvings starving nom +starwort starwort nom +starworts starwort nom +stases stasis nom +stash stash nom +stashed stash ver +stashes stash nom +stashing stash ver +stasis stasis nom +stat stat nom +state state nom +statecraft statecraft nom +statecrafts statecraft nom +stated state ver +statehood statehood nom +statehoods statehood nom +statehouse statehouse nom +statehouses statehouse nom +statelessness statelessness nom +statelessnesses statelessness nom +statelier stately adj +stateliest stately adj +stateliness stateliness nom +statelinesses stateliness nom +stately stately adj +statement statement nom +statements statement nom +stateroom stateroom nom +staterooms stateroom nom +states state nom +statesman statesman nom +statesmanship statesmanship nom +statesmanships statesmanship nom +statesmen statesman nom +stateswoman stateswoman nom +stateswomen stateswoman nom +static static nom +statice statice nom +statices statice nom +statics static nom +stating state ver +station station nom +stationaries stationary nom +stationary stationary nom +stationed station ver +stationer stationer nom +stationeries stationery nom +stationers stationer nom +stationery stationery nom +stationing station ver +stationmaster stationmaster nom +stationmasters stationmaster nom +stations station nom +statistic statistic nom +statistician statistician nom +statisticians statistician nom +statistics statistic nom +stator stator nom +stators stator nom +stats stat nom +statuaries statuary nom +statuary statuary nom +statue statue nom +statued statue ver +statues statue nom +statuette statuette nom +statuettes statuette nom +statuing statue ver +stature stature nom +statures stature nom +status status nom +statuses status nom +statute statute nom +statutes statute nom +staunch staunch adj +staunched staunch ver +stauncher staunch adj +staunches staunch nom +staunchest staunch adj +staunching staunch ver +staunchness staunchness nom +staunchnesses staunchness nom +stave stave nom +staved stave ver +staves staff nom +staving stave ver +stay stay nom +stayed stay ver +stayer stayer nom +stayers stayer nom +staying stay ver +stays stay nom +staysail staysail nom +staysails staysail nom +stead stead nom +steaded stead ver +steadfastness steadfastness nom +steadfastnesses steadfastness nom +steadied steady ver +steadier steady adj +steadies steady nom +steadiest steady adj +steadiness steadiness nom +steadinesses steadiness nom +steading stead ver +steads stead nom +steady steady adj +steadying steady ver +steak steak nom +steakhouse steakhouse nom +steakhouses steakhouse nom +steaks steak nom +steal steal nom +stealing steal ver +stealings stealing nom +steals steal nom +stealth stealth nom +stealthier stealthy adj +stealthiest stealthy adj +stealthiness stealthiness nom +stealthinesses stealthiness nom +stealths stealth nom +stealthy stealthy adj +steam steam nom +steamboat steamboat nom +steamboats steamboat nom +steamed steam ver +steamer steamer nom +steamered steamer ver +steamering steamer ver +steamers steamer nom +steamfitter steamfitter nom +steamfitters steamfitter nom +steamfitting steamfitting nom +steamfittings steamfitting nom +steamier steamy adj +steamiest steamy adj +steaminess steaminess nom +steaminesses steaminess nom +steaming steam ver +steamroll steamroll ver +steamrolled steamroll ver +steamroller steamroller nom +steamrollered steamroller ver +steamrollering steamroller ver +steamrollers steamroller nom +steamrolling steamroll ver +steamrolls steamroll ver +steams steam nom +steamship steamship nom +steamships steamship nom +steamy steamy adj +stearin stearin nom +stearins stearin nom +steatite steatite nom +steatites steatite nom +steatorrhea steatorrhea nom +steatorrheas steatorrhea nom +steed steed nom +steeds steed nom +steel steel nom +steeled steel ver +steelier steely adj +steeliest steely adj +steeliness steeliness nom +steelinesses steeliness nom +steeling steel ver +steelmaker steelmaker nom +steelmakers steelmaker nom +steelman steelman nom +steelmen steelman nom +steels steel nom +steelworker steelworker nom +steelworkers steelworker nom +steely steely adj +steelyard steelyard nom +steelyards steelyard nom +steenbok steenbok nom +steenboks steenbok nom +steep steep adj +steeped steep ver +steepen steepen ver +steepened steepen ver +steepening steepen ver +steepens steepen ver +steeper steep adj +steepest steep adj +steeping steep ver +steeple steeple nom +steeplechase steeplechase nom +steeplechased steeplechase ver +steeplechaser steeplechaser nom +steeplechasers steeplechaser nom +steeplechases steeplechase nom +steeplechasing steeplechase ver +steeplejack steeplejack nom +steeplejacks steeplejack nom +steeples steeple nom +steepness steepness nom +steepnesses steepness nom +steeps steep nom +steer steer nom +steerage steerage nom +steerages steerage nom +steerageway steerageway nom +steerageways steerageway nom +steered steer ver +steering steer ver +steerings steering nom +steers steer nom +steersman steersman nom +steersmen steersman nom +stegosaur stegosaur nom +stegosaurs stegosaur nom +stegosaurus stegosaurus nom +stegosauruses stegosaurus nom +stein stein nom +steinbok steinbok nom +steinboks steinbok nom +steins stein nom +stela stela nom +stelas stela nom +stele stele nom +steles stele nom +stelis stelis nom +stem stem nom +stemmed stem ver +stemming stem ver +stems stem nom +stemware stemware nom +stemwares stemware nom +stench stench nom +stenches stench nom +stencil stencil nom +stenciled stencil ver +stenciling stencil ver +stencils stencil nom +steno steno nom +stenographer stenographer nom +stenographers stenographer nom +stenographies stenography nom +stenography stenography nom +stenos steno nom +stenoses stenosis nom +stenosis stenosis nom +stentor stentor nom +stentors stentor nom +step step nom +stepbrother stepbrother nom +stepbrothers stepbrother nom +stepchild stepchild nom +stepchildren stepchild nom +stepdaughter stepdaughter nom +stepdaughters stepdaughter nom +stepfather stepfather nom +stepfathers stepfather nom +stephanotis stephanotis nom +stephanotises stephanotis nom +stepladder stepladder nom +stepladders stepladder nom +stepmother stepmother nom +stepmothers stepmother nom +stepparent stepparent nom +stepparents stepparent nom +steppe steppe nom +stepped step ver +stepper stepper nom +steppers stepper nom +steppes steppe nom +stepping step ver +steppingstone steppingstone nom +steppingstones steppingstone nom +steps step nom +stepsister stepsister nom +stepsisters stepsister nom +stepson stepson nom +stepsons stepson nom +steradian steradian nom +steradians steradian nom +sterculia sterculia nom +sterculias sterculia nom +stereo stereo nom +stereoed stereo ver +stereoing stereo ver +stereos stereo nom +stereoscope stereoscope nom +stereoscopes stereoscope nom +stereoscopies stereoscopy nom +stereoscopy stereoscopy nom +stereotype stereotype nom +stereotyped stereotype ver +stereotypes stereotype nom +stereotyping stereotype ver +sterileness sterileness nom +sterilenesses sterileness nom +sterilisation sterilisation nom +sterilisations sterilisation nom +sterilities sterility nom +sterility sterility nom +sterilization sterilization nom +sterilizations sterilization nom +sterilize sterilize ver +sterilized sterilize ver +sterilizer sterilizer nom +sterilizers sterilizer nom +sterilizes sterilize ver +sterilizing sterilize ver +sterling sterling nom +sterlings sterling nom +stern stern adj +sterner stern adj +sternest stern adj +sternness sternness nom +sternnesses sternness nom +sternpost sternpost nom +sternposts sternpost nom +sterns stern nom +sternum sternum nom +sternums sternum nom +sternutation sternutation nom +sternutations sternutation nom +sternutator sternutator nom +sternutatories sternutatory nom +sternutators sternutator nom +sternutatory sternutatory nom +steroid steroid nom +steroids steroid nom +sterol sterol nom +sterols sterol nom +stertor stertor nom +stertors stertor nom +stet stet ver +stethoscope stethoscope nom +stethoscopes stethoscope nom +stets stet ver +stetson stetson nom +stetsons stetson nom +stetted stet ver +stetting stet ver +stevedore stevedore nom +stevedored stevedore ver +stevedores stevedore nom +stevedoring stevedore ver +stew stew nom +steward steward nom +stewarded steward ver +stewardess stewardess nom +stewardesses stewardess nom +stewarding steward ver +stewards steward nom +stewardship stewardship nom +stewardships stewardship nom +stewed stew ver +stewing stew ver +stewings stewing nom +stewpan stewpan nom +stewpans stewpan nom +stews stew nom +stibnite stibnite nom +stibnites stibnite nom +stick stick nom +stickball stickball nom +stickballs stickball nom +sticker sticker nom +stickered sticker ver +stickering sticker ver +stickers sticker nom +stickier sticky adj +stickiest sticky adj +stickiness stickiness nom +stickinesses stickiness nom +sticking stick ver +stickle stickle ver +stickleback stickleback nom +sticklebacks stickleback nom +stickled stickle ver +stickler stickler nom +sticklers stickler nom +stickles stickle ver +stickling stickle ver +stickpin stickpin nom +stickpins stickpin nom +sticks stick nom +sticktight sticktight nom +sticktights sticktight nom +stickup stickup nom +stickups stickup nom +sticky sticky adj +stied sty ver +sties sty nom +stiff stiff adj +stiffed stiff ver +stiffen stiffen ver +stiffened stiffen ver +stiffener stiffener nom +stiffeners stiffener nom +stiffening stiffen ver +stiffenings stiffening nom +stiffens stiffen ver +stiffer stiff adj +stiffest stiff adj +stiffing stiff ver +stiffness stiffness nom +stiffnesses stiffness nom +stiffs stiff nom +stifle stifle nom +stifled stifle ver +stifles stifle nom +stifling stifle ver +stiflings stifling nom +stigma stigma nom +stigmas stigma nom +stigmata stigma nom +stigmatic stigmatic nom +stigmatics stigmatic nom +stigmatisation stigmatisation nom +stigmatisations stigmatisation nom +stigmatism stigmatism nom +stigmatisms stigmatism nom +stigmatist stigmatist nom +stigmatists stigmatist nom +stigmatization stigmatization nom +stigmatizations stigmatization nom +stigmatize stigmatize ver +stigmatized stigmatize ver +stigmatizes stigmatize ver +stigmatizing stigmatize ver +stilbestrol stilbestrol nom +stilbestrols stilbestrol nom +stile stile nom +stiles stile nom +stiletto stiletto nom +stilettoed stiletto ver +stilettoing stiletto ver +stilettos stiletto nom +still still sw +stillbirth stillbirth nom +stillbirths stillbirth nom +stilled still ver +stiller still adj +stillest still adj +stillier stilly adj +stilliest stilly adj +stilling still ver +stillness stillness nom +stillnesses stillness nom +stillroom stillroom nom +stillrooms stillroom nom +stills still nom +stilly stilly adj +stilt stilt nom +stilted stilt ver +stilting stilt ver +stilts stilt nom +stimulant stimulant nom +stimulants stimulant nom +stimulate stimulate ver +stimulated stimulate ver +stimulates stimulate ver +stimulating stimulate ver +stimulation stimulation nom +stimulations stimulation nom +stimulative stimulative nom +stimulatives stimulative nom +stimuli stimulus nom +stimulus stimulus nom +sting sting nom +stinger stinger nom +stingers stinger nom +stingier stingy adj +stingiest stingy adj +stinginess stinginess nom +stinginesses stinginess nom +stinging sting ver +stingings stinging nom +stingray stingray nom +stingrays stingray nom +stings sting nom +stingy stingy adj +stink stink nom +stinkbug stinkbug nom +stinkbugs stinkbug nom +stinker stinker nom +stinkers stinker nom +stinkhorn stinkhorn nom +stinkhorns stinkhorn nom +stinkier stinky adj +stinkiest stinky adj +stinking stink ver +stinkpot stinkpot nom +stinkpots stinkpot nom +stinks stink nom +stinkweed stinkweed nom +stinkweeds stinkweed nom +stinky stinky adj +stint stint nom +stinted stint ver +stinting stint ver +stints stint nom +stipe stipe nom +stipend stipend nom +stipendiaries stipendiary nom +stipendiary stipendiary nom +stipends stipend nom +stipes stipe nom +stipple stipple nom +stippled stipple ver +stipples stipple nom +stippling stipple ver +stipplings stippling nom +stipulate stipulate ver +stipulated stipulate ver +stipulates stipulate ver +stipulating stipulate ver +stipulation stipulation nom +stipulations stipulation nom +stir stir nom +stirk stirk nom +stirks stirk nom +stirred stir ver +stirrer stirrer nom +stirrers stirrer nom +stirring stir ver +stirrings stirring nom +stirrup stirrup nom +stirrups stirrup nom +stirs stir nom +stitch stitch nom +stitched stitch ver +stitcher stitcher nom +stitcheries stitchery nom +stitchers stitcher nom +stitchery stitchery nom +stitches stitch nom +stitching stitch ver +stitchings stitching nom +stitchwort stitchwort nom +stitchworts stitchwort nom +stoat stoat nom +stoats stoat nom +stock stock nom +stockade stockade nom +stockaded stockade ver +stockades stockade nom +stockading stockade ver +stockbreeder stockbreeder nom +stockbreeders stockbreeder nom +stockbroker stockbroker nom +stockbrokers stockbroker nom +stockbroking stockbroking nom +stockbrokings stockbroking nom +stockcar stockcar nom +stockcars stockcar nom +stocked stock ver +stocker stocker nom +stockers stocker nom +stockfish stockfish nom +stockholder stockholder nom +stockholders stockholder nom +stockholding stockholding nom +stockholdings stockholding nom +stockier stocky adj +stockiest stocky adj +stockiness stockiness nom +stockinesses stockiness nom +stockinet stockinet nom +stockinets stockinet nom +stockinette stockinette nom +stockinettes stockinette nom +stocking stock ver +stockings stocking nom +stockist stockist nom +stockists stockist nom +stockjobber stockjobber nom +stockjobbers stockjobber nom +stockman stockman nom +stockmen stockman nom +stockpile stockpile nom +stockpiled stockpile ver +stockpiles stockpile nom +stockpiling stockpile ver +stockpilings stockpiling nom +stockpot stockpot nom +stockpots stockpot nom +stockroom stockroom nom +stockrooms stockroom nom +stocks stock nom +stocktaking stocktaking nom +stocktakings stocktaking nom +stocky stocky adj +stockyard stockyard nom +stockyards stockyard nom +stodge stodge nom +stodges stodge nom +stodgier stodgy adj +stodgiest stodgy adj +stodginess stodginess nom +stodginesses stodginess nom +stodgy stodgy adj +stoep stoep nom +stoeps stoep nom +stogie stogie nom +stogies stogie nom +stogy stogy nom +stoic stoic nom +stoicism stoicism nom +stoicisms stoicism nom +stoics stoic nom +stoke stoke ver +stoked stoke ver +stokehold stokehold nom +stokeholds stokehold nom +stokehole stokehole nom +stokeholes stokehole nom +stoker stoker nom +stokers stoker nom +stokes stoke ver +stoking stoke ver +stole steal ver +stolen steal ver +stoles stole nom +stolid stolid adj +stolider stolid adj +stolidest stolid adj +stolidities stolidity nom +stolidity stolidity nom +stolidness stolidness nom +stolidnesses stolidness nom +stolon stolon nom +stolons stolon nom +stoma stoma nom +stomach stomach nom +stomachache stomachache nom +stomachaches stomachache nom +stomached stomach ver +stomacher stomacher nom +stomachers stomacher nom +stomaching stomach ver +stomachs stomach nom +stomas stoma nom +stomatitis stomatitis nom +stomatitises stomatitis nom +stomatopod stomatopod nom +stomatopods stomatopod nom +stomp stomp nom +stomped stomp ver +stomping stomp ver +stomps stomp nom +stone stone nom +stonechat stonechat nom +stonechats stonechat nom +stonecrop stonecrop nom +stonecrops stonecrop nom +stonecutter stonecutter nom +stonecutters stonecutter nom +stoned stone ver +stonefish stonefish nom +stoneflies stonefly nom +stonefly stonefly nom +stonemason stonemason nom +stonemasons stonemason nom +stones stone nom +stonewall stonewall ver +stonewalled stonewall ver +stonewaller stonewaller nom +stonewallers stonewaller nom +stonewalling stonewall ver +stonewallings stonewalling nom +stonewalls stonewall ver +stoneware stoneware nom +stonewares stoneware nom +stonewash stonewash ver +stonewashed stonewash ver +stonewashes stonewash ver +stonewashing stonewash ver +stonework stonework nom +stoneworks stonework nom +stonewort stonewort nom +stoneworts stonewort nom +stoney stoney adj +stonier stoney adj +stoniest stoney adj +stoniness stoniness nom +stoninesses stoniness nom +stoning stone ver +stony stony adj +stood stand ver +stooge stooge nom +stooged stooge ver +stooges stooge nom +stooging stooge ver +stool stool nom +stooled stool ver +stoolie stoolie nom +stoolies stoolie nom +stooling stool ver +stools stool nom +stoop stoop nom +stooped stoop ver +stooping stoop ver +stoops stoop nom +stop stop nom +stopcock stopcock nom +stopcocks stopcock nom +stopgap stopgap nom +stopgaps stopgap nom +stoplight stoplight nom +stoplights stoplight nom +stopover stopover nom +stopovers stopover nom +stoppage stoppage nom +stoppages stoppage nom +stopped stop ver +stopper stopper nom +stoppered stopper ver +stoppering stopper ver +stoppers stopper nom +stopping stop ver +stoppings stopping nom +stopple stopple nom +stoppled stopple ver +stopples stopple nom +stoppling stopple ver +stops stop nom +stopwatch stopwatch nom +stopwatches stopwatch nom +storage storage nom +storages storage nom +storax storax nom +storaxes storax nom +store store nom +stored store ver +storefront storefront nom +storefronts storefront nom +storehouse storehouse nom +storehouses storehouse nom +storekeeper storekeeper nom +storekeepers storekeeper nom +storeroom storeroom nom +storerooms storeroom nom +stores store nom +storey storey nom +storeys storey nom +storied story ver +stories story nom +storing store ver +stork stork nom +storks stork nom +storksbill storksbill nom +storksbills storksbill nom +storm storm nom +stormed storm ver +stormier stormy adj +stormiest stormy adj +storminess storminess nom +storminesses storminess nom +storming storm ver +storms storm nom +stormy stormy adj +story story nom +storyboard storyboard nom +storyboards storyboard nom +storybook storybook nom +storybooks storybook nom +storying story ver +storyteller storyteller nom +storytellers storyteller nom +storytelling storytelling nom +storytellings storytelling nom +stoup stoup nom +stoups stoup nom +stout stout adj +stouter stout adj +stoutest stout adj +stoutheartedness stoutheartedness nom +stoutheartednesses stoutheartedness nom +stoutness stoutness nom +stoutnesses stoutness nom +stouts stout nom +stove stove nom +stoved stove ver +stovepipe stovepipe nom +stovepipes stovepipe nom +stover stover nom +stovers stover nom +stoves stove nom +stoving stove ver +stow stow ver +stowage stowage nom +stowages stowage nom +stowaway stowaway nom +stowaways stowaway nom +stowed stow ver +stowing stow ver +stowings stowing nom +stows stow ver +strabismus strabismus nom +strabismuses strabismus nom +strabotomies strabotomy nom +strabotomy strabotomy nom +straddle straddle nom +straddled straddle ver +straddler straddler nom +straddlers straddler nom +straddles straddle nom +straddling straddle ver +strafe strafe nom +strafed strafe ver +strafes strafe nom +strafing strafe ver +straggle straggle nom +straggled straggle ver +straggler straggler nom +stragglers straggler nom +straggles straggle nom +stragglier straggly adj +straggliest straggly adj +straggling straggle ver +straggly straggly adj +straight straight adj +straightaway straightaway nom +straightaways straightaway nom +straightedge straightedge nom +straightedges straightedge nom +straighten straighten ver +straightened straighten ver +straightener straightener nom +straighteners straightener nom +straightening straighten ver +straightens straighten ver +straighter straight adj +straightest straight adj +straightforwardness straightforwardness nom +straightforwardnesses straightforwardness nom +straightjacket straightjacket nom +straightjacketed straightjacket ver +straightjacketing straightjacket ver +straightjackets straightjacket nom +straightness straightness nom +straightnesses straightness nom +straights straight nom +strain strain nom +strained strain ver +strainer strainer nom +strainers strainer nom +straining strain ver +strainings straining nom +strains strain nom +strait strait adj +straiten straiten ver +straitened straiten ver +straitening straiten ver +straitens straiten ver +straiter strait adj +straitest strait adj +straitjacket straitjacket nom +straitjacketed straitjacket ver +straitjacketing straitjacket ver +straitjackets straitjacket nom +straits strait nom +strake strake nom +strakes strake nom +strand strand nom +stranded strand ver +stranding strand ver +strands strand nom +strange strange adj +strangeness strangeness nom +strangenesses strangeness nom +stranger strange adj +strangers stranger nom +strangest strange adj +strangle strangle ver +strangled strangle ver +stranglehold stranglehold nom +strangleholds stranglehold nom +strangler strangler nom +stranglers strangler nom +strangles strangle ver +strangling strangle ver +strangulate strangulate ver +strangulated strangulate ver +strangulates strangulate ver +strangulating strangulate ver +strangulation strangulation nom +strangulations strangulation nom +strap strap nom +straphanger straphanger nom +straphangers straphanger nom +strapless strapless nom +straplesses strapless nom +strapped strap ver +strapper strapper nom +strappers strapper nom +strapping strap ver +strappings strapping nom +straps strap nom +strata stratum nom +stratagem stratagem nom +stratagems stratagem nom +stratas strata nom +strategies strategy nom +strategist strategist nom +strategists strategist nom +strategy strategy nom +strati stratus nom +stratification stratification nom +stratifications stratification nom +stratified stratify ver +stratifies stratify ver +stratify stratify ver +stratifying stratify ver +stratosphere stratosphere nom +stratospheres stratosphere nom +stratum stratum nom +stratus stratus nom +straw straw nom +strawberries strawberry nom +strawberry strawberry nom +strawboard strawboard nom +strawboards strawboard nom +strawed straw ver +strawflower strawflower nom +strawflowers strawflower nom +strawing straw ver +straws straw nom +strawworm strawworm nom +strawworms strawworm nom +stray stray nom +strayed stray ver +straying stray ver +strays stray nom +streak streak nom +streaked streak ver +streaker streaker nom +streakers streaker nom +streakier streaky adj +streakiest streaky adj +streaking streak ver +streaks streak nom +streaky streaky adj +stream stream nom +streambed streambed nom +streambeds streambed nom +streamed stream ver +streamer streamer nom +streamers streamer nom +streaming stream ver +streamings streaming nom +streamlet streamlet nom +streamlets streamlet nom +streamline streamline nom +streamlined streamline ver +streamliner streamliner nom +streamliners streamliner nom +streamlines streamline nom +streamlining streamline ver +streams stream nom +street street nom +streetcar streetcar nom +streetcars streetcar nom +streetlight streetlight nom +streetlights streetlight nom +streets street nom +streetwalker streetwalker nom +streetwalkers streetwalker nom +strength strength nom +strengthen strengthen ver +strengthened strengthen ver +strengthener strengthener nom +strengtheners strengthener nom +strengthening strengthen ver +strengthens strengthen ver +strengths strength nom +strenuosities strenuosity nom +strenuosity strenuosity nom +strenuousness strenuousness nom +strenuousnesses strenuousness nom +strep strep nom +streps strep nom +streptobacilli streptobacillus nom +streptobacillus streptobacillus nom +streptocarpus streptocarpus nom +streptocarpuses streptocarpus nom +streptococci streptococcus nom +streptococcus streptococcus nom +streptodornase streptodornase nom +streptodornases streptodornase nom +streptokinase streptokinase nom +streptokinases streptokinase nom +streptolysin streptolysin nom +streptolysins streptolysin nom +streptomycin streptomycin nom +streptomycins streptomycin nom +streptothricin streptothricin nom +streptothricins streptothricin nom +stress stress nom +stressed stress ver +stresses stress nom +stressing stress ver +stretch stretch nom +stretchabilities stretchability nom +stretchability stretchability nom +stretched stretch ver +stretcher stretcher nom +stretchered stretcher ver +stretchering stretcher ver +stretchers stretcher nom +stretches stretch nom +stretchier stretchy adj +stretchiest stretchy adj +stretchiness stretchiness nom +stretchinesses stretchiness nom +stretching stretch ver +stretchy stretchy adj +strew strew ver +strewed strew ver +strewing strew ver +strewings strewing nom +strews strew ver +stria stria nom +striae stria nom +striate striate ver +striated striate ver +striates striate ver +striating striate ver +striation striation nom +striations striation nom +strickle strickle ver +strickled strickle ver +strickles strickle ver +strickling strickle ver +strict strict adj +stricter strict adj +strictest strict adj +strictness strictness nom +strictnesses strictness nom +stricture stricture nom +strictures stricture nom +stridden stride ver +stride stride nom +stridence stridence nom +stridences stridence nom +stridencies stridency nom +stridency stridency nom +strides stride nom +striding stride ver +stridor stridor nom +stridors stridor nom +stridulate stridulate ver +stridulated stridulate ver +stridulates stridulate ver +stridulating stridulate ver +stridulation stridulation nom +stridulations stridulation nom +strife strife nom +strifes strife nom +strike strike nom +strikebreaker strikebreaker nom +strikebreakers strikebreaker nom +strikebreaking strikebreaking nom +strikebreakings strikebreaking nom +strikeout strikeout nom +strikeouts strikeout nom +striker striker nom +strikers striker nom +strikes strike nom +striking strike ver +strikingness strikingness nom +strikingnesses strikingness nom +strikings striking nom +string string nom +stringencies stringency nom +stringency stringency nom +stringer stringer nom +stringers stringer nom +stringier stringy adj +stringiest stringy adj +stringiness stringiness nom +stringinesses stringiness nom +stringing string ver +strings string nom +stringy stringy adj +stringybark stringybark nom +stringybarks stringybark nom +strip strip nom +stripe stripe nom +striped stripe ver +striper striper nom +stripers striper nom +stripes stripe nom +stripier stripy adj +stripiest stripy adj +striping stripe ver +stripings striping nom +stripling stripling nom +stripped strip ver +stripper stripper nom +strippers stripper nom +stripping strip ver +strippings stripping nom +strips strip nom +striptease striptease nom +stripteased striptease ver +stripteaser stripteaser nom +stripteasers stripteaser nom +stripteases striptease nom +stripteasing striptease ver +stripy stripy adj +strive strive ver +striven strive ver +striver striver nom +strivers striver nom +strives strive ver +striving strive ver +strivings striving nom +strobe strobe nom +strobes strobe nom +strobile strobile nom +strobiles strobile nom +strobili strobilus nom +strobilus strobilus nom +stroboscope stroboscope nom +stroboscopes stroboscope nom +strode stride ver +stroke stroke nom +stroked stroke ver +strokes stroke nom +stroking stroke ver +strokings stroking nom +stroll stroll nom +strolled stroll ver +stroller stroller nom +strollers stroller nom +strolling stroll ver +strolls stroll nom +stroma stroma nom +stromata stroma nom +strong strong adj +strongbox strongbox nom +strongboxes strongbox nom +stronger strong adj +strongest strong adj +stronghold stronghold nom +strongholds stronghold nom +strongman strongman nom +strongmen strongman nom +strongroom strongroom nom +strongrooms strongroom nom +strontianite strontianite nom +strontianites strontianite nom +strontium strontium nom +strontiums strontium nom +strop strop nom +strophanthus strophanthus nom +strophanthuses strophanthus nom +strophe strophe nom +strophes strophe nom +stropped strop ver +stroppier stroppy adj +stroppiest stroppy adj +stropping strop ver +stroppy stroppy adj +strops strop nom +strove strive ver +struck strike ver +structuralism structuralism nom +structuralisms structuralism nom +structure structure nom +structured structure ver +structures structure nom +structuring structure ver +strudel strudel nom +strudels strudel nom +struggle struggle nom +struggled struggle ver +struggles struggle nom +struggling struggle ver +strum strum nom +struma struma nom +strumas struma nom +strummed strum ver +strumming strum ver +strumpet strumpet nom +strumpets strumpet nom +strums strum nom +strung string ver +strut strut nom +struts strut nom +strutted strut ver +strutting strut ver +strychnine strychnine nom +strychnines strychnine nom +stub stub nom +stubbed stub ver +stubbier stubby adj +stubbiest stubby adj +stubbiness stubbiness nom +stubbinesses stubbiness nom +stubbing stub ver +stubble stubble nom +stubbles stubble nom +stubblier stubbly adj +stubbliest stubbly adj +stubbly stubbly adj +stubborn stubborn adj +stubborner stubborn adj +stubbornest stubborn adj +stubbornness stubbornness nom +stubbornnesses stubbornness nom +stubby stubby adj +stubs stub nom +stucco stucco nom +stuccoed stucco ver +stuccoes stucco nom +stuccoing stucco ver +stuck stick ver +stud stud nom +studbook studbook nom +studbooks studbook nom +studded stud ver +studding stud ver +studdings studding nom +student student nom +students student nom +studentship studentship nom +studentships studentship nom +studhorse studhorse nom +studhorses studhorse nom +studied study ver +studies study nom +studio studio nom +studios studio nom +studiousness studiousness nom +studiousnesses studiousness nom +studs stud nom +study study nom +studying study ver +stuff stuff nom +stuffed stuff ver +stuffier stuffy adj +stuffiest stuffy adj +stuffiness stuffiness nom +stuffinesses stuffiness nom +stuffing stuff ver +stuffings stuffing nom +stuffs stuff nom +stuffy stuffy adj +stultification stultification nom +stultifications stultification nom +stultified stultify ver +stultifies stultify ver +stultify stultify ver +stultifying stultify ver +stumble stumble nom +stumblebum stumblebum nom +stumblebums stumblebum nom +stumbled stumble ver +stumbler stumbler nom +stumblers stumbler nom +stumbles stumble nom +stumbling stumble ver +stump stump nom +stumped stump ver +stumper stumper nom +stumpers stumper nom +stumpier stumpy adj +stumpiest stumpy adj +stumping stump ver +stumps stump nom +stumpy stumpy adj +stun stun nom +stung sting ver +stunk stink ver +stunned stun ver +stunner stunner nom +stunners stunner nom +stunning stun ver +stuns stun nom +stunt stunt nom +stunted stunt ver +stuntedness stuntedness nom +stuntednesses stuntedness nom +stunting stunt ver +stunts stunt nom +stupefaction stupefaction nom +stupefactions stupefaction nom +stupefied stupefy ver +stupefies stupefy ver +stupefy stupefy ver +stupefying stupefy ver +stupid stupid adj +stupider stupid adj +stupidest stupid adj +stupidities stupidity nom +stupidity stupidity nom +stupids stupid nom +stupor stupor nom +stupors stupor nom +sturdier sturdy adj +sturdies sturdy nom +sturdiest sturdy adj +sturdiness sturdiness nom +sturdinesses sturdiness nom +sturdy sturdy adj +sturgeon sturgeon nom +stutter stutter nom +stuttered stutter ver +stutterer stutterer nom +stutterers stutterer nom +stuttering stutter ver +stutters stutter nom +sty sty nom +stye stye nom +styes stye nom +stying sty ver +style style nom +styled style ver +styles style nom +stylet stylet nom +stylets stylet nom +styling style ver +stylisation stylisation nom +stylisations stylisation nom +stylishness stylishness nom +stylishnesses stylishness nom +stylist stylist nom +stylists stylist nom +stylite stylite nom +stylites stylite nom +stylization stylization nom +stylizations stylization nom +stylize stylize ver +stylized stylize ver +stylizes stylize ver +stylizing stylize ver +stylus stylus nom +styluses stylus nom +stymie stymie nom +stymied stymie ver +stymieing stymie ver +stymies stymie nom +stymy stymy nom +stymying stymy ver +stypsis stypsis nom +stypsises stypsis nom +styptic styptic nom +styptics styptic nom +styrax styrax nom +styraxes styrax nom +styrene styrene nom +styrenes styrene nom +suasion suasion nom +suasions suasion nom +suave suave adj +suaveness suaveness nom +suavenesses suaveness nom +suaver suave adj +suavest suave adj +suavities suavity nom +suavity suavity nom +sub sub sw +subaltern subaltern nom +subalterns subaltern nom +subbase subbase nom +subbasement subbasement nom +subbasements subbasement nom +subbases subbase nom +subbed sub ver +subbing sub ver +subbings subbing nom +subbranch subbranch nom +subbranches subbranch nom +subcategories subcategory nom +subcategory subcategory nom +subclass subclass nom +subclasses subclass nom +subcommittee subcommittee nom +subcommittees subcommittee nom +subcompact subcompact nom +subcompacts subcompact nom +subconscious subconscious nom +subconsciouses subconscious nom +subconsciousness subconsciousness nom +subconsciousnesses subconsciousness nom +subcontinent subcontinent nom +subcontinents subcontinent nom +subcontract subcontract nom +subcontracted subcontract ver +subcontracting subcontract ver +subcontractor subcontractor nom +subcontractors subcontractor nom +subcontracts subcontract nom +subculture subculture nom +subcultured subculture ver +subcultures subculture nom +subculturing subculture ver +subdirectories subdirectory nom +subdirectory subdirectory nom +subdivide subdivide ver +subdivided subdivide ver +subdivides subdivide ver +subdividing subdivide ver +subdivision subdivision nom +subdivisions subdivision nom +subdominant subdominant nom +subdominants subdominant nom +subdue subdue ver +subdued subdue ver +subdues subdue ver +subduing subdue ver +subedit subedit ver +subedited subedit ver +subediting subedit ver +subeditor subeditor nom +subeditors subeditor nom +subedits subedit ver +subfamilies subfamily nom +subfamily subfamily nom +subgenera subgenus nom +subgenus subgenus nom +subgroup subgroup nom +subgroups subgroup nom +subhead subhead nom +subheading subheading nom +subheadings subheading nom +subheads subhead nom +subhuman subhuman nom +subhumans subhuman nom +subject subject nom +subjected subject ver +subjecting subject ver +subjection subjection nom +subjections subjection nom +subjectiveness subjectiveness nom +subjectivenesses subjectiveness nom +subjectivism subjectivism nom +subjectivisms subjectivism nom +subjectivist subjectivist nom +subjectivists subjectivist nom +subjectivities subjectivity nom +subjectivity subjectivity nom +subjects subject nom +subjoin subjoin ver +subjoined subjoin ver +subjoining subjoin ver +subjoins subjoin ver +subjugate subjugate ver +subjugated subjugate ver +subjugates subjugate ver +subjugating subjugate ver +subjugation subjugation nom +subjugations subjugation nom +subjunction subjunction nom +subjunctions subjunction nom +subjunctive subjunctive nom +subjunctives subjunctive nom +subkingdom subkingdom nom +subkingdoms subkingdom nom +sublease sublease nom +subleased sublease ver +subleases sublease nom +subleasing sublease ver +sublet sublet ver +sublets sublet nom +subletting sublet ver +sublieutenant sublieutenant nom +sublieutenants sublieutenant nom +sublimate sublimate nom +sublimated sublimate ver +sublimates sublimate nom +sublimating sublimate ver +sublimation sublimation nom +sublimations sublimation nom +sublime sublime adj +sublimed sublime ver +sublimer sublime adj +sublimes sublime ver +sublimest sublime adj +subliming sublime ver +sublimities sublimity nom +sublimity sublimity nom +subluxation subluxation nom +subluxations subluxation nom +submarine submarine nom +submarined submarine ver +submariner submariner nom +submariners submariner nom +submarines submarine nom +submarining submarine ver +submaxilla submaxilla nom +submaxillae submaxilla nom +submediant submediant nom +submediants submediant nom +submenu submenu nom +submenus submenu nom +submerge submerge ver +submerged submerge ver +submergence submergence nom +submergences submergence nom +submerges submerge ver +submerging submerge ver +submerse submerse ver +submersed submerse ver +submerses submerse ver +submersible submersible nom +submersibles submersible nom +submersing submerse ver +submersion submersion nom +submersions submersion nom +submission submission nom +submissions submission nom +submissiveness submissiveness nom +submissivenesses submissiveness nom +submit submit ver +submits submit ver +submitted submit ver +submitting submit ver +submucosa submucosa nom +submucosas submucosa nom +subnormal subnormal nom +subnormalities subnormality nom +subnormality subnormality nom +subnormals subnormal nom +suborder suborder nom +suborders suborder nom +subordinate subordinate nom +subordinated subordinate ver +subordinateness subordinateness nom +subordinatenesses subordinateness nom +subordinates subordinate nom +subordinating subordinate ver +subordination subordination nom +subordinations subordination nom +suborn suborn ver +subornation subornation nom +subornations subornation nom +suborned suborn ver +suborner suborner nom +suborners suborner nom +suborning suborn ver +suborns suborn ver +subpart subpart nom +subparts subpart nom +subpena subpena nom +subpenaed subpena ver +subpenaing subpena ver +subpenas subpena nom +subphyla subphylum nom +subphylum subphylum nom +subplot subplot nom +subplots subplot nom +subpoena subpoena nom +subpoenaed subpoena ver +subpoenaing subpoena ver +subpoenas subpoena nom +subpopulation subpopulation nom +subpopulations subpopulation nom +subprofessional subprofessional nom +subprofessionals subprofessional nom +subprogram subprogram nom +subprograms subprogram nom +subroutine subroutine nom +subroutines subroutine nom +subs sub nom +subscribe subscribe ver +subscribed subscribe ver +subscriber subscriber nom +subscribers subscriber nom +subscribes subscribe ver +subscribing subscribe ver +subscript subscript nom +subscription subscription nom +subscriptions subscription nom +subscripts subscript nom +subsection subsection nom +subsections subsection nom +subsequence subsequence nom +subsequences subsequence nom +subserve subserve ver +subserved subserve ver +subserves subserve ver +subservience subservience nom +subserviences subservience nom +subserving subserve ver +subset subset nom +subsets subset nom +subshrub subshrub nom +subshrubs subshrub nom +subside subside ver +subsided subside ver +subsidence subsidence nom +subsidences subsidence nom +subsides subside ver +subsidiaries subsidiary nom +subsidiarities subsidiarity nom +subsidiarity subsidiarity nom +subsidiary subsidiary nom +subsidies subsidy nom +subsiding subside ver +subsidisation subsidisation nom +subsidisations subsidisation nom +subsidization subsidization nom +subsidizations subsidization nom +subsidize subsidize ver +subsidized subsidize ver +subsidizer subsidizer nom +subsidizers subsidizer nom +subsidizes subsidize ver +subsidizing subsidize ver +subsidy subsidy nom +subsist subsist ver +subsisted subsist ver +subsistence subsistence nom +subsistences subsistence nom +subsisting subsist ver +subsists subsist ver +subsoil subsoil nom +subsoils subsoil nom +subspace subspace nom +subspaces subspace nom +subspecies subspecies nom +substance substance nom +substances substance nom +substantial substantial nom +substantialities substantiality nom +substantiality substantiality nom +substantialness substantialness nom +substantialnesses substantialness nom +substantials substantial nom +substantiate substantiate ver +substantiated substantiate ver +substantiates substantiate ver +substantiating substantiate ver +substantiation substantiation nom +substantiations substantiation nom +substantive substantive nom +substantives substantive nom +substation substation nom +substations substation nom +substitutabilities substitutability nom +substitutability substitutability nom +substitute substitute nom +substituted substitute ver +substitutes substitute nom +substituting substitute ver +substitution substitution nom +substitutions substitution nom +substrata substratum nom +substrate substrate nom +substrates substrate nom +substratum substratum nom +substructure substructure nom +substructures substructure nom +subsume subsume ver +subsumed subsume ver +subsumes subsume ver +subsuming subsume ver +subsumption subsumption nom +subsumptions subsumption nom +subsurface subsurface nom +subsurfaces subsurface nom +subsystem subsystem nom +subsystems subsystem nom +subteen subteen nom +subteens subteen nom +subtenancies subtenancy nom +subtenancy subtenancy nom +subtenant subtenant nom +subtenants subtenant nom +subtend subtend ver +subtended subtend ver +subtending subtend ver +subtends subtend ver +subterfuge subterfuge nom +subterfuges subterfuge nom +subterranean subterranean nom +subterraneans subterranean nom +subtext subtext nom +subtexts subtext nom +subtilin subtilin nom +subtilins subtilin nom +subtilize subtilize ver +subtilized subtilize ver +subtilizes subtilize ver +subtilizing subtilize ver +subtitle subtitle nom +subtitled subtitle ver +subtitles subtitle nom +subtitling subtitle ver +subtle subtle adj +subtler subtle adj +subtlest subtle adj +subtleties subtlety nom +subtlety subtlety nom +subtonic subtonic nom +subtonics subtonic nom +subtopia subtopia nom +subtopias subtopia nom +subtopic subtopic nom +subtopics subtopic nom +subtotal subtotal nom +subtotaled subtotal ver +subtotaling subtotal ver +subtotals subtotal nom +subtract subtract ver +subtracted subtract ver +subtracting subtract ver +subtraction subtraction nom +subtractions subtraction nom +subtracts subtract ver +subtrahend subtrahend nom +subtrahends subtrahend nom +subtreasuries subtreasury nom +subtreasury subtreasury nom +subunit subunit nom +subunits subunit nom +suburb suburb nom +suburban suburban nom +suburbanite suburbanite nom +suburbanites suburbanite nom +suburbanize suburbanize ver +suburbanized suburbanize ver +suburbanizes suburbanize ver +suburbanizing suburbanize ver +suburbans suburban nom +suburbia suburbia nom +suburbias suburbia nom +suburbs suburb nom +subvention subvention nom +subventions subvention nom +subversion subversion nom +subversions subversion nom +subversive subversive nom +subversiveness subversiveness nom +subversivenesses subversiveness nom +subversives subversive nom +subvert subvert ver +subverted subvert ver +subverter subverter nom +subverters subverter nom +subverting subvert ver +subverts subvert ver +subway subway nom +subwayed subway ver +subwaying subway ver +subways subway nom +succeed succeed ver +succeeded succeed ver +succeeding succeed ver +succeeds succeed ver +success success nom +successes success nom +successfulness successfulness nom +successfulnesses successfulness nom +succession succession nom +successions succession nom +successiveness successiveness nom +successivenesses successiveness nom +successor successor nom +successors successor nom +succinct succinct adj +succincter succinct adj +succinctest succinct adj +succinctness succinctness nom +succinctnesses succinctness nom +succinylcholine succinylcholine nom +succinylcholines succinylcholine nom +succor succor nom +succored succor ver +succories succory nom +succoring succor ver +succors succor nom +succory succory nom +succotash succotash nom +succotashes succotash nom +succour succour nom +succoured succour ver +succouring succour ver +succours succour nom +succuba succuba nom +succubas succuba nom +succubus succubus nom +succubuses succubus nom +succulence succulence nom +succulences succulence nom +succulencies succulency nom +succulency succulency nom +succulent succulent nom +succulents succulent nom +succumb succumb ver +succumbed succumb ver +succumbing succumb ver +succumbs succumb ver +succus succus nom +succusses succus nom +succussion succussion nom +succussions succussion nom +such such sw +suck suck nom +sucked suck ver +sucker sucker nom +suckered sucker ver +suckerfish suckerfish nom +suckering sucker ver +suckers sucker nom +sucking suck ver +suckings sucking nom +suckle suckle ver +suckled suckle ver +suckles suckle ver +suckling suckle ver +sucks suck nom +sucre sucre nom +sucres sucre nom +sucrose sucrose nom +sucroses sucrose nom +suction suction nom +suctioned suction ver +suctioning suction ver +suctions suction nom +sudden sudden nom +suddenness suddenness nom +suddennesses suddenness nom +suddens sudden nom +sudor sudor nom +sudors sudor nom +suds suds nom +sudsed suds ver +sudses suds nom +sudsier sudsy adj +sudsiest sudsy adj +sudsing suds ver +sudsy sudsy adj +sue sue ver +sued sue ver +suede suede nom +sueded suede ver +suedes suede nom +sueding suede ver +sues sue ver +suet suet nom +suetier suety adj +suetiest suety adj +suets suet nom +suety suety adj +suffer suffer ver +sufferance sufferance nom +sufferances sufferance nom +suffered suffer ver +sufferer sufferer nom +sufferers sufferer nom +suffering suffer ver +sufferings suffering nom +suffers suffer ver +suffice suffice ver +sufficed suffice ver +suffices suffice ver +sufficiencies sufficiency nom +sufficiency sufficiency nom +sufficing suffice ver +suffix suffix nom +suffixation suffixation nom +suffixations suffixation nom +suffixed suffix ver +suffixes suffix nom +suffixing suffix ver +suffocate suffocate ver +suffocated suffocate ver +suffocates suffocate ver +suffocating suffocate ver +suffocation suffocation nom +suffocations suffocation nom +suffragan suffragan nom +suffragans suffragan nom +suffrage suffrage nom +suffrages suffrage nom +suffragette suffragette nom +suffragettes suffragette nom +suffragist suffragist nom +suffragists suffragist nom +suffuse suffuse ver +suffused suffuse ver +suffuses suffuse ver +suffusing suffuse ver +suffusion suffusion nom +suffusions suffusion nom +sugar sugar nom +sugarberries sugarberry nom +sugarberry sugarberry nom +sugarcane sugarcane nom +sugarcanes sugarcane nom +sugarcoat sugarcoat ver +sugarcoated sugarcoat ver +sugarcoating sugarcoat ver +sugarcoats sugarcoat ver +sugared sugar ver +sugarier sugary adj +sugariest sugary adj +sugariness sugariness nom +sugarinesses sugariness nom +sugaring sugar ver +sugarloaf sugarloaf nom +sugarloaves sugarloaf nom +sugarplum sugarplum nom +sugarplums sugarplum nom +sugars sugar nom +sugary sugary adj +suggest suggest ver +suggested suggest ver +suggestibilities suggestibility nom +suggestibility suggestibility nom +suggesting suggest ver +suggestion suggestion nom +suggestions suggestion nom +suggestiveness suggestiveness nom +suggestivenesses suggestiveness nom +suggests suggest ver +suicide suicide nom +suicided suicide ver +suicides suicide nom +suiciding suicide ver +suing sue ver +suit suit nom +suitabilities suitability nom +suitability suitability nom +suitableness suitableness nom +suitablenesses suitableness nom +suitcase suitcase nom +suitcases suitcase nom +suite suite nom +suited suit ver +suites suite nom +suiting suit ver +suitings suiting nom +suitor suitor nom +suitors suitor nom +suits suit nom +sukiyaki sukiyaki nom +sukiyakis sukiyaki nom +sulci sulcus nom +sulcus sulcus nom +sulfa sulfa nom +sulfadiazine sulfadiazine nom +sulfadiazines sulfadiazine nom +sulfanilamide sulfanilamide nom +sulfanilamides sulfanilamide nom +sulfas sulfa nom +sulfate sulfate nom +sulfated sulfate ver +sulfates sulfate nom +sulfating sulfate ver +sulfide sulfide nom +sulfides sulfide nom +sulfonamide sulfonamide nom +sulfonamides sulfonamide nom +sulfonate sulfonate nom +sulfonates sulfonate nom +sulfonylurea sulfonylurea nom +sulfonylureas sulfonylurea nom +sulfur sulfur nom +sulfured sulfur ver +sulfuring sulfur ver +sulfurs sulfur nom +sulk sulk nom +sulked sulk ver +sulkier sulky adj +sulkies sulky nom +sulkiest sulky adj +sulkiness sulkiness nom +sulkinesses sulkiness nom +sulking sulk ver +sulks sulk nom +sulky sulky adj +sullen sullen adj +sullener sullen adj +sullenest sullen adj +sullenness sullenness nom +sullennesses sullenness nom +sullied sully ver +sullies sully nom +sully sully nom +sullying sully ver +sulpha sulpha nom +sulphas sulpha nom +sulphate sulphate nom +sulphates sulphate nom +sulphide sulphide nom +sulphides sulphide nom +sulphur sulphur nom +sulphured sulphur ver +sulphuring sulphur ver +sulphurs sulphur nom +sultan sultan nom +sultana sultana nom +sultanas sultana nom +sultanate sultanate nom +sultanates sultanate nom +sultans sultan nom +sultrier sultry adj +sultriest sultry adj +sultriness sultriness nom +sultrinesses sultriness nom +sultry sultry adj +sum sum nom +sumac sumac nom +sumach sumach nom +sumachs sumach nom +sumacs sumac nom +summaries summary nom +summarization summarization nom +summarizations summarization nom +summarize summarize ver +summarized summarize ver +summarizes summarize ver +summarizing summarize ver +summary summary nom +summate summate ver +summated summate ver +summates summate ver +summating summate ver +summation summation nom +summations summation nom +summed sum ver +summer summer nom +summered summer ver +summerhouse summerhouse nom +summerhouses summerhouse nom +summerier summery adj +summeriest summery adj +summering summer ver +summers summer nom +summertime summertime nom +summertimes summertime nom +summery summery adj +summing sum ver +summit summit nom +summited summit ver +summiting summit ver +summitries summitry nom +summitry summitry nom +summits summit nom +summon summon ver +summoned summon ver +summoner summoner nom +summoners summoner nom +summoning summon ver +summons summon ver +summonsed summons ver +summonses summons nom +summonsing summons ver +sumo sumo nom +sumos sumo nom +sump sump nom +sumps sump nom +sumpter sumpter nom +sumpters sumpter nom +sumptuousness sumptuousness nom +sumptuousnesses sumptuousness nom +sums sum nom +sun sun nom +sunbath sunbath nom +sunbathe sunbathe ver +sunbathed sunbathe ver +sunbather sunbather nom +sunbathers sunbather nom +sunbathes sunbathe ver +sunbathing sunbathe ver +sunbathings sunbathing nom +sunbaths sunbath nom +sunbeam sunbeam nom +sunbeams sunbeam nom +sunblind sunblind nom +sunblinds sunblind nom +sunblock sunblock nom +sunblocks sunblock nom +sunbonnet sunbonnet nom +sunbonnets sunbonnet nom +sunburn sunburn nom +sunburned sunburn ver +sunburning sunburn ver +sunburns sunburn nom +sunburst sunburst nom +sunbursts sunburst nom +sunchoke sunchoke nom +sunchokes sunchoke nom +sundae sundae nom +sundaes sundae nom +sunder sunder ver +sundered sunder ver +sundering sunder ver +sunders sunder ver +sundew sundew nom +sundews sundew nom +sundial sundial nom +sundials sundial nom +sundog sundog nom +sundogs sundog nom +sundown sundown nom +sundowned sundown ver +sundowner sundowner nom +sundowners sundowner nom +sundowning sundown ver +sundowns sundown nom +sundries sundry nom +sundry sundry nom +sunfish sunfish nom +sunflower sunflower nom +sunflowers sunflower nom +sung sing ver +sunhat sunhat nom +sunhats sunhat nom +sunk sink ver +sunlamp sunlamp nom +sunlamps sunlamp nom +sunlight sunlight nom +sunlights sunlight nom +sunned sun ver +sunnier sunny adj +sunniest sunny adj +sunniness sunniness nom +sunninesses sunniness nom +sunning sun ver +sunny sunny adj +sunray sunray nom +sunrays sunray nom +sunrise sunrise nom +sunrises sunrise nom +sunroof sunroof nom +sunroofs sunroof nom +sunroom sunroom nom +sunrooms sunroom nom +suns sun nom +sunscreen sunscreen nom +sunscreens sunscreen nom +sunset sunset nom +sunsets sunset nom +sunshade sunshade nom +sunshades sunshade nom +sunshine sunshine nom +sunshines sunshine nom +sunspot sunspot nom +sunspots sunspot nom +sunstone sunstone nom +sunstones sunstone nom +sunstroke sunstroke nom +sunstrokes sunstroke nom +sunsuit sunsuit nom +sunsuits sunsuit nom +suntan suntan nom +suntanned suntan ver +suntanning suntan ver +suntans suntan nom +suntrap suntrap nom +suntraps suntrap nom +sunup sunup nom +sunups sunup nom +sup sup sw +super super nom +superabundance superabundance nom +superabundances superabundance nom +superannuate superannuate ver +superannuated superannuate ver +superannuates superannuate ver +superannuating superannuate ver +superannuation superannuation nom +superannuations superannuation nom +superb superb adj +superber superb adj +superbest superb adj +superbug superbug nom +superbugs superbug nom +supercargo supercargo nom +supercargoes supercargo nom +supercharge supercharge ver +supercharged supercharge ver +supercharger supercharger nom +superchargers supercharger nom +supercharges supercharge ver +supercharging supercharge ver +superciliousness superciliousness nom +superciliousnesses superciliousness nom +supercities supercity nom +supercity supercity nom +superclass superclass nom +superclasses superclass nom +superconductivities superconductivity nom +superconductivity superconductivity nom +superconductor superconductor nom +superconductors superconductor nom +superego superego nom +superegos superego nom +supererogation supererogation nom +supererogations supererogation nom +superfamilies superfamily nom +superfamily superfamily nom +superfecta superfecta nom +superfectas superfecta nom +superfecundation superfecundation nom +superfecundations superfecundation nom +superfetation superfetation nom +superfetations superfetation nom +superficialities superficiality nom +superficiality superficiality nom +superfluities superfluity nom +superfluity superfluity nom +superfluousness superfluousness nom +superfluousnesses superfluousness nom +supergiant supergiant nom +supergiants supergiant nom +superhero superhero nom +superheroes superhero nom +superheros superhero nom +superhet superhet nom +superhets superhet nom +superhighway superhighway nom +superhighways superhighway nom +superhuman superhuman nom +superhumans superhuman nom +superimpose superimpose ver +superimposed superimpose ver +superimposes superimpose ver +superimposing superimpose ver +superimposition superimposition nom +superimpositions superimposition nom +superinfection superinfection nom +superinfections superinfection nom +superintend superintend ver +superintended superintend ver +superintendence superintendence nom +superintendences superintendence nom +superintendencies superintendency nom +superintendency superintendency nom +superintendent superintendent nom +superintendents superintendent nom +superintending superintend ver +superintends superintend ver +superior superior nom +superiorities superiority nom +superiority superiority nom +superiors superior nom +superlative superlative nom +superlatives superlative nom +superman superman nom +supermarket supermarket nom +supermarkets supermarket nom +supermen superman nom +supermom supermom nom +supermoms supermom nom +supernatant supernatant nom +supernatants supernatant nom +supernatural supernatural nom +supernaturalism supernaturalism nom +supernaturalisms supernaturalism nom +supernaturalness supernaturalness nom +supernaturalnesses supernaturalness nom +supernaturals supernatural nom +supernova supernova nom +supernovas supernova nom +supernumeraries supernumerary nom +supernumerary supernumerary nom +superorder superorder nom +superorders superorder nom +superordinate superordinate nom +superordinates superordinate nom +superpatriotism superpatriotism nom +superpatriotisms superpatriotism nom +superpose superpose ver +superposed superpose ver +superposes superpose ver +superposing superpose ver +superposition superposition nom +superpositions superposition nom +superpower superpower nom +superpowers superpower nom +supers super nom +supersaturate supersaturate ver +supersaturated supersaturate ver +supersaturates supersaturate ver +supersaturating supersaturate ver +supersaturation supersaturation nom +supersaturations supersaturation nom +superscribe superscribe ver +superscribed superscribe ver +superscribes superscribe ver +superscribing superscribe ver +superscript superscript nom +superscription superscription nom +superscriptions superscription nom +superscripts superscript nom +supersede supersede ver +superseded supersede ver +supersedes supersede ver +superseding supersede ver +supersedure supersedure nom +supersedures supersedure nom +supersession supersession nom +supersessions supersession nom +superstar superstar nom +superstars superstar nom +superstition superstition nom +superstitions superstition nom +superstore superstore nom +superstores superstore nom +superstring superstring nom +superstrings superstring nom +superstructure superstructure nom +superstructures superstructure nom +supersymmetries supersymmetry nom +supersymmetry supersymmetry nom +supertanker supertanker nom +supertankers supertanker nom +supertax supertax nom +supertaxes supertax nom +supertitle supertitle nom +supertitles supertitle nom +supertonic supertonic nom +supertonics supertonic nom +supervene supervene ver +supervened supervene ver +supervenes supervene ver +supervening supervene ver +supervention supervention nom +superventions supervention nom +supervise supervise ver +supervised supervise ver +supervises supervise ver +supervising supervise ver +supervision supervision nom +supervisions supervision nom +supervisor supervisor nom +supervisors supervisor nom +superwoman superwoman nom +superwomen superwoman nom +supinate supinate ver +supinated supinate ver +supinates supinate ver +supinating supinate ver +supination supination nom +supinations supination nom +supine supine nom +supines supine nom +supped sup ver +supper supper nom +suppered supper ver +suppering supper ver +suppers supper nom +suppertime suppertime nom +suppertimes suppertime nom +supping sup ver +supplant supplant ver +supplanted supplant ver +supplanter supplanter nom +supplanters supplanter nom +supplanting supplant ver +supplants supplant ver +supple supple adj +suppled supple ver +supplejack supplejack nom +supplejacks supplejack nom +supplement supplement nom +supplemental supplemental nom +supplementals supplemental nom +supplementaries supplementary nom +supplementary supplementary nom +supplementation supplementation nom +supplementations supplementation nom +supplemented supplement ver +supplementing supplement ver +supplements supplement nom +suppleness suppleness nom +supplenesses suppleness nom +suppler supple adj +supples supple ver +supplest supple adj +suppliant suppliant nom +suppliants suppliant nom +supplicant supplicant nom +supplicants supplicant nom +supplicate supplicate ver +supplicated supplicate ver +supplicates supplicate ver +supplicating supplicate ver +supplication supplication nom +supplications supplication nom +supplied supply ver +supplier supplier nom +suppliers supplier nom +supplies supply nom +suppling supple ver +supply supply nom +supplying supply ver +support support nom +supported support ver +supporter supporter nom +supporters supporter nom +supporting support ver +supportings supporting nom +supports support nom +supposal supposal nom +supposals supposal nom +suppose suppose ver +supposed suppose ver +supposes suppose ver +supposing suppose ver +supposition supposition nom +suppositions supposition nom +suppositories suppository nom +suppository suppository nom +suppress suppress ver +suppressant suppressant nom +suppressants suppressant nom +suppressed suppress ver +suppresser suppresser nom +suppressers suppresser nom +suppresses suppress ver +suppressing suppress ver +suppression suppression nom +suppressions suppression nom +suppressor suppressor nom +suppressors suppressor nom +suppurate suppurate ver +suppurated suppurate ver +suppurates suppurate ver +suppurating suppurate ver +suppuration suppuration nom +suppurations suppuration nom +supremacies supremacy nom +supremacist supremacist nom +supremacists supremacist nom +supremacy supremacy nom +supreme supreme adj +supremer supreme adj +supremes supreme nom +supremest supreme adj +sups sup nom +sura sura nom +suras sura nom +surbase surbase nom +surbases surbase nom +surcease surcease nom +surceased surcease ver +surceases surcease nom +surceasing surcease ver +surcharge surcharge nom +surcharged surcharge ver +surcharges surcharge nom +surcharging surcharge ver +surcingle surcingle nom +surcingles surcingle nom +surcoat surcoat nom +surcoats surcoat nom +surd surd nom +surds surd nom +sure sure sw +sureness sureness nom +surenesses sureness nom +surer sure adj +surest sure adj +sureties surety nom +surety surety nom +surf surf nom +surface surface nom +surfaced surface ver +surfaces surface nom +surfacing surface ver +surfacings surfacing nom +surfactant surfactant nom +surfactants surfactant nom +surfbird surfbird nom +surfbirds surfbird nom +surfboard surfboard nom +surfboarded surfboard ver +surfboarder surfboarder nom +surfboarders surfboarder nom +surfboarding surfboard ver +surfboardings surfboarding nom +surfboards surfboard nom +surfboat surfboat nom +surfboats surfboat nom +surfed surf ver +surfeit surfeit nom +surfeited surfeit ver +surfeiting surfeit ver +surfeits surfeit nom +surfer surfer nom +surfers surfer nom +surffish surffish nom +surfing surf ver +surfings surfing nom +surfperch surfperch nom +surfs surf nom +surge surge nom +surged surge ver +surgeon surgeon nom +surgeonfish surgeonfish nom +surgeons surgeon nom +surgeries surgery nom +surgery surgery nom +surges surge nom +surging surge ver +suricate suricate nom +suricates suricate nom +surlier surly adj +surliest surly adj +surliness surliness nom +surlinesses surliness nom +surly surly adj +surmise surmise nom +surmised surmise ver +surmises surmise nom +surmising surmise ver +surmount surmount ver +surmounted surmount ver +surmounting surmount ver +surmounts surmount ver +surmullet surmullet nom +surmullets surmullet nom +surname surname nom +surnamed surname ver +surnames surname nom +surnaming surname ver +surpass surpass ver +surpassed surpass ver +surpasses surpass ver +surpassing surpass ver +surplice surplice nom +surplices surplice nom +surplus surplus nom +surplusage surplusage nom +surplusages surplusage nom +surpluses surplus nom +surplussed surplus ver +surplussing surplus ver +surprint surprint nom +surprints surprint nom +surprisal surprisal nom +surprisals surprisal nom +surprise surprise nom +surprised surprise ver +surprises surprise nom +surprising surprise ver +surprisings surprising nom +surrealism surrealism nom +surrealisms surrealism nom +surrealist surrealist nom +surrealists surrealist nom +surrebuttal surrebuttal nom +surrebuttals surrebuttal nom +surrebutter surrebutter nom +surrebutters surrebutter nom +surrejoinder surrejoinder nom +surrejoinders surrejoinder nom +surrender surrender nom +surrendered surrender ver +surrendering surrender ver +surrenders surrender nom +surreptitiousness surreptitiousness nom +surreptitiousnesses surreptitiousness nom +surrey surrey nom +surreys surrey nom +surrogacies surrogacy nom +surrogacy surrogacy nom +surrogate surrogate nom +surrogated surrogate ver +surrogates surrogate nom +surrogating surrogate ver +surround surround nom +surrounded surround ver +surrounding surround ver +surroundings surrounding nom +surrounds surround nom +surtax surtax nom +surtaxed surtax ver +surtaxes surtax nom +surtaxing surtax ver +surtitle surtitle nom +surtitles surtitle nom +surveillance surveillance nom +surveillances surveillance nom +survey survey nom +surveyed survey ver +surveying survey ver +surveyings surveying nom +surveyor surveyor nom +surveyors surveyor nom +surveys survey nom +survival survival nom +survivalist survivalist nom +survivalists survivalist nom +survivals survival nom +survive survive ver +survived survive ver +survives survive ver +surviving survive ver +survivor survivor nom +survivors survivor nom +susceptibilities susceptibility nom +susceptibility susceptibility nom +susceptibleness susceptibleness nom +susceptiblenesses susceptibleness nom +sushi sushi nom +sushis sushi nom +suslik suslik nom +susliks suslik nom +suspect suspect nom +suspected suspect ver +suspecting suspect ver +suspects suspect nom +suspend suspend ver +suspended suspend ver +suspender suspender nom +suspenders suspender nom +suspending suspend ver +suspends suspend ver +suspense suspense nom +suspenses suspense nom +suspension suspension nom +suspensions suspension nom +suspensor suspensor nom +suspensors suspensor nom +suspicion suspicion nom +suspicioned suspicion ver +suspicioning suspicion ver +suspicions suspicion nom +suspiciousness suspiciousness nom +suspiciousnesses suspiciousness nom +sustain sustain ver +sustainabilities sustainability nom +sustainability sustainability nom +sustained sustain ver +sustaining sustain ver +sustainment sustainment nom +sustainments sustainment nom +sustains sustain ver +sustenance sustenance nom +sustenances sustenance nom +sustentation sustentation nom +sustentations sustentation nom +susurrate susurrate ver +susurrated susurrate ver +susurrates susurrate ver +susurrating susurrate ver +sutler sutler nom +sutlers sutler nom +suttee suttee nom +suttees suttee nom +suture suture nom +sutured suture ver +sutures suture nom +suturing suture ver +suzerain suzerain nom +suzerains suzerain nom +suzerainties suzerainty nom +suzerainty suzerainty nom +svelte svelte adj +svelter svelte adj +sveltest svelte adj +swab swab nom +swabbed swab ver +swabbing swab ver +swabs swab nom +swad swad nom +swaddle swaddle nom +swaddled swaddle ver +swaddles swaddle nom +swaddling swaddle ver +swads swad nom +swag swag nom +swage swage ver +swaged swage ver +swages swage ver +swagged swag ver +swagger swagger nom +swaggered swagger ver +swaggerer swaggerer nom +swaggerers swaggerer nom +swaggering swagger ver +swaggers swagger nom +swagging swag ver +swaging swage ver +swags swag nom +swain swain nom +swains swain nom +swallow swallow nom +swallowed swallow ver +swallowing swallow ver +swallows swallow nom +swallowtail swallowtail nom +swallowtails swallowtail nom +swallowwort swallowwort nom +swallowworts swallowwort nom +swam swim ver +swami swami nom +swamis swami nom +swamp swamp nom +swamped swamp ver +swampier swampy adj +swampiest swampy adj +swamping swamp ver +swampland swampland nom +swamplands swampland nom +swamps swamp nom +swampy swampy adj +swan swan nom +swank swank adj +swanked swank ver +swanker swank adj +swankest swank adj +swankier swanky adj +swankiest swanky adj +swankiness swankiness nom +swankinesses swankiness nom +swanking swank ver +swanks swank nom +swanky swanky adj +swanned swan ver +swanning swan ver +swans swan nom +swansdown swansdown nom +swansdowns swansdown nom +swap swap nom +swapped swap ver +swapping swap ver +swaps swap nom +sward sward nom +swarded sward ver +swarding sward ver +swards sward nom +swarm swarm nom +swarmed swarm ver +swarming swarm ver +swarms swarm nom +swarthier swarthy adj +swarthiest swarthy adj +swarthiness swarthiness nom +swarthinesses swarthiness nom +swarthy swarthy adj +swash swash nom +swashbuckler swashbuckler nom +swashbucklers swashbuckler nom +swashbuckling swashbuckling nom +swashbucklings swashbuckling nom +swashed swash ver +swashes swash nom +swashing swash ver +swastika swastika nom +swastikas swastika nom +swat swat nom +swatch swatch nom +swatches swatch nom +swath swath nom +swathe swathe nom +swathed swathe ver +swathes swathe nom +swathing swathe ver +swaths swath nom +swats swat nom +swatted swat ver +swatter swatter nom +swattered swatter ver +swattering swatter ver +swatters swatter nom +swatting swat ver +sway sway nom +swayback swayback nom +swaybacks swayback nom +swayed sway ver +swaying sway ver +sways sway nom +swear swear ver +swearer swearer nom +swearers swearer nom +swearing swear ver +swearings swearing nom +swears swear ver +swearword swearword nom +swearwords swearword nom +sweat sweat ver +sweatband sweatband nom +sweatbands sweatband nom +sweatbox sweatbox nom +sweatboxes sweatbox nom +sweater sweater nom +sweaters sweater nom +sweatier sweaty adj +sweatiest sweaty adj +sweating sweat ver +sweatings sweating nom +sweats sweat nom +sweatshirt sweatshirt nom +sweatshirts sweatshirt nom +sweatshop sweatshop nom +sweatshops sweatshop nom +sweaty sweaty adj +swede swede nom +swedes swede nom +sweep sweep nom +sweeper sweeper nom +sweepers sweeper nom +sweeping sweep ver +sweepings sweeping nom +sweeps sweep nom +sweepstake sweepstake nom +sweepstakes sweepstake nom +sweet sweet adj +sweetbread sweetbread nom +sweetbreads sweetbread nom +sweetbriar sweetbriar nom +sweetbriars sweetbriar nom +sweetbrier sweetbrier nom +sweetbriers sweetbrier nom +sweeten sweeten ver +sweetened sweeten ver +sweetener sweetener nom +sweeteners sweetener nom +sweetening sweeten ver +sweetenings sweetening nom +sweetens sweeten ver +sweeter sweet adj +sweetest sweet adj +sweetheart sweetheart nom +sweethearts sweetheart nom +sweetie sweetie nom +sweeties sweetie nom +sweetmeat sweetmeat nom +sweetmeats sweetmeat nom +sweetness sweetness nom +sweetnesses sweetness nom +sweetpea sweetpea nom +sweetpeas sweetpea nom +sweets sweet nom +sweetsop sweetsop nom +sweetsops sweetsop nom +swell swell adj +swelled swell ver +sweller swell adj +swellest swell adj +swellhead swellhead nom +swellheads swellhead nom +swelling swell ver +swellings swelling nom +swells swell nom +swelter swelter nom +sweltered swelter ver +sweltering swelter ver +swelters swelter nom +sweltrier sweltry adj +sweltriest sweltry adj +sweltry sweltry adj +swept sweep ver +swerve swerve nom +swerved swerve ver +swerves swerve nom +swerving swerve ver +swervings swerving nom +swift swift adj +swifter swift adj +swiftest swift adj +swiftlet swiftlet nom +swiftlets swiftlet nom +swiftlier swiftly adj +swiftliest swiftly adj +swiftly swiftly adj +swiftness swiftness nom +swiftnesses swiftness nom +swifts swift nom +swig swig nom +swigged swig ver +swigging swig ver +swigs swig nom +swill swill nom +swilled swill ver +swilling swill ver +swillings swilling nom +swills swill nom +swim swim nom +swimmer swimmer nom +swimmeret swimmeret nom +swimmerets swimmeret nom +swimmers swimmer nom +swimming swim ver +swimmings swimming nom +swims swim nom +swimsuit swimsuit nom +swimsuits swimsuit nom +swindle swindle nom +swindled swindle ver +swindler swindler nom +swindlers swindler nom +swindles swindle nom +swindling swindle ver +swine swine nom +swineherd swineherd nom +swineherds swineherd nom +swing swing nom +swinge swinge ver +swinged swinge ver +swingeing swinge ver +swinger swinger nom +swingers swinger nom +swinges swinge ver +swingier swingy adj +swingiest swingy adj +swinging swing ver +swingings swinging nom +swingletree swingletree nom +swingletrees swingletree nom +swings swing nom +swingy swingy adj +swipe swipe nom +swiped swipe ver +swipes swipe nom +swiping swipe ver +swirl swirl nom +swirled swirl ver +swirlier swirly adj +swirliest swirly adj +swirling swirl ver +swirls swirl nom +swirly swirly adj +swish swish adj +swished swish ver +swisher swish adj +swishes swish nom +swishest swish adj +swishier swishy adj +swishiest swishy adj +swishing swish ver +swishy swishy adj +switch switch nom +switchback switchback nom +switchbacked switchback ver +switchbacking switchback ver +switchbacks switchback nom +switchblade switchblade nom +switchblades switchblade nom +switchboard switchboard nom +switchboards switchboard nom +switched switch ver +switcher switcher nom +switcheroo switcheroo nom +switcheroos switcheroo nom +switchers switcher nom +switches switch nom +switching switch ver +switchings switching nom +switchman switchman nom +switchmen switchman nom +swither swither nom +swithers swither nom +swivel swivel nom +swiveled swivel ver +swiveling swivel ver +swivels swivel nom +swiz swiz nom +swizzes swiz nom +swizzle swizzle nom +swizzles swizzle nom +swob swob nom +swobbed swob ver +swobbing swob ver +swobs swob nom +swollen swell ver +swoon swoon nom +swooned swoon ver +swooning swoon ver +swoons swoon nom +swoop swoop nom +swooped swoop ver +swooping swoop ver +swoops swoop nom +swoosh swoosh nom +swooshed swoosh ver +swooshes swoosh nom +swooshing swoosh ver +swop swop nom +swopped swop ver +swopping swop ver +swops swop nom +sword sword nom +swordfish swordfish nom +swordplay swordplay nom +swordplays swordplay nom +swords sword nom +swordsman swordsman nom +swordsmanship swordsmanship nom +swordsmanships swordsmanship nom +swordsmen swordsman nom +swordtail swordtail nom +swordtails swordtail nom +swore swear ver +sworn swear ver +swot swot nom +swots swot nom +swotted swot ver +swotting swot ver +swum swim ver +swung swing ver +sybarite sybarite nom +sybarites sybarite nom +sycamore sycamore nom +sycamores sycamore nom +syconium syconium nom +syconiums syconium nom +sycophancies sycophancy nom +sycophancy sycophancy nom +sycophant sycophant nom +sycophants sycophant nom +syllabaries syllabary nom +syllabary syllabary nom +syllabic syllabic nom +syllabicate syllabicate ver +syllabicated syllabicate ver +syllabicates syllabicate ver +syllabicating syllabicate ver +syllabication syllabication nom +syllabications syllabication nom +syllabicities syllabicity nom +syllabicity syllabicity nom +syllabics syllabic nom +syllabification syllabification nom +syllabifications syllabification nom +syllabified syllabify ver +syllabifies syllabify ver +syllabify syllabify ver +syllabifying syllabify ver +syllabize syllabize ver +syllabized syllabize ver +syllabizes syllabize ver +syllabizing syllabize ver +syllable syllable nom +syllabled syllable ver +syllables syllable nom +syllabling syllable ver +syllabub syllabub nom +syllabubs syllabub nom +syllabus syllabus nom +syllabuses syllabus nom +syllepses syllepsis nom +syllepsis syllepsis nom +syllogism syllogism nom +syllogisms syllogism nom +syllogistic syllogistic nom +syllogistics syllogistic nom +syllogize syllogize ver +syllogized syllogize ver +syllogizes syllogize ver +syllogizing syllogize ver +sylph sylph nom +sylphs sylph nom +sylva sylva nom +sylvan sylvan nom +sylvanite sylvanite nom +sylvanites sylvanite nom +sylvans sylvan nom +sylvas sylva nom +sylvine sylvine nom +sylvines sylvine nom +sylvite sylvite nom +sylvites sylvite nom +symbioses symbiosis nom +symbiosis symbiosis nom +symbol symbol nom +symboled symbol ver +symboling symbol ver +symbolism symbolism nom +symbolisms symbolism nom +symbolist symbolist nom +symbolists symbolist nom +symbolization symbolization nom +symbolizations symbolization nom +symbolize symbolize ver +symbolized symbolize ver +symbolizes symbolize ver +symbolizing symbolize ver +symbols symbol nom +symmetricalness symmetricalness nom +symmetricalnesses symmetricalness nom +symmetries symmetry nom +symmetrize symmetrize ver +symmetrized symmetrize ver +symmetrizes symmetrize ver +symmetrizing symmetrize ver +symmetry symmetry nom +sympathectomies sympathectomy nom +sympathectomy sympathectomy nom +sympathies sympathy nom +sympathize sympathize ver +sympathized sympathize ver +sympathizer sympathizer nom +sympathizers sympathizer nom +sympathizes sympathize ver +sympathizing sympathize ver +sympathy sympathy nom +symphonies symphony nom +symphony symphony nom +symphyses symphysis nom +symphysis symphysis nom +symploce symploce nom +symploces symploce nom +symposium symposium nom +symposiums symposium nom +symptom symptom nom +symptoms symptom nom +synaereses synaeresis nom +synaeresis synaeresis nom +synaesthesia synaesthesia nom +synaesthesias synaesthesia nom +synagog synagog nom +synagogs synagog nom +synagogue synagogue nom +synagogues synagogue nom +synapse synapse nom +synapsed synapse ver +synapses synapse nom +synapsid synapsid nom +synapsids synapsid nom +synapsing synapse ver +synapsis synapsis nom +sync sync nom +syncarp syncarp nom +synced sync ver +synch synch nom +synched synch ver +synching synch ver +synchrocyclotron synchrocyclotron nom +synchrocyclotrons synchrocyclotron nom +synchroflash synchroflash nom +synchroflashes synchroflash nom +synchromesh synchromesh nom +synchromeshes synchromesh nom +synchroneities synchroneity nom +synchroneity synchroneity nom +synchronicities synchronicity nom +synchronicity synchronicity nom +synchronies synchrony nom +synchronisation synchronisation nom +synchronisations synchronisation nom +synchronism synchronism nom +synchronisms synchronism nom +synchronization synchronization nom +synchronizations synchronization nom +synchronize synchronize ver +synchronized synchronize ver +synchronizes synchronize ver +synchronizing synchronize ver +synchrony synchrony nom +synchrotron synchrotron nom +synchrotrons synchrotron nom +synchs synch nom +syncing sync ver +syncopate syncopate ver +syncopated syncopate ver +syncopates syncopate ver +syncopating syncopate ver +syncopation syncopation nom +syncopations syncopation nom +syncope syncope nom +syncopes syncope nom +syncretize syncretize ver +syncretized syncretize ver +syncretizes syncretize ver +syncretizing syncretize ver +syncs sync nom +syncytium syncytium nom +syncytiums syncytium nom +syndactylies syndactyly nom +syndactylism syndactylism nom +syndactylisms syndactylism nom +syndactyly syndactyly nom +syndic syndic nom +syndicalism syndicalism nom +syndicalisms syndicalism nom +syndicalist syndicalist nom +syndicalists syndicalist nom +syndicate syndicate nom +syndicated syndicate ver +syndicates syndicate nom +syndicating syndicate ver +syndication syndication nom +syndications syndication nom +syndics syndic nom +syndrome syndrome nom +syndromes syndrome nom +synecdoche synecdoche nom +synecdoches synecdoche nom +synechia synechia nom +synechiae synechia nom +synereses syneresis nom +syneresis syneresis nom +synergies synergy nom +synergism synergism nom +synergisms synergism nom +synergist synergist nom +synergists synergist nom +synergy synergy nom +synesthesia synesthesia nom +synesthesias synesthesia nom +synfuel synfuel nom +synfuels synfuel nom +synizeses synizesis nom +synizesis synizesis nom +synod synod nom +synods synod nom +synonym synonym nom +synonymies synonymy nom +synonymist synonymist nom +synonymists synonymist nom +synonymities synonymity nom +synonymity synonymity nom +synonymousness synonymousness nom +synonymousnesses synonymousness nom +synonyms synonym nom +synonymy synonymy nom +synopses synopsis nom +synopsis synopsis nom +synovia synovium nom +synovias synovia nom +synovitis synovitis nom +synovitises synovitis nom +synovium synovium nom +syntax syntax nom +syntaxes syntax nom +syntheses synthesis nom +synthesis synthesis nom +synthesise synthesise ver +synthesised synthesise ver +synthesises synthesise ver +synthesising synthesise ver +synthesize synthesize ver +synthesized synthesize ver +synthesizer synthesizer nom +synthesizers synthesizer nom +synthesizes synthesize ver +synthesizing synthesize ver +synthetic synthetic nom +synthetics synthetic nom +syph syph nom +syphilis syphilis nom +syphilises syphilis nom +syphilitic syphilitic nom +syphilitics syphilitic nom +syphon syphon nom +syphoned syphon ver +syphoning syphon ver +syphons syphon nom +syphs syph nom +syringa syringa nom +syringas syringa nom +syringe syringe nom +syringed syringe ver +syringes syringe nom +syringing syringe ver +syrinx syrinx nom +syrinxes syrinx nom +syrup syrup nom +syruped syrup ver +syruping syrup ver +syrups syrup nom +system system nom +systematization systematization nom +systematizations systematization nom +systematize systematize ver +systematized systematize ver +systematizes systematize ver +systematizing systematize ver +systemic systemic nom +systemics systemic nom +systemize systemize ver +systemized systemize ver +systemizes systemize ver +systemizing systemize ver +systems system nom +systole systole nom +systoles systole nom +syzygies syzygy nom +syzygy syzygy nom +t t sw +t_s t_s sw +tab tab nom +tabard tabard nom +tabards tabard nom +tabbed tab ver +tabbied tabby ver +tabbies tabby nom +tabbing tab ver +tabbouleh tabbouleh nom +tabboulehs tabbouleh nom +tabby tabby nom +tabbying tabby ver +tabernacle tabernacle nom +tabernacled tabernacle ver +tabernacles tabernacle nom +tabernacling tabernacle ver +tabes tabis nom +tabi tabi nom +tabis tabi nom +tabla tabla nom +tablas tabla nom +tablature tablature nom +tablatures tablature nom +table table nom +tableau tableau nom +tableaux tableau nom +tablecloth tablecloth nom +tablecloths tablecloth nom +tabled table ver +tableland tableland nom +tablelands tableland nom +tablemate tablemate nom +tablemates tablemate nom +tables table nom +tablespoon tablespoon nom +tablespoonful tablespoonful nom +tablespoonfuls tablespoonful nom +tablespoons tablespoon nom +tablet tablet nom +tableted tablet ver +tableting tablet ver +tabletop tabletop nom +tabletops tabletop nom +tablets tablet nom +tableware tableware nom +tablewares tableware nom +tabling table ver +tabloid tabloid nom +tabloids tabloid nom +taboo taboo nom +tabooed taboo ver +tabooing taboo ver +tabooli tabooli nom +taboolis tabooli nom +taboos taboo nom +tabor tabor nom +tabored tabor ver +taboret taboret nom +taborets taboret nom +taboring tabor ver +tabors tabor nom +tabour tabour nom +tabouret tabouret nom +tabourets tabouret nom +tabours tabour nom +tabs tab nom +tabu tabu nom +tabued tabu ver +tabuing tabu ver +tabularise tabularise ver +tabularised tabularise ver +tabularises tabularise ver +tabularising tabularise ver +tabularize tabularize ver +tabularized tabularize ver +tabularizes tabularize ver +tabularizing tabularize ver +tabulate tabulate ver +tabulated tabulate ver +tabulates tabulate ver +tabulating tabulate ver +tabulation tabulation nom +tabulations tabulation nom +tabulator tabulator nom +tabulators tabulator nom +tabus tabu nom +tacamahac tacamahac nom +tacamahacs tacamahac nom +tach tach nom +tacheometer tacheometer nom +tacheometers tacheometer nom +taches tach nom +tachistoscope tachistoscope nom +tachistoscopes tachistoscope nom +tachogram tachogram nom +tachograms tachogram nom +tachograph tachograph nom +tachographs tachograph nom +tachometer tachometer nom +tachometers tachometer nom +tachycardia tachycardia nom +tachycardias tachycardia nom +tachylite tachylite nom +tachylites tachylite nom +tachymeter tachymeter nom +tachymeters tachymeter nom +tacitness tacitness nom +tacitnesses tacitness nom +taciturnities taciturnity nom +taciturnity taciturnity nom +tack tack nom +tacked tack ver +tacker tacker nom +tackers tacker nom +tackier tacky adj +tackiest tacky adj +tackiness tackiness nom +tackinesses tackiness nom +tacking tack ver +tackings tacking nom +tackle tackle nom +tackled tackle ver +tackler tackler nom +tacklers tackler nom +tackles tackle nom +tackling tackle ver +tacks tack nom +tacky tacky adj +taco taco nom +taconite taconite nom +taconites taconite nom +tacos taco nom +tact tact nom +tactfulness tactfulness nom +tactfulnesses tactfulness nom +tactic tactic nom +tactician tactician nom +tacticians tactician nom +tactics tactic nom +tactilities tactility nom +tactility tactility nom +tactlessness tactlessness nom +tactlessnesses tactlessness nom +tacts tact nom +tad tad nom +tadpole tadpole nom +tadpoles tadpole nom +tads tad nom +tael tael nom +taels tael nom +taenia taenia nom +taenias taenia nom +taffeta taffeta nom +taffetas taffeta nom +taffies taffy nom +taffrail taffrail nom +taffrails taffrail nom +taffy taffy nom +tag tag nom +tagalong tagalong nom +tagalongs tagalong nom +tagged tag ver +tagger tagger nom +taggers tagger nom +tagging tag ver +tags tag nom +taguan taguan nom +taguans taguan nom +taiga taiga nom +taigas taiga nom +tail tail nom +tailback tailback nom +tailbacks tailback nom +tailboard tailboard nom +tailboards tailboard nom +tailcoat tailcoat nom +tailcoats tailcoat nom +tailed tail ver +tailfin tailfin nom +tailfins tailfin nom +tailgate tailgate nom +tailgated tailgate ver +tailgates tailgate nom +tailgating tailgate ver +tailing tail ver +taillight taillight nom +taillights taillight nom +tailor tailor nom +tailorbird tailorbird nom +tailorbirds tailorbird nom +tailored tailor ver +tailoring tailor ver +tailorings tailoring nom +tailors tailor nom +tailpiece tailpiece nom +tailpieces tailpiece nom +tailpipe tailpipe nom +tailpipes tailpipe nom +tailplane tailplane nom +tailplanes tailplane nom +tailrace tailrace nom +tailraces tailrace nom +tails tail nom +tailspin tailspin nom +tailspins tailspin nom +tailstock tailstock nom +tailstocks tailstock nom +tailwind tailwind nom +tailwinds tailwind nom +taint taint nom +tainted taint ver +tainting taint ver +taints taint nom +taipan taipan nom +taipans taipan nom +taira taira nom +tairas taira nom +taka taka nom +takahe takahe nom +takahes takahe nom +takas taka nom +take take sw +takedown takedown nom +takedowns takedown nom +taken taken sw +takeoff takeoff nom +takeoffs takeoff nom +takeout takeout nom +takeouts takeout nom +takeover takeover nom +takeovers takeover nom +taker taker nom +takers taker nom +takes take sw +takin takin nom +taking take sw +takings taking nom +takins takin nom +tala tala nom +talapoin talapoin nom +talapoins talapoin nom +talas tala nom +talc talc nom +talcked talc ver +talcking talc ver +talcs talc nom +talcum talcum nom +talcums talcum nom +tale tale nom +talebearer talebearer nom +talebearers talebearer nom +talent talent nom +talents talent nom +tales tale nom +taleteller taleteller nom +taletellers taleteller nom +tali talus nom +talipot talipot nom +talipots talipot nom +talisman talisman nom +talismans talisman nom +talk talk nom +talkativeness talkativeness nom +talkativenesses talkativeness nom +talked talk ver +talker talker nom +talkers talker nom +talkie talkie nom +talkier talky adj +talkies talkie nom +talkiest talky adj +talking talk ver +talkings talking nom +talks talk nom +talky talky adj +tall tall adj +tallboy tallboy nom +tallboys tallboy nom +taller tall adj +tallest tall adj +tallied tally ver +tallier tallier nom +talliers tallier nom +tallies tally nom +tallith tallith nom +talliths tallith nom +tallness tallness nom +tallnesses tallness nom +tallow tallow nom +tallowed tallow ver +tallowing tallow ver +tallows tallow nom +tally tally nom +tallyho tallyho nom +tallyhoed tallyho ver +tallyhoing tallyho ver +tallyhos tallyho nom +tallying tally ver +tallyman tallyman nom +tallymen tallyman nom +talon talon nom +talons talon nom +talus talus nom +taluses talus nom +tam tam nom +tamale tamale nom +tamales tamale nom +tamandu tamandu nom +tamandua tamandua nom +tamanduas tamandua nom +tamandus tamandu nom +tamanoir tamanoir nom +tamanoirs tamanoir nom +tamarack tamarack nom +tamaracks tamarack nom +tamarao tamarao nom +tamaraos tamarao nom +tamarau tamarau nom +tamaraus tamarau nom +tamarillo tamarillo nom +tamarillos tamarillo nom +tamarin tamarin nom +tamarind tamarind nom +tamarinds tamarind nom +tamarins tamarin nom +tamarisk tamarisk nom +tamarisks tamarisk nom +tambac tambac nom +tambacs tambac nom +tambala tambala nom +tambalas tambala nom +tambour tambour nom +tambourine tambourine nom +tambourines tambourine nom +tambours tambour nom +tame tame adj +tamed tame ver +tameness tameness nom +tamenesses tameness nom +tamer tame adj +tamers tamer nom +tames tame ver +tamest tame adj +taming tame ver +tammies tammy nom +tammy tammy nom +tamp tamp nom +tamped tamp ver +tamper tamper nom +tampered tamper ver +tamperer tamperer nom +tamperers tamperer nom +tampering tamper ver +tamperings tampering nom +tampers tamper nom +tamping tamp ver +tampon tampon nom +tamponed tampon ver +tamponing tampon ver +tampons tampon nom +tamps tamp nom +tams tam nom +tan tan adj +tanager tanager nom +tanagers tanager nom +tanbark tanbark nom +tanbarks tanbark nom +tandem tandem nom +tandems tandem nom +tandoori tandoori nom +tandooris tandoori nom +tang tang nom +tanged tang ver +tangelo tangelo nom +tangelos tangelo nom +tangencies tangency nom +tangency tangency nom +tangent tangent nom +tangents tangent nom +tangerine tangerine nom +tangerines tangerine nom +tangibilities tangibility nom +tangibility tangibility nom +tangible tangible nom +tangibleness tangibleness nom +tangiblenesses tangibleness nom +tangibles tangible nom +tangier tangy adj +tangiest tangy adj +tanginess tanginess nom +tanginesses tanginess nom +tanging tang ver +tangle tangle nom +tangled tangle ver +tangles tangle nom +tangling tangle ver +tango tango nom +tangoed tango ver +tangoing tango ver +tangor tangor nom +tangors tangor nom +tangos tango nom +tangram tangram nom +tangrams tangram nom +tangs tang nom +tangy tangy adj +tank tank nom +tanka tanka nom +tankage tankage nom +tankages tankage nom +tankard tankard nom +tankards tankard nom +tankas tanka nom +tanked tank ver +tanker tanker nom +tankers tanker nom +tankful tankful nom +tankfuls tankful nom +tanking tank ver +tanks tank nom +tanned tan ver +tanner tan adj +tanneries tannery nom +tanners tanner nom +tannery tannery nom +tannest tan adj +tannin tannin nom +tanning tan ver +tannings tanning nom +tannins tannin nom +tannoy tannoy nom +tannoys tannoy nom +tans tan nom +tansies tansy nom +tansy tansy nom +tantalise tantalise ver +tantalised tantalise ver +tantalises tantalise ver +tantalising tantalise ver +tantalite tantalite nom +tantalites tantalite nom +tantalization tantalization nom +tantalizations tantalization nom +tantalize tantalize ver +tantalized tantalize ver +tantalizer tantalizer nom +tantalizers tantalizer nom +tantalizes tantalize ver +tantalizing tantalize ver +tantalum tantalum nom +tantalums tantalum nom +tantra tantra nom +tantras tantra nom +tantrum tantrum nom +tantrums tantrum nom +tap tap nom +tapa tapa nom +tapas tapa nom +tapdance tapdance ver +tapdanced tapdance ver +tapdances tapdance ver +tapdancing tapdance ver +tape tape nom +taped tape ver +tapeline tapeline nom +tapelines tapeline nom +tapenade tapenade nom +tapenades tapenade nom +taper taper nom +tapered taper ver +tapering taper ver +taperings tapering nom +tapers taper nom +tapes tape nom +tapestried tapestry ver +tapestries tapestry nom +tapestry tapestry nom +tapestrying tapestry ver +tapeworm tapeworm nom +tapeworms tapeworm nom +taphouse taphouse nom +taphouses taphouse nom +taping tape ver +tapioca tapioca nom +tapiocas tapioca nom +tapir tapir nom +tapirs tapir nom +tapis tapis nom +tapises tapis nom +tappa tappa nom +tappas tappa nom +tapped tap ver +tapper tapper nom +tappers tapper nom +tappet tappet nom +tappets tappet nom +tapping tap ver +tappings tapping nom +taproom taproom nom +taprooms taproom nom +taproot taproot nom +taproots taproot nom +taps tap nom +tapster tapster nom +tapsters tapster nom +tar tar nom +taradiddle taradiddle nom +taradiddles taradiddle nom +tarantella tarantella nom +tarantellas tarantella nom +tarantism tarantism nom +tarantisms tarantism nom +tarantula tarantula nom +tarantulas tarantula nom +tarboosh tarboosh nom +tarbooshes tarboosh nom +tardier tardy adj +tardiest tardy adj +tardigrade tardigrade nom +tardigrades tardigrade nom +tardiness tardiness nom +tardinesses tardiness nom +tardy tardy adj +tare tare nom +tared tare ver +tares tare nom +target target nom +targeted target ver +targeting target ver +targets target nom +tariff tariff nom +tariffed tariff ver +tariffing tariff ver +tariffs tariff nom +taring tare ver +tarmac tarmac nom +tarmacadam tarmacadam nom +tarmacadams tarmacadam nom +tarmacked tarmac ver +tarmacking tarmac ver +tarmacs tarmac nom +tarn tarn nom +tarnish tarnish nom +tarnished tarnish ver +tarnishes tarnish nom +tarnishing tarnish ver +tarns tarn nom +taro taro nom +taros taro nom +tarot tarot nom +tarots tarot nom +tarp tarp nom +tarpan tarpan nom +tarpans tarpan nom +tarpaulin tarpaulin nom +tarpaulins tarpaulin nom +tarpon tarpon nom +tarps tarp nom +tarradiddle tarradiddle nom +tarradiddles tarradiddle nom +tarragon tarragon nom +tarragons tarragon nom +tarred tar ver +tarriance tarriance nom +tarriances tarriance nom +tarried tarry ver +tarrier tarry adj +tarries tarry ver +tarriest tarry adj +tarring tar ver +tarry tarry adj +tarrying tarry ver +tars tar nom +tarsal tarsal nom +tarsals tarsal nom +tarsi tarsus nom +tarsier tarsier nom +tarsiers tarsier nom +tarsus tarsus nom +tart tart adj +tartan tartan nom +tartans tartan nom +tartar tartar nom +tartars tartar nom +tarter tart adj +tartest tart adj +tartlet tartlet nom +tartlets tartlet nom +tartness tartness nom +tartnesses tartness nom +tartrate tartrate nom +tartrates tartrate nom +tarts tart nom +tartufe tartufe nom +tartufes tartufe nom +tartuffe tartuffe nom +tartuffes tartuffe nom +tarweed tarweed nom +tarweeds tarweed nom +task task nom +tasked task ver +tasking task ver +taskmaster taskmaster nom +taskmasters taskmaster nom +taskmistress taskmistress nom +taskmistresses taskmistress nom +tasks task nom +tasse tasse nom +tassel tassel nom +tasseled tassel ver +tasseling tassel ver +tassels tassel nom +tasses tasse nom +tasset tasset nom +tassets tasset nom +taste taste nom +tastebud tastebud nom +tastebuds tastebud nom +tasted taste ver +tastefulness tastefulness nom +tastefulnesses tastefulness nom +tastelessness tastelessness nom +tastelessnesses tastelessness nom +taster taster nom +tasters taster nom +tastes taste nom +tastier tasty adj +tastiest tasty adj +tastiness tastiness nom +tastinesses tastiness nom +tasting taste ver +tastings tasting nom +tasty tasty adj +tat tat nom +tatami tatami nom +tater tater nom +taters tater nom +tatou tatou nom +tatouay tatouay nom +tatouays tatouay nom +tatous tatou nom +tats tat nom +tatted tat ver +tatter tatter nom +tatterdemalion tatterdemalion nom +tatterdemalions tatterdemalion nom +tattered tatter ver +tattering tatter ver +tatters tatter nom +tattier tatty adj +tattiest tatty adj +tatting tat ver +tattings tatting nom +tattle tattle nom +tattled tattle ver +tattler tattler nom +tattlers tattler nom +tattles tattle nom +tattletale tattletale nom +tattletales tattletale nom +tattling tattle ver +tattoo tattoo nom +tattooed tattoo ver +tattooer tattooer nom +tattooers tattooer nom +tattooing tattoo ver +tattooist tattooist nom +tattooists tattooist nom +tattoos tattoo nom +tatty tatty adj +tatu tatu nom +tatus tatu nom +tau tau nom +taught teach ver +taunt taunt nom +taunted taunt ver +taunter taunter nom +taunters taunter nom +taunting taunt ver +tauntings taunting nom +taunts taunt nom +tauon tauon nom +tauons tauon nom +taupe taupe nom +taupes taupe nom +taus tau nom +taut taut adj +tauten tauten ver +tautened tauten ver +tautening tauten ver +tautens tauten ver +tauter taut adj +tautest taut adj +tautness tautness nom +tautnesses tautness nom +tautog tautog nom +tautogs tautog nom +tautologies tautology nom +tautology tautology nom +tavern tavern nom +taverns tavern nom +taw taw nom +tawdrier tawdry adj +tawdries tawdry nom +tawdriest tawdry adj +tawdriness tawdriness nom +tawdrinesses tawdriness nom +tawdry tawdry adj +tawnier tawny adj +tawnies tawny nom +tawniest tawny adj +tawniness tawniness nom +tawninesses tawniness nom +tawny tawny adj +taws taw nom +tawse tawse nom +tawses tawse nom +tax tax nom +taxabilities taxability nom +taxability taxability nom +taxable taxable nom +taxables taxable nom +taxation taxation nom +taxations taxation nom +taxed tax ver +taxer taxer nom +taxers taxer nom +taxes tax nom +taxi taxi nom +taxicab taxicab nom +taxicabs taxicab nom +taxidermies taxidermy nom +taxidermist taxidermist nom +taxidermists taxidermist nom +taxidermy taxidermy nom +taxied taxi ver +taxiing taxi ver +taximan taximan nom +taximen taximan nom +taximeter taximeter nom +taximeters taximeter nom +taxing tax ver +taxis taxi nom +taxiway taxiway nom +taxiways taxiway nom +taxman taxman nom +taxmen taxman nom +taxon taxon nom +taxonomies taxonomy nom +taxonomist taxonomist nom +taxonomists taxonomist nom +taxonomy taxonomy nom +taxons taxon nom +taxpayer taxpayer nom +taxpayers taxpayer nom +tayra tayra nom +tayras tayra nom +te te nom +tea tea nom +teaberries teaberry nom +teaberry teaberry nom +teacake teacake nom +teacakes teacake nom +teacart teacart nom +teacarts teacart nom +teach teach nom +teacher teacher nom +teachers teacher nom +teachership teachership nom +teacherships teachership nom +teaches teach nom +teaching teach ver +teachings teaching nom +teacup teacup nom +teacupful teacupful nom +teacupfuls teacupful nom +teacups teacup nom +teahouse teahouse nom +teahouses teahouse nom +teak teak nom +teakettle teakettle nom +teakettles teakettle nom +teaks teak nom +teakwood teakwood nom +teakwoods teakwood nom +teal teal nom +team team nom +teamed team ver +teaming team ver +teammate teammate nom +teammates teammate nom +teams team nom +teamster teamster nom +teamsters teamster nom +teamwork teamwork nom +teamworks teamwork nom +teapot teapot nom +teapots teapot nom +tear tear nom +tearaway tearaway nom +tearaways tearaway nom +teardrop teardrop nom +teardrops teardrop nom +teared tear ver +tearfulness tearfulness nom +tearfulnesses tearfulness nom +teargas teargas nom +teargases teargas nom +teargassed teargas ver +teargassing teargas ver +tearier teary adj +teariest teary adj +tearing tear ver +tearjerker tearjerker nom +tearjerkers tearjerker nom +tearoom tearoom nom +tearooms tearoom nom +tears tear nom +teary teary adj +teas tea nom +tease tease nom +teased tease ver +teasel teasel nom +teaseled teasel ver +teaseling teasel ver +teasels teasel nom +teaser teaser nom +teasers teaser nom +teases tease nom +teashop teashop nom +teashops teashop nom +teasing tease ver +teasings teasing nom +teaspoon teaspoon nom +teaspoonful teaspoonful nom +teaspoonfuls teaspoonful nom +teaspoons teaspoon nom +teat teat nom +teatime teatime nom +teatimes teatime nom +teats teat nom +teazel teazel nom +teazels teazel nom +tech tech nom +techier techy adj +techiest techy adj +technetium technetium nom +technetiums technetium nom +technicalities technicality nom +technicality technicality nom +technician technician nom +technicians technician nom +technique technique nom +techniques technique nom +technobabble technobabble nom +technobabbles technobabble nom +technocracies technocracy nom +technocracy technocracy nom +technocrat technocrat nom +technocrats technocrat nom +technologies technology nom +technologist technologist nom +technologists technologist nom +technology technology nom +techs tech nom +techy techy adj +teddies teddy nom +teddy teddy nom +tediousness tediousness nom +tediousnesses tediousness nom +tedium tedium nom +tediums tedium nom +tee tee nom +teed tee ver +teeing tee ver +teem teem ver +teemed teem ver +teeming teem ver +teemingness teemingness nom +teemingnesses teemingness nom +teems teem ver +teen teen nom +teenager teenager nom +teenagers teenager nom +teenier teeny adj +teeniest teeny adj +teens teen nom +teensier teensy adj +teensiest teensy adj +teensy teensy adj +teentsier teentsy adj +teentsiest teentsy adj +teentsy teentsy adj +teeny teeny adj +teenybopper teenybopper nom +teenyboppers teenybopper nom +teepee teepee nom +teepees teepee nom +tees tee nom +teeter teeter nom +teeterboard teeterboard nom +teeterboards teeterboard nom +teetered teeter ver +teetering teeter ver +teeters teeter nom +teeth tooth nom +teethe teethe ver +teethed teethe ver +teethes teethe ver +teething teethe ver +teethings teething nom +teetotal teetotal ver +teetotaled teetotal ver +teetotaler teetotaler nom +teetotalers teetotaler nom +teetotaling teetotal ver +teetotalism teetotalism nom +teetotalisms teetotalism nom +teetotalist teetotalist nom +teetotalists teetotalist nom +teetotaller teetotaller nom +teetotallers teetotaller nom +teetotals teetotal ver +teetotum teetotum nom +teetotums teetotum nom +teff teff nom +teffs teff nom +teg teg nom +tegs teg nom +tegument tegument nom +teguments tegument nom +teiid teiid nom +teiids teiid nom +tektite tektite nom +tektites tektite nom +telecast telecast ver +telecaster telecaster nom +telecasters telecaster nom +telecasting telecast ver +telecasts telecast nom +telecommunicate telecommunicate ver +telecommunicated telecommunicate ver +telecommunicates telecommunicate ver +telecommunicating telecommunicate ver +telecommunication telecommunication nom +telecommunications telecommunication nom +telecommute telecommute ver +telecommuted telecommute ver +telecommuter telecommuter nom +telecommuters telecommuter nom +telecommutes telecommute ver +telecommuting telecommute ver +telecommutings telecommuting nom +teleconference teleconference nom +teleconferenced teleconference ver +teleconferences teleconference nom +teleconferencing teleconference ver +teleconferencings teleconferencing nom +telefax telefax ver +telefaxed telefax ver +telefaxes telefax ver +telefaxing telefax ver +telegram telegram nom +telegrammed telegram ver +telegramming telegram ver +telegrams telegram nom +telegraph telegraph nom +telegraphed telegraph ver +telegrapher telegrapher nom +telegraphers telegrapher nom +telegraphese telegraphese nom +telegrapheses telegraphese nom +telegraphies telegraphy nom +telegraphing telegraph ver +telegraphist telegraphist nom +telegraphists telegraphist nom +telegraphs telegraph nom +telegraphy telegraphy nom +telekineses telekinesis nom +telekinesis telekinesis nom +telemarketer telemarketer nom +telemarketers telemarketer nom +telemarketing telemarketing nom +telemarketings telemarketing nom +telemeter telemeter nom +telemetered telemeter ver +telemetering telemeter ver +telemeters telemeter nom +telemetries telemetry nom +telemetry telemetry nom +telencephalon telencephalon nom +telencephalons telencephalon nom +teleologies teleology nom +teleologist teleologist nom +teleologists teleologist nom +teleology teleology nom +teleost teleost nom +teleosts teleost nom +telepathies telepathy nom +telepathist telepathist nom +telepathists telepathist nom +telepathize telepathize ver +telepathized telepathize ver +telepathizes telepathize ver +telepathizing telepathize ver +telepathy telepathy nom +telephone telephone nom +telephoned telephone ver +telephoner telephoner nom +telephoners telephoner nom +telephones telephone nom +telephonies telephony nom +telephoning telephone ver +telephonist telephonist nom +telephonists telephonist nom +telephony telephony nom +telephoto telephoto nom +telephotograph telephotograph nom +telephotographies telephotography nom +telephotographs telephotograph nom +telephotography telephotography nom +telephotos telephoto nom +teleprinter teleprinter nom +teleprinters teleprinter nom +teleprocessing teleprocessing nom +teleprocessings teleprocessing nom +telescope telescope nom +telescoped telescope ver +telescopes telescope nom +telescoping telescope ver +teletext teletext nom +teletexts teletext nom +telethon telethon nom +telethons telethon nom +teletypewriter teletypewriter nom +teletypewriters teletypewriter nom +televangelism televangelism nom +televangelisms televangelism nom +televangelist televangelist nom +televangelists televangelist nom +televise televise ver +televised televise ver +televises televise ver +televising televise ver +television television nom +televisions television nom +telex telex nom +telexed telex ver +telexes telex nom +telexing telex ver +telfer telfer nom +telfers telfer nom +tell tell sw +teller teller nom +tellers teller nom +tellies telly nom +telling tell ver +tells tell nom +telltale telltale nom +telltales telltale nom +tellurian tellurian nom +tellurians tellurian nom +telluride telluride nom +tellurides telluride nom +tellurium tellurium nom +telluriums tellurium nom +telly telly nom +telophase telophase nom +telophases telophase nom +telpher telpher nom +telpherage telpherage nom +telpherages telpherage nom +telphers telpher nom +temblor temblor nom +temblors temblor nom +temerities temerity nom +temerity temerity nom +temp temp nom +temped temp ver +temper temper nom +tempera tempera nom +temperament temperament nom +temperaments temperament nom +temperance temperance nom +temperances temperance nom +temperas tempera nom +temperateness temperateness nom +temperatenesses temperateness nom +temperature temperature nom +temperatures temperature nom +tempered temper ver +tempering temper ver +temperings tempering nom +tempers temper nom +tempest tempest nom +tempested tempest ver +tempesting tempest ver +tempests tempest nom +tempestuousness tempestuousness nom +tempestuousnesses tempestuousness nom +temping temp ver +template template nom +templates template nom +temple temple nom +temples temple nom +templet templet nom +templets templet nom +tempo tempo nom +temporal temporal nom +temporalities temporality nom +temporality temporality nom +temporals temporal nom +temporalties temporalty nom +temporalty temporalty nom +temporaries temporary nom +temporariness temporariness nom +temporarinesses temporariness nom +temporary temporary nom +temporize temporize ver +temporized temporize ver +temporizer temporizer nom +temporizers temporizer nom +temporizes temporize ver +temporizing temporize ver +tempos tempo nom +temps temp nom +tempt tempt ver +temptation temptation nom +temptations temptation nom +tempted tempt ver +tempter tempter nom +tempters tempter nom +tempting tempt ver +temptingness temptingness nom +temptingnesses temptingness nom +temptress temptress nom +temptresses temptress nom +tempts tempt ver +tempura tempura nom +tempuras tempura nom +ten ten nom +tenabilities tenability nom +tenability tenability nom +tenableness tenableness nom +tenablenesses tenableness nom +tenaciousness tenaciousness nom +tenaciousnesses tenaciousness nom +tenacities tenacity nom +tenacity tenacity nom +tenancies tenancy nom +tenancy tenancy nom +tenant tenant nom +tenanted tenant ver +tenanting tenant ver +tenantries tenantry nom +tenantry tenantry nom +tenants tenant nom +tench tench nom +tenches tench nom +tend tend ver +tended tend ver +tendencies tendency nom +tendency tendency nom +tendentiousness tendentiousness nom +tendentiousnesses tendentiousness nom +tender tender adj +tendered tender ver +tenderer tender adj +tenderest tender adj +tenderfoot tenderfoot nom +tenderfoots tenderfoot nom +tenderheartedness tenderheartedness nom +tenderheartednesses tenderheartedness nom +tendering tender ver +tenderization tenderization nom +tenderizations tenderization nom +tenderize tenderize ver +tenderized tenderize ver +tenderizer tenderizer nom +tenderizers tenderizer nom +tenderizes tenderize ver +tenderizing tenderize ver +tenderloin tenderloin nom +tenderloins tenderloin nom +tenderness tenderness nom +tendernesses tenderness nom +tenders tender nom +tending tend ver +tendinitis tendinitis nom +tendinitises tendinitis nom +tendon tendon nom +tendonitis tendonitis nom +tendonitises tendonitis nom +tendons tendon nom +tendril tendril nom +tendrils tendril nom +tends tends sw +tenebrionid tenebrionid nom +tenebrionids tenebrionid nom +tenement tenement nom +tenements tenement nom +tenet tenet nom +tenets tenet nom +tenia tenia nom +tenias tenia nom +tenner tenner nom +tenners tenner nom +tennis tennis nom +tennises tennis nom +tenno tenno nom +tennos tenno nom +tenon tenon nom +tenoned tenon ver +tenoning tenon ver +tenons tenon nom +tenor tenor nom +tenoroon tenoroon nom +tenoroons tenoroon nom +tenors tenor nom +tenosynovitis tenosynovitis nom +tenosynovitises tenosynovitis nom +tenpence tenpence nom +tenpences tenpence nom +tenpin tenpin nom +tenpins tenpin nom +tenpounder tenpounder nom +tenpounders tenpounder nom +tenrec tenrec nom +tenrecs tenrec nom +tens ten nom +tense tense adj +tensed tense ver +tenseness tenseness nom +tensenesses tenseness nom +tenser tense adj +tenses tense nom +tensest tense adj +tensimeter tensimeter nom +tensimeters tensimeter nom +tensing tense ver +tensiometer tensiometer nom +tensiometers tensiometer nom +tension tension nom +tensioned tension ver +tensioning tension ver +tensions tension nom +tensities tensity nom +tensity tensity nom +tensor tensor nom +tensors tensor nom +tent tent nom +tentacle tentacle nom +tentacles tentacle nom +tentativeness tentativeness nom +tentativenesses tentativeness nom +tented tent ver +tenter tenter nom +tenterhook tenterhook nom +tenterhooks tenterhook nom +tenters tenter nom +tenth tenth nom +tenths tenth nom +tenting tent ver +tentings tenting nom +tentorium tentorium nom +tentoriums tentorium nom +tents tent nom +tenuities tenuity nom +tenuity tenuity nom +tenuousness tenuousness nom +tenuousnesses tenuousness nom +tenure tenure nom +tenured tenure ver +tenures tenure nom +tenuring tenure ver +tepee tepee nom +tepees tepee nom +tepid tepid adj +tepider tepid adj +tepidest tepid adj +tepidities tepidity nom +tepidity tepidity nom +tepidness tepidness nom +tepidnesses tepidness nom +tequila tequila nom +tequilas tequila nom +terabyte terabyte nom +terabytes terabyte nom +teratogen teratogen nom +teratogens teratogen nom +teratologies teratology nom +teratology teratology nom +terbium terbium nom +terbiums terbium nom +terce terce nom +tercel tercel nom +tercelet tercelet nom +tercelets tercelet nom +tercels tercel nom +tercentenaries tercentenary nom +tercentenary tercentenary nom +tercentennial tercentennial nom +tercentennials tercentennial nom +terces terce nom +tercet tercet nom +tercets tercet nom +terebinth terebinth nom +terebinths terebinth nom +teredo teredo nom +teredos teredo nom +tergiversate tergiversate ver +tergiversated tergiversate ver +tergiversates tergiversate ver +tergiversating tergiversate ver +tergiversation tergiversation nom +tergiversations tergiversation nom +teriyaki teriyaki nom +teriyakis teriyaki nom +term term nom +termagant termagant nom +termagants termagant nom +termed term ver +terminal terminal nom +terminals terminal nom +terminate terminate ver +terminated terminate ver +terminates terminate ver +terminating terminate ver +termination termination nom +terminations termination nom +terminator terminator nom +terminators terminator nom +terming term ver +termini terminus nom +terminologies terminology nom +terminology terminology nom +terminus terminus nom +termite termite nom +termites termite nom +terms term nom +tern tern nom +ternaries ternary nom +ternary ternary nom +ternion ternion nom +ternions ternion nom +terns tern nom +terpene terpene nom +terpenes terpene nom +terrace terrace nom +terraced terrace ver +terraces terrace nom +terracing terrace ver +terracotta terracotta nom +terracottas terracotta nom +terrain terrain nom +terrains terrain nom +terrapin terrapin nom +terrapins terrapin nom +terrarium terrarium nom +terrariums terrarium nom +terrazzo terrazzo nom +terrazzos terrazzo nom +terrestrial terrestrial nom +terrestrials terrestrial nom +terribleness terribleness nom +terriblenesses terribleness nom +terrier terrier nom +terriers terrier nom +terries terry nom +terrified terrify ver +terrifies terrify ver +terrify terrify ver +terrifying terrify ver +terrine terrine nom +terrines terrine nom +territorial territorial nom +territorialities territoriality nom +territoriality territoriality nom +territorialization territorialization nom +territorializations territorialization nom +territorials territorial nom +territories territory nom +territory territory nom +terror terror nom +terrorism terrorism nom +terrorisms terrorism nom +terrorist terrorist nom +terrorists terrorist nom +terrorization terrorization nom +terrorizations terrorization nom +terrorize terrorize ver +terrorized terrorize ver +terrorizes terrorize ver +terrorizing terrorize ver +terrors terror nom +terry terry nom +terrycloth terrycloth nom +terrycloths terrycloth nom +terse terse adj +terseness terseness nom +tersenesses terseness nom +terser terse adj +tersest terse adj +tertiaries tertiary nom +tertiary tertiary nom +terzetto terzetto nom +terzettos terzetto nom +tes te nom +tesla tesla nom +teslas tesla nom +tessellate tessellate ver +tessellated tessellate ver +tessellates tessellate ver +tessellating tessellate ver +tessellation tessellation nom +tessellations tessellation nom +test test nom +testa testa nom +testament testament nom +testaments testament nom +testas testa nom +testate testate nom +testates testate nom +testator testator nom +testators testator nom +testatrices testatrix nom +testatrix testatrix nom +tested test ver +testee testee nom +testees testee nom +tester tester nom +testers tester nom +testes testis nom +testicle testicle nom +testicles testicle nom +testier testy adj +testiest testy adj +testified testify ver +testifier testifier nom +testifiers testifier nom +testifies testify ver +testify testify ver +testifying testify ver +testimonial testimonial nom +testimonials testimonial nom +testimonies testimony nom +testimony testimony nom +testiness testiness nom +testinesses testiness nom +testing test ver +testings testing nom +testis testis nom +testosterone testosterone nom +testosterones testosterone nom +tests test nom +testudo testudo nom +testudos testudo nom +testy testy adj +tetanus tetanus nom +tetanuses tetanus nom +tetchier tetchy adj +tetchiest tetchy adj +tetchiness tetchiness nom +tetchinesses tetchiness nom +tetchy tetchy adj +teth teth nom +tether tether nom +tetherball tetherball nom +tetherballs tetherball nom +tethered tether ver +tethering tether ver +tethers tether nom +teths teth nom +tetra tetra nom +tetracaine tetracaine nom +tetracaines tetracaine nom +tetrachloride tetrachloride nom +tetrachlorides tetrachloride nom +tetracycline tetracycline nom +tetracyclines tetracycline nom +tetrad tetrad nom +tetrads tetrad nom +tetragon tetragon nom +tetragons tetragon nom +tetragram tetragram nom +tetragrams tetragram nom +tetrahedron tetrahedron nom +tetrahedrons tetrahedron nom +tetrahymena tetrahymena nom +tetrahymenas tetrahymena nom +tetralogies tetralogy nom +tetralogy tetralogy nom +tetrameter tetrameter nom +tetrameters tetrameter nom +tetrapod tetrapod nom +tetrapods tetrapod nom +tetras tetra nom +tetrasporangia tetrasporangium nom +tetrasporangium tetrasporangium nom +tetraspore tetraspore nom +tetraspores tetraspore nom +tetrode tetrode nom +tetrodes tetrode nom +text text nom +textbook textbook nom +textbooks textbook nom +textile textile nom +textiles textile nom +texts text nom +texture texture nom +textured texture ver +textures texture nom +texturing texture ver +th th sw +thalami thalamus nom +thalamus thalamus nom +thalassaemia thalassaemia nom +thalassaemias thalassaemia nom +thalassemia thalassemia nom +thalassemias thalassemia nom +thalidomide thalidomide nom +thalidomides thalidomide nom +thallium thallium nom +thalliums thallium nom +thallophyte thallophyte nom +thallophytes thallophyte nom +thallus thallus nom +thalluses thallus nom +thalweg thalweg nom +thalwegs thalweg nom +than than sw +thanatophobia thanatophobia nom +thanatophobias thanatophobia nom +thane thane nom +thanes thane nom +thaneship thaneship nom +thaneships thaneship nom +thank thank sw +thanked thank ver +thankful thankful adj +thankfuller thankful adj +thankfullest thankful adj +thankfulness thankfulness nom +thankfulnesses thankfulness nom +thanking thank ver +thanklessness thanklessness nom +thanklessnesses thanklessness nom +thanks thanks sw +thanksgiving thanksgiving nom +thanksgivings thanksgiving nom +thanx thanx sw +that that sw +that_s that_s sw +thatch thatch nom +thatched thatch ver +thatcher thatcher nom +thatchers thatcher nom +thatches thatch nom +thatching thatch ver +thatchings thatching nom +thats thats sw +thaw thaw nom +thawed thaw ver +thawing thaw ver +thawings thawing nom +thaws thaw nom +the the sw +theanthropism theanthropism nom +theanthropisms theanthropism nom +theater theater nom +theatergoer theatergoer nom +theatergoers theatergoer nom +theaters theater nom +theatre theatre nom +theatregoer theatregoer nom +theatregoers theatregoer nom +theatres theatre nom +theatrical theatrical nom +theatricalities theatricality nom +theatricality theatricality nom +theatricals theatrical nom +thebe thebe nom +thebes thebe nom +theca theca nom +thecae theca nom +thecodont thecodont nom +thecodonts thecodont nom +thee thee nom +thees thee nom +theft theft nom +thefts theft nom +their their sw +theirs theirs sw +theism theism nom +theisms theism nom +theist theist nom +theists theist nom +them them sw +theme theme nom +themed theme ver +themes theme nom +theming theme ver +themselves themselves sw +then then sw +thence thence sw +thens then nom +theocracies theocracy nom +theocracy theocracy nom +theodolite theodolite nom +theodolites theodolite nom +theologian theologian nom +theologians theologian nom +theologies theology nom +theologist theologist nom +theologists theologist nom +theologizer theologizer nom +theologizers theologizer nom +theology theology nom +theorem theorem nom +theorems theorem nom +theoretician theoretician nom +theoreticians theoretician nom +theories theory nom +theorise theorise ver +theorised theorise ver +theorises theorise ver +theorising theorise ver +theorist theorist nom +theorists theorist nom +theorization theorization nom +theorizations theorization nom +theorize theorize ver +theorized theorize ver +theorizes theorize ver +theorizing theorize ver +theory theory nom +theosophies theosophy nom +theosophist theosophist nom +theosophists theosophist nom +theosophy theosophy nom +therapeutic therapeutic nom +therapeutics therapeutic nom +therapies therapy nom +therapist therapist nom +therapists therapist nom +therapsid therapsid nom +therapsids therapsid nom +therapy therapy nom +there there sw +there_s there_s sw +thereafter thereafter sw +thereby thereby sw +therefore therefore sw +therein therein sw +theres theres sw +thereupon thereupon sw +therm therm nom +thermal thermal nom +thermals thermal nom +thermel thermel nom +thermels thermel nom +thermion thermion nom +thermions thermion nom +thermistor thermistor nom +thermistors thermistor nom +thermocouple thermocouple nom +thermocouples thermocouple nom +thermoelectricities thermoelectricity nom +thermoelectricity thermoelectricity nom +thermograph thermograph nom +thermographs thermograph nom +thermojunction thermojunction nom +thermojunctions thermojunction nom +thermometer thermometer nom +thermometers thermometer nom +thermometries thermometry nom +thermometry thermometry nom +thermopile thermopile nom +thermopiles thermopile nom +thermoplastic thermoplastic nom +thermoplastics thermoplastic nom +thermoreceptor thermoreceptor nom +thermoreceptors thermoreceptor nom +thermoregulator thermoregulator nom +thermoregulators thermoregulator nom +thermos thermos nom +thermoses thermos nom +thermosphere thermosphere nom +thermospheres thermosphere nom +thermostat thermostat nom +thermostats thermostat nom +thermostatted thermostat ver +thermostatting thermostat ver +therms therm nom +theropod theropod nom +theropods theropod nom +thesaurus thesaurus nom +thesauruses thesaurus nom +these these sw +theses theses nom +thesis thesis nom +thespian thespian nom +thespians thespian nom +theta theta nom +thetas theta nom +theurgies theurgy nom +theurgy theurgy nom +thew thew nom +thews thew nom +they they sw +they_d they_d sw +they_ll they_ll sw +they_re they_re sw +they_ve they_ve sw +thiamin thiamin nom +thiamine thiamine nom +thiamines thiamine nom +thiamins thiamin nom +thiazine thiazine nom +thiazines thiazine nom +thick thick adj +thicken thicken ver +thickened thicken ver +thickener thickener nom +thickeners thickener nom +thickening thicken ver +thickenings thickening nom +thickens thicken ver +thicker thick adj +thickest thick adj +thicket thicket nom +thickets thicket nom +thickhead thickhead nom +thickheads thickhead nom +thickness thickness nom +thicknesses thickness nom +thicks thick nom +thickset thickset nom +thicksets thickset nom +thief thief nom +thieve thieve ver +thieved thieve ver +thieveries thievery nom +thievery thievery nom +thieves thief nom +thieving thieve ver +thievings thieving nom +thievishness thievishness nom +thievishnesses thievishness nom +thigh thigh nom +thighbone thighbone nom +thighbones thighbone nom +thighs thigh nom +thill thill nom +thills thill nom +thimble thimble nom +thimbleberries thimbleberry nom +thimbleberry thimbleberry nom +thimbleful thimbleful nom +thimblefuls thimbleful nom +thimblerig thimblerig nom +thimblerigs thimblerig nom +thimbles thimble nom +thimbleweed thimbleweed nom +thimbleweeds thimbleweed nom +thimerosal thimerosal nom +thimerosals thimerosal nom +thin thin adj +thing thing nom +thingamabob thingamabob nom +thingamabobs thingamabob nom +thingamajig thingamajig nom +thingamajigs thingamajig nom +things thing nom +thingumabob thingumabob nom +thingumabobs thingumabob nom +thingumajig thingumajig nom +thingumajigs thingumajig nom +thingummies thingummy nom +thingummy thingummy nom +think think sw +thinker thinker nom +thinkers thinker nom +thinking think ver +thinkings thinking nom +thinks think nom +thinned thin ver +thinner thin adj +thinners thinner nom +thinness thinness nom +thinnesses thinness nom +thinnest thin adj +thinning thin ver +thinnings thinning nom +thins thin ver +thiocyanate thiocyanate nom +thiocyanates thiocyanate nom +thiopental thiopental nom +thiopentals thiopental nom +thioridazine thioridazine nom +thioridazines thioridazine nom +thiouracil thiouracil nom +thiouracils thiouracil nom +third third sw +thirds third nom +thirst thirst nom +thirsted thirst ver +thirstier thirsty adj +thirstiest thirsty adj +thirstiness thirstiness nom +thirstinesses thirstiness nom +thirsting thirst ver +thirsts thirst nom +thirsty thirsty adj +thirteen thirteen nom +thirteens thirteen nom +thirteenth thirteenth nom +thirteenths thirteenth nom +thirties thirty nom +thirtieth thirtieth nom +thirtieths thirtieth nom +thirty thirty nom +this this sw +thistle thistle nom +thistledown thistledown nom +thistledowns thistledown nom +thistles thistle nom +thole thole nom +tholed thole ver +tholepin tholepin nom +tholepins tholepin nom +tholes thole nom +tholing thole ver +thong thong nom +thongs thong nom +thorax thorax nom +thoraxes thorax nom +thorite thorite nom +thorites thorite nom +thorium thorium nom +thoriums thorium nom +thorn thorn nom +thorned thorn ver +thornier thorny adj +thorniest thorny adj +thorniness thorniness nom +thorninesses thorniness nom +thorning thorn ver +thorns thorn nom +thorny thorny adj +thorough thorough sw +thoroughbred thoroughbred nom +thoroughbreds thoroughbred nom +thorougher thorough adj +thoroughest thorough adj +thoroughfare thoroughfare nom +thoroughfares thoroughfare nom +thoroughly thoroughly sw +thoroughness thoroughness nom +thoroughnesses thoroughness nom +thoroughwort thoroughwort nom +thoroughworts thoroughwort nom +those those sw +thou thou nom +thoued thou ver +though though sw +thought think ver +thoughtfulness thoughtfulness nom +thoughtfulnesses thoughtfulness nom +thoughtlessness thoughtlessness nom +thoughtlessnesses thoughtlessness nom +thoughts thought nom +thouing thou ver +thous thou nom +thousand thousand nom +thousands thousand nom +thousandth thousandth nom +thousandths thousandth nom +thraldom thraldom nom +thraldoms thraldom nom +thrall thrall nom +thralldom thralldom nom +thralldoms thralldom nom +thralled thrall ver +thralling thrall ver +thralls thrall nom +thrash thrash nom +thrashed thrash ver +thrasher thrasher nom +thrashers thrasher nom +thrashes thrash nom +thrashing thrash ver +thrashings thrashing nom +thread thread nom +threaded thread ver +threader threader nom +threaders threader nom +threadfin threadfin nom +threadfins threadfin nom +threadfish threadfish nom +threadier thready adj +threadiest thready adj +threading thread ver +threads thread nom +threadworm threadworm nom +threadworms threadworm nom +thready thready adj +threat threat nom +threated threat ver +threaten threaten ver +threatened threaten ver +threatening threaten ver +threatens threaten ver +threating threat ver +threats threat nom +three three sw +threepence threepence nom +threes threes nom +threescore threescore nom +threescores threescore nom +threesome threesome nom +threesomes threesome nom +threnodies threnody nom +threnody threnody nom +threonine threonine nom +threonines threonine nom +thresh thresh nom +threshed thresh ver +thresher thresher nom +threshers thresher nom +threshes thresh nom +threshing thresh ver +threshings threshing nom +threshold threshold nom +thresholds threshold nom +threw throw ver +thrift thrift nom +thriftier thrifty adj +thriftiest thrifty adj +thriftiness thriftiness nom +thriftinesses thriftiness nom +thriftlessness thriftlessness nom +thriftlessnesses thriftlessness nom +thrifts thrift nom +thrifty thrifty adj +thrill thrill nom +thrilled thrill ver +thriller thriller nom +thrillers thriller nom +thrilling thrill ver +thrills thrill nom +thrip thrip nom +thrips thrip nom +thripses thrips nom +thrive thrive ver +thrived thrive ver +thrives thrive ver +thriving thrive ver +throat throat nom +throated throat ver +throatier throaty adj +throatiest throaty adj +throatiness throatiness nom +throatinesses throatiness nom +throating throat ver +throats throat nom +throatwort throatwort nom +throatworts throatwort nom +throaty throaty adj +throb throb nom +throbbed throb ver +throbbing throb ver +throbbings throbbing nom +throbs throb nom +throe throe nom +throes throe nom +thrombi thrombus nom +thrombin thrombin nom +thrombins thrombin nom +thrombocyte thrombocyte nom +thrombocytes thrombocyte nom +thrombocytopenia thrombocytopenia nom +thrombocytopenias thrombocytopenia nom +thromboembolism thromboembolism nom +thromboembolisms thromboembolism nom +thrombokinase thrombokinase nom +thrombokinases thrombokinase nom +thrombophlebitides thrombophlebitis nom +thrombophlebitis thrombophlebitis nom +thromboplastin thromboplastin nom +thromboplastins thromboplastin nom +thrombose thrombose ver +thrombosed thrombose ver +thromboses thrombose ver +thrombosing thrombose ver +thrombosis thrombosis nom +thrombus thrombus nom +throne throne nom +throned throne ver +thrones throne nom +throng throng nom +thronged throng ver +thronging throng ver +throngs throng nom +throning throne ver +throstle throstle nom +throstles throstle nom +throttle throttle nom +throttled throttle ver +throttlehold throttlehold nom +throttleholds throttlehold nom +throttler throttler nom +throttlers throttler nom +throttles throttle nom +throttling throttle ver +throttlings throttling nom +through through sw +throughout throughout sw +throughput throughput nom +throughputs throughput nom +throughway throughway nom +throughways throughway nom +throw throw nom +throwaway throwaway nom +throwaways throwaway nom +throwback throwback nom +throwbacks throwback nom +thrower thrower nom +throwers thrower nom +throwing throw ver +thrown throw ver +throws throw nom +throwster throwster nom +throwsters throwster nom +thru thru sw +thrum thrum nom +thrummed thrum ver +thrumming thrum ver +thrums thrum nom +thrush thrush nom +thrushes thrush nom +thrust thrust ver +thruster thruster nom +thrusters thruster nom +thrusting thrust ver +thrustings thrusting nom +thrusts thrust nom +thruway thruway nom +thruways thruway nom +thud thud nom +thudded thud ver +thudding thud ver +thuds thud nom +thug thug nom +thuggee thuggee nom +thuggees thuggee nom +thuggeries thuggery nom +thuggery thuggery nom +thugs thug nom +thulium thulium nom +thuliums thulium nom +thumb thumb nom +thumbed thumb ver +thumbhole thumbhole nom +thumbholes thumbhole nom +thumbing thumb ver +thumbnail thumbnail nom +thumbnails thumbnail nom +thumbnut thumbnut nom +thumbnuts thumbnut nom +thumbs thumb nom +thumbscrew thumbscrew nom +thumbscrews thumbscrew nom +thumbstall thumbstall nom +thumbstalls thumbstall nom +thumbtack thumbtack nom +thumbtacked thumbtack ver +thumbtacking thumbtack ver +thumbtacks thumbtack nom +thump thump nom +thumped thump ver +thumping thump ver +thumps thump nom +thunder thunder nom +thunderbird thunderbird nom +thunderbirds thunderbird nom +thunderbolt thunderbolt nom +thunderbolts thunderbolt nom +thunderclap thunderclap nom +thunderclaps thunderclap nom +thundercloud thundercloud nom +thunderclouds thundercloud nom +thundered thunder ver +thunderer thunderer nom +thunderers thunderer nom +thunderhead thunderhead nom +thunderheads thunderhead nom +thundering thunder ver +thunderings thundering nom +thunders thunder nom +thundershower thundershower nom +thundershowers thundershower nom +thunderstorm thunderstorm nom +thunderstorms thunderstorm nom +thunk thunk nom +thunks thunk nom +thurible thurible nom +thuribles thurible nom +thurifer thurifer nom +thurifers thurifer nom +thurified thurify ver +thurifies thurify ver +thurify thurify ver +thurifying thurify ver +thus thus sw +thwack thwack nom +thwacked thwack ver +thwacker thwacker nom +thwackers thwacker nom +thwacking thwack ver +thwacks thwack nom +thwart thwart nom +thwarted thwart ver +thwarting thwart ver +thwartings thwarting nom +thwarts thwart nom +thylacine thylacine nom +thylacines thylacine nom +thyme thyme nom +thymes thyme nom +thymine thymine nom +thymines thymine nom +thymol thymol nom +thymols thymol nom +thymus thymus nom +thymuses thymus nom +thyroglobulin thyroglobulin nom +thyroglobulins thyroglobulin nom +thyroid thyroid nom +thyroidectomies thyroidectomy nom +thyroidectomy thyroidectomy nom +thyroids thyroid nom +thyrotoxicoses thyrotoxicosis nom +thyrotoxicosis thyrotoxicosis nom +thyrotrophin thyrotrophin nom +thyrotrophins thyrotrophin nom +thyroxin thyroxin nom +thyroxine thyroxine nom +thyroxines thyroxine nom +thyroxins thyroxin nom +ti ti nom +tiara tiara nom +tiaras tiara nom +tibia tibia nom +tibiae tibia nom +tic tic nom +tical tical nom +ticals tical nom +tick tick nom +ticked tick ver +ticker ticker nom +tickers ticker nom +ticket ticket nom +ticketed ticket ver +ticketing ticket ver +tickets ticket nom +ticking tick ver +tickings ticking nom +tickle tickle nom +tickled tickle ver +tickler tickler nom +ticklers tickler nom +tickles tickle nom +tickling tickle ver +ticklishness ticklishness nom +ticklishnesses ticklishness nom +ticks tick nom +tickseed tickseed nom +tickseeds tickseed nom +ticktack ticktack nom +ticktacked ticktack ver +ticktacking ticktack ver +ticktacks ticktack nom +ticktacktoe ticktacktoe nom +ticktacktoes ticktacktoe nom +ticktock ticktock nom +ticktocked ticktock ver +ticktocking ticktock ver +ticktocks ticktock nom +tics tic nom +tictac tictac nom +tictacs tictac nom +tidbit tidbit nom +tidbits tidbit nom +tiddler tiddler nom +tiddlers tiddler nom +tiddley tiddley adj +tiddlier tiddley adj +tiddliest tiddley adj +tiddly tiddly adj +tide tide nom +tided tide ver +tideland tideland nom +tidemark tidemark nom +tidemarks tidemark nom +tides tide nom +tidewater tidewater nom +tidewaters tidewater nom +tideway tideway nom +tideways tideway nom +tidied tidy ver +tidier tidy adj +tidies tidy nom +tidiest tidy adj +tidiness tidiness nom +tidinesses tidiness nom +tiding tide ver +tidy tidy adj +tidying tidy ver +tie tie nom +tieback tieback nom +tiebacks tieback nom +tiebreaker tiebreaker nom +tiebreakers tiebreaker nom +tied tie ver +tiepin tiepin nom +tiepins tiepin nom +tier tier nom +tierce tierce nom +tiercel tiercel nom +tiercels tiercel nom +tierces tierce nom +tiered tier ver +tiering tier ver +tiers tier nom +ties tie nom +tiff tiff nom +tiffed tiff ver +tiffin tiffin nom +tiffing tiff ver +tiffins tiffin nom +tiffs tiff nom +tiger tiger nom +tigers tiger nom +tight tight adj +tighten tighten ver +tightened tighten ver +tightener tightener nom +tighteners tightener nom +tightening tighten ver +tightens tighten ver +tighter tight adj +tightest tight adj +tightfistedness tightfistedness nom +tightfistednesses tightfistedness nom +tightness tightness nom +tightnesses tightness nom +tightrope tightrope nom +tightroped tightrope ver +tightropes tightrope nom +tightroping tightrope ver +tightwad tightwad nom +tightwads tightwad nom +tiglon tiglon nom +tiglons tiglon nom +tigon tigon nom +tigons tigon nom +tigress tigress nom +tigresses tigress nom +tike tike nom +tikes tike nom +tilde tilde nom +tildes tilde nom +tile tile nom +tiled tile ver +tilefish tilefish nom +tiler tiler nom +tilers tiler nom +tiles tile nom +tiling tile ver +tilings tiling nom +till till nom +tillage tillage nom +tillages tillage nom +tilled till ver +tiller tiller nom +tillered tiller ver +tillering tiller ver +tillers tiller nom +tilling till ver +tills till nom +tilt tilt nom +tilted tilt ver +tilth tilth nom +tilths tilth nom +tilting tilt ver +tilts tilt nom +tiltyard tiltyard nom +tiltyards tiltyard nom +timbale timbale nom +timbales timbale nom +timber timber nom +timbered timber ver +timbering timber ver +timberland timberland nom +timberlands timberland nom +timberline timberline nom +timberlines timberline nom +timberman timberman nom +timbermen timberman nom +timbers timber nom +timbre timbre nom +timbrel timbrel nom +timbrels timbrel nom +timbres timbre nom +time time nom +timecard timecard nom +timecards timecard nom +timed time ver +timekeeper timekeeper nom +timekeepers timekeeper nom +timekeeping timekeeping nom +timekeepings timekeeping nom +timelessness timelessness nom +timelessnesses timelessness nom +timelier timely adj +timeliest timely adj +timeliness timeliness nom +timelinesses timeliness nom +timely timely adj +timeout timeout nom +timeouts timeout nom +timepiece timepiece nom +timepieces timepiece nom +timer timer nom +timers timer nom +times time nom +timeserver timeserver nom +timeservers timeserver nom +timeserving timeserving nom +timeservings timeserving nom +timetable timetable nom +timetables timetable nom +timework timework nom +timeworks timework nom +timid timid adj +timider timid adj +timidest timid adj +timidities timidity nom +timidity timidity nom +timidness timidness nom +timidnesses timidness nom +timing time ver +timings timing nom +timorousness timorousness nom +timorousnesses timorousness nom +timothies timothy nom +timothy timothy nom +timpani timpani nom +timpanist timpanist nom +timpanists timpanist nom +tin tin nom +tinamou tinamou nom +tinamous tinamou nom +tinct tinct ver +tincted tinct ver +tincting tinct ver +tincts tinct ver +tincture tincture nom +tinctured tincture ver +tinctures tincture nom +tincturing tincture ver +tinder tinder nom +tinderbox tinderbox nom +tinderboxes tinderbox nom +tinders tinder nom +tine tine nom +tinea tinea nom +tineas tinea nom +tineid tineid nom +tineids tineid nom +tines tine nom +tinfoil tinfoil nom +tinfoils tinfoil nom +ting ting nom +tinge tinge nom +tinged ting ver +tingeing tinge ver +tinges tinge nom +tinging ting ver +tingle tingle nom +tingled tingle ver +tingles tingle nom +tinglier tingly adj +tingliest tingly adj +tingling tingle ver +tingly tingly adj +tings ting nom +tinier tiny adj +tiniest tiny adj +tininess tininess nom +tininesses tininess nom +tink tink ver +tinked tink ver +tinker tinker nom +tinkered tinker ver +tinkerer tinkerer nom +tinkerers tinkerer nom +tinkering tinker ver +tinkers tinker nom +tinking tink ver +tinkle tinkle nom +tinkled tinkle ver +tinkles tinkle nom +tinklier tinkly adj +tinkliest tinkly adj +tinkling tinkle ver +tinkly tinkly adj +tinks tink ver +tinned tin ver +tinnier tinny adj +tinniest tinny adj +tinniness tinniness nom +tinninesses tinniness nom +tinning tin ver +tinnings tinning nom +tinnitus tinnitus nom +tinnituses tinnitus nom +tinny tinny adj +tinplate tinplate nom +tinplates tinplate nom +tins tin nom +tinsel tinsel nom +tinseled tinsel ver +tinseling tinsel ver +tinsels tinsel nom +tinsmith tinsmith nom +tinsmiths tinsmith nom +tint tint nom +tintack tintack nom +tintacks tintack nom +tinted tint ver +tinting tint ver +tintings tinting nom +tintinnabulate tintinnabulate ver +tintinnabulated tintinnabulate ver +tintinnabulates tintinnabulate ver +tintinnabulating tintinnabulate ver +tintinnabulation tintinnabulation nom +tintinnabulations tintinnabulation nom +tints tint nom +tintype tintype nom +tintypes tintype nom +tinware tinware nom +tinwares tinware nom +tiny tiny adj +tip tip nom +tipi tipi nom +tipis tipi nom +tipped tip ver +tipper tipper nom +tippers tipper nom +tippet tippet nom +tippets tippet nom +tippier tippy adj +tippiest tippy adj +tipping tip ver +tipple tipple nom +tippled tipple ver +tippler tippler nom +tipplers tippler nom +tipples tipple nom +tippling tipple ver +tippy tippy adj +tippytoe tippytoe ver +tippytoed tippytoe ver +tippytoeing tippytoe ver +tippytoes tippytoe ver +tips tip nom +tipsier tipsy adj +tipsiest tipsy adj +tipsiness tipsiness nom +tipsinesses tipsiness nom +tipstaff tipstaff nom +tipstaffs tipstaff nom +tipster tipster nom +tipsters tipster nom +tipsy tipsy adj +tiptoe tiptoe nom +tiptoed tiptoe ver +tiptoeing tiptoe ver +tiptoes tiptoe nom +tiptop tiptop nom +tiptops tiptop nom +tirade tirade nom +tirades tirade nom +tire tire nom +tired tire ver +tireder tired adj +tiredest tired adj +tiredness tiredness nom +tirednesses tiredness nom +tirelessness tirelessness nom +tirelessnesses tirelessness nom +tires tire nom +tiresomeness tiresomeness nom +tiresomenesses tiresomeness nom +tiring tire ver +tiro tiro nom +tiros tiro nom +tis ti nom +tisane tisane nom +tisanes tisane nom +tissue tissue nom +tissued tissue ver +tissues tissue nom +tissuing tissue ver +tit tit nom +titan titan nom +titania titania nom +titanias titania nom +titanium titanium nom +titaniums titanium nom +titanosaur titanosaur nom +titanosaurs titanosaur nom +titans titan nom +titbit titbit nom +titbits titbit nom +titer titer nom +titers titer nom +tithe tithe nom +tithed tithe ver +tither tither nom +tithers tither nom +tithes tithe nom +tithing tithe ver +tithonia tithonia nom +tithonias tithonia nom +titi titi nom +titian titian nom +titians titian nom +titillate titillate ver +titillated titillate ver +titillates titillate ver +titillating titillate ver +titillation titillation nom +titillations titillation nom +titis titi nom +titivate titivate ver +titivated titivate ver +titivates titivate ver +titivating titivate ver +titivation titivation nom +titivations titivation nom +titlark titlark nom +titlarks titlark nom +title title nom +titled title ver +titleholder titleholder nom +titleholders titleholder nom +titles title nom +titling title ver +titmice titmouse nom +titmouse titmouse nom +titrate titrate ver +titrated titrate ver +titrates titrate ver +titrating titrate ver +titration titration nom +titrations titration nom +titre titre nom +titres titre nom +tits tit nom +titter titter nom +tittered titter ver +tittering titter ver +titters titter nom +titties titty nom +tittivate tittivate ver +tittivated tittivate ver +tittivates tittivate ver +tittivating tittivate ver +tittle tittle nom +tittles tittle nom +titty titty nom +titular titular nom +titulars titular nom +tizzies tizzy nom +tizzy tizzy nom +to to sw +toad toad nom +toadfish toadfish nom +toadflax toadflax nom +toadflaxes toadflax nom +toadied toady ver +toadies toady nom +toads toad nom +toadstool toadstool nom +toadstools toadstool nom +toady toady nom +toadying toady ver +toast toast nom +toasted toast ver +toaster toaster nom +toasters toaster nom +toastier toasty adj +toastiest toasty adj +toasting toast ver +toastings toasting nom +toastmaster toastmaster nom +toastmasters toastmaster nom +toastmistress toastmistress nom +toastmistresses toastmistress nom +toasts toast nom +toasty toasty adj +tobacco tobacco nom +tobacconist tobacconist nom +tobacconists tobacconist nom +tobaccos tobacco nom +tobies toby nom +toboggan toboggan nom +tobogganed toboggan ver +tobogganer tobogganer nom +tobogganers tobogganer nom +tobogganing toboggan ver +tobogganings tobogganing nom +tobogganist tobogganist nom +tobogganists tobogganist nom +toboggans toboggan nom +toby toby nom +toccata toccata nom +toccatas toccata nom +tocologies tocology nom +tocology tocology nom +tocopherol tocopherol nom +tocopherols tocopherol nom +tocsin tocsin nom +tocsins tocsin nom +today today nom +todays today nom +toddies toddy nom +toddle toddle nom +toddled toddle ver +toddler toddler nom +toddlers toddler nom +toddles toddle nom +toddling toddle ver +toddy toddy nom +todies tody nom +tody tody nom +toe toe nom +toea toea nom +toeas toea nom +toecap toecap nom +toecaps toecap nom +toed toe ver +toehold toehold nom +toeholds toehold nom +toeing toe ver +toenail toenail nom +toenailed toenail ver +toenailing toenail ver +toenails toenail nom +toes toe nom +toff toff nom +toffee toffee nom +toffees toffee nom +toffies toffy nom +toffs toff nom +toffy toffy nom +tofu tofu nom +tofus tofu nom +tog tog nom +toga toga nom +togas toga nom +together together sw +togetherness togetherness nom +togethernesses togetherness nom +togged tog ver +togging tog ver +toggle toggle nom +toggled toggle ver +toggles toggle nom +toggling toggle ver +togs tog nom +toil toil nom +toiled toil ver +toiler toiler nom +toilers toiler nom +toilet toilet nom +toileted toilet ver +toileting toilet ver +toiletries toiletry nom +toiletry toiletry nom +toilets toilet nom +toilette toilette nom +toilettes toilette nom +toiling toil ver +toils toil nom +toilsomeness toilsomeness nom +toilsomenesses toilsomeness nom +toitoi toitoi nom +toitois toitoi nom +tokamak tokamak nom +tokamaks tokamak nom +toke toke nom +toked toke ver +token token nom +tokened token ver +tokening token ver +tokenism tokenism nom +tokenisms tokenism nom +tokens token nom +tokes toke nom +toking toke ver +tolbooth tolbooth nom +tolbooths tolbooth nom +tolbutamide tolbutamide nom +tolbutamides tolbutamide nom +told tell ver +tole tole nom +toled tole ver +tolerance tolerance nom +tolerances tolerance nom +tolerate tolerate ver +tolerated tolerate ver +tolerates tolerate ver +tolerating tolerate ver +toleration toleration nom +tolerations toleration nom +toles tole nom +toling tole ver +toll toll nom +tollbar tollbar nom +tollbars tollbar nom +tollbooth tollbooth nom +tollbooths tollbooth nom +tolled toll ver +toller toller nom +tollers toller nom +tollgate tollgate nom +tollgates tollgate nom +tollhouse tollhouse nom +tollhouses tollhouse nom +tolling toll ver +tollkeeper tollkeeper nom +tollkeepers tollkeeper nom +tollman tollman nom +tollmen tollman nom +tolls toll nom +tollway tollway nom +tollways tollway nom +tolu tolu nom +toluene toluene nom +toluenes toluene nom +tolus tolu nom +tom tom nom +tomahawk tomahawk nom +tomahawked tomahawk ver +tomahawking tomahawk ver +tomahawks tomahawk nom +tomalley tomalley nom +tomalleys tomalley nom +tomatillo tomatillo nom +tomatilloes tomatillo nom +tomatillos tomatillo nom +tomato tomato nom +tomatoes tomato nom +tomb tomb nom +tombac tombac nom +tombacs tombac nom +tombak tombak nom +tombaks tombak nom +tombed tomb ver +tombing tomb ver +tombola tombola nom +tombolas tombola nom +tomboy tomboy nom +tomboyishness tomboyishness nom +tomboyishnesses tomboyishness nom +tomboys tomboy nom +tombs tomb nom +tombstone tombstone nom +tombstones tombstone nom +tomcat tomcat nom +tomcats tomcat nom +tomcatted tomcat ver +tomcatting tomcat ver +tome tome nom +tomenta tomentum nom +tomentum tomentum nom +tomes tome nom +tomfool tomfool nom +tomfooleries tomfoolery nom +tomfoolery tomfoolery nom +tomfools tomfool nom +tommed tom ver +tomming tom ver +tommyrot tommyrot nom +tommyrots tommyrot nom +tomograph tomograph nom +tomographies tomography nom +tomographs tomograph nom +tomography tomography nom +tomorrow tomorrow nom +tomorrows tomorrow nom +toms tom nom +tomtit tomtit nom +tomtits tomtit nom +ton ton nom +tonalities tonality nom +tonality tonality nom +tone tone nom +tonearm tonearm nom +tonearms tonearm nom +toned tone ver +toner toner nom +toners toner nom +tones tone nom +tong tong nom +tonged tong ver +tonging tong ver +tongs tong nom +tongue tongue nom +tongued tongue ver +tonguefish tonguefish nom +tongues tongue nom +tonguing tongue ver +tonic tonic nom +tonicities tonicity nom +tonicity tonicity nom +tonics tonic nom +tonier tony adj +toniest tony adj +tonight tonight nom +tonights tonight nom +toning tone ver +tonnage tonnage nom +tonnages tonnage nom +tonne tonne nom +tonnes tonne nom +tons ton nom +tonsil tonsil nom +tonsillectomies tonsillectomy nom +tonsillectomy tonsillectomy nom +tonsillitis tonsillitis nom +tonsillitises tonsillitis nom +tonsils tonsil nom +tonsure tonsure nom +tonsured tonsure ver +tonsures tonsure nom +tonsuring tonsure ver +tontine tontine nom +tontines tontine nom +tonus tonus nom +tonuses tonus nom +tony tony adj +too too sw +took took sw +tool tool nom +toolbox toolbox nom +toolboxes toolbox nom +tooled tool ver +tooling tool ver +toolmaker toolmaker nom +toolmakers toolmaker nom +tools tool nom +toot toot nom +tooted toot ver +tooter tooter nom +tooters tooter nom +tooth tooth nom +toothache toothache nom +toothaches toothache nom +toothbrush toothbrush nom +toothbrushes toothbrush nom +toothed tooth ver +toothier toothy adj +toothiest toothy adj +toothing tooth ver +toothpaste toothpaste nom +toothpastes toothpaste nom +toothpick toothpick nom +toothpicks toothpick nom +tooths tooth ver +toothsomeness toothsomeness nom +toothsomenesses toothsomeness nom +toothwort toothwort nom +toothworts toothwort nom +toothy toothy adj +tooting toot ver +tootle tootle nom +tootled tootle ver +tootles tootle nom +tootling tootle ver +toots toot nom +top top nom +topaz topaz nom +topazes topaz nom +topcoat topcoat nom +topcoats topcoat nom +topdressing topdressing nom +topdressings topdressing nom +tope tope ver +toped tope ver +topee topee nom +topees topee nom +toper toper nom +topers toper nom +topes tope ver +topgallant topgallant nom +topgallants topgallant nom +topi topi nom +topiaries topiary nom +topiary topiary nom +topic topic nom +topicalities topicality nom +topicality topicality nom +topics topic nom +toping tope ver +topis topi nom +topknot topknot nom +topknots topknot nom +topmast topmast nom +topmasts topmast nom +topminnow topminnow nom +topminnows topminnow nom +topographer topographer nom +topographers topographer nom +topographies topography nom +topography topography nom +topologies topology nom +topology topology nom +toponym toponym nom +toponyms toponym nom +topped top ver +topper topper nom +toppers topper nom +topping top ver +toppings topping nom +topple topple ver +toppled topple ver +topples topple ver +toppling topple ver +tops top nom +topsail topsail nom +topsails topsail nom +topside topside nom +topsides topside nom +topsoil topsoil nom +topsoiled topsoil ver +topsoiling topsoil ver +topsoils topsoil nom +topspin topspin nom +topspins topspin nom +toque toque nom +toques toque nom +tor tor nom +torah torah nom +torahs torah nom +torch torch nom +torchbearer torchbearer nom +torchbearers torchbearer nom +torched torch ver +torches torch nom +torching torch ver +torchlight torchlight nom +torchlights torchlight nom +tore tear ver +toreador toreador nom +toreadors toreador nom +torero torero nom +toreros torero nom +tores tore nom +tori torus nom +torment torment nom +tormented torment ver +tormenter tormenter nom +tormenters tormenter nom +tormenting torment ver +tormentor tormentor nom +tormentors tormentor nom +torments torment nom +torn tear ver +tornado tornado nom +tornadoes tornado nom +tornillo tornillo nom +tornillos tornillo nom +toroid toroid nom +toroids toroid nom +torpedo torpedo nom +torpedoed torpedo ver +torpedoes torpedo nom +torpedoing torpedo ver +torpid torpid nom +torpidities torpidity nom +torpidity torpidity nom +torpidness torpidness nom +torpidnesses torpidness nom +torpids torpid nom +torpor torpor nom +torpors torpor nom +torque torque nom +torqued torque ver +torques torque nom +torquing torque ver +torr torr nom +torrent torrent nom +torrents torrent nom +torrid torrid adj +torrider torrid adj +torridest torrid adj +torridities torridity nom +torridity torridity nom +torridness torridness nom +torridnesses torridness nom +torrs torr nom +tors tor nom +torsion torsion nom +torsions torsion nom +torsk torsk nom +torsks torsk nom +torso torso nom +torsos torso nom +tort tort nom +torte torte nom +tortellini tortellini nom +tortellinis tortellini nom +tortes torte nom +torticollis torticollis nom +torticollises torticollis nom +tortilla tortilla nom +tortillas tortilla nom +tortoise tortoise nom +tortoises tortoise nom +tortoiseshell tortoiseshell nom +tortoiseshells tortoiseshell nom +tortoni tortoni nom +tortonis tortoni nom +tortricid tortricid nom +tortricids tortricid nom +tortrix tortrix nom +tortrixes tortrix nom +torts tort nom +tortuosities tortuosity nom +tortuosity tortuosity nom +tortuousness tortuousness nom +tortuousnesses tortuousness nom +torture torture nom +tortured torture ver +torturer torturer nom +torturers torturer nom +tortures torture nom +torturing torture ver +torturings torturing nom +torus torus nom +tosh tosh nom +toshes tosh nom +toss toss nom +tossed toss ver +tosses toss nom +tossing toss ver +tossup tossup nom +tossups tossup nom +tostada tostada nom +tostadas tostada nom +tot tot nom +total total nom +totaled total ver +totaling total ver +totalisator totalisator nom +totalisators totalisator nom +totaliser totaliser nom +totalisers totaliser nom +totalism totalism nom +totalisms totalism nom +totalitarian totalitarian nom +totalitarianism totalitarianism nom +totalitarianisms totalitarianism nom +totalitarians totalitarian nom +totalities totality nom +totality totality nom +totalizator totalizator nom +totalizators totalizator nom +totalizer totalizer nom +totalizers totalizer nom +totals total nom +tote tote nom +toted tote ver +totem totem nom +totemism totemism nom +totemisms totemism nom +totems totem nom +toter toter nom +toters toter nom +totes tote nom +toting tote ver +tots tot nom +totted tot ver +totter totter nom +tottered totter ver +totterer totterer nom +totterers totterer nom +tottering totter ver +totters totter nom +totting tot ver +toucan toucan nom +toucanet toucanet nom +toucanets toucanet nom +toucans toucan nom +touch touch nom +touchback touchback nom +touchbacks touchback nom +touchdown touchdown nom +touchdowns touchdown nom +touched touch ver +touches touch nom +touchier touchy adj +touchiest touchy adj +touchiness touchiness nom +touchinesses touchiness nom +touching touch ver +touchings touching nom +touchline touchline nom +touchlines touchline nom +touchscreen touchscreen nom +touchscreens touchscreen nom +touchstone touchstone nom +touchstones touchstone nom +touchwood touchwood nom +touchwoods touchwood nom +touchy touchy adj +tough tough adj +toughen toughen ver +toughened toughen ver +toughener toughener nom +tougheners toughener nom +toughening toughen ver +toughens toughen ver +tougher tough adj +toughest tough adj +toughie toughie nom +toughies toughie nom +toughness toughness nom +toughnesses toughness nom +toughs tough nom +toupee toupee nom +toupees toupee nom +tour tour nom +touraco touraco nom +touracos touraco nom +toured tour ver +tourer tourer nom +tourers tourer nom +touring tour ver +tourings touring nom +tourism tourism nom +tourisms tourism nom +tourist tourist nom +tourists tourist nom +tourmaline tourmaline nom +tourmalines tourmaline nom +tournament tournament nom +tournaments tournament nom +tourney tourney nom +tourneyed tourney ver +tourneying tourney ver +tourneys tourney nom +tourniquet tourniquet nom +tourniquets tourniquet nom +tours tour nom +tousle tousle nom +tousled tousle ver +tousles tousle nom +tousling tousle ver +tout tout nom +touted tout ver +touting tout ver +touts tout nom +tow tow nom +towage towage nom +towages towage nom +toward toward sw +towards towards sw +towboat towboat nom +towboats towboat nom +towed tow ver +towel towel nom +toweled towel ver +towelette towelette nom +towelettes towelette nom +toweling towel ver +towelings toweling nom +towelling towelling nom +towellings towelling nom +towels towel nom +tower tower nom +towered tower ver +towering tower ver +towers tower nom +towhead towhead nom +towheads towhead nom +towhee towhee nom +towhees towhee nom +towing tow ver +towline towline nom +towlines towline nom +town town nom +townee townee nom +townees townee nom +townhouse townhouse nom +townhouses townhouse nom +townie townie nom +townies townie nom +towns town nom +townsfolk townsfolk nom +township township nom +townships township nom +townsman townsman nom +townsmen townsman nom +townswoman townswoman nom +townswomen townswoman nom +towny towny nom +towpath towpath nom +towpaths towpath nom +towrope towrope nom +towropes towrope nom +tows tow nom +toxaemia toxaemia nom +toxaemias toxaemia nom +toxemia toxemia nom +toxemias toxemia nom +toxic toxic nom +toxicities toxicity nom +toxicity toxicity nom +toxicologies toxicology nom +toxicologist toxicologist nom +toxicologists toxicologist nom +toxicology toxicology nom +toxics toxic nom +toxin toxin nom +toxins toxin nom +toy toy nom +toyed toy ver +toying toy ver +toyings toying nom +toyon toyon nom +toyons toyon nom +toys toy nom +toyshop toyshop nom +toyshops toyshop nom +trace trace nom +traced trace ver +tracer tracer nom +traceries tracery nom +tracers tracer nom +tracery tracery nom +traces trace nom +trachea trachea nom +tracheae trachea nom +tracheid tracheid nom +tracheids tracheid nom +tracheitis tracheitis nom +tracheitises tracheitis nom +tracheophyte tracheophyte nom +tracheophytes tracheophyte nom +tracheostomies tracheostomy nom +tracheostomy tracheostomy nom +tracheotomies tracheotomy nom +tracheotomy tracheotomy nom +trachoma trachoma nom +trachomas trachoma nom +tracing trace ver +tracings tracing nom +track track nom +trackball trackball nom +trackballs trackball nom +tracked track ver +tracker tracker nom +trackers tracker nom +tracking track ver +trackings tracking nom +tracklayer tracklayer nom +tracklayers tracklayer nom +tracks track nom +tract tract nom +tractabilities tractability nom +tractability tractability nom +tractableness tractableness nom +tractablenesses tractableness nom +traction traction nom +tractions traction nom +tractor tractor nom +tractors tractor nom +tracts tract nom +trad trad nom +trade trade nom +tradecraft tradecraft nom +tradecrafts tradecraft nom +traded trade ver +trademark trademark nom +trademarked trademark ver +trademarking trademark ver +trademarks trademark nom +tradeoff tradeoff nom +tradeoffs tradeoff nom +trader trader nom +traders trader nom +trades trad nom +tradesman tradesman nom +tradesmen tradesman nom +tradeswoman tradeswoman nom +tradeswomen tradeswoman nom +trading trade ver +tradings trading nom +tradition tradition nom +traditionalism traditionalism nom +traditionalisms traditionalism nom +traditionalist traditionalist nom +traditionalists traditionalist nom +traditionalities traditionality nom +traditionality traditionality nom +traditions tradition nom +traduce traduce ver +traduced traduce ver +traducement traducement nom +traducements traducement nom +traducer traducer nom +traducers traducer nom +traduces traduce ver +traducing traduce ver +traffic traffic nom +trafficator trafficator nom +trafficators trafficator nom +trafficked traffic ver +trafficker trafficker nom +traffickers trafficker nom +trafficking traffic ver +traffickings trafficking nom +traffics traffic nom +tragacanth tragacanth nom +tragacanths tragacanth nom +tragedian tragedian nom +tragedians tragedian nom +tragedienne tragedienne nom +tragediennes tragedienne nom +tragedies tragedy nom +tragedy tragedy nom +tragicomedies tragicomedy nom +tragicomedy tragicomedy nom +tragopan tragopan nom +tragopans tragopan nom +trail trail nom +trailblazer trailblazer nom +trailblazers trailblazer nom +trailblazing trailblazing nom +trailblazings trailblazing nom +trailed trail ver +trailer trailer nom +trailers trailer nom +trailing trail ver +trails trail nom +train train nom +trainbearer trainbearer nom +trainbearers trainbearer nom +trained train ver +trainee trainee nom +trainees trainee nom +traineeship traineeship nom +traineeships traineeship nom +trainer trainer nom +trainers trainer nom +training train ver +trainings training nom +trainload trainload nom +trainloads trainload nom +trainman trainman nom +trainmen trainman nom +trains train nom +traipse traipse nom +traipsed traipse ver +traipses traipse nom +traipsing traipse ver +trait trait nom +traitor traitor nom +traitorousness traitorousness nom +traitorousnesses traitorousness nom +traitors traitor nom +traitress traitress nom +traitresses traitress nom +traits trait nom +trajectories trajectory nom +trajectory trajectory nom +tram tram nom +tramcar tramcar nom +tramcars tramcar nom +tramline tramline nom +tramlines tramline nom +trammed tram ver +trammel trammel nom +trammeled trammel ver +trammeling trammel ver +trammels trammel nom +tramming tram ver +tramontana tramontana nom +tramontanas tramontana nom +tramontane tramontane nom +tramontanes tramontane nom +tramp tramp nom +tramped tramp ver +tramper tramper nom +trampers tramper nom +tramping tramp ver +trample trample nom +trampled trample ver +trampler trampler nom +tramplers trampler nom +tramples trample nom +trampling trample ver +trampoline trampoline nom +trampolines trampoline nom +tramps tramp nom +trams tram nom +tramway tramway nom +tramways tramway nom +trance trance nom +tranced trance ver +trances trance nom +trancing trance ver +tranquil tranquil adj +tranquiler tranquil adj +tranquilest tranquil adj +tranquilities tranquility nom +tranquility tranquility nom +tranquilize tranquilize ver +tranquilized tranquilize ver +tranquilizer tranquilizer nom +tranquilizers tranquilizer nom +tranquilizes tranquilize ver +tranquilizing tranquilize ver +tranquillities tranquillity nom +tranquillity tranquillity nom +tranquillize tranquillize ver +tranquillized tranquillize ver +tranquillizer tranquillizer nom +tranquillizers tranquillizer nom +tranquillizes tranquillize ver +tranquillizing tranquillize ver +transact transact ver +transacted transact ver +transacting transact ver +transaction transaction nom +transactions transaction nom +transactor transactor nom +transactors transactor nom +transacts transact ver +transaminase transaminase nom +transaminases transaminase nom +transamination transamination nom +transaminations transamination nom +transceiver transceiver nom +transceivers transceiver nom +transcend transcend ver +transcended transcend ver +transcendence transcendence nom +transcendences transcendence nom +transcendencies transcendency nom +transcendency transcendency nom +transcendent transcendent nom +transcendental transcendental nom +transcendentalism transcendentalism nom +transcendentalisms transcendentalism nom +transcendentalist transcendentalist nom +transcendentalists transcendentalist nom +transcendentals transcendental nom +transcendents transcendent nom +transcending transcend ver +transcends transcend ver +transcribe transcribe ver +transcribed transcribe ver +transcriber transcriber nom +transcribers transcriber nom +transcribes transcribe ver +transcribing transcribe ver +transcript transcript nom +transcription transcription nom +transcriptions transcription nom +transcripts transcript nom +transduce transduce ver +transduced transduce ver +transducer transducer nom +transducers transducer nom +transduces transduce ver +transducing transduce ver +transduction transduction nom +transductions transduction nom +transect transect ver +transected transect ver +transecting transect ver +transects transect ver +transept transept nom +transepts transept nom +transfer transfer nom +transferabilities transferability nom +transferability transferability nom +transferal transferal nom +transferals transferal nom +transference transference nom +transferences transference nom +transferral transferral nom +transferrals transferral nom +transferred transfer ver +transferring transfer ver +transfers transfer nom +transfiguration transfiguration nom +transfigurations transfiguration nom +transfigure transfigure ver +transfigured transfigure ver +transfigures transfigure ver +transfiguring transfigure ver +transfix transfix ver +transfixed transfix ver +transfixes transfix ver +transfixing transfix ver +transform transform nom +transformation transformation nom +transformations transformation nom +transformed transform ver +transformer transformer nom +transformers transformer nom +transforming transform ver +transforms transform nom +transfuse transfuse ver +transfused transfuse ver +transfuses transfuse ver +transfusing transfuse ver +transfusion transfusion nom +transfusions transfusion nom +transgress transgress ver +transgressed transgress ver +transgresses transgress ver +transgressing transgress ver +transgression transgression nom +transgressions transgression nom +transgressor transgressor nom +transgressors transgressor nom +transience transience nom +transiences transience nom +transiencies transiency nom +transiency transiency nom +transient transient nom +transients transient nom +transistor transistor nom +transistorize transistorize ver +transistorized transistorize ver +transistorizes transistorize ver +transistorizing transistorize ver +transistors transistor nom +transit transit nom +transited transit ver +transiting transit ver +transition transition nom +transitioned transition ver +transitioning transition ver +transitions transition nom +transitive transitive nom +transitiveness transitiveness nom +transitivenesses transitiveness nom +transitives transitive nom +transitivities transitivity nom +transitivity transitivity nom +transitoriness transitoriness nom +transitorinesses transitoriness nom +transits transit nom +translate translate ver +translated translate ver +translates translate ver +translating translate ver +translation translation nom +translations translation nom +translator translator nom +translators translator nom +transliterate transliterate ver +transliterated transliterate ver +transliterates transliterate ver +transliterating transliterate ver +transliteration transliteration nom +transliterations transliteration nom +translocation translocation nom +translocations translocation nom +translucence translucence nom +translucences translucence nom +translucencies translucency nom +translucency translucency nom +transmigrate transmigrate ver +transmigrated transmigrate ver +transmigrates transmigrate ver +transmigrating transmigrate ver +transmigration transmigration nom +transmigrations transmigration nom +transmission transmission nom +transmissions transmission nom +transmit transmit ver +transmits transmit ver +transmittal transmittal nom +transmittals transmittal nom +transmittance transmittance nom +transmittances transmittance nom +transmitted transmit ver +transmitter transmitter nom +transmitters transmitter nom +transmitting transmit ver +transmogrification transmogrification nom +transmogrifications transmogrification nom +transmogrified transmogrify ver +transmogrifies transmogrify ver +transmogrify transmogrify ver +transmogrifying transmogrify ver +transmutabilities transmutability nom +transmutability transmutability nom +transmutation transmutation nom +transmutations transmutation nom +transmute transmute ver +transmuted transmute ver +transmutes transmute ver +transmuting transmute ver +transnational transnational nom +transnationals transnational nom +transom transom nom +transoms transom nom +transparence transparence nom +transparences transparence nom +transparencies transparency nom +transparency transparency nom +transparentness transparentness nom +transparentnesses transparentness nom +transpiration transpiration nom +transpirations transpiration nom +transpire transpire ver +transpired transpire ver +transpires transpire ver +transpiring transpire ver +transplant transplant nom +transplantation transplantation nom +transplantations transplantation nom +transplanted transplant ver +transplanting transplant ver +transplants transplant nom +transponder transponder nom +transponders transponder nom +transport transport nom +transportation transportation nom +transportations transportation nom +transported transport ver +transporter transporter nom +transporters transporter nom +transporting transport ver +transports transport nom +transposabilities transposability nom +transposability transposability nom +transpose transpose ver +transposed transpose ver +transposes transpose ver +transposing transpose ver +transposition transposition nom +transpositions transposition nom +transsexual transsexual nom +transsexualism transsexualism nom +transsexualisms transsexualism nom +transsexuals transsexual nom +transship transship ver +transshipment transshipment nom +transshipments transshipment nom +transshipped transship ver +transshipping transship ver +transships transship ver +transubstantiation transubstantiation nom +transubstantiations transubstantiation nom +transudation transudation nom +transudations transudation nom +transude transude ver +transuded transude ver +transudes transude ver +transuding transude ver +transverse transverse nom +transverses transverse nom +transvestism transvestism nom +transvestisms transvestism nom +transvestite transvestite nom +transvestites transvestite nom +transvestitism transvestitism nom +transvestitisms transvestitism nom +trap trap nom +trapdoor trapdoor nom +trapdoors trapdoor nom +trapeze trapeze nom +trapezes trapeze nom +trapezium trapezium nom +trapeziums trapezium nom +trapezohedron trapezohedron nom +trapezohedrons trapezohedron nom +trapezoid trapezoid nom +trapezoids trapezoid nom +trapped trap ver +trapper trapper nom +trappers trapper nom +trapping trap ver +trappings trapping nom +traps trap nom +trapshooter trapshooter nom +trapshooters trapshooter nom +trapshooting trapshooting nom +trapshootings trapshooting nom +trash trash nom +trashed trash ver +trashes trash nom +trashier trashy adj +trashiest trashy adj +trashiness trashiness nom +trashinesses trashiness nom +trashing trash ver +trashy trashy adj +trauma trauma nom +traumas trauma nom +traumatize traumatize ver +traumatized traumatize ver +traumatizes traumatize ver +traumatizing traumatize ver +travail travail nom +travailed travail ver +travailing travail ver +travails travail nom +trave trave nom +travel travel nom +traveled travel ver +traveler traveler nom +travelers traveler nom +traveling travel ver +traveller traveller nom +travellers traveller nom +travelling travelling nom +travellings travelling nom +travelog travelog nom +travelogs travelog nom +travelogue travelogue nom +travelogues travelogue nom +travels travel nom +traversal traversal nom +traversals traversal nom +traverse traverse nom +traversed traverse ver +traverses traverse nom +traversing traverse ver +traves trave nom +travestied travesty ver +travesties travesty nom +travesty travesty nom +travestying travesty ver +trawl trawl nom +trawled trawl ver +trawler trawler nom +trawlers trawler nom +trawling trawl ver +trawls trawl nom +tray tray nom +trays tray nom +treacheries treachery nom +treacherousness treacherousness nom +treacherousnesses treacherousness nom +treachery treachery nom +treacle treacle nom +treacles treacle nom +treaclier treacly adj +treacliest treacly adj +treacly treacly adj +tread tread nom +treading tread ver +treadle treadle nom +treadled treadle ver +treadles treadle nom +treadling treadle ver +treadmill treadmill nom +treadmills treadmill nom +treads tread nom +treason treason nom +treasons treason nom +treasure treasure nom +treasured treasure ver +treasurer treasurer nom +treasurers treasurer nom +treasurership treasurership nom +treasurerships treasurership nom +treasures treasure nom +treasuries treasury nom +treasuring treasure ver +treasury treasury nom +treat treat nom +treated treat ver +treaties treaty nom +treating treat ver +treatise treatise nom +treatises treatise nom +treatment treatment nom +treatments treatment nom +treats treat nom +treaty treaty nom +treble treble nom +trebled treble ver +trebles treble nom +trebling treble ver +treck treck ver +trecked treck ver +trecking treck ver +trecks treck ver +tree tree nom +treed tree ver +treehopper treehopper nom +treehoppers treehopper nom +treeing tree ver +treenail treenail nom +treenails treenail nom +trees tree nom +treetop treetop nom +treetops treetop nom +trefoil trefoil nom +trefoils trefoil nom +treillage treillage nom +treillages treillage nom +trek trek nom +trekked trek ver +trekker trekker nom +trekkers trekker nom +trekking trek ver +treks trek nom +trellis trellis nom +trellised trellis ver +trellises trellis nom +trellising trellis ver +trematode trematode nom +trematodes trematode nom +tremble tremble nom +trembled tremble ver +trembles tremble nom +trembling tremble ver +tremblings trembling nom +tremolite tremolite nom +tremolites tremolite nom +tremolo tremolo nom +tremolos tremolo nom +tremor tremor nom +tremors tremor nom +tremulousness tremulousness nom +tremulousnesses tremulousness nom +trenail trenail nom +trenails trenail nom +trench trench nom +trenchancies trenchancy nom +trenchancy trenchancy nom +trenched trench ver +trencher trencher nom +trencherman trencherman nom +trenchermen trencherman nom +trenchers trencher nom +trenches trench nom +trenching trench ver +trend trend nom +trended trend ver +trendier trendy adj +trendies trendy nom +trendiest trendy adj +trendiness trendiness nom +trendinesses trendiness nom +trending trend ver +trends trend nom +trendy trendy adj +trepan trepan nom +trepang trepang nom +trepangs trepang nom +trepanned trepan ver +trepanning trepan ver +trepans trepan nom +trephination trephination nom +trephinations trephination nom +trephine trephine nom +trephined trephine ver +trephines trephine nom +trephining trephine ver +trepidation trepidation nom +trepidations trepidation nom +treponema treponema nom +treponemas treponema nom +trespass trespass nom +trespassed trespass ver +trespasser trespasser nom +trespassers trespasser nom +trespasses trespass nom +trespassing trespass ver +tress tress nom +tressed tress ver +tresses tress nom +tressing tress ver +trestle trestle nom +trestles trestle nom +trestlework trestlework nom +trestleworks trestlework nom +trey trey nom +treys trey nom +triacetate triacetate nom +triacetates triacetate nom +triad triad nom +triads triad nom +triage triage nom +triaged triage ver +triages triage nom +triaging triage ver +trial trial nom +trialled trial ver +trialling trial ver +trials trial nom +triamcinolone triamcinolone nom +triamcinolones triamcinolone nom +triangle triangle nom +triangles triangle nom +triangularities triangularity nom +triangularity triangularity nom +triangulate triangulate ver +triangulated triangulate ver +triangulates triangulate ver +triangulating triangulate ver +triangulation triangulation nom +triangulations triangulation nom +triathlon triathlon nom +triathlons triathlon nom +tribalism tribalism nom +tribalisms tribalism nom +tribe tribe nom +tribes tribe nom +tribesman tribesman nom +tribesmen tribesman nom +tribeswoman tribeswoman nom +tribeswomen tribeswoman nom +tribologist tribologist nom +tribologists tribologist nom +tribromoethanol tribromoethanol nom +tribromoethanols tribromoethanol nom +tribulation tribulation nom +tribulations tribulation nom +tribunal tribunal nom +tribunals tribunal nom +tribune tribune nom +tribunes tribune nom +tribuneship tribuneship nom +tribuneships tribuneship nom +tributaries tributary nom +tributary tributary nom +tribute tribute nom +tributes tribute nom +trice trice nom +triced trice ver +tricentennial tricentennial nom +tricentennials tricentennial nom +triceps triceps nom +triceratops triceratops nom +trices trice nom +trichina trichina nom +trichinae trichina nom +trichinoses trichinosis nom +trichinosis trichinosis nom +trichloride trichloride nom +trichlorides trichloride nom +trichomonad trichomonad nom +trichomonads trichomonad nom +trichomoniases trichomoniasis nom +trichomoniasis trichomoniasis nom +trichopteran trichopteran nom +trichopterans trichopteran nom +trichroism trichroism nom +trichroisms trichroism nom +tricing trice ver +trick trick nom +tricked trick ver +trickeries trickery nom +trickery trickery nom +trickier tricky adj +trickiest tricky adj +trickiness trickiness nom +trickinesses trickiness nom +tricking trick ver +trickle trickle nom +trickled trickle ver +trickles trickle nom +trickling trickle ver +tricks trick nom +tricksier tricksy adj +tricksiest tricksy adj +trickster trickster nom +tricksters trickster nom +tricksy tricksy adj +tricky tricky adj +tricolor tricolor nom +tricolors tricolor nom +tricolour tricolour nom +tricolours tricolour nom +tricorn tricorn nom +tricorne tricorne nom +tricornes tricorne nom +tricorns tricorn nom +tricot tricot nom +tricots tricot nom +tricycle tricycle nom +tricycles tricycle nom +tricyclic tricyclic nom +tricyclics tricyclic nom +trident trident nom +tridents trident nom +tried tried sw +triennial triennial nom +triennials triennial nom +trier trier nom +triers trier nom +tries tries sw +trifle trifle nom +trifled trifle ver +trifler trifler nom +triflers trifler nom +trifles trifle nom +trifling trifle ver +triflings trifling nom +trifurcation trifurcation nom +trifurcations trifurcation nom +trig trig adj +trigeminal trigeminal nom +trigeminals trigeminal nom +trigged trig ver +trigger trig adj +triggered trigger ver +triggerfish triggerfish nom +triggering trigger ver +triggers trigger nom +triggest trig adj +trigging trig ver +triglyceride triglyceride nom +triglycerides triglyceride nom +trigon trigon nom +trigonometries trigonometry nom +trigonometry trigonometry nom +trigons trigon nom +trigram trigram nom +trigrams trigram nom +trigs trig nom +trike trike nom +trikes trike nom +trilateral trilateral nom +trilaterals trilateral nom +trilbies trilby nom +trilby trilby nom +trill trill nom +trilled trill ver +trilling trill ver +trillion trillion nom +trillions trillion nom +trillionth trillionth nom +trillionths trillionth nom +trillium trillium nom +trilliums trillium nom +trills trill nom +trilobite trilobite nom +trilobites trilobite nom +trilogies trilogy nom +trilogy trilogy nom +trim trim adj +trimaran trimaran nom +trimarans trimaran nom +trimer trimer nom +trimers trimer nom +trimester trimester nom +trimesters trimester nom +trimmed trim ver +trimmer trim adj +trimmers trimmer nom +trimmest trim adj +trimming trim ver +trimmings trimming nom +trimness trimness nom +trimnesses trimness nom +trims trim nom +trine trine nom +trines trine nom +trinities trinity nom +trinitrotoluene trinitrotoluene nom +trinitrotoluenes trinitrotoluene nom +trinity trinity nom +trinket trinket nom +trinketed trinket ver +trinketing trinket ver +trinkets trinket nom +trio trio nom +triode triode nom +triodes triode nom +trios trio nom +trioxide trioxide nom +trioxides trioxide nom +trip trip nom +tripalmitin tripalmitin nom +tripalmitins tripalmitin nom +tripe tripe nom +tripes tripe nom +triphammer triphammer nom +triphammers triphammer nom +triple triple nom +tripled triple ver +triples triple nom +triplet triplet nom +tripletail tripletail nom +tripletails tripletail nom +triplets triplet nom +triplex triplex nom +triplexes triplex nom +triplicate triplicate nom +triplicated triplicate ver +triplicates triplicate nom +triplicating triplicate ver +tripling triple ver +tripod tripod nom +tripods tripod nom +tripos tripos nom +triposes tripos nom +tripped trip ver +tripper tripper nom +trippers tripper nom +tripping trip ver +trips trip nom +triptych triptych nom +triptychs triptych nom +trireme trireme nom +triremes trireme nom +trisaccharide trisaccharide nom +trisaccharides trisaccharide nom +trisect trisect ver +trisected trisect ver +trisecting trisect ver +trisection trisection nom +trisections trisection nom +trisects trisect ver +triskaidekaphobia triskaidekaphobia nom +triskaidekaphobias triskaidekaphobia nom +tristearin tristearin nom +tristearins tristearin nom +trisyllable trisyllable nom +trisyllables trisyllable nom +tritanopia tritanopia nom +tritanopias tritanopia nom +trite trite adj +triteness triteness nom +tritenesses triteness nom +triter trite adj +tritest trite adj +tritheist tritheist nom +tritheists tritheist nom +tritium tritium nom +tritiums tritium nom +tritoma tritoma nom +tritomas tritoma nom +triton triton nom +tritons triton nom +triumph triumph nom +triumphed triumph ver +triumphing triumph ver +triumphs triumph nom +triumvir triumvir nom +triumvirate triumvirate nom +triumvirates triumvirate nom +triumvirs triumvir nom +trivet trivet nom +trivets trivet nom +trivia trivia nom +trivialities triviality nom +triviality triviality nom +trivialization trivialization nom +trivializations trivialization nom +trivialize trivialize ver +trivialized trivialize ver +trivializes trivialize ver +trivializing trivialize ver +trivium trivium nom +troat troat ver +troated troat ver +troating troat ver +troats troat ver +trochaic trochaic nom +trochaics trochaic nom +troche troche nom +trochee trochee nom +trochees trochee nom +troches troche nom +trochlear trochlear nom +trochlears trochlear nom +trod tread ver +trodden tread ver +troglodyte troglodyte nom +troglodytes troglodyte nom +trogon trogon nom +trogons trogon nom +troika troika nom +troikas troika nom +troll troll nom +trolled troll ver +troller troller nom +trollers troller nom +trolley trolley nom +trolleybus trolleybus nom +trolleybuses trolleybus nom +trolleyed trolley ver +trolleying trolley ver +trolleys trolley nom +trollied trolly ver +trollies trolly nom +trolling troll ver +trollop trollop nom +trollops trollop nom +trolls troll nom +trolly trolly nom +trollying trolly ver +trombiculiases trombiculiasis nom +trombiculiasis trombiculiasis nom +trombone trombone nom +trombones trombone nom +trombonist trombonist nom +trombonists trombonist nom +tromp tromp ver +tromped tromp ver +tromping tromp ver +tromps tromp ver +troop troop nom +trooped troop ver +trooper trooper nom +troopers trooper nom +trooping troop ver +troops troop nom +troopship troopship nom +troopships troopship nom +trope trope nom +tropes trope nom +trophies trophy nom +trophozoite trophozoite nom +trophozoites trophozoite nom +trophy trophy nom +tropic tropic nom +tropicbird tropicbird nom +tropicbirds tropicbird nom +tropics tropic nom +tropism tropism nom +tropisms tropism nom +tropopause tropopause nom +tropopauses tropopause nom +troposphere troposphere nom +tropospheres troposphere nom +trot trot nom +troth troth nom +troths troth nom +trots trot nom +trotted trot ver +trotter trotter nom +trotters trotter nom +trotting trot ver +troubadour troubadour nom +troubadours troubadour nom +trouble trouble nom +troubled trouble ver +troublemaker troublemaker nom +troublemakers troublemaker nom +troubles trouble nom +troubleshoot troubleshoot ver +troubleshooter troubleshooter nom +troubleshooters troubleshooter nom +troubleshooting troubleshoot ver +troubleshootings troubleshooting nom +troubleshoots troubleshoot ver +troubleshot troubleshoot ver +troublesomeness troublesomeness nom +troublesomenesses troublesomeness nom +troubling trouble ver +troublings troubling nom +trough trough nom +troughs trough nom +trounce trounce ver +trounced trounce ver +trouncer trouncer nom +trouncers trouncer nom +trounces trounce ver +trouncing trounce ver +trouncings trouncing nom +troupe troupe nom +trouped troupe ver +trouper trouper nom +troupers trouper nom +troupes troupe nom +trouping troupe ver +trouser trouser nom +trousering trousering nom +trouserings trousering nom +trousers trouser nom +trousseau trousseau nom +trousseaux trousseau nom +trout trout nom +trove trove nom +troves trove nom +trow trow ver +trowed trow ver +trowel trowel nom +troweled trowel ver +troweling trowel ver +trowels trowel nom +trowing trow ver +trows trow ver +troy troy nom +troys troy nom +truancies truancy nom +truancy truancy nom +truant truant nom +truanted truant ver +truanting truant ver +truants truant nom +truce truce nom +truced truce ver +truces truce nom +trucing truce ver +truck truck nom +trucked truck ver +trucker trucker nom +truckers trucker nom +trucking truck ver +truckings trucking nom +truckle truckle nom +truckled truckle ver +truckler truckler nom +trucklers truckler nom +truckles truckle nom +truckling truckle ver +truckload truckload nom +truckloads truckload nom +trucks truck nom +truculence truculence nom +truculences truculence nom +truculencies truculency nom +truculency truculency nom +trudge trudge nom +trudged trudge ver +trudges trudge nom +trudging trudge ver +true true adj +trued true ver +truelove truelove nom +trueloves truelove nom +trueness trueness nom +truenesses trueness nom +truer true adj +trues true nom +truest true adj +truffle truffle nom +truffles truffle nom +truing true ver +truism truism nom +truisms truism nom +truly truly sw +trump trump nom +trumped trump ver +trumperies trumpery nom +trumpery trumpery nom +trumpet trumpet nom +trumpeted trumpet ver +trumpeter trumpeter nom +trumpeters trumpeter nom +trumpetfish trumpetfish nom +trumpeting trumpet ver +trumpets trumpet nom +trumping trump ver +trumps trump nom +truncate truncate ver +truncated truncate ver +truncates truncate ver +truncating truncate ver +truncation truncation nom +truncations truncation nom +truncheon truncheon nom +truncheoned truncheon ver +truncheoning truncheon ver +truncheons truncheon nom +trundle trundle nom +trundled trundle ver +trundler trundler nom +trundlers trundler nom +trundles trundle nom +trundling trundle ver +trunk trunk nom +trunkfish trunkfish nom +trunks trunk nom +trunnel trunnel nom +trunnels trunnel nom +truss truss nom +trussed truss ver +trusses truss nom +trussing truss ver +trust trust nom +trusted trust ver +trustee trustee nom +trusteed trustee ver +trusteeing trustee ver +trustees trustee nom +trusteeship trusteeship nom +trusteeships trusteeship nom +trustfulness trustfulness nom +trustfulnesses trustfulness nom +trustier trusty adj +trusties trusty nom +trustiest trusty adj +trustiness trustiness nom +trustinesses trustiness nom +trusting trust ver +trustingness trustingness nom +trustingnesses trustingness nom +trusts trust nom +trustworthier trustworthy adj +trustworthiest trustworthy adj +trustworthiness trustworthiness nom +trustworthinesses trustworthiness nom +trustworthy trustworthy adj +trusty trusty adj +truth truth nom +truthfulness truthfulness nom +truthfulnesses truthfulness nom +truths truth nom +try try sw +trying trying sw +tryout tryout nom +tryouts tryout nom +tryptophan tryptophan nom +tryptophane tryptophane nom +tryptophanes tryptophane nom +tryptophans tryptophan nom +tryst tryst nom +trysted tryst ver +trysting tryst ver +trysts tryst nom +tsar tsar nom +tsarina tsarina nom +tsarinas tsarina nom +tsaritsa tsaritsa nom +tsaritsas tsaritsa nom +tsars tsar nom +tsetse tsetse nom +tsetses tsetse nom +tsunami tsunami nom +tsunamis tsunami nom +tuatara tuatara nom +tuataras tuatara nom +tub tub nom +tuba tuba nom +tubae tuba nom +tubas tuba nom +tubbed tub ver +tubbier tubby adj +tubbiest tubby adj +tubbiness tubbiness nom +tubbinesses tubbiness nom +tubbing tub ver +tubby tubby adj +tube tube nom +tubed tube ver +tubeless tubeless nom +tuber tuber nom +tubercle tubercle nom +tubercles tubercle nom +tubercular tubercular nom +tuberculars tubercular nom +tuberculin tuberculin nom +tuberculins tuberculin nom +tuberculoses tuberculosis nom +tuberculosis tuberculosis nom +tuberose tuberose nom +tuberoses tuberose nom +tuberosities tuberosity nom +tuberosity tuberosity nom +tubers tuber nom +tubes tube nom +tubful tubful nom +tubfuls tubful nom +tubing tube ver +tubings tubing nom +tubocurarine tubocurarine nom +tubocurarines tubocurarine nom +tubs tub nom +tubule tubule nom +tubules tubule nom +tuck tuck nom +tuckahoe tuckahoe nom +tuckahoes tuckahoe nom +tucked tuck ver +tucker tucker nom +tuckered tucker ver +tuckering tucker ver +tuckers tucker nom +tucking tuck ver +tucks tuck nom +tuft tuft nom +tufted tuft ver +tufter tufter nom +tufters tufter nom +tufting tuft ver +tufts tuft nom +tug tug nom +tugboat tugboat nom +tugboats tugboat nom +tugged tug ver +tugging tug ver +tughrik tughrik nom +tughriks tughrik nom +tugrik tugrik nom +tugriks tugrik nom +tugs tug nom +tuille tuille nom +tuilles tuille nom +tuition tuition nom +tuitions tuition nom +tularemia tularemia nom +tularemias tularemia nom +tulip tulip nom +tulips tulip nom +tulipwood tulipwood nom +tulipwoods tulipwood nom +tulle tulle nom +tulles tulle nom +tum tum nom +tumble tumble nom +tumblebug tumblebug nom +tumblebugs tumblebug nom +tumbled tumble ver +tumbler tumbler nom +tumblers tumbler nom +tumbles tumble nom +tumbleweed tumbleweed nom +tumbleweeds tumbleweed nom +tumbling tumble ver +tumblings tumbling nom +tumbrel tumbrel nom +tumbrels tumbrel nom +tumbril tumbril nom +tumbrils tumbril nom +tumescence tumescence nom +tumescences tumescence nom +tumidities tumidity nom +tumidity tumidity nom +tumidness tumidness nom +tumidnesses tumidness nom +tummies tummy nom +tummy tummy nom +tumor tumor nom +tumors tumor nom +tumour tumour nom +tumours tumour nom +tums tum nom +tumult tumult nom +tumults tumult nom +tumultuousness tumultuousness nom +tumultuousnesses tumultuousness nom +tumulus tumulus nom +tumuluses tumulus nom +tun tun nom +tuna tuna nom +tundra tundra nom +tundras tundra nom +tune tune nom +tuned tune ver +tunefulness tunefulness nom +tunefulnesses tunefulness nom +tuner tuner nom +tuners tuner nom +tunes tune nom +tuneup tuneup nom +tuneups tuneup nom +tung tung nom +tungs tung nom +tungstate tungstate nom +tungstates tungstate nom +tungsten tungsten nom +tungstens tungsten nom +tunic tunic nom +tunica tunica nom +tunicae tunica nom +tunicate tunicate nom +tunicates tunicate nom +tunics tunic nom +tuning tune ver +tunings tuning nom +tunnage tunnage nom +tunnages tunnage nom +tunned tun ver +tunnel tunnel nom +tunneled tunnel ver +tunneler tunneler nom +tunnelers tunneler nom +tunneling tunnel ver +tunneller tunneller nom +tunnellers tunneller nom +tunnels tunnel nom +tunnies tunny nom +tunning tun ver +tunny tunny nom +tuns tun nom +tup tup nom +tupek tupek nom +tupeks tupek nom +tupelo tupelo nom +tupelos tupelo nom +tupik tupik nom +tupiks tupik nom +tuppence tuppence nom +tuppences tuppence nom +tups tup nom +turaco turaco nom +turacos turaco nom +turacou turacou nom +turacous turacou nom +turban turban nom +turbans turban nom +turbidities turbidity nom +turbidity turbidity nom +turbidness turbidness nom +turbidnesses turbidness nom +turbinal turbinal nom +turbinals turbinal nom +turbinate turbinate nom +turbinates turbinate nom +turbine turbine nom +turbines turbine nom +turbo turbo nom +turbocharger turbocharger nom +turbochargers turbocharger nom +turbofan turbofan nom +turbofans turbofan nom +turbogenerator turbogenerator nom +turbogenerators turbogenerator nom +turbojet turbojet nom +turbojets turbojet nom +turboprop turboprop nom +turboprops turboprop nom +turbos turbo nom +turbot turbot nom +turbots turbot nom +turbulence turbulence nom +turbulences turbulence nom +turbulencies turbulency nom +turbulency turbulency nom +turd turd nom +turds turd nom +tureen tureen nom +tureens tureen nom +turf turf nom +turfed turf ver +turfier turfy adj +turfiest turfy adj +turfing turf ver +turfs turf nom +turfy turfy adj +turgidities turgidity nom +turgidity turgidity nom +turgidness turgidness nom +turgidnesses turgidness nom +turgor turgor nom +turgors turgor nom +turkey turkey nom +turkeys turkey nom +turmeric turmeric nom +turmerics turmeric nom +turmoil turmoil nom +turmoils turmoil nom +turn turn nom +turnabout turnabout nom +turnabouts turnabout nom +turnaround turnaround nom +turnarounds turnaround nom +turnbuckle turnbuckle nom +turnbuckles turnbuckle nom +turncoat turncoat nom +turncoats turncoat nom +turncock turncock nom +turncocks turncock nom +turndown turndown nom +turndowns turndown nom +turned turn ver +turner turner nom +turneries turnery nom +turners turner nom +turnery turnery nom +turning turn ver +turnings turning nom +turnip turnip nom +turnips turnip nom +turnkey turnkey nom +turnkeys turnkey nom +turnoff turnoff nom +turnoffs turnoff nom +turnout turnout nom +turnouts turnout nom +turnover turnover nom +turnovers turnover nom +turnpike turnpike nom +turnpikes turnpike nom +turnround turnround nom +turnrounds turnround nom +turns turn nom +turnspit turnspit nom +turnspits turnspit nom +turnstile turnstile nom +turnstiles turnstile nom +turnstone turnstone nom +turnstones turnstone nom +turntable turntable nom +turntables turntable nom +turnup turnup nom +turnups turnup nom +turnverein turnverein nom +turnvereins turnverein nom +turpentine turpentine nom +turpentined turpentine ver +turpentines turpentine nom +turpentining turpentine ver +turpitude turpitude nom +turpitudes turpitude nom +turquoise turquoise nom +turquoises turquoise nom +turret turret nom +turrets turret nom +turtle turtle nom +turtled turtle ver +turtledove turtledove nom +turtledoves turtledove nom +turtlehead turtlehead nom +turtleheads turtlehead nom +turtleneck turtleneck nom +turtlenecks turtleneck nom +turtles turtle nom +turtling turtle ver +tush tush nom +tusheries tushery nom +tushery tushery nom +tushes tush nom +tusk tusk nom +tusked tusk ver +tusking tusk ver +tusks tusk nom +tussah tussah nom +tussahs tussah nom +tusseh tusseh nom +tussehs tusseh nom +tusser tusser nom +tussers tusser nom +tussle tussle nom +tussled tussle ver +tussles tussle nom +tussling tussle ver +tussock tussock nom +tussocks tussock nom +tussore tussore nom +tussores tussore nom +tussur tussur nom +tussurs tussur nom +tut tut nom +tutee tutee nom +tutees tutee nom +tutelage tutelage nom +tutelages tutelage nom +tutelaries tutelary nom +tutelary tutelary nom +tutor tutor nom +tutored tutor ver +tutorial tutorial nom +tutorials tutorial nom +tutoring tutor ver +tutors tutor nom +tutorship tutorship nom +tutorships tutorship nom +tuts tut nom +tutsan tutsan nom +tutsans tutsan nom +tutted tut ver +tutti tutti nom +tutting tut ver +tuttis tutti nom +tutu tutu nom +tutus tutu nom +tux tux nom +tuxedo tuxedo nom +tuxedos tuxedo nom +tuxes tux nom +twaddle twaddle nom +twaddled twaddle ver +twaddler twaddler nom +twaddlers twaddler nom +twaddles twaddle nom +twaddling twaddle ver +twain twain nom +twains twain nom +twang twang nom +twanged twang ver +twangier twangy adj +twangiest twangy adj +twanging twang ver +twangs twang nom +twangy twangy adj +twayblade twayblade nom +twayblades twayblade nom +tweak tweak nom +tweaked tweak ver +tweaking tweak ver +tweaks tweak nom +twee twee adj +tweed tweed nom +tweedier tweedy adj +tweediest tweedy adj +tweediness tweediness nom +tweedinesses tweediness nom +tweedle tweedle ver +tweedled tweedle ver +tweedles tweedle ver +tweedling tweedle ver +tweeds tweed nom +tweedy tweedy adj +tweer twee adj +tweest twee adj +tweet tweet nom +tweeted tweet ver +tweeter tweeter nom +tweeters tweeter nom +tweeting tweet ver +tweets tweet nom +tweeze tweeze ver +tweezed tweeze ver +tweezer tweezer nom +tweezers tweezer nom +tweezes tweeze ver +tweezing tweeze ver +twelfth twelfth nom +twelfths twelfth nom +twelve twelve nom +twelvemonth twelvemonth nom +twelvemonths twelvemonth nom +twelves twelve nom +twenties twenty nom +twentieth twentieth nom +twentieths twentieth nom +twenty twenty nom +twerp twerp nom +twerps twerp nom +twice twice sw +twiddle twiddle nom +twiddled twiddle ver +twiddles twiddle nom +twiddlier twiddly adj +twiddliest twiddly adj +twiddling twiddle ver +twiddly twiddly adj +twig twig nom +twigged twig ver +twiggier twiggy adj +twiggiest twiggy adj +twigging twig ver +twiggy twiggy adj +twigs twig nom +twilight twilight nom +twilights twilight nom +twill twill nom +twilled twill ver +twilling twill ver +twills twill nom +twin twin nom +twinberries twinberry nom +twinberry twinberry nom +twine twine nom +twined twine ver +twiner twiner nom +twiners twiner nom +twines twine nom +twinflower twinflower nom +twinflowers twinflower nom +twinge twinge nom +twinged twinge ver +twinges twinge nom +twinging twinge ver +twining twine ver +twinjet twinjet nom +twinjets twinjet nom +twinkle twinkle nom +twinkled twinkle ver +twinkles twinkle nom +twinkling twinkle ver +twinned twin ver +twinning twin ver +twins twin nom +twirl twirl nom +twirled twirl ver +twirler twirler nom +twirlers twirler nom +twirlier twirly adj +twirliest twirly adj +twirling twirl ver +twirls twirl nom +twirly twirly adj +twirp twirp nom +twirps twirp nom +twist twist nom +twisted twist ver +twister twister nom +twisters twister nom +twistier twisty adj +twistiest twisty adj +twisting twist ver +twistings twisting nom +twists twist nom +twisty twisty adj +twit twit nom +twitch twitch nom +twitched twitch ver +twitches twitch nom +twitchier twitchy adj +twitchiest twitchy adj +twitching twitch ver +twitchings twitching nom +twitchy twitchy adj +twits twit nom +twitted twit ver +twitter twitter nom +twittered twitter ver +twittering twitter ver +twitters twitter nom +twitting twit ver +twittings twitting nom +two two sw +twofer twofer nom +twofers twofer nom +twopence twopence nom +twopences twopence nom +twos twos nom +twosome twosome nom +twosomes twosome nom +tycoon tycoon nom +tycoons tycoon nom +tying tie ver +tyke tyke nom +tykes tyke nom +tympan tympan nom +tympani tympani nom +tympanist tympanist nom +tympanists tympanist nom +tympans tympan nom +tympanum tympanum nom +tympanums tympanum nom +type type nom +typecast typecast ver +typecasting typecast ver +typecasts typecast ver +typed type ver +typeface typeface nom +typefaces typeface nom +types type nom +typescript typescript nom +typescripts typescript nom +typeset typeset ver +typesets typeset ver +typesetter typesetter nom +typesetters typesetter nom +typesetting typeset ver +typesettings typesetting nom +typewrite typewrite ver +typewriter typewriter nom +typewriters typewriter nom +typewrites typewrite ver +typewriting typewrite ver +typewritings typewriting nom +typewritten typewrite ver +typewrote typewrite ver +typhoid typhoid nom +typhoids typhoid nom +typhoon typhoon nom +typhoons typhoon nom +typhus typhus nom +typhuses typhus nom +typicalities typicality nom +typicality typicality nom +typification typification nom +typifications typification nom +typified typify ver +typifies typify ver +typify typify ver +typifying typify ver +typing type ver +typings typing nom +typist typist nom +typists typist nom +typo typo nom +typographer typographer nom +typographers typographer nom +typographies typography nom +typography typography nom +typos typo nom +tyrannicide tyrannicide nom +tyrannicides tyrannicide nom +tyrannies tyranny nom +tyrannize tyrannize ver +tyrannized tyrannize ver +tyrannizes tyrannize ver +tyrannizing tyrannize ver +tyrannosaur tyrannosaur nom +tyrannosaurs tyrannosaur nom +tyrannosaurus tyrannosaurus nom +tyrannosauruses tyrannosaurus nom +tyranny tyranny nom +tyrant tyrant nom +tyrants tyrant nom +tyre tyre nom +tyred tyre ver +tyres tyre nom +tyring tyre ver +tyro tyro nom +tyrocidin tyrocidin nom +tyrocidine tyrocidine nom +tyrocidines tyrocidine nom +tyrocidins tyrocidin nom +tyros tyro nom +tyrosine tyrosine nom +tyrosines tyrosine nom +tyrothricin tyrothricin nom +tyrothricins tyrothricin nom +tzar tzar nom +tzarina tzarina nom +tzarinas tzarina nom +tzars tzar nom +tzetze tzetze nom +tzetzes tzetze nom +u u sw +uakari uakari nom +uakaris uakari nom +ubieties ubiety nom +ubiety ubiety nom +ubiquities ubiquity nom +ubiquitousness ubiquitousness nom +ubiquitousnesses ubiquitousness nom +ubiquity ubiquity nom +udder udder nom +udders udder nom +ufologies ufology nom +ufologist ufologist nom +ufologists ufologist nom +ufology ufology nom +ugh ugh nom +ughs ugh nom +ugli ugli nom +uglier ugly adj +ugliest ugly adj +uglified uglify ver +uglifies uglify ver +uglify uglify ver +uglifying uglify ver +ugliness ugliness nom +uglinesses ugliness nom +uglis ugli nom +ugly ugly adj +uintathere uintathere nom +uintatheres uintathere nom +ukase ukase nom +ukases ukase nom +uke uke nom +ukelele ukelele nom +ukeleles ukelele nom +ukes uke nom +ukulele ukulele nom +ukuleles ukulele nom +ulcer ulcer nom +ulcerate ulcerate ver +ulcerated ulcerate ver +ulcerates ulcerate ver +ulcerating ulcerate ver +ulceration ulceration nom +ulcerations ulceration nom +ulcers ulcer nom +ullage ullage nom +ullages ullage nom +ulna ulna nom +ulnae ulna nom +ulster ulster nom +ulsters ulster nom +ultimacies ultimacy nom +ultimacy ultimacy nom +ultimate ultimate nom +ultimateness ultimateness nom +ultimatenesses ultimateness nom +ultimates ultimate nom +ultimatum ultimatum nom +ultimatums ultimatum nom +ultra ultra nom +ultracentrifugation ultracentrifugation nom +ultracentrifugations ultracentrifugation nom +ultracentrifuge ultracentrifuge nom +ultracentrifuges ultracentrifuge nom +ultraconservative ultraconservative nom +ultraconservatives ultraconservative nom +ultralight ultralight nom +ultralights ultralight nom +ultramarine ultramarine nom +ultramarines ultramarine nom +ultramicroscope ultramicroscope nom +ultramicroscopes ultramicroscope nom +ultranationalism ultranationalism nom +ultranationalisms ultranationalism nom +ultras ultra nom +ultrasonographies ultrasonography nom +ultrasonography ultrasonography nom +ultrasound ultrasound nom +ultrasounds ultrasound nom +ultraviolet ultraviolet nom +ultraviolets ultraviolet nom +ululate ululate ver +ululated ululate ver +ululates ululate ver +ululating ululate ver +ululation ululation nom +ululations ululation nom +umbel umbel nom +umbellifer umbellifer nom +umbellifers umbellifer nom +umbels umbel nom +umber umber nom +umbered umber ver +umbering umber ver +umbers umber nom +umbilical umbilical nom +umbilicals umbilical nom +umbilici umbilicus nom +umbilicus umbilicus nom +umbo umbo nom +umbos umbo nom +umbra umbra nom +umbrage umbrage nom +umbrages umbrage nom +umbras umbra nom +umbrella umbrella nom +umbrellas umbrella nom +umiak umiak nom +umiaks umiak nom +umlaut umlaut nom +umlauted umlaut ver +umlauting umlaut ver +umlauts umlaut nom +ump ump nom +umped ump ver +umping ump ver +umpirage umpirage nom +umpirages umpirage nom +umpire umpire nom +umpired umpire ver +umpires umpire nom +umpiring umpire ver +umps ump nom +un un sw +unabridged unabridged nom +unabridgeds unabridged nom +unacceptabilities unacceptability nom +unacceptability unacceptability nom +unaffectedness unaffectedness nom +unaffectednesses unaffectedness nom +unalterabilities unalterability nom +unalterability unalterability nom +unanimities unanimity nom +unanimity unanimity nom +unapproachabilities unapproachability nom +unapproachability unapproachability nom +unarm unarm ver +unarmed unarm ver +unarming unarm ver +unarms unarm ver +unassertiveness unassertiveness nom +unassertivenesses unassertiveness nom +unassumingness unassumingness nom +unassumingnesses unassumingness nom +unattainableness unattainableness nom +unattainablenesses unattainableness nom +unattractiveness unattractiveness nom +unattractivenesses unattractiveness nom +unau unau nom +unaus unau nom +unavailabilities unavailability nom +unavailability unavailability nom +unawareness unawareness nom +unawarenesses unawareness nom +unbalance unbalance nom +unbalanced unbalance ver +unbalances unbalance nom +unbalancing unbalance ver +unbar unbar ver +unbarred unbar ver +unbarring unbar ver +unbars unbar ver +unbecomingness unbecomingness nom +unbecomingnesses unbecomingness nom +unbelief unbelief nom +unbeliefs unbelief nom +unbeliever unbeliever nom +unbelievers unbeliever nom +unbelt unbelt ver +unbelted unbelt ver +unbelting unbelt ver +unbelts unbelt ver +unbend unbend ver +unbending unbend ver +unbends unbend ver +unbent unbend ver +unbind unbind ver +unbinding unbind ver +unbinds unbind ver +unblock unblock ver +unblocked unblock ver +unblocking unblock ver +unblocks unblock ver +unbolt unbolt ver +unbolted unbolt ver +unbolting unbolt ver +unbolts unbolt ver +unbosom unbosom ver +unbosomed unbosom ver +unbosoming unbosom ver +unbosoms unbosom ver +unbound unbind ver +unboundedness unboundedness nom +unboundednesses unboundedness nom +unbox unbox ver +unboxed unbox ver +unboxes unbox ver +unboxing unbox ver +unbrace unbrace ver +unbraced unbrace ver +unbraces unbrace ver +unbracing unbrace ver +unbraid unbraid ver +unbraided unbraid ver +unbraiding unbraid ver +unbraids unbraid ver +unbreakableness unbreakableness nom +unbreakablenesses unbreakableness nom +unbuckle unbuckle ver +unbuckled unbuckle ver +unbuckles unbuckle ver +unbuckling unbuckle ver +unburden unburden ver +unburdened unburden ver +unburdening unburden ver +unburdens unburden ver +unbutton unbutton ver +unbuttoned unbutton ver +unbuttoning unbutton ver +unbuttons unbutton ver +uncannier uncanny adj +uncanniest uncanny adj +uncanny uncanny adj +uncap uncap ver +uncapped uncap ver +uncapping uncap ver +uncaps uncap ver +uncase uncase ver +uncased uncase ver +uncases uncase ver +uncasing uncase ver +unceremoniousness unceremoniousness nom +unceremoniousnesses unceremoniousness nom +uncertainness uncertainness nom +uncertainnesses uncertainness nom +uncertainties uncertainty nom +uncertainty uncertainty nom +unchain unchain ver +unchained unchain ver +unchaining unchain ver +unchains unchain ver +unchangeabilities unchangeability nom +unchangeability unchangeability nom +unchangeableness unchangeableness nom +unchangeablenesses unchangeableness nom +unchangingness unchangingness nom +unchangingnesses unchangingness nom +unchaste unchaste adj +unchaster unchaste adj +unchastest unchaste adj +uncial uncial nom +uncials uncial nom +unclasp unclasp ver +unclasped unclasp ver +unclasping unclasp ver +unclasps unclasp ver +uncle uncle nom +unclean unclean adj +uncleaner unclean adj +uncleanest unclean adj +uncleanlier uncleanly adj +uncleanliest uncleanly adj +uncleanliness uncleanliness nom +uncleanlinesses uncleanliness nom +uncleanly uncleanly adj +uncleanness uncleanness nom +uncleannesses uncleanness nom +unclear unclear adj +unclearer unclear adj +unclearest unclear adj +uncles uncle nom +unclip unclip ver +unclipped unclip ver +unclipping unclip ver +unclips unclip ver +uncloak uncloak ver +uncloaked uncloak ver +uncloaking uncloak ver +uncloaks uncloak ver +unclog unclog ver +unclogged unclog ver +unclogging unclog ver +unclogs unclog ver +unclothe unclothe ver +unclothed unclothe ver +unclothes unclothe ver +unclothing unclothe ver +unclutter unclutter ver +uncluttered unclutter ver +uncluttering unclutter ver +unclutters unclutter ver +uncoil uncoil ver +uncoiled uncoil ver +uncoiling uncoil ver +uncoils uncoil ver +uncomfortableness uncomfortableness nom +uncomfortablenesses uncomfortableness nom +uncommon uncommon adj +uncommoner uncommon adj +uncommonest uncommon adj +uncommonness uncommonness nom +uncommonnesses uncommonness nom +uncommunicativeness uncommunicativeness nom +uncommunicativenesses uncommunicativeness nom +unconcern unconcern nom +unconcerns unconcern nom +uncongenialities uncongeniality nom +uncongeniality uncongeniality nom +unconnectedness unconnectedness nom +unconnectednesses unconnectedness nom +unconscious unconscious nom +unconsciouses unconscious nom +unconsciousness unconsciousness nom +unconsciousnesses unconsciousness nom +unconstitutionalities unconstitutionality nom +unconstitutionality unconstitutionality nom +unconstraint unconstraint nom +unconstraints unconstraint nom +unconventionalities unconventionality nom +unconventionality unconventionality nom +uncork uncork ver +uncorked uncork ver +uncorking uncork ver +uncorks uncork ver +uncouple uncouple ver +uncoupled uncouple ver +uncouples uncouple ver +uncoupling uncouple ver +uncouth uncouth adj +uncouther uncouth adj +uncouthest uncouth adj +uncouthness uncouthness nom +uncouthnesses uncouthness nom +uncover uncover ver +uncovered uncover ver +uncovering uncover ver +uncovers uncover ver +uncrate uncrate ver +uncrated uncrate ver +uncrates uncrate ver +uncrating uncrate ver +uncross uncross ver +uncrossed uncross ver +uncrosses uncross ver +uncrossing uncross ver +unction unction nom +unctions unction nom +unctuousness unctuousness nom +unctuousnesses unctuousness nom +uncurl uncurl ver +uncurled uncurl ver +uncurling uncurl ver +uncurls uncurl ver +undeceive undeceive ver +undeceived undeceive ver +undeceives undeceive ver +undeceiving undeceive ver +undecided undecided nom +undecideds undecided nom +under under sw +underachieve underachieve ver +underachieved underachieve ver +underachievement underachievement nom +underachievements underachievement nom +underachiever underachiever nom +underachievers underachiever nom +underachieves underachieve ver +underachieving underachieve ver +underact underact ver +underacted underact ver +underacting underact ver +underacts underact ver +underage underage nom +underages underage nom +underarm underarm nom +underarms underarm nom +underbellies underbelly nom +underbelly underbelly nom +underbid underbid ver +underbidding underbid ver +underbids underbid nom +underbodies underbody nom +underbody underbody nom +underbrush underbrush nom +underbrushes underbrush nom +undercarriage undercarriage nom +undercarriages undercarriage nom +undercharge undercharge nom +undercharged undercharge ver +undercharges undercharge nom +undercharging undercharge ver +underclass underclass nom +underclasses underclass nom +underclassman underclassman nom +underclassmen underclassman nom +underclothing underclothing nom +underclothings underclothing nom +undercoat undercoat nom +undercoated undercoat ver +undercoating undercoat ver +undercoatings undercoating nom +undercoats undercoat nom +undercurrent undercurrent nom +undercurrents undercurrent nom +undercut undercut ver +undercuts undercut nom +undercutting undercut ver +underdevelopment underdevelopment nom +underdevelopments underdevelopment nom +underdog underdog nom +underdogs underdog nom +underdress underdress ver +underdressed underdress ver +underdresses underdress ver +underdressing underdress ver +underemployment underemployment nom +underemployments underemployment nom +underestimate underestimate nom +underestimated underestimate ver +underestimates underestimate nom +underestimating underestimate ver +underestimation underestimation nom +underestimations underestimation nom +underexpose underexpose ver +underexposed underexpose ver +underexposes underexpose ver +underexposing underexpose ver +underexposure underexposure nom +underexposures underexposure nom +underfed underfeed ver +underfeed underfeed ver +underfeeding underfeed ver +underfeeds underfeed ver +underfur underfur nom +underfurs underfur nom +undergarment undergarment nom +undergarments undergarment nom +undergird undergird ver +undergirded undergird ver +undergirding undergird ver +undergirds undergird ver +undergo undergo ver +undergoes undergo ver +undergoing undergo ver +undergone undergo ver +undergrad undergrad nom +undergrads undergrad nom +undergraduate undergraduate nom +undergraduates undergraduate nom +underground underground nom +undergrounds underground nom +undergrowth undergrowth nom +undergrowths undergrowth nom +underhandedness underhandedness nom +underhandednesses underhandedness nom +underlaid underlay ver +underlain underlie ver +underlay underlie ver +underlaying underlay ver +underlayment underlayment nom +underlayments underlayment nom +underlays underlay nom +underlie underlie ver +underlies underlie ver +underline underline nom +underlined underline ver +underlines underline nom +underling underling nom +underlining underline ver +underlip underlip nom +underlips underlip nom +underlying underlie ver +undermine undermine ver +undermined undermine ver +undermines undermine ver +undermining undermine ver +underneath underneath nom +underneaths underneath nom +undernourishment undernourishment nom +undernourishments undernourishment nom +underpaid underpay ver +underpart underpart nom +underparts underpart nom +underpass underpass nom +underpasses underpass nom +underpay underpay ver +underpaying underpay ver +underpayment underpayment nom +underpayments underpayment nom +underpays underpay ver +underpin underpin ver +underpinned underpin ver +underpinning underpin ver +underpinnings underpinning nom +underpins underpin ver +underplay underplay ver +underplayed underplay ver +underplaying underplay ver +underplays underplay ver +underprice underprice ver +underpriced underprice ver +underprices underprice ver +underpricing underprice ver +underproduction underproduction nom +underproductions underproduction nom +underquote underquote ver +underquoted underquote ver +underquotes underquote ver +underquoting underquote ver +underrate underrate ver +underrated underrate ver +underrates underrate ver +underrating underrate ver +underscore underscore nom +underscored underscore ver +underscores underscore nom +underscoring underscore ver +underseal underseal nom +underseals underseal nom +undersecretaries undersecretary nom +undersecretary undersecretary nom +undersell undersell ver +underselling undersell ver +undersells undersell ver +undershirt undershirt nom +undershirts undershirt nom +undershoot undershoot ver +undershooting undershoot ver +undershoots undershoot ver +undershot undershoot ver +underside underside nom +undersides underside nom +undersign undersign ver +undersigned undersign ver +undersigning undersign ver +undersigns undersign ver +underskirt underskirt nom +underskirts underskirt nom +undersoil undersoil nom +undersoils undersoil nom +undersold undersell ver +underspend underspend ver +underspending underspend ver +underspends underspend ver +underspent underspend ver +understand understand ver +understandabilities understandability nom +understandability understandability nom +understanding understand ver +understandings understanding nom +understands understand ver +understate understate ver +understated understate ver +understatement understatement nom +understatements understatement nom +understates understate ver +understating understate ver +understood understand ver +understudied understudy ver +understudies understudy nom +understudy understudy nom +understudying understudy ver +undersurface undersurface nom +undersurfaces undersurface nom +undertake undertake ver +undertaken undertake ver +undertaker undertaker nom +undertakers undertaker nom +undertakes undertake ver +undertaking undertake ver +undertakings undertaking nom +undertone undertone nom +undertones undertone nom +undertook undertake ver +undertow undertow nom +undertows undertow nom +undervaluation undervaluation nom +undervaluations undervaluation nom +undervalue undervalue ver +undervalued undervalue ver +undervalues undervalue ver +undervaluing undervalue ver +underwater underwater nom +underwaters underwater nom +underwear underwear nom +underwears underwear nom +underweight underweight nom +underweights underweight nom +underwent undergo ver +underwhelm underwhelm ver +underwhelmed underwhelm ver +underwhelming underwhelm ver +underwhelms underwhelm ver +underwing underwing nom +underwings underwing nom +underwood underwood nom +underwoods underwood nom +underworld underworld nom +underworlds underworld nom +underwrite underwrite ver +underwriter underwriter nom +underwriters underwriter nom +underwrites underwrite ver +underwriting underwrite ver +underwritten underwrite ver +underwrote underwrite ver +undesirabilities undesirability nom +undesirability undesirability nom +undesirable undesirable nom +undesirables undesirable nom +undid undo ver +undine undine nom +undines undine nom +undo undo ver +undock undock ver +undocked undock ver +undocking undock ver +undocks undock ver +undoes undo ver +undoing undo ver +undoings undoing nom +undone undo ver +undrape undrape ver +undraped undrape ver +undrapes undrape ver +undraping undrape ver +undress undress nom +undressed undress ver +undresses undress nom +undressing undress ver +undulate undulate ver +undulated undulate ver +undulates undulate ver +undulating undulate ver +undulation undulation nom +undulations undulation nom +undutifulness undutifulness nom +undutifulnesses undutifulness nom +unearth unearth ver +unearthed unearth ver +unearthing unearth ver +unearthlier unearthly adj +unearthliest unearthly adj +unearthliness unearthliness nom +unearthlinesses unearthliness nom +unearthly unearthly adj +unearths unearth ver +unease unease nom +uneases unease nom +uneasier uneasy adj +uneasiest uneasy adj +uneasiness uneasiness nom +uneasinesses uneasiness nom +uneasy uneasy adj +unemployable unemployable nom +unemployables unemployable nom +unemployed unemployed nom +unemployeds unemployed nom +unemployment unemployment nom +unemployments unemployment nom +unessential unessential nom +unessentials unessential nom +uneven uneven adj +unevener uneven adj +unevenest uneven adj +unevenness unevenness nom +unevennesses unevenness nom +unexpectedness unexpectedness nom +unexpectednesses unexpectedness nom +unfair unfair adj +unfairer unfair adj +unfairest unfair adj +unfairness unfairness nom +unfairnesses unfairness nom +unfaithfulness unfaithfulness nom +unfaithfulnesses unfaithfulness nom +unfamiliarities unfamiliarity nom +unfamiliarity unfamiliarity nom +unfasten unfasten ver +unfastened unfasten ver +unfastening unfasten ver +unfastens unfasten ver +unfavorableness unfavorableness nom +unfavorablenesses unfavorableness nom +unfeelingness unfeelingness nom +unfeelingnesses unfeelingness nom +unfetter unfetter ver +unfettered unfetter ver +unfettering unfetter ver +unfetters unfetter ver +unfit unfit adj +unfitness unfitness nom +unfitnesses unfitness nom +unfits unfit ver +unfitted unfit ver +unfitter unfit adj +unfittest unfit adj +unfitting unfit ver +unfix unfix ver +unfixed unfix ver +unfixes unfix ver +unfixing unfix ver +unflappabilities unflappability nom +unflappability unflappability nom +unfold unfold ver +unfolded unfold ver +unfolding unfold ver +unfoldings unfolding nom +unfolds unfold ver +unfortunate unfortunate nom +unfortunately unfortunately sw +unfortunates unfortunate nom +unfreeze unfreeze ver +unfreezes unfreeze ver +unfreezing unfreeze ver +unfriendlier unfriendly adj +unfriendliest unfriendly adj +unfriendliness unfriendliness nom +unfriendlinesses unfriendliness nom +unfriendly unfriendly adj +unfrock unfrock ver +unfrocked unfrock ver +unfrocking unfrock ver +unfrocks unfrock ver +unfroze unfreeze ver +unfrozen unfreeze ver +unfurl unfurl ver +unfurled unfurl ver +unfurling unfurl ver +unfurls unfurl ver +ungainlier ungainly adj +ungainliest ungainly adj +ungainliness ungainliness nom +ungainlinesses ungainliness nom +ungainly ungainly adj +ungodlier ungodly adj +ungodliest ungodly adj +ungodliness ungodliness nom +ungodlinesses ungodliness nom +ungodly ungodly adj +ungracefulness ungracefulness nom +ungracefulnesses ungracefulness nom +ungraciousness ungraciousness nom +ungraciousnesses ungraciousness nom +ungratefulness ungratefulness nom +ungratefulnesses ungratefulness nom +unguent unguent nom +unguents unguent nom +ungues unguis nom +unguiculate unguiculate nom +unguiculates unguiculate nom +unguis unguis nom +ungulate ungulate nom +ungulates ungulate nom +unhand unhand ver +unhanded unhand ver +unhandier unhandy adj +unhandiest unhandy adj +unhanding unhand ver +unhands unhand ver +unhandy unhandy adj +unhappier unhappy adj +unhappiest unhappy adj +unhappiness unhappiness nom +unhappinesses unhappiness nom +unhappy unhappy adj +unharness unharness ver +unharnessed unharness ver +unharnesses unharness ver +unharnessing unharness ver +unhealthier unhealthy adj +unhealthiest unhealthy adj +unhealthiness unhealthiness nom +unhealthinesses unhealthiness nom +unhealthy unhealthy adj +unhinge unhinge ver +unhinged unhinge ver +unhinges unhinge ver +unhinging unhinge ver +unhitch unhitch ver +unhitched unhitch ver +unhitches unhitch ver +unhitching unhitch ver +unholier unholy adj +unholiest unholy adj +unholiness unholiness nom +unholinesses unholiness nom +unholy unholy adj +unhook unhook ver +unhooked unhook ver +unhooking unhook ver +unhooks unhook ver +unhorse unhorse ver +unhorsed unhorse ver +unhorses unhorse ver +unhorsing unhorse ver +unicorn unicorn nom +unicorns unicorn nom +unicycle unicycle nom +unicycled unicycle ver +unicycles unicycle nom +unicycling unicycle ver +unification unification nom +unifications unification nom +unified unify ver +unifies unify ver +uniform uniform adj +uniformed uniform ver +uniformer uniform adj +uniformest uniform adj +uniforming uniform ver +uniformities uniformity nom +uniformity uniformity nom +uniformness uniformness nom +uniformnesses uniformness nom +uniforms uniform nom +unify unify ver +unifying unify ver +unilateralism unilateralism nom +unilateralisms unilateralism nom +unilateralist unilateralist nom +unilateralists unilateralist nom +unimportance unimportance nom +unimportances unimportance nom +uninitiate uninitiate nom +uninitiates uninitiate nom +unintelligibilities unintelligibility nom +unintelligibility unintelligibility nom +union union nom +unionisation unionisation nom +unionisations unionisation nom +unionism unionism nom +unionisms unionism nom +unionist unionist nom +unionists unionist nom +unionization unionization nom +unionizations unionization nom +unionize unionize ver +unionized unionize ver +unionizes unionize ver +unionizing unionize ver +unions union nom +unique unique adj +uniqueness uniqueness nom +uniquenesses uniqueness nom +uniquer unique adj +uniques unique nom +uniquest unique adj +unisex unisex nom +unisexes unisex nom +unison unison nom +unisons unison nom +unit unit nom +unite unite nom +united unite ver +unites unite nom +unities unity nom +uniting unite ver +unitings uniting nom +unitize unitize ver +unitized unitize ver +unitizes unitize ver +unitizing unitize ver +units unit nom +unity unity nom +univalve univalve nom +univalves univalve nom +universal universal nom +universalism universalism nom +universalisms universalism nom +universalities universality nom +universality universality nom +universalize universalize ver +universalized universalize ver +universalizes universalize ver +universalizing universalize ver +universals universal nom +universe universe nom +universes universe nom +universities university nom +university university nom +unjust unjust adj +unjuster unjust adj +unjustest unjust adj +unjustness unjustness nom +unjustnesses unjustness nom +unkemptness unkemptness nom +unkemptnesses unkemptness nom +unkind unkind adj +unkinder unkind adj +unkindest unkind adj +unkindlier unkindly adj +unkindliest unkindly adj +unkindly unkindly adj +unkindness unkindness nom +unkindnesses unkindness nom +unknot unknot ver +unknots unknot ver +unknotted unknot ver +unknotting unknot ver +unknowable unknowable nom +unknowables unknowable nom +unknowing unknowing nom +unknowings unknowing nom +unknown unknown nom +unknowns unknown nom +unlace unlace ver +unlaced unlace ver +unlaces unlace ver +unlacing unlace ver +unlash unlash ver +unlashed unlash ver +unlashes unlash ver +unlashing unlash ver +unlatch unlatch ver +unlatched unlatch ver +unlatches unlatch ver +unlatching unlatch ver +unlawfulness unlawfulness nom +unlawfulnesses unlawfulness nom +unlearn unlearn ver +unlearned unlearn ver +unlearning unlearn ver +unlearns unlearn ver +unleash unleash ver +unleashed unleash ver +unleashes unleash ver +unleashing unleash ver +unless unless sw +unlikelier unlikely adj +unlikeliest unlikely adj +unlikelihood unlikelihood nom +unlikelihoods unlikelihood nom +unlikeliness unlikeliness nom +unlikelinesses unlikeliness nom +unlikely unlikely sw +unlikeness unlikeness nom +unlikenesses unlikeness nom +unlimber unlimber ver +unlimbered unlimber ver +unlimbering unlimber ver +unlimbers unlimber ver +unlive unlive ver +unlived unlive ver +unlives unlive ver +unliving unlive ver +unload unload ver +unloaded unload ver +unloading unload ver +unloadings unloading nom +unloads unload ver +unlock unlock ver +unlocked unlock ver +unlocking unlock ver +unlocks unlock ver +unloose unloose ver +unloosed unloose ver +unloosen unloosen ver +unloosened unloosen ver +unloosening unloosen ver +unloosens unloosen ver +unlooses unloose ver +unloosing unloose ver +unlovelier unlovely adj +unloveliest unlovely adj +unlovely unlovely adj +unluckier unlucky adj +unluckiest unlucky adj +unluckiness unluckiness nom +unluckinesses unluckiness nom +unlucky unlucky adj +unmade unmake ver +unmake unmake ver +unmakes unmake ver +unmaking unmake ver +unman unman ver +unmanlier unmanly adj +unmanliest unmanly adj +unmanliness unmanliness nom +unmanlinesses unmanliness nom +unmanly unmanly adj +unmanned unman ver +unmanning unman ver +unmans unman ver +unmarried unmarried nom +unmarrieds unmarried nom +unmask unmask ver +unmasked unmask ver +unmasking unmask ver +unmasks unmask ver +unmentionable unmentionable nom +unmentionables unmentionable nom +unmercifulness unmercifulness nom +unmercifulnesses unmercifulness nom +unmindfulness unmindfulness nom +unmindfulnesses unmindfulness nom +unmoralities unmorality nom +unmorality unmorality nom +unnaturalness unnaturalness nom +unnaturalnesses unnaturalness nom +unnerve unnerve ver +unnerved unnerve ver +unnerves unnerve ver +unnerving unnerve ver +unnilhexium unnilhexium nom +unnilhexiums unnilhexium nom +unnilpentium unnilpentium nom +unnilpentiums unnilpentium nom +unnilquadium unnilquadium nom +unnilquadiums unnilquadium nom +unnilseptium unnilseptium nom +unnilseptiums unnilseptium nom +unobtrusiveness unobtrusiveness nom +unobtrusivenesses unobtrusiveness nom +unorthodoxies unorthodoxy nom +unorthodoxy unorthodoxy nom +unpack unpack ver +unpacked unpack ver +unpacking unpack ver +unpacks unpack ver +unpalatabilities unpalatability nom +unpalatability unpalatability nom +unpeople unperson nom +unperson unperson nom +unpick unpick ver +unpicked unpick ver +unpicking unpick ver +unpicks unpick ver +unpin unpin ver +unpinned unpin ver +unpinning unpin ver +unpins unpin ver +unpleasantness unpleasantness nom +unpleasantnesses unpleasantness nom +unplug unplug ver +unplugged unplug ver +unplugging unplug ver +unplugs unplug ver +unpopularities unpopularity nom +unpopularity unpopularity nom +unpredictabilities unpredictability nom +unpredictability unpredictability nom +unpredictable unpredictable nom +unpredictables unpredictable nom +unpreparedness unpreparedness nom +unpreparednesses unpreparedness nom +unpretentiousness unpretentiousness nom +unpretentiousnesses unpretentiousness nom +unproductiveness unproductiveness nom +unproductivenesses unproductiveness nom +unprofessional unprofessional nom +unprofessionals unprofessional nom +unprofitabilities unprofitability nom +unprofitability unprofitability nom +unprofitableness unprofitableness nom +unprofitablenesses unprofitableness nom +unquestionabilities unquestionability nom +unquestionability unquestionability nom +unquestionableness unquestionableness nom +unquestionablenesses unquestionableness nom +unquiet unquiet adj +unquieter unquiet adj +unquietest unquiet adj +unquiets unquiet nom +unquote unquote ver +unquoted unquote ver +unquotes unquote ver +unquoting unquote ver +unravel unravel ver +unraveled unravel ver +unraveling unravel ver +unravels unravel ver +unreadier unready adj +unreadiest unready adj +unready unready adj +unrealities unreality nom +unreality unreality nom +unreason unreason nom +unreasonableness unreasonableness nom +unreasonablenesses unreasonableness nom +unreasons unreason nom +unreel unreel ver +unreeled unreel ver +unreeling unreel ver +unreels unreel ver +unreliabilities unreliability nom +unreliability unreliability nom +unreliableness unreliableness nom +unreliablenesses unreliableness nom +unresponsiveness unresponsiveness nom +unresponsivenesses unresponsiveness nom +unrest unrest nom +unrestraint unrestraint nom +unrestraints unrestraint nom +unrests unrest nom +unrighteousness unrighteousness nom +unrighteousnesses unrighteousness nom +unripe unripe adj +unriper unripe adj +unripest unripe adj +unroll unroll ver +unrolled unroll ver +unrolling unroll ver +unrolls unroll ver +unrulier unruly adj +unruliest unruly adj +unruliness unruliness nom +unrulinesses unruliness nom +unruly unruly adj +unsaddle unsaddle ver +unsaddled unsaddle ver +unsaddles unsaddle ver +unsaddling unsaddle ver +unsafe unsafe adj +unsafer unsafe adj +unsafest unsafe adj +unsaid unsay ver +unsatisfactoriness unsatisfactoriness nom +unsatisfactorinesses unsatisfactoriness nom +unsavoriness unsavoriness nom +unsavorinesses unsavoriness nom +unsay unsay ver +unsaying unsay ver +unsays unsay ver +unscramble unscramble ver +unscrambled unscramble ver +unscrambles unscramble ver +unscrambling unscramble ver +unscrew unscrew ver +unscrewed unscrew ver +unscrewing unscrew ver +unscrews unscrew ver +unscrupulousness unscrupulousness nom +unscrupulousnesses unscrupulousness nom +unseal unseal ver +unsealed unseal ver +unsealing unseal ver +unseals unseal ver +unseasonableness unseasonableness nom +unseasonablenesses unseasonableness nom +unseat unseat ver +unseated unseat ver +unseating unseat ver +unseats unseat ver +unseemlier unseemly adj +unseemliest unseemly adj +unseemliness unseemliness nom +unseemlinesses unseemliness nom +unseemly unseemly adj +unseen unseen nom +unseens unseen nom +unselfconsciousness unselfconsciousness nom +unselfconsciousnesses unselfconsciousness nom +unselfishness unselfishness nom +unselfishnesses unselfishness nom +unsettle unsettle ver +unsettled unsettle ver +unsettles unsettle ver +unsettling unsettle ver +unsex unsex ver +unsexed unsex ver +unsexes unsex ver +unsexing unsex ver +unshackle unshackle ver +unshackled unshackle ver +unshackles unshackle ver +unshackling unshackle ver +unshapelier unshapely adj +unshapeliest unshapely adj +unshapely unshapely adj +unsheathe unsheathe ver +unsheathed unsheathe ver +unsheathes unsheathe ver +unsheathing unsheathe ver +unsightlier unsightly adj +unsightliest unsightly adj +unsightliness unsightliness nom +unsightlinesses unsightliness nom +unsightly unsightly adj +unskillfulness unskillfulness nom +unskillfulnesses unskillfulness nom +unsnap unsnap ver +unsnapped unsnap ver +unsnapping unsnap ver +unsnaps unsnap ver +unsnarl unsnarl ver +unsnarled unsnarl ver +unsnarling unsnarl ver +unsnarls unsnarl ver +unsociabilities unsociability nom +unsociability unsociability nom +unsociableness unsociableness nom +unsociablenesses unsociableness nom +unsolder unsolder ver +unsoldered unsolder ver +unsoldering unsolder ver +unsolders unsolder ver +unsound unsound adj +unsounder unsound adj +unsoundest unsound adj +unsoundness unsoundness nom +unsoundnesses unsoundness nom +unspell unspell ver +unspelled unspell ver +unspelling unspell ver +unspells unspell ver +unstable unstable adj +unstableness unstableness nom +unstablenesses unstableness nom +unstabler unstable adj +unstablest unstable adj +unsteadied unsteady ver +unsteadier unsteady adj +unsteadies unsteady ver +unsteadiest unsteady adj +unsteadiness unsteadiness nom +unsteadinesses unsteadiness nom +unsteady unsteady adj +unsteadying unsteady ver +unstop unstop ver +unstopped unstop ver +unstopping unstop ver +unstops unstop ver +unstrap unstrap ver +unstrapped unstrap ver +unstrapping unstrap ver +unstraps unstrap ver +unstring unstring ver +unstringing unstring ver +unstrings unstring ver +unstrung unstring ver +unsubstantialize unsubstantialize ver +unsubstantialized unsubstantialize ver +unsubstantializes unsubstantialize ver +unsubstantializing unsubstantialize ver +unsuitabilities unsuitability nom +unsuitability unsuitability nom +unsuitableness unsuitableness nom +unsuitablenesses unsuitableness nom +unsure unsure adj +unsurer unsure adj +unsurest unsure adj +untangle untangle ver +untangled untangle ver +untangles untangle ver +untangling untangle ver +untaught unteach ver +unteach unteach ver +unteaches unteach ver +unteaching unteach ver +unthaw unthaw ver +unthawed unthaw ver +unthawing unthaw ver +unthaws unthaw ver +unthinkable unthinkable nom +unthinkables unthinkable nom +untidied untidy ver +untidier untidy adj +untidies untidy ver +untidiest untidy adj +untidiness untidiness nom +untidinesses untidiness nom +untidy untidy adj +untidying untidy ver +untie untie ver +untied untie ver +unties untie ver +until until sw +untimelier untimely adj +untimeliest untimely adj +untimeliness untimeliness nom +untimelinesses untimeliness nom +untimely untimely adj +unto unto sw +untouchable untouchable nom +untouchables untouchable nom +untrue untrue adj +untruer untrue adj +untruest untrue adj +untruth untruth nom +untruthfulness untruthfulness nom +untruthfulnesses untruthfulness nom +untruths untruth nom +untune untune ver +untuned untune ver +untunes untune ver +untuning untune ver +untwine untwine ver +untwined untwine ver +untwines untwine ver +untwining untwine ver +untwist untwist ver +untwisted untwist ver +untwisting untwist ver +untwists untwist ver +untying untie ver +unusualness unusualness nom +unusualnesses unusualness nom +unveil unveil ver +unveiled unveil ver +unveiling unveil ver +unveilings unveiling nom +unveils unveil ver +unwarier unwary adj +unwariest unwary adj +unwariness unwariness nom +unwarinesses unwariness nom +unwary unwary adj +unwashed unwashed nom +unwasheds unwashed nom +unweave unweave ver +unweaved unweave ver +unweaves unweave ver +unweaving unweave ver +unwholesomeness unwholesomeness nom +unwholesomenesses unwholesomeness nom +unwieldier unwieldy adj +unwieldiest unwieldy adj +unwieldiness unwieldiness nom +unwieldinesses unwieldiness nom +unwieldy unwieldy adj +unwillingness unwillingness nom +unwillingnesses unwillingness nom +unwind unwind ver +unwinding unwind ver +unwinds unwind ver +unwire unwire ver +unwired unwire ver +unwires unwire ver +unwiring unwire ver +unwise unwise adj +unwiser unwise adj +unwisest unwise adj +unworkable unworkable nom +unworkables unworkable nom +unworldlier unworldly adj +unworldliest unworldly adj +unworldliness unworldliness nom +unworldlinesses unworldliness nom +unworldly unworldly adj +unworthier unworthy adj +unworthies unworthy nom +unworthiest unworthy adj +unworthiness unworthiness nom +unworthinesses unworthiness nom +unworthy unworthy adj +unwound unwind ver +unwoven unweave ver +unwrap unwrap ver +unwrapped unwrap ver +unwrapping unwrap ver +unwraps unwrap ver +unyieldingness unyieldingness nom +unyieldingnesses unyieldingness nom +unyoke unyoke ver +unyoked unyoke ver +unyokes unyoke ver +unyoking unyoke ver +unzip unzip ver +unzipped unzip ver +unzipping unzip ver +unzips unzip ver +up up sw +upbeat upbeat nom +upbeats upbeat nom +upbraid upbraid ver +upbraided upbraid ver +upbraiding upbraid ver +upbraidings upbraiding nom +upbraids upbraid ver +upbringing upbringing nom +upbringings upbringing nom +upcast upcast nom +upcasts upcast nom +upchuck upchuck ver +upchucked upchuck ver +upchucking upchuck ver +upchucks upchuck ver +upcountries upcountry nom +upcountry upcountry nom +update update nom +updated update ver +updates update nom +updating update ver +updraft updraft nom +updrafts updraft nom +upend upend ver +upended upend ver +upending upend ver +upends upend ver +upgrade upgrade nom +upgraded upgrade ver +upgrades upgrade nom +upgrading upgrade ver +upheaval upheaval nom +upheavals upheaval nom +upheld uphold ver +uphill uphill nom +uphills uphill nom +uphold uphold ver +upholder upholder nom +upholders upholder nom +upholding uphold ver +upholds uphold ver +upholster upholster ver +upholstered upholster ver +upholsterer upholsterer nom +upholsterers upholsterer nom +upholsteries upholstery nom +upholstering upholster ver +upholsters upholster ver +upholstery upholstery nom +upkeep upkeep nom +upkeeps upkeep nom +upland upland nom +uplands upland nom +uplift uplift nom +uplifted uplift ver +uplifting uplift ver +upliftings uplifting nom +uplifts uplift nom +uplink uplink nom +uplinks uplink nom +upload upload ver +uploaded upload ver +uploading upload ver +uploads upload ver +upon upon sw +upped uppped ver +upper upper nom +uppercase uppercase nom +uppercased uppercase ver +uppercases uppercase nom +uppercasing uppercase ver +upperclassman upperclassman nom +upperclassmen upperclassman nom +uppercut uppercut ver +uppercuts uppercut nom +uppercutting uppercut ver +uppers upper nom +upping upping ver +uppishness uppishness nom +uppishnesses uppishness nom +uppityness uppityness nom +uppitynesses uppityness nom +upraise upraise ver +upraised upraise ver +upraises upraise ver +upraising upraise ver +uprear uprear ver +upreared uprear ver +uprearing uprear ver +uprears uprear ver +upright upright nom +uprighted upright ver +uprighting upright ver +uprightness uprightness nom +uprightnesses uprightness nom +uprights upright nom +uprising uprising nom +uprisings uprising nom +uproar uproar nom +uproars uproar nom +uproot uproot ver +uprooted uproot ver +uprooting uproot ver +uproots uproot ver +ups ups nom +upscale upscale ver +upscaled upscale ver +upscales upscale ver +upscaling upscale ver +upset upset ver +upsets upset nom +upsetting upset ver +upshot upshot nom +upshots upshot nom +upside upside nom +upsides upside nom +upsilon upsilon nom +upsilons upsilon nom +upstage upstage nom +upstaged upstage ver +upstages upstage nom +upstaging upstage ver +upstart upstart nom +upstarted upstart ver +upstarting upstart ver +upstarts upstart nom +upstate upstate nom +upstates upstate nom +upstroke upstroke nom +upstrokes upstroke nom +upsurge upsurge nom +upsurged upsurge ver +upsurges upsurge nom +upsurging upsurge ver +upswing upswing nom +upswinging upswing ver +upswings upswing nom +upswung upswing ver +uptake uptake nom +uptakes uptake nom +upthrow upthrow nom +upthrows upthrow nom +upthrust upthrust ver +upthrusting upthrust ver +upthrusts upthrust nom +uptick uptick nom +upticks uptick nom +uptight uptight adj +uptighter uptight adj +uptightest uptight adj +uptown uptown nom +uptowns uptown nom +upturn upturn nom +upturned upturn ver +upturning upturn ver +upturns upturn nom +uracil uracil nom +uracils uracil nom +uraemia uraemia nom +uraemias uraemia nom +uraninite uraninite nom +uraninites uraninite nom +uranium uranium nom +uraniums uranium nom +uranyl uranyl nom +uranyls uranyl nom +urban urban adj +urbane urbane adj +urbaner urban adj +urbanest urban adj +urbanities urbanity nom +urbanity urbanity nom +urbanization urbanization nom +urbanizations urbanization nom +urbanize urbanize ver +urbanized urbanize ver +urbanizes urbanize ver +urbanizing urbanize ver +urbanologies urbanology nom +urbanologist urbanologist nom +urbanologists urbanologist nom +urbanology urbanology nom +urchin urchin nom +urchins urchin nom +urea urea nom +ureas urea nom +uremia uremia nom +uremias uremia nom +ureter ureter nom +ureters ureter nom +urethane urethane nom +urethanes urethane nom +urethra urethra nom +urethrae urethra nom +urethritis urethritis nom +urethritises urethritis nom +urge urge nom +urged urge ver +urgencies urgency nom +urgency urgency nom +urges urge nom +urging urge ver +urgings urging nom +urial urial nom +urials urial nom +urinal urinal nom +urinals urinal nom +urinalyses urinalysis nom +urinalysis urinalysis nom +urinaries urinary nom +urinary urinary nom +urinate urinate ver +urinated urinate ver +urinates urinate ver +urinating urinate ver +urination urination nom +urinations urination nom +urine urine nom +urines urine nom +urn urn nom +urns urn nom +urochord urochord nom +urochordate urochordate nom +urochordates urochordate nom +urochords urochord nom +urodele urodele nom +urodeles urodele nom +urologies urology nom +urologist urologist nom +urologists urologist nom +urology urology nom +uropygium uropygium nom +uropygiums uropygium nom +urticaria urticaria nom +urticarias urticaria nom +urtication urtication nom +urtications urtication nom +urus urus nom +uruses urus nom +us us sw +usabilities usability nom +usability usability nom +usableness usableness nom +usablenesses usableness nom +usage usage nom +usages usage nom +usance usance nom +usances usance nom +use use sw +useabilities useability nom +useability useability nom +used used sw +useful useful sw +usefulness usefulness nom +usefulnesses usefulness nom +uselessness uselessness nom +uselessnesses uselessness nom +user user nom +users user nom +uses uses sw +usher usher nom +ushered usher ver +usherette usherette nom +usherettes usherette nom +ushering usher ver +ushers usher nom +using using sw +usual usual nom +usually usually sw +usualness usualness nom +usualnesses usualness nom +usuals usual nom +usurer usurer nom +usurers usurer nom +usuries usury nom +usurp usurp ver +usurpation usurpation nom +usurpations usurpation nom +usurped usurp ver +usurper usurper nom +usurpers usurper nom +usurping usurp ver +usurps usurp ver +usury usury nom +ut ut nom +utensil utensil nom +utensils utensil nom +uteri uterus nom +uterus uterus nom +utilisation utilisation nom +utilisations utilisation nom +utilise utilise ver +utilised utilise ver +utilises utilise ver +utilising utilise ver +utilitarian utilitarian nom +utilitarianism utilitarianism nom +utilitarianisms utilitarianism nom +utilitarians utilitarian nom +utilities utility nom +utility utility nom +utilization utilization nom +utilizations utilization nom +utilize utilize ver +utilized utilize ver +utilizes utilize ver +utilizing utilize ver +utmost utmost nom +utmosts utmost nom +utopia utopia nom +utopian utopian nom +utopians utopian nom +utopias utopia nom +utricle utricle nom +utricles utricle nom +utriculi utriculus nom +utriculus utriculus nom +uts ut nom +utter utter adj +utterance utterance nom +utterances utterance nom +uttered utter ver +utterer utter adj +utterest utter adj +uttering utter ver +uttermost uttermost nom +uttermosts uttermost nom +utters utter ver +uucp uucp sw +uvea uvea nom +uveas uvea nom +uveitis uveitis nom +uveitises uveitis nom +uvula uvula nom +uvular uvular nom +uvulars uvular nom +uvulas uvula nom +uvulitis uvulitis nom +uvulitises uvulitis nom +uxoriousness uxoriousness nom +uxoriousnesses uxoriousness nom +v v sw +vac vac nom +vacancies vacancy nom +vacancy vacancy nom +vacate vacate ver +vacated vacate ver +vacates vacate ver +vacating vacate ver +vacation vacation nom +vacationed vacation ver +vacationer vacationer nom +vacationers vacationer nom +vacationing vacation ver +vacationist vacationist nom +vacationists vacationist nom +vacations vacation nom +vaccinate vaccinate ver +vaccinated vaccinate ver +vaccinates vaccinate ver +vaccinating vaccinate ver +vaccination vaccination nom +vaccinations vaccination nom +vaccine vaccine nom +vaccinee vaccinee nom +vaccinees vaccinee nom +vaccines vaccine nom +vaccinia vaccinia nom +vaccinias vaccinia nom +vacillate vacillate ver +vacillated vacillate ver +vacillates vacillate ver +vacillating vacillate ver +vacillation vacillation nom +vacillations vacillation nom +vacillator vacillator nom +vacillators vacillator nom +vacs vac nom +vacuities vacuity nom +vacuity vacuity nom +vacuolation vacuolation nom +vacuolations vacuolation nom +vacuole vacuole nom +vacuoles vacuole nom +vacuousness vacuousness nom +vacuousnesses vacuousness nom +vacuum vacuum nom +vacuumed vacuum ver +vacuuming vacuum ver +vacuums vacuum nom +vagabond vagabond nom +vagabondage vagabondage nom +vagabondages vagabondage nom +vagabonded vagabond ver +vagabonding vagabond ver +vagabonds vagabond nom +vagaries vagary nom +vagary vagary nom +vagi vagus nom +vagina vagina nom +vaginae vagina nom +vaginitides vaginitis nom +vaginitis vaginitis nom +vagrancies vagrancy nom +vagrancy vagrancy nom +vagrant vagrant nom +vagrants vagrant nom +vague vague adj +vagueness vagueness nom +vaguenesses vagueness nom +vaguer vague adj +vaguest vague adj +vagus vagus nom +vain vain adj +vainer vain adj +vainest vain adj +vainglories vainglory nom +vainglory vainglory nom +valance valance nom +valances valance nom +vale vale nom +valediction valediction nom +valedictions valediction nom +valedictorian valedictorian nom +valedictorians valedictorian nom +valedictories valedictory nom +valedictory valedictory nom +valence valence nom +valences valence nom +valencies valency nom +valency valency nom +valentine valentine nom +valentines valentine nom +valerian valerian nom +valerians valerian nom +vales vale nom +valet valet nom +valeted valet ver +valeting valet ver +valets valet nom +valetudinarian valetudinarian nom +valetudinarianism valetudinarianism nom +valetudinarianisms valetudinarianism nom +valetudinarians valetudinarian nom +valiance valiance nom +valiances valiance nom +valiancies valiancy nom +valiancy valiancy nom +valiant valiant nom +valiants valiant nom +valid valid adj +validate validate ver +validated validate ver +validates validate ver +validating validate ver +validation validation nom +validations validation nom +valider valid adj +validest valid adj +validities validity nom +validity validity nom +validness validness nom +validnesses validness nom +valine valine nom +valines valine nom +valise valise nom +valises valise nom +valley valley nom +valleys valley nom +valor valor nom +valorousness valorousness nom +valorousnesses valorousness nom +valors valor nom +valour valour nom +valours valour nom +valse valse nom +valses valse nom +valuable valuable nom +valuableness valuableness nom +valuablenesses valuableness nom +valuables valuable nom +valuate valuate ver +valuated valuate ver +valuates valuate ver +valuating valuate ver +valuation valuation nom +valuations valuation nom +valuator valuator nom +valuators valuator nom +value value sw +valued value ver +valuelessness valuelessness nom +valuelessnesses valuelessness nom +valuer valuer nom +valuers valuer nom +values value nom +valuing value ver +valve valve nom +valved valve ver +valves valve nom +valving valve ver +valvulitis valvulitis nom +valvulitises valvulitis nom +vambrace vambrace nom +vambraces vambrace nom +vamoose vamoose ver +vamoosed vamoose ver +vamooses vamoose ver +vamoosing vamoose ver +vamp vamp nom +vamped vamp ver +vamper vamper nom +vampers vamper nom +vamping vamp ver +vampire vampire nom +vampires vampire nom +vamps vamp nom +van van nom +vanadate vanadate nom +vanadates vanadate nom +vanadinite vanadinite nom +vanadinites vanadinite nom +vanadium vanadium nom +vanadiums vanadium nom +vanda vanda nom +vandal vandal nom +vandalise vandalise ver +vandalised vandalise ver +vandalises vandalise ver +vandalising vandalise ver +vandalism vandalism nom +vandalisms vandalism nom +vandalize vandalize ver +vandalized vandalize ver +vandalizes vandalize ver +vandalizing vandalize ver +vandals vandal nom +vandas vanda nom +vane vane nom +vanes vane nom +vanguard vanguard nom +vanguards vanguard nom +vanilla vanilla nom +vanillas vanilla nom +vanillin vanillin nom +vanillins vanillin nom +vanish vanish nom +vanished vanish ver +vanishes vanish nom +vanishing vanish ver +vanishings vanishing nom +vanities vanity nom +vanity vanity nom +vanned van ver +vanning van ver +vanquish vanquish ver +vanquished vanquish ver +vanquisher vanquisher nom +vanquishers vanquisher nom +vanquishes vanquish ver +vanquishing vanquish ver +vans van nom +vantage vantage nom +vantages vantage nom +vapid vapid adj +vapider vapid adj +vapidest vapid adj +vapidities vapidity nom +vapidity vapidity nom +vapidness vapidness nom +vapidnesses vapidness nom +vapor vapor nom +vapored vapor ver +vaporing vapor ver +vaporings vaporing nom +vaporise vaporise ver +vaporised vaporise ver +vaporises vaporise ver +vaporising vaporise ver +vaporization vaporization nom +vaporizations vaporization nom +vaporize vaporize ver +vaporized vaporize ver +vaporizer vaporizer nom +vaporizers vaporizer nom +vaporizes vaporize ver +vaporizing vaporize ver +vapors vapor nom +vapour vapour nom +vapoured vapour ver +vapouring vapour ver +vapours vapour nom +vaquero vaquero nom +vaqueros vaquero nom +var var nom +vara vara nom +varan varan nom +varans varan nom +varas vara nom +variabilities variability nom +variability variability nom +variable variable nom +variableness variableness nom +variablenesses variableness nom +variables variable nom +variance variance nom +variances variance nom +variant variant nom +variants variant nom +variate variate nom +variates variate nom +variation variation nom +variations variation nom +varicella varicella nom +varicellas varicella nom +varied vary ver +variedness variedness nom +variednesses variedness nom +variegate variegate ver +variegated variegate ver +variegates variegate ver +variegating variegate ver +variegation variegation nom +variegations variegation nom +varies vary ver +varietal varietal nom +varietals varietal nom +varieties variety nom +variety variety nom +variola variola nom +variolas variola nom +variometer variometer nom +variometers variometer nom +variorum variorum nom +variorums variorum nom +various various sw +varlet varlet nom +varlets varlet nom +varment varment nom +varments varment nom +varmint varmint nom +varmints varmint nom +varnish varnish nom +varnished varnish ver +varnishes varnish nom +varnishing varnish ver +vars var nom +varsities varsity nom +varsity varsity nom +vary vary ver +varying vary ver +vas vas nom +vasculitides vasculitis nom +vasculitis vasculitis nom +vase vase nom +vasectomies vasectomy nom +vasectomize vasectomize ver +vasectomized vasectomize ver +vasectomizes vasectomize ver +vasectomizing vasectomize ver +vasectomy vasectomy nom +vases vas nom +vasoconstriction vasoconstriction nom +vasoconstrictions vasoconstriction nom +vasoconstrictor vasoconstrictor nom +vasoconstrictors vasoconstrictor nom +vasodilation vasodilation nom +vasodilations vasodilation nom +vasodilator vasodilator nom +vasodilators vasodilator nom +vasopressin vasopressin nom +vasopressins vasopressin nom +vassal vassal nom +vassalage vassalage nom +vassalages vassalage nom +vassals vassal nom +vast vast adj +vaster vast adj +vastest vast adj +vastness vastness nom +vastnesses vastness nom +vasts vast nom +vat vat nom +vaticination vaticination nom +vaticinations vaticination nom +vats vat nom +vatted vat ver +vatting vat ver +vaudeville vaudeville nom +vaudevilles vaudeville nom +vaudevillian vaudevillian nom +vaudevillians vaudevillian nom +vault vault nom +vaulted vault ver +vaulter vaulter nom +vaulters vaulter nom +vaulting vault ver +vaultings vaulting nom +vaults vault nom +vaunt vaunt nom +vaunted vaunt ver +vaunter vaunter nom +vaunters vaunter nom +vaunting vaunt ver +vaunts vaunt nom +veal veal nom +veals veal nom +vector vector nom +vectored vector ver +vectoring vector ver +vectors vector nom +vedalia vedalia nom +vedalias vedalia nom +veejay veejay nom +veejays veejay nom +veep veep nom +veeps veep nom +veer veer nom +veered veer ver +veeries veery nom +veering veer ver +veerings veering nom +veers veer nom +veery veery nom +veg veg nom +vegan vegan nom +vegans vegan nom +veges veg nom +vegetable vegetable nom +vegetables vegetable nom +vegetarian vegetarian nom +vegetarianism vegetarianism nom +vegetarianisms vegetarianism nom +vegetarians vegetarian nom +vegetate vegetate ver +vegetated vegetate ver +vegetates vegetate ver +vegetating vegetate ver +vegetation vegetation nom +vegetations vegetation nom +vegged veg ver +veggie veggie nom +veggies veggie nom +vegging veg ver +vehemence vehemence nom +vehemences vehemence nom +vehemencies vehemency nom +vehemency vehemency nom +vehicle vehicle nom +vehicles vehicle nom +veil veil nom +veiled veil ver +veiling veil ver +veilings veiling nom +veils veil nom +vein vein nom +veined vein ver +veining vein ver +veins vein nom +vela velum nom +velar velar nom +velars velar nom +veld veld nom +velds veld nom +veldt veldt nom +veldts veldt nom +velleities velleity nom +velleity velleity nom +vellicate vellicate ver +vellicated vellicate ver +vellicates vellicate ver +vellicating vellicate ver +vellum vellum nom +vellums vellum nom +velocipede velocipede nom +velocipedes velocipede nom +velociraptor velociraptor nom +velociraptors velociraptor nom +velocities velocity nom +velocity velocity nom +velour velour nom +velours velour nom +veloute veloute nom +veloutes veloute nom +velum velum nom +velvet velvet nom +velveteen velveteen nom +velveteens velveteen nom +velvetier velvety adj +velvetiest velvety adj +velvets velvet nom +velvety velvety adj +vena vena nom +venae vena nom +venalities venality nom +venality venality nom +venation venation nom +venations venation nom +vend vend ver +vended vend ver +vendee vendee nom +vendees vendee nom +vender vender nom +venders vender nom +vendetta vendetta nom +vendettas vendetta nom +vending vend ver +vendition vendition nom +venditions vendition nom +vendor vendor nom +vendors vendor nom +vends vend ver +vendue vendue nom +vendues vendue nom +veneer veneer nom +veneered veneer ver +veneering veneer ver +veneerings veneering nom +veneers veneer nom +venerabilities venerability nom +venerability venerability nom +venerate venerate ver +venerated venerate ver +venerates venerate ver +venerating venerate ver +veneration veneration nom +venerations veneration nom +venesection venesection nom +venesections venesection nom +vengeance vengeance nom +vengeances vengeance nom +vengefulness vengefulness nom +vengefulnesses vengefulness nom +venireman venireman nom +veniremen venireman nom +venison venison nom +venisons venison nom +venogram venogram nom +venograms venogram nom +venographies venography nom +venography venography nom +venom venom nom +venomed venom ver +venoming venom ver +venoms venom nom +vent vent nom +ventail ventail nom +ventails ventail nom +vented vent ver +venter venter nom +venters venter nom +ventilate ventilate ver +ventilated ventilate ver +ventilates ventilate ver +ventilating ventilate ver +ventilation ventilation nom +ventilations ventilation nom +ventilator ventilator nom +ventilators ventilator nom +venting vent ver +ventings venting nom +ventricle ventricle nom +ventricles ventricle nom +ventriculi ventriculus nom +ventriculus ventriculus nom +ventriloquies ventriloquy nom +ventriloquism ventriloquism nom +ventriloquisms ventriloquism nom +ventriloquist ventriloquist nom +ventriloquists ventriloquist nom +ventriloquy ventriloquy nom +vents vent nom +venture venture nom +ventured venture ver +ventures venture nom +venturesomeness venturesomeness nom +venturesomenesses venturesomeness nom +venturi venturi nom +venturing venture ver +venturis venturi nom +venturousness venturousness nom +venturousnesses venturousness nom +venue venue nom +venues venue nom +venule venule nom +venules venule nom +veracities veracity nom +veracity veracity nom +veranda veranda nom +verandah verandah nom +verandahs verandah nom +verandas veranda nom +verapamil verapamil nom +verapamils verapamil nom +verb verb nom +verbal verbal nom +verbalization verbalization nom +verbalizations verbalization nom +verbalize verbalize ver +verbalized verbalize ver +verbalizes verbalize ver +verbalizing verbalize ver +verbals verbal nom +verbena verbena nom +verbenas verbena nom +verbiage verbiage nom +verbiages verbiage nom +verbified verbify ver +verbifies verbify ver +verbify verbify ver +verbifying verbify ver +verbose verbose adj +verboseness verboseness nom +verbosenesses verboseness nom +verboser verbose adj +verbosest verbose adj +verbosities verbosity nom +verbosity verbosity nom +verbs verb nom +verdancies verdancy nom +verdancy verdancy nom +verdict verdict nom +verdicts verdict nom +verdigris verdigris nom +verdigrised verdigris ver +verdigrises verdigris nom +verdigrising verdigris ver +verdin verdin nom +verdins verdin nom +verdure verdure nom +verdures verdure nom +verge verge nom +verged verge ver +verger verger nom +vergers verger nom +verges verge nom +verging verge ver +verier very adj +veriest very adj +verification verification nom +verifications verification nom +verified verify ver +verifies verify ver +verify verify ver +verifying verify ver +verisimilitude verisimilitude nom +verisimilitudes verisimilitude nom +verities verity nom +verity verity nom +vermicelli vermicelli nom +vermiculation vermiculation nom +vermiculations vermiculation nom +vermiculite vermiculite nom +vermiculites vermiculite nom +vermifuge vermifuge nom +vermifuges vermifuge nom +vermilion vermilion nom +vermilioned vermilion ver +vermilioning vermilion ver +vermilions vermilion nom +vermillion vermillion nom +vermillions vermillion nom +vermin vermin nom +vermouth vermouth nom +vermouths vermouth nom +vernacular vernacular nom +vernaculars vernacular nom +vernier vernier nom +verniers vernier nom +veronica veronica nom +veronicas veronica nom +verruca verruca nom +verrucae verruca nom +versatilities versatility nom +versatility versatility nom +verse verse nom +versed verse ver +verses verse nom +versicle versicle nom +versicles versicle nom +versification versification nom +versifications versification nom +versified versify ver +versifier versifier nom +versifiers versifier nom +versifies versify ver +versify versify ver +versifying versify ver +versing verse ver +version version nom +versions version nom +verso verso nom +versos verso nom +verst verst nom +versts verst nom +vertebra vertebra nom +vertebrae vertebra nom +vertebrate vertebrate nom +vertebrates vertebrate nom +vertex vertex nom +vertexes vertex nom +vertical vertical nom +verticalities verticality nom +verticality verticality nom +verticalness verticalness nom +verticalnesses verticalness nom +verticals vertical nom +verticil verticil nom +verticils verticil nom +vertigo vertigo nom +vertigoes vertigo nom +vertu vertu nom +vertus vertu nom +vervain vervain nom +vervains vervain nom +verve verve nom +verves verve nom +vervet vervet nom +vervets vervet nom +very very sw +vesica vesica nom +vesicae vesica nom +vesicant vesicant nom +vesicants vesicant nom +vesicatories vesicatory nom +vesicatory vesicatory nom +vesicle vesicle nom +vesicles vesicle nom +vesiculate vesiculate ver +vesiculated vesiculate ver +vesiculates vesiculate ver +vesiculating vesiculate ver +vesper vesper nom +vespers vesper nom +vespertilionid vespertilionid nom +vespertilionids vespertilionid nom +vespid vespid nom +vespids vespid nom +vessel vessel nom +vessels vessel nom +vest vest nom +vestal vestal nom +vestals vestal nom +vested vest ver +vestibule vestibule nom +vestibuled vestibule ver +vestibules vestibule nom +vestibuling vestibule ver +vestige vestige nom +vestiges vestige nom +vesting vest ver +vestings vesting nom +vestment vestment nom +vestments vestment nom +vestries vestry nom +vestry vestry nom +vestryman vestryman nom +vestrymen vestryman nom +vests vest nom +vesture vesture nom +vestured vesture ver +vestures vesture nom +vesturing vesture ver +vesuvian vesuvian nom +vesuvianite vesuvianite nom +vesuvianites vesuvianite nom +vesuvians vesuvian nom +vet vet nom +vetch vetch nom +vetches vetch nom +vetchling vetchling nom +veteran veteran nom +veterans veteran nom +veterinarian veterinarian nom +veterinarians veterinarian nom +veterinaries veterinary nom +veterinary veterinary nom +veto veto nom +vetoed veto ver +vetoes veto nom +vetoing veto ver +vets vet nom +vetted vet ver +vetting vet ver +vex vex ver +vexation vexation nom +vexations vexation nom +vexed vex ver +vexes vex ver +vexing vex ver +via via sw +viabilities viability nom +viability viability nom +viaduct viaduct nom +viaducts viaduct nom +vial vial nom +vialed vial ver +vialing vial ver +vials vial nom +viand viand nom +viands viand nom +vias via nom +vibe vibe nom +vibes vibe nom +vibraharp vibraharp nom +vibraharps vibraharp nom +vibrancies vibrancy nom +vibrancy vibrancy nom +vibrant vibrant nom +vibrants vibrant nom +vibraphone vibraphone nom +vibraphones vibraphone nom +vibraphonist vibraphonist nom +vibraphonists vibraphonist nom +vibrate vibrate ver +vibrated vibrate ver +vibrates vibrate ver +vibrating vibrate ver +vibration vibration nom +vibrations vibration nom +vibrato vibrato nom +vibrator vibrator nom +vibrators vibrator nom +vibratos vibrato nom +vibrio vibrio nom +vibrion vibrion nom +vibrions vibrion nom +vibrios vibrio nom +vibrissa vibrissa nom +vibrissae vibrissa nom +viburnum viburnum nom +viburnums viburnum nom +vicar vicar nom +vicarage vicarage nom +vicarages vicarage nom +vicariate vicariate nom +vicariates vicariate nom +vicariousness vicariousness nom +vicariousnesses vicariousness nom +vicars vicar nom +vicarship vicarship nom +vicarships vicarship nom +vice vice nom +viced vice ver +vicegerent vicegerent nom +vicegerents vicegerent nom +vicereine vicereine nom +vicereines vicereine nom +viceroy viceroy nom +viceroyalties viceroyalty nom +viceroyalty viceroyalty nom +viceroys viceroy nom +viceroyship viceroyship nom +viceroyships viceroyship nom +vices vice nom +vichyssoise vichyssoise nom +vichyssoises vichyssoise nom +vicing vice ver +vicinities vicinity nom +vicinity vicinity nom +viciousness viciousness nom +viciousnesses viciousness nom +vicissitude vicissitude nom +vicissitudes vicissitude nom +victim victim nom +victimisation victimisation nom +victimisations victimisation nom +victimise victimise ver +victimised victimise ver +victimises victimise ver +victimising victimise ver +victimization victimization nom +victimizations victimization nom +victimize victimize ver +victimized victimize ver +victimizes victimize ver +victimizing victimize ver +victims victim nom +victor victor nom +victories victory nom +victors victor nom +victory victory nom +victual victual nom +victualed victual ver +victualer victualer nom +victualers victualer nom +victualing victual ver +victualler victualler nom +victuallers victualler nom +victuals victual nom +vicuna vicuna nom +vicunas vicuna nom +video video nom +videocassette videocassette nom +videocassettes videocassette nom +videodisc videodisc nom +videodiscs videodisc nom +videodisk videodisk nom +videodisks videodisk nom +videophone videophone nom +videophones videophone nom +videos video nom +videotape videotape nom +videotaped videotape ver +videotapes videotape nom +videotaping videotape ver +vie vie ver +vied vie ver +vies vie ver +view view nom +viewed view ver +viewer viewer nom +viewers viewer nom +viewfinder viewfinder nom +viewfinders viewfinder nom +viewing view ver +viewings viewing nom +viewpoint viewpoint nom +viewpoints viewpoint nom +views view nom +vigil vigil nom +vigilance vigilance nom +vigilances vigilance nom +vigilante vigilante nom +vigilantes vigilante nom +vigilantism vigilantism nom +vigilantisms vigilantism nom +vigilantist vigilantist nom +vigilantists vigilantist nom +vigils vigil nom +vignette vignette nom +vignetted vignette ver +vignettes vignette nom +vignetting vignette ver +vignettist vignettist nom +vignettists vignettist nom +vigor vigor nom +vigors vigor nom +vigour vigour nom +vigours vigour nom +viking viking nom +vikings viking nom +vile vile adj +vileness vileness nom +vilenesses vileness nom +viler vile adj +vilest vile adj +vilification vilification nom +vilifications vilification nom +vilified vilify ver +vilifies vilify ver +vilify vilify ver +vilifying vilify ver +villa villa nom +village village nom +villager villager nom +villagers villager nom +villages village nom +villain villain nom +villainage villainage nom +villainages villainage nom +villainess villainess nom +villainesses villainess nom +villainies villainy nom +villainousness villainousness nom +villainousnesses villainousness nom +villains villain nom +villainy villainy nom +villas villa nom +villein villein nom +villeinage villeinage nom +villeinages villeinage nom +villeins villein nom +villi villus nom +villus villus nom +vim vim nom +vims vim nom +vinaigrette vinaigrette nom +vinaigrettes vinaigrette nom +vinblastine vinblastine nom +vinblastines vinblastine nom +vincristine vincristine nom +vincristines vincristine nom +vindicate vindicate ver +vindicated vindicate ver +vindicates vindicate ver +vindicating vindicate ver +vindication vindication nom +vindications vindication nom +vindicator vindicator nom +vindicators vindicator nom +vindictiveness vindictiveness nom +vindictivenesses vindictiveness nom +vine vine nom +vinegar vinegar nom +vinegared vinegar ver +vinegaring vinegar ver +vinegarroon vinegarroon nom +vinegarroons vinegarroon nom +vinegars vinegar nom +vineries vinery nom +vinery vinery nom +vines vine nom +vineyard vineyard nom +vineyards vineyard nom +vinifera vinifera nom +viniferas vinifera nom +vinified vinify ver +vinifies vinify ver +vinify vinify ver +vinifying vinify ver +vino vino nom +vinos vino nom +vintage vintage nom +vintaged vintage ver +vintages vintage nom +vintaging vintage ver +vintner vintner nom +vintners vintner nom +vinyl vinyl nom +vinyls vinyl nom +viol viol nom +viola viola nom +violas viola nom +violate violate ver +violated violate ver +violates violate ver +violating violate ver +violation violation nom +violations violation nom +violator violator nom +violators violator nom +violence violence nom +violences violence nom +violet violet nom +violets violet nom +violin violin nom +violinist violinist nom +violinists violinist nom +violins violin nom +violist violist nom +violists violist nom +violoncellist violoncellist nom +violoncellists violoncellist nom +violoncello violoncello nom +violoncellos violoncello nom +viols viol nom +viomycin viomycin nom +viomycins viomycin nom +viper viper nom +vipers viper nom +virago virago nom +viragoes virago nom +vireo vireo nom +vireos vireo nom +virga virga nom +virgas virga nom +virgin virgin nom +virginal virginal nom +virginals virginal nom +virginities virginity nom +virginity virginity nom +virgins virgin nom +virgule virgule nom +virgules virgule nom +viricide viricide nom +viricides viricide nom +viridities viridity nom +viridity viridity nom +virilities virility nom +virility virility nom +virilization virilization nom +virilizations virilization nom +virion virion nom +virions virion nom +viroid viroid nom +viroids viroid nom +virologies virology nom +virologist virologist nom +virologists virologist nom +virology virology nom +virtu virtu nom +virtue virtue nom +virtues virtue nom +virtuosities virtuosity nom +virtuosity virtuosity nom +virtuoso virtuoso nom +virtuosos virtuoso nom +virtuousness virtuousness nom +virtuousnesses virtuousness nom +virtus virtu nom +virucide virucide nom +virucides virucide nom +virulence virulence nom +virulences virulence nom +virus virus nom +viruses virus nom +virusoid virusoid nom +virusoids virusoid nom +visa visa nom +visaed visa ver +visage visage nom +visages visage nom +visaing visa ver +visas visa nom +viscacha viscacha nom +viscachas viscacha nom +viscera viscus nom +viscidities viscidity nom +viscidity viscidity nom +viscidness viscidness nom +viscidnesses viscidness nom +viscometer viscometer nom +viscometers viscometer nom +viscometries viscometry nom +viscometry viscometry nom +viscose viscose nom +viscoses viscose nom +viscosimeter viscosimeter nom +viscosimeters viscosimeter nom +viscosities viscosity nom +viscosity viscosity nom +viscount viscount nom +viscountcies viscountcy nom +viscountcy viscountcy nom +viscountess viscountess nom +viscountesses viscountess nom +viscounties viscounty nom +viscounts viscount nom +viscounty viscounty nom +viscousness viscousness nom +viscousnesses viscousness nom +viscus viscus nom +vise vise nom +vised vise ver +vises vise nom +visibilities visibility nom +visibility visibility nom +visibleness visibleness nom +visiblenesses visibleness nom +vising vise ver +vision vision nom +visionaries visionary nom +visionary visionary nom +visioned vision ver +visioning vision ver +visions vision nom +visit visit nom +visitant visitant nom +visitants visitant nom +visitation visitation nom +visitations visitation nom +visited visit ver +visiting visit ver +visitings visiting nom +visitor visitor nom +visitors visitor nom +visits visit nom +visor visor nom +visored visor ver +visoring visor ver +visors visor nom +vista vista nom +vistas vista nom +visual visual nom +visualisation visualisation nom +visualisations visualisation nom +visualization visualization nom +visualizations visualization nom +visualize visualize ver +visualized visualize ver +visualizer visualizer nom +visualizers visualizer nom +visualizes visualize ver +visualizing visualize ver +visuals visual nom +vita vita nom +vitae vita nom +vitalise vitalise ver +vitalised vitalise ver +vitalises vitalise ver +vitalising vitalise ver +vitalism vitalism nom +vitalisms vitalism nom +vitalist vitalist nom +vitalists vitalist nom +vitalities vitality nom +vitality vitality nom +vitalization vitalization nom +vitalizations vitalization nom +vitalize vitalize ver +vitalized vitalize ver +vitalizes vitalize ver +vitalizing vitalize ver +vitalness vitalness nom +vitalnesses vitalness nom +vitamin vitamin nom +vitamine vitamine nom +vitamines vitamine nom +vitaminize vitaminize ver +vitaminized vitaminize ver +vitaminizes vitaminize ver +vitaminizing vitaminize ver +vitamins vitamin nom +vitiate vitiate ver +vitiated vitiate ver +vitiates vitiate ver +vitiating vitiate ver +vitiation vitiation nom +vitiations vitiation nom +viticulture viticulture nom +viticultures viticulture nom +viticulturist viticulturist nom +viticulturists viticulturist nom +vitiligo vitiligo nom +vitiligos vitiligo nom +vitrifaction vitrifaction nom +vitrifactions vitrifaction nom +vitrification vitrification nom +vitrifications vitrification nom +vitrified vitrify ver +vitrifies vitrify ver +vitrify vitrify ver +vitrifying vitrify ver +vitrine vitrine nom +vitrines vitrine nom +vitriol vitriol nom +vitrioled vitriol ver +vitrioling vitriol ver +vitriols vitriol nom +vituperate vituperate ver +vituperated vituperate ver +vituperates vituperate ver +vituperating vituperate ver +vituperation vituperation nom +vituperations vituperation nom +vivaciousness vivaciousness nom +vivaciousnesses vivaciousness nom +vivacities vivacity nom +vivacity vivacity nom +vivarium vivarium nom +vivariums vivarium nom +viverrine viverrine nom +viverrines viverrine nom +vivid vivid adj +vivider vivid adj +vividest vivid adj +vividness vividness nom +vividnesses vividness nom +vivification vivification nom +vivifications vivification nom +vivified vivify ver +vivifies vivify ver +vivify vivify ver +vivifying vivify ver +vivisect vivisect ver +vivisected vivisect ver +vivisecting vivisect ver +vivisection vivisection nom +vivisectionist vivisectionist nom +vivisectionists vivisectionist nom +vivisections vivisection nom +vivisects vivisect ver +vixen vixen nom +vixens vixen nom +viz viz sw +vizier vizier nom +viziers vizier nom +viziership viziership nom +vizierships viziership nom +vizir vizir nom +vizirs vizir nom +vizor vizor nom +vizored vizor ver +vizoring vizor ver +vizors vizor nom +vocable vocable nom +vocables vocable nom +vocabularies vocabulary nom +vocabulary vocabulary nom +vocal vocal nom +vocalist vocalist nom +vocalists vocalist nom +vocalization vocalization nom +vocalizations vocalization nom +vocalize vocalize ver +vocalized vocalize ver +vocalizes vocalize ver +vocalizing vocalize ver +vocals vocal nom +vocation vocation nom +vocations vocation nom +vocative vocative nom +vocatives vocative nom +vociferate vociferate ver +vociferated vociferate ver +vociferates vociferate ver +vociferating vociferate ver +vociferation vociferation nom +vociferations vociferation nom +vociferousness vociferousness nom +vociferousnesses vociferousness nom +vodka vodka nom +vodkas vodka nom +vodoun vodoun nom +vodouns vodoun nom +vogue vogue nom +vogues vogue nom +voice voice nom +voiced voice ver +voicelessness voicelessness nom +voicelessnesses voicelessness nom +voices voice nom +voicing voice ver +void void nom +voidance voidance nom +voidances voidance nom +voided void ver +voiding void ver +voidings voiding nom +voids void nom +voile voile nom +voiles voile nom +volaries volary nom +volary volary nom +volatile volatile nom +volatiles volatile nom +volatilities volatility nom +volatility volatility nom +volatilize volatilize ver +volatilized volatilize ver +volatilizes volatilize ver +volatilizing volatilize ver +volcanism volcanism nom +volcanisms volcanism nom +volcano volcano nom +volcanoes volcano nom +volcanologies volcanology nom +volcanology volcanology nom +vole vole nom +voles vole nom +volition volition nom +volitions volition nom +volley volley nom +volleyball volleyball nom +volleyballs volleyball nom +volleyed volley ver +volleying volley ver +volleys volley nom +volt volt nom +voltage voltage nom +voltages voltage nom +voltmeter voltmeter nom +voltmeters voltmeter nom +volts volt nom +volubilities volubility nom +volubility volubility nom +volume volume nom +volumes volume nom +voluminosities voluminosity nom +voluminosity voluminosity nom +voluminousness voluminousness nom +voluminousnesses voluminousness nom +voluntaries voluntary nom +voluntarism voluntarism nom +voluntarisms voluntarism nom +voluntary voluntary nom +volunteer volunteer nom +volunteered volunteer ver +volunteering volunteer ver +volunteers volunteer nom +voluptuaries voluptuary nom +voluptuary voluptuary nom +voluptuousness voluptuousness nom +voluptuousnesses voluptuousness nom +volute volute nom +volutes volute nom +volution volution nom +volutions volution nom +volva volva nom +volvas volva nom +vomit vomit nom +vomited vomit ver +vomiting vomit ver +vomitings vomiting nom +vomitive vomitive nom +vomitives vomitive nom +vomitories vomitory nom +vomitory vomitory nom +vomits vomit nom +vomitus vomitus nom +vomituses vomitus nom +voodoo voodoo nom +voodooed voodoo ver +voodooing voodoo ver +voodooism voodooism nom +voodooisms voodooism nom +voodoos voodoo nom +voraciousness voraciousness nom +voraciousnesses voraciousness nom +voracities voracity nom +voracity voracity nom +vortex vortex nom +vortexes vortex nom +vorticella vorticella nom +vorticellas vorticella nom +votaries votary nom +votary votary nom +vote vote nom +voted vote ver +voter voter nom +voters voter nom +votes vote nom +voting vote ver +vouch vouch nom +vouched vouch ver +vouchee vouchee nom +vouchees vouchee nom +voucher voucher nom +vouchered voucher ver +vouchering voucher ver +vouchers voucher nom +vouches vouch nom +vouching vouch ver +vouchsafe vouchsafe ver +vouchsafed vouchsafe ver +vouchsafes vouchsafe ver +vouchsafing vouchsafe ver +vouge vouge nom +vouges vouge nom +voussoir voussoir nom +voussoirs voussoir nom +vow vow nom +vowed vow ver +vowel vowel nom +vowelize vowelize ver +vowelized vowelize ver +vowelizes vowelize ver +vowelizing vowelize ver +vowelled vowel ver +vowelling vowel ver +vowels vowel nom +vowing vow ver +vows vow nom +voyage voyage nom +voyaged voyage ver +voyager voyager nom +voyagers voyager nom +voyages voyage nom +voyageur voyageur nom +voyageurs voyageur nom +voyaging voyage ver +voyeur voyeur nom +voyeurism voyeurism nom +voyeurisms voyeurism nom +voyeurs voyeur nom +vs vs sw +vulcanisation vulcanisation nom +vulcanisations vulcanisation nom +vulcanite vulcanite nom +vulcanites vulcanite nom +vulcanization vulcanization nom +vulcanizations vulcanization nom +vulcanize vulcanize ver +vulcanized vulcanize ver +vulcanizes vulcanize ver +vulcanizing vulcanize ver +vulcanologies vulcanology nom +vulcanology vulcanology nom +vulgar vulgar adj +vulgarer vulgar adj +vulgarest vulgar adj +vulgarian vulgarian nom +vulgarians vulgarian nom +vulgarisation vulgarisation nom +vulgarisations vulgarisation nom +vulgarism vulgarism nom +vulgarisms vulgarism nom +vulgarities vulgarity nom +vulgarity vulgarity nom +vulgarization vulgarization nom +vulgarizations vulgarization nom +vulgarize vulgarize ver +vulgarized vulgarize ver +vulgarizer vulgarizer nom +vulgarizers vulgarizer nom +vulgarizes vulgarize ver +vulgarizing vulgarize ver +vulgars vulgar nom +vulnerabilities vulnerability nom +vulnerability vulnerability nom +vulture vulture nom +vultures vulture nom +vulva vulva nom +vulvae vulva nom +vulvitis vulvitis nom +vulvitises vulvitis nom +vying vie ver +w w sw +wackier wacky adj +wackiest wacky adj +wackiness wackiness nom +wackinesses wackiness nom +wacko wacko nom +wackos wacko nom +wacky wacky adj +wad wad nom +wadded wad ver +wadding wad ver +waddings wadding nom +waddle waddle nom +waddled waddle ver +waddles waddle nom +waddling waddle ver +wade wade nom +waded wade ver +wader wader nom +waders wader nom +wades wade nom +wadi wadi nom +wading wade ver +wadings wading nom +wadis wadi nom +wads wad nom +wafer wafer nom +wafered wafer ver +wafering wafer ver +wafers wafer nom +waffle waffle nom +waffled waffle ver +waffler waffler nom +wafflers waffler nom +waffles waffle nom +waffling waffle ver +waft waft nom +wafted waft ver +wafting waft ver +wafts waft nom +wafture wafture nom +waftures wafture nom +wag wag nom +wage wage nom +waged wage ver +wager wager nom +wagered wager ver +wagerer wagerer nom +wagerers wagerer nom +wagering wager ver +wagers wager nom +wages wage nom +wagged wag ver +waggeries waggery nom +waggery waggery nom +wagging wag ver +waggishness waggishness nom +waggishnesses waggishness nom +waggle waggle nom +waggled waggle ver +waggles waggle nom +waggling waggle ver +waggon waggon nom +waggoned waggon ver +waggoner waggoner nom +waggoners waggoner nom +waggoning waggon ver +waggons waggon nom +waging wage ver +wagon wagon nom +wagoned wagon ver +wagoner wagoner nom +wagoners wagoner nom +wagoning wagon ver +wagons wagon nom +wags wag nom +wagtail wagtail nom +wagtails wagtail nom +wahoo wahoo nom +wahoos wahoo nom +waif waif nom +waifs waif nom +wail wail nom +wailed wail ver +wailer wailer nom +wailers wailer nom +wailing wail ver +wailings wailing nom +wails wail nom +wain wain nom +wains wain nom +wainscot wainscot nom +wainscoted wainscot ver +wainscoting wainscot ver +wainscotings wainscoting nom +wainscots wainscot nom +wainscotting wainscotting nom +wainscottings wainscotting nom +wainwright wainwright nom +wainwrights wainwright nom +waist waist nom +waistband waistband nom +waistbands waistband nom +waistcloth waistcloth nom +waistcloths waistcloth nom +waistcoat waistcoat nom +waistcoats waistcoat nom +waistline waistline nom +waistlines waistline nom +waists waist nom +wait wait nom +waited wait ver +waiter waiter nom +waitered waiter ver +waitering waiter ver +waiters waiter nom +waiting wait ver +waitings waiting nom +waitpeople waitperson nom +waitperson waitperson nom +waitress waitress nom +waitressed waitress ver +waitresses waitress nom +waitressing waitress ver +waits wait nom +waive waive ver +waived waive ver +waiver waiver nom +waivers waiver nom +waives waive ver +waiving waive ver +wake wake nom +waked wake ver +wakefulness wakefulness nom +wakefulnesses wakefulness nom +waken waken ver +wakened waken ver +wakening waken ver +wakenings wakening nom +wakens waken ver +wakes wake nom +waking wake ver +wakings waking nom +wale wale nom +waled wale ver +wales wale nom +waling wale ver +walk walk nom +walkabout walkabout nom +walkabouts walkabout nom +walkaway walkaway nom +walkaways walkaway nom +walked walk ver +walker walker nom +walkers walker nom +walking walk ver +walkings walking nom +walkingstick walkingstick nom +walkingsticks walkingstick nom +walkout walkout nom +walkouts walkout nom +walkover walkover nom +walkovers walkover nom +walks walk nom +walkway walkway nom +walkways walkway nom +wall wall nom +wallabies wallaby nom +wallaby wallaby nom +wallah wallah nom +wallahs wallah nom +wallboard wallboard nom +wallboards wallboard nom +walled wall ver +wallet wallet nom +wallets wallet nom +walleye walleye nom +wallflower wallflower nom +wallflowers wallflower nom +walling wall ver +wallop wallop nom +walloped wallop ver +walloping wallop ver +wallopings walloping nom +wallops wallop nom +wallow wallow nom +wallowed wallow ver +wallowing wallow ver +wallows wallow nom +wallpaper wallpaper nom +wallpapered wallpaper ver +wallpapering wallpaper ver +wallpapers wallpaper nom +walls wall nom +walnut walnut nom +walnuts walnut nom +walrus walrus nom +walruses walrus nom +waltz waltz nom +waltzed waltz ver +waltzer waltzer nom +waltzers waltzer nom +waltzes waltz nom +waltzing waltz ver +wamble wamble ver +wambled wamble ver +wambles wamble ver +wambling wamble ver +wampee wampee nom +wampees wampee nom +wampum wampum nom +wampumpeag wampumpeag nom +wampumpeags wampumpeag nom +wampums wampum nom +wan wan adj +wand wand nom +wander wander nom +wandered wander ver +wanderer wanderer nom +wanderers wanderer nom +wandering wander ver +wanderings wandering nom +wanderlust wanderlust nom +wanderlusts wanderlust nom +wanders wander nom +wands wand nom +wane wane nom +waned wane ver +wanes wane nom +wangle wangle nom +wangled wangle ver +wangler wangler nom +wanglers wangler nom +wangles wangle nom +wangling wangle ver +waning wane ver +wanings waning nom +wank wank nom +wanked wank ver +wanking wank ver +wanks wank nom +wannabe wannabe nom +wannabee wannabee nom +wannabees wannabee nom +wannabes wannabe nom +wanned wan ver +wanner wan adj +wanness wanness nom +wannesses wanness nom +wannest wan adj +wanning wan ver +wans wan ver +want want sw +wanted want ver +wanting want ver +wanton wanton adj +wantoned wanton ver +wantoner wanton adj +wantonest wanton adj +wantoning wanton ver +wantonness wantonness nom +wantonnesses wantonness nom +wantons wanton nom +wants wants sw +wapiti wapiti nom +wapitis wapiti nom +war war nom +waratah waratah nom +waratahs waratah nom +warble warble nom +warbled warble ver +warbler warbler nom +warblers warbler nom +warbles warble nom +warbling warble ver +warbonnet warbonnet nom +warbonnets warbonnet nom +ward ward nom +warded ward ver +warden warden nom +wardens warden nom +wardenship wardenship nom +wardenships wardenship nom +warder warder nom +warders warder nom +wardership wardership nom +warderships wardership nom +warding ward ver +wardress wardress nom +wardresses wardress nom +wardrobe wardrobe nom +wardrobed wardrobe ver +wardrobes wardrobe nom +wardrobing wardrobe ver +wardroom wardroom nom +wardrooms wardroom nom +wards ward nom +ware ware nom +wared ware ver +warehouse warehouse nom +warehoused warehouse ver +warehouseman warehouseman nom +warehousemen warehouseman nom +warehouser warehouser nom +warehousers warehouser nom +warehouses warehouse nom +warehousing warehouse ver +warehousings warehousing nom +wares ware nom +warfare warfare nom +warfares warfare nom +warfarin warfarin nom +warfarins warfarin nom +warhead warhead nom +warheads warhead nom +warhorse warhorse nom +warhorses warhorse nom +warier wary adj +wariest wary adj +wariness wariness nom +warinesses wariness nom +waring ware ver +warlock warlock nom +warlocks warlock nom +warlord warlord nom +warlords warlord nom +warm warm adj +warmed warm ver +warmer warm adj +warmers warmer nom +warmest warm adj +warmheartedness warmheartedness nom +warmheartednesses warmheartedness nom +warming warm ver +warmings warming nom +warmness warmness nom +warmnesses warmness nom +warmonger warmonger nom +warmongering warmongering nom +warmongerings warmongering nom +warmongers warmonger nom +warms warm nom +warmth warmth nom +warmths warmth nom +warmup warmup nom +warmups warmup nom +warn warn ver +warned warn ver +warning warn ver +warnings warning nom +warns warn ver +warp warp nom +warpath warpath nom +warpaths warpath nom +warped warp ver +warping warp ver +warpings warping nom +warplane warplane nom +warplanes warplane nom +warps warp nom +warragal warragal nom +warragals warragal nom +warrant warrant nom +warranted warrant ver +warrantee warrantee nom +warrantees warrantee nom +warrantied warranty ver +warranties warranty nom +warranting warrant ver +warrantor warrantor nom +warrantors warrantor nom +warrants warrant nom +warranty warranty nom +warrantying warranty ver +warred war ver +warren warren nom +warrener warrener nom +warreners warrener nom +warrens warren nom +warrigal warrigal nom +warrigals warrigal nom +warring war ver +warrior warrior nom +warriors warrior nom +wars war nom +warship warship nom +warships warship nom +wart wart nom +warthog warthog nom +warthogs warthog nom +wartier warty adj +wartiest warty adj +wartime wartime nom +wartimes wartime nom +warts wart nom +wartweed wartweed nom +wartweeds wartweed nom +wartwort wartwort nom +wartworts wartwort nom +warty warty adj +wary wary adj +was was sw +wash wash nom +washable washable nom +washables washable nom +washbasin washbasin nom +washbasins washbasin nom +washboard washboard nom +washboards washboard nom +washbowl washbowl nom +washbowls washbowl nom +washcloth washcloth nom +washcloths washcloth nom +washday washday nom +washdays washday nom +washed wash ver +washer washer nom +washerman washerman nom +washermen washerman nom +washers washer nom +washerwoman washerwoman nom +washerwomen washerwoman nom +washes wash nom +washhouse washhouse nom +washhouses washhouse nom +washier washy adj +washiest washy adj +washing wash ver +washings washing nom +washout washout nom +washouts washout nom +washrag washrag nom +washrags washrag nom +washroom washroom nom +washrooms washroom nom +washstand washstand nom +washstands washstand nom +washtub washtub nom +washtubs washtub nom +washup washup nom +washups washup nom +washwoman washwoman nom +washwomen washwoman nom +washy washy adj +wasn_t wasn_t sw +wasp wasp nom +waspishness waspishness nom +waspishnesses waspishness nom +wasps wasp nom +wassail wassail nom +wassailed wassail ver +wassailer wassailer nom +wassailers wassailer nom +wassailing wassail ver +wassails wassail nom +wastage wastage nom +wastages wastage nom +waste waste nom +wastebasket wastebasket nom +wastebaskets wastebasket nom +wasted waste ver +wastefulness wastefulness nom +wastefulnesses wastefulness nom +wasteland wasteland nom +wastepaper wastepaper nom +wastepapers wastepaper nom +waster waster nom +wasters waster nom +wastes waste nom +wastewater wastewater nom +wastewaters wastewater nom +wasting waste ver +wastings wasting nom +wastrel wastrel nom +wastrels wastrel nom +watch watch nom +watchband watchband nom +watchbands watchband nom +watchdog watchdog nom +watchdogged watchdog ver +watchdogging watchdog ver +watchdogs watchdog nom +watched watch ver +watcher watcher nom +watchers watcher nom +watches watch nom +watchfulness watchfulness nom +watchfulnesses watchfulness nom +watching watch ver +watchmaker watchmaker nom +watchmakers watchmaker nom +watchmaking watchmaking nom +watchmakings watchmaking nom +watchman watchman nom +watchmen watchman nom +watchstrap watchstrap nom +watchstraps watchstrap nom +watchtower watchtower nom +watchtowers watchtower nom +watchword watchword nom +watchwords watchword nom +water water nom +waterbed waterbed nom +waterbeds waterbed nom +waterbird waterbird nom +waterbirds waterbird nom +waterbuck waterbuck nom +waterbucks waterbuck nom +watercannon watercannon nom +watercolor watercolor nom +watercolorist watercolorist nom +watercolorists watercolorist nom +watercolors watercolor nom +watercolourist watercolourist nom +watercolourists watercolourist nom +watercourse watercourse nom +watercourses watercourse nom +watercraft watercraft nom +watercress watercress nom +watercresses watercress nom +waterdog waterdog nom +waterdogs waterdog nom +watered water ver +waterfall waterfall nom +waterfalls waterfall nom +waterfinder waterfinder nom +waterfinders waterfinder nom +waterfowl waterfowl nom +waterfront waterfront nom +waterfronts waterfront nom +waterhole waterhole nom +waterholes waterhole nom +waterier watery adj +wateriest watery adj +wateriness wateriness nom +waterinesses wateriness nom +watering water ver +waterings watering nom +waterleaf waterleaf nom +waterleafs waterleaf nom +waterlessness waterlessness nom +waterlessnesses waterlessness nom +waterlilies waterlily nom +waterlily waterlily nom +waterline waterline nom +waterlines waterline nom +waterloo waterloo nom +waterloos waterloo nom +waterman waterman nom +watermark watermark nom +watermarked watermark ver +watermarking watermark ver +watermarks watermark nom +watermelon watermelon nom +watermelons watermelon nom +watermen waterman nom +watermill watermill nom +watermills watermill nom +waterpower waterpower nom +waterpowers waterpower nom +waterproof waterproof nom +waterproofed waterproof ver +waterproofing waterproof ver +waterproofings waterproofing nom +waterproofs waterproof nom +waters water nom +watershed watershed nom +watersheds watershed nom +waterside waterside nom +watersides waterside nom +waterspout waterspout nom +waterspouts waterspout nom +waterway waterway nom +waterways waterway nom +waterweed waterweed nom +waterweeds waterweed nom +waterwheel waterwheel nom +waterwheels waterwheel nom +watery watery adj +watt watt nom +wattage wattage nom +wattages wattage nom +wattle wattle nom +wattled wattle ver +wattles wattle nom +wattling wattle ver +watts watt nom +waul waul ver +wauled waul ver +wauling waul ver +wauls waul ver +wave wave nom +waved wave ver +waveform waveform nom +waveforms waveform nom +waveguide waveguide nom +waveguides waveguide nom +wavelength wavelength nom +wavelengths wavelength nom +wavelet wavelet nom +wavelets wavelet nom +waver waver nom +wavered waver ver +waverer waverer nom +waverers waverer nom +wavering waver ver +waverings wavering nom +wavers waver nom +waves wave nom +wavier wavy adj +wavies wavy nom +waviest wavy adj +waviness waviness nom +wavinesses waviness nom +waving wave ver +wavings waving nom +wavy wavy adj +waw waw nom +wawl wawl ver +wawled wawl ver +wawling wawl ver +wawls wawl ver +waws waw nom +wax wax nom +waxberries waxberry nom +waxberry waxberry nom +waxed wax ver +waxes wax nom +waxier waxy adj +waxiest waxy adj +waxiness waxiness nom +waxinesses waxiness nom +waxing wax ver +waxings waxing nom +waxwing waxwing nom +waxwings waxwing nom +waxwork waxwork nom +waxworks waxwork nom +waxy waxy adj +way way sw +waybill waybill nom +waybills waybill nom +wayfarer wayfarer nom +wayfarers wayfarer nom +wayfaring wayfaring nom +wayfarings wayfaring nom +waylaid waylay ver +waylay waylay ver +waylayer waylayer nom +waylayers waylayer nom +waylaying waylay ver +waylays waylay ver +ways way nom +wayside wayside nom +waysides wayside nom +waywardness waywardness nom +waywardnesses waywardness nom +we we sw +we_d we_d sw +we_ll we_ll sw +we_re we_re sw +we_ve we_ve sw +weak weak adj +weaken weaken ver +weakened weaken ver +weakener weakener nom +weakeners weakener nom +weakening weaken ver +weakens weaken ver +weaker weak adj +weakest weak adj +weakfish weakfish nom +weaklier weakly adj +weakliest weakly adj +weakling weakling nom +weakly weakly adj +weakness weakness nom +weaknesses weakness nom +weal weal nom +weald weald nom +wealds weald nom +weals weal nom +wealth wealth nom +wealthier wealthy adj +wealthiest wealthy adj +wealthiness wealthiness nom +wealthinesses wealthiness nom +wealths wealth nom +wealthy wealthy adj +wean wean ver +weaned wean ver +weaning wean ver +weans wean ver +weapon weapon nom +weaponed weapon ver +weaponing weapon ver +weaponries weaponry nom +weaponry weaponry nom +weapons weapon nom +wear wear nom +wearable wearable nom +wearables wearable nom +wearer wearer nom +wearers wearer nom +wearied weary ver +wearier weary adj +wearies weary ver +weariest weary adj +weariness weariness nom +wearinesses weariness nom +wearing wear ver +wearings wearing nom +wears wear nom +weary weary adj +wearying weary ver +weasel weasel nom +weaseled weasel ver +weaseling weasel ver +weasels weasel nom +weather weather nom +weatherboard weatherboard nom +weatherboarding weatherboarding nom +weatherboardings weatherboarding nom +weatherboards weatherboard nom +weathercock weathercock nom +weathercocks weathercock nom +weathered weather ver +weatherglass weatherglass nom +weatherglasses weatherglass nom +weathering weather ver +weatherings weathering nom +weatherize weatherize ver +weatherized weatherize ver +weatherizes weatherize ver +weatherizing weatherize ver +weatherman weatherman nom +weathermen weatherman nom +weatherperson weatherperson nom +weatherpersons weatherperson nom +weatherproof weatherproof ver +weatherproofed weatherproof ver +weatherproofing weatherproof ver +weatherproofs weatherproof ver +weathers weather nom +weatherstrip weatherstrip ver +weatherstripped weatherstrip ver +weatherstripping weatherstrip ver +weatherstrippings weatherstripping nom +weatherstrips weatherstrip ver +weathervane weathervane nom +weathervanes weathervane nom +weave weave nom +weaved weave ver +weaver weaver nom +weaverbird weaverbird nom +weaverbirds weaverbird nom +weavers weaver nom +weaves weave nom +weaving weave ver +weavings weaving nom +web web nom +webbed web ver +webbier webby adj +webbiest webby adj +webbing web ver +webbings webbing nom +webby webby adj +weber weber nom +webers weber nom +webfeet webfoot nom +webfoot webfoot nom +webs web nom +website website nom +websites website nom +webworm webworm nom +webworms webworm nom +wed wed ver +wedded wed ver +wedding wed ver +weddings wedding nom +wedge wedge nom +wedged wedge ver +wedges wedge nom +wedgie wedgie nom +wedgies wedgie nom +wedging wedge ver +wedlock wedlock nom +wedlocks wedlock nom +weds wed ver +wee wee adj +weed wee ver +weeded weed ver +weeder weeder nom +weeders weeder nom +weedier weedy adj +weediest weedy adj +weeding weed ver +weeds weed nom +weedses weeds nom +weedy weedy adj +weeing wee ver +week week nom +weekday weekday nom +weekdays weekday nom +weekend weekend nom +weekended weekend ver +weekender weekender nom +weekenders weekender nom +weekending weekend ver +weekends weekend nom +weeklies weekly nom +weekly weekly nom +weeknight weeknight nom +weeknights weeknight nom +weeks week nom +ween ween ver +weened ween ver +weenie weenie nom +weenier weeny adj +weenies weenie nom +weeniest weeny adj +weening ween ver +weens ween ver +weensier weensy adj +weensiest weensy adj +weensy weensy adj +weeny weeny adj +weep weep nom +weeper weeper nom +weepers weeper nom +weepier weepy adj +weepiest weepy adj +weepiness weepiness nom +weepinesses weepiness nom +weeping weep ver +weepings weeping nom +weeps weep nom +weepy weepy adj +weer wee adj +wees wee nom +weest wee adj +weevil weevil nom +weevils weevil nom +weewee weewee nom +weewees weewee nom +weft weft nom +wefts weft nom +weigela weigela nom +weigelas weigela nom +weigh weigh nom +weighbridge weighbridge nom +weighbridges weighbridge nom +weighed weigh ver +weighing weigh ver +weighings weighing nom +weighs weigh nom +weight weight nom +weighted weight ver +weightier weighty adj +weightiest weighty adj +weightiness weightiness nom +weightinesses weightiness nom +weighting weight ver +weightings weighting nom +weightlessness weightlessness nom +weightlessnesses weightlessness nom +weightlifter weightlifter nom +weightlifters weightlifter nom +weightlifting weightlifting nom +weightliftings weightlifting nom +weights weight nom +weighty weighty adj +weir weir nom +weird weird adj +weirder weird adj +weirdest weird adj +weirdie weirdie nom +weirdies weirdie nom +weirdness weirdness nom +weirdnesses weirdness nom +weirdo weirdo nom +weirdos weirdo nom +weirds weird nom +weirdy weirdy nom +weirs weir nom +weisenheimer weisenheimer nom +weisenheimers weisenheimer nom +weka weka nom +wekas weka nom +welch welch ver +welched welch ver +welcher welcher nom +welchers welcher nom +welches welch ver +welching welch ver +welcome welcome sw +welcomed welcome ver +welcomes welcome nom +welcoming welcome ver +weld weld nom +welded weld ver +welder welder nom +welders welder nom +welding weld ver +weldings welding nom +weldment weldment nom +weldments weldment nom +welds weld nom +welfare welfare nom +welfares welfare nom +welkin welkin nom +welkins welkin nom +well well sw +welled well ver +wellhead wellhead nom +wellheads wellhead nom +welling well ver +wellington wellington nom +wellingtons wellington nom +wellness wellness nom +wellnesses wellness nom +wells well nom +wellspring wellspring nom +wellsprings wellspring nom +welsh welsh ver +welshed welsh ver +welsher welsher nom +welshers welsher nom +welshes welsh ver +welshing welsh ver +welt welt nom +welted welt ver +welter welter nom +weltered welter ver +weltering welter ver +welters welter nom +welterweight welterweight nom +welterweights welterweight nom +welting welt ver +welts welt nom +welwitschia welwitschia nom +welwitschias welwitschia nom +wen wen nom +wench wench nom +wenched wench ver +wenches wench nom +wenching wench ver +wend wend ver +wended wend ver +wending wend ver +wends wend ver +wens wen nom +went went sw +wept weep ver +were were sw +weren_t weren_t sw +werewolf werewolf nom +werewolves werewolf nom +werwolf werwolf nom +werwolves werwolf nom +west west nom +wester wester nom +westerlies westerly nom +westerly westerly nom +western western nom +westerner westerner nom +westerners westerner nom +westernization westernization nom +westernizations westernization nom +westernize westernize ver +westernized westernize ver +westernizes westernize ver +westernizing westernize ver +westerns western nom +westers wester nom +wests west nom +westward westward nom +westwards westward nom +wet wet ver +wetback wetback nom +wetbacks wetback nom +wether wether nom +wethers wether nom +wetland wetland nom +wetlands wetland nom +wetness wetness nom +wetnesses wetness nom +wets wet nom +wetter wet adj +wetters wetter nom +wettest wet adj +wetting wet ver +wettings wetting nom +whack whack nom +whacked whack ver +whacker whacker nom +whackers whacker nom +whackier whacky adj +whackiest whacky adj +whacking whack ver +whackings whacking nom +whacks whack nom +whacky whacky adj +whale whale nom +whaleboat whaleboat nom +whaleboats whaleboat nom +whalebone whalebone nom +whalebones whalebone nom +whaled whale ver +whaler whaler nom +whalers whaler nom +whales whale nom +whaling whale ver +wham wham nom +whammed wham ver +whammies whammy nom +whamming wham ver +whammy whammy nom +whams wham nom +whang whang nom +whanged whang ver +whanging whang ver +whangs whang nom +whap whap ver +whapped whap ver +whapping whap ver +whaps whap ver +wharf wharf nom +wharfage wharfage nom +wharfages wharfage nom +wharfed wharf ver +wharfing wharf ver +wharfs wharf ver +wharves wharf nom +what what sw +what_s what_s sw +whatchamacallit whatchamacallit nom +whatchamacallits whatchamacallit nom +whatever whatever sw +whatnot whatnot nom +whatnots whatnot nom +whats what nom +whatsis whatsis nom +whatsises whatsis nom +wheal wheal nom +wheals wheal nom +wheat wheat nom +wheatear wheatear nom +wheatears wheatear nom +wheats wheat nom +wheatworm wheatworm nom +wheatworms wheatworm nom +wheedle wheedle ver +wheedled wheedle ver +wheedler wheedler nom +wheedlers wheedler nom +wheedles wheedle ver +wheedling wheedle ver +wheedlings wheedling nom +wheel wheel nom +wheelbarrow wheelbarrow nom +wheelbarrowed wheelbarrow ver +wheelbarrowing wheelbarrow ver +wheelbarrows wheelbarrow nom +wheelbase wheelbase nom +wheelbases wheelbase nom +wheelchair wheelchair nom +wheelchairs wheelchair nom +wheeled wheel ver +wheeler wheeler nom +wheelers wheeler nom +wheelhouse wheelhouse nom +wheelhouses wheelhouse nom +wheelie wheelie nom +wheelies wheelie nom +wheeling wheel ver +wheels wheel nom +wheelwork wheelwork nom +wheelworks wheelwork nom +wheelwright wheelwright nom +wheelwrights wheelwright nom +wheeze wheeze nom +wheezed wheeze ver +wheezes wheeze nom +wheezier wheezy adj +wheeziest wheezy adj +wheeziness wheeziness nom +wheezinesses wheeziness nom +wheezing wheeze ver +wheezy wheezy adj +whelk whelk nom +whelks whelk nom +whelm whelm ver +whelmed whelm ver +whelming whelm ver +whelms whelm ver +whelp whelp nom +whelped whelp ver +whelping whelp ver +whelps whelp nom +when when sw +whence whence sw +whenever whenever sw +whens when nom +where where sw +where_s where_s sw +whereabouts whereabouts nom +whereafter whereafter sw +whereas whereas sw +whereases whereas nom +whereby whereby sw +wherefore wherefore nom +wherefores wherefore nom +wherein wherein sw +wheres where nom +whereupon whereupon sw +wherever wherever sw +wherewith wherewith nom +wherewithal wherewithal nom +wherewithals wherewithal nom +wherewiths wherewith nom +wherried wherry ver +wherries wherry nom +wherry wherry nom +wherrying wherry ver +whet whet nom +whether whether sw +whets whet nom +whetstone whetstone nom +whetstones whetstone nom +whetted whet ver +whetting whet ver +whew whew nom +whews whew nom +whey whey nom +wheys whey nom +which which sw +whicker whicker ver +whickered whicker ver +whickering whicker ver +whickers whicker ver +whidah whidah nom +whidahs whidah nom +whiff whiff nom +whiffed whiff ver +whiffing whiff ver +whiffletree whiffletree nom +whiffletrees whiffletree nom +whiffs whiff nom +while while sw +whiled while ver +whiles while nom +whiling while ver +whim whim nom +whimper whimper nom +whimpered whimper ver +whimpering whimper ver +whimpers whimper nom +whims whim nom +whimsey whimsey nom +whimseys whimsey nom +whimsicalities whimsicality nom +whimsicality whimsicality nom +whimsies whimsy nom +whimsy whimsy nom +whin whin nom +whinberries whinberry nom +whinberry whinberry nom +whinchat whinchat nom +whinchats whinchat nom +whine whine nom +whined whine ver +whiner whiner nom +whiners whiner nom +whines whine nom +whiney whiney adj +whinier whiney adj +whiniest whiney adj +whining whine ver +whinnied whinny ver +whinnies whinny nom +whinny whinny nom +whinnying whinny ver +whins whin nom +whiny whiny adj +whip whip nom +whipcord whipcord nom +whipcords whipcord nom +whiplash whiplash nom +whiplashed whiplash ver +whiplashes whiplash nom +whiplashing whiplash ver +whipped whip ver +whipper whipper nom +whippers whipper nom +whippersnapper whippersnapper nom +whippersnappers whippersnapper nom +whippet whippet nom +whippets whippet nom +whippier whippy adj +whippiest whippy adj +whipping whip ver +whippings whipping nom +whippletree whippletree nom +whippletrees whippletree nom +whippoorwill whippoorwill nom +whippoorwills whippoorwill nom +whippy whippy adj +whips whip nom +whipsaw whipsaw nom +whipsawed whipsaw ver +whipsawing whipsaw ver +whipsaws whipsaw nom +whipsnake whipsnake nom +whipsnakes whipsnake nom +whipstitch whipstitch nom +whipstitches whipstitch nom +whiptail whiptail nom +whiptails whiptail nom +whir whir nom +whirl whirl nom +whirled whirl ver +whirligig whirligig nom +whirligigs whirligig nom +whirling whirl ver +whirlpool whirlpool nom +whirlpools whirlpool nom +whirls whirl nom +whirlwind whirlwind nom +whirlwinds whirlwind nom +whirlybird whirlybird nom +whirlybirds whirlybird nom +whirr whirr nom +whirred whir ver +whirring whir ver +whirrings whirring nom +whirrs whirr nom +whirs whir nom +whish whish ver +whished whish ver +whishes whish ver +whishing whish ver +whisk whisk nom +whiskbroom whiskbroom nom +whiskbrooms whiskbroom nom +whisked whisk ver +whisker whisker nom +whiskers whisker nom +whiskey whiskey nom +whiskeys whiskey nom +whiskies whisky nom +whisking whisk ver +whisks whisk nom +whisky whisky nom +whisper whisper nom +whispered whisper ver +whisperer whisperer nom +whisperers whisperer nom +whispering whisper ver +whisperings whispering nom +whispers whisper nom +whist whist nom +whisted whist ver +whisting whist ver +whistle whistle nom +whistled whistle ver +whistler whistler nom +whistlers whistler nom +whistles whistle nom +whistling whistle ver +whists whist nom +whit whit nom +white white adj +whitebait whitebait nom +whitebaits whitebait nom +whitecap whitecap nom +whitecaps whitecap nom +whited white ver +whiteface whiteface nom +whitefaces whiteface nom +whitefish whitefish nom +whiteflies whitefly nom +whitefly whitefly nom +whitehead whitehead nom +whiteheads whitehead nom +whiten whiten ver +whitened whiten ver +whitener whitener nom +whiteners whitener nom +whiteness whiteness nom +whitenesses whiteness nom +whitening whiten ver +whitenings whitening nom +whitens whiten ver +whiteout whiteout nom +whiteouts whiteout nom +whiter white adj +whites white nom +whitest white adj +whitetail whitetail nom +whitetails whitetail nom +whitethorn whitethorn nom +whitethorns whitethorn nom +whitethroat whitethroat nom +whitethroats whitethroat nom +whitewall whitewall nom +whitewalls whitewall nom +whitewash whitewash nom +whitewashed whitewash ver +whitewashes whitewash nom +whitewashing whitewash ver +whitewater whitewater nom +whitewaters whitewater nom +whitewood whitewood nom +whitewoods whitewood nom +whitey whitey nom +whiteys whitey nom +whither whither sw +whiting white ver +whitings whiting nom +whitlow whitlow nom +whitlows whitlow nom +whits whit nom +whittle whittle nom +whittled whittle ver +whittler whittler nom +whittlers whittler nom +whittles whittle nom +whittling whittle ver +whiz whiz nom +whizbang whizbang nom +whizbangs whizbang nom +whizkid whizkid nom +whizkids whizkid nom +whizz whizz nom +whizzbang whizzbang nom +whizzbangs whizzbang nom +whizzed whiz ver +whizzes whiz nom +whizzing whiz ver +who who sw +who_s who_s sw +whodunit whodunit nom +whodunits whodunit nom +whodunnit whodunnit nom +whodunnits whodunnit nom +whoever whoever sw +whole whole sw +wholeheartedness wholeheartedness nom +wholeheartednesses wholeheartedness nom +wholeness wholeness nom +wholenesses wholeness nom +wholes whole nom +wholesale wholesale nom +wholesaled wholesale ver +wholesaler wholesaler nom +wholesalers wholesaler nom +wholesales wholesale nom +wholesaling wholesale ver +wholesome wholesome adj +wholesomeness wholesomeness nom +wholesomenesses wholesomeness nom +wholesomer wholesome adj +wholesomest wholesome adj +whom whom sw +whomp whomp ver +whomped whomp ver +whomping whomp ver +whomps whomp ver +whoop whoop nom +whooped whoop ver +whoopee whoopee nom +whoopees whoopee nom +whooper whooper nom +whoopers whooper nom +whooping whoop ver +whoops whoop nom +whoosh whoosh nom +whooshed whoosh ver +whooshes whoosh nom +whooshing whoosh ver +whop whop ver +whopped whop ver +whopper whopper nom +whoppers whopper nom +whopping whop ver +whops whop ver +whore whore nom +whored whore ver +whoredom whoredom nom +whoredoms whoredom nom +whorehouse whorehouse nom +whorehouses whorehouse nom +whoremaster whoremaster nom +whoremasters whoremaster nom +whoremonger whoremonger nom +whoremongers whoremonger nom +whores whore nom +whoring whore ver +whorl whorl nom +whorls whorl nom +whortleberries whortleberry nom +whortleberry whortleberry nom +whose whose sw +why why sw +whydah whydah nom +whydahs whydah nom +whys why nom +wick wick nom +wicked wick ver +wickeder wicked adj +wickedest wicked adj +wickedness wickedness nom +wickednesses wickedness nom +wicker wicker nom +wickers wicker nom +wickerwork wickerwork nom +wickerworks wickerwork nom +wicket wicket nom +wickets wicket nom +wicking wick ver +wickiup wickiup nom +wickiups wickiup nom +wicks wick nom +wicopies wicopy nom +wicopy wicopy nom +wide wide adj +widen widen ver +widened widen ver +widener widener nom +wideners widener nom +wideness wideness nom +widenesses wideness nom +widening widen ver +widens widen ver +wider wide adj +wides wide nom +widest wide adj +widgeon widgeon nom +widgeons widgeon nom +widget widget nom +widgets widget nom +widow widow nom +widowed widow ver +widower widower nom +widowers widower nom +widowhood widowhood nom +widowhoods widowhood nom +widowing widow ver +widows widow nom +width width nom +widths width nom +wield wield ver +wielded wield ver +wielder wielder nom +wielders wielder nom +wieldier wieldy adj +wieldiest wieldy adj +wielding wield ver +wields wield ver +wieldy wieldy adj +wiener wiener nom +wieners wiener nom +wienerwurst wienerwurst nom +wienerwursts wienerwurst nom +wienie wienie nom +wienies wienie nom +wife wife nom +wifed wife ver +wifelier wifely adj +wifeliest wifely adj +wifely wifely adj +wifes wife ver +wifing wife ver +wig wig nom +wigeon wigeon nom +wigeons wigeon nom +wigged wig ver +wigging wig ver +wiggings wigging nom +wiggle wiggle nom +wiggled wiggle ver +wiggler wiggler nom +wigglers wiggler nom +wiggles wiggle nom +wigglier wiggly adj +wiggliest wiggly adj +wiggling wiggle ver +wiggly wiggly adj +wight wight nom +wights wight nom +wiglet wiglet nom +wiglets wiglet nom +wigmaker wigmaker nom +wigmakers wigmaker nom +wigs wig nom +wigwag wigwag nom +wigwagged wigwag ver +wigwagging wigwag ver +wigwags wigwag nom +wigwam wigwam nom +wigwams wigwam nom +wild wild adj +wildcat wildcat nom +wildcats wildcat nom +wildcatted wildcat ver +wildcatter wildcatter nom +wildcatters wildcatter nom +wildcatting wildcat ver +wildebeest wildebeest nom +wildebeests wildebeest nom +wilder wild adj +wilderness wilderness nom +wildernesses wilderness nom +wildest wild adj +wildfire wildfire nom +wildfires wildfire nom +wildflower wildflower nom +wildflowers wildflower nom +wildfowl wildfowl nom +wildlife wildlife nom +wildlifes wildlife nom +wildness wildness nom +wildnesses wildness nom +wilds wild nom +wile wile nom +wiled wile ver +wiles wile nom +wilfulness wilfulness nom +wilfulnesses wilfulness nom +wilier wily adj +wiliest wily adj +wiliness wiliness nom +wilinesses wiliness nom +wiling wile ver +will will sw +willed willed ver +willet willet nom +willets willet nom +willfulness willfulness nom +willfulnesses willfulness nom +willing willing sw +willinger willing adj +willingest willing adj +willingness willingness nom +willingnesses willingness nom +williwaw williwaw nom +williwaws williwaw nom +willow willow nom +willowed willow ver +willowier willowy adj +willowiest willowy adj +willowing willow ver +willows willow nom +willowware willowware nom +willowwares willowware nom +willowy willowy adj +willpower willpower nom +willpowers willpower nom +wills will nom +wilt wilt nom +wilted wilt ver +wilting wilt ver +wilts wilt nom +wily wily adj +wimble wimble nom +wimbles wimble nom +wimp wimp nom +wimpier wimpy adj +wimpiest wimpy adj +wimple wimple nom +wimpled wimple ver +wimples wimple nom +wimpling wimple ver +wimps wimp nom +wimpy wimpy adj +win win nom +wince wince nom +winced wince ver +winces wince nom +wincey wincey nom +winceys wincey nom +winch winch nom +winched winch ver +winches winch nom +winching winch ver +wincing wince ver +wind wind nom +windage windage nom +windages windage nom +windbag windbag nom +windbags windbag nom +windbreak windbreak nom +windbreaker windbreaker nom +windbreakers windbreaker nom +windbreaks windbreak nom +windburn windburn nom +windburns windburn nom +windcheater windcheater nom +windcheaters windcheater nom +winded wind ver +winder winder nom +winders winder nom +windfall windfall nom +windfalls windfall nom +windflower windflower nom +windflowers windflower nom +windier windy adj +windiest windy adj +windiness windiness nom +windinesses windiness nom +winding wind ver +windings winding nom +windjammer windjammer nom +windjammers windjammer nom +windlass windlass nom +windlassed windlass ver +windlasses windlass nom +windlassing windlass ver +windlessness windlessness nom +windlessnesses windlessness nom +windmill windmill nom +windmilled windmill ver +windmilling windmill ver +windmills windmill nom +window window nom +windowed window ver +windowing window ver +windowpane windowpane nom +windowpanes windowpane nom +windows window nom +windowsill windowsill nom +windowsills windowsill nom +windpipe windpipe nom +windpipes windpipe nom +windrow windrow nom +windrowed windrow ver +windrowing windrow ver +windrows windrow nom +winds wind nom +windscreen windscreen nom +windscreens windscreen nom +windshield windshield nom +windshields windshield nom +windsock windsock nom +windsocks windsock nom +windstorm windstorm nom +windstorms windstorm nom +windsurf windsurf ver +windsurfed windsurf ver +windsurfer windsurfer nom +windsurfers windsurfer nom +windsurfing windsurf ver +windsurfings windsurfing nom +windsurfs windsurf ver +windup windup nom +windups windup nom +windward windward nom +windwards windward nom +windy windy adj +wine wine nom +wined wine ver +wineglass wineglass nom +wineglasses wineglass nom +winegrower winegrower nom +winegrowers winegrower nom +winemaker winemaker nom +winemakers winemaker nom +winemaking winemaking nom +winemakings winemaking nom +winepress winepress nom +winepresses winepress nom +wineries winery nom +winery winery nom +wines wine nom +wineskin wineskin nom +wineskins wineskin nom +winey winey adj +wing wing nom +wingback wingback nom +wingbacks wingback nom +wingding wingding nom +wingdings wingding nom +winged wing ver +winger winger nom +wingers winger nom +winging wing ver +wingman wingman nom +wingmen wingman nom +wings wing nom +wingspan wingspan nom +wingspans wingspan nom +wingspread wingspread nom +wingspreads wingspread nom +wingtip wingtip nom +wingtips wingtip nom +winier winey adj +winiest winey adj +wining wine ver +wink wink nom +winked wink ver +winker winker nom +winkers winker nom +winking wink ver +winkle winkle nom +winkled winkle ver +winkles winkle nom +winkling winkle ver +winks wink nom +winner winner nom +winners winner nom +winning win ver +winnings winning nom +winnow winnow nom +winnowed winnow ver +winnower winnower nom +winnowers winnower nom +winnowing winnow ver +winnowings winnowing nom +winnows winnow nom +wino wino nom +winos wino nom +wins win nom +winsome winsome adj +winsomeness winsomeness nom +winsomenesses winsomeness nom +winsomer winsome adj +winsomest winsome adj +winter winter nom +winterberries winterberry nom +winterberry winterberry nom +wintered winter ver +wintergreen wintergreen nom +wintergreens wintergreen nom +winterier wintery adj +winteriest wintery adj +wintering winter ver +winterize winterize ver +winterized winterize ver +winterizes winterize ver +winterizing winterize ver +winters winter nom +wintertime wintertime nom +wintertimes wintertime nom +wintery wintery adj +wintrier wintry adj +wintriest wintry adj +wintry wintry adj +winy winy adj +wipe wipe nom +wiped wipe ver +wiper wiper nom +wipers wiper nom +wipes wipe nom +wiping wipe ver +wire wire nom +wired wire ver +wirehair wirehair nom +wirehairs wirehair nom +wireless wireless nom +wirelessed wireless ver +wirelesses wireless nom +wirelessing wireless ver +wires wire nom +wiretap wiretap nom +wiretapped wiretap ver +wiretapper wiretapper nom +wiretappers wiretapper nom +wiretapping wiretap ver +wiretappings wiretapping nom +wiretaps wiretap nom +wirework wirework nom +wireworks wirework nom +wireworm wireworm nom +wireworms wireworm nom +wirier wiry adj +wiriest wiry adj +wiriness wiriness nom +wirinesses wiriness nom +wiring wire ver +wirings wiring nom +wiry wiry adj +wisdom wisdom nom +wisdoms wisdom nom +wise wise adj +wiseacre wiseacre nom +wiseacres wiseacre nom +wisecrack wisecrack nom +wisecracked wisecrack ver +wisecracking wisecrack ver +wisecracks wisecrack nom +wised wise ver +wiselier wisely adj +wiseliest wisely adj +wisely wisely adj +wiseness wiseness nom +wisenesses wiseness nom +wisenheimer wisenheimer nom +wisenheimers wisenheimer nom +wisent wisent nom +wisents wisent nom +wiser wise adj +wises wise nom +wisest wise adj +wish wish sw +wishbone wishbone nom +wishbones wishbone nom +wished wish ver +wisher wisher nom +wishers wisher nom +wishes wish nom +wishfulness wishfulness nom +wishfulnesses wishfulness nom +wishing wish ver +wishings wishing nom +wising wise ver +wisp wisp nom +wisped wisp ver +wispier wispy adj +wispiest wispy adj +wisping wisp ver +wisps wisp nom +wispy wispy adj +wist wit ver +wistaria wistaria nom +wistarias wistaria nom +wisteria wisteria nom +wisterias wisteria nom +wistfulness wistfulness nom +wistfulnesses wistfulness nom +wit wit ver +witch witch nom +witchcraft witchcraft nom +witchcrafts witchcraft nom +witched witch ver +witcheries witchery nom +witchery witchery nom +witches witch nom +witchgrass witchgrass nom +witchgrasses witchgrass nom +witching witch ver +with with sw +withdraw withdraw ver +withdrawal withdrawal nom +withdrawals withdrawal nom +withdrawing withdraw ver +withdrawn withdraw ver +withdrawnness withdrawnness nom +withdrawnnesses withdrawnness nom +withdraws withdraw ver +withdrew withdraw ver +withe withe nom +withed withe ver +wither wither ver +withered wither ver +withering wither ver +witherings withering nom +withers wither ver +withes withe nom +withheld withhold ver +withhold withhold ver +withholding withhold ver +withholdings withholding nom +withholds withhold ver +withies withy nom +within within sw +withing withe ver +withins within nom +without without sw +withouts without nom +withstand withstand ver +withstanding withstand ver +withstands withstand ver +withstood withstand ver +withy withy nom +witlessness witlessness nom +witlessnesses witlessness nom +witloof witloof nom +witloofs witloof nom +witness witness nom +witnessed witness ver +witnesses witness nom +witnessing witness ver +wits wit nom +witticism witticism nom +witticisms witticism nom +wittier witty adj +wittiest witty adj +wittiness wittiness nom +wittinesses wittiness nom +witting wit ver +wittings witting nom +witty witty adj +wive wive ver +wived wive ver +wivern wivern nom +wiverns wivern nom +wives wife nom +wiving wive ver +wiz wiz nom +wizard wizard nom +wizardries wizardry nom +wizardry wizardry nom +wizards wizard nom +wizzes wiz nom +woad woad nom +woads woad nom +woadwaxen woadwaxen nom +woadwaxens woadwaxen nom +wobble wobble nom +wobbled wobble ver +wobbler wobbler nom +wobblers wobbler nom +wobbles wobble nom +wobblier wobbly adj +wobbliest wobbly adj +wobbliness wobbliness nom +wobblinesses wobbliness nom +wobbling wobble ver +wobbly wobbly adj +woe woe nom +woeful woeful adj +woefuller woeful adj +woefullest woeful adj +woefulness woefulness nom +woefulnesses woefulness nom +woes woe nom +wok wok nom +woke wake ver +woks wok nom +wold wold nom +wolds wold nom +wolf wolf nom +wolfed wolf ver +wolffish wolffish nom +wolfhound wolfhound nom +wolfhounds wolfhound nom +wolfing wolf ver +wolfram wolfram nom +wolframite wolframite nom +wolframites wolframite nom +wolframs wolfram nom +wolfs wolf ver +wolfsbane wolfsbane nom +wolfsbanes wolfsbane nom +wolverine wolverine nom +wolverines wolverine nom +wolves wolf nom +woman woman nom +womaned woman ver +womanhood womanhood nom +womanhoods womanhood nom +womaning woman ver +womaniser womaniser nom +womanisers womaniser nom +womanishness womanishness nom +womanishnesses womanishness nom +womanize womanize ver +womanized womanize ver +womanizer womanizer nom +womanizers womanizer nom +womanizes womanize ver +womanizing womanize ver +womanlier womanly adj +womanliest womanly adj +womanliness womanliness nom +womanlinesses womanliness nom +womanly womanly adj +womans woman ver +womb womb nom +wombat wombat nom +wombats wombat nom +wombs womb nom +women woman nom +womenfolk womenfolk nom +womenfolks womenfolk nom +won win ver +won_t won_t sw +wonder wonder sw +wondered wonder ver +wonderfulness wonderfulness nom +wonderfulnesses wonderfulness nom +wondering wonder ver +wonderland wonderland nom +wonderlands wonderland nom +wonderment wonderment nom +wonderments wonderment nom +wonders wonder nom +wonk wonk nom +wonkier wonky adj +wonkiest wonky adj +wonks wonk nom +wonky wonky adj +wonned won ver +wonning won ver +wons won ver +wont wont nom +wonted wont ver +wonting wont ver +wonton wonton nom +wontons wonton nom +wonts wont nom +woo woo ver +wood wood nom +woodbine woodbine nom +woodbines woodbine nom +woodblock woodblock nom +woodblocks woodblock nom +woodborer woodborer nom +woodborers woodborer nom +woodcarver woodcarver nom +woodcarvers woodcarver nom +woodcarving woodcarving nom +woodcarvings woodcarving nom +woodchuck woodchuck nom +woodchucks woodchuck nom +woodcock woodcock nom +woodcocks woodcock nom +woodcraft woodcraft nom +woodcrafts woodcraft nom +woodcreeper woodcreeper nom +woodcreepers woodcreeper nom +woodcut woodcut nom +woodcuts woodcut nom +woodcutter woodcutter nom +woodcutters woodcutter nom +woodcutting woodcutting nom +woodcuttings woodcutting nom +wooded wood ver +wooden wooden adj +woodener wooden adj +woodenest wooden adj +woodenness woodenness nom +woodennesses woodenness nom +woodgrain woodgrain nom +woodgrains woodgrain nom +woodier woody adj +woodies woody nom +woodiest woody adj +woodiness woodiness nom +woodinesses woodiness nom +wooding wood ver +woodland woodland nom +woodlands woodland nom +woodlot woodlot nom +woodlots woodlot nom +woodman woodman nom +woodmen woodman nom +woodpecker woodpecker nom +woodpeckers woodpecker nom +woodpile woodpile nom +woodpiles woodpile nom +woodruff woodruff nom +woodruffs woodruff nom +woods wood nom +woodshed woodshed nom +woodshedded woodshed ver +woodshedding woodshed ver +woodsheds woodshed nom +woodsia woodsia nom +woodsias woodsia nom +woodsier woodsy adj +woodsiest woodsy adj +woodsiness woodsiness nom +woodsinesses woodsiness nom +woodsman woodsman nom +woodsmen woodsman nom +woodsy woodsy adj +woodwaxen woodwaxen nom +woodwaxens woodwaxen nom +woodwind woodwind nom +woodwinds woodwind nom +woodwork woodwork nom +woodworker woodworker nom +woodworkers woodworker nom +woodworking woodworking nom +woodworkings woodworking nom +woodworks woodwork nom +woodworm woodworm nom +woodworms woodworm nom +woody woody adj +wooed woo ver +wooer wooer nom +wooers wooer nom +woof woof nom +woofed woof ver +woofer woofer nom +woofers woofer nom +woofing woof ver +woofs woof nom +wooing woo ver +wooings wooing nom +wool wool nom +woolen woolen nom +woolens woolen nom +woolgather woolgather ver +woolgathered woolgather ver +woolgatherer woolgatherer nom +woolgatherers woolgatherer nom +woolgathering woolgather ver +woolgatherings woolgathering nom +woolgathers woolgather ver +woolie woolie nom +woolier wooly adj +woolies woolie nom +wooliest wooly adj +woollen woollen nom +woollens woollen nom +woollier woolly adj +woollies woolly nom +woolliest woolly adj +woolliness woolliness nom +woollinesses woolliness nom +woolly woolly adj +wools wool nom +wooly wooly adj +woos woo ver +woozier woozy adj +wooziest woozy adj +wooziness wooziness nom +woozinesses wooziness nom +woozy woozy adj +wop wop nom +wops wop nom +word word nom +wordage wordage nom +wordages wordage nom +wordbook wordbook nom +wordbooks wordbook nom +worded word ver +wordier wordy adj +wordiest wordy adj +wordiness wordiness nom +wordinesses wordiness nom +wording word ver +wordings wording nom +wordplay wordplay nom +wordplays wordplay nom +words word nom +wordsmith wordsmith nom +wordsmiths wordsmith nom +wordy wordy adj +wore wear ver +work work nom +workaholic workaholic nom +workaholics workaholic nom +workbag workbag nom +workbags workbag nom +workbasket workbasket nom +workbaskets workbasket nom +workbench workbench nom +workbenches workbench nom +workbook workbook nom +workbooks workbook nom +workbox workbox nom +workboxes workbox nom +workday workday nom +workdays workday nom +worked work ver +worker worker nom +workers worker nom +workfare workfare nom +workfares workfare nom +workforce workforce nom +workforces workforce nom +workhorse workhorse nom +workhorses workhorse nom +workhouse workhouse nom +workhouses workhouse nom +working work ver +workingman workingman nom +workingmen workingman nom +workings working nom +workingwoman workingwoman nom +workingwomen workingwoman nom +workload workload nom +workloads workload nom +workman workman nom +workmanship workmanship nom +workmanships workmanship nom +workmate workmate nom +workmates workmate nom +workmen workman nom +workout workout nom +workouts workout nom +workpiece workpiece nom +workpieces workpiece nom +workplace workplace nom +workplaces workplace nom +workroom workroom nom +workrooms workroom nom +works work nom +worksheet worksheet nom +worksheets worksheet nom +workshop workshop nom +workshops workshop nom +workspace workspace nom +workspaces workspace nom +workstation workstation nom +workstations workstation nom +worktable worktable nom +worktables worktable nom +workup workup nom +workups workup nom +workweek workweek nom +workweeks workweek nom +world world nom +worldlier worldly adj +worldliest worldly adj +worldliness worldliness nom +worldlinesses worldliness nom +worldly worldly adj +worlds world nom +worm worm nom +wormcast wormcast nom +wormcasts wormcast nom +wormed worm ver +wormfish wormfish nom +wormhole wormhole nom +wormholes wormhole nom +wormier wormy adj +wormiest wormy adj +worming worm ver +worms worm nom +wormseed wormseed nom +wormseeds wormseed nom +wormwood wormwood nom +wormwoods wormwood nom +wormy wormy adj +worn wear ver +worried worry ver +worrier worrier nom +worriers worrier nom +worries worry nom +worriment worriment nom +worriments worriment nom +worry worry nom +worrying worry ver +worryings worrying nom +worrywart worrywart nom +worrywarts worrywart nom +worse bad adj +worsen worsen ver +worsened worsen ver +worsening worsen ver +worsens worsen ver +worses worse nom +worship worship nom +worshiped worship ver +worshiper worshiper nom +worshipers worshiper nom +worshiping worship ver +worshipper worshipper nom +worshippers worshipper nom +worships worship nom +worst bad adj +worsted worst ver +worsteds worsted nom +worsting worst ver +worsts worst nom +wort wort nom +worth worth nom +worthed worth ver +worthier worthy adj +worthies worthy nom +worthiest worthy adj +worthiness worthiness nom +worthinesses worthiness nom +worthing worth ver +worthlessness worthlessness nom +worthlessnesses worthlessness nom +worths worth nom +worthwhileness worthwhileness nom +worthwhilenesses worthwhileness nom +worthy worthy adj +worts wort nom +wost wit ver +wot wit ver +would would sw +wouldn_t wouldn_t sw +wound wind ver +wounded wound ver +wounding wound ver +woundings wounding nom +wounds wound nom +wove weave ver +woven weave ver +wow wow nom +wowed wow ver +wowing wow ver +wows wow nom +wrack wrack nom +wracked wrack ver +wracking wrack ver +wracks wrack nom +wraith wraith nom +wraiths wraith nom +wrangle wrangle nom +wrangled wrangle ver +wrangler wrangler nom +wranglers wrangler nom +wrangles wrangle nom +wrangling wrangle ver +wrap wrap nom +wraparound wraparound nom +wraparounds wraparound nom +wrapped wrap ver +wrapper wrapper nom +wrappers wrapper nom +wrapping wrap ver +wrappings wrapping nom +wraps wrap nom +wrasse wrasse nom +wrasses wrasse nom +wrath wrath nom +wraths wrath nom +wreak wreak ver +wreaked wreak ver +wreaking wreak ver +wreaks wreak ver +wreath wreath nom +wreathe wreathe ver +wreathed wreath ver +wreathes wreathe ver +wreathing wreath ver +wreaths wreath nom +wreck wreck nom +wreckage wreckage nom +wreckages wreckage nom +wrecked wreck ver +wrecker wrecker nom +wreckers wrecker nom +wreckfish wreckfish nom +wrecking wreck ver +wreckings wrecking nom +wrecks wreck nom +wren wren nom +wrench wrench nom +wrenched wrench ver +wrenches wrench nom +wrenching wrench ver +wrens wren nom +wrest wrest nom +wrested wrest ver +wresting wrest ver +wrestle wrestle nom +wrestled wrestle ver +wrestler wrestler nom +wrestlers wrestler nom +wrestles wrestle nom +wrestling wrestle ver +wrests wrest nom +wretch wretch nom +wretched wretched adj +wretcheder wretched adj +wretchedest wretched adj +wretchedness wretchedness nom +wretchednesses wretchedness nom +wretches wretch nom +wrick wrick nom +wricked wrick ver +wricking wrick ver +wricks wrick nom +wriggle wriggle nom +wriggled wriggle ver +wriggler wriggler nom +wrigglers wriggler nom +wriggles wriggle nom +wrigglier wriggly adj +wriggliest wriggly adj +wriggling wriggle ver +wriggly wriggly adj +wright wright nom +wrights wright nom +wring wring nom +wringer wringer nom +wringers wringer nom +wringing wring ver +wrings wring nom +wrinkle wrinkle nom +wrinkled wrinkle ver +wrinkles wrinkle nom +wrinklier wrinkly adj +wrinkliest wrinkly adj +wrinkling wrinkle ver +wrinkly wrinkly adj +wrist wrist nom +wristband wristband nom +wristbands wristband nom +wristlet wristlet nom +wristlets wristlet nom +wrists wrist nom +wristwatch wristwatch nom +wristwatches wristwatch nom +writ writ nom +write write ver +writer writer nom +writers writer nom +writes write ver +writhe writhe nom +writhed writhe ver +writhes writhe nom +writhing writhe ver +writing write ver +writings writing nom +writs writ nom +written write ver +wrong wrong adj +wrongdoer wrongdoer nom +wrongdoers wrongdoer nom +wrongdoing wrongdoing nom +wrongdoings wrongdoing nom +wronged wrong ver +wronger wrong adj +wrongest wrong adj +wrongfulness wrongfulness nom +wrongfulnesses wrongfulness nom +wrongheadedness wrongheadedness nom +wrongheadednesses wrongheadedness nom +wronging wrong ver +wrongness wrongness nom +wrongnesses wrongness nom +wrongs wrong nom +wrote write ver +wrung wring ver +wry wry adj +wryer wry adj +wryest wry adj +wryneck wryneck nom +wrynecks wryneck nom +wryness wryness nom +wrynesses wryness nom +wurst wurst nom +wursts wurst nom +wuss wuss nom +wusses wuss nom +wussier wussy adj +wussies wussy nom +wussiest wussy adj +wussy wussy adj +wyvern wyvern nom +wyverns wyvern nom +x x sw +xanthoma xanthoma nom +xanthomas xanthoma nom +xanthophyll xanthophyll nom +xanthophylls xanthophyll nom +xenogeneses xenogenesis nom +xenogenesis xenogenesis nom +xenograft xenograft nom +xenografts xenograft nom +xenon xenon nom +xenons xenon nom +xenophobe xenophobe nom +xenophobes xenophobe nom +xenophobia xenophobia nom +xenophobias xenophobia nom +xeranthemum xeranthemum nom +xeranthemums xeranthemum nom +xerographies xerography nom +xerography xerography nom +xerophyte xerophyte nom +xerophytes xerophyte nom +xerox xerox nom +xeroxed xerox ver +xeroxes xerox nom +xeroxing xerox ver +xi xi nom +xis xi nom +xylem xylem nom +xylems xylem nom +xylene xylene nom +xylenes xylene nom +xylol xylol nom +xylols xylol nom +xylophone xylophone nom +xylophones xylophone nom +xylophonist xylophonist nom +xylophonists xylophonist nom +xylose xylose nom +xyloses xylose nom +y y sw +yacca yacca nom +yaccas yacca nom +yacht yacht nom +yachted yacht ver +yachting yacht ver +yachtings yachting nom +yachts yacht nom +yachtsman yachtsman nom +yachtsmen yachtsman nom +yachtswoman yachtswoman nom +yachtswomen yachtswoman nom +yack yack nom +yacked yack ver +yacking yack ver +yacks yack nom +yagi yagi nom +yagis yagi nom +yahoo yahoo nom +yahoos yahoo nom +yak yak nom +yakked yak ver +yakking yak ver +yaks yak nom +yam yam nom +yammer yammer nom +yammered yammer ver +yammerer yammerer nom +yammerers yammerer nom +yammering yammer ver +yammers yammer nom +yams yam nom +yang yang nom +yangs yang nom +yank yank nom +yanked yank ver +yanking yank ver +yanks yank nom +yap yap nom +yapped yap ver +yapping yap ver +yaps yap nom +yard yard nom +yardage yardage nom +yardages yardage nom +yardarm yardarm nom +yardarms yardarm nom +yarded yard ver +yarding yard ver +yardman yardman nom +yardmaster yardmaster nom +yardmasters yardmaster nom +yardmen yardman nom +yards yard nom +yardstick yardstick nom +yardsticks yardstick nom +yarmelke yarmelke nom +yarmelkes yarmelke nom +yarmulka yarmulka nom +yarmulkas yarmulka nom +yarmulke yarmulke nom +yarmulkes yarmulke nom +yarn yarn nom +yarned yarn ver +yarning yarn ver +yarns yarn nom +yarrow yarrow nom +yarrows yarrow nom +yashmac yashmac nom +yashmacs yashmac nom +yashmak yashmak nom +yashmaks yashmak nom +yataghan yataghan nom +yataghans yataghan nom +yautia yautia nom +yautias yautia nom +yaw yaw nom +yawed yaw ver +yawing yaw ver +yawl yawl nom +yawled yawl ver +yawling yawl ver +yawls yawl nom +yawn yawn nom +yawned yawn ver +yawner yawner nom +yawners yawner nom +yawning yawn ver +yawns yawn nom +yawp yawp ver +yawped yawp ver +yawping yawp ver +yawps yawp ver +yaws yaw nom +ye ye nom +yea yea nom +yeah yeah nom +yeahs yeah nom +yean yean ver +yeaned yean ver +yeaning yean ver +yeans yean ver +year year nom +yearbook yearbook nom +yearbooks yearbook nom +yearlies yearly nom +yearling yearling nom +yearly yearly nom +yearn yearn ver +yearned yearn ver +yearning yearn ver +yearnings yearning nom +yearns yearn ver +years year nom +yeas yea nom +yeast yeast nom +yeasted yeast ver +yeastier yeasty adj +yeastiest yeasty adj +yeasting yeast ver +yeasts yeast nom +yeasty yeasty adj +yegg yegg nom +yeggs yegg nom +yell yell nom +yelled yell ver +yeller yeller nom +yellers yeller nom +yelling yell ver +yellings yelling nom +yellow yellow adj +yellowbird yellowbird nom +yellowbirds yellowbird nom +yellowed yellow ver +yellower yellow adj +yellowest yellow adj +yellowfin yellowfin nom +yellowfins yellowfin nom +yellowhammer yellowhammer nom +yellowhammers yellowhammer nom +yellowier yellowy adj +yellowiest yellowy adj +yellowing yellow ver +yellowness yellowness nom +yellownesses yellowness nom +yellows yellow nom +yellowtail yellowtail nom +yellowtails yellowtail nom +yellowthroat yellowthroat nom +yellowthroats yellowthroat nom +yellowwood yellowwood nom +yellowwoods yellowwood nom +yellowy yellowy adj +yells yell nom +yelp yelp nom +yelped yelp ver +yelping yelp ver +yelpings yelping nom +yelps yelp nom +yen yen nom +yenned yen ver +yenning yen ver +yens yen nom +yenta yenta nom +yentas yenta nom +yeoman yeoman nom +yeomanries yeomanry nom +yeomanry yeomanry nom +yeomen yeoman nom +yep yep nom +yeps yep nom +yes yes sw +yeses yes nom +yeshiva yeshiva nom +yeshivah yeshivah nom +yeshivahs yeshivah nom +yeshivas yeshiva nom +yessed yes ver +yessing yes ver +yesterday yesterday nom +yesterdays yesterday nom +yesteryear yesteryear nom +yesteryears yesteryear nom +yet yet sw +yeti yeti nom +yetis yeti nom +yew yew nom +yews yew nom +yield yield nom +yielded yield ver +yielding yield ver +yieldings yielding nom +yields yield nom +yin yin nom +yins yin nom +yip yip nom +yipped yip ver +yipping yip ver +yips yip nom +yob yob nom +yobbo yobbo nom +yobboes yobbo nom +yobbos yobbo nom +yobs yob nom +yodel yodel nom +yodeled yodel ver +yodeler yodeler nom +yodelers yodeler nom +yodeling yodel ver +yodeller yodeller nom +yodellers yodeller nom +yodels yodel nom +yodh yodh nom +yodhs yodh nom +yoga yoga nom +yogas yoga nom +yoghourt yoghourt nom +yoghourts yoghourt nom +yoghurt yoghurt nom +yoghurts yoghurt nom +yogi yogi nom +yogin yogin nom +yogins yogin nom +yogis yogi nom +yogurt yogurt nom +yogurts yogurt nom +yoke yoke nom +yoked yoke ver +yokel yokel nom +yokels yokel nom +yokes yoke nom +yoking yoke ver +yolk yolk nom +yolks yolk nom +yore yore nom +yores yore nom +you you sw +you_d you_d sw +you_ll you_ll sw +you_re you_re sw +you_ve you_ve sw +young young nom +younger young adj +youngest young adj +youngness youngness nom +youngnesses youngness nom +youngster youngster nom +youngsters youngster nom +younker younker nom +younkers younker nom +your your sw +yours yours sw +yourself yourself sw +yourselves yourselves sw +yous you nom +youth youth nom +youthfulness youthfulness nom +youthfulnesses youthfulness nom +youths youth nom +yowl yowl nom +yowled yowl ver +yowling yowl ver +yowls yowl nom +ytterbium ytterbium nom +ytterbiums ytterbium nom +yttrium yttrium nom +yttriums yttrium nom +yuan yuan nom +yucca yucca nom +yuccas yucca nom +yuck yuck nom +yucked yuck ver +yuckier yucky adj +yuckiest yucky adj +yucking yuck ver +yucks yuck nom +yucky yucky adj +yuk yuk nom +yukked yuk ver +yukking yuk ver +yuks yuk nom +yule yule nom +yules yule nom +yuletide yuletide nom +yuletides yuletide nom +yummier yummy adj +yummies yummy nom +yummiest yummy adj +yummy yummy adj +yup yup nom +yuppie yuppie nom +yuppies yuppie nom +yuppy yuppy nom +yups yup nom +yurt yurt nom +yurts yurt nom +z z sw +zabaglione zabaglione nom +zabagliones zabaglione nom +zag zag nom +zags zag nom +zaire zaire nom +zaires zaire nom +zamia zamia nom +zamias zamia nom +zanier zany adj +zanies zany nom +zaniest zany adj +zaniness zaniness nom +zaninesses zaniness nom +zany zany adj +zap zap nom +zapped zap ver +zapper zapper nom +zappers zapper nom +zapping zap ver +zaps zap nom +zarf zarf nom +zarfs zarf nom +zayin zayin nom +zayins zayin nom +zeal zeal nom +zealot zealot nom +zealotries zealotry nom +zealotry zealotry nom +zealots zealot nom +zealousness zealousness nom +zealousnesses zealousness nom +zeals zeal nom +zebra zebra nom +zebras zebra nom +zebrawood zebrawood nom +zebrawoods zebrawood nom +zebu zebu nom +zebus zebu nom +zed zed nom +zeds zed nom +zee zee nom +zees zee nom +zeitgeist zeitgeist nom +zeitgeists zeitgeist nom +zenith zenith nom +zeniths zenith nom +zep zep nom +zephyr zephyr nom +zephyrs zephyr nom +zeppelin zeppelin nom +zeppelins zeppelin nom +zeps zep nom +zero zero sw +zeroed zero ver +zeroing zero ver +zeros zero nom +zest zest nom +zested zest ver +zestfulness zestfulness nom +zestfulnesses zestfulness nom +zestier zesty adj +zestiest zesty adj +zesting zest ver +zests zest nom +zesty zesty adj +zeta zeta nom +zetas zeta nom +zeugma zeugma nom +zeugmas zeugma nom +zidovudine zidovudine nom +zidovudines zidovudine nom +zig zig nom +zigs zig nom +zigzag zigzag nom +zigzagged zigzag ver +zigzagging zigzag ver +zigzags zigzag nom +zilch zilch nom +zilches zilch nom +zill zill nom +zillion zillion nom +zillions zillion nom +zills zill nom +zinc zinc nom +zincked zinc ver +zincking zinc ver +zincs zinc nom +zinfandel zinfandel nom +zinfandels zinfandel nom +zing zing nom +zinged zing ver +zinger zinger nom +zingers zinger nom +zingier zingy adj +zingiest zingy adj +zinging zing ver +zings zing nom +zingy zingy adj +zinkenite zinkenite nom +zinkenites zinkenite nom +zinnia zinnia nom +zinnias zinnia nom +zip zip nom +zipped zip ver +zipper zipper nom +zippered zipper ver +zippering zipper ver +zippers zipper nom +zippier zippy adj +zippiest zippy adj +zipping zip ver +zippy zippy adj +zips zip nom +zircon zircon nom +zirconia zirconia nom +zirconias zirconia nom +zirconium zirconium nom +zirconiums zirconium nom +zircons zircon nom +zit zit nom +zither zither nom +zithern zithern nom +zitherns zithern nom +zithers zither nom +ziti ziti nom +zitis ziti nom +zits zit nom +zloties zloty nom +zloty zloty nom +zoanthropies zoanthropy nom +zoanthropy zoanthropy nom +zodiac zodiac nom +zodiacs zodiac nom +zombi zombi nom +zombie zombie nom +zombies zombie nom +zombis zombi nom +zone zone nom +zoned zone ver +zones zone nom +zoning zone ver +zonings zoning nom +zoo zoo nom +zooflagellate zooflagellate nom +zooflagellates zooflagellate nom +zooid zooid nom +zooids zooid nom +zoolatries zoolatry nom +zoolatry zoolatry nom +zoologies zoology nom +zoologist zoologist nom +zoologists zoologist nom +zoology zoology nom +zoom zoom nom +zoomed zoom ver +zooming zoom ver +zooms zoom nom +zoonoses zoonosis nom +zoonosis zoonosis nom +zoophobia zoophobia nom +zoophobias zoophobia nom +zoophyte zoophyte nom +zoophytes zoophyte nom +zooplankton zooplankton nom +zooplanktons zooplankton nom +zoos zoo nom +zoospore zoospore nom +zoospores zoospore nom +zori zori nom +zoril zoril nom +zorils zoril nom +zoris zori nom +zoster zoster nom +zosters zoster nom +zoysia zoysia nom +zoysias zoysia nom +zucchini zucchini nom +zucchinis zucchini nom +zwieback zwieback nom +zwiebacks zwieback nom +zydeco zydeco nom +zydecos zydeco nom +zygoma zygoma nom +zygomas zygoma nom +zygote zygote nom +zygotene zygotene nom +zygotenes zygotene nom +zygotes zygote nom +zymase zymase nom +zymases zymase nom +zymolyses zymolysis nom +zymolysis zymolysis nom +zymoses zymosis nom +zymosis zymosis nom +zymurgies zymurgy nom +zymurgy zymurgy nom diff --git a/dictionnaires/lexique_fr.txt b/dictionnaires/lexique_fr.txt new file mode 100644 index 0000000..a6a550b --- /dev/null +++ b/dictionnaires/lexique_fr.txt @@ -0,0 +1,125721 @@ +a avoir aux 18559.22 12800.81 6350.91 2926.69 ind:pre:3s; +a_capella a_capella adv 0.04 0.07 0.04 0.07 +a_cappella a_cappella adv 0.04 0.07 0.04 0.07 +a_contrario a_contrario adv 0 0.27 0 0.27 +a_fortiori a_fortiori adv 0.04 0.88 0.04 0.88 +a_giorno a_giorno adv 0 0.27 0 0.27 +à_jeun à_jeun adv 1.45 3.85 0.18 0 +a_l_instar a_l_instar pre 0.26 0 0.26 0 +a_posteriori a_posteriori adv 0.05 0.2 0.01 0.14 +a_priori a_priori adv 1.04 3.85 0.63 2.57 +aa aa nom m s 0.01 0 0.01 0 +ab_absurdo ab_absurdo adv 0 0.07 0 0.07 +ab_initio ab_initio adv 0.01 0.07 0.01 0.07 +ab_ovo ab_ovo adv 0 0.27 0 0.27 +abaca abaca nom m s 0.01 0 0.01 0 +abaissa abaisser ver 4.93 18.04 0 2.64 ind:pas:3s; +abaissai abaisser ver 4.93 18.04 0.1 0.07 ind:pas:1s; +abaissaient abaisser ver 4.93 18.04 0 0.41 ind:imp:3p; +abaissait abaisser ver 4.93 18.04 0.02 2.5 ind:imp:3s; +abaissant abaissant adj m s 0.04 0.27 0.03 0.27 +abaissante abaissant adj f s 0.04 0.27 0.01 0 +abaisse abaisser ver 4.93 18.04 1.28 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abaisse_langue abaisse_langue nom m 0.04 0.14 0.04 0.14 +abaissement abaissement nom m s 0.31 2.16 0.31 2.16 +abaissent abaisser ver 4.93 18.04 0.05 0.95 ind:pre:3p; +abaisser abaisser ver 4.93 18.04 1.09 2.91 inf; +abaissera abaisser ver 4.93 18.04 0.19 0.07 ind:fut:3s; +abaisserai abaisser ver 4.93 18.04 0.1 0.07 ind:fut:1s; +abaisseraient abaisser ver 4.93 18.04 0.01 0.07 cnd:pre:3p; +abaisserais abaisser ver 4.93 18.04 0.13 0 cnd:pre:1s;cnd:pre:2s; +abaisserait abaisser ver 4.93 18.04 0.02 0.2 cnd:pre:3s; +abaisses abaisser ver 4.93 18.04 0.16 0.07 ind:pre:2s; +abaissez abaisser ver 4.93 18.04 0.53 0.07 imp:pre:2p;ind:pre:2p; +abaissons abaisser ver 4.93 18.04 0.02 0 imp:pre:1p; +abaissèrent abaisser ver 4.93 18.04 0 0.41 ind:pas:3p; +abaissé abaisser ver m s 4.93 18.04 0.74 1.35 par:pas; +abaissée abaisser ver f s 4.93 18.04 0.17 0.27 par:pas; +abaissées abaissé adj f p 0.07 0.74 0.02 0.27 +abaissés abaisser ver m p 4.93 18.04 0.3 0.07 par:pas; +abalone abalone nom m s 0.01 0.07 0.01 0 +abalones abalone nom m p 0.01 0.07 0 0.07 +abandon abandon nom m s 4.84 27.36 4.77 25.2 +abandonna abandonner ver 110.87 128.45 0.59 8.92 ind:pas:3s; +abandonnai abandonner ver 110.87 128.45 0.27 2.16 ind:pas:1s; +abandonnaient abandonner ver 110.87 128.45 0.07 1.55 ind:imp:3p; +abandonnais abandonner ver 110.87 128.45 0.35 1.49 ind:imp:1s;ind:imp:2s; +abandonnait abandonner ver 110.87 128.45 1.04 9.46 ind:imp:3s; +abandonnant abandonner ver 110.87 128.45 1.15 9.93 par:pre; +abandonnas abandonner ver 110.87 128.45 0 0.14 ind:pas:2s; +abandonne abandonner ver 110.87 128.45 24.04 15.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +abandonnent abandonner ver 110.87 128.45 2.44 2.64 ind:pre:3p;sub:pre:3p; +abandonner abandonner ver 110.87 128.45 28.37 27.7 ind:pre:2p;inf; +abandonnera abandonner ver 110.87 128.45 1.52 0.81 ind:fut:3s; +abandonnerai abandonner ver 110.87 128.45 2.39 0.41 ind:fut:1s; +abandonneraient abandonner ver 110.87 128.45 0.02 0.14 cnd:pre:3p; +abandonnerais abandonner ver 110.87 128.45 0.93 0.27 cnd:pre:1s;cnd:pre:2s; +abandonnerait abandonner ver 110.87 128.45 0.23 0.88 cnd:pre:3s; +abandonneras abandonner ver 110.87 128.45 0.3 0.2 ind:fut:2s; +abandonnerez abandonner ver 110.87 128.45 0.14 0 ind:fut:2p; +abandonneriez abandonner ver 110.87 128.45 0.23 0.2 cnd:pre:2p; +abandonnerions abandonner ver 110.87 128.45 0.01 0 cnd:pre:1p; +abandonnerons abandonner ver 110.87 128.45 0.39 0.14 ind:fut:1p; +abandonneront abandonner ver 110.87 128.45 0.41 0.27 ind:fut:3p; +abandonnes abandonner ver 110.87 128.45 4.13 0.14 ind:pre:2s;sub:pre:2s; +abandonneurs abandonneur nom m p 0 0.07 0 0.07 +abandonnez abandonner ver 110.87 128.45 5.72 0.88 imp:pre:2p;ind:pre:2p; +abandonniez abandonner ver 110.87 128.45 0.14 0.14 ind:imp:2p; +abandonnions abandonner ver 110.87 128.45 0.06 0.54 ind:imp:1p; +abandonnique abandonnique adj s 0 0.07 0 0.07 +abandonnons abandonner ver 110.87 128.45 1.06 0.68 imp:pre:1p;ind:pre:1p; +abandonnâmes abandonner ver 110.87 128.45 0 0.27 ind:pas:1p; +abandonnât abandonner ver 110.87 128.45 0 0.34 sub:imp:3s; +abandonnèrent abandonner ver 110.87 128.45 0.16 1.42 ind:pas:3p; +abandonné abandonner ver m s 110.87 128.45 22.56 23.92 par:pas; +abandonnée abandonner ver f s 110.87 128.45 7.34 9.66 par:pas; +abandonnées abandonner ver f p 110.87 128.45 1.27 2.7 par:pas; +abandonnés abandonner ver m p 110.87 128.45 3.55 4.93 par:pas; +abandons abandon nom m p 4.84 27.36 0.07 2.16 +abaque abaque nom m s 0 0.07 0 0.07 +abasourdi abasourdir ver m s 0.55 2.97 0.35 2.09 par:pas; +abasourdie abasourdi adj f s 0.4 2.64 0.14 0.54 +abasourdir abasourdir ver 0.55 2.97 0.01 0.14 inf; +abasourdis abasourdir ver m p 0.55 2.97 0.07 0.2 par:pas; +abasourdissant abasourdissant adj m s 0.01 0.07 0.01 0 +abasourdissants abasourdissant adj m p 0.01 0.07 0 0.07 +abat abattre ver 43.47 50.61 2.15 4.93 ind:pre:3s; +abat_jour abat_jour nom m 0.51 8.24 0.51 8.24 +abat_son abat_son nom m 0 0.27 0 0.27 +abatage abatage nom m s 0 0.07 0 0.07 +abatis abatis nom m 0 0.88 0 0.88 +abats abattre ver 43.47 50.61 1.79 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +abattage abattage nom m s 0.65 1.28 0.63 1.15 +abattages abattage nom m p 0.65 1.28 0.02 0.14 +abattaient abattre ver 43.47 50.61 0.06 2.36 ind:imp:3p; +abattais abattre ver 43.47 50.61 0.02 0.27 ind:imp:1s; +abattait abattre ver 43.47 50.61 0.42 3.45 ind:imp:3s; +abattant abattre ver 43.47 50.61 0.31 1.96 par:pre; +abattants abattant nom m p 0.07 0.61 0.01 0.07 +abatte abattre ver 43.47 50.61 0.58 0.61 sub:pre:1s;sub:pre:3s; +abattement abattement nom m s 0.18 2.64 0.17 2.36 +abattements abattement nom m p 0.18 2.64 0.01 0.27 +abattent abattre ver 43.47 50.61 0.69 2.03 ind:pre:3p; +abattes abattre ver 43.47 50.61 0.11 0 sub:pre:2s; +abatteur abatteur nom m s 0.14 0.27 0.14 0.2 +abatteurs abatteur nom m p 0.14 0.27 0 0.07 +abattez abattre ver 43.47 50.61 2.21 0 imp:pre:2p;ind:pre:2p; +abattiez abattre ver 43.47 50.61 0.06 0 ind:imp:2p; +abattions abattre ver 43.47 50.61 0 0.07 ind:imp:1p; +abattirent abattre ver 43.47 50.61 0.03 0.95 ind:pas:3p; +abattis abattis nom m 0.14 1.08 0.14 1.08 +abattit abattre ver 43.47 50.61 0.34 5.07 ind:pas:3s; +abattoir abattoir nom m s 3.16 4.66 2.67 2.36 +abattoirs abattoir nom m p 3.16 4.66 0.48 2.3 +abattons abattre ver 43.47 50.61 0.33 0 imp:pre:1p;ind:pre:1p; +abattra abattre ver 43.47 50.61 1.51 0.61 ind:fut:3s; +abattrai abattre ver 43.47 50.61 0.39 0 ind:fut:1s; +abattraient abattre ver 43.47 50.61 0.03 0.07 cnd:pre:3p; +abattrais abattre ver 43.47 50.61 0.1 0.07 cnd:pre:1s;cnd:pre:2s; +abattrait abattre ver 43.47 50.61 0.63 0.41 cnd:pre:3s; +abattras abattre ver 43.47 50.61 0.03 0 ind:fut:2s; +abattre abattre ver 43.47 50.61 14.43 14.32 inf; +abattrez abattre ver 43.47 50.61 0.26 0 ind:fut:2p; +abattriez abattre ver 43.47 50.61 0.02 0 cnd:pre:2p; +abattrons abattre ver 43.47 50.61 0.11 0 ind:fut:1p; +abattront abattre ver 43.47 50.61 0.34 0.07 ind:fut:3p; +abattu abattre ver m s 43.47 50.61 11.48 7.43 par:pas; +abattue abattre ver f s 43.47 50.61 2.19 2.43 par:pas; +abattues abattre ver f p 43.47 50.61 0.44 0.27 par:pas; +abattures abatture nom f p 0 0.14 0 0.14 +abattus abattre ver m p 43.47 50.61 2.42 2.43 par:pas; +abbatial abbatial adj m s 0 0.61 0 0.27 +abbatiale abbatial adj f s 0 0.61 0 0.27 +abbatiales abbatial adj f p 0 0.61 0 0.07 +abbaye abbaye nom f s 3.94 3.78 3.66 3.31 +abbayes abbaye nom f p 3.94 3.78 0.28 0.47 +abbesse abbé nom f s 4.46 33.51 0.26 0.41 +abbesses abbé nom f p 4.46 33.51 0 0.61 +abbé abbé nom m s 4.46 33.51 4.19 31.28 +abbés abbé nom m p 4.46 33.51 0.02 1.22 +abc abc nom m 0.04 0 0.04 0 +abcès abcès nom m 1.79 3.31 1.79 3.31 +abdication abdication nom f s 0.05 1.96 0.05 1.82 +abdications abdication nom f p 0.05 1.96 0 0.14 +abdiqua abdiquer ver 0.47 2.77 0 0.2 ind:pas:3s; +abdiquai abdiquer ver 0.47 2.77 0 0.07 ind:pas:1s; +abdiquaient abdiquer ver 0.47 2.77 0 0.07 ind:imp:3p; +abdiquais abdiquer ver 0.47 2.77 0 0.14 ind:imp:1s; +abdiquait abdiquer ver 0.47 2.77 0 0.2 ind:imp:3s; +abdiquant abdiquer ver 0.47 2.77 0 0.07 par:pre; +abdique abdiquer ver 0.47 2.77 0.23 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abdiquer abdiquer ver 0.47 2.77 0.08 0.41 inf; +abdiquera abdiquer ver 0.47 2.77 0.01 0.07 ind:fut:3s; +abdiquerais abdiquer ver 0.47 2.77 0 0.07 cnd:pre:1s; +abdiquerait abdiquer ver 0.47 2.77 0 0.07 cnd:pre:3s; +abdiquez abdiquer ver 0.47 2.77 0.03 0 imp:pre:2p;ind:pre:2p; +abdiqué abdiquer ver m s 0.47 2.77 0.11 0.95 par:pas; +abdiquée abdiquer ver f s 0.47 2.77 0 0.07 par:pas; +abdomen abdomen nom m s 2.76 1.55 2.76 1.55 +abdominal abdominal adj m s 2.56 0.74 0.5 0 +abdominale abdominal adj f s 2.56 0.74 1.3 0.61 +abdominales abdominal adj f p 2.56 0.74 0.7 0 +abdominaux abdominal nom m p 0.09 0.68 0.09 0.68 +abdos abdos nom m p 0.86 0 0.86 0 +abducteur abducteur adj m s 0.01 0 0.01 0 +abduction abduction nom f s 0.05 0 0.05 0 +abeille abeille nom f s 9.11 9.86 3.53 3.18 +abeilles abeille nom f p 9.11 9.86 5.59 6.69 +aber aber nom m s 0.25 0 0.25 0 +aberrant aberrant adj m s 0.84 2.5 0.58 1.08 +aberrante aberrant adj f s 0.84 2.5 0.04 0.61 +aberrantes aberrant adj f p 0.84 2.5 0.2 0.34 +aberrants aberrant adj m p 0.84 2.5 0.02 0.47 +aberration aberration nom f s 1.16 4.46 0.89 3.31 +aberrations aberration nom f p 1.16 4.46 0.27 1.15 +abhorrais abhorrer ver 0.27 1.35 0.01 0.07 ind:imp:1s; +abhorrait abhorrer ver 0.27 1.35 0.01 0.68 ind:imp:3s; +abhorrant abhorrer ver 0.27 1.35 0.01 0.07 par:pre; +abhorre abhorrer ver 0.27 1.35 0.2 0 ind:pre:1s;ind:pre:3s; +abhorrer abhorrer ver 0.27 1.35 0 0.14 inf; +abhorrez abhorrer ver 0.27 1.35 0.03 0 ind:pre:2p; +abhorré abhorrer ver m s 0.27 1.35 0.01 0.27 par:pas; +abhorrée abhorré adj f s 0.01 0.27 0.01 0.07 +abhorrés abhorrer ver m p 0.27 1.35 0 0.07 par:pas; +abject abject adj m s 2.19 3.92 1.4 1.69 +abjecte abject adj f s 2.19 3.92 0.69 1.49 +abjectement abjectement adv 0.1 0.07 0.1 0.07 +abjectes abject adj f p 2.19 3.92 0.05 0.2 +abjection abjection nom f s 0.51 2.3 0.37 2.16 +abjections abjection nom f p 0.51 2.3 0.14 0.14 +abjects abject adj m p 2.19 3.92 0.05 0.54 +abjurant abjurer ver 1.53 1.28 0.14 0 par:pre; +abjuration abjuration nom f s 0 0.47 0 0.41 +abjurations abjuration nom f p 0 0.47 0 0.07 +abjure abjurer ver 1.53 1.28 0.77 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abjurer abjurer ver 1.53 1.28 0.22 0.68 inf; +abjurez abjurer ver 1.53 1.28 0.4 0 imp:pre:2p;ind:pre:2p; +abjurons abjurer ver 1.53 1.28 0 0.07 ind:pre:1p; +abjuré abjurer ver m s 1.53 1.28 0 0.41 par:pas; +abkhaze abkhaze adj f s 0 0.07 0 0.07 +ablatif ablatif nom m s 0 0.14 0 0.14 +ablation ablation nom f s 0.45 1.35 0.43 1.28 +ablations ablation nom f p 0.45 1.35 0.03 0.07 +able able nom m s 0.68 0.14 0.68 0.14 +ablette ablette nom f s 0.14 0.95 0 0.41 +ablettes ablette nom f p 0.14 0.95 0.14 0.54 +ablution ablution nom f s 0.48 1.55 0.01 0.14 +ablutions ablution nom f p 0.48 1.55 0.47 1.42 +abnégation abnégation nom f s 0.91 3.58 0.91 3.58 +aboi aboi nom m s 0.78 3.58 0 0.88 +aboie aboyer ver 7.43 11.82 2.91 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aboiement aboiement nom m s 1.79 5.95 0.44 2.36 +aboiements aboiement nom m p 1.79 5.95 1.35 3.58 +aboient aboyer ver 7.43 11.82 0.54 0.81 ind:pre:3p; +aboiera aboyer ver 7.43 11.82 0.21 0 ind:fut:3s; +aboierait aboyer ver 7.43 11.82 0.01 0.07 cnd:pre:3s; +aboieront aboyer ver 7.43 11.82 0.01 0.07 ind:fut:3p; +aboies aboyer ver 7.43 11.82 0.42 0 ind:pre:2s; +abois aboi nom m p 0.78 3.58 0.78 2.7 +aboli abolir ver m s 3.08 9.32 1.1 1.42 par:pas; +abolie aboli adj f s 0.08 2.57 0.06 0.61 +abolies abolir ver f p 3.08 9.32 0.11 0.34 par:pas; +abolir abolir ver 3.08 9.32 1.08 2.97 inf; +abolira abolir ver 3.08 9.32 0.01 0.34 ind:fut:3s; +abolirait abolir ver 3.08 9.32 0 0.07 cnd:pre:3s; +aboliras abolir ver 3.08 9.32 0.01 0 ind:fut:2s; +abolis abolir ver m p 3.08 9.32 0.14 0.41 ind:pre:1s;par:pas; +abolissaient abolir ver 3.08 9.32 0 0.41 ind:imp:3p; +abolissais abolir ver 3.08 9.32 0 0.07 ind:imp:1s; +abolissait abolir ver 3.08 9.32 0 0.74 ind:imp:3s; +abolissant abolir ver 3.08 9.32 0.25 0.54 par:pre; +abolissent abolir ver 3.08 9.32 0 0.14 ind:pre:3p; +abolissions abolir ver 3.08 9.32 0 0.07 ind:imp:1p; +abolissons abolir ver 3.08 9.32 0.02 0 imp:pre:1p;ind:pre:1p; +abolit abolir ver 3.08 9.32 0.29 1.28 ind:pre:3s;ind:pas:3s; +abolition abolition nom f s 0.45 1.49 0.45 1.49 +abolitionniste abolitionniste nom s 0.17 0.07 0.07 0 +abolitionnistes abolitionniste nom p 0.17 0.07 0.1 0.07 +abominable abominable adj s 5.39 11.22 4.78 8.99 +abominablement abominablement adv 0.01 0.68 0.01 0.68 +abominables abominable adj p 5.39 11.22 0.62 2.23 +abominaient abominer ver 0 0.54 0 0.07 ind:imp:3p; +abomination abomination nom f s 1.94 4.53 1.24 3.04 +abominations abomination nom f p 1.94 4.53 0.69 1.49 +abomine abominer ver 0 0.54 0 0.41 ind:pre:1s;ind:pre:3s; +abominer abominer ver 0 0.54 0 0.07 inf; +abonda abonder ver 1.13 4.59 0 0.27 ind:pas:3s; +abondai abonder ver 1.13 4.59 0 0.07 ind:pas:1s; +abondaient abonder ver 1.13 4.59 0.12 1.42 ind:imp:3p; +abondais abonder ver 1.13 4.59 0.01 0.14 ind:imp:1s; +abondait abonder ver 1.13 4.59 0.02 0.47 ind:imp:3s; +abondamment abondamment adv 0.3 4.93 0.3 4.93 +abondance abondance nom f s 2.76 9.39 2.76 9.39 +abondant abondant adj m s 1.36 7.03 0.09 1.42 +abondante abondant adj f s 1.36 7.03 0.89 3.45 +abondantes abondant adj f p 1.36 7.03 0.33 1.22 +abondants abondant adj m p 1.36 7.03 0.05 0.95 +abondassent abonder ver 1.13 4.59 0 0.07 sub:imp:3p; +abonde abonder ver 1.13 4.59 0.28 0.81 ind:pre:1s;ind:pre:3s; +abondent abonder ver 1.13 4.59 0.63 0.47 ind:pre:3p; +abonder abonder ver 1.13 4.59 0.03 0.61 inf; +abondé abonder ver m s 1.13 4.59 0.01 0.2 par:pas; +abonnai abonner ver 1.1 2.09 0 0.07 ind:pas:1s; +abonnant abonner ver 1.1 2.09 0.01 0 par:pre; +abonne abonner ver 1.1 2.09 0.18 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abonnement abonnement nom m s 4.82 1.62 3.37 1.55 +abonnements abonnement nom m p 4.82 1.62 1.45 0.07 +abonner abonner ver 1.1 2.09 0.27 0.14 inf; +abonnez abonner ver 1.1 2.09 0.03 0.07 imp:pre:2p;ind:pre:2p; +abonnât abonner ver 1.1 2.09 0 0.07 sub:imp:3s; +abonné abonner ver m s 1.1 2.09 0.3 0.88 par:pas; +abonnée abonner ver f s 1.1 2.09 0.15 0.68 par:pas; +abonnées abonné nom f p 0.87 2.23 0.02 0.2 +abonnés abonné nom m p 0.87 2.23 0.52 1.55 +abord abord nom m s 2.22 19.05 0.89 7.3 +aborda aborder ver 12.55 33.18 0.16 3.99 ind:pas:3s; +abordable abordable adj s 0.47 0.2 0.34 0.2 +abordables abordable adj p 0.47 0.2 0.13 0 +abordage abordage nom m s 1.22 1.49 1.17 1.42 +abordages abordage nom m p 1.22 1.49 0.05 0.07 +abordai aborder ver 12.55 33.18 0 0.61 ind:pas:1s; +abordaient aborder ver 12.55 33.18 0.03 1.28 ind:imp:3p; +abordais aborder ver 12.55 33.18 0 0.54 ind:imp:1s; +abordait aborder ver 12.55 33.18 0.47 2.5 ind:imp:3s; +abordant aborder ver 12.55 33.18 0.03 1.42 par:pre; +aborde aborder ver 12.55 33.18 1.76 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abordent aborder ver 12.55 33.18 0.09 0.54 ind:pre:3p; +aborder aborder ver 12.55 33.18 5.65 12.91 inf; +abordera aborder ver 12.55 33.18 0.2 0.34 ind:fut:3s; +aborderai aborder ver 12.55 33.18 0.08 0.14 ind:fut:1s; +aborderaient aborder ver 12.55 33.18 0 0.07 cnd:pre:3p; +aborderais aborder ver 12.55 33.18 0.02 0.07 cnd:pre:1s; +aborderait aborder ver 12.55 33.18 0.02 0.14 cnd:pre:3s; +aborderiez aborder ver 12.55 33.18 0.01 0 cnd:pre:2p; +aborderions aborder ver 12.55 33.18 0 0.14 cnd:pre:1p; +aborderons aborder ver 12.55 33.18 0.09 0.07 ind:fut:1p; +aborderont aborder ver 12.55 33.18 0.04 0.14 ind:fut:3p; +abordes aborder ver 12.55 33.18 0.36 0.07 ind:pre:2s; +abordez aborder ver 12.55 33.18 0.75 0 imp:pre:2p;ind:pre:2p; +abordiez aborder ver 12.55 33.18 0.02 0.07 ind:imp:2p; +abordions aborder ver 12.55 33.18 0.04 0.34 ind:imp:1p; +abordons aborder ver 12.55 33.18 0.72 0.41 imp:pre:1p;ind:pre:1p; +abords abord nom m p 2.22 19.05 1.33 11.76 +abordâmes aborder ver 12.55 33.18 0 0.27 ind:pas:1p; +abordèrent aborder ver 12.55 33.18 0.01 0.68 ind:pas:3p; +abordé aborder ver m s 12.55 33.18 1.36 2.97 par:pas; +abordée aborder ver f s 12.55 33.18 0.34 0.54 par:pas; +abordées aborder ver f p 12.55 33.18 0.05 0.2 par:pas; +abordés aborder ver m p 12.55 33.18 0.26 0.41 par:pas; +aborigène aborigène nom s 0.6 0.14 0.21 0 +aborigènes aborigène nom p 0.6 0.14 0.39 0.14 +abornement abornement nom m s 0 0.07 0 0.07 +abortif abortif adj m s 0.04 0.34 0.01 0 +abortive abortif adj f s 0.04 0.34 0.01 0.14 +abortives abortif adj f p 0.04 0.34 0.02 0.2 +abouchaient aboucher ver 0 0.81 0 0.07 ind:imp:3p; +abouchais aboucher ver 0 0.81 0 0.07 ind:imp:1s; +abouchait aboucher ver 0 0.81 0 0.07 ind:imp:3s; +abouchant aboucher ver 0 0.81 0 0.07 par:pre; +abouchements abouchement nom m p 0 0.07 0 0.07 +aboucher aboucher ver 0 0.81 0 0.34 inf; +abouché aboucher ver m s 0 0.81 0 0.07 par:pas; +abouchée aboucher ver f s 0 0.81 0 0.07 par:pas; +abouchés aboucher ver m p 0 0.81 0 0.07 par:pas; +aboule abouler ver 1.8 0.61 1.43 0.34 imp:pre:2s;ind:pre:3s; +abouler abouler ver 1.8 0.61 0.11 0.14 inf; +aboules abouler ver 1.8 0.61 0.01 0 ind:pre:2s; +aboulez abouler ver 1.8 0.61 0.25 0.14 imp:pre:2p; +aboulie aboulie nom f s 0 0.14 0 0.14 +aboulique aboulique nom s 0 0.07 0 0.07 +abouliques aboulique adj p 0 0.14 0 0.14 +abounas abouna nom m p 0 0.07 0 0.07 +about about nom m s 5.94 0.47 5.94 0.47 +aboutait abouter ver 0 0.14 0 0.07 ind:imp:3s; +abouti aboutir ver m s 5.34 25.81 1.24 2.84 par:pas; +aboutie abouti adj f s 0.11 0.2 0.04 0.07 +aboutir aboutir ver 5.34 25.81 1.34 9.8 inf; +aboutira aboutir ver 5.34 25.81 0.29 0.41 ind:fut:3s; +aboutirai aboutir ver 5.34 25.81 0 0.07 ind:fut:1s; +aboutiraient aboutir ver 5.34 25.81 0.01 0.14 cnd:pre:3p; +aboutirais aboutir ver 5.34 25.81 0 0.14 cnd:pre:1s; +aboutirait aboutir ver 5.34 25.81 0.05 0.61 cnd:pre:3s; +aboutiras aboutir ver 5.34 25.81 0 0.07 ind:fut:2s; +aboutirent aboutir ver 5.34 25.81 0 0.68 ind:pas:3p; +aboutirons aboutir ver 5.34 25.81 0.01 0 ind:fut:1p; +aboutiront aboutir ver 5.34 25.81 0.04 0.27 ind:fut:3p; +aboutis aboutir ver m p 5.34 25.81 0.07 0.34 ind:pre:1s;ind:pre:2s;par:pas; +aboutissaient aboutir ver 5.34 25.81 0.15 1.15 ind:imp:3p; +aboutissait aboutir ver 5.34 25.81 0.03 2.5 ind:imp:3s; +aboutissant aboutir ver 5.34 25.81 0 1.15 par:pre; +aboutissants aboutissant nom m p 0.09 0.95 0.09 0.81 +aboutisse aboutir ver 5.34 25.81 0.08 0.41 sub:pre:1s;sub:pre:3s; +aboutissement aboutissement nom m s 0.5 4.05 0.5 4.05 +aboutissent aboutir ver 5.34 25.81 0.47 1.49 ind:pre:3p; +aboutissez aboutir ver 5.34 25.81 0.02 0.07 ind:pre:2p; +aboutissiez aboutir ver 5.34 25.81 0 0.07 ind:imp:2p; +aboutissions aboutir ver 5.34 25.81 0 0.07 ind:imp:1p; +aboutit aboutir ver 5.34 25.81 1.5 3.45 ind:pre:3s;ind:pas:3s; +aboutonnai aboutonner ver 0 0.07 0 0.07 ind:pas:1s; +aboutons abouter ver 0 0.14 0 0.07 imp:pre:1p; +aboutîmes aboutir ver 5.34 25.81 0 0.14 ind:pas:1p; +aboya aboyer ver 7.43 11.82 0 1.42 ind:pas:3s; +aboyaient aboyer ver 7.43 11.82 0.05 0.68 ind:imp:3p; +aboyait aboyer ver 7.43 11.82 0.33 1.55 ind:imp:3s; +aboyant aboyer ver 7.43 11.82 0.18 1.28 par:pre; +aboyante aboyant adj f s 0.01 0.2 0 0.07 +aboyer aboyer ver 7.43 11.82 2.39 3.04 inf; +aboyeur aboyeur nom m s 0.06 0.61 0.05 0.34 +aboyeurs aboyeur nom m p 0.06 0.61 0.01 0.27 +aboyons aboyer ver 7.43 11.82 0.1 0.07 ind:pre:1p; +aboyèrent aboyer ver 7.43 11.82 0 0.27 ind:pas:3p; +aboyé aboyer ver m s 7.43 11.82 0.28 0.54 par:pas; +abracadabra abracadabra nom m s 0.98 0.27 0.98 0.27 +abracadabrant abracadabrant adj m s 0.26 0.68 0.03 0.2 +abracadabrante abracadabrant adj f s 0.26 0.68 0.13 0 +abracadabrantes abracadabrant adj f p 0.26 0.68 0.1 0.34 +abracadabrants abracadabrant adj m p 0.26 0.68 0 0.14 +abracadabré abracadabrer ver m s 0.01 0 0.01 0 par:pas; +abrasif abrasif nom m s 0.15 0.41 0.13 0.34 +abrasifs abrasif nom m p 0.15 0.41 0.03 0.07 +abrasion abrasion nom f s 0.19 0.14 0.19 0.14 +abrasive abrasif adj f s 0.09 0.27 0.04 0 +abrasé abraser ver m s 0 0.07 0 0.07 par:pas; +abraxas abraxas nom m 0.29 0 0.29 0 +abreuva abreuver ver 1.13 6.22 0 0.27 ind:pas:3s; +abreuvage abreuvage nom m s 0 0.07 0 0.07 +abreuvaient abreuver ver 1.13 6.22 0 0.27 ind:imp:3p; +abreuvait abreuver ver 1.13 6.22 0.03 0.47 ind:imp:3s; +abreuvant abreuver ver 1.13 6.22 0.01 0.34 par:pre; +abreuve abreuver ver 1.13 6.22 0.23 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abreuvent abreuver ver 1.13 6.22 0.04 0.34 ind:pre:3p; +abreuver abreuver ver 1.13 6.22 0.48 2.09 inf; +abreuvera abreuver ver 1.13 6.22 0.11 0 ind:fut:3s; +abreuveraient abreuver ver 1.13 6.22 0 0.07 cnd:pre:3p; +abreuvez abreuver ver 1.13 6.22 0.03 0 imp:pre:2p;ind:pre:2p; +abreuvoir abreuvoir nom m s 0.35 3.92 0.34 3.24 +abreuvoirs abreuvoir nom m p 0.35 3.92 0.01 0.68 +abreuvons abreuver ver 1.13 6.22 0.01 0.07 imp:pre:1p; +abreuvé abreuver ver m s 1.13 6.22 0.04 0.68 par:pas; +abreuvée abreuver ver f s 1.13 6.22 0.1 0.27 par:pas; +abreuvés abreuver ver m p 1.13 6.22 0.04 0.27 par:pas; +abri abri nom m s 25.9 56.76 22.7 51.08 +abri_refuge abri_refuge nom m s 0 0.07 0 0.07 +abribus abribus nom m 0.04 0.14 0.04 0.14 +abricot abricot nom m s 1.24 2.5 0.5 1.15 +abricotez abricoter ver 0.01 0 0.01 0 imp:pre:2p; +abricotier abricotier nom m s 0.02 0.41 0.02 0.14 +abricotiers abricotier nom m p 0.02 0.41 0 0.27 +abricotine abricotine nom f s 0 0.07 0 0.07 +abricots abricot nom m p 1.24 2.5 0.74 1.35 +abris abri nom m p 25.9 56.76 3.2 5.68 +abrita abriter ver 7.92 26.22 0.02 0.68 ind:pas:3s; +abritai abriter ver 7.92 26.22 0 0.07 ind:pas:1s; +abritaient abriter ver 7.92 26.22 0.14 1.49 ind:imp:3p; +abritais abriter ver 7.92 26.22 0.01 0.14 ind:imp:1s; +abritait abriter ver 7.92 26.22 0.23 4.53 ind:imp:3s; +abritant abriter ver 7.92 26.22 0.25 1.82 par:pre; +abrite abriter ver 7.92 26.22 2.09 2.7 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abritent abriter ver 7.92 26.22 0.33 1.15 ind:pre:3p; +abriter abriter ver 7.92 26.22 2.37 6.96 inf;;inf;;inf;; +abritera abriter ver 7.92 26.22 0.1 0.07 ind:fut:3s; +abriterait abriter ver 7.92 26.22 0.04 0.2 cnd:pre:3s; +abriterons abriter ver 7.92 26.22 0.03 0 ind:fut:1p; +abriteront abriter ver 7.92 26.22 0.01 0.07 ind:fut:3p; +abrites abriter ver 7.92 26.22 0.14 0.07 ind:pre:2s; +abritez abriter ver 7.92 26.22 1.08 0.2 imp:pre:2p;ind:pre:2p; +abritiez abriter ver 7.92 26.22 0.01 0 ind:imp:2p; +abritions abriter ver 7.92 26.22 0.01 0.14 ind:imp:1p; +abritons abriter ver 7.92 26.22 0.4 0 imp:pre:1p;ind:pre:1p; +abritâmes abriter ver 7.92 26.22 0.01 0 ind:pas:1p; +abritèrent abriter ver 7.92 26.22 0 0.07 ind:pas:3p; +abrité abriter ver m s 7.92 26.22 0.35 3.11 par:pas; +abritée abriter ver f s 7.92 26.22 0.04 1.15 par:pas; +abritées abriter ver f p 7.92 26.22 0.24 0.54 par:pas; +abrités abrité adj m p 0.17 1.08 0.03 0.07 +abrogation abrogation nom f s 0.16 0.14 0.16 0.14 +abrogent abroger ver 0.71 0.34 0.23 0 ind:pre:3p; +abroger abroger ver 0.71 0.34 0.09 0.07 inf; +abrogé abroger ver m s 0.71 0.34 0.11 0 par:pas; +abrogée abroger ver f s 0.71 0.34 0.28 0 par:pas; +abrogées abroger ver f p 0.71 0.34 0 0.14 par:pas; +abrogés abroger ver m p 0.71 0.34 0.01 0.14 par:pas; +abrupt abrupt adj m s 1.36 7.43 0.54 2.23 +abrupte abrupt adj f s 1.36 7.43 0.43 2.84 +abruptement abruptement adv 0.07 2.03 0.07 2.03 +abruptes abrupt adj f p 1.36 7.43 0.24 1.55 +abrupts abrupt adj m p 1.36 7.43 0.14 0.81 +abruti abruti nom m s 25.64 6.69 19.13 4.39 +abrutie abruti nom f s 25.64 6.69 0.38 0.47 +abruties abruti adj f p 6.13 4.66 0.03 0.07 +abrutir abrutir ver 2.56 6.01 0.11 0.95 inf; +abrutira abrutir ver 2.56 6.01 0 0.07 ind:fut:3s; +abrutis abruti nom m p 25.64 6.69 6.1 1.82 +abrutissaient abrutir ver 2.56 6.01 0 0.2 ind:imp:3p; +abrutissais abrutir ver 2.56 6.01 0 0.07 ind:imp:1s; +abrutissait abrutir ver 2.56 6.01 0.14 0.27 ind:imp:3s; +abrutissant abrutissant adj m s 0.19 0.41 0.14 0.14 +abrutissante abrutissant adj f s 0.19 0.41 0 0.27 +abrutissantes abrutissant adj f p 0.19 0.41 0.02 0 +abrutissants abrutissant adj m p 0.19 0.41 0.03 0 +abrutissement abrutissement nom m s 0.13 1.42 0.13 1.42 +abrutissent abrutir ver 2.56 6.01 0.16 0 ind:pre:3p; +abrutisseur abrutisseur nom m s 0 0.07 0 0.07 +abrutissions abrutir ver 2.56 6.01 0 0.07 ind:imp:1p; +abrutit abrutir ver 2.56 6.01 0.19 0.41 ind:pre:3s;ind:pas:3s; +abrège abréger ver 4.21 4.86 1.25 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abrègent abréger ver 4.21 4.86 0.22 0.34 ind:pre:3p; +abrégea abréger ver 4.21 4.86 0.02 0.14 ind:pas:3s; +abrégeai abréger ver 4.21 4.86 0 0.07 ind:pas:1s; +abrégeaient abréger ver 4.21 4.86 0 0.07 ind:imp:3p; +abrégeait abréger ver 4.21 4.86 0 0.2 ind:imp:3s; +abrégeant abréger ver 4.21 4.86 0 0.07 par:pre; +abrégeons abréger ver 4.21 4.86 0.12 0.07 imp:pre:1p; +abréger abréger ver 4.21 4.86 1.61 1.82 inf; +abrégera abréger ver 4.21 4.86 0.01 0 ind:fut:3s; +abrégerai abréger ver 4.21 4.86 0.01 0 ind:fut:1s; +abrégerait abréger ver 4.21 4.86 0 0.07 cnd:pre:3s; +abrégez abréger ver 4.21 4.86 0.73 0.07 imp:pre:2p; +abrégeât abréger ver 4.21 4.86 0 0.07 sub:imp:3s; +abrégé abréger ver m s 4.21 4.86 0.19 0.41 par:pas; +abrégée abrégé adj f s 0.2 0.41 0.13 0.2 +abrégés abrégé nom m p 0.12 0.54 0.01 0.07 +abréviatif abréviatif adj m s 0 0.07 0 0.07 +abréviation abréviation nom f s 0.46 0.95 0.37 0.41 +abréviations abréviation nom f p 0.46 0.95 0.09 0.54 +abscisse abscisse nom f s 0.02 0 0.02 0 +abscission abscission nom f s 0 0.07 0 0.07 +abscons abscons adj m 0.12 0.68 0.12 0.54 +absconse abscons adj f s 0.12 0.68 0 0.07 +absconses abscons adj f p 0.12 0.68 0 0.07 +absence absence nom f s 22.86 76.28 22.02 72.5 +absences absence nom f p 22.86 76.28 0.84 3.78 +absent absent adj m s 14.91 29.8 9.46 18.18 +absenta absenter ver 6.14 6.01 0 0.34 ind:pas:3s; +absentai absenter ver 6.14 6.01 0 0.07 ind:pas:1s; +absentaient absenter ver 6.14 6.01 0 0.14 ind:imp:3p; +absentais absenter ver 6.14 6.01 0.04 0.14 ind:imp:1s;ind:imp:2s; +absentait absenter ver 6.14 6.01 0.16 1.15 ind:imp:3s; +absentant absenter ver 6.14 6.01 0 0.07 par:pre; +absente absent adj f s 14.91 29.8 3.49 6.22 +absenter absenter ver 6.14 6.01 2.9 1.49 inf; +absentera absenter ver 6.14 6.01 0.03 0.14 ind:fut:3s; +absenterai absenter ver 6.14 6.01 0.03 0.07 ind:fut:1s; +absenterait absenter ver 6.14 6.01 0 0.07 cnd:pre:3s; +absentes absenter ver 6.14 6.01 0.07 0 ind:pre:2s; +absents absent adj m p 14.91 29.8 1.91 4.8 +absentèrent absenter ver 6.14 6.01 0 0.07 ind:pas:3p; +absenté absenter ver m s 6.14 6.01 0.89 0.34 par:pas; +absentée absenter ver f s 6.14 6.01 0.42 0.2 par:pas; +absentéisme absentéisme nom m s 0.14 0.2 0.14 0.2 +absentéiste absentéiste adj m s 0.01 0 0.01 0 +absentéiste absentéiste nom s 0.01 0 0.01 0 +absentés absenter ver m p 6.14 6.01 0.15 0.07 par:pas; +abside abside nom f s 0 1.62 0 1.55 +absides abside nom f p 0 1.62 0 0.07 +absidiales absidial adj f p 0 0.14 0 0.14 +absidiole absidiole nom f s 0 0.07 0 0.07 +absinthant absinther ver 0 0.07 0 0.07 par:pre; +absinthe absinthe nom f s 1.28 2.91 1.28 2.91 +absolu absolu adj m s 17.25 34.39 8.55 16.42 +absolue absolu adj f s 17.25 34.39 8.44 16.15 +absolues absolu adj f p 17.25 34.39 0.2 1.01 +absolument absolument adv 89.79 63.45 89.79 63.45 +absolus absolu adj m p 17.25 34.39 0.06 0.81 +absolution absolution nom f s 1.06 2.5 1.06 2.5 +absolutisme absolutisme nom m s 0.12 0.68 0.12 0.68 +absolvaient absoudre ver 2.66 3.72 0 0.07 ind:imp:3p; +absolvait absoudre ver 2.66 3.72 0 0.27 ind:imp:3s; +absolvant absolvant adj m s 0 0.14 0 0.14 +absolve absoudre ver 2.66 3.72 0.16 0 sub:pre:3s; +absolvent absoudre ver 2.66 3.72 0 0.2 ind:pre:3p; +absolves absoudre ver 2.66 3.72 0.01 0 sub:pre:2s; +absorba absorber ver 6.66 28.65 0.11 2.03 ind:pas:3s; +absorbables absorbable adj m p 0 0.07 0 0.07 +absorbai absorber ver 6.66 28.65 0 0.07 ind:pas:1s; +absorbaient absorber ver 6.66 28.65 0.04 0.68 ind:imp:3p; +absorbais absorber ver 6.66 28.65 0 0.27 ind:imp:1s; +absorbait absorber ver 6.66 28.65 0.2 3.11 ind:imp:3s; +absorbant absorbant adj m s 0.14 1.35 0.08 0.81 +absorbante absorbant adj f s 0.14 1.35 0.04 0.27 +absorbantes absorbant adj f p 0.14 1.35 0.01 0.2 +absorbants absorbant adj m p 0.14 1.35 0.01 0.07 +absorbe absorber ver 6.66 28.65 1.61 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +absorbent absorber ver 6.66 28.65 0.33 0.61 ind:pre:3p; +absorber absorber ver 6.66 28.65 1.86 4.53 inf; +absorbera absorber ver 6.66 28.65 0.23 0.07 ind:fut:3s; +absorberai absorber ver 6.66 28.65 0.02 0 ind:fut:1s; +absorberaient absorber ver 6.66 28.65 0.11 0.07 cnd:pre:3p; +absorberait absorber ver 6.66 28.65 0.04 0.14 cnd:pre:3s; +absorbeur absorbeur nom m s 0.03 0 0.03 0 +absorbez absorber ver 6.66 28.65 0.06 0 imp:pre:2p;ind:pre:2p; +absorbions absorber ver 6.66 28.65 0 0.07 ind:imp:1p; +absorbons absorber ver 6.66 28.65 0 0.07 ind:pre:1p; +absorbèrent absorber ver 6.66 28.65 0.01 0.41 ind:pas:3p; +absorbé absorber ver m s 6.66 28.65 1.35 7.84 par:pas; +absorbée absorber ver f s 6.66 28.65 0.4 2.3 par:pas; +absorbées absorber ver f p 6.66 28.65 0.07 0.41 par:pas; +absorbés absorber ver m p 6.66 28.65 0.16 1.69 par:pas; +absorption absorption nom f s 0.58 2.03 0.58 1.89 +absorptions absorption nom f p 0.58 2.03 0 0.14 +absoudrai absoudre ver 2.66 3.72 0.01 0 ind:fut:1s; +absoudrait absoudre ver 2.66 3.72 0.14 0.14 cnd:pre:3s; +absoudre absoudre ver 2.66 3.72 1.08 1.55 inf; +absoudriez absoudre ver 2.66 3.72 0.01 0.07 cnd:pre:2p; +absous absoudre ver m 2.66 3.72 1.15 1.08 imp:pre:2s;ind:pre:1s;par:pas;par:pas;par:pas; +absout absoudre ver 2.66 3.72 0.11 0.2 ind:pre:3s; +absoute absoute nom f s 0 0.14 0 0.14 +absoutes absoudre ver f p 2.66 3.72 0 0.07 par:pas; +abstenaient abstenir ver 4.52 8.78 0 0.07 ind:imp:3p; +abstenais abstenir ver 4.52 8.78 0.01 0.34 ind:imp:1s; +abstenait abstenir ver 4.52 8.78 0 0.81 ind:imp:3s; +abstenant abstenir ver 4.52 8.78 0.12 0.41 par:pre; +abstenez abstenir ver 4.52 8.78 0.57 0.07 imp:pre:2p;ind:pre:2p; +absteniez abstenir ver 4.52 8.78 0.01 0 ind:imp:2p; +abstenions abstenir ver 4.52 8.78 0 0.07 ind:imp:1p; +abstenir abstenir ver 4.52 8.78 1.8 2.77 inf; +abstenons abstenir ver 4.52 8.78 0.02 0.2 imp:pre:1p;ind:pre:1p; +abstention abstention nom f s 0.14 1.28 0.14 1.28 +abstentionniste abstentionniste nom s 0.01 0.14 0.01 0 +abstentionnistes abstentionniste nom p 0.01 0.14 0 0.14 +abstenu abstenir ver m s 4.52 8.78 0.17 0.81 par:pas; +abstenue abstenir ver f s 4.52 8.78 0.05 0.47 par:pas; +abstenues abstenir ver f p 4.52 8.78 0.14 0 par:pas; +abstenus abstenir ver m p 4.52 8.78 0 0.14 par:pas; +abstiendrai abstenir ver 4.52 8.78 0.04 0 ind:fut:1s; +abstiendraient abstenir ver 4.52 8.78 0 0.07 cnd:pre:3p; +abstiendrais abstenir ver 4.52 8.78 0.03 0 cnd:pre:1s; +abstiendrait abstenir ver 4.52 8.78 0.02 0.07 cnd:pre:3s; +abstiendras abstenir ver 4.52 8.78 0.01 0.07 ind:fut:2s; +abstiendrions abstenir ver 4.52 8.78 0 0.14 cnd:pre:1p; +abstiendrons abstenir ver 4.52 8.78 0.12 0 ind:fut:1p; +abstiendront abstenir ver 4.52 8.78 0.12 0 ind:fut:3p; +abstienne abstenir ver 4.52 8.78 0.02 0.07 sub:pre:1s;sub:pre:3s; +abstiennent abstenir ver 4.52 8.78 0.02 0.2 ind:pre:3p; +abstiennes abstenir ver 4.52 8.78 0.02 0 sub:pre:2s; +abstiens abstenir ver 4.52 8.78 0.84 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +abstient abstenir ver 4.52 8.78 0.17 0.34 ind:pre:3s; +abstinence abstinence nom f s 1.62 1.62 1.6 1.42 +abstinences abstinence nom f p 1.62 1.62 0.02 0.2 +abstinent abstinent adj m s 0.11 0 0.1 0 +abstinente abstinent adj f s 0.11 0 0.01 0 +abstinrent abstenir ver 4.52 8.78 0.01 0.07 ind:pas:3p; +abstins abstenir ver 4.52 8.78 0 0.41 ind:pas:1s; +abstint abstenir ver 4.52 8.78 0.2 0.81 ind:pas:3s; +abstraction abstraction nom f s 0.68 2.97 0.66 2.09 +abstractions abstraction nom f p 0.68 2.97 0.03 0.88 +abstraire abstraire ver 0.27 3.18 0.02 0.74 inf; +abstrais abstraire ver 0.27 3.18 0 0.07 ind:pre:1s; +abstrait abstrait adj m s 1.62 11.35 0.61 3.85 +abstraite abstrait adj f s 1.62 11.35 0.69 4.8 +abstraitement abstraitement adv 0 0.34 0 0.34 +abstraites abstraire ver f p 0.27 3.18 0.11 0.2 par:pas; +abstraits abstrait adj m p 1.62 11.35 0.25 1.15 +abstrus abstrus adj m p 0 0.61 0 0.34 +abstruse abstrus adj f s 0 0.61 0 0.14 +abstruses abstrus adj f p 0 0.61 0 0.14 +abstînt abstenir ver 4.52 8.78 0 0.27 sub:imp:3s; +absurde absurde adj s 23.59 30.95 21.56 24.8 +absurdement absurdement adv 0.14 3.72 0.14 3.72 +absurdes absurde adj p 23.59 30.95 2.03 6.15 +absurdistes absurdiste nom p 0 0.07 0 0.07 +absurdité absurdité nom f s 2.34 6.28 1.44 5.54 +absurdités absurdité nom f p 2.34 6.28 0.9 0.74 +abus abus nom m 4.75 8.58 4.75 8.58 +abusa abuser ver 20 14.26 0.02 0.2 ind:pas:3s; +abusai abuser ver 20 14.26 0 0.07 ind:pas:1s; +abusaient abuser ver 20 14.26 0.04 0.27 ind:imp:3p; +abusais abuser ver 20 14.26 0.03 0.27 ind:imp:1s; +abusait abuser ver 20 14.26 0.53 1.82 ind:imp:3s; +abusant abuser ver 20 14.26 0.24 0.81 par:pre; +abuse abuser ver 20 14.26 4.08 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abusent abuser ver 20 14.26 1.02 0.88 ind:pre:3p; +abuser abuser ver 20 14.26 5.87 4.12 inf; +abusera abuser ver 20 14.26 0.04 0 ind:fut:3s; +abuserai abuser ver 20 14.26 0.03 0.07 ind:fut:1s; +abuserais abuser ver 20 14.26 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +abuserait abuser ver 20 14.26 0.02 0.07 cnd:pre:3s; +abuserez abuser ver 20 14.26 0.01 0.07 ind:fut:2p; +abuseriez abuser ver 20 14.26 0.02 0 cnd:pre:2p; +abuses abuser ver 20 14.26 0.5 0.07 ind:pre:2s; +abuseur abuseur nom m s 0.04 0 0.04 0 +abusez abuser ver 20 14.26 1.93 0.34 imp:pre:2p;ind:pre:2p; +abusiez abuser ver 20 14.26 0.02 0 ind:imp:2p; +abusif abusif adj m s 0.85 1.82 0.37 0.61 +abusifs abusif adj m p 0.85 1.82 0.05 0.14 +abusive abusif adj f s 0.85 1.82 0.39 0.74 +abusivement abusivement adv 0.16 1.15 0.16 1.15 +abusives abusif adj f p 0.85 1.82 0.03 0.34 +abusons abuser ver 20 14.26 0.37 0 imp:pre:1p;ind:pre:1p; +abusèrent abuser ver 20 14.26 0 0.07 ind:pas:3p; +abusé abuser ver m s 20 14.26 4.59 2.7 par:pas; +abusée abuser ver f s 20 14.26 0.29 0.27 par:pas; +abusées abuser ver f p 20 14.26 0.03 0.07 par:pas; +abusés abuser ver m p 20 14.26 0.22 0.34 par:pas; +abyme abyme nom m s 0.04 0.07 0.04 0.07 +abyssal abyssal adj m s 0.11 0.74 0.03 0.34 +abyssale abyssal adj f s 0.11 0.74 0.05 0.2 +abyssales abyssal adj f p 0.11 0.74 0.02 0.2 +abysse abysse nom m s 1.07 0.41 0.53 0.07 +abysses abysse nom m p 1.07 0.41 0.54 0.34 +abyssin abyssin nom m s 0.14 0.14 0.14 0.14 +abyssinien abyssinien adj m s 0.1 0 0.1 0 +abyssinienne abyssinien nom f s 0.01 0 0.01 0 +abyssins abyssin adj m p 0 0.2 0 0.07 +abâtardi abâtardir ver m s 0.14 0.41 0 0.2 par:pas; +abâtardie abâtardi adj f s 0.01 0.07 0.01 0.07 +abâtardies abâtardir ver f p 0.14 0.41 0 0.07 par:pas; +abâtardir abâtardir ver 0.14 0.41 0 0.07 inf; +abâtardirai abâtardir ver 0.14 0.41 0 0.07 ind:fut:1s; +abâtardissant abâtardir ver 0.14 0.41 0.14 0 par:pre; +abécédaire abécédaire nom m s 0.18 0.07 0.18 0.07 +abêti abêtir ver m s 0.01 1.28 0 0.47 par:pas; +abêties abêti adj f p 0 0.27 0 0.07 +abêtir abêtir ver 0.01 1.28 0.01 0.54 inf; +abêtis abêtir ver 0.01 1.28 0 0.07 ind:pre:2s; +abêtissait abêtir ver 0.01 1.28 0 0.14 ind:imp:3s; +abêtissement abêtissement nom m s 0 0.54 0 0.54 +abêtit abêtir ver 0.01 1.28 0 0.07 ind:pas:3s; +abîma abîmer ver 15.83 21.69 0.1 0.74 ind:pas:3s; +abîmai abîmer ver 15.83 21.69 0 0.14 ind:pas:1s; +abîmaient abîmer ver 15.83 21.69 0.1 0.2 ind:imp:3p; +abîmait abîmer ver 15.83 21.69 0.01 1.22 ind:imp:3s; +abîmant abîmer ver 15.83 21.69 0.01 0.54 par:pre; +abîme abîme nom m s 6.01 20.61 5.03 14.59 +abîment abîmer ver 15.83 21.69 0.31 0.88 ind:pre:3p; +abîmer abîmer ver 15.83 21.69 5.4 5.95 inf; +abîmera abîmer ver 15.83 21.69 0.04 0.14 ind:fut:3s; +abîmerai abîmer ver 15.83 21.69 0.01 0 ind:fut:1s; +abîmerais abîmer ver 15.83 21.69 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +abîmerait abîmer ver 15.83 21.69 0.08 0.2 cnd:pre:3s; +abîmeras abîmer ver 15.83 21.69 0 0.14 ind:fut:2s; +abîmerez abîmer ver 15.83 21.69 0.01 0 ind:fut:2p; +abîmeront abîmer ver 15.83 21.69 0.02 0.14 ind:fut:3p; +abîmes abîme nom m p 6.01 20.61 0.98 6.01 +abîmez abîmer ver 15.83 21.69 0.3 0.2 imp:pre:2p;ind:pre:2p; +abîmions abîmer ver 15.83 21.69 0 0.14 ind:imp:1p; +abîmons abîmer ver 15.83 21.69 0 0.07 ind:pre:1p; +abîmé abîmer ver m s 15.83 21.69 3.57 4.73 par:pas; +abîmée abîmer ver f s 15.83 21.69 1.73 1.76 par:pas; +abîmées abîmer ver f p 15.83 21.69 0.56 0.74 par:pas; +abîmés abîmer ver m p 15.83 21.69 0.61 1.35 par:pas; +acabit acabit nom m s 0.17 1.62 0.17 1.55 +acabits acabit nom m p 0.17 1.62 0 0.07 +acacia acacia nom m s 0.26 6.35 0.05 3.24 +acacias acacia nom m p 0.26 6.35 0.21 3.11 +acadien acadien nom m s 0.16 0.07 0.14 0 +acadienne acadienne nom f s 0.03 0 0.03 0 +acadiens acadien nom m p 0.16 0.07 0.01 0.07 +académicien académicien nom m s 0.35 1.55 0.14 0.74 +académiciens académicien nom m p 0.35 1.55 0.21 0.81 +académie académie nom f s 10.03 9.46 9.91 8.31 +académies académie nom f p 10.03 9.46 0.12 1.15 +académique académique adj s 1.41 1.15 0.87 0.61 +académiquement académiquement adv 0.01 0.14 0.01 0.14 +académiques académique adj p 1.41 1.15 0.54 0.54 +académisme académisme nom m s 0 0.27 0 0.27 +académisé académiser ver m s 0 0.07 0 0.07 par:pas; +acagnardai acagnarder ver 0 0.74 0 0.07 ind:pas:1s; +acagnardait acagnarder ver 0 0.74 0 0.14 ind:imp:3s; +acagnarder acagnarder ver 0 0.74 0 0.14 inf; +acagnardé acagnarder ver m s 0 0.74 0 0.34 par:pas; +acagnardée acagnarder ver f s 0 0.74 0 0.07 par:pas; +acajou acajou nom m s 0.52 5.95 0.52 5.81 +acajous acajou nom m p 0.52 5.95 0 0.14 +acanthe acanthe nom f s 0.04 0.61 0.04 0.27 +acanthes acanthe nom f p 0.04 0.61 0 0.34 +acariens acarien nom m p 0.07 0.07 0.07 0.07 +acariâtre acariâtre adj s 0.14 1.55 0.13 1.22 +acariâtres acariâtre adj f p 0.14 1.55 0.01 0.34 +accabla accabler ver 5.55 21.28 0.14 0.95 ind:pas:3s; +accablai accabler ver 5.55 21.28 0 0.07 ind:pas:1s; +accablaient accabler ver 5.55 21.28 0.03 1.42 ind:imp:3p; +accablais accabler ver 5.55 21.28 0 0.27 ind:imp:1s; +accablait accabler ver 5.55 21.28 0.22 3.11 ind:imp:3s; +accablant accablant adj m s 1.41 5.41 0.37 1.42 +accablante accablant adj f s 1.41 5.41 0.71 2.43 +accablantes accablant adj f p 1.41 5.41 0.29 0.81 +accablants accablant adj m p 1.41 5.41 0.04 0.74 +accable accabler ver 5.55 21.28 2.01 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accablement accablement nom m s 0.23 3.72 0.21 3.58 +accablements accablement nom m p 0.23 3.72 0.01 0.14 +accablent accabler ver 5.55 21.28 0.28 0.74 ind:pre:3p; +accabler accabler ver 5.55 21.28 0.65 3.58 inf; +accableraient accabler ver 5.55 21.28 0 0.14 cnd:pre:3p; +accablez accabler ver 5.55 21.28 0.17 0.14 imp:pre:2p;ind:pre:2p; +accablions accabler ver 5.55 21.28 0 0.07 ind:imp:1p; +accablât accabler ver 5.55 21.28 0 0.07 sub:imp:3s; +accablèrent accabler ver 5.55 21.28 0 0.2 ind:pas:3p; +accablé accabler ver m s 5.55 21.28 0.92 4.05 par:pas; +accablée accabler ver f s 5.55 21.28 0.6 2.23 par:pas; +accablées accabler ver f p 5.55 21.28 0.02 0.34 par:pas; +accablés accabler ver m p 5.55 21.28 0.47 1.22 par:pas; +accalmie accalmie nom f s 0.5 3.72 0.46 2.97 +accalmies accalmie nom f p 0.5 3.72 0.04 0.74 +accalmit accalmir ver 0 0.07 0 0.07 ind:pas:3s; +accapara accaparer ver 0.97 3.99 0.01 0.07 ind:pas:3s; +accaparaient accaparer ver 0.97 3.99 0 0.34 ind:imp:3p; +accaparait accaparer ver 0.97 3.99 0.01 0.74 ind:imp:3s; +accaparant accaparer ver 0.97 3.99 0.03 0.2 par:pre; +accaparante accaparant adj f s 0.02 0.07 0 0.07 +accapare accaparer ver 0.97 3.99 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accaparer accaparer ver 0.97 3.99 0.2 0.68 inf; +accaparerait accaparer ver 0.97 3.99 0 0.07 cnd:pre:3s; +accapareur accapareur adj m s 0.02 0 0.02 0 +accaparez accaparer ver 0.97 3.99 0.02 0 ind:pre:2p; +accaparé accaparer ver m s 0.97 3.99 0.3 0.68 par:pas; +accaparée accaparer ver f s 0.97 3.99 0.06 0.34 par:pas; +accaparées accaparer ver f p 0.97 3.99 0 0.07 par:pas; +accaparés accaparer ver m p 0.97 3.99 0 0.2 par:pas; +accastillage accastillage nom m s 0.04 0.2 0.04 0.14 +accastillages accastillage nom m p 0.04 0.2 0 0.07 +accelerando accelerando adv 0 0.14 0 0.14 +accent accent nom m s 14.56 45.54 12.98 38.31 +accenteur accenteur nom m s 0.01 0 0.01 0 +accents accent nom m p 14.56 45.54 1.58 7.23 +accentua accentuer ver 1.28 16.15 0 1.96 ind:pas:3s; +accentuai accentuer ver 1.28 16.15 0 0.07 ind:pas:1s; +accentuaient accentuer ver 1.28 16.15 0 1.22 ind:imp:3p; +accentuais accentuer ver 1.28 16.15 0 0.07 ind:imp:1s; +accentuait accentuer ver 1.28 16.15 0.01 4.05 ind:imp:3s; +accentuant accentuer ver 1.28 16.15 0.03 1.76 par:pre; +accentuation accentuation nom f s 0.06 0.14 0.06 0.14 +accentue accentuer ver 1.28 16.15 0.11 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accentuent accentuer ver 1.28 16.15 0.07 0.54 ind:pre:3p; +accentuer accentuer ver 1.28 16.15 0.67 2.03 inf; +accentuerait accentuer ver 1.28 16.15 0.01 0.07 cnd:pre:3s; +accentuez accentuer ver 1.28 16.15 0.12 0 imp:pre:2p;ind:pre:2p; +accentuât accentuer ver 1.28 16.15 0 0.07 sub:imp:3s; +accentuèrent accentuer ver 1.28 16.15 0 0.2 ind:pas:3p; +accentué accentuer ver m s 1.28 16.15 0.21 0.81 par:pas; +accentuée accentuer ver f s 1.28 16.15 0.03 0.95 par:pas; +accentuées accentuer ver f p 1.28 16.15 0.02 0.27 par:pas; +accentués accentuer ver m p 1.28 16.15 0.01 0.34 par:pas; +accepta accepter ver 165.84 144.66 0.82 10.54 ind:pas:3s; +acceptable acceptable adj s 3.96 4.39 3.27 3.51 +acceptables acceptable adj p 3.96 4.39 0.7 0.88 +acceptai accepter ver 165.84 144.66 0.03 3.38 ind:pas:1s; +acceptaient accepter ver 165.84 144.66 0.34 2.91 ind:imp:3p; +acceptais accepter ver 165.84 144.66 0.94 3.99 ind:imp:1s;ind:imp:2s; +acceptait accepter ver 165.84 144.66 1.48 10 ind:imp:3s; +acceptant accepter ver 165.84 144.66 1.35 2.97 par:pre; +acceptassent accepter ver 165.84 144.66 0 0.07 sub:imp:3p; +acceptasses accepter ver 165.84 144.66 0 0.07 sub:imp:2s; +acceptation acceptation nom f s 1.24 4.39 1.24 4.19 +acceptations acceptation nom f p 1.24 4.39 0 0.2 +accepte accepter ver 165.84 144.66 38.41 18.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +acceptent accepter ver 165.84 144.66 4.45 3.24 ind:pre:3p; +accepter accepter ver 165.84 144.66 43.39 36.62 inf; +acceptera accepter ver 165.84 144.66 3.98 1.96 ind:fut:3s; +accepterai accepter ver 165.84 144.66 2.73 1.22 ind:fut:1s; +accepteraient accepter ver 165.84 144.66 0.57 0.95 cnd:pre:3p; +accepterais accepter ver 165.84 144.66 2.25 1.96 cnd:pre:1s;cnd:pre:2s; +accepterait accepter ver 165.84 144.66 1.54 4.05 cnd:pre:3s; +accepteras accepter ver 165.84 144.66 0.65 0.27 ind:fut:2s; +accepterez accepter ver 165.84 144.66 0.94 0.2 ind:fut:2p; +accepteriez accepter ver 165.84 144.66 2.01 0.54 cnd:pre:2p; +accepterions accepter ver 165.84 144.66 0.03 0.34 cnd:pre:1p; +accepterons accepter ver 165.84 144.66 0.31 0.14 ind:fut:1p; +accepteront accepter ver 165.84 144.66 1.34 0.2 ind:fut:3p; +acceptes accepter ver 165.84 144.66 6.79 1.28 ind:pre:2s; +acceptez accepter ver 165.84 144.66 12.53 2.16 imp:pre:2p;ind:pre:2p; +acceptiez accepter ver 165.84 144.66 1 0.54 ind:imp:2p; +acception acception nom f s 0.15 0.47 0.15 0.27 +acceptions accepter ver 165.84 144.66 0.21 1.35 ind:imp:1p; +acceptons accepter ver 165.84 144.66 2.72 0.95 imp:pre:1p;ind:pre:1p; +acceptâmes accepter ver 165.84 144.66 0 0.14 ind:pas:1p; +acceptât accepter ver 165.84 144.66 0.01 1.42 sub:imp:3s; +acceptèrent accepter ver 165.84 144.66 0.04 0.74 ind:pas:3p; +accepté accepter ver m s 165.84 144.66 28.46 27.16 par:pas; +acceptée accepter ver f s 165.84 144.66 4.3 3.24 par:pas; +acceptées accepter ver f p 165.84 144.66 0.93 0.68 par:pas; +acceptés accepter ver m p 165.84 144.66 1.29 0.74 par:pas; +accesseurs accesseur nom m p 0 0.07 0 0.07 +accessibilité accessibilité nom f s 0.03 0 0.03 0 +accessible accessible adj s 2.06 5.74 1.49 4.12 +accessibles accessible adj p 2.06 5.74 0.57 1.62 +accession accession nom f s 0.16 1.22 0.16 1.22 +accessit accessit nom m s 0.02 0.07 0.02 0.07 +accessoire accessoire nom m s 3.87 7.3 1.11 1.08 +accessoirement accessoirement adv 0.17 0.88 0.17 0.88 +accessoires accessoire nom m p 3.87 7.3 2.76 6.22 +accessoirise accessoiriser ver 0.07 0 0.01 0 ind:pre:1s; +accessoiriser accessoiriser ver 0.07 0 0.07 0 inf; +accessoiriste accessoiriste nom s 0.62 0.14 0.51 0 +accessoiristes accessoiriste nom p 0.62 0.14 0.11 0.14 +accident accident nom m s 108.21 44.8 100.11 36.62 +accidente accidenter ver 0.19 0.27 0.01 0.07 ind:pre:3s; +accidentel accidentel adj m s 2.78 3.45 1.09 1.42 +accidentelle accidentel adj f s 2.78 3.45 1.44 1.28 +accidentellement accidentellement adv 3.39 0.81 3.39 0.81 +accidentelles accidentel adj f p 2.78 3.45 0.17 0.34 +accidentels accidentel adj m p 2.78 3.45 0.08 0.41 +accidenter accidenter ver 0.19 0.27 0.02 0 inf; +accidents accident nom m p 108.21 44.8 8.1 8.18 +accidenté accidenté nom m s 0.57 0.61 0.28 0.34 +accidentée accidenté adj f s 0.3 1.42 0.08 0.34 +accidentées accidenté adj f p 0.3 1.42 0.02 0.2 +accidentés accidenté nom m p 0.57 0.61 0.28 0 +acclama acclamer ver 1.75 5.81 0 0.34 ind:pas:3s; +acclamaient acclamer ver 1.75 5.81 0.09 0.68 ind:imp:3p; +acclamait acclamer ver 1.75 5.81 0.04 0.54 ind:imp:3s; +acclamant acclamer ver 1.75 5.81 0 0.27 par:pre; +acclamation acclamation nom f s 2.84 4.66 0.2 0.27 +acclamations acclamation nom f p 2.84 4.66 2.65 4.39 +acclame acclamer ver 1.75 5.81 0.19 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acclament acclamer ver 1.75 5.81 0.18 0.14 ind:pre:3p; +acclamer acclamer ver 1.75 5.81 0.2 1.01 inf; +acclamera acclamer ver 1.75 5.81 0.04 0 ind:fut:3s; +acclamerait acclamer ver 1.75 5.81 0.01 0.07 cnd:pre:3s; +acclameront acclamer ver 1.75 5.81 0.03 0 ind:fut:3p; +acclamez acclamer ver 1.75 5.81 0.25 0 imp:pre:2p; +acclamiez acclamer ver 1.75 5.81 0.01 0 ind:imp:2p; +acclamons acclamer ver 1.75 5.81 0.05 0.07 imp:pre:1p;ind:pre:1p; +acclamé acclamer ver m s 1.75 5.81 0.44 1.28 par:pas; +acclamée acclamer ver f s 1.75 5.81 0.17 0.07 par:pas; +acclamées acclamer ver f p 1.75 5.81 0.02 0.07 par:pas; +acclamés acclamer ver m p 1.75 5.81 0.04 0.47 par:pas; +acclimata acclimater ver 0.52 1.96 0 0.07 ind:pas:3s; +acclimatai acclimater ver 0.52 1.96 0 0.07 ind:pas:1s; +acclimatation acclimatation nom f s 0.14 0.81 0.14 0.81 +acclimate acclimater ver 0.52 1.96 0.01 0.2 ind:pre:1s;ind:pre:3s; +acclimatement acclimatement nom m s 0 0.14 0 0.14 +acclimatent acclimater ver 0.52 1.96 0.01 0 ind:pre:3p; +acclimater acclimater ver 0.52 1.96 0.45 1.08 inf; +acclimaterait acclimater ver 0.52 1.96 0 0.07 cnd:pre:3s; +acclimates acclimater ver 0.52 1.96 0 0.07 ind:pre:2s; +acclimatez acclimater ver 0.52 1.96 0.02 0 imp:pre:2p;ind:pre:2p; +acclimaté acclimater ver m s 0.52 1.96 0.02 0.27 par:pas; +acclimatés acclimater ver m p 0.52 1.96 0.01 0.14 par:pas; +accointance accointance nom f s 0.14 0.88 0.14 0.2 +accointances accointance nom f p 0.14 0.88 0 0.68 +accointé accointer ver m s 0 0.14 0 0.07 par:pas; +accointés accointer ver m p 0 0.14 0 0.07 par:pas; +accola accoler ver 0.32 2.7 0 0.07 ind:pas:3s; +accolade accolade nom f s 0.96 2.23 0.84 1.69 +accolades accolade nom f p 0.96 2.23 0.12 0.54 +accolait accoler ver 0.32 2.7 0 0.14 ind:imp:3s; +accolant accoler ver 0.32 2.7 0.14 0 par:pre; +accole accoler ver 0.32 2.7 0 0.14 ind:pre:3s; +accolement accolement nom m s 0 0.07 0 0.07 +accolent accoler ver 0.32 2.7 0 0.07 ind:pre:3p; +accoler accoler ver 0.32 2.7 0 0.27 inf; +accolerais accoler ver 0.32 2.7 0.01 0 cnd:pre:1s; +accolé accoler ver m s 0.32 2.7 0.03 0.74 par:pas; +accolée accoler ver f s 0.32 2.7 0.14 0.41 par:pas; +accolées accoler ver f p 0.32 2.7 0 0.41 par:pas; +accolés accoler ver m p 0.32 2.7 0 0.47 par:pas; +accommoda accommoder ver 2.25 14.19 0 0.68 ind:pas:3s; +accommodai accommoder ver 2.25 14.19 0 0.07 ind:pas:1s; +accommodaient accommoder ver 2.25 14.19 0 1.15 ind:imp:3p; +accommodais accommoder ver 2.25 14.19 0.01 0.27 ind:imp:1s; +accommodait accommoder ver 2.25 14.19 0.01 2.23 ind:imp:3s; +accommodant accommodant adj m s 0.41 0.47 0.22 0.14 +accommodante accommodant adj f s 0.41 0.47 0.14 0.2 +accommodantes accommodant adj f p 0.41 0.47 0 0.07 +accommodants accommodant adj m p 0.41 0.47 0.04 0.07 +accommodation accommodation nom f s 0.04 0.41 0.04 0.41 +accommodatrices accommodateur adj f p 0 0.07 0 0.07 +accommode accommoder ver 2.25 14.19 0.78 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accommodement accommodement nom m s 0.11 1.01 0.11 0.61 +accommodements accommodement nom m p 0.11 1.01 0 0.41 +accommodent accommoder ver 2.25 14.19 0.13 0.34 ind:pre:3p; +accommoder accommoder ver 2.25 14.19 0.69 4.26 inf; +accommodera accommoder ver 2.25 14.19 0.01 0.07 ind:fut:3s; +accommoderai accommoder ver 2.25 14.19 0.06 0.14 ind:fut:1s; +accommoderaient accommoder ver 2.25 14.19 0 0.14 cnd:pre:3p; +accommoderais accommoder ver 2.25 14.19 0.16 0.2 cnd:pre:1s; +accommoderait accommoder ver 2.25 14.19 0.11 0.27 cnd:pre:3s; +accommoderez accommoder ver 2.25 14.19 0.02 0 ind:fut:2p; +accommoderions accommoder ver 2.25 14.19 0 0.07 cnd:pre:1p; +accommoderont accommoder ver 2.25 14.19 0.01 0.2 ind:fut:3p; +accommodions accommoder ver 2.25 14.19 0 0.07 ind:imp:1p; +accommodons accommoder ver 2.25 14.19 0 0.07 ind:pre:1p; +accommodât accommoder ver 2.25 14.19 0 0.14 sub:imp:3s; +accommodèrent accommoder ver 2.25 14.19 0.1 0.07 ind:pas:3p; +accommodé accommoder ver m s 2.25 14.19 0.13 0.54 par:pas; +accommodée accommoder ver f s 2.25 14.19 0.03 0.27 par:pas; +accommodés accommoder ver m p 2.25 14.19 0 0.41 par:pas; +accompagna accompagner ver 90.56 124.46 0.15 9.46 ind:pas:3s; +accompagnai accompagner ver 90.56 124.46 0.03 1.28 ind:pas:1s; +accompagnaient accompagner ver 90.56 124.46 0.43 4.73 ind:imp:3p; +accompagnais accompagner ver 90.56 124.46 0.4 1.76 ind:imp:1s;ind:imp:2s; +accompagnait accompagner ver 90.56 124.46 2.04 15.68 ind:imp:3s; +accompagnant accompagner ver 90.56 124.46 0.61 5 par:pre; +accompagnateur accompagnateur nom m s 0.8 1.01 0.4 0.27 +accompagnateurs accompagnateur nom m p 0.8 1.01 0.29 0.68 +accompagnatrice accompagnateur nom f s 0.8 1.01 0.09 0.07 +accompagnatrices accompagnateur nom f p 0.8 1.01 0.02 0 +accompagne accompagner ver 90.56 124.46 33.28 15.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +accompagnement accompagnement nom m s 0.65 2.57 0.61 2.5 +accompagnements accompagnement nom m p 0.65 2.57 0.03 0.07 +accompagnent accompagner ver 90.56 124.46 2.08 4.05 ind:pre:3p; +accompagner accompagner ver 90.56 124.46 24.87 22.23 inf;; +accompagnera accompagner ver 90.56 124.46 1.81 0.61 ind:fut:3s; +accompagnerai accompagner ver 90.56 124.46 1.01 0.61 ind:fut:1s; +accompagneraient accompagner ver 90.56 124.46 0 0.27 cnd:pre:3p; +accompagnerais accompagner ver 90.56 124.46 0.16 0.27 cnd:pre:1s;cnd:pre:2s; +accompagnerait accompagner ver 90.56 124.46 0.09 1.22 cnd:pre:3s; +accompagneras accompagner ver 90.56 124.46 0.52 0.27 ind:fut:2s; +accompagnerez accompagner ver 90.56 124.46 0.65 0.27 ind:fut:2p; +accompagneriez accompagner ver 90.56 124.46 0.12 0 cnd:pre:2p; +accompagnerons accompagner ver 90.56 124.46 0.25 0 ind:fut:1p; +accompagneront accompagner ver 90.56 124.46 0.52 0.14 ind:fut:3p; +accompagnes accompagner ver 90.56 124.46 5.48 0.68 ind:pre:2s;sub:pre:2s; +accompagnez accompagner ver 90.56 124.46 4.41 0.95 imp:pre:2p;ind:pre:2p; +accompagniez accompagner ver 90.56 124.46 0.45 0.07 ind:imp:2p;sub:pre:2p; +accompagnions accompagner ver 90.56 124.46 0.02 0 ind:imp:1p; +accompagnons accompagner ver 90.56 124.46 0.73 0.27 imp:pre:1p;ind:pre:1p; +accompagnâmes accompagner ver 90.56 124.46 0 0.14 ind:pas:1p; +accompagnât accompagner ver 90.56 124.46 0 0.54 sub:imp:3s; +accompagnèrent accompagner ver 90.56 124.46 0 0.95 ind:pas:3p; +accompagné accompagner ver m s 90.56 124.46 5.67 21.49 par:pas; +accompagnée accompagner ver f s 90.56 124.46 3.67 9.93 par:pas; +accompagnées accompagner ver f p 90.56 124.46 0.1 2.03 par:pas; +accompagnés accompagner ver m p 90.56 124.46 1 4.46 par:pas; +accompli accomplir ver m s 25 55.2 5.98 9.59 par:pas; +accomplie accompli adj f s 4.79 10.54 3 3.04 +accomplies accomplir ver f p 25 55.2 0.23 1.08 par:pas; +accomplir accomplir ver 25 55.2 9.31 22.23 inf; +accomplira accomplir ver 25 55.2 0.55 0.61 ind:fut:3s; +accomplirai accomplir ver 25 55.2 0.33 0.14 ind:fut:1s; +accompliraient accomplir ver 25 55.2 0.01 0.2 cnd:pre:3p; +accomplirais accomplir ver 25 55.2 0 0.14 cnd:pre:1s; +accomplirait accomplir ver 25 55.2 0.12 0.47 cnd:pre:3s; +accompliras accomplir ver 25 55.2 0.05 0 ind:fut:2s; +accomplirent accomplir ver 25 55.2 0.01 0.27 ind:pas:3p; +accomplirez accomplir ver 25 55.2 0.09 0.14 ind:fut:2p; +accomplirons accomplir ver 25 55.2 0.17 0.14 ind:fut:1p; +accompliront accomplir ver 25 55.2 0.04 0.07 ind:fut:3p; +accomplis accomplir ver m p 25 55.2 1.51 2.7 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +accomplissaient accomplir ver 25 55.2 0 0.68 ind:imp:3p; +accomplissais accomplir ver 25 55.2 0.02 0.74 ind:imp:1s; +accomplissait accomplir ver 25 55.2 0.05 3.78 ind:imp:3s; +accomplissant accomplir ver 25 55.2 0.17 2.36 par:pre; +accomplisse accomplir ver 25 55.2 1.04 0.95 sub:pre:1s;sub:pre:3s; +accomplissement accomplissement nom m s 1.5 4.46 1.27 4.26 +accomplissements accomplissement nom m p 1.5 4.46 0.22 0.2 +accomplissent accomplir ver 25 55.2 1.12 0.95 ind:pre:3p; +accomplissez accomplir ver 25 55.2 0.54 0 imp:pre:2p;ind:pre:2p; +accomplissiez accomplir ver 25 55.2 0.02 0 ind:imp:2p; +accomplissions accomplir ver 25 55.2 0.16 0.34 ind:imp:1p; +accomplissons accomplir ver 25 55.2 0.28 0.14 imp:pre:1p;ind:pre:1p; +accomplit accomplir ver 25 55.2 2.14 4.73 ind:pre:3s;ind:pas:3s; +accomplît accomplir ver 25 55.2 0 0.2 sub:imp:3s; +accord accord nom m s 766.2 136.15 761.77 124.66 +accorda accorder ver 52.27 67.84 0.38 2.97 ind:pas:3s; +accordai accorder ver 52.27 67.84 0 0.54 ind:pas:1s; +accordaient accorder ver 52.27 67.84 0.17 2.43 ind:imp:3p; +accordailles accordailles nom f p 0 0.07 0 0.07 +accordais accorder ver 52.27 67.84 0.44 1.55 ind:imp:1s;ind:imp:2s; +accordait accorder ver 52.27 67.84 0.7 9.66 ind:imp:3s; +accordant accorder ver 52.27 67.84 0.24 1.76 par:pre; +accordas accorder ver 52.27 67.84 0.01 0.07 ind:pas:2s; +accordassent accorder ver 52.27 67.84 0 0.14 sub:imp:3p; +accorde accorder ver 52.27 67.84 17.04 11.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +accordement accordement nom m s 0 0.07 0 0.07 +accordent accorder ver 52.27 67.84 1.31 2.5 ind:pre:3p; +accorder accorder ver 52.27 67.84 10.59 14.73 inf; +accordera accorder ver 52.27 67.84 0.98 0.14 ind:fut:3s; +accorderai accorder ver 52.27 67.84 0.46 0 ind:fut:1s; +accorderaient accorder ver 52.27 67.84 0 0.2 cnd:pre:3p; +accorderais accorder ver 52.27 67.84 0.24 0.14 cnd:pre:1s;cnd:pre:2s; +accorderait accorder ver 52.27 67.84 0.08 0.74 cnd:pre:3s; +accorderas accorder ver 52.27 67.84 0.06 0.07 ind:fut:2s; +accorderez accorder ver 52.27 67.84 0.52 0.2 ind:fut:2p; +accorderiez accorder ver 52.27 67.84 0.14 0.07 cnd:pre:2p; +accorderons accorder ver 52.27 67.84 0.14 0 ind:fut:1p; +accorderont accorder ver 52.27 67.84 0.14 0.2 ind:fut:3p; +accordes accorder ver 52.27 67.84 1.23 0.07 ind:pre:2s; +accordeur accordeur nom m s 0.25 0.61 0.25 0.61 +accordez accorder ver 52.27 67.84 6 0.81 imp:pre:2p;ind:pre:2p; +accordiez accorder ver 52.27 67.84 0.3 0 ind:imp:2p;sub:pre:2p; +accordions accorder ver 52.27 67.84 0.05 0.2 ind:imp:1p; +accordo accordo nom m s 0.01 0.07 0.01 0.07 +accordons accorder ver 52.27 67.84 0.75 0.47 imp:pre:1p;ind:pre:1p; +accords accord nom m p 766.2 136.15 4.42 11.49 +accordât accorder ver 52.27 67.84 0 0.88 sub:imp:3s; +accordèrent accorder ver 52.27 67.84 0.01 0.54 ind:pas:3p; +accordé accorder ver m s 52.27 67.84 6.87 7.43 par:pas; +accordée accorder ver f s 52.27 67.84 2.23 4.93 par:pas; +accordées accorder ver f p 52.27 67.84 0.36 1.22 par:pas; +accordéon accordéon nom m s 3.24 5.47 3.02 4.8 +accordéoniste accordéoniste nom s 0.26 1.69 0.26 1.42 +accordéonistes accordéoniste nom p 0.26 1.69 0 0.27 +accordéons accordéon nom m p 3.24 5.47 0.22 0.68 +accordés accorder ver m p 52.27 67.84 0.85 1.42 par:pas; +accore accore adj f s 0 0.14 0 0.14 +accores accore nom m p 0 0.07 0 0.07 +accort accort adj m s 0.03 0.68 0.01 0.2 +accorte accort adj f s 0.03 0.68 0.02 0.27 +accortes accort adj f p 0.03 0.68 0 0.14 +accorts accort adj m p 0.03 0.68 0 0.07 +accosta accoster ver 1.86 4.19 0.11 0.54 ind:pas:3s; +accostage accostage nom m s 0.47 0.88 0.47 0.88 +accostaient accoster ver 1.86 4.19 0 0.14 ind:imp:3p; +accostais accoster ver 1.86 4.19 0 0.07 ind:imp:1s; +accostait accoster ver 1.86 4.19 0.11 0.47 ind:imp:3s; +accostant accoster ver 1.86 4.19 0.01 0.27 par:pre; +accoste accoster ver 1.86 4.19 0.27 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accostent accoster ver 1.86 4.19 0.13 0.27 ind:pre:3p; +accoster accoster ver 1.86 4.19 0.67 1.35 inf; +accosterez accoster ver 1.86 4.19 0.03 0 ind:fut:2p; +accosterons accoster ver 1.86 4.19 0.01 0 ind:fut:1p; +accostez accoster ver 1.86 4.19 0.14 0 imp:pre:2p;ind:pre:2p; +accostiez accoster ver 1.86 4.19 0.01 0.07 ind:imp:2p; +accostons accoster ver 1.86 4.19 0.01 0 imp:pre:1p; +accosté accoster ver m s 1.86 4.19 0.23 0.27 par:pas; +accostée accoster ver f s 1.86 4.19 0.15 0.14 par:pas; +accostées accoster ver f p 1.86 4.19 0 0.07 par:pas; +accota accoter ver 0 2.43 0 0.27 ind:pas:3s; +accotaient accoter ver 0 2.43 0 0.14 ind:imp:3p; +accotait accoter ver 0 2.43 0 0.14 ind:imp:3s; +accotant accoter ver 0 2.43 0 0.34 par:pre; +accote accoter ver 0 2.43 0 0.14 ind:pre:3s; +accotement accotement nom m s 0.01 1.42 0.01 1.08 +accotements accotement nom m p 0.01 1.42 0 0.34 +accotent accoter ver 0 2.43 0 0.07 ind:pre:3p; +accoter accoter ver 0 2.43 0 0.07 inf; +accotoirs accotoir nom m p 0 0.07 0 0.07 +accotons accoter ver 0 2.43 0 0.07 ind:pre:1p; +accotèrent accoter ver 0 2.43 0 0.07 ind:pas:3p; +accoté accoter ver m s 0 2.43 0 0.54 par:pas; +accotée accoter ver f s 0 2.43 0 0.27 par:pas; +accotées accoter ver f p 0 2.43 0 0.14 par:pas; +accotés accoter ver m p 0 2.43 0 0.2 par:pas; +accoucha accoucher ver 16.49 7.43 0.14 0.54 ind:pas:3s; +accouchaient accoucher ver 16.49 7.43 0.03 0.2 ind:imp:3p; +accouchais accoucher ver 16.49 7.43 0.05 0 ind:imp:1s; +accouchait accoucher ver 16.49 7.43 0.17 0.41 ind:imp:3s; +accouchant accoucher ver 16.49 7.43 0.58 0 par:pre; +accouche accoucher ver 16.49 7.43 4.54 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accouchement accouchement nom m s 5.96 3.92 5.47 3.24 +accouchements accouchement nom m p 5.96 3.92 0.48 0.68 +accouchent accoucher ver 16.49 7.43 0.08 0.14 ind:pre:3p; +accoucher accoucher ver 16.49 7.43 6.56 3.51 inf; +accouchera accoucher ver 16.49 7.43 0.04 0 ind:fut:3s; +accoucherait accoucher ver 16.49 7.43 0.16 0.07 cnd:pre:3s; +accoucheras accoucher ver 16.49 7.43 0.14 0 ind:fut:2s; +accouches accoucher ver 16.49 7.43 0.46 0.2 ind:pre:2s; +accoucheur accoucheur nom m s 0.19 0.81 0.06 0.47 +accoucheurs accoucheur nom m p 0.19 0.81 0 0.14 +accoucheuse accoucheur nom f s 0.19 0.81 0.13 0.2 +accouchez accoucher ver 16.49 7.43 0.29 0 imp:pre:2p;ind:pre:2p; +accouché accoucher ver m s 16.49 7.43 3.08 1.08 par:pas; +accouchée accoucher ver f s 16.49 7.43 0.16 0 par:pas; +accouchées accouchée nom f p 0.39 1.15 0.37 0.34 +accouchés accoucher ver m p 16.49 7.43 0.01 0.07 par:pas; +accouda accouder ver 0.34 17.7 0 2.97 ind:pas:3s; +accoudai accouder ver 0.34 17.7 0 0.47 ind:pas:1s; +accoudaient accouder ver 0.34 17.7 0 0.27 ind:imp:3p; +accoudais accouder ver 0.34 17.7 0 0.2 ind:imp:1s; +accoudait accouder ver 0.34 17.7 0 0.61 ind:imp:3s; +accoudant accouder ver 0.34 17.7 0 0.95 par:pre; +accoude accouder ver 0.34 17.7 0.02 1.22 ind:pre:3s; +accouder accouder ver 0.34 17.7 0.01 1.42 inf; +accoudions accouder ver 0.34 17.7 0 0.07 ind:imp:1p; +accoudoir accoudoir nom m s 0.46 5.2 0.4 2.23 +accoudoirs accoudoir nom m p 0.46 5.2 0.06 2.97 +accoudons accouder ver 0.34 17.7 0 0.07 ind:pre:1p; +accoudèrent accouder ver 0.34 17.7 0 0.27 ind:pas:3p; +accoudé accouder ver m s 0.34 17.7 0.25 5 par:pas; +accoudée accouder ver f s 0.34 17.7 0.03 2.5 par:pas; +accoudées accouder ver f p 0.34 17.7 0 0.14 par:pas; +accoudés accouder ver m p 0.34 17.7 0.03 1.55 par:pas; +accoupla accoupler ver 2.13 3.24 0.01 0.07 ind:pas:3s; +accouplaient accoupler ver 2.13 3.24 0.01 0.27 ind:imp:3p; +accouplais accoupler ver 2.13 3.24 0 0.07 ind:imp:1s; +accouplait accoupler ver 2.13 3.24 0.01 0.2 ind:imp:3s; +accouplant accoupler ver 2.13 3.24 0.06 0.07 par:pre; +accouple accoupler ver 2.13 3.24 0.34 0.07 ind:pre:1s;ind:pre:3s; +accouplement accouplement nom m s 0.78 2.5 0.72 1.69 +accouplements accouplement nom m p 0.78 2.5 0.05 0.81 +accouplent accoupler ver 2.13 3.24 0.49 0.34 ind:pre:3p; +accoupler accoupler ver 2.13 3.24 0.83 0.74 ind:pre:2p;inf; +accouplera accoupler ver 2.13 3.24 0.05 0 ind:fut:3s; +accouplerait accoupler ver 2.13 3.24 0 0.07 cnd:pre:3s; +accoupleront accoupler ver 2.13 3.24 0.03 0 ind:fut:3p; +accouplèrent accoupler ver 2.13 3.24 0 0.07 ind:pas:3p; +accouplé accoupler ver m s 2.13 3.24 0.06 0.27 par:pas; +accouplée accoupler ver f s 2.13 3.24 0.01 0.07 par:pas; +accouplées accoupler ver f p 2.13 3.24 0.11 0.2 par:pas; +accouplés accoupler ver m p 2.13 3.24 0.12 0.74 par:pas; +accouraient accourir ver 5.17 19.05 0.04 1.49 ind:imp:3p; +accourais accourir ver 5.17 19.05 0.01 0.14 ind:imp:1s; +accourait accourir ver 5.17 19.05 0.16 2.43 ind:imp:3s; +accourant accourir ver 5.17 19.05 0.02 0.34 par:pre; +accourcissant accourcir ver 0 0.07 0 0.07 par:pre; +accoure accourir ver 5.17 19.05 0.15 0.14 sub:pre:1s;sub:pre:3s; +accourent accourir ver 5.17 19.05 0.32 0.81 ind:pre:3p; +accoures accourir ver 5.17 19.05 0.01 0 sub:pre:2s; +accourez accourir ver 5.17 19.05 0.37 0.14 imp:pre:2p;ind:pre:2p; +accouriez accourir ver 5.17 19.05 0.01 0 ind:imp:2p; +accourir accourir ver 5.17 19.05 0.57 2.84 inf; +accourons accourir ver 5.17 19.05 0.29 0.07 ind:pre:1p; +accourra accourir ver 5.17 19.05 0.05 0.07 ind:fut:3s; +accourrai accourir ver 5.17 19.05 0.03 0.07 ind:fut:1s; +accourraient accourir ver 5.17 19.05 0 0.14 cnd:pre:3p; +accourrais accourir ver 5.17 19.05 0.02 0 cnd:pre:1s; +accourrait accourir ver 5.17 19.05 0.04 0.2 cnd:pre:3s; +accourront accourir ver 5.17 19.05 0.04 0.07 ind:fut:3p; +accours accourir ver 5.17 19.05 0.7 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +accourt accourir ver 5.17 19.05 0.91 2.57 ind:pre:3s; +accouru accourir ver m s 5.17 19.05 0.6 1.82 par:pas; +accourue accourir ver f s 5.17 19.05 0.01 0.47 par:pas; +accourues accourir ver f p 5.17 19.05 0.14 0.41 par:pas; +accoururent accourir ver 5.17 19.05 0.21 0.74 ind:pas:3p; +accourus accourir ver m p 5.17 19.05 0.34 1.69 ind:pas:1s;par:pas; +accourussent accourir ver 5.17 19.05 0 0.07 sub:imp:3p; +accourut accourir ver 5.17 19.05 0.14 1.96 ind:pas:3s; +accourût accourir ver 5.17 19.05 0 0.07 sub:imp:3s; +accoutre accoutrer ver 0.06 0.54 0 0.07 ind:pre:3s; +accoutrement accoutrement nom m s 1.29 2.7 1.19 2.09 +accoutrements accoutrement nom m p 1.29 2.7 0.11 0.61 +accoutré accoutrer ver m s 0.06 0.54 0.04 0.27 par:pas; +accoutrée accoutré adj f s 0.02 0.41 0 0.2 +accoutrés accoutrer ver m p 0.06 0.54 0.02 0.14 par:pas; +accoutuma accoutumer ver 0.89 9.12 0 0.07 ind:pas:3s; +accoutumai accoutumer ver 0.89 9.12 0 0.07 ind:pas:1s; +accoutumaient accoutumer ver 0.89 9.12 0 0.2 ind:imp:3p; +accoutumais accoutumer ver 0.89 9.12 0 0.07 ind:imp:1s; +accoutumait accoutumer ver 0.89 9.12 0 0.2 ind:imp:3s; +accoutumance accoutumance nom f s 0.3 1.28 0.2 1.28 +accoutumances accoutumance nom f p 0.3 1.28 0.1 0 +accoutumant accoutumer ver 0.89 9.12 0 0.14 par:pre; +accoutume accoutumer ver 0.89 9.12 0.03 0.54 ind:pre:1s;ind:pre:3s; +accoutument accoutumer ver 0.89 9.12 0 0.2 ind:pre:3p; +accoutumer accoutumer ver 0.89 9.12 0.33 1.08 inf; +accoutumerait accoutumer ver 0.89 9.12 0 0.07 cnd:pre:3s; +accoutumé accoutumer ver m s 0.89 9.12 0.39 3.58 par:pas; +accoutumée accoutumer ver f s 0.89 9.12 0.11 1.35 par:pas; +accoutumées accoutumé adj f p 0.26 5 0.14 0.07 +accoutumés accoutumer ver m p 0.89 9.12 0.02 1.22 par:pas; +accouvée accouver ver f s 0 0.07 0 0.07 par:pas; +accras accra nom m p 0.1 0 0.1 0 +accro accro adj m s 6.81 0.68 6.22 0.61 +accroc accroc nom m s 1.9 3.11 1.67 2.57 +accrocha accrocher ver 51.56 99.93 0.02 5.68 ind:pas:3s; +accrochage accrochage nom m s 2.06 1.49 1.44 0.88 +accrochages accrochage nom m p 2.06 1.49 0.62 0.61 +accrochai accrocher ver 51.56 99.93 0 1.01 ind:pas:1s; +accrochaient accrocher ver 51.56 99.93 0.06 4.73 ind:imp:3p; +accrochais accrocher ver 51.56 99.93 0.47 1.01 ind:imp:1s;ind:imp:2s; +accrochait accrocher ver 51.56 99.93 0.56 10.34 ind:imp:3s; +accrochant accrocher ver 51.56 99.93 0.43 4.59 par:pre; +accroche accrocher ver 51.56 99.93 16.39 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accroche_coeur accroche_coeur nom m s 0 0.74 0 0.34 +accroche_coeur accroche_coeur nom m p 0 0.74 0 0.41 +accrochent accrocher ver 51.56 99.93 1.37 2.64 ind:pre:3p; +accrocher accrocher ver 51.56 99.93 10.46 14.32 inf; +accrochera accrocher ver 51.56 99.93 0.15 0.07 ind:fut:3s; +accrocherai accrocher ver 51.56 99.93 0.38 0.14 ind:fut:1s; +accrocheraient accrocher ver 51.56 99.93 0 0.07 cnd:pre:3p; +accrocherais accrocher ver 51.56 99.93 0.04 0.2 cnd:pre:1s; +accrocherait accrocher ver 51.56 99.93 0.04 0.07 cnd:pre:3s; +accrocherez accrocher ver 51.56 99.93 0.17 0 ind:fut:2p; +accrocheriez accrocher ver 51.56 99.93 0 0.07 cnd:pre:2p; +accrocheront accrocher ver 51.56 99.93 0.02 0 ind:fut:3p; +accroches accrocher ver 51.56 99.93 2.09 0.07 ind:pre:2s;sub:pre:2s; +accrocheur accrocheur adj m s 0.59 0.34 0.55 0.14 +accrocheurs accrocheur adj m p 0.59 0.34 0.03 0.14 +accrocheuse accrocheur adj f s 0.59 0.34 0.02 0 +accrocheuses accrocheur adj f p 0.59 0.34 0 0.07 +accrochez accrocher ver 51.56 99.93 8.03 0.27 imp:pre:2p;ind:pre:2p; +accrochiez accrocher ver 51.56 99.93 0.17 0 ind:imp:2p; +accrochions accrocher ver 51.56 99.93 0.02 0.47 ind:imp:1p; +accrochons accrocher ver 51.56 99.93 0.12 0.07 imp:pre:1p;ind:pre:1p; +accrochât accrocher ver 51.56 99.93 0 0.14 sub:imp:3s; +accrochèrent accrocher ver 51.56 99.93 0.02 0.61 ind:pas:3p; +accroché accrocher ver m s 51.56 99.93 6.13 15.95 par:pas; +accrochée accrocher ver f s 51.56 99.93 2.06 9.86 par:pas; +accrochées accrocher ver f p 51.56 99.93 0.8 5.81 par:pas; +accrochés accrocher ver m p 51.56 99.93 1.56 8.58 par:pas; +accrocs accroc nom m p 1.9 3.11 0.23 0.54 +accroire accroire ver 0.02 0.54 0.02 0.54 inf; +accrois accroître ver 3.51 11.15 0.01 0.07 ind:pre:1s; +accroissaient accroître ver 3.51 11.15 0.01 0.2 ind:imp:3p; +accroissait accroître ver 3.51 11.15 0 0.95 ind:imp:3s; +accroissant accroître ver 3.51 11.15 0.04 0.14 par:pre; +accroisse accroître ver 3.51 11.15 0 0.07 sub:pre:3s; +accroissement accroissement nom m s 0.41 1.28 0.41 1.28 +accroissent accroître ver 3.51 11.15 0.04 0.27 ind:pre:3p; +accroissez accroître ver 3.51 11.15 0.04 0 imp:pre:2p;ind:pre:2p; +accros accro nom m p 2.56 0.07 0.9 0.07 +accroupi accroupir ver m s 2 24.93 0.72 8.24 par:pas; +accroupie accroupir ver f s 2 24.93 0.47 3.31 par:pas; +accroupies accroupir ver f p 2 24.93 0 0.81 par:pas; +accroupir accroupir ver 2 24.93 0.09 2.7 inf; +accroupirent accroupir ver 2 24.93 0 0.47 ind:pas:3p; +accroupis accroupir ver m p 2 24.93 0.23 2.84 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +accroupissaient accroupir ver 2 24.93 0 0.27 ind:imp:3p; +accroupissais accroupir ver 2 24.93 0.01 0.07 ind:imp:1s; +accroupissait accroupir ver 2 24.93 0.15 0.07 ind:imp:3s; +accroupissant accroupir ver 2 24.93 0 0.34 par:pre; +accroupisse accroupir ver 2 24.93 0.01 0.07 sub:pre:1s;sub:pre:3s; +accroupissement accroupissement nom m s 0 0.2 0 0.2 +accroupissent accroupir ver 2 24.93 0.02 0.34 ind:pre:3p; +accroupissons accroupir ver 2 24.93 0 0.14 ind:pre:1p; +accroupit accroupir ver 2 24.93 0.29 5.27 ind:pre:3s;ind:pas:3s; +accroît accroître ver 3.51 11.15 1.12 1.76 ind:pre:3s; +accroîtra accroître ver 3.51 11.15 0.12 0 ind:fut:3s; +accroîtrait accroître ver 3.51 11.15 0.01 0 cnd:pre:3s; +accroître accroître ver 3.51 11.15 1.46 3.99 inf; +accroîtront accroître ver 3.51 11.15 0.01 0.07 ind:fut:3p; +accru accroître ver m s 3.51 11.15 0.39 1.08 par:pas; +accrue accru adj f s 0.57 3.04 0.29 2.09 +accrues accroître ver f p 3.51 11.15 0.1 0.2 par:pas; +accrurent accroître ver 3.51 11.15 0.01 0.27 ind:pas:3p; +accrus accroître ver m p 3.51 11.15 0.04 0.14 par:pas; +accrut accroître ver 3.51 11.15 0.02 0.81 ind:pas:3s; +accrédita accréditer ver 0.36 1.55 0 0.07 ind:pas:3s; +accréditaient accréditer ver 0.36 1.55 0.01 0.07 ind:imp:3p; +accréditait accréditer ver 0.36 1.55 0 0.07 ind:imp:3s; +accréditant accréditer ver 0.36 1.55 0 0.07 par:pre; +accréditation accréditation nom f s 0.27 0 0.19 0 +accréditations accréditation nom f p 0.27 0 0.07 0 +accréditer accréditer ver 0.36 1.55 0.03 0.74 inf; +accréditif accréditif nom m s 0 0.07 0 0.07 +accrédité accrédité adj m s 0.14 0.27 0.07 0.2 +accréditée accréditer ver f s 0.36 1.55 0.04 0.14 par:pas; +accrédités accréditer ver m p 0.36 1.55 0.23 0.07 par:pas; +accrétion accrétion nom f s 0.03 0 0.03 0 +accrût accroître ver 3.51 11.15 0 0.07 sub:imp:3s; +accu accu nom m s 0.11 0.34 0 0.07 +accueil accueil nom m s 13.83 16.42 13.83 16.22 +accueillaient accueillir ver 31.98 54.73 0 1.08 ind:imp:3p; +accueillais accueillir ver 31.98 54.73 0.26 0.34 ind:imp:1s;ind:imp:2s; +accueillait accueillir ver 31.98 54.73 0.42 5.88 ind:imp:3s; +accueillant accueillant adj m s 2.07 5.07 1.21 1.82 +accueillante accueillant adj f s 2.07 5.07 0.47 2.09 +accueillantes accueillant adj f p 2.07 5.07 0.14 0.27 +accueillants accueillant adj m p 2.07 5.07 0.25 0.88 +accueille accueillir ver 31.98 54.73 4.58 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accueillent accueillir ver 31.98 54.73 0.9 1.76 ind:pre:3p; +accueillera accueillir ver 31.98 54.73 1.07 0.47 ind:fut:3s; +accueillerai accueillir ver 31.98 54.73 0.25 0.07 ind:fut:1s; +accueilleraient accueillir ver 31.98 54.73 0.17 0 cnd:pre:3p; +accueillerait accueillir ver 31.98 54.73 0.16 0.74 cnd:pre:3s; +accueilleras accueillir ver 31.98 54.73 0.01 0 ind:fut:2s; +accueillerez accueillir ver 31.98 54.73 0.24 0.07 ind:fut:2p; +accueilleriez accueillir ver 31.98 54.73 0.02 0 cnd:pre:2p; +accueillerons accueillir ver 31.98 54.73 0.13 0.07 ind:fut:1p; +accueilleront accueillir ver 31.98 54.73 0.1 0.27 ind:fut:3p; +accueilles accueillir ver 31.98 54.73 0.22 0.07 ind:pre:2s; +accueillez accueillir ver 31.98 54.73 0.97 0.14 imp:pre:2p;ind:pre:2p; +accueilli accueillir ver m s 31.98 54.73 3.79 7.91 par:pas; +accueillie accueillir ver f s 31.98 54.73 0.65 2.23 par:pas; +accueillies accueillir ver f p 31.98 54.73 0.05 0.61 par:pas; +accueillir accueillir ver 31.98 54.73 14.39 13.99 inf; +accueillirent accueillir ver 31.98 54.73 0.03 1.49 ind:pas:3p; +accueillis accueillir ver m p 31.98 54.73 0.98 3.18 ind:pas:1s;par:pas; +accueillit accueillir ver 31.98 54.73 0.5 6.69 ind:pas:3s; +accueillons accueillir ver 31.98 54.73 1.88 0.07 imp:pre:1p;ind:pre:1p; +accueillît accueillir ver 31.98 54.73 0 0.2 sub:imp:3s; +accueils accueil nom m p 13.83 16.42 0 0.2 +accula acculer ver 1.03 4.93 0 0.07 ind:pas:3s; +acculaient acculer ver 1.03 4.93 0 0.2 ind:imp:3p; +acculais acculer ver 1.03 4.93 0 0.14 ind:imp:1s; +acculait acculer ver 1.03 4.93 0 0.27 ind:imp:3s; +acculant acculer ver 1.03 4.93 0 0.14 par:pre; +accule acculer ver 1.03 4.93 0.29 0.14 ind:pre:1s;ind:pre:3s; +acculent acculer ver 1.03 4.93 0.01 0.14 ind:pre:3p; +acculer acculer ver 1.03 4.93 0.13 0.88 inf; +acculera acculer ver 1.03 4.93 0.01 0 ind:fut:3s; +acculeraient acculer ver 1.03 4.93 0 0.07 cnd:pre:3p; +acculez acculer ver 1.03 4.93 0.04 0 imp:pre:2p;ind:pre:2p; +acculturation acculturation nom f s 0.01 0 0.01 0 +acculât acculer ver 1.03 4.93 0 0.07 sub:imp:3s; +acculèrent acculer ver 1.03 4.93 0 0.07 ind:pas:3p; +acculé acculer ver m s 1.03 4.93 0.43 1.76 par:pas; +acculée acculer ver f s 1.03 4.93 0.04 0.34 par:pas; +acculées acculer ver f p 1.03 4.93 0.01 0.07 par:pas; +acculés acculer ver m p 1.03 4.93 0.06 0.61 par:pas; +accumula accumuler ver 4.46 24.53 0 0.14 ind:pas:3s; +accumulai accumuler ver 4.46 24.53 0 0.07 ind:pas:1s; +accumulaient accumuler ver 4.46 24.53 0.04 1.76 ind:imp:3p; +accumulais accumuler ver 4.46 24.53 0.02 0.27 ind:imp:1s; +accumulait accumuler ver 4.46 24.53 0.04 2.57 ind:imp:3s; +accumulant accumuler ver 4.46 24.53 0.24 1.55 par:pre; +accumulateur accumulateur nom m s 0.03 0.14 0.03 0.07 +accumulateurs accumulateur nom m p 0.03 0.14 0 0.07 +accumulation accumulation nom f s 0.67 3.78 0.67 3.72 +accumulations accumulation nom f p 0.67 3.78 0 0.07 +accumule accumuler ver 4.46 24.53 1.01 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accumulent accumuler ver 4.46 24.53 0.77 0.95 ind:pre:3p; +accumuler accumuler ver 4.46 24.53 0.85 3.72 inf; +accumulerez accumuler ver 4.46 24.53 0.01 0 ind:fut:2p; +accumulez accumuler ver 4.46 24.53 0.23 0 imp:pre:2p;ind:pre:2p; +accumulèrent accumuler ver 4.46 24.53 0 0.14 ind:pas:3p; +accumulé accumuler ver m s 4.46 24.53 0.55 3.04 par:pas; +accumulée accumuler ver f s 4.46 24.53 0.09 3.31 par:pas; +accumulées accumuler ver f p 4.46 24.53 0.3 3.04 par:pas; +accumulés accumuler ver m p 4.46 24.53 0.3 2.5 par:pas; +accus accu nom m p 0.11 0.34 0.11 0.27 +accusa accuser ver 52.72 39.93 0.18 3.18 ind:pas:3s; +accusai accuser ver 52.72 39.93 0.03 0.47 ind:pas:1s; +accusaient accuser ver 52.72 39.93 0.09 2.09 ind:imp:3p; +accusais accuser ver 52.72 39.93 0.29 0.68 ind:imp:1s;ind:imp:2s; +accusait accuser ver 52.72 39.93 1.57 6.55 ind:imp:3s; +accusant accuser ver 52.72 39.93 0.68 2.64 par:pre; +accusateur accusateur nom m s 0.35 1.28 0.25 0.41 +accusateurs accusateur adj m p 0.32 1.42 0.12 0.47 +accusatif accusatif nom m s 0.11 0.07 0.11 0.07 +accusation accusation nom f s 19.72 8.85 12.62 5.74 +accusations accusation nom f p 19.72 8.85 7.11 3.11 +accusatoire accusatoire adj s 0.01 0 0.01 0 +accusatrice accusateur adj f s 0.32 1.42 0 0.14 +accusatrices accusateur nom f p 0.35 1.28 0 0.07 +accuse accuser ver 52.72 39.93 13.28 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +accusent accuser ver 52.72 39.93 1.77 1.22 ind:pre:3p; +accuser accuser ver 52.72 39.93 10.06 7.03 inf; +accusera accuser ver 52.72 39.93 0.65 0.34 ind:fut:3s; +accuseraient accuser ver 52.72 39.93 0.03 0.14 cnd:pre:3p; +accuserais accuser ver 52.72 39.93 0.42 0.07 cnd:pre:1s;cnd:pre:2s; +accuserait accuser ver 52.72 39.93 0.3 0.54 cnd:pre:3s; +accuserez accuser ver 52.72 39.93 0.04 0 ind:fut:2p; +accuseriez accuser ver 52.72 39.93 0.03 0.07 cnd:pre:2p; +accuserions accuser ver 52.72 39.93 0 0.07 cnd:pre:1p; +accuserons accuser ver 52.72 39.93 0.02 0 ind:fut:1p; +accuseront accuser ver 52.72 39.93 0.22 0 ind:fut:3p; +accuses accuser ver 52.72 39.93 2.72 0.07 ind:pre:2s; +accusez accuser ver 52.72 39.93 3.22 0.88 imp:pre:2p;ind:pre:2p; +accusiez accuser ver 52.72 39.93 0.13 0 ind:imp:2p; +accusions accuser ver 52.72 39.93 0.01 0.07 ind:imp:1p; +accusons accuser ver 52.72 39.93 0.16 0.14 imp:pre:1p;ind:pre:1p; +accusât accuser ver 52.72 39.93 0 0.2 sub:imp:3s; +accusèrent accuser ver 52.72 39.93 0.01 0.2 ind:pas:3p; +accusé accuser ver m s 52.72 39.93 11.73 5.2 par:pas; +accusée accuser ver f s 52.72 39.93 3.2 1.01 par:pas; +accusées accuser ver f p 52.72 39.93 0.33 0.14 par:pas; +accusés accusé nom m p 13.74 11.69 2.69 4.32 +accède accéder ver 8.58 12.97 0.95 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +accèdent accéder ver 8.58 12.97 0.06 0.41 ind:pre:3p; +accèdes accéder ver 8.58 12.97 0.04 0 ind:pre:2s; +accès accès nom m 29.53 23.78 29.53 23.78 +accéda accéder ver 8.58 12.97 0.03 0.34 ind:pas:3s; +accédai accéder ver 8.58 12.97 0 0.14 ind:pas:1s; +accédaient accéder ver 8.58 12.97 0 0.34 ind:imp:3p; +accédais accéder ver 8.58 12.97 0.04 0.2 ind:imp:1s; +accédait accéder ver 8.58 12.97 0.22 2.7 ind:imp:3s; +accédant accéder ver 8.58 12.97 0.03 0.2 par:pre; +accéder accéder ver 8.58 12.97 6.29 5.81 inf; +accédera accéder ver 8.58 12.97 0.05 0.07 ind:fut:3s; +accéderai accéder ver 8.58 12.97 0.03 0 ind:fut:1s; +accéderaient accéder ver 8.58 12.97 0 0.14 cnd:pre:3p; +accéderais accéder ver 8.58 12.97 0.02 0.14 cnd:pre:1s; +accéderait accéder ver 8.58 12.97 0.01 0.07 cnd:pre:3s; +accéderas accéder ver 8.58 12.97 0.02 0 ind:fut:2s; +accédez accéder ver 8.58 12.97 0.11 0 imp:pre:2p;ind:pre:2p; +accédons accéder ver 8.58 12.97 0 0.2 ind:pre:1p; +accédâmes accéder ver 8.58 12.97 0 0.07 ind:pas:1p; +accédé accéder ver m s 8.58 12.97 0.68 0.74 par:pas; +accélère accélérer ver 15.78 17.97 7.32 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accélèrent accélérer ver 15.78 17.97 0.23 0.54 ind:pre:3p; +accélères accélérer ver 15.78 17.97 0.31 0.07 ind:pre:2s;sub:pre:2s; +accéléra accélérer ver 15.78 17.97 0.14 1.96 ind:pas:3s; +accélérai accélérer ver 15.78 17.97 0 0.34 ind:pas:1s; +accéléraient accélérer ver 15.78 17.97 0 0.41 ind:imp:3p; +accélérais accélérer ver 15.78 17.97 0.11 0.27 ind:imp:1s; +accélérait accélérer ver 15.78 17.97 0.13 2.64 ind:imp:3s; +accélérant accélérer ver 15.78 17.97 0.22 1.08 par:pre; +accélérants accélérant adj m p 0.23 0 0.02 0 +accélérateur accélérateur nom m s 2.22 3.51 2.16 3.38 +accélérateurs accélérateur nom m p 2.22 3.51 0.06 0.14 +accélération accélération nom f s 1.5 3.11 1.46 2.64 +accélérations accélération nom f p 1.5 3.11 0.04 0.47 +accélératrice accélérateur adj f s 0.34 0.14 0.01 0 +accélérer accélérer ver 15.78 17.97 4.41 2.91 inf; +accélérera accélérer ver 15.78 17.97 0.02 0 ind:fut:3s; +accélérerait accélérer ver 15.78 17.97 0.08 0.07 cnd:pre:3s; +accéléreras accélérer ver 15.78 17.97 0.01 0 ind:fut:2s; +accélérez accélérer ver 15.78 17.97 1.39 0 imp:pre:2p;ind:pre:2p; +accélériez accélérer ver 15.78 17.97 0.01 0 ind:imp:2p; +accélérons accélérer ver 15.78 17.97 0.15 0 imp:pre:1p;ind:pre:1p; +accélérèrent accélérer ver 15.78 17.97 0 0.2 ind:pas:3p; +accéléré accélérer ver m s 15.78 17.97 0.95 0.95 par:pas; +accélérée accélérer ver f s 15.78 17.97 0.23 2.23 par:pas; +accélérées accélérer ver f p 15.78 17.97 0.05 0.2 par:pas; +accélérés accéléré adj m p 0.28 2.03 0.01 0.41 +ace ace nom m s 2.48 0 2.48 0 +acellulaire acellulaire adj m s 0.03 0 0.03 0 +acerbe acerbe adj s 0.16 1.22 0.13 1.08 +acerbes acerbe adj f p 0.16 1.22 0.03 0.14 +acerbité acerbité nom m s 0.02 0.07 0.02 0.07 +acetabulum acetabulum nom m s 0.01 0 0.01 0 +achalandage achalandage nom m s 0 0.07 0 0.07 +achalandaient achalander ver 0.01 0.07 0 0.07 ind:imp:3p; +achalandé achalandé adj m s 0.02 0.34 0.01 0.07 +achalandée achalandé adj f s 0.02 0.34 0.01 0.07 +achalandées achalandé adj f p 0.02 0.34 0 0.07 +achalandés achalander ver m p 0.01 0.07 0.01 0 par:pas; +achaler achaler ver 0.01 0 0.01 0 inf; +achards achards nom m p 0.03 0 0.03 0 +acharna acharner ver 2.99 22.64 0.01 1.22 ind:pas:3s; +acharnai acharner ver 2.99 22.64 0 0.07 ind:pas:1s; +acharnaient acharner ver 2.99 22.64 0.03 1.62 ind:imp:3p; +acharnais acharner ver 2.99 22.64 0.01 0.47 ind:imp:1s; +acharnait acharner ver 2.99 22.64 0.11 3.24 ind:imp:3s; +acharnant acharner ver 2.99 22.64 0 1.49 par:pre; +acharne acharner ver 2.99 22.64 0.86 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acharnement acharnement nom m s 0.6 8.24 0.6 8.11 +acharnements acharnement nom m p 0.6 8.24 0 0.14 +acharnent acharner ver 2.99 22.64 0.23 1.08 ind:pre:3p; +acharner acharner ver 2.99 22.64 0.35 1.62 inf; +acharnera acharner ver 2.99 22.64 0.01 0.14 ind:fut:3s; +acharnerai acharner ver 2.99 22.64 0.02 0 ind:fut:1s; +acharnerait acharner ver 2.99 22.64 0.01 0 cnd:pre:3s; +acharnes acharner ver 2.99 22.64 0.26 0.14 ind:pre:2s; +acharnez acharner ver 2.99 22.64 0.1 0.07 imp:pre:2p;ind:pre:2p; +acharnèrent acharner ver 2.99 22.64 0 0.34 ind:pas:3p; +acharné acharné adj m s 1.61 5.41 0.59 2.23 +acharnée acharné adj f s 1.61 5.41 0.66 1.69 +acharnées acharné adj f p 1.61 5.41 0.02 0.41 +acharnés acharné adj m p 1.61 5.41 0.34 1.08 +achat achat nom m s 9.75 16.96 5.2 10.95 +achats achat nom m p 9.75 16.96 4.55 6.01 +ache ache nom f s 0 0.2 0 0.14 +achemina acheminer ver 0.83 6.15 0.01 0.41 ind:pas:3s; +acheminai acheminer ver 0.83 6.15 0 0.14 ind:pas:1s; +acheminaient acheminer ver 0.83 6.15 0 0.27 ind:imp:3p; +acheminait acheminer ver 0.83 6.15 0.01 0.88 ind:imp:3s; +acheminant acheminer ver 0.83 6.15 0.02 0.27 par:pre; +achemine acheminer ver 0.83 6.15 0.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acheminement acheminement nom m s 0.2 0.47 0.2 0.47 +acheminent acheminer ver 0.83 6.15 0.01 0.61 ind:pre:3p; +acheminer acheminer ver 0.83 6.15 0.55 1.22 inf; +achemineront acheminer ver 0.83 6.15 0 0.07 ind:fut:3p; +acheminons acheminer ver 0.83 6.15 0 0.27 ind:pre:1p; +acheminâmes acheminer ver 0.83 6.15 0 0.07 ind:pas:1p; +acheminèrent acheminer ver 0.83 6.15 0 0.14 ind:pas:3p; +acheminé acheminer ver m s 0.83 6.15 0.04 0.41 par:pas; +acheminée acheminer ver f s 0.83 6.15 0.05 0.14 par:pas; +acheminées acheminer ver f p 0.83 6.15 0.03 0.27 par:pas; +acheminés acheminer ver m p 0.83 6.15 0.02 0.27 par:pas; +aches ache nom f p 0 0.2 0 0.07 +acheta acheter ver 290.7 148.38 0.37 7.09 ind:pas:3s; +achetable achetable adj s 0 0.14 0 0.14 +achetai acheter ver 290.7 148.38 0.28 2.23 ind:pas:1s; +achetaient acheter ver 290.7 148.38 0.64 2.16 ind:imp:3p; +achetais acheter ver 290.7 148.38 1.32 1.49 ind:imp:1s;ind:imp:2s; +achetait acheter ver 290.7 148.38 3.43 6.22 ind:imp:3s; +achetant acheter ver 290.7 148.38 1.23 1.42 par:pre; +achetassent acheter ver 290.7 148.38 0 0.07 sub:imp:3p; +acheter acheter ver 290.7 148.38 115.27 57.09 ind:pre:2p;inf; +acheteur acheteur nom m s 6.57 5.47 3.89 2.97 +acheteurs acheteur nom m p 6.57 5.47 2.5 2.16 +acheteuse acheteur nom f s 6.57 5.47 0.16 0.14 +acheteuses acheteur nom f p 6.57 5.47 0.02 0.2 +achetez acheter ver 290.7 148.38 10.51 1.22 imp:pre:2p;ind:pre:2p; +achetiez acheter ver 290.7 148.38 0.28 0.14 ind:imp:2p; +achetions acheter ver 290.7 148.38 0.06 0.74 ind:imp:1p; +achetons acheter ver 290.7 148.38 1.38 0.47 imp:pre:1p;ind:pre:1p; +achetâmes acheter ver 290.7 148.38 0 0.2 ind:pas:1p; +achetât acheter ver 290.7 148.38 0 0.2 sub:imp:3s; +achetèrent acheter ver 290.7 148.38 0.06 0.95 ind:pas:3p; +acheté acheter ver m s 290.7 148.38 72.38 28.72 par:pas;par:pas;par:pas; +achetée acheter ver f s 290.7 148.38 8.67 5.88 par:pas; +achetées acheter ver f p 290.7 148.38 1.9 2.84 ind:imp:3s;par:pas; +achetés acheter ver m p 290.7 148.38 3.52 3.85 par:pas; +acheva achever ver 22.97 81.42 0.23 11.69 ind:pas:3s; +achevai achever ver 22.97 81.42 0.01 0.54 ind:pas:1s; +achevaient achever ver 22.97 81.42 0.12 4.19 ind:imp:3p; +achevais achever ver 22.97 81.42 0 0.54 ind:imp:1s; +achevait achever ver 22.97 81.42 0.34 12.64 ind:imp:3s; +achevant achever ver 22.97 81.42 0.02 2.57 par:pre; +achever achever ver 22.97 81.42 6.49 15 inf; +achevez achever ver 22.97 81.42 1 0.07 imp:pre:2p;ind:pre:2p; +acheviez achever ver 22.97 81.42 0.01 0 ind:imp:2p; +achevions achever ver 22.97 81.42 0 0.41 ind:imp:1p; +achevons achever ver 22.97 81.42 0.07 0.41 imp:pre:1p;ind:pre:1p; +achevâmes achever ver 22.97 81.42 0 0.07 ind:pas:1p; +achevât achever ver 22.97 81.42 0 0.61 sub:imp:3s; +achevèrent achever ver 22.97 81.42 0.01 1.22 ind:pas:3p; +achevé achever ver m s 22.97 81.42 2.7 12.64 par:pas; +achevée achever ver f s 22.97 81.42 1.54 2.91 par:pas; +achevées achevé adj f p 1.61 6.69 0.19 0.81 +achevés achever ver m p 22.97 81.42 0.08 0.41 par:pas; +achillée achillée nom f s 0.01 0 0.01 0 +achondroplasie achondroplasie nom f s 0.04 0 0.03 0 +achondroplasies achondroplasie nom f p 0.04 0 0.01 0 +achoppa achopper ver 0.01 0.81 0 0.07 ind:pas:3s; +achoppai achopper ver 0.01 0.81 0 0.07 ind:pas:1s; +achoppaient achopper ver 0.01 0.81 0 0.07 ind:imp:3p; +achoppais achopper ver 0.01 0.81 0 0.2 ind:imp:1s; +achoppait achopper ver 0.01 0.81 0 0.07 ind:imp:3s; +achoppe achopper ver 0.01 0.81 0 0.14 ind:pre:1s;ind:pre:3s; +achoppement achoppement nom m s 0.01 0.14 0.01 0.14 +achopper achopper ver 0.01 0.81 0.01 0 inf; +achoppé achopper ver m s 0.01 0.81 0 0.14 par:pas; +achoppée achopper ver f s 0.01 0.81 0 0.07 par:pas; +achète acheter ver 290.7 148.38 39.82 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +achètent acheter ver 290.7 148.38 5.44 2.7 ind:pre:3p; +achètera acheter ver 290.7 148.38 3.98 0.74 ind:fut:3s; +achèterai acheter ver 290.7 148.38 7.09 2.3 ind:fut:1s; +achèteraient acheter ver 290.7 148.38 0.03 0.41 cnd:pre:3p; +achèterais acheter ver 290.7 148.38 1.75 0.74 cnd:pre:1s;cnd:pre:2s; +achèterait acheter ver 290.7 148.38 1.02 1.22 cnd:pre:3s; +achèteras acheter ver 290.7 148.38 1.55 0.61 ind:fut:2s; +achèterez acheter ver 290.7 148.38 0.48 0.2 ind:fut:2p; +achèteriez acheter ver 290.7 148.38 0.17 0.07 cnd:pre:2p; +achèterions acheter ver 290.7 148.38 0 0.07 cnd:pre:1p; +achèterons acheter ver 290.7 148.38 0.47 0.41 ind:fut:1p; +achèteront acheter ver 290.7 148.38 0.31 0.54 ind:fut:3p; +achètes acheter ver 290.7 148.38 7.28 0.88 ind:pre:2s;sub:pre:2s; +achève achever ver 22.97 81.42 8.31 11.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +achèvement achèvement nom m s 0.52 1.82 0.52 1.76 +achèvements achèvement nom m p 0.52 1.82 0 0.07 +achèvent achever ver 22.97 81.42 0.14 2.7 ind:pre:3p; +achèvera achever ver 22.97 81.42 1 0.27 ind:fut:3s; +achèverai achever ver 22.97 81.42 0.06 0 ind:fut:1s; +achèveraient achever ver 22.97 81.42 0 0.14 cnd:pre:3p; +achèverait achever ver 22.97 81.42 0.1 0.88 cnd:pre:3s; +achèverez achever ver 22.97 81.42 0.02 0 ind:fut:2p; +achèverons achever ver 22.97 81.42 0.06 0 ind:fut:1p; +achèveront achever ver 22.97 81.42 0.13 0.2 ind:fut:3p; +achèves achever ver 22.97 81.42 0.39 0 ind:pre:2s; +achélème achélème nom m s 0 1.69 0 0.95 +achélèmes achélème nom m p 0 1.69 0 0.74 +acid_jazz acid_jazz nom m s 0.03 0 0.03 0 +acide acide nom m s 9.46 4.8 8.44 3.85 +acides acide nom m p 9.46 4.8 1.02 0.95 +acidité acidité nom f s 0.29 0.95 0.27 0.81 +acidités acidité nom f p 0.29 0.95 0.02 0.14 +acidocétose acidocétose nom f s 0.08 0 0.08 0 +acidose acidose nom f s 0.22 0 0.22 0 +acidulé acidulé adj m s 0.15 1.55 0.02 0.47 +acidulée acidulé adj f s 0.15 1.55 0.04 0.27 +acidulées acidulé adj f p 0.15 1.55 0.01 0.27 +acidulés acidulé adj m p 0.15 1.55 0.08 0.54 +acier acier nom m s 13.88 34.46 13.85 33.38 +aciers acier nom m p 13.88 34.46 0.03 1.08 +aciérie aciérie nom f s 2.21 0.27 0.67 0.14 +aciéries aciérie nom f p 2.21 0.27 1.53 0.14 +acmé acmé nom f s 0.01 0 0.01 0 +acné acné nom f s 1.9 0.88 1.9 0.81 +acnéiques acnéique adj m p 0 0.14 0 0.14 +acnés acné nom f p 1.9 0.88 0 0.07 +acolyte acolyte nom m s 1.45 1.96 0.75 0.61 +acolytes acolyte nom m p 1.45 1.96 0.7 1.35 +acompte acompte nom m s 3.67 1.15 3.33 1.01 +acomptes acompte nom m p 3.67 1.15 0.34 0.14 +aconiers aconier nom m p 0 0.07 0 0.07 +aconit aconit nom m s 0.14 0.34 0.14 0.34 +acoquina acoquiner ver 0.23 1.01 0.01 0.07 ind:pas:3s; +acoquine acoquiner ver 0.23 1.01 0.04 0.07 ind:pre:1s;ind:pre:3s; +acoquiner acoquiner ver 0.23 1.01 0.12 0.41 inf; +acoquiné acoquiner ver m s 0.23 1.01 0.03 0.07 par:pas; +acoquinée acoquiner ver f s 0.23 1.01 0.02 0.14 par:pas; +acoquinés acoquiner ver m p 0.23 1.01 0.01 0.27 par:pas; +acouphène acouphène nom m s 0.18 0 0.18 0 +acoustique acoustique nom f s 0.57 0.34 0.55 0.34 +acoustiques acoustique adj p 0.56 0.81 0.07 0.07 +acqua_toffana acqua_toffana nom f s 0 0.07 0 0.07 +acquerra acquérir ver 8.3 29.66 0.01 0 ind:fut:3s; +acquerrai acquérir ver 8.3 29.66 0.01 0.07 ind:fut:1s; +acquerraient acquérir ver 8.3 29.66 0 0.14 cnd:pre:3p; +acquerront acquérir ver 8.3 29.66 0.01 0.07 ind:fut:3p; +acquiers acquérir ver 8.3 29.66 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +acquiert acquérir ver 8.3 29.66 0.68 1.42 ind:pre:3s; +acquiesce acquiescer ver 1.15 12.43 0.33 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acquiescement acquiescement nom m s 0.15 2.84 0.15 2.36 +acquiescements acquiescement nom m p 0.15 2.84 0 0.47 +acquiescent acquiescer ver 1.15 12.43 0.26 0.07 ind:pre:3p; +acquiescer acquiescer ver 1.15 12.43 0.18 1.49 inf; +acquiesceront acquiescer ver 1.15 12.43 0 0.07 ind:fut:3p; +acquiesces acquiescer ver 1.15 12.43 0.02 0 ind:pre:2s; +acquiescèrent acquiescer ver 1.15 12.43 0 0.14 ind:pas:3p; +acquiescé acquiescer ver m s 1.15 12.43 0.31 1.08 par:pas; +acquiesça acquiescer ver 1.15 12.43 0.01 4.59 ind:pas:3s; +acquiesçai acquiescer ver 1.15 12.43 0 0.74 ind:pas:1s; +acquiesçaient acquiescer ver 1.15 12.43 0 0.14 ind:imp:3p; +acquiesçais acquiescer ver 1.15 12.43 0.02 0.34 ind:imp:1s; +acquiesçait acquiescer ver 1.15 12.43 0 1.15 ind:imp:3s; +acquiesçant acquiescer ver 1.15 12.43 0.02 0.2 par:pre; +acquiesçons acquiescer ver 1.15 12.43 0 0.07 ind:pre:1p; +acquirent acquérir ver 8.3 29.66 0 0.14 ind:pas:3p; +acquis acquérir ver m 8.3 29.66 3.52 13.65 ind:pas:1s;par:pas;par:pas; +acquise acquérir ver f s 8.3 29.66 1.05 2.97 par:pas; +acquises acquérir ver f p 8.3 29.66 0.34 0.88 par:pas; +acquisition acquisition nom f s 2.15 3.78 1.35 2.84 +acquisitions acquisition nom f p 2.15 3.78 0.81 0.95 +acquit acquit nom m s 0.29 2.23 0.29 2.16 +acquits acquit nom m p 0.29 2.23 0 0.07 +acquitta acquitter ver 5.29 6.82 0 0.47 ind:pas:3s; +acquittai acquitter ver 5.29 6.82 0 0.07 ind:pas:1s; +acquittaient acquitter ver 5.29 6.82 0 0.2 ind:imp:3p; +acquittais acquitter ver 5.29 6.82 0 0.34 ind:imp:1s; +acquittait acquitter ver 5.29 6.82 0.04 0.81 ind:imp:3s; +acquittant acquitter ver 5.29 6.82 0.01 0.2 par:pre; +acquitte acquitter ver 5.29 6.82 1.17 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +acquittement acquittement nom m s 0.6 0.34 0.6 0.34 +acquittent acquitter ver 5.29 6.82 0.07 0 ind:pre:3p; +acquitter acquitter ver 5.29 6.82 1.13 1.82 inf; +acquittera acquitter ver 5.29 6.82 0.04 0.07 ind:fut:3s; +acquitterai acquitter ver 5.29 6.82 0.01 0.07 ind:fut:1s; +acquitterais acquitter ver 5.29 6.82 0.01 0 cnd:pre:1s; +acquitterait acquitter ver 5.29 6.82 0.03 0.07 cnd:pre:3s; +acquitterez acquitter ver 5.29 6.82 0.03 0.07 ind:fut:2p; +acquittes acquitter ver 5.29 6.82 0.14 0.07 ind:pre:2s; +acquittez acquitter ver 5.29 6.82 0.16 0 imp:pre:2p;ind:pre:2p; +acquittions acquitter ver 5.29 6.82 0.01 0.07 ind:imp:1p; +acquittât acquitter ver 5.29 6.82 0 0.07 sub:imp:3s; +acquitté acquitter ver m s 5.29 6.82 1.92 1.28 par:pas; +acquittée acquitter ver f s 5.29 6.82 0.26 0.34 par:pas; +acquittés acquitter ver m p 5.29 6.82 0.27 0.07 par:pas; +acquière acquérir ver 8.3 29.66 0.04 0.2 sub:pre:1s;sub:pre:3s; +acquièrent acquérir ver 8.3 29.66 0.12 0.74 ind:pre:3p; +acquéraient acquérir ver 8.3 29.66 0.1 0.2 ind:imp:3p; +acquérais acquérir ver 8.3 29.66 0.01 0.27 ind:imp:1s; +acquérait acquérir ver 8.3 29.66 0.11 0.95 ind:imp:3s; +acquérant acquérir ver 8.3 29.66 0.05 0.2 par:pre; +acquéreur acquéreur nom m s 0.58 1.08 0.23 0.88 +acquéreurs acquéreur nom m p 0.58 1.08 0.35 0.2 +acquérions acquérir ver 8.3 29.66 0 0.07 ind:imp:1p; +acquérir acquérir ver 8.3 29.66 2.15 7.43 inf; +acquérons acquérir ver 8.3 29.66 0.01 0.07 ind:pre:1p; +acquêt acquêt nom m s 0.14 0.2 0 0.07 +acquêts acquêt nom m p 0.14 0.2 0.14 0.14 +acra acra nom m s 0.27 0.14 0.27 0.14 +acre acre nom f s 0.83 0.41 0.27 0.07 +acres acre nom f p 0.83 0.41 0.56 0.34 +acrimonie acrimonie nom f s 0.06 0.81 0.06 0.81 +acrimonieuse acrimonieux adj f s 0.04 0.14 0.01 0.07 +acrimonieusement acrimonieusement adv 0 0.07 0 0.07 +acrimonieuses acrimonieux adj f p 0.04 0.14 0 0.07 +acrimonieux acrimonieux adj m s 0.04 0.14 0.02 0 +acrobate acrobate nom s 2.34 4.12 1.46 2.57 +acrobates acrobate nom p 2.34 4.12 0.89 1.55 +acrobatie acrobatie nom f s 0.81 2.57 0.32 0.81 +acrobaties acrobatie nom f p 0.81 2.57 0.5 1.76 +acrobatique acrobatique adj s 0.47 1.01 0.31 0.61 +acrobatiquement acrobatiquement adv 0.01 0.07 0.01 0.07 +acrobatiques acrobatique adj p 0.47 1.01 0.17 0.41 +acrocéphale acrocéphale adj s 0 0.07 0 0.07 +acromion acromion nom m s 0.01 0.14 0.01 0.14 +acronyme acronyme nom m s 0.19 0.07 0.19 0.07 +acrophobie acrophobie nom f s 0.08 0 0.08 0 +acropole acropole nom f s 0 0.81 0 0.81 +acrostiche acrostiche nom m s 0.02 0 0.02 0 +acrotère acrotère nom m s 0 0.07 0 0.07 +acrylique acrylique nom m s 0.5 0.14 0.4 0.07 +acryliques acrylique nom m p 0.5 0.14 0.1 0.07 +acrylonitrile acrylonitrile nom m s 0.01 0 0.01 0 +acré acré ono 0 0.2 0 0.2 +acta acter ver 0.29 0.07 0 0.07 ind:pas:3s; +acte acte nom m s 56.81 57.3 39.19 35.88 +actes acte nom m p 56.81 57.3 17.62 21.42 +acteur acteur nom m s 74.77 38.31 30.51 15.47 +acteurs acteur nom m p 74.77 38.31 17.92 12.3 +actif actif adj m s 10.15 13.65 4.12 3.58 +actifs actif adj m p 10.15 13.65 1.33 1.35 +actine actine nom f s 0.01 0 0.01 0 +actinies actinie nom f p 0 0.41 0 0.41 +action action nom f s 69.27 87.43 49.97 72.91 +action_painting action_painting nom f s 0 0.07 0 0.07 +actionna actionner ver 2.01 5.61 0 0.47 ind:pas:3s; +actionnai actionner ver 2.01 5.61 0 0.2 ind:pas:1s; +actionnaient actionner ver 2.01 5.61 0.14 0.41 ind:imp:3p; +actionnaire actionnaire nom s 3.72 0.74 1.21 0.27 +actionnaires actionnaire nom p 3.72 0.74 2.51 0.47 +actionnais actionner ver 2.01 5.61 0.01 0.07 ind:imp:1s; +actionnait actionner ver 2.01 5.61 0 0.81 ind:imp:3s; +actionnant actionner ver 2.01 5.61 0.02 0.61 par:pre; +actionnariat actionnariat nom m s 0.01 0 0.01 0 +actionne actionner ver 2.01 5.61 0.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +actionnement actionnement nom m s 0.01 0.07 0.01 0.07 +actionnent actionner ver 2.01 5.61 0.04 0 ind:pre:3p; +actionner actionner ver 2.01 5.61 0.43 1.22 inf; +actionneront actionner ver 2.01 5.61 0 0.07 ind:fut:3p; +actionneur actionneur nom m s 0.01 0 0.01 0 +actionnez actionner ver 2.01 5.61 0.34 0 imp:pre:2p;ind:pre:2p; +actionnât actionner ver 2.01 5.61 0 0.07 sub:imp:3s; +actionné actionner ver m s 2.01 5.61 0.2 0.81 par:pas; +actionnée actionner ver f s 2.01 5.61 0.05 0.07 par:pas; +actionnées actionner ver f p 2.01 5.61 0 0.07 par:pas; +actionnés actionner ver m p 2.01 5.61 0.14 0 par:pas; +actions action nom f p 69.27 87.43 19.3 14.53 +activa activer ver 12.58 6.62 0 0.27 ind:pas:3s; +activai activer ver 12.58 6.62 0 0.07 ind:pas:1s; +activaient activer ver 12.58 6.62 0.1 0.74 ind:imp:3p; +activait activer ver 12.58 6.62 0.05 1.08 ind:imp:3s; +activant activer ver 12.58 6.62 0.1 0.47 par:pre; +activateur activateur nom m s 0.1 0 0.1 0 +activation activation nom f s 2.27 0.07 2.21 0.07 +activations activation nom f p 2.27 0.07 0.07 0 +active actif adj f s 10.15 13.65 4.21 7.16 +activement activement adv 1.18 3.51 1.18 3.51 +activent activer ver 12.58 6.62 0.15 0.61 ind:pre:3p; +activer activer ver 12.58 6.62 2.98 1.35 inf; +activera activer ver 12.58 6.62 0.13 0 ind:fut:3s; +activerai activer ver 12.58 6.62 0.06 0 ind:fut:1s; +activerait activer ver 12.58 6.62 0.02 0 cnd:pre:3s; +activeras activer ver 12.58 6.62 0.01 0 ind:fut:2s; +actives actif adj f p 10.15 13.65 0.5 1.55 +activez activer ver 12.58 6.62 2.34 0 imp:pre:2p;ind:pre:2p; +activisme activisme nom m s 0.15 0.2 0.15 0.2 +activiste activiste nom s 0.88 0.54 0.23 0.07 +activistes activiste nom p 0.88 0.54 0.65 0.47 +activité activité nom f s 23.47 38.92 13.05 25.81 +activités activité nom f p 23.47 38.92 10.42 13.11 +activons activer ver 12.58 6.62 0.33 0.34 imp:pre:1p;ind:pre:1p; +activèrent activer ver 12.58 6.62 0 0.14 ind:pas:3p; +activé activer ver m s 12.58 6.62 2.13 0.14 par:pas; +activée activé adj f s 2.57 0.07 0.81 0 +activées activé adj f p 2.57 0.07 0.34 0 +activés activé adj m p 2.57 0.07 0.48 0 +actrice acteur nom f s 74.77 38.31 23.83 7.57 +actrices acteur nom f p 74.77 38.31 2.5 2.97 +actuaire actuaire nom s 0.03 0 0.03 0 +actualisation actualisation nom f s 0.03 0.07 0.03 0.07 +actualise actualiser ver 0.17 0.34 0.01 0.07 ind:pre:3s; +actualiser actualiser ver 0.17 0.34 0.06 0.07 inf; +actualisez actualiser ver 0.17 0.34 0.04 0 imp:pre:2p; +actualisé actualiser ver m s 0.17 0.34 0.02 0.07 par:pas; +actualisée actualiser ver f s 0.17 0.34 0.02 0.07 par:pas; +actualisées actualiser ver f p 0.17 0.34 0.01 0.07 par:pas; +actualité actualité nom f s 3.25 8.72 1.79 5.68 +actualités actualité nom f p 3.25 8.72 1.45 3.04 +actuariel actuariel adj m s 0.02 0 0.02 0 +actuation actuation nom f s 0.01 0 0.01 0 +actuel actuel adj m s 14.86 20.68 4.69 6.49 +actuelle actuel adj f s 14.86 20.68 7.8 8.58 +actuellement actuellement adv 11.39 16.69 11.39 16.69 +actuelles actuel adj f p 14.86 20.68 1.14 2.64 +actuels actuel adj m p 14.86 20.68 1.23 2.97 +acuité acuité nom f s 0.56 3.18 0.56 3.18 +acumen acumen nom m s 0 0.07 0 0.07 +acuponcteur acuponcteur nom m s 0.23 0 0.23 0 +acuponcture acuponcture nom f s 0.17 0 0.17 0 +acupuncteur acupuncteur nom m s 0.11 0.07 0.11 0.07 +acupuncture acupuncture nom f s 0.79 0.41 0.79 0.41 +acéphale acéphale nom m s 0 0.2 0 0.14 +acéphales acéphale nom m p 0 0.2 0 0.07 +acéré acéré adj m s 0.81 2.43 0.14 0.74 +acérée acéré adj f s 0.81 2.43 0.11 0.54 +acérées acéré adj f p 0.81 2.43 0.51 0.68 +acérés acéré adj m p 0.81 2.43 0.06 0.47 +acétate acétate nom m s 0.2 0.14 0.2 0.14 +acétique acétique adj m s 0.05 0.07 0.05 0.07 +acétone acétone nom f s 0.21 0.27 0.21 0.27 +acétylcholine acétylcholine nom f s 0.25 0 0.25 0 +acétylsalicylique acétylsalicylique adj m s 0.03 0 0.03 0 +acétylène acétylène nom m s 0.18 1.96 0.18 1.96 +ad_hoc ad_hoc adj 0.11 0.81 0.11 0.81 +ad_infinitum ad_infinitum adv 0.05 0 0.05 0 +ad_libitum ad_libitum adv 0 0.14 0 0.14 +ad_limina ad_limina adv 0 0.07 0 0.07 +ad_majorem_dei_gloriam ad_majorem_dei_gloriam adv 0 0.14 0 0.14 +ad_nutum ad_nutum adv 0 0.07 0 0.07 +ad_patres ad_patres adv 0.02 0.27 0.02 0.27 +ad_vitam_aeternam ad_vitam_aeternam adv 0 0.2 0 0.2 +ada ada nom m s 0.05 0 0.05 0 +adage adage nom m s 0.62 0.74 0.61 0.54 +adages adage nom m p 0.62 0.74 0.01 0.2 +adagio adagio nom m s 0.13 0.34 0.13 0.34 +adamantin adamantin adj m s 0.01 0.2 0 0.14 +adamantine adamantin adj f s 0.01 0.2 0.01 0.07 +adamique adamique adj m s 0 0.14 0 0.14 +adapta adapter ver 13.44 12.57 0.01 0.14 ind:pas:3s; +adaptabilité adaptabilité nom f s 0.16 0 0.16 0 +adaptable adaptable adj s 0.1 0.2 0.07 0.07 +adaptables adaptable adj m p 0.1 0.2 0.02 0.14 +adaptai adapter ver 13.44 12.57 0 0.07 ind:pas:1s; +adaptaient adapter ver 13.44 12.57 0.01 0.14 ind:imp:3p; +adaptais adapter ver 13.44 12.57 0 0.2 ind:imp:1s; +adaptait adapter ver 13.44 12.57 0.04 0.68 ind:imp:3s; +adaptant adapter ver 13.44 12.57 0.05 0.47 par:pre; +adaptateur adaptateur nom m s 0.15 0.41 0.12 0.41 +adaptateurs adaptateur nom m p 0.15 0.41 0.04 0 +adaptatif adaptatif adj m s 0.04 0.07 0.04 0 +adaptatifs adaptatif adj m p 0.04 0.07 0 0.07 +adaptation adaptation nom f s 2.48 4.66 2.46 4.46 +adaptations adaptation nom f p 2.48 4.66 0.03 0.2 +adapte adapter ver 13.44 12.57 1.75 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adaptent adapter ver 13.44 12.57 0.39 0.07 ind:pre:3p; +adapter adapter ver 13.44 12.57 5.63 3.72 inf; +adaptera adapter ver 13.44 12.57 0.18 0.07 ind:fut:3s; +adapterai adapter ver 13.44 12.57 0.05 0.07 ind:fut:1s; +adapterais adapter ver 13.44 12.57 0 0.07 cnd:pre:1s; +adapterait adapter ver 13.44 12.57 0.01 0.07 cnd:pre:3s; +adapteras adapter ver 13.44 12.57 0.04 0 ind:fut:2s; +adapterez adapter ver 13.44 12.57 0.05 0 ind:fut:2p; +adapterons adapter ver 13.44 12.57 0.05 0.07 ind:fut:1p; +adapteront adapter ver 13.44 12.57 0.01 0.07 ind:fut:3p; +adaptes adapter ver 13.44 12.57 0.16 0.07 ind:pre:2s; +adaptez adapter ver 13.44 12.57 0.07 0.07 imp:pre:2p;ind:pre:2p; +adaptât adapter ver 13.44 12.57 0 0.07 sub:imp:3s; +adaptèrent adapter ver 13.44 12.57 0.01 0.07 ind:pas:3p; +adapté adapter ver m s 13.44 12.57 3.16 2.36 imp:pre:2s;par:pas; +adaptée adapter ver f s 13.44 12.57 0.78 1.42 par:pas; +adaptées adapter ver f p 13.44 12.57 0.66 0.61 par:pas; +adaptés adapter ver m p 13.44 12.57 0.34 0.81 par:pas; +addenda addenda nom m 0.07 0 0.07 0 +addendum addendum nom m s 0.01 0.07 0.01 0.07 +addiction addiction nom f s 0.41 0.07 0.41 0.07 +additif additif nom m s 0.21 0.14 0.15 0.14 +additifs additif nom m p 0.21 0.14 0.06 0 +addition addition nom f s 8.61 9.53 8.24 7.36 +additionnaient additionner ver 1.25 2.64 0 0.07 ind:imp:3p; +additionnais additionner ver 1.25 2.64 0 0.07 ind:imp:1s; +additionnait additionner ver 1.25 2.64 0 0.07 ind:imp:3s; +additionnant additionner ver 1.25 2.64 0.19 0.34 par:pre; +additionne additionner ver 1.25 2.64 0.22 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +additionnel additionnel adj m s 0.25 0.34 0.04 0.2 +additionnelle additionnel adj f s 0.25 0.34 0.11 0 +additionnelles additionnel adj f p 0.25 0.34 0.05 0.14 +additionnels additionnel adj m p 0.25 0.34 0.05 0 +additionnent additionner ver 1.25 2.64 0.13 0.2 ind:pre:3p; +additionner additionner ver 1.25 2.64 0.33 0.41 inf; +additionneraient additionner ver 1.25 2.64 0.14 0.07 cnd:pre:3p; +additionnerait additionner ver 1.25 2.64 0 0.07 cnd:pre:3s; +additionnez additionner ver 1.25 2.64 0.02 0 imp:pre:2p;ind:pre:2p; +additionné additionner ver m s 1.25 2.64 0.06 0.07 par:pas; +additionnée additionner ver f s 1.25 2.64 0.01 0.2 par:pas; +additionnées additionner ver f p 1.25 2.64 0.14 0.27 par:pas; +additionnés additionner ver m p 1.25 2.64 0.01 0.2 par:pas; +additions addition nom f p 8.61 9.53 0.37 2.16 +adducteur adducteur nom m s 0.02 0 0.01 0 +adducteurs adducteur nom m p 0.02 0 0.01 0 +adduction adduction nom f s 0.04 0.14 0.04 0.14 +adent adent nom m s 0.01 0 0.01 0 +adepte adepte nom s 2.73 2.84 0.88 0.88 +adeptes adepte nom p 2.73 2.84 1.85 1.96 +adhère adhérer ver 2.67 5.07 0.73 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adhèrent adhérer ver 2.67 5.07 0.21 0.34 ind:pre:3p; +adhéra adhérer ver 2.67 5.07 0.02 0 ind:pas:3s; +adhéraient adhérer ver 2.67 5.07 0.01 0.27 ind:imp:3p; +adhérais adhérer ver 2.67 5.07 0.03 0.07 ind:imp:1s; +adhérait adhérer ver 2.67 5.07 0.01 0.95 ind:imp:3s; +adhérant adhérer ver 2.67 5.07 0.03 0.41 par:pre; +adhérence adhérence nom f s 0.11 0.54 0.06 0.14 +adhérences adhérence nom f p 0.11 0.54 0.04 0.41 +adhérent adhérent nom m s 0.57 1.01 0.16 0.14 +adhérente adhérent adj f s 0.16 0.27 0.01 0 +adhérentes adhérent adj f p 0.16 0.27 0 0.14 +adhérents adhérent nom m p 0.57 1.01 0.42 0.88 +adhérer adhérer ver 2.67 5.07 0.82 1.82 inf; +adhérez adhérer ver 2.67 5.07 0.48 0 imp:pre:2p;ind:pre:2p; +adhéré adhérer ver m s 2.67 5.07 0.32 0.34 par:pas; +adhésif adhésif adj m s 1.05 0.81 0.73 0.47 +adhésifs adhésif adj m p 1.05 0.81 0.07 0.2 +adhésion adhésion nom f s 0.5 6.55 0.45 6.15 +adhésions adhésion nom f p 0.5 6.55 0.04 0.41 +adhésive adhésif adj f s 1.05 0.81 0.17 0.14 +adhésives adhésif adj f p 1.05 0.81 0.07 0 +adieu adieu ono 39.7 7.36 39.7 7.36 +adieux adieu nom m p 44.44 38.04 7.57 10.54 +adipeuse adipeux adj f s 0.22 1.28 0.01 0.27 +adipeuses adipeux adj f p 0.22 1.28 0.1 0.07 +adipeux adipeux adj m 0.22 1.28 0.11 0.95 +adipique adipique adj m s 0.03 0 0.03 0 +adiposité adiposité nom f s 0 0.07 0 0.07 +adira adire ver 0.16 0 0.16 0 ind:fut:3s; +adja adja nom m s 0 1.01 0 0.34 +adjacent adjacent adj m s 0.59 0.95 0.16 0.14 +adjacente adjacent adj f s 0.59 0.95 0.06 0.34 +adjacentes adjacent adj f p 0.59 0.95 0.15 0.47 +adjacents adjacent adj m p 0.59 0.95 0.22 0 +adjas adja nom m p 0 1.01 0 0.68 +adjectif adjectif nom m s 0.45 3.51 0.28 1.96 +adjectifs adjectif nom m p 0.45 3.51 0.17 1.55 +adjective adjectif adj f s 0.01 0.14 0 0.07 +adjoignait adjoindre ver 1.71 2.97 0 0.07 ind:imp:3s; +adjoignant adjoindre ver 1.71 2.97 0 0.07 par:pre; +adjoigne adjoindre ver 1.71 2.97 0 0.07 sub:pre:1s; +adjoignit adjoindre ver 1.71 2.97 0 0.14 ind:pas:3s; +adjoignît adjoindre ver 1.71 2.97 0 0.07 sub:imp:3s; +adjoindra adjoindre ver 1.71 2.97 0.02 0 ind:fut:3s; +adjoindre adjoindre ver 1.71 2.97 0.05 0.68 inf; +adjoindront adjoindre ver 1.71 2.97 0 0.07 ind:fut:3p; +adjoins adjoindre ver 1.71 2.97 0.14 0.07 ind:pre:1s; +adjoint adjoint nom m s 9.42 5.14 6.54 4.05 +adjointe adjoint adj f s 6.77 2.16 0.25 0 +adjointes adjoint nom f p 9.42 5.14 0.01 0 +adjoints adjoint nom m p 9.42 5.14 2.66 0.95 +adjonction adjonction nom f s 0.02 0.41 0.02 0.41 +adjudant adjudant nom m s 16.6 22.23 16.49 21.15 +adjudant_chef adjudant_chef nom m s 2.57 2.7 2.57 2.57 +adjudant_major adjudant_major nom m s 0.05 0 0.05 0 +adjudants adjudant nom m p 16.6 22.23 0.11 1.08 +adjudant_chef adjudant_chef nom m p 2.57 2.7 0 0.14 +adjudication adjudication nom f s 0.37 0.2 0.02 0.14 +adjudications adjudication nom f p 0.37 0.2 0.34 0.07 +adjuge adjuger ver 1.64 0.68 0.05 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adjugeait adjuger ver 1.64 0.68 0 0.14 ind:imp:3s; +adjugeant adjuger ver 1.64 0.68 0 0.07 par:pre; +adjuger adjuger ver 1.64 0.68 0.03 0 inf; +adjugez adjuger ver 1.64 0.68 0.01 0 imp:pre:2p; +adjugé adjuger ver m s 1.64 0.68 1.5 0.34 par:pas; +adjugée adjuger ver f s 1.64 0.68 0.04 0 par:pas; +adjugés adjuger ver m p 1.64 0.68 0.02 0 par:pas; +adjupète adjupète nom m s 0 0.14 0 0.07 +adjupètes adjupète nom m p 0 0.14 0 0.07 +adjura adjurer ver 0.32 2.97 0 0.14 ind:pas:3s; +adjurai adjurer ver 0.32 2.97 0 0.2 ind:pas:1s; +adjuraient adjurer ver 0.32 2.97 0 0.07 ind:imp:3p; +adjurais adjurer ver 0.32 2.97 0 0.14 ind:imp:1s; +adjurait adjurer ver 0.32 2.97 0.01 0.61 ind:imp:3s; +adjurant adjurer ver 0.32 2.97 0 0.54 par:pre; +adjuration adjuration nom f s 0 0.34 0 0.2 +adjurations adjuration nom f p 0 0.34 0 0.14 +adjure adjurer ver 0.32 2.97 0.29 0.41 ind:pre:1s;ind:pre:3s; +adjurer adjurer ver 0.32 2.97 0 0.47 inf; +adjurerai adjurer ver 0.32 2.97 0.01 0 ind:fut:1s; +adjurerait adjurer ver 0.32 2.97 0 0.07 cnd:pre:3s; +adjuré adjurer ver m s 0.32 2.97 0.01 0.34 par:pas; +adjutrice adjutrice nom f s 0 0.07 0 0.07 +adjuvants adjuvant nom m p 0.01 0.07 0.01 0.07 +admet admettre ver 50.05 59.46 2.83 3.45 ind:pre:3s; +admets admettre ver 50.05 59.46 10.14 3.92 imp:pre:2s;ind:pre:1s;ind:pre:2s; +admettaient admettre ver 50.05 59.46 0.04 1.01 ind:imp:3p; +admettais admettre ver 50.05 59.46 0.2 0.88 ind:imp:1s;ind:imp:2s; +admettait admettre ver 50.05 59.46 0.07 3.78 ind:imp:3s; +admettant admettre ver 50.05 59.46 0.55 3.31 par:pre; +admette admettre ver 50.05 59.46 0.44 0.34 sub:pre:1s;sub:pre:3s; +admettent admettre ver 50.05 59.46 0.37 0.47 ind:pre:3p; +admettes admettre ver 50.05 59.46 0.3 0 sub:pre:2s; +admettez admettre ver 50.05 59.46 2.22 0.47 imp:pre:2p;ind:pre:2p; +admettiez admettre ver 50.05 59.46 0.21 0.07 ind:imp:2p; +admettions admettre ver 50.05 59.46 0.03 0.2 ind:imp:1p; +admettons admettre ver 50.05 59.46 4.3 2.7 imp:pre:1p;ind:pre:1p; +admettra admettre ver 50.05 59.46 0.45 0.2 ind:fut:3s; +admettrai admettre ver 50.05 59.46 0.28 0.34 ind:fut:1s; +admettraient admettre ver 50.05 59.46 0 0.14 cnd:pre:3p; +admettrais admettre ver 50.05 59.46 0.06 0.2 cnd:pre:1s;cnd:pre:2s; +admettrait admettre ver 50.05 59.46 0.25 0.54 cnd:pre:3s; +admettras admettre ver 50.05 59.46 0.09 0.2 ind:fut:2s; +admettre admettre ver 50.05 59.46 17.92 19.73 inf; +admettrez admettre ver 50.05 59.46 0.22 0.2 ind:fut:2p; +admettriez admettre ver 50.05 59.46 0.03 0 cnd:pre:2p; +admettrons admettre ver 50.05 59.46 0.02 0.14 ind:fut:1p; +admettront admettre ver 50.05 59.46 0.09 0 ind:fut:3p; +administra administrer ver 3.53 8.04 0 0.47 ind:pas:3s; +administrai administrer ver 3.53 8.04 0 0.07 ind:pas:1s; +administraient administrer ver 3.53 8.04 0.01 0.34 ind:imp:3p; +administrais administrer ver 3.53 8.04 0.01 0.14 ind:imp:1s; +administrait administrer ver 3.53 8.04 0.04 0.74 ind:imp:3s; +administrant administrer ver 3.53 8.04 0.06 0.27 par:pre; +administrateur administrateur nom m s 4.95 4.73 4.05 3.78 +administrateurs administrateur nom m p 4.95 4.73 0.8 0.95 +administratif administratif adj m s 3.27 11.08 1.34 2.97 +administratifs administratif adj m p 3.27 11.08 0.63 1.62 +administration administration nom f s 13.4 26.42 13.24 23.85 +administrations administration nom f p 13.4 26.42 0.16 2.57 +administrative administratif adj f s 3.27 11.08 0.7 4.26 +administrativement administrativement adv 0.05 0.14 0.05 0.14 +administratives administratif adj f p 3.27 11.08 0.6 2.23 +administratrice administrateur nom f s 4.95 4.73 0.1 0 +administre administrer ver 3.53 8.04 0.92 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +administrent administrer ver 3.53 8.04 0.04 0.34 ind:pre:3p; +administrer administrer ver 3.53 8.04 1.12 2.84 inf; +administrera administrer ver 3.53 8.04 0.05 0.07 ind:fut:3s; +administrerai administrer ver 3.53 8.04 0.16 0 ind:fut:1s; +administrerons administrer ver 3.53 8.04 0.03 0 ind:fut:1p; +administres administrer ver 3.53 8.04 0.01 0.07 ind:pre:2s; +administrez administrer ver 3.53 8.04 0.1 0.07 imp:pre:2p;ind:pre:2p; +administrât administrer ver 3.53 8.04 0 0.07 sub:imp:3s; +administré administrer ver m s 3.53 8.04 0.63 1.08 par:pas; +administrée administrer ver f s 3.53 8.04 0.19 0.41 par:pas; +administrées administrer ver f p 3.53 8.04 0.01 0.14 par:pas; +administrés administré nom m p 0.47 0.61 0.27 0.34 +admira admirer ver 32.39 68.18 0.01 3.04 ind:pas:3s; +admirable admirable adj s 6.51 31.55 6.02 23.92 +admirablement admirablement adv 0.71 4.73 0.71 4.73 +admirables admirable adj p 6.51 31.55 0.49 7.64 +admirai admirer ver 32.39 68.18 0.14 0.81 ind:pas:1s; +admiraient admirer ver 32.39 68.18 0.06 1.82 ind:imp:3p; +admirais admirer ver 32.39 68.18 3.11 6.35 ind:imp:1s;ind:imp:2s; +admirait admirer ver 32.39 68.18 0.99 11.49 ind:imp:3s; +admirant admirer ver 32.39 68.18 0.08 1.82 par:pre; +admirateur admirateur nom m s 5.64 5.14 2.63 1.28 +admirateurs admirateur nom m p 5.64 5.14 2.33 2.91 +admiratif admiratif adj m s 0.41 6.96 0.26 2.57 +admiratifs admiratif adj m p 0.41 6.96 0 1.49 +admiration admiration nom f s 4.54 32.7 4.54 32.3 +admirations admiration nom f p 4.54 32.7 0 0.41 +admirative admiratif adj f s 0.41 6.96 0.02 2.3 +admirativement admirativement adv 0 0.2 0 0.2 +admiratives admiratif adj f p 0.41 6.96 0.14 0.61 +admiratrice admirateur nom f s 5.64 5.14 0.32 0.27 +admiratrices admirateur nom f p 5.64 5.14 0.36 0.68 +admire admirer ver 32.39 68.18 13.85 13.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +admirent admirer ver 32.39 68.18 0.86 0.95 ind:pre:3p; +admirer admirer ver 32.39 68.18 6.5 17.64 inf;; +admirera admirer ver 32.39 68.18 0.05 0.07 ind:fut:3s; +admirerai admirer ver 32.39 68.18 0.04 0.07 ind:fut:1s; +admirerais admirer ver 32.39 68.18 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +admirerait admirer ver 32.39 68.18 0.03 0.27 cnd:pre:3s; +admirerez admirer ver 32.39 68.18 0.01 0.07 ind:fut:2p; +admireront admirer ver 32.39 68.18 0.04 0.14 ind:fut:3p; +admires admirer ver 32.39 68.18 0.82 0.41 ind:pre:2s; +admirez admirer ver 32.39 68.18 2.25 1.42 imp:pre:2p;ind:pre:2p; +admiriez admirer ver 32.39 68.18 0.22 0 ind:imp:2p; +admirions admirer ver 32.39 68.18 0.12 0.81 ind:imp:1p; +admirons admirer ver 32.39 68.18 0.43 0.61 imp:pre:1p;ind:pre:1p; +admirâmes admirer ver 32.39 68.18 0 0.07 ind:pas:1p; +admirèrent admirer ver 32.39 68.18 0 0.74 ind:pas:3p; +admiré admirer ver m s 32.39 68.18 2 4.12 par:pas; +admirée admirer ver f s 32.39 68.18 0.66 1.15 par:pas; +admirées admirer ver f p 32.39 68.18 0.04 0.27 par:pas; +admirés admirer ver m p 32.39 68.18 0.05 0.54 par:pas; +admis admettre ver m 50.05 59.46 6.74 11.35 ind:pas:1s;par:pas;par:pas; +admise admettre ver f s 50.05 59.46 1.75 2.03 par:pas; +admises admettre ver f p 50.05 59.46 0.2 0.54 par:pas; +admissibilité admissibilité nom f s 0.02 0.07 0.02 0.07 +admissible admissible adj m s 0.49 0.61 0.44 0.54 +admissibles admissible adj f p 0.49 0.61 0.05 0.07 +admission admission nom f s 3.42 1.82 2.34 1.82 +admissions admission nom f p 3.42 1.82 1.08 0 +admit admettre ver 50.05 59.46 0.24 2.84 ind:pas:3s; +admixtion admixtion nom f s 0 0.07 0 0.07 +admonesta admonester ver 0.03 0.61 0 0.07 ind:pas:3s; +admonestait admonester ver 0.03 0.61 0 0.07 ind:imp:3s; +admonestation admonestation nom f s 0 0.47 0 0.34 +admonestations admonestation nom f p 0 0.47 0 0.14 +admoneste admonester ver 0.03 0.61 0.02 0.2 ind:pre:3s; +admonester admonester ver 0.03 0.61 0.01 0 inf; +admonestât admonester ver 0.03 0.61 0 0.07 sub:imp:3s; +admonesté admonester ver m s 0.03 0.61 0 0.07 par:pas; +admonestés admonester ver m p 0.03 0.61 0 0.14 par:pas; +admonition admonition nom f s 0.12 0.2 0.01 0.14 +admonitions admonition nom f p 0.12 0.2 0.11 0.07 +admît admettre ver 50.05 59.46 0 0.34 sub:imp:3s; +ado ado nom s 3.4 0.2 3.4 0.2 +adobe adobe nom m s 0.08 0 0.08 0 +adolescence adolescence nom f s 2.88 13.78 2.88 13.72 +adolescences adolescence nom f p 2.88 13.78 0 0.07 +adolescent adolescent nom m s 6.84 25.2 2.38 9.66 +adolescente adolescent nom f s 6.84 25.2 1.59 7.57 +adolescentes adolescent nom f p 6.84 25.2 0.53 1.28 +adolescents adolescent nom m p 6.84 25.2 2.34 6.69 +adon adon nom m s 0.01 0 0.01 0 +adonc adonc adv 0 0.07 0 0.07 +adoncques adoncques adv 0 0.07 0 0.07 +adonies adonies nom f p 0 0.07 0 0.07 +adonis adonis nom m 0.28 0 0.28 0 +adonisant adoniser ver 0 0.07 0 0.07 par:pre; +adonna adonner ver 1.6 5.74 0 0.47 ind:pas:3s; +adonnai adonner ver 1.6 5.74 0 0.14 ind:pas:1s; +adonnaient adonner ver 1.6 5.74 0.16 0.61 ind:imp:3p; +adonnais adonner ver 1.6 5.74 0.01 0.14 ind:imp:1s; +adonnait adonner ver 1.6 5.74 0.09 0.81 ind:imp:3s; +adonnant adonner ver 1.6 5.74 0.02 0.07 par:pre; +adonne adonner ver 1.6 5.74 0.55 0.81 ind:pre:1s;ind:pre:3s; +adonnent adonner ver 1.6 5.74 0.2 0.34 ind:pre:3p; +adonner adonner ver 1.6 5.74 0.48 1.08 inf; +adonnerait adonner ver 1.6 5.74 0 0.07 cnd:pre:3s; +adonnez adonner ver 1.6 5.74 0.01 0 ind:pre:2p; +adonnions adonner ver 1.6 5.74 0 0.14 ind:imp:1p; +adonné adonner ver m s 1.6 5.74 0.04 0.61 par:pas; +adonnée adonner ver f s 1.6 5.74 0.02 0 par:pas; +adonnées adonner ver f p 1.6 5.74 0 0.07 par:pas; +adonnés adonner ver m p 1.6 5.74 0.01 0.41 par:pas; +adopta adopter ver 15.18 29.86 0.05 1.49 ind:pas:3s; +adoptable adoptable adj f s 0 0.07 0 0.07 +adoptai adopter ver 15.18 29.86 0.02 0.41 ind:pas:1s; +adoptaient adopter ver 15.18 29.86 0.01 0.14 ind:imp:3p; +adoptais adopter ver 15.18 29.86 0 0.14 ind:imp:1s; +adoptait adopter ver 15.18 29.86 0.13 1.89 ind:imp:3s; +adoptant adoptant adj m s 0 0.07 0 0.07 +adoptant adopter ver 15.18 29.86 0.06 0.81 par:pre; +adopte adopter ver 15.18 29.86 1.28 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adoptent adopter ver 15.18 29.86 0.11 0.41 ind:pre:3p; +adopter adopter ver 15.18 29.86 7.25 9.19 inf; +adoptera adopter ver 15.18 29.86 0.14 0 ind:fut:3s; +adopterai adopter ver 15.18 29.86 0.05 0.07 ind:fut:1s; +adopteraient adopter ver 15.18 29.86 0 0.14 cnd:pre:3p; +adopterait adopter ver 15.18 29.86 0.02 0.34 cnd:pre:3s; +adopterez adopter ver 15.18 29.86 0.02 0.14 ind:fut:2p; +adopterons adopter ver 15.18 29.86 0.02 0 ind:fut:1p; +adopteront adopter ver 15.18 29.86 0.04 0.14 ind:fut:3p; +adoptez adopter ver 15.18 29.86 0.23 0.07 imp:pre:2p;ind:pre:2p; +adoptif adoptif adj m s 3.98 3.38 2.15 1.96 +adoptifs adoptif adj m p 3.98 3.38 1.12 0.2 +adoption adoption nom f s 4.06 2.91 3.97 2.84 +adoptions adoption nom f p 4.06 2.91 0.09 0.07 +adoptive adoptif adj f s 3.98 3.38 0.7 1.15 +adoptives adoptif adj f p 3.98 3.38 0.01 0.07 +adoptons adopter ver 15.18 29.86 0.28 0.14 imp:pre:1p;ind:pre:1p; +adoptât adopter ver 15.18 29.86 0 0.41 sub:imp:3s; +adoptèrent adopter ver 15.18 29.86 0.02 0.47 ind:pas:3p; +adopté adopter ver m s 15.18 29.86 3.77 7.36 par:pas; +adoptée adopter ver f s 15.18 29.86 1.25 2.64 par:pas; +adoptées adopter ver f p 15.18 29.86 0.17 0.61 par:pas; +adoptés adopter ver m p 15.18 29.86 0.23 0.47 par:pas; +adora adorer ver 193.67 44.59 0.06 0.07 ind:pas:3s; +adorable adorable adj s 25.95 7.97 23 6.28 +adorablement adorablement adv 0.2 0.27 0.2 0.27 +adorables adorable adj p 25.95 7.97 2.94 1.69 +adorai adorer ver 193.67 44.59 0.03 0.14 ind:pas:1s; +adoraient adorer ver 193.67 44.59 1.29 2.09 ind:imp:3p; +adorais adorer ver 193.67 44.59 6.44 2.3 ind:imp:1s;ind:imp:2s; +adorait adorer ver 193.67 44.59 7.02 9.46 ind:imp:3s; +adorant adorer ver 193.67 44.59 0.14 0.14 par:pre; +adorante adorant adj f s 0.01 0.2 0 0.07 +adorants adorant adj m p 0.01 0.2 0 0.07 +adorateur adorateur nom m s 1.34 1.82 0.3 0.34 +adorateurs adorateur nom m p 1.34 1.82 0.71 1.42 +adoration adoration nom f s 0.88 5.07 0.88 4.86 +adorations adoration nom f p 0.88 5.07 0 0.2 +adoratrice adorateur nom f s 1.34 1.82 0.21 0 +adoratrices adorateur nom f p 1.34 1.82 0.11 0.07 +adore adorer ver 193.67 44.59 121.69 16.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +adorent adorer ver 193.67 44.59 10.76 2.91 ind:pre:3p;sub:pre:3p; +adorer adorer ver 193.67 44.59 11.79 3.31 inf; +adorera adorer ver 193.67 44.59 0.75 0.14 ind:fut:3s; +adorerai adorer ver 193.67 44.59 0.36 0 ind:fut:1s; +adoreraient adorer ver 193.67 44.59 0.52 0 cnd:pre:3p; +adorerais adorer ver 193.67 44.59 7.39 0.07 cnd:pre:1s;cnd:pre:2s; +adorerait adorer ver 193.67 44.59 1.32 0.07 cnd:pre:3s; +adoreras adorer ver 193.67 44.59 0.6 0 ind:fut:2s; +adorerez adorer ver 193.67 44.59 0.51 0 ind:fut:2p; +adoreriez adorer ver 193.67 44.59 0.08 0 cnd:pre:2p; +adorerions adorer ver 193.67 44.59 0.12 0 cnd:pre:1p; +adorerons adorer ver 193.67 44.59 0.01 0 ind:fut:1p; +adoreront adorer ver 193.67 44.59 0.24 0.07 ind:fut:3p; +adores adorer ver 193.67 44.59 4.37 0.27 ind:pre:2s; +adorez adorer ver 193.67 44.59 1.11 0.14 imp:pre:2p;ind:pre:2p; +adoriez adorer ver 193.67 44.59 0.26 0.07 ind:imp:2p; +adorions adorer ver 193.67 44.59 0.09 0.2 ind:imp:1p; +adornaient adorner ver 0.01 0.47 0 0.2 ind:imp:3p; +adornait adorner ver 0.01 0.47 0 0.14 ind:imp:3s; +adorne adorner ver 0.01 0.47 0.01 0.07 imp:pre:2s;ind:pre:3s; +adorné adorner ver m s 0.01 0.47 0 0.07 par:pas; +adorons adorer ver 193.67 44.59 1.22 0.54 imp:pre:1p;ind:pre:1p; +adorèrent adorer ver 193.67 44.59 0.02 0 ind:pas:3p; +adoré adorer ver m s 193.67 44.59 12.81 3.11 par:pas; +adorée adorer ver f s 193.67 44.59 2.27 1.82 par:pas; +adorées adorer ver f p 193.67 44.59 0.19 0.27 par:pas; +adorés adorer ver m p 193.67 44.59 0.24 0.68 par:pas; +ados ados nom m 3.27 0.27 3.27 0.27 +adossa adosser ver 0.8 16.89 0 2.23 ind:pas:3s; +adossai adosser ver 0.8 16.89 0.1 0.07 ind:pas:1s; +adossaient adosser ver 0.8 16.89 0 0.27 ind:imp:3p; +adossais adosser ver 0.8 16.89 0.01 0.14 ind:imp:1s; +adossait adosser ver 0.8 16.89 0 0.68 ind:imp:3s; +adossant adosser ver 0.8 16.89 0.01 0.14 par:pre; +adosse adosser ver 0.8 16.89 0.28 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adossent adosser ver 0.8 16.89 0 0.07 ind:pre:3p; +adosser adosser ver 0.8 16.89 0.07 1.35 inf; +adossez adosser ver 0.8 16.89 0.04 0 imp:pre:2p;ind:pre:2p; +adossèrent adosser ver 0.8 16.89 0 0.14 ind:pas:3p; +adossé adosser ver m s 0.8 16.89 0.28 6.49 par:pas; +adossée adossé adj f s 0.13 0.34 0.1 0.14 +adossées adosser ver f p 0.8 16.89 0.01 0.34 par:pas; +adossés adosser ver m p 0.8 16.89 0 1.49 par:pas; +adouba adouber ver 0.04 0.34 0 0.07 ind:pas:3s; +adoubement adoubement nom m s 0.01 0.27 0.01 0.27 +adouber adouber ver 0.04 0.34 0.01 0 inf; +adoubé adouber ver m s 0.04 0.34 0.03 0.27 par:pas; +adouci adoucir ver m s 3.27 11.01 0.44 1.01 par:pas; +adoucie adoucir ver f s 3.27 11.01 0.29 1.08 par:pas; +adoucies adoucir ver f p 3.27 11.01 0.02 0.27 par:pas; +adoucir adoucir ver 3.27 11.01 1.56 3.58 inf; +adoucira adoucir ver 3.27 11.01 0.09 0.14 ind:fut:3s; +adoucirait adoucir ver 3.27 11.01 0.02 0.14 cnd:pre:3s; +adoucirent adoucir ver 3.27 11.01 0 0.07 ind:pas:3p; +adoucis adoucir ver m p 3.27 11.01 0.2 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +adoucissaient adoucir ver 3.27 11.01 0 0.27 ind:imp:3p; +adoucissait adoucir ver 3.27 11.01 0.02 1.35 ind:imp:3s; +adoucissant adoucissant nom m s 0.06 0 0.06 0 +adoucissantes adoucissant adj f p 0 0.14 0 0.07 +adoucisse adoucir ver 3.27 11.01 0.01 0.07 sub:pre:1s;sub:pre:3s; +adoucissement adoucissement nom m s 0.01 0.61 0.01 0.54 +adoucissements adoucissement nom m p 0.01 0.61 0 0.07 +adoucissent adoucir ver 3.27 11.01 0.02 0.34 ind:pre:3p; +adoucisseur adoucisseur nom m s 0.04 0.14 0.03 0 +adoucisseurs adoucisseur nom m p 0.04 0.14 0.01 0.14 +adoucissez adoucir ver 3.27 11.01 0.13 0 imp:pre:2p; +adoucit adoucir ver 3.27 11.01 0.46 2.09 ind:pre:3s;ind:pas:3s; +adoucît adoucir ver 3.27 11.01 0 0.07 sub:imp:3s; +adp adp nom m s 0.04 0 0.04 0 +adragante adragant adj f s 0 0.07 0 0.07 +adressa adresser ver 30.71 98.04 0.19 11.15 ind:pas:3s; +adressage adressage nom m s 0.01 0 0.01 0 +adressai adresser ver 30.71 98.04 0 2.57 ind:pas:1s; +adressaient adresser ver 30.71 98.04 0.06 3.04 ind:imp:3p; +adressais adresser ver 30.71 98.04 0.24 1.49 ind:imp:1s;ind:imp:2s; +adressait adresser ver 30.71 98.04 0.76 14.12 ind:imp:3s; +adressant adresser ver 30.71 98.04 0.41 9.39 par:pre; +adressassent adresser ver 30.71 98.04 0 0.07 sub:imp:3p; +adresse adresse nom f s 73.92 49.8 67.28 43.92 +adressent adresser ver 30.71 98.04 0.71 1.55 ind:pre:3p; +adresser adresser ver 30.71 98.04 7.95 17.91 inf; +adressera adresser ver 30.71 98.04 0.66 0.34 ind:fut:3s; +adresserai adresser ver 30.71 98.04 0.34 0.34 ind:fut:1s; +adresseraient adresser ver 30.71 98.04 0 0.14 cnd:pre:3p; +adresserais adresser ver 30.71 98.04 0.04 0.2 cnd:pre:1s;cnd:pre:2s; +adresserait adresser ver 30.71 98.04 0.02 0.81 cnd:pre:3s; +adresseras adresser ver 30.71 98.04 0.03 0 ind:fut:2s; +adresserez adresser ver 30.71 98.04 0.11 0.07 ind:fut:2p; +adresserons adresser ver 30.71 98.04 0.11 0.07 ind:fut:1p; +adresseront adresser ver 30.71 98.04 0.17 0.07 ind:fut:3p; +adresses adresse nom f p 73.92 49.8 6.65 5.88 +adressez adresser ver 30.71 98.04 2.77 0.47 imp:pre:2p;ind:pre:2p; +adressiez adresser ver 30.71 98.04 0.34 0 ind:imp:2p; +adressions adresser ver 30.71 98.04 0 0.41 ind:imp:1p; +adressons adresser ver 30.71 98.04 0.2 0.47 imp:pre:1p;ind:pre:1p; +adressâmes adresser ver 30.71 98.04 0 0.14 ind:pas:1p; +adressât adresser ver 30.71 98.04 0 0.68 sub:imp:3s; +adressèrent adresser ver 30.71 98.04 0.02 0.34 ind:pas:3p; +adressé adresser ver m s 30.71 98.04 2.66 9.73 par:pas; +adressée adresser ver f s 30.71 98.04 1.76 5.2 par:pas; +adressées adresser ver f p 30.71 98.04 0.41 2.09 par:pas; +adressés adresser ver m p 30.71 98.04 0.51 0.88 par:pas; +adret adret nom m s 0 0.07 0 0.07 +adriatique adriatique adj s 0.14 0.14 0.14 0.07 +adriatiques adriatique adj p 0.14 0.14 0 0.07 +adroit adroit adj m s 1.87 4.86 1.13 3.51 +adroite adroit adj f s 1.87 4.86 0.41 0.74 +adroitement adroitement adv 0.85 1.96 0.85 1.96 +adroites adroit adj f p 1.87 4.86 0.25 0.07 +adroits adroit adj m p 1.87 4.86 0.09 0.54 +adrénaline adrénaline nom f s 3.57 0.68 3.56 0.68 +adrénalines adrénaline nom f p 3.57 0.68 0.01 0 +adulaient aduler ver 0.52 1.62 0 0.07 ind:imp:3p; +adulais aduler ver 0.52 1.62 0.02 0 ind:imp:1s; +adulait aduler ver 0.52 1.62 0.02 0.07 ind:imp:3s; +adulateur adulateur nom m s 0.1 0.07 0.1 0.07 +adulation adulation nom f s 0.16 0.81 0.16 0.61 +adulations adulation nom f p 0.16 0.81 0 0.2 +adulent aduler ver 0.52 1.62 0.27 0 ind:pre:3p; +aduler aduler ver 0.52 1.62 0.06 0.07 ind:pre:2p;inf; +adultat adultat nom m s 0 0.14 0 0.14 +adulte adulte nom s 23.34 27.64 9.78 10.41 +adultes adulte nom p 23.34 27.64 13.56 17.23 +adultère adultère nom m s 3.69 3.65 3.54 3.18 +adultères adultère nom m p 3.69 3.65 0.15 0.47 +adultéraient adultérer ver 0.01 0.14 0 0.07 ind:imp:3p; +adultération adultération nom f s 0 0.07 0 0.07 +adultérin adultérin adj m s 0.02 0.34 0.01 0 +adultérine adultérin adj f s 0.02 0.34 0.01 0.14 +adultérins adultérin adj m p 0.02 0.34 0 0.2 +adultéré adultérer ver m s 0.01 0.14 0.01 0 par:pas; +adultérées adultérer ver f p 0.01 0.14 0 0.07 par:pas; +adulé aduler ver m s 0.52 1.62 0.09 0.61 par:pas; +adulée aduler ver f s 0.52 1.62 0.03 0.47 par:pas; +adulés aduler ver m p 0.52 1.62 0.04 0.34 par:pas; +advenait advenir ver 7.94 9.39 0.11 0.74 ind:imp:3s; +advenir advenir ver 7.94 9.39 1.03 1.15 inf; +adventices adventice adj m p 0 0.2 0 0.2 +adventiste adventiste nom s 0.27 0 0.27 0 +advenu advenir ver m s 7.94 9.39 0.99 1.62 par:pas; +advenue advenir ver f s 7.94 9.39 0 0.2 par:pas; +advenues advenir ver f p 7.94 9.39 0 0.07 par:pas; +adverbe adverbe nom m s 0.11 0.61 0.09 0.27 +adverbes adverbe nom m p 0.11 0.61 0.02 0.34 +adversaire adversaire nom s 10.96 25.14 7.61 15.95 +adversaires adversaire nom p 10.96 25.14 3.36 9.19 +adverse adverse adj s 1.93 4.32 1.83 2.5 +adverses adverse adj p 1.93 4.32 0.1 1.82 +adversité adversité nom f s 1.3 2.16 1.27 2.09 +adversités adversité nom f p 1.3 2.16 0.02 0.07 +adviendra advenir ver 7.94 9.39 2.53 0.68 ind:fut:3s; +adviendrait advenir ver 7.94 9.39 0.25 0.68 cnd:pre:3s; +advienne advenir ver 7.94 9.39 1.24 1.01 sub:pre:1s;sub:pre:3s; +adviennent advenir ver 7.94 9.39 0 0.07 ind:pre:3p; +advient advenir ver 7.94 9.39 0.58 1.49 ind:pre:3s; +advint advenir ver 7.94 9.39 1.2 1.35 ind:pas:3s; +advînt advenir ver 7.94 9.39 0 0.34 sub:imp:3s; +adénine adénine nom f s 0.01 0 0.01 0 +adénocarcinome adénocarcinome nom m s 0.04 0 0.04 0 +adénome adénome nom m s 0.05 0.07 0.05 0.07 +adénopathie adénopathie nom f s 0.01 0 0.01 0 +adénosine adénosine nom f s 0.07 0 0.07 0 +adénovirus adénovirus nom m 0.01 0 0.01 0 +adéquat adéquat adj m s 3.28 4.8 1.35 1.82 +adéquate adéquat adj f s 3.28 4.8 1.23 1.69 +adéquatement adéquatement adv 0.03 0 0.03 0 +adéquates adéquat adj f p 3.28 4.8 0.5 0.47 +adéquation adéquation nom f s 0.14 0.34 0.14 0.34 +adéquats adéquat adj m p 3.28 4.8 0.21 0.81 +aegipans aegipan nom m p 0 0.07 0 0.07 +affabilité affabilité nom f s 0.13 1.28 0.13 1.22 +affabilités affabilité nom f p 0.13 1.28 0 0.07 +affable affable adj s 0.39 3.78 0.37 3.11 +affablement affablement adv 0 0.2 0 0.2 +affables affable adj p 0.39 3.78 0.02 0.68 +affabulation affabulation nom f s 0.22 1.22 0.2 1.01 +affabulations affabulation nom f p 0.22 1.22 0.02 0.2 +affabulatrice affabulateur nom f s 0.14 0 0.14 0 +affabule affabuler ver 0.28 0.27 0.15 0.14 ind:pre:1s;ind:pre:3s; +affabuler affabuler ver 0.28 0.27 0 0.07 inf; +affabules affabuler ver 0.28 0.27 0.14 0 ind:pre:2s; +affabulé affabuler ver m s 0.28 0.27 0 0.07 par:pas; +affacturage affacturage nom m s 0.01 0 0.01 0 +affadi affadir ver m s 0.01 1.35 0 0.2 par:pas; +affadie affadir ver f s 0.01 1.35 0 0.27 par:pas; +affadies affadir ver f p 0.01 1.35 0 0.07 par:pas; +affadir affadir ver 0.01 1.35 0 0.14 inf; +affadis affadir ver m p 0.01 1.35 0 0.07 par:pas; +affadissaient affadir ver 0.01 1.35 0 0.07 ind:imp:3p; +affadissait affadir ver 0.01 1.35 0 0.34 ind:imp:3s; +affadissant affadir ver 0.01 1.35 0 0.07 par:pre; +affadisse affadir ver 0.01 1.35 0.01 0.07 sub:pre:1s;sub:pre:3s; +affadissement affadissement nom m s 0 0.2 0 0.2 +affadit affadir ver 0.01 1.35 0 0.07 ind:pas:3s; +affaibli affaiblir ver m s 6.66 7.84 1.62 1.49 par:pas; +affaiblie affaiblir ver f s 6.66 7.84 0.38 0.61 par:pas; +affaiblies affaiblir ver f p 6.66 7.84 0.02 0.27 par:pas; +affaiblir affaiblir ver 6.66 7.84 1.13 1.35 inf; +affaiblira affaiblir ver 6.66 7.84 0.3 0.07 ind:fut:3s; +affaiblis affaiblir ver m p 6.66 7.84 0.84 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +affaiblissaient affaiblir ver 6.66 7.84 0 0.14 ind:imp:3p; +affaiblissais affaiblir ver 6.66 7.84 0 0.07 ind:imp:1s; +affaiblissait affaiblir ver 6.66 7.84 0.23 1.01 ind:imp:3s; +affaiblissant affaiblir ver 6.66 7.84 0.17 0.61 par:pre; +affaiblisse affaiblir ver 6.66 7.84 0.05 0 sub:pre:1s;sub:pre:3s; +affaiblissement affaiblissement nom m s 0.23 1.49 0.23 1.49 +affaiblissent affaiblir ver 6.66 7.84 0.3 0.41 ind:pre:3p; +affaiblissez affaiblir ver 6.66 7.84 0.04 0 ind:pre:2p; +affaiblissons affaiblir ver 6.66 7.84 0.02 0 ind:pre:1p; +affaiblit affaiblir ver 6.66 7.84 1.56 1.22 ind:pre:3s;ind:pas:3s; +affaira affairer ver 2.75 13.38 0 0.68 ind:pas:3s; +affairai affairer ver 2.75 13.38 0 0.07 ind:pas:1s; +affairaient affairer ver 2.75 13.38 0.01 2.43 ind:imp:3p; +affairais affairer ver 2.75 13.38 0 0.07 ind:imp:1s; +affairait affairer ver 2.75 13.38 0.01 2.7 ind:imp:3s; +affairant affairer ver 2.75 13.38 0 0.47 par:pre; +affaire affaire nom f s 393.83 253.38 207.5 150.54 +affairement affairement nom m s 0 0.54 0 0.34 +affairements affairement nom m p 0 0.54 0 0.2 +affairent affairer ver 2.75 13.38 0.44 1.42 ind:pre:3p; +affairer affairer ver 2.75 13.38 0.28 1.42 inf; +affaireraient affairer ver 2.75 13.38 0 0.07 cnd:pre:3p; +affaires affaire nom f p 393.83 253.38 186.32 102.84 +affairions affairer ver 2.75 13.38 0 0.07 ind:imp:1p; +affairisme affairisme nom m s 0 0.07 0 0.07 +affairiste affairiste adj m s 0.01 0.14 0.01 0.14 +affairistes affairiste nom p 0.14 0.14 0.14 0.07 +affairons affairer ver 2.75 13.38 0 0.07 ind:pre:1p; +affairèrent affairer ver 2.75 13.38 0 0.2 ind:pas:3p; +affairé affairer ver m s 2.75 13.38 0.16 0.41 par:pas; +affairée affairé adj f s 0.21 2.64 0.04 0.61 +affairées affairé adj f p 0.21 2.64 0.01 0.27 +affairés affairé adj m p 0.21 2.64 0.12 0.74 +affaissa affaisser ver 1.03 11.22 0 1.08 ind:pas:3s; +affaissaient affaisser ver 1.03 11.22 0.01 0.41 ind:imp:3p; +affaissait affaisser ver 1.03 11.22 0.03 0.74 ind:imp:3s; +affaissant affaisser ver 1.03 11.22 0.01 0.61 par:pre; +affaisse affaisser ver 1.03 11.22 0.31 1.49 imp:pre:2s;ind:pre:3s; +affaissement affaissement nom m s 0.08 1.55 0.07 1.35 +affaissements affaissement nom m p 0.08 1.55 0.01 0.2 +affaissent affaisser ver 1.03 11.22 0.34 1.08 ind:pre:3p; +affaisser affaisser ver 1.03 11.22 0.03 0.88 inf; +affaisseraient affaisser ver 1.03 11.22 0 0.14 cnd:pre:3p; +affaisserait affaisser ver 1.03 11.22 0 0.07 cnd:pre:3s; +affaissions affaisser ver 1.03 11.22 0 0.07 ind:imp:1p; +affaissèrent affaisser ver 1.03 11.22 0 0.14 ind:pas:3p; +affaissé affaisser ver m s 1.03 11.22 0.14 2.5 par:pas; +affaissée affaisser ver f s 1.03 11.22 0.05 1.15 par:pas; +affaissées affaisser ver f p 1.03 11.22 0 0.41 par:pas; +affaissés affaisser ver m p 1.03 11.22 0.11 0.47 par:pas; +affala affaler ver 1.01 14.05 0 2.09 ind:pas:3s; +affalai affaler ver 1.01 14.05 0 0.07 ind:pas:1s; +affalaient affaler ver 1.01 14.05 0 0.2 ind:imp:3p; +affalais affaler ver 1.01 14.05 0 0.14 ind:imp:1s; +affalait affaler ver 1.01 14.05 0.01 0.54 ind:imp:3s; +affalant affaler ver 1.01 14.05 0.01 0.74 par:pre; +affale affaler ver 1.01 14.05 0.1 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affalement affalement nom m s 0.01 0.14 0.01 0.14 +affalent affaler ver 1.01 14.05 0.01 0.27 ind:pre:3p; +affaler affaler ver 1.01 14.05 0.27 1.89 inf; +affalez affaler ver 1.01 14.05 0.05 0 imp:pre:2p; +affalons affaler ver 1.01 14.05 0 0.07 ind:pre:1p; +affalèrent affaler ver 1.01 14.05 0 0.14 ind:pas:3p; +affalé affaler ver m s 1.01 14.05 0.38 3.92 par:pas; +affalée affaler ver f s 1.01 14.05 0.04 1.01 par:pas; +affalées affaler ver f p 1.01 14.05 0.02 0.54 par:pas; +affalés affaler ver m p 1.01 14.05 0.13 1.08 par:pas; +affamaient affamer ver 6.62 3.72 0.01 0.07 ind:imp:3p; +affamait affamer ver 6.62 3.72 0.03 0.34 ind:imp:3s; +affamant affamer ver 6.62 3.72 0.17 0.07 par:pre; +affamantes affamant adj f p 0 0.07 0 0.07 +affame affamer ver 6.62 3.72 0.25 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affament affamer ver 6.62 3.72 0.18 0 ind:pre:3p; +affamer affamer ver 6.62 3.72 0.33 0.14 inf; +affamera affamer ver 6.62 3.72 0.01 0 ind:fut:3s; +affamez affamer ver 6.62 3.72 0.05 0 imp:pre:2p;ind:pre:2p; +affamé affamer ver m s 6.62 3.72 2.99 1.15 par:pas; +affamée affamer ver f s 6.62 3.72 1.3 0.81 par:pas; +affamées affamé adj f p 5.67 6.08 0.59 0.68 +affamés affamé adj m p 5.67 6.08 1.92 2.5 +affect affect nom m s 0.26 0 0.26 0 +affecta affecter ver 16.1 25.34 0.03 1.28 ind:pas:3s; +affectai affecter ver 16.1 25.34 0 0.14 ind:pas:1s; +affectaient affecter ver 16.1 25.34 0.07 1.62 ind:imp:3p; +affectais affecter ver 16.1 25.34 0.01 0.34 ind:imp:1s; +affectait affecter ver 16.1 25.34 0.36 4.12 ind:imp:3s; +affectant affecter ver 16.1 25.34 0.27 2.36 par:pre; +affectassent affecter ver 16.1 25.34 0 0.07 sub:imp:3p; +affectation affectation nom f s 2.93 5.27 2.65 5 +affectations affectation nom f p 2.93 5.27 0.28 0.27 +affecte affecter ver 16.1 25.34 4.38 2.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affectent affecter ver 16.1 25.34 0.61 1.01 ind:pre:3p; +affecter affecter ver 16.1 25.34 2.35 2.23 ind:pre:2p;inf; +affectera affecter ver 16.1 25.34 0.72 0.14 ind:fut:3s; +affecterai affecter ver 16.1 25.34 0.03 0.07 ind:fut:1s; +affecteraient affecter ver 16.1 25.34 0.02 0 cnd:pre:3p; +affecterait affecter ver 16.1 25.34 0.32 0 cnd:pre:3s; +affecteriez affecter ver 16.1 25.34 0.01 0 cnd:pre:2p; +affecteront affecter ver 16.1 25.34 0.04 0 ind:fut:3p; +affectez affecter ver 16.1 25.34 0.2 0.07 imp:pre:2p;ind:pre:2p; +affectiez affecter ver 16.1 25.34 0.01 0.07 ind:imp:2p; +affectif affectif adj m s 2.05 2.91 0.94 1.28 +affectifs affectif adj m p 2.05 2.91 0.27 0.34 +affection affection nom f s 13.06 31.22 12.68 29.53 +affectionnaient affectionner ver 0.4 4.12 0 0.2 ind:imp:3p; +affectionnais affectionner ver 0.4 4.12 0 0.14 ind:imp:1s; +affectionnait affectionner ver 0.4 4.12 0.07 1.49 ind:imp:3s; +affectionnant affectionner ver 0.4 4.12 0 0.14 par:pre; +affectionne affectionner ver 0.4 4.12 0.22 1.01 ind:pre:1s;ind:pre:3s; +affectionnent affectionner ver 0.4 4.12 0 0.74 ind:pre:3p; +affectionner affectionner ver 0.4 4.12 0 0.2 inf; +affectionnez affectionner ver 0.4 4.12 0.01 0.14 imp:pre:2p;ind:pre:2p; +affectionné affectionner ver m s 0.4 4.12 0.1 0 par:pas; +affectionnée affectionné adj f s 0.01 0.41 0 0.27 +affectionnés affectionné adj m p 0.01 0.41 0 0.07 +affections affection nom f p 13.06 31.22 0.38 1.69 +affective affectif adj f s 2.05 2.91 0.66 1.08 +affectivement affectivement adv 0.3 0.2 0.3 0.2 +affectives affectif adj f p 2.05 2.91 0.18 0.2 +affectivité affectivité nom f s 0.01 0.41 0.01 0.41 +affectons affecter ver 16.1 25.34 0.03 0.2 imp:pre:1p;ind:pre:1p; +affectueuse affectueux adj f s 5.2 14.59 1.56 5.41 +affectueusement affectueusement adv 1.11 3.38 1.11 3.38 +affectueuses affectueux adj f p 5.2 14.59 0.08 1.22 +affectueux affectueux adj m 5.2 14.59 3.56 7.97 +affectâmes affecter ver 16.1 25.34 0 0.07 ind:pas:1p; +affectât affecter ver 16.1 25.34 0 0.14 sub:imp:3s; +affectèrent affecter ver 16.1 25.34 0 0.61 ind:pas:3p; +affecté affecter ver m s 16.1 25.34 4.43 4.93 par:pas; +affectée affecter ver f s 16.1 25.34 1.17 1.35 par:pas; +affectées affecter ver f p 16.1 25.34 0.29 0.74 par:pas; +affectés affecter ver m p 16.1 25.34 0.73 1.22 par:pas; +affermi affermir ver m s 0.23 5.61 0.02 0.34 par:pas; +affermie affermir ver f s 0.23 5.61 0.01 0.54 par:pas; +affermir affermir ver 0.23 5.61 0.02 1.69 inf; +affermira affermir ver 0.23 5.61 0.02 0 ind:fut:3s; +affermis affermir ver m p 0.23 5.61 0 0.41 ind:pre:1s;par:pas; +affermissaient affermir ver 0.23 5.61 0 0.2 ind:imp:3p; +affermissait affermir ver 0.23 5.61 0 0.34 ind:imp:3s; +affermissant affermir ver 0.23 5.61 0.01 0.34 par:pre; +affermisse affermir ver 0.23 5.61 0 0.07 sub:pre:3s; +affermissement affermissement nom m s 0 0.14 0 0.14 +affermissent affermir ver 0.23 5.61 0.01 0.2 ind:pre:3p; +affermit affermir ver 0.23 5.61 0.14 1.49 ind:pre:3s;ind:pas:3s; +afficha afficher ver 8.35 19.26 0 0.47 ind:pas:3s; +affichage affichage nom m s 1.3 1.49 1.29 1.42 +affichages affichage nom m p 1.3 1.49 0.01 0.07 +affichaient afficher ver 8.35 19.26 0.01 1.35 ind:imp:3p; +affichais afficher ver 8.35 19.26 0.02 0.68 ind:imp:1s;ind:imp:2s; +affichait afficher ver 8.35 19.26 0.15 4.93 ind:imp:3s; +affichant afficher ver 8.35 19.26 0.19 1.49 par:pre; +affiche affiche nom f s 9.78 19.86 5.38 8.38 +affichent afficher ver 8.35 19.26 0.52 0.68 ind:pre:3p; +afficher afficher ver 8.35 19.26 2.06 3.78 inf;; +affichera afficher ver 8.35 19.26 0.04 0.07 ind:fut:3s; +afficherai afficher ver 8.35 19.26 0.07 0 ind:fut:1s; +afficherait afficher ver 8.35 19.26 0.01 0.14 cnd:pre:3s; +affiches affiche nom f p 9.78 19.86 4.39 11.49 +affichette affichette nom f s 0.26 1.35 0.19 1.08 +affichettes affichette nom f p 0.26 1.35 0.07 0.27 +afficheur afficheur nom m s 0.03 0.27 0.01 0.27 +afficheurs afficheur nom m p 0.03 0.27 0.01 0 +affichez afficher ver 8.35 19.26 0.41 0.07 imp:pre:2p;ind:pre:2p; +affichions afficher ver 8.35 19.26 0 0.14 ind:imp:1p; +affichiste affichiste nom s 0 0.2 0 0.14 +affichistes affichiste nom p 0 0.2 0 0.07 +affichons afficher ver 8.35 19.26 0.16 0 imp:pre:1p;ind:pre:1p; +affichât afficher ver 8.35 19.26 0 0.07 sub:imp:3s; +affichèrent afficher ver 8.35 19.26 0 0.2 ind:pas:3p; +affiché afficher ver m s 8.35 19.26 1.79 1.62 par:pas; +affichée afficher ver f s 8.35 19.26 0.29 0.88 par:pas; +affichées afficher ver f p 8.35 19.26 0.17 0.47 par:pas; +affichés afficher ver m p 8.35 19.26 0.11 0.74 par:pas; +affidavit affidavit nom m s 0.06 0 0.06 0 +affidé affidé nom m s 0.01 0.27 0.01 0.14 +affidée affidé adj f s 0 0.07 0 0.07 +affidés affidé nom m p 0.01 0.27 0 0.14 +affile affiler ver 0.04 0.07 0 0.07 ind:pre:3s; +affiler affiler ver 0.04 0.07 0.03 0 inf; +affilia affilier ver 0.36 0.74 0 0.07 ind:pas:3s; +affiliaient affilier ver 0.36 0.74 0 0.07 ind:imp:3p; +affiliant affilier ver 0.36 0.74 0 0.07 par:pre; +affiliation affiliation nom f s 0.33 0.14 0.26 0.14 +affiliations affiliation nom f p 0.33 0.14 0.07 0 +affilier affilier ver 0.36 0.74 0.01 0.27 inf; +affilié affilier ver m s 0.36 0.74 0.15 0.2 par:pas; +affiliée affilier ver f s 0.36 0.74 0.04 0 par:pas; +affiliées affilié nom f p 0.14 0.41 0.04 0 +affiliés affilier ver m p 0.36 0.74 0.17 0.07 par:pas; +affilé affilé adj m s 3.04 4.19 0.17 0.07 +affilée affilé adj f s 3.04 4.19 2.8 3.92 +affilées affilé adj f p 3.04 4.19 0.04 0.14 +affilés affilé adj m p 3.04 4.19 0.04 0.07 +affin affin adj m s 0.02 0 0.02 0 +affina affiner ver 0.76 3.38 0 0.07 ind:pas:3s; +affinage affinage nom m s 0 0.07 0 0.07 +affinaient affiner ver 0.76 3.38 0 0.07 ind:imp:3p; +affinait affiner ver 0.76 3.38 0 0.88 ind:imp:3s; +affinant affiner ver 0.76 3.38 0 0.41 par:pre; +affine affiner ver 0.76 3.38 0.18 0.34 ind:pre:1s;ind:pre:3s; +affinement affinement nom m s 0.01 0.2 0.01 0.2 +affinent affiner ver 0.76 3.38 0.01 0.2 ind:pre:3p; +affiner affiner ver 0.76 3.38 0.43 0.68 inf; +affinera affiner ver 0.76 3.38 0.02 0 ind:fut:3s; +affinerait affiner ver 0.76 3.38 0.01 0.07 cnd:pre:3s; +affinité affinité nom f s 1.23 4.46 0.6 2.16 +affinités affinité nom f p 1.23 4.46 0.62 2.3 +affinons affiner ver 0.76 3.38 0.01 0 ind:pre:1p; +affiné affiné adj m s 0.12 0.27 0.12 0.2 +affinée affiner ver f s 0.76 3.38 0.01 0.14 par:pas; +affinées affiner ver f p 0.76 3.38 0.02 0.2 par:pas; +affiquets affiquet nom m p 0 0.07 0 0.07 +affirma affirmer ver 15.61 63.51 0.06 10.07 ind:pas:3s; +affirmai affirmer ver 15.61 63.51 0 0.81 ind:pas:1s; +affirmaient affirmer ver 15.61 63.51 0.03 2.36 ind:imp:3p; +affirmais affirmer ver 15.61 63.51 0.03 1.22 ind:imp:1s;ind:imp:2s; +affirmait affirmer ver 15.61 63.51 0.53 11.08 ind:imp:3s; +affirmant affirmer ver 15.61 63.51 0.51 3.92 par:pre; +affirmatif affirmatif adj m s 4.91 1.89 4.82 1.35 +affirmatifs affirmatif adj m p 4.91 1.89 0 0.14 +affirmation affirmation nom f s 1.96 6.42 1.27 4.66 +affirmations affirmation nom f p 1.96 6.42 0.69 1.76 +affirmative affirmative nom f s 0.16 0.61 0.16 0.61 +affirmativement affirmativement adv 0 0.74 0 0.74 +affirme affirmer ver 15.61 63.51 5.46 9.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +affirment affirmer ver 15.61 63.51 1.67 2.7 ind:pre:3p; +affirmer affirmer ver 15.61 63.51 4.26 13.58 inf; +affirmerai affirmer ver 15.61 63.51 0 0.07 ind:fut:1s; +affirmerait affirmer ver 15.61 63.51 0.01 0.14 cnd:pre:3s; +affirmeras affirmer ver 15.61 63.51 0.01 0.07 ind:fut:2s; +affirmerez affirmer ver 15.61 63.51 0.01 0 ind:fut:2p; +affirmeriez affirmer ver 15.61 63.51 0.01 0 cnd:pre:2p; +affirmeront affirmer ver 15.61 63.51 0.03 0.07 ind:fut:3p; +affirmes affirmer ver 15.61 63.51 0.09 0.2 ind:pre:2s; +affirmez affirmer ver 15.61 63.51 0.87 0.41 imp:pre:2p;ind:pre:2p; +affirmiez affirmer ver 15.61 63.51 0.15 0.07 ind:imp:2p; +affirmions affirmer ver 15.61 63.51 0 0.14 ind:imp:1p; +affirmons affirmer ver 15.61 63.51 0.06 0.27 imp:pre:1p;ind:pre:1p; +affirmât affirmer ver 15.61 63.51 0 0.14 sub:imp:3s; +affirmèrent affirmer ver 15.61 63.51 0.01 0.81 ind:pas:3p; +affirmé affirmer ver m s 15.61 63.51 1.66 4.59 imp:pre:2s;par:pas;par:pas; +affirmée affirmer ver f s 15.61 63.51 0.04 0.41 par:pas; +affirmées affirmer ver f p 15.61 63.51 0 0.2 par:pas; +affirmés affirmer ver m p 15.61 63.51 0.1 0.27 par:pas; +affixé affixé adj m s 0 0.07 0 0.07 +afflanqué afflanquer ver m s 0 0.07 0 0.07 par:pas; +affleura affleurer ver 0.15 6.01 0 0.47 ind:pas:3s; +affleuraient affleurer ver 0.15 6.01 0.01 0.34 ind:imp:3p; +affleurait affleurer ver 0.15 6.01 0.11 1.08 ind:imp:3s; +affleurant affleurer ver 0.15 6.01 0 0.14 par:pre; +affleure affleurer ver 0.15 6.01 0.02 1.55 imp:pre:2s;ind:pre:3s; +affleurement affleurement nom m s 0.03 0.88 0.03 0.47 +affleurements affleurement nom m p 0.03 0.88 0 0.41 +affleurent affleurer ver 0.15 6.01 0.01 0.95 ind:pre:3p; +affleurer affleurer ver 0.15 6.01 0 1.08 inf; +affleurât affleurer ver 0.15 6.01 0 0.07 sub:imp:3s; +affleurèrent affleurer ver 0.15 6.01 0 0.14 ind:pas:3p; +affleuré affleurer ver m s 0.15 6.01 0 0.2 par:pas; +affliction affliction nom f s 1.27 2.77 1.09 2.5 +afflictions affliction nom f p 1.27 2.77 0.18 0.27 +afflige affliger ver 3.21 5.95 0.74 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affligea affliger ver 3.21 5.95 0.03 0.2 ind:pas:3s; +affligeaient affliger ver 3.21 5.95 0.01 0.07 ind:imp:3p; +affligeait affliger ver 3.21 5.95 0.01 0.2 ind:imp:3s; +affligeant affligeant adj m s 0.6 1.62 0.38 0.54 +affligeante affligeant adj f s 0.6 1.62 0.08 0.68 +affligeantes affligeant adj f p 0.6 1.62 0.02 0.27 +affligeants affligeant adj m p 0.6 1.62 0.12 0.14 +affligent affliger ver 3.21 5.95 0.2 0.14 ind:pre:3p; +affliger affliger ver 3.21 5.95 0.38 0.2 inf; +affligez affliger ver 3.21 5.95 0.03 0.07 imp:pre:2p; +affligèrent affliger ver 3.21 5.95 0.01 0.07 ind:pas:3p; +affligé affliger ver m s 3.21 5.95 1.11 2.3 par:pas; +affligée affliger ver f s 3.21 5.95 0.49 0.95 par:pas; +affligés affligé adj m p 1.66 1.49 0.6 0.34 +afflua affluer ver 1.51 7.5 0 0.27 ind:pas:3s; +affluaient affluer ver 1.51 7.5 0.04 1.69 ind:imp:3p; +affluait affluer ver 1.51 7.5 0.02 0.54 ind:imp:3s; +affluant affluer ver 1.51 7.5 0.11 0.27 par:pre; +afflue affluer ver 1.51 7.5 0.39 0.61 ind:pre:3s; +affluence affluence nom f s 0.51 2.64 0.51 2.64 +affluent affluer ver 1.51 7.5 0.61 1.49 ind:pre:3p; +affluentes affluent adj f p 0.16 0.41 0 0.07 +affluents affluent nom m p 0.39 0.95 0.34 0.41 +affluer affluer ver 1.51 7.5 0.21 1.35 inf; +afflueraient affluer ver 1.51 7.5 0.01 0.07 cnd:pre:3p; +afflux afflux nom m 0.25 2.3 0.25 2.3 +affluèrent affluer ver 1.51 7.5 0 0.81 ind:pas:3p; +afflué affluer ver m s 1.51 7.5 0.12 0.41 par:pas; +affola affoler ver 5.92 20.54 0 2.16 ind:pas:3s; +affolai affoler ver 5.92 20.54 0 0.14 ind:pas:1s; +affolaient affoler ver 5.92 20.54 0.01 0.54 ind:imp:3p; +affolais affoler ver 5.92 20.54 0.01 0.27 ind:imp:1s; +affolait affoler ver 5.92 20.54 0.02 2.7 ind:imp:3s; +affolant affolant adj m s 0.1 2.57 0.1 1.35 +affolante affolant adj f s 0.1 2.57 0 0.74 +affolantes affolant adj f p 0.1 2.57 0 0.2 +affolants affolant adj m p 0.1 2.57 0 0.27 +affole affoler ver 5.92 20.54 1.63 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affolement affolement nom m s 0.89 5.34 0.89 5.34 +affolent affoler ver 5.92 20.54 0.28 0.68 ind:pre:3p; +affoler affoler ver 5.92 20.54 1 2.5 inf;; +affolera affoler ver 5.92 20.54 0.14 0.07 ind:fut:3s; +affolerais affoler ver 5.92 20.54 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +affolerait affoler ver 5.92 20.54 0.14 0.07 cnd:pre:3s; +affoleront affoler ver 5.92 20.54 0.01 0 ind:fut:3p; +affoles affoler ver 5.92 20.54 0.23 0.2 ind:pre:2s; +affolez affoler ver 5.92 20.54 0.93 0.27 imp:pre:2p;ind:pre:2p; +affoliez affoler ver 5.92 20.54 0.01 0 ind:imp:2p; +affolons affoler ver 5.92 20.54 0.04 0.27 imp:pre:1p;ind:pre:1p; +affolât affoler ver 5.92 20.54 0 0.07 sub:imp:3s; +affolèrent affoler ver 5.92 20.54 0 0.14 ind:pas:3p; +affolé affoler ver m s 5.92 20.54 0.76 2.84 par:pas; +affolée affoler ver f s 5.92 20.54 0.51 1.22 par:pas; +affolées affolé adj f p 0.91 11.49 0.1 0.74 +affolés affolé adj m p 0.91 11.49 0.18 2.57 +affouage affouage nom m s 0 0.14 0 0.07 +affouages affouage nom m p 0 0.14 0 0.07 +affouillait affouiller ver 0 0.14 0 0.07 ind:imp:3s; +affouillement affouillement nom m s 0 0.14 0 0.07 +affouillements affouillement nom m p 0 0.14 0 0.07 +affouillé affouiller ver m s 0 0.14 0 0.07 par:pas; +affranchi affranchi nom m s 1.34 1.49 0.46 0.61 +affranchie affranchir ver f s 1.87 11.42 0.19 1.01 par:pas; +affranchies affranchi adj f p 0.24 1.82 0 0.34 +affranchir affranchir ver 1.87 11.42 0.55 5.2 inf; +affranchirait affranchir ver 1.87 11.42 0 0.14 cnd:pre:3s; +affranchis affranchi nom m p 1.34 1.49 0.76 0.61 +affranchissais affranchir ver 1.87 11.42 0.01 0.07 ind:imp:1s;ind:imp:2s; +affranchissait affranchir ver 1.87 11.42 0 0.27 ind:imp:3s; +affranchissant affranchir ver 1.87 11.42 0 0.27 par:pre; +affranchisse affranchir ver 1.87 11.42 0.01 0.47 sub:pre:1s;sub:pre:3s; +affranchissement affranchissement nom m s 0.05 0.47 0.05 0.47 +affranchit affranchir ver 1.87 11.42 0.29 1.15 ind:pre:3s;ind:pas:3s; +affres affre nom f p 1.23 2.36 1.23 2.36 +affreuse affreux adj f s 34.96 39.46 7.86 12.64 +affreusement affreusement adv 3.13 5.61 3.13 5.61 +affreuses affreux adj f p 34.96 39.46 1.77 4.59 +affreux affreux adj m 34.96 39.46 25.34 22.23 +affriandai affriander ver 0 0.27 0 0.07 ind:pas:1s; +affriander affriander ver 0 0.27 0 0.07 inf; +affriandé affriander ver m s 0 0.27 0 0.07 par:pas; +affriandés affriander ver m p 0 0.27 0 0.07 par:pas; +affriolait affrioler ver 0.02 0.27 0 0.07 ind:imp:3s; +affriolant affriolant adj m s 0.26 0.2 0.12 0.14 +affriolante affriolant adj f s 0.26 0.2 0.03 0.07 +affriolantes affriolant adj f p 0.26 0.2 0.04 0 +affriolants affriolant adj m p 0.26 0.2 0.07 0 +affriole affrioler ver 0.02 0.27 0.01 0 ind:pre:3s; +affrioler affrioler ver 0.02 0.27 0 0.07 inf; +affriolerait affrioler ver 0.02 0.27 0.01 0 cnd:pre:3s; +affriolés affrioler ver m p 0.02 0.27 0 0.07 par:pas; +affront affront nom m s 3.36 3.85 3.11 2.77 +affronta affronter ver 30.72 22.43 0.03 0.54 ind:pas:3s; +affrontai affronter ver 30.72 22.43 0 0.07 ind:pas:1s; +affrontaient affronter ver 30.72 22.43 0.2 1.62 ind:imp:3p; +affrontais affronter ver 30.72 22.43 0.17 0.27 ind:imp:1s;ind:imp:2s; +affrontait affronter ver 30.72 22.43 0.14 0.88 ind:imp:3s; +affrontant affronter ver 30.72 22.43 0.63 0.88 par:pre; +affronte affronter ver 30.72 22.43 2.96 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +affrontement affrontement nom m s 2.66 4.05 1.72 2.43 +affrontements affrontement nom m p 2.66 4.05 0.94 1.62 +affrontent affronter ver 30.72 22.43 0.74 1.49 ind:pre:3p; +affronter affronter ver 30.72 22.43 19.57 13.38 inf;; +affrontera affronter ver 30.72 22.43 0.63 0.07 ind:fut:3s; +affronterai affronter ver 30.72 22.43 0.56 0 ind:fut:1s; +affronteraient affronter ver 30.72 22.43 0.01 0.14 cnd:pre:3p; +affronterais affronter ver 30.72 22.43 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +affronterait affronter ver 30.72 22.43 0.08 0.41 cnd:pre:3s; +affronteras affronter ver 30.72 22.43 0.2 0 ind:fut:2s; +affronterez affronter ver 30.72 22.43 0.14 0 ind:fut:2p; +affronterons affronter ver 30.72 22.43 0.22 0 ind:fut:1p; +affronteront affronter ver 30.72 22.43 0.2 0 ind:fut:3p; +affrontes affronter ver 30.72 22.43 0.58 0.07 ind:pre:2s; +affrontez affronter ver 30.72 22.43 0.51 0 imp:pre:2p;ind:pre:2p; +affrontiez affronter ver 30.72 22.43 0.02 0.07 ind:imp:2p; +affrontions affronter ver 30.72 22.43 0.16 0.14 ind:imp:1p; +affrontons affronter ver 30.72 22.43 0.6 0.14 imp:pre:1p;ind:pre:1p; +affronts affront nom m p 3.36 3.85 0.25 1.08 +affrontèrent affronter ver 30.72 22.43 0.02 0.14 ind:pas:3p; +affronté affronter ver m s 30.72 22.43 1.92 0.81 par:pas; +affrontée affronter ver f s 30.72 22.43 0.11 0.14 par:pas; +affrontées affronter ver f p 30.72 22.43 0.04 0.14 par:pas; +affrontés affronter ver m p 30.72 22.43 0.23 0.2 par:pas; +affrète affréter ver 0.67 0.47 0.04 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +affrètement affrètement nom m s 0.03 0 0.03 0 +affréter affréter ver 0.67 0.47 0.28 0.27 inf; +affréterons affréter ver 0.67 0.47 0 0.07 ind:fut:1p; +affréteur affréteur nom m s 0.02 0.07 0.02 0.07 +affrétez affréter ver 0.67 0.47 0.18 0 imp:pre:2p;ind:pre:2p; +affrété affréter ver m s 0.67 0.47 0.18 0.07 par:pas; +affubla affubler ver 0.48 6.55 0 0.14 ind:pas:3s; +affublait affubler ver 0.48 6.55 0 0.41 ind:imp:3s; +affublant affubler ver 0.48 6.55 0.01 0.54 par:pre; +affuble affubler ver 0.48 6.55 0.03 0.47 ind:pre:1s;ind:pre:3s; +affublement affublement nom m s 0 0.14 0 0.14 +affublent affubler ver 0.48 6.55 0.02 0.34 ind:pre:3p; +affubler affubler ver 0.48 6.55 0.14 0.68 inf; +affublerais affubler ver 0.48 6.55 0 0.07 cnd:pre:1s; +affublerait affubler ver 0.48 6.55 0 0.14 cnd:pre:3s; +affublons affubler ver 0.48 6.55 0 0.07 ind:pre:1p; +affublé affubler ver m s 0.48 6.55 0.23 2.03 par:pas; +affublée affubler ver f s 0.48 6.55 0.03 0.34 par:pas; +affublées affubler ver f p 0.48 6.55 0 0.14 par:pas; +affublés affubler ver m p 0.48 6.55 0.02 1.22 par:pas; +affurait affurer ver 0 1.49 0 0.07 ind:imp:3s; +affure affurer ver 0 1.49 0 0.81 ind:pre:3s; +affurer affurer ver 0 1.49 0 0.41 inf; +affures affurer ver 0 1.49 0 0.07 ind:pre:2s; +affuré affurer ver m s 0 1.49 0 0.07 par:pas; +affurée affurer ver f s 0 1.49 0 0.07 par:pas; +affusions affusion nom f p 0 0.07 0 0.07 +afférent afférent adj m s 0.06 0.34 0.04 0 +afférente afférent adj f s 0.06 0.34 0.01 0 +afférentes afférent adj f p 0.06 0.34 0.01 0.2 +afférents afférent adj m p 0.06 0.34 0 0.14 +afféterie afféterie nom f s 0 0.41 0 0.2 +afféteries afféterie nom f p 0 0.41 0 0.2 +affétées affété adj f p 0 0.07 0 0.07 +affût affût nom m s 1.42 11.35 1.36 10.81 +affûta affûter ver 0.77 3.65 0 0.14 ind:pas:3s; +affûtage affûtage nom m s 0.04 0.14 0.04 0.14 +affûtait affûter ver 0.77 3.65 0 0.14 ind:imp:3s; +affûtant affûter ver 0.77 3.65 0 0.2 par:pre; +affûte affûter ver 0.77 3.65 0.11 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affûter affûter ver 0.77 3.65 0.2 0.74 inf; +affûterai affûter ver 0.77 3.65 0.01 0 ind:fut:1s; +affûteur affûteur nom m s 0.01 0.07 0.01 0.07 +affûtez affûter ver 0.77 3.65 0.01 0 imp:pre:2p; +affûts affût nom m p 1.42 11.35 0.06 0.54 +affûtât affûter ver 0.77 3.65 0 0.07 sub:imp:3s; +affûté affûter ver m s 0.77 3.65 0.23 0.81 par:pas; +affûtée affûter ver f s 0.77 3.65 0.12 0.68 par:pas; +affûtées affûter ver f p 0.77 3.65 0.02 0.07 par:pas; +affûtés affûter ver m p 0.77 3.65 0.06 0.41 par:pas; +afghan afghan adj m s 1.48 0.68 0.68 0.34 +afghane afghan adj f s 1.48 0.68 0.39 0.07 +afghanes afghan adj f p 1.48 0.68 0.16 0.14 +afghans afghan nom m p 1.12 0.2 0.47 0.07 +aficionado aficionado nom m s 0.21 0.68 0.04 0.2 +aficionados aficionado nom m p 0.21 0.68 0.17 0.47 +afin afin adv_sup 0.76 0.95 0.76 0.95 +afin_d afin_d pre 0.04 0.07 0.04 0.07 +afin_de afin_de pre 15.64 43.18 15.64 43.18 +afin_qu afin_qu con 0.05 0 0.05 0 +afin_que afin_que con 9.63 14.93 9.63 14.93 +africain africain adj m s 5.46 12.09 2.34 3.65 +africaine africain adj f s 5.46 12.09 1.4 4.32 +africaines africain adj f p 5.46 12.09 0.52 1.35 +africains africain nom m p 2.28 4.05 1.48 1.76 +africanisme africanisme nom m s 0.1 0 0.1 0 +afrikaans afrikaans nom m 0.05 0 0.05 0 +afrikaner afrikaner nom s 0.14 0 0.05 0 +afrikaners afrikaner nom p 0.14 0 0.09 0 +afro afro adj 1.21 0.27 1.21 0.27 +afro_américain afro_américain nom m s 0.95 0 0.48 0 +afro_américain afro_américain adj f s 0.67 0 0.23 0 +afro_américain afro_américain nom m p 0.95 0 0.39 0 +afro_asiatique afro_asiatique adj f s 0.01 0 0.01 0 +afro_brésilien afro_brésilien adj f s 0.01 0 0.01 0 +afro_cubain afro_cubain adj m s 0.03 0.07 0.01 0 +afro_cubain afro_cubain adj f s 0.03 0.07 0.02 0 +afro_cubain afro_cubain adj m p 0.03 0.07 0 0.07 +after_shave after_shave nom m 0.51 0.68 0.03 0.07 +after_shave after_shave nom m 0.51 0.68 0.47 0.61 +aga aga nom m s 0.65 6.01 0.65 5.95 +agace agacer ver 6.35 30.68 2.3 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agacement agacement nom m s 0.21 7.57 0.21 7.3 +agacements agacement nom m p 0.21 7.57 0 0.27 +agacent agacer ver 6.35 30.68 0.44 1.08 ind:pre:3p; +agacer agacer ver 6.35 30.68 1.19 2.77 ind:pre:2p;inf; +agacera agacer ver 6.35 30.68 0.01 0.14 ind:fut:3s; +agacerait agacer ver 6.35 30.68 0.01 0.14 cnd:pre:3s; +agaceras agacer ver 6.35 30.68 0.01 0 ind:fut:2s; +agacerie agacerie nom f s 0.01 0.54 0 0.07 +agaceries agacerie nom f p 0.01 0.54 0.01 0.47 +agaceront agacer ver 6.35 30.68 0 0.07 ind:fut:3p; +agaces agacer ver 6.35 30.68 0.46 0.27 ind:pre:2s; +agaceur agaceur nom m s 0 0.07 0 0.07 +agacez agacer ver 6.35 30.68 0.35 0.14 imp:pre:2p;ind:pre:2p; +agacèrent agacer ver 6.35 30.68 0 0.14 ind:pas:3p; +agacé agacer ver m s 6.35 30.68 0.74 8.45 par:pas; +agacée agacer ver f s 6.35 30.68 0.28 3.11 par:pas; +agacées agacer ver f p 6.35 30.68 0 0.34 par:pas; +agacés agacer ver m p 6.35 30.68 0.13 0.47 par:pas; +agames agame nom m p 0.01 0 0.01 0 +agami agami nom m s 0 0.07 0 0.07 +agapanthe agapanthe nom f s 0.01 0.07 0.01 0 +agapanthes agapanthe nom f p 0.01 0.07 0 0.07 +agape agape nom f s 0.04 0.68 0 0.07 +agapes agape nom f p 0.04 0.68 0.04 0.61 +agar_agar agar_agar nom m s 0 0.07 0 0.07 +agas aga nom m p 0.65 6.01 0 0.07 +agasses agasse nom f p 0 0.07 0 0.07 +agate agate nom f s 0.01 1.22 0.01 0.61 +agates agate nom f p 0.01 1.22 0 0.61 +agathe agathe nom f s 0 0.14 0 0.14 +agave agave nom m s 0.01 0.47 0 0.07 +agaves agave nom m p 0.01 0.47 0.01 0.41 +agaça agacer ver 6.35 30.68 0 1.22 ind:pas:3s; +agaçaient agacer ver 6.35 30.68 0.01 1.96 ind:imp:3p; +agaçais agacer ver 6.35 30.68 0 0.27 ind:imp:1s; +agaçait agacer ver 6.35 30.68 0.35 6.42 ind:imp:3s; +agaçant agaçant adj m s 1.99 4.19 1.45 2.5 +agaçante agaçant adj f s 1.99 4.19 0.4 1.22 +agaçantes agaçant adj f p 1.99 4.19 0.07 0.14 +agaçants agaçant adj m p 1.99 4.19 0.07 0.34 +age age nom m s 3.37 0.47 3.25 0.47 +agence agence nom f s 23.15 17.77 20.38 14.12 +agencement agencement nom m s 0.19 1.89 0.19 1.69 +agencements agencement nom m p 0.19 1.89 0 0.2 +agencer agencer ver 0.48 2.91 0.02 0.61 inf; +agences agence nom f p 23.15 17.77 2.77 3.65 +agencé agencer ver m s 0.48 2.91 0.16 0.61 par:pas; +agencée agencer ver f s 0.48 2.91 0 0.54 par:pas; +agencées agencer ver f p 0.48 2.91 0.01 0.27 par:pas; +agencés agencer ver m p 0.48 2.91 0.01 0.41 par:pas; +agenda agenda nom m s 5.84 6.08 5.69 5.41 +agendas agenda nom m p 5.84 6.08 0.16 0.68 +agenouilla agenouiller ver 5.2 23.31 0.03 5.54 ind:pas:3s; +agenouillai agenouiller ver 5.2 23.31 0.11 0.47 ind:pas:1s; +agenouillaient agenouiller ver 5.2 23.31 0.01 0.61 ind:imp:3p; +agenouillais agenouiller ver 5.2 23.31 0 0.27 ind:imp:1s; +agenouillait agenouiller ver 5.2 23.31 0.06 1.15 ind:imp:3s; +agenouillant agenouiller ver 5.2 23.31 0.01 0.88 par:pre; +agenouille agenouiller ver 5.2 23.31 1.52 2.3 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agenouillement agenouillement nom m s 0.27 0.27 0.27 0.27 +agenouillent agenouiller ver 5.2 23.31 0.14 0.61 ind:pre:3p; +agenouiller agenouiller ver 5.2 23.31 1.64 3.72 inf; +agenouillera agenouiller ver 5.2 23.31 0.06 0 ind:fut:3s; +agenouilleront agenouiller ver 5.2 23.31 0.01 0 ind:fut:3p; +agenouilles agenouiller ver 5.2 23.31 0.04 0 ind:pre:2s; +agenouillez agenouiller ver 5.2 23.31 0.33 0 imp:pre:2p;ind:pre:2p; +agenouillons agenouiller ver 5.2 23.31 0.12 0.07 imp:pre:1p;ind:pre:1p; +agenouillât agenouiller ver 5.2 23.31 0 0.07 sub:imp:3s; +agenouillèrent agenouiller ver 5.2 23.31 0.01 0.41 ind:pas:3p; +agenouillé agenouiller ver m s 5.2 23.31 1.04 3.72 par:pas; +agenouillée agenouiller ver f s 5.2 23.31 0.06 2.23 par:pas; +agenouillées agenouillé adj f p 0.15 2.36 0 0.41 +agenouillés agenouiller ver m p 5.2 23.31 0.02 1.08 par:pas; +agent agent nom m s 117.9 39.26 92.42 22.5 +agente agent nom f s 117.9 39.26 0.48 0.07 +agents agent nom m p 117.9 39.26 25 16.69 +agença agencer ver 0.48 2.91 0 0.07 ind:pas:3s; +agençaient agencer ver 0.48 2.91 0.01 0.07 ind:imp:3p; +agençait agencer ver 0.48 2.91 0.01 0.07 ind:imp:3s; +agençant agencer ver 0.48 2.91 0 0.07 par:pre; +ages age nom m p 3.37 0.47 0.13 0 +aggiornamento aggiornamento nom m s 0.04 0.07 0.04 0.07 +agglo agglo nom m s 0 0.07 0 0.07 +agglomère agglomérer ver 0.01 1.62 0 0.07 ind:pre:3s; +agglomèrent agglomérer ver 0.01 1.62 0 0.41 ind:pre:3p; +aggloméraient agglomérer ver 0.01 1.62 0 0.14 ind:imp:3p; +agglomérant agglomérer ver 0.01 1.62 0 0.07 par:pre; +agglomérat agglomérat nom m s 0 0.47 0 0.47 +agglomération agglomération nom f s 0.12 2.16 0.1 1.62 +agglomérations agglomération nom f p 0.12 2.16 0.02 0.54 +agglomérer agglomérer ver 0.01 1.62 0 0.2 inf; +agglomérera agglomérer ver 0.01 1.62 0 0.07 ind:fut:3s; +aggloméreront agglomérer ver 0.01 1.62 0 0.07 ind:fut:3p; +aggloméré aggloméré nom m s 0.06 0.34 0.06 0.27 +agglomérée agglomérer ver f s 0.01 1.62 0 0.14 par:pas; +agglomérées agglomérer ver f p 0.01 1.62 0.01 0.27 par:pas; +agglomérés aggloméré adj m p 0 0.47 0 0.41 +agglutina agglutiner ver 0.24 6.55 0 0.07 ind:pas:3s; +agglutinaient agglutiner ver 0.24 6.55 0 0.95 ind:imp:3p; +agglutinait agglutiner ver 0.24 6.55 0 0.34 ind:imp:3s; +agglutinant agglutiner ver 0.24 6.55 0 0.41 par:pre; +agglutinatif agglutinatif adj m s 0 0.07 0 0.07 +agglutination agglutination nom f s 0.01 0.14 0.01 0.14 +agglutine agglutiner ver 0.24 6.55 0 0.27 ind:pre:3s; +agglutinement agglutinement nom m s 0 0.07 0 0.07 +agglutinent agglutiner ver 0.24 6.55 0.04 1.01 ind:pre:3p; +agglutiner agglutiner ver 0.24 6.55 0.02 0.27 inf; +agglutinez agglutiner ver 0.24 6.55 0.01 0 imp:pre:2p; +agglutinogène agglutinogène nom m s 0 0.07 0 0.07 +agglutinèrent agglutiner ver 0.24 6.55 0 0.14 ind:pas:3p; +agglutiné agglutiner ver m s 0.24 6.55 0.01 0.2 par:pas; +agglutinée agglutiner ver f s 0.24 6.55 0 0.14 par:pas; +agglutinées agglutiner ver f p 0.24 6.55 0.01 0.88 par:pas; +agglutinés agglutiner ver m p 0.24 6.55 0.15 1.89 par:pas; +aggrava aggraver ver 7.61 10.54 0.02 0.68 ind:pas:3s; +aggravai aggraver ver 7.61 10.54 0 0.07 ind:pas:1s; +aggravaient aggraver ver 7.61 10.54 0 0.68 ind:imp:3p; +aggravait aggraver ver 7.61 10.54 0.06 2.43 ind:imp:3s; +aggravant aggraver ver 7.61 10.54 0.02 0.41 par:pre; +aggravante aggravant adj f s 0.26 0.54 0.02 0.34 +aggravantes aggravant adj f p 0.26 0.54 0.24 0.2 +aggravation aggravation nom f s 0.45 0.74 0.45 0.74 +aggrave aggraver ver 7.61 10.54 2.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aggravent aggraver ver 7.61 10.54 0.17 0.34 ind:pre:3p; +aggraver aggraver ver 7.61 10.54 2.32 2.43 inf; +aggravera aggraver ver 7.61 10.54 0.04 0.07 ind:fut:3s; +aggraverait aggraver ver 7.61 10.54 0.07 0 cnd:pre:3s; +aggraveriez aggraver ver 7.61 10.54 0 0.07 cnd:pre:2p; +aggravez aggraver ver 7.61 10.54 0.78 0 imp:pre:2p;ind:pre:2p; +aggraviez aggraver ver 7.61 10.54 0 0.07 ind:imp:2p; +aggravons aggraver ver 7.61 10.54 0.05 0 imp:pre:1p;ind:pre:1p; +aggravèrent aggraver ver 7.61 10.54 0 0.14 ind:pas:3p; +aggravé aggraver ver m s 7.61 10.54 1.36 0.88 par:pas; +aggravée aggraver ver f s 7.61 10.54 0.39 1.28 par:pas; +aggravées aggraver ver f p 7.61 10.54 0.04 0.07 par:pas; +aggravés aggraver ver m p 7.61 10.54 0.16 0.07 par:pas; +aghas agha nom m p 0 0.07 0 0.07 +agi agir ver m s 195.94 219.73 13.69 13.31 par:pas; +agie agir ver f s 195.94 219.73 0.14 0 par:pas; +agile agile adj s 2.17 5 1.69 3.31 +agiles agile adj p 2.17 5 0.47 1.69 +agilité agilité nom f s 1 3.38 1 3.31 +agilités agilité nom f p 1 3.38 0 0.07 +agios agio nom m p 0.17 0.07 0.17 0.07 +agioteur agioteur nom m s 0.01 0.07 0.01 0.07 +agir agir ver 195.94 219.73 37.48 29.66 inf; +agira agir ver 195.94 219.73 1.25 1.08 ind:fut:3s; +agirai agir ver 195.94 219.73 0.79 0.34 ind:fut:1s; +agiraient agir ver 195.94 219.73 0.03 0.14 cnd:pre:3p; +agirais agir ver 195.94 219.73 0.29 0.07 cnd:pre:1s;cnd:pre:2s; +agirait agir ver 195.94 219.73 2.08 3.85 cnd:pre:3s; +agiras agir ver 195.94 219.73 0.1 0.07 ind:fut:2s; +agirent agir ver 195.94 219.73 0 0.14 ind:pas:3p; +agirez agir ver 195.94 219.73 0.14 0.2 ind:fut:2p; +agiriez agir ver 195.94 219.73 0.09 0 cnd:pre:2p; +agirons agir ver 195.94 219.73 0.36 0 ind:fut:1p; +agiront agir ver 195.94 219.73 0.09 0.27 ind:fut:3p; +agis agir ver m p 195.94 219.73 6.61 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +agissaient agir ver 195.94 219.73 0.32 1.49 ind:imp:3p; +agissais agir ver 195.94 219.73 0.49 0.95 ind:imp:1s;ind:imp:2s; +agissait agir ver 195.94 219.73 12.3 80.47 ind:imp:3s; +agissant agir ver 195.94 219.73 1.26 4.32 par:pre; +agissante agissant adj f s 0.16 0.68 0.11 0.41 +agissantes agissant adj f p 0.16 0.68 0 0.14 +agisse agir ver 195.94 219.73 2.8 4.53 sub:pre:1s;sub:pre:3s; +agissement agissement nom m s 1.34 1.08 0.16 0.14 +agissements agissement nom m p 1.34 1.08 1.18 0.95 +agissent agir ver 195.94 219.73 3.61 1.69 ind:pre:3p; +agisses agir ver 195.94 219.73 0.27 0 sub:pre:2s; +agissez agir ver 195.94 219.73 4.2 0.74 imp:pre:2p;ind:pre:2p; +agissiez agir ver 195.94 219.73 0.23 0.14 ind:imp:2p; +agissions agir ver 195.94 219.73 0.12 0.07 ind:imp:1p; +agissons agir ver 195.94 219.73 2.14 0.61 imp:pre:1p;ind:pre:1p; +agit agir ver 195.94 219.73 105.02 73.72 ind:pre:3s;ind:pas:3s; +agit_prop agit_prop nom f 0.1 0 0.1 0 +agita agiter ver 14.62 89.19 0.06 6.76 ind:pas:3s; +agitai agiter ver 14.62 89.19 0 0.14 ind:pas:1s; +agitaient agiter ver 14.62 89.19 0.08 9.93 ind:imp:3p; +agitais agiter ver 14.62 89.19 0.2 0.41 ind:imp:1s;ind:imp:2s; +agitait agiter ver 14.62 89.19 0.47 17.09 ind:imp:3s; +agitant agiter ver 14.62 89.19 0.82 11.22 par:pre; +agitassent agiter ver 14.62 89.19 0 0.07 sub:imp:3p; +agitateur agitateur nom m s 1.72 1.89 0.86 0.68 +agitateurs agitateur nom m p 1.72 1.89 0.85 1.22 +agitation agitation nom f s 4.73 21.35 4.46 20.07 +agitations agitation nom f p 4.73 21.35 0.27 1.28 +agitato agitato adv 0.17 0.07 0.17 0.07 +agitatrice agitateur nom f s 1.72 1.89 0.01 0 +agite agiter ver 14.62 89.19 3.51 12.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agitent agiter ver 14.62 89.19 1.53 5.54 ind:pre:3p; +agiter agiter ver 14.62 89.19 2.72 11.89 inf; +agitera agiter ver 14.62 89.19 0.03 0.07 ind:fut:3s; +agiterai agiter ver 14.62 89.19 0.02 0 ind:fut:1s; +agiterait agiter ver 14.62 89.19 0.01 0.27 cnd:pre:3s; +agiteront agiter ver 14.62 89.19 0.06 0.14 ind:fut:3p; +agites agiter ver 14.62 89.19 0.84 0.07 ind:pre:2s; +agitez agiter ver 14.62 89.19 0.76 0.14 imp:pre:2p;ind:pre:2p; +agitiez agiter ver 14.62 89.19 0.04 0 ind:imp:2p; +agitions agiter ver 14.62 89.19 0 0.07 ind:imp:1p; +agitons agiter ver 14.62 89.19 0.01 0.14 ind:pre:1p; +agitât agiter ver 14.62 89.19 0 0.07 sub:imp:3s; +agitèrent agiter ver 14.62 89.19 0.01 1.22 ind:pas:3p; +agité agité adj m s 5.37 9.86 2.9 3.38 +agitée agité adj f s 5.37 9.86 1.76 3.38 +agitées agité adj f p 5.37 9.86 0.2 1.49 +agités agité adj m p 5.37 9.86 0.51 1.62 +aglagla aglagla adv 0 0.07 0 0.07 +agnat agnat nom m s 0.03 0.07 0.03 0.07 +agnathes agnathe nom m p 0 0.07 0 0.07 +agneau agneau nom m s 16.13 8.78 13.01 5.95 +agneaux agneau nom m p 16.13 8.78 3.12 2.84 +agnela agneler ver 0 0.47 0 0.47 ind:pas:3s; +agnelage agnelage nom m s 0 0.07 0 0.07 +agnelet agnelet nom m s 0.11 0.07 0.11 0.07 +agneline agneline nom f s 0 0.07 0 0.07 +agnelle agnel nom f s 0.14 0.41 0.14 0.14 +agnelles agnel nom f p 0.14 0.41 0 0.27 +agnosie agnosie nom f s 0.02 0 0.02 0 +agnostique agnostique adj f s 0.08 0.47 0.08 0.41 +agnostiques agnostique nom p 0.03 0.14 0.01 0.07 +agnus_dei agnus_dei nom m 0.47 0.14 0.47 0.14 +agnus_dei agnus_dei nom m 0 0.07 0 0.07 +agonie agonie nom f s 4.68 14.59 4.44 13.38 +agonies agonie nom f p 4.68 14.59 0.25 1.22 +agonique agonique adj f s 0.01 0 0.01 0 +agoniques agonique nom p 0 0.14 0 0.07 +agonir agonir ver 0.03 0.95 0.01 0.61 inf; +agonirent agonir ver 0.03 0.95 0 0.07 ind:pas:3p; +agonisa agoniser ver 1.36 5.34 0 0.14 ind:pas:3s; +agonisai agoniser ver 1.36 5.34 0 0.07 ind:pas:1s; +agonisaient agoniser ver 1.36 5.34 0 0.34 ind:imp:3p; +agonisais agoniser ver 1.36 5.34 0.03 0.07 ind:imp:1s; +agonisait agoniser ver 1.36 5.34 0.23 1.62 ind:imp:3s; +agonisant agonisant adj m s 0.52 2.3 0.41 1.08 +agonisante agonisant adj f s 0.52 2.3 0.07 0.88 +agonisantes agonisant adj f p 0.52 2.3 0.01 0.27 +agonisants agonisant nom m p 0.23 3.38 0.17 1.35 +agonise agoniser ver 1.36 5.34 0.45 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agonisent agoniser ver 1.36 5.34 0.14 0.34 ind:pre:3p; +agoniser agoniser ver 1.36 5.34 0.1 1.01 inf; +agonisez agoniser ver 1.36 5.34 0.02 0.07 imp:pre:2p; +agonisiez agoniser ver 1.36 5.34 0.02 0.07 ind:imp:2p; +agonissait agonir ver 0.03 0.95 0 0.07 ind:imp:3s; +agoniste agoniste adj s 0 0.07 0 0.07 +agonisé agoniser ver m s 1.36 5.34 0.26 0 par:pas; +agonit agonir ver 0.03 0.95 0 0.14 ind:pre:3s;ind:pas:3s; +agora agora nom f s 0.03 0.68 0.03 0.68 +agoraphobe agoraphobe adj m s 0.07 0 0.07 0 +agoraphobes agoraphobe nom p 0.01 0.07 0 0.07 +agoraphobie agoraphobie nom f s 0.23 0.07 0.23 0.07 +agouti agouti nom m s 0.01 0.41 0.01 0.34 +agoutis agouti nom m p 0.01 0.41 0 0.07 +agoyate agoyate nom m s 0 0.41 0 0.27 +agoyates agoyate nom m p 0 0.41 0 0.14 +agrafa agrafer ver 1.34 2.36 0 0.07 ind:pas:3s; +agrafage agrafage nom m s 0.03 0 0.03 0 +agrafait agrafer ver 1.34 2.36 0 0.47 ind:imp:3s; +agrafant agrafer ver 1.34 2.36 0 0.14 par:pre; +agrafe agrafe nom f s 0.86 2.43 0.34 0.88 +agrafent agrafer ver 1.34 2.36 0.01 0.07 ind:pre:3p; +agrafer agrafer ver 1.34 2.36 0.85 0.47 inf; +agraferai agrafer ver 1.34 2.36 0.01 0 ind:fut:1s; +agrafes agrafe nom f p 0.86 2.43 0.52 1.55 +agrafeur agrafeur nom m s 0.03 0 0.03 0 +agrafeuse agrafeuse nom f s 0.79 0.14 0.73 0.07 +agrafeuses agrafeuse nom f p 0.79 0.14 0.06 0.07 +agrafez agrafer ver 1.34 2.36 0.06 0 imp:pre:2p;ind:pre:2p; +agrafons agrafer ver 1.34 2.36 0.02 0 imp:pre:1p; +agrafé agrafer ver m s 1.34 2.36 0.15 0.41 par:pas; +agrafée agrafer ver f s 1.34 2.36 0.04 0.41 par:pas; +agrafées agrafer ver f p 1.34 2.36 0 0.07 par:pas; +agrafés agrafer ver m p 1.34 2.36 0.03 0.07 par:pas; +agrainage agrainage nom m s 0 0.07 0 0.07 +agraire agraire adj s 0.35 0.54 0.31 0.41 +agraires agraire adj p 0.35 0.54 0.04 0.14 +agrandi agrandir ver m s 7.26 16.15 0.53 1.96 par:pas; +agrandie agrandir ver f s 7.26 16.15 0.45 1.62 par:pas; +agrandies agrandir ver f p 7.26 16.15 0 0.68 par:pas; +agrandir agrandir ver 7.26 16.15 3.89 2.7 inf; +agrandira agrandir ver 7.26 16.15 0.14 0.14 ind:fut:3s; +agrandirai agrandir ver 7.26 16.15 0.01 0 ind:fut:1s; +agrandirait agrandir ver 7.26 16.15 0.28 0 cnd:pre:3s; +agrandirent agrandir ver 7.26 16.15 0 0.61 ind:pas:3p; +agrandiront agrandir ver 7.26 16.15 0.01 0 ind:fut:3p; +agrandis agrandir ver m p 7.26 16.15 0.41 3.85 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +agrandissaient agrandir ver 7.26 16.15 0 0.74 ind:imp:3p; +agrandissait agrandir ver 7.26 16.15 0.04 1.01 ind:imp:3s; +agrandissant agrandir ver 7.26 16.15 0.16 0.47 par:pre; +agrandissement agrandissement nom m s 0.9 1.69 0.68 1.28 +agrandissements agrandissement nom m p 0.9 1.69 0.21 0.41 +agrandissent agrandir ver 7.26 16.15 0.03 0.54 ind:pre:3p; +agrandisseur agrandisseur nom m s 0.13 0.27 0.13 0.2 +agrandisseurs agrandisseur nom m p 0.13 0.27 0 0.07 +agrandissez agrandir ver 7.26 16.15 0.44 0.14 imp:pre:2p;ind:pre:2p; +agrandissons agrandir ver 7.26 16.15 0.04 0 imp:pre:1p; +agrandit agrandir ver 7.26 16.15 0.86 1.62 ind:pre:3s;ind:pas:3s; +agrandît agrandir ver 7.26 16.15 0 0.07 sub:imp:3s; +agranulocytose agranulocytose nom f s 0.01 0 0.01 0 +agrarien agrarien adj m s 0 0.14 0 0.14 +agressa agresser ver 13.39 2.97 0.01 0.07 ind:pas:3s; +agressaient agresser ver 13.39 2.97 0.02 0.07 ind:imp:3p; +agressais agresser ver 13.39 2.97 0.02 0.07 ind:imp:1s;ind:imp:2s; +agressait agresser ver 13.39 2.97 0.08 0.14 ind:imp:3s; +agressant agresser ver 13.39 2.97 0.05 0.07 par:pre; +agresse agresser ver 13.39 2.97 1.46 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agressent agresser ver 13.39 2.97 0.07 0.07 ind:pre:3p; +agresser agresser ver 13.39 2.97 2.42 0.34 inf; +agresseraient agresser ver 13.39 2.97 0.01 0 cnd:pre:3p; +agresserait agresser ver 13.39 2.97 0.01 0 cnd:pre:3s; +agresseur agresseur nom m s 6.87 3.78 5.03 2.43 +agresseurs agresseur nom m p 6.87 3.78 1.84 1.35 +agressez agresser ver 13.39 2.97 0.17 0 ind:pre:2p; +agressif agressif adj m s 9.83 15.88 5.76 6.82 +agressifs agressif adj m p 9.83 15.88 1.2 1.69 +agression agression nom f s 12.91 6.15 10.92 4.53 +agressions agression nom f p 12.91 6.15 1.99 1.62 +agressive agressif adj f s 9.83 15.88 2.48 6.22 +agressivement agressivement adv 0.11 1.01 0.11 1.01 +agressives agressif adj f p 9.83 15.88 0.39 1.15 +agressivité agressivité nom f s 2.54 5 2.54 4.86 +agressivités agressivité nom f p 2.54 5 0 0.14 +agressé agresser ver m s 13.39 2.97 5.33 0.81 par:pas; +agressée agresser ver f s 13.39 2.97 2.56 0.41 par:pas; +agressées agresser ver f p 13.39 2.97 0.25 0.07 par:pas; +agressés agresser ver m p 13.39 2.97 0.92 0.2 par:pas; +agreste agreste adj s 0.1 0.81 0.1 0.68 +agrestes agreste adj f p 0.1 0.81 0 0.14 +agriche agricher ver 0 0.14 0 0.07 ind:pre:3s; +agriches agricher ver 0 0.14 0 0.07 ind:pre:2s; +agricole agricole adj s 3.31 7.36 2.03 4.32 +agricoles agricole adj p 3.31 7.36 1.28 3.04 +agriculteur agriculteur nom m s 1.06 1.76 0.42 0.54 +agriculteurs agriculteur nom m p 1.06 1.76 0.63 1.08 +agricultrice agriculteur nom f s 1.06 1.76 0.01 0 +agricultrices agriculteur nom f p 1.06 1.76 0 0.14 +agriculture agriculture nom f s 3.39 2.77 3.39 2.77 +agrippa agripper ver 2.81 17.57 0.12 2.5 ind:pas:3s; +agrippai agripper ver 2.81 17.57 0 0.54 ind:pas:1s; +agrippaient agripper ver 2.81 17.57 0 1.08 ind:imp:3p; +agrippais agripper ver 2.81 17.57 0.01 0.07 ind:imp:1s;ind:imp:2s; +agrippait agripper ver 2.81 17.57 0.33 1.82 ind:imp:3s; +agrippant agripper ver 2.81 17.57 0.08 2.03 par:pre; +agrippants agrippant adj m p 0 0.14 0 0.07 +agrippe agripper ver 2.81 17.57 0.72 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agrippement agrippement nom m s 0 0.07 0 0.07 +agrippent agripper ver 2.81 17.57 0.09 1.08 ind:pre:3p; +agripper agripper ver 2.81 17.57 0.44 1.28 inf;; +agrippes agripper ver 2.81 17.57 0.09 0.07 ind:pre:2s; +agrippez agripper ver 2.81 17.57 0.11 0 imp:pre:2p;ind:pre:2p; +agrippions agripper ver 2.81 17.57 0 0.07 ind:imp:1p; +agrippèrent agripper ver 2.81 17.57 0 0.41 ind:pas:3p; +agrippé agripper ver m s 2.81 17.57 0.56 2.3 par:pas; +agrippée agripper ver f s 2.81 17.57 0.23 1.01 par:pas; +agrippées agripper ver f p 2.81 17.57 0.03 0.61 par:pas; +agrippés agripper ver m p 2.81 17.57 0.01 0.81 par:pas; +agro agro nom s 0 0.2 0 0.2 +agro_alimentaire agro_alimentaire adj f s 0.15 0 0.15 0 +agroalimentaire agroalimentaire nom m s 0.04 0 0.04 0 +agronome agronome nom s 0.4 0.34 0.4 0.2 +agronomes agronome nom p 0.4 0.34 0 0.14 +agronomie agronomie nom f s 0.07 0.07 0.07 0.07 +agronomique agronomique adj s 0.03 0.07 0.03 0.07 +agrovilles agroville nom f p 0 0.07 0 0.07 +agrume agrume nom m s 0.41 0.54 0.01 0.07 +agrumes agrume nom m p 0.41 0.54 0.4 0.47 +agrège agréger ver 0.46 0.81 0 0.07 ind:pre:3s; +agrègent agréger ver 0.46 0.81 0 0.07 ind:pre:3p; +agrès agrès nom m 0.24 1.01 0.24 1.01 +agréa agréer ver 1.09 5.07 0.14 0.2 ind:pas:3s; +agréable agréable adj s 40.24 36.01 37.71 31.35 +agréablement agréablement adv 0.63 3.65 0.63 3.65 +agréables agréable adj p 40.24 36.01 2.54 4.66 +agréaient agréer ver 1.09 5.07 0 0.14 ind:imp:3p; +agréais agréer ver 1.09 5.07 0 0.14 ind:imp:1s; +agréait agréer ver 1.09 5.07 0 0.47 ind:imp:3s; +agrée agréer ver 1.09 5.07 0.07 0.2 ind:pre:1s;ind:pre:3s; +agréent agréer ver 1.09 5.07 0.02 0 ind:pre:3p; +agréer agréer ver 1.09 5.07 0.45 3.18 inf; +agréera agréer ver 1.09 5.07 0.01 0 ind:fut:3s; +agréerait agréer ver 1.09 5.07 0 0.07 cnd:pre:3s; +agrées agréer ver 1.09 5.07 0 0.07 ind:pre:2s; +agréez agréer ver 1.09 5.07 0.14 0.14 imp:pre:2p;ind:pre:2p; +agrég agrég nom f s 0.14 0 0.14 0 +agrégat agrégat nom m s 0.03 0.61 0.02 0.47 +agrégatif agrégatif nom m s 0 0.47 0 0.41 +agrégatifs agrégatif nom m p 0 0.47 0 0.07 +agrégation agrégation nom f s 0.29 2.97 0.29 2.97 +agrégative agrégative nom f s 0 0.07 0 0.07 +agrégats agrégat nom m p 0.03 0.61 0.01 0.14 +agrégeaient agréger ver 0.46 0.81 0 0.07 ind:imp:3p; +agrégeait agréger ver 0.46 0.81 0 0.07 ind:imp:3s; +agréger agréger ver 0.46 0.81 0 0.07 inf; +agrégé agréger ver m s 0.46 0.81 0.34 0.2 par:pas; +agrégée agréger ver f s 0.46 0.81 0.1 0.2 par:pas; +agrégées agréger ver f p 0.46 0.81 0.01 0 par:pas; +agrégés agrégé nom m p 0.32 1.15 0.2 0.41 +agréions agréer ver 1.09 5.07 0 0.07 ind:imp:1p; +agrément agrément nom m s 1.75 7.16 1.5 6.01 +agrémenta agrémenter ver 0.35 5.68 0.01 0.2 ind:pas:3s; +agrémentaient agrémenter ver 0.35 5.68 0 0.2 ind:imp:3p; +agrémentait agrémenter ver 0.35 5.68 0.01 0.61 ind:imp:3s; +agrémentant agrémenter ver 0.35 5.68 0 0.2 par:pre; +agrémente agrémenter ver 0.35 5.68 0.03 0.14 ind:pre:3s; +agrémentent agrémenter ver 0.35 5.68 0 0.14 ind:pre:3p; +agrémenter agrémenter ver 0.35 5.68 0.03 0.41 inf; +agréments agrément nom m p 1.75 7.16 0.25 1.15 +agrémenté agrémenté adj m s 0.14 0.14 0.14 0 +agrémentée agrémenter ver f s 0.35 5.68 0.06 0.88 par:pas; +agrémentées agrémenter ver f p 0.35 5.68 0 0.68 par:pas; +agrémentés agrémenter ver m p 0.35 5.68 0.1 0.68 par:pas; +agréé agréer ver m s 1.09 5.07 0.22 0.14 par:pas; +agréée agréé adj f s 0.17 0.68 0.04 0 +agréées agréer ver f p 1.09 5.07 0.02 0 par:pas; +agréés agréé adj m p 0.17 0.68 0 0.2 +aguardiente aguardiente nom f s 0.03 0 0.03 0 +aguerri aguerri adj m s 0.66 1.01 0.59 0.41 +aguerrie aguerri adj f s 0.66 1.01 0.04 0.14 +aguerries aguerri adj f p 0.66 1.01 0.01 0.07 +aguerrir aguerrir ver 0.21 0.81 0.07 0.2 inf; +aguerrira aguerrir ver 0.21 0.81 0.01 0 ind:fut:3s; +aguerris aguerri adj m p 0.66 1.01 0.01 0.41 +aguerrissait aguerrir ver 0.21 0.81 0 0.07 ind:imp:3s; +aguerrit aguerrir ver 0.21 0.81 0.01 0 ind:pre:3s; +aguichage aguichage nom m s 0.01 0 0.01 0 +aguichait aguicher ver 0.3 0.88 0.03 0.2 ind:imp:3s; +aguichant aguichant adj m s 0.14 0.54 0.04 0.07 +aguichante aguichant adj f s 0.14 0.54 0.07 0.27 +aguichantes aguichant adj f p 0.14 0.54 0.03 0.2 +aguiche aguicher ver 0.3 0.88 0.04 0.14 ind:pre:3s; +aguichent aguicher ver 0.3 0.88 0.03 0.14 ind:pre:3p; +aguicher aguicher ver 0.3 0.88 0.21 0.41 inf; +aguicheur aguicheur adj m s 0.23 0.47 0.06 0.07 +aguicheurs aguicheur adj m p 0.23 0.47 0 0.07 +aguicheuse aguicheur nom f s 0.04 0.14 0.04 0.14 +aguicheuses aguicheur adj f p 0.23 0.47 0.17 0.14 +aguillera aguiller ver 0.01 0 0.01 0 ind:fut:3s; +agît agir ver 195.94 219.73 0.07 1.08 sub:imp:3s; +ah ah ono 576.53 297.16 576.53 297.16 +ahan ahan nom m s 0 0.54 0 0.34 +ahana ahaner ver 0.01 2.16 0 0.2 ind:pas:3s; +ahanaient ahaner ver 0.01 2.16 0 0.14 ind:imp:3p; +ahanait ahaner ver 0.01 2.16 0 0.34 ind:imp:3s; +ahanant ahaner ver 0.01 2.16 0 0.61 par:pre; +ahanante ahanant adj f s 0 0.41 0 0.14 +ahane ahaner ver 0.01 2.16 0.01 0.34 ind:pre:1s;ind:pre:3s; +ahanement ahanement nom m s 0 0.34 0 0.07 +ahanements ahanement nom m p 0 0.34 0 0.27 +ahanent ahaner ver 0.01 2.16 0 0.14 ind:pre:3p; +ahaner ahaner ver 0.01 2.16 0 0.27 inf; +ahans ahan nom m p 0 0.54 0 0.2 +ahané ahaner ver m s 0.01 2.16 0 0.14 par:pas; +ahi ahi adv 0.06 0.27 0.06 0.27 +ahou ahou adv 0.01 0 0.01 0 +ahuri ahuri nom m s 0.41 3.04 0.37 1.76 +ahurie ahuri adj f s 0.39 7.7 0.04 2.03 +ahuries ahuri adj f p 0.39 7.7 0 0.27 +ahurir ahurir ver 0.34 3.38 0 0.41 inf; +ahuris ahuri nom m p 0.41 3.04 0.04 1.22 +ahurissait ahurir ver 0.34 3.38 0 0.27 ind:imp:3s; +ahurissant ahurissant adj m s 0.7 2.16 0.42 1.15 +ahurissante ahurissant adj f s 0.7 2.16 0.21 0.61 +ahurissantes ahurissant adj f p 0.7 2.16 0.05 0.14 +ahurissants ahurissant adj m p 0.7 2.16 0.03 0.27 +ahurissement ahurissement nom m s 0 1.82 0 1.76 +ahurissements ahurissement nom m p 0 1.82 0 0.07 +ahurit ahurir ver 0.34 3.38 0 0.41 ind:pre:3s;ind:pas:3s; +ai avoir aux 18559.22 12800.81 4902.1 2119.12 ind:pre:1s; +aicher aicher ver 0.1 0 0.1 0 inf; +aida aider ver 688.71 158.65 0.81 7.09 ind:pas:3s; +aidai aider ver 688.71 158.65 0.03 1.08 ind:pas:1s; +aidaient aider ver 688.71 158.65 1.04 3.31 ind:imp:3p; +aidais aider ver 688.71 158.65 3.18 1.49 ind:imp:1s;ind:imp:2s; +aidait aider ver 688.71 158.65 3.47 9.73 ind:imp:3s; +aidant aider ver 688.71 158.65 1.7 11.49 par:pre; +aidassent aider ver 688.71 158.65 0 0.14 sub:imp:3p; +aide aide nom s 175.59 55.54 171.41 52.3 +aide_bourreau aide_bourreau nom s 0 0.14 0 0.14 +aide_comptable aide_comptable nom m s 0.04 0.07 0.04 0.07 +aide_cuisinier aide_cuisinier nom m s 0.02 0.14 0.02 0.14 +aide_infirmier aide_infirmier nom s 0.04 0 0.04 0 +aide_jardinier aide_jardinier nom m s 0.01 0.07 0.01 0.07 +aide_major aide_major nom m 0 0.14 0 0.14 +aide_mémoire aide_mémoire nom m 0.04 0.41 0.04 0.41 +aide_ménagère aide_ménagère nom f s 0 0.27 0 0.27 +aide_pharmacien aide_pharmacien nom s 0 0.07 0 0.07 +aide_soignant aide_soignant nom m s 0.4 0.27 0.2 0 +aide_soignant aide_soignant nom f s 0.4 0.27 0.12 0.14 +aident aider ver 688.71 158.65 6.75 2.57 ind:pre:3p;sub:pre:3p; +aider aider ver 688.71 158.65 362.77 60.41 inf;;inf;;inf;;inf;; +aidera aider ver 688.71 158.65 19.59 2.97 ind:fut:3s; +aiderai aider ver 688.71 158.65 10.91 2.03 ind:fut:1s; +aideraient aider ver 688.71 158.65 0.41 0.41 cnd:pre:3p; +aiderais aider ver 688.71 158.65 2.6 0.2 cnd:pre:1s;cnd:pre:2s; +aiderait aider ver 688.71 158.65 7.82 3.58 cnd:pre:3s; +aideras aider ver 688.71 158.65 3.29 0.81 ind:fut:2s; +aiderez aider ver 688.71 158.65 2.18 0.54 ind:fut:2p; +aideriez aider ver 688.71 158.65 0.96 0.2 cnd:pre:2p; +aiderions aider ver 688.71 158.65 0.02 0.07 cnd:pre:1p; +aiderons aider ver 688.71 158.65 1.47 0.14 ind:fut:1p; +aideront aider ver 688.71 158.65 3.19 0.74 ind:fut:3p; +aides aider ver 688.71 158.65 19.22 1.49 ind:pre:2s;sub:pre:2s; +aide_soignant aide_soignant nom f p 0.4 0.27 0 0.14 +aide_soignant aide_soignant nom m p 0.4 0.27 0.08 0 +aidez aider ver 688.71 158.65 64.36 2.77 imp:pre:2p;ind:pre:2p; +aidiez aider ver 688.71 158.65 2.21 0.2 ind:imp:2p;sub:pre:2p; +aidions aider ver 688.71 158.65 0.14 0.27 ind:imp:1p; +aidons aider ver 688.71 158.65 1.75 0.47 imp:pre:1p;ind:pre:1p; +aidât aider ver 688.71 158.65 0 0.54 sub:imp:3s; +aidèrent aider ver 688.71 158.65 0.03 1.76 ind:pas:3p; +aidé aider ver m s 688.71 158.65 34.74 15.61 par:pas; +aidée aider ver f s 688.71 158.65 8.64 4.8 par:pas; +aidées aider ver f p 688.71 158.65 0.62 0.34 par:pas; +aidés aider ver m p 688.71 158.65 5.13 3.04 par:pas; +aie avoir aux 18559.22 12800.81 31.75 21.69 sub:pre:1s; +aient avoir aux 18559.22 12800.81 12.67 19.8 sub:pre:3p; +aies avoir aux 18559.22 12800.81 22.71 4.93 sub:pre:2s; +aigle aigle nom s 6.9 11.35 5.5 7.91 +aiglefin aiglefin nom m s 0 0.07 0 0.07 +aigles aigle nom p 6.9 11.35 1.4 3.45 +aiglon aiglon nom m s 0.47 0.95 0.42 0.68 +aiglons aiglon nom m p 0.47 0.95 0.05 0.27 +aigre aigre adj s 0.55 10.47 0.42 8.38 +aigre_doux aigre_doux adj f s 0.3 1.28 0.08 0.54 +aigre_doux aigre_doux adj m 0.3 1.28 0.2 0.34 +aigrelet aigrelet adj m s 0.14 3.58 0 1.35 +aigrelets aigrelet adj m p 0.14 3.58 0.14 0.2 +aigrelette aigrelet adj f s 0.14 3.58 0.01 1.76 +aigrelettes aigrelet adj f p 0.14 3.58 0 0.27 +aigrement aigrement adv 0 1.42 0 1.42 +aigres aigre adj p 0.55 10.47 0.13 2.09 +aigre_doux aigre_doux adj f p 0.3 1.28 0.01 0.2 +aigre_doux aigre_doux adj m p 0.3 1.28 0.01 0.2 +aigrette aigrette nom f s 0.72 2.64 0.02 1.22 +aigrettes aigrette nom f p 0.72 2.64 0.7 1.42 +aigreur aigreur nom f s 0.56 4.32 0.21 2.91 +aigreurs aigreur nom f p 0.56 4.32 0.35 1.42 +aigri aigri adj m s 1.06 1.08 0.79 0.54 +aigrie aigri adj f s 1.06 1.08 0.24 0.2 +aigries aigri adj f p 1.06 1.08 0.02 0 +aigrir aigrir ver 0.65 2.09 0.01 0.41 inf; +aigrirent aigrir ver 0.65 2.09 0 0.14 ind:pas:3p; +aigris aigri nom m p 0.4 0.54 0.17 0.2 +aigrissaient aigrir ver 0.65 2.09 0 0.14 ind:imp:3p; +aigrissait aigrir ver 0.65 2.09 0 0.14 ind:imp:3s; +aigrissent aigrir ver 0.65 2.09 0 0.07 ind:pre:3p; +aigrit aigrir ver 0.65 2.09 0.1 0.07 ind:pre:3s;ind:pas:3s; +aigu aigu adj m s 5.08 32.09 1.75 11.96 +aiguade aiguade nom f s 0 0.14 0 0.14 +aiguail aiguail nom m s 0 0.27 0 0.27 +aigue aiguer ver 0.17 0 0.17 0 ind:pre:3s; +aigue_marine aigue_marine nom f s 0 0.81 0 0.47 +aigue_marine aigue_marine nom f p 0 0.81 0 0.34 +aiguilla aiguiller ver 1.13 3.24 0 0.34 ind:pas:3s; +aiguillage aiguillage nom m s 0.6 2.16 0.48 1.42 +aiguillages aiguillage nom m p 0.6 2.16 0.12 0.74 +aiguillant aiguiller ver 1.13 3.24 0 0.2 par:pre; +aiguillat aiguillat nom m s 0.02 0 0.02 0 +aiguille aiguille nom f s 14.34 34.19 10.4 18.38 +aiguiller aiguiller ver 1.13 3.24 0.21 0.27 inf; +aiguilles aiguille nom f p 14.34 34.19 3.94 15.81 +aiguillettes aiguillette nom f p 0.07 0.2 0.07 0.2 +aiguilleur aiguilleur nom m s 0.35 0.41 0.29 0.34 +aiguilleurs aiguilleur nom m p 0.35 0.41 0.06 0.07 +aiguillon aiguillon nom m s 0.36 2.5 0.35 2.09 +aiguillonnaient aiguillonner ver 0.17 1.55 0 0.14 ind:imp:3p; +aiguillonnait aiguillonner ver 0.17 1.55 0 0.2 ind:imp:3s; +aiguillonnant aiguillonner ver 0.17 1.55 0 0.07 par:pre; +aiguillonnante aiguillonnant adj f s 0 0.07 0 0.07 +aiguillonne aiguillonner ver 0.17 1.55 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aiguillonnent aiguillonner ver 0.17 1.55 0.1 0.07 ind:pre:3p; +aiguillonner aiguillonner ver 0.17 1.55 0.03 0.27 inf; +aiguillonné aiguillonner ver m s 0.17 1.55 0 0.34 par:pas; +aiguillonnée aiguillonner ver f s 0.17 1.55 0 0.14 par:pas; +aiguillonnées aiguillonner ver f p 0.17 1.55 0 0.07 par:pas; +aiguillonnés aiguillonner ver m p 0.17 1.55 0.01 0.2 par:pas; +aiguillons aiguillon nom m p 0.36 2.5 0.01 0.41 +aiguillé aiguiller ver m s 1.13 3.24 0.22 0.2 par:pas; +aiguillée aiguiller ver f s 1.13 3.24 0.04 0.14 par:pas; +aiguillées aiguiller ver f p 1.13 3.24 0 0.14 par:pas; +aiguillés aiguiller ver m p 1.13 3.24 0.03 0 par:pas; +aiguisa aiguiser ver 2.62 7.36 0 0.2 ind:pas:3s; +aiguisai aiguiser ver 2.62 7.36 0 0.07 ind:pas:1s; +aiguisaient aiguiser ver 2.62 7.36 0 0.34 ind:imp:3p; +aiguisait aiguiser ver 2.62 7.36 0.01 1.01 ind:imp:3s; +aiguisant aiguiser ver 2.62 7.36 0.01 0.61 par:pre; +aiguisas aiguiser ver 2.62 7.36 0 0.07 ind:pas:2s; +aiguise aiguiser ver 2.62 7.36 0.53 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aiguisent aiguiser ver 2.62 7.36 0.23 0.41 ind:pre:3p; +aiguiser aiguiser ver 2.62 7.36 0.84 1.62 inf; +aiguisera aiguiser ver 2.62 7.36 0.01 0 ind:fut:3s; +aiguiserai aiguiser ver 2.62 7.36 0 0.07 ind:fut:1s; +aiguiseur aiguiseur nom m s 0.04 0 0.04 0 +aiguisez aiguiser ver 2.62 7.36 0.25 0 imp:pre:2p;ind:pre:2p; +aiguisoir aiguisoir nom m s 0.01 0.07 0.01 0.07 +aiguisons aiguiser ver 2.62 7.36 0.03 0 imp:pre:1p; +aiguisèrent aiguiser ver 2.62 7.36 0 0.2 ind:pas:3p; +aiguisé aiguisé adj m s 1.47 1.69 0.66 0.34 +aiguisée aiguisé adj f s 1.47 1.69 0.39 0.61 +aiguisées aiguisé adj f p 1.47 1.69 0.11 0.41 +aiguisés aiguisé adj m p 1.47 1.69 0.31 0.34 +aiguière aiguière nom f s 0 0.27 0 0.27 +aigus aigu adj m p 5.08 32.09 0.31 5 +aiguë aigu adj f s 5.08 32.09 2.75 11.49 +aiguës aigu adj f p 5.08 32.09 0.27 3.65 +ail ail nom m s 9.14 7.97 9.14 7.97 +aile aile nom f s 33.45 60.47 15 20.47 +aileron aileron nom m s 0.79 1.49 0.42 0.41 +ailerons aileron nom m p 0.79 1.49 0.37 1.08 +ailes aile nom f p 33.45 60.47 18.45 40 +ailette ailette nom f s 0.03 0.54 0.01 0.14 +ailettes ailette nom f p 0.03 0.54 0.02 0.41 +ailier ailier nom m s 1.4 1.35 1.35 1.22 +ailiers ailier nom m p 1.4 1.35 0.05 0.14 +aillais ailler ver 0.2 0.61 0.14 0 ind:imp:1s; +aille aller ver 9992.77 2854.93 89.81 36.55 sub:pre:1s;sub:pre:3s; +aillent aller ver 9992.77 2854.93 5.93 4.86 sub:pre:3p; +ailler ailler ver 0.2 0.61 0.01 0 inf; +ailles aller ver 9992.77 2854.93 14.98 2.43 sub:pre:2s; +ailleurs ailleurs adv_sup 128.74 346.35 128.74 346.35 +aillions ailler ver 0.2 0.61 0.03 0 ind:imp:1p; +aillons ailler ver 0.2 0.61 0.01 0 ind:pre:1p; +aillé ailler ver m s 0.2 0.61 0.01 0.27 par:pas; +aillée ailler ver f s 0.2 0.61 0 0.07 par:pas; +aillés ailler ver m p 0.2 0.61 0 0.27 par:pas; +ailé ailé adj m s 1.19 3.04 0.71 1.42 +ailée ailer ver f s 0.21 0.74 0.16 0.2 par:pas; +ailées ailé adj f p 1.19 3.04 0.07 0.27 +ailés ailé adj m p 1.19 3.04 0.29 0.54 +aima aimer ver 1655.07 795.61 0.41 1.69 ind:pas:3s; +aimable aimable adj s 23.41 29.26 21.98 24.59 +aimablement aimablement adv 0.52 3.85 0.52 3.85 +aimables aimable adj p 23.41 29.26 1.43 4.66 +aimai aimer ver 1655.07 795.61 0.2 0.81 ind:pas:1s; +aimaient aimer ver 1655.07 795.61 6.2 16.42 ind:imp:3p; +aimais aimer ver 1655.07 795.61 58.07 57.16 ind:imp:1s;ind:imp:2s; +aimait aimer ver 1655.07 795.61 49.57 128.72 ind:imp:3s; +aimant aimer ver 1655.07 795.61 2.6 3.92 par:pre; +aimantaient aimanter ver 0.35 2.3 0 0.14 ind:imp:3p; +aimantait aimanter ver 0.35 2.3 0 0.07 ind:imp:3s; +aimantation aimantation nom f s 0 0.47 0 0.47 +aimante aimant adj f s 2.86 2.7 1.37 1.42 +aimanter aimanter ver 0.35 2.3 0.02 0.14 inf; +aimantes aimant adj f p 2.86 2.7 0.07 0.14 +aimants aimant nom m p 2.31 2.97 0.61 0.27 +aimanté aimanter ver m s 0.35 2.3 0.14 0.34 par:pas; +aimantée aimanter ver f s 0.35 2.3 0.04 0.54 par:pas; +aimantées aimanter ver f p 0.35 2.3 0.12 0.2 par:pas; +aimantés aimanter ver m p 0.35 2.3 0.02 0.41 par:pas; +aimasse aimer ver 1655.07 795.61 0.02 0 sub:imp:1s; +aimassent aimer ver 1655.07 795.61 0 0.2 sub:imp:3p; +aimassions aimer ver 1655.07 795.61 0 0.07 sub:imp:1p; +aime aimer ver 1655.07 795.61 751.29 257.57 imp:pre:2s;ind:pre:1s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +aiment aimer ver 1655.07 795.61 48.46 26.96 ind:pre:3p;sub:pre:3p; +aimer aimer ver 1655.07 795.61 90.44 84.46 inf;;inf;;inf;;inf;;inf;;inf;;inf;; +aimera aimer ver 1655.07 795.61 8.1 2.57 ind:fut:3s; +aimerai aimer ver 1655.07 795.61 13.99 2.97 ind:fut:1s; +aimeraient aimer ver 1655.07 795.61 5.08 2.03 cnd:pre:3p; +aimerais aimer ver 1655.07 795.61 227.66 36.01 cnd:pre:1s;cnd:pre:2s; +aimerait aimer ver 1655.07 795.61 21.7 12.43 cnd:pre:3s; +aimeras aimer ver 1655.07 795.61 4.3 1.28 ind:fut:2s; +aimerez aimer ver 1655.07 795.61 2.71 1.01 ind:fut:2p; +aimeriez aimer ver 1655.07 795.61 8.88 0.88 cnd:pre:2p; +aimerions aimer ver 1655.07 795.61 7.21 1.01 cnd:pre:1p; +aimerons aimer ver 1655.07 795.61 0.46 0.27 ind:fut:1p; +aimeront aimer ver 1655.07 795.61 1.32 0.34 ind:fut:3p; +aimes aimer ver 1655.07 795.61 170.38 25.61 ind:pre:2s;sub:pre:2s; +aimeuse aimeur nom f s 0 0.07 0 0.07 +aimez aimer ver 1655.07 795.61 62.25 18.38 imp:pre:2p;ind:pre:2p; +aimiez aimer ver 1655.07 795.61 6.92 2.64 ind:imp:2p;sub:pre:2p; +aimions aimer ver 1655.07 795.61 2.03 6.55 ind:imp:1p;sub:pre:1p; +aimons aimer ver 1655.07 795.61 11.58 6.22 imp:pre:1p;ind:pre:1p; +aimâmes aimer ver 1655.07 795.61 0 0.14 ind:pas:1p; +aimât aimer ver 1655.07 795.61 0.1 2.03 sub:imp:3s; +aimâtes aimer ver 1655.07 795.61 0.03 0 ind:pas:2p; +aimèrent aimer ver 1655.07 795.61 0.16 0.47 ind:pas:3p; +aimé aimer ver m s 1655.07 795.61 75.92 71.96 par:pas; +aimée aimer ver f s 1655.07 795.61 12.66 14.8 par:pas; +aimées aimer ver f p 1655.07 795.61 0.43 1.62 par:pas; +aimés aimer ver m p 1655.07 795.61 3.94 6.42 par:pas; +aine aine nom f s 0.64 2.77 0.64 2.64 +aines aine nom f p 0.64 2.77 0 0.14 +ains ains con 0.02 0 0.02 0 +ainsi ainsi adv_sup 207.68 469.46 207.68 469.46 +air air nom m s 485.18 690.81 473.5 661.01 +air_bag air_bag nom m s 0.02 0 0.02 0 +air_air air_air adj m 0.09 0 0.09 0 +air_mer air_mer adj 0.02 0 0.02 0 +air_sol air_sol adj m p 0.13 0 0.13 0 +airain airain nom m s 0.17 1.69 0.17 1.69 +airbag airbag nom m s 1.11 0 0.44 0 +airbags airbag nom m p 1.11 0 0.67 0 +airbus airbus nom m 0.01 0 0.01 0 +aire aire nom f s 5.54 5.14 4.55 4.46 +airedale airedale nom m s 0.01 0 0.01 0 +airelle airelle nom f s 1.12 0.41 0.08 0.07 +airelles airelle nom f p 1.12 0.41 1.04 0.34 +aires aire nom f p 5.54 5.14 0.99 0.68 +airs air nom m p 485.18 690.81 11.68 29.8 +ais ais nom m 10.14 0.47 10.14 0.47 +aisance aisance nom f s 1.5 15.41 1.44 15.2 +aisances aisance nom f p 1.5 15.41 0.06 0.2 +aise aise nom f s 32.73 52.64 31.64 50.81 +aises aise nom f p 32.73 52.64 1.09 1.82 +aisseau aisseau nom m s 0.01 0 0.01 0 +aisselle aisselle nom f s 1.29 8.99 0.54 3.72 +aisselles aisselle nom f p 1.29 8.99 0.75 5.27 +aisé aisé adj m s 3.03 7.77 1.44 3.11 +aisée aisé adj f s 3.03 7.77 1.04 2.91 +aisées aisé adj f p 3.03 7.77 0.22 0.68 +aisément aisément adv 2.51 11.69 2.51 11.69 +aisés aisé adj m p 3.03 7.77 0.33 1.08 +ait avoir aux 18559.22 12800.81 95.36 99.53 sub:pre:3s; +aixois aixois nom m 0 0.14 0 0.14 +ajaccienne ajaccienne nom f s 0 0.07 0 0.07 +ajax ajax nom m s 0 0.07 0 0.07 +ajistes ajiste adj f p 0 0.07 0 0.07 +ajointer ajointer ver 0 0.2 0 0.07 inf; +ajointée ajointer ver f s 0 0.2 0 0.14 par:pas; +ajonc ajonc nom m s 0 1.69 0 0.2 +ajoncs ajonc nom m p 0 1.69 0 1.49 +ajouraient ajourer ver 0 1.42 0 0.07 ind:imp:3p; +ajourait ajourer ver 0 1.42 0 0.14 ind:imp:3s; +ajourant ajourer ver 0 1.42 0 0.14 par:pre; +ajourna ajourner ver 1.48 0.88 0 0.07 ind:pas:3s; +ajournait ajourner ver 1.48 0.88 0 0.07 ind:imp:3s; +ajourne ajourner ver 1.48 0.88 0.19 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ajournement ajournement nom m s 0.47 0.14 0.45 0.07 +ajournements ajournement nom m p 0.47 0.14 0.02 0.07 +ajourner ajourner ver 1.48 0.88 0.28 0.47 inf; +ajournez ajourner ver 1.48 0.88 0.01 0 imp:pre:2p; +ajourné ajourner ver m s 1.48 0.88 0.27 0.14 par:pas; +ajournée ajourner ver f s 1.48 0.88 0.71 0.14 par:pas; +ajournés ajourner ver m p 1.48 0.88 0.01 0 par:pas; +ajours ajour nom m p 0 0.14 0 0.14 +ajouré ajouré adj m s 0.02 2.7 0 0.81 +ajourée ajouré adj f s 0.02 2.7 0 0.81 +ajourées ajouré adj f p 0.02 2.7 0.02 0.68 +ajourés ajouré adj m p 0.02 2.7 0 0.41 +ajout ajout nom m s 0.94 0.47 0.73 0.2 +ajouta ajouter ver 38.88 224.66 0.39 85 ind:pas:3s; +ajoutai ajouter ver 38.88 224.66 0.04 5.34 ind:pas:1s; +ajoutaient ajouter ver 38.88 224.66 0.09 4.26 ind:imp:3p; +ajoutais ajouter ver 38.88 224.66 0.19 1.42 ind:imp:1s;ind:imp:2s; +ajoutait ajouter ver 38.88 224.66 0.35 22.57 ind:imp:3s; +ajoutant ajouter ver 38.88 224.66 0.63 11.08 par:pre; +ajoutassent ajouter ver 38.88 224.66 0 0.07 sub:imp:3p; +ajoute ajouter ver 38.88 224.66 8.34 29.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ajoutent ajouter ver 38.88 224.66 0.79 1.89 ind:pre:3p; +ajouter ajouter ver 38.88 224.66 15.45 33.85 inf;; +ajoutera ajouter ver 38.88 224.66 0.5 0.68 ind:fut:3s; +ajouterai ajouter ver 38.88 224.66 1.09 1.22 ind:fut:1s; +ajouteraient ajouter ver 38.88 224.66 0 0.27 cnd:pre:3p; +ajouterais ajouter ver 38.88 224.66 0.65 0.41 cnd:pre:1s;cnd:pre:2s; +ajouterait ajouter ver 38.88 224.66 0.27 0.74 cnd:pre:3s; +ajouteras ajouter ver 38.88 224.66 0.01 0 ind:fut:2s; +ajouterez ajouter ver 38.88 224.66 0.02 0.41 ind:fut:2p; +ajouterons ajouter ver 38.88 224.66 0.08 0 ind:fut:1p; +ajouteront ajouter ver 38.88 224.66 0.03 0.41 ind:fut:3p; +ajoutes ajouter ver 38.88 224.66 0.7 0.61 ind:pre:2s; +ajoutez ajouter ver 38.88 224.66 3.09 2.3 imp:pre:2p;ind:pre:2p; +ajoutiez ajouter ver 38.88 224.66 0.03 0.14 ind:imp:2p; +ajoutions ajouter ver 38.88 224.66 0.14 0.14 ind:imp:1p; +ajoutons ajouter ver 38.88 224.66 0.57 0.68 imp:pre:1p;ind:pre:1p; +ajouts ajout nom m p 0.94 0.47 0.21 0.27 +ajoutât ajouter ver 38.88 224.66 0 0.27 sub:imp:3s; +ajoutèrent ajouter ver 38.88 224.66 0.27 0.68 ind:pas:3p; +ajouté ajouter ver m s 38.88 224.66 4.42 18.99 imp:pre:2s;par:pas;par:pas; +ajoutée ajouter ver f s 38.88 224.66 0.43 0.95 par:pas; +ajoutées ajouter ver f p 38.88 224.66 0.15 0.74 par:pas; +ajoutés ajouter ver m p 38.88 224.66 0.17 0.41 par:pas; +ajusta ajuster ver 4.88 10.41 0.01 2.5 ind:pas:3s; +ajustable ajustable adj s 0.07 0.07 0.07 0.07 +ajustables ajustable adj p 0.07 0.07 0.01 0 +ajustage ajustage nom m s 0.01 0.14 0.01 0.14 +ajustaient ajuster ver 4.88 10.41 0.02 0.07 ind:imp:3p; +ajustais ajuster ver 4.88 10.41 0.02 0 ind:imp:1s;ind:imp:2s; +ajustait ajuster ver 4.88 10.41 0.02 0.81 ind:imp:3s; +ajustant ajuster ver 4.88 10.41 0.08 1.01 par:pre; +ajuste ajuster ver 4.88 10.41 1.68 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ajustement ajustement nom m s 0.85 0.88 0.4 0.61 +ajustements ajustement nom m p 0.85 0.88 0.46 0.27 +ajustent ajuster ver 4.88 10.41 0.1 0.27 ind:pre:3p; +ajuster ajuster ver 4.88 10.41 1.77 1.76 inf; +ajusterai ajuster ver 4.88 10.41 0.01 0.07 ind:fut:1s; +ajusteur ajusteur nom m s 0.62 0.61 0.62 0.54 +ajusteurs ajusteur nom m p 0.62 0.61 0 0.07 +ajustez ajuster ver 4.88 10.41 0.43 0 imp:pre:2p;ind:pre:2p; +ajustons ajuster ver 4.88 10.41 0.04 0.07 imp:pre:1p;ind:pre:1p; +ajusture ajusture nom f s 0 0.07 0 0.07 +ajustèrent ajuster ver 4.88 10.41 0 0.07 ind:pas:3p; +ajusté ajusté adj m s 0.42 3.24 0.28 1.22 +ajustée ajusté adj f s 0.42 3.24 0.04 1.08 +ajustées ajuster ver f p 4.88 10.41 0.15 0.34 par:pas; +ajustés ajuster ver m p 4.88 10.41 0.28 0.41 par:pas; +ajutage ajutage nom m s 0.1 0 0.1 0 +akkadien akkadien nom m s 0.03 0 0.03 0 +akkadienne akkadienne adj f s 0.01 0 0.01 0 +ako ako nom m s 0.08 0 0.08 0 +akvavit akvavit nom m s 0.01 0.2 0.01 0.2 +al_dente al_dente adv 0.4 0.14 0.4 0.14 +alabandines alabandine nom f p 0 0.07 0 0.07 +alacrité alacrité nom f s 0.01 0.61 0.01 0.61 +alain alain nom s 0.14 0 0.14 0 +alaire alaire adj s 0.14 0 0.14 0 +alaise alaise nom f s 0.02 0.07 0.02 0.07 +alambic alambic nom m s 0.7 1.22 0.65 1.08 +alambics alambic nom m p 0.7 1.22 0.05 0.14 +alambiqué alambiquer ver m s 0.04 0 0.02 0 par:pas; +alambiquée alambiqué adj f s 0.09 0.14 0.01 0 +alambiquées alambiqué adj f p 0.09 0.14 0.04 0.07 +alambiqués alambiqué adj m p 0.09 0.14 0.03 0.07 +alangui alangui adj m s 0.04 2.3 0.02 0.95 +alanguie alanguir ver f s 0.13 1.89 0.12 0.34 par:pas; +alanguies alangui adj f p 0.04 2.3 0 0.2 +alanguir alanguir ver 0.13 1.89 0 0.2 inf; +alanguis alangui adj m p 0.04 2.3 0 0.27 +alanguissaient alanguir ver 0.13 1.89 0 0.14 ind:imp:3p; +alanguissait alanguir ver 0.13 1.89 0.01 0.2 ind:imp:3s; +alanguissant alanguir ver 0.13 1.89 0 0.14 par:pre; +alanguissante alanguissant adj f s 0 0.07 0 0.07 +alanguissement alanguissement nom m s 0 0.47 0 0.34 +alanguissements alanguissement nom m p 0 0.47 0 0.14 +alanguissent alanguir ver 0.13 1.89 0 0.07 ind:pre:3p; +alanguit alanguir ver 0.13 1.89 0 0.34 ind:pre:3s;ind:pas:3s; +alarma alarmer ver 2.45 6.28 0.14 0.81 ind:pas:3s; +alarmai alarmer ver 2.45 6.28 0 0.07 ind:pas:1s; +alarmaient alarmer ver 2.45 6.28 0 0.07 ind:imp:3p; +alarmait alarmer ver 2.45 6.28 0 1.08 ind:imp:3s; +alarmant alarmant adj m s 1.54 2.84 1.12 0.81 +alarmante alarmant adj f s 1.54 2.84 0.22 0.68 +alarmantes alarmant adj f p 1.54 2.84 0.16 0.54 +alarmants alarmant adj m p 1.54 2.84 0.03 0.81 +alarme alarme nom f s 19.29 7.84 16.71 6.35 +alarmer alarmer ver 2.45 6.28 1.19 1.22 inf; +alarmeraient alarmer ver 2.45 6.28 0.01 0 cnd:pre:3p; +alarmerait alarmer ver 2.45 6.28 0.02 0.07 cnd:pre:3s; +alarmes alarme nom f p 19.29 7.84 2.58 1.49 +alarmez alarmer ver 2.45 6.28 0.41 0.07 imp:pre:2p;ind:pre:2p; +alarmisme alarmisme nom m s 0 0.07 0 0.07 +alarmiste alarmiste adj f s 0.24 0.27 0.19 0 +alarmistes alarmiste adj p 0.24 0.27 0.04 0.27 +alarmé alarmer ver m s 2.45 6.28 0.14 1.15 par:pas; +alarmée alarmer ver f s 2.45 6.28 0.13 0.54 par:pas; +alarmées alarmer ver f p 2.45 6.28 0 0.2 par:pas; +alarmés alarmer ver m p 2.45 6.28 0.03 0.41 par:pas; +alba alba nom f s 0 0.2 0 0.2 +albacore albacore nom m s 0.09 0 0.09 0 +albanais albanais adj m 0.68 1.28 0.39 0.74 +albanaise albanais adj f s 0.68 1.28 0.28 0.47 +albanaises albanais adj f p 0.68 1.28 0 0.07 +albanophone albanophone adj m s 0.01 0 0.01 0 +albatros albatros nom m 2.01 1.15 2.01 1.15 +albe albe nom m s 0.01 0 0.01 0 +albertine albertine nom f s 0 0.07 0 0.07 +albigeois albigeois adj m 0 0.14 0 0.14 +albigeois albigeois nom m 0 0.14 0 0.14 +albinisme albinisme nom m s 0.02 0 0.02 0 +albinos albinos adj 0.47 0.74 0.47 0.74 +alboche alboche nom s 0 0.07 0 0.07 +albugo albugo nom m s 0 0.07 0 0.07 +album album nom m s 11.29 18.38 9.36 13.31 +albumine albumine nom f s 0.19 0.14 0.17 0.14 +albumines albumine nom f p 0.19 0.14 0.02 0 +albumineuse albumineux adj f s 0 0.14 0 0.14 +albums album nom m p 11.29 18.38 1.93 5.07 +albâtre albâtre nom m s 0.57 3.11 0.57 2.97 +albâtres albâtre nom m p 0.57 3.11 0 0.14 +albène albène nom m s 0 0.07 0 0.07 +alcade alcade nom m s 0.3 0.2 0.3 0.2 +alcalde alcalde nom m s 0.05 0 0.05 0 +alcali alcali nom m s 0.11 0.27 0.08 0.27 +alcalin alcalin adj m s 0.24 0.14 0.09 0.07 +alcaline alcalin adj f s 0.24 0.14 0.08 0 +alcalines alcalin adj f p 0.24 0.14 0.03 0 +alcaliniser alcaliniser ver 0.02 0 0.02 0 inf; +alcalinité alcalinité nom f s 0.03 0 0.03 0 +alcalins alcalin adj m p 0.24 0.14 0.04 0.07 +alcalis alcali nom m p 0.11 0.27 0.03 0 +alcalose alcalose nom f s 0.02 0 0.02 0 +alcaloïde alcaloïde nom m s 0.16 0 0.16 0 +alcatraz alcatraz nom m 1.09 0.2 1.09 0.2 +alcazar alcazar nom m s 0.53 1.69 0.53 1.69 +alchimie alchimie nom f s 1.05 1.96 0.95 1.82 +alchimies alchimie nom f p 1.05 1.96 0.1 0.14 +alchimique alchimique adj s 0.02 1.15 0.02 0.81 +alchimiques alchimique adj f p 0.02 1.15 0 0.34 +alchimiste alchimiste nom s 2.87 2.84 2.65 2.16 +alchimistes alchimiste nom p 2.87 2.84 0.22 0.68 +alcibiade alcibiade nom m s 0.01 0 0.01 0 +alcool alcool nom m s 41.3 42.84 40.29 39.73 +alcoolique alcoolique adj s 3.73 2.16 3.54 1.55 +alcooliques alcoolique nom p 4.12 1.55 1.37 0.61 +alcoolise alcooliser ver 0.33 0.34 0 0.07 ind:pre:3s; +alcoolisme alcoolisme nom m s 1.84 0.95 1.84 0.95 +alcoolisé alcoolisé adj m s 0.6 1.55 0.31 0.47 +alcoolisée alcoolisé adj f s 0.6 1.55 0.04 0.2 +alcoolisées alcoolisé adj f p 0.6 1.55 0.23 0.68 +alcoolisés alcoolisé adj m p 0.6 1.55 0.01 0.2 +alcoolo alcoolo adj s 1.16 0.47 1.08 0.27 +alcoolos alcoolo nom p 1.4 0.88 0.41 0.2 +alcools alcool nom m p 41.3 42.84 1 3.11 +alcoolémie alcoolémie nom f s 0.58 0.2 0.58 0.2 +alcoomètre alcoomètre nom m s 0 0.07 0 0.07 +alcootest alcootest nom m s 0.31 0.2 0.31 0.2 +alcoran alcoran nom m s 0 0.07 0 0.07 +alcyon alcyon nom m s 0.13 0.74 0.13 0.61 +alcyons alcyon nom m p 0.13 0.74 0 0.14 +alcées alcée nom f p 0 0.07 0 0.07 +alcôve alcôve nom f s 0.84 4.59 0.79 4.32 +alcôves alcôve nom f p 0.84 4.59 0.05 0.27 +alde alde nom m s 0.22 0 0.22 0 +alderman alderman nom m s 0.14 0 0.14 0 +aldol aldol nom m s 0.05 0 0.05 0 +aldéhyde aldéhyde nom m s 0.01 0.07 0.01 0.07 +ale ale nom f s 2.1 0.14 2.1 0.14 +alea_jacta_est alea_jacta_est adv 0.3 0.07 0.3 0.07 +alenti alentir ver m s 0 0.47 0 0.14 par:pas; +alentie alentir ver f s 0 0.47 0 0.07 par:pas; +alenties alentir ver f p 0 0.47 0 0.07 par:pas; +alentis alentir ver m p 0 0.47 0 0.2 ind:pre:1s;par:pas; +alentour alentour adv_sup 1.63 8.92 1.63 8.92 +alentours alentour nom_sup m p 4.77 9.12 4.77 9.12 +alençonnais alençonnais adj m s 0 0.27 0 0.07 +alençonnaise alençonnais adj f s 0 0.27 0 0.2 +aleph aleph nom m 0.05 0.41 0.05 0.41 +alerta alerter ver 6.4 12.91 0.04 0.88 ind:pas:3s; +alertait alerter ver 6.4 12.91 0.03 0.61 ind:imp:3s; +alertant alerter ver 6.4 12.91 0.17 0.14 par:pre; +alerte alerte ono 5.41 0.81 5.41 0.81 +alertement alertement adv 0 0.27 0 0.27 +alertent alerter ver 6.4 12.91 0.06 0 ind:pre:3p; +alerter alerter ver 6.4 12.91 1.61 2.91 inf; +alertera alerter ver 6.4 12.91 0.12 0 ind:fut:3s; +alerterai alerter ver 6.4 12.91 0.2 0 ind:fut:1s; +alerterais alerter ver 6.4 12.91 0.02 0 cnd:pre:1s; +alerterait alerter ver 6.4 12.91 0.05 0.27 cnd:pre:3s; +alerterez alerter ver 6.4 12.91 0.01 0 ind:fut:2p; +alerteront alerter ver 6.4 12.91 0.14 0 ind:fut:3p; +alertes alerte nom f p 13.45 13.11 0.78 2.64 +alertez alerter ver 6.4 12.91 1.13 0.07 imp:pre:2p;ind:pre:2p; +alertions alerter ver 6.4 12.91 0 0.07 ind:imp:1p; +alertons alerter ver 6.4 12.91 0.09 0 imp:pre:1p;ind:pre:1p; +alertât alerter ver 6.4 12.91 0 0.07 sub:imp:3s; +alertèrent alerter ver 6.4 12.91 0.01 0.14 ind:pas:3p; +alerté alerter ver m s 6.4 12.91 0.9 3.65 par:pas; +alertée alerter ver f s 6.4 12.91 0.25 1.22 par:pas; +alertées alerter ver f p 6.4 12.91 0.01 0.14 par:pas; +alertés alerter ver m p 6.4 12.91 0.34 1.62 par:pas; +alevin alevin nom m s 0.02 0.68 0.01 0.07 +alevins alevin nom m p 0.02 0.68 0.01 0.61 +alexandra alexandra nom m s 0.51 0.47 0.51 0.47 +alexandrin alexandrin nom m s 0.82 1.89 0.54 0.41 +alexandrine alexandrin adj f s 0.37 0.14 0 0.07 +alexandrines alexandrin adj f p 0.37 0.14 0.1 0 +alexandrins alexandrin nom m p 0.82 1.89 0.29 1.49 +alexie alexie nom f s 0.01 0 0.01 0 +alexithymie alexithymie nom m s 0.03 0 0.03 0 +alezan alezan nom m s 0.12 1.35 0.11 1.01 +alezane alezan adj f s 0.04 2.36 0.02 1.82 +alezanes alezan adj f p 0.04 2.36 0 0.07 +alezans alezan nom m p 0.12 1.35 0.01 0.34 +alfa alfa nom m s 0.1 1.01 0.1 0.88 +alfas alfa nom m p 0.1 1.01 0 0.14 +alfénides alfénide nom m p 0 0.07 0 0.07 +algarade algarade nom f s 0.02 1.96 0.02 1.62 +algarades algarade nom f p 0.02 1.96 0 0.34 +algie algie nom f s 0.27 0 0.27 0 +algonquin algonquin nom m s 0.09 0.54 0.09 0.47 +algonquines algonquin nom f p 0.09 0.54 0 0.07 +algorithme algorithme nom m s 0.72 0 0.51 0 +algorithmes algorithme nom m p 0.72 0 0.21 0 +algorithmique algorithmique adj s 0.13 0.07 0.13 0.07 +algue algue nom f s 2.66 12.03 0.29 1.62 +algues algue nom f p 2.66 12.03 2.36 10.41 +algèbre algèbre nom f s 1.37 2.03 1.37 2.03 +algébrique algébrique adj s 0.14 0.54 0.11 0.27 +algébriquement algébriquement adv 0 0.07 0 0.07 +algébriques algébrique adj p 0.14 0.54 0.03 0.27 +algébriste algébriste nom s 0 0.14 0 0.07 +algébristes algébriste nom p 0 0.14 0 0.07 +algérien algérien adj m s 0.83 7.43 0.46 3.18 +algérienne algérien adj f s 0.83 7.43 0.25 2.03 +algériennes algérien adj f p 0.83 7.43 0.01 0.74 +algériens algérien nom m p 0.79 5.81 0.34 2.91 +algérois algérois adj m 0 0.74 0 0.61 +algéroise algérois adj f s 0 0.74 0 0.14 +alhambra alhambra nom f s 0 1.76 0 1.76 +alias alias adv_sup 5.45 3.85 5.45 3.85 +alibi alibi nom m s 11.13 6.82 10.28 5.47 +alibis alibi nom m p 11.13 6.82 0.85 1.35 +alidade alidade nom f s 0 0.07 0 0.07 +aligna aligner ver 7.8 26.69 0 0.61 ind:pas:3s; +alignaient aligner ver 7.8 26.69 0.05 5.07 ind:imp:3p; +alignais aligner ver 7.8 26.69 0.11 0.27 ind:imp:1s;ind:imp:2s; +alignait aligner ver 7.8 26.69 0.06 1.89 ind:imp:3s; +alignant aligner ver 7.8 26.69 0.08 0.41 par:pre; +aligne aligner ver 7.8 26.69 1.48 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alignement alignement nom m s 1.68 5.14 1.66 4.12 +alignements alignement nom m p 1.68 5.14 0.02 1.01 +alignent aligner ver 7.8 26.69 0.46 2.3 ind:pre:3p; +aligner aligner ver 7.8 26.69 1.61 3.78 inf; +alignera aligner ver 7.8 26.69 0.03 0.07 ind:fut:3s; +aligneraient aligner ver 7.8 26.69 0.02 0.07 cnd:pre:3p; +alignerez aligner ver 7.8 26.69 0.02 0 ind:fut:2p; +alignerons aligner ver 7.8 26.69 0.02 0 ind:fut:1p; +aligneront aligner ver 7.8 26.69 0.19 0.07 ind:fut:3p; +alignes aligner ver 7.8 26.69 0.19 0.2 ind:pre:2s; +alignez aligner ver 7.8 26.69 1.39 0.07 imp:pre:2p;ind:pre:2p; +alignons aligner ver 7.8 26.69 0.12 0.07 imp:pre:1p;ind:pre:1p; +alignèrent aligner ver 7.8 26.69 0 0.27 ind:pas:3p; +aligné aligner ver m s 7.8 26.69 0.47 0.88 par:pas; +alignée aligner ver f s 7.8 26.69 0.19 0.61 par:pas; +alignées aligner ver f p 7.8 26.69 0.48 3.58 par:pas; +alignés aligner ver m p 7.8 26.69 0.84 5.2 par:pas; +aligot aligot nom m s 0.03 0 0.03 0 +aligoté aligoté adj m s 0 0.2 0 0.2 +aligoté aligoté nom m s 0 0.2 0 0.2 +alim alim nom f s 0.21 0 0.21 0 +aliment aliment nom m s 4.67 6.62 1.11 1.76 +alimenta alimenter ver 6.24 8.92 0 0.2 ind:pas:3s; +alimentaient alimenter ver 6.24 8.92 0.02 0.95 ind:imp:3p; +alimentaire alimentaire adj s 5.85 4.8 4.5 2.57 +alimentaires alimentaire adj p 5.85 4.8 1.35 2.23 +alimentais alimenter ver 6.24 8.92 0.01 0.07 ind:imp:1s; +alimentait alimenter ver 6.24 8.92 0.31 1.01 ind:imp:3s; +alimentant alimenter ver 6.24 8.92 0.23 0.07 par:pre; +alimentation alimentation nom f s 5.64 4.19 5.59 4.19 +alimentations alimentation nom f p 5.64 4.19 0.05 0 +alimente alimenter ver 6.24 8.92 1.32 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alimentent alimenter ver 6.24 8.92 0.2 0.54 ind:pre:3p; +alimenter alimenter ver 6.24 8.92 2.62 3.85 inf; +alimentera alimenter ver 6.24 8.92 0.17 0.14 ind:fut:3s; +alimentez alimenter ver 6.24 8.92 0.08 0 imp:pre:2p;ind:pre:2p; +alimentons alimenter ver 6.24 8.92 0.04 0 imp:pre:1p;ind:pre:1p; +aliments aliment nom m p 4.67 6.62 3.56 4.86 +alimentèrent alimenter ver 6.24 8.92 0 0.07 ind:pas:3p; +alimenté alimenter ver m s 6.24 8.92 0.82 0.27 par:pas; +alimentée alimenter ver f s 6.24 8.92 0.2 0.81 par:pas; +alimentées alimenter ver f p 6.24 8.92 0.03 0.2 par:pas; +alimentés alimenter ver m p 6.24 8.92 0.19 0.2 par:pas; +alinéa alinéa nom m s 0.75 0.68 0.73 0.47 +alinéas alinéa nom m p 0.75 0.68 0.01 0.2 +alise alise nom f s 0.05 0.07 0.01 0 +alises alise nom f p 0.05 0.07 0.04 0.07 +alisier alisier nom m s 0 0.07 0 0.07 +alita aliter ver 0.9 1.49 0.01 0.27 ind:pas:3s; +alitai aliter ver 0.9 1.49 0 0.07 ind:pas:1s; +alitait aliter ver 0.9 1.49 0 0.07 ind:imp:3s; +alitement alitement nom m s 0.01 0 0.01 0 +aliter aliter ver 0.9 1.49 0.02 0.2 inf; +alité aliter ver m s 0.9 1.49 0.55 0.41 par:pas; +alitée aliter ver f s 0.9 1.49 0.32 0.34 par:pas; +alitées aliter ver f p 0.9 1.49 0 0.14 par:pas; +alizé alizé nom m s 0.33 0.68 0.1 0.41 +alizés alizé nom m p 0.33 0.68 0.22 0.27 +aliène aliéner ver 0.49 2.23 0.19 0 ind:pre:1s;ind:pre:3s; +aliéna aliéner ver 0.49 2.23 0 0.74 ind:pas:3s; +aliénant aliénant adj m s 0.14 1.22 0.14 0.14 +aliénante aliénant adj f s 0.14 1.22 0 1.08 +aliénation aliénation nom f s 1.19 1.49 1.19 1.49 +aliéner aliéner ver 0.49 2.23 0.12 0.54 inf; +aliénerait aliéner ver 0.49 2.23 0 0.07 cnd:pre:3s; +aliénerez aliéner ver 0.49 2.23 0.01 0 ind:fut:2p; +aliéniez aliéner ver 0.49 2.23 0.01 0 ind:imp:2p; +aliéniste aliéniste nom s 0.05 0 0.05 0 +aliénât aliéner ver 0.49 2.23 0 0.07 sub:imp:3s; +aliéné aliéné nom m s 2.28 0.61 0.54 0.14 +aliénée aliéné nom f s 2.28 0.61 0.19 0 +aliénées aliéner ver f p 0.49 2.23 0 0.07 par:pas; +aliénés aliéné nom m p 2.28 0.61 1.56 0.47 +alkali alkali nom m s 0.06 0 0.06 0 +all_right all_right adv 1.53 0.2 1.53 0.2 +alla aller ver 9992.77 2854.93 4.67 67.57 ind:pas:3s; +allai aller ver 9992.77 2854.93 1.12 18.92 ind:pas:1s; +allaient aller ver 9992.77 2854.93 16.55 80.88 ind:imp:3p; +allais aller ver 9992.77 2854.93 108.69 91.01 ind:imp:1s;ind:imp:2s; +allait aller ver 9992.77 2854.93 132.04 370.61 ind:imp:3s; +allaitais allaiter ver 1.73 1.55 0.14 0 ind:imp:1s; +allaitait allaiter ver 1.73 1.55 0.16 0.2 ind:imp:3s; +allaitant allaiter ver 1.73 1.55 0.01 0.14 par:pre; +allaitante allaitant adj f s 0.03 0.14 0.01 0 +allaitantes allaitant adj f p 0.03 0.14 0.01 0.07 +allaite allaiter ver 1.73 1.55 0.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allaitement allaitement nom m s 0.29 0.14 0.29 0.14 +allaitent allaiter ver 1.73 1.55 0.01 0.14 ind:pre:3p; +allaiter allaiter ver 1.73 1.55 0.6 0.61 inf; +allaiterait allaiter ver 1.73 1.55 0 0.07 cnd:pre:3s; +allaité allaiter ver m s 1.73 1.55 0.16 0.14 par:pas; +allaitée allaiter ver f s 1.73 1.55 0.12 0 par:pas; +allaités allaiter ver m p 1.73 1.55 0 0.2 par:pas; +allant aller ver 9992.77 2854.93 8.11 24.39 par:pre; +allante allant adj f s 0.86 4.19 0.1 0 +allas aller ver 9992.77 2854.93 0 0.07 ind:pas:2s; +allassent aller ver 9992.77 2854.93 0 0.2 sub:imp:3p; +allegretto allegretto adv 0 0.27 0 0.27 +allegro allegro adv 0.11 0.47 0.11 0.47 +allemagne allemagne nom f s 0.08 0.27 0.08 0.27 +allemand allemand adj m s 41.32 86.55 19.91 27.97 +allemande allemand adj f s 41.32 86.55 10.82 25.34 +allemandes allemand adj f p 41.32 86.55 2.69 12.97 +allemands allemand nom m p 49.08 91.55 30.66 61.42 +aller aller ver 9992.77 2854.93 816.76 368.04 inf;;inf;;inf;; +aller_retour aller_retour nom m s 2.33 2.43 1.83 2.36 +allergie allergie nom f s 5 0.61 3.12 0.61 +allergies allergie nom f p 5 0.61 1.88 0 +allergique allergique adj s 8.15 0.74 7.76 0.61 +allergiques allergique adj p 8.15 0.74 0.39 0.14 +allergologie allergologie nom f s 0.14 0 0.14 0 +allergologue allergologue nom s 0.03 0 0.03 0 +allergène allergène nom m s 0.08 0 0.04 0 +allergènes allergène nom m p 0.08 0 0.04 0 +allers aller nom m p 17.78 8.78 0.56 0.68 +aller_retour aller_retour nom m p 2.33 2.43 0.5 0.07 +allez aller ver 9992.77 2854.93 1414.85 155.54 imp:pre:2p;ind:pre:2p; +allia allier ver 4.62 7.97 0.01 0.14 ind:pas:3s; +alliacé alliacé adj m s 0 0.14 0 0.14 +alliage alliage nom m s 1.07 1.01 0.81 0.95 +alliages alliage nom m p 1.07 1.01 0.27 0.07 +alliait allier ver 4.62 7.97 0.01 0.81 ind:imp:3s; +alliance alliance nom f s 18.85 24.73 16.73 20.81 +alliances alliance nom f p 18.85 24.73 2.12 3.92 +alliant allier ver 4.62 7.97 0.25 0.27 par:pre; +allie allier ver 4.62 7.97 1.15 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allient allier ver 4.62 7.97 0.34 0.07 ind:pre:3p; +allier allier ver 4.62 7.97 1.14 0.88 inf; +alliera allier ver 4.62 7.97 0.02 0 ind:fut:3s; +allierait allier ver 4.62 7.97 0.02 0 cnd:pre:3s; +alliez aller ver 9992.77 2854.93 16.49 3.31 ind:imp:2p; +alligator alligator nom m s 2.8 0.47 1.63 0.2 +alligators alligator nom m p 2.8 0.47 1.17 0.27 +allions aller ver 9992.77 2854.93 8.62 23.65 ind:imp:1p; +allitératif allitératif adj m s 0.01 0 0.01 0 +allitération allitération nom f s 0.09 0 0.05 0 +allitérations allitération nom f p 0.09 0 0.03 0 +allium allium nom m s 0.02 0 0.02 0 +alliât allier ver 4.62 7.97 0 0.07 sub:imp:3s; +allié allié nom m s 11.64 55.34 2.4 4.05 +alliée allié nom f s 11.64 55.34 1.47 2.16 +alliées allié adj f p 2.66 25.68 0.64 9.53 +alliés allié nom m p 11.64 55.34 7.59 48.51 +allo allo ono 31.11 2.16 31.11 2.16 +allobarbital allobarbital nom m 0 0.07 0 0.07 +allobroges allobroge adj p 0 0.27 0 0.27 +alloc alloc nom f s 0.59 0.14 0.18 0 +allocataires allocataire nom p 0.03 0 0.03 0 +allocation allocation nom f s 3.16 1.55 1.35 0.41 +allocations allocation nom f p 3.16 1.55 1.81 1.15 +allochtone allochtone nom m s 0.01 0 0.01 0 +allocs alloc nom f p 0.59 0.14 0.41 0.14 +allocution allocution nom f s 0.33 4.12 0.31 3.11 +allocutions allocution nom f p 0.33 4.12 0.02 1.01 +allogreffe allogreffe nom f s 0.01 0 0.01 0 +allogènes allogène adj f p 0 0.07 0 0.07 +allonge allonger ver 41.05 89.66 11.81 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +allongea allonger ver 41.05 89.66 0.12 8.99 ind:pas:3s; +allongeai allonger ver 41.05 89.66 0.02 0.88 ind:pas:1s; +allongeaient allonger ver 41.05 89.66 0.03 2.43 ind:imp:3p; +allongeais allonger ver 41.05 89.66 0.47 0.95 ind:imp:1s;ind:imp:2s; +allongeait allonger ver 41.05 89.66 0.32 6.35 ind:imp:3s; +allongeant allonger ver 41.05 89.66 0.4 3.58 par:pre; +allongement allongement nom m s 0.09 0.68 0.09 0.68 +allongent allonger ver 41.05 89.66 0.97 2.57 ind:pre:3p; +allongeons allonger ver 41.05 89.66 0.11 0.14 imp:pre:1p;ind:pre:1p; +allonger allonger ver 41.05 89.66 9.96 12.16 inf;; +allongera allonger ver 41.05 89.66 0.04 0.2 ind:fut:3s; +allongerai allonger ver 41.05 89.66 0.05 0.14 ind:fut:1s; +allongeraient allonger ver 41.05 89.66 0.01 0.07 cnd:pre:3p; +allongerais allonger ver 41.05 89.66 0.04 0.2 cnd:pre:1s;cnd:pre:2s; +allongerait allonger ver 41.05 89.66 0 0.47 cnd:pre:3s; +allongeras allonger ver 41.05 89.66 0.04 0 ind:fut:2s; +allonges allonger ver 41.05 89.66 1.02 0.07 ind:pre:2s; +allongez allonger ver 41.05 89.66 4.13 0.34 imp:pre:2p;ind:pre:2p; +allongeâmes allonger ver 41.05 89.66 0 0.2 ind:pas:1p; +allongeât allonger ver 41.05 89.66 0 0.07 sub:imp:3s; +allongiez allonger ver 41.05 89.66 0.1 0.07 ind:imp:2p; +allongions allonger ver 41.05 89.66 0.01 0.27 ind:imp:1p; +allongèrent allonger ver 41.05 89.66 0 0.88 ind:pas:3p; +allongé allonger ver m s 41.05 89.66 5.92 20.2 par:pas; +allongée allonger ver f s 41.05 89.66 4.04 10.88 par:pas; +allongées allongé adj f p 3.42 12.57 0.14 2.09 +allongés allonger ver m p 41.05 89.66 1.37 5.61 par:pas; +allons aller ver 9992.77 2854.93 500.21 129.8 imp:pre:1p;ind:pre:1p; +allopathie allopathie nom f s 0.14 0 0.14 0 +allostérique allostérique adj m s 0.01 0 0.01 0 +alloua allouer ver 0.57 2.09 0 0.14 ind:pas:3s; +allouait allouer ver 0.57 2.09 0 0.54 ind:imp:3s; +allouant allouer ver 0.57 2.09 0 0.07 par:pre; +alloue allouer ver 0.57 2.09 0.04 0 ind:pre:1s;ind:pre:3s; +allouer allouer ver 0.57 2.09 0.09 0.34 inf; +allouerait allouer ver 0.57 2.09 0 0.14 cnd:pre:3s; +alloué allouer ver m s 0.57 2.09 0.21 0.41 par:pas; +allouée allouer ver f s 0.57 2.09 0.14 0.2 par:pas; +alloués allouer ver m p 0.57 2.09 0.09 0.27 par:pas; +alluma allumer ver 54.8 116.28 0.33 23.78 ind:pas:3s; +allumage allumage nom m s 1.75 1.35 1.75 1.35 +allumai allumer ver 54.8 116.28 0.01 2.09 ind:pas:1s; +allumaient allumer ver 54.8 116.28 0.17 4.53 ind:imp:3p; +allumais allumer ver 54.8 116.28 0.4 1.22 ind:imp:1s;ind:imp:2s; +allumait allumer ver 54.8 116.28 0.78 8.11 ind:imp:3s; +allumant allumer ver 54.8 116.28 0.33 4.05 par:pre; +allume allumer ver 54.8 116.28 19.22 18.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allume_cigare allume_cigare nom m s 0.19 0.14 0.19 0.14 +allume_cigares allume_cigares nom m 0.14 0.14 0.14 0.14 +allume_feu allume_feu nom m 0.04 0.27 0.04 0.27 +allume_gaz allume_gaz nom m 0.2 0.14 0.2 0.14 +allument allumer ver 54.8 116.28 1.23 3.24 ind:pre:3p; +allumer allumer ver 54.8 116.28 11.98 20.74 inf; +allumera allumer ver 54.8 116.28 0.74 0.34 ind:fut:3s; +allumerai allumer ver 54.8 116.28 0.97 0.14 ind:fut:1s; +allumeraient allumer ver 54.8 116.28 0 0.34 cnd:pre:3p; +allumerais allumer ver 54.8 116.28 0.04 0.07 cnd:pre:1s; +allumerait allumer ver 54.8 116.28 0.03 0.34 cnd:pre:3s; +allumeras allumer ver 54.8 116.28 0.07 0.07 ind:fut:2s; +allumerons allumer ver 54.8 116.28 0.02 0.14 ind:fut:1p; +allumeront allumer ver 54.8 116.28 0.45 0.2 ind:fut:3p; +allumes allumer ver 54.8 116.28 1.69 0.27 ind:pre:2s;sub:pre:2s; +allumette allumette nom f s 15.65 20.88 4.43 9.73 +allumettes allumette nom f p 15.65 20.88 11.22 11.15 +allumeur allumeur nom m s 1.49 1.15 0.32 0.14 +allumeurs allumeur nom m p 1.49 1.15 0.07 0.07 +allumeuse allumeur nom f s 1.49 1.15 1.02 0.74 +allumeuses allumeur nom f p 1.49 1.15 0.09 0.2 +allumez allumer ver 54.8 116.28 5.27 0.47 imp:pre:2p;ind:pre:2p; +allumiez allumer ver 54.8 116.28 0.25 0 ind:imp:2p; +allumions allumer ver 54.8 116.28 0.01 0.34 ind:imp:1p; +allumoir allumoir nom m s 0 0.07 0 0.07 +allumons allumer ver 54.8 116.28 0.53 0.47 imp:pre:1p;ind:pre:1p; +allumâmes allumer ver 54.8 116.28 0 0.14 ind:pas:1p; +allumât allumer ver 54.8 116.28 0 0.2 sub:imp:3s; +allumèrent allumer ver 54.8 116.28 0.02 2.5 ind:pas:3p; +allumé allumer ver m s 54.8 116.28 6.76 15.54 par:pas; +allumée allumé adj f s 5.76 14.59 3.59 5.74 +allumées allumer ver f p 54.8 116.28 0.8 1.89 par:pas; +allumés allumer ver m p 54.8 116.28 0.62 1.49 par:pas; +allure allure nom f s 10.57 65.88 10 57.09 +allures allure nom f p 10.57 65.88 0.56 8.78 +alluré alluré adj m s 0 0.07 0 0.07 +allusif allusif adj m s 0 1.22 0 0.34 +allusifs allusif adj m p 0 1.22 0 0.2 +allusion allusion nom f s 4.72 31.15 3.88 23.18 +allusionne allusionner ver 0 0.07 0 0.07 ind:pre:3s; +allusions allusion nom f p 4.72 31.15 0.84 7.97 +allusive allusif adj f s 0 1.22 0 0.41 +allusivement allusivement adv 0.1 0.14 0.1 0.14 +allusives allusif adj f p 0 1.22 0 0.27 +alluvion alluvion nom f s 0.16 0.95 0.01 0.14 +alluvions alluvion nom f p 0.16 0.95 0.14 0.81 +allâmes aller ver 9992.77 2854.93 0.06 3.45 ind:pas:1p; +allât aller ver 9992.77 2854.93 0.01 2.97 sub:imp:3s; +allèche allécher ver 0.07 2.09 0 0.07 ind:pre:3s; +allège alléger ver 3.65 6.89 0.36 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allègement allègement nom m s 0.04 0.2 0.04 0.2 +allègent alléger ver 3.65 6.89 0.01 0.27 ind:pre:3p; +allègre allègre adj s 0.13 4.93 0.13 4.46 +allègrement allègrement adv 0.33 2.03 0.33 2.03 +allègres allègre adj p 0.13 4.93 0 0.47 +allègue alléguer ver 0.07 2.97 0.01 0.07 ind:pre:1s;ind:pre:3s; +allèle allèle nom m s 0.04 0 0.04 0 +allèrent aller ver 9992.77 2854.93 0.42 11.69 ind:pas:3p; +allé aller ver m s 9992.77 2854.93 123.26 57.3 par:pas; +allécha allécher ver 0.07 2.09 0 0.07 ind:pas:3s; +alléchait allécher ver 0.07 2.09 0 0.07 ind:imp:3s; +alléchant alléchant adj m s 0.6 2.09 0.25 0.68 +alléchante alléchant adj f s 0.6 2.09 0.29 0.61 +alléchantes alléchant adj f p 0.6 2.09 0.03 0.41 +alléchants alléchant adj m p 0.6 2.09 0.03 0.41 +allécher allécher ver 0.07 2.09 0.04 0.2 inf; +allécherait allécher ver 0.07 2.09 0 0.07 cnd:pre:3s; +alléché allécher ver m s 0.07 2.09 0.01 1.01 par:pas; +alléchée allécher ver f s 0.07 2.09 0 0.34 par:pas; +alléchés allécher ver m p 0.07 2.09 0.01 0.2 par:pas; +allée aller ver f s 9992.77 2854.93 52.93 25 par:pas; +allées aller ver f p 9992.77 2854.93 3.15 2.23 par:pas; +allégation allégation nom f s 1.87 0.54 0.28 0.07 +allégations allégation nom f p 1.87 0.54 1.59 0.47 +allégea alléger ver 3.65 6.89 0.1 0.07 ind:pas:3s; +allégeaient alléger ver 3.65 6.89 0.01 0.2 ind:imp:3p; +allégeais alléger ver 3.65 6.89 0 0.07 ind:imp:1s; +allégeait alléger ver 3.65 6.89 0 0.88 ind:imp:3s; +allégeance allégeance nom f s 1.64 1.42 1.61 1.35 +allégeances allégeance nom f p 1.64 1.42 0.04 0.07 +allégeant alléger ver 3.65 6.89 0.02 0.27 par:pre; +allégement allégement nom m s 0.03 0.54 0.03 0.47 +allégements allégement nom m p 0.03 0.54 0 0.07 +alléger alléger ver 3.65 6.89 1.4 1.69 inf; +allégera alléger ver 3.65 6.89 0.04 0 ind:fut:3s; +allégerait alléger ver 3.65 6.89 0.04 0.07 cnd:pre:3s; +allégez alléger ver 3.65 6.89 0.06 0.07 imp:pre:2p;ind:pre:2p; +allégorie allégorie nom f s 0.41 2.16 0.38 1.15 +allégories allégorie nom f p 0.41 2.16 0.04 1.01 +allégorique allégorique adj s 0.04 1.35 0.04 0.68 +allégoriquement allégoriquement adv 0.1 0.07 0.1 0.07 +allégoriques allégorique adj p 0.04 1.35 0 0.68 +allégorisé allégoriser ver m s 0 0.07 0 0.07 par:pas; +allégrement allégrement adv 0.03 2.77 0.03 2.77 +allégresse allégresse nom f s 2.36 11.89 2.36 11.82 +allégresses allégresse nom f p 2.36 11.89 0 0.07 +allégua alléguer ver 0.07 2.97 0 0.2 ind:pas:3s; +alléguaient alléguer ver 0.07 2.97 0 0.2 ind:imp:3p; +alléguais alléguer ver 0.07 2.97 0 0.07 ind:imp:1s; +alléguait alléguer ver 0.07 2.97 0 0.27 ind:imp:3s; +alléguant alléguer ver 0.07 2.97 0.02 1.82 par:pre; +alléguer alléguer ver 0.07 2.97 0 0.2 inf; +alléguera alléguer ver 0.07 2.97 0 0.07 ind:fut:3s; +allégué alléguer ver m s 0.07 2.97 0.03 0.07 par:pas; +alléguée alléguer ver f s 0.07 2.97 0.01 0 par:pas; +allégé alléger ver m s 3.65 6.89 1.16 1.08 par:pas; +allégée alléger ver f s 3.65 6.89 0.18 1.08 par:pas; +allégées alléger ver f p 3.65 6.89 0.16 0.14 par:pas; +allégés alléger ver m p 3.65 6.89 0.1 0.07 par:pas; +alléluia alléluia ono 2.62 0.41 2.62 0.41 +alléluias alléluia nom m p 0.99 0.34 0.28 0.14 +allés aller ver m p 9992.77 2854.93 26.37 17.23 par:pas; +allô allô ono 116.05 14.32 116.05 14.32 +alma alma nom f s 0.86 0.14 0.86 0.14 +almanach almanach nom m s 1 1.89 0.89 1.22 +almanachs almanach nom m p 1 1.89 0.11 0.68 +almohade almohade nom s 0.1 0.14 0.1 0.07 +almohades almohade nom p 0.1 0.14 0 0.07 +almée almée nom f s 0 0.27 0 0.14 +almées almée nom f p 0 0.27 0 0.14 +aloi aloi nom m s 0.22 1.89 0.22 1.89 +alopécie alopécie nom f s 0.05 0.07 0.05 0.07 +alors alors adv_sup 1777.65 1033.78 1777.65 1033.78 +alose alose nom f s 0.04 0.47 0.04 0.2 +aloses alose nom f p 0.04 0.47 0 0.27 +alouette alouette nom f s 1.41 4.32 1.32 1.82 +alouettes alouette nom f p 1.41 4.32 0.09 2.5 +alourdi alourdir ver m s 0.66 15.34 0.07 2.5 par:pas; +alourdie alourdir ver f s 0.66 15.34 0.01 2.64 par:pas; +alourdies alourdir ver f p 0.66 15.34 0 1.28 par:pas; +alourdir alourdir ver 0.66 15.34 0.38 1.82 inf; +alourdirai alourdir ver 0.66 15.34 0.01 0 ind:fut:1s; +alourdiraient alourdir ver 0.66 15.34 0 0.07 cnd:pre:3p; +alourdirent alourdir ver 0.66 15.34 0 0.2 ind:pas:3p; +alourdis alourdir ver m p 0.66 15.34 0.13 1.55 imp:pre:2s;ind:pre:1s;par:pas; +alourdissaient alourdir ver 0.66 15.34 0.01 0.68 ind:imp:3p; +alourdissait alourdir ver 0.66 15.34 0 1.69 ind:imp:3s; +alourdissant alourdir ver 0.66 15.34 0 0.41 par:pre; +alourdissement alourdissement nom m s 0 0.14 0 0.14 +alourdissent alourdir ver 0.66 15.34 0 0.68 ind:pre:3p; +alourdit alourdir ver 0.66 15.34 0.04 1.76 ind:pre:3s;ind:pas:3s; +alourdît alourdir ver 0.66 15.34 0 0.07 sub:imp:3s; +aloyau aloyau nom m s 0.27 0.27 0.27 0.27 +aloès aloès nom m 0.23 1.15 0.23 1.15 +alpa alper ver 0.3 0.07 0.3 0.07 ind:pas:3s; +alpaga alpaga nom m s 0.12 1.28 0.12 1.28 +alpage alpage nom m s 0.01 0.81 0 0.34 +alpages alpage nom m p 0.01 0.81 0.01 0.47 +alpaguait alpaguer ver 0.34 2.16 0.01 0.07 ind:imp:3s; +alpague alpaguer ver 0.34 2.16 0.19 0.88 ind:pre:1s;ind:pre:3s; +alpaguent alpaguer ver 0.34 2.16 0.02 0.07 ind:pre:3p; +alpaguer alpaguer ver 0.34 2.16 0.09 0.74 inf; +alpaguerait alpaguer ver 0.34 2.16 0 0.07 cnd:pre:3s; +alpagué alpaguer ver m s 0.34 2.16 0.03 0.2 par:pas; +alpaguée alpaguer ver f s 0.34 2.16 0 0.07 par:pas; +alpagués alpaguer ver m p 0.34 2.16 0 0.07 par:pas; +alpe alpe nom f s 0.14 0.27 0 0.2 +alpenstock alpenstock nom m s 0 0.34 0 0.34 +alpes alpe nom f p 0.14 0.27 0.14 0.07 +alpestre alpestre adj s 0.1 0.47 0.1 0.27 +alpestres alpestre adj m p 0.1 0.47 0 0.2 +alpha alpha nom m 2.09 0.61 2.09 0.61 +alphabet alphabet nom m s 3.16 4.73 3.14 4.39 +alphabets alphabet nom m p 3.16 4.73 0.02 0.34 +alphabétique alphabétique adj s 1 1.69 1 1.69 +alphabétiquement alphabétiquement adv 0.14 0.07 0.14 0.07 +alphabétisation alphabétisation nom f s 0.3 0.07 0.3 0.07 +alphabétiser alphabétiser ver 0.02 0 0.02 0 inf; +alphabétisé alphabétisé adj m s 0.01 0 0.01 0 +alphanumérique alphanumérique adj m s 0.07 0 0.07 0 +alpin alpin adj m s 1.19 3.04 0.18 0.95 +alpine alpin adj f s 1.19 3.04 0.43 0.47 +alpines alpin adj f p 1.19 3.04 0 0.2 +alpinisme alpinisme nom m s 0.67 0.61 0.67 0.61 +alpiniste alpiniste nom s 1.96 1.49 0.95 1.15 +alpinistes alpiniste nom p 1.96 1.49 1 0.34 +alpins alpin adj m p 1.19 3.04 0.58 1.42 +alsacien alsacien adj m s 0.04 3.99 0.02 1.89 +alsacienne alsacien adj f s 0.04 3.99 0 1.55 +alsaciennes alsacien adj f p 0.04 3.99 0 0.2 +alsaciens alsacien adj m p 0.04 3.99 0.03 0.34 +alstonia alstonia nom f s 0.14 0 0.14 0 +alter alter adv 0 0.07 0 0.07 +alter_ego alter_ego nom m 0.3 0.54 0.3 0.54 +altercation altercation nom f s 1.2 1.49 1.12 1.42 +altercations altercation nom f p 1.2 1.49 0.09 0.07 +alterna alterner ver 1.5 6.82 0 0.07 ind:pas:3s; +alternaient alterner ver 1.5 6.82 0.02 1.76 ind:imp:3p; +alternait alterner ver 1.5 6.82 0.04 0.34 ind:imp:3s; +alternance alternance nom f s 0.2 3.78 0.2 2.84 +alternances alternance nom f p 0.2 3.78 0 0.95 +alternant alterner ver 1.5 6.82 0.26 1.62 par:pre; +alternateur alternateur nom m s 0.14 0 0.14 0 +alternatif alternatif adj m s 3.04 0.95 1.02 0.14 +alternatifs alternatif adj m p 3.04 0.95 0.23 0.07 +alternative alternative nom f s 5.89 2.23 4.96 1.89 +alternativement alternativement adv 0.16 5.88 0.16 5.88 +alternatives alternative nom f p 5.89 2.23 0.93 0.34 +alterne alterner ver 1.5 6.82 0.19 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alternent alterner ver 1.5 6.82 0.02 0.68 ind:pre:3p; +alterner alterner ver 1.5 6.82 0.71 0.74 ind:pre:2p;inf; +alternera alterner ver 1.5 6.82 0.01 0 ind:fut:3s; +alternez alterner ver 1.5 6.82 0.06 0 imp:pre:2p;ind:pre:2p; +alternions alterner ver 1.5 6.82 0.01 0 ind:imp:1p; +alternèrent alterner ver 1.5 6.82 0 0.07 ind:pas:3p; +alterné alterner ver m s 1.5 6.82 0.16 0.14 par:pas; +alternée alterné adj f s 0.09 0.81 0.07 0 +alternées alterné adj f p 0.09 0.81 0.01 0.41 +alternés alterner ver m p 1.5 6.82 0 0.41 par:pas; +altesse altesse nom f s 12.93 4.05 12.72 1.08 +altesses altesse nom f p 12.93 4.05 0.2 2.97 +althaea althaea nom f s 0.01 0 0.01 0 +altier altier adj m s 0.56 2.91 0.14 0.88 +altiers altier adj m p 0.56 2.91 0.01 0.07 +altimètre altimètre nom m s 0.75 0.14 0.72 0.14 +altimètres altimètre nom m p 0.75 0.14 0.02 0 +altitude altitude nom f s 6.39 6.96 6.37 6.35 +altitudes altitude nom f p 6.39 6.96 0.03 0.61 +altière altier adj f s 0.56 2.91 0.41 1.69 +altièrement altièrement adv 0 0.07 0 0.07 +altières altier adj f p 0.56 2.91 0 0.27 +alto alto nom s 0.45 1.08 0.35 0.95 +altos alto nom p 0.45 1.08 0.1 0.14 +altruisme altruisme nom m s 0.31 0.74 0.31 0.74 +altruiste altruiste adj s 0.86 0 0.52 0 +altruistes altruiste adj p 0.86 0 0.34 0 +altuglas altuglas nom m 0 0.07 0 0.07 +altère altérer ver 2.62 7.5 0.51 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +altèrent altérer ver 2.62 7.5 0.2 0.41 ind:pre:3p; +altéra altérer ver 2.62 7.5 0 0.27 ind:pas:3s; +altérable altérable adj s 0.01 0 0.01 0 +altéraient altérer ver 2.62 7.5 0 0.41 ind:imp:3p; +altérait altérer ver 2.62 7.5 0.01 0.61 ind:imp:3s; +altérant altérer ver 2.62 7.5 0.06 0.07 par:pre; +altération altération nom f s 0.64 1.49 0.59 0.95 +altérations altération nom f p 0.64 1.49 0.05 0.54 +altérer altérer ver 2.62 7.5 0.83 1.89 inf; +altérera altérer ver 2.62 7.5 0.02 0.07 ind:fut:3s; +altéreront altérer ver 2.62 7.5 0.02 0 ind:fut:3p; +altérez altérer ver 2.62 7.5 0.01 0 ind:pre:2p; +altériez altérer ver 2.62 7.5 0.01 0 ind:imp:2p; +altérité altérité nom f s 0.02 0.2 0.02 0.2 +altérât altérer ver 2.62 7.5 0.01 0.2 sub:imp:3s; +altérèrent altérer ver 2.62 7.5 0 0.07 ind:pas:3p; +altéré altérer ver m s 2.62 7.5 0.69 1.35 par:pas; +altérée altérer ver f s 2.62 7.5 0.14 0.81 par:pas; +altérées altérer ver f p 2.62 7.5 0.07 0.2 par:pas; +altérés altérer ver m p 2.62 7.5 0.04 0.2 par:pas; +alu alu nom m 1.06 0.95 1.06 0.95 +aludes alude nom f p 0.14 0 0.14 0 +aluette aluette nom f s 0.01 0 0.01 0 +aluminium aluminium nom m s 2.38 4.32 2.38 4.32 +alun alun nom m s 0 0.74 0 0.74 +aluni alunir ver m s 0.43 0.07 0.06 0 par:pas; +alunir alunir ver 0.43 0.07 0.25 0.07 inf; +alunira alunir ver 0.43 0.07 0.13 0 ind:fut:3s; +alunissage alunissage nom m s 0.52 0 0.51 0 +alunissages alunissage nom m p 0.52 0 0.01 0 +alvar alvar nom m s 0.05 0 0.05 0 +alvin alvin adj m s 0.12 0 0.12 0 +alvéolaire alvéolaire adj f s 0.04 0 0.04 0 +alvéole alvéole nom m s 0.2 3.18 0.11 1.62 +alvéoles alvéole nom m p 0.2 3.18 0.09 1.55 +alvéolé alvéolé adj m s 0 0.34 0 0.07 +alvéolée alvéolé adj f s 0 0.34 0 0.14 +alvéolées alvéolé adj f p 0 0.34 0 0.07 +alvéolés alvéolé adj m p 0 0.34 0 0.07 +alysse alysse nom m s 0.03 0.27 0.03 0.27 +alène alène nom f s 0.24 0.34 0.24 0.34 +alèse alèse nom f s 0.01 0.61 0.01 0.61 +alèze alèze nom f s 0 0.07 0 0.07 +aléa aléa nom m s 0.34 1.01 0.02 0.2 +aléas aléa nom m p 0.34 1.01 0.32 0.81 +aléatoire aléatoire adj s 2.04 2.16 1.36 1.96 +aléatoirement aléatoirement adv 0.09 0 0.09 0 +aléatoires aléatoire adj p 2.04 2.16 0.69 0.2 +alémaniques alémanique adj p 0 0.07 0 0.07 +aléoutien aléoutien adj m s 0.02 0 0.02 0 +alésait aléser ver 0 0.14 0 0.07 ind:imp:3s; +aléser aléser ver 0 0.14 0 0.07 inf; +am_stram_gram am_stram_gram ono 0.08 0.14 0.08 0.14 +amabilité amabilité nom f s 2.91 5.34 2.81 3.78 +amabilités amabilité nom f p 2.91 5.34 0.11 1.55 +amadou amadou nom m s 0.01 1.76 0.01 1.76 +amadoua amadouer ver 1.51 3.58 0 0.2 ind:pas:3s; +amadouaient amadouer ver 1.51 3.58 0 0.07 ind:imp:3p; +amadouait amadouer ver 1.51 3.58 0.01 0.14 ind:imp:3s; +amadouant amadouer ver 1.51 3.58 0.02 0.14 par:pre; +amadoue amadouer ver 1.51 3.58 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amadouer amadouer ver 1.51 3.58 1.01 2.7 inf; +amadoueras amadouer ver 1.51 3.58 0.01 0 ind:fut:2s; +amadouez amadouer ver 1.51 3.58 0.01 0 ind:pre:2p; +amadoué amadouer ver m s 1.51 3.58 0.23 0.27 par:pas; +amaigri amaigrir ver m s 0.04 1.01 0.03 0.54 par:pas; +amaigrie amaigri adj f s 0.02 2.16 0 0.54 +amaigries amaigri adj f p 0.02 2.16 0 0.14 +amaigris amaigri adj m p 0.02 2.16 0 0.41 +amaigrissait amaigrir ver 0.04 1.01 0 0.07 ind:imp:3s; +amaigrissant amaigrissant adj m s 0.09 0.14 0.03 0.07 +amaigrissante amaigrissant adj f s 0.09 0.14 0.01 0 +amaigrissantes amaigrissant adj f p 0.09 0.14 0.04 0 +amaigrissants amaigrissant adj m p 0.09 0.14 0 0.07 +amaigrissement amaigrissement nom m s 0.2 0.54 0.2 0.54 +amaigrit amaigrir ver 0.04 1.01 0.01 0.07 ind:pre:3s;ind:pas:3s; +amalfitaine amalfitain adj f s 0 0.07 0 0.07 +amalgamaient amalgamer ver 0.44 1.22 0 0.14 ind:imp:3p; +amalgamais amalgamer ver 0.44 1.22 0 0.07 ind:imp:1s; +amalgamait amalgamer ver 0.44 1.22 0 0.07 ind:imp:3s; +amalgamant amalgamer ver 0.44 1.22 0.1 0 par:pre; +amalgame amalgame nom m s 0.31 2.03 0.3 1.82 +amalgamer amalgamer ver 0.44 1.22 0 0.27 inf; +amalgames amalgame nom m p 0.31 2.03 0.01 0.2 +amalgamez amalgamer ver 0.44 1.22 0 0.07 ind:pre:2p; +amalgamé amalgamer ver m s 0.44 1.22 0.27 0.14 par:pas; +amalgamée amalgamer ver f s 0.44 1.22 0.04 0 par:pas; +amalgamées amalgamer ver f p 0.44 1.22 0 0.14 par:pas; +amalgamés amalgamer ver m p 0.44 1.22 0.02 0.34 par:pas; +aman aman nom m s 0.04 0.14 0.04 0.14 +amande amande nom f s 2.19 8.18 1.07 3.99 +amandes amande nom f p 2.19 8.18 1.13 4.19 +amandier amandier nom m s 0.4 2.23 0.14 0.34 +amandiers amandier nom m p 0.4 2.23 0.27 1.89 +amandine amandine nom f s 0.03 0.07 0.01 0 +amandines amandine nom f p 0.03 0.07 0.02 0.07 +amanite amanite nom f s 0.1 0.27 0 0.14 +amanites amanite nom f p 0.1 0.27 0.1 0.14 +amant amant nom m s 35.03 69.59 23.28 46.76 +amante amante nom f s 1.55 6.76 1.04 5.54 +amantes amante nom f p 1.55 6.76 0.52 1.22 +amants amant nom m p 35.03 69.59 11.75 22.84 +amarante amarante nom s 0.05 0.61 0.02 0.27 +amarantes amarante nom p 0.05 0.61 0.03 0.34 +amaro amaro nom m s 2.02 0 2.02 0 +amarra amarrer ver 1.44 6.69 0.08 0.34 ind:pas:3s; +amarrage amarrage nom m s 0.46 0.61 0.45 0.54 +amarrages amarrage nom m p 0.46 0.61 0.01 0.07 +amarrai amarrer ver 1.44 6.69 0 0.07 ind:pas:1s; +amarraient amarrer ver 1.44 6.69 0 0.27 ind:imp:3p; +amarrais amarrer ver 1.44 6.69 0 0.07 ind:imp:1s; +amarrait amarrer ver 1.44 6.69 0.04 0.2 ind:imp:3s; +amarrant amarrer ver 1.44 6.69 0 0.14 par:pre; +amarre amarre nom f s 1.66 4.66 0.58 1.42 +amarrent amarrer ver 1.44 6.69 0 0.07 ind:pre:3p; +amarrer amarrer ver 1.44 6.69 0.22 1.01 inf; +amarres amarre nom f p 1.66 4.66 1.08 3.24 +amarrez amarrer ver 1.44 6.69 0.16 0 imp:pre:2p; +amarré amarrer ver m s 1.44 6.69 0.49 1.89 par:pas; +amarrée amarrer ver f s 1.44 6.69 0.15 0.88 par:pas; +amarrées amarrer ver f p 1.44 6.69 0 0.68 par:pas; +amarrés amarrer ver m p 1.44 6.69 0.08 0.81 par:pas; +amaryllis amaryllis nom f 0.03 1.22 0.03 1.22 +amas amas nom m 1.56 9.32 1.56 9.32 +amassa amasser ver 3.46 8.24 0.02 0.34 ind:pas:3s; +amassai amasser ver 3.46 8.24 0 0.07 ind:pas:1s; +amassaient amasser ver 3.46 8.24 0.01 0.61 ind:imp:3p; +amassait amasser ver 3.46 8.24 0.02 0.68 ind:imp:3s; +amassant amasser ver 3.46 8.24 0.03 0.54 par:pre; +amasse amasser ver 3.46 8.24 0.71 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amassent amasser ver 3.46 8.24 0.19 0.27 ind:pre:3p; +amasser amasser ver 3.46 8.24 0.47 1.55 inf; +amassera amasser ver 3.46 8.24 0.14 0 ind:fut:3s; +amassez amasser ver 3.46 8.24 0.62 0 imp:pre:2p;ind:pre:2p; +amassons amasser ver 3.46 8.24 0.01 0 ind:pre:1p; +amassèrent amasser ver 3.46 8.24 0 0.07 ind:pas:3p; +amassé amasser ver m s 3.46 8.24 0.91 1.55 par:pas; +amassée amasser ver f s 3.46 8.24 0.03 0.61 par:pas; +amassées amasser ver f p 3.46 8.24 0.17 0.41 par:pas; +amassés amasser ver m p 3.46 8.24 0.12 0.95 par:pas; +amateur amateur nom s 11.66 16.15 5.53 7.16 +amateurisme amateurisme nom m s 0.12 0.34 0.12 0.34 +amateurs amateur nom p 11.66 16.15 6.04 8.99 +amati amatir ver m s 0 0.14 0 0.14 par:pas; +amatrice amateur nom f s 11.66 16.15 0.09 0 +amaurose amaurose nom f s 0 0.07 0 0.07 +amazone amazone nom f s 0.55 2.23 0.25 1.89 +amazones amazone nom f p 0.55 2.23 0.3 0.34 +amazonien amazonien adj m s 0.36 0.14 0.03 0.07 +amazonienne amazonien adj f s 0.36 0.14 0.3 0 +amazoniennes amazonien adj f p 0.36 0.14 0.04 0.07 +ambages ambages nom f p 0.29 0.88 0.29 0.88 +ambassade ambassade nom f s 9.49 15.34 8.85 13.38 +ambassades ambassade nom f p 9.49 15.34 0.65 1.96 +ambassadeur ambassadeur nom m s 13.85 33.72 11.57 26.15 +ambassadeurs ambassadeur nom m p 13.85 33.72 0.96 3.85 +ambassadrice ambassadeur nom f s 13.85 33.72 1.32 3.58 +ambassadrices ambassadeur nom f p 13.85 33.72 0 0.14 +ambiance ambiance nom f s 12.37 11.55 12.33 11.08 +ambiances ambiance nom f p 12.37 11.55 0.03 0.47 +ambiant ambiant adj m s 0.75 4.05 0.2 1.49 +ambiante ambiant adj f s 0.75 4.05 0.5 2.23 +ambiantes ambiant adj f p 0.75 4.05 0.01 0.34 +ambiants ambiant adj m p 0.75 4.05 0.04 0 +ambidextre ambidextre adj f s 0.32 0 0.32 0 +ambigu ambigu adj m s 2.58 8.99 1.77 4.05 +ambigus ambigu adj m p 2.58 8.99 0.27 1.55 +ambiguë ambigu adj f s 2.58 8.99 0.51 2.57 +ambiguës ambigu adj f p 2.58 8.99 0.04 0.81 +ambiguïté ambiguïté nom f s 0.52 3.04 0.39 2.84 +ambiguïtés ambiguïté nom f p 0.52 3.04 0.14 0.2 +ambitieuse ambitieux adj f s 6.08 4.73 1.09 0.81 +ambitieuses ambitieux adj f p 6.08 4.73 0.17 0.2 +ambitieux ambitieux adj m 6.08 4.73 4.82 3.72 +ambition ambition nom f s 11.15 30.34 7.98 19.32 +ambitionnais ambitionner ver 0.06 1.49 0.02 0.14 ind:imp:1s; +ambitionnait ambitionner ver 0.06 1.49 0 0.41 ind:imp:3s; +ambitionnant ambitionner ver 0.06 1.49 0 0.07 par:pre; +ambitionne ambitionner ver 0.06 1.49 0.03 0.41 ind:pre:1s;ind:pre:3s; +ambitionnent ambitionner ver 0.06 1.49 0.01 0.07 ind:pre:3p; +ambitionner ambitionner ver 0.06 1.49 0 0.14 inf; +ambitionnez ambitionner ver 0.06 1.49 0 0.07 ind:pre:2p; +ambitionné ambitionner ver m s 0.06 1.49 0 0.2 par:pas; +ambitions ambition nom f p 11.15 30.34 3.17 11.01 +ambivalence ambivalence nom f s 0.28 0.41 0.28 0.34 +ambivalences ambivalence nom f p 0.28 0.41 0 0.07 +ambivalent ambivalent adj m s 0.17 0.2 0.11 0.14 +ambivalente ambivalent adj f s 0.17 0.2 0.06 0.07 +amble amble nom m s 0.3 0.47 0.3 0.47 +ambler ambler ver 0.05 0 0.05 0 inf; +amboine amboine nom s 0 0.07 0 0.07 +ambon ambon nom m s 0 0.07 0 0.07 +ambras ambrer ver 0.04 0.54 0 0.07 ind:pas:2s; +ambre ambre nom m s 0.93 4.39 0.93 4.39 +ambrer ambrer ver 0.04 0.54 0.01 0 inf; +ambroisie ambroisie nom f s 0.51 0.14 0.51 0.14 +ambré ambré adj m s 0.19 2.16 0.01 0.74 +ambrée ambré adj f s 0.19 2.16 0.17 1.08 +ambrées ambrer ver f p 0.04 0.54 0.01 0 par:pas; +ambrés ambré adj m p 0.19 2.16 0.01 0.2 +ambulance ambulance nom f s 27.55 11.69 25.94 9.26 +ambulances ambulance nom f p 27.55 11.69 1.61 2.43 +ambulancier ambulancier nom m s 1.64 1.69 0.57 0.61 +ambulanciers ambulancier nom m p 1.64 1.69 1.01 0.88 +ambulancière ambulancier nom f s 1.64 1.69 0.04 0.14 +ambulancières ambulancier nom f p 1.64 1.69 0 0.07 +ambulant ambulant adj m s 3.08 5.41 1.82 3.04 +ambulante ambulant adj f s 3.08 5.41 0.98 1.15 +ambulantes ambulant adj f p 3.08 5.41 0.13 0.07 +ambulants ambulant adj m p 3.08 5.41 0.15 1.15 +ambulatoire ambulatoire adj s 0.14 0.07 0.14 0.07 +amen amen ono 19.7 2.23 19.7 2.23 +amena amener ver 190.32 93.92 0.74 5.27 ind:pas:3s; +amenai amener ver 190.32 93.92 0.02 0.34 ind:pas:1s; +amenaient amener ver 190.32 93.92 0.37 2.16 ind:imp:3p; +amenais amener ver 190.32 93.92 1.17 0.34 ind:imp:1s;ind:imp:2s; +amenait amener ver 190.32 93.92 1.87 9.46 ind:imp:3s; +amenant amener ver 190.32 93.92 0.66 2.43 par:pre; +amendai amender ver 1.49 1.08 0 0.07 ind:pas:1s; +amendait amender ver 1.49 1.08 0 0.07 ind:imp:3s; +amende amende nom f s 9.37 4.8 8.38 3.65 +amendement amendement nom m s 3.75 0.68 3.28 0.14 +amendements amendement nom m p 3.75 0.68 0.47 0.54 +amendent amender ver 1.49 1.08 0.01 0.14 ind:pre:3p; +amender amender ver 1.49 1.08 1.06 0.47 inf; +amenderez amender ver 1.49 1.08 0 0.07 ind:fut:2p; +amendes amende nom f p 9.37 4.8 0.99 1.15 +amendez amender ver 1.49 1.08 0.04 0 imp:pre:2p;ind:pre:2p; +amendât amender ver 1.49 1.08 0 0.07 sub:imp:3s; +amendé amender ver m s 1.49 1.08 0.05 0.07 par:pas; +amendée amender ver f s 1.49 1.08 0.05 0 par:pas; +amener amener ver 190.32 93.92 35.6 18.18 inf;; +amenez amener ver 190.32 93.92 21.53 1.28 imp:pre:2p;ind:pre:2p; +ameniez amener ver 190.32 93.92 0.25 0.07 ind:imp:2p; +amenions amener ver 190.32 93.92 0.25 0.14 ind:imp:1p; +amenons amener ver 190.32 93.92 1.02 0 imp:pre:1p;ind:pre:1p; +amenuisaient amenuiser ver 0.42 4.19 0 0.14 ind:imp:3p; +amenuisait amenuiser ver 0.42 4.19 0.02 0.95 ind:imp:3s; +amenuisant amenuiser ver 0.42 4.19 0 0.88 par:pre; +amenuise amenuiser ver 0.42 4.19 0.14 0.61 ind:pre:3s; +amenuisement amenuisement nom m s 0 0.14 0 0.14 +amenuisent amenuiser ver 0.42 4.19 0.23 0.41 ind:pre:3p; +amenuiser amenuiser ver 0.42 4.19 0.01 0.47 inf; +amenuiserait amenuiser ver 0.42 4.19 0.03 0.14 cnd:pre:3s; +amenuisèrent amenuiser ver 0.42 4.19 0 0.14 ind:pas:3p; +amenuisé amenuiser ver m s 0.42 4.19 0 0.14 par:pas; +amenuisée amenuiser ver f s 0.42 4.19 0 0.27 par:pas; +amenuisés amenuiser ver m p 0.42 4.19 0 0.07 par:pas; +amenât amener ver 190.32 93.92 0 0.2 sub:imp:3s; +amenèrent amener ver 190.32 93.92 0.61 1.08 ind:pas:3p; +amené amener ver m s 190.32 93.92 38.14 20 par:pas; +amenée amener ver f s 190.32 93.92 7.87 5.81 par:pas; +amenées amener ver f p 190.32 93.92 0.73 0.88 par:pas; +amenés amener ver m p 190.32 93.92 4.71 6.15 par:pas; +amer amer adj m s 11.94 30.07 5.82 11.69 +amerlo amerlo nom s 0.1 0.47 0 0.14 +amerloque amerloque nom s 1.05 1.76 0.61 1.01 +amerloques amerloque nom p 1.05 1.76 0.44 0.74 +amerlos amerlo nom p 0.1 0.47 0.1 0.34 +amerri amerrir ver m s 0.13 0.07 0.04 0 par:pas; +amerrir amerrir ver 0.13 0.07 0.06 0.07 inf; +amerrissage amerrissage nom m s 0.16 0 0.16 0 +amerrit amerrir ver 0.13 0.07 0.02 0 ind:pre:3s;ind:pas:3s; +amers amer adj m p 11.94 30.07 1.25 2.57 +amertume amertume nom f s 4.64 19.39 4.64 19.05 +amertumes amertume nom f p 4.64 19.39 0 0.34 +ameublement ameublement nom m s 0.12 0.95 0.12 0.88 +ameublements ameublement nom m p 0.12 0.95 0 0.07 +ameuta ameuter ver 1.48 3.51 0 0.14 ind:pas:3s; +ameutaient ameuter ver 1.48 3.51 0 0.14 ind:imp:3p; +ameutait ameuter ver 1.48 3.51 0 0.07 ind:imp:3s; +ameutant ameuter ver 1.48 3.51 0 0.27 par:pre; +ameute ameuter ver 1.48 3.51 0.3 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ameutent ameuter ver 1.48 3.51 0.01 0.07 ind:pre:3p; +ameuter ameuter ver 1.48 3.51 0.89 1.62 inf; +ameutera ameuter ver 1.48 3.51 0.01 0 ind:fut:3s; +ameuterait ameuter ver 1.48 3.51 0.01 0.14 cnd:pre:3s; +ameutât ameuter ver 1.48 3.51 0 0.07 sub:imp:3s; +ameuté ameuter ver m s 1.48 3.51 0.25 0.47 par:pas; +ameutée ameuter ver f s 1.48 3.51 0 0.07 par:pas; +ameutées ameuter ver f p 1.48 3.51 0 0.07 par:pas; +ameutés ameuter ver m p 1.48 3.51 0.01 0.14 par:pas; +amharique amharique nom m s 0.27 0 0.27 0 +ami ami nom m s 747.98 354.12 360.9 140.14 +amiable amiable adj m s 1.06 1.82 1.06 1.82 +amiante amiante nom m s 0.82 0.54 0.82 0.54 +amibe amibe nom f s 0.4 0.2 0.27 0.14 +amibes amibe nom f p 0.4 0.2 0.13 0.07 +amibienne amibien adj f s 0.05 0.14 0.05 0.14 +amical amical adj m s 9.88 23.04 4.26 11.22 +amicale amical adj f s 9.88 23.04 3.67 7.57 +amicalement amicalement adv 1.15 4.12 1.15 4.12 +amicales amical adj f p 9.88 23.04 0.6 2.57 +amicalités amicalité nom f p 0 0.07 0 0.07 +amicaux amical adj m p 9.88 23.04 1.35 1.69 +amidon amidon nom m s 0.49 0.74 0.49 0.74 +amidonnaient amidonner ver 0.33 1.89 0 0.07 ind:imp:3p; +amidonnent amidonner ver 0.33 1.89 0.02 0 ind:pre:3p; +amidonner amidonner ver 0.33 1.89 0.04 0.2 inf; +amidonnez amidonner ver 0.33 1.89 0.02 0 imp:pre:2p;ind:pre:2p; +amidonné amidonner ver m s 0.33 1.89 0.04 0.54 par:pas; +amidonnée amidonner ver f s 0.33 1.89 0.02 0.34 par:pas; +amidonnées amidonner ver f p 0.33 1.89 0.15 0.2 par:pas; +amidonnés amidonner ver m p 0.33 1.89 0.04 0.54 par:pas; +amie ami nom f s 747.98 354.12 113.54 54.32 +amies ami nom f p 747.98 354.12 20.88 16.22 +amignoter amignoter ver 0 0.07 0 0.07 inf; +amigo amigo nom m s 6.91 1.08 4.75 0.95 +amigos amigo nom m p 6.91 1.08 2.15 0.14 +aminci aminci adj m s 0.1 0.47 0.1 0.14 +amincie amincir ver f s 0.25 2.3 0 0.14 par:pas; +amincies aminci adj f p 0.1 0.47 0 0.2 +amincir amincir ver 0.25 2.3 0.03 0.27 inf; +amincis aminci adj m p 0.1 0.47 0 0.07 +amincissaient amincir ver 0.25 2.3 0 0.27 ind:imp:3p; +amincissait amincir ver 0.25 2.3 0.03 0.2 ind:imp:3s; +amincissant amincissant adj m s 0.09 0.07 0.03 0.07 +amincissante amincissant adj f s 0.09 0.07 0.04 0 +amincissantes amincissant adj f p 0.09 0.07 0.01 0 +amincissants amincissant nom m p 0.03 0.14 0.01 0 +amincissement amincissement nom m s 0.1 0.14 0.1 0.14 +amincissent amincir ver 0.25 2.3 0 0.34 ind:pre:3p; +amincit amincir ver 0.25 2.3 0.19 0.68 ind:pre:3s;ind:pas:3s; +amine amine nom f s 0.01 0 0.01 0 +aminoacides aminoacide nom m p 0.02 0 0.02 0 +aminophylline aminophylline nom f s 0.01 0 0.01 0 +aminé aminé adj m s 0.36 0 0.04 0 +aminés aminé adj m p 0.36 0 0.31 0 +amiral amiral nom m s 6 13.51 5.6 11.22 +amirale amiral adj f s 4.04 8.58 0.01 0.14 +amirauté amirauté nom f s 0.22 6.96 0.22 6.89 +amirautés amirauté nom f p 0.22 6.96 0 0.07 +amiraux amiral nom m p 6 13.51 0.39 2.3 +amis ami nom m p 747.98 354.12 252.66 143.45 +amish amish adj m s 0.14 0 0.14 0 +amitieuse amitieux adj f s 0 0.07 0 0.07 +amitié amitié nom f s 36.69 77.77 32.39 67.7 +amitiés amitié nom f p 36.69 77.77 4.3 10.07 +ammoniac ammoniac nom m s 0.28 0.14 0.28 0.14 +ammoniacale ammoniacal adj f s 0 0.54 0 0.41 +ammoniacales ammoniacal adj f p 0 0.54 0 0.07 +ammoniacaux ammoniacal adj m p 0 0.54 0 0.07 +ammoniaque ammoniaque nom f s 0.4 0.27 0.4 0.27 +ammoniaqué ammoniaqué adj m s 0 0.27 0 0.14 +ammoniaquée ammoniaqué adj f s 0 0.27 0 0.07 +ammoniaquées ammoniaqué adj f p 0 0.27 0 0.07 +ammonite ammonite nom f s 0.4 0.14 0.4 0.14 +ammonitrate ammonitrate nom m 0 0.14 0 0.14 +ammonium ammonium nom m s 0.36 0 0.36 0 +amniocentèse amniocentèse nom f s 0.38 0 0.38 0 +amnios amnios nom m 0.04 0 0.04 0 +amniotique amniotique adj m s 0.14 0.14 0.14 0.14 +amnistiable amnistiable adj s 0 0.07 0 0.07 +amnistiante amnistiant adj f s 0 0.07 0 0.07 +amnistie amnistie nom f s 2.93 1.89 2.66 1.82 +amnistier amnistier ver 0.52 0.41 0.2 0.07 inf; +amnistierons amnistier ver 0.52 0.41 0 0.07 ind:fut:1p; +amnisties amnistie nom f p 2.93 1.89 0.27 0.07 +amnistié amnistier ver m s 0.52 0.41 0.07 0.27 par:pas; +amnistiée amnistier ver f s 0.52 0.41 0.11 0 par:pas; +amnistiés amnistier ver m p 0.52 0.41 0.02 0 par:pas; +amnésie amnésie nom f s 3.74 1.15 3.59 1.08 +amnésies amnésie nom f p 3.74 1.15 0.15 0.07 +amnésique amnésique adj s 2.48 0.54 2.44 0.47 +amnésiques amnésique nom p 1.33 0.2 0.17 0 +amochait amocher ver 3.8 2.77 0 0.07 ind:imp:3s; +amoche amocher ver 3.8 2.77 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amocher amocher ver 3.8 2.77 0.41 0.27 inf; +amochez amocher ver 3.8 2.77 0.02 0 imp:pre:2p;ind:pre:2p; +amochie amochir ver f s 0 0.07 0 0.07 par:pas; +amoché amocher ver m s 3.8 2.77 2 1.42 par:pas; +amochée amocher ver f s 3.8 2.77 1.03 0.47 par:pas; +amochés amocher ver m p 3.8 2.77 0.26 0.47 par:pas; +amoindri amoindrir ver m s 0.6 2.36 0.34 0.47 par:pas; +amoindrie amoindrir ver f s 0.6 2.36 0.04 0.34 par:pas; +amoindries amoindrir ver f p 0.6 2.36 0 0.07 par:pas; +amoindrir amoindrir ver 0.6 2.36 0.12 0.81 inf; +amoindrira amoindrir ver 0.6 2.36 0.02 0 ind:fut:3s; +amoindris amoindrir ver m p 0.6 2.36 0.04 0.14 ind:pre:2s;par:pas; +amoindrissait amoindrir ver 0.6 2.36 0 0.27 ind:imp:3s; +amoindrissement amoindrissement nom m s 0.01 0.07 0.01 0.07 +amoindrit amoindrir ver 0.6 2.36 0.04 0.27 ind:pre:3s;ind:pas:3s; +amok amok nom m s 0.01 0.07 0.01 0.07 +amolli amollir ver m s 0.17 5.41 0.11 0.95 par:pas; +amollie amollir ver f s 0.17 5.41 0 0.68 par:pas; +amollies amollir ver f p 0.17 5.41 0 0.41 par:pas; +amollir amollir ver 0.17 5.41 0.03 0.54 inf; +amollirent amollir ver 0.17 5.41 0 0.14 ind:pas:3p; +amollis amollir ver m p 0.17 5.41 0.01 0.47 ind:pre:1s;ind:pre:2s;par:pas; +amollissaient amollir ver 0.17 5.41 0 0.2 ind:imp:3p; +amollissait amollir ver 0.17 5.41 0 0.27 ind:imp:3s; +amollissant amollissant adj m s 0 0.14 0 0.14 +amollissement amollissement nom m s 0 0.14 0 0.14 +amollissent amollir ver 0.17 5.41 0.01 0.27 ind:pre:3p; +amollit amollir ver 0.17 5.41 0.01 1.42 ind:pre:3s;ind:pas:3s; +amoncelaient amonceler ver 0.16 4.86 0.02 1.69 ind:imp:3p; +amoncelait amonceler ver 0.16 4.86 0.1 0.34 ind:imp:3s; +amoncelant amonceler ver 0.16 4.86 0 0.14 par:pre; +amonceler amonceler ver 0.16 4.86 0.01 0.14 inf; +amoncelle amonceler ver 0.16 4.86 0 0.34 ind:pre:3s; +amoncellement amoncellement nom m s 0.07 6.08 0.07 4.32 +amoncellements amoncellement nom m p 0.07 6.08 0 1.76 +amoncellent amonceler ver 0.16 4.86 0.02 0.34 ind:pre:3p; +amoncelleraient amonceler ver 0.16 4.86 0 0.07 cnd:pre:3p; +amoncelèrent amonceler ver 0.16 4.86 0 0.07 ind:pas:3p; +amoncelé amonceler ver m s 0.16 4.86 0.01 0.2 par:pas; +amoncelée amonceler ver f s 0.16 4.86 0 0.07 par:pas; +amoncelées amonceler ver f p 0.16 4.86 0 0.41 par:pas; +amoncelés amonceler ver m p 0.16 4.86 0 1.08 par:pas; +amont amont nom m s 1.4 3.85 1.4 3.85 +amontillado amontillado nom m s 0.29 0.14 0.29 0.14 +amoral amoral adj m s 0.68 0.68 0.61 0.2 +amorale amoral adj f s 0.68 0.68 0.03 0.41 +amoraliste amoraliste nom s 0.05 0 0.05 0 +amoralité amoralité nom f s 0.04 0.07 0.04 0.07 +amoraux amoral adj m p 0.68 0.68 0.04 0.07 +amorce amorce nom f s 1.76 4.59 1.19 3.92 +amorcent amorcer ver 2.06 11.89 0.04 0 ind:pre:3p; +amorcer amorcer ver 2.06 11.89 0.4 2.64 inf; +amorcerait amorcer ver 2.06 11.89 0.01 0.07 cnd:pre:3s; +amorces amorce nom f p 1.76 4.59 0.57 0.68 +amorcez amorcer ver 2.06 11.89 0.18 0 imp:pre:2p; +amorcèrent amorcer ver 2.06 11.89 0 0.27 ind:pas:3p; +amorcé amorcer ver m s 2.06 11.89 0.2 1.69 par:pas; +amorcée amorcer ver f s 2.06 11.89 0.3 1.01 par:pas; +amorcées amorcer ver f p 2.06 11.89 0.05 0.14 par:pas; +amorcés amorcer ver m p 2.06 11.89 0.08 0.34 par:pas; +amoroso amoroso adv 0.45 0.07 0.45 0.07 +amorphe amorphe adj s 0.25 1.42 0.14 0.88 +amorphes amorphe adj p 0.25 1.42 0.11 0.54 +amorti amortir ver m s 1.69 4.93 0.51 0.68 par:pas; +amortie amortir ver f s 1.69 4.93 0.13 0.41 par:pas; +amorties amorti adj f p 0.2 1.55 0.14 0.27 +amortir amortir ver 1.69 4.93 0.41 1.62 inf; +amortirent amortir ver 1.69 4.93 0 0.14 ind:pas:3p; +amortiront amortir ver 1.69 4.93 0.01 0 ind:fut:3p; +amortis amortir ver m p 1.69 4.93 0.26 0.14 ind:pre:1s;par:pas; +amortissaient amortir ver 1.69 4.93 0.01 0.14 ind:imp:3p; +amortissait amortir ver 1.69 4.93 0 0.34 ind:imp:3s; +amortissant amortir ver 1.69 4.93 0.01 0.27 par:pre; +amortisse amortir ver 1.69 4.93 0.04 0.14 sub:pre:1s;sub:pre:3s; +amortissement amortissement nom m s 0.42 0.2 0.42 0.2 +amortissent amortir ver 1.69 4.93 0 0.07 ind:pre:3p; +amortisseur amortisseur nom m s 0.85 0.47 0.2 0 +amortisseurs amortisseur nom m p 0.85 0.47 0.66 0.47 +amortit amortir ver 1.69 4.93 0.32 0.95 ind:pre:3s;ind:pas:3s; +amorça amorcer ver 2.06 11.89 0.02 0.68 ind:pas:3s; +amorçage amorçage nom m s 0.09 0.07 0.09 0.07 +amorçai amorcer ver 2.06 11.89 0 0.14 ind:pas:1s; +amorçaient amorcer ver 2.06 11.89 0.01 0.27 ind:imp:3p; +amorçais amorcer ver 2.06 11.89 0 0.07 ind:imp:1s; +amorçait amorcer ver 2.06 11.89 0 2.03 ind:imp:3s; +amorçant amorcer ver 2.06 11.89 0.01 0.41 par:pre; +amorçoir amorçoir nom m s 0 0.07 0 0.07 +amorçons amorcer ver 2.06 11.89 0.4 0 imp:pre:1p;ind:pre:1p; +amour amour nom m s 458.27 403.92 450.46 373.58 +amour_goût amour_goût nom m s 0 0.07 0 0.07 +amour_passion amour_passion nom m s 0 0.41 0 0.41 +amour_propre amour_propre nom m s 2.54 6.89 2.54 6.76 +amouracha amouracher ver 1.03 1.15 0 0.14 ind:pas:3s; +amourache amouracher ver 1.03 1.15 0.06 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amourachent amouracher ver 1.03 1.15 0.02 0 ind:pre:3p; +amouracher amouracher ver 1.03 1.15 0.44 0.2 inf; +amourachera amouracher ver 1.03 1.15 0 0.07 ind:fut:3s; +amouraches amouracher ver 1.03 1.15 0.02 0.07 ind:pre:2s; +amouraché amouracher ver m s 1.03 1.15 0.28 0.2 par:pas; +amourachée amouracher ver f s 1.03 1.15 0.22 0.34 par:pas; +amourer amourer ver 0 0.07 0 0.07 inf; +amourette amourette nom f s 0.66 1.15 0.54 0.47 +amourettes amourette nom f p 0.66 1.15 0.12 0.68 +amoureuse amoureux adj f s 107.79 58.45 41.65 23.11 +amoureusement amoureusement adv 0.22 2.5 0.22 2.5 +amoureuses amoureux adj f p 107.79 58.45 2.73 4.05 +amoureux amoureux adj m 107.79 58.45 63.41 31.28 +amours amour nom p 458.27 403.92 7.81 30.34 +amour_propre amour_propre nom m p 2.54 6.89 0 0.14 +amovible amovible adj s 0.38 0.68 0.11 0.2 +amovibles amovible adj p 0.38 0.68 0.27 0.47 +amphi amphi nom m s 0.29 1.08 0.29 0.61 +amphibie amphibie adj s 0.71 0.61 0.38 0.47 +amphibien amphibien nom m s 0.2 0 0.12 0 +amphibiens amphibien nom m p 0.2 0 0.08 0 +amphibies amphibie adj p 0.71 0.61 0.33 0.14 +amphigouri amphigouri nom m s 0.02 0.27 0 0.27 +amphigourique amphigourique adj s 0 0.2 0 0.07 +amphigouriques amphigourique adj m p 0 0.2 0 0.14 +amphigouris amphigouri nom m p 0.02 0.27 0.02 0 +amphis amphi nom m p 0.29 1.08 0 0.47 +amphithéâtre amphithéâtre nom m s 0.59 2.57 0.46 2.09 +amphithéâtres amphithéâtre nom m p 0.59 2.57 0.14 0.47 +amphitrite amphitrite nom f s 0 0.07 0 0.07 +amphitryon amphitryon nom m s 0.13 0.07 0.13 0.07 +amphore amphore nom f s 0.46 1.35 0.45 0.81 +amphores amphore nom f p 0.46 1.35 0.01 0.54 +amphés amphé nom m p 0.36 0.14 0.36 0.14 +amphétamine amphétamine nom f s 1.13 0.54 0.27 0.14 +amphétamines amphétamine nom f p 1.13 0.54 0.86 0.41 +ample ample adj s 1.3 11.89 0.82 8.04 +amplement amplement adv 1.33 1.82 1.33 1.82 +amples ample adj p 1.3 11.89 0.48 3.85 +ampleur ampleur nom f s 2.38 7.57 2.38 7.43 +ampleurs ampleur nom f p 2.38 7.57 0 0.14 +ampli ampli nom m s 0.98 1.15 0.74 0.54 +ampli_tuner ampli_tuner nom m s 0.01 0 0.01 0 +amplifia amplifier ver 1.63 8.65 0 0.68 ind:pas:3s; +amplifiaient amplifier ver 1.63 8.65 0 0.47 ind:imp:3p; +amplifiait amplifier ver 1.63 8.65 0.05 2.43 ind:imp:3s; +amplifiant amplifier ver 1.63 8.65 0.01 0.54 par:pre; +amplificateur amplificateur nom m s 0.29 0.2 0.26 0.2 +amplificateurs amplificateur nom m p 0.29 0.2 0.04 0 +amplification amplification nom f s 0.21 0.54 0.19 0.54 +amplifications amplification nom f p 0.21 0.54 0.02 0 +amplifie amplifier ver 1.63 8.65 0.43 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amplifient amplifier ver 1.63 8.65 0.2 0.41 ind:pre:3p; +amplifier amplifier ver 1.63 8.65 0.37 0.61 inf; +amplifiera amplifier ver 1.63 8.65 0.05 0 ind:fut:3s; +amplifierais amplifier ver 1.63 8.65 0 0.07 cnd:pre:1s; +amplifiez amplifier ver 1.63 8.65 0.09 0 imp:pre:2p;ind:pre:2p; +amplifions amplifier ver 1.63 8.65 0.03 0 imp:pre:1p; +amplifièrent amplifier ver 1.63 8.65 0 0.2 ind:pas:3p; +amplifié amplifier ver m s 1.63 8.65 0.14 0.95 par:pas; +amplifiée amplifier ver f s 1.63 8.65 0.09 0.27 par:pas; +amplifiées amplifier ver f p 1.63 8.65 0.05 0.2 par:pas; +amplifiés amplifier ver m p 1.63 8.65 0.11 0.61 par:pas; +amplis ampli nom m p 0.98 1.15 0.24 0.61 +amplitude amplitude nom f s 0.29 1.76 0.29 1.76 +ampoule ampoule nom f s 7.66 19.12 4.8 11.49 +ampoules ampoule nom f p 7.66 19.12 2.85 7.64 +ampoulé ampoulé adj m s 0.07 0.95 0.05 0.54 +ampoulée ampoulé adj f s 0.07 0.95 0.01 0.2 +ampoulées ampoulé adj f p 0.07 0.95 0 0.2 +ampoulés ampoulé adj m p 0.07 0.95 0.01 0 +amputa amputer ver 3.62 2.77 0.01 0.07 ind:pas:3s; +amputait amputer ver 3.62 2.77 0.03 0.07 ind:imp:3s; +amputant amputer ver 3.62 2.77 0 0.14 par:pre; +amputation amputation nom f s 0.79 1.62 0.55 1.28 +amputations amputation nom f p 0.79 1.62 0.23 0.34 +ampute amputer ver 3.62 2.77 0.71 0.2 ind:pre:1s;ind:pre:3s; +amputent amputer ver 3.62 2.77 0.02 0 ind:pre:3p; +amputer amputer ver 3.62 2.77 1.17 1.01 inf; +amputerai amputer ver 3.62 2.77 0.1 0 ind:fut:1s; +amputerait amputer ver 3.62 2.77 0.01 0 cnd:pre:3s; +amputez amputer ver 3.62 2.77 0.16 0 imp:pre:2p;ind:pre:2p; +amputé amputer ver m s 3.62 2.77 0.81 0.54 par:pas; +amputée amputer ver f s 3.62 2.77 0.4 0.61 par:pas; +amputées amputer ver f p 3.62 2.77 0.16 0 par:pas; +amputés amputé adj m p 1.28 1.49 0.81 0.27 +ampère ampère nom m s 0.26 0.07 0.01 0 +ampèremètre ampèremètre nom m s 0.02 0 0.02 0 +ampères ampère nom m p 0.26 0.07 0.25 0.07 +ampélopsis ampélopsis nom m 0 0.07 0 0.07 +ampérage ampérage nom m s 0.01 0 0.01 0 +amulette amulette nom f s 3.08 1.08 2.45 0.41 +amulettes amulette nom f p 3.08 1.08 0.63 0.68 +amura amurer ver 0.03 0 0.03 0 ind:pas:3s; +amure amure nom f s 0.01 0.27 0 0.14 +amures amure nom f p 0.01 0.27 0.01 0.14 +amusa amuser ver 141.41 120.95 0.11 4.26 ind:pas:3s; +amusai amuser ver 141.41 120.95 0.01 0.54 ind:pas:1s; +amusaient amuser ver 141.41 120.95 0.75 4.53 ind:imp:3p; +amusais amuser ver 141.41 120.95 1.78 3.18 ind:imp:1s;ind:imp:2s; +amusait amuser ver 141.41 120.95 4.59 18.24 ind:imp:3s; +amusant amusant adj m s 29.36 18.85 25.24 13.04 +amusante amusant adj f s 29.36 18.85 2.34 3.11 +amusantes amusant adj f p 29.36 18.85 0.96 1.15 +amusants amusant adj m p 29.36 18.85 0.81 1.55 +amuse amuser ver 141.41 120.95 39.85 24.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +amuse_bouche amuse_bouche nom m 0.05 0 0.03 0 +amuse_bouche amuse_bouche nom m p 0.05 0 0.02 0 +amuse_gueule amuse_gueule nom m 1.23 0.81 0.53 0.81 +amuse_gueule amuse_gueule nom m p 1.23 0.81 0.7 0 +amusement amusement nom m s 4.29 7.3 3.88 6.35 +amusements amusement nom m p 4.29 7.3 0.41 0.95 +amusent amuser ver 141.41 120.95 4.03 4.26 ind:pre:3p; +amuser amuser ver 141.41 120.95 43.77 25.34 inf;;inf;;inf;; +amusera amuser ver 141.41 120.95 1.25 1.08 ind:fut:3s; +amuserai amuser ver 141.41 120.95 0.25 0.07 ind:fut:1s; +amuseraient amuser ver 141.41 120.95 0.12 0.41 cnd:pre:3p; +amuserais amuser ver 141.41 120.95 0.42 0.27 cnd:pre:1s;cnd:pre:2s; +amuserait amuser ver 141.41 120.95 1.04 2.16 cnd:pre:3s; +amuseras amuser ver 141.41 120.95 0.58 0.07 ind:fut:2s; +amuserez amuser ver 141.41 120.95 0.22 0.07 ind:fut:2p; +amuseriez amuser ver 141.41 120.95 0.03 0 cnd:pre:2p; +amuserons amuser ver 141.41 120.95 0.16 0 ind:fut:1p; +amuseront amuser ver 141.41 120.95 0.15 0.14 ind:fut:3p; +amuses amuser ver 141.41 120.95 7.11 0.54 ind:pre:2s;sub:pre:2s; +amusette amusette nom f s 0.03 1.15 0.03 0.61 +amusettes amusette nom f p 0.03 1.15 0 0.54 +amuseur amuseur nom m s 0.24 0.34 0.18 0.2 +amuseurs amuseur nom m p 0.24 0.34 0.06 0.14 +amusez amuser ver 141.41 120.95 14.84 1.15 imp:pre:2p;ind:pre:2p; +amusiez amuser ver 141.41 120.95 0.46 0.14 ind:imp:2p; +amusions amuser ver 141.41 120.95 0.36 0.47 ind:imp:1p; +amusons amuser ver 141.41 120.95 1.48 0.41 imp:pre:1p;ind:pre:1p; +amusâmes amuser ver 141.41 120.95 0 0.2 ind:pas:1p; +amusât amuser ver 141.41 120.95 0.01 0.34 sub:imp:3s; +amusèrent amuser ver 141.41 120.95 0.01 0.95 ind:pas:3p; +amusé amuser ver m s 141.41 120.95 6.99 12.16 par:pas; +amusée amuser ver f s 141.41 120.95 3.92 7.43 par:pas; +amusées amuser ver f p 141.41 120.95 0.33 0.74 par:pas; +amusés amuser ver m p 141.41 120.95 4.41 2.91 par:pas; +amygdale amygdale nom f s 1.5 0.95 0.21 0.07 +amygdalectomie amygdalectomie nom f s 0.14 0 0.13 0 +amygdalectomies amygdalectomie nom f p 0.14 0 0.01 0 +amygdales amygdale nom f p 1.5 0.95 1.29 0.88 +amygdalien amygdalien adj m s 0.02 0 0.02 0 +amygdalite amygdalite nom f s 0.23 0 0.23 0 +amylase amylase nom f s 0.09 0 0.09 0 +amyle amyle nom m s 0.02 0.27 0.02 0.27 +amylique amylique adj m s 0.02 0 0.02 0 +amyotrophique amyotrophique adj f s 0.05 0.07 0.05 0.07 +amène amener ver 190.32 93.92 59.8 13.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +amènent amener ver 190.32 93.92 2.29 1.62 ind:pre:3p;sub:pre:3p; +amènera amener ver 190.32 93.92 1.9 0.74 ind:fut:3s; +amènerai amener ver 190.32 93.92 2.39 0.34 ind:fut:1s; +amèneraient amener ver 190.32 93.92 0.03 0.41 cnd:pre:3p; +amènerais amener ver 190.32 93.92 0.88 0.14 cnd:pre:1s;cnd:pre:2s; +amènerait amener ver 190.32 93.92 0.36 2.16 cnd:pre:3s; +amèneras amener ver 190.32 93.92 0.28 0.07 ind:fut:2s; +amènerez amener ver 190.32 93.92 0.32 0.07 ind:fut:2p; +amèneriez amener ver 190.32 93.92 0.02 0 cnd:pre:2p; +amènerions amener ver 190.32 93.92 0.01 0 cnd:pre:1p; +amènerons amener ver 190.32 93.92 0.22 0.07 ind:fut:1p; +amèneront amener ver 190.32 93.92 0.5 0.14 ind:fut:3p; +amènes amener ver 190.32 93.92 5.79 0.81 ind:pre:2s;sub:pre:2s; +amère amer adj f s 11.94 30.07 3.65 12.03 +amèrement amèrement adv 0.63 5.2 0.63 5.2 +amères amer adj f p 11.94 30.07 1.22 3.78 +amé amé nom m s 0.01 0 0.01 0 +améliora améliorer ver 22.34 8.65 0.03 0.14 ind:pas:3s; +améliorable améliorable adj s 0 0.07 0 0.07 +amélioraient améliorer ver 22.34 8.65 0.1 0.2 ind:imp:3p; +améliorait améliorer ver 22.34 8.65 0.1 0.54 ind:imp:3s; +améliorant améliorer ver 22.34 8.65 0.14 0.34 par:pre; +améliorateur améliorateur adj m s 0.04 0 0.04 0 +amélioration amélioration nom f s 2.87 2.43 2.08 2.23 +améliorations amélioration nom f p 2.87 2.43 0.79 0.2 +améliore améliorer ver 22.34 8.65 4.75 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +améliorent améliorer ver 22.34 8.65 0.56 0.34 ind:pre:3p; +améliorer améliorer ver 22.34 8.65 10.66 3.65 inf; +améliorera améliorer ver 22.34 8.65 0.79 0.2 ind:fut:3s; +améliorerait améliorer ver 22.34 8.65 0.09 0.07 cnd:pre:3s; +amélioreront améliorer ver 22.34 8.65 0.05 0.14 ind:fut:3p; +améliores améliorer ver 22.34 8.65 0.67 0.07 ind:pre:2s; +améliorez améliorer ver 22.34 8.65 0.23 0.07 imp:pre:2p;ind:pre:2p; +améliorons améliorer ver 22.34 8.65 0.07 0 imp:pre:1p;ind:pre:1p; +améliorèrent améliorer ver 22.34 8.65 0.01 0 ind:pas:3p; +amélioré améliorer ver m s 22.34 8.65 2.75 0.88 par:pas; +améliorée améliorer ver f s 22.34 8.65 1.01 0.34 par:pas; +améliorées améliorer ver f p 22.34 8.65 0.23 0.27 par:pas; +améliorés améliorer ver m p 22.34 8.65 0.1 0.2 par:pas; +aménage aménager ver 1.95 12.57 0.02 0.07 ind:pre:3s; +aménagea aménager ver 1.95 12.57 0 0.41 ind:pas:3s; +aménageai aménager ver 1.95 12.57 0 0.14 ind:pas:1s; +aménageaient aménager ver 1.95 12.57 0.01 0.07 ind:imp:3p; +aménageait aménager ver 1.95 12.57 0 0.14 ind:imp:3s; +aménageant aménager ver 1.95 12.57 0 0.14 par:pre; +aménagement aménagement nom m s 0.69 2.77 0.41 1.82 +aménagements aménagement nom m p 0.69 2.77 0.29 0.95 +aménagent aménager ver 1.95 12.57 0 0.2 ind:pre:3p; +aménager aménager ver 1.95 12.57 1.1 2.64 inf; +aménagerai aménager ver 1.95 12.57 0.01 0.07 ind:fut:1s; +aménagerait aménager ver 1.95 12.57 0 0.07 cnd:pre:3s; +aménagez aménager ver 1.95 12.57 0 0.07 imp:pre:2p; +aménagèrent aménager ver 1.95 12.57 0 0.14 ind:pas:3p; +aménagé aménager ver m s 1.95 12.57 0.48 3.72 par:pas; +aménagée aménager ver f s 1.95 12.57 0.29 3.31 par:pas; +aménagées aménager ver f p 1.95 12.57 0.01 0.68 par:pas; +aménagés aménager ver m p 1.95 12.57 0.03 0.74 par:pas; +aménité aménité nom f s 0.01 1.96 0 1.82 +aménités aménité nom f p 0.01 1.96 0.01 0.14 +aménorrhée aménorrhée nom f s 0.28 0.14 0.28 0.14 +américain américain adj m s 63.92 74.73 30.93 25.95 +américaine américain adj f s 63.92 74.73 17.49 19.53 +américaines américain adj f p 63.92 74.73 3.48 10.47 +américains américain nom m p 45.64 47.43 24.9 26.28 +américanisais américaniser ver 0.03 0.14 0 0.07 ind:imp:1s; +américanisation américanisation nom f s 0.02 0.07 0.02 0.07 +américaniser américaniser ver 0.03 0.14 0.01 0 inf; +américanisme américanisme nom m s 0.03 0.14 0.03 0.07 +américanismes américanisme nom m p 0.03 0.14 0 0.07 +américanisé américaniser ver m s 0.03 0.14 0.02 0 par:pas; +américanisés américaniser ver m p 0.03 0.14 0 0.07 par:pas; +américanité américanité nom f s 0 0.07 0 0.07 +américano américano nom m s 0.01 0.27 0.01 0.2 +américano_britannique américano_britannique adj s 0.01 0 0.01 0 +américano_japonais américano_japonais adj f s 0.01 0 0.01 0 +américano_russe américano_russe adj f s 0.01 0 0.01 0 +américano_soviétique américano_soviétique adj m s 0.03 0 0.03 0 +américano_suédois américano_suédois adj f s 0.01 0 0.01 0 +américanophile américanophile adj s 0 0.27 0 0.2 +américanophiles américanophile adj p 0 0.27 0 0.07 +américanos américano nom m p 0.01 0.27 0 0.07 +américium américium nom m s 0.03 0 0.03 0 +amérindien amérindien adj m s 0.14 0.07 0.04 0 +amérindienne amérindien adj f s 0.14 0.07 0.06 0 +amérindiennes amérindien adj f p 0.14 0.07 0.01 0.07 +amérindiens amérindien nom m p 0.14 0 0.08 0 +amérique amérique nom f s 0.34 1.08 0.34 1.08 +améthyste améthyste nom f s 0.22 0.81 0.2 0.27 +améthystes améthyste nom f p 0.22 0.81 0.02 0.54 +an an nom m s 866.58 685.81 148.41 76.76 +ana ana nom m 4.91 0.14 4.91 0.14 +anabaptiste anabaptiste adj s 0.01 0.41 0.01 0.34 +anabaptistes anabaptiste nom p 0 0.34 0 0.34 +anabase anabase nom f s 0 0.14 0 0.14 +anabolisant anabolisant adj m s 0.02 0 0.01 0 +anabolisant anabolisant nom m s 0.09 0 0.01 0 +anabolisants anabolisant nom m p 0.09 0 0.08 0 +anachorète anachorète nom m s 0.11 0.47 0.1 0.41 +anachorètes anachorète nom m p 0.11 0.47 0.01 0.07 +anachronique anachronique adj s 0.04 2.36 0.04 1.69 +anachroniquement anachroniquement adv 0 0.07 0 0.07 +anachroniques anachronique adj p 0.04 2.36 0 0.68 +anachronisme anachronisme nom m s 0.26 0.88 0.24 0.54 +anachronismes anachronisme nom m p 0.26 0.88 0.02 0.34 +anacoluthe anacoluthe nom f s 0.1 0.07 0.1 0.07 +anaconda anaconda nom m s 0.49 0 0.43 0 +anacondas anaconda nom m p 0.49 0 0.06 0 +anadyomène anadyomène adj f s 0 0.14 0 0.14 +anaglyphe anaglyphe nom m s 0.04 0 0.04 0 +anagramme anagramme nom f s 0.6 0.2 0.47 0.07 +anagrammes anagramme nom f p 0.6 0.2 0.13 0.14 +anal anal adj m s 2.18 0.74 1.43 0.54 +anale anal adj f s 2.18 0.74 0.35 0.07 +analeptiques analeptique nom m p 0.01 0 0.01 0 +anales anal adj f p 2.18 0.74 0.23 0.14 +analgésie analgésie nom f s 0.01 0 0.01 0 +analgésique analgésique nom m s 0.64 0.07 0.27 0 +analgésiques analgésique nom m p 0.64 0.07 0.37 0.07 +analogie analogie nom f s 0.98 2.03 0.84 1.49 +analogies analogie nom f p 0.98 2.03 0.14 0.54 +analogique analogique adj s 0.35 0.14 0.28 0.07 +analogiques analogique adj p 0.35 0.14 0.07 0.07 +analogue analogue adj s 0.53 6.82 0.38 4.66 +analogues analogue adj p 0.53 6.82 0.16 2.16 +analphabète analphabète adj s 1.18 1.22 0.78 0.88 +analphabètes analphabète nom p 1.09 1.15 0.73 0.68 +analphabétisme analphabétisme nom m s 0.13 0.2 0.13 0.2 +analysa analyser ver 15.4 7.43 0 0.41 ind:pas:3s; +analysaient analyser ver 15.4 7.43 0.02 0.14 ind:imp:3p; +analysais analyser ver 15.4 7.43 0.04 0.14 ind:imp:1s; +analysait analyser ver 15.4 7.43 0.18 0.81 ind:imp:3s; +analysant analyser ver 15.4 7.43 0.16 0.14 par:pre; +analysants analysant nom m p 0.02 0.2 0 0.14 +analyse analyse nom f s 23.26 12.43 14.87 8.31 +analysent analyser ver 15.4 7.43 0.11 0 ind:pre:3p; +analyser analyser ver 15.4 7.43 6.9 3.38 inf; +analysera analyser ver 15.4 7.43 0.15 0 ind:fut:3s; +analyserai analyser ver 15.4 7.43 0.04 0.14 ind:fut:1s; +analyserait analyser ver 15.4 7.43 0.01 0 cnd:pre:3s; +analyserons analyser ver 15.4 7.43 0.13 0 ind:fut:1p; +analyseront analyser ver 15.4 7.43 0.03 0.07 ind:fut:3p; +analyses analyse nom f p 23.26 12.43 8.39 4.12 +analyseur analyseur nom m s 0.45 0 0.29 0 +analyseurs analyseur nom m p 0.45 0 0.16 0 +analysez analyser ver 15.4 7.43 0.42 0 imp:pre:2p;ind:pre:2p; +analysions analyser ver 15.4 7.43 0.01 0.07 ind:imp:1p; +analysons analyser ver 15.4 7.43 0.57 0.14 imp:pre:1p;ind:pre:1p; +analyste analyste nom s 2.44 1.08 1.82 0.88 +analystes analyste nom p 2.44 1.08 0.62 0.2 +analysèrent analyser ver 15.4 7.43 0.01 0.07 ind:pas:3p; +analysé analyser ver m s 15.4 7.43 3.36 0.61 par:pas; +analysée analyser ver f s 15.4 7.43 0.47 0.07 par:pas; +analysées analyser ver f p 15.4 7.43 0.29 0.07 par:pas; +analysés analyser ver m p 15.4 7.43 0.07 0 par:pas; +analytique analytique adj s 0.38 0.34 0.38 0.34 +analytiquement analytiquement adv 0.01 0.07 0.01 0.07 +anamnèse anamnèse nom f s 0 0.07 0 0.07 +anamorphose anamorphose nom f s 0 0.27 0 0.27 +ananas ananas nom m 2.02 3.51 2.02 3.51 +anaphase anaphase nom f s 0.03 0 0.03 0 +anaphoriquement anaphoriquement adv 0 0.14 0 0.14 +anaphylactique anaphylactique adj s 0.52 0 0.52 0 +anaphylaxie anaphylaxie nom f s 0.06 0 0.06 0 +anar anar nom s 0.01 0.74 0.01 0.34 +anarchie anarchie nom f s 4.18 4.8 4.18 4.8 +anarchique anarchique adj s 0.18 1.15 0.18 1.08 +anarchiquement anarchiquement adv 0.01 0.14 0.01 0.14 +anarchiques anarchique adj p 0.18 1.15 0 0.07 +anarchisant anarchisant adj m s 0.01 0 0.01 0 +anarchisme anarchisme nom m s 0.71 0.47 0.71 0.47 +anarchiste anarchiste adj s 1.69 2.84 1.19 2.16 +anarchistes anarchiste nom p 2.02 4.46 1.03 2.3 +anarcho_syndicalisme anarcho_syndicalisme nom m s 0 0.07 0 0.07 +anarcho_syndicaliste anarcho_syndicaliste adj s 0 0.14 0 0.07 +anarcho_syndicaliste anarcho_syndicaliste adj m p 0 0.14 0 0.07 +anars anar nom p 0.01 0.74 0 0.41 +anas anas nom m 0.02 0.07 0.02 0.07 +anastomose anastomose nom f s 0.08 0.07 0.08 0 +anastomoses anastomose nom f p 0.08 0.07 0 0.07 +anathème anathème nom m s 1.12 1.08 1.08 0.88 +anathèmes anathème nom m p 1.12 1.08 0.03 0.2 +anathématisait anathématiser ver 0 0.14 0 0.07 ind:imp:3s; +anathématisé anathématiser ver m s 0 0.14 0 0.07 par:pas; +anatidés anatidé nom m p 0 0.07 0 0.07 +anatifes anatife nom m p 0.01 0.07 0.01 0.07 +anatomie anatomie nom f s 3.63 4.8 3.37 4.66 +anatomies anatomie nom f p 3.63 4.8 0.26 0.14 +anatomique anatomique adj s 0.26 1.69 0.1 1.15 +anatomiquement anatomiquement adv 0.09 0.2 0.09 0.2 +anatomiques anatomique adj p 0.26 1.69 0.16 0.54 +anatomiser anatomiser ver 0 0.07 0 0.07 inf; +anatomiste anatomiste nom s 0 0.34 0 0.27 +anatomistes anatomiste nom p 0 0.34 0 0.07 +anatomophysiologique anatomophysiologique adj m s 0 0.07 0 0.07 +anaux anal adj m p 2.18 0.74 0.16 0 +anaérobie anaérobie adj m s 0.05 0 0.05 0 +ancestral ancestral adj m s 2.22 5.41 1.04 1.89 +ancestrale ancestral adj f s 2.22 5.41 0.97 2.03 +ancestralement ancestralement adv 0.01 0.14 0.01 0.14 +ancestrales ancestral adj f p 2.22 5.41 0.12 1.35 +ancestralité ancestralité nom f s 0 0.07 0 0.07 +ancestraux ancestral adj m p 2.22 5.41 0.09 0.14 +anch_io_son_pittore anch_io_son_pittore adv 0 0.07 0 0.07 +anche anche nom f s 0.17 0.27 0.17 0.27 +anchilops anchilops nom m 0 0.07 0 0.07 +anchois anchois nom m 1.3 2.57 1.3 2.57 +anchoïade anchoïade nom f s 0 0.07 0 0.07 +ancien ancien adj m s 73.16 154.86 32.41 59.26 +ancienne ancien adj f s 73.16 154.86 19.82 37.09 +anciennement anciennement adv 0.45 1.01 0.45 1.01 +anciennes ancien adj f p 73.16 154.86 6.22 18.65 +ancienneté ancienneté nom f s 0.9 1.55 0.9 1.55 +anciens ancien adj m p 73.16 154.86 14.72 39.86 +ancillaire ancillaire adj f s 0.01 0.88 0 0.34 +ancillaires ancillaire adj p 0.01 0.88 0.01 0.54 +ancolie ancolie nom f s 0 0.07 0 0.07 +ancra ancrer ver 1.79 5.54 0.1 0.2 ind:pas:3s; +ancrage ancrage nom m s 0.19 0.41 0.19 0.41 +ancraient ancrer ver 1.79 5.54 0 0.07 ind:imp:3p; +ancrais ancrer ver 1.79 5.54 0 0.07 ind:imp:1s; +ancrait ancrer ver 1.79 5.54 0.01 0.14 ind:imp:3s; +ancrant ancrer ver 1.79 5.54 0 0.07 par:pre; +ancre ancre nom f s 4.75 5.81 4.63 4.53 +ancrer ancrer ver 1.79 5.54 0.26 0.61 inf; +ancrera ancrer ver 1.79 5.54 0.02 0 ind:fut:3s; +ancres ancre nom f p 4.75 5.81 0.11 1.28 +ancrez ancrer ver 1.79 5.54 0.02 0 imp:pre:2p; +ancré ancrer ver m s 1.79 5.54 0.64 2.16 par:pas; +ancrée ancrer ver f s 1.79 5.54 0.42 1.08 par:pas; +ancrées ancrer ver f p 1.79 5.54 0.05 0.34 par:pas; +ancrés ancré adj m p 0.4 1.08 0.14 0.2 +ancêtre ancêtre nom s 12.75 22.23 1.61 6.28 +ancêtres ancêtre nom p 12.75 22.23 11.14 15.95 +anda anda nom m s 1.13 0.14 1.13 0.14 +andain andain nom m s 0 0.2 0 0.07 +andains andain nom m p 0 0.2 0 0.14 +andalou andalou adj m s 0.21 2.23 0.2 1.08 +andalous andalou nom m p 0.17 1.69 0.14 0.27 +andalouse andalou nom f s 0.17 1.69 0.02 0.47 +andalouses andalou adj f p 0.21 2.23 0.01 0.2 +andante andante nom m s 0.14 0.47 0.14 0.47 +andine andin adj f s 0.01 0.14 0.01 0.07 +andines andin adj f p 0.01 0.14 0 0.07 +andorranes andorran adj f p 0 0.07 0 0.07 +andouille andouille nom f s 6.94 6.28 6.29 4.86 +andouiller andouiller nom m s 0.02 1.28 0 0.2 +andouillers andouiller nom m p 0.02 1.28 0.02 1.08 +andouilles andouille nom f p 6.94 6.28 0.65 1.42 +andouillette andouillette nom f s 0.07 0.74 0.04 0.54 +andouillettes andouillette nom f p 0.07 0.74 0.03 0.2 +andrinople andrinople nom f s 0 0.2 0 0.2 +androgyne androgyne nom s 0.17 0.41 0.16 0.41 +androgynes androgyne adj p 0.06 0.54 0.01 0.27 +androgynie androgynie nom f s 0 0.07 0 0.07 +androgynique androgynique adj s 0 0.07 0 0.07 +androgènes androgène nom m p 0.01 0 0.01 0 +andropause andropause nom f s 0.23 0.14 0.23 0.14 +androïde androïde nom m s 0.82 0.07 0.44 0.07 +androïdes androïde nom m p 0.82 0.07 0.38 0 +anecdote anecdote nom f s 2.12 12.91 1.13 5.34 +anecdotes anecdote nom f p 2.12 12.91 0.99 7.57 +anecdotier anecdotier nom m s 0.01 0 0.01 0 +anecdotique anecdotique adj s 0.18 0.81 0.14 0.61 +anecdotiquement anecdotiquement adv 0 0.14 0 0.14 +anecdotiques anecdotique adj p 0.18 0.81 0.04 0.2 +anesthésia anesthésier ver 1.18 1.55 0 0.07 ind:pas:3s; +anesthésiaient anesthésier ver 1.18 1.55 0 0.14 ind:imp:3p; +anesthésiait anesthésier ver 1.18 1.55 0 0.07 ind:imp:3s; +anesthésiant anesthésiant nom m s 0.44 0.14 0.44 0.07 +anesthésiante anesthésiant adj f s 0.32 0.2 0 0.07 +anesthésiantes anesthésiant adj f p 0.32 0.2 0.02 0.14 +anesthésiants anesthésiant adj m p 0.32 0.2 0.02 0 +anesthésie anesthésie nom f s 3.74 2.7 3.71 2.64 +anesthésient anesthésier ver 1.18 1.55 0.01 0.07 ind:pre:3p; +anesthésier anesthésier ver 1.18 1.55 0.37 0.07 inf; +anesthésierai anesthésier ver 1.18 1.55 0.01 0 ind:fut:1s; +anesthésies anesthésie nom f p 3.74 2.7 0.02 0.07 +anesthésiez anesthésier ver 1.18 1.55 0.16 0 imp:pre:2p;ind:pre:2p; +anesthésions anesthésier ver 1.18 1.55 0.02 0 ind:pre:1p; +anesthésique anesthésique nom m s 0.47 0.34 0.44 0.34 +anesthésiques anesthésique nom m p 0.47 0.34 0.03 0 +anesthésiste anesthésiste nom s 1.07 0.61 0.82 0.61 +anesthésistes anesthésiste nom p 1.07 0.61 0.25 0 +anesthésié anesthésier ver m s 1.18 1.55 0.14 0.2 par:pas; +anesthésiée anesthésier ver f s 1.18 1.55 0.08 0.54 par:pas; +anesthésiées anesthésier ver f p 1.18 1.55 0 0.07 par:pas; +anesthésiés anesthésier ver m p 1.18 1.55 0.01 0.2 par:pas; +aneth aneth nom m s 0.07 0.61 0.07 0.61 +anfractuosité anfractuosité nom f s 0.14 1.28 0.14 0.54 +anfractuosités anfractuosité nom f p 0.14 1.28 0 0.74 +ange ange nom m s 69.27 42.5 47.9 21.62 +angelot angelot nom m s 0.69 1.49 0.37 0.74 +angelots angelot nom m p 0.69 1.49 0.32 0.74 +anges ange nom m p 69.27 42.5 21.38 20.88 +angevin angevin adj m s 0.1 0.07 0.1 0 +angevine angevin nom f s 0 0.14 0 0.07 +angevins angevin nom m p 0 0.14 0 0.07 +angine angine nom f s 1.39 2.57 1.2 2.3 +angines angine nom f p 1.39 2.57 0.19 0.27 +angiocholite angiocholite nom f s 0.01 0 0.01 0 +angiographie angiographie nom f s 0.32 0 0.32 0 +angiome angiome nom m s 0.13 0 0.13 0 +angioplastie angioplastie nom f s 0.19 0 0.19 0 +anglais anglais nom m 51.01 79.53 48.81 69.46 +anglaise anglais adj f s 32.22 61.69 8.21 18.58 +anglaises anglais adj f p 32.22 61.69 1 6.42 +angle angle nom m s 13.29 57.64 11.56 46.89 +angler angler ver 0.21 0.2 0.01 0.07 inf; +angles angle nom m p 13.29 57.64 1.73 10.74 +angleterre angleterre nom f s 0.2 0.47 0.2 0.47 +anglican anglican adj m s 0.16 0.61 0.06 0.34 +anglicane anglican adj f s 0.16 0.61 0.1 0.14 +anglicans anglican nom m p 0.04 0.07 0.01 0 +angliche angliche nom s 0.44 0.41 0.32 0.2 +angliches angliche nom p 0.44 0.41 0.12 0.2 +anglicisation anglicisation nom f s 0 0.07 0 0.07 +angliciser angliciser ver 0.11 0 0.01 0 inf; +anglicismes anglicisme nom m p 0 0.07 0 0.07 +anglicisé angliciser ver m s 0.11 0 0.1 0 par:pas; +anglo_albanais anglo_albanais adj m s 0 0.07 0 0.07 +anglo_allemand anglo_allemand adj m s 0.01 0 0.01 0 +anglo_américain anglo_américain adj m s 0.05 0.2 0.01 0.07 +anglo_américain anglo_américain adj f s 0.05 0.2 0.02 0.07 +anglo_américain anglo_américain adj f p 0.05 0.2 0 0.07 +anglo_américain anglo_américain adj m p 0.05 0.2 0.02 0 +anglo_arabe anglo_arabe adj s 0 0.27 0 0.14 +anglo_arabe anglo_arabe adj m p 0 0.27 0 0.14 +anglo_chinois anglo_chinois adj m s 0.01 0 0.01 0 +anglo_français anglo_français adj m s 0.02 0.14 0.01 0.07 +anglo_français anglo_français adj f s 0.02 0.14 0.01 0.07 +anglo_hellénique anglo_hellénique adj f s 0 0.07 0 0.07 +anglo_irlandais anglo_irlandais adj m s 0 0.27 0 0.27 +anglo_normand anglo_normand adj m s 0.04 0.34 0 0.14 +anglo_normand anglo_normand adj f s 0.04 0.34 0 0.2 +anglo_normand anglo_normand adj f p 0.04 0.34 0.04 0 +anglo_russe anglo_russe adj m s 0.02 0 0.01 0 +anglo_russe anglo_russe adj f p 0.02 0 0.01 0 +anglo_saxon anglo_saxon adj m s 0.48 4.12 0.23 1.08 +anglo_saxon anglo_saxon adj f s 0.48 4.12 0.04 0.74 +anglo_saxon anglo_saxon adj f p 0.48 4.12 0.18 0.88 +anglo_saxon anglo_saxon adj m p 0.48 4.12 0.03 1.42 +anglo_soviétique anglo_soviétique adj s 0.02 0.07 0.02 0.07 +anglo_égyptien anglo_égyptien adj m s 0.01 0.41 0 0.2 +anglo_égyptien anglo_égyptien adj f s 0.01 0.41 0.01 0.2 +anglo_éthiopien anglo_éthiopien adj m s 0 0.07 0 0.07 +anglomane anglomane adj s 0 0.14 0 0.07 +anglomanes anglomane adj p 0 0.14 0 0.07 +anglomanie anglomanie nom f s 0 0.07 0 0.07 +anglophile anglophile adj f s 0.02 0.2 0.02 0.2 +anglophobe anglophobe adj s 0.01 0 0.01 0 +anglophobes anglophobe nom p 0 0.07 0 0.07 +anglophobie anglophobie nom f s 0 0.07 0 0.07 +anglophone anglophone adj s 0.1 0.14 0.09 0.14 +anglophones anglophone nom p 0.01 0.07 0.01 0.07 +angoissa angoisser ver 5.84 5.88 0 0.14 ind:pas:3s; +angoissaient angoisser ver 5.84 5.88 0.01 0.14 ind:imp:3p; +angoissais angoisser ver 5.84 5.88 0.06 0 ind:imp:1s; +angoissait angoisser ver 5.84 5.88 0.07 1.35 ind:imp:3s; +angoissant angoissant adj m s 1.87 4.19 0.8 1.96 +angoissante angoissant adj f s 1.87 4.19 1.05 1.42 +angoissantes angoissant adj f p 1.87 4.19 0.01 0.27 +angoissants angoissant adj m p 1.87 4.19 0.01 0.54 +angoisse angoisse nom f s 17.82 68.99 14.98 60.68 +angoissent angoisser ver 5.84 5.88 0.25 0 ind:pre:3p; +angoisser angoisser ver 5.84 5.88 0.98 0.27 inf; +angoisserait angoisser ver 5.84 5.88 0.01 0 cnd:pre:3s; +angoisses angoisse nom f p 17.82 68.99 2.84 8.31 +angoissez angoisser ver 5.84 5.88 0.02 0 ind:pre:2p; +angoissiez angoisser ver 5.84 5.88 0.01 0 ind:imp:2p; +angoissé angoisser ver m s 5.84 5.88 0.55 0.95 par:pas; +angoissée angoissé adj f s 1.17 5.27 0.88 2.09 +angoissées angoissé nom f p 0.16 1.22 0.01 0.07 +angoissés angoissé adj m p 1.17 5.27 0.01 0.27 +angolais angolais adj m p 0.2 0.07 0.2 0.07 +angon angon nom m s 0 0.41 0 0.41 +angor angor nom m s 0.01 0 0.01 0 +angora angora nom m s 0.29 0.47 0.29 0.34 +angoras angora nom m p 0.29 0.47 0 0.14 +angström angström nom m s 0.01 0.2 0.01 0.2 +anguille anguille nom f s 4.32 3.31 1.74 2.03 +anguilles anguille nom f p 4.32 3.31 2.58 1.28 +anguillules anguillule nom f p 0 0.07 0 0.07 +anguis anguis nom m 0 0.07 0 0.07 +angulaire angulaire adj s 0.36 0.47 0.32 0.34 +angulaires angulaire adj p 0.36 0.47 0.05 0.14 +anguleuse anguleux adj f s 0.63 3.24 0.45 0.81 +anguleuses anguleux adj f p 0.63 3.24 0.01 0.61 +anguleux anguleux adj m 0.63 3.24 0.17 1.82 +angulosité angulosité nom f s 0 0.07 0 0.07 +angustura angustura nom f s 0 0.27 0 0.27 +angéite angéite nom f s 0.01 0 0.01 0 +angélique angélique adj s 0.59 4.86 0.41 3.85 +angéliquement angéliquement adv 0 0.14 0 0.14 +angéliques angélique adj p 0.59 4.86 0.17 1.01 +angélisme angélisme nom m s 0 0.47 0 0.47 +angélus angélus nom m 0.8 1.28 0.8 1.28 +anhydre anhydre adj f s 0.04 0 0.04 0 +anhydride anhydride nom m s 0.04 0.07 0.04 0.07 +anhèle anhéler ver 0 0.07 0 0.07 ind:pre:3s; +anhélations anhélation nom f p 0 0.07 0 0.07 +anicroche anicroche nom f s 0.12 0.74 0.06 0.54 +anicroches anicroche nom f p 0.12 0.74 0.06 0.2 +aniline aniline nom f s 0.01 0.27 0.01 0.27 +anima animer ver 6.28 33.78 0.29 1.89 ind:pas:3s; +animai animer ver 6.28 33.78 0.34 0.07 ind:pas:1s; +animaient animer ver 6.28 33.78 0.12 1.42 ind:imp:3p; +animais animer ver 6.28 33.78 0.03 0.07 ind:imp:1s; +animait animer ver 6.28 33.78 0.46 6.28 ind:imp:3s; +animal animal nom m s 80.5 82.64 36.89 47.23 +animal_roi animal_roi nom m s 0 0.07 0 0.07 +animalcule animalcule nom m s 0 0.14 0 0.14 +animale animal adj f s 6.33 14.19 1.96 6.49 +animalement animalement adv 0 0.27 0 0.27 +animalerie animalerie nom f s 0.42 0.07 0.42 0.07 +animales animal adj f p 6.33 14.19 1.03 1.69 +animalier animalier adj m s 0.48 0.61 0.32 0.2 +animaliers animalier adj m p 0.48 0.61 0.12 0 +animalisait animaliser ver 0 0.14 0 0.07 ind:imp:3s; +animalise animaliser ver 0 0.14 0 0.07 ind:pre:3s; +animalité animalité nom f s 0.01 1.42 0.01 1.42 +animalière animalier adj f s 0.48 0.61 0.01 0.34 +animalières animalier adj f p 0.48 0.61 0.03 0.07 +animant animer ver 6.28 33.78 0.01 0.81 par:pre; +animas animer ver 6.28 33.78 0.03 0 ind:pas:2s; +animateur animateur nom m s 2.72 2.23 1.9 1.42 +animateurs animateur nom m p 2.72 2.23 0.12 0.61 +animation animation nom f s 1.53 8.31 1.45 8.18 +animations animation nom f p 1.53 8.31 0.08 0.14 +animatrice animateur nom f s 2.72 2.23 0.69 0.14 +animatrices animateur nom f p 2.72 2.23 0 0.07 +animaux animal nom m p 80.5 82.64 43.62 35.41 +animaux_espions animaux_espions nom m p 0.01 0 0.01 0 +anime animer ver 6.28 33.78 1.82 5.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +animent animer ver 6.28 33.78 0.12 1.22 ind:pre:3p; +animer animer ver 6.28 33.78 0.94 4.12 inf; +animeraient animer ver 6.28 33.78 0 0.14 cnd:pre:3p; +animerait animer ver 6.28 33.78 0 0.27 cnd:pre:3s; +animes animer ver 6.28 33.78 0.07 0 ind:pre:2s; +animique animique adj s 0 0.07 0 0.07 +animisme animisme nom m s 0 0.07 0 0.07 +animiste animiste adj f s 0 0.07 0 0.07 +animosité animosité nom f s 1.09 2.64 1.07 2.57 +animosités animosité nom f p 1.09 2.64 0.01 0.07 +animus animus nom m 0.02 0 0.02 0 +animât animer ver 6.28 33.78 0 0.2 sub:imp:3s; +animèrent animer ver 6.28 33.78 0 0.81 ind:pas:3p; +animé animé adj m s 6.21 8.92 2.79 3.18 +animée animer ver f s 6.28 33.78 0.37 3.78 par:pas; +animées animé adj f p 6.21 8.92 0.42 1.22 +animés animé adj m p 6.21 8.92 2.66 1.42 +anionique anionique adj m s 0.01 0 0.01 0 +anis anis nom m 1.05 2.5 1.05 2.5 +anise aniser ver 0.11 0.2 0.1 0 imp:pre:2s; +anisette anisette nom f s 0.15 1.15 0.15 1.01 +anisettes anisette nom f p 0.15 1.15 0 0.14 +anisé aniser ver m s 0.11 0.2 0 0.07 par:pas; +anisée aniser ver f s 0.11 0.2 0.01 0.07 par:pas; +anisées aniser ver f p 0.11 0.2 0 0.07 par:pas; +ankh ankh nom m s 0.07 0.07 0.07 0.07 +ankylosait ankyloser ver 0 0.88 0 0.14 ind:imp:3s; +ankylose ankylose nom f s 0.12 0.95 0.12 0.88 +ankyloser ankyloser ver 0 0.88 0 0.14 inf; +ankyloses ankylose nom f p 0.12 0.95 0 0.07 +ankylosé ankylosé adj m s 0.13 1.28 0.11 0.47 +ankylosée ankylosé adj f s 0.13 1.28 0.01 0.41 +ankylosées ankylosé adj f p 0.13 1.28 0 0.2 +ankylosés ankylosé adj m p 0.13 1.28 0 0.2 +annales annales nom f 0.78 1.76 0.78 1.76 +annamite annamite nom s 0 0.34 0 0.14 +annamites annamite nom p 0 0.34 0 0.2 +anneau anneau nom m s 21.61 17.5 17.59 9.53 +anneaux anneau nom m p 21.61 17.5 4.01 7.97 +annelets annelet nom m p 0 0.07 0 0.07 +annelures annelure nom f p 0 0.07 0 0.07 +annelé annelé adj m s 0 1.22 0 0.27 +annelée annelé adj f s 0 1.22 0 0.41 +annelées annelé adj f p 0 1.22 0 0.34 +annelés annelé adj m p 0 1.22 0 0.2 +annexa annexer ver 0.9 3.45 0 0.07 ind:pas:3s; +annexaient annexer ver 0.9 3.45 0 0.34 ind:imp:3p; +annexait annexer ver 0.9 3.45 0 0.14 ind:imp:3s; +annexant annexer ver 0.9 3.45 0.02 0.07 par:pre; +annexe annexe nom f s 1.36 2.97 1.27 2.03 +annexer annexer ver 0.9 3.45 0.51 0.81 inf; +annexes annexe adj p 1.17 1.22 0.46 0.61 +annexion annexion nom f s 0.37 0.74 0.37 0.61 +annexions annexion nom f p 0.37 0.74 0 0.14 +annexèrent annexer ver 0.9 3.45 0 0.07 ind:pas:3p; +annexé annexer ver m s 0.9 3.45 0.14 0.88 par:pas; +annexée annexer ver f s 0.9 3.45 0.02 0.41 par:pas; +annexées annexer ver f p 0.9 3.45 0 0.14 par:pas; +annexés annexer ver m p 0.9 3.45 0.04 0.14 par:pas; +annihila annihiler ver 0.84 0.74 0 0.07 ind:pas:3s; +annihilait annihiler ver 0.84 0.74 0 0.14 ind:imp:3s; +annihilant annihiler ver 0.84 0.74 0.01 0 par:pre; +annihilante annihilant adj f s 0 0.14 0 0.07 +annihilateur annihilateur adj m s 0.12 0 0.12 0 +annihilation annihilation nom f s 0.46 0.07 0.46 0.07 +annihile annihiler ver 0.84 0.74 0.06 0 imp:pre:2s;ind:pre:3s; +annihilent annihiler ver 0.84 0.74 0 0.14 ind:pre:3p; +annihiler annihiler ver 0.84 0.74 0.36 0.27 inf; +annihilez annihiler ver 0.84 0.74 0.01 0 ind:pre:2p; +annihilons annihiler ver 0.84 0.74 0.01 0 imp:pre:1p; +annihilé annihiler ver m s 0.84 0.74 0.32 0.07 par:pas; +annihilée annihiler ver f s 0.84 0.74 0.08 0.07 par:pas; +anniv anniv nom m s 0.26 0 0.26 0 +anniversaire anniversaire nom m s 82.79 12.97 80.24 12.09 +anniversaires anniversaire nom m p 82.79 12.97 2.55 0.88 +annonce annonce nom f s 23.76 16.62 18.93 13.18 +annoncent annoncer ver 55.67 133.92 1.79 2.77 ind:pre:3p; +annoncer annoncer ver 55.67 133.92 21.14 23.38 inf; +annoncera annoncer ver 55.67 133.92 0.74 0.27 ind:fut:3s; +annoncerai annoncer ver 55.67 133.92 0.88 0.07 ind:fut:1s; +annonceraient annoncer ver 55.67 133.92 0 0.07 cnd:pre:3p; +annoncerais annoncer ver 55.67 133.92 0.03 0 cnd:pre:1s;cnd:pre:2s; +annoncerait annoncer ver 55.67 133.92 0.04 0.54 cnd:pre:3s; +annonceras annoncer ver 55.67 133.92 0.04 0.07 ind:fut:2s; +annoncerez annoncer ver 55.67 133.92 0.23 0.07 ind:fut:2p; +annoncerons annoncer ver 55.67 133.92 0.13 0.07 ind:fut:1p; +annonceront annoncer ver 55.67 133.92 0.1 0.07 ind:fut:3p; +annonces annonce nom f p 23.76 16.62 4.83 3.45 +annonceur annonceur nom m s 0.58 0.54 0.09 0.2 +annonceurs annonceur nom m p 0.58 0.54 0.5 0.07 +annonceuse annonceur nom f s 0.58 0.54 0 0.27 +annoncez annoncer ver 55.67 133.92 2 0.47 imp:pre:2p;ind:pre:2p; +annonciateur annonciateur adj m s 0.28 2.3 0.25 0.88 +annonciateurs annonciateur adj m p 0.28 2.3 0.03 0.88 +annonciation annonciation nom f s 0.01 0.61 0 0.54 +annonciations annonciation nom f p 0.01 0.61 0.01 0.07 +annonciatrice annonciateur adj f s 0.28 2.3 0 0.34 +annonciatrices annonciateur adj f p 0.28 2.3 0 0.2 +annonciez annoncer ver 55.67 133.92 0.06 0.07 ind:imp:2p; +annoncions annoncer ver 55.67 133.92 0.13 0.07 ind:imp:1p; +annoncèrent annoncer ver 55.67 133.92 0.03 1.15 ind:pas:3p; +annoncé annoncer ver m s 55.67 133.92 9.15 15.68 par:pas; +annoncée annoncer ver f s 55.67 133.92 0.85 2.91 par:pas; +annoncées annoncer ver f p 55.67 133.92 0.18 0.88 par:pas; +annoncés annoncer ver m p 55.67 133.92 0.28 0.41 par:pas; +annonça annoncer ver 55.67 133.92 0.56 23.38 ind:pas:3s; +annonçai annoncer ver 55.67 133.92 0.02 1.76 ind:pas:1s; +annonçaient annoncer ver 55.67 133.92 0.28 5.14 ind:imp:3p; +annonçais annoncer ver 55.67 133.92 0.13 0.88 ind:imp:1s;ind:imp:2s; +annonçait annoncer ver 55.67 133.92 1.03 21.96 ind:imp:3s; +annonçant annoncer ver 55.67 133.92 1.22 9.05 par:pre; +annonçons annoncer ver 55.67 133.92 0.26 0 imp:pre:1p;ind:pre:1p; +annonçât annoncer ver 55.67 133.92 0 0.74 sub:imp:3s; +annotais annoter ver 0.12 0.81 0 0.14 ind:imp:1s; +annotait annoter ver 0.12 0.81 0 0.14 ind:imp:3s; +annotant annoter ver 0.12 0.81 0 0.07 par:pre; +annotation annotation nom f s 0.25 0.88 0.19 0.14 +annotations annotation nom f p 0.25 0.88 0.05 0.74 +annote annoter ver 0.12 0.81 0.02 0.07 ind:pre:1s;ind:pre:3s; +annoter annoter ver 0.12 0.81 0.03 0 inf; +annoté annoter ver m s 0.12 0.81 0.02 0.2 par:pas; +annotée annoter ver f s 0.12 0.81 0.01 0.14 par:pas; +annotés annoter ver m p 0.12 0.81 0.04 0.07 par:pas; +annuaire annuaire nom m s 4.56 3.78 4.43 3.04 +annuaires annuaire nom m p 4.56 3.78 0.14 0.74 +annuel annuel adj m s 5.78 4.12 3.28 1.35 +annuelle annuel adj f s 5.78 4.12 1.87 1.82 +annuellement annuellement adv 0.15 0.14 0.15 0.14 +annuelles annuel adj f p 5.78 4.12 0.22 0.47 +annuels annuel adj m p 5.78 4.12 0.41 0.47 +annula annuler ver 42.11 5.47 0 0.2 ind:pas:3s; +annulai annuler ver 42.11 5.47 0 0.07 ind:pas:1s; +annulaient annuler ver 42.11 5.47 0.12 0.27 ind:imp:3p; +annulaire annulaire nom m s 0.55 2.64 0.55 2.64 +annulais annuler ver 42.11 5.47 0.36 0.07 ind:imp:1s;ind:imp:2s; +annulait annuler ver 42.11 5.47 0.09 0.68 ind:imp:3s; +annulant annuler ver 42.11 5.47 0.3 0.34 par:pre; +annulation annulation nom f s 2.46 0.88 2.28 0.74 +annulations annulation nom f p 2.46 0.88 0.18 0.14 +annule annuler ver 42.11 5.47 7.34 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +annulent annuler ver 42.11 5.47 0.52 0.27 ind:pre:3p; +annuler annuler ver 42.11 5.47 14.08 1.15 inf; +annulera annuler ver 42.11 5.47 0.26 0 ind:fut:3s; +annulerai annuler ver 42.11 5.47 0.17 0 ind:fut:1s; +annuleraient annuler ver 42.11 5.47 0.02 0.07 cnd:pre:3p; +annulerais annuler ver 42.11 5.47 0.08 0 cnd:pre:1s; +annulerait annuler ver 42.11 5.47 0.17 0.2 cnd:pre:3s; +annulerez annuler ver 42.11 5.47 0.11 0 ind:fut:2p; +annulerons annuler ver 42.11 5.47 0.04 0 ind:fut:1p; +annuleront annuler ver 42.11 5.47 0.08 0 ind:fut:3p; +annules annuler ver 42.11 5.47 0.39 0 ind:pre:2s; +annulez annuler ver 42.11 5.47 3.02 0.14 imp:pre:2p;ind:pre:2p; +annuliez annuler ver 42.11 5.47 0.07 0 ind:imp:2p; +annulons annuler ver 42.11 5.47 0.12 0 imp:pre:1p;ind:pre:1p; +annulèrent annuler ver 42.11 5.47 0.01 0.14 ind:pas:3p; +annulé annuler ver m s 42.11 5.47 10.94 0.41 par:pas; +annulée annuler ver f s 42.11 5.47 3.08 0.27 par:pas; +annulées annuler ver f p 42.11 5.47 0.27 0.14 par:pas; +annulés annuler ver m p 42.11 5.47 0.46 0.2 par:pas; +année année nom f s 316.25 375.54 129.64 128.99 +année_lumière année_lumière nom f s 1.16 1.01 0.03 0.07 +années année nom f p 316.25 375.54 186.61 246.55 +année_homme année_homme nom f p 0.01 0 0.01 0 +année_lumière année_lumière nom f p 1.16 1.01 1.13 0.95 +anobli anoblir ver m s 0.47 0.68 0.08 0.2 par:pas; +anoblie anoblir ver f s 0.47 0.68 0.27 0 par:pas; +anoblies anobli adj f p 0.02 0.07 0 0.07 +anoblir anoblir ver 0.47 0.68 0.01 0.2 inf; +anoblissait anoblir ver 0.47 0.68 0 0.07 ind:imp:3s; +anoblissant anoblir ver 0.47 0.68 0 0.07 par:pre; +anoblissante anoblissant adj f s 0 0.07 0 0.07 +anoblissement anoblissement nom m s 0 0.14 0 0.14 +anoblit anoblir ver 0.47 0.68 0.11 0.14 ind:pre:3s;ind:pas:3s; +anode anode nom f s 0.02 0 0.02 0 +anodin anodin adj m s 1.03 8.65 0.38 2.97 +anodine anodin adj f s 1.03 8.65 0.2 2.03 +anodines anodin adj f p 1.03 8.65 0.2 2.09 +anodins anodin adj m p 1.03 8.65 0.25 1.55 +anodique anodique adj f s 0.2 0 0.2 0 +anodisé anodiser ver m s 0.21 0.07 0.21 0.07 par:pas; +anomalie anomalie nom f s 3.96 2.16 2.75 1.55 +anomalies anomalie nom f p 3.96 2.16 1.21 0.61 +anomoure anomoure nom m s 0 0.07 0 0.07 +anonymat anonymat nom m s 1.41 3.04 1.41 3.04 +anonyme anonyme adj s 11.65 14.8 7.74 9.26 +anonymement anonymement adv 0.42 0.14 0.42 0.14 +anonymes anonyme adj p 11.65 14.8 3.92 5.54 +anonymographe anonymographe nom m s 0 0.14 0 0.14 +anophèle anophèle nom m s 0.01 0 0.01 0 +anorak anorak nom m s 0.49 0.88 0.25 0.81 +anoraks anorak nom m p 0.49 0.88 0.25 0.07 +anorexie anorexie nom f s 0.88 0.81 0.87 0.74 +anorexies anorexie nom f p 0.88 0.81 0.01 0.07 +anorexique anorexique adj s 0.38 0.41 0.31 0.34 +anorexiques anorexique nom p 0.25 0.14 0.16 0 +anormal anormal adj m s 7.4 7.91 4.8 4.46 +anormale anormal adj f s 7.4 7.91 1.23 2.57 +anormalement anormalement adv 1.08 1.15 1.08 1.15 +anormales anormal adj f p 7.4 7.91 0.61 0.27 +anormalité anormalité nom f s 0.2 0.2 0.2 0.2 +anormaux anormal adj m p 7.4 7.91 0.76 0.61 +anosmie anosmie nom f s 0.07 0 0.07 0 +anosmique anosmique adj m s 0.01 0.07 0.01 0.07 +anoxie anoxie nom f s 0.09 0 0.09 0 +ans an nom m p 866.58 685.81 718.17 609.05 +anse anse nom f s 0.47 6.08 0.33 4.86 +anses anse nom f p 0.47 6.08 0.14 1.22 +ansée ansé adj f s 0.02 0.07 0.01 0 +ansées ansé adj f p 0.02 0.07 0.01 0.07 +antagonique antagonique adj s 0.03 0 0.03 0 +antagonisme antagonisme nom m s 0.17 1.55 0.16 1.15 +antagonismes antagonisme nom m p 0.17 1.55 0.02 0.41 +antagoniste antagoniste nom s 0.14 0.68 0.12 0.27 +antagonistes antagoniste adj p 0.1 0.88 0.03 0.68 +antalgique antalgique nom m s 0.5 0 0.15 0 +antalgiques antalgique nom m p 0.5 0 0.35 0 +antan antan nom m s 1.53 4.86 1.53 4.86 +antarctique antarctique adj s 0.06 0.07 0.06 0 +antarctiques antarctique adj p 0.06 0.07 0 0.07 +ante ante nom f s 1.12 0.27 1.12 0.27 +antenne antenne nom f s 11.59 8.45 10.08 3.65 +antennes antenne nom f p 11.59 8.45 1.5 4.8 +anthologie anthologie nom f s 0.48 0.81 0.48 0.68 +anthologies anthologie nom f p 0.48 0.81 0 0.14 +anthonome anthonome nom m s 0.01 0 0.01 0 +anthracine anthracine nom m s 0.04 0 0.04 0 +anthracite anthracite adj 0.07 1.15 0.07 1.15 +anthracites anthracite nom m p 0.01 1.82 0 0.07 +anthracose anthracose nom f s 0.01 0 0.01 0 +anthracène anthracène nom m s 0.01 0 0.01 0 +anthraquinone anthraquinone nom f s 0.01 0 0.01 0 +anthrax anthrax nom m 1.26 0.47 1.26 0.47 +anthropiques anthropique adj p 0.02 0 0.02 0 +anthropologie anthropologie nom f s 0.78 0.41 0.78 0.41 +anthropologique anthropologique adj s 0.27 0.2 0.16 0.07 +anthropologiquement anthropologiquement adv 0.01 0 0.01 0 +anthropologiques anthropologique adj f p 0.27 0.2 0.11 0.14 +anthropologiste anthropologiste nom s 0.11 0 0.11 0 +anthropologue anthropologue nom s 1.46 0.2 1.18 0.07 +anthropologues anthropologue nom p 1.46 0.2 0.28 0.14 +anthropomorphe anthropomorphe adj f s 0.01 0.07 0.01 0.07 +anthropomorphique anthropomorphique adj f s 0.03 0.07 0.03 0.07 +anthropomorphiser anthropomorphiser ver 0.01 0 0.01 0 inf; +anthropomorphisme anthropomorphisme nom m s 0.01 0.34 0.01 0.34 +anthropométrie anthropométrie nom f s 0 0.27 0 0.27 +anthropométrique anthropométrique adj s 0 0.41 0 0.34 +anthropométriques anthropométrique adj f p 0 0.41 0 0.07 +anthropophage anthropophage adj m s 0.14 0 0.03 0 +anthropophages anthropophage adj p 0.14 0 0.11 0 +anthropophagie anthropophagie nom f s 0.11 0.61 0.11 0.61 +anthropophagiques anthropophagique adj f p 0 0.07 0 0.07 +anthropopithèque anthropopithèque nom m s 0 0.14 0 0.07 +anthropopithèques anthropopithèque nom m p 0 0.14 0 0.07 +anthropoïde anthropoïde nom s 0.03 0.2 0.02 0.07 +anthropoïdes anthropoïde nom p 0.03 0.2 0.01 0.14 +anthume anthume adj s 0 0.2 0 0.2 +anti anti adv_sup 0.09 0.81 0.09 0.81 +anti_acné anti_acné nom f s 0.02 0 0.02 0 +anti_agression anti_agression nom f s 0.03 0.07 0.03 0.07 +anti_allergie anti_allergie nom f s 0.01 0 0.01 0 +anti_anatomique anti_anatomique adj s 0.01 0 0.01 0 +anti_apartheid anti_apartheid nom m s 0 0.07 0 0.07 +anti_aphrodisiaque anti_aphrodisiaque adj f s 0 0.07 0 0.07 +anti_asthmatique anti_asthmatique nom s 0.01 0 0.01 0 +anti_atomique anti_atomique adj m s 0.06 0.07 0.05 0 +anti_atomique anti_atomique adj m p 0.06 0.07 0.01 0.07 +anti_avortement anti_avortement nom m s 0.12 0 0.12 0 +anti_aérien anti_aérien adj m s 0.41 0.27 0.2 0.07 +anti_aérien anti_aérien adj f s 0.41 0.27 0.17 0.07 +anti_aérien anti_aérien adj m p 0.41 0.27 0.04 0.14 +anti_beauf anti_beauf nom m s 0.01 0 0.01 0 +anti_bison anti_bison nom m s 0 0.07 0 0.07 +anti_blindage anti_blindage nom m s 0.04 0 0.04 0 +anti_blouson anti_blouson nom m s 0 0.07 0 0.07 +anti_bombe anti_bombe nom f s 0.1 0.07 0.09 0 +anti_bombe anti_bombe nom f p 0.1 0.07 0.01 0.07 +anti_boson anti_boson nom m p 0.04 0 0.04 0 +anti_braquage anti_braquage nom m s 0.01 0 0.01 0 +anti_brouillard anti_brouillard adj s 0.12 0 0.12 0 +anti_bruit anti_bruit nom m s 0.16 0 0.16 0 +anti_calcique anti_calcique adj f p 0.01 0 0.01 0 +anti_cancer anti_cancer nom m s 0.04 0 0.04 0 +anti_capitaliste anti_capitaliste adj m s 0.03 0 0.03 0 +anti_castriste anti_castriste adj s 0.02 0 0.02 0 +anti_castriste anti_castriste nom p 0.01 0 0.01 0 +anti_cellulite anti_cellulite nom f s 0.01 0 0.01 0 +anti_chambre anti_chambre nom f s 0 0.14 0 0.07 +anti_chambre anti_chambre nom f p 0 0.14 0 0.07 +anti_char anti_char nom m s 0.12 0.2 0 0.14 +anti_char anti_char nom m p 0.12 0.2 0.12 0.07 +anti_chien anti_chien nom m p 0 0.07 0 0.07 +anti_cité anti_cité nom f s 0 0.07 0 0.07 +anti_civilisation anti_civilisation nom f s 0 0.07 0 0.07 +anti_club anti_club nom m s 0.02 0 0.02 0 +anti_coco anti_coco nom p 0.01 0 0.01 0 +anti_colère anti_colère nom f s 0.01 0 0.01 0 +anti_communisme anti_communisme nom m s 0 0.14 0 0.14 +anti_communiste anti_communiste adj s 0.03 0.07 0.03 0.07 +anti_conformisme anti_conformisme nom m s 0.01 0.14 0.01 0.14 +anti_conformiste anti_conformiste nom s 0.01 0 0.01 0 +anti_conglutinatif anti_conglutinatif adj m s 0 0.07 0 0.07 +anti_corps anti_corps nom m 0.08 0 0.08 0 +anti_corruption anti_corruption nom f s 0.04 0 0.04 0 +anti_crash anti_crash nom m s 0.01 0 0.01 0 +anti_crime anti_crime nom m s 0.03 0 0.03 0 +anti_criminalité anti_criminalité nom f s 0.01 0 0.01 0 +anti_célibataire anti_célibataire adj f p 0.01 0 0.01 0 +anti_dauphin anti_dauphin nom m p 0.01 0 0.01 0 +anti_desperado anti_desperado nom m s 0.01 0 0.01 0 +anti_dieu anti_dieu nom m s 0.03 0 0.03 0 +anti_discrimination anti_discrimination nom f s 0.02 0 0.02 0 +anti_dopage anti_dopage nom m s 0.06 0 0.06 0 +anti_douleur anti_douleur nom f s 0.46 0 0.3 0 +anti_douleur anti_douleur nom f p 0.46 0 0.15 0 +anti_drague anti_drague nom f s 0.01 0 0.01 0 +anti_dramatique anti_dramatique adj s 0 0.07 0 0.07 +anti_drogue anti_drogue nom f s 0.42 0 0.35 0 +anti_drogue anti_drogue nom f p 0.42 0 0.07 0 +anti_débauche anti_débauche nom f s 0 0.07 0 0.07 +anti_démocratique anti_démocratique adj f s 0.14 0.07 0.14 0.07 +anti_démocratique anti_démocratique adj f p 0.14 0.07 0.01 0 +anti_démon anti_démon nom m s 0.04 0 0.04 0 +anti_espionne anti_espionne nom f p 0.01 0 0.01 0 +anti_establishment anti_establishment nom m s 0.02 0 0.02 0 +anti_existence anti_existence nom f s 0 0.07 0 0.07 +anti_explosion anti_explosion nom f s 0.04 0 0.04 0 +anti_fantôme anti_fantôme nom m p 0.02 0 0.02 0 +anti_fasciste anti_fasciste adj f s 0.02 0 0.02 0 +anti_femme anti_femme nom f s 0.01 0 0.01 0 +anti_flingage anti_flingage nom m s 0 0.07 0 0.07 +anti_flip anti_flip nom m s 0 0.07 0 0.07 +anti_frigo anti_frigo nom m s 0 0.07 0 0.07 +anti_fusionnel anti_fusionnel adj m s 0.01 0 0.01 0 +anti_fusée anti_fusée nom f p 0 0.2 0 0.2 +anti_féministe anti_féministe nom s 0.03 0.07 0.03 0.07 +anti_g anti_g adj f p 0.01 0 0.01 0 +anti_gang anti_gang nom m s 0.33 0 0.33 0 +anti_gel anti_gel nom m s 0.05 0 0.05 0 +anti_gerce anti_gerce nom f s 0.01 0 0.01 0 +anti_gouvernement anti_gouvernement nom m s 0.1 0 0.1 0 +anti_graffiti anti_graffiti nom m 0.01 0 0.01 0 +anti_gravité anti_gravité nom f s 0.06 0 0.06 0 +anti_grimace anti_grimace nom f p 0.01 0 0.01 0 +anti_gros anti_gros adj m 0.01 0 0.01 0 +anti_hanneton anti_hanneton nom m p 0 0.07 0 0.07 +anti_hypertenseur anti_hypertenseur adj m s 0.01 0 0.01 0 +anti_immigration anti_immigration nom f s 0.02 0 0.02 0 +anti_immigré anti_immigré adj p 0 0.07 0 0.07 +anti_impérialiste anti_impérialiste adj s 0.11 0.07 0.11 0.07 +anti_incendie anti_incendie nom m s 0.16 0 0.16 0 +anti_inertie anti_inertie nom f s 0.01 0 0.01 0 +anti_infectieux anti_infectieux adj m p 0.01 0 0.01 0 +anti_inflammatoire anti_inflammatoire nom m s 0.07 0.07 0.07 0.07 +anti_insecte anti_insecte nom m s 0.03 0.07 0.01 0 +anti_insecte anti_insecte nom m p 0.03 0.07 0.02 0.07 +anti_instinct anti_instinct nom m s 0 0.07 0 0.07 +anti_insurrectionnel anti_insurrectionnel adj m s 0.01 0 0.01 0 +anti_intimité anti_intimité nom f s 0.04 0 0.04 0 +anti_japon anti_japon nom m s 0 0.07 0 0.07 +anti_jeunes anti_jeunes adj m s 0 0.07 0 0.07 +anti_mafia anti_mafia nom f s 0.01 0.07 0.01 0.07 +anti_maison anti_maison nom f s 0 0.14 0 0.14 +anti_manipulation anti_manipulation nom f s 0.01 0 0.01 0 +anti_manoir anti_manoir nom m s 0 0.07 0 0.07 +anti_mariage anti_mariage nom m s 0.03 0 0.03 0 +anti_matière anti_matière nom f s 0.09 0 0.08 0 +anti_matière anti_matière nom f p 0.09 0 0.01 0 +anti_mec anti_mec nom m p 0.02 0 0.02 0 +anti_militariste anti_militariste nom s 0.01 0 0.01 0 +anti_missile anti_missile nom m p 0.03 0 0.03 0 +anti_mite anti_mite nom f s 0.1 0.14 0.03 0.07 +anti_mite anti_mite nom f p 0.1 0.14 0.08 0.07 +anti_monde anti_monde nom m s 0 0.07 0 0.07 +anti_monstre anti_monstre adj f p 0.01 0 0.01 0 +anti_moustique anti_moustique nom m s 0.58 0.07 0.41 0 +anti_moustique anti_moustique nom m p 0.58 0.07 0.17 0.07 +anti_médicament anti_médicament nom m p 0.01 0 0.01 0 +anti_métaphysique anti_métaphysique adj m s 0 0.07 0 0.07 +anti_météorite anti_météorite nom f p 0.2 0 0.2 0 +anti_nausée anti_nausée nom f s 0.01 0 0.01 0 +anti_navire anti_navire nom m s 0.01 0 0.01 0 +anti_nucléaire anti_nucléaire adj m s 0.06 0 0.05 0 +anti_nucléaire anti_nucléaire adj p 0.06 0 0.01 0 +anti_nucléaire anti_nucléaire nom m p 0.01 0 0.01 0 +anti_odeur anti_odeur nom f s 0.02 0.14 0.01 0.07 +anti_odeur anti_odeur nom f p 0.02 0.14 0.01 0.07 +anti_odorant anti_odorant adj m p 0 0.07 0 0.07 +anti_origine anti_origine nom f s 0 0.07 0 0.07 +anti_panache anti_panache nom m s 0 0.07 0 0.07 +anti_particule anti_particule nom f s 0.01 0 0.01 0 +anti_pasteur anti_pasteur nom m s 0 0.07 0 0.07 +anti_patriote anti_patriote nom s 0.01 0 0.01 0 +anti_patriotique anti_patriotique adj f s 0.06 0 0.06 0 +anti_pelliculaire anti_pelliculaire adj m s 0.13 0.07 0.13 0.07 +anti_piratage anti_piratage nom m s 0.01 0 0.01 0 +anti_pirate anti_pirate adj s 0.01 0 0.01 0 +anti_poison anti_poison nom m s 0.04 0.14 0.04 0.14 +anti_poisse anti_poisse nom f s 0.05 0.07 0.05 0.07 +anti_pollution anti_pollution nom f s 0.04 0 0.04 0 +anti_poux anti_poux nom m p 0.04 0 0.04 0 +anti_progressiste anti_progressiste nom p 0 0.07 0 0.07 +anti_psychotique anti_psychotique adj s 0.01 0 0.01 0 +anti_pub anti_pub nom s 0 0.07 0 0.07 +anti_puce anti_puce nom f p 0.14 0 0.14 0 +anti_pédérastique anti_pédérastique adj p 0 0.07 0 0.07 +anti_racket anti_racket nom m s 0.06 0 0.06 0 +anti_radiation anti_radiation nom f p 0.08 0 0.08 0 +anti_rapt anti_rapt nom m s 0 0.07 0 0.07 +anti_reflet anti_reflet nom m p 0 0.07 0 0.07 +anti_rejet anti_rejet nom m s 0.2 0 0.2 0 +anti_religion anti_religion nom f s 0.01 0 0.01 0 +anti_rhume anti_rhume nom m s 0.02 0 0.02 0 +anti_ride anti_ride nom f p 0.06 0 0.06 0 +anti_romain anti_romain nom m s 0 0.07 0 0.07 +anti_romantique anti_romantique adj s 0.01 0 0.01 0 +anti_rouille anti_rouille nom f s 0.01 0 0.01 0 +anti_russe anti_russe adj m s 0.11 0 0.11 0 +anti_sida anti_sida nom m s 0.02 0 0.02 0 +anti_socialiste anti_socialiste adj p 0.01 0 0.01 0 +anti_sociaux anti_sociaux adj m p 0.04 0 0.04 0 +anti_société anti_société nom f s 0 0.07 0 0.07 +anti_somnolence anti_somnolence nom f s 0.01 0 0.01 0 +anti_souffle anti_souffle nom m s 0.03 0 0.03 0 +anti_sous_marin anti_sous_marin adj m s 0.02 0 0.02 0 +anti_soviétique anti_soviétique adj f s 0 0.07 0 0.07 +anti_stress anti_stress nom m 0.35 0 0.35 0 +anti_syndical anti_syndical adj m s 0.01 0 0.01 0 +anti_sèche anti_sèche adj f s 0.01 0.07 0.01 0 +anti_sèche anti_sèche adj f p 0.01 0.07 0 0.07 +anti_sémite anti_sémite adj s 0.04 0 0.02 0 +anti_sémite anti_sémite adj f p 0.04 0 0.02 0 +anti_sémitisme anti_sémitisme nom m s 0.08 0 0.08 0 +anti_tabac anti_tabac adj s 0.17 0 0.17 0 +anti_tache anti_tache nom f p 0.15 0 0.15 0 +anti_tank anti_tank nom m s 0.03 0 0.03 0 +anti_tapisserie anti_tapisserie nom f s 0 0.07 0 0.07 +anti_temps anti_temps nom m 0 0.27 0 0.27 +anti_tension anti_tension nom f s 0.01 0 0.01 0 +anti_terrorisme anti_terrorisme nom m s 0.53 0 0.53 0 +anti_terroriste anti_terroriste adj s 0.26 0 0.26 0 +anti_tornade anti_tornade nom f p 0.01 0 0.01 0 +anti_toux anti_toux nom f 0.01 0 0.01 0 +anti_truie anti_truie nom f s 0.01 0 0.01 0 +anti_trust anti_trust nom m p 0.02 0 0.02 0 +anti_venin anti_venin nom m s 0.18 0 0.18 0 +anti_vieillissement anti_vieillissement nom m s 0.04 0 0.04 0 +anti_viol anti_viol nom m s 0.09 0 0.09 0 +anti_violence anti_violence nom f s 0.01 0 0.01 0 +anti_viral anti_viral adj m s 0.13 0 0.13 0 +anti_virus anti_virus nom m 0.09 0 0.09 0 +anti_vol anti_vol nom m s 0.36 0.27 0.35 0.27 +anti_vol anti_vol nom m p 0.36 0.27 0.01 0 +anti_âge anti_âge adj 0.04 0.74 0.04 0.74 +anti_émeute anti_émeute adj s 0.15 0 0.1 0 +anti_émeute anti_émeute adj p 0.15 0 0.05 0 +anti_émotionnelle anti_émotionnelle adj f s 0 0.07 0 0.07 +anti_évasion anti_évasion nom f s 0.01 0 0.01 0 +antiacide antiacide adj s 0.12 0 0.07 0 +antiacides antiacide adj m p 0.12 0 0.04 0 +antialcoolique antialcoolique adj f s 0.02 0 0.02 0 +antiallemands antiallemand adj m p 0 0.07 0 0.07 +antiaméricain antiaméricain adj m s 0.06 0.14 0.05 0 +antiaméricaine antiaméricain adj f s 0.06 0.14 0 0.14 +antiaméricaines antiaméricain adj f p 0.06 0.14 0.01 0 +antiaméricanisme antiaméricanisme nom m s 0.02 0.07 0.02 0.07 +antiatomique antiatomique adj m s 0.31 0 0.31 0 +antiaérien antiaérien adj m s 0.75 1.35 0.25 0.2 +antiaérienne antiaérien adj f s 0.75 1.35 0.29 0.54 +antiaériennes antiaérien adj f p 0.75 1.35 0.17 0.27 +antiaériens antiaérien adj m p 0.75 1.35 0.05 0.34 +antibactérien antibactérien adj m s 0.03 0 0.03 0 +antibiotique antibiotique nom m s 5.22 1.55 1.04 0.14 +antibiotiques antibiotique nom m p 5.22 1.55 4.18 1.42 +antiblocage antiblocage adj m s 0.03 0.07 0.03 0.07 +antibois antibois nom m 0.14 0 0.14 0 +antibolcheviques antibolchevique adj m p 0 0.07 0 0.07 +antibolchevisme antibolchevisme nom m s 0 0.14 0 0.14 +antibourgeois antibourgeois adj m 0 0.07 0 0.07 +antibrouillard antibrouillard adj m p 0 0.07 0 0.07 +antibruit antibruit adj f s 0.01 0 0.01 0 +anticalcaire anticalcaire adj m s 0 0.07 0 0.07 +anticapitaliste anticapitaliste adj s 0.1 0.14 0.1 0.14 +anticastriste anticastriste adj s 0.03 0.07 0.01 0.07 +anticastristes anticastriste adj p 0.03 0.07 0.02 0 +anticatalyseurs anticatalyseur nom m p 0 0.07 0 0.07 +anticatholique anticatholique adj f s 0 0.07 0 0.07 +antichambre antichambre nom f s 0.89 8.58 0.89 7.84 +antichambres antichambre nom f p 0.89 8.58 0 0.74 +antichar antichar adj s 0.33 1.89 0.07 0.2 +antichars antichar adj p 0.33 1.89 0.27 1.69 +antichoc antichoc adj f p 0.04 0 0.04 0 +anticholinergique anticholinergique adj s 0.01 0 0.01 0 +antichristianisme antichristianisme nom m s 0 0.07 0 0.07 +antichrétien antichrétien adj m s 0 0.14 0 0.07 +antichrétienne antichrétien adj f s 0 0.14 0 0.07 +anticipa anticiper ver 4.14 3.31 0.01 0.07 ind:pas:3s; +anticipais anticiper ver 4.14 3.31 0.04 0.14 ind:imp:1s; +anticipait anticiper ver 4.14 3.31 0.2 0.34 ind:imp:3s; +anticipant anticiper ver 4.14 3.31 0.06 0.47 par:pre; +anticipateur anticipateur adj m s 0 0.2 0 0.14 +anticipation anticipation nom f s 0.63 2.23 0.63 2.16 +anticipations anticipation nom f p 0.63 2.23 0 0.07 +anticipatoire anticipatoire adj f s 0 0.07 0 0.07 +anticipatrice anticipateur adj f s 0 0.2 0 0.07 +anticipe anticiper ver 4.14 3.31 1.24 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +anticipent anticiper ver 4.14 3.31 0.03 0.07 ind:pre:3p; +anticiper anticiper ver 4.14 3.31 1.29 0.27 inf; +anticipera anticiper ver 4.14 3.31 0.03 0.07 ind:fut:3s; +anticiperait anticiper ver 4.14 3.31 0.01 0.07 cnd:pre:3s; +anticipez anticiper ver 4.14 3.31 0.17 0.07 imp:pre:2p;ind:pre:2p; +anticipons anticiper ver 4.14 3.31 0.16 0.2 imp:pre:1p;ind:pre:1p; +anticipé anticiper ver m s 4.14 3.31 0.56 0.14 par:pas; +anticipée anticipé adj f s 1.64 1.08 1.4 0.54 +anticipées anticiper ver f p 4.14 3.31 0.14 0 par:pas; +anticipés anticipé adj m p 1.64 1.08 0.03 0 +anticlérical anticlérical adj m s 0.16 1.15 0.16 0.41 +anticléricale anticlérical adj f s 0.16 1.15 0 0.47 +anticléricales anticlérical adj f p 0.16 1.15 0 0.07 +anticléricalisme anticléricalisme nom m s 0 0.34 0 0.34 +anticléricaux anticlérical adj m p 0.16 1.15 0 0.2 +anticoagulant anticoagulant nom m s 0.21 0 0.14 0 +anticoagulants anticoagulant nom m p 0.21 0 0.06 0 +anticolonialisme anticolonialisme nom m s 0 0.07 0 0.07 +anticommunisme anticommunisme nom m s 0.1 0.88 0.1 0.88 +anticommuniste anticommuniste adj s 0.19 1.82 0.17 1.22 +anticommunistes anticommuniste adj p 0.19 1.82 0.01 0.61 +anticonceptionnelle anticonceptionnel adj f s 0.2 0.14 0.2 0 +anticonceptionnelles anticonceptionnel adj f p 0.2 0.14 0 0.07 +anticonceptionnels anticonceptionnel adj m p 0.2 0.14 0 0.07 +anticonformisme anticonformisme nom m s 0 0.07 0 0.07 +anticonformiste anticonformiste adj m s 0.05 0 0.05 0 +anticonstitutionnel anticonstitutionnel adj m s 0.19 0 0.14 0 +anticonstitutionnelle anticonstitutionnel adj f s 0.19 0 0.05 0 +anticonstitutionnellement anticonstitutionnellement adv 0.01 0 0.01 0 +anticorps anticorps nom m 1.35 0.41 1.35 0.41 +anticyclique anticyclique adj f s 0.01 0 0.01 0 +anticyclone anticyclone nom m s 0.03 0.07 0.03 0.07 +anticycloniques anticyclonique adj m p 0 0.07 0 0.07 +antidatait antidater ver 0.01 0.27 0 0.07 ind:imp:3s; +antidater antidater ver 0.01 0.27 0 0.07 inf; +antidaté antidater ver m s 0.01 0.27 0.01 0.07 par:pas; +antidatée antidater ver f s 0.01 0.27 0 0.07 par:pas; +antidictatoriaux antidictatorial adj m p 0 0.07 0 0.07 +antidopage antidopage adj m s 0.01 0 0.01 0 +antidote antidote nom m s 4.48 1.35 4.38 1.08 +antidotes antidote nom m p 4.48 1.35 0.09 0.27 +antidouleur antidouleur adj s 0.34 0 0.34 0 +antidreyfusard antidreyfusard nom m s 0.14 0.07 0.14 0 +antidreyfusarde antidreyfusard adj f s 0.14 0 0.14 0 +antidreyfusards antidreyfusard nom m p 0.14 0.07 0 0.07 +antidreyfusisme antidreyfusisme nom m s 0 0.07 0 0.07 +antidrogue antidrogue adj s 0.08 0.07 0.08 0.07 +antidémarrage antidémarrage nom m s 0.01 0 0.01 0 +antidémocratique antidémocratique adj s 0.02 0.07 0.02 0.07 +antidépresseur antidépresseur nom m s 0.98 0.27 0.26 0 +antidépresseurs antidépresseur nom m p 0.98 0.27 0.72 0.27 +antidérapant antidérapant adj m s 0.07 0.14 0.03 0 +antidérapante antidérapant adj f s 0.07 0.14 0.01 0 +antidérapantes antidérapant adj f p 0.07 0.14 0.01 0.14 +antidérapants antidérapant adj m p 0.07 0.14 0.02 0 +antienne antienne nom f s 0 1.62 0 1.49 +antiennes antienne nom f p 0 1.62 0 0.14 +antiesclavagiste antiesclavagiste nom s 0.01 0 0.01 0 +antifading antifading nom m s 0 0.07 0 0.07 +antifascisme antifascisme nom m s 0 0.07 0 0.07 +antifasciste antifasciste nom s 0.26 0.27 0.1 0.07 +antifascistes antifasciste nom p 0.26 0.27 0.16 0.2 +antifongique antifongique nom m s 0.03 0 0.03 0 +antifrançaise antifrançais adj f s 0 0.34 0 0.2 +antifrançaises antifrançais adj f p 0 0.34 0 0.14 +antifumée antifumée adj m p 0.01 0 0.01 0 +antiféminisme antiféminisme nom m s 0 0.07 0 0.07 +antigang antigang adj f s 0.16 0.07 0.16 0.07 +antigangs antigang nom p 0.12 0.14 0.01 0 +antigaullistes antigaulliste adj f p 0 0.07 0 0.07 +antigel antigel nom m s 0.2 0 0.2 0 +antigermanisme antigermanisme nom m s 0 0.07 0 0.07 +antigravitation antigravitation nom f s 0.01 0 0.01 0 +antigravitationnel antigravitationnel adj m s 0.04 0 0.04 0 +antigravité antigravité nom f s 0.01 0 0.01 0 +antigrippe antigrippe nom f s 0.16 0 0.16 0 +antigène antigène nom m s 0.28 0.34 0.11 0.27 +antigènes antigène nom m p 0.28 0.34 0.17 0.07 +antihistaminique antihistaminique nom m s 0.25 0 0.1 0 +antihistaminiques antihistaminique nom m p 0.25 0 0.15 0 +antihygiénique antihygiénique adj f s 0.01 0.07 0.01 0.07 +antihémorragiques antihémorragique adj p 0 0.07 0 0.07 +antihéros antihéros nom m 0.04 0 0.04 0 +antillais antillais nom m 0.14 4.12 0.12 3.72 +antillaise antillais nom f s 0.14 4.12 0.01 0.2 +antillaises antillais nom f p 0.14 4.12 0 0.2 +antilogique antilogique adj s 0.01 0 0.01 0 +antilope antilope nom f s 0.88 2.16 0.73 1.28 +antilopes antilope nom f p 0.88 2.16 0.16 0.88 +antimarxiste antimarxiste adj f s 0 0.07 0 0.07 +antimatière antimatière nom f s 0.13 0.14 0.13 0.14 +antimaçonniques antimaçonnique adj p 0 0.07 0 0.07 +antimicrobien antimicrobien adj m s 0.01 0 0.01 0 +antimigraineux antimigraineux adj m 0.02 0 0.02 0 +antimilitarisme antimilitarisme nom m s 0 0.34 0 0.34 +antimilitariste antimilitariste adj m s 0.12 0.81 0.11 0.54 +antimilitaristes antimilitariste adj p 0.12 0.81 0.01 0.27 +antimissile antimissile adj s 0.04 0 0.04 0 +antimissiles antimissile nom m p 0.06 0 0.06 0 +antimite antimite nom m s 0.05 0.61 0.04 0.27 +antimites antimite nom m p 0.05 0.61 0.01 0.34 +antimitotiques antimitotique nom m p 0.01 0 0.01 0 +antimoine antimoine nom m s 0.01 0.27 0.01 0.27 +antimonde antimonde adj s 0 0.07 0 0.07 +antinationale antinational adj f s 0 0.14 0 0.07 +antinationales antinational adj f p 0 0.14 0 0.07 +antinationaliste antinationaliste adj s 0 0.14 0 0.14 +antinaturel antinaturel adj m s 0 0.14 0 0.07 +antinaturelle antinaturel adj f s 0 0.14 0 0.07 +antinazie antinazi adj f s 0.1 0.07 0.1 0 +antinazis antinazi nom m p 0.01 0 0.01 0 +antinomie antinomie nom f s 0.01 0.34 0 0.27 +antinomies antinomie nom f p 0.01 0.34 0.01 0.07 +antinomique antinomique adj s 0.03 0.2 0.03 0.14 +antinomiques antinomique adj m p 0.03 0.2 0 0.07 +antinucléaire antinucléaire adj s 0.11 0.14 0.03 0.14 +antinucléaires antinucléaire adj f p 0.11 0.14 0.07 0 +antioxydant antioxydant nom m s 0.05 0 0.02 0 +antioxydants antioxydant nom m p 0.05 0 0.03 0 +antipape antipape nom m s 0.11 0.14 0.11 0.07 +antipapes antipape nom m p 0.11 0.14 0 0.07 +antiparasitage antiparasitage adj f s 0 0.07 0 0.07 +antiparasite antiparasite adj f s 0.01 0.07 0.01 0.07 +antiparasites antiparasite nom m p 0.02 0.14 0.01 0.14 +antipathie antipathie nom f s 0.71 1.82 0.57 1.69 +antipathies antipathie nom f p 0.71 1.82 0.14 0.14 +antipathique antipathique adj s 0.97 2.03 0.96 1.55 +antipathiques antipathique adj p 0.97 2.03 0.01 0.47 +antipatriote antipatriote adj m s 0.01 0 0.01 0 +antipatriotiques antipatriotique adj f p 0.01 0 0.01 0 +antipelliculaire antipelliculaire adj m s 0.01 0 0.01 0 +antipersonnel antipersonnel adj 0.41 0 0.37 0 +antipersonnelle antipersonnel adj f s 0.41 0 0.03 0 +antipersonnelles antipersonnel adj f p 0.41 0 0.01 0 +antiphonaires antiphonaire nom m p 0 0.14 0 0.14 +antiphrase antiphrase nom f s 0 0.34 0 0.34 +antiphysiques antiphysique adj p 0 0.07 0 0.07 +antipodaire antipodaire adj m s 0 0.07 0 0.07 +antipode antipode nom m s 1.21 2.43 0.02 0.14 +antipodes antipode nom m p 1.21 2.43 1.19 2.3 +antipodiste antipodiste nom s 0 0.14 0 0.07 +antipodistes antipodiste nom p 0 0.14 0 0.07 +antipoison antipoison adj m s 0.16 0.07 0.16 0.07 +antipoisons antipoison nom m p 0 0.07 0 0.07 +antipoliomyélitique antipoliomyélitique adj m s 0 0.07 0 0.07 +antipollution antipollution adj 0.05 0 0.05 0 +antipopulaire antipopulaire adj m s 0 0.07 0 0.07 +antiproton antiproton nom m s 0.07 0 0.04 0 +antiprotons antiproton nom m p 0.07 0 0.03 0 +antiprotéase antiprotéase nom f s 0.01 0 0.01 0 +antipsychiatrie antipsychiatrie nom f s 0.01 0.14 0.01 0.14 +antipsychotique antipsychotique adj m s 0.07 0 0.04 0 +antipsychotique antipsychotique nom m s 0.1 0 0.04 0 +antipsychotiques antipsychotique nom m p 0.1 0 0.06 0 +antiquaille antiquaille nom f s 0.14 0.41 0 0.14 +antiquailleries antiquaillerie nom f p 0 0.07 0 0.07 +antiquailles antiquaille nom f p 0.14 0.41 0.14 0.27 +antiquaire antiquaire nom s 2.33 7.03 1.52 3.58 +antiquaires antiquaire nom p 2.33 7.03 0.81 3.45 +antiquark antiquark nom m s 0.01 0 0.01 0 +antique antique adj s 7.21 15.54 5.59 10.61 +antiques antique adj p 7.21 15.54 1.63 4.93 +antiquité antiquité nom f s 4.92 6.55 2.12 3.65 +antiquités antiquité nom f p 4.92 6.55 2.8 2.91 +antirabique antirabique adj m s 0.01 0.07 0.01 0.07 +antiracisme antiracisme nom m s 0.11 0 0.11 0 +antiracistes antiraciste adj m p 0.02 0.27 0.02 0.27 +antiradiation antiradiation adj p 0.02 0 0.02 0 +antireligieuse antireligieux adj f s 0.02 0.14 0.02 0 +antireligieux antireligieux adj m 0.02 0.14 0 0.14 +antirides antirides adj 0.02 0.07 0.02 0.07 +antirouille antirouille adj s 0.06 0 0.06 0 +antirusse antirusse adj m s 0 0.07 0 0.07 +antirépublicain antirépublicain adj m s 0 0.07 0 0.07 +antisatellite antisatellite adj 0.03 0 0.03 0 +antiscientifique antiscientifique adj f s 0.14 0.07 0.14 0.07 +antisepsie antisepsie nom f s 0 0.07 0 0.07 +antiseptique antiseptique adj s 0.32 0.14 0.3 0 +antiseptiques antiseptique adj p 0.32 0.14 0.03 0.14 +antisexistes antisexiste adj m p 0 0.07 0 0.07 +antisexuel antisexuel adj m s 0 0.07 0 0.07 +antisionistes antisioniste adj p 0 0.07 0 0.07 +antiskating antiskating adj f p 0 0.07 0 0.07 +antisocial antisocial adj m s 0.77 0.07 0.12 0 +antisociale antisocial adj f s 0.77 0.07 0.17 0 +antisociales antisocial adj f p 0.77 0.07 0.02 0.07 +antisociaux antisocial adj m p 0.77 0.07 0.46 0 +antisolaire antisolaire adj f s 0 0.14 0 0.07 +antisolaires antisolaire adj f p 0 0.14 0 0.07 +antisoviétique antisoviétique adj s 0 0.34 0 0.27 +antisoviétiques antisoviétique adj p 0 0.34 0 0.07 +antisoviétisme antisoviétisme nom m s 0 0.07 0 0.07 +antispasmodique antispasmodique nom m s 0.02 0 0.02 0 +antisportif antisportif adj m s 0.01 0 0.01 0 +antistalinien antistalinien adj m s 0 0.27 0 0.2 +antistaliniens antistalinien adj m p 0 0.27 0 0.07 +antistatique antistatique adj f s 0.01 0.07 0.01 0 +antistatiques antistatique adj p 0.01 0.07 0 0.07 +antistress antistress adj m s 0.01 0 0.01 0 +antisèche antisèche nom s 0.23 0.14 0.15 0 +antisèches antisèche nom p 0.23 0.14 0.08 0.14 +antisémite antisémite adj s 0.96 1.55 0.72 0.61 +antisémites antisémite adj p 0.96 1.55 0.23 0.95 +antisémitisme antisémitisme nom m s 0.36 1.62 0.36 1.62 +antisérum antisérum nom m s 0.09 0 0.09 0 +antitabac antitabac adj f s 0.07 0 0.07 0 +antiterrorisme antiterrorisme nom m s 0.01 0 0.01 0 +antiterroriste antiterroriste adj s 0.66 0.27 0.66 0.27 +antithèse antithèse nom f s 0.11 0.88 0.11 0.81 +antithèses antithèse nom f p 0.11 0.88 0 0.07 +antithétiques antithétique adj p 0 0.07 0 0.07 +antitout antitout nom m s 0 0.07 0 0.07 +antitoxine antitoxine nom f s 0.08 0 0.08 0 +antitoxique antitoxique adj s 0.1 0 0.1 0 +antitrust antitrust adj 0.24 0 0.24 0 +antituberculeux antituberculeux nom m 0 0.14 0 0.14 +antitussif antitussif adj m s 0.01 0.07 0.01 0 +antitussives antitussif adj f p 0.01 0.07 0 0.07 +antityphoïdique antityphoïdique adj m s 0 0.07 0 0.07 +antitétanique antitétanique adj s 0.22 0.14 0.22 0.14 +antivariolique antivariolique adj m s 0.01 0 0.01 0 +antivenimeux antivenimeux adj m s 0.03 0 0.03 0 +antiviolence antiviolence adj s 0.02 0 0.02 0 +antiviral antiviral adj m s 0.05 0 0.02 0 +antiviraux antiviral nom m p 0.16 0 0.14 0 +antivirus antivirus nom m 0.66 0 0.66 0 +antivol antivol nom m s 0.3 0.14 0.3 0.14 +antiémeute antiémeute adj s 0.01 0 0.01 0 +antiémétique antiémétique nom m s 0.01 0 0.01 0 +antonin antonin adj m s 0.14 0.14 0.14 0.14 +antonomase antonomase nom f s 0 0.07 0 0.07 +antonyme antonyme nom m s 0 0.14 0 0.07 +antonymes antonyme nom m p 0 0.14 0 0.07 +antre antre nom m s 2.96 4.66 2.96 4.39 +antres antre nom m p 2.96 4.66 0.01 0.27 +anté anter ver 0 0.07 0 0.07 imp:pre:2s; +antéchrist antéchrist nom m s 2.89 1.08 2.83 1.08 +antéchrists antéchrist nom m p 2.89 1.08 0.06 0 +antécédent antécédent nom m s 5.71 0.68 0.38 0 +antécédents antécédent nom m p 5.71 0.68 5.33 0.68 +antédiluvien antédiluvien adj m s 0.03 0.88 0.01 0.41 +antédiluvienne antédiluvien adj f s 0.03 0.88 0.01 0.2 +antédiluviennes antédiluvien adj f p 0.03 0.88 0 0.27 +antédiluviens antédiluvien adj m p 0.03 0.88 0.01 0 +antépénultième antépénultième nom f s 0 0.2 0 0.14 +antépénultièmes antépénultième nom f p 0 0.2 0 0.07 +antérieur antérieur adj m s 3.82 10.27 0.88 2.43 +antérieure antérieur adj f s 3.82 10.27 1.82 3.92 +antérieurement antérieurement adv 0.36 1.01 0.36 1.01 +antérieures antérieur adj f p 3.82 10.27 0.66 1.69 +antérieurs antérieur adj m p 3.82 10.27 0.46 2.23 +antérograde antérograde adj f s 0 0.07 0 0.07 +anuité anuiter ver m s 0 0.2 0 0.14 par:pas; +anuitées anuiter ver f p 0 0.2 0 0.07 par:pas; +anus anus nom m 1.63 1.82 1.63 1.82 +anuscopie anuscopie nom f s 0.01 0 0.01 0 +anxieuse anxieux adj f s 3.76 10.47 0.91 3.58 +anxieusement anxieusement adv 0.17 2.36 0.17 2.36 +anxieuses anxieux adj f p 3.76 10.47 0.02 0.54 +anxieux anxieux adj m 3.76 10.47 2.83 6.35 +anxiolytique anxiolytique nom m s 0.28 0 0.21 0 +anxiolytiques anxiolytique nom m p 0.28 0 0.07 0 +anxiété anxiété nom f s 3.06 10.27 2.92 9.86 +anxiétés anxiété nom f p 3.06 10.27 0.14 0.41 +anya anya nom m s 0.26 0 0.26 0 +anéanti anéantir ver m s 13.18 12.7 3.27 2.84 par:pas; +anéantie anéantir ver f s 13.18 12.7 1.55 1.96 par:pas; +anéanties anéantir ver f p 13.18 12.7 0.19 0.41 par:pas; +anéantir anéantir ver 13.18 12.7 4.41 3.78 inf; +anéantira anéantir ver 13.18 12.7 0.47 0.07 ind:fut:3s; +anéantirai anéantir ver 13.18 12.7 0.05 0 ind:fut:1s; +anéantiraient anéantir ver 13.18 12.7 0.01 0.07 cnd:pre:3p; +anéantirait anéantir ver 13.18 12.7 0.27 0.07 cnd:pre:3s; +anéantirent anéantir ver 13.18 12.7 0 0.14 ind:pas:3p; +anéantiriez anéantir ver 13.18 12.7 0.02 0 cnd:pre:2p; +anéantirons anéantir ver 13.18 12.7 0.06 0 ind:fut:1p; +anéantiront anéantir ver 13.18 12.7 0.09 0 ind:fut:3p; +anéantis anéantir ver m p 13.18 12.7 1.62 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +anéantissaient anéantir ver 13.18 12.7 0 0.27 ind:imp:3p; +anéantissait anéantir ver 13.18 12.7 0 0.47 ind:imp:3s; +anéantissant anéantir ver 13.18 12.7 0.04 0.14 par:pre; +anéantissante anéantissant adj f s 0.01 0.14 0.01 0.07 +anéantissantes anéantissant adj f p 0.01 0.14 0 0.07 +anéantisse anéantir ver 13.18 12.7 0.36 0.07 sub:pre:1s;sub:pre:3s; +anéantissement anéantissement nom m s 0.63 3.38 0.62 3.24 +anéantissements anéantissement nom m p 0.63 3.38 0.01 0.14 +anéantissent anéantir ver 13.18 12.7 0.14 0.14 ind:pre:3p; +anéantissez anéantir ver 13.18 12.7 0.08 0 imp:pre:2p;ind:pre:2p; +anéantissons anéantir ver 13.18 12.7 0.02 0 imp:pre:1p;ind:pre:1p; +anéantit anéantir ver 13.18 12.7 0.52 0.68 ind:pre:3s;ind:pas:3s; +anémiais anémier ver 0.04 0.14 0 0.07 ind:imp:1s; +anémiante anémiant adj f s 0 0.07 0 0.07 +anémie anémie nom f s 1.31 0.41 1.31 0.41 +anémique anémique adj s 0.75 1.15 0.52 0.81 +anémiques anémique adj p 0.75 1.15 0.23 0.34 +anémié anémier ver m s 0.04 0.14 0.01 0 par:pas; +anémiée anémié adj f s 0.02 0.14 0.01 0 +anémiés anémié adj m p 0.02 0.14 0.01 0.07 +anémomètre anémomètre nom m s 0.02 0.14 0.02 0.14 +anémométrique anémométrique adj s 0 0.07 0 0.07 +anémone anémone nom f s 0.17 3.45 0.05 0.68 +anémones anémone nom f p 0.17 3.45 0.12 2.77 +anévrisme anévrisme nom m s 1.33 0.07 1.28 0.07 +anévrismes anévrisme nom m p 1.33 0.07 0.05 0 +aoriste aoriste nom m s 0 0.07 0 0.07 +aorte aorte nom f s 1.16 0.2 1.16 0.2 +aortique aortique adj s 0.21 0.07 0.15 0.07 +aortiques aortique adj p 0.21 0.07 0.06 0 +aouls aoul nom m p 0 0.07 0 0.07 +août août nom m 12.65 49.66 12.65 49.66 +aoûtat aoûtat nom m s 0.08 0 0.08 0 +aoûtien aoûtien nom m s 0 0.07 0 0.07 +apache apache adj s 0.6 0.2 0.4 0.2 +apaches apache adj p 0.6 0.2 0.2 0 +apaisa apaiser ver 8.52 35 0.12 3.04 ind:pas:3s; +apaisai apaiser ver 8.52 35 0 0.07 ind:pas:1s; +apaisaient apaiser ver 8.52 35 0 0.54 ind:imp:3p; +apaisais apaiser ver 8.52 35 0.02 0.07 ind:imp:1s;ind:imp:2s; +apaisait apaiser ver 8.52 35 0.04 3.18 ind:imp:3s; +apaisant apaisant adj m s 1.28 6.62 0.7 2.3 +apaisante apaisant adj f s 1.28 6.62 0.48 2.43 +apaisantes apaisant adj f p 1.28 6.62 0.06 0.95 +apaisants apaisant adj m p 1.28 6.62 0.04 0.95 +apaise apaiser ver 8.52 35 2.01 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apaisement apaisement nom m s 0.47 7.23 0.46 6.69 +apaisements apaisement nom m p 0.47 7.23 0.01 0.54 +apaisent apaiser ver 8.52 35 0.11 0.88 ind:pre:3p; +apaiser apaiser ver 8.52 35 3.49 8.85 inf; +apaisera apaiser ver 8.52 35 0.6 0.2 ind:fut:3s; +apaiseraient apaiser ver 8.52 35 0.01 0.14 cnd:pre:3p; +apaiserais apaiser ver 8.52 35 0.01 0.07 cnd:pre:1s; +apaiserait apaiser ver 8.52 35 0.09 0.54 cnd:pre:3s; +apaisez apaiser ver 8.52 35 0.19 0.07 imp:pre:2p; +apaisiez apaiser ver 8.52 35 0.01 0 ind:imp:2p; +apaisons apaiser ver 8.52 35 0 0.07 imp:pre:1p; +apaisât apaiser ver 8.52 35 0 0.27 sub:imp:3s; +apaisèrent apaiser ver 8.52 35 0 0.68 ind:pas:3p; +apaisé apaiser ver m s 8.52 35 1.08 4.66 par:pas; +apaisée apaiser ver f s 8.52 35 0.47 4.05 par:pas; +apaisées apaiser ver f p 8.52 35 0.04 0.74 par:pas; +apaisés apaiser ver m p 8.52 35 0.17 1.15 par:pas; +apanage apanage nom m s 0.27 1.22 0.27 1.15 +apanages apanage nom m p 0.27 1.22 0 0.07 +apartheid apartheid nom m s 0.53 0.07 0.53 0.07 +aparté aparté nom m s 0.24 1.69 0.2 1.15 +apartés aparté nom m p 0.24 1.69 0.04 0.54 +apathie apathie nom f s 0.91 1.49 0.91 1.49 +apathique apathique adj s 0.52 0.54 0.46 0.41 +apathiques apathique adj m p 0.52 0.54 0.06 0.14 +apatride apatride adj m s 0.32 0.54 0.3 0.27 +apatrides apatride adj m p 0.32 0.54 0.02 0.27 +apax apax nom m 0 0.07 0 0.07 +ape ape nom m s 0.23 0.14 0.23 0.07 +aperceptions aperception nom f p 0 0.14 0 0.14 +apercevaient apercevoir ver 34.56 233.11 0 2.3 ind:imp:3p; +apercevais apercevoir ver 34.56 233.11 0.15 6.55 ind:imp:1s;ind:imp:2s; +apercevait apercevoir ver 34.56 233.11 0.79 25.68 ind:imp:3s; +apercevant apercevoir ver 34.56 233.11 0.08 8.45 par:pre; +apercevez apercevoir ver 34.56 233.11 0.49 0.41 ind:pre:2p; +aperceviez apercevoir ver 34.56 233.11 0.14 0 ind:imp:2p; +apercevions apercevoir ver 34.56 233.11 0.03 1.08 ind:imp:1p;sub:pre:1p; +apercevoir apercevoir ver 34.56 233.11 6.16 35.2 inf; +apercevons apercevoir ver 34.56 233.11 0.06 0.95 ind:pre:1p; +apercevra apercevoir ver 34.56 233.11 1.27 1.42 ind:fut:3s; +apercevrai apercevoir ver 34.56 233.11 0.03 0.2 ind:fut:1s; +apercevraient apercevoir ver 34.56 233.11 0 0.07 cnd:pre:3p; +apercevrais apercevoir ver 34.56 233.11 0.08 0.34 cnd:pre:1s;cnd:pre:2s; +apercevrait apercevoir ver 34.56 233.11 0.37 1.22 cnd:pre:3s; +apercevras apercevoir ver 34.56 233.11 0.35 0.27 ind:fut:2s; +apercevrez apercevoir ver 34.56 233.11 0.23 0.68 ind:fut:2p; +apercevrons apercevoir ver 34.56 233.11 0.02 0.14 ind:fut:1p; +apercevront apercevoir ver 34.56 233.11 0.61 0.47 ind:fut:3p; +aperçois apercevoir ver 34.56 233.11 3.82 14.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +aperçoit apercevoir ver 34.56 233.11 3.15 21.82 ind:pre:3s; +aperçoive apercevoir ver 34.56 233.11 2.42 4.05 sub:pre:1s;sub:pre:3s; +aperçoivent apercevoir ver 34.56 233.11 0.43 1.62 ind:pre:3p; +aperçoives apercevoir ver 34.56 233.11 0.34 0.14 sub:pre:2s; +aperçu apercevoir ver m s 34.56 233.11 8.28 27.23 par:pas; +aperçue apercevoir ver f s 34.56 233.11 2.77 8.58 par:pas; +aperçues apercevoir ver f p 34.56 233.11 0.04 0.88 par:pas; +aperçurent apercevoir ver 34.56 233.11 0.25 3.85 ind:pas:3p; +aperçus apercevoir ver m p 34.56 233.11 1.34 16.69 ind:pas:1s;par:pas; +aperçussent apercevoir ver 34.56 233.11 0 0.07 sub:imp:3p; +aperçut apercevoir ver 34.56 233.11 0.76 45.47 ind:pas:3s; +aperçûmes apercevoir ver 34.56 233.11 0.12 0.81 ind:pas:1p; +aperçût apercevoir ver 34.56 233.11 0 1.62 sub:imp:3s; +apes ape nom m p 0.23 0.14 0 0.07 +apesanteur apesanteur nom f s 0.93 0.81 0.93 0.81 +apeura apeurer ver 0.36 1.76 0 0.07 ind:pas:3s; +apeuraient apeurer ver 0.36 1.76 0 0.07 ind:imp:3p; +apeurait apeurer ver 0.36 1.76 0 0.14 ind:imp:3s; +apeure apeurer ver 0.36 1.76 0.01 0.07 ind:pre:3s; +apeurer apeurer ver 0.36 1.76 0.01 0.2 inf; +apeuré apeuré adj m s 1.31 5.68 0.69 2.36 +apeurée apeuré adj f s 1.31 5.68 0.47 1.22 +apeurées apeuré adj f p 1.31 5.68 0.01 0.34 +apeurés apeuré adj m p 1.31 5.68 0.14 1.76 +apex apex nom m 0.33 0.07 0.33 0.07 +aphaniptères aphaniptère nom m p 0 0.07 0 0.07 +aphasie aphasie nom f s 0.2 0.27 0.2 0.27 +aphasique aphasique adj s 0.03 0.47 0.02 0.27 +aphasiques aphasique adj m p 0.03 0.47 0.01 0.2 +aphone aphone adj s 0.27 1.01 0.25 0.74 +aphones aphone adj m p 0.27 1.01 0.02 0.27 +aphonie aphonie nom f s 0 0.14 0 0.14 +aphorisme aphorisme nom m s 0.04 0.88 0.02 0.14 +aphorismes aphorisme nom m p 0.04 0.88 0.02 0.74 +aphrodisiaque aphrodisiaque nom m s 1.27 0.27 1.09 0.14 +aphrodisiaques aphrodisiaque nom m p 1.27 0.27 0.17 0.14 +aphrodisie aphrodisie nom f s 0 0.14 0 0.14 +aphrodite aphrodite nom f s 0.01 0 0.01 0 +aphtes aphte nom m p 0.05 0 0.05 0 +aphteuse aphteux adj f s 0.17 0.34 0.16 0.34 +aphteux aphteux adj m 0.17 0.34 0.01 0 +aphérèse aphérèse nom f s 0 0.07 0 0.07 +api api nom m s 0.16 0.2 0.16 0.2 +apiculteur apiculteur nom m s 0.1 0.07 0.04 0.07 +apiculteurs apiculteur nom m p 0.1 0.07 0.02 0 +apicultrice apiculteur nom f s 0.1 0.07 0.04 0 +apiculture apiculture nom f s 0.04 0 0.04 0 +apion apion nom m s 0 0.07 0 0.07 +apis apis nom m 0.01 0 0.01 0 +apitoie apitoyer ver 2.52 6.22 0.69 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apitoiement apitoiement nom m s 0.29 0.61 0.29 0.61 +apitoient apitoyer ver 2.52 6.22 0.01 0.2 ind:pre:3p; +apitoierai apitoyer ver 2.52 6.22 0.03 0 ind:fut:1s; +apitoierait apitoyer ver 2.52 6.22 0 0.07 cnd:pre:3s; +apitoies apitoyer ver 2.52 6.22 0.14 0 ind:pre:2s; +apitoya apitoyer ver 2.52 6.22 0 0.61 ind:pas:3s; +apitoyaient apitoyer ver 2.52 6.22 0 0.14 ind:imp:3p; +apitoyait apitoyer ver 2.52 6.22 0.01 0.47 ind:imp:3s; +apitoyant apitoyer ver 2.52 6.22 0.07 0.27 par:pre; +apitoyer apitoyer ver 2.52 6.22 1.32 1.62 inf; +apitoyez apitoyer ver 2.52 6.22 0.08 0 imp:pre:2p;ind:pre:2p; +apitoyons apitoyer ver 2.52 6.22 0.01 0.14 imp:pre:1p;ind:pre:1p; +apitoyèrent apitoyer ver 2.52 6.22 0 0.07 ind:pas:3p; +apitoyé apitoyer ver m s 2.52 6.22 0.04 1.15 par:pas; +apitoyée apitoyer ver f s 2.52 6.22 0.01 0.61 par:pas; +apitoyées apitoyer ver f p 2.52 6.22 0 0.14 par:pas; +apitoyés apitoyer ver m p 2.52 6.22 0.1 0.41 par:pas; +apivore apivore adj s 0 0.07 0 0.07 +aplani aplanir ver m s 0.61 2.57 0.05 0.61 par:pas; +aplanie aplanir ver f s 0.61 2.57 0.01 0.2 par:pas; +aplanies aplanir ver f p 0.61 2.57 0 0.14 par:pas; +aplanir aplanir ver 0.61 2.57 0.35 0.41 inf; +aplanira aplanir ver 0.61 2.57 0 0.07 ind:fut:3s; +aplaniront aplanir ver 0.61 2.57 0 0.14 ind:fut:3p; +aplanis aplanir ver 0.61 2.57 0.01 0.07 imp:pre:2s;ind:pre:1s; +aplanissaient aplanir ver 0.61 2.57 0 0.2 ind:imp:3p; +aplanissait aplanir ver 0.61 2.57 0.01 0.47 ind:imp:3s; +aplanissant aplanir ver 0.61 2.57 0.01 0.14 par:pre; +aplanissement aplanissement nom m s 0.01 0.34 0.01 0.34 +aplanissez aplanir ver 0.61 2.57 0.14 0 imp:pre:2p; +aplanissons aplanir ver 0.61 2.57 0 0.07 imp:pre:1p; +aplanit aplanir ver 0.61 2.57 0.01 0.07 ind:pre:3s; +aplasie aplasie nom f s 0.01 0 0.01 0 +aplat aplat nom m s 0.01 0.27 0 0.07 +aplati aplatir ver m s 1.91 14.53 0.32 2.77 par:pas; +aplatie aplatir ver f s 1.91 14.53 0.21 1.28 par:pas; +aplaties aplatir ver f p 1.91 14.53 0.02 0.47 par:pas; +aplatir aplatir ver 1.91 14.53 0.67 2.3 inf; +aplatirais aplatir ver 1.91 14.53 0.02 0 cnd:pre:1s; +aplatirait aplatir ver 1.91 14.53 0.02 0.07 cnd:pre:3s; +aplatirent aplatir ver 1.91 14.53 0 0.2 ind:pas:3p; +aplatirez aplatir ver 1.91 14.53 0 0.07 ind:fut:2p; +aplatis aplatir ver m p 1.91 14.53 0.34 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +aplatissaient aplatir ver 1.91 14.53 0.01 0.2 ind:imp:3p; +aplatissais aplatir ver 1.91 14.53 0 0.14 ind:imp:1s; +aplatissait aplatir ver 1.91 14.53 0 0.81 ind:imp:3s; +aplatissant aplatir ver 1.91 14.53 0 0.95 par:pre; +aplatisse aplatir ver 1.91 14.53 0.03 0.14 sub:pre:1s;sub:pre:3s; +aplatissement aplatissement nom m s 0.03 0.54 0.03 0.41 +aplatissements aplatissement nom m p 0.03 0.54 0 0.14 +aplatissent aplatir ver 1.91 14.53 0.02 0.54 ind:pre:3p; +aplatissez aplatir ver 1.91 14.53 0.06 0.07 imp:pre:2p;ind:pre:2p; +aplatit aplatir ver 1.91 14.53 0.19 2.84 ind:pre:3s;ind:pas:3s; +aplats aplat nom m p 0.01 0.27 0.01 0.2 +aplomb aplomb nom m s 1.61 9.05 1.61 8.99 +aplombs aplomb nom m p 1.61 9.05 0 0.07 +apnée apnée nom f s 0.6 0.27 0.6 0.27 +apocalypse apocalypse nom f s 4.87 6.35 4.85 6.01 +apocalypses apocalypse nom f p 4.87 6.35 0.03 0.34 +apocalyptique apocalyptique adj s 0.58 1.76 0.38 1.01 +apocalyptiques apocalyptique adj p 0.58 1.76 0.2 0.74 +apocope apocope nom f s 0.01 0 0.01 0 +apocryphe apocryphe adj s 0.01 0.27 0.01 0.14 +apocryphes apocryphe nom m p 0.04 0.14 0.03 0 +apodictique apodictique adj f s 0 0.07 0 0.07 +apogée apogée nom m s 1.4 1.76 1.4 1.76 +apolitique apolitique adj m s 0.6 0.2 0.58 0.14 +apolitiques apolitique nom p 0.2 0.07 0.1 0.07 +apolitisme apolitisme nom m s 0 0.07 0 0.07 +apollon apollon nom m s 0.04 0.14 0.04 0 +apollons apollon nom m p 0.04 0.14 0.01 0.14 +apologie apologie nom f s 0.17 1.22 0.17 1.22 +apologiste apologiste nom s 0.02 0.2 0.01 0.14 +apologistes apologiste nom p 0.02 0.2 0.01 0.07 +apologue apologue nom m s 0 0.61 0 0.61 +apologétique apologétique nom s 0 0.47 0 0.47 +apologétiques apologétique adj m p 0 0.14 0 0.07 +aponévroses aponévrose nom f p 0.01 0.07 0.01 0.07 +aponévrotique aponévrotique adj f s 0.01 0 0.01 0 +apophtegmes apophtegme nom m p 0 0.2 0 0.2 +apoplectique apoplectique adj s 0.15 0.88 0.14 0.88 +apoplectiques apoplectique adj p 0.15 0.88 0.01 0 +apoplexie apoplexie nom f s 0.33 0.95 0.33 0.88 +apoplexies apoplexie nom f p 0.33 0.95 0 0.07 +apoptose apoptose nom f s 0.03 0 0.03 0 +apostasie apostasie nom f s 0.01 0.41 0.01 0.41 +apostasié apostasier ver m s 0 0.07 0 0.07 par:pas; +apostat apostat nom m s 0.46 0.27 0.25 0.2 +apostate apostat nom f s 0.46 0.27 0 0.07 +apostats apostat nom m p 0.46 0.27 0.21 0 +apostillée apostiller ver f s 0 0.07 0 0.07 par:pas; +apostolat apostolat nom m s 0.1 1.08 0.1 1.08 +apostolique apostolique adj s 0.72 1.96 0.72 1.89 +apostoliques apostolique adj f p 0.72 1.96 0 0.07 +apostropha apostropher ver 0.05 3.31 0 0.68 ind:pas:3s; +apostrophaient apostropher ver 0.05 3.31 0 0.2 ind:imp:3p; +apostrophait apostropher ver 0.05 3.31 0 0.61 ind:imp:3s; +apostrophant apostropher ver 0.05 3.31 0 0.34 par:pre; +apostrophe apostrophe nom f s 0.15 1.76 0.15 1.15 +apostrophent apostropher ver 0.05 3.31 0 0.14 ind:pre:3p; +apostropher apostropher ver 0.05 3.31 0.01 0.27 inf; +apostrophes apostrophe nom f p 0.15 1.76 0 0.61 +apostrophèrent apostropher ver 0.05 3.31 0 0.07 ind:pas:3p; +apostrophé apostropher ver m s 0.05 3.31 0 0.34 par:pas; +apostrophée apostropher ver f s 0.05 3.31 0 0.2 par:pas; +apostume apostume nom m s 0 0.07 0 0.07 +apostées aposter ver f p 0 0.07 0 0.07 par:pas; +apothicaire apothicaire nom m s 0.32 1.28 0.32 1.15 +apothicairerie apothicairerie nom f s 0 0.07 0 0.07 +apothicaires apothicaire nom m p 0.32 1.28 0 0.14 +apothéose apothéose nom f s 0.49 4.26 0.49 4.12 +apothéoses apothéose nom f p 0.49 4.26 0 0.14 +apparais apparaître ver 43.78 159.26 0.9 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +apparaissaient apparaître ver 43.78 159.26 0.32 8.51 ind:imp:3p; +apparaissais apparaître ver 43.78 159.26 0.03 0.34 ind:imp:1s;ind:imp:2s; +apparaissait apparaître ver 43.78 159.26 1.06 27.09 ind:imp:3s; +apparaissant apparaître ver 43.78 159.26 0.27 2.43 par:pre; +apparaisse apparaître ver 43.78 159.26 0.93 2.03 sub:pre:1s;sub:pre:3s; +apparaissent apparaître ver 43.78 159.26 3.89 7.97 ind:pre:3p; +apparaissez apparaître ver 43.78 159.26 0.38 0.27 imp:pre:2p;ind:pre:2p; +apparaissiez apparaître ver 43.78 159.26 0.05 0.14 ind:imp:2p; +apparaissions apparaître ver 43.78 159.26 0 0.07 ind:imp:1p; +apparaissons apparaître ver 43.78 159.26 0.05 0.07 imp:pre:1p;ind:pre:1p; +apparat apparat nom m s 0.51 4.86 0.51 4.8 +apparatchik apparatchik nom m s 0.01 0.34 0.01 0.27 +apparatchiks apparatchik nom m p 0.01 0.34 0 0.07 +apparats apparat nom m p 0.51 4.86 0 0.07 +apparaux apparaux nom m p 0 0.2 0 0.2 +apparaît apparaître ver 43.78 159.26 11.14 27.91 ind:pre:3s; +apparaîtra apparaître ver 43.78 159.26 1.77 1.08 ind:fut:3s; +apparaîtrai apparaître ver 43.78 159.26 0.03 0.07 ind:fut:1s; +apparaîtraient apparaître ver 43.78 159.26 0.02 0.2 cnd:pre:3p; +apparaîtrais apparaître ver 43.78 159.26 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +apparaîtrait apparaître ver 43.78 159.26 0.31 1.35 cnd:pre:3s; +apparaîtras apparaître ver 43.78 159.26 0.02 0.07 ind:fut:2s; +apparaître apparaître ver 43.78 159.26 6.3 24.46 inf; +apparaîtrez apparaître ver 43.78 159.26 0.03 0.07 ind:fut:2p; +apparaîtrions apparaître ver 43.78 159.26 0.01 0.07 cnd:pre:1p; +apparaîtrons apparaître ver 43.78 159.26 0.01 0.2 ind:fut:1p; +apparaîtront apparaître ver 43.78 159.26 0.41 0.61 ind:fut:3p; +appareil appareil nom m s 51.53 44.66 44.2 35.88 +appareil_photo appareil_photo nom m s 0.32 0.27 0.32 0.27 +appareilla appareiller ver 1.24 2.97 0 0.34 ind:pas:3s; +appareillage appareillage nom m s 0.29 1.89 0.29 1.62 +appareillages appareillage nom m p 0.29 1.89 0 0.27 +appareillaient appareiller ver 1.24 2.97 0 0.07 ind:imp:3p; +appareillait appareiller ver 1.24 2.97 0 0.41 ind:imp:3s; +appareillant appareiller ver 1.24 2.97 0 0.14 par:pre; +appareille appareiller ver 1.24 2.97 0.22 0.27 ind:pre:1s;ind:pre:3s; +appareillent appareiller ver 1.24 2.97 0.01 0.07 ind:pre:3p; +appareiller appareiller ver 1.24 2.97 0.51 0.81 inf; +appareilleraient appareiller ver 1.24 2.97 0 0.07 cnd:pre:3p; +appareillez appareiller ver 1.24 2.97 0.06 0 imp:pre:2p; +appareillions appareiller ver 1.24 2.97 0 0.07 ind:imp:1p; +appareillons appareiller ver 1.24 2.97 0.4 0.14 imp:pre:1p;ind:pre:1p; +appareillé appareiller ver m s 1.24 2.97 0.04 0.41 par:pas; +appareillés appareiller ver m p 1.24 2.97 0.01 0.2 par:pas; +appareils appareil nom m p 51.53 44.66 7.34 8.78 +apparemment apparemment adv 43.08 29.53 43.08 29.53 +apparence apparence nom f s 17.64 48.51 11.85 34.32 +apparences apparence nom f p 17.64 48.51 5.79 14.19 +apparent apparent adj m s 2.88 19.32 1.08 4.86 +apparentaient apparenter ver 0.77 4.86 0.01 0.54 ind:imp:3p; +apparentait apparenter ver 0.77 4.86 0.02 0.74 ind:imp:3s; +apparentant apparenter ver 0.77 4.86 0.01 0.27 par:pre; +apparente apparent adj f s 2.88 19.32 1.35 10.34 +apparentement apparentement nom m s 0.03 0.07 0.03 0.07 +apparentent apparenter ver 0.77 4.86 0.03 0.41 ind:pre:3p; +apparenter apparenter ver 0.77 4.86 0.03 0.34 inf; +apparentes apparent adj f p 2.88 19.32 0.18 2.3 +apparents apparent adj m p 2.88 19.32 0.27 1.82 +apparenté apparenter ver m s 0.77 4.86 0.27 0.74 par:pas; +apparentée apparenter ver f s 0.77 4.86 0.05 0.47 par:pas; +apparentés apparenter ver m p 0.77 4.86 0.13 0.14 par:pas; +appariait apparier ver 0.19 0.81 0 0.14 ind:imp:3s; +appariant apparier ver 0.19 0.81 0 0.14 par:pre; +apparie apparier ver 0.19 0.81 0 0.07 ind:pre:3s; +apparier apparier ver 0.19 0.81 0 0.07 inf; +appariteur appariteur nom m s 0.28 0.61 0.28 0.34 +appariteurs appariteur nom m p 0.28 0.61 0 0.27 +apparition apparition nom f s 8.02 32.64 6.93 28.65 +apparitions apparition nom f p 8.02 32.64 1.08 3.99 +apparié apparier ver m s 0.19 0.81 0.01 0.07 par:pas; +appariée apparier ver f s 0.19 0.81 0 0.07 par:pas; +appariées apparier ver f p 0.19 0.81 0 0.14 par:pas; +appariés apparier ver m p 0.19 0.81 0.18 0.14 par:pas; +appart appart nom m s 18.07 2.03 17.48 1.96 +appartement appartement nom m s 76.33 99.26 69.77 86.01 +appartement_roi appartement_roi nom m s 0 0.07 0 0.07 +appartements appartement nom m p 76.33 99.26 6.56 13.24 +appartenaient appartenir ver 80.57 92.36 2.26 9.05 ind:imp:3p; +appartenais appartenir ver 80.57 92.36 0.86 1.96 ind:imp:1s;ind:imp:2s; +appartenait appartenir ver 80.57 92.36 8.89 24.19 ind:imp:3s; +appartenance appartenance nom f s 1.83 3.45 1.82 3.24 +appartenances appartenance nom f p 1.83 3.45 0.01 0.2 +appartenant appartenir ver 80.57 92.36 2.9 5.47 par:pre; +appartenez appartenir ver 80.57 92.36 0.89 0.74 imp:pre:2p;ind:pre:2p; +apparteniez appartenir ver 80.57 92.36 0.19 0.14 ind:imp:2p; +appartenions appartenir ver 80.57 92.36 0.04 0.68 ind:imp:1p; +appartenir appartenir ver 80.57 92.36 3.74 9.12 inf; +appartenons appartenir ver 80.57 92.36 0.71 0.81 imp:pre:1p;ind:pre:1p; +appartenu appartenir ver m s 80.57 92.36 2.23 4.66 par:pas; +appartenues appartenir ver f p 80.57 92.36 0.01 0 par:pas; +appartiendra appartenir ver 80.57 92.36 1.23 1.01 ind:fut:3s; +appartiendrai appartenir ver 80.57 92.36 0.02 0.14 ind:fut:1s; +appartiendraient appartenir ver 80.57 92.36 0.22 0.47 cnd:pre:3p; +appartiendrais appartenir ver 80.57 92.36 0 0.14 cnd:pre:1s;cnd:pre:2s; +appartiendrait appartenir ver 80.57 92.36 0.36 1.42 cnd:pre:3s; +appartiendras appartenir ver 80.57 92.36 0.12 0 ind:fut:2s; +appartiendrons appartenir ver 80.57 92.36 0.01 0 ind:fut:1p; +appartiendront appartenir ver 80.57 92.36 0.07 0.07 ind:fut:3p; +appartienne appartenir ver 80.57 92.36 0.63 0.74 sub:pre:1s;sub:pre:3s; +appartiennent appartenir ver 80.57 92.36 6.86 6.76 ind:pre:3p; +appartiens appartenir ver 80.57 92.36 7.37 2.84 imp:pre:2s;ind:pre:1s;ind:pre:2s; +appartient appartenir ver 80.57 92.36 40.94 20.27 ind:pre:3s; +appartins appartenir ver 80.57 92.36 0 0.07 ind:pas:1s; +appartinssent appartenir ver 80.57 92.36 0 0.14 sub:imp:3p; +appartint appartenir ver 80.57 92.36 0 0.74 ind:pas:3s; +apparts appart nom m p 18.07 2.03 0.59 0.07 +appartînt appartenir ver 80.57 92.36 0 0.74 sub:imp:3s; +apparu apparaître ver m s 43.78 159.26 6.43 9.12 par:pas; +apparue apparaître ver f s 43.78 159.26 4.21 6.55 par:pas; +apparues apparaître ver f p 43.78 159.26 0.81 1.15 par:pas; +apparurent apparaître ver 43.78 159.26 0.52 5.95 ind:pas:3p; +apparus apparaître ver m p 43.78 159.26 1.74 2.09 ind:pas:1s;par:pas; +apparussent apparaître ver 43.78 159.26 0 0.14 sub:imp:3p; +apparut apparaître ver 43.78 159.26 2.1 28.04 ind:pas:3s; +apparût apparaître ver 43.78 159.26 0.01 0.74 sub:imp:3s; +appas appas nom m p 0.4 0.95 0.4 0.95 +appauvri appauvrir ver m s 0.56 1.89 0.2 0.41 par:pas; +appauvrie appauvrir ver f s 0.56 1.89 0.12 0.41 par:pas; +appauvries appauvrir ver f p 0.56 1.89 0.03 0.07 par:pas; +appauvrir appauvrir ver 0.56 1.89 0.14 0.27 inf; +appauvris appauvrir ver m p 0.56 1.89 0.03 0.2 par:pas; +appauvrissaient appauvrir ver 0.56 1.89 0 0.14 ind:imp:3p; +appauvrissait appauvrir ver 0.56 1.89 0 0.07 ind:imp:3s; +appauvrissant appauvrissant adj m s 0 0.2 0 0.14 +appauvrissante appauvrissant adj f s 0 0.2 0 0.07 +appauvrissement appauvrissement nom m s 0 0.74 0 0.74 +appauvrissez appauvrir ver 0.56 1.89 0.02 0.07 imp:pre:2p;ind:pre:2p; +appauvrissions appauvrir ver 0.56 1.89 0 0.07 ind:imp:1p; +appauvrissons appauvrir ver 0.56 1.89 0 0.07 imp:pre:1p; +appauvrit appauvrir ver 0.56 1.89 0.03 0.14 ind:pre:3s;ind:pas:3s; +appeau appeau nom m s 0.08 0.41 0.06 0.27 +appeaux appeau nom m p 0.08 0.41 0.02 0.14 +appel appel nom m s 100.18 73.45 80.88 56.69 +appela appeler ver 1165.48 465.34 1.67 24.26 ind:pas:3s; +appelai appeler ver 1165.48 465.34 0.14 3.92 ind:pas:1s; +appelaient appeler ver 1165.48 465.34 4.61 14.93 ind:imp:3p; +appelais appeler ver 1165.48 465.34 8.02 6.62 ind:imp:1s;ind:imp:2s; +appelait appeler ver 1165.48 465.34 47.44 104.59 ind:imp:3s; +appelant appeler ver 1165.48 465.34 2.4 7.16 par:pre; +appelants appelant nom m p 0.42 0.54 0.1 0.07 +appeler appeler ver 1165.48 465.34 192.69 63.92 inf;;inf;;inf;;inf;; +appeleur appeleur nom m s 0 0.07 0 0.07 +appelez appeler ver 1165.48 465.34 95.78 11.42 imp:pre:2p;ind:pre:2p; +appeliez appeler ver 1165.48 465.34 2.53 0.81 ind:imp:2p;sub:pre:2p; +appelions appeler ver 1165.48 465.34 0.7 3.38 ind:imp:1p; +appellation appellation nom f s 0.36 3.31 0.28 2.43 +appellations appellation nom f p 0.36 3.31 0.08 0.88 +appelle appeler ver 1165.48 465.34 485.77 132.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +appellent appeler ver 1165.48 465.34 23.89 16.01 ind:pre:3p; +appellera appeler ver 1165.48 465.34 9.29 2.5 ind:fut:3s; +appellerai appeler ver 1165.48 465.34 20.71 3.58 ind:fut:1s; +appelleraient appeler ver 1165.48 465.34 0.38 0.34 cnd:pre:3p; +appellerais appeler ver 1165.48 465.34 4.08 0.61 cnd:pre:1s;cnd:pre:2s; +appellerait appeler ver 1165.48 465.34 2.66 3.85 cnd:pre:3s; +appelleras appeler ver 1165.48 465.34 2.66 0.81 ind:fut:2s; +appellerez appeler ver 1165.48 465.34 1.3 0.2 ind:fut:2p; +appelleriez appeler ver 1165.48 465.34 0.77 0.2 cnd:pre:2p; +appellerions appeler ver 1165.48 465.34 0.1 0.14 cnd:pre:1p; +appellerons appeler ver 1165.48 465.34 0.88 0.54 ind:fut:1p; +appelleront appeler ver 1165.48 465.34 1.59 0.47 ind:fut:3p; +appelles appeler ver 1165.48 465.34 67.07 8.72 ind:pre:2s;sub:pre:2s; +appelons appeler ver 1165.48 465.34 8.38 5.68 imp:pre:1p;ind:pre:1p; +appels appel nom m p 100.18 73.45 19.3 16.76 +appelât appeler ver 1165.48 465.34 0.01 1.28 sub:imp:3s; +appelèrent appeler ver 1165.48 465.34 0.17 1.49 ind:pas:3p; +appelé appeler ver m s 1165.48 465.34 144.29 30.61 par:pas; +appelée appeler ver f s 1165.48 465.34 27.5 9.12 par:pas; +appelées appeler ver f p 1165.48 465.34 0.95 2.03 par:pas; +appelés appeler ver m p 1165.48 465.34 7.04 3.78 par:pas; +appendait appendre ver 0.04 0.41 0 0.07 ind:imp:3s; +appendice appendice nom m s 1.59 1.96 1.5 1.35 +appendicectomie appendicectomie nom f s 0.25 0 0.25 0 +appendices appendice nom m p 1.59 1.96 0.09 0.61 +appendicite appendicite nom f s 1.75 1.08 1.75 1.08 +appendrait appendre ver 0.04 0.41 0 0.07 cnd:pre:3s; +appendre appendre ver 0.04 0.41 0.03 0.07 inf; +appends appendre ver 0.04 0.41 0.01 0 imp:pre:2s; +appendu appendre ver m s 0.04 0.41 0 0.07 par:pas; +appendues appendre ver f p 0.04 0.41 0 0.07 par:pas; +appendus appendre ver m p 0.04 0.41 0 0.07 par:pas; +appentis appentis nom m 0.08 2.64 0.08 2.64 +appert appert ver 0 0.14 0 0.14 inf; +appesanti appesantir ver m s 0.02 3.04 0 0.27 par:pas; +appesantie appesantir ver f s 0.02 3.04 0 0.41 par:pas; +appesanties appesantir ver f p 0.02 3.04 0 0.14 par:pas; +appesantir appesantir ver 0.02 3.04 0.01 0.61 inf; +appesantis appesantir ver m p 0.02 3.04 0 0.2 ind:pre:1s;par:pas; +appesantissais appesantir ver 0.02 3.04 0.01 0.07 ind:imp:1s; +appesantissait appesantir ver 0.02 3.04 0 0.61 ind:imp:3s; +appesantissant appesantir ver 0.02 3.04 0 0.07 par:pre; +appesantissement appesantissement nom m s 0 0.07 0 0.07 +appesantit appesantir ver 0.02 3.04 0 0.68 ind:pre:3s;ind:pas:3s; +applaudi applaudir ver m s 15.82 17.97 1.56 2.03 par:pas; +applaudie applaudir ver f s 15.82 17.97 0.15 0.27 par:pas; +applaudies applaudir ver f p 15.82 17.97 0.01 0.2 par:pas; +applaudimètre applaudimètre nom m s 0.02 0 0.02 0 +applaudir applaudir ver 15.82 17.97 3.16 4.46 inf; +applaudira applaudir ver 15.82 17.97 0.07 0.07 ind:fut:3s; +applaudirai applaudir ver 15.82 17.97 0.25 0 ind:fut:1s; +applaudiraient applaudir ver 15.82 17.97 0.02 0.14 cnd:pre:3p; +applaudirais applaudir ver 15.82 17.97 0.17 0.07 cnd:pre:1s; +applaudirait applaudir ver 15.82 17.97 0.03 0.07 cnd:pre:3s; +applaudirent applaudir ver 15.82 17.97 0 0.61 ind:pas:3p; +applaudirez applaudir ver 15.82 17.97 0.02 0.07 ind:fut:2p; +applaudirons applaudir ver 15.82 17.97 0.02 0 ind:fut:1p; +applaudis applaudir ver m p 15.82 17.97 0.6 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +applaudissaient applaudir ver 15.82 17.97 0.27 1.15 ind:imp:3p; +applaudissais applaudir ver 15.82 17.97 0.22 0.14 ind:imp:1s;ind:imp:2s; +applaudissait applaudir ver 15.82 17.97 0.49 2.16 ind:imp:3s; +applaudissant applaudir ver 15.82 17.97 0.2 0.14 par:pre; +applaudisse applaudir ver 15.82 17.97 0.1 0 sub:pre:1s;sub:pre:3s; +applaudissement applaudissement nom m s 7.04 9.26 0.5 0.34 +applaudissements applaudissement nom m p 7.04 9.26 6.54 8.92 +applaudissent applaudir ver 15.82 17.97 0.47 0.95 ind:pre:3p;sub:imp:3p; +applaudisseur applaudisseur nom m s 0.01 0 0.01 0 +applaudissez applaudir ver 15.82 17.97 2.75 0.07 imp:pre:2p;ind:pre:2p; +applaudissiez applaudir ver 15.82 17.97 0.02 0 ind:imp:2p; +applaudissions applaudir ver 15.82 17.97 0 0.07 ind:imp:1p; +applaudissons applaudir ver 15.82 17.97 0.89 0.07 imp:pre:1p;ind:pre:1p; +applaudit applaudir ver 15.82 17.97 4.37 3.99 ind:pre:3s;ind:pas:3s; +applaudîmes applaudir ver 15.82 17.97 0 0.07 ind:pas:1p; +applaudît applaudir ver 15.82 17.97 0 0.07 sub:imp:3s; +applicabilité applicabilité nom f s 0.02 0 0.02 0 +applicable applicable adj s 0.3 1.01 0.14 0.61 +applicables applicable adj p 0.3 1.01 0.16 0.41 +applicateur applicateur nom m s 0.28 0 0.28 0 +application application nom f s 2.81 15.88 2.1 15.34 +applications application nom f p 2.81 15.88 0.7 0.54 +appliqua appliquer ver 17.89 47.84 0.01 3.11 ind:pas:3s; +appliquai appliquer ver 17.89 47.84 0.01 1.01 ind:pas:1s; +appliquaient appliquer ver 17.89 47.84 0.04 1.22 ind:imp:3p; +appliquais appliquer ver 17.89 47.84 0.46 1.35 ind:imp:1s;ind:imp:2s; +appliquait appliquer ver 17.89 47.84 0.14 7.09 ind:imp:3s; +appliquant appliquer ver 17.89 47.84 0.16 4.26 par:pre; +appliquasse appliquer ver 17.89 47.84 0 0.07 sub:imp:1s; +appliquassions appliquer ver 17.89 47.84 0 0.07 sub:imp:1p; +applique appliquer ver 17.89 47.84 5.85 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +appliquent appliquer ver 17.89 47.84 1.23 1.62 ind:pre:3p; +appliquer appliquer ver 17.89 47.84 4.77 10.61 inf; +appliquera appliquer ver 17.89 47.84 0.09 0.34 ind:fut:3s; +appliquerai appliquer ver 17.89 47.84 0.23 0.14 ind:fut:1s; +appliquerais appliquer ver 17.89 47.84 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +appliquerait appliquer ver 17.89 47.84 0.04 0.27 cnd:pre:3s; +appliqueras appliquer ver 17.89 47.84 0 0.07 ind:fut:2s; +appliquerez appliquer ver 17.89 47.84 0.12 0 ind:fut:2p; +appliquerons appliquer ver 17.89 47.84 0.02 0.07 ind:fut:1p; +appliques appliquer ver 17.89 47.84 0.5 0.14 ind:pre:2s; +appliquez appliquer ver 17.89 47.84 0.86 0 imp:pre:2p;ind:pre:2p; +appliquions appliquer ver 17.89 47.84 0 0.07 ind:imp:1p; +appliquons appliquer ver 17.89 47.84 0.14 0.07 imp:pre:1p;ind:pre:1p; +appliquât appliquer ver 17.89 47.84 0 0.41 sub:imp:3s; +appliquèrent appliquer ver 17.89 47.84 0 0.54 ind:pas:3p; +appliqué appliquer ver m s 17.89 47.84 1.85 5.07 par:pas; +appliquée appliquer ver f s 17.89 47.84 0.91 2.43 par:pas; +appliquées appliquer ver f p 17.89 47.84 0.26 1.08 par:pas; +appliqués appliqué adj m p 0.59 6.01 0.08 0.74 +appoggiature appoggiature nom f s 0.01 0.07 0.01 0 +appoggiatures appoggiature nom f p 0.01 0.07 0 0.07 +appoint appoint nom m s 0.35 1.76 0.35 1.76 +appointaient appointer ver 0.02 0.74 0 0.07 ind:imp:3p; +appointait appointer ver 0.02 0.74 0 0.07 ind:imp:3s; +appointe appointer ver 0.02 0.74 0 0.14 ind:pre:3s; +appointements appointement nom m p 0.03 0.74 0.03 0.74 +appointer appointer ver 0.02 0.74 0 0.07 inf; +appointé appointé adj m s 0.02 0.34 0.02 0.07 +appointée appointer ver f s 0.02 0.74 0 0.27 par:pas; +appointés appointer ver m p 0.02 0.74 0.01 0 par:pas; +appontage appontage nom m s 0.2 0 0.2 0 +appontement appontement nom m s 0.05 0.47 0.05 0.47 +apponter apponter ver 0.09 0 0.09 0 inf; +apport apport nom m s 1.8 1.82 1.63 1.35 +apporta apporter ver 209.91 159.32 0.93 16.82 ind:pas:3s; +apportai apporter ver 209.91 159.32 0.02 1.08 ind:pas:1s; +apportaient apporter ver 209.91 159.32 0.53 5.61 ind:imp:3p; +apportais apporter ver 209.91 159.32 1.78 2.09 ind:imp:1s;ind:imp:2s; +apportait apporter ver 209.91 159.32 3.24 24.86 ind:imp:3s; +apportant apporter ver 209.91 159.32 0.81 5.88 par:pre; +apportas apporter ver 209.91 159.32 0 0.07 ind:pas:2s; +apporte apporter ver 209.91 159.32 65.97 22.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +apportent apporter ver 209.91 159.32 3.04 4.12 ind:pre:3p; +apporter apporter ver 209.91 159.32 34.43 29.53 inf;;inf;;inf;;inf;; +apportera apporter ver 209.91 159.32 4.78 1.28 ind:fut:3s; +apporterai apporter ver 209.91 159.32 6.29 1.49 ind:fut:1s; +apporteraient apporter ver 209.91 159.32 0.14 0.41 cnd:pre:3p; +apporterais apporter ver 209.91 159.32 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +apporterait apporter ver 209.91 159.32 0.81 2.09 cnd:pre:3s; +apporteras apporter ver 209.91 159.32 0.69 0.54 ind:fut:2s; +apporterez apporter ver 209.91 159.32 0.41 0.2 ind:fut:2p; +apporteriez apporter ver 209.91 159.32 0.22 0.07 cnd:pre:2p; +apporterons apporter ver 209.91 159.32 0.32 0 ind:fut:1p; +apporteront apporter ver 209.91 159.32 0.68 0.07 ind:fut:3p; +apportes apporter ver 209.91 159.32 5.41 0.88 ind:pre:2s; +apportez apporter ver 209.91 159.32 18.5 1.69 imp:pre:2p;ind:pre:2p; +apportiez apporter ver 209.91 159.32 0.33 0.07 ind:imp:2p; +apportions apporter ver 209.91 159.32 0.01 0.47 ind:imp:1p; +apportons apporter ver 209.91 159.32 1.04 0.41 imp:pre:1p;ind:pre:1p; +apports apport nom m p 1.8 1.82 0.17 0.47 +apportât apporter ver 209.91 159.32 0 0.54 sub:imp:3s; +apportèrent apporter ver 209.91 159.32 0.03 1.42 ind:pas:3p; +apporté apporter ver m s 209.91 159.32 54.44 24.53 par:pas; +apportée apporter ver f s 209.91 159.32 2.49 3.38 par:pas; +apportées apporter ver f p 209.91 159.32 1.27 2.43 par:pas; +apportés apporter ver m p 209.91 159.32 0.99 4.19 par:pas; +apposa apposer ver 0.95 3.04 0.01 0.27 ind:pas:3s; +apposai apposer ver 0.95 3.04 0 0.07 ind:pas:1s; +apposait apposer ver 0.95 3.04 0.01 0.14 ind:imp:3s; +apposant apposer ver 0.95 3.04 0.01 0 par:pre; +appose apposer ver 0.95 3.04 0.4 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apposent apposer ver 0.95 3.04 0 0.07 ind:pre:3p; +apposer apposer ver 0.95 3.04 0.28 0.81 inf; +apposerait apposer ver 0.95 3.04 0 0.14 cnd:pre:3s; +apposeras apposer ver 0.95 3.04 0.01 0 ind:fut:2s; +apposez apposer ver 0.95 3.04 0.04 0 imp:pre:2p; +apposition apposition nom f s 0.01 0.14 0.01 0.14 +apposé apposer ver m s 0.95 3.04 0.04 0.54 par:pas; +apposée apposer ver f s 0.95 3.04 0 0.34 par:pas; +apposées apposer ver f p 0.95 3.04 0 0.34 par:pas; +apposés apposer ver m p 0.95 3.04 0.14 0.2 par:pas; +apprenaient apprendre ver 348.47 286.69 0.74 2.43 ind:imp:3p; +apprenais apprendre ver 348.47 286.69 1.61 5.47 ind:imp:1s;ind:imp:2s; +apprenait apprendre ver 348.47 286.69 3.27 11.76 ind:imp:3s; +apprenant apprendre ver 348.47 286.69 2.88 7.23 par:pre; +apprend apprendre ver 348.47 286.69 27.11 17.16 ind:pre:3s; +apprendra apprendre ver 348.47 286.69 11.14 5.07 ind:fut:3s; +apprendrai apprendre ver 348.47 286.69 7.16 3.58 ind:fut:1s; +apprendraient apprendre ver 348.47 286.69 0.05 0.88 cnd:pre:3p; +apprendrais apprendre ver 348.47 286.69 1.36 1.28 cnd:pre:1s;cnd:pre:2s; +apprendrait apprendre ver 348.47 286.69 0.77 3.78 cnd:pre:3s; +apprendras apprendre ver 348.47 286.69 6.43 1.49 ind:fut:2s; +apprendre apprendre ver 348.47 286.69 101.76 71.22 ind:pre:2p;inf; +apprendrez apprendre ver 348.47 286.69 3.35 0.74 ind:fut:2p; +apprendriez apprendre ver 348.47 286.69 0.1 0.27 cnd:pre:2p; +apprendrions apprendre ver 348.47 286.69 0 0.27 cnd:pre:1p; +apprendrons apprendre ver 348.47 286.69 0.63 0.68 ind:fut:1p; +apprendront apprendre ver 348.47 286.69 1.38 1.08 ind:fut:3p; +apprends apprendre ver 348.47 286.69 27.5 8.38 imp:pre:2s;ind:pre:1s;ind:pre:2s; +apprenez apprendre ver 348.47 286.69 7.34 2.23 imp:pre:2p;ind:pre:2p; +appreniez apprendre ver 348.47 286.69 0.72 0.41 ind:imp:2p;sub:pre:2p; +apprenions apprendre ver 348.47 286.69 0.09 1.76 ind:imp:1p; +apprenne apprendre ver 348.47 286.69 6.25 4.19 sub:pre:1s;sub:pre:3s; +apprennent apprendre ver 348.47 286.69 7.79 4.66 ind:pre:3p; +apprennes apprendre ver 348.47 286.69 2.51 0.88 sub:pre:2s; +apprenons apprendre ver 348.47 286.69 1.39 0.68 imp:pre:1p;ind:pre:1p; +apprenti apprenti nom m s 2.52 17.64 1.96 10.95 +apprenti_pilote apprenti_pilote nom m s 0.02 0 0.02 0 +apprenti_sorcier apprenti_sorcier nom m s 0 0.14 0 0.14 +apprentie apprenti nom f s 2.52 17.64 0.23 0.47 +apprenties apprenti nom f p 2.52 17.64 0.02 0.27 +apprentis apprenti nom m p 2.52 17.64 0.31 5.95 +apprentissage apprentissage nom m s 1.86 10.47 1.86 10.14 +apprentissages apprentissage nom m p 1.86 10.47 0 0.34 +apprirent apprendre ver 348.47 286.69 0.15 2.23 ind:pas:3p; +appris apprendre ver m 348.47 286.69 120.98 97.7 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +apprise apprendre ver f s 348.47 286.69 1.81 3.45 par:pas; +apprises apprendre ver f p 348.47 286.69 0.64 1.82 par:pas; +apprissent apprendre ver 348.47 286.69 0 0.07 sub:imp:3p; +apprit apprendre ver 348.47 286.69 1.48 21.96 ind:pas:3s; +apprivoisa apprivoiser ver 2.4 10.54 0 0.2 ind:pas:3s; +apprivoisaient apprivoiser ver 2.4 10.54 0 0.07 ind:imp:3p; +apprivoisais apprivoiser ver 2.4 10.54 0 0.14 ind:imp:1s; +apprivoisait apprivoiser ver 2.4 10.54 0 0.41 ind:imp:3s; +apprivoisant apprivoiser ver 2.4 10.54 0.01 0.14 par:pre; +apprivoise apprivoiser ver 2.4 10.54 0.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprivoisent apprivoiser ver 2.4 10.54 0.01 0.27 ind:pre:3p; +apprivoiser apprivoiser ver 2.4 10.54 0.42 5.14 inf; +apprivoiserai apprivoiser ver 2.4 10.54 0.14 0.2 ind:fut:1s; +apprivoiseur apprivoiseur adj m s 0 0.07 0 0.07 +apprivoisez apprivoiser ver 2.4 10.54 0.03 0.07 imp:pre:2p;ind:pre:2p; +apprivoisons apprivoiser ver 2.4 10.54 0.01 0 ind:pre:1p; +apprivoisèrent apprivoiser ver 2.4 10.54 0 0.14 ind:pas:3p; +apprivoisé apprivoiser ver m s 2.4 10.54 0.98 1.28 par:pas; +apprivoisée apprivoiser ver f s 2.4 10.54 0.17 1.15 par:pas; +apprivoisées apprivoiser ver f p 2.4 10.54 0.04 0.27 par:pas; +apprivoisés apprivoiser ver m p 2.4 10.54 0.36 0.34 par:pas; +approbateur approbateur adj m s 0 1.55 0 1.08 +approbateurs approbateur adj m p 0 1.55 0 0.27 +approbatif approbatif adj m s 0 0.07 0 0.07 +approbation approbation nom f s 2.56 9.8 2.55 9.19 +approbations approbation nom f p 2.56 9.8 0.01 0.61 +approbativement approbativement adv 0 0.07 0 0.07 +approbatrice approbateur adj f s 0 1.55 0 0.2 +approcha approcher ver 117.65 196.15 1.09 42.7 ind:pas:3s; +approchai approcher ver 117.65 196.15 0.2 4.32 ind:pas:1s; +approchaient approcher ver 117.65 196.15 0.45 6.62 ind:imp:3p; +approchais approcher ver 117.65 196.15 0.53 2.09 ind:imp:1s;ind:imp:2s; +approchait approcher ver 117.65 196.15 2.79 27.7 ind:imp:3s; +approchant approcher ver 117.65 196.15 0.9 10.74 par:pre; +approchants approchant adj m p 0.41 1.82 0.01 0.14 +approchassent approcher ver 117.65 196.15 0 0.07 sub:imp:3p; +approche approcher ver 117.65 196.15 44.17 31.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +approchent approcher ver 117.65 196.15 5.66 4.93 ind:pre:3p; +approcher approcher ver 117.65 196.15 19.62 35.27 inf;; +approchera approcher ver 117.65 196.15 0.83 0.2 ind:fut:3s; +approcherai approcher ver 117.65 196.15 0.33 0 ind:fut:1s; +approcherais approcher ver 117.65 196.15 0.18 0.14 cnd:pre:1s; +approcherait approcher ver 117.65 196.15 0.07 0.34 cnd:pre:3s; +approcheras approcher ver 117.65 196.15 0.13 0 ind:fut:2s; +approcherez approcher ver 117.65 196.15 0.17 0.2 ind:fut:2p; +approcherions approcher ver 117.65 196.15 0 0.07 cnd:pre:1p; +approcherons approcher ver 117.65 196.15 0.05 0 ind:fut:1p; +approcheront approcher ver 117.65 196.15 0.11 0.07 ind:fut:3p; +approches approcher ver 117.65 196.15 2.97 0.61 ind:pre:2s;sub:pre:2s; +approchez approcher ver 117.65 196.15 27.75 2.43 imp:pre:2p;ind:pre:2p; +approchiez approcher ver 117.65 196.15 0.24 0.07 ind:imp:2p; +approchions approcher ver 117.65 196.15 0.09 1.76 ind:imp:1p; +approchons approcher ver 117.65 196.15 2.45 1.55 imp:pre:1p;ind:pre:1p; +approchâmes approcher ver 117.65 196.15 0.01 0.34 ind:pas:1p; +approchât approcher ver 117.65 196.15 0 0.2 sub:imp:3s; +approchèrent approcher ver 117.65 196.15 0.02 3.38 ind:pas:3p; +approché approcher ver m s 117.65 196.15 4.75 11.96 par:pas; +approchée approcher ver f s 117.65 196.15 1.36 5.14 par:pas; +approchées approcher ver f p 117.65 196.15 0.25 0.34 par:pas; +approchés approcher ver m p 117.65 196.15 0.5 1.76 par:pas; +approfondi approfondi adj m s 1.46 1.69 0.34 0.61 +approfondie approfondi adj f s 1.46 1.69 0.83 0.81 +approfondies approfondir ver f p 1.69 7.57 0.09 0.2 par:pas; +approfondir approfondir ver 1.69 7.57 1.04 3.58 inf; +approfondirai approfondir ver 1.69 7.57 0 0.07 ind:fut:1s; +approfondirent approfondir ver 1.69 7.57 0 0.14 ind:pas:3p; +approfondirions approfondir ver 1.69 7.57 0 0.07 cnd:pre:1p; +approfondirons approfondir ver 1.69 7.57 0.01 0.07 ind:fut:1p; +approfondis approfondi adj m p 1.46 1.69 0.2 0.07 +approfondissaient approfondir ver 1.69 7.57 0 0.2 ind:imp:3p; +approfondissais approfondir ver 1.69 7.57 0 0.14 ind:imp:1s; +approfondissait approfondir ver 1.69 7.57 0.01 0.27 ind:imp:3s; +approfondissant approfondir ver 1.69 7.57 0.01 0.27 par:pre; +approfondisse approfondir ver 1.69 7.57 0.02 0.07 sub:pre:1s;sub:pre:3s; +approfondissement approfondissement nom m s 0.02 0 0.02 0 +approfondissent approfondir ver 1.69 7.57 0.01 0.14 ind:pre:3p; +approfondissons approfondir ver 1.69 7.57 0.01 0 ind:pre:1p; +approfondit approfondir ver 1.69 7.57 0.13 0.88 ind:pre:3s;ind:pas:3s; +approfondît approfondir ver 1.69 7.57 0 0.14 sub:imp:3s; +appropriaient approprier ver 5.73 5.47 0.1 0.2 ind:imp:3p; +appropriait approprier ver 5.73 5.47 0 0.2 ind:imp:3s; +appropriant approprier ver 5.73 5.47 0.17 0.14 par:pre; +appropriation appropriation nom f s 0.19 0.34 0.04 0.34 +appropriations appropriation nom f p 0.19 0.34 0.15 0 +approprie approprier ver 5.73 5.47 0.33 0.27 ind:pre:3s;sub:pre:3s; +approprient approprier ver 5.73 5.47 0.05 0.07 ind:pre:3p; +approprier approprier ver 5.73 5.47 1.3 1.76 inf; +approprieraient approprier ver 5.73 5.47 0 0.07 cnd:pre:3p; +approprierais approprier ver 5.73 5.47 0.01 0 cnd:pre:1s; +approprierait approprier ver 5.73 5.47 0 0.07 cnd:pre:3s; +approprieront approprier ver 5.73 5.47 0.02 0 ind:fut:3p; +appropriez approprier ver 5.73 5.47 0.02 0 ind:pre:2p; +approprié approprié adj m s 4.77 3.38 2.84 1.08 +appropriée approprié adj f s 4.77 3.38 0.89 1.15 +appropriées approprié adj f p 4.77 3.38 0.47 0.2 +appropriés approprié adj m p 4.77 3.38 0.57 0.95 +approuva approuver ver 15.39 36.08 0.01 7.43 ind:pas:3s; +approuvai approuver ver 15.39 36.08 0 0.61 ind:pas:1s; +approuvaient approuver ver 15.39 36.08 0.2 0.81 ind:imp:3p; +approuvais approuver ver 15.39 36.08 0.26 0.68 ind:imp:1s;ind:imp:2s; +approuvait approuver ver 15.39 36.08 0.65 4.73 ind:imp:3s; +approuvant approuver ver 15.39 36.08 0.07 1.15 par:pre; +approuve approuver ver 15.39 36.08 4.44 7.5 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +approuvent approuver ver 15.39 36.08 0.97 0.61 ind:pre:3p; +approuver approuver ver 15.39 36.08 1.67 5.61 inf; +approuvera approuver ver 15.39 36.08 0.33 0.14 ind:fut:3s; +approuverai approuver ver 15.39 36.08 0.05 0 ind:fut:1s; +approuverais approuver ver 15.39 36.08 0.12 0 cnd:pre:1s;cnd:pre:2s; +approuverait approuver ver 15.39 36.08 0.39 0.2 cnd:pre:3s; +approuveras approuver ver 15.39 36.08 0.04 0.07 ind:fut:2s; +approuverons approuver ver 15.39 36.08 0.03 0 ind:fut:1p; +approuveront approuver ver 15.39 36.08 0.01 0.07 ind:fut:3p; +approuves approuver ver 15.39 36.08 0.58 0.07 ind:pre:2s; +approuvez approuver ver 15.39 36.08 0.85 0.41 imp:pre:2p;ind:pre:2p; +approuviez approuver ver 15.39 36.08 0.43 0.14 ind:imp:2p; +approuvions approuver ver 15.39 36.08 0.01 0.2 ind:imp:1p; +approuvons approuver ver 15.39 36.08 0.2 0.27 imp:pre:1p;ind:pre:1p; +approuvâmes approuver ver 15.39 36.08 0 0.07 ind:pas:1p; +approuvât approuver ver 15.39 36.08 0.1 0.14 sub:imp:3s; +approuvèrent approuver ver 15.39 36.08 0 0.88 ind:pas:3p; +approuvé approuver ver m s 15.39 36.08 3.26 3.18 par:pas; +approuvée approuver ver f s 15.39 36.08 0.45 0.27 par:pas; +approuvées approuvé adj f p 1.23 0.27 0.21 0 +approuvés approuver ver m p 15.39 36.08 0.18 0.61 par:pas; +approvisionnait approvisionner ver 1.55 2.16 0.02 0.14 ind:imp:3s; +approvisionnant approvisionner ver 1.55 2.16 0.01 0 par:pre; +approvisionne approvisionner ver 1.55 2.16 0.33 0 ind:pre:1s;ind:pre:3s; +approvisionnement approvisionnement nom m s 2.07 2.57 2.02 1.49 +approvisionnements approvisionnement nom m p 2.07 2.57 0.05 1.08 +approvisionnent approvisionner ver 1.55 2.16 0.05 0.07 ind:pre:3p; +approvisionner approvisionner ver 1.55 2.16 0.75 1.01 inf; +approvisionnera approvisionner ver 1.55 2.16 0.01 0 ind:fut:3s; +approvisionniez approvisionner ver 1.55 2.16 0.01 0 ind:imp:2p; +approvisionnons approvisionner ver 1.55 2.16 0.03 0 ind:pre:1p; +approvisionné approvisionner ver m s 1.55 2.16 0.28 0.27 par:pas; +approvisionnée approvisionner ver f s 1.55 2.16 0.01 0.14 par:pas; +approvisionnées approvisionner ver f p 1.55 2.16 0.01 0.27 par:pas; +approvisionnés approvisionner ver m p 1.55 2.16 0.02 0.27 par:pas; +approximatif approximatif adj m s 1.07 3.65 0.39 1.49 +approximatifs approximatif adj m p 1.07 3.65 0.17 0.61 +approximation approximation nom f s 0.24 1.35 0.2 0.54 +approximations approximation nom f p 0.24 1.35 0.04 0.81 +approximative approximatif adj f s 1.07 3.65 0.49 1.35 +approximativement approximativement adv 1.64 1.96 1.64 1.96 +approximatives approximatif adj f p 1.07 3.65 0.02 0.2 +apprécia apprécier ver 77.21 44.12 0 2.57 ind:pas:3s; +appréciable appréciable adj s 0.46 3.18 0.46 2.91 +appréciables appréciable adj m p 0.46 3.18 0 0.27 +appréciai apprécier ver 77.21 44.12 0.07 0.41 ind:pas:1s; +appréciaient apprécier ver 77.21 44.12 0.62 1.22 ind:imp:3p; +appréciais apprécier ver 77.21 44.12 0.7 1.49 ind:imp:1s;ind:imp:2s; +appréciait apprécier ver 77.21 44.12 1.47 6.76 ind:imp:3s; +appréciant apprécier ver 77.21 44.12 0.09 1.15 par:pre; +appréciateur appréciateur nom m s 0 0.54 0 0.41 +appréciation appréciation nom f s 0.94 3.99 0.86 2.97 +appréciations appréciation nom f p 0.94 3.99 0.08 1.01 +appréciatrice appréciateur nom f s 0 0.54 0 0.14 +apprécie apprécier ver 77.21 44.12 32.23 7.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprécient apprécier ver 77.21 44.12 3.28 1.08 ind:pre:3p;sub:pre:3p; +apprécier apprécier ver 77.21 44.12 11.53 11.28 inf; +appréciera apprécier ver 77.21 44.12 1.19 0.2 ind:fut:3s; +apprécierai apprécier ver 77.21 44.12 0.28 0 ind:fut:1s; +apprécieraient apprécier ver 77.21 44.12 0.35 0.07 cnd:pre:3p; +apprécierais apprécier ver 77.21 44.12 3.02 0.14 cnd:pre:1s;cnd:pre:2s; +apprécierait apprécier ver 77.21 44.12 1.41 0.41 cnd:pre:3s; +apprécieras apprécier ver 77.21 44.12 0.34 0 ind:fut:2s; +apprécierez apprécier ver 77.21 44.12 1.27 0.14 ind:fut:2p; +apprécieriez apprécier ver 77.21 44.12 0.19 0 cnd:pre:2p; +apprécierions apprécier ver 77.21 44.12 0.1 0 cnd:pre:1p; +apprécierons apprécier ver 77.21 44.12 0.09 0 ind:fut:1p; +apprécieront apprécier ver 77.21 44.12 0.57 0.27 ind:fut:3p; +apprécies apprécier ver 77.21 44.12 2.19 0.27 ind:pre:2s; +appréciez apprécier ver 77.21 44.12 2.41 0.34 imp:pre:2p;ind:pre:2p; +appréciions apprécier ver 77.21 44.12 0 0.07 ind:imp:1p; +apprécions apprécier ver 77.21 44.12 1.77 0.34 imp:pre:1p;ind:pre:1p; +appréciât apprécier ver 77.21 44.12 0 0.14 sub:imp:3s; +apprécièrent apprécier ver 77.21 44.12 0.11 0.14 ind:pas:3p; +apprécié apprécier ver m s 77.21 44.12 9.32 5.47 par:pas; +appréciée apprécier ver f s 77.21 44.12 1.85 1.82 par:pas; +appréciées apprécier ver f p 77.21 44.12 0.31 0.14 par:pas; +appréciés apprécier ver m p 77.21 44.12 0.45 0.74 par:pas; +appréhendai appréhender ver 4.22 5.34 0 0.07 ind:pas:1s; +appréhendaient appréhender ver 4.22 5.34 0.01 0.14 ind:imp:3p; +appréhendais appréhender ver 4.22 5.34 0.17 1.08 ind:imp:1s;ind:imp:2s; +appréhendait appréhender ver 4.22 5.34 0.04 0.74 ind:imp:3s; +appréhendant appréhender ver 4.22 5.34 0.04 0.68 par:pre; +appréhende appréhender ver 4.22 5.34 0.95 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +appréhendent appréhender ver 4.22 5.34 0.14 0.07 ind:pre:3p; +appréhender appréhender ver 4.22 5.34 1.51 0.95 inf; +appréhendera appréhender ver 4.22 5.34 0.02 0 ind:fut:3s; +appréhenderons appréhender ver 4.22 5.34 0.01 0 ind:fut:1p; +appréhendez appréhender ver 4.22 5.34 0.07 0.07 imp:pre:2p;ind:pre:2p; +appréhendions appréhender ver 4.22 5.34 0 0.07 ind:imp:1p; +appréhendons appréhender ver 4.22 5.34 0.02 0 ind:pre:1p; +appréhendé appréhender ver m s 4.22 5.34 1 0.74 par:pas; +appréhendée appréhender ver f s 4.22 5.34 0.05 0.07 par:pas; +appréhendées appréhender ver f p 4.22 5.34 0.02 0 par:pas; +appréhendés appréhender ver m p 4.22 5.34 0.17 0.14 par:pas; +appréhensif appréhensif adj m s 0.01 0 0.01 0 +appréhension appréhension nom f s 1.28 10.2 0.8 8.92 +appréhensions appréhension nom f p 1.28 10.2 0.48 1.28 +apprêt apprêt nom m s 0.14 1.42 0.11 0.81 +apprêta apprêter ver 9.13 29.46 0.01 0.41 ind:pas:3s; +apprêtai apprêter ver 9.13 29.46 0.01 0.14 ind:pas:1s; +apprêtaient apprêter ver 9.13 29.46 0.26 2.84 ind:imp:3p; +apprêtais apprêter ver 9.13 29.46 1.19 2.91 ind:imp:1s;ind:imp:2s; +apprêtait apprêter ver 9.13 29.46 1.21 11.96 ind:imp:3s; +apprêtant apprêter ver 9.13 29.46 0.07 1.15 par:pre; +apprête apprêter ver 9.13 29.46 4.16 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprêtent apprêter ver 9.13 29.46 0.87 1.35 ind:pre:3p; +apprêter apprêter ver 9.13 29.46 0.1 0.68 inf; +apprêterait apprêter ver 9.13 29.46 0 0.14 cnd:pre:3s; +apprêtes apprêter ver 9.13 29.46 0.29 0 ind:pre:2s;sub:pre:2s; +apprêtez apprêter ver 9.13 29.46 0.39 0.07 imp:pre:2p;ind:pre:2p; +apprêtiez apprêter ver 9.13 29.46 0.16 0 ind:imp:2p; +apprêtions apprêter ver 9.13 29.46 0.05 0.27 ind:imp:1p; +apprêts apprêt nom m p 0.14 1.42 0.03 0.61 +apprêtèrent apprêter ver 9.13 29.46 0.2 0.14 ind:pas:3p; +apprêté apprêté adj m s 0.13 1.22 0.11 0.27 +apprêtée apprêter ver f s 9.13 29.46 0.14 0.07 par:pas; +apprêtées apprêté adj f p 0.13 1.22 0.01 0.14 +apprêtés apprêté adj m p 0.13 1.22 0.01 0.14 +apprîmes apprendre ver 348.47 286.69 0.04 1.08 ind:pas:1p; +apprît apprendre ver 348.47 286.69 0.01 0.81 sub:imp:3s; +appui appui nom m s 8.81 30.81 7.83 28.65 +appui_main appui_main nom m s 0 0.14 0 0.14 +appui_tête appui_tête nom m s 0.01 0 0.01 0 +appuie appuyer ver 40.95 126.01 14.57 15.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +appuie_tête appuie_tête nom m 0.05 0.14 0.05 0.14 +appuient appuyer ver 40.95 126.01 0.6 1.49 ind:pre:3p; +appuiera appuyer ver 40.95 126.01 0.2 0.2 ind:fut:3s; +appuierai appuyer ver 40.95 126.01 0.25 0.07 ind:fut:1s; +appuieraient appuyer ver 40.95 126.01 0 0.07 cnd:pre:3p; +appuierais appuyer ver 40.95 126.01 0.11 0.07 cnd:pre:1s;cnd:pre:2s; +appuierait appuyer ver 40.95 126.01 0.16 0.27 cnd:pre:3s; +appuieras appuyer ver 40.95 126.01 0.21 0 ind:fut:2s; +appuierez appuyer ver 40.95 126.01 0.05 0.07 ind:fut:2p; +appuierons appuyer ver 40.95 126.01 0.01 0 ind:fut:1p; +appuieront appuyer ver 40.95 126.01 0.06 0.07 ind:fut:3p; +appuies appuyer ver 40.95 126.01 2.89 0.41 ind:pre:2s;sub:pre:2s; +appuis appui nom m p 8.81 30.81 0.98 2.16 +appuya appuyer ver 40.95 126.01 0.12 17.84 ind:pas:3s; +appuyai appuyer ver 40.95 126.01 0.1 1.28 ind:pas:1s; +appuyaient appuyer ver 40.95 126.01 0.16 1.35 ind:imp:3p; +appuyais appuyer ver 40.95 126.01 0.19 1.01 ind:imp:1s;ind:imp:2s; +appuyait appuyer ver 40.95 126.01 0.23 11.89 ind:imp:3s; +appuyant appuyer ver 40.95 126.01 1.01 13.18 par:pre; +appuyer appuyer ver 40.95 126.01 9.78 16.49 ind:pre:2p;inf; +appuyez appuyer ver 40.95 126.01 5.55 0.54 imp:pre:2p;ind:pre:2p; +appuyiez appuyer ver 40.95 126.01 0.03 0 ind:imp:2p; +appuyons appuyer ver 40.95 126.01 0.07 0 imp:pre:1p;ind:pre:1p; +appuyâmes appuyer ver 40.95 126.01 0 0.14 ind:pas:1p; +appuyât appuyer ver 40.95 126.01 0 0.07 sub:imp:3s; +appuyèrent appuyer ver 40.95 126.01 0.11 0.54 ind:pas:3p; +appuyé appuyer ver m s 40.95 126.01 4 22.97 par:pas; +appuyée appuyer ver f s 40.95 126.01 0.31 11.82 par:pas; +appuyées appuyer ver f p 40.95 126.01 0.13 3.18 par:pas; +appuyés appuyer ver m p 40.95 126.01 0.05 5.34 par:pas; +appât appât nom m s 6.74 3.92 5.97 3.24 +appâtais appâter ver 1.59 1.55 0.01 0.07 ind:imp:1s; +appâtant appâter ver 1.59 1.55 0.01 0.07 par:pre; +appâte appâter ver 1.59 1.55 0.14 0 ind:pre:1s;ind:pre:3s; +appâtent appâter ver 1.59 1.55 0.02 0.07 ind:pre:3p; +appâter appâter ver 1.59 1.55 0.92 0.68 inf; +appâtera appâter ver 1.59 1.55 0.01 0 ind:fut:3s; +appâterait appâter ver 1.59 1.55 0 0.07 cnd:pre:3s; +appâtes appâter ver 1.59 1.55 0.02 0 ind:pre:2s; +appâtez appâter ver 1.59 1.55 0.02 0 imp:pre:2p;ind:pre:2p; +appâtons appâter ver 1.59 1.55 0.01 0 imp:pre:1p; +appâts appât nom m p 6.74 3.92 0.77 0.68 +appâté appâter ver m s 1.59 1.55 0.31 0.41 par:pas; +appâtée appâter ver f s 1.59 1.55 0 0.14 par:pas; +appâtées appâter ver f p 1.59 1.55 0 0.07 par:pas; +appâtés appâter ver m p 1.59 1.55 0.11 0 par:pas; +appétence appétence nom f s 0 0.34 0 0.27 +appétences appétence nom f p 0 0.34 0 0.07 +appétissant appétissant adj m s 1.74 2.77 0.77 0.88 +appétissante appétissant adj f s 1.74 2.77 0.59 1.01 +appétissantes appétissant adj f p 1.74 2.77 0.32 0.41 +appétissants appétissant adj m p 1.74 2.77 0.06 0.47 +appétit appétit nom m s 20.98 26.76 20.68 23.78 +appétits appétit nom m p 20.98 26.76 0.3 2.97 +aprèm aprèm nom f s 0.22 1.35 0.22 0.07 +aprème aprèm nom f s 0.22 1.35 0 1.28 +après après pre 593.92 821.55 593.92 821.55 +après_coup après_coup nom m s 0.02 0 0.02 0 +après_demain après_demain adv 11.77 6.76 11.77 6.76 +après_déjeuner après_déjeuner ver 0 0.14 0 0.14 inf; +après_dîner après_dîner nom m s 0.02 0.74 0.02 0.61 +après_dîner après_dîner nom m p 0.02 0.74 0 0.14 +après_guerre après_guerre nom s 0.73 3.24 0.73 3.24 +après_mort après_mort nom f s 0 0.07 0 0.07 +après_rasage après_rasage nom m s 0.45 0 0.45 0 +après_repas après_repas nom m 0.01 0.07 0.01 0.07 +après_shampoing après_shampoing nom m s 0.04 0 0.04 0 +après_shampooing après_shampooing nom m s 0.04 0.07 0.04 0.07 +après_ski après_ski nom m s 0.06 0.2 0.06 0.2 +après_vente après_vente adj s 0.05 0 0.05 0 +apte apte adj s 2.93 4.59 1.77 2.77 +aptes apte adj p 2.93 4.59 1.16 1.82 +aptitude aptitude nom f s 2.74 4.59 1.76 2.7 +aptitudes aptitude nom f p 2.74 4.59 0.98 1.89 +aptère aptère adj s 0 0.14 0 0.07 +aptères aptère adj p 0 0.14 0 0.07 +apurait apurer ver 0.01 0.41 0 0.07 ind:imp:3s; +apurer apurer ver 0.01 0.41 0.01 0.2 inf; +apuré apurer ver m s 0.01 0.41 0 0.07 par:pas; +apurés apurer ver m p 0.01 0.41 0 0.07 par:pas; +apâli apâlir ver m s 0 0.14 0 0.07 par:pas; +apâlis apâlir ver m p 0 0.14 0 0.07 par:pas; +apéritif apéritif nom m s 3.29 9.46 2.57 7.09 +apéritifs apéritif nom m p 3.29 9.46 0.72 2.36 +apéritive apéritif adj f s 0.28 1.28 0 0.14 +apéritives apéritif adj f p 0.28 1.28 0 0.14 +apéro apéro nom m s 0.78 4.05 0.61 3.45 +apéros apéro nom m p 0.78 4.05 0.17 0.61 +apôtre apôtre nom m s 2.89 6.28 1.36 2.03 +apôtres apôtre nom m p 2.89 6.28 1.53 4.26 +aquaculture aquaculture nom f s 0.01 0 0.01 0 +aquagym aquagym nom f s 0.04 0 0.04 0 +aquaplane aquaplane nom m s 0.02 0.07 0.02 0.07 +aquarellait aquareller ver 0 0.07 0 0.07 ind:imp:3s; +aquarelle aquarelle nom f s 0.23 8.85 0.14 6.55 +aquarelles aquarelle nom f p 0.23 8.85 0.09 2.3 +aquarelliste aquarelliste nom s 0 0.14 0 0.07 +aquarellistes aquarelliste nom p 0 0.14 0 0.07 +aquarellés aquarellé adj m p 0 0.07 0 0.07 +aquariophilie aquariophilie nom f s 0.03 0 0.03 0 +aquarium aquarium nom m s 4.26 5.88 3.94 5.2 +aquariums aquarium nom m p 4.26 5.88 0.32 0.68 +aquatinte aquatinte nom f s 0.1 0 0.1 0 +aquatique aquatique adj s 1.52 1.89 1.18 0.88 +aquatiques aquatique adj p 1.52 1.89 0.34 1.01 +aquavit aquavit nom m s 0.18 0.14 0.18 0.14 +aqueduc aqueduc nom m s 0.44 1.15 0.23 0.81 +aqueducs aqueduc nom m p 0.44 1.15 0.21 0.34 +aqueuse aqueux adj f s 0.09 0.88 0.05 0.41 +aqueuses aqueux adj f p 0.09 0.88 0.01 0.14 +aqueux aqueux adj m 0.09 0.88 0.02 0.34 +aquifère aquifère adj f s 0.01 0 0.01 0 +aquilin aquilin adj m s 0.02 1.08 0.02 1.08 +aquilon aquilon nom m s 0 0.54 0 0.47 +aquilons aquilon nom m p 0 0.54 0 0.07 +aquitain aquitain adj m s 0 0.07 0 0.07 +ara ara nom m s 0.85 0.54 0.81 0.41 +arabe arabe nom s 13.62 32.64 6.71 17.57 +arabes arabe nom p 13.62 32.64 6.91 15.07 +arabesque arabesque nom f s 0.1 4.53 0.08 0.74 +arabesques arabesque nom f p 0.1 4.53 0.02 3.78 +arabica arabica nom m s 0.16 0.27 0.16 0.14 +arabicas arabica nom m p 0.16 0.27 0 0.14 +arabique arabique adj s 0.05 0.27 0.05 0.27 +arabisant arabiser ver 0 0.2 0 0.14 par:pre; +arabisants arabisant nom m p 0 0.27 0 0.27 +arabisé arabiser ver m s 0 0.2 0 0.07 par:pas; +arable arable adj f s 0.18 0 0.04 0 +arables arable adj p 0.18 0 0.13 0 +arac arac nom m s 0.03 0 0.03 0 +arachide arachide nom f s 0.51 0.61 0.26 0.34 +arachides arachide nom f p 0.51 0.61 0.25 0.27 +arachnide arachnide nom m s 0.39 0 0.06 0 +arachnides arachnide nom m p 0.39 0 0.33 0 +arachnoïde arachnoïde nom f s 0.01 0.14 0 0.07 +arachnoïdes arachnoïde nom f p 0.01 0.14 0.01 0.07 +arachnéen arachnéen adj m s 0.02 0.68 0.02 0.2 +arachnéenne arachnéen adj f s 0.02 0.68 0 0.27 +arachnéennes arachnéen adj f p 0.02 0.68 0 0.2 +aragonais aragonais nom m 0 0.2 0 0.2 +aragonaise aragonais adj f s 0 0.2 0 0.14 +aragonite aragonite nom f s 0.01 0 0.01 0 +araigne araigne nom f s 0 0.07 0 0.07 +araignée araignée nom f s 18.2 17.84 12.21 12.36 +araignée_crabe araignée_crabe nom f s 0 0.07 0 0.07 +araignées araignée nom f p 18.2 17.84 6 5.47 +araire araire nom m s 0.01 0 0.01 0 +arak arak nom m s 0.41 0.07 0.41 0.07 +araldite araldite nom m 0.01 0 0.01 0 +aralia aralia nom m s 0 0.07 0 0.07 +aramide aramide adj f s 0.01 0 0.01 0 +aramon aramon nom m s 0 0.41 0 0.41 +araméen araméen nom m s 0.45 0.2 0.45 0.2 +araméenne araméen adj f s 0.05 0.07 0.01 0 +aranéeuse aranéeux adj f s 0 0.07 0 0.07 +arapèdes arapède nom m p 0 0.2 0 0.2 +aras ara nom m p 0.85 0.54 0.04 0.14 +arasant araser ver 0.1 0.14 0 0.07 par:pre; +araser araser ver 0.1 0.14 0.1 0 inf; +arasée araser ver f s 0.1 0.14 0 0.07 par:pas; +aratoire aratoire adj m s 0 0.47 0 0.07 +aratoires aratoire adj m p 0 0.47 0 0.41 +araucan araucan nom m s 0 0.07 0 0.07 +araucanien araucanien adj m s 0 0.27 0 0.07 +araucaniennes araucanien adj f p 0 0.27 0 0.07 +araucaniens araucanien adj m p 0 0.27 0 0.14 +araucaria araucaria nom m s 0.01 0.54 0.01 0.34 +araucarias araucaria nom m p 0.01 0.54 0 0.2 +arbalète arbalète nom f s 0.55 1.55 0.52 1.35 +arbalètes arbalète nom f p 0.55 1.55 0.03 0.2 +arbalétrier arbalétrier nom m s 0.01 0.88 0 0.14 +arbalétriers arbalétrier nom m p 0.01 0.88 0.01 0.74 +arbi arbi nom m s 0 0.27 0 0.14 +arbis arbi nom m p 0 0.27 0 0.14 +arbitrage arbitrage nom m s 0.52 0.88 0.48 0.88 +arbitrages arbitrage nom m p 0.52 0.88 0.04 0 +arbitraire arbitraire adj s 1.29 3.78 0.73 2.5 +arbitrairement arbitrairement adv 0.12 0.95 0.12 0.95 +arbitraires arbitraire adj p 1.29 3.78 0.56 1.28 +arbitrait arbitrer ver 0.9 1.08 0 0.27 ind:imp:3s; +arbitrale arbitral adj f s 0.01 0 0.01 0 +arbitre arbitre nom s 7.59 5.34 6.92 5.2 +arbitrer arbitrer ver 0.9 1.08 0.34 0.27 inf; +arbitrera arbitrer ver 0.9 1.08 0.02 0.07 ind:fut:3s; +arbitres arbitre nom p 7.59 5.34 0.67 0.14 +arbitré arbitrer ver m s 0.9 1.08 0.01 0.14 par:pas; +arbitrée arbitrer ver f s 0.9 1.08 0 0.07 par:pas; +arbitrées arbitrer ver f p 0.9 1.08 0.01 0.07 par:pas; +arbois arbois nom s 0 0.07 0 0.07 +arbora arborer ver 0.53 10.61 0.01 0.14 ind:pas:3s; +arboraient arborer ver 0.53 10.61 0.04 1.42 ind:imp:3p; +arborais arborer ver 0.53 10.61 0 0.2 ind:imp:1s; +arborait arborer ver 0.53 10.61 0.08 3.72 ind:imp:3s; +arborant arborer ver 0.53 10.61 0.06 1.55 par:pre; +arbore arborer ver 0.53 10.61 0.1 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arborent arborer ver 0.53 10.61 0.12 0.54 ind:pre:3p; +arborer arborer ver 0.53 10.61 0.06 1.08 inf; +arborerait arborer ver 0.53 10.61 0 0.07 cnd:pre:3s; +arbores arborer ver 0.53 10.61 0 0.07 ind:pre:2s; +arborescence arborescence nom f s 0.02 0.2 0.02 0.07 +arborescences arborescence nom f p 0.02 0.2 0 0.14 +arborescent arborescent adj m s 0.16 0.27 0.02 0 +arborescentes arborescent adj f p 0.16 0.27 0 0.2 +arborescents arborescent adj m p 0.16 0.27 0.14 0.07 +arboretum arboretum nom m s 0.09 0 0.09 0 +arborez arborer ver 0.53 10.61 0.03 0 imp:pre:2p;ind:pre:2p; +arboricole arboricole adj f s 0.01 0 0.01 0 +arboriculteur arboriculteur nom m s 0.01 0 0.01 0 +arboriculture arboriculture nom f s 0.01 0.07 0.01 0.07 +arborions arborer ver 0.53 10.61 0 0.07 ind:imp:1p; +arborisations arborisation nom f p 0 0.07 0 0.07 +arborât arborer ver 0.53 10.61 0.01 0.07 sub:imp:3s; +arborèrent arborer ver 0.53 10.61 0 0.07 ind:pas:3p; +arboré arborer ver m s 0.53 10.61 0.01 0.41 par:pas; +arborée arborer ver f s 0.53 10.61 0 0.14 par:pas; +arborés arborer ver m p 0.53 10.61 0 0.14 par:pas; +arbouse arbouse nom f s 0.1 0.41 0.1 0 +arbouses arbouse nom f p 0.1 0.41 0 0.41 +arbousiers arbousier nom m p 0.14 0.41 0.14 0.41 +arbre arbre nom m s 81.69 208.58 49.29 67.16 +arbres arbre nom m p 81.69 208.58 32.4 141.42 +arbres_refuge arbres_refuge nom m p 0 0.07 0 0.07 +arbrisseau arbrisseau nom m s 0.26 1.28 0.22 0.34 +arbrisseaux arbrisseau nom m p 0.26 1.28 0.04 0.95 +arbuste arbuste nom m s 1 7.3 0.28 1.89 +arbustes arbuste nom m p 1 7.3 0.71 5.41 +arc arc nom m s 5.25 17.3 4.52 14.05 +arc_bouter arc_bouter ver 0.17 5 0 0.47 ind:pas:3s; +arc_bouter arc_bouter ver 0.17 5 0.04 0.27 ind:imp:1s;ind:imp:2s; +arc_bouter arc_bouter ver 0.17 5 0 0.34 ind:imp:3s; +arc_boutant arc_boutant nom m s 0.14 0.54 0.14 0.2 +arc_boutant arc_boutant nom m p 0.14 0.54 0.01 0 +arc_bouter arc_bouter ver 0.17 5 0.1 0.88 ind:pre:1s;ind:pre:3s; +arc_boutement arc_boutement nom m s 0 0.07 0 0.07 +arc_bouter arc_bouter ver 0.17 5 0.01 0.2 ind:pre:3p; +arc_bouter arc_bouter ver 0.17 5 0 0.07 inf; +arc_bouter arc_bouter ver 0.17 5 0.01 0 ind:fut:3s; +arc_bouter arc_bouter ver 0.17 5 0 0.07 ind:pas:3p; +arc_bouter arc_bouter ver m s 0.17 5 0.01 1.15 par:pas; +arc_bouter arc_bouter ver f s 0.17 5 0 0.41 par:pas; +arc_bouter arc_bouter ver f p 0.17 5 0 0.27 par:pas; +arc_bouter arc_bouter ver m p 0.17 5 0 0.27 par:pas; +arc_en_ciel arc_en_ciel nom m s 3 4.46 2.56 3.92 +arcade arcade nom f s 1.25 12.36 0.91 2.23 +arcades arcade nom f p 1.25 12.36 0.35 10.14 +arcadien arcadien adj m s 0.1 0.2 0.1 0.07 +arcadienne arcadien adj f s 0.1 0.2 0 0.07 +arcadiens arcadien nom m p 0.01 0 0.01 0 +arcan arcan nom m s 0.02 0.74 0 0.27 +arcane arcane nom m s 0.09 1.35 0.05 0.74 +arcanes arcane nom m p 0.09 1.35 0.04 0.61 +arcans arcan nom m p 0.02 0.74 0.02 0.47 +arcatures arcature nom f p 0 0.07 0 0.07 +arceau arceau nom m s 0.17 3.04 0.14 0.27 +arceaux arceau nom m p 0.17 3.04 0.03 2.77 +archange archange nom m s 1.3 4.46 0.98 3.58 +archanges archange nom m p 1.3 4.46 0.32 0.88 +archangélique archangélique adj m s 0 0.2 0 0.2 +archaïque archaïque adj s 1.15 2.5 0.88 1.96 +archaïques archaïque adj p 1.15 2.5 0.27 0.54 +archaïsant archaïsant nom m s 0 0.07 0 0.07 +archaïsme archaïsme nom m s 0.01 0.54 0.01 0.54 +arche arche nom f s 3.19 7.16 2.83 5.68 +archer archer nom m s 3.77 2.5 2.24 0.41 +archers archer nom m p 3.77 2.5 1.53 2.03 +arches arche nom f p 3.19 7.16 0.36 1.49 +archet archet nom m s 0.47 2.3 0.46 1.96 +archets archet nom m p 0.47 2.3 0.01 0.34 +archevêché archevêché nom m s 0.4 1.08 0.4 1.01 +archevêchés archevêché nom m p 0.4 1.08 0 0.07 +archevêque archevêque nom m s 3.42 6.28 3.23 5.81 +archevêques archevêque nom m p 3.42 6.28 0.2 0.47 +archi archi nom m s 0.75 0.74 0.75 0.74 +archi_blet archi_blet adj m s 0 0.07 0 0.07 +archi_chiant archi_chiant adj m p 0.01 0 0.01 0 +archi_connu archi_connu adj m s 0.01 0.07 0.01 0 +archi_connu archi_connu adj m p 0.01 0.07 0 0.07 +archiduc archiduc nom f s 0.48 4.46 0.01 0 +archi_dégueu archi_dégueu adj s 0 0.07 0 0.07 +archi_faux archi_faux adj m 0.05 0 0.05 0 +archi_libre archi_libre adj f s 0 0.07 0 0.07 +archi_mortels archi_mortels nom m 0.01 0 0.01 0 +archi_mort archi_mort nom f p 0 0.07 0 0.07 +archi_méfiance archi_méfiance nom f s 0 0.07 0 0.07 +archi_nul archi_nul nom m s 0.01 0 0.01 0 +archi_nuls archi_nuls nom m 0.23 0 0.23 0 +archi_plein archi_plein nom m s 0 0.07 0 0.07 +archi_prouvé archi_prouvé adj m s 0 0.07 0 0.07 +archi_prudent archi_prudent nom m s 0 0.07 0 0.07 +archi_ringard archi_ringard nom m s 0 0.07 0 0.07 +archi_sophistiqué archi_sophistiqué adj f s 0.01 0 0.01 0 +archi_sèche archi_sèche adj f p 0.01 0 0.01 0 +archi_usé archi_usé adj m s 0.01 0 0.01 0 +archi_vieux archi_vieux adj m 0 0.07 0 0.07 +archiatre archiatre nom m s 0 0.2 0 0.2 +archicomble archicomble adj s 0.01 0.14 0.01 0.07 +archicombles archicomble adj p 0.01 0.14 0 0.07 +archiconnu archiconnu adj m s 0 0.07 0 0.07 +archidiacre archidiacre nom m s 0.26 0.07 0.26 0.07 +archidiocèse archidiocèse nom m s 0.19 0 0.19 0 +archiduc archiduc nom m s 0.48 4.46 0.36 4.05 +archiduchesse archiduc nom f s 0.48 4.46 0.11 0.27 +archiducs archiduc nom m p 0.48 4.46 0 0.14 +archie archi-e nom m 0.01 0 0.01 0 +archifaux archifaux adj m 0.04 0.07 0.04 0.07 +archimandrite archimandrite nom m s 0 0.61 0 0.61 +archinulles archinul adj f p 0 0.07 0 0.07 +archipel archipel nom m s 0.49 3.85 0.48 2.97 +archipels archipel nom m p 0.49 3.85 0.01 0.88 +archiprêtre archiprêtre nom m s 0.01 0.95 0.01 0.95 +architecte architecte nom s 9.98 7.7 8.39 4.93 +architectes architecte nom f p 9.98 7.7 1.6 2.77 +architectonie architectonie nom f s 0.14 0 0.14 0 +architectonique architectonique adj s 0 0.14 0 0.14 +architectural architectural adj m s 0.28 2.7 0.15 0.88 +architecturale architectural adj f s 0.28 2.7 0.08 1.01 +architecturalement architecturalement adv 0.01 0.07 0.01 0.07 +architecturales architectural adj f p 0.28 2.7 0.01 0.74 +architecturant architecturer ver 0.11 0.2 0 0.07 par:pre; +architecturaux architectural adj m p 0.28 2.7 0.04 0.07 +architecture architecture nom f s 4.07 12.23 3.9 10.47 +architecturent architecturer ver 0.11 0.2 0 0.07 ind:pre:3p; +architectures architecture nom f p 4.07 12.23 0.17 1.76 +architecturées architecturer ver f p 0.11 0.2 0 0.07 par:pas; +architrave architrave nom f s 0 0.2 0 0.2 +archivage archivage nom m s 0.06 0 0.06 0 +archive archive nom f s 9.42 8.51 0.13 0.2 +archiver archiver ver 0.9 0.07 0.13 0.07 inf; +archives archive nom f p 9.42 8.51 9.29 8.31 +archivez archiver ver 0.9 0.07 0.02 0 imp:pre:2p;ind:pre:2p; +archivions archiver ver 0.9 0.07 0.1 0 ind:imp:1p; +archiviste archiviste nom s 0.41 1.55 0.41 1.22 +archiviste_paléographe archiviste_paléographe nom s 0 0.14 0 0.07 +archivistes archiviste nom p 0.41 1.55 0.01 0.34 +archiviste_paléographe archiviste_paléographe nom p 0 0.14 0 0.07 +archivolte archivolte nom f s 0 0.41 0 0.14 +archivoltes archivolte nom f p 0 0.41 0 0.27 +archivons archiver ver 0.9 0.07 0.01 0 ind:pre:1p; +archivé archiver ver m s 0.9 0.07 0.33 0 par:pas; +archivées archiver ver f p 0.9 0.07 0.02 0 par:pas; +archivés archiver ver m p 0.9 0.07 0.07 0 par:pas; +archiépiscopal archiépiscopal adj m s 0 0.07 0 0.07 +archonte archonte nom m s 0 0.14 0 0.14 +archères archer nom f p 3.77 2.5 0 0.07 +archéologie archéologie nom f s 1.42 1.69 1.42 1.69 +archéologique archéologique adj s 0.76 0.81 0.52 0.41 +archéologiques archéologique adj p 0.76 0.81 0.24 0.41 +archéologue archéologue nom s 2.11 4.59 1.19 2.64 +archéologues archéologue nom p 2.11 4.59 0.92 1.96 +archéoptéryx archéoptéryx nom m 0.05 0.2 0.05 0.2 +archétypale archétypal adj f s 0.11 0 0.01 0 +archétypaux archétypal adj m p 0.11 0 0.1 0 +archétype archétype nom m s 0.67 0.88 0.61 0.68 +archétypes archétype nom m p 0.67 0.88 0.05 0.2 +arcs arc nom m p 5.25 17.3 0.73 3.24 +arc_boutant arc_boutant nom m p 0.14 0.54 0 0.34 +arc_en_ciel arc_en_ciel nom m p 3 4.46 0.44 0.54 +arctique arctique adj s 0.39 0.61 0.37 0.27 +arctiques arctique adj p 0.39 0.61 0.02 0.34 +ardais arder ver 0.51 0.34 0 0.07 ind:imp:1s; +ardait arder ver 0.51 0.34 0 0.14 ind:imp:3s; +ardant arder ver 0.51 0.34 0.01 0 par:pre; +arde arder ver 0.51 0.34 0.38 0.07 imp:pre:2s;ind:pre:3s; +ardemment ardemment adv 1.39 5.2 1.39 5.2 +ardennais ardennais nom m 0.2 0.34 0.2 0.27 +ardennaise ardennais nom f s 0.2 0.34 0 0.07 +ardent ardent adj m s 8.43 21.89 4.16 6.15 +ardente ardent adj f s 8.43 21.89 2.12 8.85 +ardentes ardent adj f p 8.43 21.89 0.97 2.43 +ardents ardent adj m p 8.43 21.89 1.17 4.46 +arder arder ver 0.51 0.34 0.11 0 inf; +ardeur ardeur nom f s 7.08 25.74 5.6 23.24 +ardeurs ardeur nom f p 7.08 25.74 1.47 2.5 +ardillon ardillon nom m s 0 0.68 0 0.54 +ardillons ardillon nom m p 0 0.68 0 0.14 +ardin ardin nom m s 0.01 0.07 0.01 0.07 +ardito ardito adv 0 0.07 0 0.07 +ardoise ardoise nom f s 3.45 9.8 3.35 5.95 +ardoises ardoise nom f p 3.45 9.8 0.1 3.85 +ardoisière ardoisier nom f s 0 0.07 0 0.07 +ardoisée ardoisé adj f s 0 0.14 0 0.07 +ardoisées ardoiser ver f p 0 0.07 0 0.07 par:pas; +ardoisés ardoisé adj m p 0 0.14 0 0.07 +ardre ardre ver 0 0.07 0 0.07 inf; +ardu ardu adj m s 1.42 5 0.61 2.43 +ardue ardu adj f s 1.42 5 0.61 1.42 +ardues ardu adj f p 1.42 5 0.06 0.34 +ardus ardu adj m p 1.42 5 0.14 0.81 +ardé arder ver m s 0.51 0.34 0 0.07 par:pas; +ardéchois ardéchois nom m 0 0.07 0 0.07 +ardéchoise ardéchois adj f s 0 0.14 0 0.14 +ardûment ardûment adv 0 0.14 0 0.14 +are are nom m s 15.8 1.28 15.55 1.22 +area area nom f s 0.12 0.07 0.12 0.07 +arec arec nom m s 0.27 0.07 0.27 0.07 +ares are nom m p 15.8 1.28 0.25 0.07 +arganier arganier nom m s 0 0.34 0 0.07 +arganiers arganier nom m p 0 0.34 0 0.27 +argans argan nom m p 0 0.07 0 0.07 +argent argent nom m s 515.1 194.39 515.04 194.32 +argentait argenter ver 0.62 3.99 0 0.34 ind:imp:3s; +argente argenter ver 0.62 3.99 0.17 0.14 ind:pre:3s; +argenterie argenterie nom f s 3.11 3.99 3.01 3.92 +argenteries argenterie nom f p 3.11 3.99 0.1 0.07 +argentier argentier nom m s 0 0.41 0 0.41 +argentifères argentifère adj f p 0 0.14 0 0.14 +argentin argentin adj m s 2.23 5.47 1.26 2.57 +argentine argentin adj f s 2.23 5.47 0.46 1.62 +argentines argentin adj f p 2.23 5.47 0.03 0.68 +argentins argentin nom m p 1.83 1.49 0.79 0.34 +argenton argenton nom m s 0 0.07 0 0.07 +argents argent nom m p 515.1 194.39 0.06 0.07 +argenté argenté adj m s 1.87 10.54 0.68 3.99 +argentée argenté adj f s 1.87 10.54 0.53 1.89 +argentées argenté adj f p 1.87 10.54 0.52 1.96 +argentés argenté adj m p 1.87 10.54 0.14 2.7 +argile argile nom f s 4.26 9.66 4.25 9.32 +argiles argile nom f p 4.26 9.66 0.01 0.34 +argileuse argileux adj f s 0 0.54 0 0.2 +argileux argileux adj m s 0 0.54 0 0.34 +argilière argilière nom f s 0.02 0 0.02 0 +argol argol nom m s 0 0.14 0 0.14 +argon argon nom m s 0.38 0.07 0.38 0.07 +argonaute argonaute nom m s 0.1 0.07 0.1 0.07 +argot argot nom m s 1.06 4.86 1.06 4.46 +argotique argotique adj s 0.05 0.95 0.05 0.68 +argotiques argotique adj p 0.05 0.95 0 0.27 +argots argot nom m p 1.06 4.86 0 0.41 +argougnasses argougner ver 0 0.27 0 0.07 sub:imp:2s; +argougne argougner ver 0 0.27 0 0.2 ind:pre:1s; +argousin argousin nom m s 0 1.35 0 0.61 +argousins argousin nom m p 0 1.35 0 0.74 +argua arguer ver 0.27 1.89 0 0.2 ind:pas:3s; +arguais arguer ver 0.27 1.89 0.01 0 ind:imp:2s; +arguait arguer ver 0.27 1.89 0 0.07 ind:imp:3s; +arguant arguer ver 0.27 1.89 0.08 1.15 par:pre; +argue arguer ver 0.27 1.89 0.11 0.07 imp:pre:2s;ind:pre:3s; +arguer arguer ver 0.27 1.89 0.05 0.41 inf; +argument argument nom m s 9.58 18.18 5.07 8.24 +argumenta argumenter ver 0.88 1.49 0 0.14 ind:pas:3s; +argumentaire argumentaire nom m s 0.13 0 0.13 0 +argumentait argumenter ver 0.88 1.49 0.03 0.2 ind:imp:3s; +argumentant argumenter ver 0.88 1.49 0.03 0 par:pre; +argumentateur argumentateur nom m s 0.01 0 0.01 0 +argumentatif argumentatif nom m s 0.02 0 0.02 0 +argumentation argumentation nom f s 0.54 0.88 0.44 0.68 +argumentations argumentation nom f p 0.54 0.88 0.1 0.2 +argumente argumenter ver 0.88 1.49 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +argumentent argumenter ver 0.88 1.49 0.04 0 ind:pre:3p; +argumenter argumenter ver 0.88 1.49 0.61 0.54 inf; +argumenterai argumenter ver 0.88 1.49 0.02 0 ind:fut:1s; +argumentes argumenter ver 0.88 1.49 0.01 0 ind:pre:2s; +argumentez argumenter ver 0.88 1.49 0.03 0 imp:pre:2p;ind:pre:2p; +arguments argument nom m p 9.58 18.18 4.51 9.93 +argumenté argumenter ver m s 0.88 1.49 0.05 0.14 par:pas; +argus argus nom m 0.09 0.68 0.09 0.68 +argutie argutie nom f s 0.03 0.54 0 0.14 +arguties argutie nom f p 0.03 0.54 0.03 0.41 +argué arguer ver m s 0.27 1.89 0.02 0 par:pas; +aria aria nom s 0.81 0.47 0.48 0.34 +arianisme arianisme nom m s 0 0.07 0 0.07 +arias aria nom m p 0.81 0.47 0.33 0.14 +aride aride adj s 1.3 6.15 1.17 4.26 +arides aride adj p 1.3 6.15 0.14 1.89 +aridité aridité nom f s 0.14 1.55 0.14 1.55 +arien arien adj m s 0.72 0.07 0.29 0 +arienne arien adj f s 0.72 0.07 0.44 0 +ariens arien nom m p 0.04 0.07 0.04 0 +ariettes ariette nom f p 0 0.07 0 0.07 +arioso arioso nom m s 0 0.14 0 0.14 +aristarque aristarque nom m s 0 0.14 0 0.07 +aristarques aristarque nom m p 0 0.14 0 0.07 +aristo aristo nom s 0.4 1.08 0.28 0.81 +aristocrate aristocrate nom s 3.13 3.58 1.76 2.23 +aristocrates aristocrate nom p 3.13 3.58 1.37 1.35 +aristocratie aristocratie nom f s 1.6 3.92 1.6 3.92 +aristocratique aristocratique adj s 0.15 2.91 0.12 2.36 +aristocratiquement aristocratiquement adv 0 0.07 0 0.07 +aristocratiques aristocratique adj p 0.15 2.91 0.03 0.54 +aristocratisme aristocratisme nom m s 0 0.07 0 0.07 +aristoloche aristoloche nom f s 0 0.14 0 0.07 +aristoloches aristoloche nom f p 0 0.14 0 0.07 +aristos aristo nom p 0.4 1.08 0.12 0.27 +aristotélicien aristotélicien adj m s 0.01 0.14 0 0.07 +aristotélicienne aristotélicien adj f s 0.01 0.14 0.01 0.07 +arithmomètre arithmomètre nom m s 0 0.07 0 0.07 +arithmétique arithmétique nom f s 0.57 2.23 0.57 2.23 +arithmétiquement arithmétiquement adv 0.01 0.07 0.01 0.07 +arithmétiques arithmétique adj p 0.2 0.47 0 0.07 +ariégeois ariégeois adj m s 0 0.14 0 0.07 +ariégeoise ariégeois adj f s 0 0.14 0 0.07 +arkose arkose nom f s 0 0.14 0 0.14 +arlequin arlequin nom m s 0.04 0.47 0.04 0.07 +arlequins arlequin nom m p 0.04 0.47 0 0.41 +arlésien arlésien nom m s 0.02 0.14 0 0.07 +arlésienne arlésienne nom f s 0 0.2 0 0.2 +arlésiennes arlésien nom f p 0.02 0.14 0.02 0.07 +arma armer ver 29.77 28.45 0.38 1.22 ind:pas:3s; +armada armada nom f s 1.05 1.35 1.04 1.15 +armadas armada nom f p 1.05 1.35 0.01 0.2 +armadille armadille nom f s 0 0.07 0 0.07 +armagnac armagnac nom m s 0.66 0.74 0.66 0.61 +armagnacs armagnac nom m p 0.66 0.74 0 0.14 +armai armer ver 29.77 28.45 0 0.07 ind:pas:1s; +armaient armer ver 29.77 28.45 0 0.14 ind:imp:3p; +armait armer ver 29.77 28.45 0.16 0.54 ind:imp:3s; +armant armer ver 29.77 28.45 0.01 0.27 par:pre; +armateur armateur nom m s 0.59 2.3 0.56 1.42 +armateurs armateur nom m p 0.59 2.3 0.03 0.88 +armature armature nom f s 0.77 2.91 0.54 2.3 +armaturent armaturer ver 0 0.07 0 0.07 ind:pre:3p; +armatures armature nom f p 0.77 2.91 0.23 0.61 +arme arme nom f s 220.22 111.49 114.4 37.09 +arme_miracle arme_miracle nom f s 0.1 0 0.1 0 +armement armement nom m s 3.34 9.8 3.01 9.05 +armements armement nom m p 3.34 9.8 0.33 0.74 +arment armer ver 29.77 28.45 0.17 0.2 ind:pre:3p; +armer armer ver 29.77 28.45 1.33 2.64 inf; +armeraient armer ver 29.77 28.45 0 0.07 cnd:pre:3p; +armerais armer ver 29.77 28.45 0.01 0.07 cnd:pre:1s; +armeront armer ver 29.77 28.45 0.01 0 ind:fut:3p; +armes arme nom f p 220.22 111.49 105.82 74.39 +armez armer ver 29.77 28.45 2.68 0.07 imp:pre:2p;ind:pre:2p; +armistice armistice nom m s 1.05 15.54 1.05 14.93 +armistices armistice nom m p 1.05 15.54 0 0.61 +armoire armoire nom f s 9.79 45.54 9.05 38.58 +armoires armoire nom f p 9.79 45.54 0.73 6.96 +armoirie armoirie nom f s 0.36 1.89 0.01 0.14 +armoiries armoirie nom f p 0.36 1.89 0.35 1.76 +armoise armoise nom f s 0.38 0.27 0.36 0.2 +armoises armoise nom f p 0.38 0.27 0.01 0.07 +armon armon nom m s 0.01 0 0.01 0 +armons armer ver 29.77 28.45 0.14 0.2 imp:pre:1p;ind:pre:1p; +armorial armorial nom m s 0 0.34 0 0.34 +armoricaine armoricain adj f s 0 0.2 0 0.2 +armorié armorier ver m s 0 0.61 0 0.27 par:pas; +armoriée armorier ver f s 0 0.61 0 0.07 par:pas; +armoriées armorier ver f p 0 0.61 0 0.14 par:pas; +armoriés armorier ver m p 0 0.61 0 0.14 par:pas; +armure armure nom f s 5.46 8.11 5 5.47 +armurerie armurerie nom f s 0.94 0.27 0.89 0.27 +armureries armurerie nom f p 0.94 0.27 0.05 0 +armures armure nom f p 5.46 8.11 0.46 2.64 +armurier armurier nom m s 0.75 1.69 0.6 1.22 +armuriers armurier nom m p 0.75 1.69 0.14 0.47 +armât armer ver 29.77 28.45 0 0.07 sub:imp:3s; +armé armer ver m s 29.77 28.45 10.97 8.31 par:pas; +armée armée nom f s 101.07 146.55 93.97 114.46 +armées armée nom f p 101.07 146.55 7.1 32.09 +arménien arménien adj m s 1.07 0.95 0.21 0.27 +arménienne arménien adj f s 1.07 0.95 0.28 0.54 +arméniennes arménien adj f p 1.07 0.95 0 0.07 +arméniens arménien adj m p 1.07 0.95 0.58 0.07 +arménoïde arménoïde adj m s 0 0.07 0 0.07 +arméria arméria nom f s 0 0.14 0 0.07 +armérias arméria nom f p 0 0.14 0 0.07 +armés armer ver m p 29.77 28.45 6.7 7.91 par:pas; +arnaquait arnaquer ver 6.37 0.68 0.15 0 ind:imp:3s; +arnaquant arnaquer ver 6.37 0.68 0.16 0 par:pre; +arnaque arnaque nom f s 6.27 5.14 5.49 4.59 +arnaquent arnaquer ver 6.37 0.68 0.32 0 ind:pre:3p; +arnaquer arnaquer ver 6.37 0.68 2.65 0.47 inf; +arnaquera arnaquer ver 6.37 0.68 0.02 0 ind:fut:3s; +arnaques arnaque nom f p 6.27 5.14 0.78 0.54 +arnaqueur arnaqueur nom m s 1.47 0.54 0.99 0.07 +arnaqueurs arnaqueur nom m p 1.47 0.54 0.32 0.47 +arnaqueuse arnaqueur nom f s 1.47 0.54 0.16 0 +arnaquez arnaquer ver 6.37 0.68 0.2 0 imp:pre:2p;ind:pre:2p; +arnaqué arnaquer ver m s 6.37 0.68 1.46 0.14 par:pas; +arnaquée arnaquer ver f s 6.37 0.68 0.06 0 par:pas; +arnaqués arnaquer ver m p 6.37 0.68 0.5 0 par:pas; +arnica arnica nom s 0.02 0.61 0.02 0.61 +arobase arobase nom f s 0.14 0 0.14 0 +aromate aromate nom m s 0.11 0.88 0.01 0 +aromates aromate nom m p 0.11 0.88 0.1 0.88 +aromathérapie aromathérapie nom f s 0.18 0 0.18 0 +aromatique aromatique adj s 0.1 0.74 0.02 0.2 +aromatiques aromatique adj p 0.1 0.74 0.07 0.54 +aromatiser aromatiser ver 0.2 0.54 0.01 0 inf; +aromatisé aromatiser ver m s 0.2 0.54 0.16 0.34 par:pas; +aromatisée aromatiser ver f s 0.2 0.54 0.01 0.07 par:pas; +aromatisées aromatiser ver f p 0.2 0.54 0 0.14 par:pas; +aromatisés aromatiser ver m p 0.2 0.54 0.01 0 par:pas; +aronde aronde nom f s 0 0.47 0 0.47 +arousal arousal nom m s 0 0.07 0 0.07 +arpent arpent nom m s 0.56 0.95 0.17 0.14 +arpenta arpenter ver 2 9.53 0.1 0.47 ind:pas:3s; +arpentage arpentage nom m s 0.2 0.27 0.2 0.2 +arpentages arpentage nom m p 0.2 0.27 0 0.07 +arpentai arpenter ver 2 9.53 0.01 0.27 ind:pas:1s; +arpentaient arpenter ver 2 9.53 0 0.47 ind:imp:3p; +arpentais arpenter ver 2 9.53 0 0.27 ind:imp:1s; +arpentait arpenter ver 2 9.53 0.04 1.76 ind:imp:3s; +arpentant arpenter ver 2 9.53 0.02 1.49 par:pre; +arpente arpenter ver 2 9.53 0.62 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arpentent arpenter ver 2 9.53 0.08 0.61 ind:pre:3p; +arpenter arpenter ver 2 9.53 0.64 2.3 inf; +arpenterai arpenter ver 2 9.53 0.03 0 ind:fut:1s; +arpenteront arpenter ver 2 9.53 0.01 0 ind:fut:3p; +arpenteur arpenteur nom m s 0.25 1.49 0.16 0.74 +arpenteurs arpenteur nom m p 0.25 1.49 0.09 0.74 +arpentez arpenter ver 2 9.53 0.02 0 imp:pre:2p;ind:pre:2p; +arpentions arpenter ver 2 9.53 0 0.14 ind:imp:1p; +arpentons arpenter ver 2 9.53 0 0.07 ind:pre:1p; +arpents arpent nom m p 0.56 0.95 0.38 0.81 +arpentèrent arpenter ver 2 9.53 0 0.07 ind:pas:3p; +arpenté arpenter ver m s 2 9.53 0.41 0.47 par:pas; +arpentée arpenter ver f s 2 9.53 0 0.07 par:pas; +arpentés arpenter ver m p 2 9.53 0 0.07 par:pas; +arpette arpette nom s 0.01 0 0.01 0 +arpion arpion nom m s 0.03 1.08 0 0.07 +arpions arpion nom m p 0.03 1.08 0.03 1.01 +arpège arpège nom m s 0.2 1.49 0.03 1.15 +arpèges arpège nom m p 0.2 1.49 0.18 0.34 +arpète arpète nom s 0 1.15 0 0.88 +arpètes arpète nom p 0 1.15 0 0.27 +arpégé arpéger ver m s 0.14 0 0.14 0 par:pas; +arqua arquer ver 0.34 2.36 0 0.07 ind:pas:3s; +arquaient arquer ver 0.34 2.36 0 0.41 ind:imp:3p; +arquait arquer ver 0.34 2.36 0 0.14 ind:imp:3s; +arquant arquer ver 0.34 2.36 0 0.14 par:pre; +arque arquer ver 0.34 2.36 0 0.07 ind:pre:1s; +arquebusade arquebusade nom f s 0 0.14 0 0.14 +arquebuse arquebuse nom f s 0.41 8.72 0.39 8.51 +arquebuses arquebuse nom f p 0.41 8.72 0.02 0.2 +arquebusiers arquebusier nom m p 0.4 0 0.4 0 +arquebusât arquebuser ver 0.01 0 0.01 0 sub:imp:3s; +arquent arquer ver 0.34 2.36 0 0.2 ind:pre:3p; +arquepince arquepincer ver 0 0.07 0 0.07 imp:pre:2s; +arquer arquer ver 0.34 2.36 0.31 0.47 inf; +arqué arqué adj m s 0.14 2.97 0.02 0.47 +arquée arquer ver f s 0.34 2.36 0.01 0.14 par:pas; +arquées arqué adj f p 0.14 2.97 0.1 1.49 +arqués arqué adj m p 0.14 2.97 0.01 0.61 +arracha arracher ver 54.19 113.38 0.33 11.82 ind:pas:3s; +arrachage arrachage nom m s 0.1 0.27 0.1 0.27 +arrachai arracher ver 54.19 113.38 0.04 1.15 ind:pas:1s; +arrachaient arracher ver 54.19 113.38 0.18 2.16 ind:imp:3p; +arrachais arracher ver 54.19 113.38 0.84 0.74 ind:imp:1s;ind:imp:2s; +arrachait arracher ver 54.19 113.38 0.31 9.59 ind:imp:3s; +arrachant arracher ver 54.19 113.38 0.46 7.43 par:pre; +arrache arracher ver 54.19 113.38 13.52 14.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrache_clou arrache_clou nom m s 0 0.07 0 0.07 +arrachement arrachement nom m s 0.02 3.11 0.02 2.64 +arrachements arrachement nom m p 0.02 3.11 0 0.47 +arrachent arracher ver 54.19 113.38 1.23 2.57 ind:pre:3p; +arracher arracher ver 54.19 113.38 17.2 34.32 inf;; +arrachera arracher ver 54.19 113.38 0.9 0.68 ind:fut:3s; +arracherai arracher ver 54.19 113.38 1.68 0.27 ind:fut:1s; +arracheraient arracher ver 54.19 113.38 0.05 0.2 cnd:pre:3p; +arracherais arracher ver 54.19 113.38 0.49 0.2 cnd:pre:1s;cnd:pre:2s; +arracherait arracher ver 54.19 113.38 0.35 1.01 cnd:pre:3s; +arracheras arracher ver 54.19 113.38 0.01 0.07 ind:fut:2s; +arracherons arracher ver 54.19 113.38 0.43 0.07 ind:fut:1p; +arracheront arracher ver 54.19 113.38 0.5 0.14 ind:fut:3p; +arraches arracher ver 54.19 113.38 0.82 0.07 ind:pre:2s; +arracheur arracheur nom m s 0.34 0.74 0.31 0.41 +arracheurs arracheur nom m p 0.34 0.74 0 0.27 +arracheuse arracheur nom f s 0.34 0.74 0.04 0 +arracheuses arracheur nom f p 0.34 0.74 0 0.07 +arrachez arracher ver 54.19 113.38 1.42 0.27 imp:pre:2p;ind:pre:2p; +arrachiez arracher ver 54.19 113.38 0.04 0 ind:imp:2p; +arrachions arracher ver 54.19 113.38 0 0.07 ind:imp:1p; +arrachons arracher ver 54.19 113.38 0.42 0.14 imp:pre:1p;ind:pre:1p; +arrachures arrachure nom f p 0 0.07 0 0.07 +arrachât arracher ver 54.19 113.38 0 0.61 sub:imp:3s; +arrachèrent arracher ver 54.19 113.38 0.28 0.88 ind:pas:3p; +arraché arracher ver m s 54.19 113.38 9.53 13.04 par:pas; +arrachée arracher ver f s 54.19 113.38 1.4 5.74 par:pas; +arrachées arracher ver f p 54.19 113.38 0.69 2.09 par:pas; +arrachés arracher ver m p 54.19 113.38 1.09 3.11 par:pas; +arraisonner arraisonner ver 0.14 0.61 0.05 0.07 inf; +arraisonnerons arraisonner ver 0.14 0.61 0 0.07 ind:fut:1p; +arraisonné arraisonner ver m s 0.14 0.61 0.07 0.27 par:pas; +arraisonnées arraisonner ver f p 0.14 0.61 0 0.07 par:pas; +arraisonnés arraisonner ver m p 0.14 0.61 0.02 0.14 par:pas; +arrange arranger ver 116.14 75.81 22.14 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arrangea arranger ver 116.14 75.81 0.25 2.43 ind:pas:3s; +arrangeai arranger ver 116.14 75.81 0.01 0.27 ind:pas:1s; +arrangeaient arranger ver 116.14 75.81 0.12 1.62 ind:imp:3p; +arrangeais arranger ver 116.14 75.81 0.45 0.74 ind:imp:1s;ind:imp:2s; +arrangeait arranger ver 116.14 75.81 1.19 9.46 ind:imp:3s; +arrangeant arranger ver 116.14 75.81 0.18 1.42 par:pre; +arrangeante arrangeant adj f s 0.1 0.47 0.04 0.07 +arrangeantes arrangeant adj f p 0.1 0.47 0 0.14 +arrangeants arrangeant adj m p 0.1 0.47 0.03 0.07 +arrangement arrangement nom m s 10.23 9.39 8.62 5.81 +arrangements arrangement nom m p 10.23 9.39 1.61 3.58 +arrangent arranger ver 116.14 75.81 1.3 2.5 ind:pre:3p;sub:pre:3p; +arrangeons arranger ver 116.14 75.81 0.29 0.07 imp:pre:1p;ind:pre:1p; +arranger arranger ver 116.14 75.81 48.51 18.45 inf;; +arrangera arranger ver 116.14 75.81 8.4 2.3 ind:fut:3s; +arrangerai arranger ver 116.14 75.81 3.51 2.57 ind:fut:1s; +arrangeraient arranger ver 116.14 75.81 0.01 0.41 cnd:pre:3p; +arrangerais arranger ver 116.14 75.81 0.61 0.34 cnd:pre:1s;cnd:pre:2s; +arrangerait arranger ver 116.14 75.81 3.05 3.31 cnd:pre:3s; +arrangeras arranger ver 116.14 75.81 0.24 0.2 ind:fut:2s; +arrangerez arranger ver 116.14 75.81 0.14 0.34 ind:fut:2p; +arrangerions arranger ver 116.14 75.81 0 0.07 cnd:pre:1p; +arrangerons arranger ver 116.14 75.81 0.39 0.47 ind:fut:1p; +arrangeront arranger ver 116.14 75.81 0.3 0.41 ind:fut:3p; +arranges arranger ver 116.14 75.81 1.5 0.47 ind:pre:2s; +arrangeur arrangeur nom m s 0.1 0.07 0.06 0 +arrangeurs arrangeur nom m p 0.1 0.07 0.04 0.07 +arrangez arranger ver 116.14 75.81 2.42 0.74 imp:pre:2p;ind:pre:2p; +arrangeât arranger ver 116.14 75.81 0 0.07 sub:imp:3s; +arrangiez arranger ver 116.14 75.81 0.01 0.07 ind:imp:2p; +arrangions arranger ver 116.14 75.81 0.04 0.2 ind:imp:1p; +arrangèrent arranger ver 116.14 75.81 0.01 0.34 ind:pas:3p; +arrangé arranger ver m s 116.14 75.81 18.24 9.93 par:pas; +arrangée arranger ver f s 116.14 75.81 1.29 2.5 par:pas; +arrangées arranger ver f p 116.14 75.81 0.41 0.34 par:pas; +arrangés arranger ver m p 116.14 75.81 1.13 0.81 par:pas; +arrestation arrestation nom f s 20.59 10.41 17.59 8.58 +arrestations arrestation nom f p 20.59 10.41 3 1.82 +arrhes arrhe nom f p 0.3 0.41 0.3 0.41 +arrima arrimer ver 0.97 2.91 0 0.07 ind:pas:3s; +arrimage arrimage nom m s 0.61 0.2 0.61 0.2 +arrimais arrimer ver 0.97 2.91 0 0.07 ind:imp:1s; +arrimait arrimer ver 0.97 2.91 0 0.2 ind:imp:3s; +arrimant arrimer ver 0.97 2.91 0.1 0.07 par:pre; +arrime arrimer ver 0.97 2.91 0.05 0 imp:pre:2s;ind:pre:3s; +arriment arrimer ver 0.97 2.91 0.03 0.07 ind:pre:3p; +arrimer arrimer ver 0.97 2.91 0.32 0.41 inf; +arrimez arrimer ver 0.97 2.91 0.08 0 imp:pre:2p; +arrimé arrimer ver m s 0.97 2.91 0.16 0.68 par:pas; +arrimée arrimer ver f s 0.97 2.91 0.05 0.74 par:pas; +arrimées arrimer ver f p 0.97 2.91 0.11 0.27 par:pas; +arrimés arrimer ver m p 0.97 2.91 0.08 0.34 par:pas; +arriva arriver ver 1252.42 723.04 5.75 47.5 ind:pas:3s; +arrivage arrivage nom m s 0.82 1.96 0.76 1.55 +arrivages arrivage nom m p 0.82 1.96 0.07 0.41 +arrivai arriver ver 1252.42 723.04 0.49 6.76 ind:pas:1s; +arrivaient arriver ver 1252.42 723.04 2.72 22.91 ind:imp:3p; +arrivais arriver ver 1252.42 723.04 11.24 18.51 ind:imp:1s;ind:imp:2s; +arrivait arriver ver 1252.42 723.04 22.16 105 ind:imp:3s; +arrivant arriver ver 1252.42 723.04 9.19 22.57 par:pre; +arrivante arrivant nom f s 0.48 5.07 0.03 0.27 +arrivants arrivant nom m p 0.48 5.07 0.27 2.64 +arrivas arriver ver 1252.42 723.04 0.02 0.07 ind:pas:2s; +arrivassent arriver ver 1252.42 723.04 0 0.07 sub:imp:3p; +arrive arriver ver 1252.42 723.04 525.1 164.12 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrivent arriver ver 1252.42 723.04 58.12 21.82 ind:pre:3p;sub:pre:3p; +arriver arriver ver 1252.42 723.04 182.88 95 inf;;inf;;inf;; +arrivera arriver ver 1252.42 723.04 53.86 10.07 ind:fut:3s; +arriverai arriver ver 1252.42 723.04 13.08 3.85 ind:fut:1s; +arriveraient arriver ver 1252.42 723.04 0.58 1.22 cnd:pre:3p; +arriverais arriver ver 1252.42 723.04 3.93 1.76 cnd:pre:1s;cnd:pre:2s; +arriverait arriver ver 1252.42 723.04 11.06 9.73 cnd:pre:3s; +arriveras arriver ver 1252.42 723.04 8.98 1.96 ind:fut:2s; +arriverez arriver ver 1252.42 723.04 5.3 1.22 ind:fut:2p; +arriveriez arriver ver 1252.42 723.04 0.46 0.07 cnd:pre:2p; +arriverions arriver ver 1252.42 723.04 0.25 0.27 cnd:pre:1p; +arriverons arriver ver 1252.42 723.04 3.61 1.42 ind:fut:1p; +arriveront arriver ver 1252.42 723.04 5.17 1.62 ind:fut:3p; +arrives arriver ver 1252.42 723.04 28.82 3.31 ind:pre:2s; +arrivez arriver ver 1252.42 723.04 10.69 2.23 imp:pre:2p;ind:pre:2p; +arriviez arriver ver 1252.42 723.04 1.3 0.88 ind:imp:2p; +arrivions arriver ver 1252.42 723.04 0.99 4.59 ind:imp:1p; +arrivisme arrivisme nom m s 0.16 0.27 0.16 0.27 +arriviste arriviste nom s 0.77 0.41 0.6 0.2 +arrivistes arriviste nom p 0.77 0.41 0.17 0.2 +arrivons arriver ver 1252.42 723.04 6.09 4.86 imp:pre:1p;ind:pre:1p; +arrivâmes arriver ver 1252.42 723.04 0.46 3.18 ind:pas:1p; +arrivât arriver ver 1252.42 723.04 0.43 2.09 sub:imp:3s; +arrivâtes arriver ver 1252.42 723.04 0.01 0.07 ind:pas:2p; +arrivèrent arriver ver 1252.42 723.04 1.36 12.57 ind:pas:3p; +arrivé arriver ver m s 1252.42 723.04 203.06 97.91 par:pas;par:pas;par:pas; +arrivée arrivée nom f s 42.66 80 41.9 77.84 +arrivées arriver ver f p 1252.42 723.04 4.24 2.91 par:pas; +arrivés arriver ver m p 1252.42 723.04 32.78 25.81 par:pas; +arrière arrière ono 2.75 0.14 2.75 0.14 +arrière_automne arrière_automne nom m 0 0.14 0 0.14 +arrière_ban arrière_ban nom m s 0 0.2 0 0.2 +arrière_boutique arrière_boutique nom f s 0.31 6.35 0.31 5.95 +arrière_boutique arrière_boutique nom f p 0.31 6.35 0 0.41 +arrière_cabinet arrière_cabinet nom m p 0 0.07 0 0.07 +arrière_cour arrière_cour nom f s 0.45 1.35 0.41 1.01 +arrière_cour arrière_cour nom f p 0.45 1.35 0.03 0.34 +arrière_cousin arrière_cousin nom m s 0.12 0 0.12 0 +arrière_cuisine arrière_cuisine nom f s 0.02 0.14 0.02 0.07 +arrière_cuisine arrière_cuisine nom f p 0.02 0.14 0 0.07 +arrière_fond arrière_fond nom m s 0.04 0.95 0.04 0.95 +arrière_garde arrière_garde nom f s 0.47 2.03 0.47 1.69 +arrière_garde arrière_garde nom f p 0.47 2.03 0 0.34 +arrière_gorge arrière_gorge nom f s 0 0.27 0 0.27 +arrière_goût arrière_goût nom m s 0.55 1.28 0.55 1.22 +arrière_goût arrière_goût nom m p 0.55 1.28 0 0.07 +arrière_grand_mère arrière_grand_mère nom f s 0.85 2.57 0.83 2.3 +arrière_grand_mère arrière_grand_mère nom f p 0.85 2.57 0 0.2 +arrière_grand_oncle arrière_grand_oncle nom m s 0.04 0.41 0.04 0.41 +arrière_grand_père arrière_grand_père nom m s 1.48 4.12 1.48 3.78 +arrière_grand_tante arrière_grand_tante nom f s 0 0.2 0 0.14 +arrière_grand_tante arrière_grand_tante nom f p 0 0.2 0 0.07 +arrière_grand_mère arrière_grand_mère nom f p 0.85 2.57 0.02 0.07 +arrière_grand_parent arrière_grand_parent nom m p 0.16 1.08 0.16 1.08 +arrière_grand_père arrière_grand_père nom m p 1.48 4.12 0 0.34 +arrière_loge arrière_loge nom m s 0 0.07 0 0.07 +arrière_magasin arrière_magasin nom m 0 0.07 0 0.07 +arrière_main arrière_main nom s 0 0.07 0 0.07 +arrière_monde arrière_monde nom m s 0 0.14 0 0.14 +arrière_neveux arrière_neveux nom m p 0 0.07 0 0.07 +arrière_pays arrière_pays nom m 0.37 1.15 0.37 1.15 +arrière_pensée arrière_pensée nom f s 0.91 5.95 0.79 3.58 +arrière_pensée arrière_pensée nom f p 0.91 5.95 0.13 2.36 +arrière_petit_fils arrière_petit_fils nom m 0.14 0.61 0.14 0.61 +arrière_petit_neveu arrière_petit_neveu nom m s 0.01 0.27 0.01 0.27 +arrière_petite_fille arrière_petite_fille nom f s 0.13 0.81 0.13 0.47 +arrière_petite_nièce arrière_petite_nièce nom f s 0 0.14 0 0.07 +arrière_petite_fille arrière_petite_fille nom f p 0.13 0.81 0 0.34 +arrière_petite_nièce arrière_petite_nièce nom f p 0 0.14 0 0.07 +arrière_petit_enfant arrière_petit_enfant nom m p 0.36 0.27 0.36 0.27 +arrière_petits_fils arrière_petits_fils nom m p 0 0.41 0 0.41 +arrière_petits_neveux arrière_petits_neveux nom m p 0 0.07 0 0.07 +arrière_plan arrière_plan nom m s 0.94 2.7 0.91 2.03 +arrière_plan arrière_plan nom m p 0.94 2.7 0.02 0.68 +arrière_saison arrière_saison nom f s 0 1.22 0 1.22 +arrière_salle arrière_salle nom f s 0.28 2.36 0.24 2.16 +arrière_salle arrière_salle nom f p 0.28 2.36 0.04 0.2 +arrière_train arrière_train nom m s 0.66 1.69 0.64 1.62 +arrière_train arrière_train nom m p 0.66 1.69 0.03 0.07 +arrières arrière nom m p 52.15 95 4.76 4.73 +arriération arriération nom f s 0.03 0.27 0.03 0.27 +arriéré arriéré nom m s 0.79 2.03 0.22 0.54 +arriérée arriéré adj f s 0.57 1.62 0.2 0.34 +arriérées arriéré adj f p 0.57 1.62 0.04 0.14 +arriérés arriéré nom m p 0.79 2.03 0.54 1.35 +arrogamment arrogamment adv 0 0.47 0 0.47 +arrogance arrogance nom f s 3.92 3.85 3.92 3.85 +arrogant arrogant adj m s 5.29 4.05 2.98 2.16 +arrogante arrogant adj f s 5.29 4.05 1.53 1.01 +arrogantes arrogant adj f p 5.29 4.05 0.18 0.2 +arrogants arrogant adj m p 5.29 4.05 0.59 0.68 +arroge arroger ver 0.39 1.01 0.22 0.14 ind:pre:1s;ind:pre:3s; +arrogeaient arroger ver 0.39 1.01 0 0.07 ind:imp:3p; +arrogeait arroger ver 0.39 1.01 0 0.07 ind:imp:3s; +arrogeant arroger ver 0.39 1.01 0 0.07 par:pre; +arrogent arroger ver 0.39 1.01 0.14 0 ind:pre:3p; +arroger arroger ver 0.39 1.01 0 0.54 inf; +arrogèrent arroger ver 0.39 1.01 0.01 0 ind:pas:3p; +arrogé arroger ver m s 0.39 1.01 0.02 0.07 par:pas; +arrogée arroger ver f s 0.39 1.01 0 0.07 par:pas; +arroi arroi nom m s 0 0.68 0 0.68 +arrondi arrondi adj m s 0.57 7.84 0.2 2.91 +arrondie arrondi adj f s 0.57 7.84 0.17 1.96 +arrondies arrondi adj f p 0.57 7.84 0.04 0.95 +arrondir arrondir ver 2.04 14.53 1.06 2.23 inf; +arrondira arrondir ver 2.04 14.53 0.15 0.07 ind:fut:3s; +arrondirait arrondir ver 2.04 14.53 0.01 0.07 cnd:pre:3s; +arrondirent arrondir ver 2.04 14.53 0 0.2 ind:pas:3p; +arrondis arrondir ver m p 2.04 14.53 0.22 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +arrondissaient arrondir ver 2.04 14.53 0 0.74 ind:imp:3p; +arrondissait arrondir ver 2.04 14.53 0.2 2.43 ind:imp:3s; +arrondissant arrondir ver 2.04 14.53 0.01 0.74 par:pre; +arrondissement arrondissement nom m s 0.95 8.38 0.94 7.3 +arrondissements arrondissement nom m p 0.95 8.38 0.01 1.08 +arrondissent arrondir ver 2.04 14.53 0.05 1.08 ind:pre:3p; +arrondissons arrondir ver 2.04 14.53 0.04 0 imp:pre:1p; +arrondit arrondir ver 2.04 14.53 0.14 2.3 ind:pre:3s;ind:pas:3s; +arrosa arroser ver 14.07 19.73 0 0.54 ind:pas:3s; +arrosage arrosage nom m s 1.72 1.89 1.72 1.89 +arrosaient arroser ver 14.07 19.73 0.04 0.68 ind:imp:3p; +arrosais arroser ver 14.07 19.73 0.11 0.07 ind:imp:1s;ind:imp:2s; +arrosait arroser ver 14.07 19.73 0.62 2.64 ind:imp:3s; +arrosant arroser ver 14.07 19.73 0.3 1.35 par:pre; +arrose arroser ver 14.07 19.73 3.34 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arrosent arroser ver 14.07 19.73 0.22 0.61 ind:pre:3p; +arroser arroser ver 14.07 19.73 5.53 4.46 inf; +arrosera arroser ver 14.07 19.73 0.02 0 ind:fut:3s; +arroserais arroser ver 14.07 19.73 0 0.14 cnd:pre:1s; +arroserait arroser ver 14.07 19.73 0.02 0.14 cnd:pre:3s; +arroseras arroser ver 14.07 19.73 0.02 0 ind:fut:2s; +arroserez arroser ver 14.07 19.73 0 0.07 ind:fut:2p; +arroseront arroser ver 14.07 19.73 0.01 0.07 ind:fut:3p; +arroses arroser ver 14.07 19.73 0.19 0.07 ind:pre:2s; +arroseur arroseur nom m s 0.45 0.47 0.22 0.14 +arroseurs arroseur nom m p 0.45 0.47 0.19 0.07 +arroseuse arroseur nom f s 0.45 0.47 0.02 0.2 +arroseuses arroseur nom f p 0.45 0.47 0.01 0.07 +arrosez arroser ver 14.07 19.73 0.7 0.14 imp:pre:2p;ind:pre:2p; +arrosiez arroser ver 14.07 19.73 0 0.07 ind:imp:2p; +arrosions arroser ver 14.07 19.73 0 0.14 ind:imp:1p; +arrosoir arrosoir nom m s 0.37 3.58 0.37 3.04 +arrosoirs arrosoir nom m p 0.37 3.58 0 0.54 +arrosons arroser ver 14.07 19.73 0.4 0.14 imp:pre:1p;ind:pre:1p; +arrosèrent arroser ver 14.07 19.73 0.01 0.14 ind:pas:3p; +arrosé arroser ver m s 14.07 19.73 1.7 2.97 par:pas; +arrosée arroser ver f s 14.07 19.73 0.28 1.22 par:pas; +arrosées arroser ver f p 14.07 19.73 0.26 0.81 par:pas; +arrosés arroser ver m p 14.07 19.73 0.31 0.88 par:pas; +arrérages arrérage nom m p 0.2 0.14 0.2 0.14 +arrêt arrêt nom m s 50.88 53.92 46.8 46.82 +arrêt_buffet arrêt_buffet nom m s 0.01 0.07 0 0.07 +arrêta arrêter ver 993.79 462.5 1.68 93.31 ind:pas:3s; +arrêtai arrêter ver 993.79 462.5 0.48 6.15 ind:pas:1s; +arrêtaient arrêter ver 993.79 462.5 1.13 9.59 ind:imp:3p; +arrêtais arrêter ver 993.79 462.5 3.7 4.66 ind:imp:1s;ind:imp:2s; +arrêtait arrêter ver 993.79 462.5 8.97 37.09 ind:imp:3s; +arrêtant arrêter ver 993.79 462.5 1 16.01 par:pre; +arrêtassent arrêter ver 993.79 462.5 0 0.2 sub:imp:3p; +arrête arrêter ver 993.79 462.5 456.59 85.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrête_boeuf arrête_boeuf nom m s 0 0.07 0 0.07 +arrêtent arrêter ver 993.79 462.5 9.22 10.81 ind:pre:3p;sub:pre:3p; +arrêter arrêter ver 993.79 462.5 178.62 80.61 inf;;inf;;inf;;inf;; +arrêtera arrêter ver 993.79 462.5 14.42 2.7 ind:fut:3s; +arrêterai arrêter ver 993.79 462.5 4 0.54 ind:fut:1s; +arrêteraient arrêter ver 993.79 462.5 0.75 0.34 cnd:pre:3p; +arrêterais arrêter ver 993.79 462.5 2.13 0.61 cnd:pre:1s;cnd:pre:2s; +arrêterait arrêter ver 993.79 462.5 1.77 2.84 cnd:pre:3s; +arrêteras arrêter ver 993.79 462.5 1.4 0.34 ind:fut:2s; +arrêterez arrêter ver 993.79 462.5 1.27 0.07 ind:fut:2p; +arrêteriez arrêter ver 993.79 462.5 0.18 0.14 cnd:pre:2p; +arrêterions arrêter ver 993.79 462.5 0.04 0.07 cnd:pre:1p; +arrêterons arrêter ver 993.79 462.5 0.9 0.68 ind:fut:1p; +arrêteront arrêter ver 993.79 462.5 2.49 0.88 ind:fut:3p; +arrêtes arrêter ver 993.79 462.5 21.9 1.96 ind:pre:2s;sub:pre:2s; +arrêtez arrêter ver 993.79 462.5 174.12 6.69 imp:pre:2p;ind:pre:2p; +arrêtiez arrêter ver 993.79 462.5 1.56 0.2 ind:imp:2p; +arrêtions arrêter ver 993.79 462.5 0.55 1.42 ind:imp:1p;sub:pre:1p; +arrêtons arrêter ver 993.79 462.5 6.6 2.7 imp:pre:1p;ind:pre:1p; +arrêts arrêt nom m p 50.88 53.92 4.08 7.09 +arrêt_buffet arrêt_buffet nom m p 0.01 0.07 0.01 0 +arrêtâmes arrêter ver 993.79 462.5 0.01 1.22 ind:pas:1p; +arrêtât arrêter ver 993.79 462.5 0 1.42 sub:imp:3s; +arrêtèrent arrêter ver 993.79 462.5 0.24 10 ind:pas:3p; +arrêté arrêter ver m s 993.79 462.5 77.28 48.24 par:pas; +arrêtée arrêter ver f s 993.79 462.5 11.22 17.97 par:pas; +arrêtées arrêter ver f p 993.79 462.5 1.47 3.38 par:pas; +arrêtés arrêter ver m p 993.79 462.5 8.11 14.59 par:pas; +ars ars nom m 0.94 0.07 0.94 0.07 +arsacide arsacide nom s 0 0.07 0 0.07 +arsenal arsenal nom m s 2.36 5.74 2.27 4.86 +arsenaux arsenal nom m p 2.36 5.74 0.09 0.88 +arsenic arsenic nom m s 1.1 1.22 1.1 1.22 +arsenicales arsenical adj f p 0 0.07 0 0.07 +arsouille arsouille nom s 0.23 0.54 0.23 0.41 +arsouiller arsouiller ver 0 0.07 0 0.07 inf; +arsouilles arsouille nom p 0.23 0.54 0 0.14 +arsénieux arsénieux adj m s 0 0.07 0 0.07 +art art nom m s 72.79 91.49 65.93 81.49 +artefact artefact nom m s 0.67 0.14 0.34 0 +artefacts artefact nom m p 0.67 0.14 0.33 0.14 +arthrite arthrite nom f s 1.75 0.34 1.75 0.27 +arthrites arthrite nom f p 1.75 0.34 0 0.07 +arthritique arthritique adj s 0.14 0.41 0.03 0.34 +arthritiques arthritique adj m p 0.14 0.41 0.11 0.07 +arthrodèse arthrodèse nom f s 0 0.14 0 0.14 +arthropathie arthropathie nom f s 0.01 0 0.01 0 +arthroplastie arthroplastie nom f s 0.01 0 0.01 0 +arthropodes arthropode nom m p 0.04 0.07 0.04 0.07 +arthroscopie arthroscopie nom f s 0.01 0 0.01 0 +arthrose arthrose nom f s 0.86 0.61 0.86 0.47 +arthroses arthrose nom f p 0.86 0.61 0 0.14 +arthurien arthurien adj m s 0.04 0.2 0.01 0.07 +arthurienne arthurien adj f s 0.04 0.2 0.03 0.07 +arthuriens arthurien adj m p 0.04 0.2 0 0.07 +artichaut artichaut nom m s 2.39 2.57 1.45 0.95 +artichauts artichaut nom m p 2.39 2.57 0.94 1.62 +artiche artiche nom m s 0.01 1.82 0.01 1.82 +article article nom m s 44.45 50.34 33.39 31.69 +article_choc article_choc nom m s 0 0.07 0 0.07 +articles article nom m p 44.45 50.34 11.06 18.65 +articula articuler ver 1.21 12.97 0 1.82 ind:pas:3s; +articulai articuler ver 1.21 12.97 0 0.07 ind:pas:1s; +articulaient articuler ver 1.21 12.97 0 0.07 ind:imp:3p; +articulaire articulaire adj s 0.17 0.07 0.09 0 +articulaires articulaire adj p 0.17 0.07 0.08 0.07 +articulait articuler ver 1.21 12.97 0.04 0.68 ind:imp:3s; +articulant articuler ver 1.21 12.97 0.02 1.28 par:pre; +articulation articulation nom f s 1.51 6.01 0.54 2.16 +articulations articulation nom f p 1.51 6.01 0.97 3.85 +articule articuler ver 1.21 12.97 0.5 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +articulent articuler ver 1.21 12.97 0.02 0.07 ind:pre:3p; +articuler articuler ver 1.21 12.97 0.34 4.32 inf; +articulet articulet nom m s 0 0.14 0 0.14 +articulez articuler ver 1.21 12.97 0.19 0.07 imp:pre:2p;ind:pre:2p; +articulé articulé adj m s 0.27 3.65 0.13 1.42 +articulée articuler ver f s 1.21 12.97 0.01 0.34 par:pas; +articulées articulé adj f p 0.27 3.65 0.12 0.41 +articulés articulé adj m p 0.27 3.65 0.03 1.08 +artifice artifice nom m s 6.95 10.95 5.38 8.51 +artifices artifice nom m p 6.95 10.95 1.57 2.43 +artificialité artificialité nom f s 0.01 0 0.01 0 +artificiel artificiel adj m s 7.12 12.16 2.55 3.51 +artificielle artificiel adj f s 7.12 12.16 2.99 4.39 +artificiellement artificiellement adv 0.48 1.42 0.48 1.42 +artificielles artificiel adj f p 7.12 12.16 0.87 2.57 +artificiels artificiel adj m p 7.12 12.16 0.71 1.69 +artificier artificier nom m s 0.79 1.35 0.44 0.68 +artificiers artificier nom m p 0.79 1.35 0.34 0.68 +artificieuse artificieux adj f s 0.14 0.14 0 0.07 +artificieuses artificieux adj f p 0.14 0.14 0.14 0.07 +artiflot artiflot nom m s 0 0.34 0 0.07 +artiflots artiflot nom m p 0 0.34 0 0.27 +artillerie artillerie nom f s 8.63 17.36 8.63 17.36 +artilleur artilleur nom m s 0.79 8.45 0.47 2.16 +artilleurs artilleur nom m p 0.79 8.45 0.32 6.28 +artimon artimon nom m s 0.22 0.07 0.22 0.07 +artisan artisan nom m s 3.09 10.74 1.79 5 +artisanal artisanal adj m s 0.75 1.62 0.15 0.41 +artisanale artisanal adj f s 0.75 1.62 0.3 0.68 +artisanalement artisanalement adv 0.01 0.07 0.01 0.07 +artisanales artisanal adj f p 0.75 1.62 0.25 0.27 +artisanat artisanat nom m s 0.77 1.15 0.77 1.15 +artisanaux artisanal adj m p 0.75 1.62 0.05 0.27 +artisane artisan nom f s 3.09 10.74 0 0.07 +artisans artisan nom m p 3.09 10.74 1.3 5.68 +artison artison nom m s 0 0.07 0 0.07 +artiste artiste nom s 40.78 45.88 28 28.85 +artiste_peintre artiste_peintre nom s 0.02 0.14 0.02 0.14 +artistement artistement adv 0 0.81 0 0.81 +artistes artiste nom p 40.78 45.88 12.78 17.03 +artistique artistique adj s 10 10 8.08 6.76 +artistiquement artistiquement adv 0.26 0.61 0.26 0.61 +artistiques artistique adj p 10 10 1.92 3.24 +arts art nom m p 72.79 91.49 6.86 10 +artère artère nom f s 5.13 7.09 3.13 2.16 +artères artère nom f p 5.13 7.09 2 4.93 +artéfact artéfact nom m s 0.13 0 0.13 0 +artériectomie artériectomie nom f s 0 0.07 0 0.07 +artériel artériel adj m s 1.76 0.61 0.19 0.2 +artérielle artériel adj f s 1.76 0.61 1.55 0.41 +artérielles artériel adj f p 1.76 0.61 0.02 0 +artériographie artériographie nom f s 0.09 0 0.09 0 +artériole artériole nom f s 0.03 0.14 0.01 0 +artérioles artériole nom f p 0.03 0.14 0.01 0.14 +artériopathie artériopathie nom f s 0.16 0 0.16 0 +artériosclérose artériosclérose nom f s 0.17 0.27 0.17 0.27 +artérite artérite nom f s 0.03 0.07 0.03 0.07 +artésien artésien adj m s 0.01 0.27 0.01 0.27 +arum arum nom m s 0.09 0.61 0.02 0 +arums arum nom m p 0.09 0.61 0.07 0.61 +aruspice aruspice nom m s 0.15 0.07 0.15 0 +aruspices aruspice nom m p 0.15 0.07 0 0.07 +arverne arverne nom s 0 0.14 0 0.07 +arvernes arverne nom p 0 0.14 0 0.07 +aryen aryen adj m s 1.84 0.61 0.22 0.14 +aryenne aryen adj f s 1.84 0.61 1.09 0.34 +aryennes aryen adj f p 1.84 0.61 0.03 0.07 +aryens aryen adj m p 1.84 0.61 0.5 0.07 +arythmie arythmie nom f s 0.64 0.07 0.64 0.07 +arythmique arythmique adj m s 0.03 0 0.03 0 +arzels arzel nom m p 0 0.07 0 0.07 +arçon arçon nom m s 0.02 0.95 0.01 0.81 +arçons arçon nom m p 0.02 0.95 0.01 0.14 +arène arène nom f s 2.5 5.54 2.25 4.12 +arènes arène nom f p 2.5 5.54 0.25 1.42 +aréflexie aréflexie nom f s 0.02 0 0.02 0 +aréna aréna nom m s 0.05 0 0.05 0 +aréole aréole nom f s 0.04 0.54 0.04 0.34 +aréoles aréole nom f p 0.04 0.54 0 0.2 +aréopage aréopage nom m s 0.1 1.08 0.1 1.01 +aréopages aréopage nom m p 0.1 1.08 0 0.07 +aréopagite aréopagite nom m s 0 0.07 0 0.07 +aréquier aréquier nom m s 0.14 0 0.14 0 +arétin arétin nom m s 0 0.07 0 0.07 +arête arête nom f s 1.6 10.81 0.7 6.01 +arêtes arête nom f p 1.6 10.81 0.9 4.8 +arôme arôme nom m s 1.43 2.7 1.12 2.43 +arômes arôme nom m p 1.43 2.7 0.32 0.27 +as avoir aux 18559.22 12800.81 2144.15 294.46 ind:pre:2s; +as_rois as_rois nom m 0.01 0 0.01 0 +asa asa nom m 0.02 0 0.02 0 +asana asana nom f s 0.02 0 0.02 0 +asbeste asbeste nom m s 0.01 0 0.01 0 +asbestose asbestose nom f s 0.01 0 0.01 0 +ascaris ascaris nom m 0.2 0.07 0.2 0.07 +ascendance ascendance nom f s 0.24 2.23 0.24 1.89 +ascendances ascendance nom f p 0.24 2.23 0 0.34 +ascendant ascendant adj m s 1.26 2.36 1.1 1.08 +ascendante ascendant adj f s 1.26 2.36 0.13 0.88 +ascendantes ascendant adj f p 1.26 2.36 0 0.27 +ascendants ascendant adj m p 1.26 2.36 0.03 0.14 +ascendre ascendre ver 0.05 0 0.04 0 inf; +ascendu ascendre ver m s 0.05 0 0.01 0 par:pas; +ascenseur ascenseur nom m s 25.34 25.88 22.87 23.65 +ascenseurs ascenseur nom m p 25.34 25.88 2.48 2.23 +ascension ascension nom f s 3.87 8.04 3.65 7.7 +ascensionne ascensionner ver 0.01 0.07 0 0.07 ind:pre:3s; +ascensionnel ascensionnel adj m s 0.05 0.34 0.02 0.14 +ascensionnelle ascensionnel adj f s 0.05 0.34 0.02 0.2 +ascensionnelles ascensionnel adj f p 0.05 0.34 0.01 0 +ascensionner ascensionner ver 0.01 0.07 0.01 0 inf; +ascensions ascension nom f p 3.87 8.04 0.22 0.34 +ascite ascite nom f s 0.04 0 0.04 0 +asclépias asclépias nom m 0.01 0.14 0.01 0.14 +ascorbique ascorbique adj m s 0.01 0 0.01 0 +ascot ascot nom s 0.03 0 0.03 0 +ascèse ascèse nom f s 0 1.35 0 1.28 +ascèses ascèse nom f p 0 1.35 0 0.07 +ascète ascète nom s 0.06 0.74 0.02 0.54 +ascètes ascète nom p 0.06 0.74 0.04 0.2 +ascétique ascétique adj s 0.65 1.22 0.11 0.88 +ascétiques ascétique adj p 0.65 1.22 0.54 0.34 +ascétisme ascétisme nom m s 0.14 0.74 0.14 0.74 +asdic asdic nom m s 0.1 0.07 0.1 0.07 +ase as nom_sup f s 18.8 6.62 0.02 0.2 +asepsie asepsie nom f s 0 0.07 0 0.07 +aseptique aseptique adj s 0.01 0.27 0.01 0.2 +aseptiques aseptique adj p 0.01 0.27 0 0.07 +aseptisant aseptiser ver 0.04 0.07 0.01 0 par:pre; +aseptisation aseptisation nom f s 0 0.14 0 0.14 +aseptisé aseptisé adj m s 0.14 0.68 0.09 0.34 +aseptisée aseptisé adj f s 0.14 0.68 0.02 0.14 +aseptisées aseptisé adj f p 0.14 0.68 0 0.07 +aseptisés aseptisé adj m p 0.14 0.68 0.03 0.14 +asexualité asexualité nom f s 0.01 0 0.01 0 +asexuelle asexuel adj f s 0.02 0 0.02 0 +asexué asexué adj m s 0.33 0.95 0.13 0.14 +asexuée asexué adj f s 0.33 0.95 0.12 0.54 +asexuées asexué adj f p 0.33 0.95 0.02 0.14 +asexués asexué adj m p 0.33 0.95 0.07 0.14 +ashanti ashanti nom s 0 0.07 0 0.07 +ashkénaze ashkénaze nom s 0 0.27 0 0.07 +ashkénazes ashkénaze nom p 0 0.27 0 0.2 +ashram ashram nom m s 0.16 0.07 0.16 0.07 +asiate asiate adj s 0.01 0.47 0.01 0.47 +asiatique asiatique adj s 3 2.77 2.46 1.82 +asiatiques asiatique nom p 1.3 0.74 0.69 0.47 +asiatisé asiatiser ver m s 0 0.07 0 0.07 par:pas; +asilaire asilaire adj m s 0 0.07 0 0.07 +asile asile nom m s 26.56 13.58 25.52 11.55 +asiles asile nom m p 26.56 13.58 1.04 2.03 +asociabilité asociabilité nom f s 0.01 0.07 0.01 0.07 +asocial asocial adj m s 0.4 0.74 0.07 0.54 +asociale asocial adj f s 0.4 0.74 0.03 0 +asociales asocial adj f p 0.4 0.74 0.03 0.07 +asociaux asocial adj m p 0.4 0.74 0.28 0.14 +asparagus asparagus nom m 0.01 0.41 0.01 0.41 +aspartam aspartam nom m s 0.07 0 0.07 0 +aspartame aspartame nom m s 0.01 0 0.01 0 +aspartique aspartique adj m s 0.01 0 0.01 0 +aspect aspect nom m s 12.78 41.28 9.88 36.01 +aspects aspect nom m p 12.78 41.28 2.9 5.27 +asperge asperge nom f s 1.74 8.65 0.71 5.88 +aspergea asperger ver 2.48 7.23 0 0.74 ind:pas:3s; +aspergeaient asperger ver 2.48 7.23 0 0.34 ind:imp:3p; +aspergeait asperger ver 2.48 7.23 0.07 0.61 ind:imp:3s; +aspergeant asperger ver 2.48 7.23 0.03 0.61 par:pre; +aspergent asperger ver 2.48 7.23 0.16 0.07 ind:pre:3p; +asperger asperger ver 2.48 7.23 0.79 1.28 inf; +aspergerait asperger ver 2.48 7.23 0 0.14 cnd:pre:3s; +asperges asperge nom f p 1.74 8.65 1.03 2.77 +aspergez asperger ver 2.48 7.23 0.1 0.07 imp:pre:2p;ind:pre:2p; +aspergillose aspergillose nom f s 0.02 0 0.02 0 +aspergillus aspergillus nom m 0.07 0 0.07 0 +aspergèrent asperger ver 2.48 7.23 0 0.2 ind:pas:3p; +aspergé asperger ver m s 2.48 7.23 0.61 1.08 par:pas; +aspergée asperger ver f s 2.48 7.23 0.11 0.41 par:pas; +aspergées asperger ver f p 2.48 7.23 0.01 0.14 par:pas; +aspergés asperger ver m p 2.48 7.23 0.06 0.07 par:pas; +aspersion aspersion nom f s 0.06 0.68 0.06 0.47 +aspersions aspersion nom f p 0.06 0.68 0 0.2 +asphalte asphalte nom m s 1.4 6.89 1.4 6.89 +asphalter asphalter ver 0.12 0.47 0.01 0 inf; +asphalté asphalter ver m s 0.12 0.47 0.01 0.14 par:pas; +asphaltée asphalter ver f s 0.12 0.47 0.1 0.14 par:pas; +asphaltées asphalter ver f p 0.12 0.47 0 0.07 par:pas; +asphaltés asphalter ver m p 0.12 0.47 0 0.07 par:pas; +asphodèle asphodèle nom m s 0.03 0.61 0.02 0.14 +asphodèles asphodèle nom m p 0.03 0.61 0.01 0.47 +asphyxia asphyxier ver 1.52 2.91 0 0.14 ind:pas:3s; +asphyxiaient asphyxier ver 1.52 2.91 0.01 0.07 ind:imp:3p; +asphyxiait asphyxier ver 1.52 2.91 0 0.27 ind:imp:3s; +asphyxiant asphyxiant adj m s 0.03 1.08 0.03 0.47 +asphyxiante asphyxiant adj f s 0.03 1.08 0 0.34 +asphyxiants asphyxiant adj m p 0.03 1.08 0 0.27 +asphyxie asphyxie nom f s 1.19 1.35 1.19 1.35 +asphyxient asphyxier ver 1.52 2.91 0.17 0.14 ind:pre:3p; +asphyxier asphyxier ver 1.52 2.91 0.39 0.27 inf; +asphyxiera asphyxier ver 1.52 2.91 0 0.07 ind:fut:3s; +asphyxié asphyxier ver m s 1.52 2.91 0.67 0.68 par:pas; +asphyxiée asphyxier ver f s 1.52 2.91 0.03 0.27 par:pas; +asphyxiées asphyxié adj f p 0.1 1.08 0.04 0.14 +asphyxiés asphyxier ver m p 1.52 2.91 0.1 0.47 par:pas; +aspi aspi nom s 0.14 0.07 0.14 0 +aspic aspic nom m s 0.54 1.08 0.52 0.88 +aspics aspic nom m p 0.54 1.08 0.02 0.2 +aspidistra aspidistra nom m s 0.01 0.41 0.01 0.07 +aspidistras aspidistra nom m p 0.01 0.41 0 0.34 +aspira aspirer ver 12.07 28.85 0.03 3.04 ind:pas:3s; +aspirai aspirer ver 12.07 28.85 0 0.27 ind:pas:1s; +aspiraient aspirer ver 12.07 28.85 0.02 0.88 ind:imp:3p; +aspirais aspirer ver 12.07 28.85 0.32 1.49 ind:imp:1s; +aspirait aspirer ver 12.07 28.85 0.25 5.27 ind:imp:3s; +aspirant aspirant nom m s 1.35 1.82 1.11 0.95 +aspirante aspirant adj f s 1.13 1.15 0.36 0.07 +aspirantes aspirant adj f p 1.13 1.15 0.02 0.07 +aspirants aspirant nom m p 1.35 1.82 0.23 0.88 +aspirateur aspirateur nom m s 4.52 3.31 4.33 3.04 +aspirateurs aspirateur nom m p 4.52 3.31 0.19 0.27 +aspirateurs_traîneaux aspirateurs_traîneaux nom m p 0 0.07 0 0.07 +aspiration aspiration nom f s 3.99 6.22 2.49 2.97 +aspirations aspiration nom f p 3.99 6.22 1.5 3.24 +aspire aspirer ver 12.07 28.85 4.24 5.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aspirent aspirer ver 12.07 28.85 0.67 1.08 ind:pre:3p; +aspirer aspirer ver 12.07 28.85 2.36 3.92 inf; +aspirera aspirer ver 12.07 28.85 0.08 0.07 ind:fut:3s; +aspireraient aspirer ver 12.07 28.85 0.01 0.07 cnd:pre:3p; +aspirerait aspirer ver 12.07 28.85 0.02 0.07 cnd:pre:3s; +aspires aspirer ver 12.07 28.85 0.54 0.07 ind:pre:2s; +aspirez aspirer ver 12.07 28.85 0.47 0.41 imp:pre:2p;ind:pre:2p; +aspiriez aspirer ver 12.07 28.85 0.03 0.07 ind:imp:2p; +aspirine aspirine nom f s 9.18 4.93 8.55 4.53 +aspirines aspirine nom f p 9.18 4.93 0.62 0.41 +aspirions aspirer ver 12.07 28.85 0.02 0.07 ind:imp:1p; +aspirons aspirer ver 12.07 28.85 0.16 0.14 imp:pre:1p;ind:pre:1p; +aspirât aspirer ver 12.07 28.85 0 0.07 sub:imp:3s; +aspiré aspirer ver m s 12.07 28.85 2 2.7 par:pas; +aspirée aspirer ver f s 12.07 28.85 0.32 1.15 par:pas; +aspirées aspirer ver f p 12.07 28.85 0.07 0.14 par:pas; +aspirés aspirer ver m p 12.07 28.85 0.15 0.41 par:pas; +aspis aspi nom p 0.14 0.07 0 0.07 +aspre aspre nom f s 0 0.07 0 0.07 +aspécifique aspécifique adj s 0.01 0 0.01 0 +aspérité aspérité nom f s 0.06 2.77 0 0.74 +aspérités aspérité nom f p 0.06 2.77 0.06 2.03 +assa_foetida assa_foetida nom f s 0.27 0 0.27 0 +assagi assagir ver m s 0.42 0.95 0.14 0.27 par:pas; +assagie assagir ver f s 0.42 0.95 0.03 0.07 par:pas; +assagir assagir ver 0.42 0.95 0.15 0.41 inf; +assagirai assagir ver 0.42 0.95 0.01 0 ind:fut:1s; +assagis assagir ver 0.42 0.95 0.01 0 ind:pre:1s; +assagissant assagir ver 0.42 0.95 0.01 0 par:pre; +assagisse assagir ver 0.42 0.95 0.03 0 sub:pre:3s; +assagit assagir ver 0.42 0.95 0.04 0.2 ind:pre:3s;ind:pas:3s; +assaillaient assaillir ver 2.84 10.54 0.19 1.08 ind:imp:3p; +assaillait assaillir ver 2.84 10.54 0 0.74 ind:imp:3s; +assaillant assaillant nom m s 0.87 3.72 0.6 0.88 +assaillante assaillant adj f s 0.01 0.2 0.01 0 +assaillants assaillant nom m p 0.87 3.72 0.27 2.84 +assaille assaillir ver 2.84 10.54 0.41 0.81 ind:pre:1s;ind:pre:3s; +assaillent assaillir ver 2.84 10.54 0.55 1.22 ind:pre:3p; +assailles assaillir ver 2.84 10.54 0.01 0 ind:pre:2s; +assailli assaillir ver m s 2.84 10.54 0.81 2.64 par:pas; +assaillie assaillir ver f s 2.84 10.54 0.35 0.41 par:pas; +assaillies assaillir ver f p 2.84 10.54 0 0.2 par:pas; +assaillir assaillir ver 2.84 10.54 0.42 1.69 inf; +assaillira assaillir ver 2.84 10.54 0 0.07 ind:fut:3s; +assaillirent assaillir ver 2.84 10.54 0.02 0.41 ind:pas:3p; +assaillis assaillir ver m p 2.84 10.54 0.08 0.47 ind:pas:1s;par:pas; +assaillit assaillir ver 2.84 10.54 0 0.61 ind:pas:3s; +assaillons assaillir ver 2.84 10.54 0.01 0 imp:pre:1p; +assaini assainir ver m s 0.54 1.01 0.18 0.14 par:pas; +assainie assainir ver f s 0.54 1.01 0.03 0 par:pas; +assainir assainir ver 0.54 1.01 0.33 0.68 inf; +assainirait assainir ver 0.54 1.01 0 0.07 cnd:pre:3s; +assainis assainir ver m p 0.54 1.01 0 0.14 ind:pre:1s;par:pas; +assainissement assainissement nom m s 0.26 0.34 0.26 0.34 +assaisonna assaisonner ver 0.36 2.36 0 0.14 ind:pas:3s; +assaisonnait assaisonner ver 0.36 2.36 0.01 0.27 ind:imp:3s; +assaisonne assaisonner ver 0.36 2.36 0.01 0.14 imp:pre:2s;ind:pre:3s; +assaisonnement assaisonnement nom m s 0.52 0.41 0.5 0.34 +assaisonnements assaisonnement nom m p 0.52 0.41 0.02 0.07 +assaisonner assaisonner ver 0.36 2.36 0.09 0.61 inf; +assaisonnerait assaisonner ver 0.36 2.36 0 0.14 cnd:pre:3s; +assaisonnèrent assaisonner ver 0.36 2.36 0 0.07 ind:pas:3p; +assaisonné assaisonner ver m s 0.36 2.36 0.18 0.54 par:pas; +assaisonnée assaisonner ver f s 0.36 2.36 0.06 0.14 par:pas; +assaisonnées assaisonner ver f p 0.36 2.36 0.01 0.07 par:pas; +assaisonnés assaisonner ver m p 0.36 2.36 0 0.27 par:pas; +assassin assassin nom m s 55.37 20.34 43.17 14.39 +assassina assassiner ver 30.87 15.27 0.27 0.41 ind:pas:3s; +assassinai assassiner ver 30.87 15.27 0 0.07 ind:pas:1s; +assassinaient assassiner ver 30.87 15.27 0.04 0.14 ind:imp:3p; +assassinais assassiner ver 30.87 15.27 0.01 0 ind:imp:2s; +assassinait assassiner ver 30.87 15.27 0.09 0.47 ind:imp:3s; +assassinant assassiner ver 30.87 15.27 0.17 0.27 par:pre; +assassinat assassinat nom m s 8.38 12.16 7.26 9.73 +assassinats assassinat nom m p 8.38 12.16 1.13 2.43 +assassine assassiner ver 30.87 15.27 1.32 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assassinent assassiner ver 30.87 15.27 0.36 0.2 ind:pre:3p; +assassiner assassiner ver 30.87 15.27 6.16 4.39 inf;; +assassinera assassiner ver 30.87 15.27 0.07 0 ind:fut:3s; +assassinerai assassiner ver 30.87 15.27 0.01 0 ind:fut:1s; +assassinerais assassiner ver 30.87 15.27 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +assassinerez assassiner ver 30.87 15.27 0.01 0 ind:fut:2p; +assassines assassiner ver 30.87 15.27 0.31 0.14 ind:pre:2s; +assassinez assassiner ver 30.87 15.27 0.1 0 imp:pre:2p;ind:pre:2p; +assassinons assassiner ver 30.87 15.27 0.01 0 imp:pre:1p; +assassins assassin nom m p 55.37 20.34 12.2 5.95 +assassiné assassiner ver m s 30.87 15.27 15.08 5.14 par:pas; +assassinée assassiner ver f s 30.87 15.27 4.88 1.08 par:pas; +assassinées assassiner ver f p 30.87 15.27 0.47 0.14 par:pas; +assassinés assassiner ver m p 30.87 15.27 1.5 1.28 par:pas; +assaut assaut nom m s 12.12 32.16 11.23 27.36 +assauts assaut nom m p 12.12 32.16 0.9 4.8 +assavoir assavoir ver 0 0.14 0 0.14 inf; +asse asse nom f s 0.66 0.14 0.66 0.14 +asseau asseau nom m s 0.03 0 0.03 0 +assembla assembler ver 3.86 7.03 0 0.2 ind:pas:3s; +assemblage assemblage nom m s 1.01 5.88 0.99 4.86 +assemblages assemblage nom m p 1.01 5.88 0.02 1.01 +assemblaient assembler ver 3.86 7.03 0.02 0.74 ind:imp:3p; +assemblait assembler ver 3.86 7.03 0.02 0.47 ind:imp:3s; +assemblant assembler ver 3.86 7.03 0.04 0.07 par:pre; +assemble assembler ver 3.86 7.03 0.68 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assemblent assembler ver 3.86 7.03 0.61 0.54 ind:pre:3p; +assembler assembler ver 3.86 7.03 1.13 1.55 inf; +assemblera assembler ver 3.86 7.03 0.1 0 ind:fut:3s; +assemblerez assembler ver 3.86 7.03 0.01 0 ind:fut:2p; +assembleur assembleur nom m s 0.12 0.14 0.01 0.07 +assembleurs assembleur nom m p 0.12 0.14 0.11 0.07 +assemblez assembler ver 3.86 7.03 0.16 0.07 imp:pre:2p;ind:pre:2p; +assemblons assembler ver 3.86 7.03 0.16 0.07 imp:pre:1p;ind:pre:1p; +assemblé assembler ver m s 3.86 7.03 0.48 0.41 par:pas; +assemblée assemblée nom f s 7.34 35.14 7.03 31.08 +assemblées assemblée nom f p 7.34 35.14 0.3 4.05 +assemblés assembler ver m p 3.86 7.03 0.19 0.81 par:pas; +assena assener ver 0.11 5.47 0 0.74 ind:pas:3s; +assenai assener ver 0.11 5.47 0 0.14 ind:pas:1s; +assenaient assener ver 0.11 5.47 0 0.2 ind:imp:3p; +assenais assener ver 0.11 5.47 0 0.14 ind:imp:1s; +assenait assener ver 0.11 5.47 0 0.41 ind:imp:3s; +assenant assener ver 0.11 5.47 0 0.41 par:pre; +assener assener ver 0.11 5.47 0.03 0.74 inf; +assentiment assentiment nom m s 0.17 3.45 0.17 3.38 +assentiments assentiment nom m p 0.17 3.45 0 0.07 +assené assener ver m s 0.11 5.47 0 0.61 par:pas; +assenée assener ver f s 0.11 5.47 0 0.34 par:pas; +assenées assener ver f p 0.11 5.47 0.01 0.2 par:pas; +assenés assener ver m p 0.11 5.47 0.02 0.47 par:pas; +asseoir asseoir ver 322.71 395.27 65.1 66.08 inf; +assermenter assermenter ver 0.16 0.34 0.03 0 inf; +assermentez assermenter ver 0.16 0.34 0.02 0 imp:pre:2p;ind:pre:2p; +assermenté assermenté adj m s 0.37 0.27 0.32 0.07 +assermentée assermenter ver f s 0.16 0.34 0.02 0.07 par:pas; +assermentés assermenter ver m p 0.16 0.34 0.06 0 par:pas; +assertion assertion nom f s 0.1 1.42 0.07 0.54 +assertions assertion nom f p 0.1 1.42 0.04 0.88 +asservi asservir ver m s 1.33 2.36 0.42 0.41 par:pas; +asservie asservir ver f s 1.33 2.36 0.04 0.07 par:pas; +asservies asservir ver f p 1.33 2.36 0.11 0.14 par:pas; +asservir asservir ver 1.33 2.36 0.37 0.88 inf; +asservirai asservir ver 1.33 2.36 0.01 0 ind:fut:1s; +asservirait asservir ver 1.33 2.36 0 0.07 cnd:pre:3s; +asserviront asservir ver 1.33 2.36 0.01 0.07 ind:fut:3p; +asservis asservir ver m p 1.33 2.36 0.27 0.34 par:pas; +asservissaient asservir ver 1.33 2.36 0 0.07 ind:imp:3p; +asservissait asservir ver 1.33 2.36 0 0.2 ind:imp:3s; +asservissant asservir ver 1.33 2.36 0.02 0.07 par:pre; +asservissement asservissement nom m s 0.11 1.15 0.11 1.08 +asservissements asservissement nom m p 0.11 1.15 0 0.07 +asservissent asservir ver 1.33 2.36 0.05 0 ind:pre:3p; +asservit asservir ver 1.33 2.36 0.02 0.07 ind:pre:3s;ind:pas:3s; +assesseur assesseur nom m s 0.73 1.28 0.59 0.54 +assesseurs assesseur nom m p 0.73 1.28 0.14 0.74 +asseyaient asseoir ver 322.71 395.27 0.36 2.77 ind:imp:3p; +asseyais asseoir ver 322.71 395.27 1.25 2.23 ind:imp:1s;ind:imp:2s; +asseyait asseoir ver 322.71 395.27 2.21 11.62 ind:imp:3s; +asseyant asseoir ver 322.71 395.27 0.12 5.81 par:pre; +asseye asseoir ver 322.71 395.27 0.61 0.14 sub:pre:1s;sub:pre:3s; +asseyent asseoir ver 322.71 395.27 0.31 0.81 ind:pre:3p; +asseyes asseoir ver 322.71 395.27 0.21 0 sub:pre:2s; +asseyez asseoir ver 322.71 395.27 80.07 7.84 imp:pre:2p;ind:pre:2p; +asseyiez asseoir ver 322.71 395.27 0.04 0 ind:imp:2p; +asseyions asseoir ver 322.71 395.27 0.04 0.81 ind:imp:1p; +asseyons asseoir ver 322.71 395.27 4.64 1.69 imp:pre:1p;ind:pre:1p; +assez assez adv_sup 407.75 420.14 407.75 420.14 +assidu assidu adj m s 0.68 2.91 0.5 1.01 +assidue assidu adj f s 0.68 2.91 0.12 0.95 +assidues assidu adj f p 0.68 2.91 0.03 0.14 +assiduité assiduité nom f s 0.36 1.82 0.19 1.62 +assiduités assiduité nom f p 0.36 1.82 0.17 0.2 +assidus assidu adj m p 0.68 2.91 0.02 0.81 +assidûment assidûment adv 0.09 1.96 0.09 1.96 +assied asseoir ver 322.71 395.27 4.74 9.26 ind:pre:3s; +assieds asseoir ver 322.71 395.27 79.85 9.12 imp:pre:2s;ind:pre:1s;ind:pre:2s; +assiette assiette nom f s 21.24 56.62 14.88 36.28 +assiettes assiette nom f p 21.24 56.62 6.36 20.34 +assiettée assiettée nom f s 0 0.95 0 0.41 +assiettées assiettée nom f p 0 0.95 0 0.54 +assigna assigner ver 4.25 4.93 0.01 0.27 ind:pas:3s; +assignai assigner ver 4.25 4.93 0 0.07 ind:pas:1s; +assignais assigner ver 4.25 4.93 0 0.07 ind:imp:1s; +assignait assigner ver 4.25 4.93 0.03 0.74 ind:imp:3s; +assignant assigner ver 4.25 4.93 0.01 0.14 par:pre; +assignation assignation nom f s 1.68 0.47 1.43 0.2 +assignations assignation nom f p 1.68 0.47 0.25 0.27 +assignats assignat nom m p 0.15 0.07 0.15 0.07 +assigne assigner ver 4.25 4.93 0.39 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assignement assignement nom m s 0.01 0 0.01 0 +assignent assigner ver 4.25 4.93 0.04 0 ind:pre:3p; +assigner assigner ver 4.25 4.93 0.68 0.74 inf; +assignera assigner ver 4.25 4.93 0.05 0 ind:fut:3s; +assignerai assigner ver 4.25 4.93 0.04 0 ind:fut:1s; +assignerait assigner ver 4.25 4.93 0.01 0.07 cnd:pre:3s; +assignerons assigner ver 4.25 4.93 0.05 0 ind:fut:1p; +assigneront assigner ver 4.25 4.93 0.03 0.07 ind:fut:3p; +assignes assigner ver 4.25 4.93 0 0.07 ind:pre:2s; +assigné assigner ver m s 4.25 4.93 1.88 1.08 par:pas; +assignée assigner ver f s 4.25 4.93 0.43 1.08 par:pas; +assignées assigner ver f p 4.25 4.93 0.09 0.27 par:pas; +assignés assigner ver m p 4.25 4.93 0.52 0.07 par:pas; +assimila assimiler ver 1.36 8.38 0 0.14 ind:pas:3s; +assimilable assimilable adj s 0.02 0.54 0.02 0.41 +assimilables assimilable adj p 0.02 0.54 0 0.14 +assimilaient assimiler ver 1.36 8.38 0 0.07 ind:imp:3p; +assimilais assimiler ver 1.36 8.38 0.01 0.2 ind:imp:1s; +assimilait assimiler ver 1.36 8.38 0 0.95 ind:imp:3s; +assimilant assimiler ver 1.36 8.38 0 0.41 par:pre; +assimilateurs assimilateur adj m p 0 0.07 0 0.07 +assimilation assimilation nom f s 0.14 1.49 0.14 1.42 +assimilations assimilation nom f p 0.14 1.49 0 0.07 +assimile assimiler ver 1.36 8.38 0.2 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assimilent assimiler ver 1.36 8.38 0 0.14 ind:pre:3p; +assimiler assimiler ver 1.36 8.38 0.7 3.04 inf; +assimilerait assimiler ver 1.36 8.38 0 0.07 cnd:pre:3s; +assimilez assimiler ver 1.36 8.38 0.04 0.14 imp:pre:2p;ind:pre:2p; +assimilèrent assimiler ver 1.36 8.38 0.01 0.2 ind:pas:3p; +assimilé assimiler ver m s 1.36 8.38 0.35 1.62 par:pas; +assimilée assimiler ver f s 1.36 8.38 0.03 0.34 par:pas; +assimilées assimiler ver f p 1.36 8.38 0 0.2 par:pas; +assimilés assimilé nom m p 0.04 0.34 0.03 0.34 +assirent asseoir ver 322.71 395.27 0.04 6.76 ind:pas:3p; +assis asseoir ver m 322.71 395.27 52.34 150.07 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +assise asseoir ver f s 322.71 395.27 15.99 51.69 par:pas; +assises assise nom f p 3.88 9.66 1.88 6.55 +assista assister ver 30.57 62.23 0.13 2.3 ind:pas:3s; +assistai assister ver 30.57 62.23 0.02 2.16 ind:pas:1s; +assistaient assister ver 30.57 62.23 0.36 1.49 ind:imp:3p; +assistais assister ver 30.57 62.23 0.3 2.57 ind:imp:1s;ind:imp:2s; +assistait assister ver 30.57 62.23 0.63 6.01 ind:imp:3s; +assistanat assistanat nom m s 0 0.14 0 0.14 +assistance assistance nom f s 10.23 20 10.2 19.93 +assistances assistance nom f p 10.23 20 0.03 0.07 +assistant assistant nom m s 31.93 16.22 15.7 5.14 +assistante assistant nom f s 31.93 16.22 12.34 5.54 +assistantes assistant nom f p 31.93 16.22 0.59 0.95 +assistants assistant nom m p 31.93 16.22 3.3 4.59 +assistas assister ver 30.57 62.23 0 0.07 ind:pas:2s; +assiste assister ver 30.57 62.23 4.21 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assistent assister ver 30.57 62.23 0.41 0.95 ind:pre:3p; +assister assister ver 30.57 62.23 12.49 23.18 inf;; +assistera assister ver 30.57 62.23 0.85 0.07 ind:fut:3s; +assisterai assister ver 30.57 62.23 0.25 0.27 ind:fut:1s; +assisteraient assister ver 30.57 62.23 0 0.27 cnd:pre:3p; +assisterais assister ver 30.57 62.23 0.02 0.07 cnd:pre:1s; +assisterait assister ver 30.57 62.23 0.07 0.34 cnd:pre:3s; +assisteras assister ver 30.57 62.23 0.09 0.07 ind:fut:2s; +assisterez assister ver 30.57 62.23 0.41 0.14 ind:fut:2p; +assisteriez assister ver 30.57 62.23 0.02 0 cnd:pre:2p; +assisterons assister ver 30.57 62.23 0.3 0.27 ind:fut:1p; +assisteront assister ver 30.57 62.23 0.15 0 ind:fut:3p; +assistez assister ver 30.57 62.23 0.61 0.2 imp:pre:2p;ind:pre:2p; +assistiez assister ver 30.57 62.23 0.52 0.14 ind:imp:2p; +assistions assister ver 30.57 62.23 0.01 0.61 ind:imp:1p; +assistons assister ver 30.57 62.23 0.51 0.34 imp:pre:1p;ind:pre:1p; +assistâmes assister ver 30.57 62.23 0 0.74 ind:pas:1p; +assistât assister ver 30.57 62.23 0 0.14 sub:imp:3s; +assistèrent assister ver 30.57 62.23 0.05 0.54 ind:pas:3p; +assisté assister ver m s 30.57 62.23 6.91 12.64 par:pas; +assistée assisté adj f s 0.88 0.68 0.33 0.2 +assistées assisté adj f p 0.88 0.68 0.04 0.07 +assistés assisté nom m p 0.39 0.47 0.2 0.2 +assit asseoir ver 322.71 395.27 0.82 48.72 ind:pas:3s; +assiège assiéger ver 1.36 5.81 0.15 0.34 ind:pre:3s; +assiègent assiéger ver 1.36 5.81 0.41 0.61 ind:pre:3p; +assiégea assiéger ver 1.36 5.81 0 0.07 ind:pas:3s; +assiégeaient assiéger ver 1.36 5.81 0.01 0.61 ind:imp:3p; +assiégeait assiéger ver 1.36 5.81 0.01 0.47 ind:imp:3s; +assiégeant assiéger ver 1.36 5.81 0 0.27 par:pre; +assiégeantes assiégeant adj f p 0 0.07 0 0.07 +assiégeants assiégeant nom m p 0.04 0.95 0.04 0.74 +assiéger assiéger ver 1.36 5.81 0.09 0.88 inf; +assiégera assiéger ver 1.36 5.81 0.01 0 ind:fut:3s; +assiégeraient assiéger ver 1.36 5.81 0 0.07 cnd:pre:3p; +assiégé assiéger ver m s 1.36 5.81 0.23 0.47 par:pas; +assiégée assiéger ver f s 1.36 5.81 0.14 1.15 par:pas; +assiégées assiéger ver f p 1.36 5.81 0.02 0.27 par:pas; +assiégés assiéger ver m p 1.36 5.81 0.28 0.61 par:pas; +assiéra asseoir ver 322.71 395.27 0.31 0.07 ind:fut:3s; +assiérai asseoir ver 322.71 395.27 0.33 0.14 ind:fut:1s; +assiérais asseoir ver 322.71 395.27 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +assiérait asseoir ver 322.71 395.27 0.07 0.34 cnd:pre:3s; +assiéras asseoir ver 322.71 395.27 0.02 0 ind:fut:2s; +assiérions asseoir ver 322.71 395.27 0 0.07 cnd:pre:1p; +assiéront asseoir ver 322.71 395.27 0.19 0 ind:fut:3p; +associa associer ver 13.67 14.19 0.12 0.41 ind:pas:3s; +associai associer ver 13.67 14.19 0 0.14 ind:pas:1s; +associaient associer ver 13.67 14.19 0.02 0.27 ind:imp:3p; +associais associer ver 13.67 14.19 0.02 0.07 ind:imp:1s; +associait associer ver 13.67 14.19 0.11 1.08 ind:imp:3s; +associant associer ver 13.67 14.19 0.27 0.68 par:pre; +associassent associer ver 13.67 14.19 0 0.07 sub:imp:3p; +associatifs associatif adj m p 0.11 0.07 0.01 0 +association association nom f s 12.02 10.61 10.49 8.65 +associations association nom f p 12.02 10.61 1.53 1.96 +associative associatif adj f s 0.11 0.07 0.1 0.07 +associe associer ver 13.67 14.19 1.81 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +associent associer ver 13.67 14.19 0.42 0.41 ind:pre:3p; +associer associer ver 13.67 14.19 2.86 4.53 inf; +associera associer ver 13.67 14.19 0.06 0 ind:fut:3s; +associerai associer ver 13.67 14.19 0.31 0.07 ind:fut:1s; +associeraient associer ver 13.67 14.19 0.01 0.07 cnd:pre:3p; +associerais associer ver 13.67 14.19 0.04 0.07 cnd:pre:1s; +associerait associer ver 13.67 14.19 0.01 0.14 cnd:pre:3s; +associeront associer ver 13.67 14.19 0 0.07 ind:fut:3p; +associez associer ver 13.67 14.19 0.35 0.07 imp:pre:2p;ind:pre:2p; +associions associer ver 13.67 14.19 0 0.07 ind:imp:1p; +associons associer ver 13.67 14.19 0.19 0 imp:pre:1p;ind:pre:1p; +associât associer ver 13.67 14.19 0 0.14 sub:imp:3s; +associèrent associer ver 13.67 14.19 0.01 0.07 ind:pas:3p; +associé associé nom m s 22.51 4.12 14.18 2.09 +associée associé nom f s 22.51 4.12 1.72 0.14 +associées associer ver f p 13.67 14.19 0.38 0.27 par:pas; +associés associé nom m p 22.51 4.12 6.46 1.89 +assoie asseoir ver 322.71 395.27 1.14 0.14 sub:pre:1s;sub:pre:3s; +assoient asseoir ver 322.71 395.27 0.96 0.88 ind:pre:3p; +assoies asseoir ver 322.71 395.27 0.26 0.07 sub:pre:2s; +assoiffent assoiffer ver 2.19 2.91 0 0.07 ind:pre:3p; +assoiffer assoiffer ver 2.19 2.91 0.02 0 inf; +assoiffez assoiffer ver 2.19 2.91 0.01 0 imp:pre:2p; +assoiffé assoiffer ver m s 2.19 2.91 0.81 1.08 par:pas; +assoiffée assoiffer ver f s 2.19 2.91 0.38 0.54 par:pas; +assoiffées assoiffer ver f p 2.19 2.91 0.09 0.27 par:pas; +assoiffés assoiffer ver m p 2.19 2.91 0.88 0.95 par:pas; +assoira asseoir ver 322.71 395.27 0.25 0 ind:fut:3s; +assoirai asseoir ver 322.71 395.27 0.15 0.27 ind:fut:1s; +assoiraient asseoir ver 322.71 395.27 0 0.07 cnd:pre:3p; +assoirais asseoir ver 322.71 395.27 0.14 0 cnd:pre:1s; +assoirait asseoir ver 322.71 395.27 0.01 0.14 cnd:pre:3s; +assoiras asseoir ver 322.71 395.27 0.14 0 ind:fut:2s; +assoiront asseoir ver 322.71 395.27 0.01 0.2 ind:fut:3p; +assois asseoir ver 322.71 395.27 4.94 2.64 imp:pre:2s;ind:pre:1s;ind:pre:2s; +assoit asseoir ver 322.71 395.27 3.31 6.42 ind:pre:3s; +assombri assombrir ver m s 1.83 13.78 0.33 2.43 par:pas; +assombrie assombrir ver f s 1.83 13.78 0.16 1.08 par:pas; +assombries assombrir ver f p 1.83 13.78 0.01 0.61 par:pas; +assombrir assombrir ver 1.83 13.78 0.34 1.62 inf; +assombrira assombrir ver 1.83 13.78 0.04 0.07 ind:fut:3s; +assombrirent assombrir ver 1.83 13.78 0 0.2 ind:pas:3p; +assombris assombrir ver m p 1.83 13.78 0.03 0.81 ind:pre:2s;par:pas; +assombrissaient assombrir ver 1.83 13.78 0.01 0.27 ind:imp:3p; +assombrissait assombrir ver 1.83 13.78 0.03 2.43 ind:imp:3s; +assombrissant assombrir ver 1.83 13.78 0 0.34 par:pre; +assombrissement assombrissement nom m s 0 0.14 0 0.14 +assombrissent assombrir ver 1.83 13.78 0.19 0.2 ind:pre:3p; +assombrit assombrir ver 1.83 13.78 0.69 3.65 ind:pre:3s;ind:pas:3s; +assombrît assombrir ver 1.83 13.78 0 0.07 sub:imp:3s; +assomma assommer ver 13.09 17.23 0 0.68 ind:pas:3s; +assommaient assommer ver 13.09 17.23 0 0.34 ind:imp:3p; +assommait assommer ver 13.09 17.23 0.14 1.35 ind:imp:3s; +assommant assommant adj m s 1.5 3.04 1.06 1.15 +assommante assommant adj f s 1.5 3.04 0.26 0.47 +assommantes assommant adj f p 1.5 3.04 0.09 0.81 +assommants assommant adj m p 1.5 3.04 0.09 0.61 +assomme assommer ver 13.09 17.23 3.17 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assomment assommer ver 13.09 17.23 0.25 0.41 ind:pre:3p; +assommer assommer ver 13.09 17.23 3.45 3.51 inf; +assommera assommer ver 13.09 17.23 0.07 0.07 ind:fut:3s; +assommerai assommer ver 13.09 17.23 0.03 0 ind:fut:1s; +assommeraient assommer ver 13.09 17.23 0.1 0.07 cnd:pre:3p; +assommerais assommer ver 13.09 17.23 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +assommerait assommer ver 13.09 17.23 0.05 0.07 cnd:pre:3s; +assommeras assommer ver 13.09 17.23 0.05 0 ind:fut:2s; +assommes assommer ver 13.09 17.23 0.35 0.07 ind:pre:2s; +assommeur assommeur nom m s 0.01 0.14 0.01 0.14 +assommez assommer ver 13.09 17.23 0.62 0.07 imp:pre:2p;ind:pre:2p; +assommiez assommer ver 13.09 17.23 0.02 0.07 ind:imp:2p; +assommoir assommoir nom m s 0.02 0.68 0.02 0.54 +assommoirs assommoir nom m p 0.02 0.68 0 0.14 +assommons assommer ver 13.09 17.23 0.12 0.27 imp:pre:1p; +assommât assommer ver 13.09 17.23 0 0.07 sub:imp:3s; +assommé assommer ver m s 13.09 17.23 3.54 4.8 par:pas; +assommée assommer ver f s 13.09 17.23 0.72 1.69 par:pas; +assommées assommer ver f p 13.09 17.23 0.01 0.14 par:pas; +assommés assommer ver m p 13.09 17.23 0.24 1.22 par:pas; +assomption assomption nom f s 0.03 0.47 0 0.41 +assomptions assomption nom f p 0.03 0.47 0.03 0.07 +assonance assonance nom f s 0.01 0.27 0 0.07 +assonances assonance nom f p 0.01 0.27 0.01 0.2 +assonants assonant adj m p 0 0.07 0 0.07 +assorti assorti adj m s 1.71 4.05 0.53 0.95 +assortie assortir ver f s 2 5.95 0.45 1.22 par:pas; +assorties assortir ver f p 2 5.95 0.42 0.95 par:pas; +assortiment assortiment nom m s 1.12 2.23 1.09 2.16 +assortiments assortiment nom m p 1.12 2.23 0.03 0.07 +assortir assortir ver 2 5.95 0.16 0.54 inf; +assortirai assortir ver 2 5.95 0.01 0 ind:fut:1s; +assortirais assortir ver 2 5.95 0.01 0 cnd:pre:1s; +assortis assorti adj m p 1.71 4.05 0.68 1.69 +assortissaient assortir ver 2 5.95 0 0.14 ind:imp:3p; +assortissais assortir ver 2 5.95 0 0.07 ind:imp:1s; +assortissait assortir ver 2 5.95 0.1 0.07 ind:imp:3s; +assortissant assortir ver 2 5.95 0 0.07 par:pre; +assortissent assortir ver 2 5.95 0 0.07 ind:pre:3p; +assortit assortir ver 2 5.95 0 0.27 ind:pre:3s;ind:pas:3s; +assoté assoter ver m s 0 0.14 0 0.07 par:pas; +assotés assoter ver m p 0 0.14 0 0.07 par:pas; +assoupi assoupir ver m s 2.18 11.01 0.88 2.36 par:pas; +assoupie assoupir ver f s 2.18 11.01 0.25 1.22 par:pas; +assoupies assoupir ver f p 2.18 11.01 0.14 0 par:pas; +assoupir assoupir ver 2.18 11.01 0.4 3.24 inf; +assoupira assoupir ver 2.18 11.01 0.01 0 ind:fut:3s; +assoupirais assoupir ver 2.18 11.01 0.1 0.07 cnd:pre:1s;cnd:pre:2s; +assoupis assoupir ver m p 2.18 11.01 0.34 1.01 ind:pre:1s;ind:pre:2s;par:pas; +assoupissaient assoupir ver 2.18 11.01 0 0.34 ind:imp:3p; +assoupissais assoupir ver 2.18 11.01 0 0.14 ind:imp:1s; +assoupissait assoupir ver 2.18 11.01 0 0.74 ind:imp:3s; +assoupissant assoupir ver 2.18 11.01 0 0.07 par:pre; +assoupisse assoupir ver 2.18 11.01 0.02 0.14 sub:pre:1s;sub:pre:3s; +assoupissement assoupissement nom m s 0.1 1.01 0.1 1.01 +assoupissent assoupir ver 2.18 11.01 0.02 0.27 ind:pre:3p; +assoupit assoupir ver 2.18 11.01 0.03 1.42 ind:pre:3s;ind:pas:3s; +assoupli assouplir ver m s 0.51 2.23 0.02 0.2 par:pas; +assouplie assouplir ver f s 0.51 2.23 0 0.14 par:pas; +assouplies assouplir ver f p 0.51 2.23 0 0.07 par:pas; +assouplir assouplir ver 0.51 2.23 0.42 0.88 inf; +assouplira assouplir ver 0.51 2.23 0.02 0 ind:fut:3s; +assouplis assouplir ver m p 0.51 2.23 0.01 0.07 imp:pre:2s;par:pas; +assouplissaient assouplir ver 0.51 2.23 0.01 0.07 ind:imp:3p; +assouplissait assouplir ver 0.51 2.23 0 0.34 ind:imp:3s; +assouplissant assouplissant nom m s 0.03 0 0.03 0 +assouplissement assouplissement nom m s 0.09 0.54 0.04 0.54 +assouplissements assouplissement nom m p 0.09 0.54 0.04 0 +assouplissent assouplir ver 0.51 2.23 0 0.14 ind:pre:3p; +assouplit assouplir ver 0.51 2.23 0.03 0.34 ind:pre:3s;ind:pas:3s; +assourdi assourdir ver m s 0.17 7.7 0.02 2.91 par:pas; +assourdie assourdir ver f s 0.17 7.7 0.02 0.88 par:pas; +assourdies assourdir ver f p 0.17 7.7 0 0.27 par:pas; +assourdir assourdir ver 0.17 7.7 0.01 0.34 inf; +assourdiraient assourdir ver 0.17 7.7 0 0.07 cnd:pre:3p; +assourdiras assourdir ver 0.17 7.7 0 0.07 ind:fut:2s; +assourdirent assourdir ver 0.17 7.7 0 0.07 ind:pas:3p; +assourdis assourdir ver m p 0.17 7.7 0.04 0.88 ind:pre:1s;ind:pre:2s;par:pas; +assourdissaient assourdir ver 0.17 7.7 0 0.27 ind:imp:3p; +assourdissait assourdir ver 0.17 7.7 0.01 0.41 ind:imp:3s; +assourdissant assourdissant adj m s 0.73 6.49 0.57 4.86 +assourdissante assourdissant adj f s 0.73 6.49 0.02 0.81 +assourdissantes assourdissant adj f p 0.73 6.49 0.01 0.41 +assourdissants assourdissant adj m p 0.73 6.49 0.12 0.41 +assourdissement assourdissement nom m s 0 0.14 0 0.14 +assourdissent assourdir ver 0.17 7.7 0.01 0.34 ind:pre:3p; +assourdit assourdir ver 0.17 7.7 0.02 0.61 ind:pre:3s;ind:pas:3s; +assouvi assouvir ver m s 2.15 5.41 0.18 0.54 par:pas; +assouvie assouvir ver f s 2.15 5.41 0.28 0.54 par:pas; +assouvies assouvir ver f p 2.15 5.41 0.01 0.14 par:pas; +assouvir assouvir ver 2.15 5.41 0.96 2.57 inf; +assouvira assouvir ver 2.15 5.41 0 0.2 ind:fut:3s; +assouvirai assouvir ver 2.15 5.41 0 0.07 ind:fut:1s; +assouvirait assouvir ver 2.15 5.41 0 0.07 cnd:pre:3s; +assouviras assouvir ver 2.15 5.41 0.01 0.07 ind:fut:2s; +assouvirent assouvir ver 2.15 5.41 0.01 0 ind:pas:3p; +assouvis assouvir ver m p 2.15 5.41 0.27 0.34 ind:pre:1s;ind:pre:2s;par:pas; +assouvissaient assouvir ver 2.15 5.41 0.01 0 ind:imp:3p; +assouvissait assouvir ver 2.15 5.41 0.02 0.34 ind:imp:3s; +assouvissant assouvir ver 2.15 5.41 0 0.07 par:pre; +assouvisse assouvir ver 2.15 5.41 0 0.07 sub:pre:3s; +assouvissement assouvissement nom m s 0.03 1.22 0.03 1.22 +assouvissent assouvir ver 2.15 5.41 0.38 0.07 ind:pre:3p; +assouvit assouvir ver 2.15 5.41 0.02 0.34 ind:pre:3s;ind:pas:3s; +assoyait asseoir ver 322.71 395.27 0 0.07 ind:imp:3s; +assoyez asseoir ver 322.71 395.27 0.87 0 imp:pre:2p;ind:pre:2p; +assoyons asseoir ver 322.71 395.27 0 0.07 ind:pre:1p; +assujetti assujettir ver m s 0.15 3.24 0.04 0.81 par:pas; +assujettie assujettir ver f s 0.15 3.24 0.03 0.2 par:pas; +assujetties assujettir ver f p 0.15 3.24 0.01 0.2 par:pas; +assujettir assujettir ver 0.15 3.24 0.04 1.01 inf; +assujettiraient assujettir ver 0.15 3.24 0 0.07 cnd:pre:3p; +assujettis assujetti adj m p 0.05 0.27 0.03 0.14 +assujettissaient assujettir ver 0.15 3.24 0 0.07 ind:imp:3p; +assujettissait assujettir ver 0.15 3.24 0 0.07 ind:imp:3s; +assujettissant assujettissant adj m s 0.01 0 0.01 0 +assujettisse assujettir ver 0.15 3.24 0.01 0 sub:pre:3s; +assujettissement assujettissement nom m s 0.03 0.34 0.03 0.34 +assujettissent assujettir ver 0.15 3.24 0 0.07 ind:pre:3p; +assujettit assujettir ver 0.15 3.24 0 0.47 ind:pre:3s;ind:pas:3s; +assuma assumer ver 12.83 14.8 0.03 0.27 ind:pas:3s; +assumai assumer ver 12.83 14.8 0 0.07 ind:pas:1s; +assumaient assumer ver 12.83 14.8 0 0.27 ind:imp:3p; +assumais assumer ver 12.83 14.8 0.04 0.07 ind:imp:1s; +assumait assumer ver 12.83 14.8 0.17 1.96 ind:imp:3s; +assumant assumer ver 12.83 14.8 0.11 0.41 par:pre; +assume assumer ver 12.83 14.8 4.17 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assument assumer ver 12.83 14.8 0.33 0.47 ind:pre:3p; +assumer assumer ver 12.83 14.8 5.7 6.35 inf; +assumera assumer ver 12.83 14.8 0.2 0 ind:fut:3s; +assumerai assumer ver 12.83 14.8 0.36 0.07 ind:fut:1s; +assumeraient assumer ver 12.83 14.8 0 0.07 cnd:pre:3p; +assumerais assumer ver 12.83 14.8 0.02 0 cnd:pre:1s;cnd:pre:2s; +assumerait assumer ver 12.83 14.8 0.04 0.2 cnd:pre:3s; +assumeras assumer ver 12.83 14.8 0.14 0 ind:fut:2s; +assumerez assumer ver 12.83 14.8 0.09 0.07 ind:fut:2p; +assumerions assumer ver 12.83 14.8 0.01 0 cnd:pre:1p; +assumerons assumer ver 12.83 14.8 0 0.07 ind:fut:1p; +assumez assumer ver 12.83 14.8 0.38 0.14 imp:pre:2p;ind:pre:2p; +assumions assumer ver 12.83 14.8 0.01 0 ind:imp:1p; +assumons assumer ver 12.83 14.8 0.48 0.27 imp:pre:1p;ind:pre:1p; +assumât assumer ver 12.83 14.8 0 0.07 sub:imp:3s; +assumèrent assumer ver 12.83 14.8 0 0.07 ind:pas:3p; +assumé assumer ver m s 12.83 14.8 0.53 1.42 par:pas; +assumée assumer ver f s 12.83 14.8 0.01 0.47 par:pas; +assumées assumer ver f p 12.83 14.8 0 0.2 par:pas; +assumés assumer ver m p 12.83 14.8 0.02 0.07 par:pas; +assura assurer ver 107.71 126.55 0.22 11.62 ind:pas:3s; +assurable assurable adj m s 0.01 0 0.01 0 +assurage assurage nom m s 0.02 0 0.02 0 +assurai assurer ver 107.71 126.55 0.01 1.42 ind:pas:1s; +assuraient assurer ver 107.71 126.55 0.11 3.38 ind:imp:3p; +assurais assurer ver 107.71 126.55 0.59 0.54 ind:imp:1s;ind:imp:2s; +assurait assurer ver 107.71 126.55 0.85 11.49 ind:imp:3s; +assurance assurance nom f s 29.8 33.24 24.3 25.14 +assurance_accidents assurance_accidents nom f s 0.1 0 0.1 0 +assurance_chômage assurance_chômage nom f s 0.01 0 0.01 0 +assurance_maladie assurance_maladie nom f s 0.04 0.07 0.04 0.07 +assurance_vie assurance_vie nom f s 1.32 0.27 1.26 0.27 +assurances assurance nom f p 29.8 33.24 5.5 8.11 +assurance_vie assurance_vie nom f p 1.32 0.27 0.06 0 +assurant assurer ver 107.71 126.55 0.43 5.27 par:pre; +assurassent assurer ver 107.71 126.55 0 0.07 sub:imp:3p; +assure assurer ver 107.71 126.55 43.77 27.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assurent assurer ver 107.71 126.55 1.89 2.43 ind:pre:3p; +assurer assurer ver 107.71 126.55 34.92 38.85 ind:pre:2p;inf; +assurera assurer ver 107.71 126.55 0.79 1.15 ind:fut:3s; +assurerai assurer ver 107.71 126.55 1.69 0 ind:fut:1s; +assureraient assurer ver 107.71 126.55 0.03 0.54 cnd:pre:3p; +assurerais assurer ver 107.71 126.55 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +assurerait assurer ver 107.71 126.55 0.11 1.08 cnd:pre:3s; +assureras assurer ver 107.71 126.55 0.09 0.07 ind:fut:2s; +assurerez assurer ver 107.71 126.55 0.14 0.07 ind:fut:2p; +assurerons assurer ver 107.71 126.55 0.24 0 ind:fut:1p; +assureront assurer ver 107.71 126.55 0.21 0.2 ind:fut:3p; +assures assurer ver 107.71 126.55 2.57 0.34 ind:pre:2s;sub:pre:2s; +assureur assureur nom m s 1.93 0.41 1.48 0.2 +assureur_conseil assureur_conseil nom m s 0 0.07 0 0.07 +assureurs assureur nom m p 1.93 0.41 0.45 0.2 +assurez assurer ver 107.71 126.55 6.16 0.54 imp:pre:2p;ind:pre:2p; +assuriez assurer ver 107.71 126.55 0.1 0.07 ind:imp:2p; +assurions assurer ver 107.71 126.55 0.03 0.14 ind:imp:1p; +assurons assurer ver 107.71 126.55 0.8 0.07 imp:pre:1p;ind:pre:1p; +assurât assurer ver 107.71 126.55 0 0.41 sub:imp:3s; +assurèrent assurer ver 107.71 126.55 0 0.68 ind:pas:3p; +assuré assurer ver m s 107.71 126.55 8.4 12.91 par:pas; +assurée assurer ver f s 107.71 126.55 1.94 3.51 par:pas; +assurées assurer ver f p 107.71 126.55 0.14 1.01 par:pas; +assurément assurément adv 3.19 10.41 3.19 10.41 +assurés assurer ver m p 107.71 126.55 1.35 1.55 par:pas; +assuétude assuétude nom f s 0.01 0 0.01 0 +assyrien assyrien adj m s 0.01 0.27 0.01 0 +assyrienne assyrien adj f s 0.01 0.27 0 0.14 +assyriennes assyrien adj f p 0.01 0.27 0 0.07 +assyriens assyrien nom m p 0.04 0.14 0.03 0.14 +assyro assyro adv 0 0.2 0 0.2 +assèche assécher ver 2.48 3.58 0.48 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assèchement assèchement nom m s 0.23 0.47 0.23 0.47 +assèchent assécher ver 2.48 3.58 0.29 0 ind:pre:3p; +assène assener ver 0.11 5.47 0.03 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assènent assener ver 0.11 5.47 0 0.2 ind:pre:3p; +assènerai assener ver 0.11 5.47 0.01 0 ind:fut:1s; +assécha assécher ver 2.48 3.58 0 0.14 ind:pas:3s; +asséchaient assécher ver 2.48 3.58 0.01 0.07 ind:imp:3p; +asséchais assécher ver 2.48 3.58 0.01 0.07 ind:imp:1s; +asséchait assécher ver 2.48 3.58 0.02 0.41 ind:imp:3s; +asséchant assécher ver 2.48 3.58 0.01 0.14 par:pre; +assécher assécher ver 2.48 3.58 0.84 0.81 inf; +assécherait assécher ver 2.48 3.58 0 0.07 cnd:pre:3s; +asséchez assécher ver 2.48 3.58 0.02 0 imp:pre:2p;ind:pre:2p; +asséchons assécher ver 2.48 3.58 0.14 0 imp:pre:1p; +asséché assécher ver m s 2.48 3.58 0.43 0.61 par:pas; +asséchée assécher ver f s 2.48 3.58 0.11 0.47 par:pas; +asséchées assécher ver f p 2.48 3.58 0.01 0.14 par:pas; +asséchés assécher ver m p 2.48 3.58 0.11 0.14 par:pas; +asséna asséner ver 0.14 0.47 0.01 0.07 ind:pas:3s; +assénait asséner ver 0.14 0.47 0.01 0.07 ind:imp:3s; +asséner asséner ver 0.14 0.47 0.06 0.14 inf; +asséné asséner ver m s 0.14 0.47 0.05 0.14 par:pas; +assénées asséner ver f p 0.14 0.47 0 0.07 par:pas; +assîmes asseoir ver 322.71 395.27 0 0.88 ind:pas:1p; +assît asseoir ver 322.71 395.27 0 0.41 sub:imp:3s; +astarté astarté nom f s 0.01 0.07 0.01 0.07 +aste aste nom f s 0.02 0 0.02 0 +aster aster nom m s 0.42 0.47 0.42 0 +asters aster nom m p 0.42 0.47 0 0.47 +asthmatique asthmatique adj s 1.37 1.22 1.2 1.15 +asthmatiques asthmatique adj p 1.37 1.22 0.18 0.07 +asthme asthme nom m s 3.14 3.18 3.13 3.11 +asthmes asthme nom m p 3.14 3.18 0.01 0.07 +asthénie asthénie nom f s 0.02 0.47 0.02 0.07 +asthénies asthénie nom f p 0.02 0.47 0 0.41 +asti asti nom m s 0.01 0.2 0.01 0.2 +astic astic nom m s 0 0.07 0 0.07 +asticot asticot nom m s 2.18 2.23 0.95 0.88 +asticota asticoter ver 0.58 1.89 0 0.07 ind:pas:3s; +asticotages asticotage nom m p 0 0.07 0 0.07 +asticotaient asticoter ver 0.58 1.89 0.01 0.07 ind:imp:3p; +asticotais asticoter ver 0.58 1.89 0.01 0.14 ind:imp:1s; +asticotait asticoter ver 0.58 1.89 0.01 0.2 ind:imp:3s; +asticotant asticoter ver 0.58 1.89 0 0.07 par:pre; +asticote asticoter ver 0.58 1.89 0.11 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +asticotent asticoter ver 0.58 1.89 0.04 0 ind:pre:3p; +asticoter asticoter ver 0.58 1.89 0.24 0.74 inf;; +asticotez asticoter ver 0.58 1.89 0.03 0 imp:pre:2p; +asticots asticot nom m p 2.18 2.23 1.23 1.35 +asticoté asticoter ver m s 0.58 1.89 0.13 0.34 par:pas; +asticotés asticoter ver m p 0.58 1.89 0 0.07 par:pas; +astigmate astigmate adj m s 0.06 0 0.06 0 +astigmatisme astigmatisme nom m s 0 0.07 0 0.07 +astiqua astiquer ver 3 9.8 0 0.2 ind:pas:3s; +astiquage astiquage nom m s 0.01 0.47 0.01 0.47 +astiquaient astiquer ver 3 9.8 0.01 0.07 ind:imp:3p; +astiquais astiquer ver 3 9.8 0.06 0 ind:imp:1s; +astiquait astiquer ver 3 9.8 0.03 1.15 ind:imp:3s; +astiquant astiquer ver 3 9.8 0 0.41 par:pre; +astique astiquer ver 3 9.8 1.04 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +astiquent astiquer ver 3 9.8 0.01 0.27 ind:pre:3p; +astiquer astiquer ver 3 9.8 0.91 2.23 ind:pre:2p;inf; +astiquera astiquer ver 3 9.8 0.12 0 ind:fut:3s; +astiquerai astiquer ver 3 9.8 0.02 0.07 ind:fut:1s; +astiquerons astiquer ver 3 9.8 0 0.07 ind:fut:1p; +astiqueur astiqueur nom m s 0.01 0 0.01 0 +astiquez astiquer ver 3 9.8 0.12 0.07 imp:pre:2p;ind:pre:2p; +astiqué astiquer ver m s 3 9.8 0.48 1.49 par:pas; +astiquée astiquer ver f s 3 9.8 0.02 1.01 par:pas; +astiquées astiquer ver f p 3 9.8 0.16 0.47 par:pas; +astiqués astiquer ver m p 3 9.8 0.01 1.35 par:pas; +astragale astragale nom m s 0 0.47 0 0.34 +astragales astragale nom m p 0 0.47 0 0.14 +astrakan astrakan nom m s 0.14 1.69 0.14 1.69 +astral astral adj m s 2.02 1.69 0.78 1.15 +astrale astral adj f s 2.02 1.69 0.66 0.41 +astrales astral adj f p 2.02 1.69 0.55 0.14 +astraux astral adj m p 2.02 1.69 0.04 0 +astre astre nom m s 3.13 12.3 1.89 4.32 +astreignais astreindre ver 0.09 3.78 0 0.2 ind:imp:1s; +astreignait astreindre ver 0.09 3.78 0.01 1.01 ind:imp:3s; +astreignant astreignant adj m s 0.11 0.34 0.09 0.2 +astreignante astreignant adj f s 0.11 0.34 0.01 0 +astreignantes astreignant adj f p 0.11 0.34 0.01 0.14 +astreigne astreindre ver 0.09 3.78 0 0.07 sub:pre:3s; +astreignions astreindre ver 0.09 3.78 0 0.07 ind:imp:1p; +astreignis astreindre ver 0.09 3.78 0 0.07 ind:pas:1s; +astreignit astreindre ver 0.09 3.78 0 0.2 ind:pas:3s; +astreindre astreindre ver 0.09 3.78 0.02 0.68 inf; +astreins astreindre ver 0.09 3.78 0 0.14 ind:pre:1s; +astreint astreindre ver m s 0.09 3.78 0.04 0.81 ind:pre:3s;par:pas; +astreinte astreinte nom f s 0.03 0.07 0.02 0.07 +astreintes astreinte nom f p 0.03 0.07 0.01 0 +astreints astreindre ver m p 0.09 3.78 0.01 0.27 par:pas; +astres astre nom m p 3.13 12.3 1.24 7.97 +astringent astringent adj m s 0.17 0.47 0.16 0 +astringente astringent adj f s 0.17 0.47 0.01 0.2 +astringentes astringent adj f p 0.17 0.47 0 0.27 +astro astro adv 0.14 0 0.14 0 +astrochimie astrochimie nom f s 0.04 0 0.04 0 +astrolabe astrolabe nom m s 0.01 0.14 0.01 0.07 +astrolabes astrolabe nom m p 0.01 0.14 0 0.07 +astrologie astrologie nom f s 0.87 0.54 0.87 0.54 +astrologique astrologique adj s 0.48 0.61 0.44 0.14 +astrologiquement astrologiquement adv 0.01 0 0.01 0 +astrologiques astrologique adj p 0.48 0.61 0.04 0.47 +astrologue astrologue nom s 0.79 1.08 0.39 0.47 +astrologues astrologue nom p 0.79 1.08 0.4 0.61 +astrolâtres astrolâtre nom p 0 0.07 0 0.07 +astrométrie astrométrie nom f s 0.01 0 0.01 0 +astronaute astronaute nom s 6.45 0.41 3.71 0.14 +astronautes astronaute nom p 6.45 0.41 2.73 0.27 +astronautique astronautique nom f s 0.05 0.07 0.05 0.07 +astronef astronef nom m s 0.27 0 0.27 0 +astronome astronome nom s 0.5 1.42 0.3 0.54 +astronomes astronome nom p 0.5 1.42 0.19 0.88 +astronomie astronomie nom f s 0.91 1.01 0.91 1.01 +astronomique astronomique adj s 1.11 1.89 0.92 0.95 +astronomiquement astronomiquement adv 0.02 0 0.02 0 +astronomiques astronomique adj p 1.11 1.89 0.19 0.95 +astrophore astrophore nom m s 0 0.14 0 0.14 +astrophysicien astrophysicien nom m s 0.14 0 0.12 0 +astrophysicienne astrophysicien nom f s 0.14 0 0.01 0 +astrophysiciens astrophysicien nom m p 0.14 0 0.01 0 +astrophysique astrophysique nom f s 0.28 0 0.28 0 +astroport astroport nom m s 0.06 0 0.06 0 +astroscope astroscope nom m s 0.01 0 0.01 0 +astuce astuce nom f s 3.36 5.07 2.74 3.58 +astuces astuce nom f p 3.36 5.07 0.62 1.49 +astucieuse astucieux adj f s 3.75 2.36 0.18 0.81 +astucieusement astucieusement adv 0.05 0.41 0.05 0.41 +astucieuses astucieux adj f p 3.75 2.36 0.04 0.27 +astucieux astucieux adj m 3.75 2.36 3.52 1.28 +asturienne asturienne nom f s 0 0.07 0 0.07 +astérisme astérisme nom m s 0.14 0 0.14 0 +astérisque astérisque nom m s 0.04 0.34 0.04 0.27 +astérisques astérisque nom m p 0.04 0.34 0 0.07 +astéroïde astéroïde nom m s 2.28 0.07 1.52 0 +astéroïdes astéroïde nom m p 2.28 0.07 0.76 0.07 +asymptomatique asymptomatique adj m s 0.09 0.2 0.05 0 +asymptomatiques asymptomatique adj m p 0.09 0.2 0.04 0.2 +asymétrie asymétrie nom f s 0.49 0.34 0.49 0.34 +asymétrique asymétrique adj s 0.35 1.08 0.26 0.47 +asymétriquement asymétriquement adv 0 0.2 0 0.2 +asymétriques asymétrique adj p 0.35 1.08 0.09 0.61 +asynchrone asynchrone adj s 0.01 0 0.01 0 +asystolie asystolie nom f s 0.27 0 0.27 0 +atabeg atabeg nom m s 0 0.2 0 0.07 +atabegs atabeg nom m p 0 0.2 0 0.14 +ataman ataman nom m s 0.1 0.14 0.1 0.07 +atamans ataman nom m p 0.1 0.14 0 0.07 +ataraxie ataraxie nom f s 0.02 0.07 0.02 0.07 +atavique atavique adj s 0.24 1.28 0.23 1.15 +ataviques atavique adj p 0.24 1.28 0.01 0.14 +atavisme atavisme nom m s 0.03 1.22 0.03 1.08 +atavismes atavisme nom m p 0.03 1.22 0 0.14 +ataxie ataxie nom f s 0.01 0 0.01 0 +atchoum atchoum ono 0.14 0.27 0.14 0.27 +atelier atelier nom m s 16.95 45.07 15.21 35.88 +ateliers atelier nom m p 16.95 45.07 1.73 9.19 +atellanes atellane nom f p 0 0.07 0 0.07 +atermoiement atermoiement nom m s 0.28 1.08 0 0.14 +atermoiements atermoiement nom m p 0.28 1.08 0.28 0.95 +atermoyé atermoyer ver m s 0 0.07 0 0.07 par:pas; +athanor athanor nom m s 0 0.68 0 0.68 +athlète athlète nom s 4.75 4.32 3.09 3.11 +athlètes athlète nom p 4.75 4.32 1.66 1.22 +athlétique athlétique adj s 0.74 2.57 0.65 2.16 +athlétiques athlétique adj p 0.74 2.57 0.09 0.41 +athlétisme athlétisme nom m s 0.56 0.47 0.56 0.47 +athée athée nom s 1.77 2.7 1.5 1.69 +athées athée nom p 1.77 2.7 0.27 1.01 +athéisme athéisme nom m s 0.29 1.76 0.29 1.76 +athéiste athéiste adj f s 0.01 0 0.01 0 +athénien athénien adj m s 0.33 0.88 0.2 0.14 +athénienne athénien adj f s 0.33 0.88 0.13 0.34 +athéniennes athénienne nom f p 0.1 0.41 0.1 0.07 +athéniens athénien nom m p 0.08 1.08 0.08 0.74 +athénée athénée nom m s 0.01 0 0.01 0 +atlante atlante nom m s 0.28 0.41 0.05 0.27 +atlantes atlante nom m p 0.28 0.41 0.23 0.14 +atlantique atlantique adj s 0.39 1.89 0.23 1.62 +atlantiques atlantique adj p 0.39 1.89 0.16 0.27 +atlas atlas nom m 0.93 2.16 0.93 2.16 +atmosphère atmosphère nom f s 13.85 36.69 13.45 36.15 +atmosphères atmosphère nom f p 13.85 36.69 0.4 0.54 +atmosphérique atmosphérique adj s 1.89 1.42 1.14 0.95 +atmosphériques atmosphérique adj p 1.89 1.42 0.76 0.47 +atoll atoll nom m s 0.15 0.61 0.12 0.54 +atolls atoll nom m p 0.15 0.61 0.03 0.07 +atome atome nom m s 2.85 4.12 1.3 1.82 +atomes atome nom m p 2.85 4.12 1.55 2.3 +atomique atomique adj s 6.33 8.31 5.3 6.22 +atomiques atomique adj p 6.33 8.31 1.02 2.09 +atomisait atomiser ver 0.33 0.2 0 0.07 ind:imp:3s; +atomise atomiser ver 0.33 0.2 0.04 0.14 ind:pre:1s;ind:pre:3s; +atomisent atomiser ver 0.33 0.2 0.01 0 ind:pre:3p; +atomiser atomiser ver 0.33 0.2 0.17 0 inf; +atomiseur atomiseur nom m s 0.11 0 0.11 0 +atomisez atomiser ver 0.33 0.2 0.02 0 imp:pre:2p; +atomiste atomiste nom s 0.01 0.14 0.01 0.07 +atomistes atomiste adj p 0.01 0.2 0.01 0.14 +atomisé atomiser ver m s 0.33 0.2 0.06 0 par:pas; +atomisée atomiser ver f s 0.33 0.2 0.03 0 par:pas; +atomisés atomiser ver m p 0.33 0.2 0.01 0 par:pas; +atonal atonal adj m s 0.03 0.2 0.01 0.07 +atonale atonal adj f s 0.03 0.2 0.01 0.07 +atonales atonal adj f p 0.03 0.2 0 0.07 +atone atone adj s 0.02 0.88 0.02 0.74 +atones atone adj m p 0.02 0.88 0 0.14 +atonie atonie nom f s 0.01 0.54 0.01 0.54 +atour atour nom m s 1.09 1.35 0.14 0.07 +atourné atourner ver m s 0 0.07 0 0.07 par:pas; +atours atour nom m p 1.09 1.35 0.95 1.28 +atout atout nom m s 5.74 4.53 3.66 2.84 +atouts atout nom m p 5.74 4.53 2.08 1.69 +atrabilaire atrabilaire nom s 0.01 0 0.01 0 +atrium atrium nom m s 0.3 0.14 0.3 0.14 +atroce atroce adj s 10.94 17.43 8.41 13.24 +atrocement atrocement adv 2.27 3.18 2.27 3.18 +atroces atroce adj p 10.94 17.43 2.53 4.19 +atrocité atrocité nom f s 3.92 2.5 0.96 0.74 +atrocités atrocité nom f p 3.92 2.5 2.96 1.76 +atrophiait atrophier ver 0.51 0.74 0 0.07 ind:imp:3s; +atrophie atrophie nom f s 0.39 0.27 0.39 0.27 +atrophient atrophier ver 0.51 0.74 0.11 0 ind:pre:3p; +atrophier atrophier ver 0.51 0.74 0.05 0.07 inf; +atrophieraient atrophier ver 0.51 0.74 0.01 0 cnd:pre:3p; +atrophies atrophier ver 0.51 0.74 0.01 0 ind:pre:2s; +atrophié atrophié adj m s 0.21 1.22 0.04 0.61 +atrophiée atrophier ver f s 0.51 0.74 0.15 0.2 par:pas; +atrophiées atrophié adj f p 0.21 1.22 0.01 0.27 +atrophiés atrophier ver m p 0.51 0.74 0.08 0.14 par:pas; +atropine atropine nom f s 0.86 0.07 0.86 0.07 +atrésie atrésie nom f s 0.04 0 0.04 0 +attabla attabler ver 0.2 7.84 0 0.41 ind:pas:3s; +attablai attabler ver 0.2 7.84 0 0.07 ind:pas:1s; +attablaient attabler ver 0.2 7.84 0 0.27 ind:imp:3p; +attablais attabler ver 0.2 7.84 0 0.14 ind:imp:1s; +attablait attabler ver 0.2 7.84 0 0.2 ind:imp:3s; +attablant attabler ver 0.2 7.84 0 0.07 par:pre; +attable attabler ver 0.2 7.84 0 0.34 ind:pre:1s;ind:pre:3s; +attablent attabler ver 0.2 7.84 0 0.14 ind:pre:3p; +attabler attabler ver 0.2 7.84 0.02 0.54 inf; +attablions attabler ver 0.2 7.84 0 0.14 ind:imp:1p; +attablons attabler ver 0.2 7.84 0 0.07 imp:pre:1p; +attablèrent attabler ver 0.2 7.84 0 0.2 ind:pas:3p; +attablé attabler ver m s 0.2 7.84 0.02 1.96 par:pas; +attablée attabler ver f s 0.2 7.84 0.02 0.41 par:pas; +attablées attablé adj f p 0.13 1.08 0.01 0.07 +attablés attabler ver m p 0.2 7.84 0.13 2.57 par:pas; +attacha attacher ver 46.37 71.01 0.04 2.84 ind:pas:3s; +attachai attacher ver 46.37 71.01 0.02 0.47 ind:pas:1s; +attachaient attacher ver 46.37 71.01 0.23 2.09 ind:imp:3p; +attachais attacher ver 46.37 71.01 0.26 0.74 ind:imp:1s;ind:imp:2s; +attachait attacher ver 46.37 71.01 0.48 6.62 ind:imp:3s; +attachant attachant adj m s 1.22 2.03 0.69 1.35 +attachante attachant adj f s 1.22 2.03 0.5 0.47 +attachants attachant adj m p 1.22 2.03 0.04 0.2 +attache attacher ver 46.37 71.01 10.42 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attachement attachement nom m s 3.33 10.95 2.87 9.59 +attachements attachement nom m p 3.33 10.95 0.46 1.35 +attachent attacher ver 46.37 71.01 0.7 1.96 ind:pre:3p; +attacher attacher ver 46.37 71.01 9.86 11.69 inf;; +attachera attacher ver 46.37 71.01 0.42 0 ind:fut:3s; +attacherai attacher ver 46.37 71.01 0.29 0.2 ind:fut:1s; +attacherais attacher ver 46.37 71.01 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +attacherait attacher ver 46.37 71.01 0.19 0.41 cnd:pre:3s; +attacheras attacher ver 46.37 71.01 0.17 0.07 ind:fut:2s; +attacherez attacher ver 46.37 71.01 0.01 0.07 ind:fut:2p; +attacherions attacher ver 46.37 71.01 0 0.07 cnd:pre:1p; +attacheront attacher ver 46.37 71.01 0.02 0.14 ind:fut:3p; +attaches attache nom f p 2.95 7.16 1.13 3.18 +attachez attacher ver 46.37 71.01 4.49 1.01 imp:pre:2p;ind:pre:2p; +attachiez attacher ver 46.37 71.01 0.1 0.14 ind:imp:2p;sub:pre:2p; +attachions attacher ver 46.37 71.01 0.01 0.27 ind:imp:1p; +attachons attacher ver 46.37 71.01 0.56 0.14 imp:pre:1p;ind:pre:1p; +attachât attacher ver 46.37 71.01 0 0.54 sub:imp:3s; +attachèrent attacher ver 46.37 71.01 0.1 0.54 ind:pas:3p; +attaché attacher ver m s 46.37 71.01 8.76 13.85 par:pas; +attaché_case attaché_case nom m s 0.01 0.54 0 0.54 +attachée attacher ver f s 46.37 71.01 5.33 6.28 par:pas; +attachées attacher ver f p 46.37 71.01 0.61 1.89 par:pas; +attachés attacher ver m p 46.37 71.01 1.83 6.96 par:pas; +attaché_case attaché_case nom m p 0.01 0.54 0.01 0 +attaqua attaquer ver 99.63 70.41 0.26 5 ind:pas:3s; +attaquable attaquable adj s 0.01 0 0.01 0 +attaquai attaquer ver 99.63 70.41 0.01 0.74 ind:pas:1s; +attaquaient attaquer ver 99.63 70.41 0.42 2.84 ind:imp:3p; +attaquais attaquer ver 99.63 70.41 0.12 0.47 ind:imp:1s;ind:imp:2s; +attaquait attaquer ver 99.63 70.41 1.88 6.01 ind:imp:3s; +attaquant attaquer ver 99.63 70.41 0.88 2.77 par:pre; +attaquante attaquant adj f s 0.25 0.14 0.06 0.07 +attaquants attaquant nom m p 1.13 0.41 0.56 0.14 +attaque attaque nom f s 59.92 37.03 52.39 29.93 +attaquent attaquer ver 99.63 70.41 6.82 4.26 ind:pre:3p;sub:pre:3p; +attaquer attaquer ver 99.63 70.41 25.91 17.7 inf;; +attaquera attaquer ver 99.63 70.41 2.25 0.34 ind:fut:3s; +attaquerai attaquer ver 99.63 70.41 0.44 0.41 ind:fut:1s; +attaqueraient attaquer ver 99.63 70.41 0.51 0.34 cnd:pre:3p; +attaquerais attaquer ver 99.63 70.41 0.3 0.14 cnd:pre:1s;cnd:pre:2s; +attaquerait attaquer ver 99.63 70.41 0.75 0.41 cnd:pre:3s; +attaqueras attaquer ver 99.63 70.41 0.05 0.07 ind:fut:2s; +attaquerez attaquer ver 99.63 70.41 0.29 0.07 ind:fut:2p; +attaqueriez attaquer ver 99.63 70.41 0.04 0 cnd:pre:2p; +attaquerions attaquer ver 99.63 70.41 0.02 0 cnd:pre:1p; +attaquerons attaquer ver 99.63 70.41 1.25 0.07 ind:fut:1p; +attaqueront attaquer ver 99.63 70.41 2.08 0.34 ind:fut:3p; +attaques attaque nom f p 59.92 37.03 7.53 7.09 +attaqueur attaqueur nom m s 0.01 0 0.01 0 +attaquez attaquer ver 99.63 70.41 3.48 0.41 imp:pre:2p;ind:pre:2p; +attaquiez attaquer ver 99.63 70.41 0.1 0 ind:imp:2p; +attaquons attaquer ver 99.63 70.41 2.06 0.54 imp:pre:1p;ind:pre:1p; +attaquâmes attaquer ver 99.63 70.41 0 0.07 ind:pas:1p; +attaquât attaquer ver 99.63 70.41 0 0.14 sub:imp:3s; +attaquèrent attaquer ver 99.63 70.41 0.14 1.08 ind:pas:3p; +attaqué attaquer ver m s 99.63 70.41 20.04 9.12 par:pas; +attaquée attaquer ver f s 99.63 70.41 5.8 2.43 par:pas; +attaquées attaquer ver f p 99.63 70.41 0.46 0.34 par:pas; +attaqués attaquer ver m p 99.63 70.41 5.34 2.84 par:pas; +attarda attarder ver 4.36 29.39 0.01 3.45 ind:pas:3s; +attardai attarder ver 4.36 29.39 0 0.54 ind:pas:1s; +attardaient attarder ver 4.36 29.39 0.01 1.82 ind:imp:3p; +attardais attarder ver 4.36 29.39 0 1.15 ind:imp:1s; +attardait attarder ver 4.36 29.39 0.13 3.65 ind:imp:3s; +attardant attarder ver 4.36 29.39 0.04 1.22 par:pre; +attarde attarder ver 4.36 29.39 0.84 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +attardement attardement nom m s 0 0.07 0 0.07 +attardent attarder ver 4.36 29.39 0.05 1.15 ind:pre:3p; +attarder attarder ver 4.36 29.39 1.61 7.03 inf; +attardera attarder ver 4.36 29.39 0.02 0.07 ind:fut:3s; +attarderai attarder ver 4.36 29.39 0.02 0 ind:fut:1s; +attarderaient attarder ver 4.36 29.39 0 0.14 cnd:pre:3p; +attarderait attarder ver 4.36 29.39 0.02 0.07 cnd:pre:3s; +attarderont attarder ver 4.36 29.39 0 0.07 ind:fut:3p; +attardez attarder ver 4.36 29.39 0.2 0.2 imp:pre:2p;ind:pre:2p; +attardions attarder ver 4.36 29.39 0.01 0.2 ind:imp:1p; +attardons attarder ver 4.36 29.39 0.09 0.2 imp:pre:1p;ind:pre:1p; +attardâmes attarder ver 4.36 29.39 0 0.27 ind:pas:1p; +attardât attarder ver 4.36 29.39 0 0.2 sub:imp:3s; +attardèrent attarder ver 4.36 29.39 0 0.81 ind:pas:3p; +attardé attarder ver m s 4.36 29.39 0.84 1.49 par:pas; +attardée attarder ver f s 4.36 29.39 0.33 0.68 par:pas; +attardées attardé adj f p 1.06 3.11 0.02 0.27 +attardés attardé nom m p 1.58 1.55 0.74 0.88 +atteignable atteignable adj s 0.01 0 0.01 0 +atteignaient atteindre ver 61.83 126.76 0.04 4.39 ind:imp:3p; +atteignais atteindre ver 61.83 126.76 0.22 0.74 ind:imp:1s;ind:imp:2s; +atteignait atteindre ver 61.83 126.76 0.5 9.59 ind:imp:3s; +atteignant atteindre ver 61.83 126.76 0.54 2.57 par:pre; +atteigne atteindre ver 61.83 126.76 1.82 1.28 sub:pre:1s;sub:pre:3s; +atteignent atteindre ver 61.83 126.76 1.54 2.16 ind:pre:3p; +atteignes atteindre ver 61.83 126.76 0.03 0 sub:pre:2s; +atteignez atteindre ver 61.83 126.76 0.28 0.07 imp:pre:2p;ind:pre:2p; +atteignions atteindre ver 61.83 126.76 0.06 0.34 ind:imp:1p; +atteignirent atteindre ver 61.83 126.76 0.24 2.7 ind:pas:3p; +atteignis atteindre ver 61.83 126.76 0.14 1.01 ind:pas:1s; +atteignissent atteindre ver 61.83 126.76 0 0.07 sub:imp:3p; +atteignit atteindre ver 61.83 126.76 0.39 10.34 ind:pas:3s; +atteignons atteindre ver 61.83 126.76 0.28 0.95 imp:pre:1p;ind:pre:1p; +atteignîmes atteindre ver 61.83 126.76 0.33 0.95 ind:pas:1p; +atteignît atteindre ver 61.83 126.76 0 0.47 sub:imp:3s; +atteindra atteindre ver 61.83 126.76 1.9 1.08 ind:fut:3s; +atteindrai atteindre ver 61.83 126.76 0.31 0.27 ind:fut:1s; +atteindraient atteindre ver 61.83 126.76 0.15 0.34 cnd:pre:3p; +atteindrais atteindre ver 61.83 126.76 0.05 0.41 cnd:pre:1s;cnd:pre:2s; +atteindrait atteindre ver 61.83 126.76 0.5 1.08 cnd:pre:3s; +atteindras atteindre ver 61.83 126.76 0.27 0.07 ind:fut:2s; +atteindre atteindre ver 61.83 126.76 24.42 40.47 inf; +atteindrez atteindre ver 61.83 126.76 0.41 0.2 ind:fut:2p; +atteindrons atteindre ver 61.83 126.76 0.6 0.14 ind:fut:1p; +atteindront atteindre ver 61.83 126.76 0.79 0.2 ind:fut:3p; +atteins atteindre ver 61.83 126.76 1.27 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +atteint atteindre ver m s 61.83 126.76 19.99 35.68 ind:pre:3s;par:pas; +atteinte atteindre ver f s 61.83 126.76 2.71 5.2 par:pas; +atteintes atteindre ver f p 61.83 126.76 0.36 1.01 par:pas; +atteints atteindre ver m p 61.83 126.76 1.71 2.03 par:pas; +attela atteler ver 2.12 8.58 0.02 0.41 ind:pas:3s; +attelage attelage nom m s 1.52 5.61 1.43 4.05 +attelages attelage nom m p 1.52 5.61 0.1 1.55 +attelai atteler ver 2.12 8.58 0 0.14 ind:pas:1s; +attelaient atteler ver 2.12 8.58 0 0.2 ind:imp:3p; +attelais atteler ver 2.12 8.58 0.1 0.14 ind:imp:1s; +attelait atteler ver 2.12 8.58 0.02 0.41 ind:imp:3s; +attelant atteler ver 2.12 8.58 0 0.07 par:pre; +atteler atteler ver 2.12 8.58 0.97 1.42 inf; +attelez atteler ver 2.12 8.58 0.09 0 imp:pre:2p;ind:pre:2p; +attelions atteler ver 2.12 8.58 0 0.07 ind:imp:1p; +attelle attelle nom f s 0.83 0.68 0.73 0.47 +attellent atteler ver 2.12 8.58 0.01 0.07 ind:pre:3p; +attellera atteler ver 2.12 8.58 0 0.07 ind:fut:3s; +attellerais atteler ver 2.12 8.58 0 0.07 cnd:pre:1s; +attelles attelle nom f p 0.83 0.68 0.1 0.2 +attelons atteler ver 2.12 8.58 0.01 0 imp:pre:1p; +attelâmes atteler ver 2.12 8.58 0 0.07 ind:pas:1p; +attelèrent atteler ver 2.12 8.58 0.01 0.2 ind:pas:3p; +attelé atteler ver m s 2.12 8.58 0.15 1.89 par:pas; +attelée atteler ver f s 2.12 8.58 0.03 1.01 par:pas; +attelées atteler ver f p 2.12 8.58 0 0.34 par:pas; +attelés atteler ver m p 2.12 8.58 0.09 1.35 par:pas; +attenant attenant adj m s 0.4 3.72 0.05 2.23 +attenante attenant adj f s 0.4 3.72 0.09 1.35 +attenantes attenant adj f p 0.4 3.72 0.26 0.14 +attend attendre ver 1351.46 706.69 173.86 74.46 ind:pre:3s; +attendaient attendre ver 1351.46 706.69 5.12 32.77 ind:imp:3p; +attendais attendre ver 1351.46 706.69 59.29 36.82 ind:imp:1s;ind:imp:2s; +attendait attendre ver 1351.46 706.69 25.02 127.09 ind:imp:3s; +attendant attendre ver 1351.46 706.69 40.34 75.47 par:pre; +attende attendre ver 1351.46 706.69 5.18 3.38 sub:pre:1s;sub:pre:3s; +attendent attendre ver 1351.46 706.69 36.95 21.82 ind:pre:3p; +attendes attendre ver 1351.46 706.69 0.69 0.27 sub:pre:2s; +attendez attendre ver 1351.46 706.69 230.66 19.86 imp:pre:2p;ind:pre:2p; +attendiez attendre ver 1351.46 706.69 7.13 0.95 ind:imp:2p;sub:pre:2p; +attendions attendre ver 1351.46 706.69 4.25 5.47 ind:imp:1p; +attendirent attendre ver 1351.46 706.69 0.05 2.97 ind:pas:3p; +attendis attendre ver 1351.46 706.69 0.67 4.86 ind:pas:1s; +attendisse attendre ver 1351.46 706.69 0 0.14 sub:imp:1s; +attendissent attendre ver 1351.46 706.69 0 0.07 sub:imp:3p; +attendit attendre ver 1351.46 706.69 0.49 28.65 ind:pas:3s; +attendons attendre ver 1351.46 706.69 21.35 6.28 imp:pre:1p;ind:pre:1p; +attendra attendre ver 1351.46 706.69 8.23 3.04 ind:fut:3s; +attendrai attendre ver 1351.46 706.69 18.83 5.2 ind:fut:1s; +attendraient attendre ver 1351.46 706.69 0.25 1.01 cnd:pre:3p; +attendrais attendre ver 1351.46 706.69 2.04 0.61 cnd:pre:1s;cnd:pre:2s; +attendrait attendre ver 1351.46 706.69 1.23 3.51 cnd:pre:3s; +attendras attendre ver 1351.46 706.69 2.28 1.42 ind:fut:2s; +attendre attendre ver 1351.46 706.69 177.44 143.45 inf;;inf;;inf;; +attendrez attendre ver 1351.46 706.69 1.22 0.68 ind:fut:2p; +attendri attendrir ver m s 2.96 20.95 0.14 5 par:pas; +attendrie attendrir ver f s 2.96 20.95 0.31 2.77 par:pas; +attendries attendrir ver f p 2.96 20.95 0 0.34 par:pas; +attendriez attendre ver 1351.46 706.69 0.1 0 cnd:pre:2p; +attendrions attendre ver 1351.46 706.69 0.03 0.2 cnd:pre:1p; +attendrir attendrir ver 2.96 20.95 1.23 5.07 inf; +attendrirait attendrir ver 2.96 20.95 0.01 0.07 cnd:pre:3s; +attendriras attendrir ver 2.96 20.95 0.01 0 ind:fut:2s; +attendrirent attendrir ver 2.96 20.95 0.1 0.27 ind:pas:3p; +attendris attendrir ver m p 2.96 20.95 0.23 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +attendrissaient attendrir ver 2.96 20.95 0 0.2 ind:imp:3p; +attendrissais attendrir ver 2.96 20.95 0 0.07 ind:imp:1s; +attendrissait attendrir ver 2.96 20.95 0.14 1.76 ind:imp:3s; +attendrissant attendrissant adj m s 0.42 3.99 0.37 2.03 +attendrissante attendrissant adj f s 0.42 3.99 0.02 0.95 +attendrissantes attendrissant adj f p 0.42 3.99 0 0.54 +attendrissants attendrissant adj m p 0.42 3.99 0.03 0.47 +attendrisse attendrir ver 2.96 20.95 0.01 0.14 sub:pre:1s;sub:pre:3s; +attendrissement attendrissement nom m s 0.1 7.64 0.1 6.89 +attendrissements attendrissement nom m p 0.1 7.64 0 0.74 +attendrissent attendrir ver 2.96 20.95 0.16 0.54 ind:pre:3p; +attendrisseur attendrisseur nom m s 0.01 0 0.01 0 +attendrissons attendrir ver 2.96 20.95 0 0.07 ind:pre:1p; +attendrit attendrir ver 2.96 20.95 0.47 2.64 ind:pre:3s;ind:pas:3s; +attendrons attendre ver 1351.46 706.69 3.4 0.61 ind:fut:1p; +attendront attendre ver 1351.46 706.69 1.92 0.81 ind:fut:3p; +attends attendre ver 1351.46 706.69 478.32 62.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +attendu attendre ver m s 1351.46 706.69 38.45 34.66 par:pas; +attendue attendre ver f s 1351.46 706.69 4.69 4.39 par:pas; +attendues attendre ver f p 1351.46 706.69 0.58 0.2 par:pas; +attendus attendre ver m p 1351.46 706.69 1.39 1.89 par:pas; +attendîmes attendre ver 1351.46 706.69 0.03 0.61 ind:pas:1p; +attendît attendre ver 1351.46 706.69 0 0.47 sub:imp:3s; +attenta attenter ver 1.17 1.01 0 0.07 ind:pas:3s; +attentais attenter ver 1.17 1.01 0 0.07 ind:imp:1s; +attentait attenter ver 1.17 1.01 0.01 0 ind:imp:3s; +attentant attenter ver 1.17 1.01 0.02 0 par:pre; +attentat attentat nom m s 14.58 8.72 11.42 5.34 +attentatoire attentatoire adj m s 0 0.14 0 0.07 +attentatoires attentatoire adj p 0 0.14 0 0.07 +attentats attentat nom m p 14.58 8.72 3.16 3.38 +attente attente nom f s 25.07 63.85 22.77 61.35 +attenter attenter ver 1.17 1.01 0.39 0.54 inf; +attenterai attenter ver 1.17 1.01 0 0.07 ind:fut:1s; +attenterait attenter ver 1.17 1.01 0.01 0.07 cnd:pre:3s; +attentes attente nom f p 25.07 63.85 2.29 2.5 +attentez attenter ver 1.17 1.01 0.16 0 imp:pre:2p;ind:pre:2p; +attentiez attenter ver 1.17 1.01 0.14 0 ind:imp:2p; +attentif attentif adj m s 6.66 35.74 3.77 17.3 +attentifs attentif adj m p 6.66 35.74 1.49 6.22 +attention attention ono 159.1 21.35 159.1 21.35 +attentionné attentionné adj m s 2.64 0.74 1.73 0.34 +attentionnée attentionné adj f s 2.64 0.74 0.41 0.27 +attentionnées attentionné adj f p 2.64 0.74 0.07 0 +attentionnés attentionné adj m p 2.64 0.74 0.44 0.14 +attentions attention nom f p 158.52 124.53 1.63 4.86 +attentisme attentisme nom m s 0.02 0.81 0.02 0.81 +attentiste attentiste adj s 0.02 0 0.02 0 +attentistes attentiste nom p 0 0.07 0 0.07 +attentive attentif adj f s 6.66 35.74 1.25 11.15 +attentivement attentivement adv 8.38 11.82 8.38 11.82 +attentives attentif adj f p 6.66 35.74 0.15 1.08 +attenté attenter ver m s 1.17 1.01 0.13 0.07 par:pas; +atterrages atterrage nom m p 0 0.2 0 0.2 +atterraient atterrer ver 0.23 2.91 0 0.07 ind:imp:3p; +atterrait atterrer ver 0.23 2.91 0 0.07 ind:imp:3s; +atterrant atterrant adj m s 0.01 0.2 0.01 0.14 +atterrante atterrant adj f s 0.01 0.2 0 0.07 +atterre atterrer ver 0.23 2.91 0.02 0.07 ind:pre:1s;ind:pre:3s; +atterri atterrir ver m s 26.73 9.39 8.64 1.89 par:pas; +atterrir atterrir ver 26.73 9.39 10.84 3.04 inf;; +atterrira atterrir ver 26.73 9.39 0.48 0 ind:fut:3s; +atterrirai atterrir ver 26.73 9.39 0.06 0 ind:fut:1s; +atterrirais atterrir ver 26.73 9.39 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +atterriras atterrir ver 26.73 9.39 0.05 0 ind:fut:2s; +atterrirent atterrir ver 26.73 9.39 0.04 0.14 ind:pas:3p; +atterrirez atterrir ver 26.73 9.39 0.05 0 ind:fut:2p; +atterrirons atterrir ver 26.73 9.39 0.28 0 ind:fut:1p; +atterris atterrir ver m p 26.73 9.39 1.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +atterrissage atterrissage nom m s 9.06 2.23 8.84 2.16 +atterrissages atterrissage nom m p 9.06 2.23 0.22 0.07 +atterrissaient atterrir ver 26.73 9.39 0.04 0.34 ind:imp:3p; +atterrissais atterrir ver 26.73 9.39 0.01 0.14 ind:imp:1s; +atterrissait atterrir ver 26.73 9.39 0.08 0.14 ind:imp:3s; +atterrissant atterrir ver 26.73 9.39 0.14 0.14 par:pre; +atterrisse atterrir ver 26.73 9.39 0.4 0.07 sub:pre:1s;sub:pre:3s; +atterrissent atterrir ver 26.73 9.39 0.76 0.41 ind:pre:3p; +atterrisses atterrir ver 26.73 9.39 0.02 0 sub:pre:2s; +atterrissez atterrir ver 26.73 9.39 0.52 0 imp:pre:2p;ind:pre:2p; +atterrissons atterrir ver 26.73 9.39 0.08 0 imp:pre:1p;ind:pre:1p; +atterrit atterrir ver 26.73 9.39 2.96 1.96 ind:pre:3s;ind:pas:3s; +atterrèrent atterrer ver 0.23 2.91 0 0.14 ind:pas:3p; +atterré atterrer ver m s 0.23 2.91 0.05 1.62 par:pas; +atterrée atterrer ver f s 0.23 2.91 0.04 0.34 par:pas; +atterrées atterrer ver f p 0.23 2.91 0 0.07 par:pas; +atterrés atterrer ver m p 0.23 2.91 0.12 0.54 par:pas; +atterrîmes atterrir ver 26.73 9.39 0.01 0.14 ind:pas:1p; +atterrît atterrir ver 26.73 9.39 0 0.07 sub:imp:3s; +attesta attester ver 2.67 6.55 0 0.07 ind:pas:3s; +attestaient attester ver 2.67 6.55 0 0.47 ind:imp:3p; +attestait attester ver 2.67 6.55 0.01 1.15 ind:imp:3s; +attestant attester ver 2.67 6.55 0.14 1.15 par:pre; +attestation attestation nom f s 1 0.2 0.95 0.14 +attestations attestation nom f p 1 0.2 0.05 0.07 +atteste attester ver 2.67 6.55 0.98 1.22 ind:pre:1s;ind:pre:3s; +attestent attester ver 2.67 6.55 0.15 0.54 ind:pre:3p; +attester attester ver 2.67 6.55 0.87 1.08 inf; +attestera attester ver 2.67 6.55 0.05 0 ind:fut:3s; +attestons attester ver 2.67 6.55 0.01 0.07 imp:pre:1p;ind:pre:1p; +attestèrent attester ver 2.67 6.55 0 0.07 ind:pas:3p; +attesté attester ver m s 2.67 6.55 0.34 0.34 par:pas; +attestée attester ver f s 2.67 6.55 0.11 0.34 par:pas; +attestées attester ver f p 2.67 6.55 0 0.07 par:pas; +attifa attifer ver 0.3 1.69 0 0.07 ind:pas:3s; +attifait attifer ver 0.3 1.69 0 0.07 ind:imp:3s; +attifant attifer ver 0.3 1.69 0 0.07 par:pre; +attife attifer ver 0.3 1.69 0 0.14 ind:pre:3s; +attifer attifer ver 0.3 1.69 0.01 0.2 inf; +attifiaux attifiaux nom m p 0 0.07 0 0.07 +attifé attifer ver m s 0.3 1.69 0.25 0.27 par:pas; +attifée attifer ver f s 0.3 1.69 0.02 0.68 par:pas; +attifées attifer ver f p 0.3 1.69 0 0.07 par:pas; +attifés attifer ver m p 0.3 1.69 0.02 0.14 par:pas; +attige attiger ver 0 0.74 0 0.27 ind:pre:1s;ind:pre:3s; +attigeait attiger ver 0 0.74 0 0.07 ind:imp:3s; +attigent attiger ver 0 0.74 0 0.14 ind:pre:3p; +attiges attiger ver 0 0.74 0 0.07 ind:pre:2s; +attigés attiger ver m p 0 0.74 0 0.2 par:pas; +attique attique adj s 0 0.34 0 0.27 +attiques attique adj f p 0 0.34 0 0.07 +attira attirer ver 54.91 75.27 0.33 7.7 ind:pas:3s; +attirai attirer ver 54.91 75.27 0 0.34 ind:pas:1s; +attiraient attirer ver 54.91 75.27 0.43 2.91 ind:imp:3p; +attirail attirail nom m s 1.52 3.99 1.52 3.99 +attirais attirer ver 54.91 75.27 0.26 0.34 ind:imp:1s;ind:imp:2s; +attirait attirer ver 54.91 75.27 2.03 10.41 ind:imp:3s; +attirance attirance nom f s 2.39 2.91 2.38 2.77 +attirances attirance nom f p 2.39 2.91 0.01 0.14 +attirant attirant adj m s 5.74 3.85 2.59 1.62 +attirante attirant adj f s 5.74 3.85 2.59 1.55 +attirantes attirant adj f p 5.74 3.85 0.28 0.54 +attirants attirant adj m p 5.74 3.85 0.28 0.14 +attire attirer ver 54.91 75.27 13.43 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attirent attirer ver 54.91 75.27 2.83 2.84 ind:pre:3p; +attirer attirer ver 54.91 75.27 17.09 17.43 ind:pre:2p;inf; +attirera attirer ver 54.91 75.27 0.94 0.14 ind:fut:3s; +attirerai attirer ver 54.91 75.27 0.11 0 ind:fut:1s; +attireraient attirer ver 54.91 75.27 0.02 0.14 cnd:pre:3p; +attirerais attirer ver 54.91 75.27 0.06 0 cnd:pre:1s;cnd:pre:2s; +attirerait attirer ver 54.91 75.27 0.56 0.61 cnd:pre:3s; +attirerez attirer ver 54.91 75.27 0.04 0.14 ind:fut:2p; +attireriez attirer ver 54.91 75.27 0.01 0 cnd:pre:2p; +attirerons attirer ver 54.91 75.27 0.04 0 ind:fut:1p; +attireront attirer ver 54.91 75.27 0.04 0 ind:fut:3p; +attires attirer ver 54.91 75.27 0.89 0.2 ind:pre:2s; +attirez attirer ver 54.91 75.27 0.82 0.07 imp:pre:2p;ind:pre:2p; +attiriez attirer ver 54.91 75.27 0.4 0.14 ind:imp:2p; +attirions attirer ver 54.91 75.27 0.02 0.07 ind:imp:1p; +attirons attirer ver 54.91 75.27 0.28 0.14 imp:pre:1p;ind:pre:1p; +attirât attirer ver 54.91 75.27 0 0.2 sub:imp:3s; +attirèrent attirer ver 54.91 75.27 0.13 0.81 ind:pas:3p; +attiré attirer ver m s 54.91 75.27 8.15 10.47 par:pas; +attirée attirer ver f s 54.91 75.27 2.78 3.85 par:pas; +attirées attirer ver f p 54.91 75.27 0.48 0.47 par:pas; +attirés attirer ver m p 54.91 75.27 2.09 2.57 par:pas; +attisa attiser ver 1.88 3.65 0.01 0.14 ind:pas:3s; +attisaient attiser ver 1.88 3.65 0.01 0.27 ind:imp:3p; +attisait attiser ver 1.88 3.65 0.14 0.54 ind:imp:3s; +attisant attiser ver 1.88 3.65 0 0.2 par:pre; +attise attiser ver 1.88 3.65 0.55 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attisement attisement nom m s 0 0.07 0 0.07 +attisent attiser ver 1.88 3.65 0.23 0.07 ind:pre:3p; +attiser attiser ver 1.88 3.65 0.33 1.35 inf; +attisera attiser ver 1.88 3.65 0 0.07 ind:fut:3s; +attises attiser ver 1.88 3.65 0.02 0 ind:pre:2s; +attisez attiser ver 1.88 3.65 0.16 0 imp:pre:2p;ind:pre:2p; +attisoir attisoir nom m s 0 0.07 0 0.07 +attisons attiser ver 1.88 3.65 0.01 0 imp:pre:1p; +attisé attiser ver m s 1.88 3.65 0.29 0.07 par:pas; +attisée attiser ver f s 1.88 3.65 0.12 0.2 par:pas; +attisées attiser ver f p 1.88 3.65 0 0.07 par:pas; +attisés attiser ver m p 1.88 3.65 0 0.07 par:pas; +attitré attitré adj m s 0.41 1.35 0.28 0.54 +attitrée attitrer ver f s 0.19 0.88 0.11 0.2 par:pas; +attitrées attitré adj f p 0.41 1.35 0.01 0.07 +attitrés attitré adj m p 0.41 1.35 0.03 0.34 +attitude attitude nom f s 23.03 67.91 21.37 57.5 +attitudes attitude nom f p 23.03 67.91 1.66 10.41 +attiédi attiédir ver m s 0 0.27 0 0.07 par:pas; +attiédie attiédir ver f s 0 0.27 0 0.07 par:pas; +attiédis attiédir ver m p 0 0.27 0 0.07 par:pas; +attiédissait attiédir ver 0 0.27 0 0.07 ind:imp:3s; +attorney attorney nom m s 0.15 0 0.15 0 +attouchant attoucher ver 0 0.07 0 0.07 par:pre; +attouchement attouchement nom m s 0.33 1.76 0 0.81 +attouchements attouchement nom m p 0.33 1.76 0.33 0.95 +attracteur attracteur adj m s 0.11 0 0.09 0 +attracteurs attracteur adj m p 0.11 0 0.02 0 +attractif attractif adj m s 0.24 0.41 0.14 0.27 +attractifs attractif adj m p 0.24 0.41 0.01 0 +attraction attraction nom f s 7.45 7.64 4.96 5.74 +attraction_vedette attraction_vedette nom f s 0.01 0 0.01 0 +attractions attraction nom f p 7.45 7.64 2.48 1.89 +attractive attractif adj f s 0.24 0.41 0.09 0.14 +attrait attrait nom m s 1.76 9.39 1.18 6.96 +attraits attrait nom m p 1.76 9.39 0.58 2.43 +attrapa attraper ver 112.52 55.34 0.16 5.74 ind:pas:3s; +attrapage attrapage nom m s 0.01 0 0.01 0 +attrapai attraper ver 112.52 55.34 0 1.82 ind:pas:1s; +attrapaient attraper ver 112.52 55.34 0.3 0.68 ind:imp:3p; +attrapais attraper ver 112.52 55.34 0.5 0.41 ind:imp:1s;ind:imp:2s; +attrapait attraper ver 112.52 55.34 0.66 3.58 ind:imp:3s; +attrapant attraper ver 112.52 55.34 0.3 1.69 par:pre; +attrape attraper ver 112.52 55.34 24.29 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +attrape_couillon attrape_couillon nom m s 0.04 0.07 0.03 0 +attrape_couillon attrape_couillon nom m p 0.04 0.07 0.01 0.07 +attrape_mouche attrape_mouche nom m s 0.04 0.07 0.01 0 +attrape_mouche attrape_mouche nom m p 0.04 0.07 0.03 0.07 +attrape_nigaud attrape_nigaud nom m s 0.1 0.2 0.1 0.2 +attrapent attraper ver 112.52 55.34 3.79 0.88 ind:pre:3p; +attraper attraper ver 112.52 55.34 35.32 17.09 inf; +attrapera attraper ver 112.52 55.34 1.04 0.27 ind:fut:3s; +attraperai attraper ver 112.52 55.34 1.1 0.14 ind:fut:1s; +attraperaient attraper ver 112.52 55.34 0.22 0.07 cnd:pre:3p; +attraperais attraper ver 112.52 55.34 0.32 0.07 cnd:pre:1s;cnd:pre:2s; +attraperait attraper ver 112.52 55.34 0.22 0.2 cnd:pre:3s; +attraperas attraper ver 112.52 55.34 1 0.14 ind:fut:2s; +attraperez attraper ver 112.52 55.34 0.47 0 ind:fut:2p; +attraperiez attraper ver 112.52 55.34 0.05 0 cnd:pre:2p; +attraperons attraper ver 112.52 55.34 0.22 0 ind:fut:1p; +attraperont attraper ver 112.52 55.34 0.88 0.2 ind:fut:3p; +attrapes attraper ver 112.52 55.34 2.14 0.34 ind:pre:2s;sub:pre:2s; +attrapeur attrapeur nom m s 1.2 0 1.2 0 +attrapez attraper ver 112.52 55.34 14.91 0.14 imp:pre:2p;ind:pre:2p; +attrapiez attraper ver 112.52 55.34 0.26 0 ind:imp:2p; +attrapions attraper ver 112.52 55.34 0.08 0.14 ind:imp:1p; +attrapons attraper ver 112.52 55.34 1.22 0 imp:pre:1p;ind:pre:1p; +attrapèrent attraper ver 112.52 55.34 0.02 0.14 ind:pas:3p; +attrapé attraper ver m s 112.52 55.34 19.2 11.35 par:pas; +attrapée attraper ver f s 112.52 55.34 2.41 1.69 par:pas; +attrapées attraper ver f p 112.52 55.34 0.3 0.07 par:pas; +attrapés attraper ver m p 112.52 55.34 1.16 0.54 par:pas; +attrayant attrayant adj m s 1.39 1.22 0.89 0.61 +attrayante attrayant adj f s 1.39 1.22 0.32 0.41 +attrayantes attrayant adj f p 1.39 1.22 0.02 0.14 +attrayants attrayant adj m p 1.39 1.22 0.16 0.07 +attribua attribuer ver 7.56 21.89 0.16 1.28 ind:pas:3s; +attribuable attribuable adj m s 0.03 0 0.03 0 +attribuai attribuer ver 7.56 21.89 0.01 0.54 ind:pas:1s; +attribuaient attribuer ver 7.56 21.89 0 0.27 ind:imp:3p; +attribuais attribuer ver 7.56 21.89 0.02 0.54 ind:imp:1s; +attribuait attribuer ver 7.56 21.89 0.16 3.11 ind:imp:3s; +attribuant attribuer ver 7.56 21.89 0.13 1.08 par:pre; +attribue attribuer ver 7.56 21.89 1.78 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attribuent attribuer ver 7.56 21.89 0.09 0.07 ind:pre:3p; +attribuer attribuer ver 7.56 21.89 1.49 5.68 inf; +attribuera attribuer ver 7.56 21.89 0.09 0.14 ind:fut:3s; +attribueraient attribuer ver 7.56 21.89 0 0.2 cnd:pre:3p; +attribuerais attribuer ver 7.56 21.89 0.01 0.2 cnd:pre:1s; +attribuerait attribuer ver 7.56 21.89 0.03 0.14 cnd:pre:3s; +attribueront attribuer ver 7.56 21.89 0.02 0 ind:fut:3p; +attribues attribuer ver 7.56 21.89 0.19 0.07 ind:pre:2s; +attribuez attribuer ver 7.56 21.89 0.17 0 ind:pre:2p; +attribuions attribuer ver 7.56 21.89 0 0.07 ind:imp:1p; +attribuons attribuer ver 7.56 21.89 0.14 0 imp:pre:1p;ind:pre:1p; +attribut attribut nom m s 1.13 6.01 0.08 1.69 +attribution attribution nom f s 1.4 8.72 0.47 2.23 +attributions attribution nom f p 1.4 8.72 0.93 6.49 +attributs attribut nom m p 1.13 6.01 1.05 4.32 +attribuâmes attribuer ver 7.56 21.89 0 0.07 ind:pas:1p; +attribuât attribuer ver 7.56 21.89 0 0.27 sub:imp:3s; +attribuèrent attribuer ver 7.56 21.89 0.1 0.14 ind:pas:3p; +attribué attribuer ver m s 7.56 21.89 1.95 2.97 par:pas; +attribuée attribuer ver f s 7.56 21.89 0.25 1.49 par:pas; +attribuées attribuer ver f p 7.56 21.89 0.14 0.54 par:pas; +attribués attribuer ver m p 7.56 21.89 0.6 0.81 par:pas; +attriquait attriquer ver 0 1.62 0 0.07 ind:imp:3s; +attriquant attriquer ver 0 1.62 0 0.07 par:pre; +attrique attriquer ver 0 1.62 0 0.2 ind:pre:1s;ind:pre:3s; +attriquent attriquer ver 0 1.62 0 0.07 ind:pre:3p; +attriquer attriquer ver 0 1.62 0 0.68 inf; +attriquerait attriquer ver 0 1.62 0 0.07 cnd:pre:3s; +attriqué attriquer ver m s 0 1.62 0 0.27 par:pas; +attriquée attriquer ver f s 0 1.62 0 0.2 par:pas; +attrista attrister ver 2.71 6.42 0.01 0.47 ind:pas:3s; +attristai attrister ver 2.71 6.42 0 0.2 ind:pas:1s; +attristaient attrister ver 2.71 6.42 0 0.27 ind:imp:3p; +attristais attrister ver 2.71 6.42 0 0.14 ind:imp:1s; +attristait attrister ver 2.71 6.42 0.01 1.15 ind:imp:3s; +attristant attristant adj m s 0.01 0.47 0.01 0.27 +attristante attristant adj f s 0.01 0.47 0 0.14 +attristantes attristant adj f p 0.01 0.47 0 0.07 +attriste attrister ver 2.71 6.42 1.54 1.01 ind:pre:1s;ind:pre:3s; +attristent attrister ver 2.71 6.42 0 0.47 ind:pre:3p; +attrister attrister ver 2.71 6.42 0.5 1.01 inf; +attristerait attrister ver 2.71 6.42 0.01 0 cnd:pre:3s; +attristez attrister ver 2.71 6.42 0.03 0.07 imp:pre:2p;ind:pre:2p; +attristât attrister ver 2.71 6.42 0 0.2 sub:imp:3s; +attristèrent attrister ver 2.71 6.42 0.01 0.2 ind:pas:3p; +attristé attrister ver m s 2.71 6.42 0.36 0.41 par:pas; +attristée attrister ver f s 2.71 6.42 0.09 0.14 par:pas; +attristés attrister ver m p 2.71 6.42 0.15 0.14 par:pas; +attrition attrition nom f s 0.02 0.2 0.02 0.14 +attritions attrition nom f p 0.02 0.2 0 0.07 +attroupa attrouper ver 0.14 2.36 0 0.07 ind:pas:3s; +attroupaient attrouper ver 0.14 2.36 0.14 0.34 ind:imp:3p; +attroupait attrouper ver 0.14 2.36 0 0.14 ind:imp:3s; +attroupement attroupement nom m s 0.17 3.85 0.08 3.45 +attroupements attroupement nom m p 0.17 3.85 0.08 0.41 +attroupent attrouper ver 0.14 2.36 0 0.27 ind:pre:3p; +attrouper attrouper ver 0.14 2.36 0 0.54 inf; +attrouperaient attrouper ver 0.14 2.36 0 0.07 cnd:pre:3p; +attroupèrent attrouper ver 0.14 2.36 0 0.14 ind:pas:3p; +attroupé attrouper ver m s 0.14 2.36 0 0.2 par:pas; +attroupée attrouper ver f s 0.14 2.36 0 0.07 par:pas; +attroupées attrouper ver f p 0.14 2.36 0 0.14 par:pas; +attroupés attrouper ver m p 0.14 2.36 0.01 0.41 par:pas; +atténua atténuer ver 2.47 12.64 0 0.54 ind:pas:3s; +atténuaient atténuer ver 2.47 12.64 0 0.68 ind:imp:3p; +atténuait atténuer ver 2.47 12.64 0.01 1.96 ind:imp:3s; +atténuant atténuer ver 2.47 12.64 0 0.41 par:pre; +atténuante atténuant adj f s 1.56 2.09 0.3 0.27 +atténuantes atténuant adj f p 1.56 2.09 1.27 1.82 +atténuateur atténuateur nom m s 0.09 0 0.09 0 +atténuation atténuation nom f s 0.01 0.07 0.01 0 +atténuations atténuation nom f p 0.01 0.07 0 0.07 +atténue atténuer ver 2.47 12.64 0.56 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +atténuent atténuer ver 2.47 12.64 0.08 0.27 ind:pre:3p; +atténuer atténuer ver 2.47 12.64 1.3 4.46 inf; +atténuera atténuer ver 2.47 12.64 0.37 0.14 ind:fut:3s; +atténueraient atténuer ver 2.47 12.64 0 0.14 cnd:pre:3p; +atténuez atténuer ver 2.47 12.64 0.03 0 imp:pre:2p;ind:pre:2p; +atténuons atténuer ver 2.47 12.64 0.01 0 imp:pre:1p; +atténuât atténuer ver 2.47 12.64 0 0.2 sub:imp:3s; +atténuèrent atténuer ver 2.47 12.64 0 0.07 ind:pas:3p; +atténué atténuer ver m s 2.47 12.64 0.07 1.22 par:pas; +atténuée atténuer ver f s 2.47 12.64 0.01 0.88 par:pas; +atténuées atténuer ver f p 2.47 12.64 0.01 0.41 par:pas; +atténués atténuer ver m p 2.47 12.64 0.02 0.07 par:pas; +atypique atypique adj s 0.57 0.34 0.26 0.14 +atypiques atypique adj p 0.57 0.34 0.31 0.2 +atèle atèle nom m s 0.01 0 0.01 0 +atélectasie atélectasie nom f s 0.03 0 0.03 0 +atémi atémi nom m s 0.01 0 0.01 0 +au au art_def m s 3737.75 5322.5 3737.75 5322.5 +au_dedans au_dedans adv 0.92 4.86 0.92 4.86 +au_dehors au_dehors adv 0.91 11.42 0.91 11.42 +au_delà au_delà adv 21.77 52.91 21.77 52.91 +au_dessous au_dessous adv 2.98 24.59 2.98 24.59 +au_dessus au_dessus pre 0.02 0.07 0.02 0.07 +au_devant au_devant adv 0.98 11.08 0.98 11.08 +aubade aubade nom f s 0.01 0.47 0.01 0.47 +aubadent aubader ver 0 0.07 0 0.07 ind:pre:3p; +aubain aubain nom m s 0 14.19 0 14.19 +aubaine aubaine nom f s 1.08 5.81 1.04 5.27 +aubaines aubaine nom f p 1.08 5.81 0.03 0.54 +aube aube pre 0.1 0 0.1 0 +auberge auberge nom f s 14.44 17.3 14.12 15.47 +auberges auberge nom f p 14.44 17.3 0.32 1.82 +aubergine aubergine nom f s 1.44 1.35 0.35 0.61 +aubergines aubergine nom f p 1.44 1.35 1.09 0.74 +aubergiste aubergiste nom s 1.93 3.24 1.91 2.91 +aubergistes aubergiste nom p 1.93 3.24 0.02 0.34 +aubes aube nom f p 30.32 57.77 0.27 1.96 +aubette aubette nom f s 0 0.34 0 0.34 +aubier aubier nom m s 0 0.47 0 0.47 +aubour aubour nom m 0 0.07 0 0.07 +auburn auburn adj 0.23 1.15 0.23 1.15 +aubusson aubusson nom s 0 0.07 0 0.07 +aubère aubère adj s 0 0.14 0 0.14 +aubères aubère nom m p 0 0.2 0 0.14 +aubépine aubépine nom f s 0.06 2.03 0.05 0.81 +aubépines aubépine nom f p 0.06 2.03 0.01 1.22 +aucubas aucuba nom m p 0 0.14 0 0.14 +aucun aucun adj_ind m s 175.78 180.95 175.78 180.95 +aucune aucune adj_ind f s 207 174.73 207 174.73 +aucunement aucunement adv_sup 1.01 5.81 1.01 5.81 +aucunes aucunes adj_ind f p 1.03 0.14 1.03 0.14 +aucuns aucuns adj_ind m p 1.22 3.11 1.22 3.11 +audace audace nom f s 5.12 19.46 5.1 16.55 +audaces audace nom f p 5.12 19.46 0.02 2.91 +audacieuse audacieux adj f s 4.76 7.03 1.46 1.76 +audacieusement audacieusement adv 0.09 0.47 0.09 0.47 +audacieuses audacieux adj f p 4.76 7.03 0.25 0.81 +audacieux audacieux adj m 4.76 7.03 3.06 4.46 +audible audible adj s 0.29 2.7 0.22 2.23 +audibles audible adj p 0.29 2.7 0.08 0.47 +audience audience nom f s 14.02 9.53 13.51 7.84 +audiences audience nom f p 14.02 9.53 0.5 1.69 +audiencia audiencia nom f s 0 0.07 0 0.07 +audienciers audiencier adj m p 0 0.07 0 0.07 +audimat audimat nom m 1.39 0 1.37 0 +audimats audimat nom m p 1.39 0 0.03 0 +audio audio adj 1.87 0 1.87 0 +audio_visuel audio_visuel adj m s 0.06 0.2 0.06 0.2 +audiovisuel audiovisuel adj f s 0.88 0.27 0 0.14 +audioconférence audioconférence nom f s 0.03 0 0.03 0 +audiogramme audiogramme nom m s 0.01 0 0.01 0 +audiométrie audiométrie nom f s 0.01 0 0.01 0 +audiophile audiophile nom s 0.03 0 0.03 0 +audiophone audiophone nom m s 0.02 0 0.02 0 +audiovisuel audiovisuel nom m s 0.16 0.14 0.16 0.14 +audiovisuelle audiovisuel adj f s 0.88 0.27 0.72 0 +audiovisuelles audiovisuel adj f p 0.88 0.27 0 0.07 +audit audit pre 0.03 0.2 0.03 0.2 +auditer auditer ver 0.01 0 0.01 0 inf; +auditeur auditeur nom m s 3.15 6.49 0.85 1.69 +auditeurs auditeur nom m p 3.15 6.49 2.21 4.46 +auditif auditif adj m s 1.25 1.28 0.45 0.54 +auditifs auditif adj m p 1.25 1.28 0.08 0.2 +audition audition nom f s 11.64 2.64 9.32 1.89 +auditionnais auditionner ver 2.57 0.27 0.1 0 ind:imp:1s;ind:imp:2s; +auditionne auditionner ver 2.57 0.27 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +auditionnent auditionner ver 2.57 0.27 0.1 0 ind:pre:3p; +auditionner auditionner ver 2.57 0.27 1.27 0.14 inf; +auditionnera auditionner ver 2.57 0.27 0.02 0 ind:fut:3s; +auditionnerais auditionner ver 2.57 0.27 0.02 0 cnd:pre:1s; +auditionnes auditionner ver 2.57 0.27 0.07 0 ind:pre:2s; +auditionnez auditionner ver 2.57 0.27 0.18 0 imp:pre:2p;ind:pre:2p; +auditionné auditionner ver m s 2.57 0.27 0.44 0 par:pas; +auditionnée auditionner ver f s 2.57 0.27 0.03 0 par:pas; +auditions audition nom f p 11.64 2.64 2.31 0.74 +auditive auditif adj f s 1.25 1.28 0.41 0.2 +auditives auditif adj f p 1.25 1.28 0.32 0.34 +auditoire auditoire nom m s 0.62 4.19 0.58 3.92 +auditoires auditoire nom m p 0.62 4.19 0.04 0.27 +auditorium auditorium nom m s 0.8 0.74 0.8 0.61 +auditoriums auditorium nom m p 0.8 0.74 0 0.14 +auditrice auditeur nom f s 3.15 6.49 0.06 0.07 +auditrices auditeur nom f p 3.15 6.49 0.04 0.27 +audits audit nom m p 0.54 0.14 0.06 0 +auge auge nom f s 0.52 2.23 0.49 1.76 +auges auge nom f p 0.52 2.23 0.03 0.47 +augment augment nom m s 0.2 0 0.2 0 +augmenta augmenter ver 29.86 20.95 0.05 0.88 ind:pas:3s; +augmentaient augmenter ver 29.86 20.95 0.06 0.95 ind:imp:3p; +augmentais augmenter ver 29.86 20.95 0.04 0 ind:imp:1s;ind:imp:2s; +augmentait augmenter ver 29.86 20.95 0.27 4.66 ind:imp:3s; +augmentant augmenter ver 29.86 20.95 0.57 1.01 par:pre; +augmentation augmentation nom f s 6.85 3.99 6.61 3.24 +augmentations augmentation nom f p 6.85 3.99 0.24 0.74 +augmente augmenter ver 29.86 20.95 7.58 4.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +augmentent augmenter ver 29.86 20.95 1.23 0.47 ind:pre:3p; +augmenter augmenter ver 29.86 20.95 9.94 4.8 inf; +augmentera augmenter ver 29.86 20.95 0.42 0.2 ind:fut:3s; +augmenterai augmenter ver 29.86 20.95 0.11 0.07 ind:fut:1s; +augmenteraient augmenter ver 29.86 20.95 0.02 0.07 cnd:pre:3p; +augmenterais augmenter ver 29.86 20.95 0.03 0 cnd:pre:2s; +augmenterait augmenter ver 29.86 20.95 0.51 0 cnd:pre:3s; +augmenteras augmenter ver 29.86 20.95 0.01 0 ind:fut:2s; +augmenterez augmenter ver 29.86 20.95 0.01 0.07 ind:fut:2p; +augmenteront augmenter ver 29.86 20.95 0.38 0 ind:fut:3p; +augmentez augmenter ver 29.86 20.95 1.31 0.27 imp:pre:2p;ind:pre:2p; +augmentions augmenter ver 29.86 20.95 0.02 0.07 ind:imp:1p; +augmentons augmenter ver 29.86 20.95 0.36 0 imp:pre:1p;ind:pre:1p; +augmentât augmenter ver 29.86 20.95 0 0.07 sub:imp:3s; +augmentèrent augmenter ver 29.86 20.95 0.11 0.14 ind:pas:3p; +augmenté augmenter ver m s 29.86 20.95 6.15 2.3 par:pas; +augmentée augmenter ver f s 29.86 20.95 0.54 0.34 par:pas; +augmentées augmenter ver f p 29.86 20.95 0.03 0.07 par:pas; +augmentés augmenter ver m p 29.86 20.95 0.13 0.27 par:pas; +augurai augurer ver 0.81 1.76 0 0.07 ind:pas:1s; +augurais augurer ver 0.81 1.76 0.01 0.14 ind:imp:1s; +augurait augurer ver 0.81 1.76 0.11 0.68 ind:imp:3s; +augural augural adj m s 0.03 0.34 0.03 0.14 +augurale augural adj f s 0.03 0.34 0 0.2 +augurant augurer ver 0.81 1.76 0 0.07 par:pre; +augure augure nom m s 3.21 3.38 2.13 2.77 +augurent augurer ver 0.81 1.76 0.14 0.07 ind:pre:3p; +augurer augurer ver 0.81 1.76 0.12 0.61 inf; +augurerais augurer ver 0.81 1.76 0 0.07 cnd:pre:1s; +augures augure nom m p 3.21 3.38 1.08 0.61 +auguste auguste adj s 1.12 2.09 1 1.89 +augustes auguste adj p 1.12 2.09 0.11 0.2 +augustin augustin nom m s 0 0.81 0 0.07 +augustinien augustinien adj m s 0 0.07 0 0.07 +augustins augustin nom m p 0 0.81 0 0.74 +aujourd_hui aujourd_hui adv_sup 360.17 158.24 360.17 158.24 +aula aula nom f s 0.01 0 0.01 0 +aulique aulique adj m s 0 0.07 0 0.07 +aulnaie aulnaie nom f s 0 0.07 0 0.07 +aulne aulne nom m s 0.04 2.16 0.04 0.27 +aulnes aulne nom m p 0.04 2.16 0 1.89 +auloffée auloffée nom f s 0 0.07 0 0.07 +aulos aulos nom m 0 0.07 0 0.07 +aulx aulx nom m p 0 0.27 0 0.27 +aumône aumône nom f s 3.57 3.78 3.09 3.18 +aumônerie aumônerie nom f s 0.02 0.07 0.02 0.07 +aumônes aumône nom f p 3.57 3.78 0.48 0.61 +aumônier aumônier nom m s 1.51 4.53 1.44 3.72 +aumôniers aumônier nom m p 1.51 4.53 0.05 0.47 +aumônière aumônier nom f s 1.51 4.53 0.02 0.27 +aumônières aumônier nom f p 1.51 4.53 0 0.07 +aune aune nom s 0.72 1.15 0.44 0.68 +auner auner ver 0 0.07 0 0.07 inf; +aunes aune nom p 0.72 1.15 0.28 0.47 +auparavant auparavant adv_sup 14.11 41.62 14.11 41.62 +auprès auprès pre 29.95 93.45 29.95 93.45 +auquel auquel pro_rel m s 9.97 52.57 9.68 47.7 +aura avoir aux 18559.22 12800.81 39.72 39.86 ind:fut:3s; +aurai avoir aux 18559.22 12800.81 32.96 15.54 ind:fut:1s; +auraient avoir aux 18559.22 12800.81 34.48 69.53 cnd:pre:3p; +aurais avoir aux 18559.22 12800.81 354.36 236.35 cnd:pre:2s; +aurait avoir aux 18559.22 12800.81 282.17 491.15 cnd:pre:3s; +auras avoir aux 18559.22 12800.81 16.96 7.03 ind:fut:2s; +aureus aureus nom m 0.03 0 0.03 0 +aurez avoir aux 18559.22 12800.81 13.18 5.14 ind:fut:2p; +auriculaire auriculaire nom m s 0.42 1.01 0.42 0.95 +auriculaires auriculaire nom m p 0.42 1.01 0 0.07 +auricule auricule nom f s 0 0.07 0 0.07 +auriez avoir aux 18559.22 12800.81 46.75 16.96 cnd:pre:2p; +aurifiées aurifier ver f p 0 0.07 0 0.07 par:pas; +aurifère aurifère adj s 0.02 0.14 0.01 0 +aurifères aurifère adj p 0.02 0.14 0.01 0.14 +aurige aurige nom m s 0 0.14 0 0.14 +aurions avoir aux 18559.22 12800.81 10.35 17.57 cnd:pre:1p; +aurochs aurochs nom m 0 0.81 0 0.81 +aurone aurone nom f s 0 0.07 0 0.07 +aurons avoir aux 18559.22 12800.81 4.22 5.14 ind:fut:1p; +auront avoir aux 18559.22 12800.81 7.46 14.05 ind:fut:3p; +auroral auroral adj m s 0 0.07 0 0.07 +aurore aurore nom f s 3.68 11.62 3.01 9.39 +aurores aurore nom f p 3.68 11.62 0.68 2.23 +auréola auréoler ver 0.71 3.38 0 0.07 ind:pas:3s; +auréolaient auréoler ver 0.71 3.38 0 0.27 ind:imp:3p; +auréolaire auréolaire adj f s 0.13 0 0.13 0 +auréolait auréoler ver 0.71 3.38 0 0.54 ind:imp:3s; +auréolant auréoler ver 0.71 3.38 0 0.07 par:pre; +auréole auréole nom f s 1.29 6.35 1.04 4.59 +auréoler auréoler ver 0.71 3.38 0 0.07 inf; +auréoles auréole nom f p 1.29 6.35 0.25 1.76 +auréolé auréoler ver m s 0.71 3.38 0.44 1.15 par:pas; +auréolée auréolé adj f s 0.21 0.34 0.2 0.07 +auréolées auréoler ver f p 0.71 3.38 0.01 0.14 par:pas; +auréolés auréoler ver m p 0.71 3.38 0.12 0.41 par:pas; +auréomycine auréomycine nom f s 0 0.07 0 0.07 +ausculta ausculter ver 1.18 3.58 0 0.54 ind:pas:3s; +auscultais ausculter ver 1.18 3.58 0 0.14 ind:imp:1s; +auscultait ausculter ver 1.18 3.58 0.02 0.54 ind:imp:3s; +auscultant ausculter ver 1.18 3.58 0.01 0.34 par:pre; +auscultation auscultation nom f s 0 0.74 0 0.68 +auscultations auscultation nom f p 0 0.74 0 0.07 +ausculte ausculter ver 1.18 3.58 0.34 0.41 ind:pre:1s;ind:pre:3s; +auscultent ausculter ver 1.18 3.58 0.14 0.07 ind:pre:3p; +ausculter ausculter ver 1.18 3.58 0.57 0.88 inf; +auscultez ausculter ver 1.18 3.58 0.04 0 imp:pre:2p;ind:pre:2p; +ausculté ausculter ver m s 1.18 3.58 0.07 0.54 par:pas; +auscultées ausculter ver f p 1.18 3.58 0.01 0 par:pas; +auscultés ausculter ver m p 1.18 3.58 0 0.14 par:pas; +auspices auspice nom m p 0.21 0.95 0.21 0.95 +aussi aussi adv_sup 1402.33 1359.86 1402.33 1359.86 +aussitôt aussitôt adv 13.52 189.93 13.52 189.93 +aussière aussière nom f s 0 0.2 0 0.07 +aussières aussière nom f p 0 0.2 0 0.14 +austral austral adj m s 0.07 0.95 0.03 0.2 +australe austral adj f s 0.07 0.95 0.03 0.68 +australes austral adj f p 0.07 0.95 0.01 0.07 +australien australien adj m s 1.57 1.89 0.76 0.88 +australienne australien adj f s 1.57 1.89 0.48 0.41 +australiennes australien adj f p 1.57 1.89 0.06 0 +australiens australien adj m p 1.57 1.89 0.27 0.61 +australopithèque australopithèque nom m s 0.07 0.07 0.03 0.07 +australopithèques australopithèque nom m p 0.07 0.07 0.04 0 +austro austro adv 0.02 0.07 0.02 0.07 +austro_hongrois austro_hongrois adj m s 0.05 0.41 0.05 0.27 +austro_hongrois austro_hongrois adj f p 0.05 0.41 0 0.14 +austère austère adj s 1.52 10.95 1.26 8.24 +austèrement austèrement adv 0 0.14 0 0.14 +austères austère adj p 1.52 10.95 0.25 2.7 +austérité austérité nom f s 0.64 4.73 0.64 4.59 +austérités austérité nom f p 0.64 4.73 0 0.14 +ausweis ausweis nom m 0 0.41 0 0.41 +autan autan nom m s 0 0.07 0 0.07 +autant autant adv_sup 152.16 240.41 152.16 240.41 +autarcie autarcie nom f s 0.17 0.34 0.17 0.34 +autarcique autarcique adj s 0.01 0.27 0.01 0.2 +autarciques autarcique adj f p 0.01 0.27 0 0.07 +autel autel nom m s 8.27 15.34 7.62 13.31 +autels autel nom m p 8.27 15.34 0.66 2.03 +auteur auteur nom m s 23.52 41.89 17.62 32.3 +auteure auteur nom f s 23.52 41.89 0.01 0 +auteurs auteur nom m p 23.52 41.89 5.88 9.59 +authenticité authenticité nom f s 1.05 2.43 1.05 2.43 +authentifiait authentifier ver 0.79 0.61 0 0.07 ind:imp:3s; +authentification authentification nom f s 0.33 0.14 0.33 0.14 +authentifie authentifier ver 0.79 0.61 0.06 0.2 ind:pre:1s;ind:pre:3s; +authentifient authentifier ver 0.79 0.61 0 0.07 ind:pre:3p; +authentifier authentifier ver 0.79 0.61 0.32 0.14 inf; +authentifierait authentifier ver 0.79 0.61 0 0.07 cnd:pre:3s; +authentifiez authentifier ver 0.79 0.61 0.03 0 imp:pre:2p;ind:pre:2p; +authentifié authentifier ver m s 0.79 0.61 0.21 0 par:pas; +authentifiée authentifier ver f s 0.79 0.61 0.1 0.07 par:pas; +authentifiées authentifier ver f p 0.79 0.61 0.04 0 par:pas; +authentifiés authentifier ver m p 0.79 0.61 0.04 0 par:pas; +authentiquant authentiquer ver 0.17 0.07 0 0.07 par:pre; +authentique authentique adj s 9.22 11.35 7.28 8.51 +authentiquement authentiquement adv 0.17 0.54 0.17 0.54 +authentiques authentique adj p 9.22 11.35 1.94 2.84 +autisme autisme nom m s 0.31 0 0.31 0 +autiste autiste adj s 0.58 0.27 0.46 0.2 +autistes autiste adj m p 0.58 0.27 0.12 0.07 +autistique autistique adj s 0.04 0.07 0.04 0.07 +auto auto nom s 18.66 42.36 16.25 30.34 +auto_adhésif auto_adhésif adj f s 0 0.07 0 0.07 +auto_analyse auto_analyse nom f s 0.02 0.07 0.02 0.07 +auto_immun auto_immun adj m s 0.12 0 0.01 0 +auto_immun auto_immun adj f s 0.12 0 0.1 0 +auto_intoxication auto_intoxication nom f s 0 0.14 0 0.14 +auto_pilote auto_pilote nom s 0.1 0 0.1 0 +auto_stop auto_stop nom m s 1.06 0.74 1.06 0.74 +auto_stoppeur auto_stoppeur nom m s 0.67 0.2 0.28 0 +auto_stoppeur auto_stoppeur nom m p 0.67 0.2 0.27 0 +auto_stoppeur auto_stoppeur nom f s 0.67 0.2 0.08 0.07 +auto_stoppeur auto_stoppeur nom f p 0.67 0.2 0.04 0.14 +auto_tamponneuse auto_tamponneuse nom f s 0.26 0 0.04 0 +auto_tamponneuse auto_tamponneuse nom f p 0.26 0 0.22 0 +auto_école auto_école nom f s 0.58 0.07 0.58 0.07 +auto_érotisme auto_érotisme nom m s 0.02 0 0.02 0 +autobiographe autobiographe nom s 0 0.2 0 0.2 +autobiographie autobiographie nom f s 1.26 1.35 1.12 0.68 +autobiographies autobiographie nom f p 1.26 1.35 0.14 0.68 +autobiographique autobiographique adj s 0.4 0.68 0.34 0.61 +autobiographiques autobiographique adj p 0.4 0.68 0.06 0.07 +autobronzant autobronzant nom m s 0.16 0 0.16 0 +autobus autobus nom m 4.67 26.28 4.67 26.28 +autocar autocar nom m s 2.33 8.85 2.23 7.7 +autocars autocar nom m p 2.33 8.85 0.1 1.15 +autocensure autocensure nom f s 0.35 0.34 0.35 0.34 +autocensurent autocensurer ver 0.01 0.14 0 0.07 ind:pre:3p; +autocensurer autocensurer ver 0.01 0.14 0 0.07 inf; +autochenille autochenille nom f s 0 0.07 0 0.07 +autochtone autochtone adj s 0.2 1.15 0.14 0.47 +autochtones autochtone nom p 0.84 1.69 0.72 1.35 +autoclave autoclave nom m s 0.01 0.14 0.01 0.14 +autocollant autocollant nom m s 2.07 0 0.73 0 +autocollante autocollant adj f s 0.09 0.27 0.01 0 +autocollantes autocollant adj f p 0.09 0.27 0.01 0.14 +autocollants autocollant nom m p 2.07 0 1.34 0 +autoconservation autoconservation nom f s 0.01 0.07 0.01 0.07 +autocrate autocrate adj s 0.02 0 0.02 0 +autocrates autocrate nom p 0 0.07 0 0.07 +autocratie autocratie nom f s 0.1 0.07 0.1 0.07 +autocratique autocratique adj s 0.03 0.2 0.03 0.14 +autocratiques autocratique adj p 0.03 0.2 0 0.07 +autocritique autocritique nom f s 0.16 1.22 0.16 1.15 +autocritiquer autocritiquer ver 0.01 0 0.01 0 inf; +autocritiques autocritique nom f p 0.16 1.22 0 0.07 +autocréation autocréation nom f s 0 0.07 0 0.07 +autocuiseur autocuiseur nom m s 0.28 0 0.28 0 +autodafé autodafé nom m s 0.07 0.61 0.07 0.41 +autodafés autodafé nom m p 0.07 0.61 0 0.2 +autodestructeur autodestructeur adj m s 0.35 0.07 0.2 0 +autodestructeurs autodestructeur adj m p 0.35 0.07 0.04 0 +autodestructible autodestructible adj s 0 0.07 0 0.07 +autodestruction autodestruction nom f s 2.14 0.47 2.14 0.47 +autodestructrice autodestructeur adj f s 0.35 0.07 0.12 0.07 +autodidacte autodidacte nom s 0.3 0.74 0.27 0.61 +autodidactes autodidacte nom p 0.3 0.74 0.03 0.14 +autodidactique autodidactique adj f s 0.01 0.07 0.01 0.07 +autodirecteur autodirecteur adj m s 0.12 0 0.12 0 +autodiscipline autodiscipline nom f s 0.18 0 0.18 0 +autodrome autodrome nom m s 0.01 0 0.01 0 +autodéfense autodéfense nom f s 1.74 0.47 1.74 0.47 +autodénigrement autodénigrement nom m s 0.01 0.07 0.01 0.07 +autodérision autodérision nom f s 0.04 0 0.04 0 +autodétermination autodétermination nom f s 0.47 0 0.47 0 +autodétruira autodétruire ver 0.51 0 0.07 0 ind:fut:3s; +autodétruire autodétruire ver 0.51 0 0.21 0 inf; +autodétruiront autodétruire ver 0.51 0 0.02 0 ind:fut:3p; +autodétruisant autodétruire ver 0.51 0 0.01 0 par:pre; +autodétruisent autodétruire ver 0.51 0 0.04 0 ind:pre:3p; +autodétruit autodétruire ver m s 0.51 0 0.11 0 ind:pre:3s;par:pas; +autodétruite autodétruire ver f s 0.51 0 0.04 0 par:pas; +autofinancement autofinancement nom m s 0.01 0 0.01 0 +autofocus autofocus adj 0.13 0 0.13 0 +autogenèse autogenèse nom f s 0.02 0 0.02 0 +autogestion autogestion nom f s 0.14 0.2 0.14 0.2 +autogire autogire nom m s 0.02 0.07 0.01 0.07 +autogires autogire nom m p 0.02 0.07 0.01 0 +autographe autographe nom m s 8.52 1.82 7.35 0.95 +autographes autographe nom m p 8.52 1.82 1.17 0.88 +autographier autographier ver 0.01 0.07 0 0.07 inf; +autographié autographier ver m s 0.01 0.07 0.01 0 par:pas; +autoguidage autoguidage nom m s 0.05 0 0.05 0 +autoguidé autoguidé adj m s 0.01 0 0.01 0 +autogène autogène adj f s 0.01 0.07 0.01 0.07 +autogérer autogérer ver 0.13 0 0.13 0 inf; +autogérée autogéré adj f s 0.12 0 0.12 0 +autolimite autolimiter ver 0.01 0 0.01 0 ind:pre:3s; +autologues autologue adj m p 0.01 0 0.01 0 +autolysat autolysat nom m s 0 0.07 0 0.07 +autolyse autolyse nom f s 0.01 0 0.01 0 +automate automate nom s 0.5 5.54 0.19 4.12 +automates automate nom p 0.5 5.54 0.3 1.42 +automatico automatico adv 0 0.07 0 0.07 +automation automation nom f s 0.14 0.14 0.14 0.14 +automatique automatique adj s 8.6 7.57 6.6 5.74 +automatiquement automatiquement adv 2.61 3.85 2.61 3.85 +automatiques automatique adj p 8.6 7.57 2 1.82 +automatisation automatisation nom f s 0.14 0.14 0.14 0.14 +automatisme automatisme nom m s 0.18 1.22 0.17 1.08 +automatismes automatisme nom m p 0.18 1.22 0.01 0.14 +automatisé automatiser ver m s 0.28 0 0.2 0 par:pas; +automatisée automatiser ver f s 0.28 0 0.04 0 par:pas; +automatisées automatisé adj f p 0.24 0 0.04 0 +automatisés automatiser ver m p 0.28 0 0.04 0 par:pas; +automitrailleuse automitrailleur nom f s 0.1 1.76 0 0.47 +automitrailleuses automitrailleur nom f p 0.1 1.76 0.1 1.28 +automnal automnal adj m s 0.32 1.76 0.11 1.08 +automnale automnal adj f s 0.32 1.76 0.11 0.47 +automnales automnal adj f p 0.32 1.76 0.1 0.2 +automne automne nom m s 16.91 43.65 16.88 42.97 +automnes automne nom m p 16.91 43.65 0.03 0.68 +automobile automobile nom f s 3.71 19.46 2.96 12.7 +automobile_club automobile_club nom f s 0.03 0 0.03 0 +automobiles automobile nom f p 3.71 19.46 0.76 6.76 +automobiliste automobiliste nom s 0.39 3.78 0.2 1.76 +automobilistes automobiliste nom p 0.39 3.78 0.19 2.03 +automoteur automoteur adj m s 0.02 0.2 0.01 0 +automoteurs automoteur adj m p 0.02 0.2 0 0.07 +automotrice automoteur adj f s 0.02 0.2 0.01 0.14 +automutilation automutilation nom f s 0.2 0.27 0.2 0.27 +automutiler automutiler ver 0.1 0 0.1 0 inf; +automédication automédication nom f s 0.08 0 0.08 0 +autoneige autoneige nom f s 0.04 0 0.04 0 +autoneiges autoneige nom f p 0.04 0 0.01 0 +autonettoyant autonettoyant adj m s 0.03 0.07 0.02 0.07 +autonettoyante autonettoyant adj f s 0.03 0.07 0.01 0 +autonome autonome adj s 2.08 2.91 1.7 1.89 +autonomes autonome adj p 2.08 2.91 0.38 1.01 +autonomie autonomie nom f s 2.76 2.16 2.76 2.16 +autonomique autonomique adj m s 0.03 0 0.03 0 +autonomistes autonomiste nom p 0 0.14 0 0.14 +autopilote autopilote nom m s 0.01 0 0.01 0 +autoplastie autoplastie nom f s 0.01 0 0.01 0 +autoportrait autoportrait nom m s 0.85 0.34 0.71 0.14 +autoportraits autoportrait nom m p 0.85 0.34 0.14 0.2 +autoportée autoporté adj f s 0 0.07 0 0.07 +autoproclamé autoproclamer ver m s 0.11 0 0.09 0 par:pas; +autoproclamée autoproclamer ver f s 0.11 0 0.02 0 par:pas; +autoproduit autoproduit nom m s 0.01 0.07 0.01 0.07 +autopropulseur autopropulseur nom m s 0.01 0 0.01 0 +autopropulsé autopropulsé adj m s 0.07 0 0.01 0 +autopropulsée autopropulsé adj f s 0.07 0 0.04 0 +autopropulsés autopropulsé adj m p 0.07 0 0.02 0 +autopsia autopsier ver 0.46 0.41 0 0.07 ind:pas:3s; +autopsiais autopsier ver 0.46 0.41 0.01 0.07 ind:imp:1s;ind:imp:2s; +autopsie autopsie nom f s 12.23 1.55 11.57 1.49 +autopsier autopsier ver 0.46 0.41 0.28 0.2 inf; +autopsies autopsie nom f p 12.23 1.55 0.66 0.07 +autopsié autopsier ver m s 0.46 0.41 0.16 0.07 par:pas; +autopunition autopunition nom f s 0.03 0 0.03 0 +autoradio autoradio nom m s 1.4 0.07 0.81 0.07 +autoradios autoradio nom m p 1.4 0.07 0.59 0 +autorail autorail nom m s 0 0.14 0 0.14 +autoreproduction autoreproduction nom f s 0.01 0 0.01 0 +autorisa autoriser ver 30.28 20.88 0.07 0.74 ind:pas:3s; +autorisai autoriser ver 30.28 20.88 0 0.07 ind:pas:1s; +autorisaient autoriser ver 30.28 20.88 0.03 0.74 ind:imp:3p; +autorisais autoriser ver 30.28 20.88 0.12 0 ind:imp:1s; +autorisait autoriser ver 30.28 20.88 0.22 4.53 ind:imp:3s; +autorisant autoriser ver 30.28 20.88 0.83 0.95 par:pre; +autorisassent autoriser ver 30.28 20.88 0 0.07 sub:imp:3p; +autorisation autorisation nom f s 21.1 10.07 19.55 8.92 +autorisations autorisation nom f p 21.1 10.07 1.55 1.15 +autorise autoriser ver 30.28 20.88 6.57 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +autorisent autoriser ver 30.28 20.88 0.53 0.34 ind:pre:3p; +autoriser autoriser ver 30.28 20.88 3.16 1.69 inf; +autorisera autoriser ver 30.28 20.88 0.2 0.14 ind:fut:3s; +autoriserai autoriser ver 30.28 20.88 0.7 0 ind:fut:1s; +autoriserais autoriser ver 30.28 20.88 0.07 0 cnd:pre:1s;cnd:pre:2s; +autoriserait autoriser ver 30.28 20.88 0.29 0.41 cnd:pre:3s; +autoriserez autoriser ver 30.28 20.88 0.14 0 ind:fut:2p; +autoriserons autoriser ver 30.28 20.88 0.02 0 ind:fut:1p; +autoriseront autoriser ver 30.28 20.88 0.09 0 ind:fut:3p; +autorises autoriser ver 30.28 20.88 0.44 0.07 ind:pre:2s; +autorisez autoriser ver 30.28 20.88 0.96 0.27 imp:pre:2p;ind:pre:2p; +autorisiez autoriser ver 30.28 20.88 0.03 0.07 ind:imp:2p; +autorisions autoriser ver 30.28 20.88 0 0.07 ind:imp:1p; +autorisons autoriser ver 30.28 20.88 0.15 0 imp:pre:1p;ind:pre:1p; +autorisât autoriser ver 30.28 20.88 0 0.41 sub:imp:3s; +autorisèrent autoriser ver 30.28 20.88 0 0.14 ind:pas:3p; +autorisé autoriser ver m s 30.28 20.88 10.22 3.78 par:pas; +autorisée autoriser ver f s 30.28 20.88 2.55 1.22 par:pas; +autorisées autoriser ver f p 30.28 20.88 0.71 0.41 par:pas; +autorisés autoriser ver m p 30.28 20.88 2.19 1.49 par:pas; +autoritaire autoritaire adj s 1.35 3.65 1.19 3.31 +autoritairement autoritairement adv 0.01 0 0.01 0 +autoritaires autoritaire adj p 1.35 3.65 0.16 0.34 +autoritarisme autoritarisme nom m s 0.02 0.07 0.02 0.07 +autorité autorité nom f s 32.95 77.03 18.62 56.22 +autorités autorité nom f p 32.95 77.03 14.32 20.81 +autoroute autoroute nom f s 14.76 15 13.81 12.77 +autoroutes autoroute nom f p 14.76 15 0.95 2.23 +autoroutiers autoroutier adj m p 0.03 0.14 0.01 0.07 +autoroutière autoroutier adj f s 0.03 0.14 0.01 0.07 +autorégulateur autorégulateur adj m s 0.01 0 0.01 0 +autorégulation autorégulation nom f s 0.14 0 0.14 0 +autorégule autoréguler ver 0.01 0 0.01 0 ind:pre:3s; +autos auto nom f p 18.66 42.36 2.42 12.03 +autosatisfaction autosatisfaction nom f s 0.13 0.27 0.13 0.27 +autostop autostop nom m s 0.07 0 0.07 0 +autostrade autostrade nom f s 0.02 0.27 0.02 0.2 +autostrades autostrade nom f p 0.02 0.27 0 0.07 +autosubsistance autosubsistance nom f s 0.01 0 0.01 0 +autosuffisance autosuffisance nom f s 0.04 0 0.04 0 +autosuffisant autosuffisant adj m s 0.04 0 0.01 0 +autosuffisants autosuffisant adj m p 0.04 0 0.03 0 +autosuggestion autosuggestion nom f s 0.09 0.14 0.09 0.14 +autosuggestionna autosuggestionner ver 0 0.07 0 0.07 ind:pas:3s; +autosurveillance autosurveillance nom f s 0.02 0 0.02 0 +autour autour adv_sup 87.02 361.55 87.02 361.55 +autours autour nom_sup m p 0.42 2.03 0.16 0.07 +autoérotique autoérotique adj f s 0.03 0 0.03 0 +autre autre pro_ind s 473.33 661.82 473.33 661.82 +autrefois autrefois pro_ind f s 0 0.07 0 0.07 +autrement autrement adv 40.16 62.77 40.16 62.77 +autres autres pro_ind p 249.7 375.14 249.7 375.14 +autrichien autrichien adj m s 2.69 7.36 1.26 2.91 +autrichienne autrichien adj f s 2.69 7.36 0.91 1.89 +autrichiennes autrichien adj f p 2.69 7.36 0.03 0.88 +autrichiens autrichiens pro_ind m p 0 0.14 0 0.14 +autruche autruche nom f s 3.53 3.04 2.79 2.43 +autruches autruche nom f p 3.53 3.04 0.74 0.61 +autrui autrui pro_ind m s 6.56 12.3 6.56 12.3 +auvent auvent nom m s 0.46 6.89 0.31 6.28 +auvents auvent nom m p 0.46 6.89 0.14 0.61 +auvergnat auvergnat nom m s 0.01 2.5 0 1.28 +auvergnate auvergnat nom f s 0.01 2.5 0.01 0.41 +auvergnates auvergnat adj f p 0 2.23 0 0.2 +auvergnats auvergnat nom m p 0.01 2.5 0 0.74 +auvergne auvergne nom f s 0 1.22 0 1.22 +auverpin auverpin nom m s 0 0.54 0 0.41 +auverpins auverpin nom m p 0 0.54 0 0.14 +aux aux art_def p 835.65 1907.57 835.65 1907.57 +aux_aguets aux_aguets adv 0.87 5.88 0.87 5.88 +auxdits auxdits pre 0 0.14 0 0.14 +auxerrois auxerrois nom m 0 0.07 0 0.07 +auxiliaire auxiliaire adj s 1.9 2.09 1.52 1.15 +auxiliaires auxiliaire nom p 1.42 3.51 0.73 2.03 +auxquelles auxquelles pro_rel f p 3.57 22.09 3.53 20.54 +auxquels auxquels pro_rel m p 3.35 26.28 3.31 23.72 +avachi avachir ver m s 0.33 2.23 0.23 0.74 par:pas; +avachie avachi adj f s 0.24 3.58 0.05 0.74 +avachies avachi adj f p 0.24 3.58 0 0.41 +avachir avachir ver 0.33 2.23 0.02 0.07 inf; +avachirait avachir ver 0.33 2.23 0 0.07 cnd:pre:3s; +avachirons avachir ver 0.33 2.23 0 0.07 ind:fut:1p; +avachis avachi adj m p 0.24 3.58 0.14 1.08 +avachissait avachir ver 0.33 2.23 0 0.07 ind:imp:3s; +avachissement avachissement nom m s 0.01 0.47 0.01 0.47 +avachissent avachir ver 0.33 2.23 0.01 0 ind:pre:3p; +avachit avachir ver 0.33 2.23 0 0.47 ind:pre:3s;ind:pas:3s; +avaient avoir aux 18559.22 12800.81 54.37 524.26 ind:imp:3p; +avais avoir aux 18559.22 12800.81 412.04 566.76 ind:imp:2s; +avait avoir aux 18559.22 12800.81 395.71 3116.42 ind:imp:3s; +aval aval nom m s 2.08 3.99 2.08 3.99 +avala avaler ver 35.89 65.27 0.23 7.97 ind:pas:3s; +avalage avalage nom m s 0.03 0.07 0.03 0.07 +avalai avaler ver 35.89 65.27 0 1.69 ind:pas:1s; +avalaient avaler ver 35.89 65.27 0.16 0.61 ind:imp:3p; +avalais avaler ver 35.89 65.27 0.03 0.74 ind:imp:1s; +avalait avaler ver 35.89 65.27 0.46 5.95 ind:imp:3s; +avalanche avalanche nom f s 2.75 5.68 1.89 4.86 +avalanches avalanche nom f p 2.75 5.68 0.86 0.81 +avalant avaler ver 35.89 65.27 0.28 2.84 par:pre; +avale avaler ver 35.89 65.27 8.02 9.26 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avalement avalement nom m s 0 0.14 0 0.14 +avalent avaler ver 35.89 65.27 0.62 1.15 ind:pre:3p; +avaler avaler ver 35.89 65.27 11.95 19.39 inf; +avalera avaler ver 35.89 65.27 0.54 0.07 ind:fut:3s; +avalerai avaler ver 35.89 65.27 0.35 0.2 ind:fut:1s; +avaleraient avaler ver 35.89 65.27 0.01 0 cnd:pre:3p; +avalerais avaler ver 35.89 65.27 0.39 0.2 cnd:pre:1s; +avalerait avaler ver 35.89 65.27 0.19 0.41 cnd:pre:3s; +avaleras avaler ver 35.89 65.27 0.03 0.07 ind:fut:2s; +avaleriez avaler ver 35.89 65.27 0.02 0.07 cnd:pre:2p; +avaleront avaler ver 35.89 65.27 0.36 0.14 ind:fut:3p; +avales avaler ver 35.89 65.27 1.11 0.14 ind:pre:2s; +avaleur avaleur nom m s 0.68 0.61 0.17 0.41 +avaleurs avaleur nom m p 0.68 0.61 0.03 0.2 +avaleuse avaleur nom f s 0.68 0.61 0.47 0 +avalez avaler ver 35.89 65.27 1.73 0.14 imp:pre:2p;ind:pre:2p; +avaliez avaler ver 35.89 65.27 0.01 0 ind:imp:2p; +avaliser avaliser ver 0.09 0.14 0.08 0.14 inf; +avaliseur avaliseur nom m s 0.03 0 0.03 0 +avalisés avaliser ver m p 0.09 0.14 0.01 0 par:pas; +avaloires avaloire nom f p 0 0.07 0 0.07 +avalons avaler ver 35.89 65.27 0.03 0.14 imp:pre:1p;ind:pre:1p; +avalâmes avaler ver 35.89 65.27 0 0.07 ind:pas:1p; +avalât avaler ver 35.89 65.27 0 0.07 sub:imp:3s; +avalèrent avaler ver 35.89 65.27 0.01 0.07 ind:pas:3p; +avalé avaler ver m s 35.89 65.27 7.55 9.46 par:pas; +avalée avaler ver f s 35.89 65.27 0.71 2.77 par:pas; +avalées avaler ver f p 35.89 65.27 0.38 0.74 par:pas; +avalés avaler ver m p 35.89 65.27 0.74 0.95 par:pas; +avance avance nom f s 69.25 82.3 65.68 77.64 +avancement avancement nom m s 3.34 3.18 3.3 2.97 +avancements avancement nom m p 3.34 3.18 0.04 0.2 +avancent avancer ver 95.62 195 4.63 7.5 ind:pre:3p; +avancer avancer ver 95.62 195 22.65 30.41 inf; +avancera avancer ver 95.62 195 1.37 0.74 ind:fut:3s; +avancerai avancer ver 95.62 195 0.29 0.2 ind:fut:1s; +avancerais avancer ver 95.62 195 0.06 0.07 cnd:pre:1s; +avancerait avancer ver 95.62 195 0.84 1.15 cnd:pre:3s; +avancerez avancer ver 95.62 195 0.04 0 ind:fut:2p; +avancerons avancer ver 95.62 195 0.24 0 ind:fut:1p; +avanceront avancer ver 95.62 195 0.1 0.41 ind:fut:3p; +avances avance nom f p 69.25 82.3 3.57 4.66 +avancez avancer ver 95.62 195 19.95 0.54 imp:pre:2p;ind:pre:2p; +avanciez avancer ver 95.62 195 0.06 0.14 ind:imp:2p; +avancions avancer ver 95.62 195 0.17 2.43 ind:imp:1p; +avancèrent avancer ver 95.62 195 0.04 2.43 ind:pas:3p; +avancé avancer ver m s 95.62 195 6.08 12.23 par:pas; +avancée avancé adj f s 6.71 11.15 2.19 3.92 +avancées avancée nom f p 2.25 4.39 0.7 0.81 +avancés avancé adj m p 6.71 11.15 1.08 1.28 +avanie avanie nom f s 0.04 1.42 0.04 0.27 +avanies avanie nom f p 0.04 1.42 0 1.15 +avant avant pre 529.51 574.32 529.51 574.32 +avant_avant_dernier avant_avant_dernier nom m s 0 0.07 0 0.07 +avant_bec avant_bec nom m s 0.01 0 0.01 0 +avant_bras avant_bras nom m 0.84 12.7 0.84 12.7 +avant_centre avant_centre nom m s 0.28 0.2 0.28 0.2 +avant_clou avant_clou nom m p 0 0.07 0 0.07 +avant_corps avant_corps nom m 0 0.07 0 0.07 +avant_coureur avant_coureur adj m s 0.32 1.62 0.02 0.74 +avant_coureur avant_coureur adj m p 0.32 1.62 0.29 0.88 +avant_courrier avant_courrier adj f s 0 0.07 0 0.07 +avant_courrier avant_courrier nom f p 0 0.07 0 0.07 +avant_cour avant_cour nom f p 0 0.07 0 0.07 +avant_dernier avant_dernier adj m s 0.45 1.96 0.11 0.88 +avant_dernier avant_dernier adj f s 0.45 1.96 0.34 1.08 +avant_dîner avant_dîner nom m 0 0.07 0 0.07 +avant_garde avant_garde nom f s 1.52 7.91 1.52 7.09 +avant_garde avant_garde nom f p 1.52 7.91 0 0.81 +avant_gardiste avant_gardiste adj s 0.23 0.2 0.21 0.14 +avant_gardiste avant_gardiste adj m p 0.23 0.2 0.03 0.07 +avant_gauche avant_gauche adj 0.1 0 0.1 0 +avant_goût avant_goût nom m s 1.25 1.62 1.25 1.62 +avant_guerre avant_guerre nom s 0.65 7.16 0.65 7.16 +avant_hier avant_hier adv 6.69 8.78 6.69 8.78 +avant_mont avant_mont nom m p 0.01 0 0.01 0 +avant_papier avant_papier nom m s 0 0.2 0 0.2 +avant_plan avant_plan nom m s 0.02 0.07 0.02 0.07 +avant_port avant_port nom m s 0 0.07 0 0.07 +avant_poste avant_poste nom m s 2.15 3.72 1.52 0.27 +avant_poste avant_poste nom m p 2.15 3.72 0.62 3.45 +avant_première avant_première nom f s 0.5 0.41 0.45 0.41 +avant_première avant_première nom f p 0.5 0.41 0.05 0 +avant_printemps avant_printemps nom m 0 0.07 0 0.07 +avant_projet avant_projet nom m s 0.04 0 0.04 0 +avant_propos avant_propos nom m 0.05 0.41 0.05 0.41 +avant_scène avant_scène nom f s 0.73 0.88 0.73 0.68 +avant_scène avant_scène nom f p 0.73 0.88 0 0.2 +avant_toit avant_toit nom m s 0.03 0.27 0.01 0.27 +avant_toit avant_toit nom m p 0.03 0.27 0.02 0 +avant_train avant_train nom m s 0.02 0.34 0.01 0.2 +avant_train avant_train nom m p 0.02 0.34 0.01 0.14 +avant_trou avant_trou nom m s 0.01 0 0.01 0 +avant_veille avant_veille nom f s 0.01 3.65 0.01 3.65 +avantage avantage nom m s 24.63 32.16 16.95 21.28 +avantageaient avantager ver 0.95 2.09 0.01 0 ind:imp:3p; +avantageais avantager ver 0.95 2.09 0 0.07 ind:imp:1s; +avantageait avantager ver 0.95 2.09 0.03 0.2 ind:imp:3s; +avantageant avantager ver 0.95 2.09 0 0.07 par:pre; +avantagent avantager ver 0.95 2.09 0.03 0 ind:pre:3p; +avantager avantager ver 0.95 2.09 0.07 0.14 inf; +avantagera avantager ver 0.95 2.09 0.04 0.07 ind:fut:3s; +avantages avantage nom m p 24.63 32.16 7.68 10.88 +avantageuse avantageux adj f s 1.36 5.07 0.36 1.01 +avantageusement avantageusement adv 0.16 1.42 0.16 1.42 +avantageuses avantageux adj f p 1.36 5.07 0.04 0.54 +avantageux avantageux adj m 1.36 5.07 0.95 3.51 +avantagé avantager ver m s 0.95 2.09 0.12 0.47 par:pas; +avantagée avantager ver f s 0.95 2.09 0.05 0.07 par:pas; +avantagés avantager ver m p 0.95 2.09 0.01 0.2 par:pas; +avants avant nom_sup m p 8.05 21.35 0.11 0.14 +avança avancer ver 95.62 195 0.48 27.97 ind:pas:3s; +avançai avancer ver 95.62 195 0.14 2.16 ind:pas:1s; +avançaient avancer ver 95.62 195 0.27 9.05 ind:imp:3p; +avançais avancer ver 95.62 195 0.47 4.19 ind:imp:1s;ind:imp:2s; +avançait avancer ver 95.62 195 1.7 34.32 ind:imp:3s; +avançant avancer ver 95.62 195 0.5 10.41 par:pre; +avançons avancer ver 95.62 195 1.54 1.82 imp:pre:1p;ind:pre:1p; +avançâmes avancer ver 95.62 195 0 0.2 ind:pas:1p; +avançât avancer ver 95.62 195 0 0.27 sub:imp:3s; +avare avare adj s 2.69 7.09 2.26 5.95 +avarement avarement adv 0 0.2 0 0.2 +avares avare adj p 2.69 7.09 0.43 1.15 +avarice avarice nom f s 1.18 3.24 1.18 3.18 +avarices avarice nom f p 1.18 3.24 0 0.07 +avaricieuse avaricieux adj f s 0 0.27 0 0.14 +avaricieusement avaricieusement adv 0 0.14 0 0.14 +avaricieux avaricieux nom m 0.01 0.07 0.01 0.07 +avarie avarie nom f s 1.19 1.08 0.25 0.41 +avarient avarier ver 0.23 0.27 0 0.07 ind:pre:3p; +avaries avarie nom f p 1.19 1.08 0.94 0.68 +avarié avarié adj m s 0.92 1.69 0.2 0.54 +avariée avarié adj f s 0.92 1.69 0.35 0.41 +avariées avarié adj f p 0.92 1.69 0.16 0.27 +avariés avarié adj m p 0.92 1.69 0.21 0.47 +avaro avaro nom m s 0 0.41 0 0.2 +avaros avaro nom m p 0 0.41 0 0.2 +avatar avatar nom m s 2.55 4.93 2.41 2.91 +avatars avatar nom m p 2.55 4.93 0.14 2.03 +ave ave nom m 3.75 2.36 3.75 2.36 +avec avec pre 3704.89 4000.41 3704.89 4000.41 +avelines aveline nom f p 0 0.07 0 0.07 +avenant avenant adj m s 0.78 2.84 0.52 0.88 +avenante avenant adj f s 0.78 2.84 0.26 1.15 +avenantes avenant adj f p 0.78 2.84 0 0.61 +avenants avenant nom m p 0.27 0.88 0.01 0 +avenir avenir nom m s 72.61 113.72 72.47 113.18 +avenirs avenir nom m p 72.61 113.72 0.14 0.54 +avent avent nom m s 0.06 0.47 0.06 0.47 +aventura aventurer ver 2.63 12.57 0.14 0.54 ind:pas:3s; +aventurai aventurer ver 2.63 12.57 0.01 0.27 ind:pas:1s; +aventuraient aventurer ver 2.63 12.57 0.03 0.54 ind:imp:3p; +aventurais aventurer ver 2.63 12.57 0 0.07 ind:imp:1s; +aventurait aventurer ver 2.63 12.57 0.04 1.01 ind:imp:3s; +aventurant aventurer ver 2.63 12.57 0.01 0.54 par:pre; +aventure aventure nom f s 29.66 84.86 22.54 54.86 +aventurent aventurer ver 2.63 12.57 0.09 0.54 ind:pre:3p; +aventurer aventurer ver 2.63 12.57 0.6 3.99 inf; +aventurerai aventurer ver 2.63 12.57 0 0.07 ind:fut:1s; +aventurerais aventurer ver 2.63 12.57 0.06 0 cnd:pre:1s; +aventurerait aventurer ver 2.63 12.57 0.03 0.07 cnd:pre:3s; +aventures aventure nom f p 29.66 84.86 7.13 30 +aventureuse aventureux adj f s 0.95 3.65 0.11 1.49 +aventureuses aventureux adj f p 0.95 3.65 0.15 0.47 +aventureux aventureux adj m 0.95 3.65 0.69 1.69 +aventurez aventurer ver 2.63 12.57 0.07 0 imp:pre:2p;ind:pre:2p; +aventurier aventurier nom m s 2.51 7.5 0.92 3.72 +aventuriers aventurier nom m p 2.51 7.5 1.05 2.43 +aventurines aventurine nom f p 0 0.07 0 0.07 +aventurions aventurer ver 2.63 12.57 0.01 0.14 ind:imp:1p; +aventurière aventurier nom f s 2.51 7.5 0.39 0.95 +aventurières aventurier nom f p 2.51 7.5 0.16 0.41 +aventurons aventurer ver 2.63 12.57 0.04 0.14 imp:pre:1p;ind:pre:1p; +aventurât aventurer ver 2.63 12.57 0 0.14 sub:imp:3s; +aventurèrent aventurer ver 2.63 12.57 0 0.07 ind:pas:3p; +aventuré aventurer ver m s 2.63 12.57 0.23 1.49 par:pas; +aventurée aventurer ver f s 2.63 12.57 0.22 0.68 par:pas; +aventurées aventurer ver f p 2.63 12.57 0 0.07 par:pas; +aventurés aventurer ver m p 2.63 12.57 0.14 0.54 par:pas; +avenu avenu adj m s 0.07 1.42 0.05 0.41 +avenue avenue nom f s 8.7 47.7 8.19 40.81 +avenues avenue nom f p 8.7 47.7 0.52 6.89 +avenus avenu adj m p 0.07 1.42 0.03 0.27 +avers avers nom m 0 0.14 0 0.14 +averse averse nom f s 1.77 11.96 1.15 9.8 +averses averse nom f p 1.77 11.96 0.63 2.16 +aversion aversion nom f s 0.97 2.64 0.97 2.57 +aversions aversion nom f p 0.97 2.64 0 0.07 +averti avertir ver m s 30.8 37.7 6.26 9.73 par:pas; +avertie avertir ver f s 30.8 37.7 2.08 2.23 par:pas; +averties avertir ver f p 30.8 37.7 0.1 0.41 par:pas; +avertir avertir ver 30.8 37.7 13.49 11.01 inf; +avertira avertir ver 30.8 37.7 0.43 0 ind:fut:3s; +avertirai avertir ver 30.8 37.7 0.59 0.2 ind:fut:1s; +avertirait avertir ver 30.8 37.7 0.01 0.47 cnd:pre:3s; +avertiras avertir ver 30.8 37.7 0.03 0 ind:fut:2s; +avertirent avertir ver 30.8 37.7 0.1 0.34 ind:pas:3p; +avertirez avertir ver 30.8 37.7 0.01 0.07 ind:fut:2p; +avertis avertir ver m p 30.8 37.7 4.75 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +avertissaient avertir ver 30.8 37.7 0.01 0.27 ind:imp:3p; +avertissais avertir ver 30.8 37.7 0.03 0.27 ind:imp:1s;ind:imp:2s; +avertissait avertir ver 30.8 37.7 0.12 2.03 ind:imp:3s; +avertissant avertir ver 30.8 37.7 0.05 0.54 par:pre; +avertisse avertir ver 30.8 37.7 0.3 0.68 sub:pre:1s;sub:pre:3s; +avertissement avertissement nom m s 9.6 9.53 8.68 7.09 +avertissements avertissement nom m p 9.6 9.53 0.92 2.43 +avertissent avertir ver 30.8 37.7 0.2 0.41 ind:pre:3p; +avertisseur avertisseur nom m s 0.15 1.89 0.14 1.08 +avertisseurs avertisseur nom m p 0.15 1.89 0.01 0.81 +avertisseuses avertisseur adj f p 0.04 0.34 0 0.07 +avertissez avertir ver 30.8 37.7 1.52 0.2 imp:pre:2p;ind:pre:2p; +avertissiez avertir ver 30.8 37.7 0.03 0 ind:imp:2p; +avertissons avertir ver 30.8 37.7 0.09 0.14 imp:pre:1p;ind:pre:1p; +avertit avertir ver 30.8 37.7 0.61 5.07 ind:pre:3s;ind:pas:3s; +avertît avertir ver 30.8 37.7 0 0.14 sub:imp:3s; +aveu aveu nom m s 11.15 21.55 5.86 13.45 +aveugla aveugler ver 6.5 15.47 0 0.47 ind:pas:3s; +aveuglaient aveugler ver 6.5 15.47 0.03 0.74 ind:imp:3p; +aveuglais aveugler ver 6.5 15.47 0 0.07 ind:imp:1s; +aveuglait aveugler ver 6.5 15.47 0.14 1.22 ind:imp:3s; +aveuglant aveuglant adj m s 1 6.15 0.35 2.16 +aveuglante aveuglant adj f s 1 6.15 0.61 3.11 +aveuglantes aveuglant adj f p 1 6.15 0.04 0.34 +aveuglants aveuglant adj m p 1 6.15 0.01 0.54 +aveugle aveugle adj s 38.53 38.51 33.85 30.2 +aveugle_né aveugle_né nom m s 0 0.14 0 0.07 +aveugle_né aveugle_né nom f s 0 0.14 0 0.07 +aveuglement aveuglement nom m s 1.79 4.46 1.77 4.39 +aveuglements aveuglement nom m p 1.79 4.46 0.01 0.07 +aveuglent aveugler ver 6.5 15.47 0.21 0.47 ind:pre:3p; +aveugler aveugler ver 6.5 15.47 1.54 1.96 inf; +aveuglera aveugler ver 6.5 15.47 0.3 0 ind:fut:3s; +aveuglerait aveugler ver 6.5 15.47 0.04 0.07 cnd:pre:3s; +aveugles aveugle adj p 38.53 38.51 4.67 8.31 +aveuglez aveugler ver 6.5 15.47 0.03 0 imp:pre:2p; +aveuglons aveugler ver 6.5 15.47 0.01 0 imp:pre:1p; +aveuglât aveugler ver 6.5 15.47 0 0.07 sub:imp:3s; +aveuglèrent aveugler ver 6.5 15.47 0 0.07 ind:pas:3p; +aveuglé aveugler ver m s 6.5 15.47 1.32 4.05 par:pas; +aveuglée aveugler ver f s 6.5 15.47 0.45 1.42 par:pas; +aveuglées aveugler ver f p 6.5 15.47 0.01 0.14 par:pas; +aveuglément aveuglément adv 1.3 3.31 1.3 3.31 +aveuglés aveugler ver m p 6.5 15.47 0.31 1.96 par:pas; +aveuli aveulir ver m s 0 0.07 0 0.07 par:pas; +aveulissante aveulissant adj f s 0 0.07 0 0.07 +aveux aveu nom m p 11.15 21.55 5.29 8.11 +avez avoir aux 18559.22 12800.81 1122.37 206.82 ind:pre:2p; +aviaire aviaire adj s 0.37 0 0.37 0 +aviateur aviateur nom m s 3.09 8.85 1.23 4.05 +aviateurs aviateur nom m p 3.09 8.85 1.68 4.73 +aviation aviation nom f s 5.18 13.72 5.17 13.38 +aviations aviation nom f p 5.18 13.72 0.01 0.34 +aviatrice aviateur nom f s 3.09 8.85 0.16 0 +aviatrices aviateur nom f p 3.09 8.85 0.02 0.07 +avicole avicole adj f s 0.01 0 0.01 0 +aviculture aviculture nom f s 0.1 0 0.1 0 +avide avide adj s 3.52 16.22 1.94 10.34 +avidement avidement adv 0.38 6.08 0.38 6.08 +avides avide adj p 3.52 16.22 1.57 5.88 +avidité avidité nom f s 1.05 7.97 1.05 7.91 +avidités avidité nom f p 1.05 7.97 0 0.07 +aviez avoir aux 18559.22 12800.81 50.3 16.35 ind:imp:2p; +avignonnais avignonnais nom m 0 0.07 0 0.07 +avignonnaise avignonnais adj f s 0 0.07 0 0.07 +avili avilir ver m s 0.69 2.64 0.03 0.41 par:pas; +avilie avilir ver f s 0.69 2.64 0.2 0.07 par:pas; +avilies avilir ver f p 0.69 2.64 0.01 0.07 par:pas; +avilir avilir ver 0.69 2.64 0.27 1.22 inf; +avilis avilir ver m p 0.69 2.64 0.04 0.27 ind:pre:1s;ind:pre:2s;par:pas; +avilissait avilir ver 0.69 2.64 0.01 0.14 ind:imp:3s; +avilissant avilissant adj m s 0.62 0.88 0.39 0.41 +avilissante avilissant adj f s 0.62 0.88 0.1 0.2 +avilissantes avilissant adj f p 0.62 0.88 0.1 0.07 +avilissants avilissant adj m p 0.62 0.88 0.03 0.2 +avilissement avilissement nom m s 0.16 0.34 0.16 0.34 +avilissent avilir ver 0.69 2.64 0.01 0.07 ind:pre:3p; +avilit avilir ver 0.69 2.64 0.09 0.34 ind:pre:3s;ind:pas:3s; +aviné aviné adj m s 0.05 1.89 0.01 0.54 +avinée aviné adj f s 0.05 1.89 0.01 0.68 +avinées aviné adj f p 0.05 1.89 0 0.2 +avinés aviné adj m p 0.05 1.89 0.03 0.47 +avion avion nom m s 128.35 78.04 105.54 46.82 +avion_cargo avion_cargo nom m s 0.2 0.14 0.2 0 +avion_citerne avion_citerne nom m s 0.03 0 0.03 0 +avion_suicide avion_suicide nom m s 0.01 0.07 0.01 0.07 +avion_école avion_école nom m s 0.01 0 0.01 0 +avionique avionique nom f s 0.13 0 0.13 0 +avionnettes avionnette nom f p 0 0.07 0 0.07 +avionneurs avionneur nom m p 0.01 0 0.01 0 +avions avoir aux 18559.22 12800.81 16.42 81.01 ind:imp:1p; +avion_cargo avion_cargo nom m p 0.2 0.14 0 0.14 +avions_espions avions_espions nom m p 0.01 0 0.01 0 +aviron aviron nom m s 1.73 2.36 1.35 0.95 +avirons aviron nom m p 1.73 2.36 0.38 1.42 +avis avis nom m p 139.22 65.14 139.22 65.14 +avisa aviser ver 9.77 27.5 0.14 4.66 ind:pas:3s; +avisai aviser ver 9.77 27.5 0.01 1.76 ind:pas:1s; +avisaient aviser ver 9.77 27.5 0.01 0.2 ind:imp:3p; +avisais aviser ver 9.77 27.5 0.01 0.2 ind:imp:1s; +avisait aviser ver 9.77 27.5 0.1 2.09 ind:imp:3s; +avisant aviser ver 9.77 27.5 0.02 2.5 par:pre; +avise aviser ver 9.77 27.5 3.52 4.8 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avisent aviser ver 9.77 27.5 0.02 0.07 ind:pre:3p; +aviser aviser ver 9.77 27.5 0.65 3.18 inf; +avisera aviser ver 9.77 27.5 0.81 0.54 ind:fut:3s; +aviserai aviser ver 9.77 27.5 0.44 0.2 ind:fut:1s; +aviseraient aviser ver 9.77 27.5 0 0.07 cnd:pre:3p; +aviserais aviser ver 9.77 27.5 0.02 0.2 cnd:pre:1s; +aviserait aviser ver 9.77 27.5 0.01 0.68 cnd:pre:3s; +aviseras aviser ver 9.77 27.5 0 0.07 ind:fut:2s; +aviserons aviser ver 9.77 27.5 0.65 0.54 ind:fut:1p; +aviseront aviser ver 9.77 27.5 0.05 0 ind:fut:3p; +avises aviser ver 9.77 27.5 0.32 0.2 ind:pre:2s; +avisez aviser ver 9.77 27.5 0.89 0.14 imp:pre:2p;ind:pre:2p; +avisions aviser ver 9.77 27.5 0 0.07 ind:imp:1p; +aviso aviso nom m s 0.02 2.23 0.02 1.08 +avisos aviso nom m p 0.02 2.23 0 1.15 +avisât aviser ver 9.77 27.5 0.27 0.34 sub:imp:3s; +avisèrent aviser ver 9.77 27.5 0.12 0.14 ind:pas:3p; +avisé aviser ver m s 9.77 27.5 1.21 3.99 par:pas; +avisée avisé adj f s 1.76 2.36 0.32 0.54 +avisées avisé adj f p 1.76 2.36 0.01 0 +avisés avisé adj m p 1.76 2.36 0.56 0.47 +avitailler avitailler ver 0.01 0 0.01 0 inf; +avitaminose avitaminose nom f s 0 0.07 0 0.07 +aviva aviver ver 0.19 4.26 0.01 0.2 ind:pas:3s; +avivaient aviver ver 0.19 4.26 0 0.07 ind:imp:3p; +avivait aviver ver 0.19 4.26 0 0.74 ind:imp:3s; +avivant aviver ver 0.19 4.26 0 0.14 par:pre; +avive aviver ver 0.19 4.26 0 0.61 ind:pre:3s; +avivent aviver ver 0.19 4.26 0.11 0.27 ind:pre:3p; +aviver aviver ver 0.19 4.26 0.03 0.54 inf; +avivons aviver ver 0.19 4.26 0.01 0.07 imp:pre:1p;ind:pre:1p; +avivât aviver ver 0.19 4.26 0 0.07 sub:imp:3s; +avivèrent aviver ver 0.19 4.26 0 0.07 ind:pas:3p; +avivé aviver ver m s 0.19 4.26 0.02 0.47 par:pas; +avivée aviver ver f s 0.19 4.26 0 0.68 par:pas; +avivées aviver ver f p 0.19 4.26 0 0.27 par:pas; +avivés aviver ver m p 0.19 4.26 0 0.07 par:pas; +avocaillon avocaillon nom m s 0.16 0 0.16 0 +avocasseries avocasserie nom f p 0 0.07 0 0.07 +avocat avocat nom m s 112.69 37.64 89.28 24.32 +avocat_conseil avocat_conseil nom m s 0.08 0 0.08 0 +avocate avocat nom f s 112.69 37.64 7.56 1.55 +avocates avocat nom f p 112.69 37.64 0.1 0 +avocatier avocatier nom m s 0.04 0 0.04 0 +avocats avocat nom m p 112.69 37.64 15.76 11.76 +avocette avocette nom f s 0.01 0.14 0.01 0.14 +avoient avoyer ver 0 0.14 0 0.07 ind:pre:3p; +avoinaient avoiner ver 0 0.34 0 0.07 ind:imp:3p; +avoine avoine nom f s 1.54 6.96 1.52 6.35 +avoiner avoiner ver 0 0.34 0 0.27 inf; +avoines avoine nom f p 1.54 6.96 0.01 0.61 +avoir avoir aux 18559.22 12800.81 674.24 649.26 inf; +avoirs avoir nom_sup m p 3.13 3.31 0.41 0.54 +avoisinaient avoisiner ver 0.26 1.49 0 0.07 ind:imp:3p; +avoisinait avoisiner ver 0.26 1.49 0.02 0.47 ind:imp:3s; +avoisinant avoisinant adj m s 0.43 1.89 0.05 0.07 +avoisinante avoisinant adj f s 0.43 1.89 0.16 0.14 +avoisinantes avoisinant adj f p 0.43 1.89 0.18 1.15 +avoisinants avoisinant adj m p 0.43 1.89 0.05 0.54 +avoisine avoisiner ver 0.26 1.49 0.2 0.2 ind:pre:3s; +avoisinent avoisiner ver 0.26 1.49 0 0.27 ind:pre:3p; +avoisiner avoisiner ver 0.26 1.49 0 0.14 inf; +avoisinerait avoisiner ver 0.26 1.49 0 0.07 cnd:pre:3s; +avons avoir aux 18559.22 12800.81 291.71 190 ind:pre:1p; +avorta avorter ver 5.43 4.32 0.01 0.07 ind:pas:3s; +avortait avorter ver 5.43 4.32 0 0.14 ind:imp:3s; +avortant avorter ver 5.43 4.32 0.01 0 par:pre; +avorte avorter ver 5.43 4.32 0.61 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avortement avortement nom m s 5.24 2.7 4.37 2.16 +avortements avortement nom m p 5.24 2.7 0.87 0.54 +avortent avorter ver 5.43 4.32 0 0.14 ind:pre:3p; +avorter avorter ver 5.43 4.32 3.65 3.11 inf; +avorterai avorter ver 5.43 4.32 0 0.07 ind:fut:1s; +avorterait avorter ver 5.43 4.32 0 0.14 cnd:pre:3s; +avorteriez avorter ver 5.43 4.32 0 0.07 cnd:pre:2p; +avorteur avorteur nom m s 0.37 0.68 0.01 0.07 +avorteurs avorteur nom m p 0.37 0.68 0.05 0.07 +avorteuse avorteur nom f s 0.37 0.68 0.31 0.34 +avorteuses avorteur nom f p 0.37 0.68 0 0.2 +avortez avorter ver 5.43 4.32 0.05 0 imp:pre:2p;ind:pre:2p; +avorton avorton nom m s 1.44 2.3 1.35 1.42 +avortons avorton nom m p 1.44 2.3 0.09 0.88 +avorté avorter ver m s 5.43 4.32 1.01 0.07 par:pas; +avortée avorté adj f s 0.4 1.49 0.08 0.47 +avortées avorter ver f p 5.43 4.32 0.02 0.07 par:pas; +avortés avorté adj m p 0.4 1.49 0.2 0.14 +avoua avouer ver 61.56 96.22 0.33 7.5 ind:pas:3s; +avouable avouable adj s 0.02 1.08 0.01 0.54 +avouables avouable adj p 0.02 1.08 0.01 0.54 +avouai avouer ver 61.56 96.22 0 1.22 ind:pas:1s; +avouaient avouer ver 61.56 96.22 0 0.68 ind:imp:3p; +avouais avouer ver 61.56 96.22 0.22 0.74 ind:imp:1s;ind:imp:2s; +avouait avouer ver 61.56 96.22 0.31 5.47 ind:imp:3s; +avouant avouer ver 61.56 96.22 0.35 1.76 par:pre; +avouas avouer ver 61.56 96.22 0 0.07 ind:pas:2s; +avoue avouer ver 61.56 96.22 24.48 24.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avouent avouer ver 61.56 96.22 0.35 1.22 ind:pre:3p; +avouer avouer ver 61.56 96.22 18.28 33.72 imp:pre:2p;inf; +avouera avouer ver 61.56 96.22 0.26 0.41 ind:fut:3s; +avouerai avouer ver 61.56 96.22 0.71 1.08 ind:fut:1s; +avoueraient avouer ver 61.56 96.22 0.14 0.2 cnd:pre:3p; +avouerais avouer ver 61.56 96.22 0.17 0.34 cnd:pre:1s;cnd:pre:2s; +avouerait avouer ver 61.56 96.22 0.41 0.61 cnd:pre:3s; +avoueras avouer ver 61.56 96.22 0.07 0.95 ind:fut:2s; +avouerez avouer ver 61.56 96.22 0.08 0.74 ind:fut:2p; +avoueriez avouer ver 61.56 96.22 0 0.07 cnd:pre:2p; +avouerions avouer ver 61.56 96.22 0 0.07 cnd:pre:1p; +avoueront avouer ver 61.56 96.22 0.01 0.07 ind:fut:3p; +avoues avouer ver 61.56 96.22 1.23 0.68 ind:pre:2s; +avouez avouer ver 61.56 96.22 4.07 3.72 imp:pre:2p;ind:pre:2p; +avouiez avouer ver 61.56 96.22 0.03 0.07 ind:imp:2p; +avouions avouer ver 61.56 96.22 0 0.07 ind:imp:1p; +avouons avouer ver 61.56 96.22 0.39 1.42 imp:pre:1p;ind:pre:1p; +avouâmes avouer ver 61.56 96.22 0 0.07 ind:pas:1p; +avouât avouer ver 61.56 96.22 0 0.2 sub:imp:3s; +avouèrent avouer ver 61.56 96.22 0.1 0.27 ind:pas:3p; +avoué avouer ver m s 61.56 96.22 9.5 7.23 par:pas; +avouée avoué adj f s 0.24 1.35 0.1 0.14 +avouées avouer ver f p 61.56 96.22 0.04 0.14 par:pas; +avoués avouer ver m p 61.56 96.22 0.02 0.14 par:pas; +avoyer avoyer ver 0 0.14 0 0.07 inf; +avril avril nom m 11.23 32.03 11.23 32.03 +avrillée avrillée nom f s 0 0.07 0 0.07 +avulsion avulsion nom f s 0.03 0 0.03 0 +avunculaire avunculaire adj s 0.01 0.14 0.01 0.14 +avunculat avunculat nom m s 0 0.07 0 0.07 +avènement avènement nom m s 0.53 3.92 0.53 3.92 +avère avérer ver 9.26 6.96 4.59 0.68 ind:pre:3s;sub:pre:3s; +avèrent avérer ver 9.26 6.96 0.26 0.2 ind:pre:3p; +avé avé nom m 0.11 0.2 0.11 0.2 +avéra avérer ver 9.26 6.96 0.25 1.55 ind:pas:3s; +avérai avérer ver 9.26 6.96 0 0.07 ind:pas:1s; +avéraient avérer ver 9.26 6.96 0.12 0.61 ind:imp:3p; +avérait avérer ver 9.26 6.96 0.56 2.03 ind:imp:3s; +avérant avérer ver 9.26 6.96 0 0.27 par:pre; +avérer avérer ver 9.26 6.96 0.88 0.27 inf; +avérera avérer ver 9.26 6.96 0.1 0 ind:fut:3s; +avéreraient avérer ver 9.26 6.96 0 0.14 cnd:pre:3p; +avérerait avérer ver 9.26 6.96 0.08 0 cnd:pre:3s; +avérât avérer ver 9.26 6.96 0 0.07 sub:imp:3s; +avérèrent avérer ver 9.26 6.96 0.04 0.14 ind:pas:3p; +avéré avérer ver m s 9.26 6.96 1.64 0.61 par:pas; +avérée avérer ver f s 9.26 6.96 0.37 0.27 par:pas; +avérées avérer ver f p 9.26 6.96 0.18 0 par:pas; +avérés avérer ver m p 9.26 6.96 0.19 0.07 par:pas; +awacs awacs nom m 0.12 0 0.12 0 +axa axer ver 0.61 0.88 0 0.07 ind:pas:3s; +axe axe nom m s 3.05 10.88 2.9 9.53 +axel axel nom m s 0.06 0 0.05 0 +axels axel nom m p 0.06 0 0.01 0 +axent axer ver 0.61 0.88 0 0.07 ind:pre:3p; +axer axer ver 0.61 0.88 0.02 0 inf; +axes axe nom m p 3.05 10.88 0.16 1.35 +axial axial adj m s 0.06 0.2 0.01 0.2 +axiale axial adj f s 0.06 0.2 0.04 0 +axillaire axillaire adj s 0.05 0 0.05 0 +axiomatisation axiomatisation nom f s 0 0.07 0 0.07 +axiome axiome nom m s 0.11 0.61 0.1 0.41 +axiomes axiome nom m p 0.11 0.61 0.01 0.2 +axis axis nom m 3.87 0 3.87 0 +axolotl axolotl nom m s 0.02 0.07 0.02 0 +axolotls axolotl nom m p 0.02 0.07 0 0.07 +axonge axonge nom f s 0 0.07 0 0.07 +axé axer ver m s 0.61 0.88 0.19 0.2 par:pas; +axée axer ver f s 0.61 0.88 0.08 0.47 par:pas; +axées axer ver f p 0.61 0.88 0.13 0 par:pas; +axés axer ver m p 0.61 0.88 0.05 0 par:pas; +aya aya nom f s 0.03 0 0.03 0 +ayans ayan nom m p 0 0.07 0 0.07 +ayant avoir aux 18559.22 12800.81 21.68 147.84 par:pre; +ayants_droit ayants_droit nom m p 0.01 0.14 0.01 0.14 +ayatollah ayatollah nom m s 0.53 0.27 0.5 0.14 +ayatollahs ayatollah nom m p 0.53 0.27 0.03 0.14 +aye_aye aye_aye nom m s 0.01 0 0.01 0 +ayez avoir aux 18559.22 12800.81 20.8 5.34 sub:pre:2p; +ayons avoir aux 18559.22 12800.81 4.36 4.39 sub:pre:1p; +ayuntamiento ayuntamiento nom m s 0 0.07 0 0.07 +azalée azalée nom f s 0.13 1.22 0.05 0.2 +azalées azalée nom f p 0.13 1.22 0.08 1.01 +azerbaïdjanais azerbaïdjanais adj m 0 0.07 0 0.07 +azerbaïdjanais azerbaïdjanais nom m 0 0.07 0 0.07 +azimut azimut nom m s 0.78 1.69 0.26 0.07 +azimutal azimutal adj m s 0.01 0 0.01 0 +azimuts azimut nom m p 0.78 1.69 0.52 1.62 +azimuté azimuter ver m s 0.03 0.2 0.03 0.14 par:pas; +azimutée azimuter ver f s 0.03 0.2 0 0.07 par:pas; +azoospermie azoospermie nom f s 0.01 0 0.01 0 +azote azote nom m s 1.05 0.14 1.05 0.14 +azoture azoture nom m s 0.01 0 0.01 0 +azoïque azoïque adj m s 0.01 0 0.01 0 +aztèque aztèque adj s 0.6 0.74 0.51 0.27 +aztèques aztèque adj p 0.6 0.74 0.09 0.47 +azulejo azulejo nom m s 0.1 0.54 0.1 0 +azulejos azulejo nom m p 0.1 0.54 0 0.54 +azur azur nom m s 2.98 9.53 2.98 9.39 +azurs azur nom m p 2.98 9.53 0 0.14 +azuré azuré adj m s 0.14 0.68 0.13 0 +azurée azuré adj f s 0.14 0.68 0.01 0.27 +azurées azuré adj f p 0.14 0.68 0 0.34 +azurés azuré adj m p 0.14 0.68 0 0.07 +azygos azygos adj f s 0.01 0 0.01 0 +azyme azyme adj m s 0.04 0.41 0.04 0.41 +azéri azéri adj m s 0.27 0.07 0.27 0 +azéris azéri adj m p 0.27 0.07 0 0.07 +aède aède nom m s 0.11 0.27 0.1 0.2 +aèdes aède nom m p 0.11 0.27 0.01 0.07 +aère aérer ver 2.65 4.12 0.32 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aérage aérage nom m s 0.06 0 0.06 0 +aéraient aérer ver 2.65 4.12 0 0.07 ind:imp:3p; +aérait aérer ver 2.65 4.12 0.01 0.41 ind:imp:3s; +aérateur aérateur nom m s 0.02 0.2 0.01 0 +aérateurs aérateur nom m p 0.02 0.2 0.01 0.2 +aération aération nom f s 2.02 1.35 2 1.35 +aérations aération nom f p 2.02 1.35 0.03 0 +aérer aérer ver 2.65 4.12 1.68 2.03 inf; +aérez aérer ver 2.65 4.12 0.32 0.07 imp:pre:2p;ind:pre:2p; +aérien aérien adj m s 13.71 21.15 4.84 6.08 +aérienne aérien adj f s 13.71 21.15 5.37 6.49 +aériennes aérien adj f p 13.71 21.15 2.24 6.15 +aériens aérien adj m p 13.71 21.15 1.26 2.43 +aéro aéro nom m 0.04 0.2 0.04 0.2 +aéro_club aéro_club nom m s 0.01 0.07 0.01 0.07 +aérobic aérobic nom m s 1.21 0.07 1.2 0.07 +aérobics aérobic nom m p 1.21 0.07 0.01 0 +aérodrome aérodrome nom m s 2.2 4.26 1.92 3.31 +aérodromes aérodrome nom m p 2.2 4.26 0.28 0.95 +aérodynamique aérodynamique adj s 0.51 0.41 0.45 0.2 +aérodynamiques aérodynamique adj p 0.51 0.41 0.06 0.2 +aérodynamisme aérodynamisme nom m s 0.02 0.07 0.02 0.07 +aérofrein aérofrein nom m s 0.05 0.07 0.01 0 +aérofreins aérofrein nom m p 0.05 0.07 0.04 0.07 +aérogare aérogare nom f s 0.12 2.23 0.11 2.16 +aérogares aérogare nom f p 0.12 2.23 0.01 0.07 +aéroglisseur aéroglisseur nom m s 0.75 0 0.73 0 +aéroglisseurs aéroglisseur nom m p 0.75 0 0.02 0 +aérographe aérographe nom m s 0.04 0.07 0.04 0.07 +aérolithe aérolithe nom m s 0 0.47 0 0.34 +aérolithes aérolithe nom m p 0 0.47 0 0.14 +aérologie aérologie nom f s 0.01 0 0.01 0 +aéromobile aéromobile adj f s 0.06 0 0.06 0 +aéromodélisme aéromodélisme nom m s 0 0.14 0 0.14 +aéronaute aéronaute nom s 0.03 0.07 0.01 0 +aéronautes aéronaute nom p 0.03 0.07 0.02 0.07 +aéronautique aéronautique nom f s 0.58 0.41 0.45 0.41 +aéronautiques aéronautique nom f p 0.58 0.41 0.14 0 +aéronaval aéronaval adj m s 0.17 0.2 0.1 0 +aéronavale aéronavale nom f s 0.48 0.2 0.48 0.2 +aéronavales aéronaval adj f p 0.17 0.2 0.03 0.07 +aéronavals aéronaval adj m p 0.17 0.2 0 0.07 +aéronef aéronef nom m s 0.03 0.14 0.03 0.07 +aéronefs aéronef nom m p 0.03 0.14 0 0.07 +aérons aérer ver 2.65 4.12 0.01 0.07 imp:pre:1p;ind:pre:1p; +aéropathie aéropathie nom f s 0.01 0 0.01 0 +aérophagie aérophagie nom f s 0.15 0.14 0.15 0.14 +aéroplane aéroplane nom m s 0.16 1.62 0.16 1.15 +aéroplanes aéroplane nom m p 0.16 1.62 0 0.47 +aéroport aéroport nom m s 33.13 8.99 31.44 7.91 +aéroports aéroport nom m p 33.13 8.99 1.69 1.08 +aéroporté aéroporté adj m s 0.68 0.34 0.1 0.07 +aéroportée aéroporté adj f s 0.68 0.34 0.44 0.07 +aéroportées aéroporté adj f p 0.68 0.34 0.09 0 +aéroportés aéroporté adj m p 0.68 0.34 0.05 0.2 +aéropostale aéropostale nom f s 0.01 0 0.01 0 +aérosol aérosol nom m s 0.61 0.54 0.44 0.47 +aérosols aérosol nom m p 0.61 0.54 0.17 0.07 +aérospatial aérospatial adj m s 0.17 0 0.07 0 +aérospatiale aérospatiale nom f s 0.12 0 0.12 0 +aérostat aérostat nom m s 0.16 0 0.16 0 +aérostier aérostier nom m s 0 0.2 0 0.14 +aérostiers aérostier nom m p 0 0.2 0 0.07 +aérotrains aérotrain nom m p 0 0.07 0 0.07 +aérèrent aérer ver 2.65 4.12 0 0.07 ind:pas:3p; +aéré aéré adj m s 0.5 2.36 0.28 0.68 +aérée aéré adj f s 0.5 2.36 0.05 0.95 +aérées aéré adj f p 0.5 2.36 0 0.47 +aérés aéré adj m p 0.5 2.36 0.17 0.27 +aînesse aînesse nom f s 0.07 0.47 0.07 0.47 +aîné aîné adj m s 6.27 16.42 4.66 10 +aînée aîné nom f s 8.92 22.84 2.79 5.07 +aînées aîné nom f p 8.92 22.84 0.05 0.54 +aînés aîné nom m p 8.92 22.84 1.46 4.19 +aître aître nom m s 0 0.14 0 0.07 +aîtres aître nom m p 0 0.14 0 0.07 +aï aï nom m s 2.31 0 2.31 0 +aïd aïd nom m 0.54 0.34 0.54 0.34 +aïe aïe ono 18.25 8.38 18.25 8.38 +aïeul aïeul nom m s 3.13 10.61 1.08 4.46 +aïeule aïeul nom f s 3.13 10.61 0.14 3.24 +aïeules aïeul nom f p 3.13 10.61 0.03 0.54 +aïeuls aïeul nom m p 3.13 10.61 0.14 0.27 +aïeux aïeul nom m p 3.13 10.61 1.75 2.09 +aïkido aïkido nom m s 0.02 0.07 0.02 0.07 +aïoli aïoli nom m s 0.01 0.27 0.01 0.27 +b b nom_sup m 31.78 8.65 31.78 8.65 +baba baba nom m s 1.05 1.89 0.8 1.42 +baballe baballe nom f s 0.18 0.34 0.18 0.34 +babas baba nom m p 1.05 1.89 0.26 0.47 +babasse babasse nom s 0 0.07 0 0.07 +babel babel nom m s 0.05 0 0.05 0 +babeurre babeurre nom m s 0.13 0 0.13 0 +babi babi nom m s 0.02 0 0.02 0 +babil babil nom m s 0.07 0.74 0.07 0.68 +babillage babillage nom m s 0.34 0.81 0.07 0.54 +babillages babillage nom m p 0.34 0.81 0.26 0.27 +babillaient babiller ver 0.41 1.42 0 0.34 ind:imp:3p; +babillait babiller ver 0.41 1.42 0.02 0.27 ind:imp:3s; +babillant babiller ver 0.41 1.42 0.03 0.07 par:pre; +babillard babillard nom m s 0.01 0.07 0.01 0.07 +babillarde babillard adj f s 0.02 0.2 0.02 0.14 +babille babiller ver 0.41 1.42 0.02 0.07 ind:pre:1s;ind:pre:3s; +babillent babiller ver 0.41 1.42 0 0.07 ind:pre:3p; +babiller babiller ver 0.41 1.42 0.34 0.54 inf; +babilles babiller ver 0.41 1.42 0 0.07 ind:pre:2s; +babillé babiller ver m s 0.41 1.42 0.01 0 par:pas; +babils babil nom m p 0.07 0.74 0 0.07 +babine babine nom f s 0.33 3.38 0 0.47 +babines babine nom f p 0.33 3.38 0.33 2.91 +babiole babiole nom f s 1.85 2.03 0.48 0.47 +babioles babiole nom f p 1.85 2.03 1.36 1.55 +babiroussa babiroussa nom m s 0 0.07 0 0.07 +babouche babouche nom f s 0.08 2.64 0.04 0.34 +babouches babouche nom f p 0.08 2.64 0.04 2.3 +babouchka babouchka nom f s 0.12 3.72 0.12 2.91 +babouchkas babouchka nom f p 0.12 3.72 0 0.81 +babouin babouin nom m s 2 1.15 1.41 0.54 +babouine babouin nom f s 2 1.15 0 0.14 +babouines babouin nom f p 2 1.15 0.01 0.14 +babouins babouin nom m p 2 1.15 0.58 0.34 +babouvistes babouviste nom p 0 0.14 0 0.14 +baby baby nom m s 13.2 2.84 13.19 2.77 +baby_boom baby_boom nom m s 0.05 0 0.05 0 +baby_foot baby_foot nom m 0.55 0.74 0.55 0.74 +baby_sitter baby_sitter nom f s 7.85 0.2 7 0.14 +baby_sitter baby_sitter nom f p 7.85 0.2 0.85 0.07 +baby_sitting baby_sitting nom m s 1.63 0.41 1.63 0.41 +babylonien babylonien adj m s 0.1 0.47 0.08 0.27 +babylonienne babylonien nom f s 0.11 0.14 0.02 0 +babyloniens babylonien nom m p 0.11 0.14 0.06 0.14 +babys baby nom m p 13.2 2.84 0.01 0.07 +babélienne babélien adj f s 0 0.07 0 0.07 +bac bac nom m s 9.99 16.08 9.03 13.99 +baccalauréat baccalauréat nom m s 0.49 1.89 0.49 1.89 +baccara baccara nom m s 0.22 1.08 0.22 1.08 +baccarat baccarat nom m s 0.05 0 0.05 0 +bacchanal bacchanal nom m s 0.04 0.14 0.04 0.14 +bacchanale bacchanale nom f s 0.39 0.54 0.37 0.41 +bacchanales bacchanale nom f p 0.39 0.54 0.02 0.14 +bacchante bacchante nom f s 0.67 2.7 0.67 1.15 +bacchantes bacchante nom f p 0.67 2.7 0 1.55 +bachaghas bachagha nom m p 0 0.07 0 0.07 +bachelier bachelier nom m s 0.09 1.76 0.05 1.22 +bacheliers bachelier nom m p 0.09 1.76 0.04 0.41 +bachelière bachelier nom f s 0.09 1.76 0 0.14 +bachi_bouzouk bachi_bouzouk nom m s 0 0.07 0 0.07 +bachique bachique adj m s 0 0.34 0 0.07 +bachiques bachique adj p 0 0.34 0 0.27 +bachot bachot nom m s 0.29 3.85 0.29 3.18 +bachotage bachotage nom m s 0.02 0 0.02 0 +bachotaient bachoter ver 0.03 0.2 0 0.07 ind:imp:3p; +bachotait bachoter ver 0.03 0.2 0.01 0.07 ind:imp:3s; +bachotant bachoter ver 0.03 0.2 0 0.07 par:pre; +bachoter bachoter ver 0.03 0.2 0.01 0 inf; +bachots bachot nom m p 0.29 3.85 0 0.68 +bacillaires bacillaire adj f p 0 0.14 0 0.14 +bacille bacille nom m s 0.45 1.15 0.18 0.34 +bacilles bacille nom m p 0.45 1.15 0.26 0.81 +back back nom m s 4.82 0.74 4.82 0.74 +back_up back_up nom m s 0.09 0 0.09 0 +backgammon backgammon nom m s 0.66 0 0.66 0 +background background nom m s 0.05 0.07 0.05 0.07 +bacon bacon nom m s 4.5 0.47 4.5 0.47 +bacs bac nom m p 9.99 16.08 0.96 2.09 +bactéricide bactéricide adj m s 0.02 0 0.01 0 +bactéricides bactéricide adj p 0.02 0 0.01 0 +bactérie bactérie nom f s 5 0.88 2.22 0.27 +bactérien bactérien adj m s 0.49 0 0.07 0 +bactérienne bactérien adj f s 0.49 0 0.34 0 +bactériennes bactérien adj f p 0.49 0 0.08 0 +bactéries bactérie nom f p 5 0.88 2.79 0.61 +bactériologie bactériologie nom f s 0.11 0 0.11 0 +bactériologique bactériologique adj s 0.82 0.14 0.45 0.14 +bactériologiques bactériologique adj p 0.82 0.14 0.37 0 +bactériologiste bactériologiste nom s 0.01 0 0.01 0 +bactériophage bactériophage nom m s 0.07 0 0.07 0 +bactériémie bactériémie nom f s 0.01 0 0.01 0 +bada bader ver 0.4 2.36 0.37 2.16 ind:pas:3s; +badabam badabam ono 0 0.14 0 0.14 +badaboum badaboum ono 0.12 0.74 0.12 0.74 +badamier badamier nom m s 0.27 0.34 0.27 0 +badamiers badamier nom m p 0.27 0.34 0 0.34 +badant bader ver 0.4 2.36 0 0.14 par:pre; +badaud badaud nom m s 0.54 6.82 0.05 0.68 +badauda badauder ver 0.1 0.41 0 0.07 ind:pas:3s; +badaudaient badauder ver 0.1 0.41 0.1 0.07 ind:imp:3p; +badaudant badauder ver 0.1 0.41 0 0.14 par:pre; +badaude badauder ver 0.1 0.41 0 0.07 ind:pre:1s; +badauder badauder ver 0.1 0.41 0 0.07 inf; +badauderie badauderie nom f s 0 0.34 0 0.2 +badauderies badauderie nom f p 0 0.34 0 0.14 +badauds badaud nom m p 0.54 6.82 0.49 6.15 +bader bader ver 0.4 2.36 0.01 0.07 inf; +baderne baderne nom f s 0.08 0.47 0.07 0.27 +badernes baderne nom f p 0.08 0.47 0.01 0.2 +bades bader ver 0.4 2.36 0.02 0 ind:pre:2s; +badge badge nom m s 7.14 1.42 6.03 0.74 +badges badge nom m p 7.14 1.42 1.12 0.68 +badgés badgé adj m p 0 0.07 0 0.07 +badigeon badigeon nom m s 0 1.01 0 0.88 +badigeonna badigeonner ver 0.13 3.31 0 0.2 ind:pas:3s; +badigeonnage badigeonnage nom m s 0 0.2 0 0.07 +badigeonnages badigeonnage nom m p 0 0.2 0 0.14 +badigeonnaient badigeonner ver 0.13 3.31 0 0.07 ind:imp:3p; +badigeonnait badigeonner ver 0.13 3.31 0 0.14 ind:imp:3s; +badigeonnant badigeonner ver 0.13 3.31 0 0.14 par:pre; +badigeonne badigeonner ver 0.13 3.31 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +badigeonner badigeonner ver 0.13 3.31 0.04 0.27 inf; +badigeonnerai badigeonner ver 0.13 3.31 0.02 0 ind:fut:1s; +badigeonnerez badigeonner ver 0.13 3.31 0.01 0.07 ind:fut:2p; +badigeonneur badigeonneur nom m s 0 0.07 0 0.07 +badigeonnions badigeonner ver 0.13 3.31 0 0.07 ind:imp:1p; +badigeonnèrent badigeonner ver 0.13 3.31 0 0.07 ind:pas:3p; +badigeonné badigeonner ver m s 0.13 3.31 0.04 0.54 par:pas; +badigeonnée badigeonner ver f s 0.13 3.31 0 0.41 par:pas; +badigeonnées badigeonner ver f p 0.13 3.31 0 0.27 par:pas; +badigeonnés badigeonner ver m p 0.13 3.31 0 0.81 par:pas; +badigeons badigeon nom m p 0 1.01 0 0.14 +badigoinces badigoinces nom f p 0 0.2 0 0.2 +badin badin adj m s 0.48 1.96 0.33 1.35 +badina badiner ver 0.59 1.35 0 0.07 ind:pas:3s; +badinage badinage nom m s 0.16 0.61 0.14 0.47 +badinages badinage nom m p 0.16 0.61 0.02 0.14 +badinaient badiner ver 0.59 1.35 0 0.14 ind:imp:3p; +badinais badiner ver 0.59 1.35 0.01 0 ind:imp:1s; +badinait badiner ver 0.59 1.35 0 0.34 ind:imp:3s; +badine badiner ver 0.59 1.35 0.22 0.47 imp:pre:2s;ind:pre:3s; +badiner badiner ver 0.59 1.35 0.18 0.27 inf; +badines badiner ver 0.59 1.35 0.01 0 ind:pre:2s; +badinez badiner ver 0.59 1.35 0.14 0.07 imp:pre:2p;ind:pre:2p; +badins badin adj m p 0.48 1.96 0 0.14 +badiné badiner ver m s 0.59 1.35 0.02 0 par:pas; +badminton badminton nom m s 0.18 0.2 0.18 0.2 +badois badois adj m 0 0.27 0 0.07 +badoise badois adj f s 0 0.27 0 0.2 +baffe baffe nom f s 2.93 3.58 1.41 1.49 +baffer baffer ver 0.62 0.14 0.49 0 inf; +baffes baffe nom f p 2.93 3.58 1.52 2.09 +baffle baffle nom m s 0.06 0.68 0 0.2 +baffles baffle nom m p 0.06 0.68 0.06 0.47 +baffés baffer ver m p 0.62 0.14 0 0.07 par:pas; +bafouais bafouer ver 3.54 3.78 0 0.07 ind:imp:1s; +bafouait bafouer ver 3.54 3.78 0.14 0.27 ind:imp:3s; +bafouant bafouer ver 3.54 3.78 0.03 0.27 par:pre; +bafoue bafouer ver 3.54 3.78 0.71 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bafouent bafouer ver 3.54 3.78 0.17 0.14 ind:pre:3p; +bafouer bafouer ver 3.54 3.78 0.54 0.68 inf; +bafoues bafouer ver 3.54 3.78 0.25 0.14 ind:pre:2s; +bafouez bafouer ver 3.54 3.78 0.32 0 imp:pre:2p;ind:pre:2p; +bafouilla bafouiller ver 2.08 8.92 0.01 2.23 ind:pas:3s; +bafouillage bafouillage nom m s 0.01 0.47 0.01 0.27 +bafouillages bafouillage nom m p 0.01 0.47 0 0.2 +bafouillai bafouiller ver 2.08 8.92 0 0.14 ind:pas:1s; +bafouillaient bafouiller ver 2.08 8.92 0 0.07 ind:imp:3p; +bafouillais bafouiller ver 2.08 8.92 0 0.2 ind:imp:1s; +bafouillait bafouiller ver 2.08 8.92 0.02 1.15 ind:imp:3s; +bafouillant bafouillant adj m s 0.01 0.34 0.01 0.2 +bafouillante bafouillant adj f s 0.01 0.34 0 0.07 +bafouillantes bafouillant adj f p 0.01 0.34 0 0.07 +bafouille bafouiller ver 2.08 8.92 0.93 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bafouillent bafouiller ver 2.08 8.92 0.01 0.27 ind:pre:3p; +bafouiller bafouiller ver 2.08 8.92 0.13 0.68 inf; +bafouilles bafouiller ver 2.08 8.92 0.23 0.14 ind:pre:2s; +bafouilleur bafouilleur nom m s 0.01 0 0.01 0 +bafouillez bafouiller ver 2.08 8.92 0.03 0.07 imp:pre:2p;ind:pre:2p; +bafouillis bafouillis nom m 0 0.27 0 0.27 +bafouillèrent bafouiller ver 2.08 8.92 0 0.07 ind:pas:3p; +bafouillé bafouiller ver m s 2.08 8.92 0.72 0.81 par:pas; +bafoué bafouer ver m s 3.54 3.78 0.52 1.22 par:pas; +bafouée bafouer ver f s 3.54 3.78 0.39 0.61 par:pas; +bafouées bafouer ver f p 3.54 3.78 0.04 0.07 par:pas; +bafoués bafouer ver m p 3.54 3.78 0.43 0.14 par:pas; +bagage bagage nom m s 29.69 24.39 3.21 7.43 +bagagerie bagagerie nom f s 0 0.14 0 0.14 +bagages bagage nom m p 29.69 24.39 26.48 16.96 +bagagiste bagagiste nom s 0.3 0.07 0.24 0.07 +bagagistes bagagiste nom p 0.3 0.07 0.06 0 +bagarraient bagarrer ver 5.1 2.23 0.05 0.27 ind:imp:3p; +bagarrais bagarrer ver 5.1 2.23 0.05 0 ind:imp:1s;ind:imp:2s; +bagarrait bagarrer ver 5.1 2.23 0.05 0.14 ind:imp:3s; +bagarrant bagarrer ver 5.1 2.23 0.12 0.07 par:pre; +bagarre bagarre nom f s 19.24 13.85 16.05 9.86 +bagarrent bagarrer ver 5.1 2.23 0.64 0.14 ind:pre:3p; +bagarrer bagarrer ver 5.1 2.23 1.75 0.68 inf;; +bagarrerais bagarrer ver 5.1 2.23 0.02 0 cnd:pre:1s; +bagarrerait bagarrer ver 5.1 2.23 0.01 0 cnd:pre:3s; +bagarres bagarre nom f p 19.24 13.85 3.19 3.99 +bagarreur bagarreur adj m s 0.65 0.61 0.47 0.41 +bagarreurs bagarreur adj m p 0.65 0.61 0.09 0.14 +bagarreuse bagarreur adj f s 0.65 0.61 0.07 0.07 +bagarreuses bagarreur adj f p 0.65 0.61 0.01 0 +bagarrez bagarrer ver 5.1 2.23 0.15 0 imp:pre:2p;ind:pre:2p; +bagarrons bagarrer ver 5.1 2.23 0.01 0 imp:pre:1p; +bagarré bagarrer ver m s 5.1 2.23 0.7 0.47 par:pas; +bagarrée bagarrer ver f s 5.1 2.23 0.16 0.07 par:pas; +bagarrés bagarrer ver m p 5.1 2.23 0.22 0 par:pas; +bagasse bagasse nom f s 0.15 0 0.15 0 +bagatelle bagatelle nom f s 1.08 3.58 1.03 2.64 +bagatelles bagatelle nom f p 1.08 3.58 0.05 0.95 +bagnard bagnard nom m s 0.6 2.57 0.5 1.08 +bagnards bagnard nom m p 0.6 2.57 0.11 1.49 +bagne bagne nom m s 2.5 3.85 2.49 3.31 +bagnes bagne nom m p 2.5 3.85 0.01 0.54 +bagnole bagnole nom f s 23.93 34.26 21.18 26.28 +bagnoles bagnole nom f p 23.93 34.26 2.75 7.97 +bagote bagoter ver 0 0.41 0 0.07 ind:pre:3s; +bagoter bagoter ver 0 0.41 0 0.34 inf; +bagottaient bagotter ver 0 0.34 0 0.07 ind:imp:3p; +bagottais bagotter ver 0 0.34 0 0.07 ind:imp:1s; +bagotte bagotter ver 0 0.34 0 0.14 ind:pre:3s; +bagotter bagotter ver 0 0.34 0 0.07 inf; +bagou bagou nom m s 0.01 0.27 0.01 0.27 +bagoulait bagouler ver 0 0.14 0 0.07 ind:imp:3s; +bagoule bagouler ver 0 0.14 0 0.07 ind:pre:3s; +bagouse bagouse nom f s 0 0.2 0 0.2 +bagousées bagousé adj f p 0 0.07 0 0.07 +bagout bagout nom m s 0.25 0.81 0.25 0.74 +bagouts bagout nom m p 0.25 0.81 0 0.07 +bagouze bagouze nom f s 0.03 0.2 0.01 0.14 +bagouzes bagouze nom f p 0.03 0.2 0.02 0.07 +baguage baguage nom m s 0.02 0 0.02 0 +bague bague nom f s 30.32 22.36 26.14 16.08 +baguenaudaient baguenauder ver 0.18 1.62 0 0.07 ind:imp:3p; +baguenaudais baguenauder ver 0.18 1.62 0 0.07 ind:imp:1s; +baguenaudait baguenauder ver 0.18 1.62 0 0.27 ind:imp:3s; +baguenaudant baguenauder ver 0.18 1.62 0 0.27 par:pre; +baguenaude baguenauder ver 0.18 1.62 0.14 0.14 ind:pre:1s;ind:pre:3s; +baguenaudent baguenauder ver 0.18 1.62 0 0.07 ind:pre:3p; +baguenauder baguenauder ver 0.18 1.62 0.03 0.61 inf; +baguenauderait baguenauder ver 0.18 1.62 0 0.07 cnd:pre:3s; +baguenaudé baguenauder ver m s 0.18 1.62 0.01 0.07 par:pas; +baguer baguer ver 0.23 0.68 0.02 0.07 inf; +bagues bague nom f p 30.32 22.36 4.19 6.28 +baguette baguette nom f s 7.74 13.45 5.67 9.46 +baguettes baguette nom f p 7.74 13.45 2.06 3.99 +bagué baguer ver m s 0.23 0.68 0.14 0.07 par:pas; +baguée bagué adj f s 0.01 1.01 0 0.34 +baguées bagué adj f p 0.01 1.01 0 0.2 +bagués bagué adj m p 0.01 1.01 0.01 0.41 +bah bah ono 22.77 12.03 22.77 12.03 +baht baht nom m s 0.52 0 0.07 0 +bahts baht nom m p 0.52 0 0.45 0 +bahut bahut nom m s 1.59 8.38 1.5 7.23 +bahute bahuter ver 0 0.14 0 0.07 ind:pre:3s; +bahutent bahuter ver 0 0.14 0 0.07 ind:pre:3p; +bahuts bahut nom m p 1.59 8.38 0.09 1.15 +bai bai adj m s 0.89 1.35 0.86 1.22 +baie baie nom f s 7.09 19.8 5.84 14.86 +baies baie nom f p 7.09 19.8 1.24 4.93 +baigna baigner ver 26.42 41.42 0 0.41 ind:pas:3s; +baignade baignade nom f s 1.1 2.84 1 1.89 +baignades baignade nom f p 1.1 2.84 0.1 0.95 +baignai baigner ver 26.42 41.42 0.1 0.07 ind:pas:1s; +baignaient baigner ver 26.42 41.42 0.31 3.04 ind:imp:3p; +baignais baigner ver 26.42 41.42 0.17 0.88 ind:imp:1s;ind:imp:2s; +baignait baigner ver 26.42 41.42 0.77 6.62 ind:imp:3s; +baignant baigner ver 26.42 41.42 0.22 2.77 par:pre; +baigne baigner ver 26.42 41.42 7.87 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +baignent baigner ver 26.42 41.42 0.7 1.28 ind:pre:3p; +baigner baigner ver 26.42 41.42 11.33 10.41 inf; +baignera baigner ver 26.42 41.42 0.41 0 ind:fut:3s; +baigneraient baigner ver 26.42 41.42 0 0.07 cnd:pre:3p; +baignerait baigner ver 26.42 41.42 0.04 0.07 cnd:pre:3s; +baignerons baigner ver 26.42 41.42 0.02 0.07 ind:fut:1p; +baigneront baigner ver 26.42 41.42 0.17 0.07 ind:fut:3p; +baignes baigner ver 26.42 41.42 0.77 0.2 ind:pre:2s; +baigneur baigneur nom m s 0.43 10 0.33 4.73 +baigneurs baigneur nom m p 0.43 10 0.03 3.45 +baigneuse baigneur nom f s 0.43 10 0.05 0.74 +baigneuses baigneur nom f p 0.43 10 0.01 1.08 +baignez baigner ver 26.42 41.42 0.49 0.27 imp:pre:2p;ind:pre:2p; +baignions baigner ver 26.42 41.42 0.01 0.34 ind:imp:1p; +baignoire baignoire nom f s 12.39 15.27 11.9 14.12 +baignoires baignoire nom f p 12.39 15.27 0.5 1.15 +baignons baigner ver 26.42 41.42 0.19 0.14 imp:pre:1p;ind:pre:1p; +baignèrent baigner ver 26.42 41.42 0 0.2 ind:pas:3p; +baigné baigner ver m s 26.42 41.42 1.42 3.72 par:pas; +baignée baigner ver f s 26.42 41.42 0.63 1.96 par:pas; +baignées baigner ver f p 26.42 41.42 0.37 0.41 par:pas; +baignés baigner ver m p 26.42 41.42 0.42 1.69 par:pas; +bail bail nom m s 11.49 2.57 11.49 2.57 +baile baile nom m s 0.05 0.47 0.05 0.27 +bailes baile nom m p 0.05 0.47 0 0.2 +baillait bailler ver 1.02 0.61 0.03 0.14 ind:imp:3s; +baillant bailler ver 1.02 0.61 0.02 0.14 par:pre; +baille bailler ver 1.02 0.61 0.47 0.07 ind:pre:1s;ind:pre:3s; +bailler bailler ver 1.02 0.61 0.21 0.14 inf; +bailles bailler ver 1.02 0.61 0.16 0.07 ind:pre:2s; +bailleur bailleur nom m s 0.56 0.47 0.28 0.2 +bailleurs bailleur nom m p 0.56 0.47 0.28 0.27 +baillez bailler ver 1.02 0.61 0 0.07 ind:pre:2p; +bailli bailli nom m s 0.01 0.47 0.01 0.41 +bailliage bailliage nom m s 0 0.2 0 0.2 +baillis bailli nom m p 0.01 0.47 0 0.07 +baillive baillive nom f s 0 0.07 0 0.07 +baillé bailler ver m s 1.02 0.61 0.14 0 par:pas; +bain bain nom m s 74.48 83.04 50.52 43.11 +bain_marie bain_marie nom m s 0.08 0.95 0.08 0.88 +bains bain nom m p 74.48 83.04 23.96 39.93 +bain_marie bain_marie nom m p 0.08 0.95 0 0.07 +bais bai adj m p 0.89 1.35 0.03 0.14 +baisa baiser ver 112.82 44.12 0 3.51 ind:pas:3s; +baisable baisable adj s 0.35 0.2 0.26 0.14 +baisables baisable adj p 0.35 0.2 0.1 0.07 +baisade baisade nom f s 0 0.07 0 0.07 +baisai baiser ver 112.82 44.12 0.1 0.41 ind:pas:1s; +baisaient baiser ver 112.82 44.12 0.25 0.74 ind:imp:3p; +baisais baiser ver 112.82 44.12 1.42 0.61 ind:imp:1s;ind:imp:2s; +baisait baiser ver 112.82 44.12 2.25 3.11 ind:imp:3s; +baisant baiser ver 112.82 44.12 1.72 0.95 par:pre; +baise baiser ver 112.82 44.12 22.02 8.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +baise_en_ville baise_en_ville nom m s 0.03 0.2 0.03 0.2 +baisemain baisemain nom m s 0.81 0.61 0.81 0.54 +baisemains baisemain nom m p 0.81 0.61 0 0.07 +baisement baisement nom m s 0 0.07 0 0.07 +baisent baiser ver 112.82 44.12 3.15 1.69 ind:pre:3p; +baiser baiser ver 112.82 44.12 42.25 15.34 inf; +baisera baiser ver 112.82 44.12 0.99 0.54 ind:fut:3s; +baiserai baiser ver 112.82 44.12 1.33 0.41 ind:fut:1s; +baiseraient baiser ver 112.82 44.12 0 0.07 cnd:pre:3p; +baiserais baiser ver 112.82 44.12 1.45 0.14 cnd:pre:1s;cnd:pre:2s; +baiserait baiser ver 112.82 44.12 0.17 0.34 cnd:pre:3s; +baiseras baiser ver 112.82 44.12 0.49 0.07 ind:fut:2s; +baiserez baiser ver 112.82 44.12 0.12 0 ind:fut:2p; +baiseriez baiser ver 112.82 44.12 0.01 0 cnd:pre:2p; +baiserons baiser ver 112.82 44.12 0 0.07 ind:fut:1p; +baiseront baiser ver 112.82 44.12 0.03 0.07 ind:fut:3p; +baisers baiser nom m p 52.17 54.59 11.25 25.95 +baises baiser ver 112.82 44.12 7.66 0.88 ind:pre:2s;sub:pre:2s; +baiseur baiseur nom m s 2 1.49 1.4 0.61 +baiseurs baiseur nom m p 2 1.49 0.4 0.34 +baiseuse baiseur nom f s 2 1.49 0.2 0.54 +baisez baiser ver 112.82 44.12 1.77 0.47 imp:pre:2p;ind:pre:2p; +baisiez baiser ver 112.82 44.12 0.31 0 ind:imp:2p; +baisions baiser ver 112.82 44.12 0.01 0.07 ind:imp:1p; +baisodrome baisodrome nom m s 0.46 0.07 0.46 0.07 +baisons baiser ver 112.82 44.12 0.17 0.14 imp:pre:1p;ind:pre:1p; +baisotant baisoter ver 0 0.07 0 0.07 par:pre; +baisouiller baisouiller ver 0.04 0.2 0.04 0.14 inf; +baisouillé baisouiller ver m s 0.04 0.2 0 0.07 par:pas; +baissa baisser ver 63.69 115.27 0.27 25.54 ind:pas:3s; +baissai baisser ver 63.69 115.27 0 1.28 ind:pas:1s; +baissaient baisser ver 63.69 115.27 0.18 1.42 ind:imp:3p; +baissais baisser ver 63.69 115.27 0.14 1.28 ind:imp:1s;ind:imp:2s; +baissait baisser ver 63.69 115.27 0.23 9.93 ind:imp:3s; +baissant baisser ver 63.69 115.27 0.58 10.54 par:pre; +baisse baisser ver 63.69 115.27 20.1 14.8 imp:pre:2s;ind:pre:1s;ind:pre:3s; +baissement baissement nom m s 0.27 0 0.27 0 +baissent baisser ver 63.69 115.27 1.11 1.42 ind:pre:3p;sub:pre:3p; +baisser baisser ver 63.69 115.27 12.31 12.7 inf; +baissera baisser ver 63.69 115.27 0.28 0.2 ind:fut:3s; +baisserai baisser ver 63.69 115.27 0.18 0.07 ind:fut:1s; +baisseraient baisser ver 63.69 115.27 0.02 0 cnd:pre:3p; +baisserais baisser ver 63.69 115.27 0.11 0 cnd:pre:1s; +baisserait baisser ver 63.69 115.27 0.14 0.27 cnd:pre:3s; +baisseras baisser ver 63.69 115.27 0.05 0.07 ind:fut:2s; +baisserez baisser ver 63.69 115.27 0.01 0 ind:fut:2p; +baisserons baisser ver 63.69 115.27 0.11 0 ind:fut:1p; +baisseront baisser ver 63.69 115.27 0.19 0.14 ind:fut:3p; +baisses baisser ver 63.69 115.27 1.14 0.14 ind:pre:2s;sub:pre:2s; +baissez baisser ver 63.69 115.27 16.45 0.47 imp:pre:2p;ind:pre:2p; +baissier baissier adj m s 0.14 0 0.14 0 +baissiez baisser ver 63.69 115.27 0.27 0 ind:imp:2p; +baissions baisser ver 63.69 115.27 0 0.07 ind:imp:1p; +baissons baisser ver 63.69 115.27 0.15 0.27 imp:pre:1p;ind:pre:1p; +baissâmes baisser ver 63.69 115.27 0 0.07 ind:pas:1p; +baissât baisser ver 63.69 115.27 0 0.07 sub:imp:3s; +baissèrent baisser ver 63.69 115.27 0.01 0.74 ind:pas:3p; +baissé baisser ver m s 63.69 115.27 5.7 14.12 par:pas; +baissée baisser ver f s 63.69 115.27 2.36 9.05 ind:imp:3s;par:pas; +baissées baisser ver f p 63.69 115.27 0.34 2.43 par:pas; +baissés baisser ver m p 63.69 115.27 1.25 8.18 par:pas; +baisèrent baiser ver 112.82 44.12 0 0.14 ind:pas:3p; +baisé baiser ver m s 112.82 44.12 17.65 4.19 par:pas; +baisée baiser ver f s 112.82 44.12 4.7 1.08 par:pas; +baisées baiser ver f p 112.82 44.12 0.5 0.47 par:pas; +baisés baiser ver m p 112.82 44.12 2.33 0.47 par:pas; +bajoue bajoue nom f s 0.49 2.5 0.3 0 +bajoues bajoue nom f p 0.49 2.5 0.19 2.5 +bajoyers bajoyer nom m p 0 0.07 0 0.07 +bakchich bakchich nom m s 0.31 0.61 0.17 0.54 +bakchichs bakchich nom m p 0.31 0.61 0.14 0.07 +baklava baklava nom m s 0.24 0.34 0.21 0.14 +baklavas baklava nom m p 0.24 0.34 0.03 0.2 +bakélite bakélite nom f s 0.04 1.08 0.04 1.08 +bal bal nom m s 30.25 25.54 28.57 18.31 +balada balader ver 24.3 13.51 0 0.07 ind:pas:3s; +baladai balader ver 24.3 13.51 0 0.07 ind:pas:1s; +baladaient balader ver 24.3 13.51 0.07 0.54 ind:imp:3p; +baladais balader ver 24.3 13.51 0.87 0.47 ind:imp:1s;ind:imp:2s; +baladait balader ver 24.3 13.51 0.65 1.08 ind:imp:3s; +baladant balader ver 24.3 13.51 0.21 0.47 par:pre; +balade balade nom f s 7.71 6.28 6.58 4.59 +baladent balader ver 24.3 13.51 1.51 0.88 ind:pre:3p; +balader balader ver 24.3 13.51 12.41 5.41 inf;; +baladera balader ver 24.3 13.51 0.21 0.14 ind:fut:3s; +baladerai balader ver 24.3 13.51 0.01 0 ind:fut:1s; +baladerais balader ver 24.3 13.51 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +baladerait balader ver 24.3 13.51 0.07 0.14 cnd:pre:3s; +baladerez balader ver 24.3 13.51 0.01 0.07 ind:fut:2p; +balades balader ver 24.3 13.51 1.43 0.34 ind:pre:2s;sub:pre:2s; +baladeur baladeur nom m s 0.34 0.68 0.32 0.14 +baladeurs baladeur adj m p 0.65 0.88 0.02 0.2 +baladeuse baladeur adj f s 0.65 0.88 0.04 0.54 +baladeuses baladeur adj f p 0.65 0.88 0.48 0.07 +baladez balader ver 24.3 13.51 0.37 0 imp:pre:2p;ind:pre:2p; +baladiez balader ver 24.3 13.51 0.04 0 ind:imp:2p; +baladin baladin nom m s 0.14 0.88 0.14 0.2 +baladins baladin nom m p 0.14 0.88 0 0.68 +baladèrent balader ver 24.3 13.51 0 0.07 ind:pas:3p; +baladé balader ver m s 24.3 13.51 0.62 0.47 par:pas; +baladée balader ver f s 24.3 13.51 0.37 0.27 par:pas; +baladées balader ver f p 24.3 13.51 0.02 0.14 par:pas; +baladés balader ver m p 24.3 13.51 0.37 0.14 par:pas; +balafon balafon nom m s 0 0.14 0 0.07 +balafons balafon nom m p 0 0.14 0 0.07 +balafra balafrer ver 0.17 1.55 0 0.07 ind:pas:3s; +balafraient balafrer ver 0.17 1.55 0.01 0.14 ind:imp:3p; +balafrait balafrer ver 0.17 1.55 0 0.27 ind:imp:3s; +balafre balafre nom f s 0.57 1.69 0.55 1.15 +balafrent balafrer ver 0.17 1.55 0 0.07 ind:pre:3p; +balafrer balafrer ver 0.17 1.55 0.02 0.07 inf; +balafres balafre nom f p 0.57 1.69 0.03 0.54 +balafrons balafrer ver 0.17 1.55 0.01 0 imp:pre:1p; +balafrât balafrer ver 0.17 1.55 0 0.07 sub:imp:3s; +balafré balafré adj m s 0.57 1.15 0.35 0.88 +balafrée balafré adj f s 0.57 1.15 0.21 0.2 +balafrées balafrer ver f p 0.17 1.55 0 0.07 par:pas; +balafrés balafrer ver m p 0.17 1.55 0.04 0 par:pas; +balai balai nom m s 10.91 17.7 8.24 11.96 +balai_brosse balai_brosse nom m s 0.4 0.61 0.29 0.34 +balaie balayer ver 12.17 37.43 1.99 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balaient balayer ver 12.17 37.43 0.2 1.01 ind:pre:3p; +balaiera balayer ver 12.17 37.43 0.18 0.34 ind:fut:3s; +balaierai balayer ver 12.17 37.43 0.28 0 ind:fut:1s; +balaieraient balayer ver 12.17 37.43 0 0.07 cnd:pre:3p; +balaierait balayer ver 12.17 37.43 0.02 0.2 cnd:pre:3s; +balaieras balayer ver 12.17 37.43 0.02 0 ind:fut:2s; +balaierez balayer ver 12.17 37.43 0 0.07 ind:fut:2p; +balaies balayer ver 12.17 37.43 0.38 0 ind:pre:2s; +balais balai nom m p 10.91 17.7 2.68 5.74 +balai_brosse balai_brosse nom m p 0.4 0.61 0.11 0.27 +balaise balaise adj m s 0.49 0.34 0.45 0.27 +balaises balaise adj m p 0.49 0.34 0.04 0.07 +balalaïka balalaïka nom f s 0.03 0.41 0.02 0.14 +balalaïkas balalaïka nom f p 0.03 0.41 0.01 0.27 +balan balan nom m s 0 0.07 0 0.07 +balance balancer ver 40.12 67.7 9.66 12.16 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +balancelle balancelle nom f s 0.18 0.34 0.18 0.27 +balancelles balancelle nom f p 0.18 0.34 0 0.07 +balancement balancement nom m s 0.83 5.41 0.69 4.93 +balancements balancement nom m p 0.83 5.41 0.14 0.47 +balancent balancer ver 40.12 67.7 1.73 2.97 ind:pre:3p;sub:pre:3p; +balancer balancer ver 40.12 67.7 10.15 11.89 inf; +balancera balancer ver 40.12 67.7 0.35 0.34 ind:fut:3s; +balancerai balancer ver 40.12 67.7 0.27 0.07 ind:fut:1s; +balanceraient balancer ver 40.12 67.7 0.04 0.07 cnd:pre:3p; +balancerais balancer ver 40.12 67.7 0.29 0.2 cnd:pre:1s;cnd:pre:2s; +balancerait balancer ver 40.12 67.7 0.36 0.07 cnd:pre:3s; +balanceras balancer ver 40.12 67.7 0.05 0 ind:fut:2s; +balancerez balancer ver 40.12 67.7 0.01 0 ind:fut:2p; +balanceriez balancer ver 40.12 67.7 0.02 0 cnd:pre:2p; +balanceront balancer ver 40.12 67.7 0.04 0 ind:fut:3p; +balances balancer ver 40.12 67.7 1.39 0.54 ind:pre:2s;sub:pre:2s; +balancez balancer ver 40.12 67.7 1.33 0.2 imp:pre:2p;ind:pre:2p; +balancier balancier nom m s 0.26 4.05 0.26 3.72 +balanciers balancier nom m p 0.26 4.05 0 0.34 +balanciez balancer ver 40.12 67.7 0.03 0 ind:imp:2p; +balancines balancine nom f p 0 0.07 0 0.07 +balancions balancer ver 40.12 67.7 0.01 0.07 ind:imp:1p; +balancèrent balancer ver 40.12 67.7 0 0.47 ind:pas:3p; +balancé balancer ver m s 40.12 67.7 10.5 8.18 par:pas; +balancée balancer ver f s 40.12 67.7 1.06 1.55 par:pas; +balancées balancer ver f p 40.12 67.7 0.07 0.74 par:pas; +balancés balancer ver m p 40.12 67.7 0.8 1.55 par:pas; +balandras balandras nom m 0 0.07 0 0.07 +balanes balane nom f p 0.01 0.27 0.01 0.27 +balanstiquant balanstiquer ver 0 0.41 0 0.07 par:pre; +balanstique balanstiquer ver 0 0.41 0 0.2 imp:pre:2s;ind:pre:3s; +balanstiquer balanstiquer ver 0 0.41 0 0.14 inf; +balança balancer ver 40.12 67.7 0.01 3.78 ind:pas:3s; +balançage balançage nom m s 0 0.34 0 0.2 +balançages balançage nom m p 0 0.34 0 0.14 +balançai balancer ver 40.12 67.7 0 0.14 ind:pas:1s; +balançaient balancer ver 40.12 67.7 0.29 3.51 ind:imp:3p; +balançais balancer ver 40.12 67.7 0.17 0.88 ind:imp:1s;ind:imp:2s; +balançait balancer ver 40.12 67.7 0.56 9.93 ind:imp:3s; +balançant balancer ver 40.12 67.7 0.71 8.38 par:pre; +balançoire balançoire nom f s 2.14 3.11 1.93 1.89 +balançoires balançoire nom f p 2.14 3.11 0.21 1.22 +balançons balancer ver 40.12 67.7 0.22 0 imp:pre:1p;ind:pre:1p; +balatum balatum nom m s 0 0.14 0 0.14 +balaya balayer ver 12.17 37.43 0.16 2.36 ind:pas:3s; +balayage balayage nom m s 1.69 0.81 1.56 0.74 +balayages balayage nom m p 1.69 0.81 0.13 0.07 +balayai balayer ver 12.17 37.43 0 0.07 ind:pas:1s; +balayaient balayer ver 12.17 37.43 0 2.3 ind:imp:3p; +balayais balayer ver 12.17 37.43 0.05 0.2 ind:imp:1s;ind:imp:2s; +balayait balayer ver 12.17 37.43 0.28 5.07 ind:imp:3s; +balayant balayer ver 12.17 37.43 0.23 3.31 par:pre; +balaye balayer ver 12.17 37.43 1.03 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balayent balayer ver 12.17 37.43 0.04 0.2 ind:pre:3p; +balayer balayer ver 12.17 37.43 3.4 7.23 inf; +balayera balayer ver 12.17 37.43 0.08 0 ind:fut:3s; +balayerai balayer ver 12.17 37.43 0.12 0 ind:fut:1s; +balayeraient balayer ver 12.17 37.43 0 0.07 cnd:pre:3p; +balayerait balayer ver 12.17 37.43 0.04 0.07 cnd:pre:3s; +balayerez balayer ver 12.17 37.43 0.01 0.07 ind:fut:2p; +balayerons balayer ver 12.17 37.43 0.01 0 ind:fut:1p; +balayeront balayer ver 12.17 37.43 0.03 0 ind:fut:3p; +balayette balayette nom f s 0.33 0.54 0.33 0.34 +balayettes balayette nom f p 0.33 0.54 0 0.2 +balayeur balayeur nom m s 0.82 2.97 0.48 1.42 +balayeurs balayeur nom m p 0.82 2.97 0.11 1.35 +balayeuse balayeur nom f s 0.82 2.97 0.21 0.07 +balayeuses balayeur nom f p 0.82 2.97 0.02 0.14 +balayez balayer ver 12.17 37.43 0.6 0.07 imp:pre:2p;ind:pre:2p; +balayons balayer ver 12.17 37.43 0.05 0.07 imp:pre:1p; +balayure balayure nom f s 0 0.34 0 0.14 +balayures balayure nom f p 0 0.34 0 0.2 +balayât balayer ver 12.17 37.43 0 0.14 sub:imp:3s; +balayèrent balayer ver 12.17 37.43 0 0.41 ind:pas:3p; +balayé balayer ver m s 12.17 37.43 1.84 5.54 par:pas; +balayée balayer ver f s 12.17 37.43 0.35 1.76 par:pas; +balayées balayer ver f p 12.17 37.43 0.26 0.95 par:pas; +balayés balayer ver m p 12.17 37.43 0.5 1.69 par:pas; +balboa balboa nom m s 0.02 0 0.02 0 +balbutia balbutier ver 0.23 13.99 0 5.54 ind:pas:3s; +balbutiai balbutier ver 0.23 13.99 0 0.81 ind:pas:1s; +balbutiaient balbutier ver 0.23 13.99 0 0.14 ind:imp:3p; +balbutiais balbutier ver 0.23 13.99 0.01 0.2 ind:imp:1s; +balbutiait balbutier ver 0.23 13.99 0.01 1.89 ind:imp:3s; +balbutiant balbutier ver 0.23 13.99 0.14 1.35 par:pre; +balbutiante balbutiant adj f s 0.14 1.15 0.01 0.54 +balbutiantes balbutiant adj f p 0.14 1.15 0 0.14 +balbutie balbutier ver 0.23 13.99 0.03 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balbutiement balbutiement nom m s 0.06 1.15 0 0.61 +balbutiements balbutiement nom m p 0.06 1.15 0.06 0.54 +balbutier balbutier ver 0.23 13.99 0.02 1.08 inf; +balbutions balbutier ver 0.23 13.99 0 0.07 ind:pre:1p; +balbutièrent balbutier ver 0.23 13.99 0 0.14 ind:pas:3p; +balbutié balbutier ver m s 0.23 13.99 0.01 0.74 par:pas; +balbutiées balbutier ver f p 0.23 13.99 0 0.07 par:pas; +balbutiés balbutier ver m p 0.23 13.99 0 0.14 par:pas; +balbuzard balbuzard nom m s 0.03 0.07 0.03 0.07 +balcon balcon nom m s 10.53 40.41 9.9 32.97 +balconnet balconnet nom m s 0.02 0.54 0.01 0.41 +balconnets balconnet nom m p 0.02 0.54 0.01 0.14 +balcons balcon nom m p 10.53 40.41 0.63 7.43 +baldaquin baldaquin nom m s 0.66 2.77 0.63 2.57 +baldaquins baldaquin nom m p 0.66 2.77 0.04 0.2 +bale bale nom f s 0.5 0 0.36 0 +baleine baleine nom f s 16.68 5 11.52 3.11 +baleineau baleineau nom m s 0.05 0 0.05 0 +baleines baleine nom f p 16.68 5 5.17 1.89 +baleinier baleinier nom m s 0.3 0.81 0.09 0.07 +baleiniers baleinier nom m p 0.3 0.81 0.2 0.14 +baleinière baleinier nom f s 0.3 0.81 0.02 0.54 +baleinières baleinier adj f p 0.06 0 0.01 0 +baleiné baleiné adj m s 0 0.41 0 0.07 +baleinée baleiné adj f s 0 0.41 0 0.07 +baleinées baleiné adj f p 0 0.41 0 0.07 +baleinés baleiné adj m p 0 0.41 0 0.2 +bales bale nom f p 0.5 0 0.14 0 +balinais balinais adj m s 0.03 0.2 0.01 0.14 +balinaise balinais adj f s 0.03 0.2 0.02 0.07 +balisage balisage nom m s 0.12 0.07 0.12 0.07 +balisaient baliser ver 0.65 2.03 0.01 0.2 ind:imp:3p; +balisait baliser ver 0.65 2.03 0.01 0.14 ind:imp:3s; +balisant baliser ver 0.65 2.03 0 0.07 par:pre; +balise balise nom f s 2.82 0.68 2.31 0.27 +balisent baliser ver 0.65 2.03 0.01 0.07 ind:pre:3p; +baliser baliser ver 0.65 2.03 0.06 0.34 inf; +baliseraient baliser ver 0.65 2.03 0.01 0 cnd:pre:3p; +balises balise nom f p 2.82 0.68 0.51 0.41 +baliste baliste nom f s 0.02 0.14 0.01 0 +balistes baliste nom f p 0.02 0.14 0.01 0.14 +balistique balistique nom f s 1.06 0.14 1.06 0.14 +balistiquement balistiquement adv 0 0.07 0 0.07 +balistiques balistique adj p 1.11 0.14 0.31 0.07 +balisé baliser ver m s 0.65 2.03 0.06 0.07 par:pas; +balisée baliser ver f s 0.65 2.03 0.19 0.2 par:pas; +balisées baliser ver f p 0.65 2.03 0 0.07 par:pas; +balisés baliser ver m p 0.65 2.03 0 0.2 par:pas; +baliveau baliveau nom m s 0 1.08 0 0.07 +baliveaux baliveau nom m p 0 1.08 0 1.01 +baliverne baliverne nom f s 2.79 1.55 0.2 0.14 +balivernes baliverne nom f p 2.79 1.55 2.59 1.42 +balkanique balkanique adj s 0 1.49 0 0.81 +balkaniques balkanique adj p 0 1.49 0 0.68 +balkanisés balkaniser ver m p 0 0.07 0 0.07 par:pas; +ball_trap ball_trap nom m s 0.2 0.14 0.2 0.14 +ballade ballade nom f s 4.54 1.22 3.64 0.95 +ballades ballade nom f p 4.54 1.22 0.9 0.27 +ballaient baller ver 0.12 0.95 0.1 0.07 ind:imp:3p; +ballant ballant adj m s 0.33 6.28 0.02 0.54 +ballante ballant adj f s 0.33 6.28 0 0.54 +ballantes ballant adj f p 0.33 6.28 0 0.74 +ballants ballant adj m p 0.33 6.28 0.31 4.46 +ballast ballast nom m s 1.44 2.57 0.4 2.5 +ballasts ballast nom m p 1.44 2.57 1.04 0.07 +balle balle nom f s 122.07 94.59 77.32 44.73 +balle_peau balle_peau ono 0 0.07 0 0.07 +baller baller ver 0.12 0.95 0.02 0.41 inf; +ballerine ballerine nom f s 1.75 2.16 1.23 1.22 +ballerines ballerine nom f p 1.75 2.16 0.51 0.95 +balles balle nom f p 122.07 94.59 44.75 49.86 +ballet ballet nom m s 8.66 8.24 7.8 6.01 +ballets ballet nom m p 8.66 8.24 0.86 2.23 +balloches balloche nom m p 0.12 0.41 0.12 0.41 +ballon ballon nom m s 32.92 21.42 27.27 17.16 +ballon_sonde ballon_sonde nom m s 0.14 0 0.14 0 +ballonnaient ballonner ver 0.66 1.15 0 0.07 ind:imp:3p; +ballonnant ballonnant adj m s 0 0.27 0 0.07 +ballonnante ballonnant adj f s 0 0.27 0 0.14 +ballonnants ballonnant adj m p 0 0.27 0 0.07 +ballonne ballonner ver 0.66 1.15 0.28 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ballonnement ballonnement nom m s 0.04 0.14 0.02 0.07 +ballonnements ballonnement nom m p 0.04 0.14 0.02 0.07 +ballonnent ballonner ver 0.66 1.15 0 0.07 ind:pre:3p; +ballonner ballonner ver 0.66 1.15 0.15 0.14 inf; +ballonnets ballonnet nom m p 0.01 0.14 0.01 0.14 +ballonné ballonné adj m s 0.27 1.15 0.19 0.74 +ballonnée ballonner ver f s 0.66 1.15 0.15 0.14 par:pas; +ballonnées ballonner ver f p 0.66 1.15 0.01 0.07 par:pas; +ballonnées ballonné adj f p 0.27 1.15 0.01 0.07 +ballonnés ballonné adj m p 0.27 1.15 0.01 0.27 +ballons ballon nom m p 32.92 21.42 5.65 4.26 +ballot ballot nom m s 1.01 5.88 0.81 1.82 +ballote ballote nom f s 0 0.07 0 0.07 +ballots ballot nom m p 1.01 5.88 0.2 4.05 +ballottage ballottage nom m s 0.02 0.14 0.02 0 +ballottages ballottage nom m p 0.02 0.14 0 0.14 +ballottaient ballotter ver 0.72 5.68 0 0.41 ind:imp:3p; +ballottait ballotter ver 0.72 5.68 0.01 0.54 ind:imp:3s; +ballottant ballotter ver 0.72 5.68 0 0.41 par:pre; +ballotte ballotter ver 0.72 5.68 0.02 0.41 ind:pre:1s;ind:pre:3s; +ballottement ballottement nom m s 0 0.14 0 0.14 +ballottent ballotter ver 0.72 5.68 0.01 0.27 ind:pre:3p; +ballotter ballotter ver 0.72 5.68 0.02 0.41 inf; +ballottine ballottine nom f s 0.01 0.07 0.01 0 +ballottines ballottine nom f p 0.01 0.07 0 0.07 +ballottèrent ballotter ver 0.72 5.68 0 0.07 ind:pas:3p; +ballotté ballotter ver m s 0.72 5.68 0.44 1.49 par:pas; +ballottée ballotter ver f s 0.72 5.68 0.17 0.68 par:pas; +ballottées ballotter ver f p 0.72 5.68 0 0.2 par:pas; +ballottés ballotter ver m p 0.72 5.68 0.04 0.81 par:pas; +balluche balluche nom m s 0.01 0.14 0 0.07 +balluches balluche nom m p 0.01 0.14 0.01 0.07 +balluchon balluchon nom m s 0.18 0.54 0.16 0.34 +balluchonnage balluchonnage nom m s 0 0.07 0 0.07 +balluchonné balluchonner ver m s 0 0.07 0 0.07 par:pas; +balluchons balluchon nom m p 0.18 0.54 0.02 0.2 +balnéaire balnéaire adj s 0.39 1.22 0.39 0.74 +balnéaires balnéaire adj f p 0.39 1.22 0 0.47 +balnéothérapie balnéothérapie nom f s 0.01 0 0.01 0 +balourd balourd nom m s 0.73 0.54 0.67 0.41 +balourde balourd adj f s 0.82 0.68 0.14 0 +balourdise balourdise nom f s 0.02 0.88 0.02 0.81 +balourdises balourdise nom f p 0.02 0.88 0 0.07 +balourds balourd adj m p 0.82 0.68 0.28 0.14 +balpeau balpeau ono 0.01 0.61 0.01 0.61 +bals bal nom m p 30.25 25.54 1.67 7.23 +balsa balsa nom m s 0.13 0 0.13 0 +balsamier balsamier nom m s 0.01 0.07 0 0.07 +balsamiers balsamier nom m p 0.01 0.07 0.01 0 +balsamine balsamine nom f s 0 0.61 0 0.07 +balsamines balsamine nom f p 0 0.61 0 0.54 +balsamique balsamique adj s 0.1 0.47 0.1 0.41 +balsamiques balsamique adj m p 0.1 0.47 0 0.07 +balte balte adj s 0.52 2.23 0.05 0.34 +baltes balte adj p 0.52 2.23 0.47 1.89 +balthazar balthazar nom m s 0 0.54 0 0.47 +balthazars balthazar nom m p 0 0.54 0 0.07 +baltique baltique adj s 0.14 0.47 0.14 0.34 +baltiques baltique adj f p 0.14 0.47 0 0.14 +balto balto adv 0 0.54 0 0.54 +baluba baluba nom s 0 0.07 0 0.07 +baluchon baluchon nom m s 0.97 2.3 0.87 1.96 +baluchonnage baluchonnage nom m s 0 0.07 0 0.07 +baluchonne baluchonner ver 0 0.41 0 0.07 ind:pre:3s; +baluchonnent baluchonner ver 0 0.41 0 0.07 ind:pre:3p; +baluchonner baluchonner ver 0 0.41 0 0.2 inf; +baluchonneur baluchonneur nom m s 0 0.2 0 0.07 +baluchonneurs baluchonneur nom m p 0 0.2 0 0.14 +baluchonné baluchonner ver m s 0 0.41 0 0.07 par:pas; +baluchons baluchon nom m p 0.97 2.3 0.1 0.34 +balustrade balustrade nom f s 0.61 11.28 0.61 10.2 +balustrades balustrade nom f p 0.61 11.28 0 1.08 +balustre balustre nom m s 0 1.35 0 0.2 +balustres balustre nom m p 0 1.35 0 1.15 +balzacien balzacien adj m s 0 0.61 0 0.34 +balzacienne balzacien adj f s 0 0.61 0 0.14 +balzaciennes balzacien adj f p 0 0.61 0 0.07 +balzaciens balzacien adj m p 0 0.61 0 0.07 +balzanes balzane nom f p 0 0.07 0 0.07 +balèze balèze adj s 1.3 0.81 1.12 0.74 +balèzes balèze adj p 1.3 0.81 0.19 0.07 +bambara bambara adj m s 0 0.07 0 0.07 +bambara bambara nom s 0 0.07 0 0.07 +bambin bambin nom m s 1.35 4.66 0.87 2.16 +bambine bambin nom f s 1.35 4.66 0 0.14 +bambines bambin nom f p 1.35 4.66 0 0.14 +bambinette bambinette nom f s 0.01 0.07 0.01 0.07 +bambino bambino nom m s 0.37 0.34 0.33 0.27 +bambinos bambino nom m p 0.37 0.34 0.04 0.07 +bambins bambin nom m p 1.35 4.66 0.48 2.23 +bambochait bambocher ver 0.01 0.27 0 0.14 ind:imp:3s; +bamboche bamboche nom f s 0.02 0.07 0.02 0.07 +bambocher bambocher ver 0.01 0.27 0.01 0 inf; +bambocheurs bambocheur nom m p 0 0.14 0 0.14 +bambou bambou nom m s 1.73 6.15 1.32 3.78 +bamboula bamboula nom f s 1.29 0.27 1.29 0.27 +bambous bambou nom m p 1.73 6.15 0.41 2.36 +ban ban nom m s 1.66 2.16 0.76 1.76 +banal banal adj m s 8.66 26.22 4.88 11.28 +banale banal adj f s 8.66 26.22 2.75 9.93 +banalement banalement adv 0.16 1.22 0.16 1.22 +banales banal adj f p 8.66 26.22 0.78 2.84 +banalisait banaliser ver 0.7 0.81 0.01 0.07 ind:imp:3s; +banalisation banalisation nom f s 0 0.07 0 0.07 +banalise banaliser ver 0.7 0.81 0.08 0 ind:pre:3s; +banalisent banaliser ver 0.7 0.81 0 0.07 ind:pre:3p; +banaliser banaliser ver 0.7 0.81 0.16 0 inf; +banalisé banaliser ver m s 0.7 0.81 0.08 0 par:pas; +banalisée banaliser ver f s 0.7 0.81 0.26 0.47 par:pas; +banalisées banaliser ver f p 0.7 0.81 0.08 0 par:pas; +banalisés banaliser ver m p 0.7 0.81 0.04 0.2 par:pas; +banalité banalité nom f s 1.47 8.65 0.77 5.34 +banalités banalité nom f p 1.47 8.65 0.71 3.31 +banals banal adj m p 8.66 26.22 0.25 2.03 +banana bananer ver 1.04 0.2 0.81 0.14 ind:pas:3s; +bananas bananer ver 1.04 0.2 0.23 0 ind:pas:2s; +banane banane nom f s 11.14 7.57 6.09 4.05 +bananer bananer ver 1.04 0.2 0 0.07 inf; +bananeraie bananeraie nom f s 0.14 0.2 0.14 0.2 +bananes banane nom f p 11.14 7.57 5.05 3.51 +bananier bananier nom m s 0.76 3.85 0.18 0.61 +bananiers bananier nom m p 0.76 3.85 0.57 3.24 +bananière bananier adj f s 0.16 0.27 0.02 0 +banaux banal adj m p 8.66 26.22 0 0.14 +banc banc nom m s 10.76 66.42 8.96 48.31 +banc_titre banc_titre nom m s 0.14 0 0.14 0 +bancaire bancaire adj s 3.94 1.49 2.71 0.74 +bancaires bancaire adj p 3.94 1.49 1.23 0.74 +bancal bancal adj m s 0.53 3.18 0.29 1.42 +bancale bancal adj f s 0.53 3.18 0.2 1.08 +bancales bancal adj f p 0.53 3.18 0.02 0.34 +bancals bancal adj m p 0.53 3.18 0.02 0.34 +banche bancher ver 0.01 0 0.01 0 ind:pre:3s; +banco banco ono 0.42 0.41 0.42 0.41 +bancos banco nom m p 0.04 0.27 0.01 0.07 +bancroche bancroche adj s 0.01 0.14 0.01 0 +bancroches bancroche adj p 0.01 0.14 0 0.14 +bancs banc nom m p 10.76 66.42 1.81 18.11 +banda bander ver 14.5 15.54 0.01 0.54 ind:pas:3s; +bandage bandage nom m s 4.76 2.97 2.79 1.35 +bandages bandage nom m p 4.76 2.97 1.96 1.62 +bandagiste bandagiste nom s 0 0.14 0 0.14 +bandai bander ver 14.5 15.54 0 0.07 ind:pas:1s; +bandaient bander ver 14.5 15.54 0.02 0.2 ind:imp:3p; +bandais bander ver 14.5 15.54 0.12 0.61 ind:imp:1s;ind:imp:2s; +bandaison bandaison nom f s 0 0.74 0 0.54 +bandaisons bandaison nom f p 0 0.74 0 0.2 +bandait bander ver 14.5 15.54 0.18 1.49 ind:imp:3s; +bandana bandana nom m s 0.5 0.07 0.46 0.07 +bandanas bandana nom m p 0.5 0.07 0.04 0 +bandant bandant adj m s 1.46 1.55 0.33 0.27 +bandante bandant adj f s 1.46 1.55 1.04 0.68 +bandantes bandant adj f p 1.46 1.55 0.05 0.41 +bandants bandant adj m p 1.46 1.55 0.04 0.2 +bandasse bander ver 14.5 15.54 0 0.07 sub:imp:1s; +bande bande nom f s 78.36 72.23 69.1 52.36 +bande_annonce bande_annonce nom f s 0.51 0 0.41 0 +bande_son bande_son nom f s 0.09 0.27 0.09 0.27 +bandeau bandeau nom m s 2.6 6.49 2.34 4.73 +bandeaux bandeau nom m p 2.6 6.49 0.26 1.76 +bandelette bandelette nom f s 0.69 1.15 0.09 0.07 +bandelettes bandelette nom f p 0.69 1.15 0.61 1.08 +bandent bander ver 14.5 15.54 0.14 1.01 ind:pre:3p; +bander bander ver 14.5 15.54 5.34 5.07 inf; +bandera bandera nom f s 0.17 0.27 0.02 0.2 +banderai bander ver 14.5 15.54 0.15 0.14 ind:fut:1s; +banderaient bander ver 14.5 15.54 0.01 0.07 cnd:pre:3p; +banderait bander ver 14.5 15.54 0 0.07 cnd:pre:3s; +banderas bander ver 14.5 15.54 0.14 0.07 ind:fut:2s; +banderille banderille nom f s 0 0.88 0 0.41 +banderillero banderillero nom m s 0.1 0.07 0.1 0 +banderilleros banderillero nom m p 0.1 0.07 0 0.07 +banderilles banderille nom f p 0 0.88 0 0.47 +banderole banderole nom f s 1.34 4.19 0.67 2.23 +banderoles banderole nom f p 1.34 4.19 0.67 1.96 +bandes bande nom f p 78.36 72.23 9.26 19.86 +bande_annonce bande_annonce nom f p 0.51 0 0.1 0 +bandeur bandeur nom m s 0.07 0.14 0.03 0 +bandeurs bandeur nom m p 0.07 0.14 0.04 0.14 +bandez bander ver 14.5 15.54 0.82 0.14 imp:pre:2p;ind:pre:2p; +bandiez bander ver 14.5 15.54 0.02 0 ind:imp:2p; +bandit bandit nom m s 19.7 8.85 8.26 4.59 +banditisme banditisme nom m s 0.47 0.95 0.47 0.95 +bandits bandit nom m p 19.7 8.85 11.45 4.26 +bandoline bandoline nom f s 0 0.07 0 0.07 +bandonéon bandonéon nom m s 0 0.2 0 0.2 +bandothèque bandothèque nom f s 0.01 0 0.01 0 +bandoulière bandoulière nom f s 0.12 4.19 0.12 4.19 +bandé bander ver m s 14.5 15.54 0.6 0.81 par:pas; +bandée bandé adj f s 1.4 3.58 0.33 1.22 +bandées bandé adj f p 1.4 3.58 0 0.27 +bandés bandé adj m p 1.4 3.58 1.03 1.55 +bang bang ono 1.74 0.2 1.74 0.2 +bangladais bangladais nom m 0 0.07 0 0.07 +bangs bang nom m p 2.37 0.61 0.34 0.27 +banian banian nom m s 0.05 0.27 0.04 0.2 +banians banian nom m p 0.05 0.27 0.01 0.07 +banjo banjo nom m s 3.13 1.08 3.08 0.81 +banjos banjo nom m p 3.13 1.08 0.06 0.27 +bank_note bank_note nom f s 0 0.2 0 0.07 +bank_note bank_note nom f p 0 0.2 0 0.14 +banlieue banlieue nom f s 7.92 23.85 6.96 21.35 +banlieues banlieue nom f p 7.92 23.85 0.96 2.5 +banlieusard banlieusard nom m s 0.23 0.68 0.09 0.2 +banlieusarde banlieusard nom f s 0.23 0.68 0.01 0.14 +banlieusardes banlieusard nom f p 0.23 0.68 0.02 0 +banlieusards banlieusard nom m p 0.23 0.68 0.1 0.34 +banne banner ver 0.86 0.07 0.4 0 imp:pre:2s;ind:pre:3s; +banner banner ver 0.86 0.07 0.46 0.07 inf; +bannes banne nom f p 0 0.07 0 0.07 +banni bannir ver m s 7.03 3.31 2.48 1.49 par:pas; +bannie bannir ver f s 7.03 3.31 0.85 0.27 par:pas; +bannies bannir ver f p 7.03 3.31 0.07 0.14 par:pas; +bannir bannir ver 7.03 3.31 1.62 0.61 inf; +bannirait bannir ver 7.03 3.31 0.34 0.14 cnd:pre:3s; +bannirent bannir ver 7.03 3.31 0.02 0 ind:pas:3p; +bannis bannir ver m p 7.03 3.31 0.93 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bannissaient bannir ver 7.03 3.31 0 0.14 ind:imp:3p; +bannissait bannir ver 7.03 3.31 0 0.14 ind:imp:3s; +bannissant bannir ver 7.03 3.31 0.01 0.07 par:pre; +bannisse bannir ver 7.03 3.31 0.02 0 sub:pre:3s; +bannissement bannissement nom m s 0.62 0.47 0.59 0.34 +bannissements bannissement nom m p 0.62 0.47 0.03 0.14 +bannissez bannir ver 7.03 3.31 0.57 0.07 imp:pre:2p; +bannissons bannir ver 7.03 3.31 0.06 0 imp:pre:1p;ind:pre:1p; +bannit bannir ver 7.03 3.31 0.05 0.07 ind:pre:3s;ind:pas:3s; +bannière bannière nom f s 2.14 6.96 1.83 2.91 +bannières bannière nom f p 2.14 6.96 0.31 4.05 +banqua banquer ver 0.07 0.47 0 0.07 ind:pas:3s; +banque banque nom f s 79.35 30.88 70.79 25.54 +banquer banquer ver 0.07 0.47 0.04 0.27 inf; +banquerai banquer ver 0.07 0.47 0 0.07 ind:fut:1s; +banqueroute banqueroute nom f s 1.02 0.74 0.82 0.68 +banqueroutes banqueroute nom f p 1.02 0.74 0.2 0.07 +banqueroutier banqueroutier nom m s 0.11 0 0.01 0 +banqueroutiers banqueroutier nom m p 0.11 0 0.1 0 +banques banque nom f p 79.35 30.88 8.56 5.34 +banquet banquet nom m s 4.41 5.88 3.62 4.12 +banquets banquet nom m p 4.41 5.88 0.79 1.76 +banquette banquette nom f s 3.02 30.88 2.66 24.26 +banquettes banquette nom f p 3.02 30.88 0.36 6.62 +banqueté banqueter ver m s 0.04 0 0.04 0 par:pas; +banquier banquier nom m s 6.38 12.7 4.7 8.38 +banquiers banquier nom m p 6.38 12.7 1.33 3.99 +banquise banquise nom f s 0.66 1.55 0.65 1.42 +banquises banquise nom f p 0.66 1.55 0.01 0.14 +banquistes banquiste nom p 0 0.14 0 0.14 +banquière banquier nom f s 6.38 12.7 0.33 0.2 +banquières banquier nom f p 6.38 12.7 0.03 0.14 +banqué banquer ver m s 0.07 0.47 0.04 0.07 par:pas; +bans ban nom m p 1.66 2.16 0.9 0.41 +bantou bantou nom m s 0.14 0 0.14 0 +bantoue bantou adj f s 0.14 0.07 0.02 0.07 +bantu bantu nom m s 0.01 0 0.01 0 +banyan banyan nom m s 0.07 0 0.07 0 +banyuls banyuls nom m 0 0.74 0 0.74 +baobab baobab nom m s 0.58 1.15 0.18 0.81 +baobabs baobab nom m p 0.58 1.15 0.4 0.34 +baou baou nom m s 0 0.2 0 0.2 +baptisa baptiser ver 9.9 16.35 0.33 1.35 ind:pas:3s; +baptisai baptiser ver 9.9 16.35 0 0.07 ind:pas:1s; +baptisaient baptiser ver 9.9 16.35 0 0.34 ind:imp:3p; +baptisais baptiser ver 9.9 16.35 0.01 0.07 ind:imp:1s; +baptisait baptiser ver 9.9 16.35 0.05 0.95 ind:imp:3s; +baptisant baptiser ver 9.9 16.35 0.14 0.07 par:pre; +baptise baptiser ver 9.9 16.35 1.96 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +baptisent baptiser ver 9.9 16.35 0 0.41 ind:pre:3p; +baptiser baptiser ver 9.9 16.35 1.82 1.96 inf; +baptisera baptiser ver 9.9 16.35 0.2 0.14 ind:fut:3s; +baptiserai baptiser ver 9.9 16.35 0.01 0 ind:fut:1s; +baptiseraient baptiser ver 9.9 16.35 0.01 0 cnd:pre:3p; +baptiserait baptiser ver 9.9 16.35 0 0.14 cnd:pre:3s; +baptiseront baptiser ver 9.9 16.35 0.02 0.07 ind:fut:3p; +baptises baptiser ver 9.9 16.35 0.04 0.14 ind:pre:2s; +baptiseur baptiseur nom m s 0.02 0.07 0.02 0.07 +baptisez baptiser ver 9.9 16.35 0.06 0 imp:pre:2p;ind:pre:2p; +baptisions baptiser ver 9.9 16.35 0.14 0.2 ind:imp:1p; +baptismal baptismal adj m s 0.19 1.22 0 0.2 +baptismale baptismal adj f s 0.19 1.22 0.01 0.2 +baptismales baptismal adj f p 0.19 1.22 0 0.07 +baptismaux baptismal adj m p 0.19 1.22 0.17 0.74 +baptisons baptiser ver 9.9 16.35 0.03 0.07 imp:pre:1p;ind:pre:1p; +baptiste baptiste adj s 0.77 0.34 0.69 0.34 +baptistes baptiste nom p 0.24 0.07 0.19 0.07 +baptistère baptistère nom m s 0 0.41 0 0.41 +baptisèrent baptiser ver 9.9 16.35 0.06 0.07 ind:pas:3p; +baptisé baptiser ver m s 9.9 16.35 3.61 5.54 par:pas; +baptisée baptiser ver f s 9.9 16.35 0.99 1.96 par:pas; +baptisées baptiser ver f p 9.9 16.35 0.04 0.27 par:pas; +baptisés baptiser ver m p 9.9 16.35 0.41 1.08 par:pas; +baptême baptême nom m s 4.84 10.34 4.41 9.39 +baptêmes baptême nom m p 4.84 10.34 0.43 0.95 +baquet baquet nom m s 0.48 4.86 0.46 3.65 +baquets baquet nom m p 0.48 4.86 0.02 1.22 +bar bar nom m s 67.57 61.35 60.17 52.57 +bar_hôtel bar_hôtel nom m s 0.01 0 0.01 0 +bar_mitsva bar_mitsva nom f 0.41 0.07 0.41 0.07 +bar_restaurant bar_restaurant nom m s 0 0.07 0 0.07 +bar_tabac bar_tabac nom m s 0.03 0.61 0.03 0.61 +baragouin baragouin nom m s 0.12 0.41 0.11 0.41 +baragouinage baragouinage nom m s 0.1 0 0.1 0 +baragouinaient baragouiner ver 0.68 1.49 0 0.07 ind:imp:3p; +baragouinait baragouiner ver 0.68 1.49 0.01 0.54 ind:imp:3s; +baragouinant baragouiner ver 0.68 1.49 0.25 0.2 par:pre; +baragouine baragouiner ver 0.68 1.49 0.19 0.2 ind:pre:1s;ind:pre:3s; +baragouinent baragouiner ver 0.68 1.49 0.02 0.14 ind:pre:3p; +baragouiner baragouiner ver 0.68 1.49 0.07 0.2 inf; +baragouines baragouiner ver 0.68 1.49 0.09 0 ind:pre:2s; +baragouineur baragouineur nom m s 0.01 0 0.01 0 +baragouinez baragouiner ver 0.68 1.49 0.04 0 ind:pre:2p; +baragouins baragouin nom m p 0.12 0.41 0.01 0 +baragouiné baragouiner ver m s 0.68 1.49 0.01 0.14 par:pas; +baraka baraka nom f s 0.18 0.47 0.18 0.47 +baralipton baralipton nom m s 0 0.07 0 0.07 +baraque baraque nom f s 12.27 30.47 11.1 22.84 +baraquement baraquement nom m s 1.35 2.64 0.68 1.01 +baraquements baraquement nom m p 1.35 2.64 0.67 1.62 +baraques baraque nom f p 12.27 30.47 1.17 7.64 +baraqué baraqué adj m s 1.04 0.68 0.96 0.41 +baraquée baraqué adj f s 1.04 0.68 0.02 0.14 +baraqués baraqué adj m p 1.04 0.68 0.06 0.14 +baraterie baraterie nom f s 0.01 0 0.01 0 +baratin baratin nom m s 4.03 2.97 3.9 2.84 +baratinais baratiner ver 1.89 1.15 0.03 0 ind:imp:1s;ind:imp:2s; +baratinait baratiner ver 1.89 1.15 0.11 0.07 ind:imp:3s; +baratine baratiner ver 1.89 1.15 0.75 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +baratinent baratiner ver 1.89 1.15 0.01 0 ind:pre:3p; +baratiner baratiner ver 1.89 1.15 0.42 0.68 inf; +baratines baratiner ver 1.89 1.15 0.13 0 ind:pre:2s; +baratineur baratineur nom m s 0.74 0.27 0.44 0.2 +baratineurs baratineur nom m p 0.74 0.27 0.17 0.07 +baratineuse baratineur nom f s 0.74 0.27 0.13 0 +baratinez baratiner ver 1.89 1.15 0.05 0 imp:pre:2p;ind:pre:2p; +baratins baratin nom m p 4.03 2.97 0.14 0.14 +baratiné baratiner ver m s 1.89 1.15 0.21 0.27 par:pas; +baratinée baratiner ver f s 1.89 1.15 0.15 0 par:pas; +baratinés baratiner ver m p 1.89 1.15 0.02 0 par:pas; +barattage barattage nom m s 0.1 0 0.1 0 +barattait baratter ver 0.14 0.47 0 0.14 ind:imp:3s; +barattant baratter ver 0.14 0.47 0 0.07 par:pre; +baratte baratte nom f s 0.03 0.41 0.03 0.34 +barattent baratter ver 0.14 0.47 0 0.07 ind:pre:3p; +baratter baratter ver 0.14 0.47 0.13 0.07 inf; +barattes baratte nom f p 0.03 0.41 0 0.07 +baratté baratter ver m s 0.14 0.47 0.01 0 par:pas; +barattés baratter ver m p 0.14 0.47 0 0.07 par:pas; +barba barber ver 0.78 1.69 0.14 0.27 ind:pas:3s; +barbacane barbacane nom f s 0.02 0.14 0.02 0.07 +barbacanes barbacane nom f p 0.02 0.14 0 0.07 +barbaient barber ver 0.78 1.69 0.01 0 ind:imp:3p; +barbait barber ver 0.78 1.69 0.03 0.14 ind:imp:3s; +barbant barbant adj m s 1.9 0.27 1.02 0.2 +barbante barbant adj f s 1.9 0.27 0.65 0 +barbantes barbant adj f p 1.9 0.27 0.05 0 +barbants barbant adj m p 1.9 0.27 0.18 0.07 +barbaque barbaque nom f s 0.24 3.18 0.24 3.18 +barbara barbara nom s 0.05 0 0.05 0 +barbare barbare nom s 5.15 5.47 2.03 1.62 +barbarement barbarement adv 0 0.14 0 0.14 +barbares barbare nom p 5.15 5.47 3.12 3.85 +barbaresque barbaresque adj m s 0 0.95 0 0.41 +barbaresques barbaresque nom p 0.05 0.61 0.05 0.54 +barbarie barbarie nom f s 1.37 3.72 1.36 3.58 +barbaries barbarie nom f p 1.37 3.72 0.01 0.14 +barbarisme barbarisme nom m s 0.04 0.34 0.04 0.14 +barbarismes barbarisme nom m p 0.04 0.34 0 0.2 +barbe barbe nom s 24.15 50.54 23.4 47.7 +barbe_de_capucin barbe_de_capucin nom f s 0 0.07 0 0.07 +barbeau barbeau nom m s 0.01 1.08 0.01 0.74 +barbeaux barbeau nom m p 0.01 1.08 0 0.34 +barbecue barbecue nom m s 5.87 0.47 5.47 0.47 +barbecues barbecue nom m p 5.87 0.47 0.39 0 +barbelé barbelé adj m s 0.86 2.97 0.35 0.81 +barbelée barbelé adj f s 0.86 2.97 0.05 0.41 +barbelées barbelé adj f p 0.86 2.97 0.12 0.14 +barbelés barbelé nom m p 3.56 8.38 3.25 7.36 +barbent barber ver 0.78 1.69 0 0.14 ind:pre:3p; +barber barber ver 0.78 1.69 0.06 0.2 inf; +barbera barber ver 0.78 1.69 0 0.07 ind:fut:3s; +barberait barber ver 0.78 1.69 0 0.07 cnd:pre:3s; +barbes barbe nom p 24.15 50.54 0.75 2.84 +barbet barbet nom m s 0 0.41 0 0.34 +barbets barbet nom m p 0 0.41 0 0.07 +barbette barbette adj f s 0.01 0 0.01 0 +barbiche barbiche nom f s 0.18 3.78 0.18 3.65 +barbiches barbiche nom f p 0.18 3.78 0 0.14 +barbichette barbichette nom f s 0.38 0.81 0.38 0.81 +barbichu barbichu adj m s 0.01 0.68 0.01 0.61 +barbichus barbichu adj m p 0.01 0.68 0 0.07 +barbier barbier nom m s 3.62 22.5 3.57 22.16 +barbiers barbier nom m p 3.62 22.5 0.05 0.34 +barbillon barbillon nom m s 0.01 0.81 0 0.34 +barbillons barbillon nom m p 0.01 0.81 0.01 0.47 +barbiquet barbiquet nom m s 0 0.41 0 0.07 +barbiquets barbiquet nom m p 0 0.41 0 0.34 +barbiturique barbiturique nom m s 0.8 0.61 0.1 0.14 +barbituriques barbiturique nom m p 0.8 0.61 0.7 0.47 +barbon barbon nom m s 0.03 0.61 0.02 0.54 +barbons barbon nom m p 0.03 0.61 0.01 0.07 +barbot barbot nom m s 0 0.2 0 0.2 +barbota barboter ver 0.75 3.18 0 0.14 ind:pas:3s; +barbotages barbotage nom m p 0 0.07 0 0.07 +barbotaient barboter ver 0.75 3.18 0 0.14 ind:imp:3p; +barbotait barboter ver 0.75 3.18 0 0.88 ind:imp:3s; +barbotant barboter ver 0.75 3.18 0.01 0.41 par:pre; +barbote barboter ver 0.75 3.18 0.04 0.2 ind:pre:1s;ind:pre:3s; +barbotent barboter ver 0.75 3.18 0 0.14 ind:pre:3p; +barboter barboter ver 0.75 3.18 0.26 0.88 inf; +barboterais barboter ver 0.75 3.18 0 0.07 cnd:pre:1s; +barboterait barboter ver 0.75 3.18 0 0.07 cnd:pre:3s; +barboteuse barboteur nom f s 0.03 0.34 0.02 0.2 +barboteuses barboteur nom f p 0.03 0.34 0.01 0.14 +barbotière barbotière nom f s 0 0.07 0 0.07 +barbotons barboter ver 0.75 3.18 0.16 0.14 imp:pre:1p;ind:pre:1p; +barbotte barbotte nom f s 0.03 0.07 0.02 0.07 +barbottes barbotte nom f p 0.03 0.07 0.01 0 +barboté barboter ver m s 0.75 3.18 0.28 0.14 par:pas; +barbouilla barbouiller ver 1.31 8.99 0 0.27 ind:pas:3s; +barbouillage barbouillage nom m s 0.3 0.81 0 0.41 +barbouillages barbouillage nom m p 0.3 0.81 0.3 0.41 +barbouillai barbouiller ver 1.31 8.99 0 0.07 ind:pas:1s; +barbouillaient barbouiller ver 1.31 8.99 0 0.2 ind:imp:3p; +barbouillais barbouiller ver 1.31 8.99 0 0.14 ind:imp:1s; +barbouillait barbouiller ver 1.31 8.99 0 0.74 ind:imp:3s; +barbouillant barbouiller ver 1.31 8.99 0.01 0.41 par:pre; +barbouille barbouiller ver 1.31 8.99 0.29 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +barbouillent barbouiller ver 1.31 8.99 0 0.2 ind:pre:3p; +barbouiller barbouiller ver 1.31 8.99 0.67 1.15 inf; +barbouilles barbouiller ver 1.31 8.99 0.1 0.14 ind:pre:2s; +barbouilleur barbouilleur nom m s 0 1.22 0 0.81 +barbouilleurs barbouilleur nom m p 0 1.22 0 0.41 +barbouillis barbouillis nom m 0 0.07 0 0.07 +barbouillèrent barbouiller ver 1.31 8.99 0 0.14 ind:pas:3p; +barbouillé barbouillé adj m s 0.62 1.55 0.35 1.15 +barbouillée barbouillé adj f s 0.62 1.55 0.12 0.07 +barbouillées barbouillé adj f p 0.62 1.55 0.01 0.2 +barbouillés barbouillé adj m p 0.62 1.55 0.14 0.14 +barbouze barbouze nom s 0.33 0.68 0.16 0.34 +barbouzes barbouze nom p 0.33 0.68 0.17 0.34 +barbu barbu nom m s 1.7 3.65 1.37 2.77 +barbue barbu adj f s 1.46 8.31 0.08 0.74 +barbues barbu adj f p 1.46 8.31 0 0.14 +barbules barbule nom f p 0.01 0 0.01 0 +barbus barbu nom m p 1.7 3.65 0.34 0.88 +barbé barber ver m s 0.78 1.69 0.04 0.07 par:pas; +barbés barber ver m p 0.78 1.69 0.1 0.07 par:pas; +barca barca adv 0.16 0.2 0.16 0.2 +barcarolle barcarolle nom f s 0.03 0.14 0.03 0.14 +barcasse barcasse nom f s 0 0.68 0 0.41 +barcasses barcasse nom f p 0 0.68 0 0.27 +barda barda nom m s 1.62 2.16 1.46 1.55 +bardage bardage nom m s 0.01 0 0.01 0 +bardaient barder ver 2.58 6.55 0 0.14 ind:imp:3p; +bardait barder ver 2.58 6.55 0.05 0.41 ind:imp:3s; +bardane bardane nom f s 0.04 0.34 0.04 0.2 +bardanes bardane nom f p 0.04 0.34 0 0.14 +bardas barda nom m p 1.62 2.16 0.16 0.61 +barde barder ver 2.58 6.55 0.3 0.2 ind:pre:3s; +bardeau bardeau nom m s 0.08 0.41 0 0.14 +bardeaux bardeau nom m p 0.08 0.41 0.08 0.27 +barder barder ver 2.58 6.55 1.84 0.47 inf; +bardera barder ver 2.58 6.55 0.15 0.07 ind:fut:3s; +barderait barder ver 2.58 6.55 0 0.07 cnd:pre:3s; +bardes barde nom p 0.18 0.68 0 0.27 +bardeurs bardeur nom m p 0 0.07 0 0.07 +bardiques bardique adj f p 0 0.07 0 0.07 +bardo bardo nom m s 0.11 0.2 0.11 0.2 +bardolino bardolino nom m s 0.14 0 0.14 0 +bardot bardot nom m s 0.27 0.2 0.27 0.07 +bardots bardot nom m p 0.27 0.2 0 0.14 +bardé barder ver m s 2.58 6.55 0.07 2.3 par:pas; +bardée barder ver f s 2.58 6.55 0.01 1.22 par:pas; +bardées barder ver f p 2.58 6.55 0.01 0.54 par:pas; +bardés barder ver m p 2.58 6.55 0.14 1.15 par:pas; +baret baret nom m s 0 0.07 0 0.07 +barge barge adj s 1.7 0.14 1.6 0.07 +barges barge nom f p 1 0.74 0.28 0.34 +barguigna barguigner ver 0.14 0.34 0 0.07 ind:pas:3s; +barguigner barguigner ver 0.14 0.34 0.14 0.2 inf; +barguigné barguigner ver m s 0.14 0.34 0 0.07 par:pas; +baril baril nom m s 2.71 3.04 1.81 2.03 +barillet barillet nom m s 0.69 2.03 0.67 1.96 +barillets barillet nom m p 0.69 2.03 0.03 0.07 +barils baril nom m p 2.71 3.04 0.9 1.01 +barine barine nom m s 0.22 0 0.22 0 +bariolage bariolage nom m s 0 0.61 0 0.41 +bariolages bariolage nom m p 0 0.61 0 0.2 +bariolaient barioler ver 0.03 2.64 0 0.07 ind:imp:3p; +bariolant barioler ver 0.03 2.64 0 0.14 par:pre; +bariole barioler ver 0.03 2.64 0 0.07 ind:pre:3s; +bariolures bariolure nom f p 0 0.07 0 0.07 +bariolé bariolé adj m s 0.21 5.47 0.02 1.35 +bariolée bariolé adj f s 0.21 5.47 0.03 1.76 +bariolées bariolé adj f p 0.21 5.47 0.01 0.88 +bariolés bariolé adj m p 0.21 5.47 0.16 1.49 +barje barje adj m s 0 0.27 0 0.2 +barjes barje adj p 0 0.27 0 0.07 +barjo barjo adj m s 1.02 0.14 0.95 0.14 +barjos barjo nom m p 1.01 0.14 0.28 0 +barjot barjot adj m s 0.84 0.47 0.63 0.34 +barjots barjot adj m p 0.84 0.47 0.21 0.14 +barmaid barmaid nom f s 0.67 1.82 0.65 1.76 +barmaids barmaid nom f p 0.67 1.82 0.02 0.07 +barman barman nom m s 7.91 11.01 7.53 10.14 +barmans barman nom m p 7.91 11.01 0.14 0 +barmen barman nom m p 7.91 11.01 0.24 0.88 +barnum barnum nom m s 0.03 0.2 0.03 0.2 +barolo barolo nom m s 0.05 0 0.05 0 +baromètre baromètre nom m s 0.57 2.91 0.56 2.3 +baromètres baromètre nom m p 0.57 2.91 0.01 0.61 +barométrique barométrique adj s 0.04 0.14 0.04 0.14 +baron baron nom m s 20.82 28.24 16.07 17.64 +baronet baronet nom m s 0.07 0.07 0.07 0.07 +baronnait baronner ver 0 0.2 0 0.07 ind:imp:3s; +baronne baron nom f s 20.82 28.24 4.17 7.03 +baronner baronner ver 0 0.2 0 0.07 inf; +baronnes baron nom f p 20.82 28.24 0.02 0.07 +baronnet baronnet nom m s 0.1 0.34 0.1 0.07 +baronnets baronnet nom m p 0.1 0.34 0 0.27 +baronnez baronner ver 0 0.2 0 0.07 ind:pre:2p; +baronnie baronnie nom f s 0.02 0.14 0.02 0.07 +baronnies baronnie nom f p 0.02 0.14 0 0.07 +barons baron nom m p 20.82 28.24 0.56 3.51 +baroque baroque adj s 1.24 4.86 0.91 2.91 +baroques baroque adj p 1.24 4.86 0.34 1.96 +barotraumatisme barotraumatisme nom m s 0.01 0 0.01 0 +baroud baroud nom m s 0.04 1.35 0.04 1.35 +baroudeur baroudeur nom m s 0.32 0.68 0.05 0.34 +baroudeurs baroudeur nom m p 0.32 0.68 0.13 0.14 +baroudeuse baroudeur nom f s 0.32 0.68 0.14 0.2 +baroudé barouder ver m s 0.28 0 0.28 0 par:pas; +barouf barouf nom m s 0.28 0.68 0.28 0.68 +barque barque nom f s 10.4 41.28 9.52 29.93 +barques barque nom f p 10.4 41.28 0.89 11.35 +barquette barquette nom f s 0.27 0.54 0.15 0.14 +barquettes barquette nom f p 0.27 0.54 0.12 0.41 +barra barrer ver 26.71 32.36 0.13 1.01 ind:pas:3s; +barracuda barracuda nom m s 2.26 0.34 2.19 0.34 +barracudas barracuda nom m p 2.26 0.34 0.08 0 +barrage barrage nom m s 13.4 19.66 9.6 10.68 +barrages barrage nom m p 13.4 19.66 3.8 8.99 +barrai barrer ver 26.71 32.36 0 0.14 ind:pas:1s; +barraient barrer ver 26.71 32.36 0.03 1.35 ind:imp:3p; +barrais barrer ver 26.71 32.36 0.04 0.27 ind:imp:1s;ind:imp:2s; +barrait barrer ver 26.71 32.36 0.34 4.39 ind:imp:3s; +barrant barrer ver 26.71 32.36 0.03 2.23 par:pre; +barre barre nom f s 18.78 29.39 15.59 23.18 +barreau barreau nom m s 7.61 19.53 2.15 3.99 +barreaudées barreaudé adj f p 0 0.07 0 0.07 +barreaux barreau nom m p 7.61 19.53 5.46 15.54 +barrent barrer ver 26.71 32.36 0.75 0.95 ind:pre:3p; +barrer barrer ver 26.71 32.36 4.58 4.8 inf; +barrera barrer ver 26.71 32.36 0.06 0.41 ind:fut:3s; +barrerai barrer ver 26.71 32.36 0.01 0.07 ind:fut:1s; +barrerais barrer ver 26.71 32.36 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +barreront barrer ver 26.71 32.36 0.03 0.14 ind:fut:3p; +barres barre nom f p 18.78 29.39 3.19 6.22 +barrette barrette nom f s 0.46 2.5 0.33 1.42 +barrettes barrette nom f p 0.46 2.5 0.13 1.08 +barreur barreur nom m s 0.07 0 0.05 0 +barreurs barreur nom m p 0.07 0 0.01 0 +barreuse barreur nom f s 0.07 0 0.01 0 +barrez barrer ver 26.71 32.36 4.38 0.68 imp:pre:2p;ind:pre:2p; +barri barrir ver m s 0.1 0.54 0.01 0.07 par:pas; +barricada barricader ver 2.46 5.41 0 0.07 ind:pas:3s; +barricadai barricader ver 2.46 5.41 0 0.14 ind:pas:1s; +barricadaient barricader ver 2.46 5.41 0 0.2 ind:imp:3p; +barricadait barricader ver 2.46 5.41 0 0.54 ind:imp:3s; +barricade barricade nom f s 2.68 7.57 0.94 3.11 +barricadent barricader ver 2.46 5.41 0.05 0.41 ind:pre:3p; +barricader barricader ver 2.46 5.41 0.51 0.95 inf; +barricaderait barricader ver 2.46 5.41 0 0.14 cnd:pre:3s; +barricades barricade nom f p 2.68 7.57 1.74 4.46 +barricadez barricader ver 2.46 5.41 0.56 0.07 imp:pre:2p;ind:pre:2p; +barricadier barricadier nom m s 0 0.14 0 0.07 +barricadières barricadier nom f p 0 0.14 0 0.07 +barricadons barricader ver 2.46 5.41 0.07 0 imp:pre:1p;ind:pre:1p; +barricadèrent barricader ver 2.46 5.41 0.01 0.07 ind:pas:3p; +barricadé barricader ver m s 2.46 5.41 0.52 1.08 par:pas; +barricadée barricader ver f s 2.46 5.41 0.07 0.34 par:pas; +barricadées barricader ver f p 2.46 5.41 0.06 0.47 par:pas; +barricadés barricader ver m p 2.46 5.41 0.14 0.61 par:pas; +barrique barrique nom f s 0.99 1.55 0.68 0.81 +barriques barrique nom f p 0.99 1.55 0.31 0.74 +barris barrir ver m p 0.1 0.54 0.07 0 imp:pre:2s;par:pas; +barrissait barrir ver 0.1 0.54 0 0.2 ind:imp:3s; +barrissant barrir ver 0.1 0.54 0.03 0.07 par:pre; +barrissement barrissement nom m s 0.01 0.88 0 0.54 +barrissements barrissement nom m p 0.01 0.88 0.01 0.34 +barrissent barrir ver 0.1 0.54 0 0.07 ind:pre:3p; +barriste barriste nom s 0 0.07 0 0.07 +barrit barrir ver 0.1 0.54 0 0.14 ind:pre:3s; +barrière barrière nom f s 9.13 22.91 7.33 17.36 +barrières barrière nom f p 9.13 22.91 1.8 5.54 +barrons barrer ver 26.71 32.36 0.85 0.2 imp:pre:1p;ind:pre:1p; +barrèrent barrer ver 26.71 32.36 0.01 0.14 ind:pas:3p; +barré barrer ver m s 26.71 32.36 4.04 4.8 par:pas; +barrée barrer ver f s 26.71 32.36 1.88 3.18 par:pas; +barrées barrer ver f p 26.71 32.36 0.25 0.61 par:pas; +barrés barré adj m p 3.36 2.64 0.69 0.81 +barrésien barrésien nom m s 0 0.07 0 0.07 +bars bar nom m p 67.57 61.35 7.39 8.78 +bartavelle bartavelle nom f s 1.61 1.08 0.67 0 +bartavelles bartavelle nom f p 1.61 1.08 0.94 1.08 +barye barye nom f s 0.01 0 0.01 0 +baryon baryon nom m s 0.01 0 0.01 0 +baryte baryte nom f s 0 0.07 0 0.07 +baryton baryton nom m s 0.83 2.7 0.78 2.5 +barytonnant barytonner ver 0 0.14 0 0.07 par:pre; +barytonner barytonner ver 0 0.14 0 0.07 inf; +barytons baryton nom m p 0.83 2.7 0.05 0.2 +baryté baryté adj m s 0.01 0 0.01 0 +baryum baryum nom m s 0.06 0.14 0.06 0.14 +barzoï barzoï nom m s 0.07 0.07 0.07 0.07 +barème barème nom m s 0.31 0.54 0.17 0.34 +barèmes barème nom m p 0.31 0.54 0.14 0.2 +bas bas adj m 85.56 187.09 73.86 99.8 +bas_bleu bas_bleu nom m s 0.01 0.47 0.01 0.34 +bas_bleu bas_bleu nom m p 0.01 0.47 0 0.14 +bas_côté bas_côté nom m s 0.6 5.34 0.58 3.58 +bas_côté bas_côté nom m p 0.6 5.34 0.02 1.76 +bas_empire bas_empire nom m 0 0.07 0 0.07 +bas_flanc bas_flanc nom m 0 0.14 0 0.14 +bas_fond bas_fond nom m s 1.05 3.72 0.02 1.62 +bas_fond bas_fond nom m p 1.05 3.72 1.03 2.09 +bas_relief bas_relief nom m s 0.09 1.22 0.08 0.34 +bas_relief bas_relief nom m p 0.09 1.22 0.01 0.88 +bas_ventre bas_ventre nom m s 0.23 2.3 0.23 2.3 +basa baser ver 15.61 2.7 0.02 0 ind:pas:3s; +basaient baser ver 15.61 2.7 0.1 0.07 ind:imp:3p; +basait baser ver 15.61 2.7 0.04 0.14 ind:imp:3s; +basal basal adj m s 0.15 0 0.15 0 +basalte basalte nom m s 0.03 1.01 0.03 0.95 +basaltes basalte nom m p 0.03 1.01 0 0.07 +basaltique basaltique adj s 0 0.34 0 0.34 +basane basane nom f s 0.01 0.95 0 0.88 +basanes basane nom f p 0.01 0.95 0.01 0.07 +basant baser ver 15.61 2.7 1.47 0 par:pre; +basané basané adj m s 0.44 2.5 0.32 1.69 +basanée basané adj f s 0.44 2.5 0.01 0.47 +basanées basané adj f p 0.44 2.5 0.01 0.14 +basanés basané adj m p 0.44 2.5 0.1 0.2 +bascula basculer ver 5.29 31.35 0.22 3.78 ind:pas:3s; +basculai basculer ver 5.29 31.35 0 0.27 ind:pas:1s; +basculaient basculer ver 5.29 31.35 0.1 0.74 ind:imp:3p; +basculais basculer ver 5.29 31.35 0 0.14 ind:imp:1s;ind:imp:2s; +basculait basculer ver 5.29 31.35 0.01 2.5 ind:imp:3s; +basculant basculant adj m s 0.06 0.95 0.04 0.54 +basculante basculant adj f s 0.06 0.95 0 0.27 +basculants basculant adj m p 0.06 0.95 0.03 0.14 +bascule basculer ver 5.29 31.35 1.12 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +basculement basculement nom m s 0.04 0.14 0.04 0.14 +basculent basculer ver 5.29 31.35 0.02 0.74 ind:pre:3p; +basculer basculer ver 5.29 31.35 2.33 10.95 inf; +basculera basculer ver 5.29 31.35 0 0.2 ind:fut:3s; +basculerai basculer ver 5.29 31.35 0 0.07 ind:fut:1s; +basculerais basculer ver 5.29 31.35 0.14 0 cnd:pre:2s; +basculerait basculer ver 5.29 31.35 0.01 0.14 cnd:pre:3s; +basculeront basculer ver 5.29 31.35 0.14 0.07 ind:fut:3p; +bascules basculer ver 5.29 31.35 0.03 0.07 ind:pre:2s; +basculez basculer ver 5.29 31.35 0.15 0 imp:pre:2p;ind:pre:2p; +basculions basculer ver 5.29 31.35 0 0.07 ind:imp:1p; +basculâmes basculer ver 5.29 31.35 0 0.07 ind:pas:1p; +basculât basculer ver 5.29 31.35 0 0.07 sub:imp:3s; +basculèrent basculer ver 5.29 31.35 0 0.34 ind:pas:3p; +basculé basculer ver m s 5.29 31.35 1.02 3.72 par:pas; +basculée basculer ver f s 5.29 31.35 0 0.54 par:pas; +basculées basculer ver f p 5.29 31.35 0.01 0.07 par:pas; +basculés basculer ver m p 5.29 31.35 0.01 0.2 par:pas; +base base nom f s 59.22 44.46 51.69 31.96 +base_ball base_ball nom m s 10.12 1.28 10.12 1.28 +baseball baseball nom m s 6.95 0 6.95 0 +basent baser ver 15.61 2.7 0.23 0 ind:pre:3p; +baser baser ver 15.61 2.7 0.44 0.07 inf; +basera baser ver 15.61 2.7 0.01 0 ind:fut:3s; +baseront baser ver 15.61 2.7 0.03 0 ind:fut:3p; +bases base nom f p 59.22 44.46 7.53 12.5 +basez baser ver 15.61 2.7 0.35 0.07 imp:pre:2p;ind:pre:2p; +basic basic nom m s 0.03 0 0.03 0 +basilaire basilaire adj s 0.04 0 0.04 0 +basileus basileus nom m 0.04 0 0.04 0 +basilic basilic nom m s 1.86 1.01 1.86 1.01 +basilicum basilicum nom m s 0 0.07 0 0.07 +basilique basilique nom f s 0.66 4.19 0.52 3.92 +basiliques basilique nom f p 0.66 4.19 0.14 0.27 +basin basin nom m s 0 0.07 0 0.07 +basique basique adj s 1.3 0 0.85 0 +basiques basique adj p 1.3 0 0.45 0 +basket basket nom s 16.48 3.45 10.91 0.88 +basket_ball basket_ball nom m s 1.38 0.34 1.38 0.34 +baskets basket nom p 16.48 3.45 5.56 2.57 +basketteur basketteur nom m s 0.43 0.2 0.31 0.07 +basketteurs basketteur nom m p 0.43 0.2 0.1 0.07 +basketteuse basketteur nom f s 0.43 0.2 0.01 0 +basketteuses basketteur nom f p 0.43 0.2 0.01 0.07 +basmati basmati nom m s 0.03 0 0.03 0 +basoche basoche nom f s 0 0.07 0 0.07 +basons baser ver 15.61 2.7 0.02 0.07 imp:pre:1p;ind:pre:1p; +basquaise basquais adj f s 0.13 0.14 0.13 0.14 +basque basque adj s 8.73 3.58 7.51 3.24 +basques basque nom p 4.12 2.64 3.52 2.16 +bassa bassa nom s 0 0.14 0 0.07 +bassas bassa nom p 0 0.14 0 0.07 +basse bas adj f s 85.56 187.09 9.54 71.28 +basse_cour basse_cour nom f s 0.81 3.85 0.57 3.65 +basse_fosse basse_fosse nom f s 0.01 0.2 0.01 0.14 +basse_taille basse_taille nom f s 0 0.14 0 0.14 +bassement bassement adv 0.35 0.54 0.35 0.54 +basses bas adj f p 85.56 187.09 2.15 16.01 +basse_cour basse_cour nom f p 0.81 3.85 0.23 0.2 +basse_fosse basse_fosse nom f p 0.01 0.2 0 0.07 +bassesse bassesse nom f s 1.72 3.65 1.15 2.5 +bassesses bassesse nom f p 1.72 3.65 0.57 1.15 +basset basset nom m s 0.7 1.49 0.53 1.28 +bassets basset nom m p 0.7 1.49 0.17 0.2 +bassette bassette nom f s 0.01 0.07 0.01 0.07 +bassin bassin nom m s 5.03 25.2 4.51 21.22 +bassinaient bassiner ver 0.46 1.42 0 0.07 ind:imp:3p; +bassinais bassiner ver 0.46 1.42 0 0.07 ind:imp:1s; +bassinait bassiner ver 0.46 1.42 0.02 0.07 ind:imp:3s; +bassinant bassiner ver 0.46 1.42 0 0.07 par:pre; +bassine bassine nom f s 1.59 8.99 1.55 6.55 +bassiner bassiner ver 0.46 1.42 0.23 0.54 inf; +bassines bassine nom f p 1.59 8.99 0.04 2.43 +bassinet bassinet nom m s 0.16 0.34 0.16 0.34 +bassinez bassiner ver 0.46 1.42 0.01 0 ind:pre:2p; +bassinoire bassinoire nom f s 0.01 0.47 0 0.41 +bassinoires bassinoire nom f p 0.01 0.47 0.01 0.07 +bassins bassin nom m p 5.03 25.2 0.52 3.99 +bassiné bassiner ver m s 0.46 1.42 0.07 0.14 par:pas; +bassiste bassiste nom s 0.94 0.81 0.93 0.74 +bassistes bassiste nom p 0.94 0.81 0.02 0.07 +basson basson nom m s 0.07 0.07 0.07 0.07 +basta basta ono 2.15 1.49 2.15 1.49 +baste baste ono 0.42 0.14 0.42 0.14 +baster baster ver 0.1 0.2 0.01 0 inf; +bastide bastide nom f s 1.14 0.41 0.73 0.27 +bastides bastide nom f p 1.14 0.41 0.4 0.14 +bastille bastille nom f s 1.81 4.32 1.81 4.12 +bastilles bastille nom f p 1.81 4.32 0 0.2 +bastingage bastingage nom m s 0.23 2.03 0.23 1.82 +bastingages bastingage nom m p 0.23 2.03 0 0.2 +bastion bastion nom m s 1.49 2.7 1.44 1.89 +bastionnée bastionner ver f s 0 0.07 0 0.07 par:pas; +bastions bastion nom m p 1.49 2.7 0.04 0.81 +baston baston nom m s 1.51 0.88 1.43 0.81 +bastonnade bastonnade nom f s 0.13 0.47 0.12 0.41 +bastonnades bastonnade nom f p 0.13 0.47 0.01 0.07 +bastonne bastonner ver 0.62 0.68 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bastonnent bastonner ver 0.62 0.68 0.01 0 ind:pre:3p; +bastonner bastonner ver 0.62 0.68 0.17 0.2 inf; +bastonneurs bastonneur nom m p 0.02 0 0.02 0 +bastonné bastonner ver m s 0.62 0.68 0.06 0.27 par:pas; +bastonnée bastonner ver f s 0.62 0.68 0.1 0.07 par:pas; +bastonnés bastonner ver m p 0.62 0.68 0.02 0 par:pas; +bastons baston nom m p 1.51 0.88 0.09 0.07 +bastos bastos nom f 0.42 1.62 0.42 1.62 +bastringue bastringue nom m s 0.5 1.08 0.42 1.01 +bastringues bastringue nom m p 0.5 1.08 0.08 0.07 +basé baser ver m s 15.61 2.7 4.86 0.41 par:pas; +basée baser ver f s 15.61 2.7 3.6 0.74 par:pas; +basées baser ver f p 15.61 2.7 1.14 0.27 par:pas; +basés baser ver m p 15.61 2.7 1.15 0.61 par:pas; +bat battre ver 200.35 182.36 27.36 17.97 ind:pre:3s; +bat_flanc bat_flanc nom m 0 2.84 0 2.84 +bat_l_eau bat_l_eau nom m s 0 0.07 0 0.07 +bataclan bataclan nom m s 0.25 1.08 0.25 1.08 +batailla batailler ver 0.34 1.76 0 0.07 ind:pas:3s; +bataillait batailler ver 0.34 1.76 0 0.27 ind:imp:3s; +bataillant batailler ver 0.34 1.76 0.01 0.27 par:pre; +bataille bataille nom f s 32.02 77.77 28.31 64.19 +bataillent batailler ver 0.34 1.76 0 0.14 ind:pre:3p; +batailler batailler ver 0.34 1.76 0.1 0.61 inf; +batailles bataille nom f p 32.02 77.77 3.71 13.58 +batailleur batailleur nom m s 0.01 0 0.01 0 +batailleurs batailleur adj m p 0 1.35 0 0.47 +batailleuse batailleur adj f s 0 1.35 0 0.2 +batailleuses batailleur adj f p 0 1.35 0 0.07 +bataillon bataillon nom m s 8.13 29.53 6.84 20.07 +bataillonnaire bataillonnaire nom m s 0 0.14 0 0.07 +bataillonnaires bataillonnaire nom m p 0 0.14 0 0.07 +bataillons bataillon nom m p 8.13 29.53 1.28 9.46 +bataillèrent batailler ver 0.34 1.76 0 0.07 ind:pas:3p; +bataillé batailler ver m s 0.34 1.76 0.06 0.07 par:pas; +bataillés batailler ver m p 0.34 1.76 0 0.07 par:pas; +batak batak nom m s 0.05 0 0.05 0 +batardeau batardeau nom m s 0.02 0 0.02 0 +batave batave adj s 0.01 0.27 0.01 0.14 +bataves batave adj p 0.01 0.27 0 0.14 +bateau bateau nom m s 124.82 82.36 106.55 61.22 +bateau_citerne bateau_citerne nom m s 0.03 0 0.03 0 +bateau_lavoir bateau_lavoir nom m s 0 0.2 0 0.14 +bateau_mouche bateau_mouche nom m s 0.01 0.74 0.01 0.34 +bateau_pilote bateau_pilote nom m s 0.01 0 0.01 0 +bateau_pompe bateau_pompe nom m s 0 0.07 0 0.07 +bateaux bateau nom m p 124.82 82.36 18.27 21.15 +bateau_lavoir bateau_lavoir nom m p 0 0.2 0 0.07 +bateau_mouche bateau_mouche nom m p 0.01 0.74 0 0.41 +batelets batelet nom m p 0 0.2 0 0.2 +bateleur bateleur nom m s 0 1.08 0 0.61 +bateleurs bateleur nom m p 0 1.08 0 0.47 +batelier batelier nom m s 0.36 1.89 0.25 0.61 +bateliers batelier nom m p 0.36 1.89 0.11 1.28 +batellerie batellerie nom f s 0 0.2 0 0.2 +bath bath adj 0.29 4.73 0.29 4.73 +bathyale bathyal adj f s 0.01 0 0.01 0 +bathymètre bathymètre nom m s 0.01 0 0.01 0 +bathymétrique bathymétrique adj m s 0.01 0 0.01 0 +bathyscaphe bathyscaphe nom m s 0.05 0 0.05 0 +bathysphère bathysphère nom f s 0.01 0 0.01 0 +batifola batifoler ver 1.21 0.88 0 0.07 ind:pas:3s; +batifolage batifolage nom m s 0.25 0.14 0.23 0.07 +batifolages batifolage nom m p 0.25 0.14 0.01 0.07 +batifolaient batifoler ver 1.21 0.88 0.01 0.14 ind:imp:3p; +batifolais batifoler ver 1.21 0.88 0.01 0 ind:imp:1s; +batifolait batifoler ver 1.21 0.88 0.01 0.14 ind:imp:3s; +batifolant batifoler ver 1.21 0.88 0.17 0.2 par:pre; +batifole batifoler ver 1.21 0.88 0.17 0.07 ind:pre:1s;ind:pre:3s; +batifolent batifoler ver 1.21 0.88 0.03 0 ind:pre:3p; +batifoler batifoler ver 1.21 0.88 0.72 0.2 inf; +batifoles batifoler ver 1.21 0.88 0.01 0 ind:pre:2s; +batifoleurs batifoleur nom m p 0 0.14 0 0.14 +batifolez batifoler ver 1.21 0.88 0.02 0 imp:pre:2p;ind:pre:2p; +batifolé batifoler ver m s 1.21 0.88 0.05 0.07 par:pas; +batik batik nom m s 0 0.14 0 0.14 +batiste batiste nom f s 0 0.88 0 0.88 +batracien batracien nom m s 0.03 0.54 0.03 0.27 +batracienne batracien adj f s 0.01 0.07 0.01 0.07 +batraciens batracien nom m p 0.03 0.54 0 0.27 +bats battre ver 200.35 182.36 13.72 2.77 imp:pre:2s;ind:pre:1s;ind:pre:2s; +battage battage nom m s 0.18 0.34 0.18 0.27 +battages battage nom m p 0.18 0.34 0 0.07 +battaient battre ver 200.35 182.36 2.14 11.15 ind:imp:3p; +battais battre ver 200.35 182.36 1.24 1.62 ind:imp:1s;ind:imp:2s; +battait battre ver 200.35 182.36 6.78 28.38 ind:imp:3s; +battant battre ver 200.35 182.36 2 8.31 par:pre; +battante battant nom f s 1.73 11.42 0.42 0.07 +battantes battant adj f p 1.07 12.84 0.01 1.28 +battants battant nom m p 1.73 11.42 0.39 3.99 +batte batte nom f s 6.87 0.41 6.39 0.27 +battement battement nom m s 5.28 19.26 2.59 10.81 +battements battement nom m p 5.28 19.26 2.69 8.45 +battent battre ver 200.35 182.36 8.87 7.91 ind:pre:3p; +batterie batterie nom f s 14.24 15.54 10.61 9.73 +batteries batterie nom f p 14.24 15.54 3.63 5.81 +battes battre ver 200.35 182.36 0.65 0.14 sub:pre:2s; +batteur batteur nom m s 4.61 3.99 3.34 1.82 +batteurs batteur nom m p 4.61 3.99 0.89 0.61 +batteuse batteur nom f s 4.61 3.99 0.27 1.42 +batteuses batteur nom f p 4.61 3.99 0.11 0.14 +battez battre ver 200.35 182.36 7.69 0.68 imp:pre:2p;ind:pre:2p; +battiez battre ver 200.35 182.36 0.52 0.27 ind:imp:2p; +battions battre ver 200.35 182.36 0.22 0.54 ind:imp:1p; +battirent battre ver 200.35 182.36 0.27 1.22 ind:pas:3p; +battis battre ver 200.35 182.36 0.14 0.41 ind:pas:1s; +battit battre ver 200.35 182.36 0.36 6.42 ind:pas:3s; +battle_dress battle_dress nom m 0 0.14 0 0.14 +battoir battoir nom m s 0.06 2.43 0.02 1.35 +battoires battoire nom m p 0 0.07 0 0.07 +battoirs battoir nom m p 0.06 2.43 0.03 1.08 +battons battre ver 200.35 182.36 2.26 1.55 imp:pre:1p;ind:pre:1p; +battra battre ver 200.35 182.36 2.74 0.81 ind:fut:3s; +battrai battre ver 200.35 182.36 2.54 0.47 ind:fut:1s; +battraient battre ver 200.35 182.36 0.17 0.68 cnd:pre:3p; +battrais battre ver 200.35 182.36 1.15 0.07 cnd:pre:1s;cnd:pre:2s; +battrait battre ver 200.35 182.36 1.02 1.55 cnd:pre:3s; +battras battre ver 200.35 182.36 0.52 0.27 ind:fut:2s; +battre battre ver 200.35 182.36 75.92 57.36 inf;;inf;;inf;; +battrez battre ver 200.35 182.36 0.41 0.14 ind:fut:2p; +battriez battre ver 200.35 182.36 0.12 0 cnd:pre:2p; +battrions battre ver 200.35 182.36 0.01 0 cnd:pre:1p; +battrons battre ver 200.35 182.36 1.07 0.47 ind:fut:1p; +battront battre ver 200.35 182.36 0.84 0 ind:fut:3p; +battu battre ver m s 200.35 182.36 24.13 17.36 par:pas; +battue battre ver f s 200.35 182.36 5.87 4.93 par:pas; +battues battre ver f p 200.35 182.36 0.41 0.95 par:pas; +battus battre ver m p 200.35 182.36 6.89 6.49 par:pas; +battîmes battre ver 200.35 182.36 0 0.07 ind:pas:1p; +battît battre ver 200.35 182.36 0 0.14 sub:imp:3s; +batée batée nom f s 0.01 0.07 0.01 0.07 +bau bau nom m s 0.22 0.07 0.22 0.07 +baud baud nom m s 0.01 0 0.01 0 +baudelairien baudelairien adj m s 0 0.27 0 0.07 +baudelairiennes baudelairien adj f p 0 0.27 0 0.07 +baudelairiens baudelairien adj m p 0 0.27 0 0.14 +baudet baudet nom m s 0.13 0.54 0.11 0.41 +baudets baudet nom m p 0.13 0.54 0.03 0.14 +baudrier baudrier nom m s 0.18 3.45 0.17 2.5 +baudriers baudrier nom m p 0.18 3.45 0.01 0.95 +baudroie baudroie nom f s 0.01 0.07 0.01 0 +baudroies baudroie nom f p 0.01 0.07 0 0.07 +baudruche baudruche nom f s 0.32 0.88 0.28 0.81 +baudruches baudruche nom f p 0.32 0.88 0.04 0.07 +bauge bauge nom f s 0.14 1.35 0.14 1.22 +bauges bauge nom f p 0.14 1.35 0 0.14 +baugé bauger ver m s 0 0.07 0 0.07 par:pas; +baume baume nom s 1.94 3.65 1.79 2.91 +baumes baume nom p 1.94 3.65 0.16 0.74 +baumier baumier nom m s 0.01 0.07 0.01 0 +baumiers baumier nom m p 0.01 0.07 0 0.07 +baux bail,bau nom m p 0.19 0.34 0.19 0.34 +bauxite bauxite nom f s 0.18 0.41 0.18 0.41 +bava baver ver 9.79 12.36 0.02 0.2 ind:pas:3s; +bavaient baver ver 9.79 12.36 0.02 0.41 ind:imp:3p; +bavais baver ver 9.79 12.36 0.06 0.54 ind:imp:1s; +bavait baver ver 9.79 12.36 0.39 1.62 ind:imp:3s; +bavant baver ver 9.79 12.36 0.14 1.35 par:pre; +bavard bavard adj m s 4.85 12.3 2.39 4.86 +bavarda bavarder ver 16.43 24.19 0 0.47 ind:pas:3s; +bavardage bavardage nom m s 3.57 9.73 1.48 5.34 +bavardages bavardage nom m p 3.57 9.73 2.08 4.39 +bavardai bavarder ver 16.43 24.19 0.01 0.07 ind:pas:1s; +bavardaient bavarder ver 16.43 24.19 0.04 2.23 ind:imp:3p; +bavardais bavarder ver 16.43 24.19 0.07 0.2 ind:imp:1s; +bavardait bavarder ver 16.43 24.19 0.89 2.16 ind:imp:3s; +bavardant bavarder ver 16.43 24.19 0.18 2.64 par:pre; +bavarde bavarder ver 16.43 24.19 1.55 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bavardent bavarder ver 16.43 24.19 0.48 0.88 ind:pre:3p; +bavarder bavarder ver 16.43 24.19 8.66 8.99 inf; +bavardera bavarder ver 16.43 24.19 0.48 0.14 ind:fut:3s; +bavarderai bavarder ver 16.43 24.19 0 0.14 ind:fut:1s; +bavarderait bavarder ver 16.43 24.19 0.1 0.07 cnd:pre:3s; +bavarderas bavarder ver 16.43 24.19 0.01 0 ind:fut:2s; +bavarderons bavarder ver 16.43 24.19 0.32 0.07 ind:fut:1p; +bavardes bavard adj f p 4.85 12.3 0.61 0.61 +bavardez bavarder ver 16.43 24.19 0.63 0.07 imp:pre:2p;ind:pre:2p; +bavardiez bavarder ver 16.43 24.19 0.01 0.07 ind:imp:2p; +bavardions bavarder ver 16.43 24.19 0.06 0.74 ind:imp:1p; +bavardons bavarder ver 16.43 24.19 0.98 0.47 imp:pre:1p;ind:pre:1p; +bavards bavard adj m p 4.85 12.3 0.69 2.09 +bavardèrent bavarder ver 16.43 24.19 0 0.47 ind:pas:3p; +bavardé bavarder ver m s 16.43 24.19 1.9 2.16 par:pas; +bavarois bavarois adj m 0.52 1.82 0.29 0.95 +bavaroise bavarois adj f s 0.52 1.82 0.2 0.27 +bavaroises bavarois adj f p 0.52 1.82 0.02 0.61 +bavassaient bavasser ver 0.91 0.95 0 0.07 ind:imp:3p; +bavassait bavasser ver 0.91 0.95 0.16 0.14 ind:imp:3s; +bavassant bavasser ver 0.91 0.95 0.01 0.07 par:pre; +bavasse bavasser ver 0.91 0.95 0.18 0.07 ind:pre:1s;ind:pre:3s; +bavassent bavasser ver 0.91 0.95 0.01 0.14 ind:pre:3p; +bavasser bavasser ver 0.91 0.95 0.48 0.41 inf; +bavasses bavasser ver 0.91 0.95 0.03 0.07 ind:pre:2s; +bavasseur bavasseur adj m s 0.01 0 0.01 0 +bavassiez bavasser ver 0.91 0.95 0.01 0 ind:imp:2p; +bavassé bavasser ver m s 0.91 0.95 0.03 0 par:pas; +bave bave nom f s 2.1 3.99 2.08 3.78 +bavent baver ver 9.79 12.36 0.74 0.61 ind:pre:3p; +baver baver ver 9.79 12.36 3.04 4.12 inf; +baverais baver ver 9.79 12.36 0 0.07 cnd:pre:1s; +baveras baver ver 9.79 12.36 0.17 0 ind:fut:2s; +baverez baver ver 9.79 12.36 0.02 0.07 ind:fut:2p; +baveront baver ver 9.79 12.36 0.01 0.07 ind:fut:3p; +baves baver ver 9.79 12.36 0.97 0 ind:pre:2s; +bavette bavette nom f s 0.35 0.95 0.19 0.88 +bavettes bavette nom f p 0.35 0.95 0.16 0.07 +baveur baveur adj m s 0.05 0.2 0.05 0.14 +baveurs baveur adj m p 0.05 0.2 0 0.07 +baveuse baveux adj f s 1.33 4.05 0.17 0.95 +baveuses baveux adj f p 1.33 4.05 0.13 0.34 +baveux baveux adj m 1.33 4.05 1.02 2.77 +bavez baver ver 9.79 12.36 0.08 0.14 imp:pre:2p;ind:pre:2p; +bavocher bavocher ver 0 0.07 0 0.07 inf; +bavoir bavoir nom m s 0.26 0.61 0.22 0.41 +bavoirs bavoir nom m p 0.26 0.61 0.04 0.2 +bavons baver ver 9.79 12.36 0.16 0 imp:pre:1p;ind:pre:1p; +bavotait bavoter ver 0 0.14 0 0.07 ind:imp:3s; +bavotant bavoter ver 0 0.14 0 0.07 par:pre; +bavure bavure nom f s 1.65 4.12 1.28 1.69 +bavures bavure nom f p 1.65 4.12 0.38 2.43 +bavé baver ver m s 9.79 12.36 2.52 1.42 par:pas; +bayadère bayadère nom f s 0.21 0.27 0.1 0.14 +bayadères bayadère nom f p 0.21 0.27 0.11 0.14 +bayaient bayer ver 0.05 0.54 0 0.07 ind:imp:3p; +bayant bayer ver 0.05 0.54 0 0.07 par:pre; +bayard bayard nom m s 0 0.07 0 0.07 +baye bayer ver 0.05 0.54 0 0.07 ind:pre:3s; +bayer bayer ver 0.05 0.54 0.01 0.2 inf; +bayons bayer ver 0.05 0.54 0.01 0 imp:pre:1p; +bayou bayou nom m s 0.81 0.14 0.76 0 +bayous bayou nom m p 0.81 0.14 0.05 0.14 +bayé bayer ver m s 0.05 0.54 0 0.14 par:pas; +bazar bazar nom m s 8.36 7.43 8.18 6.42 +bazard bazard nom m s 0.2 0 0.2 0 +bazardait bazarder ver 1.07 1.42 0 0.14 ind:imp:3s; +bazardant bazarder ver 1.07 1.42 0 0.07 par:pre; +bazarde bazarder ver 1.07 1.42 0.4 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bazarder bazarder ver 1.07 1.42 0.3 0.61 inf; +bazarderez bazarder ver 1.07 1.42 0 0.07 ind:fut:2p; +bazardes bazarder ver 1.07 1.42 0.17 0 ind:pre:2s; +bazardeur bazardeur nom m s 0 0.07 0 0.07 +bazardé bazarder ver m s 1.07 1.42 0.14 0.2 par:pas; +bazardée bazarder ver f s 1.07 1.42 0.05 0 par:pas; +bazardées bazarder ver f p 1.07 1.42 0.01 0.07 par:pas; +bazars bazar nom m p 8.36 7.43 0.17 1.01 +bazooka bazooka nom m s 1.57 0.88 1.21 0.81 +bazookas bazooka nom m p 1.57 0.88 0.36 0.07 +baïonnette baïonnette nom f s 2.33 7.57 1.28 4.8 +baïonnettes baïonnette nom f p 2.33 7.57 1.05 2.77 +bcbg bcbg adj 0.14 0.14 0.14 0.14 +be_bop be_bop nom m 0.31 0.34 0.31 0.34 +beagle beagle nom m s 0.15 0 0.08 0 +beagles beagle nom m p 0.15 0 0.07 0 +beat beat adj s 1.34 0.2 1.34 0.2 +beat_generation beat_generation nom f s 0 0.14 0 0.14 +beatnik beatnik nom s 0.45 0.07 0.33 0 +beatniks beatnik nom p 0.45 0.07 0.12 0.07 +beau beau adj m s 671.86 620.07 281.23 270.07 +beau_fils beau_fils nom m 1.29 1.01 1.27 1.01 +beau_frère beau_frère nom m s 13.14 15.68 9.13 8.65 +beau_papa beau_papa nom m s 0.23 0.14 0.23 0.14 +beau_parent beau_parent nom m s 0.01 0 0.01 0 +beau_père beau_père nom m s 16.54 14.05 9.29 7.09 +beauceron beauceron adj m s 0 1.35 0 0.47 +beauceronne beauceron adj f s 0 1.35 0 0.47 +beauceronnes beauceron adj f p 0 1.35 0 0.07 +beaucerons beauceron adj m p 0 1.35 0 0.34 +beaucoup beaucoup adv_sup 626 461.42 626 461.42 +beauf beauf nom m s 1.07 0.41 0.96 0.34 +beaufs beauf nom m p 1.07 0.41 0.11 0.07 +beaujolais beaujolais nom m 0.04 1.49 0.04 1.49 +beaujolpif beaujolpif nom m s 0 0.41 0 0.41 +beaupré beaupré nom m s 0.01 0.07 0.01 0.07 +beauté beauté nom f s 72.56 92.64 68.57 87.64 +beautés beauté nom f p 72.56 92.64 3.99 5 +beauvais beauvais nom s 0 0.07 0 0.07 +beaux beau adj m p 671.86 620.07 57.2 63.78 +beaux_arts beaux_arts nom m p 2.19 3.38 2.19 3.38 +beaux_enfants beaux_enfants nom m p 0.06 0 0.06 0 +beau_fils beau_fils nom m p 1.29 1.01 0.03 0 +beau_frère beau_frère nom m p 13.14 15.68 0.62 1.01 +beaux_parents beaux_parents nom m p 1.52 1.22 1.52 1.22 +bec bec nom m s 7.39 26.96 6.74 23.31 +bec_de_cane bec_de_cane nom m s 0.01 1.42 0.01 1.42 +bec_de_lièvre bec_de_lièvre nom m s 0.1 0.61 0.1 0.61 +because because con 2.78 1.01 2.78 1.01 +becfigue becfigue nom m s 0.27 0.07 0.14 0 +becfigues becfigue nom m p 0.27 0.07 0.14 0.07 +becquant becquer ver 0.04 0.54 0 0.54 par:pre; +becquer becquer ver 0.04 0.54 0.01 0 inf; +becquet becquet nom m s 0.02 0.07 0.02 0 +becquetaient becqueter ver 0.1 1.89 0 0.2 ind:imp:3p; +becquetait becqueter ver 0.1 1.89 0 0.14 ind:imp:3s; +becquetance becquetance nom f s 0 0.07 0 0.07 +becquetant becqueter ver 0.1 1.89 0 0.07 par:pre; +becqueter becqueter ver 0.1 1.89 0.1 1.08 inf; +becquets becquet nom m p 0.02 0.07 0 0.07 +becquette becqueter ver 0.1 1.89 0 0.07 imp:pre:2s; +becqueté becqueter ver m s 0.1 1.89 0 0.2 par:pas; +becquetés becqueter ver m p 0.1 1.89 0 0.14 par:pas; +becqué becquer ver m s 0.04 0.54 0.03 0 par:pas; +becquée becquée nom f s 0.02 0.41 0.02 0.41 +becs bec nom m p 7.39 26.96 0.66 3.65 +becta becter ver 0.17 4.53 0 0.07 ind:pas:3s; +bectais becter ver 0.17 4.53 0 0.14 ind:imp:1s; +bectait becter ver 0.17 4.53 0 0.34 ind:imp:3s; +bectance bectance nom f s 0.1 0.95 0.1 0.95 +bectant becter ver 0.17 4.53 0 0.14 par:pre; +becte becter ver 0.17 4.53 0.14 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bectent becter ver 0.17 4.53 0 0.14 ind:pre:3p; +becter becter ver 0.17 4.53 0.02 2.09 inf; +becterais becter ver 0.17 4.53 0 0.07 cnd:pre:1s; +becteras becter ver 0.17 4.53 0 0.07 ind:fut:2s; +becté becter ver m s 0.17 4.53 0 1.01 par:pas; +bectées becter ver f p 0.17 4.53 0.01 0.07 par:pas; +bectés becter ver m p 0.17 4.53 0 0.07 par:pas; +bedaine bedaine nom f s 0.89 1.62 0.89 1.42 +bedaines bedaine nom f p 0.89 1.62 0 0.2 +bedeau bedeau nom m s 0.25 1.76 0.25 1.69 +bedeaux bedeau nom m p 0.25 1.76 0 0.07 +bedon bedon nom m s 0.04 0.27 0.04 0.2 +bedonnant bedonnant adj m s 0.33 1.49 0.14 1.01 +bedonnante bedonnant adj f s 0.33 1.49 0.01 0.07 +bedonnantes bedonnant adj f p 0.33 1.49 0.14 0.2 +bedonnants bedonnant adj m p 0.33 1.49 0.05 0.2 +bedonne bedonner ver 0.03 0.34 0 0.07 ind:pre:3s; +bedons bedon nom m p 0.04 0.27 0 0.07 +beefsteak beefsteak nom m s 0.21 0.34 0.2 0.2 +beefsteaks beefsteak nom m p 0.21 0.34 0.01 0.14 +beeper beeper nom m s 0.34 0 0.34 0 +beethovénien beethovénien adj m s 0 0.07 0 0.07 +beffroi beffroi nom m s 0.47 0.74 0.47 0.74 +behavioriste behavioriste adj s 0.01 0 0.01 0 +behavioriste behavioriste nom s 0.01 0 0.01 0 +beige beige adj m s 1.03 8.11 1.02 6.82 +beigeasses beigeasse adj p 0 0.07 0 0.07 +beiges beige nom p 0.27 1.49 0.03 0.34 +beigne beigne nom f s 0.58 2.16 0.48 1.42 +beignes beigne nom f p 0.58 2.16 0.1 0.74 +beignet beignet nom m s 8.69 2.77 2.52 0.61 +beignets beignet nom m p 8.69 2.77 6.17 2.16 +bel bel adj m s 31.35 37.09 31.35 37.09 +bel_canto bel_canto nom m 0.26 0.41 0.26 0.41 +belette belette nom f s 2.01 0.88 1.74 0.68 +belettes belette nom f p 2.01 0.88 0.27 0.2 +belge belge adj s 3.03 8.99 2.83 6.55 +belges belge nom p 2 5.07 0.68 2.7 +belgicains belgicain nom m p 0 0.07 0 0.07 +belgique belgique nom f s 0.02 0.27 0.02 0.27 +belladone belladone nom f s 0.15 0.47 0.15 0.41 +belladones belladone nom f p 0.15 0.47 0 0.07 +belle beau adj f s 671.86 620.07 284.08 223.65 +belle_lurette belle_lurette nom f s 0.75 2.64 0.75 2.64 +belle_doche belle_doche nom f s 0.05 0.07 0.05 0.07 +belle_famille belle_famille nom f s 0.71 1.22 0.71 1.15 +belle_fille belle_fille nom f s 3.32 2.57 3.29 2.5 +belle_maman belle_maman nom f s 0.85 0.34 0.85 0.34 +beau_père beau_père nom f s 16.54 14.05 7.17 6.82 +beau_frère beau_frère nom f s 13.14 15.68 3.36 5.47 +belle_à_voir belle_à_voir nom f s 0 0.27 0 0.27 +bellement bellement adv 0.14 0.54 0.14 0.54 +belles beau adj f p 671.86 620.07 49.35 62.57 +belle_de_jour belle_de_jour nom f p 0 0.07 0 0.07 +belle_de_nuit belle_de_nuit nom f p 0 0.34 0 0.34 +belle_famille belle_famille nom f p 0.71 1.22 0 0.07 +belle_fille belle_fille nom f p 3.32 2.57 0.04 0.07 +belle_lettre belle_lettre nom f p 0 0.41 0 0.41 +beau_père beau_père nom f p 16.54 14.05 0.08 0.14 +beau_frère beau_frère nom f p 13.14 15.68 0.04 0.54 +bellevillois bellevillois adj m 0 0.2 0 0.07 +bellevilloise bellevillois adj f s 0 0.2 0 0.14 +belliciste belliciste nom s 0.07 0.07 0.05 0 +bellicistes belliciste adj p 0.21 0.14 0.17 0.07 +belligérance belligérance nom f s 0.01 0.34 0.01 0.34 +belligérant belligérant adj m s 0.11 1.15 0.01 0.14 +belligérante belligérant adj f s 0.11 1.15 0 0.54 +belligérantes belligérant adj f p 0.11 1.15 0.1 0.14 +belligérants belligérant nom m p 0.07 0.88 0.05 0.81 +belliqueuse belliqueux adj f s 0.51 2.3 0.06 0.81 +belliqueusement belliqueusement adv 0 0.07 0 0.07 +belliqueuses belliqueux adj f p 0.51 2.3 0.04 0.2 +belliqueux belliqueux adj m 0.51 2.3 0.41 1.28 +bellissime bellissime adj f s 0.01 0.07 0.01 0.07 +bellot bellot adj m s 0.01 0 0.01 0 +belluaire belluaire nom m s 0 0.14 0 0.14 +bellâtre bellâtre nom m s 0.32 1.01 0.32 1.01 +belon belon nom f s 0 1.01 0 0.54 +belons belon nom f p 0 1.01 0 0.47 +belote belote nom f s 0.26 4.19 0.26 3.99 +beloter beloter ver 0 0.14 0 0.14 inf; +belotes belote nom f p 0.26 4.19 0 0.2 +beloteurs beloteur nom m p 0 0.2 0 0.2 +belotte belotter ver 0 0.07 0 0.07 ind:pre:1s; +beluga beluga nom m s 0.04 0.07 0.04 0.07 +belvédère belvédère nom m s 0.18 0.74 0.17 0.54 +belvédères belvédère nom m p 0.18 0.74 0.01 0.2 +ben ben nom_sup m 61.43 24.19 61.43 24.19 +benedictus benedictus nom m 0.11 0.07 0.11 0.07 +bengalais bengalais nom m 0.27 0 0.27 0 +bengali bengali nom m s 0.26 0.61 0.16 0.41 +bengalis bengali nom m p 0.26 0.61 0.1 0.2 +benjamin benjamin nom m s 0.81 0.81 0.33 0.47 +benjamine benjamin nom f s 0.81 0.81 0.44 0.27 +benjamins benjamin nom m p 0.81 0.81 0.04 0.07 +benjoin benjoin nom m s 0 0.88 0 0.88 +benne benne nom f s 2.38 3.11 2.12 1.76 +bennes benne nom f p 2.38 3.11 0.27 1.35 +benoît benoît adj m s 0.9 0.2 0.9 0.07 +benoîte benoît adj f s 0.9 0.2 0 0.14 +benoîtement benoîtement adv 0 0.81 0 0.81 +benthique benthique adj m s 0.01 0 0.01 0 +benzidine benzidine nom f s 0.01 0 0.01 0 +benzine benzine nom f s 0.01 0.41 0.01 0.41 +benzoate benzoate nom m s 0.04 0 0.04 0 +benzodiazépine benzodiazépine nom f s 0.02 0 0.02 0 +benzonaphtol benzonaphtol nom m s 0.1 0 0.1 0 +benzylique benzylique adj m s 0.01 0 0.01 0 +benzène benzène nom m s 0.12 0 0.12 0 +benzédrine benzédrine nom f s 0.07 0.27 0.07 0.27 +benêt benêt nom m s 1.3 1.49 1.2 1.08 +benêts benêt nom m p 1.3 1.49 0.1 0.41 +ber ber nom m s 0.16 0.07 0.16 0.07 +berbère berbère adj s 0.03 1.22 0.01 0.81 +berbères berbère adj p 0.03 1.22 0.02 0.41 +bercail bercail nom m s 2.33 1.96 2.33 1.96 +berce bercer ver 4.46 18.04 0.94 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +berceau berceau nom m s 7.05 13.31 6.72 12.43 +berceaux berceau nom m p 7.05 13.31 0.33 0.88 +bercelonnette bercelonnette nom f s 0 0.07 0 0.07 +bercement bercement nom m s 0 0.74 0 0.68 +bercements bercement nom m p 0 0.74 0 0.07 +bercent bercer ver 4.46 18.04 0.35 0.54 ind:pre:3p; +bercer bercer ver 4.46 18.04 1.17 3.92 inf; +bercera bercer ver 4.46 18.04 0.03 0 ind:fut:3s; +bercerai bercer ver 4.46 18.04 0.05 0 ind:fut:1s; +bercerait bercer ver 4.46 18.04 0.01 0.07 cnd:pre:3s; +bercerez bercer ver 4.46 18.04 0.1 0.07 ind:fut:2p; +berces bercer ver 4.46 18.04 0.16 0 ind:pre:2s; +berceur berceur adj m s 0.13 1.01 0.01 0.41 +berceurs berceur adj m p 0.13 1.01 0 0.07 +berceuse berceur nom f s 1.83 1.55 1.58 1.22 +berceuses berceur nom f p 1.83 1.55 0.25 0.34 +bercez bercer ver 4.46 18.04 0.3 0 imp:pre:2p;ind:pre:2p; +bercèrent bercer ver 4.46 18.04 0 0.07 ind:pas:3p; +bercé bercer ver m s 4.46 18.04 0.85 3.78 par:pas; +bercée bercer ver f s 4.46 18.04 0.08 1.89 par:pas; +bercés bercer ver m p 4.46 18.04 0.19 0.88 par:pas; +berdouillette berdouillette nom f s 0 0.2 0 0.2 +berg berg nom m s 0.04 0 0.04 0 +bergamasques bergamasque nom f p 0 0.07 0 0.07 +bergamote bergamote nom f s 0.16 0.07 0.16 0.07 +berge berge nom f s 2.77 16.49 1.79 8.72 +berger berger nom m s 11.84 24.8 8.33 11.15 +bergerie bergerie nom f s 0.99 3.45 0.99 2.84 +bergeries bergerie nom f p 0.99 3.45 0 0.61 +bergeronnette bergeronnette nom f s 0.01 0.41 0.01 0.14 +bergeronnettes bergeronnette nom f p 0.01 0.41 0 0.27 +bergers berger nom m p 11.84 24.8 1.89 4.19 +berges berge nom f p 2.77 16.49 0.98 7.77 +bergère berger nom f s 11.84 24.8 1.27 6.76 +bergères berger nom f p 11.84 24.8 0.34 2.7 +berk berk ono 1.35 0.95 1.35 0.95 +berle berle nom f s 0.13 0 0.13 0 +berlin berlin nom s 0 0.07 0 0.07 +berline berline nom f s 1.03 2.3 0.62 2.09 +berlines berline nom f p 1.03 2.3 0.42 0.2 +berlingot berlingot nom m s 0.15 1.76 0.06 0.41 +berlingots berlingot nom m p 0.15 1.76 0.09 1.35 +berlingue berlingue nom m 0 0.34 0 0.34 +berlinois berlinois adj m 0.82 1.69 0.32 1.08 +berlinoise berlinois adj f s 0.82 1.69 0.5 0.54 +berlinoises berlinois nom f p 0.18 0.47 0 0.14 +berloque berloque nom f s 0 0.14 0 0.14 +berlue berlue nom f s 0.3 1.35 0.3 1.08 +berlues berlue nom f p 0.3 1.35 0 0.27 +berlurais berlurer ver 0 1.01 0 0.2 ind:imp:1s; +berlurait berlurer ver 0 1.01 0 0.14 ind:imp:3s; +berlure berlure nom f s 0 1.08 0 0.68 +berlurent berlurer ver 0 1.01 0 0.14 ind:pre:3p; +berlurer berlurer ver 0 1.01 0 0.34 inf; +berlures berlure nom f p 0 1.08 0 0.41 +berluré berlurer ver m s 0 1.01 0 0.14 par:pas; +berlurée berlurer ver f s 0 1.01 0 0.07 par:pas; +berme berme nom f s 0.04 0.27 0.03 0.14 +bermes berme nom f p 0.04 0.27 0.01 0.14 +bermuda bermuda nom m s 0.12 0.61 0.08 0.41 +bermudas bermuda nom m p 0.12 0.61 0.04 0.2 +bernache bernache nom f s 0.08 0.41 0.03 0.14 +bernaches bernache nom f p 0.08 0.41 0.05 0.27 +bernait berner ver 3.56 2.64 0.01 0.14 ind:imp:3s; +bernant berner ver 3.56 2.64 0.01 0 par:pre; +bernard_l_ermite bernard_l_ermite nom m 0 0.34 0 0.34 +bernard_l_hermite bernard_l_hermite nom m 0.01 0.14 0.01 0.14 +bernardines bernardin nom f p 0 0.54 0 0.54 +berne berner ver 3.56 2.64 0.12 0.2 ind:pre:1s;ind:pre:3s; +berner berner ver 3.56 2.64 2.04 0.54 inf; +berneras berner ver 3.56 2.64 0.02 0 ind:fut:2s; +bernez berner ver 3.56 2.64 0.01 0 ind:pre:2p; +bernicle bernicle nom f s 0.07 0.34 0.07 0 +bernicles bernicle nom f p 0.07 0.34 0.01 0.34 +bernique bernique ono 0 0.47 0 0.47 +berniques bernique nom f p 0.01 0.61 0 0.2 +bernois bernois adj m p 0 0.41 0 0.07 +bernoise bernois nom f s 0.01 0.14 0.01 0.07 +bernoises bernois adj f p 0 0.41 0 0.34 +berné berner ver m s 3.56 2.64 0.53 1.15 par:pas; +bernée berner ver f s 3.56 2.64 0.28 0.27 par:pas; +bernées berner ver f p 3.56 2.64 0 0.07 par:pas; +bernés berner ver m p 3.56 2.64 0.53 0.27 par:pas; +berrichon berrichon adj m s 0.27 0.88 0 0.61 +berrichonne berrichon adj f s 0.27 0.88 0.27 0.27 +bersaglier bersaglier nom m s 0.23 0.07 0.1 0 +bersagliers bersaglier nom m p 0.23 0.07 0.14 0.07 +bertha bertha nom f s 0 0.2 0 0.14 +berthas bertha nom f p 0 0.2 0 0.07 +berthe berthe nom f s 0 0.61 0 0.61 +berzingue berzingue nom f s 0.28 1.49 0.28 1.49 +berça bercer ver 4.46 18.04 0.01 0.61 ind:pas:3s; +berçaient bercer ver 4.46 18.04 0.01 0.61 ind:imp:3p; +berçais bercer ver 4.46 18.04 0.01 0.47 ind:imp:1s;ind:imp:2s; +berçait bercer ver 4.46 18.04 0.06 2.16 ind:imp:3s; +berçant bercer ver 4.46 18.04 0.14 1.01 par:pre; +besace besace nom f s 0.13 2.7 0.13 2.43 +besaces besace nom f p 0.13 2.7 0 0.27 +besaiguë besaiguë nom f s 0 0.07 0 0.07 +besant besant nom m s 0.04 0.07 0.01 0 +besants besant nom m p 0.04 0.07 0.03 0.07 +besef besef adv 0 0.07 0 0.07 +besicles besicles nom f p 0.01 0.27 0.01 0.27 +besogna besogner ver 0.6 2.3 0 0.34 ind:pas:3s; +besognaient besogner ver 0.6 2.3 0 0.14 ind:imp:3p; +besognais besogner ver 0.6 2.3 0.11 0 ind:imp:1s;ind:imp:2s; +besognait besogner ver 0.6 2.3 0.14 0.68 ind:imp:3s; +besognant besogner ver 0.6 2.3 0.01 0.41 par:pre; +besogne besogne nom f s 2.71 15.61 2.54 10.74 +besognent besogner ver 0.6 2.3 0.01 0.07 ind:pre:3p; +besogner besogner ver 0.6 2.3 0.2 0.2 inf; +besogneras besogner ver 0.6 2.3 0 0.07 ind:fut:2s; +besognes besogne nom f p 2.71 15.61 0.17 4.86 +besogneuse besogneux adj f s 0.02 1.82 0.02 0.34 +besogneuses besogneux adj f p 0.02 1.82 0 0.2 +besogneux besogneux nom m 0.12 0.47 0.12 0.47 +besognèrent besogner ver 0.6 2.3 0 0.2 ind:pas:3p; +besogné besogner ver m s 0.6 2.3 0.01 0 par:pas; +besoin besoin nom m s 771.24 266.62 758.04 251.76 +besoins besoin nom m p 771.24 266.62 13.2 14.86 +besson besson nom m s 0.01 0.14 0.01 0 +bessons besson nom m p 0.01 0.14 0 0.14 +best best nom m s 0.52 0.34 0.52 0.34 +best_of best_of nom m s 0.17 0 0.17 0 +best_seller best_seller nom m s 1.09 0.81 0.82 0.54 +best_seller best_seller nom m p 1.09 0.81 0.27 0.27 +bestiaire bestiaire nom m s 0 1.28 0 1.22 +bestiaires bestiaire nom m p 0 1.28 0 0.07 +bestial bestial adj m s 1.54 3.04 0.69 1.42 +bestiale bestial adj f s 1.54 3.04 0.63 0.68 +bestialement bestialement adv 0.02 0 0.02 0 +bestiales bestial adj f p 1.54 3.04 0.06 0.47 +bestialité bestialité nom f s 0.42 1.49 0.42 1.42 +bestialités bestialité nom f p 0.42 1.49 0 0.07 +bestiasse bestiasse nom f s 0 0.14 0 0.14 +bestiau bestiau nom m s 2.54 6.35 1.26 0.81 +bestiaux bestiau nom m p 2.54 6.35 1.28 5.54 +bestiole bestiole nom f s 5.07 6.76 2.5 3.04 +bestioles bestiole nom f p 5.07 6.76 2.57 3.72 +bette bette nom f s 1.6 0.41 1.55 0.2 +betterave betterave nom f s 1.47 4.12 0.77 1.35 +betteraves betterave nom f p 1.47 4.12 0.69 2.77 +betteravier betteravier nom m s 0 0.07 0 0.07 +bettes bette nom f p 1.6 0.41 0.05 0.2 +betting betting nom m 0.03 0 0.03 0 +beu beu ono 0.73 0.95 0.73 0.95 +beuark beuark ono 0.01 0.07 0.01 0.07 +beugla beugler ver 0.75 5.74 0 1.08 ind:pas:3s; +beuglaient beugler ver 0.75 5.74 0.01 0.14 ind:imp:3p; +beuglais beugler ver 0.75 5.74 0.02 0.2 ind:imp:1s;ind:imp:2s; +beuglait beugler ver 0.75 5.74 0.11 0.95 ind:imp:3s; +beuglant beugler ver 0.75 5.74 0.04 0.88 par:pre; +beuglante beuglant nom f s 0.04 0.88 0.01 0.07 +beuglantes beuglant nom f p 0.04 0.88 0 0.14 +beuglants beuglant nom m p 0.04 0.88 0 0.34 +beugle beugler ver 0.75 5.74 0.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +beuglement beuglement nom m s 0.19 1.15 0 0.27 +beuglements beuglement nom m p 0.19 1.15 0.19 0.88 +beuglent beugler ver 0.75 5.74 0.02 0.27 ind:pre:3p; +beugler beugler ver 0.75 5.74 0.17 0.88 inf; +beuglions beugler ver 0.75 5.74 0 0.07 ind:imp:1p; +beuglé beugler ver m s 0.75 5.74 0.16 0.27 par:pas; +beuglée beugler ver f s 0.75 5.74 0 0.07 par:pas; +beuh beuh adv 1.06 0.88 1.06 0.88 +beur beur adj m s 0.14 0.14 0.14 0.14 +beurk beurk ono 4.01 0.54 4.01 0.54 +beurra beurrer ver 0.92 2.97 0 0.34 ind:pas:3s; +beurrage beurrage nom m s 0 0.07 0 0.07 +beurraient beurrer ver 0.92 2.97 0 0.07 ind:imp:3p; +beurrais beurrer ver 0.92 2.97 0.11 0.14 ind:imp:1s; +beurrait beurrer ver 0.92 2.97 0.01 0.54 ind:imp:3s; +beurrant beurrer ver 0.92 2.97 0.01 0.14 par:pre; +beurre beurre nom m s 15.14 27.97 15.12 27.5 +beurrer beurrer ver 0.92 2.97 0.32 0.61 inf; +beurres beurre nom m p 15.14 27.97 0.02 0.47 +beurrier beurrier nom m s 0.12 0.07 0.12 0.07 +beurré beurré adj m s 0.88 2.5 0.43 0.74 +beurrée beurré adj f s 0.88 2.5 0.07 0.47 +beurrées beurré adj f p 0.88 2.5 0.15 1.15 +beurrés beurré adj m p 0.88 2.5 0.23 0.14 +beuverie beuverie nom f s 0.79 1.55 0.54 0.47 +beuveries beuverie nom f p 0.79 1.55 0.26 1.08 +bey bey nom m s 2.06 2.91 2.06 2.91 +bezef bezef adv 0 0.14 0 0.14 +bi bi nom m s 1.27 0.34 1.27 0.34 +biafrais biafrais nom m 0 0.14 0 0.14 +biais biais nom m 1.6 16.69 1.6 16.69 +biaisai biaiser ver 0.05 0.68 0 0.07 ind:pas:1s; +biaise biaiser ver 0.05 0.68 0 0.27 ind:pre:1s;ind:pre:3s; +biaisements biaisement nom m p 0 0.07 0 0.07 +biaiser biaiser ver 0.05 0.68 0.03 0.27 inf; +biaises biais adj f p 0.04 0.61 0 0.07 +biaisé biaisé adj m s 0.03 0 0.02 0 +biaisée biaiser ver f s 0.05 0.68 0.01 0 par:pas; +biathlon biathlon nom m s 0.3 0 0.3 0 +bib bib nom m 0.01 0 0.01 0 +bibard bibard nom m s 0 0.2 0 0.2 +bibelot bibelot nom m s 1.52 7.43 0.63 0.81 +bibelots bibelot nom m p 1.52 7.43 0.9 6.62 +bibendum bibendum nom m s 0.09 0.2 0.09 0.2 +biberon biberon nom m s 6.65 5.68 5.25 3.85 +biberonnait biberonner ver 0.04 0.95 0.01 0.2 ind:imp:3s; +biberonne biberonner ver 0.04 0.95 0.01 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +biberonner biberonner ver 0.04 0.95 0.02 0.41 inf; +biberonneurs biberonneur nom m p 0 0.07 0 0.07 +biberonné biberonner ver m s 0.04 0.95 0 0.14 par:pas; +biberons biberon nom m p 6.65 5.68 1.4 1.82 +bibi bibi nom m s 0.56 1.15 0.54 0.54 +bibiche bibiche nom f s 0.05 3.04 0.05 3.04 +bibine bibine nom f s 0.73 3.99 0.71 3.85 +bibines bibine nom f p 0.73 3.99 0.02 0.14 +bibis bibi nom m p 0.56 1.15 0.02 0.61 +bibite bibite nom f s 0 0.27 0 0.27 +bible bible nom f s 17.79 17.84 17.03 17.16 +bibles bible nom f p 17.79 17.84 0.76 0.68 +bibliobus bibliobus nom m 0.05 0.07 0.05 0.07 +bibliographe bibliographe nom s 0 0.07 0 0.07 +bibliographie bibliographie nom f s 0.17 0.81 0.17 0.68 +bibliographies bibliographie nom f p 0.17 0.81 0 0.14 +bibliographique bibliographique adj s 0.01 0.14 0.01 0 +bibliographiques bibliographique adj f p 0.01 0.14 0 0.14 +bibliophile bibliophile nom s 0.03 0.68 0.02 0.27 +bibliophiles bibliophile nom p 0.03 0.68 0.01 0.41 +bibliophilie bibliophilie nom f s 0 0.14 0 0.14 +bibliophilique bibliophilique adj f s 0 0.07 0 0.07 +bibliothèque bibliothèque nom f s 19.86 40.74 18.22 36.82 +bibliothèques bibliothèque nom f p 19.86 40.74 1.63 3.92 +bibliothécaire bibliothécaire nom s 2.25 2.5 2.09 2.3 +bibliothécaires bibliothécaire nom p 2.25 2.5 0.16 0.2 +biblique biblique adj s 2.77 4.19 2.09 3.04 +bibliquement bibliquement adv 0.13 0.07 0.13 0.07 +bibliques biblique adj p 2.77 4.19 0.69 1.15 +bic bic nom m s 0.44 0.41 0.44 0.41 +bicamérale bicaméral adj f s 0.01 0 0.01 0 +bicarbonate bicarbonate nom m s 1.2 0.34 1.2 0.27 +bicarbonates bicarbonate nom m p 1.2 0.34 0 0.07 +bicause bicause pre 0 0.68 0 0.68 +bicentenaire bicentenaire nom m s 0.36 0.07 0.36 0.07 +biceps biceps nom m 1.62 3.72 1.62 3.72 +bichais bicher ver 0.27 1.89 0 0.2 ind:imp:1s; +bichait bicher ver 0.27 1.89 0.01 0.47 ind:imp:3s; +bichant bicher ver 0.27 1.89 0 0.07 par:pre; +biche biche nom f s 5.8 13.92 5.29 7.3 +bicher bicher ver 0.27 1.89 0.02 0.34 inf; +biches biche nom f p 5.8 13.92 0.51 6.62 +bichette bichette nom f s 0.09 0.07 0.09 0.07 +bichez bicher ver 0.27 1.89 0.01 0 ind:pre:2p; +bichon bichon nom m s 0.46 0.68 0.46 0.68 +bichonnait bichonner ver 1.4 1.42 0.02 0.2 ind:imp:3s; +bichonnant bichonner ver 1.4 1.42 0 0.07 par:pre; +bichonne bichonner ver 1.4 1.42 0.57 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bichonner bichonner ver 1.4 1.42 0.72 0.41 inf; +bichonnerai bichonner ver 1.4 1.42 0.02 0 ind:fut:1s; +bichonnez bichonner ver 1.4 1.42 0.03 0 imp:pre:2p;ind:pre:2p; +bichonné bichonner ver m s 1.4 1.42 0.03 0.34 par:pas; +bichonnée bichonner ver f s 1.4 1.42 0.02 0.14 par:pas; +biché bicher ver m s 0.27 1.89 0 0.07 par:pas; +biclou biclou nom m s 0.01 0.14 0 0.07 +biclous biclou nom m p 0.01 0.14 0.01 0.07 +bicolore bicolore adj s 0.3 0.68 0.15 0.47 +bicolores bicolore adj p 0.3 0.68 0.14 0.2 +biconvexes biconvexe adj p 0.02 0 0.02 0 +bicoque bicoque nom f s 0.94 3.85 0.89 3.11 +bicoques bicoque nom f p 0.94 3.85 0.05 0.74 +bicorne bicorne nom m s 0.16 2.64 0.16 2.16 +bicornes bicorne adj m p 0.01 0.14 0.01 0 +bicot bicot nom m s 0.11 4.46 0.11 3.72 +bicots bicot nom m p 0.11 4.46 0 0.74 +biculturelle biculturel adj f s 0.01 0 0.01 0 +bicuspide bicuspide adj s 0.01 0 0.01 0 +bicycle bicycle nom m s 0.29 0 0.28 0 +bicycles bicycle nom m p 0.29 0 0.01 0 +bicyclette bicyclette nom f s 8.06 28.51 7.34 23.51 +bicyclettes bicyclette nom f p 8.06 28.51 0.72 5 +bicycliste bicycliste adj s 0 0.07 0 0.07 +bicéphale bicéphale adj s 0.04 0.54 0.04 0.47 +bicéphales bicéphale adj p 0.04 0.54 0 0.07 +bicéphalie bicéphalie nom f s 0 0.2 0 0.2 +bidasse bidasse nom m s 0.37 0.81 0.21 0.34 +bidasses bidasse nom m p 0.37 0.81 0.16 0.47 +bide bide nom m s 3.73 8.58 3.66 8.38 +bides bide nom m p 3.73 8.58 0.07 0.2 +bidet bidet nom m s 0.69 3.45 0.69 2.97 +bidets bidet nom m p 0.69 3.45 0 0.47 +bidimensionnel bidimensionnel adj m s 0 0.07 0 0.07 +bidoche bidoche nom f s 0.33 3.78 0.33 3.31 +bidoches bidoche nom f p 0.33 3.78 0 0.47 +bidon bidon adj 7.78 3.72 7.78 3.72 +bidonnage bidonnage nom m s 0 0.14 0 0.14 +bidonnaient bidonner ver 1 1.89 0 0.07 ind:imp:3p; +bidonnais bidonner ver 1 1.89 0.03 0 ind:imp:1s;ind:imp:2s; +bidonnait bidonner ver 1 1.89 0 0.14 ind:imp:3s; +bidonnant bidonnant adj m s 0.14 0.14 0.12 0.14 +bidonnante bidonnant adj f s 0.14 0.14 0.03 0 +bidonne bidonner ver 1 1.89 0 0.61 ind:pre:3s; +bidonnent bidonner ver 1 1.89 0.01 0.27 ind:pre:3p; +bidonner bidonner ver 1 1.89 0.33 0.34 inf; +bidonnera bidonner ver 1 1.89 0.01 0 ind:fut:3s; +bidonnez bidonner ver 1 1.89 0.01 0 ind:pre:2p; +bidonné bidonner ver m s 1 1.89 0.3 0 par:pas; +bidonnée bidonner ver f s 1 1.89 0.01 0 par:pas; +bidonnées bidonner ver f p 1 1.89 0.29 0 par:pas; +bidonnés bidonner ver m p 1 1.89 0 0.07 par:pas; +bidons bidon nom m p 8.02 16.28 2.66 6.62 +bidonville bidonville nom m s 0.72 1.55 0.43 0.81 +bidonvilles bidonville nom m p 0.72 1.55 0.29 0.74 +bidouilla bidouiller ver 0.45 0.14 0 0.07 ind:pas:3s; +bidouillage bidouillage nom m s 0.05 0 0.05 0 +bidouille bidouille nom f s 0.19 0 0.19 0 +bidouiller bidouiller ver 0.45 0.14 0.12 0 inf; +bidouillerai bidouiller ver 0.45 0.14 0.03 0 ind:fut:1s; +bidouillé bidouiller ver m s 0.45 0.14 0.13 0 par:pas; +bidouillée bidouiller ver f s 0.45 0.14 0.15 0.07 par:pas; +bidouillés bidouiller ver m p 0.45 0.14 0.02 0 par:pas; +bidule bidule nom m s 1.1 2.03 0.94 1.22 +bidules bidule nom m p 1.1 2.03 0.17 0.81 +bief bief nom m s 0.1 0.61 0.1 0.54 +biefs bief nom m p 0.1 0.61 0 0.07 +bielle bielle nom f s 1.86 1.22 1.7 0.2 +bielles bielle nom f p 1.86 1.22 0.16 1.01 +bien bien adv_sup 4213.78 2535.14 4213.78 2535.14 +bien_aimé bien_aimé nom m s 8.5 4.66 4.51 1.89 +bien_aimé bien_aimé nom f s 8.5 4.66 3.76 2.43 +bien_aimé bien_aimé adj f p 8.19 4.39 0.04 0.2 +bien_aimé bien_aimé adj m p 8.19 4.39 0.68 0.54 +bien_disant bien_disant adj m p 0 0.07 0 0.07 +bien_fonds bien_fonds nom m 0 0.07 0 0.07 +bien_fondé bien_fondé nom m s 0.31 0.81 0.31 0.81 +bien_manger bien_manger nom m 0 0.14 0 0.14 +bien_pensant bien_pensant adj m s 0.06 2.16 0.01 1.28 +bien_pensant bien_pensant adj f s 0.06 2.16 0.02 0.47 +bien_pensant bien_pensant adj m p 0.06 2.16 0.03 0.41 +bien_portant bien_portant adj m s 0.03 0.41 0 0.14 +bien_portant bien_portant adj m p 0.03 0.41 0.03 0.27 +bien_être bien_être nom m 4.28 8.78 4.28 8.78 +bienfaisance bienfaisance nom f s 1.69 1.96 1.69 1.96 +bienfaisant bienfaisant adj m s 0.64 4.05 0.29 1.08 +bienfaisante bienfaisant adj f s 0.64 4.05 0.31 2.3 +bienfaisantes bienfaisant adj f p 0.64 4.05 0 0.54 +bienfaisants bienfaisant adj m p 0.64 4.05 0.04 0.14 +bienfait bienfait nom m s 2.51 4.26 0.98 1.01 +bienfaiteur bienfaiteur nom m s 3.4 3.45 2.46 1.62 +bienfaiteurs bienfaiteur nom m p 3.4 3.45 0.26 0.81 +bienfaitrice bienfaiteur nom f s 3.4 3.45 0.66 1.01 +bienfaitrices bienfaiteur nom f p 3.4 3.45 0.01 0 +bienfaits bienfait nom m p 2.51 4.26 1.53 3.24 +bienheureuse bienheureux nom f s 1.22 2.43 0.3 0.34 +bienheureusement bienheureusement adv 0 0.27 0 0.27 +bienheureuses bienheureux adj f p 2.25 5.2 0 0.14 +bienheureux bienheureux adj m 2.25 5.2 2.09 2.84 +biennale biennale nom f s 0.05 0.14 0.05 0.14 +biens bien nom_sup m p 106.6 70.2 16.99 13.31 +bienséance bienséance nom f s 0.64 2.23 0.57 2.09 +bienséances bienséance nom f p 0.64 2.23 0.06 0.14 +bienséant bienséant adj m s 0.06 1.08 0.04 0.47 +bienséante bienséant adj f s 0.06 1.08 0.03 0.41 +bienséantes bienséant adj f p 0.06 1.08 0 0.07 +bienséants bienséant adj m p 0.06 1.08 0 0.14 +bientôt bientôt adv 184.96 169.59 184.96 169.59 +bienveillamment bienveillamment adv 0.1 0 0.1 0 +bienveillance bienveillance nom f s 2.32 7.3 2.32 7.23 +bienveillances bienveillance nom f p 2.32 7.3 0 0.07 +bienveillant bienveillant adj m s 1.47 7.5 0.84 2.97 +bienveillante bienveillant adj f s 1.47 7.5 0.3 3.24 +bienveillantes bienveillant adj f p 1.47 7.5 0.06 0.41 +bienveillants bienveillant adj m p 1.47 7.5 0.27 0.88 +bienvenu bienvenu nom m s 14.3 1.82 9.82 1.22 +bienvenue bienvenue nom f s 22.63 5.27 21.81 5.14 +bienvenues bienvenue nom f p 22.63 5.27 0.82 0.14 +bienvenus bienvenu nom m p 14.3 1.82 4.48 0.61 +bif bif nom m s 0.02 0.14 0.02 0.14 +biface biface nom m s 0 0.07 0 0.07 +bifaces biface adj m p 0 0.07 0 0.07 +biffa biffer ver 0.11 1.62 0 0.41 ind:pas:3s; +biffaient biffer ver 0.11 1.62 0 0.07 ind:imp:3p; +biffais biffer ver 0.11 1.62 0 0.07 ind:imp:1s; +biffant biffer ver 0.11 1.62 0.01 0.07 par:pre; +biffe biffe nom f s 0.33 0.54 0.33 0.54 +biffer biffer ver 0.11 1.62 0.07 0.47 inf; +biffeton biffeton nom m s 0.29 2.64 0.01 0.88 +biffetons biffeton nom m p 0.29 2.64 0.28 1.76 +biffin biffin nom m s 0.05 1.62 0.03 0.88 +biffins biffin nom m p 0.05 1.62 0.02 0.74 +biffé biffer ver m s 0.11 1.62 0.02 0.07 par:pas; +bifide bifide adj s 0.01 0.61 0.01 0.47 +bifides bifide adj f p 0.01 0.61 0 0.14 +bifrons bifron adj p 0 0.2 0 0.2 +bifteck bifteck nom m s 1.45 5.14 1.3 3.58 +biftecks bifteck nom m p 1.45 5.14 0.14 1.55 +bifton bifton nom m s 0.64 2.84 0.16 1.08 +biftons bifton nom m p 0.64 2.84 0.49 1.76 +biftèque biftèque nom m s 0 0.47 0 0.14 +biftèques biftèque nom m p 0 0.47 0 0.34 +bifurcation bifurcation nom f s 0.33 0.54 0.29 0.41 +bifurcations bifurcation nom f p 0.33 0.54 0.04 0.14 +bifurqua bifurquer ver 0.68 2.03 0 0.14 ind:pas:3s; +bifurquait bifurquer ver 0.68 2.03 0 0.2 ind:imp:3s; +bifurquant bifurquer ver 0.68 2.03 0 0.2 par:pre; +bifurque bifurquer ver 0.68 2.03 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bifurquent bifurquer ver 0.68 2.03 0 0.07 ind:pre:3p; +bifurquer bifurquer ver 0.68 2.03 0.14 0.2 inf; +bifurqueront bifurquer ver 0.68 2.03 0 0.07 ind:fut:3p; +bifurqué bifurquer ver m s 0.68 2.03 0.36 0.61 par:pas; +bifurquée bifurquer ver f s 0.68 2.03 0 0.14 par:pas; +big_band big_band nom m 0.05 0 0.05 0 +big_bang big_bang nom m 0.38 1.62 0.38 1.62 +big_bang big_bang nom m 0.03 0.41 0.03 0.41 +bigaille bigaille nom f s 0 0.27 0 0.27 +bigame bigame adj m s 0.23 0 0.23 0 +bigamie bigamie nom f s 0.37 0.47 0.37 0.47 +bigarreau bigarreau nom m s 0 0.07 0 0.07 +bigarrer bigarrer ver 0.11 0.81 0 0.07 inf; +bigarrure bigarrure nom f s 0 0.74 0 0.61 +bigarrures bigarrure nom f p 0 0.74 0 0.14 +bigarré bigarrer ver m s 0.11 0.81 0.1 0.2 par:pas; +bigarrée bigarré adj f s 0.17 1.62 0.02 0.88 +bigarrées bigarré adj f p 0.17 1.62 0 0.07 +bigarrés bigarré adj m p 0.17 1.62 0.14 0.34 +bighorn bighorn nom m s 0.2 0.14 0.18 0.07 +bighorns bighorn nom m p 0.2 0.14 0.03 0.07 +biglaient bigler ver 0 2.16 0 0.07 ind:imp:3p; +biglais bigler ver 0 2.16 0 0.07 ind:imp:1s; +biglait bigler ver 0 2.16 0 0.2 ind:imp:3s; +biglant bigler ver 0 2.16 0 0.2 par:pre; +bigle bigler ver 0 2.16 0 0.34 ind:pre:1s;ind:pre:3s; +biglent bigler ver 0 2.16 0 0.14 ind:pre:3p; +bigler bigler ver 0 2.16 0 0.54 inf; +bigles bigle adj m p 0 0.34 0 0.07 +bigleuse bigleux nom f s 1.88 0.2 0.14 0.07 +bigleux bigleux nom m 1.88 0.2 1.75 0.14 +biglez bigler ver 0 2.16 0 0.07 imp:pre:2p; +biglé bigler ver m s 0 2.16 0 0.34 par:pas; +biglée bigler ver f s 0 2.16 0 0.14 par:pas; +biglés bigler ver m p 0 2.16 0 0.07 par:pas; +bigne bigne nom f s 0 0.2 0 0.2 +bignolait bignoler ver 0 0.07 0 0.07 ind:imp:3s; +bignole bignole nom f s 0 5.74 0 5.14 +bignoles bignole nom f p 0 5.74 0 0.61 +bignolle bignolle nom f s 0 0.07 0 0.07 +bignon bignon nom m s 0 0.07 0 0.07 +bignones bignone nom f p 0 0.07 0 0.07 +bignonias bignonia nom m p 0 0.07 0 0.07 +bigo bigo nom m s 0.05 0.54 0.05 0.54 +bigophone bigophone nom m s 0.17 0.68 0.17 0.68 +bigophoner bigophoner ver 0.03 0.81 0 0.41 inf; +bigophones bigophoner ver 0.03 0.81 0.01 0 ind:pre:2s; +bigophoné bigophoner ver m s 0.03 0.81 0 0.27 par:pas; +bigorne bigorne nom f s 0 0.2 0 0.14 +bigorneau bigorneau nom m s 1.01 1.55 0.19 0.74 +bigorneaux bigorneau nom m p 1.01 1.55 0.82 0.81 +bigorner bigorner ver 0 0.61 0 0.27 inf; +bigornes bigorne nom f p 0 0.2 0 0.07 +bigorné bigorner ver m s 0 0.61 0 0.2 par:pas; +bigornés bigorner ver m p 0 0.61 0 0.07 par:pas; +bigot bigot adj m s 0.2 0.27 0.17 0.2 +bigote bigot nom f s 0.5 1.01 0.34 0.41 +bigoterie bigoterie nom f s 0.14 0.2 0.14 0.2 +bigotes bigot nom f p 0.5 1.01 0 0.41 +bigots bigot nom m p 0.5 1.01 0.06 0.07 +bigouden bigouden adj f s 0 0.34 0 0.34 +bigoudens bigouden nom p 0 0.07 0 0.07 +bigoudi bigoudi nom m s 0.73 3.45 0.18 0.61 +bigoudis bigoudi nom m p 0.73 3.45 0.55 2.84 +bigre bigre ono 0.47 0.54 0.47 0.54 +bigrement bigrement adv 0.28 1.49 0.28 1.49 +bigue bigue nom f s 0 0.14 0 0.14 +biguine biguine nom f s 0.1 0.34 0.1 0.34 +bihebdomadaire bihebdomadaire adj s 0.01 0.14 0 0.07 +bihebdomadaires bihebdomadaire adj p 0.01 0.14 0.01 0.07 +bihoreau bihoreau nom m s 0 0.27 0 0.27 +bijou bijou nom m s 8.37 11.96 8.37 11.96 +bijouterie bijouterie nom f s 2.41 1.55 2.15 1.15 +bijouteries bijouterie nom f p 2.41 1.55 0.26 0.41 +bijoutier bijoutier nom m s 1.64 2.7 1.54 1.62 +bijoutiers bijoutier nom m p 1.64 2.7 0.1 0.68 +bijoutière bijoutier nom f s 1.64 2.7 0 0.41 +bijoux bijoux nom m p 20.64 21.01 20.64 21.01 +bikini bikini nom m s 2.98 2.09 2.34 1.49 +bikinis bikini nom m p 2.98 2.09 0.65 0.61 +bilais biler ver 2.95 2.84 0.01 0.07 ind:imp:1s; +bilait biler ver 2.95 2.84 0 0.07 ind:imp:3s; +bilan bilan nom m s 6.13 7.36 5.63 6.22 +bilans bilan nom m p 6.13 7.36 0.5 1.15 +bilatéral bilatéral adj m s 0.51 0.34 0.14 0.14 +bilatérale bilatéral adj f s 0.51 0.34 0.23 0.14 +bilatéralement bilatéralement adv 0.03 0 0.03 0 +bilatéraux bilatéral adj m p 0.51 0.34 0.14 0.07 +bilbergia bilbergia nom f s 0 0.07 0 0.07 +bilboquet bilboquet nom m s 0.04 1.15 0.04 1.01 +bilboquets bilboquet nom m p 0.04 1.15 0 0.14 +bile bile nom f s 2.78 4.66 2.59 4.66 +biler biler ver 2.95 2.84 0.1 1.15 inf; +biles biler ver 2.95 2.84 0.29 0 ind:pre:2s; +bileux bileux adj m 0.01 0 0.01 0 +bilez biler ver 2.95 2.84 0.22 0.47 imp:pre:2p;ind:pre:2p; +bilharziose bilharziose nom f s 0.01 0.2 0.01 0.2 +biliaire biliaire adj s 0.75 0.47 0.57 0.47 +biliaires biliaire adj p 0.75 0.47 0.18 0 +bilieuse bilieux adj f s 0.03 0.68 0.03 0.2 +bilieuses bilieux adj f p 0.03 0.68 0 0.07 +bilieux bilieux adj m s 0.03 0.68 0 0.41 +bilingue bilingue nom s 0.39 0 0.38 0 +bilingues bilingue adj p 0.34 0.88 0.04 0.34 +bilinguisme bilinguisme nom m s 0 0.07 0 0.07 +bilirubine bilirubine nom f s 0.07 0 0.07 0 +bill bill nom m s 0.56 0.07 0.47 0.07 +billard billard nom m s 7.84 12.23 7.56 11.35 +billards billard nom m p 7.84 12.23 0.28 0.88 +bille bille nom f s 5.21 19.53 2.5 8.58 +biller biller ver 0.07 0 0.04 0 inf; +billes bille nom f p 5.21 19.53 2.7 10.95 +billet billet nom m s 83.87 63.58 41.47 32.23 +billets billet nom m p 83.87 63.58 42.4 31.35 +billetterie billetterie nom f s 0.19 0 0.17 0 +billetteries billetterie nom f p 0.19 0 0.02 0 +billettes billette nom f p 0 0.07 0 0.07 +billevesée billevesée nom f s 0.27 0.54 0 0.07 +billevesées billevesée nom f p 0.27 0.54 0.27 0.47 +billion billion nom m s 0.42 0.07 0.19 0 +billions billion nom m p 0.42 0.07 0.23 0.07 +billon billon nom m s 0 0.14 0 0.14 +billot billot nom m s 0.69 2.5 0.68 2.03 +billots billot nom m p 0.69 2.5 0.01 0.47 +bills bill nom m p 0.56 0.07 0.09 0 +bilobée bilobé adj f s 0.01 0 0.01 0 +bim bim ono 0.52 0.2 0.52 0.2 +bimbeloterie bimbeloterie nom f s 0.03 0.61 0.02 0.47 +bimbeloteries bimbeloterie nom f p 0.03 0.61 0.01 0.14 +bimensuel bimensuel adj m s 0.04 0.14 0.01 0.07 +bimensuelle bimensuel adj f s 0.04 0.14 0.02 0.07 +bimensuelles bimensuel adj f p 0.04 0.14 0.01 0 +bimestre bimestre nom m s 0.01 0 0.01 0 +bimoteur bimoteur nom m s 0.08 0.34 0.08 0.27 +bimoteurs bimoteur nom m p 0.08 0.34 0 0.07 +bimétallisme bimétallisme nom m s 0 0.14 0 0.14 +bin_s bin_s nom m 0.03 0 0.03 0 +binaire binaire adj s 0.68 0.34 0.45 0.27 +binaires binaire adj p 0.68 0.34 0.23 0.07 +binait biner ver 0.33 0.68 0 0.14 ind:imp:3s; +binant biner ver 0.33 0.68 0 0.14 par:pre; +biner biner ver 0.33 0.68 0.33 0.34 inf; +binet_simon binet_simon nom m s 0 0.07 0 0.07 +binette binette nom f s 0.27 1.49 0.25 1.08 +binettes binette nom f p 0.27 1.49 0.03 0.41 +bing bing ono 1.81 1.76 1.81 1.76 +bingo bingo nom m s 9.08 0.14 9.08 0.14 +biniou biniou nom m s 0.29 0.81 0.29 0.74 +binious biniou nom m p 0.29 0.81 0 0.07 +binoclard binoclard adj m s 2.29 2.43 2.22 2.09 +binoclarde binoclard adj f s 2.29 2.43 0.02 0.14 +binoclards binoclard adj m p 2.29 2.43 0.04 0.2 +binocle binocle nom m s 0.18 1.01 0.01 0.47 +binocles binocle nom m p 0.18 1.01 0.17 0.54 +binoculaire binoculaire adj f s 0.03 0.07 0.03 0.07 +bintje bintje nom f s 0 0.07 0 0.07 +binz binz nom s 0.27 0.14 0.27 0.14 +biné biner ver m s 0.33 0.68 0 0.07 par:pas; +binôme binôme nom m s 0.27 0.14 0.2 0.07 +binômes binôme nom m p 0.27 0.14 0.06 0.07 +bio bio adj 3.3 0.41 3.3 0.41 +biochimie biochimie nom f s 0.63 0 0.63 0 +biochimique biochimique adj s 0.32 0.14 0.22 0.14 +biochimiquement biochimiquement adv 0.02 0 0.02 0 +biochimiques biochimique adj p 0.32 0.14 0.11 0 +biochimiste biochimiste nom s 0.35 0 0.3 0 +biochimistes biochimiste nom p 0.35 0 0.05 0 +biodiversité biodiversité nom f s 0.05 0 0.05 0 +biodégradable biodégradable adj m s 0.16 0.07 0.1 0.07 +biodégradables biodégradable adj f p 0.16 0.07 0.06 0 +biographe biographe nom s 0.75 0.88 0.75 0.61 +biographes biographe nom p 0.75 0.88 0 0.27 +biographie biographie nom f s 2.82 5.34 2.36 4.19 +biographies biographie nom f p 2.82 5.34 0.46 1.15 +biographique biographique adj s 0.18 0.88 0.14 0.34 +biographiques biographique adj p 0.18 0.88 0.03 0.54 +biogénique biogénique adj m s 0.01 0 0.01 0 +biogénétique biogénétique adj s 0.14 0 0.14 0 +biologie biologie nom f s 4.13 1.22 4.13 1.22 +biologique biologique adj s 7.34 2.36 5.35 1.69 +biologiquement biologiquement adv 0.46 0.34 0.46 0.34 +biologiques biologique adj p 7.34 2.36 2 0.68 +biologiste biologiste nom s 1.08 0.34 0.84 0.34 +biologistes biologiste nom p 1.08 0.34 0.24 0 +biologisé biologiser ver m s 0.01 0 0.01 0 par:pas; +bioluminescence bioluminescence nom f s 0.05 0 0.05 0 +bioluminescente bioluminescent adj f s 0.01 0 0.01 0 +biomasse biomasse nom f s 0.03 0 0.03 0 +biomécanique biomécanique nom f s 0.16 0 0.16 0 +biomécanisme biomécanisme nom m s 0.01 0 0.01 0 +biomédical biomédical adj m s 0.1 0 0.06 0 +biomédicale biomédical adj f s 0.1 0 0.03 0 +biomédicaux biomédical adj m p 0.1 0 0.01 0 +biométrie biométrie nom f s 0.03 0 0.03 0 +biométrique biométrique adj s 0.19 0 0.12 0 +biométriques biométrique adj p 0.19 0 0.07 0 +bionique bionique adj s 0.34 0 0.24 0 +bioniques bionique adj p 0.34 0 0.1 0 +biophysique biophysique nom f s 0.06 0 0.06 0 +biopsie biopsie nom f s 2.19 0.47 2.04 0.47 +biopsies biopsie nom f p 2.19 0.47 0.15 0 +biorythme biorythme nom m s 0.06 0 0.01 0 +biorythmes biorythme nom m p 0.06 0 0.04 0 +biosphère biosphère nom f s 0.08 0 0.08 0 +biosynthétiques biosynthétique adj p 0.01 0 0.01 0 +biotechnique biotechnique nom f s 0.15 0 0.15 0 +biotechnologie biotechnologie nom f s 0.22 0 0.22 0 +biotique biotique adj s 0.02 0 0.02 0 +biotite biotite nom f s 0.03 0 0.03 0 +biotope biotope nom m s 0.07 0 0.07 0 +bioxyde bioxyde nom m s 0.02 0.07 0.02 0.07 +bioélectrique bioélectrique adj s 0.01 0 0.01 0 +bip bip nom m s 7.68 1.28 6.94 1.28 +bip_bip bip_bip nom m s 0.47 0 0.47 0 +bipais biper ver 4.07 0 0.01 0 ind:imp:1s; +bipartisan bipartisan adj m s 0.01 0 0.01 0 +bipartisme bipartisme nom m s 0.07 0 0.07 0 +bipartite bipartite adj s 0.15 0 0.15 0 +bipe biper ver 4.07 0 0.77 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +biper biper ver 4.07 0 0.96 0 inf; +biperai biper ver 4.07 0 0.06 0 ind:fut:1s; +biperait biper ver 4.07 0 0.01 0 cnd:pre:3s; +bipes biper ver 4.07 0 0.09 0 ind:pre:2s; +bipez biper ver 4.07 0 0.43 0 imp:pre:2p;ind:pre:2p; +biphényle biphényle nom m s 0.01 0 0.01 0 +biplace biplace adj s 0.16 0.07 0.02 0 +biplaces biplace adj p 0.16 0.07 0.14 0.07 +biplan biplan nom m s 0.32 0.68 0.32 0.54 +biplans biplan nom m p 0.32 0.68 0 0.14 +bipolaire bipolaire adj f s 0.29 0 0.26 0 +bipolaires bipolaire adj m p 0.29 0 0.04 0 +bipolarité bipolarité nom f s 0 0.07 0 0.07 +bips bip nom m p 7.68 1.28 0.74 0 +bipède bipède nom m s 0.78 0.47 0.58 0.2 +bipèdes bipède nom m p 0.78 0.47 0.2 0.27 +bipé biper ver m s 4.07 0 1.27 0 par:pas; +bipée biper ver f s 4.07 0 0.4 0 par:pas; +bipés biper ver m p 4.07 0 0.05 0 par:pas; +bique bique nom f s 0.94 4.39 0.56 2.97 +biques bique nom f p 0.94 4.39 0.38 1.42 +biquet biquet nom m s 0.54 2.77 0.54 1.28 +biquets biquet nom m p 0.54 2.77 0 1.49 +biquette biquette nom f s 0.46 1.35 0.05 1.01 +biquettes biquette nom f p 0.46 1.35 0.4 0.34 +biquotidienne biquotidien adj f s 0 0.2 0 0.07 +biquotidiens biquotidien adj m p 0 0.2 0 0.14 +birbe birbe nom m s 0.02 0.47 0 0.34 +birbes birbe nom m p 0.02 0.47 0.02 0.14 +birchers bircher nom m p 0.05 0 0.05 0 +bire bire nom f s 0 0.07 0 0.07 +biribi biribi nom m s 0 0.74 0 0.74 +birman birman adj m s 0.36 0 0.16 0 +birmane birman adj f s 0.36 0 0.08 0 +birmanes birman adj f p 0.36 0 0.02 0 +birmans birman nom m p 0.29 0 0.25 0 +biroute biroute nom f s 0.18 0.95 0.18 0.81 +biroutes biroute nom f p 0.18 0.95 0 0.14 +birth_control birth_control nom m 0.01 0.14 0.01 0.14 +biréfringence biréfringence nom f s 0.01 0 0.01 0 +bis bis adj_sup m 1.23 2.03 0.86 1.82 +bisannuel bisannuel adj m s 0.01 0.07 0.01 0 +bisannuelles bisannuel adj f p 0.01 0.07 0 0.07 +bisaïeul bisaïeul nom m s 0.05 0.2 0.05 0.07 +bisaïeule bisaïeul nom f s 0.05 0.2 0 0.14 +bisbille bisbille nom f s 0.08 0.34 0.07 0.2 +bisbilles bisbille nom f p 0.08 0.34 0.01 0.14 +biscaïen biscaïen nom m s 0 0.2 0 0.2 +bischof bischof nom m s 0.14 0 0.14 0 +biscornu biscornu adj m s 0.06 3.04 0.01 0.88 +biscornue biscornu adj f s 0.06 3.04 0.03 0.74 +biscornues biscornu adj f p 0.06 3.04 0.01 0.61 +biscornus biscornu adj m p 0.06 3.04 0.01 0.81 +biscoteaux biscoteau nom m p 0.21 0 0.21 0 +biscotos biscoto nom m p 0.01 0.34 0.01 0.34 +biscotte biscotte nom f s 1.95 2.43 1.53 0.88 +biscottes biscotte nom f p 1.95 2.43 0.42 1.55 +biscuit biscuit nom m s 12.72 11.55 4.75 2.77 +biscuiterie biscuiterie nom f s 0.06 0.68 0.06 0.68 +biscuits biscuit nom m p 12.72 11.55 7.96 8.78 +bise bise nom f s 3.84 8.72 2.69 8.11 +biseau biseau nom m s 0.02 0.95 0.02 0.88 +biseauté biseauter ver m s 0.17 0.68 0.01 0 par:pas; +biseautée biseauter ver f s 0.17 0.68 0 0.07 par:pas; +biseautées biseauter ver f p 0.17 0.68 0.01 0.34 par:pas; +biseautés biseauter ver m p 0.17 0.68 0.14 0.27 par:pas; +biseaux biseau nom m p 0.02 0.95 0 0.07 +biseness biseness nom m 0 0.14 0 0.14 +biser biser ver 0.14 0.2 0.14 0 inf; +bises bise nom f p 3.84 8.72 1.14 0.61 +bisets biset nom m p 0 0.14 0 0.14 +bisette bisette nom f s 0 0.07 0 0.07 +bisexualité bisexualité nom f s 0.05 0.07 0.05 0.07 +bisexuel bisexuel adj m s 1.8 0.14 0.88 0.14 +bisexuelle bisexuel adj f s 1.8 0.14 0.21 0 +bisexuelles bisexuel adj f p 1.8 0.14 0.03 0 +bisexuels bisexuel adj m p 1.8 0.14 0.69 0 +bisexué bisexué adj m s 0.01 0.07 0 0.07 +bisexués bisexué adj m p 0.01 0.07 0.01 0 +bishop bishop nom m s 0.02 0 0.02 0 +bismarckien bismarckien adj m s 0 0.07 0 0.07 +bismuth bismuth nom m s 0.02 0.14 0.02 0.14 +bisness bisness nom m 0 0.14 0 0.14 +bison bison nom m s 2.65 3.38 1.49 1.28 +bisons bison nom m p 2.65 3.38 1.16 2.09 +bisou bisou nom m s 18.4 1.08 13.99 0.54 +bisou_éclair bisou_éclair nom m s 0.01 0 0.01 0 +bisous bisou nom m p 18.4 1.08 4.4 0.54 +bisque bisque nom f s 0.41 0.61 0.41 0.54 +bisquent bisquer ver 0.17 0.27 0 0.07 ind:pre:3p; +bisquer bisquer ver 0.17 0.27 0.02 0.07 inf; +bisques bisque nom f p 0.41 0.61 0 0.07 +bissac bissac nom m s 0.01 0.34 0.01 0.27 +bissacs bissac nom m p 0.01 0.34 0 0.07 +bissant bisser ver 0.03 0.27 0 0.07 par:pre; +bisse bisser ver 0.03 0.27 0.01 0.07 imp:pre:2s;ind:pre:3s; +bissel bissel nom m s 0.02 0 0.02 0 +bisser bisser ver 0.03 0.27 0.01 0 inf; +bissextile bissextile adj f s 0.07 0.47 0.03 0.07 +bissextiles bissextile adj f p 0.07 0.47 0.03 0.41 +bissé bisser ver m s 0.03 0.27 0.01 0.14 par:pas; +bistorte bistorte nom f s 0.14 0.07 0.14 0.07 +bistouille bistouille nom f s 0 0.07 0 0.07 +bistouquette bistouquette nom f s 0.22 0.07 0.22 0.07 +bistouri bistouri nom m s 0.79 2.36 0.79 2.03 +bistouris bistouri nom m p 0.79 2.36 0 0.34 +bistouriser bistouriser ver 0 0.07 0 0.07 inf; +bistre bistre adj 0 2.16 0 2.16 +bistres bistre nom m p 0 1.69 0 0.41 +bistro bistro nom m s 0.63 3.04 0.6 2.43 +bistroquet bistroquet nom m s 0 0.47 0 0.47 +bistros bistro nom m p 0.63 3.04 0.02 0.61 +bistrot bistrot nom m s 3.3 27.57 2.8 21.69 +bistrote bistrot nom f s 3.3 27.57 0 0.14 +bistrotier bistrotier nom m s 0 0.41 0 0.2 +bistrotiers bistrotier nom m p 0 0.41 0 0.07 +bistrotière bistrotier nom f s 0 0.41 0 0.07 +bistrotières bistrotier nom f p 0 0.41 0 0.07 +bistrots bistrot nom m p 3.3 27.57 0.5 5.74 +bistrouille bistrouille nom f s 0 0.2 0 0.2 +bistré bistrer ver m s 0 0.41 0 0.07 par:pas; +bistrée bistré adj f s 0 0.34 0 0.2 +bistrées bistrer ver f p 0 0.41 0 0.14 par:pas; +bistrés bistré adj m p 0 0.34 0 0.14 +bisulfite bisulfite nom m s 0 0.07 0 0.07 +bit bit nom m s 1.24 0.14 1.04 0.14 +bite bite nom f s 26.41 6.08 22.93 4.93 +bitent biter ver 0.02 0.14 0 0.07 ind:pre:3p; +bites bite nom f p 26.41 6.08 3.49 1.15 +bithynien bithynien nom m s 0 0.41 0 0.27 +bithyniens bithynien nom m p 0 0.41 0 0.14 +bitoniau bitoniau nom m s 0.01 0 0.01 0 +bitos bitos nom m 0 0.74 0 0.74 +bits bit nom m p 1.24 0.14 0.2 0 +bitte bitte nom f s 0.72 1.01 0.69 0.74 +bitter bitter ver 0.23 0 0.23 0 inf; +bitters bitter nom m p 0.16 0 0.02 0 +bittes bitte nom f p 0.72 1.01 0.03 0.27 +bitume bitume nom m s 1.12 6.01 0.99 5.88 +bitumes bitume nom m p 1.12 6.01 0.14 0.14 +bitumeuse bitumeux adj f s 0 0.34 0 0.14 +bitumeux bitumeux adj m p 0 0.34 0 0.2 +bitumineuse bitumineux adj f s 0.03 0.07 0.02 0.07 +bitumineux bitumineux adj m p 0.03 0.07 0.01 0 +bitumé bitumer ver m s 0.01 0.68 0 0.41 par:pas; +bitumée bitumer ver f s 0.01 0.68 0 0.2 par:pas; +bitumées bitumer ver f p 0.01 0.68 0.01 0.07 par:pas; +biture biture nom f s 0.12 1.22 0.09 1.01 +biturer biturer ver 0.19 0.2 0.02 0 inf; +bitures biture nom f p 0.12 1.22 0.03 0.2 +biturin biturin nom m s 0 0.27 0 0.2 +biturins biturin nom m p 0 0.27 0 0.07 +bituré biturer ver m s 0.19 0.2 0.16 0.07 par:pas; +biturés biturer ver m p 0.19 0.2 0 0.14 par:pas; +bité biter ver m s 0.02 0.14 0.02 0.07 par:pas; +bivalente bivalent adj f s 0 0.07 0 0.07 +bivalve bivalve nom m s 0.01 0 0.01 0 +bivalves bivalve adj p 0.02 0 0.02 0 +bivouac bivouac nom m s 0.41 3.85 0.26 2.23 +bivouacs bivouac nom m p 0.41 3.85 0.14 1.62 +bivouaquaient bivouaquer ver 0.75 0.61 0 0.14 ind:imp:3p; +bivouaquait bivouaquer ver 0.75 0.61 0 0.14 ind:imp:3s; +bivouaque bivouaquer ver 0.75 0.61 0.25 0 ind:pre:3s; +bivouaquent bivouaquer ver 0.75 0.61 0.11 0.2 ind:pre:3p; +bivouaquer bivouaquer ver 0.75 0.61 0.09 0 inf; +bivouaquerons bivouaquer ver 0.75 0.61 0.16 0 ind:fut:1p; +bivouaquons bivouaquer ver 0.75 0.61 0.02 0 imp:pre:1p; +bivouaqué bivouaquer ver m s 0.75 0.61 0.13 0.07 par:pas; +bivouaquée bivouaquer ver f s 0.75 0.61 0 0.07 par:pas; +bizarde bizarde adj f s 0 0.27 0 0.27 +bizarre bizarre adj s 131.41 52.23 117.31 41.76 +bizarrement bizarrement adv 7.12 11.82 7.12 11.82 +bizarrerie bizarrerie nom f s 1.12 3.38 0.7 1.82 +bizarreries bizarrerie nom f p 1.12 3.38 0.42 1.55 +bizarres bizarre adj p 131.41 52.23 14.1 10.47 +bizarroïde bizarroïde adj s 0.16 0.27 0.14 0.14 +bizarroïdes bizarroïde adj p 0.16 0.27 0.03 0.14 +bizness bizness nom m 2.02 0.68 2.02 0.68 +bizou bizou nom m s 0 0.07 0 0.07 +bizut bizut nom m s 2.3 0.07 2.05 0.07 +bizutage bizutage nom m s 1.02 0.14 1 0.07 +bizutages bizutage nom m p 1.02 0.14 0.01 0.07 +bizuter bizuter ver 0.14 0 0.1 0 inf; +bizuteurs bizuteur nom m p 0.01 0 0.01 0 +bizuth bizuth nom m s 0.02 0 0.02 0 +bizuts bizut nom m p 2.3 0.07 0.25 0 +bizuté bizuter ver m s 0.14 0 0.04 0 par:pas; +bière bière nom f s 81.67 38.11 68.55 35.34 +bières bière nom f p 81.67 38.11 13.12 2.77 +bla_bla bla_bla nom m 1.51 1.49 0.4 0 +bla_bla bla_bla nom m 1.51 1.49 1.11 1.49 +bla_bla_bla bla_bla_bla nom m 0.41 0.34 0.41 0.34 +blabla blabla nom m 0.81 1.42 0.81 1.42 +blablabla blablabla nom m 0.88 0.34 0.88 0.34 +blablatait blablater ver 0.04 0.14 0 0.07 ind:imp:3s; +blablater blablater ver 0.04 0.14 0.03 0 inf; +blablateurs blablateur nom m p 0 0.07 0 0.07 +blablatez blablater ver 0.04 0.14 0.01 0 ind:pre:2p; +blablaté blablater ver m s 0.04 0.14 0 0.07 par:pas; +black black adj m s 2.67 0.47 2.45 0.47 +black_bass black_bass nom m 0 0.07 0 0.07 +black_jack black_jack nom m s 0.75 0 0.75 0 +black_out black_out nom m 1 0.88 1 0.88 +blackboule blackbouler ver 0.06 0.07 0.01 0 ind:pre:3s; +blackbouler blackbouler ver 0.06 0.07 0.04 0.07 inf; +blackboulé blackbouler ver m s 0.06 0.07 0.01 0 par:pas; +blacks black nom m p 4.07 1.42 2.13 1.01 +blafard blafard adj m s 0.64 10.27 0.37 4.8 +blafarde blafard adj f s 0.64 10.27 0.16 3.72 +blafardes blafard adj f p 0.64 10.27 0 0.74 +blafards blafard adj m p 0.64 10.27 0.11 1.01 +blagua blaguer ver 9.41 3.24 0 0.14 ind:pas:3s; +blaguaient blaguer ver 9.41 3.24 0.04 0.2 ind:imp:3p; +blaguais blaguer ver 9.41 3.24 2.23 0.27 ind:imp:1s;ind:imp:2s; +blaguait blaguer ver 9.41 3.24 0.69 0.14 ind:imp:3s; +blaguant blaguer ver 9.41 3.24 0.04 0.2 par:pre; +blague blague nom f s 72.63 22.7 60.33 16.82 +blaguent blaguer ver 9.41 3.24 0.06 0.2 ind:pre:3p; +blaguer blaguer ver 9.41 3.24 1.22 0.74 inf; +blaguerais blaguer ver 9.41 3.24 0.03 0 cnd:pre:1s; +blagues blague nom f p 72.63 22.7 12.3 5.88 +blagueur blagueur nom m s 0.35 0 0.29 0 +blagueurs blagueur nom m p 0.35 0 0.05 0 +blagueuse blagueur nom f s 0.35 0 0.01 0 +blagueuses blagueur adj f p 0.08 0.74 0 0.07 +blaguez blaguer ver 9.41 3.24 0.34 0.2 imp:pre:2p;ind:pre:2p; +blaguons blaguer ver 9.41 3.24 0.01 0 ind:pre:1p; +blagué blaguer ver m s 9.41 3.24 0.28 0.2 par:pas; +blair blair nom m s 0.06 1.35 0.05 1.28 +blairaient blairer ver 1.39 2.03 0 0.07 ind:imp:3p; +blairait blairer ver 1.39 2.03 0 0.2 ind:imp:3s; +blaire blairer ver 1.39 2.03 0.09 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +blaireau blaireau nom m s 4.14 3.78 2.64 2.7 +blaireaux blaireau nom m p 4.14 3.78 1.5 1.08 +blairer blairer ver 1.39 2.03 1.3 1.01 inf; +blairs blair nom m p 0.06 1.35 0.01 0.07 +blairé blairer ver m s 1.39 2.03 0 0.07 par:pas; +blaise blaiser ver 0 0.27 0 0.27 ind:pre:1s;ind:pre:3s; +blaisois blaisois nom m 0 0.07 0 0.07 +blanc blanc adj m s 118.74 430.54 53.93 152.03 +blanc_bec blanc_bec nom m s 1.5 0.61 1.39 0.47 +blanc_bleu blanc_bleu nom m s 0.16 0.41 0.16 0.41 +blanc_gris blanc_gris adj m s 0 0.07 0 0.07 +blanc_seing blanc_seing nom m s 0.01 0.27 0.01 0.27 +blanche blanc adj f s 118.74 430.54 35.92 145.07 +blanchecaille blanchecaille nom f s 0 0.54 0 0.41 +blanchecailles blanchecaille nom f p 0 0.54 0 0.14 +blanchement blanchement nom m s 0 0.07 0 0.07 +blanches blanc adj f p 118.74 430.54 11.43 60.68 +blanchet blanchet nom m s 0 1.15 0 1.15 +blancheur blancheur nom f s 1.23 15.27 1.23 14.73 +blancheurs blancheur nom f p 1.23 15.27 0 0.54 +blanchi blanchir ver m s 5.34 12.23 1.09 2.23 par:pas; +blanchie blanchir ver f s 5.34 12.23 0.06 0.68 par:pas; +blanchies blanchir ver f p 5.34 12.23 0.02 1.49 par:pas; +blanchiment blanchiment nom m s 0.75 0.07 0.74 0 +blanchiments blanchiment nom m p 0.75 0.07 0.01 0.07 +blanchir blanchir ver 5.34 12.23 1.86 2.64 inf; +blanchira blanchir ver 5.34 12.23 0.17 0 ind:fut:3s; +blanchiraient blanchir ver 5.34 12.23 0 0.14 cnd:pre:3p; +blanchirait blanchir ver 5.34 12.23 0.01 0.14 cnd:pre:3s; +blanchirent blanchir ver 5.34 12.23 0 0.14 ind:pas:3p; +blanchirez blanchir ver 5.34 12.23 0.02 0 ind:fut:2p; +blanchiront blanchir ver 5.34 12.23 0.01 0.07 ind:fut:3p; +blanchis blanchir ver m p 5.34 12.23 0.78 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +blanchissage blanchissage nom m s 0.31 0.27 0.31 0.27 +blanchissaient blanchir ver 5.34 12.23 0.02 0.81 ind:imp:3p; +blanchissait blanchir ver 5.34 12.23 0.07 1.28 ind:imp:3s; +blanchissant blanchissant adj m s 0.04 0.61 0.03 0.27 +blanchissante blanchissant adj f s 0.04 0.61 0.01 0.14 +blanchissantes blanchissant adj f p 0.04 0.61 0 0.07 +blanchissants blanchissant adj m p 0.04 0.61 0 0.14 +blanchisse blanchir ver 5.34 12.23 0.02 0.07 sub:pre:3s; +blanchissement blanchissement nom m s 0.09 0.14 0.09 0.14 +blanchissent blanchir ver 5.34 12.23 0.26 0.34 ind:pre:3p; +blanchisserie blanchisserie nom f s 1.23 3.45 1.23 3.45 +blanchisses blanchir ver 5.34 12.23 0.01 0 sub:pre:2s; +blanchisseur blanchisseur nom m s 1.11 3.65 0.44 0.27 +blanchisseurs blanchisseur nom m p 1.11 3.65 0.09 0.54 +blanchisseuse blanchisseur nom f s 1.11 3.65 0.42 1.55 +blanchisseuses blanchisseur nom f p 1.11 3.65 0.16 1.28 +blanchissez blanchir ver 5.34 12.23 0.01 0 ind:pre:2p; +blanchit blanchir ver 5.34 12.23 0.91 0.95 ind:pre:3s;ind:pas:3s; +blanchoie blanchoyer ver 0 0.27 0 0.14 ind:pre:3s; +blanchoiement blanchoiement nom m 0 0.07 0 0.07 +blanchon blanchon nom m s 0.06 1.28 0.06 1.28 +blanchoyait blanchoyer ver 0 0.27 0 0.07 ind:imp:3s; +blanchoyant blanchoyer ver 0 0.27 0 0.07 par:pre; +blanchâtre blanchâtre adj s 0.05 7.23 0.05 4.66 +blanchâtres blanchâtre adj p 0.05 7.23 0 2.57 +blancs blanc nom m p 46.88 72.36 19.31 12.64 +blanc_bec blanc_bec nom m p 1.5 0.61 0.12 0.14 +blancs_manteaux blancs_manteaux adj m p 0 0.07 0 0.07 +blandices blandice nom f p 0 0.14 0 0.14 +blanque blanque nom f s 0 0.07 0 0.07 +blanquette blanquette nom f s 0.17 1.01 0.17 0.88 +blanquettes blanquette nom f p 0.17 1.01 0 0.14 +blasait blaser ver 0.31 1.96 0 0.14 ind:imp:3s; +blase blase nom m s 0.12 1.55 0.12 1.35 +blaser blaser ver 0.31 1.96 0.01 0.14 inf; +blases blase nom m p 0.12 1.55 0 0.2 +blason blason nom m s 0.33 3.45 0.29 3.04 +blasonnait blasonner ver 0 0.41 0 0.07 ind:imp:3s; +blasonné blasonner ver m s 0 0.41 0 0.14 par:pas; +blasonnée blasonner ver f s 0 0.41 0 0.07 par:pas; +blasonnées blasonner ver f p 0 0.41 0 0.07 par:pas; +blasonnés blasonner ver m p 0 0.41 0 0.07 par:pas; +blasons blason nom m p 0.33 3.45 0.04 0.41 +blasphème blasphème nom m s 5.51 2.97 4.46 1.69 +blasphèment blasphémer ver 4.11 1.96 0.1 0.07 ind:pre:3p; +blasphèmes blasphème nom m p 5.51 2.97 1.06 1.28 +blasphéma blasphémer ver 4.11 1.96 0 0.14 ind:pas:3s; +blasphémaient blasphémer ver 4.11 1.96 0.01 0.14 ind:imp:3p; +blasphémais blasphémer ver 4.11 1.96 0 0.07 ind:imp:1s; +blasphémait blasphémer ver 4.11 1.96 0.15 0 ind:imp:3s; +blasphémant blasphémer ver 4.11 1.96 0.01 0.07 par:pre; +blasphémateur blasphémateur nom m s 0.68 0.27 0.36 0.2 +blasphémateurs blasphémateur nom m p 0.68 0.27 0.29 0.07 +blasphématoire blasphématoire adj s 0.62 0.81 0.61 0.54 +blasphématoires blasphématoire adj f p 0.62 0.81 0.01 0.27 +blasphématrice blasphémateur nom f s 0.68 0.27 0.03 0 +blasphémer blasphémer ver 4.11 1.96 1.28 0.61 inf; +blasphémez blasphémer ver 4.11 1.96 0.44 0 imp:pre:2p;ind:pre:2p; +blasphémé blasphémer ver m s 4.11 1.96 0.9 0.41 par:pas; +blastula blastula nom f s 0.01 0 0.01 0 +blasé blasé adj m s 1 3.92 0.66 2.43 +blasée blasé adj f s 1 3.92 0.08 0.61 +blasées blasé adj f p 1 3.92 0.01 0.07 +blasés blasé adj m p 1 3.92 0.25 0.81 +blatte blatte nom f s 0.86 0.68 0.41 0.14 +blattes blatte nom f p 0.86 0.68 0.45 0.54 +blatérant blatérer ver 0 0.07 0 0.07 par:pre; +blaze blaze nom m s 0.53 3.18 0.48 2.77 +blazer blazer nom m s 0.36 3.24 0.32 2.7 +blazers blazer nom m p 0.36 3.24 0.04 0.54 +blazes blaze nom m p 0.53 3.18 0.05 0.41 +bled bled nom m s 5.67 8.04 5.55 7.23 +bleds bled nom m p 5.67 8.04 0.12 0.81 +blennies blennie nom f p 0 0.07 0 0.07 +blennorragie blennorragie nom f s 0.14 0.07 0.14 0.07 +blessa blesser ver 103.74 43.31 0.3 0.74 ind:pas:3s; +blessaient blesser ver 103.74 43.31 0.03 1.08 ind:imp:3p; +blessais blesser ver 103.74 43.31 0.05 0.14 ind:imp:1s;ind:imp:2s; +blessait blesser ver 103.74 43.31 0.19 3.65 ind:imp:3s; +blessant blessant adj m s 1.2 2.91 0.82 1.08 +blessante blessant adj f s 1.2 2.91 0.23 1.08 +blessantes blessant adj f p 1.2 2.91 0.09 0.34 +blessants blessant adj m p 1.2 2.91 0.06 0.41 +blesse blesser ver 103.74 43.31 9.22 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +blessent blesser ver 103.74 43.31 1.08 1.15 ind:pre:3p; +blesser blesser ver 103.74 43.31 19.93 8.31 inf;; +blessera blesser ver 103.74 43.31 0.49 0.07 ind:fut:3s; +blesserai blesser ver 103.74 43.31 0.31 0.14 ind:fut:1s; +blesseraient blesser ver 103.74 43.31 0.01 0.07 cnd:pre:3p; +blesserais blesser ver 103.74 43.31 0.11 0 cnd:pre:1s;cnd:pre:2s; +blesserait blesser ver 103.74 43.31 0.55 0.14 cnd:pre:3s; +blesseras blesser ver 103.74 43.31 0.13 0 ind:fut:2s; +blesserez blesser ver 103.74 43.31 0.04 0 ind:fut:2p; +blesseriez blesser ver 103.74 43.31 0.12 0 cnd:pre:2p; +blesserons blesser ver 103.74 43.31 0.01 0 ind:fut:1p; +blesseront blesser ver 103.74 43.31 0.15 0.2 ind:fut:3p; +blesses blesser ver 103.74 43.31 2.67 0.07 ind:pre:2s; +blessez blesser ver 103.74 43.31 1.79 0 imp:pre:2p;ind:pre:2p; +blessiez blesser ver 103.74 43.31 0.07 0 ind:imp:2p; +blessing blessing nom m s 0.01 0 0.01 0 +blessure blessure nom f s 41.81 32.57 23.05 19.39 +blessures blessure nom f p 41.81 32.57 18.77 13.18 +blessât blesser ver 103.74 43.31 0 0.14 sub:imp:3s; +blessèrent blesser ver 103.74 43.31 0.01 0.14 ind:pas:3p; +blessé blesser ver m s 103.74 43.31 49.12 17.43 par:pas;par:pas;par:pas;par:pas; +blessée blesser ver f s 103.74 43.31 13 3.51 par:pas; +blessées blesser ver f p 103.74 43.31 0.64 0.54 par:pas; +blessés blessé nom m p 21.88 30.34 12.21 17.7 +blet blet adj m s 0.04 1.42 0 0.47 +blets blet adj m p 0.04 1.42 0.01 0.07 +blette blet adj f s 0.04 1.42 0.02 0.61 +blettes blette nom f p 0.16 0.2 0.16 0.2 +blettir blettir ver 0 0.14 0 0.07 inf; +blettissait blettir ver 0 0.14 0 0.07 ind:imp:3s; +blettissement blettissement nom m s 0 0.14 0 0.14 +bleu bleu adj 70.61 207.64 31.24 100.41 +bleu_ciel bleu_ciel adj m s 0 0.07 0 0.07 +bleu_noir bleu_noir adj 0.01 1.01 0.01 1.01 +bleu_roi bleu_roi nom m s 0.02 0 0.02 0 +bleu_vert bleu_vert adj 0.13 0.47 0.13 0.47 +bleubite bleubite nom m s 0 0.27 0 0.2 +bleubites bleubite nom m p 0 0.27 0 0.07 +bleue bleu adj f s 70.61 207.64 21.63 53.11 +bleues bleu adj f p 70.61 207.64 4.77 21.28 +bleuet bleuet nom m s 1.98 1.22 1.02 0.14 +bleuets bleuet nom m p 1.98 1.22 0.95 1.08 +bleuette bleuette nom f s 0.03 0 0.03 0 +bleui bleuir ver m s 0.16 3.11 0.01 0.2 par:pas; +bleuie bleui adj f s 0 1.08 0 0.27 +bleuies bleuir ver f p 0.16 3.11 0.1 0.74 par:pas; +bleuir bleuir ver 0.16 3.11 0 0.2 inf; +bleuira bleuir ver 0.16 3.11 0 0.07 ind:fut:3s; +bleuis bleuir ver m p 0.16 3.11 0 0.14 par:pas; +bleuissaient bleuir ver 0.16 3.11 0 0.27 ind:imp:3p; +bleuissait bleuir ver 0.16 3.11 0 0.54 ind:imp:3s; +bleuissante bleuissant adj f s 0 0.27 0 0.14 +bleuissantes bleuissant adj f p 0 0.27 0 0.14 +bleuissent bleuir ver 0.16 3.11 0.03 0.2 ind:pre:3p; +bleuit bleuir ver 0.16 3.11 0.03 0.47 ind:pre:3s;ind:pas:3s; +bleus bleu adj m p 70.61 207.64 12.97 32.84 +bleusaille bleusaille nom f s 0.38 0.2 0.37 0.2 +bleusailles bleusaille nom f p 0.38 0.2 0.01 0 +bleuté bleuté adj m s 0.46 7.09 0.07 2.23 +bleutée bleuté adj f s 0.46 7.09 0.25 2.09 +bleutées bleuté adj f p 0.46 7.09 0 1.28 +bleutés bleuté adj m p 0.46 7.09 0.14 1.49 +bleuâtre bleuâtre adj s 0.09 7.23 0.04 4.66 +bleuâtres bleuâtre adj p 0.09 7.23 0.04 2.57 +bleuît bleuir ver 0.16 3.11 0 0.07 sub:imp:3s; +bliaut bliaut nom m s 0 0.27 0 0.27 +blindage blindage nom m s 0.59 1.01 0.43 0.74 +blindages blindage nom m p 0.59 1.01 0.16 0.27 +blindant blinder ver 2.37 3.58 0 0.07 par:pre; +blinde blinde nom f s 0.12 0.47 0.1 0.41 +blindent blinder ver 2.37 3.58 0 0.07 ind:pre:3p; +blinder blinder ver 2.37 3.58 0.1 0.34 inf; +blindera blinder ver 2.37 3.58 0 0.07 ind:fut:3s; +blindes blinde nom f p 0.12 0.47 0.02 0.07 +blindez blinder ver 2.37 3.58 0.01 0 imp:pre:2p; +blindé blindé adj m s 3.95 9.05 1.44 1.35 +blindée blindé adj f s 3.95 9.05 1.17 4.46 +blindées blindé adj f p 3.95 9.05 0.97 1.96 +blindés blindé nom m p 1.37 3.31 1.11 2.91 +blini blini nom m s 0.93 0.14 0.02 0 +blinis blini nom m p 0.93 0.14 0.91 0.14 +blitzkrieg blitzkrieg nom m s 0.09 0 0.09 0 +blizzard blizzard nom m s 1.12 0.47 0.76 0.47 +blizzards blizzard nom m p 1.12 0.47 0.36 0 +blob blob nom m s 0.19 0 0.19 0 +bloc bloc nom m s 17.28 38.78 14.25 28.31 +bloc_cylindres bloc_cylindres nom m 0.01 0 0.01 0 +bloc_moteur bloc_moteur nom m s 0.01 0 0.01 0 +bloc_notes bloc_notes nom m 0.47 0.61 0.47 0.61 +blocage blocage nom m s 1.73 1.82 1.57 1.49 +blocages blocage nom m p 1.73 1.82 0.16 0.34 +blocaille blocaille nom f s 0.02 0.07 0.02 0.07 +block block nom m s 1.06 0.27 0.7 0 +blockhaus blockhaus nom m 1.77 6.15 1.77 6.15 +blocks block nom m p 1.06 0.27 0.36 0.27 +blocs bloc nom m p 17.28 38.78 3.03 10.47 +blocs_notes blocs_notes nom m p 0.07 0.07 0.07 0.07 +blocus blocus nom m 1.43 2.36 1.43 2.36 +blond blond adj m s 21.45 76.76 8.73 21.28 +blondasse blondasse adj s 0.82 0.88 0.77 0.74 +blondasses blondasse adj m p 0.82 0.88 0.05 0.14 +blonde blond nom f s 22.65 33.45 14.06 21.28 +blondes blond nom f p 22.65 33.45 4.54 2.77 +blondeur blondeur nom f s 0.2 2.64 0.2 2.57 +blondeurs blondeur nom f p 0.2 2.64 0.01 0.07 +blondi blondir ver m s 0.82 1.15 0.36 0.14 par:pas; +blondie blondir ver f s 0.82 1.15 0.46 0.47 par:pas; +blondin blondin adj m s 0.03 0.14 0.02 0.07 +blondine blondin adj f s 0.03 0.14 0 0.07 +blondines blondin adj f p 0.03 0.14 0.01 0 +blondinet blondinet nom m s 0.45 0.95 0.44 0.95 +blondinets blondinet nom m p 0.45 0.95 0.01 0 +blondinette blondinet adj f s 0.63 0.68 0.4 0.2 +blondir blondir ver 0.82 1.15 0 0.14 inf; +blondis blondir ver m p 0.82 1.15 0 0.07 par:pas; +blondissait blondir ver 0.82 1.15 0 0.2 ind:imp:3s; +blondit blondir ver 0.82 1.15 0 0.14 ind:pre:3s; +blonds blond adj m p 21.45 76.76 3.45 18.38 +bloody_mary bloody_mary nom m s 1.32 0.2 1.32 0.2 +bloom bloom nom m s 0.01 0 0.01 0 +bloomer bloomer nom m s 0.01 0 0.01 0 +bloqua bloquer ver 38.62 23.11 0.02 1.28 ind:pas:3s; +bloquai bloquer ver 38.62 23.11 0 0.07 ind:pas:1s; +bloquaient bloquer ver 38.62 23.11 0.43 0.54 ind:imp:3p; +bloquais bloquer ver 38.62 23.11 0.17 0.2 ind:imp:1s;ind:imp:2s; +bloquait bloquer ver 38.62 23.11 0.43 2.03 ind:imp:3s; +bloquant bloquer ver 38.62 23.11 0.39 1.28 par:pre; +bloque bloquer ver 38.62 23.11 5.92 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +bloquent bloquer ver 38.62 23.11 1.1 0.54 ind:pre:3p; +bloquer bloquer ver 38.62 23.11 4.38 3.18 inf; +bloquera bloquer ver 38.62 23.11 0.33 0.07 ind:fut:3s; +bloquerai bloquer ver 38.62 23.11 0.08 0 ind:fut:1s; +bloquerais bloquer ver 38.62 23.11 0.02 0 cnd:pre:1s;cnd:pre:2s; +bloquerait bloquer ver 38.62 23.11 0.07 0.07 cnd:pre:3s; +bloqueront bloquer ver 38.62 23.11 0.23 0 ind:fut:3p; +bloques bloquer ver 38.62 23.11 0.73 0.14 ind:pre:2s;sub:pre:2s; +bloqueur bloqueur nom m s 0.24 0 0.19 0 +bloqueurs bloqueur nom m p 0.24 0 0.05 0 +bloquez bloquer ver 38.62 23.11 4.45 0 imp:pre:2p;ind:pre:2p; +bloquiez bloquer ver 38.62 23.11 0.06 0 ind:imp:2p; +bloquons bloquer ver 38.62 23.11 0.12 0.14 imp:pre:1p;ind:pre:1p; +bloquât bloquer ver 38.62 23.11 0 0.07 sub:imp:3s; +bloquèrent bloquer ver 38.62 23.11 0.01 0.14 ind:pas:3p; +bloqué bloquer ver m s 38.62 23.11 11.55 4.86 par:pas; +bloquée bloquer ver f s 38.62 23.11 4.59 2.3 par:pas; +bloquées bloquer ver f p 38.62 23.11 1.13 1.08 par:pas; +bloqués bloquer ver m p 38.62 23.11 2.41 2.09 par:pas; +blot blot nom m s 0.71 1.76 0.71 1.49 +blots blot nom m p 0.71 1.76 0 0.27 +blotti blottir ver m s 1.7 12.84 0.22 2.3 par:pas; +blottie blottir ver f s 1.7 12.84 0.27 2.64 par:pas; +blotties blottir ver f p 1.7 12.84 0 0.34 par:pas; +blottir blottir ver 1.7 12.84 0.33 2.64 inf; +blottirai blottir ver 1.7 12.84 0.01 0 ind:fut:1s; +blottirait blottir ver 1.7 12.84 0 0.07 cnd:pre:3s; +blottirent blottir ver 1.7 12.84 0 0.07 ind:pas:3p; +blottis blottir ver m p 1.7 12.84 0.42 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +blottissaient blottir ver 1.7 12.84 0 0.41 ind:imp:3p; +blottissais blottir ver 1.7 12.84 0.01 0.14 ind:imp:1s; +blottissait blottir ver 1.7 12.84 0.15 0.47 ind:imp:3s; +blottissant blottir ver 1.7 12.84 0.01 0.2 par:pre; +blottisse blottir ver 1.7 12.84 0.01 0.07 sub:pre:3s; +blottissement blottissement nom m 0 0.07 0 0.07 +blottissent blottir ver 1.7 12.84 0.11 0.14 ind:pre:3p; +blottissions blottir ver 1.7 12.84 0 0.07 ind:imp:1p; +blottit blottir ver 1.7 12.84 0.16 2.09 ind:pre:3s;ind:pas:3s; +bloum bloum nom m s 0 0.07 0 0.07 +blousantes blousant adj f p 0 0.07 0 0.07 +blouse blouse nom f s 5.68 32.64 5.29 28.51 +blousent blouser ver 0.53 0.54 0.02 0 ind:pre:3p; +blouser blouser ver 0.53 0.54 0.33 0.14 inf; +blouses blouse nom f p 5.68 32.64 0.39 4.12 +blouson blouson nom m s 7.15 25.2 6.62 22.57 +blousons blouson nom m p 7.15 25.2 0.53 2.64 +blousé blouser ver m s 0.53 0.54 0.13 0.14 par:pas; +blousée blouser ver f s 0.53 0.54 0 0.14 par:pas; +blousés blouser ver m p 0.53 0.54 0.02 0.14 par:pas; +blue_jean blue_jean nom m p 0.17 2.03 0.01 0 +blue_note blue_note nom f s 0.02 0 0.02 0 +blue_jean blue_jean nom m s 0.17 2.03 0.05 1.08 +blue_jean blue_jean nom m p 0.17 2.03 0.1 0.95 +blues blues nom m 7.81 5.68 7.81 5.68 +bluets bluet nom m p 0 0.07 0 0.07 +bluette bluette nom f s 0.01 0.61 0 0.34 +bluettes bluette nom f p 0.01 0.61 0.01 0.27 +bluff bluff nom m s 3.02 1.62 3 1.55 +bluffa bluffer ver 6.3 2.36 0 0.07 ind:pas:3s; +bluffaient bluffer ver 6.3 2.36 0.03 0.07 ind:imp:3p; +bluffais bluffer ver 6.3 2.36 0.31 0 ind:imp:1s;ind:imp:2s; +bluffait bluffer ver 6.3 2.36 0.19 0.27 ind:imp:3s; +bluffant bluffer ver 6.3 2.36 0.05 0 par:pre; +bluffe bluffer ver 6.3 2.36 2.03 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bluffent bluffer ver 6.3 2.36 0.12 0.14 ind:pre:3p; +bluffer bluffer ver 6.3 2.36 1.47 0.61 inf; +blufferais bluffer ver 6.3 2.36 0.02 0 cnd:pre:1s;cnd:pre:2s; +blufferez bluffer ver 6.3 2.36 0.02 0 ind:fut:2p; +bluffes bluffer ver 6.3 2.36 0.6 0.14 ind:pre:2s; +bluffeur bluffeur nom m s 0.3 0.27 0.28 0.14 +bluffeurs bluffeur nom m p 0.3 0.27 0.02 0.07 +bluffeuses bluffeur nom f p 0.3 0.27 0 0.07 +bluffez bluffer ver 6.3 2.36 0.56 0 imp:pre:2p;ind:pre:2p; +bluffiez bluffer ver 6.3 2.36 0.03 0 ind:imp:2p; +bluffons bluffer ver 6.3 2.36 0.1 0 imp:pre:1p;ind:pre:1p; +bluffs bluff nom m p 3.02 1.62 0.02 0.07 +bluffé bluffer ver m s 6.3 2.36 0.42 0.14 par:pas; +bluffée bluffer ver f s 6.3 2.36 0.14 0.07 par:pas; +bluffées bluffer ver f p 6.3 2.36 0 0.07 par:pas; +bluffés bluffer ver m p 6.3 2.36 0.23 0.07 par:pas; +blush blush nom m s 0.2 0.14 0.2 0.14 +bluter bluter ver 0 0.07 0 0.07 inf; +blutoir blutoir nom m s 0 0.07 0 0.07 +blâma blâmer ver 9.38 6.42 0.01 0.14 ind:pas:3s; +blâmable blâmable adj f s 0.04 0.41 0.04 0.41 +blâmaient blâmer ver 9.38 6.42 0 0.41 ind:imp:3p; +blâmais blâmer ver 9.38 6.42 0.02 0.2 ind:imp:1s; +blâmait blâmer ver 9.38 6.42 0.03 0.74 ind:imp:3s; +blâmant blâmer ver 9.38 6.42 0.02 0.14 par:pre; +blâme blâmer ver 9.38 6.42 2.91 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +blâment blâmer ver 9.38 6.42 0.2 0.07 ind:pre:3p; +blâmer blâmer ver 9.38 6.42 4.37 2.03 inf;;inf;;inf;; +blâmera blâmer ver 9.38 6.42 0.27 0 ind:fut:3s; +blâmerais blâmer ver 9.38 6.42 0.07 0 cnd:pre:1s; +blâmerait blâmer ver 9.38 6.42 0.09 0.07 cnd:pre:3s; +blâmeras blâmer ver 9.38 6.42 0.02 0 ind:fut:2s; +blâmerions blâmer ver 9.38 6.42 0.01 0 cnd:pre:1p; +blâmeront blâmer ver 9.38 6.42 0.03 0.07 ind:fut:3p; +blâmes blâme nom m p 2.04 4.73 0.19 0.68 +blâmez blâmer ver 9.38 6.42 0.42 0.07 imp:pre:2p;ind:pre:2p; +blâmons blâmer ver 9.38 6.42 0.41 0 imp:pre:1p;ind:pre:1p; +blâmé blâmer ver m s 9.38 6.42 0.21 0.54 par:pas; +blâmée blâmer ver f s 9.38 6.42 0.05 0.2 par:pas; +blâmées blâmer ver f p 9.38 6.42 0.03 0.07 par:pas; +blâmés blâmer ver m p 9.38 6.42 0.03 0.07 par:pas; +blèche blèche adj s 0 0.34 0 0.2 +blèches blèche adj p 0 0.34 0 0.14 +blèsement blèsement nom m s 0 0.07 0 0.07 +blé blé nom m s 19.98 28.65 19.07 23.24 +blédard blédard nom m s 0 0.14 0 0.07 +blédards blédard nom m p 0 0.14 0 0.07 +blépharite blépharite nom f s 0 0.14 0 0.14 +blés blé nom m p 19.98 28.65 0.91 5.41 +blême blême adj s 1.48 14.73 1.16 11.62 +blêmes blême adj p 1.48 14.73 0.31 3.11 +blêmi blêmir ver m s 0.42 2.7 0.01 0.47 par:pas; +blêmies blêmir ver f p 0.42 2.7 0 0.07 par:pas; +blêmir blêmir ver 0.42 2.7 0.14 0.54 inf; +blêmis blêmir ver 0.42 2.7 0 0.14 ind:pre:1s;ind:pas:1s; +blêmissais blêmir ver 0.42 2.7 0 0.07 ind:imp:1s; +blêmissait blêmir ver 0.42 2.7 0 0.2 ind:imp:3s; +blêmissant blêmir ver 0.42 2.7 0 0.07 par:pre; +blêmissante blêmissant adj f s 0 0.07 0 0.07 +blêmit blêmir ver 0.42 2.7 0.28 1.15 ind:pre:3s;ind:pas:3s; +boa boa nom m s 1.62 2.3 1.56 1.96 +boas boa nom m p 1.62 2.3 0.06 0.34 +boat_people boat_people nom m 0.02 0.07 0.02 0.07 +bob bob nom m s 0.71 0.88 0.69 0.27 +bobard bobard nom m s 3.13 1.96 1 0.41 +bobards bobard nom m p 3.13 1.96 2.13 1.55 +bobbies bobbies nom m p 0 0.2 0 0.2 +bobby bobby nom m s 0.32 0 0.32 0 +bobinage bobinage nom m s 0.02 0.14 0.02 0.14 +bobinait bobiner ver 0.01 0.14 0 0.07 ind:imp:3s; +bobinard bobinard nom m s 0 0.41 0 0.34 +bobinards bobinard nom m p 0 0.41 0 0.07 +bobine bobine nom f s 3.63 5.88 1.69 2.91 +bobineau bobineau nom m s 0.03 0.07 0.03 0.07 +bobines bobine nom f p 3.63 5.88 1.94 2.97 +bobinette bobinette nom f s 0.14 0.2 0.11 0.2 +bobinettes bobinette nom f p 0.14 0.2 0.03 0 +bobineuse bobineur nom f s 0 0.2 0 0.14 +bobineuses bobineur nom f p 0 0.2 0 0.07 +bobino bobino nom m s 0 0.41 0 0.41 +bobo bobo nom m s 2.42 2.23 1.89 1.55 +bobonne bobonne nom f s 0.79 1.15 0.79 1.08 +bobonnes bobonne nom f p 0.79 1.15 0 0.07 +bobos bobo nom m p 2.42 2.23 0.53 0.68 +bobosse bobosse nom s 0 0.61 0 0.61 +bobs bob nom m p 0.71 0.88 0.02 0.61 +bobsleigh bobsleigh nom m s 0.91 0.2 0.91 0.2 +bobèche bobèche nom f s 0 0.14 0 0.07 +bobèches bobèche nom f p 0 0.14 0 0.07 +boc boc nom m s 0 0.07 0 0.07 +bocage bocage nom m s 0.14 2.84 0.14 2.5 +bocages bocage nom m p 0.14 2.84 0 0.34 +bocagères bocager adj f p 0 0.07 0 0.07 +bocal bocal nom m s 3.83 7.5 2.73 4.66 +bocard bocard nom m s 0 0.07 0 0.07 +bocaux bocal nom m p 3.83 7.5 1.1 2.84 +boche boche nom s 8.63 25.14 2.24 3.38 +boches boche nom p 8.63 25.14 6.38 21.76 +bochiman bochiman nom m s 0.01 0 0.01 0 +bock bock nom m s 0.11 1.35 0.1 0.88 +bocks bock nom m p 0.11 1.35 0.01 0.47 +bocson bocson nom m s 0 0.27 0 0.27 +bodega bodega nom f s 0.65 0.14 0.63 0.14 +bodegas bodega nom f p 0.65 0.14 0.03 0 +bodhi bodhi nom f s 2.21 0 2.21 0 +bodhisattva bodhisattva nom m s 0.38 0 0.38 0 +bodo bodo nom m s 1 0.07 1 0.07 +body body nom m s 1.24 0.07 1.24 0.07 +body_building body_building nom m s 0.01 0 0.01 0 +bodybuilding bodybuilding nom m s 0.01 0 0.01 0 +boer boer nom m s 0.01 0.41 0.01 0.14 +boers boer nom m p 0.01 0.41 0 0.27 +boeuf boeuf nom m s 10.39 21.01 8.58 14.32 +boeufs boeuf nom m p 10.39 21.01 1.81 6.69 +bof bof ono 4.7 2.84 4.7 2.84 +boggie boggie nom m s 0.02 0.41 0.02 0 +boggies boggie nom m p 0.02 0.41 0 0.41 +boghei boghei nom m s 0.02 2.64 0.02 2.64 +bogie bogie nom m s 0.14 0 0.14 0 +bogomiles bogomile nom m p 0 0.07 0 0.07 +bogue boguer ver 0.16 0 0.14 0 ind:pre:3s; +boguer boguer ver 0.16 0 0.01 0 inf; +bogues bogue nom p 0.17 0.47 0.05 0.07 +boguet boguet nom m s 0 0.07 0 0.07 +bohème bohème nom s 2.17 2.84 2.01 2.23 +bohèmes bohème nom p 2.17 2.84 0.16 0.61 +bohémien bohémien nom m s 4.08 1.49 0.34 0.27 +bohémienne bohémien nom f s 4.08 1.49 2.8 0.41 +bohémiennes bohémien nom f p 4.08 1.49 0.14 0.14 +bohémiens bohémien nom m p 4.08 1.49 0.79 0.68 +bohême bohême nom s 0 0.54 0 0.54 +boira boire ver 339.05 274.32 2.97 1.55 ind:fut:3s; +boirai boire ver 339.05 274.32 3.13 1.55 ind:fut:1s; +boiraient boire ver 339.05 274.32 0.01 0.34 cnd:pre:3p; +boirais boire ver 339.05 274.32 2.37 1.22 cnd:pre:1s;cnd:pre:2s; +boirait boire ver 339.05 274.32 0.46 1.55 cnd:pre:3s; +boiras boire ver 339.05 274.32 1.14 0.74 ind:fut:2s; +boire boire ver 339.05 274.32 142.15 100.27 inf;; +boirez boire ver 339.05 274.32 0.84 0.54 ind:fut:2p; +boiriez boire ver 339.05 274.32 0.12 0.14 cnd:pre:2p; +boirions boire ver 339.05 274.32 0.03 0.27 cnd:pre:1p; +boirons boire ver 339.05 274.32 0.91 0.95 ind:fut:1p; +boiront boire ver 339.05 274.32 0.11 0.34 ind:fut:3p; +bois bois nom m 115.56 299.46 115.56 299.46 +boisaient boiser ver 0.06 1.42 0 0.07 ind:imp:3p; +boisait boiser ver 0.06 1.42 0 0.07 ind:imp:3s; +boisant boiser ver 0.06 1.42 0 0.07 par:pre; +boise boiser ver 0.06 1.42 0.01 0.07 ind:pre:3s; +boiserie boiserie nom f s 0.26 5 0.11 0.88 +boiseries boiserie nom f p 0.26 5 0.15 4.12 +boiseur boiseur nom m s 0 0.07 0 0.07 +boisseau boisseau nom m s 0.42 0.61 0.26 0.54 +boisseaux boisseau nom m p 0.42 0.61 0.16 0.07 +boisselier boisselier nom m s 0.27 0 0.27 0 +boisson boisson nom f s 18.55 13.24 11.73 7.36 +boissonnée boissonner ver f s 0 0.07 0 0.07 par:pas; +boissons boisson nom f p 18.55 13.24 6.82 5.88 +boisé boisé adj m s 0.46 3.04 0.15 0.61 +boisée boisé adj f s 0.46 3.04 0.17 1.28 +boisées boisé adj f p 0.46 3.04 0.12 0.95 +boisés boisé adj m p 0.46 3.04 0.02 0.2 +boit boire ver 339.05 274.32 25.63 21.08 ind:pre:3s; +boitaient boiter ver 15.43 7.77 0.01 0.41 ind:imp:3p; +boitais boiter ver 15.43 7.77 0.18 0.07 ind:imp:1s;ind:imp:2s; +boitait boiter ver 15.43 7.77 0.64 1.96 ind:imp:3s; +boitant boiter ver 15.43 7.77 0.24 1.69 par:pre; +boite boiter ver 15.43 7.77 11.83 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boitement boitement nom m s 0.05 0 0.05 0 +boitent boiter ver 15.43 7.77 0.04 0.07 ind:pre:3p; +boiter boiter ver 15.43 7.77 0.36 0.81 inf; +boitera boiter ver 15.43 7.77 0.05 0 ind:fut:3s; +boiterai boiter ver 15.43 7.77 0.02 0.07 ind:fut:1s; +boiteraient boiter ver 15.43 7.77 0 0.07 cnd:pre:3p; +boiterait boiter ver 15.43 7.77 0 0.07 cnd:pre:3s; +boiteras boiter ver 15.43 7.77 0.16 0 ind:fut:2s; +boiterie boiterie nom f s 0 0.54 0 0.54 +boites boiter ver 15.43 7.77 1.63 0.27 ind:pre:2s; +boiteuse boiteux adj f s 2.83 4.39 0.78 1.96 +boiteuses boiteux adj f p 2.83 4.39 0.03 0.2 +boiteux boiteux nom m 2.32 2.03 2.32 2.03 +boitez boiter ver 15.43 7.77 0.1 0.14 ind:pre:2p; +boitiez boiter ver 15.43 7.77 0.04 0 ind:imp:2p; +boitillait boitiller ver 0.04 1.82 0.02 0.41 ind:imp:3s; +boitillant boitiller ver 0.04 1.82 0 1.01 par:pre; +boitille boitiller ver 0.04 1.82 0.01 0.27 ind:pre:1s;ind:pre:3s; +boitillement boitillement nom m s 0.03 0.14 0.03 0.07 +boitillements boitillement nom m p 0.03 0.14 0 0.07 +boitiller boitiller ver 0.04 1.82 0.01 0.14 inf; +boité boiter ver m s 15.43 7.77 0.13 0.27 par:pas; +boive boire ver 339.05 274.32 2.86 1.96 sub:pre:1s;sub:pre:3s; +boivent boire ver 339.05 274.32 5.47 5.95 ind:pre:3p; +boives boire ver 339.05 274.32 0.71 0.2 sub:pre:2s; +bol bol nom m s 17.62 25.14 16.93 20.07 +bola bola nom f s 0.25 0.47 0.11 0.27 +bolas bola nom f p 0.25 0.47 0.14 0.2 +bolchevik bolchevik nom s 2.11 1.42 0.36 0.27 +bolcheviks bolchevik nom p 2.11 1.42 1.75 1.15 +bolchevique bolchevique adj s 1.24 1.49 0.87 0.74 +bolcheviques bolchevique adj p 1.24 1.49 0.37 0.74 +bolchevisme bolchevisme nom m s 0.11 1.08 0.11 1.08 +bolcheviste bolcheviste adj s 0 0.14 0 0.07 +bolchevistes bolcheviste adj p 0 0.14 0 0.07 +bolcho bolcho nom s 0.04 0 0.04 0 +bold bold adj m s 0.04 0 0.04 0 +boldo boldo nom m s 0 0.2 0 0.2 +bolduc bolduc nom m s 0 0.34 0 0.34 +bolet bolet nom m s 0 0.81 0 0.41 +bolets bolet nom m p 0 0.81 0 0.41 +bolge bolge nom f s 0 0.07 0 0.07 +bolide bolide nom m s 0.49 2.7 0.38 1.82 +bolides bolide nom m p 0.49 2.7 0.11 0.88 +bolivar bolivar nom m s 0.09 0.47 0.09 0.47 +bolivien bolivien adj m s 0.22 0.07 0.01 0 +bolivienne bolivien nom f s 0.39 0 0.27 0 +boliviens bolivien nom m p 0.39 0 0.11 0 +bolognais bolognais adj m p 0.25 0.34 0 0.07 +bolognaise bolognais adj f s 0.25 0.34 0.23 0.2 +bolognaises bolognais adj f p 0.25 0.34 0.02 0.07 +bolonaise bolonais adj f s 0.01 0 0.01 0 +bols bol nom m p 17.62 25.14 0.69 5.07 +bolée bolée nom f s 0.01 0.27 0.01 0.2 +bolées bolée nom f p 0.01 0.27 0 0.07 +boléro boléro nom m s 0.56 1.22 0.56 1.08 +boléros boléro nom m p 0.56 1.22 0 0.14 +bomba bomber ver 1.34 5.74 0.27 0.41 ind:pas:3s; +bombage bombage nom m s 0 0.2 0 0.2 +bombaient bomber ver 1.34 5.74 0 0.2 ind:imp:3p; +bombais bomber ver 1.34 5.74 0 0.07 ind:imp:1s; +bombait bomber ver 1.34 5.74 0.01 0.81 ind:imp:3s; +bombance bombance nom f s 0.23 0.54 0.23 0.47 +bombances bombance nom f p 0.23 0.54 0 0.07 +bombant bomber ver 1.34 5.74 0.04 0.88 par:pre; +bombarda bombarder ver 10.86 8.65 0.01 0.54 ind:pas:3s; +bombardaient bombarder ver 10.86 8.65 0.24 0.47 ind:imp:3p; +bombardais bombarder ver 10.86 8.65 0.01 0.14 ind:imp:1s;ind:imp:2s; +bombardait bombarder ver 10.86 8.65 0.19 0.88 ind:imp:3s; +bombardant bombarder ver 10.86 8.65 0.18 0.41 par:pre; +bombarde bombarder ver 10.86 8.65 0.96 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bombardement bombardement nom m s 6.45 17.16 3.96 11.22 +bombardements bombardement nom m p 6.45 17.16 2.48 5.95 +bombardent bombarder ver 10.86 8.65 1.68 0.81 ind:pre:3p; +bombarder bombarder ver 10.86 8.65 2.42 2.09 inf; +bombardera bombarder ver 10.86 8.65 0.15 0 ind:fut:3s; +bombarderai bombarder ver 10.86 8.65 0.15 0 ind:fut:1s; +bombarderaient bombarder ver 10.86 8.65 0.01 0.07 cnd:pre:3p; +bombarderais bombarder ver 10.86 8.65 0.02 0 cnd:pre:1s; +bombarderait bombarder ver 10.86 8.65 0.02 0.07 cnd:pre:3s; +bombarderons bombarder ver 10.86 8.65 0.02 0 ind:fut:1p; +bombarderont bombarder ver 10.86 8.65 0.23 0 ind:fut:3p; +bombardes bombarde nom f p 0.19 0.95 0.14 0.54 +bombardez bombarder ver 10.86 8.65 0.1 0 imp:pre:2p;ind:pre:2p; +bombardier bombardier nom m s 3.02 3.31 0.89 0.68 +bombardiers bombardier nom m p 3.02 3.31 2.13 2.64 +bombardions bombarder ver 10.86 8.65 0.01 0 ind:imp:1p; +bombardon bombardon nom m s 0.27 0 0.14 0 +bombardons bombarder ver 10.86 8.65 0.14 0.07 imp:pre:1p;ind:pre:1p; +bombardâmes bombarder ver 10.86 8.65 0 0.07 ind:pas:1p; +bombardèrent bombarder ver 10.86 8.65 0 0.07 ind:pas:3p; +bombardé bombarder ver m s 10.86 8.65 2.33 1.42 par:pas; +bombardée bombarder ver f s 10.86 8.65 0.83 0.27 par:pas; +bombardées bombarder ver f p 10.86 8.65 0.25 0.2 par:pas; +bombardés bombarder ver m p 10.86 8.65 0.89 0.68 par:pas; +bombas bomber ver 1.34 5.74 0 0.07 ind:pas:2s; +bombasses bomber ver 1.34 5.74 0.01 0 sub:imp:2s; +bombe bombe nom f s 64.39 30.81 48.7 15 +bombements bombement nom m p 0 0.07 0 0.07 +bombent bomber ver 1.34 5.74 0 0.14 ind:pre:3p; +bomber bomber ver 1.34 5.74 0.34 0.61 inf; +bombes bombe nom f p 64.39 30.81 15.7 15.81 +bombe_test bombe_test nom f p 0.01 0 0.01 0 +bombeur bombeur nom m s 0.03 0 0.03 0 +bombez bomber ver 1.34 5.74 0.08 0 imp:pre:2p; +bombillement bombillement nom m s 0 0.07 0 0.07 +bombinette bombinette nom f s 0 0.2 0 0.07 +bombinettes bombinette nom f p 0 0.2 0 0.14 +bombonne bombonne nom f s 0.23 0.47 0.16 0.34 +bombonnes bombonne nom f p 0.23 0.47 0.08 0.14 +bombyx bombyx nom m 0.12 0 0.12 0 +bombèrent bomber ver 1.34 5.74 0 0.07 ind:pas:3p; +bombé bombé adj m s 0.3 5.61 0.16 2.43 +bombée bombé adj f s 0.3 5.61 0.03 1.49 +bombées bombé adj f p 0.3 5.61 0.11 0.81 +bombés bombé adj m p 0.3 5.61 0 0.88 +bon bon ono 521.22 109.86 521.22 109.86 +bon_papa bon_papa nom m s 0.07 1.55 0.07 1.55 +bonace bonace nom f s 0 0.14 0 0.07 +bonaces bonace nom f p 0 0.14 0 0.07 +bonapartiste bonapartiste nom s 0.28 0.14 0.14 0.07 +bonapartistes bonapartiste nom p 0.28 0.14 0.14 0.07 +bonard bonard adj m s 0.01 0.34 0.01 0.27 +bonardes bonard adj f p 0.01 0.34 0 0.07 +bonasse bonasse adj s 0.08 2.03 0.08 1.62 +bonassement bonassement adv 0 0.07 0 0.07 +bonasserie bonasserie nom f s 0 0.07 0 0.07 +bonasses bonasse adj p 0.08 2.03 0 0.41 +bonbon bonbon nom m s 23.45 15 6.89 3.72 +bonbonne bonbonne nom f s 0.47 2.43 0.33 1.62 +bonbonnes bonbonne nom f p 0.47 2.43 0.15 0.81 +bonbonnière bonbonnière nom f s 0.14 1.35 0.14 1.08 +bonbonnières bonbonnière nom f p 0.14 1.35 0 0.27 +bonbons bonbon nom m p 23.45 15 16.55 11.28 +bond bond nom m s 4.69 25.74 3.44 20.07 +bondage bondage nom m s 0.41 0.07 0.41 0 +bondages bondage nom m p 0.41 0.07 0 0.07 +bondait bonder ver 1.84 2.3 0 0.07 ind:imp:3s; +bonde bonde nom f s 0.24 0.61 0.23 0.54 +bonder bonder ver 1.84 2.3 0.09 0 inf; +bondes bonde nom f p 0.24 0.61 0.01 0.07 +bondi bondir ver m s 5.1 35.41 0.91 3.85 par:pas; +bondieusard bondieusard nom m s 0.01 0 0.01 0 +bondieuserie bondieuserie nom f s 0.05 0.68 0 0.27 +bondieuseries bondieuserie nom f p 0.05 0.68 0.05 0.41 +bondieuses bondieuser ver 0 0.07 0 0.07 ind:pre:2s; +bondir bondir ver 5.1 35.41 2.11 9.05 inf; +bondira bondir ver 5.1 35.41 0.16 0.14 ind:fut:3s; +bondirais bondir ver 5.1 35.41 0.03 0 cnd:pre:1s;cnd:pre:2s; +bondirait bondir ver 5.1 35.41 0.02 0.2 cnd:pre:3s; +bondirent bondir ver 5.1 35.41 0.11 0.88 ind:pas:3p; +bondis bondir ver m p 5.1 35.41 0.34 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bondissaient bondir ver 5.1 35.41 0.03 0.88 ind:imp:3p; +bondissais bondir ver 5.1 35.41 0.04 0.27 ind:imp:1s;ind:imp:2s; +bondissait bondir ver 5.1 35.41 0.17 2.57 ind:imp:3s; +bondissant bondir ver 5.1 35.41 0.2 2.7 par:pre; +bondissante bondissant adj f s 0.34 2.77 0.09 0.95 +bondissantes bondissant adj f p 0.34 2.77 0.14 0.68 +bondissants bondissant adj m p 0.34 2.77 0.02 0.27 +bondisse bondir ver 5.1 35.41 0.02 0.07 sub:pre:1s;sub:pre:3s; +bondissement bondissement nom m s 0 0.61 0 0.54 +bondissements bondissement nom m p 0 0.61 0 0.07 +bondissent bondir ver 5.1 35.41 0.04 0.88 ind:pre:3p; +bondissez bondir ver 5.1 35.41 0.11 0.07 imp:pre:2p;ind:pre:2p; +bondissons bondir ver 5.1 35.41 0 0.14 imp:pre:1p;ind:pre:1p; +bondit bondir ver 5.1 35.41 0.81 11.96 ind:pre:3s;ind:pas:3s; +bondrée bondrée nom f s 0.01 0.2 0.01 0.2 +bonds bond nom m p 4.69 25.74 1.25 5.68 +bondé bonder ver m s 1.84 2.3 1.07 1.15 par:pas; +bondée bonder ver f s 1.84 2.3 0.33 0.34 par:pas; +bondées bonder ver f p 1.84 2.3 0.19 0.27 par:pas; +bondés bonder ver m p 1.84 2.3 0.17 0.47 par:pas; +bondît bondir ver 5.1 35.41 0 0.2 sub:imp:3s; +bongo bongo nom m s 0.21 0.14 0.09 0.07 +bongos bongo nom m p 0.21 0.14 0.12 0.07 +bonheur bonheur nom m s 78.74 162.36 78.34 156.35 +bonheur_du_jour bonheur_du_jour nom m s 0.02 0.14 0.02 0.07 +bonheurs bonheur nom m p 78.74 162.36 0.41 6.01 +bonheur_du_jour bonheur_du_jour nom m p 0.02 0.14 0 0.07 +bonhomie bonhomie nom f s 0.02 4.12 0.02 4.12 +bonhomme bonhomme nom m s 10.57 29.8 9.96 26.01 +bonhommes bonhomme adj m p 4.85 4.46 0.47 0.14 +boni boni nom m s 0.01 0.68 0.01 0.54 +boniche boniche nom f s 1.28 1.22 1.16 0.81 +boniches boniche nom f p 1.28 1.22 0.12 0.41 +bonifiaient bonifier ver 0.14 0.14 0 0.07 ind:imp:3p; +bonification bonification nom f s 0 0.07 0 0.07 +bonifier bonifier ver 0.14 0.14 0.08 0 inf; +bonifierait bonifier ver 0.14 0.14 0 0.07 cnd:pre:3s; +bonifiez bonifier ver 0.14 0.14 0.01 0 ind:pre:2p; +bonifié bonifier ver m s 0.14 0.14 0.04 0 par:pas; +bonifiée bonifier ver f s 0.14 0.14 0.01 0 par:pas; +boniment boniment nom m s 1.3 3.99 0.65 1.55 +bonimentait bonimenter ver 0 0.2 0 0.07 ind:imp:3s; +bonimente bonimenter ver 0 0.2 0 0.07 ind:pre:3s; +bonimenter bonimenter ver 0 0.2 0 0.07 inf; +bonimenteur bonimenteur nom m s 0.18 0.47 0.18 0.14 +bonimenteurs bonimenteur nom m p 0.18 0.47 0 0.34 +boniments boniment nom m p 1.3 3.99 0.65 2.43 +bonir bonir ver 0 1.08 0 0.74 inf; +bonis boni nom m p 0.01 0.68 0 0.14 +bonissait bonir ver 0 1.08 0 0.14 ind:imp:3s; +bonisse bonir ver 0 1.08 0 0.07 sub:pre:1s; +bonit bonir ver 0 1.08 0 0.14 ind:pre:3s; +bonjour bonjour nom m s 570.57 51.55 569.88 50.74 +bonjours bonjour nom m p 570.57 51.55 0.69 0.81 +bonnard bonnard adj m s 0.18 1.62 0.18 1.08 +bonnarde bonnard adj f s 0.18 1.62 0 0.27 +bonnardes bonnard adj f p 0.18 1.62 0 0.07 +bonnards bonnard adj m p 0.18 1.62 0 0.2 +bonne bon adj_sup f s 1554.44 789.66 578.93 294.53 +bonne_maman bonne_maman nom f s 0.14 2.03 0.14 2.03 +bonnement bonnement adv 1.37 4.66 1.37 4.66 +bonnes bon adj_sup f p 1554.44 789.66 71.25 61.76 +bonnet bonnet nom m s 8.37 18.58 6.62 14.66 +bonneteau bonneteau nom m s 0.02 1.35 0.02 1.35 +bonneter bonneter ver 0 0.07 0 0.07 inf; +bonneterie bonneterie nom f s 0.14 0.61 0.14 0.54 +bonneteries bonneterie nom f p 0.14 0.61 0 0.07 +bonneteur bonneteur nom m s 0.01 0.07 0.01 0 +bonneteurs bonneteur nom m p 0.01 0.07 0 0.07 +bonnets bonnet nom m p 8.37 18.58 1.75 3.92 +bonnette bonnette nom f s 0.14 0.14 0.14 0 +bonnettes bonnette nom f p 0.14 0.14 0 0.14 +bonni bonnir ver m s 6.67 2.09 0.01 0.27 par:pas; +bonniche bonniche nom f s 0.45 2.91 0.43 1.96 +bonniches bonniche nom f p 0.45 2.91 0.02 0.95 +bonnie bonnir ver f s 6.67 2.09 6.66 0 par:pas; +bonnir bonnir ver 6.67 2.09 0 0.95 inf; +bonnis bonnir ver 6.67 2.09 0 0.07 ind:pre:1s; +bonnisse bonnir ver 6.67 2.09 0 0.14 sub:pre:3s; +bonnissent bonnir ver 6.67 2.09 0 0.07 ind:pre:3p; +bonnit bonnir ver 6.67 2.09 0 0.61 ind:pre:3s; +bons bon adj_sup m p 1554.44 789.66 67.97 57.09 +bon_cadeaux bon_cadeaux adv 0.01 0 0.01 0 +bon_chrétien bon_chrétien nom m p 0 0.07 0 0.07 +bonsaï bonsaï nom m s 0.23 0.14 0.22 0.14 +bonsaïs bonsaï nom m p 0.23 0.14 0.01 0 +bonshommes bonhomme nom m p 10.57 29.8 0.6 3.78 +bonsoir bonsoir nom m s 161.17 22.23 161.16 22.03 +bonsoirs bonsoir nom m p 161.17 22.23 0.01 0.2 +bonté bonté nom f s 17.88 19.8 17.31 18.65 +bontés bonté nom f p 17.88 19.8 0.56 1.15 +bonus bonus nom m 3.8 0.41 3.8 0.41 +bonzaï bonzaï nom m s 0.14 0.2 0.14 0.2 +bonze bonze nom m s 0.91 1.55 0.89 1.22 +bonzes bonze nom m p 0.91 1.55 0.03 0.34 +boogie_woogie boogie_woogie nom m s 0.28 0.07 0.28 0.07 +book book nom m s 2.89 0.54 1.5 0.41 +bookmaker bookmaker nom m s 2.07 0.2 1.62 0.14 +bookmakers bookmaker nom m p 2.07 0.2 0.45 0.07 +books book nom m p 2.89 0.54 1.39 0.14 +boom boom nom m s 2.83 0.41 2.81 0.41 +boomer boomer nom m s 2.19 0.07 2.19 0.07 +boomerang boomerang nom m s 2.17 0.68 2.17 0.68 +booms boom nom m p 2.83 0.41 0.02 0 +booster booster nom m s 0.63 0 0.52 0 +boosters booster nom m p 0.63 0 0.11 0 +bootlegger bootlegger nom m s 0.22 0.07 0.1 0 +bootleggers bootlegger nom m p 0.22 0.07 0.13 0.07 +boots boots nom m p 0.54 0.95 0.54 0.95 +bop bop nom m s 0.19 0.27 0.19 0.27 +boqueteau boqueteau nom m s 0.02 3.04 0.02 1.49 +boqueteaux boqueteau nom m p 0.02 3.04 0 1.55 +boquillons boquillon nom m p 0 0.14 0 0.14 +bora bora nom s 0.01 0.14 0.01 0.14 +borax borax nom m 0.16 0.07 0.16 0.07 +borborygme borborygme nom m s 0.28 1.96 0 0.47 +borborygmes borborygme nom m p 0.28 1.96 0.28 1.49 +borchtch borchtch nom m s 0 0.07 0 0.07 +bord bord nom m s 79.9 228.11 77.06 197.36 +borda border ver 3.78 34.46 0 0.2 ind:pas:3s; +bordage bordage nom m s 0.02 0.47 0 0.47 +bordages bordage nom m p 0.02 0.47 0.02 0 +bordai border ver 3.78 34.46 0 0.07 ind:pas:1s; +bordaient border ver 3.78 34.46 0.04 2.43 ind:imp:3p; +bordait border ver 3.78 34.46 0.03 2.03 ind:imp:3s; +bordant border ver 3.78 34.46 0.17 2.5 par:pre; +borde border ver 3.78 34.46 0.72 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s; +bordeau bordeau nom m s 0.02 0 0.02 0 +bordeaux bordeaux adj 0.7 1.62 0.7 1.62 +bordel bordel nom m s 98.77 21.89 97.84 18.99 +bordelais bordelais adj m 0.06 1.01 0 0.61 +bordelaise bordelais nom f s 0.14 1.28 0.14 1.01 +bordelaises bordelais nom f p 0.14 1.28 0 0.2 +bordelières bordelier nom f p 0 0.07 0 0.07 +bordels bordel nom m p 98.77 21.89 0.93 2.91 +bordent border ver 3.78 34.46 0.26 2.91 ind:pre:3p; +border border ver 3.78 34.46 0.95 1.82 inf;; +bordera border ver 3.78 34.46 0.03 0 ind:fut:3s; +borderait border ver 3.78 34.46 0.1 0.07 cnd:pre:3s; +bordereau bordereau nom m s 1.09 0.68 0.71 0.27 +bordereaux bordereau nom m p 1.09 0.68 0.38 0.41 +borderie borderie nom f s 0.01 0 0.01 0 +borderiez border ver 3.78 34.46 0.01 0 cnd:pre:2p; +borderline borderline nom m s 0.14 0 0.14 0 +bordes border ver 3.78 34.46 0.04 0.07 ind:pre:2s;;ind:pre:2s; +bordez border ver 3.78 34.46 0.2 0 imp:pre:2p; +bordier bordier adj m s 0 0.07 0 0.07 +bordille bordille nom f s 0 0.07 0 0.07 +bordj bordj nom m s 0 0.74 0 0.74 +bords bord nom m p 79.9 228.11 2.84 30.74 +bordurant bordurer ver 0 0.47 0 0.07 par:pre; +bordure bordure nom f s 1.11 12.91 1.03 11.62 +bordurer bordurer ver 0 0.47 0 0.14 inf; +bordures bordure nom f p 1.11 12.91 0.08 1.28 +borduré bordurer ver m s 0 0.47 0 0.14 par:pas; +bordurée bordurer ver f s 0 0.47 0 0.14 par:pas; +bordèrent border ver 3.78 34.46 0 0.07 ind:pas:3p; +bordé border ver m s 3.78 34.46 0.78 5.14 par:pas; +bordée bordée nom f s 0.39 3.45 0.38 2.23 +bordées border ver f p 3.78 34.46 0.13 3.72 par:pas; +bordélique bordélique adj s 0.65 0.61 0.6 0.54 +bordéliques bordélique adj f p 0.65 0.61 0.04 0.07 +bordéliser bordéliser ver 0 0.07 0 0.07 inf; +bordés border ver m p 3.78 34.46 0.01 3.31 par:pas; +bore bore nom m s 0.17 0 0.17 0 +borgne borgne adj s 1.8 3.99 1.67 3.45 +borgnes borgne adj p 1.8 3.99 0.14 0.54 +borgnotaient borgnoter ver 0 0.74 0 0.07 ind:imp:3p; +borgnotant borgnoter ver 0 0.74 0 0.07 par:pre; +borgnote borgnoter ver 0 0.74 0 0.41 ind:pre:1s;ind:pre:3s; +borgnoté borgnoter ver m s 0 0.74 0 0.2 par:pas; +borie borie nom f s 0 0.61 0 0.61 +borique borique adj m s 0.11 0 0.11 0 +borna borner ver 2.19 13.24 0 1.28 ind:pas:3s; +bornage bornage nom m s 0.1 0.61 0 0.61 +bornages bornage nom m p 0.1 0.61 0.1 0 +bornai borner ver 2.19 13.24 0 0.34 ind:pas:1s; +bornaient borner ver 2.19 13.24 0.01 0.68 ind:imp:3p; +bornais borner ver 2.19 13.24 0.01 0.2 ind:imp:1s; +bornait borner ver 2.19 13.24 0.01 2.97 ind:imp:3s; +bornant borner ver 2.19 13.24 0 1.42 par:pre; +borne borne nom f s 8.35 20.61 1.69 8.04 +borne_fontaine borne_fontaine nom f s 0 0.2 0 0.07 +bornent borner ver 2.19 13.24 0.02 0.34 ind:pre:3p; +borner borner ver 2.19 13.24 0.29 0.81 inf; +bornera borner ver 2.19 13.24 0.01 0 ind:fut:3s; +bornerai borner ver 2.19 13.24 0.04 0 ind:fut:1s; +borneraient borner ver 2.19 13.24 0 0.07 cnd:pre:3p; +bornerait borner ver 2.19 13.24 0 0.14 cnd:pre:3s; +bornerons borner ver 2.19 13.24 0 0.07 ind:fut:1p; +bornes borne nom f p 8.35 20.61 6.66 12.57 +borne_fontaine borne_fontaine nom f p 0 0.2 0 0.14 +bornez borner ver 2.19 13.24 0.01 0 imp:pre:2p; +bornions borner ver 2.19 13.24 0 0.07 ind:imp:1p; +bornât borner ver 2.19 13.24 0 0.07 sub:imp:3s; +bornèrent borner ver 2.19 13.24 0.02 0.14 ind:pas:3p; +borné borné adj m s 3.13 4.66 2.07 1.96 +bornée borné adj f s 3.13 4.66 0.48 1.08 +bornées borner ver f p 2.19 13.24 0.01 0 par:pas; +bornés borné adj m p 3.13 4.66 0.58 1.22 +borough borough nom m s 0.18 0 0.18 0 +borsalino borsalino nom m s 0 0.07 0 0.07 +bortch bortch nom m s 0.02 0 0.02 0 +bortsch bortsch nom m s 1.03 0.27 1.03 0.27 +boréal boréal adj m s 0.57 1.49 0.11 0.34 +boréale boréal adj f s 0.57 1.49 0.38 0.88 +boréales boréal adj f p 0.57 1.49 0.08 0.27 +borée borée nom f s 0.14 0 0.14 0 +bosco bosco nom m s 0.04 1.01 0.04 1.01 +boscotte boscot adj f s 0 0.2 0 0.2 +boskoop boskoop nom f s 0 0.14 0 0.14 +bosniaque bosniaque adj s 0.82 0.07 0.78 0 +bosniaques bosniaque nom p 0.3 0.27 0.2 0.27 +bosnien bosnien adj m s 0 0.07 0 0.07 +bosquet bosquet nom m s 0.8 5.81 0.47 2.64 +bosquets bosquet nom m p 0.8 5.81 0.32 3.18 +boss boss nom m 13.45 2.5 13.45 2.5 +bossa bosser ver 76.28 10.95 0.89 0 ind:pas:3s; +bossa_nova bossa_nova nom f s 0.12 0.07 0.12 0.07 +bossage bossage nom m s 0.01 0 0.01 0 +bossaient bosser ver 76.28 10.95 0.33 0.2 ind:imp:3p; +bossais bosser ver 76.28 10.95 2.79 0.2 ind:imp:1s;ind:imp:2s; +bossait bosser ver 76.28 10.95 2.56 1.22 ind:imp:3s; +bossant bosser ver 76.28 10.95 0.46 0.14 par:pre; +bosse bosser ver 76.28 10.95 21.92 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bossela bosseler ver 0.05 2.36 0.01 0.07 ind:pas:3s; +bosselaient bosseler ver 0.05 2.36 0 0.34 ind:imp:3p; +bosselait bosseler ver 0.05 2.36 0 0.07 ind:imp:3s; +bosseler bosseler ver 0.05 2.36 0 0.07 inf; +bossellement bossellement nom m s 0 0.14 0 0.07 +bossellements bossellement nom m p 0 0.14 0 0.07 +bosselure bosselure nom f s 0.01 0.07 0.01 0.07 +bosselé bosselé adj m s 0.12 2.5 0.09 1.28 +bosselée bosselé adj f s 0.12 2.5 0.03 0.34 +bosselées bosseler ver f p 0.05 2.36 0.03 0.27 par:pas; +bosselés bosselé adj m p 0.12 2.5 0.01 0.68 +bossent bosser ver 76.28 10.95 1.93 1.01 ind:pre:3p; +bosser bosser ver 76.28 10.95 26.82 3.78 inf; +bossera bosser ver 76.28 10.95 0.24 0.2 ind:fut:3s; +bosserai bosser ver 76.28 10.95 0.55 0 ind:fut:1s; +bosserais bosser ver 76.28 10.95 0.39 0 cnd:pre:1s;cnd:pre:2s; +bosserait bosser ver 76.28 10.95 0.18 0.07 cnd:pre:3s; +bosseras bosser ver 76.28 10.95 0.51 0 ind:fut:2s; +bosserez bosser ver 76.28 10.95 0.06 0 ind:fut:2p; +bosses bosser ver 76.28 10.95 6.95 0.47 ind:pre:2s; +bosseur bosseur nom m s 0.59 0.34 0.53 0 +bosseurs bosseur adj m p 0.34 0.14 0.14 0.07 +bosseuse bosseur nom f s 0.59 0.34 0.02 0.2 +bossez bosser ver 76.28 10.95 1.97 0 imp:pre:2p;ind:pre:2p; +bossiez bosser ver 76.28 10.95 0.14 0 ind:imp:2p; +bossions bosser ver 76.28 10.95 0.01 0.07 ind:imp:1p; +bossoir bossoir nom m s 0.09 0.27 0.05 0.07 +bossoirs bossoir nom m p 0.09 0.27 0.04 0.2 +bosson bosson nom m s 0.02 0.07 0 0.07 +bossons bosser ver 76.28 10.95 0.02 0 ind:pre:1p; +bossu bossu nom m s 4.74 1.82 4.19 1.69 +bossuaient bossuer ver 0 0.54 0 0.14 ind:imp:3p; +bossue bossu adj f s 1.97 4.66 0.35 1.89 +bossues bossu adj f p 1.97 4.66 0.01 0.41 +bossus bossu nom m p 4.74 1.82 0.55 0.14 +bossué bossué adj m s 0 0.61 0 0.34 +bossuée bossué adj f s 0 0.61 0 0.14 +bossuées bossuer ver f p 0 0.54 0 0.14 par:pas; +bossués bossué adj m p 0 0.61 0 0.14 +bossé bosser ver m s 76.28 10.95 7.56 0.95 par:pas; +boston boston nom m s 0.44 0.47 0.44 0.47 +bostonien bostonien nom m s 0.04 0.2 0.02 0.07 +bostonienne bostonien adj f s 0.04 0.27 0.02 0.14 +bostoniens bostonien nom m p 0.04 0.2 0.02 0.14 +bostonner bostonner ver 0 0.07 0 0.07 inf; +bot bot adj m s 0.52 0.54 0.39 0.54 +botanique botanique adj s 0.88 0.74 0.7 0.47 +botaniquement botaniquement adv 0.01 0 0.01 0 +botaniques botanique adj p 0.88 0.74 0.17 0.27 +botaniste botaniste nom s 0.61 0.74 0.47 0.61 +botanistes botaniste nom p 0.61 0.74 0.14 0.14 +bote bot adj f s 0.52 0.54 0.13 0 +botta botter ver 15.54 5.61 0 0.14 ind:pas:3s; +bottai botter ver 15.54 5.61 0 0.07 ind:pas:1s; +bottaient botter ver 15.54 5.61 0 0.27 ind:imp:3p; +bottait botter ver 15.54 5.61 0.13 0.74 ind:imp:3s; +bottant botter ver 15.54 5.61 0.04 0.07 par:pre; +botte botte nom f s 32.19 44.93 6.38 8.51 +botteler botteler ver 0 0.34 0 0.14 inf; +bottellent botteler ver 0 0.34 0 0.07 ind:pre:3p; +bottelé bottelé adj m s 0.01 0 0.01 0 +bottelées botteler ver f p 0 0.34 0 0.07 par:pas; +bottent botter ver 15.54 5.61 0.08 0 ind:pre:3p; +botter botter ver 15.54 5.61 7.63 1.22 inf;;inf;;inf;; +bottera botter ver 15.54 5.61 0.2 0 ind:fut:3s; +botterai botter ver 15.54 5.61 0.61 0.07 ind:fut:1s; +botterais botter ver 15.54 5.61 0.24 0.07 cnd:pre:1s;cnd:pre:2s; +botterait botter ver 15.54 5.61 0.21 0.07 cnd:pre:3s; +botteras botter ver 15.54 5.61 0.05 0 ind:fut:2s; +botterons botter ver 15.54 5.61 0.01 0 ind:fut:1p; +botteront botter ver 15.54 5.61 0.04 0 ind:fut:3p; +bottes botte nom f p 32.19 44.93 25.81 36.42 +botteur botteur nom m s 0.14 0 0.1 0 +botteurs botteur nom m p 0.14 0 0.03 0 +bottez botter ver 15.54 5.61 0.17 0 imp:pre:2p;ind:pre:2p; +botticellienne botticellien nom f s 0 0.07 0 0.07 +bottier bottier nom m s 0.25 0.74 0.25 0.68 +bottiers bottier nom m p 0.25 0.74 0 0.07 +bottiez botter ver 15.54 5.61 0.01 0 ind:imp:2p; +bottillon bottillon nom m s 0.04 0.74 0 0.07 +bottillons bottillon nom m p 0.04 0.74 0.04 0.68 +bottin bottin nom m s 1.05 1.35 1.05 0.68 +bottine bottine nom f s 2.27 4.86 0.54 0.61 +bottines bottine nom f p 2.27 4.86 1.73 4.26 +bottins bottin nom m p 1.05 1.35 0 0.68 +bottiné bottiner ver m s 0 0.07 0 0.07 par:pas; +bottons botter ver 15.54 5.61 0.12 0.2 imp:pre:1p;ind:pre:1p; +botté botter ver m s 15.54 5.61 1.63 0.47 par:pas; +bottée botté adj f s 0.32 2.23 0.1 0.07 +bottées botter ver f p 15.54 5.61 0.03 0.2 par:pas; +bottés botté adj m p 0.32 2.23 0.01 0.68 +botulique botulique adj f s 0.19 0 0.19 0 +botulisme botulisme nom m s 0.15 0 0.15 0 +boubou boubou nom m s 0.11 2.3 0.11 1.55 +bouboule boubouler ver 0.19 0.54 0.18 0.54 imp:pre:2s;ind:pre:3s; +bouboules boubouler ver 0.19 0.54 0.01 0 ind:pre:2s; +boubous boubou nom m p 0.11 2.3 0 0.74 +bouc bouc nom m s 8.49 10.07 7.92 8.92 +boucan boucan nom m s 3.22 2.36 3.22 2.36 +boucanait boucaner ver 0 1.08 0 0.07 ind:imp:3s; +boucaner boucaner ver 0 1.08 0 0.07 inf; +boucanerie boucanerie nom f s 0 0.07 0 0.07 +boucanier boucanier nom m s 0.36 0.14 0.07 0.07 +boucaniers boucanier nom m p 0.36 0.14 0.29 0.07 +boucané boucaner ver m s 0 1.08 0 0.2 par:pas; +boucanée boucaner ver f s 0 1.08 0 0.47 par:pas; +boucanées boucaner ver f p 0 1.08 0 0.14 par:pas; +boucanés boucaner ver m p 0 1.08 0 0.14 par:pas; +boucha boucher ver 16.23 21.22 0 0.54 ind:pas:3s; +bouchage bouchage nom m s 0 0.07 0 0.07 +bouchai boucher ver 16.23 21.22 0 0.07 ind:pas:1s; +bouchaient boucher ver 16.23 21.22 0.14 0.88 ind:imp:3p; +bouchais boucher ver 16.23 21.22 0.1 0.27 ind:imp:1s; +bouchait boucher ver 16.23 21.22 0.06 1.55 ind:imp:3s; +bouchant boucher ver 16.23 21.22 0.37 0.88 par:pre; +bouchardant boucharder ver 0.01 0.07 0 0.07 par:pre; +boucharde boucharde nom f s 0 0.27 0 0.27 +boucharder boucharder ver 0.01 0.07 0.01 0 inf; +bouche bouche nom f s 90.03 283.45 87.75 267.64 +bouche_trou bouche_trou nom m s 0.25 0.07 0.22 0.07 +bouche_trou bouche_trou nom m p 0.25 0.07 0.03 0 +bouche_à_bouche bouche_à_bouche nom m 0 0.2 0 0.2 +bouche_à_oreille bouche_à_oreille nom m s 0 0.07 0 0.07 +bouchent boucher ver 16.23 21.22 0.25 0.54 ind:pre:3p; +boucher boucher nom m s 8.26 11.55 7.15 7.7 +bouchera boucher ver 16.23 21.22 0.09 0 ind:fut:3s; +boucheraient boucher ver 16.23 21.22 0.01 0.07 cnd:pre:3p; +boucherais boucher ver 16.23 21.22 0 0.07 cnd:pre:1s; +boucherait boucher ver 16.23 21.22 0.05 0.07 cnd:pre:3s; +boucheras boucher ver 16.23 21.22 0.01 0 ind:fut:2s; +boucherie boucherie nom f s 4.11 8.92 4.02 7.43 +boucheries boucherie nom f p 4.11 8.92 0.08 1.49 +boucherons boucher ver 16.23 21.22 0.01 0 ind:fut:1p; +bouchers boucher nom m p 8.26 11.55 0.93 2.91 +bouches bouche nom f p 90.03 283.45 2.27 15.81 +bouchez boucher ver 16.23 21.22 0.82 0 imp:pre:2p;ind:pre:2p; +bouchions boucher ver 16.23 21.22 0 0.07 ind:imp:1p; +bouchon bouchon nom m s 7.25 14.46 5.47 10.68 +bouchonna bouchonner ver 0.36 0.95 0 0.07 ind:pas:3s; +bouchonnaient bouchonner ver 0.36 0.95 0 0.07 ind:imp:3p; +bouchonnait bouchonner ver 0.36 0.95 0 0.07 ind:imp:3s; +bouchonnant bouchonner ver 0.36 0.95 0 0.07 par:pre; +bouchonne bouchonner ver 0.36 0.95 0.29 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouchonner bouchonner ver 0.36 0.95 0.02 0.34 inf; +bouchonneras bouchonner ver 0.36 0.95 0 0.07 ind:fut:2s; +bouchonné bouchonner ver m s 0.36 0.95 0.03 0.07 par:pas; +bouchonnée bouchonner ver f s 0.36 0.95 0.01 0.14 par:pas; +bouchons bouchon nom m p 7.25 14.46 1.77 3.78 +bouchot bouchot nom m s 0 0.14 0 0.07 +bouchoteurs bouchoteur nom m p 0 0.07 0 0.07 +bouchots bouchot nom m p 0 0.14 0 0.07 +bouchure bouchure nom f s 0 0.07 0 0.07 +bouchère boucher nom f s 8.26 11.55 0.18 0.81 +bouchèrent boucher ver 16.23 21.22 0 0.14 ind:pas:3p; +bouchères boucher nom f p 8.26 11.55 0 0.14 +bouché boucher ver m s 16.23 21.22 3.21 2.57 par:pas; +bouchée bouchée nom f s 5.61 11.49 4.77 6.28 +bouchées bouchée nom f p 5.61 11.49 0.84 5.2 +bouchés boucher ver m p 16.23 21.22 0.63 0.41 par:pas; +boucla boucler ver 24.61 23.45 0 1.49 ind:pas:3s; +bouclage bouclage nom m s 0.27 0.54 0.27 0.54 +bouclaient boucler ver 24.61 23.45 0.14 0.54 ind:imp:3p; +bouclais boucler ver 24.61 23.45 0.05 0.14 ind:imp:1s; +bouclait boucler ver 24.61 23.45 0.05 1.35 ind:imp:3s; +bouclant boucler ver 24.61 23.45 0.03 0.74 par:pre; +boucle boucle nom f s 18.86 29.86 8.62 11.22 +bouclent boucler ver 24.61 23.45 0.54 0.47 ind:pre:3p; +boucler boucler ver 24.61 23.45 6.91 6.55 inf; +bouclera boucler ver 24.61 23.45 0.26 0 ind:fut:3s; +bouclerai boucler ver 24.61 23.45 0.12 0 ind:fut:1s; +boucleraient boucler ver 24.61 23.45 0 0.07 cnd:pre:3p; +bouclerais boucler ver 24.61 23.45 0.05 0 cnd:pre:1s;cnd:pre:2s; +bouclerait boucler ver 24.61 23.45 0.05 0.07 cnd:pre:3s; +boucleras boucler ver 24.61 23.45 0.02 0.14 ind:fut:2s; +bouclerons boucler ver 24.61 23.45 0.02 0 ind:fut:1p; +boucleront boucler ver 24.61 23.45 0.03 0.07 ind:fut:3p; +boucles boucle nom f p 18.86 29.86 10.23 18.65 +bouclette bouclette nom f s 0.56 1.49 0.05 0.07 +bouclettes bouclette nom f p 0.56 1.49 0.51 1.42 +bouclez boucler ver 24.61 23.45 3.88 0.68 imp:pre:2p;ind:pre:2p; +bouclier bouclier nom m s 14.45 7.3 10.47 4.59 +boucliers bouclier nom m p 14.45 7.3 3.98 2.7 +bouclons boucler ver 24.61 23.45 0.18 0 imp:pre:1p;ind:pre:1p; +bouclâmes boucler ver 24.61 23.45 0 0.14 ind:pas:1p; +bouclât boucler ver 24.61 23.45 0 0.07 sub:imp:3s; +bouclèrent boucler ver 24.61 23.45 0 0.07 ind:pas:3p; +bouclé boucler ver m s 24.61 23.45 2.88 3.31 par:pas; +bouclée boucler ver f s 24.61 23.45 1.2 2.64 par:pas; +bouclées boucler ver f p 24.61 23.45 0.05 0.27 par:pas; +bouclés bouclé adj m p 2.38 7.16 0.77 2.64 +boucs bouc nom m p 8.49 10.07 0.57 1.15 +bouda bouder ver 5.11 8.04 0.01 0.61 ind:pas:3s; +boudaient bouder ver 5.11 8.04 0 0.34 ind:imp:3p; +boudais bouder ver 5.11 8.04 0.04 0.14 ind:imp:1s;ind:imp:2s; +boudait bouder ver 5.11 8.04 0.03 1.76 ind:imp:3s; +boudant bouder ver 5.11 8.04 0 0.14 par:pre; +bouddha bouddha nom m s 0.57 1.55 0.11 1.08 +bouddhas bouddha nom m p 0.57 1.55 0.46 0.47 +bouddhique bouddhique adj s 0.01 0.2 0.01 0.14 +bouddhiques bouddhique adj f p 0.01 0.2 0 0.07 +bouddhisme bouddhisme nom m s 0.42 1.89 0.42 1.89 +bouddhiste bouddhiste adj s 1 1.69 0.94 1.22 +bouddhistes bouddhiste nom p 0.32 0.54 0.22 0.27 +boude bouder ver 5.11 8.04 2.31 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boudent bouder ver 5.11 8.04 0.16 0.27 ind:pre:3p; +bouder bouder ver 5.11 8.04 0.95 2.09 inf; +bouderai bouder ver 5.11 8.04 0 0.07 ind:fut:1s; +bouderait bouder ver 5.11 8.04 0 0.14 cnd:pre:3s; +bouderie bouderie nom f s 0.12 1.69 0.12 1.15 +bouderies bouderie nom f p 0.12 1.69 0 0.54 +boudes bouder ver 5.11 8.04 1.03 0.27 ind:pre:2s; +boudeur boudeur nom m s 0.04 0.14 0.02 0.14 +boudeurs boudeur adj m p 0.12 4.05 0 0.14 +boudeuse boudeur adj f s 0.12 4.05 0.11 1.55 +boudeuses boudeur adj f p 0.12 4.05 0 0.27 +boudez bouder ver 5.11 8.04 0.22 0.14 imp:pre:2p;ind:pre:2p; +boudi boudi adv 0.01 0 0.01 0 +boudiez bouder ver 5.11 8.04 0.11 0.07 ind:imp:2p; +boudin boudin nom m s 2.85 7.57 2.49 5.88 +boudinaient boudiner ver 0.32 1.76 0 0.07 ind:imp:3p; +boudinait boudiner ver 0.32 1.76 0 0.14 ind:imp:3s; +boudinant boudiner ver 0.32 1.76 0 0.14 par:pre; +boudine boudiner ver 0.32 1.76 0.27 0.07 ind:pre:1s;ind:pre:3s; +boudinent boudiner ver 0.32 1.76 0 0.07 ind:pre:3p; +boudins boudin nom m p 2.85 7.57 0.36 1.69 +boudiné boudiner ver m s 0.32 1.76 0 0.54 par:pas; +boudinée boudiner ver f s 0.32 1.76 0.02 0.2 par:pas; +boudinées boudiné adj f p 0.18 1.35 0.01 0.27 +boudinés boudiné adj m p 0.18 1.35 0.15 0.74 +boudiou boudiou ono 0 0.2 0 0.2 +boudoir boudoir nom m s 0.94 3.92 0.93 3.04 +boudoirs boudoir nom m p 0.94 3.92 0.01 0.88 +boudons bouder ver 5.11 8.04 0 0.07 ind:pre:1p; +boudu boudu ono 7.37 0.07 7.37 0.07 +boudèrent bouder ver 5.11 8.04 0 0.07 ind:pas:3p; +boudé bouder ver m s 5.11 8.04 0.23 0.14 par:pas; +boudée bouder ver f s 5.11 8.04 0.01 0.14 par:pas; +boudés bouder ver m p 5.11 8.04 0 0.07 par:pas; +boue boue nom f s 15.1 53.31 15.09 52.3 +boues boue nom f p 15.1 53.31 0.01 1.01 +boueur boueur nom m s 0 0.07 0 0.07 +boueuse boueux adj f s 1.38 11.15 0.33 3.78 +boueuses boueux adj f p 1.38 11.15 0.16 2.3 +boueux boueux adj m 1.38 11.15 0.89 5.07 +bouf bouf ono 0.02 0.14 0.02 0.14 +bouffable bouffable adj s 0.03 0 0.03 0 +bouffaient bouffer ver 42.72 33.04 0.29 0.34 ind:imp:3p; +bouffais bouffer ver 42.72 33.04 0.25 0.14 ind:imp:1s;ind:imp:2s; +bouffait bouffer ver 42.72 33.04 0.6 2.09 ind:imp:3s; +bouffant bouffer ver 42.72 33.04 0.21 0.41 par:pre; +bouffante bouffant adj f s 0.25 3.11 0.01 0.61 +bouffantes bouffant adj f p 0.25 3.11 0.14 1.01 +bouffants bouffant adj m p 0.25 3.11 0.04 0.88 +bouffarde bouffarde nom f s 0.2 1.01 0.2 0.95 +bouffardes bouffarde nom f p 0.2 1.01 0 0.07 +bouffe bouffe nom f s 14.51 7.36 14.4 6.62 +bouffent bouffer ver 42.72 33.04 1.93 1.49 ind:pre:3p; +bouffer bouffer ver 42.72 33.04 18.26 15.61 inf; +bouffera bouffer ver 42.72 33.04 0.38 0.61 ind:fut:3s; +boufferai bouffer ver 42.72 33.04 0.19 0.07 ind:fut:1s; +boufferaient bouffer ver 42.72 33.04 0.26 0.07 cnd:pre:3p; +boufferais bouffer ver 42.72 33.04 0.54 0.2 cnd:pre:1s;cnd:pre:2s; +boufferait bouffer ver 42.72 33.04 0.28 0.41 cnd:pre:3s; +boufferas bouffer ver 42.72 33.04 0.2 0.14 ind:fut:2s; +boufferez bouffer ver 42.72 33.04 0.02 0 ind:fut:2p; +boufferont bouffer ver 42.72 33.04 0.36 0.27 ind:fut:3p; +bouffes bouffer ver 42.72 33.04 1.56 0.41 ind:pre:2s; +bouffetance bouffetance nom f s 0 0.14 0 0.14 +bouffettes bouffette nom f p 0.01 0.07 0.01 0.07 +bouffeur bouffeur nom m s 0.84 0.34 0.32 0.14 +bouffeurs bouffeur nom m p 0.84 0.34 0.29 0.14 +bouffeuse bouffeur nom f s 0.84 0.34 0.2 0 +bouffeuses bouffeur nom f p 0.84 0.34 0.03 0.07 +bouffez bouffer ver 42.72 33.04 0.74 0.14 imp:pre:2p;ind:pre:2p; +bouffi bouffi adj m s 1.16 3.92 0.66 2.03 +bouffie bouffi adj f s 1.16 3.92 0.32 0.74 +bouffies bouffir ver f p 0.7 3.04 0.01 0.14 par:pas; +bouffiez bouffer ver 42.72 33.04 0.03 0 ind:imp:2p; +bouffis bouffi adj m p 1.16 3.92 0.18 0.88 +bouffissure bouffissure nom f s 0.01 0.41 0 0.27 +bouffissures bouffissure nom f p 0.01 0.41 0.01 0.14 +bouffon bouffon nom m s 6.79 2.7 5.13 1.69 +bouffonna bouffonner ver 0.01 0.54 0 0.14 ind:pas:3s; +bouffonnait bouffonner ver 0.01 0.54 0 0.14 ind:imp:3s; +bouffonnant bouffonner ver 0.01 0.54 0 0.14 par:pre; +bouffonnante bouffonnant adj f s 0 0.2 0 0.14 +bouffonne bouffon nom f s 6.79 2.7 0.3 0.14 +bouffonnement bouffonnement adv 0 0.07 0 0.07 +bouffonner bouffonner ver 0.01 0.54 0 0.14 inf; +bouffonnerie bouffonnerie nom f s 0.42 1.01 0.2 0.81 +bouffonneries bouffonnerie nom f p 0.42 1.01 0.22 0.2 +bouffonnes bouffon adj f p 2.57 2.3 0.01 0.2 +bouffons bouffon nom m p 6.79 2.7 1.36 0.88 +bouffé bouffer ver m s 42.72 33.04 6.28 3.85 par:pas; +bouffée bouffée nom f s 2.89 26.35 1.92 14.19 +bouffées bouffée nom f p 2.89 26.35 0.97 12.16 +bouffés bouffer ver m p 42.72 33.04 0.32 0.54 par:pas; +bouftance bouftance nom f s 0 0.07 0 0.07 +bougainvillier bougainvillier nom m s 0.05 0.14 0.03 0 +bougainvilliers bougainvillier nom m p 0.05 0.14 0.02 0.14 +bougainvillée bougainvillée nom f s 0.05 1.42 0.04 0.47 +bougainvillées bougainvillée nom f p 0.05 1.42 0.01 0.95 +bouge bouger ver 211.9 156.76 85.45 30.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bougea bouger ver 211.9 156.76 0.04 11.42 ind:pas:3s; +bougeai bouger ver 211.9 156.76 0 0.95 ind:pas:1s; +bougeaient bouger ver 211.9 156.76 1.1 6.28 ind:imp:3p; +bougeais bouger ver 211.9 156.76 0.61 1.76 ind:imp:1s;ind:imp:2s; +bougeait bouger ver 211.9 156.76 2.73 22.97 ind:imp:3s; +bougeant bouger ver 211.9 156.76 0.5 3.31 par:pre; +bougeassent bouger ver 211.9 156.76 0 0.07 sub:imp:3p; +bougent bouger ver 211.9 156.76 5.84 5.41 ind:pre:3p; +bougeoir bougeoir nom m s 0.21 2.57 0.17 1.55 +bougeoirs bougeoir nom m p 0.21 2.57 0.03 1.01 +bougeons bouger ver 211.9 156.76 1.71 0.34 imp:pre:1p;ind:pre:1p; +bougeotte bougeotte nom f s 1.04 1.15 1.04 1.15 +bouger bouger ver 211.9 156.76 44.32 46.62 inf; +bougera bouger ver 211.9 156.76 1.89 1.08 ind:fut:3s; +bougerai bouger ver 211.9 156.76 1.95 0.61 ind:fut:1s; +bougeraient bouger ver 211.9 156.76 0.12 0.2 cnd:pre:3p; +bougerais bouger ver 211.9 156.76 0.28 0.14 cnd:pre:1s; +bougerait bouger ver 211.9 156.76 0.14 0.95 cnd:pre:3s; +bougeras bouger ver 211.9 156.76 0.38 0.07 ind:fut:2s; +bougerez bouger ver 211.9 156.76 0.19 0.07 ind:fut:2p; +bougeriez bouger ver 211.9 156.76 0.04 0 cnd:pre:2p; +bougerons bouger ver 211.9 156.76 0.1 0 ind:fut:1p; +bougeront bouger ver 211.9 156.76 0.4 0.27 ind:fut:3p; +bouges bouger ver 211.9 156.76 9.04 1.08 ind:pre:2s;sub:pre:2s; +bougez bouger ver 211.9 156.76 44.09 2.5 imp:pre:2p;ind:pre:2p; +bougeât bouger ver 211.9 156.76 0 0.54 sub:imp:3s; +bougie bougie nom f s 18.32 29.86 7.4 16.22 +bougies bougie nom f p 18.32 29.86 10.92 13.65 +bougiez bougier ver 0.3 0 0.3 0 ind:pre:2p; +bougions bouger ver 211.9 156.76 0.14 0.2 ind:imp:1p; +bougnat bougnat nom m s 0 2.57 0 1.76 +bougnats bougnat nom m p 0 2.57 0 0.81 +bougne bougner ver 0 0.54 0 0.47 ind:pre:1s;ind:pre:3s; +bougnes bougner ver 0 0.54 0 0.07 ind:pre:2s; +bougnoul bougnoul nom m 0.11 0 0.11 0 +bougnoule bougnoule nom s 0.26 3.31 0.12 1.49 +bougnoules bougnoule nom p 0.26 3.31 0.14 1.82 +bougon bougon adj m s 0.17 2.91 0.13 1.96 +bougonna bougonner ver 0.04 5.74 0 2.09 ind:pas:3s; +bougonnaient bougonner ver 0.04 5.74 0 0.07 ind:imp:3p; +bougonnais bougonner ver 0.04 5.74 0 0.07 ind:imp:1s; +bougonnait bougonner ver 0.04 5.74 0 0.95 ind:imp:3s; +bougonnant bougonner ver 0.04 5.74 0.01 0.81 par:pre; +bougonne bougon adj f s 0.17 2.91 0.04 0.81 +bougonnement bougonnement nom m s 0.01 0 0.01 0 +bougonnent bougonner ver 0.04 5.74 0 0.07 ind:pre:3p; +bougonner bougonner ver 0.04 5.74 0 0.27 inf; +bougonné bougonner ver m s 0.04 5.74 0.01 0.34 par:pas; +bougons bougon adj m p 0.17 2.91 0 0.14 +bougran bougran nom m s 0.23 0 0.23 0 +bougre bougre ono 0.01 0.74 0.01 0.74 +bougrement bougrement adv 0.52 1.55 0.52 1.55 +bougrerie bougrerie nom f s 0 0.14 0 0.07 +bougreries bougrerie nom f p 0 0.14 0 0.07 +bougres bougre nom m p 4.75 11.22 0.56 2.7 +bougresse bougresse nom f s 0.02 0.47 0.02 0.47 +bougèrent bouger ver 211.9 156.76 0.01 1.01 ind:pas:3p; +bougé bouger ver m s 211.9 156.76 10.52 17.97 par:pas; +bougée bouger ver f s 211.9 156.76 0.2 0 par:pas; +bougées bouger ver f p 211.9 156.76 0.13 0.07 par:pas; +boui_boui boui_boui nom m s 0.39 0.27 0.35 0.27 +bouiboui bouiboui nom m s 0.04 0.14 0.04 0.14 +bouibouis bouiboui nom m p 0.04 0.14 0.01 0 +bouif bouif nom m s 0 0.14 0 0.14 +bouillabaisse bouillabaisse nom f s 0.66 0.61 0.66 0.61 +bouillaient bouillir ver 7.63 13.58 0 0.2 ind:imp:3p; +bouillais bouillir ver 7.63 13.58 0.03 0.2 ind:imp:1s; +bouillait bouillir ver 7.63 13.58 0 1.35 ind:imp:3s; +bouillant bouillant adj m s 4.53 8.11 2.34 3.11 +bouillante bouillant adj f s 4.53 8.11 2.13 3.72 +bouillantes bouillant adj f p 4.53 8.11 0.03 0.47 +bouillants bouillant adj m p 4.53 8.11 0.04 0.81 +bouillasse bouillasse nom f s 0.17 0.61 0.17 0.61 +bouille bouille nom f s 0.8 6.55 0.7 5.81 +bouillent bouillir ver 7.63 13.58 0.04 0.07 ind:pre:3p; +bouilles bouille nom f p 0.8 6.55 0.1 0.74 +bouilleur bouilleur nom m s 0 0.34 0 0.27 +bouilleurs bouilleur nom m p 0 0.34 0 0.07 +bouilli bouilli adj m s 1.21 4.26 0.37 2.36 +bouillie bouillie nom f s 4.42 9.73 4.18 8.58 +bouillies bouillie nom f p 4.42 9.73 0.23 1.15 +bouillir bouillir ver 7.63 13.58 3.6 4.93 inf; +bouillira bouillir ver 7.63 13.58 0.02 0 ind:fut:3s; +bouillirons bouillir ver 7.63 13.58 0.01 0 ind:fut:1p; +bouillis bouilli adj m p 1.21 4.26 0.25 0.07 +bouilloire bouilloire nom f s 1.61 3.85 1.52 3.45 +bouilloires bouilloire nom f p 1.61 3.85 0.09 0.41 +bouillon bouillon nom m s 4 8.92 3.68 6.62 +bouillonnaient bouillonner ver 1.9 6.08 0.01 0.88 ind:imp:3p; +bouillonnais bouillonner ver 1.9 6.08 0.01 0.07 ind:imp:1s; +bouillonnait bouillonner ver 1.9 6.08 0.13 1.15 ind:imp:3s; +bouillonnant bouillonner ver 1.9 6.08 0.26 1.08 par:pre; +bouillonnante bouillonnant adj f s 0.42 2.5 0.14 0.95 +bouillonnantes bouillonnant adj f p 0.42 2.5 0 0.34 +bouillonnants bouillonnant adj m p 0.42 2.5 0.11 0.2 +bouillonne bouillonner ver 1.9 6.08 0.99 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouillonnement bouillonnement nom m s 0.12 3.11 0.11 2.5 +bouillonnements bouillonnement nom m p 0.12 3.11 0.01 0.61 +bouillonnent bouillonner ver 1.9 6.08 0.14 0.41 ind:pre:3p; +bouillonner bouillonner ver 1.9 6.08 0.35 0.68 inf; +bouillonneux bouillonneux adj m s 0 0.07 0 0.07 +bouillonnèrent bouillonner ver 1.9 6.08 0 0.07 ind:pas:3p; +bouillonné bouillonner ver m s 1.9 6.08 0.01 0.07 par:pas; +bouillonnée bouillonner ver f s 1.9 6.08 0 0.07 par:pas; +bouillonnées bouillonner ver f p 1.9 6.08 0 0.07 par:pas; +bouillonnés bouillonné nom m p 0 0.34 0 0.2 +bouillons bouillon nom m p 4 8.92 0.32 2.3 +bouillottait bouillotter ver 0 0.07 0 0.07 ind:imp:3s; +bouillotte bouillotte nom f s 0.69 1.96 0.5 1.82 +bouillottes bouillotte nom f p 0.69 1.96 0.19 0.14 +bouillu bouillu adj m s 0.01 0.07 0.01 0.07 +boui_boui boui_boui nom m p 0.39 0.27 0.04 0 +boukha boukha nom f s 0.14 0.07 0.14 0.07 +boula bouler ver 1 1.82 0 0.07 ind:pas:3s; +boulait bouler ver 1 1.82 0 0.07 ind:imp:3s; +boulange boulange nom f s 0.1 0.27 0.1 0.27 +boulanger boulanger nom m s 3 13.31 2.44 8.78 +boulanger_pâtissier boulanger_pâtissier nom m s 0 0.14 0 0.14 +boulangerie boulangerie nom f s 4.01 8.04 3.76 7.57 +boulangeries boulangerie nom f p 4.01 8.04 0.25 0.47 +boulangers boulanger nom m p 3 13.31 0.08 2.09 +boulangisme boulangisme nom m s 0 0.07 0 0.07 +boulangère boulanger nom f s 3 13.31 0.47 2.3 +boulangères boulanger nom f p 3 13.31 0 0.14 +boulants boulant nom m p 0 0.07 0 0.07 +boulder boulder nom m s 0.46 0 0.46 0 +boule boule nom f s 30.68 61.22 19.29 38.31 +boule_de_neige boule_de_neige nom f s 0.07 0 0.07 0 +bouleau bouleau nom m s 1.08 4.05 0.58 0.95 +bouleaux bouleau nom m p 1.08 4.05 0.5 3.11 +bouledogue bouledogue nom m s 0.81 2.09 0.71 1.96 +bouledogues bouledogue nom m p 0.81 2.09 0.09 0.14 +boulent bouler ver 1 1.82 0 0.07 ind:pre:3p; +bouler bouler ver 1 1.82 0.45 0.34 inf; +boules boule nom f p 30.68 61.22 11.4 22.91 +boulet boulet nom m s 2.95 8.11 1.99 3.78 +boulets boulet nom m p 2.95 8.11 0.96 4.32 +boulette boulette nom f s 6.13 5.2 2.34 2.36 +boulettes boulette nom f p 6.13 5.2 3.79 2.84 +boulevard boulevard nom m s 4.87 61.15 4.19 52.03 +boulevardier boulevardier nom m s 0.01 0.07 0.01 0 +boulevardiers boulevardier nom m p 0.01 0.07 0 0.07 +boulevardière boulevardier adj f s 0 0.27 0 0.07 +boulevards boulevard nom m p 4.87 61.15 0.68 9.12 +bouleversa bouleverser ver 13.79 27.03 0.26 2.36 ind:pas:3s; +bouleversaient bouleverser ver 13.79 27.03 0.01 0.47 ind:imp:3p; +bouleversait bouleverser ver 13.79 27.03 0.03 2.36 ind:imp:3s; +bouleversant bouleversant adj m s 1.61 5.27 1.24 1.28 +bouleversante bouleversant adj f s 1.61 5.27 0.29 2.43 +bouleversantes bouleversant adj f p 1.61 5.27 0.04 1.08 +bouleversants bouleversant adj m p 1.61 5.27 0.04 0.47 +bouleverse bouleverser ver 13.79 27.03 1.23 2.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouleversement bouleversement nom m s 0.46 7.3 0.17 4.26 +bouleversements bouleversement nom m p 0.46 7.3 0.29 3.04 +bouleversent bouleverser ver 13.79 27.03 0.13 0.74 ind:pre:3p; +bouleverser bouleverser ver 13.79 27.03 1.64 3.92 inf; +bouleversera bouleverser ver 13.79 27.03 0.16 0 ind:fut:3s; +bouleverseraient bouleverser ver 13.79 27.03 0 0.07 cnd:pre:3p; +bouleverserais bouleverser ver 13.79 27.03 0.01 0 cnd:pre:1s; +bouleverserait bouleverser ver 13.79 27.03 0.23 0.2 cnd:pre:3s; +bouleverseras bouleverser ver 13.79 27.03 0.01 0 ind:fut:2s; +bouleverserons bouleverser ver 13.79 27.03 0 0.07 ind:fut:1p; +bouleverseront bouleverser ver 13.79 27.03 0 0.14 ind:fut:3p; +bouleversions bouleverser ver 13.79 27.03 0 0.07 ind:imp:1p; +bouleversons bouleverser ver 13.79 27.03 0.01 0 imp:pre:1p; +bouleversèrent bouleverser ver 13.79 27.03 0.1 0.27 ind:pas:3p; +bouleversé bouleverser ver m s 13.79 27.03 4.85 8.45 par:pas; +bouleversée bouleverser ver f s 13.79 27.03 4.37 3.24 par:pas; +bouleversées bouleverser ver f p 13.79 27.03 0.03 0.27 par:pas; +bouleversés bouleverser ver m p 13.79 27.03 0.69 0.61 par:pas; +boulgour boulgour nom m s 0.15 0.07 0.15 0.07 +boulier boulier nom m s 0.16 1.96 0.15 1.89 +bouliers boulier nom m p 0.16 1.96 0.01 0.07 +boulimie boulimie nom f s 0.26 0.54 0.26 0.47 +boulimies boulimie nom f p 0.26 0.54 0 0.07 +boulimique boulimique adj s 0.22 0.34 0.21 0.2 +boulimiques boulimique nom p 0.14 0.07 0.04 0 +bouline bouline nom f s 0.07 0.07 0.07 0 +boulines bouline nom f p 0.07 0.07 0 0.07 +boulingrins boulingrin nom m p 0 0.27 0 0.27 +boulins boulin nom m p 0 0.07 0 0.07 +bouliste bouliste nom s 0.02 0.61 0.02 0 +boulistes bouliste nom p 0.02 0.61 0 0.61 +boulle boulle nom m s 0.01 0.14 0.01 0.14 +boulochait boulocher ver 0.1 0 0.1 0 ind:imp:3s; +boulodrome boulodrome nom m s 0 0.07 0 0.07 +bouloir bouloir nom m s 0.01 0 0.01 0 +boulon boulon nom m s 2.72 3.51 1.06 1.49 +boulonnage boulonnage nom m s 0.01 0 0.01 0 +boulonnais boulonnais adj m s 0 0.07 0 0.07 +boulonnait boulonner ver 0.1 0.61 0 0.14 ind:imp:3s; +boulonnant boulonner ver 0.1 0.61 0 0.07 par:pre; +boulonne boulonner ver 0.1 0.61 0.01 0.07 imp:pre:2s;ind:pre:3s; +boulonner boulonner ver 0.1 0.61 0.04 0.14 inf; +boulonnerie boulonnerie nom f s 0 0.07 0 0.07 +boulonné boulonner ver m s 0.1 0.61 0.03 0.07 par:pas; +boulonnée boulonner ver f s 0.1 0.61 0.01 0.07 par:pas; +boulonnés boulonner ver m p 0.1 0.61 0.01 0.07 par:pas; +boulons boulon nom m p 2.72 3.51 1.66 2.03 +boulot boulot nom m s 202.97 35.61 198.68 32.57 +boulot_refuge boulot_refuge adj m s 0 0.07 0 0.07 +boulots boulot nom m p 202.97 35.61 4.3 3.04 +boulottait boulotter ver 0.16 0.41 0 0.07 ind:imp:3s; +boulotte boulotte nom f s 0.27 0.27 0.26 0.27 +boulotter boulotter ver 0.16 0.41 0.12 0.14 inf; +boulottes boulot adj f p 8.21 3.04 0.01 0.07 +boulottées boulotter ver f p 0.16 0.41 0 0.07 par:pas; +boulu boulu adj m s 0 0.14 0 0.07 +boulus boulu adj m p 0 0.14 0 0.07 +boulé bouler ver m s 1 1.82 0.12 0.47 par:pas; +boulés bouler ver m p 1 1.82 0 0.14 par:pas; +boum boum ono 5.2 2.09 5.2 2.09 +boumaient boumer ver 1.9 1.49 0 0.07 ind:imp:3p; +boumait boumer ver 1.9 1.49 0 0.07 ind:imp:3s; +boume boumer ver 1.9 1.49 1.9 1.15 imp:pre:2s;ind:pre:3s; +boums boum nom_sup m p 7.01 3.04 0.21 0.41 +boumé boumer ver m s 1.9 1.49 0 0.2 par:pas; +bouniouls bounioul nom m p 0 0.07 0 0.07 +bouquet bouquet nom m s 9.35 37.09 8.76 26.01 +bouquetier bouquetier nom m s 0 0.41 0 0.07 +bouquetin bouquetin nom m s 0.16 0.34 0.03 0.2 +bouquetins bouquetin nom m p 0.16 0.34 0.14 0.14 +bouquetière bouquetier nom f s 0 0.41 0 0.34 +bouquets bouquet nom m p 9.35 37.09 0.59 11.08 +bouqueté bouqueté adj m s 0 0.07 0 0.07 +bouquin bouquin nom m s 13.49 27.7 8.02 14.46 +bouquinage bouquinage nom m s 0 0.07 0 0.07 +bouquinais bouquiner ver 0.81 2.03 0.14 0.14 ind:imp:1s; +bouquinait bouquiner ver 0.81 2.03 0.01 0.2 ind:imp:3s; +bouquinant bouquiner ver 0.81 2.03 0.01 0.07 par:pre; +bouquine bouquiner ver 0.81 2.03 0.45 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouquiner bouquiner ver 0.81 2.03 0.17 1.08 inf; +bouquinerait bouquiner ver 0.81 2.03 0 0.07 cnd:pre:3s; +bouquineur bouquineur nom m s 0.01 0 0.01 0 +bouquiniste bouquiniste nom s 0.41 2.09 0.28 0.95 +bouquinistes bouquiniste nom p 0.41 2.09 0.12 1.15 +bouquins bouquin nom m p 13.49 27.7 5.46 13.24 +bouquiné bouquiner ver m s 0.81 2.03 0.03 0 par:pas; +bour bour nom m s 0.09 0.14 0.09 0.14 +bourbe bourbe nom f s 0.04 0.2 0.04 0.2 +bourbeuse bourbeux adj f s 0.03 1.89 0 0.61 +bourbeuses bourbeux adj f p 0.03 1.89 0 0.27 +bourbeux bourbeux adj m 0.03 1.89 0.03 1.01 +bourbier bourbier nom m s 1.12 1.35 1.1 1.01 +bourbiers bourbier nom m p 1.12 1.35 0.02 0.34 +bourbon bourbon nom m s 2.76 6.96 2.66 6.96 +bourbonien bourbonien adj m s 0 0.95 0 0.81 +bourbonienne bourbonien adj f s 0 0.95 0 0.14 +bourbons bourbon nom m p 2.76 6.96 0.1 0 +bourdaine bourdaine nom f s 0 0.14 0 0.07 +bourdaines bourdaine nom f p 0 0.14 0 0.07 +bourdalous bourdalou nom m p 0 0.07 0 0.07 +bourde bourde nom f s 1.54 0.95 1.1 0.54 +bourdes bourde nom f p 1.54 0.95 0.44 0.41 +bourdillon bourdillon nom m s 0.14 0.07 0.14 0.07 +bourdon bourdon nom m s 1.28 5.54 1.17 4.73 +bourdonna bourdonner ver 2.2 9.53 0 0.41 ind:pas:3s; +bourdonnaient bourdonner ver 2.2 9.53 0.05 1.76 ind:imp:3p; +bourdonnais bourdonner ver 2.2 9.53 0 0.07 ind:imp:1s; +bourdonnait bourdonner ver 2.2 9.53 0.13 2.23 ind:imp:3s; +bourdonnant bourdonner ver 2.2 9.53 0.01 1.01 par:pre; +bourdonnante bourdonnant adj f s 0.06 2.97 0.03 1.35 +bourdonnantes bourdonnant adj f p 0.06 2.97 0.01 1.01 +bourdonnants bourdonnant adj m p 0.06 2.97 0.01 0.34 +bourdonne bourdonner ver 2.2 9.53 0.87 1.42 ind:pre:3s; +bourdonnement bourdonnement nom m s 1.71 10.54 1.63 9.19 +bourdonnements bourdonnement nom m p 1.71 10.54 0.08 1.35 +bourdonnent bourdonner ver 2.2 9.53 1.05 1.49 ind:pre:3p; +bourdonner bourdonner ver 2.2 9.53 0.07 1.08 inf; +bourdonné bourdonner ver m s 2.2 9.53 0.01 0.07 par:pas; +bourdons bourdon nom m p 1.28 5.54 0.11 0.81 +bourg bourg nom m s 1.6 15.88 1.48 13.85 +bourgade bourgade nom f s 0.46 3.99 0.44 2.91 +bourgades bourgade nom f p 0.46 3.99 0.02 1.08 +bourge bourge nom s 1.22 0.47 0.9 0.07 +bourgeois bourgeois nom m 6.02 28.65 4.01 23.04 +bourgeoise bourgeois adj f s 6.36 23.45 2.8 7.43 +bourgeoisement bourgeoisement adv 0 0.54 0 0.54 +bourgeoises bourgeois adj f p 6.36 23.45 0.44 4.19 +bourgeoisie bourgeoisie nom f s 3.65 10.27 3.65 10.14 +bourgeoisies bourgeoisie nom f p 3.65 10.27 0 0.14 +bourgeoisisme bourgeoisisme nom m s 0 0.07 0 0.07 +bourgeon bourgeon nom m s 0.63 2.84 0.47 0.68 +bourgeonnaient bourgeonner ver 0.24 1.22 0 0.14 ind:imp:3p; +bourgeonnait bourgeonner ver 0.24 1.22 0.02 0.14 ind:imp:3s; +bourgeonnant bourgeonnant adj m s 0.04 0.41 0.01 0.14 +bourgeonnante bourgeonnant adj f s 0.04 0.41 0.03 0.07 +bourgeonnants bourgeonnant adj m p 0.04 0.41 0 0.2 +bourgeonne bourgeonner ver 0.24 1.22 0.03 0.34 ind:pre:1s;ind:pre:3s; +bourgeonnement bourgeonnement nom m s 0 0.27 0 0.14 +bourgeonnements bourgeonnement nom m p 0 0.27 0 0.14 +bourgeonnent bourgeonner ver 0.24 1.22 0.14 0 ind:pre:3p; +bourgeonner bourgeonner ver 0.24 1.22 0.02 0.34 inf; +bourgeonneraient bourgeonner ver 0.24 1.22 0 0.07 cnd:pre:3p; +bourgeonneuse bourgeonneux adj f s 0 0.07 0 0.07 +bourgeonné bourgeonner ver m s 0.24 1.22 0.02 0 par:pas; +bourgeons bourgeon nom m p 0.63 2.84 0.16 2.16 +bourgeron bourgeron nom m s 0 1.28 0 1.01 +bourgerons bourgeron nom m p 0 1.28 0 0.27 +bourges bourge nom p 1.22 0.47 0.32 0.41 +bourgmestre bourgmestre nom m s 1.02 1.49 1.01 1.35 +bourgmestres bourgmestre nom m p 1.02 1.49 0.01 0.14 +bourgogne bourgogne nom m s 0.52 1.35 0.51 1.01 +bourgognes bourgogne nom m p 0.52 1.35 0.01 0.34 +bourgs bourg nom m p 1.6 15.88 0.12 2.03 +bourgueil bourgueil nom m s 0 0.07 0 0.07 +bourgues bourgue nom m p 0 0.07 0 0.07 +bourguignon bourguignon adj m s 0.29 4.19 0.25 2.3 +bourguignonne bourguignon adj f s 0.29 4.19 0.04 0.54 +bourguignonnes bourguignon adj f p 0.29 4.19 0.01 0.34 +bourguignons bourguignon nom m p 0.01 1.96 0 1.08 +bouriates bouriate adj p 0 0.07 0 0.07 +bouriates bouriate nom p 0 0.07 0 0.07 +bourlinguant bourlinguer ver 0.37 0.61 0.01 0.14 par:pre; +bourlingue bourlingue nom f s 0.01 0 0.01 0 +bourlinguer bourlinguer ver 0.37 0.61 0.06 0.07 inf; +bourlinguera bourlinguer ver 0.37 0.61 0 0.07 ind:fut:3s; +bourlingueur bourlingueur nom m s 0.02 0.34 0.02 0.27 +bourlingueuses bourlingueur nom f p 0.02 0.34 0 0.07 +bourlinguons bourlinguer ver 0.37 0.61 0 0.07 ind:pre:1p; +bourlingué bourlinguer ver m s 0.37 0.61 0.29 0.27 par:pas; +bourra bourrer ver 22.11 27.36 0 1.01 ind:pas:3s; +bourrache bourrache nom f s 0.01 0.07 0.01 0.07 +bourrade bourrade nom f s 0 4.8 0 2.7 +bourrades bourrade nom f p 0 4.8 0 2.09 +bourrage bourrage nom m s 0.15 0.27 0.15 0.2 +bourrages bourrage nom m p 0.15 0.27 0 0.07 +bourrai bourrer ver 22.11 27.36 0 0.2 ind:pas:1s; +bourraient bourrer ver 22.11 27.36 0.03 0.27 ind:imp:3p; +bourrais bourrer ver 22.11 27.36 0.02 0.14 ind:imp:1s; +bourrait bourrer ver 22.11 27.36 0.4 1.82 ind:imp:3s; +bourrant bourrer ver 22.11 27.36 0.03 0.95 par:pre; +bourrasque bourrasque nom f s 0.77 6.01 0.55 3.92 +bourrasques bourrasque nom f p 0.77 6.01 0.22 2.09 +bourratif bourratif adj m s 0.03 0.2 0.02 0.07 +bourrative bourratif adj f s 0.03 0.2 0.01 0.07 +bourratives bourratif adj f p 0.03 0.2 0 0.07 +bourre bourre nom s 4.37 6.49 4.24 3.92 +bourre_mou bourre_mou nom m s 0.01 0 0.01 0 +bourre_pif bourre_pif nom m s 0.04 0.07 0.04 0.07 +bourreau bourreau nom m s 9.83 12.91 7.28 7.09 +bourreaux bourreau nom m p 9.83 12.91 2.55 5.81 +bourrelet bourrelet nom m s 0.49 6.22 0.06 2.64 +bourrelets bourrelet nom m p 0.49 6.22 0.43 3.58 +bourrelier bourrelier nom m s 0 0.88 0 0.81 +bourreliers bourrelier nom m p 0 0.88 0 0.07 +bourrellerie bourrellerie nom f s 0 0.27 0 0.27 +bourrelé bourreler ver m s 0 0.41 0 0.27 par:pas; +bourrelée bourreler ver f s 0 0.41 0 0.07 par:pas; +bourrelés bourreler ver m p 0 0.41 0 0.07 par:pas; +bourrent bourrer ver 22.11 27.36 0.11 0.54 ind:pre:3p; +bourrer bourrer ver 22.11 27.36 3.48 3.72 inf; +bourrera bourrer ver 22.11 27.36 0.02 0.07 ind:fut:3s; +bourrerai bourrer ver 22.11 27.36 0.02 0 ind:fut:1s; +bourres bourrer ver 22.11 27.36 0.33 0.14 ind:pre:2s;sub:pre:2s; +bourreur bourreur nom m s 0 0.14 0 0.14 +bourrez bourrer ver 22.11 27.36 0.24 0.07 imp:pre:2p;ind:pre:2p; +bourriche bourriche nom f s 0.04 0.68 0.04 0.14 +bourriches bourriche nom f p 0.04 0.68 0 0.54 +bourrichon bourrichon nom m s 0.4 0.2 0.4 0.2 +bourricot bourricot nom m s 0.52 1.08 0.49 0.34 +bourricots bourricot nom m p 0.52 1.08 0.03 0.74 +bourrier bourrier nom m 0 0.34 0 0.34 +bourrin bourrin nom m s 0.56 1.62 0.53 1.08 +bourrine bourrine nom f s 0.01 0 0.01 0 +bourrins bourrin nom m p 0.56 1.62 0.04 0.54 +bourriquait bourriquer ver 0 0.07 0 0.07 ind:imp:3s; +bourrique bourrique nom f s 1.97 2.97 1.9 2.09 +bourriques bourrique nom f p 1.97 2.97 0.07 0.88 +bourriquet bourriquet nom m s 0.16 0.14 0.16 0.07 +bourriquets bourriquet nom m p 0.16 0.14 0 0.07 +bourrons bourrer ver 22.11 27.36 0.02 0 imp:pre:1p;ind:pre:1p; +bourru bourru adj m s 0.34 5.2 0.28 3.51 +bourrue bourru adj f s 0.34 5.2 0.02 1.35 +bourrues bourru adj f p 0.34 5.2 0.02 0.2 +bourrus bourru adj m p 0.34 5.2 0.03 0.14 +bourrèrent bourrer ver 22.11 27.36 0 0.14 ind:pas:3p; +bourré bourrer ver m s 22.11 27.36 11.14 10.41 par:pas; +bourrée bourrer ver f s 22.11 27.36 2.65 2.57 par:pas; +bourrées bourrée ver f p 0.26 2.03 0.26 2.03 par:pas; +bourrés bourrer ver m p 22.11 27.36 1.57 3.58 par:pas; +bourse bourse nom f s 19.66 13.18 17.48 11.22 +bourses bourse nom f p 19.66 13.18 2.18 1.96 +boursicot boursicot nom m s 0 0.07 0 0.07 +boursicotage boursicotage nom m s 0 0.07 0 0.07 +boursicoteur boursicoteur nom m s 0.04 0.14 0.01 0.14 +boursicoteurs boursicoteur nom m p 0.04 0.14 0.03 0 +boursier boursier adj m s 0.73 0.74 0.39 0.2 +boursiers boursier adj m p 0.73 0.74 0.13 0.07 +boursière boursier adj f s 0.73 0.74 0.15 0.14 +boursières boursier adj f p 0.73 0.74 0.07 0.34 +boursouflaient boursoufler ver 0.04 3.04 0 0.14 ind:imp:3p; +boursouflait boursoufler ver 0.04 3.04 0 0.34 ind:imp:3s; +boursoufle boursoufler ver 0.04 3.04 0.01 0.47 ind:pre:3s; +boursouflement boursouflement nom m s 0 0.07 0 0.07 +boursoufler boursoufler ver 0.04 3.04 0.01 0.2 inf; +boursouflure boursouflure nom f s 0.06 1.82 0.02 0.81 +boursouflures boursouflure nom f p 0.06 1.82 0.03 1.01 +boursouflé boursouflé adj m s 0.25 3.31 0.19 1.22 +boursouflée boursouflé adj f s 0.25 3.31 0.03 0.88 +boursouflées boursouflé adj f p 0.25 3.31 0.04 0.41 +boursouflés boursouflé adj m p 0.25 3.31 0 0.81 +bous bouillir ver 7.63 13.58 0.6 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +bousards bousard nom m p 0 0.07 0 0.07 +bousbir bousbir nom m s 0 0.54 0 0.41 +bousbirs bousbir nom m p 0 0.54 0 0.14 +bouscula bousculer ver 8.63 34.46 0 2.36 ind:pas:3s; +bousculade bousculade nom f s 0.9 6.28 0.86 5.34 +bousculades bousculade nom f p 0.9 6.28 0.03 0.95 +bousculai bousculer ver 8.63 34.46 0 0.2 ind:pas:1s; +bousculaient bousculer ver 8.63 34.46 0.05 3.65 ind:imp:3p; +bousculait bousculer ver 8.63 34.46 0.12 3.24 ind:imp:3s; +bousculant bousculer ver 8.63 34.46 0.04 4.53 par:pre; +bouscule bousculer ver 8.63 34.46 2.44 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bousculent bousculer ver 8.63 34.46 0.5 2.36 ind:pre:3p; +bousculer bousculer ver 8.63 34.46 2.17 5.07 inf; +bousculera bousculer ver 8.63 34.46 0.16 0 ind:fut:3s; +bousculerait bousculer ver 8.63 34.46 0.03 0 cnd:pre:3s; +bousculerons bousculer ver 8.63 34.46 0 0.07 ind:fut:1p; +bousculeront bousculer ver 8.63 34.46 0.04 0.14 ind:fut:3p; +bousculez bousculer ver 8.63 34.46 0.47 0.14 imp:pre:2p;ind:pre:2p; +bousculons bousculer ver 8.63 34.46 0 0.07 imp:pre:1p; +bousculât bousculer ver 8.63 34.46 0 0.07 sub:imp:3s; +bousculèrent bousculer ver 8.63 34.46 0 0.88 ind:pas:3p; +bousculé bousculer ver m s 8.63 34.46 2.01 4.19 par:pas; +bousculée bousculer ver f s 8.63 34.46 0.46 1.49 par:pas; +bousculées bousculer ver f p 8.63 34.46 0.01 0.2 par:pas; +bousculés bousculer ver m p 8.63 34.46 0.13 1.69 par:pas; +bouse bouse nom f s 1.93 5.14 1.71 3.72 +bouses bouse nom f p 1.93 5.14 0.22 1.42 +bouseuse bouseux nom f s 2.44 1.22 0.16 0.07 +bouseux bouseux nom m 2.44 1.22 2.29 1.15 +bousier bousier nom m s 0.06 0.34 0.03 0.14 +bousiers bousier nom m p 0.06 0.34 0.03 0.2 +bousillage bousillage nom m s 0.15 0.27 0.15 0.2 +bousillages bousillage nom m p 0.15 0.27 0 0.07 +bousillaient bousiller ver 12.91 3.24 0 0.07 ind:imp:3p; +bousillais bousiller ver 12.91 3.24 0.01 0.07 ind:imp:1s;ind:imp:2s; +bousillait bousiller ver 12.91 3.24 0.03 0.07 ind:imp:3s; +bousillant bousiller ver 12.91 3.24 0.02 0.27 par:pre; +bousille bousiller ver 12.91 3.24 2.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bousillent bousiller ver 12.91 3.24 0.2 0 ind:pre:3p; +bousiller bousiller ver 12.91 3.24 4.05 1.15 inf; +bousillera bousiller ver 12.91 3.24 0.19 0 ind:fut:3s; +bousillerai bousiller ver 12.91 3.24 0.07 0 ind:fut:1s; +bousillerait bousiller ver 12.91 3.24 0.01 0 cnd:pre:3s; +bousilleras bousiller ver 12.91 3.24 0.01 0 ind:fut:2s; +bousilleront bousiller ver 12.91 3.24 0.01 0 ind:fut:3p; +bousilles bousiller ver 12.91 3.24 0.7 0.07 ind:pre:2s; +bousilleur bousilleur nom m s 0.03 0 0.03 0 +bousillez bousiller ver 12.91 3.24 0.42 0.07 imp:pre:2p;ind:pre:2p; +bousilliez bousiller ver 12.91 3.24 0.02 0 ind:imp:2p; +bousillons bousiller ver 12.91 3.24 0.03 0 imp:pre:1p; +bousillé bousiller ver m s 12.91 3.24 4 0.74 par:pas; +bousillée bousiller ver f s 12.91 3.24 0.52 0.34 par:pas; +bousillées bousiller ver f p 12.91 3.24 0.16 0.07 par:pas; +bousillés bousiller ver m p 12.91 3.24 0.11 0.2 par:pas; +bousin bousin nom m s 0 0.14 0 0.07 +bousine bousine nom f s 0 0.14 0 0.14 +bousins bousin nom m p 0 0.14 0 0.07 +boussole boussole nom f s 2.91 4.66 2.71 4.05 +boussoles boussole nom f p 2.91 4.66 0.2 0.61 +boustifaille boustifaille nom f s 0.23 0.81 0.23 0.74 +boustifailles boustifaille nom f p 0.23 0.81 0 0.07 +boustifailleuse boustifailleur nom f s 0 0.07 0 0.07 +boustrophédon boustrophédon nom m s 0 0.2 0 0.2 +bout bout nom m s 128.33 398.11 121.12 375.68 +bout_dehors bout_dehors nom m 0 0.2 0 0.2 +bout_rimé bout_rimé nom m s 0.14 0.07 0.14 0 +bouta bouter ver 0.47 1.55 0 0.14 ind:pas:3s; +boutade boutade nom f s 0.25 1.49 0.19 1.35 +boutades boutade nom f p 0.25 1.49 0.06 0.14 +boutanche boutanche nom f s 0.17 2.16 0.16 1.42 +boutanches boutanche nom f p 0.17 2.16 0.01 0.74 +boutargue boutargue nom f s 0 0.07 0 0.07 +boutasse bouter ver 0.47 1.55 0 0.54 sub:imp:1s; +boute bouter ver 0.47 1.55 0.03 0.27 ind:pre:3s; +boute_en_train boute_en_train nom m 0.39 0.74 0.39 0.74 +boutefeu boutefeu nom s 0.02 0.41 0.02 0.41 +boutefeux boutefeux nom p 0 0.2 0 0.2 +bouteille bouteille nom f s 57.24 104.05 42.31 70.41 +bouteilles bouteille nom f p 57.24 104.05 14.92 33.65 +bouteillon bouteillon nom m s 0 0.68 0 0.47 +bouteillons bouteillon nom m p 0 0.68 0 0.2 +bouter bouter ver 0.47 1.55 0.16 0.2 inf; +bouterais bouter ver 0.47 1.55 0 0.07 cnd:pre:1s; +bouteur bouteur nom m s 0.02 0.07 0.02 0 +bouteurs bouteur nom m p 0.02 0.07 0 0.07 +bouthéon bouthéon nom m s 0 1.15 0 0.68 +bouthéons bouthéon nom m p 0 1.15 0 0.47 +boutillier boutillier nom m s 0 0.14 0 0.14 +boutique boutique nom f s 26.53 48.92 22.29 36.01 +boutique_cadeaux boutique_cadeaux nom f s 0.02 0 0.02 0 +boutiquer boutiquer ver 0 0.14 0 0.07 inf; +boutiques boutique nom f p 26.53 48.92 4.24 12.91 +boutiquier boutiquier adj m s 0.14 0.61 0.14 0.41 +boutiquiers boutiquier nom m p 0.18 1.76 0.04 1.15 +boutiquière boutiquier nom f s 0.18 1.76 0 0.2 +boutiquières boutiquier nom f p 0.18 1.76 0 0.07 +boutiqué boutiquer ver m s 0 0.14 0 0.07 par:pas; +boutisses boutisse nom f p 0 0.07 0 0.07 +boutoir boutoir nom m s 0 2.23 0 2.23 +bouton bouton nom m s 32.44 44.46 21.29 21.55 +bouton_d_or bouton_d_or nom m s 0.01 0.2 0 0.14 +bouton_pression bouton_pression nom m s 0.04 0.14 0.02 0.07 +boutonna boutonner ver 2.17 6.22 0 0.41 ind:pas:3s; +boutonnage boutonnage nom m s 0 0.34 0 0.34 +boutonnaient boutonner ver 2.17 6.22 0 0.07 ind:imp:3p; +boutonnais boutonner ver 2.17 6.22 0.01 0.07 ind:imp:1s;ind:imp:2s; +boutonnait boutonner ver 2.17 6.22 0 0.41 ind:imp:3s; +boutonnant boutonner ver 2.17 6.22 0.01 0.34 par:pre; +boutonne boutonner ver 2.17 6.22 0.98 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boutonnent boutonner ver 2.17 6.22 0.01 0.2 ind:pre:3p; +boutonner boutonner ver 2.17 6.22 0.72 1.35 inf; +boutonnerait boutonner ver 2.17 6.22 0 0.07 cnd:pre:3s; +boutonnes boutonner ver 2.17 6.22 0.03 0 ind:pre:2s; +boutonneuse boutonneux adj f s 0.59 1.76 0.03 0.14 +boutonneuses boutonneux adj f p 0.59 1.76 0.01 0.07 +boutonneux boutonneux adj m 0.59 1.76 0.55 1.55 +boutonnez boutonner ver 2.17 6.22 0.23 0 imp:pre:2p; +boutonnière boutonnière nom f s 0.73 3.65 0.45 3.18 +boutonnières boutonnière nom f p 0.73 3.65 0.28 0.47 +boutonné boutonner ver m s 2.17 6.22 0.07 0.81 par:pas; +boutonnée boutonner ver f s 2.17 6.22 0.11 0.95 par:pas; +boutonnées boutonner ver f p 2.17 6.22 0 0.34 par:pas; +boutonnés boutonner ver m p 2.17 6.22 0.01 0.27 par:pas; +boutons bouton nom m p 32.44 44.46 11.16 22.91 +bouton_d_or bouton_d_or nom m p 0.01 0.2 0.01 0.07 +bouton_pression bouton_pression nom m p 0.04 0.14 0.02 0.07 +boutre boutre nom m s 0 0.81 0 0.68 +boutres boutre nom m p 0 0.81 0 0.14 +bouts bout nom m p 128.33 398.11 7.21 22.43 +bout_rimé bout_rimé nom m p 0.14 0.07 0 0.07 +bouture bouture nom f s 0.07 0.47 0.03 0.14 +boutures bouture nom f p 0.07 0.47 0.04 0.34 +bouté bouter ver m s 0.47 1.55 0.14 0 par:pas; +boutée bouter ver f s 0.47 1.55 0 0.07 par:pas; +boutées bouter ver f p 0.47 1.55 0 0.07 par:pas; +boutés bouter ver m p 0.47 1.55 0.14 0.14 par:pas; +bouvet bouvet nom m s 0 0.07 0 0.07 +bouvier bouvier nom m s 0.15 1.01 0.12 0.68 +bouviers bouvier nom m p 0.15 1.01 0.03 0.34 +bouvillon bouvillon nom m s 0.04 0.2 0.04 0.2 +bouvreuil bouvreuil nom m s 0.04 0.27 0.01 0.07 +bouvreuils bouvreuil nom m p 0.04 0.27 0.03 0.2 +bouzine bouzine nom f s 0 0.27 0 0.27 +bouzouki bouzouki nom m s 0.21 0.47 0.21 0.47 +bouzy bouzy nom m 0 0.07 0 0.07 +bouée bouée nom f s 2.04 5.47 1.3 4.59 +bouées bouée nom f p 2.04 5.47 0.73 0.88 +bovidé bovidé nom m s 0.01 0.68 0.01 0.14 +bovidés bovidé nom m p 0.01 0.68 0 0.54 +bovin bovin adj m s 0.28 1.49 0.09 0.47 +bovine bovin adj f s 0.28 1.49 0.1 0.68 +bovines bovin adj f p 0.28 1.49 0.03 0.07 +bovins bovin nom m p 0.23 1.49 0.17 1.22 +bow_window bow_window nom m s 0 0.54 0 0.27 +bow_window bow_window nom m p 0 0.54 0 0.27 +bowling bowling nom m s 0 1.08 0 1.08 +box box nom m 2.48 4.05 2.48 4.05 +box_calf box_calf nom m s 0 0.27 0 0.27 +box_office box_office nom m s 0.35 0.2 0.35 0.14 +box_office box_office nom m p 0.35 0.2 0 0.07 +boxa boxer ver 5.78 2.84 0.01 0.2 ind:pas:3s; +boxaient boxer ver 5.78 2.84 0 0.14 ind:imp:3p; +boxais boxer ver 5.78 2.84 0.29 0 ind:imp:1s;ind:imp:2s; +boxait boxer ver 5.78 2.84 0.08 0.27 ind:imp:3s; +boxant boxer ver 5.78 2.84 0.05 0.07 par:pre; +boxe boxe nom f s 9.32 8.58 9.2 7.64 +boxent boxer ver 5.78 2.84 0.01 0 ind:pre:3p; +boxer boxer ver 5.78 2.84 3.14 1.28 inf; +boxer_short boxer_short nom m s 0.05 0.07 0.05 0.07 +boxerai boxer ver 5.78 2.84 0.06 0 ind:fut:1s; +boxerais boxer ver 5.78 2.84 0.04 0 cnd:pre:1s; +boxerez boxer ver 5.78 2.84 0.02 0 ind:fut:2p; +boxers boxer nom m p 0.75 0.34 0.13 0.14 +boxes boxer ver 5.78 2.84 0.62 0.14 ind:pre:2s; +boxeur boxeur nom m s 8.71 7.97 6.32 6.15 +boxeurs boxeur nom m p 8.71 7.97 2.04 1.82 +boxeuse boxeur nom f s 8.71 7.97 0.35 0 +boxez boxer ver 5.78 2.84 0.41 0.07 imp:pre:2p;ind:pre:2p; +boxon boxon nom m s 0.62 1.01 0.6 0.74 +boxons boxon nom m p 0.62 1.01 0.02 0.27 +boxé boxer ver m s 5.78 2.84 0.41 0.34 par:pas; +boxés boxer ver m p 5.78 2.84 0 0.07 par:pas; +boy boy nom m s 12.82 8.51 8.36 6.42 +boy_friend boy_friend nom m s 0 0.14 0 0.14 +boy_scout boy_scout nom m s 2.09 1.62 0.86 0.68 +boy_scoutesque boy_scoutesque adj f s 0 0.07 0 0.07 +boy_scout boy_scout nom m p 2.09 1.62 1.22 0.95 +boyard boyard nom m s 3.96 0.88 1.72 0.54 +boyards boyard nom m p 3.96 0.88 2.24 0.34 +boyau boyau nom m s 2.86 13.58 0.19 8.24 +boyauter boyauter ver 0 0.07 0 0.07 inf; +boyaux boyau nom m p 2.86 13.58 2.67 5.34 +boycott boycott nom m s 0.64 0 0.64 0 +boycotte boycotter ver 0.67 0.14 0.11 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boycottent boycotter ver 0.67 0.14 0.17 0 ind:pre:3p; +boycotter boycotter ver 0.67 0.14 0.32 0.07 inf; +boycotterai boycotter ver 0.67 0.14 0.01 0 ind:fut:1s; +boycotteront boycotter ver 0.67 0.14 0 0.07 ind:fut:3p; +boycottes boycotter ver 0.67 0.14 0.01 0 ind:pre:2s; +boycottez boycotter ver 0.67 0.14 0.04 0 imp:pre:2p; +boycotté boycotter ver m s 0.67 0.14 0.02 0 par:pas; +boys boy nom m p 12.82 8.51 4.46 2.09 +bozo bozo nom m s 0.25 0 0.25 0 +boëttes boëtte nom f p 0 0.07 0 0.07 +boîte boîte nom f s 88.81 134.05 74.58 94.32 +boîtes boîte nom f p 88.81 134.05 14.23 39.73 +boîte_repas boîte_repas nom f p 0 0.07 0 0.07 +boîtier boîtier nom m s 1.04 0.88 0.72 0.81 +boîtiers boîtier nom m p 1.04 0.88 0.32 0.07 +brabant brabant nom m s 0.2 0 0.2 0 +brabançon brabançon adj m s 0 0.27 0 0.2 +brabançonne brabançon adj f s 0 0.27 0 0.07 +brabançons brabançon nom m p 0 0.07 0 0.07 +bracelet bracelet nom m s 13.45 9.53 9.81 5.74 +bracelet_montre bracelet_montre nom m s 0 2.7 0 1.76 +bracelets bracelet nom m p 13.45 9.53 3.63 3.78 +bracelet_montre bracelet_montre nom m p 0 2.7 0 0.95 +brachial brachial adj m s 0.19 0 0.12 0 +brachiale brachial adj f s 0.19 0 0.07 0 +brachiocéphalique brachiocéphalique adj m s 0.01 0 0.01 0 +brachiosaure brachiosaure nom m s 0.02 0 0.02 0 +brachycéphale brachycéphale nom s 0 0.07 0 0.07 +brachycéphales brachycéphale adj m p 0 0.14 0 0.14 +braco braco nom m s 0 0.2 0 0.2 +braconnage braconnage nom m s 0.28 0.61 0.27 0.54 +braconnages braconnage nom m p 0.28 0.61 0.01 0.07 +braconnais braconner ver 0.18 0.95 0.01 0.07 ind:imp:1s; +braconnait braconner ver 0.18 0.95 0.01 0.07 ind:imp:3s; +braconnant braconner ver 0.18 0.95 0.01 0.14 par:pre; +braconne braconner ver 0.18 0.95 0.02 0.14 imp:pre:2s;ind:pre:3s; +braconner braconner ver 0.18 0.95 0.08 0.47 inf; +braconnez braconner ver 0.18 0.95 0.02 0.07 ind:pre:2p; +braconnier braconnier nom m s 0.85 2.77 0.48 2.03 +braconniers braconnier nom m p 0.85 2.77 0.36 0.61 +braconnière braconnier nom f s 0.85 2.77 0.01 0.07 +braconnières braconnier nom f p 0.85 2.77 0 0.07 +braconné braconner ver m s 0.18 0.95 0.02 0 par:pas; +bractées bractée nom f p 0 0.2 0 0.2 +bradaient brader ver 0.98 1.22 0 0.07 ind:imp:3p; +bradait brader ver 0.98 1.22 0.01 0 ind:imp:3s; +brade brader ver 0.98 1.22 0.26 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bradent brader ver 0.98 1.22 0.01 0.14 ind:pre:3p; +brader brader ver 0.98 1.22 0.48 0.2 inf; +braderai brader ver 0.98 1.22 0.1 0 ind:fut:1s; +braderais brader ver 0.98 1.22 0.01 0 cnd:pre:1s; +braderait brader ver 0.98 1.22 0.01 0 cnd:pre:3s; +braderie braderie nom f s 0.31 0.14 0.31 0.07 +braderies braderie nom f p 0.31 0.14 0 0.07 +bradillon bradillon nom m s 0 0.2 0 0.07 +bradillons bradillon nom m p 0 0.2 0 0.14 +bradons brader ver 0.98 1.22 0 0.07 imp:pre:1p; +bradycardie bradycardie nom f s 0.17 0 0.17 0 +bradé brader ver m s 0.98 1.22 0.07 0.41 par:pas; +bradée brader ver f s 0.98 1.22 0.03 0.14 par:pas; +bragard bragard nom m s 0 0.07 0 0.07 +braguette braguette nom f s 3.96 6.69 3.85 5.95 +braguettes braguette nom f p 3.96 6.69 0.11 0.74 +brahmane brahmane nom m s 0.02 0.47 0 0.2 +brahmanes brahmane nom m p 0.02 0.47 0.02 0.27 +brahmanique brahmanique adj m s 0 0.07 0 0.07 +brahmanisme brahmanisme nom m s 0.02 0.07 0.02 0.07 +brahmanistes brahmaniste adj m p 0 0.07 0 0.07 +brahmanistes brahmaniste nom p 0 0.07 0 0.07 +brai brai nom m s 0.02 0 0.01 0 +braie brayer ver 0.01 0.34 0.01 0.14 ind:pre:3s; +braiement braiement nom m s 0.01 0.07 0.01 0 +braiements braiement nom m p 0.01 0.07 0 0.07 +braies braie nom f p 0.03 0.81 0.03 0.81 +brailla brailler ver 2.9 14.53 0 1.42 ind:pas:3s; +braillaient brailler ver 2.9 14.53 0 0.95 ind:imp:3p; +braillait brailler ver 2.9 14.53 0.16 1.96 ind:imp:3s; +braillant brailler ver 2.9 14.53 0.11 1.96 par:pre; +braillard braillard adj m s 0.21 2.16 0.1 0.2 +braillarde braillard adj f s 0.21 2.16 0.04 0.14 +braillardes braillard adj f p 0.21 2.16 0.01 0.07 +braillards braillard adj m p 0.21 2.16 0.07 1.76 +braille braille nom m s 0.55 0.47 0.55 0.47 +braillement braillement nom m s 0.01 0.54 0.01 0.14 +braillements braillement nom m p 0.01 0.54 0 0.41 +braillent brailler ver 2.9 14.53 0.15 0.74 ind:pre:3p; +brailler brailler ver 2.9 14.53 1.62 3.18 inf; +braillera brailler ver 2.9 14.53 0.14 0 ind:fut:3s; +braillerai brailler ver 2.9 14.53 0.16 0 ind:fut:1s; +brailles brailler ver 2.9 14.53 0.06 0.07 ind:pre:2s; +brailleur brailleur adj m s 0.01 0.07 0.01 0 +brailleur brailleur nom m s 0.03 0.07 0.01 0 +brailleurs brailleur nom m p 0.03 0.07 0.01 0.07 +brailleuse brailleur nom f s 0.03 0.07 0.01 0 +braillez brailler ver 2.9 14.53 0.15 0 imp:pre:2p;ind:pre:2p; +braillèrent brailler ver 2.9 14.53 0 0.27 ind:pas:3p; +braillé brailler ver m s 2.9 14.53 0.07 1.15 par:pas; +braillée brailler ver f s 2.9 14.53 0 0.07 par:pas; +braillés brailler ver m p 2.9 14.53 0 0.07 par:pas; +braiment braiment nom m s 7.91 0.34 2.69 0.27 +braiments braiment nom m p 7.91 0.34 5.22 0.07 +brain_trust brain_trust nom m s 0.03 0.07 0.03 0.07 +brainstorming brainstorming nom m s 0.04 0 0.04 0 +braire braire ver 0.37 0.61 0.34 0.61 inf; +brais brai nom m p 0.02 0 0.01 0 +braise braise nom f s 2.04 12.23 1.12 5.88 +braiser braiser ver 0.08 0.27 0.04 0 inf; +braises braise nom f p 2.04 12.23 0.93 6.35 +braisillant braisillant adj m s 0 0.14 0 0.07 +braisillante braisillant adj f s 0 0.14 0 0.07 +braisé braisé adj m s 0.42 0.2 0.28 0.07 +braisée braisé adj f s 0.42 0.2 0.14 0.07 +braisés braisé adj m p 0.42 0.2 0.01 0.07 +brait braire ver 0.37 0.61 0.03 0 ind:pre:3s; +brama bramer ver 0.12 4.26 0 0.54 ind:pas:3s; +bramaient bramer ver 0.12 4.26 0 0.14 ind:imp:3p; +bramait bramer ver 0.12 4.26 0 0.54 ind:imp:3s; +bramant bramer ver 0.12 4.26 0 0.34 par:pre; +brame brame nom m s 0.01 3.58 0.01 3.24 +bramement bramement nom m s 0.11 0.2 0.1 0.14 +bramements bramement nom m p 0.11 0.2 0.01 0.07 +brament bramer ver 0.12 4.26 0 0.07 ind:pre:3p; +bramer bramer ver 0.12 4.26 0.01 1.28 inf; +brames bramer ver 0.12 4.26 0.1 0 ind:pre:2s; +bramé bramer ver m s 0.12 4.26 0 0.81 par:pas; +bramées bramer ver f p 0.12 4.26 0 0.07 par:pas; +bran bran nom m s 0.16 0.07 0.16 0.07 +brancard brancard nom m s 2.47 7.3 1.97 3.11 +brancarder brancarder ver 0.01 0 0.01 0 inf; +brancardier brancardier nom m s 1.42 3.92 0.55 0.54 +brancardiers brancardier nom m p 1.42 3.92 0.86 3.38 +brancards brancard nom m p 2.47 7.3 0.51 4.19 +brancha brancher ver 20.34 8.04 0.01 0.27 ind:pas:3s; +branchage branchage nom m s 0.41 4.46 0 0.81 +branchages branchage nom m p 0.41 4.46 0.41 3.65 +branchai brancher ver 20.34 8.04 0 0.14 ind:pas:1s; +branchaient brancher ver 20.34 8.04 0.02 0.2 ind:imp:3p; +branchais brancher ver 20.34 8.04 0.05 0.07 ind:imp:1s; +branchait brancher ver 20.34 8.04 0.23 0.54 ind:imp:3s; +branchant brancher ver 20.34 8.04 0.06 0.07 par:pre; +branche branche nom f s 18.07 85.61 11.85 24.12 +branchement branchement nom m s 0.52 0.27 0.33 0.2 +branchements branchement nom m p 0.52 0.27 0.2 0.07 +branchent brancher ver 20.34 8.04 0.3 0 ind:pre:3p; +brancher brancher ver 20.34 8.04 4.4 1.55 inf; +branchera brancher ver 20.34 8.04 0.04 0 ind:fut:3s; +brancheraient brancher ver 20.34 8.04 0 0.07 cnd:pre:3p; +brancherait brancher ver 20.34 8.04 0.39 0 cnd:pre:3s; +brancheras brancher ver 20.34 8.04 0.01 0 ind:fut:2s; +brancherez brancher ver 20.34 8.04 0.01 0.07 ind:fut:2p; +branches branche nom f p 18.07 85.61 6.22 61.49 +branchette branchette nom f s 0.16 2.3 0.16 0.54 +branchettes branchette nom f p 0.16 2.3 0 1.76 +branchez brancher ver 20.34 8.04 1.44 0 imp:pre:2p;ind:pre:2p; +branchiale branchial adj f s 0.03 0 0.03 0 +branchie branchie nom f s 0.5 0.2 0.03 0 +branchies branchie nom f p 0.5 0.2 0.47 0.2 +branchons brancher ver 20.34 8.04 0.06 0.07 imp:pre:1p;ind:pre:1p; +branchu branchu adj m s 0.01 0.27 0 0.07 +branchue branchu adj f s 0.01 0.27 0 0.07 +branchus branchu adj m p 0.01 0.27 0.01 0.14 +branché brancher ver m s 20.34 8.04 4.72 1.96 par:pas; +branchée brancher ver f s 20.34 8.04 1.23 0.88 par:pas; +branchées branché adj f p 4.64 1.42 0.17 0 +branchés branché adj m p 4.64 1.42 0.83 0.34 +brand brand nom m s 0.02 0.14 0.02 0 +brandade brandade nom f s 0.14 0.14 0.14 0.14 +brande brand nom f s 0.02 0.14 0 0.14 +brandebourgeois brandebourgeois adj m s 0.11 0.14 0.11 0.14 +brandebourgs brandebourg nom m p 0 1.15 0 1.15 +brandevin brandevin nom m s 0.01 0 0.01 0 +brandevinier brandevinier nom m s 0 0.41 0 0.41 +brandi brandir ver m s 5.4 22.09 1.08 2.16 par:pas; +brandie brandir ver f s 5.4 22.09 0.27 0.54 par:pas; +brandies brandir ver f p 5.4 22.09 0.03 0.54 par:pas; +brandillon brandillon nom m s 0 0.61 0 0.34 +brandillons brandillon nom m p 0 0.61 0 0.27 +brandir brandir ver 5.4 22.09 1.01 1.42 inf; +brandira brandir ver 5.4 22.09 0.27 0.07 ind:fut:3s; +brandirait brandir ver 5.4 22.09 0 0.07 cnd:pre:3s; +brandirent brandir ver 5.4 22.09 0 0.14 ind:pas:3p; +brandiront brandir ver 5.4 22.09 0.14 0.07 ind:fut:3p; +brandis brandir ver m p 5.4 22.09 0.36 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +brandissaient brandir ver 5.4 22.09 0.01 0.88 ind:imp:3p; +brandissais brandir ver 5.4 22.09 0.05 0.34 ind:imp:1s;ind:imp:2s; +brandissait brandir ver 5.4 22.09 0.07 3.18 ind:imp:3s; +brandissant brandir ver 5.4 22.09 0.84 5.54 par:pre; +brandisse brandir ver 5.4 22.09 0.01 0.14 sub:pre:3s; +brandissent brandir ver 5.4 22.09 0.47 0.68 ind:pre:3p; +brandissez brandir ver 5.4 22.09 0.28 0.07 imp:pre:2p;ind:pre:2p; +brandissiez brandir ver 5.4 22.09 0.01 0 ind:imp:2p; +brandissions brandir ver 5.4 22.09 0 0.07 ind:imp:1p; +brandissons brandir ver 5.4 22.09 0.01 0.07 imp:pre:1p; +brandit brandir ver 5.4 22.09 0.49 5.34 ind:pre:3s;ind:pas:3s; +brandon brandon nom m s 0.12 0.81 0.02 0.68 +brandons brandon nom m p 0.12 0.81 0.1 0.14 +brandouille brandouiller ver 0 0.07 0 0.07 ind:pre:3s; +brandy brandy nom m s 3.1 0.14 3.1 0.14 +brandît brandir ver 5.4 22.09 0 0.07 sub:imp:3s; +branla branler ver 12.72 9.93 0 0.27 ind:pas:3s; +branlage branlage nom m 0.02 0.07 0.02 0.07 +branlaient branler ver 12.72 9.93 0.03 0.34 ind:imp:3p; +branlais branler ver 12.72 9.93 0.33 0.27 ind:imp:1s;ind:imp:2s; +branlait branler ver 12.72 9.93 0.11 1.49 ind:imp:3s; +branlant branlant adj m s 0.56 4.66 0.2 1.55 +branlante branlant adj f s 0.56 4.66 0.28 1.76 +branlantes branlant adj f p 0.56 4.66 0.07 0.95 +branlants branlant adj m p 0.56 4.66 0.01 0.41 +branle branler ver 12.72 9.93 5.07 2.3 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +branle_bas branle_bas nom m 0.29 1.82 0.29 1.82 +branlement branlement nom m s 0.01 0.07 0.01 0.07 +branlent branler ver 12.72 9.93 0.27 0.34 ind:pre:3p; +branler branler ver 12.72 9.93 4.82 3.04 inf; +branlera branler ver 12.72 9.93 0.02 0 ind:fut:3s; +branlerais branler ver 12.72 9.93 0.04 0 cnd:pre:1s;cnd:pre:2s; +branlerait branler ver 12.72 9.93 0 0.07 cnd:pre:3s; +branles branler ver 12.72 9.93 1.27 0.34 ind:pre:2s; +branlette branlette nom f s 3.25 0.68 2.68 0.41 +branlettes branlette nom f p 3.25 0.68 0.57 0.27 +branleur branleur nom m s 5.22 1.35 2.9 0.34 +branleurs branleur nom m p 5.22 1.35 2.15 0.81 +branleuse branleur nom f s 5.22 1.35 0.03 0.14 +branleuses branleur nom f p 5.22 1.35 0.14 0.07 +branlez branler ver 12.72 9.93 0.18 0.2 imp:pre:2p;ind:pre:2p; +branlochais branlocher ver 0 0.2 0 0.07 ind:imp:1s; +branlochant branlocher ver 0 0.2 0 0.07 par:pre; +branlochent branlocher ver 0 0.2 0 0.07 ind:pre:3p; +branlé branler ver m s 12.72 9.93 0.41 0.41 par:pas; +branlée branlée nom f s 0.8 0.47 0.8 0.47 +branlés branler ver m p 12.72 9.93 0.03 0 par:pas; +branque branque adj s 0.68 3.11 0.42 2.43 +branques branque adj m p 0.68 3.11 0.26 0.68 +branquignol branquignol nom m s 0.05 0.07 0.03 0 +branquignols branquignol nom m p 0.05 0.07 0.02 0.07 +braqua braquer ver 15.68 15.54 0.01 0.54 ind:pas:3s; +braquage braquage nom m s 7.74 1.62 6.49 1.22 +braquages braquage nom m p 7.74 1.62 1.26 0.41 +braquai braquer ver 15.68 15.54 0 0.14 ind:pas:1s; +braquaient braquer ver 15.68 15.54 0.18 0.14 ind:imp:3p; +braquais braquer ver 15.68 15.54 0.07 0.27 ind:imp:1s;ind:imp:2s; +braquait braquer ver 15.68 15.54 0.32 1.28 ind:imp:3s; +braquant braquer ver 15.68 15.54 0.28 1.01 par:pre; +braque braquer ver 15.68 15.54 1.94 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +braquemart braquemart nom m s 0.22 0.61 0.19 0.61 +braquemarts braquemart nom m p 0.22 0.61 0.03 0 +braquent braquer ver 15.68 15.54 0.28 0.68 ind:pre:3p; +braquer braquer ver 15.68 15.54 5.2 2.97 ind:pre:2p;inf; +braquera braquer ver 15.68 15.54 0.05 0 ind:fut:3s; +braquerais braquer ver 15.68 15.54 0 0.07 cnd:pre:2s; +braquerait braquer ver 15.68 15.54 0.05 0 cnd:pre:3s; +braques braquer ver 15.68 15.54 0.73 0.07 ind:pre:2s; +braquet braquet nom m s 0 0.2 0 0.14 +braquets braquet nom m p 0 0.2 0 0.07 +braqueur braqueur nom m s 3.12 1.01 1.74 0.54 +braqueurs braqueur nom m p 3.12 1.01 1.14 0.47 +braqueuse braqueur nom f s 3.12 1.01 0.03 0 +braqueuses braqueur nom f p 3.12 1.01 0.21 0 +braquez braquer ver 15.68 15.54 0.23 0.07 imp:pre:2p;ind:pre:2p; +braquèrent braquer ver 15.68 15.54 0 0.14 ind:pas:3p; +braqué braquer ver m s 15.68 15.54 4.79 2.57 par:pas; +braquée braquer ver f s 15.68 15.54 0.47 1.08 par:pas; +braquées braquer ver f p 15.68 15.54 0.4 0.74 par:pas; +braqués braquer ver m p 15.68 15.54 0.7 2.3 par:pas; +bras bras nom m 149.26 487.97 149.26 487.97 +brasage brasage nom m s 0 0.07 0 0.07 +braser braser ver 0 0.07 0 0.07 inf; +brasero brasero nom m s 0.04 1.82 0.02 1.15 +braseros brasero nom m p 0.04 1.82 0.01 0.68 +brasier brasier nom m s 1.47 6.42 1.43 5.81 +brasiers brasier nom m p 1.47 6.42 0.04 0.61 +brasillaient brasiller ver 0 0.88 0 0.34 ind:imp:3p; +brasillait brasiller ver 0 0.88 0 0.14 ind:imp:3s; +brasillant brasiller ver 0 0.88 0 0.07 par:pre; +brasille brasiller ver 0 0.88 0 0.14 ind:pre:3s; +brasillement brasillement nom m s 0 0.2 0 0.2 +brasiller brasiller ver 0 0.88 0 0.2 inf; +brassage brassage nom m s 0.09 0.81 0.09 0.61 +brassages brassage nom m p 0.09 0.81 0 0.2 +brassai brasser ver 1.03 5.61 0 0.07 ind:pas:1s; +brassaient brasser ver 1.03 5.61 0.01 0.27 ind:imp:3p; +brassait brasser ver 1.03 5.61 0.01 0.95 ind:imp:3s; +brassant brasser ver 1.03 5.61 0.01 0.95 par:pre; +brassard brassard nom m s 0.71 4.93 0.42 3.92 +brassards brassard nom m p 0.71 4.93 0.29 1.01 +brasse brasse nom f s 0.67 2.16 0.37 0.81 +brassent brasser ver 1.03 5.61 0.01 0.27 ind:pre:3p; +brasser brasser ver 1.03 5.61 0.43 0.74 inf; +brasserie brasserie nom f s 1.89 9.05 1.31 7.97 +brasserie_hôtel brasserie_hôtel nom f s 0 0.07 0 0.07 +brasseries brasserie nom f p 1.89 9.05 0.58 1.08 +brasseront brasser ver 1.03 5.61 0 0.07 ind:fut:3p; +brasses brasse nom f p 0.67 2.16 0.3 1.35 +brasseur brasseur nom m s 0.24 0.54 0.23 0.34 +brasseurs brasseur nom m p 0.24 0.54 0.01 0.2 +brassez brasser ver 1.03 5.61 0.03 0 imp:pre:2p;ind:pre:2p; +brassicourt brassicourt adj m s 0 0.07 0 0.07 +brassions brasser ver 1.03 5.61 0 0.14 ind:imp:1p; +brassière brassière nom f s 0.55 0.54 0.36 0.2 +brassières brassière nom f p 0.55 0.54 0.18 0.34 +brassé brasser ver m s 1.03 5.61 0.2 0.54 par:pas; +brassée brassée nom f s 0.06 3.18 0.04 1.96 +brassées brassée nom f p 0.06 3.18 0.02 1.22 +brassés brasser ver m p 1.03 5.61 0.01 0.14 par:pas; +brasure brasure nom f s 0 0.07 0 0.07 +brava braver ver 3.2 5.2 0.22 0.41 ind:pas:3s; +bravache bravache adj m s 0.16 0.14 0.14 0.07 +bravaches bravache nom m p 0.08 0.27 0.01 0.2 +bravade bravade nom f s 0.15 1.69 0.12 1.42 +bravades bravade nom f p 0.15 1.69 0.03 0.27 +bravaient braver ver 3.2 5.2 0 0.2 ind:imp:3p; +bravais braver ver 3.2 5.2 0.16 0.14 ind:imp:1s;ind:imp:2s; +bravait braver ver 3.2 5.2 0.01 0.41 ind:imp:3s; +bravant braver ver 3.2 5.2 0.36 0.74 par:pre; +brave brave adj s 30.93 35 24.55 23.31 +bravement bravement adv 0.59 3.78 0.59 3.78 +bravent braver ver 3.2 5.2 0.02 0.07 ind:pre:3p; +braver braver ver 3.2 5.2 1.48 2.09 inf; +braverai braver ver 3.2 5.2 0.02 0 ind:fut:1s; +braveraient braver ver 3.2 5.2 0.01 0 cnd:pre:3p; +braverait braver ver 3.2 5.2 0 0.07 cnd:pre:3s; +braveries braverie nom f p 0 0.07 0 0.07 +braveriez braver ver 3.2 5.2 0.01 0 cnd:pre:2p; +braves brave adj p 30.93 35 6.39 11.69 +bravez braver ver 3.2 5.2 0.03 0 imp:pre:2p;ind:pre:2p; +bravissimo bravissimo nom m s 0.15 0.2 0.15 0.2 +bravo bravo ono 48.98 7.91 48.98 7.91 +bravons braver ver 3.2 5.2 0.02 0 imp:pre:1p; +bravos bravo nom m p 8.93 4.59 0.73 1.35 +bravoure bravoure nom f s 2.78 3.18 2.78 3.18 +bravèrent braver ver 3.2 5.2 0.03 0 ind:pas:3p; +bravé braver ver m s 3.2 5.2 0.45 0.2 par:pas; +bravée braver ver f s 3.2 5.2 0 0.07 par:pas; +brayaient brayer ver 0.01 0.34 0 0.07 ind:imp:3p; +brayait brayer ver 0.01 0.34 0 0.07 ind:imp:3s; +braye braye nom f s 0 0.61 0 0.61 +brayes brayer ver 0.01 0.34 0 0.07 ind:pre:2s; +brayons brayon nom m p 0 0.07 0 0.07 +break break nom m s 7.18 2.09 6.91 1.96 +break_down break_down nom m 0 0.14 0 0.14 +breakdance breakdance nom f s 0.1 0 0.1 0 +breakfast breakfast nom m s 0.64 1.22 0.6 1.22 +breakfasts breakfast nom m p 0.64 1.22 0.03 0 +breaks break nom m p 7.18 2.09 0.27 0.14 +brebis brebis nom f 7.02 7.03 7.02 7.03 +brechtienne brechtien nom f s 0 0.07 0 0.07 +bredin bredin nom m s 0 0.07 0 0.07 +bredouilla bredouiller ver 0.73 13.38 0 4.46 ind:pas:3s; +bredouillage bredouillage nom m s 0 0.14 0 0.14 +bredouillai bredouiller ver 0.73 13.38 0 0.41 ind:pas:1s; +bredouillaient bredouiller ver 0.73 13.38 0 0.41 ind:imp:3p; +bredouillais bredouiller ver 0.73 13.38 0 0.41 ind:imp:1s; +bredouillait bredouiller ver 0.73 13.38 0.06 1.01 ind:imp:3s; +bredouillant bredouiller ver 0.73 13.38 0 1.42 par:pre; +bredouillante bredouillant adj f s 0 0.2 0 0.07 +bredouille bredouille adj s 1.41 2.7 1.18 2.09 +bredouillement bredouillement nom m s 0 0.68 0 0.54 +bredouillements bredouillement nom m p 0 0.68 0 0.14 +bredouillent bredouiller ver 0.73 13.38 0 0.07 ind:pre:3p; +bredouiller bredouiller ver 0.73 13.38 0.11 1.96 inf; +bredouilles bredouille adj m p 1.41 2.7 0.23 0.61 +bredouilleurs bredouilleur nom m p 0 0.07 0 0.07 +bredouillez bredouiller ver 0.73 13.38 0.11 0 imp:pre:2p;ind:pre:2p; +bredouillis bredouillis nom m 0 0.14 0 0.14 +bredouillé bredouiller ver m s 0.73 13.38 0.13 1.15 par:pas; +bredouillées bredouiller ver f p 0.73 13.38 0 0.14 par:pas; +bref bref adv 22.26 38.78 22.26 38.78 +brefs bref adj m p 15.63 74.8 0.92 10.2 +bregma bregma nom m s 0.01 0 0.01 0 +breitschwanz breitschwanz nom m s 0 0.2 0 0.2 +brelan brelan nom m s 1.29 0.54 1.28 0.54 +brelans brelan nom m p 1.29 0.54 0.01 0 +breloque breloque nom f s 0.56 1.69 0.27 0.95 +breloques breloque nom f p 0.56 1.69 0.29 0.74 +breneuses breneux adj f p 0 0.14 0 0.07 +breneux breneux adj m s 0 0.14 0 0.07 +bressan bressan adj m s 0 0.68 0 0.2 +bressane bressan adj f s 0 0.68 0 0.34 +bressanes bressan adj f p 0 0.68 0 0.07 +bressans bressan adj m p 0 0.68 0 0.07 +brestois brestois nom m 0 0.2 0 0.14 +brestoise brestois nom f s 0 0.2 0 0.07 +bretelle bretelle nom f s 2.63 13.04 1.1 3.72 +bretelles bretelle nom f p 2.63 13.04 1.54 9.32 +breton breton adj m s 0.71 9.86 0.17 3.99 +bretonnant bretonnant adj m s 0 0.14 0 0.07 +bretonnants bretonnant adj m p 0 0.14 0 0.07 +bretonne breton adj f s 0.71 9.86 0.54 3.18 +bretonnes breton nom f p 0.35 4.86 0.01 0.41 +bretons breton nom m p 0.35 4.86 0.18 1.35 +brette brette nom f s 0.01 0 0.01 0 +bretteur bretteur nom m s 0.31 0.2 0.27 0 +bretteurs bretteur nom m p 0.31 0.2 0.04 0.2 +bretzel bretzel nom s 1.51 0.47 0.47 0.07 +bretzels bretzel nom p 1.51 0.47 1.04 0.41 +breuil breuil nom m s 0 0.14 0 0.07 +breuils breuil nom m p 0 0.14 0 0.07 +breuvage breuvage nom m s 0.88 2.57 0.83 2.09 +breuvages breuvage nom m p 0.88 2.57 0.04 0.47 +brevet brevet nom m s 3.1 3.58 1.83 3.11 +breveter breveter ver 0.49 0.41 0.32 0.14 inf; +brevets brevet nom m p 3.1 3.58 1.27 0.47 +breveté breveté adj m s 0.36 0.61 0.3 0.47 +brevetée breveter ver f s 0.49 0.41 0.05 0.07 par:pas; +brevetées breveté adj f p 0.36 0.61 0.03 0.07 +brevetés breveter ver m p 0.49 0.41 0.03 0 par:pas; +bri bri nom m s 0.54 0.41 0.54 0.41 +briard briard adj m s 0.03 0.2 0.03 0.14 +briarde briard adj f s 0.03 0.2 0 0.07 +briards briard nom m p 0.01 0.2 0 0.07 +bribe bribe nom f s 0.88 14.73 0.03 1.55 +bribes bribe nom f p 0.88 14.73 0.85 13.18 +bric_et_de_broc bric_et_de_broc adv 0.03 0.47 0.03 0.47 +bric_à_brac bric_à_brac nom m 0 3.24 0 3.24 +bricheton bricheton nom m s 0 0.68 0 0.68 +brick brick nom m s 1.51 0.34 1.3 0.14 +bricks brick nom m p 1.51 0.34 0.21 0.2 +bricola bricoler ver 4.03 6.15 0 0.07 ind:pas:3s; +bricolage bricolage nom m s 0.89 1.76 0.87 1.28 +bricolages bricolage nom m p 0.89 1.76 0.01 0.47 +bricolaient bricoler ver 4.03 6.15 0.01 0.07 ind:imp:3p; +bricolais bricoler ver 4.03 6.15 0.01 0.14 ind:imp:1s;ind:imp:2s; +bricolait bricoler ver 4.03 6.15 0.19 0.88 ind:imp:3s; +bricolant bricoler ver 4.03 6.15 0.01 0.2 par:pre; +bricole bricoler ver 4.03 6.15 1.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bricolent bricoler ver 4.03 6.15 0.04 0.2 ind:pre:3p; +bricoler bricoler ver 4.03 6.15 1.33 1.82 inf; +bricoles bricole nom f p 1.83 5.68 1.41 3.99 +bricoleur bricoleur nom m s 0.58 0.54 0.52 0.27 +bricoleurs bricoleur nom m p 0.58 0.54 0.04 0.27 +bricoleuse bricoleur nom f s 0.58 0.54 0.03 0 +bricolez bricoler ver 4.03 6.15 0.23 0.07 ind:pre:2p; +bricolo bricolo nom m s 0.04 0.27 0.04 0.14 +bricolons bricoler ver 4.03 6.15 0.01 0 ind:pre:1p; +bricolos bricolo nom m p 0.04 0.27 0 0.14 +bricolé bricoler ver m s 4.03 6.15 0.61 0.88 par:pas; +bricolée bricoler ver f s 4.03 6.15 0.07 0.47 par:pas; +bricolées bricoler ver f p 4.03 6.15 0.01 0.07 par:pas; +bricolés bricoler ver m p 4.03 6.15 0.01 0.14 par:pas; +bridais brider ver 0.92 2.3 0 0.07 ind:imp:1s; +bridait brider ver 0.92 2.3 0 0.41 ind:imp:3s; +bridant brider ver 0.92 2.3 0.1 0.07 par:pre; +bride bride nom f s 1.79 10.07 1.63 8.92 +brident brider ver 0.92 2.3 0.04 0.07 ind:pre:3p; +brider brider ver 0.92 2.3 0.28 0.47 imp:pre:2p;inf; +brides bride nom f p 1.79 10.07 0.16 1.15 +bridez brider ver 0.92 2.3 0.01 0 ind:pre:2p; +bridge bridge nom m s 4.33 4.12 4.31 3.99 +bridgeait bridger ver 0.36 0.61 0 0.2 ind:imp:3s; +bridgeant bridger ver 0.36 0.61 0 0.07 par:pre; +bridgent bridger ver 0.36 0.61 0 0.07 ind:pre:3p; +bridgeons bridger ver 0.36 0.61 0 0.07 ind:pre:1p; +bridger bridger ver 0.36 0.61 0.35 0.14 inf; +bridges bridge nom m p 4.33 4.12 0.02 0.14 +bridgeurs bridgeur nom m p 0.02 0.07 0 0.07 +bridgeuse bridgeur nom f s 0.02 0.07 0.02 0 +bridgez bridger ver 0.36 0.61 0.01 0 ind:pre:2p; +bridgées bridger ver f p 0.36 0.61 0 0.07 par:pas; +bridon bridon nom m s 0 0.41 0 0.34 +bridons bridon nom m p 0 0.41 0 0.07 +bridé bridé adj m s 1.45 2.64 0.63 0.2 +bridée bridé adj f s 1.45 2.64 0.14 0.2 +bridées bridé adj f p 1.45 2.64 0.11 0.14 +bridés bridé adj m p 1.45 2.64 0.57 2.09 +brie brie nom s 0.33 0.88 0.33 0.74 +briefe briefer ver 2.04 0 0.17 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +briefer briefer ver 2.04 0 0.62 0 inf; +briefera briefer ver 2.04 0 0.09 0 ind:fut:3s; +brieferai briefer ver 2.04 0 0.2 0 ind:fut:1s; +brieferas briefer ver 2.04 0 0.05 0 ind:fut:2s; +briefes briefer ver 2.04 0 0.04 0 ind:pre:2s; +briefez briefer ver 2.04 0 0.06 0 imp:pre:2p; +briefing briefing nom m s 3.25 0.47 3 0.34 +briefings briefing nom m p 3.25 0.47 0.24 0.14 +briefé briefer ver m s 2.04 0 0.49 0 par:pas; +briefée briefer ver f s 2.04 0 0.07 0 par:pas; +briefés briefer ver m p 2.04 0 0.24 0 par:pas; +bries brie nom p 0.33 0.88 0 0.14 +brifez brifer ver 0 0.07 0 0.07 imp:pre:2p; +briffe briffer ver 0.12 0.88 0.1 0.34 ind:pre:1s;ind:pre:3s; +briffer briffer ver 0.12 0.88 0.02 0.54 inf; +brigade brigade nom f s 16.65 12.43 13.75 8.78 +brigades brigade nom f p 16.65 12.43 2.9 3.65 +brigadier brigadier nom m s 2.86 14.53 2.73 13.92 +brigadier_chef brigadier_chef nom m s 0.01 1.96 0.01 1.82 +brigadiers brigadier nom m p 2.86 14.53 0.14 0.61 +brigadier_chef brigadier_chef nom m p 0.01 1.96 0 0.14 +brigadiste brigadiste adj s 0 0.07 0 0.07 +brigadistes brigadiste nom p 0 0.07 0 0.07 +brigand brigand nom m s 5.14 3.72 2.1 1.35 +brigandage brigandage nom m s 0.3 0.74 0.3 0.47 +brigandages brigandage nom m p 0.3 0.74 0 0.27 +brigandaient brigander ver 0.11 0.27 0 0.07 ind:imp:3p; +brigandasse brigander ver 0.11 0.27 0 0.07 sub:imp:1s; +brigande brigander ver 0.11 0.27 0.11 0.14 imp:pre:2s;ind:pre:3s; +brigandeaux brigandeau nom m p 0 0.07 0 0.07 +brigands brigand nom m p 5.14 3.72 3.04 2.36 +brigantin brigantin nom m s 0.2 0.2 0.2 0.2 +brigantine brigantine nom f s 0 0.07 0 0.07 +brignolet brignolet nom m s 0 0.27 0 0.27 +briguaient briguer ver 0.81 1.01 0.01 0.07 ind:imp:3p; +briguait briguer ver 0.81 1.01 0.13 0.07 ind:imp:3s; +briguant briguer ver 0.81 1.01 0 0.07 par:pre; +brigue briguer ver 0.81 1.01 0.2 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +briguer briguer ver 0.81 1.01 0.32 0.54 inf; +briguerait briguer ver 0.81 1.01 0 0.07 cnd:pre:3s; +brigues brigue nom f p 0 0.34 0 0.34 +briguèrent briguer ver 0.81 1.01 0 0.07 ind:pas:3p; +brigué briguer ver m s 0.81 1.01 0.16 0.07 par:pas; +brilla briller ver 28.91 81.22 0.02 1.89 ind:pas:3s; +brillaient briller ver 28.91 81.22 0.27 17.84 ind:imp:3p; +brillais briller ver 28.91 81.22 0.04 0.14 ind:imp:1s;ind:imp:2s; +brillait briller ver 28.91 81.22 1.73 19.39 ind:imp:3s; +brillamment brillamment adv 0.88 2.3 0.88 2.3 +brillance brillance nom f s 0.27 0.74 0.27 0.54 +brillances brillance nom f p 0.27 0.74 0 0.2 +brillant brillant adj m s 29.89 53.31 14.23 16.62 +brillantage brillantage nom m s 0 0.07 0 0.07 +brillante brillant adj f s 29.89 53.31 9.2 13.18 +brillantes brillant adj f p 29.89 53.31 2.31 7.36 +brillantine brillantine nom f s 0.1 1.96 0.1 1.96 +brillantiner brillantiner ver 0.03 0.47 0 0.07 inf; +brillantinée brillantiner ver f s 0.03 0.47 0 0.07 par:pas; +brillantinées brillantiner ver f p 0.03 0.47 0 0.07 par:pas; +brillantinés brillantiner ver m p 0.03 0.47 0.03 0.2 par:pas; +brillants brillant adj m p 29.89 53.31 4.16 16.15 +brillantés brillanter ver m p 0.08 0.2 0 0.07 par:pas; +brille briller ver 28.91 81.22 13.73 10.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brillent briller ver 28.91 81.22 3.93 7.5 ind:pre:3p; +briller briller ver 28.91 81.22 5.08 16.76 inf;; +brillera briller ver 28.91 81.22 1.12 0.14 ind:fut:3s; +brilleraient briller ver 28.91 81.22 0 0.34 cnd:pre:3p; +brillerais briller ver 28.91 81.22 0.2 0.07 cnd:pre:2s; +brillerait briller ver 28.91 81.22 0.04 0.41 cnd:pre:3s; +brillerons briller ver 28.91 81.22 0 0.07 ind:fut:1p; +brilleront briller ver 28.91 81.22 0.09 0.2 ind:fut:3p; +brilles briller ver 28.91 81.22 0.48 0.07 ind:pre:2s; +brillez briller ver 28.91 81.22 0.06 0 imp:pre:2p;ind:pre:2p; +brillions briller ver 28.91 81.22 0 0.14 ind:imp:1p; +brillons briller ver 28.91 81.22 0.04 0 ind:pre:1p; +brillât briller ver 28.91 81.22 0 0.2 sub:imp:3s; +brillèrent briller ver 28.91 81.22 0 1.49 ind:pas:3p; +brillé briller ver m s 28.91 81.22 0.8 1.42 par:pas; +brima brimer ver 0.66 2.16 0.31 0 ind:pas:3s; +brimade brimade nom f s 0.1 2.91 0.04 0.95 +brimades brimade nom f p 0.1 2.91 0.05 1.96 +brimaient brimer ver 0.66 2.16 0.01 0.14 ind:imp:3p; +brimais brimer ver 0.66 2.16 0 0.07 ind:imp:1s; +brimait brimer ver 0.66 2.16 0 0.14 ind:imp:3s; +brimbala brimbaler ver 0 0.27 0 0.07 ind:pas:3s; +brimbalant brimbaler ver 0 0.27 0 0.07 par:pre; +brimbalement brimbalement nom m s 0 0.14 0 0.07 +brimbalements brimbalement nom m p 0 0.14 0 0.07 +brimbaler brimbaler ver 0 0.27 0 0.07 inf; +brimbalés brimbaler ver m p 0 0.27 0 0.07 par:pas; +brimborion brimborion nom m s 0 0.34 0 0.14 +brimborions brimborion nom m p 0 0.34 0 0.2 +brime brimer ver 0.66 2.16 0.04 0.27 ind:pre:3s; +briment brimer ver 0.66 2.16 0 0.07 ind:pre:3p; +brimer brimer ver 0.66 2.16 0.14 0.74 inf; +brimé brimer ver m s 0.66 2.16 0.14 0.34 par:pas; +brimée brimer ver f s 0.66 2.16 0.01 0.14 par:pas; +brimées brimer ver f p 0.66 2.16 0.01 0.14 par:pas; +brimés brimer ver m p 0.66 2.16 0 0.14 par:pas; +brin brin nom m s 5.38 19.26 4.95 13.99 +brindes brinde nom f p 0.03 0 0.03 0 +brindezingue brindezingue adj s 0.01 0.07 0.01 0.07 +brindille brindille nom f s 1.25 6.55 0.69 1.62 +brindilles brindille nom f p 1.25 6.55 0.56 4.93 +bringue bringue nom f s 1.27 1.42 1.27 1.42 +bringuebalaient bringuebaler ver 0.01 0.95 0 0.07 ind:imp:3p; +bringuebalait bringuebaler ver 0.01 0.95 0 0.2 ind:imp:3s; +bringuebalant bringuebalant adj m s 0.02 0.47 0.02 0.07 +bringuebalante bringuebalant adj f s 0.02 0.47 0 0.14 +bringuebalantes bringuebalant adj f p 0.02 0.47 0 0.07 +bringuebalants bringuebalant adj m p 0.02 0.47 0 0.2 +bringuebale bringuebaler ver 0.01 0.95 0 0.34 ind:pre:3s; +bringuebalent bringuebaler ver 0.01 0.95 0 0.14 ind:pre:3p; +bringuebaler bringuebaler ver 0.01 0.95 0.01 0.14 inf; +brinquebalait brinquebaler ver 0.12 0.41 0 0.14 ind:imp:3s; +brinquebalants brinquebalant adj m p 0 0.07 0 0.07 +brinquebale brinquebaler ver 0.12 0.41 0.11 0.07 ind:pre:3s; +brinquebaler brinquebaler ver 0.12 0.41 0.01 0.07 inf; +brinqueballant brinqueballer ver 0 0.27 0 0.14 par:pre; +brinqueballé brinqueballer ver m s 0 0.27 0 0.07 par:pas; +brinqueballés brinqueballer ver m p 0 0.27 0 0.07 par:pas; +brinquebalé brinquebaler ver m s 0.12 0.41 0 0.14 par:pas; +brins brin nom m p 5.38 19.26 0.44 5.27 +brio brio nom m s 0.93 1.89 0.93 1.89 +brioche brioche nom f s 2.55 7.09 1.45 4.66 +brioches brioche nom f p 2.55 7.09 1.1 2.43 +brioché brioché adj m s 0.03 0.07 0.02 0 +briochée brioché adj f s 0.03 0.07 0.01 0 +briochés brioché adj m p 0.03 0.07 0 0.07 +brions brion nom m p 0.03 0 0.03 0 +briquage briquage nom m s 0 0.14 0 0.14 +briquaient briquer ver 0.69 2.57 0 0.07 ind:imp:3p; +briquais briquer ver 0.69 2.57 0.01 0 ind:imp:1s; +briquait briquer ver 0.69 2.57 0 0.2 ind:imp:3s; +briquant briquer ver 0.69 2.57 0 0.14 par:pre; +brique brique nom f s 13.56 31.55 4.02 11.69 +briquent briquer ver 0.69 2.57 0.01 0 ind:pre:3p; +briquer briquer ver 0.69 2.57 0.4 0.68 inf; +briquerait briquer ver 0.69 2.57 0 0.07 cnd:pre:3s; +briques brique nom f p 13.56 31.55 9.54 19.86 +briquet briquet nom m s 10.64 13.65 9.98 12.3 +briquetage briquetage nom m s 0 0.14 0 0.14 +briqueterie briqueterie nom f s 0.45 0.41 0.45 0.34 +briqueteries briqueterie nom f p 0.45 0.41 0 0.07 +briquetier briquetier nom m s 0 0.07 0 0.07 +briquets briquet nom m p 10.64 13.65 0.66 1.35 +briquette briquette nom f s 0.03 0.61 0.01 0.07 +briquettes briquette nom f p 0.03 0.61 0.02 0.54 +briquetées briqueté adj f p 0 0.07 0 0.07 +briquez briquer ver 0.69 2.57 0.03 0.14 imp:pre:2p; +briqué briquer ver m s 0.69 2.57 0.16 0.34 par:pas; +briquée briquer ver f s 0.69 2.57 0.02 0.2 par:pas; +briquées briquer ver f p 0.69 2.57 0 0.27 par:pas; +briqués briquer ver m p 0.69 2.57 0 0.27 par:pas; +bris bris nom m 0.9 1.35 0.9 1.35 +brisa briser ver 55.2 61.62 0.31 3.85 ind:pas:3s; +brisai briser ver 55.2 61.62 0 0.07 ind:pas:1s; +brisaient briser ver 55.2 61.62 0.05 1.69 ind:imp:3p; +brisais briser ver 55.2 61.62 0.14 0.41 ind:imp:1s; +brisait briser ver 55.2 61.62 0.43 4.93 ind:imp:3s; +brisant briser ver 55.2 61.62 0.3 2.3 par:pre; +brisante brisant adj f s 0.06 0.54 0 0.14 +brisantes brisant adj f p 0.06 0.54 0 0.14 +brisants brisant nom m p 0.2 1.35 0.18 1.28 +briscard briscard nom m s 0.18 0.34 0.06 0.14 +briscards briscard nom m p 0.18 0.34 0.12 0.2 +brise briser ver 55.2 61.62 8.45 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brise_bise brise_bise nom m 0 0.41 0 0.41 +brise_fer brise_fer nom m 0.01 0 0.01 0 +brise_glace brise_glace nom m 0.07 0.2 0.07 0.2 +brise_jet brise_jet nom m 0 0.07 0 0.07 +brise_lame brise_lame nom m s 0 0.14 0 0.14 +brise_vent brise_vent nom m 0.01 0 0.01 0 +brisent briser ver 55.2 61.62 1.48 1.49 ind:pre:3p; +briser briser ver 55.2 61.62 14.99 16.28 inf; +brisera briser ver 55.2 61.62 1.44 0.41 ind:fut:3s; +briserai briser ver 55.2 61.62 1.38 0.27 ind:fut:1s; +briseraient briser ver 55.2 61.62 0.01 0.2 cnd:pre:3p; +briserais briser ver 55.2 61.62 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +briserait briser ver 55.2 61.62 0.81 0.88 cnd:pre:3s; +briseras briser ver 55.2 61.62 0.1 0 ind:fut:2s; +briserez briser ver 55.2 61.62 0.18 0 ind:fut:2p; +briseriez briser ver 55.2 61.62 0.02 0 cnd:pre:2p; +briserons briser ver 55.2 61.62 0.23 0.07 ind:fut:1p; +briseront briser ver 55.2 61.62 0.21 0.34 ind:fut:3p; +brises briser ver 55.2 61.62 0.99 0.14 ind:pre:2s; +briseur briseur nom m s 1.11 1.01 0.66 0.54 +briseurs briseur nom m p 1.11 1.01 0.16 0.41 +briseuse briseur nom f s 1.11 1.01 0.29 0.07 +brisez briser ver 55.2 61.62 2.29 0.2 imp:pre:2p;ind:pre:2p; +brisions briser ver 55.2 61.62 0.01 0.2 ind:imp:1p; +brisis brisis nom m 0.05 0 0.05 0 +brisons briser ver 55.2 61.62 0.38 0.2 imp:pre:1p;ind:pre:1p; +brisque brisque nom f s 0.03 0 0.03 0 +bristol bristol nom m s 0.1 1.55 0.08 1.35 +bristols bristol nom m p 0.1 1.55 0.03 0.2 +brisure brisure nom f s 0.01 0.95 0 0.74 +brisures brisure nom f p 0.01 0.95 0.01 0.2 +brisât briser ver 55.2 61.62 0 0.27 sub:imp:3s; +brisèrent briser ver 55.2 61.62 0.06 0.54 ind:pas:3p; +brisé briser ver m s 55.2 61.62 15.7 9.32 par:pas; +brisée brisé adj f s 10.09 16.42 2.42 6.62 +brisées briser ver f p 55.2 61.62 1.3 5.54 par:pas; +brisés brisé adj m p 10.09 16.42 1.46 3.45 +britannique britannique adj s 8.23 68.72 6.57 47.97 +britanniques britannique nom p 1.97 13.72 1.71 12.84 +british british adj s 1.75 1.08 1.75 1.08 +brivadois brivadois nom m 0 0.14 0 0.14 +brivadoise brivadois adj f s 0 0.07 0 0.07 +brize brize nom f s 0.01 0.47 0.01 0.47 +brièvement brièvement adv 1.92 6.22 1.92 6.22 +brièveté brièveté nom f s 0.13 1.35 0.13 1.35 +broc broc nom m s 0.38 4.53 0.38 3.51 +brocante brocante nom f s 0.86 1.42 0.78 1.35 +brocantes brocante nom f p 0.86 1.42 0.07 0.07 +brocanteur brocanteur nom m s 0.29 9.26 0.28 3.58 +brocanteurs brocanteur nom m p 0.29 9.26 0.01 2.5 +brocanteuse brocanteur nom f s 0.29 9.26 0 3.18 +brocantées brocanter ver f p 0 0.07 0 0.07 par:pas; +brocard brocard nom m s 0.14 1.01 0.14 0.41 +brocardaient brocarder ver 0.01 0.27 0 0.07 ind:imp:3p; +brocardait brocarder ver 0.01 0.27 0 0.07 ind:imp:3s; +brocarde brocarder ver 0.01 0.27 0.01 0 ind:pre:3s; +brocarder brocarder ver 0.01 0.27 0 0.07 inf; +brocardions brocarder ver 0.01 0.27 0 0.07 ind:imp:1p; +brocards brocard nom m p 0.14 1.01 0 0.61 +brocart brocart nom m s 0.37 3.99 0.27 2.91 +brocarts brocart nom m p 0.37 3.99 0.1 1.08 +brocatelle brocatelle nom f s 0 0.07 0 0.07 +brochage brochage nom m s 0 0.2 0 0.14 +brochages brochage nom m p 0 0.2 0 0.07 +brochaient brocher ver 0.05 1.08 0 0.14 ind:imp:3p; +brochant brochant adj m s 6.29 0.07 6.29 0.07 +broche broche nom f s 4.57 5.74 3.88 4.32 +brocher brocher ver 0.05 1.08 0 0.14 inf; +broches broche nom f p 4.57 5.74 0.7 1.42 +brochet brochet nom m s 0.46 3.99 0.44 3.18 +brochets brochet nom m p 0.46 3.99 0.02 0.81 +brochette brochette nom f s 2.26 3.04 1.08 1.76 +brochettes brochette nom f p 2.26 3.04 1.18 1.28 +brocheur brocheur nom m s 0 0.34 0 0.27 +brocheurs brocheur nom m p 0 0.34 0 0.07 +brochoirs brochoir nom m p 0 0.07 0 0.07 +brochure brochure nom f s 2.88 3.99 1.64 1.76 +brochures brochure nom f p 2.88 3.99 1.25 2.23 +broché brocher ver m s 0.05 1.08 0.02 0.2 par:pas; +brochée brocher ver f s 0.05 1.08 0 0.2 par:pas; +brochées broché adj f p 0.01 0.74 0 0.07 +brochés broché adj m p 0.01 0.74 0.01 0.27 +brocoli brocoli nom m s 1.32 0.07 0.69 0 +brocolis brocoli nom m p 1.32 0.07 0.63 0.07 +brocs broc nom m p 0.38 4.53 0 1.01 +broda broder ver 3.52 14.86 0.01 0.14 ind:pas:3s; +brodaient broder ver 3.52 14.86 0 0.27 ind:imp:3p; +brodais broder ver 3.52 14.86 0.37 0.14 ind:imp:1s;ind:imp:2s; +brodait broder ver 3.52 14.86 0.01 0.88 ind:imp:3s; +brodant broder ver 3.52 14.86 0.27 0.41 par:pre; +brode broder ver 3.52 14.86 0.56 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brodent broder ver 3.52 14.86 0.01 0.2 ind:pre:3p; +brodequin brodequin nom m s 0.07 4.12 0.07 0.61 +brodequins brodequin nom m p 0.07 4.12 0 3.51 +broder broder ver 3.52 14.86 1.01 1.82 inf; +brodera broder ver 3.52 14.86 0.01 0.07 ind:fut:3s; +broderai broder ver 3.52 14.86 0 0.07 ind:fut:1s; +broderie broderie nom f s 0.97 6.22 0.93 2.36 +broderies broderie nom f p 0.97 6.22 0.04 3.85 +brodes broder ver 3.52 14.86 0.15 0.07 ind:pre:2s; +brodeuse brodeur nom f s 0.06 0.47 0.05 0.27 +brodeuses brodeur nom f p 0.06 0.47 0.01 0.2 +brodez broder ver 3.52 14.86 0.05 0 imp:pre:2p; +brodé broder ver m s 3.52 14.86 0.83 4.05 par:pas; +brodée broder ver f s 3.52 14.86 0.06 1.96 par:pas; +brodées brodé adj f p 0.57 8.11 0.28 0.88 +brodés broder ver m p 3.52 14.86 0.17 2.5 par:pas; +broie broyer ver 4.08 8.85 0.74 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +broiement broiement nom m s 0 0.2 0 0.14 +broiements broiement nom m p 0 0.2 0 0.07 +broient broyer ver 4.08 8.85 0.14 0.34 ind:pre:3p; +broiera broyer ver 4.08 8.85 0 0.07 ind:fut:3s; +broierai broyer ver 4.08 8.85 0.04 0 ind:fut:1s; +broieras broyer ver 4.08 8.85 0 0.07 ind:fut:2s; +broies broyer ver 4.08 8.85 0.16 0 ind:pre:2s; +broker broker nom m s 0.02 0.07 0.02 0.07 +brol brol nom m s 0.01 0 0.01 0 +brome brome nom m s 0.01 0.14 0.01 0.14 +bromure bromure nom m s 0.52 0.47 0.52 0.41 +bromures bromure nom m p 0.52 0.47 0 0.07 +broncha broncher ver 1.97 12.84 0 2.5 ind:pas:3s; +bronchai broncher ver 1.97 12.84 0 0.14 ind:pas:1s; +bronchaient broncher ver 1.97 12.84 0.03 0.27 ind:imp:3p; +bronchais broncher ver 1.97 12.84 0 0.07 ind:imp:1s; +bronchait broncher ver 1.97 12.84 0.1 1.15 ind:imp:3s; +bronchant broncher ver 1.97 12.84 0 0.07 par:pre; +bronche broncher ver 1.97 12.84 0.45 1.96 imp:pre:2s;ind:pre:3s; +bronchent broncher ver 1.97 12.84 0.02 0.2 ind:pre:3p; +broncher broncher ver 1.97 12.84 0.65 4.26 inf; +bronchera broncher ver 1.97 12.84 0.14 0.14 ind:fut:3s; +broncherai broncher ver 1.97 12.84 0.02 0.07 ind:fut:1s; +broncherais broncher ver 1.97 12.84 0.01 0 cnd:pre:1s; +broncherait broncher ver 1.97 12.84 0.02 0.14 cnd:pre:3s; +broncherons broncher ver 1.97 12.84 0 0.07 ind:fut:1p; +broncheront broncher ver 1.97 12.84 0.01 0 ind:fut:3p; +bronches bronche nom f p 0.58 2.23 0.55 2.23 +bronchez broncher ver 1.97 12.84 0.07 0.07 imp:pre:2p;ind:pre:2p; +bronchioles bronchiole nom f p 0.01 0.14 0.01 0.14 +bronchique bronchique adj s 0.24 0.07 0.2 0 +bronchiques bronchique adj m p 0.24 0.07 0.04 0.07 +bronchite bronchite nom f s 1.16 2.36 1.15 2.09 +bronchites bronchite nom f p 1.16 2.36 0.01 0.27 +bronchitique bronchitique adj f s 0 0.14 0 0.07 +bronchitiques bronchitique adj p 0 0.14 0 0.07 +broncho broncho nom m s 0.03 0 0.03 0 +broncho_pneumonie broncho_pneumonie nom f s 0 0.41 0 0.41 +broncho_pneumopathie broncho_pneumopathie nom f s 0.01 0.07 0.01 0.07 +bronchons broncher ver 1.97 12.84 0 0.07 ind:pre:1p; +bronchoscope bronchoscope nom m s 0.01 0 0.01 0 +bronchoscopie bronchoscopie nom f s 0.13 0 0.13 0 +bronchât broncher ver 1.97 12.84 0 0.07 sub:imp:3s; +bronchèrent broncher ver 1.97 12.84 0.1 0.14 ind:pas:3p; +bronché broncher ver m s 1.97 12.84 0.27 1.49 par:pas; +brontosaure brontosaure nom m s 0.12 0.07 0.1 0.07 +brontosaures brontosaure nom m p 0.12 0.07 0.02 0 +bronzage bronzage nom m s 1.67 1.62 1.66 1.55 +bronzages bronzage nom m p 1.67 1.62 0.01 0.07 +bronzaient bronzer ver 5.1 5.74 0 0.07 ind:imp:3p; +bronzait bronzer ver 5.1 5.74 0 0.34 ind:imp:3s; +bronzant bronzer ver 5.1 5.74 0.02 0.07 par:pre; +bronzante bronzant adj f s 0.04 0.14 0.01 0.14 +bronzants bronzant adj m p 0.04 0.14 0.01 0 +bronze bronze nom m s 3.37 19.26 3.15 18.58 +bronzent bronzer ver 5.1 5.74 0.26 0 ind:pre:3p; +bronzer bronzer ver 5.1 5.74 1.88 1.89 inf; +bronzes bronzer ver 5.1 5.74 0.44 0 ind:pre:2s; +bronzette bronzette nom f s 0.12 0.14 0.12 0.07 +bronzettes bronzette nom f p 0.12 0.14 0 0.07 +bronzier bronzier nom m s 0 0.07 0 0.07 +bronzions bronzer ver 5.1 5.74 0 0.07 ind:imp:1p; +bronzé bronzé adj m s 2.72 6.69 1.65 2.84 +bronzée bronzé adj f s 2.72 6.69 0.6 1.55 +bronzées bronzé adj f p 2.72 6.69 0.07 1.22 +bronzés bronzé adj m p 2.72 6.69 0.39 1.08 +brook brook nom m s 0.12 0 0.02 0 +brooks brook nom m p 0.12 0 0.1 0 +broquarts broquart nom m p 0 0.07 0 0.07 +broque broque nom f s 0 0.74 0 0.68 +broques broque nom f p 0 0.74 0 0.07 +broquettes broquette nom f p 0.04 0.07 0.04 0.07 +broquille broquille nom f s 0 1.15 0 0.68 +broquilles broquille nom f p 0 1.15 0 0.47 +brossa brosser ver 7.65 10.14 0 1.15 ind:pas:3s; +brossage brossage nom m s 0.2 0.14 0.2 0.14 +brossaient brosser ver 7.65 10.14 0.02 0.14 ind:imp:3p; +brossais brosser ver 7.65 10.14 0.07 0.2 ind:imp:1s;ind:imp:2s; +brossait brosser ver 7.65 10.14 0.19 1.42 ind:imp:3s; +brossant brosser ver 7.65 10.14 0.05 0.41 par:pre; +brosse brosse nom f s 8.43 19.59 7.29 16.01 +brossent brosser ver 7.65 10.14 0.04 0.14 ind:pre:3p;sub:pre:3p; +brosser brosser ver 7.65 10.14 2.76 2.23 inf; +brossera brosser ver 7.65 10.14 0.06 0 ind:fut:3s; +brosserai brosser ver 7.65 10.14 0.03 0 ind:fut:1s; +brosseras brosser ver 7.65 10.14 0.03 0.14 ind:fut:2s; +brosserez brosser ver 7.65 10.14 0.14 0 ind:fut:2p; +brosses brosse nom f p 8.43 19.59 1.14 3.58 +brosseur brosseur nom m s 0 0.2 0 0.07 +brosseurs brosseur nom m p 0 0.2 0 0.14 +brossez brosser ver 7.65 10.14 0.44 0 imp:pre:2p;ind:pre:2p; +brossier brossier nom m s 0 0.07 0 0.07 +brossé brosser ver m s 7.65 10.14 1.23 1.82 par:pas; +brossée brosser ver f s 7.65 10.14 0.04 0.34 par:pas; +brossées brosser ver f p 7.65 10.14 0.44 0.14 par:pas; +brossés brosser ver m p 7.65 10.14 0.12 0.54 par:pas; +brou brou nom m s 0.02 0.74 0.02 0.74 +brouet brouet nom m s 0.06 0.81 0.04 0.74 +brouets brouet nom m p 0.06 0.81 0.01 0.07 +brouetta brouetter ver 0 0.2 0 0.07 ind:pas:3s; +brouettait brouetter ver 0 0.2 0 0.07 ind:imp:3s; +brouette brouette nom f s 1.16 6.76 1.1 5.14 +brouetter brouetter ver 0 0.2 0 0.07 inf; +brouettes brouette nom f p 1.16 6.76 0.06 1.62 +brouettée brouettée nom f s 0 0.27 0 0.14 +brouettées brouettée nom f p 0 0.27 0 0.14 +brouhaha brouhaha nom m s 4.98 9.66 4.98 9.39 +brouhahas brouhaha nom m p 4.98 9.66 0 0.27 +brouilla brouiller ver 6.12 24.12 0 0.81 ind:pas:3s; +brouillade brouillade nom f s 0 0.07 0 0.07 +brouillage brouillage nom m s 0.62 0.95 0.6 0.74 +brouillages brouillage nom m p 0.62 0.95 0.02 0.2 +brouillaient brouiller ver 6.12 24.12 0.03 1.49 ind:imp:3p; +brouillait brouiller ver 6.12 24.12 0.01 3.92 ind:imp:3s; +brouillamini brouillamini nom m s 0.01 0.27 0.01 0.27 +brouillant brouiller ver 6.12 24.12 0.21 0.95 par:pre; +brouillard brouillard nom m s 10.88 35.2 10.51 32.84 +brouillardeuse brouillardeux adj f s 0 0.27 0 0.07 +brouillardeux brouillardeux adj m s 0 0.27 0 0.2 +brouillards brouillard nom m p 10.88 35.2 0.37 2.36 +brouillassait brouillasser ver 0 0.07 0 0.07 ind:imp:3s; +brouillasse brouillasse nom f s 0 0.27 0 0.27 +brouille brouiller ver 6.12 24.12 1.2 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brouillent brouiller ver 6.12 24.12 0.29 1.35 ind:pre:3p; +brouiller brouiller ver 6.12 24.12 1.33 4.32 inf; +brouilleraient brouiller ver 6.12 24.12 0.02 0 cnd:pre:3p; +brouillerait brouiller ver 6.12 24.12 0 0.07 cnd:pre:3s; +brouillerons brouiller ver 6.12 24.12 0.1 0.07 ind:fut:1p; +brouilles brouiller ver 6.12 24.12 0.06 0.07 ind:pre:2s;sub:pre:2s; +brouilleur brouilleur nom m s 0.78 0 0.66 0 +brouilleurs brouilleur nom m p 0.78 0 0.12 0 +brouillez brouiller ver 6.12 24.12 0.1 0 imp:pre:2p;ind:pre:2p; +brouillon brouillon nom m s 1.17 4.93 1.12 3.18 +brouillonne brouillon adj f s 0.39 1.96 0.1 0.47 +brouillonnes brouillon adj f p 0.39 1.96 0 0.14 +brouillonné brouillonner ver m s 0 0.07 0 0.07 par:pas; +brouillons brouillon adj m p 0.39 1.96 0.19 0.41 +brouillât brouiller ver 6.12 24.12 0 0.2 sub:imp:3s; +brouillèrent brouiller ver 6.12 24.12 0 0.41 ind:pas:3p; +brouillé brouiller ver m s 6.12 24.12 1.52 3.51 par:pas; +brouillée brouiller ver f s 6.12 24.12 0.24 1.62 par:pas; +brouillées brouillé adj f p 2.44 4.32 0.2 0.61 +brouillés brouillé adj m p 2.44 4.32 1.72 1.35 +brouis brouir ver 0 0.14 0 0.07 ind:pas:1s; +brouit brouir ver 0 0.14 0 0.07 ind:pre:3s; +broum broum ono 0.19 0.74 0.19 0.74 +broussaille broussaille nom f s 1.94 7.16 0.5 2.64 +broussailles broussaille nom f p 1.94 7.16 1.44 4.53 +broussailleuse broussailleux adj f s 0.05 1.96 0.02 0.41 +broussailleuses broussailleux adj f p 0.05 1.96 0 0.2 +broussailleux broussailleux adj m 0.05 1.96 0.03 1.35 +broussait brousser ver 0 0.07 0 0.07 ind:imp:3s; +broussard broussard nom m s 0.28 0.14 0.28 0.14 +brousse brousse nom f s 0.95 11.01 0.95 10.88 +brousses brousse nom f p 0.95 11.01 0 0.14 +brout brout nom m s 0.1 0.81 0.1 0.81 +brouta brouter ver 1.65 6.01 0 0.07 ind:pas:3s; +broutage broutage nom m s 0.03 0 0.03 0 +broutaient brouter ver 1.65 6.01 0.01 0.88 ind:imp:3p; +broutait brouter ver 1.65 6.01 0 0.47 ind:imp:3s; +broutant brouter ver 1.65 6.01 0.01 0.74 par:pre; +broutantes broutant adj f p 0 0.07 0 0.07 +broutard broutard nom m s 0.01 0.14 0.01 0.14 +broute brouter ver 1.65 6.01 0.36 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +broutent brouter ver 1.65 6.01 0.16 0.34 ind:pre:3p; +brouter brouter ver 1.65 6.01 0.7 2.16 inf; +brouterai brouter ver 1.65 6.01 0 0.07 ind:fut:1s; +brouteraient brouter ver 1.65 6.01 0 0.07 cnd:pre:3p; +broutes brouter ver 1.65 6.01 0.14 0.07 ind:pre:2s; +brouteur brouteur adj m s 0.19 0.41 0.01 0 +brouteurs brouteur adj m p 0.19 0.41 0 0.14 +brouteuse brouteur adj f s 0.19 0.41 0.09 0.14 +brouteuses brouteur adj f p 0.19 0.41 0.09 0.14 +broutez brouter ver 1.65 6.01 0.02 0 imp:pre:2p;ind:pre:2p; +broutille broutille nom f s 1.87 1.82 0.77 0.61 +broutilles broutille nom f p 1.87 1.82 1.1 1.22 +broutèrent brouter ver 1.65 6.01 0 0.07 ind:pas:3p; +brouté brouter ver m s 1.65 6.01 0.24 0.2 par:pas; +broutée brouter ver f s 1.65 6.01 0.01 0.07 par:pas; +broutés brouter ver m p 1.65 6.01 0 0.07 par:pas; +brown_sugar brown_sugar nom m 0 0.07 0 0.07 +browning browning nom m s 0 0.2 0 0.14 +brownings browning nom m p 0 0.2 0 0.07 +broya broyer ver 4.08 8.85 0.01 0.2 ind:pas:3s; +broyage broyage nom m s 0.08 0.14 0.08 0.07 +broyages broyage nom m p 0.08 0.14 0 0.07 +broyaient broyer ver 4.08 8.85 0 0.41 ind:imp:3p; +broyais broyer ver 4.08 8.85 0.04 0.27 ind:imp:1s;ind:imp:2s; +broyait broyer ver 4.08 8.85 0.1 1.28 ind:imp:3s; +broyant broyer ver 4.08 8.85 0 1.08 par:pre; +broyer broyer ver 4.08 8.85 1.61 1.89 inf; +broyeur broyeur nom m s 1.56 0.27 1.54 0.2 +broyeurs broyeur nom m p 1.56 0.27 0.03 0.07 +broyeuse broyeur adj f s 0.12 0.54 0.06 0.41 +broyez broyer ver 4.08 8.85 0.23 0 imp:pre:2p;ind:pre:2p; +broyèrent broyer ver 4.08 8.85 0 0.07 ind:pas:3p; +broyé broyer ver m s 4.08 8.85 0.55 1.01 par:pas; +broyée broyé adj f s 0.75 1.82 0.16 0.54 +broyées broyé adj f p 0.75 1.82 0.19 0.14 +broyés broyer ver m p 4.08 8.85 0.27 0.27 par:pas; +brrr brrr ono 0.31 1.82 0.31 1.82 +bru bru nom f s 1.45 3.24 1.44 2.84 +bruant bruant nom m s 0 0.14 0 0.07 +bruants bruant nom m p 0 0.14 0 0.07 +brucellose brucellose nom f s 0.03 0.07 0.03 0.07 +brugeois brugeois adj m 0 0.34 0 0.14 +brugeoise brugeois adj f s 0 0.34 0 0.14 +brugeoises brugeois adj f p 0 0.34 0 0.07 +bruges bruges nom s 0 0.07 0 0.07 +brugnon brugnon nom m s 0.14 0.27 0 0.2 +brugnons brugnon nom m p 0.14 0.27 0.14 0.07 +bruinait bruiner ver 0.14 0.95 0 0.54 ind:imp:3s; +bruinasse bruiner ver 0.14 0.95 0 0.07 sub:imp:1s; +bruine bruiner ver 0.14 0.95 0.14 0.27 ind:pre:3s; +bruiner bruiner ver 0.14 0.95 0 0.07 inf; +bruines bruine nom f p 0.06 2.77 0 0.07 +bruire bruire ver 0.48 2.97 0.23 1.42 inf; +bruissa bruisser ver 0.15 3.45 0 0.07 ind:pas:3s; +bruissaient bruisser ver 0.15 3.45 0 0.74 ind:imp:3p; +bruissait bruisser ver 0.15 3.45 0 1.42 ind:imp:3s; +bruissant bruissant adj m s 0.02 4.66 0.01 1.35 +bruissante bruissant adj f s 0.02 4.66 0 2.09 +bruissantes bruissant adj f p 0.02 4.66 0.01 0.68 +bruissants bruissant adj m p 0.02 4.66 0 0.54 +bruisse bruisser ver 0.15 3.45 0.01 0.14 ind:pre:3s; +bruissement bruissement nom m s 0.77 8.24 0.75 6.96 +bruissements bruissement nom m p 0.77 8.24 0.02 1.28 +bruissent bruisser ver 0.15 3.45 0.14 0.47 ind:pre:3p; +bruissé bruisser ver m s 0.15 3.45 0 0.07 par:pas; +bruit bruit nom m s 94.13 281.49 78.94 223.18 +bruita bruiter ver 0.01 0.07 0.01 0 ind:pas:3s; +bruitage bruitage nom m s 0.23 0.54 0.04 0.47 +bruitages bruitage nom m p 0.23 0.54 0.2 0.07 +bruiter bruiter ver 0.01 0.07 0 0.07 inf; +bruiteur bruiteur nom m s 0.04 0.2 0.03 0.2 +bruiteuse bruiteur nom f s 0.04 0.2 0.01 0 +bruits bruit nom m p 94.13 281.49 15.18 58.31 +brumaille brumaille nom f s 0 0.07 0 0.07 +brumaire brumaire nom m s 0.1 0.27 0.1 0.27 +brumassait brumasser ver 0 0.07 0 0.07 ind:imp:3s; +brume brume nom f s 5.07 42.57 4.17 35.88 +brument brumer ver 0 0.47 0 0.47 ind:pre:3p; +brumes brume nom f p 5.07 42.57 0.91 6.69 +brumeuse brumeux adj f s 1.19 6.89 0.1 2.09 +brumeuses brumeux adj f p 1.19 6.89 0.05 0.61 +brumeux brumeux adj m 1.19 6.89 1.04 4.19 +brumisateur brumisateur nom m s 0.01 0 0.01 0 +brun brun adj m s 13.16 68.18 3.39 21.35 +brunch brunch nom m s 1.63 0.14 1.53 0 +brunches brunch nom m p 1.63 0.14 0.02 0.07 +brunchs brunch nom m p 1.63 0.14 0.08 0.07 +brune brun adj f s 13.16 68.18 6.51 25.34 +brunes brune nom f p 5.2 7.77 0.76 1.35 +brunet brunet adj m s 0.04 0.14 0 0.07 +brunette brunette nom f s 0.35 0.54 0.28 0.47 +brunettes brunette nom f p 0.35 0.54 0.07 0.07 +bruni bruni adj m s 0.01 1.96 0.01 0.81 +brunie brunir ver f s 0.19 3.24 0.01 0.54 par:pas; +brunies brunir ver f p 0.19 3.24 0 0.61 par:pas; +brunir brunir ver 0.19 3.24 0.16 0.74 inf; +brunirent brunir ver 0.19 3.24 0 0.07 ind:pas:3p; +brunis bruni adj m p 0.01 1.96 0 0.27 +brunissage brunissage nom m s 0.02 0 0.02 0 +brunissaient brunir ver 0.19 3.24 0 0.07 ind:imp:3p; +brunissent brunir ver 0.19 3.24 0.01 0.2 ind:pre:3p; +brunissoir brunissoir nom m s 0 0.07 0 0.07 +brunissures brunissure nom f p 0 0.07 0 0.07 +brunit brunir ver 0.19 3.24 0 0.34 ind:pre:3s;ind:pas:3s; +bruns brun adj m p 13.16 68.18 2.69 10.88 +brunâtre brunâtre adj s 0.04 5.2 0.03 3.51 +brunâtres brunâtre adj p 0.04 5.2 0.01 1.69 +brus bru nom f p 1.45 3.24 0.01 0.41 +brushing brushing nom m s 0.65 0.34 0.65 0.34 +brusqua brusquer ver 1.83 4.05 0 0.2 ind:pas:3s; +brusquai brusquer ver 1.83 4.05 0 0.07 ind:pas:1s; +brusquait brusquer ver 1.83 4.05 0 0.07 ind:imp:3s; +brusquant brusquer ver 1.83 4.05 0 0.07 par:pre; +brusque brusque adj s 2.69 35.34 1.77 26.76 +brusquement brusquement adv 4.88 111.42 4.88 111.42 +brusquent brusquer ver 1.83 4.05 0 0.07 ind:pre:3p; +brusquer brusquer ver 1.83 4.05 0.83 2.03 inf; +brusquerai brusquer ver 1.83 4.05 0.15 0 ind:fut:1s; +brusqueraient brusquer ver 1.83 4.05 0.01 0 cnd:pre:3p; +brusquerie brusquerie nom f s 0.09 4.32 0.09 4.26 +brusqueries brusquerie nom f p 0.09 4.32 0 0.07 +brusques brusque adj p 2.69 35.34 0.92 8.58 +brusquette brusquet adj f s 0 0.07 0 0.07 +brusquez brusquer ver 1.83 4.05 0.34 0.2 imp:pre:2p;ind:pre:2p; +brusquons brusquer ver 1.83 4.05 0.17 0 imp:pre:1p; +brusquât brusquer ver 1.83 4.05 0 0.07 sub:imp:3s; +brusqué brusquer ver m s 1.83 4.05 0.04 0.34 par:pas; +brusquée brusquer ver f s 1.83 4.05 0.14 0.14 par:pas; +brut brut adj m s 3.86 8.65 1.38 3.31 +brutal brutal adj m s 9.82 35.34 5.29 15.47 +brutale brutal adj f s 9.82 35.34 3.29 14.19 +brutalement brutalement adv 2.89 23.11 2.89 23.11 +brutales brutal adj f p 9.82 35.34 0.32 3.24 +brutalisaient brutaliser ver 1.41 1.15 0.02 0 ind:imp:3p; +brutalisait brutaliser ver 1.41 1.15 0.08 0 ind:imp:3s; +brutalisant brutaliser ver 1.41 1.15 0.01 0.07 par:pre; +brutalise brutaliser ver 1.41 1.15 0.12 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brutaliser brutaliser ver 1.41 1.15 0.48 0.41 inf; +brutaliserai brutaliser ver 1.41 1.15 0.01 0 ind:fut:1s; +brutaliserait brutaliser ver 1.41 1.15 0 0.07 cnd:pre:3s; +brutalisez brutaliser ver 1.41 1.15 0.07 0 imp:pre:2p;ind:pre:2p; +brutalisé brutaliser ver m s 1.41 1.15 0.49 0.2 par:pas; +brutalisée brutaliser ver f s 1.41 1.15 0.08 0.14 par:pas; +brutalisées brutaliser ver f p 1.41 1.15 0.02 0 par:pas; +brutalisés brutaliser ver m p 1.41 1.15 0.03 0.07 par:pas; +brutalité brutalité nom f s 3.11 11.15 2.87 9.93 +brutalités brutalité nom f p 3.11 11.15 0.24 1.22 +brutaux brutal adj m p 9.82 35.34 0.92 2.43 +brute brute nom f s 14.03 12.09 9.04 7.57 +brutes brute nom f p 14.03 12.09 5 4.53 +bruts brut adj m p 3.86 8.65 0.42 0.74 +bruxellois bruxellois adj m 0 0.54 0 0.47 +bruxelloise bruxellois adj f s 0 0.54 0 0.07 +bruyamment bruyamment adv 0.95 10.54 0.95 10.54 +bruyant bruyant adj m s 5.88 16.82 2.91 4.8 +bruyante bruyant adj f s 5.88 16.82 1.17 5.61 +bruyantes bruyant adj f p 5.88 16.82 0.45 1.82 +bruyants bruyant adj m p 5.88 16.82 1.37 4.59 +bruyère bruyère nom f s 0.58 6.01 0.53 4.12 +bruyères bruyère nom f p 0.58 6.01 0.05 1.89 +brèche brèche nom f s 3.83 9.59 3.54 7.7 +brèche_dent brèche_dent nom p 0 0.07 0 0.07 +brèches brèche nom f p 3.83 9.59 0.28 1.89 +brème brème nom f s 0.05 1.49 0.05 0.54 +brèmes brème nom f p 0.05 1.49 0 0.95 +brève bref adj f s 15.63 74.8 3.86 20.41 +brèves bref adj f p 15.63 74.8 0.52 8.99 +bréchet bréchet nom m s 0.11 0.54 0.11 0.54 +bréhaigne bréhaigne adj f s 0 0.27 0 0.14 +bréhaignes bréhaigne adj f p 0 0.27 0 0.14 +brésil brésil nom m s 0.1 0.2 0.1 0.07 +brésilien brésilien nom m s 2.88 2.43 1.61 0.61 +brésilienne brésilien adj f s 1.92 4.32 0.7 1.55 +brésiliennes brésilien adj f p 1.92 4.32 0.05 0.61 +brésiliens brésilien nom m p 2.88 2.43 0.89 1.08 +brésils brésil nom m p 0.1 0.2 0 0.14 +bréviaire bréviaire nom m s 0.21 1.69 0.21 1.69 +brêles brêler ver 0.02 0.07 0.02 0.07 ind:pre:2s; +brûla brûler ver 110.28 104.73 0.76 2.77 ind:pas:3s; +brûlage brûlage nom m s 0.1 0.2 0.1 0.2 +brûlai brûler ver 110.28 104.73 0.01 0.27 ind:pas:1s; +brûlaient brûler ver 110.28 104.73 0.97 7.03 ind:imp:3p; +brûlais brûler ver 110.28 104.73 0.5 1.28 ind:imp:1s;ind:imp:2s; +brûlait brûler ver 110.28 104.73 2.69 18.72 ind:imp:3s; +brûlant brûlant adj m s 10.48 36.28 4.48 15.68 +brûlante brûlant adj f s 10.48 36.28 3.75 10.74 +brûlantes brûlant adj f p 10.48 36.28 1.2 4.73 +brûlants brûlant adj m p 10.48 36.28 1.06 5.14 +brûlasse brûler ver 110.28 104.73 0 0.07 sub:imp:1s; +brûlassent brûler ver 110.28 104.73 0 0.07 sub:imp:3p; +brûle brûler ver 110.28 104.73 33.66 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +brûle_gueule brûle_gueule nom m s 0 0.41 0 0.41 +brûlent brûler ver 110.28 104.73 5.41 4.73 ind:pre:3p; +brûler brûler ver 110.28 104.73 23.14 21.15 inf;; +brûlera brûler ver 110.28 104.73 1.75 0.47 ind:fut:3s; +brûlerai brûler ver 110.28 104.73 1.17 0.41 ind:fut:1s; +brûleraient brûler ver 110.28 104.73 0.05 0.2 cnd:pre:3p; +brûlerais brûler ver 110.28 104.73 0.34 0.2 cnd:pre:1s;cnd:pre:2s; +brûlerait brûler ver 110.28 104.73 0.38 1.08 cnd:pre:3s; +brûleras brûler ver 110.28 104.73 0.37 0.07 ind:fut:2s; +brûlerez brûler ver 110.28 104.73 0.18 0 ind:fut:2p; +brûlerons brûler ver 110.28 104.73 0.23 0.2 ind:fut:1p; +brûleront brûler ver 110.28 104.73 1.51 0.41 ind:fut:3p; +brûles brûler ver 110.28 104.73 1.57 0.41 ind:pre:2s;sub:pre:2s; +brûleur brûleur nom m s 0.37 0.34 0.12 0.14 +brûleurs brûleur nom m p 0.37 0.34 0.23 0.2 +brûleuse brûleur nom f s 0.37 0.34 0.01 0 +brûlez brûler ver 110.28 104.73 4.89 0.61 imp:pre:2p;ind:pre:2p; +brûliez brûler ver 110.28 104.73 0.05 0 ind:imp:2p; +brûlions brûler ver 110.28 104.73 0.06 0.07 ind:imp:1p; +brûlis brûlis nom m 0.11 0.34 0.11 0.34 +brûloirs brûloir nom m p 0 0.07 0 0.07 +brûlons brûler ver 110.28 104.73 1.45 0.27 imp:pre:1p;ind:pre:1p; +brûlot brûlot nom m s 0.14 1.35 0.01 0.74 +brûlots brûlot nom m p 0.14 1.35 0.14 0.61 +brûlure brûlure nom f s 6.47 12.5 2.31 9.19 +brûlures brûlure nom f p 6.47 12.5 4.16 3.31 +brûlât brûler ver 110.28 104.73 0 0.41 sub:imp:3s; +brûlèrent brûler ver 110.28 104.73 0.11 0.54 ind:pas:3p; +brûlé brûler ver m s 110.28 104.73 20.41 11.42 par:pas;par:pas;par:pas; +brûlée brûler ver f s 110.28 104.73 3.57 3.51 par:pas; +brûlées brûler ver f p 110.28 104.73 1.11 1.96 par:pas; +brûlés brûler ver m p 110.28 104.73 2.33 3.18 par:pas; +bu boire ver m s 339.05 274.32 53.1 40.07 par:pas; +bua buer ver 0.09 0 0.09 0 ind:pas:3s; +buanderie buanderie nom f s 0.81 1.69 0.81 1.55 +buanderies buanderie nom f p 0.81 1.69 0 0.14 +bubble_gum bubble_gum nom m s 0.08 0.07 0.01 0 +bubble_gum bubble_gum nom m s 0.08 0.07 0.07 0.07 +bubon bubon nom m s 0.22 0.34 0.02 0.14 +bubonique bubonique adj s 0.25 0.07 0.25 0.07 +bubons bubon nom m p 0.22 0.34 0.2 0.2 +buccal buccal adj m s 0.54 0.34 0.16 0.14 +buccale buccal adj f s 0.54 0.34 0.33 0.07 +buccales buccal adj f p 0.54 0.34 0.04 0.07 +buccaux buccal adj m p 0.54 0.34 0.03 0.07 +buccin buccin nom m s 0 0.14 0 0.14 +buccinateur buccinateur nom m s 0 0.07 0 0.07 +bucco bucco nom m s 0.21 0.2 0.21 0.2 +bucco_génital bucco_génital adj m s 0.11 0 0.06 0 +bucco_génital bucco_génital adj f p 0.11 0 0.02 0 +bucco_génital bucco_génital adj m p 0.11 0 0.02 0 +buccogénitales buccogénital adj f p 0.01 0 0.01 0 +bucoliastes bucoliaste nom m p 0 0.07 0 0.07 +bucolique bucolique adj s 0.17 1.22 0.14 0.95 +bucoliques bucolique adj m p 0.17 1.22 0.03 0.27 +bucranes bucrane nom m p 0 0.14 0 0.14 +bucéphales bucéphale nom m p 0 0.07 0 0.07 +buddha buddha nom m s 0.4 0 0.4 0 +budget budget nom m s 11.21 6.62 10.54 5.34 +budgets budget nom m p 11.21 6.62 0.67 1.28 +budgétaire budgétaire adj s 1.08 0.27 0.55 0.07 +budgétairement budgétairement adv 0 0.07 0 0.07 +budgétaires budgétaire adj p 1.08 0.27 0.53 0.2 +budgétisation budgétisation nom f s 0.01 0 0.01 0 +budgétivores budgétivore nom p 0 0.07 0 0.07 +bue bu adj f s 3.04 4.86 0.44 2.36 +buen_retiro buen_retiro nom m 0 0.14 0 0.14 +bues bu adj f p 3.04 4.86 0.18 0.34 +buffalo buffalo nom s 0.05 0 0.05 0 +buffet buffet nom m s 6.93 21.35 6.63 20.14 +buffets buffet nom m p 6.93 21.35 0.3 1.22 +buffle buffle nom m s 1.79 4.19 1.16 1.96 +buffles buffle nom m p 1.79 4.19 0.62 2.23 +buffleterie buffleterie nom f s 0 0.74 0 0.14 +buffleteries buffleterie nom f p 0 0.74 0 0.61 +bufflonne bufflon nom f s 0 0.07 0 0.07 +bufo bufo nom m s 0.01 0 0.01 0 +bug bug nom m s 1.9 0 0.64 0 +buggy buggy nom m s 0.28 0 0.28 0 +bugle bugle nom m s 0.07 0.34 0.06 0.34 +bugler bugler ver 0.07 0 0.07 0 inf; +bugles bugle nom p 0.07 0.34 0.01 0 +bugne bugne nom f s 0.01 0.14 0.01 0.07 +bugnes bugne nom f p 0.01 0.14 0 0.07 +bugné bugner ver m s 0.01 0 0.01 0 par:pas; +bugs bug nom m p 1.9 0 1.27 0 +building building nom m s 2.01 3.24 1.67 1.42 +buildings building nom m p 2.01 3.24 0.34 1.82 +buires buire nom f p 0 0.07 0 0.07 +buis buis nom m 0.03 7.23 0.03 7.23 +buisson buisson nom m s 7.73 27.09 3.81 10 +buisson_ardent buisson_ardent nom m s 0.01 0 0.01 0 +buissonnant buissonner ver 0 0.2 0 0.07 par:pre; +buissonnants buissonnant adj m p 0 0.14 0 0.07 +buissonne buissonner ver 0 0.2 0 0.07 ind:pre:3s; +buissonner buissonner ver 0 0.2 0 0.07 inf; +buissonneuse buissonneux adj f s 0 0.41 0 0.07 +buissonneuses buissonneux adj f p 0 0.41 0 0.07 +buissonneux buissonneux adj m p 0 0.41 0 0.27 +buissonnière buissonnier adj f s 0.79 1.55 0.79 1.22 +buissonnières buissonnier adj f p 0.79 1.55 0 0.34 +buissons buisson nom m p 7.73 27.09 3.92 17.09 +bulbe bulbe nom m s 0.47 1.82 0.31 1.01 +bulbes bulbe nom m p 0.47 1.82 0.16 0.81 +bulbeuse bulbeux adj f s 0.16 0.07 0.14 0 +bulbeux bulbeux adj m s 0.16 0.07 0.02 0.07 +bulbul bulbul nom m s 0 0.47 0 0.47 +bulgare bulgare adj s 1.38 0.95 1.14 0.74 +bulgares bulgare nom p 0.79 1.08 0.28 0.61 +bulgaro bulgaro adv 0 0.07 0 0.07 +bulge bulge nom m s 0.02 0 0.02 0 +bull bull nom m s 1.04 0.61 0.61 0.41 +bull_dog bull_dog nom m s 0.01 0.68 0.01 0.61 +bull_dog bull_dog nom m p 0.01 0.68 0 0.07 +bull_finch bull_finch nom m s 0 0.14 0 0.14 +bull_terrier bull_terrier nom m s 0.02 0 0.02 0 +bulla buller ver 0.35 0.2 0 0.14 ind:pas:3s; +bullaire bullaire nom m s 0.01 0 0.01 0 +bulldog bulldog nom m s 0.49 0.2 0.3 0.14 +bulldogs bulldog nom m p 0.49 0.2 0.19 0.07 +bulldozer bulldozer nom m s 2.33 2.64 1.26 1.89 +bulldozers bulldozer nom m p 2.33 2.64 1.07 0.74 +bulle bulle nom f s 8.11 16.55 2.99 6.62 +buller buller ver 0.35 0.2 0.12 0.07 inf; +bulles bulle nom f p 8.11 16.55 5.12 9.93 +bulletin bulletin nom m s 6.35 7.5 4.99 5.41 +bulletins bulletin nom m p 6.35 7.5 1.36 2.09 +bulleux bulleux adj m s 0 0.14 0 0.14 +bullez buller ver 0.35 0.2 0.01 0 imp:pre:2p; +bulls bull nom m p 1.04 0.61 0.43 0.2 +bulot bulot nom m s 0.01 0.07 0.01 0 +bulots bulot nom m p 0.01 0.07 0 0.07 +bumper bumper nom m 0.14 0.14 0.14 0.14 +buna buna nom m s 0.01 0 0.01 0 +bungalow bungalow nom m s 0.03 12.84 0.01 12.43 +bungalows bungalow nom m p 0.03 12.84 0.02 0.41 +bunker bunker nom m s 4.51 0.81 3.89 0.68 +bunkers bunker nom m p 4.51 0.81 0.62 0.14 +bunraku bunraku nom m s 0 0.07 0 0.07 +bunsen bunsen nom m 0 0.07 0 0.07 +buprestes bupreste nom m p 0 0.07 0 0.07 +buraliste buraliste nom s 0.57 0.95 0.57 0.88 +buralistes buraliste nom p 0.57 0.95 0 0.07 +bure bure nom s 0.57 3.18 0.57 3.18 +bureau bureau nom m s 167.13 150.07 156.68 130.07 +bureaucrate bureaucrate nom s 1.95 1.28 0.8 0.47 +bureaucrates bureaucrate nom p 1.95 1.28 1.15 0.81 +bureaucratie bureaucratie nom f s 1.17 0.81 1.17 0.74 +bureaucraties bureaucratie nom f p 1.17 0.81 0 0.07 +bureaucratique bureaucratique adj s 0.7 0.47 0.61 0.41 +bureaucratiquement bureaucratiquement adv 0 0.07 0 0.07 +bureaucratiques bureaucratique adj p 0.7 0.47 0.09 0.07 +bureaucratisées bureaucratiser ver f p 0 0.07 0 0.07 par:pas; +bureautique bureautique adj f s 0.01 0 0.01 0 +bureautique bureautique nom f s 0.01 0 0.01 0 +bureaux bureau nom m p 167.13 150.07 10.45 20 +burent boire ver 339.05 274.32 0.02 3.99 ind:pas:3p; +burette burette nom f s 1.03 1.62 0.61 0.88 +burettes burette nom f p 1.03 1.62 0.42 0.74 +burg burg nom m s 0.05 0.2 0.05 0.2 +burger burger nom m s 2.31 0.07 1.33 0 +burgers burger nom m p 2.31 0.07 0.97 0.07 +burgondes burgonde adj m p 0.1 0.07 0.1 0.07 +burgraviat burgraviat nom m s 0 0.07 0 0.07 +burin burin nom m s 0.59 2.23 0.57 1.96 +burina buriner ver 0.11 0.61 0.1 0.07 ind:pas:3s; +buriner buriner ver 0.11 0.61 0.01 0.07 inf; +burins burin nom m p 0.59 2.23 0.02 0.27 +buriné buriné adj m s 0.02 0.68 0.01 0.47 +burinée buriné adj f s 0.02 0.68 0.01 0.07 +burinées buriné adj f p 0.02 0.68 0 0.07 +burinés buriner ver m p 0.11 0.61 0 0.14 par:pas; +burkinabé burkinabé adj s 0.01 0 0.01 0 +burlesque burlesque nom m s 0.34 0.74 0.33 0.68 +burlesques burlesque adj p 0.07 2.36 0.01 0.81 +burlingue burlingue nom m s 0 1.15 0 0.88 +burlingues burlingue nom m p 0 1.15 0 0.27 +burne burne nom f s 1.42 1.49 0.09 0.07 +burnes burne nom f p 1.42 1.49 1.33 1.42 +burnous burnous nom m 0.13 1.76 0.13 1.76 +burons buron nom m p 0 0.07 0 0.07 +bursite bursite nom f s 0.09 0 0.09 0 +burundais burundais nom m 0.01 0 0.01 0 +bus bus nom m 50.63 10.54 50.63 10.54 +busard busard nom m s 0.06 0.74 0.02 0.47 +busards busard nom m p 0.06 0.74 0.04 0.27 +buse buse nom f s 1.28 2.84 0.82 2.09 +buses buse nom f p 1.28 2.84 0.46 0.74 +bush bush nom m s 0.24 0 0.24 0 +bushi bushi nom m s 0.01 0.2 0.01 0.2 +bushido bushido nom m s 0.01 0 0.01 0 +bushman bushman nom m s 0 0.07 0 0.07 +business business nom m 15.62 2.23 15.62 2.23 +businessman businessman nom m s 1.31 0.34 0.84 0.27 +businessmen businessman nom m p 1.31 0.34 0.47 0.07 +busqué busqué adj m s 0 1.76 0 1.76 +busse boire ver 339.05 274.32 0 0.07 sub:imp:1s; +buste buste nom m s 2.44 24.46 2.02 21.62 +bustes buste nom m p 2.44 24.46 0.42 2.84 +bustier bustier nom m s 0.2 0.34 0.2 0.34 +but but nom m s 78.43 60.41 73.8 51.89 +buta buter ver 31.86 21.62 0.02 2.09 ind:pas:3s; +butadiène butadiène nom m s 0.03 0 0.03 0 +butagaz butagaz nom m 0.14 0.47 0.14 0.47 +butai buter ver 31.86 21.62 0 0.27 ind:pas:1s; +butaient buter ver 31.86 21.62 0 0.41 ind:imp:3p; +butais buter ver 31.86 21.62 0.02 0.14 ind:imp:1s; +butait buter ver 31.86 21.62 0.2 2.3 ind:imp:3s; +butane butane nom m s 0.13 1.08 0.13 1.08 +butant buter ver 31.86 21.62 0.06 1.35 par:pre; +bute buter ver 31.86 21.62 8.21 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +butent buter ver 31.86 21.62 0.44 0.74 ind:pre:3p; +buter buter ver 31.86 21.62 12.89 6.01 inf; +butera buter ver 31.86 21.62 0.16 0.14 ind:fut:3s; +buterai buter ver 31.86 21.62 0.54 0 ind:fut:1s; +buterais buter ver 31.86 21.62 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +buterait buter ver 31.86 21.62 0.03 0.07 cnd:pre:3s; +buteras buter ver 31.86 21.62 0.14 0 ind:fut:2s; +buterez buter ver 31.86 21.62 0.02 0 ind:fut:2p; +buterions buter ver 31.86 21.62 0.01 0 cnd:pre:1p; +buteront buter ver 31.86 21.62 0.07 0 ind:fut:3p; +butes buter ver 31.86 21.62 0.5 0.27 ind:pre:2s; +buteur buteur nom m s 0.39 0 0.39 0 +butez buter ver 31.86 21.62 0.73 0.07 imp:pre:2p;ind:pre:2p; +butin butin nom m s 6.35 5.61 6.27 5.2 +butinait butiner ver 0.49 1.69 0 0.2 ind:imp:3s; +butinant butiner ver 0.49 1.69 0.14 0.2 par:pre; +butine butiner ver 0.49 1.69 0.17 0.34 ind:pre:1s;ind:pre:3s; +butinent butiner ver 0.49 1.69 0.01 0.34 ind:pre:3p; +butiner butiner ver 0.49 1.69 0.16 0.41 inf; +butines butiner ver 0.49 1.69 0 0.07 ind:pre:2s; +butineur butineur adj m s 0.03 0.07 0.01 0 +butineuse butineur adj f s 0.03 0.07 0.01 0 +butineuses butineur adj f p 0.03 0.07 0.01 0.07 +butins butin nom m p 6.35 5.61 0.08 0.41 +butiné butiner ver m s 0.49 1.69 0.01 0 par:pas; +butinées butiner ver f p 0.49 1.69 0 0.07 par:pas; +butinés butiner ver m p 0.49 1.69 0 0.07 par:pas; +butoir butoir nom m s 0.33 0.81 0.31 0.54 +butoirs butoir nom m p 0.33 0.81 0.02 0.27 +butons buter ver 31.86 21.62 0.14 0.07 imp:pre:1p;ind:pre:1p; +butor butor nom m s 0.28 1.08 0.27 0.88 +butors butor nom m p 0.28 1.08 0.01 0.2 +buts but nom m p 78.43 60.41 4.63 8.51 +butte butte nom f s 1.48 7.03 1.17 5.34 +butter butter ver 1.17 1.01 0.69 0.14 inf; +buttes butte nom f p 1.48 7.03 0.32 1.69 +butteur butteur nom m s 0.11 0 0.11 0 +buttoir buttoir nom m s 0.01 0.07 0.01 0.07 +buttèrent butter ver 1.17 1.01 0 0.07 ind:pas:3p; +butté butter ver m s 1.17 1.01 0.16 0 par:pas; +buttés butter ver m p 1.17 1.01 0 0.74 par:pas; +butèrent buter ver 31.86 21.62 0 0.41 ind:pas:3p; +buté buter ver m s 31.86 21.62 6.71 3.24 par:pas; +butée buter ver f s 31.86 21.62 0.49 0.34 par:pas; +butées buter ver f p 31.86 21.62 0.01 0 par:pas; +butés buter ver m p 31.86 21.62 0.34 0.34 par:pas; +buvable buvable adj s 0.21 0.68 0.21 0.61 +buvables buvable adj p 0.21 0.68 0 0.07 +buvaient boire ver 339.05 274.32 0.78 7.09 ind:imp:3p; +buvais boire ver 339.05 274.32 4.1 3.11 ind:imp:1s;ind:imp:2s; +buvait boire ver 339.05 274.32 7.06 23.38 ind:imp:3s; +buvant boire ver 339.05 274.32 2.58 11.28 par:pre; +buvard buvard nom m s 0.12 4.32 0.1 3.58 +buvarde buvarder ver 0 0.2 0 0.07 ind:pre:3s; +buvards buvard nom m p 0.12 4.32 0.02 0.74 +buvardé buvarder ver m s 0 0.2 0 0.07 par:pas; +buvardés buvarder ver m p 0 0.2 0 0.07 par:pas; +buvette buvette nom f s 0.76 3.04 0.75 2.91 +buvettes buvette nom f p 0.76 3.04 0.01 0.14 +buveur buveur nom m s 2.22 4.66 1.67 1.49 +buveurs buveur nom m p 2.22 4.66 0.49 2.91 +buveuse buveur nom f s 2.22 4.66 0.06 0.27 +buvez boire ver 339.05 274.32 25.24 3.72 imp:pre:2p;ind:pre:2p; +buviez boire ver 339.05 274.32 0.72 0.14 ind:imp:2p; +buvions boire ver 339.05 274.32 0.53 2.36 ind:imp:1p; +buvons boire ver 339.05 274.32 13.69 3.04 imp:pre:1p;ind:pre:1p; +buée buée nom f s 0.32 13.51 0.32 13.11 +buées buée nom f p 0.32 13.51 0 0.41 +by by nom m s 12.49 0.68 12.49 0.68 +by_night by_night adj m s 0.25 0.41 0.25 0.41 +by_pass by_pass nom m 0.03 0 0.03 0 +bye bye ono 23.11 2.03 23.11 2.03 +bye_bye bye_bye ono 2.36 0.34 2.36 0.34 +byronien byronien adj m s 0 0.07 0 0.07 +bytes byte nom m p 0.09 0 0.09 0 +bytures byture nom m p 0 0.07 0 0.07 +byzantin byzantin adj m s 0.13 3.38 0.05 0.81 +byzantine byzantin adj f s 0.13 3.38 0.05 1.55 +byzantines byzantin adj f p 0.13 3.38 0.03 0.68 +byzantinisant byzantinisant adj m s 0 0.07 0 0.07 +byzantinisme byzantinisme nom m s 0 0.34 0 0.34 +byzantins byzantin nom m p 0.04 0.34 0.04 0.34 +bâbord bâbord nom m s 1.97 0.95 1.97 0.95 +bâche bâche nom f s 2.4 13.38 2.3 10.07 +bâcher bâcher ver 0.04 0.47 0.01 0 inf; +bâches bâche nom f p 2.4 13.38 0.1 3.31 +bâché bâché adj m s 0.02 0.81 0.01 0.34 +bâchée bâcher ver f s 0.04 0.47 0 0.14 par:pas; +bâchées bâché adj f p 0.02 0.81 0 0.14 +bâchés bâché adj m p 0.02 0.81 0.01 0.27 +bâcla bâcler ver 1.39 3.99 0 0.14 ind:pas:3s; +bâclai bâcler ver 1.39 3.99 0 0.07 ind:pas:1s; +bâclaient bâcler ver 1.39 3.99 0 0.07 ind:imp:3p; +bâclais bâcler ver 1.39 3.99 0.01 0.07 ind:imp:1s; +bâclait bâcler ver 1.39 3.99 0.01 0.2 ind:imp:3s; +bâclant bâcler ver 1.39 3.99 0.01 0.27 par:pre; +bâcle bâcler ver 1.39 3.99 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâcler bâcler ver 1.39 3.99 0.12 0.68 inf; +bâclera bâcler ver 1.39 3.99 0 0.07 ind:fut:3s; +bâclerait bâcler ver 1.39 3.99 0 0.07 cnd:pre:3s; +bâcles bâcler ver 1.39 3.99 0.02 0.07 ind:pre:2s; +bâcleurs bâcleur nom m p 0 0.07 0 0.07 +bâclez bâcler ver 1.39 3.99 0.01 0.07 ind:pre:2p; +bâclons bâcler ver 1.39 3.99 0 0.07 ind:pre:1p; +bâclé bâcler ver m s 1.39 3.99 0.82 1.01 par:pas; +bâclée bâcler ver f s 1.39 3.99 0.2 0.41 par:pas; +bâclées bâcler ver f p 1.39 3.99 0.01 0.07 par:pas; +bâclés bâcler ver m p 1.39 3.99 0.01 0.27 par:pas; +bâfra bâfrer ver 0.72 1.96 0 0.14 ind:pas:3s; +bâfraient bâfrer ver 0.72 1.96 0 0.07 ind:imp:3p; +bâfrais bâfrer ver 0.72 1.96 0 0.07 ind:imp:1s; +bâfrait bâfrer ver 0.72 1.96 0.01 0.2 ind:imp:3s; +bâfrant bâfrer ver 0.72 1.96 0 0.2 par:pre; +bâfre bâfrer ver 0.72 1.96 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâfrements bâfrement nom m p 0 0.07 0 0.07 +bâfrer bâfrer ver 0.72 1.96 0.26 0.54 inf; +bâfres bâfrer ver 0.72 1.96 0.17 0 ind:pre:2s; +bâfreur bâfreur nom m s 0.07 0.07 0.05 0.07 +bâfreurs bâfreur nom m p 0.07 0.07 0.02 0 +bâfrez bâfrer ver 0.72 1.96 0.01 0.07 imp:pre:2p;ind:pre:2p; +bâfrèrent bâfrer ver 0.72 1.96 0 0.07 ind:pas:3p; +bâfré bâfrer ver m s 0.72 1.96 0.11 0.34 par:pas; +bâilla bâiller ver 1.87 18.51 0.01 3.85 ind:pas:3s; +bâillai bâiller ver 1.87 18.51 0 0.07 ind:pas:1s; +bâillaient bâiller ver 1.87 18.51 0 0.74 ind:imp:3p; +bâillais bâiller ver 1.87 18.51 0.01 0.34 ind:imp:1s; +bâillait bâiller ver 1.87 18.51 0.05 2.7 ind:imp:3s; +bâillant bâiller ver 1.87 18.51 0.1 3.58 par:pre; +bâillante bâillant adj f s 0 0.81 0 0.34 +bâillantes bâillant adj f p 0 0.81 0 0.2 +bâille bâiller ver 1.87 18.51 0.62 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâillement bâillement nom m s 0.53 4.19 0.5 3.11 +bâillements bâillement nom m p 0.53 4.19 0.03 1.08 +bâillent bâiller ver 1.87 18.51 0.29 0.74 ind:pre:3p; +bâiller bâiller ver 1.87 18.51 0.36 2.77 inf; +bâillera bâiller ver 1.87 18.51 0.01 0.07 ind:fut:3s; +bâillerez bâiller ver 1.87 18.51 0.14 0 ind:fut:2p; +bâilles bâiller ver 1.87 18.51 0.12 0.07 ind:pre:2s; +bâillez bâiller ver 1.87 18.51 0.14 0.07 imp:pre:2p;ind:pre:2p; +bâillon bâillon nom m s 0.64 1.96 0.63 1.89 +bâillonna bâillonner ver 2.61 2.7 0 0.2 ind:pas:3s; +bâillonnait bâillonner ver 2.61 2.7 0.01 0.54 ind:imp:3s; +bâillonnant bâillonner ver 2.61 2.7 0 0.14 par:pre; +bâillonne bâillonner ver 2.61 2.7 0.6 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâillonnent bâillonner ver 2.61 2.7 0 0.07 ind:pre:3p; +bâillonner bâillonner ver 2.61 2.7 0.36 0.47 inf; +bâillonnera bâillonner ver 2.61 2.7 0.01 0 ind:fut:3s; +bâillonnerait bâillonner ver 2.61 2.7 0.02 0 cnd:pre:3s; +bâillonnez bâillonner ver 2.61 2.7 0.2 0 imp:pre:2p;ind:pre:2p; +bâillonnons bâillonner ver 2.61 2.7 0.01 0 imp:pre:1p; +bâillonné bâillonner ver m s 2.61 2.7 0.4 0.88 par:pas; +bâillonnée bâillonner ver f s 2.61 2.7 0.83 0.14 par:pas; +bâillonnés bâillonner ver m p 2.61 2.7 0.16 0.07 par:pas; +bâillons bâillon nom m p 0.64 1.96 0.01 0.07 +bâillâmes bâiller ver 1.87 18.51 0 0.07 ind:pas:1p; +bâillèrent bâiller ver 1.87 18.51 0 0.07 ind:pas:3p; +bâillé bâiller ver m s 1.87 18.51 0.02 0.74 par:pas; +bât bât nom m s 0.12 2.57 0.12 2.36 +bâtard bâtard nom m s 13.66 11.89 9.89 9.12 +bâtarde bâtard nom f s 13.66 11.89 0.32 0.34 +bâtardes bâtard adj f p 2.69 5.74 0.01 0.2 +bâtardise bâtardise nom f s 0.01 3.04 0.01 2.97 +bâtardises bâtardise nom f p 0.01 3.04 0 0.07 +bâtards bâtard nom m p 13.66 11.89 3.45 2.23 +bâter bâter ver 0.16 0.34 0.14 0.07 inf; +bâti bâtir ver m s 18.65 24.53 5.47 5.54 par:pas; +bâtie bâtir ver f s 18.65 24.53 1.58 4.32 par:pas; +bâties bâtir ver f p 18.65 24.53 0.3 1.89 par:pas; +bâtiment bâtiment nom m s 27.58 36.82 22.73 19.93 +bâtiments bâtiment nom m p 27.58 36.82 4.85 16.89 +bâtir bâtir ver 18.65 24.53 5.62 8.24 inf; +bâtira bâtir ver 18.65 24.53 0.18 0.07 ind:fut:3s; +bâtirai bâtir ver 18.65 24.53 1.38 0.07 ind:fut:1s; +bâtirais bâtir ver 18.65 24.53 0.18 0 cnd:pre:1s;cnd:pre:2s; +bâtirait bâtir ver 18.65 24.53 0.16 0.14 cnd:pre:3s; +bâtirent bâtir ver 18.65 24.53 0.03 0.14 ind:pas:3p; +bâtirions bâtir ver 18.65 24.53 0.02 0 cnd:pre:1p; +bâtirons bâtir ver 18.65 24.53 0.28 0 ind:fut:1p; +bâtiront bâtir ver 18.65 24.53 0.01 0 ind:fut:3p; +bâtis bâtir ver m p 18.65 24.53 0.86 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +bâtissaient bâtir ver 18.65 24.53 0.27 0.2 ind:imp:3p; +bâtissais bâtir ver 18.65 24.53 0.04 0.27 ind:imp:1s; +bâtissait bâtir ver 18.65 24.53 0.17 0.95 ind:imp:3s; +bâtissant bâtir ver 18.65 24.53 0.02 0.61 par:pre; +bâtisse bâtisse nom f s 0.93 9.59 0.78 7.43 +bâtissent bâtir ver 18.65 24.53 0.24 0.14 ind:pre:3p; +bâtisses bâtisse nom f p 0.93 9.59 0.16 2.16 +bâtisseur bâtisseur nom m s 1 1.01 0.22 0.2 +bâtisseurs bâtisseur nom m p 1 1.01 0.79 0.74 +bâtisseuse bâtisseur nom f s 1 1.01 0 0.07 +bâtissez bâtir ver 18.65 24.53 0.21 0 imp:pre:2p;ind:pre:2p; +bâtissions bâtir ver 18.65 24.53 0.03 0 ind:imp:1p; +bâtissons bâtir ver 18.65 24.53 0.42 0.07 imp:pre:1p;ind:pre:1p; +bâtit bâtir ver 18.65 24.53 1.16 0.81 ind:pre:3s;ind:pas:3s; +bâtière bâtier nom f s 0 0.07 0 0.07 +bâton bâton nom m s 18.11 30.27 13.4 21.22 +bâtonnant bâtonner ver 0.14 0.14 0.14 0 par:pre; +bâtonner bâtonner ver 0.14 0.14 0.01 0 inf; +bâtonnet bâtonnet nom m s 0.83 2.84 0.38 1.28 +bâtonnets bâtonnet nom m p 0.83 2.84 0.46 1.55 +bâtonnier bâtonnier nom m s 0.16 1.35 0.16 1.35 +bâtonnée bâtonner ver f s 0.14 0.14 0 0.14 par:pas; +bâtons bâton nom m p 18.11 30.27 4.71 9.05 +bâts bât nom m p 0.12 2.57 0 0.2 +bâté bâté adj m s 0.21 0.47 0.19 0.47 +bâtés bâté adj m p 0.21 0.47 0.03 0 +bègue bègue nom s 0.24 0.54 0.2 0.41 +bègues bègue nom p 0.24 0.54 0.04 0.14 +bé bé ono 0.85 1.15 0.85 1.15 +béa béer ver 0.23 3.65 0 0.2 ind:pas:3s; +béaient béer ver 0.23 3.65 0 0.61 ind:imp:3p; +béait béer ver 0.23 3.65 0.1 1.01 ind:imp:3s; +béance béance nom f s 0.16 0.61 0.16 0.61 +béant béant adj m s 1.21 10.34 0.34 2.77 +béante béant adj f s 1.21 10.34 0.44 4.26 +béantes béant adj f p 1.21 10.34 0.21 2.3 +béants béant adj m p 1.21 10.34 0.22 1.01 +béarnais béarnais adj m p 0.13 0 0.01 0 +béarnaise béarnais adj f s 0.13 0 0.12 0 +béat béat adj m s 0.26 4.73 0.21 1.89 +béate béat adj f s 0.26 4.73 0.05 2.36 +béatement béatement adv 0.01 1.42 0.01 1.42 +béates béat adj f p 0.26 4.73 0 0.14 +béatification béatification nom f s 0.05 0.27 0.05 0.2 +béatifications béatification nom f p 0.05 0.27 0 0.07 +béatifier béatifier ver 0.11 0.54 0 0.2 inf; +béatifique béatifique adj m s 0 0.14 0 0.14 +béatifié béatifier ver m s 0.11 0.54 0.11 0.14 par:pas; +béatifiée béatifier ver f s 0.11 0.54 0 0.07 par:pas; +béatifiés béatifier ver m p 0.11 0.54 0 0.14 par:pas; +béatitude béatitude nom f s 0.58 5.74 0.58 5.47 +béatitudes béatitude nom f p 0.58 5.74 0 0.27 +béats béat adj m p 0.26 4.73 0 0.34 +bébé bébé nom m s 191.63 45.2 173.82 36.22 +bébés bébé nom m p 191.63 45.2 17.81 8.99 +bébé_éprouvette bébé_éprouvette nom m p 0.01 0 0.01 0 +bébête bébête adj s 0.32 2.91 0.25 2.77 +bébêtes bébête adj p 0.32 2.91 0.07 0.14 +bécabunga bécabunga nom m s 0 0.07 0 0.07 +bécane bécane nom f s 1.77 4.8 1.46 3.92 +bécanes bécane nom f p 1.77 4.8 0.32 0.88 +bécard bécard nom m s 0 0.07 0 0.07 +bécarre bécarre nom m s 0.02 0.07 0.02 0.07 +bécasse bécasse nom f s 1.56 1.08 1.4 0.54 +bécasses bécasse nom f p 1.56 1.08 0.16 0.54 +bécassine bécassine nom f s 0.01 0.2 0.01 0.14 +bécassines bécassine nom f p 0.01 0.2 0 0.07 +béchamel béchamel nom f s 0.37 0.41 0.37 0.41 +bécher bécher nom m s 0.01 0 0.01 0 +bécot bécot nom m s 0.42 0.47 0.41 0.2 +bécotait bécoter ver 1.05 0.88 0.05 0.07 ind:imp:3s; +bécotant bécoter ver 1.05 0.88 0 0.14 par:pre; +bécote bécoter ver 1.05 0.88 0.21 0.14 ind:pre:1s;ind:pre:3s;sub:pre:3s; +bécotent bécoter ver 1.05 0.88 0.27 0.07 ind:pre:3p; +bécoter bécoter ver 1.05 0.88 0.28 0.41 inf; +bécoteur bécoteur nom m s 0.02 0 0.02 0 +bécots bécot nom m p 0.42 0.47 0.01 0.27 +bécoté bécoter ver m s 1.05 0.88 0.13 0 par:pas; +bécotée bécoter ver f s 1.05 0.88 0 0.07 par:pas; +bécotés bécoter ver m p 1.05 0.88 0.11 0 par:pas; +bédane bédane nom m s 0 0.2 0 0.2 +bédouin bédouin adj m s 0.26 0.47 0.24 0 +bédouine bédouin nom f s 0.23 0.54 0.14 0 +bédouines bédouin nom f p 0.23 0.54 0.02 0 +bédouins bédouin nom m p 0.23 0.54 0.04 0.2 +bédé bédé nom f s 0.29 0 0.09 0 +bédéphiles bédéphile nom p 0.01 0 0.01 0 +bédés bédé nom f p 0.29 0 0.2 0 +bée bé adj f s 0.96 5.34 0.96 5.14 +béent béer ver 0.23 3.65 0.1 0.14 ind:pre:3p; +béer béer ver 0.23 3.65 0 0.27 inf; +bées bé adj f p 0.96 5.34 0 0.2 +bégaie bégayer ver 2.61 7.5 0.59 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bégaiement bégaiement nom m s 0.54 2.23 0.54 1.49 +bégaiements bégaiement nom m p 0.54 2.23 0 0.74 +bégaient bégayer ver 2.61 7.5 0 0.07 ind:pre:3p; +bégaiera bégayer ver 2.61 7.5 0.01 0 ind:fut:3s; +bégaies bégayer ver 2.61 7.5 0.23 0.07 ind:pre:2s; +bégaya bégayer ver 2.61 7.5 0.01 1.15 ind:pas:3s; +bégayai bégayer ver 2.61 7.5 0 0.14 ind:pas:1s; +bégayaient bégayer ver 2.61 7.5 0 0.07 ind:imp:3p; +bégayais bégayer ver 2.61 7.5 0.08 0.27 ind:imp:1s;ind:imp:2s; +bégayait bégayer ver 2.61 7.5 0.18 1.76 ind:imp:3s; +bégayant bégayer ver 2.61 7.5 0 0.95 par:pre; +bégayante bégayant adj f s 0.01 0.68 0.01 0.14 +bégayantes bégayant adj f p 0.01 0.68 0 0.07 +bégayants bégayant adj m p 0.01 0.68 0 0.07 +bégaye bégayer ver 2.61 7.5 0.41 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bégayer bégayer ver 2.61 7.5 0.64 1.01 inf; +bégayes bégayer ver 2.61 7.5 0.05 0 ind:pre:2s; +bégayeur bégayeur adj m s 0 0.14 0 0.14 +bégayez bégayer ver 2.61 7.5 0.15 0.07 ind:pre:2p; +bégayé bégayer ver m s 2.61 7.5 0.27 0.27 par:pas; +bégayées bégayer ver f p 2.61 7.5 0 0.07 par:pas; +bégonias bégonia nom m p 0.05 1.15 0.05 1.15 +bégueule bégueule nom f s 0.07 0.2 0.06 0.07 +bégueulerie bégueulerie nom f s 0 0.07 0 0.07 +bégueules bégueule nom f p 0.07 0.2 0.01 0.14 +béguin béguin nom m s 3.11 2.57 3.09 2.16 +béguinage béguinage nom m s 0 0.07 0 0.07 +béguine béguine nom f s 0 0.14 0 0.14 +béguineuse béguineuse nom f s 0 0.14 0 0.14 +béguins béguin nom m p 3.11 2.57 0.02 0.41 +bégum bégum nom f s 0 0.27 0 0.27 +béhème béhème nom f s 0.2 0 0.2 0 +béhémoth béhémoth nom m s 0 0.47 0 0.47 +béjaune béjaune nom m s 0 0.2 0 0.2 +bélier bélier nom m s 1.51 3.99 1.32 3.11 +béliers bélier nom m p 1.51 3.99 0.19 0.88 +bélinogramme bélinogramme nom m s 0 0.07 0 0.07 +bélouga bélouga nom m s 0.02 0 0.02 0 +béluga béluga nom m s 0.02 0 0.02 0 +bélître bélître nom m s 0.01 0.07 0.01 0.07 +bémol bémol nom m s 0.88 1.01 0.88 0.81 +bémolisé bémoliser ver m s 0 0.07 0 0.07 par:pas; +bémols bémol nom m p 0.88 1.01 0 0.2 +bénard bénard nom m s 0 1.82 0 1.69 +bénarde bénard adj f s 0 0.34 0 0.14 +bénards bénard nom m p 0 1.82 0 0.14 +bénef bénef nom m s 0.71 0.68 0.43 0.61 +bénefs bénef nom m p 0.71 0.68 0.28 0.07 +béni bénir ver m s 48.77 18.92 10.9 4.26 par:pas; +bénie bénir ver f s 48.77 18.92 5.51 2.16 par:pas; +bénies bénir ver f p 48.77 18.92 0.72 0.47 par:pas; +bénigne bénin adj f s 1.56 3.45 0.88 1.69 +bénignement bénignement adv 0 0.07 0 0.07 +bénignes bénin adj f p 1.56 3.45 0.1 0.81 +bénignité bénignité nom f s 0.01 0.2 0.01 0.2 +bénin bénin adj m s 1.56 3.45 0.56 0.74 +béninois béninois adj m s 0 0.14 0 0.14 +bénins bénin adj m p 1.56 3.45 0.03 0.2 +bénir bénir ver 48.77 18.92 2.36 3.38 inf; +bénira bénir ver 48.77 18.92 0.66 0.2 ind:fut:3s; +bénirai bénir ver 48.77 18.92 0.05 0 ind:fut:1s; +bénirais bénir ver 48.77 18.92 0.01 0.14 cnd:pre:1s; +bénirait bénir ver 48.77 18.92 0 0.07 cnd:pre:3s; +béniras bénir ver 48.77 18.92 0.01 0 ind:fut:2s; +bénirez bénir ver 48.77 18.92 0.03 0 ind:fut:2p; +bénirons bénir ver 48.77 18.92 0 0.07 ind:fut:1p; +béniront bénir ver 48.77 18.92 0.04 0 ind:fut:3p; +bénis bénir ver m p 48.77 18.92 6.64 2.64 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bénissaient bénir ver 48.77 18.92 0 0.27 ind:imp:3p; +bénissais bénir ver 48.77 18.92 0.01 0.2 ind:imp:1s; +bénissait bénir ver 48.77 18.92 0.03 1.28 ind:imp:3s; +bénissant bénir ver 48.77 18.92 0.02 0.47 par:pre; +bénisse bénir ver 48.77 18.92 18.82 0.95 sub:pre:1s;sub:pre:3s; +bénissent bénir ver 48.77 18.92 0.47 0.2 ind:pre:3p; +bénisseur bénisseur adj m s 0 0.61 0 0.34 +bénisseurs bénisseur adj m p 0 0.61 0 0.14 +bénisseuse bénisseur adj f s 0 0.61 0 0.14 +bénissez bénir ver 48.77 18.92 1.62 0.2 imp:pre:2p;ind:pre:2p; +bénissions bénir ver 48.77 18.92 0 0.14 ind:imp:1p; +bénissons bénir ver 48.77 18.92 0.17 0 imp:pre:1p;ind:pre:1p; +bénit bénit adj m s 2.81 4.26 0.72 1.15 +bénite bénit adj f s 2.81 4.26 2.08 2.64 +bénites bénit adj f p 2.81 4.26 0.01 0.27 +bénitier bénitier nom m s 0.8 1.96 0.72 1.76 +bénitiers bénitier nom m p 0.8 1.96 0.07 0.2 +bénits bénit adj m p 2.81 4.26 0 0.2 +bénouze bénouze nom m s 0 0.2 0 0.2 +bénédicité bénédicité nom m s 0.43 0.34 0.41 0.27 +bénédicités bénédicité nom m p 0.43 0.34 0.02 0.07 +bénédictin bénédictin adj m s 0.04 0.95 0.01 0.34 +bénédictine bénédictin nom f s 0.19 0.74 0.03 0.2 +bénédictines bénédictin nom f p 0.19 0.74 0.14 0.2 +bénédictins bénédictin nom m p 0.19 0.74 0.01 0.14 +bénédiction bénédiction nom f s 11.15 8.18 10.61 7.43 +bénédictions bénédiction nom f p 11.15 8.18 0.54 0.74 +bénéfice bénéfice nom m s 8.97 11.42 4.31 8.04 +bénéfices bénéfice nom m p 8.97 11.42 4.66 3.38 +bénéficia bénéficier ver 3.85 9.66 0 0.27 ind:pas:3s; +bénéficiaient bénéficier ver 3.85 9.66 0.01 0.68 ind:imp:3p; +bénéficiaire bénéficiaire nom s 0.92 1.55 0.77 0.74 +bénéficiaires bénéficiaire nom p 0.92 1.55 0.15 0.81 +bénéficiais bénéficier ver 3.85 9.66 0 0.34 ind:imp:1s; +bénéficiait bénéficier ver 3.85 9.66 0.02 1.28 ind:imp:3s; +bénéficiant bénéficier ver 3.85 9.66 0.17 0.47 par:pre; +bénéficie bénéficier ver 3.85 9.66 1.05 0.88 ind:pre:1s;ind:pre:3s; +bénéficient bénéficier ver 3.85 9.66 0.16 0.47 ind:pre:3p; +bénéficier bénéficier ver 3.85 9.66 1.43 3.24 inf; +bénéficiera bénéficier ver 3.85 9.66 0.26 0.14 ind:fut:3s; +bénéficierai bénéficier ver 3.85 9.66 0.04 0 ind:fut:1s; +bénéficierais bénéficier ver 3.85 9.66 0.02 0 cnd:pre:1s;cnd:pre:2s; +bénéficierait bénéficier ver 3.85 9.66 0.05 0.14 cnd:pre:3s; +bénéficierez bénéficier ver 3.85 9.66 0.02 0.07 ind:fut:2p; +bénéficierons bénéficier ver 3.85 9.66 0.01 0 ind:fut:1p; +bénéficies bénéficier ver 3.85 9.66 0.08 0 ind:pre:2s; +bénéficiez bénéficier ver 3.85 9.66 0.19 0 imp:pre:2p;ind:pre:2p; +bénéficions bénéficier ver 3.85 9.66 0.04 0.07 ind:pre:1p; +bénéficiât bénéficier ver 3.85 9.66 0 0.07 sub:imp:3s; +bénéficièrent bénéficier ver 3.85 9.66 0 0.07 ind:pas:3p; +bénéficié bénéficier ver m s 3.85 9.66 0.3 1.49 par:pas; +bénéfique bénéfique adj s 1.61 3.24 1.43 2.84 +bénéfiques bénéfique adj p 1.61 3.24 0.18 0.41 +bénévolat bénévolat nom m s 0.98 0.07 0.98 0.07 +bénévole bénévole adj s 1.52 2.7 1.23 1.69 +bénévolement bénévolement adv 0.23 0.54 0.23 0.54 +bénévolence bénévolence nom f s 0 0.07 0 0.07 +bénévoles bénévole nom p 1.33 0.27 0.61 0.14 +béotien béotien nom m s 0.23 0.47 0.2 0.07 +béotienne béotien adj f s 0.06 0 0.02 0 +béotiens béotien adj m p 0.06 0 0.03 0 +béquant béquer ver 0 0.07 0 0.07 par:pre; +béquillant béquiller ver 0 0.14 0 0.07 par:pre; +béquillard béquillard adj m s 0 0.07 0 0.07 +béquille béquille nom f s 2.7 6.15 1.05 2.91 +béquillent béquiller ver 0 0.14 0 0.07 ind:pre:3p; +béquilles béquille nom f p 2.7 6.15 1.65 3.24 +béquilleux béquilleux adj m s 0 0.07 0 0.07 +béret béret nom m s 1.5 15.07 1.19 13.31 +bérets béret nom m p 1.5 15.07 0.31 1.76 +béribéri béribéri nom m s 0.18 0 0.18 0 +bérullienne bérullien nom f s 0 0.07 0 0.07 +béryl béryl nom m s 0.02 0.27 0.02 0.2 +béryllium béryllium nom m s 0.2 0 0.2 0 +béryls béryl nom m p 0.02 0.27 0 0.07 +bérézina bérézina nom f s 0 0.41 0 0.41 +bésef bésef adv 0.01 0.14 0.01 0.14 +bésiclard bésiclard nom m s 0 0.07 0 0.07 +bésicles bésicles nom f p 0.01 0.2 0.01 0.2 +bésigue bésigue nom m s 0.06 0 0.06 0 +bétail bétail nom m s 9.71 5.41 9.69 5.41 +bétaillère bétaillère nom f s 0.16 0.2 0.16 0.14 +bétaillères bétaillère nom f p 0.16 0.2 0 0.07 +bétails bétail nom m p 9.71 5.41 0.02 0 +bétel bétel nom m s 2.94 0.14 2.94 0.14 +bétoine bétoine nom f s 0.01 0 0.01 0 +béton béton nom m s 6.41 15.68 6.41 15.2 +bétonnage bétonnage nom m s 0 0.14 0 0.14 +bétonnaient bétonner ver 0.22 0.14 0.01 0 ind:imp:3p; +bétonner bétonner ver 0.22 0.14 0.16 0 inf; +bétonneurs bétonneur nom m p 0.32 0.54 0.01 0.07 +bétonneuse bétonneur nom f s 0.32 0.54 0.16 0.2 +bétonneuses bétonneur nom f p 0.32 0.54 0.14 0.27 +bétonnière bétonnière nom f s 0.23 0.07 0.22 0 +bétonnières bétonnière nom f p 0.23 0.07 0.01 0.07 +bétonné bétonner ver m s 0.22 0.14 0.05 0 par:pas; +bétonnée bétonné adj f s 0.02 0.61 0 0.14 +bétonnées bétonné adj f p 0.02 0.61 0 0.14 +bétonnés bétonné adj m p 0.02 0.61 0 0.14 +bétons béton nom m p 6.41 15.68 0 0.47 +bévue bévue nom f s 0.36 1.22 0.28 0.68 +bévues bévue nom f p 0.36 1.22 0.08 0.54 +bézef bézef adv 0.01 0.14 0.01 0.14 +bézoard bézoard nom m s 0.01 0 0.01 0 +béèrent béer ver 0.23 3.65 0 0.14 ind:pas:3p; +béé béer ver m s 0.23 3.65 0 0.07 par:pas; +béée béer ver f s 0.23 3.65 0 0.07 par:pas; +bêchaient bêcher ver 0.55 2.7 0 0.14 ind:imp:3p; +bêchait bêcher ver 0.55 2.7 0.01 0.41 ind:imp:3s; +bêchant bêcher ver 0.55 2.7 0.14 0.14 par:pre; +bêche bêche nom f s 0.46 3.72 0.42 3.51 +bêchent bêcher ver 0.55 2.7 0 0.14 ind:pre:3p; +bêcher bêcher ver 0.55 2.7 0.36 1.15 inf; +bêches bêche nom f p 0.46 3.72 0.04 0.2 +bêcheur bêcheur adj m s 0.52 0.95 0.22 0.41 +bêcheurs bêcheur nom m p 0.4 1.22 0 0.2 +bêcheuse bêcheur adj f s 0.52 0.95 0.28 0.34 +bêcheuses bêcheur nom f p 0.4 1.22 0.04 0.27 +bêché bêcher ver m s 0.55 2.7 0 0.47 par:pas; +bêlaient bêler ver 0.23 1.55 0 0.2 ind:imp:3p; +bêlait bêler ver 0.23 1.55 0 0.2 ind:imp:3s; +bêlant bêler ver 0.23 1.55 0.03 0.34 par:pre; +bêlantes bêlant adj f p 0.16 0.47 0 0.27 +bêlants bêlant adj m p 0.16 0.47 0.14 0.07 +bêle bêler ver 0.23 1.55 0.17 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bêlement bêlement nom m s 0.12 1.22 0.12 0.54 +bêlements bêlement nom m p 0.12 1.22 0 0.68 +bêlent bêler ver 0.23 1.55 0 0.14 ind:pre:3p; +bêler bêler ver 0.23 1.55 0.02 0.27 inf; +bêlé bêler ver m s 0.23 1.55 0.01 0.27 par:pas; +bêta bêta nom m s 2.36 0.81 2.14 0.74 +bêtas bêta nom m p 2.36 0.81 0.01 0.07 +bêtasse bêta nom f s 2.36 0.81 0.21 0 +bêtasses bêta adj f p 2.13 0.68 0 0.07 +bêtatron bêtatron nom m s 0.01 0 0.01 0 +bête bête adj s 56.55 41.89 51.33 33.31 +bêtement bêtement adv 4.56 11.28 4.56 11.28 +bêtes bête nom f p 67.67 117.36 23.82 54.19 +bêtifia bêtifier ver 0.02 0.81 0 0.07 ind:pas:3s; +bêtifiaient bêtifier ver 0.02 0.81 0 0.14 ind:imp:3p; +bêtifiais bêtifier ver 0.02 0.81 0 0.07 ind:imp:1s; +bêtifiait bêtifier ver 0.02 0.81 0 0.2 ind:imp:3s; +bêtifiant bêtifiant adj m s 0 0.2 0 0.2 +bêtifie bêtifier ver 0.02 0.81 0 0.14 ind:pre:1s;ind:pre:3s; +bêtifier bêtifier ver 0.02 0.81 0.02 0.14 inf; +bêtifié bêtifier ver m s 0.02 0.81 0 0.07 par:pas; +bêtise bêtise nom f s 39.31 28.38 14.29 14.73 +bêtises bêtise nom f p 39.31 28.38 25.03 13.65 +bêtisier bêtisier nom m s 0.04 0 0.04 0 +bôme bôme nom f s 0.02 0.47 0.02 0.47 +bûchais bûcher ver 0.3 0.54 0.02 0 ind:imp:1s; +bûchant bûcher ver 0.3 0.54 0.01 0.07 par:pre; +bûche bûche nom f s 2.91 13.18 2.09 5.14 +bûchent bûcher ver 0.3 0.54 0.01 0 ind:pre:3p; +bûcher bûcher nom m s 3.82 9.59 3.43 7.09 +bûcheron bûcheron nom m s 3.33 8.24 2.13 4.12 +bûcheronne bûcheronner ver 0 0.2 0 0.07 ind:pre:3s; +bûcheronner bûcheronner ver 0 0.2 0 0.14 inf; +bûcherons bûcheron nom m p 3.33 8.24 1.2 4.12 +bûchers bûcher nom m p 3.82 9.59 0.4 2.5 +bûches bûche nom f p 2.91 13.18 0.82 8.04 +bûchette bûchette nom f s 0.01 0.61 0 0.14 +bûchettes bûchette nom f p 0.01 0.61 0.01 0.47 +bûcheur bûcheur nom m s 0.2 0.61 0.04 0.2 +bûcheurs bûcheur nom m p 0.2 0.61 0.05 0.2 +bûcheuse bûcheur nom f s 0.2 0.61 0.11 0.14 +bûcheuses bûcheur nom f p 0.2 0.61 0 0.07 +bûchez bûcher ver 0.3 0.54 0.02 0 imp:pre:2p;ind:pre:2p; +bûché bûcher ver m s 0.3 0.54 0.07 0.07 par:pas; +bûmes boire ver 339.05 274.32 0.03 1.89 ind:pas:1p; +bût boire ver 339.05 274.32 0.01 0 sub:imp:3s; +c c pro_dem 46.69 4.59 46.69 4.59 +c_est_à_dire c_est_à_dire adv_sup 0 51.96 0 51.96 +cab cab nom m s 0.42 0.2 0.4 0.2 +cabale cabale nom f s 0.73 0.88 0.73 0.41 +cabales cabale nom f p 0.73 0.88 0 0.47 +cabaliste cabaliste nom s 0 0.34 0 0.2 +cabalistes cabaliste nom p 0 0.34 0 0.14 +cabalistique cabalistique adj s 0.05 0.68 0.03 0.14 +cabalistiques cabalistique adj p 0.05 0.68 0.02 0.54 +caballero caballero nom f s 0.11 0.2 0.11 0.2 +caban caban nom m s 0.14 1.49 0.14 1.28 +cabana cabaner ver 0.02 0 0.02 0 ind:pas:3s; +cabane cabane nom f s 15.36 29.46 14.34 25.68 +cabanes cabane nom f p 15.36 29.46 1.02 3.78 +cabanettes cabanette nom f p 0 0.07 0 0.07 +cabanon cabanon nom m s 1.27 2.09 1.26 1.69 +cabanons cabanon nom m p 1.27 2.09 0.01 0.41 +cabans caban nom m p 0.14 1.49 0 0.2 +cabaret cabaret nom m s 4.82 6.69 4.44 4.93 +cabaretier cabaretier nom m s 0.25 0.74 0.01 0.54 +cabaretiers cabaretier nom m p 0.25 0.74 0.23 0.07 +cabaretière cabaretier nom f s 0.25 0.74 0 0.14 +cabarets cabaret nom m p 4.82 6.69 0.38 1.76 +cabas cabas nom m 0.14 5.68 0.14 5.68 +caberlot caberlot nom m s 0.04 0.07 0.04 0.07 +cabernet cabernet nom m s 0.16 0.07 0.16 0.07 +cabestan cabestan nom m s 0.23 0.34 0.23 0.34 +cabiais cabiai nom m p 0.01 0 0.01 0 +cabillaud cabillaud nom m s 0.25 0.27 0.25 0.27 +cabillots cabillot nom m p 0 0.07 0 0.07 +cabine cabine nom f s 20 35.07 17.65 29.86 +cabiner cabiner ver 0 0.07 0 0.07 inf; +cabines cabine nom f p 20 35.07 2.35 5.2 +cabinet cabinet nom m s 21.97 36.49 19.45 29.8 +cabinets cabinet nom m p 21.97 36.49 2.51 6.69 +cabochard cabochard adj m s 0.21 0.47 0.18 0.27 +cabocharde cabochard adj f s 0.21 0.47 0.01 0.07 +cabochards cabochard adj m p 0.21 0.47 0.02 0.14 +caboche caboche nom f s 1.13 1.49 1.12 1.22 +caboches caboche nom f p 1.13 1.49 0.01 0.27 +cabochon cabochon nom m s 0 1.35 0 0.68 +cabochons cabochon nom m p 0 1.35 0 0.68 +cabossa cabosser ver 0.94 4.32 0 0.07 ind:pas:3s; +cabossages cabossage nom m p 0 0.07 0 0.07 +cabossait cabosser ver 0.94 4.32 0 0.07 ind:imp:3s; +cabosse cabosser ver 0.94 4.32 0.01 0.07 imp:pre:2s;ind:pre:3s; +cabosser cabosser ver 0.94 4.32 0.06 0.27 inf; +cabosses cabosse nom f p 0 0.14 0 0.07 +cabossé cabosser ver m s 0.94 4.32 0.4 1.62 par:pas; +cabossée cabosser ver f s 0.94 4.32 0.37 1.35 par:pas; +cabossées cabosser ver f p 0.94 4.32 0.05 0.54 par:pas; +cabossés cabosser ver m p 0.94 4.32 0.05 0.34 par:pas; +cabot cabot nom m s 1.52 1.49 1.45 0.68 +cabotage cabotage nom m s 0 0.2 0 0.2 +cabotaient caboter ver 0.02 0.41 0 0.07 ind:imp:3p; +cabotait caboter ver 0.02 0.41 0 0.14 ind:imp:3s; +cabote caboter ver 0.02 0.41 0.01 0.07 ind:pre:3s; +caboter caboter ver 0.02 0.41 0.01 0.07 inf; +caboteur caboteur nom m s 0.02 1.01 0.02 1.01 +cabotin cabotin nom m s 0.2 0.81 0.18 0.47 +cabotinage cabotinage nom m s 0.05 0.47 0.05 0.47 +cabotine cabotin nom f s 0.2 0.81 0.01 0.14 +cabotines cabotiner ver 0.01 0 0.01 0 ind:pre:2s; +cabotins cabotin nom m p 0.2 0.81 0.01 0.2 +cabots cabot nom m p 1.52 1.49 0.07 0.81 +caboté caboter ver m s 0.02 0.41 0 0.07 par:pas; +caboulot caboulot nom m s 0 0.68 0 0.47 +caboulots caboulot nom m p 0 0.68 0 0.2 +cabra cabrer ver 0.34 6.55 0 0.95 ind:pas:3s; +cabrade cabrade nom f s 0 0.07 0 0.07 +cabrage cabrage nom m s 0.04 0 0.04 0 +cabraient cabrer ver 0.34 6.55 0 0.34 ind:imp:3p; +cabrais cabrer ver 0.34 6.55 0 0.07 ind:imp:1s; +cabrait cabrer ver 0.34 6.55 0 0.61 ind:imp:3s; +cabrant cabrer ver 0.34 6.55 0 0.27 par:pre; +cabre cabrer ver 0.34 6.55 0.2 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cabrent cabrer ver 0.34 6.55 0 0.14 ind:pre:3p; +cabrer cabrer ver 0.34 6.55 0.01 1.08 inf; +cabrera cabrer ver 0.34 6.55 0.02 0 ind:fut:3s; +cabrerait cabrer ver 0.34 6.55 0 0.07 cnd:pre:3s; +cabrette cabrette nom f s 0 0.2 0 0.2 +cabri cabri nom m s 0.08 1.08 0.07 0.41 +cabriolaient cabrioler ver 0.02 0.47 0 0.14 ind:imp:3p; +cabriolait cabrioler ver 0.02 0.47 0.01 0.07 ind:imp:3s; +cabriolant cabrioler ver 0.02 0.47 0 0.07 par:pre; +cabriole cabriole nom f s 0.45 1.15 0.31 0.2 +cabrioler cabrioler ver 0.02 0.47 0 0.07 inf; +cabrioles cabriole nom f p 0.45 1.15 0.14 0.95 +cabriolet cabriolet nom m s 0.65 3.38 0.53 2.91 +cabriolets cabriolet nom m p 0.65 3.38 0.12 0.47 +cabris cabri nom m p 0.08 1.08 0.01 0.68 +cabrèrent cabrer ver 0.34 6.55 0 0.07 ind:pas:3p; +cabré cabrer ver m s 0.34 6.55 0.1 0.47 par:pas; +cabrée cabrer ver f s 0.34 6.55 0.01 0.34 par:pas; +cabrées cabrer ver f p 0.34 6.55 0 0.27 par:pas; +cabrés cabrer ver m p 0.34 6.55 0 0.41 par:pas; +cabs cab nom m p 0.42 0.2 0.02 0 +cabus cabus adj m s 0 0.07 0 0.07 +cabèche cabèche nom f s 0 0.54 0 0.47 +cabèches cabèche nom f p 0 0.54 0 0.07 +cabécous cabécou nom m p 0 0.07 0 0.07 +caca caca adj 3.16 1.76 3.16 1.76 +cacahouète cacahouète nom f s 1 0 0.39 0 +cacahouètes cacahouète nom f p 1 0 0.62 0 +cacahuète cacahuète nom f s 7.29 3.58 1.71 0.74 +cacahuètes cacahuète nom f p 7.29 3.58 5.59 2.84 +cacao cacao nom m s 1.3 1.42 1.29 1.42 +cacaos cacao nom m p 1.3 1.42 0.01 0 +cacaotier cacaotier nom m s 0.01 0 0.01 0 +cacaotés cacaoté adj m p 0 0.07 0 0.07 +cacaoyer cacaoyer nom m s 0.01 0 0.01 0 +cacarda cacarder ver 0.14 0.2 0 0.07 ind:pas:3s; +cacardait cacarder ver 0.14 0.2 0 0.07 ind:imp:3s; +cacarde cacarder ver 0.14 0.2 0.14 0.07 ind:pre:1s;ind:pre:3s; +cacas caca nom m p 3.09 2.23 0.04 0.47 +cacatois cacatois nom m 0.03 0.07 0.03 0.07 +cacatoès cacatoès nom m 0.12 0.34 0.12 0.34 +cacha cacher ver 204.13 181.89 1.13 6.82 ind:pas:3s; +cachai cacher ver 204.13 181.89 0.16 1.01 ind:pas:1s; +cachaient cacher ver 204.13 181.89 0.78 9.66 ind:imp:3p; +cachais cacher ver 204.13 181.89 3.61 2.03 ind:imp:1s;ind:imp:2s; +cachait cacher ver 204.13 181.89 5.84 21.89 ind:imp:3s; +cachalot cachalot nom m s 0.72 0.95 0.7 0.88 +cachalots cachalot nom m p 0.72 0.95 0.01 0.07 +cachant cacher ver 204.13 181.89 1.84 8.11 par:pre; +cache cacher ver 204.13 181.89 44.82 20.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cache_brassière cache_brassière nom m 0 0.07 0 0.07 +cache_cache cache_cache nom m 3.42 2.7 3.42 2.7 +cache_coeur cache_coeur nom s 0 0.14 0 0.14 +cache_col cache_col nom m 0.01 1.35 0.01 1.35 +cache_corset cache_corset nom m 0 0.14 0 0.14 +cache_nez cache_nez nom m 0.15 2.09 0.15 2.09 +cache_pot cache_pot nom m s 0.16 0.81 0.16 0.41 +cache_pot cache_pot nom m p 0.16 0.81 0 0.41 +cache_poussière cache_poussière nom m 0.01 0.2 0.01 0.2 +cache_sexe cache_sexe nom m 0.03 0.27 0.03 0.27 +cache_tampon cache_tampon nom m 0 0.2 0 0.2 +cachectique cachectique adj f s 0 0.2 0 0.14 +cachectiques cachectique adj m p 0 0.2 0 0.07 +cachemire cachemire nom m s 1.38 2.84 1.35 2.64 +cachemires cachemire nom m p 1.38 2.84 0.02 0.2 +cachemiris cachemiri nom m p 0.01 0 0.01 0 +cachent cacher ver 204.13 181.89 7.5 5 ind:pre:3p; +cacher cacher ver 204.13 181.89 61.06 48.45 inf;;inf;;inf;; +cachera cacher ver 204.13 181.89 0.83 0.27 ind:fut:3s; +cacherai cacher ver 204.13 181.89 1.35 1.01 ind:fut:1s; +cacheraient cacher ver 204.13 181.89 0.07 0 cnd:pre:3p; +cacherais cacher ver 204.13 181.89 0.81 0.27 cnd:pre:1s;cnd:pre:2s; +cacherait cacher ver 204.13 181.89 1.02 0.61 cnd:pre:3s; +cacheras cacher ver 204.13 181.89 0.08 0.2 ind:fut:2s; +cacherez cacher ver 204.13 181.89 0.3 0.07 ind:fut:2p; +cacheriez cacher ver 204.13 181.89 0.07 0 cnd:pre:2p; +cacherons cacher ver 204.13 181.89 0.12 0.14 ind:fut:1p; +cacheront cacher ver 204.13 181.89 0.08 0.07 ind:fut:3p; +caches cacher ver 204.13 181.89 12.67 1.89 ind:pre:2s;sub:pre:2s; +cachet cachet nom m s 16.46 10.2 6.97 4.93 +cacheta cacheter ver 0.96 2.64 0 0.27 ind:pas:3s; +cachetais cacheter ver 0.96 2.64 0 0.07 ind:imp:1s; +cachetait cacheter ver 0.96 2.64 0 0.2 ind:imp:3s; +cacheter cacheter ver 0.96 2.64 0.13 0.34 inf; +cacheton cacheton nom m s 0.59 0.2 0.03 0.14 +cachetonnais cachetonner ver 0.02 0.14 0 0.07 ind:imp:1s; +cachetonnait cachetonner ver 0.02 0.14 0 0.07 ind:imp:3s; +cachetonne cachetonner ver 0.02 0.14 0.02 0 ind:pre:3s; +cachetons cacheton nom m p 0.59 0.2 0.56 0.07 +cachets cachet nom m p 16.46 10.2 9.49 5.27 +cachette cachette nom f s 11.81 16.96 11.21 14.59 +cachettes cachette nom f p 11.81 16.96 0.59 2.36 +cacheté cacheter ver m s 0.96 2.64 0.14 0.74 par:pas; +cachetée cacheter ver f s 0.96 2.64 0.4 0.41 par:pas; +cachetées cacheter ver f p 0.96 2.64 0.01 0.2 par:pas; +cachetés cacheter ver m p 0.96 2.64 0 0.2 par:pas; +cachexie cachexie nom f s 0.01 0.07 0.01 0.07 +cachez cacher ver 204.13 181.89 10.65 1.35 imp:pre:2p;ind:pre:2p; +cachiez cacher ver 204.13 181.89 0.88 0 ind:imp:2p; +cachions cacher ver 204.13 181.89 0.15 0.74 ind:imp:1p; +cachons cacher ver 204.13 181.89 1.75 0.81 imp:pre:1p;ind:pre:1p; +cachot cachot nom m s 3.67 7.09 3.01 5.95 +cachots cachot nom m p 3.67 7.09 0.66 1.15 +cachotterie cachotterie nom f s 0.93 0.54 0.01 0.2 +cachotteries cachotterie nom f p 0.93 0.54 0.92 0.34 +cachottier cachottier nom m s 0.71 0.47 0.57 0.34 +cachottiers cachottier adj m p 0.28 0.41 0.17 0 +cachottière cachottier nom f s 0.71 0.47 0.13 0.14 +cachottières cachottier adj f p 0.28 0.41 0 0.07 +cachou cachou nom m s 0.23 0.68 0.17 0.27 +cachous cachou nom m p 0.23 0.68 0.05 0.41 +cachât cacher ver 204.13 181.89 0 0.61 sub:imp:3s; +cachère cachère adj 0.01 0 0.01 0 +cachèrent cacher ver 204.13 181.89 0.09 0.61 ind:pas:3p; +caché cacher ver m s 204.13 181.89 32.13 25.81 par:pas; +cachée cacher ver f s 204.13 181.89 8.17 11.89 par:pas; +cachées cacher ver f p 204.13 181.89 1.92 4.8 par:pas; +cachés cacher ver m p 204.13 181.89 4.29 7.7 par:pas; +cacique cacique nom m s 0 0.2 0 0.14 +caciques cacique nom m p 0 0.2 0 0.07 +cacochyme cacochyme adj s 0 0.74 0 0.47 +cacochymes cacochyme adj m p 0 0.74 0 0.27 +cacodylate cacodylate nom m s 0 0.07 0 0.07 +cacographes cacographe nom p 0 0.07 0 0.07 +cacophonie cacophonie nom f s 0.05 1.35 0.04 1.22 +cacophonies cacophonie nom f p 0.05 1.35 0.01 0.14 +cacophonique cacophonique adj s 0 0.34 0 0.27 +cacophoniques cacophonique adj m p 0 0.34 0 0.07 +cactus cactus nom m 2.86 2.3 2.86 2.3 +cactées cactée nom f p 0.02 0.47 0.02 0.47 +cadastral cadastral adj m s 0 1.62 0 1.15 +cadastrale cadastral adj f s 0 1.62 0 0.07 +cadastraux cadastral adj m p 0 1.62 0 0.41 +cadastre cadastre nom m s 0.56 3.58 0.54 3.45 +cadastres cadastre nom m p 0.56 3.58 0.02 0.14 +cadastré cadastrer ver m s 0.1 0.14 0.1 0 par:pas; +cadastrée cadastrer ver f s 0.1 0.14 0 0.14 par:pas; +cadavre cadavre nom m s 47.75 54.05 27.93 32.3 +cadavres cadavre nom m p 47.75 54.05 19.82 21.76 +cadavéreuse cadavéreux adj f s 0.04 0.2 0 0.14 +cadavéreux cadavéreux adj m 0.04 0.2 0.04 0.07 +cadavérique cadavérique adj s 0.34 0.95 0.34 0.68 +cadavériques cadavérique adj p 0.34 0.95 0 0.27 +cadavérise cadavériser ver 0 0.14 0 0.07 ind:pre:3s; +cadavérisés cadavériser ver m p 0 0.14 0 0.07 par:pas; +caddie caddie nom m s 1.5 2.43 1.35 1.28 +caddies caddie nom m p 1.5 2.43 0.15 1.15 +caddy caddy nom m s 0.81 1.49 0.81 1.49 +cade cade nom m s 0.14 0 0.14 0 +cadeau cadeau nom m s 125.79 50.81 98.09 32.77 +cadeaux cadeau nom m p 125.79 50.81 27.7 18.04 +cadenas cadenas nom m 2.1 2.43 2.1 2.43 +cadenassaient cadenasser ver 0.21 1.89 0 0.07 ind:imp:3p; +cadenassait cadenasser ver 0.21 1.89 0 0.14 ind:imp:3s; +cadenassant cadenasser ver 0.21 1.89 0 0.07 par:pre; +cadenasse cadenasser ver 0.21 1.89 0.01 0.07 ind:pre:3s; +cadenasser cadenasser ver 0.21 1.89 0.02 0.2 inf; +cadenassez cadenasser ver 0.21 1.89 0.04 0 imp:pre:2p; +cadenassé cadenasser ver m s 0.21 1.89 0.09 0.41 par:pas; +cadenassée cadenasser ver f s 0.21 1.89 0.06 0.68 par:pas; +cadenassées cadenasser ver f p 0.21 1.89 0 0.27 par:pas; +cadence cadence nom f s 2.42 13.78 2.12 12.64 +cadencer cadencer ver 0.38 1.22 0 0.14 inf; +cadences cadence nom f p 2.42 13.78 0.3 1.15 +cadencé cadencer ver m s 0.38 1.22 0.1 0.74 par:pas; +cadencée cadencer ver f s 0.38 1.22 0.01 0.14 par:pas; +cadencées cadencé adj f p 0.05 1.96 0 0.07 +cadencés cadencer ver m p 0.38 1.22 0.14 0.07 par:pas; +cadet cadet nom m s 7.39 8.85 3.71 4.32 +cadets cadet nom m p 7.39 8.85 2.44 1.69 +cadette cadet adj f s 4.64 3.18 1.52 1.28 +cadettes cadet nom f p 7.39 8.85 0.01 0.14 +cadi cadi nom m s 0.1 2.3 0.1 2.3 +cadmium cadmium nom m s 0.13 0.07 0.13 0.07 +cadmié cadmier ver m s 0 0.2 0 0.2 par:pas; +cadogan cadogan nom m s 0.2 0 0.2 0 +cador cador nom m s 0.45 1.96 0.41 1.42 +cadors cador nom m p 0.45 1.96 0.03 0.54 +cadrage cadrage nom m s 0.59 0.47 0.58 0.34 +cadrages cadrage nom m p 0.59 0.47 0.01 0.14 +cadrais cadrer ver 1.55 2.43 0 0.07 ind:imp:2s; +cadrait cadrer ver 1.55 2.43 0.02 0.68 ind:imp:3s; +cadran cadran nom m s 1.58 7.7 1.42 6.55 +cadrans cadran nom m p 1.58 7.7 0.16 1.15 +cadrant cadrer ver 1.55 2.43 0.03 0 par:pre; +cadratin cadratin nom m s 0 0.14 0 0.07 +cadratins cadratin nom m p 0 0.14 0 0.07 +cadre cadre nom m s 13.53 42.84 10.98 29.8 +cadrent cadrer ver 1.55 2.43 0.03 0.14 ind:pre:3p; +cadrer cadrer ver 1.55 2.43 0.64 0.34 inf; +cadres cadre nom m p 13.53 42.84 2.56 13.04 +cadreur cadreur nom m s 0.14 0.14 0.11 0.07 +cadreurs cadreur nom m p 0.14 0.14 0.04 0.07 +cadrez cadrer ver 1.55 2.43 0.03 0 imp:pre:2p; +cadré cadrer ver m s 1.55 2.43 0.1 0.47 par:pas; +cadrée cadrer ver f s 1.55 2.43 0.01 0.27 par:pas; +caduc caduc adj m s 0.24 1.01 0.14 0.74 +caducité caducité nom f s 0 0.07 0 0.07 +caducs caduc adj m p 0.24 1.01 0.1 0.27 +caducée caducée nom m s 0.16 0.2 0.16 0.14 +caducées caducée nom m p 0.16 0.2 0 0.07 +caduque caduque adj f s 0.23 0.95 0.19 0.47 +caduques caduque adj f p 0.23 0.95 0.04 0.47 +cadènes cadène nom f p 0 1.01 0 1.01 +caecum caecum nom m s 0.01 0 0.01 0 +caesium caesium nom m s 0.11 0 0.11 0 +caf caf adj s 0.14 0 0.14 0 +cafard cafard nom m s 9.87 9.8 5.77 7.84 +cafardage cafardage nom m s 0.11 0 0.11 0 +cafarde cafarder ver 0.34 0.34 0.13 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cafarder cafarder ver 0.34 0.34 0.21 0.27 inf; +cafarderait cafarder ver 0.34 0.34 0 0.07 cnd:pre:3s; +cafardeur cafardeur nom m s 0.29 0 0.16 0 +cafardeuse cafardeur nom f s 0.29 0 0.14 0 +cafardeux cafardeux adj m 0.07 0.34 0.07 0.34 +cafards cafard nom m p 9.87 9.8 4.1 1.96 +cafetais cafeter ver 0.27 0.07 0 0.07 ind:imp:1s; +cafetan cafetan nom m s 0.29 0.07 0.28 0 +cafetans cafetan nom m p 0.29 0.07 0.01 0.07 +cafeter cafeter ver 0.27 0.07 0.25 0 inf; +cafeteria cafeteria nom f s 0.11 1.35 0.11 1.28 +cafeterias cafeteria nom f p 0.11 1.35 0 0.07 +cafeteur cafeteur nom m s 0.01 0 0.01 0 +cafetier cafetier nom m s 0.35 2.97 0.34 2.77 +cafetiers cafetier nom m p 0.35 2.97 0.01 0.2 +cafetière cafetière nom f s 2.07 5.88 1.92 5.54 +cafetières cafetière nom f p 2.07 5.88 0.15 0.34 +cafeton cafeton nom m s 0 0.14 0 0.14 +cafeté cafeter ver m s 0.27 0.07 0.02 0 par:pas; +cafouilla cafouiller ver 0.43 0.41 0 0.14 ind:pas:3s; +cafouillage cafouillage nom m s 0.33 0.54 0.3 0.41 +cafouillages cafouillage nom m p 0.33 0.54 0.02 0.14 +cafouillait cafouiller ver 0.43 0.41 0.03 0.07 ind:imp:3s; +cafouillant cafouiller ver 0.43 0.41 0 0.07 par:pre; +cafouille cafouiller ver 0.43 0.41 0.19 0 ind:pre:1s;ind:pre:3s; +cafouillent cafouiller ver 0.43 0.41 0.01 0.07 ind:pre:3p; +cafouiller cafouiller ver 0.43 0.41 0.02 0.07 inf; +cafouilles cafouiller ver 0.43 0.41 0.01 0 ind:pre:2s; +cafouilleuse cafouilleux adj f s 0 0.27 0 0.14 +cafouilleux cafouilleux adj m 0 0.27 0 0.14 +cafouillis cafouillis nom m 0 0.14 0 0.14 +cafouillé cafouiller ver m s 0.43 0.41 0.17 0 par:pas; +cafre cafre nom m s 0.03 0 0.03 0 +caftage caftage nom m s 0 0.07 0 0.07 +caftaient cafter ver 1.05 1.22 0 0.07 ind:imp:3p; +caftait cafter ver 1.05 1.22 0.01 0 ind:imp:3s; +caftan caftan nom m s 0.15 2.64 0.15 1.89 +caftans caftan nom m p 0.15 2.64 0 0.74 +cafte cafter ver 1.05 1.22 0.2 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cafter cafter ver 1.05 1.22 0.32 0.54 inf; +cafterai cafter ver 1.05 1.22 0.01 0 ind:fut:1s; +cafterait cafter ver 1.05 1.22 0 0.14 cnd:pre:3s; +cafteras cafter ver 1.05 1.22 0 0.07 ind:fut:2s; +caftes cafter ver 1.05 1.22 0.14 0.07 ind:pre:2s; +cafteur cafteur nom m s 0.51 0.47 0.35 0.14 +cafteurs cafteur nom m p 0.51 0.47 0.15 0.14 +cafteuse cafteur nom f s 0.51 0.47 0.01 0.2 +cafté cafter ver m s 1.05 1.22 0.37 0.27 par:pas; +caftés cafter ver m p 1.05 1.22 0.01 0 par:pas; +café café nom m s 163.56 177.3 157.56 154.93 +café_concert café_concert nom m s 0 0.47 0 0.34 +café_crème café_crème nom m s 0 0.95 0 0.95 +café_hôtel café_hôtel nom m s 0 0.07 0 0.07 +café_restaurant café_restaurant nom m s 0 0.41 0 0.41 +café_tabac café_tabac nom m s 0 1.22 0 1.22 +café_théâtre café_théâtre nom m s 0 0.27 0 0.27 +caféier caféier nom m s 0.02 0.07 0.01 0 +caféiers caféier nom m p 0.02 0.07 0.01 0.07 +caféine caféine nom f s 1.58 0.14 1.58 0.14 +cafés café nom m p 163.56 177.3 6 22.36 +café_concert café_concert nom m p 0 0.47 0 0.14 +cafétéria cafétéria nom f s 4.12 1.28 4.08 1.15 +cafétérias cafétéria nom f p 4.12 1.28 0.04 0.14 +cagade cagade nom f s 0 0.68 0 0.54 +cagades cagade nom f p 0 0.68 0 0.14 +cage cage nom f s 18.3 41.82 16.61 34.86 +cageot cageot nom m s 1.21 7.36 0.64 3.11 +cageots cageot nom m p 1.21 7.36 0.57 4.26 +cages cage nom f p 18.3 41.82 1.69 6.96 +cagette cagette nom f s 0.01 0.54 0.01 0.07 +cagettes cagette nom f p 0.01 0.54 0 0.47 +cagibi cagibi nom m s 0.85 5.34 0.85 5.07 +cagibis cagibi nom m p 0.85 5.34 0 0.27 +cagna cagna nom f s 0.01 2.64 0.01 1.69 +cagnard cagnard adj m s 0.17 0.27 0.17 0.2 +cagnards cagnard adj m p 0.17 0.27 0 0.07 +cagnas cagna nom f p 0.01 2.64 0 0.95 +cagne cagne nom f s 0 0.07 0 0.07 +cagneuse cagneux adj f s 0.21 1.01 0.01 0.07 +cagneuses cagneux adj f p 0.21 1.01 0 0.14 +cagneux cagneux adj m 0.21 1.01 0.2 0.81 +cagnotte cagnotte nom f s 1.09 1.01 1.09 1.01 +cagot cagot nom m s 0 0.41 0 0.14 +cagote cagot nom f s 0 0.41 0 0.07 +cagotes cagot adj f p 0 0.2 0 0.07 +cagots cagot nom m p 0 0.41 0 0.2 +cagou cagou nom m s 0.01 0 0.01 0 +cagoulard cagoulard nom m s 0 0.54 0 0.14 +cagoulards cagoulard nom m p 0 0.54 0 0.41 +cagoule cagoule nom f s 2.84 1.76 1.92 1.28 +cagoules cagoule nom f p 2.84 1.76 0.93 0.47 +cagoulé cagoulé adj m s 0.31 0.2 0.03 0.14 +cagoulés cagoulé adj m p 0.31 0.2 0.28 0.07 +caguait caguer ver 0.01 0.88 0 0.2 ind:imp:3s; +cague caguer ver 0.01 0.88 0 0.27 ind:pre:1s;ind:pre:3s; +caguer caguer ver 0.01 0.88 0.01 0.41 inf; +cahier cahier nom m s 6.98 31.55 5.04 20.07 +cahiers cahier nom m p 6.98 31.55 1.94 11.49 +cahin_caha cahin_caha adv 0 1.08 0 1.08 +cahors cahors nom m 0 0.14 0 0.14 +cahot cahot nom m s 0.08 4.39 0.01 1.42 +cahota cahoter ver 0.06 4.53 0 0.14 ind:pas:3s; +cahotait cahoter ver 0.06 4.53 0.01 0.34 ind:imp:3s; +cahotant cahoter ver 0.06 4.53 0 1.42 par:pre; +cahotante cahotant adj f s 0 1.08 0 0.68 +cahote cahoter ver 0.06 4.53 0.01 0.54 ind:pre:3s; +cahotement cahotement nom m s 0 0.27 0 0.27 +cahotent cahoter ver 0.06 4.53 0 0.14 ind:pre:3p; +cahoter cahoter ver 0.06 4.53 0.03 0.41 inf; +cahoteuse cahoteux adj f s 0.15 0.74 0.1 0.07 +cahoteuses cahoteux adj f p 0.15 0.74 0 0.07 +cahoteux cahoteux adj m 0.15 0.74 0.05 0.61 +cahotons cahoter ver 0.06 4.53 0 0.07 ind:pre:1p; +cahots cahot nom m p 0.08 4.39 0.07 2.97 +cahotèrent cahoter ver 0.06 4.53 0 0.07 ind:pas:3p; +cahoté cahoter ver m s 0.06 4.53 0 0.68 par:pas; +cahotée cahoter ver f s 0.06 4.53 0.01 0.07 par:pas; +cahotées cahoter ver f p 0.06 4.53 0 0.14 par:pas; +cahotés cahoter ver m p 0.06 4.53 0 0.54 par:pas; +cahute cahute nom f s 0.17 1.69 0.17 1.01 +cahutes cahute nom f p 0.17 1.69 0 0.68 +cailla cailler ver 1.46 2.91 0 0.07 ind:pas:3s; +caillaient cailler ver 1.46 2.91 0 0.07 ind:imp:3p; +caillais cailler ver 1.46 2.91 0 0.07 ind:imp:1s; +caillait cailler ver 1.46 2.91 0.02 0.47 ind:imp:3s; +caillant cailler ver 1.46 2.91 0.01 0.07 par:pre; +caillasse caillasse nom f s 0.16 2.7 0.14 1.35 +caillasser caillasser ver 0.03 0 0.03 0 inf; +caillasses caillasse nom f p 0.16 2.7 0.02 1.35 +caille caille nom f s 2.34 4.59 1.81 2.97 +caillebotis caillebotis nom m 0.01 0.2 0.01 0.2 +caillent cailler ver 1.46 2.91 0.01 0.07 ind:pre:3p; +cailler cailler ver 1.46 2.91 0.21 0.68 inf; +caillera caillera nom f s 0.03 0 0.03 0 +caillerait cailler ver 1.46 2.91 0.01 0 cnd:pre:3s; +caillerez cailler ver 1.46 2.91 0.01 0 ind:fut:2p; +cailles caille nom f p 2.34 4.59 0.53 1.62 +caillette caillette nom f s 0.01 0 0.01 0 +caillot caillot nom m s 3.09 2.84 2.39 1.82 +caillots caillot nom m p 3.09 2.84 0.7 1.01 +caillou caillou nom m s 10.02 38.58 4.11 11.22 +cailloutage cailloutage nom m s 0 0.07 0 0.07 +caillouteuse caillouteux adj f s 0.34 3.11 0.15 1.42 +caillouteuses caillouteux adj f p 0.34 3.11 0 0.34 +caillouteux caillouteux adj m 0.34 3.11 0.2 1.35 +cailloutis cailloutis nom m 0 0.54 0 0.54 +caillouté caillouter ver m s 0.03 0 0.03 0 par:pas; +cailloux caillou nom m p 10.02 38.58 5.91 27.36 +caillé caillé adj m s 0.21 1.96 0.21 1.96 +caillée cailler ver f s 1.46 2.91 0 0.07 par:pas; +caillées cailler ver f p 1.46 2.91 0 0.07 par:pas; +cairn cairn nom m s 0.08 0.07 0.03 0.07 +cairns cairn nom m p 0.08 0.07 0.05 0 +cairote cairote nom s 0 0.14 0 0.07 +cairotes cairote nom p 0 0.14 0 0.07 +caisse caisse nom f s 38.03 69.39 29.46 51.01 +caisses caisse nom f p 38.03 69.39 8.57 18.38 +caissette caissette nom f s 0 1.15 0 0.61 +caissettes caissette nom f p 0 1.15 0 0.54 +caissier caissier nom m s 4.32 7.09 1.66 1.96 +caissiers caissier nom m p 4.32 7.09 0.38 0.2 +caissière caissier nom f s 4.32 7.09 2.03 4.19 +caissières caissier nom f p 4.32 7.09 0.25 0.74 +caisson caisson nom m s 1.72 3.04 1.43 0.81 +caissons caisson nom m p 1.72 3.04 0.29 2.23 +cajola cajoler ver 1.36 3.45 0 0.41 ind:pas:3s; +cajolaient cajoler ver 1.36 3.45 0 0.47 ind:imp:3p; +cajolait cajoler ver 1.36 3.45 0.03 0.2 ind:imp:3s; +cajolant cajoler ver 1.36 3.45 0.11 0.27 par:pre; +cajole cajoler ver 1.36 3.45 0.59 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cajolent cajoler ver 1.36 3.45 0.01 0.07 ind:pre:3p; +cajoler cajoler ver 1.36 3.45 0.36 1.15 inf; +cajolera cajoler ver 1.36 3.45 0.01 0.07 ind:fut:3s; +cajolerai cajoler ver 1.36 3.45 0.2 0 ind:fut:1s; +cajolerait cajoler ver 1.36 3.45 0 0.07 cnd:pre:3s; +cajolerie cajolerie nom f s 0.03 0.81 0 0.2 +cajoleries cajolerie nom f p 0.03 0.81 0.03 0.61 +cajoleur cajoleur nom m s 0.1 0.2 0.1 0.07 +cajoleurs cajoleur nom m p 0.1 0.2 0 0.07 +cajoleuse cajoleur adj f s 0.11 0.54 0.1 0.14 +cajolèrent cajoler ver 1.36 3.45 0 0.14 ind:pas:3p; +cajolé cajoler ver m s 1.36 3.45 0.01 0.2 par:pas; +cajolée cajoler ver f s 1.36 3.45 0.01 0.07 par:pas; +cajolés cajoler ver m p 1.36 3.45 0.02 0 par:pas; +cajou cajou nom m s 0.18 0.14 0.17 0.14 +cajous cajou nom m p 0.18 0.14 0.01 0 +cajun cajun adj s 0.47 0 0.47 0 +cajuns cajun nom p 0.28 0 0.1 0 +cake cake nom m s 3.13 1.96 2.57 1.69 +cake_walk cake_walk nom m s 0.03 0 0.03 0 +cakes cake nom m p 3.13 1.96 0.56 0.27 +cal cal nom m s 3.54 0.68 3.5 0.34 +cala caler ver 4.19 17.77 0.15 2.16 ind:pas:3s; +calabrais calabrais adj m 0.34 0.41 0.34 0.34 +calabraises calabrais adj f p 0.34 0.41 0 0.07 +calade calade nom f s 0 0.2 0 0.2 +calai caler ver 4.19 17.77 0.01 0.14 ind:pas:1s; +calaient caler ver 4.19 17.77 0 0.14 ind:imp:3p; +calais caler ver 4.19 17.77 0.01 0.14 ind:imp:1s;ind:imp:2s; +calaisiens calaisien nom m p 0 0.07 0 0.07 +calaison calaison nom f s 0.1 0 0.1 0 +calait caler ver 4.19 17.77 0.01 0.47 ind:imp:3s; +calamar calamar nom m s 1.09 0.47 0.4 0.14 +calamars calamar nom m p 1.09 0.47 0.69 0.34 +calame calame nom m s 0.14 0.27 0.14 0.2 +calames calame nom m p 0.14 0.27 0 0.07 +calamine calamine nom f s 0.01 0.2 0.01 0 +calamines calamine nom f p 0.01 0.2 0 0.2 +calamistre calamistrer ver 0 0.07 0 0.07 ind:pre:3s; +calamistré calamistré adj m s 0 0.41 0 0.14 +calamistrée calamistré adj f s 0 0.41 0 0.14 +calamistrés calamistré adj m p 0 0.41 0 0.14 +calamita calamiter ver 0.04 0.27 0.01 0 ind:pas:3s; +calamitait calamiter ver 0.04 0.27 0 0.07 ind:imp:3s; +calamiteuse calamiteux adj f s 0.06 0.81 0.02 0.34 +calamiteuses calamiteux adj f p 0.06 0.81 0 0.07 +calamiteux calamiteux adj m s 0.06 0.81 0.03 0.41 +calamité calamité nom f s 2.21 2.84 1.63 1.42 +calamités calamité nom f p 2.21 2.84 0.58 1.42 +calanchaient calancher ver 0.1 0.41 0 0.07 ind:imp:3p; +calanchais calancher ver 0.1 0.41 0 0.07 ind:imp:1s; +calanche calancher ver 0.1 0.41 0 0.07 ind:pre:1s; +calancher calancher ver 0.1 0.41 0 0.14 inf; +calanché calancher ver m s 0.1 0.41 0.1 0.07 par:pas; +calandre calandre nom f s 0.09 0.68 0.09 0.68 +calanque calanque nom f s 0.4 0.41 0.14 0.14 +calanques calanque nom f p 0.4 0.41 0.27 0.27 +calant caler ver 4.19 17.77 0.02 0.68 par:pre; +calao calao nom m s 0.01 0 0.01 0 +calbar calbar nom m s 0.02 0.34 0.02 0.2 +calbars calbar nom m p 0.02 0.34 0 0.14 +calbombe calbombe nom f s 0 0.54 0 0.47 +calbombes calbombe nom f p 0 0.54 0 0.07 +calcaire calcaire nom m s 0.28 1.55 0.28 1.35 +calcaires calcaire adj p 0.15 1.08 0.04 0.68 +calce calcer ver 0 0.34 0 0.07 ind:pre:3s; +calcer calcer ver 0 0.34 0 0.2 inf; +calcerais calcer ver 0 0.34 0 0.07 cnd:pre:1s; +calcif calcif nom m s 0.1 0.74 0.08 0.54 +calcification calcification nom f s 0.08 0.14 0.08 0.14 +calcifié calcifier ver m s 0.07 0 0.05 0 par:pas; +calcifiée calcifier ver f s 0.07 0 0.01 0 par:pas; +calcifiée calcifié adj f s 0.02 0 0.01 0 +calcifs calcif nom m p 0.1 0.74 0.02 0.2 +calcinaient calciner ver 0.5 2.16 0.01 0 ind:imp:3p; +calcinait calciner ver 0.5 2.16 0 0.07 ind:imp:3s; +calcinant calciner ver 0.5 2.16 0 0.14 par:pre; +calcination calcination nom f s 0 0.2 0 0.2 +calcine calciner ver 0.5 2.16 0.04 0 ind:pre:3s; +calciner calciner ver 0.5 2.16 0.02 0.14 inf; +calciné calciner ver m s 0.5 2.16 0.13 0.41 par:pas; +calcinée calciné adj f s 0.34 3.18 0.13 0.68 +calcinées calciné adj f p 0.34 3.18 0.01 1.15 +calcinés calciner ver m p 0.5 2.16 0.26 0.54 par:pas; +calcite calcite nom m s 0.01 0 0.01 0 +calcium calcium nom m s 0.98 0.74 0.98 0.74 +calcul calcul nom m s 11.47 19.86 5.95 11.55 +calcula calculer ver 12.19 23.31 0 1.76 ind:pas:3s; +calculables calculable adj f p 0 0.07 0 0.07 +calculai calculer ver 12.19 23.31 0 0.34 ind:pas:1s; +calculaient calculer ver 12.19 23.31 0.02 0.2 ind:imp:3p; +calculais calculer ver 12.19 23.31 0.13 0.34 ind:imp:1s; +calculait calculer ver 12.19 23.31 0.29 1.49 ind:imp:3s; +calculant calculer ver 12.19 23.31 0.12 1.28 par:pre; +calculateur calculateur adj m s 0.42 0.34 0.3 0.2 +calculateurs calculateur nom m p 0.24 0.47 0.21 0.07 +calculatrice calculatrice nom f s 0.56 0.41 0.51 0.34 +calculatrices calculatrice nom f p 0.56 0.41 0.05 0.07 +calcule calculer ver 12.19 23.31 1.96 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +calculent calculer ver 12.19 23.31 0.05 0.07 ind:pre:3p; +calculer calculer ver 12.19 23.31 3.09 5.61 inf; +calculera calculer ver 12.19 23.31 0.03 0.07 ind:fut:3s; +calculerai calculer ver 12.19 23.31 0.01 0 ind:fut:1s; +calculerait calculer ver 12.19 23.31 0 0.07 cnd:pre:3s; +calcules calculer ver 12.19 23.31 0.28 0.07 ind:pre:2s; +calculette calculette nom f s 0.2 0.2 0.14 0.14 +calculettes calculette nom f p 0.2 0.2 0.07 0.07 +calculeuse calculeux adj f s 0.01 0 0.01 0 +calculez calculer ver 12.19 23.31 0.28 0.14 imp:pre:2p;ind:pre:2p; +calculiez calculer ver 12.19 23.31 0.01 0.07 ind:imp:2p; +calculons calculer ver 12.19 23.31 0.06 0 imp:pre:1p;ind:pre:1p; +calculs calcul nom m p 11.47 19.86 5.52 8.31 +calculèrent calculer ver 12.19 23.31 0 0.27 ind:pas:3p; +calculé calculer ver m s 12.19 23.31 5.29 5.61 par:pas; +calculée calculer ver f s 12.19 23.31 0.37 2.23 par:pas; +calculées calculer ver f p 12.19 23.31 0.02 0.68 par:pas; +calculés calculer ver m p 12.19 23.31 0.18 0.81 par:pas; +calcémie calcémie nom f s 0.03 0 0.03 0 +caldarium caldarium nom m s 0 0.07 0 0.07 +caldeira caldeira nom f s 0.05 0 0.05 0 +cale cale nom f s 4.08 6.15 3 4.8 +cale_pied cale_pied nom m s 0 0.34 0 0.07 +cale_pied cale_pied nom m p 0 0.34 0 0.27 +calebar calebar nom m s 0.16 0 0.16 0 +calebasse calebasse nom f s 0.12 1.69 0.11 0.95 +calebasses calebasse nom f p 0.12 1.69 0.01 0.74 +calebassier calebassier nom m s 0 0.07 0 0.07 +calebombe calebombe nom f s 0 0.07 0 0.07 +calecif calecif nom m s 0.02 0.14 0.02 0.14 +calembour calembour nom m s 0.4 2.23 0.23 0.74 +calembours calembour nom m p 0.4 2.23 0.17 1.49 +calembredaine calembredaine nom f s 0 0.54 0 0.14 +calembredaines calembredaine nom f p 0 0.54 0 0.41 +calenché calencher ver m s 0 0.07 0 0.07 par:pas; +calendaire calendaire adj f s 0.01 0 0.01 0 +calendes calendes nom f p 0.07 0.61 0.07 0.61 +calendo calendo nom m s 0 0.07 0 0.07 +calendos calendos nom m 0 0.88 0 0.88 +calendre calendre nom f s 0.01 0 0.01 0 +calendrier calendrier nom m s 6.18 14.53 5.37 12.84 +calendriers calendrier nom m p 6.18 14.53 0.82 1.69 +calendula calendula nom m s 0.15 0 0.15 0 +calent caler ver 4.19 17.77 0.16 0.07 ind:pre:3p; +calepin calepin nom m s 1.17 3.72 1 3.11 +calepins calepin nom m p 1.17 3.72 0.17 0.61 +caler caler ver 4.19 17.77 0.77 2.5 inf; +calerai caler ver 4.19 17.77 0.01 0 ind:fut:1s; +calerait caler ver 4.19 17.77 0 0.07 cnd:pre:3s; +caleras caler ver 4.19 17.77 0.01 0.14 ind:fut:2s; +cales cale nom f p 4.08 6.15 1.08 1.35 +calez caler ver 4.19 17.77 0.22 2.36 imp:pre:2p;ind:pre:2p; +caleçon caleçon nom m s 7.58 6.69 4.63 4.86 +caleçonnade caleçonnade nom f s 0 0.07 0 0.07 +caleçons caleçon nom m p 7.58 6.69 2.95 1.82 +calf calf nom m s 0.04 0.07 0.04 0.07 +calfat calfat nom m s 0 0.27 0 0.07 +calfatage calfatage nom m s 0 0.07 0 0.07 +calfatait calfater ver 0.03 0.47 0 0.07 ind:imp:3s; +calfatant calfater ver 0.03 0.47 0.01 0.07 par:pre; +calfate calfater ver 0.03 0.47 0 0.07 ind:pre:3s; +calfater calfater ver 0.03 0.47 0.01 0.07 inf; +calfats calfat nom m p 0 0.27 0 0.2 +calfaté calfater ver m s 0.03 0.47 0 0.07 par:pas; +calfatée calfater ver f s 0.03 0.47 0 0.07 par:pas; +calfatés calfater ver m p 0.03 0.47 0.01 0.07 par:pas; +calfeutra calfeutrer ver 0.22 3.51 0 0.07 ind:pas:3s; +calfeutrage calfeutrage nom m s 0.14 0 0.14 0 +calfeutrai calfeutrer ver 0.22 3.51 0 0.07 ind:pas:1s; +calfeutraient calfeutrer ver 0.22 3.51 0 0.34 ind:imp:3p; +calfeutrais calfeutrer ver 0.22 3.51 0 0.07 ind:imp:1s; +calfeutrait calfeutrer ver 0.22 3.51 0 0.2 ind:imp:3s; +calfeutrant calfeutrer ver 0.22 3.51 0 0.07 par:pre; +calfeutre calfeutrer ver 0.22 3.51 0.14 0.34 imp:pre:2s;ind:pre:3s; +calfeutrer calfeutrer ver 0.22 3.51 0.04 0.41 inf; +calfeutres calfeutrer ver 0.22 3.51 0 0.07 ind:pre:2s; +calfeutré calfeutrer ver m s 0.22 3.51 0.03 0.61 par:pas; +calfeutrée calfeutrer ver f s 0.22 3.51 0.01 0.74 par:pas; +calfeutrées calfeutrer ver f p 0.22 3.51 0 0.27 par:pas; +calfeutrés calfeutrer ver m p 0.22 3.51 0 0.27 par:pas; +calibrage calibrage nom m s 0.13 0.07 0.12 0.07 +calibrages calibrage nom m p 0.13 0.07 0.01 0 +calibration calibration nom f s 0.07 0 0.07 0 +calibre calibre nom m s 7.32 6.15 6.63 5 +calibrer calibrer ver 1.27 0.61 0.27 0.2 inf; +calibres calibre nom m p 7.32 6.15 0.69 1.15 +calibrez calibrer ver 1.27 0.61 0.01 0 imp:pre:2p; +calibré calibrer ver m s 1.27 0.61 0.32 0.14 par:pas; +calibrée calibrer ver f s 1.27 0.61 0.04 0.07 par:pas; +calibrées calibrer ver f p 1.27 0.61 0.16 0 par:pas; +calibrés calibrer ver m p 1.27 0.61 0.01 0.07 par:pas; +calice calice nom m s 1.42 2.97 1.2 2.64 +calices calice nom m p 1.42 2.97 0.22 0.34 +calicot calicot nom m s 0.32 2.09 0.17 1.28 +calicots calicot nom m p 0.32 2.09 0.14 0.81 +califat califat nom m s 0 0.14 0 0.14 +calife calife nom m s 3.51 2.03 3.5 1.96 +califes calife nom m p 3.51 2.03 0.01 0.07 +californie californie nom f s 0.09 0.07 0.09 0.07 +californien californien adj m s 1.23 1.15 0.53 0.54 +californienne californien adj f s 1.23 1.15 0.35 0.47 +californiennes californien adj f p 1.23 1.15 0.14 0 +californiens californien adj m p 1.23 1.15 0.22 0.14 +californium californium nom m s 0.03 0 0.03 0 +califourchon califourchon adv 0.44 4.19 0.44 4.19 +calisson calisson nom m s 0.14 0.07 0.14 0 +calissons calisson nom m p 0.14 0.07 0 0.07 +call_girl call_girl nom f s 1.36 0.14 0.25 0 +call_girl call_girl nom f p 1.36 0.14 0.03 0 +call_girl call_girl nom f s 1.36 0.14 0.98 0.14 +call_girl call_girl nom f p 1.36 0.14 0.09 0 +calla calla nom f s 0.13 0.07 0.13 0.07 +calle caller ver 0.66 1.42 0.63 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +caller caller ver 0.66 1.42 0 0.14 inf; +calles caller ver 0.66 1.42 0.03 0.07 ind:pre:2s; +calleuse calleux adj f s 0.64 1.69 0.02 0.2 +calleuses calleux adj f p 0.64 1.69 0.25 1.22 +calleux calleux adj m 0.64 1.69 0.37 0.27 +calligrammes calligramme nom m p 0 0.07 0 0.07 +calligraphe calligraphe nom s 0.01 0.41 0.01 0.41 +calligraphiais calligraphier ver 0.04 2.16 0 0.07 ind:imp:1s; +calligraphiait calligraphier ver 0.04 2.16 0 0.07 ind:imp:3s; +calligraphiant calligraphier ver 0.04 2.16 0 0.2 par:pre; +calligraphie calligraphie nom f s 1.09 1.35 1.09 1.22 +calligraphient calligraphier ver 0.04 2.16 0 0.07 ind:pre:3p; +calligraphier calligraphier ver 0.04 2.16 0 0.14 inf; +calligraphies calligraphie nom f p 1.09 1.35 0 0.14 +calligraphiez calligraphier ver 0.04 2.16 0.01 0 ind:pre:2p; +calligraphique calligraphique adj f s 0.01 0.07 0.01 0 +calligraphiquement calligraphiquement adv 0 0.07 0 0.07 +calligraphiques calligraphique adj m p 0.01 0.07 0 0.07 +calligraphié calligraphier ver m s 0.04 2.16 0.01 0.61 par:pas; +calligraphiée calligraphier ver f s 0.04 2.16 0 0.34 par:pas; +calligraphiées calligraphier ver f p 0.04 2.16 0.01 0.07 par:pas; +calligraphiés calligraphier ver m p 0.04 2.16 0 0.47 par:pas; +callipyge callipyge adj f s 0 0.07 0 0.07 +callosité callosité nom f s 0.05 0.2 0.02 0 +callosités callosité nom f p 0.05 0.2 0.03 0.2 +calma calmer ver 168.54 45.07 0.04 2.97 ind:pas:3s; +calmai calmer ver 168.54 45.07 0.01 0.34 ind:pas:1s; +calmaient calmer ver 168.54 45.07 0.14 0.47 ind:imp:3p; +calmais calmer ver 168.54 45.07 0.21 0.2 ind:imp:1s;ind:imp:2s; +calmait calmer ver 168.54 45.07 0.58 3.38 ind:imp:3s; +calmant calmant nom m s 7.38 1.55 3.46 0.61 +calmante calmant adj f s 0.81 1.08 0.03 0.54 +calmants calmant nom m p 7.38 1.55 3.92 0.95 +calmar calmar nom m s 1.1 0.61 0.7 0.27 +calmars calmar nom m p 1.1 0.61 0.4 0.34 +calmas calmer ver 168.54 45.07 0.01 0 ind:pas:2s; +calme calme nom m s 105.2 53.24 105.08 52.03 +calmement calmement adv 6.74 12.43 6.74 12.43 +calment calmer ver 168.54 45.07 0.66 0.54 ind:pre:3p; +calmer calmer ver 168.54 45.07 22.89 14.66 inf;; +calmera calmer ver 168.54 45.07 2.84 0.61 ind:fut:3s; +calmerai calmer ver 168.54 45.07 0.64 0 ind:fut:1s; +calmeraient calmer ver 168.54 45.07 0.01 0.14 cnd:pre:3p; +calmerais calmer ver 168.54 45.07 0.18 0.07 cnd:pre:1s; +calmerait calmer ver 168.54 45.07 0.27 0.2 cnd:pre:3s; +calmeras calmer ver 168.54 45.07 0.11 0 ind:fut:2s; +calmerez calmer ver 168.54 45.07 0.03 0 ind:fut:2p; +calmerons calmer ver 168.54 45.07 0 0.07 ind:fut:1p; +calmeront calmer ver 168.54 45.07 0.2 0.14 ind:fut:3p; +calmes calme adj p 66.57 73.65 7.79 7.84 +calmez calmer ver 168.54 45.07 34.63 1.55 imp:pre:2p;ind:pre:2p; +calmi calmir ver m s 0 0.2 0 0.14 par:pas; +calmiez calmer ver 168.54 45.07 0.12 0 ind:imp:2p; +calmir calmir ver 0 0.2 0 0.07 inf; +calmons calmer ver 168.54 45.07 0.98 0.34 imp:pre:1p;ind:pre:1p; +calmos calmos ono 1.69 0.88 1.69 0.88 +calmât calmer ver 168.54 45.07 0 0.14 sub:imp:3s; +calmèrent calmer ver 168.54 45.07 0 0.74 ind:pas:3p; +calmé calmer ver m s 168.54 45.07 4.41 3.65 par:pas; +calmée calmer ver f s 168.54 45.07 1.48 3.45 par:pas; +calmées calmer ver f p 168.54 45.07 0.13 0.27 par:pas; +calmés calmer ver m p 168.54 45.07 0.35 0.47 par:pas; +calo calo nom m s 0.08 0 0.08 0 +calomel calomel nom m s 0.01 0.2 0.01 0.2 +calomniant calomnier ver 1.69 1.55 0.02 0 par:pre; +calomniateur calomniateur nom m s 0.12 0.27 0.01 0.07 +calomniateurs calomniateur nom m p 0.12 0.27 0.11 0.14 +calomniatrice calomniateur nom f s 0.12 0.27 0 0.07 +calomnie calomnie nom f s 4.49 3.92 2.71 1.69 +calomnient calomnier ver 1.69 1.55 0.17 0.2 ind:pre:3p; +calomnier calomnier ver 1.69 1.55 0.36 0.34 inf; +calomnies calomnie nom f p 4.49 3.92 1.77 2.23 +calomnieuse calomnieux adj f s 0.11 0.34 0.02 0.2 +calomnieuses calomnieux adj f p 0.11 0.34 0.06 0 +calomnieux calomnieux adj m p 0.11 0.34 0.03 0.14 +calomniez calomnier ver 1.69 1.55 0.05 0 imp:pre:2p;ind:pre:2p; +calomnié calomnier ver m s 1.69 1.55 0.34 0.47 par:pas; +calomniée calomnier ver f s 1.69 1.55 0.16 0.27 par:pas; +calomniés calomnier ver m p 1.69 1.55 0.07 0.2 par:pas; +caloporteur caloporteur nom m s 0.01 0 0.01 0 +calorie calorie nom f s 1.43 0.95 0.15 0 +calories calorie nom f p 1.43 0.95 1.28 0.95 +calorifique calorifique adj s 0.13 0 0.13 0 +calorifuges calorifuge nom m p 0 0.07 0 0.07 +calorifère calorifère nom m s 0.05 0.81 0.04 0.54 +calorifères calorifère nom m p 0.05 0.81 0.01 0.27 +calorique calorique adj s 0.1 0.07 0.1 0.07 +calot calot nom m s 0.23 5.81 0.12 4.19 +calotin calotin nom m s 0 0.14 0 0.07 +calotins calotin nom m p 0 0.14 0 0.07 +calots calot nom m p 0.23 5.81 0.11 1.62 +calottais calotter ver 0.04 0.54 0 0.07 ind:imp:1s; +calotte calotte nom f s 0.43 4.73 0.25 3.85 +calottes calotte nom f p 0.43 4.73 0.18 0.88 +calotté calotter ver m s 0.04 0.54 0.01 0.14 par:pas; +calottées calotter ver f p 0.04 0.54 0 0.07 par:pas; +calottés calotter ver m p 0.04 0.54 0 0.07 par:pas; +calquaient calquer ver 0.36 1.35 0 0.07 ind:imp:3p; +calquait calquer ver 0.36 1.35 0 0.27 ind:imp:3s; +calquant calquer ver 0.36 1.35 0.02 0.07 par:pre; +calque calquer ver 0.36 1.35 0.23 0.27 imp:pre:2s;ind:pre:3s; +calquer calquer ver 0.36 1.35 0.03 0.2 inf; +calquera calquer ver 0.36 1.35 0 0.07 ind:fut:3s; +calques calque nom m p 0.07 0.61 0.03 0.2 +calqué calquer ver m s 0.36 1.35 0.08 0.07 par:pas; +calquée calquer ver f s 0.36 1.35 0 0.2 par:pas; +calquées calquer ver f p 0.36 1.35 0 0.14 par:pas; +cals cal nom m p 3.54 0.68 0.04 0.34 +calte calter ver 0.47 1.62 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +caltent calter ver 0.47 1.62 0 0.14 ind:pre:3p; +calter calter ver 0.47 1.62 0.02 0.54 inf; +caltez calter ver 0.47 1.62 0.43 0.47 imp:pre:2p;ind:pre:2p; +caltons calter ver 0.47 1.62 0 0.07 imp:pre:1p; +caltés calter ver m p 0.47 1.62 0 0.14 par:pas; +calumet calumet nom m s 0.24 0.27 0.23 0.2 +calumets calumet nom m p 0.24 0.27 0.01 0.07 +calus calus nom m 0 0.07 0 0.07 +calva calva nom m s 0.03 2.36 0.03 2.23 +calvados calvados nom m 0.02 1.35 0.02 1.35 +calvaire calvaire nom m s 2.19 8.24 2.19 7.7 +calvaires calvaire nom m p 2.19 8.24 0 0.54 +calvas calva nom m p 0.03 2.36 0 0.14 +calville calville nom f s 0.04 0.14 0.04 0.07 +calvilles calville nom f p 0.04 0.14 0 0.07 +calvinisme calvinisme nom m s 0.1 0.07 0.1 0.07 +calviniste calviniste adj f s 0.12 0.34 0.11 0.14 +calvinistes calviniste adj p 0.12 0.34 0.01 0.2 +calvitie calvitie nom f s 1.02 2.84 1 2.77 +calvities calvitie nom f p 1.02 2.84 0.01 0.07 +calypso calypso nom m s 0.05 0.2 0.05 0.2 +calèche calèche nom f s 1.36 3.72 1.32 3.24 +calèches calèche nom f p 1.36 3.72 0.04 0.47 +calèrent caler ver 4.19 17.77 0 0.14 ind:pas:3p; +calé caler ver m s 4.19 17.77 1.39 4.46 par:pas; +calédonien calédonien adj m s 0.04 0.14 0.02 0.07 +calédonienne calédonien adj f s 0.04 0.14 0.01 0.07 +calédoniens calédonien nom m p 0.07 0.14 0.07 0.14 +calée caler ver f s 4.19 17.77 0.25 1.49 par:pas; +calées caler ver f p 4.19 17.77 0 0.2 par:pas; +caléidoscope caléidoscope nom m s 0.11 0 0.11 0 +calés caler ver m p 4.19 17.77 0.19 0.68 par:pas; +cama camer ver 3.35 1.08 0.2 0.14 ind:pas:3s; +camail camail nom m s 0 0.61 0 0.54 +camails camail nom m p 0 0.61 0 0.07 +camarade camarade nom s 77.81 98.99 47.32 38.85 +camaraderie camaraderie nom f s 1.23 3.58 1.22 3.24 +camaraderies camaraderie nom f p 1.23 3.58 0.01 0.34 +camarades camarade nom p 77.81 98.99 30.5 60.14 +camard camard adj m s 0.01 0.47 0.01 0.27 +camarde camard nom f s 0 0.2 0 0.2 +camards camard adj m p 0.01 0.47 0 0.07 +camarero camarero nom m s 0 0.14 0 0.07 +camareros camarero nom m p 0 0.14 0 0.07 +camarguais camarguais adj m 0 0.14 0 0.14 +camarguaises camarguais nom f p 0 0.07 0 0.07 +camarilla camarilla nom f s 0 0.07 0 0.07 +camarin camarin nom m s 0 0.34 0 0.14 +camarins camarin nom m p 0 0.34 0 0.2 +camarluche camarluche nom m s 0 0.07 0 0.07 +camaro camaro nom m s 0.38 0 0.38 0 +camaïeu camaïeu nom m s 0 0.34 0 0.34 +camaïeux camaïeux nom m p 0 0.14 0 0.14 +camber camber ver 0.09 0 0.09 0 inf; +cambiste cambiste nom s 0.01 0 0.01 0 +cambodgien cambodgien adj m s 0.16 0.14 0.06 0 +cambodgienne cambodgien adj f s 0.16 0.14 0.07 0.07 +cambodgiennes cambodgien adj f p 0.16 0.14 0.01 0 +cambodgiens cambodgien nom m p 0.09 0.47 0.07 0 +cambouis cambouis nom m 0.38 4.59 0.38 4.59 +cambra cambrer ver 1.35 3.51 0.01 0.34 ind:pas:3s; +cambrait cambrer ver 1.35 3.51 0 0.41 ind:imp:3s; +cambrant cambrer ver 1.35 3.51 0 0.27 par:pre; +cambre cambrer ver 1.35 3.51 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cambrement cambrement nom m s 0 0.14 0 0.14 +cambrent cambrer ver 1.35 3.51 0 0.14 ind:pre:3p; +cambrer cambrer ver 1.35 3.51 0.69 0.2 inf; +cambrera cambrer ver 1.35 3.51 0 0.07 ind:fut:3s; +cambres cambrer ver 1.35 3.51 0 0.34 ind:pre:2s; +cambrez cambrer ver 1.35 3.51 0.31 0 imp:pre:2p; +cambrienne cambrien adj f s 0.04 0 0.04 0 +cambriolage cambriolage nom m s 8.05 2.77 6.6 2.03 +cambriolages cambriolage nom m p 8.05 2.77 1.45 0.74 +cambriolaient cambrioler ver 6.8 1.15 0.02 0.07 ind:imp:3p; +cambriolais cambrioler ver 6.8 1.15 0.05 0.07 ind:imp:1s;ind:imp:2s; +cambriolant cambrioler ver 6.8 1.15 0.05 0 par:pre; +cambriole cambrioler ver 6.8 1.15 0.49 0.14 ind:pre:1s;ind:pre:3s; +cambriolent cambrioler ver 6.8 1.15 0.09 0.14 ind:pre:3p; +cambrioler cambrioler ver 6.8 1.15 2.27 0.27 inf; +cambrioles cambrioler ver 6.8 1.15 0.06 0 ind:pre:2s; +cambrioleur cambrioleur nom m s 4.7 2.36 3.17 1.08 +cambrioleurs cambrioleur nom m p 4.7 2.36 1.41 1.28 +cambrioleuse cambrioleur nom f s 4.7 2.36 0.12 0 +cambriolez cambrioler ver 6.8 1.15 0.06 0 imp:pre:2p;ind:pre:2p; +cambrioliez cambrioler ver 6.8 1.15 0.02 0 ind:imp:2p; +cambriolons cambrioler ver 6.8 1.15 0.01 0 ind:pre:1p; +cambriolé cambrioler ver m s 6.8 1.15 2.69 0.27 par:pas; +cambriolée cambrioler ver f s 6.8 1.15 0.34 0.07 par:pas; +cambriolées cambrioler ver f p 6.8 1.15 0.02 0.14 par:pas; +cambriolés cambrioler ver m p 6.8 1.15 0.62 0 par:pas; +cambrousse cambrousse nom f s 1.04 1.96 1.04 1.89 +cambrousses cambrousse nom f p 1.04 1.96 0 0.07 +cambrure cambrure nom f s 0.2 1.01 0.19 0.95 +cambrures cambrure nom f p 0.2 1.01 0.01 0.07 +cambré cambré adj m s 0.32 2.77 0.19 0.68 +cambrée cambré adj f s 0.32 2.77 0.14 1.01 +cambrées cambrer ver f p 1.35 3.51 0 0.14 par:pas; +cambrés cambré adj m p 0.32 2.77 0 0.95 +cambuse cambuse nom f s 0.06 2.5 0.06 2.43 +cambuses cambuse nom f p 0.06 2.5 0 0.07 +cambusier cambusier nom m s 0.02 0 0.02 0 +cambute cambuter ver 0 0.27 0 0.2 ind:pre:3s; +cambuté cambuter ver m s 0 0.27 0 0.07 par:pas; +came came nom f s 16.77 4.73 16.5 4.59 +camellia camellia nom m s 0.01 0 0.01 0 +camelot camelot nom m s 0.48 2.5 0.47 1.28 +camelote camelote nom f s 3.59 4.8 3.59 4.46 +camelotes camelote nom f p 3.59 4.8 0 0.34 +camelots camelot nom m p 0.48 2.5 0.01 1.22 +camembert camembert nom m s 0.8 3.85 0.79 3.18 +camemberts camembert nom m p 0.8 3.85 0.01 0.68 +cament camer ver 3.35 1.08 0.08 0.07 ind:pre:3p; +camer camer ver 3.35 1.08 0.3 0 inf; +camera camer ver 3.35 1.08 1.55 0.41 ind:fut:3s; +cameraman cameraman nom m s 1.68 0.68 1.54 0.34 +cameramen cameraman nom m p 1.68 0.68 0.14 0.34 +cameras camer ver 3.35 1.08 0.59 0.14 ind:fut:2s; +camerounais camerounais adj m 0.02 0.2 0.01 0.2 +camerounaise camerounais adj f s 0.02 0.2 0.01 0 +cames came nom f p 16.77 4.73 0.28 0.14 +camez camer ver 3.35 1.08 0.01 0 ind:pre:2p; +camion camion nom m s 59.46 50.74 50.06 30.27 +camion_benne camion_benne nom m s 0.06 0.14 0.03 0 +camion_citerne camion_citerne nom m s 0.7 0.47 0.62 0.34 +camion_grue camion_grue nom m s 0 0.14 0 0.14 +camionnage camionnage nom m s 0.18 0 0.18 0 +camionnette camionnette nom f s 10.77 17.97 10.05 15.54 +camionnettes camionnette nom f p 10.77 17.97 0.72 2.43 +camionneur camionneur nom m s 2.17 2.36 1.17 1.62 +camionneurs camionneur nom m p 2.17 2.36 1 0.74 +camionnée camionner ver f s 0 0.07 0 0.07 par:pas; +camions camion nom m p 59.46 50.74 9.41 20.47 +camion_benne camion_benne nom m p 0.06 0.14 0.03 0.14 +camion_citerne camion_citerne nom m p 0.7 0.47 0.08 0.14 +camisards camisard nom m p 0 0.07 0 0.07 +camisole camisole nom f s 2.62 1.69 2.52 1.35 +camisoles camisole nom f p 2.62 1.69 0.1 0.34 +camomille camomille nom f s 1.16 0.68 1.16 0.54 +camomilles camomille nom f p 1.16 0.68 0 0.14 +camorra camorra nom f s 0.2 0.07 0.2 0.07 +camoufla camoufler ver 2.19 8.65 0 0.14 ind:pas:3s; +camouflage camouflage nom m s 2.43 2.16 2.41 1.82 +camouflages camouflage nom m p 2.43 2.16 0.02 0.34 +camouflaient camoufler ver 2.19 8.65 0.01 0.07 ind:imp:3p; +camouflais camoufler ver 2.19 8.65 0 0.07 ind:imp:2s; +camouflait camoufler ver 2.19 8.65 0.02 0.68 ind:imp:3s; +camouflant camoufler ver 2.19 8.65 0.02 0.14 par:pre; +camoufle camoufler ver 2.19 8.65 0.3 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +camouflent camoufler ver 2.19 8.65 0.18 0.27 ind:pre:3p; +camoufler camoufler ver 2.19 8.65 0.8 2.23 inf; +camouflerait camoufler ver 2.19 8.65 0 0.07 cnd:pre:3s; +camouflet camouflet nom m s 0.02 0.61 0.02 0.41 +camouflets camouflet nom m p 0.02 0.61 0 0.2 +camouflez camoufler ver 2.19 8.65 0.08 0.07 imp:pre:2p;ind:pre:2p; +camouflé camoufler ver m s 2.19 8.65 0.55 1.28 par:pas; +camouflée camoufler ver f s 2.19 8.65 0.18 1.49 par:pas; +camouflées camoufler ver f p 2.19 8.65 0.01 0.54 par:pas; +camouflés camoufler ver m p 2.19 8.65 0.04 1.15 par:pas; +camp camp nom m s 114.93 97.23 105.92 75.61 +campa camper ver 6.16 13.85 0.06 0.68 ind:pas:3s; +campagnard campagnard adj m s 0.88 6.42 0.32 1.55 +campagnarde campagnard adj f s 0.88 6.42 0.24 2.84 +campagnardes campagnard adj f p 0.88 6.42 0.28 1.08 +campagnards campagnard nom m p 0.16 0.74 0.06 0.27 +campagne campagne nom f s 51.12 107.23 48.61 94.73 +campagnes campagne nom f p 51.12 107.23 2.51 12.5 +campagnol campagnol nom m s 0.03 0.41 0.03 0.27 +campagnols campagnol nom m p 0.03 0.41 0 0.14 +campaient camper ver 6.16 13.85 0.04 0.95 ind:imp:3p; +campais camper ver 6.16 13.85 0.04 0.07 ind:imp:1s; +campait camper ver 6.16 13.85 0.15 1.76 ind:imp:3s; +campanaire campanaire adj m s 0 0.07 0 0.07 +campanelles campanelle nom f p 0 0.07 0 0.07 +campanile campanile nom m s 0.02 2.09 0.02 1.42 +campaniles campanile nom m p 0.02 2.09 0 0.68 +campant camper ver 6.16 13.85 0.04 0.41 par:pre; +campanule campanule nom f s 0.18 0.47 0.11 0 +campanules campanule nom f p 0.18 0.47 0.07 0.47 +campe camper ver 6.16 13.85 0.89 1.49 ind:pre:1s;ind:pre:3s; +campement campement nom m s 2.52 6.49 2.46 5.34 +campements campement nom m p 2.52 6.49 0.07 1.15 +campent camper ver 6.16 13.85 0.51 0.54 ind:pre:3p; +camper camper ver 6.16 13.85 3.02 3.92 inf; +campera camper ver 6.16 13.85 0.11 0 ind:fut:3s; +camperai camper ver 6.16 13.85 0.02 0 ind:fut:1s; +camperait camper ver 6.16 13.85 0.01 0.14 cnd:pre:3s; +camperons camper ver 6.16 13.85 0.1 0.14 ind:fut:1p; +campes camper ver 6.16 13.85 0.16 0.07 ind:pre:2s; +campeur campeur nom m s 0.68 4.26 0.13 0.47 +campeurs campeur nom m p 0.68 4.26 0.49 3.72 +campeuse campeur nom f s 0.68 4.26 0.05 0 +campeuses campeur nom f p 0.68 4.26 0 0.07 +campez camper ver 6.16 13.85 0.08 0 imp:pre:2p;ind:pre:2p; +camphre camphre nom m s 0.26 0.74 0.26 0.74 +camphrier camphrier nom m s 0 0.14 0 0.14 +camphrée camphré adj f s 0 0.14 0 0.07 +camphrées camphré adj f p 0 0.14 0 0.07 +camping camping nom m s 4.2 3.24 4.11 2.97 +camping_car camping_car nom m s 1.06 0 1.01 0 +camping_car camping_car nom m p 1.06 0 0.05 0 +camping_gaz camping_gaz nom m 0 0.47 0 0.47 +campings camping nom m p 4.2 3.24 0.09 0.27 +campions camper ver 6.16 13.85 0.02 0.2 ind:imp:1p; +campo campo nom m s 0.58 1.49 0.47 1.49 +campons camper ver 6.16 13.85 0.16 0.14 imp:pre:1p;ind:pre:1p; +campos campo nom m p 0.58 1.49 0.11 0 +camps camp nom m p 114.93 97.23 9.01 21.62 +campus campus nom m 6.04 1.62 6.04 1.62 +campâmes camper ver 6.16 13.85 0 0.07 ind:pas:1p; +campèrent camper ver 6.16 13.85 0.01 0 ind:pas:3p; +campé camper ver m s 6.16 13.85 0.74 1.96 par:pas; +campée camper ver f s 6.16 13.85 0 0.81 par:pas; +campées camper ver f p 6.16 13.85 0 0.14 par:pas; +campés camper ver m p 6.16 13.85 0.01 0.41 par:pas; +campêche campêche nom m s 0 0.14 0 0.14 +camus camus nom m 0.16 0.07 0.16 0.07 +camuse camus adj f s 0.14 0.61 0.14 0.07 +camé camé nom m s 2.69 0.54 1.71 0.34 +camée camée nom m s 0.58 1.01 0.47 0.88 +camées camée nom m p 0.58 1.01 0.11 0.14 +camélia camélia nom m s 0.42 2.23 0.04 0.27 +camélias camélia nom m p 0.42 2.23 0.38 1.96 +camélidé camélidé nom m s 0 0.14 0 0.07 +camélidés camélidé nom m p 0 0.14 0 0.07 +caméléon caméléon nom m s 2.51 0.81 2.35 0.68 +caméléons caméléon nom m p 2.51 0.81 0.16 0.14 +caméra caméra nom f s 56.18 6.35 41.64 4.39 +caméra_espion caméra_espion nom f s 0.01 0 0.01 0 +caméraman caméraman nom m s 1.28 0.07 1.14 0.07 +caméramans caméraman nom m p 1.28 0.07 0.14 0 +caméras caméra nom f p 56.18 6.35 14.54 1.96 +camériste camériste nom f s 0.18 1.01 0.17 0.81 +caméristes camériste nom f p 0.18 1.01 0.01 0.2 +camés camé nom m p 2.69 0.54 0.97 0.2 +caméscope caméscope nom m s 0.78 0 0.74 0 +caméscopes caméscope nom m p 0.78 0 0.04 0 +cana caner ver 0.09 1.15 0.01 0.07 ind:pas:3s; +canada canada nom f s 0.03 0.54 0.03 0.54 +canadair canadair nom m s 0.26 0 0.1 0 +canadairs canadair nom m p 0.26 0 0.16 0 +canadian_river canadian_river nom s 0 0.07 0 0.07 +canadien canadien adj m s 2.41 2.91 1.86 2.09 +canadienne canadienne adj f s 1.17 2.03 0.75 1.35 +canadiennes canadienne adj f p 1.17 2.03 0.41 0.68 +canadiens canadien nom m p 1.96 1.35 1.36 0.47 +canado canado adv 0.02 0 0.02 0 +canaille canaille nom f s 6.09 2.91 4.7 2.16 +canaillement canaillement adv 0 0.07 0 0.07 +canaillerie canaillerie nom f s 0 0.41 0 0.41 +canailles canaille nom f p 6.09 2.91 1.39 0.74 +canal canal nom m s 17.11 27.43 14.2 20.95 +canalicules canalicule nom m p 0 0.14 0 0.14 +canalisa canaliser ver 1.88 1.96 0 0.07 ind:pas:3s; +canalisaient canaliser ver 1.88 1.96 0 0.14 ind:imp:3p; +canalisait canaliser ver 1.88 1.96 0 0.2 ind:imp:3s; +canalisateur canalisateur nom m s 0.01 0 0.01 0 +canalisation canalisation nom f s 1.47 1.28 0.51 0.47 +canalisations canalisation nom f p 1.47 1.28 0.96 0.81 +canalise canaliser ver 1.88 1.96 0.5 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +canalisent canaliser ver 1.88 1.96 0.01 0.2 ind:pre:3p; +canaliser canaliser ver 1.88 1.96 1.06 0.74 inf; +canalisez canaliser ver 1.88 1.96 0.06 0 imp:pre:2p;ind:pre:2p; +canalisons canaliser ver 1.88 1.96 0.02 0.07 ind:pre:1p; +canalisé canaliser ver m s 1.88 1.96 0.11 0.27 par:pas; +canalisée canaliser ver f s 1.88 1.96 0.09 0.14 par:pas; +canalisées canaliser ver f p 1.88 1.96 0 0.14 par:pas; +canalisés canaliser ver m p 1.88 1.96 0.02 0 par:pas; +cananéen cananéen adj m s 0 0.07 0 0.07 +canapé canapé nom m s 18.58 20.27 17.66 17.97 +canapé_lit canapé_lit nom m s 0.02 1.15 0 1.15 +canapés canapé nom m p 18.58 20.27 0.93 2.3 +canapé_lit canapé_lit nom m p 0.02 1.15 0.02 0 +canaque canaque adj m s 0 0.34 0 0.34 +canaques canaque nom p 0 0.07 0 0.07 +canard canard nom m s 23.85 29.46 15.46 16.15 +canardaient canarder ver 1.36 1.35 0.05 0.07 ind:imp:3p; +canardait canarder ver 1.36 1.35 0.04 0.14 ind:imp:3s; +canarde canarder ver 1.36 1.35 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +canardeaux canardeau nom m p 0 0.07 0 0.07 +canardent canarder ver 1.36 1.35 0.08 0.2 ind:pre:3p; +canarder canarder ver 1.36 1.35 0.63 0.47 inf; +canardera canarder ver 1.36 1.35 0.02 0 ind:fut:3s; +canarderais canarder ver 1.36 1.35 0.01 0 cnd:pre:2s; +canarderont canarder ver 1.36 1.35 0.01 0 ind:fut:3p; +canardez canarder ver 1.36 1.35 0.03 0 imp:pre:2p; +canards canard nom m p 23.85 29.46 6.66 11.49 +canardé canarder ver m s 1.36 1.35 0.18 0.14 par:pas; +canardée canarder ver f s 1.36 1.35 0 0.07 par:pas; +canardés canarder ver m p 1.36 1.35 0.02 0.14 par:pas; +canari canari nom m s 2.72 2.77 1.51 1.49 +canaris canari nom m p 2.72 2.77 1.21 1.28 +canas caner ver 0.09 1.15 0 0.07 ind:pas:2s; +canasson canasson nom m s 0.98 1.49 0.58 1.01 +canassons canasson nom m p 0.98 1.49 0.4 0.47 +canasta canasta nom f s 0.21 0.68 0.21 0.68 +canaux canal nom m p 17.11 27.43 2.9 6.49 +cancan cancan nom m s 1.29 1.76 0.51 0.88 +cancanaient cancaner ver 0.31 0.68 0 0.14 ind:imp:3p; +cancanait cancaner ver 0.31 0.68 0 0.07 ind:imp:3s; +cancanant cancaner ver 0.31 0.68 0 0.2 par:pre; +cancane cancaner ver 0.31 0.68 0.03 0 ind:pre:3s; +cancaner cancaner ver 0.31 0.68 0.25 0.27 inf; +cancaneries cancanerie nom f p 0 0.07 0 0.07 +cancanes cancaner ver 0.31 0.68 0.03 0 ind:pre:2s; +cancanier cancanier nom m s 0.01 0.07 0.01 0 +cancanière cancanier adj f s 0.1 0.14 0.1 0.07 +cancanières cancanier nom f p 0.01 0.07 0 0.07 +cancans cancan nom m p 1.29 1.76 0.78 0.88 +cancel cancel nom m s 0.27 0 0.27 0 +cancer cancer nom m s 23.15 9.46 22.34 8.78 +cancers cancer nom m p 23.15 9.46 0.81 0.68 +canche canche nom f s 0.01 0 0.01 0 +cancoillotte cancoillotte nom f s 0 0.2 0 0.2 +cancre cancre nom m s 0.97 3.78 0.77 2.5 +cancrelat cancrelat nom m s 0.23 0.95 0.14 0.41 +cancrelats cancrelat nom m p 0.23 0.95 0.09 0.54 +cancres cancre nom m p 0.97 3.78 0.2 1.28 +cancéreuse cancéreux adj f s 0.62 0.74 0.22 0.34 +cancéreuses cancéreux adj f p 0.62 0.74 0.25 0.14 +cancéreux cancéreux adj m 0.62 0.74 0.16 0.27 +cancérigène cancérigène adj s 0.38 0.27 0.3 0.07 +cancérigènes cancérigène adj p 0.38 0.27 0.08 0.2 +cancériser cancériser ver 0 0.07 0 0.07 inf; +cancérogène cancérogène adj m s 0.02 0 0.02 0 +cancérologie cancérologie nom f s 0.01 0 0.01 0 +cancérologue cancérologue nom s 0.12 0 0.09 0 +cancérologues cancérologue nom p 0.12 0 0.04 0 +candeur candeur nom f s 1.27 4.59 1.27 4.46 +candeurs candeur nom f p 1.27 4.59 0 0.14 +candi candi adj m s 0.24 0.34 0.24 0.27 +candida candida nom m s 0.13 0 0.13 0 +candidat candidat nom m s 17.7 8.04 9.63 2.84 +candidate candidat nom f s 17.7 8.04 1.8 0.74 +candidates candidat nom f p 17.7 8.04 0.6 0.47 +candidats candidat nom m p 17.7 8.04 5.67 3.99 +candidature candidature nom f s 2.71 1.76 2.15 1.42 +candidatures candidature nom f p 2.71 1.76 0.56 0.34 +candide candide adj s 0.96 4.73 0.89 3.92 +candidement candidement adv 0 0.47 0 0.47 +candides candide adj p 0.96 4.73 0.07 0.81 +candidose candidose nom f s 0.04 0 0.04 0 +candie candir ver f s 0 0.74 0 0.68 par:pas; +candis candi adj m p 0.24 0.34 0 0.07 +candélabre candélabre nom m s 0.5 3.24 0.34 1.42 +candélabres candélabre nom m p 0.5 3.24 0.16 1.82 +cane canard nom f s 23.85 29.46 1.61 1.55 +canebière canebière nom f s 0 1.28 0 1.28 +canepetière canepetière nom f s 0 0.07 0 0.07 +caner caner ver 0.09 1.15 0.04 0.47 inf; +caneras caner ver 0.09 1.15 0 0.07 ind:fut:2s; +canes canard nom f p 23.85 29.46 0.13 0.27 +canetille canetille nom f s 0 0.07 0 0.07 +caneton caneton nom m s 0.69 1.82 0.48 1.15 +canetons caneton nom m p 0.69 1.82 0.21 0.68 +canette canette nom f s 1.95 6.62 1.1 3.18 +canettes canette nom f p 1.95 6.62 0.85 3.45 +canevas canevas nom m 0.32 1.35 0.32 1.35 +canfouine canfouine nom f s 0 0.41 0 0.41 +cangue cangue nom f s 0 0.07 0 0.07 +caniche caniche nom m s 2.56 3.99 2 3.72 +caniches caniche nom m p 2.56 3.99 0.56 0.27 +caniculaire caniculaire adj s 0.02 0.54 0.02 0.34 +caniculaires caniculaire adj m p 0.02 0.54 0 0.2 +canicule canicule nom f s 0.38 3.58 0.35 3.31 +canicules canicule nom f p 0.38 3.58 0.02 0.27 +canidés canidé nom m p 0.07 0 0.07 0 +canif canif nom m s 0.95 4.93 0.91 4.32 +canifs canif nom m p 0.95 4.93 0.04 0.61 +canin canin adj m s 0.76 0.61 0.56 0.61 +canine canine adj f s 0.54 1.08 0.41 1.01 +canines canine nom f p 0.47 1.15 0.25 0.47 +caninette caninette nom f s 0 0.07 0 0.07 +canins canin adj m p 0.76 0.61 0.2 0 +canisses canisse nom f p 0 0.07 0 0.07 +caniveau caniveau nom m s 2.94 7.16 2.86 5.27 +caniveaux caniveau nom m p 2.94 7.16 0.08 1.89 +canna canna nom m s 0.1 0.54 0.1 0 +cannabis cannabis nom m 1.05 0.14 1.05 0.14 +cannage cannage nom m s 0 0.2 0 0.2 +cannait canner ver 0.31 2.57 0 0.14 ind:imp:3s; +cannant canner ver 0.31 2.57 0 0.07 par:pre; +cannas canna nom m p 0.1 0.54 0 0.54 +canne canne nom f s 10.91 34.32 10.21 26.62 +canne_épée canne_épée nom f s 0.01 0.54 0.01 0.34 +canneberge canneberge nom f s 0.46 0 0.17 0 +canneberges canneberge nom f p 0.46 0 0.29 0 +canneliers cannelier nom m p 0 0.2 0 0.2 +cannelle cannelle nom f s 1.38 2.97 1.38 2.97 +cannelloni cannelloni nom m s 0.93 0 0.67 0 +cannellonis cannelloni nom m p 0.93 0 0.27 0 +cannelure cannelure nom f s 0.18 0.95 0.01 0.27 +cannelures cannelure nom f p 0.18 0.95 0.17 0.68 +cannelé cannelé adj m s 0.01 0.2 0.01 0 +cannelée canneler ver f s 0.01 0.07 0.01 0 par:pas; +cannelées cannelé adj f p 0.01 0.2 0 0.07 +cannelés cannelé adj m p 0.01 0.2 0 0.07 +canner canner ver 0.31 2.57 0.28 0.68 inf; +canneraient canner ver 0.31 2.57 0 0.07 cnd:pre:3p; +cannes canne nom f p 10.91 34.32 0.71 7.7 +canne_épée canne_épée nom f p 0.01 0.54 0 0.2 +cannette cannette nom f s 0.66 0.14 0.42 0.14 +cannettes cannette nom f p 0.66 0.14 0.25 0 +cannibale cannibale nom s 4.06 0.95 1.11 0.27 +cannibales cannibale nom p 4.06 0.95 2.95 0.68 +cannibalisme cannibalisme nom m s 1.61 0.47 1.61 0.47 +canné canner ver m s 0.31 2.57 0.02 0.68 par:pas; +cannée canné adj f s 0 1.28 0 0.47 +cannées canné adj f p 0 1.28 0 0.27 +canon canon nom m s 22.22 48.99 14.89 28.65 +canoniale canonial adj f s 0 0.14 0 0.07 +canoniales canonial adj f p 0 0.14 0 0.07 +canonique canonique adj s 0.22 0.68 0.22 0.47 +canoniquement canoniquement adv 0 0.07 0 0.07 +canoniques canonique adj f p 0.22 0.68 0 0.2 +canonisation canonisation nom f s 0.06 0.47 0.05 0.34 +canonisations canonisation nom f p 0.06 0.47 0.01 0.14 +canoniser canoniser ver 0.61 1.01 0.22 0.14 inf; +canonisez canoniser ver 0.61 1.01 0.1 0.07 imp:pre:2p; +canonisé canoniser ver m s 0.61 1.01 0.25 0.27 par:pas; +canonisée canoniser ver f s 0.61 1.01 0.04 0.27 par:pas; +canonisés canoniser ver m p 0.61 1.01 0 0.27 par:pas; +canonnade canonnade nom f s 0.04 2.7 0.04 2.57 +canonnades canonnade nom f p 0.04 2.7 0 0.14 +canonnage canonnage nom m s 0.01 0 0.01 0 +canonnait canonner ver 0.01 0.54 0 0.07 ind:imp:3s; +canonner canonner ver 0.01 0.54 0 0.2 inf; +canonnier canonnier nom m s 0.39 0.95 0.16 0.47 +canonniers canonnier nom m p 0.39 0.95 0.23 0.47 +canonnière canonnière nom f s 0.34 0.61 0.31 0.41 +canonnières canonnière nom f p 0.34 0.61 0.03 0.2 +canonné canonner ver m s 0.01 0.54 0 0.14 par:pas; +canonnées canonner ver f p 0.01 0.54 0 0.07 par:pas; +canonnés canonner ver m p 0.01 0.54 0.01 0.07 par:pas; +canons canon nom m p 22.22 48.99 7.34 20.34 +canope canope nom m s 0.09 0 0.07 0 +canopes canope nom m p 0.09 0 0.02 0 +canot canot nom m s 4.58 9.19 3.31 7.16 +canotage canotage nom m s 0.04 0.34 0.04 0.34 +canotaient canoter ver 0.01 0.47 0 0.07 ind:imp:3p; +canote canoter ver 0.01 0.47 0 0.07 ind:pre:3s; +canotent canoter ver 0.01 0.47 0.01 0 ind:pre:3p; +canoter canoter ver 0.01 0.47 0 0.2 inf; +canoteurs canoteur nom m p 0 0.07 0 0.07 +canotier canotier nom m s 0.16 3.04 0 2.36 +canotiers canotier nom m p 0.16 3.04 0.16 0.68 +canots canot nom m p 4.58 9.19 1.27 2.03 +canotâmes canoter ver 0.01 0.47 0 0.07 ind:pas:1p; +canoté canoter ver m s 0.01 0.47 0 0.07 par:pas; +canoë canoë nom m s 1.95 1.49 1.73 1.22 +canoës canoë nom m p 1.95 1.49 0.22 0.27 +cantabile cantabile nom m s 0.02 0.61 0.02 0.61 +cantabrique cantabrique adj f s 0 0.2 0 0.07 +cantabriques cantabrique adj p 0 0.2 0 0.14 +cantal cantal nom m s 0 0.27 0 0.27 +cantaloup cantaloup nom m s 0.07 0.07 0.06 0 +cantaloups cantaloup nom m p 0.07 0.07 0.01 0.07 +cantate cantate nom f s 0.25 0.54 0.24 0.27 +cantates cantate nom f p 0.25 0.54 0.01 0.27 +cantatrice cantatrice nom f s 0.59 2.43 0.55 1.76 +cantatrices cantatrice nom f p 0.59 2.43 0.04 0.68 +canter canter nom m s 0.02 0.27 0.02 0.27 +canthare canthare nom m s 0 0.2 0 0.14 +canthares canthare nom m p 0 0.2 0 0.07 +cantharide cantharide nom f s 0.07 0.14 0.06 0.07 +cantharides cantharide nom f p 0.07 0.14 0.01 0.07 +cantilever cantilever nom m s 0.07 0 0.07 0 +cantilène cantilène nom f s 0.11 0.34 0.11 0.34 +cantina cantiner ver 0.33 0.34 0.33 0 ind:pas:3s; +cantinaient cantiner ver 0.33 0.34 0 0.07 ind:imp:3p; +cantine cantine nom f s 4.23 12.16 3.76 10.61 +cantiner cantiner ver 0.33 0.34 0 0.27 inf; +cantines cantine nom f p 4.23 12.16 0.47 1.55 +cantinier cantinier nom m s 0.23 1.15 0.05 0.07 +cantiniers cantinier nom m p 0.23 1.15 0.14 0.2 +cantinière cantinier nom f s 0.23 1.15 0.04 0.68 +cantinières cantinier nom f p 0.23 1.15 0.01 0.2 +cantique cantique nom m s 1.68 6.62 0.83 2.5 +cantiques cantique nom m p 1.68 6.62 0.84 4.12 +canton canton nom m s 0.36 4.73 0.34 3.58 +cantonade cantonade nom f s 0.01 3.45 0.01 3.45 +cantonais cantonais adj m s 0.28 0 0.27 0 +cantonaise cantonais adj f s 0.28 0 0.02 0 +cantonal cantonal adj m s 0.34 0.34 0 0.07 +cantonale cantonal adj f s 0.34 0.34 0.34 0.07 +cantonales cantonal adj f p 0.34 0.34 0 0.2 +cantonna cantonner ver 0.76 5 0 0.14 ind:pas:3s; +cantonnai cantonner ver 0.76 5 0 0.14 ind:pas:1s; +cantonnaient cantonner ver 0.76 5 0.1 0.2 ind:imp:3p; +cantonnais cantonner ver 0.76 5 0.04 0 ind:imp:1s; +cantonnait cantonner ver 0.76 5 0 0.34 ind:imp:3s; +cantonnant cantonner ver 0.76 5 0.01 0.14 par:pre; +cantonne cantonner ver 0.76 5 0.21 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cantonnement cantonnement nom m s 0.81 5.2 0.68 3.24 +cantonnements cantonnement nom m p 0.81 5.2 0.14 1.96 +cantonnent cantonner ver 0.76 5 0 0.27 ind:pre:3p; +cantonner cantonner ver 0.76 5 0.08 0.47 inf; +cantonneraient cantonner ver 0.76 5 0 0.07 cnd:pre:3p; +cantonnez cantonner ver 0.76 5 0.03 0 imp:pre:2p;ind:pre:2p; +cantonnier cantonnier nom m s 0.19 3.04 0.17 1.96 +cantonniers cantonnier nom m p 0.19 3.04 0.03 1.01 +cantonnières cantonnier nom f p 0.19 3.04 0 0.07 +cantonnons cantonner ver 0.76 5 0.01 0.27 imp:pre:1p;ind:pre:1p; +cantonnèrent cantonner ver 0.76 5 0 0.07 ind:pas:3p; +cantonné cantonner ver m s 0.76 5 0.23 0.88 par:pas; +cantonnée cantonner ver f s 0.76 5 0.01 0.41 par:pas; +cantonnées cantonner ver f p 0.76 5 0.02 0.34 par:pas; +cantonnés cantonner ver m p 0.76 5 0.01 0.81 par:pas; +cantons canton nom m p 0.36 4.73 0.02 1.15 +cantre cantre nom m s 0 0.07 0 0.07 +canulant canuler ver 0 0.07 0 0.07 par:pre; +canular canular nom m s 1.98 0.81 1.71 0.74 +canularesque canularesque adj s 0 0.07 0 0.07 +canulars canular nom m p 1.98 0.81 0.27 0.07 +canule canule nom f s 0.23 0.07 0.23 0.07 +canut canut nom m s 0.01 0.14 0 0.07 +canuts canut nom m p 0.01 0.14 0.01 0.07 +canyon canyon nom m s 4.45 0.88 4.18 0.47 +canyons canyon nom m p 4.45 0.88 0.27 0.41 +canzonettes canzonette nom f p 0 0.07 0 0.07 +cané caner ver m s 0.09 1.15 0.04 0.34 par:pas; +canés caner ver m p 0.09 1.15 0 0.07 par:pas; +caoua caoua nom m s 0.07 2.43 0.07 2.3 +caouas caoua nom m p 0.07 2.43 0 0.14 +caoutchouc caoutchouc nom m s 5.59 16.55 5.2 16.01 +caoutchoucs caoutchouc nom m p 5.59 16.55 0.39 0.54 +caoutchouteuse caoutchouteux adj f s 0.06 0.88 0 0.14 +caoutchouteuses caoutchouteux adj f p 0.06 0.88 0 0.2 +caoutchouteux caoutchouteux adj m 0.06 0.88 0.06 0.54 +caoutchouté caoutchouter ver m s 0.01 0.2 0.01 0 par:pas; +caoutchoutée caoutchouté adj f s 0 1.08 0 0.27 +caoutchoutées caoutchouté adj f p 0 1.08 0 0.47 +caoutchoutés caoutchouté adj m p 0 1.08 0 0.07 +cap cap nom m s 19.49 16.55 19.48 15.68 +cap_hornier cap_hornier nom m s 0 0.07 0 0.07 +capable capable adj s 76.85 86.35 65.15 69.73 +capables capable adj p 76.85 86.35 11.7 16.62 +capacité capacité nom f s 17.29 14.39 9.42 8.38 +capacités capacité nom f p 17.29 14.39 7.87 6.01 +capades capade nom f p 0.06 0 0.06 0 +caparaçon caparaçon nom m s 0 0.54 0 0.27 +caparaçonnait caparaçonner ver 0 1.08 0 0.07 ind:imp:3s; +caparaçonne caparaçonner ver 0 1.08 0 0.07 ind:pre:3s; +caparaçonné caparaçonner ver m s 0 1.08 0 0.41 par:pas; +caparaçonnée caparaçonner ver f s 0 1.08 0 0.07 par:pas; +caparaçonnées caparaçonner ver f p 0 1.08 0 0.07 par:pas; +caparaçonnés caparaçonner ver m p 0 1.08 0 0.41 par:pas; +caparaçons caparaçon nom m p 0 0.54 0 0.27 +cape cape nom f s 6.25 11.69 5.4 10.34 +capelage capelage nom m s 0.02 0.07 0.02 0.07 +capeline capeline nom f s 0.11 2.5 0.1 2.09 +capelines capeline nom f p 0.11 2.5 0.01 0.41 +capelé capeler ver m s 0 0.14 0 0.14 par:pas; +caper caper ver 0.02 0 0.02 0 inf; +capes cape nom f p 6.25 11.69 0.85 1.35 +capharnaüm capharnaüm nom m s 0.05 1.49 0.05 1.49 +capillaire capillaire adj s 0.93 0.47 0.48 0.2 +capillaires capillaire adj p 0.93 0.47 0.45 0.27 +capillarité capillarité nom f s 0 0.07 0 0.07 +capilliculteur capilliculteur nom m s 0.01 0 0.01 0 +capilotade capilotade nom f s 0.01 0.74 0.01 0.61 +capilotades capilotade nom f p 0.01 0.74 0 0.14 +capisco capisco nom m s 0.03 0.2 0.03 0.2 +capitaine capitaine nom m s 152.69 92.57 150.59 88.45 +capitainerie capitainerie nom f s 0.15 0.14 0.15 0.14 +capitaines capitaine nom m p 152.69 92.57 2.11 4.12 +capital capital nom m s 6.56 9.86 5.49 6.96 +capital_risque capital_risque nom m s 0.04 0 0.04 0 +capitale capitale nom f s 13.35 26.62 12.57 23.18 +capitalement capitalement adv 0 0.07 0 0.07 +capitales capitale nom f p 13.35 26.62 0.78 3.45 +capitalisation capitalisation nom f s 0.03 0.14 0.03 0.14 +capitalise capitaliser ver 0.22 0.2 0 0.07 ind:pre:3s; +capitaliser capitaliser ver 0.22 0.2 0.2 0.07 inf; +capitalisme capitalisme nom m s 2.97 3.65 2.97 3.65 +capitalisons capitaliser ver 0.22 0.2 0 0.07 ind:pre:1p; +capitaliste capitaliste adj s 1.89 2.03 1.63 1.28 +capitalistes capitaliste nom p 1.09 1.35 0.58 0.81 +capitalistiques capitalistique adj f p 0 0.07 0 0.07 +capitalisé capitaliser ver m s 0.22 0.2 0.01 0 par:pas; +capitalisés capitaliser ver m p 0.22 0.2 0.01 0 par:pas; +capitan capitan nom m s 0.1 0.81 0.1 0.74 +capitanat capitanat nom m s 0.01 0 0.01 0 +capitane capitane nom m s 0.01 0 0.01 0 +capitans capitan nom m p 0.1 0.81 0 0.07 +capitaux capital nom m p 6.56 9.86 1.07 2.91 +capiteuse capiteux adj f s 0.25 2.3 0 0.54 +capiteuses capiteux adj f p 0.25 2.3 0.01 0.27 +capiteux capiteux adj m 0.25 2.3 0.24 1.49 +capitole capitole nom m s 0.1 0.07 0.1 0.07 +capiton capiton nom m s 0 0.54 0 0.2 +capitonnage capitonnage nom m s 0.01 0.27 0.01 0.27 +capitonnaient capitonner ver 0.09 2.7 0 0.07 ind:imp:3p; +capitonnait capitonner ver 0.09 2.7 0 0.07 ind:imp:3s; +capitonner capitonner ver 0.09 2.7 0 0.34 inf; +capitonné capitonner ver m s 0.09 2.7 0.02 0.81 par:pas; +capitonnée capitonné adj f s 0.32 2.23 0.28 0.74 +capitonnées capitonné adj f p 0.32 2.23 0.01 0.41 +capitonnés capitonner ver m p 0.09 2.7 0.02 0.61 par:pas; +capitons capiton nom m p 0 0.54 0 0.34 +capitouls capitoul nom m p 0 0.07 0 0.07 +capitula capituler ver 2.31 4.8 0 0.47 ind:pas:3s; +capitulaient capituler ver 2.31 4.8 0.01 0.14 ind:imp:3p; +capitulaire capitulaire adj m s 0 0.07 0 0.07 +capitulais capituler ver 2.31 4.8 0 0.07 ind:imp:1s; +capitulait capituler ver 2.31 4.8 0.01 0.14 ind:imp:3s; +capitulant capituler ver 2.31 4.8 0.01 0.07 par:pre; +capitulard capitulard nom m s 0.01 0 0.01 0 +capitulation capitulation nom f s 0.81 7.77 0.8 7.7 +capitulations capitulation nom f p 0.81 7.77 0.01 0.07 +capitule capituler ver 2.31 4.8 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +capitulent capituler ver 2.31 4.8 0.13 0 ind:pre:3p; +capituler capituler ver 2.31 4.8 0.58 1.82 inf; +capitulera capituler ver 2.31 4.8 0 0.07 ind:fut:3s; +capitulerait capituler ver 2.31 4.8 0.02 0.07 cnd:pre:3s; +capitulerez capituler ver 2.31 4.8 0 0.14 ind:fut:2p; +capitulerons capituler ver 2.31 4.8 0.04 0 ind:fut:1p; +capituleront capituler ver 2.31 4.8 0.01 0 ind:fut:3p; +capitules capituler ver 2.31 4.8 0.02 0 ind:pre:2s; +capituliez capituler ver 2.31 4.8 0.01 0 ind:imp:2p; +capitulions capituler ver 2.31 4.8 0.11 0 ind:imp:1p; +capitulons capituler ver 2.31 4.8 0.22 0 ind:pre:1p; +capitulèrent capituler ver 2.31 4.8 0.02 0 ind:pas:3p; +capitulé capituler ver m s 2.31 4.8 0.84 1.69 par:pas; +capo capo nom m s 2.17 0.14 2.03 0.14 +capoc capoc nom m s 0 0.07 0 0.07 +capon capon adj m s 0.14 0.41 0.14 0.34 +capons capon adj m p 0.14 0.41 0.01 0.07 +caporal caporal nom m s 10.22 18.99 9.95 17.03 +caporal_chef caporal_chef nom m s 0.52 0.54 0.52 0.54 +caporale caporal nom f s 10.22 18.99 0.04 0 +caporaux caporal nom m p 10.22 18.99 0.23 1.96 +capos capo nom m p 2.17 0.14 0.14 0 +capot capot nom m s 3.17 8.18 3.13 7.23 +capota capoter ver 0.9 1.15 0 0.07 ind:pas:3s; +capotaient capoter ver 0.9 1.15 0.01 0.07 ind:imp:3p; +capote capote nom f s 7.59 18.04 4.67 13.45 +capoter capoter ver 0.9 1.15 0.54 0.61 inf; +capotes capote nom f p 7.59 18.04 2.92 4.59 +capots capot nom m p 3.17 8.18 0.03 0.95 +capoté capoter ver m s 0.9 1.15 0.15 0.2 par:pas; +capotée capoter ver f s 0.9 1.15 0 0.07 par:pas; +cappa cappa nom f s 0.01 0 0.01 0 +cappuccino cappuccino nom m s 1.98 0.07 1.79 0.07 +cappuccinos cappuccino nom m p 1.98 0.07 0.19 0 +capricant capricant adj m s 0 0.14 0 0.07 +capricants capricant adj m p 0 0.14 0 0.07 +caprice caprice nom m s 8.94 18.31 4.63 9.32 +caprices caprice nom m p 8.94 18.31 4.31 8.99 +capricieuse capricieux adj f s 3.37 6.76 0.71 2.16 +capricieusement capricieusement adv 0.1 0.74 0.1 0.74 +capricieuses capricieux adj f p 3.37 6.76 0.54 1.55 +capricieux capricieux adj m 3.37 6.76 2.12 3.04 +capricorne capricorne nom m s 0.34 0 0.29 0 +capricornes capricorne nom m p 0.34 0 0.05 0 +caprine caprin adj f s 0 0.07 0 0.07 +caps cap nom m p 19.49 16.55 0.01 0.88 +capsulaire capsulaire adj f s 0.03 0 0.03 0 +capsule capsule nom f s 5.69 3.18 3.96 1.82 +capsules capsule nom f p 5.69 3.18 1.73 1.35 +capsulé capsuler ver m s 0.02 0.07 0 0.07 par:pas; +capta capter ver 9.89 9.59 0 0.2 ind:pas:3s; +captage captage nom m s 0.02 0 0.02 0 +captaient capter ver 9.89 9.59 0 0.07 ind:imp:3p; +captais capter ver 9.89 9.59 0.01 0.27 ind:imp:1s;ind:imp:2s; +captait capter ver 9.89 9.59 0.11 0.47 ind:imp:3s; +captant capter ver 9.89 9.59 0.01 0.27 par:pre; +captation captation nom f s 0 0.14 0 0.07 +captations captation nom f p 0 0.14 0 0.07 +capte capter ver 9.89 9.59 3.84 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +captent capter ver 9.89 9.59 0.19 0.2 ind:pre:3p; +capter capter ver 9.89 9.59 1.95 3.85 inf; +capterai capter ver 9.89 9.59 0.04 0 ind:fut:1s; +capterais capter ver 9.89 9.59 0.01 0.14 cnd:pre:1s; +capterait capter ver 9.89 9.59 0.01 0.07 cnd:pre:3s; +capteront capter ver 9.89 9.59 0.01 0.07 ind:fut:3p; +capteur capteur nom m s 2.79 0 1.1 0 +capteurs capteur nom m p 2.79 0 1.69 0 +captez capter ver 9.89 9.59 0.62 0 imp:pre:2p;ind:pre:2p; +captieuse captieux adj f s 0 0.14 0 0.07 +captieux captieux adj m p 0 0.14 0 0.07 +captif captif adj m s 1.11 4.8 0.63 2.16 +captifs captif nom m p 1.19 3.45 0.46 1.15 +captions capter ver 9.89 9.59 0.27 0.14 ind:imp:1p; +captiva captiver ver 1.01 4.12 0.03 0.07 ind:pas:3s; +captivaient captiver ver 1.01 4.12 0 0.27 ind:imp:3p; +captivait captiver ver 1.01 4.12 0.03 1.08 ind:imp:3s; +captivant captivant adj m s 0.87 1.55 0.62 0.95 +captivante captivant adj f s 0.87 1.55 0.22 0.41 +captivantes captivant adj f p 0.87 1.55 0.03 0.2 +captive captif nom f s 1.19 3.45 0.52 1.35 +captivent captiver ver 1.01 4.12 0.04 0.14 ind:pre:3p; +captiver captiver ver 1.01 4.12 0.14 0.47 inf; +captives captif nom f p 1.19 3.45 0.06 0.34 +captivité captivité nom f s 2.15 4.46 2.15 4.46 +captivèrent captiver ver 1.01 4.12 0 0.07 ind:pas:3p; +captivé captiver ver m s 1.01 4.12 0.27 1.49 par:pas; +captivée captiver ver f s 1.01 4.12 0.05 0.27 par:pas; +captivés captiver ver m p 1.01 4.12 0.34 0.14 par:pas; +captons capter ver 9.89 9.59 0.34 0 imp:pre:1p;ind:pre:1p; +captura capturer ver 17.67 5.81 0.03 0.2 ind:pas:3s; +capturait capturer ver 17.67 5.81 0.02 0.27 ind:imp:3s; +capturant capturer ver 17.67 5.81 0.09 0.07 par:pre; +capture capture nom f s 3 1.76 2.93 1.69 +capturent capturer ver 17.67 5.81 0.23 0 ind:pre:3p; +capturer capturer ver 17.67 5.81 6.17 1.82 inf; +capturera capturer ver 17.67 5.81 0.28 0.07 ind:fut:3s; +capturerait capturer ver 17.67 5.81 0.02 0 cnd:pre:3s; +captureras capturer ver 17.67 5.81 0.02 0 ind:fut:2s; +capturerez capturer ver 17.67 5.81 0.02 0 ind:fut:2p; +capturerons capturer ver 17.67 5.81 0.14 0 ind:fut:1p; +captureront capturer ver 17.67 5.81 0.02 0 ind:fut:3p; +captures capture nom f p 3 1.76 0.07 0.07 +capturez capturer ver 17.67 5.81 0.51 0 imp:pre:2p;ind:pre:2p; +capturons capturer ver 17.67 5.81 0.07 0 imp:pre:1p;ind:pre:1p; +capturé capturer ver m s 17.67 5.81 6.33 2.09 par:pas; +capturée capturer ver f s 17.67 5.81 0.83 0.27 par:pas; +capturées capturer ver f p 17.67 5.81 0.09 0.2 par:pas; +capturés capturer ver m p 17.67 5.81 1.96 0.68 par:pas; +capté capter ver m s 9.89 9.59 2.03 1.62 par:pas; +captée capter ver f s 9.89 9.59 0.22 0.41 par:pas; +captées capter ver f p 9.89 9.59 0.04 0.27 par:pas; +captés capter ver m p 9.89 9.59 0.2 0.2 par:pas; +capuccino capuccino nom m s 0.27 0.14 0.27 0.14 +capuche capuche nom f s 1.6 0.74 1.53 0.61 +capuches capuche nom f p 1.6 0.74 0.07 0.14 +capuchon capuchon nom m s 1.02 6.42 1.02 5.81 +capuchonnés capuchonner ver m p 0 0.07 0 0.07 par:pas; +capuchons capuchon nom m p 1.02 6.42 0 0.61 +capucin capucin nom m s 0.18 1.15 0.03 0.74 +capucinade capucinade nom f s 0 0.14 0 0.07 +capucinades capucinade nom f p 0 0.14 0 0.07 +capucine capucine nom f s 0.13 1.22 0 0.27 +capucines capucine nom f p 0.13 1.22 0.13 0.95 +capucino capucino nom m 0 0.07 0 0.07 +capucins capucin nom m p 0.18 1.15 0.14 0.41 +capulet capulet nom m s 0 0.07 0 0.07 +caput_mortuum caput_mortuum nom m s 0 0.07 0 0.07 +capétien capétien adj m s 0 0.34 0 0.2 +capétienne capétien adj f s 0 0.34 0 0.07 +capétiennes capétien adj f p 0 0.34 0 0.07 +caque caque nom f s 0.12 0.54 0.12 0.41 +caquelon caquelon nom m s 0 0.07 0 0.07 +caques caque nom f p 0.12 0.54 0 0.14 +caquet caquet nom m s 0.46 0.61 0.45 0.41 +caquetage caquetage nom m s 0.14 1.22 0.04 0.74 +caquetages caquetage nom m p 0.14 1.22 0.11 0.47 +caquetaient caqueter ver 0.53 1.55 0 0.54 ind:imp:3p; +caquetait caqueter ver 0.53 1.55 0 0.07 ind:imp:3s; +caquetant caqueter ver 0.53 1.55 0.01 0.2 par:pre; +caquetante caquetant adj f s 0.02 0.27 0 0.14 +caquetantes caquetant adj f p 0.02 0.27 0.01 0.07 +caqueter caqueter ver 0.53 1.55 0.31 0.14 inf; +caqueteuse caqueteur nom f s 0 0.07 0 0.07 +caquets caquet nom m p 0.46 0.61 0.01 0.2 +caquette caqueter ver 0.53 1.55 0.07 0.2 ind:pre:1s;ind:pre:3s; +caquettent caqueter ver 0.53 1.55 0.14 0.41 ind:pre:3p; +caquètement caquètement nom m s 0.04 0.47 0.02 0.27 +caquètements caquètement nom m p 0.04 0.47 0.01 0.2 +car car con 237.2 469.32 237.2 469.32 +carabas carabas nom m 0 0.2 0 0.2 +carabe carabe nom m s 0.01 0.2 0 0.07 +carabes carabe nom m p 0.01 0.2 0.01 0.14 +carabin carabin nom m s 0.01 0.47 0 0.27 +carabine carabine nom f s 2.71 11.15 2.08 10.07 +carabines carabine nom f p 2.71 11.15 0.63 1.08 +carabinier carabinier nom m s 2.91 1.69 0.96 0.2 +carabiniers carabinier nom m p 2.91 1.69 1.94 1.49 +carabins carabin nom m p 0.01 0.47 0.01 0.2 +carabiné carabiné adj m s 0.21 1.08 0.04 0.2 +carabinée carabiné adj f s 0.21 1.08 0.17 0.81 +carabinés carabiné adj m p 0.21 1.08 0 0.07 +carabosse carabosse nom f s 0.12 1.62 0.12 1.62 +caracal caracal nom m s 0 0.14 0 0.14 +caraco caraco nom m s 0.28 1.01 0.14 0.81 +caracola caracoler ver 0.09 1.76 0 0.14 ind:pas:3s; +caracolade caracolade nom f s 0 0.27 0 0.27 +caracolait caracoler ver 0.09 1.76 0.01 0.2 ind:imp:3s; +caracolant caracoler ver 0.09 1.76 0.01 0.27 par:pre; +caracole caracoler ver 0.09 1.76 0.03 0.27 ind:pre:1s;ind:pre:3s; +caracolent caracoler ver 0.09 1.76 0.01 0.27 ind:pre:3p; +caracoler caracoler ver 0.09 1.76 0.02 0.54 inf; +caracolerez caracoler ver 0.09 1.76 0 0.07 ind:fut:2p; +caracos caraco nom m p 0.28 1.01 0.14 0.2 +caractère caractère nom m s 18.86 62.16 17.22 47.5 +caractères caractère nom m p 18.86 62.16 1.65 14.66 +caractériel caractériel adj m s 0.49 0.68 0.28 0.27 +caractérielle caractériel adj f s 0.49 0.68 0.02 0.14 +caractérielles caractériel adj f p 0.49 0.68 0.14 0 +caractériels caractériel adj m p 0.49 0.68 0.05 0.27 +caractérisait caractériser ver 0.91 3.58 0.15 0.47 ind:imp:3s; +caractérisant caractériser ver 0.91 3.58 0.01 0 par:pre; +caractérisation caractérisation nom f s 0.01 0 0.01 0 +caractérise caractériser ver 0.91 3.58 0.25 2.16 ind:pre:3s; +caractérisent caractériser ver 0.91 3.58 0.04 0.2 ind:pre:3p; +caractériser caractériser ver 0.91 3.58 0.11 0.34 inf; +caractériserais caractériser ver 0.91 3.58 0.01 0 cnd:pre:1s; +caractériserait caractériser ver 0.91 3.58 0 0.07 cnd:pre:3s; +caractéristique caractéristique adj s 1.31 4.73 0.9 3.78 +caractéristiques caractéristique nom f p 3.69 2.77 2.81 2.09 +caractérisé caractériser ver m s 0.91 3.58 0.29 0.2 par:pas; +caractérisée caractérisé adj f s 0.2 0.81 0.13 0.27 +caractérisées caractérisé adj f p 0.2 0.81 0 0.2 +caractérisés caractériser ver m p 0.91 3.58 0.01 0 par:pas; +caractérologie caractérologie nom f s 0 0.07 0 0.07 +caracul caracul nom m s 0.27 0 0.27 0 +carafe carafe nom f s 1.04 5.47 1.02 4.46 +carafes carafe nom f p 1.04 5.47 0.02 1.01 +carafon carafon nom m s 0.16 0.68 0.01 0.61 +carafons carafon nom m p 0.16 0.68 0.15 0.07 +caramba caramba ono 0.77 0.07 0.77 0.07 +carambar carambar nom m s 0.43 0.34 0.3 0.14 +carambars carambar nom m p 0.43 0.34 0.13 0.2 +carambolage carambolage nom m s 0.48 0.47 0.31 0.34 +carambolages carambolage nom m p 0.48 0.47 0.17 0.14 +carambolaient caramboler ver 0.02 0.95 0 0.14 ind:imp:3p; +carambolait caramboler ver 0.02 0.95 0 0.07 ind:imp:3s; +carambole caramboler ver 0.02 0.95 0.01 0.2 ind:pre:1s;ind:pre:3s; +carambolent caramboler ver 0.02 0.95 0 0.07 ind:pre:3p; +caramboler caramboler ver 0.02 0.95 0.01 0.41 inf; +caramboles carambole nom f p 0.14 0.07 0.14 0 +carambolé caramboler ver m s 0.02 0.95 0 0.07 par:pas; +carambouillage carambouillage nom m s 0 0.14 0 0.14 +carambouille carambouille nom f s 0 0.27 0 0.27 +carambouilleurs carambouilleur nom m p 0 0.2 0 0.2 +carambouillé carambouiller ver m s 0 0.07 0 0.07 par:pas; +caramel caramel nom m s 2.76 3.38 1.56 2.3 +caramels caramel nom m p 2.76 3.38 1.2 1.08 +caramélisait caraméliser ver 0.17 0.27 0 0.07 ind:imp:3s; +caramélise caraméliser ver 0.17 0.27 0.01 0.14 ind:pre:3s; +caraméliser caraméliser ver 0.17 0.27 0.01 0 inf; +caramélisé caraméliser ver m s 0.17 0.27 0.14 0.07 par:pas; +caramélisée caramélisé adj f s 0.11 0.27 0.02 0 +caramélisées caramélisé adj f p 0.11 0.27 0.04 0 +caramélisés caramélisé adj m p 0.11 0.27 0.03 0.07 +carapace carapace nom f s 1.25 8.38 1.22 6.62 +carapaces carapace nom f p 1.25 8.38 0.04 1.76 +carapatait carapater ver 0.14 1.01 0 0.07 ind:imp:3s; +carapate carapater ver 0.14 1.01 0.02 0.34 ind:pre:1s;ind:pre:3s; +carapatent carapater ver 0.14 1.01 0.01 0.07 ind:pre:3p; +carapater carapater ver 0.14 1.01 0.01 0.41 inf; +carapaté carapater ver m s 0.14 1.01 0.1 0.07 par:pas; +carapatés carapater ver m p 0.14 1.01 0 0.07 par:pas; +caraque caraque nom f s 0 0.2 0 0.2 +carat carat nom m s 1.46 2.23 0.14 1.15 +carats carat nom m p 1.46 2.23 1.33 1.08 +caravane caravane nom f s 11.64 6.76 10.34 5.14 +caravanes caravane nom f p 11.64 6.76 1.3 1.62 +caravanier caravanier nom m s 0.41 1.22 0.41 0.07 +caravaniers caravanier nom m p 0.41 1.22 0 0.74 +caravaning caravaning nom m s 0.13 0.2 0.13 0.14 +caravanings caravaning nom m p 0.13 0.2 0 0.07 +caravanière caravanier nom f s 0.41 1.22 0 0.34 +caravanières caravanier nom f p 0.41 1.22 0 0.07 +caravansérail caravansérail nom m s 0.14 0.81 0 0.54 +caravansérails caravansérail nom m p 0.14 0.81 0.14 0.27 +caravelle caravelle nom f s 0.32 0.95 0.31 0.2 +caravelles caravelle nom f p 0.32 0.95 0.01 0.74 +caraïbe caraïbe nom s 0.16 0.14 0.1 0 +caraïbes caraïbe nom p 0.16 0.14 0.06 0.14 +carbets carbet nom m p 0 0.07 0 0.07 +carboglace carboglace nom m s 0.05 0 0.05 0 +carbonade carbonade nom f s 0.14 0 0.14 0 +carbonari carbonari nom m s 0 0.07 0 0.07 +carbonate carbonate nom m s 0.08 0.14 0.08 0.14 +carbone carbone nom m s 3.18 1.82 3.15 1.62 +carbones carbone nom m p 3.18 1.82 0.04 0.2 +carbonique carbonique adj s 0.89 0.81 0.79 0.74 +carboniques carbonique adj m p 0.89 0.81 0.1 0.07 +carbonisa carboniser ver 1.26 2.5 0 0.07 ind:pas:3s; +carbonisant carboniser ver 1.26 2.5 0 0.07 par:pre; +carbonisation carbonisation nom f s 0.03 0 0.03 0 +carboniser carboniser ver 1.26 2.5 0.11 0.34 ind:pre:2p;inf; +carbonisé carboniser ver m s 1.26 2.5 0.6 0.61 par:pas; +carbonisée carboniser ver f s 1.26 2.5 0.1 0.27 par:pas; +carbonisées carboniser ver f p 1.26 2.5 0.13 0.41 par:pas; +carbonisés carboniser ver m p 1.26 2.5 0.32 0.74 par:pas; +carboné carboné adj m s 0.01 0 0.01 0 +carboxyhémoglobine carboxyhémoglobine nom f s 0.04 0 0.04 0 +carburaient carburer ver 0.85 1.22 0.01 0.07 ind:imp:3p; +carburais carburer ver 0.85 1.22 0 0.07 ind:imp:1s; +carburait carburer ver 0.85 1.22 0 0.34 ind:imp:3s; +carburant carburant nom m s 5.67 1.69 5.56 1.35 +carburants carburant nom m p 5.67 1.69 0.11 0.34 +carburateur carburateur nom m s 1.11 1.22 1.05 1.15 +carburateurs carburateur nom m p 1.11 1.22 0.05 0.07 +carburation carburation nom f s 0.02 0.14 0.02 0.14 +carbure carburer ver 0.85 1.22 0.43 0.27 ind:pre:1s;ind:pre:3s; +carburent carburer ver 0.85 1.22 0.02 0.07 ind:pre:3p; +carburer carburer ver 0.85 1.22 0.17 0.14 inf; +carburez carburer ver 0.85 1.22 0.02 0 imp:pre:2p; +carburé carburer ver m s 0.85 1.22 0.01 0.14 par:pas; +carcajou carcajou nom m s 0 0.07 0 0.07 +carcan carcan nom m s 0.29 4.19 0.28 2.77 +carcans carcan nom m p 0.29 4.19 0.01 1.42 +carcasse carcasse nom f s 2.58 13.85 1.89 10.41 +carcasses carcasse nom f p 2.58 13.85 0.69 3.45 +carcharodon carcharodon nom m s 0.03 0 0.03 0 +carcinome carcinome nom m s 0.13 0 0.13 0 +carcinoïde carcinoïde adj s 0.01 0 0.01 0 +carcinoïde carcinoïde nom m s 0.01 0 0.01 0 +carcéral carcéral adj m s 1.11 2.3 0.52 1.15 +carcérale carcéral adj f s 1.11 2.3 0.45 0.81 +carcérales carcéral adj f p 1.11 2.3 0.14 0.14 +carcéraux carcéral adj m p 1.11 2.3 0 0.2 +cardage cardage nom m s 0 0.14 0 0.14 +cardait carder ver 0.08 1.35 0 0.27 ind:imp:3s; +cardamome cardamome nom f s 0.19 0.34 0.19 0.27 +cardamomes cardamome nom f p 0.19 0.34 0 0.07 +cardan cardan nom m s 0.23 0.34 0.21 0.34 +cardans cardan nom m p 0.23 0.34 0.02 0 +cardant carder ver 0.08 1.35 0 0.27 par:pre; +carde carde nom f s 0.01 0.27 0.01 0.2 +carder carder ver 0.08 1.35 0.07 0.27 inf; +carderai carder ver 0.08 1.35 0 0.07 ind:fut:1s; +carderie carderie nom f s 0 0.2 0 0.2 +cardes carde nom f p 0.01 0.27 0 0.07 +cardeur cardeur nom m s 0.01 1.01 0.01 0.2 +cardeuse cardeur nom f s 0.01 1.01 0 0.14 +cardeuses cardeur nom f p 0.01 1.01 0 0.68 +cardia cardia nom m s 0.01 0 0.01 0 +cardiaque cardiaque adj s 20.55 3.72 18.34 3.04 +cardiaques cardiaque adj p 20.55 3.72 2.21 0.68 +cardigan cardigan nom m s 0.47 0.61 0.4 0.47 +cardigans cardigan nom m p 0.47 0.61 0.06 0.14 +cardinal cardinal nom m s 5.18 6.62 4.78 4.8 +cardinal_archevêque cardinal_archevêque nom m s 0.02 0.07 0.02 0.07 +cardinal_légat cardinal_légat nom m s 0 0.07 0 0.07 +cardinale cardinal adj f s 1.09 4.12 0.42 0.68 +cardinales cardinal adj f p 1.09 4.12 0.02 0.2 +cardinalice cardinalice adj f s 0.01 0.14 0.01 0.07 +cardinalices cardinalice adj f p 0.01 0.14 0 0.07 +cardinaux cardinal nom m p 5.18 6.62 0.4 1.82 +cardio_pulmonaire cardio_pulmonaire adj s 0.07 0 0.07 0 +cardio_respiratoire cardio_respiratoire adj f s 0.1 0 0.1 0 +cardio_vasculaire cardio_vasculaire adj s 0.14 0.07 0.14 0.07 +cardiogramme cardiogramme nom m s 0.11 0 0.11 0 +cardiographe cardiographe nom m s 0.01 0 0.01 0 +cardiographie cardiographie nom f s 0.01 0 0.01 0 +cardiologie cardiologie nom f s 0.82 0 0.82 0 +cardiologue cardiologue nom s 1.23 0.27 1.17 0.27 +cardiologues cardiologue nom p 1.23 0.27 0.06 0 +cardiomyopathie cardiomyopathie nom f s 0.09 0 0.09 0 +cardiomégalie cardiomégalie nom f s 0.04 0 0.04 0 +cardiotonique cardiotonique adj s 0.11 0 0.11 0 +cardiovasculaire cardiovasculaire adj s 0.24 0 0.24 0 +cardioïde cardioïde adj s 0 0.07 0 0.07 +cardite cardite nom f s 0.01 0 0.01 0 +cardium cardium nom m s 0 0.07 0 0.07 +cardon cardon nom m s 0.06 1.15 0.06 0.07 +cardons cardon nom m p 0.06 1.15 0 1.08 +cardères carder nom f p 0 0.07 0 0.07 +cardé carder ver m s 0.08 1.35 0 0.34 par:pas; +cardée carder ver f s 0.08 1.35 0 0.07 par:pas; +cardés carder ver m p 0.08 1.35 0 0.07 par:pas; +care care nom f s 1.42 0.14 1.42 0.14 +carence carence nom f s 1.06 1.76 0.91 1.49 +carences carence nom f p 1.06 1.76 0.15 0.27 +caressa caresser ver 15.69 83.72 0.13 9.46 ind:pas:3s; +caressai caresser ver 15.69 83.72 0 0.74 ind:pas:1s; +caressaient caresser ver 15.69 83.72 0.03 2.23 ind:imp:3p; +caressais caresser ver 15.69 83.72 0.49 2.03 ind:imp:1s;ind:imp:2s; +caressait caresser ver 15.69 83.72 0.57 14.46 ind:imp:3s; +caressant caresser ver 15.69 83.72 1.13 8.18 par:pre; +caressante caressant adj f s 0.23 4.26 0.13 1.55 +caressantes caressant adj f p 0.23 4.26 0.01 0.54 +caressants caressant adj m p 0.23 4.26 0.01 0.61 +caresse caresser ver 15.69 83.72 4.6 14.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +caressent caresser ver 15.69 83.72 0.44 1.62 ind:pre:3p; +caresser caresser ver 15.69 83.72 5.66 18.24 inf; +caressera caresser ver 15.69 83.72 0.04 0.2 ind:fut:3s; +caresserai caresser ver 15.69 83.72 0.03 0.07 ind:fut:1s; +caresseraient caresser ver 15.69 83.72 0 0.07 cnd:pre:3p; +caresserait caresser ver 15.69 83.72 0.1 0.2 cnd:pre:3s; +caresserez caresser ver 15.69 83.72 0 0.07 ind:fut:2p; +caresseront caresser ver 15.69 83.72 0.01 0.14 ind:fut:3p; +caresses caresse nom f p 5.32 33.04 3.11 16.89 +caresseurs caresseur adj m p 0 0.07 0 0.07 +caresseuse caresseur nom f s 0 0.2 0 0.07 +caresseuses caresseur nom f p 0 0.2 0 0.14 +caressez caresser ver 15.69 83.72 0.53 0.2 imp:pre:2p;ind:pre:2p; +caressions caresser ver 15.69 83.72 0.01 0.2 ind:imp:1p; +caressât caresser ver 15.69 83.72 0 0.14 sub:imp:3s; +caressèrent caresser ver 15.69 83.72 0 0.27 ind:pas:3p; +caressé caresser ver m s 15.69 83.72 0.68 5.81 par:pas; +caressée caresser ver f s 15.69 83.72 0.27 2.7 par:pas; +caressées caresser ver f p 15.69 83.72 0 0.34 par:pas; +caressés caresser ver m p 15.69 83.72 0.04 1.15 par:pas; +caret caret nom m s 0 0.14 0 0.14 +carex carex nom m 0 0.2 0 0.2 +cargaison cargaison nom f s 7.57 4.26 6.82 3.18 +cargaisons cargaison nom f p 7.57 4.26 0.75 1.08 +cargo cargo nom m s 5.17 7.09 4.18 3.99 +cargos cargo nom m p 5.17 7.09 0.99 3.11 +cargua carguer ver 0.03 0.47 0 0.14 ind:pas:3s; +carguent carguer ver 0.03 0.47 0 0.07 ind:pre:3p; +carguer carguer ver 0.03 0.47 0 0.07 inf; +carguez carguer ver 0.03 0.47 0.03 0 imp:pre:2p; +carguée carguer ver f s 0.03 0.47 0 0.07 par:pas; +carguées carguer ver f p 0.03 0.47 0 0.14 par:pas; +cari cari nom m s 0.08 0.95 0.08 0.07 +cariatide cariatide nom f s 0 0.54 0 0.34 +cariatides cariatide nom f p 0 0.54 0 0.2 +caribou caribou nom m s 0.91 0.2 0.74 0.14 +caribous caribou nom m p 0.91 0.2 0.17 0.07 +caribéenne caribéen adj f s 0.03 0 0.03 0 +caricatural caricatural adj m s 0.04 2.09 0.04 1.22 +caricaturale caricatural adj f s 0.04 2.09 0.01 0.61 +caricaturales caricatural adj f p 0.04 2.09 0 0.2 +caricaturaux caricatural adj m p 0.04 2.09 0 0.07 +caricature caricature nom f s 1.68 6.49 1.58 4.26 +caricaturer caricaturer ver 0.09 0.27 0.02 0.07 inf; +caricatures caricature nom f p 1.68 6.49 0.1 2.23 +caricaturiste caricaturiste nom s 0.02 0.54 0.02 0.27 +caricaturistes caricaturiste nom p 0.02 0.54 0 0.27 +caricaturé caricaturer ver m s 0.09 0.27 0.02 0 par:pas; +caricaturées caricaturer ver f p 0.09 0.27 0.01 0.07 par:pas; +caricaturés caricaturer ver m p 0.09 0.27 0.02 0.07 par:pas; +carie carie nom f s 0.89 1.15 0.38 0.61 +carien carien adj m s 0.5 0.07 0.5 0.07 +carier carier ver 0.12 0.07 0.01 0 inf; +caries carie nom f p 0.89 1.15 0.51 0.54 +carillon carillon nom m s 1.67 5.88 1.56 5.54 +carillonnaient carillonner ver 0.41 1.35 0 0.14 ind:imp:3p; +carillonnait carillonner ver 0.41 1.35 0 0.14 ind:imp:3s; +carillonnant carillonner ver 0.41 1.35 0 0.14 par:pre; +carillonne carillonner ver 0.41 1.35 0 0.14 ind:pre:3s; +carillonnent carillonner ver 0.41 1.35 0.16 0.07 ind:pre:3p; +carillonner carillonner ver 0.41 1.35 0.25 0.61 inf; +carillonnes carillonner ver 0.41 1.35 0 0.07 ind:pre:2s; +carillonneur carillonneur nom m s 0.01 0.07 0 0.07 +carillonneuse carillonneur nom f s 0.01 0.07 0.01 0 +carillonné carillonner ver m s 0.41 1.35 0 0.07 par:pas; +carillonnées carillonné adj f p 0 0.41 0 0.27 +carillonnés carillonné adj m p 0 0.41 0 0.07 +carillons carillon nom m p 1.67 5.88 0.12 0.34 +carioca carioca adj m s 0.14 0 0.14 0 +caris cari nom m p 0.08 0.95 0 0.88 +carissime carissime adj s 0 0.07 0 0.07 +cariste cariste nom s 0.04 0 0.04 0 +caritatif caritatif adj m s 0.57 0.27 0.12 0.07 +caritatifs caritatif adj m p 0.57 0.27 0.02 0.07 +caritative caritatif adj f s 0.57 0.27 0.33 0.07 +caritatives caritatif adj f p 0.57 0.27 0.11 0.07 +carié carié adj m s 0.4 0.47 0 0.14 +cariée carié adj f s 0.4 0.47 0.27 0.07 +cariées carié adj f p 0.4 0.47 0.13 0.27 +carlin carlin nom m s 0.96 0.47 0.86 0.34 +carlines carline nom f p 0 0.07 0 0.07 +carlingue carlingue nom f s 0.23 2.77 0.22 2.36 +carlingues carlingue nom f p 0.23 2.77 0.01 0.41 +carlins carlin nom m p 0.96 0.47 0.1 0.14 +carlisme carlisme nom m s 0.2 0 0.2 0 +carliste carliste adj f s 0.7 0 0.6 0 +carlistes carliste adj p 0.7 0 0.1 0 +carma carmer ver 0.01 1.01 0.01 0 ind:pas:3s; +carmagnole carmagnole nom f s 0 0.54 0 0.47 +carmagnoles carmagnole nom f p 0 0.54 0 0.07 +carmant carmer ver 0.01 1.01 0 0.07 par:pre; +carme carme nom m s 0.14 0.61 0 0.14 +carmel carmel nom m s 0.28 0.2 0.28 0.2 +carmer carmer ver 0.01 1.01 0 0.68 inf; +carmes carme nom m p 0.14 0.61 0.14 0.47 +carmin carmin nom m s 0.26 0.81 0.26 0.68 +carmina carminer ver 0.23 0.07 0.01 0 ind:pas:3s; +carmine carminer ver 0.23 0.07 0.22 0 imp:pre:2s;ind:pre:3s; +carmins carmin nom m p 0.26 0.81 0 0.14 +carminé carminé adj m s 0 0.74 0 0.07 +carminée carminé adj f s 0 0.74 0 0.2 +carminées carminé adj f p 0 0.74 0 0.34 +carminés carminé adj m p 0 0.74 0 0.14 +carmé carmer ver m s 0.01 1.01 0 0.14 par:pas; +carmée carmer ver f s 0.01 1.01 0 0.14 par:pas; +carmélite carmélite nom f s 0.4 1.35 0.28 0.68 +carmélites carmélite nom f p 0.4 1.35 0.12 0.68 +carnage carnage nom m s 5.59 3.38 5.46 3.18 +carnages carnage nom m p 5.59 3.38 0.14 0.2 +carnassier carnassier nom m s 0.04 2.09 0.02 0.74 +carnassiers carnassier adj m p 0.03 1.82 0.03 0.27 +carnassière carnassier nom f s 0.04 2.09 0.01 0.34 +carnassières carnassier nom f p 0.04 2.09 0 0.14 +carnation carnation nom f s 0.3 1.08 0.3 1.08 +carnaval carnaval nom m s 7.86 5.81 7.83 5.68 +carnavalesque carnavalesque adj s 0.01 0.2 0.01 0.2 +carnavals carnaval nom m p 7.86 5.81 0.03 0.14 +carne carne nom f s 1.21 2.77 1.09 2.03 +carnes carne nom f p 1.21 2.77 0.12 0.74 +carnet carnet nom m s 13.23 31.82 11.06 24.66 +carnets carnet nom m p 13.23 31.82 2.17 7.16 +carnier carnier nom m s 0.27 0.27 0.27 0.2 +carniers carnier nom m p 0.27 0.27 0 0.07 +carnivore carnivore adj s 0.64 1.01 0.25 0.47 +carnivores carnivore adj p 0.64 1.01 0.39 0.54 +carné carné adj m s 0.02 0.27 0 0.07 +carnée carné adj f s 0.02 0.27 0 0.07 +carnées carné adj f p 0.02 0.27 0.01 0.07 +carnés carné adj m p 0.02 0.27 0.01 0.07 +carogne carogne nom f s 0.14 0 0.14 0 +carole carole nom f s 0 0.07 0 0.07 +caroline carolin adj f s 0.03 0.61 0.03 0.14 +carolines carolin adj f p 0.03 0.61 0 0.14 +carolingien carolingien adj m s 0 0.2 0 0.07 +carolingienne carolingien adj f s 0 0.2 0 0.07 +carolingiens carolingien adj m p 0 0.2 0 0.07 +carolins carolin adj m p 0.03 0.61 0 0.34 +carolus carolus nom m 0.1 0 0.1 0 +caronades caronade nom f p 0.01 0.14 0.01 0.14 +caroncule caroncule nom f s 0.01 0.14 0.01 0.14 +carotide carotide nom f s 0.84 1.28 0.78 0.88 +carotides carotide nom f p 0.84 1.28 0.06 0.41 +carotidien carotidien adj m s 0.12 0 0.09 0 +carotidienne carotidien adj f s 0.12 0 0.03 0 +carottage carottage nom m s 0.02 0 0.02 0 +carottait carotter ver 0.14 0.41 0 0.07 ind:imp:3s; +carotte carotte nom f s 7.12 8.31 2.45 2.97 +carottent carotter ver 0.14 0.41 0 0.07 ind:pre:3p; +carotter carotter ver 0.14 0.41 0.03 0.07 inf; +carotterait carotter ver 0.14 0.41 0 0.07 cnd:pre:3s; +carottes carotte nom f p 7.12 8.31 4.67 5.34 +carotteur carotteur adj m s 0.12 0 0.1 0 +carotteuse carotteur adj f s 0.12 0 0.02 0 +carottier carottier adj m s 0.01 0 0.01 0 +carotté carotter ver m s 0.14 0.41 0.06 0 par:pas; +carottés carotter ver m p 0.14 0.41 0 0.07 par:pas; +carotène carotène nom m s 0.01 0 0.01 0 +caroube caroube nom f s 0.13 0.07 0.13 0.07 +caroubier caroubier nom m s 0.01 0.34 0.01 0.14 +caroubiers caroubier nom m p 0.01 0.34 0 0.2 +caroublant caroubler ver 0 0.14 0 0.07 par:pre; +carouble carouble nom f s 0 0.74 0 0.07 +caroubler caroubler ver 0 0.14 0 0.07 inf; +caroubles carouble nom f p 0 0.74 0 0.68 +caroubleur caroubleur nom m s 0 0.14 0 0.14 +carousse carousse nom f s 0 0.07 0 0.07 +carpaccio carpaccio nom m s 0.18 0 0.18 0 +carpe carpe nom s 2.87 3.85 2.42 2.77 +carpes carpe nom f p 2.87 3.85 0.45 1.08 +carpette carpette nom f s 0.35 2.36 0.32 2.09 +carpettes carpette nom f p 0.35 2.36 0.03 0.27 +carpien carpien adj m s 0.26 0 0.23 0 +carpienne carpien adj f s 0.26 0 0.03 0 +carpillon carpillon nom m s 0 0.27 0 0.27 +carpé carpé adj m s 0.02 0.14 0.02 0.14 +carquois carquois nom m 0.34 0.68 0.34 0.68 +carra carrer ver 1.13 6.55 0 0.47 ind:pas:3s; +carraient carrer ver 1.13 6.55 0 0.14 ind:imp:3p; +carrais carrer ver 1.13 6.55 0 0.14 ind:imp:1s; +carrait carrer ver 1.13 6.55 0 0.14 ind:imp:3s; +carrant carrer ver 1.13 6.55 0 0.27 par:pre; +carrare carrare nom m s 0 0.07 0 0.07 +carre carrer ver 1.13 6.55 0.17 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +carreau carreau nom m s 8.1 41.69 4.34 13.51 +carreaux carreau nom m p 8.1 41.69 3.75 28.18 +carrefour carrefour nom m s 5.4 35.95 5 30.34 +carrefours carrefour nom m p 5.4 35.95 0.4 5.61 +carrelage carrelage nom m s 2.4 13.18 2.39 12.36 +carrelages carrelage nom m p 2.4 13.18 0.01 0.81 +carrelait carreler ver 0.22 3.24 0 0.07 ind:imp:3s; +carrelant carreler ver 0.22 3.24 0.01 0 par:pre; +carreler carreler ver 0.22 3.24 0.17 0.07 inf; +carrelet carrelet nom m s 0.05 1.82 0.04 1.69 +carrelets carrelet nom m p 0.05 1.82 0.01 0.14 +carreleur carreleur nom m s 0.14 0.34 0.14 0.2 +carreleurs carreleur nom m p 0.14 0.34 0 0.14 +carrelé carreler ver m s 0.22 3.24 0.02 1.62 par:pas; +carrelée carreler ver f s 0.22 3.24 0.02 1.01 par:pas; +carrelées carreler ver f p 0.22 3.24 0 0.2 par:pas; +carrelés carreler ver m p 0.22 3.24 0 0.27 par:pas; +carrent carrer ver 1.13 6.55 0 0.07 ind:pre:3p; +carrer carrer ver 1.13 6.55 0.32 0.88 inf; +carrerais carrer ver 1.13 6.55 0.01 0 cnd:pre:1s; +carres carrer ver 1.13 6.55 0.03 0 ind:pre:2s;sub:pre:2s; +carrick carrick nom m s 0.28 0 0.28 0 +carrier carrier nom m s 0.01 0.74 0.01 0.47 +carriers carrier nom m p 0.01 0.74 0 0.27 +carriole carriole nom f s 1.42 10.47 1.25 8.38 +carrioles carriole nom f p 1.42 10.47 0.17 2.09 +carrière carrière nom s 36.54 36.15 35.23 33.04 +carrières carrière nom f p 36.54 36.15 1.31 3.11 +carriérisme carriérisme nom m s 0.01 0 0.01 0 +carriériste carriériste nom s 0.39 0 0.34 0 +carriéristes carriériste nom p 0.39 0 0.04 0 +carron carron nom m s 0.01 0 0.01 0 +carrossable carrossable adj s 0.14 0.54 0 0.47 +carrossables carrossable adj f p 0.14 0.54 0.14 0.07 +carrosse carrosse nom m s 2.77 4.05 2.59 3.72 +carrosser carrosser ver 0.03 0.34 0 0.07 inf; +carrosserie carrosserie nom f s 1.45 6.55 1.22 5.61 +carrosseries carrosserie nom f p 1.45 6.55 0.23 0.95 +carrosses carrosse nom m p 2.77 4.05 0.18 0.34 +carrossier carrossier nom m s 0.04 0.27 0.02 0.2 +carrossiers carrossier nom m p 0.04 0.27 0.02 0.07 +carrossée carrosser ver f s 0.03 0.34 0.02 0.2 par:pas; +carrossées carrosser ver f p 0.03 0.34 0 0.07 par:pas; +carrousel carrousel nom m s 0.42 2.5 0.4 2.36 +carrousels carrousel nom m p 0.42 2.5 0.03 0.14 +carrure carrure nom f s 0.94 4.53 0.94 4.39 +carrures carrure nom f p 0.94 4.53 0 0.14 +carry carry nom m s 0.61 0.2 0.61 0.2 +carré carré nom m s 3.85 32.23 3.48 25.07 +carrée carré adj f s 4.92 27.77 0.84 10.07 +carrées carrer ver f p 1.13 6.55 0.08 0.2 par:pas; +carrément carrément adv 9.99 16.55 9.99 16.55 +carrés carré adj m p 4.92 27.77 1.36 6.49 +cars car nom_sup m p 14.84 19.86 0.64 3.99 +carta carter ver 0.32 0.2 0.01 0.14 ind:pas:3s; +cartable cartable nom m s 1.58 11.28 1.54 9.32 +cartables cartable nom m p 1.58 11.28 0.04 1.96 +carte carte nom f s 144.96 111.42 96.11 60.95 +carte_clé carte_clé nom f s 0.03 0 0.03 0 +carte_lettre carte_lettre nom f s 0 0.41 0 0.34 +cartel cartel nom m s 2.04 0.81 1.75 0.61 +cartels cartel nom m p 2.04 0.81 0.28 0.2 +carter carter nom m s 1.14 0.34 1.12 0.34 +carterie carterie nom f s 0.07 0 0.07 0 +carters carter nom m p 1.14 0.34 0.01 0 +cartes carte nom f p 144.96 111.42 48.84 50.47 +carte_lettre carte_lettre nom f p 0 0.41 0 0.07 +carthaginois carthaginois nom m 0.04 0.27 0.04 0.27 +carthaginoise carthaginois adj f s 0.04 0.07 0.01 0.07 +carthame carthame nom m s 0.02 0 0.02 0 +cartilage cartilage nom m s 0.84 1.42 0.75 0.68 +cartilages cartilage nom m p 0.84 1.42 0.09 0.74 +cartilagineuse cartilagineux adj f s 0.07 0.14 0.02 0.14 +cartilagineuses cartilagineux adj f p 0.07 0.14 0.03 0 +cartilagineux cartilagineux adj m p 0.07 0.14 0.02 0 +cartographe cartographe nom s 0.16 0.61 0.11 0.27 +cartographes cartographe nom p 0.16 0.61 0.05 0.34 +cartographie cartographie nom f s 0.37 0.34 0.37 0.34 +cartographient cartographier ver 0.1 0.07 0 0.07 ind:pre:3p; +cartographier cartographier ver 0.1 0.07 0.02 0 inf; +cartographique cartographique adj s 0.26 0.2 0.18 0.07 +cartographiques cartographique adj p 0.26 0.2 0.07 0.14 +cartographié cartographier ver m s 0.1 0.07 0.07 0 par:pas; +cartographiés cartographier ver m p 0.1 0.07 0.01 0 par:pas; +cartomancie cartomancie nom f s 0.01 0 0.01 0 +cartomancien cartomancien nom m s 0.16 1.15 0 0.14 +cartomancienne cartomancien nom f s 0.16 1.15 0.16 0.88 +cartomanciennes cartomancien nom f p 0.16 1.15 0 0.14 +carton carton nom m s 16.01 44.86 10.92 34.8 +carton_pâte carton_pâte nom m s 0.17 1.28 0.17 1.28 +cartonnage cartonnage nom m s 0 0.54 0 0.14 +cartonnages cartonnage nom m p 0 0.54 0 0.41 +cartonnant cartonner ver 2.02 2.16 0 0.07 par:pre; +cartonne cartonner ver 2.02 2.16 0.32 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cartonnent cartonner ver 2.02 2.16 0.05 0 ind:pre:3p; +cartonner cartonner ver 2.02 2.16 1.09 0.41 inf; +cartonneuse cartonneux adj f s 0 0.47 0 0.2 +cartonneuses cartonneux adj f p 0 0.47 0 0.07 +cartonneux cartonneux adj m 0 0.47 0 0.2 +cartonnier cartonnier nom m s 0 0.34 0 0.2 +cartonniers cartonnier nom m p 0 0.34 0 0.14 +cartonné cartonner ver m s 2.02 2.16 0.54 0.47 par:pas; +cartonnée cartonner ver f s 2.02 2.16 0.03 0.41 par:pas; +cartonnées cartonner ver f p 2.02 2.16 0 0.27 par:pas; +cartonnés cartonner ver m p 2.02 2.16 0 0.41 par:pas; +cartons carton nom m p 16.01 44.86 5.09 10.07 +cartoon cartoon nom m s 0.76 0.07 0.43 0 +cartoons cartoon nom m p 0.76 0.07 0.33 0.07 +cartothèque cartothèque nom f s 0.1 0 0.1 0 +cartouche cartouche nom s 5.81 9.53 1.76 2.91 +cartoucherie cartoucherie nom f s 0 0.07 0 0.07 +cartouches cartouche nom p 5.81 9.53 4.05 6.62 +cartouchière cartouchière nom f s 0.17 2.16 0.04 0.47 +cartouchières cartouchière nom f p 0.17 2.16 0.14 1.69 +cartulaires cartulaire nom m p 0 0.14 0 0.14 +carté carter ver m s 0.32 0.2 0 0.07 par:pas; +cartésianisme cartésianisme nom m s 0 0.2 0 0.2 +cartésien cartésien adj m s 0.06 0.68 0.01 0.34 +cartésienne cartésien adj f s 0.06 0.68 0.04 0.2 +cartésiennes cartésien adj f p 0.06 0.68 0 0.07 +cartésiens cartésien adj m p 0.06 0.68 0 0.07 +carvi carvi nom m s 0.04 0 0.04 0 +cary cary nom m s 0.01 0 0.01 0 +caryatides caryatide nom f p 0 0.07 0 0.07 +caryotype caryotype nom m s 0.04 0 0.04 0 +carène carène nom f s 0.11 0.54 0.11 0.34 +carènes carène nom f p 0.11 0.54 0 0.2 +carénage carénage nom m s 0.04 0.41 0.04 0.34 +carénages carénage nom m p 0.04 0.41 0 0.07 +caréner caréner ver 0.01 0.14 0.01 0 inf; +caréné caréné adj m s 0 0.07 0 0.07 +carénées caréner ver f p 0.01 0.14 0 0.07 par:pas; +carême carême nom m s 0.25 1.96 0.25 1.82 +carême_prenant carême_prenant nom m s 0 0.07 0 0.07 +carêmes carême nom m p 0.25 1.96 0 0.14 +cas cas nom m 280.59 217.36 280.59 217.36 +casa casa nom f s 1.49 2.57 1.49 2.57 +casablancaises casablancais adj f p 0 0.07 0 0.07 +casaient caser ver 4.76 7.7 0.01 0.07 ind:imp:3p; +casait caser ver 4.76 7.7 0.01 0.27 ind:imp:3s; +casanier casanier adj m s 0.46 0.81 0.2 0.47 +casaniers casanier adj m p 0.46 0.81 0.13 0.07 +casanière casanier adj f s 0.46 0.81 0.13 0.2 +casanières casanier adj f p 0.46 0.81 0.01 0.07 +casant caser ver 4.76 7.7 0 0.07 par:pre; +casaque casaque nom f s 0.45 2.84 0.18 2.16 +casaques casaque nom f p 0.45 2.84 0.27 0.68 +casaquin casaquin nom m s 0 0.14 0 0.14 +casas caser ver 4.76 7.7 0.11 0.47 ind:pas:2s; +casbah casbah nom f s 1.76 4.32 1.76 4.32 +cascadaient cascader ver 0.27 1.62 0 0.2 ind:imp:3p; +cascadait cascader ver 0.27 1.62 0 0.34 ind:imp:3s; +cascadant cascader ver 0.27 1.62 0 0.07 par:pre; +cascadas cascader ver 0.27 1.62 0 0.07 ind:pas:2s; +cascade cascade nom f s 4.41 11.55 3.19 7.3 +cascadent cascader ver 0.27 1.62 0 0.2 ind:pre:3p; +cascader cascader ver 0.27 1.62 0.27 0.2 inf; +cascades cascade nom f p 4.41 11.55 1.22 4.26 +cascadeur cascadeur nom m s 2.81 0.27 1.88 0.14 +cascadeurs cascadeur nom m p 2.81 0.27 0.65 0.14 +cascadeuse cascadeur nom f s 2.81 0.27 0.28 0 +cascadèrent cascader ver 0.27 1.62 0 0.07 ind:pas:3p; +cascadé cascader ver m s 0.27 1.62 0 0.07 par:pas; +cascara cascara nom f s 0.04 0 0.04 0 +cascatelle cascatelle nom f s 0 0.14 0 0.07 +cascatelles cascatelle nom f p 0 0.14 0 0.07 +cascher cascher adj 0.03 0 0.03 0 +case case nom f s 5.18 14.53 4.41 9.46 +casemate casemate nom f s 0.01 3.18 0 1.55 +casemates casemate nom f p 0.01 3.18 0.01 1.62 +casent caser ver 4.76 7.7 0.02 0.07 ind:pre:3p; +caser caser ver 4.76 7.7 2.12 3.78 inf;; +caserai caser ver 4.76 7.7 0.04 0.07 ind:fut:1s; +caserais caser ver 4.76 7.7 0.03 0.07 cnd:pre:1s; +caserait caser ver 4.76 7.7 0.05 0 cnd:pre:3s; +caserne caserne nom f s 8.99 16.49 7.97 12.03 +casernement casernement nom m s 0.01 0.68 0.01 0.41 +casernements casernement nom m p 0.01 0.68 0 0.27 +caserner caserner ver 0.01 0.34 0 0.07 inf; +casernes caserne nom f p 8.99 16.49 1.03 4.46 +caserné caserner ver m s 0.01 0.34 0.01 0.07 par:pas; +casernés caserner ver m p 0.01 0.34 0 0.2 par:pas; +cases case nom f p 5.18 14.53 0.78 5.07 +casette casette nom f s 0.06 0 0.05 0 +casettes casette nom f p 0.06 0 0.01 0 +cash cash adv 7.25 0.61 7.25 0.61 +casher casher adj s 0.53 0.07 0.53 0.07 +cashmere cashmere nom m s 0.46 0.34 0.46 0.34 +casier casier nom m s 17.81 8.11 15.82 4.46 +casiers casier nom m p 17.81 8.11 1.98 3.65 +casimir casimir nom m s 0.01 0.27 0.01 0.27 +casino casino nom m s 12.75 10.81 10.89 9.8 +casinos casino nom m p 12.75 10.81 1.86 1.01 +casoar casoar nom m s 0.14 0.61 0.13 0.41 +casoars casoar nom m p 0.14 0.61 0.01 0.2 +caspiennes caspienne adj f p 0.01 0 0.01 0 +casquaient casquer ver 1.92 6.69 0 0.07 ind:imp:3p; +casquais casquer ver 1.92 6.69 0.01 0.07 ind:imp:1s;ind:imp:2s; +casquait casquer ver 1.92 6.69 0.01 0.14 ind:imp:3s; +casquant casquer ver 1.92 6.69 0.01 0.2 par:pre; +casque casque nom m s 15.42 29.19 12.11 21.62 +casquent casquer ver 1.92 6.69 0.02 0 ind:pre:3p; +casquer casquer ver 1.92 6.69 1.25 1.89 inf; +casquera casquer ver 1.92 6.69 0.02 0.07 ind:fut:3s; +casqueras casquer ver 1.92 6.69 0 0.07 ind:fut:2s; +casqueront casquer ver 1.92 6.69 0 0.07 ind:fut:3p; +casques casque nom m p 15.42 29.19 3.32 7.57 +casquette casquette nom f s 9.73 38.58 8.64 34.39 +casquettes casquette nom f p 9.73 38.58 1.09 4.19 +casquettiers casquettier nom m p 0 0.07 0 0.07 +casquettés casquetté adj m p 0 0.07 0 0.07 +casquez casquer ver 1.92 6.69 0.21 0.14 imp:pre:2p;ind:pre:2p; +casqué casquer ver m s 1.92 6.69 0.11 1.42 par:pas; +casquée casqué adj f s 0.12 4.46 0 0.61 +casquées casqué adj f p 0.12 4.46 0.01 0.34 +casqués casqué adj m p 0.12 4.46 0.04 2.57 +cassa casser ver 160.61 92.7 0.12 4.73 ind:pas:3s; +cassable cassable adj s 0.02 0.2 0.01 0.14 +cassables cassable adj m p 0.02 0.2 0.01 0.07 +cassage cassage nom m s 0.16 0.54 0.14 0.41 +cassages cassage nom m p 0.16 0.54 0.03 0.14 +cassai casser ver 160.61 92.7 0 0.2 ind:pas:1s; +cassaient casser ver 160.61 92.7 0.12 1.89 ind:imp:3p; +cassais casser ver 160.61 92.7 0.64 0.68 ind:imp:1s;ind:imp:2s; +cassait casser ver 160.61 92.7 0.75 3.78 ind:imp:3s; +cassandre cassandre nom m s 0.06 0.07 0.06 0.07 +cassant casser ver 160.61 92.7 0.59 2.64 par:pre; +cassante cassant adj f s 0.35 2.77 0.04 0.88 +cassantes cassant adj f p 0.35 2.77 0 0.41 +cassants cassant adj m p 0.35 2.77 0.02 0.27 +cassate cassate nom f s 0 0.07 0 0.07 +cassation cassation nom f s 0.85 0.95 0.85 0.88 +cassations cassation nom f p 0.85 0.95 0 0.07 +casse casser ver 160.61 92.7 41.32 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +casse_bonbon casse_bonbon nom m p 0.1 0 0.1 0 +casse_burnes casse_burnes nom m 0.05 0 0.05 0 +casse_cou casse_cou adj s 0.35 0.54 0.35 0.54 +casse_couilles casse_couilles nom m 1.47 0.2 1.47 0.2 +casse_croûte casse_croûte nom m s 1.54 4.46 1.52 4.32 +casse_croûte casse_croûte nom m p 1.54 4.46 0.02 0.14 +casse_cul casse_cul adj 0.01 0 0.01 0 +casse_dalle casse_dalle nom m 0.29 0.95 0.28 0.81 +casse_dalle casse_dalle nom m p 0.29 0.95 0.01 0.14 +casse_graine casse_graine nom m 0 0.95 0 0.95 +casse_gueule casse_gueule nom m 0.1 0.07 0.1 0.07 +casse_noisette casse_noisette nom m s 0.22 0.41 0.22 0.41 +casse_noisettes casse_noisettes nom m 0.13 0.27 0.13 0.27 +casse_noix casse_noix nom m 0.12 0.2 0.12 0.2 +casse_pattes casse_pattes nom m 0.03 0.2 0.03 0.2 +casse_pieds casse_pieds adj s 0.87 1.22 0.87 1.22 +casse_pipe casse_pipe nom m s 0.5 0.74 0.5 0.74 +casse_pipes casse_pipes nom m 0.02 0.2 0.02 0.2 +casse_tête casse_tête nom m 0.69 0.88 0.69 0.88 +cassement cassement nom m s 0 0.2 0 0.14 +cassements cassement nom m p 0 0.2 0 0.07 +cassent casser ver 160.61 92.7 3.78 2.5 ind:pre:3p; +casser casser ver 160.61 92.7 36.24 30.14 inf; +cassera casser ver 160.61 92.7 1.47 0.81 ind:fut:3s; +casserai casser ver 160.61 92.7 1.58 0.74 ind:fut:1s; +casseraient casser ver 160.61 92.7 0.04 0.07 cnd:pre:3p; +casserais casser ver 160.61 92.7 0.42 0.41 cnd:pre:1s;cnd:pre:2s; +casserait casser ver 160.61 92.7 0.51 0.61 cnd:pre:3s; +casseras casser ver 160.61 92.7 0.35 0.27 ind:fut:2s; +casserez casser ver 160.61 92.7 0.05 0 ind:fut:2p; +casseriez casser ver 160.61 92.7 0.03 0 cnd:pre:2p; +casserole casserole nom f s 4.95 22.84 2.91 16.22 +casseroles casserole nom f p 4.95 22.84 2.05 6.62 +casserolée casserolée nom f s 0 0.34 0 0.27 +casserolées casserolée nom f p 0 0.34 0 0.07 +casserons casser ver 160.61 92.7 0.01 0.07 ind:fut:1p; +casseront casser ver 160.61 92.7 0.25 0.27 ind:fut:3p; +casses casser ver 160.61 92.7 7.47 1.55 ind:pre:2s;sub:pre:2s; +cassetins cassetin nom m p 0 0.07 0 0.07 +cassette cassette nom f s 32.4 6.42 23.55 4.05 +cassettes cassette nom f p 32.4 6.42 8.86 2.36 +casseur casseur nom m s 1.47 3.24 0.71 1.76 +casseurs casseur nom m p 1.47 3.24 0.68 1.28 +casseuse casseur nom f s 1.47 3.24 0.07 0.14 +casseuses casseur nom f p 1.47 3.24 0.01 0.07 +cassez casser ver 160.61 92.7 7.91 1.08 imp:pre:2p;ind:pre:2p; +cassier cassier nom m s 0 0.07 0 0.07 +cassiez casser ver 160.61 92.7 0.07 0.07 ind:imp:2p; +cassine cassine nom f s 0 1.55 0 1.55 +cassis cassis nom m 0.67 3.18 0.67 3.18 +cassitérite cassitérite nom f s 0 0.07 0 0.07 +cassolette cassolette nom f s 0.01 0.68 0.01 0.2 +cassolettes cassolette nom f p 0.01 0.68 0 0.47 +cassonade cassonade nom f s 0.32 0.07 0.32 0.07 +cassons casser ver 160.61 92.7 2.13 0.07 imp:pre:1p;ind:pre:1p; +cassoulet cassoulet nom m s 0.52 1.62 0.52 1.62 +cassure cassure nom f s 0.51 3.78 0.44 2.5 +cassures cassure nom f p 0.51 3.78 0.07 1.28 +cassèrent casser ver 160.61 92.7 0 0.47 ind:pas:3p; +cassé casser ver m s 160.61 92.7 42.71 15.88 par:pas; +cassée casser ver f s 160.61 92.7 9.3 4.12 par:pas; +cassées cassé adj f p 22.07 22.84 1.85 3.11 +cassés cassé adj m p 22.07 22.84 2.14 4.05 +castagnait castagner ver 0.1 0.68 0 0.14 ind:imp:3s; +castagne castagne nom f s 0.15 0.95 0.15 0.95 +castagnent castagner ver 0.1 0.68 0 0.2 ind:pre:3p; +castagner castagner ver 0.1 0.68 0.04 0.27 inf; +castagnes castagner ver 0.1 0.68 0.03 0 ind:pre:2s; +castagnette castagnette nom f s 0.99 2.57 0 0.07 +castagnettes castagnette nom f p 0.99 2.57 0.99 2.5 +castagné castagner ver m s 0.1 0.68 0.03 0.07 par:pas; +castard castard nom m s 0.01 0 0.01 0 +caste caste nom f s 0.73 4.19 0.5 3.38 +castel castel nom m s 0.14 1.08 0.14 1.08 +castelet castelet nom m s 0 0.07 0 0.07 +castes caste nom f p 0.73 4.19 0.23 0.81 +castillan castillan nom m s 0.38 0.61 0.38 0.34 +castillane castillan adj f s 0.23 0.81 0 0.27 +castillanes castillan adj f p 0.23 0.81 0 0.07 +castillans castillan adj m p 0.23 0.81 0 0.07 +castille castille nom f s 0.01 0 0.01 0 +castine castine nom f s 0.07 0.07 0.07 0.07 +casting casting nom m s 3.03 0.2 2.99 0.2 +castings casting nom m p 3.03 0.2 0.04 0 +castor castor nom m s 2.86 1.76 2.4 1.08 +castors castor nom m p 2.86 1.76 0.46 0.68 +castrat castrat nom m s 0.09 0.41 0.06 0.14 +castrateur castrateur adj m s 0.15 0.34 0.01 0 +castration castration nom f s 0.47 1.28 0.47 1.28 +castratrice castrateur adj f s 0.15 0.34 0.09 0.27 +castratrices castrateur adj f p 0.15 0.34 0.04 0.07 +castrats castrat nom m p 0.09 0.41 0.03 0.27 +castrer castrer ver 1.58 0.47 0.47 0.14 inf; +castreur castreur nom m s 0 0.2 0 0.14 +castreurs castreur nom m p 0 0.2 0 0.07 +castrez castrer ver 1.58 0.47 0.04 0 imp:pre:2p; +castrisme castrisme nom m s 0.14 0 0.14 0 +castriste castriste adj f s 0.04 0.07 0.02 0.07 +castristes castriste adj m p 0.04 0.07 0.02 0 +castrons castrer ver 1.58 0.47 0.01 0 imp:pre:1p; +castré castrer ver m s 1.58 0.47 0.97 0.27 par:pas; +castrée castrer ver f s 1.58 0.47 0.01 0 par:pas; +castrés castrer ver m p 1.58 0.47 0.07 0.07 par:pas; +casuel casuel nom m s 0 0.41 0 0.41 +casuistes casuiste nom m p 0 0.07 0 0.07 +casuistique casuistique nom f s 0.01 0.41 0.01 0.41 +casuistiques casuistique adj p 0 0.2 0 0.07 +casus_belli casus_belli nom m 0.05 0 0.05 0 +casé caser ver m s 4.76 7.7 0.73 0.74 par:pas; +casée caser ver f s 4.76 7.7 0.31 0.41 par:pas; +casées caser ver f p 4.76 7.7 0.01 0.14 par:pas; +caséeuse caséeux adj f s 0 0.07 0 0.07 +caséine caséine nom f s 0.14 0 0.14 0 +casés caser ver m p 4.76 7.7 0.33 0.34 par:pas; +cata cata nom f s 0.61 0.34 0.61 0.34 +catabolique catabolique adj m s 0.01 0 0.01 0 +catachrèse catachrèse nom f s 0.01 0.07 0.01 0.07 +cataclysme cataclysme nom m s 0.69 5.27 0.62 4.26 +cataclysmes cataclysme nom m p 0.69 5.27 0.06 1.01 +cataclysmique cataclysmique adj s 0.17 0.2 0.13 0.14 +cataclysmiques cataclysmique adj p 0.17 0.2 0.04 0.07 +catacombe catacombe nom f s 2.04 1.96 0 0.2 +catacombes catacombe nom f p 2.04 1.96 2.04 1.76 +catadioptre catadioptre nom m s 0 0.14 0 0.07 +catadioptres catadioptre nom m p 0 0.14 0 0.07 +catafalque catafalque nom m s 0.01 1.69 0.01 1.49 +catafalques catafalque nom m p 0.01 1.69 0 0.2 +catalan catalan nom m s 1.09 0.54 0.96 0.2 +catalane catalan adj f s 0.74 0.81 0.37 0.2 +catalanes catalan adj f p 0.74 0.81 0 0.14 +catalans catalan adj m p 0.74 0.81 0.14 0.27 +catalauniques catalaunique adj m p 0.01 0.2 0.01 0.2 +catalepsie catalepsie nom f s 0.51 0.61 0.51 0.47 +catalepsies catalepsie nom f p 0.51 0.61 0 0.14 +cataleptique cataleptique adj s 0.23 0.47 0.23 0.47 +cataleptiques cataleptique nom p 0 0.14 0 0.07 +catalogage catalogage nom m s 0.02 0 0.02 0 +catalogne catalogne nom f s 0 0.07 0 0.07 +cataloguais cataloguer ver 1.11 2.5 0 0.07 ind:imp:1s; +cataloguant cataloguer ver 1.11 2.5 0.01 0 par:pre; +catalogue catalogue nom m s 4.87 7.16 3.89 5.61 +cataloguent cataloguer ver 1.11 2.5 0.01 0.07 ind:pre:3p; +cataloguer cataloguer ver 1.11 2.5 0.23 0.27 inf; +cataloguerai cataloguer ver 1.11 2.5 0.02 0 ind:fut:1s; +catalogues catalogue nom m p 4.87 7.16 0.98 1.55 +cataloguiez cataloguer ver 1.11 2.5 0 0.07 ind:imp:2p; +catalogué cataloguer ver m s 1.11 2.5 0.25 0.81 par:pas; +cataloguée cataloguer ver f s 1.11 2.5 0.18 0.34 par:pas; +cataloguées cataloguer ver f p 1.11 2.5 0.04 0.27 par:pas; +catalogués cataloguer ver m p 1.11 2.5 0.06 0.41 par:pas; +catalpa catalpa nom m s 0 0.47 0 0.27 +catalpas catalpa nom m p 0 0.47 0 0.2 +catalyser catalyser ver 0.07 0 0.05 0 inf; +catalyses catalyse nom f p 0 0.07 0 0.07 +catalyseur catalyseur nom m s 1.31 0.2 1.23 0.07 +catalyseurs catalyseur nom m p 1.31 0.2 0.08 0.14 +catalysé catalyser ver m s 0.07 0 0.01 0 par:pas; +catalytique catalytique adj m s 0.16 0 0.14 0 +catalytiques catalytique adj m p 0.16 0 0.01 0 +catamaran catamaran nom m s 0.18 0.27 0.18 0.27 +cataphotes cataphote nom m p 0 0.14 0 0.14 +cataplasme cataplasme nom m s 0.35 1.49 0.08 1.22 +cataplasmes cataplasme nom m p 0.35 1.49 0.28 0.27 +cataplexie cataplexie nom f s 0.02 0 0.02 0 +catapulta catapulter ver 0.29 1.62 0.01 0.07 ind:pas:3s; +catapultait catapulter ver 0.29 1.62 0 0.07 ind:imp:3s; +catapulte catapulte nom f s 1.42 0.74 0.16 0.27 +catapulter catapulter ver 0.29 1.62 0.04 0.14 inf; +catapultera catapulter ver 0.29 1.62 0.01 0 ind:fut:3s; +catapultes catapulte nom f p 1.42 0.74 1.25 0.47 +catapulté catapulter ver m s 0.29 1.62 0.14 0.47 par:pas; +catapultée catapulter ver f s 0.29 1.62 0.02 0.27 par:pas; +catapultées catapulter ver f p 0.29 1.62 0 0.07 par:pas; +catapultés catapulter ver m p 0.29 1.62 0 0.2 par:pas; +cataracte cataracte nom f s 0.54 3.51 0.51 2.5 +cataractes cataracte nom f p 0.54 3.51 0.03 1.01 +catarrhal catarrhal adj m s 0 0.07 0 0.07 +catarrhe catarrhe nom m s 0.02 0.14 0.02 0.14 +catarrheuse catarrheux adj f s 0 0.34 0 0.07 +catarrheux catarrheux adj m 0 0.34 0 0.27 +catastropha catastropher ver 0.16 0.81 0 0.07 ind:pas:3s; +catastrophait catastropher ver 0.16 0.81 0 0.07 ind:imp:3s; +catastrophas catastropher ver 0.16 0.81 0 0.07 ind:pas:2s; +catastrophe catastrophe nom f s 16.47 30.14 14.71 22.91 +catastropher catastropher ver 0.16 0.81 0.1 0 inf; +catastrophes catastrophe nom f p 16.47 30.14 1.76 7.23 +catastrophique catastrophique adj s 2.78 3.72 1.77 3.24 +catastrophiquement catastrophiquement adv 0 0.14 0 0.14 +catastrophiques catastrophique adj p 2.78 3.72 1.01 0.47 +catastrophisme catastrophisme nom m s 0 0.07 0 0.07 +catastrophiste catastrophiste adj s 0.01 0 0.01 0 +catastrophé catastropher ver m s 0.16 0.81 0.04 0.41 par:pas; +catastrophée catastropher ver f s 0.16 0.81 0.02 0.2 par:pas; +catatonie catatonie nom f s 0.19 0 0.19 0 +catatonique catatonique adj s 0.37 0.07 0.37 0.07 +catatoniques catatonique nom p 0.05 0 0.03 0 +catch catch nom m s 2.47 0.88 2.47 0.88 +catcher catcher ver 0.5 0.07 0.33 0 inf; +catcheur catcheur nom m s 0.76 0.41 0.6 0.27 +catcheurs catcheur nom m p 0.76 0.41 0.1 0.07 +catcheuse catcheur nom f s 0.76 0.41 0.04 0 +catcheuses catcheur nom f p 0.76 0.41 0.02 0.07 +catché catcher ver m s 0.5 0.07 0.17 0.07 par:pas; +caterpillar caterpillar nom m 0.03 0 0.03 0 +catgut catgut nom m s 0.05 0.14 0.05 0.07 +catguts catgut nom m p 0.05 0.14 0 0.07 +cathare cathare adj m s 0 0.47 0 0.14 +cathares cathare nom m p 0 0.68 0 0.61 +catharsis catharsis nom f 0.23 0.07 0.23 0.07 +cathartique cathartique adj s 0.19 0.07 0.19 0.07 +catherinette catherinette nom f s 0 0.07 0 0.07 +cathexis cathexis nom f 0.01 0 0.01 0 +catho catho nom s 1.19 0.95 1.01 0.41 +cathode cathode nom f s 0.32 0 0.32 0 +cathodique cathodique adj s 0.19 0.2 0.18 0.07 +cathodiques cathodique adj m p 0.19 0.2 0.01 0.14 +catholicisme catholicisme nom m s 0.77 2.43 0.77 2.43 +catholicité catholicité nom f s 0 0.2 0 0.2 +catholique catholique adj s 13.26 27.03 10.91 21.28 +catholiquement catholiquement adv 0 0.14 0 0.14 +catholiques catholique nom p 5.28 13.99 2.71 8.04 +cathos catho nom p 1.19 0.95 0.18 0.54 +cathèdre cathèdre nom f s 0 0.2 0 0.07 +cathèdres cathèdre nom f p 0 0.2 0 0.14 +cathédral cathédral adj m s 0 0.07 0 0.07 +cathédrale cathédrale nom f s 4.67 21.28 3.24 17.23 +cathédrales cathédrale nom f p 4.67 21.28 1.43 4.05 +cathéter cathéter nom m s 0.73 0 0.73 0 +cathétérisme cathétérisme nom m s 0.01 0 0.01 0 +cati cati nom m s 0.7 0 0.7 0 +catiche catiche nom m s 0 0.07 0 0.07 +catin catin nom f s 2.83 1.49 2.21 1.28 +catins catin nom f p 2.83 1.49 0.63 0.2 +cation cation nom m s 0.01 0 0.01 0 +cato cato nom f s 1 0 1 0 +catoblépas catoblépas nom m 0 0.07 0 0.07 +catogan catogan nom m s 0.04 0.54 0.03 0.47 +catogans catogan nom m p 0.04 0.54 0.01 0.07 +cattleyas cattleya nom m p 0 0.07 0 0.07 +caté caté nom m s 0.06 0.07 0.06 0.07 +catéchisme catéchisme nom m s 2.36 4.93 2.36 4.8 +catéchismes catéchisme nom m p 2.36 4.93 0 0.14 +catéchiste catéchiste nom s 0.23 0.14 0.23 0.14 +catéchisée catéchiser ver f s 0 0.14 0 0.14 par:pas; +catécholamine catécholamine nom f s 0.01 0 0.01 0 +catéchumène catéchumène nom s 0 0.34 0 0.14 +catéchumènes catéchumène nom p 0 0.34 0 0.2 +catéchèse catéchèse nom f s 0 0.07 0 0.07 +catégorie catégorie nom f s 6.28 13.24 5.19 8.31 +catégories catégorie nom f p 6.28 13.24 1.09 4.93 +catégorique catégorique adj s 1.13 5.47 1.08 4.8 +catégoriquement catégoriquement adv 0.7 1.69 0.7 1.69 +catégoriques catégorique adj p 1.13 5.47 0.04 0.68 +catégorisation catégorisation nom f s 0.03 0 0.03 0 +catégorise catégoriser ver 0.08 0.07 0.03 0 imp:pre:2s;ind:pre:3s; +catégoriser catégoriser ver 0.08 0.07 0.02 0.07 inf; +catégorisé catégoriser ver m s 0.08 0.07 0.03 0 par:pas; +caténaire caténaire nom f s 0.17 0.2 0.17 0 +caténaires caténaire nom f p 0.17 0.2 0 0.2 +caucasien caucasien adj m s 0.81 0.68 0.59 0.14 +caucasienne caucasien adj f s 0.81 0.68 0.22 0.34 +caucasiens caucasien nom m p 0.19 0.14 0.03 0.14 +caucasique caucasique adj s 0.03 0 0.03 0 +cauchemar cauchemar nom m s 36.94 26.62 26.8 19.66 +cauchemardais cauchemarder ver 0.08 0.41 0 0.07 ind:imp:1s; +cauchemarde cauchemarder ver 0.08 0.41 0.02 0 ind:pre:1s; +cauchemarder cauchemarder ver 0.08 0.41 0.04 0.27 inf; +cauchemardes cauchemarder ver 0.08 0.41 0 0.07 ind:pre:2s; +cauchemardesque cauchemardesque adj s 0.41 0.27 0.36 0.14 +cauchemardesques cauchemardesque adj f p 0.41 0.27 0.04 0.14 +cauchemardeuse cauchemardeux adj f s 0 0.2 0 0.07 +cauchemardeuses cauchemardeux adj f p 0 0.2 0 0.07 +cauchemardeux cauchemardeux adj m 0 0.2 0 0.07 +cauchemardé cauchemarder ver m s 0.08 0.41 0.02 0 par:pas; +cauchemars cauchemar nom m p 36.94 26.62 10.14 6.96 +cauchois cauchois adj m 0 0.27 0 0.14 +cauchoise cauchois nom f s 0 0.07 0 0.07 +cauchoises cauchois adj f p 0 0.27 0 0.14 +caudal caudal adj m s 0.06 0.2 0.04 0 +caudale caudal adj f s 0.06 0.2 0.02 0.14 +caudales caudal adj f p 0.06 0.2 0 0.07 +caudebec caudebec nom m s 0 0.14 0 0.14 +caudillo caudillo nom m s 0 0.07 0 0.07 +caudines caudines adj f p 0 0.07 0 0.07 +cauri cauri nom m s 0 0.74 0 0.07 +cauris cauri nom m p 0 0.74 0 0.68 +causa causer ver 63.66 69.93 0.38 1.28 ind:pas:3s; +causai causer ver 63.66 69.93 0.01 0.14 ind:pas:1s; +causaient causer ver 63.66 69.93 0.25 2.57 ind:imp:3p; +causais causer ver 63.66 69.93 0.25 0.74 ind:imp:1s;ind:imp:2s; +causait causer ver 63.66 69.93 0.99 6.55 ind:imp:3s; +causal causal adj m s 0.01 0.14 0.01 0.14 +causaliste causaliste adj s 0 0.07 0 0.07 +causalité causalité nom f s 0.23 0.34 0.23 0.2 +causalités causalité nom f p 0.23 0.34 0 0.14 +causant causer ver 63.66 69.93 1.15 1.76 par:pre; +causante causant adj f s 0.51 1.96 0.2 0.2 +causantes causant adj f p 0.51 1.96 0 0.07 +causants causant adj m p 0.51 1.96 0.01 0.2 +cause cause nom f s 218.6 197.3 213.51 188.04 +causent causer ver 63.66 69.93 1.47 2.36 ind:pre:3p; +causer causer ver 63.66 69.93 15.47 18.31 ind:pre:2p;inf; +causera causer ver 63.66 69.93 1.59 0.2 ind:fut:3s; +causerai causer ver 63.66 69.93 0.25 0.14 ind:fut:1s; +causeraient causer ver 63.66 69.93 0.01 0.14 cnd:pre:3p; +causerais causer ver 63.66 69.93 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +causerait causer ver 63.66 69.93 0.91 0.61 cnd:pre:3s; +causeras causer ver 63.66 69.93 0.16 0 ind:fut:2s; +causerez causer ver 63.66 69.93 0.08 0.27 ind:fut:2p; +causerie causerie nom f s 0.3 2.09 0.18 1.01 +causeries causerie nom f p 0.3 2.09 0.12 1.08 +causerions causer ver 63.66 69.93 0.01 0.14 cnd:pre:1p; +causerons causer ver 63.66 69.93 0.03 0.14 ind:fut:1p; +causeront causer ver 63.66 69.93 0.12 0 ind:fut:3p; +causes cause nom f p 218.6 197.3 5.08 9.26 +causette causette nom f s 0.71 1.76 0.69 1.62 +causettes causette nom f p 0.71 1.76 0.02 0.14 +causeur causeur adj m s 0.29 0.14 0.29 0.14 +causeurs causeur nom m p 0.58 0.68 0 0.07 +causeuse causeur nom f s 0.58 0.68 0.05 0.14 +causeuses causeur nom f p 0.58 0.68 0.4 0.14 +causez causer ver 63.66 69.93 1.24 0.54 imp:pre:2p;ind:pre:2p; +causiez causer ver 63.66 69.93 0.04 0.07 ind:imp:2p; +causions causer ver 63.66 69.93 0.29 1.01 ind:imp:1p; +causons causer ver 63.66 69.93 0.58 0.95 imp:pre:1p;ind:pre:1p; +causse causse nom m s 0 0.95 0 0.74 +caussenard caussenard adj m s 0 0.07 0 0.07 +causses causse nom m p 0 0.95 0 0.2 +causticité causticité nom f s 0 0.07 0 0.07 +caustique caustique adj s 0.36 1.15 0.34 1.15 +caustiques caustique adj f p 0.36 1.15 0.02 0 +causâmes causer ver 63.66 69.93 0 0.61 ind:pas:1p; +causèrent causer ver 63.66 69.93 0.03 0.47 ind:pas:3p; +causé causer ver m s 63.66 69.93 14.06 9.66 imp:pre:2s;par:pas;par:pas; +causée causer ver f s 63.66 69.93 2.11 1.49 par:pas; +causées causer ver f p 63.66 69.93 0.94 0.95 par:pas; +causés causer ver m p 63.66 69.93 1.47 1.35 par:pas; +cauteleuse cauteleux adj f s 0 1.01 0 0.2 +cauteleusement cauteleusement adv 0 0.2 0 0.2 +cauteleuses cauteleux adj f p 0 1.01 0 0.07 +cauteleux cauteleux adj m s 0 1.01 0 0.74 +caution caution nom f s 10.88 2.23 10.71 2.23 +cautionnaire cautionnaire nom s 0.14 0 0.14 0 +cautionnait cautionner ver 0.93 0.27 0 0.07 ind:imp:3s; +cautionne cautionner ver 0.93 0.27 0.2 0 ind:pre:1s;ind:pre:3s; +cautionnement cautionnement nom m s 0.02 0 0.02 0 +cautionnent cautionner ver 0.93 0.27 0.02 0.07 ind:pre:3p; +cautionner cautionner ver 0.93 0.27 0.27 0.07 inf; +cautionnerait cautionner ver 0.93 0.27 0.02 0 cnd:pre:3s; +cautionnes cautionner ver 0.93 0.27 0.06 0 ind:pre:2s; +cautionnez cautionner ver 0.93 0.27 0.04 0 imp:pre:2p;ind:pre:2p; +cautionné cautionner ver m s 0.93 0.27 0.31 0 par:pas; +cautionnée cautionner ver f s 0.93 0.27 0 0.07 par:pas; +cautions caution nom f p 10.88 2.23 0.17 0 +cautèle cautèle nom f s 0 0.27 0 0.14 +cautèles cautèle nom f p 0 0.27 0 0.14 +cautère cautère nom m s 0.13 0.54 0.12 0.41 +cautères cautère nom m p 0.13 0.54 0.01 0.14 +cautérisant cautériser ver 0.58 0.41 0.01 0 par:pre; +cautérisation cautérisation nom f s 0.03 0.07 0.03 0.07 +cautérise cautériser ver 0.58 0.41 0.05 0.14 imp:pre:2s;ind:pre:3s; +cautériser cautériser ver 0.58 0.41 0.32 0.27 inf; +cautérisée cautériser ver f s 0.58 0.41 0.04 0 par:pas; +cautérisées cautériser ver f p 0.58 0.41 0.16 0 par:pas; +cava caver ver 0.17 0.27 0.17 0 ind:pas:3s; +cavaillon cavaillon nom m s 0 0.34 0 0.34 +cavalaient cavaler ver 2.12 8.99 0 0.54 ind:imp:3p; +cavalais cavaler ver 2.12 8.99 0.14 0.2 ind:imp:1s;ind:imp:2s; +cavalait cavaler ver 2.12 8.99 0.15 0.27 ind:imp:3s; +cavalant cavaler ver 2.12 8.99 0.01 0.74 par:pre; +cavalcadaient cavalcader ver 0 0.68 0 0.14 ind:imp:3p; +cavalcadait cavalcader ver 0 0.68 0 0.07 ind:imp:3s; +cavalcadant cavalcader ver 0 0.68 0 0.14 par:pre; +cavalcade cavalcade nom f s 0.22 3.72 0.04 2.43 +cavalcadent cavalcader ver 0 0.68 0 0.07 ind:pre:3p; +cavalcader cavalcader ver 0 0.68 0 0.27 inf; +cavalcades cavalcade nom f p 0.22 3.72 0.19 1.28 +cavale cavale nom f s 4 4.32 3.87 4.26 +cavalent cavaler ver 2.12 8.99 0.16 0.74 ind:pre:3p; +cavaler cavaler ver 2.12 8.99 0.68 3.04 inf; +cavalerais cavaler ver 2.12 8.99 0 0.07 cnd:pre:2s; +cavaleras cavaler ver 2.12 8.99 0.01 0.07 ind:fut:2s; +cavalerie cavalerie nom f s 6.6 12.7 6.6 12.5 +cavaleries cavalerie nom f p 6.6 12.7 0 0.2 +cavaleront cavaler ver 2.12 8.99 0.01 0 ind:fut:3p; +cavales cavaler ver 2.12 8.99 0.17 0.14 ind:pre:2s; +cavaleur cavaleur nom m s 0.19 0.2 0.17 0 +cavaleurs cavaleur nom m p 0.19 0.2 0 0.07 +cavaleuse cavaleur nom f s 0.19 0.2 0.01 0.14 +cavalez cavaler ver 2.12 8.99 0.02 0.07 imp:pre:2p;ind:pre:2p; +cavalier cavalier nom m s 10.95 34.19 6.45 13.31 +cavaliers cavalier nom m p 10.95 34.19 3.06 18.85 +cavalière cavalier nom f s 10.95 34.19 1.22 1.62 +cavalièrement cavalièrement adv 0.09 0.34 0.09 0.34 +cavalières cavalier nom f p 10.95 34.19 0.22 0.41 +cavalé cavaler ver m s 2.12 8.99 0.23 1.08 par:pas; +cave cave nom f s 22.4 56.35 19.98 42.09 +caveau caveau nom m s 2.27 5.68 1.99 5.14 +caveaux caveau nom m p 2.27 5.68 0.29 0.54 +cavecés cavecé adj m p 0 0.07 0 0.07 +caver caver ver 0.17 0.27 0 0.14 inf; +caverne caverne nom f s 6.58 10.54 3.88 6.82 +cavernes caverne nom f p 6.58 10.54 2.7 3.72 +caverneuse caverneux adj f s 0.39 3.04 0.15 1.35 +caverneuses caverneux adj f p 0.39 3.04 0.01 0.41 +caverneux caverneux adj m 0.39 3.04 0.22 1.28 +cavernicoles cavernicole adj p 0 0.07 0 0.07 +caves cave nom f p 22.4 56.35 2.42 14.26 +cavette cavette nom f s 0.14 0.54 0.14 0.47 +cavettes cavette nom f p 0.14 0.54 0 0.07 +caviar caviar nom m s 6.29 4.26 6.29 4.26 +caviardé caviarder ver m s 0 0.07 0 0.07 par:pas; +cavillon cavillon nom m s 0 0.27 0 0.07 +cavillonne cavillon nom f s 0 0.27 0 0.07 +cavillons cavillon nom m p 0 0.27 0 0.14 +caviste caviste nom s 0.14 0.14 0.14 0.14 +cavitation cavitation nom f s 0.02 0 0.02 0 +cavité cavité nom f s 1.89 2.16 1.26 1.49 +cavités cavité nom f p 1.89 2.16 0.63 0.68 +cavum cavum nom m 0.01 0 0.01 0 +cavé caver ver m s 0.17 0.27 0.01 0.14 par:pas; +cavée cavée nom f s 0 0.27 0 0.14 +cavées cavée nom f p 0 0.27 0 0.14 +cayenne cayenne nom f s 0.01 0.07 0.01 0.07 +caïd caïd nom m s 2.63 7.97 2.19 6.82 +caïds caïd nom m p 2.63 7.97 0.44 1.15 +caïman caïman nom m s 1.02 0.54 0.9 0.34 +caïmans caïman nom m p 1.02 0.54 0.13 0.2 +caïque caïque nom m s 0 5.47 0 3.24 +caïques caïque nom m p 0 5.47 0 2.23 +cañon cañon nom m s 0.07 0 0.07 0 +ce ce pro_dem m s 5219.1 2958.58 5219.1 2958.58 +ceci ceci pro_dem s 133.07 53.78 133.07 53.78 +ceignait ceindre ver 0.56 4.32 0 0.41 ind:imp:3s; +ceignant ceindre ver 0.56 4.32 0.01 0.27 par:pre; +ceignent ceindre ver 0.56 4.32 0 0.14 ind:pre:3p; +ceignit ceindre ver 0.56 4.32 0 0.27 ind:pas:3s; +ceindra ceindre ver 0.56 4.32 0.14 0 ind:fut:3s; +ceindrait ceindre ver 0.56 4.32 0 0.14 cnd:pre:3s; +ceindre ceindre ver 0.56 4.32 0.03 0.41 inf; +ceins ceindre ver 0.56 4.32 0 0.07 imp:pre:2s; +ceint ceindre ver m s 0.56 4.32 0.17 1.35 ind:pre:3s;par:pas; +ceinte ceindre ver f s 0.56 4.32 0.1 0.61 par:pas; +ceintes ceindre ver f p 0.56 4.32 0.01 0.07 par:pas; +ceints ceindre ver m p 0.56 4.32 0.11 0.61 par:pas; +ceintura ceinturer ver 0.28 6.08 0 0.14 ind:pas:3s; +ceinturaient ceinturer ver 0.28 6.08 0.01 0.14 ind:imp:3p; +ceinturait ceinturer ver 0.28 6.08 0.01 0.54 ind:imp:3s; +ceinturant ceinturer ver 0.28 6.08 0 0.27 par:pre; +ceinture ceinture nom f s 22.57 35.2 19.41 32.23 +ceinturent ceinturer ver 0.28 6.08 0 0.34 ind:pre:3p; +ceinturer ceinturer ver 0.28 6.08 0.02 0.47 inf; +ceintures ceinture nom f p 22.57 35.2 3.17 2.97 +ceinturez ceinturer ver 0.28 6.08 0.01 0 imp:pre:2p; +ceinturon ceinturon nom m s 0.91 7.23 0.7 5.88 +ceinturons ceinturon nom m p 0.91 7.23 0.2 1.35 +ceinturât ceinturer ver 0.28 6.08 0 0.07 sub:imp:3s; +ceinturèrent ceinturer ver 0.28 6.08 0 0.14 ind:pas:3p; +ceinturé ceinturer ver m s 0.28 6.08 0 1.49 par:pas; +ceinturée ceinturer ver f s 0.28 6.08 0.02 0.81 par:pas; +ceinturées ceinturer ver f p 0.28 6.08 0 0.41 par:pas; +ceinturés ceinturer ver m p 0.28 6.08 0.02 0.68 par:pas; +cela cela pro_dem s 492.56 741.82 492.56 741.82 +celait celer ver 0.68 0.34 0 0.07 ind:imp:3s; +celer celer ver 0.68 0.34 0.4 0.2 inf; +cella cella nom f s 0.28 0.81 0.28 0.81 +celle celle pro_dem f s 141.28 299.46 141.28 299.46 +celle_ci celle_ci pro_dem f s 38.71 57.57 38.71 57.57 +celle_là celle_là pro_dem f s 52.63 28.65 52.63 28.65 +celles celles pro_dem f p 34.73 107.97 34.73 107.97 +celles_ci celles_ci pro_dem f p 6.64 9.39 6.64 9.39 +celles_là celles_là pro_dem f p 5.9 6.08 5.9 6.08 +cellier cellier nom m s 1.11 3.65 1.01 2.97 +celliers cellier nom m p 1.11 3.65 0.1 0.68 +cellophane cellophane nom f s 0.39 2.43 0.39 2.43 +cellulaire cellulaire adj s 3.19 2.03 2.76 1.62 +cellulairement cellulairement adv 0 0.07 0 0.07 +cellulaires cellulaire adj p 3.19 2.03 0.43 0.41 +cellular cellular nom m s 0.01 0.2 0.01 0.2 +cellule cellule nom f s 42.98 46.28 31.06 35.34 +cellules cellule nom f p 42.98 46.28 11.92 10.95 +cellulite cellulite nom f s 0.66 1.15 0.56 1.08 +cellulites cellulite nom f p 0.66 1.15 0.1 0.07 +celluliteux celluliteux adj m s 0 0.14 0 0.14 +cellulose cellulose nom f s 0.12 0.27 0.12 0.27 +celluloïd celluloïd nom m s 0.08 3.38 0.08 3.38 +cellérier cellérier adj m s 0 0.07 0 0.07 +celte celte adj s 0.44 1.22 0.32 0.68 +celtes celte adj p 0.44 1.22 0.13 0.54 +celtique celtique adj s 0.15 1.08 0.09 0.81 +celtiques celtique adj p 0.15 1.08 0.06 0.27 +celtisants celtisant adj m p 0 0.07 0 0.07 +celtisme celtisme nom m s 0 0.07 0 0.07 +celui celui pro_dem m s 250.13 319.19 250.13 319.19 +celui_ci celui_ci pro_dem m s 45.97 71.76 45.97 71.76 +celui_là celui_là pro_dem m s 78.13 56.89 78.13 56.89 +celée celer ver f s 0.68 0.34 0 0.07 par:pas; +cendraient cendrer ver 0 0.68 0 0.07 ind:imp:3p; +cendrait cendrer ver 0 0.68 0 0.14 ind:imp:3s; +cendre cendre nom f s 17.18 28.85 3.24 11.08 +cendres cendre nom f p 17.18 28.85 13.95 17.77 +cendreuse cendreux adj f s 0 0.95 0 0.34 +cendreuses cendreux adj f p 0 0.95 0 0.2 +cendreux cendreux adj m s 0 0.95 0 0.41 +cendrier cendrier nom m s 4.35 14.73 3.86 10.95 +cendriers cendrier nom m p 4.35 14.73 0.48 3.78 +cendrillon cendrillon nom f s 0.07 0.2 0.02 0.07 +cendrillons cendrillon nom f p 0.07 0.2 0.05 0.14 +cendré cendré adj m s 0.12 2.03 0.03 0.81 +cendrée cendré adj f s 0.12 2.03 0.03 0.41 +cendrées cendré adj f p 0.12 2.03 0.02 0.2 +cendrés cendré adj m p 0.12 2.03 0.04 0.61 +cens cens nom m 0.03 0.34 0.03 0.34 +censeur censeur nom m s 0.88 1.96 0.68 1.08 +censeurs censeur nom m p 0.88 1.96 0.2 0.88 +censier censier nom m s 0 0.07 0 0.07 +censitaire censitaire adj m s 0 0.14 0 0.14 +censuraient censurer ver 2.17 1.89 0.01 0.07 ind:imp:3p; +censurait censurer ver 2.17 1.89 0.01 0.07 ind:imp:3s; +censurant censurer ver 2.17 1.89 0 0.07 par:pre; +censure censure nom f s 2.87 3.51 2.87 3.04 +censurer censurer ver 2.17 1.89 0.44 0.61 inf; +censures censurer ver 2.17 1.89 0.14 0 ind:pre:2s; +censurez censurer ver 2.17 1.89 0.2 0 ind:pre:2p; +censuriez censurer ver 2.17 1.89 0 0.07 ind:imp:2p; +censuré censurer ver m s 2.17 1.89 0.88 0.54 imp:pre:2s;par:pas; +censurée censurer ver f s 2.17 1.89 0.11 0.27 par:pas; +censurées censurer ver f p 2.17 1.89 0.04 0.07 par:pas; +censurés censurer ver m p 2.17 1.89 0.06 0 par:pas; +censé censé adj m s 62.52 8.11 38.22 4.53 +censée censé adj f s 62.52 8.11 13.51 1.76 +censées censé adj f p 62.52 8.11 1.61 0.61 +censément censément adv 0.05 0.41 0.05 0.41 +censés censé adj m p 62.52 8.11 9.18 1.22 +cent cent adj_num 43.05 135.41 43.05 135.41 +centaine centaine nom f s 29.22 41.82 6.33 10.54 +centaines centaine nom f p 29.22 41.82 22.9 31.28 +centaure centaure nom m s 0.59 0.74 0.42 0.41 +centaures centaure nom m p 0.59 0.74 0.17 0.34 +centaurée centaurée nom f s 0.05 0 0.05 0 +centavo centavo nom m s 0.2 0 0.02 0 +centavos centavo nom m p 0.2 0 0.18 0 +centenaire centenaire nom s 0.55 1.28 0.55 1.08 +centenaires centenaire adj p 0.72 2.77 0.18 1.49 +centigrade centigrade nom m s 0.05 0.07 0.04 0 +centigrades centigrade nom m p 0.05 0.07 0.01 0.07 +centigrammes centigramme nom m p 0.1 0 0.1 0 +centile centile nom m s 0.96 0 0.96 0 +centilitres centilitre nom m p 0 0.14 0 0.14 +centime centime nom m s 7.14 5.68 3.25 1.49 +centimes centime nom m p 7.14 5.68 3.88 4.19 +centimètre centimètre nom m s 6.81 27.84 2.48 5.95 +centimètres centimètre nom m p 6.81 27.84 4.33 21.89 +centième centième adj m 0.29 2.64 0.28 2.64 +centièmes centième nom p 0.35 1.35 0.07 0.07 +centon centon nom m s 0.32 0.07 0.32 0.07 +centrafricain centrafricain adj m s 0.01 0.14 0.01 0 +centrafricaine centrafricain adj f s 0.01 0.14 0 0.14 +centrage centrage nom m s 0.11 0 0.11 0 +centrait centrer ver 1.38 1.82 0 0.14 ind:imp:3s; +central central adj m s 18.14 37.23 10.09 20.74 +centrale centrale nom f s 8.04 6.01 7.34 4.73 +centrales centrale nom f p 8.04 6.01 0.69 1.28 +centralisait centraliser ver 0.34 0.81 0 0.07 ind:imp:3s; +centralisation centralisation nom f s 0.16 0.14 0.16 0.14 +centralisatrice centralisateur adj f s 0 0.07 0 0.07 +centralise centraliser ver 0.34 0.81 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +centraliser centraliser ver 0.34 0.81 0.13 0.14 inf; +centralisiez centraliser ver 0.34 0.81 0.01 0 ind:imp:2p; +centralisme centralisme nom m s 0 0.41 0 0.41 +centralisons centraliser ver 0.34 0.81 0.01 0 ind:pre:1p; +centralisé centraliser ver m s 0.34 0.81 0.1 0.2 par:pas; +centralisée centraliser ver f s 0.34 0.81 0.02 0.2 par:pas; +centralisés centraliser ver m p 0.34 0.81 0.01 0.14 par:pas; +centrant centrer ver 1.38 1.82 0.11 0 par:pre; +centraux central adj m p 18.14 37.23 0.26 0.54 +centre centre nom m s 57 84.46 53.46 80 +centre_ville centre_ville nom m s 2.87 0.54 2.87 0.54 +centrer centrer ver 1.38 1.82 0.11 0.14 inf; +centres centre nom m p 57 84.46 3.54 4.46 +centrifugation centrifugation nom f s 0.01 0 0.01 0 +centrifuge centrifuge adj s 0.26 2.36 0.25 2.03 +centrifuges centrifuge adj f p 0.26 2.36 0.01 0.34 +centrifugeur centrifugeur nom m s 0.28 0.07 0.01 0 +centrifugeuse centrifugeur nom f s 0.28 0.07 0.24 0.07 +centrifugeuses centrifugeur nom f p 0.28 0.07 0.04 0 +centriole centriole nom m s 0.14 0 0.14 0 +centripète centripète adj f s 0.02 0.2 0.02 0.14 +centripètes centripète adj p 0.02 0.2 0 0.07 +centriste centriste adj m s 0.01 0.07 0.01 0.07 +centrouse centrouse nom f s 0 0.2 0 0.2 +centrum centrum nom m s 0.14 0 0.14 0 +centré centrer ver m s 1.38 1.82 0.3 0.41 par:pas; +centrée centrer ver f s 1.38 1.82 0.29 0.2 par:pas; +centrées centrer ver f p 1.38 1.82 0.01 0.27 par:pas; +centrés centrer ver m p 1.38 1.82 0.07 0 par:pas; +cents cents adj_num 27.67 80.54 27.67 80.54 +centuple centuple nom m s 0.31 1.08 0.31 1.08 +centuplé centupler ver m s 0 0.14 0 0.07 par:pas; +centuplée centupler ver f s 0 0.14 0 0.07 par:pas; +centurie centurie nom f s 0.03 1.15 0.02 0.54 +centuries centurie nom f p 0.03 1.15 0.01 0.61 +centurion centurion nom m s 1.04 0.88 0.68 0.61 +centurions centurion nom m p 1.04 0.88 0.36 0.27 +cep cep nom m s 0.24 1.49 0.12 0.88 +cependant cependant con 1.54 13.51 1.54 13.51 +ceps cep nom m p 0.24 1.49 0.12 0.61 +cerbère cerbère nom m s 0.05 0.47 0.05 0.14 +cerbères cerbère nom m p 0.05 0.47 0 0.34 +cerceau cerceau nom m s 0.64 2.77 0.52 1.96 +cerceaux cerceau nom m p 0.64 2.77 0.12 0.81 +cerclage cerclage nom m s 0.03 0 0.03 0 +cerclait cercler ver 0.22 5.34 0 0.14 ind:imp:3s; +cerclant cercler ver 0.22 5.34 0 0.07 par:pre; +cercle cercle nom m s 21.77 54.26 17.77 42.43 +cercler cercler ver 0.22 5.34 0 0.2 inf; +cercles cercle nom m p 21.77 54.26 4 11.82 +cercleux cercleux nom m 0 0.07 0 0.07 +cerclé cercler ver m s 0.22 5.34 0.02 1.22 par:pas; +cerclée cercler ver f s 0.22 5.34 0.03 0.74 par:pas; +cerclées cercler ver f p 0.22 5.34 0.01 1.89 par:pas; +cerclés cercler ver m p 0.22 5.34 0.01 0.95 par:pas; +cercueil cercueil nom m s 22.14 22.16 18.9 19.26 +cercueils cercueil nom m p 22.14 22.16 3.24 2.91 +cerf cerf nom m s 7.56 25.54 6.17 20.27 +cerf_roi cerf_roi nom m s 0.01 0 0.01 0 +cerf_volant cerf_volant nom m s 1.85 1.82 1.4 1.22 +cerfeuil cerfeuil nom m s 0.03 0.95 0.03 0.95 +cerfs cerf nom m p 7.56 25.54 1.39 5.27 +cerf_volant cerf_volant nom m p 1.85 1.82 0.46 0.61 +cerisaie cerisaie nom f s 0.36 0.2 0.36 0.2 +cerise cerise nom f s 5.26 10.07 2.75 3.31 +cerises cerise nom f p 5.26 10.07 2.52 6.76 +cerisier cerisier nom m s 0.88 3.51 0.44 1.49 +cerisiers cerisier nom m p 0.88 3.51 0.44 2.03 +cerna cerner ver 7.74 21.01 0 0.07 ind:pas:3s; +cernable cernable adj s 0 0.07 0 0.07 +cernaient cerner ver 7.74 21.01 0.01 1.49 ind:imp:3p; +cernais cerner ver 7.74 21.01 0 0.07 ind:imp:1s; +cernait cerner ver 7.74 21.01 0.05 2.3 ind:imp:3s; +cernant cerner ver 7.74 21.01 0 0.34 par:pre; +cerne cerner ver 7.74 21.01 0.43 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cerneau cerneau nom m s 0 0.14 0 0.07 +cerneaux cerneau nom m p 0 0.14 0 0.07 +cernent cerner ver 7.74 21.01 0.54 1.08 ind:pre:3p; +cerner cerner ver 7.74 21.01 1.73 2.91 inf; +cernes cerne nom m p 1.3 5.2 1.18 3.78 +cernez cerner ver 7.74 21.01 0.38 0 imp:pre:2p;ind:pre:2p; +cerniez cerner ver 7.74 21.01 0.01 0 ind:imp:2p; +cernons cerner ver 7.74 21.01 0.04 0 ind:pre:1p; +cerné cerner ver m s 7.74 21.01 1.97 4.12 par:pas; +cernée cerner ver f s 7.74 21.01 1.14 2.91 par:pas; +cernées cerner ver f p 7.74 21.01 0.05 1.08 par:pas; +cernés cerner ver m p 7.74 21.01 1.39 2.91 par:pas; +cerque cerque nom m s 0.14 0.07 0.14 0.07 +certain certain adj_ind m s 103.57 182.64 2.18 6.89 +certaine certaine adj_ind f s 1.03 4.86 1.03 4.86 +certainement certainement adv 55.16 59.93 55.16 59.93 +certaines certaines adj_ind f p 48.41 51.55 48.41 51.55 +certains certains adj_ind m p 57.58 101.28 57.58 101.28 +certes certes adv_sup 14.88 69.66 14.88 69.66 +certif certif nom m s 0.14 1.08 0.03 1.01 +certifia certifier ver 2.52 2.91 0 0.07 ind:pas:3s; +certifiaient certifier ver 2.52 2.91 0 0.07 ind:imp:3p; +certifiait certifier ver 2.52 2.91 0 0.47 ind:imp:3s; +certifiant certifier ver 2.52 2.91 0.03 0.2 par:pre; +certificat certificat nom m s 12.3 9.93 11.27 7.3 +certification certification nom f s 0.09 0 0.09 0 +certificats certificat nom m p 12.3 9.93 1.03 2.64 +certifie certifier ver 2.52 2.91 0.89 0.47 ind:pre:1s;ind:pre:3s;sub:pre:1s; +certifier certifier ver 2.52 2.91 0.59 0.74 inf; +certifierait certifier ver 2.52 2.91 0 0.07 cnd:pre:3s; +certifieront certifier ver 2.52 2.91 0.01 0 ind:fut:3p; +certifiez certifier ver 2.52 2.91 0.17 0 imp:pre:2p;ind:pre:2p; +certifions certifier ver 2.52 2.91 0.03 0.07 imp:pre:1p;ind:pre:1p; +certifié certifier ver m s 2.52 2.91 0.68 0.54 par:pas; +certifiée certifié adj f s 0.43 0.74 0.14 0.14 +certifiées certifié adj f p 0.43 0.74 0.01 0.07 +certifiés certifier ver m p 2.52 2.91 0.04 0.07 par:pas; +certifs certif nom m p 0.14 1.08 0.11 0.07 +certitude certitude nom f s 10.18 41.89 8.94 37.09 +certitudes certitude nom f p 10.18 41.89 1.24 4.8 +cerveau cerveau nom m 61.59 30.88 57.67 28.92 +cerveaux cerveau nom m p 61.59 30.88 3.92 1.96 +cervelas cervelas nom m 0.03 0.27 0.03 0.27 +cervelet cervelet nom m s 0.85 0.61 0.85 0.47 +cervelets cervelet nom m p 0.85 0.61 0 0.14 +cervelle cervelle nom f s 14.56 15.81 14.16 14.05 +cervelles cervelle nom f p 14.56 15.81 0.4 1.76 +cervical cervical adj m s 1.79 1.01 0.29 0.14 +cervicale cervical adj f s 1.79 1.01 0.67 0.47 +cervicales cervical adj f p 1.79 1.01 0.79 0.41 +cervicaux cervical adj m p 1.79 1.01 0.05 0 +cervidés cervidé nom m p 0 0.14 0 0.14 +cervoise cervoise nom f s 0.02 0 0.02 0 +ces ces adj_dem p 1222.51 1547.5 1222.51 1547.5 +cessa cesser ver 68.11 177.77 0.64 16.28 ind:pas:3s; +cessai cesser ver 68.11 177.77 0.28 2.16 ind:pas:1s; +cessaient cesser ver 68.11 177.77 0.17 4.53 ind:imp:3p; +cessais cesser ver 68.11 177.77 0.47 1.28 ind:imp:1s;ind:imp:2s; +cessait cesser ver 68.11 177.77 1.56 18.18 ind:imp:3s; +cessant cesser ver 68.11 177.77 0.11 5 par:pre; +cessante cessant adj f s 0.01 1.55 0 0.27 +cessantes cessant adj f p 0.01 1.55 0.01 0.27 +cessasse cesser ver 68.11 177.77 0 0.07 sub:imp:1s; +cessation cessation nom f s 0.11 0.95 0.11 0.95 +cesse cesse nom f s 28.88 71.96 28.86 71.96 +cessent cesser ver 68.11 177.77 2.06 6.49 ind:pre:3p; +cesser cesser ver 68.11 177.77 13.2 21.01 inf; +cessera cesser ver 68.11 177.77 1.92 1.76 ind:fut:3s; +cesserai cesser ver 68.11 177.77 0.64 0.74 ind:fut:1s; +cesseraient cesser ver 68.11 177.77 0.05 0.68 cnd:pre:3p; +cesserais cesser ver 68.11 177.77 0.15 0.41 cnd:pre:1s;cnd:pre:2s; +cesserait cesser ver 68.11 177.77 0.28 1.96 cnd:pre:3s; +cesseras cesser ver 68.11 177.77 0.94 0.34 ind:fut:2s; +cesserez cesser ver 68.11 177.77 0.63 0.27 ind:fut:2p; +cesseriez cesser ver 68.11 177.77 0.06 0.2 cnd:pre:2p; +cesserons cesser ver 68.11 177.77 0.21 0.2 ind:fut:1p; +cesseront cesser ver 68.11 177.77 0.72 0.68 ind:fut:3p; +cesses cesser ver 68.11 177.77 0.91 0.54 ind:pre:2s; +cessez cesser ver 68.11 177.77 15.24 1.82 imp:pre:2p;ind:pre:2p; +cessez_le_feu cessez_le_feu nom m 1.54 0.41 1.54 0.41 +cessiez cesser ver 68.11 177.77 0.5 0.14 ind:imp:2p; +cession cession nom f s 0.22 0.47 0.22 0.34 +cessionnaire cessionnaire nom m s 0.01 0 0.01 0 +cessions cesser ver 68.11 177.77 0.27 0.74 ind:imp:1p; +cessons cesser ver 68.11 177.77 1.17 0.81 imp:pre:1p;ind:pre:1p; +cessâmes cesser ver 68.11 177.77 0.01 0.2 ind:pas:1p; +cessât cesser ver 68.11 177.77 0 1.28 sub:imp:3s; +cessèrent cesser ver 68.11 177.77 0.15 4.19 ind:pas:3p; +cessé cesser ver m s 68.11 177.77 13.89 61.22 par:pas; +cessée cesser ver f s 68.11 177.77 0.02 0 par:pas; +ceste ceste nom m s 0 0.07 0 0.07 +cet cet adj_dem m s 499.91 497.5 499.91 497.5 +cette cette adj_dem f s 1902.27 2320.68 1902.27 2320.68 +ceux ceux pro_dem m p 202.02 309.86 202.02 309.86 +ceux_ci ceux_ci pro_dem m p 4.26 20.95 4.26 20.95 +ceux_là ceux_là pro_dem m p 14.65 25.81 14.65 25.81 +ch_timi ch_timi adj s 0.27 0.07 0.27 0 +ch_timi ch_timi nom p 0.14 0.2 0 0.07 +cha_cha_cha cha_cha_cha nom m s 0.61 0.2 0.61 0.2 +chabanais chabanais nom s 0 0.14 0 0.14 +chabichou chabichou nom m s 0 0.27 0 0.27 +chabler chabler ver 0 0.07 0 0.07 inf; +chablis chablis nom m 0.09 0.07 0.09 0.07 +chaboisseaux chaboisseau nom m p 0 0.07 0 0.07 +chabot chabot nom m s 0.14 0.07 0.14 0 +chabots chabot nom m p 0.14 0.07 0.01 0.07 +chabraque chabraque nom f s 0 0.41 0 0.41 +chabrot chabrot nom m s 0.27 0.14 0.27 0.14 +chacal chacal nom m s 3.02 2.57 1.16 1.55 +chacals chacal nom m p 3.02 2.57 1.86 1.01 +chachlik chachlik nom m s 0.1 0.07 0.1 0.07 +chaconne chaconne nom f s 0 0.07 0 0.07 +chacun chacun pro_ind m s 93.61 187.84 93.61 187.84 +chacune chacune pro_ind f s 12.2 35.95 12.2 35.95 +chafaud chafaud nom m s 0 0.14 0 0.07 +chafauds chafaud nom m p 0 0.14 0 0.07 +chafouin chafouin adj m s 0.04 1.15 0.03 0.41 +chafouine chafouin adj f s 0.04 1.15 0.01 0.61 +chafouins chafouin adj m p 0.04 1.15 0 0.14 +chagatte chagatte nom f s 0.21 0.88 0.19 0.68 +chagattes chagatte nom f p 0.21 0.88 0.02 0.2 +chagrin chagrin nom m s 21.61 44.05 20.39 38.72 +chagrina chagriner ver 1.94 2.97 0 0.14 ind:pas:3s; +chagrinaient chagriner ver 1.94 2.97 0 0.07 ind:imp:3p; +chagrinait chagriner ver 1.94 2.97 0 0.88 ind:imp:3s; +chagrine chagriner ver 1.94 2.97 1.43 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chagrinent chagriner ver 1.94 2.97 0.02 0.07 ind:pre:3p; +chagriner chagriner ver 1.94 2.97 0.2 0.74 inf; +chagrinerait chagriner ver 1.94 2.97 0.05 0 cnd:pre:3s; +chagrines chagriner ver 1.94 2.97 0.14 0 ind:pre:2s; +chagrins chagrin nom m p 21.61 44.05 1.21 5.34 +chagriné chagriné adj m s 0.06 0.47 0.05 0.2 +chagrinée chagriner ver f s 1.94 2.97 0.04 0.14 par:pas; +chagrinés chagriné adj m p 0.06 0.47 0.01 0.14 +chah chah nom m s 0.04 0 0.04 0 +chahut chahut nom m s 1.28 2.7 1.27 2.3 +chahutaient chahuter ver 0.94 3.85 0.01 0.27 ind:imp:3p; +chahutais chahuter ver 0.94 3.85 0 0.14 ind:imp:1s; +chahutait chahuter ver 0.94 3.85 0.21 0.34 ind:imp:3s; +chahutant chahuter ver 0.94 3.85 0.01 0.47 par:pre; +chahute chahuter ver 0.94 3.85 0.08 0.27 ind:pre:1s;ind:pre:3s; +chahutent chahuter ver 0.94 3.85 0.15 0.2 ind:pre:3p; +chahuter chahuter ver 0.94 3.85 0.28 1.22 inf; +chahuteraient chahuter ver 0.94 3.85 0 0.07 cnd:pre:3p; +chahuteur chahuteur nom m s 0.09 0.41 0.07 0.14 +chahuteurs chahuteur nom m p 0.09 0.41 0 0.27 +chahuteuse chahuteur nom f s 0.09 0.41 0.01 0 +chahutez chahuter ver 0.94 3.85 0.04 0 imp:pre:2p;ind:pre:2p; +chahuts chahut nom m p 1.28 2.7 0.01 0.41 +chahutèrent chahuter ver 0.94 3.85 0 0.07 ind:pas:3p; +chahuté chahuter ver m s 0.94 3.85 0.14 0.41 par:pas; +chahutée chahuter ver f s 0.94 3.85 0.01 0.14 par:pas; +chahutées chahuter ver f p 0.94 3.85 0 0.07 par:pas; +chahutés chahuter ver m p 0.94 3.85 0 0.2 par:pas; +chai chai nom m s 0.21 1.62 0.11 0.27 +chair chair nom f s 37.07 101.69 36.01 90.81 +chaire chaire nom f s 1.46 5.74 1.46 5.47 +chaires chaire nom f p 1.46 5.74 0 0.27 +chairman chairman nom m s 0.03 0.27 0.03 0.27 +chairs chair nom f p 37.07 101.69 1.07 10.88 +chais chai nom m p 0.21 1.62 0.1 1.35 +chaise chaise nom f s 40.02 118.31 32.7 86.35 +chaises chaise nom f p 40.02 118.31 7.33 31.96 +chaisière chaisier nom f s 0 0.68 0 0.54 +chaisières chaisier nom f p 0 0.68 0 0.14 +chaix chaix nom m 0 0.27 0 0.27 +chaland chaland nom m s 0.53 3.11 0.5 1.49 +chalands chaland nom m p 0.53 3.11 0.03 1.62 +chalazions chalazion nom m p 0 0.07 0 0.07 +chaldaïques chaldaïque adj m p 0 0.07 0 0.07 +chaldéen chaldéen nom m s 0.03 0.2 0.01 0 +chaldéens chaldéen nom m p 0.03 0.2 0.02 0.2 +chalet chalet nom m s 4.38 8.11 3.92 7.16 +chalets chalet nom m p 4.38 8.11 0.46 0.95 +chaleur chaleur nom f s 39.13 116.22 38.77 112.23 +chaleureuse chaleureux adj f s 5.72 11.55 1.29 4.32 +chaleureusement chaleureusement adv 1.46 1.89 1.46 1.89 +chaleureuses chaleureux adj f p 5.72 11.55 0.47 1.01 +chaleureux chaleureux adj m 5.72 11.55 3.96 6.22 +chaleurs chaleur nom f p 39.13 116.22 0.36 3.99 +challenge challenge nom m s 1.69 0.27 1.41 0.27 +challenger challenger nom m s 1.47 0.47 0.94 0.41 +challengers challenger nom m p 1.47 0.47 0.53 0.07 +challenges challenge nom m p 1.69 0.27 0.29 0 +challengeur challengeur nom m s 0.01 0 0.01 0 +chalon chalon nom m s 0.14 2.64 0.14 2.57 +chalonnaises chalonnais adj f p 0 0.07 0 0.07 +chalons chalon nom m p 0.14 2.64 0 0.07 +chaloupait chalouper ver 0.01 1.01 0 0.14 ind:imp:3s; +chaloupant chalouper ver 0.01 1.01 0 0.2 par:pre; +chaloupe chaloupe nom f s 0.82 2.5 0.73 1.89 +chalouper chalouper ver 0.01 1.01 0 0.07 inf; +chaloupes chaloupe nom f p 0.82 2.5 0.09 0.61 +chaloupé chalouper ver m s 0.01 1.01 0 0.2 par:pas; +chaloupée chaloupé adj f s 0.01 0.74 0.01 0.54 +chaloupées chalouper ver f p 0.01 1.01 0 0.07 par:pas; +chaloupés chalouper ver m p 0.01 1.01 0 0.07 par:pas; +chalumeau chalumeau nom m s 1.63 2.7 1.59 2.36 +chalumeaux chalumeau nom m p 1.63 2.7 0.03 0.34 +chalut chalut nom m s 0.04 0.27 0.04 0.2 +chalutier chalutier nom m s 1.13 3.18 0.66 1.28 +chalutier_patrouilleur chalutier_patrouilleur nom m s 0 0.07 0 0.07 +chalutiers chalutier nom m p 1.13 3.18 0.47 1.89 +chaluts chalut nom m p 0.04 0.27 0 0.07 +chamade chamade nom f s 0.75 1.35 0.75 1.35 +chamaillaient chamailler ver 2.11 3.45 0.05 0.88 ind:imp:3p; +chamaillait chamailler ver 2.11 3.45 0.03 0.34 ind:imp:3s; +chamaillant chamailler ver 2.11 3.45 0.04 0.07 par:pre; +chamaille chamailler ver 2.11 3.45 0.21 0.14 ind:pre:1s;ind:pre:3s; +chamaillent chamailler ver 2.11 3.45 0.13 0.47 ind:pre:3p; +chamailler chamailler ver 2.11 3.45 1.22 1.08 inf; +chamaillerie chamaillerie nom f s 0.77 0.61 0 0.07 +chamailleries chamaillerie nom f p 0.77 0.61 0.77 0.54 +chamailleur chamailleur adj m s 0.01 0.2 0.01 0 +chamailleurs chamailleur adj m p 0.01 0.2 0 0.14 +chamailleuse chamailleur adj f s 0.01 0.2 0 0.07 +chamaillez chamailler ver 2.11 3.45 0.22 0.07 imp:pre:2p;ind:pre:2p; +chamaillions chamailler ver 2.11 3.45 0 0.07 ind:imp:1p; +chamaillis chamaillis nom m 0 0.07 0 0.07 +chamaillons chamailler ver 2.11 3.45 0.13 0 ind:pre:1p; +chamaillèrent chamailler ver 2.11 3.45 0 0.07 ind:pas:3p; +chamaillé chamailler ver m s 2.11 3.45 0.02 0 par:pas; +chamaillés chamailler ver m p 2.11 3.45 0.08 0.27 par:pas; +chaman chaman nom m s 1.03 0.41 0.97 0.2 +chamane chamane nom m s 0.04 0.14 0.02 0.07 +chamanes chamane nom m p 0.04 0.14 0.01 0.07 +chamanisme chamanisme nom m s 0.04 0.14 0.04 0.14 +chamans chaman nom m p 1.03 0.41 0.06 0.2 +chamarrures chamarrure nom f p 0 0.07 0 0.07 +chamarré chamarré adj m s 0.14 1.82 0.14 0.81 +chamarrée chamarré adj f s 0.14 1.82 0.01 0.27 +chamarrées chamarré adj f p 0.14 1.82 0 0.14 +chamarrés chamarré adj m p 0.14 1.82 0 0.61 +chambard chambard nom m s 0.22 0.2 0.22 0.2 +chambarda chambarder ver 0.02 0.34 0 0.07 ind:pas:3s; +chambardait chambarder ver 0.02 0.34 0 0.07 ind:imp:3s; +chambardement chambardement nom m s 0.17 0.68 0.17 0.61 +chambardements chambardement nom m p 0.17 0.68 0 0.07 +chambarder chambarder ver 0.02 0.34 0.02 0.07 inf; +chambardé chambarder ver m s 0.02 0.34 0 0.07 par:pas; +chambardée chambarder ver f s 0.02 0.34 0 0.07 par:pas; +chambellan chambellan nom m s 0.55 0.88 0.53 0.61 +chambellans chambellan nom m p 0.55 0.88 0.02 0.27 +chambertin chambertin nom m s 0.04 0.68 0.04 0.61 +chambertins chambertin nom m p 0.04 0.68 0 0.07 +chamboulaient chambouler ver 2.76 2.23 0 0.14 ind:imp:3p; +chamboulait chambouler ver 2.76 2.23 0 0.14 ind:imp:3s; +chamboulant chambouler ver 2.76 2.23 0.01 0.07 par:pre; +chamboule chambouler ver 2.76 2.23 0.41 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chamboulement chamboulement nom m s 0.04 0.2 0.03 0.2 +chamboulements chamboulement nom m p 0.04 0.2 0.01 0 +chamboulent chambouler ver 2.76 2.23 0.17 0 ind:pre:3p; +chambouler chambouler ver 2.76 2.23 0.58 0.54 inf; +chambouleras chambouler ver 2.76 2.23 0 0.07 ind:fut:2s; +chamboulez chambouler ver 2.76 2.23 0.03 0 imp:pre:2p;ind:pre:2p; +chamboulât chambouler ver 2.76 2.23 0 0.07 sub:imp:3s; +chamboulé chambouler ver m s 2.76 2.23 0.85 0.34 par:pas; +chamboulée chambouler ver f s 2.76 2.23 0.51 0.68 par:pas; +chamboulées chambouler ver f p 2.76 2.23 0.16 0.07 par:pas; +chamboulés chambouler ver m p 2.76 2.23 0.04 0.07 par:pas; +chambra chambrer ver 1.49 3.31 0.02 0.14 ind:pas:3s; +chambrais chambrer ver 1.49 3.31 0 0.07 ind:imp:1s; +chambrait chambrer ver 1.49 3.31 0 0.2 ind:imp:3s; +chambranle chambranle nom m s 0.09 4.26 0.09 4.12 +chambranles chambranle nom m p 0.09 4.26 0 0.14 +chambrant chambrer ver 1.49 3.31 0 0.27 par:pre; +chambre chambre nom f s 288.64 413.31 263.93 380.07 +chambre_salon chambre_salon nom f s 0 0.07 0 0.07 +chambrent chambrer ver 1.49 3.31 0.01 0.14 ind:pre:3p; +chambrer chambrer ver 1.49 3.31 0.39 0.41 inf; +chambres chambre nom f p 288.64 413.31 24.71 33.24 +chambrette chambrette nom f s 0.24 2.5 0.24 2.5 +chambrez chambrer ver 1.49 3.31 0.01 0 ind:pre:2p; +chambrière chambrière nom f s 0.01 1.35 0.01 0.81 +chambrières chambrière nom f p 0.01 1.35 0 0.54 +chambré chambrer ver m s 1.49 3.31 0.02 0.61 par:pas; +chambrée chambrée nom f s 0.98 1.89 0.64 1.62 +chambrées chambrée nom f p 0.98 1.89 0.34 0.27 +chameau chameau nom m s 10.99 10.54 7.21 5.41 +chameaux chameau nom m p 10.99 10.54 3.34 4.73 +chamelier chamelier nom m s 0.12 0.41 0.11 0.2 +chameliers chamelier nom m p 0.12 0.41 0.01 0.2 +chamelle chameau nom f s 10.99 10.54 0.32 0.27 +chamelles chameau nom f p 10.99 10.54 0.12 0.14 +chamois chamois nom m 0.61 2.57 0.61 2.57 +chamoisine chamoisine nom f s 0 0.07 0 0.07 +champ champ nom m s 57.22 106.49 38.05 51.76 +champ champ nom m s 57.22 106.49 0.04 1.76 +champagne champagne nom m s 32.49 29.86 32.38 29.86 +champagnes champagne nom m p 32.49 29.86 0.12 0 +champagnisés champagniser ver m p 0 0.07 0 0.07 par:pas; +champenois champenois nom m 0 4.19 0 4.12 +champenoise champenois adj f s 0 1.62 0 0.34 +champenoises champenois nom f p 0 4.19 0 0.07 +champi champi nom m s 0.02 0.14 0 0.14 +champignon champignon nom m s 11.03 12.97 3.34 3.99 +champignonnaient champignonner ver 0 0.27 0 0.07 ind:imp:3p; +champignonnait champignonner ver 0 0.27 0 0.07 ind:imp:3s; +champignonne champignonner ver 0 0.27 0 0.07 ind:pre:3s; +champignonnent champignonner ver 0 0.27 0 0.07 ind:pre:3p; +champignonnière champignonnière nom f s 0.01 0.34 0.01 0.27 +champignonnières champignonnière nom f p 0.01 0.34 0 0.07 +champignons champignon nom m p 11.03 12.97 7.69 8.99 +champion champion nom m s 35.02 15.07 27.69 10.81 +championnat championnat nom m s 8.24 2.97 6.87 2.57 +championnats championnat nom m p 8.24 2.97 1.38 0.41 +championne champion nom f s 35.02 15.07 2.46 1.08 +championnes champion nom f p 35.02 15.07 0.12 0.2 +champions champion nom m p 35.02 15.07 4.75 2.97 +champis champi nom m p 0.02 0.14 0.02 0 +champs champ nom m p 57.22 106.49 19.14 52.97 +champs_élysées champs_élysées nom m p 0 0.14 0 0.14 +champêtre champêtre adj s 0.7 6.01 0.47 4.66 +champêtres champêtre adj p 0.7 6.01 0.23 1.35 +chance chance nom s 360.6 136.35 334.02 114.05 +chancel chancel nom m s 0.01 0 0.01 0 +chancela chanceler ver 1.06 7.5 0 1.08 ind:pas:3s; +chancelai chanceler ver 1.06 7.5 0 0.07 ind:pas:1s; +chancelaient chanceler ver 1.06 7.5 0 0.07 ind:imp:3p; +chancelais chanceler ver 1.06 7.5 0.01 0.14 ind:imp:1s; +chancelait chanceler ver 1.06 7.5 0.03 1.69 ind:imp:3s; +chancelant chanceler ver 1.06 7.5 0.29 0.88 par:pre; +chancelante chancelant adj f s 0.23 2.23 0.04 1.08 +chancelantes chancelant adj f p 0.23 2.23 0.01 0.27 +chancelants chancelant adj m p 0.23 2.23 0.14 0.27 +chanceler chanceler ver 1.06 7.5 0.14 1.22 inf; +chancelier chancelier nom m s 3.08 2.03 2.97 1.69 +chanceliers chancelier nom m p 3.08 2.03 0.11 0.2 +chancelions chanceler ver 1.06 7.5 0 0.07 ind:imp:1p; +chancelière chancelière nom f s 0.06 0 0.06 0 +chancelières chancelier nom f p 3.08 2.03 0 0.14 +chancelle chanceler ver 1.06 7.5 0.56 1.28 ind:pre:1s;ind:pre:3s; +chancellent chanceler ver 1.06 7.5 0.02 0.27 ind:pre:3p; +chancellerie chancellerie nom f s 1.21 2.7 1.2 1.69 +chancelleries chancellerie nom f p 1.21 2.7 0.01 1.01 +chancelèrent chanceler ver 1.06 7.5 0 0.2 ind:pas:3p; +chancelé chanceler ver m s 1.06 7.5 0.01 0.54 par:pas; +chances chance nom f p 360.6 136.35 26.58 22.3 +chanceuse chanceux adj f s 12.88 1.08 2.49 0.27 +chanceuses chanceux adj f p 12.88 1.08 0.15 0.07 +chanceux chanceux adj m 12.88 1.08 10.24 0.74 +chanci chancir ver m s 0 0.14 0 0.14 par:pas; +chancre chancre nom m s 0.83 1.08 0.53 0.74 +chancres chancre nom m p 0.83 1.08 0.3 0.34 +chand chand nom m s 0 0.14 0 0.14 +chandail chandail nom m s 0.82 14.19 0.63 11.42 +chandails chandail nom m p 0.82 14.19 0.19 2.77 +chandeleur chandeleur nom f s 0.52 0.47 0.52 0.47 +chandelier chandelier nom m s 1.71 4.12 1.36 1.82 +chandeliers chandelier nom m p 1.71 4.12 0.34 2.3 +chandelle chandelle nom f s 5.15 12.57 3.51 7.91 +chandelles chandelle nom f p 5.15 12.57 1.64 4.66 +chanfrein chanfrein nom m s 0 0.54 0 0.54 +chanfreinée chanfreiner ver f s 0 0.07 0 0.07 par:pas; +change changer ver 411.99 246.49 67.83 30.2 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +changea changer ver 411.99 246.49 2.04 12.43 ind:pas:3s; +changeai changer ver 411.99 246.49 0.04 0.61 ind:pas:1s; +changeaient changer ver 411.99 246.49 0.44 4.12 ind:imp:3p; +changeais changer ver 411.99 246.49 1.56 1.89 ind:imp:1s;ind:imp:2s; +changeait changer ver 411.99 246.49 3.3 18.11 ind:imp:3s; +changeant changer ver 411.99 246.49 1.38 6.15 par:pre; +changeante changeant adj f s 1.6 5.47 0.36 1.96 +changeantes changeant adj f p 1.6 5.47 0.02 0.61 +changeants changeant adj m p 1.6 5.47 0.03 1.01 +changeas changer ver 411.99 246.49 0.01 0 ind:pas:2s; +changement changement nom m s 37.7 36.42 27 26.28 +changements changement nom m p 37.7 36.42 10.7 10.14 +changent changer ver 411.99 246.49 12.39 5.34 ind:pre:3p; +changeons changer ver 411.99 246.49 2.74 0.68 imp:pre:1p;ind:pre:1p; +changer changer ver 411.99 246.49 140.5 72.3 inf;;inf;;inf;; +changera changer ver 411.99 246.49 16.54 5.07 ind:fut:3s; +changerai changer ver 411.99 246.49 3.15 0.74 ind:fut:1s; +changeraient changer ver 411.99 246.49 0.23 0.61 cnd:pre:3p; +changerais changer ver 411.99 246.49 1.92 0.88 cnd:pre:1s;cnd:pre:2s; +changerait changer ver 411.99 246.49 6.29 4.32 cnd:pre:3s; +changeras changer ver 411.99 246.49 2.92 0.81 ind:fut:2s; +changerez changer ver 411.99 246.49 1.29 0.07 ind:fut:2p; +changeriez changer ver 411.99 246.49 0.29 0 cnd:pre:2p; +changerons changer ver 411.99 246.49 0.58 0.27 ind:fut:1p; +changeront changer ver 411.99 246.49 1.65 1.01 ind:fut:3p; +changes changer ver 411.99 246.49 9.22 1.82 ind:pre:2s; +changeur changeur nom m s 0.47 0.61 0.42 0.41 +changeurs changeur nom m p 0.47 0.61 0.03 0.2 +changeuse changeur nom f s 0.47 0.61 0.02 0 +changez changer ver 411.99 246.49 10.18 1.28 imp:pre:2p;ind:pre:2p; +changeâmes changer ver 411.99 246.49 0 0.27 ind:pas:1p; +changeât changer ver 411.99 246.49 0 0.81 sub:imp:3s; +changiez changer ver 411.99 246.49 0.8 0.14 ind:imp:2p; +changions changer ver 411.99 246.49 0.03 0.27 ind:imp:1p; +changèrent changer ver 411.99 246.49 0.38 0.95 ind:pas:3p; +changé changer ver m s 411.99 246.49 117.83 68.85 par:pas; +changée changer ver f s 411.99 246.49 3.94 4.32 par:pas; +changées changer ver f p 411.99 246.49 1.01 0.68 par:pas; +changés changer ver m p 411.99 246.49 1.52 1.49 par:pas; +chanoine chanoine nom m s 0.44 11.96 0.43 11.28 +chanoines chanoine nom m p 0.44 11.96 0.01 0.68 +chanoinesse chanoinesse nom f s 0 0.54 0 0.27 +chanoinesses chanoinesse nom f p 0 0.54 0 0.27 +chanson chanson nom f s 84.92 46.55 64.5 26.15 +chansonner chansonner ver 0.01 0 0.01 0 inf; +chansonnette chansonnette nom f s 1.25 2.43 1 1.69 +chansonnettes chansonnette nom f p 1.25 2.43 0.25 0.74 +chansonnier chansonnier nom m s 0.03 1.62 0.03 0.61 +chansonniers chansonnier nom m p 0.03 1.62 0 1.01 +chansons chanson nom f p 84.92 46.55 20.42 20.41 +chanstiquait chanstiquer ver 0 1.22 0 0.07 ind:imp:3s; +chanstique chanstiquer ver 0 1.22 0 0.41 ind:pre:1s;ind:pre:3s; +chanstiquent chanstiquer ver 0 1.22 0 0.07 ind:pre:3p; +chanstiquer chanstiquer ver 0 1.22 0 0.2 inf; +chanstiquèrent chanstiquer ver 0 1.22 0 0.07 ind:pas:3p; +chanstiqué chanstiquer ver m s 0 1.22 0 0.34 par:pas; +chanstiquée chanstiquer ver f s 0 1.22 0 0.07 par:pas; +chant chant nom m s 25.9 42.03 17.64 28.38 +chanta chanter ver 166.34 125.81 0.43 6.62 ind:pas:3s; +chantage chantage nom m s 8.51 7.64 8.5 7.43 +chantages chantage nom m p 8.51 7.64 0.01 0.2 +chantai chanter ver 166.34 125.81 0 0.14 ind:pas:1s; +chantaient chanter ver 166.34 125.81 1.98 8.24 ind:imp:3p; +chantais chanter ver 166.34 125.81 3.56 1.22 ind:imp:1s;ind:imp:2s; +chantait chanter ver 166.34 125.81 8.76 22.57 ind:imp:3s; +chantant chanter ver 166.34 125.81 4.34 10.14 par:pre; +chantante chantant adj f s 1.03 7.36 0.23 3.24 +chantantes chantant adj f p 1.03 7.36 0.02 0.68 +chantants chantant adj m p 1.03 7.36 0.21 0.47 +chante chanter ver 166.34 125.81 56.16 18.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chanteau chanteau nom m s 0 0.14 0 0.14 +chantent chanter ver 166.34 125.81 7.1 7.7 ind:pre:3p; +chanter chanter ver 166.34 125.81 48.12 34.26 inf; +chantera chanter ver 166.34 125.81 2.39 0.68 ind:fut:3s; +chanterai chanter ver 166.34 125.81 1.31 0.41 ind:fut:1s; +chanteraient chanter ver 166.34 125.81 0.09 0.2 cnd:pre:3p; +chanterais chanter ver 166.34 125.81 0.5 0.07 cnd:pre:1s;cnd:pre:2s; +chanterait chanter ver 166.34 125.81 0.31 0.74 cnd:pre:3s; +chanteras chanter ver 166.34 125.81 0.79 0.07 ind:fut:2s; +chanterelle chanterelle nom f s 0.05 0.27 0.01 0.14 +chanterelles chanterelle nom f p 0.05 0.27 0.04 0.14 +chanterez chanter ver 166.34 125.81 0.45 0.14 ind:fut:2p; +chanteriez chanter ver 166.34 125.81 0.04 0 cnd:pre:2p; +chanterons chanter ver 166.34 125.81 0.25 0 ind:fut:1p; +chanteront chanter ver 166.34 125.81 0.46 0.27 ind:fut:3p; +chantes chanter ver 166.34 125.81 6.97 2.09 ind:pre:2s; +chanteur chanteur nom m s 21.17 20.07 9.8 9.19 +chanteurs chanteur nom m p 21.17 20.07 2.65 4.93 +chanteuse chanteur nom f s 21.17 20.07 7.81 4.39 +chanteuse_vedette chanteuse_vedette nom f s 0 0.07 0 0.07 +chanteuses chanteur nom f p 21.17 20.07 0.91 1.55 +chantez chanter ver 166.34 125.81 8.26 0.74 imp:pre:2p;ind:pre:2p; +chantier chantier nom m s 12.96 22.5 9.93 15.14 +chantiers chantier nom m p 12.96 22.5 3.03 7.36 +chantiez chanter ver 166.34 125.81 0.81 0 ind:imp:2p; +chantilly chantilly nom f s 0.59 0.74 0.59 0.74 +chantions chanter ver 166.34 125.81 0.24 0.95 ind:imp:1p; +chantonna chantonner ver 2.84 14.86 0 2.43 ind:pas:3s; +chantonnai chantonner ver 2.84 14.86 0 0.07 ind:pas:1s; +chantonnaient chantonner ver 2.84 14.86 0 0.41 ind:imp:3p; +chantonnais chantonner ver 2.84 14.86 0.01 0.14 ind:imp:1s; +chantonnait chantonner ver 2.84 14.86 0.02 3.65 ind:imp:3s; +chantonnant chantonner ver 2.84 14.86 0.03 2.57 par:pre; +chantonnante chantonnant adj f s 0 0.41 0 0.2 +chantonne chantonner ver 2.84 14.86 2.27 2.5 imp:pre:2s;ind:pre:3s;sub:pre:3s; +chantonnement chantonnement nom m s 0 0.74 0 0.74 +chantonnent chantonner ver 2.84 14.86 0.14 0.34 ind:pre:3p; +chantonner chantonner ver 2.84 14.86 0.35 2.23 inf; +chantonnèrent chantonner ver 2.84 14.86 0 0.07 ind:pas:3p; +chantonné chantonner ver m s 2.84 14.86 0.03 0.34 par:pas; +chantonnée chantonner ver f s 2.84 14.86 0 0.07 par:pas; +chantonnés chantonner ver m p 2.84 14.86 0 0.07 par:pas; +chantons chanter ver 166.34 125.81 3.98 0.54 imp:pre:1p;ind:pre:1p; +chantoung chantoung nom m s 0 0.2 0 0.2 +chantourner chantourner ver 0 0.68 0 0.07 inf; +chantourné chantourner ver m s 0 0.68 0 0.14 par:pas; +chantournées chantourner ver f p 0 0.68 0 0.27 par:pas; +chantournés chantourner ver m p 0 0.68 0 0.2 par:pas; +chantre chantre nom m s 0.46 1.82 0.44 1.35 +chantrerie chantrerie nom f s 0.01 0 0.01 0 +chantres chantre nom m p 0.46 1.82 0.02 0.47 +chants chant nom m p 25.9 42.03 8.26 13.65 +chantâmes chanter ver 166.34 125.81 0 0.14 ind:pas:1p; +chantât chanter ver 166.34 125.81 0 0.27 sub:imp:3s; +chantèrent chanter ver 166.34 125.81 0.17 0.95 ind:pas:3p; +chanté chanter ver m s 166.34 125.81 7.81 6.15 par:pas; +chantée chanter ver f s 166.34 125.81 0.94 1.01 par:pas; +chantées chanter ver f p 166.34 125.81 0.06 0.81 par:pas; +chantés chanter ver m p 166.34 125.81 0.08 0.27 par:pas; +chanvre chanvre nom m s 0.77 2.91 0.77 2.84 +chanvres chanvre nom m p 0.77 2.91 0 0.07 +chançard chançard nom m s 0.17 0.07 0.16 0.07 +chançarde chançard nom f s 0.17 0.07 0.01 0 +chao chao adv 0.15 0.07 0.15 0.07 +chaos chaos nom m 11.3 10.2 11.3 10.2 +chaotique chaotique adj s 0.95 2.57 0.76 1.89 +chaotiquement chaotiquement adv 0 0.07 0 0.07 +chaotiques chaotique adj p 0.95 2.57 0.2 0.68 +chaouch chaouch nom m s 0 0.54 0 0.34 +chaouchs chaouch nom m p 0 0.54 0 0.2 +chaparda chaparder ver 0.16 1.28 0 0.07 ind:pas:3s; +chapardage chapardage nom m s 0.09 0.27 0.06 0.07 +chapardages chapardage nom m p 0.09 0.27 0.02 0.2 +chapardait chaparder ver 0.16 1.28 0.01 0.14 ind:imp:3s; +chapardant chaparder ver 0.16 1.28 0.01 0 par:pre; +chapardent chaparder ver 0.16 1.28 0.01 0.14 ind:pre:3p; +chaparder chaparder ver 0.16 1.28 0.08 0.74 inf; +chapardeur chapardeur nom m s 0.07 0.68 0.02 0.2 +chapardeurs chapardeur nom m p 0.07 0.68 0.03 0.41 +chapardeuse chapardeur nom f s 0.07 0.68 0.02 0.07 +chapardé chaparder ver m s 0.16 1.28 0.04 0.07 par:pas; +chapardée chaparder ver f s 0.16 1.28 0 0.07 par:pas; +chapardées chaparder ver f p 0.16 1.28 0 0.07 par:pas; +chaparral chaparral nom m s 0.12 0 0.1 0 +chaparrals chaparral nom m p 0.12 0 0.02 0 +chape chape nom f s 0.1 2.23 0.1 2.16 +chapeau chapeau nom m s 54.91 88.04 48.61 72.91 +chapeautait chapeauter ver 0.08 1.08 0.01 0.07 ind:imp:3s; +chapeaute chapeauter ver 0.08 1.08 0.04 0.14 ind:pre:1s;ind:pre:3s; +chapeauter chapeauter ver 0.08 1.08 0.01 0.07 inf; +chapeauté chapeauté adj m s 0.01 0.95 0.01 0.14 +chapeautée chapeauter ver f s 0.08 1.08 0.02 0.27 par:pas; +chapeautées chapeauté adj f p 0.01 0.95 0 0.2 +chapeautés chapeauté adj m p 0.01 0.95 0 0.2 +chapeaux chapeau nom m p 54.91 88.04 6.29 15.14 +chapelain chapelain nom m s 0.21 0.74 0.21 0.61 +chapelains chapelain nom m p 0.21 0.74 0 0.14 +chapelet chapelet nom m s 1.91 12.91 1.54 9.73 +chapelets chapelet nom m p 1.91 12.91 0.37 3.18 +chapelier chapelier nom m s 0.24 0.88 0.23 0.61 +chapeliers chapelier nom m p 0.24 0.88 0.01 0.27 +chapelle chapelle nom f s 7.42 35.88 7.37 32.36 +chapellerie chapellerie nom f s 0 0.2 0 0.2 +chapelles chapelle nom f p 7.42 35.88 0.05 3.51 +chapelure chapelure nom f s 0.31 0.54 0.31 0.47 +chapelures chapelure nom f p 0.31 0.54 0 0.07 +chaperon chaperon nom m s 3.84 1.35 3.71 1.22 +chaperonnais chaperonner ver 0.28 0.54 0.01 0.07 ind:imp:1s; +chaperonnait chaperonner ver 0.28 0.54 0.01 0.2 ind:imp:3s; +chaperonner chaperonner ver 0.28 0.54 0.21 0.07 inf; +chaperonné chaperonner ver m s 0.28 0.54 0.03 0.07 par:pas; +chaperonnée chaperonner ver f s 0.28 0.54 0.01 0.07 par:pas; +chaperonnés chaperonner ver m p 0.28 0.54 0.01 0.07 par:pas; +chaperons chaperon nom m p 3.84 1.35 0.13 0.14 +chapes chape nom f p 0.1 2.23 0 0.07 +chapiteau chapiteau nom m s 1.84 3.45 1.83 1.96 +chapiteaux chapiteau nom m p 1.84 3.45 0.01 1.49 +chapiteau_dortoir chapiteau_dortoir nom m p 0 0.07 0 0.07 +chapitre chapitre nom m s 13 38.65 12.1 35.81 +chapitrer chapitrer ver 0.35 1.35 0.02 0.47 inf; +chapitres chapitre nom m p 13 38.65 0.91 2.84 +chapitré chapitrer ver m s 0.35 1.35 0.02 0.2 par:pas; +chapitrée chapitrer ver f s 0.35 1.35 0.01 0.14 par:pas; +chapitrées chapitrer ver f p 0.35 1.35 0 0.14 par:pas; +chapka chapka nom f s 0.23 1.15 0.23 1.15 +chaplinesque chaplinesque adj f s 0 0.14 0 0.14 +chapon chapon nom m s 1.16 0.41 0.58 0.2 +chapons chapon nom m p 1.16 0.41 0.58 0.2 +chappe chappe nom m s 0 0.2 0 0.2 +chapska chapska nom m s 0 0.2 0 0.14 +chapskas chapska nom m p 0 0.2 0 0.07 +chapés chapé adj m p 0 0.07 0 0.07 +chaque chaque adj_ind s 246.29 486.35 246.29 486.35 +char char nom m s 11.86 27.57 8.6 7.91 +charabia charabia nom m s 2.46 1.55 2.46 1.42 +charabias charabia nom m p 2.46 1.55 0 0.14 +charade charade nom f s 0.53 0.74 0.12 0.27 +charades charade nom f p 0.53 0.74 0.41 0.47 +charale charale nom f s 0.03 0 0.03 0 +charançon charançon nom m s 0.2 0.47 0.07 0.14 +charançonné charançonné adj m s 0 0.27 0 0.07 +charançonnée charançonné adj f s 0 0.27 0 0.07 +charançonnés charançonné adj m p 0 0.27 0 0.14 +charançons charançon nom m p 0.2 0.47 0.14 0.34 +charbon charbon nom m s 9.24 24.59 8.39 21.96 +charbonnages charbonnage nom m p 0.27 0.68 0.27 0.68 +charbonnaient charbonner ver 0 1.28 0 0.14 ind:imp:3p; +charbonnait charbonner ver 0 1.28 0 0.2 ind:imp:3s; +charbonne charbonner ver 0 1.28 0 0.27 ind:pre:3s; +charbonnent charbonner ver 0 1.28 0 0.14 ind:pre:3p; +charbonner charbonner ver 0 1.28 0 0.07 inf; +charbonnette charbonnette nom f s 0 0.14 0 0.14 +charbonneuse charbonneux adj f s 0 4.46 0 1.01 +charbonneuses charbonneux adj f p 0 4.46 0 0.95 +charbonneux charbonneux adj m 0 4.46 0 2.5 +charbonnier charbonnier adj m s 0.13 1.01 0.1 0.61 +charbonniers charbonnier nom m p 0.04 2.5 0.03 1.01 +charbonnière charbonnier adj f s 0.13 1.01 0.02 0.34 +charbonnières charbonnier nom f p 0.04 2.5 0 0.14 +charbonné charbonner ver m s 0 1.28 0 0.14 par:pas; +charbonnées charbonner ver f p 0 1.28 0 0.14 par:pas; +charbonnés charbonner ver m p 0 1.28 0 0.2 par:pas; +charbons charbon nom m p 9.24 24.59 0.85 2.64 +charca charca nom s 0 0.47 0 0.47 +charcutage charcutage nom m s 0.04 0.14 0.04 0.14 +charcutaient charcuter ver 1.15 1.15 0 0.14 ind:imp:3p; +charcutaille charcutaille nom f s 0.01 0.27 0.01 0.27 +charcutait charcuter ver 1.15 1.15 0.03 0.07 ind:imp:3s; +charcute charcuter ver 1.15 1.15 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +charcuter charcuter ver 1.15 1.15 0.6 0.47 inf; +charcuterie charcuterie nom f s 0.94 5.2 0.81 4.32 +charcuteries charcuterie nom f p 0.94 5.2 0.14 0.88 +charcutez charcuter ver 1.15 1.15 0.01 0.14 imp:pre:2p;ind:pre:2p; +charcutier charcutier nom m s 0.04 4.73 0.03 2.7 +charcutiers charcutier nom m p 0.04 4.73 0.01 0.81 +charcutière charcutier nom f s 0.04 4.73 0 0.95 +charcutières charcutier nom f p 0.04 4.73 0 0.27 +charcuté charcuter ver m s 1.15 1.15 0.2 0 par:pas; +charcutée charcuter ver f s 1.15 1.15 0.05 0.07 par:pas; +charcutées charcuter ver f p 1.15 1.15 0.01 0.07 par:pas; +charcutés charcuter ver m p 1.15 1.15 0 0.07 par:pas; +chardon chardon nom m s 0.28 3.38 0.2 1.01 +chardonay chardonay nom m s 0.04 0 0.04 0 +chardonnay chardonnay nom m s 0.41 0 0.41 0 +chardonneret chardonneret nom m s 0.1 0.34 0 0.07 +chardonnerets chardonneret nom m p 0.1 0.34 0.1 0.27 +chardons chardon nom m p 0.28 3.38 0.08 2.36 +charentaise charentais nom f s 0.01 2.09 0 0.07 +charentaises charentais nom f p 0.01 2.09 0.01 2.03 +charge charger ver 93.02 122.16 28.43 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +chargea charger ver 93.02 122.16 0.24 4.46 ind:pas:3s; +chargeai charger ver 93.02 122.16 0.01 1.35 ind:pas:1s; +chargeaient charger ver 93.02 122.16 0.14 2.43 ind:imp:3p; +chargeais charger ver 93.02 122.16 0.43 0.47 ind:imp:1s;ind:imp:2s; +chargeait charger ver 93.02 122.16 0.68 7.16 ind:imp:3s; +chargeant charger ver 93.02 122.16 0.14 1.82 par:pre; +chargement chargement nom m s 7.14 6.42 6.37 5.68 +chargements chargement nom m p 7.14 6.42 0.78 0.74 +chargent charger ver 93.02 122.16 1.63 2.03 ind:pre:3p; +chargeons charger ver 93.02 122.16 0.53 0.14 imp:pre:1p;ind:pre:1p; +charger charger ver 93.02 122.16 15.58 10.2 inf; +chargera charger ver 93.02 122.16 2.56 0.95 ind:fut:3s; +chargerai charger ver 93.02 122.16 1.92 0.68 ind:fut:1s; +chargeraient charger ver 93.02 122.16 0.14 0.68 cnd:pre:3p; +chargerais charger ver 93.02 122.16 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +chargerait charger ver 93.02 122.16 0.22 1.08 cnd:pre:3s; +chargeras charger ver 93.02 122.16 0.28 0.07 ind:fut:2s; +chargerez charger ver 93.02 122.16 0.37 0.07 ind:fut:2p; +chargerons charger ver 93.02 122.16 0.24 0.14 ind:fut:1p; +chargeront charger ver 93.02 122.16 0.39 0.34 ind:fut:3p; +charges charge nom f p 32.86 41.28 7.88 5.2 +chargeur chargeur nom m s 4.63 3.72 3.68 2.77 +chargeurs chargeur nom m p 4.63 3.72 0.95 0.95 +chargez charger ver 93.02 122.16 5.37 0.54 imp:pre:2p;ind:pre:2p; +chargeât charger ver 93.02 122.16 0 0.34 sub:imp:3s; +chargiez charger ver 93.02 122.16 0.11 0 ind:imp:2p; +chargions charger ver 93.02 122.16 0.01 0.2 ind:imp:1p; +chargèrent charger ver 93.02 122.16 0.01 1.15 ind:pas:3p; +chargé charger ver m s 93.02 122.16 23.18 40.07 par:pas; +chargée charger ver f s 93.02 122.16 4.81 13.65 par:pas; +chargées charger ver f p 93.02 122.16 0.81 5.68 par:pas; +chargés charger ver m p 93.02 122.16 3.3 18.24 par:pas; +charia charia nom f s 0.01 0 0.01 0 +chariot chariot nom m s 14.4 14.12 12.12 8.45 +chariots chariot nom m p 14.4 14.12 2.28 5.68 +charismatique charismatique adj s 0.54 0.14 0.54 0.14 +charisme charisme nom m s 0.75 0.07 0.75 0.07 +charitable charitable adj s 4.16 3.78 2.9 2.7 +charitablement charitablement adv 0.01 0.47 0.01 0.47 +charitables charitable adj p 4.16 3.78 1.26 1.08 +charité charité nom f s 13.75 14.53 13.54 14.32 +charités charité nom f p 13.75 14.53 0.21 0.2 +charivari charivari nom m s 0.08 1.08 0.07 0.95 +charivaris charivari nom m p 0.08 1.08 0.01 0.14 +charlatan charlatan nom m s 4.44 1.08 3.07 0.47 +charlataner charlataner ver 0 0.07 0 0.07 inf; +charlatanerie charlatanerie nom f s 0.02 0.07 0.02 0.07 +charlatanisme charlatanisme nom m s 0.16 0.34 0.16 0.2 +charlatanismes charlatanisme nom m p 0.16 0.34 0 0.14 +charlatans charlatan nom m p 4.44 1.08 1.37 0.61 +charleston charleston nom m s 0.27 0.41 0.27 0.41 +charlot charlot nom m s 0.46 0.2 0.18 0 +charlots charlot nom m p 0.46 0.2 0.28 0.2 +charlotte charlotte nom f s 0.99 0.61 0.97 0.54 +charlottes charlotte nom f p 0.99 0.61 0.01 0.07 +charma charmer ver 5.69 6.96 0 0.14 ind:pas:3s; +charmaient charmer ver 5.69 6.96 0 0.41 ind:imp:3p; +charmait charmer ver 5.69 6.96 0.13 1.01 ind:imp:3s; +charmant charmant adj m s 54.51 41.15 27.52 19.86 +charmante charmant adj f s 54.51 41.15 21.04 14.32 +charmantes charmant adj f p 54.51 41.15 2.23 3.38 +charmants charmant adj m p 54.51 41.15 3.72 3.58 +charme charme nom m s 22.92 53.45 19.7 43.65 +charment charmer ver 5.69 6.96 0.04 0.34 ind:pre:3p; +charmer charmer ver 5.69 6.96 1.3 0.81 inf; +charmera charmer ver 5.69 6.96 0.01 0.07 ind:fut:3s; +charmes charme nom m p 22.92 53.45 3.22 9.8 +charmeur charmeur adj m s 1.01 1.76 0.93 0.88 +charmeurs charmeur adj m p 1.01 1.76 0.03 0.34 +charmeuse charmeur nom f s 1.08 1.35 0.18 0.07 +charmeuses charmeur nom f p 1.08 1.35 0 0.47 +charmille charmille nom f s 0.02 1.55 0.02 1.22 +charmilles charmille nom f p 0.02 1.55 0 0.34 +charmé charmer ver m s 5.69 6.96 1.11 1.22 par:pas; +charmée charmé adj f s 0.73 1.08 0.34 0.2 +charmés charmer ver m p 5.69 6.96 0.05 0 par:pas; +charnel charnel adj m s 2.1 11.01 0.74 3.99 +charnelle charnel adj f s 2.1 11.01 0.59 4.46 +charnellement charnellement adv 0 0.61 0 0.61 +charnelles charnel adj f p 2.1 11.01 0.18 1.62 +charnels charnel adj m p 2.1 11.01 0.58 0.95 +charnier charnier nom m s 0.84 3.72 0.42 3.04 +charniers charnier nom m p 0.84 3.72 0.41 0.68 +charnière charnière nom f s 0.38 1.82 0.32 1.08 +charnières charnière nom f p 0.38 1.82 0.06 0.74 +charnu charnu adj m s 0.76 6.15 0.06 1.28 +charnue charnu adj f s 0.76 6.15 0.35 2.23 +charnues charnu adj f p 0.76 6.15 0.31 1.69 +charnus charnu adj m p 0.76 6.15 0.03 0.95 +charognard charognard nom m s 0.85 2.03 0.37 0.41 +charognards charognard nom m p 0.85 2.03 0.48 1.62 +charogne charogne nom f s 3.64 7.16 2.58 5.07 +charognerie charognerie nom f s 0 0.27 0 0.27 +charognes charogne nom f p 3.64 7.16 1.06 2.09 +charolaise charolais nom f s 0 0.14 0 0.07 +charolaises charolais nom f p 0 0.14 0 0.07 +charpente charpente nom f s 0.59 5.27 0.58 4.05 +charpenter charpenter ver 0.01 0.34 0 0.07 inf; +charpenterie charpenterie nom f s 0.04 0 0.04 0 +charpentes charpente nom f p 0.59 5.27 0.01 1.22 +charpentier charpentier nom m s 2.57 3.11 2.11 1.82 +charpentiers charpentier nom m p 2.57 3.11 0.45 1.28 +charpentière charpentier nom f s 2.57 3.11 0.01 0 +charpenté charpenté adj m s 0.02 0.47 0.01 0.2 +charpentée charpenté adj f s 0.02 0.47 0.01 0.2 +charpentés charpenté adj m p 0.02 0.47 0 0.07 +charpie charpie nom f s 0.52 2.5 0.52 2.43 +charpies charpie nom f p 0.52 2.5 0 0.07 +charre charre nom m s 0.18 2.03 0.18 1.69 +charres charre nom m p 0.18 2.03 0 0.34 +charretier charretier nom m s 0.19 1.89 0.16 1.01 +charretiers charretier nom m p 0.19 1.89 0.01 0.54 +charretière charretier nom f s 0.19 1.89 0.02 0.34 +charreton charreton nom m s 0 0.61 0 0.54 +charretons charreton nom m p 0 0.61 0 0.07 +charrette charrette nom f s 6.98 20.95 6.63 16.82 +charrettes charrette nom f p 6.98 20.95 0.36 4.12 +charretée charretée nom f s 0.01 0.74 0.01 0.34 +charretées charretée nom f p 0.01 0.74 0 0.41 +charria charrier ver 4.24 12.36 0.26 0.14 ind:pas:3s; +charriage charriage nom m s 0 0.14 0 0.14 +charriaient charrier ver 4.24 12.36 0.01 0.54 ind:imp:3p; +charriais charrier ver 4.24 12.36 0.03 0.14 ind:imp:1s; +charriait charrier ver 4.24 12.36 0.02 1.35 ind:imp:3s; +charriant charrier ver 4.24 12.36 0.14 1.49 par:pre; +charrie charrier ver 4.24 12.36 1.37 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +charrient charrier ver 4.24 12.36 0.04 0.61 ind:pre:3p; +charrier charrier ver 4.24 12.36 0.82 3.11 inf; +charrieras charrier ver 4.24 12.36 0.01 0 ind:fut:2s; +charrierons charrier ver 4.24 12.36 0 0.07 ind:fut:1p; +charrieront charrier ver 4.24 12.36 0.01 0.07 ind:fut:3p; +charries charrier ver 4.24 12.36 0.79 0.61 ind:pre:2s;sub:pre:2s; +charrieurs charrieur nom m p 0.01 0 0.01 0 +charriez charrier ver 4.24 12.36 0.41 0.81 imp:pre:2p;ind:pre:2p; +charrions charrier ver 4.24 12.36 0.01 0 imp:pre:1p; +charrière charrier nom f s 0 0.2 0 0.07 +charrièrent charrier ver 4.24 12.36 0 0.07 ind:pas:3p; +charrières charrier nom f p 0 0.2 0 0.14 +charrié charrier ver m s 4.24 12.36 0.28 1.22 par:pas; +charriée charrier ver f s 4.24 12.36 0.03 0.2 par:pas; +charriées charrier ver f p 4.24 12.36 0.03 0.2 par:pas; +charriés charrier ver m p 4.24 12.36 0 0.14 par:pas; +charroi charroi nom m s 0 1.82 0 0.95 +charrois charroi nom m p 0 1.82 0 0.88 +charron charron nom m s 0.03 0.47 0.03 0.34 +charronnées charronner ver f p 0 0.07 0 0.07 par:pas; +charrons charron nom m p 0.03 0.47 0 0.14 +charrue charrue nom f s 1.54 4.32 1.5 3.38 +charrues charrue nom f p 1.54 4.32 0.05 0.95 +charruée charruer ver f s 0 0.07 0 0.07 par:pas; +chars char nom m p 11.86 27.57 3.27 19.66 +charte charte nom f s 1.07 2.3 1.04 1.82 +charter charter nom m s 0.99 0.74 0.75 0.27 +charters charter nom m p 0.99 0.74 0.25 0.47 +chartes charte nom f p 1.07 2.3 0.03 0.47 +chartiste chartiste nom s 0 0.34 0 0.2 +chartistes chartiste nom p 0 0.34 0 0.14 +chartre chartre nom f s 0.01 0 0.01 0 +chartreuse chartreux nom f s 0.34 1.15 0.06 0.34 +chartreuses chartreux nom f p 0.34 1.15 0 0.14 +chartreux chartreux nom m 0.34 1.15 0.28 0.68 +charybde charybde nom m s 0.16 0.68 0.16 0.68 +chas chas nom m 0.74 0.47 0.74 0.47 +chassa chasser ver 54.93 67.91 0.47 4.46 ind:pas:3s; +chassai chasser ver 54.93 67.91 0.14 0.27 ind:pas:1s; +chassaient chasser ver 54.93 67.91 0.26 2.03 ind:imp:3p; +chassais chasser ver 54.93 67.91 0.93 0.47 ind:imp:1s;ind:imp:2s; +chassait chasser ver 54.93 67.91 0.9 7.3 ind:imp:3s; +chassant chasser ver 54.93 67.91 0.68 3.11 par:pre; +chasse chasse nom f s 47.99 59.46 46.8 53.38 +chasse_d_eau chasse_d_eau nom f s 0 0.07 0 0.07 +chasse_goupille chasse_goupille nom f p 0 0.2 0 0.2 +chasse_mouche chasse_mouche nom m s 0 0.14 0 0.14 +chasse_mouches chasse_mouches nom m 0.12 0.61 0.12 0.61 +chasse_neige chasse_neige nom m 0.58 0.54 0.58 0.54 +chasse_pierres chasse_pierres nom m 0.01 0 0.01 0 +chasselas chasselas nom m 0.01 0.14 0.01 0.14 +chassent chasser ver 54.93 67.91 1.45 0.88 ind:pre:3p; +chasser chasser ver 54.93 67.91 19.86 20.81 inf; +chassera chasser ver 54.93 67.91 1.41 0.61 ind:fut:3s; +chasserai chasser ver 54.93 67.91 0.8 0.2 ind:fut:1s; +chasseraient chasser ver 54.93 67.91 0.02 0.07 cnd:pre:3p; +chasserais chasser ver 54.93 67.91 0.23 0 cnd:pre:1s;cnd:pre:2s; +chasserait chasser ver 54.93 67.91 0.15 0.41 cnd:pre:3s; +chasseras chasser ver 54.93 67.91 0.04 0.14 ind:fut:2s; +chasseresse chasseur nom f s 34.92 41.55 0.46 0.41 +chasseresses chasseur nom f p 34.92 41.55 0.01 0.07 +chasserez chasser ver 54.93 67.91 0.07 0.07 ind:fut:2p; +chasserions chasser ver 54.93 67.91 0.01 0 cnd:pre:1p; +chasserons chasser ver 54.93 67.91 0.36 0.14 ind:fut:1p; +chasseront chasser ver 54.93 67.91 0.69 0.07 ind:fut:3p; +chasses chasser ver 54.93 67.91 1.71 0.2 ind:pre:2s; +chasseur chasseur nom m s 34.92 41.55 21.27 23.58 +chasseurs chasseur nom m p 34.92 41.55 12.88 17.43 +chasseuse chasseur nom f s 34.92 41.55 0.3 0.07 +chassez chasser ver 54.93 67.91 2.97 0.61 imp:pre:2p;ind:pre:2p; +chassie chassie nom f s 0.05 0.14 0.05 0.14 +chassieuse chassieux adj f s 0.14 1.35 0 0.07 +chassieux chassieux adj m 0.14 1.35 0.14 1.28 +chassiez chasser ver 54.93 67.91 0.35 0.07 ind:imp:2p; +chassions chasser ver 54.93 67.91 0.04 0.27 ind:imp:1p; +chassons chasser ver 54.93 67.91 0.47 0.07 imp:pre:1p;ind:pre:1p; +chassât chasser ver 54.93 67.91 0 0.27 sub:imp:3s; +chassèrent chasser ver 54.93 67.91 0.02 0.27 ind:pas:3p; +chassé chasser ver m s 54.93 67.91 6.62 10.14 par:pas; +chassé_croisé chassé_croisé nom m s 0.02 1.01 0 0.68 +chassée chasser ver f s 54.93 67.91 1.71 2.77 par:pas; +chassées chasser ver f p 54.93 67.91 0.16 0.81 par:pas; +chassés chasser ver m p 54.93 67.91 1.64 3.04 par:pas; +chassé_croisé chassé_croisé nom m p 0.02 1.01 0.02 0.34 +chaste chaste adj s 2.22 5.14 1.5 4.32 +chastement chastement adv 0.01 0.54 0.01 0.54 +chastes chaste adj p 2.22 5.14 0.72 0.81 +chasteté chasteté nom f s 2.37 3.92 2.37 3.92 +chasuble chasuble nom f s 0.11 1.76 0.09 0.95 +chasubles chasuble nom f p 0.11 1.76 0.02 0.81 +chat chat nom m s 93 130.74 57.71 59.26 +chat_huant chat_huant nom m s 0 0.27 0 0.27 +chat_tigre chat_tigre nom m s 0 0.14 0 0.14 +chateaubriand chateaubriand nom m s 0.17 0.27 0.15 0.2 +chateaubriands chateaubriand nom m p 0.17 0.27 0.02 0.07 +chatière chatière nom f s 0.14 0.54 0.14 0.54 +chatoiement chatoiement nom m s 0.05 1.35 0.05 1.01 +chatoiements chatoiement nom m p 0.05 1.35 0 0.34 +chatoient chatoyer ver 0 0.81 0 0.07 ind:pre:3p; +chaton chaton nom m s 4.41 4.66 3.32 2.5 +chatonne chatonner ver 0.01 0 0.01 0 ind:pre:3s; +chatons chaton nom m p 4.41 4.66 1.09 2.16 +chatouilla chatouiller ver 7.04 7.36 0 0.41 ind:pas:3s; +chatouillaient chatouiller ver 7.04 7.36 0.01 0.61 ind:imp:3p; +chatouillait chatouiller ver 7.04 7.36 0.37 1.55 ind:imp:3s; +chatouillant chatouiller ver 7.04 7.36 0.11 0.34 par:pre; +chatouille chatouiller ver 7.04 7.36 3.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chatouillement chatouillement nom m s 0.17 0.81 0.15 0.74 +chatouillements chatouillement nom m p 0.17 0.81 0.01 0.07 +chatouillent chatouiller ver 7.04 7.36 0.06 0.27 ind:pre:3p; +chatouiller chatouiller ver 7.04 7.36 0.85 1.69 inf; +chatouillera chatouiller ver 7.04 7.36 0.04 0 ind:fut:3s; +chatouilles chatouiller ver 7.04 7.36 1.95 0.14 ind:pre:2s; +chatouilleuse chatouilleux adj f s 1 0.95 0.34 0.2 +chatouilleuses chatouilleux adj f p 1 0.95 0.03 0 +chatouilleux chatouilleux adj m 1 0.95 0.63 0.74 +chatouillez chatouiller ver 7.04 7.36 0.23 0.07 imp:pre:2p;ind:pre:2p; +chatouillis chatouillis nom m 0.02 0.34 0.02 0.34 +chatouillons chatouiller ver 7.04 7.36 0.01 0 imp:pre:1p; +chatouillât chatouiller ver 7.04 7.36 0 0.14 sub:imp:3s; +chatouillèrent chatouiller ver 7.04 7.36 0 0.27 ind:pas:3p; +chatouillé chatouiller ver m s 7.04 7.36 0.14 0.47 par:pas; +chatouillée chatouiller ver f s 7.04 7.36 0.01 0.41 par:pas; +chatouillées chatouiller ver f p 7.04 7.36 0 0.07 par:pas; +chatouillés chatouiller ver m p 7.04 7.36 0 0.2 par:pas; +chatoyaient chatoyer ver 0 0.81 0 0.14 ind:imp:3p; +chatoyait chatoyer ver 0 0.81 0 0.07 ind:imp:3s; +chatoyant chatoyant adj m s 0.44 2.03 0.29 0.74 +chatoyante chatoyant adj f s 0.44 2.03 0.02 0.54 +chatoyantes chatoyant adj f p 0.44 2.03 0.1 0.47 +chatoyants chatoyant adj m p 0.44 2.03 0.03 0.27 +chatoyer chatoyer ver 0 0.81 0 0.2 inf; +chats chat nom m p 93 130.74 16 38.11 +chattant chatter ver 0.45 0 0.14 0 par:pre; +chatte chat nom f s 93 130.74 16.54 29.12 +chattemite chattemite nom f s 0 0.14 0 0.14 +chatter chatter ver 0.45 0 0.3 0 inf; +chatterie chatterie nom f s 0.01 0.54 0 0.2 +chatteries chatterie nom f p 0.01 0.54 0.01 0.34 +chatterton chatterton nom m s 0.21 0.34 0.21 0.34 +chattes chat nom f p 93 130.74 2.75 4.26 +chattons chatter ver 0.45 0 0.01 0 imp:pre:1p; +chaud chaud adj m s 84.16 113.31 50.2 46.42 +chaud_froid chaud_froid nom m s 0 0.41 0 0.34 +chaude chaud adj f s 84.16 113.31 22.48 45.47 +chaude_pisse chaude_pisse nom f s 0.15 0.34 0.15 0.27 +chaudement chaudement adv 1.07 2.64 1.07 2.64 +chaudes chaud adj f p 84.16 113.31 4.89 13.18 +chaude_pisse chaude_pisse nom f p 0.15 0.34 0 0.07 +chaudière chaudière nom f s 2.62 3.51 1.89 3.11 +chaudières chaudière nom f p 2.62 3.51 0.73 0.41 +chaudron chaudron nom m s 1.12 5.81 0.79 4.26 +chaudronnerie chaudronnerie nom f s 0 0.34 0 0.27 +chaudronneries chaudronnerie nom f p 0 0.34 0 0.07 +chaudronnier chaudronnier nom m s 0.02 0.47 0.02 0.34 +chaudronniers chaudronnier nom m p 0.02 0.47 0 0.14 +chaudronné chaudronner ver m s 0 0.07 0 0.07 par:pas; +chaudronnée chaudronnée nom f s 0 0.07 0 0.07 +chaudrons chaudron nom m p 1.12 5.81 0.33 1.55 +chauds chaud adj m p 84.16 113.31 6.59 8.24 +chaud_froid chaud_froid nom m p 0 0.41 0 0.07 +chauffa chauffer ver 21.75 29.8 0 0.34 ind:pas:3s; +chauffage chauffage nom m s 4.96 6.08 4.96 6.08 +chauffagiste chauffagiste nom m s 0.04 0 0.04 0 +chauffaient chauffer ver 21.75 29.8 0.12 1.01 ind:imp:3p; +chauffais chauffer ver 21.75 29.8 0.03 0.27 ind:imp:1s;ind:imp:2s; +chauffait chauffer ver 21.75 29.8 0.34 3.72 ind:imp:3s; +chauffant chauffant adj m s 0.58 0.41 0.09 0 +chauffante chauffant adj f s 0.58 0.41 0.3 0.34 +chauffantes chauffant adj f p 0.58 0.41 0.08 0.07 +chauffants chauffant adj m p 0.58 0.41 0.11 0 +chauffard chauffard nom m s 1.62 0.95 1.38 0.47 +chauffards chauffard nom m p 1.62 0.95 0.24 0.47 +chauffe chauffer ver 21.75 29.8 7.01 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chauffe_biberon chauffe_biberon nom m s 0.1 0 0.1 0 +chauffe_eau chauffe_eau nom m 0.63 0.61 0.63 0.61 +chauffe_plats chauffe_plats nom m 0 0.14 0 0.14 +chauffent chauffer ver 21.75 29.8 0.52 0.61 ind:pre:3p; +chauffer chauffer ver 21.75 29.8 9.06 10.14 inf; +chauffera chauffer ver 21.75 29.8 0.28 0.07 ind:fut:3s; +chaufferai chauffer ver 21.75 29.8 0.05 0 ind:fut:1s; +chaufferette chaufferette nom f s 0.12 0.81 0.12 0.68 +chaufferettes chaufferette nom f p 0.12 0.81 0 0.14 +chaufferie chaufferie nom f s 0.64 0.88 0.63 0.81 +chaufferies chaufferie nom f p 0.64 0.88 0.01 0.07 +chauffes chauffer ver 21.75 29.8 0.42 0 ind:pre:2s; +chauffeur chauffeur nom m s 40.59 49.86 37.35 44.19 +chauffeur_livreur chauffeur_livreur nom m s 0 0.14 0 0.14 +chauffeurs chauffeur nom m p 40.59 49.86 3.19 5 +chauffeuse chauffeur nom f s 40.59 49.86 0.05 0.68 +chauffez chauffer ver 21.75 29.8 0.7 0.27 imp:pre:2p;ind:pre:2p; +chauffiez chauffer ver 21.75 29.8 0.01 0 ind:imp:2p; +chauffions chauffer ver 21.75 29.8 0 0.07 ind:imp:1p; +chauffons chauffer ver 21.75 29.8 0.22 0.14 imp:pre:1p;ind:pre:1p; +chauffâmes chauffer ver 21.75 29.8 0 0.07 ind:pas:1p; +chauffèrent chauffer ver 21.75 29.8 0 0.07 ind:pas:3p; +chauffé chauffer ver m s 21.75 29.8 1.75 3.58 par:pas; +chauffée chauffer ver f s 21.75 29.8 0.78 2.91 par:pas; +chauffées chauffer ver f p 21.75 29.8 0.08 0.74 par:pas; +chauffés chauffer ver m p 21.75 29.8 0.35 1.62 par:pas; +chaule chauler ver 0 1.22 0 0.07 ind:pre:3s; +chauler chauler ver 0 1.22 0 0.07 inf; +chaulé chauler ver m s 0 1.22 0 0.07 par:pas; +chaulée chauler ver f s 0 1.22 0 0.14 par:pas; +chaulées chauler ver f p 0 1.22 0 0.2 par:pas; +chaulés chauler ver m p 0 1.22 0 0.68 par:pas; +chaume chaume nom m s 0.36 7.09 0.36 4.86 +chaumes chaume nom m p 0.36 7.09 0 2.23 +chaumine chaumine nom f s 0.11 0.47 0.11 0.41 +chaumines chaumine nom f p 0.11 0.47 0 0.07 +chaumière chaumière nom f s 1.47 2.77 1.23 1.08 +chaumières chaumière nom f p 1.47 2.77 0.24 1.69 +chaumé chaumer ver m s 0 0.07 0 0.07 par:pas; +chaussa chausser ver 1.27 15.61 0 1.28 ind:pas:3s; +chaussai chausser ver 1.27 15.61 0 0.07 ind:pas:1s; +chaussaient chausser ver 1.27 15.61 0 0.2 ind:imp:3p; +chaussait chausser ver 1.27 15.61 0.02 0.88 ind:imp:3s; +chaussant chaussant adj m s 0.03 0 0.03 0 +chausse chausser ver 1.27 15.61 0.74 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chausse_pied chausse_pied nom m s 0.24 0.14 0.24 0.14 +chausse_trape chausse_trape nom f s 0 0.2 0 0.07 +chausse_trape chausse_trape nom f p 0 0.2 0 0.14 +chausse_trappe chausse_trappe nom f s 0 0.07 0 0.07 +chaussent chausser ver 1.27 15.61 0.01 0.2 ind:pre:3p; +chausser chausser ver 1.27 15.61 0.17 1.42 inf; +chausserai chausser ver 1.27 15.61 0 0.07 ind:fut:1s; +chausses chausser ver 1.27 15.61 0.16 0.07 ind:pre:2s; +chaussette chaussette nom f s 16.45 22.84 3.29 4.39 +chaussettes chaussette nom f p 16.45 22.84 13.16 18.45 +chausseur chausseur nom m s 0.07 0.54 0.07 0.41 +chausseurs chausseur nom m p 0.07 0.54 0 0.14 +chaussez chausser ver 1.27 15.61 0.06 0 imp:pre:2p;ind:pre:2p; +chausson chausson nom m s 3.5 5.95 0.67 0.61 +chaussons chausson nom m p 3.5 5.95 2.83 5.34 +chaussure chaussure nom f s 73.58 56.49 12.49 8.78 +chaussures chaussure nom f p 73.58 56.49 61.09 47.7 +chaussèrent chausser ver 1.27 15.61 0 0.14 ind:pas:3p; +chaussé chausser ver m s 1.27 15.61 0.06 4.53 par:pas; +chaussée chaussée nom f s 1.87 24.32 1.64 22.36 +chaussées chaussée nom f p 1.87 24.32 0.23 1.96 +chaussés chausser ver m p 1.27 15.61 0.03 3.65 par:pas; +chaut chaut ver 0.01 0.34 0.01 0.34 inf; +chauve chauve adj s 5.92 10.81 5.25 9.46 +chauve_souris chauve_souris nom f s 7.16 4.66 5.43 2.23 +chauves chauve nom p 5.2 5.47 0.72 0.34 +chauve_souris chauve_souris nom f p 7.16 4.66 1.73 2.43 +chauvin chauvin adj m s 0.43 2.5 0.32 2.3 +chauvine chauvin nom f s 0.04 2.03 0 0.07 +chauvines chauvin adj f p 0.43 2.5 0.01 0.14 +chauvinisme chauvinisme nom m s 0.08 0.74 0.08 0.74 +chauviniste chauviniste nom s 0.03 0 0.03 0 +chauvins chauvin adj m p 0.43 2.5 0.1 0.07 +chauvit chauvir ver 0 0.07 0 0.07 ind:pas:3s; +chaux chaux nom f 1.32 7.36 1.32 7.36 +chavignol chavignol nom m s 0 0.07 0 0.07 +chavira chavirer ver 2.41 8.65 0 0.68 ind:pas:3s; +chavirai chavirer ver 2.41 8.65 0 0.07 ind:pas:1s; +chaviraient chavirer ver 2.41 8.65 0 0.27 ind:imp:3p; +chavirait chavirer ver 2.41 8.65 0.02 1.08 ind:imp:3s; +chavirant chavirer ver 2.41 8.65 0 0.07 par:pre; +chavirante chavirant adj f s 0 0.27 0 0.2 +chavire chavirer ver 2.41 8.65 0.43 0.95 ind:pre:1s;ind:pre:3s; +chavirement chavirement nom m s 0.14 0.34 0.14 0.2 +chavirements chavirement nom m p 0.14 0.34 0 0.14 +chavirent chavirer ver 2.41 8.65 0.02 0.34 ind:pre:3p; +chavirer chavirer ver 2.41 8.65 1.01 2.36 inf; +chavireraient chavirer ver 2.41 8.65 0 0.07 cnd:pre:3p; +chavirerait chavirer ver 2.41 8.65 0.01 0.07 cnd:pre:3s; +chavireront chavirer ver 2.41 8.65 0 0.07 ind:fut:3p; +chavirions chavirer ver 2.41 8.65 0 0.07 ind:imp:1p; +chavirons chavirer ver 2.41 8.65 0.14 0.07 ind:pre:1p; +chavirèrent chavirer ver 2.41 8.65 0 0.14 ind:pas:3p; +chaviré chavirer ver m s 2.41 8.65 0.62 1.49 par:pas; +chavirée chavirer ver f s 2.41 8.65 0.16 0.34 par:pas; +chavirés chavirer ver m p 2.41 8.65 0.01 0.54 par:pas; +chaîne chaîne nom f s 38.8 57.77 28.4 43.24 +chaînes chaîne nom f p 38.8 57.77 10.4 14.53 +chaînette chaînette nom f s 0.26 2.77 0.25 2.16 +chaînettes chaînette nom f p 0.26 2.77 0.01 0.61 +chaînon chaînon nom m s 0.7 0.68 0.67 0.47 +chaînons chaînon nom m p 0.7 0.68 0.04 0.2 +chaîné chaîner ver m s 0 0.07 0 0.07 par:pas; +cheap cheap adj m s 0.5 0.14 0.5 0.14 +check_up check_up nom m 0.69 0 0.01 0 +check_list check_list nom f s 0.22 0 0.22 0 +check_up check_up nom m 0.69 0 0.68 0 +cheddar cheddar nom m s 0.53 0 0.53 0 +cheddite cheddite nom f s 0 0.2 0 0.2 +cheese_cake cheese_cake nom m s 0.32 0 0.28 0 +cheese_cake cheese_cake nom m p 0.32 0 0.05 0 +cheeseburger cheeseburger nom m s 3.06 0 2.22 0 +cheeseburgers cheeseburger nom m p 3.06 0 0.84 0 +chef chef nom s 205.26 205.95 189.79 172.57 +chef_adjoint chef_adjoint nom s 0.04 0 0.04 0 +chef_d_oeuvre chef_d_oeuvre nom m s 3.34 12.77 2.56 8.51 +chef_d_oeuvres chef_d_oeuvres nom s 0.11 0 0.11 0 +chef_lieu chef_lieu nom m s 0.19 1.82 0.19 1.82 +chefs chef nom p 205.26 205.95 15.46 33.38 +chef_d_oeuvre chef_d_oeuvre nom m p 3.34 12.77 0.77 4.26 +chefs_lieux chefs_lieux nom m p 0 0.27 0 0.27 +cheftaine cheftaine nom f s 0.13 0.54 0.13 0.27 +cheftaines cheftaine nom f p 0.13 0.54 0 0.27 +cheik cheik nom m s 0.48 0.95 0.45 0.88 +cheikh cheikh nom m s 0.32 0 0.32 0 +cheiks cheik nom m p 0.48 0.95 0.04 0.07 +chelem chelem nom m s 0.31 0.2 0.31 0.2 +chemin chemin nom m s 125.18 231.42 114.34 197.5 +chemina cheminer ver 0.87 8.99 0.01 0.07 ind:pas:3s; +cheminaient cheminer ver 0.87 8.99 0 0.74 ind:imp:3p; +cheminait cheminer ver 0.87 8.99 0.1 0.88 ind:imp:3s; +cheminant cheminer ver 0.87 8.99 0.04 1.42 par:pre; +chemine cheminer ver 0.87 8.99 0.48 1.15 ind:pre:1s;ind:pre:3s; +chemineau chemineau nom m s 0.04 1.62 0.02 0.95 +chemineaux chemineau nom m p 0.04 1.62 0.02 0.68 +cheminement cheminement nom m s 0.18 6.08 0.17 4.86 +cheminements cheminement nom m p 0.18 6.08 0.01 1.22 +cheminent cheminer ver 0.87 8.99 0.02 0.47 ind:pre:3p; +cheminer cheminer ver 0.87 8.99 0.02 2.23 inf; +chemineraient cheminer ver 0.87 8.99 0 0.07 cnd:pre:3p; +cheminerait cheminer ver 0.87 8.99 0 0.07 cnd:pre:3s; +cheminerons cheminer ver 0.87 8.99 0 0.07 ind:fut:1p; +chemineront cheminer ver 0.87 8.99 0 0.07 ind:fut:3p; +cheminions cheminer ver 0.87 8.99 0 0.07 ind:imp:1p; +cheminons cheminer ver 0.87 8.99 0.01 0.2 imp:pre:1p;ind:pre:1p; +cheminot cheminot nom m s 1.42 2.5 1.06 1.01 +cheminots cheminot nom m p 1.42 2.5 0.35 1.49 +chemins chemin nom m p 125.18 231.42 10.85 33.92 +cheminâmes cheminer ver 0.87 8.99 0 0.07 ind:pas:1p; +cheminèrent cheminer ver 0.87 8.99 0 0.14 ind:pas:3p; +cheminé cheminer ver m s 0.87 8.99 0.11 1.15 par:pas; +cheminée cheminée nom f s 11.39 43.99 9.99 36.28 +cheminées cheminée nom f p 11.39 43.99 1.4 7.7 +chemise chemise nom f s 43.66 91.42 36.48 74.59 +chemiser chemiser ver 0.21 0.07 0.14 0.07 inf; +chemiserie chemiserie nom f s 0.16 0.14 0.16 0.14 +chemises chemise nom f p 43.66 91.42 7.18 16.82 +chemisette chemisette nom f s 0.16 4.12 0.15 2.77 +chemisettes chemisette nom f p 0.16 4.12 0.01 1.35 +chemisier chemisier nom m s 4 7.97 3.77 6.76 +chemisiers chemisier nom m p 4 7.97 0.23 1.22 +chemisée chemiser ver f s 0.21 0.07 0.02 0 par:pas; +chemisées chemiser ver f p 0.21 0.07 0.05 0 par:pas; +chenal chenal nom m s 0.24 4.73 0.2 3.65 +chenapan chenapan nom m s 1.08 0.88 0.72 0.41 +chenapans chenapan nom m p 1.08 0.88 0.36 0.47 +chenaux chenal nom m p 0.24 4.73 0.04 1.08 +chenet chenet nom m s 0.06 0.81 0.01 0.14 +chenets chenet nom m p 0.06 0.81 0.04 0.68 +chenil chenil nom m s 1.4 3.24 1.3 2.77 +chenille chenille nom f s 2.14 5.68 1.38 2.5 +chenilles chenille nom f p 2.14 5.68 0.76 3.18 +chenillette chenillette nom f s 0.06 0.34 0.06 0.07 +chenillettes chenillette nom f p 0.06 0.34 0 0.27 +chenillé chenillé adj m s 0 0.14 0 0.07 +chenillés chenillé adj m p 0 0.14 0 0.07 +chenils chenil nom m p 1.4 3.24 0.09 0.47 +chenu chenu adj m s 0.26 1.22 0.14 0.54 +chenue chenu adj f s 0.26 1.22 0.01 0.34 +chenues chenu adj f p 0.26 1.22 0.1 0.14 +chenus chenu adj m p 0.26 1.22 0 0.2 +cheptel cheptel nom m s 0.09 1.35 0.09 1.35 +cher cher adj m s 205.75 133.65 130.7 90.47 +chercha chercher ver 712.46 448.99 0.96 27.03 ind:pas:3s; +cherchai chercher ver 712.46 448.99 0.92 4.93 ind:pas:1s; +cherchaient chercher ver 712.46 448.99 4.01 11.76 ind:imp:3p; +cherchais chercher ver 712.46 448.99 26.4 15.34 ind:imp:1s;ind:imp:2s; +cherchait chercher ver 712.46 448.99 16.27 52.5 ind:imp:3s; +cherchant chercher ver 712.46 448.99 5.9 31.62 par:pre; +cherchas chercher ver 712.46 448.99 0 0.07 ind:pas:2s; +cherche chercher ver 712.46 448.99 150.75 66.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cherche_midi cherche_midi nom m 0.01 0.27 0.01 0.27 +cherchent chercher ver 712.46 448.99 17.53 12.09 ind:pre:3p;sub:pre:3p; +chercher chercher ver 712.46 448.99 341.01 172.36 inf;;inf;;inf;; +cherchera chercher ver 712.46 448.99 2.11 1.01 ind:fut:3s; +chercherai chercher ver 712.46 448.99 2.39 0.74 ind:fut:1s; +chercheraient chercher ver 712.46 448.99 0.4 0.47 cnd:pre:3p; +chercherais chercher ver 712.46 448.99 1.52 0.54 cnd:pre:1s;cnd:pre:2s; +chercherait chercher ver 712.46 448.99 1.06 1.69 cnd:pre:3s; +chercheras chercher ver 712.46 448.99 0.5 0.14 ind:fut:2s; +chercherez chercher ver 712.46 448.99 0.19 0.07 ind:fut:2p; +chercheriez chercher ver 712.46 448.99 0.04 0.14 cnd:pre:2p; +chercherions chercher ver 712.46 448.99 0 0.14 cnd:pre:1p; +chercherons chercher ver 712.46 448.99 0.86 0.2 ind:fut:1p; +chercheront chercher ver 712.46 448.99 1.04 0.81 ind:fut:3p; +cherches chercher ver 712.46 448.99 36.45 5.81 ind:pre:2s;sub:pre:2s; +chercheur chercheur nom m s 5.74 3.78 2.66 1.76 +chercheurs chercheur nom m p 5.74 3.78 2.58 1.96 +chercheuse chercheur nom f s 5.74 3.78 0.48 0.07 +chercheuses chercheur adj f p 1.35 0.81 0.06 0 +cherchez chercher ver 712.46 448.99 42.95 7.36 imp:pre:2p;ind:pre:2p; +cherchiez chercher ver 712.46 448.99 4.79 0.74 ind:imp:2p;sub:pre:2p; +cherchions chercher ver 712.46 448.99 2.04 2.03 ind:imp:1p;sub:pre:1p; +cherchons chercher ver 712.46 448.99 13.13 2.03 imp:pre:1p;ind:pre:1p; +cherchâmes chercher ver 712.46 448.99 0 0.2 ind:pas:1p; +cherchât chercher ver 712.46 448.99 0 0.95 sub:imp:3s; +cherchèrent chercher ver 712.46 448.99 0.19 2.03 ind:pas:3p; +cherché chercher ver m s 712.46 448.99 32.27 24.53 par:pas; +cherchée chercher ver f s 712.46 448.99 5.56 2.03 par:pas; +cherchées chercher ver f p 712.46 448.99 0.43 0.54 par:pas; +cherchés chercher ver m p 712.46 448.99 0.81 0.41 par:pas; +chergui chergui nom m s 0 0.74 0 0.74 +cherokee cherokee nom m s 0.34 0.27 0.21 0.07 +cherokees cherokee nom m p 0.34 0.27 0.13 0.2 +cherres cherrer ver 0 0.07 0 0.07 ind:pre:2s; +cherry cherry nom m s 0.13 0.34 0.13 0.34 +chers cher adj m p 205.75 133.65 28.61 13.99 +cherté cherté nom f s 0 0.47 0 0.47 +chester chester nom m s 0.12 0.07 0.12 0.07 +chevai chever ver 0.45 0 0.45 0 ind:pas:1s; +cheval cheval nom m s 129.12 179.26 85.42 110.27 +cheval_vapeur cheval_vapeur nom m s 0.03 0.2 0.02 0.07 +chevaler chevaler ver 0 0.14 0 0.07 inf; +chevaleresque chevaleresque adj s 0.4 1.22 0.39 0.95 +chevaleresquement chevaleresquement adv 0 0.07 0 0.07 +chevaleresques chevaleresque adj m p 0.4 1.22 0.01 0.27 +chevalerie chevalerie nom f s 0.77 2.23 0.77 2.09 +chevaleries chevalerie nom f p 0.77 2.23 0 0.14 +chevalet chevalet nom m s 0.53 6.22 0.47 4.93 +chevalets chevalet nom m p 0.53 6.22 0.05 1.28 +chevalier chevalier nom m s 15.91 36.15 10.77 21.89 +chevaliers chevalier nom m p 15.91 36.15 5.14 14.26 +chevalin chevalin adj m s 0.18 1.82 0.03 0.68 +chevaline chevalin adj f s 0.18 1.82 0.14 1.01 +chevalins chevalin adj m p 0.18 1.82 0 0.14 +chevalière chevalière nom f s 0.47 2.97 0.45 2.43 +chevalières chevalière nom f p 0.47 2.97 0.02 0.54 +chevalée chevaler ver f s 0 0.14 0 0.07 par:pas; +chevance chevance nom f s 0 0.2 0 0.2 +chevau_léger chevau_léger nom m s 0.01 0.14 0.01 0.14 +chevaucha chevaucher ver 3.67 12.77 0.01 0.34 ind:pas:3s; +chevauchaient chevaucher ver 3.67 12.77 0.17 1.62 ind:imp:3p; +chevauchais chevaucher ver 3.67 12.77 0.05 0.07 ind:imp:1s;ind:imp:2s; +chevauchait chevaucher ver 3.67 12.77 0.22 1.69 ind:imp:3s; +chevauchant chevaucher ver 3.67 12.77 0.3 2.09 par:pre; +chevauche chevaucher ver 3.67 12.77 0.79 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chevauchement chevauchement nom m s 0.14 0.14 0.14 0.14 +chevauchent chevaucher ver 3.67 12.77 0.18 1.69 ind:pre:3p; +chevaucher chevaucher ver 3.67 12.77 1 2.16 inf; +chevauchera chevaucher ver 3.67 12.77 0.02 0 ind:fut:3s; +chevaucherai chevaucher ver 3.67 12.77 0.26 0 ind:fut:1s; +chevaucheraient chevaucher ver 3.67 12.77 0 0.07 cnd:pre:3p; +chevaucheur chevaucheur nom m s 0 0.07 0 0.07 +chevauchez chevaucher ver 3.67 12.77 0.08 0 imp:pre:2p;ind:pre:2p; +chevauchons chevaucher ver 3.67 12.77 0.09 0.14 imp:pre:1p;ind:pre:1p; +chevauchèrent chevaucher ver 3.67 12.77 0 0.27 ind:pas:3p; +chevauché chevaucher ver m s 3.67 12.77 0.35 0.61 par:pas; +chevauchée chevauchée nom f s 0.56 4.19 0.42 2.5 +chevauchées chevauchée nom f p 0.56 4.19 0.14 1.69 +chevauchés chevaucher ver m p 3.67 12.77 0 0.14 par:pas; +chevaux cheval nom m p 129.12 179.26 43.7 68.99 +cheval_vapeur cheval_vapeur nom m p 0.03 0.2 0.01 0.14 +chevelu chevelu adj m s 1.53 4.66 1.31 2.36 +chevelue chevelu adj f s 1.53 4.66 0.04 0.81 +chevelues chevelu adj f p 1.53 4.66 0 0.34 +chevelure chevelure nom f s 2.52 27.5 2.5 25.07 +chevelures chevelure nom f p 2.52 27.5 0.02 2.43 +chevelus chevelu adj m p 1.53 4.66 0.18 1.15 +chevesne chevesne nom m s 0.02 1.35 0.02 0.95 +chevesnes chevesne nom m p 0.02 1.35 0 0.41 +chevet chevet nom m s 3.27 18.92 3.27 18.51 +chevets chevet nom m p 3.27 18.92 0 0.41 +cheveu cheveu nom m s 121.27 270.68 5.11 7.5 +cheveux cheveu nom m p 121.27 270.68 116.16 263.18 +chevillage chevillage nom m s 0 0.07 0 0.07 +chevillard chevillard nom m s 0 0.14 0 0.07 +chevillards chevillard nom m p 0 0.14 0 0.07 +cheville cheville nom f s 12.24 22.16 8.79 8.99 +chevilles cheville nom f p 12.24 22.16 3.45 13.18 +chevillette chevillette nom f s 0.1 0.07 0.1 0.07 +chevillé cheviller ver m s 0.16 0.88 0.14 0.41 par:pas; +chevillée cheviller ver f s 0.16 0.88 0.01 0.41 par:pas; +chevillées cheviller ver f p 0.16 0.88 0 0.07 par:pas; +cheviotte cheviotte nom f s 0 0.2 0 0.2 +chevir chevir ver 0.27 0 0.27 0 inf; +chevreau chevreau nom m s 0.84 3.38 0.44 2.36 +chevreaux chevreau nom m p 0.84 3.38 0.4 1.01 +chevrette chevrette nom f s 0.11 0.81 0.11 0.68 +chevrettes chevrette nom f p 0.11 0.81 0 0.14 +chevreuil chevreuil nom m s 1.58 5.14 1.31 2.97 +chevreuils chevreuil nom m p 1.58 5.14 0.26 2.16 +chevrier chevrier nom m s 0.35 0.27 0.2 0.14 +chevriers chevrier nom m p 0.35 0.27 0.14 0.07 +chevrière chevrier nom f s 0.35 0.27 0 0.07 +chevron chevron nom m s 1.36 2.5 0.96 0.41 +chevronné chevronné adj m s 0.31 1.01 0.11 0.47 +chevronnée chevronner ver f s 0.04 0.14 0 0.07 par:pas; +chevronnés chevronné adj m p 0.31 1.01 0.2 0.54 +chevrons chevron nom m p 1.36 2.5 0.4 2.09 +chevrota chevroter ver 0.03 1.28 0 0.2 ind:pas:3s; +chevrotais chevroter ver 0.03 1.28 0 0.07 ind:imp:1s; +chevrotait chevroter ver 0.03 1.28 0 0.34 ind:imp:3s; +chevrotant chevroter ver 0.03 1.28 0 0.07 par:pre; +chevrotante chevrotant adj f s 0.14 1.15 0.14 1.15 +chevrote chevroter ver 0.03 1.28 0.01 0.27 ind:pre:1s;ind:pre:3s; +chevrotement chevrotement nom m s 0 0.41 0 0.34 +chevrotements chevrotement nom m p 0 0.41 0 0.07 +chevroter chevroter ver 0.03 1.28 0.02 0.2 inf; +chevrotine chevrotine nom f s 0.78 1.42 0.43 0.54 +chevrotines chevrotine nom f p 0.78 1.42 0.35 0.88 +chevroté chevroter ver m s 0.03 1.28 0 0.07 par:pas; +chevrotée chevroter ver f s 0.03 1.28 0 0.07 par:pas; +chevêche chevêche nom f s 0 0.41 0 0.27 +chevêches chevêche nom f p 0 0.41 0 0.14 +chewing_gum chewing_gum nom m s 0.01 3.58 0 0.07 +chewing_gum chewing_gum nom m s 0.01 3.58 0 3.11 +chewing_gum chewing_gum nom m p 0.01 3.58 0.01 0.41 +chez chez pre 842.18 680.54 842.18 680.54 +chez_soi chez_soi nom m 0.31 0.41 0.31 0.41 +chi chi nom m s 1.29 0.54 1.29 0.54 +chia chier ver 67.53 22.64 0.02 0 ind:pas:3s; +chiader chiader ver 0.14 0.47 0.05 0.14 inf; +chiadé chiader ver m s 0.14 0.47 0.06 0.27 par:pas; +chiadée chiader ver f s 0.14 0.47 0.02 0 par:pas; +chiadées chiader ver f p 0.14 0.47 0.01 0.07 par:pas; +chiaient chier ver 67.53 22.64 0.39 0 ind:imp:3p; +chiais chier ver 67.53 22.64 1.3 0 ind:imp:1s;ind:imp:2s; +chiait chier ver 67.53 22.64 0.12 0.07 ind:imp:3s; +chiala chialer ver 7.25 13.78 0 0.07 ind:pas:3s; +chialaient chialer ver 7.25 13.78 0.01 0 ind:imp:3p; +chialais chialer ver 7.25 13.78 0.17 0.41 ind:imp:1s;ind:imp:2s; +chialait chialer ver 7.25 13.78 0.2 0.74 ind:imp:3s; +chialant chialer ver 7.25 13.78 0.01 0.74 par:pre; +chiale chialer ver 7.25 13.78 1.28 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chialent chialer ver 7.25 13.78 0.34 0.14 ind:pre:3p; +chialer chialer ver 7.25 13.78 4.01 6.28 inf; +chialera chialer ver 7.25 13.78 0.03 0 ind:fut:3s; +chialeraient chialer ver 7.25 13.78 0 0.07 cnd:pre:3p; +chialerais chialer ver 7.25 13.78 0.11 0.2 cnd:pre:1s; +chialerait chialer ver 7.25 13.78 0 0.07 cnd:pre:3s; +chialeras chialer ver 7.25 13.78 0 0.07 ind:fut:2s; +chialeries chialerie nom f p 0 0.07 0 0.07 +chiales chialer ver 7.25 13.78 0.72 0.47 ind:pre:2s; +chialeur chialeur nom m s 0.04 0.07 0.03 0 +chialeuse chialeur nom f s 0.04 0.07 0.01 0.07 +chialez chialer ver 7.25 13.78 0.01 0 ind:pre:2p; +chialèrent chialer ver 7.25 13.78 0 0.07 ind:pas:3p; +chialé chialer ver m s 7.25 13.78 0.35 0.95 par:pas; +chiant chiant adj m s 11.89 2.84 8.46 1.01 +chiante chiant adj f s 11.89 2.84 2.09 1.08 +chiantes chiant adj f p 11.89 2.84 0.3 0.2 +chianti chianti nom m s 0.32 0.95 0.32 0.95 +chiants chiant adj m p 11.89 2.84 1.03 0.54 +chiard chiard nom m s 0.68 0.54 0.47 0.14 +chiards chiard nom m p 0.68 0.54 0.22 0.41 +chiasma chiasma nom m s 0.01 0.07 0.01 0.07 +chiasme chiasme nom m s 0.01 0 0.01 0 +chiasse chiasse nom f s 0.94 1.49 0.81 1.28 +chiasses chiasse nom f p 0.94 1.49 0.14 0.2 +chiasseux chiasseux adj m s 0.02 0.2 0.02 0.2 +chiatique chiatique adj s 0.11 0.2 0.11 0.14 +chiatiques chiatique adj m p 0.11 0.2 0 0.07 +chibouk chibouk nom m s 0 0.34 0 0.34 +chibre chibre nom m s 0.25 0.74 0.25 0.74 +chic chic ono 1.2 0.68 1.2 0.68 +chic_type chic_type adj m s 0.01 0 0.01 0 +chica chica nom f s 0.71 0.07 0.68 0.07 +chicanait chicaner ver 0.59 0.68 0.01 0.07 ind:imp:3s; +chicanant chicaner ver 0.59 0.68 0.01 0.07 par:pre; +chicane chicane nom f s 0.45 2.16 0.41 1.22 +chicanent chicaner ver 0.59 0.68 0 0.07 ind:pre:3p; +chicaner chicaner ver 0.59 0.68 0.24 0.2 inf; +chicaneries chicanerie nom f p 0.03 0 0.03 0 +chicanerons chicaner ver 0.59 0.68 0 0.07 ind:fut:1p; +chicanes chicane nom f p 0.45 2.16 0.04 0.95 +chicaneur chicaneur nom m s 0.21 0 0.21 0 +chicanez chicaner ver 0.59 0.68 0.18 0 imp:pre:2p;ind:pre:2p; +chicanier chicanier adj m s 0 0.2 0 0.14 +chicaniers chicanier nom m p 0.01 0.07 0.01 0.07 +chicanière chicanier adj f s 0 0.2 0 0.07 +chicano chicano adj m s 0.13 0 0.11 0 +chicanons chicaner ver 0.59 0.68 0.05 0 imp:pre:1p; +chicanos chicano nom m p 0.25 0.07 0.19 0 +chicané chicaner ver m s 0.59 0.68 0.03 0 par:pas; +chicanées chicaner ver f p 0.59 0.68 0 0.07 par:pas; +chicas chica nom f p 0.71 0.07 0.03 0 +chiche chiche ono 0.75 0.74 0.75 0.74 +chiche_kebab chiche_kebab nom m s 0.24 0.07 0.24 0.07 +chichement chichement adv 0.04 1.42 0.04 1.42 +chiches chiche adj p 3.62 3.18 2.12 1.22 +chichi chichi nom m s 1.46 5 0.55 3.04 +chichis chichi nom m p 1.46 5 0.91 1.96 +chichiteuse chichiteux adj f s 0.02 0.68 0.01 0.34 +chichiteuses chichiteux adj f p 0.02 0.68 0 0.27 +chichiteux chichiteux adj m p 0.02 0.68 0.01 0.07 +chicon chicon nom m s 0.05 0 0.05 0 +chicore chicorer ver 0 0.61 0 0.27 ind:pre:1s;ind:pre:3s; +chicorent chicorer ver 0 0.61 0 0.14 ind:pre:3p; +chicorer chicorer ver 0 0.61 0 0.07 inf; +chicores chicorer ver 0 0.61 0 0.07 ind:pre:2s; +chicoré chicorer ver m s 0 0.61 0 0.07 par:pas; +chicorée chicorée nom f s 0.59 1.69 0.59 1.42 +chicorées chicorée nom f p 0.59 1.69 0 0.27 +chicot chicot nom m s 0.22 3.58 0.14 0.14 +chicote chicot nom f s 0.22 3.58 0.03 0.54 +chicoter chicoter ver 0 0.14 0 0.07 inf; +chicotin chicotin nom m s 0.01 0 0.01 0 +chicots chicot nom m p 0.22 3.58 0.06 2.91 +chicotte chicotte nom f s 0 0.07 0 0.07 +chicoté chicoter ver m s 0 0.14 0 0.07 par:pas; +chics chic adj p 19.57 14.32 1.95 1.82 +chie chier ver 67.53 22.64 4.31 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +chien chien nom m s 223.53 184.59 158.77 117.64 +chien_assis chien_assis nom m 0 0.07 0 0.07 +chien_loup chien_loup nom m s 0.27 1.08 0.14 1.08 +chien_robot chien_robot nom m s 0.01 0 0.01 0 +chien_étoile chien_étoile nom m s 0 0.07 0 0.07 +chienchien chienchien nom m s 0.3 0.2 0.3 0.14 +chienchiens chienchien nom m p 0.3 0.2 0 0.07 +chiendent chiendent nom m s 0.69 2.16 0.69 2.16 +chienlit chienlit nom s 0.6 0.74 0.6 0.74 +chiennasse chienner ver 0 0.07 0 0.07 sub:imp:1s; +chienne chien nom f s 223.53 184.59 12.84 11.55 +chiennerie chiennerie nom f s 0.3 0.68 0.3 0.61 +chienneries chiennerie nom f p 0.3 0.68 0 0.07 +chiennes chien nom f p 223.53 184.59 1.15 0.88 +chiens chien nom m p 223.53 184.59 50.76 54.53 +chien_loup chien_loup nom m p 0.27 1.08 0.12 0 +chient chier ver 67.53 22.64 0.89 0.34 ind:pre:3p; +chier chier ver 67.53 22.64 53.3 18.11 inf; +chiera chier ver 67.53 22.64 0.15 0.27 ind:fut:3s; +chierai chier ver 67.53 22.64 0.24 0 ind:fut:1s; +chierais chier ver 67.53 22.64 0.08 0 cnd:pre:1s;cnd:pre:2s; +chieras chier ver 67.53 22.64 0.06 0 ind:fut:2s; +chierez chier ver 67.53 22.64 0.02 0 ind:fut:2p; +chierie chierie nom f s 0.53 0.88 0.39 0.74 +chieries chierie nom f p 0.53 0.88 0.14 0.14 +chieront chier ver 67.53 22.64 0.15 0 ind:fut:3p; +chies chier ver 67.53 22.64 1.22 0.14 ind:pre:2s; +chieur chieur nom m s 2.3 0.88 0.96 0.34 +chieurs chieur nom m p 2.3 0.88 0.22 0.07 +chieuse chieur nom f s 2.3 0.88 1.11 0.47 +chieuses chieur nom f p 2.3 0.88 0.01 0 +chiez chier ver 67.53 22.64 0.21 0.2 imp:pre:2p;ind:pre:2p; +chiffe chiffe nom f s 0.89 1.62 0.81 1.55 +chiffes chiffe nom f p 0.89 1.62 0.09 0.07 +chiffon chiffon nom m s 6.11 18.99 3.67 10.41 +chiffonna chiffonner ver 1.65 2.3 0 0.2 ind:pas:3s; +chiffonnade chiffonnade nom f s 0.02 0.14 0.02 0.07 +chiffonnades chiffonnade nom f p 0.02 0.14 0 0.07 +chiffonnaient chiffonner ver 1.65 2.3 0.01 0.07 ind:imp:3p; +chiffonnait chiffonner ver 1.65 2.3 0.06 0.61 ind:imp:3s; +chiffonnant chiffonner ver 1.65 2.3 0.01 0.14 par:pre; +chiffonne chiffonner ver 1.65 2.3 1.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chiffonner chiffonner ver 1.65 2.3 0.06 0.34 inf; +chiffonnier chiffonnier nom m s 1 3.58 0.76 1.62 +chiffonniers chiffonnier nom m p 1 3.58 0.13 1.35 +chiffonnière chiffonnier nom f s 1 3.58 0.1 0.54 +chiffonnières chiffonnier nom f p 1 3.58 0.01 0.07 +chiffonné chiffonné adj m s 0.98 2.16 0.6 0.88 +chiffonnée chiffonné adj f s 0.98 2.16 0.25 0.41 +chiffonnées chiffonné adj f p 0.98 2.16 0 0.47 +chiffonnés chiffonné adj m p 0.98 2.16 0.14 0.41 +chiffons chiffon nom m p 6.11 18.99 2.43 8.58 +chiffrable chiffrable adj s 0.01 0 0.01 0 +chiffrage chiffrage nom m s 0 0.07 0 0.07 +chiffrait chiffrer ver 0.64 1.01 0 0.07 ind:imp:3s; +chiffrant chiffrer ver 0.64 1.01 0.02 0 par:pre; +chiffre chiffre nom m s 27.28 33.11 9.38 12.7 +chiffrement chiffrement nom m s 0.13 0 0.13 0 +chiffrent chiffrer ver 0.64 1.01 0.02 0.07 ind:pre:3p; +chiffrer chiffrer ver 0.64 1.01 0.19 0.27 inf; +chiffres chiffre nom m p 27.28 33.11 17.9 20.41 +chiffres_clé chiffres_clé nom m p 0 0.07 0 0.07 +chiffreur chiffreur nom m s 0.02 0 0.01 0 +chiffreuse chiffreur nom f s 0.02 0 0.01 0 +chiffré chiffré adj m s 0.07 1.35 0.05 0.41 +chiffrée chiffrer ver f s 0.64 1.01 0.16 0 par:pas; +chiffrées chiffré adj f p 0.07 1.35 0 0.2 +chiffrés chiffrer ver m p 0.64 1.01 0.01 0.14 par:pas; +chignole chignole nom f s 0.31 0.47 0.3 0.34 +chignoles chignole nom f p 0.31 0.47 0.01 0.14 +chignon chignon nom m s 1.31 12.77 1.29 11.76 +chignons chignon nom m p 1.31 12.77 0.02 1.01 +chihuahua chihuahua nom m s 0.38 0.07 0.3 0.07 +chihuahuas chihuahua nom m p 0.38 0.07 0.07 0 +chiites chiite nom p 0 0.07 0 0.07 +chiles chile nom m p 0.03 0 0.03 0 +chili chili nom m s 2.21 0.14 2.18 0.07 +chilien chilien adj m s 2.21 1.28 1.03 0.07 +chilienne chilien adj f s 2.21 1.28 0.58 0.68 +chiliennes chilien adj f p 2.21 1.28 0.16 0.14 +chiliens chilien nom m p 0.83 0.2 0.64 0 +chilis chili nom m p 2.21 0.14 0.04 0.07 +chilom chilom nom m s 0.1 0 0.1 0 +chimie chimie nom f s 5.29 5.2 5.28 5 +chimies chimie nom f p 5.29 5.2 0.01 0.2 +chimiothérapie chimiothérapie nom f s 1.05 0.14 1.05 0.14 +chimique chimique adj s 10.51 4.59 5.4 1.96 +chimiquement chimiquement adv 0.54 0.34 0.54 0.34 +chimiques chimique adj p 10.51 4.59 5.11 2.64 +chimiste chimiste nom s 1.9 1.55 1.6 1.15 +chimistes chimiste nom p 1.9 1.55 0.3 0.41 +chimpanzé chimpanzé nom m s 2.35 1.69 1.96 1.15 +chimpanzés chimpanzé nom m p 2.35 1.69 0.39 0.54 +chimère chimère nom f s 2.94 5.54 1.74 2.23 +chimères chimère nom f p 2.94 5.54 1.21 3.31 +chimérique chimérique adj s 0.55 2.23 0.52 1.15 +chimériquement chimériquement adv 0 0.07 0 0.07 +chimériques chimérique adj p 0.55 2.23 0.03 1.08 +china chiner ver 0.81 8.45 0.76 7.57 ind:pas:3s; +chinaient chiner ver 0.81 8.45 0 0.07 ind:imp:3p; +chinait chiner ver 0.81 8.45 0 0.14 ind:imp:3s; +chinant chiner ver 0.81 8.45 0 0.07 par:pre; +chinchard chinchard nom m s 0 0.07 0 0.07 +chinchilla chinchilla nom m s 0.13 0.41 0.12 0.34 +chinchillas chinchilla nom m p 0.13 0.41 0.01 0.07 +chine chine nom s 0.67 0.54 0.67 0.54 +chiner chiner ver 0.81 8.45 0.04 0.14 inf; +chinera chiner ver 0.81 8.45 0.01 0 ind:fut:3s; +chinetoque chinetoque nom m s 1.8 1.01 1.06 0.61 +chinetoques chinetoque nom m p 1.8 1.01 0.74 0.41 +chineur chineur nom m s 0.01 0.34 0 0.2 +chineurs chineur nom m p 0.01 0.34 0.01 0.14 +chinois chinois nom m s 24.73 16.22 21.88 14.59 +chinoise chinois adj f s 21.34 25.14 5.47 5.14 +chinoiser chinoiser ver 0.14 0.07 0.14 0.07 inf; +chinoiserie chinoiserie nom f s 0.31 0.68 0 0.2 +chinoiseries chinoiserie nom f p 0.31 0.68 0.31 0.47 +chinoises chinois adj f p 21.34 25.14 1.25 3.38 +chinook chinook nom m s 0.05 0.27 0.05 0.27 +chintz chintz nom m 0.09 0.27 0.09 0.27 +chiné chiné adj m s 0.03 0.41 0.03 0.2 +chinée chiné adj f s 0.03 0.41 0 0.14 +chinées chiner ver f p 0.81 8.45 0 0.14 par:pas; +chinés chiné adj m p 0.03 0.41 0 0.07 +chiot chiot nom m s 5.67 2.7 3.98 1.49 +chiots chiot nom m p 5.67 2.7 1.7 1.22 +chiotte chiotte nom f s 12.86 14.73 1.2 1.42 +chiottes chiotte nom f p 12.86 14.73 11.66 13.31 +chiourme chiourme nom f s 0 0.2 0 0.2 +chip chip nom s 2.51 0 2.51 0 +chipa chiper ver 2.34 2.97 0 0.14 ind:pas:3s; +chipaient chiper ver 2.34 2.97 0 0.14 ind:imp:3p; +chipais chiper ver 2.34 2.97 0.01 0.07 ind:imp:1s; +chipait chiper ver 2.34 2.97 0.14 0.34 ind:imp:3s; +chipant chiper ver 2.34 2.97 0 0.07 par:pre; +chipe chiper ver 2.34 2.97 0.45 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chiper chiper ver 2.34 2.97 0.89 0.95 inf; +chiperaient chiper ver 2.34 2.97 0.01 0 cnd:pre:3p; +chiperiez chiper ver 2.34 2.97 0.01 0 cnd:pre:2p; +chipeur chipeur adj m s 0 0.07 0 0.07 +chipez chiper ver 2.34 2.97 0.02 0 imp:pre:2p;ind:pre:2p; +chipie chipie nom f s 0.76 0.88 0.58 0.68 +chipies chipie nom f p 0.76 0.88 0.18 0.2 +chipolata chipolata nom f s 0.23 0.47 0.03 0.27 +chipolatas chipolata nom f p 0.23 0.47 0.2 0.2 +chipota chipoter ver 0.5 1.22 0 0.07 ind:pas:3s; +chipotage chipotage nom m s 0.04 0.2 0.03 0.14 +chipotages chipotage nom m p 0.04 0.2 0.02 0.07 +chipotais chipoter ver 0.5 1.22 0 0.07 ind:imp:1s; +chipotait chipoter ver 0.5 1.22 0.02 0.34 ind:imp:3s; +chipotant chipoter ver 0.5 1.22 0 0.07 par:pre; +chipote chipoter ver 0.5 1.22 0.08 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chipotent chipoter ver 0.5 1.22 0.04 0 ind:pre:3p; +chipoter chipoter ver 0.5 1.22 0.27 0.27 inf; +chipotes chipoter ver 0.5 1.22 0.05 0 ind:pre:2s; +chipoteur chipoteur adj m s 0 0.2 0 0.14 +chipoteuse chipoteur adj f s 0 0.2 0 0.07 +chipotez chipoter ver 0.5 1.22 0.01 0 imp:pre:2p; +chipotons chipoter ver 0.5 1.22 0.03 0.07 imp:pre:1p; +chipoté chipoter ver m s 0.5 1.22 0 0.07 par:pas; +chippendale chippendale nom m s 0.12 0 0.01 0 +chippendales chippendale nom m p 0.12 0 0.1 0 +chips chips nom p 6.72 0.95 6.72 0.95 +chipèrent chiper ver 2.34 2.97 0 0.07 ind:pas:3p; +chipé chiper ver m s 2.34 2.97 0.6 0.74 par:pas; +chipée chiper ver f s 2.34 2.97 0.18 0.14 par:pas; +chipées chiper ver f p 2.34 2.97 0.01 0.14 par:pas; +chipés chiper ver m p 2.34 2.97 0.03 0.14 par:pas; +chiquaient chiquer ver 0.5 2.7 0 0.14 ind:imp:3p; +chiquait chiquer ver 0.5 2.7 0.05 0.2 ind:imp:3s; +chiquant chiquer ver 0.5 2.7 0 0.47 par:pre; +chique chique nom f s 0.4 2.23 0.24 2.16 +chiquement chiquement adv 0.01 0.14 0.01 0.14 +chiquenaude chiquenaude nom f s 0.03 1.22 0.03 1.15 +chiquenaudes chiquenaude nom f p 0.03 1.22 0 0.07 +chiquent chiquer ver 0.5 2.7 0.02 0 ind:pre:3p; +chiquer chiquer ver 0.5 2.7 0.16 1.35 inf; +chiquerai chiquer ver 0.5 2.7 0 0.07 ind:fut:1s; +chiqueront chiquer ver 0.5 2.7 0 0.07 ind:fut:3p; +chiques chique nom f p 0.4 2.23 0.16 0.07 +chiqueur chiqueur nom m s 0.01 0.27 0.01 0.07 +chiqueurs chiqueur nom m p 0.01 0.27 0 0.14 +chiqueuses chiqueur nom f p 0.01 0.27 0 0.07 +chiqué chiqué nom m s 0.58 1.08 0.58 1.01 +chiqués chiqué nom m p 0.58 1.08 0 0.07 +chiraquien chiraquien adj m s 0 0.07 0 0.07 +chiricahua chiricahua adj s 0.1 0 0.05 0 +chiricahuas chiricahua nom p 0.19 0 0.16 0 +chiromancie chiromancie nom f s 0.02 0.07 0.02 0.07 +chiromancien chiromancien nom m s 0.16 0.2 0 0.07 +chiromancienne chiromancien nom f s 0.16 0.2 0.14 0.07 +chiromanciens chiromancien nom m p 0.16 0.2 0.03 0.07 +chiropracteur chiropracteur nom m s 0.57 0 0.57 0 +chiropraticien chiropraticien nom m s 0.06 0 0.04 0 +chiropraticienne chiropraticien nom f s 0.06 0 0.02 0 +chiropratique chiropratique nom f s 0.02 0 0.02 0 +chiropraxie chiropraxie nom f s 0.07 0 0.07 0 +chiroptère chiroptère nom m s 0.03 0 0.03 0 +chiroubles chiroubles nom m 0 0.2 0 0.2 +chirurgical chirurgical adj m s 3.6 2.16 1.23 0.54 +chirurgicale chirurgical adj f s 3.6 2.16 1.84 1.01 +chirurgicalement chirurgicalement adv 0.33 0.2 0.33 0.2 +chirurgicales chirurgical adj f p 3.6 2.16 0.27 0.41 +chirurgicaux chirurgical adj m p 3.6 2.16 0.26 0.2 +chirurgie chirurgie nom f s 11.84 2.03 11.74 2.03 +chirurgien chirurgien nom m s 15.57 8.45 12.38 6.89 +chirurgien_dentiste chirurgien_dentiste nom s 0.02 0.27 0.02 0.27 +chirurgienne chirurgien nom f s 15.57 8.45 0.27 0 +chirurgiens chirurgien nom m p 15.57 8.45 2.92 1.55 +chirurgies chirurgie nom f p 11.84 2.03 0.1 0 +chisel chisel nom m s 0.01 0 0.01 0 +chistera chistera nom m s 0.11 0 0.11 0 +chitine chitine nom f s 0.01 0.07 0.01 0.07 +chitineux chitineux adj m p 0 0.07 0 0.07 +chiton chiton nom m s 0 0.07 0 0.07 +chiure chiure nom f s 0.56 1.08 0.42 0.27 +chiures chiure nom f p 0.56 1.08 0.14 0.81 +chié chier ver m s 67.53 22.64 3.72 1.49 par:pas; +chiée chiée nom f s 0.22 0.95 0.22 0.47 +chiées chier ver f p 67.53 22.64 0.01 0 par:pas; +chiés chier ver m p 67.53 22.64 0.01 0 par:pas; +chlamyde chlamyde nom f s 0 0.2 0 0.2 +chlamydia chlamydia nom f s 0.42 0 0.3 0 +chlamydiae chlamydia nom f p 0.42 0 0.12 0 +chlass chlass adj 0.03 0 0.03 0 +chleuh chleuh nom m s 0.22 0.54 0.04 0.07 +chleuhs chleuh nom m p 0.22 0.54 0.18 0.47 +chlingue chlinguer ver 0.21 0.07 0.18 0.07 ind:pre:1s;ind:pre:3s; +chlinguer chlinguer ver 0.21 0.07 0.01 0 inf; +chlingues chlinguer ver 0.21 0.07 0.02 0 ind:pre:2s; +chloral chloral nom m s 0.2 0 0.2 0 +chloramphénicol chloramphénicol nom m s 0.09 0 0.09 0 +chlorate chlorate nom m s 0.07 0.14 0.07 0.14 +chlore chlore nom m s 0.79 0.81 0.79 0.81 +chlorer chlorer ver 0.03 0 0.02 0 inf; +chlorhydrate chlorhydrate nom m s 0.17 0 0.17 0 +chlorhydrique chlorhydrique adj m s 0.22 0.07 0.22 0.07 +chlorique chlorique adj s 0.01 0 0.01 0 +chloroformant chloroformer ver 0.22 0.2 0 0.07 par:pre; +chloroforme chloroforme nom m s 0.63 0.41 0.63 0.41 +chloroformer chloroformer ver 0.22 0.2 0.02 0.07 inf; +chloroformes chloroformer ver 0.22 0.2 0.14 0 ind:pre:2s; +chloroformez chloroformer ver 0.22 0.2 0.01 0 imp:pre:2p; +chloroformisation chloroformisation nom f s 0 0.07 0 0.07 +chloroformé chloroformer ver m s 0.22 0.2 0.05 0.07 par:pas; +chlorophylle chlorophylle nom f s 0.25 0.68 0.25 0.68 +chlorophyllien chlorophyllien adj m s 0 0.07 0 0.07 +chlorophytums chlorophytum nom m p 0.01 0 0.01 0 +chloroplaste chloroplaste nom m s 0.01 0 0.01 0 +chloroquine chloroquine nom f s 0.01 0 0.01 0 +chlorotique chlorotique adj f s 0 0.27 0 0.14 +chlorotiques chlorotique adj f p 0 0.27 0 0.14 +chlorpromazine chlorpromazine nom f s 0.06 0 0.06 0 +chlorure chlorure nom m s 0.33 0.14 0.32 0.07 +chlorures chlorure nom m p 0.33 0.14 0.01 0.07 +chloré chloré adj m s 0.06 0.07 0.01 0.07 +chlorée chloré adj f s 0.06 0.07 0.05 0 +chnoque chnoque nom s 0.08 0.54 0.07 0.34 +chnoques chnoque nom p 0.08 0.54 0.01 0.2 +chnord chnord nom m s 0 0.07 0 0.07 +chnouf chnouf nom f s 0.02 0.07 0.02 0.07 +choanes choane nom m p 0.01 0 0.01 0 +choc choc nom m s 31.46 44.19 30.22 37.57 +chocard chocard nom m s 0 0.07 0 0.07 +chochotte chochotte nom f s 1.65 0.61 1.37 0.27 +chochottes chochotte nom f p 1.65 0.61 0.28 0.34 +chocolat chocolat nom m s 31.03 34.86 27.74 30.61 +chocolaterie chocolaterie nom f s 0.27 0.27 0.27 0.2 +chocolateries chocolaterie nom f p 0.27 0.27 0 0.07 +chocolatier chocolatier nom m s 0.11 0.27 0.11 0.14 +chocolatière chocolatier nom f s 0.11 0.27 0 0.14 +chocolats chocolat nom m p 31.03 34.86 3.29 4.26 +chocolaté chocolaté adj m s 0.81 0.07 0.17 0.07 +chocolatée chocolaté adj f s 0.81 0.07 0.27 0 +chocolatées chocolaté adj f p 0.81 0.07 0.36 0 +chocolatés chocolaté adj m p 0.81 0.07 0.01 0 +chocottes chocotte nom f p 0.45 0.95 0.45 0.95 +chocs choc nom m p 31.46 44.19 1.24 6.62 +choeur choeur nom m s 7 26.69 6.39 24.86 +choeurs choeur nom m p 7 26.69 0.61 1.82 +choie choyer ver 0.4 2.09 0.02 0.2 ind:pre:3s; +choient choyer ver 0.4 2.09 0.01 0.07 ind:pre:3p; +choieront choyer ver 0.4 2.09 0 0.07 ind:fut:3p; +choir choir ver 2.05 10 0.33 6.89 inf; +choiras choir ver 2.05 10 0 0.07 ind:fut:2s; +chois choir ver 2.05 10 0.01 0.27 imp:pre:2s;ind:pre:1s; +choisi choisir ver m s 170.48 133.92 58.19 44.53 par:pas; +choisie choisir ver f s 170.48 133.92 6.78 5.34 par:pas; +choisies choisir ver f p 170.48 133.92 0.67 1.55 par:pas; +choisir choisir ver 170.48 133.92 47.09 35 inf; +choisira choisir ver 170.48 133.92 1.92 1.01 ind:fut:3s; +choisirai choisir ver 170.48 133.92 1.27 0.47 ind:fut:1s; +choisiraient choisir ver 170.48 133.92 0.06 0.2 cnd:pre:3p; +choisirais choisir ver 170.48 133.92 1.68 0.74 cnd:pre:1s;cnd:pre:2s; +choisirait choisir ver 170.48 133.92 0.59 1.22 cnd:pre:3s; +choisiras choisir ver 170.48 133.92 0.88 0.2 ind:fut:2s; +choisirent choisir ver 170.48 133.92 0.06 0.81 ind:pas:3p; +choisirez choisir ver 170.48 133.92 0.73 0 ind:fut:2p; +choisiriez choisir ver 170.48 133.92 0.23 0.2 cnd:pre:2p; +choisirions choisir ver 170.48 133.92 0.04 0.07 cnd:pre:1p; +choisirons choisir ver 170.48 133.92 0.36 0.2 ind:fut:1p; +choisiront choisir ver 170.48 133.92 0.13 0.2 ind:fut:3p; +choisis choisir ver m p 170.48 133.92 21.33 8.78 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:1s;par:pas; +choisissaient choisir ver 170.48 133.92 0.16 1.08 ind:imp:3p; +choisissais choisir ver 170.48 133.92 0.41 0.81 ind:imp:1s;ind:imp:2s; +choisissait choisir ver 170.48 133.92 0.64 6.15 ind:imp:3s; +choisissant choisir ver 170.48 133.92 1.18 3.24 par:pre; +choisisse choisir ver 170.48 133.92 1.68 1.15 sub:pre:1s;sub:pre:3s; +choisissent choisir ver 170.48 133.92 2.13 1.96 ind:pre:3p; +choisisses choisir ver 170.48 133.92 0.77 0 sub:pre:2s; +choisissez choisir ver 170.48 133.92 9.45 1.55 imp:pre:2p;ind:pre:2p; +choisissiez choisir ver 170.48 133.92 0.23 0.27 ind:imp:2p; +choisissions choisir ver 170.48 133.92 0.08 0.27 ind:imp:1p; +choisissons choisir ver 170.48 133.92 0.5 0.47 imp:pre:1p;ind:pre:1p; +choisit choisir ver 170.48 133.92 11.23 16.01 ind:pre:3s;ind:pas:3s; +choisîmes choisir ver 170.48 133.92 0.01 0.2 ind:pas:1p; +choisît choisir ver 170.48 133.92 0 0.2 sub:imp:3s; +choit choir ver 2.05 10 0 0.68 ind:pre:3s; +choix choix nom m 113.35 51.42 113.35 51.42 +choke choke nom m s 0.01 0 0.01 0 +cholera choler ver 0.02 0 0.02 0 ind:fut:3s; +cholestérol cholestérol nom m s 1.81 0.41 1.81 0.41 +choline choline nom f s 0.11 0 0.1 0 +cholines choline nom f p 0.11 0 0.01 0 +cholinestérase cholinestérase nom f s 0.02 0 0.02 0 +cholique cholique adj m s 0.01 0 0.01 0 +cholécystectomie cholécystectomie nom f s 0.03 0 0.03 0 +cholécystite cholécystite nom f s 0.03 0 0.03 0 +cholédoque cholédoque adj m s 0.04 0 0.04 0 +choléra choléra nom m s 2.52 2.43 2.52 2.36 +choléras choléra nom m p 2.52 2.43 0 0.07 +cholériques cholérique nom p 0.01 0.07 0.01 0.07 +chop_suey chop_suey nom m s 0.13 0 0.13 0 +chopaient choper ver 17.69 4.05 0.01 0.07 ind:imp:3p; +chopais choper ver 17.69 4.05 0.12 0.07 ind:imp:1s;ind:imp:2s; +chopait choper ver 17.69 4.05 0.14 0.14 ind:imp:3s; +chopant choper ver 17.69 4.05 0 0.07 par:pre; +chope choper ver 17.69 4.05 4.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +chopent choper ver 17.69 4.05 0.56 0.41 ind:pre:3p; +choper choper ver 17.69 4.05 6.06 1.28 inf; +chopera choper ver 17.69 4.05 0.31 0 ind:fut:3s; +choperai choper ver 17.69 4.05 0.1 0 ind:fut:1s; +choperais choper ver 17.69 4.05 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +choperait choper ver 17.69 4.05 0.01 0 cnd:pre:3s; +choperas choper ver 17.69 4.05 0.03 0 ind:fut:2s; +choperez choper ver 17.69 4.05 0.04 0 ind:fut:2p; +choperons choper ver 17.69 4.05 0.01 0 ind:fut:1p; +choperont choper ver 17.69 4.05 0.06 0 ind:fut:3p; +chopes choper ver 17.69 4.05 0.58 0 ind:pre:2s;sub:pre:2s; +chopez choper ver 17.69 4.05 1.27 0 imp:pre:2p;ind:pre:2p; +chopine chopine nom f s 0.03 2.7 0.02 2.09 +chopines chopine nom f p 0.03 2.7 0.01 0.61 +chopons choper ver 17.69 4.05 0.43 0 imp:pre:1p; +choppe chopper ver 1.9 0.2 0.34 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +choppent chopper ver 1.9 0.2 0.03 0.07 ind:pre:3p; +chopper chopper ver 1.9 0.2 0.95 0.07 inf; +choppers chopper nom m p 0.29 0.2 0.01 0 +choppes chopper ver 1.9 0.2 0.01 0 ind:pre:2s; +choppez chopper ver 1.9 0.2 0.05 0 imp:pre:2p;ind:pre:2p; +choppons chopper ver 1.9 0.2 0.02 0 imp:pre:1p; +choppé chopper ver m s 1.9 0.2 0.47 0 par:pas; +choppée chopper ver f s 1.9 0.2 0.01 0 par:pas; +chopé choper ver m s 17.69 4.05 3.42 1.01 par:pas; +chopée choper ver f s 17.69 4.05 0.34 0 par:pas; +chopées choper ver f p 17.69 4.05 0 0.07 par:pas; +chopés choper ver m p 17.69 4.05 0.1 0.14 par:pas; +choqua choquer ver 13.56 15.41 0.01 0.61 ind:pas:3s; +choquaient choquer ver 13.56 15.41 0 0.54 ind:imp:3p; +choquait choquer ver 13.56 15.41 0.3 2.23 ind:imp:3s; +choquant choquant adj m s 3.61 1.69 2.43 0.81 +choquante choquant adj f s 3.61 1.69 0.43 0.68 +choquantes choquant adj f p 3.61 1.69 0.58 0.2 +choquants choquant adj m p 3.61 1.69 0.17 0 +choque choquer ver 13.56 15.41 4.01 2.7 imp:pre:2s;ind:pre:1s;ind:pre:3s; +choquent choquer ver 13.56 15.41 0.15 0.34 ind:pre:3p; +choquer choquer ver 13.56 15.41 2.39 3.04 inf;; +choquera choquer ver 13.56 15.41 0.05 0.27 ind:fut:3s; +choqueraient choquer ver 13.56 15.41 0.01 0.07 cnd:pre:3p; +choquerais choquer ver 13.56 15.41 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +choquerait choquer ver 13.56 15.41 0.21 0.2 cnd:pre:3s; +choqueras choquer ver 13.56 15.41 0.01 0 ind:fut:2s; +choquez choquer ver 13.56 15.41 0.09 0 imp:pre:2p;ind:pre:2p; +choquons choquer ver 13.56 15.41 0.01 0 ind:pre:1p; +choquèrent choquer ver 13.56 15.41 0.01 0.07 ind:pas:3p; +choqué choquer ver m s 13.56 15.41 3.44 2.64 par:pas; +choquée choquer ver f s 13.56 15.41 1.35 1.35 par:pas; +choquées choquer ver f p 13.56 15.41 0.14 0.41 par:pas; +choqués choquer ver m p 13.56 15.41 1 0.61 par:pas; +choral choral adj m s 0.26 0.27 0.14 0 +chorale chorale nom f s 2.63 1.96 2.56 1.76 +chorales chorale nom f p 2.63 1.96 0.07 0.2 +chorals choral nom m p 0.01 0.95 0 0.07 +choraux choral adj m p 0.26 0.27 0 0.2 +chorba chorba nom f s 0 0.07 0 0.07 +choreutes choreute nom m p 0 0.07 0 0.07 +choriste choriste nom s 0.46 1.35 0.32 0.27 +choristes choriste nom p 0.46 1.35 0.14 1.08 +chorizo chorizo nom m s 1.57 0.2 1.37 0.14 +chorizos chorizo nom m p 1.57 0.2 0.2 0.07 +chortens chorten nom m p 0 0.07 0 0.07 +chorus chorus nom m 0.15 1.49 0.15 1.49 +chorée chorée nom f s 0.04 0 0.04 0 +chorégraphe chorégraphe nom s 0.71 0.47 0.48 0.41 +chorégraphes chorégraphe nom p 0.71 0.47 0.22 0.07 +chorégraphie chorégraphie nom f s 1.06 0.68 0.99 0.54 +chorégraphier chorégraphier ver 0.21 0 0.2 0 inf; +chorégraphies chorégraphie nom f p 1.06 0.68 0.07 0.14 +chorégraphique chorégraphique adj m s 0.02 0.34 0.02 0.27 +chorégraphiques chorégraphique adj p 0.02 0.34 0 0.07 +chorégraphiées chorégraphier ver f p 0.21 0 0.01 0 par:pas; +chose chose nom f s 1773.62 1057.64 1321.79 695.2 +choser choser ver 0 0.07 0 0.07 inf; +choses chose nom f p 1773.62 1057.64 451.83 362.43 +chosification chosification nom f s 0 0.07 0 0.07 +chosifient chosifier ver 0.01 0.07 0 0.07 ind:pre:3p; +chosifier chosifier ver 0.01 0.07 0.01 0 inf; +chotts chott nom m p 0 0.14 0 0.14 +chou chou nom m s 29.86 21.96 25.5 13.99 +chou_fleur chou_fleur nom m s 0.54 1.01 0.54 1.01 +chou_palmiste chou_palmiste nom m s 0 0.07 0 0.07 +chou_rave chou_rave nom m s 0 0.2 0 0.2 +chouan chouan nom m s 0.14 1.28 0.01 0.2 +chouannerie chouannerie nom f s 0 0.34 0 0.34 +chouans chouan nom m p 0.14 1.28 0.14 1.08 +choucard choucard adj m s 0.01 1.49 0 0.81 +choucarde choucard adj f s 0.01 1.49 0.01 0.47 +choucardes choucard adj f p 0.01 1.49 0 0.07 +choucards choucard adj m p 0.01 1.49 0 0.14 +choucas choucas nom m 0.16 0.14 0.16 0.14 +chouchou chouchou nom m s 3.44 1.69 3.16 1.49 +chouchous chouchou nom m p 3.44 1.69 0.28 0.2 +chouchoutage chouchoutage nom m s 0 0.14 0 0.14 +chouchoutaient chouchouter ver 0.61 0.74 0.01 0.07 ind:imp:3p; +chouchoutait chouchouter ver 0.61 0.74 0.02 0.07 ind:imp:3s; +chouchoute chouchouter ver 0.61 0.74 0.18 0.07 ind:pre:1s;ind:pre:3s; +chouchouter chouchouter ver 0.61 0.74 0.33 0.07 inf; +chouchouteras chouchouter ver 0.61 0.74 0.01 0 ind:fut:2s; +chouchoutes chouchoute nom f p 0.21 0.14 0.11 0 +chouchoutez chouchouter ver 0.61 0.74 0.01 0 ind:pre:2p; +chouchouté chouchouter ver m s 0.61 0.74 0.05 0.14 par:pas; +chouchoutée chouchouter ver f s 0.61 0.74 0 0.34 par:pas; +choucroute choucroute nom f s 1.18 3.04 1.16 2.64 +choucroutes choucroute nom f p 1.18 3.04 0.02 0.41 +chouette chouette ono 4 1.15 4 1.15 +chouettement chouettement adv 0 0.07 0 0.07 +chouettes chouette adj p 23.77 13.78 1.5 1.49 +chougnait chougner ver 0 0.14 0 0.07 ind:imp:3s; +chougne chougner ver 0 0.14 0 0.07 ind:pre:3s; +chouia chouia nom m s 0.32 1.01 0.32 1.01 +chouiner chouiner ver 0.05 0 0.05 0 inf; +choupette choupette nom f s 0.1 0 0.1 0 +chouquet chouquet nom m s 0.06 0 0.06 0 +chouquette chouquette nom f s 0.06 0.07 0.06 0.07 +choura chourer ver 3.96 1.42 3.29 0.47 ind:pas:3s; +chouravait chouraver ver 0.75 2.5 0 0.14 ind:imp:3s; +chourave chouraver ver 0.75 2.5 0.01 0.41 imp:pre:2s;ind:pre:3s; +chouravent chouraver ver 0.75 2.5 0 0.14 ind:pre:3p; +chouraver chouraver ver 0.75 2.5 0.26 0.74 inf; +chouraveur chouraveur nom m s 0 0.54 0 0.07 +chouraveurs chouraveur nom m p 0 0.54 0 0.27 +chouraveuse chouraveur nom f s 0 0.54 0 0.07 +chouraveuses chouraveur nom f p 0 0.54 0 0.14 +chouravé chouraver ver m s 0.75 2.5 0.37 0.74 par:pas; +chouravée chouraver ver f s 0.75 2.5 0.11 0.14 par:pas; +chouravés chouraver ver m p 0.75 2.5 0 0.2 par:pas; +choure chourer ver 3.96 1.42 0.03 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chourent chourer ver 3.96 1.42 0.01 0 ind:pre:3p; +chourer chourer ver 3.96 1.42 0.2 0.34 inf; +chouriez chourer ver 3.96 1.42 0 0.07 ind:imp:2p; +chourineurs chourineur nom m p 0 0.07 0 0.07 +chouré chourer ver m s 3.96 1.42 0.41 0.41 par:pas; +chourée chourer ver f s 3.96 1.42 0.01 0.07 par:pas; +chourées chourer ver f p 3.96 1.42 0.01 0.07 par:pas; +choute chou nom f s 29.86 21.96 0.16 0.27 +choutes chou nom f p 29.86 21.96 0.01 0.07 +choux chou nom m p 29.86 21.96 4.2 7.64 +choux_fleurs choux_fleurs nom m p 0.57 1.28 0.57 1.28 +choux_raves choux_raves nom m p 0 0.07 0 0.07 +chouya chouya nom m s 0.04 0.07 0.04 0.07 +chouïa chouïa nom m s 0.25 1.82 0.25 1.82 +choya choyer ver 0.4 2.09 0 0.07 ind:pas:3s; +choyais choyer ver 0.4 2.09 0.01 0 ind:imp:1s; +choyait choyer ver 0.4 2.09 0.01 0.2 ind:imp:3s; +choyant choyer ver 0.4 2.09 0 0.07 par:pre; +choyer choyer ver 0.4 2.09 0.11 0.41 inf; +choyez choyer ver 0.4 2.09 0.12 0 imp:pre:2p;ind:pre:2p; +choyé choyer ver m s 0.4 2.09 0.06 0.41 par:pas; +choyée choyer ver f s 0.4 2.09 0.05 0.41 par:pas; +choyées choyé adj f p 0.17 0.68 0.14 0 +choyés choyé adj m p 0.17 0.68 0.01 0.14 +christ christ nom m s 1.65 3.18 1.54 2.57 +christiania christiania nom m s 0 0.07 0 0.07 +christianisme christianisme nom m s 2.11 4.32 2.11 4.32 +christianisés christianiser ver m p 0 0.14 0 0.14 par:pas; +christique christique adj f s 0 0.27 0 0.27 +christmas christmas nom s 0.08 0 0.08 0 +christocentrisme christocentrisme nom m s 0 0.2 0 0.2 +christologique christologique adj s 0 0.07 0 0.07 +christs christ nom m p 1.65 3.18 0.11 0.61 +chromage chromage nom m s 0.01 0 0.01 0 +chromatique chromatique adj s 0.02 0.68 0.01 0.54 +chromatiques chromatique adj p 0.02 0.68 0.01 0.14 +chromatisme chromatisme nom m s 0 0.2 0 0.14 +chromatismes chromatisme nom m p 0 0.2 0 0.07 +chromatogramme chromatogramme nom m s 0.01 0 0.01 0 +chromatographie chromatographie nom f s 0.07 0 0.07 0 +chrome chrome nom m s 0.82 3.04 0.75 1.15 +chromes chrome nom m p 0.82 3.04 0.07 1.89 +chromo chromo nom s 0.21 2.16 0.19 0.81 +chromogènes chromogène adj p 0.01 0 0.01 0 +chromos chromo nom p 0.21 2.16 0.02 1.35 +chromosome chromosome nom m s 1.72 0.81 0.52 0.14 +chromosomes chromosome nom m p 1.72 0.81 1.2 0.68 +chromosomique chromosomique adj s 0.14 0.27 0.08 0.2 +chromosomiques chromosomique adj p 0.14 0.27 0.06 0.07 +chromosphère chromosphère nom f s 0.05 0 0.05 0 +chromé chromer ver m s 0.36 4.59 0.17 2.3 par:pas; +chromée chromer ver f s 0.36 4.59 0.03 1.28 par:pas; +chromées chromer ver f p 0.36 4.59 0.06 0.14 par:pas; +chromés chromer ver m p 0.36 4.59 0.07 0.61 par:pas; +chroniquais chroniquer ver 0.01 0.34 0 0.07 ind:imp:1s; +chronique chronique adj s 2.34 4.59 1.73 3.65 +chroniquement chroniquement adv 0 0.07 0 0.07 +chroniquer chroniquer ver 0.01 0.34 0 0.14 inf; +chroniques chronique nom f p 2.46 9.59 0.79 2.77 +chroniqueur chroniqueur nom m s 0.69 2.91 0.49 1.35 +chroniqueurs chroniqueur nom m p 0.69 2.91 0.15 1.35 +chroniqueuse chroniqueur nom f s 0.69 2.91 0.05 0.07 +chroniqueuses chroniqueur nom f p 0.69 2.91 0 0.14 +chrono chrono nom m s 2.67 1.89 2.42 1.82 +chronographe chronographe nom m s 0.01 0 0.01 0 +chronologie chronologie nom f s 0.49 3.24 0.49 3.24 +chronologique chronologique adj s 0.64 1.49 0.64 1.35 +chronologiquement chronologiquement adv 0.1 0.27 0.1 0.27 +chronologiques chronologique adj p 0.64 1.49 0 0.14 +chronomètre chronomètre nom m s 1.02 2.23 0.98 2.09 +chronomètres chronométrer ver 1.43 1.08 0.18 0 ind:pre:2s; +chronométrage chronométrage nom m s 0.37 0.2 0.37 0.2 +chronométrait chronométrer ver 1.43 1.08 0.01 0.07 ind:imp:3s; +chronométrant chronométrer ver 1.43 1.08 0.14 0.07 par:pre; +chronométrer chronométrer ver 1.43 1.08 0.26 0.14 inf; +chronométreur chronométreur nom m s 0.03 0 0.03 0 +chronométrez chronométrer ver 1.43 1.08 0.06 0 imp:pre:2p; +chronométrions chronométrer ver 1.43 1.08 0 0.07 ind:imp:1p; +chronométré chronométrer ver m s 1.43 1.08 0.26 0.07 par:pas; +chronométrée chronométrer ver f s 1.43 1.08 0.05 0.07 par:pas; +chronométrées chronométrer ver f p 1.43 1.08 0.01 0.07 par:pas; +chronométrés chronométrer ver m p 1.43 1.08 0.03 0.07 par:pas; +chronophotographie chronophotographie nom f s 0.02 0 0.02 0 +chronophotographique chronophotographique adj m s 0.01 0 0.01 0 +chronos chrono nom m p 2.67 1.89 0.25 0.07 +chrysalide chrysalide nom f s 0.1 0.68 0.1 0.47 +chrysalides chrysalide nom f p 0.1 0.68 0 0.2 +chrysanthème chrysanthème nom m s 0.47 2.09 0.02 0.2 +chrysanthèmes chrysanthème nom m p 0.47 2.09 0.45 1.89 +chrysolite chrysolite nom f s 0.01 0 0.01 0 +chrysolithe chrysolithe nom f s 0.01 0 0.01 0 +chrysostome chrysostome nom m s 0 0.07 0 0.07 +chrétien chrétien adj m s 12.33 21.55 4.46 7.23 +chrétien_démocrate chrétien_démocrate adj m s 0.16 0 0.01 0 +chrétienne chrétien adj f s 12.33 21.55 4.59 8.99 +chrétiennement chrétiennement adv 0.13 0.2 0.13 0.2 +chrétiennes chrétien adj f p 12.33 21.55 0.74 2.57 +chrétiens chrétien nom m p 11.96 16.76 6.39 9.19 +chrétien_démocrate chrétien_démocrate adj m p 0.16 0 0.14 0 +chrétienté chrétienté nom f s 0.88 2.7 0.88 2.7 +chrême chrême nom m s 0 0.14 0 0.14 +chtar chtar nom m s 0.04 0.2 0.04 0.2 +chtarbé chtarbé adj m s 0.11 0.07 0.09 0 +chtarbée chtarbé adj f s 0.11 0.07 0.02 0 +chtarbées chtarbé adj f p 0.11 0.07 0 0.07 +chthoniennes chthonien adj f p 0 0.07 0 0.07 +chtibe chtibe nom m s 0 0.14 0 0.14 +chtimi chtimi nom s 0 0.41 0 0.34 +chtimis chtimi nom p 0 0.41 0 0.07 +chtouille chtouille nom f s 0.42 0.14 0.42 0.14 +chtourbe chtourbe nom f s 0 0.27 0 0.27 +chu choir ver m s 2.05 10 1.24 0.81 par:pas; +chuchota chuchoter ver 5.2 34.39 0.01 7.09 ind:pas:3s; +chuchotai chuchoter ver 5.2 34.39 0 1.69 ind:pas:1s; +chuchotaient chuchoter ver 5.2 34.39 0.14 2.16 ind:imp:3p; +chuchotais chuchoter ver 5.2 34.39 0.06 0.07 ind:imp:1s;ind:imp:2s; +chuchotait chuchoter ver 5.2 34.39 0.38 4.05 ind:imp:3s; +chuchotant chuchoter ver 5.2 34.39 0.06 2.23 par:pre; +chuchotante chuchotant adj f s 0.19 1.89 0.17 1.22 +chuchotantes chuchotant adj f p 0.19 1.89 0 0.34 +chuchotants chuchotant adj m p 0.19 1.89 0 0.07 +chuchote chuchoter ver 5.2 34.39 1.86 6.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chuchotement chuchotement nom m s 1.9 8.11 0.11 4.39 +chuchotements chuchotement nom m p 1.9 8.11 1.79 3.72 +chuchotent chuchoter ver 5.2 34.39 0.39 1.62 ind:pre:3p; +chuchoter chuchoter ver 5.2 34.39 1.46 3.92 inf; +chuchoteraient chuchoter ver 5.2 34.39 0 0.07 cnd:pre:3p; +chuchoterais chuchoter ver 5.2 34.39 0.02 0 cnd:pre:1s; +chuchoterait chuchoter ver 5.2 34.39 0 0.14 cnd:pre:3s; +chuchoteras chuchoter ver 5.2 34.39 0.01 0 ind:fut:2s; +chuchoterez chuchoter ver 5.2 34.39 0 0.07 ind:fut:2p; +chuchoteries chuchoterie nom f p 0 0.07 0 0.07 +chuchoteur chuchoteur adj m s 0 0.2 0 0.14 +chuchoteuse chuchoteur nom f s 0.03 0 0.03 0 +chuchotez chuchoter ver 5.2 34.39 0.43 0.07 imp:pre:2p;ind:pre:2p; +chuchotions chuchoter ver 5.2 34.39 0 0.2 ind:imp:1p; +chuchotis chuchotis nom m 0.13 2.43 0.13 2.43 +chuchotât chuchoter ver 5.2 34.39 0 0.07 sub:imp:3s; +chuchotèrent chuchoter ver 5.2 34.39 0 0.2 ind:pas:3p; +chuchoté chuchoter ver m s 5.2 34.39 0.33 2.36 par:pas; +chuchotée chuchoter ver f s 5.2 34.39 0.03 0.54 par:pas; +chuchotées chuchoter ver f p 5.2 34.39 0 0.68 par:pas; +chuchotés chuchoter ver m p 5.2 34.39 0.03 0.61 par:pas; +chue choir ver f s 2.05 10 0.05 0.2 par:pas; +chues choir ver f p 2.05 10 0 0.07 par:pas; +chuinta chuinter ver 0 1.89 0 0.14 ind:pas:3s; +chuintaient chuinter ver 0 1.89 0 0.07 ind:imp:3p; +chuintait chuinter ver 0 1.89 0 0.34 ind:imp:3s; +chuintant chuinter ver 0 1.89 0 0.61 par:pre; +chuintante chuintant adj f s 0.01 0.81 0.01 0.27 +chuintants chuintant adj m p 0.01 0.81 0 0.14 +chuinte chuinter ver 0 1.89 0 0.2 ind:pre:3s; +chuintement chuintement nom m s 0.07 4.46 0.07 3.58 +chuintements chuintement nom m p 0.07 4.46 0 0.88 +chuinter chuinter ver 0 1.89 0 0.2 inf; +chuintèrent chuinter ver 0 1.89 0 0.14 ind:pas:3p; +chuinté chuinter ver m s 0 1.89 0 0.2 par:pas; +chulo chulo nom m s 0.34 0 0.34 0 +chum chum nom m s 0.38 0 0.38 0 +churrigueresque churrigueresque adj s 0 0.07 0 0.07 +churros churro nom m p 0.69 0.2 0.69 0.2 +chus choir ver m p 2.05 10 0.01 0.07 par:pas; +chut chut ono 29.81 6.62 29.81 6.62 +chuta chuter ver 5.5 2.77 0.02 0.07 ind:pas:3s; +chutait chuter ver 5.5 2.77 0.06 0.41 ind:imp:3s; +chutant chuter ver 5.5 2.77 0.06 0.2 par:pre; +chute chute nom f s 25.15 41.28 21.01 35.27 +chutent chuter ver 5.5 2.77 0.28 0.07 ind:pre:3p; +chuter chuter ver 5.5 2.77 0.99 1.08 inf; +chutera chuter ver 5.5 2.77 0.04 0 ind:fut:3s; +chuteraient chuter ver 5.5 2.77 0.11 0.07 cnd:pre:3p; +chuterait chuter ver 5.5 2.77 0.01 0 cnd:pre:3s; +chuterez chuter ver 5.5 2.77 0.01 0 ind:fut:2p; +chutes chute nom f p 25.15 41.28 4.14 6.01 +chutney chutney nom m s 0.23 0 0.23 0 +chutèrent chuter ver 5.5 2.77 0.02 0.14 ind:pas:3p; +chuté chuter ver m s 5.5 2.77 1.87 0.41 par:pas; +chutée chuter ver f s 5.5 2.77 0.04 0.07 par:pas; +chyle chyle nom m s 0 0.14 0 0.14 +chypre chypre nom m s 0 0.14 0 0.14 +chypriote chypriote adj s 0.01 0.14 0.01 0.14 +châle châle nom m s 2.23 12.09 2.08 9.32 +châles châle nom m p 2.23 12.09 0.15 2.77 +châlit châlit nom m s 0 0.41 0 0.27 +châlits châlit nom m p 0 0.41 0 0.14 +châlonnais châlonnais adj m 0 0.07 0 0.07 +châlonnais châlonnais nom m 0 0.07 0 0.07 +châsse châsse nom f s 0.29 8.99 0.29 3.18 +châsses châsse nom m p 0.29 8.99 0 5.81 +châssis châssis nom m 0.97 4.46 0.97 4.46 +châtaigne châtaigne nom f s 1.24 2.5 0.55 0.88 +châtaignent châtaigner ver 0.14 0.2 0 0.07 ind:pre:3p; +châtaigner châtaigner ver 0.14 0.2 0.12 0.07 inf; +châtaigneraie châtaigneraie nom f s 0 0.54 0 0.2 +châtaigneraies châtaigneraie nom f p 0 0.54 0 0.34 +châtaignes châtaigne nom f p 1.24 2.5 0.69 1.62 +châtaignier châtaignier nom m s 0.14 3.38 0.14 1.76 +châtaigniers châtaignier nom m p 0.14 3.38 0 1.62 +châtaigné châtaigner ver m s 0.14 0.2 0.02 0.07 par:pas; +châtain châtain adj m s 0.81 4.26 0.34 1.55 +châtaine châtain adj f s 0.81 4.26 0 0.2 +châtaines châtain adj f p 0.81 4.26 0.01 0.07 +châtains châtain adj m p 0.81 4.26 0.46 2.43 +château château nom m s 43.68 74.12 40.51 63.38 +château_fort château_fort nom m s 0 0.07 0 0.07 +châteaubriant châteaubriant nom m s 0.13 0 0.13 0 +châteaux château nom m p 43.68 74.12 3.17 10.74 +châtel châtel adj s 0 0.07 0 0.07 +châtelain châtelain nom m s 0.3 4.26 0.27 1.69 +châtelaine châtelain nom f s 0.3 4.26 0.01 1.01 +châtelaines châtelain nom f p 0.3 4.26 0 0.07 +châtelains châtelain nom m p 0.3 4.26 0.02 1.49 +châtelet châtelet nom m s 0 0.14 0 0.14 +châtellenie châtellenie nom f s 0 0.07 0 0.07 +châtiaient châtier ver 3.25 4.53 0 0.07 ind:imp:3p; +châtiait châtier ver 3.25 4.53 0 0.2 ind:imp:3s; +châtiant châtier ver 3.25 4.53 0 0.07 par:pre; +châtie châtier ver 3.25 4.53 0.54 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +châtier châtier ver 3.25 4.53 1.55 1.89 inf; +châtiera châtier ver 3.25 4.53 0.04 0 ind:fut:3s; +châtierai châtier ver 3.25 4.53 0.12 0 ind:fut:1s; +châtierait châtier ver 3.25 4.53 0 0.07 cnd:pre:3s; +châtiez châtier ver 3.25 4.53 0.16 0.07 imp:pre:2p; +châtiment châtiment nom m s 7.54 9.12 6.62 7.5 +châtiments châtiment nom m p 7.54 9.12 0.93 1.62 +châtié châtier ver m s 3.25 4.53 0.47 1.28 par:pas; +châtiée châtier ver f s 3.25 4.53 0.05 0.2 par:pas; +châtiés châtier ver m p 3.25 4.53 0.32 0.34 par:pas; +châtrage châtrage nom m s 0 0.07 0 0.07 +châtraient châtrer ver 0.94 0.68 0 0.14 ind:imp:3p; +châtre châtrer ver 0.94 0.68 0.01 0.14 ind:pre:1s;ind:pre:3s; +châtrent châtrer ver 0.94 0.68 0.01 0.07 ind:pre:3p; +châtrer châtrer ver 0.94 0.68 0.47 0.2 inf; +châtreront châtrer ver 0.94 0.68 0 0.07 ind:fut:3p; +châtron châtron nom m s 0 0.14 0 0.07 +châtrons châtron nom m p 0 0.14 0 0.07 +châtré châtré adj m s 0.21 0.61 0.18 0.34 +châtrés châtrer ver m p 0.94 0.68 0.36 0 par:pas; +chèche chèche nom m s 0.01 0.68 0.01 0.54 +chèches chèche nom m p 0.01 0.68 0 0.14 +chènevis chènevis nom m 0 0.27 0 0.27 +chèque chèque nom m s 32.03 9.86 23.86 6.01 +chèque_cadeau chèque_cadeau nom m s 0.05 0 0.05 0 +chèques chèque nom m p 32.03 9.86 8.18 3.85 +chère cher adj f s 205.75 133.65 40.8 23.38 +chèrement chèrement adv 0.43 0.88 0.43 0.88 +chères cher adj f p 205.75 133.65 5.63 5.81 +chèvre chèvre nom f s 14.08 20.61 8.26 10.14 +chèvre_pied chèvre_pied nom s 0 0.14 0 0.14 +chèvrefeuille chèvrefeuille nom m s 0.11 2.7 0.11 2.16 +chèvrefeuilles chèvrefeuille nom m p 0.11 2.7 0 0.54 +chèvres chèvre nom f p 14.08 20.61 5.81 10.47 +chébran chébran adj m s 0.03 0.07 0.03 0.07 +chéchia chéchia nom f s 0.27 1.28 0.27 1.08 +chéchias chéchia nom f p 0.27 1.28 0 0.2 +chéfesse chéfesse nom f s 0 0.34 0 0.34 +chélate chélate nom m s 0.01 0 0.01 0 +chélidoine chélidoine nom f s 0 0.2 0 0.14 +chélidoines chélidoine nom f p 0 0.2 0 0.07 +chéloïde chéloïde nom f s 0.03 0 0.03 0 +chéneau chéneau nom m s 0 0.81 0 0.47 +chéneaux chéneau nom m p 0 0.81 0 0.34 +chéquier chéquier nom m s 1.94 0.68 1.72 0.61 +chéquiers chéquier nom m p 1.94 0.68 0.22 0.07 +chéri chéri nom s 171.98 36.28 69.08 17.03 +chérie chéri nom f s 171.98 36.28 98.95 17.64 +chéries chéri nom f p 171.98 36.28 1.54 0.74 +chérif chérif nom m s 0.2 6.69 0.2 6.69 +chérifienne chérifien adj f s 0 0.07 0 0.07 +chérir chérir ver 22.66 7.03 1.49 1.15 inf; +chérirai chérir ver 22.66 7.03 0.19 0 ind:fut:1s; +chérirais chérir ver 22.66 7.03 0.14 0 cnd:pre:1s; +chérirez chérir ver 22.66 7.03 0.01 0 ind:fut:2p; +chérirons chérir ver 22.66 7.03 0.01 0 ind:fut:1p; +chéris chéri nom m p 171.98 36.28 2.41 0.88 +chérissaient chérir ver 22.66 7.03 0.03 0.27 ind:imp:3p; +chérissais chérir ver 22.66 7.03 0.07 0.2 ind:imp:1s;ind:imp:2s; +chérissait chérir ver 22.66 7.03 0.16 1.15 ind:imp:3s; +chérissant chérir ver 22.66 7.03 0 0.07 par:pre; +chérisse chérir ver 22.66 7.03 0.06 0.07 sub:pre:3s; +chérissent chérir ver 22.66 7.03 0.05 0.27 ind:pre:3p; +chérissez chérir ver 22.66 7.03 0.17 0.07 imp:pre:2p;ind:pre:2p; +chérissons chérir ver 22.66 7.03 0.31 0.07 imp:pre:1p;ind:pre:1p; +chérit chérir ver 22.66 7.03 0.56 0.27 ind:pre:3s;ind:pas:3s; +chérot chérot adj m s 0.02 0.14 0.02 0.14 +chérubin chérubin nom m s 2.09 1.82 1.89 0.81 +chérubinique chérubinique adj f s 0 0.07 0 0.07 +chérubins chérubin nom m p 2.09 1.82 0.2 1.01 +chétif chétif adj m s 0.91 7.36 0.43 3.65 +chétifs chétif adj m p 0.91 7.36 0.07 0.95 +chétive chétif adj f s 0.91 7.36 0.38 1.89 +chétivement chétivement adv 0 0.07 0 0.07 +chétives chétif adj f p 0.91 7.36 0.02 0.88 +chétivité chétivité nom f s 0 0.07 0 0.07 +chênaie chênaie nom f s 0.06 0.61 0.04 0.47 +chênaies chênaie nom f p 0.06 0.61 0.01 0.14 +chêne chêne nom m s 5.17 23.51 4.25 16.49 +chêne_liège chêne_liège nom m s 0 0.95 0 0.14 +chênes chêne nom m p 5.17 23.51 0.93 7.03 +chêne_liège chêne_liège nom m p 0 0.95 0 0.81 +chêneteau chêneteau nom m s 0 0.07 0 0.07 +chômage chômage nom m s 12.5 5.41 12.5 5.41 +chômaient chômer ver 1.05 1.35 0 0.2 ind:imp:3p; +chômait chômer ver 1.05 1.35 0.01 0.34 ind:imp:3s; +chôme chômer ver 1.05 1.35 0.18 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chômedu chômedu nom m s 0.04 0.47 0.04 0.47 +chôment chômer ver 1.05 1.35 0.03 0.07 ind:pre:3p; +chômer chômer ver 1.05 1.35 0.37 0.2 inf; +chômerez chômer ver 1.05 1.35 0.1 0 ind:fut:2p; +chômeur chômeur nom m s 4.55 4.39 2.23 2.16 +chômeurs chômeur nom m p 4.55 4.39 2.02 2.09 +chômeuse chômeur nom f s 4.55 4.39 0.27 0.14 +chômeuses chômeur nom f p 4.55 4.39 0.02 0 +chômez chômer ver 1.05 1.35 0.12 0 ind:pre:2p; +chômé chômer ver m s 1.05 1.35 0.24 0.41 par:pas; +chômée chômé adj f s 0.02 0.27 0.01 0 +chômés chômé adj m p 0.02 0.27 0 0.07 +ci ci adv_sup 10.23 3.65 10.23 3.65 +ci_après ci_après adv_sup 0.15 0.61 0.15 0.61 +ci_contre ci_contre adv_sup 0 0.07 0 0.07 +ci_dessous ci_dessous adv_sup 0.13 0.61 0.13 0.61 +ci_dessus ci_dessus adv_sup 0.2 1.28 0.2 1.28 +ci_gît ci_gît adv 0.7 0.34 0.7 0.34 +ci_inclus ci_inclus adj_sup m 0.03 0.14 0.01 0.07 +ci_inclus ci_inclus adj_sup f s 0.03 0.14 0.01 0.07 +ci_inclus ci_inclus adj_sup f p 0.03 0.14 0.01 0 +ci_joint ci_joint adj_sup m s 0.62 1.89 0.59 1.69 +ci_joint ci_joint adj_sup f s 0.62 1.89 0.04 0.14 +ci_joint ci_joint adj_sup m p 0.62 1.89 0 0.07 +ciao ciao ono 15.32 3.72 15.32 3.72 +cibiche cibiche nom f s 0.07 0.81 0.06 0.54 +cibiches cibiche nom f p 0.07 0.81 0.01 0.27 +cibiste cibiste nom m s 0.07 0 0.04 0 +cibistes cibiste nom m p 0.07 0 0.02 0 +ciblage ciblage nom m s 0.34 0 0.34 0 +ciblais cibler ver 1.9 0.81 0.01 0.07 ind:imp:1s; +ciblait cibler ver 1.9 0.81 0.04 0.14 ind:imp:3s; +cible cible nom f s 33.55 10.74 28.69 8.65 +cibler cibler ver 1.9 0.81 0.76 0.14 inf; +ciblera cibler ver 1.9 0.81 0.03 0 ind:fut:3s; +cibleront cibler ver 1.9 0.81 0.01 0 ind:fut:3p; +cibles cible nom f p 33.55 10.74 4.86 2.09 +ciblez cibler ver 1.9 0.81 0.12 0 imp:pre:2p;ind:pre:2p; +ciblons cibler ver 1.9 0.81 0.03 0 imp:pre:1p;ind:pre:1p; +ciblé cibler ver m s 1.9 0.81 0.45 0.34 par:pas; +ciblée cibler ver f s 1.9 0.81 0.15 0 par:pas; +ciblées cibler ver f p 1.9 0.81 0.06 0 par:pas; +ciblés cibler ver m p 1.9 0.81 0.25 0.14 par:pas; +ciboire ciboire nom m s 0.03 1.15 0.03 0.81 +ciboires ciboire nom m p 0.03 1.15 0 0.34 +ciboule ciboule nom f s 0 0.07 0 0.07 +ciboulette ciboulette nom f s 0.95 0.27 0.95 0.27 +ciboulot ciboulot nom m s 0.25 1.55 0.25 1.49 +ciboulots ciboulot nom m p 0.25 1.55 0 0.07 +cicatrice cicatrice nom f s 13 12.23 7.58 6.28 +cicatrices cicatrice nom f p 13 12.23 5.42 5.95 +cicatriciel cicatriciel adj m s 0.06 0.14 0.06 0 +cicatriciels cicatriciel adj m p 0.06 0.14 0 0.14 +cicatrisa cicatriser ver 2.2 2.16 0 0.07 ind:pas:3s; +cicatrisable cicatrisable adj s 0 0.07 0 0.07 +cicatrisait cicatriser ver 2.2 2.16 0.02 0.14 ind:imp:3s; +cicatrisante cicatrisant adj f s 0.02 0.07 0.02 0 +cicatrisants cicatrisant adj m p 0.02 0.07 0 0.07 +cicatrisation cicatrisation nom f s 0.48 0.47 0.48 0.47 +cicatrise cicatriser ver 2.2 2.16 0.39 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cicatrisent cicatriser ver 2.2 2.16 0.08 0.14 ind:pre:3p; +cicatriser cicatriser ver 2.2 2.16 0.48 0.47 inf; +cicatrisera cicatriser ver 2.2 2.16 0.18 0 ind:fut:3s; +cicatriserait cicatriser ver 2.2 2.16 0.1 0.07 cnd:pre:3s; +cicatriseront cicatriser ver 2.2 2.16 0.13 0.07 ind:fut:3p; +cicatrisez cicatriser ver 2.2 2.16 0.11 0 imp:pre:2p;ind:pre:2p; +cicatrisé cicatriser ver m s 2.2 2.16 0.59 0.27 par:pas; +cicatrisée cicatriser ver f s 2.2 2.16 0.05 0.41 par:pas; +cicatrisées cicatriser ver f p 2.2 2.16 0.03 0.34 par:pas; +cicatrisés cicatriser ver m p 2.2 2.16 0.04 0 par:pas; +cicero cicero nom m s 0.68 0 0.68 0 +cicindèle cicindèle nom f s 0 0.88 0 0.61 +cicindèles cicindèle nom f p 0 0.88 0 0.27 +cicérone cicérone nom m s 0.22 0.34 0.22 0.27 +cicérones cicérone nom m p 0.22 0.34 0 0.07 +cicéronienne cicéronien adj f s 0 0.14 0 0.14 +cidre cidre nom m s 2 3.99 2 3.99 +cidrerie cidrerie nom f s 0.01 0 0.01 0 +ciel ciel nom m s 142.32 305.2 142.22 301.76 +ciels ciel nom m p 142.32 305.2 0.1 3.45 +cierge cierge nom m s 3.5 15.95 2.02 5.2 +cierges cierge nom m p 3.5 15.95 1.48 10.74 +cieux cieux nom m p 20.05 4.93 20.05 4.93 +cigale cigale nom f s 3 4.93 1.43 1.15 +cigales cigale nom f p 3 4.93 1.57 3.78 +cigalon cigalon nom m s 0.02 0 0.02 0 +cigalou cigalou nom m s 0 0.07 0 0.07 +cigare cigare nom m s 17.15 24.93 10.63 17.7 +cigares cigare nom m p 17.15 24.93 6.52 7.23 +cigarette cigarette nom f s 65.57 114.93 39.22 77.57 +cigarettes cigarette nom f p 65.57 114.93 26.35 37.36 +cigarettier cigarettier nom m s 0.01 0 0.01 0 +cigarillo cigarillo nom m s 0.13 1.08 0.13 0.68 +cigarillos cigarillo nom m p 0.13 1.08 0 0.41 +cigarière cigarier nom f s 0 0.2 0 0.07 +cigarières cigarier nom f p 0 0.2 0 0.14 +cigle cigler ver 0 0.68 0 0.14 ind:pre:3s; +ciglent cigler ver 0 0.68 0 0.07 ind:pre:3p; +cigler cigler ver 0 0.68 0 0.27 inf; +ciglé cigler ver m s 0 0.68 0 0.07 par:pas; +ciglées cigler ver f p 0 0.68 0 0.07 par:pas; +ciglés cigler ver m p 0 0.68 0 0.07 par:pas; +cigogne cigogne nom f s 3.22 2.5 2.21 1.35 +cigognes cigogne nom f p 3.22 2.5 1 1.15 +ciguë ciguë nom f s 0.2 0.88 0.2 0.68 +ciguës ciguë nom f p 0.2 0.88 0 0.2 +cil cil nom m s 3.57 19.26 0.77 2.16 +ciliaires ciliaire adj m p 0 0.07 0 0.07 +cilice cilice nom m s 0.16 0.27 0.16 0.27 +cilla ciller ver 0.28 4.32 0 0.61 ind:pas:3s; +cillaient ciller ver 0.28 4.32 0 0.47 ind:imp:3p; +cillait ciller ver 0.28 4.32 0.01 0.14 ind:imp:3s; +cillant ciller ver 0.28 4.32 0 0.2 par:pre; +cille ciller ver 0.28 4.32 0.05 0.07 ind:pre:3s; +cillement cillement nom m s 0 0.81 0 0.74 +cillements cillement nom m p 0 0.81 0 0.07 +cillent ciller ver 0.28 4.32 0 0.2 ind:pre:3p; +ciller ciller ver 0.28 4.32 0.04 1.82 inf; +cillerait ciller ver 0.28 4.32 0 0.07 cnd:pre:3s; +cillèrent ciller ver 0.28 4.32 0 0.27 ind:pas:3p; +cillé ciller ver m s 0.28 4.32 0.19 0.47 par:pas; +cils cil nom m p 3.57 19.26 2.8 17.09 +cimaise cimaise nom f s 0 0.47 0 0.14 +cimaises cimaise nom f p 0 0.47 0 0.34 +cimarron cimarron nom m s 0.07 0 0.07 0 +cime cime nom f s 1.77 9.73 1.08 4.46 +ciment ciment nom m s 5.75 18.85 5.6 18.78 +cimentaient cimenter ver 0.16 2.43 0 0.07 ind:imp:3p; +cimentait cimenter ver 0.16 2.43 0 0.2 ind:imp:3s; +cimentant cimenter ver 0.16 2.43 0 0.07 par:pre; +cimente cimenter ver 0.16 2.43 0.02 0.14 imp:pre:2s;ind:pre:3s; +cimentent cimenter ver 0.16 2.43 0.01 0 ind:pre:3p; +cimenter cimenter ver 0.16 2.43 0.06 0.14 inf; +cimentera cimenter ver 0.16 2.43 0 0.07 ind:fut:3s; +cimenterie cimenterie nom f s 0.08 0.61 0.08 0.27 +cimenteries cimenterie nom f p 0.08 0.61 0 0.34 +ciments ciment nom m p 5.75 18.85 0.15 0.07 +cimenté cimenter ver m s 0.16 2.43 0.04 0.47 par:pas; +cimentée cimenter ver f s 0.16 2.43 0.01 0.88 par:pas; +cimentées cimenter ver f p 0.16 2.43 0 0.2 par:pas; +cimentés cimenter ver m p 0.16 2.43 0.01 0.2 par:pas; +cimes cime nom f p 1.77 9.73 0.7 5.27 +cimeterre cimeterre nom m s 0.14 1.28 0.14 0.95 +cimeterres cimeterre nom m p 0.14 1.28 0 0.34 +cimetière cimetière nom m s 31.34 44.19 29.07 39.86 +cimetières cimetière nom m p 31.34 44.19 2.27 4.32 +cimier cimier nom m s 0.18 0.68 0.17 0.54 +cimiers cimier nom m p 0.18 0.68 0.01 0.14 +cinabre cinabre nom m s 0 0.14 0 0.14 +cinghalais cinghalais adj m s 0 0.2 0 0.14 +cinghalaises cinghalais adj f p 0 0.2 0 0.07 +cingla cingler ver 18.93 9.39 0.02 0.61 ind:pas:3s; +cinglage cinglage nom m s 0.05 0 0.05 0 +cinglaient cingler ver 18.93 9.39 0 0.61 ind:imp:3p; +cinglait cingler ver 18.93 9.39 0.14 1.62 ind:imp:3s; +cinglant cinglant adj m s 0.28 2.77 0.04 0.54 +cinglante cinglant adj f s 0.28 2.77 0.2 1.15 +cinglantes cinglant adj f p 0.28 2.77 0.03 0.74 +cinglants cinglant adj m p 0.28 2.77 0 0.34 +cingle cingler ver 18.93 9.39 0.26 1.22 ind:pre:3s; +cinglement cinglement nom m s 0 0.07 0 0.07 +cinglent cingler ver 18.93 9.39 0 0.27 ind:pre:3p; +cingler cingler ver 18.93 9.39 0 0.88 inf; +cinglions cingler ver 18.93 9.39 0 0.07 ind:imp:1p; +cinglèrent cingler ver 18.93 9.39 0 0.07 ind:pas:3p; +cinglé cingler ver m s 18.93 9.39 12.44 2.3 par:pas; +cinglée cingler ver f s 18.93 9.39 3.46 0.95 par:pas; +cinglées cinglé nom f p 12.37 5.81 0.28 0.2 +cinglés cinglé nom m p 12.37 5.81 3.49 1.69 +cinname cinname nom m s 0 0.07 0 0.07 +cinoche cinoche nom m s 1.08 6.35 1.07 6.22 +cinoches cinoche nom m p 1.08 6.35 0.01 0.14 +cinoque cinoque adj m s 0.01 0.27 0.01 0.27 +cinoques cinoque nom m p 0 0.14 0 0.14 +cinq cinq adj_num 161.96 220.61 161.96 220.61 +cinquantaine cinquantaine nom f s 1.44 9.93 1.44 9.86 +cinquantaines cinquantaine nom f p 1.44 9.93 0 0.07 +cinquante cinquante adj_num 9.26 61.08 9.26 61.08 +cinquante_cinq cinquante_cinq adj_num 0.2 2.5 0.2 2.5 +cinquante_deux cinquante_deux adj_num 0.21 1.42 0.21 1.42 +cinquante_huit cinquante_huit adj_num 0.06 0.88 0.06 0.88 +cinquante_huitième cinquante_huitième adj 0 0.07 0 0.07 +cinquante_neuf cinquante_neuf adj_num 0.03 0.34 0.03 0.34 +cinquante_neuvième cinquante_neuvième adj 0 0.07 0 0.07 +cinquante_quatre cinquante_quatre adj_num 0.13 0.68 0.13 0.68 +cinquante_sept cinquante_sept adj_num 0.08 0.95 0.08 0.95 +cinquante_septième cinquante_septième adj 0.03 0.07 0.03 0.07 +cinquante_six cinquante_six adj_num 0.18 0.68 0.18 0.68 +cinquante_sixième cinquante_sixième adj 0 0.14 0 0.14 +cinquante_trois cinquante_trois adj_num 0.15 0.81 0.15 0.81 +cinquante_troisième cinquante_troisième adj 0 0.14 0 0.14 +cinquantenaire cinquantenaire nom m s 0.2 0.14 0.18 0.14 +cinquantenaires cinquantenaire nom m p 0.2 0.14 0.02 0 +cinquantième cinquantième nom s 0.04 0.68 0.04 0.68 +cinquantièmes cinquantième adj 0.01 0.54 0 0.07 +cinquième cinquième adj m 6.14 11.15 6.13 11.01 +cinquièmement cinquièmement adv 0.16 0.14 0.16 0.14 +cinquièmes cinquième nom p 5.17 7.91 0.01 0.54 +cintra cintrer ver 0.07 1.49 0 0.68 ind:pas:3s; +cintrage cintrage nom m s 0.01 0 0.01 0 +cintrait cintrer ver 0.07 1.49 0 0.07 ind:imp:3s; +cintrant cintrer ver 0.07 1.49 0 0.07 par:pre; +cintras cintrer ver 0.07 1.49 0 0.07 ind:pas:2s; +cintre cintre nom m s 0.85 4.86 0.57 2.91 +cintrer cintrer ver 0.07 1.49 0.01 0 inf; +cintres cintre nom m p 0.85 4.86 0.28 1.96 +cintré cintrer ver m s 0.07 1.49 0.05 0.34 par:pas; +cintrée cintré adj f s 0.07 1.42 0.02 0.54 +cintrées cintré adj f p 0.07 1.42 0 0.27 +cintrés cintré adj m p 0.07 1.42 0.03 0.07 +cinzano cinzano nom m s 0.5 0.88 0.5 0.88 +ciné ciné nom m s 10.35 4.73 10.32 4.46 +ciné_club ciné_club nom m s 0 0.74 0 0.54 +ciné_club ciné_club nom m p 0 0.74 0 0.2 +ciné_roman ciné_roman nom m s 0 0.14 0 0.14 +cinéaste cinéaste nom s 3.56 1.76 2.45 1.08 +cinéastes cinéaste nom p 3.56 1.76 1.11 0.68 +cinéma cinéma nom m s 63.49 78.51 62.23 72.91 +cinéma_vérité cinéma_vérité nom m s 0.2 0.07 0.2 0.07 +cinémas cinéma nom m p 63.49 78.51 1.26 5.61 +cinémascope cinémascope nom m s 0.07 0.2 0.07 0.2 +cinémathèque cinémathèque nom f s 0.72 0.61 0.71 0.47 +cinémathèques cinémathèque nom f p 0.72 0.61 0.01 0.14 +cinématique cinématique nom f s 0.03 0 0.03 0 +cinématographe cinématographe nom m s 0.48 0.68 0.48 0.61 +cinématographes cinématographe nom m p 0.48 0.68 0 0.07 +cinématographie cinématographie nom f s 0.04 0.07 0.04 0.07 +cinématographique cinématographique adj s 1.42 2.23 0.85 1.49 +cinématographiquement cinématographiquement adv 0.01 0.14 0.01 0.14 +cinématographiques cinématographique adj p 1.42 2.23 0.57 0.74 +cinémomètres cinémomètre nom m p 0 0.07 0 0.07 +cinéphile cinéphile nom s 0.2 0.27 0.15 0.07 +cinéphiles cinéphile nom p 0.2 0.27 0.05 0.2 +cinéraire cinéraire adj f s 0 0.07 0 0.07 +cinéraire cinéraire nom f s 0 0.07 0 0.07 +cinérama cinérama nom m s 0 0.07 0 0.07 +cinés ciné nom m p 10.35 4.73 0.02 0.27 +cinétique cinétique adj s 0.17 0.07 0.17 0.07 +cipal cipal nom m s 0.01 0.14 0.01 0.14 +cipaye cipaye nom m s 0.01 0.41 0.01 0 +cipayes cipaye nom m p 0.01 0.41 0 0.41 +cipolin cipolin nom m s 0 0.07 0 0.07 +cippes cippe nom m p 0 0.14 0 0.14 +cira cirer ver 6.42 20.27 0 0.14 ind:pas:3s; +cirage cirage nom m s 2.08 4.39 2.08 4.39 +ciraient cirer ver 6.42 20.27 0 0.07 ind:imp:3p; +cirais cirer ver 6.42 20.27 0.02 0.2 ind:imp:1s;ind:imp:2s; +cirait cirer ver 6.42 20.27 0.04 0.41 ind:imp:3s; +cirant cirer ver 6.42 20.27 0.02 0.14 par:pre; +circadien circadien adj m s 0.03 0 0.03 0 +circassien circassien nom m s 0.05 0.14 0.05 0.14 +circassienne circassienne nom f s 0.14 0.2 0.14 0.14 +circassiennes circassienne nom f p 0.14 0.2 0 0.07 +circaète circaète nom m s 0 0.41 0 0.41 +circoncire circoncire ver 1.69 1.42 0.53 0.68 inf; +circoncis circoncire ver m 1.69 1.42 1.09 0.68 ind:pre:1s;par:pas;par:pas; +circoncise circoncire ver f s 1.69 1.42 0.03 0 par:pas; +circoncisent circoncire ver 1.69 1.42 0.01 0 ind:pre:3p; +circoncision circoncision nom f s 1.31 2.3 1.25 2.3 +circoncisions circoncision nom f p 1.31 2.3 0.06 0 +circoncit circoncire ver 1.69 1.42 0.03 0.07 ind:pre:3s;ind:pas:3s; +circonflexe circonflexe adj s 0.16 1.55 0.16 0.95 +circonflexes circonflexe adj m p 0.16 1.55 0 0.61 +circonférence circonférence nom f s 0.24 1.28 0.24 1.28 +circonlocutions circonlocution nom f p 0 0.88 0 0.88 +circonscription circonscription nom f s 0.78 0.74 0.67 0.34 +circonscriptions circonscription nom f p 0.78 0.74 0.11 0.41 +circonscriptions_clé circonscriptions_clé nom f p 0.01 0 0.01 0 +circonscrire circonscrire ver 0.13 1.35 0.05 0.27 inf; +circonscris circonscrire ver 0.13 1.35 0 0.07 ind:pre:1s; +circonscrit circonscrire ver m s 0.13 1.35 0.03 0.27 ind:pre:3s;par:pas; +circonscrite circonscrire ver f s 0.13 1.35 0.03 0.27 par:pas; +circonscrites circonscrire ver f p 0.13 1.35 0 0.07 par:pas; +circonscrits circonscrire ver m p 0.13 1.35 0.02 0.07 par:pas; +circonscrivait circonscrire ver 0.13 1.35 0 0.2 ind:imp:3s; +circonscrivent circonscrire ver 0.13 1.35 0 0.07 ind:pre:3p; +circonscrivit circonscrire ver 0.13 1.35 0 0.07 ind:pas:3s; +circonspect circonspect adj m s 0.21 2.91 0.04 1.96 +circonspecte circonspect adj f s 0.21 2.91 0.01 0.34 +circonspectes circonspect adj f p 0.21 2.91 0 0.07 +circonspection circonspection nom f s 0.04 2.7 0.04 2.64 +circonspections circonspection nom f p 0.04 2.7 0 0.07 +circonspects circonspect adj m p 0.21 2.91 0.16 0.54 +circonstance circonstance nom f s 21.8 58.24 2.48 16.01 +circonstances circonstance nom f p 21.8 58.24 19.32 42.23 +circonstancia circonstancier ver 0 0.41 0 0.14 ind:pas:3s; +circonstanciel circonstanciel adj m s 0.11 0.07 0.05 0 +circonstancielle circonstanciel adj f s 0.11 0.07 0.05 0 +circonstanciels circonstanciel adj m p 0.11 0.07 0 0.07 +circonstancié circonstancié adj m s 0.03 0.47 0.03 0.14 +circonstanciée circonstancier ver f s 0 0.41 0 0.07 par:pas; +circonstanciées circonstancié adj f p 0.03 0.47 0 0.07 +circonstanciés circonstancié adj m p 0.03 0.47 0 0.27 +circonvallation circonvallation nom f s 0 0.14 0 0.07 +circonvallations circonvallation nom f p 0 0.14 0 0.07 +circonvenant circonvenir ver 0.09 0.95 0.01 0 par:pre; +circonvenir circonvenir ver 0.09 0.95 0.05 0.47 inf; +circonvenu circonvenir ver m s 0.09 0.95 0.01 0.41 par:pas; +circonvenue circonvenir ver f s 0.09 0.95 0.01 0.07 par:pas; +circonvient circonvenir ver 0.09 0.95 0.01 0 ind:pre:3s; +circonvolution circonvolution nom f s 0.05 1.08 0.03 0.2 +circonvolutions circonvolution nom f p 0.05 1.08 0.02 0.88 +circuit circuit nom m s 10.23 9.59 7 7.77 +circuits circuit nom m p 10.23 9.59 3.24 1.82 +circula circuler ver 15.19 25.81 0.01 0.54 ind:pas:3s; +circulaient circuler ver 15.19 25.81 0.29 3.92 ind:imp:3p; +circulaire circulaire adj s 1.48 9.73 1.35 8.24 +circulairement circulairement adv 0 0.07 0 0.07 +circulaires circulaire adj p 1.48 9.73 0.14 1.49 +circulais circuler ver 15.19 25.81 0.01 0.34 ind:imp:1s; +circulait circuler ver 15.19 25.81 0.29 4.59 ind:imp:3s; +circulant circuler ver 15.19 25.81 0.06 0.95 par:pre; +circularité circularité nom f s 0 0.14 0 0.14 +circulation circulation nom f s 10.78 14.46 10.78 14.32 +circulations circulation nom f p 10.78 14.46 0 0.14 +circulatoire circulatoire adj s 0.51 0.2 0.28 0 +circulatoires circulatoire adj m p 0.51 0.2 0.23 0.2 +circule circuler ver 15.19 25.81 3.56 4.93 imp:pre:2s;ind:pre:1s;ind:pre:3s; +circulent circuler ver 15.19 25.81 1.73 2.3 ind:pre:3p; +circuler circuler ver 15.19 25.81 4.04 6.42 inf; +circulera circuler ver 15.19 25.81 0.24 0 ind:fut:3s; +circuleraient circuler ver 15.19 25.81 0.02 0.07 cnd:pre:3p; +circulerait circuler ver 15.19 25.81 0.02 0.14 cnd:pre:3s; +circuleront circuler ver 15.19 25.81 0.01 0.07 ind:fut:3p; +circules circuler ver 15.19 25.81 0.01 0.07 ind:pre:2s; +circulez circuler ver 15.19 25.81 4.63 0.74 imp:pre:2p;ind:pre:2p; +circulions circuler ver 15.19 25.81 0 0.07 ind:imp:1p; +circulons circuler ver 15.19 25.81 0.06 0 imp:pre:1p;ind:pre:1p; +circulèrent circuler ver 15.19 25.81 0 0.07 ind:pas:3p; +circulé circuler ver m s 15.19 25.81 0.21 0.61 par:pas; +circumnavigation circumnavigation nom f s 0.14 0.27 0.14 0.27 +cire cire nom f s 5.59 15.88 5.49 15.41 +cirent cirer ver 6.42 20.27 0.25 0 ind:pre:3p; +cirer cirer ver 6.42 20.27 3.29 3.24 inf; +cirerais cirer ver 6.42 20.27 0 0.07 cnd:pre:1s; +cirerait cirer ver 6.42 20.27 0 0.07 cnd:pre:3s; +cires cire nom f p 5.59 15.88 0.1 0.47 +cireur cireur nom m s 0.45 1.22 0.36 0.74 +cireurs cireur nom m p 0.45 1.22 0.01 0.34 +cireuse cireur nom f s 0.45 1.22 0.08 0.14 +cireuses cireux adj f p 0.15 2.5 0.04 0.41 +cireux cireux adj m 0.15 2.5 0.06 1.42 +cirez cirer ver 6.42 20.27 0.14 0.07 imp:pre:2p;ind:pre:2p; +cirions cirer ver 6.42 20.27 0 0.07 ind:imp:1p; +ciron ciron nom m s 0 0.14 0 0.07 +cirons cirer ver 6.42 20.27 0 0.07 imp:pre:1p; +cirque cirque nom m s 23.25 19.53 22.95 18.38 +cirques cirque nom m p 23.25 19.53 0.3 1.15 +cirrhose cirrhose nom f s 0.9 0.27 0.9 0.27 +cirrhotique cirrhotique adj s 0.01 0.07 0.01 0.07 +cirrus cirrus nom m 0.04 0.14 0.04 0.14 +cirses cirse nom m p 0 0.07 0 0.07 +ciré ciré adj m s 0.36 5.27 0.35 3.58 +cirée cirer ver f s 6.42 20.27 0.14 12.16 par:pas; +cirées cirer ver f p 6.42 20.27 1.28 1.62 par:pas; +cirés ciré nom m p 0.69 2.7 0.46 0.61 +cis cis adj m 0.03 0 0.03 0 +cisailla cisailler ver 0.11 2.57 0 0.2 ind:pas:3s; +cisaillage cisaillage nom m s 0 0.07 0 0.07 +cisaillaient cisailler ver 0.11 2.57 0 0.34 ind:imp:3p; +cisaillait cisailler ver 0.11 2.57 0 0.2 ind:imp:3s; +cisaillant cisailler ver 0.11 2.57 0 0.2 par:pre; +cisaille cisaille nom f s 1.6 0.95 0.36 0.74 +cisaillement cisaillement nom m s 0.05 0.14 0.05 0.14 +cisaillent cisailler ver 0.11 2.57 0.01 0.07 ind:pre:3p; +cisailler cisailler ver 0.11 2.57 0.05 0.68 inf; +cisailles cisaille nom f p 1.6 0.95 1.24 0.2 +cisaillèrent cisailler ver 0.11 2.57 0 0.07 ind:pas:3p; +cisaillé cisailler ver m s 0.11 2.57 0.01 0.41 par:pas; +cisaillée cisailler ver f s 0.11 2.57 0 0.07 par:pas; +cisaillées cisailler ver f p 0.11 2.57 0 0.07 par:pas; +cisaillés cisailler ver m p 0.11 2.57 0 0.07 par:pas; +ciseau ciseau nom m s 8.72 13.85 0.86 2.84 +ciseaux ciseau nom m p 8.72 13.85 7.86 11.01 +ciselaient ciseler ver 0.23 2.03 0 0.07 ind:imp:3p; +ciselait ciseler ver 0.23 2.03 0.01 0.14 ind:imp:3s; +ciseler ciseler ver 0.23 2.03 0.01 0.2 inf; +ciselet ciselet nom m s 0 0.07 0 0.07 +ciseleurs ciseleur nom m p 0 0.07 0 0.07 +ciselions ciseler ver 0.23 2.03 0.01 0 ind:imp:1p; +ciselure ciselure nom f s 0 0.27 0 0.07 +ciselures ciselure nom f p 0 0.27 0 0.2 +ciselé ciselé adj m s 0.07 2.43 0.02 1.15 +ciselée ciselé adj f s 0.07 2.43 0.05 0.27 +ciselées ciselé adj f p 0.07 2.43 0 0.61 +ciselés ciseler ver m p 0.23 2.03 0.14 0.07 par:pas; +ciste ciste nom s 0.02 0.34 0.01 0 +cistercien cistercien adj m s 0.01 0.34 0 0.07 +cistercienne cistercien adj f s 0.01 0.34 0 0.2 +cisterciennes cistercien nom f p 0.01 0.07 0 0.07 +cisterciens cistercien adj m p 0.01 0.34 0.01 0.07 +cistes ciste nom p 0.02 0.34 0.01 0.34 +cisèle ciseler ver 0.23 2.03 0.01 0.2 ind:pre:3s; +cita citer ver 17.51 27.09 0 0.88 ind:pas:3s; +citadelle citadelle nom f s 0.98 6.42 0.98 5.54 +citadelles citadelle nom f p 0.98 6.42 0 0.88 +citadin citadin nom m s 1.25 3.72 0.56 0.54 +citadine citadin nom f s 1.25 3.72 0.1 0.27 +citadines citadin adj f p 0.42 2.03 0.11 0.54 +citadins citadin nom m p 1.25 3.72 0.55 2.84 +citai citer ver 17.51 27.09 0 0.68 ind:pas:1s; +citaient citer ver 17.51 27.09 0.02 0.34 ind:imp:3p; +citais citer ver 17.51 27.09 0.19 0.47 ind:imp:1s;ind:imp:2s; +citait citer ver 17.51 27.09 0.15 3.18 ind:imp:3s; +citant citer ver 17.51 27.09 0.46 1.69 par:pre; +citation citation nom f s 5.01 8.11 3.51 4.19 +citations citation nom f p 5.01 8.11 1.5 3.92 +cite citer ver 17.51 27.09 5.61 4.8 imp:pre:2s;ind:pre:1s;ind:pre:3s; +citent citer ver 17.51 27.09 0.1 0.34 ind:pre:3p; +citer citer ver 17.51 27.09 4.38 7.16 inf;; +citera citer ver 17.51 27.09 0.11 0.14 ind:fut:3s; +citerai citer ver 17.51 27.09 0.35 0.68 ind:fut:1s; +citerais citer ver 17.51 27.09 0.03 0.14 cnd:pre:1s;cnd:pre:2s; +citerait citer ver 17.51 27.09 0 0.14 cnd:pre:3s; +citeras citer ver 17.51 27.09 0.02 0 ind:fut:2s; +citerne citerne nom f s 4.19 2.09 3.74 1.28 +citernes citerne nom f p 4.19 2.09 0.45 0.81 +cites citer ver 17.51 27.09 0.63 0.27 ind:pre:2s;sub:pre:2s; +citez citer ver 17.51 27.09 1.37 0.68 imp:pre:2p;ind:pre:2p; +cithare cithare nom f s 0.34 0.95 0.34 0.54 +cithares cithare nom f p 0.34 0.95 0 0.41 +citiez citer ver 17.51 27.09 0.04 0.07 ind:imp:2p; +citions citer ver 17.51 27.09 0.01 0.07 ind:imp:1p; +citizen_band citizen_band nom f s 0.01 0 0.01 0 +citons citer ver 17.51 27.09 0.2 0.2 imp:pre:1p;ind:pre:1p; +citoyen citoyen nom m s 29.6 14.73 11.61 5.2 +citoyenne citoyen nom f s 29.6 14.73 1.56 0.61 +citoyennes citoyen nom f p 29.6 14.73 0.59 0.27 +citoyenneté citoyenneté nom f s 1.13 0.34 1.13 0.34 +citoyens citoyen nom m p 29.6 14.73 15.83 8.65 +citrate citrate nom m s 0.2 0 0.2 0 +citrine citrine nom f s 0.06 0.07 0.06 0.07 +citrique citrique adj s 0.07 0.14 0.07 0.14 +citron citron nom m s 10.92 10.81 8.1 9.05 +citronnade citronnade nom f s 0.58 1.01 0.56 0.95 +citronnades citronnade nom f p 0.58 1.01 0.02 0.07 +citronnelle citronnelle nom f s 0.46 0.88 0.46 0.81 +citronnelles citronnelle nom f p 0.46 0.88 0 0.07 +citronnez citronner ver 0.01 0.07 0 0.07 imp:pre:2p; +citronnier citronnier nom m s 0.21 1.49 0.04 0.41 +citronniers citronnier nom m p 0.21 1.49 0.17 1.08 +citronné citronné adj m s 0.06 0.07 0.03 0.07 +citronnée citronné adj f s 0.06 0.07 0.03 0 +citrons citron nom m p 10.92 10.81 2.82 1.76 +citrouille citrouille nom f s 1.88 2.91 1.56 2.43 +citrouilles citrouille nom f p 1.88 2.91 0.32 0.47 +citrus citrus nom m 0.17 0 0.17 0 +city city nom f s 0.54 0.27 0.54 0.27 +citât citer ver 17.51 27.09 0 0.14 sub:imp:3s; +citèrent citer ver 17.51 27.09 0.01 0.07 ind:pas:3p; +cité cité nom f s 16.11 23.99 14.55 20.68 +cité_dortoir cité_dortoir nom f s 0 0.27 0 0.14 +cité_jardin cité_jardin nom f s 0 0.2 0 0.2 +citée citer ver f s 17.51 27.09 0.53 0.68 par:pas; +citées citer ver f p 17.51 27.09 0.03 0.14 par:pas; +citérieure citérieur adj f s 0 0.07 0 0.07 +cités cité nom f p 16.11 23.99 1.56 3.31 +cité_dortoir cité_dortoir nom f p 0 0.27 0 0.14 +civadière civadière nom f s 0.01 0 0.01 0 +civelles civelle nom f p 0.3 0.27 0.3 0.27 +civelots civelot nom m p 0 0.14 0 0.14 +civet civet nom m s 0.88 2.43 0.78 2.36 +civets civet nom m p 0.88 2.43 0.1 0.07 +civette civette nom f s 0.15 0.54 0.15 0.54 +civil civil adj m s 20.46 28.51 5.92 9.46 +civile civil adj f s 20.46 28.51 9.76 10.61 +civilement civilement adv 0.04 0.74 0.04 0.74 +civiles civil adj f p 20.46 28.51 1.42 3.04 +civilisateur civilisateur adj m s 0.1 0.34 0 0.14 +civilisation civilisation nom f s 12.43 19.32 10.48 16.62 +civilisations civilisation nom f p 12.43 19.32 1.94 2.7 +civilisatrice civilisateur adj f s 0.1 0.34 0.1 0.2 +civilise civiliser ver 2.17 1.08 0.02 0.07 ind:pre:3s; +civiliser civiliser ver 2.17 1.08 0.34 0.2 inf; +civilises civiliser ver 2.17 1.08 0 0.07 ind:pre:2s; +civilisé civilisé adj m s 5.64 3.78 2.88 1.96 +civilisée civilisé adj f s 5.64 3.78 1.11 0.47 +civilisées civilisé adj f p 5.64 3.78 0.35 0.27 +civilisés civilisé adj m p 5.64 3.78 1.31 1.08 +civilité civilité nom f s 1.48 1.42 0.9 1.01 +civilités civilité nom f p 1.48 1.42 0.58 0.41 +civils civil nom m p 14.23 13.99 8 5.54 +civique civique adj s 2.97 1.82 1.37 1.35 +civiques civique adj p 2.97 1.82 1.6 0.47 +civisme civisme nom m s 0.26 0.54 0.26 0.54 +civière civière nom f s 2.42 4.46 1.97 4.12 +civières civière nom f p 2.42 4.46 0.45 0.34 +clabaudage clabaudage nom m s 0.02 0.07 0.01 0 +clabaudages clabaudage nom m p 0.02 0.07 0.01 0.07 +clabaudaient clabauder ver 0.01 0.34 0 0.14 ind:imp:3p; +clabaudent clabauder ver 0.01 0.34 0 0.07 ind:pre:3p; +clabauder clabauder ver 0.01 0.34 0.01 0.07 inf; +clabauderies clabauderie nom f p 0 0.07 0 0.07 +clabaudé clabauder ver m s 0.01 0.34 0 0.07 par:pas; +clabote claboter ver 0.01 0.47 0 0.14 ind:pre:1s;ind:pre:3s; +clabotent claboter ver 0.01 0.47 0 0.07 ind:pre:3p; +claboter claboter ver 0.01 0.47 0 0.14 inf; +claboté claboter ver m s 0.01 0.47 0.01 0.14 par:pas; +clac clac ono 0.29 3.72 0.29 3.72 +clafouti clafouti nom m s 0 0.07 0 0.07 +clafoutis clafoutis nom m 0.05 0.54 0.05 0.54 +claie claie nom f s 0.01 2.43 0.01 1.01 +claies claie nom f p 0.01 2.43 0 1.42 +claim claim nom m s 0.08 0 0.08 0 +clair clair adj m s 122.69 156.69 88.54 91.01 +clair_obscur clair_obscur nom m s 0.02 1.96 0.02 1.62 +claire clair adj f s 122.69 156.69 21.21 38.04 +claire_voie claire_voie nom f s 0.01 2.43 0.01 1.96 +clairement clairement adv 18.75 18.18 18.75 18.18 +claires clair adj f p 122.69 156.69 7.05 12.91 +claire_voie claire_voie nom f p 0.01 2.43 0 0.47 +clairet clairet nom m s 0.02 0 0.02 0 +clairette clairet adj f s 0 0.88 0 0.88 +clairière clairière nom f s 1.84 17.77 1.72 14.59 +clairières clairière nom f p 1.84 17.77 0.12 3.18 +clairon clairon nom m s 2.19 5.61 2.03 4.32 +claironna claironner ver 0.91 3.24 0 0.68 ind:pas:3s; +claironnait claironner ver 0.91 3.24 0 0.54 ind:imp:3s; +claironnant claironner ver 0.91 3.24 0.01 0.61 par:pre; +claironnante claironnant adj f s 0 1.08 0 0.74 +claironnantes claironnant adj f p 0 1.08 0 0.07 +claironnants claironnant adj m p 0 1.08 0 0.2 +claironne claironner ver 0.91 3.24 0.42 0.41 ind:pre:1s;ind:pre:3s; +claironnent claironner ver 0.91 3.24 0.27 0.07 ind:pre:3p; +claironner claironner ver 0.91 3.24 0.2 0.61 inf; +claironnions claironner ver 0.91 3.24 0 0.07 ind:imp:1p; +claironné claironner ver m s 0.91 3.24 0.01 0.27 par:pas; +clairons clairon nom m p 2.19 5.61 0.16 1.28 +clairs clair adj m p 122.69 156.69 5.89 14.73 +clair_obscur clair_obscur nom m p 0.02 1.96 0 0.34 +clairsemaient clairsemer ver 0.04 1.49 0 0.14 ind:imp:3p; +clairsemait clairsemer ver 0.04 1.49 0 0.07 ind:imp:3s; +clairsemant clairsemer ver 0.04 1.49 0 0.07 par:pre; +clairsemé clairsemé adj m s 0.27 3.18 0.01 0.54 +clairsemée clairsemer ver f s 0.04 1.49 0.01 0.41 par:pas; +clairsemées clairsemer ver f p 0.04 1.49 0.01 0.27 par:pas; +clairsemés clairsemé adj m p 0.27 3.18 0.26 1.22 +clairvoyance clairvoyance nom f s 0.67 1.89 0.67 1.82 +clairvoyances clairvoyance nom f p 0.67 1.89 0 0.07 +clairvoyant clairvoyant adj m s 0.96 1.69 0.53 1.01 +clairvoyante clairvoyant adj f s 0.96 1.69 0.22 0.47 +clairvoyants clairvoyant adj m p 0.96 1.69 0.22 0.2 +clam clam nom m s 0.34 0.2 0.06 0.07 +clama clamer ver 2.61 7.3 0 1.15 ind:pas:3s; +clamai clamer ver 2.61 7.3 0 0.07 ind:pas:1s; +clamaient clamer ver 2.61 7.3 0.01 0.61 ind:imp:3p; +clamait clamer ver 2.61 7.3 0.11 1.15 ind:imp:3s; +clamant clamer ver 2.61 7.3 0.39 0.88 par:pre; +clame clamer ver 2.61 7.3 0.67 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clamecer clamecer ver 0 0.2 0 0.07 inf; +clamecé clamecer ver m s 0 0.2 0 0.07 par:pas; +clamecée clamecer ver f s 0 0.2 0 0.07 par:pas; +clament clamer ver 2.61 7.3 0.32 0.34 ind:pre:3p; +clamer clamer ver 2.61 7.3 0.71 0.61 inf; +clameraient clamer ver 2.61 7.3 0 0.07 cnd:pre:3p; +clameur clameur nom f s 0.9 9.73 0.73 5.61 +clameurs clameur nom f p 0.9 9.73 0.16 4.12 +clamez clamer ver 2.61 7.3 0.14 0 imp:pre:2p;ind:pre:2p; +clamions clamer ver 2.61 7.3 0 0.07 ind:imp:1p; +clamp clamp nom m s 1.09 0 0.97 0 +clampe clamper ver 0.41 0 0.09 0 ind:pre:1s;ind:pre:3s; +clamper clamper ver 0.41 0 0.14 0 inf; +clampin clampin nom m s 0.03 0.34 0.02 0.2 +clampins clampin nom m p 0.03 0.34 0.01 0.14 +clamps clamp nom m p 1.09 0 0.12 0 +clampé clamper ver m s 0.41 0 0.17 0 par:pas; +clams clam nom m p 0.34 0.2 0.28 0.14 +clamse clamser ver 0.97 1.69 0.26 0.07 ind:pre:3s; +clamser clamser ver 0.97 1.69 0.29 0.74 inf; +clamserai clamser ver 0.97 1.69 0.01 0.2 ind:fut:1s; +clamserait clamser ver 0.97 1.69 0.01 0.14 cnd:pre:3s; +clamsé clamser ver m s 0.97 1.69 0.37 0.2 par:pas; +clamsée clamser ver f s 0.97 1.69 0.01 0.27 par:pas; +clamsés clamser ver m p 0.97 1.69 0.01 0.07 par:pas; +clamèrent clamer ver 2.61 7.3 0.01 0.07 ind:pas:3p; +clamé clamer ver m s 2.61 7.3 0.12 0.34 par:pas; +clamée clamer ver f s 2.61 7.3 0.14 0.07 par:pas; +clamés clamer ver m p 2.61 7.3 0 0.07 par:pas; +clan clan nom m s 8.83 16.42 7.61 13.51 +clandestin clandestin adj m s 6.78 17.64 2.79 5.07 +clandestine clandestin adj f s 6.78 17.64 1.93 6.22 +clandestinement clandestinement adv 1.48 2.84 1.48 2.84 +clandestines clandestin nom f p 2.86 1.76 0.83 0.07 +clandestinité clandestinité nom f s 0.48 4.8 0.48 4.73 +clandestinités clandestinité nom f p 0.48 4.8 0 0.07 +clandestins clandestin adj m p 6.78 17.64 1.46 3.58 +clandé clandé nom m s 0.19 1.35 0.04 1.28 +clandés clandé nom m p 0.19 1.35 0.16 0.07 +clans clan nom m p 8.83 16.42 1.22 2.91 +clap clap nom m s 1.43 0.54 1.43 0.54 +clapant claper ver 0 2.3 0 0.47 par:pre; +clape claper ver 0 2.3 0 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clapent claper ver 0 2.3 0 0.14 ind:pre:3p; +claper claper ver 0 2.3 0 0.61 inf; +claperai claper ver 0 2.3 0 0.07 ind:fut:1s; +clapes claper ver 0 2.3 0 0.07 ind:pre:2s; +clapet clapet nom m s 1.15 1.15 0.98 0.68 +clapets clapet nom m p 1.15 1.15 0.17 0.47 +clapette clapette nom f s 0 0.07 0 0.07 +clapier clapier nom m s 0.3 2.84 0.28 1.42 +clapiers clapier nom m p 0.3 2.84 0.02 1.42 +clapir clapir ver 0 0.14 0 0.07 inf; +clapit clapir ver 0 0.14 0 0.07 ind:pre:3s; +clapot clapot nom m s 0.16 0.47 0.16 0.47 +clapota clapoter ver 0.09 3.24 0 0.14 ind:pas:3s; +clapotaient clapoter ver 0.09 3.24 0 0.27 ind:imp:3p; +clapotait clapoter ver 0.09 3.24 0.01 1.01 ind:imp:3s; +clapotant clapotant adj m s 0 1.22 0 0.47 +clapotante clapotant adj f s 0 1.22 0 0.54 +clapotantes clapotant adj f p 0 1.22 0 0.2 +clapote clapoter ver 0.09 3.24 0.03 0.41 imp:pre:2s;ind:pre:3s; +clapotement clapotement nom m s 0 1.08 0 0.68 +clapotements clapotement nom m p 0 1.08 0 0.41 +clapotent clapoter ver 0.09 3.24 0.01 0.34 ind:pre:3p; +clapoter clapoter ver 0.09 3.24 0.04 0.74 inf; +clapoterait clapoter ver 0.09 3.24 0 0.07 cnd:pre:3s; +clapotis clapotis nom m 0.3 5.41 0.3 5.41 +clappait clapper ver 0.03 0.41 0 0.07 ind:imp:3s; +clappant clapper ver 0.03 0.41 0 0.2 par:pre; +clappe clapper ver 0.03 0.41 0 0.14 ind:pre:3s; +clappement clappement nom m s 0.01 0.54 0 0.27 +clappements clappement nom m p 0.01 0.54 0.01 0.27 +clapper clapper ver 0.03 0.41 0.03 0 inf; +clapé claper ver m s 0 2.3 0 0.41 par:pas; +claqua claquer ver 15.13 74.19 0 7.23 ind:pas:3s; +claquage claquage nom m s 0.1 0.07 0.1 0.07 +claquai claquer ver 15.13 74.19 0 0.14 ind:pas:1s; +claquaient claquer ver 15.13 74.19 0.07 4.39 ind:imp:3p; +claquais claquer ver 15.13 74.19 0.05 0.34 ind:imp:1s;ind:imp:2s; +claquait claquer ver 15.13 74.19 0.15 4.12 ind:imp:3s; +claquant claquer ver 15.13 74.19 0.65 9.19 par:pre; +claquante claquant adj f s 0.14 1.42 0 0.14 +claquantes claquant adj f p 0.14 1.42 0 0.14 +claquants claquant adj m p 0.14 1.42 0 0.2 +claque claque nom s 6.88 14.26 5.19 8.65 +claque_merde claque_merde nom m s 0.19 0.27 0.19 0.27 +claquedents claquedent nom m p 0 0.07 0 0.07 +claquement claquement nom m s 0.96 14.73 0.71 9.46 +claquements claquement nom m p 0.96 14.73 0.25 5.27 +claquemurait claquemurer ver 0.14 1.28 0 0.14 ind:imp:3s; +claquemurant claquemurer ver 0.14 1.28 0.14 0 par:pre; +claquemurer claquemurer ver 0.14 1.28 0 0.07 inf; +claquemures claquemurer ver 0.14 1.28 0 0.07 ind:pre:2s; +claquemuré claquemurer ver m s 0.14 1.28 0.01 0.41 par:pas; +claquemurée claquemurer ver f s 0.14 1.28 0 0.34 par:pas; +claquemurées claquemurer ver f p 0.14 1.28 0 0.2 par:pas; +claquemurés claquemurer ver m p 0.14 1.28 0 0.07 par:pas; +claquent claquer ver 15.13 74.19 0.28 5.14 ind:pre:3p; +claquer claquer ver 15.13 74.19 4.5 19.59 inf; +claquera claquer ver 15.13 74.19 0.19 0.2 ind:fut:3s; +claquerai claquer ver 15.13 74.19 0.15 0.07 ind:fut:1s; +claqueraient claquer ver 15.13 74.19 0 0.2 cnd:pre:3p; +claquerais claquer ver 15.13 74.19 0.03 0 cnd:pre:1s;cnd:pre:2s; +claquerait claquer ver 15.13 74.19 0.25 0.34 cnd:pre:3s; +claqueriez claquer ver 15.13 74.19 0.01 0 cnd:pre:2p; +claqueront claquer ver 15.13 74.19 0.01 0 ind:fut:3p; +claques claque nom p 6.88 14.26 1.69 5.61 +claquet claquet nom m s 0.02 0 0.02 0 +claquette claquette nom f s 1.71 1.22 0.1 0.07 +claquettes claquette nom f p 1.71 1.22 1.61 1.15 +claquetèrent claqueter ver 0 0.07 0 0.07 ind:pas:3p; +claqueurs claqueur nom m p 0 0.07 0 0.07 +claquez claquer ver 15.13 74.19 0.46 0.07 imp:pre:2p;ind:pre:2p; +claquions claquer ver 15.13 74.19 0 0.07 ind:imp:1p; +claquoirs claquoir nom m p 0.01 0.14 0.01 0.14 +claquons claquer ver 15.13 74.19 0.02 0 imp:pre:1p; +claquât claquer ver 15.13 74.19 0 0.07 sub:imp:3s; +claquèrent claquer ver 15.13 74.19 0 1.35 ind:pas:3p; +claqué claquer ver m s 15.13 74.19 2.56 7.3 par:pas; +claquée claquer ver f s 15.13 74.19 0.55 1.15 par:pas; +claquées claquer ver f p 15.13 74.19 0.11 1.15 par:pas; +claqués claquer ver m p 15.13 74.19 0.1 0.27 par:pas; +clarifia clarifier ver 3.64 0.74 0 0.14 ind:pas:3s; +clarifiant clarifier ver 3.64 0.74 0.01 0 par:pre; +clarification clarification nom f s 0.07 0.07 0.07 0.07 +clarifie clarifier ver 3.64 0.74 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clarifier clarifier ver 3.64 0.74 2.79 0.27 inf; +clarifions clarifier ver 3.64 0.74 0.26 0 imp:pre:1p; +clarifié clarifier ver m s 3.64 0.74 0.33 0.2 par:pas; +clarifiée clarifier ver f s 3.64 0.74 0.02 0 par:pas; +clarine clarine nom f s 0.4 0.54 0.4 0.07 +clarines clarine nom f p 0.4 0.54 0 0.47 +clarinette clarinette nom f s 2.21 3.58 2.2 3.11 +clarinettes clarinette nom f p 2.21 3.58 0.01 0.47 +clarinettiste clarinettiste nom s 0.23 0.2 0.23 0.2 +clarisse clarisse nom f s 0.33 0.41 0.06 0 +clarisses clarisse nom f p 0.33 0.41 0.27 0.41 +clarissimes clarissime nom m p 0 0.14 0 0.14 +clarté clarté nom f s 4.62 30.68 4.48 28.24 +clartés clarté nom f p 4.62 30.68 0.14 2.43 +clash clash nom m s 1.7 1.55 1.7 1.55 +class class adj 0.51 1.08 0.51 1.08 +classa classer ver 12.11 12.7 0.02 0.27 ind:pas:3s; +classable classable adj s 0.14 0 0.14 0 +classaient classer ver 12.11 12.7 0.03 0.2 ind:imp:3p; +classais classer ver 12.11 12.7 0.27 0.41 ind:imp:1s;ind:imp:2s; +classait classer ver 12.11 12.7 0.04 1.01 ind:imp:3s; +classant classer ver 12.11 12.7 0.04 0.47 par:pre; +classe classe nom f s 78.99 108.92 70.46 90.74 +classement classement nom m s 2.65 2.09 2.34 1.76 +classements classement nom m p 2.65 2.09 0.31 0.34 +classent classer ver 12.11 12.7 0.05 0.14 ind:pre:3p; +classer classer ver 12.11 12.7 2.02 2.84 inf; +classera classer ver 12.11 12.7 0.03 0.07 ind:fut:3s; +classerai classer ver 12.11 12.7 0.02 0 ind:fut:1s; +classeraient classer ver 12.11 12.7 0 0.07 cnd:pre:3p; +classerais classer ver 12.11 12.7 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +classerait classer ver 12.11 12.7 0.03 0.14 cnd:pre:3s; +classeras classer ver 12.11 12.7 0.01 0 ind:fut:2s; +classes classe nom f p 78.99 108.92 8.53 18.18 +classeur classeur nom m s 0.69 3.38 0.56 1.35 +classeurs classeur nom m p 0.69 3.38 0.13 2.03 +classez classer ver 12.11 12.7 0.34 0.07 imp:pre:2p;ind:pre:2p; +classicisme classicisme nom m s 0.04 0.34 0.04 0.34 +classico classico adv 0.01 0 0.01 0 +classieuse classieux adj f s 0.28 0 0.13 0 +classieux classieux adj m 0.28 0 0.14 0 +classiez classer ver 12.11 12.7 0.01 0 sub:pre:2p; +classifiables classifiable adj p 0 0.07 0 0.07 +classificateur classificateur adj m s 0 0.2 0 0.14 +classification classification nom f s 0.59 1.08 0.57 0.95 +classifications classification nom f p 0.59 1.08 0.02 0.14 +classificatrice classificateur adj f s 0 0.2 0 0.07 +classifient classifier ver 0.53 0.2 0 0.07 ind:pre:3p; +classifier classifier ver 0.53 0.2 0.23 0.14 inf; +classifierais classifier ver 0.53 0.2 0.01 0 cnd:pre:2s; +classifié classifier ver m s 0.53 0.2 0.23 0 par:pas; +classifiées classifier ver f p 0.53 0.2 0.06 0 par:pas; +classique classique adj s 15.58 21.01 13.74 15.81 +classiquement classiquement adv 0 0.14 0 0.14 +classiques classique nom p 7.02 4.8 1.87 2.57 +classons classer ver 12.11 12.7 0.05 0 imp:pre:1p;ind:pre:1p; +classèrent classer ver 12.11 12.7 0 0.14 ind:pas:3p; +classé classer ver m s 12.11 12.7 2.28 1.42 par:pas; +classée classé adj f s 4.75 2.7 2.39 0.81 +classées classé adj f p 4.75 2.7 0.98 0.34 +classés classer ver m p 12.11 12.7 0.58 0.81 par:pas; +clathres clathre nom m p 0 0.14 0 0.14 +claude claude nom s 0.01 2.64 0.01 2.64 +claudicant claudicant adj m s 0.01 0.54 0 0.2 +claudicante claudicant adj f s 0.01 0.54 0.01 0.27 +claudicants claudicant adj m p 0.01 0.54 0 0.07 +claudication claudication nom f s 0.07 0.68 0.07 0.68 +claudiquait claudiquer ver 0.08 0.88 0 0.14 ind:imp:3s; +claudiquant claudiquer ver 0.08 0.88 0.01 0.68 par:pre; +claudique claudiquer ver 0.08 0.88 0.05 0 imp:pre:2s;ind:pre:1s; +claudiquer claudiquer ver 0.08 0.88 0.01 0 inf; +claudiquerait claudiquer ver 0.08 0.88 0 0.07 cnd:pre:3s; +claudiquerez claudiquer ver 0.08 0.88 0.01 0 ind:fut:2p; +claudélienne claudélien adj f s 0 0.07 0 0.07 +clause clause nom f s 3.47 1.89 2.94 1.01 +clauses clause nom f p 3.47 1.89 0.53 0.88 +clausewitziens clausewitzien adj m p 0 0.07 0 0.07 +claustrait claustrer ver 0 0.2 0 0.07 ind:imp:3s; +claustrale claustral adj f s 0 0.07 0 0.07 +claustration claustration nom f s 0.02 1.01 0.02 1.01 +claustrophobe claustrophobe adj m s 0.9 0.07 0.9 0.07 +claustrophobie claustrophobie nom f s 0.26 0.07 0.26 0.07 +claustrée claustrer ver f s 0 0.2 0 0.14 par:pas; +clavaire clavaire nom f s 0 0.2 0 0.07 +clavaires clavaire nom f p 0 0.2 0 0.14 +claveaux claveau nom m p 0 0.14 0 0.14 +clavecin clavecin nom m s 0.75 2.43 0.75 2.3 +claveciniste claveciniste nom s 0 0.2 0 0.2 +clavecins clavecin nom m p 0.75 2.43 0 0.14 +clavette clavette nom f s 0.01 0 0.01 0 +clavicule clavicule nom f s 1.96 1.28 1.74 0.68 +clavicules clavicule nom f p 1.96 1.28 0.22 0.61 +clavier clavier nom m s 1.77 3.58 1.62 3.24 +claviers clavier nom m p 1.77 3.58 0.15 0.34 +clayettes clayette nom f p 0 0.07 0 0.07 +claymore claymore nom f s 0.2 0 0.2 0 +clayon clayon nom m s 0 0.14 0 0.07 +clayonnage clayonnage nom m s 0.01 0.2 0.01 0.07 +clayonnages clayonnage nom m p 0.01 0.2 0 0.14 +clayonnée clayonner ver f s 0 0.27 0 0.27 par:pas; +clayons clayon nom m p 0 0.14 0 0.07 +clean clean adj 4.66 0.74 4.66 0.74 +clearing clearing nom m s 0.04 0 0.04 0 +clebs clebs nom m 2 3.11 2 3.11 +clef clef nom f s 24.32 44.86 14.61 35.61 +clefs clef nom f p 24.32 44.86 9.72 9.26 +clenche clenche nom f s 0 0.47 0 0.41 +clenches clenche nom f p 0 0.47 0 0.07 +clepsydre clepsydre nom f s 0 1.62 0 1.62 +cleptomane cleptomane nom s 0.09 0 0.09 0 +cleptomanie cleptomanie nom f s 0.02 0 0.02 0 +clerc clerc nom m s 0.82 9.26 0.73 5.68 +clercs clerc nom m p 0.82 9.26 0.09 3.58 +clergeon clergeon nom m s 0 0.14 0 0.14 +clergyman clergyman nom m s 0.05 0.81 0.05 0.61 +clergymen clergyman nom m p 0.05 0.81 0 0.2 +clergé clergé nom m s 2.08 3.99 2.07 3.78 +clergés clergé nom m p 2.08 3.99 0.01 0.2 +clermontois clermontois nom m 0 0.14 0 0.14 +clermontoise clermontois adj f s 0 0.07 0 0.07 +clic clic ono 0.2 0.81 0.2 0.81 +clic_clac clic_clac ono 0.1 0.07 0.1 0.07 +clichage clichage nom m s 0 0.07 0 0.07 +clicher clicher ver 0.6 0.27 0.01 0.07 inf; +clicherie clicherie nom f s 0 0.27 0 0.27 +clicheur clicheur nom m s 0 0.07 0 0.07 +cliché cliché nom m s 7.59 11.96 3.69 5.34 +clichée cliché adj f s 1.2 0.54 0 0.07 +clichés cliché nom m p 7.59 11.96 3.89 6.62 +click click nom m s 0.4 0 0.4 0 +clics clic nom m p 1.17 1.08 0.22 0.2 +client client nom m s 112.12 81.55 53.63 28.78 +client_roi client_roi nom m s 0 0.07 0 0.07 +cliente client nom f s 112.12 81.55 9.22 6.89 +clientes client nom f p 112.12 81.55 2.24 4.26 +clients client nom m p 112.12 81.55 47.03 41.62 +clientèle clientèle nom f s 3.88 18.78 3.87 18.51 +clientèles clientèle nom f p 3.88 18.78 0.01 0.27 +cligna cligner ver 2.8 18.85 0.02 3.04 ind:pas:3s; +clignaient cligner ver 2.8 18.85 0.16 0.68 ind:imp:3p; +clignais cligner ver 2.8 18.85 0 0.27 ind:imp:1s; +clignait cligner ver 2.8 18.85 0.14 1.62 ind:imp:3s; +clignant cligner ver 2.8 18.85 0.22 5.68 par:pre; +cligne cligner ver 2.8 18.85 0.95 2.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clignement clignement nom m s 0.14 2.03 0.11 1.22 +clignements clignement nom m p 0.14 2.03 0.03 0.81 +clignent cligner ver 2.8 18.85 0.31 0.41 ind:pre:3p; +cligner cligner ver 2.8 18.85 0.47 2.77 inf; +clignez cligner ver 2.8 18.85 0.16 0 imp:pre:2p;ind:pre:2p; +clignons cligner ver 2.8 18.85 0 0.07 ind:pre:1p; +clignota clignoter ver 1.57 5.68 0 0.2 ind:pas:3s; +clignotaient clignoter ver 1.57 5.68 0 1.62 ind:imp:3p; +clignotait clignoter ver 1.57 5.68 0.08 0.61 ind:imp:3s; +clignotant clignotant nom m s 1 1.35 0.97 1.01 +clignotante clignotant adj f s 1.06 2.77 0.07 0.74 +clignotantes clignotant adj f p 1.06 2.77 0.05 0.61 +clignotants clignotant adj m p 1.06 2.77 0.18 0.81 +clignote clignoter ver 1.57 5.68 0.61 0.88 imp:pre:2s;ind:pre:3s; +clignotement clignotement nom m s 0.07 1.49 0.07 0.81 +clignotements clignotement nom m p 0.07 1.49 0 0.68 +clignotent clignoter ver 1.57 5.68 0.49 1.01 ind:pre:3p; +clignoter clignoter ver 1.57 5.68 0.16 0.54 inf; +clignotera clignoter ver 1.57 5.68 0.01 0 ind:fut:3s; +clignoterait clignoter ver 1.57 5.68 0 0.07 cnd:pre:3s; +clignoteur clignoteur nom m s 0 0.07 0 0.07 +clignotèrent clignoter ver 1.57 5.68 0 0.14 ind:pas:3p; +clignoté clignoter ver m s 1.57 5.68 0.04 0.14 par:pas; +clignèrent cligner ver 2.8 18.85 0 0.34 ind:pas:3p; +cligné cligner ver m s 2.8 18.85 0.38 1.15 par:pas; +clignées cligner ver f p 2.8 18.85 0 0.14 par:pas; +clignés cligner ver m p 2.8 18.85 0 0.2 par:pas; +clilles clille nom p 0 0.27 0 0.27 +climat climat nom m s 7.21 18.99 6.64 17.16 +climatique climatique adj s 0.51 0.27 0.26 0.07 +climatiques climatique adj p 0.51 0.27 0.25 0.2 +climatisant climatiser ver 0.39 0.41 0 0.07 par:pre; +climatisation climatisation nom f s 1.79 0.2 1.79 0.2 +climatiser climatiser ver 0.39 0.41 0.01 0 inf; +climatiseur climatiseur nom m s 0.85 0.2 0.78 0.14 +climatiseurs climatiseur nom m p 0.85 0.2 0.07 0.07 +climatisé climatisé adj m s 0.37 0.47 0.29 0.27 +climatisée climatiser ver f s 0.39 0.41 0.2 0.2 par:pas; +climatisées climatisé adj f p 0.37 0.47 0.02 0.07 +climatisés climatisé adj m p 0.37 0.47 0.01 0.07 +climatologue climatologue nom s 0.02 0 0.02 0 +climats climat nom m p 7.21 18.99 0.57 1.82 +climatériques climatérique adj f p 0 0.07 0 0.07 +climax climax nom m 0.18 0.07 0.18 0.07 +clin clin nom m s 3.97 19.46 3.63 16.55 +clin_d_oeil clin_d_oeil nom m s 0.01 0 0.01 0 +clinche clinche nom f s 0 0.07 0 0.07 +clinicat clinicat nom m s 0.07 0 0.07 0 +clinicien clinicien nom m s 0.05 0.2 0.01 0.2 +clinicienne clinicien nom f s 0.05 0.2 0.01 0 +cliniciens clinicien nom m p 0.05 0.2 0.03 0 +clinique clinique nom f s 18.79 11.82 17.72 10.81 +cliniquement cliniquement adv 0.92 0.14 0.92 0.14 +cliniques clinique nom f p 18.79 11.82 1.06 1.01 +clinker clinker nom m s 0.14 0 0.14 0 +clinquant clinquant adj m s 0.34 1.76 0.07 0.47 +clinquante clinquant adj f s 0.34 1.76 0.06 0.34 +clinquantes clinquant adj f p 0.34 1.76 0.16 0.34 +clinquants clinquant adj m p 0.34 1.76 0.05 0.61 +clins clin nom m p 3.97 19.46 0.34 2.91 +clip clip nom m s 2.98 1.28 2.12 0.61 +clipper clipper nom m s 0.5 0.2 0.4 0.2 +clippers clipper nom m p 0.5 0.2 0.09 0 +clips clip nom m p 2.98 1.28 0.86 0.68 +cliquant cliquer ver 0.68 0 0.02 0 par:pre; +clique clique nom f s 2.78 3.11 2.41 2.84 +cliquer cliquer ver 0.68 0 0.27 0 inf; +cliques clique nom f p 2.78 3.11 0.37 0.27 +cliquet cliquet nom m s 0.16 0.07 0.02 0.07 +cliqueta cliqueter ver 0.69 3.11 0 0.14 ind:pas:3s; +cliquetaient cliqueter ver 0.69 3.11 0.02 0.68 ind:imp:3p; +cliquetait cliqueter ver 0.69 3.11 0 0.54 ind:imp:3s; +cliquetant cliqueter ver 0.69 3.11 0.03 0.34 par:pre; +cliquetante cliquetant adj f s 0 0.95 0 0.34 +cliquetantes cliquetant adj f p 0 0.95 0 0.2 +cliquetants cliquetant adj m p 0 0.95 0 0.14 +cliqueter cliqueter ver 0.69 3.11 0.19 0.81 inf; +cliquetis cliquetis nom m 0.38 8.04 0.38 8.04 +cliquets cliquet nom m p 0.16 0.07 0.14 0 +cliquette cliqueter ver 0.69 3.11 0.04 0.47 ind:pre:1s;ind:pre:3s; +cliquettement cliquettement nom m s 0 0.07 0 0.07 +cliquettent cliqueter ver 0.69 3.11 0.41 0.14 ind:pre:3p; +cliquettes cliquette nom f p 0 0.07 0 0.07 +cliquez cliquer ver 0.68 0 0.28 0 imp:pre:2p;ind:pre:2p; +cliquètement cliquètement nom m s 0 0.27 0 0.2 +cliquètements cliquètement nom m p 0 0.27 0 0.07 +cliqué cliquer ver m s 0.68 0 0.1 0 par:pas; +clissées clisser ver f p 0 0.07 0 0.07 par:pas; +clito clito nom m s 0.36 0.41 0.36 0.41 +clitoridectomie clitoridectomie nom f s 0.03 0 0.03 0 +clitoridien clitoridien adj m s 0.04 0.41 0.04 0.07 +clitoridienne clitoridien adj f s 0.04 0.41 0 0.34 +clitoris clitoris nom m 1.28 0.41 1.28 0.41 +clivage clivage nom m s 0.02 0.61 0.01 0.27 +clivages clivage nom m p 0.02 0.61 0.01 0.34 +cliver cliver ver 0.01 0 0.01 0 inf; +clivés clivé adj m p 0.03 0 0.03 0 +cloacal cloacal adj m s 0 0.07 0 0.07 +cloaque cloaque nom m s 0.75 1.89 0.59 1.76 +cloaques cloaque nom m p 0.75 1.89 0.16 0.14 +cloc cloc nom m s 0 0.07 0 0.07 +clochaient clocher ver 8.93 2.97 0 0.07 ind:imp:3p; +clochait clocher ver 8.93 2.97 0.93 1.08 ind:imp:3s; +clochant clocher ver 8.93 2.97 0 0.27 par:pre; +clochard clochard nom m s 3.88 10.88 2.4 5.27 +clocharde clochard nom f s 3.88 10.88 0.32 1.15 +clochardes clochard nom f p 3.88 10.88 0.18 0 +clochardisait clochardiser ver 0 0.34 0 0.07 ind:imp:3s; +clochardisation clochardisation nom f s 0.01 0.2 0.01 0.2 +clochardiser clochardiser ver 0 0.34 0 0.2 inf; +clochardisé clochardiser ver m s 0 0.34 0 0.07 par:pas; +clochards clochard nom m p 3.88 10.88 0.98 4.46 +cloche cloche nom f s 19.72 34.59 9.01 18.24 +cloche_pied cloche_pied nom f s 0.01 0.14 0.01 0.14 +clochent clocher ver 8.93 2.97 0.15 0 ind:pre:3p; +clocher clocher nom m s 2.38 13.65 1.87 11.01 +clochers clocher nom m p 2.38 13.65 0.51 2.64 +cloches cloche nom f p 19.72 34.59 10.71 16.35 +clocheton clocheton nom m s 0 2.09 0 0.88 +clochetons clocheton nom m p 0 2.09 0 1.22 +clochette clochette nom f s 3.43 5.74 2.57 2.5 +clochettes clochette nom f p 3.43 5.74 0.86 3.24 +clochât clocher ver 8.93 2.97 0 0.07 sub:imp:3s; +cloché clocher ver m s 8.93 2.97 0.03 0 par:pas; +clodo clodo nom m s 4.12 4.05 3.36 2.16 +clodos clodo nom m p 4.12 4.05 0.76 1.89 +cloison cloison nom f s 2.83 18.24 1.52 12.77 +cloisonnaient cloisonner ver 0.03 0.61 0 0.14 ind:imp:3p; +cloisonnais cloisonner ver 0.03 0.61 0 0.07 ind:imp:1s; +cloisonnant cloisonner ver 0.03 0.61 0 0.07 par:pre; +cloisonne cloisonner ver 0.03 0.61 0.01 0 ind:pre:3s; +cloisonnement cloisonnement nom m s 0.01 0.68 0.01 0.47 +cloisonnements cloisonnement nom m p 0.01 0.68 0 0.2 +cloisonner cloisonner ver 0.03 0.61 0 0.07 inf; +cloisonné cloisonné adj m s 0.16 0.68 0.01 0.41 +cloisonnée cloisonné adj f s 0.16 0.68 0.14 0 +cloisonnées cloisonné adj f p 0.16 0.68 0.01 0.07 +cloisonnés cloisonner ver m p 0.03 0.61 0.01 0.14 par:pas; +cloisons cloison nom f p 2.83 18.24 1.31 5.47 +clonage clonage nom m s 1.05 0.07 1.05 0.07 +clonant cloner ver 1.31 0 0.01 0 par:pre; +clone clone nom m s 3.49 0.2 2.48 0.07 +clonent cloner ver 1.31 0 0.04 0 ind:pre:3p; +cloner cloner ver 1.31 0 0.63 0 inf; +clones clone nom m p 3.49 0.2 1.01 0.14 +clonique clonique adj f s 0.01 0 0.01 0 +cloné cloner ver m s 1.31 0 0.46 0 par:pas; +clonés cloner ver m p 1.31 0 0.09 0 par:pas; +clopais cloper ver 0.07 0.74 0.01 0 ind:imp:1s; +clopant cloper ver 0.07 0.74 0 0.14 par:pre; +clope clope nom s 11.94 4.93 7.87 2.5 +cloper cloper ver 0.07 0.74 0.03 0.34 inf; +clopes clope nom p 11.94 4.93 4.08 2.43 +clopeur clopeur nom m s 0 0.07 0 0.07 +clopin_clopant clopin_clopant adv 0 0.14 0 0.14 +clopina clopiner ver 0.12 1.01 0 0.14 ind:pas:3s; +clopinait clopiner ver 0.12 1.01 0.02 0.27 ind:imp:3s; +clopinant clopiner ver 0.12 1.01 0.05 0.41 par:pre; +clopine clopiner ver 0.12 1.01 0.02 0.07 ind:pre:3s; +clopinements clopinement nom m p 0 0.07 0 0.07 +clopiner clopiner ver 0.12 1.01 0.01 0.07 inf; +clopinettes clopinettes nom f p 0.94 0.27 0.94 0.27 +clopinez clopiner ver 0.12 1.01 0.02 0 imp:pre:2p;ind:pre:2p; +clopinâmes clopiner ver 0.12 1.01 0 0.07 ind:pas:1p; +cloporte cloporte nom m s 0.7 2.97 0.13 1.55 +cloportes cloporte nom m p 0.7 2.97 0.57 1.42 +cloquait cloquer ver 0 3.99 0 0.2 ind:imp:3s; +cloquant cloquer ver 0 3.99 0 0.07 par:pre; +cloque cloque nom f s 1.43 3.45 1.14 1.89 +cloquent cloquer ver 0 3.99 0 0.07 ind:pre:3p; +cloquer cloquer ver 0 3.99 0 0.74 inf; +cloques cloque nom f p 1.43 3.45 0.28 1.55 +cloqué cloquer ver m s 0 3.99 0 1.35 par:pas; +cloquée cloquer ver f s 0 3.99 0 0.34 par:pas; +cloquées cloquer ver f p 0 3.99 0 0.07 par:pas; +cloqués cloqué adj m p 0 0.27 0 0.14 +clora clore ver 7.75 31.28 0.01 0 ind:fut:3s; +clore clore ver 7.75 31.28 1.42 2.57 inf; +clos clore ver m 7.75 31.28 3.7 21.96 imp:pre:2s;ind:pre:1s;par:pas;par:pas; +close clore ver f s 7.75 31.28 2.26 3.24 par:pas;par:pas;sub:pre:1s;sub:pre:3s; +close_combat close_combat nom m s 0.04 0.07 0.04 0.07 +close_up close_up nom m s 0.01 0.07 0.01 0.07 +closent clore ver 7.75 31.28 0 0.14 ind:pre:3p; +closerie closerie nom f s 0.01 0.81 0.01 0.81 +closes clos adj f p 4.62 19.46 1.9 7.43 +clou clou nom m s 13.83 27.5 7.79 10.2 +cloua clouer ver 7.52 19.39 0.14 1.35 ind:pas:3s; +clouage clouage nom m s 0 0.07 0 0.07 +clouai clouer ver 7.52 19.39 0 0.2 ind:pas:1s; +clouaient clouer ver 7.52 19.39 0.23 0.54 ind:imp:3p; +clouait clouer ver 7.52 19.39 0.18 2.09 ind:imp:3s; +clouant clouer ver 7.52 19.39 0.15 0.61 par:pre; +cloue clouer ver 7.52 19.39 1.12 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clouent clouer ver 7.52 19.39 0.04 0.47 ind:pre:3p; +clouer clouer ver 7.52 19.39 1.4 2.64 ind:pre:2p;inf; +clouera clouer ver 7.52 19.39 0.04 0 ind:fut:3s; +clouerai clouer ver 7.52 19.39 0.07 0 ind:fut:1s; +cloueraient clouer ver 7.52 19.39 0.01 0.07 cnd:pre:3p; +clouerait clouer ver 7.52 19.39 0.14 0.14 cnd:pre:3s; +cloueras clouer ver 7.52 19.39 0 0.07 ind:fut:2s; +clouerez clouer ver 7.52 19.39 0.01 0 ind:fut:2p; +cloueur cloueur nom m s 0.16 0.07 0 0.07 +cloueuse cloueur nom f s 0.16 0.07 0.16 0 +clouez clouer ver 7.52 19.39 0.22 0.07 imp:pre:2p;ind:pre:2p; +clouions clouer ver 7.52 19.39 0 0.07 ind:imp:1p; +clouons clouer ver 7.52 19.39 0.03 0 imp:pre:1p;ind:pre:1p; +clous clou nom m p 13.83 27.5 6.04 17.3 +cloutage cloutage nom m s 0 0.07 0 0.07 +cloutier cloutier nom m s 0.62 0 0.62 0 +clouté clouté adj m s 0.8 3.78 0.29 1.62 +cloutée clouté adj f s 0.8 3.78 0.05 0.34 +cloutées clouté adj f p 0.8 3.78 0.14 0.54 +cloutés clouté adj m p 0.8 3.78 0.31 1.28 +clouèrent clouer ver 7.52 19.39 0 0.14 ind:pas:3p; +cloué clouer ver m s 7.52 19.39 2.4 5.54 par:pas; +clouée clouer ver f s 7.52 19.39 0.53 2.84 par:pas; +clouées clouer ver f p 7.52 19.39 0.32 0.61 par:pas; +cloués clouer ver m p 7.52 19.39 0.49 0.74 par:pas; +clown clown nom m s 0.06 9.19 0.06 6.49 +clownerie clownerie nom f s 0 0.34 0 0.07 +clowneries clownerie nom f p 0 0.34 0 0.27 +clownesque clownesque adj s 0.1 0.41 0.1 0.34 +clownesques clownesque adj p 0.1 0.41 0 0.07 +clowns clown nom m p 0.06 9.19 0 2.7 +cloîtra cloîtrer ver 0.8 2.09 0 0.07 ind:pas:3s; +cloîtrai cloîtrer ver 0.8 2.09 0 0.07 ind:pas:1s; +cloîtraient cloîtrer ver 0.8 2.09 0 0.14 ind:imp:3p; +cloîtrait cloîtrer ver 0.8 2.09 0 0.14 ind:imp:3s; +cloîtrant cloîtrer ver 0.8 2.09 0.01 0 par:pre; +cloître cloître nom m s 0.89 7.23 0.84 6.28 +cloîtrer cloîtrer ver 0.8 2.09 0.17 0.27 inf; +cloîtres cloître nom m p 0.89 7.23 0.05 0.95 +cloîtrâmes cloîtrer ver 0.8 2.09 0.01 0 ind:pas:1p; +cloîtré cloîtrer ver m s 0.8 2.09 0.22 0.54 par:pas; +cloîtrée cloîtrer ver f s 0.8 2.09 0.17 0.61 par:pas; +cloîtrées cloîtré adj f p 0.33 0.54 0.14 0.07 +cloîtrés cloîtrer ver m p 0.8 2.09 0.05 0 par:pas; +club club nom m s 67.51 21.42 61.99 18.58 +club_house club_house nom m s 0.05 0.07 0.05 0.07 +clubhouse clubhouse nom m s 0.05 0 0.05 0 +clubiste clubiste nom s 0.03 0 0.03 0 +clubman clubman nom m s 0 0.07 0 0.07 +clubs club nom m p 67.51 21.42 5.52 2.84 +clunisien clunisien adj m s 0 0.07 0 0.07 +cluse cluse nom f s 0 0.14 0 0.07 +cluses cluse nom f p 0 0.14 0 0.07 +cluster cluster nom m s 0.03 0 0.03 0 +clystère clystère nom m s 0.14 0.2 0.14 0.07 +clystères clystère nom m p 0.14 0.2 0 0.14 +clé clé nom f s 118.13 48.58 68.73 35 +clébard clébard nom m s 1.65 4.19 1.27 2.91 +clébards clébard nom m p 1.65 4.19 0.38 1.28 +clématite clématite nom f s 0.14 0.68 0.14 0.14 +clématites clématite nom f p 0.14 0.68 0 0.54 +clémence clémence nom f s 3.44 2.43 3.44 2.43 +clément clément adj m s 3.36 3.18 2.5 1.96 +clémente clément adj f s 3.36 3.18 0.47 0.88 +clémentes clément adj f p 3.36 3.18 0.07 0.14 +clémentine clémentine nom f s 0.02 0 0.02 0 +cléments clément adj m p 3.36 3.18 0.33 0.2 +clérical clérical adj m s 0.04 1.01 0.01 0.54 +cléricale clérical adj f s 0.04 1.01 0.01 0.2 +cléricales clérical adj f p 0.04 1.01 0.01 0.14 +cléricalisme cléricalisme nom m s 0 0.2 0 0.2 +cléricature cléricature nom f s 0 0.07 0 0.07 +cléricaux clérical adj m p 0.04 1.01 0 0.14 +clés clé nom f p 118.13 48.58 49.4 13.58 +clôt clore ver 7.75 31.28 0.23 1.55 ind:pre:3s; +clôtura clôturer ver 1.12 1.82 0.02 0.07 ind:pas:3s; +clôturai clôturer ver 1.12 1.82 0 0.2 ind:pas:1s; +clôturaient clôturer ver 1.12 1.82 0 0.2 ind:imp:3p; +clôturait clôturer ver 1.12 1.82 0 0.2 ind:imp:3s; +clôture clôture nom f s 6 10.68 5.34 7.84 +clôturent clôturer ver 1.12 1.82 0 0.07 ind:pre:3p; +clôturer clôturer ver 1.12 1.82 0.55 0.27 inf; +clôturera clôturer ver 1.12 1.82 0.02 0 ind:fut:3s; +clôtures clôture nom f p 6 10.68 0.66 2.84 +clôturé clôturer ver m s 1.12 1.82 0.3 0.34 par:pas; +clôturée clôturer ver f s 1.12 1.82 0.03 0.07 par:pas; +cm cm nom m 10.89 1.01 10.89 1.01 +co co adv 0.14 0 0.14 0 +co_animateur co_animateur nom m s 0.03 0 0.03 0 +co_auteur co_auteur nom m s 0.46 0 0.46 0 +co_avocat co_avocat nom m s 0.01 0 0.01 0 +co_capitaine co_capitaine nom m s 0.09 0 0.09 0 +co_dépendance co_dépendance nom f s 0.01 0 0.01 0 +co_dépendant co_dépendant adj f s 0.01 0 0.01 0 +co_existence co_existence nom f s 0 0.07 0 0.07 +co_exister co_exister ver 0.05 0 0.05 0 inf; +co_habiter co_habiter ver 0.02 0 0.02 0 inf; +co_locataire co_locataire nom s 0.22 0 0.22 0 +co_pilote co_pilote nom s 0.49 0 0.49 0 +co_pilote co_pilote adj p 0.28 0 0.01 0 +co_production co_production nom f s 0.11 0 0.01 0 +co_production co_production nom f p 0.11 0 0.1 0 +co_proprio co_proprio nom m s 0.01 0.07 0.01 0 +co_proprio co_proprio nom m p 0.01 0.07 0 0.07 +co_propriétaire co_propriétaire nom s 0.19 0.27 0.05 0 +co_propriétaire co_propriétaire nom p 0.19 0.27 0.14 0.27 +co_propriété co_propriété nom f s 0 0.34 0 0.34 +co_président co_président nom m s 0.02 0.07 0.02 0.07 +co_responsable co_responsable adj s 0.01 0.07 0.01 0.07 +co_signer co_signer ver 0.07 0 0.07 0 inf; +cosigner cosigner ver 0.32 0 0.01 0 ind:pre:1p; +co_tuteur co_tuteur nom m s 0 0.07 0 0.07 +co_vedette co_vedette nom f s 0.02 0 0.02 0 +co_voiturage co_voiturage nom m s 0.07 0 0.07 0 +co_éducatif co_éducatif adj f s 0.01 0 0.01 0 +co_équipier co_équipier nom m s 0.21 0 0.21 0 +coéquipier coéquipier nom f s 4.21 0.47 0.06 0 +coaccusé coaccusé nom m s 0.04 0 0.04 0 +coaccusés coaccusé nom m p 0.04 0 0.01 0 +coach coach nom m s 7.37 0 7.33 0 +coache coacher ver 0.23 0 0.01 0 ind:pre:3s; +coacher coacher ver 0.23 0 0.1 0 inf; +coaches coache nom m p 0.04 0 0.04 0 +coachs coach nom m p 7.37 0 0.04 0 +coaché coacher ver m s 0.23 0 0.12 0 par:pas; +coactionnaires coactionnaire nom p 0.01 0 0.01 0 +coadjuteur coadjuteur nom m s 0 0.07 0 0.07 +coagula coaguler ver 0.51 2.64 0.01 0.07 ind:pas:3s; +coagulaient coaguler ver 0.51 2.64 0 0.07 ind:imp:3p; +coagulait coaguler ver 0.51 2.64 0.01 0.34 ind:imp:3s; +coagulant coagulant adj m s 0.03 0.07 0.03 0 +coagulantes coagulant adj f p 0.03 0.07 0 0.07 +coagulants coagulant nom m p 0.15 0.07 0.14 0 +coagulation coagulation nom f s 0.33 0.27 0.33 0.27 +coagule coaguler ver 0.51 2.64 0.15 0.14 ind:pre:3s; +coagulent coaguler ver 0.51 2.64 0 0.14 ind:pre:3p; +coaguler coaguler ver 0.51 2.64 0.19 0.27 inf; +coagulera coaguler ver 0.51 2.64 0.01 0 ind:fut:3s; +coagulât coaguler ver 0.51 2.64 0 0.07 sub:imp:3s; +coagulé coaguler ver m s 0.51 2.64 0.13 0.81 par:pas; +coagulée coaguler ver f s 0.51 2.64 0 0.27 par:pas; +coagulées coaguler ver f p 0.51 2.64 0 0.07 par:pas; +coagulés coaguler ver m p 0.51 2.64 0.01 0.2 par:pas; +coalisaient coaliser ver 0 0.47 0 0.14 ind:imp:3p; +coalisent coaliser ver 0 0.47 0 0.07 ind:pre:3p; +coaliser coaliser ver 0 0.47 0 0.07 inf; +coalisée coaliser ver f s 0 0.47 0 0.07 par:pas; +coalisés coalisé nom m p 0 0.34 0 0.34 +coalition coalition nom f s 1.34 3.45 1.29 3.11 +coalitions coalition nom f p 1.34 3.45 0.05 0.34 +coaltar coaltar nom m s 0 0.2 0 0.2 +coassaient coasser ver 0.13 0.61 0 0.2 ind:imp:3p; +coassant coasser ver 0.13 0.61 0.01 0.14 par:pre; +coasse coasser ver 0.13 0.61 0.1 0 ind:pre:3s; +coassement coassement nom m s 0.14 0.41 0.01 0.34 +coassements coassement nom m p 0.14 0.41 0.14 0.07 +coassent coasser ver 0.13 0.61 0 0.14 ind:pre:3p; +coasser coasser ver 0.13 0.61 0.02 0.14 inf; +coati coati nom m s 0.01 0 0.01 0 +coauteur coauteur nom m s 0.12 0.07 0.08 0 +coauteurs coauteur nom m p 0.12 0.07 0.04 0.07 +coaxial coaxial adj m s 0.14 0 0.13 0 +coaxiales coaxial adj f p 0.14 0 0.01 0 +cob cob nom m s 0.04 0 0.04 0 +cobalt cobalt nom m s 0.55 0.61 0.55 0.61 +cobaye cobaye nom m s 4.27 0.95 3.02 0.74 +cobayes cobaye nom m p 4.27 0.95 1.25 0.2 +cobelligérants cobelligérant nom m p 0 0.07 0 0.07 +cobol cobol nom m s 0.01 0 0.01 0 +cobra cobra nom m s 4.24 0.81 3.96 0.74 +cobras cobra nom m p 4.24 0.81 0.28 0.07 +coca coca nom s 14.53 2.64 14.08 2.64 +coca_cola coca_cola nom m 0.41 1.01 0.41 1.01 +cocagne cocagne nom f s 0.56 0.81 0.56 0.74 +cocagnes cocagne nom f p 0.56 0.81 0 0.07 +cocard cocard nom m s 0.19 0.34 0.16 0.14 +cocardasse cocarder ver 0 0.2 0 0.07 sub:imp:1s; +cocarde cocarde nom f s 0.25 1.49 0.22 1.22 +cocarder cocarder ver 0 0.2 0 0.07 inf; +cocardes cocarde nom f p 0.25 1.49 0.03 0.27 +cocardier cocardier adj m s 0.02 0.41 0.01 0.14 +cocardiers cocardier adj m p 0.02 0.41 0 0.14 +cocardière cocardier adj f s 0.02 0.41 0.01 0 +cocardières cocardier adj f p 0.02 0.41 0 0.14 +cocards cocard nom m p 0.19 0.34 0.03 0.2 +cocardés cocarder ver m p 0 0.2 0 0.07 par:pas; +cocas coca nom p 14.53 2.64 0.45 0 +cocasse cocasse adj s 0.21 2.84 0.2 2.03 +cocassement cocassement adv 0 0.2 0 0.2 +cocasserie cocasserie nom f s 0.01 0.47 0.01 0.47 +cocasses cocasse adj p 0.21 2.84 0.01 0.81 +cocaïne cocaïne nom f s 5.57 1.22 5.57 1.22 +cocaïnomane cocaïnomane nom s 0.08 0.07 0.08 0.07 +coccinelle coccinelle nom f s 1.33 1.82 1.15 1.35 +coccinelles coccinelle nom f p 1.33 1.82 0.18 0.47 +coccyx coccyx nom m 0.69 0.27 0.69 0.27 +cocha cocher ver 2.15 3.24 0 0.07 ind:pas:3s; +cochait cocher ver 2.15 3.24 0.01 0.27 ind:imp:3s; +cochant cocher ver 2.15 3.24 0 0.2 par:pre; +coche coche nom s 1.23 1.89 1.23 1.69 +cochelet cochelet nom m s 0 0.07 0 0.07 +cochenille cochenille nom f s 0.09 0 0.07 0 +cochenilles cochenille nom f p 0.09 0 0.01 0 +cocher cocher nom m s 2.5 5.27 2.1 4.12 +cocheras cocher ver 2.15 3.24 0.01 0 ind:fut:2s; +cochers cocher nom m p 2.5 5.27 0.41 1.15 +coches cocher ver 2.15 3.24 0.04 0 ind:pre:2s; +cochez cocher ver 2.15 3.24 0.12 0 imp:pre:2p;ind:pre:2p; +cochléaire cochléaire adj m s 0.17 0 0.04 0 +cochléaires cochléaire adj m p 0.17 0 0.14 0 +cochlée cochlée nom f s 0.01 0 0.01 0 +cochon cochon nom m s 31.18 21.49 21.67 12.7 +cochonceté cochonceté nom f s 0.24 0.2 0.01 0 +cochoncetés cochonceté nom f p 0.24 0.2 0.23 0.2 +cochonnaille cochonnaille nom f s 0 0.47 0 0.14 +cochonnailles cochonnaille nom f p 0 0.47 0 0.34 +cochonne cochon nom f s 31.18 21.49 0.95 0.74 +cochonner cochonner ver 0.03 0.34 0.02 0 inf; +cochonnerie cochonnerie nom f s 5.25 4.05 1.22 1.01 +cochonneries cochonnerie nom f p 5.25 4.05 4.03 3.04 +cochonnes cochon adj f p 7.76 5.88 0.87 0.47 +cochonnet cochonnet nom m s 0.76 0.61 0.53 0.34 +cochonnets cochonnet nom m p 0.76 0.61 0.22 0.27 +cochonnez cochonner ver 0.03 0.34 0 0.07 ind:pre:2p; +cochonné cochonner ver m s 0.03 0.34 0.01 0.2 par:pas; +cochonnée cochonnée nom f s 0.01 0 0.01 0 +cochonnées cochonner ver f p 0.03 0.34 0 0.07 par:pas; +cochons cochon nom m p 31.18 21.49 8.5 7.91 +cochylis cochylis nom m 0 0.07 0 0.07 +cochât cocher ver 2.15 3.24 0 0.07 sub:imp:3s; +cochère cocher adj f s 0.45 6.28 0.45 5.14 +cochères cocher adj f p 0.45 6.28 0 1.15 +coché cocher ver m s 2.15 3.24 0.41 0.41 par:pas; +cochée cocher ver f s 2.15 3.24 0.01 0 par:pas; +cochées cocher ver f p 2.15 3.24 0.05 0.07 par:pas; +cochés cocher ver m p 2.15 3.24 0.01 0 par:pas; +cocker cocker nom m s 0.47 1.08 0.47 1.08 +cockney cockney nom m s 0.24 0.14 0.13 0.14 +cockneys cockney nom m p 0.24 0.14 0.11 0 +cockpit cockpit nom m s 1.93 0.88 1.93 0.88 +cocktail cocktail nom m s 10.27 9.59 6.62 5.68 +cocktails cocktail nom m p 10.27 9.59 3.65 3.92 +coco coco nom s 8.58 7.77 6.74 6.08 +cocolait cocoler ver 0 0.14 0 0.07 ind:imp:3s; +cocole cocoler ver 0 0.14 0 0.07 ind:pre:3s; +cocon cocon nom m s 1.65 3.24 1.07 2.91 +cocons cocon nom m p 1.65 3.24 0.58 0.34 +cocoon cocoon nom m s 0.09 0 0.09 0 +cocorico cocorico nom m s 1.27 1.01 1.27 0.81 +cocoricos cocorico nom m p 1.27 1.01 0.01 0.2 +cocos coco nom p 8.58 7.77 1.84 1.69 +cocotent cocoter ver 0 0.2 0 0.07 ind:pre:3p; +cocoter cocoter ver 0 0.2 0 0.07 inf; +cocoteraies cocoteraie nom f p 0 0.07 0 0.07 +cocoterait cocoter ver 0 0.2 0 0.07 cnd:pre:3s; +cocotier cocotier nom m s 0.73 2.43 0.39 0.54 +cocotiers cocotier nom m p 0.73 2.43 0.35 1.89 +cocotte cocotte nom f s 3.47 6.15 3.35 4.73 +cocotte_minute cocotte_minute nom f s 0.07 0.34 0.07 0.34 +cocottes cocotte nom f p 3.47 6.15 0.12 1.42 +coction coction nom f s 0 0.07 0 0.07 +cocu cocu nom m s 3.78 2.03 3.17 1.49 +cocuage cocuage nom m s 0 0.14 0 0.07 +cocuages cocuage nom m p 0 0.14 0 0.07 +cocue cocu adj f s 3.03 3.78 0.45 0.27 +cocues cocu adj f p 3.03 3.78 0 0.14 +cocufiant cocufier ver 0.14 0.41 0.01 0 par:pre; +cocufie cocufier ver 0.14 0.41 0.03 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cocufier cocufier ver 0.14 0.41 0.04 0.07 inf; +cocufiera cocufier ver 0.14 0.41 0.01 0 ind:fut:3s; +cocufié cocufier ver m s 0.14 0.41 0.05 0.14 par:pas; +cocus cocu nom m p 3.78 2.03 0.5 0.54 +coda coda nom f s 0.14 0.14 0.14 0.14 +codage codage nom m s 0.3 0.27 0.3 0.14 +codages codage nom m p 0.3 0.27 0 0.14 +codait coder ver 2.19 0.88 0 0.07 ind:imp:3s; +codante codant adj f s 0.01 0 0.01 0 +code code nom m s 51.27 15 43.85 13.58 +code_barre code_barre nom m s 0.07 0 0.07 0 +code_barres code_barres nom m 0.18 0 0.18 0 +code_clé code_clé nom m s 0.01 0 0.01 0 +coder coder ver 2.19 0.88 0.16 0.07 inf; +codes code nom m p 51.27 15 7.42 1.42 +codes_clé codes_clé nom m p 0.01 0 0.01 0 +codeur codeur nom m s 0.04 0 0.04 0 +codex codex nom m 0.62 0.14 0.62 0.14 +codicille codicille nom m s 0.05 0.27 0.05 0.14 +codicilles codicille nom m p 0.05 0.27 0 0.14 +codifia codifier ver 0.07 0.88 0 0.07 ind:pas:3s; +codifiait codifier ver 0.07 0.88 0.01 0 ind:imp:3s; +codifiant codifier ver 0.07 0.88 0 0.07 par:pre; +codification codification nom f s 0.15 0.07 0.15 0.07 +codifier codifier ver 0.07 0.88 0.01 0.07 inf; +codifièrent codifier ver 0.07 0.88 0 0.07 ind:pas:3p; +codifié codifier ver m s 0.07 0.88 0.01 0.27 par:pas; +codifiée codifier ver f s 0.07 0.88 0.03 0.27 par:pas; +codifiées codifier ver f p 0.07 0.88 0.01 0.07 par:pas; +codon codon nom m s 0.01 0 0.01 0 +codé codé adj m s 2.26 0.74 1.22 0.34 +codée codé adj f s 2.26 0.74 0.56 0.14 +codées coder ver f p 2.19 0.88 0.35 0 par:pas; +codéine codéine nom f s 0.21 0.07 0.21 0.07 +codés codé adj m p 2.26 0.74 0.34 0.2 +codétenu codétenu nom m s 0.17 0.2 0.13 0.07 +codétenus codétenu nom m p 0.17 0.2 0.05 0.14 +coefficient coefficient nom m s 0.99 1.22 0.81 1.08 +coefficients coefficient nom m p 0.99 1.22 0.18 0.14 +coelacanthe coelacanthe nom m s 0.06 0.07 0.06 0.07 +coeliaque coeliaque adj m s 0.01 0 0.01 0 +coentreprise coentreprise nom f s 0.03 0 0.03 0 +coenzyme coenzyme nom f s 0.03 0 0.03 0 +coercitif coercitif adj m s 0.01 0.2 0 0.07 +coercition coercition nom f s 0.48 0.14 0.48 0.14 +coercitive coercitif adj f s 0.01 0.2 0.01 0.14 +coeur coeur nom m s 239.97 400.74 224.98 380.07 +coeur_poumon coeur_poumon nom m p 0.03 0.07 0.03 0.07 +coeurs coeur nom m p 239.97 400.74 15 20.68 +coexistaient coexister ver 0.42 1.28 0 0.14 ind:imp:3p; +coexistait coexister ver 0.42 1.28 0 0.07 ind:imp:3s; +coexistant coexister ver 0.42 1.28 0 0.2 par:pre; +coexistants coexistant adj m p 0.01 0.14 0.01 0.14 +coexiste coexister ver 0.42 1.28 0.04 0.07 ind:pre:3s; +coexistence coexistence nom f s 0.49 0.41 0.49 0.41 +coexistent coexister ver 0.42 1.28 0.02 0.34 ind:pre:3p; +coexister coexister ver 0.42 1.28 0.29 0.41 inf; +coexisteront coexister ver 0.42 1.28 0 0.07 ind:fut:3p; +coexistez coexister ver 0.42 1.28 0.03 0 ind:pre:2p; +coexistons coexister ver 0.42 1.28 0.03 0 ind:pre:1p; +coexisté coexister ver m s 0.42 1.28 0.02 0 par:pas; +coffee_shop coffee_shop nom m s 0.1 0 0.1 0 +coffin coffin nom m s 0.33 0 0.33 0 +coffio coffio nom m s 0.01 0.74 0.01 0.61 +coffios coffio nom m p 0.01 0.74 0 0.14 +coffiot coffiot nom m s 0 0.34 0 0.14 +coffiots coffiot nom m p 0 0.34 0 0.2 +coffrage coffrage nom m s 0.01 0.88 0.01 0.81 +coffrages coffrage nom m p 0.01 0.88 0 0.07 +coffraient coffrer ver 7.75 0.68 0.01 0 ind:imp:3p; +coffrait coffrer ver 7.75 0.68 0.12 0 ind:imp:3s; +coffre coffre nom m s 39.35 29.32 35.97 25.14 +coffre_fort coffre_fort nom m s 4.62 3.92 4.17 3.24 +coffrent coffrer ver 7.75 0.68 0.23 0 ind:pre:3p; +coffrer coffrer ver 7.75 0.68 3.33 0.34 inf; +coffrera coffrer ver 7.75 0.68 0.05 0 ind:fut:3s; +coffrerai coffrer ver 7.75 0.68 0.03 0 ind:fut:1s; +coffrerais coffrer ver 7.75 0.68 0.01 0 cnd:pre:1s; +coffrerons coffrer ver 7.75 0.68 0.01 0 ind:fut:1p; +coffreront coffrer ver 7.75 0.68 0.29 0 ind:fut:3p; +coffres coffre nom m p 39.35 29.32 3.38 4.19 +coffre_fort coffre_fort nom m p 4.62 3.92 0.45 0.68 +coffret coffret nom m s 1.98 6.42 1.77 5.81 +coffrets coffret nom m p 1.98 6.42 0.22 0.61 +coffrez coffrer ver 7.75 0.68 0.35 0 imp:pre:2p;ind:pre:2p; +coffrons coffrer ver 7.75 0.68 0.09 0 imp:pre:1p; +coffré coffrer ver m s 7.75 0.68 1.39 0 par:pas; +coffrée coffrer ver f s 7.75 0.68 0.07 0.07 par:pas; +coffrées coffrer ver f p 7.75 0.68 0.02 0 par:pas; +coffrés coffrer ver m p 7.75 0.68 0.38 0.14 par:pas; +cofinancement cofinancement nom m s 0.01 0 0.01 0 +cofondateur cofondateur nom m s 0.29 0.07 0.25 0 +cofondateurs cofondateur nom m p 0.29 0.07 0.02 0.07 +cofondatrice cofondateur nom f s 0.29 0.07 0.01 0 +cofondé cofondé adj m s 0.01 0 0.01 0 +cogitais cogiter ver 0.7 0.54 0.01 0 ind:imp:1s; +cogitait cogiter ver 0.7 0.54 0.02 0.07 ind:imp:3s; +cogitant cogiter ver 0.7 0.54 0 0.07 par:pre; +cogitation cogitation nom f s 0.21 0.61 0.02 0.07 +cogitations cogitation nom f p 0.21 0.61 0.19 0.54 +cogite cogiter ver 0.7 0.54 0.12 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cogitent cogiter ver 0.7 0.54 0 0.07 ind:pre:3p; +cogiter cogiter ver 0.7 0.54 0.43 0.07 inf; +cogito cogito nom m s 0.01 0.34 0.01 0.34 +cogité cogiter ver m s 0.7 0.54 0.12 0.14 par:pas; +cogna cogner ver 27.01 34.26 0.13 2.09 ind:pas:3s; +cognac cognac nom m s 12.07 11.01 11.69 10.68 +cognacs cognac nom m p 12.07 11.01 0.39 0.34 +cognai cogner ver 27.01 34.26 0.01 0.2 ind:pas:1s; +cognaient cogner ver 27.01 34.26 0.08 0.88 ind:imp:3p; +cognais cogner ver 27.01 34.26 0.18 0.47 ind:imp:1s; +cognait cogner ver 27.01 34.26 0.79 4.59 ind:imp:3s; +cognant cogner ver 27.01 34.26 0.44 3.24 par:pre; +cognassier cognassier nom m s 0.5 0.27 0.1 0.2 +cognassiers cognassier nom m p 0.5 0.27 0.4 0.07 +cogne cogner ver 27.01 34.26 7.36 8.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +cognement cognement nom m s 0.03 0.2 0 0.14 +cognements cognement nom m p 0.03 0.2 0.03 0.07 +cognent cogner ver 27.01 34.26 0.48 1.22 ind:pre:3p; +cogner cogner ver 27.01 34.26 7.73 8.65 inf; +cognera cogner ver 27.01 34.26 0.05 0 ind:fut:3s; +cognerai cogner ver 27.01 34.26 0.07 0 ind:fut:1s; +cogneraient cogner ver 27.01 34.26 0.01 0 cnd:pre:3p; +cognerais cogner ver 27.01 34.26 0.05 0 cnd:pre:1s; +cognerait cogner ver 27.01 34.26 0.01 0.34 cnd:pre:3s; +cognerez cogner ver 27.01 34.26 0.04 0 ind:fut:2p; +cogneront cogner ver 27.01 34.26 0.04 0.07 ind:fut:3p; +cognes cogner ver 27.01 34.26 0.85 0.41 ind:pre:2s; +cogneur cogneur nom m s 0.48 0.47 0.24 0.34 +cogneurs cogneur nom m p 0.48 0.47 0.23 0.07 +cogneuse cogneur nom f s 0.48 0.47 0.01 0.07 +cognez cogner ver 27.01 34.26 0.42 0 imp:pre:2p;ind:pre:2p; +cognitif cognitif adj m s 0.42 0.07 0.09 0 +cognitifs cognitif adj m p 0.42 0.07 0.02 0.07 +cognition cognition nom f s 0.01 0 0.01 0 +cognitive cognitif adj f s 0.42 0.07 0.17 0 +cognitives cognitif adj f p 0.42 0.07 0.14 0 +cognons cogner ver 27.01 34.26 0.13 0.07 imp:pre:1p;ind:pre:1p; +cognèrent cogner ver 27.01 34.26 0 0.2 ind:pas:3p; +cogné cogner ver m s 27.01 34.26 6.94 2.84 par:pas; +cognée cogner ver f s 27.01 34.26 1.18 0.34 par:pas; +cognées cognée nom f p 0.25 1.55 0 0.41 +cognés cogner ver m p 27.01 34.26 0.01 0.27 par:pas; +cogérant cogérant nom m s 0.01 0 0.01 0 +cohabita cohabiter ver 1.31 1.08 0 0.07 ind:pas:3s; +cohabitaient cohabiter ver 1.31 1.08 0.11 0.41 ind:imp:3p; +cohabitait cohabiter ver 1.31 1.08 0 0.14 ind:imp:3s; +cohabitant cohabitant adj m s 0.01 0 0.01 0 +cohabitation cohabitation nom f s 0.2 1.15 0.19 1.15 +cohabitations cohabitation nom f p 0.2 1.15 0.01 0 +cohabite cohabiter ver 1.31 1.08 0.26 0.2 ind:pre:3s; +cohabitent cohabiter ver 1.31 1.08 0.15 0.14 ind:pre:3p; +cohabiter cohabiter ver 1.31 1.08 0.71 0.14 inf; +cohabiteraient cohabiter ver 1.31 1.08 0.02 0 cnd:pre:3p; +cohabitiez cohabiter ver 1.31 1.08 0.02 0 ind:imp:2p; +cohabité cohabiter ver m s 1.31 1.08 0.04 0 par:pas; +cohorte cohorte nom f s 0.78 4.53 0.49 3.31 +cohortes cohorte nom f p 0.78 4.53 0.29 1.22 +cohue cohue nom f s 0.89 7.7 0.88 7.23 +cohues cohue nom f p 0.89 7.7 0.01 0.47 +cohérence cohérence nom f s 0.46 3.51 0.46 3.45 +cohérences cohérence nom f p 0.46 3.51 0 0.07 +cohérent cohérent adj m s 1.92 4.66 1.23 2.43 +cohérente cohérent adj f s 1.92 4.66 0.52 1.35 +cohérentes cohérent adj f p 1.92 4.66 0.07 0.41 +cohérents cohérent adj m p 1.92 4.66 0.09 0.47 +cohéritier cohéritier nom m s 0.14 0.07 0.14 0 +cohéritiers cohéritier nom m p 0.14 0.07 0 0.07 +cohésion cohésion nom f s 0.47 4.59 0.47 4.59 +cohésive cohésif adj f s 0.02 0 0.02 0 +coi coi adj s 0.5 3.58 0.42 2.16 +coiffa coiffer ver 8.38 42.43 0.01 1.42 ind:pas:3s; +coiffai coiffer ver 8.38 42.43 0.14 0.34 ind:pas:1s; +coiffaient coiffer ver 8.38 42.43 0 0.47 ind:imp:3p; +coiffais coiffer ver 8.38 42.43 0.11 0.2 ind:imp:1s;ind:imp:2s; +coiffait coiffer ver 8.38 42.43 0.31 2.5 ind:imp:3s; +coiffant coiffer ver 8.38 42.43 0.04 1.28 par:pre; +coiffante coiffant adj f s 0.03 0.2 0.01 0.07 +coiffe coiffer ver 8.38 42.43 1.81 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coiffent coiffer ver 8.38 42.43 0.3 0.34 ind:pre:3p; +coiffer coiffer ver 8.38 42.43 2.67 3.99 inf; +coiffera coiffer ver 8.38 42.43 0.04 0 ind:fut:3s; +coifferais coiffer ver 8.38 42.43 0.14 0.07 cnd:pre:2s; +coifferait coiffer ver 8.38 42.43 0.01 0.14 cnd:pre:3s; +coifferas coiffer ver 8.38 42.43 0 0.07 ind:fut:2s; +coifferont coiffer ver 8.38 42.43 0.01 0 ind:fut:3p; +coiffes coiffer ver 8.38 42.43 0.61 0 ind:pre:2s; +coiffeur coiffeur nom m s 14.26 21.82 11.01 13.38 +coiffeurs coiffeur nom m p 14.26 21.82 0.78 2.7 +coiffeuse coiffeur nom f s 14.26 21.82 2.27 5.34 +coiffeuses coiffeur nom f p 14.26 21.82 0.21 0.41 +coiffez coiffer ver 8.38 42.43 0.33 0.14 imp:pre:2p;ind:pre:2p; +coiffiez coiffer ver 8.38 42.43 0.13 0.07 ind:imp:2p; +coiffure coiffure nom f s 10.46 15.81 10.09 14.05 +coiffures coiffure nom f p 10.46 15.81 0.37 1.76 +coiffât coiffer ver 8.38 42.43 0 0.07 sub:imp:3s; +coiffèrent coiffer ver 8.38 42.43 0 0.07 ind:pas:3p; +coiffé coiffer ver m s 8.38 42.43 0.63 11.62 par:pas; +coiffée coiffer ver f s 8.38 42.43 0.8 8.65 par:pas; +coiffées coiffer ver f p 8.38 42.43 0.04 2.03 par:pas; +coiffés coiffer ver m p 8.38 42.43 0.27 5.81 par:pas; +coin coin nom m s 99.51 199.26 93.43 167.09 +coin_coin coin_coin nom m s 0.19 0.34 0.19 0.34 +coin_repas coin_repas nom m s 0.02 0 0.02 0 +coince coincer ver 56.95 30.61 4.26 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +coincent coincer ver 56.95 30.61 0.47 0.34 ind:pre:3p; +coincer coincer ver 56.95 30.61 9.78 4.73 inf; +coincera coincer ver 56.95 30.61 0.98 0 ind:fut:3s; +coincerai coincer ver 56.95 30.61 0.69 0.07 ind:fut:1s; +coincerais coincer ver 56.95 30.61 0.04 0 cnd:pre:1s; +coincerait coincer ver 56.95 30.61 0.02 0.14 cnd:pre:3s; +coinceriez coincer ver 56.95 30.61 0.01 0 cnd:pre:2p; +coincerons coincer ver 56.95 30.61 0.05 0 ind:fut:1p; +coinceront coincer ver 56.95 30.61 0.09 0 ind:fut:3p; +coinces coincer ver 56.95 30.61 0.13 0.07 ind:pre:2s; +coinceur coinceur nom m s 0 0.07 0 0.07 +coincez coincer ver 56.95 30.61 0.43 0.07 imp:pre:2p;ind:pre:2p; +coincher coincher ver 0 0.07 0 0.07 inf; +coinciez coincer ver 56.95 30.61 0.01 0 ind:imp:2p; +coincèrent coincer ver 56.95 30.61 0 0.07 ind:pas:3p; +coincé coincer ver m s 56.95 30.61 23.27 10.27 par:pas; +coincée coincer ver f s 56.95 30.61 8.18 5.54 ind:imp:3p;par:pas; +coincées coincer ver f p 56.95 30.61 1.02 0.81 par:pas; +coincés coincer ver m p 56.95 30.61 7.14 2.64 par:pas; +coing coing nom m s 2.13 0.68 0.67 0.41 +coings coing nom m p 2.13 0.68 1.46 0.27 +coins coin nom m p 99.51 199.26 6.08 32.16 +coinstot coinstot nom m s 0 0.74 0 0.68 +coinstots coinstot nom m p 0 0.74 0 0.07 +coinça coincer ver 56.95 30.61 0.01 0.68 ind:pas:3s; +coinçage coinçage nom m s 0 0.27 0 0.2 +coinçages coinçage nom m p 0 0.27 0 0.07 +coinçaient coincer ver 56.95 30.61 0 0.41 ind:imp:3p; +coinçais coincer ver 56.95 30.61 0.15 0.07 ind:imp:1s; +coinçait coincer ver 56.95 30.61 0.1 1.22 ind:imp:3s; +coinçant coincer ver 56.95 30.61 0.05 0.47 par:pre; +coinçons coincer ver 56.95 30.61 0.05 0 imp:pre:1p; +coir coir nom m s 0.01 0 0.01 0 +cois coi adj p 0.5 3.58 0.08 0.61 +coite coi adj f s 0.5 3.58 0 0.68 +coites coi adj f p 0.5 3.58 0 0.14 +coke coke nom s 8.54 5.47 8.49 5.47 +cokes coke nom f p 8.54 5.47 0.05 0 +col col nom m s 9.72 57.43 8.35 51.82 +col_de_cygne col_de_cygne nom m s 0.01 0 0.01 0 +col_vert col_vert nom m s 0.12 0.14 0.12 0.07 +cola cola nom m s 0.45 0.74 0.43 0.34 +colas cola nom m p 0.45 0.74 0.01 0.41 +colback colback nom m s 0 0.47 0 0.41 +colbacks colback nom m p 0 0.47 0 0.07 +colchicine colchicine nom f s 0.13 0 0.13 0 +colchique colchique nom m s 0 0.34 0 0.07 +colchiques colchique nom m p 0 0.34 0 0.27 +colcotar colcotar nom m s 0 0.07 0 0.07 +cold cold adj m s 2.01 0.07 2.01 0.07 +cold_cream cold_cream nom m s 0.03 0.07 0.03 0.07 +colectomie colectomie nom f s 0.01 0 0.01 0 +colibacilles colibacille nom m p 0.01 0.07 0.01 0.07 +colibri colibri nom m s 0.33 0.61 0.21 0.34 +colibris colibri nom m p 0.33 0.61 0.12 0.27 +colifichet colifichet nom m s 0.32 1.08 0.22 0.07 +colifichets colifichet nom m p 0.32 1.08 0.09 1.01 +colimaçon colimaçon nom m s 0.04 1.76 0.04 1.62 +colimaçons colimaçon nom m p 0.04 1.76 0 0.14 +colin colin nom m s 0.27 0.54 0.27 0.54 +colin_maillard colin_maillard nom m s 0.93 0.95 0.93 0.95 +colique colique nom f s 1.4 2.03 1.02 0.95 +coliques colique nom f p 1.4 2.03 0.37 1.08 +colis colis nom m 7.5 10.54 7.5 10.54 +colis_cadeau colis_cadeau nom m 0.02 0 0.02 0 +colis_repas colis_repas nom m 0 0.07 0 0.07 +colistier colistier nom m s 0.02 0 0.02 0 +colite colite nom f s 0.27 0.41 0.25 0.34 +colites colite nom f p 0.27 0.41 0.02 0.07 +colla coller ver 51.31 107.16 0.26 4.66 ind:pas:3s; +collabo collabo nom s 0.62 2.43 0.33 0.88 +collabora collaborer ver 7.53 5.41 0 0.07 ind:pas:3s; +collaborai collaborer ver 7.53 5.41 0.01 0.07 ind:pas:1s; +collaboraient collaborer ver 7.53 5.41 0.03 0.07 ind:imp:3p; +collaborais collaborer ver 7.53 5.41 0.03 0.14 ind:imp:1s;ind:imp:2s; +collaborait collaborer ver 7.53 5.41 0.45 0.27 ind:imp:3s; +collaborant collaborer ver 7.53 5.41 0.18 0.2 par:pre; +collaborateur collaborateur nom m s 4.55 11.49 1.27 3.78 +collaborateurs collaborateur nom m p 4.55 11.49 2.38 6.96 +collaboration collaboration nom f s 5.12 12.5 5.11 12.43 +collaborationniste collaborationniste adj m s 0 0.2 0 0.14 +collaborationnistes collaborationniste adj m p 0 0.2 0 0.07 +collaborations collaboration nom f p 5.12 12.5 0.01 0.07 +collaboratrice collaborateur nom f s 4.55 11.49 0.89 0.47 +collaboratrices collaborateur nom f p 4.55 11.49 0.01 0.27 +collabore collaborer ver 7.53 5.41 1.09 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +collaborent collaborer ver 7.53 5.41 0.43 0.41 ind:pre:3p; +collaborer collaborer ver 7.53 5.41 2.71 2.16 inf; +collaborera collaborer ver 7.53 5.41 0.05 0.07 ind:fut:3s; +collaborerai collaborer ver 7.53 5.41 0.07 0 ind:fut:1s; +collaboreraient collaborer ver 7.53 5.41 0.01 0.07 cnd:pre:3p; +collaborerez collaborer ver 7.53 5.41 0.02 0.07 ind:fut:2p; +collaborerons collaborer ver 7.53 5.41 0.16 0 ind:fut:1p; +collabores collaborer ver 7.53 5.41 0.11 0 ind:pre:2s; +collaborez collaborer ver 7.53 5.41 0.4 0 imp:pre:2p;ind:pre:2p; +collaborions collaborer ver 7.53 5.41 0 0.07 ind:imp:1p; +collaborons collaborer ver 7.53 5.41 0.26 0 imp:pre:1p;ind:pre:1p; +collaboré collaborer ver m s 7.53 5.41 1.54 1.01 par:pas; +collabos collabo nom p 0.62 2.43 0.29 1.55 +collage collage nom m s 1.31 0.81 1.22 0.74 +collages collage nom m p 1.31 0.81 0.1 0.07 +collagène collagène nom m s 1.23 0.14 1.23 0.14 +collai coller ver 51.31 107.16 0 0.81 ind:pas:1s; +collaient coller ver 51.31 107.16 0.11 3.78 ind:imp:3p; +collais coller ver 51.31 107.16 0.24 0.34 ind:imp:1s;ind:imp:2s; +collait coller ver 51.31 107.16 2.03 13.18 ind:imp:3s; +collant collant adj m s 3.37 4.93 1.75 1.96 +collante collant adj f s 3.37 4.93 0.83 1.42 +collantes collant adj f p 3.37 4.93 0.08 0.27 +collants collant nom m p 4.28 4.46 2.6 2.03 +collapse collapser ver 0.02 0.07 0.01 0.07 imp:pre:2s;ind:pre:3s; +collapserait collapser ver 0.02 0.07 0.01 0 cnd:pre:3s; +collapsus collapsus nom m 0.17 0.14 0.17 0.14 +collas coller ver 51.31 107.16 0 0.14 ind:pas:2s; +collation collation nom f s 0.92 2.03 0.88 1.76 +collationne collationner ver 0.13 0.14 0.02 0.07 ind:pre:1s;ind:pre:3s; +collationnement collationnement nom m s 0.01 0 0.01 0 +collationner collationner ver 0.13 0.14 0.1 0 inf; +collationnés collationner ver m p 0.13 0.14 0.01 0.07 par:pas; +collations collation nom f p 0.92 2.03 0.04 0.27 +collatéral collatéral adj m s 0.66 0.34 0.33 0.07 +collatérale collatéral adj f s 0.66 0.34 0.01 0.07 +collatérales collatéral adj f p 0.66 0.34 0.01 0.07 +collatéraux collatéral adj m p 0.66 0.34 0.3 0.14 +colle coller ver 51.31 107.16 18.32 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +collectait collecter ver 2.17 1.01 0.05 0 ind:imp:3s; +collectant collecter ver 2.17 1.01 0.04 0.14 par:pre; +collecte collecte nom f s 3.13 1.49 2.88 1.28 +collecter collecter ver 2.17 1.01 1.07 0.41 inf; +collectes collecte nom f p 3.13 1.49 0.25 0.2 +collecteur collecteur nom m s 0.87 1.28 0.67 0.88 +collecteurs collecteur nom m p 0.87 1.28 0.2 0.41 +collectez collecter ver 2.17 1.01 0.01 0 imp:pre:2p; +collectif collectif nom m s 3.44 0.27 3.44 0.27 +collectifs collectif adj m p 4.6 15.68 0.27 1.35 +collection collection nom f s 16.93 25.68 16.25 21.62 +collectionna collectionner ver 5.74 5.07 0 0.07 ind:pas:3s; +collectionnaient collectionner ver 5.74 5.07 0.01 0.2 ind:imp:3p; +collectionnais collectionner ver 5.74 5.07 0.4 0.41 ind:imp:1s;ind:imp:2s; +collectionnait collectionner ver 5.74 5.07 0.7 1.28 ind:imp:3s; +collectionnant collectionner ver 5.74 5.07 0.01 0.2 par:pre; +collectionne collectionner ver 5.74 5.07 2.63 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +collectionnent collectionner ver 5.74 5.07 0.23 0.2 ind:pre:3p; +collectionner collectionner ver 5.74 5.07 0.65 1.15 inf; +collectionnes collectionner ver 5.74 5.07 0.52 0.07 ind:pre:2s; +collectionneur collectionneur nom m s 1.82 4.32 1.3 2.36 +collectionneurs collectionneur nom m p 1.82 4.32 0.36 1.76 +collectionneuse collectionneur nom f s 1.82 4.32 0.16 0.2 +collectionnez collectionner ver 5.74 5.07 0.26 0.07 imp:pre:2p;ind:pre:2p; +collectionnions collectionner ver 5.74 5.07 0 0.07 ind:imp:1p; +collectionnons collectionner ver 5.74 5.07 0.04 0 ind:pre:1p; +collectionné collectionner ver m s 5.74 5.07 0.19 0.14 par:pas; +collectionnées collectionner ver f p 5.74 5.07 0.11 0.07 par:pas; +collectionnés collectionner ver m p 5.74 5.07 0 0.14 par:pas; +collections collection nom f p 16.93 25.68 0.69 4.05 +collective collectif adj f s 4.6 15.68 1.88 7.91 +collectivement collectivement adv 0.22 0.74 0.22 0.74 +collectives collectif adj f p 4.6 15.68 0.36 1.69 +collectivisation collectivisation nom f s 0.04 0.27 0.04 0.27 +collectiviser collectiviser ver 0.19 0.14 0.05 0 inf; +collectivisme collectivisme nom m s 0.14 0.34 0.14 0.34 +collectiviste collectiviste adj s 0.01 0.2 0.01 0.2 +collectivisé collectiviser ver m s 0.19 0.14 0.14 0 par:pas; +collectivisée collectiviser ver f s 0.19 0.14 0.01 0.07 par:pas; +collectivisés collectiviser ver m p 0.19 0.14 0 0.07 par:pas; +collectivité collectivité nom f s 0.42 2.91 0.41 2.57 +collectivités collectivité nom f p 0.42 2.91 0.01 0.34 +collectons collecter ver 2.17 1.01 0.09 0 ind:pre:1p; +collector collector nom m s 0.24 0 0.24 0 +collectrice collecteur adj f s 0.01 0 0.01 0 +collecté collecter ver m s 2.17 1.01 0.35 0.2 par:pas; +collectée collecter ver f s 2.17 1.01 0.04 0.07 par:pas; +collectées collecter ver f p 2.17 1.01 0.05 0 par:pas; +collectés collecter ver m p 2.17 1.01 0.08 0.14 par:pas; +collent coller ver 51.31 107.16 1.59 2.97 ind:pre:3p; +coller coller ver 51.31 107.16 10.33 12.36 inf;; +collera coller ver 51.31 107.16 0.63 0.34 ind:fut:3s; +collerai coller ver 51.31 107.16 0.65 0.07 ind:fut:1s; +collerais coller ver 51.31 107.16 0.1 0.14 cnd:pre:1s;cnd:pre:2s; +collerait coller ver 51.31 107.16 0.22 0.41 cnd:pre:3s; +colleras coller ver 51.31 107.16 0.03 0 ind:fut:2s; +collerette collerette nom f s 0.04 2.09 0.04 1.62 +collerettes collerette nom f p 0.04 2.09 0 0.47 +collerez coller ver 51.31 107.16 0.06 0 ind:fut:2p; +colleront coller ver 51.31 107.16 0.37 0 ind:fut:3p; +colles coller ver 51.31 107.16 1.56 0.41 ind:pre:2s;sub:pre:2s; +collet collet nom m s 1.11 3.72 1.08 2.57 +colletage colletage nom m s 0 0.07 0 0.07 +colleter colleter ver 0.07 0.95 0.03 0.41 inf; +colletin colletin nom m s 0 0.14 0 0.14 +collets collet nom m p 1.11 3.72 0.03 1.15 +collette colleter ver 0.07 0.95 0.01 0.14 imp:pre:2s;ind:pre:3s; +colleté colleter ver m s 0.07 0.95 0.03 0.27 par:pas; +colletés colleter ver m p 0.07 0.95 0 0.14 par:pas; +colleur colleur nom m s 0.11 0.34 0.11 0 +colleurs colleur nom m p 0.11 0.34 0 0.34 +colleuse colleuse nom f s 0.01 0 0.01 0 +colley colley nom m s 0.28 0 0.27 0 +colleys colley nom m p 0.28 0 0.01 0 +collez coller ver 51.31 107.16 1.68 0.27 imp:pre:2p;ind:pre:2p; +collier collier nom m s 19.91 20 17.79 14.8 +colliers collier nom m p 19.91 20 2.13 5.2 +colliez coller ver 51.31 107.16 0.05 0 ind:imp:2p; +collignon collignon nom m s 2.54 0.2 2.54 0.2 +collimateur collimateur nom m s 0.69 0.81 0.69 0.81 +collimation collimation nom f s 0 0.07 0 0.07 +colline colline nom f s 26.39 55.61 15.61 30.07 +collines colline nom f p 26.39 55.61 10.79 25.54 +collions coller ver 51.31 107.16 0.01 0.34 ind:imp:1p; +collision collision nom f s 3.91 2.23 3.53 1.76 +collisions collision nom f p 3.91 2.23 0.38 0.47 +collodion collodion nom m s 0.03 0.14 0.03 0.14 +collons coller ver 51.31 107.16 0.14 0.14 imp:pre:1p;ind:pre:1p; +colloquant colloquer ver 0 0.54 0 0.07 par:pre; +colloque colloque nom m s 0.7 2.23 0.58 1.55 +colloquer colloquer ver 0 0.54 0 0.2 inf; +colloques colloque nom m p 0.7 2.23 0.12 0.68 +colloqué colloquer ver m s 0 0.54 0 0.2 par:pas; +colloquée colloquer ver f s 0 0.54 0 0.07 par:pas; +colloïdale colloïdal adj f s 0.01 0 0.01 0 +colloïde colloïde nom m s 0 0.07 0 0.07 +collure collure nom f s 0.03 0 0.03 0 +collusion collusion nom f s 0.1 0.74 0.1 0.54 +collusions collusion nom f p 0.1 0.74 0 0.2 +collutoire collutoire nom m s 0 0.07 0 0.07 +collyre collyre nom m s 0.5 0.47 0.5 0.27 +collyres collyre nom m p 0.5 0.47 0 0.2 +collège collège nom m s 11.58 26.82 11.3 25 +collèges collège nom m p 11.58 26.82 0.28 1.82 +collègue collègue nom s 38.93 32.09 18.22 12.16 +collègues collègue nom p 38.93 32.09 20.72 19.93 +collèrent coller ver 51.31 107.16 0 0.34 ind:pas:3p; +collé coller ver m s 51.31 107.16 6.66 20.41 par:pas; +collée coller ver f s 51.31 107.16 2.39 11.28 par:pas; +collées coller ver f p 51.31 107.16 1.19 7.57 par:pas; +collégial collégial adj m s 0.2 0.34 0.14 0 +collégiale collégial adj f s 0.2 0.34 0.05 0.27 +collégiales collégial adj f p 0.2 0.34 0 0.07 +collégialité collégialité nom f s 0 0.14 0 0.14 +collégiaux collégial adj m p 0.2 0.34 0.01 0 +collégien collégien nom m s 0.89 4.66 0.3 1.89 +collégienne collégien nom f s 0.89 4.66 0.26 0.61 +collégiennes collégien nom f p 0.89 4.66 0.05 0.41 +collégiens collégien nom m p 0.89 4.66 0.28 1.76 +collés coller ver m p 51.31 107.16 2.21 11.15 par:pas; +colmatage colmatage nom m s 0.03 0.07 0.03 0.07 +colmataient colmater ver 1.51 1.76 0 0.07 ind:imp:3p; +colmatais colmater ver 1.51 1.76 0 0.07 ind:imp:1s; +colmatait colmater ver 1.51 1.76 0 0.27 ind:imp:3s; +colmatant colmater ver 1.51 1.76 0.01 0.07 par:pre; +colmate colmater ver 1.51 1.76 0.31 0.2 imp:pre:2s;ind:pre:3s; +colmater colmater ver 1.51 1.76 0.56 0.47 inf; +colmatez colmater ver 1.51 1.76 0.01 0 imp:pre:2p; +colmatons colmater ver 1.51 1.76 0.01 0 imp:pre:1p; +colmaté colmater ver m s 1.51 1.76 0.14 0.2 par:pas; +colmatée colmater ver f s 1.51 1.76 0.27 0.2 par:pas; +colmatées colmater ver f p 1.51 1.76 0.2 0.14 par:pas; +colmatés colmater ver m p 1.51 1.76 0 0.07 par:pas; +colo colo nom f s 1.11 2.91 1.1 2.77 +colocataire colocataire nom s 4.88 0.07 3.91 0 +colocataires colocataire nom p 4.88 0.07 0.97 0.07 +colocation colocation nom f s 0.23 0.07 0.23 0.07 +colombages colombage nom m p 0 0.68 0 0.68 +colombe colombe nom f s 6.84 5.34 5.08 3.51 +colombelle colombelle nom f s 0 1.22 0 1.22 +colombes colombe nom f p 6.84 5.34 1.76 1.82 +colombien colombien adj m s 0.64 0.14 0.29 0 +colombienne colombien nom f s 1.17 0.14 0.23 0.14 +colombiens colombien nom m p 1.17 0.14 0.75 0 +colombier colombier nom m s 0.12 1.49 0.12 1.35 +colombiers colombier nom m p 0.12 1.49 0 0.14 +colombin colombin nom m s 0.01 0.61 0.01 0.14 +colombine colombin adj f s 0.02 0.34 0.01 0.27 +colombines colombin adj f p 0.02 0.34 0 0.07 +colombins colombin nom m p 0.01 0.61 0 0.47 +colombo colombo nom m s 0 0.07 0 0.07 +colombophile colombophile adj s 0.27 0.34 0.27 0.34 +colombophilie colombophilie nom f s 0.14 0.07 0.14 0.07 +colon colon nom m s 2.79 4.05 1.21 0.88 +colonel colonel nom m s 103.7 47.03 102.86 42.91 +colonelle colonel nom f s 103.7 47.03 0.14 1.82 +colonels colonel nom m p 103.7 47.03 0.71 2.3 +colonial colonial adj m s 2.85 12.7 1.12 4.32 +coloniale colonial adj f s 2.85 12.7 1.11 5.34 +coloniales colonial adj f p 2.85 12.7 0.31 1.49 +colonialisme colonialisme nom m s 0.34 0.74 0.34 0.68 +colonialismes colonialisme nom m p 0.34 0.74 0 0.07 +colonialiste colonialiste nom s 0.26 0.07 0.1 0 +colonialistes colonialiste nom p 0.26 0.07 0.16 0.07 +coloniaux colonial adj m p 2.85 12.7 0.3 1.55 +colonie colonie nom f s 8.75 19.05 5.53 10.34 +colonies colonie nom f p 8.75 19.05 3.22 8.72 +colonisait coloniser ver 0.6 1.62 0 0.14 ind:imp:3s; +colonisateur colonisateur nom m s 0.01 0.2 0 0.14 +colonisateurs colonisateur nom m p 0.01 0.2 0.01 0.07 +colonisation colonisation nom f s 0.71 0.68 0.71 0.61 +colonisations colonisation nom f p 0.71 0.68 0 0.07 +colonisatrice colonisateur adj f s 0.01 0.14 0.01 0.14 +colonise coloniser ver 0.6 1.62 0.01 0.14 ind:pre:3s; +colonisent coloniser ver 0.6 1.62 0.04 0 ind:pre:3p; +coloniser coloniser ver 0.6 1.62 0.22 0.41 inf; +coloniserait coloniser ver 0.6 1.62 0.01 0 cnd:pre:3s; +colonisez coloniser ver 0.6 1.62 0.01 0 ind:pre:2p; +colonisons coloniser ver 0.6 1.62 0.02 0 imp:pre:1p;ind:pre:1p; +colonisèrent coloniser ver 0.6 1.62 0.02 0.07 ind:pas:3p; +colonisé coloniser ver m s 0.6 1.62 0.15 0.41 par:pas; +colonisée coloniser ver f s 0.6 1.62 0.06 0.27 par:pas; +colonisées coloniser ver f p 0.6 1.62 0.02 0 par:pas; +colonisés coloniser ver m p 0.6 1.62 0.02 0.2 par:pas; +colonnade colonnade nom f s 0.17 2.84 0.15 1.15 +colonnades colonnade nom f p 0.17 2.84 0.02 1.69 +colonne colonne nom f s 11.95 50.07 9.24 25.95 +colonnes colonne nom f p 11.95 50.07 2.71 24.12 +colonnette colonnette nom f s 0 1.82 0 0.74 +colonnettes colonnette nom f p 0 1.82 0 1.08 +colonoscopie colonoscopie nom f s 0.01 0 0.01 0 +colons colon nom m p 2.79 4.05 1.58 3.18 +colopathie colopathie nom f s 0.01 0 0.01 0 +colophane colophane nom f s 0.28 0.2 0.28 0.2 +colophané colophaner ver m s 0.1 0 0.1 0 par:pas; +coloquinte coloquinte nom f s 0 0.27 0 0.14 +coloquintes coloquinte nom f p 0 0.27 0 0.14 +colora colorer ver 1.1 9.39 0 0.81 ind:pas:3s; +colorai colorer ver 1.1 9.39 0 0.07 ind:pas:1s; +coloraient colorer ver 1.1 9.39 0 0.54 ind:imp:3p; +colorait colorer ver 1.1 9.39 0 1.55 ind:imp:3s; +colorant colorant nom m s 0.42 0.47 0.33 0.2 +colorantes colorant adj f p 0.2 0.14 0 0.07 +colorants colorant nom m p 0.42 0.47 0.09 0.27 +coloration coloration nom f s 0.67 1.49 0.65 1.15 +colorations coloration nom f p 0.67 1.49 0.01 0.34 +colorature colorature nom f s 0.14 0.14 0.14 0.14 +colore colorer ver 1.1 9.39 0.13 1.01 imp:pre:2s;ind:pre:3s; +colorectal colorectal adj m s 0.01 0 0.01 0 +colorent colorer ver 1.1 9.39 0.14 0.41 ind:pre:3p; +colorer colorer ver 1.1 9.39 0.16 0.68 inf; +colorez colorer ver 1.1 9.39 0.01 0.07 imp:pre:2p; +coloriage coloriage nom m s 0.49 0.34 0.31 0.27 +coloriages coloriage nom m p 0.49 0.34 0.18 0.07 +coloriaient colorier ver 1.1 5.41 0 0.07 ind:imp:3p; +coloriait colorier ver 1.1 5.41 0.01 0.2 ind:imp:3s; +colorie colorier ver 1.1 5.41 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +colorient colorier ver 1.1 5.41 0.01 0.07 ind:pre:3p; +colorier colorier ver 1.1 5.41 0.25 0.68 inf; +coloriez colorier ver 1.1 5.41 0.17 0 imp:pre:2p;ind:pre:2p; +coloris coloris nom m 0.39 1.62 0.39 1.62 +colorisation colorisation nom f s 0.04 0 0.04 0 +coloriste coloriste nom s 0.16 0.27 0.16 0.27 +colorisé coloriser ver m s 0.02 0 0.02 0 par:pas; +colorié colorier ver m s 1.1 5.41 0.18 1.08 par:pas; +coloriée colorier ver f s 1.1 5.41 0.11 0.81 par:pas; +coloriées colorier ver f p 1.1 5.41 0.06 1.49 par:pas; +coloriés colorier ver m p 1.1 5.41 0.25 0.95 par:pas; +colorèrent colorer ver 1.1 9.39 0 0.2 ind:pas:3p; +coloré coloré adj m s 2.32 9.53 0.78 2.36 +colorée colorer ver f s 1.1 9.39 0.32 1.01 par:pas; +colorées coloré adj f p 2.32 9.53 0.6 2.36 +colorés coloré adj m p 2.32 9.53 0.78 2.7 +colos colo nom f p 1.11 2.91 0.01 0.14 +coloscopie coloscopie nom f s 0.13 0 0.13 0 +colossal colossal adj m s 1.37 9.05 0.81 4.46 +colossale colossal adj f s 1.37 9.05 0.48 2.7 +colossales colossal adj f p 1.37 9.05 0.02 1.42 +colossaux colossal adj m p 1.37 9.05 0.05 0.47 +colosse colosse nom m s 2.72 6.82 2.46 6.08 +colosses colosse nom m p 2.72 6.82 0.26 0.74 +colostomie colostomie nom f s 0.09 0 0.09 0 +colostrum colostrum nom m s 0.01 0 0.01 0 +colporta colporter ver 0.56 2.16 0 0.07 ind:pas:3s; +colportage colportage nom m s 0.01 0.14 0.01 0.14 +colportaient colporter ver 0.56 2.16 0 0.14 ind:imp:3p; +colportait colporter ver 0.56 2.16 0 0.68 ind:imp:3s; +colportant colporter ver 0.56 2.16 0.01 0.2 par:pre; +colporte colporter ver 0.56 2.16 0.08 0.14 imp:pre:2s;ind:pre:3s; +colportent colporter ver 0.56 2.16 0.03 0 ind:pre:3p; +colporter colporter ver 0.56 2.16 0.37 0.47 inf; +colportera colporter ver 0.56 2.16 0 0.07 ind:fut:3s; +colportes colporter ver 0.56 2.16 0 0.07 ind:pre:2s; +colporteur colporteur nom m s 0.53 1.42 0.38 0.54 +colporteurs colporteur nom m p 0.53 1.42 0.15 0.74 +colporteuse colporteur nom f s 0.53 1.42 0 0.14 +colportons colporter ver 0.56 2.16 0.02 0 imp:pre:1p;ind:pre:1p; +colporté colporter ver m s 0.56 2.16 0.01 0.14 par:pas; +colportée colporter ver f s 0.56 2.16 0.01 0.14 par:pas; +colportées colporter ver f p 0.56 2.16 0.02 0.07 par:pas; +colposcopie colposcopie nom f s 0.01 0 0.01 0 +cols col nom m p 9.72 57.43 1.37 5.61 +cols_de_cygne cols_de_cygne nom m p 0 0.07 0 0.07 +col_vert col_vert nom m p 0.12 0.14 0 0.07 +colt colt nom m s 0.97 1.82 0.57 1.82 +coltin coltin nom m s 0 0.27 0 0.27 +coltina coltiner ver 1.15 3.04 0 0.14 ind:pas:3s; +coltinage coltinage nom m s 0 0.34 0 0.27 +coltinages coltinage nom m p 0 0.34 0 0.07 +coltinais coltiner ver 1.15 3.04 0.02 0.2 ind:imp:1s; +coltinait coltiner ver 1.15 3.04 0.02 0.14 ind:imp:3s; +coltinant coltiner ver 1.15 3.04 0 0.14 par:pre; +coltine coltiner ver 1.15 3.04 0.15 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coltinent coltiner ver 1.15 3.04 0.01 0.07 ind:pre:3p; +coltiner coltiner ver 1.15 3.04 0.48 1.22 inf; +coltines coltiner ver 1.15 3.04 0.23 0.14 ind:pre:2s; +coltineur coltineur nom m s 0 0.07 0 0.07 +coltinez coltiner ver 1.15 3.04 0.01 0 ind:pre:2p; +coltiné coltiner ver m s 1.15 3.04 0.18 0.2 par:pas; +coltinée coltiner ver f s 1.15 3.04 0.04 0.07 par:pas; +coltinés coltiner ver m p 1.15 3.04 0 0.14 par:pas; +colts colt nom m p 0.97 1.82 0.4 0 +columbarium columbarium nom m s 0 0.54 0 0.54 +colvert colvert nom m s 0.19 0.68 0.17 0.41 +colverts colvert nom m p 0.19 0.68 0.03 0.27 +colza colza nom m s 0.05 0.81 0.05 0.61 +colzas colza nom m p 0.05 0.81 0 0.2 +colère colère nom f s 68.9 100.07 67.91 92.77 +colères colère nom f p 68.9 100.07 0.99 7.3 +colée colée nom f s 0.01 0.07 0.01 0.07 +coléoptère coléoptère nom m s 0.64 1.49 0.38 0.61 +coléoptères coléoptère nom m p 0.64 1.49 0.27 0.88 +colérer colérer ver 0.01 0 0.01 0 inf; +coléreuse coléreux adj f s 1.05 2.64 0.32 0.54 +coléreusement coléreusement adv 0 0.07 0 0.07 +coléreux coléreux adj m 1.05 2.64 0.73 2.09 +colérique colérique adj s 0.44 0.88 0.43 0.61 +colériques colérique adj f p 0.44 0.88 0.01 0.27 +com com nom m s 40.9 0.27 40.9 0.27 +coma coma nom m s 12.66 4.93 12.58 4.86 +comac comac adj s 0.16 1.22 0.14 1.08 +comacs comac adj m p 0.16 1.22 0.01 0.14 +comanche comanche nom m s 0.36 0.07 0.36 0.07 +comandant comandant nom s 0.16 0.27 0.16 0.27 +comas coma nom m p 12.66 4.93 0.08 0.07 +comateuse comateux adj f s 0.55 1.08 0.14 0.14 +comateux comateux adj m 0.55 1.08 0.41 0.95 +combat combat nom m s 64.83 72.57 57.31 52.36 +combatif combatif adj m s 0.9 1.42 0.78 0.54 +combatifs combatif adj m p 0.9 1.42 0.05 0.07 +combative combatif adj f s 0.9 1.42 0.07 0.81 +combativité combativité nom f s 0.28 0.41 0.28 0.41 +combats combat nom m p 64.83 72.57 7.53 20.2 +combattaient combattre ver 42.89 36.35 0.31 1.62 ind:imp:3p; +combattais combattre ver 42.89 36.35 0.17 0.14 ind:imp:1s;ind:imp:2s; +combattait combattre ver 42.89 36.35 0.5 1.35 ind:imp:3s; +combattant combattant nom m s 6.28 18.31 2.49 4.46 +combattante combattant nom f s 6.28 18.31 0.22 0.54 +combattantes combattant nom f p 6.28 18.31 0.14 0.27 +combattants combattant nom m p 6.28 18.31 3.43 13.04 +combatte combattre ver 42.89 36.35 0.15 0.14 sub:pre:1s;sub:pre:3s; +combattent combattre ver 42.89 36.35 1.51 2.64 ind:pre:3p; +combattes combattre ver 42.89 36.35 0.04 0 sub:pre:2s; +combattez combattre ver 42.89 36.35 1.52 0.34 imp:pre:2p;ind:pre:2p; +combattiez combattre ver 42.89 36.35 0.11 0 ind:imp:2p; +combattions combattre ver 42.89 36.35 0.1 0.07 ind:imp:1p; +combattirent combattre ver 42.89 36.35 0.03 0.14 ind:pas:3p; +combattit combattre ver 42.89 36.35 0.05 0.2 ind:pas:3s; +combattons combattre ver 42.89 36.35 1.4 0.27 imp:pre:1p;ind:pre:1p; +combattra combattre ver 42.89 36.35 0.63 0.07 ind:fut:3s; +combattrai combattre ver 42.89 36.35 0.52 0.07 ind:fut:1s; +combattraient combattre ver 42.89 36.35 0.04 0 cnd:pre:3p; +combattrais combattre ver 42.89 36.35 0.1 0 cnd:pre:1s;cnd:pre:2s; +combattrait combattre ver 42.89 36.35 0 0.14 cnd:pre:3s; +combattras combattre ver 42.89 36.35 0.19 0 ind:fut:2s; +combattre combattre ver 42.89 36.35 20.96 17.97 inf; +combattrez combattre ver 42.89 36.35 0.19 0 ind:fut:2p; +combattriez combattre ver 42.89 36.35 0.02 0 cnd:pre:2p; +combattrons combattre ver 42.89 36.35 0.59 0 ind:fut:1p; +combattront combattre ver 42.89 36.35 0.07 0.14 ind:fut:3p; +combattu combattre ver m s 42.89 36.35 6.41 3.65 par:pas; +combattue combattre ver f s 42.89 36.35 0.22 0.27 par:pas; +combattues combattre ver f p 42.89 36.35 0.04 0.14 par:pas; +combattus combattre ver m p 42.89 36.35 0.3 0.27 par:pas; +combattît combattre ver 42.89 36.35 0.02 0.07 sub:imp:3s; +combe combe nom f s 0.07 4.59 0.07 3.99 +combes combe nom f p 0.07 4.59 0 0.61 +combette combette nom f s 0 0.14 0 0.14 +combi combi nom m s 0.69 0 0.67 0 +combien combien adv_sup 390.58 108.04 390.58 108.04 +combientième combientième adj s 0.05 0.07 0.05 0.07 +combina combiner ver 4.5 6.35 0.01 0.07 ind:pas:3s; +combinaient combiner ver 4.5 6.35 0.01 0.47 ind:imp:3p; +combinaison combinaison nom f s 14.56 17.43 11.44 10.81 +combinaisons combinaison nom f p 14.56 17.43 3.12 6.62 +combinait combiner ver 4.5 6.35 0.04 0.74 ind:imp:3s; +combinant combiner ver 4.5 6.35 0.21 0.81 par:pre; +combinard combinard nom m s 0.5 0.27 0.39 0.14 +combinards combinard nom m p 0.5 0.27 0.11 0.14 +combinat combinat nom m s 0.23 0 0.23 0 +combinatoire combinatoire adj f s 0.1 0.41 0.07 0.34 +combinatoires combinatoire adj f p 0.1 0.41 0.03 0.07 +combine combine nom f s 6.84 8.24 4.32 4.8 +combinent combiner ver 4.5 6.35 0.04 0.41 ind:pre:3p; +combiner combiner ver 4.5 6.35 1.42 1.55 inf; +combineraient combiner ver 4.5 6.35 0 0.07 cnd:pre:3p; +combinerait combiner ver 4.5 6.35 0.01 0 cnd:pre:3s; +combinerons combiner ver 4.5 6.35 0.02 0 ind:fut:1p; +combines combine nom f p 6.84 8.24 2.52 3.45 +combinez combiner ver 4.5 6.35 0.08 0 imp:pre:2p;ind:pre:2p; +combinons combiner ver 4.5 6.35 0.01 0.07 ind:pre:1p; +combiné combiner ver m s 4.5 6.35 1.5 0.88 par:pas; +combinée combiner ver f s 4.5 6.35 0.28 0.54 par:pas; +combinées combiné adj f p 0.88 1.69 0.2 0.41 +combinés combiné adj m p 0.88 1.69 0.33 0.41 +combis combi nom m p 0.69 0 0.02 0 +combisme combisme nom m s 0 0.07 0 0.07 +combla combler ver 9.37 25.34 0.03 0.61 ind:pas:3s; +comblaient combler ver 9.37 25.34 0.02 0.47 ind:imp:3p; +comblais combler ver 9.37 25.34 0.01 0.07 ind:imp:1s;ind:imp:2s; +comblait combler ver 9.37 25.34 0.06 4.12 ind:imp:3s; +comblant combler ver 9.37 25.34 0.02 0.41 par:pre; +comblants comblant adj m p 0 0.27 0 0.07 +comble comble nom m s 8.56 27.3 7.86 22.5 +comblent combler ver 9.37 25.34 0.29 0.2 ind:pre:3p; +combler combler ver 9.37 25.34 2.5 7.97 inf; +comblera combler ver 9.37 25.34 0.27 0.07 ind:fut:3s; +comblerai combler ver 9.37 25.34 0.04 0.07 ind:fut:1s; +combleraient combler ver 9.37 25.34 0 0.27 cnd:pre:3p; +comblerais combler ver 9.37 25.34 0.01 0.07 cnd:pre:1s; +comblerait combler ver 9.37 25.34 0.07 0.07 cnd:pre:3s; +comblerez combler ver 9.37 25.34 0.02 0 ind:fut:2p; +combleront combler ver 9.37 25.34 0.01 0.27 ind:fut:3p; +combles comble nom m p 8.56 27.3 0.7 4.8 +comblez combler ver 9.37 25.34 0.56 0.07 imp:pre:2p;ind:pre:2p; +comblons combler ver 9.37 25.34 0.02 0 imp:pre:1p; +comblât combler ver 9.37 25.34 0 0.07 sub:imp:3s; +comblèrent combler ver 9.37 25.34 0 0.14 ind:pas:3p; +comblé combler ver m s 9.37 25.34 2 3.58 par:pas; +comblée combler ver f s 9.37 25.34 1.12 1.89 par:pas; +comblées combler ver f p 9.37 25.34 0.04 0.27 par:pas; +comblés combler ver m p 9.37 25.34 0.49 1.55 par:pas; +combo combo nom m s 0.4 0 0.4 0 +combourgeois combourgeois nom m 0 0.07 0 0.07 +comburant comburant adj m s 0.03 0 0.03 0 +combustible combustible nom m s 1.27 1.49 1.21 1.01 +combustibles combustible nom m p 1.27 1.49 0.05 0.47 +combustion combustion nom f s 3.78 1.89 3.71 1.82 +combustions combustion nom f p 3.78 1.89 0.07 0.07 +comestibilité comestibilité nom f s 0.01 0 0.01 0 +comestible comestible adj s 1.2 2.36 1.04 1.22 +comestibles comestible adj p 1.2 2.36 0.16 1.15 +comic_book comic_book nom m s 0.08 0.07 0.01 0 +comic_book comic_book nom m p 0.08 0.07 0.07 0.07 +comice comice nom s 0 0.34 0 0.07 +comices comice nom m p 0 0.34 0 0.27 +comics comics nom m p 0.69 0.41 0.69 0.41 +comique comique adj s 4.86 13.45 4.33 10.34 +comiquement comiquement adv 0.14 1.35 0.14 1.35 +comiques comique nom p 5.17 3.92 0.94 0.41 +comitadji comitadji nom m s 0.01 0.07 0.01 0.07 +comite comite nom m s 0.05 0.14 0.05 0 +comites comite nom m p 0.05 0.14 0 0.14 +comité comité nom m s 18.72 63.65 18.34 58.99 +comités comité nom m p 18.72 63.65 0.38 4.66 +comma comma nom m s 0.03 0 0.03 0 +command command nom m s 0.44 0.07 0.44 0.07 +commanda commander ver 63.49 80.34 0.22 10.14 ind:pas:3s; +commandai commander ver 63.49 80.34 0.01 0.61 ind:pas:1s; +commandaient commander ver 63.49 80.34 0.05 1.89 ind:imp:3p; +commandais commander ver 63.49 80.34 0.47 0.61 ind:imp:1s;ind:imp:2s; +commandait commander ver 63.49 80.34 0.95 10.81 ind:imp:3s; +commandant commandant nom m s 55.24 49.8 54.31 47.64 +commandante commandant adj f s 17.32 5.14 0.13 0.07 +commandants commandant nom m p 55.24 49.8 0.93 2.16 +commande commander ver 63.49 80.34 20.5 13.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +commandement commandement nom m s 20.47 47.23 18.13 43.51 +commandements commandement nom m p 20.47 47.23 2.34 3.72 +commandent commander ver 63.49 80.34 1.14 2.64 ind:pre:3p; +commander commander ver 63.49 80.34 13.5 11.55 inf;; +commandera commander ver 63.49 80.34 0.7 0.14 ind:fut:3s; +commanderai commander ver 63.49 80.34 0.84 0.27 ind:fut:1s; +commanderait commander ver 63.49 80.34 0.04 0.2 cnd:pre:3s; +commanderas commander ver 63.49 80.34 0.28 0.14 ind:fut:2s; +commanderez commander ver 63.49 80.34 0.22 0 ind:fut:2p; +commanderie commanderie nom f s 0.14 0.14 0.14 0.07 +commanderies commanderie nom f p 0.14 0.14 0 0.07 +commanderons commander ver 63.49 80.34 0.03 0.07 ind:fut:1p; +commanderont commander ver 63.49 80.34 0.01 0.07 ind:fut:3p; +commandes commande nom f p 31.36 18.72 11.96 6.08 +commandeur commandeur nom m s 2.55 0.74 2.52 0.61 +commandeurs commandeur nom m p 2.55 0.74 0.03 0.14 +commandez commander ver 63.49 80.34 2.84 0.34 imp:pre:2p;ind:pre:2p; +commandiez commander ver 63.49 80.34 0.32 0.07 ind:imp:2p; +commandions commander ver 63.49 80.34 0.02 0.14 ind:imp:1p; +commanditaire commanditaire nom s 1.02 1.08 0.82 0.68 +commanditaires commanditaire nom p 1.02 1.08 0.2 0.41 +commandite commanditer ver 0.68 0.2 0.06 0 ind:pre:1s;ind:pre:3s; +commanditer commanditer ver 0.68 0.2 0.06 0.14 inf; +commandites commanditer ver 0.68 0.2 0.1 0 ind:pre:2s; +commandité commanditer ver m s 0.68 0.2 0.42 0 par:pas; +commanditée commanditer ver f s 0.68 0.2 0.03 0.07 par:pas; +commanditées commanditer ver f p 0.68 0.2 0.01 0 par:pas; +commando commando nom m s 5.39 6.82 4.01 3.85 +commandons commander ver 63.49 80.34 0.69 0.07 imp:pre:1p;ind:pre:1p; +commandos commando nom m p 5.39 6.82 1.38 2.97 +commando_suicide commando_suicide nom m p 0.01 0 0.01 0 +commandât commander ver 63.49 80.34 0 0.14 sub:imp:3s; +commandèrent commander ver 63.49 80.34 0 1.01 ind:pas:3p; +commandé commander ver m s 63.49 80.34 14.77 12.3 par:pas; +commandée commander ver f s 63.49 80.34 1.3 3.04 par:pas; +commandées commander ver f p 63.49 80.34 0.47 1.28 par:pas; +commandés commander ver m p 63.49 80.34 0.64 1.76 par:pas; +comme comme con 2326.08 3429.32 2326.08 3429.32 +commedia_dell_arte commedia_dell_arte nom f s 0.02 0.14 0.02 0.14 +commence commencer ver 436.83 421.89 143.51 82.5 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +commencement commencement nom m s 6.41 16.55 6.22 15.68 +commencements commencement nom m p 6.41 16.55 0.2 0.88 +commencent commencer ver 436.83 421.89 11.69 13.85 ind:pre:3p; +commencer commencer ver 436.83 421.89 92.51 42.5 inf; +commencera commencer ver 436.83 421.89 4.7 1.89 ind:fut:3s; +commencerai commencer ver 436.83 421.89 1.61 0.54 ind:fut:1s; +commenceraient commencer ver 436.83 421.89 0.04 0.68 cnd:pre:3p; +commencerais commencer ver 436.83 421.89 1.01 0.61 cnd:pre:1s;cnd:pre:2s; +commencerait commencer ver 436.83 421.89 0.37 1.82 cnd:pre:3s; +commenceras commencer ver 436.83 421.89 0.54 0.2 ind:fut:2s; +commencerez commencer ver 436.83 421.89 0.51 0.07 ind:fut:2p; +commenceriez commencer ver 436.83 421.89 0.06 0 cnd:pre:2p; +commencerions commencer ver 436.83 421.89 0.14 0 cnd:pre:1p; +commencerons commencer ver 436.83 421.89 1.55 0.14 ind:fut:1p; +commenceront commencer ver 436.83 421.89 1.02 0.61 ind:fut:3p; +commences commencer ver 436.83 421.89 16.1 2.91 ind:pre:2s;sub:pre:2s; +commencez commencer ver 436.83 421.89 17.43 2.36 imp:pre:2p;ind:pre:2p; +commenciez commencer ver 436.83 421.89 0.91 0.34 ind:imp:2p; +commencions commencer ver 436.83 421.89 0.49 1.69 ind:imp:1p; +commencèrent commencer ver 436.83 421.89 0.88 9.39 ind:pas:3p; +commencé commencer ver m s 436.83 421.89 102.62 73.99 par:pas;par:pas;par:pas; +commencée commencer ver f s 436.83 421.89 1.64 4.32 par:pas; +commencées commencer ver f p 436.83 421.89 0.05 0.74 par:pas; +commencés commencer ver m p 436.83 421.89 0.09 0.88 par:pas; +commensal commensal nom m s 0.02 0.88 0 0.27 +commensalisme commensalisme nom m s 0 0.07 0 0.07 +commensaux commensal nom m p 0.02 0.88 0.02 0.61 +commensurable commensurable adj s 0 0.14 0 0.07 +commensurables commensurable adj p 0 0.14 0 0.07 +comment comment con 558.33 241.35 558.33 241.35 +commenta commenter ver 2.7 19.93 0.04 3.04 ind:pas:3s; +commentai commenter ver 2.7 19.93 0 0.14 ind:pas:1s; +commentaient commenter ver 2.7 19.93 0 0.81 ind:imp:3p; +commentaire commentaire nom m s 13.94 20.81 8.21 8.51 +commentaires commentaire nom m p 13.94 20.81 5.73 12.3 +commentais commenter ver 2.7 19.93 0.01 0.2 ind:imp:1s;ind:imp:2s; +commentait commenter ver 2.7 19.93 0 3.45 ind:imp:3s; +commentant commenter ver 2.7 19.93 0.2 1.49 par:pre; +commentateur commentateur nom m s 0.61 1.89 0.25 0.68 +commentateurs commentateur nom m p 0.61 1.89 0.32 1.22 +commentatrice commentateur nom f s 0.61 1.89 0.04 0 +commente commenter ver 2.7 19.93 0.17 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +commentent commenter ver 2.7 19.93 0.01 0.68 ind:pre:3p; +commenter commenter ver 2.7 19.93 1.4 3.51 inf; +commentera commenter ver 2.7 19.93 0.01 0.07 ind:fut:3s; +commenterai commenter ver 2.7 19.93 0.01 0.07 ind:fut:1s; +commenterait commenter ver 2.7 19.93 0.01 0 cnd:pre:3s; +commentez commenter ver 2.7 19.93 0.52 0 imp:pre:2p;ind:pre:2p; +commentions commenter ver 2.7 19.93 0 0.34 ind:imp:1p; +commenté commenter ver m s 2.7 19.93 0.08 1.42 par:pas; +commentée commenter ver f s 2.7 19.93 0.14 0.68 par:pas; +commentées commenter ver f p 2.7 19.93 0.01 0.47 par:pas; +commentés commenter ver m p 2.7 19.93 0.1 0.47 par:pas; +commença commencer ver 436.83 421.89 3.95 51.35 ind:pas:3s; +commençai commencer ver 436.83 421.89 0.44 6.96 ind:pas:1s; +commençaient commencer ver 436.83 421.89 0.93 20.2 ind:imp:3p; +commençais commencer ver 436.83 421.89 6.38 14.73 ind:imp:1s;ind:imp:2s; +commençait commencer ver 436.83 421.89 7.69 74.66 ind:imp:3s; +commençant commencer ver 436.83 421.89 2.76 8.04 par:pre; +commençante commençant adj f s 0 1.15 0 0.74 +commençantes commençant adj f p 0 1.15 0 0.07 +commençants commençant adj m p 0 1.15 0 0.14 +commenças commencer ver 436.83 421.89 0 0.14 ind:pas:2s; +commençons commencer ver 436.83 421.89 15.2 2.3 imp:pre:1p;ind:pre:1p; +commençâmes commencer ver 436.83 421.89 0.02 0.61 ind:pas:1p; +commençât commencer ver 436.83 421.89 0 0.88 sub:imp:3s; +commerce commerce nom m s 19.57 29.93 18.55 29.05 +commercent commercer ver 1.01 1.01 0.11 0 ind:pre:3p; +commercer commercer ver 1.01 1.01 0.27 0.2 inf; +commerces commerce nom m p 19.57 29.93 1.01 0.88 +commercial commercial adj m s 13.13 9.73 8.47 4.12 +commerciale commercial adj f s 13.13 9.73 2.39 2.77 +commercialement commercialement adv 0.16 0.27 0.16 0.27 +commerciales commercial adj f p 13.13 9.73 1.03 1.55 +commercialisable commercialisable adj s 0.02 0 0.02 0 +commercialisation commercialisation nom f s 0.15 0.41 0.15 0.41 +commercialiser commercialiser ver 0.47 0.2 0.18 0.14 inf; +commercialisera commercialiser ver 0.47 0.2 0.01 0 ind:fut:3s; +commercialisé commercialiser ver m s 0.47 0.2 0.28 0.07 par:pas; +commerciaux commercial adj m p 13.13 9.73 1.24 1.28 +commerciez commercer ver 1.01 1.01 0.01 0 ind:imp:2p; +commercé commercer ver m s 1.01 1.01 0.08 0.07 par:pas; +commerçait commercer ver 1.01 1.01 0.01 0.2 ind:imp:3s; +commerçant commerçant nom m s 4.34 16.28 1.54 4.19 +commerçante commerçant nom f s 4.34 16.28 0.11 1.28 +commerçantes commerçant adj f p 0.99 2.57 0.02 0.2 +commerçants commerçant nom m p 4.34 16.28 2.69 10.81 +commerçons commercer ver 1.01 1.01 0 0.07 ind:pre:1p; +commet commettre ver 47.45 37.16 3.12 1.62 ind:pre:3s; +commets commettre ver 47.45 37.16 0.97 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +commettaient commettre ver 47.45 37.16 0.05 0.47 ind:imp:3p; +commettais commettre ver 47.45 37.16 0.06 0.41 ind:imp:1s;ind:imp:2s; +commettait commettre ver 47.45 37.16 0.09 0.88 ind:imp:3s; +commettant commettre ver 47.45 37.16 0.14 0.27 par:pre; +commettants commettant nom m p 0.02 0.07 0.01 0.07 +commette commettre ver 47.45 37.16 0.17 0.27 sub:pre:1s;sub:pre:3s; +commettent commettre ver 47.45 37.16 0.9 0.95 ind:pre:3p; +commettes commettre ver 47.45 37.16 0.04 0 sub:pre:2s; +commettez commettre ver 47.45 37.16 0.82 0 imp:pre:2p;ind:pre:2p; +commettiez commettre ver 47.45 37.16 0.06 0 ind:imp:2p; +commettions commettre ver 47.45 37.16 0 0.14 ind:imp:1p; +commettons commettre ver 47.45 37.16 0.27 0.07 imp:pre:1p;ind:pre:1p; +commettra commettre ver 47.45 37.16 0.11 0.2 ind:fut:3s; +commettrai commettre ver 47.45 37.16 0.17 0.34 ind:fut:1s; +commettraient commettre ver 47.45 37.16 0.03 0.27 cnd:pre:3p; +commettrais commettre ver 47.45 37.16 0.18 0 cnd:pre:1s;cnd:pre:2s; +commettrait commettre ver 47.45 37.16 0.23 0.27 cnd:pre:3s; +commettras commettre ver 47.45 37.16 0.33 0.07 ind:fut:2s; +commettre commettre ver 47.45 37.16 9.69 8.99 inf; +commettrez commettre ver 47.45 37.16 0.04 0 ind:fut:2p; +comminatoire comminatoire adj s 0 0.68 0 0.47 +comminatoires comminatoire adj p 0 0.68 0 0.2 +comminutive comminutif adj f s 0.01 0 0.01 0 +commirent commettre ver 47.45 37.16 0.01 0.27 ind:pas:3p; +commis commettre ver m 47.45 37.16 27.91 15.81 ind:pas:1s;par:pas;par:pas; +commis_voyageur commis_voyageur nom m s 0.05 0.41 0.05 0.2 +commis_voyageur commis_voyageur nom m p 0.05 0.41 0 0.2 +commise commettre ver f s 47.45 37.16 0.94 1.89 par:pas; +commises commettre ver f p 47.45 37.16 0.94 2.57 par:pas; +commissaire commissaire nom s 43.39 36.69 42.99 32.09 +commissaire_adjoint commissaire_adjoint nom s 0.02 0.07 0.02 0.07 +commissaire_priseur commissaire_priseur nom m s 0.06 0.81 0.06 0.61 +commissaires commissaire nom p 43.39 36.69 0.4 4.59 +commissaire_priseur commissaire_priseur nom m p 0.06 0.81 0 0.2 +commissariat commissariat nom m s 15.05 12.7 14.61 11.35 +commissariats commissariat nom m p 15.05 12.7 0.44 1.35 +commission commission nom f s 24.5 17.43 22 10.81 +commissionnaire commissionnaire nom s 0.79 1.22 0.79 0.95 +commissionnaires commissionnaire nom p 0.79 1.22 0 0.27 +commissionné commissionner ver m s 0.01 0.07 0.01 0.07 par:pas; +commissions commission nom f p 24.5 17.43 2.5 6.62 +commissurale commissural adj f s 0 0.07 0 0.07 +commissure commissure nom f s 0.02 5.41 0 2.43 +commissures commissure nom f p 0.02 5.41 0.02 2.97 +commisération commisération nom f s 0.14 2.5 0.14 2.5 +commit commettre ver 47.45 37.16 0.2 0.81 ind:pas:3s; +commode commode adj s 4.96 17.16 4.43 15.74 +commode_toilette commode_toilette nom f s 0 0.14 0 0.14 +commodes commode adj p 4.96 17.16 0.52 1.42 +commodité commodité nom f s 0.4 3.31 0.26 1.89 +commodités commodité nom f p 0.4 3.31 0.14 1.42 +commodore commodore nom m s 1 0.07 0.95 0.07 +commodores commodore nom m p 1 0.07 0.04 0 +commodément commodément adv 0.09 1.35 0.09 1.35 +commotion commotion nom f s 2.24 0.81 2.03 0.68 +commotionnerait commotionner ver 0.14 0.54 0 0.07 cnd:pre:3s; +commotionné commotionner ver m s 0.14 0.54 0.05 0.2 par:pas; +commotionnée commotionner ver f s 0.14 0.54 0.08 0.14 par:pas; +commotionnés commotionner ver m p 0.14 0.54 0.01 0.14 par:pas; +commotions commotion nom f p 2.24 0.81 0.21 0.14 +commuais commuer ver 0.47 0.54 0 0.07 ind:imp:1s; +commuant commuer ver 0.47 0.54 0 0.07 par:pre; +commuent commuer ver 0.47 0.54 0.01 0 ind:pre:3p; +commuer commuer ver 0.47 0.54 0.08 0.07 inf; +commun commun nom m s 13.98 22.77 13.84 21.49 +communal communal adj m s 1.58 9.12 0.53 6.35 +communale communal adj f s 1.58 9.12 0.71 2.36 +communales communal adj f p 1.58 9.12 0.03 0.41 +communard communard nom m s 0.1 0.88 0.1 0.14 +communards communard nom m p 0.1 0.88 0 0.74 +communautaire communautaire adj s 1.15 1.49 0.89 1.01 +communautaires communautaire adj p 1.15 1.49 0.26 0.47 +communauté communauté nom f s 23.36 12.64 22.1 10.95 +communautés communauté nom f p 23.36 12.64 1.25 1.69 +communaux communal adj m p 1.58 9.12 0.3 0 +commune commun adj f s 25.08 75.95 7.17 28.58 +communes commun adj f p 25.08 75.95 1.54 4.39 +communia communier ver 1.75 6.62 0 0.07 ind:pas:3s; +communiaient communier ver 1.75 6.62 0 0.54 ind:imp:3p; +communiais communier ver 1.75 6.62 0.11 0.34 ind:imp:1s; +communiait communier ver 1.75 6.62 0.02 0.41 ind:imp:3s; +communiant communiant nom m s 0.28 3.18 0.14 0.81 +communiante communiant nom f s 0.28 3.18 0.14 1.35 +communiantes communiant nom f p 0.28 3.18 0 0.27 +communiants communiant nom m p 0.28 3.18 0.01 0.74 +communiasse communier ver 1.75 6.62 0 0.07 sub:imp:1s; +communicabilité communicabilité nom f s 0 0.07 0 0.07 +communicable communicable adj s 0.01 0.14 0 0.07 +communicables communicable adj m p 0.01 0.14 0.01 0.07 +communicant communicant nom m s 0.03 0 0.01 0 +communicante communicant adj f s 0.1 0.61 0.03 0 +communicantes communicant adj f p 0.1 0.61 0.05 0.27 +communicants communicant adj m p 0.1 0.61 0.01 0.34 +communicateur communicateur nom m s 0.49 0 0.44 0 +communicateurs communicateur nom m p 0.49 0 0.05 0 +communicatif communicatif adj m s 0.16 2.7 0.12 1.15 +communicatifs communicatif adj m p 0.16 2.7 0 0.2 +communication communication nom f s 18.17 26.82 12.88 17.23 +communications communication nom f p 18.17 26.82 5.29 9.59 +communicative communicatif adj f s 0.16 2.7 0.04 1.35 +communie communier ver 1.75 6.62 0.42 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +communient communier ver 1.75 6.62 0.01 0.34 ind:pre:3p; +communier communier ver 1.75 6.62 0.95 2.36 inf; +communierons communier ver 1.75 6.62 0 0.07 ind:fut:1p; +communieront communier ver 1.75 6.62 0 0.07 ind:fut:3p; +communiez communier ver 1.75 6.62 0.04 0.14 imp:pre:2p;ind:pre:2p; +communion communion nom f s 5.01 13.04 4.76 11.96 +communions communion nom f p 5.01 13.04 0.26 1.08 +communiqua communiquer ver 19.09 26.49 0 1.08 ind:pas:3s; +communiquai communiquer ver 19.09 26.49 0 0.2 ind:pas:1s; +communiquaient communiquer ver 19.09 26.49 0.3 0.88 ind:imp:3p; +communiquais communiquer ver 19.09 26.49 0.07 0.14 ind:imp:1s;ind:imp:2s; +communiquait communiquer ver 19.09 26.49 0.39 2.36 ind:imp:3s; +communiquant communiquer ver 19.09 26.49 0.09 1.28 par:pre; +communiquassent communiquer ver 19.09 26.49 0 0.07 sub:imp:3p; +communique communiquer ver 19.09 26.49 3.17 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +communiquent communiquer ver 19.09 26.49 1.12 1.15 ind:pre:3p; +communiquer communiquer ver 19.09 26.49 10.78 10.61 inf;; +communiquera communiquer ver 19.09 26.49 0.21 0 ind:fut:3s; +communiquerai communiquer ver 19.09 26.49 0.08 0 ind:fut:1s; +communiqueraient communiquer ver 19.09 26.49 0.01 0.07 cnd:pre:3p; +communiquerait communiquer ver 19.09 26.49 0 0.14 cnd:pre:3s; +communiquerez communiquer ver 19.09 26.49 0.02 0 ind:fut:2p; +communiquerons communiquer ver 19.09 26.49 0.08 0.07 ind:fut:1p; +communiqueront communiquer ver 19.09 26.49 0.03 0.07 ind:fut:3p; +communiques communiquer ver 19.09 26.49 0.13 0.07 ind:pre:2s; +communiquez communiquer ver 19.09 26.49 0.82 0.07 imp:pre:2p;ind:pre:2p; +communiquiez communiquer ver 19.09 26.49 0.09 0 ind:imp:2p; +communiquions communiquer ver 19.09 26.49 0.02 0.2 ind:imp:1p; +communiquons communiquer ver 19.09 26.49 0.25 0.2 imp:pre:1p;ind:pre:1p; +communiquât communiquer ver 19.09 26.49 0 0.2 sub:imp:3s; +communiquèrent communiquer ver 19.09 26.49 0 0.14 ind:pas:3p; +communiqué communiqué nom m s 4.29 8.99 3.85 7.03 +communiquée communiquer ver f s 19.09 26.49 0.18 0.88 par:pas; +communiquées communiquer ver f p 19.09 26.49 0.08 0.07 par:pas; +communiqués communiqué nom m p 4.29 8.99 0.45 1.96 +communisant communisant adj m s 0 0.2 0 0.07 +communisants communisant adj m p 0 0.2 0 0.14 +communisme communisme nom m s 4.29 9.66 4.29 9.66 +communiste communiste adj s 13.47 22.7 10.26 16.35 +communistes communiste nom p 10.93 26.35 8.49 21.15 +communisée communiser ver f s 0 0.07 0 0.07 par:pas; +communièrent communier ver 1.75 6.62 0 0.07 ind:pas:3p; +communié communier ver m s 1.75 6.62 0.18 1.22 par:pas; +communs commun adj m p 25.08 75.95 3.83 10.81 +communément communément adv 0.54 2.5 0.54 2.5 +commutateur commutateur nom m s 0.48 2.77 0.38 2.57 +commutateurs commutateur nom m p 0.48 2.77 0.1 0.2 +commutation commutation nom f s 0.11 0.14 0.11 0.14 +commute commuter ver 0.08 0 0.04 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +commuter commuter ver 0.08 0 0.04 0 inf; +commué commuer ver m s 0.47 0.54 0.02 0 par:pas; +commuée commuer ver f s 0.47 0.54 0.36 0.34 par:pas; +commère commère nom f s 2.36 3.78 2.01 1.35 +commères commère nom f p 2.36 3.78 0.34 2.43 +commémorait commémorer ver 0.64 1.69 0 0.14 ind:imp:3s; +commémorant commémorer ver 0.64 1.69 0.04 0.27 par:pre; +commémoratif commémoratif adj m s 0.84 1.35 0.16 0.47 +commémoratifs commémoratif adj m p 0.84 1.35 0.04 0.07 +commémoration commémoration nom f s 0.45 1.22 0.42 0.95 +commémorations commémoration nom f p 0.45 1.22 0.04 0.27 +commémorative commémoratif adj f s 0.84 1.35 0.56 0.61 +commémoratives commémoratif adj f p 0.84 1.35 0.08 0.2 +commémore commémorer ver 0.64 1.69 0.04 0.34 ind:pre:3s; +commémorent commémorer ver 0.64 1.69 0.01 0.14 ind:pre:3p; +commémorer commémorer ver 0.64 1.69 0.48 0.81 inf; +commémorions commémorer ver 0.64 1.69 0.01 0 ind:imp:1p; +commémorons commémorer ver 0.64 1.69 0.04 0 ind:pre:1p; +commémoré commémorer ver m s 0.64 1.69 0.01 0 par:pas; +commérage commérage nom m s 1.54 1.28 0.18 0.14 +commérages commérage nom m p 1.54 1.28 1.36 1.15 +commérait commérer ver 0.04 0.07 0.01 0.07 ind:imp:3s; +commérer commérer ver 0.04 0.07 0.03 0 inf; +commît commettre ver 47.45 37.16 0 0.07 sub:imp:3s; +comnène comnène adj m s 0 0.07 0 0.07 +compacité compacité nom f s 0 0.2 0 0.2 +compact compact adj m s 1.56 10.47 0.62 3.24 +compactage compactage nom m s 0.01 0 0.01 0 +compacte compact adj f s 1.56 10.47 0.81 4.66 +compactes compact adj f p 1.56 10.47 0.1 0.95 +compacteur compacteur nom m s 0.13 0 0.1 0 +compacteurs compacteur nom m p 0.13 0 0.03 0 +compacts compact nom m p 0.15 0.27 0.04 0 +compacté compacter ver m s 0.15 0 0.01 0 par:pas; +compadre compadre nom m s 0.42 0 0.37 0 +compadres compadre nom m p 0.42 0 0.05 0 +compagne compagnon nom f s 22.2 80 4.9 9.32 +compagnes compagnon nom f p 22.2 80 1.12 7.5 +compagnie compagnie nom f s 73.78 97.16 68.9 90.88 +compagnies compagnie nom f p 73.78 97.16 4.88 6.28 +compagnon compagnon nom m s 22.2 80 8.4 34.26 +compagnonnage compagnonnage nom m s 0.14 0.68 0.14 0.61 +compagnonnages compagnonnage nom m p 0.14 0.68 0 0.07 +compagnonnes compagnon nom f p 22.2 80 0 0.07 +compagnons compagnon nom m p 22.2 80 7.79 28.85 +compara comparer ver 25.84 26.01 0.02 0.95 ind:pas:3s; +comparabilité comparabilité nom f s 0.01 0 0.01 0 +comparable comparable adj s 2.04 6.08 1.93 4.73 +comparables comparable adj p 2.04 6.08 0.11 1.35 +comparai comparer ver 25.84 26.01 0.01 0.14 ind:pas:1s; +comparaient comparer ver 25.84 26.01 0.02 0.68 ind:imp:3p; +comparais comparaître ver 2.52 3.31 0.17 0.34 ind:pre:1s;ind:pre:2s; +comparaison comparaison nom f s 5.25 13.72 4.84 11.35 +comparaisons comparaison nom f p 5.25 13.72 0.41 2.36 +comparaissaient comparaître ver 2.52 3.31 0 0.27 ind:imp:3p; +comparaissait comparaître ver 2.52 3.31 0.01 0 ind:imp:3s; +comparaissant comparaître ver 2.52 3.31 0 0.14 par:pre; +comparaissent comparaître ver 2.52 3.31 0.02 0 ind:pre:3p; +comparaisses comparaître ver 2.52 3.31 0.01 0 sub:pre:2s; +comparaissons comparaître ver 2.52 3.31 0.01 0 ind:pre:1p; +comparait comparer ver 25.84 26.01 0.19 3.31 ind:imp:3s; +comparant comparer ver 25.84 26.01 0.56 1.22 par:pre; +comparateur comparateur nom m s 0.03 0 0.03 0 +comparatif comparatif adj m s 0.5 0.47 0.14 0.07 +comparatifs comparatif adj m p 0.5 0.47 0.04 0.07 +comparative comparatif adj f s 0.5 0.47 0.18 0.27 +comparativement comparativement adv 0.19 0.07 0.19 0.07 +comparatives comparatif adj f p 0.5 0.47 0.14 0.07 +comparaît comparaître ver 2.52 3.31 0.19 0.14 ind:pre:3s; +comparaîtra comparaître ver 2.52 3.31 0.16 0 ind:fut:3s; +comparaîtrait comparaître ver 2.52 3.31 0.01 0.07 cnd:pre:3s; +comparaître comparaître ver 2.52 3.31 1.63 1.62 inf; +comparaîtrez comparaître ver 2.52 3.31 0.17 0 ind:fut:2p; +comparaîtrons comparaître ver 2.52 3.31 0 0.07 ind:fut:1p; +compare comparer ver 25.84 26.01 4 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +comparent comparer ver 25.84 26.01 0.14 0.34 ind:pre:3p; +comparer comparer ver 25.84 26.01 9.01 8.11 inf; +comparera comparer ver 25.84 26.01 0.21 0.14 ind:fut:3s; +comparerai comparer ver 25.84 26.01 0.05 0.07 ind:fut:1s; +comparerais comparer ver 25.84 26.01 0.04 0 cnd:pre:1s; +comparerons comparer ver 25.84 26.01 0.36 0 ind:fut:1p; +compareront comparer ver 25.84 26.01 0 0.07 ind:fut:3p; +compares comparer ver 25.84 26.01 0.69 0.07 ind:pre:2s; +comparez comparer ver 25.84 26.01 1.6 0.2 imp:pre:2p;ind:pre:2p; +compariez comparer ver 25.84 26.01 0.07 0.07 ind:imp:2p; +comparions comparer ver 25.84 26.01 0.02 0.27 ind:imp:1p; +comparoir comparoir ver 0.01 0 0.01 0 inf; +comparons comparer ver 25.84 26.01 0.17 0.14 imp:pre:1p;ind:pre:1p; +comparse comparse nom s 0.18 1.76 0.13 0.54 +comparses comparse nom p 0.18 1.76 0.05 1.22 +compartiment compartiment nom m s 6.73 13.58 5.58 10.54 +compartimentage compartimentage nom m s 0 0.07 0 0.07 +compartimentaient compartimenter ver 0.1 0.27 0 0.07 ind:imp:3p; +compartimentant compartimenter ver 0.1 0.27 0.01 0.07 par:pre; +compartimente compartimenter ver 0.1 0.27 0.01 0 imp:pre:2s; +compartimenter compartimenter ver 0.1 0.27 0.07 0 inf; +compartiments compartiment nom m p 6.73 13.58 1.15 3.04 +compartimenté compartimenté adj m s 0.02 0.2 0.02 0.14 +compartimentée compartimenter ver f s 0.1 0.27 0 0.07 par:pas; +comparu comparaître ver m s 2.52 3.31 0.13 0.41 par:pas; +comparut comparaître ver 2.52 3.31 0.02 0.27 ind:pas:3s; +comparution comparution nom f s 0.34 0.34 0.34 0.34 +comparé comparer ver m s 25.84 26.01 6.47 2.36 par:pas; +comparée comparer ver f s 25.84 26.01 1.5 2.09 par:pas; +comparées comparer ver f p 25.84 26.01 0.35 0.68 par:pas; +comparés comparer ver m p 25.84 26.01 0.28 1.28 par:pas; +compas compas nom m 1.5 2.84 1.5 2.84 +compassion compassion nom f s 10.15 7.3 10.15 7.3 +compassé compassé adj m s 0 1.76 0 0.88 +compassée compassé adj f s 0 1.76 0 0.27 +compassées compassé adj f p 0 1.76 0 0.14 +compassés compassé adj m p 0 1.76 0 0.47 +compati compatir ver m s 3.46 2.57 0.04 0.07 par:pas; +compatibilité compatibilité nom f s 0.4 0 0.4 0 +compatible compatible adj s 2.52 2.09 1.25 1.62 +compatibles compatible adj p 2.52 2.09 1.27 0.47 +compatie compatir ver f s 3.46 2.57 0.06 0 par:pas; +compatir compatir ver 3.46 2.57 0.47 0.54 inf; +compatira compatir ver 3.46 2.57 0.02 0 ind:fut:3s; +compatirait compatir ver 3.46 2.57 0.03 0 cnd:pre:3s; +compatirent compatir ver 3.46 2.57 0 0.07 ind:pas:3p; +compatis compatir ver m p 3.46 2.57 2.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +compatissaient compatir ver 3.46 2.57 0 0.07 ind:imp:3p; +compatissais compatir ver 3.46 2.57 0.05 0.2 ind:imp:1s;ind:imp:2s; +compatissait compatir ver 3.46 2.57 0.02 0.14 ind:imp:3s; +compatissant compatissant adj m s 1.59 3.18 1.01 1.35 +compatissante compatissant adj f s 1.59 3.18 0.39 0.88 +compatissantes compatissant adj f p 1.59 3.18 0.07 0.2 +compatissants compatissant adj m p 1.59 3.18 0.11 0.74 +compatisse compatir ver 3.46 2.57 0.02 0 sub:pre:1s;sub:pre:3s; +compatissent compatir ver 3.46 2.57 0.01 0.14 ind:pre:3p; +compatissez compatir ver 3.46 2.57 0.1 0.14 imp:pre:2p;ind:pre:2p; +compatissons compatir ver 3.46 2.57 0.14 0.07 imp:pre:1p;ind:pre:1p; +compatit compatir ver 3.46 2.57 0.41 0.54 ind:pre:3s;ind:pas:3s; +compatriote compatriote nom s 4.76 9.05 1.48 2.23 +compatriotes compatriote nom p 4.76 9.05 3.29 6.82 +compendium compendium nom m s 0.01 0.07 0.01 0 +compendiums compendium nom m p 0.01 0.07 0 0.07 +compensa compenser ver 4.59 9.32 0.01 0.2 ind:pas:3s; +compensaient compenser ver 4.59 9.32 0.01 0.54 ind:imp:3p; +compensais compenser ver 4.59 9.32 0 0.07 ind:imp:1s; +compensait compenser ver 4.59 9.32 0.04 1.08 ind:imp:3s; +compensant compenser ver 4.59 9.32 0.02 0.41 par:pre; +compensateur compensateur adj m s 0.12 0 0.05 0 +compensateurs compensateur adj m p 0.12 0 0.06 0 +compensation compensation nom f s 3.33 5.81 2.83 4.39 +compensations compensation nom f p 3.33 5.81 0.49 1.42 +compensatoire compensatoire adj s 0.02 0.34 0.02 0.34 +compense compenser ver 4.59 9.32 0.99 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compensent compenser ver 4.59 9.32 0.26 0.2 ind:pre:3p; +compenser compenser ver 4.59 9.32 2.06 3.99 inf; +compensera compenser ver 4.59 9.32 0.32 0 ind:fut:3s; +compenserais compenser ver 4.59 9.32 0.01 0 cnd:pre:2s; +compenserait compenser ver 4.59 9.32 0.17 0.41 cnd:pre:3s; +compensez compenser ver 4.59 9.32 0.28 0 imp:pre:2p;ind:pre:2p; +compensât compenser ver 4.59 9.32 0 0.14 sub:imp:3s; +compensèrent compenser ver 4.59 9.32 0 0.07 ind:pas:3p; +compensé compenser ver m s 4.59 9.32 0.31 0.61 par:pas; +compensée compenser ver f s 4.59 9.32 0.06 0.68 par:pas; +compensées compensé adj f p 0.21 0.95 0.04 0.61 +compensés compensé adj m p 0.21 0.95 0.13 0 +compil compil nom f s 0.19 0 0.19 0 +compilant compiler ver 0.58 0.54 0.14 0.27 par:pre; +compilateur compilateur nom m s 0.08 0.14 0.08 0.14 +compilation compilation nom f s 0.29 0.47 0.26 0.34 +compilations compilation nom f p 0.29 0.47 0.03 0.14 +compile compiler ver 0.58 0.54 0.09 0.07 imp:pre:2s;ind:pre:3s; +compiler compiler ver 0.58 0.54 0.23 0 inf; +compilons compiler ver 0.58 0.54 0.01 0 ind:pre:1p; +compilé compiler ver m s 0.58 0.54 0.11 0.07 par:pas; +compilées compiler ver f p 0.58 0.54 0.02 0.14 par:pas; +compissait compisser ver 0.01 0.27 0 0.07 ind:imp:3s; +compisse compisser ver 0.01 0.27 0.01 0.07 ind:pre:1s;ind:pre:3s; +compisser compisser ver 0.01 0.27 0 0.07 inf; +compissé compisser ver m s 0.01 0.27 0 0.07 par:pas; +complainte complainte nom f s 0.66 2.3 0.61 1.62 +complaintes complainte nom f p 0.66 2.3 0.04 0.68 +complairait complaire ver 0.93 4.19 0 0.14 cnd:pre:3s; +complaire complaire ver 0.93 4.19 0.19 1.08 inf; +complais complaire ver 0.93 4.19 0.34 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +complaisaient complaire ver 0.93 4.19 0 0.14 ind:imp:3p; +complaisais complaire ver 0.93 4.19 0 0.14 ind:imp:1s; +complaisait complaire ver 0.93 4.19 0 0.68 ind:imp:3s; +complaisamment complaisamment adv 0.01 3.18 0.01 3.18 +complaisance complaisance nom f s 0.94 11.22 0.8 10 +complaisances complaisance nom f p 0.94 11.22 0.14 1.22 +complaisant complaisant adj m s 0.61 4.93 0.42 1.82 +complaisante complaisant adj f s 0.61 4.93 0.03 1.96 +complaisantes complaisant adj f p 0.61 4.93 0 0.27 +complaisants complaisant adj m p 0.61 4.93 0.16 0.88 +complaise complaire ver 0.93 4.19 0 0.14 sub:pre:3s; +complaisent complaire ver 0.93 4.19 0.02 0.2 ind:pre:3p; +complaisez complaire ver 0.93 4.19 0.06 0.07 ind:pre:2p; +complaisiez complaire ver 0.93 4.19 0 0.14 ind:imp:2p; +complaît complaire ver 0.93 4.19 0.16 0.47 ind:pre:3s; +complet complet adj m s 29.19 44.12 17.76 20.61 +complet_veston complet_veston nom m s 0 0.54 0 0.54 +complets complet adj m p 29.19 44.12 1.68 2.03 +complexait complexer ver 0.42 0.68 0 0.07 ind:imp:3s; +complexe complexe adj s 8.62 8.51 6.7 5.68 +complexer complexer ver 0.42 0.68 0.17 0.14 inf; +complexes complexe adj p 8.62 8.51 1.92 2.84 +complexion complexion nom f s 0.02 0.68 0.02 0.68 +complexité complexité nom f s 1.28 2.64 0.92 2.64 +complexités complexité nom f p 1.28 2.64 0.36 0 +complexé complexer ver m s 0.42 0.68 0.11 0.14 par:pas; +complexée complexé adj f s 0.12 0.41 0.05 0 +complexés complexer ver m p 0.42 0.68 0.03 0 par:pas; +complication complication nom f s 4.59 8.38 1.01 3.24 +complications complication nom f p 4.59 8.38 3.58 5.14 +complice complice nom s 14.41 14.73 9.22 7.64 +complices complice nom p 14.41 14.73 5.19 7.09 +complicité complicité nom f s 5.61 24.46 5.2 22.03 +complicités complicité nom f p 5.61 24.46 0.42 2.43 +complies complies nom f p 0.09 0.95 0.09 0.95 +compliment compliment nom m s 17.18 15 8.29 5.54 +complimenta complimenter ver 1.22 1.55 0 0.07 ind:pas:3s; +complimentaient complimenter ver 1.22 1.55 0 0.14 ind:imp:3p; +complimentais complimenter ver 1.22 1.55 0.04 0.07 ind:imp:1s; +complimentait complimenter ver 1.22 1.55 0.03 0.2 ind:imp:3s; +complimentant complimenter ver 1.22 1.55 0.03 0.07 par:pre; +complimente complimenter ver 1.22 1.55 0.25 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +complimentent complimenter ver 1.22 1.55 0.01 0.07 ind:pre:3p; +complimenter complimenter ver 1.22 1.55 0.68 0.2 inf;; +complimenteraient complimenter ver 1.22 1.55 0 0.14 cnd:pre:3p; +complimentez complimenter ver 1.22 1.55 0.05 0 imp:pre:2p; +compliments compliment nom m p 17.18 15 8.89 9.46 +complimentât complimenter ver 1.22 1.55 0 0.07 sub:imp:3s; +complimenté complimenter ver m s 1.22 1.55 0.08 0.14 par:pas; +complimentée complimenter ver f s 1.22 1.55 0.05 0.2 par:pas; +compliqua compliquer ver 22.3 18.85 0.11 0.14 ind:pas:3s; +compliquaient compliquer ver 22.3 18.85 0.15 0.95 ind:imp:3p; +compliquais compliquer ver 22.3 18.85 0 0.07 ind:imp:1s; +compliquait compliquer ver 22.3 18.85 0.02 0.81 ind:imp:3s; +compliquant compliquer ver 22.3 18.85 0 0.47 par:pre; +complique compliquer ver 22.3 18.85 4.74 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compliquent compliquer ver 22.3 18.85 0.4 0.47 ind:pre:3p; +compliquer compliquer ver 22.3 18.85 1.91 2.7 inf; +compliquera compliquer ver 22.3 18.85 0.02 0.07 ind:fut:3s; +compliquerai compliquer ver 22.3 18.85 0.11 0 ind:fut:1s; +compliquerait compliquer ver 22.3 18.85 0.02 0.34 cnd:pre:3s; +compliques compliquer ver 22.3 18.85 0.68 0.41 ind:pre:2s; +compliquez compliquer ver 22.3 18.85 0.9 0.14 imp:pre:2p;ind:pre:2p; +compliquions compliquer ver 22.3 18.85 0 0.07 ind:imp:1p; +compliquons compliquer ver 22.3 18.85 0.51 0.14 imp:pre:1p;ind:pre:1p; +compliquèrent compliquer ver 22.3 18.85 0 0.07 ind:pas:3p; +compliqué compliqué adj m s 23.51 24.46 17.17 12.91 +compliquée compliqué adj f s 23.51 24.46 4.44 5.07 +compliquées compliqué adj f p 23.51 24.46 0.95 3.04 +compliqués compliqué adj m p 23.51 24.46 0.94 3.45 +complot complot nom m s 10.45 6.49 9.82 4.8 +complotai comploter ver 3.68 2.5 0 0.07 ind:pas:1s; +complotaient comploter ver 3.68 2.5 0.26 0.14 ind:imp:3p; +complotais comploter ver 3.68 2.5 0.01 0 ind:imp:2s; +complotait comploter ver 3.68 2.5 0.04 0.47 ind:imp:3s; +complotant comploter ver 3.68 2.5 0.19 0.14 par:pre; +complote comploter ver 3.68 2.5 0.61 0.47 ind:pre:1s;ind:pre:3s; +complotent comploter ver 3.68 2.5 0.32 0.14 ind:pre:3p; +comploter comploter ver 3.68 2.5 0.71 0.54 inf;; +comploteraient comploter ver 3.68 2.5 0.01 0 cnd:pre:3p; +comploterait comploter ver 3.68 2.5 0.01 0 cnd:pre:3s; +complotes comploter ver 3.68 2.5 0.2 0 ind:pre:2s; +comploteur comploteur nom m s 0.19 0.34 0.16 0.14 +comploteurs comploteur nom m p 0.19 0.34 0.01 0.2 +comploteuse comploteur nom f s 0.19 0.34 0.01 0 +complotez comploter ver 3.68 2.5 0.63 0.14 imp:pre:2p;ind:pre:2p; +complotiez comploter ver 3.68 2.5 0.15 0 ind:imp:2p; +complotons comploter ver 3.68 2.5 0 0.14 ind:pre:1p; +complots complot nom m p 10.45 6.49 0.63 1.69 +complotèrent comploter ver 3.68 2.5 0.01 0 ind:pas:3p; +comploté comploter ver m s 3.68 2.5 0.53 0.27 par:pas; +complu complu adj m s 0 0.47 0 0.47 +complus complaire ver 0.93 4.19 0 0.07 ind:pas:1s; +complut complaire ver 0.93 4.19 0 0.14 ind:pas:3s; +complète complet adj f s 29.19 44.12 8.84 18.18 +complètement complètement adv 105.33 81.49 105.33 81.49 +complètements complètement nom m p 0.16 0 0.06 0 +complètent compléter ver 4.89 14.39 0.37 0.41 ind:pre:3p; +complètes complet adj f p 29.19 44.12 0.92 3.31 +complément complément nom m s 1.25 3.51 0.96 2.77 +complémentaire complémentaire adj s 0.81 3.51 0.47 1.55 +complémentairement complémentairement adv 0 0.14 0 0.14 +complémentaires complémentaire adj p 0.81 3.51 0.34 1.96 +complémentarité complémentarité nom f s 0.03 0.14 0.03 0.14 +compléments complément nom m p 1.25 3.51 0.28 0.74 +compléta compléter ver 4.89 14.39 0 1.69 ind:pas:3s; +complétai compléter ver 4.89 14.39 0 0.14 ind:pas:1s; +complétaient compléter ver 4.89 14.39 0.01 1.15 ind:imp:3p; +complétais compléter ver 4.89 14.39 0.01 0.07 ind:imp:1s; +complétait compléter ver 4.89 14.39 0.21 1.49 ind:imp:3s; +complétant compléter ver 4.89 14.39 0.03 0.54 par:pre; +compléter compléter ver 4.89 14.39 2.02 4.46 inf; +complétera compléter ver 4.89 14.39 0.02 0.2 ind:fut:3s; +compléterai compléter ver 4.89 14.39 0.02 0 ind:fut:1s; +compléteraient compléter ver 4.89 14.39 0 0.14 cnd:pre:3p; +compléterait compléter ver 4.89 14.39 0.01 0.14 cnd:pre:3s; +compléteras compléter ver 4.89 14.39 0 0.07 ind:fut:2s; +compléterez compléter ver 4.89 14.39 0.01 0.07 ind:fut:2p; +compléteront compléter ver 4.89 14.39 0.01 0 ind:fut:3p; +complétez compléter ver 4.89 14.39 0.18 0 imp:pre:2p;ind:pre:2p; +complétiez compléter ver 4.89 14.39 0.01 0.07 ind:imp:2p; +complétons compléter ver 4.89 14.39 0.14 0 imp:pre:1p;ind:pre:1p; +complétude complétude nom f s 0.14 0.07 0.14 0.07 +complétèrent compléter ver 4.89 14.39 0 0.14 ind:pas:3p; +complété compléter ver m s 4.89 14.39 0.45 1.42 par:pas; +complétée compléter ver f s 4.89 14.39 0.11 0.68 par:pas; +complétées compléter ver f p 4.89 14.39 0.01 0.34 par:pas; +complétés compléter ver m p 4.89 14.39 0.12 0.2 par:pas; +compo compo nom f s 0.06 1.35 0.06 1.35 +componction componction nom f s 0.01 1.76 0.01 1.76 +components component nom m p 0.01 0.07 0.01 0.07 +comporta comporter ver 24.59 30.54 0.41 0.47 ind:pas:3s; +comportai comporter ver 24.59 30.54 0.01 0.07 ind:pas:1s; +comportaient comporter ver 24.59 30.54 0.21 1.69 ind:imp:3p; +comportais comporter ver 24.59 30.54 0.23 0.14 ind:imp:1s;ind:imp:2s; +comportait comporter ver 24.59 30.54 1.28 7.77 ind:imp:3s; +comportant comporter ver 24.59 30.54 0.23 1.22 par:pre; +comportassent comporter ver 24.59 30.54 0 0.07 sub:imp:3p; +comporte comporter ver 24.59 30.54 7.05 7.3 imp:pre:2s;ind:pre:1s;ind:pre:3s; +comportement comportement nom m s 20.94 17.03 19.68 15.27 +comportemental comportemental adj m s 0.79 0 0.21 0 +comportementale comportemental adj f s 0.79 0 0.4 0 +comportementales comportemental adj f p 0.79 0 0.1 0 +comportementalisme comportementalisme nom m s 0 0.07 0 0.07 +comportementaliste comportementaliste adj m s 0.04 0.07 0.04 0.07 +comportementaux comportemental adj m p 0.79 0 0.08 0 +comportements comportement nom m p 20.94 17.03 1.25 1.76 +comportent comporter ver 24.59 30.54 1.26 1.69 ind:pre:3p; +comporter comporter ver 24.59 30.54 6.02 6.49 inf; +comportera comporter ver 24.59 30.54 0.18 0.27 ind:fut:3s; +comporterai comporter ver 24.59 30.54 0.03 0.07 ind:fut:1s; +comporteraient comporter ver 24.59 30.54 0.02 0.2 cnd:pre:3p; +comporterais comporter ver 24.59 30.54 0.02 0 cnd:pre:1s;cnd:pre:2s; +comporterait comporter ver 24.59 30.54 0.02 1.08 cnd:pre:3s; +comporterez comporter ver 24.59 30.54 0.05 0 ind:fut:2p; +comporteriez comporter ver 24.59 30.54 0.13 0 cnd:pre:2p; +comporterions comporter ver 24.59 30.54 0.01 0.07 cnd:pre:1p; +comporteront comporter ver 24.59 30.54 0.02 0.07 ind:fut:3p; +comportes comporter ver 24.59 30.54 2.2 0.07 ind:pre:2s;sub:pre:2s; +comportez comporter ver 24.59 30.54 1.63 0.07 imp:pre:2p;ind:pre:2p; +comportiez comporter ver 24.59 30.54 0.17 0 ind:imp:2p; +comportions comporter ver 24.59 30.54 0.01 0.14 ind:imp:1p; +comportons comporter ver 24.59 30.54 0.26 0 imp:pre:1p;ind:pre:1p; +comportât comporter ver 24.59 30.54 0 0.41 sub:imp:3s; +comporté comporter ver m s 24.59 30.54 1.85 0.68 par:pas; +comportée comporter ver f s 24.59 30.54 0.76 0.47 par:pas; +comportés comporter ver m p 24.59 30.54 0.53 0.07 par:pas; +composa composer ver 14.07 47.57 0.12 2.5 ind:pas:3s; +composai composer ver 14.07 47.57 0 0.41 ind:pas:1s; +composaient composer ver 14.07 47.57 0.14 4.39 ind:imp:3p; +composais composer ver 14.07 47.57 0.04 0.34 ind:imp:1s;ind:imp:2s; +composait composer ver 14.07 47.57 0.27 5.54 ind:imp:3s; +composant composant nom m s 2.81 1.49 0.96 0.07 +composante composant adj f s 0.6 0.34 0.15 0.07 +composantes composant nom f p 2.81 1.49 0.39 0.68 +composants composant nom m p 2.81 1.49 1.35 0.27 +compose composer ver 14.07 47.57 3.44 4.8 imp:pre:2s;ind:pre:1s;ind:pre:3s; +composent composer ver 14.07 47.57 0.47 3.11 ind:pre:3p; +composer composer ver 14.07 47.57 2.87 7.3 inf; +composera composer ver 14.07 47.57 0.04 0.27 ind:fut:3s; +composerai composer ver 14.07 47.57 0.12 0 ind:fut:1s; +composerait composer ver 14.07 47.57 0.01 0.2 cnd:pre:3s; +composeront composer ver 14.07 47.57 0.11 0.07 ind:fut:3p; +composes composer ver 14.07 47.57 0.2 0.07 ind:pre:2s; +composeur composeur nom m s 0.69 0 0.69 0 +composez composer ver 14.07 47.57 0.86 0.14 imp:pre:2p;ind:pre:2p; +composiez composer ver 14.07 47.57 0.03 0 ind:imp:2p; +composions composer ver 14.07 47.57 0 0.14 ind:imp:1p; +composite composite adj s 0.16 1.01 0.14 0.88 +composites composite nom m p 0.1 0 0.04 0 +compositeur compositeur nom m s 4.32 3.38 3.62 2.91 +compositeurs compositeur nom m p 4.32 3.38 0.61 0.47 +composition composition nom f s 3.99 17.43 3.56 14.59 +compositions composition nom f p 3.99 17.43 0.43 2.84 +compositrice compositeur nom f s 4.32 3.38 0.09 0 +composons composer ver 14.07 47.57 0.09 0.14 imp:pre:1p;ind:pre:1p; +compost compost nom m s 0.15 0.14 0.15 0.14 +composter composter ver 0.14 0.34 0 0.2 inf; +composteur composteur nom m s 0 0.54 0 0.47 +composteurs composteur nom m p 0 0.54 0 0.07 +compostez composter ver 0.14 0.34 0 0.07 imp:pre:2p; +composté composter ver m s 0.14 0.34 0.14 0.07 par:pas; +composèrent composer ver 14.07 47.57 0 0.14 ind:pas:3p; +composé composer ver m s 14.07 47.57 3.34 9.19 par:pas; +composée composer ver f s 14.07 47.57 1.38 4.19 par:pas; +composées composer ver f p 14.07 47.57 0.12 1.01 par:pas; +composés composé nom m p 0.7 1.08 0.35 0.14 +compote compote nom f s 3.01 3.31 3 2.77 +compotes compote nom f p 3.01 3.31 0.01 0.54 +compotier compotier nom m s 0 0.68 0 0.61 +compotiers compotier nom m p 0 0.68 0 0.07 +compound compound adj 0.02 0 0.02 0 +comprador comprador nom m s 0.02 0 0.02 0 +comprenaient comprendre ver 893.51 614.8 0.61 5.2 ind:imp:3p; +comprenais comprendre ver 893.51 614.8 5.34 24.12 ind:imp:1s;ind:imp:2s; +comprenait comprendre ver 893.51 614.8 4.69 41.28 ind:imp:3s; +comprenant comprendre ver 893.51 614.8 0.55 9.32 par:pre; +comprend comprendre ver 893.51 614.8 41.39 31.82 ind:pre:3s; +comprendra comprendre ver 893.51 614.8 7.1 4.32 ind:fut:3s; +comprendrai comprendre ver 893.51 614.8 2.63 1.42 ind:fut:1s; +comprendraient comprendre ver 893.51 614.8 0.9 1.01 cnd:pre:3p; +comprendrais comprendre ver 893.51 614.8 4.97 2.5 cnd:pre:1s;cnd:pre:2s; +comprendrait comprendre ver 893.51 614.8 3.2 5 cnd:pre:3s; +comprendras comprendre ver 893.51 614.8 6.82 2.97 ind:fut:2s; +comprendre comprendre ver 893.51 614.8 135.24 148.51 imp:pre:2p;ind:imp:3s;inf; +comprendrez comprendre ver 893.51 614.8 4.48 2.23 ind:fut:2p; +comprendriez comprendre ver 893.51 614.8 1.52 0.27 cnd:pre:2p; +comprendrions comprendre ver 893.51 614.8 0.04 0.07 cnd:pre:1p; +comprendrons comprendre ver 893.51 614.8 0.42 0.14 ind:fut:1p; +comprendront comprendre ver 893.51 614.8 2.84 1.15 ind:fut:3p; +comprends comprendre ver 893.51 614.8 368.53 103.18 imp:pre:2s;ind:pre:1s;ind:pre:2s; +comprenette comprenette nom f s 0.03 0.14 0.03 0.14 +comprenez comprendre ver 893.51 614.8 68.86 28.18 imp:pre:2p;ind:pre:2p; +compreniez comprendre ver 893.51 614.8 2.44 1.15 ind:imp:2p; +comprenions comprendre ver 893.51 614.8 0.33 1.82 ind:imp:1p; +comprenne comprendre ver 893.51 614.8 5.98 5.54 sub:pre:1s;sub:pre:3s; +comprennent comprendre ver 893.51 614.8 12.53 8.85 ind:pre:3p;sub:pre:3p; +comprennes comprendre ver 893.51 614.8 4.22 1.15 sub:pre:2s; +comprenons comprendre ver 893.51 614.8 3.83 2.23 imp:pre:1p;ind:pre:1p; +compresse compresse nom f s 1.86 2.03 0.76 0.68 +compresser compresser ver 0.51 0.61 0.16 0.2 inf; +compresses compresse nom f p 1.86 2.03 1.09 1.35 +compresseur compresseur nom m s 0.88 0.14 0.31 0.07 +compresseurs compresseur nom m p 0.88 0.14 0.57 0.07 +compressible compressible adj f s 0.01 0.14 0.01 0 +compressibles compressible adj p 0.01 0.14 0 0.14 +compressif compressif adj m s 0.07 0 0.07 0 +compression compression nom f s 1.45 0.74 1.21 0.47 +compressions compression nom f p 1.45 0.74 0.24 0.27 +compressé compresser ver m s 0.51 0.61 0.09 0.14 par:pas; +compressée compresser ver f s 0.51 0.61 0.17 0.07 par:pas; +compressées compressé adj f p 0.1 0.68 0.03 0.2 +compressés compressé adj m p 0.1 0.68 0.04 0.07 +comprima comprimer ver 1.15 3.99 0.14 0.2 ind:pas:3s; +comprimait comprimer ver 1.15 3.99 0 1.01 ind:imp:3s; +comprimant comprimer ver 1.15 3.99 0 0.61 par:pre; +comprime comprimer ver 1.15 3.99 0.16 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compriment comprimer ver 1.15 3.99 0.02 0.14 ind:pre:3p; +comprimer comprimer ver 1.15 3.99 0.2 0.61 inf; +comprimez comprimer ver 1.15 3.99 0.08 0 imp:pre:2p; +comprimèrent comprimer ver 1.15 3.99 0 0.07 ind:pas:3p; +comprimé comprimé nom m s 4.27 3.99 1.62 1.35 +comprimée comprimé adj f s 0.55 1.82 0.03 0.27 +comprimées comprimer ver f p 1.15 3.99 0.01 0.14 par:pas; +comprimés comprimé nom m p 4.27 3.99 2.65 2.64 +comprirent comprendre ver 893.51 614.8 0.14 1.69 ind:pas:3p; +compris comprendre ver m 893.51 614.8 198.16 136.62 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +comprise comprendre ver f s 893.51 614.8 3.32 2.91 par:pas; +comprises comprendre ver f p 893.51 614.8 0.66 0.41 par:pas; +comprisse comprendre ver 893.51 614.8 0 0.27 sub:imp:1s; +comprit comprendre ver 893.51 614.8 1.74 36.62 ind:pas:3s; +compromet compromettre ver 10.29 16.62 0.9 0.41 ind:pre:3s; +compromets compromettre ver 10.29 16.62 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +compromettaient compromettre ver 10.29 16.62 0.03 0.14 ind:imp:3p; +compromettait compromettre ver 10.29 16.62 0.02 1.15 ind:imp:3s; +compromettant compromettant adj m s 1.63 2.64 0.75 0.88 +compromettante compromettant adj f s 1.63 2.64 0.21 0.54 +compromettantes compromettant adj f p 1.63 2.64 0.32 0.47 +compromettants compromettant adj m p 1.63 2.64 0.35 0.74 +compromette compromettre ver 10.29 16.62 0.14 0.07 sub:pre:3s; +compromettent compromettre ver 10.29 16.62 0.06 0.27 ind:pre:3p; +compromettes compromettre ver 10.29 16.62 0.01 0.07 sub:pre:2s; +compromettez compromettre ver 10.29 16.62 0.27 0.07 imp:pre:2p;ind:pre:2p; +compromettiez compromettre ver 10.29 16.62 0.04 0.2 ind:imp:2p; +compromettrai compromettre ver 10.29 16.62 0.01 0.07 ind:fut:1s; +compromettrait compromettre ver 10.29 16.62 0.46 0.41 cnd:pre:3s; +compromettre compromettre ver 10.29 16.62 3.84 6.42 ind:pre:2p;inf; +compromettrons compromettre ver 10.29 16.62 0.01 0 ind:fut:1p; +compromirent compromettre ver 10.29 16.62 0 0.07 ind:pas:3p; +compromis compromis nom m 6.26 5.88 6.26 5.88 +compromise compromettre ver f s 10.29 16.62 1.08 1.82 par:pas; +compromises compromettre ver f p 10.29 16.62 0.21 0.41 par:pas; +compromission compromission nom f s 0.29 1.62 0.16 0.34 +compromissions compromission nom f p 0.29 1.62 0.14 1.28 +compromissoire compromissoire adj f s 0.01 0 0.01 0 +compromit compromettre ver 10.29 16.62 0 0.27 ind:pas:3s; +compromît compromettre ver 10.29 16.62 0.01 0.07 sub:imp:3s; +compréhensible compréhensible adj s 4.47 3.04 4.25 2.5 +compréhensibles compréhensible adj p 4.47 3.04 0.21 0.54 +compréhensif compréhensif adj m s 5.21 4.93 2.73 2.36 +compréhensifs compréhensif adj m p 5.21 4.93 0.72 0.68 +compréhension compréhension nom f s 5.85 10 5.85 9.93 +compréhensions compréhension nom f p 5.85 10 0 0.07 +compréhensive compréhensif adj f s 5.21 4.93 1.67 1.55 +compréhensives compréhensif adj f p 5.21 4.93 0.08 0.34 +comprîmes comprendre ver 893.51 614.8 0.02 0.2 ind:pas:1p; +comprît comprendre ver 893.51 614.8 0.01 2.64 sub:imp:3s; +compta compter ver 227.78 203.72 0.95 5.47 ind:pas:3s; +comptabilisait comptabiliser ver 0.4 1.28 0 0.2 ind:imp:3s; +comptabilisant comptabiliser ver 0.4 1.28 0 0.2 par:pre; +comptabilisation comptabilisation nom f s 0 0.14 0 0.14 +comptabilise comptabiliser ver 0.4 1.28 0.04 0.14 ind:pre:1s;ind:pre:3s; +comptabiliser comptabiliser ver 0.4 1.28 0.09 0.61 inf; +comptabilisé comptabiliser ver m s 0.4 1.28 0.23 0.14 par:pas; +comptabilisées comptabiliser ver f p 0.4 1.28 0.01 0 par:pas; +comptabilisés comptabiliser ver m p 0.4 1.28 0.03 0 par:pas; +comptabilité comptabilité nom f s 4.37 4.53 4.37 4.39 +comptabilités comptabilité nom f p 4.37 4.53 0 0.14 +comptable comptable nom s 7.15 4.26 6.43 3.31 +comptables comptable nom p 7.15 4.26 0.72 0.95 +comptage comptage nom m s 0.3 0.14 0.3 0.14 +comptai compter ver 227.78 203.72 0.01 0.14 ind:pas:1s; +comptaient compter ver 227.78 203.72 0.93 8.04 ind:imp:3p; +comptais compter ver 227.78 203.72 7.39 7.03 ind:imp:1s;ind:imp:2s; +comptait compter ver 227.78 203.72 7.32 32.5 ind:imp:3s; +comptant compter ver 227.78 203.72 2.47 6.15 par:pre; +compte compte nom m s 160.95 208.38 138.88 187.23 +compte_fils compte_fils nom m 0 0.34 0 0.34 +compte_gouttes compte_gouttes nom m 0.45 1.42 0.45 1.42 +compte_rendu compte_rendu nom m s 2.21 0.14 2.06 0.07 +compte_tours compte_tours nom m 0.04 0.41 0.04 0.41 +comptent compter ver 227.78 203.72 8.09 6.69 ind:pre:3p; +compter compter ver 227.78 203.72 45.05 52.77 inf;;inf;;inf;; +comptera compter ver 227.78 203.72 1.62 0.88 ind:fut:3s; +compterai compter ver 227.78 203.72 0.4 0.27 ind:fut:1s; +compteraient compter ver 227.78 203.72 0.01 0.27 cnd:pre:3p; +compterais compter ver 227.78 203.72 0.49 0.07 cnd:pre:1s;cnd:pre:2s; +compterait compter ver 227.78 203.72 0.39 1.42 cnd:pre:3s; +compteras compter ver 227.78 203.72 0.18 0 ind:fut:2s; +compterez compter ver 227.78 203.72 0.04 0.07 ind:fut:2p; +compterons compter ver 227.78 203.72 0.02 0.14 ind:fut:1p; +compteront compter ver 227.78 203.72 0.37 0.27 ind:fut:3p; +comptes compte nom m p 160.95 208.38 22.07 21.15 +compte_rendu compte_rendu nom m p 2.21 0.14 0.16 0.07 +compteur compteur nom m s 4.81 5.95 4.27 4.19 +compteurs compteur nom m p 4.81 5.95 0.55 1.76 +comptez compter ver 227.78 203.72 21.36 5.88 imp:pre:2p;ind:pre:2p; +comptiez compter ver 227.78 203.72 1.38 0.2 ind:imp:2p;sub:pre:2p; +comptine comptine nom f s 2 1.76 1.73 1.22 +comptines comptine nom f p 2 1.76 0.28 0.54 +comptions compter ver 227.78 203.72 0.26 0.68 ind:imp:1p; +comptoir comptoir nom m s 8.66 41.55 8.49 39.53 +comptoirs comptoir nom m p 8.66 41.55 0.17 2.03 +comptons compter ver 227.78 203.72 2.17 2.84 imp:pre:1p;ind:pre:1p; +comptât compter ver 227.78 203.72 0 0.2 sub:imp:3s; +comptèrent compter ver 227.78 203.72 0.01 0.2 ind:pas:3p; +compté compter ver m s 227.78 203.72 10.34 11.55 par:pas; +comptée compter ver f s 227.78 203.72 0.12 0.88 par:pas; +comptées compter ver f p 227.78 203.72 0.25 1.28 par:pas; +comptés compter ver m p 227.78 203.72 1.96 2.84 par:pas; +compulsait compulser ver 0.27 1.69 0 0.27 ind:imp:3s; +compulsant compulser ver 0.27 1.69 0.01 0.2 par:pre; +compulse compulser ver 0.27 1.69 0.1 0.47 imp:pre:2s;ind:pre:3s; +compulser compulser ver 0.27 1.69 0.03 0.47 inf; +compulsez compulser ver 0.27 1.69 0.1 0 imp:pre:2p; +compulsif compulsif adj m s 1.04 0.14 0.72 0.07 +compulsifs compulsif adj m p 1.04 0.14 0.11 0 +compulsion compulsion nom f s 0.17 0 0.17 0 +compulsive compulsif adj f s 1.04 0.14 0.18 0 +compulsivement compulsivement adv 0.03 0 0.03 0 +compulsives compulsif adj f p 1.04 0.14 0.03 0.07 +compulsoire compulsoire nom m s 0 0.07 0 0.07 +compulsons compulser ver 0.27 1.69 0 0.07 ind:pre:1p; +compulsé compulser ver m s 0.27 1.69 0.02 0.14 par:pas; +compulsés compulser ver m p 0.27 1.69 0 0.07 par:pas; +comput comput nom m s 0 0.14 0 0.14 +computations computation nom f p 0 0.07 0 0.07 +computer computer nom m s 0.17 0.14 0.14 0.07 +computers computer nom m p 0.17 0.14 0.03 0.07 +computeur computeur nom m s 0.05 0.07 0.04 0 +computeurs computeur nom m p 0.05 0.07 0.01 0.07 +compère compère nom m s 2.13 3.85 1.7 2.36 +compères compère nom m p 2.13 3.85 0.42 1.49 +compète compéter ver 0.96 0.07 0.8 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compètes compéter ver 0.96 0.07 0.14 0 ind:pre:2s; +compétant compéter ver 0.96 0.07 0.02 0 par:pre; +compétence compétence nom f s 5.98 5.07 2.12 3.24 +compétences compétence nom f p 5.98 5.07 3.86 1.82 +compétent compétent adj m s 7.44 3.11 4.45 1.08 +compétente compétent adj f s 7.44 3.11 1.05 1.08 +compétentes compétent adj f p 7.44 3.11 0.52 0.34 +compétents compétent adj m p 7.44 3.11 1.42 0.61 +compétiteur compétiteur nom m s 0.34 0.2 0.28 0 +compétiteurs compétiteur nom m p 0.34 0.2 0.05 0.2 +compétitif compétitif adj m s 1.27 0 0.53 0 +compétitifs compétitif adj m p 1.27 0 0.22 0 +compétition compétition nom f s 9.15 4.8 8.43 3.85 +compétitions compétition nom f p 9.15 4.8 0.73 0.95 +compétitive compétitif adj f s 1.27 0 0.52 0 +compétitivité compétitivité nom f s 0.06 0 0.06 0 +compétitrice compétiteur nom f s 0.34 0.2 0.01 0 +comtal comtal adj m s 0 0.2 0 0.14 +comtale comtal adj f s 0 0.2 0 0.07 +comte comte nom m s 27.36 67.77 12.89 51.42 +comtes comte nom m p 27.36 67.77 0.74 2.64 +comtesse comte nom f s 27.36 67.77 13.69 12.43 +comtesses comte nom f p 27.36 67.77 0.05 1.28 +comtois comtois adj m 0 0.27 0 0.07 +comtois comtois nom m 0 0.27 0 0.07 +comtoise comtois adj f s 0 0.27 0 0.2 +comtoise comtois nom f s 0 0.27 0 0.2 +comté comté nom m s 11.64 2.36 10.96 2.36 +comtés comté nom m p 11.64 2.36 0.68 0 +comète comète nom f s 2.28 2.5 1.96 2.3 +comètes comète nom f p 2.28 2.5 0.32 0.2 +comédie comédie nom f s 22.11 29.73 20.87 25.68 +comédien comédien nom m s 6.5 10.74 3.02 5.27 +comédienne comédien nom f s 6.5 10.74 0.75 1.76 +comédiennes comédien nom f p 6.5 10.74 0.44 0.61 +comédiens comédien nom m p 6.5 10.74 2.3 3.11 +comédies comédie nom f p 22.11 29.73 1.23 4.05 +comédons comédon nom m p 0 0.07 0 0.07 +con con pro_per s 7.87 4.59 7.87 4.59 +conard conard nom m s 0.19 0.47 0.16 0.27 +conarde conard nom f s 0.19 0.47 0 0.07 +conards conard nom m p 0.19 0.47 0.03 0.14 +conasse conasse nom f s 0.34 0.27 0.34 0.2 +conasses conasse nom f p 0.34 0.27 0 0.07 +concassage concassage nom m s 0 0.14 0 0.14 +concassait concasser ver 0.09 1.76 0 0.07 ind:imp:3s; +concassant concasser ver 0.09 1.76 0 0.14 par:pre; +concasse concasser ver 0.09 1.76 0 0.07 ind:pre:3s; +concassent concasser ver 0.09 1.76 0 0.07 ind:pre:3p; +concasser concasser ver 0.09 1.76 0.01 0.07 inf; +concasseur concasseur nom m s 0.19 0.68 0.17 0.27 +concasseurs concasseur nom m p 0.19 0.68 0.01 0.41 +concassé concasser ver m s 0.09 1.76 0.04 0.54 par:pas; +concassée concasser ver f s 0.09 1.76 0.01 0.27 par:pas; +concassées concasser ver f p 0.09 1.76 0.01 0.2 par:pas; +concassés concasser ver m p 0.09 1.76 0.01 0.34 par:pas; +concaténation concaténation nom f s 0.01 0 0.01 0 +concave concave adj s 0.2 1.22 0.19 1.08 +concaves concave adj p 0.2 1.22 0.01 0.14 +concavité concavité nom f s 0 0.34 0 0.34 +concentra concentrer ver 39.58 18.92 0.04 1.28 ind:pas:3s; +concentrai concentrer ver 39.58 18.92 0 0.27 ind:pas:1s; +concentraient concentrer ver 39.58 18.92 0.15 0.68 ind:imp:3p; +concentrais concentrer ver 39.58 18.92 0.16 0 ind:imp:1s;ind:imp:2s; +concentrait concentrer ver 39.58 18.92 0.14 1.42 ind:imp:3s; +concentrant concentrer ver 39.58 18.92 0.43 0.74 par:pre; +concentrateur concentrateur nom m s 0.12 0 0.12 0 +concentration concentration nom f s 8.54 10.41 8.46 10.27 +concentrationnaire concentrationnaire adj m s 0.32 0.61 0.32 0.34 +concentrationnaires concentrationnaire adj m p 0.32 0.61 0 0.27 +concentrations concentration nom f p 8.54 10.41 0.08 0.14 +concentre concentrer ver 39.58 18.92 12.05 2.7 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concentrent concentrer ver 39.58 18.92 0.3 0.2 ind:pre:3p; +concentrer concentrer ver 39.58 18.92 14.13 6.28 inf;; +concentrera concentrer ver 39.58 18.92 0.2 0 ind:fut:3s; +concentrerai concentrer ver 39.58 18.92 0.06 0 ind:fut:1s; +concentrerais concentrer ver 39.58 18.92 0.1 0.07 cnd:pre:1s;cnd:pre:2s; +concentrerait concentrer ver 39.58 18.92 0.04 0 cnd:pre:3s; +concentrerons concentrer ver 39.58 18.92 0.05 0 ind:fut:1p; +concentreront concentrer ver 39.58 18.92 0.03 0.07 ind:fut:3p; +concentres concentrer ver 39.58 18.92 0.88 0 ind:pre:2s;sub:pre:2s; +concentrez concentrer ver 39.58 18.92 4.39 0 imp:pre:2p;ind:pre:2p; +concentriez concentrer ver 39.58 18.92 0.12 0 ind:imp:2p; +concentrions concentrer ver 39.58 18.92 0.04 0 ind:imp:1p; +concentrique concentrique adj s 0.16 4.12 0 0.54 +concentriques concentrique adj p 0.16 4.12 0.16 3.58 +concentrons concentrer ver 39.58 18.92 1.69 0.07 imp:pre:1p;ind:pre:1p; +concentré concentrer ver m s 39.58 18.92 2.55 2.3 par:pas; +concentrée concentrer ver f s 39.58 18.92 0.66 1.69 par:pas; +concentrées concentrer ver f p 39.58 18.92 0.32 0.61 par:pas; +concentrés concentrer ver m p 39.58 18.92 1.08 0.54 par:pas; +concept concept nom m s 8.66 3.24 7.63 2.03 +concepteur concepteur adj m s 0.51 0 0.5 0 +concepteurs concepteur nom m p 0.77 0.14 0.23 0 +conception conception nom f s 4.37 11.55 3.84 8.31 +conceptions conception nom f p 4.37 11.55 0.53 3.24 +conceptrice concepteur nom f s 0.77 0.14 0.05 0 +concepts concept nom m p 8.66 3.24 1.02 1.22 +conceptualise conceptualiser ver 0.04 0 0.01 0 ind:pre:1s; +conceptualiser conceptualiser ver 0.04 0 0.02 0 inf; +conceptualisé conceptualiser ver m s 0.04 0 0.01 0 par:pas; +conceptuel conceptuel adj m s 0.46 0.14 0.32 0.14 +conceptuelle conceptuel adj f s 0.46 0.14 0.07 0 +conceptuellement conceptuellement adv 0.01 0 0.01 0 +conceptuelles conceptuel adj f p 0.46 0.14 0.05 0 +conceptuels conceptuel adj m p 0.46 0.14 0.02 0 +concernaient concerner ver 49.31 50.47 0.18 1.76 ind:imp:3p; +concernait concerner ver 49.31 50.47 2.13 10.95 ind:imp:3s; +concernant concernant pre 13.08 14.26 13.08 14.26 +concerne concerner ver 49.31 50.47 33.49 26.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concernent concerner ver 49.31 50.47 1.64 1.96 ind:pre:3p; +concerner concerner ver 49.31 50.47 0.36 1.22 inf; +concernera concerner ver 49.31 50.47 0.25 0.07 ind:fut:3s; +concerneraient concerner ver 49.31 50.47 0.01 0.07 cnd:pre:3p; +concernerait concerner ver 49.31 50.47 0.17 0.34 cnd:pre:3s; +concernât concerner ver 49.31 50.47 0 0.2 sub:imp:3s; +concernèrent concerner ver 49.31 50.47 0 0.07 ind:pas:3p; +concerné concerner ver m s 49.31 50.47 3.06 1.49 par:pas; +concernée concerner ver f s 49.31 50.47 1.42 1.08 par:pas; +concernées concerner ver f p 49.31 50.47 0.63 0.14 par:pas; +concernés concerner ver m p 49.31 50.47 2.51 1.08 par:pas; +concert concert nom m s 31.65 30.14 26.51 24.86 +concertaient concerter ver 0.65 3.78 0.01 0.14 ind:imp:3p; +concertait concerter ver 0.65 3.78 0 0.14 ind:imp:3s; +concertant concerter ver 0.65 3.78 0 0.07 par:pre; +concertation concertation nom f s 0.17 0.07 0.15 0.07 +concertations concertation nom f p 0.17 0.07 0.01 0 +concerte concerter ver 0.65 3.78 0.05 0.07 ind:pre:3s; +concertent concerter ver 0.65 3.78 0.02 0.41 ind:pre:3p; +concerter concerter ver 0.65 3.78 0.32 1.15 inf; +concertez concerter ver 0.65 3.78 0.01 0 ind:pre:2p; +concertina concertina nom m s 0.01 0 0.01 0 +concertiste concertiste nom s 0.6 0 0.6 0 +concerto concerto nom m s 1.63 2.77 1.56 2.36 +concertons concerter ver 0.65 3.78 0.01 0.07 imp:pre:1p;ind:pre:1p; +concertos concerto nom m p 1.63 2.77 0.07 0.41 +concerts concert nom m p 31.65 30.14 5.14 5.27 +concertèrent concerter ver 0.65 3.78 0 0.2 ind:pas:3p; +concerté concerter ver m s 0.65 3.78 0.17 0.2 par:pas; +concertée concerter ver f s 0.65 3.78 0.03 0.41 par:pas; +concertées concerter ver f p 0.65 3.78 0 0.27 par:pas; +concertés concerter ver m p 0.65 3.78 0.02 0.68 par:pas; +concession concession nom f s 5.31 14.12 3.54 9.32 +concessionnaire concessionnaire nom s 0.7 0.95 0.63 0.68 +concessionnaires concessionnaire nom p 0.7 0.95 0.07 0.27 +concessions concession nom f p 5.31 14.12 1.77 4.8 +concetto concetto nom m s 0 0.07 0 0.07 +concevable concevable adj s 0.28 2.77 0.27 2.5 +concevables concevable adj f p 0.28 2.77 0.01 0.27 +concevaient concevoir ver 18.75 27.84 0.12 0.34 ind:imp:3p; +concevais concevoir ver 18.75 27.84 0.06 1.15 ind:imp:1s; +concevait concevoir ver 18.75 27.84 0.15 2.36 ind:imp:3s; +concevant concevoir ver 18.75 27.84 0.05 0.14 par:pre; +concevez concevoir ver 18.75 27.84 0.06 0.07 imp:pre:2p;ind:pre:2p; +conceviez concevoir ver 18.75 27.84 0.14 0.14 ind:imp:2p; +concevions concevoir ver 18.75 27.84 0 0.07 ind:imp:1p; +concevoir concevoir ver 18.75 27.84 3.14 7.57 inf; +concevons concevoir ver 18.75 27.84 0.02 0.2 imp:pre:1p;ind:pre:1p; +concevrais concevoir ver 18.75 27.84 0 0.14 cnd:pre:1s; +concevrait concevoir ver 18.75 27.84 0.01 0.27 cnd:pre:3s; +conchiaient conchier ver 0.03 0.54 0 0.07 ind:imp:3p; +conchie conchier ver 0.03 0.54 0.01 0.07 ind:pre:1s;ind:pre:3s; +conchier conchier ver 0.03 0.54 0.01 0.34 inf; +conchié conchier ver m s 0.03 0.54 0.01 0.07 par:pas; +conchoïdaux conchoïdal adj m p 0.01 0 0.01 0 +concierge concierge nom s 11.15 29.05 10.81 25.41 +conciergerie conciergerie nom f s 0.04 0.74 0.04 0.68 +conciergeries conciergerie nom f p 0.04 0.74 0 0.07 +concierges concierge nom p 11.15 29.05 0.34 3.65 +concile concile nom m s 0.17 3.11 0.17 2.57 +conciles concile nom m p 0.17 3.11 0 0.54 +conciliable conciliable adj s 0 0.34 0 0.27 +conciliables conciliable adj p 0 0.34 0 0.07 +conciliabule conciliabule nom m s 0.28 3.58 0.02 1.76 +conciliabules conciliabule nom m p 0.28 3.58 0.26 1.82 +conciliaient concilier ver 0.85 5 0 0.07 ind:imp:3p; +conciliaires conciliaire adj m p 0 0.07 0 0.07 +conciliait concilier ver 0.85 5 0 0.34 ind:imp:3s; +conciliant conciliant adj m s 0.63 3.85 0.3 2.09 +conciliante conciliant adj f s 0.63 3.85 0.12 1.22 +conciliantes conciliant adj f p 0.63 3.85 0.03 0.2 +conciliants conciliant adj m p 0.63 3.85 0.17 0.34 +conciliateur conciliateur nom m s 0.1 0.14 0.07 0.14 +conciliateurs conciliateur nom m p 0.1 0.14 0.01 0 +conciliation conciliation nom f s 0.64 1.82 0.37 1.69 +conciliations conciliation nom f p 0.64 1.82 0.27 0.14 +conciliatrice conciliateur nom f s 0.1 0.14 0.01 0 +concilie concilier ver 0.85 5 0.2 0.14 ind:pre:3s; +concilier concilier ver 0.85 5 0.6 3.18 inf; +concilierait concilier ver 0.85 5 0 0.07 cnd:pre:3s; +concilies concilier ver 0.85 5 0 0.07 ind:pre:2s; +concilié concilier ver m s 0.85 5 0.02 0.14 par:pas; +conciliées concilier ver f p 0.85 5 0 0.07 par:pas; +conciliés concilier ver m p 0.85 5 0 0.07 par:pas; +concis concis adj m 1.42 0.68 0.77 0.61 +concise concis adj f s 1.42 0.68 0.65 0.07 +concision concision nom f s 0.31 0.61 0.31 0.61 +concitoyen concitoyen nom m s 4.46 1.62 0.33 0.07 +concitoyenne concitoyen nom f s 4.46 1.62 0.11 0.07 +concitoyennes concitoyen nom f p 4.46 1.62 0.1 0 +concitoyens concitoyen nom m p 4.46 1.62 3.92 1.49 +conclave conclave nom m s 0 0.47 0 0.47 +conclaviste conclaviste nom m s 0 0.07 0 0.07 +conclu conclure ver m s 27.26 51.76 11.88 10.61 par:pas; +concluaient conclure ver 27.26 51.76 0 0.47 ind:imp:3p; +concluais conclure ver 27.26 51.76 0.02 0.68 ind:imp:1s; +concluait conclure ver 27.26 51.76 0.06 2.5 ind:imp:3s; +concluant concluant adj m s 1.49 0.95 0.71 0.41 +concluante concluant adj f s 1.49 0.95 0.33 0.34 +concluantes concluant adj f p 1.49 0.95 0.1 0 +concluants concluant adj m p 1.49 0.95 0.35 0.2 +conclue conclure ver f s 27.26 51.76 1.82 1.49 par:pas;sub:pre:1s;sub:pre:3s; +concluent conclure ver 27.26 51.76 0.2 0.61 ind:pre:3p; +conclues conclure ver f p 27.26 51.76 0.06 0.2 par:pas;sub:pre:2s; +concluez conclure ver 27.26 51.76 0.57 0.07 imp:pre:2p;ind:pre:2p; +concluions conclure ver 27.26 51.76 0.02 0.07 ind:imp:1p; +concluons conclure ver 27.26 51.76 0.75 0.07 imp:pre:1p;ind:pre:1p; +conclura conclure ver 27.26 51.76 0.24 0.07 ind:fut:3s; +conclurai conclure ver 27.26 51.76 0.27 0.07 ind:fut:1s; +conclurais conclure ver 27.26 51.76 0.03 0 cnd:pre:1s; +conclurait conclure ver 27.26 51.76 0.04 0 cnd:pre:3s; +conclure conclure ver 27.26 51.76 7.57 10.34 inf; +conclurent conclure ver 27.26 51.76 0.03 0.27 ind:pas:3p; +conclurez conclure ver 27.26 51.76 0.01 0 ind:fut:2p; +conclurions conclure ver 27.26 51.76 0.01 0.07 cnd:pre:1p; +conclurons conclure ver 27.26 51.76 0.07 0 ind:fut:1p; +concluront conclure ver 27.26 51.76 0.03 0.07 ind:fut:3p; +conclus conclure ver m p 27.26 51.76 1.88 4.32 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +conclusion conclusion nom f s 13.9 20.68 8.19 14.32 +conclusions conclusion nom f p 13.9 20.68 5.71 6.35 +conclusive conclusif adj f s 0.01 0 0.01 0 +conclut conclure ver 27.26 51.76 1.65 18.92 ind:pre:3s;ind:pas:3s; +conclûmes conclure ver 27.26 51.76 0 0.07 ind:pas:1p; +conclût conclure ver 27.26 51.76 0 0.07 sub:imp:3s; +concocta concocter ver 1 1.01 0.01 0 ind:pas:3s; +concoctait concocter ver 1 1.01 0.01 0.14 ind:imp:3s; +concoctent concocter ver 1 1.01 0.02 0 ind:pre:3p; +concocter concocter ver 1 1.01 0.34 0.41 inf; +concocteras concocter ver 1 1.01 0.01 0.07 ind:fut:2s; +concoction concoction nom f s 0.06 0.2 0.06 0.2 +concocté concocter ver m s 1 1.01 0.57 0.27 par:pas; +concoctée concocter ver f s 1 1.01 0.04 0.07 par:pas; +concoctés concocter ver m p 1 1.01 0.01 0.07 par:pas; +concombre concombre nom m s 2.75 4.12 1.82 1.15 +concombres concombre nom m p 2.75 4.12 0.94 2.97 +concomitance concomitance nom f s 0.01 0.07 0.01 0.07 +concomitant concomitant adj m s 0.02 0.41 0 0.14 +concomitante concomitant adj f s 0.02 0.41 0.01 0.14 +concomitantes concomitant adj f p 0.02 0.41 0.01 0.14 +concordaient concorder ver 2.45 0.81 0.02 0.14 ind:imp:3p; +concordait concorder ver 2.45 0.81 0.13 0.27 ind:imp:3s; +concordance concordance nom f s 0.45 0.54 0.45 0.54 +concordant concorder ver 2.45 0.81 0.03 0 par:pre; +concordante concordant adj f s 0.23 0.14 0.03 0 +concordantes concordant adj f p 0.23 0.14 0.02 0 +concordants concordant adj m p 0.23 0.14 0.16 0.07 +concordat concordat nom m s 0 0.07 0 0.07 +concorde concorder ver 2.45 0.81 1.4 0.07 imp:pre:2s;ind:pre:3s; +concordent concorder ver 2.45 0.81 0.71 0.2 ind:pre:3p; +concorder concorder ver 2.45 0.81 0.15 0.14 inf; +concordez concorder ver 2.45 0.81 0.01 0 imp:pre:2p; +concordistes concordiste nom p 0 0.07 0 0.07 +concouraient concourir ver 1.35 3.72 0.03 0.2 ind:imp:3p; +concourait concourir ver 1.35 3.72 0.01 0.34 ind:imp:3s; +concourant concourant adj m s 0.01 0 0.01 0 +concoure concourir ver 1.35 3.72 0.02 0 sub:pre:3s; +concourent concourir ver 1.35 3.72 0.08 0.47 ind:pre:3p; +concourez concourir ver 1.35 3.72 0.04 0 ind:pre:2p; +concourir concourir ver 1.35 3.72 0.55 1.28 inf; +concourrai concourir ver 1.35 3.72 0.01 0 ind:fut:1s; +concourrait concourir ver 1.35 3.72 0.01 0.14 cnd:pre:3s; +concourront concourir ver 1.35 3.72 0 0.07 ind:fut:3p; +concours concours nom m 23.89 31.69 23.89 31.69 +concourt concourir ver 1.35 3.72 0.17 0.54 ind:pre:3s; +concouru concourir ver m s 1.35 3.72 0.1 0.54 par:pas; +concourût concourir ver 1.35 3.72 0 0.07 sub:imp:3s; +concret concret adj m s 3.48 7.09 1.88 2.09 +concrets concret adj m p 3.48 7.09 0.24 1.22 +concrète concret adj f s 3.48 7.09 0.93 2.84 +concrètement concrètement adv 2.04 1.15 2.04 1.15 +concrètes concret adj f p 3.48 7.09 0.42 0.95 +concrétion concrétion nom f s 0.01 0.81 0.01 0.47 +concrétions concrétion nom f p 0.01 0.81 0 0.34 +concrétisant concrétiser ver 0.83 1.35 0.01 0.07 par:pre; +concrétisation concrétisation nom f s 0.04 0.07 0.04 0.07 +concrétise concrétiser ver 0.83 1.35 0.2 0.14 ind:pre:1s;ind:pre:3s; +concrétisent concrétiser ver 0.83 1.35 0.01 0 ind:pre:3p; +concrétiser concrétiser ver 0.83 1.35 0.39 0.54 inf; +concrétisèrent concrétiser ver 0.83 1.35 0 0.14 ind:pas:3p; +concrétisé concrétiser ver m s 0.83 1.35 0.05 0.27 par:pas; +concrétisée concrétiser ver f s 0.83 1.35 0.16 0.14 par:pas; +concrétisées concrétiser ver f p 0.83 1.35 0.01 0 par:pas; +concrétisés concrétiser ver m p 0.83 1.35 0 0.07 par:pas; +concubin concubin nom m s 1.98 2.84 0.02 0.61 +concubinage concubinage nom m s 0.77 0.68 0.77 0.61 +concubinages concubinage nom m p 0.77 0.68 0 0.07 +concubinait concubiner ver 0 0.07 0 0.07 ind:imp:3s; +concubine concubin nom f s 1.98 2.84 1.56 1.69 +concubines concubin nom f p 1.98 2.84 0.4 0.47 +concubins concubin nom m p 1.98 2.84 0 0.07 +concupiscence concupiscence nom f s 0.38 2.09 0.38 2.03 +concupiscences concupiscence nom f p 0.38 2.09 0 0.07 +concupiscent concupiscent adj m s 0.11 0.54 0.11 0.14 +concupiscente concupiscent adj f s 0.11 0.54 0 0.14 +concupiscentes concupiscent adj f p 0.11 0.54 0 0.14 +concupiscents concupiscent adj m p 0.11 0.54 0 0.14 +concurremment concurremment adv 0 0.41 0 0.41 +concurrence concurrence nom f s 6 5 6 4.73 +concurrencer concurrencer ver 0.33 0.74 0.3 0.07 inf; +concurrences concurrence nom f p 6 5 0 0.27 +concurrencé concurrencer ver m s 0.33 0.74 0.01 0.14 par:pas; +concurrencée concurrencer ver f s 0.33 0.74 0 0.07 par:pas; +concurrent concurrent nom m s 6.36 3.51 1.65 1.49 +concurrente concurrent adj f s 1.45 1.62 0.71 0.54 +concurrentes concurrent adj f p 1.45 1.62 0.27 0.41 +concurrentiel concurrentiel adj m s 0.09 0.14 0.07 0.07 +concurrentielle concurrentiel adj f s 0.09 0.14 0.02 0 +concurrentiels concurrentiel adj m p 0.09 0.14 0 0.07 +concurrents concurrent nom m p 6.36 3.51 4.71 2.03 +concurrençait concurrencer ver 0.33 0.74 0 0.27 ind:imp:3s; +concussion concussion nom f s 0.07 0.2 0.07 0.2 +concussionnaire concussionnaire adj f s 0 0.07 0 0.07 +concède concéder ver 1.79 5.74 0.75 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concèdes concéder ver 1.79 5.74 0.02 0 ind:pre:2s; +concéda concéder ver 1.79 5.74 0.01 1.28 ind:pas:3s; +concédai concéder ver 1.79 5.74 0 0.07 ind:pas:1s; +concédaient concéder ver 1.79 5.74 0.1 0.2 ind:imp:3p; +concédais concéder ver 1.79 5.74 0 0.14 ind:imp:1s; +concédait concéder ver 1.79 5.74 0 0.74 ind:imp:3s; +concédant concédant nom m s 0 0.07 0 0.07 +concéder concéder ver 1.79 5.74 0.39 0.81 inf; +concéderait concéder ver 1.79 5.74 0.01 0.07 cnd:pre:3s; +concédez concéder ver 1.79 5.74 0.03 0 ind:pre:2p; +concédons concéder ver 1.79 5.74 0 0.07 ind:pre:1p; +concédât concéder ver 1.79 5.74 0 0.14 sub:imp:3s; +concédé concéder ver m s 1.79 5.74 0.25 0.88 par:pas; +concédée concéder ver f s 1.79 5.74 0.23 0.47 par:pas; +concédés concéder ver m p 1.79 5.74 0 0.2 par:pas; +concélèbrent concélébrer ver 0.37 0 0.37 0 ind:pre:3p; +condamna condamner ver 44.15 44.59 0.59 0.47 ind:pas:3s; +condamnable condamnable adj s 0.44 0.88 0.44 0.61 +condamnables condamnable adj m p 0.44 0.88 0 0.27 +condamnai condamner ver 44.15 44.59 0 0.07 ind:pas:1s; +condamnaient condamner ver 44.15 44.59 0.04 1.35 ind:imp:3p; +condamnais condamner ver 44.15 44.59 0.02 0.27 ind:imp:1s;ind:imp:2s; +condamnait condamner ver 44.15 44.59 0.17 3.51 ind:imp:3s; +condamnant condamner ver 44.15 44.59 0.31 1.49 par:pre; +condamnation condamnation nom f s 6.79 8.85 5.18 7.64 +condamnations condamnation nom f p 6.79 8.85 1.62 1.22 +condamne condamner ver 44.15 44.59 6.56 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +condamnent condamner ver 44.15 44.59 0.94 1.15 ind:pre:3p;sub:pre:3p; +condamner condamner ver 44.15 44.59 5.54 4.73 ind:pre:2p;inf; +condamnera condamner ver 44.15 44.59 0.6 0.27 ind:fut:3s; +condamnerai condamner ver 44.15 44.59 0.02 0 ind:fut:1s; +condamneraient condamner ver 44.15 44.59 0.02 0 cnd:pre:3p; +condamnerais condamner ver 44.15 44.59 0.04 0.2 cnd:pre:1s; +condamnerait condamner ver 44.15 44.59 0.22 0 cnd:pre:3s; +condamneras condamner ver 44.15 44.59 0.03 0 ind:fut:2s; +condamnerons condamner ver 44.15 44.59 0 0.07 ind:fut:1p; +condamneront condamner ver 44.15 44.59 0.32 0.14 ind:fut:3p; +condamnes condamner ver 44.15 44.59 0.16 0.14 ind:pre:2s; +condamnez condamner ver 44.15 44.59 1.17 0.07 imp:pre:2p;ind:pre:2p; +condamniez condamner ver 44.15 44.59 0.01 0.14 ind:imp:2p; +condamnions condamner ver 44.15 44.59 0 0.07 ind:imp:1p; +condamnons condamner ver 44.15 44.59 0.93 0.07 imp:pre:1p;ind:pre:1p; +condamnât condamner ver 44.15 44.59 0 0.14 sub:imp:3s; +condamnèrent condamner ver 44.15 44.59 0.14 0.2 ind:pas:3p; +condamné condamner ver m s 44.15 44.59 17.1 12.3 par:pas; +condamnée condamner ver f s 44.15 44.59 3.42 6.42 par:pas; +condamnées condamner ver f p 44.15 44.59 0.65 1.01 par:pas; +condamnés condamner ver m p 44.15 44.59 5.14 5.07 par:pas; +condensa condenser ver 0.59 2.7 0 0.2 ind:pas:3s; +condensaient condenser ver 0.59 2.7 0 0.2 ind:imp:3p; +condensait condenser ver 0.59 2.7 0 0.54 ind:imp:3s; +condensant condenser ver 0.59 2.7 0.1 0.07 par:pre; +condensateur condensateur nom m s 1.02 0.07 0.77 0.07 +condensateurs condensateur nom m p 1.02 0.07 0.26 0 +condensation condensation nom f s 0.28 1.22 0.28 1.22 +condense condenser ver 0.59 2.7 0.14 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +condensent condenser ver 0.59 2.7 0 0.14 ind:pre:3p; +condenser condenser ver 0.59 2.7 0.17 0.41 inf; +condensera condenser ver 0.59 2.7 0.01 0 ind:fut:3s; +condenseur condenseur nom m s 0.01 0 0.01 0 +condensèrent condenser ver 0.59 2.7 0 0.07 ind:pas:3p; +condensé condenser ver m s 0.59 2.7 0.16 0.14 par:pas; +condensée condensé adj f s 0.05 1.15 0.02 0 +condensées condenser ver f p 0.59 2.7 0.03 0.14 par:pas; +condensés condensé adj m p 0.05 1.15 0.01 0.07 +condescend condescendre ver 0.17 1.01 0 0.14 ind:pre:3s; +condescendait condescendre ver 0.17 1.01 0 0.07 ind:imp:3s; +condescendance condescendance nom f s 0.7 4.53 0.7 4.53 +condescendant condescendant adj m s 1.35 2.09 0.95 0.95 +condescendante condescendant adj f s 1.35 2.09 0.3 0.88 +condescendants condescendant adj m p 1.35 2.09 0.09 0.27 +condescendit condescendre ver 0.17 1.01 0.01 0.2 ind:pas:3s; +condescendrais condescendre ver 0.17 1.01 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +condescendre condescendre ver 0.17 1.01 0.01 0.2 inf; +condescendu condescendre ver m s 0.17 1.01 0 0.07 par:pas; +condiment condiment nom m s 0.68 0.61 0.11 0.07 +condiments condiment nom m p 0.68 0.61 0.56 0.54 +condisciple condisciple nom s 0.15 3.11 0.01 0.74 +condisciples condisciple nom p 0.15 3.11 0.14 2.36 +condition condition nom f s 46.73 91.62 25.61 45.81 +conditionnait conditionner ver 1.58 1.55 0.02 0 ind:imp:3s; +conditionnant conditionner ver 1.58 1.55 0.02 0.07 par:pre; +conditionne conditionner ver 1.58 1.55 0.32 0.14 ind:pre:1s;ind:pre:3s; +conditionnel conditionnel nom m s 0.07 0.81 0.06 0.74 +conditionnelle conditionnel adj f s 4.76 0.74 4.59 0.74 +conditionnellement conditionnellement adv 0 0.07 0 0.07 +conditionnelles conditionnel adj f p 4.76 0.74 0.16 0 +conditionnels conditionnel nom m p 0.07 0.81 0.01 0.07 +conditionnement conditionnement nom m s 0.52 0.95 0.52 0.74 +conditionnements conditionnement nom m p 0.52 0.95 0 0.2 +conditionnent conditionner ver 1.58 1.55 0.14 0 ind:pre:3p; +conditionner conditionner ver 1.58 1.55 0.32 0.27 inf; +conditionnerons conditionner ver 1.58 1.55 0.01 0 ind:fut:1p; +conditionneur conditionneur nom m s 0.06 0.14 0.04 0 +conditionneurs conditionneur nom m p 0.06 0.14 0.02 0.14 +conditionnons conditionner ver 1.58 1.55 0.01 0 ind:pre:1p; +conditionné conditionné adj m s 2.09 1.82 2.02 1.55 +conditionnée conditionner ver f s 1.58 1.55 0.14 0.14 par:pas; +conditionnées conditionner ver f p 1.58 1.55 0.02 0.14 par:pas; +conditionnés conditionner ver m p 1.58 1.55 0.07 0.2 par:pas; +conditions condition nom f p 46.73 91.62 21.12 45.81 +condo condo nom m s 1.01 0 0.61 0 +condoléance condoléance nom f s 10.82 4.32 0.03 0.14 +condoléances condoléance nom f p 10.82 4.32 10.8 4.19 +condoléants condoléant adj m p 0 0.07 0 0.07 +condom condom nom m s 0.18 0 0.18 0 +condominium condominium nom m s 0.02 0.14 0.02 0.14 +condor condor nom m s 1.33 0.61 1.3 0.47 +condors condor nom m p 1.33 0.61 0.02 0.14 +condos condo nom m p 1.01 0 0.4 0 +condottiere condottiere nom m s 0 0.61 0 0.54 +condottieres condottiere nom m p 0 0.61 0 0.07 +condottieri condottieri nom m p 0 0.07 0 0.07 +conductance conductance nom f s 0.03 0 0.03 0 +conducteur conducteur nom m s 10.94 15.14 8.67 11.08 +conducteurs conducteur nom m p 10.94 15.14 1.66 3.24 +conductibilité conductibilité nom f s 0.01 0 0.01 0 +conduction conduction nom f s 0.07 0 0.07 0 +conductivité conductivité nom f s 0.02 0 0.02 0 +conductrice conducteur nom f s 10.94 15.14 0.58 0.61 +conductrices conducteur nom f p 10.94 15.14 0.03 0.2 +conduira conduire ver 169.64 144.66 3.67 2.03 ind:fut:3s; +conduirai conduire ver 169.64 144.66 2.53 0.68 ind:fut:1s; +conduiraient conduire ver 169.64 144.66 0.01 0.47 cnd:pre:3p; +conduirais conduire ver 169.64 144.66 0.59 0.07 cnd:pre:1s;cnd:pre:2s; +conduirait conduire ver 169.64 144.66 0.62 2.3 cnd:pre:3s; +conduiras conduire ver 169.64 144.66 0.61 0.2 ind:fut:2s; +conduire conduire ver 169.64 144.66 60.56 40.27 inf;;inf;;inf;;inf;; +conduirez conduire ver 169.64 144.66 0.44 0.14 ind:fut:2p; +conduiriez conduire ver 169.64 144.66 0.1 0 cnd:pre:2p; +conduirons conduire ver 169.64 144.66 0.22 0.14 ind:fut:1p; +conduiront conduire ver 169.64 144.66 1.26 0.34 ind:fut:3p; +conduis conduire ver 169.64 144.66 29.82 3.58 imp:pre:2s;ind:pre:1s;ind:pre:2s; +conduisaient conduire ver 169.64 144.66 0.51 2.43 ind:imp:3p; +conduisais conduire ver 169.64 144.66 2.58 1.28 ind:imp:1s;ind:imp:2s; +conduisait conduire ver 169.64 144.66 6.37 20.41 ind:imp:3s; +conduisant conduire ver 169.64 144.66 1.73 7.36 par:pre; +conduise conduire ver 169.64 144.66 2.82 1.62 sub:pre:1s;sub:pre:3s; +conduisent conduire ver 169.64 144.66 2.9 3.31 ind:pre:3p; +conduises conduire ver 169.64 144.66 0.77 0.07 sub:pre:2s; +conduisez conduire ver 169.64 144.66 8.11 0.68 imp:pre:2p;ind:pre:2p; +conduisiez conduire ver 169.64 144.66 0.63 0.07 ind:imp:2p; +conduisions conduire ver 169.64 144.66 0.04 0.2 ind:imp:1p; +conduisirent conduire ver 169.64 144.66 0.15 1.01 ind:pas:3p; +conduisis conduire ver 169.64 144.66 0.02 0.68 ind:pas:1s; +conduisit conduire ver 169.64 144.66 0.72 7.77 ind:pas:3s; +conduisons conduire ver 169.64 144.66 0.22 0.14 imp:pre:1p;ind:pre:1p; +conduisît conduire ver 169.64 144.66 0 0.47 sub:imp:3s; +conduit conduire ver m s 169.64 144.66 34.51 33.45 ind:pre:3s;par:pas; +conduite conduite nom f s 19.2 26.76 18.75 25.34 +conduite_intérieure conduite_intérieure nom f s 0 0.27 0 0.27 +conduites conduite nom f p 19.2 26.76 0.44 1.42 +conduits conduire ver m p 169.64 144.66 2.61 5.47 par:pas; +condyle condyle nom m s 0.01 0.14 0.01 0.07 +condyles condyle nom m p 0.01 0.14 0 0.07 +condé condé nom m s 0.1 6.49 0.05 2.64 +condés condé nom m p 0.1 6.49 0.05 3.85 +confabulaient confabuler ver 0 0.14 0 0.14 ind:imp:3p; +confection confection nom f s 0.61 3.51 0.61 3.51 +confectionna confectionner ver 0.66 10 0 0.74 ind:pas:3s; +confectionnai confectionner ver 0.66 10 0 0.2 ind:pas:1s; +confectionnaient confectionner ver 0.66 10 0 0.41 ind:imp:3p; +confectionnais confectionner ver 0.66 10 0.01 0.07 ind:imp:1s; +confectionnait confectionner ver 0.66 10 0.01 2.09 ind:imp:3s; +confectionne confectionner ver 0.66 10 0.02 0.88 ind:pre:1s;ind:pre:3s; +confectionner confectionner ver 0.66 10 0.04 2.7 inf; +confectionnerai confectionner ver 0.66 10 0.01 0.07 ind:fut:1s; +confectionnerais confectionner ver 0.66 10 0 0.07 cnd:pre:1s; +confectionnerait confectionner ver 0.66 10 0 0.07 cnd:pre:3s; +confectionneur confectionneur nom m s 0.14 0.47 0.14 0.14 +confectionneurs confectionneur nom m p 0.14 0.47 0 0.2 +confectionneuse confectionneur nom f s 0.14 0.47 0 0.07 +confectionneuses confectionneur nom f p 0.14 0.47 0 0.07 +confectionnez confectionner ver 0.66 10 0.02 0.07 imp:pre:2p;ind:pre:2p; +confectionnions confectionner ver 0.66 10 0 0.14 ind:imp:1p; +confectionnâmes confectionner ver 0.66 10 0 0.07 ind:pas:1p; +confectionnât confectionner ver 0.66 10 0 0.07 sub:imp:3s; +confectionnèrent confectionner ver 0.66 10 0.01 0.07 ind:pas:3p; +confectionné confectionner ver m s 0.66 10 0.49 1.35 par:pas; +confectionnée confectionner ver f s 0.66 10 0.02 0.47 par:pas; +confectionnées confectionner ver f p 0.66 10 0.01 0.27 par:pas; +confectionnés confectionner ver m p 0.66 10 0.01 0.2 par:pas; +confessa confesser ver 16.05 10.2 0.16 0.07 ind:pas:3s; +confessai confesser ver 16.05 10.2 0 0.07 ind:pas:1s; +confessaient confesser ver 16.05 10.2 0.14 0.07 ind:imp:3p; +confessais confesser ver 16.05 10.2 0.19 0.14 ind:imp:1s;ind:imp:2s; +confessait confesser ver 16.05 10.2 0.15 0.74 ind:imp:3s; +confessant confesser ver 16.05 10.2 0.04 0.34 par:pre; +confesse confesser ver 16.05 10.2 3.05 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confessent confesser ver 16.05 10.2 0.06 0.34 ind:pre:3p; +confesser confesser ver 16.05 10.2 8.09 4.32 inf; +confesserai confesser ver 16.05 10.2 0.26 0.07 ind:fut:1s; +confesserait confesser ver 16.05 10.2 0 0.2 cnd:pre:3s; +confesseras confesser ver 16.05 10.2 0 0.07 ind:fut:2s; +confesserez confesser ver 16.05 10.2 0.01 0 ind:fut:2p; +confesseur confesseur nom m s 1.86 2.7 1.63 2.16 +confesseurs confesseur nom m p 1.86 2.7 0.23 0.54 +confessez confesser ver 16.05 10.2 1.21 0 imp:pre:2p;ind:pre:2p; +confessiez confesser ver 16.05 10.2 0.02 0.07 ind:imp:2p; +confession confession nom f s 12.84 10 10.78 7.77 +confessionnal confessionnal nom m s 1.4 1.89 1.29 1.82 +confessionnaux confessionnal nom m p 1.4 1.89 0.1 0.07 +confessionnel confessionnel adj m s 0.12 0.34 0.01 0.14 +confessionnelle confessionnel adj f s 0.12 0.34 0.11 0.14 +confessionnels confessionnel adj m p 0.12 0.34 0 0.07 +confessions confession nom f p 12.84 10 2.05 2.23 +confessons confesser ver 16.05 10.2 0.04 0.07 imp:pre:1p;ind:pre:1p; +confessé confesser ver m s 16.05 10.2 2.04 1.42 par:pas; +confessée confesser ver f s 16.05 10.2 0.26 0.27 par:pas; +confessés confesser ver m p 16.05 10.2 0.34 0.07 par:pas; +confetti confetti nom m s 1.08 3.78 0.04 1.49 +confettis confetti nom m p 1.08 3.78 1.04 2.3 +confia confier ver 41.5 69.53 0.51 9.73 ind:pas:3s; +confiai confier ver 41.5 69.53 0 0.61 ind:pas:1s; +confiaient confier ver 41.5 69.53 0.16 0.74 ind:imp:3p; +confiais confier ver 41.5 69.53 0.1 0.34 ind:imp:1s;ind:imp:2s; +confiait confier ver 41.5 69.53 0.43 5.81 ind:imp:3s; +confiance confiance nom f s 162.9 91.96 162.88 91.76 +confiances confiance nom f p 162.9 91.96 0.03 0.2 +confiant confiant adj m s 4.14 10.34 2.46 4.73 +confiante confiant adj f s 4.14 10.34 1.26 3.45 +confiantes confiant adj f p 4.14 10.34 0.06 0.47 +confiants confiant adj m p 4.14 10.34 0.36 1.69 +confidence confidence nom f s 3.28 24.53 2.23 10.14 +confidences confidence nom f p 3.28 24.53 1.04 14.39 +confident confident nom m s 1.28 5.54 0.8 3.18 +confidente confident nom f s 1.28 5.54 0.23 1.55 +confidentes confident nom f p 1.28 5.54 0 0.41 +confidentialité confidentialité nom f s 1.31 0 1.31 0 +confidentiel confidentiel adj m s 9.57 4.73 5.68 2.77 +confidentielle confidentiel adj f s 9.57 4.73 1.72 0.88 +confidentiellement confidentiellement adv 0.37 0.41 0.37 0.41 +confidentielles confidentiel adj f p 9.57 4.73 0.84 0.68 +confidentiels confidentiel adj m p 9.57 4.73 1.33 0.41 +confidents confident nom m p 1.28 5.54 0.26 0.41 +confie confier ver 41.5 69.53 8.29 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confient confier ver 41.5 69.53 0.38 0.81 ind:pre:3p; +confier confier ver 41.5 69.53 11.61 16.62 inf;;inf;;inf;; +confiera confier ver 41.5 69.53 0.24 0.27 ind:fut:3s; +confierai confier ver 41.5 69.53 0.31 0.54 ind:fut:1s; +confieraient confier ver 41.5 69.53 0.01 0.14 cnd:pre:3p; +confierais confier ver 41.5 69.53 0.27 0.07 cnd:pre:1s; +confierait confier ver 41.5 69.53 0.23 0.95 cnd:pre:3s; +confieras confier ver 41.5 69.53 0.1 0 ind:fut:2s; +confierez confier ver 41.5 69.53 0.04 0.07 ind:fut:2p; +confieriez confier ver 41.5 69.53 0.04 0.07 cnd:pre:2p; +confiez confier ver 41.5 69.53 1.15 0.88 imp:pre:2p;ind:pre:2p; +configuration configuration nom f s 1.15 1.55 1 1.55 +configurations configuration nom f p 1.15 1.55 0.15 0 +configure configurer ver 0.18 0 0.05 0 imp:pre:2s;ind:pre:1s; +configurer configurer ver 0.18 0 0.07 0 inf; +configuré configurer ver m s 0.18 0 0.07 0 par:pas; +confiions confier ver 41.5 69.53 0 0.07 ind:imp:1p; +confina confiner ver 1.83 5.34 0 0.07 ind:pas:3s; +confinaient confiner ver 1.83 5.34 0 0.54 ind:imp:3p; +confinait confiner ver 1.83 5.34 0 0.68 ind:imp:3s; +confinant confiner ver 1.83 5.34 0.01 0.2 par:pre; +confine confiner ver 1.83 5.34 0.2 0.61 ind:pre:3s; +confinement confinement nom m s 1.01 0.34 1.01 0.34 +confinent confiner ver 1.83 5.34 0 0.2 ind:pre:3p; +confiner confiner ver 1.83 5.34 0.23 0.34 inf; +confinerez confiner ver 1.83 5.34 0.01 0 ind:fut:2p; +confins confins nom m p 1.66 7.3 1.66 7.3 +confiné confiner ver m s 1.83 5.34 0.78 1.08 par:pas; +confinée confiner ver f s 1.83 5.34 0.2 0.88 par:pas; +confinées confiner ver f p 1.83 5.34 0.02 0.2 par:pas; +confinés confiner ver m p 1.83 5.34 0.38 0.54 par:pas; +confions confier ver 41.5 69.53 0.89 0.14 imp:pre:1p;ind:pre:1p; +confiote confiote nom f s 0.02 0.2 0.02 0.14 +confiotes confiote nom f p 0.02 0.2 0 0.07 +confire confire ver 0.3 0.95 0.01 0 inf; +confirma confirmer ver 33.8 27.57 0.06 3.45 ind:pas:3s; +confirmai confirmer ver 33.8 27.57 0 0.54 ind:pas:1s; +confirmaient confirmer ver 33.8 27.57 0.17 0.74 ind:imp:3p; +confirmais confirmer ver 33.8 27.57 0.01 0.14 ind:imp:1s; +confirmait confirmer ver 33.8 27.57 0.05 2.57 ind:imp:3s; +confirmant confirmer ver 33.8 27.57 0.5 1.08 par:pre; +confirmation confirmation nom f s 5.55 5.27 5.15 5.14 +confirmations confirmation nom f p 5.55 5.27 0.4 0.14 +confirme confirmer ver 33.8 27.57 9.27 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confirment confirmer ver 33.8 27.57 1.75 0.68 ind:pre:3p; +confirmer confirmer ver 33.8 27.57 7.26 6.96 inf;; +confirmera confirmer ver 33.8 27.57 1.35 0.27 ind:fut:3s; +confirmerai confirmer ver 33.8 27.57 0.11 0.07 ind:fut:1s; +confirmeraient confirmer ver 33.8 27.57 0.03 0 cnd:pre:3p; +confirmerait confirmer ver 33.8 27.57 0.17 0.68 cnd:pre:3s; +confirmerez confirmer ver 33.8 27.57 0.05 0 ind:fut:2p; +confirmeront confirmer ver 33.8 27.57 0.38 0.14 ind:fut:3p; +confirmes confirmer ver 33.8 27.57 0.31 0.07 ind:pre:2s; +confirmez confirmer ver 33.8 27.57 2.63 0 imp:pre:2p;ind:pre:2p; +confirmions confirmer ver 33.8 27.57 0.01 0.07 ind:imp:1p; +confirmons confirmer ver 33.8 27.57 0.31 0 imp:pre:1p;ind:pre:1p; +confirmâmes confirmer ver 33.8 27.57 0.1 0 ind:pas:1p; +confirmât confirmer ver 33.8 27.57 0 0.2 sub:imp:3s; +confirmèrent confirmer ver 33.8 27.57 0.01 0.61 ind:pas:3p; +confirmé confirmer ver m s 33.8 27.57 7.73 3.92 par:pas; +confirmée confirmé adj f s 3.84 1.28 1.04 0.27 +confirmées confirmer ver f p 33.8 27.57 0.4 0.14 par:pas; +confirmés confirmé adj m p 3.84 1.28 0.4 0.14 +confiscation confiscation nom f s 0.47 0.81 0.41 0.74 +confiscations confiscation nom f p 0.47 0.81 0.05 0.07 +confiserie confiserie nom f s 1.56 1.69 0.91 0.95 +confiseries confiserie nom f p 1.56 1.69 0.66 0.74 +confiseur confiseur nom m s 0.27 1.15 0.22 0.54 +confiseurs confiseur nom m p 0.27 1.15 0.04 0.61 +confiseuse confiseur nom f s 0.27 1.15 0.01 0 +confisqua confisquer ver 5.92 3.58 0.02 0.34 ind:pas:3s; +confisquaient confisquer ver 5.92 3.58 0.01 0.07 ind:imp:3p; +confisquait confisquer ver 5.92 3.58 0.01 0.47 ind:imp:3s; +confisquant confisquer ver 5.92 3.58 0.01 0.14 par:pre; +confisque confisquer ver 5.92 3.58 1.11 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confisquent confisquer ver 5.92 3.58 0.2 0.14 ind:pre:3p; +confisquer confisquer ver 5.92 3.58 1.03 0.54 inf; +confisquera confisquer ver 5.92 3.58 0.01 0.07 ind:fut:3s; +confisquerai confisquer ver 5.92 3.58 0.03 0 ind:fut:1s; +confisqueraient confisquer ver 5.92 3.58 0.01 0 cnd:pre:3p; +confisquerait confisquer ver 5.92 3.58 0.01 0 cnd:pre:3s; +confisquerons confisquer ver 5.92 3.58 0.34 0 ind:fut:1p; +confisqueront confisquer ver 5.92 3.58 0.03 0 ind:fut:3p; +confisquez confisquer ver 5.92 3.58 0.16 0 imp:pre:2p;ind:pre:2p; +confisquons confisquer ver 5.92 3.58 0.02 0 ind:pre:1p; +confisquât confisquer ver 5.92 3.58 0 0.07 sub:imp:3s; +confisquèrent confisquer ver 5.92 3.58 0 0.07 ind:pas:3p; +confisqué confisquer ver m s 5.92 3.58 2.06 0.68 par:pas; +confisquée confisquer ver f s 5.92 3.58 0.36 0.41 par:pas; +confisquées confisquer ver f p 5.92 3.58 0.19 0.27 par:pas; +confisqués confisquer ver m p 5.92 3.58 0.3 0.2 par:pas; +confit confit adj m s 0.71 2.43 0.25 0.2 +confite confit adj f s 0.71 2.43 0.15 0.34 +confiteor confiteor nom m 0 0.41 0 0.41 +confites confit adj f p 0.71 2.43 0.17 0.34 +confits confit adj m p 0.71 2.43 0.15 1.55 +confiture confiture nom f s 7.41 15.41 6.71 8.72 +confitures confiture nom f p 7.41 15.41 0.7 6.69 +confituriers confiturier nom m p 0.01 0.14 0 0.14 +confiturière confiturier nom f s 0.01 0.14 0.01 0 +confiâmes confier ver 41.5 69.53 0 0.07 ind:pas:1p; +confiât confier ver 41.5 69.53 0 0.47 sub:imp:3s; +confièrent confier ver 41.5 69.53 0.11 0.47 ind:pas:3p; +confié confier ver m s 41.5 69.53 10.71 15 par:pas; +confiée confier ver f s 41.5 69.53 3.38 4.19 par:pas; +confiées confier ver f p 41.5 69.53 0.69 0.68 par:pas; +confiés confier ver m p 41.5 69.53 0.92 0.95 par:pas; +conflagration conflagration nom f s 0 0.41 0 0.41 +conflictuel conflictuel adj m s 0.7 0 0.18 0 +conflictuelle conflictuel adj f s 0.7 0 0.33 0 +conflictuelles conflictuel adj f p 0.7 0 0.06 0 +conflictuels conflictuel adj m p 0.7 0 0.13 0 +conflit conflit nom m s 13.79 14.12 9.63 11.08 +conflits conflit nom m p 13.79 14.12 4.16 3.04 +confluaient confluer ver 0.07 0.68 0 0.14 ind:imp:3p; +confluait confluer ver 0.07 0.68 0 0.14 ind:imp:3s; +confluant confluer ver 0.07 0.68 0 0.07 par:pre; +conflue confluer ver 0.07 0.68 0.01 0.07 ind:pre:3s; +confluence confluence nom f s 0.27 0.27 0.27 0.27 +confluent confluent nom m s 0.21 0.88 0.21 0.81 +confluents confluent nom m p 0.21 0.88 0 0.07 +confluer confluer ver 0.07 0.68 0.05 0.14 inf; +conflué confluer ver m s 0.07 0.68 0 0.07 par:pas; +confond confondre ver 16.15 53.85 2.09 5.47 ind:pre:3s; +confondaient confondre ver 16.15 53.85 0.05 4.73 ind:imp:3p; +confondais confondre ver 16.15 53.85 0.16 0.81 ind:imp:1s;ind:imp:2s; +confondait confondre ver 16.15 53.85 0.21 8.58 ind:imp:3s; +confondant confondre ver 16.15 53.85 0.03 2.23 par:pre; +confondante confondant adj f s 0.01 0.95 0.01 0.14 +confondantes confondant adj f p 0.01 0.95 0 0.2 +confondants confondant adj m p 0.01 0.95 0 0.2 +confonde confondre ver 16.15 53.85 0.22 0.68 sub:pre:1s;sub:pre:3s; +confondent confondre ver 16.15 53.85 1.01 4.19 ind:pre:3p; +confondez confondre ver 16.15 53.85 0.89 0.74 imp:pre:2p;ind:pre:2p; +confondions confondre ver 16.15 53.85 0 0.47 ind:imp:1p; +confondirent confondre ver 16.15 53.85 0 0.41 ind:pas:3p; +confondis confondre ver 16.15 53.85 0 0.14 ind:pas:1s; +confondit confondre ver 16.15 53.85 0.04 1.08 ind:pas:3s; +confondons confondre ver 16.15 53.85 0.16 0.27 imp:pre:1p; +confondra confondre ver 16.15 53.85 0.2 0.34 ind:fut:3s; +confondrai confondre ver 16.15 53.85 0.01 0 ind:fut:1s; +confondrais confondre ver 16.15 53.85 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +confondrait confondre ver 16.15 53.85 0.41 0.27 cnd:pre:3s; +confondre confondre ver 16.15 53.85 4.83 13.18 inf; +confondrez confondre ver 16.15 53.85 0.01 0.07 ind:fut:2p; +confondront confondre ver 16.15 53.85 0.31 0.14 ind:fut:3p; +confonds confondre ver 16.15 53.85 2.5 1.82 imp:pre:2s;ind:pre:1s;ind:pre:2s; +confondu confondre ver m s 16.15 53.85 2.5 3.65 par:pas; +confondue confondre ver f s 16.15 53.85 0.32 1.62 par:pas; +confondues confondu adj f p 0.3 3.85 0.06 1.42 +confondus confondu adj m p 0.3 3.85 0.21 1.69 +confondît confondre ver 16.15 53.85 0 0.14 sub:imp:3s; +conformai conformer ver 1.62 5 0 0.07 ind:pas:1s; +conformaient conformer ver 1.62 5 0 0.07 ind:imp:3p; +conformais conformer ver 1.62 5 0 0.14 ind:imp:1s; +conformait conformer ver 1.62 5 0.01 0.54 ind:imp:3s; +conformant conformer ver 1.62 5 0.25 0.41 par:pre; +conformation conformation nom f s 0.01 0.27 0.01 0.27 +conforme conforme adj s 2.07 10.2 1.63 8.18 +conforment conformer ver 1.62 5 0.13 0.2 ind:pre:3p; +conformer conformer ver 1.62 5 0.6 2.16 inf; +conformera conformer ver 1.62 5 0.06 0 ind:fut:3s; +conformerai conformer ver 1.62 5 0.15 0 ind:fut:1s; +conformeraient conformer ver 1.62 5 0 0.07 cnd:pre:3p; +conformerez conformer ver 1.62 5 0.01 0 ind:fut:2p; +conformes conforme adj p 2.07 10.2 0.44 2.03 +conformisme conformisme nom m s 1.22 3.31 1.22 3.24 +conformismes conformisme nom m p 1.22 3.31 0 0.07 +conformiste conformiste nom s 0.42 0.95 0.32 0.47 +conformistes conformiste nom p 0.42 0.95 0.1 0.47 +conformité conformité nom f s 0.52 1.22 0.52 1.22 +conformât conformer ver 1.62 5 0 0.2 sub:imp:3s; +conformé conformer ver m s 1.62 5 0.04 0.14 par:pas; +conformée conformer ver f s 1.62 5 0.01 0.07 par:pas; +conformément conformément adv 3.09 4.26 3.09 4.26 +confort confort nom m s 6.02 17.03 5.97 16.62 +conforta conforter ver 0.47 1.82 0 0.14 ind:pas:3s; +confortable confortable adj s 13.78 15.2 12.04 12.3 +confortablement confortablement adv 1.54 3.24 1.54 3.24 +confortables confortable adj p 13.78 15.2 1.74 2.91 +confortaient conforter ver 0.47 1.82 0 0.07 ind:imp:3p; +confortait conforter ver 0.47 1.82 0 0.07 ind:imp:3s; +confortant conforter ver 0.47 1.82 0.01 0 par:pre; +conforte conforter ver 0.47 1.82 0.16 0.14 ind:pre:1s;ind:pre:3s; +conforter conforter ver 0.47 1.82 0.23 0.61 inf; +conforterait conforter ver 0.47 1.82 0.01 0.07 cnd:pre:3s; +conforts confort nom m p 6.02 17.03 0.05 0.41 +conforté conforter ver m s 0.47 1.82 0.05 0.41 par:pas; +confortée conforter ver f s 0.47 1.82 0.01 0.34 par:pas; +confraternel confraternel adj m s 0.01 0.41 0.01 0.14 +confraternelle confraternel adj f s 0.01 0.41 0 0.07 +confraternellement confraternellement adv 0 0.07 0 0.07 +confraternelles confraternel adj f p 0.01 0.41 0 0.14 +confraternels confraternel adj m p 0.01 0.41 0 0.07 +confraternité confraternité nom f s 0 0.07 0 0.07 +confrontai confronter ver 8.14 5.41 0 0.07 ind:pas:1s; +confrontaient confronter ver 8.14 5.41 0 0.14 ind:imp:3p; +confrontais confronter ver 8.14 5.41 0.01 0.14 ind:imp:1s; +confrontait confronter ver 8.14 5.41 0.01 0.14 ind:imp:3s; +confrontant confronter ver 8.14 5.41 0.05 0.27 par:pre; +confrontation confrontation nom f s 2.44 3.45 2.12 2.84 +confrontations confrontation nom f p 2.44 3.45 0.32 0.61 +confronte confronter ver 8.14 5.41 0.59 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confrontent confronter ver 8.14 5.41 0.16 0.2 ind:pre:3p; +confronter confronter ver 8.14 5.41 2.11 1.35 inf; +confrontez confronter ver 8.14 5.41 0.08 0 imp:pre:2p;ind:pre:2p; +confrontons confronter ver 8.14 5.41 0.06 0 imp:pre:1p;ind:pre:1p; +confrontèrent confronter ver 8.14 5.41 0 0.07 ind:pas:3p; +confronté confronter ver m s 8.14 5.41 2.76 1.28 par:pas; +confrontée confronter ver f s 8.14 5.41 0.69 0.61 par:pas; +confrontées confronter ver f p 8.14 5.41 0.19 0.27 par:pas; +confrontés confronter ver m p 8.14 5.41 1.43 0.68 par:pas; +confrère confrère nom m s 3.98 11.28 2.76 5 +confrères confrère nom m p 3.98 11.28 1.22 6.28 +confrérie confrérie nom f s 3.02 1.69 2.86 1.49 +confréries confrérie nom f p 3.02 1.69 0.16 0.2 +confucianisme confucianisme nom m s 0.02 0.14 0.02 0.14 +confucéenne confucéen adj f s 0 0.07 0 0.07 +confus confus adj m 11.02 37.23 7.48 19.86 +confuse confus adj f s 11.02 37.23 2.76 12.7 +confuses confus adj f p 11.02 37.23 0.77 4.66 +confusion confusion nom f s 8.53 20.61 8.12 20.07 +confusionnisme confusionnisme nom m s 0.01 0.07 0.01 0.07 +confusions confusion nom f p 8.53 20.61 0.41 0.54 +confusément confusément adv 0.03 10 0.03 10 +confère conférer ver 2.99 13.18 0.78 3.11 ind:pre:1s;ind:pre:3s; +confèrent conférer ver 2.99 13.18 0.17 0.54 ind:pre:3p; +confédéral confédéral adj m s 0 0.14 0 0.07 +confédération confédération nom f s 0.56 1.15 0.56 1.15 +confédéraux confédéral adj m p 0 0.14 0 0.07 +confédérer confédérer ver 0.03 0.07 0 0.07 inf; +confédéré confédéré adj m s 0.79 0 0.36 0 +confédérée confédéré adj f s 0.79 0 0.11 0 +confédérés confédéré nom m p 0.95 0.07 0.86 0.07 +conféra conférer ver 2.99 13.18 0 0.14 ind:pas:3s; +conféraient conférer ver 2.99 13.18 0 0.81 ind:imp:3p; +conférais conférer ver 2.99 13.18 0 0.07 ind:imp:1s; +conférait conférer ver 2.99 13.18 0.04 3.24 ind:imp:3s; +conférant conférer ver 2.99 13.18 0.03 0.95 par:pre; +conférence conférence nom f s 19.86 22.03 17.37 16.28 +conférences conférence nom f p 19.86 22.03 2.49 5.74 +conférence_débat conférence_débat nom f p 0 0.07 0 0.07 +conférencier conférencier nom m s 0.43 0.95 0.26 0.61 +conférenciers conférencier nom m p 0.43 0.95 0.15 0.34 +conférencière conférencier nom f s 0.43 0.95 0.03 0 +conférents conférent nom m p 0 0.07 0 0.07 +conférer conférer ver 2.99 13.18 0.09 2.3 inf; +conférera conférer ver 2.99 13.18 0.01 0.07 ind:fut:3s; +conféreraient conférer ver 2.99 13.18 0 0.07 cnd:pre:3p; +conférerait conférer ver 2.99 13.18 0 0.14 cnd:pre:3s; +conférerez conférer ver 2.99 13.18 0 0.07 ind:fut:2p; +conféreront conférer ver 2.99 13.18 0.01 0.07 ind:fut:3p; +conférez conférer ver 2.99 13.18 0.01 0 ind:pre:2p; +conférât conférer ver 2.99 13.18 0 0.07 sub:imp:3s; +conférèrent conférer ver 2.99 13.18 0 0.07 ind:pas:3p; +conféré conférer ver m s 2.99 13.18 0.22 0.95 par:pas; +conférée conférer ver f s 2.99 13.18 0.18 0.27 par:pas; +conférées conférer ver f p 2.99 13.18 0.01 0.07 par:pas; +conférés conférer ver m p 2.99 13.18 1.45 0.2 par:pas; +conga conga nom f s 0.2 0.07 0.14 0.07 +congas conga nom f p 0.2 0.07 0.06 0 +congayes congaye nom f p 0 0.07 0 0.07 +congaïs congaï nom f p 0 0.07 0 0.07 +congela congeler ver 3.85 0.74 0.02 0 ind:pas:3s; +congelait congeler ver 3.85 0.74 0.01 0 ind:imp:3s; +congelant congeler ver 3.85 0.74 0.01 0 par:pre; +congeler congeler ver 3.85 0.74 1.12 0.14 inf; +congelez congeler ver 3.85 0.74 0.04 0 imp:pre:2p;ind:pre:2p; +congelons congeler ver 3.85 0.74 0.16 0 ind:pre:1p; +congelé congelé adj m s 1.87 0.68 1.16 0.27 +congelée congeler ver f s 3.85 0.74 0.57 0.14 par:pas; +congelées congelé adj f p 1.87 0.68 0.23 0.07 +congelés congelé adj m p 1.87 0.68 0.31 0.27 +congestif congestif adj m s 0.07 0 0.03 0 +congestion congestion nom f s 1.1 1.76 1.08 1.69 +congestionnaient congestionner ver 0.16 1.42 0 0.07 ind:imp:3p; +congestionnait congestionner ver 0.16 1.42 0 0.2 ind:imp:3s; +congestionne congestionner ver 0.16 1.42 0.01 0.07 ind:pre:3s; +congestionnent congestionner ver 0.16 1.42 0.11 0 ind:pre:3p; +congestionné congestionner ver m s 0.16 1.42 0.03 0.74 par:pas; +congestionnée congestionné adj f s 0.1 2.43 0.04 0.27 +congestionnées congestionné adj f p 0.1 2.43 0.04 0.2 +congestionnés congestionné adj m p 0.1 2.43 0.01 0.54 +congestions congestion nom f p 1.1 1.76 0.03 0.07 +congestive congestif adj f s 0.07 0 0.04 0 +conglobation conglobation nom f s 0 0.07 0 0.07 +conglomérat conglomérat nom m s 0.44 0.54 0.38 0.41 +conglomérats conglomérat nom m p 0.44 0.54 0.06 0.14 +conglomérée conglomérer ver f s 0 0.07 0 0.07 par:pas; +congolais congolais adj m 0.3 0.2 0.28 0.07 +congolaise congolais adj f s 0.3 0.2 0.01 0.14 +congratula congratuler ver 0.19 2.3 0 0.07 ind:pas:3s; +congratulaient congratuler ver 0.19 2.3 0 0.41 ind:imp:3p; +congratulait congratuler ver 0.19 2.3 0 0.47 ind:imp:3s; +congratulant congratuler ver 0.19 2.3 0 0.07 par:pre; +congratulations congratulation nom f p 0.09 0.41 0.09 0.41 +congratule congratuler ver 0.19 2.3 0.01 0.14 ind:pre:3s; +congratulent congratuler ver 0.19 2.3 0 0.27 ind:pre:3p; +congratuler congratuler ver 0.19 2.3 0.17 0.47 inf; +congratulions congratuler ver 0.19 2.3 0 0.07 ind:imp:1p; +congratulâmes congratuler ver 0.19 2.3 0 0.07 ind:pas:1p; +congratulèrent congratuler ver 0.19 2.3 0 0.14 ind:pas:3p; +congratulé congratuler ver m s 0.19 2.3 0.01 0.07 par:pas; +congratulés congratuler ver m p 0.19 2.3 0 0.07 par:pas; +congre congre nom m s 0.44 0.2 0.01 0.14 +congres congre nom m p 0.44 0.2 0.43 0.07 +congressistes congressiste nom p 0.04 0.2 0.04 0.2 +congrue congru adj f s 0 0.34 0 0.34 +congrès congrès nom m 15.77 8.78 15.77 8.78 +congréganiste congréganiste nom s 0 0.07 0 0.07 +congrégation congrégation nom f s 1.34 0.61 1.33 0.34 +congrégationaliste congrégationaliste adj f s 0.01 0 0.01 0 +congrégations congrégation nom f p 1.34 0.61 0.01 0.27 +congrûment congrûment adv 0 0.07 0 0.07 +congèle congeler ver 3.85 0.74 0.37 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +congèlera congeler ver 3.85 0.74 0.11 0 ind:fut:3s; +congèlerais congeler ver 3.85 0.74 0.01 0 cnd:pre:1s; +congère congère nom f s 0.05 1.15 0.02 0.34 +congères congère nom f p 0.05 1.15 0.03 0.81 +congé congé nom m s 20.74 21.62 18.16 17.64 +congédia congédier ver 2.17 3.45 0 0.68 ind:pas:3s; +congédiai congédier ver 2.17 3.45 0 0.07 ind:pas:1s; +congédiait congédier ver 2.17 3.45 0 0.14 ind:imp:3s; +congédiant congédier ver 2.17 3.45 0 0.2 par:pre; +congédie congédier ver 2.17 3.45 0.38 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +congédiement congédiement nom m s 0.02 0.14 0.02 0.14 +congédient congédier ver 2.17 3.45 0.01 0 ind:pre:3p; +congédier congédier ver 2.17 3.45 0.68 0.81 inf; +congédiez congédier ver 2.17 3.45 0.08 0 imp:pre:2p;ind:pre:2p; +congédié congédier ver m s 2.17 3.45 0.69 0.68 par:pas; +congédiée congédier ver f s 2.17 3.45 0.26 0 par:pas; +congédiées congédier ver f p 2.17 3.45 0 0.07 par:pas; +congédiés congédier ver m p 2.17 3.45 0.07 0.14 par:pas; +congélateur congélateur nom m s 2 0.34 1.96 0.34 +congélateurs congélateur nom m p 2 0.34 0.04 0 +congélation congélation nom f s 0.49 0.47 0.49 0.47 +congénital congénital adj m s 0.82 1.96 0.34 0.61 +congénitale congénital adj f s 0.82 1.96 0.34 1.08 +congénitalement congénitalement adv 0 0.2 0 0.2 +congénitales congénital adj f p 0.82 1.96 0.13 0.14 +congénitaux congénital adj m p 0.82 1.96 0.02 0.14 +congénère congénère nom s 0.38 1.89 0.02 0.27 +congénères congénère nom p 0.38 1.89 0.36 1.62 +congés congé nom m p 20.74 21.62 2.58 3.99 +conifère conifère nom m s 0.15 0.81 0.02 0.07 +conifères conifère nom m p 0.15 0.81 0.13 0.74 +conique conique adj s 0.07 2.64 0.06 1.76 +coniques conique adj p 0.07 2.64 0.01 0.88 +conjecturai conjecturer ver 0.23 0.2 0.01 0 ind:pas:1s; +conjectural conjectural adj m s 0.01 0.07 0 0.07 +conjecturale conjectural adj f s 0.01 0.07 0.01 0 +conjecture conjecture nom f s 0.65 1.55 0.28 0.27 +conjecturent conjecturer ver 0.23 0.2 0.01 0 ind:pre:3p; +conjecturer conjecturer ver 0.23 0.2 0.14 0.2 inf; +conjectures conjecture nom f p 0.65 1.55 0.37 1.28 +conjoindre conjoindre ver 0.05 0.14 0.01 0 inf; +conjoint conjoint nom m s 0.98 1.76 0.55 1.08 +conjointe conjoint adj f s 0.48 0.95 0.3 0.68 +conjointement conjointement adv 0.23 1.35 0.23 1.35 +conjointes conjoint adj f p 0.48 0.95 0.06 0.07 +conjoints conjoint nom m p 0.98 1.76 0.41 0.54 +conjoncteur conjoncteur nom m s 0.01 0 0.01 0 +conjonctif conjonctif adj m s 0.11 0.07 0.09 0 +conjonction conjonction nom f s 0.41 2.43 0.41 1.96 +conjonctions conjonction nom f p 0.41 2.43 0 0.47 +conjonctive conjonctif adj f s 0.11 0.07 0.01 0 +conjonctive conjonctive nom f s 0.01 0.07 0.01 0 +conjonctives conjonctif adj f p 0.11 0.07 0.01 0.07 +conjonctivite conjonctivite nom f s 0.54 0.47 0.39 0.34 +conjonctivites conjonctivite nom f p 0.54 0.47 0.16 0.14 +conjoncture conjoncture nom f s 0.8 2.5 0.79 2.16 +conjonctures conjoncture nom f p 0.8 2.5 0.01 0.34 +conjugaison conjugaison nom f s 0.14 1.15 0.04 0.74 +conjugaisons conjugaison nom f p 0.14 1.15 0.1 0.41 +conjugal conjugal adj m s 4.88 9.59 1.42 4.46 +conjugale conjugal adj f s 4.88 9.59 2.08 3.18 +conjugalement conjugalement adv 0 0.07 0 0.07 +conjugales conjugal adj f p 4.88 9.59 0.67 1.08 +conjugalité conjugalité nom f s 0 0.27 0 0.27 +conjugaux conjugal adj m p 4.88 9.59 0.72 0.88 +conjuguaient conjuguer ver 0.59 5.74 0 0.2 ind:imp:3p; +conjuguait conjuguer ver 0.59 5.74 0 0.27 ind:imp:3s; +conjuguant conjuguer ver 0.59 5.74 0 0.07 par:pre; +conjugue conjuguer ver 0.59 5.74 0.27 0.2 imp:pre:2s;ind:pre:3s; +conjuguent conjuguer ver 0.59 5.74 0 0.54 ind:pre:3p; +conjuguer conjuguer ver 0.59 5.74 0.21 1.01 inf; +conjuguerions conjuguer ver 0.59 5.74 0 0.07 cnd:pre:1p; +conjugues conjuguer ver 0.59 5.74 0 0.14 ind:pre:2s; +conjugué conjugué adj m s 0.15 0.41 0.15 0.34 +conjuguée conjuguer ver f s 0.59 5.74 0 0.74 par:pas; +conjuguées conjuguer ver f p 0.59 5.74 0 0.68 par:pas; +conjugués conjuguer ver m p 0.59 5.74 0.12 1.08 par:pas; +conjungo conjungo nom m s 0 0.27 0 0.2 +conjungos conjungo nom m p 0 0.27 0 0.07 +conjura conjurer ver 5.88 6.35 0 0.2 ind:pas:3s; +conjurait conjurer ver 5.88 6.35 0 0.2 ind:imp:3s; +conjurant conjurer ver 5.88 6.35 0.02 0.07 par:pre; +conjurateur conjurateur nom m s 0.01 0 0.01 0 +conjuration conjuration nom f s 0.32 1.69 0.32 1.35 +conjurations conjuration nom f p 0.32 1.69 0 0.34 +conjuratoire conjuratoire adj f s 0.01 0 0.01 0 +conjure conjurer ver 5.88 6.35 5.01 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conjurer conjurer ver 5.88 6.35 0.49 3.78 inf; +conjurera conjurer ver 5.88 6.35 0 0.07 ind:fut:3s; +conjuré conjurer ver m s 5.88 6.35 0.21 0.27 par:pas; +conjurée conjuré nom f s 0.56 0.47 0.01 0.07 +conjurées conjurer ver f p 5.88 6.35 0 0.07 par:pas; +conjurés conjuré nom m p 0.56 0.47 0.55 0.34 +connais connaître ver 961.03 629.26 415.87 111.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +connaissable connaissable adj m s 0.01 0.2 0.01 0.14 +connaissables connaissable adj p 0.01 0.2 0 0.07 +connaissaient connaître ver 961.03 629.26 5.23 16.08 ind:imp:3p; +connaissais connaître ver 961.03 629.26 34.19 41.82 ind:imp:1s;ind:imp:2s; +connaissait connaître ver 961.03 629.26 20.02 90.68 ind:imp:3s; +connaissance connaissance nom f s 43.08 67.5 36.6 55.81 +connaissances connaissance nom f p 43.08 67.5 6.47 11.69 +connaissant connaître ver 961.03 629.26 2.65 8.51 par:pre; +connaisse connaître ver 961.03 629.26 10.78 4.32 sub:pre:1s;sub:pre:3s; +connaissement connaissement nom m s 0.06 0.07 0.06 0 +connaissements connaissement nom m p 0.06 0.07 0 0.07 +connaissent connaître ver 961.03 629.26 18.32 16.89 ind:pre:3p; +connaisses connaître ver 961.03 629.26 1.9 0.74 sub:pre:2s; +connaisseur connaisseur nom m s 1.36 5.61 1.09 3.04 +connaisseurs connaisseur nom m p 1.36 5.61 0.24 1.76 +connaisseuse connaisseur nom f s 1.36 5.61 0.04 0.68 +connaisseuses connaisseur nom f p 1.36 5.61 0 0.14 +connaissez connaître ver 961.03 629.26 125.09 29.53 imp:pre:2p;ind:pre:2p; +connaissiez connaître ver 961.03 629.26 13.71 2.84 ind:imp:2p;sub:pre:2p; +connaissions connaître ver 961.03 629.26 1.4 5.61 ind:imp:1p; +connaissons connaître ver 961.03 629.26 11.78 6.89 imp:pre:1p;ind:pre:1p; +connard connard nom m s 50.13 6.28 40.7 4.53 +connards connard nom m p 50.13 6.28 9.44 1.76 +connasse connasse nom f s 5.29 2.03 5.1 1.55 +connasses connasse nom f p 5.29 2.03 0.2 0.47 +connaît connaître ver 961.03 629.26 103.42 57.03 ind:pre:3s; +connaîtra connaître ver 961.03 629.26 2.67 1.69 ind:fut:3s; +connaîtrai connaître ver 961.03 629.26 1.17 1.96 ind:fut:1s; +connaîtraient connaître ver 961.03 629.26 0.07 0.95 cnd:pre:3p; +connaîtrais connaître ver 961.03 629.26 1.54 1.62 cnd:pre:1s;cnd:pre:2s; +connaîtrait connaître ver 961.03 629.26 0.72 2.77 cnd:pre:3s; +connaîtras connaître ver 961.03 629.26 1.85 1.42 ind:fut:2s; +connaître connaître ver 961.03 629.26 88.63 90.14 inf;;inf;;inf;; +connaîtrez connaître ver 961.03 629.26 1.47 0.74 ind:fut:2p; +connaîtriez connaître ver 961.03 629.26 0.7 0.2 cnd:pre:2p; +connaîtrions connaître ver 961.03 629.26 0.03 0.14 cnd:pre:1p; +connaîtrons connaître ver 961.03 629.26 0.76 0.88 ind:fut:1p; +connaîtront connaître ver 961.03 629.26 0.81 0.74 ind:fut:3p; +conne con nom f s 122.62 68.99 8.57 3.78 +conneau conneau nom m s 0.16 0.27 0.16 0.14 +conneaux conneau nom m p 0.16 0.27 0 0.14 +connectant connecter ver 8.88 0.54 0.15 0 par:pre; +connecte connecter ver 8.88 0.54 1.11 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +connectent connecter ver 8.88 0.54 0.05 0 ind:pre:3p; +connecter connecter ver 8.88 0.54 1.73 0.14 inf; +connectera connecter ver 8.88 0.54 0.01 0 ind:fut:3s; +connecteur connecteur nom m s 0.08 0 0.08 0 +connectez connecter ver 8.88 0.54 0.34 0 imp:pre:2p;ind:pre:2p; +connectiez connecter ver 8.88 0.54 0.01 0 ind:imp:2p; +connections connecter ver 8.88 0.54 0.75 0.14 ind:imp:1p; +connectivité connectivité nom f s 0.06 0 0.06 0 +connectons connecter ver 8.88 0.54 0.01 0 ind:pre:1p; +connecté connecter ver m s 8.88 0.54 3.15 0.07 par:pas; +connectée connecter ver f s 8.88 0.54 0.48 0 par:pas; +connectées connecter ver f p 8.88 0.54 0.18 0.07 par:pas; +connectés connecter ver m p 8.88 0.54 0.9 0.14 par:pas; +connement connement adv 0 1.28 0 1.28 +connerie connerie nom f s 95.42 29.73 19.68 12.5 +conneries connerie nom f p 95.42 29.73 75.75 17.23 +connes con nom f p 122.62 68.99 0.71 0.74 +connexe connexe adj m s 0 0.2 0 0.14 +connexes connexe adj p 0 0.2 0 0.07 +connexion connexion nom f s 4.45 0.95 3.71 0.47 +connexions connexion nom f p 4.45 0.95 0.74 0.47 +connils connil nom m p 0 0.07 0 0.07 +connivence connivence nom f s 0.74 6.69 0.6 6.08 +connivences connivence nom f p 0.74 6.69 0.14 0.61 +connotation connotation nom f s 0.54 0.14 0.5 0.07 +connotations connotation nom f p 0.54 0.14 0.04 0.07 +connu connaître ver m s 961.03 629.26 70.33 84.53 par:pas; +connue connaître ver f s 961.03 629.26 13.32 17.77 par:pas; +connues connaître ver f p 961.03 629.26 2.03 5.34 par:pas; +connurent connaître ver 961.03 629.26 0.33 1.55 ind:pas:3p; +connus connaître ver m p 961.03 629.26 9.39 14.26 ind:pas:1s;ind:pas:2s;par:pas; +connusse connaître ver 961.03 629.26 0 0.34 sub:imp:1s; +connussent connaître ver 961.03 629.26 0 0.34 sub:imp:3p; +connusses connaître ver 961.03 629.26 0 0.07 sub:imp:2s; +connut connaître ver 961.03 629.26 0.84 7.09 ind:pas:3s; +connétable connétable nom m s 0.11 2.03 0.11 1.49 +connétables connétable nom m p 0.11 2.03 0 0.54 +connûmes connaître ver 961.03 629.26 0.01 0.2 ind:pas:1p; +connût connaître ver 961.03 629.26 0 2.23 sub:imp:3s; +conoïdaux conoïdal adj m p 0 0.07 0 0.07 +conoïde conoïde adj s 0 0.07 0 0.07 +conque conque nom f s 0.48 2.23 0.44 1.89 +conquerra conquérir ver 14.89 17.64 0.11 0 ind:fut:3s; +conquerraient conquérir ver 14.89 17.64 0 0.07 cnd:pre:3p; +conquerrons conquérir ver 14.89 17.64 0.02 0 ind:fut:1p; +conquerront conquérir ver 14.89 17.64 0.02 0.14 ind:fut:3p; +conques conque nom f p 0.48 2.23 0.04 0.34 +conquiers conquérir ver 14.89 17.64 0.13 0.07 imp:pre:2s;ind:pre:1s; +conquiert conquérir ver 14.89 17.64 0.49 0.68 ind:pre:3s; +conquirent conquérir ver 14.89 17.64 0.02 0.07 ind:pas:3p; +conquis conquérir ver m 14.89 17.64 5.4 7.97 par:pas; +conquise conquérir ver f s 14.89 17.64 0.77 0.95 par:pas; +conquises conquis adj f p 0.88 2.7 0.13 0.47 +conquistador conquistador nom m s 0.38 1.69 0.12 0.74 +conquistadores conquistador nom m p 0.38 1.69 0.01 0.54 +conquistadors conquistador nom m p 0.38 1.69 0.25 0.41 +conquit conquérir ver 14.89 17.64 0.29 0.81 ind:pas:3s; +conquière conquérir ver 14.89 17.64 0.02 0.07 sub:pre:1s;sub:pre:3s; +conquièrent conquérir ver 14.89 17.64 0.05 0.27 ind:pre:3p; +conquérait conquérir ver 14.89 17.64 0.01 0.07 ind:imp:3s; +conquérant conquérant nom m s 1.34 5.2 0.82 2.64 +conquérante conquérant adj f s 0.53 2.64 0.29 1.01 +conquérantes conquérant adj f p 0.53 2.64 0 0.27 +conquérants conquérant nom m p 1.34 5.2 0.52 2.36 +conquérez conquérir ver 14.89 17.64 0.02 0 imp:pre:2p;ind:pre:2p; +conquérir conquérir ver 14.89 17.64 7.11 5.54 inf; +conquérons conquérir ver 14.89 17.64 0.01 0.07 ind:pre:1p; +conquête conquête nom f s 5.95 16.42 3.85 10.88 +conquêtes conquête nom f p 5.95 16.42 2.1 5.54 +conquît conquérir ver 14.89 17.64 0 0.14 sub:imp:3s; +cons con nom m p 122.62 68.99 19.9 19.05 +consacra consacrer ver 18.27 38.18 0.29 1.89 ind:pas:3s; +consacrai consacrer ver 18.27 38.18 0.01 0.34 ind:pas:1s; +consacraient consacrer ver 18.27 38.18 0.14 0.41 ind:imp:3p; +consacrais consacrer ver 18.27 38.18 0.04 0.41 ind:imp:1s;ind:imp:2s; +consacrait consacrer ver 18.27 38.18 0.34 2.64 ind:imp:3s; +consacrant consacrer ver 18.27 38.18 0.07 1.15 par:pre; +consacre consacrer ver 18.27 38.18 2.94 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +consacrent consacrer ver 18.27 38.18 0.48 0.27 ind:pre:3p; +consacrer consacrer ver 18.27 38.18 5.1 11.89 inf; +consacrera consacrer ver 18.27 38.18 0.14 0.07 ind:fut:3s; +consacrerai consacrer ver 18.27 38.18 0.78 0.14 ind:fut:1s; +consacreraient consacrer ver 18.27 38.18 0 0.07 cnd:pre:3p; +consacrerais consacrer ver 18.27 38.18 0.02 0.07 cnd:pre:1s; +consacrerait consacrer ver 18.27 38.18 0.12 0.47 cnd:pre:3s; +consacreras consacrer ver 18.27 38.18 0.1 0 ind:fut:2s; +consacrerez consacrer ver 18.27 38.18 0.01 0 ind:fut:2p; +consacreriez consacrer ver 18.27 38.18 0 0.07 cnd:pre:2p; +consacrerions consacrer ver 18.27 38.18 0 0.07 cnd:pre:1p; +consacreront consacrer ver 18.27 38.18 0.11 0 ind:fut:3p; +consacres consacrer ver 18.27 38.18 0.31 0.2 ind:pre:2s; +consacrez consacrer ver 18.27 38.18 0.28 0.07 imp:pre:2p;ind:pre:2p; +consacriez consacrer ver 18.27 38.18 0.04 0.07 ind:imp:2p; +consacrons consacrer ver 18.27 38.18 0.39 0.07 imp:pre:1p;ind:pre:1p; +consacrèrent consacrer ver 18.27 38.18 0 0.2 ind:pas:3p; +consacré consacrer ver m s 18.27 38.18 4.13 6.15 par:pas; +consacrée consacrer ver f s 18.27 38.18 2.15 4.53 par:pas; +consacrées consacré adj f p 1.53 2.77 0.12 0.61 +consacrés consacrer ver m p 18.27 38.18 0.22 2.3 par:pas; +consanguin consanguin adj m s 0.13 0.61 0.02 0.14 +consanguine consanguin adj f s 0.13 0.61 0.02 0.07 +consanguinité consanguinité nom f s 0.22 0.27 0.22 0.2 +consanguinités consanguinité nom f p 0.22 0.27 0 0.07 +consanguins consanguin adj m p 0.13 0.61 0.09 0.41 +consciemment consciemment adv 0.92 2.36 0.92 2.36 +conscience conscience nom f s 45.53 81.55 44.46 80.07 +consciences conscience nom f p 45.53 81.55 1.07 1.49 +consciencieuse consciencieux adj f s 1.64 3.38 0.17 0.68 +consciencieusement consciencieusement adv 0.25 4.86 0.25 4.86 +consciencieuses consciencieux adj f p 1.64 3.38 0.01 0.41 +consciencieux consciencieux adj m 1.64 3.38 1.45 2.3 +conscient conscient adj m s 15.15 14.59 8.51 7.43 +consciente conscient adj f s 15.15 14.59 4 4.32 +conscientes conscient adj f p 15.15 14.59 0.34 0.47 +conscients conscient adj m p 15.15 14.59 2.3 2.36 +conscription conscription nom f s 0.16 0.2 0.16 0.2 +conscrit conscrit nom m s 0.27 1.89 0.02 0.88 +conscrits conscrit nom m p 0.27 1.89 0.25 1.01 +conseil conseil nom m s 87.14 84.46 68.86 58.18 +conseilla conseiller ver 32.11 34.93 0.03 4.59 ind:pas:3s; +conseillai conseiller ver 32.11 34.93 0 0.68 ind:pas:1s; +conseillaient conseiller ver 32.11 34.93 0.2 0.47 ind:imp:3p; +conseillais conseiller ver 32.11 34.93 0.22 0.74 ind:imp:1s;ind:imp:2s; +conseillait conseiller ver 32.11 34.93 0.09 3.51 ind:imp:3s; +conseillant conseiller ver 32.11 34.93 0.18 0.88 par:pre; +conseille conseiller ver 32.11 34.93 13.4 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +conseillent conseiller ver 32.11 34.93 0.29 0.14 ind:pre:3p; +conseiller conseiller nom m s 23.02 19.32 16.42 11.62 +conseillera conseiller ver 32.11 34.93 0.08 0.14 ind:fut:3s; +conseillerai conseiller ver 32.11 34.93 0.24 0.14 ind:fut:1s; +conseillerais conseiller ver 32.11 34.93 0.72 0.47 cnd:pre:1s; +conseillerait conseiller ver 32.11 34.93 0.07 0.2 cnd:pre:3s; +conseillerez conseiller ver 32.11 34.93 0.12 0.14 ind:fut:2p; +conseilleriez conseiller ver 32.11 34.93 0.07 0.07 cnd:pre:2p; +conseillers conseiller nom m p 23.02 19.32 4.74 6.89 +conseilles conseiller ver 32.11 34.93 0.83 0.2 ind:pre:2s; +conseilleurs conseilleur nom m p 0 0.07 0 0.07 +conseillez conseiller ver 32.11 34.93 1.63 0.61 imp:pre:2p;ind:pre:2p; +conseillons conseiller ver 32.11 34.93 0.78 0 imp:pre:1p;ind:pre:1p; +conseillère conseiller nom f s 23.02 19.32 1.82 0.74 +conseillèrent conseiller ver 32.11 34.93 0.01 0.27 ind:pas:3p; +conseillères conseiller nom f p 23.02 19.32 0.04 0.07 +conseillé conseiller ver m s 32.11 34.93 5.63 8.18 par:pas; +conseillée conseiller ver f s 32.11 34.93 0.16 0.41 par:pas; +conseillées conseiller ver f p 32.11 34.93 0.01 0.2 par:pas; +conseillés conseiller ver m p 32.11 34.93 0.52 0.41 par:pas; +conseils conseil nom m p 87.14 84.46 18.29 26.28 +consens consentir ver 6.03 34.46 1.12 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +consensuel consensuel adj m s 0.24 0.07 0.13 0.07 +consensuelle consensuel adj f s 0.24 0.07 0.11 0 +consensus consensus nom m 0.65 0.34 0.65 0.34 +consent consentir ver 6.03 34.46 0.9 3.11 ind:pre:3s; +consentaient consentir ver 6.03 34.46 0 0.88 ind:imp:3p; +consentais consentir ver 6.03 34.46 0.21 0.61 ind:imp:1s;ind:imp:2s; +consentait consentir ver 6.03 34.46 0.14 4.12 ind:imp:3s; +consentant consentant adj m s 1.47 2.77 0.51 0.68 +consentante consentant adj f s 1.47 2.77 0.55 1.55 +consentantes consentant adj f p 1.47 2.77 0.05 0.27 +consentants consentant adj m p 1.47 2.77 0.35 0.27 +consente consentir ver 6.03 34.46 0.02 0.61 sub:pre:1s;sub:pre:3s; +consentement consentement nom m s 3.56 5.95 2.96 5.68 +consentements consentement nom m p 3.56 5.95 0.59 0.27 +consentent consentir ver 6.03 34.46 0.28 0.95 ind:pre:3p; +consentes consentir ver 6.03 34.46 0.01 0.14 sub:pre:2s; +consentez consentir ver 6.03 34.46 0.69 0.27 imp:pre:2p;ind:pre:2p; +consenti consentir ver m s 6.03 34.46 0.98 6.82 par:pas; +consentie consentir ver f s 6.03 34.46 0.09 1.08 par:pas; +consenties consentir ver f p 6.03 34.46 0.03 0.34 par:pas; +consentiez consentir ver 6.03 34.46 0.01 0.07 ind:imp:2p; +consentions consentir ver 6.03 34.46 0 0.34 ind:imp:1p; +consentir consentir ver 6.03 34.46 0.5 4.32 inf; +consentira consentir ver 6.03 34.46 0.05 0.47 ind:fut:3s; +consentirai consentir ver 6.03 34.46 0.09 0.07 ind:fut:1s; +consentiraient consentir ver 6.03 34.46 0 0.07 cnd:pre:3p; +consentirais consentir ver 6.03 34.46 0.16 0.2 cnd:pre:1s;cnd:pre:2s; +consentirait consentir ver 6.03 34.46 0.06 1.35 cnd:pre:3s; +consentiras consentir ver 6.03 34.46 0.01 0.07 ind:fut:2s; +consentirent consentir ver 6.03 34.46 0 0.27 ind:pas:3p; +consentirez consentir ver 6.03 34.46 0.16 0.07 ind:fut:2p; +consentiriez consentir ver 6.03 34.46 0.01 0.14 cnd:pre:2p; +consentirions consentir ver 6.03 34.46 0 0.07 cnd:pre:1p; +consentiront consentir ver 6.03 34.46 0.13 0 ind:fut:3p; +consentis consentir ver m p 6.03 34.46 0.08 0.88 ind:pas:1s;par:pas; +consentisse consentir ver 6.03 34.46 0 0.07 sub:imp:1s; +consentissent consentir ver 6.03 34.46 0 0.14 sub:imp:3p; +consentit consentir ver 6.03 34.46 0.19 4.19 ind:pas:3s; +consentons consentir ver 6.03 34.46 0.05 0.07 ind:pre:1p; +consentît consentir ver 6.03 34.46 0.01 1.35 sub:imp:3s; +conserva conserver ver 15.08 55.14 0.34 1.22 ind:pas:3s; +conservai conserver ver 15.08 55.14 0 0.34 ind:pas:1s; +conservaient conserver ver 15.08 55.14 0.04 1.49 ind:imp:3p; +conservais conserver ver 15.08 55.14 0.06 0.2 ind:imp:1s; +conservait conserver ver 15.08 55.14 0.27 7.03 ind:imp:3s; +conservant conserver ver 15.08 55.14 0.35 2.7 par:pre; +conservateur conservateur adj m s 2.96 3.78 1.37 2.36 +conservateurs conservateur nom m p 1.68 5.2 0.68 1.82 +conservation conservation nom f s 0.85 3.24 0.85 3.24 +conservatisme conservatisme nom m s 0.01 0.54 0.01 0.54 +conservatoire conservatoire nom m s 4.68 2.97 4.67 2.77 +conservatoires conservatoire nom m p 4.68 2.97 0.01 0.2 +conservatrice conservateur adj f s 2.96 3.78 0.85 0.47 +conservatrices conservateur adj f p 2.96 3.78 0.07 0.14 +conserve conserver ver 15.08 55.14 3.42 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conservent conserver ver 15.08 55.14 0.41 1.42 ind:pre:3p; +conserver conserver ver 15.08 55.14 5.39 17.57 inf; +conservera conserver ver 15.08 55.14 0.31 0.27 ind:fut:3s; +conserverai conserver ver 15.08 55.14 0.03 0.14 ind:fut:1s; +conserveraient conserver ver 15.08 55.14 0 0.07 cnd:pre:3p; +conserverais conserver ver 15.08 55.14 0.04 0.07 cnd:pre:1s; +conserverait conserver ver 15.08 55.14 0.19 0.47 cnd:pre:3s; +conserveras conserver ver 15.08 55.14 0.02 0 ind:fut:2s; +conserverez conserver ver 15.08 55.14 0.04 0.14 ind:fut:2p; +conserverie conserverie nom f s 0.68 0.74 0.66 0.68 +conserveries conserverie nom f p 0.68 0.74 0.02 0.07 +conserverons conserver ver 15.08 55.14 0.02 0.07 ind:fut:1p; +conserveront conserver ver 15.08 55.14 0.01 0.2 ind:fut:3p; +conserves conserve nom f p 5.5 14.26 2.76 7.36 +conservez conserver ver 15.08 55.14 0.46 0.14 imp:pre:2p;ind:pre:2p; +conserviez conserver ver 15.08 55.14 0.06 0 ind:imp:2p; +conservions conserver ver 15.08 55.14 0 0.14 ind:imp:1p; +conservons conserver ver 15.08 55.14 0.14 0.34 imp:pre:1p;ind:pre:1p; +conservât conserver ver 15.08 55.14 0 0.14 sub:imp:3s; +conservèrent conserver ver 15.08 55.14 0 0.2 ind:pas:3p; +conservé conserver ver m s 15.08 55.14 2.31 11.08 par:pas; +conservée conserver ver f s 15.08 55.14 0.39 1.62 par:pas; +conservées conserver ver f p 15.08 55.14 0.1 1.01 par:pas; +conservés conserver ver m p 15.08 55.14 0.6 1.22 par:pas; +considère considérer ver 43 87.43 12.53 13.72 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +considèrent considérer ver 43 87.43 2.06 2.57 ind:pre:3p; +considères considérer ver 43 87.43 1.04 0.14 ind:pre:2s; +considéra considérer ver 43 87.43 0.04 7.84 ind:pas:3s; +considérable considérable adj s 2.98 20.95 2.31 16.01 +considérablement considérablement adv 1 4.39 1 4.39 +considérables considérable adj p 2.98 20.95 0.68 4.93 +considérai considérer ver 43 87.43 0 0.41 ind:pas:1s; +considéraient considérer ver 43 87.43 0.4 2.97 ind:imp:3p; +considérais considérer ver 43 87.43 0.52 2.03 ind:imp:1s;ind:imp:2s; +considérait considérer ver 43 87.43 1.03 14.59 ind:imp:3s; +considérant considérer ver 43 87.43 1.47 4.66 par:pre; +considérants considérant nom m p 0.05 0.27 0 0.14 +considérassent considérer ver 43 87.43 0 0.07 sub:imp:3p; +considération considération nom f s 5.6 20.34 5.04 12.36 +considérations considération nom f p 5.6 20.34 0.57 7.97 +considérer considérer ver 43 87.43 5.59 19.32 inf; +considérera considérer ver 43 87.43 0.08 0.2 ind:fut:3s; +considérerai considérer ver 43 87.43 0.09 0.2 ind:fut:1s; +considéreraient considérer ver 43 87.43 0.04 0.14 cnd:pre:3p; +considérerais considérer ver 43 87.43 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +considérerait considérer ver 43 87.43 0.1 0.41 cnd:pre:3s; +considéreras considérer ver 43 87.43 0.03 0.07 ind:fut:2s; +considéreriez considérer ver 43 87.43 0.09 0 cnd:pre:2p; +considérerions considérer ver 43 87.43 0.01 0.07 cnd:pre:1p; +considérerons considérer ver 43 87.43 0.14 0.07 ind:fut:1p; +considérez considérer ver 43 87.43 4.83 1.15 imp:pre:2p;ind:pre:2p; +considériez considérer ver 43 87.43 0.25 0.14 ind:imp:2p; +considérions considérer ver 43 87.43 0.05 0.61 ind:imp:1p; +considérons considérer ver 43 87.43 1.3 1.08 imp:pre:1p;ind:pre:1p; +considérât considérer ver 43 87.43 0 0.54 sub:imp:3s; +considérèrent considérer ver 43 87.43 0 0.27 ind:pas:3p; +considéré considérer ver m s 43 87.43 6.78 8.11 par:pas; +considérée considérer ver f s 43 87.43 2.58 3.04 par:pas; +considérées considérer ver f p 43 87.43 0.2 1.08 par:pas; +considérés considérer ver m p 43 87.43 1.64 1.89 par:pas; +consigna consigner ver 3.46 5.47 0.04 0.34 ind:pas:3s; +consignais consigner ver 3.46 5.47 0 0.07 ind:imp:1s; +consignait consigner ver 3.46 5.47 0.02 0.41 ind:imp:3s; +consignant consigner ver 3.46 5.47 0 0.07 par:pre; +consignataire consignataire nom s 0.01 0.07 0.01 0.07 +consignation consignation nom f s 0.4 0.2 0.4 0.07 +consignations consignation nom f p 0.4 0.2 0 0.14 +consigne consigne nom f s 5.24 15.81 3.04 7.91 +consignent consigner ver 3.46 5.47 0.04 0.07 ind:pre:3p; +consigner consigner ver 3.46 5.47 0.69 1.55 inf; +consignera consigner ver 3.46 5.47 0.1 0 ind:fut:3s; +consignerais consigner ver 3.46 5.47 0 0.07 cnd:pre:1s; +consignes consigne nom f p 5.24 15.81 2.19 7.91 +consignez consigner ver 3.46 5.47 0.22 0.07 imp:pre:2p;ind:pre:2p; +consigné consigner ver m s 3.46 5.47 1.32 1.35 par:pas; +consignée consigner ver f s 3.46 5.47 0.44 0.27 par:pas; +consignées consigner ver f p 3.46 5.47 0.18 0.2 par:pas; +consignés consigné adj m p 0.72 0.27 0.39 0 +consista consister ver 7.51 31.35 0 0.68 ind:pas:3s; +consistaient consister ver 7.51 31.35 0.17 1.08 ind:imp:3p; +consistait consister ver 7.51 31.35 1.1 11.22 ind:imp:3s; +consistance consistance nom f s 1.31 7.43 1.31 7.36 +consistances consistance nom f p 1.31 7.43 0 0.07 +consistant consistant adj m s 1.06 1.55 0.67 1.01 +consistante consistant adj f s 1.06 1.55 0.37 0.2 +consistantes consistant adj f p 1.06 1.55 0.01 0.07 +consistants consistant adj m p 1.06 1.55 0.02 0.27 +consiste consister ver 7.51 31.35 5.55 12.84 imp:pre:2s;ind:pre:3s;sub:pre:3s; +consistent consister ver 7.51 31.35 0.14 0.95 ind:pre:3p; +consister consister ver 7.51 31.35 0.06 0.88 inf; +consistera consister ver 7.51 31.35 0.14 0.27 ind:fut:3s; +consisteraient consister ver 7.51 31.35 0 0.07 cnd:pre:3p; +consisterait consister ver 7.51 31.35 0.15 0.61 cnd:pre:3s; +consistoire consistoire nom m s 0 0.14 0 0.14 +consistorial consistorial adj m s 0 0.2 0 0.14 +consistoriales consistorial adj f p 0 0.2 0 0.07 +consistèrent consister ver 7.51 31.35 0 0.07 ind:pas:3p; +consisté consister ver m s 7.51 31.35 0.08 1.01 par:pas; +conso conso nom f s 0.19 0.14 0.13 0.07 +consoeur consoeur nom f s 0.17 0.68 0.15 0.47 +consoeurs consoeur nom f p 0.17 0.68 0.02 0.2 +consola consoler ver 14.41 33.18 0.04 1.42 ind:pas:3s; +consolai consoler ver 14.41 33.18 0.01 0.14 ind:pas:1s; +consolaient consoler ver 14.41 33.18 0.01 0.47 ind:imp:3p; +consolais consoler ver 14.41 33.18 0.25 0.61 ind:imp:1s;ind:imp:2s; +consolait consoler ver 14.41 33.18 0.28 2.77 ind:imp:3s; +consolant consoler ver 14.41 33.18 0.13 0.81 par:pre; +consolante consolant adj f s 0.12 2.16 0.01 0.68 +consolantes consolant adj f p 0.12 2.16 0 0.34 +consolants consolant adj m p 0.12 2.16 0 0.27 +consolasse consoler ver 14.41 33.18 0 0.07 sub:imp:1s; +consolateur consolateur adj m s 0.16 0.95 0.14 0.2 +consolateurs consolateur adj m p 0.16 0.95 0.01 0.14 +consolation consolation nom f s 4.84 10.74 4.62 8.72 +consolations consolation nom f p 4.84 10.74 0.22 2.03 +consolatrice consolateur nom f s 0.29 0.47 0.27 0.2 +consolatrices consolateur adj f p 0.16 0.95 0 0.27 +console consoler ver 14.41 33.18 3.71 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consolent consoler ver 14.41 33.18 0.42 0.88 ind:pre:3p; +consoler consoler ver 14.41 33.18 6.63 16.15 inf; +consolera consoler ver 14.41 33.18 0.46 0.34 ind:fut:3s; +consolerai consoler ver 14.41 33.18 0.25 0.07 ind:fut:1s; +consoleraient consoler ver 14.41 33.18 0 0.14 cnd:pre:3p; +consolerais consoler ver 14.41 33.18 0.12 0.14 cnd:pre:1s; +consolerait consoler ver 14.41 33.18 0.28 0.27 cnd:pre:3s; +consoleras consoler ver 14.41 33.18 0.11 0.07 ind:fut:2s; +consolerez consoler ver 14.41 33.18 0.02 0 ind:fut:2p; +consolerons consoler ver 14.41 33.18 0.11 0.07 ind:fut:1p; +consoleront consoler ver 14.41 33.18 0.04 0 ind:fut:3p; +consoles console nom f p 2.78 3.72 0.13 1.15 +consolez consoler ver 14.41 33.18 0.29 0.07 imp:pre:2p; +consolidaient consolider ver 1.38 4.19 0 0.2 ind:imp:3p; +consolidais consolider ver 1.38 4.19 0 0.07 ind:imp:1s; +consolidait consolider ver 1.38 4.19 0 0.54 ind:imp:3s; +consolidant consolider ver 1.38 4.19 0.01 0.27 par:pre; +consolidation consolidation nom f s 0.2 0.41 0.2 0.41 +consolide consolider ver 1.38 4.19 0.18 0.2 ind:pre:1s;ind:pre:3s; +consolident consolider ver 1.38 4.19 0.04 0.07 ind:pre:3p; +consolider consolider ver 1.38 4.19 1 1.89 inf; +consolideraient consolider ver 1.38 4.19 0 0.07 cnd:pre:3p; +consolidons consolider ver 1.38 4.19 0.01 0 imp:pre:1p; +consolidé consolider ver m s 1.38 4.19 0.08 0.2 par:pas; +consolidée consolider ver f s 1.38 4.19 0.04 0.41 par:pas; +consolidées consolidé adj f p 0.05 0.41 0.04 0 +consolidés consolider ver m p 1.38 4.19 0.01 0.14 par:pas; +consoliez consoler ver 14.41 33.18 0 0.07 ind:imp:2p; +consolions consoler ver 14.41 33.18 0 0.07 ind:imp:1p; +consolât consoler ver 14.41 33.18 0 0.07 sub:imp:3s; +consolèrent consoler ver 14.41 33.18 0 0.27 ind:pas:3p; +consolé consoler ver m s 14.41 33.18 0.47 1.96 par:pas; +consolée consoler ver f s 14.41 33.18 0.41 1.08 par:pas; +consolées consoler ver f p 14.41 33.18 0 0.27 par:pas; +consolés consoler ver m p 14.41 33.18 0.31 0.27 par:pas; +consomma consommer ver 7.54 11.35 0.02 0.2 ind:pas:3s; +consommable consommable adj s 0.04 0.61 0.01 0.47 +consommables consommable adj p 0.04 0.61 0.02 0.14 +consommai consommer ver 7.54 11.35 0 0.07 ind:pas:1s; +consommaient consommer ver 7.54 11.35 0.03 0.27 ind:imp:3p; +consommait consommer ver 7.54 11.35 0.2 1.82 ind:imp:3s; +consommant consommer ver 7.54 11.35 0.07 0.2 par:pre; +consommateur consommateur nom m s 1.9 6.22 0.79 1.69 +consommateurs consommateur nom m p 1.9 6.22 1.04 4.05 +consommation consommation nom f s 3.7 9.66 3.38 7.36 +consommations consommation nom f p 3.7 9.66 0.32 2.3 +consommatrice consommateur nom f s 1.9 6.22 0.05 0.34 +consommatrices consommateur nom f p 1.9 6.22 0.02 0.14 +consomme consommer ver 7.54 11.35 1.44 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consomment consommer ver 7.54 11.35 0.42 0.88 ind:pre:3p; +consommer consommer ver 7.54 11.35 3 4.12 inf; +consommerait consommer ver 7.54 11.35 0.01 0.07 cnd:pre:3s; +consommeront consommer ver 7.54 11.35 0.03 0 ind:fut:3p; +consommez consommer ver 7.54 11.35 0.63 0 imp:pre:2p;ind:pre:2p; +consommions consommer ver 7.54 11.35 0 0.14 ind:imp:1p; +consommons consommer ver 7.54 11.35 0.16 0 imp:pre:1p;ind:pre:1p; +consommé consommer ver m s 7.54 11.35 1.07 2.09 par:pas; +consommée consommer ver f s 7.54 11.35 0.34 0.34 par:pas; +consommées consommer ver f p 7.54 11.35 0.02 0.07 par:pas; +consommés consommer ver m p 7.54 11.35 0.1 0.14 par:pas; +consomption consomption nom f s 0.27 0.2 0.27 0.2 +consomptive consomptif adj f s 0 0.07 0 0.07 +consonance consonance nom f s 0.19 1.89 0.17 1.01 +consonances consonance nom f p 0.19 1.89 0.02 0.88 +consonne consonne nom f s 0.45 1.69 0.2 0.07 +consonnes consonne nom f p 0.45 1.69 0.25 1.62 +consort consort adj m s 0.04 0.41 0.02 0.27 +consortium consortium nom m s 0.81 0.07 0.79 0.07 +consortiums consortium nom m p 0.81 0.07 0.03 0 +consorts consort nom m p 0.3 0.41 0.28 0.34 +consos conso nom f p 0.19 0.14 0.06 0.07 +consoude consoude nom f s 0 0.07 0 0.07 +conspiraient conspirer ver 1.66 1.35 0.06 0.14 ind:imp:3p; +conspirait conspirer ver 1.66 1.35 0.12 0.41 ind:imp:3s; +conspirant conspirer ver 1.66 1.35 0.09 0 par:pre; +conspirateur conspirateur nom m s 0.85 1.89 0.16 0.61 +conspirateurs conspirateur nom m p 0.85 1.89 0.69 1.15 +conspiratif conspiratif adj m s 0 0.07 0 0.07 +conspiration conspiration nom f s 5.24 2.91 4.93 2.3 +conspirations conspiration nom f p 5.24 2.91 0.3 0.61 +conspiratrice conspirateur adj f s 0.29 0.07 0.03 0 +conspiratrices conspirateur nom f p 0.85 1.89 0 0.07 +conspire conspirer ver 1.66 1.35 0.41 0.47 ind:pre:1s;ind:pre:3s; +conspirent conspirer ver 1.66 1.35 0.16 0 ind:pre:3p; +conspirer conspirer ver 1.66 1.35 0.41 0.2 inf; +conspirez conspirer ver 1.66 1.35 0.08 0 ind:pre:2p; +conspiré conspirer ver m s 1.66 1.35 0.33 0.14 par:pas; +conspuaient conspuer ver 0.04 1.15 0 0.2 ind:imp:3p; +conspuant conspuer ver 0.04 1.15 0 0.14 par:pre; +conspue conspuer ver 0.04 1.15 0.01 0.07 ind:pre:3s; +conspuer conspuer ver 0.04 1.15 0.02 0.27 inf; +conspuèrent conspuer ver 0.04 1.15 0 0.14 ind:pas:3p; +conspué conspuer ver m s 0.04 1.15 0.01 0.27 par:pas; +conspués conspuer ver m p 0.04 1.15 0 0.07 par:pas; +constable constable nom m s 0.05 0.14 0.05 0.14 +constamment constamment adv 8.18 15.68 8.18 15.68 +constance constance nom f s 0.99 2.97 0.96 2.84 +constances constance nom f p 0.99 2.97 0.03 0.14 +constant constant adj m s 5.76 16.82 1.88 6.55 +constante constant adj f s 5.76 16.82 2.92 7.3 +constantes constante nom f p 1.54 0.47 1.14 0.07 +constants constant adj m p 5.76 16.82 0.63 1.55 +constat constat nom m s 1.38 3.45 1.36 2.77 +constata constater ver 10.58 57.43 0.16 8.99 ind:pas:3s; +constatai constater ver 10.58 57.43 0.41 2.16 ind:pas:1s; +constataient constater ver 10.58 57.43 0 0.54 ind:imp:3p; +constatais constater ver 10.58 57.43 0 1.28 ind:imp:1s; +constatait constater ver 10.58 57.43 0.01 2.64 ind:imp:3s; +constatant constater ver 10.58 57.43 0.15 3.58 par:pre; +constatation constatation nom f s 0.54 4.86 0.47 3.65 +constatations constatation nom f p 0.54 4.86 0.07 1.22 +constate constater ver 10.58 57.43 2.17 9.8 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +constatent constater ver 10.58 57.43 0.04 0.68 ind:pre:3p; +constater constater ver 10.58 57.43 3.48 19.66 inf; +constatera constater ver 10.58 57.43 0.06 0.14 ind:fut:3s; +constaterai constater ver 10.58 57.43 0 0.07 ind:fut:1s; +constateraient constater ver 10.58 57.43 0.01 0.14 cnd:pre:3p; +constaterais constater ver 10.58 57.43 0 0.07 cnd:pre:1s; +constaterait constater ver 10.58 57.43 0 0.07 cnd:pre:3s; +constateras constater ver 10.58 57.43 0.13 0.2 ind:fut:2s; +constaterez constater ver 10.58 57.43 0.3 0 ind:fut:2p; +constateriez constater ver 10.58 57.43 0.02 0 cnd:pre:2p; +constatez constater ver 10.58 57.43 0.83 0.34 imp:pre:2p;ind:pre:2p; +constatiez constater ver 10.58 57.43 0.06 0.07 ind:imp:2p; +constations constater ver 10.58 57.43 0.01 0.07 ind:imp:1p; +constatons constater ver 10.58 57.43 0.34 0.68 imp:pre:1p;ind:pre:1p; +constats constat nom m p 1.38 3.45 0.03 0.68 +constatâmes constater ver 10.58 57.43 0 0.07 ind:pas:1p; +constatèrent constater ver 10.58 57.43 0 0.14 ind:pas:3p; +constaté constater ver m s 10.58 57.43 2.3 5.61 imp:pre:2s;par:pas; +constatée constater ver f s 10.58 57.43 0.06 0.27 par:pas; +constatées constater ver f p 10.58 57.43 0.01 0.14 par:pas; +constatés constater ver m p 10.58 57.43 0.04 0.07 par:pas; +constellaient consteller ver 0.14 4.39 0 0.2 ind:imp:3p; +constellait consteller ver 0.14 4.39 0 0.07 ind:imp:3s; +constellant consteller ver 0.14 4.39 0 0.07 par:pre; +constellation constellation nom f s 1.86 6.76 1.61 3.58 +constellations constellation nom f p 1.86 6.76 0.25 3.18 +constelle consteller ver 0.14 4.39 0 0.07 ind:pre:3s; +constellent consteller ver 0.14 4.39 0 0.14 ind:pre:3p; +constellé consteller ver m s 0.14 4.39 0.01 1.76 par:pas; +constellée consteller ver f s 0.14 4.39 0.13 1.15 par:pas; +constellées consteller ver f p 0.14 4.39 0 0.47 par:pas; +constellés consteller ver m p 0.14 4.39 0 0.47 par:pas; +consterna consterner ver 0.85 4.26 0.02 0.47 ind:pas:3s; +consternait consterner ver 0.85 4.26 0 0.88 ind:imp:3s; +consternant consternant adj m s 0.53 1.49 0.48 0.61 +consternante consternant adj f s 0.53 1.49 0.03 0.47 +consternantes consternant adj f p 0.53 1.49 0.01 0.2 +consternants consternant adj m p 0.53 1.49 0.01 0.2 +consternation consternation nom f s 0.69 4.53 0.69 4.53 +consterne consterner ver 0.85 4.26 0.06 0.07 ind:pre:3s; +consternent consterner ver 0.85 4.26 0 0.07 ind:pre:3p; +consterné consterner ver m s 0.85 4.26 0.52 1.42 par:pas; +consternée consterner ver f s 0.85 4.26 0.07 0.68 par:pas; +consternées consterné adj f p 0.46 3.58 0 0.27 +consternés consterné adj m p 0.46 3.58 0.23 0.54 +constipant constipant adj m s 0 0.07 0 0.07 +constipation constipation nom f s 0.41 1.69 0.38 1.55 +constipations constipation nom f p 0.41 1.69 0.03 0.14 +constipe constiper ver 0.55 0.74 0.06 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +constipé constipé adj m s 0.66 0.54 0.35 0.34 +constipée constipé adj f s 0.66 0.54 0.26 0.07 +constipées constipé nom f p 0.34 0.34 0 0.07 +constipés constipé nom m p 0.34 0.34 0.14 0.07 +constitua constituer ver 8.99 54.39 0.05 0.54 ind:pas:3s; +constituaient constituer ver 8.99 54.39 0.11 6.22 ind:imp:3p; +constituais constituer ver 8.99 54.39 0.01 0.14 ind:imp:1s; +constituait constituer ver 8.99 54.39 0.5 9.8 ind:imp:3s; +constituant constituer ver 8.99 54.39 0.17 1.82 par:pre; +constituante constituant nom f s 0.27 1.01 0.23 0.68 +constituantes constituant adj f p 0.02 3.92 0 0.07 +constituants constituant nom m p 0.27 1.01 0.04 0.2 +constitue constituer ver 8.99 54.39 2.89 7.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +constituent constituer ver 8.99 54.39 1.32 5.47 ind:pre:3p; +constituer constituer ver 8.99 54.39 1.56 9.46 inf; +constituera constituer ver 8.99 54.39 0.05 0.27 ind:fut:3s; +constituerai constituer ver 8.99 54.39 0 0.14 ind:fut:1s; +constitueraient constituer ver 8.99 54.39 0.02 0.47 cnd:pre:3p; +constituerais constituer ver 8.99 54.39 0 0.07 cnd:pre:1s; +constituerait constituer ver 8.99 54.39 0.23 0.74 cnd:pre:3s; +constitueras constituer ver 8.99 54.39 0 0.07 ind:fut:2s; +constitueront constituer ver 8.99 54.39 0.02 0.2 ind:fut:3p; +constituez constituer ver 8.99 54.39 0.08 0.14 imp:pre:2p;ind:pre:2p; +constituions constituer ver 8.99 54.39 0 0.2 ind:imp:1p; +constituons constituer ver 8.99 54.39 0.12 0.2 imp:pre:1p;ind:pre:1p; +constitutif constitutif adj m s 0.19 0.34 0.14 0.14 +constitutifs constitutif adj m p 0.19 0.34 0.05 0.2 +constitution constitution nom f s 6.74 9.12 6.72 8.92 +constitutionnaliste constitutionnaliste nom s 0.1 0 0.1 0 +constitutionnalité constitutionnalité nom f s 0.02 0 0.02 0 +constitutionnel constitutionnel adj m s 1.6 2.5 0.72 0.88 +constitutionnelle constitutionnel adj f s 1.6 2.5 0.4 1.01 +constitutionnellement constitutionnellement adv 0.03 0.07 0.03 0.07 +constitutionnelles constitutionnel adj f p 1.6 2.5 0.03 0.34 +constitutionnels constitutionnel adj m p 1.6 2.5 0.45 0.27 +constitutions constitution nom f p 6.74 9.12 0.02 0.2 +constituât constituer ver 8.99 54.39 0 0.2 sub:imp:3s; +constituèrent constituer ver 8.99 54.39 0.01 0.54 ind:pas:3p; +constitué constituer ver m s 8.99 54.39 0.98 6.82 par:pas; +constituée constituer ver f s 8.99 54.39 0.64 2.16 par:pas; +constituées constitué adj f p 0.19 2.91 0.11 0.68 +constitués constituer ver m p 8.99 54.39 0.16 0.81 par:pas; +constricteur constricteur nom m s 0.11 0.07 0.11 0 +constricteurs constricteur nom m p 0.11 0.07 0 0.07 +constriction constriction nom f s 0.01 0.61 0.01 0.61 +constrictive constrictif adj f s 0.01 0 0.01 0 +constrictor constrictor adj m s 0.16 0.41 0.16 0.34 +constrictors constrictor nom m p 0.05 0 0.03 0 +constructeur constructeur nom m s 1.81 1.82 0.88 0.81 +constructeurs constructeur nom m p 1.81 1.82 0.93 1.01 +constructif constructif adj m s 1.25 1.28 0.39 0.54 +constructifs constructif adj m p 1.25 1.28 0.01 0.07 +construction construction nom f s 13.12 24.12 11.3 18.24 +constructions construction nom f p 13.12 24.12 1.83 5.88 +constructive constructif adj f s 1.25 1.28 0.58 0.41 +constructives constructif adj f p 1.25 1.28 0.26 0.27 +constructivisme constructivisme nom m s 0.01 0 0.01 0 +construira construire ver 67.59 52.64 0.93 0.41 ind:fut:3s; +construirai construire ver 67.59 52.64 0.68 0 ind:fut:1s; +construiraient construire ver 67.59 52.64 0.02 0.07 cnd:pre:3p; +construirais construire ver 67.59 52.64 0.12 0.14 cnd:pre:1s; +construirait construire ver 67.59 52.64 0.3 0.2 cnd:pre:3s; +construiras construire ver 67.59 52.64 0.17 0 ind:fut:2s; +construire construire ver 67.59 52.64 26.94 18.38 inf; +construirez construire ver 67.59 52.64 0.29 0.07 ind:fut:2p; +construiriez construire ver 67.59 52.64 0.02 0 cnd:pre:2p; +construirons construire ver 67.59 52.64 1.19 0.07 ind:fut:1p; +construiront construire ver 67.59 52.64 0.37 0 ind:fut:3p; +construis construire ver 67.59 52.64 2.33 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +construisaient construire ver 67.59 52.64 0.27 0.81 ind:imp:3p; +construisais construire ver 67.59 52.64 0.29 0.34 ind:imp:1s;ind:imp:2s; +construisait construire ver 67.59 52.64 0.98 1.76 ind:imp:3s; +construisant construire ver 67.59 52.64 0.54 0.95 par:pre; +construise construire ver 67.59 52.64 0.4 0.2 sub:pre:1s;sub:pre:3s; +construisent construire ver 67.59 52.64 1.37 1.15 ind:pre:3p; +construisez construire ver 67.59 52.64 1.01 0 imp:pre:2p;ind:pre:2p; +construisiez construire ver 67.59 52.64 0.06 0 ind:imp:2p; +construisions construire ver 67.59 52.64 0.05 0 ind:imp:1p; +construisirent construire ver 67.59 52.64 0.06 0.14 ind:pas:3p; +construisis construire ver 67.59 52.64 0.11 0.14 ind:pas:1s; +construisit construire ver 67.59 52.64 0.21 1.62 ind:pas:3s; +construisons construire ver 67.59 52.64 1.23 0.14 imp:pre:1p;ind:pre:1p; +construisît construire ver 67.59 52.64 0 0.07 sub:imp:3s; +construit construire ver m s 67.59 52.64 21.48 15.61 ind:pre:3s;par:pas; +construite construire ver f s 67.59 52.64 4.64 5.41 par:pas; +construites construire ver f p 67.59 52.64 0.47 1.82 par:pas; +construits construire ver m p 67.59 52.64 1.08 2.7 par:pas; +consubstantiel consubstantiel adj m s 0 0.61 0 0.2 +consubstantielle consubstantiel adj f s 0 0.61 0 0.27 +consubstantiels consubstantiel adj m p 0 0.61 0 0.14 +consul consul nom m s 3.95 10.07 3.56 8.11 +consulaire consulaire adj s 0.31 0.81 0.31 0.41 +consulaires consulaire adj p 0.31 0.81 0 0.41 +consulat consulat nom m s 3.84 2.43 3.77 1.96 +consulats consulat nom m p 3.84 2.43 0.07 0.47 +consuls consul nom m p 3.95 10.07 0.39 1.96 +consulta consulter ver 18.45 36.22 0.01 4.12 ind:pas:3s; +consultable consultable adj f s 0 0.07 0 0.07 +consultai consulter ver 18.45 36.22 0.02 0.61 ind:pas:1s; +consultaient consulter ver 18.45 36.22 0 0.68 ind:imp:3p; +consultais consulter ver 18.45 36.22 0.22 0.34 ind:imp:1s;ind:imp:2s; +consultait consulter ver 18.45 36.22 0.13 2.7 ind:imp:3s; +consultant consultant nom m s 1.76 0.2 1.29 0.07 +consultante consultant nom f s 1.76 0.2 0.18 0.07 +consultants consultant nom m p 1.76 0.2 0.29 0.07 +consultatif consultatif adj m s 0.13 6.28 0.13 0.74 +consultatifs consultatif adj m p 0.13 6.28 0 0.14 +consultation consultation nom f s 4.59 8.24 3.61 6.49 +consultations consultation nom f p 4.59 8.24 0.98 1.76 +consultative consultatif adj f s 0.13 6.28 0 5.41 +consulte consulter ver 18.45 36.22 2.21 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consultent consulter ver 18.45 36.22 0.1 0.27 ind:pre:3p; +consulter consulter ver 18.45 36.22 9.05 13.04 inf; +consultera consulter ver 18.45 36.22 0.03 0.2 ind:fut:3s; +consulterai consulter ver 18.45 36.22 0.18 0.07 ind:fut:1s; +consulteraient consulter ver 18.45 36.22 0 0.07 cnd:pre:3p; +consulterais consulter ver 18.45 36.22 0.22 0.07 cnd:pre:1s;cnd:pre:2s; +consulteras consulter ver 18.45 36.22 0.01 0 ind:fut:2s; +consulterons consulter ver 18.45 36.22 0.01 0 ind:fut:1p; +consulteront consulter ver 18.45 36.22 0 0.07 ind:fut:3p; +consultes consulter ver 18.45 36.22 0.23 0 ind:pre:2s; +consultez consulter ver 18.45 36.22 1.04 0.34 imp:pre:2p;ind:pre:2p; +consultions consulter ver 18.45 36.22 0.01 0.07 ind:imp:1p; +consultons consulter ver 18.45 36.22 0.24 0.07 imp:pre:1p;ind:pre:1p; +consultâmes consulter ver 18.45 36.22 0 0.07 ind:pas:1p; +consultèrent consulter ver 18.45 36.22 0 0.81 ind:pas:3p; +consulté consulter ver m s 18.45 36.22 4.05 5 par:pas; +consultée consulter ver f s 18.45 36.22 0.14 0.88 par:pas; +consultées consulter ver f p 18.45 36.22 0.03 0.07 par:pas; +consultés consulter ver m p 18.45 36.22 0.22 1.42 par:pas; +consuma consumer ver 6.54 9.93 0.16 0.07 ind:pas:3s; +consumable consumable adj s 0 0.07 0 0.07 +consumai consumer ver 6.54 9.93 0 0.07 ind:pas:1s; +consumaient consumer ver 6.54 9.93 0.01 0.47 ind:imp:3p; +consumais consumer ver 6.54 9.93 0 0.14 ind:imp:1s; +consumait consumer ver 6.54 9.93 0.19 1.49 ind:imp:3s; +consumant consumer ver 6.54 9.93 0.36 0.2 par:pre; +consumation consumation nom f s 0 0.07 0 0.07 +consume consumer ver 6.54 9.93 2.21 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consument consumer ver 6.54 9.93 0.38 0.47 ind:pre:3p; +consumer consumer ver 6.54 9.93 0.89 2.09 inf; +consumera consumer ver 6.54 9.93 0.25 0.14 ind:fut:3s; +consumerait consumer ver 6.54 9.93 0.01 0.07 cnd:pre:3s; +consumeront consumer ver 6.54 9.93 0.04 0.07 ind:fut:3p; +consumes consumer ver 6.54 9.93 0 0.07 ind:pre:2s; +consumez consumer ver 6.54 9.93 0.05 0 imp:pre:2p;ind:pre:2p; +consumât consumer ver 6.54 9.93 0 0.07 sub:imp:3s; +consumèrent consumer ver 6.54 9.93 0 0.07 ind:pas:3p; +consumé consumer ver m s 6.54 9.93 1.07 0.81 par:pas; +consumée consumer ver f s 6.54 9.93 0.52 1.15 par:pas; +consumées consumer ver f p 6.54 9.93 0.03 0.61 par:pas; +consumérisme consumérisme nom m s 0.43 0 0.43 0 +consumériste consumériste adj f s 0.2 0 0.2 0 +consumés consumer ver m p 6.54 9.93 0.37 0.2 par:pas; +consécration consécration nom f s 0.37 1.15 0.37 1.15 +consécutif consécutif adj m s 1.16 1.82 0.12 0.2 +consécutifs consécutif adj m p 1.16 1.82 0.46 0.68 +consécution consécution nom f s 0 0.07 0 0.07 +consécutive consécutif adj f s 1.16 1.82 0.15 0.47 +consécutivement consécutivement adv 0.02 0.14 0.02 0.14 +consécutives consécutif adj f p 1.16 1.82 0.43 0.47 +conséquemment conséquemment adv 0.03 0.41 0.03 0.41 +conséquence conséquence nom f s 19.27 34.86 5.91 16.89 +conséquences conséquence nom f p 19.27 34.86 13.36 17.97 +conséquent conséquent adj m s 6.45 12.43 6.05 11.55 +conséquente conséquent adj f s 6.45 12.43 0.26 0.54 +conséquentes conséquent adj f p 6.45 12.43 0.12 0.07 +conséquents conséquent adj m p 6.45 12.43 0.02 0.27 +conta conter ver 3.76 8.99 0.01 0.88 ind:pas:3s; +contact contact nom m s 69.85 65.47 59.58 55.68 +contacta contacter ver 38.96 2.03 0.01 0.41 ind:pas:3s; +contactais contacter ver 38.96 2.03 0.14 0 ind:imp:1s;ind:imp:2s; +contactait contacter ver 38.96 2.03 0.08 0.07 ind:imp:3s; +contactant contacter ver 38.96 2.03 0.05 0.07 par:pre; +contacte contacter ver 38.96 2.03 3.89 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contactent contacter ver 38.96 2.03 0.14 0 ind:pre:3p; +contacter contacter ver 38.96 2.03 16.11 0.95 inf;; +contactera contacter ver 38.96 2.03 1.18 0 ind:fut:3s; +contacterai contacter ver 38.96 2.03 1.69 0 ind:fut:1s; +contacteraient contacter ver 38.96 2.03 0.01 0 cnd:pre:3p; +contacterais contacter ver 38.96 2.03 0.03 0 cnd:pre:1s; +contacterait contacter ver 38.96 2.03 0.05 0 cnd:pre:3s; +contacteras contacter ver 38.96 2.03 0.01 0 ind:fut:2s; +contacterez contacter ver 38.96 2.03 0.1 0 ind:fut:2p; +contacterons contacter ver 38.96 2.03 0.3 0 ind:fut:1p; +contacteront contacter ver 38.96 2.03 0.23 0 ind:fut:3p; +contacteur contacteur nom m s 0.05 0.07 0.05 0.07 +contactez contacter ver 38.96 2.03 4.2 0.07 imp:pre:2p;ind:pre:2p; +contactiez contacter ver 38.96 2.03 0.37 0 ind:imp:2p; +contactions contacter ver 38.96 2.03 0.11 0 ind:imp:1p; +contactons contacter ver 38.96 2.03 0.22 0 imp:pre:1p;ind:pre:1p; +contacts contact nom m p 69.85 65.47 10.27 9.8 +contacté contacter ver m s 38.96 2.03 7.12 0.41 par:pas; +contactée contacter ver f s 38.96 2.03 1.27 0 par:pas; +contactées contacter ver f p 38.96 2.03 0.08 0 par:pas; +contactés contacter ver m p 38.96 2.03 1.56 0.07 par:pas; +contagieuse contagieux adj f s 6.01 4.05 1.74 1.82 +contagieuses contagieux adj f p 6.01 4.05 0.57 0.61 +contagieux contagieux adj m 6.01 4.05 3.71 1.62 +contagion contagion nom f s 1.21 3.72 1.21 3.72 +contai conter ver 3.76 8.99 0 0.14 ind:pas:1s; +contaient conter ver 3.76 8.99 0.01 0.34 ind:imp:3p; +container container nom m s 3 1.01 2.09 0.27 +containers container nom m p 3 1.01 0.92 0.74 +containeur containeur nom m s 0.01 0 0.01 0 +contais conter ver 3.76 8.99 0.01 0 ind:imp:1s; +contait conter ver 3.76 8.99 0.16 0.88 ind:imp:3s; +contaminaient contaminer ver 9.63 4.32 0 0.07 ind:imp:3p; +contaminait contaminer ver 9.63 4.32 0.01 0.27 ind:imp:3s; +contaminant contaminant adj m s 0.13 0.07 0.02 0.07 +contaminants contaminant adj m p 0.13 0.07 0.11 0 +contaminateur contaminateur nom m s 0.01 0 0.01 0 +contamination contamination nom f s 2.27 1.35 2.26 1.22 +contaminations contamination nom f p 2.27 1.35 0.01 0.14 +contamine contaminer ver 9.63 4.32 1.39 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contaminer contaminer ver 9.63 4.32 1.27 0.61 inf; +contaminera contaminer ver 9.63 4.32 0.01 0 ind:fut:3s; +contamineras contaminer ver 9.63 4.32 0.01 0 ind:fut:2s; +contamines contaminer ver 9.63 4.32 0.05 0 ind:pre:2s; +contaminons contaminer ver 9.63 4.32 0.01 0 imp:pre:1p; +contaminât contaminer ver 9.63 4.32 0 0.07 sub:imp:3s; +contaminé contaminer ver m s 9.63 4.32 2.68 1.08 par:pas; +contaminée contaminer ver f s 9.63 4.32 2.19 0.81 par:pas; +contaminées contaminer ver f p 9.63 4.32 0.55 0.34 par:pas; +contaminés contaminer ver m p 9.63 4.32 1.44 0.61 par:pas; +contant conter ver 3.76 8.99 0.19 0.41 par:pre; +conte conte nom m s 13.3 15.07 8.84 6.69 +contempla contempler ver 8.58 64.46 0.17 5.34 ind:pas:3s; +contemplai contempler ver 8.58 64.46 0.01 1.35 ind:pas:1s; +contemplaient contempler ver 8.58 64.46 0.01 3.04 ind:imp:3p; +contemplais contempler ver 8.58 64.46 0.45 2.91 ind:imp:1s;ind:imp:2s; +contemplait contempler ver 8.58 64.46 0.3 11.35 ind:imp:3s; +contemplant contempler ver 8.58 64.46 0.35 6.55 par:pre; +contemplateur contemplateur nom m s 0 0.2 0 0.14 +contemplatif contemplatif nom m s 0.17 0.41 0.17 0.2 +contemplatifs contemplatif adj m p 0.1 1.42 0 0.2 +contemplation contemplation nom f s 0.44 9.66 0.44 9.32 +contemplations contemplation nom f p 0.44 9.66 0 0.34 +contemplative contemplatif adj f s 0.1 1.42 0.03 0.81 +contemplativement contemplativement adv 0 0.07 0 0.07 +contemplatives contemplatif adj f p 0.1 1.42 0.01 0.2 +contemplatrice contemplateur nom f s 0 0.2 0 0.07 +contemple contempler ver 8.58 64.46 2.28 7.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contemplent contempler ver 8.58 64.46 0.33 1.55 ind:pre:3p; +contempler contempler ver 8.58 64.46 2.9 18.11 inf; +contemplera contempler ver 8.58 64.46 0.11 0 ind:fut:3s; +contemplerai contempler ver 8.58 64.46 0.12 0 ind:fut:1s; +contempleraient contempler ver 8.58 64.46 0 0.07 cnd:pre:3p; +contemplerait contempler ver 8.58 64.46 0 0.07 cnd:pre:3s; +contempleront contempler ver 8.58 64.46 0.01 0.07 ind:fut:3p; +contemples contempler ver 8.58 64.46 0.07 0.2 ind:pre:2s; +contemplez contempler ver 8.58 64.46 0.63 0.27 imp:pre:2p;ind:pre:2p; +contempliez contempler ver 8.58 64.46 0.11 0 ind:imp:2p; +contemplions contempler ver 8.58 64.46 0 0.61 ind:imp:1p; +contemplons contempler ver 8.58 64.46 0.07 0.27 imp:pre:1p;ind:pre:1p; +contemplâmes contempler ver 8.58 64.46 0 0.14 ind:pas:1p; +contemplèrent contempler ver 8.58 64.46 0 0.61 ind:pas:3p; +contemplé contempler ver m s 8.58 64.46 0.62 3.38 par:pas; +contemplée contempler ver f s 8.58 64.46 0.03 0.68 par:pas; +contemplées contempler ver f p 8.58 64.46 0 0.14 par:pas; +contemplés contempler ver m p 8.58 64.46 0 0.61 par:pas; +contemporain contemporain adj m s 1.98 6.62 0.94 1.89 +contemporaine contemporain adj f s 1.98 6.62 0.79 2.77 +contemporaines contemporain adj f p 1.98 6.62 0.05 0.61 +contemporains contemporain nom m p 0.53 5.54 0.39 4.32 +contempteur contempteur nom m s 0.14 0.27 0.01 0.27 +contempteurs contempteur nom m p 0.14 0.27 0.14 0 +contenaient contenir ver 30.07 58.92 0.81 3.65 ind:imp:3p; +contenais contenir ver 30.07 58.92 0 0.14 ind:imp:1s; +contenait contenir ver 30.07 58.92 3.47 15.41 ind:imp:3s; +contenance contenance nom f s 0.41 6.15 0.41 6.01 +contenances contenance nom f p 0.41 6.15 0 0.14 +contenant contenir ver 30.07 58.92 2.75 9.53 par:pre; +contenants contenant nom m p 0.5 0.74 0.04 0.07 +conteneur conteneur nom m s 2.92 0.07 2.37 0.07 +conteneurs conteneur nom m p 2.92 0.07 0.55 0 +contenez contenir ver 30.07 58.92 0.11 0 imp:pre:2p; +contenir contenir ver 30.07 58.92 4.81 9.86 inf; +content content adj m s 178.94 86.49 114.75 51.22 +contenta contenter ver 29.04 60.61 0.12 8.24 ind:pas:3s; +contentai contenter ver 29.04 60.61 0 1.08 ind:pas:1s; +contentaient contenter ver 29.04 60.61 0.26 2.84 ind:imp:3p; +contentais contenter ver 29.04 60.61 0.36 1.89 ind:imp:1s;ind:imp:2s; +contentait contenter ver 29.04 60.61 0.37 9.32 ind:imp:3s; +contentant contenter ver 29.04 60.61 0.24 4.46 par:pre; +contentassent contenter ver 29.04 60.61 0 0.07 sub:imp:3p; +contente content adj f s 178.94 86.49 50.76 24.32 +contentement contentement nom m s 0.15 6.35 0.15 6.08 +contentements contentement nom m p 0.15 6.35 0 0.27 +contentent contenter ver 29.04 60.61 1.27 1.35 ind:pre:3p; +contenter contenter ver 29.04 60.61 5.98 11.35 inf; +contentera contenter ver 29.04 60.61 0.86 0.2 ind:fut:3s; +contenterai contenter ver 29.04 60.61 0.84 0.27 ind:fut:1s; +contenteraient contenter ver 29.04 60.61 0.02 0.14 cnd:pre:3p; +contenterais contenter ver 29.04 60.61 0.7 0.14 cnd:pre:1s;cnd:pre:2s; +contenterait contenter ver 29.04 60.61 0.21 0.68 cnd:pre:3s; +contenteras contenter ver 29.04 60.61 0.05 0 ind:fut:2s; +contenterez contenter ver 29.04 60.61 0.04 0.14 ind:fut:2p; +contenteriez contenter ver 29.04 60.61 0.01 0 cnd:pre:2p; +contenterions contenter ver 29.04 60.61 0.01 0.14 cnd:pre:1p; +contenterons contenter ver 29.04 60.61 0.49 0 ind:fut:1p; +contenteront contenter ver 29.04 60.61 0.09 0.14 ind:fut:3p; +contentes content adj f p 178.94 86.49 1.46 0.41 +contentez contenter ver 29.04 60.61 1.77 0.61 imp:pre:2p;ind:pre:2p; +contentieux contentieux nom m 0.28 0.47 0.28 0.47 +contentiez contenter ver 29.04 60.61 0.05 0.07 ind:imp:2p; +contention contention nom f s 0.17 0.41 0.06 0.41 +contentions contention nom f p 0.17 0.41 0.11 0 +contentons contenter ver 29.04 60.61 0.51 0.34 imp:pre:1p;ind:pre:1p; +contents content adj m p 178.94 86.49 11.96 10.54 +contentèrent contenter ver 29.04 60.61 0 0.27 ind:pas:3p; +contenté contenter ver m s 29.04 60.61 0.91 5.47 par:pas; +contentée contenter ver f s 29.04 60.61 0.3 1.96 par:pas; +contentées contenter ver f p 29.04 60.61 0 0.07 par:pas; +contentés contenter ver m p 29.04 60.61 0.12 0.68 par:pas; +contenu contenu nom m s 6.34 16.82 6.31 16.42 +contenue contenir ver f s 30.07 58.92 0.55 2.7 par:pas; +contenues contenir ver f p 30.07 58.92 0.22 0.74 par:pas; +contenus contenir ver m p 30.07 58.92 0.09 0.61 par:pas; +conter conter ver 3.76 8.99 1.32 2.64 inf; +contera conter ver 3.76 8.99 0.03 0 ind:fut:3s; +conterai conter ver 3.76 8.99 0.17 0.07 ind:fut:1s; +conterait conter ver 3.76 8.99 0 0.07 cnd:pre:3s; +conteras conter ver 3.76 8.99 0 0.14 ind:fut:2s; +conterez conter ver 3.76 8.99 0 0.07 ind:fut:2p; +conterons conter ver 3.76 8.99 0 0.07 ind:fut:1p; +contes conte nom m p 13.3 15.07 4.46 8.38 +contesta contester ver 4.84 8.58 0 0.07 ind:pas:3s; +contestable contestable adj s 0.26 1.69 0.26 1.15 +contestables contestable adj p 0.26 1.69 0 0.54 +contestaient contester ver 4.84 8.58 0.11 0.2 ind:imp:3p; +contestais contester ver 4.84 8.58 0.14 0.2 ind:imp:1s;ind:imp:2s; +contestait contester ver 4.84 8.58 0.01 0.68 ind:imp:3s; +contestant contester ver 4.84 8.58 0.03 0.27 par:pre; +contestataire contestataire adj s 0.21 0.47 0.14 0.14 +contestataires contestataire nom p 0.26 0.54 0.19 0.34 +contestation contestation nom f s 0.97 3.24 0.69 2.7 +contestations contestation nom f p 0.97 3.24 0.29 0.54 +conteste contester ver 4.84 8.58 1.21 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contestent contester ver 4.84 8.58 0.1 0.41 ind:pre:3p; +contester contester ver 4.84 8.58 1.48 2.7 inf; +contestera contester ver 4.84 8.58 0.09 0.07 ind:fut:3s; +contesterai contester ver 4.84 8.58 0.03 0.07 ind:fut:1s; +contesterait contester ver 4.84 8.58 0.01 0.07 cnd:pre:3s; +contesteriez contester ver 4.84 8.58 0 0.07 cnd:pre:2p; +contesterons contester ver 4.84 8.58 0.01 0 ind:fut:1p; +contestes contester ver 4.84 8.58 0.29 0.2 ind:pre:2s; +contestez contester ver 4.84 8.58 0.17 0 imp:pre:2p;ind:pre:2p; +contestiez contester ver 4.84 8.58 0 0.07 ind:imp:2p; +contestons contester ver 4.84 8.58 0.02 0.07 ind:pre:1p; +contesté contester ver m s 4.84 8.58 0.69 0.81 par:pas; +contestée contester ver f s 4.84 8.58 0.11 0.74 par:pas; +contestées contester ver f p 4.84 8.58 0.26 0.41 par:pas; +contestés contester ver m p 4.84 8.58 0.08 0.27 par:pas; +conteur conteur nom m s 1.29 4.46 0.84 2.84 +conteurs conteur nom m p 1.29 4.46 0.3 1.01 +conteuse conteur nom f s 1.29 4.46 0.15 0.61 +contexte contexte nom m s 4.5 2.3 4.34 2.16 +contextes contexte nom m p 4.5 2.3 0.16 0.14 +contextualiser contextualiser ver 0.01 0 0.01 0 inf; +contextuel contextuel adj m s 0.01 0 0.01 0 +contez conter ver 3.76 8.99 0.38 0 imp:pre:2p; +contiendra contenir ver 30.07 58.92 0.22 0.27 ind:fut:3s; +contiendrai contenir ver 30.07 58.92 0.01 0 ind:fut:1s; +contiendraient contenir ver 30.07 58.92 0 0.2 cnd:pre:3p; +contiendrait contenir ver 30.07 58.92 0.07 0.47 cnd:pre:3s; +contienne contenir ver 30.07 58.92 0.17 0.2 sub:pre:1s;sub:pre:3s; +contiennent contenir ver 30.07 58.92 2.1 1.69 ind:pre:3p; +contiens contenir ver 30.07 58.92 0.33 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +contient contenir ver 30.07 58.92 13.23 7.36 ind:pre:3s; +contigu contigu adj m s 0.08 2.3 0.02 0.47 +contigus contigu adj m p 0.08 2.3 0 0.2 +contiguë contigu adj f s 0.08 2.3 0.02 1.35 +contiguës contigu adj f p 0.08 2.3 0.04 0.27 +contiguïté contiguïté nom f s 0 0.07 0 0.07 +continence continence nom f s 0.1 0.61 0.1 0.61 +continent continent nom m s 6.92 15.95 5.79 12.16 +continental continental adj m s 0.71 1.22 0.48 0.54 +continentale continental nom f s 1 0.34 0.29 0.07 +continentales continental adj f p 0.71 1.22 0.03 0.07 +continentaux continental nom m p 1 0.34 0.29 0.2 +continents continent nom m p 6.92 15.95 1.13 3.78 +contingence contingence nom f s 0.11 1.76 0.06 0.27 +contingences contingence nom f p 0.11 1.76 0.04 1.49 +contingent contingent nom m s 0.77 2.64 0.76 1.69 +contingente contingent adj f s 0.13 0.41 0.01 0 +contingentement contingentement nom m s 0.01 0 0.01 0 +contingentes contingent adj f p 0.13 0.41 0 0.07 +contingents contingent nom m p 0.77 2.64 0.01 0.95 +contingenté contingenter ver m s 0 0.14 0 0.14 par:pas; +continrent contenir ver 30.07 58.92 0 0.14 ind:pas:3p; +contins contenir ver 30.07 58.92 0.02 0.07 ind:pas:1s; +contint contenir ver 30.07 58.92 0 1.55 ind:pas:3s; +continu continu adj m s 2.79 9.66 1.58 8.92 +continua continuer ver 269.95 282.77 1.18 28.38 ind:pas:3s; +continuai continuer ver 269.95 282.77 0.03 3.51 ind:pas:1s; +continuaient continuer ver 269.95 282.77 0.7 16.96 ind:imp:3p; +continuais continuer ver 269.95 282.77 1.47 6.08 ind:imp:1s;ind:imp:2s; +continuait continuer ver 269.95 282.77 2.32 60.27 ind:imp:3s; +continuant continuer ver 269.95 282.77 1.27 15.34 par:pre; +continuassent continuer ver 269.95 282.77 0 0.14 sub:imp:3p; +continuateur continuateur nom m s 0.11 0.34 0.11 0.2 +continuateurs continuateur nom m p 0.11 0.34 0 0.14 +continuation continuation nom f s 1.09 1.01 1.09 1.01 +continue continuer ver 269.95 282.77 76.64 50.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +continuel continuel adj m s 1.22 6.76 0.21 1.49 +continuelle continuel adj f s 1.22 6.76 0.7 2.7 +continuellement continuellement adv 1.67 4.8 1.67 4.8 +continuelles continuel adj f p 1.22 6.76 0.2 1.69 +continuels continuel adj m p 1.22 6.76 0.11 0.88 +continuent continuer ver 269.95 282.77 7.61 9.59 ind:pre:3p; +continuer continuer ver 269.95 282.77 82.29 43.51 inf; +continuera continuer ver 269.95 282.77 6.04 2.57 ind:fut:3s; +continuerai continuer ver 269.95 282.77 3.73 1.08 ind:fut:1s; +continueraient continuer ver 269.95 282.77 0.13 1.22 cnd:pre:3p; +continuerais continuer ver 269.95 282.77 1.02 0.54 cnd:pre:1s;cnd:pre:2s; +continuerait continuer ver 269.95 282.77 0.85 2.91 cnd:pre:3s; +continueras continuer ver 269.95 282.77 1.03 0.41 ind:fut:2s; +continuerez continuer ver 269.95 282.77 0.58 0.61 ind:fut:2p; +continueriez continuer ver 269.95 282.77 0.02 0 cnd:pre:2p; +continuerons continuer ver 269.95 282.77 1.55 0.54 ind:fut:1p; +continueront continuer ver 269.95 282.77 1.36 1.42 ind:fut:3p; +continues continuer ver 269.95 282.77 11.66 2.23 ind:pre:2s;sub:pre:2s; +continuez continuer ver 269.95 282.77 47.08 4.73 imp:pre:2p;ind:pre:2p; +continuiez continuer ver 269.95 282.77 0.31 0 ind:imp:2p; +continuions continuer ver 269.95 282.77 0.19 1.42 ind:imp:1p;sub:pre:1p; +continuité continuité nom f s 0.45 4.73 0.45 4.73 +continuons continuer ver 269.95 282.77 8.06 2.77 imp:pre:1p;ind:pre:1p; +continus continu adj m p 2.79 9.66 0.17 0.41 +continuum continuum nom m s 0.55 0.27 0.55 0.27 +continuâmes continuer ver 269.95 282.77 0.05 0.34 ind:pas:1p; +continuât continuer ver 269.95 282.77 0 1.76 sub:imp:3s; +continuèrent continuer ver 269.95 282.77 0.54 4.39 ind:pas:3p; +continué continuer ver m s 269.95 282.77 12.03 18.65 par:pas; +continuée continuer ver f s 269.95 282.77 0.17 0.54 par:pas; +continuées continuer ver f p 269.95 282.77 0 0.27 par:pas; +continués continuer ver m p 269.95 282.77 0.03 0.07 par:pas; +continûment continûment adv 0.01 0.88 0.01 0.88 +contions conter ver 3.76 8.99 0 0.07 ind:imp:1p; +contondant contondant adj m s 0.82 0.47 0.78 0.07 +contondante contondant adj f s 0.82 0.47 0.01 0 +contondants contondant adj m p 0.82 0.47 0.04 0.41 +contorsion contorsion nom f s 0.16 2.23 0.02 0.47 +contorsionna contorsionner ver 0.2 2.09 0 0.07 ind:pas:3s; +contorsionnaient contorsionner ver 0.2 2.09 0 0.07 ind:imp:3p; +contorsionnait contorsionner ver 0.2 2.09 0 0.34 ind:imp:3s; +contorsionnant contorsionner ver 0.2 2.09 0 0.54 par:pre; +contorsionne contorsionner ver 0.2 2.09 0.13 0.2 imp:pre:2s;ind:pre:3s; +contorsionnent contorsionner ver 0.2 2.09 0.01 0.14 ind:pre:3p; +contorsionner contorsionner ver 0.2 2.09 0.04 0.07 inf; +contorsionniste contorsionniste nom s 0.37 0.14 0.34 0.14 +contorsionnistes contorsionniste nom p 0.37 0.14 0.04 0 +contorsionné contorsionner ver m s 0.2 2.09 0.01 0.27 par:pas; +contorsionnée contorsionner ver f s 0.2 2.09 0 0.14 par:pas; +contorsionnées contorsionner ver f p 0.2 2.09 0 0.07 par:pas; +contorsionnés contorsionner ver m p 0.2 2.09 0 0.2 par:pas; +contorsions contorsion nom f p 0.16 2.23 0.14 1.76 +contour contour nom m s 2.09 16.28 0.87 5 +contourna contourner ver 6.68 19.59 0 2.84 ind:pas:3s; +contournai contourner ver 6.68 19.59 0 0.47 ind:pas:1s; +contournaient contourner ver 6.68 19.59 0.01 0.47 ind:imp:3p; +contournais contourner ver 6.68 19.59 0 0.07 ind:imp:1s; +contournait contourner ver 6.68 19.59 0.17 1.76 ind:imp:3s; +contournant contourner ver 6.68 19.59 0.23 2.91 par:pre; +contourne contourner ver 6.68 19.59 0.99 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contournement contournement nom m s 0.14 0.07 0.13 0 +contournements contournement nom m p 0.14 0.07 0.01 0.07 +contournent contourner ver 6.68 19.59 0.08 0.54 ind:pre:3p; +contourner contourner ver 6.68 19.59 3.63 5.47 inf; +contournera contourner ver 6.68 19.59 0.1 0 ind:fut:3s; +contournerai contourner ver 6.68 19.59 0.02 0.07 ind:fut:1s; +contournerais contourner ver 6.68 19.59 0.01 0 cnd:pre:1s; +contournerez contourner ver 6.68 19.59 0.11 0 ind:fut:2p; +contournerons contourner ver 6.68 19.59 0.02 0.07 ind:fut:1p; +contournes contourner ver 6.68 19.59 0.17 0.07 ind:pre:2s; +contournez contourner ver 6.68 19.59 0.2 0 imp:pre:2p;ind:pre:2p; +contournions contourner ver 6.68 19.59 0.01 0.14 ind:imp:1p; +contournons contourner ver 6.68 19.59 0.27 0.2 imp:pre:1p;ind:pre:1p; +contournèrent contourner ver 6.68 19.59 0.01 0.47 ind:pas:3p; +contourné contourner ver m s 6.68 19.59 0.59 1.82 par:pas; +contournée contourné adj f s 0.05 1.28 0.04 0.34 +contournées contourner ver f p 6.68 19.59 0.03 0.07 par:pas; +contournés contourner ver m p 6.68 19.59 0.01 0.07 par:pas; +contours contour nom m p 2.09 16.28 1.22 11.28 +contra contrer ver 19.15 18.72 0.12 0.14 ind:pas:3s; +contraceptif contraceptif nom m s 0.55 0.07 0.26 0 +contraceptifs contraceptif nom m p 0.55 0.07 0.29 0.07 +contraception contraception nom f s 0.66 0.68 0.66 0.68 +contraceptive contraceptif adj f s 0.56 0.2 0.1 0 +contraceptives contraceptif adj f p 0.56 0.2 0.38 0.2 +contracta contracter ver 3.31 12.3 0.01 0.95 ind:pas:3s; +contractai contracter ver 3.31 12.3 0 0.14 ind:pas:1s; +contractaient contracter ver 3.31 12.3 0 0.68 ind:imp:3p; +contractais contracter ver 3.31 12.3 0 0.07 ind:imp:1s; +contractait contracter ver 3.31 12.3 0 0.95 ind:imp:3s; +contractant contractant adj m s 0.2 0.07 0.1 0 +contractantes contractant adj f p 0.2 0.07 0.1 0.07 +contractants contractant nom m p 0.06 0.14 0.04 0.14 +contracte contracter ver 3.31 12.3 0.61 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contractent contracter ver 3.31 12.3 0.4 0.47 ind:pre:3p; +contracter contracter ver 3.31 12.3 0.48 1.42 inf; +contracterait contracter ver 3.31 12.3 0 0.07 cnd:pre:3s; +contractez contracter ver 3.31 12.3 0.11 0 imp:pre:2p; +contractile contractile adj s 0.01 0 0.01 0 +contraction contraction nom f s 3.05 2.97 1 2.23 +contractions contraction nom f p 3.05 2.97 2.05 0.74 +contractons contracter ver 3.31 12.3 0 0.07 ind:pre:1p; +contractuel contractuel nom m s 0.71 0.34 0.07 0 +contractuelle contractuel nom f s 0.71 0.34 0.58 0.07 +contractuellement contractuellement adv 0.13 0 0.13 0 +contractuelles contractuel adj f p 0.35 0.47 0.17 0 +contractuels contractuel nom m p 0.71 0.34 0.02 0.27 +contracture contracture nom f s 0.04 0.34 0.03 0.27 +contractures contracture nom f p 0.04 0.34 0.01 0.07 +contractèrent contracter ver 3.31 12.3 0 0.27 ind:pas:3p; +contracté contracter ver m s 3.31 12.3 1.22 2.97 par:pas; +contractée contracter ver f s 3.31 12.3 0.36 0.88 par:pas; +contractées contracter ver f p 3.31 12.3 0.06 0.41 par:pas; +contractés contracter ver m p 3.31 12.3 0.03 0.34 par:pas; +contradicteur contradicteur nom m s 0.02 0.14 0.01 0 +contradicteurs contradicteur nom m p 0.02 0.14 0.01 0.14 +contradiction contradiction nom f s 2.09 12.97 1.28 7.36 +contradictions contradiction nom f p 2.09 12.97 0.81 5.61 +contradictoire contradictoire adj s 2.42 9.05 1.56 2.43 +contradictoirement contradictoirement adv 0 0.2 0 0.2 +contradictoires contradictoire adj p 2.42 9.05 0.87 6.62 +contraignaient contraindre ver 6.66 24.73 0 0.41 ind:imp:3p; +contraignais contraindre ver 6.66 24.73 0 0.14 ind:imp:1s; +contraignait contraindre ver 6.66 24.73 0.1 1.89 ind:imp:3s; +contraignant contraignant adj m s 0.16 1.15 0.11 0.68 +contraignante contraignant adj f s 0.16 1.15 0.04 0.34 +contraignantes contraignant adj f p 0.16 1.15 0.02 0.14 +contraigne contraindre ver 6.66 24.73 0.04 0.07 sub:pre:3s; +contraignent contraindre ver 6.66 24.73 0.26 0.88 ind:pre:3p; +contraignit contraindre ver 6.66 24.73 0 1.96 ind:pas:3s; +contraignît contraindre ver 6.66 24.73 0 0.14 sub:imp:3s; +contraindra contraindre ver 6.66 24.73 0.02 0.07 ind:fut:3s; +contraindrai contraindre ver 6.66 24.73 0.01 0.07 ind:fut:1s; +contraindraient contraindre ver 6.66 24.73 0 0.07 cnd:pre:3p; +contraindrais contraindre ver 6.66 24.73 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +contraindrait contraindre ver 6.66 24.73 0 0.14 cnd:pre:3s; +contraindre contraindre ver 6.66 24.73 1.21 3.99 inf; +contrains contraindre ver 6.66 24.73 0.06 0.27 ind:pre:1s;ind:pre:2s; +contraint contraindre ver m s 6.66 24.73 3.42 8.92 ind:pre:3s;par:pas; +contrainte contrainte nom f s 2.94 5.81 2.94 5.81 +contraintes contraint nom f p 1.13 3.31 1.13 3.31 +contraints contraindre ver m p 6.66 24.73 0.95 2.23 par:pas; +contraire contraire nom m s 62.13 126.01 62.03 125.47 +contrairement contrairement adv 8.79 10.41 8.79 10.41 +contraires contraire adj p 6.9 14.53 0.51 3.78 +contrait contrer ver 19.15 18.72 0.01 0.14 ind:imp:3s; +contralto contralto nom m s 0.28 0.27 0.28 0.2 +contraltos contralto nom m p 0.28 0.27 0.01 0.07 +contrant contrer ver 19.15 18.72 0 0.07 par:pre; +contrapunctique contrapunctique adj m s 0 0.07 0 0.07 +contrapuntique contrapuntique adj f s 0.02 0 0.02 0 +contraria contrarier ver 11.03 13.31 0.1 0.61 ind:pas:3s; +contrariaient contrarier ver 11.03 13.31 0.01 0.2 ind:imp:3p; +contrariais contrarier ver 11.03 13.31 0.01 0.07 ind:imp:1s; +contrariait contrarier ver 11.03 13.31 0.27 1.49 ind:imp:3s; +contrariant contrariant adj m s 0.84 1.55 0.76 1.15 +contrariante contrariant adj f s 0.84 1.55 0.04 0.2 +contrariantes contrariant adj f p 0.84 1.55 0.03 0.14 +contrariants contrariant adj m p 0.84 1.55 0.01 0.07 +contrarie contrarier ver 11.03 13.31 1.77 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contrarient contrarier ver 11.03 13.31 0.08 0.41 ind:pre:3p; +contrarier contrarier ver 11.03 13.31 2.72 5.81 inf; +contrarierai contrarier ver 11.03 13.31 0 0.14 ind:fut:1s; +contrarierait contrarier ver 11.03 13.31 0.23 0.2 cnd:pre:3s; +contrariez contrarier ver 11.03 13.31 0.23 0 imp:pre:2p;ind:pre:2p; +contrarions contrarier ver 11.03 13.31 0.02 0.07 imp:pre:1p; +contrariât contrarier ver 11.03 13.31 0 0.07 sub:imp:3s; +contrarié contrarier ver m s 11.03 13.31 3.29 1.55 par:pas; +contrariée contrarier ver f s 11.03 13.31 1.94 1.15 par:pas; +contrariées contrarié adj f p 2.62 4.12 0.03 0.27 +contrariés contrarié adj m p 2.62 4.12 0.41 0.27 +contrariété contrariété nom f s 0.58 3.99 0.38 3.18 +contrariétés contrariété nom f p 0.58 3.99 0.21 0.81 +contras contra nom m p 0.2 0 0.08 0 +contrasta contraster ver 0.21 8.58 0 0.07 ind:pas:3s; +contrastaient contraster ver 0.21 8.58 0 1.28 ind:imp:3p; +contrastait contraster ver 0.21 8.58 0 3.65 ind:imp:3s; +contrastant contraster ver 0.21 8.58 0.02 1.42 par:pre; +contraste contraste nom m s 1.48 12.5 1.23 11.62 +contrastent contraster ver 0.21 8.58 0.01 0.47 ind:pre:3p; +contraster contraster ver 0.21 8.58 0.09 0.14 inf; +contrasteraient contraster ver 0.21 8.58 0.01 0 cnd:pre:3p; +contrasterait contraster ver 0.21 8.58 0.01 0.07 cnd:pre:3s; +contrastes contraste nom m p 1.48 12.5 0.25 0.88 +contrastez contraster ver 0.21 8.58 0.01 0 imp:pre:2p; +contrastât contraster ver 0.21 8.58 0 0.14 sub:imp:3s; +contrasté contraster ver m s 0.21 8.58 0.02 0.07 par:pas; +contrastée contrasté adj f s 0.03 0.41 0.01 0.14 +contrastées contrasté adj f p 0.03 0.41 0 0.14 +contrastés contraster ver m p 0.21 8.58 0 0.07 par:pas; +contrat contrat nom m s 53.23 15 45.7 12.43 +contrat_type contrat_type nom m s 0.01 0.07 0.01 0.07 +contrats contrat nom m p 53.23 15 7.53 2.57 +contravention contravention nom f s 2.76 1.22 1.85 0.95 +contraventions contravention nom f p 2.76 1.22 0.91 0.27 +contre contre pre 313.71 591.15 313.71 591.15 +contre_accusation contre_accusation nom f p 0.01 0 0.01 0 +contre_alizé contre_alizé nom m p 0 0.07 0 0.07 +contre_allée contre_allée nom f s 0.05 0.34 0.04 0.2 +contre_allée contre_allée nom f p 0.05 0.34 0.01 0.14 +contre_amiral contre_amiral nom m s 0.19 0.07 0.19 0.07 +contre_appel contre_appel nom m s 0 0.07 0 0.07 +contre_assurance contre_assurance nom f s 0 0.07 0 0.07 +contre_attaquer contre_attaquer ver 0.71 1.96 0.01 0.07 ind:pas:3s; +contre_attaquer contre_attaquer ver 0.71 1.96 0 0.2 ind:imp:3p; +contre_attaquer contre_attaquer ver 0.71 1.96 0 0.07 ind:imp:3s; +contre_attaquer contre_attaquer ver 0.71 1.96 0 0.07 par:pre; +contre_attaque contre_attaque nom f s 1.46 2.16 1.35 1.69 +contre_attaquer contre_attaquer ver 0.71 1.96 0.07 0.2 ind:pre:3p; +contre_attaquer contre_attaquer ver 0.71 1.96 0.37 0.95 inf; +contre_attaquer contre_attaquer ver 0.71 1.96 0.01 0 ind:fut:3s; +contre_attaquer contre_attaquer ver 0.71 1.96 0.03 0.07 ind:fut:1p; +contre_attaque contre_attaque nom f p 1.46 2.16 0.11 0.47 +contre_attaquer contre_attaquer ver 0.71 1.96 0.03 0.07 ind:pre:1p; +contre_attaquer contre_attaquer ver 0.71 1.96 0.03 0.07 ind:pas:3p; +contre_attaquer contre_attaquer ver m s 0.71 1.96 0.07 0.07 par:pas; +contre_champ contre_champ nom m s 0 0.07 0 0.07 +contre_chant contre_chant nom m s 0 0.14 0 0.14 +contre_choc contre_choc nom m p 0 0.07 0 0.07 +contre_clé contre_clé nom f p 0 0.07 0 0.07 +contre_courant contre_courant nom m s 0.59 1.96 0.59 1.96 +contre_culture contre_culture nom f s 0.03 0 0.03 0 +contre_emploi contre_emploi nom m s 0.01 0 0.01 0 +contre_espionnage contre_espionnage nom m s 0.67 0.34 0.67 0.34 +contre_exemple contre_exemple nom m s 0 0.07 0 0.07 +contre_expertise contre_expertise nom f s 0.52 0.27 0.51 0.2 +contre_expertise contre_expertise nom f p 0.52 0.27 0.01 0.07 +contre_feu contre_feu nom m s 0.07 0 0.07 0 +contre_feux contre_feux nom m p 0 0.07 0 0.07 +contre_fiche contre_fiche nom f p 0 0.07 0 0.07 +contre_fil contre_fil nom m s 0 0.07 0 0.07 +contre_gré contre_gré nom m s 0 0.14 0 0.14 +contre_indication contre_indication nom f s 0.07 0 0.04 0 +contre_indication contre_indication nom f p 0.07 0 0.04 0 +contre_indiquer contre_indiquer ver m s 0.06 0.14 0.06 0.14 par:pas; +contre_interrogatoire contre_interrogatoire nom m s 0.48 0 0.46 0 +contre_interrogatoire contre_interrogatoire nom m p 0.48 0 0.02 0 +contre_jour contre_jour nom m s 0.39 6.01 0.39 6.01 +contre_la_montre contre_la_montre nom m s 0.8 0 0.8 0 +contre_lame contre_lame nom f s 0 0.07 0 0.07 +contre_lettre contre_lettre nom f s 0 0.14 0 0.14 +contre_manifestant contre_manifestant nom m p 0 0.14 0 0.14 +contre_manifester contre_manifester ver 0 0.07 0 0.07 ind:pre:3p; +contre_mesure contre_mesure nom f s 0.42 0 0.04 0 +contre_mesure contre_mesure nom f p 0.42 0 0.39 0 +contre_mine contre_mine nom f s 0 0.14 0 0.07 +contre_mine contre_mine nom f p 0 0.14 0 0.07 +contre_miner contre_miner ver m s 0 0.07 0 0.07 par:pas; +contre_nature contre_nature adj s 0.41 0.14 0.41 0.14 +contre_offensive contre_offensive nom f s 0.29 0.41 0.18 0.41 +contre_offensive contre_offensive nom f p 0.29 0.41 0.11 0 +contre_ordre contre_ordre nom m s 0.47 0.95 0.46 0.81 +contre_ordre contre_ordre nom m p 0.47 0.95 0.01 0.14 +contre_pente contre_pente nom f s 0 0.34 0 0.34 +contre_performance contre_performance nom f s 0.14 0.07 0.14 0 +contre_performance contre_performance nom f p 0.14 0.07 0 0.07 +contre_pied contre_pied nom m s 0.04 0.61 0.04 0.54 +contre_pied contre_pied nom m p 0.04 0.61 0 0.07 +contre_plaqué contre_plaqué nom m s 0.1 0.54 0.1 0.54 +contre_plongée contre_plongée nom f s 0.23 0.47 0.23 0.47 +contre_pouvoir contre_pouvoir nom m p 0 0.07 0 0.07 +contre_pression contre_pression nom f s 0.02 0 0.02 0 +contre_productif contre_productif adj m s 0.1 0 0.09 0 +contre_productif contre_productif adj f s 0.1 0 0.01 0 +contre_propagande contre_propagande nom f s 0.02 0.07 0.02 0.07 +contre_proposition contre_proposition nom f s 0.4 0.07 0.39 0.07 +contre_proposition contre_proposition nom f p 0.4 0.07 0.01 0 +contre_réaction contre_réaction nom f s 0.01 0 0.01 0 +contre_réforme contre_réforme nom f s 0 0.61 0 0.61 +contre_révolution contre_révolution nom f s 0.37 0.34 0.37 0.34 +contre_révolutionnaire contre_révolutionnaire adj s 0.14 0.27 0.03 0 +contre_révolutionnaire contre_révolutionnaire adj p 0.14 0.27 0.11 0.27 +contre_terrorisme contre_terrorisme nom m s 0.07 0 0.07 0 +contre_terroriste contre_terroriste adj f s 0 0.07 0 0.07 +contre_test contre_test nom m s 0 0.07 0 0.07 +contre_torpilleur contre_torpilleur nom m s 0.2 1.22 0.08 0.61 +contre_torpilleur contre_torpilleur nom m p 0.2 1.22 0.12 0.61 +contre_transfert contre_transfert nom m s 0.01 0 0.01 0 +contre_ut contre_ut nom m 0.04 0.07 0.04 0.07 +contre_voie contre_voie nom f s 0 0.27 0 0.27 +contre_vérité contre_vérité nom f s 0.02 0.07 0.02 0.07 +contre_épreuve contre_épreuve nom f s 0.01 0.07 0 0.07 +contre_épreuve contre_épreuve nom f p 0.01 0.07 0.01 0 +contrebalance contrebalancer ver 0.19 0.68 0.03 0.14 ind:pre:1s;ind:pre:3s; +contrebalancer contrebalancer ver 0.19 0.68 0.12 0.27 inf; +contrebalancé contrebalancer ver m s 0.19 0.68 0.01 0 par:pas; +contrebalancée contrebalancer ver f s 0.19 0.68 0.02 0 par:pas; +contrebalancés contrebalancer ver m p 0.19 0.68 0.01 0.07 par:pas; +contrebalançais contrebalancer ver 0.19 0.68 0 0.07 ind:imp:1s; +contrebalançait contrebalancer ver 0.19 0.68 0 0.14 ind:imp:3s; +contrebande contrebande nom f s 3.72 1.96 3.72 1.96 +contrebandier contrebandier nom m s 1.43 1.08 0.47 0.47 +contrebandiers contrebandier nom m p 1.43 1.08 0.94 0.54 +contrebandière contrebandier nom f s 1.43 1.08 0.01 0.07 +contrebas contrebas adv 0.23 6.49 0.23 6.49 +contrebasse contrebasse nom s 0.41 0.34 0.41 0.27 +contrebasses contrebasse nom p 0.41 0.34 0 0.07 +contrebassiste contrebassiste nom s 0.02 0.14 0.01 0.14 +contrebassistes contrebassiste nom p 0.02 0.14 0.01 0 +contrebraque contrebraquer ver 0.01 0.07 0.01 0.07 imp:pre:2s;ind:pre:1s; +contrecarraient contrecarrer ver 1.06 1.82 0 0.07 ind:imp:3p; +contrecarrais contrecarrer ver 1.06 1.82 0 0.07 ind:imp:1s; +contrecarre contrecarrer ver 1.06 1.82 0.08 0.54 imp:pre:2s;ind:pre:3s;sub:pre:3s; +contrecarrer contrecarrer ver 1.06 1.82 0.93 0.68 inf; +contrecarres contrecarrer ver 1.06 1.82 0 0.27 ind:pre:2s; +contrecarré contrecarrer ver m s 1.06 1.82 0.03 0.07 par:pas; +contrecarrée contrecarrer ver f s 1.06 1.82 0.03 0.14 par:pas; +contrechamp contrechamp nom m s 0.46 0.34 0.11 0.34 +contrechamps contrechamp nom m p 0.46 0.34 0.35 0 +contrecoeur contrecoeur nom m s 0.69 3.38 0.69 3.38 +contrecollé contrecollé adj m s 0 0.07 0 0.07 +contrecoup contrecoup nom m s 0.26 2.03 0.23 1.49 +contrecoups contrecoup nom m p 0.26 2.03 0.04 0.54 +contredanse contredanse nom f s 0.5 0.54 0.3 0.27 +contredanses contredanse nom f p 0.5 0.54 0.2 0.27 +contredira contredire ver 6.99 7.84 0.05 0.07 ind:fut:3s; +contredirai contredire ver 6.99 7.84 0.18 0.07 ind:fut:1s; +contrediraient contredire ver 6.99 7.84 0.03 0.07 cnd:pre:3p; +contredirait contredire ver 6.99 7.84 0.08 0.14 cnd:pre:3s; +contredire contredire ver 6.99 7.84 3.03 3.51 inf; +contredirez contredire ver 6.99 7.84 0.03 0 ind:fut:2p; +contredis contredire ver 6.99 7.84 0.92 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +contredisaient contredire ver 6.99 7.84 0.34 0.2 ind:imp:3p; +contredisait contredire ver 6.99 7.84 0.27 0.81 ind:imp:3s; +contredisant contredire ver 6.99 7.84 0.01 0.47 par:pre; +contredise contredire ver 6.99 7.84 0.03 0.14 sub:pre:3s; +contredisent contredire ver 6.99 7.84 0.48 0.41 ind:pre:3p; +contredises contredire ver 6.99 7.84 0.02 0 sub:pre:2s; +contredisez contredire ver 6.99 7.84 0.11 0 imp:pre:2p;ind:pre:2p; +contredit contredire ver m s 6.99 7.84 1.34 1.28 ind:pre:3s;par:pas; +contredite contredire ver f s 6.99 7.84 0.04 0.2 par:pas; +contredites contredire ver f p 6.99 7.84 0.01 0.14 par:pas; +contredits contredire ver m p 6.99 7.84 0.04 0.07 par:pas; +contredît contredire ver 6.99 7.84 0 0.07 sub:imp:3s; +contrefacteurs contrefacteur nom m p 0 0.07 0 0.07 +contrefaire contrefaire ver 0.51 0.74 0.22 0.2 inf; +contrefaisait contrefaire ver 0.51 0.74 0 0.14 ind:imp:3s; +contrefaisant contrefaire ver 0.51 0.74 0 0.14 par:pre; +contrefait contrefaire ver m s 0.51 0.74 0.17 0.14 ind:pre:3s;par:pas; +contrefaite contrefaire ver f s 0.51 0.74 0.07 0 par:pas; +contrefaits contrefait adj m p 0.17 0.95 0.07 0.14 +contrefaçon contrefaçon nom f s 1.12 1.15 0.7 0.95 +contrefaçons contrefaçon nom f p 1.12 1.15 0.42 0.2 +contreferait contrefaire ver 0.51 0.74 0 0.07 cnd:pre:3s; +contrefichais contreficher ver 0.59 0.68 0 0.2 ind:imp:1s; +contrefichait contreficher ver 0.59 0.68 0 0.2 ind:imp:3s; +contrefiche contreficher ver 0.59 0.68 0.59 0.27 ind:pre:1s;ind:pre:3s; +contrefort contrefort nom m s 0.08 3.65 0.02 0.47 +contreforts contrefort nom m p 0.08 3.65 0.06 3.18 +contrefous contrefoutre ver 0.89 0.54 0.72 0.2 ind:pre:1s;ind:pre:2s; +contrefout contrefoutre ver 0.89 0.54 0.16 0.14 ind:pre:3s; +contrefoutait contrefoutre ver 0.89 0.54 0 0.2 ind:imp:3s; +contrefoutre contrefoutre ver 0.89 0.54 0.01 0 inf; +contremander contremander ver 0.01 0 0.01 0 inf; +contremarches contremarche nom f p 0 0.07 0 0.07 +contremarques contremarque nom f p 0 0.07 0 0.07 +contremaître contremaître nom m s 3.65 3.99 3.61 3.51 +contremaîtres contremaître nom m p 3.65 3.99 0.04 0.47 +contremaîtresse contremaîtresse nom f s 0 0.27 0 0.27 +contrent contrer ver 19.15 18.72 0.02 0 ind:pre:3p; +contrepartie contrepartie nom f s 1.33 2.16 1.33 2.16 +contreplaqué contreplaqué nom m s 0.15 1.35 0.15 1.35 +contrepoids contrepoids nom m 0.56 1.82 0.56 1.82 +contrepoint contrepoint nom m s 0.33 1.62 0.33 1.62 +contrepoison contrepoison nom m s 0 0.47 0 0.27 +contrepoisons contrepoison nom m p 0 0.47 0 0.2 +contreproposition contreproposition nom f s 0.01 0 0.01 0 +contrepèterie contrepèterie nom f s 0 0.2 0 0.07 +contrepèteries contrepèterie nom f p 0 0.2 0 0.14 +contrer contrer ver 19.15 18.72 1.6 1.08 inf; +contrerai contrer ver 19.15 18.72 0.01 0 ind:fut:1s; +contrerait contrer ver 19.15 18.72 0.01 0.07 cnd:pre:3s; +contreras contrer ver 19.15 18.72 0.31 0 ind:fut:2s; +contreront contrer ver 19.15 18.72 0 0.07 ind:fut:3p; +contres contre nom_sup m p 5.43 5.81 0.08 0.07 +contrescarpe contrescarpe nom f s 0.14 0.61 0.14 0.61 +contreseing contreseing nom m s 0.21 0.07 0.21 0.07 +contresens contresens nom m 0.5 1.55 0.5 1.55 +contresignait contresigner ver 0.24 0.74 0 0.07 ind:imp:3s; +contresigne contresigner ver 0.24 0.74 0.01 0.14 ind:pre:1s;ind:pre:3s; +contresigner contresigner ver 0.24 0.74 0.06 0.14 inf; +contresigné contresigner ver m s 0.24 0.74 0.06 0.14 par:pas; +contresignée contresigner ver f s 0.24 0.74 0.1 0.07 par:pas; +contresignées contresigner ver f p 0.24 0.74 0 0.07 par:pas; +contresignés contresigner ver m p 0.24 0.74 0.01 0.14 par:pas; +contretemps contretemps nom m 1.43 3.18 1.43 3.18 +contretypés contretyper ver m p 0 0.07 0 0.07 par:pas; +contrevallation contrevallation nom f s 0.01 0 0.01 0 +contrevenaient contrevenir ver 0.31 1.08 0 0.07 ind:imp:3p; +contrevenait contrevenir ver 0.31 1.08 0 0.07 ind:imp:3s; +contrevenant contrevenir ver 0.31 1.08 0.21 0.07 par:pre; +contrevenants contrevenant nom m p 0.5 0.27 0.37 0.27 +contrevenez contrevenir ver 0.31 1.08 0.01 0 ind:pre:2p; +contrevenir contrevenir ver 0.31 1.08 0.04 0.47 inf; +contrevent contrevent nom m s 0 1.15 0 0.07 +contrevents contrevent nom m p 0 1.15 0 1.08 +contrevenu contrevenir ver m s 0.31 1.08 0.02 0.14 par:pas; +contreviendrait contrevenir ver 0.31 1.08 0.01 0 cnd:pre:3s; +contreviens contrevenir ver 0.31 1.08 0 0.07 ind:pre:1s; +contrevient contrevenir ver 0.31 1.08 0.01 0.2 ind:pre:3s; +contrevérité contrevérité nom f s 0.05 0.14 0 0.07 +contrevérités contrevérité nom f p 0.05 0.14 0.05 0.07 +contribua contribuer ver 5.63 18.11 0.14 0.81 ind:pas:3s; +contribuable contribuable nom s 2.55 0.41 1.25 0.07 +contribuables contribuable nom p 2.55 0.41 1.3 0.34 +contribuaient contribuer ver 5.63 18.11 0 1.42 ind:imp:3p; +contribuait contribuer ver 5.63 18.11 0.02 2.57 ind:imp:3s; +contribuant contribuer ver 5.63 18.11 0.06 0.2 par:pre; +contribue contribuer ver 5.63 18.11 0.97 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contribuent contribuer ver 5.63 18.11 0.16 0.74 ind:pre:3p; +contribuer contribuer ver 5.63 18.11 1.67 2.84 inf; +contribuera contribuer ver 5.63 18.11 0.05 0.61 ind:fut:3s; +contribueraient contribuer ver 5.63 18.11 0.01 0.34 cnd:pre:3p; +contribuerais contribuer ver 5.63 18.11 0.01 0 cnd:pre:2s; +contribuerait contribuer ver 5.63 18.11 0.03 0.54 cnd:pre:3s; +contribueras contribuer ver 5.63 18.11 0.01 0 ind:fut:2s; +contribuerez contribuer ver 5.63 18.11 0.04 0 ind:fut:2p; +contribueront contribuer ver 5.63 18.11 0.13 0.07 ind:fut:3p; +contribuez contribuer ver 5.63 18.11 0.01 0.14 ind:pre:2p; +contribuons contribuer ver 5.63 18.11 0.1 0.07 imp:pre:1p;ind:pre:1p; +contributeur contributeur nom m s 0.02 0 0.02 0 +contribution contribution nom f s 4.03 5.34 3.3 4.39 +contributions contribution nom f p 4.03 5.34 0.73 0.95 +contribuât contribuer ver 5.63 18.11 0 0.07 sub:imp:3s; +contribuèrent contribuer ver 5.63 18.11 0 0.27 ind:pas:3p; +contribué contribuer ver m s 5.63 18.11 2.2 5.68 par:pas; +contrista contrister ver 0 0.2 0 0.07 ind:pas:3s; +contristant contrister ver 0 0.2 0 0.07 par:pre; +contristées contrister ver f p 0 0.2 0 0.07 par:pas; +contrit contrit adj m s 0.19 2.5 0.14 1.89 +contrite contrit adj f s 0.19 2.5 0.02 0.41 +contrites contrit adj f p 0.19 2.5 0.01 0 +contrition contrition nom f s 0.87 1.76 0.87 1.69 +contritions contrition nom f p 0.87 1.76 0 0.07 +contrits contrit adj m p 0.19 2.5 0.01 0.2 +control control adj s 1.27 0.07 1.27 0.07 +contrordre contrordre nom m s 0.41 0.34 0.28 0 +contrordres contrordre nom m p 0.41 0.34 0.14 0.34 +controverse controverse nom f s 1.38 2.57 1.13 1.42 +controverses controverse nom f p 1.38 2.57 0.24 1.15 +controversé controversé adj m s 0.85 0.27 0.46 0.14 +controversée controversé adj f s 0.85 0.27 0.2 0.14 +controversées controversé adj f p 0.85 0.27 0.06 0 +controversés controversé adj m p 0.85 0.27 0.14 0 +contré contrer ver m s 19.15 18.72 0.27 0.27 par:pas; +contrée contrée nom f s 2.77 5.41 1.65 2.7 +contrées contrée nom f p 2.77 5.41 1.12 2.7 +contrés contrer ver m p 19.15 18.72 0.03 0.07 par:pas; +contrôla contrôler ver 61.13 21.01 0 0.41 ind:pas:3s; +contrôlable contrôlable adj s 0.12 0.14 0.08 0.14 +contrôlables contrôlable adj p 0.12 0.14 0.04 0 +contrôlai contrôler ver 61.13 21.01 0 0.2 ind:pas:1s; +contrôlaient contrôler ver 61.13 21.01 0.44 0.47 ind:imp:3p; +contrôlais contrôler ver 61.13 21.01 0.6 0.27 ind:imp:1s;ind:imp:2s; +contrôlait contrôler ver 61.13 21.01 1.17 2.57 ind:imp:3s; +contrôlant contrôler ver 61.13 21.01 0.28 0.81 par:pre; +contrôle contrôle nom m s 66.28 19.66 63.48 17.43 +contrôlent contrôler ver 61.13 21.01 2.22 0.41 ind:pre:3p; +contrôler contrôler ver 61.13 21.01 24.91 7.57 inf; +contrôlera contrôler ver 61.13 21.01 0.33 0 ind:fut:3s; +contrôlerai contrôler ver 61.13 21.01 0.26 0 ind:fut:1s; +contrôlerais contrôler ver 61.13 21.01 0.02 0 cnd:pre:1s; +contrôlerait contrôler ver 61.13 21.01 0.22 0.07 cnd:pre:3s; +contrôleras contrôler ver 61.13 21.01 0.05 0 ind:fut:2s; +contrôlerez contrôler ver 61.13 21.01 0.06 0 ind:fut:2p; +contrôleriez contrôler ver 61.13 21.01 0.01 0 cnd:pre:2p; +contrôlerons contrôler ver 61.13 21.01 0.67 0 ind:fut:1p; +contrôleront contrôler ver 61.13 21.01 0.22 0 ind:fut:3p; +contrôles contrôle nom m p 66.28 19.66 2.8 2.23 +contrôleur contrôleur nom m s 8.93 5.14 7.43 4.26 +contrôleurs contrôleur nom m p 8.93 5.14 1 0.88 +contrôleuse contrôleur nom f s 8.93 5.14 0.49 0 +contrôlez contrôler ver 61.13 21.01 3.36 0.14 imp:pre:2p;ind:pre:2p; +contrôliez contrôler ver 61.13 21.01 0.09 0 ind:imp:2p; +contrôlions contrôler ver 61.13 21.01 0.06 0.14 ind:imp:1p; +contrôlons contrôler ver 61.13 21.01 1.62 0 imp:pre:1p;ind:pre:1p; +contrôlâmes contrôler ver 61.13 21.01 0 0.07 ind:pas:1p; +contrôlèrent contrôler ver 61.13 21.01 0.01 0 ind:pas:3p; +contrôlé contrôler ver m s 61.13 21.01 4.7 2.43 par:pas; +contrôlée contrôler ver f s 61.13 21.01 1.43 1.15 par:pas; +contrôlées contrôler ver f p 61.13 21.01 0.79 0.61 par:pas; +contrôlés contrôler ver m p 61.13 21.01 0.7 0.47 par:pas; +contumace contumace nom f s 0.03 0.61 0.03 0.54 +contumaces contumace nom f p 0.03 0.61 0 0.07 +contumax contumax adj 0 0.2 0 0.2 +contuse contus adj f s 0 0.07 0 0.07 +contusion contusion nom f s 3.23 0.74 1.03 0.47 +contusionné contusionné adj m s 0.07 0.14 0.06 0 +contusionnée contusionner ver f s 0.27 0.07 0.22 0 par:pas; +contusionnés contusionner ver m p 0.27 0.07 0.03 0 par:pas; +contusions contusion nom f p 3.23 0.74 2.19 0.27 +contât conter ver 3.76 8.99 0 0.07 sub:imp:3s; +conté conter ver m s 3.76 8.99 0.47 0.88 par:pas; +contée conter ver f s 3.76 8.99 0.18 0.68 par:pas; +contées conter ver f p 3.76 8.99 0.01 0.2 par:pas; +contés conter ver m p 3.76 8.99 0.01 0.14 par:pas; +contînt contenir ver 30.07 58.92 0 0.34 sub:imp:3s; +convainc convaincre ver 56.71 46.35 0.7 0.34 ind:pre:3s; +convaincant convaincant adj m s 4.39 4.26 2.86 2.3 +convaincante convaincant adj f s 4.39 4.26 0.96 1.42 +convaincantes convaincant adj f p 4.39 4.26 0.09 0.27 +convaincants convaincant adj m p 4.39 4.26 0.49 0.27 +convaincra convaincre ver 56.71 46.35 0.84 0 ind:fut:3s; +convaincrai convaincre ver 56.71 46.35 0.47 0.07 ind:fut:1s; +convaincrait convaincre ver 56.71 46.35 0.14 0.34 cnd:pre:3s; +convaincras convaincre ver 56.71 46.35 0.34 0.07 ind:fut:2s; +convaincre convaincre ver 56.71 46.35 28.43 23.72 inf;;inf;;inf;; +convaincrez convaincre ver 56.71 46.35 0.16 0.07 ind:fut:2p; +convaincrons convaincre ver 56.71 46.35 0.03 0.07 ind:fut:1p; +convaincront convaincre ver 56.71 46.35 0.07 0.07 ind:fut:3p; +convaincs convaincre ver 56.71 46.35 0.72 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +convaincu convaincre ver m s 56.71 46.35 16.11 12.84 par:pas; +convaincue convaincre ver f s 56.71 46.35 5.57 3.92 par:pas; +convaincues convaincu adj f p 5.79 11.35 0.15 0.34 +convaincus convaincre ver m p 56.71 46.35 1.99 1.82 par:pas; +convainquaient convaincre ver 56.71 46.35 0 0.07 ind:imp:3p; +convainquait convaincre ver 56.71 46.35 0 0.61 ind:imp:3s; +convainquant convaincre ver 56.71 46.35 0.19 0.2 par:pre; +convainque convaincre ver 56.71 46.35 0.14 0.14 sub:pre:1s;sub:pre:3s; +convainquent convaincre ver 56.71 46.35 0.23 0.14 ind:pre:3p; +convainques convaincre ver 56.71 46.35 0.04 0.07 sub:pre:2s; +convainquez convaincre ver 56.71 46.35 0.32 0 imp:pre:2p;ind:pre:2p; +convainquiez convaincre ver 56.71 46.35 0.04 0 ind:imp:2p; +convainquirent convaincre ver 56.71 46.35 0 0.2 ind:pas:3p; +convainquis convaincre ver 56.71 46.35 0.01 0.34 ind:pas:1s; +convainquit convaincre ver 56.71 46.35 0.12 0.81 ind:pas:3s; +convainquons convaincre ver 56.71 46.35 0.01 0.07 imp:pre:1p; +convalescence convalescence nom f s 1.65 3.24 1.64 3.04 +convalescences convalescence nom f p 1.65 3.24 0.01 0.2 +convalescent convalescent adj m s 0.23 1.28 0.2 0.74 +convalescente convalescent adj f s 0.23 1.28 0.01 0.47 +convalescentes convalescent adj f p 0.23 1.28 0.01 0.07 +convalescents convalescent adj m p 0.23 1.28 0.01 0 +convalo convalo nom f s 0.01 0.34 0.01 0.27 +convalos convalo nom f p 0.01 0.34 0 0.07 +convecteur convecteur nom m s 0.01 0 0.01 0 +convection convection nom f s 0.06 0 0.06 0 +convenable convenable adj s 5.96 16.22 5.37 12.91 +convenablement convenablement adv 2.02 6.22 2.02 6.22 +convenables convenable adj p 5.96 16.22 0.59 3.31 +convenaient convenir ver 38.82 73.78 0.41 1.76 ind:imp:3p; +convenais convenir ver 38.82 73.78 0.2 0.2 ind:imp:1s;ind:imp:2s; +convenait convenir ver 38.82 73.78 1.72 15.34 ind:imp:3s; +convenance convenance nom f s 1.82 5.47 1.22 2.64 +convenances convenance nom f p 1.82 5.47 0.6 2.84 +convenant convenir ver 38.82 73.78 0.2 1.08 par:pre; +convenez convenir ver 38.82 73.78 0.62 0.61 imp:pre:2p;ind:pre:2p; +conveniez convenir ver 38.82 73.78 0.16 0 ind:imp:2p; +convenir convenir ver 38.82 73.78 2.02 8.85 inf; +convenons convenir ver 38.82 73.78 0.17 0.34 imp:pre:1p;ind:pre:1p; +convent convent nom m s 0.03 0.07 0.03 0.07 +conventicule conventicule nom m s 0 0.07 0 0.07 +convention convention nom f s 7.44 12.64 5.73 8.85 +conventionnel conventionnel adj m s 3.06 3.92 1.16 1.62 +conventionnelle conventionnel adj f s 3.06 3.92 1.4 1.28 +conventionnellement conventionnellement adv 0.01 0.2 0.01 0.2 +conventionnelles conventionnel adj f p 3.06 3.92 0.22 0.41 +conventionnels conventionnel adj m p 3.06 3.92 0.29 0.61 +conventionnée conventionné adj f s 0.14 0 0.14 0 +conventions convention nom f p 7.44 12.64 1.71 3.78 +conventuel conventuel adj m s 0.1 0.68 0 0.2 +conventuelle conventuel adj f s 0.1 0.68 0.1 0.34 +conventuellement conventuellement adv 0 0.07 0 0.07 +conventuelles conventuel adj f p 0.1 0.68 0 0.07 +conventuels conventuel adj m p 0.1 0.68 0 0.07 +convenu convenir ver m s 38.82 73.78 6.88 11.01 par:pas; +convenue convenu adj f s 2.21 5.07 0.11 1.22 +convenues convenu adj f p 2.21 5.07 0.01 0.41 +convenus convenir ver m p 38.82 73.78 0.09 1.15 par:pas; +converge converger ver 0.86 3.99 0.23 0.41 ind:pre:3s; +convergeaient converger ver 0.86 3.99 0.01 1.15 ind:imp:3p; +convergeait converger ver 0.86 3.99 0 0.27 ind:imp:3s; +convergeant converger ver 0.86 3.99 0.13 0.61 par:pre; +convergence convergence nom f s 0.24 0.68 0.24 0.68 +convergent converger ver 0.86 3.99 0.29 0.41 ind:pre:3p; +convergente convergent adj f s 0.08 1.08 0.01 0.14 +convergentes convergent adj f p 0.08 1.08 0 0.2 +convergents convergent adj m p 0.08 1.08 0.01 0.54 +convergeons converger ver 0.86 3.99 0.03 0 imp:pre:1p;ind:pre:1p; +converger converger ver 0.86 3.99 0.05 0.81 inf; +convergeraient converger ver 0.86 3.99 0 0.07 cnd:pre:3p; +convergez converger ver 0.86 3.99 0.08 0 imp:pre:2p; +convergèrent converger ver 0.86 3.99 0 0.14 ind:pas:3p; +convergé converger ver m s 0.86 3.99 0.02 0.14 par:pas; +convers convers adj m 0.01 0.95 0.01 0.95 +conversaient converser ver 0.7 4.53 0 0.34 ind:imp:3p; +conversais converser ver 0.7 4.53 0.02 0 ind:imp:1s; +conversait converser ver 0.7 4.53 0 0.61 ind:imp:3s; +conversant converser ver 0.7 4.53 0.02 0.68 par:pre; +conversation conversation nom f s 42.17 115.34 35.14 84.12 +conversations conversation nom f p 42.17 115.34 7.03 31.22 +converse converser ver 0.7 4.53 0.17 0.14 ind:pre:1s;ind:pre:3s; +conversent converser ver 0.7 4.53 0.01 0.14 ind:pre:3p; +converser converser ver 0.7 4.53 0.36 1.89 inf; +converses converse adj p 0.07 0.47 0.04 0.47 +conversez converser ver 0.7 4.53 0.03 0 ind:pre:2p; +conversiez converser ver 0.7 4.53 0.02 0 ind:imp:2p; +conversion conversion nom f s 1.91 3.92 1.71 3.65 +conversions conversion nom f p 1.91 3.92 0.2 0.27 +conversons converser ver 0.7 4.53 0.01 0.07 ind:pre:1p; +conversâmes converser ver 0.7 4.53 0 0.14 ind:pas:1p; +conversèrent converser ver 0.7 4.53 0 0.14 ind:pas:3p; +conversé converser ver m s 0.7 4.53 0.05 0.34 par:pas; +converti convertir ver m s 9.34 10.34 2.41 2.3 par:pas; +convertible convertible adj s 0.24 0.34 0.2 0.2 +convertibles convertible adj p 0.24 0.34 0.04 0.14 +convertie convertir ver f s 9.34 10.34 0.52 0.88 par:pas; +converties convertir ver f p 9.34 10.34 0.17 0.14 par:pas; +convertir convertir ver 9.34 10.34 4.12 3.78 inf; +convertira convertir ver 9.34 10.34 0.02 0.07 ind:fut:3s; +convertirai convertir ver 9.34 10.34 0.03 0 ind:fut:1s; +convertirais convertir ver 9.34 10.34 0.04 0.07 cnd:pre:1s; +convertirait convertir ver 9.34 10.34 0 0.14 cnd:pre:3s; +convertirons convertir ver 9.34 10.34 0.01 0 ind:fut:1p; +convertis convertir ver m p 9.34 10.34 0.95 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +convertissaient convertir ver 9.34 10.34 0 0.07 ind:imp:3p; +convertissais convertir ver 9.34 10.34 0.01 0.07 ind:imp:1s; +convertissait convertir ver 9.34 10.34 0.05 0.27 ind:imp:3s; +convertissant convertir ver 9.34 10.34 0.01 0.27 par:pre; +convertisse convertir ver 9.34 10.34 0.09 0.07 sub:pre:1s;sub:pre:3s; +convertissent convertir ver 9.34 10.34 0.4 0.2 ind:pre:3p; +convertisseur convertisseur nom m s 0.35 0 0.22 0 +convertisseurs convertisseur nom m p 0.35 0 0.13 0 +convertissez convertir ver 9.34 10.34 0.07 0.07 imp:pre:2p;ind:pre:2p; +convertissions convertir ver 9.34 10.34 0 0.14 ind:imp:1p; +convertit convertir ver 9.34 10.34 0.45 0.47 ind:pre:3s;ind:pas:3s; +convertît convertir ver 9.34 10.34 0 0.14 sub:imp:3s; +convexe convexe adj s 0.08 0.88 0.07 0.54 +convexes convexe adj p 0.08 0.88 0.01 0.34 +convexité convexité nom f s 0 0.2 0 0.2 +convia convier ver 2.62 7.5 0.02 0.81 ind:pas:3s; +conviaient convier ver 2.62 7.5 0 0.27 ind:imp:3p; +conviais convier ver 2.62 7.5 0.14 0.07 ind:imp:1s; +conviait convier ver 2.62 7.5 0.14 0.61 ind:imp:3s; +conviant convier ver 2.62 7.5 0 0.41 par:pre; +convict convict nom m s 0.02 0.07 0.01 0 +conviction conviction nom f s 13.32 37.23 9.27 31.49 +convictions conviction nom f p 13.32 37.23 4.05 5.74 +convicts convict nom m p 0.02 0.07 0.01 0.07 +convie convier ver 2.62 7.5 0.37 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conviendra convenir ver 38.82 73.78 1.31 0.61 ind:fut:3s; +conviendrai convenir ver 38.82 73.78 0 0.07 ind:fut:1s; +conviendraient convenir ver 38.82 73.78 0.07 0.07 cnd:pre:3p; +conviendrais convenir ver 38.82 73.78 0.04 0 cnd:pre:1s;cnd:pre:2s; +conviendrait convenir ver 38.82 73.78 1.56 2.57 cnd:pre:3s; +conviendras convenir ver 38.82 73.78 0.17 0.14 ind:fut:2s; +conviendrez convenir ver 38.82 73.78 0.39 0.68 ind:fut:2p; +conviendrions convenir ver 38.82 73.78 0 0.07 cnd:pre:1p; +conviendrons convenir ver 38.82 73.78 0.01 0.07 ind:fut:1p; +conviendront convenir ver 38.82 73.78 0.01 0.07 ind:fut:3p; +convienne convenir ver 38.82 73.78 0.86 0.74 sub:pre:1s;sub:pre:3s; +conviennent convenir ver 38.82 73.78 1.51 2.03 ind:pre:3p; +conviens convenir ver 38.82 73.78 0.96 3.45 imp:pre:2s;ind:pre:1s;ind:pre:2s; +convient convenir ver 38.82 73.78 19.21 16.89 ind:pre:3s; +convier convier ver 2.62 7.5 0.44 0.41 inf; +conviera convier ver 2.62 7.5 0 0.07 ind:fut:3s; +convierai convier ver 2.62 7.5 0.01 0 ind:fut:1s; +convierait convier ver 2.62 7.5 0.01 0.07 cnd:pre:3s; +conviez convier ver 2.62 7.5 0.16 0 imp:pre:2p;ind:pre:2p; +convinrent convenir ver 38.82 73.78 0 1.08 ind:pas:3p; +convins convenir ver 38.82 73.78 0.01 0.27 ind:pas:1s; +convint convenir ver 38.82 73.78 0.12 2.77 ind:pas:3s; +convions convier ver 2.62 7.5 0.01 0 ind:pre:1p; +convive convive nom s 0.67 6.49 0.15 1.08 +convives convive nom p 0.67 6.49 0.53 5.41 +convivial convivial adj m s 0.67 0.27 0.49 0.14 +conviviale convivial adj f s 0.67 0.27 0.06 0.07 +conviviales convivial adj f p 0.67 0.27 0.02 0.07 +convivialisez convivialiser ver 0 0.07 0 0.07 ind:pre:2p; +convivialité convivialité nom f s 0.42 0.27 0.42 0.27 +conviviaux convivial adj m p 0.67 0.27 0.1 0 +convièrent convier ver 2.62 7.5 0 0.07 ind:pas:3p; +convié convier ver m s 2.62 7.5 0.6 1.42 par:pas; +conviée convier ver f s 2.62 7.5 0.13 0.27 par:pas; +conviées convier ver f p 2.62 7.5 0 0.14 par:pas; +conviés convier ver m p 2.62 7.5 0.15 1.35 par:pas; +convocable convocable adj s 0.01 0 0.01 0 +convocation convocation nom f s 1.78 3.65 1.56 3.18 +convocations convocation nom f p 1.78 3.65 0.22 0.47 +convoi convoi nom m s 9.39 18.78 7.86 11.35 +convoie convoyer ver 0.51 1.89 0.04 0 ind:pre:3s; +convois convoi nom m p 9.39 18.78 1.53 7.43 +convoita convoiter ver 2.31 5.27 0 0.07 ind:pas:3s; +convoitaient convoiter ver 2.31 5.27 0.02 0.47 ind:imp:3p; +convoitais convoiter ver 2.31 5.27 0.07 0.61 ind:imp:1s;ind:imp:2s; +convoitait convoiter ver 2.31 5.27 0.16 0.81 ind:imp:3s; +convoitant convoiter ver 2.31 5.27 0.02 0.14 par:pre; +convoite convoiter ver 2.31 5.27 0.69 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +convoitent convoiter ver 2.31 5.27 0.13 0.2 ind:pre:3p; +convoiter convoiter ver 2.31 5.27 0.2 0.34 inf; +convoiteras convoiter ver 2.31 5.27 0.04 0 ind:fut:2s; +convoiteront convoiter ver 2.31 5.27 0.1 0 ind:fut:3p; +convoiteur convoiteur adj m s 0 0.07 0 0.07 +convoiteux convoiteux adj m p 0 0.07 0 0.07 +convoitez convoiter ver 2.31 5.27 0.12 0.2 ind:pre:2p; +convoitise convoitise nom f s 1.05 5.2 0.8 4.05 +convoitises convoitise nom f p 1.05 5.2 0.25 1.15 +convoité convoiter ver m s 2.31 5.27 0.57 0.88 par:pas; +convoitée convoiter ver f s 2.31 5.27 0.13 0.54 par:pas; +convoitées convoiter ver f p 2.31 5.27 0.02 0.14 par:pas; +convoités convoiter ver m p 2.31 5.27 0.05 0.41 par:pas; +convola convoler ver 0.22 0.61 0 0.07 ind:pas:3s; +convolait convoler ver 0.22 0.61 0 0.07 ind:imp:3s; +convolant convoler ver 0.22 0.61 0 0.07 par:pre; +convolent convoler ver 0.22 0.61 0 0.07 ind:pre:3p; +convoler convoler ver 0.22 0.61 0.19 0.2 inf; +convolèrent convoler ver 0.22 0.61 0.01 0 ind:pas:3p; +convolé convoler ver m s 0.22 0.61 0.02 0.14 par:pas; +convoqua convoquer ver 10.89 19.32 0.14 2.91 ind:pas:3s; +convoquai convoquer ver 10.89 19.32 0.01 0.41 ind:pas:1s; +convoquaient convoquer ver 10.89 19.32 0 0.2 ind:imp:3p; +convoquait convoquer ver 10.89 19.32 0.01 1.62 ind:imp:3s; +convoquant convoquer ver 10.89 19.32 0.17 0.41 par:pre; +convoque convoquer ver 10.89 19.32 2.3 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +convoquent convoquer ver 10.89 19.32 0.06 0.14 ind:pre:3p; +convoquer convoquer ver 10.89 19.32 1.94 2.09 inf;; +convoquera convoquer ver 10.89 19.32 0.17 0.27 ind:fut:3s; +convoquerai convoquer ver 10.89 19.32 0.07 0 ind:fut:1s; +convoqueraient convoquer ver 10.89 19.32 0 0.07 cnd:pre:3p; +convoquerait convoquer ver 10.89 19.32 0.03 0.2 cnd:pre:3s; +convoquerez convoquer ver 10.89 19.32 0.02 0 ind:fut:2p; +convoqueront convoquer ver 10.89 19.32 0.01 0 ind:fut:3p; +convoquez convoquer ver 10.89 19.32 0.71 0.14 imp:pre:2p;ind:pre:2p; +convoquions convoquer ver 10.89 19.32 0 0.07 ind:imp:1p; +convoquons convoquer ver 10.89 19.32 0.07 0 imp:pre:1p;ind:pre:1p; +convoquât convoquer ver 10.89 19.32 0 0.14 sub:imp:3s; +convoquèrent convoquer ver 10.89 19.32 0.01 0 ind:pas:3p; +convoqué convoquer ver m s 10.89 19.32 3.26 5.81 par:pas; +convoquée convoquer ver f s 10.89 19.32 1.02 0.81 par:pas; +convoquées convoquer ver f p 10.89 19.32 0.2 0.2 par:pas; +convoqués convoquer ver m p 10.89 19.32 0.68 1.69 par:pas; +convoya convoyer ver 0.51 1.89 0 0.07 ind:pas:3s; +convoyage convoyage nom m s 0.1 0.2 0.08 0.14 +convoyages convoyage nom m p 0.1 0.2 0.02 0.07 +convoyaient convoyer ver 0.51 1.89 0 0.07 ind:imp:3p; +convoyait convoyer ver 0.51 1.89 0.01 0.2 ind:imp:3s; +convoyant convoyer ver 0.51 1.89 0.11 0.2 par:pre; +convoyer convoyer ver 0.51 1.89 0.32 0.81 inf; +convoyeur convoyeur nom m s 1.1 0.95 0.58 0.54 +convoyeurs convoyeur nom m p 1.1 0.95 0.51 0.27 +convoyeuse convoyeur nom f s 1.1 0.95 0.01 0.14 +convoyé convoyer ver m s 0.51 1.89 0.02 0.14 par:pas; +convoyée convoyer ver f s 0.51 1.89 0 0.07 par:pas; +convoyés convoyer ver m p 0.51 1.89 0.01 0.34 par:pas; +convulsa convulser ver 0.84 1.42 0 0.07 ind:pas:3s; +convulsai convulser ver 0.84 1.42 0 0.07 ind:pas:1s; +convulsais convulser ver 0.84 1.42 0 0.07 ind:imp:1s; +convulsait convulser ver 0.84 1.42 0.04 0.27 ind:imp:3s; +convulsant convulser ver 0.84 1.42 0 0.14 par:pre; +convulse convulser ver 0.84 1.42 0.42 0.14 ind:pre:3s; +convulser convulser ver 0.84 1.42 0.19 0.07 inf; +convulsif convulsif adj m s 0.39 3.04 0.13 1.35 +convulsifs convulsif adj m p 0.39 3.04 0.14 0.68 +convulsion convulsion nom f s 1.6 5.61 0.19 1.28 +convulsionnaire convulsionnaire nom s 0 0.14 0 0.14 +convulsionne convulsionner ver 0 0.2 0 0.14 ind:pre:1s;ind:pre:3s; +convulsionnée convulsionner ver f s 0 0.2 0 0.07 par:pas; +convulsions convulsion nom f p 1.6 5.61 1.42 4.32 +convulsive convulsif adj f s 0.39 3.04 0.13 0.41 +convulsivement convulsivement adv 0.01 1.35 0.01 1.35 +convulsives convulsif adj f p 0.39 3.04 0 0.61 +convulsé convulser ver m s 0.84 1.42 0.07 0.34 par:pas; +convulsée convulsé adj f s 0.11 0.74 0.1 0.27 +convulsées convulsé adj f p 0.11 0.74 0 0.07 +convulsés convulsé adj m p 0.11 0.74 0.01 0 +convînmes convenir ver 38.82 73.78 0 0.68 ind:pas:1p; +convînt convenir ver 38.82 73.78 0 0.34 sub:imp:3s; +conçois concevoir ver 18.75 27.84 1.31 1.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +conçoit concevoir ver 18.75 27.84 0.42 2.03 ind:pre:3s; +conçoivent concevoir ver 18.75 27.84 0.29 0.47 ind:pre:3p; +conçu concevoir ver m s 18.75 27.84 9.04 6.01 par:pas; +conçue concevoir ver f s 18.75 27.84 2.5 1.62 par:pas; +conçues concevoir ver f p 18.75 27.84 0.35 0.68 par:pas; +conçurent concevoir ver 18.75 27.84 0.01 0.27 ind:pas:3p; +conçus concevoir ver m p 18.75 27.84 0.86 1.42 ind:pas:1s;ind:pas:2s;par:pas; +conçut concevoir ver 18.75 27.84 0.22 1.62 ind:pas:3s; +cooccupant cooccupant adj m s 0 0.07 0 0.07 +cookie cookie nom m s 8.22 0.07 3.08 0.07 +cookies cookie nom m p 8.22 0.07 5.14 0 +cool cool adj 63.63 3.18 63.63 3.18 +coolie coolie nom m s 0.16 0.41 0.13 0.2 +coolie_pousse coolie_pousse nom m s 0.01 0 0.01 0 +coolies coolie nom m p 0.16 0.41 0.03 0.2 +coolos coolos adj 0.04 0.41 0.04 0.41 +cooptant coopter ver 0.16 0.07 0.01 0 par:pre; +cooptation cooptation nom f s 0.01 0.14 0.01 0.14 +coopter coopter ver 0.16 0.07 0.01 0.07 inf; +coopté coopter ver m s 0.16 0.07 0.14 0 par:pas; +coopère coopérer ver 11.91 1.08 1.6 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coopèrent coopérer ver 11.91 1.08 0.42 0.14 ind:pre:3p; +coopères coopérer ver 11.91 1.08 0.49 0.07 ind:pre:2s; +coopé coopé nom f s 0.02 0.27 0.02 0.27 +coopérais coopérer ver 11.91 1.08 0.04 0 ind:imp:1s;ind:imp:2s; +coopérait coopérer ver 11.91 1.08 0.2 0.07 ind:imp:3s; +coopérant coopérer ver 11.91 1.08 0.13 0 par:pre; +coopérante coopérant nom f s 0.1 0.14 0.03 0 +coopérants coopérant nom m p 0.1 0.14 0.05 0.07 +coopérateur coopérateur nom m s 0.03 0 0.03 0 +coopératif coopératif adj m s 2.65 0.47 1.53 0.27 +coopératifs coopératif adj m p 2.65 0.47 0.41 0 +coopération coopération nom f s 5.21 6.96 5.21 6.96 +coopératisme coopératisme nom m s 0.01 0 0.01 0 +coopérative coopérative nom f s 1.66 0.74 1.53 0.61 +coopératives coopératif adj f p 2.65 0.47 0.25 0.07 +coopérer coopérer ver 11.91 1.08 6.05 0.54 inf; +coopérera coopérer ver 11.91 1.08 0.14 0 ind:fut:3s; +coopérerai coopérer ver 11.91 1.08 0.1 0 ind:fut:1s; +coopéreraient coopérer ver 11.91 1.08 0.01 0.14 cnd:pre:3p; +coopérerais coopérer ver 11.91 1.08 0.02 0 cnd:pre:1s;cnd:pre:2s; +coopérerez coopérer ver 11.91 1.08 0.04 0 ind:fut:2p; +coopéreriez coopérer ver 11.91 1.08 0.02 0 cnd:pre:2p; +coopérerons coopérer ver 11.91 1.08 0.07 0 ind:fut:1p; +coopéreront coopérer ver 11.91 1.08 0.03 0 ind:fut:3p; +coopérez coopérer ver 11.91 1.08 1.26 0 imp:pre:2p;ind:pre:2p; +coopériez coopérer ver 11.91 1.08 0.19 0 ind:imp:2p; +coopérions coopérer ver 11.91 1.08 0.06 0 ind:imp:1p; +coopérons coopérer ver 11.91 1.08 0.07 0 ind:pre:1p; +coopéré coopérer ver m s 11.91 1.08 0.96 0.07 par:pas; +coordinateur coordinateur nom m s 0.83 0.07 0.54 0.07 +coordinateurs coordinateur nom m p 0.83 0.07 0.04 0 +coordination coordination nom f s 1.36 2.16 1.36 2.16 +coordinatrice coordinateur nom f s 0.83 0.07 0.26 0 +coordonna coordonner ver 2.15 2.09 0.01 0.07 ind:pas:3s; +coordonnaient coordonner ver 2.15 2.09 0.02 0.07 ind:imp:3p; +coordonnait coordonner ver 2.15 2.09 0.01 0 ind:imp:3s; +coordonnant coordonner ver 2.15 2.09 0.16 0 par:pre; +coordonnateur coordonnateur adj m s 0.03 0 0.03 0 +coordonne coordonner ver 2.15 2.09 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coordonner coordonner ver 2.15 2.09 0.96 1.22 inf; +coordonnera coordonner ver 2.15 2.09 0.07 0.07 ind:fut:3s; +coordonnerait coordonner ver 2.15 2.09 0.01 0.07 cnd:pre:3s; +coordonnez coordonner ver 2.15 2.09 0.19 0 imp:pre:2p;ind:pre:2p; +coordonnons coordonner ver 2.15 2.09 0 0.07 imp:pre:1p; +coordonné coordonner ver m s 2.15 2.09 0.16 0.14 par:pas; +coordonnée coordonnée nom f s 8.3 1.55 0.24 0 +coordonnées coordonnée nom f p 8.3 1.55 8.05 1.55 +coordonnés coordonné nom m p 0.16 0.07 0.16 0.07 +cop cop nom f s 0.63 0.27 0.63 0.27 +copain copain nom m s 158.62 103.38 61.14 34.05 +copains copain nom m p 158.62 103.38 30.47 49.93 +copal copal nom m s 0.01 0 0.01 0 +copaïba copaïba nom m s 0 0.07 0 0.07 +copeau copeau nom m s 0.67 5.41 0.1 0.34 +copeaux copeau nom m p 0.67 5.41 0.57 5.07 +copernicienne copernicien adj f s 0 0.14 0 0.14 +copia copier ver 8.07 8.45 0.01 0.07 ind:pas:3s; +copiable copiable adj m s 0.01 0 0.01 0 +copiage copiage nom m s 0.01 0 0.01 0 +copiai copier ver 8.07 8.45 0 0.07 ind:pas:1s; +copiaient copier ver 8.07 8.45 0.01 0.27 ind:imp:3p; +copiais copier ver 8.07 8.45 0.3 0.07 ind:imp:1s;ind:imp:2s; +copiait copier ver 8.07 8.45 0.01 0.47 ind:imp:3s; +copiant copier ver 8.07 8.45 0.03 0.41 par:pre; +copie copie nom f s 25.7 14.26 16.88 8.45 +copient copier ver 8.07 8.45 0.2 0.07 ind:pre:3p; +copier copier ver 8.07 8.45 2.96 2.7 inf; +copiera copier ver 8.07 8.45 0.04 0 ind:fut:3s; +copierai copier ver 8.07 8.45 0.01 0 ind:fut:1s; +copierait copier ver 8.07 8.45 0.03 0.07 cnd:pre:3s; +copieras copier ver 8.07 8.45 0.14 0.34 ind:fut:2s; +copierez copier ver 8.07 8.45 0 0.14 ind:fut:2p; +copieront copier ver 8.07 8.45 0.02 0.07 ind:fut:3p; +copies copie nom f p 25.7 14.26 8.82 5.81 +copieur copieur nom m s 0.3 0.2 0.19 0.07 +copieurs copieur nom m p 0.3 0.2 0.04 0.14 +copieuse copieur adj f s 0.11 1.22 0.11 0.88 +copieusement copieusement adv 0.13 2.57 0.13 2.57 +copieuses copieur nom f p 0.3 0.2 0.01 0 +copieux copieux adj m s 0.48 1.82 0.48 1.82 +copiez copier ver 8.07 8.45 0.34 0 imp:pre:2p;ind:pre:2p; +copilote copilote nom m s 1.5 0 1.5 0 +copinage copinage nom m s 0.08 0.27 0.08 0.27 +copinait copiner ver 0.13 0.27 0.01 0.14 ind:imp:3s; +copine copain nom f s 158.62 103.38 56.28 12.57 +copiner copiner ver 0.13 0.27 0.09 0.07 inf; +copines copain nom f p 158.62 103.38 10.74 6.82 +copineur copineur adj m s 0 0.2 0 0.07 +copineurs copineur adj m p 0 0.2 0 0.07 +copineuse copineur adj f s 0 0.2 0 0.07 +copiniez copiner ver 0.13 0.27 0.01 0 ind:imp:2p; +copiné copiner ver m s 0.13 0.27 0.02 0.07 par:pas; +copiste copiste nom s 0.4 0.81 0.22 0.74 +copistes copiste nom p 0.4 0.81 0.17 0.07 +copié copier ver m s 8.07 8.45 2.17 1.15 par:pas; +copiée copier ver f s 8.07 8.45 0.29 0.54 par:pas; +copiées copier ver f p 8.07 8.45 0.28 0.2 par:pas; +copiés copier ver m p 8.07 8.45 0.2 0.34 par:pas; +copla copla nom f s 0 0.07 0 0.07 +coppa coppa nom f s 0.01 0 0.01 0 +copra copra nom m s 0.04 0.07 0.04 0.07 +coprins coprin nom m p 0 0.07 0 0.07 +coproculture coproculture nom f s 0.01 0 0.01 0 +coproducteur coproducteur nom m s 0.11 0.07 0.09 0 +coproducteurs coproducteur nom m p 0.11 0.07 0.02 0.07 +coproduction coproduction nom f s 0.16 0.27 0.16 0.27 +coproduire coproduire ver 0.04 0.07 0.01 0.07 inf; +coproduit coproduire ver m s 0.04 0.07 0.03 0 ind:pre:3s;par:pas; +coprologie coprologie nom f s 0 0.07 0 0.07 +coprologique coprologique adj f s 0 0.14 0 0.14 +coprophage coprophage nom s 0 0.2 0 0.2 +coprophagie coprophagie nom f s 0.2 0 0.2 0 +coprophile coprophile nom s 0 0.07 0 0.07 +coprophilie coprophilie nom f s 0.02 0 0.02 0 +copropriétaire copropriétaire nom s 0.29 0.27 0.11 0.07 +copropriétaires copropriétaire nom p 0.29 0.27 0.18 0.2 +copropriété copropriété nom f s 0.56 0.41 0.56 0.41 +coprésidence coprésidence nom f s 0.01 0 0.01 0 +coprésident coprésider ver 0.01 0 0.01 0 ind:pre:3p; +cops cops nom m 0.41 0.07 0.41 0.07 +copte copte nom m s 0.02 0.34 0.02 0.14 +coptes copte nom m p 0.02 0.34 0 0.2 +copula copuler ver 1.19 0.54 0.01 0.07 ind:pas:3s; +copulait copuler ver 1.19 0.54 0.01 0.07 ind:imp:3s; +copulant copuler ver 1.19 0.54 0.02 0.07 par:pre; +copulation copulation nom f s 0.19 0.47 0.17 0.41 +copulations copulation nom f p 0.19 0.47 0.02 0.07 +copule copule nom f s 0.14 0 0.14 0 +copulent copuler ver 1.19 0.54 0.25 0 ind:pre:3p; +copuler copuler ver 1.19 0.54 0.66 0.34 inf; +copulez copuler ver 1.19 0.54 0.1 0 ind:pre:2p; +copulé copuler ver m s 1.19 0.54 0.15 0 par:pas; +copyright copyright nom m s 0.41 0.14 0.41 0.14 +coq coq nom m s 12.47 19.12 10.74 15.68 +coq_à_l_âne coq_à_l_âne nom m 0 0.14 0 0.14 +coqs coq nom m p 12.47 19.12 1.73 3.45 +coquard coquard nom m s 0.34 0.41 0.3 0.34 +coquards coquard nom m p 0.34 0.41 0.03 0.07 +coquart coquart nom m s 0.11 0.14 0.11 0.07 +coquarts coquart nom m p 0.11 0.14 0 0.07 +coque coque nom f s 5 12.64 4.6 9.93 +coquebin coquebin adj m s 0 0.34 0 0.34 +coquelet coquelet nom m s 0.1 0.07 0.1 0.07 +coquelicot coquelicot nom m s 1.05 3.24 0.71 0.95 +coquelicots coquelicot nom m p 1.05 3.24 0.34 2.3 +coquelle coquelle nom f s 0 0.07 0 0.07 +coqueluche coqueluche nom f s 1.01 2.43 0.97 2.43 +coqueluches coqueluche nom f p 1.01 2.43 0.04 0 +coquemar coquemar nom m s 0 0.07 0 0.07 +coquerelle coquerelle nom f s 0.03 0.07 0.03 0.07 +coquerie coquerie nom f s 0.05 0 0.05 0 +coqueron coqueron nom m s 0.02 0 0.02 0 +coques coque nom f p 5 12.64 0.4 2.7 +coquet coquet adj m s 1.57 6.55 0.77 2.7 +coquetel coquetel nom m s 0 0.07 0 0.07 +coqueter coqueter ver 0.01 0 0.01 0 inf; +coquetier coquetier nom m s 0.29 0.61 0.14 0.47 +coquetiers coquetier nom m p 0.29 0.61 0.15 0.14 +coquets coquet adj m p 1.57 6.55 0.02 0.41 +coquette coquet adj f s 1.57 6.55 0.77 2.84 +coquettement coquettement adv 0 0.41 0 0.41 +coquetterie coquetterie nom f s 0.63 7.03 0.61 6.22 +coquetteries coquetterie nom f p 0.63 7.03 0.01 0.81 +coquettes coquette nom f p 0.71 2.23 0.13 0.27 +coquillage coquillage nom m s 2.66 10.47 0.77 3.51 +coquillages coquillage nom m p 2.66 10.47 1.89 6.96 +coquillard coquillard nom m s 0.02 0.74 0.02 0.68 +coquillards coquillard nom m p 0.02 0.74 0 0.07 +coquillart coquillart nom m s 0 0.07 0 0.07 +coquille coquille nom f s 4.92 13.45 3.19 9.46 +coquilles coquille nom f p 4.92 13.45 1.73 3.99 +coquillettes coquillette nom f p 0.01 0.61 0.01 0.61 +coquilleux coquilleux adj m s 0 0.07 0 0.07 +coquin coquin nom m s 7.55 4.26 4.96 2.43 +coquine coquin nom f s 7.55 4.26 1.53 0.27 +coquinement coquinement adv 0 0.07 0 0.07 +coquinerie coquinerie nom f s 0.03 0.2 0.03 0.14 +coquineries coquinerie nom f p 0.03 0.2 0 0.07 +coquines coquin adj f p 3.92 3.24 0.17 0.47 +coquinet coquinet adj m s 0.01 0.07 0.01 0.07 +coquins coquin nom m p 7.55 4.26 0.98 1.49 +cor cor nom m s 3.35 3.92 2.57 2.36 +cora cora nom f s 0 0.34 0 0.27 +corail corail nom m s 1.43 3.51 1.04 2.97 +coralliaires coralliaire nom p 0 0.07 0 0.07 +corallien corallien adj m s 0.03 0 0.01 0 +coralliens corallien adj m p 0.03 0 0.02 0 +coramine coramine nom f s 0.1 0.07 0.1 0.07 +coran coran nom m s 1.96 2.43 1.96 2.43 +coranique coranique adj f s 0.16 0.34 0.16 0.2 +coraniques coranique adj m p 0.16 0.34 0 0.14 +coras cora nom f p 0 0.34 0 0.07 +coraux corail nom m p 1.43 3.51 0.39 0.54 +corbeau corbeau nom m s 5.72 8.85 3.57 3.92 +corbeaux corbeau nom m p 5.72 8.85 2.15 4.93 +corbeille corbeille nom f s 2.71 19.12 2.3 15.68 +corbeilles corbeille nom f p 2.71 19.12 0.41 3.45 +corbillard corbillard nom m s 1.63 4.19 1.58 3.72 +corbillards corbillard nom m p 1.63 4.19 0.04 0.47 +corbin corbin nom m s 0.14 0.47 0.14 0.47 +corbières corbières nom m 0 0.14 0 0.14 +cordage cordage nom m s 0.27 3.85 0.17 0.61 +cordages cordage nom m p 0.27 3.85 0.11 3.24 +corde corde nom f s 38.57 48.38 28.89 31.76 +cordeau cordeau nom m s 0.2 1.76 0.16 1.62 +cordeaux cordeau nom m p 0.2 1.76 0.01 0.14 +cordelette cordelette nom f s 0.11 3.72 0.1 2.91 +cordelettes cordelette nom f p 0.11 3.72 0.01 0.81 +cordelier cordelier nom m s 0.01 2.77 0 0.2 +cordeliers cordelier nom m p 0.01 2.77 0.01 1.22 +cordelière cordelier nom f s 0.01 2.77 0 1.01 +cordelières cordelier nom f p 0.01 2.77 0 0.34 +cordelle cordeau nom f s 0.2 1.76 0.04 0 +corder corder ver 0.31 0.47 0.16 0 inf; +corderie corderie nom f s 0 0.14 0 0.14 +cordes corde nom f p 38.57 48.38 9.68 16.62 +cordial cordial nom m s 0.44 1.96 0.44 1.96 +cordiale cordial adj f s 0.53 4.8 0.3 2.43 +cordialement cordialement adv 0.72 1.82 0.72 1.82 +cordiales cordial adj f p 0.53 4.8 0.05 0.74 +cordialité cordialité nom f s 0.09 3.65 0.08 3.65 +cordialités cordialité nom f p 0.09 3.65 0.01 0 +cordiaux cordial adj m p 0.53 4.8 0.11 0.41 +cordiers cordier nom m p 0 0.74 0 0.74 +cordiforme cordiforme adj f s 0 0.27 0 0.2 +cordiformes cordiforme adj f p 0 0.27 0 0.07 +cordillère cordillère nom f s 0.28 0.14 0.28 0.14 +cordite cordite nom f s 0.13 0.07 0.13 0.07 +cordobas cordoba nom m p 0.01 0 0.01 0 +cordon cordon nom m s 5.21 12.23 4.42 9.19 +cordon_bleu cordon_bleu nom m s 0.27 0.14 0.26 0.07 +cordonner cordonner ver 0.04 0 0.01 0 inf; +cordonnerie cordonnerie nom f s 0.16 0.2 0.16 0.2 +cordonnet cordonnet nom m s 0.16 0.81 0.14 0.61 +cordonnets cordonnet nom m p 0.16 0.81 0.02 0.2 +cordonnier cordonnier nom m s 1.86 3.92 1.72 2.91 +cordonniers cordonnier nom m p 1.86 3.92 0.14 0.95 +cordonnière cordonnier nom f s 1.86 3.92 0 0.07 +cordonnées cordonner ver f p 0.04 0 0.02 0 par:pas; +cordons cordon nom m p 5.21 12.23 0.79 3.04 +cordon_bleu cordon_bleu nom m p 0.27 0.14 0.01 0.07 +cordouan cordouan adj m s 0 0.07 0 0.07 +cordé corder ver m s 0.31 0.47 0 0.07 par:pas; +cordée cordée nom f s 0.02 0.61 0.02 0.47 +cordées cordée nom f p 0.02 0.61 0 0.14 +cordés cordé adj m p 0.01 0.07 0.01 0 +coreligionnaires coreligionnaire nom p 0 0.95 0 0.95 +corelliens corellien adj m p 0.01 0 0.01 0 +coriace coriace adj s 4.7 2.57 3.68 1.69 +coriaces coriace adj p 4.7 2.57 1.02 0.88 +coriacité coriacité nom f s 0 0.07 0 0.07 +coriandre coriandre nom f s 0.24 0.27 0.24 0.27 +corindon corindon nom m s 0 0.14 0 0.14 +corinthe corinthe nom s 0 0.07 0 0.07 +corinthien corinthien adj m s 0.27 0.54 0.11 0.41 +corinthiennes corinthien adj f p 0.27 0.54 0.01 0.14 +corinthiens corinthien nom m p 0.45 0.07 0.44 0.07 +cormier cormier nom m s 0.08 0 0.08 0 +cormoran cormoran nom m s 0.26 1.22 0.12 0.54 +cormorans cormoran nom m p 0.26 1.22 0.14 0.68 +corn_flakes corn_flakes nom f p 0.14 0.07 0.14 0.07 +corn_flakes corn_flakes nom m p 0.22 0 0.22 0 +corna corner ver 0.26 3.38 0 0.27 ind:pas:3s; +cornac cornac nom m s 0.03 0.41 0.03 0.41 +cornaient corner ver 0.26 3.38 0 0.07 ind:imp:3p; +cornais corner ver 0.26 3.38 0 0.07 ind:imp:1s; +cornait corner ver 0.26 3.38 0 0.2 ind:imp:3s; +cornaline cornaline nom f s 0 0.14 0 0.07 +cornalines cornaline nom f p 0 0.14 0 0.07 +cornant corner ver 0.26 3.38 0 0.2 par:pre; +cornaquaient cornaquer ver 0 0.14 0 0.07 ind:imp:3p; +cornaquée cornaquer ver f s 0 0.14 0 0.07 par:pas; +cornard cornard nom m s 0.71 0.47 0.71 0.41 +cornards cornard nom m p 0.71 0.47 0 0.07 +cornas corner ver 0.26 3.38 0 0.07 ind:pas:2s; +corne corne nom f s 7.79 19.46 2.63 9.8 +cornecul cornecul nom s 0 0.2 0 0.2 +corneille corneille nom f s 0.86 2.36 0.19 0.47 +corneilles corneille nom f p 0.86 2.36 0.67 1.89 +cornemuse cornemuse nom f s 1.38 0.61 0.98 0.34 +cornemuses cornemuse nom f p 1.38 0.61 0.4 0.27 +cornemuseur cornemuseur nom m s 0.01 0 0.01 0 +cornent corner ver 0.26 3.38 0.02 0.07 ind:pre:3p; +corner corner ver 0.26 3.38 0.17 1.49 inf; +corners corner nom m p 0.3 0.14 0.14 0.07 +cornes corne nom f p 7.79 19.46 5.16 9.66 +cornet cornet nom m s 1.85 8.04 1.46 6.15 +cornets cornet nom m p 1.85 8.04 0.39 1.89 +cornette cornette nom s 0.18 2.7 0.03 1.69 +cornettes cornette nom p 0.18 2.7 0.16 1.01 +corniaud corniaud nom m s 0.95 5.34 0.68 4.12 +corniauds corniaud nom m p 0.95 5.34 0.27 1.22 +corniche corniche nom f s 0.81 7.03 0.76 5.74 +corniches corniche nom f p 0.81 7.03 0.05 1.28 +cornichon cornichon nom m s 4.17 2.3 1.29 0.68 +cornichons cornichon nom m p 4.17 2.3 2.88 1.62 +cornillon cornillon nom m s 0.02 0.2 0.02 0.2 +cornistes corniste nom p 0 0.2 0 0.2 +cornières cornière nom f p 0 0.34 0 0.34 +cornouaillais cornouaillais nom m 0.06 0 0.06 0 +cornouille cornouille nom f s 0 0.14 0 0.07 +cornouiller cornouiller nom m s 0.08 0.34 0.08 0.14 +cornouillers cornouiller nom m p 0.08 0.34 0 0.2 +cornouilles cornouille nom f p 0 0.14 0 0.07 +cornu cornu adj m s 0.42 1.62 0.17 0.61 +cornue cornu adj f s 0.42 1.62 0.1 0.34 +cornues cornue nom f p 0.01 1.08 0 0.61 +cornus cornu adj m p 0.42 1.62 0.15 0.54 +cornèrent corner ver 0.26 3.38 0 0.07 ind:pas:3p; +corné corner ver m s 0.26 3.38 0.02 0.41 par:pas; +cornée cornée nom f s 0.85 1.22 0.78 1.08 +cornéen cornéen adj m s 0.05 0 0.03 0 +cornéenne cornéen adj f s 0.05 0 0.02 0 +cornées corné adj f p 0.12 1.42 0.11 0.41 +cornélien cornélien adj m s 0.02 0.54 0.02 0.27 +cornélienne cornélien adj f s 0.02 0.54 0 0.2 +cornéliennes cornélien adj f p 0.02 0.54 0 0.07 +cornés corner ver m p 0.26 3.38 0.01 0.07 par:pas; +corollaire corollaire nom m s 0.05 0.74 0.04 0.68 +corollaires corollaire nom m p 0.05 0.74 0.01 0.07 +corolle corolle nom f s 0.4 3.65 0.26 2.03 +corolles corolle nom f p 0.4 3.65 0.14 1.62 +coron coron nom m s 0.01 1.76 0.01 0.54 +corona corona nom f s 0.5 0.27 0.5 0.27 +coronaire coronaire adj s 0.44 0.14 0.19 0 +coronaires coronaire adj f p 0.44 0.14 0.25 0.14 +coronal coronal adj m s 0.07 0 0.03 0 +coronale coronal adj f s 0.07 0 0.04 0 +coronales coronal adj f p 0.07 0 0.01 0 +coronarien coronarien adj m s 0.17 0 0.08 0 +coronarienne coronarien adj f s 0.17 0 0.09 0 +coroner coroner nom m s 2.02 0 1.98 0 +coroners coroner nom m p 2.02 0 0.04 0 +coronilles coronille nom f p 0 0.2 0 0.2 +corons coron nom m p 0.01 1.76 0 1.22 +corozo corozo nom m s 0 0.2 0 0.2 +corporal corporal nom m s 0.11 0.07 0.11 0.07 +corporalisés corporaliser ver m p 0 0.07 0 0.07 par:pas; +corporalité corporalité nom f s 0.01 0.07 0.01 0.07 +corporatif corporatif adj m s 0.18 0.2 0.01 0 +corporatifs corporatif adj m p 0.18 0.2 0.13 0 +corporation corporation nom f s 0.77 2.77 0.53 2.23 +corporations corporation nom f p 0.77 2.77 0.24 0.54 +corporatisme corporatisme nom m s 0.02 0.07 0.02 0.07 +corporatiste corporatiste adj s 0.04 0.07 0.04 0.07 +corporative corporatif adj f s 0.18 0.2 0.01 0.14 +corporatives corporatif adj f p 0.18 0.2 0.03 0.07 +corporel corporel adj m s 3.64 2.7 1.1 0.34 +corporelle corporel adj f s 3.64 2.7 1.47 1.01 +corporelles corporel adj f p 3.64 2.7 0.26 0.61 +corporels corporel adj m p 3.64 2.7 0.81 0.74 +corps corps nom m 250.15 480.34 250.15 480.34 +corps_mort corps_mort nom m s 0 0.07 0 0.07 +corpsard corpsard nom m s 0 0.07 0 0.07 +corpulence corpulence nom f s 0.54 1.76 0.54 1.76 +corpulent corpulent adj m s 0.81 1.76 0.66 1.08 +corpulente corpulent adj f s 0.81 1.76 0 0.47 +corpulentes corpulent adj f p 0.81 1.76 0 0.07 +corpulents corpulent adj m p 0.81 1.76 0.16 0.14 +corpus corpus nom m 0.38 0.88 0.38 0.88 +corpus_delicti corpus_delicti nom m s 0.03 0 0.03 0 +corpuscule corpuscule nom f s 0.25 0.47 0.06 0.14 +corpuscules corpuscule nom f p 0.25 0.47 0.18 0.34 +corral corral nom m s 0.9 1.08 0.87 0.95 +corrals corral nom m p 0.9 1.08 0.03 0.14 +correct correct adj m s 19.24 8.18 14.32 5 +correcte correct adj f s 19.24 8.18 2.94 1.76 +correctement correctement adv 11.08 5.41 11.08 5.41 +correctes correct adj f p 19.24 8.18 0.58 0.41 +correcteur correcteur nom m s 0.28 0.74 0.22 0.34 +correcteurs correcteur nom m p 0.28 0.74 0.06 0.41 +correctif correctif adj m s 0.16 0.41 0.13 0.27 +correction correction nom f s 8.89 6.08 4.17 4.53 +correctionnaliser correctionnaliser ver 0 0.07 0 0.07 inf; +correctionnel correctionnel adj m s 0.43 0.54 0.35 0 +correctionnelle correctionnel nom f s 0.47 1.82 0.47 1.69 +correctionnelles correctionnel adj f p 0.43 0.54 0.01 0.14 +correctionnels correctionnel adj m p 0.43 0.54 0.01 0 +corrections correction nom f p 8.89 6.08 4.72 1.55 +corrective correctif adj f s 0.16 0.41 0.03 0.14 +corrector corrector nom m s 0 0.14 0 0.14 +correctrice correcteur adj f s 0.07 0.47 0.01 0 +correctrices correcteur adj f p 0.07 0.47 0.01 0.07 +corrects correct adj m p 19.24 8.18 1.39 1.01 +corregidor corregidor nom m s 0.15 0.14 0.15 0.14 +correspond correspondre ver 23.62 19.46 13.76 3.78 ind:pre:3s; +correspondaient correspondre ver 23.62 19.46 0.21 1.69 ind:imp:3p; +correspondais correspondre ver 23.62 19.46 0.18 0.2 ind:imp:1s;ind:imp:2s; +correspondait correspondre ver 23.62 19.46 1.14 6.08 ind:imp:3s; +correspondance correspondance nom f s 5.71 13.51 5.33 11.89 +correspondances correspondance nom f p 5.71 13.51 0.38 1.62 +correspondancier correspondancier nom m s 0.01 0 0.01 0 +correspondant correspondant nom m s 2.59 5.88 1.87 3.24 +correspondante correspondant adj f s 1.1 3.24 0.24 0.47 +correspondantes correspondant adj f p 1.1 3.24 0.07 0.27 +correspondants correspondant nom m p 2.59 5.88 0.54 2.16 +corresponde correspondre ver 23.62 19.46 0.44 0.2 sub:pre:3s; +correspondent correspondre ver 23.62 19.46 4.06 1.55 ind:pre:3p;sub:pre:3p; +correspondez correspondre ver 23.62 19.46 0.2 0.07 ind:pre:2p; +correspondiez correspondre ver 23.62 19.46 0.02 0 ind:imp:2p; +correspondions correspondre ver 23.62 19.46 0.02 0.07 ind:imp:1p; +correspondra correspondre ver 23.62 19.46 0.12 0.07 ind:fut:3s; +correspondrai correspondre ver 23.62 19.46 0 0.07 ind:fut:1s; +correspondraient correspondre ver 23.62 19.46 0.05 0.07 cnd:pre:3p; +correspondrait correspondre ver 23.62 19.46 0.27 0.27 cnd:pre:3s; +correspondre correspondre ver 23.62 19.46 1.67 1.76 inf; +correspondrons correspondre ver 23.62 19.46 0.02 0 ind:fut:1p; +corresponds correspondre ver 23.62 19.46 0.29 0.14 ind:pre:1s;ind:pre:2s; +correspondu correspondre ver m s 23.62 19.46 0.18 0.47 par:pas; +correspondît correspondre ver 23.62 19.46 0 0.27 sub:imp:3s; +corrida corrida nom f s 1.88 4.53 1.73 3.65 +corridas corrida nom f p 1.88 4.53 0.14 0.88 +corridor corridor nom m s 1.84 12.5 1.51 9.86 +corridors corridor nom m p 1.84 12.5 0.34 2.64 +corrige corriger ver 12.24 16.08 2.21 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +corrigea corriger ver 12.24 16.08 0.01 1.55 ind:pas:3s; +corrigeai corriger ver 12.24 16.08 0 0.2 ind:pas:1s; +corrigeaient corriger ver 12.24 16.08 0 0.14 ind:imp:3p; +corrigeais corriger ver 12.24 16.08 0.13 0.2 ind:imp:1s;ind:imp:2s; +corrigeait corriger ver 12.24 16.08 0.04 1.28 ind:imp:3s; +corrigeant corriger ver 12.24 16.08 0.02 1.01 par:pre; +corrigent corriger ver 12.24 16.08 0.06 0.34 ind:pre:3p; +corrigeons corriger ver 12.24 16.08 0.08 0.07 imp:pre:1p;ind:pre:1p; +corriger corriger ver 12.24 16.08 5.87 6.82 inf; +corrigera corriger ver 12.24 16.08 0.25 0.2 ind:fut:3s; +corrigerai corriger ver 12.24 16.08 0.22 0.07 ind:fut:1s; +corrigerais corriger ver 12.24 16.08 0.02 0.07 cnd:pre:1s; +corrigerait corriger ver 12.24 16.08 0.03 0.27 cnd:pre:3s; +corrigeras corriger ver 12.24 16.08 0.02 0 ind:fut:2s; +corrigerez corriger ver 12.24 16.08 0.11 0 ind:fut:2p; +corrigerons corriger ver 12.24 16.08 0.02 0 ind:fut:1p; +corriges corriger ver 12.24 16.08 0.15 0 ind:pre:2s; +corrigez corriger ver 12.24 16.08 0.9 0 imp:pre:2p;ind:pre:2p; +corrigiez corriger ver 12.24 16.08 0.05 0 ind:imp:2p; +corrigions corriger ver 12.24 16.08 0 0.07 ind:imp:1p; +corrigé corriger ver m s 12.24 16.08 1.81 1.01 par:pas; +corrigée corriger ver f s 12.24 16.08 0.14 0.54 par:pas; +corrigées corrigé adj f p 0.38 1.08 0.17 0.07 +corrigés corrigé adj m p 0.38 1.08 0.14 0.14 +corrobora corroborer ver 1.35 1.15 0 0.07 ind:pas:3s; +corroboraient corroborer ver 1.35 1.15 0.02 0.07 ind:imp:3p; +corroborait corroborer ver 1.35 1.15 0.02 0.27 ind:imp:3s; +corroborant corroborer ver 1.35 1.15 0.01 0 par:pre; +corroboration corroboration nom f s 0.03 0 0.03 0 +corrobore corroborer ver 1.35 1.15 0.15 0.2 ind:pre:3s; +corroborent corroborer ver 1.35 1.15 0.2 0.07 ind:pre:3p; +corroborer corroborer ver 1.35 1.15 0.69 0.41 inf; +corroborera corroborer ver 1.35 1.15 0.08 0 ind:fut:3s; +corroborèrent corroborer ver 1.35 1.15 0 0.07 ind:pas:3p; +corroboré corroborer ver m s 1.35 1.15 0.16 0 par:pas; +corroborées corroborer ver f p 1.35 1.15 0.02 0 par:pas; +corrodait corroder ver 0.23 1.22 0 0.41 ind:imp:3s; +corrodant corrodant adj m s 0 0.14 0 0.07 +corrodante corrodant adj f s 0 0.14 0 0.07 +corrode corroder ver 0.23 1.22 0.01 0.07 ind:pre:3s; +corrodent corroder ver 0.23 1.22 0 0.07 ind:pre:3p; +corroder corroder ver 0.23 1.22 0 0.07 inf; +corrodé corroder ver m s 0.23 1.22 0.04 0.27 par:pas; +corrodée corroder ver f s 0.23 1.22 0.01 0.2 par:pas; +corrodées corroder ver f p 0.23 1.22 0.13 0 par:pas; +corrodés corroder ver m p 0.23 1.22 0.03 0.14 par:pas; +corroierie corroierie nom f s 0 0.07 0 0.07 +corrompais corrompre ver 5.32 3.65 0.02 0 ind:imp:1s; +corrompant corrompre ver 5.32 3.65 0.05 0.07 par:pre; +corrompe corrompre ver 5.32 3.65 0.09 0.07 sub:pre:1s;sub:pre:3s; +corrompent corrompre ver 5.32 3.65 0.05 0.41 ind:pre:3p; +corrompez corrompre ver 5.32 3.65 0.23 0 imp:pre:2p;ind:pre:2p; +corrompis corrompre ver 5.32 3.65 0 0.07 ind:pas:1s; +corrompra corrompre ver 5.32 3.65 0.02 0.07 ind:fut:3s; +corrompraient corrompre ver 5.32 3.65 0.01 0 cnd:pre:3p; +corrompre corrompre ver 5.32 3.65 1.61 1.49 inf; +corromps corrompre ver 5.32 3.65 0.11 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +corrompt corrompre ver 5.32 3.65 0.53 0.34 ind:pre:3s; +corrompu corrompre ver m s 5.32 3.65 1.56 0.68 par:pas; +corrompue corrompre adj f s 0.42 0.47 0.34 0.41 +corrompues corrompre adj f p 0.42 0.47 0.08 0.07 +corrompus corrompu adj m p 2.36 0.95 0.83 0.34 +corrosif corrosif adj m s 0.33 1.35 0.17 0.61 +corrosifs corrosif adj m p 0.33 1.35 0.1 0 +corrosion corrosion nom f s 0.18 0.2 0.18 0.2 +corrosive corrosif adj f s 0.33 1.35 0.04 0.61 +corrosives corrosif adj f p 0.33 1.35 0.01 0.14 +corrupteur corrupteur nom m s 0.3 0.41 0.16 0.34 +corrupteurs corrupteur nom m p 0.3 0.41 0.14 0.07 +corruptible corruptible adj s 0.13 0.07 0.09 0 +corruptibles corruptible adj p 0.13 0.07 0.04 0.07 +corruption corruption nom f s 6.59 3.58 6.54 3.45 +corruptions corruption nom f p 6.59 3.58 0.04 0.14 +corruptrice corrupteur adj f s 0.13 0.27 0.02 0 +corruptrices corrupteur adj f p 0.13 0.27 0 0.14 +corrélatif corrélatif adj m s 0.05 0 0.01 0 +corrélation corrélation nom f s 0.17 0.2 0.17 0.2 +corrélative corrélatif adj f s 0.05 0 0.04 0 +corrélativement corrélativement adv 0 0.34 0 0.34 +corréler corréler ver 0.01 0 0.01 0 inf; +corréziennes corrézien adj f p 0 0.07 0 0.07 +cors cor nom m p 3.35 3.92 0.78 1.55 +corsa corser ver 1.81 1.69 0.14 0.07 ind:pas:3s; +corsage corsage nom m s 1.44 15.14 1.28 12.23 +corsages corsage nom m p 1.44 15.14 0.16 2.91 +corsaire corsaire nom s 0.78 3.58 0.58 1.96 +corsaires corsaire nom p 0.78 3.58 0.2 1.62 +corsait corser ver 1.81 1.69 0.02 0.27 ind:imp:3s; +corsant corser ver 1.81 1.69 0 0.07 par:pre; +corse corse adj s 3.37 3.51 2.17 2.64 +corselet corselet nom m s 0 0.88 0 0.54 +corselets corselet nom m p 0 0.88 0 0.34 +corsent corser ver 1.81 1.69 0.18 0 ind:pre:3p; +corser corser ver 1.81 1.69 0.29 0.74 inf; +corserait corser ver 1.81 1.69 0 0.07 cnd:pre:3s; +corses corse adj p 3.37 3.51 1.21 0.88 +corset corset nom m s 2.04 2.91 1.51 2.3 +corseter corseter ver 0.03 1.42 0.01 0 inf; +corsetière corsetier nom f s 0 0.07 0 0.07 +corsets corset nom m p 2.04 2.91 0.53 0.61 +corseté corseter ver m s 0.03 1.42 0.01 0.34 par:pas; +corsetée corseter ver f s 0.03 1.42 0 0.74 par:pas; +corsetées corseter ver f p 0.03 1.42 0 0.2 par:pas; +corsetés corseter ver m p 0.03 1.42 0 0.14 par:pas; +corso corso nom m s 0.48 1.08 0.48 1.01 +corsos corso nom m p 0.48 1.08 0 0.07 +corsé corser ver m s 1.81 1.69 0.33 0.14 par:pas; +corsée corser ver f s 1.81 1.69 0.14 0.2 par:pas; +corsées corsé adj f p 0.49 1.28 0 0.07 +corsés corsé adj m p 0.49 1.28 0.23 0.07 +cortes corte nom f p 0.01 0 0.01 0 +cortex cortex nom m 8.68 0.14 8.68 0.14 +cortical cortical adj m s 0.45 0.07 0.08 0.07 +corticale cortical adj f s 0.45 0.07 0.16 0 +corticales cortical adj f p 0.45 0.07 0.2 0 +corticaux cortical adj m p 0.45 0.07 0.01 0 +cortine cortine nom f s 0.03 0 0.03 0 +cortisol cortisol nom m s 0.03 0 0.03 0 +cortisone cortisone nom f s 1.28 0.14 1.28 0.14 +corton corton nom m s 0.03 0.27 0.03 0.27 +cortège cortège nom m s 2.91 20.34 2.77 18.11 +cortèges cortège nom m p 2.91 20.34 0.13 2.23 +cortès cortès nom f p 0.02 0.07 0.02 0.07 +cortégeant cortéger ver 0 0.07 0 0.07 par:pre; +coruscant coruscant adj m s 0.13 0.27 0.13 0.07 +coruscante coruscant adj f s 0.13 0.27 0 0.07 +coruscants coruscant adj m p 0.13 0.27 0 0.14 +coruscation coruscation nom f s 0 0.07 0 0.07 +corvette corvette nom f s 1.32 1.55 1.28 0.81 +corvettes corvette nom f p 1.32 1.55 0.04 0.74 +corvéable corvéable adj s 0 0.14 0 0.14 +corvée corvée nom f s 6.32 16.76 4.05 10.74 +corvées corvée nom f p 6.32 16.76 2.27 6.01 +corybantes corybante nom m p 0 0.07 0 0.07 +coryphène coryphène nom m s 0.01 0 0.01 0 +coryphée coryphée nom m s 0 0.07 0 0.07 +coryste coryste nom m s 0 0.07 0 0.07 +coryza coryza nom m s 0 0.68 0 0.68 +coré coré nom f s 0.4 0.14 0.4 0.14 +coréen coréen adj m s 2.95 0.07 1.67 0.07 +coréenne coréen adj f s 2.95 0.07 0.7 0 +coréennes coréen nom f p 1.79 0.27 0.05 0 +coréens coréen nom m p 1.79 0.27 1.09 0.27 +cosaque cosaque nom s 1.33 2.09 0.44 1.22 +cosaques cosaque nom p 1.33 2.09 0.89 0.88 +coseigneurs coseigneur nom m p 0 0.07 0 0.07 +cosigner cosigner ver 0.32 0 0.1 0 inf; +cosigné cosigner ver m s 0.32 0 0.21 0 par:pas; +cosinus cosinus nom m 0.28 0.2 0.28 0.2 +cosmique cosmique adj s 2.51 3.58 2.18 3.31 +cosmiquement cosmiquement adv 0.02 0 0.02 0 +cosmiques cosmique adj p 2.51 3.58 0.33 0.27 +cosmo cosmo adv 1.07 0.07 1.07 0.07 +cosmodromes cosmodrome nom m p 0.01 0 0.01 0 +cosmogonie cosmogonie nom f s 0 0.27 0 0.2 +cosmogonies cosmogonie nom f p 0 0.27 0 0.07 +cosmogonique cosmogonique adj m s 0 0.07 0 0.07 +cosmographie cosmographie nom f s 0 0.14 0 0.14 +cosmologie cosmologie nom f s 0.09 0.07 0.09 0.07 +cosmologique cosmologique adj f s 0.05 0.07 0.03 0 +cosmologiques cosmologique adj m p 0.05 0.07 0.02 0.07 +cosmologue cosmologue nom s 0 0.07 0 0.07 +cosmonaute cosmonaute nom s 1.29 0.88 0.83 0.54 +cosmonautes cosmonaute nom p 1.29 0.88 0.46 0.34 +cosmopolite cosmopolite adj s 0.35 2.5 0.24 1.96 +cosmopolites cosmopolite adj p 0.35 2.5 0.11 0.54 +cosmopolitisme cosmopolitisme nom m s 0 0.47 0 0.47 +cosmos cosmos nom m 2.34 1.42 2.34 1.42 +cosméticienne cosméticien nom f s 0.02 0.07 0.02 0.07 +cosmétique cosmétique adj s 0.47 0.34 0.23 0.2 +cosmétiques cosmétique nom p 0.69 0.81 0.52 0.54 +cosmétiqué cosmétiquer ver m s 0 0.34 0 0.07 par:pas; +cosmétiquée cosmétiquer ver f s 0 0.34 0 0.14 par:pas; +cosmétiquées cosmétiquer ver f p 0 0.34 0 0.07 par:pas; +cosmétiqués cosmétiquer ver m p 0 0.34 0 0.07 par:pas; +cosmétologie cosmétologie nom f s 0.07 0 0.07 0 +cosmétologue cosmétologue nom s 0.02 0 0.02 0 +cossard cossard adj m s 0.04 0.27 0.04 0.14 +cossarde cossard nom f s 0.01 0.47 0 0.07 +cossards cossard nom m p 0.01 0.47 0.01 0.27 +cosse cosse nom f s 0.62 0.68 0.34 0.2 +cossent cosser ver 0 0.07 0 0.07 ind:pre:3p; +cosses cosse nom f p 0.62 0.68 0.28 0.47 +cossu cossu adj m s 0.08 4.53 0.04 1.96 +cossue cossu adj f s 0.08 4.53 0.02 1.08 +cossues cossu adj f p 0.08 4.53 0.01 0.61 +cossus cossu adj m p 0.08 4.53 0 0.88 +costal costal adj m s 0.13 0 0.07 0 +costale costal adj f s 0.13 0 0.04 0 +costar costar nom m s 0.03 0 0.03 0 +costard costard nom m s 3.81 6.82 3.19 5.34 +costards costard nom m p 3.81 6.82 0.61 1.49 +costaricain costaricain adj m s 0.01 0 0.01 0 +costaud costaud adj m s 6.98 6.42 5.84 5.27 +costaude costaud adj f s 6.98 6.42 0.15 0.27 +costaudes costaud adj f p 6.98 6.42 0.01 0 +costauds costaud adj m p 6.98 6.42 0.98 0.88 +costaux costal adj m p 0.13 0 0.01 0 +costume costume nom m s 51.42 55.88 38.95 44.19 +costumer costumer ver 1.03 1.76 0.05 0.14 inf; +costumes costume nom m p 51.42 55.88 12.47 11.69 +costumier costumier nom m s 0.42 0.47 0.12 0.27 +costumiers costumier nom m p 0.42 0.47 0.07 0.14 +costumière costumier nom f s 0.42 0.47 0.23 0.07 +costumé costumé adj m s 1.26 1.08 0.68 0.54 +costumée costumé adj f s 1.26 1.08 0.27 0.14 +costumées costumer ver f p 1.03 1.76 0 0.07 par:pas; +costumés costumé adj m p 1.26 1.08 0.31 0.41 +cosy cosy nom m s 0.12 0.95 0.12 0.88 +cosy_corner cosy_corner nom m s 0 0.54 0 0.47 +cosy_corner cosy_corner nom m p 0 0.54 0 0.07 +cosys cosy nom m p 0.12 0.95 0 0.07 +cot_cot_codec cot_cot_codec ono 0.14 0.07 0.14 0.07 +cota coter ver 9.13 1.89 0.21 0 ind:pas:3s; +cotait coter ver 9.13 1.89 0.01 0 ind:imp:3s; +cotation cotation nom f s 0.31 0.27 0.14 0.14 +cotations cotation nom f p 0.31 0.27 0.17 0.14 +cote cote nom f s 8.48 5.47 7.5 5.07 +coteau coteau nom m s 0.41 7.7 0.19 5.2 +coteaux coteau nom m p 0.41 7.7 0.22 2.5 +cotent coter ver 9.13 1.89 0.02 0.07 ind:pre:3p; +coter coter ver 9.13 1.89 0.02 0.2 inf; +coterie coterie nom f s 0.14 1.55 0 1.15 +coteries coterie nom f p 0.14 1.55 0.14 0.41 +cotes cote nom 8.48 5.47 0.98 0.41 +cothurne cothurne nom m s 0 0.41 0 0.07 +cothurnes cothurne nom m p 0 0.41 0 0.34 +coties cotir ver f p 0 0.07 0 0.07 par:pas; +cotillon cotillon nom m s 0.32 0.81 0.19 0.2 +cotillons cotillon nom m p 0.32 0.81 0.13 0.61 +cotisa cotiser ver 0.88 0.88 0 0.07 ind:pas:3s; +cotisaient cotiser ver 0.88 0.88 0 0.14 ind:imp:3p; +cotisais cotiser ver 0.88 0.88 0 0.07 ind:imp:1s; +cotisant cotiser ver 0.88 0.88 0 0.14 par:pre; +cotisants cotisant nom m p 0.01 0.14 0.01 0.07 +cotisation cotisation nom f s 0.96 1.15 0.35 0.74 +cotisations cotisation nom f p 0.96 1.15 0.6 0.41 +cotise cotiser ver 0.88 0.88 0.21 0.07 ind:pre:1s;ind:pre:3s; +cotisent cotiser ver 0.88 0.88 0.03 0 ind:pre:3p; +cotiser cotiser ver 0.88 0.88 0.14 0.2 inf; +cotises cotiser ver 0.88 0.88 0.14 0 ind:pre:2s; +cotisèrent cotiser ver 0.88 0.88 0 0.07 ind:pas:3p; +cotisé cotiser ver m s 0.88 0.88 0.15 0.14 par:pas; +cotisées cotiser ver f p 0.88 0.88 0.01 0 par:pas; +cotisés cotiser ver m p 0.88 0.88 0.2 0 par:pas; +coton coton nom m s 10.09 26.22 10.06 24.66 +coton_tige coton_tige nom m s 0.43 0.07 0.2 0 +cotonnade cotonnade nom f s 0 3.18 0 2.23 +cotonnades cotonnade nom f p 0 3.18 0 0.95 +cotonnait cotonner ver 0 0.14 0 0.07 ind:imp:3s; +cotonnant cotonner ver 0 0.14 0 0.07 par:pre; +cotonnerie cotonnerie nom f s 0.01 0 0.01 0 +cotonneuse cotonneux adj f s 0.07 3.45 0.01 0.95 +cotonneuses cotonneux adj f p 0.07 3.45 0 0.74 +cotonneux cotonneux adj m 0.07 3.45 0.06 1.76 +cotonnier cotonnier adj m s 0 0.07 0 0.07 +cotonnier cotonnier nom m s 0 0.07 0 0.07 +cotonnière cotonnière nom f s 0.01 0 0.01 0 +cotons coton nom m p 10.09 26.22 0.03 1.55 +coton_tige coton_tige nom m p 0.43 0.07 0.23 0.07 +cotonéasters cotonéaster nom m p 0 0.07 0 0.07 +cotre cotre nom m s 0.03 1.96 0.03 1.76 +cotres cotre nom m p 0.03 1.96 0 0.2 +cotrets cotret nom m p 0 0.14 0 0.14 +cotriade cotriade nom f s 0 0.07 0 0.07 +cottage cottage nom m s 1.54 0.68 1.49 0.47 +cottages cottage nom m p 1.54 0.68 0.05 0.2 +cotte cotte nom f s 0.32 4.05 0.3 2.23 +cottes cotte nom f p 0.32 4.05 0.02 1.82 +coturne coturne nom m s 0 0.07 0 0.07 +cotylédons cotylédon nom m p 0 0.07 0 0.07 +cotât coter ver 9.13 1.89 0 0.07 sub:imp:3s; +coté coter ver m s 9.13 1.89 7.66 0.54 par:pas; +cotée coter ver f s 9.13 1.89 0.08 0.2 par:pas; +cotées coter ver f p 9.13 1.89 0.13 0.27 par:pas; +cotés coté adj m p 7.56 1.28 0.95 0.47 +cou cou nom m s 44.09 115.34 43.71 112.7 +cou_de_pied cou_de_pied nom m s 0.01 0.27 0.01 0.27 +couac couac nom m s 0.14 1.01 0.11 0.81 +couacs couac nom m p 0.14 1.01 0.03 0.2 +couaille couaille nom f s 0 0.14 0 0.14 +couaquait couaquer ver 0 0.34 0 0.07 ind:imp:3s; +couaquer couaquer ver 0 0.34 0 0.27 inf; +couard couard nom m s 0.25 0.47 0.2 0.34 +couarde couard adj f s 0.09 0.61 0.01 0 +couardise couardise nom f s 0.1 0.54 0.1 0.54 +couards couard nom m p 0.25 0.47 0.04 0.14 +coucha coucher ver 181.96 196.22 0.41 7.57 ind:pas:3s; +couchage couchage nom m s 1.86 1.28 1.86 1.28 +couchai coucher ver 181.96 196.22 0 1.35 ind:pas:1s; +couchaient coucher ver 181.96 196.22 0.13 2.57 ind:imp:3p; +couchailler couchailler ver 0 0.07 0 0.07 inf; +couchais coucher ver 181.96 196.22 1.89 2.57 ind:imp:1s;ind:imp:2s; +couchait coucher ver 181.96 196.22 2.23 11.89 ind:imp:3s; +couchant couchant adj m s 1.1 4.93 1.09 4.8 +couchants couchant adj m p 1.1 4.93 0.01 0.14 +couche coucher ver 181.96 196.22 29.5 18.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +couche_culotte couche_culotte nom f s 0.22 0.27 0.11 0.07 +couchent coucher ver 181.96 196.22 2.48 3.38 ind:pre:3p; +coucher coucher ver 181.96 196.22 82.63 63.24 inf;; +couchera coucher ver 181.96 196.22 0.86 0.81 ind:fut:3s; +coucherai coucher ver 181.96 196.22 1.36 1.28 ind:fut:1s; +coucheraient coucher ver 181.96 196.22 0.1 0.2 cnd:pre:3p; +coucherais coucher ver 181.96 196.22 0.56 0.68 cnd:pre:1s;cnd:pre:2s; +coucherait coucher ver 181.96 196.22 0.43 1.42 cnd:pre:3s; +coucheras coucher ver 181.96 196.22 0.96 0.88 ind:fut:2s; +coucherez coucher ver 181.96 196.22 0.54 0.54 ind:fut:2p; +coucherie coucherie nom f s 0.44 1.15 0.17 0.54 +coucheries coucherie nom f p 0.44 1.15 0.27 0.61 +coucheriez coucher ver 181.96 196.22 0.04 0.07 cnd:pre:2p; +coucherions coucher ver 181.96 196.22 0 0.07 cnd:pre:1p; +coucherons coucher ver 181.96 196.22 0.17 0.61 ind:fut:1p; +coucheront coucher ver 181.96 196.22 0.07 0.14 ind:fut:3p; +couchers coucher nom m p 7.8 8.92 0.73 0.81 +couches couche nom f p 19.95 32.91 9.06 10.14 +couche_culotte couche_culotte nom f p 0.22 0.27 0.11 0.2 +couchette couchette nom f s 1.99 6.28 1.5 5 +couchettes couchette nom f p 1.99 6.28 0.5 1.28 +coucheur coucheur nom m s 0.06 0.47 0.05 0.34 +coucheurs coucheur nom m p 0.06 0.47 0 0.14 +coucheuse coucheur nom f s 0.06 0.47 0.01 0 +couchez coucher ver 181.96 196.22 6.79 1.49 imp:pre:2p;ind:pre:2p; +couchiez coucher ver 181.96 196.22 0.48 0.2 ind:imp:2p; +couchions coucher ver 181.96 196.22 0.08 0.47 ind:imp:1p; +couchoir couchoir nom m s 0 0.07 0 0.07 +couchons coucher ver 181.96 196.22 0.53 0.41 imp:pre:1p;ind:pre:1p; +couchâmes coucher ver 181.96 196.22 0 0.14 ind:pas:1p; +couchât coucher ver 181.96 196.22 0 0.41 sub:imp:3s; +couchèrent coucher ver 181.96 196.22 0.03 2.3 ind:pas:3p; +couché coucher ver m s 181.96 196.22 35.71 40.74 par:pas; +couchée coucher ver f s 181.96 196.22 5.92 15.61 par:pas; +couchées coucher ver f p 181.96 196.22 0.31 2.43 par:pas; +couchés coucher ver m p 181.96 196.22 1.95 10.74 par:pas; +couci_couça couci_couça adv 0.6 0.2 0.6 0.2 +coucou coucou nom m s 13.16 5.07 12.71 3.92 +coucous coucou nom m p 13.16 5.07 0.45 1.15 +coud coudre ver 8.88 20.74 0.63 0.68 ind:pre:3s; +coude coude nom m s 10.19 54.19 5.36 33.24 +coudent couder ver 0.02 0.41 0 0.07 ind:pre:3p; +coudes coude nom m p 10.19 54.19 4.84 20.95 +coudoie coudoyer ver 0 0.88 0 0.07 ind:pre:3s; +coudoient coudoyer ver 0 0.88 0 0.14 ind:pre:3p; +coudoyai coudoyer ver 0 0.88 0 0.07 ind:pas:1s; +coudoyaient coudoyer ver 0 0.88 0 0.2 ind:imp:3p; +coudoyais coudoyer ver 0 0.88 0 0.07 ind:imp:1s; +coudoyant coudoyer ver 0 0.88 0 0.07 par:pre; +coudoyer coudoyer ver 0 0.88 0 0.14 inf; +coudoyons coudoyer ver 0 0.88 0 0.07 ind:pre:1p; +coudoyé coudoyer ver m s 0 0.88 0 0.07 par:pas; +coudra coudre ver 8.88 20.74 0.1 0.07 ind:fut:3s; +coudrai coudre ver 8.88 20.74 0.02 0.07 ind:fut:1s; +coudrais coudre ver 8.88 20.74 0.02 0 cnd:pre:1s;cnd:pre:2s; +coudrait coudre ver 8.88 20.74 0 0.07 cnd:pre:3s; +coudras coudre ver 8.88 20.74 0 0.07 ind:fut:2s; +coudre coudre ver 8.88 20.74 4.83 8.65 inf; +coudreuse coudreuse nom f s 0 0.07 0 0.07 +coudrier coudrier nom m s 0.04 10.41 0.04 10.07 +coudriers coudrier nom m p 0.04 10.41 0 0.34 +couds coudre ver 8.88 20.74 0.34 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +coudé coudé adj m s 0.06 0.61 0.03 0.41 +coudée coudée nom f s 0.07 1.55 0.01 0.2 +coudées coudée nom f p 0.07 1.55 0.06 1.35 +couenne couenne nom f s 0.53 1.82 0.4 1.49 +couennes couenne nom f p 0.53 1.82 0.14 0.34 +couette couette nom f s 1.58 2.03 1.34 1.28 +couettes couette nom f p 1.58 2.03 0.23 0.74 +couffin couffin nom m s 1.48 1.96 1.25 1.01 +couffins couffin nom m p 1.48 1.96 0.22 0.95 +couguar couguar nom m s 0.72 1.01 0.65 0.41 +couguars couguar nom m p 0.72 1.01 0.08 0.61 +couic couic nom_sup m s 0.64 1.22 0.64 1.22 +couillard couillard nom m s 0 0.07 0 0.07 +couille couille nom f s 38.8 11.42 3.56 1.55 +couilles couille nom f p 38.8 11.42 35.24 9.86 +couillettes couillette nom f p 0 0.27 0 0.27 +couillon couillon nom m s 5.75 2.36 4.04 1.76 +couillonnade couillonnade nom f s 0.82 0.41 0.42 0.14 +couillonnades couillonnade nom f p 0.82 0.41 0.4 0.27 +couillonne couillonner ver 0.53 0.68 0.02 0.07 imp:pre:2s;ind:pre:3s; +couillonnent couillonner ver 0.53 0.68 0 0.07 ind:pre:3p; +couillonner couillonner ver 0.53 0.68 0.33 0.34 inf; +couillonné couillonner ver m s 0.53 0.68 0.02 0.2 par:pas; +couillonnée couillonner ver f s 0.53 0.68 0.01 0 par:pas; +couillonnés couillonner ver m p 0.53 0.68 0.14 0 par:pas; +couillons couillon nom m p 5.75 2.36 1.71 0.61 +couillu couillu adj m s 0.51 0 0.23 0 +couillus couillu adj m p 0.51 0 0.28 0 +couina couiner ver 1.13 3.85 0 0.2 ind:pas:3s; +couinaient couiner ver 1.13 3.85 0 0.34 ind:imp:3p; +couinais couiner ver 1.13 3.85 0.01 0.07 ind:imp:1s;ind:imp:2s; +couinait couiner ver 1.13 3.85 0 0.54 ind:imp:3s; +couinant couiner ver 1.13 3.85 0.02 0.68 par:pre; +couine couiner ver 1.13 3.85 0.43 0.41 imp:pre:2s;ind:pre:3s; +couinement couinement nom m s 0.09 1.76 0.06 0.68 +couinements couinement nom m p 0.09 1.76 0.02 1.08 +couinent couiner ver 1.13 3.85 0.03 0.2 ind:pre:3p; +couiner couiner ver 1.13 3.85 0.45 1.01 inf; +couinerais couiner ver 1.13 3.85 0.01 0 cnd:pre:1s; +couineras couiner ver 1.13 3.85 0.01 0 ind:fut:2s; +couineront couiner ver 1.13 3.85 0.01 0 ind:fut:3p; +couines couiner ver 1.13 3.85 0.02 0 ind:pre:2s; +couinez couiner ver 1.13 3.85 0 0.14 ind:pre:2p; +couiné couiner ver m s 1.13 3.85 0.15 0.27 par:pas; +coula couler ver 47.56 121.15 0.18 5.61 ind:pas:3s; +coulage coulage nom m s 0.17 0.47 0.17 0.47 +coulai couler ver 47.56 121.15 0 0.2 ind:pas:1s; +coulaient couler ver 47.56 121.15 0.8 7.03 ind:imp:3p; +coulais couler ver 47.56 121.15 0.16 0.27 ind:imp:1s;ind:imp:2s; +coulait couler ver 47.56 121.15 2.96 26.62 ind:imp:3s; +coulant coulant adj m s 1.01 2.91 0.71 2.64 +coulante coulant adj f s 1.01 2.91 0.2 0 +coulants coulant adj m p 1.01 2.91 0.1 0.27 +coule couler ver 47.56 121.15 14.7 20.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +coulemelle coulemelle nom f s 0 0.07 0 0.07 +coulent couler ver 47.56 121.15 2.29 5 ind:pre:3p; +couler couler ver 47.56 121.15 14.93 37.7 ind:pre:2p;inf; +coulera couler ver 47.56 121.15 2.15 0.54 ind:fut:3s; +coulerai couler ver 47.56 121.15 0.14 0.2 ind:fut:1s; +couleraient couler ver 47.56 121.15 0.14 0.07 cnd:pre:3p; +coulerais couler ver 47.56 121.15 0.01 0 cnd:pre:2s; +coulerait couler ver 47.56 121.15 0.19 0.47 cnd:pre:3s; +couleras couler ver 47.56 121.15 0.05 0 ind:fut:2s; +coulerez couler ver 47.56 121.15 0.07 0.07 ind:fut:2p; +couleront couler ver 47.56 121.15 0.05 0 ind:fut:3p; +coules couler ver 47.56 121.15 0.68 0.34 ind:pre:2s; +couleur couleur nom f s 82.25 198.72 57.46 118.65 +couleurs couleur nom f p 82.25 198.72 24.79 80.07 +couleuvre couleuvre nom f s 0.89 2.91 0.71 1.55 +couleuvres couleuvre nom f p 0.89 2.91 0.18 1.35 +couleuvrine couleuvrine nom f s 0.23 0.2 0.14 0 +couleuvrines couleuvrine nom f p 0.23 0.2 0.1 0.2 +coulez couler ver 47.56 121.15 0.75 0 imp:pre:2p;ind:pre:2p; +couliez couler ver 47.56 121.15 0.02 0.07 ind:imp:2p; +coulions couler ver 47.56 121.15 0.02 0.07 ind:imp:1p; +coulis coulis nom m 0.58 0.68 0.58 0.68 +coulissa coulisser ver 0.14 2.36 0 0.14 ind:pas:3s; +coulissaient coulisser ver 0.14 2.36 0 0.07 ind:imp:3p; +coulissait coulisser ver 0.14 2.36 0 0.54 ind:imp:3s; +coulissant coulisser ver 0.14 2.36 0 0.54 par:pre; +coulissante coulissant adj f s 0.17 1.62 0.16 0.41 +coulissantes coulissant adj f p 0.17 1.62 0.01 0.68 +coulissants coulissant adj m p 0.17 1.62 0.01 0.14 +coulisse coulisse nom f s 4.5 9.05 1.05 2.3 +coulissements coulissement nom m p 0 0.07 0 0.07 +coulissent coulisser ver 0.14 2.36 0.02 0.14 ind:pre:3p; +coulisser coulisser ver 0.14 2.36 0.04 0.61 inf; +coulisses coulisse nom f p 4.5 9.05 3.44 6.76 +coulissier coulissier nom m s 0 0.14 0 0.14 +coulissèrent coulisser ver 0.14 2.36 0 0.07 ind:pas:3p; +coulissé coulisser ver m s 0.14 2.36 0 0.07 par:pas; +coulissée coulisser ver f s 0.14 2.36 0 0.07 par:pas; +couloir couloir nom m s 29.17 104.53 24.77 80.47 +couloir_symbole couloir_symbole nom m s 0 0.07 0 0.07 +couloirs couloir nom m p 29.17 104.53 4.41 24.05 +coulombs coulomb nom m p 0 0.07 0 0.07 +coulons couler ver 47.56 121.15 0.26 0.14 imp:pre:1p;ind:pre:1p; +coulpe coulpe nom f s 0.04 0.14 0.04 0.14 +coulure coulure nom f s 0.01 0.41 0.01 0.07 +coulures coulure nom f p 0.01 0.41 0 0.34 +coulât couler ver 47.56 121.15 0 0.2 sub:imp:3s; +coulèrent couler ver 47.56 121.15 0.13 1.08 ind:pas:3p; +coulé couler ver m s 47.56 121.15 6.46 8.24 par:pas; +coulée coulée nom f s 0.62 9.8 0.53 7.43 +coulées coulée nom f p 0.62 9.8 0.09 2.36 +coulés couler ver m p 47.56 121.15 0.12 0.88 par:pas; +coumarine coumarine nom f s 0.01 0 0.01 0 +countries countries nom p 0.01 0.07 0.01 0.07 +country country adj 1.73 0.07 1.73 0.07 +coup coup nom m s 471.82 837.7 389.49 641.55 +coup_de_poing coup_de_poing nom m s 0.13 0 0.13 0 +coupa couper ver 155.82 140.88 0.69 17.97 ind:pas:3s; +coupable coupable adj s 50.84 23.58 46.45 20.2 +coupablement coupablement adv 0 0.07 0 0.07 +coupables coupable adj p 50.84 23.58 4.39 3.38 +coupage coupage nom m s 0.02 0.2 0.02 0.14 +coupages coupage nom m p 0.02 0.2 0 0.07 +coupai couper ver 155.82 140.88 0.01 0.41 ind:pas:1s; +coupaient couper ver 155.82 140.88 0.33 2.43 ind:imp:3p; +coupailler coupailler ver 0.01 0 0.01 0 inf; +coupais couper ver 155.82 140.88 0.53 0.41 ind:imp:1s;ind:imp:2s; +coupait couper ver 155.82 140.88 1.64 10.61 ind:imp:3s; +coupant couper ver 155.82 140.88 0.97 4.73 par:pre; +coupante coupant adj f s 0.51 6.69 0.21 2.23 +coupantes coupant adj f p 0.51 6.69 0.1 1.35 +coupants coupant adj m p 0.51 6.69 0.04 0.74 +coupe couper ver 155.82 140.88 32.66 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +coupe_chou coupe_chou nom m s 0.05 0.34 0.05 0.34 +coupe_choux coupe_choux nom m 0.14 0.27 0.14 0.27 +coupe_cigare coupe_cigare nom m s 0.02 0.2 0.02 0.07 +coupe_cigare coupe_cigare nom m p 0.02 0.2 0 0.14 +coupe_circuit coupe_circuit nom m s 0.13 0.34 0.11 0.27 +coupe_circuit coupe_circuit nom m p 0.13 0.34 0.02 0.07 +coupe_coupe coupe_coupe nom m 0.1 0.68 0.1 0.68 +coupe_faim coupe_faim nom m s 0.09 0.07 0.08 0.07 +coupe_faim coupe_faim nom m p 0.09 0.07 0.01 0 +coupe_feu coupe_feu nom m s 0.12 0.14 0.12 0.14 +coupe_file coupe_file nom m s 0.03 0 0.03 0 +coupe_gorge coupe_gorge nom m 0.28 0.61 0.28 0.61 +coupe_jarret coupe_jarret nom m s 0.03 0 0.02 0 +coupe_jarret coupe_jarret nom m p 0.03 0 0.01 0 +coupe_ongle coupe_ongle nom m s 0.05 0 0.05 0 +coupe_ongles coupe_ongles nom m 0.26 0.14 0.26 0.14 +coupe_papier coupe_papier nom m 0.36 0.95 0.36 0.95 +coupe_pâte coupe_pâte nom m s 0 0.07 0 0.07 +coupe_racine coupe_racine nom m p 0 0.07 0 0.07 +coupe_vent coupe_vent nom m s 0.31 0.34 0.31 0.34 +coupelle coupelle nom f s 0.04 0.61 0.04 0.47 +coupelles coupelle nom f p 0.04 0.61 0 0.14 +coupent couper ver 155.82 140.88 2.19 3.99 ind:pre:3p; +couper couper ver 155.82 140.88 41.45 31.76 inf;;inf;;inf;; +coupera couper ver 155.82 140.88 1.13 0.61 ind:fut:3s; +couperai couper ver 155.82 140.88 1.67 0.2 ind:fut:1s; +couperaient couper ver 155.82 140.88 0.07 0.27 cnd:pre:3p; +couperais couper ver 155.82 140.88 1 0.41 cnd:pre:1s;cnd:pre:2s; +couperait couper ver 155.82 140.88 0.68 1.22 cnd:pre:3s; +couperas couper ver 155.82 140.88 0.31 0.27 ind:fut:2s; +couperet couperet nom m s 0.42 2.09 0.42 2.03 +couperets couperet nom m p 0.42 2.09 0 0.07 +couperez couper ver 155.82 140.88 0.11 0.2 ind:fut:2p; +couperons couper ver 155.82 140.88 0.17 0.2 ind:fut:1p; +couperont couper ver 155.82 140.88 0.2 0.2 ind:fut:3p; +couperose couperose nom f s 0.01 0.88 0.01 0.88 +couperosé couperoser ver m s 0.02 0.14 0.02 0.14 par:pas; +couperosée couperosé adj f s 0 1.28 0 0.2 +couperosées couperosé adj f p 0 1.28 0 0.2 +coupes couper ver 155.82 140.88 3.87 0.41 ind:pre:2s; +coupeur coupeur nom m s 0.55 0.41 0.3 0.27 +coupeurs coupeur nom m p 0.55 0.41 0.17 0.14 +coupeuse coupeur nom f s 0.55 0.41 0.08 0 +coupez couper ver 155.82 140.88 19.53 1.82 imp:pre:2p;ind:pre:2p; +coupiez couper ver 155.82 140.88 0.22 0.07 ind:imp:2p; +coupions couper ver 155.82 140.88 0.22 0.07 ind:imp:1p; +couplage couplage nom m s 0.11 0 0.07 0 +couplages couplage nom m p 0.11 0 0.04 0 +couplant coupler ver 0.42 0.95 0.02 0 par:pre; +couple couple nom s 49.62 63.99 41.13 47.23 +coupler coupler ver 0.42 0.95 0.01 0.14 inf; +couples couple nom m p 49.62 63.99 8.49 16.76 +couplet couplet nom m s 1.31 5.34 1.06 3.51 +couplets couplet nom m p 1.31 5.34 0.25 1.82 +coupleur coupleur nom m s 0.18 0 0.14 0 +coupleurs coupleur nom m p 0.18 0 0.04 0 +couplé coupler ver m s 0.42 0.95 0.07 0.2 par:pas; +couplée coupler ver f s 0.42 0.95 0.04 0 par:pas; +couplées coupler ver f p 0.42 0.95 0.02 0.14 par:pas; +couplés coupler ver m p 0.42 0.95 0.03 0.27 par:pas; +coupole coupole nom f s 1.16 8.92 1.13 5.27 +coupoles coupole nom f p 1.16 8.92 0.04 3.65 +coupon coupon nom m s 1.69 2.09 0.51 0.88 +coupon_cadeau coupon_cadeau nom m s 0.01 0 0.01 0 +coupons couper ver 155.82 140.88 1.86 0.2 imp:pre:1p;ind:pre:1p; +coups coup nom m p 471.82 837.7 82.33 196.15 +coups_de_poing coups_de_poing nom m p 0 0.14 0 0.14 +coupure coupure nom f s 10.48 11.08 6.29 5.81 +coupures coupure nom f p 10.48 11.08 4.19 5.27 +coupèrent couper ver 155.82 140.88 0.1 0.68 ind:pas:3p; +coupé couper ver m s 155.82 140.88 30.34 25.41 par:pas;par:pas;par:pas; +coupée couper ver f s 155.82 140.88 8.14 7.91 par:pas; +coupées couper ver f p 155.82 140.88 1.9 3.92 par:pas; +coupés couper ver m p 155.82 140.88 3.85 6.76 par:pas; +couques couque nom f p 0 0.07 0 0.07 +cour cour nom f s 71.8 150.14 71.8 150.14 +cour_jardin cour_jardin nom f s 0 0.07 0 0.07 +courage courage nom m s 70.73 70.34 70.7 69.8 +courages courage nom m p 70.73 70.34 0.03 0.54 +courageuse courageux adj f s 28.68 11.96 7.87 2.97 +courageusement courageusement adv 0.61 3.45 0.61 3.45 +courageuses courageux adj f p 28.68 11.96 0.59 0.61 +courageux courageux adj m 28.68 11.96 20.22 8.38 +couraient courir ver 146.5 263.38 1.54 17.91 ind:imp:3p; +courailler courailler ver 0.02 0 0.02 0 inf; +courais courir ver 146.5 263.38 2.86 5 ind:imp:1s;ind:imp:2s; +courait courir ver 146.5 263.38 3.38 32.43 ind:imp:3s; +couramment couramment adv 1.38 3.11 1.38 3.11 +courant courant nom m s 111.58 79.73 108.69 67.36 +courante courant adj f s 10.13 20.14 1.83 8.51 +courantes courant adj f p 10.13 20.14 0.53 2.23 +courants courant nom m p 111.58 79.73 2.89 12.36 +courba courber ver 2.84 19.66 0 2.09 ind:pas:3s; +courbaient courber ver 2.84 19.66 0 0.81 ind:imp:3p; +courbait courber ver 2.84 19.66 0 1.35 ind:imp:3s; +courbant courber ver 2.84 19.66 0.16 2.36 par:pre; +courbatu courbatu adj m s 0.02 0.54 0.01 0.27 +courbatue courbatu adj f s 0.02 0.54 0.01 0.14 +courbature courbature nom f s 0.39 1.62 0.01 0.54 +courbatures courbature nom f p 0.39 1.62 0.38 1.08 +courbaturé courbaturé adj m s 0.33 0.07 0.32 0.07 +courbaturée courbaturé adj f s 0.33 0.07 0.01 0 +courbatus courbatu adj m p 0.02 0.54 0 0.14 +courbe courbe nom f s 3 18.11 1.72 11.82 +courbent courber ver 2.84 19.66 0.11 0.07 ind:pre:3p; +courber courber ver 2.84 19.66 0.61 2.5 inf; +courberait courber ver 2.84 19.66 0 0.07 cnd:pre:3s; +courbes courbe nom f p 3 18.11 1.28 6.28 +courbette courbette nom f s 0.69 2.7 0.32 0.74 +courbettes courbette nom f p 0.69 2.7 0.38 1.96 +courbez courber ver 2.84 19.66 0.07 0.14 imp:pre:2p;ind:pre:2p; +courbons courber ver 2.84 19.66 0.01 0.07 imp:pre:1p;ind:pre:1p; +courbure courbure nom f s 0.33 2.5 0.21 2.16 +courbures courbure nom f p 0.33 2.5 0.12 0.34 +courbé courbé adj m s 0.66 6.08 0.59 2.97 +courbée courber ver f s 2.84 19.66 0.21 1.69 par:pas; +courbées courber ver f p 2.84 19.66 0.01 0.41 par:pas; +courbés courber ver m p 2.84 19.66 0.55 1.82 par:pas; +coure courir ver 146.5 263.38 0.72 1.22 sub:pre:1s;sub:pre:3s; +courent courir ver 146.5 263.38 8.83 12.84 ind:pre:3p; +coures courir ver 146.5 263.38 0.29 0 sub:pre:2s; +courette courette nom f s 0 2.09 0 1.69 +courettes courette nom f p 0 2.09 0 0.41 +coureur coureur nom m s 5.52 8.31 3.71 4.8 +coureurs coureur nom m p 5.52 8.31 1.42 2.36 +coureuse coureur nom f s 5.52 8.31 0.36 1.08 +coureuses coureur nom f p 5.52 8.31 0.04 0.07 +courez courir ver 146.5 263.38 11.99 1.28 imp:pre:2p;ind:pre:2p; +courge courge nom f s 2.46 0.88 1.38 0.61 +courges courge nom f p 2.46 0.88 1.08 0.27 +courgette courgette nom f s 1.24 0.41 0.25 0 +courgettes courgette nom f p 1.24 0.41 1 0.41 +couriez courir ver 146.5 263.38 0.14 0.2 ind:imp:2p;sub:pre:2p; +courions courir ver 146.5 263.38 0.09 0.68 ind:imp:1p; +courir courir ver 146.5 263.38 47.19 71.82 inf; +courlis courlis nom m 0.03 0.47 0.03 0.47 +couronna couronner ver 5.56 14.86 0.14 0.27 ind:pas:3s; +couronnaient couronner ver 5.56 14.86 0.01 0.47 ind:imp:3p; +couronnait couronner ver 5.56 14.86 0.01 0.88 ind:imp:3s; +couronnant couronner ver 5.56 14.86 0.01 1.42 par:pre; +couronne couronne nom f s 23.15 20.61 15.16 12.5 +couronnement couronnement nom m s 2.4 2.09 2.38 2.03 +couronnements couronnement nom m p 2.4 2.09 0.01 0.07 +couronnent couronner ver 5.56 14.86 0.14 0.34 ind:pre:3p; +couronner couronner ver 5.56 14.86 1.76 2.23 inf; +couronnera couronner ver 5.56 14.86 0.01 0.07 ind:fut:3s; +couronnerai couronner ver 5.56 14.86 0.02 0 ind:fut:1s; +couronnerons couronner ver 5.56 14.86 0.02 0 ind:fut:1p; +couronnes couronne nom f p 23.15 20.61 7.99 8.11 +couronné couronner ver m s 5.56 14.86 1.45 3.65 par:pas; +couronnée couronner ver f s 5.56 14.86 1.05 2.57 par:pas; +couronnées couronné adj f p 0.63 1.49 0.27 0.34 +couronnés couronner ver m p 5.56 14.86 0.14 1.28 par:pas; +courons courir ver 146.5 263.38 2.19 1.76 imp:pre:1p;ind:pre:1p; +courra courir ver 146.5 263.38 0.9 0.41 ind:fut:3s; +courrai courir ver 146.5 263.38 0.22 0.07 ind:fut:1s; +courraient courir ver 146.5 263.38 0.07 0.14 cnd:pre:3p; +courrais courir ver 146.5 263.38 0.86 0.14 cnd:pre:1s;cnd:pre:2s; +courrait courir ver 146.5 263.38 0.37 0.61 cnd:pre:3s; +courras courir ver 146.5 263.38 0.35 0 ind:fut:2s; +courre courre ver 0.75 2.91 0.75 2.91 inf; +courrez courir ver 146.5 263.38 1.05 0 ind:fut:2p; +courriel courriel nom m s 0.24 0 0.24 0 +courrier courrier nom m s 23.98 24.46 23.4 23.04 +courriers courrier nom m p 23.98 24.46 0.59 1.42 +courriez courir ver 146.5 263.38 0.09 0 cnd:pre:2p; +courrions courir ver 146.5 263.38 0.02 0 cnd:pre:1p; +courriériste courriériste nom s 0 0.27 0 0.27 +courroie courroie nom f s 1.05 5.61 0.56 3.11 +courroies courroie nom f p 1.05 5.61 0.5 2.5 +courrons courir ver 146.5 263.38 0.19 0.2 ind:fut:1p; +courront courir ver 146.5 263.38 0.17 0.34 ind:fut:3p; +courrouce courroucer ver 0.63 2.5 0.02 0.14 imp:pre:2s;ind:pre:3s; +courroucer courroucer ver 0.63 2.5 0.02 0 inf; +courroucé courroucer ver m s 0.63 2.5 0.57 1.49 par:pas; +courroucée courroucer ver f s 0.63 2.5 0.02 0.47 par:pas; +courroucées courroucer ver f p 0.63 2.5 0 0.07 par:pas; +courroucés courroucer ver m p 0.63 2.5 0 0.2 par:pas; +courroux courroux nom m 3.55 2.09 3.55 2.09 +courrouçaient courroucer ver 0.63 2.5 0 0.07 ind:imp:3p; +courrouçait courroucer ver 0.63 2.5 0 0.07 ind:imp:3s; +cours cours nom p 143.05 176.76 143.05 176.76 +coursaient courser ver 1.3 2.5 0.02 0.07 ind:imp:3p; +coursais courser ver 1.3 2.5 0.01 0.07 ind:imp:1s;ind:imp:2s; +coursait courser ver 1.3 2.5 0.02 0.07 ind:imp:3s; +coursant courser ver 1.3 2.5 0 0.14 par:pre; +course course nom f s 72.48 81.22 40.45 51.22 +course_poursuite course_poursuite nom f s 0.34 0 0.34 0 +coursent courser ver 1.3 2.5 0.03 0.2 ind:pre:3p; +courser courser ver 1.3 2.5 0.14 0.41 inf; +courserais courser ver 1.3 2.5 0.01 0 cnd:pre:2s; +courses course nom f p 72.48 81.22 32.04 30 +coursier coursier nom m s 4.81 2.64 4.06 1.96 +coursiers coursier nom m p 4.81 2.64 0.73 0.61 +coursive coursive nom f s 0.34 3.38 0.26 2.36 +coursives coursive nom f p 0.34 3.38 0.09 1.01 +coursière coursier nom f s 4.81 2.64 0.02 0.07 +coursé courser ver m s 1.3 2.5 0.09 0.34 par:pas; +coursée courser ver f s 1.3 2.5 0.03 0.07 par:pas; +coursés courser ver m p 1.3 2.5 0.27 0.07 par:pas; +court courir ver 146.5 263.38 19.25 22.3 ind:pre:3s; +court_bouillon court_bouillon nom m s 0.29 0.68 0.29 0.68 +court_circuit court_circuit nom m s 1.53 1.76 1.47 1.55 +court_circuiter court_circuiter ver 0.83 0.54 0 0.07 ind:imp:3s; +court_circuiter court_circuiter ver 0.83 0.54 0 0.07 par:pre; +court_circuiter court_circuiter ver 0.83 0.54 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +court_circuiter court_circuiter ver 0.83 0.54 0.29 0.2 inf; +court_circuit court_circuit ver 0.01 0 0.01 0 ind:pre:3s; +court_circuits court_circuits nom m s 0.02 0 0.02 0 +court_circuiter court_circuiter ver m s 0.83 0.54 0.28 0.07 par:pas; +court_circuiter court_circuiter ver f s 0.83 0.54 0.02 0.07 par:pas; +court_circuiter court_circuiter ver f p 0.83 0.54 0.1 0 par:pas; +court_courrier court_courrier nom m s 0.01 0 0.01 0 +court_jus court_jus nom m 0.03 0 0.03 0 +court_métrage court_métrage nom m s 0.17 0 0.17 0 +court_vêtu court_vêtu adj f s 0.01 0.14 0.01 0 +court_vêtu court_vêtu adj f p 0.01 0.14 0 0.14 +courtage courtage nom m s 0.36 0.27 0.36 0.07 +courtages courtage nom m p 0.36 0.27 0 0.2 +courtaud courtaud adj m s 0.22 1.15 0.21 0.61 +courtaude courtaud adj f s 0.22 1.15 0.01 0.27 +courtaudes courtaud adj f p 0.22 1.15 0 0.2 +courtauds courtaud adj m p 0.22 1.15 0 0.07 +courte court adj f s 41.15 108.99 14.07 32.77 +courtelinesque courtelinesque adj m s 0 0.14 0 0.07 +courtelinesques courtelinesque adj p 0 0.14 0 0.07 +courtement courtement adv 0 0.2 0 0.2 +courtepointe courtepointe nom f s 0.01 1.35 0.01 1.28 +courtepointes courtepointe nom f p 0.01 1.35 0 0.07 +courtes court adj f p 41.15 108.99 3.63 20.14 +courtier courtier nom m s 2.96 1.76 2.21 0.74 +courtiers courtier nom m p 2.96 1.76 0.73 0.61 +courtilière courtilière nom f s 0 0.14 0 0.07 +courtilières courtilière nom f p 0 0.14 0 0.07 +courtils courtil nom m p 0 0.07 0 0.07 +courtine courtine nom f s 0 2.43 0 0.34 +courtines courtine nom f p 0 2.43 0 2.09 +courtisa courtiser ver 2.79 2.5 0 0.07 ind:pas:3s; +courtisaient courtiser ver 2.79 2.5 0.03 0.07 ind:imp:3p; +courtisais courtiser ver 2.79 2.5 0.04 0.07 ind:imp:1s;ind:imp:2s; +courtisait courtiser ver 2.79 2.5 0.03 0.34 ind:imp:3s; +courtisan courtisan adj m s 0.3 0.47 0.28 0.34 +courtisane courtisan nom f s 2.58 6.82 0.66 2.09 +courtisanerie courtisanerie nom f s 0 0.41 0 0.41 +courtisanes courtisan nom f p 2.58 6.82 0.47 1.62 +courtisans courtisan nom m p 2.58 6.82 1.25 1.89 +courtisant courtiser ver 2.79 2.5 0.02 0.07 par:pre; +courtise courtiser ver 2.79 2.5 0.52 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +courtisent courtiser ver 2.79 2.5 0.14 0.07 ind:pre:3p; +courtiser courtiser ver 2.79 2.5 1.01 0.34 inf; +courtiserai courtiser ver 2.79 2.5 0.01 0 ind:fut:1s; +courtiseras courtiser ver 2.79 2.5 0.01 0 ind:fut:2s; +courtisez courtiser ver 2.79 2.5 0.05 0 imp:pre:2p;ind:pre:2p; +courtisiez courtiser ver 2.79 2.5 0.12 0 ind:imp:2p; +courtisé courtiser ver m s 2.79 2.5 0.45 0.2 par:pas; +courtisée courtiser ver f s 2.79 2.5 0.33 0.88 par:pas; +courtisées courtiser ver f p 2.79 2.5 0.01 0.07 par:pas; +courtière courtier nom f s 2.96 1.76 0.02 0.34 +courtières courtier nom f p 2.96 1.76 0 0.07 +courtois courtois adj m 1.97 9.73 1.58 7.03 +courtoise courtois adj f s 1.97 9.73 0.28 2.23 +courtoisement courtoisement adv 0.27 1.96 0.27 1.96 +courtoises courtois adj f p 1.97 9.73 0.11 0.47 +courtoisie courtoisie nom f s 4.59 8.18 4.42 8.04 +courtoisies courtoisie nom f p 4.59 8.18 0.16 0.14 +courts court adj m p 41.15 108.99 6.03 16.22 +court_circuit court_circuit nom m p 1.53 1.76 0.07 0.2 +couru courir ver m s 146.5 263.38 12.76 16.42 par:pas; +courue courir ver f s 146.5 263.38 0.11 0.14 par:pas; +courues courir ver f p 146.5 263.38 0 0.14 par:pas; +coururent courir ver 146.5 263.38 0.49 3.78 ind:pas:3p; +courus courir ver m p 146.5 263.38 0.23 4.73 ind:pas:1s;par:pas; +courussent courir ver 146.5 263.38 0 0.07 sub:imp:3p; +courut courir ver 146.5 263.38 1.65 22.64 ind:pas:3s; +courûmes courir ver 146.5 263.38 0.01 0.2 ind:pas:1p; +courût courir ver 146.5 263.38 0 0.27 sub:imp:3s; +courûtes courir ver 146.5 263.38 0.01 0 ind:pas:2p; +cous cou nom m p 44.09 115.34 0.38 2.64 +cous_de_pied cous_de_pied nom m p 0 0.07 0 0.07 +cousaient coudre ver 8.88 20.74 0.01 0.2 ind:imp:3p; +cousait coudre ver 8.88 20.74 0.16 2.36 ind:imp:3s; +cousant coudre ver 8.88 20.74 0.03 0.88 par:pre; +couscous couscous nom m 1.05 3.24 1.05 3.24 +couscoussier couscoussier nom m s 0.15 0.34 0.15 0.27 +couscoussiers couscoussier nom m p 0.15 0.34 0 0.07 +couse coudre ver 8.88 20.74 0.06 0.07 sub:pre:1s;sub:pre:3s; +cousent coudre ver 8.88 20.74 0.07 0.14 ind:pre:3p; +cousette cousette nom f s 0.01 0.68 0 0.14 +cousettes cousette nom f p 0.01 0.68 0.01 0.54 +couseuse couseur nom f s 0.01 0 0.01 0 +cousez coudre ver 8.88 20.74 0.17 0 imp:pre:2p;ind:pre:2p; +cousiez coudre ver 8.88 20.74 0 0.07 ind:imp:2p; +cousin cousin nom m s 73.87 89.93 37.31 39.05 +cousinage cousinage nom m s 0 0.88 0 0.47 +cousinages cousinage nom m p 0 0.88 0 0.41 +cousinant cousiner ver 0 0.14 0 0.14 par:pre; +cousine cousin nom f s 73.87 89.93 23.72 25.14 +cousines cousin nom f p 73.87 89.93 2.18 5.14 +cousins cousin nom m p 73.87 89.93 10.66 20.61 +cousirent coudre ver 8.88 20.74 0 0.07 ind:pas:3p; +cousissent coudre ver 8.88 20.74 0 0.07 sub:imp:3p; +cousit coudre ver 8.88 20.74 0 0.14 ind:pas:3s; +coussin coussin nom m s 4.41 22.7 2.44 8.45 +coussinet coussinet nom m s 0.07 0.88 0.04 0.47 +coussinets coussinet nom m p 0.07 0.88 0.02 0.41 +coussins coussin nom m p 4.41 22.7 1.98 14.26 +cousu coudre ver m s 8.88 20.74 1.18 2.97 par:pas; +cousue cousu adj f s 1.86 2.5 1.5 0.88 +cousues coudre ver f p 8.88 20.74 0.25 0.95 par:pas; +cousus coudre ver m p 8.88 20.74 0.43 1.69 par:pas; +couteau couteau nom m s 58.15 52.64 51.08 44.26 +couteau_scie couteau_scie nom m s 0.01 0.07 0.01 0.07 +couteaux couteau nom m p 58.15 52.64 7.08 8.38 +coutelas coutelas nom m 0.02 1.22 0.02 1.22 +coutelier coutelier nom m s 0.02 0.2 0.02 0.2 +coutellerie coutellerie nom f s 0.01 0.2 0.01 0.14 +coutelleries coutellerie nom f p 0.01 0.2 0 0.07 +coutil coutil nom m s 0 1.28 0 1.28 +coutume coutume nom f s 10.46 25.14 7.27 17.03 +coutumes coutume nom f p 10.46 25.14 3.19 8.11 +coutumier coutumier adj m s 0.85 6.15 0.63 2.36 +coutumiers coutumier adj m p 0.85 6.15 0 0.88 +coutumière coutumier adj f s 0.85 6.15 0.2 2.57 +coutumièrement coutumièrement adv 0 0.07 0 0.07 +coutumières coutumier adj f p 0.85 6.15 0.02 0.34 +couturaient couturer ver 0.1 1.28 0 0.14 ind:imp:3p; +couture couture nom f s 5.52 10.54 4.31 8.45 +coutures couture nom f p 5.52 10.54 1.21 2.09 +couturier couturier nom m s 3.52 10.27 0.56 2.43 +couturiers couturier nom m p 3.52 10.27 0.15 1.28 +couturière couturier nom f s 3.52 10.27 2.45 5.81 +couturières couturier nom f p 3.52 10.27 0.36 0.74 +couturé couturer ver m s 0.1 1.28 0 0.47 par:pas; +couturée couturer ver f s 0.1 1.28 0.1 0.41 par:pas; +couturées couturer ver f p 0.1 1.28 0 0.14 par:pas; +couturés couturer ver m p 0.1 1.28 0 0.14 par:pas; +couvade couvade nom f s 0.01 0 0.01 0 +couvaient couver ver 3.59 12.03 0.14 0.54 ind:imp:3p; +couvais couver ver 3.59 12.03 0.01 0.14 ind:imp:1s; +couvaison couvaison nom f s 0 0.2 0 0.14 +couvaisons couvaison nom f p 0 0.2 0 0.07 +couvait couver ver 3.59 12.03 0.25 3.58 ind:imp:3s; +couvant couver ver 3.59 12.03 0.02 0.54 par:pre; +couve couver ver 3.59 12.03 1.54 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +couvent couvent nom m s 16.83 26.15 16.09 22.5 +couventine couventine nom f s 0 0.41 0 0.2 +couventines couventine nom f p 0 0.41 0 0.2 +couvents couvent nom m p 16.83 26.15 0.74 3.65 +couver couver ver 3.59 12.03 0.75 1.62 inf; +couvercle couvercle nom m s 2.71 22.09 2.56 20.61 +couvercles couvercle nom m p 2.71 22.09 0.16 1.49 +couveront couver ver 3.59 12.03 0.01 0.07 ind:fut:3p; +couvert couvrir ver m s 88.29 133.51 14.62 26.89 par:pas; +couverte couvrir ver f s 88.29 133.51 4.77 18.31 par:pas; +couvertes couvrir ver f p 88.29 133.51 1.77 10.27 par:pas; +couverts couvrir ver m p 88.29 133.51 2.92 11.82 par:pas; +couverture couverture nom f s 34.39 62.03 26.5 41.01 +couvertures couverture nom f p 34.39 62.03 7.89 21.01 +couves couver ver 3.59 12.03 0.23 0.27 ind:pre:2s; +couvet couvet nom m s 0 0.14 0 0.14 +couveuse couveuse nom f s 0.51 0.95 0.51 0.74 +couveuses couveuse nom f p 0.51 0.95 0 0.2 +couvez couver ver 3.59 12.03 0.09 0.07 imp:pre:2p;ind:pre:2p; +couvis couvi adj m p 0 0.07 0 0.07 +couvraient couvrir ver 88.29 133.51 0.45 4.26 ind:imp:3p; +couvrais couvrir ver 88.29 133.51 0.76 0.54 ind:imp:1s;ind:imp:2s; +couvrait couvrir ver 88.29 133.51 1.35 15.27 ind:imp:3s; +couvrant couvrir ver 88.29 133.51 0.85 4.26 par:pre; +couvrante couvrant adj f s 0.18 2.64 0.01 1.49 +couvrantes couvrant adj f p 0.18 2.64 0 0.88 +couvre couvrir ver 88.29 133.51 23.58 11.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +couvre_chef couvre_chef nom m s 0.58 1.55 0.42 1.35 +couvre_chef couvre_chef nom m p 0.58 1.55 0.16 0.2 +couvre_feu couvre_feu nom m s 3.63 3.11 3.63 3.11 +couvre_feux couvre_feux nom m p 0.04 0 0.04 0 +couvre_lit couvre_lit nom m s 0.33 2.77 0.3 2.7 +couvre_lit couvre_lit nom m p 0.33 2.77 0.03 0.07 +couvre_pied couvre_pied nom m s 0.01 0.47 0.01 0.47 +couvre_pieds couvre_pieds nom m 0.01 0.47 0.01 0.47 +couvrent couvrir ver 88.29 133.51 1.96 3.65 ind:pre:3p; +couvres couvrir ver 88.29 133.51 2.54 0.27 ind:pre:2s;sub:pre:2s; +couvreur couvreur nom m s 0.41 1.01 0.37 0.74 +couvreurs couvreur nom m p 0.41 1.01 0.04 0.27 +couvrez couvrir ver 88.29 133.51 8.41 0.47 imp:pre:2p;ind:pre:2p; +couvriez couvrir ver 88.29 133.51 0.09 0 ind:imp:2p; +couvrir couvrir ver 88.29 133.51 19.57 16.82 inf; +couvrira couvrir ver 88.29 133.51 1.72 0.41 ind:fut:3s; +couvrirai couvrir ver 88.29 133.51 1.03 0.07 ind:fut:1s; +couvriraient couvrir ver 88.29 133.51 0.06 0.41 cnd:pre:3p; +couvrirais couvrir ver 88.29 133.51 0.29 0 cnd:pre:1s;cnd:pre:2s; +couvrirait couvrir ver 88.29 133.51 0.15 0.68 cnd:pre:3s; +couvriras couvrir ver 88.29 133.51 0.07 0.2 ind:fut:2s; +couvrirent couvrir ver 88.29 133.51 0 1.15 ind:pas:3p; +couvrirez couvrir ver 88.29 133.51 0.27 0.14 ind:fut:2p; +couvrirons couvrir ver 88.29 133.51 0.1 0 ind:fut:1p; +couvriront couvrir ver 88.29 133.51 0.27 0.07 ind:fut:3p; +couvris couvrir ver 88.29 133.51 0 0.61 ind:pas:1s; +couvrit couvrir ver 88.29 133.51 0.2 5.61 ind:pas:3s; +couvrons couvrir ver 88.29 133.51 0.48 0.07 imp:pre:1p;ind:pre:1p; +couvrît couvrir ver 88.29 133.51 0 0.07 sub:imp:3s; +couvé couver ver m s 3.59 12.03 0.17 1.82 par:pas; +couvée couvée nom f s 0.2 1.42 0.19 1.15 +couvées couvée nom f p 0.2 1.42 0.01 0.27 +couvés couver ver m p 3.59 12.03 0.01 0.68 par:pas; +covalent covalent adj m s 0.03 0 0.01 0 +covalente covalent adj f s 0.03 0 0.01 0 +covenant covenant nom m s 0.05 0 0.05 0 +cover_girl cover_girl nom f s 0.14 0.47 0.14 0.2 +cover_girl cover_girl nom f p 0.14 0.47 0 0.27 +covoiturage covoiturage nom m s 0.07 0 0.07 0 +cow_boy cow_boy nom m s 0.01 5.27 0 3.11 +cow_boy cow_boy nom m p 0.01 5.27 0.01 2.16 +coxalgie coxalgie nom f s 0 0.07 0 0.07 +coxalgique coxalgique adj s 0 0.07 0 0.07 +coyote coyote nom m s 4.01 0.47 2.5 0.34 +coyotes coyote nom m p 4.01 0.47 1.52 0.14 +coéquipier coéquipier nom m s 4.21 0.47 2.73 0.07 +coéquipiers coéquipier nom m p 4.21 0.47 0.71 0.34 +coéquipière coéquipier nom f s 4.21 0.47 0.69 0.07 +coéquipières coéquipier nom f p 4.21 0.47 0.01 0 +coïncida coïncider ver 1.93 7.09 0.11 0.54 ind:pas:3s; +coïncidaient coïncider ver 1.93 7.09 0.01 0.27 ind:imp:3p; +coïncidais coïncider ver 1.93 7.09 0 0.07 ind:imp:1s; +coïncidait coïncider ver 1.93 7.09 0.07 1.62 ind:imp:3s; +coïncidant coïncider ver 1.93 7.09 0.03 0.47 par:pre; +coïncidassent coïncider ver 1.93 7.09 0 0.07 sub:imp:3p; +coïncide coïncider ver 1.93 7.09 0.78 1.22 imp:pre:2s;ind:pre:3s; +coïncidence coïncidence nom f s 18.04 7.16 15.95 5.61 +coïncidences coïncidence nom f p 18.04 7.16 2.09 1.55 +coïncident coïncider ver 1.93 7.09 0.44 0.47 ind:pre:3p; +coïncider coïncider ver 1.93 7.09 0.32 1.35 inf; +coïnciderait coïncider ver 1.93 7.09 0.01 0.2 cnd:pre:3s; +coïncidions coïncider ver 1.93 7.09 0 0.07 ind:imp:1p; +coïncidât coïncider ver 1.93 7.09 0 0.07 sub:imp:3s; +coïncidèrent coïncider ver 1.93 7.09 0 0.2 ind:pas:3p; +coïncidé coïncider ver m s 1.93 7.09 0.15 0.47 par:pas; +coït coït nom m s 0.83 3.38 0.81 2.84 +coïts coït nom m p 0.83 3.38 0.03 0.54 +coïté coïter ver m s 0 0.07 0 0.07 par:pas; +coût coût nom m s 5.04 1.35 3.58 1.22 +coûta coûter ver 83.15 48.11 0.05 1.22 ind:pas:3s; +coûtaient coûter ver 83.15 48.11 0.37 1.35 ind:imp:3p; +coûtais coûter ver 83.15 48.11 0 0.14 ind:imp:1s; +coûtait coûter ver 83.15 48.11 0.86 6.35 ind:imp:3s; +coûtant coûtant adj m s 0.11 0.07 0.11 0.07 +coûte coûter ver 83.15 48.11 38.84 20.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coûtent coûter ver 83.15 48.11 5.35 1.76 ind:pre:3p; +coûter coûter ver 83.15 48.11 12.59 5.27 ind:pre:2p;inf; +coûtera coûter ver 83.15 48.11 7.11 1.82 ind:fut:3s; +coûterai coûter ver 83.15 48.11 0.02 0.07 ind:fut:1s; +coûteraient coûter ver 83.15 48.11 0.06 0.07 cnd:pre:3p; +coûterait coûter ver 83.15 48.11 2.29 2.3 cnd:pre:3s; +coûteras coûter ver 83.15 48.11 0.01 0 ind:fut:2s; +coûteront coûter ver 83.15 48.11 0.41 0.2 ind:fut:3p; +coûtes coûter ver 83.15 48.11 0.44 0 ind:pre:2s; +coûteuse coûteux adj f s 3.09 5.07 1.23 1.22 +coûteusement coûteusement adv 0 0.07 0 0.07 +coûteuses coûteux adj f p 3.09 5.07 0.26 0.81 +coûteux coûteux adj m 3.09 5.07 1.6 3.04 +coûtez coûter ver 83.15 48.11 0.2 0.07 ind:pre:2p; +coûtions coûter ver 83.15 48.11 0 0.07 ind:imp:1p; +coûts coût nom m p 5.04 1.35 1.46 0.14 +coûtât coûter ver 83.15 48.11 0 0.47 sub:imp:3s; +coûté coûter ver m s 83.15 48.11 14.35 6.15 par:pas; +coûtée coûter ver f s 83.15 48.11 0.01 0.07 par:pas; +coûtées coûter ver f p 83.15 48.11 0.01 0.07 par:pas; +coûtés coûter ver m p 83.15 48.11 0.12 0.07 par:pas; +crabe crabe nom m s 8.14 12.36 4.9 7.3 +crabes crabe nom m p 8.14 12.36 3.24 5.07 +crabillon crabillon nom m s 0 0.2 0 0.07 +crabillons crabillon nom m p 0 0.2 0 0.14 +crabs crabs nom m p 0.41 0 0.41 0 +crac crac nom_sup m s 2.85 6.01 2.85 6.01 +cracha cracher ver 27.93 45.81 0.16 5.2 ind:pas:3s; +crachai cracher ver 27.93 45.81 0 0.2 ind:pas:1s; +crachaient cracher ver 27.93 45.81 0.03 1.76 ind:imp:3p; +crachais cracher ver 27.93 45.81 0.13 0.68 ind:imp:1s;ind:imp:2s; +crachait cracher ver 27.93 45.81 0.87 4.66 ind:imp:3s; +crachant cracher ver 27.93 45.81 0.36 4.32 par:pre; +crachat crachat nom m s 1.34 3.72 1.08 1.62 +crachats crachat nom m p 1.34 3.72 0.26 2.09 +crache cracher ver 27.93 45.81 10.28 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crachement crachement nom m s 0 0.68 0 0.54 +crachements crachement nom m p 0 0.68 0 0.14 +crachent cracher ver 27.93 45.81 0.93 1.42 ind:pre:3p; +cracher cracher ver 27.93 45.81 6.86 10.34 inf; +crachera cracher ver 27.93 45.81 0.3 0.14 ind:fut:3s; +cracherai cracher ver 27.93 45.81 0.21 0.34 ind:fut:1s; +cracherais cracher ver 27.93 45.81 0.64 0.14 cnd:pre:1s;cnd:pre:2s; +cracherait cracher ver 27.93 45.81 0.18 0.2 cnd:pre:3s; +cracheriez cracher ver 27.93 45.81 0.01 0 cnd:pre:2p; +cracheront cracher ver 27.93 45.81 0.04 0.14 ind:fut:3p; +craches cracher ver 27.93 45.81 1.41 0.41 ind:pre:2s;sub:pre:2s; +cracheur cracheur nom m s 0.33 1.08 0.28 0.88 +cracheurs cracheur nom m p 0.33 1.08 0.01 0.14 +cracheuse cracheur nom f s 0.33 1.08 0.03 0.07 +cracheuses cracheur nom f p 0.33 1.08 0.01 0 +crachez cracher ver 27.93 45.81 0.91 0.14 imp:pre:2p;ind:pre:2p; +crachin crachin nom m s 0.03 2.03 0.03 1.89 +crachine crachiner ver 0 0.2 0 0.07 ind:pre:3s; +crachiner crachiner ver 0 0.2 0 0.14 inf; +crachins crachin nom m p 0.03 2.03 0 0.14 +crachoir crachoir nom m s 0.56 0.61 0.32 0.47 +crachoirs crachoir nom m p 0.56 0.61 0.24 0.14 +crachons cracher ver 27.93 45.81 0.14 0.07 imp:pre:1p;ind:pre:1p; +crachota crachoter ver 0.02 2.3 0.01 0.14 ind:pas:3s; +crachotaient crachoter ver 0.02 2.3 0 0.07 ind:imp:3p; +crachotait crachoter ver 0.02 2.3 0 0.41 ind:imp:3s; +crachotant crachoter ver 0.02 2.3 0 0.47 par:pre; +crachotantes crachotant adj f p 0 0.41 0 0.07 +crachotants crachotant adj m p 0 0.41 0 0.07 +crachote crachoter ver 0.02 2.3 0.01 0.41 ind:pre:3s; +crachotement crachotement nom m s 0 0.27 0 0.14 +crachotements crachotement nom m p 0 0.27 0 0.14 +crachotent crachoter ver 0.02 2.3 0 0.14 ind:pre:3p; +crachoter crachoter ver 0.02 2.3 0 0.54 inf; +crachoteuse crachoteux adj f s 0 0.2 0 0.14 +crachoteux crachoteux adj m 0 0.2 0 0.07 +crachoté crachoter ver m s 0.02 2.3 0 0.14 par:pas; +crachouilla crachouiller ver 0 0.34 0 0.14 ind:pas:3s; +crachouille crachouiller ver 0 0.34 0 0.2 ind:pre:3s; +crachouillis crachouillis nom m 0.01 0.14 0.01 0.14 +crachèrent cracher ver 27.93 45.81 0 0.27 ind:pas:3p; +craché cracher ver m s 27.93 45.81 4.26 4.53 par:pas; +crachée craché adj f s 3.24 1.62 0.19 0.27 +crachées cracher ver f p 27.93 45.81 0.01 0.07 par:pas; +crachés cracher ver m p 27.93 45.81 0.01 0.2 par:pas; +crack crack nom m s 7.77 0.88 7.3 0.68 +cracker cracker nom m s 2.22 0.27 0.72 0 +crackers cracker nom m p 2.22 0.27 1.5 0.27 +cracking cracking nom m s 0.01 0 0.01 0 +cracks crack nom m p 7.77 0.88 0.47 0.2 +cracra cracra adj f s 0.04 0.54 0.04 0.54 +crade crade adj s 1.31 1.55 1.19 1.35 +crades crade adj p 1.31 1.55 0.12 0.2 +cradingue cradingue adj s 0.12 1.42 0.12 1.01 +cradingues cradingue adj p 0.12 1.42 0 0.41 +crado crado adj s 0.23 1.22 0.17 0.95 +cradoque cradoque adj f s 0.01 0 0.01 0 +crados crado adj p 0.23 1.22 0.06 0.27 +craie craie nom f s 5.8 10.68 5.66 10.2 +craies craie nom f p 5.8 10.68 0.14 0.47 +craignaient craindre ver 117.44 108.31 0.82 2.91 ind:imp:3p; +craignais craindre ver 117.44 108.31 5.34 8.31 ind:imp:1s;ind:imp:2s; +craignait craindre ver 117.44 108.31 3.42 20.14 ind:imp:3s; +craignant craindre ver 117.44 108.31 1.35 7.97 par:pre; +craigne craindre ver 117.44 108.31 0.49 0.41 sub:pre:1s;sub:pre:3s; +craignent craindre ver 117.44 108.31 3.75 2.36 ind:pre:3p; +craignes craindre ver 117.44 108.31 0.14 0 sub:pre:2s; +craignez craindre ver 117.44 108.31 9.27 3.38 imp:pre:2p;ind:pre:2p; +craigniez craindre ver 117.44 108.31 0.38 0.2 ind:imp:2p; +craignions craindre ver 117.44 108.31 0.22 0.2 ind:imp:1p; +craignirent craindre ver 117.44 108.31 0 0.07 ind:pas:3p; +craignis craindre ver 117.44 108.31 0.14 0.54 ind:pas:1s; +craignissent craindre ver 117.44 108.31 0 0.07 sub:imp:3p; +craignit craindre ver 117.44 108.31 0.01 1.82 ind:pas:3s; +craignons craindre ver 117.44 108.31 1.32 1.08 imp:pre:1p;ind:pre:1p; +craignos craignos adj 1.02 0.74 1.02 0.74 +craignît craindre ver 117.44 108.31 0 0.2 sub:imp:3s; +craillaient crailler ver 0 0.14 0 0.07 ind:imp:3p; +craillent crailler ver 0 0.14 0 0.07 ind:pre:3p; +craindra craindre ver 117.44 108.31 0.22 0.07 ind:fut:3s; +craindrai craindre ver 117.44 108.31 0.08 0 ind:fut:1s; +craindraient craindre ver 117.44 108.31 0.04 0.07 cnd:pre:3p; +craindrais craindre ver 117.44 108.31 0.19 0.2 cnd:pre:1s;cnd:pre:2s; +craindrait craindre ver 117.44 108.31 0.1 0.34 cnd:pre:3s; +craindras craindre ver 117.44 108.31 0.03 0 ind:fut:2s; +craindre craindre ver 117.44 108.31 18.73 19.73 inf; +craindriez craindre ver 117.44 108.31 0.16 0 cnd:pre:2p; +craindrons craindre ver 117.44 108.31 0.01 0 ind:fut:1p; +craindront craindre ver 117.44 108.31 0.02 0.07 ind:fut:3p; +crains craindre ver 117.44 108.31 40.76 17.64 imp:pre:2s;ind:pre:1s;ind:pre:2s; +craint craindre ver m s 117.44 108.31 23.43 15.54 ind:pre:3s;par:pas; +crainte crainte nom f s 14.54 52.64 11.39 45.61 +craintes crainte nom f p 14.54 52.64 3.15 7.03 +craintif craintif adj m s 1.38 8.31 0.97 3.92 +craintifs craintif adj m p 1.38 8.31 0.19 1.49 +craintive craintif adj f s 1.38 8.31 0.22 2.23 +craintivement craintivement adv 0 1.15 0 1.15 +craintives craintif adj f p 1.38 8.31 0 0.68 +craints craindre ver m p 117.44 108.31 0.25 0.14 par:pas; +crama cramer ver 4.59 2.97 0 0.07 ind:pas:3s; +cramaient cramer ver 4.59 2.97 0 0.07 ind:imp:3p; +cramait cramer ver 4.59 2.97 0.01 0.14 ind:imp:3s; +cramant cramer ver 4.59 2.97 0 0.07 par:pre; +crame cramer ver 4.59 2.97 1.17 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crament cramer ver 4.59 2.97 0.05 0.07 ind:pre:3p; +cramer cramer ver 4.59 2.97 1.47 0.81 inf; +crameraient cramer ver 4.59 2.97 0.01 0 cnd:pre:3p; +cramerais cramer ver 4.59 2.97 0.02 0 cnd:pre:1s;cnd:pre:2s; +crameras cramer ver 4.59 2.97 0.01 0 ind:fut:2s; +cramez cramer ver 4.59 2.97 0.16 0 imp:pre:2p;ind:pre:2p; +cramoisi cramoisi adj m s 0.25 4.26 0.13 2.7 +cramoisie cramoisi adj f s 0.25 4.26 0.1 0.47 +cramoisies cramoisi adj f p 0.25 4.26 0 0.47 +cramoisis cramoisi adj m p 0.25 4.26 0.02 0.61 +cramouille cramouille nom f s 0.06 0.47 0.05 0.34 +cramouilles cramouille nom f p 0.06 0.47 0.01 0.14 +crampe crampe nom f s 5.18 6.01 2.62 2.84 +crampes crampe nom f p 5.18 6.01 2.57 3.18 +crampette crampette nom f s 0 0.14 0 0.07 +crampettes crampette nom f p 0 0.14 0 0.07 +crampon crampon nom m s 1.49 1.15 0.98 0.2 +cramponna cramponner ver 1.67 13.45 0 0.54 ind:pas:3s; +cramponnaient cramponner ver 1.67 13.45 0 0.14 ind:imp:3p; +cramponnais cramponner ver 1.67 13.45 0.14 0.41 ind:imp:1s;ind:imp:2s; +cramponnait cramponner ver 1.67 13.45 0.02 1.49 ind:imp:3s; +cramponnant cramponner ver 1.67 13.45 0 1.08 par:pre; +cramponne cramponner ver 1.67 13.45 0.49 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cramponnent cramponner ver 1.67 13.45 0 0.27 ind:pre:3p; +cramponner cramponner ver 1.67 13.45 0.09 1.35 inf; +cramponneront cramponner ver 1.67 13.45 0.02 0 ind:fut:3p; +cramponnez cramponner ver 1.67 13.45 0.55 0.14 imp:pre:2p;ind:pre:2p; +cramponniez cramponner ver 1.67 13.45 0.01 0.07 ind:imp:2p; +cramponnons cramponner ver 1.67 13.45 0.01 0.14 imp:pre:1p;ind:pre:1p; +cramponné cramponner ver m s 1.67 13.45 0.16 2.5 par:pas; +cramponnée cramponner ver f s 1.67 13.45 0.14 1.62 par:pas; +cramponnées cramponner ver f p 1.67 13.45 0 0.41 par:pas; +cramponnés cramponner ver m p 1.67 13.45 0.03 1.35 par:pas; +crampons crampon nom m p 1.49 1.15 0.51 0.95 +cramé cramer ver m s 4.59 2.97 1.5 0.88 par:pas; +cramée cramer ver f s 4.59 2.97 0.06 0.07 par:pas; +cramées cramer ver f p 4.59 2.97 0 0.07 par:pas; +cramés cramer ver m p 4.59 2.97 0.14 0.07 par:pas; +cran cran nom m s 13.97 8.11 13.61 6.96 +crane crane nom m s 0.96 0 0.96 0 +craniométrie craniométrie nom f s 0.03 0 0.03 0 +craniotomie craniotomie nom f s 0.03 0 0.03 0 +crans cran nom m p 13.97 8.11 0.36 1.15 +cranter cranter ver 0.08 0.34 0.05 0.14 inf; +cranté cranter ver m s 0.08 0.34 0.01 0.14 par:pas; +crantées cranter ver f p 0.08 0.34 0.01 0 par:pas; +crantés cranter ver m p 0.08 0.34 0.01 0.07 par:pas; +craonnais craonnais adj m 0 0.61 0 0.27 +craonnaise craonnais adj f s 0 0.61 0 0.07 +craonnaises craonnais adj f p 0 0.61 0 0.27 +crapahutait crapahuter ver 0.25 0.47 0 0.07 ind:imp:3s; +crapahutant crapahuter ver 0.25 0.47 0 0.07 par:pre; +crapahute crapahuter ver 0.25 0.47 0.01 0.07 ind:pre:1s;ind:pre:3s; +crapahuter crapahuter ver 0.25 0.47 0.19 0.14 inf; +crapahutons crapahuter ver 0.25 0.47 0 0.07 ind:pre:1p; +crapahuté crapahuter ver m s 0.25 0.47 0.05 0.07 par:pas; +crapaud crapaud nom m s 11.3 9.19 9.6 6.08 +crapaud_buffle crapaud_buffle nom m s 0.01 0.14 0.01 0 +crapauds crapaud nom m p 11.3 9.19 1.7 3.11 +crapaud_buffle crapaud_buffle nom m p 0.01 0.14 0 0.14 +crapoter crapoter ver 0.01 0 0.01 0 inf; +crapoteuse crapoteux adj f s 0.01 0.41 0 0.2 +crapoteuses crapoteux adj f p 0.01 0.41 0 0.07 +crapoteux crapoteux adj m 0.01 0.41 0.01 0.14 +crapouillot crapouillot nom m s 0.01 0.2 0.01 0.07 +crapouillots crapouillot nom m p 0.01 0.2 0 0.14 +craps craps nom m p 0.73 0.07 0.73 0.07 +crapule crapule nom f s 7.09 3.45 4.43 2.5 +crapulerie crapulerie nom f s 0.01 0.27 0.01 0.27 +crapules crapule nom f p 7.09 3.45 2.66 0.95 +crapuleuse crapuleux adj f s 0.36 2.36 0.03 0.95 +crapuleusement crapuleusement adv 0 0.14 0 0.14 +crapuleuses crapuleux adj f p 0.36 2.36 0 0.2 +crapuleux crapuleux adj m 0.36 2.36 0.33 1.22 +craqua craquer ver 21.23 37.16 0.01 1.69 ind:pas:3s; +craquage craquage nom m s 0.04 0 0.04 0 +craquaient craquer ver 21.23 37.16 0.06 1.96 ind:imp:3p; +craquais craquer ver 21.23 37.16 0.19 0 ind:imp:1s;ind:imp:2s; +craquait craquer ver 21.23 37.16 0.23 4.32 ind:imp:3s; +craquant craquant adj m s 1.75 3.45 0.9 1.42 +craquante craquant adj f s 1.75 3.45 0.66 0.88 +craquantes craquant adj f p 1.75 3.45 0.05 0.74 +craquants craquant adj m p 1.75 3.45 0.14 0.41 +craque craquer ver 21.23 37.16 4.4 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +craquela craqueler ver 0.05 2.36 0 0.07 ind:pas:3s; +craquelaient craqueler ver 0.05 2.36 0 0.07 ind:imp:3p; +craquelait craqueler ver 0.05 2.36 0 0.27 ind:imp:3s; +craquelant craqueler ver 0.05 2.36 0 0.2 par:pre; +craqueler craqueler ver 0.05 2.36 0.02 0.34 inf; +craquelin craquelin nom m s 1.01 0.07 0.4 0 +craquelins craquelin nom m p 1.01 0.07 0.61 0.07 +craquelle craqueler ver 0.05 2.36 0.01 0.14 ind:pre:3s; +craquellent craqueler ver 0.05 2.36 0 0.2 ind:pre:3p; +craquelure craquelure nom f s 0.14 1.15 0.14 0.27 +craquelures craquelure nom f p 0.14 1.15 0 0.88 +craquelèrent craqueler ver 0.05 2.36 0 0.07 ind:pas:3p; +craquelé craquelé adj m s 0.12 2.57 0.11 0.47 +craquelée craquelé adj f s 0.12 2.57 0.01 0.74 +craquelées craquelé adj f p 0.12 2.57 0 0.88 +craquelés craquelé adj m p 0.12 2.57 0 0.47 +craquement craquement nom m s 2.48 13.45 1.17 7.36 +craquements craquement nom m p 2.48 13.45 1.31 6.08 +craquent craquer ver 21.23 37.16 0.79 2.03 ind:pre:3p; +craquer craquer ver 21.23 37.16 8.52 15.74 inf; +craquera craquer ver 21.23 37.16 0.79 0.07 ind:fut:3s; +craqueraient craquer ver 21.23 37.16 0.01 0.07 cnd:pre:3p; +craquerait craquer ver 21.23 37.16 0.13 0.14 cnd:pre:3s; +craqueras craquer ver 21.23 37.16 0.04 0.07 ind:fut:2s; +craqueront craquer ver 21.23 37.16 0.16 0.14 ind:fut:3p; +craques craquer ver 21.23 37.16 1.07 0.14 ind:pre:2s; +craquette craqueter ver 0.02 0.07 0.02 0.07 ind:pre:3s; +craquez craquer ver 21.23 37.16 0.15 0.07 imp:pre:2p;ind:pre:2p; +craquiez craquer ver 21.23 37.16 0.12 0 ind:imp:2p; +craquèlement craquèlement nom m s 0 0.14 0 0.14 +craquèrent craquer ver 21.23 37.16 0 0.47 ind:pas:3p; +craqué craquer ver m s 21.23 37.16 4.39 3.04 par:pas; +craquée craquer ver f s 21.23 37.16 0.17 0 par:pas; +craquées craquer ver f p 21.23 37.16 0 0.07 par:pas; +crase crase nom f s 0.01 0 0.01 0 +crash crash nom m s 6.68 0.07 6.68 0.07 +crash_test crash_test nom m s 0.02 0 0.02 0 +crashe crasher ver 1.52 0 0.13 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crasher crasher ver 1.52 0 0.36 0 inf; +crashes crashe nom m p 0.02 0 0.02 0 +crashé crasher ver m s 1.52 0 0.97 0 par:pas; +crashée crasher ver f s 1.52 0 0.06 0 par:pas; +craspec craspec adj m s 0 0.07 0 0.07 +crasse crasse nom f s 3.29 13.45 3.16 13.11 +crasses crasse nom f p 3.29 13.45 0.14 0.34 +crasseuse crasseux adj f s 2.08 11.01 0.27 2.64 +crasseuses crasseux adj f p 2.08 11.01 0.06 1.22 +crasseux crasseux adj m 2.08 11.01 1.75 7.16 +crassier crassier nom m s 0.04 0.07 0.04 0 +crassiers crassier nom m p 0.04 0.07 0 0.07 +crassula crassula nom f s 0 0.14 0 0.14 +crataegus crataegus nom m 0 0.07 0 0.07 +cratère cratère nom m s 2.79 4.66 2.13 3.11 +cratères cratère nom m p 2.79 4.66 0.66 1.55 +cravachais cravacher ver 0.37 0.88 0 0.07 ind:imp:1s; +cravachait cravacher ver 0.37 0.88 0.1 0.2 ind:imp:3s; +cravachant cravacher ver 0.37 0.88 0 0.14 par:pre; +cravache cravache nom f s 0.58 3.72 0.56 3.58 +cravacher cravacher ver 0.37 0.88 0.16 0.34 inf; +cravaches cravache nom f p 0.58 3.72 0.02 0.14 +cravaché cravacher ver m s 0.37 0.88 0.04 0 par:pas; +cravachées cravacher ver f p 0.37 0.88 0 0.07 par:pas; +cravant cravant nom m s 0 0.27 0 0.07 +cravants cravant nom m p 0 0.27 0 0.2 +cravatage cravatage nom m s 0 0.07 0 0.07 +cravatait cravater ver 0.21 3.31 0 0.14 ind:imp:3s; +cravate cravate nom f s 17.92 34.12 15.99 27.7 +cravater cravater ver 0.21 3.31 0.03 0.54 inf; +cravates cravate nom f p 17.92 34.12 1.93 6.42 +cravateur cravateur nom m s 0 0.14 0 0.14 +cravatière cravatier nom f s 0 0.07 0 0.07 +cravaté cravater ver m s 0.21 3.31 0.06 1.01 par:pas; +cravatée cravater ver f s 0.21 3.31 0 0.14 par:pas; +cravatées cravater ver f p 0.21 3.31 0 0.14 par:pas; +cravatés cravater ver m p 0.21 3.31 0.03 0.74 par:pas; +crawl crawl nom m s 0 0.74 0 0.74 +crawlait crawler ver 0 0.2 0 0.07 ind:imp:3s; +crawlant crawler ver 0 0.2 0 0.14 par:pre; +crawlé crawlé adj m s 0 0.07 0 0.07 +crayeuse crayeux adj f s 0.03 1.96 0 0.61 +crayeuses crayeux adj f p 0.03 1.96 0.01 0.34 +crayeux crayeux adj m 0.03 1.96 0.01 1.01 +crayon crayon nom m s 10.97 30.47 8.08 25.47 +crayon_encre crayon_encre nom m s 0 0.27 0 0.27 +crayonna crayonner ver 0.14 1.82 0 0.07 ind:pas:3s; +crayonnage crayonnage nom m s 0 0.14 0 0.07 +crayonnages crayonnage nom m p 0 0.14 0 0.07 +crayonnait crayonner ver 0.14 1.82 0.03 0.54 ind:imp:3s; +crayonnant crayonner ver 0.14 1.82 0 0.34 par:pre; +crayonne crayonner ver 0.14 1.82 0.11 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crayonner crayonner ver 0.14 1.82 0 0.27 inf; +crayonneur crayonneur nom m s 0 0.14 0 0.07 +crayonneurs crayonneur nom m p 0 0.14 0 0.07 +crayonnez crayonner ver 0.14 1.82 0 0.07 ind:pre:2p; +crayonné crayonner ver m s 0.14 1.82 0 0.14 par:pas; +crayonnées crayonner ver f p 0.14 1.82 0 0.14 par:pas; +crayonnés crayonner ver m p 0.14 1.82 0 0.07 par:pas; +crayons crayon nom m p 10.97 30.47 2.88 5 +crayon_feutre crayon_feutre nom m p 0 0.14 0 0.14 +credo credo nom m 0.78 2.84 0.78 2.84 +creek creek nom m s 0.78 0.34 0.77 0.27 +creeks creek nom m p 0.78 0.34 0.01 0.07 +crematorium crematorium nom m s 0.22 0 0.22 0 +crescendo crescendo adv 0.46 0.61 0.46 0.61 +cresson cresson nom m s 0.24 1.01 0.24 0.95 +cressonnette cressonnette nom f s 0 0.07 0 0.07 +cressonnière cressonnière nom f s 0 0.14 0 0.07 +cressonnières cressonnière nom f p 0 0.14 0 0.07 +cressons cresson nom m p 0.24 1.01 0 0.07 +creton creton nom m s 0.01 1.69 0.01 0 +cretonne creton nom f s 0.01 1.69 0 1.55 +cretonnes creton nom f p 0.01 1.69 0 0.07 +cretons creton nom m p 0.01 1.69 0 0.07 +creusa creuser ver 25.11 64.19 0.26 1.96 ind:pas:3s; +creusai creuser ver 25.11 64.19 0.01 0.07 ind:pas:1s; +creusaient creuser ver 25.11 64.19 0.24 3.24 ind:imp:3p; +creusais creuser ver 25.11 64.19 0.36 0.81 ind:imp:1s;ind:imp:2s; +creusait creuser ver 25.11 64.19 0.32 7.36 ind:imp:3s; +creusant creuser ver 25.11 64.19 0.5 3.45 par:pre; +creusas creuser ver 25.11 64.19 0 0.07 ind:pas:2s; +creusassent creuser ver 25.11 64.19 0 0.07 sub:imp:3p; +creuse creuser ver 25.11 64.19 3.67 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +creusement creusement nom m s 0 0.41 0 0.34 +creusements creusement nom m p 0 0.41 0 0.07 +creusent creuser ver 25.11 64.19 0.86 3.24 ind:pre:3p; +creuser creuser ver 25.11 64.19 10.34 11.82 inf; +creusera creuser ver 25.11 64.19 0.09 0.14 ind:fut:3s; +creuserai creuser ver 25.11 64.19 0.58 0.14 ind:fut:1s; +creuseraient creuser ver 25.11 64.19 0.01 0.14 cnd:pre:3p; +creuserais creuser ver 25.11 64.19 0.03 0 cnd:pre:1s; +creuserait creuser ver 25.11 64.19 0.09 0.14 cnd:pre:3s; +creuseras creuser ver 25.11 64.19 0.15 0.2 ind:fut:2s; +creuserez creuser ver 25.11 64.19 0.05 0 ind:fut:2p; +creuserons creuser ver 25.11 64.19 0.02 0 ind:fut:1p; +creuseront creuser ver 25.11 64.19 0.07 0.14 ind:fut:3p; +creuses creux adj f p 5.9 25.14 0.97 7.16 +creuset creuset nom m s 0.21 1.15 0.21 1.08 +creusets creuset nom m p 0.21 1.15 0 0.07 +creuseur creuseur nom m s 0.01 0.07 0.01 0.07 +creusez creuser ver 25.11 64.19 1.88 0.54 imp:pre:2p;ind:pre:2p; +creusiez creuser ver 25.11 64.19 0.06 0 ind:imp:2p; +creusions creuser ver 25.11 64.19 0.01 0.07 ind:imp:1p; +creusons creuser ver 25.11 64.19 0.26 0.54 imp:pre:1p;ind:pre:1p; +creusèrent creuser ver 25.11 64.19 0.03 0.68 ind:pas:3p; +creusé creuser ver m s 25.11 64.19 3.35 11.01 par:pas; +creusée creuser ver f s 25.11 64.19 0.55 5.47 par:pas; +creusées creuser ver f p 25.11 64.19 0.36 3.92 par:pas; +creusés creuser ver m p 25.11 64.19 0.13 3.24 par:pas; +creux creux adj m 5.9 25.14 3.32 12.64 +creva crever ver 64.95 81.55 0.03 1.42 ind:pas:3s; +crevage crevage nom m s 0 0.07 0 0.07 +crevaient crever ver 64.95 81.55 0.12 1.82 ind:imp:3p; +crevais crever ver 64.95 81.55 0.17 1.22 ind:imp:1s;ind:imp:2s; +crevaison crevaison nom f s 0.63 0.2 0.6 0.14 +crevaisons crevaison nom f p 0.63 0.2 0.03 0.07 +crevait crever ver 64.95 81.55 0.34 4.19 ind:imp:3s; +crevant crevant adj m s 1.03 0.74 0.74 0.61 +crevante crevant adj f s 1.03 0.74 0.29 0.07 +crevants crevant adj m p 1.03 0.74 0 0.07 +crevard crevard nom m s 0.29 0.74 0.04 0.2 +crevarde crevard nom f s 0.29 0.74 0 0.2 +crevards crevard nom m p 0.29 0.74 0.26 0.34 +crevasse crevasse nom f s 1.16 4.86 0.92 2.3 +crevassent crevasser ver 0.06 2.57 0 0.14 ind:pre:3p; +crevasser crevasser ver 0.06 2.57 0 0.14 inf; +crevasses crevasse nom f p 1.16 4.86 0.24 2.57 +crevassé crevasser ver m s 0.06 2.57 0.01 0.41 par:pas; +crevassée crevasser ver f s 0.06 2.57 0.03 0.47 par:pas; +crevassées crevasser ver f p 0.06 2.57 0.01 0.88 par:pas; +crevassés crevasser ver m p 0.06 2.57 0 0.47 par:pas; +crever crever ver 64.95 81.55 25.27 29.05 inf;; +crevette crevette nom f s 9.03 5 1.13 1.62 +crevettes crevette nom f p 9.03 5 7.9 3.38 +crevettier crevettier nom m s 0.16 0 0.12 0 +crevettiers crevettier nom m p 0.16 0 0.04 0 +crevez crever ver 64.95 81.55 0.74 0.27 imp:pre:2p;ind:pre:2p; +creviez crever ver 64.95 81.55 0.04 0.07 ind:imp:2p; +crevions crever ver 64.95 81.55 0 0.07 ind:imp:1p; +crevons crever ver 64.95 81.55 0.27 0.07 imp:pre:1p;ind:pre:1p; +crevotant crevoter ver 0 0.07 0 0.07 par:pre; +crevure crevure nom f s 0.52 0.34 0.47 0.34 +crevures crevure nom f p 0.52 0.34 0.04 0 +crevât crever ver 64.95 81.55 0 0.07 sub:imp:3s; +crevèrent crever ver 64.95 81.55 0 0.34 ind:pas:3p; +crevé crever ver m s 64.95 81.55 9.34 8.65 par:pas; +crevée crever ver f s 64.95 81.55 5.1 4.12 par:pas; +crevées crever ver f p 64.95 81.55 0.47 1.22 par:pas; +crevés crever ver m p 64.95 81.55 1.84 6.96 par:pas; +cri cri nom m s 45.58 155.41 18.79 71.55 +cria crier ver 116.94 239.73 1.2 55.74 ind:pas:3s; +criai crier ver 116.94 239.73 0.02 2.57 ind:pas:1s; +criaient crier ver 116.94 239.73 2.05 9.05 ind:imp:3p; +criaillaient criailler ver 0.23 0.88 0.1 0.14 ind:imp:3p; +criaillait criailler ver 0.23 0.88 0 0.14 ind:imp:3s; +criaillant criailler ver 0.23 0.88 0 0.27 par:pre; +criaillement criaillement nom m s 0 0.07 0 0.07 +criaillent criailler ver 0.23 0.88 0.14 0.14 ind:pre:3p; +criailler criailler ver 0.23 0.88 0 0.2 inf; +criaillerie criaillerie nom f s 0 1.69 0 0.2 +criailleries criaillerie nom f p 0 1.69 0 1.49 +criais crier ver 116.94 239.73 1.89 2.09 ind:imp:1s;ind:imp:2s; +criait crier ver 116.94 239.73 6.37 26.35 ind:imp:3s; +criant crier ver 116.94 239.73 3.82 20.95 par:pre; +criante criant adj f s 0.38 3.51 0.06 0.68 +criantes criant adj f p 0.38 3.51 0.14 0.2 +criard criard adj m s 0.95 6.49 0.17 1.49 +criarde criard adj f s 0.95 6.49 0.31 1.69 +criardes criard adj f p 0.95 6.49 0.23 1.96 +criards criard adj m p 0.95 6.49 0.23 1.35 +crib crib nom m s 0.04 0 0.04 0 +cribla cribler ver 1.86 6.69 0.01 0.07 ind:pas:3s; +criblage criblage nom m s 0.03 0.14 0.03 0.14 +criblaient cribler ver 1.86 6.69 0 0.47 ind:imp:3p; +criblait cribler ver 1.86 6.69 0 0.2 ind:imp:3s; +criblant cribler ver 1.86 6.69 0 0.74 par:pre; +crible crible nom m s 0.92 1.15 0.91 1.08 +criblent cribler ver 1.86 6.69 0 0.2 ind:pre:3p; +cribler cribler ver 1.86 6.69 0.07 0.2 inf; +cribles crible nom m p 0.92 1.15 0.01 0.07 +criblé cribler ver m s 1.86 6.69 0.92 2.09 par:pas; +criblée cribler ver f s 1.86 6.69 0.2 1.01 par:pas; +criblées cribler ver f p 1.86 6.69 0.16 0.61 par:pas; +criblés cribler ver m p 1.86 6.69 0.26 0.61 par:pas; +cric cric nom m s 1.2 1.42 1.18 1.08 +cric_crac cric_crac ono 0 0.07 0 0.07 +cricket cricket nom m s 2.94 0.41 2.92 0.41 +crickets cricket nom m p 2.94 0.41 0.02 0 +cricoïde cricoïde adj s 0.12 0 0.12 0 +cricri cricri nom m s 0.28 1.42 0.28 1.28 +cricris cricri nom m p 0.28 1.42 0 0.14 +crics cric nom m p 1.2 1.42 0.03 0.34 +crie crier ver 116.94 239.73 35.65 40.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crient crier ver 116.94 239.73 5.35 5.61 ind:pre:3p; +crier crier ver 116.94 239.73 31.49 47.3 ind:pre:2p;inf; +criera crier ver 116.94 239.73 0.75 0.2 ind:fut:3s; +crierai crier ver 116.94 239.73 0.99 0.27 ind:fut:1s; +crieraient crier ver 116.94 239.73 0.03 0.2 cnd:pre:3p; +crierais crier ver 116.94 239.73 0.28 0 cnd:pre:1s;cnd:pre:2s; +crierait crier ver 116.94 239.73 0.07 0.81 cnd:pre:3s; +crieras crier ver 116.94 239.73 0.34 0.2 ind:fut:2s; +crieront crier ver 116.94 239.73 0.42 0.14 ind:fut:3p; +cries crier ver 116.94 239.73 5.64 0.41 ind:pre:2s;sub:pre:2s; +crieur crieur nom m s 0.34 2.09 0.27 0.95 +crieurs crieur nom m p 0.34 2.09 0.04 1.08 +crieuse crieur nom f s 0.34 2.09 0.03 0.07 +criez crier ver 116.94 239.73 6.57 0.74 imp:pre:2p;ind:pre:2p; +criions crier ver 116.94 239.73 0 0.14 ind:imp:1p; +crime crime nom m s 104.07 45.07 81.77 29.32 +crimes crime nom m p 104.07 45.07 22.3 15.74 +criminaliser criminaliser ver 0.03 0 0.03 0 inf; +criminaliste criminaliste nom s 0.1 0 0.1 0 +criminalistique criminalistique adj s 0.01 0 0.01 0 +criminalité criminalité nom f s 1.91 0.61 1.91 0.61 +criminel criminel nom m s 35.62 8.04 17.37 3.45 +criminelle criminel adj f s 19.06 8.45 6.36 3.11 +criminellement criminellement adv 0.02 0.07 0.02 0.07 +criminelles criminel adj f p 19.06 8.45 1.82 1.15 +criminels criminel nom m p 35.62 8.04 13.9 3.38 +criminologie criminologie nom f s 0.48 0.07 0.48 0.07 +criminologiste criminologiste nom s 0.03 0.14 0.03 0.14 +criminologue criminologue nom s 0.35 0 0.3 0 +criminologues criminologue nom p 0.35 0 0.05 0 +crin crin nom m s 0.46 6.22 0.32 3.92 +crincrin crincrin nom m s 0.05 0.27 0.04 0.2 +crincrins crincrin nom m p 0.05 0.27 0.01 0.07 +crinière crinière nom f s 2.28 10.27 2.27 8.92 +crinières crinière nom f p 2.28 10.27 0.01 1.35 +crinoline crinoline nom f s 0.15 0.47 0.15 0.14 +crinolines crinoline nom f p 0.15 0.47 0 0.34 +crins crin nom m p 0.46 6.22 0.14 2.3 +crions crier ver 116.94 239.73 0.79 0.14 imp:pre:1p;ind:pre:1p; +crique crique nom f s 1.1 5.2 1.06 3.78 +criques crique nom f p 1.1 5.2 0.04 1.42 +criquet criquet nom m s 1.29 2.36 0.57 0.34 +criquets criquet nom m p 1.29 2.36 0.72 2.03 +cris cri nom m p 45.58 155.41 26.79 83.85 +cris_craft cris_craft nom m s 0 0.07 0 0.07 +crise crise nom f s 50.15 49.73 43.51 37.97 +crises crise nom f p 50.15 49.73 6.64 11.76 +crispa crisper ver 2.05 30.41 0 2.36 ind:pas:3s; +crispai crisper ver 2.05 30.41 0 0.14 ind:pas:1s; +crispaient crisper ver 2.05 30.41 0 1.01 ind:imp:3p; +crispait crisper ver 2.05 30.41 0.01 3.18 ind:imp:3s; +crispant crispant adj m s 0.07 0.41 0.06 0.27 +crispante crispant adj f s 0.07 0.41 0 0.07 +crispantes crispant adj f p 0.07 0.41 0.01 0.07 +crispation crispation nom f s 0.04 3.92 0.04 3.31 +crispations crispation nom f p 0.04 3.92 0 0.61 +crispe crisper ver 2.05 30.41 0.39 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crispent crisper ver 2.05 30.41 0.14 0.41 ind:pre:3p; +crisper crisper ver 2.05 30.41 0.33 1.28 inf; +crispes crisper ver 2.05 30.41 0 0.14 ind:pre:2s; +crispin crispin nom m s 0.1 0.2 0.1 0.2 +crispèrent crisper ver 2.05 30.41 0 0.41 ind:pas:3p; +crispé crisper ver m s 2.05 30.41 0.53 6.28 par:pas; +crispée crisper ver f s 2.05 30.41 0.5 5 par:pas; +crispées crisper ver f p 2.05 30.41 0.02 3.51 par:pas; +crispés crisper ver m p 2.05 30.41 0.13 3.24 par:pas; +crissa crisser ver 1.46 11.49 0 0.41 ind:pas:3s; +crissaient crisser ver 1.46 11.49 0.01 1.62 ind:imp:3p; +crissait crisser ver 1.46 11.49 0 1.62 ind:imp:3s; +crissant crisser ver 1.46 11.49 0.02 2.09 par:pre; +crisse crisser ver 1.46 11.49 1.29 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crissement crissement nom m s 1.77 9.32 1.18 7.77 +crissements crissement nom m p 1.77 9.32 0.59 1.55 +crissent crisser ver 1.46 11.49 0.02 0.95 ind:pre:3p; +crisser crisser ver 1.46 11.49 0.09 2.57 inf; +crissèrent crisser ver 1.46 11.49 0 0.2 ind:pas:3p; +crissé crisser ver m s 1.46 11.49 0.02 0.2 par:pas; +cristal cristal nom m s 10.22 18.51 6.34 13.72 +cristallerie cristallerie nom f s 0.01 0.07 0.01 0 +cristalleries cristallerie nom f p 0.01 0.07 0 0.07 +cristallin cristallin adj m s 0.35 4.59 0.04 1.69 +cristalline cristallin adj f s 0.35 4.59 0.26 1.82 +cristallines cristallin adj f p 0.35 4.59 0.05 0.54 +cristallins cristallin nom m p 0.17 0.74 0.14 0 +cristallisaient cristalliser ver 0.41 2.03 0 0.07 ind:imp:3p; +cristallisait cristalliser ver 0.41 2.03 0 0.14 ind:imp:3s; +cristallisation cristallisation nom f s 0.2 0.27 0.2 0.27 +cristallise cristalliser ver 0.41 2.03 0.01 0.41 ind:pre:3s; +cristallisent cristalliser ver 0.41 2.03 0.14 0.2 ind:pre:3p; +cristalliser cristalliser ver 0.41 2.03 0.13 0.34 inf; +cristallisera cristalliser ver 0.41 2.03 0.01 0 ind:fut:3s; +cristallisèrent cristalliser ver 0.41 2.03 0 0.14 ind:pas:3p; +cristallisé cristalliser ver m s 0.41 2.03 0.09 0.34 par:pas; +cristallisée cristallisé adj f s 0.18 0.14 0.14 0 +cristallisées cristallisé adj f p 0.18 0.14 0 0.07 +cristallisés cristalliser ver m p 0.41 2.03 0.01 0.07 par:pas; +cristallographie cristallographie nom f s 0 0.07 0 0.07 +cristallomancie cristallomancie nom f s 0.02 0 0.02 0 +cristalloïde cristalloïde nom s 0.03 0 0.03 0 +cristaux cristal nom m p 10.22 18.51 3.88 4.8 +cristi cristi ono 0.15 0.07 0.15 0.07 +criticaillent criticailler ver 0 0.07 0 0.07 ind:pre:3p; +critiqua critiquer ver 10.38 7.43 0.01 0.14 ind:pas:3s; +critiquable critiquable adj s 0.02 0.07 0.01 0.07 +critiquables critiquable adj p 0.02 0.07 0.01 0 +critiquaient critiquer ver 10.38 7.43 0.04 0.14 ind:imp:3p; +critiquais critiquer ver 10.38 7.43 0.38 0.14 ind:imp:1s;ind:imp:2s; +critiquait critiquer ver 10.38 7.43 0.58 0.95 ind:imp:3s; +critiquant critiquer ver 10.38 7.43 0.06 0.2 par:pre; +critique critique adj s 9.34 10.47 7.83 8.85 +critiquent critiquer ver 10.38 7.43 0.18 0 ind:pre:3p; +critiquer critiquer ver 10.38 7.43 4.39 3.51 inf; +critiquera critiquer ver 10.38 7.43 0.09 0 ind:fut:3s; +critiquerais critiquer ver 10.38 7.43 0.01 0.07 cnd:pre:1s; +critiquerait critiquer ver 10.38 7.43 0 0.07 cnd:pre:3s; +critiqueras critiquer ver 10.38 7.43 0.01 0 ind:fut:2s; +critiques critique nom p 13.93 20.54 7.24 9.39 +critiquez critiquer ver 10.38 7.43 0.54 0 imp:pre:2p;ind:pre:2p; +critiquiez critiquer ver 10.38 7.43 0.03 0 ind:imp:2p; +critiquons critiquer ver 10.38 7.43 0.03 0 imp:pre:1p; +critiquât critiquer ver 10.38 7.43 0 0.07 sub:imp:3s; +critiqué critiquer ver m s 10.38 7.43 0.96 0.74 par:pas; +critiquée critiquer ver f s 10.38 7.43 0.18 0.07 par:pas; +critiquées critiquer ver f p 10.38 7.43 0.05 0.07 par:pas; +critiqués critiquer ver m p 10.38 7.43 0.08 0.07 par:pas; +critère critère nom m s 3.55 1.89 1.06 0.54 +critères critère nom m p 3.55 1.89 2.49 1.35 +critérium critérium nom m s 0.38 0.34 0.38 0.27 +critériums critérium nom m p 0.38 0.34 0 0.07 +criât crier ver 116.94 239.73 0 0.34 sub:imp:3s; +crièrent crier ver 116.94 239.73 0.06 1.89 ind:pas:3p; +crié crier ver m s 116.94 239.73 13 23.04 par:pas; +criée crier ver f s 116.94 239.73 0.17 0.07 par:pas; +criées crier ver f p 116.94 239.73 0 0.07 par:pas; +criés crier ver m p 116.94 239.73 0.01 0.61 par:pas; +croa_croa croa_croa adv 0 0.41 0 0.14 +croa_croa croa_croa adv 0 0.41 0 0.27 +croassa croasser ver 0.19 0.47 0 0.14 ind:pas:3s; +croassaient croasser ver 0.19 0.47 0 0.14 ind:imp:3p; +croassait croasser ver 0.19 0.47 0 0.07 ind:imp:3s; +croassant croassant adj m s 0.01 0.07 0.01 0.07 +croasse croasser ver 0.19 0.47 0.12 0 imp:pre:2s;ind:pre:3s; +croassement croassement nom m s 0.02 0.27 0.02 0.07 +croassements croassement nom m p 0.02 0.27 0 0.2 +croassent croasser ver 0.19 0.47 0.04 0.07 ind:pre:3p; +croasser croasser ver 0.19 0.47 0.03 0.07 inf; +croate croate adj s 0.93 0.54 0.51 0.34 +croates croate adj p 0.93 0.54 0.42 0.2 +crobard crobard nom m s 0 0.27 0 0.27 +croc croc nom m s 3.19 7.84 0.66 1.15 +croc_en_jambe croc_en_jambe nom m s 0.16 0.61 0.16 0.61 +crocha crocher ver 0.01 1.08 0 0.14 ind:pas:3s; +crochaient crocher ver 0.01 1.08 0 0.2 ind:imp:3p; +crochait crocher ver 0.01 1.08 0 0.07 ind:imp:3s; +croche croche nom f s 0.26 0.41 0.07 0.34 +croche_patte croche_patte nom m s 0.17 0.34 0.17 0.34 +croche_pied croche_pied nom m s 0.56 0.68 0.43 0.41 +croche_pied croche_pied nom m p 0.56 0.68 0.14 0.27 +crochent crocher ver 0.01 1.08 0 0.07 ind:pre:3p; +crocher crocher ver 0.01 1.08 0 0.27 inf; +croches croche nom f p 0.26 0.41 0.19 0.07 +crochet crochet nom m s 10.69 15.81 8.21 9.8 +crocheta crocheter ver 0.66 1.55 0 0.2 ind:pas:3s; +crochetage crochetage nom m s 0.04 0 0.04 0 +crochetaient crocheter ver 0.66 1.55 0 0.14 ind:imp:3p; +crochetait crocheter ver 0.66 1.55 0 0.14 ind:imp:3s; +crochetant crocheter ver 0.66 1.55 0 0.07 par:pre; +crocheter crocheter ver 0.66 1.55 0.42 0.47 inf; +crocheteur crocheteur nom m s 0.29 0.07 0.29 0 +crocheteurs crocheteur nom m p 0.29 0.07 0 0.07 +crochets crochet nom m p 10.69 15.81 2.47 6.01 +crocheté crocheter ver m s 0.66 1.55 0.22 0.27 par:pas; +crochetées crocheter ver f p 0.66 1.55 0.01 0.07 par:pas; +crochetés crocheter ver m p 0.66 1.55 0 0.07 par:pas; +crochu crochu adj m s 0.83 3.72 0.33 1.49 +crochue crochu adj f s 0.83 3.72 0.13 0.47 +crochues crochu adj f p 0.83 3.72 0.02 0.41 +crochus crochu adj m p 0.83 3.72 0.35 1.35 +crochètent crocheter ver 0.66 1.55 0.01 0.14 ind:pre:3p; +croché crocher ver m s 0.01 1.08 0.01 0.27 par:pas; +crochées crocher ver f p 0.01 1.08 0 0.07 par:pas; +croco croco nom m s 1.51 1.35 0.75 1.28 +crocodile crocodile nom m s 9.26 5.2 6.14 4.05 +crocodiles crocodile nom m p 9.26 5.2 3.12 1.15 +crocos croco nom m p 1.51 1.35 0.76 0.07 +crocs croc nom m p 3.19 7.84 2.53 6.69 +crocs_en_jambe crocs_en_jambe nom m p 0 0.2 0 0.2 +crocus crocus nom m 0.04 0.95 0.04 0.95 +croie croire ver_sup 1711.99 947.23 5.43 3.85 sub:pre:1s;sub:pre:3s; +croient croire ver_sup 1711.99 947.23 29.38 19.19 ind:pre:3p; +croies croire ver_sup 1711.99 947.23 3.1 0.61 sub:pre:2s; +croira croire ver_sup 1711.99 947.23 8.27 3.18 ind:fut:3s; +croirai croire ver_sup 1711.99 947.23 2.55 1.49 ind:fut:1s; +croiraient croire ver_sup 1711.99 947.23 0.7 0.47 cnd:pre:3p; +croirais croire ver_sup 1711.99 947.23 4.4 2.5 cnd:pre:1s;cnd:pre:2s; +croirait croire ver_sup 1711.99 947.23 12.22 13.72 cnd:pre:3s; +croiras croire ver_sup 1711.99 947.23 3.87 1.28 ind:fut:2s; +croire croire ver_sup 1711.99 947.23 193.37 167.91 inf;;inf;;inf;; +croirez croire ver_sup 1711.99 947.23 2.77 1.82 ind:fut:2p; +croiriez croire ver_sup 1711.99 947.23 1.71 0.88 cnd:pre:2p; +croirions croire ver_sup 1711.99 947.23 0 0.34 cnd:pre:1p; +croirons croire ver_sup 1711.99 947.23 0.17 0.14 ind:fut:1p; +croiront croire ver_sup 1711.99 947.23 4.14 0.81 ind:fut:3p; +crois croire ver_sup 1711.99 947.23 904.45 305.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +croisa croiser ver 28.84 76.35 0.05 9.05 ind:pas:3s; +croisade croisade nom f s 4.21 6.15 3.23 3.18 +croisades croisade nom f p 4.21 6.15 0.98 2.97 +croisai croiser ver 28.84 76.35 0.05 1.08 ind:pas:1s; +croisaient croiser ver 28.84 76.35 0.1 5.07 ind:imp:3p; +croisais croiser ver 28.84 76.35 0.13 1.62 ind:imp:1s;ind:imp:2s; +croisait croiser ver 28.84 76.35 0.47 6.62 ind:imp:3s; +croisant croiser ver 28.84 76.35 0.26 5.34 par:pre; +croise croiser ver 28.84 76.35 6.65 8.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croisement croisement nom m s 2.7 6.22 2.58 4.93 +croisements croisement nom m p 2.7 6.22 0.12 1.28 +croisent croiser ver 28.84 76.35 1.16 5 ind:pre:3p; +croiser croiser ver 28.84 76.35 4.76 7.57 inf;; +croisera croiser ver 28.84 76.35 0.8 0 ind:fut:3s; +croiserai croiser ver 28.84 76.35 0.16 0 ind:fut:1s; +croiseraient croiser ver 28.84 76.35 0.05 0.2 cnd:pre:3p; +croiserais croiser ver 28.84 76.35 0.01 0.2 cnd:pre:1s; +croiserait croiser ver 28.84 76.35 0.02 0.27 cnd:pre:3s; +croiserez croiser ver 28.84 76.35 0.16 0.07 ind:fut:2p; +croiserons croiser ver 28.84 76.35 0.02 0.07 ind:fut:1p; +croiseront croiser ver 28.84 76.35 0.11 0.14 ind:fut:3p; +croises croiser ver 28.84 76.35 1.27 0.2 ind:pre:2s; +croisette croisette nom f s 0 1.01 0 1.01 +croiseur croiseur nom m s 2.46 4.59 1.81 1.69 +croiseurs croiseur nom m p 2.46 4.59 0.65 2.91 +croisez croiser ver 28.84 76.35 1.42 0.2 imp:pre:2p;ind:pre:2p; +croisillon croisillon nom m s 0.01 2.03 0 0.47 +croisillons croisillon nom m p 0.01 2.03 0.01 1.55 +croisions croiser ver 28.84 76.35 0.34 0.95 ind:imp:1p; +croisière croisière nom f s 5.47 5.81 5.05 5.07 +croisières croisière nom f p 5.47 5.81 0.42 0.74 +croisons croiser ver 28.84 76.35 0.3 1.22 imp:pre:1p;ind:pre:1p; +croissaient croître ver 4.79 10.34 0 0.81 ind:imp:3p; +croissais croître ver 4.79 10.34 0.01 0.07 ind:imp:1s; +croissait croître ver 4.79 10.34 0.33 1.28 ind:imp:3s; +croissance croissance nom f s 4.16 3.99 4.16 3.92 +croissances croissance nom f p 4.16 3.99 0 0.07 +croissant croissant nom m s 3.85 18.72 1.54 6.96 +croissante croissant adj f s 1.28 7.43 0.66 3.65 +croissantes croissant adj f p 1.28 7.43 0.02 0.47 +croissants croissant nom m p 3.85 18.72 2.31 11.76 +croisse croître ver 4.79 10.34 0.03 0.07 sub:pre:3s; +croissent croître ver 4.79 10.34 0.33 0.27 ind:pre:3p; +croissez croître ver 4.79 10.34 0.11 0.14 imp:pre:2p; +croisâmes croiser ver 28.84 76.35 0.01 0.68 ind:pas:1p; +croisât croiser ver 28.84 76.35 0 0.07 sub:imp:3s; +croisèrent croiser ver 28.84 76.35 0.02 3.38 ind:pas:3p; +croisé croiser ver m s 28.84 76.35 6.38 8.24 par:pas; +croisée croiser ver f s 28.84 76.35 0.92 1.01 par:pas; +croisées croiser ver f p 28.84 76.35 0.34 4.46 par:pas; +croisés croisé adj m p 4.62 17.23 3.76 9.12 +croit croire ver_sup 1711.99 947.23 68.72 60 ind:pre:3s; +croix croix nom f 29.1 71.62 29.1 71.62 +cromlech cromlech nom m s 0.02 0.14 0.02 0.07 +cromlechs cromlech nom m p 0.02 0.14 0 0.07 +cromorne cromorne nom m s 0 0.54 0 0.54 +cronstadt cronstadt nom s 0 0.07 0 0.07 +crooner crooner nom m s 0.25 0.14 0.23 0.07 +crooners crooner nom m p 0.25 0.14 0.02 0.07 +croqua croquer ver 5.23 12.64 0 0.81 ind:pas:3s; +croquai croquer ver 5.23 12.64 0 0.14 ind:pas:1s; +croquaient croquer ver 5.23 12.64 0 0.34 ind:imp:3p; +croquais croquer ver 5.23 12.64 0 0.2 ind:imp:1s; +croquait croquer ver 5.23 12.64 0.02 1.01 ind:imp:3s; +croquant croquant adj m s 0.43 0.68 0.34 0.2 +croquante croquant adj f s 0.43 0.68 0.04 0.07 +croquantes croquant adj f p 0.43 0.68 0.03 0.2 +croquants croquant nom m p 0.23 1.42 0.02 0.61 +croque croquer ver 5.23 12.64 1 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croque_madame croque_madame nom m s 0.03 0 0.03 0 +croque_mitaine croque_mitaine nom m s 0.61 0.2 0.61 0.2 +croque_monsieur croque_monsieur nom m 0.28 0.14 0.28 0.14 +croque_mort croque_mort nom m s 2.2 3.31 1.81 1.28 +croque_mort croque_mort nom m p 2.2 3.31 0.39 2.03 +croquemitaine croquemitaine nom m s 0.39 0.47 0.39 0.34 +croquemitaines croquemitaine nom m p 0.39 0.47 0 0.14 +croquemort croquemort nom m s 0.08 0.14 0.08 0 +croquemorts croquemort nom m p 0.08 0.14 0 0.14 +croquenots croquenot nom m p 0 0.95 0 0.95 +croquent croquer ver 5.23 12.64 0.05 0.34 ind:pre:3p; +croquer croquer ver 5.23 12.64 2.59 3.99 inf; +croquera croquer ver 5.23 12.64 0.01 0.14 ind:fut:3s; +croquerai croquer ver 5.23 12.64 0.01 0.07 ind:fut:1s; +croqueraient croquer ver 5.23 12.64 0.01 0.07 cnd:pre:3p; +croquerais croquer ver 5.23 12.64 0.02 0.07 cnd:pre:1s; +croquerait croquer ver 5.23 12.64 0.02 0.61 cnd:pre:3s; +croquerons croquer ver 5.23 12.64 0 0.07 ind:fut:1p; +croques croquer ver 5.23 12.64 0.22 0.2 ind:pre:2s; +croquet croquet nom m s 0.42 1.49 0.42 1.49 +croqueton croqueton nom m s 0 0.14 0 0.07 +croquetons croqueton nom m p 0 0.14 0 0.07 +croquette croquette nom f s 2.04 0.27 0.18 0.07 +croquettes croquette nom f p 2.04 0.27 1.86 0.2 +croqueur croqueur nom m s 0.17 0.07 0.02 0 +croqueuse croqueur nom f s 0.17 0.07 0.14 0.07 +croquez croquer ver 5.23 12.64 0.16 0.07 imp:pre:2p;ind:pre:2p; +croquignol croquignol adj m s 0.03 0.27 0.03 0.27 +croquignolet croquignolet adj m s 0.02 0.27 0.01 0.14 +croquignolets croquignolet adj m p 0.02 0.27 0.01 0.14 +croquis croquis nom m 2.63 7.64 2.63 7.64 +croquis_minute croquis_minute nom m 0 0.07 0 0.07 +croquons croquer ver 5.23 12.64 0.01 0.07 imp:pre:1p;ind:pre:1p; +croquèrent croquer ver 5.23 12.64 0 0.14 ind:pas:3p; +croqué croquer ver m s 5.23 12.64 0.34 1.76 par:pas; +croquée croquer ver f s 5.23 12.64 0.33 0.2 par:pas; +croquées croquer ver f p 5.23 12.64 0.1 0.07 par:pas; +croqués croquer ver m p 5.23 12.64 0.01 0 par:pas; +crosne crosne nom m s 0 0.27 0 0.07 +crosnes crosne nom m p 0 0.27 0 0.2 +cross cross nom m 0.22 0.41 0.22 0.41 +cross_country cross_country nom m s 0.05 0.34 0.05 0.34 +crosse crosse nom f s 2.27 11.96 1.96 10.14 +crosser crosser ver 0.14 0 0.14 0 inf; +crosses crosse nom f p 2.27 11.96 0.31 1.82 +crossman crossman nom m s 0.01 0 0.01 0 +crossé crossé adj m s 0 0.07 0 0.07 +crotale crotale nom m s 0.82 0.95 0.62 0.88 +crotales crotale nom m p 0.82 0.95 0.2 0.07 +croton croton nom m s 0.28 0.07 0.28 0.07 +crottait crotter ver 0.47 1.01 0 0.14 ind:imp:3s; +crotte crotte nom f s 6.52 6.76 3.46 3.51 +crotter crotter ver 0.47 1.01 0.02 0.14 inf; +crottes crotte nom f p 6.52 6.76 3.06 3.24 +crottin crottin nom m s 0.58 2.57 0.57 2.3 +crottins crottin nom m p 0.58 2.57 0.01 0.27 +crotté crotté adj m s 0.23 0.95 0.18 0.27 +crottée crotter ver f s 0.47 1.01 0.02 0.14 par:pas; +crottées crotter ver f p 0.47 1.01 0.11 0 par:pas; +crottés crotter ver m p 0.47 1.01 0.29 0 par:pas; +crouillat crouillat nom m s 0 0.88 0 0.27 +crouillats crouillat nom m p 0 0.88 0 0.61 +crouille crouille adv 0 0.07 0 0.07 +croula crouler ver 2.37 8.24 0 0.14 ind:pas:3s; +croulaient crouler ver 2.37 8.24 0 0.95 ind:imp:3p; +croulait crouler ver 2.37 8.24 0.14 1.22 ind:imp:3s; +croulant croulant nom m s 0.92 0.74 0.6 0.27 +croulante croulant adj f s 0.8 3.72 0.26 0.81 +croulantes croulant adj f p 0.8 3.72 0 0.61 +croulants croulant nom m p 0.92 0.74 0.33 0.2 +croule crouler ver 2.37 8.24 1.16 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croulement croulement nom m s 0 0.07 0 0.07 +croulent crouler ver 2.37 8.24 0.26 0.41 ind:pre:3p; +crouler crouler ver 2.37 8.24 0.43 2.91 inf; +croulera crouler ver 2.37 8.24 0.03 0 ind:fut:3s; +croulerai crouler ver 2.37 8.24 0.01 0 ind:fut:1s; +crouleraient crouler ver 2.37 8.24 0 0.07 cnd:pre:3p; +croulerait crouler ver 2.37 8.24 0.02 0.07 cnd:pre:3s; +crouleras crouler ver 2.37 8.24 0.11 0 ind:fut:2s; +croulerons crouler ver 2.37 8.24 0.01 0 ind:fut:1p; +crouleront crouler ver 2.37 8.24 0.01 0.07 ind:fut:3p; +croulons crouler ver 2.37 8.24 0.16 0.07 ind:pre:1p; +croulât crouler ver 2.37 8.24 0 0.07 sub:imp:3s; +croulèrent crouler ver 2.37 8.24 0 0.14 ind:pas:3p; +croulé crouler ver m s 2.37 8.24 0.02 0.41 par:pas; +croulée crouler ver f s 2.37 8.24 0 0.07 par:pas; +croulés crouler ver m p 2.37 8.24 0 0.07 par:pas; +croup croup nom m s 0.09 0.61 0.09 0.61 +croupade croupade nom f s 0 0.14 0 0.14 +croupe croupe nom f s 0.96 14.05 0.64 10.95 +croupes croupe nom f p 0.96 14.05 0.33 3.11 +croupi croupir ver m s 1.74 4.93 0.1 0.34 par:pas; +croupie croupi adj f s 0.03 1.42 0.02 1.01 +croupier croupier nom m s 0.63 0.61 0.33 0.54 +croupiers croupier nom m p 0.63 0.61 0.29 0.07 +croupies croupi adj f p 0.03 1.42 0 0.14 +croupion croupion nom m s 0.52 1.08 0.37 0.88 +croupionne croupionner ver 0 0.07 0 0.07 ind:pre:3s; +croupions croupion nom m p 0.52 1.08 0.15 0.2 +croupir croupir ver 1.74 4.93 0.86 1.49 inf; +croupira croupir ver 1.74 4.93 0.02 0.07 ind:fut:3s; +croupis croupir ver 1.74 4.93 0.15 0.07 ind:pre:1s;ind:pre:2s; +croupissaient croupir ver 1.74 4.93 0.01 0.41 ind:imp:3p; +croupissais croupir ver 1.74 4.93 0.23 0.07 ind:imp:1s;ind:imp:2s; +croupissait croupir ver 1.74 4.93 0 1.08 ind:imp:3s; +croupissant croupissant adj m s 0.01 0.81 0.01 0.2 +croupissante croupissant adj f s 0.01 0.81 0 0.47 +croupissantes croupissant adj f p 0.01 0.81 0 0.14 +croupissent croupir ver 1.74 4.93 0.16 0.27 ind:pre:3p; +croupissez croupir ver 1.74 4.93 0.01 0 ind:pre:2p; +croupissoir croupissoir nom m s 0 0.07 0 0.07 +croupissure croupissure nom f s 0 0.2 0 0.2 +croupit croupir ver 1.74 4.93 0.18 0.61 ind:pre:3s;ind:pas:3s; +croupière croupière nom f s 0.09 0.27 0.06 0.2 +croupières croupière nom f p 0.09 0.27 0.03 0.07 +croupon croupon nom m s 0 0.2 0 0.2 +croustade croustade nom f s 0.02 0.2 0.02 0.07 +croustades croustade nom f p 0.02 0.2 0 0.14 +croustillaient croustiller ver 0.11 0.27 0 0.07 ind:imp:3p; +croustillait croustiller ver 0.11 0.27 0 0.07 ind:imp:3s; +croustillance croustillance nom f s 0 0.07 0 0.07 +croustillant croustillant adj m s 1.93 1.96 0.95 0.47 +croustillante croustillant adj f s 1.93 1.96 0.45 0.61 +croustillantes croustillant adj f p 1.93 1.96 0.14 0.27 +croustillants croustillant adj m p 1.93 1.96 0.38 0.61 +croustille croustille nom f s 0.05 0 0.03 0 +croustillent croustiller ver 0.11 0.27 0.01 0.07 ind:pre:3p; +croustilles croustille nom f p 0.05 0 0.02 0 +croustillon croustillon nom m s 0 0.2 0 0.07 +croustillons croustillon nom m p 0 0.2 0 0.14 +crown crown nom m s 0.03 0 0.03 0 +croyable croyable adj s 6.21 5.14 6.08 4.8 +croyables croyable adj p 6.21 5.14 0.14 0.34 +croyaient croire ver_sup 1711.99 947.23 4.7 11.42 ind:imp:3p; +croyais croire ver_sup 1711.99 947.23 162.56 57.36 ind:imp:1s;ind:imp:2s; +croyait croire ver_sup 1711.99 947.23 22.86 73.24 ind:imp:3s; +croyance croyance nom f s 7.95 6.55 3.3 3.38 +croyances croyance nom f p 7.95 6.55 4.65 3.18 +croyant croire ver_sup 1711.99 947.23 3.17 12.3 par:pre; +croyante croyant adj f s 3.99 5.88 1.14 1.22 +croyantes croyant nom f p 2.99 6.96 0.01 0.27 +croyants croyant nom m p 2.99 6.96 1.63 2.77 +croyez croire ver_sup 1711.99 947.23 152.54 55.07 imp:pre:2p;ind:pre:2p; +croyiez croire ver_sup 1711.99 947.23 3.63 0.81 ind:imp:2p;sub:pre:2p; +croyions croire ver_sup 1711.99 947.23 0.69 1.76 ind:imp:1p; +croyons croire ver_sup 1711.99 947.23 4.54 4.59 imp:pre:1p;ind:pre:1p; +croîs croître ver 4.79 10.34 0.01 0 ind:pre:1s; +croît croître ver 4.79 10.34 1.2 1.55 ind:pre:3s; +croîtraient croître ver 4.79 10.34 0 0.07 cnd:pre:3p; +croîtrait croître ver 4.79 10.34 0.01 0.07 cnd:pre:3s; +croître croître ver 4.79 10.34 1.35 2.77 inf; +croûte croûte nom f s 5.81 17.3 5.07 12.23 +croûter croûter ver 0.3 1.01 0.07 0.61 inf; +croûtes croûte nom f p 5.81 17.3 0.74 5.07 +croûteuse croûteux adj f s 0.03 0.68 0 0.2 +croûteuses croûteux adj f p 0.03 0.68 0 0.14 +croûteux croûteux adj m 0.03 0.68 0.03 0.34 +croûton croûton nom m s 0.91 3.78 0.59 1.62 +croûtonnais croûtonner ver 0 0.07 0 0.07 ind:imp:1s; +croûtons croûton nom m p 0.91 3.78 0.31 2.16 +croûté croûter ver m s 0.3 1.01 0.03 0.2 par:pas; +croûtée croûter ver f s 0.3 1.01 0 0.07 par:pas; +croûtées croûter ver f p 0.3 1.01 0 0.07 par:pas; +cru croire ver_sup m s 1711.99 947.23 104.49 90.81 par:pas; +cruauté cruauté nom f s 5.8 15.88 5.7 14.32 +cruautés cruauté nom f p 5.8 15.88 0.11 1.55 +cruche cruche nom f s 3.04 4.46 2.92 3.92 +cruches cruche nom f p 3.04 4.46 0.12 0.54 +cruchon cruchon nom m s 0.05 0.81 0.05 0.68 +cruchons cruchon nom m p 0.05 0.81 0 0.14 +crucial crucial adj m s 3.66 2.91 2.23 1.82 +cruciale crucial adj f s 3.66 2.91 0.87 0.61 +crucialement crucialement adv 0 0.07 0 0.07 +cruciales crucial adj f p 3.66 2.91 0.3 0.27 +cruciaux crucial adj m p 3.66 2.91 0.26 0.2 +crucifia crucifier ver 4.26 2.77 0.01 0.07 ind:pas:3s; +crucifiaient crucifier ver 4.26 2.77 0.05 0.14 ind:imp:3p; +crucifiait crucifier ver 4.26 2.77 0.16 0.27 ind:imp:3s; +crucifiant crucifiant adj m s 0 0.14 0 0.07 +crucifiante crucifiant adj f s 0 0.14 0 0.07 +crucifie crucifier ver 4.26 2.77 0.17 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crucifiement crucifiement nom m s 0 0.2 0 0.2 +crucifient crucifier ver 4.26 2.77 0.04 0.07 ind:pre:3p; +crucifier crucifier ver 4.26 2.77 1.13 0.34 inf; +crucifierez crucifier ver 4.26 2.77 0.14 0.07 ind:fut:2p; +crucifieront crucifier ver 4.26 2.77 0.02 0.07 ind:fut:3p; +crucifiez crucifier ver 4.26 2.77 0.33 0.07 imp:pre:2p;ind:pre:2p; +crucifix crucifix nom m 1.22 7.43 1.22 7.43 +crucifixion crucifixion nom f s 0.69 0.95 0.6 0.68 +crucifixions crucifixion nom f p 0.69 0.95 0.09 0.27 +crucifié crucifier ver m s 4.26 2.77 2.12 1.01 par:pas; +crucifiée crucifier ver f s 4.26 2.77 0.03 0.34 par:pas; +crucifiées crucifier ver f p 4.26 2.77 0.01 0 par:pas; +crucifiés crucifié adj m p 0.49 1.76 0.14 0.27 +cruciforme cruciforme adj f s 0.48 0.27 0.47 0.2 +cruciformes cruciforme adj p 0.48 0.27 0.01 0.07 +crucifère crucifère nom f s 0.01 0.27 0 0.14 +crucifères crucifère nom f p 0.01 0.27 0.01 0.14 +cruciverbiste cruciverbiste nom s 0 0.14 0 0.07 +cruciverbistes cruciverbiste nom p 0 0.14 0 0.07 +crudité crudité nom f s 0.45 1.96 0.01 1.01 +crudités crudité nom f p 0.45 1.96 0.44 0.95 +crue croire ver_sup f s 1711.99 947.23 5.06 2.64 par:pas; +cruel cruel adj m s 28.98 35.88 15.64 14.59 +cruelle cruel adj f s 28.98 35.88 9.47 11.89 +cruellement cruellement adv 1.46 8.65 1.46 8.65 +cruelles cruel adj f p 28.98 35.88 1.3 4.26 +cruels cruel adj m p 28.98 35.88 2.56 5.14 +crues cru adj f p 5.09 15.88 0.34 1.82 +cruiser cruiser nom m s 0.17 0 0.17 0 +crumble crumble nom m s 0.11 0 0.11 0 +crurent croire ver_sup 1711.99 947.23 0.04 1.62 ind:pas:3p; +crus croire ver_sup m p 1711.99 947.23 1.51 15.2 ind:pas:1s;ind:pas:2s;par:pas; +crusse croire ver_sup 1711.99 947.23 0 0.07 sub:imp:1s; +crussent croire ver_sup 1711.99 947.23 0 0.07 sub:imp:3p; +crusses croire ver_sup 1711.99 947.23 0 0.14 sub:imp:2s; +crustacé crustacé nom m s 0.95 1.89 0.32 0.54 +crustacés crustacé nom m p 0.95 1.89 0.64 1.35 +crut croire ver_sup 1711.99 947.23 0.93 34.93 ind:pas:3s; +cruzeiro cruzeiro nom m s 0.8 0.07 0.2 0 +cruzeiros cruzeiro nom m p 0.8 0.07 0.6 0.07 +cryofracture cryofracture nom f s 0.14 0 0.14 0 +cryogène cryogène adj s 0.11 0 0.11 0 +cryogénie cryogénie nom f s 0.27 0 0.27 0 +cryogénique cryogénique adj s 0.44 0 0.34 0 +cryogéniques cryogénique adj p 0.44 0 0.1 0 +cryogénisation cryogénisation nom f s 0.17 0 0.17 0 +cryonique cryonique adj f s 0.01 0 0.01 0 +cryotechnique cryotechnique nom f s 0.01 0 0.01 0 +cryptage cryptage nom m s 0.52 0 0.52 0 +crypte crypte nom f s 2.91 3.18 2.82 2.7 +crypter crypter ver 1.56 0.34 0.01 0 inf; +cryptes crypte nom f p 2.91 3.18 0.08 0.47 +cryptique cryptique adj m s 0.03 0 0.01 0 +cryptiques cryptique adj f p 0.03 0 0.02 0 +crypto crypto nom m s 0.04 0.07 0.04 0.07 +cryptocommunistes cryptocommuniste nom p 0 0.07 0 0.07 +cryptogame cryptogame adj s 0 0.07 0 0.07 +cryptogames cryptogame nom m p 0 0.14 0 0.14 +cryptogamique cryptogamique adj f s 0.01 0 0.01 0 +cryptogramme cryptogramme nom m s 0.4 0.2 0.39 0 +cryptogrammes cryptogramme nom m p 0.4 0.2 0.01 0.2 +cryptographe cryptographe nom s 0.02 0 0.02 0 +cryptographie cryptographie nom f s 0.1 0.07 0.1 0.07 +cryptographique cryptographique adj s 0.03 0 0.03 0 +cryptologie cryptologie nom f s 0.03 0 0.03 0 +cryptomère cryptomère nom m s 0.01 0 0.01 0 +crypté crypter ver m s 1.56 0.34 0.98 0.07 par:pas; +cryptée crypter ver f s 1.56 0.34 0.23 0 par:pas; +cryptées crypter ver f p 1.56 0.34 0.12 0 par:pas; +cryptés crypter ver m p 1.56 0.34 0.22 0.07 par:pas; +crâna crâner ver 1.37 2.23 0 0.07 ind:pas:3s; +crânais crâner ver 1.37 2.23 0.14 0.14 ind:imp:1s; +crânait crâner ver 1.37 2.23 0 0.41 ind:imp:3s; +crânant crâner ver 1.37 2.23 0 0.14 par:pre; +crâne crâne nom m s 28.6 56.82 26.88 52.23 +crânement crânement adv 0.01 1.15 0.01 1.15 +crânent crâner ver 1.37 2.23 0.01 0.07 ind:pre:3p; +crâner crâner ver 1.37 2.23 0.4 0.88 inf; +crânerie crânerie nom f s 0 0.27 0 0.27 +crânes crâne nom m p 28.6 56.82 1.72 4.59 +crâneur crâneur nom m s 0.6 0.95 0.56 0.34 +crâneurs crâneur nom m p 0.6 0.95 0.02 0.27 +crâneuse crâneur nom f s 0.6 0.95 0.02 0.14 +crâneuses crâneur nom f p 0.6 0.95 0 0.2 +crânez crâner ver 1.37 2.23 0.01 0.07 imp:pre:2p;ind:pre:2p; +crânien crânien adj m s 2.36 1.15 1.58 0.14 +crânienne crânien adj f s 2.36 1.15 0.74 0.88 +crâniens crânien adj m p 2.36 1.15 0.04 0.14 +crâné crâner ver m s 1.37 2.23 0.02 0 par:pas; +crèche crèche nom f s 3.91 9.39 3.46 8.31 +crèchent crécher ver 1.48 2.43 0.08 0.2 ind:pre:3p; +crèches crèche nom f p 3.91 9.39 0.44 1.08 +crème crème nom s 20.61 24.46 19.72 20.95 +crèmes crème nom p 20.61 24.46 0.9 3.51 +crève crever ver 64.95 81.55 13.21 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +crèvent crever ver 64.95 81.55 2.01 5.47 ind:pre:3p; +crèvera crever ver 64.95 81.55 1.08 0.95 ind:fut:3s; +crèverai crever ver 64.95 81.55 0.41 0.14 ind:fut:1s; +crèveraient crever ver 64.95 81.55 0.04 0.14 cnd:pre:3p; +crèverais crever ver 64.95 81.55 0.22 0.2 cnd:pre:1s;cnd:pre:2s; +crèverait crever ver 64.95 81.55 0.24 1.01 cnd:pre:3s; +crèveras crever ver 64.95 81.55 0.55 0.47 ind:fut:2s; +crèverez crever ver 64.95 81.55 0.35 0.81 ind:fut:2p; +crèveriez crever ver 64.95 81.55 0.03 0 cnd:pre:2p; +crèverons crever ver 64.95 81.55 0.12 0.07 ind:fut:1p; +crèveront crever ver 64.95 81.55 0.54 0.2 ind:fut:3p; +crèves crever ver 64.95 81.55 1.98 0.34 ind:pre:2s; +cré cré ono 0.32 1.69 0.32 1.69 +créa créer ver 85.17 54.8 2 1.82 ind:pas:3s; +créai créer ver 85.17 54.8 0 0.14 ind:pas:1s; +créaient créer ver 85.17 54.8 0.13 1.82 ind:imp:3p; +créais créer ver 85.17 54.8 0.23 0.07 ind:imp:1s;ind:imp:2s; +créait créer ver 85.17 54.8 0.82 3.65 ind:imp:3s; +créance créance nom f s 1.09 1.55 0.32 1.22 +créances créance nom f p 1.09 1.55 0.77 0.34 +créancier créancier nom m s 1.42 1.42 0.5 0.07 +créanciers créancier nom m p 1.42 1.42 0.92 1.35 +créant créer ver 85.17 54.8 1.83 1.55 par:pre; +créateur créateur nom m s 6.54 5.88 5.13 4.59 +créateurs créateur nom m p 6.54 5.88 1.29 1.15 +créatif créatif adj m s 3.81 0.2 2.3 0.14 +créatifs créatif adj m p 3.81 0.2 0.63 0 +créatine créatine nom f s 0.13 0 0.13 0 +créatinine créatinine nom f s 0.15 0 0.15 0 +création création nom f s 11.15 18.72 9.74 17.5 +créationnisme créationnisme nom m s 0.14 0 0.14 0 +créations création nom f p 11.15 18.72 1.41 1.22 +créative créatif adj f s 3.81 0.2 0.78 0.07 +créatives créatif adj f p 3.81 0.2 0.09 0 +créativité créativité nom f s 2.15 0.34 2.15 0.34 +créatrice créateur adj f s 2.8 4.86 1 1.89 +créatrices créateur adj f p 2.8 4.86 0.14 0.14 +créature créature nom f s 35.22 27.23 20.41 15.41 +créatures créature nom f p 35.22 27.23 14.81 11.82 +crécelle crécelle nom f s 0.07 1.82 0.03 1.35 +crécelles crécelle nom f p 0.07 1.82 0.03 0.47 +crécerelle crécerelle nom f s 0.04 0.2 0.02 0.14 +crécerelles crécerelle nom f p 0.04 0.2 0.02 0.07 +créchaient crécher ver 1.48 2.43 0 0.07 ind:imp:3p; +créchait crécher ver 1.48 2.43 0.07 0.27 ind:imp:3s; +créchant crécher ver 1.48 2.43 0 0.07 par:pre; +crécher crécher ver 1.48 2.43 0.46 0.54 inf; +crécy crécy nom f s 0.02 0.2 0.02 0.2 +crédence crédence nom f s 0 0.95 0 0.81 +crédences crédence nom f p 0 0.95 0 0.14 +crédibilité crédibilité nom f s 1.89 0.34 1.89 0.34 +crédible crédible adj s 3.92 0.88 3.29 0.81 +crédibles crédible adj p 3.92 0.88 0.63 0.07 +crédit crédit nom m s 28.21 20.27 25.82 17.57 +crédit_bail crédit_bail nom m s 0.02 0 0.02 0 +créditait créditer ver 0.47 0.61 0.01 0.07 ind:imp:3s; +crédite créditer ver 0.47 0.61 0.03 0.07 ind:pre:1s;ind:pre:3s; +créditent créditer ver 0.47 0.61 0.01 0 ind:pre:3p; +créditer créditer ver 0.47 0.61 0.08 0.07 inf; +créditeraient créditer ver 0.47 0.61 0 0.07 cnd:pre:3p; +créditeur créditeur nom m s 0.22 0.14 0.21 0 +créditeurs créditeur nom m p 0.22 0.14 0.01 0.14 +créditez créditer ver 0.47 0.61 0.03 0 imp:pre:2p; +créditrice créditeur adj f s 0.07 0.14 0.01 0 +crédits crédit nom m p 28.21 20.27 2.38 2.7 +crédité créditer ver m s 0.47 0.61 0.23 0.14 par:pas; +créditée créditer ver f s 0.47 0.61 0.06 0.14 par:pas; +crédités créditer ver m p 0.47 0.61 0.02 0.07 par:pas; +crédié crédié adv 0.04 0.2 0.04 0.2 +crédule crédule adj s 1.09 1.42 0.74 1.01 +crédules crédule adj p 1.09 1.42 0.35 0.41 +crédulité crédulité nom f s 0.75 1.69 0.75 1.62 +crédulités crédulité nom f p 0.75 1.69 0 0.07 +crée créer ver 85.17 54.8 12.93 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +créent créer ver 85.17 54.8 1.68 2.09 ind:pre:3p; +créer créer ver 85.17 54.8 28.15 16.22 inf; +créera créer ver 85.17 54.8 0.5 0.14 ind:fut:3s; +créerai créer ver 85.17 54.8 0.51 0 ind:fut:1s; +créeraient créer ver 85.17 54.8 0.01 0.07 cnd:pre:3p; +créerais créer ver 85.17 54.8 0.21 0.07 cnd:pre:1s;cnd:pre:2s; +créerait créer ver 85.17 54.8 0.49 0.41 cnd:pre:3s; +créerez créer ver 85.17 54.8 0.03 0 ind:fut:2p; +créerons créer ver 85.17 54.8 0.14 0 ind:fut:1p; +créeront créer ver 85.17 54.8 0.09 0 ind:fut:3p; +créez créer ver 85.17 54.8 0.75 0.07 imp:pre:2p;ind:pre:2p; +créiez créer ver 85.17 54.8 0.04 0 ind:imp:2p; +créions créer ver 85.17 54.8 0.02 0.07 ind:imp:1p; +crémaillère crémaillère nom f s 1.14 1.08 1.13 1.01 +crémaillères crémaillère nom f p 1.14 1.08 0.01 0.07 +crémant crémant adj m s 0.01 0 0.01 0 +crémateurs crémateur nom m p 0 0.14 0 0.14 +crémation crémation nom f s 0.78 0.14 0.68 0.14 +crémations crémation nom f p 0.78 0.14 0.1 0 +crématoire crématoire nom m s 0.92 0.68 0.65 0.34 +crématoires crématoire nom m p 0.92 0.68 0.27 0.34 +crématorium crématorium nom m s 0.81 0.54 0.81 0.54 +crémer crémer ver 0.01 0.14 0.01 0 inf; +crémerie crémerie nom f s 0.27 0.81 0.27 0.68 +crémeries crémerie nom f p 0.27 0.81 0 0.14 +crémeuse crémeux adj f s 0.46 3.24 0.13 0.81 +crémeuses crémeux adj f p 0.46 3.24 0.03 0.27 +crémeux crémeux adj m 0.46 3.24 0.29 2.16 +crémier crémier nom m s 0.34 1.82 0.12 0.54 +crémiers crémier nom m p 0.34 1.82 0.01 0.2 +crémière crémier nom f s 0.34 1.82 0.21 1.01 +crémières crémier nom f p 0.34 1.82 0 0.07 +crémone crémone nom f s 0 0.34 0 0.34 +crémés crémer ver m p 0.01 0.14 0 0.14 par:pas; +créneau créneau nom m s 1.76 5.34 1.49 2.57 +créneaux créneau nom m p 1.76 5.34 0.27 2.77 +crénelait créneler ver 0 0.47 0 0.07 ind:imp:3s; +crénelé crénelé adj m s 0 1.15 0 0.2 +crénelée crénelé adj f s 0 1.15 0 0.34 +crénelées crénelé adj f p 0 1.15 0 0.41 +crénelés crénelé adj m p 0 1.15 0 0.2 +crénom crénom ono 0.58 0.14 0.58 0.14 +créole créole adj s 0.58 0.88 0.57 0.68 +créoles créole nom p 0.66 1.01 0.14 0.14 +créolophone créolophone adj s 0.01 0 0.01 0 +créons créer ver 85.17 54.8 0.98 0.41 imp:pre:1p;ind:pre:1p; +créosote créosote nom f s 0.04 0.41 0.04 0.41 +créosotée créosoter ver f s 0 0.07 0 0.07 par:pas; +crépi crépir ver m s 0.17 1.28 0.07 0.2 par:pas; +crépie crépir ver f s 0.17 1.28 0 0.07 par:pas; +crépies crépir ver f p 0.17 1.28 0 0.34 par:pas; +crépine crépine nom f s 0 0.07 0 0.07 +crépinette crépinette nom f s 0 0.14 0 0.07 +crépinettes crépinette nom f p 0 0.14 0 0.07 +crépins crépin nom m p 0 0.07 0 0.07 +crépir crépir ver 0.17 1.28 0 0.07 inf; +crépis crépi nom m p 0.14 3.31 0.14 0.27 +crépissage crépissage nom m s 0 0.07 0 0.07 +crépissez crépir ver 0.17 1.28 0.1 0 ind:pre:2p; +crépita crépiter ver 1.31 10.2 0 0.68 ind:pas:3s; +crépitaient crépiter ver 1.31 10.2 0 1.42 ind:imp:3p; +crépitait crépiter ver 1.31 10.2 0 1.62 ind:imp:3s; +crépitant crépitant adj m s 0.1 1.35 0.02 0.61 +crépitante crépitant adj f s 0.1 1.35 0.01 0.2 +crépitantes crépitant adj f p 0.1 1.35 0 0.34 +crépitants crépitant adj m p 0.1 1.35 0.07 0.2 +crépitation crépitation nom f s 0.01 0 0.01 0 +crépite crépiter ver 1.31 10.2 0.75 1.82 imp:pre:2s;ind:pre:3s; +crépitement crépitement nom m s 0.42 8.18 0.28 7.03 +crépitements crépitement nom m p 0.42 8.18 0.13 1.15 +crépitent crépiter ver 1.31 10.2 0.14 1.15 ind:pre:3p; +crépiter crépiter ver 1.31 10.2 0.15 1.82 inf; +crépiteront crépiter ver 1.31 10.2 0 0.07 ind:fut:3p; +crépitèrent crépiter ver 1.31 10.2 0 0.68 ind:pas:3p; +crépité crépiter ver m s 1.31 10.2 0.27 0.34 par:pas; +crépon crépon nom m s 0.07 0.47 0.06 0.41 +crépons crépon nom m p 0.07 0.47 0.01 0.07 +crépu crépu adj m s 0.77 2.84 0.25 0.61 +crépue crépu adj f s 0.77 2.84 0.2 0.68 +crépues crépu adj f p 0.77 2.84 0 0.2 +crépus crépu adj m p 0.77 2.84 0.33 1.35 +crépusculaire crépusculaire adj s 0.06 2.3 0.03 1.89 +crépusculaires crépusculaire adj p 0.06 2.3 0.03 0.41 +crépuscule crépuscule nom m s 7.35 26.35 7.12 24.86 +crépuscules crépuscule nom m p 7.35 26.35 0.23 1.49 +créquier créquier nom m s 0 0.07 0 0.07 +crésol crésol nom m s 0.01 0 0.01 0 +crésus crésus nom m 0.01 0 0.01 0 +crésyl crésyl nom m s 0.01 0.41 0.01 0.41 +crésylée crésylé adj f s 0 0.07 0 0.07 +crétacé crétacé nom m s 0.23 0.07 0.23 0.07 +crétacée crétacé adj f s 0.03 0 0.03 0 +crételle crételle nom f s 0 0.14 0 0.14 +crétin crétin nom m s 33.54 8.58 25.61 4.66 +crétine crétin nom f s 33.54 8.58 0.69 0.54 +crétinerie crétinerie nom f s 0.04 0.14 0.03 0.07 +crétineries crétinerie nom f p 0.04 0.14 0.01 0.07 +crétineux crétineux adj m 0.02 0 0.02 0 +crétinisant crétinisant adj m s 0 0.07 0 0.07 +crétinisation crétinisation nom f s 0 0.07 0 0.07 +crétiniser crétiniser ver 0.01 0.2 0.01 0 inf; +crétinisme crétinisme nom m s 0.01 0.41 0.01 0.41 +crétinisé crétiniser ver m s 0.01 0.2 0 0.2 par:pas; +crétins crétin nom m p 33.54 8.58 7.24 3.38 +crétois crétois adj m s 0.01 0.88 0.01 0.27 +crétoise crétois adj f s 0.01 0.88 0 0.47 +crétoises crétois adj f p 0.01 0.88 0 0.14 +créât créer ver 85.17 54.8 0 0.14 sub:imp:3s; +créèrent créer ver 85.17 54.8 0.13 0.2 ind:pas:3p; +créé créer ver m s 85.17 54.8 24.93 12.97 par:pas;par:pas;par:pas; +créée créer ver f s 85.17 54.8 4.58 3.65 par:pas; +créées créer ver f p 85.17 54.8 0.81 1.42 par:pas; +créés créer ver p 85.17 54.8 3.16 1.96 par:pas; +crêpage crêpage nom m s 0.06 0.14 0.04 0.07 +crêpages crêpage nom m p 0.06 0.14 0.01 0.07 +crêpaient crêper ver 0.27 1.01 0 0.14 ind:imp:3p; +crêpait crêper ver 0.27 1.01 0 0.2 ind:imp:3s; +crêpe crêpe nom s 8.44 9.05 3.27 6.01 +crêpelait crêpeler ver 0 0.07 0 0.07 ind:imp:3s; +crêpelure crêpelure nom f s 0 0.14 0 0.14 +crêpelées crêpelé adj f p 0 0.2 0 0.07 +crêpelés crêpelé adj m p 0 0.2 0 0.14 +crêper crêper ver 0.27 1.01 0.06 0.27 inf; +crêpes crêpe nom p 8.44 9.05 5.16 3.04 +crêpé crêper ver m s 0.27 1.01 0.15 0.14 par:pas; +crêpée crêpé adj f s 0.03 0.27 0.01 0.07 +crêpés crêpé adj m p 0.03 0.27 0.02 0.2 +crêt crêt nom m s 0.03 0 0.03 0 +crêtaient crêter ver 0 0.74 0 0.07 ind:imp:3p; +crête crête nom f s 4.23 26.22 3.52 21.62 +crêtes crête nom f p 4.23 26.22 0.71 4.59 +crêtes_de_coq crêtes_de_coq nom f p 0.03 0.07 0.03 0.07 +crêtions crêter ver 0 0.74 0 0.07 ind:imp:1p; +crêté crêter ver m s 0 0.74 0 0.2 par:pas; +crêtée crêter ver f s 0 0.74 0 0.14 par:pas; +crêtées crêter ver f p 0 0.74 0 0.2 par:pas; +crêtés crêter ver m p 0 0.74 0 0.07 par:pas; +crû croître ver m s 4.79 10.34 0.93 0.41 par:pas; +crûment crûment adv 0.54 1.89 0.54 1.89 +crûmes croire ver_sup 1711.99 947.23 0 0.54 ind:pas:1p; +crût croire ver_sup 1711.99 947.23 0.05 0.68 sub:imp:3s; +csardas csardas nom f 0.3 0 0.3 0 +cuadrilla cuadrilla nom f s 0 0.74 0 0.68 +cuadrillas cuadrilla nom f p 0 0.74 0 0.07 +cubage cubage nom m s 0.14 0.34 0.14 0.27 +cubages cubage nom m p 0.14 0.34 0 0.07 +cubain cubain adj m s 3.28 0.61 1.37 0.34 +cubaine cubain adj f s 3.28 0.61 1.09 0.07 +cubaines cubain adj f p 3.28 0.61 0.05 0.07 +cubains cubain nom m p 2.69 0.61 1.27 0 +cubait cuber ver 0.32 0.54 0 0.07 ind:imp:3s; +cubasse cuber ver 0.32 0.54 0 0.34 sub:imp:1s; +cube cube nom m s 2.81 11.76 1.58 5.74 +cubes cube nom m p 2.81 11.76 1.24 6.01 +cubique cubique adj s 0.05 1.82 0.05 0.88 +cubiques cubique adj p 0.05 1.82 0 0.95 +cubisme cubisme nom m s 0.03 0.54 0.03 0.54 +cubiste cubiste adj s 0.04 0.74 0.03 0.47 +cubistes cubiste adj m p 0.04 0.74 0.01 0.27 +cubitainer cubitainer nom m s 0.04 0 0.04 0 +cubital cubital adj m s 0.04 0 0.01 0 +cubitale cubital adj f s 0.04 0 0.03 0 +cubitières cubitière nom f p 0 0.14 0 0.14 +cubitus cubitus nom m 0.2 0.14 0.2 0.14 +cucaracha cucaracha nom f s 0.15 0.07 0.15 0.07 +cucu cucu adj 0.17 0.27 0.17 0.27 +cucul cucul adj m 0.57 0.95 0.57 0.95 +cucurbitacée cucurbitacée nom f s 0.14 0 0.14 0 +cucurbite cucurbite nom f s 0.01 0.14 0.01 0 +cucurbites cucurbite nom f p 0.01 0.14 0 0.14 +cucuterie cucuterie nom f s 0.01 0 0.01 0 +cueillaient cueillir ver 13.84 25.81 0.02 0.47 ind:imp:3p; +cueillais cueillir ver 13.84 25.81 0.34 0.27 ind:imp:1s;ind:imp:2s; +cueillaison cueillaison nom f s 0.01 0 0.01 0 +cueillait cueillir ver 13.84 25.81 0.16 2.16 ind:imp:3s; +cueillant cueillir ver 13.84 25.81 0.14 1.08 par:pre; +cueille cueillir ver 13.84 25.81 1.91 2.3 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cueillent cueillir ver 13.84 25.81 0.19 0.41 ind:pre:3p; +cueillera cueillir ver 13.84 25.81 0.11 0.07 ind:fut:3s; +cueillerai cueillir ver 13.84 25.81 0.02 0.14 ind:fut:1s; +cueillerais cueillir ver 13.84 25.81 0.01 0 cnd:pre:1s; +cueillerait cueillir ver 13.84 25.81 0.01 0 cnd:pre:3s; +cueilleras cueillir ver 13.84 25.81 0.11 0.07 ind:fut:2s; +cueilleront cueillir ver 13.84 25.81 0.02 0 ind:fut:3p; +cueilles cueillir ver 13.84 25.81 0.23 0.14 ind:pre:2s; +cueillette cueillette nom f s 0.57 1.89 0.57 1.62 +cueillettes cueillette nom f p 0.57 1.89 0 0.27 +cueilleur cueilleur nom m s 0.24 0.41 0.11 0 +cueilleurs cueilleur nom m p 0.24 0.41 0.12 0.34 +cueilleuse cueilleur nom f s 0.24 0.41 0.01 0 +cueilleuses cueilleur nom f p 0.24 0.41 0 0.07 +cueillez cueillir ver 13.84 25.81 0.73 0.14 imp:pre:2p;ind:pre:2p; +cueilli cueillir ver m s 13.84 25.81 1.34 2.3 par:pas; +cueillie cueillir ver f s 13.84 25.81 0.18 0.95 par:pas; +cueillies cueillir ver f p 13.84 25.81 1.27 1.15 par:pas; +cueillir cueillir ver 13.84 25.81 6.26 10.07 inf; +cueillirent cueillir ver 13.84 25.81 0 0.07 ind:pas:3p; +cueillis cueillir ver m p 13.84 25.81 0.62 1.49 ind:pas:1s;par:pas; +cueillissent cueillir ver 13.84 25.81 0 0.07 sub:imp:3p; +cueillit cueillir ver 13.84 25.81 0.01 2.36 ind:pas:3s; +cueillons cueillir ver 13.84 25.81 0.16 0.07 imp:pre:1p;ind:pre:1p; +cueillîmes cueillir ver 13.84 25.81 0 0.07 ind:pas:1p; +cuesta cuesta nom f s 0.39 0.2 0.39 0.2 +cueva cueva nom f s 0.23 1.01 0.23 0.34 +cuevas cueva nom f p 0.23 1.01 0 0.68 +cui_cui cui_cui nom m 0.15 0.34 0.15 0.34 +cuiller cuiller nom f s 2.5 10.2 2.11 8.38 +cuilleron cuilleron nom m s 0 0.07 0 0.07 +cuillers cuiller nom f p 2.5 10.2 0.39 1.82 +cuillerée cuillerée nom f s 1.15 4.46 0.9 2.7 +cuillerées cuillerée nom f p 1.15 4.46 0.25 1.76 +cuillère cuillère nom f s 7.3 11.89 5.18 9.8 +cuillères cuillère nom f p 7.3 11.89 2.13 2.09 +cuir cuir nom m s 14.25 79.19 14.11 76.08 +cuira cuire ver 21.65 20.41 0.35 0.14 ind:fut:3s; +cuirai cuire ver 21.65 20.41 0.01 0.07 ind:fut:1s; +cuirait cuire ver 21.65 20.41 0.16 0.14 cnd:pre:3s; +cuiras cuire ver 21.65 20.41 0.01 0 ind:fut:2s; +cuirassaient cuirasser ver 0.05 1.69 0 0.07 ind:imp:3p; +cuirassait cuirasser ver 0.05 1.69 0 0.07 ind:imp:3s; +cuirasse cuirasse nom f s 1.07 5.14 0.77 3.72 +cuirassements cuirassement nom m p 0 0.07 0 0.07 +cuirassent cuirasser ver 0.05 1.69 0 0.07 ind:pre:3p; +cuirasser cuirasser ver 0.05 1.69 0 0.2 inf; +cuirasses cuirasse nom f p 1.07 5.14 0.3 1.42 +cuirassier cuirassier nom m s 0.25 5.54 0.1 2.3 +cuirassiers cuirassier nom m p 0.25 5.54 0.14 3.24 +cuirassé cuirassé nom m s 1.48 2.64 1.17 1.62 +cuirassée cuirassé adj f s 0.18 2.77 0 1.08 +cuirassées cuirassé adj f p 0.18 2.77 0 0.54 +cuirassés cuirassé nom m p 1.48 2.64 0.31 1.01 +cuire cuire ver 21.65 20.41 9.12 8.78 inf; +cuirez cuire ver 21.65 20.41 0 0.14 ind:fut:2p; +cuiront cuire ver 21.65 20.41 0.02 0 ind:fut:3p; +cuirs cuir nom m p 14.25 79.19 0.14 3.11 +cuis cuire ver 21.65 20.41 0.97 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +cuisaient cuire ver 21.65 20.41 0.14 1.22 ind:imp:3p; +cuisait cuire ver 21.65 20.41 0.33 2.09 ind:imp:3s; +cuisant cuisant adj m s 0.49 2.57 0.3 1.08 +cuisante cuisant adj f s 0.49 2.57 0.02 0.81 +cuisantes cuisant adj f p 0.49 2.57 0.1 0.2 +cuisants cuisant adj m p 0.49 2.57 0.06 0.47 +cuise cuire ver 21.65 20.41 0.32 0.14 sub:pre:1s;sub:pre:3s; +cuisent cuire ver 21.65 20.41 0.1 0.95 ind:pre:3p; +cuises cuire ver 21.65 20.41 0.01 0 sub:pre:2s; +cuiseurs cuiseur nom m p 0.1 0 0.1 0 +cuisez cuire ver 21.65 20.41 0.15 0 imp:pre:2p;ind:pre:2p; +cuisiez cuire ver 21.65 20.41 0 0.07 ind:imp:2p; +cuisina cuisiner ver 27.13 6.15 0 0.2 ind:pas:3s; +cuisinaient cuisiner ver 27.13 6.15 0.03 0.07 ind:imp:3p; +cuisinais cuisiner ver 27.13 6.15 0.38 0.07 ind:imp:1s;ind:imp:2s; +cuisinait cuisiner ver 27.13 6.15 1.09 0.74 ind:imp:3s; +cuisinant cuisiner ver 27.13 6.15 0.16 0.27 par:pre; +cuisine cuisine nom f s 87.92 135.41 85.08 123.31 +cuisinent cuisiner ver 27.13 6.15 0.67 0.2 ind:pre:3p; +cuisiner cuisiner ver 27.13 6.15 11.99 2.36 imp:pre:2p;inf; +cuisinera cuisiner ver 27.13 6.15 0.23 0.07 ind:fut:3s; +cuisinerai cuisiner ver 27.13 6.15 0.4 0.07 ind:fut:1s; +cuisinerais cuisiner ver 27.13 6.15 0.17 0 cnd:pre:1s;cnd:pre:2s; +cuisinerait cuisiner ver 27.13 6.15 0.02 0.14 cnd:pre:3s; +cuisineras cuisiner ver 27.13 6.15 0.07 0 ind:fut:2s; +cuisinerons cuisiner ver 27.13 6.15 0.12 0 ind:fut:1p; +cuisines cuisine nom f p 87.92 135.41 2.84 12.09 +cuisinette cuisinette nom f s 0 0.14 0 0.14 +cuisinez cuisiner ver 27.13 6.15 0.79 0 imp:pre:2p;ind:pre:2p; +cuisinier cuisinier nom m s 15.89 26.42 6.79 6.35 +cuisiniers cuisinier nom m p 15.89 26.42 1.25 2.84 +cuisiniez cuisiner ver 27.13 6.15 0.05 0 ind:imp:2p; +cuisinière cuisinier nom f s 15.89 26.42 7.66 16.08 +cuisinières cuisinier nom f p 15.89 26.42 0.19 1.15 +cuisinons cuisiner ver 27.13 6.15 0.09 0 imp:pre:1p;ind:pre:1p; +cuisiné cuisiner ver m s 27.13 6.15 2.71 0.61 par:pas; +cuisinée cuisiner ver f s 27.13 6.15 0.09 0.14 par:pas; +cuisinées cuisiner ver f p 27.13 6.15 0.02 0.07 par:pas; +cuisinés cuisiné adj m p 0.22 0.61 0.09 0.47 +cuisit cuire ver 21.65 20.41 0 0.2 ind:pas:3s; +cuisons cuire ver 21.65 20.41 0.14 0.07 imp:pre:1p;ind:pre:1p; +cuissage cuissage nom m s 0.02 0.34 0.02 0.34 +cuissard cuissard nom m s 0.01 1.76 0.01 0.07 +cuissardes cuissarde nom f p 0.26 0 0.26 0 +cuissards cuissard nom m p 0.01 1.76 0 0.27 +cuisse cuisse nom f s 12.73 69.73 4.38 21.22 +cuisse_madame cuisse_madame nom f s 0 0.07 0 0.07 +cuisseau cuisseau nom m s 0.14 0 0.14 0 +cuisses cuisse nom f p 12.73 69.73 8.34 48.51 +cuissette cuissette nom f s 0 0.14 0 0.07 +cuissettes cuissette nom f p 0 0.14 0 0.07 +cuisson cuisson nom f s 1.39 3.38 1.38 3.04 +cuissons cuisson nom f p 1.39 3.38 0.01 0.34 +cuissot cuissot nom m s 0.11 0.95 0.1 0.81 +cuissots cuissot nom m p 0.11 0.95 0.01 0.14 +cuistance cuistance nom f s 0 1.96 0 1.82 +cuistances cuistance nom f p 0 1.96 0 0.14 +cuistot cuistot nom m s 2.46 4.46 2.24 2.3 +cuistots cuistot nom m p 2.46 4.46 0.22 2.16 +cuistre cuistre nom m s 0.11 1.55 0.1 0.74 +cuistrerie cuistrerie nom f s 0 0.34 0 0.2 +cuistreries cuistrerie nom f p 0 0.34 0 0.14 +cuistres cuistre nom m p 0.11 1.55 0.01 0.81 +cuit cuire ver m s 21.65 20.41 7.39 4.59 ind:pre:3s;par:pas; +cuitant cuiter ver 0.2 0.34 0.01 0 par:pre; +cuite cuit adj f s 8.39 15.41 2.79 5.74 +cuiter cuiter ver 0.2 0.34 0.12 0.2 inf; +cuites cuit adj f p 8.39 15.41 1.02 3.31 +cuits cuire ver m p 21.65 20.41 2.4 1.15 par:pas; +cuité cuiter ver m s 0.2 0.34 0.07 0.14 par:pas; +cuivra cuivrer ver 0.28 1.08 0 0.07 ind:pas:3s; +cuivrait cuivrer ver 0.28 1.08 0 0.07 ind:imp:3s; +cuivre cuivre nom m s 5.64 36.08 4.74 30.68 +cuivres cuivre nom m p 5.64 36.08 0.9 5.41 +cuivreux cuivreux adj m 0.03 0.27 0.03 0.27 +cuivré cuivré adj m s 0.07 3.24 0.01 1.22 +cuivrée cuivrer ver f s 0.28 1.08 0.27 0.27 par:pas; +cuivrées cuivré adj f p 0.07 3.24 0 0.41 +cuivrés cuivré adj m p 0.07 3.24 0.01 0.47 +cul cul nom m s 150.81 68.31 145.85 64.46 +cul_blanc cul_blanc nom m s 0.16 0.2 0.01 0.14 +cul_bénit cul_bénit nom m s 0.08 0.2 0.02 0.07 +cul_cul cul_cul adj 0.04 0 0.04 0 +cul_de_basse_fosse cul_de_basse_fosse nom m s 0.01 0.41 0.01 0.41 +cul_de_four cul_de_four nom m s 0 0.2 0 0.2 +cul_de_jatte cul_de_jatte nom m s 0.54 1.42 0.42 1.08 +cul_de_lampe cul_de_lampe nom m s 0.01 0.2 0.01 0.14 +cul_de_plomb cul_de_plomb nom m s 0 0.07 0 0.07 +cul_de_porc cul_de_porc nom m s 0.02 0 0.02 0 +cul_de_poule cul_de_poule nom m s 0 0.14 0 0.14 +cul_de_sac cul_de_sac nom m s 0.8 1.55 0.75 1.22 +cul_terreux cul_terreux nom m 2.23 1.28 1.6 0.41 +culasse culasse nom f s 0.6 3.51 0.6 2.84 +culasses culasse nom f p 0.6 3.51 0 0.68 +culbuta culbuter ver 1.14 5.54 0 0.41 ind:pas:3s; +culbutages culbutage nom m p 0 0.07 0 0.07 +culbutaient culbuter ver 1.14 5.54 0.02 0.14 ind:imp:3p; +culbutait culbuter ver 1.14 5.54 0.11 0.68 ind:imp:3s; +culbutant culbuter ver 1.14 5.54 0.01 0.47 par:pre; +culbute culbute nom f s 1.72 1.01 1.52 0.68 +culbutent culbuter ver 1.14 5.54 0.14 0.14 ind:pre:3p; +culbuter culbuter ver 1.14 5.54 0.57 1.49 inf; +culbuterais culbuter ver 1.14 5.54 0.01 0 cnd:pre:1s; +culbutes culbute nom f p 1.72 1.01 0.2 0.34 +culbuteur culbuteur nom m s 0.06 0.27 0.04 0.14 +culbuteurs culbuteur nom m p 0.06 0.27 0.01 0.14 +culbuto culbuto nom m s 0.03 0.14 0.03 0.14 +culbutèrent culbuter ver 1.14 5.54 0 0.07 ind:pas:3p; +culbuté culbuter ver m s 1.14 5.54 0.15 0.74 par:pas; +culbutée culbuter ver f s 1.14 5.54 0.04 0.27 par:pas; +culbutées culbuter ver f p 1.14 5.54 0 0.27 par:pas; +culbutés culbuter ver m p 1.14 5.54 0.01 0.2 par:pas; +cule culer ver 0.24 0.14 0.08 0 imp:pre:2s;ind:pre:3s; +culer culer ver 0.24 0.14 0.03 0 inf; +culex culex nom m 0.02 0 0.02 0 +culinaire culinaire adj s 1.6 2.36 1.14 1.22 +culinaires culinaire adj p 1.6 2.36 0.46 1.15 +culmina culminer ver 0.27 1.28 0.01 0.2 ind:pas:3s; +culminait culminer ver 0.27 1.28 0 0.41 ind:imp:3s; +culminance culminance nom f s 0 0.07 0 0.07 +culminant culminant adj m s 0.5 1.82 0.48 1.69 +culminants culminant adj m p 0.5 1.82 0.02 0.14 +culmination culmination nom f s 0.02 0.34 0.02 0.34 +culmine culminer ver 0.27 1.28 0.18 0.27 ind:pre:3s; +culminent culminer ver 0.27 1.28 0.02 0 ind:pre:3p; +culminer culminer ver 0.27 1.28 0.03 0.2 inf; +culminé culminer ver m s 0.27 1.28 0.01 0.14 par:pas; +culons culer ver 0.24 0.14 0 0.07 imp:pre:1p; +culot culot nom m s 9.73 7.23 9.24 6.76 +culots culot nom m p 9.73 7.23 0.49 0.47 +culotte culotte nom f s 18.14 37.3 13.34 27.7 +culotter culotter ver 0.63 1.42 0 0.07 inf; +culottes culotte nom f p 18.14 37.3 4.8 9.59 +culottier culottier nom m s 0 0.41 0 0.07 +culottiers culottier nom m p 0 0.41 0 0.07 +culottière culottier nom f s 0 0.41 0 0.2 +culottières culottier nom f p 0 0.41 0 0.07 +culotté culotté adj m s 0.7 0.88 0.55 0.47 +culottée culotté adj f s 0.7 0.88 0.15 0.34 +culottées culotter ver f p 0.63 1.42 0.01 0.14 par:pas; +culottés culotté adj m p 0.7 0.88 0.01 0.07 +culpabilisais culpabiliser ver 5.34 0.47 0.35 0 ind:imp:1s; +culpabilisait culpabiliser ver 5.34 0.47 0.04 0.14 ind:imp:3s; +culpabilisant culpabiliser ver 5.34 0.47 0.02 0 par:pre; +culpabilisation culpabilisation nom f s 0.01 0.2 0.01 0.2 +culpabilise culpabiliser ver 5.34 0.47 1.75 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +culpabilisent culpabiliser ver 5.34 0.47 0.2 0 ind:pre:3p; +culpabiliser culpabiliser ver 5.34 0.47 2.07 0.2 inf; +culpabiliserai culpabiliser ver 5.34 0.47 0.02 0 ind:fut:1s; +culpabilises culpabiliser ver 5.34 0.47 0.33 0 ind:pre:2s; +culpabilisez culpabiliser ver 5.34 0.47 0.25 0 imp:pre:2p;ind:pre:2p; +culpabilisiez culpabiliser ver 5.34 0.47 0.03 0 ind:imp:2p; +culpabilisons culpabiliser ver 5.34 0.47 0.03 0 imp:pre:1p;ind:pre:1p; +culpabilisé culpabiliser ver m s 5.34 0.47 0.22 0 par:pas; +culpabilisée culpabiliser ver f s 5.34 0.47 0.02 0.14 par:pas; +culpabilisés culpabiliser ver m p 5.34 0.47 0.01 0 par:pas; +culpabilité culpabilité nom f s 11.57 6.22 11.57 6.22 +culs cul nom m p 150.81 68.31 4.96 3.85 +cul_blanc cul_blanc nom m p 0.16 0.2 0.14 0.07 +cul_bénit cul_bénit nom m p 0.08 0.2 0.06 0.14 +culs_de_basse_fosse culs_de_basse_fosse nom m p 0 0.27 0 0.27 +cul_de_jatte cul_de_jatte nom m p 0.54 1.42 0.12 0.34 +cul_de_lampe cul_de_lampe nom m p 0.01 0.2 0 0.07 +cul_de_sac cul_de_sac nom m p 0.8 1.55 0.05 0.34 +cul_terreux cul_terreux nom m p 2.23 1.28 0.63 0.88 +culte culte nom m s 5.37 14.93 4.74 13.58 +cultes culte nom m p 5.37 14.93 0.63 1.35 +cultiva cultiver ver 10.3 13.51 0.14 0.07 ind:pas:3s; +cultivable cultivable adj s 0.07 0.41 0.04 0.2 +cultivables cultivable adj p 0.07 0.41 0.02 0.2 +cultivai cultiver ver 10.3 13.51 0 0.07 ind:pas:1s; +cultivaient cultiver ver 10.3 13.51 0.12 0.41 ind:imp:3p; +cultivais cultiver ver 10.3 13.51 0.16 0.2 ind:imp:1s; +cultivait cultiver ver 10.3 13.51 0.44 1.82 ind:imp:3s; +cultivant cultiver ver 10.3 13.51 0.09 0.74 par:pre; +cultivateur cultivateur nom m s 0.82 2.84 0.46 0.88 +cultivateurs cultivateur nom m p 0.82 2.84 0.26 1.76 +cultivatrice cultivateur nom f s 0.82 2.84 0.1 0.07 +cultivatrices cultivateur nom f p 0.82 2.84 0 0.14 +cultive cultiver ver 10.3 13.51 2.79 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cultivent cultiver ver 10.3 13.51 0.36 0.81 ind:pre:3p; +cultiver cultiver ver 10.3 13.51 3.34 4.32 inf;; +cultivera cultiver ver 10.3 13.51 0.39 0 ind:fut:3s; +cultiverai cultiver ver 10.3 13.51 0.04 0.07 ind:fut:1s; +cultiveraient cultiver ver 10.3 13.51 0.14 0 cnd:pre:3p; +cultiverait cultiver ver 10.3 13.51 0 0.2 cnd:pre:3s; +cultiveras cultiver ver 10.3 13.51 0.02 0.07 ind:fut:2s; +cultives cultiver ver 10.3 13.51 0.04 0.07 ind:pre:2s; +cultivez cultiver ver 10.3 13.51 0.59 0.07 imp:pre:2p;ind:pre:2p; +cultivions cultiver ver 10.3 13.51 0.02 0.07 ind:imp:1p; +cultivons cultiver ver 10.3 13.51 0.22 0 imp:pre:1p;ind:pre:1p; +cultivèrent cultiver ver 10.3 13.51 0 0.07 ind:pas:3p; +cultivé cultivé adj m s 2.29 6.89 1.52 2.64 +cultivée cultiver ver f s 10.3 13.51 0.45 0.88 par:pas; +cultivées cultiver ver f p 10.3 13.51 0.04 0.2 par:pas; +cultivés cultivé adj m p 2.29 6.89 0.48 1.69 +cultural cultural adj m s 0.01 0 0.01 0 +culturalismes culturalisme nom m p 0 0.07 0 0.07 +culture culture nom f s 22.65 28.51 18.76 24.32 +culturel culturel adj m s 6.04 9.73 2.31 5.14 +culturelle culturel adj f s 6.04 9.73 2.25 2.03 +culturellement culturellement adv 0.36 0 0.36 0 +culturelles culturel adj f p 6.04 9.73 0.89 1.28 +culturels culturel adj m p 6.04 9.73 0.6 1.28 +cultures culture nom f p 22.65 28.51 3.89 4.19 +culturisme culturisme nom m s 0.41 0.07 0.41 0.07 +culturiste culturiste nom s 0.14 0.2 0.1 0.07 +culturistes culturiste nom p 0.14 0.2 0.05 0.14 +culé culer ver m s 0.24 0.14 0.14 0.07 par:pas; +culée culée nom f s 0 0.07 0 0.07 +cumin cumin nom m s 0.5 0.74 0.5 0.74 +cumul cumul nom m s 0.02 0.2 0.02 0.2 +cumulaient cumuler ver 0.65 1.35 0 0.07 ind:imp:3p; +cumulait cumuler ver 0.65 1.35 0.01 0.34 ind:imp:3s; +cumulant cumuler ver 0.65 1.35 0.03 0.07 par:pre; +cumulard cumulard nom m s 0.01 0 0.01 0 +cumulatif cumulatif adj m s 0.11 0.2 0.11 0.07 +cumulatifs cumulatif adj m p 0.11 0.2 0 0.07 +cumulation cumulation nom f s 0 0.07 0 0.07 +cumulative cumulatif adj f s 0.11 0.2 0 0.07 +cumule cumuler ver 0.65 1.35 0.26 0.34 ind:pre:1s;ind:pre:3s; +cumuler cumuler ver 0.65 1.35 0.07 0.2 inf; +cumulera cumuler ver 0.65 1.35 0.01 0 ind:fut:3s; +cumulez cumuler ver 0.65 1.35 0.14 0.07 ind:pre:2p; +cumuliez cumuler ver 0.65 1.35 0 0.07 ind:imp:2p; +cumulo_nimbus cumulo_nimbus nom m 0.02 0.14 0.02 0.14 +cumulus cumulus nom m 0.09 0.81 0.09 0.81 +cumulé cumuler ver m s 0.65 1.35 0.09 0.14 par:pas; +cumulés cumuler ver m p 0.65 1.35 0.04 0.07 par:pas; +cunnilinctus cunnilinctus nom m 0 0.07 0 0.07 +cunnilingus cunnilingus nom m 0.24 0.07 0.24 0.07 +cunéiforme cunéiforme adj s 0.14 0.2 0.12 0.2 +cunéiformes cunéiforme adj p 0.14 0.2 0.03 0 +cupide cupide adj s 1.47 1.15 1.02 0.88 +cupidement cupidement adv 0 0.07 0 0.07 +cupides cupide adj p 1.47 1.15 0.45 0.27 +cupidité cupidité nom f s 1.77 1.96 1.77 1.96 +cupidon cupidon nom m s 0.08 0.27 0.04 0.2 +cupidons cupidon nom m p 0.08 0.27 0.04 0.07 +cupressus cupressus nom m 0 0.27 0 0.27 +cuprifères cuprifère adj p 0 0.07 0 0.07 +cupriques cuprique adj f p 0 0.07 0 0.07 +cupronickel cupronickel nom m s 0.01 0 0.01 0 +cupule cupule nom f s 0.01 0.2 0.01 0.14 +cupules cupule nom f p 0.01 0.2 0 0.07 +cura curer ver 2.25 3.72 0.01 0.14 ind:pas:3s; +curable curable adj f s 0.33 0 0.32 0 +curables curable adj p 0.33 0 0.01 0 +curage curage nom m s 0 0.07 0 0.07 +curaille curaille nom f s 0 0.07 0 0.07 +curaillon curaillon nom m s 0.14 0 0.14 0 +curait curer ver 2.25 3.72 0.02 0.61 ind:imp:3s; +curant curer ver 2.25 3.72 0.01 0.14 par:pre; +curare curare nom m s 0.22 0.47 0.22 0.47 +curarisant curarisant adj m s 0 0.07 0 0.07 +curariser curariser ver 0.01 0 0.01 0 inf; +curateur curateur nom m s 0.07 0.14 0.06 0.14 +curatif curatif adj m s 0.65 0.34 0.21 0.14 +curatifs curatif adj m p 0.65 0.34 0.18 0.07 +curative curatif adj f s 0.65 0.34 0.05 0.07 +curatives curatif adj f p 0.65 0.34 0.21 0.07 +curatrice curateur nom f s 0.07 0.14 0.01 0 +curaçao curaçao nom m s 0.04 0.54 0.04 0.47 +curaçaos curaçao nom m p 0.04 0.54 0 0.07 +curcuma curcuma nom m s 0 0.07 0 0.07 +cure cure nom f s 6.08 9.12 5.6 8.18 +cure_dent cure_dent nom m s 1.39 0.88 0.6 0.14 +cure_dent cure_dent nom m p 1.39 0.88 0.78 0.74 +cure_pipe cure_pipe nom m s 0.07 0 0.05 0 +cure_pipe cure_pipe nom m p 0.07 0 0.02 0 +curer curer ver 2.25 3.72 0.8 0.95 inf; +cureras curer ver 2.25 3.72 0.01 0 ind:fut:2s; +cures cure nom f p 6.08 9.12 0.48 0.95 +curetage curetage nom m s 0.14 0 0.14 0 +cureter cureter ver 0.01 0 0.01 0 inf; +cureton cureton nom m s 0.38 2.5 0.22 1.69 +curetons cureton nom m p 0.38 2.5 0.17 0.81 +curette curette nom f s 0.02 0 0.01 0 +curettes curette nom f p 0.02 0 0.01 0 +curial curial adj m s 0 0.27 0 0.2 +curiales curial adj f p 0 0.27 0 0.07 +curie curie nom s 0.36 0.14 0.36 0.14 +curieuse curieux adj f s 34.36 66.22 7.81 17.23 +curieusement curieusement adv 1.9 12.84 1.9 12.84 +curieuses curieux adj f p 34.36 66.22 0.44 4.73 +curieux curieux adj m 34.36 66.22 26.11 44.26 +curiosité curiosité nom f s 14.01 54.39 13.7 49.8 +curiosités curiosité nom f p 14.01 54.39 0.31 4.59 +curiste curiste nom s 0.1 0.95 0 0.07 +curistes curiste nom p 0.1 0.95 0.1 0.88 +curling curling nom m s 0.12 0.14 0.12 0.14 +curricula curriculum nom m p 0.23 0.41 0 0.14 +curriculum curriculum nom m s 0.23 0.41 0.23 0.27 +curriculum_vitae curriculum_vitae nom m 0.13 0.74 0.13 0.74 +curry curry nom m s 1.65 0.14 1.65 0.14 +curseur curseur nom m s 0.11 0.07 0.11 0.07 +cursif cursif adj m s 0.05 0.34 0.02 0.14 +cursive cursif adj f s 0.05 0.34 0.03 0.2 +cursus cursus nom m 0.54 0.07 0.54 0.07 +curve curve adj s 0.09 0 0.09 0 +curviligne curviligne adj m s 0.01 0.14 0 0.07 +curvilignes curviligne adj f p 0.01 0.14 0.01 0.07 +curvimètres curvimètre nom m p 0 0.07 0 0.07 +curé curé nom m s 15.73 51.82 13.65 46.62 +curée curée nom f s 0.06 1.22 0.06 1.15 +curées curée nom f p 0.06 1.22 0 0.07 +curés curé nom m p 15.73 51.82 2.08 5.2 +custode custode nom f s 0 0.14 0 0.14 +custom custom nom m s 0.01 0 0.01 0 +customisé customiser ver m s 0.07 0 0.07 0 par:pas; +cutané cutané adj m s 0.41 0.2 0.05 0 +cutanée cutané adj f s 0.41 0.2 0.15 0.14 +cutanées cutané adj f p 0.41 0.2 0.16 0 +cutanés cutané adj m p 0.41 0.2 0.05 0.07 +cuti cuti nom f s 0.3 0.47 0.3 0.41 +cuti_réaction cuti_réaction nom f s 0 0.07 0 0.07 +cuticule cuticule nom f s 0.18 0.07 0.04 0.07 +cuticules cuticule nom f p 0.18 0.07 0.14 0 +cutis cuti nom f p 0.3 0.47 0 0.07 +cutter cutter nom m s 2.41 0.07 2.36 0.07 +cutters cutter nom m p 2.41 0.07 0.04 0 +cuvaient cuver ver 1.1 2.36 0.01 0.07 ind:imp:3p; +cuvait cuver ver 1.1 2.36 0.03 0.14 ind:imp:3s; +cuvant cuver ver 1.1 2.36 0.01 0.27 par:pre; +cuve cuve nom f s 1.38 4.32 0.86 2.09 +cuveau cuveau nom m s 0 0.34 0 0.27 +cuveaux cuveau nom m p 0 0.34 0 0.07 +cuvent cuver ver 1.1 2.36 0 0.07 ind:pre:3p; +cuver cuver ver 1.1 2.36 0.51 1.55 inf; +cuvera cuver ver 1.1 2.36 0.01 0 ind:fut:3s; +cuverez cuver ver 1.1 2.36 0.01 0 ind:fut:2p; +cuves cuve nom f p 1.38 4.32 0.53 2.23 +cuvette cuvette nom f s 2.49 12.97 2.38 11.82 +cuvettes cuvette nom f p 2.49 12.97 0.1 1.15 +cuvier cuvier nom m s 0 0.2 0 0.14 +cuviers cuvier nom m p 0 0.2 0 0.07 +cuvé cuver ver m s 1.1 2.36 0.04 0 par:pas; +cuvée cuvée nom f s 0.57 0.47 0.55 0.41 +cuvées cuvée nom f p 0.57 0.47 0.02 0.07 +cyan cyan adj s 0.25 0 0.25 0 +cyanhydrique cyanhydrique adj s 0.17 0 0.17 0 +cyanoacrylate cyanoacrylate nom m s 0.05 0 0.05 0 +cyanobactérie cyanobactérie nom f s 0.01 0 0.01 0 +cyanogène cyanogène nom m s 0.03 0 0.03 0 +cyanose cyanose nom f s 0.06 0 0.06 0 +cyanosé cyanoser ver m s 0.23 0.07 0.12 0.07 par:pas; +cyanosée cyanoser ver f s 0.23 0.07 0.12 0 par:pas; +cyanure cyanure nom m s 2.23 0.95 2.23 0.95 +cybercafé cybercafé nom m s 0.17 0 0.17 0 +cyberespace cyberespace nom m s 0.13 0 0.13 0 +cybermonde cybermonde nom m s 0.01 0 0.01 0 +cybernautes cybernaute nom p 0.02 0 0.02 0 +cybernéticien cybernéticien adj m s 0.1 0 0.1 0 +cybernétique cybernétique adj s 0.26 0.07 0.19 0.07 +cybernétiques cybernétique adj m p 0.26 0.07 0.06 0 +cybernétiser cybernétiser ver 0.02 0 0.02 0 inf; +cyberspace cyberspace nom m s 0.02 0 0.02 0 +cycas cycas nom m 0.01 0 0.01 0 +cyclable cyclable adj s 0.05 0.2 0.05 0.14 +cyclables cyclable adj f p 0.05 0.2 0 0.07 +cyclamen cyclamen nom m s 0.01 0.34 0.01 0.27 +cyclamens cyclamen nom m p 0.01 0.34 0 0.07 +cycle cycle nom m s 8.2 5.81 5.69 4.05 +cycles cycle nom m p 8.2 5.81 2.5 1.76 +cyclique cyclique adj s 0.13 0.41 0.09 0.34 +cycliquement cycliquement adv 0.01 0.07 0.01 0.07 +cycliques cyclique adj m p 0.13 0.41 0.04 0.07 +cyclisme cyclisme nom m s 0.34 1.01 0.34 1.01 +cycliste cycliste nom s 1.08 6.49 0.71 3.65 +cyclistes cycliste nom p 1.08 6.49 0.37 2.84 +cyclo cyclo nom m s 1.06 0.07 1.06 0.07 +cyclo_cross cyclo_cross nom m 0 0.07 0 0.07 +cyclo_pousse cyclo_pousse nom m 0.05 0 0.05 0 +cyclomoteur cyclomoteur nom m s 0.23 0.14 0.23 0.07 +cyclomoteurs cyclomoteur nom m p 0.23 0.14 0 0.07 +cyclone cyclone nom m s 1.42 3.51 1.33 3.18 +cyclones cyclone nom m p 1.42 3.51 0.09 0.34 +cyclonique cyclonique adj s 0.03 0 0.03 0 +cyclope cyclope nom m s 1.31 2.36 1.12 2.23 +cyclopes cyclope nom m p 1.31 2.36 0.2 0.14 +cyclopousses cyclopousse nom m p 0 0.07 0 0.07 +cyclopéen cyclopéen adj m s 0.01 0.81 0 0.2 +cyclopéenne cyclopéen adj f s 0.01 0.81 0.01 0.2 +cyclopéennes cyclopéen adj f p 0.01 0.81 0 0.2 +cyclopéens cyclopéen adj m p 0.01 0.81 0 0.2 +cyclorama cyclorama nom m s 0.02 0 0.02 0 +cyclosporine cyclosporine nom f s 0.17 0 0.17 0 +cyclostomes cyclostome nom m p 0 0.07 0 0.07 +cyclothymie cyclothymie nom f s 0.1 0.07 0.1 0.07 +cyclothymique cyclothymique adj s 0.05 0.34 0.05 0.34 +cyclotron cyclotron nom m s 0.16 0.27 0.16 0.27 +cycloïdal cycloïdal adj m s 0 0.07 0 0.07 +cyclées cycler ver f p 0 0.07 0 0.07 par:pas; +cygne cygne nom m s 7.26 7.57 5.28 4.66 +cygnes cygne nom m p 7.26 7.57 1.99 2.91 +cylindre cylindre nom m s 1.6 5.2 0.62 3.11 +cylindres cylindre nom m p 1.6 5.2 0.97 2.09 +cylindrique cylindrique adj s 0.35 3.45 0.1 2.23 +cylindriques cylindrique adj p 0.35 3.45 0.26 1.22 +cylindré cylindrer ver m s 0.02 0.2 0 0.07 par:pas; +cylindrée cylindrée nom f s 0.41 0.68 0.36 0.61 +cylindrées cylindrée nom f p 0.41 0.68 0.04 0.07 +cylindrés cylindrer ver m p 0.02 0.2 0 0.07 par:pas; +cymbale cymbale nom f s 0.45 1.89 0.19 0.14 +cymbales cymbale nom f p 0.45 1.89 0.26 1.76 +cymbaliste cymbaliste nom s 0.14 0.27 0.14 0.07 +cymbalistes cymbaliste nom p 0.14 0.27 0 0.2 +cymbalum cymbalum nom m s 0 0.14 0 0.14 +cymes cyme nom f p 0 0.07 0 0.07 +cynips cynips nom m 0.01 0 0.01 0 +cynique cynique adj s 4.7 6.42 3.9 4.86 +cyniquement cyniquement adv 0 0.74 0 0.74 +cyniques cynique adj p 4.7 6.42 0.8 1.55 +cynisme cynisme nom m s 1.95 6.49 1.95 6.42 +cynismes cynisme nom m p 1.95 6.49 0 0.07 +cynocéphale cynocéphale nom m s 0.01 0.14 0.01 0.07 +cynocéphales cynocéphale nom m p 0.01 0.14 0 0.07 +cynodrome cynodrome nom m s 0.01 0 0.01 0 +cynophile cynophile adj f s 0.04 0 0.04 0 +cynos cyno nom m p 0 0.07 0 0.07 +cynégétique cynégétique adj f s 0 0.27 0 0.14 +cynégétiques cynégétique adj m p 0 0.27 0 0.14 +cyphoscoliose cyphoscoliose nom f s 0.01 0 0.01 0 +cyphose cyphose nom f s 0.01 0.07 0.01 0.07 +cyprin cyprin nom m s 0 1.82 0 1.62 +cyprinidé cyprinidé nom m s 0 0.14 0 0.07 +cyprinidés cyprinidé nom m p 0 0.14 0 0.07 +cyprins cyprin nom m p 0 1.82 0 0.2 +cypriote cypriote nom s 0.01 0.47 0 0.07 +cypriotes cypriote nom p 0.01 0.47 0.01 0.41 +cyprès cyprès nom m 0.52 8.51 0.52 8.51 +cyrard cyrard nom m s 0 0.27 0 0.2 +cyrards cyrard nom m p 0 0.27 0 0.07 +cyrillique cyrillique adj m s 0.22 0.47 0.07 0.14 +cyrilliques cyrillique adj p 0.22 0.47 0.15 0.34 +cystique cystique adj s 0.09 0 0.09 0 +cystite cystite nom f s 0.09 0 0.09 0 +cystotomie cystotomie nom f s 0.01 0 0.01 0 +cytises cytise nom m p 0 0.27 0 0.27 +cytologie cytologie nom f s 0.01 0 0.01 0 +cytologiques cytologique adj f p 0 0.07 0 0.07 +cytomégalovirus cytomégalovirus nom m 0.08 0 0.08 0 +cytoplasme cytoplasme nom m s 0.04 0 0.04 0 +cytoplasmique cytoplasmique adj m s 0.01 0 0.01 0 +cytosine cytosine nom f s 0.04 0 0.04 0 +cytotoxique cytotoxique adj s 0.04 0 0.04 0 +czar czar nom m s 0 0.54 0 0.41 +czardas czardas nom f 0.01 0.14 0.01 0.14 +czars czar nom m p 0 0.54 0 0.14 +câbla câbler ver 0.47 0.61 0 0.14 ind:pas:3s; +câblage câblage nom m s 0.44 0 0.42 0 +câblages câblage nom m p 0.44 0 0.02 0 +câblait câbler ver 0.47 0.61 0 0.07 ind:imp:3s; +câble câble nom m s 17.04 6.08 13.36 2.97 +câbler câbler ver 0.47 0.61 0.12 0 inf; +câblerais câbler ver 0.47 0.61 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +câblerie câblerie nom f s 0.02 0 0.02 0 +câbleront câbler ver 0.47 0.61 0 0.07 ind:fut:3p; +câbles câble nom m p 17.04 6.08 3.67 3.11 +câbleur câbleur nom m s 0.19 0.07 0.16 0 +câbleurs câbleur nom m p 0.19 0.07 0.02 0.07 +câblez câbler ver 0.47 0.61 0.02 0.07 imp:pre:2p; +câblier câblier nom m s 0.01 0 0.01 0 +câblogramme câblogramme nom m s 0.02 0 0.02 0 +câblé câbler ver m s 0.47 0.61 0.18 0.2 par:pas; +câblée câblé adj f s 0.25 0.07 0.07 0 +câblées câblé adj f p 0.25 0.07 0.08 0 +câblés câbler ver m p 0.47 0.61 0.04 0 par:pas; +câlin câlin nom m s 6.38 1.96 4.11 0.61 +câlina câliner ver 0.81 1.22 0.14 0.07 ind:pas:3s; +câlinait câliner ver 0.81 1.22 0 0.2 ind:imp:3s; +câlinant câliner ver 0.81 1.22 0.01 0.07 par:pre; +câline câlin adj f s 1.31 2.84 0.58 1.15 +câlinement câlinement adv 0 0.14 0 0.14 +câlinent câliner ver 0.81 1.22 0.01 0.14 ind:pre:3p; +câliner câliner ver 0.81 1.22 0.45 0.41 inf; +câlinerai câliner ver 0.81 1.22 0.01 0 ind:fut:1s; +câlinerie câlinerie nom f s 0.1 0.61 0.1 0.14 +câlineries câlinerie nom f p 0.1 0.61 0 0.47 +câlines câlin adj f p 1.31 2.84 0.01 0.2 +câlins câlin nom m p 6.38 1.96 2.22 0.61 +câliné câliner ver m s 0.81 1.22 0.04 0.14 par:pas; +câlinée câliner ver f s 0.81 1.22 0 0.07 par:pas; +câpre câpre nom f s 0.31 0.47 0.11 0 +câpres câpre nom f p 0.31 0.47 0.2 0.47 +câpriers câprier nom m p 0 0.07 0 0.07 +cède céder ver 24.21 61.35 5.99 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cèdent céder ver 24.21 61.35 0.55 1.28 ind:pre:3p; +cèdre cèdre nom m s 0.7 3.85 0.47 2.16 +cèdres cèdre nom m p 0.7 3.85 0.23 1.69 +cèle celer ver 0.68 0.34 0.28 0 imp:pre:2s;ind:pre:1s; +cène cène nom f s 0.02 0.2 0.02 0.2 +cèpe cèpe nom m s 0.78 1.15 0.02 0.27 +cèpes cèpe nom m p 0.78 1.15 0.75 0.88 +céans céans adv 0.32 0.34 0.32 0.34 +céara céara nom m s 0.14 0 0.14 0 +cécidomyies cécidomyie nom f p 0 0.07 0 0.07 +cécité cécité nom f s 1.12 3.65 1.12 3.65 +céda céder ver 24.21 61.35 0.39 4.32 ind:pas:3s; +cédai céder ver 24.21 61.35 0 0.68 ind:pas:1s; +cédaient céder ver 24.21 61.35 0.03 1.69 ind:imp:3p; +cédais céder ver 24.21 61.35 0.12 0.47 ind:imp:1s;ind:imp:2s; +cédait céder ver 24.21 61.35 0.18 6.28 ind:imp:3s; +cédant céder ver 24.21 61.35 0.5 3.11 par:pre; +céder céder ver 24.21 61.35 7.17 20.54 inf; +cédera céder ver 24.21 61.35 0.58 1.15 ind:fut:3s; +céderai céder ver 24.21 61.35 0.85 0.2 ind:fut:1s; +céderaient céder ver 24.21 61.35 0.02 0.14 cnd:pre:3p; +céderais céder ver 24.21 61.35 0.09 0.2 cnd:pre:1s;cnd:pre:2s; +céderait céder ver 24.21 61.35 0.19 0.68 cnd:pre:3s; +céderas céder ver 24.21 61.35 0.02 0.14 ind:fut:2s; +céderez céder ver 24.21 61.35 0.04 0.14 ind:fut:2p; +céderiez céder ver 24.21 61.35 0.1 0.07 cnd:pre:2p; +céderons céder ver 24.21 61.35 0.14 0 ind:fut:1p; +céderont céder ver 24.21 61.35 0.37 0.14 ind:fut:3p; +cédez céder ver 24.21 61.35 1.13 0.2 imp:pre:2p;ind:pre:2p; +cédiez céder ver 24.21 61.35 0.06 0.14 ind:imp:2p; +cédions céder ver 24.21 61.35 0.01 0.2 ind:imp:1p; +cédons céder ver 24.21 61.35 0.69 0.27 imp:pre:1p;ind:pre:1p; +cédrat cédrat nom m s 0.01 0.27 0.01 0.14 +cédratier cédratier nom m s 0 0.07 0 0.07 +cédrats cédrat nom m p 0.01 0.27 0 0.14 +cédulaire cédulaire adj m s 0 0.14 0 0.14 +cédule cédule nom f s 0.01 0 0.01 0 +cédât céder ver 24.21 61.35 0 0.07 sub:imp:3s; +cédèrent céder ver 24.21 61.35 0.03 0.41 ind:pas:3p; +cédé céder ver m s 24.21 61.35 4.59 11.96 par:pas; +cédée céder ver f s 24.21 61.35 0 0.2 par:pas; +cédées céder ver f p 24.21 61.35 0.25 0.2 par:pas; +cédés céder ver m p 24.21 61.35 0.13 0.14 par:pas; +cégep cégep nom m s 0.54 0 0.54 0 +cégétiste cégétiste nom s 0 0.14 0 0.07 +cégétistes cégétiste nom p 0 0.14 0 0.07 +céladon céladon nom m s 0.22 0.47 0.22 0.47 +céleri céleri nom m s 1.62 1.01 1.43 0.81 +céleris céleri nom m p 1.62 1.01 0.19 0.2 +céleste céleste adj s 6.48 7.3 4.43 5.81 +célestes céleste adj p 6.48 7.3 2.04 1.49 +célestin célestin nom m s 0.01 0.2 0.01 0 +célestins célestin nom m p 0.01 0.2 0 0.2 +célibat célibat nom m s 1.75 1.35 1.75 1.35 +célibataire célibataire adj s 13.48 4.05 11.02 3.45 +célibataires célibataire nom p 7.69 4.86 3.15 2.64 +célimène célimène nom f s 0.79 0.07 0.79 0.07 +célinien célinien adj m s 0 0.14 0 0.07 +célinienne célinien adj f s 0 0.14 0 0.07 +célèbre célèbre adj s 31.67 33.58 25.98 24.73 +célèbrent célébrer ver 17.5 20.07 0.4 0.54 ind:pre:3p; +célèbres célèbre adj p 31.67 33.58 5.69 8.85 +célébra célébrer ver 17.5 20.07 0.03 0.61 ind:pas:3s; +célébraient célébrer ver 17.5 20.07 0.14 0.95 ind:imp:3p; +célébrais célébrer ver 17.5 20.07 0.04 0.07 ind:imp:1s;ind:imp:2s; +célébrait célébrer ver 17.5 20.07 0.37 1.49 ind:imp:3s; +célébrant célébrer ver 17.5 20.07 0.11 0.81 par:pre; +célébrants célébrant nom m p 0.11 0.74 0 0.14 +célébration célébration nom f s 2.79 2.64 2.3 1.96 +célébrations célébration nom f p 2.79 2.64 0.49 0.68 +célébrer célébrer ver 17.5 20.07 7.92 5.74 inf; +célébrera célébrer ver 17.5 20.07 0.06 0.07 ind:fut:3s; +célébrerais célébrer ver 17.5 20.07 0.01 0.07 cnd:pre:1s; +célébrerait célébrer ver 17.5 20.07 0 0.2 cnd:pre:3s; +célébrerons célébrer ver 17.5 20.07 0.29 0 ind:fut:1p; +célébreront célébrer ver 17.5 20.07 0.17 0 ind:fut:3p; +célébriez célébrer ver 17.5 20.07 0.11 0 ind:imp:2p; +célébrions célébrer ver 17.5 20.07 0.11 0.07 ind:imp:1p; +célébrissime célébrissime adj s 0.09 0.07 0.09 0.07 +célébrité célébrité nom f s 6.42 4.8 4.15 3.51 +célébrités célébrité nom f p 6.42 4.8 2.27 1.28 +célébrons célébrer ver 17.5 20.07 1.27 0.47 imp:pre:1p;ind:pre:1p; +célébrâmes célébrer ver 17.5 20.07 0.1 0.07 ind:pas:1p; +célébrât célébrer ver 17.5 20.07 0 0.14 sub:imp:3s; +célébrèrent célébrer ver 17.5 20.07 0.01 0.14 ind:pas:3p; +célébré célébrer ver m s 17.5 20.07 1.75 2.5 par:pas; +célébrée célébrer ver f s 17.5 20.07 0.2 1.35 par:pas; +célébrées célébrer ver f p 17.5 20.07 0.26 0.81 par:pas; +célébrés célébrer ver m p 17.5 20.07 0.05 0.41 par:pas; +célérifère célérifère nom m s 0 0.07 0 0.07 +célérité célérité nom f s 0.26 0.88 0.26 0.88 +cénacle cénacle nom m s 0.41 0.27 0.41 0.14 +cénacles cénacle nom m p 0.41 0.27 0 0.14 +cénobite cénobite nom m s 0.05 0.07 0.01 0.07 +cénobites cénobite nom m p 0.05 0.07 0.04 0 +cénotaphe cénotaphe nom m s 0.01 0.41 0.01 0.41 +cépage cépage nom m s 0.04 0 0.04 0 +céphaline céphaline nom f s 0.01 0 0.01 0 +céphalique céphalique adj s 0.02 0.2 0.02 0.2 +céphalo_rachidien céphalo_rachidien adj m s 0.3 0 0.3 0 +céphalopode céphalopode nom m s 0.05 0 0.02 0 +céphalopodes céphalopode nom m p 0.05 0 0.03 0 +céphalorachidien céphalorachidien adj m s 0.09 0 0.09 0 +céphalosporine céphalosporine nom f s 0.03 0 0.03 0 +céphalée céphalé nom f s 0.04 0.2 0.04 0.07 +céphalées céphalée nom f p 0.1 0 0.1 0 +cépée cépée nom f s 0 0.2 0 0.14 +cépées cépée nom f p 0 0.2 0 0.07 +céramique céramique nom f s 0.85 3.24 0.61 2.5 +céramiques céramique nom f p 0.85 3.24 0.24 0.74 +céramiste céramiste nom s 0.13 0 0.13 0 +céruléen céruléen adj m s 0 0.74 0 0.47 +céruléens céruléen adj m p 0 0.74 0 0.27 +cérumen cérumen nom m s 0.13 0.41 0.13 0.41 +céruse céruse nom f s 0 0.14 0 0.14 +cérusé cérusé adj m s 0 0.14 0 0.14 +céréale céréale nom f s 4.67 1.69 0.06 0.07 +céréales céréale nom f p 4.67 1.69 4.62 1.62 +céréalier céréalier adj m s 0 0.54 0 0.14 +céréaliers céréalier adj m p 0 0.54 0 0.14 +céréalière céréalier adj f s 0 0.54 0 0.07 +céréalières céréalier adj f p 0 0.54 0 0.2 +cérébelleuse cérébelleux adj f s 0.03 0.07 0.02 0.07 +cérébelleuses cérébelleux adj f p 0.03 0.07 0.01 0 +cérébral cérébral adj m s 11.59 3.31 2.9 0.88 +cérébrale cérébral adj f s 11.59 3.31 6.1 2.23 +cérébralement cérébralement adv 0.04 0.07 0.04 0.07 +cérébrales cérébral adj f p 11.59 3.31 2.09 0.07 +cérébralité cérébralité nom f s 0 0.07 0 0.07 +cérébraux cérébral adj m p 11.59 3.31 0.51 0.14 +cérébro_spinal cérébro_spinal adj f s 0.03 0.14 0.03 0.14 +cérémoniaires cérémoniaire nom m p 0 0.07 0 0.07 +cérémonial cérémonial nom m s 0.69 4.46 0.69 4.39 +cérémoniale cérémonial adj f s 0.13 0.41 0.02 0.07 +cérémonials cérémonial nom m p 0.69 4.46 0 0.07 +cérémonie cérémonie nom f s 23.82 30.95 21.72 23.92 +cérémoniel cérémoniel adj m s 0.09 0.14 0.05 0.07 +cérémonielle cérémoniel adj f s 0.09 0.14 0.02 0 +cérémoniels cérémoniel adj m p 0.09 0.14 0.01 0.07 +cérémonies cérémonie nom f p 23.82 30.95 2.1 7.03 +cérémonieuse cérémonieux adj f s 0.06 3.24 0.01 0.95 +cérémonieusement cérémonieusement adv 0.02 1.76 0.02 1.76 +cérémonieuses cérémonieux adj f p 0.06 3.24 0 0.41 +cérémonieux cérémonieux adj m 0.06 3.24 0.04 1.89 +césar césar nom m s 0.59 1.15 0.01 0.2 +césarien césarien adj m s 0.1 0.07 0.1 0 +césarienne césarienne nom f s 1.64 0.47 1.56 0.41 +césariennes césarienne nom f p 1.64 0.47 0.07 0.07 +césariens césarien adj m p 0.1 0.07 0 0.07 +césars césar nom m p 0.59 1.15 0.58 0.95 +césium césium nom m s 0.2 0 0.2 0 +césure césure nom f s 0.14 0.47 0.14 0.41 +césures césure nom f p 0.14 0.47 0 0.07 +cétacé cétacé nom m s 0.19 0.14 0.03 0.14 +cétacés cétacé nom m p 0.19 0.14 0.16 0 +cétoine cétoine nom f s 0 0.27 0 0.14 +cétoines cétoine nom f p 0 0.27 0 0.14 +cétone cétone nom f s 0.01 0 0.01 0 +cévadille cévadille nom f s 0 0.07 0 0.07 +cévenol cévenol nom m s 0 0.07 0 0.07 +cézigue cézigue nom m s 0 3.51 0 3.51 +côlon côlon nom m s 0.23 0.2 0.23 0.2 +cône cône nom m s 1.08 3.38 0.78 2.57 +cônes cône nom m p 1.08 3.38 0.3 0.81 +côte côte nom f s 35.16 112.5 25.86 90.74 +côtelette côtelette nom f s 3.38 3.45 1.18 1.62 +côtelettes côtelette nom f p 3.38 3.45 2.19 1.82 +côtelé côtelé adj m s 0.17 1.08 0.16 1.08 +côtelée côtelé adj f s 0.17 1.08 0.01 0 +côtes côte nom f p 35.16 112.5 9.31 21.76 +côtes_du_rhône côtes_du_rhône nom m s 0 0.47 0 0.47 +côtier côtier adj m s 1.08 1.96 0.09 0.2 +côtiers côtier adj m p 1.08 1.96 0.01 0.14 +côtière côtier adj f s 1.08 1.96 0.8 0.95 +côtières côtier adj f p 1.08 1.96 0.19 0.68 +côtoie côtoyer ver 2.42 7.43 0.44 1.22 ind:pre:1s;ind:pre:3s; +côtoiements côtoiement nom m p 0 0.07 0 0.07 +côtoient côtoyer ver 2.42 7.43 0.19 0.27 ind:pre:3p; +côtoies côtoyer ver 2.42 7.43 0.17 0.07 ind:pre:2s; +côtoya côtoyer ver 2.42 7.43 0 0.07 ind:pas:3s; +côtoyaient côtoyer ver 2.42 7.43 0.02 1.22 ind:imp:3p; +côtoyais côtoyer ver 2.42 7.43 0.05 0.2 ind:imp:1s;ind:imp:2s; +côtoyait côtoyer ver 2.42 7.43 0.01 1.15 ind:imp:3s; +côtoyant côtoyer ver 2.42 7.43 0.04 0.27 par:pre; +côtoyer côtoyer ver 2.42 7.43 0.94 0.88 inf; +côtoyons côtoyer ver 2.42 7.43 0.02 0.2 ind:pre:1p; +côtoyé côtoyer ver m s 2.42 7.43 0.36 1.22 par:pas; +côtoyée côtoyer ver f s 2.42 7.43 0.01 0 par:pas; +côtoyées côtoyer ver f p 2.42 7.43 0.01 0.14 par:pas; +côtoyés côtoyer ver m p 2.42 7.43 0.17 0.54 par:pas; +côté côté nom m s 285.99 566.49 250.51 497.43 +côtés côté nom m p 285.99 566.49 35.48 69.05 +d d pre 54.68 2.97 54.68 2.97 +d_ d_ pre 7224.74 11876.35 7224.74 11876.35 +d_abord d_abord adv_sup 175.45 169.32 175.45 169.32 +d_emblée d_emblée adv 1.31 8.31 1.31 8.31 +d_ores_et_déjà d_ores_et_déjà adv 0.26 1.28 0.26 1.28 +da da ono 8.02 3.24 8.02 3.24 +dab dab nom m s 0.17 1.35 0.17 1.28 +daba daba nom f s 0.01 0 0.01 0 +dabe dabe nom m s 0 1.42 0 1.42 +dabs dab nom m p 0.17 1.35 0 0.07 +dabuche dabuche nom f s 0 0.54 0 0.47 +dabuches dabuche nom f p 0 0.54 0 0.07 +dace dace adj s 0.04 0.61 0.03 0.07 +daces dace adj p 0.04 0.61 0.01 0.54 +dache dache nom m s 0 0.27 0 0.27 +dacique dacique adj s 0 0.14 0 0.14 +dacron dacron nom m s 0.02 0.07 0.02 0.07 +dactyle dactyle nom m s 0 0.2 0 0.07 +dactyles dactyle nom m p 0 0.2 0 0.14 +dactylo dactylo nom s 0.93 4.66 0.73 2.97 +dactylographe dactylographe nom s 0.1 0.34 0 0.34 +dactylographes dactylographe nom p 0.1 0.34 0.1 0 +dactylographie dactylographie nom f s 0.04 0.41 0.04 0.41 +dactylographier dactylographier ver 0.09 0.61 0.06 0.2 inf; +dactylographié dactylographié adj m s 0.11 1.08 0.06 0.2 +dactylographiée dactylographié adj f s 0.11 1.08 0.04 0.34 +dactylographiées dactylographié adj f p 0.11 1.08 0 0.41 +dactylographiés dactylographié adj m p 0.11 1.08 0.01 0.14 +dactyloptères dactyloptère nom m p 0.02 0 0.02 0 +dactylos dactylo nom p 0.93 4.66 0.2 1.69 +dactyloscopie dactyloscopie nom f s 0.11 0 0.11 0 +dada dada nom m s 1.9 2.57 1.8 1.96 +dadais dadais nom m 0.34 1.28 0.34 1.28 +dadas dada nom m p 1.9 2.57 0.1 0.61 +dadaïsme dadaïsme nom m s 0.01 0 0.01 0 +dadaïste dadaïste adj f s 0.01 0.07 0.01 0 +dadaïstes dadaïste nom p 0.01 0.07 0.01 0.07 +dague dague nom f s 2.46 2.09 2.19 1.55 +daguerréotype daguerréotype nom m s 0.1 0.34 0.1 0.27 +daguerréotypes daguerréotype nom m p 0.1 0.34 0 0.07 +dagues dague nom f p 2.46 2.09 0.27 0.54 +daguet daguet nom m s 0 0.41 0 0.34 +daguets daguet nom m p 0 0.41 0 0.07 +dagué daguer ver m s 0 0.07 0 0.07 par:pas; +dahlia dahlia nom m s 0.02 2.5 0 0.2 +dahlias dahlia nom m p 0.02 2.5 0.02 2.3 +dahoméenne dahoméen adj f s 0 0.07 0 0.07 +dahu dahu nom m s 0.19 0.14 0.18 0.14 +dahus dahu nom m p 0.19 0.14 0.01 0 +daigna daigner ver 4.41 9.39 0 1.69 ind:pas:3s; +daignaient daigner ver 4.41 9.39 0 0.34 ind:imp:3p; +daignait daigner ver 4.41 9.39 0.13 1.49 ind:imp:3s; +daignant daigner ver 4.41 9.39 0.01 0.2 par:pre; +daigne daigner ver 4.41 9.39 1.09 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +daignent daigner ver 4.41 9.39 0.07 0.27 ind:pre:3p; +daigner daigner ver 4.41 9.39 0.02 0.34 inf; +daignera daigner ver 4.41 9.39 0.03 0.27 ind:fut:3s; +daigneraient daigner ver 4.41 9.39 0.01 0.07 cnd:pre:3p; +daignerais daigner ver 4.41 9.39 0 0.07 cnd:pre:1s; +daignerait daigner ver 4.41 9.39 0.19 0 cnd:pre:3s; +daigneras daigner ver 4.41 9.39 0.01 0 ind:fut:2s; +daignes daigner ver 4.41 9.39 0.09 0 ind:pre:2s; +daignez daigner ver 4.41 9.39 1.86 0.47 imp:pre:2p;ind:pre:2p; +daignons daigner ver 4.41 9.39 0.01 0 imp:pre:1p; +daignât daigner ver 4.41 9.39 0 0.34 sub:imp:3s; +daignèrent daigner ver 4.41 9.39 0 0.07 ind:pas:3p; +daigné daigner ver m s 4.41 9.39 0.89 1.35 par:pas; +daim daim nom m s 1.65 5.74 1.41 5.14 +daims daim nom m p 1.65 5.74 0.25 0.61 +daine daine nom f s 0 0.07 0 0.07 +daiquiri daiquiri nom m s 0.41 0.14 0.27 0.14 +daiquiris daiquiri nom m p 0.41 0.14 0.14 0 +dais dais nom m 0.23 3.04 0.23 3.04 +dakarois dakarois adj m s 0 0.14 0 0.07 +dakaroise dakarois adj f s 0 0.14 0 0.07 +dakin dakin nom m s 0.03 0.07 0.03 0.07 +dakotas dakota nom p 0.05 0 0.05 0 +dal dal nom m s 0.01 0 0.01 0 +dalaï_lama dalaï_lama nom m s 0 0.2 0 0.2 +dale dale nom m s 0.16 0 0.16 0 +dalinienne dalinien adj f s 0 0.07 0 0.07 +dallage dallage nom m s 0.04 3.04 0.04 2.91 +dallages dallage nom m p 0.04 3.04 0 0.14 +dalle dalle nom f s 13 29.19 12.35 13.38 +daller daller ver 1.62 3.99 0.43 0 inf; +dalles dalle nom f p 13 29.19 0.65 15.81 +dallé daller ver m s 1.62 3.99 0 0.88 par:pas; +dallée daller ver f s 1.62 3.99 0 0.88 par:pas; +dallées daller ver f p 1.62 3.99 0 0.54 par:pas; +dallés daller ver m p 1.62 3.99 0 0.34 par:pas; +dalmate dalmate adj s 0.3 0.41 0.3 0.27 +dalmates dalmate adj p 0.3 0.41 0 0.14 +dalmatien dalmatien nom m s 0.33 0.2 0.14 0 +dalmatienne dalmatien nom f s 0.33 0.2 0.11 0 +dalmatiens dalmatien nom m p 0.33 0.2 0.08 0.2 +dalmatique dalmatique nom f s 0.02 0.68 0.02 0.54 +dalmatiques dalmatique nom f p 0.02 0.68 0 0.14 +daltonien daltonien adj m s 0.48 0 0.28 0 +daltonienne daltonien adj f s 0.48 0 0.16 0 +daltoniennes daltonien adj f p 0.48 0 0.01 0 +daltoniens daltonien adj m p 0.48 0 0.03 0 +daltonisme daltonisme nom m s 0.02 0 0.02 0 +daltons dalton nom m p 0 0.07 0 0.07 +dam dam nom m s 0.81 1.69 0.7 1.62 +damage damage nom m s 0.1 0 0.1 0 +damas damas nom m 0.42 0.61 0.42 0.61 +damasquin damasquin nom m s 0 0.14 0 0.07 +damasquinage damasquinage nom m s 0.01 0 0.01 0 +damasquinerie damasquinerie nom f s 0 0.07 0 0.07 +damasquins damasquin nom m p 0 0.14 0 0.07 +damasquinure damasquinure nom f s 0 0.07 0 0.07 +damasquiné damasquiné adj m s 0 0.27 0 0.07 +damasquinée damasquiné adj f s 0 0.27 0 0.07 +damasquinés damasquiné adj m p 0 0.27 0 0.14 +damassé damassé adj m s 0.05 1.35 0 0.27 +damassée damassé adj f s 0.05 1.35 0.03 0.81 +damassées damassé adj f p 0.05 1.35 0.02 0.2 +damassés damassé adj m p 0.05 1.35 0 0.07 +dame dame ono 1.01 1.49 1.01 1.49 +dame_jeanne dame_jeanne nom f s 0.01 0.2 0.01 0.07 +dament damer ver 11.6 3.78 0 0.07 ind:pre:3p; +damer damer ver 11.6 3.78 0.04 0.14 inf; +dameret dameret nom m s 0 0.07 0 0.07 +dameriez damer ver 11.6 3.78 0.01 0 cnd:pre:2p; +dames dame nom f p 111.2 151.35 24.7 45.2 +dame_jeanne dame_jeanne nom f p 0.01 0.2 0 0.14 +damez damer ver 11.6 3.78 0.02 0 imp:pre:2p; +damier damier nom m s 0.47 2.57 0.42 1.96 +damiers damier nom m p 0.47 2.57 0.04 0.61 +damnable damnable adj f s 0.01 0.2 0.01 0 +damnables damnable adj p 0.01 0.2 0 0.2 +damnait damner ver 4.46 3.78 0 0.07 ind:imp:3s; +damnant damner ver 4.46 3.78 0 0.07 par:pre; +damnation damnation nom f s 1.7 3.92 1.7 3.72 +damnations damnation nom f p 1.7 3.92 0 0.2 +damne damner ver 4.46 3.78 0.14 0.61 ind:pre:1s;ind:pre:3s; +damned damned ono 0.26 0.41 0.26 0.41 +damnent damner ver 4.46 3.78 0 0.14 ind:pre:3p; +damner damner ver 4.46 3.78 0.61 0.88 inf; +damnera damner ver 4.46 3.78 0.17 0.07 ind:fut:3s; +damneraient damner ver 4.46 3.78 0.02 0 cnd:pre:3p; +damnerais damner ver 4.46 3.78 0.03 0.41 cnd:pre:1s; +damnez damner ver 4.46 3.78 0.02 0 imp:pre:2p; +damné damner ver m s 4.46 3.78 2.12 0.68 par:pas; +damnée damné adj f s 2.82 2.23 1.87 0.81 +damnées damné adj f p 2.82 2.23 0.28 0.41 +damnés damné nom m p 2.57 3.24 1.33 2.23 +damoiseau damoiseau nom m s 16.03 20 0.16 0 +damoiselle damoiselle nom f s 0.6 0.14 0.55 0.14 +damoiselles damoiselle nom f p 0.6 0.14 0.05 0 +dams dam nom m p 0.81 1.69 0.11 0.07 +damé damer ver m s 11.6 3.78 0.04 0 par:pas; +damée damer ver f s 11.6 3.78 0 0.07 par:pas; +damées damer ver f p 11.6 3.78 0 0.14 par:pas; +dan dan nom m s 0.49 0.07 0.49 0.07 +danaïde danaïde nom f s 0 0.07 0 0.07 +dancing dancing nom m s 1.15 3.51 0.94 2.7 +dancings dancing nom m p 1.15 3.51 0.2 0.81 +dandina dandiner ver 0.26 7.3 0 0.34 ind:pas:3s; +dandinaient dandiner ver 0.26 7.3 0 0.34 ind:imp:3p; +dandinais dandiner ver 0.26 7.3 0 0.07 ind:imp:1s; +dandinait dandiner ver 0.26 7.3 0.01 1.76 ind:imp:3s; +dandinant dandiner ver 0.26 7.3 0.03 2.57 par:pre; +dandine dandiner ver 0.26 7.3 0.09 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dandinement dandinement nom m s 0 0.74 0 0.54 +dandinements dandinement nom m p 0 0.74 0 0.2 +dandinent dandiner ver 0.26 7.3 0.02 0.2 ind:pre:3p; +dandiner dandiner ver 0.26 7.3 0.09 0.88 inf; +dandinez dandiner ver 0.26 7.3 0.02 0.07 imp:pre:2p;ind:pre:2p; +dandinée dandiner ver f s 0.26 7.3 0 0.07 par:pas; +dandinés dandiner ver m p 0.26 7.3 0 0.07 par:pas; +dandy dandy nom m s 2.87 3.51 2.61 3.18 +dandys dandy nom m p 2.87 3.51 0.26 0.34 +dandysme dandysme nom m s 0 0.41 0 0.41 +danger danger nom m s 80.61 55.27 76.73 45.2 +dangereuse dangereux adj f s 101.84 47.57 13.61 10.27 +dangereusement dangereusement adv 2.13 5.88 2.13 5.88 +dangereuses dangereux adj f p 101.84 47.57 4.75 4.53 +dangereux dangereux adj m 101.84 47.57 83.48 32.77 +dangerosité dangerosité nom f s 0.01 0.14 0.01 0.14 +dangers danger nom m p 80.61 55.27 3.87 10.07 +dano dano nom m s 0.25 0.07 0.25 0.07 +danois danois adj m 3.37 2.03 2.77 1.22 +danoise danois adj f s 3.37 2.03 0.57 0.34 +danoises danois adj f p 3.37 2.03 0.02 0.47 +dans dans pre 4658.59 8296.08 4658.59 8296.08 +dansa danser ver 137.36 92.57 0.07 1.15 ind:pas:3s; +dansai danser ver 137.36 92.57 0 0.14 ind:pas:1s; +dansaient danser ver 137.36 92.57 1.2 8.99 ind:imp:3p; +dansais danser ver 137.36 92.57 2.43 1.69 ind:imp:1s;ind:imp:2s; +dansait danser ver 137.36 92.57 3.15 13.85 ind:imp:3s; +dansant danser ver 137.36 92.57 2.25 5.54 par:pre; +dansante dansant adj f s 2.44 6.89 0.57 1.76 +dansantes dansant adj f p 2.44 6.89 0.64 1.96 +dansants dansant adj m p 2.44 6.89 0.41 0.61 +danse danse nom f s 51.23 35.27 46.92 29.19 +dansent danser ver 137.36 92.57 5.58 5.54 ind:pre:3p; +danser danser ver 137.36 92.57 70.06 35.41 inf;; +dansera danser ver 137.36 92.57 1.44 0.2 ind:fut:3s; +danserai danser ver 137.36 92.57 1.3 0.2 ind:fut:1s; +danseraient danser ver 137.36 92.57 0.01 0.27 cnd:pre:3p; +danserais danser ver 137.36 92.57 0.19 0.14 cnd:pre:1s;cnd:pre:2s; +danserait danser ver 137.36 92.57 0.25 0.34 cnd:pre:3s; +danseras danser ver 137.36 92.57 0.34 0.2 ind:fut:2s; +danserez danser ver 137.36 92.57 0.53 0 ind:fut:2p; +danseriez danser ver 137.36 92.57 0.01 0 cnd:pre:2p; +danserions danser ver 137.36 92.57 0.03 0 cnd:pre:1p; +danserons danser ver 137.36 92.57 0.31 0.07 ind:fut:1p; +danseront danser ver 137.36 92.57 0.14 0.2 ind:fut:3p; +danses danser ver 137.36 92.57 6.81 0.47 ind:pre:2s;sub:pre:2s; +danseur danseur nom m s 23.05 25.68 5.85 5 +danseurs danseur nom m p 23.05 25.68 3.64 5.95 +danseuse danseur nom f s 23.05 25.68 10.05 8.58 +danseuses danseur nom f p 23.05 25.68 3.51 6.15 +dansez danser ver 137.36 92.57 6.41 0.74 imp:pre:2p;ind:pre:2p; +dansiez danser ver 137.36 92.57 0.37 0.07 ind:imp:2p; +dansions danser ver 137.36 92.57 0.56 0.68 ind:imp:1p; +dansons danser ver 137.36 92.57 4.33 0.88 imp:pre:1p;ind:pre:1p; +dansota dansoter ver 0 0.34 0 0.07 ind:pas:3s; +dansotait dansoter ver 0 0.34 0 0.27 ind:imp:3s; +dansotter dansotter ver 0 0.07 0 0.07 inf; +dansâmes danser ver 137.36 92.57 0 0.07 ind:pas:1p; +dansèrent danser ver 137.36 92.57 0.15 1.35 ind:pas:3p; +dansé danser ver m s 137.36 92.57 5.94 4.32 par:pas; +dansée danser ver f s 137.36 92.57 0.05 0.27 par:pas; +dantesque dantesque adj s 0.29 0.34 0.18 0.2 +dantesques dantesque adj p 0.29 0.34 0.11 0.14 +danubien danubien adj m s 0 0.2 0 0.07 +danubienne danubien adj f s 0 0.2 0 0.07 +danubiennes danubien adj f p 0 0.2 0 0.07 +dao dao nom m s 0.09 0 0.09 0 +daphné daphné nom m s 0.13 0.07 0.13 0.07 +darce darce nom f s 0.02 0 0.02 0 +dard dard nom m s 1.61 2.84 1.3 1.55 +darda darder ver 0.16 4.19 0 0.2 ind:pas:3s; +dardaient darder ver 0.16 4.19 0 0.14 ind:imp:3p; +dardait darder ver 0.16 4.19 0 0.74 ind:imp:3s; +dardant darder ver 0.16 4.19 0.01 0.68 par:pre; +darde darder ver 0.16 4.19 0.03 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dardent darder ver 0.16 4.19 0.01 0.07 ind:pre:3p; +darder darder ver 0.16 4.19 0.1 0.07 inf; +dardillonnaient dardillonner ver 0 0.14 0 0.07 ind:imp:3p; +dardillonne dardillonner ver 0 0.14 0 0.07 ind:pre:3s; +dards dard nom m p 1.61 2.84 0.31 1.28 +dardé darder ver m s 0.16 4.19 0.01 0.61 par:pas; +dardée darder ver f s 0.16 4.19 0 0.61 par:pas; +dardées darder ver f p 0.16 4.19 0 0.41 par:pas; +dardés darder ver m p 0.16 4.19 0 0.2 par:pas; +dare_dare dare_dare adv 0.21 1.55 0.04 0.27 +dare_dare dare_dare adv 0.21 1.55 0.17 1.28 +darioles dariole nom f p 0.01 0 0.01 0 +darne darne nom f s 0 0.14 0 0.14 +daron daron nom m s 0.04 2.5 0.01 0.88 +daronne daron nom f s 0.04 2.5 0 1.01 +daronnes daron nom f p 0.04 2.5 0 0.14 +darons daron nom m p 0.04 2.5 0.02 0.47 +darse darse nom f s 0 0.61 0 0.54 +darses darse nom f p 0 0.61 0 0.07 +dartres dartre nom f p 0 0.14 0 0.14 +dartreuses dartreux adj f p 0 0.07 0 0.07 +dasein dasein nom m s 0 0.07 0 0.07 +data dater ver 16.69 17.23 0.46 0 ind:pas:3s; +datable datable adj m s 0 0.07 0 0.07 +datage datage nom m s 0.01 0 0.01 0 +dataient dater ver 16.69 17.23 0.12 0.95 ind:imp:3p; +datait dater ver 16.69 17.23 0.34 3.18 ind:imp:3s; +datant dater ver 16.69 17.23 1.01 2.57 par:pre; +datation datation nom f s 0.2 0.14 0.2 0.14 +datcha datcha nom f s 1.74 1.15 1.74 0.74 +datchas datcha nom f p 1.74 1.15 0 0.41 +date date nom f s 31.41 45.74 26.88 36.62 +datent dater ver 16.69 17.23 2.35 0.95 ind:pre:3p; +dater dater ver 16.69 17.23 1.48 1.55 inf; +daterai dater ver 16.69 17.23 0 0.07 ind:fut:1s; +daterais dater ver 16.69 17.23 0 0.07 cnd:pre:1s; +daterait dater ver 16.69 17.23 0.03 0.14 cnd:pre:3s; +dates date nom f p 31.41 45.74 4.53 9.12 +dateur dateur adj m s 0.01 0 0.01 0 +dateur dateur nom m s 0.01 0 0.01 0 +datez dater ver 16.69 17.23 0.04 0 imp:pre:2p;ind:pre:2p; +datif datif nom m s 0.02 0 0.02 0 +datte datte nom f s 0.95 2.64 0.24 0.14 +dattes datte nom f p 0.95 2.64 0.71 2.5 +dattier dattier nom m s 0.01 1.62 0 0.68 +dattiers dattier nom m p 0.01 1.62 0.01 0.95 +datura datura nom m s 0.02 0.2 0.02 0 +daturas datura nom m p 0.02 0.2 0 0.2 +daté dater ver m s 16.69 17.23 0.81 1.82 par:pas; +datée dater ver f s 16.69 17.23 0.34 1.42 par:pas; +datées dater ver f p 16.69 17.23 0.09 0.34 par:pas; +datés dater ver m p 16.69 17.23 0.09 0.41 par:pas; +daubait dauber ver 0.02 0.2 0 0.07 ind:imp:3s; +daube daube nom f s 0.99 0.68 0.98 0.54 +dauber dauber ver 0.02 0.2 0.01 0.14 inf; +daubes daube nom f p 0.99 0.68 0.01 0.14 +daubière daubière nom f s 0.01 0 0.01 0 +daubé dauber ver m s 0.02 0.2 0.01 0 par:pas; +dauphin dauphin nom m s 4.71 11.82 1.76 1.22 +dauphinat dauphinat nom m s 0 0.2 0 0.2 +dauphine dauphin nom f s 4.71 11.82 0.32 9.26 +dauphines dauphin nom f p 4.71 11.82 0 0.14 +dauphinois dauphinois adj m s 0.27 0.41 0.27 0.41 +dauphins dauphin nom m p 4.71 11.82 2.63 1.22 +daurade daurade nom f s 0.3 0.95 0.29 0.74 +daurades daurade nom f p 0.3 0.95 0.01 0.2 +davantage davantage adv_sup 29.56 97.84 29.56 97.84 +davier davier nom m s 0.02 0.2 0.02 0.2 +daya daya nom f s 4.13 0 4.13 0 +daïmios daïmio nom m p 0 0.14 0 0.14 +daïquiri daïquiri nom m s 0.14 0.14 0.01 0.14 +daïquiris daïquiri nom m p 0.14 0.14 0.14 0 +dc dc adj_num 0.58 0.07 0.58 0.07 +de de pre 25220.86 38928.92 25220.86 38928.92 +de_amicis de_amicis nom m s 0 0.07 0 0.07 +de_auditu de_auditu adv 0 0.07 0 0.07 +de_facto de_facto adv 0.16 0.07 0.16 0.07 +de_guingois de_guingois adv 0.01 2.64 0.01 2.64 +de_plano de_plano adv 0.04 0 0.04 0 +de_profundis de_profundis nom m 0.06 0.41 0.06 0.41 +de_santis de_santis nom m s 0.1 0 0.1 0 +de_traviole de_traviole adv 0.43 1.28 0.43 1.28 +de_visu de_visu adv 1.02 0.54 1.02 0.54 +deadline deadline nom s 0.16 0 0.16 0 +deal deal nom m s 8.76 0.54 8.05 0.47 +dealaient dealer ver 5.27 1.42 0.01 0.07 ind:imp:3p; +dealais dealer ver 5.27 1.42 0.12 0 ind:imp:1s;ind:imp:2s; +dealait dealer ver 5.27 1.42 0.38 0.14 ind:imp:3s; +dealant dealer ver 5.27 1.42 0.06 0 par:pre; +deale dealer ver 5.27 1.42 1.14 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dealent dealer ver 5.27 1.42 0.31 0.07 ind:pre:3p; +dealer dealer nom m s 12.65 1.62 8.43 1.08 +dealera dealer ver 5.27 1.42 0.16 0 ind:fut:3s; +dealeront dealer ver 5.27 1.42 0.02 0 ind:fut:3p; +dealers dealer nom m p 12.65 1.62 4.22 0.54 +deales dealer ver 5.27 1.42 0.38 0 ind:pre:2s; +dealez dealer ver 5.27 1.42 0.03 0 ind:pre:2p; +deals deal nom m p 8.76 0.54 0.71 0.07 +dealé dealer ver m s 5.27 1.42 0.1 0 par:pas; +debater debater nom m s 0 0.07 0 0.07 +debout debout adv_sup 91.81 158.85 91.81 158.85 +decca decca nom m s 0.26 0.07 0.26 0.07 +deck deck nom m s 0.22 0 0.22 0 +decrescendo decrescendo nom m s 0.1 0.14 0.1 0.14 +dedans dedans adv_sup 76.55 39.46 76.55 39.46 +degré degré nom m s 21.3 27.97 7.93 16.55 +degrés degré nom m p 21.3 27.97 13.37 11.42 +dehors dehors ono 30.23 0.61 30.23 0.61 +delco delco nom m s 0.27 0.34 0.27 0.34 +delirium delirium nom m s 0.09 0.41 0.09 0.41 +delirium_tremens delirium_tremens nom m 0.07 0.27 0.07 0.27 +della_francesca della_francesca nom m s 0.34 0.2 0.34 0.2 +della_porta della_porta nom m s 0 0.07 0 0.07 +della_robbia della_robbia nom m s 0 0.07 0 0.07 +delphinidés delphinidé nom m p 0.01 0 0.01 0 +delphinium delphinium nom m s 0.04 0 0.02 0 +delphiniums delphinium nom m p 0.04 0 0.02 0 +delta delta nom m s 6.59 2.09 6.5 1.82 +delta_plane delta_plane nom m s 0.03 0.07 0.03 0.07 +deltaplane deltaplane nom m s 0.26 0 0.26 0 +deltas delta nom m p 6.59 2.09 0.09 0.27 +deltoïde deltoïde nom m s 0.16 0.2 0.06 0 +deltoïdes deltoïde nom m p 0.16 0.2 0.1 0.2 +delà delà adv 3.73 12.7 3.73 12.7 +demain demain adv_sup 425.85 134.12 425.85 134.12 +demains demain nom_sup m p 50.4 21.55 0 0.14 +demanda demander ver 909.77 984.46 3.9 270.74 ind:pas:3s; +demandai demander ver 909.77 984.46 0.6 31.49 ind:pas:1s; +demandaient demander ver 909.77 984.46 1.8 10 ind:imp:3p; +demandais demander ver 909.77 984.46 35.69 30.07 ind:imp:1s;ind:imp:2s; +demandait demander ver 909.77 984.46 11.55 77.03 ind:imp:3s; +demandant demander ver 909.77 984.46 5.41 21.76 par:pre; +demande demander ver 909.77 984.46 289.34 208.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +demandent demander ver 909.77 984.46 16.13 10.88 ind:pre:3p;sub:pre:3p; +demander demander ver 909.77 984.46 188.86 144.66 inf;;inf;;inf;;inf;;inf;; +demandera demander ver 909.77 984.46 7.56 3.58 ind:fut:3s; +demanderai demander ver 909.77 984.46 11.46 4.05 ind:fut:1s; +demanderaient demander ver 909.77 984.46 0.06 0.74 cnd:pre:3p; +demanderais demander ver 909.77 984.46 5.55 1.55 cnd:pre:1s;cnd:pre:2s; +demanderait demander ver 909.77 984.46 1.48 5.41 cnd:pre:3s; +demanderas demander ver 909.77 984.46 2.73 1.28 ind:fut:2s; +demanderesse demandeur nom f s 0.78 0.34 0.04 0 +demanderez demander ver 909.77 984.46 1.48 1.22 ind:fut:2p; +demanderiez demander ver 909.77 984.46 0.87 0.14 cnd:pre:2p; +demanderons demander ver 909.77 984.46 1.06 0.27 ind:fut:1p; +demanderont demander ver 909.77 984.46 1.67 0.61 ind:fut:3p; +demandes demander ver 909.77 984.46 32.92 5.68 ind:pre:2s;sub:pre:2s; +demandeur demandeur nom m s 0.78 0.34 0.2 0.14 +demandeurs demandeur nom m p 0.78 0.34 0.54 0.2 +demandeuse demandeur nom f s 0.78 0.34 0.01 0 +demandez demander ver 909.77 984.46 51.74 12.23 imp:pre:2p;ind:pre:2p; +demandiez demander ver 909.77 984.46 2 0.88 ind:imp:2p; +demandions demander ver 909.77 984.46 0.79 1.62 ind:imp:1p; +demandons demander ver 909.77 984.46 12.09 2.3 imp:pre:1p;ind:pre:1p; +demandâmes demander ver 909.77 984.46 0 0.07 ind:pas:1p; +demandât demander ver 909.77 984.46 0 1.76 sub:imp:3s; +demandèrent demander ver 909.77 984.46 0.66 2.7 ind:pas:3p; +demandé demander ver m s 909.77 984.46 212.89 128.92 par:pas;par:pas;par:pas; +demandée demander ver f s 909.77 984.46 6.81 2.7 par:pas; +demandées demander ver f p 909.77 984.46 0.65 0.74 par:pas; +demandés demander ver m p 909.77 984.46 2.02 1.22 par:pas; +demeura demeurer ver 13.18 128.85 0.27 18.65 ind:pas:3s; +demeurai demeurer ver 13.18 128.85 0.02 3.24 ind:pas:1s; +demeuraient demeurer ver 13.18 128.85 0.16 6.49 ind:imp:3p; +demeurais demeurer ver 13.18 128.85 0 2.23 ind:imp:1s; +demeurait demeurer ver 13.18 128.85 0.45 24.59 ind:imp:3s; +demeurant demeurer ver 13.18 128.85 0.27 13.85 par:pre; +demeurassent demeurer ver 13.18 128.85 0 0.27 sub:imp:3p; +demeure demeure nom f s 13.34 28.11 12.24 20.07 +demeurent demeurer ver 13.18 128.85 1.99 5.34 ind:pre:3p; +demeurer demeurer ver 13.18 128.85 1.86 14.12 inf; +demeurera demeurer ver 13.18 128.85 0.41 1.01 ind:fut:3s; +demeurerai demeurer ver 13.18 128.85 0.09 0.27 ind:fut:1s; +demeureraient demeurer ver 13.18 128.85 0 0.34 cnd:pre:3p; +demeurerais demeurer ver 13.18 128.85 0 0.2 cnd:pre:1s; +demeurerait demeurer ver 13.18 128.85 0 1.49 cnd:pre:3s; +demeureras demeurer ver 13.18 128.85 0.18 0 ind:fut:2s; +demeurerez demeurer ver 13.18 128.85 0.06 0.07 ind:fut:2p; +demeurerions demeurer ver 13.18 128.85 0 0.07 cnd:pre:1p; +demeurerons demeurer ver 13.18 128.85 0.13 0.07 ind:fut:1p; +demeureront demeurer ver 13.18 128.85 0.03 0.54 ind:fut:3p; +demeures demeure nom f p 13.34 28.11 1.1 8.04 +demeurez demeurer ver 13.18 128.85 1.02 0.47 imp:pre:2p;ind:pre:2p; +demeuriez demeurer ver 13.18 128.85 0.14 0.2 ind:imp:2p; +demeurions demeurer ver 13.18 128.85 0 0.68 ind:imp:1p; +demeurons demeurer ver 13.18 128.85 0.12 1.01 imp:pre:1p;ind:pre:1p; +demeurâmes demeurer ver 13.18 128.85 0 0.47 ind:pas:1p; +demeurât demeurer ver 13.18 128.85 0.01 1.28 sub:imp:3s; +demeurèrent demeurer ver 13.18 128.85 0 4.12 ind:pas:3p; +demeuré demeuré nom m s 2.92 2.23 2.06 1.28 +demeurée demeuré nom f s 2.92 2.23 0.31 0.47 +demeurées demeuré adj f p 0.8 2.36 0.01 0.2 +demeurés demeuré nom m p 2.92 2.23 0.55 0.41 +demi demi adj_sup m s 38.26 43.51 25.18 19.12 +demi_barbare demi_barbare nom s 0 0.07 0 0.07 +demi_bas demi_bas nom m 0.01 0.14 0.01 0.14 +demi_bonheur demi_bonheur nom m s 0 0.07 0 0.07 +demi_botte demi_botte nom f p 0 0.14 0 0.14 +demi_bouteille demi_bouteille nom f s 0.41 0.47 0.41 0.47 +demi_brigade demi_brigade nom f s 0 0.68 0 0.61 +demi_brigade demi_brigade nom f p 0 0.68 0 0.07 +demi_cent demi_cent nom m s 0.01 0.07 0.01 0.07 +demi_centimètre demi_centimètre nom m s 0.02 0.2 0.02 0.2 +demi_centre demi_centre nom m s 0 0.07 0 0.07 +demi_cercle demi_cercle nom m s 0.12 4.8 0.11 4.46 +demi_cercle demi_cercle nom m p 0.12 4.8 0.01 0.34 +demi_chagrin demi_chagrin nom m s 0 0.07 0 0.07 +demi_clair demi_clair nom m s 0 0.07 0 0.07 +demi_clarté demi_clarté nom f s 0 0.2 0 0.2 +demi_cloison demi_cloison nom f s 0 0.2 0 0.2 +demi_coma demi_coma nom m s 0.01 0.27 0.01 0.27 +demi_confidence demi_confidence nom f s 0 0.07 0 0.07 +demi_conscience demi_conscience nom f s 0 0.2 0 0.2 +demi_cylindre demi_cylindre nom m s 0 0.14 0 0.14 +demi_degré demi_degré nom m s 0.01 0 0.01 0 +demi_deuil demi_deuil nom m s 0 0.34 0 0.34 +demi_dieu demi_dieu nom m s 0.47 0.47 0.47 0.47 +demi_dieux demi_dieux nom m p 0.16 0.47 0.16 0.47 +demi_dose demi_dose nom f s 0.03 0 0.03 0 +demi_douzaine demi_douzaine nom f s 1.34 6.55 1.34 6.55 +demi_dévêtu demi_dévêtu adj m s 0 0.14 0 0.07 +demi_dévêtu demi_dévêtu adj f s 0 0.14 0 0.07 +demi_figure demi_figure nom f s 0 0.07 0 0.07 +demi_finale demi_finale nom f s 1.13 0 0.87 0 +demi_finale demi_finale nom f p 1.13 0 0.26 0 +demi_finaliste demi_finaliste nom s 0.01 0 0.01 0 +demi_fond demi_fond nom m s 0.21 0.14 0.21 0.14 +demi_fou demi_fou nom m s 0.14 0.14 0.14 0 +demi_fou demi_fou nom m p 0.14 0.14 0 0.14 +demi_frère demi_frère nom m s 2.7 2.91 2.17 2.91 +demi_frère demi_frère nom m p 2.7 2.91 0.53 0 +demi_gros demi_gros nom m 0.01 0.47 0.01 0.47 +demi_heure demi_heure nom f s 26.65 23.18 26.65 22.43 +heur heur nom f p 0.28 1.15 0.22 0.07 +demi_jour demi_jour nom m s 0.02 1.28 0.02 1.28 +demi_journée demi_journée nom f s 1.65 1.08 1.6 1.01 +demi_journée demi_journée nom f p 1.65 1.08 0.05 0.07 +demi_juif demi_juif nom m s 0.01 0 0.01 0 +demi_kilomètre demi_kilomètre nom m s 0.14 0.14 0.14 0.14 +demi_liberté demi_liberté nom f s 0 0.07 0 0.07 +demi_lieue demi_lieue nom f s 0.3 0.41 0.3 0.41 +demi_litre demi_litre nom m s 0.67 0.81 0.67 0.81 +demi_livre demi_livre nom f s 0.12 0.34 0.12 0.34 +demi_longueur demi_longueur nom f s 0.06 0 0.06 0 +demi_louis demi_louis nom m 0 0.07 0 0.07 +demi_lueur demi_lueur nom f s 0 0.07 0 0.07 +demi_lumière demi_lumière nom f s 0 0.07 0 0.07 +demi_lune demi_lune nom f s 1.03 2.36 0.92 2.23 +demi_lune demi_lune nom f p 1.03 2.36 0.11 0.14 +demi_luxe demi_luxe nom m s 0 0.07 0 0.07 +demi_mal demi_mal nom m s 0 0.07 0 0.07 +demi_mensonge demi_mensonge nom m s 0.01 0.07 0.01 0.07 +demi_mesure demi_mesure nom f s 0.39 0.54 0.14 0.14 +demi_mesure demi_mesure nom f p 0.39 0.54 0.25 0.41 +demi_mille demi_mille nom m 0 0.07 0 0.07 +demi_milliard demi_milliard nom m s 0.87 0.07 0.87 0.07 +demi_millimètre demi_millimètre nom m s 0 0.07 0 0.07 +demi_million demi_million nom m s 3.08 0.41 3.08 0.41 +demi_minute demi_minute nom f s 0.04 0.07 0.04 0.07 +demi_mois demi_mois nom m 0.15 0 0.15 0 +demi_mondain demi_mondain nom f s 0 0.74 0 0.27 +demi_mondain demi_mondain nom f p 0 0.74 0 0.47 +demi_monde demi_monde nom m s 0.01 0.14 0.01 0.14 +demi_mort demi_mort nom m s 0.26 0.27 0.11 0.2 +demi_mort demi_mort nom f s 0.26 0.27 0.04 0.07 +demi_mort demi_mort nom m p 0.26 0.27 0.1 0 +demi_mot demi_mot nom m s 0.19 1.49 0.19 1.49 +demi_muid demi_muid nom m s 0 0.07 0 0.07 +demi_mètre demi_mètre nom m s 0 0.54 0 0.54 +demi_nu demi_nu adv 0.14 0 0.14 0 +demi_nuit demi_nuit nom f s 0.02 0.27 0.02 0.27 +demi_obscurité demi_obscurité nom f s 0 1.96 0 1.96 +demi_ouvert demi_ouvert adj f s 0 0.07 0 0.07 +demi_ouvrier demi_ouvrier nom m s 0 0.07 0 0.07 +demi_page demi_page nom f s 0.05 0.41 0.05 0.41 +demi_paralysé demi_paralysé adj m s 0.1 0 0.1 0 +demi_part demi_part nom f s 0.01 0 0.01 0 +demi_pas demi_pas nom m 0.21 0.27 0.21 0.27 +demi_pension demi_pension nom f s 0 0.41 0 0.41 +demi_pensionnaire demi_pensionnaire nom s 0 0.41 0 0.2 +demi_pensionnaire demi_pensionnaire nom p 0 0.41 0 0.2 +demi_personne demi_personne adj m s 0 0.07 0 0.07 +demi_pied demi_pied nom m s 0 0.07 0 0.07 +demi_pinte demi_pinte nom f s 0.07 0.07 0.07 0.07 +demi_pièce demi_pièce nom f s 0 0.07 0 0.07 +demi_place demi_place nom f s 0.11 0 0.11 0 +demi_plein demi_plein adj m s 0.01 0 0.01 0 +demi_point demi_point nom m s 0.14 0 0.14 0 +demi_pointe demi_pointe nom f p 0 0.07 0 0.07 +demi_porte demi_porte nom f s 0 0.14 0 0.14 +demi_portion demi_portion nom f s 1.23 0.2 1.18 0 +demi_portion demi_portion nom f p 1.23 0.2 0.05 0.2 +demi_pouce demi_pouce adj m s 0.01 0 0.01 0 +demi_quart demi_quart nom m s 0 0.07 0 0.07 +demi_queue demi_queue nom m s 0.01 0.2 0.01 0.2 +demi_rond demi_rond nom f s 0 0.34 0 0.34 +demi_réussite demi_réussite nom f s 0 0.14 0 0.14 +demi_révérence demi_révérence nom f s 0 0.07 0 0.07 +demi_rêve demi_rêve nom m s 0 0.2 0 0.2 +demi_saison demi_saison nom f s 0 0.95 0 0.81 +demi_saison demi_saison nom f p 0 0.95 0 0.14 +demi_sang demi_sang nom m s 0.04 0.54 0.04 0.47 +demi_sang demi_sang nom m p 0.04 0.54 0 0.07 +demi_seconde demi_seconde nom f s 0.13 1.01 0.13 1.01 +demi_section demi_section nom f s 0 0.41 0 0.41 +demi_sel demi_sel nom m 0.04 0.47 0.03 0.27 +demi_sel demi_sel nom m p 0.04 0.47 0.01 0.2 +demi_siècle demi_siècle nom m s 0.17 5.95 0.17 5.81 +demi_siècle demi_siècle nom m p 0.17 5.95 0 0.14 +demi_soeur demi_soeur nom f s 0.5 9.05 0.42 8.92 +demi_soeur demi_soeur nom f p 0.5 9.05 0.07 0.14 +demi_solde demi_solde nom f s 0.01 0.14 0.01 0.07 +demi_solde demi_solde nom f p 0.01 0.14 0 0.07 +demi_sommeil demi_sommeil nom m s 0.25 2.5 0.25 2.43 +demi_sommeil demi_sommeil nom m p 0.25 2.5 0 0.07 +demi_somnolence demi_somnolence nom f s 0 0.14 0 0.14 +demi_sourire demi_sourire nom m s 0 2.84 0 2.77 +demi_sourire demi_sourire nom m p 0 2.84 0 0.07 +demi_succès demi_succès nom m 0 0.2 0 0.2 +demi_suicide demi_suicide nom m s 0 0.07 0 0.07 +demi_talent demi_talent nom m s 0.05 0 0.05 0 +demi_tarif demi_tarif nom m s 0.56 0.14 0.56 0.14 +demi_tasse demi_tasse nom f s 0.08 0.07 0.08 0.07 +demi_teinte demi_teinte nom f s 0.06 0.95 0.04 0.47 +demi_teinte demi_teinte nom f p 0.06 0.95 0.02 0.47 +demi_ton demi_ton nom m s 0.34 0.61 0 0.34 +demi_ton demi_ton nom f s 0.34 0.61 0.21 0.07 +demi_tonneau demi_tonneau nom m s 0 0.07 0 0.07 +demi_ton demi_ton nom m p 0.34 0.61 0.14 0.2 +demi_tour demi_tour nom m s 19.27 16.08 19.25 15.88 +demi_tour demi_tour nom m p 19.27 16.08 0.02 0.2 +demi_tête demi_tête nom f s 0.11 0.14 0.11 0.14 +demi_verre demi_verre nom m s 0.3 1.22 0.3 1.22 +demi_vertu demi_vertu nom f s 0 0.07 0 0.07 +demi_vie demi_vie nom f s 0.11 0 0.08 0 +demi_vierge demi_vierge nom f s 0.02 0.2 0.02 0.07 +demi_vierge demi_vierge nom f p 0.02 0.2 0 0.14 +demi_vie demi_vie nom f p 0.11 0 0.02 0 +demi_volte demi_volte nom f s 0.01 0.07 0.01 0 +demi_volte demi_volte nom f p 0.01 0.07 0 0.07 +demi_volume demi_volume nom m s 0 0.07 0 0.07 +demi_volée demi_volée nom f s 0 0.07 0 0.07 +demi_vérité demi_vérité nom f s 0.32 0.07 0.32 0.07 +demi_échec demi_échec nom m s 0 0.07 0 0.07 +demie demi adj_sup f s 38.26 43.51 12.98 24.05 +demies demi nom_sup f p 4.64 9.8 0.13 0.07 +demis demi nom_sup m p 4.64 9.8 0.19 1.49 +demoiselle damoiseau nom f s 16.03 20 11.25 12.64 +demoiselles damoiseau nom f p 16.03 20 4.62 7.36 +dendrite dendrite nom f s 0.01 0 0.01 0 +dengue dengue nom f s 0.02 0 0.02 0 +denier denier nom m s 1.97 1.62 0.64 0.41 +deniers denier nom m p 1.97 1.62 1.34 1.22 +denim denim nom m s 0.04 0.07 0.04 0 +denims denim nom m p 0.04 0.07 0 0.07 +denrée denrée nom f s 1.86 4.73 1.23 1.01 +denrées denrée nom f p 1.86 4.73 0.64 3.72 +dense dense adj s 2.04 11.69 1.69 9.86 +denses dense adj p 2.04 11.69 0.35 1.82 +densifia densifier ver 0.02 0.07 0 0.07 ind:pas:3s; +densifie densifier ver 0.02 0.07 0.01 0 ind:pre:3s; +densifié densifier ver m s 0.02 0.07 0.01 0 par:pas; +densimètre densimètre nom m s 0.01 0 0.01 0 +densité densité nom f s 1.5 5.74 1.47 5.54 +densités densité nom f p 1.5 5.74 0.04 0.2 +dent dent nom f s 74.2 125.68 13.27 11.15 +dent_de_lion dent_de_lion nom f s 0.03 0.07 0.03 0.07 +dentaire dentaire adj s 4.22 1.28 3.5 0.68 +dentaires dentaire adj p 4.22 1.28 0.72 0.61 +dental dental adj m s 0.04 0.47 0.04 0.07 +dentale dental adj f s 0.04 0.47 0 0.07 +dentales dental adj f p 0.04 0.47 0 0.34 +dentelle dentelle nom f s 3.78 25.07 3.04 17.5 +dentelles dentelle nom f p 3.78 25.07 0.73 7.57 +dentellière dentellière nom f s 0 2.36 0 2.36 +dentelure dentelure nom f s 0.11 0.88 0.11 0.61 +dentelures dentelure nom f p 0.11 0.88 0 0.27 +dentelé denteler ver m s 0.13 0.81 0.07 0.34 par:pas; +dentelée dentelé adj f s 0.23 2.7 0.17 0.68 +dentelées denteler ver f p 0.13 0.81 0.02 0.14 par:pas; +dentelés dentelé adj m p 0.23 2.7 0.01 0.47 +dentier dentier nom m s 1.74 2.77 1.64 2.5 +dentiers dentier nom m p 1.74 2.77 0.1 0.27 +dentifrice dentifrice nom m s 3.87 1.28 3.84 1.15 +dentifrices dentifrice nom m p 3.87 1.28 0.02 0.14 +dentiste dentiste nom s 15.4 5.61 14.57 4.93 +dentisterie dentisterie nom f s 0.16 0 0.16 0 +dentistes dentiste nom p 15.4 5.61 0.83 0.68 +dentition dentition nom f s 1.08 0.47 1.07 0.41 +dentitions dentition nom f p 1.08 0.47 0.01 0.07 +dents dent nom f p 74.2 125.68 60.94 114.53 +denture denture nom f s 0.07 2.16 0.07 1.96 +dentures denture nom f p 0.07 2.16 0 0.2 +denté denté adj m s 0.04 0.27 0 0.07 +dentée denté adj f s 0.04 0.27 0.03 0.07 +dentées denté adj f p 0.04 0.27 0 0.14 +dentés denté adj m p 0.04 0.27 0.01 0 +deo_gratias deo_gratias nom m 0.01 0.2 0.01 0.2 +depuis depuis pre 483.95 542.64 483.95 542.64 +der der nom s 4.7 3.92 4.53 3.58 +derby derby nom m s 0.39 0.2 0.36 0.14 +derbys derby nom m p 0.39 0.2 0.03 0.07 +derche derche nom m s 0.83 3.04 0.72 2.57 +derches derche nom m p 0.83 3.04 0.11 0.47 +derechef derechef adv 0.01 3.24 0.01 3.24 +dermatite dermatite nom f s 0.08 0 0.08 0 +dermatoglyphes dermatoglyphe nom m p 0 0.07 0 0.07 +dermatologie dermatologie nom f s 0.23 0 0.23 0 +dermatologique dermatologique adj s 0.35 0.61 0.32 0.54 +dermatologiques dermatologique adj p 0.35 0.61 0.03 0.07 +dermatologiste dermatologiste nom s 0.07 0 0.07 0 +dermatologue dermatologue nom s 0.38 0 0.38 0 +dermatose dermatose nom f s 0 0.14 0 0.07 +dermatoses dermatose nom f p 0 0.14 0 0.07 +derme derme nom m s 0.52 0.41 0.52 0.41 +dermeste dermeste nom m s 0.01 0 0.01 0 +dermique dermique adj m s 0.03 0.07 0.03 0 +dermiques dermique adj p 0.03 0.07 0 0.07 +dermite dermite nom f s 0.09 0.07 0.09 0 +dermites dermite nom f p 0.09 0.07 0 0.07 +dermographie dermographie nom f s 0.14 0.07 0.14 0.07 +dernier dernier adj m s 431.08 403.11 138.57 146.42 +dernier_né dernier_né nom m s 0.05 1.01 0.05 0.88 +derniers dernier adj m p 431.08 403.11 41.81 63.38 +dernier_né dernier_né nom m p 0.05 1.01 0 0.14 +dernière dernier adj f s 431.08 403.11 224.41 145.27 +dernière_née dernière_née nom f s 0.01 0.2 0.01 0.2 +dernièrement dernièrement adv 11.24 1.35 11.24 1.35 +dernières dernier adj f p 431.08 403.11 26.3 48.04 +derrick derrick nom m s 2.04 0.27 1.98 0.07 +derricks derrick nom m p 2.04 0.27 0.06 0.2 +derrière derrière pre 105.1 349.39 105.1 349.39 +derrières derrière nom m p 9.95 15.47 0.86 1.22 +ders der nom p 4.7 3.92 0.17 0.34 +derviche derviche nom m s 0.11 1.76 0.08 1.35 +derviches derviche nom m p 0.11 1.76 0.03 0.41 +des des art_ind p 6055.71 10624.93 6055.71 10624.93 +descamisados descamisado nom m p 0 0.07 0 0.07 +descella desceller ver 0.07 1.55 0 0.07 ind:pas:3s; +descellant desceller ver 0.07 1.55 0 0.07 par:pre; +desceller desceller ver 0.07 1.55 0.01 0.41 inf; +descellera desceller ver 0.07 1.55 0.02 0 ind:fut:3s; +descellez desceller ver 0.07 1.55 0 0.07 ind:pre:2p; +descellé desceller ver m s 0.07 1.55 0.02 0.47 par:pas; +descellée desceller ver f s 0.07 1.55 0.02 0.14 par:pas; +descellées desceller ver f p 0.07 1.55 0 0.14 par:pas; +descellés desceller ver m p 0.07 1.55 0 0.2 par:pas; +descend descendre ver 235.97 301.62 26.09 32.64 ind:pre:3s; +descendaient descendre ver 235.97 301.62 0.67 10.41 ind:imp:3p; +descendais descendre ver 235.97 301.62 0.97 3.45 ind:imp:1s;ind:imp:2s; +descendait descendre ver 235.97 301.62 2.43 33.45 ind:imp:3s; +descendance descendance nom f s 1.31 1.96 1.3 1.89 +descendances descendance nom f p 1.31 1.96 0.01 0.07 +descendant descendre ver 235.97 301.62 3.73 16.76 par:pre; +descendante descendant nom f s 3.45 5 0.25 0.34 +descendantes descendant nom f p 3.45 5 0.04 0 +descendants descendant nom m p 3.45 5 2.38 2.97 +descende descendre ver 235.97 301.62 3.55 2.5 sub:pre:1s;sub:pre:3s; +descendent descendre ver 235.97 301.62 4.27 10.41 ind:pre:3p;sub:pre:3p; +descendes descendre ver 235.97 301.62 1.13 0.14 sub:pre:2s; +descendeur descendeur nom m s 0.04 0.07 0.04 0 +descendeurs descendeur nom m p 0.04 0.07 0 0.07 +descendez descendre ver 235.97 301.62 25.89 1.96 imp:pre:2p;ind:pre:2p; +descendiez descendre ver 235.97 301.62 0.53 0.14 ind:imp:2p; +descendions descendre ver 235.97 301.62 0.38 2.7 ind:imp:1p; +descendirent descendre ver 235.97 301.62 0.04 10 ind:pas:3p; +descendis descendre ver 235.97 301.62 0.05 4.93 ind:pas:1s; +descendit descendre ver 235.97 301.62 0.61 33.99 ind:pas:3s; +descendons descendre ver 235.97 301.62 4.3 3.31 imp:pre:1p;ind:pre:1p; +descendra descendre ver 235.97 301.62 3.44 1.82 ind:fut:3s; +descendrai descendre ver 235.97 301.62 1.82 1.42 ind:fut:1s; +descendraient descendre ver 235.97 301.62 0.05 0.41 cnd:pre:3p; +descendrais descendre ver 235.97 301.62 0.46 0.41 cnd:pre:1s;cnd:pre:2s; +descendrait descendre ver 235.97 301.62 0.78 1.35 cnd:pre:3s; +descendras descendre ver 235.97 301.62 0.44 0.2 ind:fut:2s; +descendre descendre ver 235.97 301.62 65.28 70.41 inf; +descendrez descendre ver 235.97 301.62 0.53 0.14 ind:fut:2p; +descendriez descendre ver 235.97 301.62 0.03 0 cnd:pre:2p; +descendrions descendre ver 235.97 301.62 0 0.2 cnd:pre:1p; +descendrons descendre ver 235.97 301.62 0.69 0.54 ind:fut:1p; +descendront descendre ver 235.97 301.62 0.81 0.2 ind:fut:3p; +descends descendre ver 235.97 301.62 62.31 12.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +descendu descendre ver m s 235.97 301.62 18.05 26.01 par:pas; +descendue descendre ver f s 235.97 301.62 3.66 7.97 par:pas; +descendues descendre ver f p 235.97 301.62 0.16 1.15 par:pas; +descendus descendre ver m p 235.97 301.62 2.71 8.04 par:pas; +descendîmes descendre ver 235.97 301.62 0.13 2.09 ind:pas:1p; +descendît descendre ver 235.97 301.62 0 0.34 sub:imp:3s; +descenseur descenseur nom m s 0.01 0 0.01 0 +descente descente nom f s 11.59 23.24 10.48 20.81 +descentes descente nom f p 11.59 23.24 1.1 2.43 +descriptible descriptible adj m s 0 0.27 0 0.07 +descriptibles descriptible adj f p 0 0.27 0 0.2 +descriptif descriptif nom m s 0.14 0.41 0.12 0.2 +descriptifs descriptif nom m p 0.14 0.41 0.02 0.2 +description description nom f s 7.8 11.49 7.08 8.04 +descriptions description nom f p 7.8 11.49 0.73 3.45 +descriptive descriptif adj f s 0.17 0.41 0.04 0.14 +descriptives descriptif adj f p 0.17 0.41 0.01 0.07 +desdites desdites pre 0 0.07 0 0.07 +desdits desdits pre 0 0.2 0 0.2 +desiderata desiderata nom m 0.04 0.27 0.04 0.27 +design design nom m s 1.54 0.88 1.47 0.88 +designer designer nom s 0.57 0 0.51 0 +designers designer nom p 0.57 0 0.07 0 +designs design nom m p 1.54 0.88 0.08 0 +desk desk nom m s 0.11 0.14 0.11 0.14 +desperado desperado nom m s 0.27 0.47 0.21 0.2 +desperados desperado nom m p 0.27 0.47 0.06 0.27 +despote despote nom s 1.01 0.74 0.85 0.61 +despotes despote nom p 1.01 0.74 0.16 0.14 +despotique despotique adj s 0.16 0.54 0.16 0.41 +despotiques despotique adj m p 0.16 0.54 0 0.14 +despotisme despotisme nom m s 0.45 0.81 0.45 0.81 +desquamante desquamant adj f s 0 0.07 0 0.07 +desquamation desquamation nom f s 0.01 0.07 0.01 0.07 +desquame desquamer ver 0.01 0 0.01 0 ind:pre:3s; +desquelles desquelles pro_rel f p 0.81 9.39 0.81 7.64 +desquels desquels pro_rel m p 0.78 10.14 0.64 7.97 +dessaisi dessaisir ver m s 0.25 0.61 0.07 0.07 par:pas; +dessaisir dessaisir ver 0.25 0.61 0.16 0.27 inf; +dessaisis dessaisir ver m p 0.25 0.61 0.01 0.07 ind:pre:1s;par:pas; +dessaisissais dessaisir ver 0.25 0.61 0 0.07 ind:imp:1s; +dessaisissement dessaisissement nom m s 0 0.07 0 0.07 +dessaisissent dessaisir ver 0.25 0.61 0 0.07 ind:pre:3p; +dessaisit dessaisir ver 0.25 0.61 0.01 0.07 ind:pre:3s;ind:pas:3s; +dessalaient dessaler ver 0.16 0.34 0 0.07 ind:imp:3p; +dessalait dessaler ver 0.16 0.34 0 0.07 ind:imp:3s; +dessalant dessaler ver 0.16 0.34 0 0.07 par:pre; +dessale dessaler ver 0.16 0.34 0 0.07 ind:pre:3s; +dessaler dessaler ver 0.16 0.34 0.16 0 inf; +dessalé dessalé adj m s 0 0.47 0 0.14 +dessalée dessalé adj f s 0 0.47 0 0.14 +dessalées dessalé adj f p 0 0.47 0 0.14 +dessalés dessalé adj m p 0 0.47 0 0.07 +dessaoulais dessaouler ver 0.39 1.15 0.01 0 ind:imp:1s; +dessaoule dessaouler ver 0.39 1.15 0.13 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessaoulent dessaouler ver 0.39 1.15 0 0.07 ind:pre:3p; +dessaouler dessaouler ver 0.39 1.15 0.08 0.14 inf; +dessaoulé dessaouler ver m s 0.39 1.15 0.07 0.41 par:pas; +dessaoulée dessaouler ver f s 0.39 1.15 0.1 0.07 par:pas; +dessaoulés dessaouler ver m p 0.39 1.15 0 0.07 par:pas; +dessape dessaper ver 0 0.14 0 0.07 ind:pre:3s; +dessaper dessaper ver 0 0.14 0 0.07 inf; +dessein dessein nom m s 7.29 14.86 5.32 10.2 +desseins dessein nom m p 7.29 14.86 1.97 4.66 +desselle desseller ver 0.12 0.61 0.02 0.07 imp:pre:2s;ind:pre:3s; +desseller desseller ver 0.12 0.61 0.03 0.41 inf; +dessellez desseller ver 0.12 0.61 0.05 0 imp:pre:2p; +dessellé desseller ver m s 0.12 0.61 0.01 0 par:pas; +dessellées desseller ver f p 0.12 0.61 0 0.07 par:pas; +dessellés desseller ver m p 0.12 0.61 0.01 0.07 par:pas; +desserra desserrer ver 2.54 10.88 0.01 1.76 ind:pas:3s; +desserrage desserrage nom m s 0.01 0.07 0.01 0.07 +desserrai desserrer ver 2.54 10.88 0 0.27 ind:pas:1s; +desserraient desserrer ver 2.54 10.88 0 0.2 ind:imp:3p; +desserrais desserrer ver 2.54 10.88 0.01 0.07 ind:imp:1s;ind:imp:2s; +desserrait desserrer ver 2.54 10.88 0.01 0.81 ind:imp:3s; +desserrant desserrer ver 2.54 10.88 0 0.47 par:pre; +desserre desserrer ver 2.54 10.88 0.83 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +desserrent desserrer ver 2.54 10.88 0.03 0.2 ind:pre:3p; +desserrer desserrer ver 2.54 10.88 0.38 3.58 inf; +desserrera desserrer ver 2.54 10.88 0.01 0.07 ind:fut:3s; +desserreraient desserrer ver 2.54 10.88 0 0.07 cnd:pre:3p; +desserrerait desserrer ver 2.54 10.88 0 0.07 cnd:pre:3s; +desserrez desserrer ver 2.54 10.88 0.72 0.07 imp:pre:2p;ind:pre:2p; +desserrons desserrer ver 2.54 10.88 0.03 0 imp:pre:1p; +desserrât desserrer ver 2.54 10.88 0 0.07 sub:imp:3s; +desserrèrent desserrer ver 2.54 10.88 0 0.14 ind:pas:3p; +desserré desserrer ver m s 2.54 10.88 0.32 1.69 par:pas; +desserrée desserrer ver f s 2.54 10.88 0.07 0.27 par:pas; +desserrées desserrer ver f p 2.54 10.88 0.01 0.2 par:pas; +desserrés desserrer ver m p 2.54 10.88 0.1 0.14 par:pas; +dessers desservir ver 1.16 5.14 0 0.07 ind:pre:2s; +dessert dessert nom m s 13.4 12.57 11.61 11.62 +desserte desserte nom f s 0.09 1.76 0.07 1.49 +dessertes desserte nom f p 0.09 1.76 0.01 0.27 +dessertie dessertir ver f s 0.01 0.14 0.01 0.07 par:pas; +dessertir dessertir ver 0.01 0.14 0 0.07 inf; +desserts dessert nom m p 13.4 12.57 1.79 0.95 +desservaient desservir ver 1.16 5.14 0.01 0.34 ind:imp:3p; +desservait desservir ver 1.16 5.14 0.02 0.88 ind:imp:3s; +desservant desservir ver 1.16 5.14 0.14 0.61 par:pre; +desserve desservir ver 1.16 5.14 0.02 0.07 sub:pre:3s; +desservent desservir ver 1.16 5.14 0.16 0.34 ind:pre:3p; +desservi desservir ver m s 1.16 5.14 0.16 0.61 par:pas; +desservie desservir ver f s 1.16 5.14 0.12 0.41 par:pas; +desservies desservir ver f p 1.16 5.14 0.14 0.07 par:pas; +desservir desservir ver 1.16 5.14 0.07 1.08 inf; +desservira desservir ver 1.16 5.14 0.02 0 ind:fut:3s; +desservirait desservir ver 1.16 5.14 0.02 0.07 cnd:pre:3s; +desserviront desservir ver 1.16 5.14 0 0.07 ind:fut:3p; +desservis desservir ver m p 1.16 5.14 0.03 0.07 par:pas; +desservit desservir ver 1.16 5.14 0 0.07 ind:pas:3s; +dessiccation dessiccation nom f s 0.03 0.07 0.03 0.07 +dessille dessiller ver 0.29 0.81 0 0.07 ind:pre:3s; +dessiller dessiller ver 0.29 0.81 0 0.34 inf; +dessilleront dessiller ver 0.29 0.81 0 0.07 ind:fut:3p; +dessillé dessiller ver m s 0.29 0.81 0.29 0.07 par:pas; +dessillés dessiller ver m p 0.29 0.81 0 0.27 par:pas; +dessin dessin nom m s 29.6 56.28 17.92 34.86 +dessina dessiner ver 29.97 79.66 0.29 3.45 ind:pas:3s; +dessinai dessiner ver 29.97 79.66 0 0.68 ind:pas:1s; +dessinaient dessiner ver 29.97 79.66 0.14 5.2 ind:imp:3p; +dessinais dessiner ver 29.97 79.66 0.89 0.88 ind:imp:1s;ind:imp:2s; +dessinait dessiner ver 29.97 79.66 0.85 10.88 ind:imp:3s; +dessinant dessiner ver 29.97 79.66 0.29 4.73 par:pre; +dessinateur dessinateur nom m s 1.86 7.3 1.08 5.27 +dessinateurs dessinateur nom m p 1.86 7.3 0.46 1.76 +dessinatrice dessinateur nom f s 1.86 7.3 0.31 0.27 +dessine dessiner ver 29.97 79.66 6.05 10.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessinent dessiner ver 29.97 79.66 0.44 3.85 ind:pre:3p; +dessiner dessiner ver 29.97 79.66 9.1 12.97 inf; +dessinera dessiner ver 29.97 79.66 0.12 0 ind:fut:3s; +dessinerai dessiner ver 29.97 79.66 0.32 0.14 ind:fut:1s; +dessineraient dessiner ver 29.97 79.66 0 0.07 cnd:pre:3p; +dessinerais dessiner ver 29.97 79.66 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +dessinerait dessiner ver 29.97 79.66 0.16 0.07 cnd:pre:3s; +dessinerez dessiner ver 29.97 79.66 0 0.07 ind:fut:2p; +dessineront dessiner ver 29.97 79.66 0.03 0.07 ind:fut:3p; +dessines dessiner ver 29.97 79.66 1.39 0.07 ind:pre:2s; +dessinez dessiner ver 29.97 79.66 0.99 0.27 imp:pre:2p;ind:pre:2p; +dessiniez dessiner ver 29.97 79.66 0.26 0 ind:imp:2p; +dessinions dessiner ver 29.97 79.66 0.02 0.07 ind:imp:1p; +dessins dessin nom m p 29.6 56.28 11.68 21.42 +dessinât dessiner ver 29.97 79.66 0 0.2 sub:imp:3s; +dessinèrent dessiner ver 29.97 79.66 0.01 0.41 ind:pas:3p; +dessiné dessiner ver m s 29.97 79.66 5.05 8.99 par:pas; +dessinée dessiner ver f s 29.97 79.66 1.33 7.7 par:pas; +dessinées dessiner ver f p 29.97 79.66 1.85 5.27 par:pas; +dessinés dessiner ver m p 29.97 79.66 0.33 2.84 par:pas; +dessoucha dessoucher ver 0 0.14 0 0.07 ind:pas:3s; +dessouchée dessoucher ver f s 0 0.14 0 0.07 par:pas; +dessouda dessouder ver 0.63 0.54 0 0.07 ind:pas:3s; +dessouder dessouder ver 0.63 0.54 0.45 0.14 inf; +dessoudé dessouder ver m s 0.63 0.54 0.18 0.2 par:pas; +dessoudée dessouder ver f s 0.63 0.54 0 0.07 par:pas; +dessoudées dessouder ver f p 0.63 0.54 0 0.07 par:pas; +dessoulait dessouler ver 0.04 0.2 0 0.07 ind:imp:3s; +dessouler dessouler ver 0.04 0.2 0.01 0 inf; +dessoulé dessouler ver m s 0.04 0.2 0.04 0.14 par:pas; +dessous dessous nom_sup m 18.14 29.46 18.14 29.46 +dessous_de_bras dessous_de_bras nom m 0.01 0.07 0.01 0.07 +dessous_de_plat dessous_de_plat nom m 0.2 0.54 0.2 0.54 +dessous_de_table dessous_de_table nom m 0.21 0 0.21 0 +dessous_de_verre dessous_de_verre nom m 0.01 0 0.01 0 +dessoûla dessoûler ver 1.69 0.81 0 0.07 ind:pas:3s; +dessoûlait dessoûler ver 1.69 0.81 0 0.14 ind:imp:3s; +dessoûle dessoûler ver 1.69 0.81 0.63 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessoûlent dessoûler ver 1.69 0.81 0.05 0 ind:pre:3p; +dessoûler dessoûler ver 1.69 0.81 0.37 0.14 inf; +dessoûles dessoûler ver 1.69 0.81 0.01 0 ind:pre:2s; +dessoûlez dessoûler ver 1.69 0.81 0.04 0 imp:pre:2p;ind:pre:2p; +dessoûlé dessoûler ver m s 1.69 0.81 0.58 0.14 par:pas; +dessoûlée dessoûler ver f s 1.69 0.81 0.01 0.14 par:pas; +dessuintée dessuinter ver f s 0 0.07 0 0.07 par:pas; +dessus dessus adv_sup 111.19 57.57 111.19 57.57 +dessus_de_lit dessus_de_lit nom m 0.09 1.08 0.09 1.08 +dessèche dessécher ver 3.54 15.61 0.85 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +dessèchement dessèchement nom m s 0.02 0.07 0.02 0.07 +dessèchent dessécher ver 3.54 15.61 0.14 0.34 ind:pre:3p; +dessécha dessécher ver 3.54 15.61 0.02 0 ind:pas:3s; +desséchaient dessécher ver 3.54 15.61 0.02 0.47 ind:imp:3p; +desséchais dessécher ver 3.54 15.61 0 0.07 ind:imp:1s; +desséchait dessécher ver 3.54 15.61 0.01 1.42 ind:imp:3s; +desséchant dessécher ver 3.54 15.61 0.14 0.2 par:pre; +desséchante desséchant adj f s 0.01 0.2 0 0.14 +dessécher dessécher ver 3.54 15.61 0.25 0.88 inf; +dessécherait dessécher ver 3.54 15.61 0.01 0.07 cnd:pre:3s; +dessécheront dessécher ver 3.54 15.61 0.01 0.07 ind:fut:3p; +desséchez dessécher ver 3.54 15.61 0.01 0 ind:pre:2p; +desséchèrent dessécher ver 3.54 15.61 0 0.07 ind:pas:3p; +desséché dessécher ver m s 3.54 15.61 0.49 3.72 par:pas; +desséchée dessécher ver f s 3.54 15.61 0.8 4.32 par:pas; +desséchées dessécher ver f p 3.54 15.61 0.24 1.28 par:pas; +desséchés dessécher ver m p 3.54 15.61 0.56 1.96 par:pas; +destin destin nom m s 53.03 67.23 51.93 62.77 +destina destiner ver 12.52 35 0 0.07 ind:pas:3s; +destinaient destiner ver 12.52 35 0 0.34 ind:imp:3p; +destinais destiner ver 12.52 35 0.09 0.27 ind:imp:1s;ind:imp:2s; +destinait destiner ver 12.52 35 0.21 1.76 ind:imp:3s; +destinant destiner ver 12.52 35 0 0.07 par:pre; +destinataire destinataire nom s 0.71 2.23 0.67 1.82 +destinataires destinataire nom p 0.71 2.23 0.04 0.41 +destination destination nom f s 10.88 10.14 10.41 9.59 +destinations destination nom f p 10.88 10.14 0.46 0.54 +destinatrice destinateur nom f s 0 0.14 0 0.14 +destine destiner ver 12.52 35 0.37 1.28 ind:pre:1s;ind:pre:3s; +destinent destiner ver 12.52 35 0.01 0.14 ind:pre:3p; +destiner destiner ver 12.52 35 0 0.07 inf; +destines destiner ver 12.52 35 0.2 0 ind:pre:2s; +destinez destiner ver 12.52 35 0.16 0.2 ind:pre:2p; +destiniez destiner ver 12.52 35 0.01 0 ind:imp:2p; +destins destin nom m p 53.03 67.23 1.1 4.46 +destiné destiner ver m s 12.52 35 5.09 11.35 par:pas; +destinée destinée nom f s 9.08 11.22 8.64 8.31 +destinées destiner ver f p 12.52 35 1.08 3.85 par:pas; +destinés destiner ver m p 12.52 35 2.11 6.69 par:pas; +destitue destituer ver 0.56 0.74 0.01 0.07 ind:pre:3s; +destituer destituer ver 0.56 0.74 0.17 0.14 inf; +destitueront destituer ver 0.56 0.74 0 0.07 ind:fut:3p; +destituez destituer ver 0.56 0.74 0.01 0.07 imp:pre:2p; +destitution destitution nom f s 0.17 0.34 0.17 0.34 +destitué destituer ver m s 0.56 0.74 0.36 0.41 par:pas; +destituée destituer ver f s 0.56 0.74 0.01 0 par:pas; +destrier destrier nom m s 0.38 0.74 0.25 0.34 +destriers destrier nom m p 0.38 0.74 0.14 0.41 +destroy destroy adj s 0.25 0.14 0.25 0.14 +destroyer destroyer nom m s 2.82 0.88 1.84 0.41 +destroyers destroyer nom m p 2.82 0.88 0.98 0.47 +destructeur destructeur adj m s 2.84 2.77 1.1 0.95 +destructeurs destructeur adj m p 2.84 2.77 0.28 0.27 +destructible destructible adj m s 0.03 0 0.03 0 +destructif destructif adj m s 0.35 0.14 0.05 0.14 +destructifs destructif adj m p 0.35 0.14 0.01 0 +destruction destruction nom f s 14.31 15.34 13.96 11.76 +destructions destruction nom f p 14.31 15.34 0.35 3.58 +destructive destructif adj f s 0.35 0.14 0.29 0 +destructrice destructeur adj f s 2.84 2.77 0.97 1.15 +destructrices destructeur adj f p 2.84 2.77 0.49 0.41 +dette dette nom f s 26.13 12.16 12.77 5.14 +dettes dette nom f p 26.13 12.16 13.36 7.03 +deuche deuche nom f s 0 0.07 0 0.07 +deuil deuil nom m s 12.24 26.22 12.21 23.51 +deuils deuil nom m p 12.24 26.22 0.03 2.7 +deus_ex_machina deus_ex_machina nom m 0.16 0.47 0.16 0.47 +deusio deusio adv 0.2 0 0.2 0 +deutsche_mark deutsche_mark adj m s 0.02 0 0.02 0 +deutérium deutérium nom m s 0.07 0 0.07 0 +deutéronome deutéronome nom m s 0.23 0.2 0.23 0.2 +deux deux adj_num 1009.01 1557.91 1009.01 1557.91 +deux_chevaux deux_chevaux nom f 0 1.22 0 1.22 +deux_deux deux_deux nom m 0.02 0 0.02 0 +deux_mâts deux_mâts nom m 0.14 0.07 0.14 0.07 +deux_pièces deux_pièces nom m 0.27 1.82 0.27 1.82 +deux_points deux_points nom m 0.01 0 0.01 0 +deux_ponts deux_ponts nom m 0 0.07 0 0.07 +deux_quatre deux_quatre nom m 0.03 0 0.03 0 +deux_roues deux_roues nom m 0.11 0 0.11 0 +deuxième deuxième adj 43.97 59.05 43.77 58.58 +deuxièmement deuxièmement adv 4.58 0.88 4.58 0.88 +deuxièmes deuxième adj 43.97 59.05 0.2 0.47 +deuzio deuzio adv 0.89 0.2 0.89 0.2 +devaient devoir ver_sup 3232.57 1318.18 13.59 61.22 ind:imp:3p; +devais devoir ver_sup 3232.57 1318.18 81.01 53.38 ind:imp:1s;ind:imp:2s; +devait devoir ver_sup 3232.57 1318.18 108.88 298.99 ind:imp:3s; +devance devancer ver 3.94 8.04 0.89 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +devancent devancer ver 3.94 8.04 0.06 0.2 ind:pre:3p; +devancer devancer ver 3.94 8.04 0.99 2.03 inf; +devancerait devancer ver 3.94 8.04 0.01 0 cnd:pre:3s; +devancerez devancer ver 3.94 8.04 0.01 0 ind:fut:2p; +devancez devancer ver 3.94 8.04 0.07 0 imp:pre:2p;ind:pre:2p; +devanciers devancier nom m p 0 0.07 0 0.07 +devancèrent devancer ver 3.94 8.04 0 0.07 ind:pas:3p; +devancé devancer ver m s 3.94 8.04 0.98 1.15 par:pas; +devancée devancer ver f s 3.94 8.04 0.31 0.27 par:pas; +devancés devancer ver m p 3.94 8.04 0.54 0.14 par:pas; +devant devant pre 208.19 690.34 208.19 690.34 +devants devant nom_sup m p 4.2 11.08 0.75 2.36 +devanture devanture nom f s 0.48 7.64 0.46 5.07 +devantures devanture nom f p 0.48 7.64 0.03 2.57 +devança devancer ver 3.94 8.04 0.02 0.61 ind:pas:3s; +devançaient devancer ver 3.94 8.04 0 0.34 ind:imp:3p; +devançais devancer ver 3.94 8.04 0 0.07 ind:imp:1s; +devançait devancer ver 3.94 8.04 0.03 0.68 ind:imp:3s; +devançant devancer ver 3.94 8.04 0.01 1.55 par:pre; +devançons devancer ver 3.94 8.04 0.03 0 imp:pre:1p; +devenaient devenir ver 438.57 533.51 1.76 19.39 ind:imp:3p; +devenais devenir ver 438.57 533.51 2.82 6.15 ind:imp:1s;ind:imp:2s; +devenait devenir ver 438.57 533.51 7.41 77.16 ind:imp:3s; +devenant devenir ver 438.57 533.51 1.23 5.27 par:pre; +devenez devenir ver 438.57 533.51 3.69 1.28 imp:pre:2p;ind:pre:2p; +deveniez devenir ver 438.57 533.51 0.71 0.14 ind:imp:2p; +devenions devenir ver 438.57 533.51 0.2 0.95 ind:imp:1p; +devenir devenir ver 438.57 533.51 108.83 85.27 inf; +devenons devenir ver 438.57 533.51 1.23 0.74 imp:pre:1p;ind:pre:1p; +devenu devenir ver m s 438.57 533.51 92.42 95.68 par:pas; +devenue devenir ver f s 438.57 533.51 32.7 52.03 par:pas; +devenues devenir ver f p 438.57 533.51 3.57 8.99 par:pas; +devenus devenir ver m p 438.57 533.51 17.16 23.45 par:pas; +devers devers pre 0.06 2.57 0.06 2.57 +devez devoir ver_sup 3232.57 1318.18 150.16 16.15 imp:pre:2p;ind:pre:2p; +deviendra devenir ver 438.57 533.51 9.28 4.12 ind:fut:3s; +deviendrai devenir ver 438.57 533.51 3.13 1.49 ind:fut:1s; +deviendraient devenir ver 438.57 533.51 0.22 1.55 cnd:pre:3p; +deviendrais devenir ver 438.57 533.51 3.05 1.96 cnd:pre:1s;cnd:pre:2s; +deviendrait devenir ver 438.57 533.51 3.16 8.58 cnd:pre:3s; +deviendras devenir ver 438.57 533.51 3.71 0.95 ind:fut:2s; +deviendrez devenir ver 438.57 533.51 1.45 0.27 ind:fut:2p; +deviendriez devenir ver 438.57 533.51 0.22 0.2 cnd:pre:2p; +deviendrions devenir ver 438.57 533.51 0.08 0.14 cnd:pre:1p; +deviendrons devenir ver 438.57 533.51 0.86 0.2 ind:fut:1p; +deviendront devenir ver 438.57 533.51 2.15 1.35 ind:fut:3p; +devienne devenir ver 438.57 533.51 10.24 7.36 sub:pre:1s;sub:pre:3s; +deviennent devenir ver 438.57 533.51 14.29 16.22 ind:pre:3p; +deviennes devenir ver 438.57 533.51 1.94 0.61 sub:pre:2s; +deviens devenir ver 438.57 533.51 32.11 8.99 imp:pre:2s;ind:pre:1s;ind:pre:2s; +devient devenir ver 438.57 533.51 69.59 59.46 ind:pre:3s; +deviez devoir ver_sup 3232.57 1318.18 13.48 1.69 ind:imp:2p;sub:pre:2p; +devin devin nom m s 1.82 1.08 1.61 0.68 +devina deviner ver 72.77 112.3 0.02 5.14 ind:pas:3s; +devinai deviner ver 72.77 112.3 0.14 2.91 ind:pas:1s; +devinaient deviner ver 72.77 112.3 0 1.49 ind:imp:3p; +devinais deviner ver 72.77 112.3 0.21 7.3 ind:imp:1s;ind:imp:2s; +devinait deviner ver 72.77 112.3 0.07 18.85 ind:imp:3s; +devinant deviner ver 72.77 112.3 0.05 1.89 par:pre; +devine deviner ver 72.77 112.3 27.12 21.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +devinent deviner ver 72.77 112.3 0.14 1.28 ind:pre:3p; +deviner deviner ver 72.77 112.3 17.6 25.95 inf; +devinera deviner ver 72.77 112.3 0.22 0.2 ind:fut:3s; +devinerai deviner ver 72.77 112.3 0.07 0.14 ind:fut:1s; +devineraient deviner ver 72.77 112.3 0.02 0 cnd:pre:3p; +devinerais deviner ver 72.77 112.3 0.08 0.34 cnd:pre:1s;cnd:pre:2s; +devinerait deviner ver 72.77 112.3 0.06 0.41 cnd:pre:3s; +devineras deviner ver 72.77 112.3 1.5 0 ind:fut:2s; +devineresse devineur nom f s 0.15 0.2 0.14 0.14 +devineresses devineur nom f p 0.15 0.2 0 0.07 +devinerez deviner ver 72.77 112.3 0.9 0.27 ind:fut:2p; +devineriez deviner ver 72.77 112.3 0.22 0.07 cnd:pre:2p; +devineront deviner ver 72.77 112.3 0.03 0.07 ind:fut:3p; +devines deviner ver 72.77 112.3 2.1 1.01 ind:pre:2s;sub:pre:2s; +devinette devinette nom f s 2.97 2.7 1.48 1.42 +devinettes devinette nom f p 2.97 2.7 1.49 1.28 +devineur devineur nom m s 0.15 0.2 0.01 0 +devinez deviner ver 72.77 112.3 10.15 2.91 imp:pre:2p;ind:pre:2p; +devinions deviner ver 72.77 112.3 0 0.95 ind:imp:1p; +devinons deviner ver 72.77 112.3 0.09 0.14 imp:pre:1p;ind:pre:1p; +devinrent devenir ver 438.57 533.51 1.4 5.61 ind:pas:3p; +devins devenir ver 438.57 533.51 0.69 1.89 ind:pas:1s; +devinsse devenir ver 438.57 533.51 0 0.14 sub:imp:1s; +devinssent devenir ver 438.57 533.51 0 0.27 sub:imp:3p; +devinssiez devenir ver 438.57 533.51 0.01 0 sub:imp:2p; +devint devenir ver 438.57 533.51 6.96 33.31 ind:pas:3s; +devinâmes deviner ver 72.77 112.3 0 0.14 ind:pas:1p; +devinât deviner ver 72.77 112.3 0 0.47 sub:imp:3s; +devinèrent deviner ver 72.77 112.3 0 0.14 ind:pas:3p; +deviné deviner ver m s 72.77 112.3 11.95 16.96 par:pas; +devinée deviner ver f s 72.77 112.3 0.02 1.49 par:pas; +devinées deviner ver f p 72.77 112.3 0 0.34 par:pas; +devinés deviner ver m p 72.77 112.3 0.01 0.2 par:pas; +devions devoir ver_sup 3232.57 1318.18 6.25 9.46 ind:imp:1p; +devis devis nom m 0.94 1.62 0.94 1.62 +devisaient deviser ver 0.25 3.58 0.01 0.68 ind:imp:3p; +devisais deviser ver 0.25 3.58 0 0.07 ind:imp:1s; +devisait deviser ver 0.25 3.58 0 0.54 ind:imp:3s; +devisant deviser ver 0.25 3.58 0 1.28 par:pre; +devise devise nom f s 5.54 7.77 4.75 6.22 +devisent deviser ver 0.25 3.58 0.01 0.2 ind:pre:3p; +deviser deviser ver 0.25 3.58 0.03 0.47 inf; +devises devise nom f p 5.54 7.77 0.79 1.55 +devisions deviser ver 0.25 3.58 0.16 0.07 ind:imp:1p; +devisèrent deviser ver 0.25 3.58 0 0.07 ind:pas:3p; +devisé deviser ver m s 0.25 3.58 0.04 0.07 par:pas; +devoir devoir ver_sup 3232.57 1318.18 74.06 29.26 inf; +devoirs devoir nom_sup m p 63.59 55.54 20.7 22.5 +devon devon nom m s 1.98 0.27 0.04 0 +devons devoir ver_sup 3232.57 1318.18 114.35 14.93 imp:pre:1p;ind:pre:1p; +devra devoir ver_sup 3232.57 1318.18 22.45 8.04 ind:fut:3s; +devrai devoir ver_sup 3232.57 1318.18 10.32 1.15 ind:fut:1s; +devraient devoir ver_sup 3232.57 1318.18 23.7 10.41 cnd:pre:3p; +devrais devoir ver_sup 3232.57 1318.18 235.63 36.49 cnd:pre:1s;cnd:pre:2s; +devrait devoir ver_sup 3232.57 1318.18 208.85 51.49 cnd:pre:3s; +devras devoir ver_sup 3232.57 1318.18 15.16 0.41 ind:fut:2s; +devrez devoir ver_sup 3232.57 1318.18 12.97 0.74 ind:fut:2p; +devriez devoir ver_sup 3232.57 1318.18 75.83 11.89 cnd:pre:2p; +devrions devoir ver_sup 3232.57 1318.18 27.74 2.36 cnd:pre:1p; +devrons devoir ver_sup 3232.57 1318.18 7.11 0.34 ind:fut:1p; +devront devoir ver_sup 3232.57 1318.18 7.26 3.04 ind:fut:3p; +devînmes devenir ver 438.57 533.51 0.04 0.27 ind:pas:1p; +devînt devenir ver 438.57 533.51 0.29 2.09 sub:imp:3s; +dexaméthasone dexaméthasone nom f s 0.01 0 0.01 0 +dextre dextre nom f s 0.17 0.54 0.17 0.54 +dextrement dextrement adv 0 0.14 0 0.14 +dextrose dextrose nom m s 0.12 0 0.12 0 +dextérité dextérité nom f s 0.32 2.16 0.32 2.16 +dey dey nom m s 0.02 1.96 0.02 1.96 +deçà deçà adv 0.27 2.97 0.27 2.97 +dharma dharma nom m s 0.26 0.14 0.26 0.14 +dhole dhole nom m s 0.08 0 0.08 0 +dia dia ono 0.41 1.22 0.41 1.22 +diable diable ono 4.25 2.91 4.25 2.91 +diablement diablement adv 0.75 1.01 0.75 1.01 +diablerie diablerie nom f s 0.18 0.61 0.14 0.07 +diableries diablerie nom f p 0.18 0.61 0.04 0.54 +diables diable nom m p 93.34 54.8 5.8 3.78 +diablesse diablesse nom f s 1.12 1.28 0.95 1.01 +diablesses diablesse nom f p 1.12 1.28 0.16 0.27 +diablotin diablotin nom m s 0.53 0.34 0.38 0.14 +diablotins diablotin nom m p 0.53 0.34 0.15 0.2 +diabolique diabolique adj s 8.61 5.95 6.89 4.73 +diaboliquement diaboliquement adv 0.11 0.34 0.11 0.34 +diaboliques diabolique adj p 8.61 5.95 1.71 1.22 +diabolisent diaboliser ver 0.09 0.07 0.01 0 ind:pre:3p; +diaboliser diaboliser ver 0.09 0.07 0.05 0 inf; +diabolisme diabolisme nom m s 0.04 0 0.04 0 +diabolisé diaboliser ver m s 0.09 0.07 0.02 0.07 par:pas; +diabolisée diaboliser ver f s 0.09 0.07 0.01 0 par:pas; +diabolo diabolo nom m s 0.03 0.88 0.03 0.47 +diabolos diabolo nom m p 0.03 0.88 0 0.41 +diabète diabète nom m s 2.27 1.42 2.25 1.35 +diabètes diabète nom m p 2.27 1.42 0.01 0.07 +diabétique diabétique adj s 1.29 0.34 1.28 0.34 +diabétiques diabétique nom p 0.53 0 0.16 0 +diachronique diachronique adj f s 0.01 0.07 0.01 0.07 +diaclase diaclase nom f s 0.14 0 0.14 0 +diaconesse diaconesse nom f s 0 0.2 0 0.14 +diaconesses diaconesse nom f p 0 0.2 0 0.07 +diaconie diaconie nom f s 0 0.07 0 0.07 +diacre diacre nom m s 0.94 1.15 0.84 1.01 +diacres diacre nom m p 0.94 1.15 0.09 0.14 +diacritique diacritique adj m s 0.03 0.07 0.03 0.07 +diacétylmorphine diacétylmorphine nom f s 0.01 0 0.01 0 +diadème diadème nom m s 1.52 1.76 1.38 1.15 +diadèmes diadème nom m p 1.52 1.76 0.15 0.61 +diagnose diagnose nom f s 0.01 0 0.01 0 +diagnostic diagnostic nom m s 6.78 3.85 6.25 3.51 +diagnostics diagnostic nom m p 6.78 3.85 0.53 0.34 +diagnostiqua diagnostiquer ver 1.93 1.15 0 0.14 ind:pas:3s; +diagnostiquait diagnostiquer ver 1.93 1.15 0.02 0.14 ind:imp:3s; +diagnostiquant diagnostiquer ver 1.93 1.15 0.03 0.07 par:pre; +diagnostique diagnostique adj s 0.88 0.2 0.7 0.2 +diagnostiquer diagnostiquer ver 1.93 1.15 0.53 0.27 inf; +diagnostiques diagnostique adj p 0.88 0.2 0.17 0 +diagnostiqueur diagnostiqueur nom m s 0.01 0 0.01 0 +diagnostiquez diagnostiquer ver 1.93 1.15 0.03 0 imp:pre:2p;ind:pre:2p; +diagnostiquèrent diagnostiquer ver 1.93 1.15 0 0.14 ind:pas:3p; +diagnostiqué diagnostiquer ver m s 1.93 1.15 1.2 0.27 par:pas; +diagnostiqués diagnostiquer ver m p 1.93 1.15 0.04 0.07 par:pas; +diagonal diagonal adj m s 0.11 0.27 0 0.07 +diagonale diagonale nom f s 0.28 4.32 0.18 3.85 +diagonalement diagonalement adv 0.01 0.07 0.01 0.07 +diagonales diagonale nom f p 0.28 4.32 0.1 0.47 +diagonaux diagonal adj m p 0.11 0.27 0 0.07 +diagramme diagramme nom m s 0.77 0.14 0.58 0 +diagrammes diagramme nom m p 0.77 0.14 0.19 0.14 +dialectal dialectal adj m s 0.32 0 0.21 0 +dialectale dialectal adj f s 0.32 0 0.11 0 +dialecte dialecte nom m s 1.79 2.57 1.44 2.03 +dialectes dialecte nom m p 1.79 2.57 0.35 0.54 +dialecticien dialecticien nom m s 0.01 0.34 0 0.2 +dialecticienne dialecticien nom f s 0.01 0.34 0 0.07 +dialecticiens dialecticien nom m p 0.01 0.34 0.01 0.07 +dialectique dialectique nom f s 0.66 2.23 0.66 2.16 +dialectiques dialectique adj f p 0.19 2.03 0 0.2 +dialogique dialogique adj m s 0.01 0 0.01 0 +dialoguai dialoguer ver 1.01 2.64 0 0.07 ind:pas:1s; +dialoguaient dialoguer ver 1.01 2.64 0.01 0.14 ind:imp:3p; +dialoguait dialoguer ver 1.01 2.64 0.01 0.14 ind:imp:3s; +dialoguant dialoguer ver 1.01 2.64 0.05 0.27 par:pre; +dialogue dialogue nom m s 16.71 19.19 14.11 14.46 +dialoguent dialoguer ver 1.01 2.64 0 0.2 ind:pre:3p; +dialoguer dialoguer ver 1.01 2.64 0.76 0.74 inf; +dialoguera dialoguer ver 1.01 2.64 0.01 0.07 ind:fut:3s; +dialogues dialogue nom m p 16.71 19.19 2.6 4.73 +dialoguez dialoguer ver 1.01 2.64 0.11 0 imp:pre:2p;ind:pre:2p; +dialoguiste dialoguiste nom s 0.02 0.14 0 0.07 +dialoguistes dialoguiste nom p 0.02 0.14 0.02 0.07 +dialoguons dialoguer ver 1.01 2.64 0.03 0 imp:pre:1p;ind:pre:1p; +dialoguât dialoguer ver 1.01 2.64 0 0.07 sub:imp:3s; +dialogué dialoguer ver m s 1.01 2.64 0 0.27 par:pas; +dialoguée dialoguer ver f s 1.01 2.64 0 0.14 par:pas; +dialoguées dialoguer ver f p 1.01 2.64 0.01 0.27 par:pas; +dialyse dialyse nom f s 1.06 0.2 1.02 0.2 +dialyser dialyser ver 0.16 0 0.01 0 inf; +dialyses dialyse nom f p 1.06 0.2 0.04 0 +dialysé dialyser ver m s 0.16 0 0.01 0 par:pas; +dialysée dialyser ver f s 0.16 0 0.14 0 par:pas; +diam diam nom m s 0.43 1.01 0.17 0.61 +diamant diamant nom m s 20.56 22.91 7.97 14.12 +diamantaire diamantaire nom s 0.07 2.43 0.05 1.28 +diamantaires diamantaire nom p 0.07 2.43 0.02 1.15 +diamante diamanter ver 0 0.2 0 0.07 ind:pre:3s; +diamantifère diamantifère adj f s 0 0.07 0 0.07 +diamantin diamantin adj m s 0.06 0.88 0.05 0.2 +diamantine diamantin adj f s 0.06 0.88 0 0.41 +diamantines diamantin adj f p 0.06 0.88 0 0.2 +diamantins diamantin adj m p 0.06 0.88 0.01 0.07 +diamants diamant nom m p 20.56 22.91 12.59 8.78 +diamanté diamanté adj m s 0.01 0.14 0 0.14 +diamantée diamanter ver f s 0 0.2 0 0.07 par:pas; +diamantés diamanté adj m p 0.01 0.14 0.01 0 +diamine diamine nom f s 0.01 0 0.01 0 +diamorphine diamorphine nom f s 0.01 0 0.01 0 +diams diam nom m p 0.43 1.01 0.26 0.41 +diamètre diamètre nom m s 1.81 2.23 1.81 2.23 +diamétralement diamétralement adv 0.14 0.74 0.14 0.74 +diane diane nom f s 0.03 0.47 0.03 0.41 +dianes diane nom f p 0.03 0.47 0 0.07 +diantre diantre ono 0.46 0.14 0.46 0.14 +diapason diapason nom m s 0.5 1.49 0.46 1.42 +diapasons diapason nom m p 0.5 1.49 0.04 0.07 +diaphane diaphane adj s 0.03 2.91 0.03 2.03 +diaphanes diaphane adj f p 0.03 2.91 0 0.88 +diaphorétique diaphorétique adj s 0.06 0 0.06 0 +diaphragma diaphragmer ver 0 0.07 0 0.07 ind:pas:3s; +diaphragmatique diaphragmatique adj f s 0.05 0 0.05 0 +diaphragme diaphragme nom m s 1.32 1.49 1.32 1.42 +diaphragmes diaphragme nom m p 1.32 1.49 0 0.07 +diapo diapo nom f s 1.78 0.27 0.66 0.07 +diaporama diaporama nom m s 0.05 0.07 0.05 0 +diaporamas diaporama nom m p 0.05 0.07 0 0.07 +diapos diapo nom f p 1.78 0.27 1.13 0.2 +diapositifs diapositif adj m p 0.21 0.07 0 0.07 +diapositive diapositif adj f s 0.21 0.07 0.2 0 +diapositives diapositive nom f p 0.92 0.61 0.86 0.61 +diaprures diaprure nom f p 0 0.07 0 0.07 +diapré diapré adj m s 0 0.41 0 0.07 +diaprée diapré adj f s 0 0.41 0 0.14 +diaprées diaprer ver f p 0 0.2 0 0.07 par:pas; +diaprés diapré adj m p 0 0.41 0 0.2 +diarrhée diarrhée nom f s 3.38 1.82 2.84 1.15 +diarrhées diarrhée nom f p 3.38 1.82 0.54 0.68 +diarrhéique diarrhéique adj s 0.01 0.07 0.01 0.07 +diaspora diaspora nom f s 0 0.61 0 0.54 +diasporas diaspora nom f p 0 0.61 0 0.07 +diastole diastole nom f s 0.01 0.07 0 0.07 +diastoles diastole nom f p 0.01 0.07 0.01 0 +diastolique diastolique adj s 0.07 0.07 0.07 0 +diastoliques diastolique adj m p 0.07 0.07 0 0.07 +diatomée diatomée nom f s 0.07 0.07 0.01 0 +diatomées diatomée nom f p 0.07 0.07 0.06 0.07 +diatonique diatonique adj s 0 0.14 0 0.14 +diatribe diatribe nom f s 0.14 2.09 0.12 1.49 +diatribes diatribe nom f p 0.14 2.09 0.02 0.61 +dicastères dicastère nom m p 0 0.07 0 0.07 +dichotomie dichotomie nom f s 0.2 0 0.2 0 +dichroïque dichroïque adj m s 0.01 0 0.01 0 +dichroïsme dichroïsme nom m s 0 0.07 0 0.07 +dicible dicible adj s 0 0.07 0 0.07 +dico dico nom m s 0.77 0.74 0.75 0.68 +dicos dico nom m p 0.77 0.74 0.02 0.07 +dicta dicter ver 8.42 12.3 0.11 0.68 ind:pas:3s; +dictai dicter ver 8.42 12.3 0 0.14 ind:pas:1s; +dictaient dicter ver 8.42 12.3 0.14 0.2 ind:imp:3p; +dictais dicter ver 8.42 12.3 0.03 0.07 ind:imp:1s;ind:imp:2s; +dictait dicter ver 8.42 12.3 0.07 2.36 ind:imp:3s; +dictames dictame nom m p 0 0.14 0 0.14 +dictant dicter ver 8.42 12.3 0.01 0.34 par:pre; +dictaphone dictaphone nom m s 0.42 0.34 0.41 0.27 +dictaphones dictaphone nom m p 0.42 0.34 0.02 0.07 +dictateur dictateur nom m s 2.53 5.74 2.14 5 +dictateurs dictateur nom m p 2.53 5.74 0.36 0.68 +dictatorial dictatorial adj m s 0.17 0.34 0.03 0.2 +dictatoriale dictatorial adj f s 0.17 0.34 0.03 0.07 +dictatoriales dictatorial adj f p 0.17 0.34 0.1 0.07 +dictatoriaux dictatorial adj m p 0.17 0.34 0.01 0 +dictatrice dictateur nom f s 2.53 5.74 0.04 0.07 +dictats dictat nom m p 0.01 0.14 0.01 0.14 +dictature dictature nom f s 3.86 5.27 3.84 4.86 +dictatures dictature nom f p 3.86 5.27 0.02 0.41 +dicte dicter ver 8.42 12.3 2.78 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dictent dicter ver 8.42 12.3 0.32 0.41 ind:pre:3p; +dicter dicter ver 8.42 12.3 2.28 1.89 inf; +dictera dicter ver 8.42 12.3 0.07 0.14 ind:fut:3s; +dicterai dicter ver 8.42 12.3 0.14 0.07 ind:fut:1s; +dicterez dicter ver 8.42 12.3 0.02 0 ind:fut:2p; +dictes dicter ver 8.42 12.3 0.03 0.27 ind:pre:2s; +dictez dicter ver 8.42 12.3 0.09 0.07 imp:pre:2p;ind:pre:2p; +dictiez dicter ver 8.42 12.3 0.01 0.07 ind:imp:2p; +diction diction nom f s 1.37 1.49 1.37 1.49 +dictionnaire dictionnaire nom m s 2.94 10.88 2.62 8.11 +dictionnaires dictionnaire nom m p 2.94 10.88 0.32 2.77 +dicton dicton nom m s 2.83 1.62 2.48 1.15 +dictons dicton nom m p 2.83 1.62 0.34 0.47 +dictât dicter ver 8.42 12.3 0 0.07 sub:imp:3s; +dictèrent dicter ver 8.42 12.3 0 0.07 ind:pas:3p; +dicté dicter ver m s 8.42 12.3 1.22 1.42 par:pas; +dictée dictée nom f s 2.25 4.05 1.59 3.51 +dictées dictée nom f p 2.25 4.05 0.66 0.54 +dictés dicter ver m p 8.42 12.3 0.16 0.34 par:pas; +didactique didactique adj s 0.6 1.35 0.6 1.01 +didactiquement didactiquement adv 0 0.07 0 0.07 +didactiques didactique adj p 0.6 1.35 0 0.34 +die die nom s 2.17 1.82 2.17 1.82 +dieffenbachia dieffenbachia nom f s 0 0.07 0 0.07 +diem diem nom m s 0.58 0 0.58 0 +dieppoise dieppois adj f s 0 0.41 0 0.34 +dieppoises dieppois adj f p 0 0.41 0 0.07 +dies_irae dies_irae nom m 0.54 0.14 0.54 0.14 +diesel diesel nom m s 1.71 0.88 1.47 0.68 +diesels diesel nom m p 1.71 0.88 0.25 0.2 +dieu dieu nom m s 903.41 396.49 852.91 368.51 +dieu_roi dieu_roi nom m s 0.01 0.07 0.01 0.07 +dieux dieu nom m p 903.41 396.49 50.49 27.97 +diffamait diffamer ver 0.81 0.54 0 0.07 ind:imp:3s; +diffamant diffamer ver 0.81 0.54 0.04 0 par:pre; +diffamateur diffamateur nom m s 0.21 0.2 0.21 0.07 +diffamateurs diffamateur nom m p 0.21 0.2 0 0.07 +diffamation diffamation nom f s 1.98 0.27 1.86 0.2 +diffamations diffamation nom f p 1.98 0.27 0.12 0.07 +diffamatoire diffamatoire adj s 0.2 0.14 0.1 0.14 +diffamatoires diffamatoire adj f p 0.2 0.14 0.09 0 +diffamatrice diffamateur nom f s 0.21 0.2 0 0.07 +diffame diffamer ver 0.81 0.54 0.13 0.14 ind:pre:3s; +diffament diffamer ver 0.81 0.54 0.01 0.07 ind:pre:3p; +diffamer diffamer ver 0.81 0.54 0.12 0.07 inf; +diffamé diffamer ver m s 0.81 0.54 0.48 0 par:pas; +diffamée diffamer ver f s 0.81 0.54 0.02 0.07 par:pas; +diffamées diffamer ver f p 0.81 0.54 0 0.07 par:pas; +diffamés diffamer ver m p 0.81 0.54 0 0.07 par:pas; +difficile difficile adj s 150.58 118.11 135.15 100.74 +difficilement difficilement adv 3.72 13.04 3.72 13.04 +difficiles difficile adj p 150.58 118.11 15.43 17.36 +difficultueux difficultueux adj m 0 0.07 0 0.07 +difficulté difficulté nom f s 15.74 49.8 6.86 22.03 +difficultés difficulté nom f p 15.74 49.8 8.89 27.77 +difforme difforme adj s 1.18 2.91 0.94 1.76 +difformes difforme adj p 1.18 2.91 0.25 1.15 +difformité difformité nom f s 0.68 0.81 0.42 0.47 +difformités difformité nom f p 0.68 0.81 0.26 0.34 +diffractent diffracter ver 0 0.14 0 0.07 ind:pre:3p; +diffraction diffraction nom f s 0.04 0 0.04 0 +diffractée diffracter ver f s 0 0.14 0 0.07 par:pas; +diffus diffus adj m 0.69 5.88 0.17 1.82 +diffusa diffuser ver 10.33 10.2 0 0.41 ind:pas:3s; +diffusaient diffuser ver 10.33 10.2 0.03 1.08 ind:imp:3p; +diffusais diffuser ver 10.33 10.2 0.02 0 ind:imp:1s; +diffusait diffuser ver 10.33 10.2 0.1 2.84 ind:imp:3s; +diffusant diffuser ver 10.33 10.2 0.09 0.81 par:pre; +diffuse diffuser ver 10.33 10.2 1.06 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +diffusent diffuser ver 10.33 10.2 0.64 0.27 ind:pre:3p; +diffuser diffuser ver 10.33 10.2 3.61 1.22 inf; +diffusera diffuser ver 10.33 10.2 0.16 0 ind:fut:3s; +diffuserai diffuser ver 10.33 10.2 0.01 0 ind:fut:1s; +diffuseraient diffuser ver 10.33 10.2 0 0.07 cnd:pre:3p; +diffuserais diffuser ver 10.33 10.2 0.01 0 cnd:pre:1s; +diffuserait diffuser ver 10.33 10.2 0.01 0 cnd:pre:3s; +diffuserions diffuser ver 10.33 10.2 0.1 0 cnd:pre:1p; +diffuserons diffuser ver 10.33 10.2 0.06 0 ind:fut:1p; +diffuseront diffuser ver 10.33 10.2 0.1 0.14 ind:fut:3p; +diffuses diffus adj f p 0.69 5.88 0.13 0.2 +diffuseur diffuseur nom m s 0.19 0.14 0.09 0.07 +diffuseurs diffuseur nom m p 0.19 0.14 0.1 0.07 +diffusez diffuser ver 10.33 10.2 0.39 0.14 imp:pre:2p;ind:pre:2p; +diffusion diffusion nom f s 2.55 1.28 2.53 1.28 +diffusions diffusion nom f p 2.55 1.28 0.02 0 +diffusons diffuser ver 10.33 10.2 0.24 0 imp:pre:1p;ind:pre:1p; +diffusèrent diffuser ver 10.33 10.2 0 0.07 ind:pas:3p; +diffusé diffuser ver m s 10.33 10.2 2.43 0.61 par:pas; +diffusée diffuser ver f s 10.33 10.2 0.71 0.81 par:pas; +diffusées diffuser ver f p 10.33 10.2 0.12 0.34 par:pas; +diffusés diffuser ver m p 10.33 10.2 0.44 0.27 par:pas; +diffère différer ver 3.71 10.07 0.55 1.35 ind:pre:1s;ind:pre:3s; +diffèrent différer ver 3.71 10.07 1.86 0.95 ind:pre:3p; +différa différer ver 3.71 10.07 0 0.27 ind:pas:3s; +différaient différer ver 3.71 10.07 0.13 0.81 ind:imp:3p; +différais différer ver 3.71 10.07 0.01 0.14 ind:imp:1s; +différait différer ver 3.71 10.07 0.12 1.82 ind:imp:3s; +différant différer ver 3.71 10.07 0 0.68 par:pre; +différemment différemment adv 8.46 4.19 8.46 4.19 +différence différence nom f s 55.88 44.46 51.47 38.65 +différences différence nom f p 55.88 44.46 4.41 5.81 +différenciables différenciable adj f p 0 0.07 0 0.07 +différenciaient différencier ver 3.17 2.91 0.01 0.07 ind:imp:3p; +différenciais différencier ver 3.17 2.91 0 0.07 ind:imp:1s; +différenciait différencier ver 3.17 2.91 0.28 0.81 ind:imp:3s; +différenciant différencier ver 3.17 2.91 0 0.07 par:pre; +différenciation différenciation nom f s 0.03 0.14 0.03 0.07 +différenciations différenciation nom f p 0.03 0.14 0 0.07 +différencie différencier ver 3.17 2.91 1.52 0.41 ind:pre:3s; +différencient différencier ver 3.17 2.91 0.04 0.07 ind:pre:3p; +différencier différencier ver 3.17 2.91 1.18 1.15 inf; +différenciera différencier ver 3.17 2.91 0.02 0 ind:fut:3s; +différencierez différencier ver 3.17 2.91 0.01 0 ind:fut:2p; +différencieront différencier ver 3.17 2.91 0 0.07 ind:fut:3p; +différenciez différencier ver 3.17 2.91 0.06 0 imp:pre:2p;ind:pre:2p; +différencié différencier ver m s 3.17 2.91 0.03 0.07 par:pas; +différenciée différencié adj f s 0.01 0.27 0 0.07 +différenciées différencié adj f p 0.01 0.27 0.01 0.07 +différenciés différencier ver m p 3.17 2.91 0.01 0.07 par:pas; +différend différend nom m s 2.68 1.49 1.15 0.95 +différends différend nom m p 2.68 1.49 1.53 0.54 +différent différent adj m s 135.8 92.03 65.42 27.43 +différente différent adj f s 135.8 92.03 24.45 18.31 +différentes différent adj f p 135.8 92.03 23.25 23.65 +différentie différentier ver 0.02 0 0.02 0 ind:pre:3s; +différentiel différentiel nom m s 0.21 0 0.21 0 +différentielle différentiel adj f s 0.22 0.07 0.06 0.07 +différentielles différentiel adj f p 0.22 0.07 0.03 0 +différents différents adj_ind m p 3.94 2.84 3.94 2.84 +différer différer ver 3.71 10.07 0.27 2.7 inf; +différera différer ver 3.71 10.07 0 0.07 ind:fut:3s; +différerais différer ver 3.71 10.07 0 0.07 cnd:pre:1s; +différerait différer ver 3.71 10.07 0.01 0.14 cnd:pre:3s; +différeront différer ver 3.71 10.07 0.01 0 ind:fut:3p; +différez différer ver 3.71 10.07 0.06 0 imp:pre:2p;ind:pre:2p; +différions différer ver 3.71 10.07 0 0.07 ind:imp:1p; +différons différer ver 3.71 10.07 0.18 0.07 ind:pre:1p; +différât différer ver 3.71 10.07 0 0.07 sub:imp:3s; +différèrent différer ver 3.71 10.07 0 0.07 ind:pas:3p; +différé différer ver m s 3.71 10.07 0.19 0.47 par:pas; +différée différer ver f s 3.71 10.07 0.31 0.34 par:pas; +différées différé adj f p 0.13 1.55 0.01 0.14 +différés différé adj m p 0.13 1.55 0.02 0 +difracter difracter ver 0.01 0 0.01 0 inf; +dig dig ono 0.29 0.27 0.29 0.27 +digest digest nom m s 0.23 0.41 0.23 0.34 +digeste digeste adj f s 0.05 0.07 0.05 0.07 +digestibles digestible adj p 0 0.07 0 0.07 +digestif digestif nom m s 0.68 0.54 0.67 0.34 +digestifs digestif adj m p 1.22 1.82 0.23 0.27 +digestion digestion nom f s 1.48 2.97 1.48 2.84 +digestions digestion nom f p 1.48 2.97 0.01 0.14 +digestive digestif adj f s 1.22 1.82 0.19 0.54 +digestives digestif adj f p 1.22 1.82 0.22 0.2 +digests digest nom m p 0.23 0.41 0 0.07 +digicode digicode nom m s 0.04 0.07 0.04 0.07 +digit digit nom m s 0.01 0 0.01 0 +digital digital adj m s 3.81 1.22 0.36 0.07 +digitale digital adj f s 3.81 1.22 0.93 0.2 +digitales digital adj f p 3.81 1.22 2.47 0.95 +digitaline digitaline nom f s 0.21 0.88 0.21 0.88 +digitaliseur digitaliseur nom m s 0.03 0 0.03 0 +digitalisée digitaliser ver f s 0.03 0 0.01 0 par:pas; +digitalisées digitaliser ver f p 0.03 0 0.02 0 par:pas; +digitaux digital adj m p 3.81 1.22 0.04 0 +digitée digité adj f s 0 0.07 0 0.07 +digne digne adj s 25.29 35.27 21.96 27.3 +dignement dignement adv 1.8 3.51 1.8 3.51 +dignes digne adj p 25.29 35.27 3.33 7.97 +dignitaire dignitaire nom s 0.7 4.26 0.21 1.01 +dignitaires dignitaire nom p 0.7 4.26 0.49 3.24 +dignité dignité nom f s 14.61 32.77 14.59 32.43 +dignités dignité nom f p 14.61 32.77 0.02 0.34 +dignus_est_intrare dignus_est_intrare adv 0 0.07 0 0.07 +digresse digresser ver 0.02 0.14 0.02 0.14 imp:pre:2s;ind:pre:1s; +digression digression nom f s 0.08 1.62 0.06 0.34 +digressions digression nom f p 0.08 1.62 0.02 1.28 +digue digue nom f s 1.85 10.2 1.02 7.97 +digues digue nom f p 1.85 10.2 0.83 2.23 +digère digérer ver 5.8 9.53 2.29 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +digèrent digérer ver 5.8 9.53 0.08 0.41 ind:pre:3p; +digéra digérer ver 5.8 9.53 0 0.07 ind:pas:3s; +digérai digérer ver 5.8 9.53 0 0.07 ind:pas:1s; +digéraient digérer ver 5.8 9.53 0 0.2 ind:imp:3p; +digérait digérer ver 5.8 9.53 0.03 0.95 ind:imp:3s; +digérant digérer ver 5.8 9.53 0.02 0.47 par:pre; +digérer digérer ver 5.8 9.53 1.73 3.51 inf; +digérera digérer ver 5.8 9.53 0.01 0 ind:fut:3s; +digérerait digérer ver 5.8 9.53 0.01 0.07 cnd:pre:3s; +digérons digérer ver 5.8 9.53 0 0.07 ind:pre:1p; +digérât digérer ver 5.8 9.53 0 0.07 sub:imp:3s; +digéré digérer ver m s 5.8 9.53 1.25 1.55 par:pas; +digérée digérer ver f s 5.8 9.53 0.23 0.61 par:pas; +digérées digérer ver f p 5.8 9.53 0.07 0.2 par:pas; +digérés digérer ver m p 5.8 9.53 0.09 0.27 par:pas; +dijonnais dijonnais adj m s 0 0.2 0 0.2 +diktat diktat nom m s 0.12 0.2 0.1 0.2 +diktats diktat nom m p 0.12 0.2 0.02 0 +dilapida dilapider ver 1.31 1.35 0 0.14 ind:pas:3s; +dilapidait dilapider ver 1.31 1.35 0.03 0.2 ind:imp:3s; +dilapidant dilapider ver 1.31 1.35 0.01 0 par:pre; +dilapidation dilapidation nom f s 0 0.07 0 0.07 +dilapide dilapider ver 1.31 1.35 0.1 0.14 imp:pre:2s;ind:pre:3s; +dilapider dilapider ver 1.31 1.35 0.07 0.34 inf; +dilapides dilapider ver 1.31 1.35 0.14 0 ind:pre:2s; +dilapidez dilapider ver 1.31 1.35 0.19 0 imp:pre:2p;ind:pre:2p; +dilapidé dilapider ver m s 1.31 1.35 0.73 0.41 par:pas; +dilapidée dilapider ver f s 1.31 1.35 0.02 0.14 par:pas; +dilapidées dilapider ver f p 1.31 1.35 0.01 0 par:pas; +dilata dilater ver 1.3 5.54 0 0.2 ind:pas:3s; +dilatable dilatable adj f s 0 0.14 0 0.14 +dilataient dilater ver 1.3 5.54 0 0.34 ind:imp:3p; +dilatait dilater ver 1.3 5.54 0.01 1.15 ind:imp:3s; +dilatant dilater ver 1.3 5.54 0 0.68 par:pre; +dilatateur dilatateur adj m s 0.02 0.14 0.01 0 +dilatateurs dilatateur adj m p 0.02 0.14 0.01 0.14 +dilatation dilatation nom f s 0.94 1.08 0.89 1.01 +dilatations dilatation nom f p 0.94 1.08 0.05 0.07 +dilate dilater ver 1.3 5.54 0.52 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dilatent dilater ver 1.3 5.54 0.15 0.41 ind:pre:3p; +dilater dilater ver 1.3 5.54 0.29 0.54 inf; +dilation dilation nom f s 0.03 0 0.03 0 +dilatoire dilatoire adj s 0.09 0.47 0.09 0.41 +dilatoires dilatoire adj m p 0.09 0.47 0 0.07 +dilatât dilater ver 1.3 5.54 0 0.07 sub:imp:3s; +dilatèrent dilater ver 1.3 5.54 0 0.14 ind:pas:3p; +dilaté dilaté adj m s 0.86 2.09 0.1 0.54 +dilatée dilaté adj f s 0.86 2.09 0.11 0.47 +dilatées dilaté adj f p 0.86 2.09 0.52 0.47 +dilatés dilaté adj m p 0.86 2.09 0.14 0.61 +dilection dilection nom f s 0 0.54 0 0.54 +dilemme dilemme nom m s 2.24 1.49 2.2 1.28 +dilemmes dilemme nom m p 2.24 1.49 0.04 0.2 +dilettante dilettante nom s 0.91 0.88 0.85 0.68 +dilettantes dilettante nom p 0.91 0.88 0.06 0.2 +dilettantisme dilettantisme nom m s 0 0.47 0 0.41 +dilettantismes dilettantisme nom m p 0 0.47 0 0.07 +diligemment diligemment adv 0.05 0.27 0.05 0.27 +diligence diligence nom f s 3.49 2.91 3.25 2.36 +diligences diligence nom f p 3.49 2.91 0.23 0.54 +diligent diligent adj m s 0.07 0.81 0.04 0.41 +diligente diligent adj f s 0.07 0.81 0.01 0.2 +diligenter diligenter ver 0.01 0 0.01 0 inf; +diligentes diligent adj f p 0.07 0.81 0.01 0.14 +diligents diligent adj m p 0.07 0.81 0.01 0.07 +dilua diluer ver 1 6.49 0 0.14 ind:pas:3s; +diluaient diluer ver 1 6.49 0 0.47 ind:imp:3p; +diluait diluer ver 1 6.49 0 0.81 ind:imp:3s; +diluant diluant nom m s 0.21 0 0.21 0 +dilue diluer ver 1 6.49 0.28 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diluent diluer ver 1 6.49 0 0.34 ind:pre:3p; +diluer diluer ver 1 6.49 0.31 0.61 inf; +diluerait diluer ver 1 6.49 0 0.07 cnd:pre:3s; +diluons diluer ver 1 6.49 0 0.07 imp:pre:1p; +dilution dilution nom f s 0.05 0.2 0.05 0.2 +diluvien diluvien adj m s 0.3 0.74 0 0.14 +diluvienne diluvien adj f s 0.3 0.74 0.14 0.27 +diluviennes diluvien adj f p 0.3 0.74 0.16 0.34 +dilué diluer ver m s 1 6.49 0.26 1.08 par:pas; +diluée diluer ver f s 1 6.49 0.09 1.08 par:pas; +diluées diluer ver f p 1 6.49 0.01 0.14 par:pas; +dilués diluer ver m p 1 6.49 0.01 0.34 par:pas; +dimanche dimanche nom m s 63.98 101.15 59.67 87.84 +dimanches dimanche nom m p 63.98 101.15 4.3 13.31 +dimension dimension nom f s 9.62 23.11 6.1 8.92 +dimensionnel dimensionnel adj m s 0.61 0.07 0.33 0 +dimensionnelle dimensionnel adj f s 0.61 0.07 0.22 0.07 +dimensionnelles dimensionnel adj f p 0.61 0.07 0.05 0 +dimensionnels dimensionnel adj m p 0.61 0.07 0.01 0 +dimensionnement dimensionnement nom m s 0.01 0 0.01 0 +dimensions dimension nom f p 9.62 23.11 3.52 14.19 +diminua diminuer ver 7.94 16.28 0.14 0.74 ind:pas:3s; +diminuaient diminuer ver 7.94 16.28 0.22 0.95 ind:imp:3p; +diminuais diminuer ver 7.94 16.28 0.02 0.2 ind:imp:1s; +diminuait diminuer ver 7.94 16.28 0.1 2.64 ind:imp:3s; +diminuant diminuer ver 7.94 16.28 0.07 0.54 par:pre; +diminue diminuer ver 7.94 16.28 1.93 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diminuendo diminuendo adv 0.02 0 0.02 0 +diminuent diminuer ver 7.94 16.28 0.52 0.81 ind:pre:3p; +diminuer diminuer ver 7.94 16.28 1.93 3.72 inf; +diminuera diminuer ver 7.94 16.28 0.13 0 ind:fut:3s; +diminuerai diminuer ver 7.94 16.28 0.05 0 ind:fut:1s; +diminuerais diminuer ver 7.94 16.28 0.03 0 cnd:pre:1s; +diminuerait diminuer ver 7.94 16.28 0.21 0.14 cnd:pre:3s; +diminueront diminuer ver 7.94 16.28 0.01 0 ind:fut:3p; +diminuez diminuer ver 7.94 16.28 0.24 0 imp:pre:2p;ind:pre:2p; +diminuiez diminuer ver 7.94 16.28 0.01 0 ind:imp:2p; +diminutif diminutif nom m s 0.96 1.89 0.96 1.49 +diminutifs diminutif nom m p 0.96 1.89 0 0.41 +diminution diminution nom f s 1.03 1.15 1.01 1.01 +diminutions diminution nom f p 1.03 1.15 0.03 0.14 +diminuât diminuer ver 7.94 16.28 0 0.14 sub:imp:3s; +diminuèrent diminuer ver 7.94 16.28 0 0.07 ind:pas:3p; +diminué diminuer ver m s 7.94 16.28 1.68 1.82 par:pas; +diminuée diminuer ver f s 7.94 16.28 0.46 0.88 par:pas; +diminuées diminuer ver f p 7.94 16.28 0.09 0 par:pas; +diminués diminuer ver m p 7.94 16.28 0.09 0.61 par:pas; +dinamiteros dinamitero nom m p 0 0.2 0 0.2 +dinanderie dinanderie nom f s 0 0.07 0 0.07 +dinar dinar nom m s 1.74 0.14 0.34 0.07 +dinars dinar nom m p 1.74 0.14 1.41 0.07 +dinde dinde nom f s 9.32 2.97 8.79 1.69 +dindes dinde nom f p 9.32 2.97 0.54 1.28 +dindon dindon nom m s 1.73 1.35 1.23 0.74 +dindonne dindonner ver 0 0.14 0 0.07 ind:pre:3s; +dindonneau dindonneau nom m s 0.17 0.07 0.17 0 +dindonneaux dindonneau nom m p 0.17 0.07 0 0.07 +dindonné dindonner ver m s 0 0.14 0 0.07 par:pas; +dindons dindon nom m p 1.73 1.35 0.5 0.61 +dine dine nom m s 1.24 0.07 1.24 0.07 +ding ding ono 3.54 1.55 3.54 1.55 +dingo dingo adj s 0.98 1.08 0.95 1.01 +dingos dingo nom m p 0.95 0.88 0.28 0.2 +dingue dingue adj s 58.48 11.69 53.01 9.8 +dinguent dinguer ver 0.33 1.08 0 0.07 ind:pre:3p; +dinguer dinguer ver 0.33 1.08 0 0.95 inf; +dinguerie dinguerie nom f s 0.05 0.88 0.05 0.81 +dingueries dinguerie nom f p 0.05 0.88 0 0.07 +dingues dingue adj p 58.48 11.69 5.47 1.89 +dingué dinguer ver m s 0.33 1.08 0 0.07 par:pas; +dinosaure dinosaure nom m s 4.46 0.68 2.32 0.07 +dinosaures dinosaure nom m p 4.46 0.68 2.14 0.61 +dioclétienne dioclétien adj f s 0 0.14 0 0.07 +dioclétiennes dioclétien adj f p 0 0.14 0 0.07 +diocèse diocèse nom m s 0.44 1.15 0.44 1.01 +diocèses diocèse nom m p 0.44 1.15 0 0.14 +diocésain diocésain adj m s 0.1 0.14 0.1 0 +diocésaines diocésain adj f p 0.1 0.14 0 0.14 +diode diode nom f s 0.07 0 0.07 0 +diodon diodon nom m s 0 0.2 0 0.2 +dionysiaque dionysiaque adj s 0.16 0.47 0.16 0.34 +dionysiaques dionysiaque adj f p 0.16 0.47 0 0.14 +dionysien dionysien adj m s 0.01 0.07 0.01 0.07 +dionée dionée nom f s 0.03 0 0.03 0 +dioptre dioptre nom m s 0 0.07 0 0.07 +dioptries dioptrie nom f p 0 0.14 0 0.14 +diorama diorama nom m s 0.15 0.34 0.11 0.07 +dioramas diorama nom m p 0.15 0.34 0.04 0.27 +diorite diorite nom f s 0.04 0 0.04 0 +dioxine dioxine nom f s 0.14 0 0.12 0 +dioxines dioxine nom f p 0.14 0 0.02 0 +dioxyde dioxyde nom m s 0.56 0 0.56 0 +diphtongue diphtongue nom f s 0.02 0.34 0 0.14 +diphtongues diphtongue nom f p 0.02 0.34 0.02 0.2 +diphtérie diphtérie nom f s 0.26 0.68 0.26 0.68 +diphényle diphényle nom m s 0 0.07 0 0.07 +diplodocus diplodocus nom m 0.01 0.68 0.01 0.68 +diplomate diplomate nom s 3.75 8.65 1.98 4.66 +diplomates diplomate nom p 3.75 8.65 1.77 3.99 +diplomatie diplomatie nom f s 1.8 5.68 1.8 5.68 +diplomatique diplomatique adj s 4.28 10 2.77 6.96 +diplomatiquement diplomatiquement adv 0.04 0.2 0.04 0.2 +diplomatiques diplomatique adj p 4.28 10 1.51 3.04 +diplopie diplopie nom f s 0.03 0 0.03 0 +diplôme diplôme nom m s 17.27 7.36 13.28 4.32 +diplômer diplômer ver 4.29 0.27 0.16 0 inf; +diplômes diplôme nom m p 17.27 7.36 3.99 3.04 +diplômé diplômer ver m s 4.29 0.27 2.44 0.14 par:pas; +diplômée diplômer ver f s 4.29 0.27 1.17 0.07 par:pas; +diplômées diplômé adj f p 1.5 1.01 0.07 0.07 +diplômés diplômé nom m p 1.81 0.27 1.03 0 +dipneuste dipneuste nom m s 0.07 0 0.05 0 +dipneustes dipneuste nom m p 0.07 0 0.02 0 +dipsomane dipsomane nom s 0.26 0 0.25 0 +dipsomanes dipsomane nom p 0.26 0 0.01 0 +dipsomanie dipsomanie nom f s 0.01 0 0.01 0 +diptyque diptyque nom m s 0.01 0.14 0.01 0.14 +diptères diptère adj p 0.01 0.07 0.01 0.07 +dipôle dipôle nom m s 0.01 0 0.01 0 +dira dire ver_sup 5946.15 4832.5 36.47 21.89 ind:fut:3s; +dirai dire ver_sup 5946.15 4832.5 82.39 27.43 ind:fut:1s; +diraient dire ver_sup 5946.15 4832.5 3.02 3.24 cnd:pre:3p; +dirais dire ver_sup 5946.15 4832.5 57.65 16.76 cnd:pre:1s;cnd:pre:2s; +dirait dire ver_sup 5946.15 4832.5 190.63 85.88 cnd:pre:3s; +diras dire ver_sup 5946.15 4832.5 22.52 10.54 ind:fut:2s; +dire dire ver_sup 5946.15 4832.5 1564.52 827.84 inf;;inf;;inf;;inf;;inf;; +direct direct nom m s 16.34 5 15.81 4.39 +directe direct adj f s 21.89 26.69 6.27 11.82 +directement directement adv 26.73 39.12 26.73 39.12 +directes direct adj f p 21.89 26.69 0.49 2.03 +directeur directeur nom m s 64.71 38.45 57.65 30 +directeur_adjoint directeur_adjoint nom m s 0.14 0 0.14 0 +directeurs directeur nom m p 64.71 38.45 2.23 3.11 +directif directif adj m s 0.34 0.14 0.22 0 +direction direction nom f s 45.06 108.04 43.25 103.04 +directionnel directionnel adj m s 0.57 0.14 0.09 0.07 +directionnelle directionnel adj f s 0.57 0.14 0.04 0 +directionnelles directionnel adj f p 0.57 0.14 0.02 0.07 +directionnels directionnel adj m p 0.57 0.14 0.42 0 +directions direction nom f p 45.06 108.04 1.81 5 +directive directive nom f s 3.43 4.93 0.4 0.47 +directives directive nom f p 3.43 4.93 3.04 4.46 +directo directo adv 0 0.41 0 0.41 +directoire directoire nom m s 0.17 2.09 0.17 2.09 +directorat directorat nom m s 0.01 0 0.01 0 +directorial directorial adj m s 0.01 1.28 0.01 0.81 +directoriale directorial adj f s 0.01 1.28 0 0.27 +directoriaux directorial adj m p 0.01 1.28 0 0.2 +directos directos adv 0.03 0.41 0.03 0.41 +directrice directeur nom f s 64.71 38.45 4.55 5.07 +directrices directeur nom f p 64.71 38.45 0.28 0.27 +directs direct adj m p 21.89 26.69 0.84 2.16 +dirent dire ver_sup 5946.15 4832.5 1.65 7.03 ind:pas:3p; +dires dire nom_sup m p 53.88 31.42 1.94 2.5 +direz dire ver_sup 5946.15 4832.5 13.72 10 ind:fut:2p; +dirham dirham nom m s 0.43 0.14 0.14 0 +dirhams dirham nom m p 0.43 0.14 0.29 0.14 +diriez dire ver_sup 5946.15 4832.5 10.69 2.36 cnd:pre:2p; +dirige diriger ver 65.1 95.68 23.74 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dirigea diriger ver 65.1 95.68 0.06 20.2 ind:pas:3s; +dirigeable dirigeable nom m s 0.62 0.34 0.41 0.2 +dirigeables dirigeable nom m p 0.62 0.34 0.22 0.14 +dirigeai diriger ver 65.1 95.68 0.12 1.62 ind:pas:1s; +dirigeaient diriger ver 65.1 95.68 0.62 2.77 ind:imp:3p; +dirigeais diriger ver 65.1 95.68 0.52 0.68 ind:imp:1s;ind:imp:2s; +dirigeait diriger ver 65.1 95.68 3.31 11.69 ind:imp:3s; +dirigeant dirigeant nom m s 6.18 10 1.81 2.09 +dirigeante dirigeant adj f s 0.9 3.18 0.2 0.61 +dirigeantes dirigeant adj f p 0.9 3.18 0.06 0.41 +dirigeants dirigeant nom m p 6.18 10 4.3 7.77 +dirigent diriger ver 65.1 95.68 4.11 2.3 ind:pre:3p; +dirigeons diriger ver 65.1 95.68 1.14 0.95 imp:pre:1p;ind:pre:1p; +diriger diriger ver 65.1 95.68 13.94 17.64 inf;; +dirigera diriger ver 65.1 95.68 1.17 0.41 ind:fut:3s; +dirigerai diriger ver 65.1 95.68 0.34 0.2 ind:fut:1s; +dirigeraient diriger ver 65.1 95.68 0.02 0 cnd:pre:3p; +dirigerais diriger ver 65.1 95.68 0.1 0 cnd:pre:1s;cnd:pre:2s; +dirigerait diriger ver 65.1 95.68 0.11 0.14 cnd:pre:3s; +dirigeras diriger ver 65.1 95.68 0.23 0.07 ind:fut:2s; +dirigerez diriger ver 65.1 95.68 0.36 0.07 ind:fut:2p; +dirigerons diriger ver 65.1 95.68 0.06 0.07 ind:fut:1p; +dirigeront diriger ver 65.1 95.68 0.19 0.2 ind:fut:3p; +diriges diriger ver 65.1 95.68 1.31 0 ind:pre:2s; +dirigez diriger ver 65.1 95.68 3.88 0.2 imp:pre:2p;ind:pre:2p; +dirigeâmes diriger ver 65.1 95.68 0.03 0.47 ind:pas:1p; +dirigeât diriger ver 65.1 95.68 0 0.14 sub:imp:3s; +dirigiez diriger ver 65.1 95.68 0.3 0.07 ind:imp:2p; +dirigions diriger ver 65.1 95.68 0.17 0.34 ind:imp:1p; +dirigèrent diriger ver 65.1 95.68 0.01 2.23 ind:pas:3p; +dirigé diriger ver m s 65.1 95.68 4.43 7.3 par:pas; +dirigée diriger ver f s 65.1 95.68 2.29 4.19 par:pas; +dirigées diriger ver f p 65.1 95.68 0.2 1.15 par:pas; +dirigés diriger ver m p 65.1 95.68 0.91 2.36 par:pas; +dirimant dirimant adj m s 0 0.14 0 0.07 +dirimants dirimant adj m p 0 0.14 0 0.07 +dirions dire ver_sup 5946.15 4832.5 0.08 0.68 cnd:pre:1p; +dirlo dirlo nom m s 0.4 1.76 0.4 1.69 +dirlos dirlo nom m p 0.4 1.76 0 0.07 +dirons dire ver_sup 5946.15 4832.5 2.78 2.03 ind:fut:1p; +diront dire ver_sup 5946.15 4832.5 9.09 4.46 ind:fut:3p; +dis dire ver_sup 5946.15 4832.5 1025.78 477.36 imp:pre:2s;ind:pre:1s;ind:pre:1s;ind:pre:2s;ind:pas:1s; +disaient dire ver_sup 5946.15 4832.5 11.68 35.68 ind:imp:3p; +disais dire ver_sup 5946.15 4832.5 98.37 70.68 ind:imp:1s;ind:imp:2s; +disait dire ver_sup 5946.15 4832.5 94 352.3 ind:imp:3s; +disant dire ver_sup 5946.15 4832.5 26.41 81.62 par:pre; +disants disant adj m p 1.3 7.09 0.03 0.07 +disc_jockey disc_jockey nom m s 0.18 0.07 0.16 0 +disc_jockey disc_jockey nom m p 0.18 0.07 0.03 0.07 +discal discal adj m s 0.13 0.07 0.02 0.07 +discale discal adj f s 0.13 0.07 0.11 0 +discerna discerner ver 1.05 15.2 0 0.14 ind:pas:3s; +discernable discernable adj f s 0.01 0.47 0.01 0.34 +discernables discernable adj p 0.01 0.47 0 0.14 +discernai discerner ver 1.05 15.2 0 0.14 ind:pas:1s; +discernaient discerner ver 1.05 15.2 0 0.47 ind:imp:3p; +discernais discerner ver 1.05 15.2 0 0.95 ind:imp:1s; +discernait discerner ver 1.05 15.2 0.01 2.43 ind:imp:3s; +discernant discerner ver 1.05 15.2 0 0.34 par:pre; +discerne discerner ver 1.05 15.2 0.33 2.16 ind:pre:1s;ind:pre:3s; +discernement discernement nom m s 0.9 2.5 0.9 2.5 +discernent discerner ver 1.05 15.2 0.01 0.34 ind:pre:3p; +discerner discerner ver 1.05 15.2 0.69 6.69 inf; +discernerait discerner ver 1.05 15.2 0 0.07 cnd:pre:3s; +discernes discerner ver 1.05 15.2 0 0.07 ind:pre:2s; +discernions discerner ver 1.05 15.2 0 0.27 ind:imp:1p; +discernâmes discerner ver 1.05 15.2 0 0.27 ind:pas:1p; +discernât discerner ver 1.05 15.2 0 0.07 sub:imp:3s; +discerné discerner ver m s 1.05 15.2 0.01 0.74 par:pas; +discernées discerner ver f p 1.05 15.2 0 0.07 par:pas; +disciple disciple nom s 5.62 14.46 1.98 7.64 +disciple_roi disciple_roi nom s 0 0.07 0 0.07 +disciples disciple nom p 5.62 14.46 3.65 6.82 +disciplina discipliner ver 0.93 1.42 0 0.07 ind:pas:3s; +disciplinaient discipliner ver 0.93 1.42 0 0.07 ind:imp:3p; +disciplinaire disciplinaire adj s 1.28 1.15 0.93 0.81 +disciplinaires disciplinaire adj p 1.28 1.15 0.35 0.34 +disciplinais discipliner ver 0.93 1.42 0.01 0 ind:imp:1s; +disciplinait discipliner ver 0.93 1.42 0 0.14 ind:imp:3s; +discipline discipline nom f s 12.02 22.03 11.59 20.27 +discipliner discipliner ver 0.93 1.42 0.29 0.34 inf; +disciplinera discipliner ver 0.93 1.42 0 0.07 ind:fut:3s; +disciplinerait discipliner ver 0.93 1.42 0 0.07 cnd:pre:3s; +disciplines discipline nom f p 12.02 22.03 0.44 1.76 +discipliné discipliné adj m s 1.07 2.16 0.3 0.74 +disciplinée discipliné adj f s 1.07 2.16 0.24 0.41 +disciplinées discipliné adj f p 1.07 2.16 0.01 0.27 +disciplinés discipliné adj m p 1.07 2.16 0.51 0.74 +disco disco nom s 1.81 0.34 1.79 0.34 +discobole discobole nom m s 0.24 0.2 0.23 0.2 +discoboles discobole nom m p 0.24 0.2 0.01 0 +discographie discographie nom f s 0.01 0 0.01 0 +discographiques discographique adj p 0 0.07 0 0.07 +discontinu discontinu adj m s 0.04 1.49 0 0.61 +discontinuaient discontinuer ver 0.03 1.82 0 0.07 ind:imp:3p; +discontinue discontinu adj f s 0.04 1.49 0.04 0.41 +discontinuer discontinuer ver 0.03 1.82 0.03 1.76 inf; +discontinues discontinu adj f p 0.04 1.49 0 0.27 +discontinuité discontinuité nom f s 0.05 0.68 0.05 0.68 +discontinus discontinu adj m p 0.04 1.49 0 0.2 +disconviens disconvenir ver 0 0.14 0 0.07 ind:pre:1s; +disconvint disconvenir ver 0 0.14 0 0.07 ind:pas:3s; +discordance discordance nom f s 0.06 0.68 0.04 0.41 +discordances discordance nom f p 0.06 0.68 0.02 0.27 +discordant discordant adj m s 0.14 2.91 0.08 0.74 +discordante discordant adj f s 0.14 2.91 0.02 0.74 +discordantes discordant adj f p 0.14 2.91 0.01 0.34 +discordants discordant adj m p 0.14 2.91 0.04 1.08 +discorde discorde nom f s 1.41 2.09 1.35 2.09 +discordes discorde nom f p 1.41 2.09 0.06 0 +discos disco nom p 1.81 0.34 0.02 0 +discothèque discothèque nom f s 1.32 0.81 1.12 0.74 +discothèques discothèque nom f p 1.32 0.81 0.2 0.07 +discount discount nom m s 0.39 0.27 0.39 0.27 +discouraient discourir ver 0.66 4.12 0 0.2 ind:imp:3p; +discourait discourir ver 0.66 4.12 0 1.01 ind:imp:3s; +discourant discourir ver 0.66 4.12 0.02 0.34 par:pre; +discoure discourir ver 0.66 4.12 0.01 0.07 sub:pre:1s;sub:pre:3s; +discourent discourir ver 0.66 4.12 0.01 0.07 ind:pre:3p; +discoureur discoureur nom m s 0.01 0.14 0.01 0.07 +discoureurs discoureur nom m p 0.01 0.14 0 0.07 +discourir discourir ver 0.66 4.12 0.39 2.09 inf; +discours discours nom m 42.75 50.54 42.75 50.54 +discourt discourir ver 0.66 4.12 0.11 0.07 ind:pre:3s; +discourtois discourtois adj m 0.28 0.41 0.25 0.14 +discourtoise discourtois adj f s 0.28 0.41 0.03 0.2 +discourtoises discourtois adj f p 0.28 0.41 0 0.07 +discouru discourir ver m s 0.66 4.12 0.1 0.2 par:pas; +discourut discourir ver 0.66 4.12 0 0.07 ind:pas:3s; +discret discret adj m s 15.61 33.04 9.52 13.58 +discrets discret adj m p 15.61 33.04 2.96 4.93 +discriminant discriminant adj m s 0.03 0.07 0.01 0.07 +discriminants discriminant adj m p 0.03 0.07 0.01 0 +discrimination discrimination nom f s 1.6 0.88 1.57 0.88 +discriminations discrimination nom f p 1.6 0.88 0.03 0 +discriminatoire discriminatoire adj s 0.15 0.07 0.15 0.07 +discriminer discriminer ver 0.18 0.14 0.17 0.14 inf; +discriminé discriminer ver m s 0.18 0.14 0.01 0 par:pas; +discrète discret adj f s 15.61 33.04 2.79 11.89 +discrètement discrètement adv 5.82 19.73 5.82 19.73 +discrètes discret adj f p 15.61 33.04 0.34 2.64 +discrédit discrédit nom m s 0.11 0.61 0.11 0.61 +discréditait discréditer ver 1.61 1.35 0.01 0.07 ind:imp:3s; +discréditant discréditer ver 1.61 1.35 0.02 0 par:pre; +discrédite discréditer ver 1.61 1.35 0.05 0.14 ind:pre:3s; +discréditer discréditer ver 1.61 1.35 1.2 0.61 inf;; +discréditerait discréditer ver 1.61 1.35 0.04 0 cnd:pre:3s; +discréditez discréditer ver 1.61 1.35 0.05 0 imp:pre:2p;ind:pre:2p; +discrédité discréditer ver m s 1.61 1.35 0.14 0.47 par:pas; +discréditée discréditer ver f s 1.61 1.35 0.04 0 par:pas; +discréditées discréditer ver f p 1.61 1.35 0.03 0.07 par:pas; +discrédités discréditer ver m p 1.61 1.35 0.04 0 par:pas; +discrétion discrétion nom f s 4.59 21.22 4.59 21.22 +discrétionnaire discrétionnaire adj s 0.13 0.2 0.09 0.14 +discrétionnaires discrétionnaire adj f p 0.13 0.2 0.04 0.07 +disculpait disculper ver 1.27 1.55 0 0.2 ind:imp:3s; +disculpant disculper ver 1.27 1.55 0.07 0 par:pre; +disculpation disculpation nom f s 0.04 0 0.04 0 +disculpe disculper ver 1.27 1.55 0.19 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +disculpent disculper ver 1.27 1.55 0.01 0 ind:pre:3p; +disculper disculper ver 1.27 1.55 0.61 1.22 inf; +disculperait disculper ver 1.27 1.55 0.01 0 cnd:pre:3s; +disculpez disculper ver 1.27 1.55 0.01 0.07 imp:pre:2p; +disculpé disculper ver m s 1.27 1.55 0.36 0 par:pas; +disculpés disculper ver m p 1.27 1.55 0.01 0 par:pas; +discursives discursif adj f p 0 0.07 0 0.07 +discussion discussion nom f s 23.58 33.51 19.54 20.88 +discussions discussion nom f p 23.58 33.51 4.05 12.64 +discuta discuter ver 96.42 58.65 0.01 0.74 ind:pas:3s; +discutable discutable adj s 0.79 1.01 0.59 0.68 +discutables discutable adj p 0.79 1.01 0.19 0.34 +discutai discuter ver 96.42 58.65 0 0.27 ind:pas:1s; +discutaient discuter ver 96.42 58.65 0.2 4.53 ind:imp:3p; +discutaillaient discutailler ver 0.48 0.81 0 0.14 ind:imp:3p; +discutaillait discutailler ver 0.48 0.81 0.01 0.07 ind:imp:3s; +discutaille discutailler ver 0.48 0.81 0.01 0.14 ind:pre:3s; +discutaillent discutailler ver 0.48 0.81 0 0.07 ind:pre:3p; +discutailler discutailler ver 0.48 0.81 0.46 0.41 inf; +discutailleries discutaillerie nom f p 0 0.14 0 0.14 +discutailleur discutailleur nom m s 0 0.07 0 0.07 +discutailleuse discutailleur adj f s 0 0.07 0 0.07 +discutais discuter ver 96.42 58.65 0.57 0.41 ind:imp:1s;ind:imp:2s; +discutait discuter ver 96.42 58.65 2.09 5.14 ind:imp:3s; +discutant discuter ver 96.42 58.65 0.6 2.97 par:pre; +discute discuter ver 96.42 58.65 14.75 5.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +discutent discuter ver 96.42 58.65 2.02 3.45 ind:pre:3p; +discuter discuter ver 96.42 58.65 50.43 25.47 inf; +discutera discuter ver 96.42 58.65 2.92 0.47 ind:fut:3s; +discuterai discuter ver 96.42 58.65 1.08 0.2 ind:fut:1s; +discuteraient discuter ver 96.42 58.65 0.05 0.07 cnd:pre:3p; +discuterais discuter ver 96.42 58.65 0.1 0.07 cnd:pre:1s; +discuterait discuter ver 96.42 58.65 0.52 0.41 cnd:pre:3s; +discuterez discuter ver 96.42 58.65 0.1 0.07 ind:fut:2p; +discuteriez discuter ver 96.42 58.65 0.02 0 cnd:pre:2p; +discuterions discuter ver 96.42 58.65 0.01 0.07 cnd:pre:1p; +discuterons discuter ver 96.42 58.65 1.66 0.2 ind:fut:1p; +discuteront discuter ver 96.42 58.65 0.04 0.07 ind:fut:3p; +discutes discuter ver 96.42 58.65 0.82 0.14 ind:pre:2s; +discutez discuter ver 96.42 58.65 2.73 0.14 imp:pre:2p;ind:pre:2p; +discutiez discuter ver 96.42 58.65 0.23 0 ind:imp:2p; +discutions discuter ver 96.42 58.65 0.71 1.01 ind:imp:1p;sub:pre:1p; +discutons discuter ver 96.42 58.65 3.44 0.61 imp:pre:1p;ind:pre:1p; +discutâmes discuter ver 96.42 58.65 0 0.47 ind:pas:1p; +discutât discuter ver 96.42 58.65 0.1 0.07 sub:imp:3s; +discutèrent discuter ver 96.42 58.65 0.02 0.88 ind:pas:3p; +discuté discuter ver m s 96.42 58.65 10.85 4.53 par:pas; +discutée discuter ver f s 96.42 58.65 0.2 0.34 par:pas; +discutées discuter ver f p 96.42 58.65 0.02 0.27 par:pas; +discutés discuter ver m p 96.42 58.65 0.12 0.07 par:pas; +dise dire ver_sup 5946.15 4832.5 53.46 25.41 sub:pre:1s;sub:pre:3s; +disent dire ver_sup 5946.15 4832.5 88.46 44.12 ind:pre:3p;sub:pre:3p; +disert disert adj m s 0.01 0.88 0 0.88 +diserte disert adj f s 0.01 0.88 0.01 0 +dises dire ver_sup 5946.15 4832.5 11.41 2.7 sub:pre:2s; +disette disette nom f s 0.06 1.76 0.06 1.62 +disettes disette nom f p 0.06 1.76 0 0.14 +diseur diseur nom m s 0.53 0.68 0.26 0.14 +diseurs diseur nom m p 0.53 0.68 0.06 0.2 +diseuse diseur nom f s 0.53 0.68 0.14 0.34 +diseuses diseur nom f p 0.53 0.68 0.06 0 +disfonctionnement disfonctionnement nom m s 0.44 0 0.44 0 +disgracia disgracier ver 0.09 0.68 0 0.07 ind:pas:3s; +disgraciaient disgracier ver 0.09 0.68 0 0.07 ind:imp:3p; +disgraciait disgracier ver 0.09 0.68 0 0.07 ind:imp:3s; +disgracier disgracier ver 0.09 0.68 0.01 0 inf; +disgraciera disgracier ver 0.09 0.68 0 0.07 ind:fut:3s; +disgracieuse disgracieux adj f s 0.14 2.3 0.01 0.95 +disgracieusement disgracieusement adv 0 0.07 0 0.07 +disgracieuses disgracieux adj f p 0.14 2.3 0.04 0.14 +disgracieux disgracieux adj m 0.14 2.3 0.09 1.22 +disgracié disgracié adj m s 0.17 0.61 0.16 0.34 +disgraciée disgracier ver f s 0.09 0.68 0.01 0.14 par:pas; +disgraciées disgracié adj f p 0.17 0.61 0 0.07 +disgraciés disgracier ver m p 0.09 0.68 0.01 0.07 par:pas; +disgrâce disgrâce nom f s 1.76 4.46 1.76 3.99 +disgrâces disgrâce nom f p 1.76 4.46 0 0.47 +disharmonie disharmonie nom f s 0.01 0.07 0.01 0.07 +disiez dire ver_sup 5946.15 4832.5 20.36 4.66 ind:imp:2p;sub:pre:2p; +disions dire ver_sup 5946.15 4832.5 1.54 5.47 ind:imp:1p; +disjoignait disjoindre ver 0.1 1.49 0 0.07 ind:imp:3s; +disjoignant disjoindre ver 0.1 1.49 0 0.2 par:pre; +disjoignent disjoindre ver 0.1 1.49 0 0.07 ind:pre:3p; +disjoindre disjoindre ver 0.1 1.49 0 0.34 inf; +disjoint disjoint adj m s 0.13 2.03 0.1 0.27 +disjointe disjoint adj f s 0.13 2.03 0.01 0 +disjointes disjoint adj f p 0.13 2.03 0 1.28 +disjoints disjoindre ver m p 0.1 1.49 0.1 0.07 par:pas; +disjoncta disjoncter ver 3.31 0.68 0 0.14 ind:pas:3s; +disjonctais disjoncter ver 3.31 0.68 0.01 0.07 ind:imp:1s; +disjonctait disjoncter ver 3.31 0.68 0.02 0 ind:imp:3s; +disjoncte disjoncter ver 3.31 0.68 0.47 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disjonctent disjoncter ver 3.31 0.68 0.02 0 ind:pre:3p; +disjoncter disjoncter ver 3.31 0.68 0.4 0.2 inf; +disjoncterais disjoncter ver 3.31 0.68 0.02 0 cnd:pre:1s;cnd:pre:2s; +disjoncterait disjoncter ver 3.31 0.68 0.04 0.07 cnd:pre:3s; +disjonctes disjoncter ver 3.31 0.68 0.57 0 ind:pre:2s; +disjoncteur disjoncteur nom m s 1.45 0.2 1.34 0.07 +disjoncteurs disjoncteur nom m p 1.45 0.2 0.11 0.14 +disjonctez disjoncter ver 3.31 0.68 0.03 0 imp:pre:2p;ind:pre:2p; +disjonction disjonction nom f s 0 0.14 0 0.07 +disjonctions disjonction nom f p 0 0.14 0 0.07 +disjoncté disjoncter ver m s 3.31 0.68 1.65 0.14 par:pas; +disjonctée disjoncter ver f s 3.31 0.68 0.05 0.07 par:pas; +disjonctés disjoncter ver m p 3.31 0.68 0.02 0 par:pas; +diskette diskette nom f s 0 0.81 0 0.81 +dislocation dislocation nom f s 0.16 1.35 0.16 1.28 +dislocations dislocation nom f p 0.16 1.35 0 0.07 +disloqua disloquer ver 0.54 4.8 0 0.14 ind:pas:3s; +disloquai disloquer ver 0.54 4.8 0 0.07 ind:pas:1s; +disloquaient disloquer ver 0.54 4.8 0 0.34 ind:imp:3p; +disloquait disloquer ver 0.54 4.8 0 0.27 ind:imp:3s; +disloquant disloquer ver 0.54 4.8 0 0.2 par:pre; +disloque disloquer ver 0.54 4.8 0.12 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disloquent disloquer ver 0.54 4.8 0.01 0.14 ind:pre:3p; +disloquer disloquer ver 0.54 4.8 0.18 0.88 inf; +disloquerai disloquer ver 0.54 4.8 0.01 0 ind:fut:1s; +disloqueront disloquer ver 0.54 4.8 0 0.07 ind:fut:3p; +disloquât disloquer ver 0.54 4.8 0 0.07 sub:imp:3s; +disloquèrent disloquer ver 0.54 4.8 0 0.2 ind:pas:3p; +disloqué disloqué adj m s 0.12 3.24 0.07 1.35 +disloquée disloquer ver f s 0.54 4.8 0.05 0.27 par:pas; +disloquées disloquer ver f p 0.54 4.8 0.01 0.14 par:pas; +disloqués disloquer ver m p 0.54 4.8 0.11 0.34 par:pas; +disons dire ver_sup 5946.15 4832.5 45.13 17.84 imp:pre:1p;ind:pre:1p; +disparais disparaître ver 166.13 183.31 8.97 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +disparaissaient disparaître ver 166.13 183.31 0.33 6.01 ind:imp:3p; +disparaissais disparaître ver 166.13 183.31 0.29 0.54 ind:imp:1s;ind:imp:2s; +disparaissait disparaître ver 166.13 183.31 1.11 11.15 ind:imp:3s; +disparaissant disparaître ver 166.13 183.31 0.32 4.73 par:pre; +disparaissante disparaissant adj f s 0.01 1.15 0 0.07 +disparaisse disparaître ver 166.13 183.31 2.94 2.43 sub:pre:1s;sub:pre:3s; +disparaissent disparaître ver 166.13 183.31 6.65 6.42 ind:pre:3p; +disparaisses disparaître ver 166.13 183.31 0.23 0.07 sub:pre:2s; +disparaissez disparaître ver 166.13 183.31 4.32 0.95 imp:pre:2p;ind:pre:2p; +disparaissiez disparaître ver 166.13 183.31 0.17 0 ind:imp:2p; +disparaissions disparaître ver 166.13 183.31 0.14 0.34 ind:imp:1p; +disparaissons disparaître ver 166.13 183.31 0.23 0 imp:pre:1p;ind:pre:1p; +disparate disparate adj s 0.27 3.18 0.02 1.28 +disparates disparate adj p 0.27 3.18 0.25 1.89 +disparaît disparaître ver 166.13 183.31 10.02 16.35 ind:pre:3s; +disparaîtra disparaître ver 166.13 183.31 3.04 1.35 ind:fut:3s; +disparaîtrai disparaître ver 166.13 183.31 0.41 0.07 ind:fut:1s; +disparaîtraient disparaître ver 166.13 183.31 0.34 0.54 cnd:pre:3p; +disparaîtrais disparaître ver 166.13 183.31 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +disparaîtrait disparaître ver 166.13 183.31 0.73 1.28 cnd:pre:3s; +disparaîtras disparaître ver 166.13 183.31 0.22 0 ind:fut:2s; +disparaître disparaître ver 166.13 183.31 27.16 36.76 inf; +disparaîtrez disparaître ver 166.13 183.31 0.12 0.14 ind:fut:2p; +disparaîtrions disparaître ver 166.13 183.31 0.01 0 cnd:pre:1p; +disparaîtrons disparaître ver 166.13 183.31 0.18 0.07 ind:fut:1p; +disparaîtront disparaître ver 166.13 183.31 0.59 1.01 ind:fut:3p; +disparition disparition nom f s 16.33 23.38 14.83 22.3 +disparitions disparition nom f p 16.33 23.38 1.5 1.08 +disparité disparité nom f s 0.07 0.27 0.07 0.27 +disparu disparaître ver m s 166.13 183.31 86.21 58.78 par:pas; +disparue disparaître ver f s 166.13 183.31 4.33 1.42 par:pas; +disparues disparu adj f p 9.82 14.8 1.55 1.55 +disparurent disparaître ver 166.13 183.31 0.45 4.8 ind:pas:3p; +disparus disparu nom m p 10.07 6.42 3.27 2.77 +disparut disparaître ver 166.13 183.31 2.05 24.66 ind:pas:3s; +disparûmes disparaître ver 166.13 183.31 0.01 0.07 ind:pas:1p; +disparût disparaître ver 166.13 183.31 0.01 1.01 sub:imp:3s; +dispatchais dispatcher ver 0.07 0.07 0.01 0 ind:imp:1s; +dispatchait dispatcher ver 0.07 0.07 0 0.07 ind:imp:3s; +dispatche dispatcher ver 0.07 0.07 0.04 0 imp:pre:2s;ind:pre:3s; +dispatcher dispatcher ver 0.07 0.07 0.01 0 inf; +dispatching dispatching nom m s 0.12 0.14 0.12 0.14 +dispendieuse dispendieux adj f s 0.07 0.47 0 0.14 +dispendieusement dispendieusement adv 0 0.07 0 0.07 +dispendieux dispendieux adj m 0.07 0.47 0.07 0.34 +dispensa dispenser ver 3.27 11.15 0 0.54 ind:pas:3s; +dispensable dispensable adj s 0.01 0 0.01 0 +dispensaient dispenser ver 3.27 11.15 0.02 0.34 ind:imp:3p; +dispensaire dispensaire nom m s 1.76 1.69 1.71 1.28 +dispensaires dispensaire nom m p 1.76 1.69 0.04 0.41 +dispensais dispenser ver 3.27 11.15 0 0.14 ind:imp:1s; +dispensait dispenser ver 3.27 11.15 0.38 1.89 ind:imp:3s; +dispensant dispenser ver 3.27 11.15 0.01 0.47 par:pre; +dispensateur dispensateur nom m s 0.02 1.15 0.02 0.2 +dispensateurs dispensateur nom m p 0.02 1.15 0 0.27 +dispensation dispensation nom f s 0 0.07 0 0.07 +dispensatrice dispensateur nom f s 0.02 1.15 0 0.54 +dispensatrices dispensateur nom f p 0.02 1.15 0 0.14 +dispense dispenser ver 3.27 11.15 1.14 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dispensent dispenser ver 3.27 11.15 0.25 0.68 ind:pre:3p; +dispenser dispenser ver 3.27 11.15 0.33 1.76 inf; +dispenserait dispenser ver 3.27 11.15 0.03 0.2 cnd:pre:3s; +dispenseras dispenser ver 3.27 11.15 0 0.07 ind:fut:2s; +dispenses dispenser ver 3.27 11.15 0.03 0 ind:pre:2s; +dispensez dispenser ver 3.27 11.15 0.17 0.07 imp:pre:2p;ind:pre:2p; +dispensât dispenser ver 3.27 11.15 0 0.07 sub:imp:3s; +dispensèrent dispenser ver 3.27 11.15 0.01 0 ind:pas:3p; +dispensé dispenser ver m s 3.27 11.15 0.47 2.03 par:pas; +dispensée dispenser ver f s 3.27 11.15 0.35 0.61 par:pas; +dispensées dispenser ver f p 3.27 11.15 0.01 0.07 par:pas; +dispensés dispenser ver m p 3.27 11.15 0.07 0.34 par:pas; +dispersa disperser ver 10.58 18.85 0.01 1.22 ind:pas:3s; +dispersaient disperser ver 10.58 18.85 0.01 1.15 ind:imp:3p; +dispersait disperser ver 10.58 18.85 0.02 1.55 ind:imp:3s; +dispersant disperser ver 10.58 18.85 0.04 0.74 par:pre; +disperse disperser ver 10.58 18.85 1.35 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dispersement dispersement nom m s 0.01 0.14 0.01 0.14 +dispersent disperser ver 10.58 18.85 0.35 0.95 ind:pre:3p; +disperser disperser ver 10.58 18.85 2.27 2.97 inf;; +dispersera disperser ver 10.58 18.85 0.08 0.07 ind:fut:3s; +disperserai disperser ver 10.58 18.85 0.16 0 ind:fut:1s; +disperseraient disperser ver 10.58 18.85 0.01 0.07 cnd:pre:3p; +disperserait disperser ver 10.58 18.85 0 0.14 cnd:pre:3s; +disperserons disperser ver 10.58 18.85 0.01 0.07 ind:fut:1p; +disperseront disperser ver 10.58 18.85 0.02 0.07 ind:fut:3p; +disperses disperser ver 10.58 18.85 0.12 0.14 ind:pre:2s; +dispersez disperser ver 10.58 18.85 3.24 0.07 imp:pre:2p;ind:pre:2p; +dispersif dispersif adj m s 0.01 0 0.01 0 +dispersion dispersion nom f s 0.93 4.19 0.93 4.12 +dispersions disperser ver 10.58 18.85 0.1 0.07 ind:imp:1p; +dispersons disperser ver 10.58 18.85 0.3 0 imp:pre:1p;ind:pre:1p; +dispersât disperser ver 10.58 18.85 0 0.07 sub:imp:3s; +dispersèrent disperser ver 10.58 18.85 0 1.35 ind:pas:3p; +dispersé disperser ver m s 10.58 18.85 0.86 1.35 par:pas; +dispersée disperser ver f s 10.58 18.85 0.36 0.88 par:pas; +dispersées disperser ver f p 10.58 18.85 0.41 0.88 par:pas; +dispersés disperser ver m p 10.58 18.85 0.86 2.91 par:pas; +dispo dispo adj s 0.44 0 0.44 0 +disponibilité disponibilité nom f s 1.23 3.58 1.01 2.64 +disponibilités disponibilité nom f p 1.23 3.58 0.21 0.95 +disponible disponible adj s 13.19 11.96 8.74 7.84 +disponibles disponible adj p 13.19 11.96 4.46 4.12 +dispos dispos adj m 0.8 2.03 0.75 1.69 +disposa disposer ver 21.07 83.18 0 3.24 ind:pas:3s; +disposai disposer ver 21.07 83.18 0.01 0.34 ind:pas:1s; +disposaient disposer ver 21.07 83.18 0.05 3.31 ind:imp:3p; +disposais disposer ver 21.07 83.18 0.08 2.77 ind:imp:1s;ind:imp:2s; +disposait disposer ver 21.07 83.18 0.14 11.01 ind:imp:3s; +disposant disposer ver 21.07 83.18 0.16 3.92 par:pre; +disposas disposer ver 21.07 83.18 0 0.07 ind:pas:2s; +dispose disposer ver 21.07 83.18 3.48 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disposent disposer ver 21.07 83.18 0.56 2.36 ind:pre:3p; +disposer disposer ver 21.07 83.18 7.4 12.64 inf; +disposera disposer ver 21.07 83.18 0.21 0.34 ind:fut:3s; +disposerai disposer ver 21.07 83.18 0.17 0.07 ind:fut:1s; +disposeraient disposer ver 21.07 83.18 0 0.2 cnd:pre:3p; +disposerais disposer ver 21.07 83.18 0 0.27 cnd:pre:1s; +disposerait disposer ver 21.07 83.18 0.01 1.08 cnd:pre:3s; +disposeras disposer ver 21.07 83.18 0 0.07 ind:fut:2s; +disposerez disposer ver 21.07 83.18 0.17 0.27 ind:fut:2p; +disposerons disposer ver 21.07 83.18 0.13 0.07 ind:fut:1p; +disposeront disposer ver 21.07 83.18 0 0.2 ind:fut:3p; +disposes disposer ver 21.07 83.18 0.34 0.34 ind:pre:2s; +disposez disposer ver 21.07 83.18 2.15 0.81 imp:pre:2p;ind:pre:2p; +disposiez disposer ver 21.07 83.18 0.02 0.07 ind:imp:2p; +disposions disposer ver 21.07 83.18 0.1 1.42 ind:imp:1p; +dispositif dispositif nom m s 5.38 5.74 4.65 5.07 +dispositifs dispositif nom m p 5.38 5.74 0.73 0.68 +disposition disposition nom f s 14.99 45.07 11.62 27.91 +dispositions disposition nom f p 14.99 45.07 3.37 17.16 +disposons disposer ver 21.07 83.18 0.81 1.22 imp:pre:1p;ind:pre:1p; +disposâmes disposer ver 21.07 83.18 0 0.07 ind:pas:1p; +disposât disposer ver 21.07 83.18 0 0.68 sub:imp:3s; +disposèrent disposer ver 21.07 83.18 0 0.27 ind:pas:3p; +disposé disposer ver m s 21.07 83.18 2.96 12.91 par:pas; +disposée disposer ver f s 21.07 83.18 0.94 2.43 par:pas; +disposées disposer ver f p 21.07 83.18 0.26 3.24 par:pas; +disposés disposer ver m p 21.07 83.18 0.91 7.97 par:pas; +disproportion disproportion nom f s 0.27 0.95 0.27 0.88 +disproportionnelle disproportionnel adj f s 0.01 0 0.01 0 +disproportionné disproportionner ver m s 0.45 0.81 0.22 0.41 par:pas; +disproportionnée disproportionné adj f s 0.52 0.95 0.29 0.34 +disproportionnées disproportionner ver f p 0.45 0.81 0.11 0 par:pas; +disproportionnés disproportionné adj m p 0.52 0.95 0.03 0.2 +disproportions disproportion nom f p 0.27 0.95 0 0.07 +disputa disputer ver 39.31 22.09 0 0.2 ind:pas:3s; +disputaient disputer ver 39.31 22.09 1.21 4.46 ind:imp:3p; +disputais disputer ver 39.31 22.09 0.15 0 ind:imp:1s;ind:imp:2s; +disputait disputer ver 39.31 22.09 1.73 2.09 ind:imp:3s; +disputant disputer ver 39.31 22.09 0.37 1.42 par:pre; +dispute dispute nom f s 16.54 12.43 11.48 6.96 +disputent disputer ver 39.31 22.09 3.16 2.09 ind:pre:3p; +disputer disputer ver 39.31 22.09 10.54 4.12 inf;; +disputera disputer ver 39.31 22.09 0.48 0.14 ind:fut:3s; +disputerai disputer ver 39.31 22.09 0.22 0 ind:fut:1s; +disputeraient disputer ver 39.31 22.09 0.03 0.07 cnd:pre:3p; +disputerait disputer ver 39.31 22.09 0.2 0.07 cnd:pre:3s; +disputerez disputer ver 39.31 22.09 0.02 0 ind:fut:2p; +disputerons disputer ver 39.31 22.09 0.11 0 ind:fut:1p; +disputeront disputer ver 39.31 22.09 0.59 0.07 ind:fut:3p; +disputes dispute nom f p 16.54 12.43 5.07 5.47 +disputeur disputeur nom m s 0 0.07 0 0.07 +disputez disputer ver 39.31 22.09 2.37 0.2 imp:pre:2p;ind:pre:2p; +disputiez disputer ver 39.31 22.09 0.74 0 ind:imp:2p; +disputions disputer ver 39.31 22.09 0.15 0.61 ind:imp:1p; +disputons disputer ver 39.31 22.09 1.27 0.47 imp:pre:1p;ind:pre:1p; +disputâmes disputer ver 39.31 22.09 0.01 0.34 ind:pas:1p; +disputât disputer ver 39.31 22.09 0 0.2 sub:imp:3s; +disputèrent disputer ver 39.31 22.09 0.01 1.08 ind:pas:3p; +disputé disputer ver m s 39.31 22.09 2.96 1.08 par:pas; +disputée disputer ver f s 39.31 22.09 1.22 0.61 par:pas; +disputées disputer ver f p 39.31 22.09 0.83 0.14 par:pas; +disputés disputer ver m p 39.31 22.09 6.59 0.95 par:pas; +disquaire disquaire nom s 0.46 0.54 0.42 0.41 +disquaires disquaire nom p 0.46 0.54 0.04 0.14 +disqualifiait disqualifier ver 1.51 0.81 0 0.07 ind:imp:3s; +disqualifiant disqualifier ver 1.51 0.81 0.01 0 par:pre; +disqualification disqualification nom f s 0.15 0.07 0.14 0.07 +disqualifications disqualification nom f p 0.15 0.07 0.01 0 +disqualifie disqualifier ver 1.51 0.81 0.19 0.07 ind:pre:1s;ind:pre:3s; +disqualifient disqualifier ver 1.51 0.81 0.15 0 ind:pre:3p; +disqualifier disqualifier ver 1.51 0.81 0.14 0.2 inf; +disqualifié disqualifier ver m s 1.51 0.81 0.59 0.27 par:pas; +disqualifiée disqualifier ver f s 1.51 0.81 0.17 0.07 par:pas; +disqualifiées disqualifier ver f p 1.51 0.81 0.05 0 par:pas; +disqualifiés disqualifier ver m p 1.51 0.81 0.21 0.14 par:pas; +disque disque nom m s 33.61 42.16 20.36 21.49 +disque_jockey disque_jockey nom m s 0.01 0.07 0.01 0.07 +disques disque nom m p 33.61 42.16 13.26 20.68 +disquette disquette nom f s 2.48 0.41 1.81 0.41 +disquettes disquette nom f p 2.48 0.41 0.67 0 +disruptif disruptif adj m s 0.01 0 0.01 0 +disruption disruption nom f s 0.01 0 0.01 0 +dissection dissection nom f s 0.88 0.68 0.61 0.54 +dissections dissection nom f p 0.88 0.68 0.28 0.14 +dissemblable dissemblable adj s 0.05 1.69 0.02 0.34 +dissemblables dissemblable adj p 0.05 1.69 0.03 1.35 +dissemblance dissemblance nom f s 0 0.27 0 0.27 +dissension dissension nom f s 0.47 1.28 0.11 0.34 +dissensions dissension nom f p 0.47 1.28 0.36 0.95 +dissent dire ver_sup 5946.15 4832.5 0.04 0 sub:imp:3p; +dissentiment dissentiment nom m s 0.02 0.34 0.02 0.14 +dissentiments dissentiment nom m p 0.02 0.34 0 0.2 +dissertait disserter ver 0.22 1.28 0.02 0.2 ind:imp:3s; +dissertant disserter ver 0.22 1.28 0 0.14 par:pre; +dissertation dissertation nom f s 1.5 3.04 1.4 2.03 +dissertations dissertation nom f p 1.5 3.04 0.1 1.01 +disserte disserter ver 0.22 1.28 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissertent disserter ver 0.22 1.28 0 0.14 ind:pre:3p; +disserter disserter ver 0.22 1.28 0.04 0.68 inf; +disserterait disserter ver 0.22 1.28 0.01 0 cnd:pre:3s; +dissertes disserter ver 0.22 1.28 0.01 0 ind:pre:2s; +disserté disserter ver m s 0.22 1.28 0.02 0.07 par:pas; +dissidence dissidence nom f s 0.28 0.81 0.27 0.74 +dissidences dissidence nom f p 0.28 0.81 0.01 0.07 +dissident dissident nom m s 0.88 0.68 0.33 0.07 +dissidente dissident adj f s 0.61 0.81 0.09 0.14 +dissidentes dissident adj f p 0.61 0.81 0.02 0.2 +dissidents dissident nom m p 0.88 0.68 0.55 0.54 +dissimilaires dissimilaire adj p 0.01 0 0.01 0 +dissimiler dissimiler ver 0.01 0 0.01 0 inf; +dissimula dissimuler ver 8.67 51.01 0.14 1.55 ind:pas:3s; +dissimulables dissimulable adj p 0 0.07 0 0.07 +dissimulai dissimuler ver 8.67 51.01 0 0.14 ind:pas:1s; +dissimulaient dissimuler ver 8.67 51.01 0.04 2.3 ind:imp:3p; +dissimulais dissimuler ver 8.67 51.01 0.03 0.88 ind:imp:1s;ind:imp:2s; +dissimulait dissimuler ver 8.67 51.01 0.3 6.76 ind:imp:3s; +dissimulant dissimuler ver 8.67 51.01 0.26 3.18 par:pre; +dissimulateur dissimulateur adj m s 0.04 0.2 0.01 0.07 +dissimulateurs dissimulateur adj m p 0.04 0.2 0.02 0 +dissimulation dissimulation nom f s 1.47 2.3 1.35 2.23 +dissimulations dissimulation nom f p 1.47 2.3 0.11 0.07 +dissimulatrice dissimulateur adj f s 0.04 0.2 0 0.07 +dissimulatrices dissimulateur adj f p 0.04 0.2 0 0.07 +dissimule dissimuler ver 8.67 51.01 1.22 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissimulent dissimuler ver 8.67 51.01 0.11 1.35 ind:pre:3p; +dissimuler dissimuler ver 8.67 51.01 3.72 15.68 inf; +dissimulera dissimuler ver 8.67 51.01 0.01 0 ind:fut:3s; +dissimuleraient dissimuler ver 8.67 51.01 0.01 0 cnd:pre:3p; +dissimulerais dissimuler ver 8.67 51.01 0 0.07 cnd:pre:1s; +dissimulerait dissimuler ver 8.67 51.01 0.04 0.41 cnd:pre:3s; +dissimulerons dissimuler ver 8.67 51.01 0 0.07 ind:fut:1p; +dissimules dissimuler ver 8.67 51.01 0.02 0 ind:pre:2s; +dissimulez dissimuler ver 8.67 51.01 0.53 0.07 imp:pre:2p;ind:pre:2p; +dissimuliez dissimuler ver 8.67 51.01 0 0.07 ind:imp:2p; +dissimulions dissimuler ver 8.67 51.01 0 0.34 ind:imp:1p; +dissimulons dissimuler ver 8.67 51.01 0.04 0.27 imp:pre:1p;ind:pre:1p; +dissimulât dissimuler ver 8.67 51.01 0 0.14 sub:imp:3s; +dissimulèrent dissimuler ver 8.67 51.01 0 0.2 ind:pas:3p; +dissimulé dissimuler ver m s 8.67 51.01 1.24 7.43 par:pas; +dissimulée dissimuler ver f s 8.67 51.01 0.31 3.24 par:pas; +dissimulées dissimuler ver f p 8.67 51.01 0.2 0.81 par:pas; +dissimulés dissimuler ver m p 8.67 51.01 0.45 2.77 par:pas; +dissipa dissiper ver 4.76 19.59 0.12 1.62 ind:pas:3s; +dissipaient dissiper ver 4.76 19.59 0.01 0.54 ind:imp:3p; +dissipait dissiper ver 4.76 19.59 0.01 2.7 ind:imp:3s; +dissipant dissiper ver 4.76 19.59 0.03 0.47 par:pre; +dissipateur dissipateur nom m s 0.01 0.27 0.01 0.2 +dissipateurs dissipateur nom m p 0.01 0.27 0 0.07 +dissipation dissipation nom f s 0.04 0.95 0.04 0.61 +dissipations dissipation nom f p 0.04 0.95 0 0.34 +dissipe dissiper ver 4.76 19.59 1.26 2.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissipent dissiper ver 4.76 19.59 0.22 0.54 ind:pre:3p; +dissiper dissiper ver 4.76 19.59 1.43 5.88 inf; +dissipera dissiper ver 4.76 19.59 0.33 0.07 ind:fut:3s; +dissiperais dissiper ver 4.76 19.59 0 0.07 cnd:pre:1s; +dissiperait dissiper ver 4.76 19.59 0.04 0.2 cnd:pre:3s; +dissiperont dissiper ver 4.76 19.59 0.08 0.07 ind:fut:3p; +dissipez dissiper ver 4.76 19.59 0.05 0 imp:pre:2p;ind:pre:2p; +dissipèrent dissiper ver 4.76 19.59 0.01 0.14 ind:pas:3p; +dissipé dissiper ver m s 4.76 19.59 0.75 2.3 par:pas; +dissipée dissiper ver f s 4.76 19.59 0.34 1.89 par:pas; +dissipées dissipé adj f p 0.29 1.49 0.03 0.14 +dissipés dissiper ver m p 4.76 19.59 0.07 0.34 par:pas; +dissocia dissocier ver 0.83 3.04 0 0.14 ind:pas:3s; +dissociaient dissocier ver 0.83 3.04 0 0.14 ind:imp:3p; +dissociait dissocier ver 0.83 3.04 0 0.27 ind:imp:3s; +dissociant dissocier ver 0.83 3.04 0 0.14 par:pre; +dissociatif dissociatif adj m s 0.28 0 0.17 0 +dissociatifs dissociatif adj m p 0.28 0 0.01 0 +dissociation dissociation nom f s 0.32 0.41 0.32 0.34 +dissociations dissociation nom f p 0.32 0.41 0 0.07 +dissociative dissociatif adj f s 0.28 0 0.1 0 +dissocie dissocier ver 0.83 3.04 0.02 0.07 ind:pre:1s;ind:pre:3s; +dissocient dissocier ver 0.83 3.04 0.01 0.14 ind:pre:3p; +dissocier dissocier ver 0.83 3.04 0.33 0.95 inf; +dissocierons dissocier ver 0.83 3.04 0 0.07 ind:fut:1p; +dissocié dissocier ver m s 0.83 3.04 0.33 0.61 par:pas; +dissociée dissocier ver f s 0.83 3.04 0.07 0 par:pas; +dissociées dissocier ver f p 0.83 3.04 0.03 0.14 par:pas; +dissociés dissocier ver m p 0.83 3.04 0.04 0.41 par:pas; +dissolu dissolu adj m s 0.82 0.68 0.12 0.07 +dissolue dissolu adj f s 0.82 0.68 0.47 0.41 +dissolues dissolu adj f p 0.82 0.68 0.12 0.14 +dissolus dissolu adj m p 0.82 0.68 0.11 0.07 +dissolution dissolution nom f s 0.8 2.5 0.8 2.5 +dissolvaient dissoudre ver 3.94 12.3 0 0.81 ind:imp:3p; +dissolvait dissoudre ver 3.94 12.3 0.01 1.01 ind:imp:3s; +dissolvant dissolvant nom m s 0.41 0.34 0.38 0.34 +dissolvante dissolvant adj f s 0.01 1.01 0 0.34 +dissolvantes dissolvant adj f p 0.01 1.01 0 0.14 +dissolvants dissolvant nom m p 0.41 0.34 0.03 0 +dissolve dissoudre ver 3.94 12.3 0.07 0.14 sub:pre:3s; +dissolvent dissoudre ver 3.94 12.3 0.04 0.41 ind:pre:3p; +dissolves dissoudre ver 3.94 12.3 0.01 0 sub:pre:2s; +dissonance dissonance nom f s 0.42 0.54 0.14 0.2 +dissonances dissonance nom f p 0.42 0.54 0.28 0.34 +dissonant dissoner ver 0.01 0 0.01 0 par:pre; +dissonants dissonant adj m p 0 0.27 0 0.07 +dissoudra dissoudre ver 3.94 12.3 0.03 0.07 ind:fut:3s; +dissoudrai dissoudre ver 3.94 12.3 0 0.07 ind:fut:1s; +dissoudrait dissoudre ver 3.94 12.3 0.01 0.07 cnd:pre:3s; +dissoudre dissoudre ver 3.94 12.3 1.38 6.55 inf; +dissoudront dissoudre ver 3.94 12.3 0.04 0 ind:fut:3p; +dissous dissoudre ver m 3.94 12.3 1.19 1.42 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +dissout dissoudre ver 3.94 12.3 1.03 1.08 ind:pre:3s; +dissoute dissoute adj f s 0.46 2.57 0.4 1.42 +dissoutes dissoute adj f p 0.46 2.57 0.07 1.15 +dissuada dissuader ver 3.66 3.72 0 0.47 ind:pas:3s; +dissuadai dissuader ver 3.66 3.72 0 0.2 ind:pas:1s; +dissuadait dissuader ver 3.66 3.72 0.01 0.2 ind:imp:3s; +dissuadant dissuader ver 3.66 3.72 0.01 0.14 par:pre; +dissuade dissuader ver 3.66 3.72 0.15 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissuadent dissuader ver 3.66 3.72 0.02 0.14 ind:pre:3p; +dissuader dissuader ver 3.66 3.72 2.62 1.96 inf; +dissuadera dissuader ver 3.66 3.72 0.1 0 ind:fut:3s; +dissuaderas dissuader ver 3.66 3.72 0.01 0 ind:fut:2s; +dissuaderez dissuader ver 3.66 3.72 0.03 0 ind:fut:2p; +dissuaderont dissuader ver 3.66 3.72 0.02 0 ind:fut:3p; +dissuadez dissuader ver 3.66 3.72 0.26 0 imp:pre:2p; +dissuadiez dissuader ver 3.66 3.72 0.01 0 ind:imp:2p; +dissuadèrent dissuader ver 3.66 3.72 0 0.07 ind:pas:3p; +dissuadé dissuader ver m s 3.66 3.72 0.25 0.34 par:pas; +dissuadée dissuader ver f s 3.66 3.72 0.13 0.14 par:pas; +dissuadés dissuader ver m p 3.66 3.72 0.03 0 par:pas; +dissuasif dissuasif adj m s 0.21 0.07 0.19 0.07 +dissuasion dissuasion nom f s 0.29 0.27 0.29 0.27 +dissuasive dissuasif adj f s 0.21 0.07 0.02 0 +dissymétrie dissymétrie nom f s 0.14 0.54 0.14 0.54 +dissymétrique dissymétrique adj m s 0 0.27 0 0.07 +dissymétriques dissymétrique adj p 0 0.27 0 0.2 +dissèque disséquer ver 1.56 2.16 0.29 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissèquent disséquer ver 1.56 2.16 0.01 0.14 ind:pre:3p; +dissémina disséminer ver 0.46 2.16 0 0.07 ind:pas:3s; +disséminait disséminer ver 0.46 2.16 0 0.07 ind:imp:3s; +disséminant disséminer ver 0.46 2.16 0.01 0 par:pre; +dissémination dissémination nom f s 0.07 0.14 0.07 0.14 +disséminent disséminer ver 0.46 2.16 0.01 0 ind:pre:3p; +disséminer disséminer ver 0.46 2.16 0.18 0.07 inf; +disséminèrent disséminer ver 0.46 2.16 0 0.07 ind:pas:3p; +disséminé disséminé adj m s 0.08 0.47 0.02 0 +disséminée disséminé adj f s 0.08 0.47 0.01 0.14 +disséminées disséminer ver f p 0.46 2.16 0.06 0.74 par:pas; +disséminés disséminer ver m p 0.46 2.16 0.17 1.15 par:pas; +disséquai disséquer ver 1.56 2.16 0.01 0 ind:pas:1s; +disséquait disséquer ver 1.56 2.16 0.01 0.07 ind:imp:3s; +disséquant disséquer ver 1.56 2.16 0.03 0 par:pre; +disséquer disséquer ver 1.56 2.16 0.64 0.88 inf;; +disséqueraient disséquer ver 1.56 2.16 0 0.07 cnd:pre:3p; +disséquerais disséquer ver 1.56 2.16 0.02 0 cnd:pre:1s; +disséqueur disséqueur nom m s 0.01 0 0.01 0 +disséquez disséquer ver 1.56 2.16 0.07 0 imp:pre:2p; +disséquiez disséquer ver 1.56 2.16 0.03 0 ind:imp:2p; +disséquions disséquer ver 1.56 2.16 0 0.07 ind:imp:1p; +disséquons disséquer ver 1.56 2.16 0.03 0 ind:pre:1p; +disséqué disséquer ver m s 1.56 2.16 0.32 0.47 par:pas; +disséquée disséquer ver f s 1.56 2.16 0.07 0.14 par:pas; +disséqués disséquer ver m p 1.56 2.16 0.04 0.14 par:pas; +distal distal adj m s 0.19 0 0.15 0 +distale distal adj f s 0.19 0 0.01 0 +distance distance nom f s 31.56 62.43 26.13 52.64 +distancent distancer ver 1.25 1.96 0.01 0 ind:pre:3p; +distancer distancer ver 1.25 1.96 0.3 0.47 inf; +distancerez distancer ver 1.25 1.96 0.01 0 ind:fut:2p; +distances distance nom f p 31.56 62.43 5.43 9.8 +distanciation distanciation nom f s 0.01 0 0.01 0 +distancier distancier ver 0.25 0 0.15 0 inf; +distancié distancier ver m s 0.25 0 0.1 0 par:pas; +distancé distancer ver m s 1.25 1.96 0.08 0.34 par:pas; +distancée distancer ver f s 1.25 1.96 0.12 0.14 par:pas; +distancés distancer ver m p 1.25 1.96 0.03 0.61 par:pas; +distant distant adj m s 3.48 7.5 2.47 2.64 +distante distant adj f s 3.48 7.5 0.66 2.91 +distantes distant adj f p 3.48 7.5 0.08 0.74 +distants distant adj m p 3.48 7.5 0.28 1.22 +distança distancer ver 1.25 1.96 0 0.2 ind:pas:3s; +distançait distancer ver 1.25 1.96 0 0.07 ind:imp:3s; +distançant distancer ver 1.25 1.96 0.01 0.14 par:pre; +distançons distancer ver 1.25 1.96 0.01 0 imp:pre:1p; +distaux distal adj m p 0.19 0 0.03 0 +distend distendre ver 0.41 3.24 0.02 0.74 ind:pre:3s; +distendaient distendre ver 0.41 3.24 0 0.07 ind:imp:3p; +distendait distendre ver 0.41 3.24 0 0.34 ind:imp:3s; +distendant distendre ver 0.41 3.24 0 0.14 par:pre; +distende distendre ver 0.41 3.24 0 0.07 sub:pre:3s; +distendent distendre ver 0.41 3.24 0 0.14 ind:pre:3p; +distendit distendre ver 0.41 3.24 0 0.07 ind:pas:3s; +distendrait distendre ver 0.41 3.24 0 0.07 cnd:pre:3s; +distendre distendre ver 0.41 3.24 0 0.41 inf; +distendu distendre ver m s 0.41 3.24 0.11 0.2 par:pas; +distendue distendu adj f s 0.13 2.64 0.01 0.34 +distendues distendre ver f p 0.41 3.24 0.01 0.2 par:pas; +distendus distendre ver m p 0.41 3.24 0.27 0.47 par:pas; +distension distension nom f s 0.07 0.07 0.07 0.07 +distillaient distiller ver 1.13 4.05 0 0.07 ind:imp:3p; +distillait distiller ver 1.13 4.05 0 0.81 ind:imp:3s; +distillant distiller ver 1.13 4.05 0.01 0.27 par:pre; +distillat distillat nom m s 0.07 0 0.07 0 +distillateur distillateur nom m s 0.05 0.14 0.02 0.07 +distillateurs distillateur nom m p 0.05 0.14 0.03 0.07 +distillation distillation nom f s 0.04 0.47 0.04 0.41 +distillations distillation nom f p 0.04 0.47 0 0.07 +distille distiller ver 1.13 4.05 0.14 0.95 ind:pre:1s;ind:pre:3s; +distillent distiller ver 1.13 4.05 0.15 0.27 ind:pre:3p; +distiller distiller ver 1.13 4.05 0.23 0.61 inf; +distillera distiller ver 1.13 4.05 0 0.07 ind:fut:3s; +distillerie distillerie nom f s 0.98 0.41 0.84 0.41 +distilleries distillerie nom f p 0.98 0.41 0.14 0 +distilleront distiller ver 1.13 4.05 0 0.07 ind:fut:3p; +distillez distiller ver 1.13 4.05 0.03 0 imp:pre:2p;ind:pre:2p; +distillé distiller ver m s 1.13 4.05 0.25 0.54 par:pas; +distillée distiller ver f s 1.13 4.05 0.27 0.27 par:pas; +distillées distiller ver f p 1.13 4.05 0 0.07 par:pas; +distillés distiller ver m p 1.13 4.05 0.05 0.07 par:pas; +distinct distinct adj m s 2.56 9.46 0.31 2.43 +distincte distinct adj f s 2.56 9.46 0.26 2.64 +distinctement distinctement adv 1.48 6.76 1.48 6.76 +distinctes distinct adj f p 2.56 9.46 1.38 2.3 +distinctif distinctif adj m s 0.71 1.62 0.34 1.15 +distinctifs distinctif adj m p 0.71 1.62 0.28 0.27 +distinction distinction nom f s 2.86 10.14 2.38 9.19 +distinctions distinction nom f p 2.86 10.14 0.48 0.95 +distinctive distinctif adj f s 0.71 1.62 0.06 0.14 +distinctives distinctif adj f p 0.71 1.62 0.03 0.07 +distincts distinct adj m p 2.56 9.46 0.61 2.09 +distingua distinguer ver 12.77 74.12 0.01 4.39 ind:pas:3s; +distinguai distinguer ver 12.77 74.12 0 1.28 ind:pas:1s; +distinguaient distinguer ver 12.77 74.12 0.02 2.64 ind:imp:3p; +distinguais distinguer ver 12.77 74.12 0.4 2.97 ind:imp:1s; +distinguait distinguer ver 12.77 74.12 0.52 12.97 ind:imp:3s; +distinguant distinguer ver 12.77 74.12 0 0.74 par:pre; +distingue distinguer ver 12.77 74.12 3.59 15.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +distinguent distinguer ver 12.77 74.12 0.36 1.15 ind:pre:3p; +distinguer distinguer ver 12.77 74.12 5.74 24.12 inf; +distinguera distinguer ver 12.77 74.12 0.04 0.07 ind:fut:3s; +distingueraient distinguer ver 12.77 74.12 0.01 0.2 cnd:pre:3p; +distinguerait distinguer ver 12.77 74.12 0 0.27 cnd:pre:3s; +distinguerez distinguer ver 12.77 74.12 0.01 0.07 ind:fut:2p; +distingues distinguer ver 12.77 74.12 0.32 0.14 ind:pre:2s; +distinguez distinguer ver 12.77 74.12 0.22 0.14 imp:pre:2p;ind:pre:2p; +distinguions distinguer ver 12.77 74.12 0.1 0.41 ind:imp:1p; +distinguo distinguo nom m s 0.06 0.2 0.04 0.2 +distinguons distinguer ver 12.77 74.12 0.01 0.61 imp:pre:1p;ind:pre:1p; +distinguos distinguo nom m p 0.06 0.2 0.02 0 +distinguât distinguer ver 12.77 74.12 0 0.41 sub:imp:3s; +distinguèrent distinguer ver 12.77 74.12 0 0.54 ind:pas:3p; +distingué distingué adj m s 5.04 9.39 2.81 4.19 +distinguée distingué adj f s 5.04 9.39 1.23 2.16 +distinguées distingué adj f p 5.04 9.39 0.21 0.68 +distingués distingué adj m p 5.04 9.39 0.8 2.36 +distord distordre ver 0.1 0.61 0 0.07 ind:pre:3s; +distordant distordre ver 0.1 0.61 0 0.07 par:pre; +distordre distordre ver 0.1 0.61 0.01 0.07 inf; +distordu distordre ver m s 0.1 0.61 0.02 0.2 par:pas; +distordue distordre ver f s 0.1 0.61 0.06 0.14 par:pas; +distordues distordre ver f p 0.1 0.61 0 0.07 par:pas; +distorsion distorsion nom f s 1.05 0.61 0.8 0.27 +distorsions distorsion nom f p 1.05 0.61 0.26 0.34 +distraction distraction nom f s 3.98 14.05 2.8 9.19 +distractions distraction nom f p 3.98 14.05 1.18 4.86 +distractives distractif adj f p 0 0.07 0 0.07 +distraie distraire ver 16 27.77 0.02 0.2 sub:pre:1s;sub:pre:3s; +distraient distraire ver 16 27.77 0.37 0.27 ind:pre:3p;sub:pre:3p; +distraies distraire ver 16 27.77 0.01 0.07 sub:pre:2s; +distraira distraire ver 16 27.77 0.41 0.34 ind:fut:3s; +distrairaient distraire ver 16 27.77 0 0.07 cnd:pre:3p; +distrairait distraire ver 16 27.77 0.05 0.41 cnd:pre:3s; +distraire distraire ver 16 27.77 7.56 13.38 inf;;inf;;inf;; +distrairont distraire ver 16 27.77 0.01 0.07 ind:fut:3p; +distrais distraire ver 16 27.77 0.76 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +distrait distraire ver m s 16 27.77 4.45 6.76 ind:pre:3s;par:pas; +distraite distraire ver f s 16 27.77 1.2 2.5 par:pas; +distraitement distraitement adv 0.11 13.51 0.11 13.51 +distraites distraire ver f p 16 27.77 0.05 0.2 par:pas; +distraits distraire ver m p 16 27.77 0.29 0.74 par:pas; +distrayaient distraire ver 16 27.77 0 0.54 ind:imp:3p; +distrayais distraire ver 16 27.77 0.04 0.27 ind:imp:1s; +distrayait distraire ver 16 27.77 0.15 1.42 ind:imp:3s; +distrayant distrayant adj m s 0.94 1.08 0.64 0.81 +distrayante distrayant adj f s 0.94 1.08 0.25 0 +distrayantes distrayant adj f p 0.94 1.08 0.03 0.14 +distrayants distrayant adj m p 0.94 1.08 0.03 0.14 +distrayez distraire ver 16 27.77 0.34 0 imp:pre:2p;ind:pre:2p; +distrayons distraire ver 16 27.77 0.11 0.07 imp:pre:1p;ind:pre:1p; +distribua distribuer ver 14.06 25.54 0.18 1.55 ind:pas:3s; +distribuai distribuer ver 14.06 25.54 0 0.2 ind:pas:1s; +distribuaient distribuer ver 14.06 25.54 0.18 1.15 ind:imp:3p; +distribuais distribuer ver 14.06 25.54 0.14 0.14 ind:imp:1s;ind:imp:2s; +distribuait distribuer ver 14.06 25.54 0.41 4.59 ind:imp:3s; +distribuant distribuer ver 14.06 25.54 0.31 1.89 par:pre; +distribue distribuer ver 14.06 25.54 2 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +distribuent distribuer ver 14.06 25.54 0.42 0.81 ind:pre:3p; +distribuer distribuer ver 14.06 25.54 4.9 5.88 inf; +distribuera distribuer ver 14.06 25.54 0.15 0.2 ind:fut:3s; +distribuerai distribuer ver 14.06 25.54 0.36 0 ind:fut:1s; +distribuerais distribuer ver 14.06 25.54 0.02 0 cnd:pre:1s; +distribuerait distribuer ver 14.06 25.54 0 0.34 cnd:pre:3s; +distribuerez distribuer ver 14.06 25.54 0.19 0 ind:fut:2p; +distribuerions distribuer ver 14.06 25.54 0 0.07 cnd:pre:1p; +distribuerons distribuer ver 14.06 25.54 0.02 0 ind:fut:1p; +distribueront distribuer ver 14.06 25.54 0.04 0.07 ind:fut:3p; +distribues distribuer ver 14.06 25.54 0.56 0 ind:pre:2s; +distribuez distribuer ver 14.06 25.54 0.91 0.07 imp:pre:2p;ind:pre:2p; +distribuiez distribuer ver 14.06 25.54 0.01 0 ind:imp:2p; +distribuions distribuer ver 14.06 25.54 0.01 0.07 ind:imp:1p; +distribuons distribuer ver 14.06 25.54 0.1 0.07 imp:pre:1p;ind:pre:1p; +distributeur distributeur nom m s 7.88 2.77 6.03 1.89 +distributeurs distributeur nom m p 7.88 2.77 1.84 0.81 +distribution distribution nom f s 4.77 8.85 4.63 7.23 +distributions distribution nom f p 4.77 8.85 0.14 1.62 +distributive distributif adj f s 0 0.07 0 0.07 +distributrice distributeur nom f s 7.88 2.77 0.02 0.07 +distribuât distribuer ver 14.06 25.54 0 0.07 sub:imp:3s; +distribuèrent distribuer ver 14.06 25.54 0 0.07 ind:pas:3p; +distribué distribuer ver m s 14.06 25.54 2.17 2.16 par:pas; +distribuée distribuer ver f s 14.06 25.54 0.35 0.34 par:pas; +distribuées distribuer ver f p 14.06 25.54 0.34 0.95 par:pas; +distribués distribuer ver m p 14.06 25.54 0.28 1.42 par:pas; +district district nom m s 6.14 1.69 5.85 1.42 +districts district nom m p 6.14 1.69 0.29 0.27 +dit dire ver_sup m s 5946.15 4832.5 2146.01 2601.62 ind:fut:3p;ind:pre:3s;ind:pas:3s;par:pas; +dite dire ver_sup f s 5946.15 4832.5 4.53 9.19 par:pas; +dites dire ver_sup f p 5946.15 4832.5 311.69 77.43 imp:pre:2p;ind:pre:2p;par:pas; +dithyrambe dithyrambe nom m s 0 0.34 0 0.14 +dithyrambes dithyrambe nom m p 0 0.34 0 0.2 +dithyrambique dithyrambique adj m s 0.03 0.47 0.01 0.27 +dithyrambiques dithyrambique adj p 0.03 0.47 0.02 0.2 +dito dito adv 0 0.34 0 0.34 +dits dire ver_sup m p 5946.15 4832.5 1.52 4.46 par:pas; +diurnal diurnal adj m s 0 0.07 0 0.07 +diurne diurne adj s 0.09 2.03 0.07 1.69 +diurnes diurne adj p 0.09 2.03 0.01 0.34 +diurèse diurèse nom f s 0.07 0 0.07 0 +diurétique diurétique adj s 0.28 0 0.14 0 +diurétiques diurétique adj p 0.28 0 0.14 0 +diva diva nom f s 4.16 1.28 3.6 1.22 +divagant divagant adj m s 0 0.2 0 0.14 +divagants divagant adj m p 0 0.2 0 0.07 +divagation divagation nom f s 0.53 2.23 0 0.61 +divagations divagation nom f p 0.53 2.23 0.53 1.62 +divaguaient divaguer ver 2.91 4.26 0 0.2 ind:imp:3p; +divaguait divaguer ver 2.91 4.26 0.19 0.74 ind:imp:3s; +divaguant divaguer ver 2.91 4.26 0.03 0.41 par:pre; +divague divaguer ver 2.91 4.26 1.27 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divaguent divaguer ver 2.91 4.26 0.01 0.27 ind:pre:3p; +divaguer divaguer ver 2.91 4.26 0.44 1.15 inf;; +divagues divaguer ver 2.91 4.26 0.59 0.07 ind:pre:2s; +divaguez divaguer ver 2.91 4.26 0.32 0.07 ind:pre:2p; +divagué divaguer ver m s 2.91 4.26 0.07 0.07 par:pas; +divan divan nom m s 4.92 24.46 4.89 21.55 +divans divan nom m p 4.92 24.46 0.03 2.91 +divas diva nom f p 4.16 1.28 0.56 0.07 +dive dive adj f s 0 0.2 0 0.2 +diverge diverger ver 0.57 1.01 0.17 0 ind:pre:3s; +divergeaient diverger ver 0.57 1.01 0.03 0.34 ind:imp:3p; +divergeait diverger ver 0.57 1.01 0.01 0 ind:imp:3s; +divergeant diverger ver 0.57 1.01 0 0.14 par:pre; +divergence divergence nom f s 1.19 2.84 0.41 0.95 +divergences divergence nom f p 1.19 2.84 0.77 1.89 +divergent diverger ver 0.57 1.01 0.25 0.2 ind:pre:3p; +divergente divergent adj f s 0.43 2.23 0.02 0 +divergentes divergent adj f p 0.43 2.23 0.31 0.68 +divergents divergent adj m p 0.43 2.23 0.03 0.95 +divergeons diverger ver 0.57 1.01 0.02 0 ind:pre:1p; +diverger diverger ver 0.57 1.01 0.01 0.27 inf; +divergez diverger ver 0.57 1.01 0.01 0 ind:pre:2p; +divergions diverger ver 0.57 1.01 0.01 0 ind:imp:1p; +divergé diverger ver m s 0.57 1.01 0.06 0.07 par:pas; +divers divers adj_ind m p 7.28 52.77 3.6 11.69 +diverse divers adj f s 7.28 52.77 0.03 0.68 +diversement diversement adv 0.04 0.74 0.04 0.74 +diverses diverses adj_ind f p 3.08 8.04 3.08 8.04 +diversifiant diversifier ver 0.54 0.88 0 0.07 par:pre; +diversification diversification nom f s 0.14 0.14 0.14 0.14 +diversifie diversifier ver 0.54 0.88 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diversifient diversifier ver 0.54 0.88 0.04 0.14 ind:pre:3p; +diversifier diversifier ver 0.54 0.88 0.23 0.41 inf; +diversifié diversifier ver m s 0.54 0.88 0.05 0.07 par:pas; +diversifiée diversifier ver f s 0.54 0.88 0.06 0.07 par:pas; +diversifiées diversifier ver f p 0.54 0.88 0.03 0.07 par:pas; +diversifiés diversifier ver m p 0.54 0.88 0.05 0 par:pas; +diversion diversion nom f s 4.33 6.22 4.26 6.01 +diversions diversion nom f p 4.33 6.22 0.07 0.2 +diversité diversité nom f s 1.02 3.85 1.01 3.78 +diversités diversité nom f p 1.02 3.85 0.01 0.07 +diverti divertir ver m s 4.49 4.26 0.28 0.68 par:pas; +diverticule diverticule nom m s 0.03 0 0.03 0 +diverticulose diverticulose nom f s 0.04 0 0.04 0 +divertie divertir ver f s 4.49 4.26 0.08 0 par:pas; +divertimento divertimento nom m s 0 0.14 0 0.14 +divertir divertir ver 4.49 4.26 2.71 1.82 inf; +divertira divertir ver 4.49 4.26 0.01 0.07 ind:fut:3s; +divertirait divertir ver 4.49 4.26 0.02 0 cnd:pre:3s; +divertirent divertir ver 4.49 4.26 0 0.07 ind:pas:3p; +divertirons divertir ver 4.49 4.26 0.11 0 ind:fut:1p; +divertiront divertir ver 4.49 4.26 0.03 0 ind:fut:3p; +divertis divertir ver m p 4.49 4.26 0.45 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:1s;par:pas; +divertissaient divertir ver 4.49 4.26 0.02 0.2 ind:imp:3p; +divertissais divertir ver 4.49 4.26 0.01 0.14 ind:imp:1s; +divertissait divertir ver 4.49 4.26 0.03 0.27 ind:imp:3s; +divertissant divertissant adj m s 1.44 1.55 0.95 0.68 +divertissante divertissant adj f s 1.44 1.55 0.26 0.54 +divertissantes divertissant adj f p 1.44 1.55 0.04 0.34 +divertissants divertissant adj m p 1.44 1.55 0.19 0 +divertissement divertissement nom m s 4.21 5.47 3.67 3.38 +divertissements divertissement nom m p 4.21 5.47 0.55 2.09 +divertissent divertir ver 4.49 4.26 0.14 0.27 ind:pre:3p; +divertissez divertir ver 4.49 4.26 0.17 0 imp:pre:2p;ind:pre:2p; +divertissons divertir ver 4.49 4.26 0 0.07 imp:pre:1p; +divertit divertir ver 4.49 4.26 0.38 0.41 ind:pre:3s;ind:pas:3s; +dividende dividende nom m s 0.57 0.47 0.03 0.07 +dividendes dividende nom m p 0.57 0.47 0.55 0.41 +divin divin adj m s 26.55 24.93 10.01 10.14 +divination divination nom f s 0.56 1.08 0.54 1.01 +divinations divination nom f p 0.56 1.08 0.02 0.07 +divinatoire divinatoire adj f s 0.04 0.27 0 0.2 +divinatoires divinatoire adj p 0.04 0.27 0.04 0.07 +divinatrice divinateur adj f s 0 0.41 0 0.34 +divinatrices divinateur adj f p 0 0.41 0 0.07 +divine divin adj f s 26.55 24.93 14 11.76 +divinement divinement adv 1.14 1.28 1.14 1.28 +divines divin adj f p 26.55 24.93 1.42 2.03 +divinisaient diviniser ver 0 0.41 0 0.07 ind:imp:3p; +divinisant divinisant adj m s 0 0.07 0 0.07 +divinise diviniser ver 0 0.41 0 0.14 ind:pre:3s; +divinisez diviniser ver 0 0.41 0 0.07 ind:pre:2p; +divinisé diviniser ver m s 0 0.41 0 0.07 par:pas; +divinisée diviniser ver f s 0 0.41 0 0.07 par:pas; +divinité divinité nom f s 2.53 5.95 2.31 3.45 +divinités divinité nom f p 2.53 5.95 0.22 2.5 +divins divin adj m p 26.55 24.93 1.12 1.01 +divisa diviser ver 10.14 16.69 0.15 0.41 ind:pas:3s; +divisaient diviser ver 10.14 16.69 0.03 0.54 ind:imp:3p; +divisais diviser ver 10.14 16.69 0 0.14 ind:imp:1s; +divisait diviser ver 10.14 16.69 0.17 1.62 ind:imp:3s; +divisant diviser ver 10.14 16.69 0.3 0.61 par:pre; +divise diviser ver 10.14 16.69 1.73 2.7 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divisent diviser ver 10.14 16.69 0.7 1.01 ind:pre:3p; +diviser diviser ver 10.14 16.69 2.11 2.36 inf; +divisera diviser ver 10.14 16.69 0.14 0 ind:fut:3s; +diviserais diviser ver 10.14 16.69 0.1 0.07 cnd:pre:1s;cnd:pre:2s; +diviserait diviser ver 10.14 16.69 0.02 0.14 cnd:pre:3s; +divises diviser ver 10.14 16.69 0.2 0.07 ind:pre:2s; +diviseur diviseur nom m s 0.01 0.2 0.01 0.14 +diviseuse diviseur nom f s 0.01 0.2 0 0.07 +divisez diviser ver 10.14 16.69 0.3 0 imp:pre:2p;ind:pre:2p; +divisible divisible adj s 0.23 0.27 0.17 0.27 +divisibles divisible adj m p 0.23 0.27 0.06 0 +division division nom f s 13.07 43.51 11.6 29.73 +divisionnaire divisionnaire nom s 2.25 1.89 2.25 1.76 +divisionnaires divisionnaire adj m p 1.03 3.45 0.01 0.07 +divisionnisme divisionnisme nom m s 0 0.07 0 0.07 +divisions division nom f p 13.07 43.51 1.48 13.78 +divisons diviser ver 10.14 16.69 0.1 0.07 imp:pre:1p;ind:pre:1p; +divisèrent diviser ver 10.14 16.69 0 0.2 ind:pas:3p; +divisé diviser ver m s 10.14 16.69 1.85 2.91 par:pas; +divisée diviser ver f s 10.14 16.69 1.17 2.16 par:pas; +divisées diviser ver f p 10.14 16.69 0.23 0.27 par:pas; +divisés diviser ver m p 10.14 16.69 0.84 1.35 par:pas; +divorce divorce nom m s 23.23 11.15 21.64 10.54 +divorcent divorcer ver 27.5 8.11 0.67 0.61 ind:pre:3p; +divorcer divorcer ver 27.5 8.11 12.03 2.16 inf; +divorcera divorcer ver 27.5 8.11 0.32 0.14 ind:fut:3s; +divorcerai divorcer ver 27.5 8.11 0.41 0.14 ind:fut:1s; +divorcerais divorcer ver 27.5 8.11 0.3 0.2 cnd:pre:1s;cnd:pre:2s; +divorcerait divorcer ver 27.5 8.11 0.07 0 cnd:pre:3s; +divorceras divorcer ver 27.5 8.11 0.02 0 ind:fut:2s; +divorcerez divorcer ver 27.5 8.11 0.02 0.14 ind:fut:2p; +divorceriez divorcer ver 27.5 8.11 0.01 0 cnd:pre:2p; +divorcerons divorcer ver 27.5 8.11 0 0.07 ind:fut:1p; +divorceront divorcer ver 27.5 8.11 0.1 0.07 ind:fut:3p; +divorces divorce nom m p 23.23 11.15 1.58 0.61 +divorcez divorcer ver 27.5 8.11 0.67 0 imp:pre:2p;ind:pre:2p; +divorciez divorcer ver 27.5 8.11 0.04 0 ind:imp:2p; +divorcions divorcer ver 27.5 8.11 0.1 0.14 ind:imp:1p; +divorcèrent divorcer ver 27.5 8.11 0.02 0.14 ind:pas:3p; +divorcé divorcer ver m s 27.5 8.11 6.04 2.23 par:pas; +divorcée divorcer ver f s 27.5 8.11 1.58 0.47 par:pas; +divorcées divorcé adj f p 1.64 0.95 0.14 0.07 +divorcés divorcer ver m p 27.5 8.11 1.5 0.07 par:pas; +divorça divorcer ver 27.5 8.11 0.14 0.07 ind:pas:3s; +divorçaient divorcer ver 27.5 8.11 0.04 0.07 ind:imp:3p; +divorçait divorcer ver 27.5 8.11 0.12 0.27 ind:imp:3s; +divorçant divorcer ver 27.5 8.11 0.04 0.2 par:pre; +divorçons divorcer ver 27.5 8.11 0.48 0.14 imp:pre:1p;ind:pre:1p; +divulgation divulgation nom f s 0.33 0.61 0.33 0.61 +divulguait divulguer ver 2.48 1.96 0 0.2 ind:imp:3s; +divulguant divulguer ver 2.48 1.96 0 0.14 par:pre; +divulgue divulguer ver 2.48 1.96 0.27 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divulguer divulguer ver 2.48 1.96 1.06 0.95 inf; +divulguera divulguer ver 2.48 1.96 0.04 0.07 ind:fut:3s; +divulguez divulguer ver 2.48 1.96 0.09 0 imp:pre:2p;ind:pre:2p; +divulguons divulguer ver 2.48 1.96 0.05 0 imp:pre:1p;ind:pre:1p; +divulgué divulguer ver m s 2.48 1.96 0.71 0.34 par:pas; +divulguée divulguer ver f s 2.48 1.96 0.08 0.07 par:pas; +divulguées divulguer ver f p 2.48 1.96 0.06 0 par:pas; +divulgués divulguer ver m p 2.48 1.96 0.11 0.14 par:pas; +dix dix adj_num 118.29 209.86 118.29 209.86 +dix_cors dix_cors nom m 0.03 0.88 0.03 0.88 +dix_huit dix_huit adj_num 4.44 31.69 4.44 31.69 +dix_huitième dix_huitième nom s 0.16 0.27 0.16 0.27 +dix_neuf dix_neuf adj_num 2.11 10.54 2.11 10.54 +dix_neuvième dix_neuvième adj 0.15 1.22 0.15 1.22 +dix_sept dix_sept adj_num 3.69 19.59 3.69 19.59 +dix_septième dix_septième adj 0.22 1.22 0.22 1.22 +dixie dixie nom m s 1.4 0 1.4 0 +dixieland dixieland nom m s 0.14 0 0.14 0 +dixit dixit adj m s 0.54 0.68 0.54 0.68 +dixième dixième adj 1.76 2.77 1.73 2.7 +dixièmement dixièmement adv 0.02 0 0.02 0 +dixièmes dixième nom p 1.6 4.32 0.23 1.28 +dizain dizain nom m s 0.14 0 0.14 0 +dizaine dizaine nom f s 11.08 44.73 5.87 26.55 +dizaines dizaine nom f p 11.08 44.73 5.21 18.18 +dièdre dièdre nom m s 0 0.41 0 0.27 +dièdres dièdre nom m p 0 0.41 0 0.14 +dièse diéser ver 0.51 0.41 0.51 0.34 ind:pre:3s; +dièses dièse nom m p 0.27 0.27 0.02 0.14 +diète diète nom f s 0.42 0.54 0.42 0.54 +diérèses diérèse nom f p 0 0.07 0 0.07 +diéthylénique diéthylénique adj m s 0.01 0 0.01 0 +diététicien diététicien nom m s 0.09 0.61 0.03 0.54 +diététicienne diététicien nom f s 0.09 0.61 0.06 0 +diététiciens diététicien nom m p 0.09 0.61 0 0.07 +diététique diététique adj s 1.03 0.47 0.96 0.27 +diététiques diététique adj p 1.03 0.47 0.07 0.2 +diététiste diététiste nom s 0.01 0 0.01 0 +djebel djebel nom m s 0 2.84 0 2.3 +djebels djebel nom m p 0 2.84 0 0.54 +djellaba djellaba nom f s 0.3 1.69 0.15 1.15 +djellabas djellaba nom f p 0.3 1.69 0.16 0.54 +djemââ djemââ nom f s 0 0.07 0 0.07 +djihad djihad nom m s 0.44 0 0.43 0 +djihads djihad nom m p 0.44 0 0.01 0 +djinn djinn nom m s 0.36 0.61 0.34 0 +djinns djinn nom m p 0.36 0.61 0.02 0.61 +dm dm adj_num 0.4 0 0.4 0 +dna dna nom m s 0.09 0 0.09 0 +do do nom m 16.66 3.78 16.66 3.78 +doberman doberman nom m s 1.03 0.95 0.69 0.34 +dobermans doberman nom m p 1.03 0.95 0.33 0.61 +doc doc nom m s 4.04 0.54 4.04 0.54 +doche doche nom f s 0 0.07 0 0.07 +docile docile adj s 2.12 9.66 1.68 7.43 +docilement docilement adv 0.07 5.54 0.07 5.54 +dociles docile adj p 2.12 9.66 0.44 2.23 +docilité docilité nom f s 0.14 3.85 0.14 3.85 +dock dock nom m s 3.1 3.99 0.92 0.81 +docker docker nom m s 0.9 3.18 0.39 0.68 +dockers docker nom m p 0.9 3.18 0.51 2.5 +docks dock nom m p 3.1 3.99 2.18 3.18 +docte docte adj s 0.17 1.89 0.17 1.42 +doctement doctement adv 0 0.54 0 0.54 +doctes docte adj m p 0.17 1.89 0.01 0.47 +docteur docteur nom m s 233.86 87.36 223.48 83.11 +docteurs docteur nom m p 233.86 87.36 9.72 3.18 +doctissime doctissime adj m s 0.03 0 0.03 0 +doctoral doctoral adj m s 0 0.81 0 0.54 +doctorale doctoral adj f s 0 0.81 0 0.27 +doctorat doctorat nom m s 4.07 1.82 3.76 1.76 +doctorats doctorat nom m p 4.07 1.82 0.31 0.07 +doctoresse docteur nom f s 233.86 87.36 0.66 1.08 +doctrina doctriner ver 0 0.07 0 0.07 ind:pas:3s; +doctrinaire doctrinaire adj s 0.02 0.14 0.02 0.14 +doctrinaires doctrinaire nom p 0 0.27 0 0.07 +doctrinal doctrinal adj m s 0.01 0.47 0 0.27 +doctrinale doctrinal adj f s 0.01 0.47 0.01 0.14 +doctrinales doctrinal adj f p 0.01 0.47 0 0.07 +doctrine doctrine nom f s 1.81 7.77 1.54 5.68 +doctrines doctrine nom f p 1.81 7.77 0.27 2.09 +docudrame docudrame nom m s 0.03 0 0.03 0 +document document nom m s 24.86 16.01 9.34 6.69 +documenta documenter ver 1.53 0.95 0.01 0.14 ind:pas:3s; +documentaire documentaire nom m s 4.88 0.95 4.13 0.74 +documentaires documentaire nom m p 4.88 0.95 0.75 0.2 +documentais documenter ver 1.53 0.95 0.01 0 ind:imp:1s; +documentait documenter ver 1.53 0.95 0.04 0 ind:imp:3s; +documentaliste documentaliste nom s 0.29 0.27 0.27 0.2 +documentalistes documentaliste nom p 0.29 0.27 0.03 0.07 +documentant documenter ver 1.53 0.95 0.05 0.07 par:pre; +documentariste documentariste nom s 0.04 0 0.03 0 +documentaristes documentariste nom p 0.04 0 0.01 0 +documentation documentation nom f s 1.44 2.43 1.43 2.23 +documentations documentation nom f p 1.44 2.43 0.01 0.2 +documente documenter ver 1.53 0.95 0.23 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +documentent documenter ver 1.53 0.95 0.01 0.07 ind:pre:3p; +documenter documenter ver 1.53 0.95 0.85 0.47 inf; +documenterai documenter ver 1.53 0.95 0 0.07 ind:fut:1s; +documentes documenter ver 1.53 0.95 0 0.07 ind:pre:2s; +documents document nom m p 24.86 16.01 15.53 9.32 +documenté documenter ver m s 1.53 0.95 0.22 0.07 par:pas; +documentée documenté adj f s 0.39 0.07 0.15 0 +documentés documenter ver m p 1.53 0.95 0.05 0 par:pas; +dodelinaient dodeliner ver 0.03 2.77 0 0.07 ind:imp:3p; +dodelinais dodeliner ver 0.03 2.77 0.01 0.07 ind:imp:1s; +dodelinait dodeliner ver 0.03 2.77 0 0.68 ind:imp:3s; +dodelinant dodeliner ver 0.03 2.77 0.01 1.01 par:pre; +dodelinante dodelinant adj f s 0.01 0.27 0 0.07 +dodelinantes dodelinant adj f p 0.01 0.27 0 0.07 +dodeline dodeliner ver 0.03 2.77 0.01 0.41 imp:pre:2s;ind:pre:3s; +dodelinent dodeliner ver 0.03 2.77 0 0.14 ind:pre:3p; +dodeliner dodeliner ver 0.03 2.77 0 0.27 inf; +dodelinèrent dodeliner ver 0.03 2.77 0 0.07 ind:pas:3p; +dodeliné dodeliner ver m s 0.03 2.77 0 0.07 par:pas; +dodine dodiner ver 0 0.07 0 0.07 ind:pre:3s; +dodo dodo nom m s 7.53 2.5 7.52 2.43 +dodos dodo nom m p 7.53 2.5 0.01 0.07 +dodu dodu adj m s 0.89 5 0.34 1.89 +dodue dodu adj f s 0.89 5 0.13 1.42 +dodues dodu adj f p 0.89 5 0.2 0.88 +dodus dodu adj m p 0.89 5 0.23 0.81 +dodécagone dodécagone nom m s 0 0.07 0 0.07 +dodécaphoniste dodécaphoniste nom s 0 0.07 0 0.07 +dodécaèdre dodécaèdre nom m s 0.03 0.14 0.03 0.14 +dog_cart dog_cart nom m s 0.04 0 0.04 0 +dogaresse dogaresse nom f s 0 0.14 0 0.07 +dogaresses dogaresse nom f p 0 0.14 0 0.07 +doge doge nom m s 0.53 3.45 0.41 1.89 +doges doge nom m p 0.53 3.45 0.11 1.55 +dogger dogger nom m s 0.14 0 0.14 0 +dogmatique dogmatique adj s 0.17 1.01 0.03 0.61 +dogmatiques dogmatique adj p 0.17 1.01 0.14 0.41 +dogmatisme dogmatisme nom m s 0.1 0.34 0.1 0.34 +dogme dogme nom m s 0.63 2.77 0.49 1.35 +dogmes dogme nom m p 0.63 2.77 0.14 1.42 +dogue dogue nom m s 0.14 1.42 0.14 0.81 +dogues dogue nom m p 0.14 1.42 0 0.61 +doguin doguin nom m s 0 0.07 0 0.07 +doigt doigt nom m s 85.69 256.15 39.83 80.34 +doigta doigter ver 0.1 0.07 0 0.07 ind:pas:3s; +doigtait doigter ver 0.1 0.07 0.01 0 ind:imp:3s; +doigter doigter ver 0.1 0.07 0.04 0 inf; +doigtier doigtier nom m s 0 0.2 0 0.2 +doigts doigt nom m p 85.69 256.15 45.86 175.81 +doigté doigté nom m s 1 1.15 1 1.15 +dois devoir ver_sup 3232.57 1318.18 894.69 102.03 imp:pre:2s;ind:pre:1s;ind:pre:2s;inf; +doit devoir ver_sup 3232.57 1318.18 654.84 224.59 ind:pre:3s; +doive devoir ver_sup 3232.57 1318.18 5.5 4.32 sub:pre:1s;sub:pre:3s; +doivent devoir ver_sup 3232.57 1318.18 85.42 45.95 ind:pre:3p;sub:pre:3p; +doives devoir ver_sup 3232.57 1318.18 1.25 0.14 sub:pre:2s; +dojo dojo nom m s 0.93 0.34 0.93 0.34 +dol dol nom m s 0.34 0.07 0.34 0.07 +dolby dolby nom m s 0.05 0 0.05 0 +dolce dolce adv 1.53 0.74 1.53 0.74 +dolent dolent adj m s 0.27 2.36 0 0.68 +dolente dolent adj f s 0.27 2.36 0.27 1.35 +dolentes dolent adj f p 0.27 2.36 0 0.14 +dolents dolent adj m p 0.27 2.36 0 0.2 +dolichocéphale dolichocéphale adj m s 0.1 0.2 0.1 0 +dolichocéphales dolichocéphale adj p 0.1 0.2 0 0.2 +dolichocéphalie dolichocéphalie nom f s 0 0.07 0 0.07 +doline doline nom f s 0.01 0 0.01 0 +dolique dolique nom m s 0.01 0 0.01 0 +dollar dollar nom m s 134.1 16.96 13.89 3.85 +dollars dollar nom m p 134.1 16.96 120.22 13.11 +dolman dolman nom m s 0 1.15 0 0.88 +dolmans dolman nom m p 0 1.15 0 0.27 +dolmen dolmen nom m s 0.01 1.89 0 1.15 +dolmens dolmen nom m p 0.01 1.89 0.01 0.74 +dolomies dolomie nom f p 0.14 0.07 0.14 0.07 +dolomite dolomite nom f s 0.08 0 0.08 0 +dolorisme dolorisme nom m s 0 0.07 0 0.07 +doloriste doloriste nom s 0 0.07 0 0.07 +doléance doléance nom f s 0.46 1.76 0 0.14 +doléances doléance nom f p 0.46 1.76 0.46 1.62 +dom dom nom m s 0.39 0.34 0.39 0.34 +domaine domaine nom m s 21.57 46.22 19.21 37.91 +domaines domaine nom m p 21.57 46.22 2.37 8.31 +domanial domanial adj m s 0 0.47 0 0.14 +domaniale domanial adj f s 0 0.47 0 0.27 +domaniaux domanial adj m p 0 0.47 0 0.07 +domestication domestication nom f s 0.02 0.47 0.02 0.47 +domesticité domesticité nom f s 0.18 0.88 0.18 0.88 +domestiqua domestiquer ver 0.41 3.58 0 0.14 ind:pas:3s; +domestiquait domestiquer ver 0.41 3.58 0 0.07 ind:imp:3s; +domestique domestique nom s 10.09 18.51 4.57 7.23 +domestiquement domestiquement adv 0 0.07 0 0.07 +domestiquer domestiquer ver 0.41 3.58 0.07 0.88 inf; +domestiques domestique nom p 10.09 18.51 5.52 11.28 +domestiquez domestiquer ver 0.41 3.58 0 0.07 imp:pre:2p; +domestiqué domestiquer ver m s 0.41 3.58 0.12 0.68 par:pas; +domestiquée domestiquer ver f s 0.41 3.58 0.04 0.81 par:pas; +domestiquées domestiquer ver f p 0.41 3.58 0.01 0.14 par:pas; +domestiqués domestiquer ver m p 0.41 3.58 0.06 0.68 par:pas; +domicile domicile nom m s 11.69 15.34 11.6 14.93 +domiciles domicile nom m p 11.69 15.34 0.09 0.41 +domiciliaires domiciliaire adj f p 0 0.2 0 0.2 +domiciliation domiciliation nom f s 0 0.07 0 0.07 +domicilier domicilier ver 0.38 0.74 0 0.14 inf; +domicilié domicilié adj m s 0.53 0.07 0.52 0 +domiciliée domicilier ver f s 0.38 0.74 0.14 0.27 par:pas; +domiciliés domicilié adj m p 0.53 0.07 0.01 0 +domina dominer ver 15.66 50.61 0.27 1.08 ind:pas:3s; +dominaient dominer ver 15.66 50.61 0.02 2.57 ind:imp:3p; +dominais dominer ver 15.66 50.61 0.02 0.34 ind:imp:1s;ind:imp:2s; +dominait dominer ver 15.66 50.61 0.42 9.32 ind:imp:3s; +dominance dominance nom f s 0.14 0.07 0.14 0.07 +dominant dominant adj m s 2.34 3.85 1.41 1.69 +dominante dominant adj f s 2.34 3.85 0.68 1.15 +dominantes dominant adj f p 2.34 3.85 0.04 0.54 +dominants dominant adj m p 2.34 3.85 0.22 0.47 +dominateur dominateur adj m s 0.97 1.49 0.53 0.95 +dominateurs dominateur adj m p 0.97 1.49 0.01 0.14 +domination domination nom f s 2.42 5.88 2.39 5.68 +dominations domination nom f p 2.42 5.88 0.04 0.2 +dominatrice dominateur adj f s 0.97 1.49 0.42 0.34 +dominatrices dominateur nom f p 0.38 0.34 0.03 0 +domine dominer ver 15.66 50.61 4.04 9.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dominent dominer ver 15.66 50.61 0.73 3.11 ind:pre:3p; +dominer dominer ver 15.66 50.61 5.07 10.34 inf; +dominera dominer ver 15.66 50.61 0.59 0.27 ind:fut:3s; +dominerai dominer ver 15.66 50.61 0.17 0 ind:fut:1s; +domineraient dominer ver 15.66 50.61 0 0.07 cnd:pre:3p; +dominerais dominer ver 15.66 50.61 0.01 0.27 cnd:pre:1s;cnd:pre:2s; +dominerait dominer ver 15.66 50.61 0.05 0.07 cnd:pre:3s; +domineras dominer ver 15.66 50.61 0.11 0 ind:fut:2s; +domineriez dominer ver 15.66 50.61 0.01 0 cnd:pre:2p; +dominerions dominer ver 15.66 50.61 0 0.14 cnd:pre:1p; +dominerons dominer ver 15.66 50.61 0.07 0.07 ind:fut:1p; +domineront dominer ver 15.66 50.61 0.16 0.14 ind:fut:3p; +domines dominer ver 15.66 50.61 0.26 0.27 ind:pre:2s; +dominez dominer ver 15.66 50.61 0.11 0.07 imp:pre:2p;ind:pre:2p; +dominicain dominicain nom m s 0.58 2.57 0.23 0.61 +dominicaine dominicain adj f s 0.19 0.95 0.12 0.47 +dominicaines dominicain nom f p 0.58 2.57 0.03 0.07 +dominicains dominicain nom m p 0.58 2.57 0.28 1.89 +dominical dominical adj m s 0.31 2.97 0.1 1.15 +dominicale dominical adj f s 0.31 2.97 0.19 1.08 +dominicales dominical adj f p 0.31 2.97 0.01 0.41 +dominicaux dominical adj m p 0.31 2.97 0.01 0.34 +dominiez dominer ver 15.66 50.61 0.02 0 ind:imp:2p; +dominion dominion nom m s 0.34 0.54 0.34 0.27 +dominions dominer ver 15.66 50.61 0.01 0.41 ind:imp:1p; +domino domino nom m s 1.35 3.18 0.35 0.41 +dominons dominer ver 15.66 50.61 0.05 0.14 imp:pre:1p;ind:pre:1p; +dominos domino nom m p 1.35 3.18 0.99 2.77 +dominât dominer ver 15.66 50.61 0 0.07 sub:imp:3s; +dominèrent dominer ver 15.66 50.61 0.01 0.07 ind:pas:3p; +dominé dominer ver m s 15.66 50.61 1.45 3.85 par:pas; +dominée dominer ver f s 15.66 50.61 1.23 1.89 par:pas; +dominées dominer ver f p 15.66 50.61 0.15 1.08 par:pas; +dominés dominer ver m p 15.66 50.61 0.32 1.28 par:pas; +dommage dommage ono 25.88 5.34 25.88 5.34 +dommageable dommageable adj f s 0.12 0.2 0.1 0.07 +dommageables dommageable adj f p 0.12 0.2 0.02 0.14 +dommages dommage nom m p 65.59 26.15 6.16 2.09 +dommages_intérêts dommages_intérêts nom m p 0.04 0 0.04 0 +domotique domotique nom f s 0.02 0 0.02 0 +dompta dompter ver 2.14 3.24 0 0.2 ind:pas:3s; +domptage domptage nom m s 0 0.14 0 0.14 +domptai dompter ver 2.14 3.24 0 0.07 ind:pas:1s; +domptait dompter ver 2.14 3.24 0 0.07 ind:imp:3s; +dompte dompter ver 2.14 3.24 0.26 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +domptent dompter ver 2.14 3.24 0 0.07 ind:pre:3p; +dompter dompter ver 2.14 3.24 1 1.69 inf; +dompterai dompter ver 2.14 3.24 0 0.07 ind:fut:1s; +dompterait dompter ver 2.14 3.24 0 0.07 cnd:pre:3s; +dompteur dompteur nom m s 2.18 2.57 1.11 1.89 +dompteurs dompteur nom m p 2.18 2.57 0.16 0.14 +dompteuse dompteur nom f s 2.18 2.57 0.92 0.41 +dompteuses dompteur nom f p 2.18 2.57 0 0.14 +domptez dompter ver 2.14 3.24 0.04 0.07 imp:pre:2p; +dompté dompter ver m s 2.14 3.24 0.64 0.34 par:pas; +domptée dompter ver f s 2.14 3.24 0.19 0.2 par:pas; +domptées dompté adj f p 0.15 0.2 0 0.14 +domptés dompté adj m p 0.15 0.2 0.02 0 +don don nom m s 43.78 39.86 35.47 30.27 +dona dona nom f s 0.5 1.15 0.5 1.15 +donateur donateur nom m s 0.89 1.69 0.36 0.81 +donateurs donateur nom m p 0.89 1.69 0.5 0.61 +donation donation nom f s 1.89 0.74 1.23 0.54 +donations donation nom f p 1.89 0.74 0.66 0.2 +donatrice donateur nom f s 0.89 1.69 0.04 0.27 +donc donc con 612.51 445.88 612.51 445.88 +dondaine dondaine nom f s 0 0.14 0 0.07 +dondaines dondaine nom f p 0 0.14 0 0.07 +dondon dondon nom f s 0.23 0.47 0.2 0.34 +dondons dondon nom f p 0.23 0.47 0.03 0.14 +dong dong ono 0.97 0.95 0.97 0.95 +donjon donjon nom m s 3.14 3.31 2.94 2.84 +donjons donjon nom m p 3.14 3.31 0.2 0.47 +donjuanesque donjuanesque adj s 0 0.47 0 0.47 +donjuanisme donjuanisme nom m s 0 0.54 0 0.54 +donna donner ver 1209.67 896.01 6.28 46.28 ind:pas:3s; +donnai donner ver 1209.67 896.01 0.32 5.41 ind:pas:1s; +donnaient donner ver 1209.67 896.01 2.49 35.07 ind:imp:3p; +donnais donner ver 1209.67 896.01 5.91 6.89 ind:imp:1s;ind:imp:2s; +donnait donner ver 1209.67 896.01 15.97 123.24 ind:imp:3s; +donnant donner ver 1209.67 896.01 7.04 32.57 par:pre; +donnant_donnant donnant_donnant adv 0.73 0.41 0.73 0.41 +donnas donner ver 1209.67 896.01 0.04 0 ind:pas:2s; +donnassent donner ver 1209.67 896.01 0 0.14 sub:imp:3p; +donne donner ver 1209.67 896.01 401.06 149.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +donnent donner ver 1209.67 896.01 19.75 26.28 ind:pre:3p;sub:pre:3p; +donner donner ver 1209.67 896.01 233.3 216.55 inf;;inf;;inf;;inf;;inf;;inf;;inf;; +donnera donner ver 1209.67 896.01 24.6 8.99 ind:fut:3s; +donnerai donner ver 1209.67 896.01 30.7 6.15 ind:fut:1s; +donneraient donner ver 1209.67 896.01 1.1 2.03 cnd:pre:3p; +donnerais donner ver 1209.67 896.01 11.18 5.68 cnd:pre:1s;cnd:pre:2s; +donnerait donner ver 1209.67 896.01 6.2 13.31 cnd:pre:3s; +donneras donner ver 1209.67 896.01 5.49 1.82 ind:fut:2s; +donnerez donner ver 1209.67 896.01 4.31 1.69 ind:fut:2p; +donneriez donner ver 1209.67 896.01 1.05 0.34 cnd:pre:2p; +donnerions donner ver 1209.67 896.01 0.05 0.14 cnd:pre:1p; +donnerons donner ver 1209.67 896.01 2.96 0.61 ind:fut:1p; +donneront donner ver 1209.67 896.01 3.68 1.89 ind:fut:3p; +donnes donner ver 1209.67 896.01 34.32 5.34 ind:pre:1p;ind:pre:2s;sub:pre:2s; +donneur donneur nom m s 5.87 6.76 4.85 5.27 +donneurs donneur nom m p 5.87 6.76 0.84 0.95 +donneuse donneur adj f s 0.91 0.68 0.23 0.34 +donneuses donneur nom f p 5.87 6.76 0.01 0.07 +donnez donner ver 1209.67 896.01 118.36 13.65 imp:pre:2p;ind:pre:2p; +donniez donner ver 1209.67 896.01 3.04 1.28 ind:imp:2p;sub:pre:2p; +donnions donner ver 1209.67 896.01 0.79 1.69 ind:imp:1p;sub:pre:1p; +donnons donner ver 1209.67 896.01 6.66 1.96 imp:pre:1p;ind:pre:1p; +donnâmes donner ver 1209.67 896.01 0 0.34 ind:pas:1p; +donnât donner ver 1209.67 896.01 0.02 3.38 sub:imp:3s; +donnèrent donner ver 1209.67 896.01 0.75 4.59 ind:pas:3p; +donné donner ver m s 1209.67 896.01 234.66 148.65 par:pas;par:pas;par:pas;par:pas; +donnée donner ver f s 1209.67 896.01 16.55 18.92 par:pas; +données donnée nom f p 20.92 6.89 20.05 5.41 +donnés donner ver m p 1209.67 896.01 7.06 6.82 par:pas; +donquichottesque donquichottesque adj f s 0 0.2 0 0.14 +donquichottesques donquichottesque adj f p 0 0.2 0 0.07 +donquichottisme donquichottisme nom m s 0.01 0 0.01 0 +dons don nom m p 43.78 39.86 8.31 9.59 +dont dont pro_rel 223.41 960.34 219.21 926.42 +donzelle donzelle nom f s 0.48 1.22 0.41 0.81 +donzelles donzelle nom f p 0.48 1.22 0.07 0.41 +dopage dopage nom m s 0.1 0 0.1 0 +dopais doper ver 1.33 0.54 0.01 0 ind:imp:1s; +dopait doper ver 1.33 0.54 0.04 0 ind:imp:3s; +dopamine dopamine nom f s 1.1 0 1.1 0 +dopant dopant adj m s 0.18 0 0.15 0 +dopants dopant adj m p 0.18 0 0.04 0 +dope dope nom s 7.47 2.03 7.47 1.96 +doper doper ver 1.33 0.54 0.35 0 inf; +dopes doper ver 1.33 0.54 0.05 0 ind:pre:2s; +dopez doper ver 1.33 0.54 0.02 0 imp:pre:2p;ind:pre:2p; +doping doping nom m s 0.01 0.34 0.01 0.34 +doppler doppler nom m s 0.01 0 0.01 0 +dopé doper ver m s 1.33 0.54 0.46 0.27 par:pas; +dopée doper ver f s 1.33 0.54 0.05 0 par:pas; +dopés doper ver m p 1.33 0.54 0.06 0.14 par:pas; +dora dorer ver 2.67 15.14 0 0.07 ind:pas:3s; +dorade dorade nom f s 0.62 0.47 0.22 0.14 +dorades dorade nom f p 0.62 0.47 0.4 0.34 +dorage dorage nom m s 0 0.07 0 0.07 +doraient dorer ver 2.67 15.14 0 0.07 ind:imp:3p; +dorais dorer ver 2.67 15.14 0.01 0.07 ind:imp:1s; +dorait dorer ver 2.67 15.14 0 0.68 ind:imp:3s; +dorant dorer ver 2.67 15.14 0.15 0.2 par:pre; +dorcades dorcade nom f p 0 0.07 0 0.07 +dore dorer ver 2.67 15.14 0.3 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dorent dorer ver 2.67 15.14 0.01 0.2 ind:pre:3p; +dorer dorer ver 2.67 15.14 0.23 1.22 ind:pre:2p;inf; +dorera dorer ver 2.67 15.14 0 0.07 ind:fut:3s; +doreront dorer ver 2.67 15.14 0.01 0 ind:fut:3p; +doreurs doreur nom m p 0 0.07 0 0.07 +doriennes dorien adj f p 0 0.14 0 0.07 +doriens dorien adj m p 0 0.14 0 0.07 +dorique dorique adj s 0.01 0.47 0.01 0.14 +doriques dorique adj p 0.01 0.47 0 0.34 +dorlotait dorloter ver 1.56 2.43 0.01 0.27 ind:imp:3s; +dorlotant dorloter ver 1.56 2.43 0.02 0.07 par:pre; +dorlote dorloter ver 1.56 2.43 0.28 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dorlotent dorloter ver 1.56 2.43 0.03 0.07 ind:pre:3p; +dorloter dorloter ver 1.56 2.43 0.79 1.08 inf; +dorloterai dorloter ver 1.56 2.43 0.01 0 ind:fut:1s; +dorloterons dorloter ver 1.56 2.43 0 0.07 ind:fut:1p; +dorlotez dorloter ver 1.56 2.43 0.05 0 imp:pre:2p;ind:pre:2p; +dorloté dorloter ver m s 1.56 2.43 0.15 0.41 par:pas; +dorlotée dorloter ver f s 1.56 2.43 0.18 0 par:pas; +dorlotées dorloter ver f p 1.56 2.43 0 0.07 par:pas; +dorlotés dorloter ver m p 1.56 2.43 0.04 0.07 par:pas; +dormaient dormir ver 392.09 259.05 1.45 10.41 ind:imp:3p; +dormais dormir ver 392.09 259.05 14.36 7.5 ind:imp:1s;ind:imp:2s; +dormait dormir ver 392.09 259.05 9.72 41.89 ind:imp:3s; +dormance dormance nom f s 0.03 0.07 0.03 0.07 +dormant dormir ver 392.09 259.05 3.16 5.47 par:pre; +dormante dormant adj f s 1.62 4.26 0.07 1.76 +dormantes dormant adj f p 1.62 4.26 0.17 0.27 +dormants dormant adj m p 1.62 4.26 0.18 0.07 +dorme dormir ver 392.09 259.05 4.13 3.18 sub:pre:1s;sub:pre:3s; +dorment dormir ver 392.09 259.05 10.48 10.27 ind:pre:3p;sub:pre:3p; +dormes dormir ver 392.09 259.05 2.23 0.41 sub:pre:2s; +dormeur dormeur nom m s 1.21 5.95 0.82 3.11 +dormeurs dormeur nom m p 1.21 5.95 0.16 1.96 +dormeuse dormeur nom f s 1.21 5.95 0.23 0.54 +dormeuses dormeur nom f p 1.21 5.95 0 0.34 +dormez dormir ver 392.09 259.05 12.35 2.84 imp:pre:2p;ind:pre:2p; +dormi dormir ver m s 392.09 259.05 41.25 26.49 par:pas; +dormiez dormir ver 392.09 259.05 2.4 0.95 ind:imp:2p; +dormions dormir ver 392.09 259.05 0.41 1.55 ind:imp:1p; +dormir dormir ver 392.09 259.05 160.77 95.2 inf; +dormira dormir ver 392.09 259.05 4.37 1.28 ind:fut:3s; +dormirai dormir ver 392.09 259.05 3.62 1.28 ind:fut:1s; +dormiraient dormir ver 392.09 259.05 0.17 0.14 cnd:pre:3p; +dormirais dormir ver 392.09 259.05 0.87 0.74 cnd:pre:1s;cnd:pre:2s; +dormirait dormir ver 392.09 259.05 0.35 1.42 cnd:pre:3s; +dormiras dormir ver 392.09 259.05 3.39 0.34 ind:fut:2s; +dormirent dormir ver 392.09 259.05 0.14 0.41 ind:pas:3p; +dormirez dormir ver 392.09 259.05 2.22 0.54 ind:fut:2p; +dormiriez dormir ver 392.09 259.05 0.03 0.07 cnd:pre:2p; +dormirions dormir ver 392.09 259.05 0.01 0.27 cnd:pre:1p; +dormirons dormir ver 392.09 259.05 0.28 0.34 ind:fut:1p; +dormiront dormir ver 392.09 259.05 0.7 0.14 ind:fut:3p; +dormis dormir ver 392.09 259.05 0.47 1.69 ind:pas:1s;ind:pas:2s; +dormit dormir ver 392.09 259.05 0.29 3.11 ind:pas:3s; +dormitif dormitif adj m s 0.03 0.2 0.03 0.2 +dormition dormition nom f s 0 0.14 0 0.14 +dormons dormir ver 392.09 259.05 2.38 0.81 imp:pre:1p;ind:pre:1p; +dormîmes dormir ver 392.09 259.05 0 0.34 ind:pas:1p; +dormît dormir ver 392.09 259.05 0 0.14 sub:imp:3s; +dors dormir ver 392.09 259.05 55.03 13.92 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dorsal dorsal adj m s 1.12 0.88 0.17 0.07 +dorsale dorsal adj f s 1.12 0.88 0.79 0.54 +dorsales dorsal adj f p 1.12 0.88 0.04 0.2 +dorsaux dorsal adj m p 1.12 0.88 0.11 0.07 +dort dormir ver 392.09 259.05 55.05 25.95 ind:pre:3s; +dortoir dortoir nom m s 5.29 12.36 4.83 9.32 +dortoirs dortoir nom m p 5.29 12.36 0.46 3.04 +dorure dorure nom f s 0.22 3.99 0.07 0.95 +dorures dorure nom f p 0.22 3.99 0.15 3.04 +doryphore doryphore nom m s 0.01 0.81 0.01 0.34 +doryphores doryphore nom m p 0.01 0.81 0 0.47 +doré doré adj m s 7.33 50.47 2.62 15.74 +dorée doré adj f s 7.33 50.47 2.31 16.42 +dorées doré adj f p 7.33 50.47 0.87 8.45 +dorénavant dorénavant adv 7.2 6.89 7.2 6.89 +dorés doré adj m p 7.33 50.47 1.53 9.86 +dos dos nom m 100.34 213.99 100.34 213.99 +dos_d_âne dos_d_âne nom m 0.01 0.34 0.01 0.34 +dosage dosage nom m s 1.89 1.69 1.67 1.62 +dosages dosage nom m p 1.89 1.69 0.22 0.07 +dosaient doser ver 0.6 2.91 0 0.07 ind:imp:3p; +dosais doser ver 0.6 2.91 0 0.07 ind:imp:1s; +dosait doser ver 0.6 2.91 0 0.07 ind:imp:3s; +dosant doser ver 0.6 2.91 0 0.34 par:pre; +dose dose nom f s 18.44 12.77 14.23 9.32 +dosent doser ver 0.6 2.91 0 0.07 ind:pre:3p; +doser doser ver 0.6 2.91 0.13 0.95 inf; +doses dose nom f p 18.44 12.77 4.21 3.45 +doseur doseur nom m s 0.19 0.14 0.18 0.07 +doseurs doseur nom m p 0.19 0.14 0.01 0.07 +dosimètre dosimètre nom m s 0.03 0 0.03 0 +dossard dossard nom m s 0.16 0.54 0.14 0.47 +dossards dossard nom m p 0.16 0.54 0.01 0.07 +dosseret dosseret nom m s 0 0.07 0 0.07 +dossier dossier nom m s 78.91 49.12 57.2 35.14 +dossiers dossier nom m p 78.91 49.12 21.71 13.99 +dossière dossière nom f s 0 0.27 0 0.2 +dossières dossière nom f p 0 0.27 0 0.07 +dostoïevskiens dostoïevskien adj m p 0 0.07 0 0.07 +dosé doser ver m s 0.6 2.91 0.13 0.27 par:pas; +dosée doser ver f s 0.6 2.91 0.01 0.27 par:pas; +dosées doser ver f p 0.6 2.91 0 0.27 par:pas; +dosés doser ver m p 0.6 2.91 0.03 0.34 par:pas; +dot dot nom f s 4.73 4.59 4.66 4.32 +dota doter ver 4.08 8.99 0 0.14 ind:pas:3s; +dotaient doter ver 4.08 8.99 0 0.07 ind:imp:3p; +dotait doter ver 4.08 8.99 0 0.68 ind:imp:3s; +dotant doter ver 4.08 8.99 0.01 0.2 par:pre; +dotation dotation nom f s 0.12 0.41 0.12 0.41 +dote doter ver 4.08 8.99 0.23 0.2 ind:pre:1s;ind:pre:3s; +doter doter ver 4.08 8.99 0.34 0.81 inf; +dots dot nom f p 4.73 4.59 0.07 0.27 +doté doter ver m s 4.08 8.99 1.82 2.97 par:pas; +dotée doter ver f s 4.08 8.99 0.99 2.09 par:pas; +dotées doter ver f p 4.08 8.99 0.08 0.81 par:pas; +dotés doter ver m p 4.08 8.99 0.61 1.01 par:pas; +douaire douaire nom m s 0.01 0.07 0.01 0.07 +douairière douairier nom f s 0.05 1.62 0.05 1.28 +douairières douairier nom f p 0.05 1.62 0 0.34 +douait douer ver 20.29 13.18 0 0.47 ind:imp:3s; +douane douane nom f s 6.12 9.46 4.33 8.51 +douanes douane nom f p 6.12 9.46 1.79 0.95 +douanier douanier nom m s 2 7.57 0.87 4.53 +douaniers douanier nom m p 2 7.57 1.14 3.04 +douanière douanier adj f s 0.63 1.55 0.01 0.07 +douanières douanier adj f p 0.63 1.55 0.04 0.41 +douar douar nom m s 0 0.61 0 0.47 +douars douar nom m p 0 0.61 0 0.14 +doubla doubler ver 15.29 22.84 0.2 1.28 ind:pas:3s; +doublage doublage nom m s 0.43 0.34 0.42 0.34 +doublages doublage nom m p 0.43 0.34 0.01 0 +doublai doubler ver 15.29 22.84 0 0.14 ind:pas:1s; +doublaient doubler ver 15.29 22.84 0.01 1.01 ind:imp:3p; +doublais doubler ver 15.29 22.84 0.03 0.14 ind:imp:1s; +doublait doubler ver 15.29 22.84 0.08 2.16 ind:imp:3s; +doublant doubler ver 15.29 22.84 0.06 1.01 par:pre; +doublard doublard nom m s 0.02 0.14 0.01 0.14 +doublards doublard nom m p 0.02 0.14 0.01 0 +double double adj s 30.46 58.99 28.68 52.84 +double_cliquer double_cliquer ver 0.09 0 0.01 0 inf; +double_cliquer double_cliquer ver m s 0.09 0 0.07 0 par:pas; +double_croche double_croche nom f s 0.01 0 0.01 0 +double_décimètre double_décimètre nom m s 0 0.07 0 0.07 +double_fond double_fond nom m s 0.01 0 0.01 0 +double_six double_six nom m s 0.14 0.2 0.14 0.2 +doubleau doubleau nom m s 0 0.2 0 0.14 +doubleaux doubleau nom m p 0 0.2 0 0.07 +doublement doublement adv 1.36 4.26 1.36 4.26 +doublent doubler ver 15.29 22.84 0.19 0.68 ind:pre:3p; +doubler doubler ver 15.29 22.84 4.65 4.39 inf; +doublera doubler ver 15.29 22.84 0.11 0.07 ind:fut:3s; +doublerai doubler ver 15.29 22.84 0.12 0.07 ind:fut:1s; +doubleraient doubler ver 15.29 22.84 0.01 0 cnd:pre:3p; +doublerait doubler ver 15.29 22.84 0.1 0.07 cnd:pre:3s; +doublerez doubler ver 15.29 22.84 0.01 0.07 ind:fut:2p; +doublerons doubler ver 15.29 22.84 0.03 0 ind:fut:1p; +doubles double adj p 30.46 58.99 1.78 6.15 +doublet doublet nom m s 0 0.2 0 0.14 +doublets doublet nom m p 0 0.2 0 0.07 +doublette doublette nom f s 0.14 0.07 0.14 0.07 +doubleur doubleur nom m s 0.09 0 0.07 0 +doubleuse doubleur nom f s 0.09 0 0.01 0 +doubleuses doubleur nom f p 0.09 0 0.01 0 +doublez doubler ver 15.29 22.84 1.02 0.27 imp:pre:2p;ind:pre:2p; +doubliez doubler ver 15.29 22.84 0.02 0 ind:imp:2p; +doublions doubler ver 15.29 22.84 0 0.07 ind:imp:1p; +doublon doublon nom m s 0.22 0.41 0.06 0.27 +doublonner doublonner ver 0.01 0 0.01 0 inf; +doublons doublon nom m p 0.22 0.41 0.16 0.14 +doublure doublure nom f s 3.84 4.53 3.7 3.38 +doublures doublure nom f p 3.84 4.53 0.14 1.15 +doublât doubler ver 15.29 22.84 0 0.07 sub:imp:3s; +doublèrent doubler ver 15.29 22.84 0 0.14 ind:pas:3p; +doublé doubler ver m s 15.29 22.84 3.13 4.12 par:pas; +doublée doubler ver f s 15.29 22.84 0.5 2.16 par:pas; +doublées doubler ver f p 15.29 22.84 0.04 0.54 par:pas; +doublés doubler ver m p 15.29 22.84 0.61 0.95 par:pas; +douce doux adj f s 89.14 145.07 44.7 73.58 +douce_amère douce_amère adj f s 0.06 0.27 0.06 0.27 +doucement doucement adv 103.81 128.38 103.81 128.38 +doucereuse doucereux adj f s 0.28 2.97 0.04 0.74 +doucereusement doucereusement adv 0 0.2 0 0.2 +doucereuses doucereux adj f p 0.28 2.97 0 0.47 +doucereux doucereux adj m 0.28 2.97 0.25 1.76 +douces doux adj f p 89.14 145.07 6.77 12.77 +douce_amère douce_amère nom f p 0 0.14 0 0.07 +doucet doucet adj m s 0.02 1.01 0.02 0.88 +doucette doucette nom f s 0.01 0.14 0.01 0.14 +doucettement doucettement adv 0 0.41 0 0.41 +douceur douceur nom f s 16.87 70 16.02 66.08 +douceurs douceur nom f p 16.87 70 0.85 3.92 +douceâtre douceâtre adj s 0.15 2.7 0.15 2.3 +douceâtres douceâtre adj p 0.15 2.7 0 0.41 +doucha doucher ver 6.75 2.57 0.14 0.27 ind:pas:3s; +douchais doucher ver 6.75 2.57 0.09 0.07 ind:imp:1s;ind:imp:2s; +douchait doucher ver 6.75 2.57 0.03 0.61 ind:imp:3s; +douchant doucher ver 6.75 2.57 0.01 0 par:pre; +douche douche nom f s 36.06 23.85 32.56 20.27 +douchent doucher ver 6.75 2.57 0.14 0.07 ind:pre:3p; +doucher doucher ver 6.75 2.57 3.29 0.47 inf; +douchera doucher ver 6.75 2.57 0.01 0 ind:fut:3s; +doucherai doucher ver 6.75 2.57 0 0.07 ind:fut:1s; +doucheras doucher ver 6.75 2.57 0.02 0 ind:fut:2s; +douches douche nom f p 36.06 23.85 3.49 3.58 +doucheur doucheur nom m s 0 0.07 0 0.07 +douchez doucher ver 6.75 2.57 0.05 0 imp:pre:2p;ind:pre:2p; +douchiez doucher ver 6.75 2.57 0.01 0 ind:imp:2p; +douchons doucher ver 6.75 2.57 0.02 0.07 imp:pre:1p;ind:pre:1p; +douché doucher ver m s 6.75 2.57 0.99 0.34 par:pas; +douchée doucher ver f s 6.75 2.57 0.19 0.07 par:pas; +douchés doucher ver m p 6.75 2.57 0.27 0.14 par:pas; +doucie doucir ver f s 0.02 0 0.02 0 par:pas; +doucin doucin nom m s 0 0.14 0 0.07 +doucine doucine nom f s 0.01 0 0.01 0 +doucins doucin nom m p 0 0.14 0 0.07 +doudou doudou nom f s 0.58 6.76 0.58 6.76 +doudoune doudoune nom f s 0.92 0.54 0.46 0.14 +doudounes doudoune nom f p 0.92 0.54 0.46 0.41 +douelle douelle nom f s 0 0.61 0 0.14 +douelles douelle nom f p 0 0.61 0 0.47 +douer douer ver 20.29 13.18 0 0.2 inf; +douglas douglas nom m 0.09 0 0.09 0 +douillait douiller ver 0.22 1.28 0 0.14 ind:imp:3s; +douille douille nom f s 3.67 3.51 1.79 0.81 +douillent douiller ver 0.22 1.28 0 0.07 ind:pre:3p; +douiller douiller ver 0.22 1.28 0.17 0.54 inf; +douillera douiller ver 0.22 1.28 0 0.07 ind:fut:3s; +douilles douille nom f p 3.67 3.51 1.88 2.7 +douillet douillet adj m s 2.63 6.96 1.97 4.19 +douillets douillet adj m p 2.63 6.96 0.04 0.81 +douillette douillet adj f s 2.63 6.96 0.58 1.62 +douillettement douillettement adv 0.03 0.54 0.03 0.54 +douillettes douillet adj f p 2.63 6.96 0.04 0.34 +douillons douillon nom m p 0 0.54 0 0.54 +douillé douiller ver m s 0.22 1.28 0 0.07 par:pas; +douillée douiller ver f s 0.22 1.28 0 0.2 par:pas; +douleur douleur nom f s 75.89 91.89 65.78 77.84 +douleurs douleur nom f p 75.89 91.89 10.1 14.05 +douloureuse douloureux adj f s 17.16 37.5 4.05 13.58 +douloureusement douloureusement adv 1 5.54 1 5.54 +douloureuses douloureux adj f p 17.16 37.5 1.23 3.24 +douloureux douloureux adj m 17.16 37.5 11.88 20.68 +douma douma nom f s 0.34 0.14 0.34 0.14 +doura doura nom m s 0 0.07 0 0.07 +douro douro nom m s 0 0.54 0 0.2 +douros douro nom m p 0 0.54 0 0.34 +douta douter ver 77.77 88.11 0.03 1.15 ind:pas:3s; +doutai douter ver 77.77 88.11 0.14 0.54 ind:pas:1s; +doutaient douter ver 77.77 88.11 0.11 2.16 ind:imp:3p; +doutais douter ver 77.77 88.11 11.76 9.32 ind:imp:1s;ind:imp:2s; +doutait douter ver 77.77 88.11 0.96 13.99 ind:imp:3s; +doutance doutance nom f s 0 0.27 0 0.14 +doutances doutance nom f p 0 0.27 0 0.14 +doutant douter ver 77.77 88.11 0.15 2.03 par:pre; +doute doute nom m s 108.18 350.07 97.51 341.35 +doutent douter ver 77.77 88.11 1.04 1.82 ind:pre:3p;sub:pre:3p; +douter douter ver 77.77 88.11 12.64 23.92 inf;; +doutera douter ver 77.77 88.11 0.43 0.34 ind:fut:3s; +douterai douter ver 77.77 88.11 0.11 0.14 ind:fut:1s; +douterais douter ver 77.77 88.11 0.3 0.27 cnd:pre:1s;cnd:pre:2s; +douterait douter ver 77.77 88.11 0.2 0.47 cnd:pre:3s; +douteras douter ver 77.77 88.11 0.01 0.07 ind:fut:2s; +douterez douter ver 77.77 88.11 0.01 0.07 ind:fut:2p; +douteriez douter ver 77.77 88.11 0.08 0.07 cnd:pre:2p; +douteront douter ver 77.77 88.11 0.05 0.07 ind:fut:3p; +doutes doute nom m p 108.18 350.07 10.66 8.72 +douteurs douteur adj m p 0 0.14 0 0.14 +douteuse douteux adj f s 4.1 15.95 1.17 3.92 +douteusement douteusement adv 0 0.07 0 0.07 +douteuses douteux adj f p 4.1 15.95 0.69 1.82 +douteux douteux adj m 4.1 15.95 2.23 10.2 +doutez douter ver 77.77 88.11 3.17 1.82 imp:pre:2p;ind:pre:2p; +doutiez douter ver 77.77 88.11 0.66 0.2 ind:imp:2p; +doutions douter ver 77.77 88.11 0.04 1.15 ind:imp:1p; +doutons douter ver 77.77 88.11 0.52 0.74 imp:pre:1p;ind:pre:1p; +doutât douter ver 77.77 88.11 0 0.47 sub:imp:3s; +doutèrent douter ver 77.77 88.11 0 0.14 ind:pas:3p; +douté douter ver m s 77.77 88.11 3.77 4.8 par:pas; +doutée douter ver f s 77.77 88.11 0.34 0.81 par:pas; +doutés douter ver m p 77.77 88.11 0.02 0.2 par:pas; +douve douve nom f s 0.53 1.42 0.06 0.34 +douves douve nom f p 0.53 1.42 0.47 1.08 +doux doux adj m 89.14 145.07 37.66 58.72 +doux_amer doux_amer adj m s 0.04 0 0.04 0 +douzaine douzaine nom f s 12.89 18.58 8.18 13.18 +douzaines douzaine nom f p 12.89 18.58 4.72 5.41 +douze douze adj_num 21.81 48.18 21.81 48.18 +douzième douzième nom s 0.35 0.95 0.35 0.88 +douzièmes douzième nom p 0.35 0.95 0 0.07 +douçâtre douçâtre adj s 0 0.07 0 0.07 +doué douer ver m s 20.29 13.18 11.31 7.43 par:pas; +douée douer ver f s 20.29 13.18 8.03 3.04 par:pas; +douées doué adj f p 12.73 7.57 0.47 0.41 +doués doué adj m p 12.73 7.57 1.03 1.69 +down down adj m s 0 0.54 0 0.54 +downing_street downing_street nom f s 0 0.34 0 0.34 +doyen doyen nom m s 3.31 6.76 3.12 5.88 +doyenne doyen nom f s 3.31 6.76 0.11 0.81 +doyenné doyenné nom m s 0 0.07 0 0.07 +doyens doyen nom m p 3.31 6.76 0.09 0.07 +doña doña nom f s 2.44 0 2.44 0 +drache dracher ver 0.01 0 0.01 0 ind:pre:3s; +drachme drachme nom f s 1.3 2.57 0.02 0.54 +drachmes drachme nom f p 1.3 2.57 1.28 2.03 +draconien draconien adj m s 0.49 0.54 0.14 0.07 +draconienne draconien adj f s 0.49 0.54 0.02 0.14 +draconiennes draconien adj f p 0.49 0.54 0.28 0.2 +draconiens draconien adj m p 0.49 0.54 0.04 0.14 +drag drag nom m s 0.73 0.34 0.6 0.14 +dragage dragage nom m s 0.15 0 0.15 0 +drageoir drageoir nom m s 0 0.47 0 0.34 +drageoirs drageoir nom m p 0 0.47 0 0.14 +dragon dragon nom m s 13.98 12.23 10.53 7.97 +dragonnades dragonnade nom f p 0 0.14 0 0.14 +dragonne dragon nom f s 13.98 12.23 0.06 0.27 +dragonnier dragonnier nom m s 0.1 0 0.1 0 +dragons dragon nom m p 13.98 12.23 3.39 3.99 +drags drag nom m p 0.73 0.34 0.14 0.2 +dragster dragster nom m s 0.04 0 0.04 0 +dragua draguer ver 21 6.22 0 0.14 ind:pas:3s; +draguaient draguer ver 21 6.22 0.1 0.14 ind:imp:3p; +draguais draguer ver 21 6.22 0.57 0.07 ind:imp:1s;ind:imp:2s; +draguait draguer ver 21 6.22 1.08 0.54 ind:imp:3s; +draguant draguer ver 21 6.22 0.06 0.2 par:pre; +drague draguer ver 21 6.22 3.57 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +draguent draguer ver 21 6.22 0.14 0.47 ind:pre:3p; +draguer draguer ver 21 6.22 9.84 2.43 inf; +draguera draguer ver 21 6.22 0.04 0 ind:fut:3s; +draguerai draguer ver 21 6.22 0.04 0.07 ind:fut:1s; +draguerais draguer ver 21 6.22 0.16 0 cnd:pre:1s;cnd:pre:2s; +draguerait draguer ver 21 6.22 0.02 0 cnd:pre:3s; +dragues draguer ver 21 6.22 1.7 0 ind:pre:2s; +dragueur dragueur nom m s 0.7 1.49 0.59 0.47 +dragueurs dragueur nom m p 0.7 1.49 0.06 0.88 +dragueuse dragueur nom f s 0.7 1.49 0.05 0.14 +draguez draguer ver 21 6.22 0.56 0 imp:pre:2p;ind:pre:2p; +draguiez draguer ver 21 6.22 0.01 0 sub:pre:2p; +draguons draguer ver 21 6.22 0.03 0.07 imp:pre:1p;ind:pre:1p; +dragué draguer ver m s 21 6.22 1.51 0.41 par:pas; +draguée draguer ver f s 21 6.22 1.39 0.61 par:pas; +draguées draguer ver f p 21 6.22 0.17 0 par:pas; +dragués draguer ver m p 21 6.22 0.02 0.07 par:pas; +dragée dragée nom f s 1.34 3.04 0.21 1.01 +dragées dragée nom f p 1.34 3.04 1.14 2.03 +drailles draille nom f p 0 0.41 0 0.41 +drain drain nom m s 1.11 0.47 0.93 0.2 +draina drainer ver 0.86 1.22 0 0.07 ind:pas:3s; +drainage drainage nom m s 0.41 0.61 0.41 0.54 +drainages drainage nom m p 0.41 0.61 0 0.07 +drainaient drainer ver 0.86 1.22 0 0.14 ind:imp:3p; +drainait drainer ver 0.86 1.22 0.14 0.14 ind:imp:3s; +drainant drainer ver 0.86 1.22 0 0.27 par:pre; +draine drainer ver 0.86 1.22 0.14 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +drainent drainer ver 0.86 1.22 0.04 0 ind:pre:3p; +drainer drainer ver 0.86 1.22 0.42 0.14 inf; +drainera drainer ver 0.86 1.22 0.02 0 ind:fut:3s; +drainons drainer ver 0.86 1.22 0.01 0 ind:pre:1p; +drains drain nom m p 1.11 0.47 0.18 0.27 +drainé drainer ver m s 0.86 1.22 0.09 0.2 par:pas; +drainées drainer ver f p 0.86 1.22 0 0.07 par:pas; +drainés drainer ver m p 0.86 1.22 0.01 0.07 par:pas; +draisienne draisienne nom f s 0 0.07 0 0.07 +draisine draisine nom f s 0.02 0.07 0.02 0.07 +drakkar drakkar nom m s 0.25 0.27 0.25 0 +drakkars drakkar nom m p 0.25 0.27 0 0.27 +dramatique dramatique adj s 8.59 11.35 7.29 9.39 +dramatiquement dramatiquement adv 0.27 0.41 0.27 0.41 +dramatiques dramatique adj p 8.59 11.35 1.3 1.96 +dramatisait dramatiser ver 2.42 1.76 0 0.2 ind:imp:3s; +dramatisant dramatiser ver 2.42 1.76 0 0.07 par:pre; +dramatisation dramatisation nom f s 0.17 0.14 0.17 0.14 +dramatise dramatiser ver 2.42 1.76 0.72 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dramatisent dramatiser ver 2.42 1.76 0.01 0 ind:pre:3p; +dramatiser dramatiser ver 2.42 1.76 0.72 0.68 inf; +dramatises dramatiser ver 2.42 1.76 0.59 0.14 ind:pre:2s; +dramatisez dramatiser ver 2.42 1.76 0.1 0 imp:pre:2p;ind:pre:2p; +dramatisons dramatiser ver 2.42 1.76 0.2 0.07 imp:pre:1p;ind:pre:1p; +dramatisé dramatiser ver m s 2.42 1.76 0.05 0.07 par:pas; +dramatisée dramatiser ver f s 2.42 1.76 0.01 0.07 par:pas; +dramatisés dramatiser ver m p 2.42 1.76 0.01 0.07 par:pas; +dramaturge dramaturge nom s 0.58 0.88 0.53 0.74 +dramaturges dramaturge nom p 0.58 0.88 0.05 0.14 +dramaturgie dramaturgie nom f s 0.26 0.07 0.26 0.07 +drame drame nom m s 14.87 39.93 13.48 32.5 +drames drame nom m p 14.87 39.93 1.39 7.43 +drap drap nom m s 19.22 74.12 3.69 33.18 +drapa draper ver 0.84 7.23 0 0.47 ind:pas:3s; +drapai draper ver 0.84 7.23 0 0.07 ind:pas:1s; +drapaient draper ver 0.84 7.23 0.14 0.07 ind:imp:3p; +drapait draper ver 0.84 7.23 0 0.68 ind:imp:3s; +drapant draper ver 0.84 7.23 0 0.14 par:pre; +drape draper ver 0.84 7.23 0.14 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +drapeau drapeau nom m s 19.69 37.64 14.66 23.31 +drapeaux drapeau nom m p 19.69 37.64 5.03 14.32 +drapelets drapelet nom m p 0 0.07 0 0.07 +drapent draper ver 0.84 7.23 0.11 0.14 ind:pre:3p; +draper draper ver 0.84 7.23 0.03 0.27 inf; +draperaient draper ver 0.84 7.23 0 0.07 cnd:pre:3p; +draperez draper ver 0.84 7.23 0.14 0 ind:fut:2p; +draperie draperie nom f s 0.02 3.31 0 1.42 +draperies draperie nom f p 0.02 3.31 0.02 1.89 +drapier drapier nom m s 0 0.41 0 0.27 +drapiers drapier adj m p 0 0.47 0 0.34 +draps drap nom m p 19.22 74.12 15.54 40.95 +drapèrent draper ver 0.84 7.23 0 0.07 ind:pas:3p; +drapé draper ver m s 0.84 7.23 0.16 1.22 par:pas; +drapée draper ver f s 0.84 7.23 0.13 2.16 par:pas; +drapées draper ver f p 0.84 7.23 0 1.01 par:pas; +drapés drapé adj m p 0.17 2.3 0.14 0.81 +drastique drastique adj s 0.5 0.07 0.43 0.07 +drastiquement drastiquement adv 0.02 0 0.02 0 +drastiques drastique adj f p 0.5 0.07 0.07 0 +drave drave nom f s 0 0.07 0 0.07 +draveurs draveur nom m p 0 0.07 0 0.07 +dreadlocks dreadlocks nom f p 0.11 0 0.11 0 +dream_team dream_team nom f s 0.07 0 0.07 0 +drelin drelin nom m s 0.43 0 0.43 0 +drepou drepou nom f s 0 0.07 0 0.07 +dressa dresser ver 17.88 99.86 0.18 9.73 ind:pas:3s; +dressage dressage nom m s 0.58 1.82 0.58 1.76 +dressages dressage nom m p 0.58 1.82 0 0.07 +dressai dresser ver 17.88 99.86 0.1 0.61 ind:pas:1s; +dressaient dresser ver 17.88 99.86 0.32 5.47 ind:imp:3p; +dressais dresser ver 17.88 99.86 0.08 0.47 ind:imp:1s;ind:imp:2s; +dressait dresser ver 17.88 99.86 0.19 13.85 ind:imp:3s; +dressant dresser ver 17.88 99.86 0.48 3.65 par:pre; +dresse dresser ver 17.88 99.86 4.76 13.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dressement dressement nom m s 0 0.07 0 0.07 +dressent dresser ver 17.88 99.86 0.77 4.93 ind:pre:3p; +dresser dresser ver 17.88 99.86 4.65 14.93 inf; +dressera dresser ver 17.88 99.86 0.37 0.54 ind:fut:3s; +dresserai dresser ver 17.88 99.86 0.15 0.07 ind:fut:1s; +dresseraient dresser ver 17.88 99.86 0.01 0.2 cnd:pre:3p; +dresserait dresser ver 17.88 99.86 0.02 0.34 cnd:pre:3s; +dresseras dresser ver 17.88 99.86 0.01 0 ind:fut:2s; +dresserons dresser ver 17.88 99.86 0.26 0.07 ind:fut:1p; +dresseront dresser ver 17.88 99.86 0.16 0.14 ind:fut:3p; +dresses dresser ver 17.88 99.86 0.23 0.27 ind:pre:2s; +dresseur dresseur nom m s 0.86 0.68 0.5 0.34 +dresseurs dresseur nom m p 0.86 0.68 0.32 0.27 +dresseuse dresseur nom f s 0.86 0.68 0.05 0.07 +dressez dresser ver 17.88 99.86 0.7 0.54 imp:pre:2p;ind:pre:2p; +dressing dressing nom m s 0.28 0 0.28 0 +dressing_room dressing_room nom m s 0.01 0 0.01 0 +dressions dresser ver 17.88 99.86 0 0.2 ind:imp:1p; +dressoir dressoir nom m s 0.01 0.47 0.01 0.34 +dressoirs dressoir nom m p 0.01 0.47 0 0.14 +dressons dresser ver 17.88 99.86 0.19 0.27 imp:pre:1p;ind:pre:1p; +dressât dresser ver 17.88 99.86 0 0.14 sub:imp:3s; +dressèrent dresser ver 17.88 99.86 0.04 1.15 ind:pas:3p; +dressé dresser ver m s 17.88 99.86 3.36 13.24 par:pas; +dressée dresser ver f s 17.88 99.86 0.31 7.23 par:pas; +dressées dressé adj f p 1.79 11.82 0.44 2.36 +dressés dresser ver m p 17.88 99.86 0.29 4.93 par:pas; +dreyfusard dreyfusard nom m s 0.27 0.2 0.14 0.07 +dreyfusards dreyfusard nom m p 0.27 0.2 0.14 0.14 +dreyfusisme dreyfusisme nom m s 0 0.07 0 0.07 +dribbla dribbler ver 0.81 0.34 0 0.07 ind:pas:3s; +dribblais dribbler ver 0.81 0.34 0.1 0.07 ind:imp:1s; +dribblait dribbler ver 0.81 0.34 0.1 0.07 ind:imp:3s; +dribble dribble nom m s 0.69 0.07 0.29 0.07 +dribbler dribbler ver 0.81 0.34 0.2 0.14 inf; +dribbles dribble nom m p 0.69 0.07 0.4 0 +dribbleur dribbleur nom m s 0 0.14 0 0.14 +dribblez dribbler ver 0.81 0.34 0.01 0 imp:pre:2p; +dribblé dribbler ver m s 0.81 0.34 0.29 0 par:pas; +drible dribler ver 0.25 0.07 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dribler dribler ver 0.25 0.07 0.1 0 inf; +drift drift nom m s 0.04 0.07 0.04 0.07 +drifter drifter nom m s 0.05 37.5 0.02 37.5 +drifters drifter nom m p 0.05 37.5 0.03 0 +drill drill nom m s 0.01 0.07 0.01 0.07 +drille drille nom m s 0.11 1.22 0.08 0.61 +drilles drille nom m p 0.11 1.22 0.04 0.61 +dring dring ono 0.32 0.61 0.32 0.61 +drink drink nom m s 0.92 0.88 0.89 0.41 +drinks drink nom m p 0.92 0.88 0.03 0.47 +drisse drisse nom f s 0.16 0.81 0.06 0.47 +drisses drisse nom f p 0.16 0.81 0.11 0.34 +drivait driver ver 0.24 0.61 0 0.14 ind:imp:3s; +drivant driver ver 0.24 0.61 0 0.07 par:pre; +drive drive nom m s 1.45 0.41 1.41 0.41 +drive_in drive_in nom m s 0.94 0 0.94 0 +driver driver nom m s 0.31 0.34 0.25 0.27 +drivers driver nom m p 0.31 0.34 0.06 0.07 +drives drive nom m p 1.45 0.41 0.04 0 +drivé driver ver m s 0.24 0.61 0 0.07 par:pas; +drivée driver ver f s 0.24 0.61 0.01 0.14 par:pas; +drogman drogman nom m s 0 0.27 0 0.2 +drogmans drogman nom m p 0 0.27 0 0.07 +droguaient droguer ver 13.15 3.85 0.19 0.07 ind:imp:3p; +droguais droguer ver 13.15 3.85 0.29 0 ind:imp:1s;ind:imp:2s; +droguait droguer ver 13.15 3.85 0.94 0.68 ind:imp:3s; +droguant droguer ver 13.15 3.85 0.06 0 par:pre; +drogue drogue nom f s 58.76 13.72 47.2 10.54 +droguent droguer ver 13.15 3.85 0.5 0.2 ind:pre:3p; +droguer droguer ver 13.15 3.85 2.44 0.74 inf; +droguerie droguerie nom f s 0.31 0.54 0.28 0.47 +drogueries droguerie nom f p 0.31 0.54 0.03 0.07 +drogues drogue nom f p 58.76 13.72 11.56 3.18 +droguet droguet nom m s 0 1.08 0 0.95 +droguets droguet nom m p 0 1.08 0 0.14 +droguez droguer ver 13.15 3.85 0.49 0.14 imp:pre:2p;ind:pre:2p; +droguiez droguer ver 13.15 3.85 0.05 0 ind:imp:2p; +droguiste droguiste nom s 0.17 0.61 0.16 0.41 +droguistes droguiste nom p 0.17 0.61 0.02 0.2 +drogué drogué nom m s 6.35 2.43 2.63 0.68 +droguée droguer ver f s 13.15 3.85 1.47 0.14 par:pas; +droguées drogué nom f p 6.35 2.43 0.25 0 +drogués drogué nom m p 6.35 2.43 2.2 1.35 +droicos droico nom m p 0 0.27 0 0.27 +droit droit nom m s 207.62 163.72 175.6 138.72 +droit_fil droit_fil nom m s 0 0.07 0 0.07 +droite droite nom f s 58.7 117.97 58.44 116.69 +droitement droitement adv 0.01 0.07 0.01 0.07 +droites droit adj f p 77.74 163.38 0.83 4.8 +droitier droitier adj m s 0.76 0.07 0.69 0 +droitiers droitier nom m p 0.35 0.2 0.14 0.14 +droitière droitier adj f s 0.76 0.07 0.06 0.07 +droits droit nom m p 207.62 163.72 32.01 25 +droiture droiture nom f s 1.33 1.76 1.33 1.76 +drolatique drolatique adj s 0.54 0.47 0.54 0.34 +drolatiques drolatique adj m p 0.54 0.47 0 0.14 +dromadaire dromadaire nom m s 0.44 1.22 0.44 0.68 +dromadaires dromadaire nom m p 0.44 1.22 0 0.54 +drome drome nom f s 0.02 0.07 0.01 0.07 +dromes drome nom f p 0.02 0.07 0.01 0 +drone drone nom m s 1.79 0 0.88 0 +drone_espion drone_espion nom m s 0.02 0 0.02 0 +drones drone nom m p 1.79 0 0.91 0 +dronte dronte nom m s 0.01 0.07 0.01 0.07 +drop drop nom m s 1.11 0 1.11 0 +drope droper ver 0 0.2 0 0.07 ind:pre:3s; +dropent droper ver 0 0.2 0 0.07 ind:pre:3p; +droppage droppage nom m s 0.04 0 0.04 0 +droppant dropper ver 0 0.27 0 0.07 par:pre; +droppe dropper ver 0 0.27 0 0.2 ind:pre:3s; +dropé droper ver m s 0 0.2 0 0.07 par:pas; +drosophile drosophile nom f s 0.1 0 0.06 0 +drosophiles drosophile nom f p 0.1 0 0.04 0 +dross dross nom m 0 0.07 0 0.07 +drossait drosser ver 0.01 0.41 0 0.07 ind:imp:3s; +drossant drosser ver 0.01 0.41 0 0.07 par:pre; +drossart drossart nom m s 0 0.07 0 0.07 +drosser drosser ver 0.01 0.41 0 0.07 inf; +drossé drosser ver m s 0.01 0.41 0.01 0.07 par:pas; +drossée drosser ver f s 0.01 0.41 0 0.07 par:pas; +drossés drosser ver m p 0.01 0.41 0 0.07 par:pas; +droséra droséra nom m s 0.01 0 0.01 0 +dru dru adj m s 0.62 9.53 0.13 2.84 +drue dru adj f s 0.62 9.53 0.15 3.58 +drues dru adj f p 0.62 9.53 0 0.68 +drugstore drugstore nom m s 1.71 1.89 1.58 1.82 +drugstores drugstore nom m p 1.71 1.89 0.14 0.07 +druide druide nom m s 1.18 4.86 0.89 2.84 +druides druide nom m p 1.18 4.86 0.28 2.03 +druidesse druidesse nom f s 0.02 0.2 0.02 0.14 +druidesses druidesse nom f p 0.02 0.2 0 0.07 +druidique druidique adj s 0.19 0.74 0.19 0.54 +druidiques druidique adj m p 0.19 0.74 0 0.2 +druidisme druidisme nom m s 0 0.54 0 0.54 +drumlin drumlin nom m s 0.11 0 0.11 0 +drummer drummer nom m s 0.17 0.07 0.17 0.07 +drums drums nom m p 0.04 0.07 0.04 0.07 +drus dru adj m p 0.62 9.53 0.34 2.43 +druze druze adj s 0.56 1.28 0.4 0.54 +druzes druze adj p 0.56 1.28 0.16 0.74 +dry dry adj m s 1.02 1.22 1.02 1.22 +dryade dryade nom f s 0.16 0.27 0 0.07 +dryades dryade nom f p 0.16 0.27 0.16 0.2 +drège drège nom f s 0.01 0 0.01 0 +drépanocytose drépanocytose nom f s 0.01 0 0.01 0 +drôle drôle adj s 144.48 95.07 138.46 85.47 +drôlement drôlement adv 10.79 24.86 10.79 24.86 +drôlerie drôlerie nom f s 0.14 3.72 0.14 3.45 +drôleries drôlerie nom f p 0.14 3.72 0.01 0.27 +drôles drôle adj p 144.48 95.07 6.02 9.59 +drôlesse drôlesse nom f s 0.21 0.2 0.21 0.07 +drôlesses drôlesse nom f p 0.21 0.2 0 0.14 +drôlet drôlet adj m s 0.01 0.41 0.01 0.07 +drôlette drôlet adj f s 0.01 0.41 0 0.34 +du du art_def m s 4394.7 6882.16 4394.7 6882.16 +dual dual adj m s 0.07 0 0.07 0 +dualisme dualisme nom m s 0.02 0.34 0.02 0.34 +dualiste dualiste adj m s 0.01 0 0.01 0 +dualité dualité nom f s 0.33 0.68 0.33 0.68 +dubitatif dubitatif adj m s 0.09 2.3 0.07 1.15 +dubitatifs dubitatif adj m p 0.09 2.3 0.01 0.2 +dubitation dubitation nom f s 0 0.14 0 0.07 +dubitations dubitation nom f p 0 0.14 0 0.07 +dubitative dubitatif adj f s 0.09 2.3 0 0.74 +dubitativement dubitativement adv 0 0.14 0 0.14 +dubitatives dubitatif adj f p 0.09 2.3 0 0.2 +duc duc nom m s 12.4 23.51 7.66 14.8 +ducal ducal adj m s 0.23 1.08 0.02 0.54 +ducale ducal adj f s 0.23 1.08 0.11 0.47 +ducales ducal adj f p 0.23 1.08 0 0.07 +ducasse ducasse nom f s 0.01 0.27 0.01 0.2 +ducasses ducasse nom f p 0.01 0.27 0 0.07 +ducat ducat nom m s 1 1.28 0.2 0.07 +ducaton ducaton nom m s 0 0.14 0 0.14 +ducats ducat nom m p 1 1.28 0.8 1.22 +ducaux ducal adj m p 0.23 1.08 0.1 0 +duce duce nom m s 2.21 2.97 2.21 2.91 +duces duce nom m p 2.21 2.97 0 0.07 +duchesse duc nom f s 12.4 23.51 3.99 6.15 +duchesses duc nom f p 12.4 23.51 0.06 0.95 +duchnoque duchnoque nom s 0.02 0.07 0.02 0.07 +duché duché nom m s 0.06 0.14 0.06 0.14 +ducon ducon nom m s 6.86 1.01 6.86 1.01 +ducs duc nom m p 12.4 23.51 0.69 1.62 +duc_d_albe duc_d_albe nom m p 0 0.07 0 0.07 +ductile ductile adj s 0.01 0.27 0.01 0.27 +dudit dudit pre 0.16 1.08 0.16 1.08 +due devoir ver_sup f s 3232.57 1318.18 3.95 5.95 par:pas; +duel duel nom m s 7.54 5.95 6.17 4.93 +duelliste duelliste nom s 0.21 0.14 0.2 0 +duellistes duelliste nom p 0.21 0.14 0.01 0.14 +duels duel nom m p 7.54 5.95 1.37 1.01 +dues devoir ver_sup f p 3232.57 1318.18 1.94 1.55 par:pas; +duettistes duettiste nom p 0.06 0.68 0.06 0.68 +duffel_coat duffel_coat nom m s 0.01 0.07 0.01 0.07 +duffle_coat duffle_coat nom m s 0 0.34 0 0.27 +duffle_coat duffle_coat nom m p 0 0.34 0 0.07 +dugong dugong nom m s 0.01 0.27 0.01 0.2 +dugongs dugong nom m p 0.01 0.27 0 0.07 +duit duit nom m s 0 0.07 0 0.07 +dulcifiant dulcifier ver 0 0.14 0 0.14 par:pre; +dulcinée dulcinée nom f s 0.42 0.47 0.42 0.47 +dum_dum dum_dum adj 0.2 0.27 0.2 0.27 +dumper dumper nom m s 0.01 0 0.01 0 +dumping dumping nom m s 0 0.07 0 0.07 +dundee dundee nom m s 0 0.07 0 0.07 +dune dune nom f s 3.96 12.84 1.55 3.45 +dunes dune nom f p 3.96 12.84 2.41 9.39 +dunette dunette nom f s 0.07 0.68 0.07 0.61 +dunettes dunette nom f p 0.07 0.68 0 0.07 +dunkerque dunkerque nom m s 0 0.14 0 0.14 +duo duo nom m s 2.58 2.5 2.49 2.09 +duodi duodi nom m s 0 0.07 0 0.07 +duodécimale duodécimal adj f s 0 0.07 0 0.07 +duodénal duodénal adj m s 0.03 0 0.01 0 +duodénale duodénal adj f s 0.03 0 0.01 0 +duodénum duodénum nom m s 0.17 0.27 0.17 0.27 +duopole duopole nom m s 0.01 0 0.01 0 +duos duo nom m p 2.58 2.5 0.09 0.41 +dupait duper ver 4.77 2.7 0.03 0.2 ind:imp:3s; +dupant duper ver 4.77 2.7 0.04 0.07 par:pre; +dupe dupe adj m s 2.71 8.51 2.37 7.36 +dupent duper ver 4.77 2.7 0.06 0 ind:pre:3p; +duper duper ver 4.77 2.7 1.96 1.35 inf; +dupera duper ver 4.77 2.7 0.04 0 ind:fut:3s; +duperas duper ver 4.77 2.7 0.03 0 ind:fut:2s; +duperie duperie nom f s 0.43 0.88 0.26 0.81 +duperies duperie nom f p 0.43 0.88 0.17 0.07 +dupes dupe nom f p 1.01 1.28 0.66 0.41 +dupeur dupeur nom m s 0.01 0 0.01 0 +dupez duper ver 4.77 2.7 0.14 0 imp:pre:2p;ind:pre:2p; +duplex duplex nom m 0.41 1.35 0.41 1.35 +duplicata duplicata nom m 0.08 0.41 0.08 0.41 +duplicate duplicate nom m s 0.03 0 0.03 0 +duplicateur duplicateur nom m s 0.23 0.14 0.03 0.14 +duplicateurs duplicateur nom m p 0.23 0.14 0.21 0 +duplication duplication nom f s 0.19 0.47 0.19 0.47 +duplice duplice nom f s 0.01 0.14 0.01 0.14 +duplicité duplicité nom f s 0.3 1.28 0.3 1.28 +dupliquer dupliquer ver 0.31 0 0.13 0 inf; +dupliqué dupliquer ver m s 0.31 0 0.13 0 par:pas; +dupliqués dupliquer ver m p 0.31 0 0.05 0 par:pas; +dupons duper ver 4.77 2.7 0.01 0.07 ind:pre:1p; +dupé duper ver m s 4.77 2.7 1.15 0.34 par:pas; +dupée duper ver f s 4.77 2.7 0.18 0.34 par:pas; +dupés duper ver m p 4.77 2.7 0.81 0.07 par:pas; +duquel duquel pro_rel m s 2.36 30.2 1.92 22.57 +dur dur adj m s 187.84 146.69 145.55 80.68 +dura durer ver 74.39 101.62 1.56 12.7 ind:pas:3s; +durabilité durabilité nom f s 0.01 0 0.01 0 +durable durable adj s 2.13 5.95 1.61 4.73 +durablement durablement adv 0 0.74 0 0.74 +durables durable adj p 2.13 5.95 0.53 1.22 +duraient durer ver 74.39 101.62 0.43 2.03 ind:imp:3p; +duraille duraille adj s 0.02 2.43 0 2.36 +durailles duraille adj m p 0.02 2.43 0.02 0.07 +durait durer ver 74.39 101.62 1.04 8.92 ind:imp:3s; +durale dural adj f s 0.01 0 0.01 0 +duralumin duralumin nom m s 0 0.27 0 0.27 +durant durant pre 34.15 65.95 34.15 65.95 +durassent durer ver 74.39 101.62 0 0.07 sub:imp:3p; +durci durci adj m s 0.22 4.12 0.16 1.55 +durcie durcir ver f s 1.79 13.99 0.13 0.95 par:pas; +durcies durcir ver f p 1.79 13.99 0 0.47 par:pas; +durcir durcir ver 1.79 13.99 0.73 2.23 inf; +durciraient durcir ver 1.79 13.99 0 0.07 cnd:pre:3p; +durcirent durcir ver 1.79 13.99 0.14 0.07 ind:pas:3p; +durcis durcir ver m p 1.79 13.99 0.09 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +durcissaient durcir ver 1.79 13.99 0 0.2 ind:imp:3p; +durcissais durcir ver 1.79 13.99 0 0.14 ind:imp:1s; +durcissait durcir ver 1.79 13.99 0.02 2.3 ind:imp:3s; +durcissant durcir ver 1.79 13.99 0.01 0.54 par:pre; +durcisse durcir ver 1.79 13.99 0.05 0.14 sub:pre:3s; +durcissement durcissement nom m s 0.01 0.74 0.01 0.74 +durcissent durcir ver 1.79 13.99 0.17 0.34 ind:pre:3p; +durcisseur durcisseur nom m s 0.03 0 0.03 0 +durcit durcir ver 1.79 13.99 0.3 3.65 ind:pre:3s;ind:pas:3s; +dure dur adj f s 187.84 146.69 26.16 33.65 +dure_mère dure_mère nom f s 0.02 0.07 0.02 0.07 +durement durement adv 3.27 12.97 3.27 12.97 +durent devoir ver_sup 3232.57 1318.18 2.98 6.35 ind:pas:3p; +durer durer ver 74.39 101.62 20.59 24.05 inf; +durera durer ver 74.39 101.62 8.35 4.73 ind:fut:3s; +durerai durer ver 74.39 101.62 0.19 0.2 ind:fut:1s; +dureraient durer ver 74.39 101.62 0.04 0.74 cnd:pre:3p; +durerais durer ver 74.39 101.62 0.02 0 cnd:pre:1s;cnd:pre:2s; +durerait durer ver 74.39 101.62 1.16 3.31 cnd:pre:3s; +dureras durer ver 74.39 101.62 0.01 0 ind:fut:2s; +durerez durer ver 74.39 101.62 0.06 0 ind:fut:2p; +dureront durer ver 74.39 101.62 0.82 0.54 ind:fut:3p; +dures dur adj f p 187.84 146.69 4.05 11.89 +dureté dureté nom f s 1.56 12.23 1.56 11.35 +duretés dureté nom f p 1.56 12.23 0 0.88 +durham durham nom m s 0.09 0 0.09 0 +durian durian nom m s 2.21 0 2.21 0 +durillon durillon nom m s 0.05 1.01 0 0.41 +durillons durillon nom m p 0.05 1.01 0.05 0.61 +durit durit nom f s 0.04 0 0.04 0 +durite durite nom f s 0.5 0.07 0.47 0.07 +durites durite nom f p 0.5 0.07 0.03 0 +durs dur adj m p 187.84 146.69 12.08 20.47 +durât durer ver 74.39 101.62 0 0.74 sub:imp:3s; +durèrent durer ver 74.39 101.62 0.04 1.35 ind:pas:3p; +duré durer ver m s 74.39 101.62 12.57 13.85 par:pas; +durée durée nom f s 6.86 19.39 6.84 19.12 +durées durée nom f p 6.86 19.39 0.02 0.27 +dus devoir ver_sup m p 3232.57 1318.18 1.57 12.77 ind:pas:1s;par:pas; +dusse devoir ver_sup 3232.57 1318.18 0.28 0.2 sub:imp:1s; +dussent devoir ver_sup 3232.57 1318.18 0.05 0.41 sub:imp:3p; +dusses devoir ver_sup 3232.57 1318.18 0 0.07 sub:imp:2s; +dussiez devoir ver_sup 3232.57 1318.18 0.03 0.2 sub:imp:2p; +dussions devoir ver_sup 3232.57 1318.18 0.03 0.2 sub:imp:1p; +dut devoir ver_sup 3232.57 1318.18 1.91 44.19 ind:pas:3s; +duvet duvet nom m s 1.7 8.85 1.58 7.57 +duveteuse duveteux adj f s 0.12 1.76 0.05 0.61 +duveteuses duveteux adj f p 0.12 1.76 0.02 0.41 +duveteux duveteux adj m s 0.12 1.76 0.05 0.74 +duvets duvet nom m p 1.7 8.85 0.12 1.28 +duveté duveté adj m s 0 0.47 0 0.14 +duvetée duveté adj f s 0 0.47 0 0.2 +duvetées duveter ver f p 0 0.34 0 0.14 par:pas; +duvetés duveté adj m p 0 0.47 0 0.07 +duègne duègne nom f s 0.03 0.81 0.03 0.81 +dyke dyke nom m s 0.16 0.07 0.16 0 +dykes dyke nom m p 0.16 0.07 0 0.07 +dynamique dynamique adj s 2.68 2.09 1.97 1.69 +dynamiques dynamique adj p 2.68 2.09 0.71 0.41 +dynamiser dynamiser ver 0.07 0.2 0.02 0 inf; +dynamisera dynamiser ver 0.07 0.2 0.01 0 ind:fut:3s; +dynamiserait dynamiser ver 0.07 0.2 0.01 0 cnd:pre:3s; +dynamisez dynamiser ver 0.07 0.2 0.01 0 imp:pre:2p; +dynamisme dynamisme nom m s 0.54 1.82 0.54 1.82 +dynamisé dynamiser ver m s 0.07 0.2 0.01 0 par:pas; +dynamisée dynamiser ver f s 0.07 0.2 0 0.07 par:pas; +dynamisées dynamiser ver f p 0.07 0.2 0 0.14 par:pas; +dynamitage dynamitage nom m s 0.07 0 0.07 0 +dynamitait dynamiter ver 0.9 0.47 0 0.07 ind:imp:3s; +dynamitant dynamiter ver 0.9 0.47 0.01 0.07 par:pre; +dynamite dynamite nom f s 8.12 2.5 8.12 2.5 +dynamiter dynamiter ver 0.9 0.47 0.43 0.07 inf; +dynamiteur dynamiteur nom m s 0.05 0.34 0.04 0.14 +dynamiteurs dynamiteur nom m p 0.05 0.34 0.01 0.2 +dynamitez dynamiter ver 0.9 0.47 0.03 0 imp:pre:2p; +dynamitons dynamiter ver 0.9 0.47 0.02 0 imp:pre:1p; +dynamité dynamiter ver m s 0.9 0.47 0.09 0.2 par:pas; +dynamitée dynamiter ver f s 0.9 0.47 0.12 0 par:pas; +dynamo dynamo nom f s 0.2 0.95 0.19 0.54 +dynamomètre dynamomètre nom m s 0.03 0.07 0.03 0.07 +dynamométrique dynamométrique adj f s 0.01 0 0.01 0 +dynamos dynamo nom f p 0.2 0.95 0.01 0.41 +dynastie dynastie nom f s 2.31 3.65 2.29 3.04 +dynasties dynastie nom f p 2.31 3.65 0.02 0.61 +dynastique dynastique adj f s 0.01 0.07 0.01 0.07 +dynes dyne nom f p 0.01 0.07 0.01 0.07 +dyscinésie dyscinésie nom f s 0.01 0 0.01 0 +dyscrasie dyscrasie nom f s 0.01 0 0.01 0 +dysenterie dysenterie nom f s 0.8 1.49 0.8 1.42 +dysenteries dysenterie nom f p 0.8 1.49 0 0.07 +dysentérique dysentérique adj s 0 0.27 0 0.07 +dysentériques dysentérique adj p 0 0.27 0 0.2 +dysfonction dysfonction nom f s 0.09 0 0.09 0 +dysfonctionnement dysfonctionnement nom m s 0.77 0 0.57 0 +dysfonctionnements dysfonctionnement nom m p 0.77 0 0.2 0 +dyslexie dyslexie nom f s 0.12 0.07 0.12 0.07 +dyslexique dyslexique adj m s 0.46 0.07 0.46 0.07 +dysménorrhée dysménorrhée nom f s 0.01 0 0.01 0 +dyspepsie dyspepsie nom f s 0.05 0.14 0.05 0.14 +dyspepsique dyspepsique adj s 0.01 0.07 0.01 0.07 +dyspeptique dyspeptique adj s 0.02 0.07 0.02 0.07 +dysphonie dysphonie nom f s 0.01 0 0.01 0 +dysphorie dysphorie nom f s 0.02 0 0.02 0 +dysplasie dysplasie nom f s 0.06 0.07 0.06 0.07 +dyspnée dyspnée nom f s 0.05 0 0.05 0 +dyspnéique dyspnéique adj f s 0 0.14 0 0.07 +dyspnéiques dyspnéique adj f p 0 0.14 0 0.07 +dysthymie dysthymie nom f s 0.1 0.07 0.1 0.07 +dystocie dystocie nom f s 0.03 0 0.03 0 +dystrophie dystrophie nom f s 0.05 0 0.05 0 +dysurie dysurie nom f s 0.01 0 0.01 0 +dytique dytique nom m s 0 0.07 0 0.07 +dèche dèche nom f s 0.39 1.96 0.38 1.89 +dèches dèche nom f p 0.39 1.96 0.01 0.07 +dèmes dème nom m p 0 0.14 0 0.14 +dès dès pre 143.72 275.07 143.72 275.07 +dé dé nom m s 23.36 11.55 5.74 3.65 +déambula déambuler ver 1.84 7.7 0.01 0.27 ind:pas:3s; +déambulai déambuler ver 1.84 7.7 0.02 0 ind:pas:1s; +déambulaient déambuler ver 1.84 7.7 0.01 0.68 ind:imp:3p; +déambulais déambuler ver 1.84 7.7 0.2 0.2 ind:imp:1s; +déambulait déambuler ver 1.84 7.7 0.1 1.22 ind:imp:3s; +déambulant déambuler ver 1.84 7.7 0.2 1.15 par:pre; +déambulante déambulant adj f s 0.01 0.14 0 0.14 +déambulateur déambulateur nom m s 0.13 0 0.13 0 +déambulation déambulation nom f s 0.03 1.42 0.01 0.54 +déambulations déambulation nom f p 0.03 1.42 0.01 0.88 +déambulatoire déambulatoire adj m s 0 0.14 0 0.07 +déambulatoires déambulatoire adj m p 0 0.14 0 0.07 +déambule déambuler ver 1.84 7.7 0.52 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déambulent déambuler ver 1.84 7.7 0.1 0.47 ind:pre:3p; +déambuler déambuler ver 1.84 7.7 0.29 1.55 inf; +déambulerai déambuler ver 1.84 7.7 0.01 0 ind:fut:1s; +déambulez déambuler ver 1.84 7.7 0.04 0.07 imp:pre:2p;ind:pre:2p; +déambulions déambuler ver 1.84 7.7 0.14 0.14 ind:imp:1p; +déambulons déambuler ver 1.84 7.7 0 0.2 ind:pre:1p; +déambulèrent déambuler ver 1.84 7.7 0 0.2 ind:pas:3p; +déambulé déambuler ver m s 1.84 7.7 0.22 0.34 par:pas; +débagoulage débagoulage nom m s 0 0.07 0 0.07 +débagoule débagouler ver 0.01 0.68 0 0.34 ind:pre:1s;ind:pre:3s;sub:pre:3s; +débagouler débagouler ver 0.01 0.68 0.01 0.2 inf; +débagoulerait débagouler ver 0.01 0.68 0 0.07 cnd:pre:3s; +débagoules débagouler ver 0.01 0.68 0 0.07 ind:pre:2s; +déballa déballer ver 3.59 6.69 0 0.68 ind:pas:3s; +déballage déballage nom m s 0.32 1.76 0.3 1.62 +déballages déballage nom m p 0.32 1.76 0.01 0.14 +déballai déballer ver 3.59 6.69 0 0.2 ind:pas:1s; +déballaient déballer ver 3.59 6.69 0 0.34 ind:imp:3p; +déballais déballer ver 3.59 6.69 0.02 0.07 ind:imp:1s;ind:imp:2s; +déballait déballer ver 3.59 6.69 0.02 0.81 ind:imp:3s; +déballant déballer ver 3.59 6.69 0.02 0.14 par:pre; +déballe déballer ver 3.59 6.69 0.67 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déballent déballer ver 3.59 6.69 0.04 0.07 ind:pre:3p; +déballer déballer ver 3.59 6.69 1.63 1.49 inf; +déballera déballer ver 3.59 6.69 0.02 0 ind:fut:3s; +déballez déballer ver 3.59 6.69 0.35 0.07 imp:pre:2p;ind:pre:2p; +déballonnage déballonnage nom m s 0 0.07 0 0.07 +déballonner déballonner ver 0.01 0.74 0 0.41 inf; +déballonnerais déballonner ver 0.01 0.74 0.01 0 cnd:pre:2s; +déballonneront déballonner ver 0.01 0.74 0 0.07 ind:fut:3p; +déballonné déballonner ver m s 0.01 0.74 0 0.27 par:pas; +déballons déballer ver 3.59 6.69 0.04 0 imp:pre:1p;ind:pre:1p; +déballèrent déballer ver 3.59 6.69 0 0.2 ind:pas:3p; +déballé déballer ver m s 3.59 6.69 0.69 0.95 par:pas; +déballée déballer ver f s 3.59 6.69 0.04 0.14 par:pas; +déballées déballer ver f p 3.59 6.69 0.05 0.07 par:pas; +déballés déballer ver m p 3.59 6.69 0.01 0.07 par:pas; +débanda débander ver 0.81 2.43 0 0.07 ind:pas:3s; +débandade débandade nom f s 0.58 3.51 0.58 3.51 +débandaient débander ver 0.81 2.43 0.01 0.14 ind:imp:3p; +débandais débander ver 0.81 2.43 0 0.07 ind:imp:1s; +débandait débander ver 0.81 2.43 0 0.07 ind:imp:3s; +débande débander ver 0.81 2.43 0.35 0.27 ind:pre:1s;ind:pre:3s; +débandent débander ver 0.81 2.43 0.03 0.07 ind:pre:3p; +débander débander ver 0.81 2.43 0.28 0.95 inf; +débandera débander ver 0.81 2.43 0 0.07 ind:fut:3s; +débanderaient débander ver 0.81 2.43 0.01 0 cnd:pre:3p; +débandez débander ver 0.81 2.43 0 0.14 ind:pre:2p; +débandèrent débander ver 0.81 2.43 0 0.07 ind:pas:3p; +débandé débander ver m s 0.81 2.43 0.13 0.2 par:pas; +débandées débander ver f p 0.81 2.43 0 0.07 par:pas; +débandés débander ver m p 0.81 2.43 0 0.27 par:pas; +débaptiser débaptiser ver 0 0.27 0 0.07 inf; +débaptiserais débaptiser ver 0 0.27 0 0.07 cnd:pre:1s; +débaptisé débaptiser ver m s 0 0.27 0 0.07 par:pas; +débaptisée débaptiser ver f s 0 0.27 0 0.07 par:pas; +débarbot débarbot nom m s 0 0.2 0 0.14 +débarbots débarbot nom m p 0 0.2 0 0.07 +débarbouilla débarbouiller ver 0.81 2.77 0 0.14 ind:pas:3s; +débarbouillait débarbouiller ver 0.81 2.77 0 0.2 ind:imp:3s; +débarbouillant débarbouiller ver 0.81 2.77 0 0.07 par:pre; +débarbouille débarbouiller ver 0.81 2.77 0.28 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarbouiller débarbouiller ver 0.81 2.77 0.37 1.42 inf; +débarbouillette débarbouillette nom f s 0.02 0 0.02 0 +débarbouillé débarbouiller ver m s 0.81 2.77 0.04 0.14 par:pas; +débarbouillée débarbouiller ver f s 0.81 2.77 0.13 0.27 par:pas; +débarbouillés débarbouiller ver m p 0.81 2.77 0 0.07 par:pas; +débarcadère débarcadère nom m s 0.43 1.62 0.43 1.55 +débarcadères débarcadère nom m p 0.43 1.62 0 0.07 +débardage débardage nom m s 0 0.2 0 0.14 +débardages débardage nom m p 0 0.2 0 0.07 +débardaient débarder ver 0 0.41 0 0.07 ind:imp:3p; +débarder débarder ver 0 0.41 0 0.14 inf; +débardeur débardeur nom m s 0.77 1.42 0.69 0.68 +débardeurs débardeur nom m p 0.77 1.42 0.08 0.74 +débardée débarder ver f s 0 0.41 0 0.2 par:pas; +débaroule débarouler ver 0 0.14 0 0.07 ind:pre:3s; +débaroulent débarouler ver 0 0.14 0 0.07 ind:pre:3p; +débarqua débarquer ver 25.66 34.39 0.46 1.49 ind:pas:3s; +débarquai débarquer ver 25.66 34.39 0 0.47 ind:pas:1s; +débarquaient débarquer ver 25.66 34.39 0.15 1.62 ind:imp:3p; +débarquais débarquer ver 25.66 34.39 0.04 0.27 ind:imp:1s;ind:imp:2s; +débarquait débarquer ver 25.66 34.39 0.51 2.97 ind:imp:3s; +débarquant débarquer ver 25.66 34.39 0.39 2.23 par:pre; +débarque débarquer ver 25.66 34.39 6.18 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarquement débarquement nom m s 2.79 15 2.74 14.12 +débarquements débarquement nom m p 2.79 15 0.05 0.88 +débarquent débarquer ver 25.66 34.39 1.84 2.09 ind:pre:3p; +débarquer débarquer ver 25.66 34.39 5.9 7.36 ind:pre:2p;inf; +débarquera débarquer ver 25.66 34.39 0.37 0.27 ind:fut:3s; +débarquerai débarquer ver 25.66 34.39 0.07 0.07 ind:fut:1s; +débarqueraient débarquer ver 25.66 34.39 0.02 0.07 cnd:pre:3p; +débarquerait débarquer ver 25.66 34.39 0.03 0.2 cnd:pre:3s; +débarqueras débarquer ver 25.66 34.39 0.02 0 ind:fut:2s; +débarquerez débarquer ver 25.66 34.39 0.17 0.07 ind:fut:2p; +débarquerons débarquer ver 25.66 34.39 0.4 0.07 ind:fut:1p; +débarqueront débarquer ver 25.66 34.39 0.17 0.27 ind:fut:3p; +débarques débarquer ver 25.66 34.39 1.25 0.34 ind:pre:2s; +débarquez débarquer ver 25.66 34.39 0.88 0.27 imp:pre:2p;ind:pre:2p; +débarquiez débarquer ver 25.66 34.39 0.02 0.14 ind:imp:2p; +débarquions débarquer ver 25.66 34.39 0.11 0.27 ind:imp:1p; +débarquons débarquer ver 25.66 34.39 0.16 0.27 imp:pre:1p;ind:pre:1p; +débarquâmes débarquer ver 25.66 34.39 0 0.41 ind:pas:1p; +débarquèrent débarquer ver 25.66 34.39 0.03 0.95 ind:pas:3p; +débarqué débarquer ver m s 25.66 34.39 6.04 6.62 par:pas; +débarquée débarqué adj f s 0.13 1.15 0.06 0.07 +débarquées débarquer ver f p 25.66 34.39 0.14 0.27 par:pas; +débarqués débarquer ver m p 25.66 34.39 0.27 0.88 par:pas; +débarra débarrer ver 0.01 0.2 0.01 0 ind:pas:3s; +débarras débarras nom m 2.79 6.96 2.79 6.96 +débarrassa débarrasser ver 61.77 48.92 0.01 2.5 ind:pas:3s; +débarrassai débarrasser ver 61.77 48.92 0 0.07 ind:pas:1s; +débarrassaient débarrasser ver 61.77 48.92 0.02 0.47 ind:imp:3p; +débarrassais débarrasser ver 61.77 48.92 0.07 0.27 ind:imp:1s;ind:imp:2s; +débarrassait débarrasser ver 61.77 48.92 0.43 1.82 ind:imp:3s; +débarrassant débarrasser ver 61.77 48.92 0.14 1.42 par:pre; +débarrasse débarrasser ver 61.77 48.92 11.42 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarrassent débarrasser ver 61.77 48.92 0.33 0.54 ind:pre:3p; +débarrasser débarrasser ver 61.77 48.92 32.37 23.58 inf;; +débarrassera débarrasser ver 61.77 48.92 1.17 0.34 ind:fut:3s; +débarrasserai débarrasser ver 61.77 48.92 0.54 0.47 ind:fut:1s; +débarrasserais débarrasser ver 61.77 48.92 0.25 0.2 cnd:pre:1s;cnd:pre:2s; +débarrasserait débarrasser ver 61.77 48.92 0.07 0.27 cnd:pre:3s; +débarrasseras débarrasser ver 61.77 48.92 0.53 0 ind:fut:2s; +débarrasserez débarrasser ver 61.77 48.92 0.16 0.07 ind:fut:2p; +débarrasserons débarrasser ver 61.77 48.92 0.08 0 ind:fut:1p; +débarrasseront débarrasser ver 61.77 48.92 0.21 0.2 ind:fut:3p; +débarrasses débarrasser ver 61.77 48.92 0.91 0.07 ind:pre:2s;sub:pre:2s; +débarrassez débarrasser ver 61.77 48.92 3.03 0.54 imp:pre:2p;ind:pre:2p; +débarrassiez débarrasser ver 61.77 48.92 0.24 0 ind:imp:2p; +débarrassons débarrasser ver 61.77 48.92 0.79 0 imp:pre:1p;ind:pre:1p; +débarrassât débarrasser ver 61.77 48.92 0 0.07 sub:imp:3s; +débarrassèrent débarrasser ver 61.77 48.92 0.1 0.27 ind:pas:3p; +débarrassé débarrasser ver m s 61.77 48.92 5.64 6.62 par:pas; +débarrassée débarrasser ver f s 61.77 48.92 1.72 2.57 par:pas; +débarrassées débarrasser ver f p 61.77 48.92 0.26 0.34 par:pas; +débarrassés débarrasser ver m p 61.77 48.92 1.3 2.09 par:pas; +débarrer débarrer ver 0.01 0.2 0 0.07 inf; +débarrons débarrer ver 0.01 0.2 0 0.07 imp:pre:1p; +débat débat nom m s 10.7 15.81 7.77 9.46 +débats débat nom m p 10.7 15.81 2.93 6.35 +débattaient débattre ver 8.63 26.42 0.02 0.61 ind:imp:3p; +débattais débattre ver 8.63 26.42 0.02 0.88 ind:imp:1s;ind:imp:2s; +débattait débattre ver 8.63 26.42 0.51 6.42 ind:imp:3s; +débattant débattre ver 8.63 26.42 0.08 1.35 par:pre; +débatte débattre ver 8.63 26.42 0.01 0.07 sub:pre:3s; +débattent débattre ver 8.63 26.42 0.24 0.74 ind:pre:3p; +débatteur débatteur nom m s 0 0.07 0 0.07 +débattez débattre ver 8.63 26.42 0.22 0 imp:pre:2p;ind:pre:2p; +débattiez débattre ver 8.63 26.42 0.01 0.07 ind:imp:2p; +débattions débattre ver 8.63 26.42 0.01 0.2 ind:imp:1p; +débattirent débattre ver 8.63 26.42 0 0.14 ind:pas:3p; +débattis débattre ver 8.63 26.42 0 0.68 ind:pas:1s; +débattit débattre ver 8.63 26.42 0.01 1.28 ind:pas:3s; +débattons débattre ver 8.63 26.42 0.33 0.27 imp:pre:1p;ind:pre:1p; +débattra débattre ver 8.63 26.42 0.01 0.07 ind:fut:3s; +débattraient débattre ver 8.63 26.42 0 0.07 cnd:pre:3p; +débattrais débattre ver 8.63 26.42 0.02 0.07 cnd:pre:1s; +débattrait débattre ver 8.63 26.42 0.02 0.34 cnd:pre:3s; +débattre débattre ver 8.63 26.42 2.64 5.27 inf; +débattrons débattre ver 8.63 26.42 0.17 0.07 ind:fut:1p; +débattu débattre ver m s 8.63 26.42 1.05 1.62 par:pas; +débattue débattre ver f s 8.63 26.42 0.73 0.95 par:pas; +débattues débattre ver f p 8.63 26.42 0.01 0.2 par:pas; +débattus débattre ver m p 8.63 26.42 0.07 0.34 par:pas; +débattît débattre ver 8.63 26.42 0 0.07 sub:imp:3s; +débauchais débaucher ver 0.8 1.69 0 0.07 ind:imp:1s; +débauchait débaucher ver 0.8 1.69 0 0.07 ind:imp:3s; +débauchant débaucher ver 0.8 1.69 0 0.07 par:pre; +débauche débauche nom f s 2.87 9.39 2.72 7.16 +débaucher débaucher ver 0.8 1.69 0.19 0.61 inf; +débauches débauche nom f p 2.87 9.39 0.14 2.23 +débaucheur débaucheur nom m s 0.02 0 0.01 0 +débaucheurs débaucheur nom m p 0.02 0 0.01 0 +débauché débauché nom m s 1.09 1.35 0.62 0.74 +débauchée débauché nom f s 1.09 1.35 0.24 0 +débauchées débauché nom f p 1.09 1.35 0.11 0 +débauchés débauché nom m p 1.09 1.35 0.12 0.61 +débecquetait débecqueter ver 0 0.07 0 0.07 ind:imp:3s; +débectage débectage nom m s 0 0.07 0 0.07 +débectait débecter ver 0.46 1.89 0 0.2 ind:imp:3s; +débectance débectance nom f s 0 0.2 0 0.2 +débectant débecter ver 0.46 1.89 0.04 0.14 par:pre; +débecte débecter ver 0.46 1.89 0.23 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débectent débecter ver 0.46 1.89 0.01 0.14 ind:pre:3p; +débecter débecter ver 0.46 1.89 0.01 0 inf; +débecterais débecter ver 0.46 1.89 0 0.07 cnd:pre:1s; +débectez débecter ver 0.46 1.89 0.16 0 ind:pre:2p; +débecté débecter ver m s 0.46 1.89 0 0.14 par:pas; +débectée débecter ver f s 0.46 1.89 0 0.2 par:pas; +débectés débecter ver m p 0.46 1.89 0 0.07 par:pas; +débiffé débiffer ver m s 0 0.07 0 0.07 par:pas; +débile débile adj s 21.09 4.66 17.8 3.11 +débilement débilement adv 0.02 0 0.02 0 +débiles débile nom p 11.99 2.91 3.66 1.55 +débilitaient débiliter ver 0 0.54 0 0.07 ind:imp:3p; +débilitant débilitant adj m s 0.16 0.27 0.04 0.14 +débilitante débilitant adj f s 0.16 0.27 0.05 0.14 +débilitantes débilitant adj f p 0.16 0.27 0.06 0 +débilitation débilitation nom f s 0 0.14 0 0.14 +débilite débiliter ver 0 0.54 0 0.07 ind:pre:3s; +débilité débilité nom f s 0.34 0.88 0.27 0.74 +débilitée débiliter ver f s 0 0.54 0 0.07 par:pas; +débilités débilité nom f p 0.34 0.88 0.08 0.14 +débiller débiller ver 0 0.07 0 0.07 inf; +débinait débiner ver 2.35 3.18 0 0.14 ind:imp:3s; +débine débiner ver 2.35 3.18 0.98 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débinent débiner ver 2.35 3.18 0.39 0.2 ind:pre:3p; +débiner débiner ver 2.35 3.18 0.27 1.35 inf; +débinera débiner ver 2.35 3.18 0 0.07 ind:fut:3s; +débinerai débiner ver 2.35 3.18 0.02 0 ind:fut:1s; +débinerait débiner ver 2.35 3.18 0.02 0.07 cnd:pre:3s; +débineras débiner ver 2.35 3.18 0.01 0 ind:fut:2s; +débines débiner ver 2.35 3.18 0.27 0.07 ind:pre:2s; +débineurs débineur nom m p 0 0.14 0 0.07 +débineuses débineur nom f p 0 0.14 0 0.07 +débinez débiner ver 2.35 3.18 0.02 0.14 imp:pre:2p;ind:pre:2p; +débiné débiner ver m s 2.35 3.18 0.26 0.14 par:pas; +débinées débiner ver f p 2.35 3.18 0 0.07 par:pas; +débinés débiner ver m p 2.35 3.18 0.1 0.07 par:pas; +débit débit nom m s 1.24 6.35 1.1 5.27 +débita débiter ver 1.87 14.46 0 0.54 ind:pas:3s; +débitage débitage nom m s 0 0.07 0 0.07 +débitai débiter ver 1.87 14.46 0 0.2 ind:pas:1s; +débitaient débiter ver 1.87 14.46 0.01 0.54 ind:imp:3p; +débitais débiter ver 1.87 14.46 0 0.2 ind:imp:1s; +débitait débiter ver 1.87 14.46 0.04 2.5 ind:imp:3s; +débitant débiter ver 1.87 14.46 0.04 1.01 par:pre; +débitants débitant nom m p 0 0.27 0 0.07 +débite débiter ver 1.87 14.46 0.34 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débitent débiter ver 1.87 14.46 0.14 0.2 ind:pre:3p; +débiter débiter ver 1.87 14.46 0.82 3.45 inf; +débitera débiter ver 1.87 14.46 0 0.2 ind:fut:3s; +débiterai débiter ver 1.87 14.46 0.01 0.07 ind:fut:1s; +débiterait débiter ver 1.87 14.46 0 0.14 cnd:pre:3s; +débites débiter ver 1.87 14.46 0.02 0.14 ind:pre:2s; +débiteur débiteur nom m s 1.28 0.61 0.75 0.27 +débiteurs débiteur nom m p 1.28 0.61 0.54 0.34 +débitez débiter ver 1.87 14.46 0.24 0 imp:pre:2p;ind:pre:2p; +débitrice débiteur adj f s 0.21 0.27 0 0.07 +débits débit nom m p 1.24 6.35 0.14 1.08 +débité débiter ver m s 1.87 14.46 0.14 0.95 par:pas; +débitée débiter ver f s 1.87 14.46 0.06 0.41 par:pas; +débitées débiter ver f p 1.87 14.46 0 0.81 par:pas; +débités débiter ver m p 1.87 14.46 0.01 0.34 par:pas; +déblai déblai nom m s 0 0.74 0 0.47 +déblaie déblayer ver 0.96 4.19 0.05 0.2 imp:pre:2s;ind:pre:3s; +déblaiement déblaiement nom m s 0.14 0.74 0.14 0.74 +déblaient déblayer ver 0.96 4.19 0.02 0.14 ind:pre:3p; +déblaierez déblayer ver 0.96 4.19 0 0.07 ind:fut:2p; +déblais déblai nom m p 0 0.74 0 0.27 +déblatère déblatérer ver 0.32 0.47 0.07 0.07 ind:pre:3s; +déblatérait déblatérer ver 0.32 0.47 0.04 0.07 ind:imp:3s; +déblatérant déblatérer ver 0.32 0.47 0.01 0.14 par:pre; +déblatérations déblatération nom f p 0 0.07 0 0.07 +déblatérer déblatérer ver 0.32 0.47 0.2 0.2 inf; +déblaya déblayer ver 0.96 4.19 0 0.07 ind:pas:3s; +déblayage déblayage nom m s 0.09 0.14 0.09 0.14 +déblayaient déblayer ver 0.96 4.19 0 0.54 ind:imp:3p; +déblayait déblayer ver 0.96 4.19 0.01 0.47 ind:imp:3s; +déblayant déblayer ver 0.96 4.19 0 0.27 par:pre; +déblayer déblayer ver 0.96 4.19 0.45 1.55 inf; +déblayera déblayer ver 0.96 4.19 0 0.07 ind:fut:3s; +déblayeur déblayeur adj m s 0.01 0 0.01 0 +déblayeurs déblayeur nom m p 0 0.07 0 0.07 +déblayez déblayer ver 0.96 4.19 0.11 0 imp:pre:2p;ind:pre:2p; +déblayé déblayer ver m s 0.96 4.19 0.31 0.54 par:pas; +déblayée déblayer ver f s 0.96 4.19 0 0.07 par:pas; +déblayées déblayer ver f p 0.96 4.19 0 0.14 par:pas; +déblayés déblayer ver m p 0.96 4.19 0.01 0.07 par:pas; +déblocage déblocage nom m s 0.05 0.27 0.05 0.2 +déblocages déblocage nom m p 0.05 0.27 0 0.07 +débloqua débloquer ver 6.07 4.73 0 0.27 ind:pas:3s; +débloquait débloquer ver 6.07 4.73 0.01 0.2 ind:imp:3s; +débloquant débloquer ver 6.07 4.73 0.01 0.14 par:pre; +débloque débloquer ver 6.07 4.73 1.38 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débloquent débloquer ver 6.07 4.73 0.23 0.07 ind:pre:3p; +débloquer débloquer ver 6.07 4.73 0.77 1.55 inf; +débloques débloquer ver 6.07 4.73 2.2 0.34 ind:pre:2s; +débloquez débloquer ver 6.07 4.73 0.8 0.07 imp:pre:2p;ind:pre:2p; +débloquât débloquer ver 6.07 4.73 0 0.07 sub:imp:3s; +débloqué débloquer ver m s 6.07 4.73 0.42 0.54 par:pas; +débloquée débloquer ver f s 6.07 4.73 0.04 0.14 par:pas; +débloqués débloquer ver m p 6.07 4.73 0.22 0 par:pas; +débobinage débobinage nom m s 0 0.07 0 0.07 +débobiner débobiner ver 0 0.07 0 0.07 inf; +débogage débogage nom m s 0.01 0 0.01 0 +déboguer déboguer ver 0.04 0 0.04 0 inf; +déboire déboire nom m s 0.43 3.51 0 0.2 +déboires déboire nom m p 0.43 3.51 0.43 3.31 +déboisement déboisement nom m s 0.01 0 0.01 0 +déboiser déboiser ver 0.04 0.54 0.01 0.07 inf; +déboisé déboiser ver m s 0.04 0.54 0.02 0.2 par:pas; +déboisée déboiser ver f s 0.04 0.54 0 0.2 par:pas; +déboisées déboiser ver f p 0.04 0.54 0.01 0.07 par:pas; +débonda débonder ver 0 0.61 0 0.14 ind:pas:3s; +débondait débonder ver 0 0.61 0 0.27 ind:imp:3s; +débondant débonder ver 0 0.61 0 0.07 par:pre; +débonder débonder ver 0 0.61 0 0.07 inf; +débondé débonder ver m s 0 0.61 0 0.07 par:pas; +débonnaire débonnaire adj s 0.11 3.11 0.06 2.64 +débonnaires débonnaire adj p 0.11 3.11 0.05 0.47 +débord débord nom m s 0 0.14 0 0.14 +déborda déborder ver 15.75 31.62 0.01 0.61 ind:pas:3s; +débordaient déborder ver 15.75 31.62 0.02 3.04 ind:imp:3p; +débordais déborder ver 15.75 31.62 0.21 0.2 ind:imp:1s;ind:imp:2s; +débordait déborder ver 15.75 31.62 0.67 4.86 ind:imp:3s; +débordant déborder ver 15.75 31.62 0.52 5.14 par:pre; +débordante débordant adj f s 1.13 4.66 0.84 1.76 +débordantes débordant adj f p 1.13 4.66 0.14 0.74 +débordants débordant adj m p 1.13 4.66 0.04 0.81 +déborde déborder ver 15.75 31.62 2.31 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débordement débordement nom m s 0.94 3.78 0.62 2.09 +débordements débordement nom m p 0.94 3.78 0.32 1.69 +débordent déborder ver 15.75 31.62 0.69 1.96 ind:pre:3p; +déborder déborder ver 15.75 31.62 1.78 3.92 inf; +débordera déborder ver 15.75 31.62 0.04 0 ind:fut:3s; +déborderaient déborder ver 15.75 31.62 0.14 0.14 cnd:pre:3p; +déborderait déborder ver 15.75 31.62 0.01 0.2 cnd:pre:3s; +débordez déborder ver 15.75 31.62 0.06 0 imp:pre:2p;ind:pre:2p; +débordât déborder ver 15.75 31.62 0 0.14 sub:imp:3s; +débordèrent déborder ver 15.75 31.62 0 0.14 ind:pas:3p; +débordé déborder ver m s 15.75 31.62 4.16 3.11 par:pas; +débordée déborder ver f s 15.75 31.62 1.98 1.08 par:pas; +débordées déborder ver f p 15.75 31.62 0.24 0.41 par:pas; +débordés déborder ver m p 15.75 31.62 2.94 1.08 par:pas; +débottelons débotteler ver 0 0.07 0 0.07 ind:pre:1p; +débotté débotté nom m s 0.16 0.07 0.16 0.07 +déboucha déboucher ver 4.21 33.45 0.01 4.12 ind:pas:3s; +débouchage débouchage nom m s 0.01 0 0.01 0 +débouchai déboucher ver 4.21 33.45 0 0.34 ind:pas:1s; +débouchaient déboucher ver 4.21 33.45 0.01 1.62 ind:imp:3p; +débouchais déboucher ver 4.21 33.45 0 0.2 ind:imp:1s; +débouchait déboucher ver 4.21 33.45 0.16 4.39 ind:imp:3s; +débouchant déboucher ver 4.21 33.45 0.04 3.04 par:pre; +débouche déboucher ver 4.21 33.45 1.97 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débouchent déboucher ver 4.21 33.45 0.14 1.69 ind:pre:3p; +déboucher déboucher ver 4.21 33.45 0.78 6.22 inf; +débouchera déboucher ver 4.21 33.45 0.11 0.07 ind:fut:3s; +déboucherai déboucher ver 4.21 33.45 0.1 0.07 ind:fut:1s; +déboucheraient déboucher ver 4.21 33.45 0.01 0.07 cnd:pre:3p; +déboucherait déboucher ver 4.21 33.45 0 0.34 cnd:pre:3s; +déboucherez déboucher ver 4.21 33.45 0.01 0 ind:fut:2p; +déboucheur déboucheur nom m s 0.11 0.2 0.07 0.14 +déboucheurs déboucheur nom m p 0.11 0.2 0.04 0.07 +débouchez déboucher ver 4.21 33.45 0.1 0 imp:pre:2p;ind:pre:2p; +débouchions déboucher ver 4.21 33.45 0 0.07 ind:imp:1p; +débouchoir débouchoir nom m s 0.02 0 0.01 0 +débouchoirs débouchoir nom m p 0.02 0 0.01 0 +débouchons déboucher ver 4.21 33.45 0.12 0.54 imp:pre:1p;ind:pre:1p; +débouchâmes déboucher ver 4.21 33.45 0.01 0.27 ind:pas:1p; +débouchèrent déboucher ver 4.21 33.45 0 1.49 ind:pas:3p; +débouché déboucher ver m s 4.21 33.45 0.42 2.09 par:pas; +débouchée déboucher ver f s 4.21 33.45 0.16 0.2 par:pas; +débouchées déboucher ver f p 4.21 33.45 0.05 0.07 par:pas; +débouchés débouché nom m p 0.56 3.51 0.54 1.01 +déboucla déboucler ver 0.05 2.91 0 0.2 ind:pas:3s; +débouclaient déboucler ver 0.05 2.91 0 0.07 ind:imp:3p; +débouclait déboucler ver 0.05 2.91 0 0.2 ind:imp:3s; +débouclant déboucler ver 0.05 2.91 0 0.47 par:pre; +déboucle déboucler ver 0.05 2.91 0.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débouclent déboucler ver 0.05 2.91 0 0.2 ind:pre:3p; +déboucler déboucler ver 0.05 2.91 0 0.68 inf; +débouclez déboucler ver 0.05 2.91 0.01 0.14 imp:pre:2p; +débouclions déboucler ver 0.05 2.91 0 0.07 ind:imp:1p; +débouclèrent déboucler ver 0.05 2.91 0 0.07 ind:pas:3p; +débouclé déboucler ver m s 0.05 2.91 0.02 0.34 par:pas; +débouclées déboucler ver f p 0.05 2.91 0 0.07 par:pas; +débouclés déboucler ver m p 0.05 2.91 0 0.07 par:pas; +déboula débouler ver 1.94 6.22 0.01 0.41 ind:pas:3s; +déboulai débouler ver 1.94 6.22 0 0.07 ind:pas:1s; +déboulaient débouler ver 1.94 6.22 0 0.61 ind:imp:3p; +déboulais débouler ver 1.94 6.22 0.02 0.14 ind:imp:1s; +déboulait débouler ver 1.94 6.22 0.11 0.61 ind:imp:3s; +déboulant débouler ver 1.94 6.22 0.02 0.47 par:pre; +déboule débouler ver 1.94 6.22 0.75 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboulent débouler ver 1.94 6.22 0.08 0.47 ind:pre:3p; +débouler débouler ver 1.94 6.22 0.35 1.01 inf; +déboulerais débouler ver 1.94 6.22 0.01 0.07 cnd:pre:1s; +déboulerait débouler ver 1.94 6.22 0 0.07 cnd:pre:3s; +débouleront débouler ver 1.94 6.22 0.02 0 ind:fut:3p; +déboulez débouler ver 1.94 6.22 0.02 0 ind:pre:2p; +débouliez débouler ver 1.94 6.22 0.01 0 ind:imp:2p; +déboulions débouler ver 1.94 6.22 0 0.07 ind:imp:1p; +déboulonnant déboulonner ver 0.02 0.95 0 0.07 par:pre; +déboulonner déboulonner ver 0.02 0.95 0 0.27 inf; +déboulonnez déboulonner ver 0.02 0.95 0.01 0 imp:pre:2p; +déboulonné déboulonner ver m s 0.02 0.95 0.01 0.2 par:pas; +déboulonnée déboulonner ver f s 0.02 0.95 0 0.27 par:pas; +déboulonnées déboulonner ver f p 0.02 0.95 0 0.14 par:pas; +déboulèrent débouler ver 1.94 6.22 0 0.07 ind:pas:3p; +déboulé débouler ver m s 1.94 6.22 0.51 0.68 par:pas; +déboulés débouler ver m p 1.94 6.22 0.01 0.07 par:pas; +débouquaient débouquer ver 0 0.14 0 0.07 ind:imp:3p; +débouqué débouquer ver m s 0 0.14 0 0.07 par:pas; +débourrage débourrage nom m s 0 0.07 0 0.07 +débourre débourrer ver 0.02 0.54 0 0.07 ind:pre:3s; +débourrent débourrer ver 0.02 0.54 0 0.07 ind:pre:3p; +débourrer débourrer ver 0.02 0.54 0.02 0.27 inf; +débourré débourrer ver m s 0.02 0.54 0 0.07 par:pas; +débourrée débourrer ver f s 0.02 0.54 0 0.07 par:pas; +débours débours nom m 0.01 0.2 0.01 0.2 +débourse débourser ver 1.02 0.54 0.04 0.07 ind:pre:1s;ind:pre:3s; +déboursement déboursement nom m s 0.01 0 0.01 0 +débourser débourser ver 1.02 0.54 0.66 0.2 inf; +déboursera débourser ver 1.02 0.54 0.01 0.07 ind:fut:3s; +débourseront débourser ver 1.02 0.54 0.01 0 ind:fut:3p; +déboursé débourser ver m s 1.02 0.54 0.29 0.14 par:pas; +déboursées débourser ver f p 1.02 0.54 0 0.07 par:pas; +déboussolait déboussoler ver 1.73 1.42 0 0.07 ind:imp:3s; +déboussolantes déboussolant adj f p 0 0.07 0 0.07 +déboussoler déboussoler ver 1.73 1.42 0.01 0.07 inf; +déboussolé déboussoler ver m s 1.73 1.42 0.82 0.54 par:pas; +déboussolée déboussoler ver f s 1.73 1.42 0.77 0.2 par:pas; +déboussolées déboussoler ver f p 1.73 1.42 0.01 0.07 par:pas; +déboussolés déboussoler ver m p 1.73 1.42 0.12 0.47 par:pas; +déboutait débouter ver 0.12 0.34 0 0.07 ind:imp:3s; +débouter débouter ver 0.12 0.34 0.05 0.07 inf; +déboutonna déboutonner ver 1.33 8.24 0.01 1.22 ind:pas:3s; +déboutonnage déboutonnage nom m s 0.27 0.07 0.27 0.07 +déboutonnait déboutonner ver 1.33 8.24 0.03 0.61 ind:imp:3s; +déboutonnant déboutonner ver 1.33 8.24 0.01 0.41 par:pre; +déboutonne déboutonner ver 1.33 8.24 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboutonnent déboutonner ver 1.33 8.24 0.01 0.07 ind:pre:3p; +déboutonner déboutonner ver 1.33 8.24 0.31 1.42 inf; +déboutonnez déboutonner ver 1.33 8.24 0.04 0.07 imp:pre:2p; +déboutonnât déboutonner ver 1.33 8.24 0 0.07 sub:imp:3s; +déboutonné déboutonner ver m s 1.33 8.24 0.57 2.16 par:pas; +déboutonnée déboutonner ver f s 1.33 8.24 0.06 0.81 par:pas; +déboutonnées déboutonner ver f p 1.33 8.24 0 0.47 par:pas; +déboutonnés déboutonner ver m p 1.33 8.24 0 0.14 par:pas; +débouté débouter ver m s 0.12 0.34 0.06 0.07 par:pas; +déboutée débouter ver f s 0.12 0.34 0.01 0.14 par:pas; +déboîta déboîter ver 0.96 1.08 0 0.07 ind:pas:3s; +déboîtaient déboîter ver 0.96 1.08 0.01 0.07 ind:imp:3p; +déboîtais déboîter ver 0.96 1.08 0.01 0.07 ind:imp:1s; +déboîtait déboîter ver 0.96 1.08 0 0.07 ind:imp:3s; +déboîtant déboîter ver 0.96 1.08 0 0.07 par:pre; +déboîte déboîter ver 0.96 1.08 0.13 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboîtement déboîtement nom m s 0.01 0 0.01 0 +déboîter déboîter ver 0.96 1.08 0.22 0.2 inf; +déboîtez déboîter ver 0.96 1.08 0.02 0.07 imp:pre:2p;ind:pre:2p; +déboîté déboîter ver m s 0.96 1.08 0.32 0.27 par:pas; +déboîtée déboîter ver f s 0.96 1.08 0.25 0 par:pas; +déboîtées déboîter ver f p 0.96 1.08 0 0.07 par:pas; +débraguette débraguetter ver 0.01 0.54 0 0.07 ind:pre:3s; +débraguettent débraguetter ver 0.01 0.54 0 0.07 ind:pre:3p; +débraguetter débraguetter ver 0.01 0.54 0 0.14 inf; +débraguetté débraguetter ver m s 0.01 0.54 0.01 0.14 par:pas; +débraguettés débraguetter ver m p 0.01 0.54 0 0.14 par:pas; +débraillé débraillé nom m s 0.43 1.55 0.26 1.35 +débraillée débraillé adj f s 0.21 1.42 0.02 0.2 +débraillées débraillé adj f p 0.21 1.42 0.01 0.07 +débraillés débraillé nom m p 0.43 1.55 0.16 0.14 +débrancha débrancher ver 6.09 3.31 0 0.54 ind:pas:3s; +débranchant débrancher ver 6.09 3.31 0.04 0 par:pre; +débranche débrancher ver 6.09 3.31 1.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débranchement débranchement nom m s 0.02 0 0.02 0 +débranchent débrancher ver 6.09 3.31 0.06 0 ind:pre:3p; +débrancher débrancher ver 6.09 3.31 2.27 0.81 inf; +débrancherai débrancher ver 6.09 3.31 0.02 0.07 ind:fut:1s; +débrancherais débrancher ver 6.09 3.31 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +débrancherait débrancher ver 6.09 3.31 0.02 0.14 cnd:pre:3s; +débranchez débrancher ver 6.09 3.31 0.4 0.07 imp:pre:2p;ind:pre:2p; +débranchons débrancher ver 6.09 3.31 0.12 0 imp:pre:1p;ind:pre:1p; +débranché débrancher ver m s 6.09 3.31 1.38 0.74 par:pas; +débranchée débrancher ver f s 6.09 3.31 0.3 0.07 par:pas; +débranchées débrancher ver f p 6.09 3.31 0.02 0 par:pas; +débranchés débrancher ver m p 6.09 3.31 0.1 0.2 par:pas; +débraya débrayer ver 0.07 1.42 0 0.14 ind:pas:3s; +débrayage débrayage nom m s 0.04 0.47 0.04 0.41 +débrayages débrayage nom m p 0.04 0.47 0 0.07 +débrayait débrayer ver 0.07 1.42 0 0.2 ind:imp:3s; +débraye débrayer ver 0.07 1.42 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débrayent débrayer ver 0.07 1.42 0 0.07 ind:pre:3p; +débrayer débrayer ver 0.07 1.42 0.01 0.47 inf; +débrayes débrayer ver 0.07 1.42 0.01 0.07 ind:pre:2s; +débrayez débrayer ver 0.07 1.42 0.02 0 imp:pre:2p;ind:pre:2p; +débrayé débrayer ver m s 0.07 1.42 0.01 0.27 par:pas; +débrayée débrayer ver f s 0.07 1.42 0 0.07 par:pas; +débridait débrider ver 0.28 1.69 0 0.07 ind:imp:3s; +débridant débrider ver 0.28 1.69 0 0.07 par:pre; +débride débrider ver 0.28 1.69 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débridement débridement nom m s 0.04 0 0.04 0 +débrider débrider ver 0.28 1.69 0.04 0.74 inf; +débridera débrider ver 0.28 1.69 0 0.07 ind:fut:3s; +débriderai débrider ver 0.28 1.69 0.01 0.07 ind:fut:1s; +débriderait débrider ver 0.28 1.69 0 0.07 cnd:pre:3s; +débridez débrider ver 0.28 1.69 0.06 0 imp:pre:2p;ind:pre:2p; +débridé débrider ver m s 0.28 1.69 0.06 0.2 par:pas; +débridée débridé adj f s 0.39 0.95 0.28 0.47 +débridées débridé adj f p 0.39 0.95 0.02 0.27 +débridés débridé adj m p 0.39 0.95 0.06 0.07 +débriefer débriefer ver 0.19 0 0.11 0 inf; +débriefing débriefing nom m s 0.58 0 0.58 0 +débriefé débriefer ver m s 0.19 0 0.06 0 par:pas; +débriefée débriefer ver f s 0.19 0 0.03 0 par:pas; +débris débris nom m 4.94 13.85 4.94 13.85 +débronzer débronzer ver 0.02 0 0.02 0 inf; +débrouilla débrouiller ver 46.72 20.81 0.03 0.14 ind:pas:3s; +débrouillage débrouillage nom m s 0 0.14 0 0.14 +débrouillai débrouiller ver 46.72 20.81 0 0.07 ind:pas:1s; +débrouillaient débrouiller ver 46.72 20.81 0.01 0.54 ind:imp:3p; +débrouillais débrouiller ver 46.72 20.81 0.51 0.34 ind:imp:1s;ind:imp:2s; +débrouillait débrouiller ver 46.72 20.81 0.53 1.15 ind:imp:3s; +débrouillant débrouiller ver 46.72 20.81 0.01 0.14 par:pre; +débrouillard débrouillard adj m s 0.58 1.28 0.38 0.74 +débrouillarde débrouillard adj f s 0.58 1.28 0.16 0.34 +débrouillardise débrouillardise nom f s 0 0.34 0 0.34 +débrouillards débrouillard adj m p 0.58 1.28 0.04 0.2 +débrouille débrouiller ver 46.72 20.81 12.63 4.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +débrouillent débrouiller ver 46.72 20.81 0.98 1.08 ind:pre:3p; +débrouiller débrouiller ver 46.72 20.81 12.71 5.68 inf;; +débrouillera débrouiller ver 46.72 20.81 2.36 0.74 ind:fut:3s; +débrouillerai débrouiller ver 46.72 20.81 4.13 1.35 ind:fut:1s; +débrouilleraient débrouiller ver 46.72 20.81 0 0.14 cnd:pre:3p; +débrouillerais débrouiller ver 46.72 20.81 0.23 0.2 cnd:pre:1s;cnd:pre:2s; +débrouillerait débrouiller ver 46.72 20.81 0.05 0.27 cnd:pre:3s; +débrouilleras débrouiller ver 46.72 20.81 0.77 0 ind:fut:2s; +débrouillerez débrouiller ver 46.72 20.81 0.28 0.41 ind:fut:2p; +débrouillerions débrouiller ver 46.72 20.81 0 0.07 cnd:pre:1p; +débrouillerons débrouiller ver 46.72 20.81 0.2 0 ind:fut:1p; +débrouilleront débrouiller ver 46.72 20.81 0.12 0.2 ind:fut:3p; +débrouilles débrouiller ver 46.72 20.81 3.45 0.61 ind:pre:2s; +débrouilleurs débrouilleur nom m p 0.01 0 0.01 0 +débrouillez débrouiller ver 46.72 20.81 3.27 1.22 imp:pre:2p;ind:pre:2p; +débrouilliez débrouiller ver 46.72 20.81 0.02 0 ind:imp:2p; +débrouillions débrouiller ver 46.72 20.81 0.01 0.07 ind:imp:1p; +débrouillons débrouiller ver 46.72 20.81 0.06 0.07 imp:pre:1p;ind:pre:1p; +débrouillât débrouiller ver 46.72 20.81 0 0.07 sub:imp:3s; +débrouillé débrouiller ver m s 46.72 20.81 2.36 1.22 par:pas; +débrouillée débrouiller ver f s 46.72 20.81 1.61 0.27 par:pas; +débrouillées débrouiller ver f p 46.72 20.81 0.04 0.07 par:pas; +débrouillés débrouiller ver m p 46.72 20.81 0.36 0.47 par:pas; +débroussaillage débroussaillage nom m s 0.01 0.14 0.01 0.14 +débroussaille débroussailler ver 0.14 0.54 0 0.2 ind:pre:1s;ind:pre:3s; +débroussailler débroussailler ver 0.14 0.54 0.14 0.2 inf; +débroussailleuse débroussailleur nom f s 0.03 0.07 0.03 0.07 +débroussaillé débroussailler ver m s 0.14 0.54 0 0.14 par:pas; +débucher débucher nom m s 0 0.07 0 0.07 +débusquaient débusquer ver 1.43 2.5 0 0.07 ind:imp:3p; +débusquait débusquer ver 1.43 2.5 0.01 0.27 ind:imp:3s; +débusquant débusquer ver 1.43 2.5 0 0.07 par:pre; +débusque débusquer ver 1.43 2.5 0.15 0.07 ind:pre:1s;ind:pre:3s; +débusquer débusquer ver 1.43 2.5 0.89 1.49 inf; +débusquerait débusquer ver 1.43 2.5 0.01 0.07 cnd:pre:3s; +débusquerons débusquer ver 1.43 2.5 0.01 0 ind:fut:1p; +débusquez débusquer ver 1.43 2.5 0.02 0 imp:pre:2p; +débusquèrent débusquer ver 1.43 2.5 0 0.07 ind:pas:3p; +débusqué débusquer ver m s 1.43 2.5 0.33 0.14 par:pas; +débusquée débusquer ver f s 1.43 2.5 0 0.07 par:pas; +débusqués débusquer ver m p 1.43 2.5 0.02 0.2 par:pas; +début début nom m s 114.31 141.49 109.88 128.51 +débuta débuter ver 10.08 7.16 0.42 0.68 ind:pas:3s; +débutai débuter ver 10.08 7.16 0 0.07 ind:pas:1s; +débutaient débuter ver 10.08 7.16 0.02 0.14 ind:imp:3p; +débutais débuter ver 10.08 7.16 0.02 0.27 ind:imp:1s; +débutait débuter ver 10.08 7.16 0.23 1.22 ind:imp:3s; +débutant débutant nom m s 5.82 2.57 2.32 1.08 +débutante débutant nom f s 5.82 2.57 1.21 0.61 +débutantes débutant nom f p 5.82 2.57 0.65 0.27 +débutants débutant nom m p 5.82 2.57 1.64 0.61 +débute débuter ver 10.08 7.16 2.77 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débutent débuter ver 10.08 7.16 0.49 0.2 ind:pre:3p; +débuter débuter ver 10.08 7.16 1.72 0.88 inf; +débutera débuter ver 10.08 7.16 0.28 0 ind:fut:3s; +débuteraient débuter ver 10.08 7.16 0.01 0 cnd:pre:3p; +débutes débuter ver 10.08 7.16 0.11 0 ind:pre:2s; +débutez débuter ver 10.08 7.16 0.09 0 imp:pre:2p;ind:pre:2p; +débutiez débuter ver 10.08 7.16 0.02 0.07 ind:imp:2p; +débutons débuter ver 10.08 7.16 0.17 0 imp:pre:1p;ind:pre:1p; +débuts début nom m p 114.31 141.49 4.43 12.97 +débutèrent débuter ver 10.08 7.16 0.04 0 ind:pas:3p; +débuté débuter ver m s 10.08 7.16 3.41 1.89 par:pas; +débutée débuter ver f s 10.08 7.16 0.02 0 par:pas; +débâcle débâcle nom f s 0.89 6.69 0.76 6.49 +débâcles débâcle nom f p 0.89 6.69 0.14 0.2 +débâillonné débâillonner ver m s 0 0.07 0 0.07 par:pas; +débâté débâter ver m s 0 0.14 0 0.07 par:pas; +débâtées débâter ver f p 0 0.14 0 0.07 par:pas; +déc déc nom s 0.3 0 0.3 0 +déca déca nom m s 1.16 0.07 1.16 0.07 +décabosser décabosser ver 0.01 0 0.01 0 inf; +décacheta décacheter ver 0.01 2.43 0 0.41 ind:pas:3s; +décachetage décachetage nom m s 0.01 0 0.01 0 +décachetai décacheter ver 0.01 2.43 0 0.14 ind:pas:1s; +décachetaient décacheter ver 0.01 2.43 0 0.07 ind:imp:3p; +décachetais décacheter ver 0.01 2.43 0 0.07 ind:imp:1s; +décachetant décacheter ver 0.01 2.43 0 0.14 par:pre; +décacheter décacheter ver 0.01 2.43 0 0.34 inf; +décachetons décacheter ver 0.01 2.43 0.01 0 imp:pre:1p; +décachette décacheter ver 0.01 2.43 0 0.14 ind:pre:1s;ind:pre:3s; +décachetteraient décacheter ver 0.01 2.43 0 0.07 cnd:pre:3p; +décacheté décacheter ver m s 0.01 2.43 0 0.47 par:pas; +décachetée décacheter ver f s 0.01 2.43 0 0.27 par:pas; +décachetées décacheter ver f p 0.01 2.43 0 0.34 par:pas; +décade décade nom f s 0.16 1.15 0.13 0.74 +décadence décadence nom f s 1.28 4.73 1.28 4.73 +décadent décadent adj m s 1.47 1.35 0.6 0.47 +décadente décadent adj f s 1.47 1.35 0.68 0.2 +décadentes décadent adj f p 1.47 1.35 0.13 0.2 +décadentisme décadentisme nom m s 0 0.07 0 0.07 +décadents décadent adj m p 1.47 1.35 0.06 0.47 +décades décade nom f p 0.16 1.15 0.03 0.41 +décadi décadi nom m s 0 0.34 0 0.27 +décadis décadi nom m p 0 0.34 0 0.07 +décaféiné décaféiné nom m s 0.22 0.07 0.22 0.07 +décaféinée décaféiner ver f s 0.06 0.07 0.01 0 par:pas; +décaissement décaissement nom m s 0.01 0 0.01 0 +décaisser décaisser ver 0 0.14 0 0.14 inf; +décalage décalage nom m s 2.09 3.92 2.04 3.65 +décalages décalage nom m p 2.09 3.92 0.04 0.27 +décalaminé décalaminer ver m s 0 0.07 0 0.07 par:pas; +décalant décaler ver 1.36 1.42 0 0.07 par:pre; +décalcification décalcification nom f s 0.01 0 0.01 0 +décalcifié décalcifier ver m s 0 0.2 0 0.07 par:pas; +décalcifiée décalcifier ver f s 0 0.2 0 0.14 par:pas; +décalcomanie décalcomanie nom f s 0.29 0.61 0.17 0.41 +décalcomanies décalcomanie nom f p 0.29 0.61 0.12 0.2 +décale décaler ver 1.36 1.42 0.11 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décalent décaler ver 1.36 1.42 0 0.07 ind:pre:3p; +décaler décaler ver 1.36 1.42 0.47 0.2 inf; +décalez décaler ver 1.36 1.42 0.17 0 imp:pre:2p; +décalitre décalitre nom m s 0.11 0.14 0 0.07 +décalitres décalitre nom m p 0.11 0.14 0.11 0.07 +décalogue décalogue nom m s 0.01 0.2 0.01 0.2 +décalotta décalotter ver 0 0.34 0 0.07 ind:pas:3s; +décalotter décalotter ver 0 0.34 0 0.07 inf; +décalotté décalotter ver m s 0 0.34 0 0.07 par:pas; +décalottée décalotter ver f s 0 0.34 0 0.07 par:pas; +décalottés décalotter ver m p 0 0.34 0 0.07 par:pas; +décalquai décalquer ver 0.22 1.08 0 0.07 ind:pas:1s; +décalquait décalquer ver 0.22 1.08 0 0.14 ind:imp:3s; +décalque décalquer ver 0.22 1.08 0.03 0.07 ind:pre:3s; +décalquer décalquer ver 0.22 1.08 0.06 0.14 inf; +décalques décalquer ver 0.22 1.08 0.04 0 ind:pre:2s; +décalqué décalquer ver m s 0.22 1.08 0.06 0.2 par:pas; +décalquée décalquer ver f s 0.22 1.08 0.01 0.34 par:pas; +décalquées décalquer ver f p 0.22 1.08 0 0.07 par:pas; +décalqués décalquer ver m p 0.22 1.08 0.02 0.07 par:pas; +décalé décalé adj m s 0.65 0.68 0.41 0.41 +décalée décalé adj f s 0.65 0.68 0.06 0.2 +décalées décaler ver f p 1.36 1.42 0.01 0.07 par:pas; +décalés décaler ver m p 1.36 1.42 0.3 0.14 par:pas; +décambuter décambuter ver 0 0.2 0 0.2 inf; +décampa décamper ver 4.02 2.5 0 0.14 ind:pas:3s; +décampait décamper ver 4.02 2.5 0 0.07 ind:imp:3s; +décampe décamper ver 4.02 2.5 1.66 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décampent décamper ver 4.02 2.5 0.16 0.14 ind:pre:3p; +décamper décamper ver 4.02 2.5 0.81 0.95 inf; +décampera décamper ver 4.02 2.5 0.14 0 ind:fut:3s; +décamperais décamper ver 4.02 2.5 0 0.07 cnd:pre:1s; +décamperont décamper ver 4.02 2.5 0.02 0 ind:fut:3p; +décampes décamper ver 4.02 2.5 0.26 0 ind:pre:2s; +décampez décamper ver 4.02 2.5 0.7 0.14 imp:pre:2p; +décampons décamper ver 4.02 2.5 0.05 0 imp:pre:1p; +décampé décamper ver m s 4.02 2.5 0.2 0.47 par:pas; +décamètre décamètre nom m s 0 0.2 0 0.14 +décamètres décamètre nom m p 0 0.2 0 0.07 +décan décan nom m s 0.02 0.07 0.02 0.07 +décanillant décaniller ver 0.02 0.61 0 0.07 par:pre; +décanille décaniller ver 0.02 0.61 0.01 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décaniller décaniller ver 0.02 0.61 0 0.27 inf; +décanillerait décaniller ver 0.02 0.61 0 0.07 cnd:pre:3s; +décanillez décaniller ver 0.02 0.61 0.01 0 imp:pre:2p; +décantai décanter ver 0.22 1.28 0 0.07 ind:pas:1s; +décantaient décanter ver 0.22 1.28 0 0.07 ind:imp:3p; +décantait décanter ver 0.22 1.28 0 0.07 ind:imp:3s; +décantant décanter ver 0.22 1.28 0 0.14 par:pre; +décantation décantation nom f s 0.1 0.07 0.1 0.07 +décante décanter ver 0.22 1.28 0.04 0.2 ind:pre:3s; +décantent décanter ver 0.22 1.28 0 0.07 ind:pre:3p; +décanter décanter ver 0.22 1.28 0.17 0.14 inf; +décanteur décanteur nom m s 0.01 0 0.01 0 +décanté décanter ver m s 0.22 1.28 0.01 0.14 par:pas; +décantée décanter ver f s 0.22 1.28 0 0.2 par:pas; +décantées décanter ver f p 0.22 1.28 0 0.2 par:pas; +décapage décapage nom m s 0.01 0 0.01 0 +décapais décaper ver 0.21 2.09 0.02 0.07 ind:imp:1s;ind:imp:2s; +décapait décaper ver 0.21 2.09 0 0.34 ind:imp:3s; +décapant décapant nom m s 0.27 0.34 0.27 0.2 +décapante décapant adj f s 0.04 0.07 0 0.07 +décapants décapant adj m p 0.04 0.07 0.01 0 +décape décaper ver 0.21 2.09 0.07 0.2 ind:pre:1s;ind:pre:3s; +décaper décaper ver 0.21 2.09 0.07 0.34 inf; +décapera décaper ver 0.21 2.09 0 0.07 ind:fut:3s; +décapeur décapeur nom m s 0 0.07 0 0.07 +décapita décapiter ver 3.72 6.96 0.02 0.2 ind:pas:3s; +décapitaient décapiter ver 3.72 6.96 0.02 0.07 ind:imp:3p; +décapitais décapiter ver 3.72 6.96 0.01 0 ind:imp:1s; +décapitait décapiter ver 3.72 6.96 0.02 0.07 ind:imp:3s; +décapitant décapiter ver 3.72 6.96 0.04 0.27 par:pre; +décapitation décapitation nom f s 0.55 0.47 0.43 0.47 +décapitations décapitation nom f p 0.55 0.47 0.13 0 +décapite décapiter ver 3.72 6.96 0.2 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décapitent décapiter ver 3.72 6.96 0.14 0 ind:pre:3p; +décapiter décapiter ver 3.72 6.96 1.09 0.88 inf; +décapitera décapiter ver 3.72 6.96 0.04 0 ind:fut:3s; +décapiterai décapiter ver 3.72 6.96 0.01 0 ind:fut:1s; +décapiterait décapiter ver 3.72 6.96 0 0.07 cnd:pre:3s; +décapiteront décapiter ver 3.72 6.96 0.01 0 ind:fut:3p; +décapitez décapiter ver 3.72 6.96 0.07 0 imp:pre:2p;ind:pre:2p; +décapitons décapiter ver 3.72 6.96 0.01 0 imp:pre:1p; +décapitât décapiter ver 3.72 6.96 0 0.07 sub:imp:3s; +décapitèrent décapiter ver 3.72 6.96 0 0.07 ind:pas:3p; +décapité décapiter ver m s 3.72 6.96 1.5 2.57 par:pas; +décapitée décapiter ver f s 3.72 6.96 0.32 1.15 par:pas; +décapitées décapiter ver f p 3.72 6.96 0.04 0.54 par:pas; +décapités décapiter ver m p 3.72 6.96 0.19 0.81 par:pas; +décapode décapode nom m s 0 0.07 0 0.07 +décapotable décapotable nom f s 1.77 0.88 1.65 0.81 +décapotables décapotable nom f p 1.77 0.88 0.12 0.07 +décapotage décapotage nom m s 0 0.07 0 0.07 +décapotait décapoter ver 0.04 0.27 0 0.07 ind:imp:3s; +décapote décapoter ver 0.04 0.27 0.03 0 ind:pre:1s; +décapoter décapoter ver 0.04 0.27 0 0.07 inf; +décapoté décapoté adj m s 0.03 0.47 0.01 0 +décapotée décapoté adj f s 0.03 0.47 0.02 0.47 +décapotés décapoter ver m p 0.04 0.27 0 0.07 par:pas; +décapsula décapsuler ver 0.07 1.35 0 0.14 ind:pas:3s; +décapsulant décapsuler ver 0.07 1.35 0 0.2 par:pre; +décapsule décapsuler ver 0.07 1.35 0.02 0.41 ind:pre:1s;ind:pre:3s; +décapsuler décapsuler ver 0.07 1.35 0.04 0.2 inf; +décapsulerait décapsuler ver 0.07 1.35 0 0.07 cnd:pre:3s; +décapsuleur décapsuleur nom m s 0.34 0.2 0.34 0.2 +décapsulez décapsuler ver 0.07 1.35 0.01 0 imp:pre:2p; +décapsulé décapsuler ver m s 0.07 1.35 0 0.14 par:pas; +décapsulée décapsuler ver f s 0.07 1.35 0 0.2 par:pas; +décapuchonna décapuchonner ver 0 0.41 0 0.2 ind:pas:3s; +décapuchonne décapuchonner ver 0 0.41 0 0.07 ind:pre:3s; +décapuchonner décapuchonner ver 0 0.41 0 0.07 inf; +décapuchonnèrent décapuchonner ver 0 0.41 0 0.07 ind:pas:3p; +décapé décaper ver m s 0.21 2.09 0.02 0.34 par:pas; +décapée décaper ver f s 0.21 2.09 0 0.41 par:pas; +décapées décaper ver f p 0.21 2.09 0 0.14 par:pas; +décapés décaper ver m p 0.21 2.09 0.01 0.14 par:pas; +décarcassais décarcasser ver 0.15 0.61 0 0.07 ind:imp:1s; +décarcassait décarcasser ver 0.15 0.61 0 0.07 ind:imp:3s; +décarcassent décarcasser ver 0.15 0.61 0 0.07 ind:pre:3p; +décarcasser décarcasser ver 0.15 0.61 0.05 0.07 inf; +décarcassé décarcasser ver m s 0.15 0.61 0.08 0.14 par:pas; +décarcassée décarcasser ver f s 0.15 0.61 0.02 0.14 par:pas; +décarcassées décarcasser ver f p 0.15 0.61 0 0.07 par:pas; +décarpillage décarpillage nom m s 0 0.2 0 0.2 +décarpiller décarpiller ver 0 0.14 0 0.07 inf; +décarpillé décarpiller ver m s 0 0.14 0 0.07 par:pas; +décarrade décarrade nom f s 0 2.5 0 2.43 +décarrades décarrade nom f p 0 2.5 0 0.07 +décarraient décarrer ver 0.68 4.32 0 0.07 ind:imp:3p; +décarrais décarrer ver 0.68 4.32 0 0.07 ind:imp:1s; +décarrait décarrer ver 0.68 4.32 0 0.07 ind:imp:3s; +décarrant décarrer ver 0.68 4.32 0 0.47 par:pre; +décarre décarrer ver 0.68 4.32 0.4 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décarrent décarrer ver 0.68 4.32 0 0.07 ind:pre:3p; +décarrer décarrer ver 0.68 4.32 0.28 1.35 inf; +décarrerait décarrer ver 0.68 4.32 0 0.07 cnd:pre:3s; +décarres décarrer ver 0.68 4.32 0 0.07 ind:pre:2s; +décarré décarrer ver m s 0.68 4.32 0 0.27 par:pas; +décarrés décarrer ver m p 0.68 4.32 0 0.07 par:pas; +décathlon décathlon nom m s 0.27 0.07 0.26 0.07 +décathlons décathlon nom m p 0.27 0.07 0.01 0 +décati décati adj m s 0.09 0.61 0.04 0.2 +décatie décati adj f s 0.09 0.61 0.04 0.2 +décatir décatir ver 0.01 0.47 0 0.14 inf; +décatis décati adj m p 0.09 0.61 0.01 0.2 +décavé décavé adj m s 0.11 0.27 0.11 0.27 +déceint déceindre ver 0 0.07 0 0.07 ind:pre:3s; +décela déceler ver 2 11.15 0 0.2 ind:pas:3s; +décelable décelable adj f s 0.04 0.2 0.04 0.2 +décelai déceler ver 2 11.15 0 0.14 ind:pas:1s; +décelaient déceler ver 2 11.15 0 0.14 ind:imp:3p; +décelais déceler ver 2 11.15 0.01 0.2 ind:imp:1s; +décelait déceler ver 2 11.15 0.01 0.74 ind:imp:3s; +décelant déceler ver 2 11.15 0 0.2 par:pre; +déceler déceler ver 2 11.15 0.87 6.01 inf; +décelèrent déceler ver 2 11.15 0 0.07 ind:pas:3p; +décelé déceler ver m s 2 11.15 0.57 2.03 par:pas; +décelée déceler ver f s 2 11.15 0.03 0.2 par:pas; +décelées déceler ver f p 2 11.15 0.01 0.14 par:pas; +décelés déceler ver m p 2 11.15 0 0.07 par:pas; +décembre décembre nom m 8.55 31.22 8.55 31.15 +décembres décembre nom m p 8.55 31.22 0 0.07 +décembriste décembriste nom s 0 0.2 0 0.07 +décembristes décembriste nom p 0 0.2 0 0.14 +décemment décemment adv 0.96 2.57 0.96 2.57 +décence décence nom f s 2.92 2.84 2.92 2.77 +décences décence nom f p 2.92 2.84 0 0.07 +décennal décennal adj m s 0.02 0.07 0.01 0.07 +décennale décennal adj f s 0.02 0.07 0.01 0 +décennie décennie nom f s 2.67 2.43 1.27 0.95 +décennies décennie nom f p 2.67 2.43 1.41 1.49 +décent décent adj m s 5.95 4.32 2.67 1.89 +décente décent adj f s 5.95 4.32 2.5 1.82 +décentes décent adj f p 5.95 4.32 0.19 0.2 +décentralisation décentralisation nom f s 0 0.07 0 0.07 +décentralisé décentraliser ver m s 0.12 0.14 0.12 0 par:pas; +décentralisée décentraliser ver f s 0.12 0.14 0 0.07 par:pas; +décentralisées décentraliser ver f p 0.12 0.14 0 0.07 par:pas; +décentrant décentrer ver 0.41 0.41 0 0.07 par:pre; +décentre décentrer ver 0.41 0.41 0 0.07 ind:pre:3s; +décentrement décentrement nom m s 0.01 0 0.01 0 +décentrée décentrer ver f s 0.41 0.41 0.01 0.14 par:pas; +décentrées décentrer ver f p 0.41 0.41 0.4 0.14 par:pas; +décents décent adj m p 5.95 4.32 0.6 0.41 +déception déception nom f s 6.65 16.82 5.46 13.04 +déceptions déception nom f p 6.65 16.82 1.19 3.78 +décerna décerner ver 2.19 3.51 0.03 0.07 ind:pas:3s; +décernai décerner ver 2.19 3.51 0 0.07 ind:pas:1s; +décernais décerner ver 2.19 3.51 0 0.07 ind:imp:2s; +décernait décerner ver 2.19 3.51 0.19 0.41 ind:imp:3s; +décernant décerner ver 2.19 3.51 0.1 0.07 par:pre; +décerne décerner ver 2.19 3.51 0.19 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décernent décerner ver 2.19 3.51 0.02 0.14 ind:pre:3p; +décerner décerner ver 2.19 3.51 0.45 0.88 inf; +décernera décerner ver 2.19 3.51 0.02 0 ind:fut:3s; +décerniez décerner ver 2.19 3.51 0.02 0 ind:imp:2p; +décernons décerner ver 2.19 3.51 0.16 0 imp:pre:1p;ind:pre:1p; +décerné décerner ver m s 2.19 3.51 0.65 0.61 par:pas; +décernée décerner ver f s 2.19 3.51 0.09 0.47 par:pas; +décernées décerner ver f p 2.19 3.51 0.12 0.2 par:pas; +décernés décerner ver m p 2.19 3.51 0.14 0.14 par:pas; +décervelage décervelage nom m s 0 0.14 0 0.14 +décerveler décerveler ver 0.09 0.27 0.03 0 ind:pre:2p;inf; +décervelle décerveler ver 0.09 0.27 0 0.14 ind:pre:3s; +décervelé décerveler ver m s 0.09 0.27 0.06 0.14 par:pas; +décesse décesser ver 0 0.14 0 0.07 ind:pre:3s; +décessé décesser ver m s 0 0.14 0 0.07 par:pas; +décevaient décevoir ver 33.23 21.69 0 0.2 ind:imp:3p; +décevais décevoir ver 33.23 21.69 0.03 0.2 ind:imp:1s; +décevait décevoir ver 33.23 21.69 0.02 0.81 ind:imp:3s; +décevant décevant adj m s 2.06 4.59 1.36 2.23 +décevante décevant adj f s 2.06 4.59 0.57 1.49 +décevantes décevant adj f p 2.06 4.59 0.08 0.34 +décevants décevant adj m p 2.06 4.59 0.04 0.54 +décevez décevoir ver 33.23 21.69 1.69 0.14 imp:pre:2p;ind:pre:2p; +déceviez décevoir ver 33.23 21.69 0.02 0 ind:imp:2p; +décevoir décevoir ver 33.23 21.69 7.65 3.85 inf; +décevons décevoir ver 33.23 21.69 0.07 0 imp:pre:1p;ind:pre:1p; +décevra décevoir ver 33.23 21.69 0.22 0 ind:fut:3s; +décevrai décevoir ver 33.23 21.69 0.92 0.07 ind:fut:1s; +décevraient décevoir ver 33.23 21.69 0 0.07 cnd:pre:3p; +décevrais décevoir ver 33.23 21.69 0.15 0 cnd:pre:1s;cnd:pre:2s; +décevrait décevoir ver 33.23 21.69 0.09 0.2 cnd:pre:3s; +décevras décevoir ver 33.23 21.69 0.22 0 ind:fut:2s; +décevrez décevoir ver 33.23 21.69 0.07 0 ind:fut:2p; +déchait décher ver 0 0.34 0 0.14 ind:imp:3s; +déchanta déchanter ver 0.05 1.55 0 0.14 ind:pas:3s; +déchantai déchanter ver 0.05 1.55 0 0.14 ind:pas:1s; +déchantait déchanter ver 0.05 1.55 0 0.14 ind:imp:3s; +déchantant déchanter ver 0.05 1.55 0 0.07 par:pre; +déchante déchanter ver 0.05 1.55 0.02 0.07 imp:pre:2s;ind:pre:3s; +déchantent déchanter ver 0.05 1.55 0 0.14 ind:pre:3p; +déchanter déchanter ver 0.05 1.55 0.02 0.61 inf; +déchanterais déchanter ver 0.05 1.55 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +déchantèrent déchanter ver 0.05 1.55 0 0.07 ind:pas:3p; +déchanté déchanter ver m s 0.05 1.55 0 0.14 par:pas; +déchard déchard nom m s 0 0.27 0 0.2 +déchards déchard nom m p 0 0.27 0 0.07 +décharge décharge nom f s 9.3 12.77 7.62 11.35 +déchargea décharger ver 10.12 11.89 0.01 0.47 ind:pas:3s; +déchargeaient décharger ver 10.12 11.89 0.12 0.81 ind:imp:3p; +déchargeait décharger ver 10.12 11.89 0.05 1.01 ind:imp:3s; +déchargeant décharger ver 10.12 11.89 0.04 0.47 par:pre; +déchargement déchargement nom m s 0.53 0.88 0.53 0.88 +déchargent décharger ver 10.12 11.89 0.3 0.2 ind:pre:3p; +déchargeons décharger ver 10.12 11.89 0.11 0 imp:pre:1p; +décharger décharger ver 10.12 11.89 3.88 4.32 inf; +déchargera décharger ver 10.12 11.89 0.17 0.07 ind:fut:3s; +déchargerais décharger ver 10.12 11.89 0 0.07 cnd:pre:1s; +déchargerait décharger ver 10.12 11.89 0 0.14 cnd:pre:3s; +déchargerez décharger ver 10.12 11.89 0 0.07 ind:fut:2p; +décharges décharge nom f p 9.3 12.77 1.68 1.42 +déchargeur déchargeur nom m s 0.03 0.07 0.03 0.07 +déchargez décharger ver 10.12 11.89 1.13 0 imp:pre:2p;ind:pre:2p; +déchargeât décharger ver 10.12 11.89 0 0.07 sub:imp:3s; +déchargions décharger ver 10.12 11.89 0.01 0.07 ind:imp:1p; +déchargèrent décharger ver 10.12 11.89 0 0.14 ind:pas:3p; +déchargé décharger ver m s 10.12 11.89 1.8 1.28 par:pas; +déchargée décharger ver f s 10.12 11.89 0.22 0.34 par:pas; +déchargées décharger ver f p 10.12 11.89 0.06 0.14 par:pas; +déchargés décharger ver m p 10.12 11.89 0.22 0.41 par:pas; +décharne décharner ver 0.2 1.62 0 0.07 ind:pre:3s; +décharnement décharnement nom m s 0 0.07 0 0.07 +décharnent décharner ver 0.2 1.62 0 0.07 ind:pre:3p; +décharner décharner ver 0.2 1.62 0 0.2 inf; +décharnerait décharner ver 0.2 1.62 0 0.07 cnd:pre:3s; +décharné décharner ver m s 0.2 1.62 0.17 0.27 par:pas; +décharnée décharné adj f s 0.17 5.2 0.04 1.35 +décharnées décharné adj f p 0.17 5.2 0.02 0.41 +décharnés décharné adj m p 0.17 5.2 0.01 0.88 +déchassé déchasser ver m s 0 0.07 0 0.07 par:pas; +déchaumaient déchaumer ver 0 0.14 0 0.07 ind:imp:3p; +déchaumée déchaumer ver f s 0 0.14 0 0.07 par:pas; +déchaussa déchausser ver 0.73 2.91 0 0.41 ind:pas:3s; +déchaussaient déchausser ver 0.73 2.91 0 0.07 ind:imp:3p; +déchaussait déchausser ver 0.73 2.91 0 0.27 ind:imp:3s; +déchaussant déchausser ver 0.73 2.91 0 0.14 par:pre; +déchausse déchausser ver 0.73 2.91 0.23 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchaussent déchausser ver 0.73 2.91 0 0.07 ind:pre:3p; +déchausser déchausser ver 0.73 2.91 0.21 0.68 inf; +déchausserais déchausser ver 0.73 2.91 0.01 0 cnd:pre:1s; +déchaussez déchausser ver 0.73 2.91 0.28 0 imp:pre:2p;ind:pre:2p; +déchaussé déchaussé adj m s 0.05 0.95 0.02 0.27 +déchaussée déchaussé adj f s 0.05 0.95 0.01 0.2 +déchaussées déchaussé adj f p 0.05 0.95 0.01 0.07 +déchaussés déchaussé adj m p 0.05 0.95 0.01 0.41 +déchaîna déchaîner ver 6.37 13.18 0.13 1.35 ind:pas:3s; +déchaînaient déchaîner ver 6.37 13.18 0.02 1.22 ind:imp:3p; +déchaînais déchaîner ver 6.37 13.18 0.01 0.14 ind:imp:1s;ind:imp:2s; +déchaînait déchaîner ver 6.37 13.18 0.43 2.43 ind:imp:3s; +déchaînant déchaîner ver 6.37 13.18 0.01 0.27 par:pre; +déchaîne déchaîner ver 6.37 13.18 1.16 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchaînement déchaînement nom m s 0.14 3.38 0.14 2.57 +déchaînements déchaînement nom m p 0.14 3.38 0.01 0.81 +déchaînent déchaîner ver 6.37 13.18 0.38 0.54 ind:pre:3p; +déchaîner déchaîner ver 6.37 13.18 1.32 2.36 inf; +déchaînera déchaîner ver 6.37 13.18 0.06 0 ind:fut:3s; +déchaînerait déchaîner ver 6.37 13.18 0.04 0.14 cnd:pre:3s; +déchaîneras déchaîner ver 6.37 13.18 0 0.07 ind:fut:2s; +déchaînez déchaîner ver 6.37 13.18 0.06 0.07 imp:pre:2p;ind:pre:2p; +déchaînât déchaîner ver 6.37 13.18 0 0.07 sub:imp:3s; +déchaînèrent déchaîner ver 6.37 13.18 0 0.07 ind:pas:3p; +déchaîné déchaîner ver m s 6.37 13.18 0.97 1.62 par:pas; +déchaînée déchaîner ver f s 6.37 13.18 0.95 0.68 par:pas; +déchaînées déchaîné adj f p 1.29 4.8 0.35 0.81 +déchaînés déchaîner ver m p 6.37 13.18 0.69 0.41 par:pas; +décher décher ver 0 0.34 0 0.14 inf; +déchet déchet nom m s 7.04 6.42 1.27 1.96 +déchets déchet nom m p 7.04 6.42 5.77 4.46 +déchetterie déchetterie nom f s 0.11 0 0.11 0 +déchiffra déchiffrer ver 4.88 15.81 0 0.54 ind:pas:3s; +déchiffrable déchiffrable adj m s 0.02 0.47 0.02 0.27 +déchiffrables déchiffrable adj m p 0.02 0.47 0 0.2 +déchiffrage déchiffrage nom m s 0.06 0.41 0.06 0.41 +déchiffrai déchiffrer ver 4.88 15.81 0 0.14 ind:pas:1s; +déchiffraient déchiffrer ver 4.88 15.81 0 0.07 ind:imp:3p; +déchiffrais déchiffrer ver 4.88 15.81 0.01 0.41 ind:imp:1s;ind:imp:2s; +déchiffrait déchiffrer ver 4.88 15.81 0.01 1.35 ind:imp:3s; +déchiffrant déchiffrer ver 4.88 15.81 0.03 0.27 par:pre; +déchiffre déchiffrer ver 4.88 15.81 0.13 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchiffrement déchiffrement nom m s 0.04 1.22 0.04 1.22 +déchiffrent déchiffrer ver 4.88 15.81 0.16 0.14 ind:pre:3p; +déchiffrer déchiffrer ver 4.88 15.81 3.08 10.07 inf; +déchiffrera déchiffrer ver 4.88 15.81 0.17 0 ind:fut:3s; +déchiffreur déchiffreur nom m s 0.01 0.14 0.01 0.14 +déchiffrez déchiffrer ver 4.88 15.81 0.03 0 imp:pre:2p; +déchiffrions déchiffrer ver 4.88 15.81 0 0.2 ind:imp:1p; +déchiffrâmes déchiffrer ver 4.88 15.81 0 0.07 ind:pas:1p; +déchiffrât déchiffrer ver 4.88 15.81 0.14 0.14 sub:imp:3s; +déchiffrèrent déchiffrer ver 4.88 15.81 0 0.07 ind:pas:3p; +déchiffré déchiffrer ver m s 4.88 15.81 1.01 0.68 par:pas; +déchiffrée déchiffrer ver f s 4.88 15.81 0.06 0.14 par:pas; +déchiffrées déchiffrer ver f p 4.88 15.81 0.01 0.07 par:pas; +déchiffrés déchiffrer ver m p 4.88 15.81 0.04 0.2 par:pas; +déchiqueta déchiqueter ver 2.46 5.74 0 0.14 ind:pas:3s; +déchiquetage déchiquetage nom m s 0 0.27 0 0.27 +déchiquetaient déchiqueter ver 2.46 5.74 0.04 0.2 ind:imp:3p; +déchiquetait déchiqueter ver 2.46 5.74 0 0.07 ind:imp:3s; +déchiquetant déchiqueter ver 2.46 5.74 0.03 0.27 par:pre; +déchiqueter déchiqueter ver 2.46 5.74 0.92 1.35 inf; +déchiqueteur déchiqueteur nom m s 0.09 0.2 0.01 0.07 +déchiqueteurs déchiqueteur nom m p 0.09 0.2 0 0.07 +déchiqueteuse déchiqueteur nom f s 0.09 0.2 0.07 0 +déchiqueteuses déchiqueteur nom f p 0.09 0.2 0 0.07 +déchiquetons déchiqueter ver 2.46 5.74 0 0.07 ind:pre:1p; +déchiquette déchiqueter ver 2.46 5.74 0.14 0.27 imp:pre:2s;ind:pre:3s; +déchiquettent déchiqueter ver 2.46 5.74 0.04 0.14 ind:pre:3p; +déchiquettes déchiqueter ver 2.46 5.74 0 0.07 ind:pre:2s; +déchiqueté déchiqueter ver m s 2.46 5.74 0.93 1.15 par:pas; +déchiquetée déchiqueter ver f s 2.46 5.74 0.15 0.68 par:pas; +déchiquetées déchiqueter ver f p 2.46 5.74 0.04 0.27 par:pas; +déchiquetés déchiqueter ver m p 2.46 5.74 0.18 1.08 par:pas; +déchira déchirer ver 26.46 53.11 0.17 5 ind:pas:3s; +déchirage déchirage nom m s 0 0.14 0 0.07 +déchirages déchirage nom m p 0 0.14 0 0.07 +déchirai déchirer ver 26.46 53.11 0.14 0.47 ind:pas:1s; +déchiraient déchirer ver 26.46 53.11 0.06 2.7 ind:imp:3p; +déchirais déchirer ver 26.46 53.11 0.03 0.34 ind:imp:1s;ind:imp:2s; +déchirait déchirer ver 26.46 53.11 0.39 4.86 ind:imp:3s; +déchirant déchirer ver 26.46 53.11 0.49 2.97 par:pre; +déchirante déchirant adj f s 0.64 10.27 0.1 3.99 +déchirantes déchirant adj f p 0.64 10.27 0.02 1.22 +déchirants déchirant adj m p 0.64 10.27 0.15 2.03 +déchire déchirer ver 26.46 53.11 7.45 8.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchirement déchirement nom m s 0.36 5.68 0.23 4.05 +déchirements déchirement nom m p 0.36 5.68 0.13 1.62 +déchirent déchirer ver 26.46 53.11 1.26 2.09 ind:pre:3p; +déchirer déchirer ver 26.46 53.11 4.27 8.72 inf;; +déchirera déchirer ver 26.46 53.11 0.13 0.07 ind:fut:3s; +déchirerai déchirer ver 26.46 53.11 0.35 0.07 ind:fut:1s; +déchireraient déchirer ver 26.46 53.11 0.14 0.14 cnd:pre:3p; +déchirerais déchirer ver 26.46 53.11 0.14 0.27 cnd:pre:1s;cnd:pre:2s; +déchirerait déchirer ver 26.46 53.11 0.04 0.2 cnd:pre:3s; +déchireras déchirer ver 26.46 53.11 0.02 0 ind:fut:2s; +déchirerons déchirer ver 26.46 53.11 0.04 0 ind:fut:1p; +déchireront déchirer ver 26.46 53.11 0.07 0.07 ind:fut:3p; +déchires déchirer ver 26.46 53.11 0.81 0.07 ind:pre:2s; +déchireur déchireur nom m s 0.02 0 0.02 0 +déchirez déchirer ver 26.46 53.11 0.84 0.07 imp:pre:2p;ind:pre:2p; +déchiriez déchirer ver 26.46 53.11 0.02 0.07 ind:imp:2p; +déchirions déchirer ver 26.46 53.11 0 0.14 ind:imp:1p; +déchirons déchirer ver 26.46 53.11 0.17 0.07 imp:pre:1p;ind:pre:1p; +déchirure déchirure nom f s 1.58 7.03 1.03 4.8 +déchirures déchirure nom f p 1.58 7.03 0.55 2.23 +déchirât déchirer ver 26.46 53.11 0 0.07 sub:imp:3s; +déchirèrent déchirer ver 26.46 53.11 0.02 0.68 ind:pas:3p; +déchiré déchirer ver m s 26.46 53.11 6.5 8.24 par:pas; +déchirée déchirer ver f s 26.46 53.11 2.11 3.31 par:pas; +déchirées déchirer ver f p 26.46 53.11 0.35 1.01 par:pas; +déchirés déchiré adj m p 5.59 13.38 0.7 3.31 +déchoient déchoir ver 0.92 3.04 0 0.07 ind:pre:3p; +déchoir déchoir ver 0.92 3.04 0.01 1.49 inf; +déchoirons déchoir ver 0.92 3.04 0 0.07 ind:fut:1p; +déchouer déchouer ver 0.01 0 0.01 0 inf; +déchristianise déchristianiser ver 0 0.07 0 0.07 ind:pre:3s; +déchu déchu adj m s 1.1 3.85 0.59 1.76 +déchue déchu adj f s 1.1 3.85 0.19 0.88 +déchues déchoir ver f p 0.92 3.04 0.14 0.07 par:pas; +déchus déchu adj m p 1.1 3.85 0.28 0.81 +déché décher ver m s 0 0.34 0 0.07 par:pas; +déchéance déchéance nom f s 1.67 6.42 1.67 6.28 +déchéances déchéance nom f p 1.67 6.42 0 0.14 +déci déci nom m s 0.01 0 0.01 0 +décibel décibel nom m s 0.4 0.88 0.04 0 +décibels décibel nom m p 0.4 0.88 0.37 0.88 +décida décider ver 207.76 214.19 3.86 36.82 ind:pas:3s; +décidai décider ver 207.76 214.19 2.04 11.08 ind:pas:1s; +décidaient décider ver 207.76 214.19 0.38 1.96 ind:imp:3p; +décidais décider ver 207.76 214.19 0.77 1.28 ind:imp:1s;ind:imp:2s; +décidait décider ver 207.76 214.19 0.68 6.69 ind:imp:3s; +décidant décider ver 207.76 214.19 0.48 2.64 par:pre; +décide décider ver 207.76 214.19 31.25 20.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +décident décider ver 207.76 214.19 3.37 2.57 ind:pre:3p; +décider décider ver 207.76 214.19 42.27 27.16 inf; +décidera décider ver 207.76 214.19 3.48 2.16 ind:fut:3s; +déciderai décider ver 207.76 214.19 1.73 0.07 ind:fut:1s; +décideraient décider ver 207.76 214.19 0.01 0.61 cnd:pre:3p; +déciderais décider ver 207.76 214.19 0.14 0.2 cnd:pre:1s;cnd:pre:2s; +déciderait décider ver 207.76 214.19 0.42 1.15 cnd:pre:3s; +décideras décider ver 207.76 214.19 0.76 0.54 ind:fut:2s; +déciderez décider ver 207.76 214.19 0.47 0.34 ind:fut:2p; +décideriez décider ver 207.76 214.19 0.09 0.14 cnd:pre:2p; +déciderions décider ver 207.76 214.19 0.01 0 cnd:pre:1p; +déciderons décider ver 207.76 214.19 0.35 0.14 ind:fut:1p; +décideront décider ver 207.76 214.19 0.89 0.74 ind:fut:3p; +décides décider ver 207.76 214.19 8.15 1.89 ind:pre:2s; +décideur décideur nom m s 0.23 0 0.12 0 +décideurs décideur nom m p 0.23 0 0.11 0 +décidez décider ver 207.76 214.19 6.25 0.88 imp:pre:2p;ind:pre:2p; +décidiez décider ver 207.76 214.19 0.58 0.14 ind:imp:2p; +décidions décider ver 207.76 214.19 0.2 0.41 ind:imp:1p; +décidons décider ver 207.76 214.19 1.42 0.68 imp:pre:1p;ind:pre:1p; +décidâmes décider ver 207.76 214.19 0.02 1.62 ind:pas:1p; +décidât décider ver 207.76 214.19 0 1.08 sub:imp:3s; +décidèrent décider ver 207.76 214.19 0.65 5.27 ind:pas:3p; +décidé décider ver m s 207.76 214.19 92.08 73.78 par:pas;par:pas;par:pas; +décidée décider ver f s 207.76 214.19 3.63 7.5 par:pas; +décidées décider ver f p 207.76 214.19 0.13 0.88 par:pas; +décidément décidément adv 3.88 30.81 3.88 30.81 +décidés décider ver m p 207.76 214.19 1.23 3.18 par:pas; +décigramme décigramme nom m s 0.14 0 0.01 0 +décigrammes décigramme nom m p 0.14 0 0.14 0 +décile décile nom m s 0.01 0 0.01 0 +décilitre décilitre nom m s 0.03 0.07 0.03 0.07 +décima décimer ver 3.3 3.85 0.04 0 ind:pas:3s; +décimaient décimer ver 3.3 3.85 0 0.14 ind:imp:3p; +décimait décimer ver 3.3 3.85 0.01 0.27 ind:imp:3s; +décimal décimal adj m s 0.34 0.47 0.09 0.07 +décimale décimal adj f s 0.34 0.47 0.11 0.2 +décimales décimal adj f p 0.34 0.47 0.15 0.2 +décimalisation décimalisation nom f s 0.01 0 0.01 0 +décimalité décimalité nom f s 0.01 0 0.01 0 +décimant décimer ver 3.3 3.85 0.01 0 par:pre; +décimateur décimateur nom m s 0.01 0 0.01 0 +décimation décimation nom f s 0.42 0.2 0.42 0.2 +décime décimer ver 3.3 3.85 0.46 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déciment décimer ver 3.3 3.85 0.14 0 ind:pre:3p; +décimer décimer ver 3.3 3.85 0.41 0.27 inf; +décimera décimer ver 3.3 3.85 0.01 0 ind:fut:3s; +décimerai décimer ver 3.3 3.85 0.01 0 ind:fut:1s; +décimerait décimer ver 3.3 3.85 0.03 0 cnd:pre:3s; +décimeront décimer ver 3.3 3.85 0.01 0.07 ind:fut:3p; +décimes décime nom m p 0 0.07 0 0.07 +décimèrent décimer ver 3.3 3.85 0 0.07 ind:pas:3p; +décimètre décimètre nom m s 0.03 0.81 0.01 0.54 +décimètres décimètre nom m p 0.03 0.81 0.01 0.27 +décimé décimer ver m s 3.3 3.85 0.97 0.74 par:pas; +décimée décimer ver f s 3.3 3.85 0.35 0.88 par:pas; +décimées décimer ver f p 3.3 3.85 0.15 0.54 par:pas; +décimés décimer ver m p 3.3 3.85 0.68 0.68 par:pas; +décisif décisif adj m s 3.85 16.01 1.96 7.03 +décisifs décisif adj m p 3.85 16.01 0.17 1.69 +décision décision nom f s 66.48 60 54.63 47.77 +décision_clé décision_clé nom f s 0.01 0 0.01 0 +décisionnaire décisionnaire nom s 0.04 0 0.04 0 +décisionnel décisionnel adj m s 0.05 0 0.04 0 +décisionnelles décisionnel adj f p 0.05 0 0.01 0 +décisions décision nom f p 66.48 60 11.85 12.23 +décisive décisif adj f s 3.85 16.01 1.47 5.95 +décisives décisif adj f p 3.85 16.01 0.25 1.35 +décivilisés déciviliser ver m p 0 0.07 0 0.07 par:pas; +déclama déclamer ver 0.63 5 0 0.47 ind:pas:3s; +déclamai déclamer ver 0.63 5 0 0.07 ind:pas:1s; +déclamaient déclamer ver 0.63 5 0 0.2 ind:imp:3p; +déclamais déclamer ver 0.63 5 0.01 0.2 ind:imp:1s;ind:imp:2s; +déclamait déclamer ver 0.63 5 0.03 1.22 ind:imp:3s; +déclamant déclamer ver 0.63 5 0.01 0.47 par:pre; +déclamation déclamation nom f s 0.04 0.81 0.03 0.68 +déclamations déclamation nom f p 0.04 0.81 0.01 0.14 +déclamatoire déclamatoire adj s 0.02 0.54 0.01 0.34 +déclamatoires déclamatoire adj f p 0.02 0.54 0.01 0.2 +déclamatrice déclamateur nom f s 0 0.14 0 0.14 +déclame déclamer ver 0.63 5 0.05 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclamer déclamer ver 0.63 5 0.53 1.22 inf; +déclamera déclamer ver 0.63 5 0 0.07 ind:fut:3s; +déclamerait déclamer ver 0.63 5 0.01 0.07 cnd:pre:3s; +déclamât déclamer ver 0.63 5 0 0.07 sub:imp:3s; +déclamé déclamer ver m s 0.63 5 0 0.2 par:pas; +déclamée déclamer ver f s 0.63 5 0 0.14 par:pas; +déclanche déclancher ver 0.22 0.14 0.01 0.07 ind:pre:3s; +déclancher déclancher ver 0.22 0.14 0.14 0.07 inf; +déclanchera déclancher ver 0.22 0.14 0.01 0 ind:fut:3s; +déclanché déclancher ver m s 0.22 0.14 0.06 0 par:pas; +déclara déclarer ver 41.59 73.18 0.89 20 ind:pas:3s; +déclarai déclarer ver 41.59 73.18 0 3.65 ind:pas:1s; +déclaraient déclarer ver 41.59 73.18 0.22 0.95 ind:imp:3p; +déclarais déclarer ver 41.59 73.18 0 0.68 ind:imp:1s; +déclarait déclarer ver 41.59 73.18 0.26 6.96 ind:imp:3s; +déclarant déclarer ver 41.59 73.18 0.27 3.65 par:pre; +déclaration déclaration nom f s 19.74 21.82 16.49 15.68 +déclarations déclaration nom f p 19.74 21.82 3.25 6.15 +déclarative déclaratif adj f s 0 0.07 0 0.07 +déclaratoire déclaratoire adj s 0.03 0 0.03 0 +déclare déclarer ver 41.59 73.18 13.13 9.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclarent déclarer ver 41.59 73.18 0.75 1.08 ind:pre:3p; +déclarer déclarer ver 41.59 73.18 6.85 7.97 inf; +déclarera déclarer ver 41.59 73.18 0.28 0.2 ind:fut:3s; +déclarerai déclarer ver 41.59 73.18 0.18 0 ind:fut:1s; +déclarerais déclarer ver 41.59 73.18 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +déclarerait déclarer ver 41.59 73.18 0.04 0.27 cnd:pre:3s; +déclareriez déclarer ver 41.59 73.18 0.03 0 cnd:pre:2p; +déclarerions déclarer ver 41.59 73.18 0 0.07 cnd:pre:1p; +déclarerons déclarer ver 41.59 73.18 0.02 0.07 ind:fut:1p; +déclareront déclarer ver 41.59 73.18 0.16 0 ind:fut:3p; +déclares déclarer ver 41.59 73.18 0.11 0 ind:pre:2s; +déclarez déclarer ver 41.59 73.18 1.03 0.27 imp:pre:2p;ind:pre:2p; +déclariez déclarer ver 41.59 73.18 0.17 0.07 ind:imp:2p; +déclarions déclarer ver 41.59 73.18 0.01 0.07 ind:imp:1p; +déclarons déclarer ver 41.59 73.18 1.16 0.41 imp:pre:1p;ind:pre:1p; +déclarât déclarer ver 41.59 73.18 0 0.14 sub:imp:3s; +déclarèrent déclarer ver 41.59 73.18 0.01 0.54 ind:pas:3p; +déclaré déclarer ver m s 41.59 73.18 13.37 13.72 par:pas;par:pas;par:pas; +déclarée déclarer ver f s 41.59 73.18 2.04 1.62 par:pas; +déclarées déclarer ver f p 41.59 73.18 0.05 0.2 par:pas; +déclarés déclarer ver m p 41.59 73.18 0.54 0.68 par:pas; +déclasse déclasser ver 0.21 0.54 0.02 0.14 ind:pre:1s;ind:pre:3s; +déclassement déclassement nom m s 0 0.2 0 0.2 +déclasser déclasser ver 0.21 0.54 0.14 0.2 inf; +déclassé déclassé adj m s 0.14 0.07 0.14 0 +déclassée déclasser ver f s 0.21 0.54 0.01 0 par:pas; +déclassées déclasser ver f p 0.21 0.54 0.01 0 par:pas; +déclassés déclassé nom m p 0 0.95 0 0.2 +déclavetées déclaveter ver f p 0 0.07 0 0.07 par:pas; +déclencha déclencher ver 19.23 22.91 0.16 2.3 ind:pas:3s; +déclenchai déclencher ver 19.23 22.91 0 0.07 ind:pas:1s; +déclenchaient déclencher ver 19.23 22.91 0.18 0.34 ind:imp:3p; +déclenchait déclencher ver 19.23 22.91 0.11 1.89 ind:imp:3s; +déclenchant déclencher ver 19.23 22.91 0.39 0.74 par:pre; +déclenche déclencher ver 19.23 22.91 3.27 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclenchement déclenchement nom m s 0.53 2.5 0.53 2.5 +déclenchent déclencher ver 19.23 22.91 0.63 0.68 ind:pre:3p; +déclencher déclencher ver 19.23 22.91 4.71 5.88 inf; +déclenchera déclencher ver 19.23 22.91 0.53 0.2 ind:fut:3s; +déclencherai déclencher ver 19.23 22.91 0.08 0 ind:fut:1s; +déclencheraient déclencher ver 19.23 22.91 0 0.07 cnd:pre:3p; +déclencherais déclencher ver 19.23 22.91 0.04 0 cnd:pre:1s;cnd:pre:2s; +déclencherait déclencher ver 19.23 22.91 0.34 0.07 cnd:pre:3s; +déclencherez déclencher ver 19.23 22.91 0.14 0.07 ind:fut:2p; +déclencherons déclencher ver 19.23 22.91 0.05 0 ind:fut:1p; +déclencheront déclencher ver 19.23 22.91 0.05 0 ind:fut:3p; +déclencheur déclencheur nom m s 0.94 0.07 0.84 0.07 +déclencheurs déclencheur nom m p 0.94 0.07 0.09 0 +déclenchez déclencher ver 19.23 22.91 0.6 0 imp:pre:2p;ind:pre:2p; +déclenchions déclencher ver 19.23 22.91 0 0.07 ind:imp:1p; +déclenchons déclencher ver 19.23 22.91 0.13 0 imp:pre:1p;ind:pre:1p; +déclenchât déclencher ver 19.23 22.91 0 0.07 sub:imp:3s; +déclenchèrent déclencher ver 19.23 22.91 0.03 0.54 ind:pas:3p; +déclenché déclencher ver m s 19.23 22.91 5.29 3.65 par:pas; +déclenchée déclencher ver f s 19.23 22.91 2.12 2.09 par:pas; +déclenchées déclencher ver f p 19.23 22.91 0.29 0.41 par:pas; +déclenchés déclencher ver m p 19.23 22.91 0.09 0.2 par:pas; +déclic déclic nom m s 1.13 7.97 0.96 7.5 +déclics déclic nom m p 1.13 7.97 0.17 0.47 +déclin déclin nom m s 1.73 6.42 1.73 6.08 +déclina décliner ver 3.55 11.28 0.12 1.08 ind:pas:3s; +déclinai décliner ver 3.55 11.28 0 0.34 ind:pas:1s; +déclinaient décliner ver 3.55 11.28 0 0.14 ind:imp:3p; +déclinais décliner ver 3.55 11.28 0.01 0.2 ind:imp:1s; +déclinaison déclinaison nom f s 0.23 0.47 0.09 0.2 +déclinaisons déclinaison nom f p 0.23 0.47 0.14 0.27 +déclinait décliner ver 3.55 11.28 0.28 2.5 ind:imp:3s; +déclinant décliner ver 3.55 11.28 0.16 0.81 par:pre; +déclinante déclinant adj f s 0.06 2.97 0.04 1.08 +déclinants déclinant adj m p 0.06 2.97 0 0.2 +décline décliner ver 3.55 11.28 1.11 2.3 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclinent décliner ver 3.55 11.28 0.12 0.27 ind:pre:3p; +décliner décliner ver 3.55 11.28 0.58 2.23 inf; +déclinera décliner ver 3.55 11.28 0.01 0 ind:fut:3s; +déclines décliner ver 3.55 11.28 0.04 0.07 ind:pre:2s; +déclinez décliner ver 3.55 11.28 0.42 0 imp:pre:2p;ind:pre:2p; +déclinions décliner ver 3.55 11.28 0 0.14 ind:imp:1p; +déclins déclin nom m p 1.73 6.42 0 0.34 +déclinèrent décliner ver 3.55 11.28 0 0.07 ind:pas:3p; +décliné décliner ver m s 3.55 11.28 0.63 1.08 par:pas; +déclinée décliner ver f s 3.55 11.28 0.07 0.07 par:pas; +déclique décliquer ver 0.01 0 0.01 0 ind:pre:1s; +décliqueté décliqueter ver m s 0 0.07 0 0.07 par:pas; +déclive déclive adj f s 0 0.34 0 0.27 +déclives déclive adj f p 0 0.34 0 0.07 +déclivité déclivité nom f s 0.01 1.08 0.01 0.74 +déclivités déclivité nom f p 0.01 1.08 0 0.34 +décloisonnée décloisonner ver f s 0 0.07 0 0.07 par:pas; +déclose déclore ver f s 0.01 0 0.01 0 par:pas; +décloses déclos adj f p 0 0.14 0 0.07 +déclouer déclouer ver 0.11 0.88 0.1 0.14 inf; +déclouèrent déclouer ver 0.11 0.88 0 0.14 ind:pas:3p; +décloué déclouer ver m s 0.11 0.88 0 0.2 par:pas; +déclouée déclouer ver f s 0.11 0.88 0.01 0.07 par:pas; +déclouées déclouer ver f p 0.11 0.88 0 0.34 par:pas; +déco déco adj 2.25 0.47 2.25 0.47 +décocha décocher ver 0.44 4.05 0 1.42 ind:pas:3s; +décochai décocher ver 0.44 4.05 0 0.07 ind:pas:1s; +décochaient décocher ver 0.44 4.05 0 0.07 ind:imp:3p; +décochais décocher ver 0.44 4.05 0 0.07 ind:imp:1s; +décochait décocher ver 0.44 4.05 0.01 0.27 ind:imp:3s; +décochant décocher ver 0.44 4.05 0 0.14 par:pre; +décoche décocher ver 0.44 4.05 0.23 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décochent décocher ver 0.44 4.05 0 0.07 ind:pre:3p; +décocher décocher ver 0.44 4.05 0.06 0.54 inf; +décochera décocher ver 0.44 4.05 0.02 0 ind:fut:3s; +décocheuses décocheur nom f p 0 0.07 0 0.07 +décochez décocher ver 0.44 4.05 0.03 0 imp:pre:2p;ind:pre:2p; +décoché décocher ver m s 0.44 4.05 0.06 0.27 par:pas; +décochée décocher ver f s 0.44 4.05 0.01 0.14 par:pas; +décochées décocher ver f p 0.44 4.05 0.01 0.07 par:pas; +décoconne décoconner ver 0 0.14 0 0.07 imp:pre:2s; +décoconnerai décoconner ver 0 0.14 0 0.07 ind:fut:1s; +décoction décoction nom f s 0.83 1.08 0.81 0.81 +décoctions décoction nom f p 0.83 1.08 0.02 0.27 +décodage décodage nom m s 0.19 0.14 0.19 0 +décodages décodage nom m p 0.19 0.14 0 0.14 +décodait décoder ver 3.04 0.54 0 0.14 ind:imp:3s; +décodant décoder ver 3.04 0.54 0.01 0 par:pre; +décode décoder ver 3.04 0.54 0.38 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décodent décoder ver 3.04 0.54 0.02 0 ind:pre:3p; +décoder décoder ver 3.04 0.54 1.59 0.34 inf; +décoderai décoder ver 3.04 0.54 0.12 0 ind:fut:1s; +décodeur décodeur nom m s 0.39 0.07 0.35 0.07 +décodeurs décodeur nom m p 0.39 0.07 0.02 0 +décodeuse décodeur nom f s 0.39 0.07 0.01 0 +décodez décoder ver 3.04 0.54 0.06 0 imp:pre:2p;ind:pre:2p; +décodons décoder ver 3.04 0.54 0.02 0 ind:pre:1p; +décodé décoder ver m s 3.04 0.54 0.71 0.07 par:pas; +décodée décoder ver f s 3.04 0.54 0.04 0 par:pas; +décodées décoder ver f p 3.04 0.54 0.04 0 par:pas; +décodés décoder ver m p 3.04 0.54 0.04 0 par:pas; +décoffrage décoffrage nom m s 0.02 0 0.02 0 +décoffrés décoffrer ver m p 0 0.07 0 0.07 par:pas; +décoiffa décoiffer ver 1.37 3.18 0 0.07 ind:pas:3s; +décoiffait décoiffer ver 1.37 3.18 0.01 0.07 ind:imp:3s; +décoiffe décoiffer ver 1.37 3.18 0.29 0.14 imp:pre:2s;ind:pre:3s; +décoiffer décoiffer ver 1.37 3.18 0.2 0.2 inf; +décoiffera décoiffer ver 1.37 3.18 0.03 0 ind:fut:3s; +décoifferais décoiffer ver 1.37 3.18 0 0.07 cnd:pre:2s; +décoifferait décoiffer ver 1.37 3.18 0 0.07 cnd:pre:3s; +décoiffes décoiffer ver 1.37 3.18 0.12 0.07 ind:pre:2s; +décoiffez décoiffer ver 1.37 3.18 0.12 0 imp:pre:2p;ind:pre:2p; +décoiffé décoiffer ver m s 1.37 3.18 0.25 0.74 par:pas; +décoiffée décoiffer ver f s 1.37 3.18 0.3 1.49 par:pas; +décoiffées décoiffer ver f p 1.37 3.18 0 0.14 par:pas; +décoiffés décoiffer ver m p 1.37 3.18 0.04 0.14 par:pas; +décoince décoincer ver 0.93 0.27 0.16 0 imp:pre:2s;ind:pre:3s; +décoincer décoincer ver 0.93 0.27 0.61 0.2 inf; +décoincera décoincer ver 0.93 0.27 0.01 0 ind:fut:3s; +décoincerait décoincer ver 0.93 0.27 0.01 0 cnd:pre:3s; +décoinces décoincer ver 0.93 0.27 0.02 0 ind:pre:2s; +décoincez décoincer ver 0.93 0.27 0.03 0 imp:pre:2p;ind:pre:2p; +décoincé décoincer ver m s 0.93 0.27 0.06 0 par:pas; +décoinça décoincer ver 0.93 0.27 0 0.07 ind:pas:3s; +décoinçage décoinçage nom m s 0.01 0 0.01 0 +décoinçant décoincer ver 0.93 0.27 0.02 0 par:pre; +décolla décoller ver 21.15 19.73 0 1.35 ind:pas:3s; +décollage décollage nom m s 7.23 1.15 7.14 1.15 +décollages décollage nom m p 7.23 1.15 0.09 0 +décollai décoller ver 21.15 19.73 0 0.07 ind:pas:1s; +décollaient décoller ver 21.15 19.73 0.02 0.88 ind:imp:3p; +décollais décoller ver 21.15 19.73 0.03 0.27 ind:imp:1s;ind:imp:2s; +décollait décoller ver 21.15 19.73 0.26 1.22 ind:imp:3s; +décollant décoller ver 21.15 19.73 0.07 1.15 par:pre; +décollassions décoller ver 21.15 19.73 0.1 0 sub:imp:1p; +décollation décollation nom f s 0.01 0.07 0.01 0.07 +décolle décoller ver 21.15 19.73 5.89 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décollement décollement nom m s 0.27 0.07 0.26 0.07 +décollements décollement nom m p 0.27 0.07 0.01 0 +décollent décoller ver 21.15 19.73 0.75 0.27 ind:pre:3p; +décoller décoller ver 21.15 19.73 8.11 5.68 inf; +décollera décoller ver 21.15 19.73 0.77 0 ind:fut:3s; +décollerai décoller ver 21.15 19.73 0.16 0 ind:fut:1s; +décollerait décoller ver 21.15 19.73 0.14 0.07 cnd:pre:3s; +décolleras décoller ver 21.15 19.73 0.01 0 ind:fut:2s; +décollerons décoller ver 21.15 19.73 0.08 0 ind:fut:1p; +décolleront décoller ver 21.15 19.73 0.19 0 ind:fut:3p; +décolles décoller ver 21.15 19.73 0.12 0.07 ind:pre:2s; +décolleter décolleter ver 0.16 0.95 0.01 0.07 inf; +décolleté décolleté nom m s 1.76 3.92 1.52 3.31 +décolletée décolleté adj f s 0.49 2.36 0.26 1.28 +décolletées décolleté adj f p 0.49 2.36 0.01 0.54 +décolletés décolleté nom m p 1.76 3.92 0.25 0.61 +décollez décoller ver 21.15 19.73 0.6 0.07 imp:pre:2p;ind:pre:2p; +décollons décoller ver 21.15 19.73 0.56 0 imp:pre:1p;ind:pre:1p; +décollèrent décoller ver 21.15 19.73 0 0.14 ind:pas:3p; +décollé décoller ver m s 21.15 19.73 3.02 1.89 par:pas; +décollée décoller ver f s 21.15 19.73 0.21 1.01 par:pas; +décollées décoller ver f p 21.15 19.73 0.06 1.89 par:pas; +décollés décoller ver m p 21.15 19.73 0.01 0.61 par:pas; +décolonisation décolonisation nom f s 0 0.41 0 0.41 +décolonise décoloniser ver 0 0.07 0 0.07 ind:pre:3s; +décolora décolorer ver 0.45 3.58 0 0.2 ind:pas:3s; +décoloraient décolorer ver 0.45 3.58 0 0.27 ind:imp:3p; +décolorait décolorer ver 0.45 3.58 0.01 0.68 ind:imp:3s; +décolorant décolorer ver 0.45 3.58 0.03 0 par:pre; +décoloration décoloration nom f s 0.53 0.34 0.46 0.2 +décolorations décoloration nom f p 0.53 0.34 0.08 0.14 +décolore décolorer ver 0.45 3.58 0.19 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décolorent décolorer ver 0.45 3.58 0.01 0.14 ind:pre:3p; +décolorer décolorer ver 0.45 3.58 0.1 0.34 inf; +décoloré décoloré adj m s 0.29 3.38 0.07 0.95 +décolorée décoloré adj f s 0.29 3.38 0.19 1.15 +décolorées décoloré adj f p 0.29 3.38 0.01 0.54 +décolorés décoloré adj m p 0.29 3.38 0.03 0.74 +décolère décolérer ver 0.01 0.81 0 0.07 imp:pre:2s; +décoléraient décolérer ver 0.01 0.81 0 0.07 ind:imp:3p; +décolérais décolérer ver 0.01 0.81 0 0.07 ind:imp:1s; +décolérait décolérer ver 0.01 0.81 0 0.41 ind:imp:3s; +décolérer décolérer ver 0.01 0.81 0 0.07 inf; +décoléré décolérer ver m s 0.01 0.81 0.01 0.14 par:pas; +décombre décombrer ver 0 0.27 0 0.27 ind:pre:3s; +décombres décombre nom m p 1.09 6.55 1.09 6.55 +décommanda décommander ver 2.77 2.3 0 0.27 ind:pas:3s; +décommandai décommander ver 2.77 2.3 0 0.07 ind:pas:1s; +décommandais décommander ver 2.77 2.3 0 0.07 ind:imp:1s; +décommandait décommander ver 2.77 2.3 0 0.2 ind:imp:3s; +décommande décommander ver 2.77 2.3 0.57 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +décommander décommander ver 2.77 2.3 0.98 0.88 inf; +décommanderait décommander ver 2.77 2.3 0 0.07 cnd:pre:3s; +décommandes décommander ver 2.77 2.3 0.29 0 ind:pre:2s; +décommandez décommander ver 2.77 2.3 0.09 0 imp:pre:2p;ind:pre:2p; +décommandé décommander ver m s 2.77 2.3 0.66 0.34 par:pas; +décommandée décommander ver f s 2.77 2.3 0.16 0.07 par:pas; +décommandées décommander ver f p 2.77 2.3 0.01 0.07 par:pas; +décommandés décommander ver m p 2.77 2.3 0.01 0 par:pas; +décompensation décompensation nom f s 0.01 0 0.01 0 +décompenser décompenser ver 0.05 0 0.04 0 inf; +décompensé décompenser ver m s 0.05 0 0.01 0 par:pas; +décompliquer décompliquer ver 0.02 0 0.02 0 inf; +décomposa décomposer ver 2.87 7.43 0 0.47 ind:pas:3s; +décomposable décomposable adj s 0 0.07 0 0.07 +décomposaient décomposer ver 2.87 7.43 0.01 0.27 ind:imp:3p; +décomposais décomposer ver 2.87 7.43 0 0.2 ind:imp:1s; +décomposait décomposer ver 2.87 7.43 0.14 0.95 ind:imp:3s; +décomposant décomposer ver 2.87 7.43 0.09 0.47 par:pre; +décompose décomposer ver 2.87 7.43 0.69 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décomposent décomposer ver 2.87 7.43 0.31 0.14 ind:pre:3p; +décomposer décomposer ver 2.87 7.43 0.81 1.42 inf; +décomposera décomposer ver 2.87 7.43 0.23 0.14 ind:fut:3s; +décomposeraient décomposer ver 2.87 7.43 0.01 0.14 cnd:pre:3p; +décomposerait décomposer ver 2.87 7.43 0 0.07 cnd:pre:3s; +décomposeur décomposeur nom m s 0.01 0 0.01 0 +décomposition décomposition nom f s 2.59 3.45 2.58 3.38 +décompositions décomposition nom f p 2.59 3.45 0.01 0.07 +décomposé décomposer ver m s 2.87 7.43 0.48 1.08 par:pas; +décomposée décomposé adj f s 0.24 2.97 0.04 0.47 +décomposées décomposé adj f p 0.24 2.97 0.01 0.68 +décomposés décomposé adj m p 0.24 2.97 0.06 0.34 +décompressa décompresser ver 1.11 0.41 0 0.07 ind:pas:3s; +décompresse décompresser ver 1.11 0.41 0.38 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décompresser décompresser ver 1.11 0.41 0.63 0.14 inf; +décompressez décompresser ver 1.11 0.41 0.05 0 imp:pre:2p;ind:pre:2p; +décompression décompression nom f s 0.5 0.41 0.46 0.34 +décompressions décompression nom f p 0.5 0.41 0.04 0.07 +décompressé décompresser ver m s 1.11 0.41 0.05 0.07 par:pas; +décomprimer décomprimer ver 0.01 0 0.01 0 inf; +décompte décompte nom m s 1.15 0.81 1.11 0.61 +décompter décompter ver 0.19 0.47 0.08 0.27 inf; +décomptes décompte nom m p 1.15 0.81 0.04 0.2 +décompté décompter ver m s 0.19 0.47 0.04 0 par:pas; +décomptés décompter ver m p 0.19 0.47 0 0.07 par:pas; +déconcentrant déconcentrer ver 0.88 0.2 0.01 0.14 par:pre; +déconcentration déconcentration nom f s 0 0.07 0 0.07 +déconcentrent déconcentrer ver 0.88 0.2 0.02 0 ind:pre:3p; +déconcentrer déconcentrer ver 0.88 0.2 0.47 0.07 inf; +déconcentrez déconcentrer ver 0.88 0.2 0.18 0 imp:pre:2p;ind:pre:2p; +déconcentré déconcentrer ver m s 0.88 0.2 0.14 0 par:pas; +déconcentrée déconcentrer ver f s 0.88 0.2 0.05 0 par:pas; +déconcerta déconcerter ver 1.08 7.09 0.01 1.01 ind:pas:3s; +déconcertait déconcerter ver 1.08 7.09 0 0.74 ind:imp:3s; +déconcertant déconcertant adj m s 1.01 4.39 0.63 1.01 +déconcertante déconcertant adj f s 1.01 4.39 0.31 2.23 +déconcertantes déconcertant adj f p 1.01 4.39 0.07 0.61 +déconcertants déconcertant adj m p 1.01 4.39 0 0.54 +déconcerte déconcerter ver 1.08 7.09 0.09 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconcertent déconcerter ver 1.08 7.09 0.17 0.2 ind:pre:3p; +déconcerter déconcerter ver 1.08 7.09 0.06 0.54 inf; +déconcertera déconcerter ver 1.08 7.09 0.01 0.07 ind:fut:3s; +déconcertez déconcerter ver 1.08 7.09 0.05 0 ind:pre:2p; +déconcertèrent déconcerter ver 1.08 7.09 0 0.07 ind:pas:3p; +déconcerté déconcerté adj m s 0.25 2.64 0.2 1.55 +déconcertée déconcerter ver f s 1.08 7.09 0.07 1.35 par:pas; +déconcertés déconcerter ver m p 1.08 7.09 0.39 0.34 par:pas; +déconditionnement déconditionnement nom m s 0.03 0 0.03 0 +déconditionner déconditionner ver 0.01 0 0.01 0 inf; +déconfire déconfire ver 0.03 0.41 0.01 0 inf; +déconfit déconfit adj m s 0.05 0.88 0.04 0.54 +déconfite déconfit adj f s 0.05 0.88 0 0.27 +déconfits déconfit adj m p 0.05 0.88 0.01 0.07 +déconfiture déconfiture nom f s 0.07 1.55 0.07 1.42 +déconfitures déconfiture nom f p 0.07 1.55 0 0.14 +décongela décongeler ver 0.52 0.34 0.01 0 ind:pas:3s; +décongeler décongeler ver 0.52 0.34 0.21 0.07 inf; +décongelé décongeler ver m s 0.52 0.34 0.26 0.27 par:pas; +décongelée décongeler ver f s 0.52 0.34 0.02 0 par:pas; +décongestif décongestif nom m s 0.01 0 0.01 0 +décongestion décongestion nom f s 0.01 0 0.01 0 +décongestionnant décongestionner ver 0.14 0.07 0.04 0 par:pre; +décongestionne décongestionner ver 0.14 0.07 0 0.07 ind:pre:3s; +décongestionner décongestionner ver 0.14 0.07 0.1 0 inf; +décongestionné décongestionner ver m s 0.14 0.07 0.01 0 par:pas; +décongèlera décongeler ver 0.52 0.34 0.01 0 ind:fut:3s; +décongélation décongélation nom f s 0.31 0 0.31 0 +déconnage déconnage nom m s 0 0.61 0 0.54 +déconnages déconnage nom m p 0 0.61 0 0.07 +déconnaient déconner ver 39.86 10.95 0.01 0.07 ind:imp:3p; +déconnais déconner ver 39.86 10.95 0.92 0.41 ind:imp:1s;ind:imp:2s; +déconnait déconner ver 39.86 10.95 0.49 0.61 ind:imp:3s; +déconnant déconner ver 39.86 10.95 0.01 0.2 par:pre; +déconne déconner ver 39.86 10.95 13.38 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconnectaient déconnecter ver 2.6 0.47 0.01 0 ind:imp:3p; +déconnectant déconnecter ver 2.6 0.47 0 0.07 par:pre; +déconnecte déconnecter ver 2.6 0.47 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconnectent déconnecter ver 2.6 0.47 0.01 0 ind:pre:3p; +déconnecter déconnecter ver 2.6 0.47 0.64 0.07 inf; +déconnectez déconnecter ver 2.6 0.47 0.2 0 imp:pre:2p;ind:pre:2p; +déconnectiez déconnecter ver 2.6 0.47 0.03 0 ind:imp:2p; +déconnection déconnection nom f s 0.03 0 0.03 0 +déconnectons déconnecter ver 2.6 0.47 0.02 0 ind:pre:1p; +déconnecté déconnecter ver m s 2.6 0.47 0.92 0.2 par:pas; +déconnectée déconnecter ver f s 2.6 0.47 0.18 0.07 par:pas; +déconnectés déconnecter ver m p 2.6 0.47 0.35 0 par:pas; +déconnent déconner ver 39.86 10.95 0.28 0 ind:pre:3p; +déconner déconner ver 39.86 10.95 9.39 3.04 inf; +déconnerai déconner ver 39.86 10.95 0.03 0 ind:fut:1s; +déconnerais déconner ver 39.86 10.95 0.15 0 cnd:pre:1s; +déconnes déconner ver 39.86 10.95 8.95 1.69 ind:pre:2s;sub:pre:2s; +déconneur déconneur nom m s 0.2 0.2 0.19 0.07 +déconneurs déconneur nom m p 0.2 0.2 0 0.14 +déconneuse déconneur nom f s 0.2 0.2 0.01 0 +déconnexion déconnexion nom f s 0.16 0.07 0.16 0.07 +déconnez déconner ver 39.86 10.95 2.19 0.14 imp:pre:2p;ind:pre:2p; +déconné déconner ver m s 39.86 10.95 4.07 0.68 par:pas; +déconomètre déconomètre nom m s 0 0.07 0 0.07 +déconophone déconophone nom m s 0 0.2 0 0.14 +déconophones déconophone nom m p 0 0.2 0 0.07 +déconseilla déconseiller ver 2.83 2.23 0.14 0.14 ind:pas:3s; +déconseillai déconseiller ver 2.83 2.23 0 0.07 ind:pas:1s; +déconseillait déconseiller ver 2.83 2.23 0.01 0.41 ind:imp:3s; +déconseillant déconseiller ver 2.83 2.23 0.01 0.14 par:pre; +déconseille déconseiller ver 2.83 2.23 1.76 0.27 ind:pre:1s;ind:pre:3s; +déconseiller déconseiller ver 2.83 2.23 0.06 0.07 inf; +déconseillerais déconseiller ver 2.83 2.23 0.12 0.07 cnd:pre:1s; +déconseilles déconseiller ver 2.83 2.23 0 0.07 ind:pre:2s; +déconseillèrent déconseiller ver 2.83 2.23 0 0.14 ind:pas:3p; +déconseillé déconseiller ver m s 2.83 2.23 0.68 0.68 par:pas; +déconseillée déconseiller ver f s 2.83 2.23 0.03 0.14 par:pas; +déconseillées déconseiller ver f p 2.83 2.23 0.01 0.07 par:pas; +déconsidèrent déconsidérer ver 0.03 1.22 0.01 0 ind:pre:3p; +déconsidéraient déconsidérer ver 0.03 1.22 0 0.07 ind:imp:3p; +déconsidérait déconsidérer ver 0.03 1.22 0 0.14 ind:imp:3s; +déconsidérant déconsidérer ver 0.03 1.22 0 0.07 par:pre; +déconsidération déconsidération nom f s 0.01 0 0.01 0 +déconsidérer déconsidérer ver 0.03 1.22 0.01 0.41 inf; +déconsidéré déconsidérer ver m s 0.03 1.22 0.01 0.27 par:pas; +déconsidérée déconsidérer ver f s 0.03 1.22 0 0.2 par:pas; +déconsidérés déconsidérer ver m p 0.03 1.22 0 0.07 par:pas; +déconsigner déconsigner ver 0 0.2 0 0.2 inf; +déconstipe déconstiper ver 0.01 0.07 0 0.07 ind:pre:3s; +déconstiper déconstiper ver 0.01 0.07 0.01 0 inf; +déconstruction déconstruction nom f s 0.08 0.07 0.08 0.07 +déconstruit déconstruire ver m s 0.01 0.07 0.01 0.07 ind:pre:3s;par:pas; +décontaminant décontaminer ver 0.17 0 0.01 0 par:pre; +décontamination décontamination nom f s 0.96 0 0.96 0 +décontaminer décontaminer ver 0.17 0 0.07 0 inf; +décontaminé décontaminer ver m s 0.17 0 0.09 0 par:pas; +décontenancer décontenancer ver 0.22 2.77 0.03 0.07 inf; +décontenancé décontenancé adj m s 0.32 2.84 0.16 2.16 +décontenancée décontenancé adj f s 0.32 2.84 0.16 0.41 +décontenancés décontenancer ver m p 0.22 2.77 0.1 0.2 par:pas; +décontenança décontenancer ver 0.22 2.77 0 0.14 ind:pas:3s; +décontenançaient décontenancer ver 0.22 2.77 0 0.14 ind:imp:3p; +décontenançait décontenancer ver 0.22 2.77 0 0.14 ind:imp:3s; +décontract décontract adj m s 0.24 0.07 0.24 0.07 +décontracta décontracter ver 1.54 1.28 0 0.2 ind:pas:3s; +décontractaient décontracter ver 1.54 1.28 0 0.07 ind:imp:3p; +décontractait décontracter ver 1.54 1.28 0 0.14 ind:imp:3s; +décontractant décontracter ver 1.54 1.28 0.2 0.2 par:pre; +décontracte décontracter ver 1.54 1.28 0.13 0.2 imp:pre:2s;ind:pre:3s; +décontracter décontracter ver 1.54 1.28 0.27 0.14 inf; +décontractez décontracter ver 1.54 1.28 0.07 0.07 imp:pre:2p; +décontraction décontraction nom f s 0.15 1.28 0.15 1.28 +décontracté décontracter ver m s 1.54 1.28 0.75 0.07 par:pas; +décontractée décontracté adj f s 1.07 1.01 0.26 0.27 +décontractées décontracté adj f p 1.07 1.01 0.03 0.07 +décontractés décontracté adj m p 1.07 1.01 0.17 0 +déconvenue déconvenue nom f s 0.32 2.16 0.16 1.42 +déconvenues déconvenue nom f p 0.32 2.16 0.16 0.74 +décor décor nom m s 8.38 45.61 6.01 38.78 +décora décorer ver 8.54 20.2 0 0.34 ind:pas:3s; +décorai décorer ver 8.54 20.2 0 0.14 ind:pas:1s; +décoraient décorer ver 8.54 20.2 0.03 0.68 ind:imp:3p; +décorais décorer ver 8.54 20.2 0.1 0 ind:imp:1s; +décorait décorer ver 8.54 20.2 0.21 0.74 ind:imp:3s; +décorant décorer ver 8.54 20.2 0.03 0.81 par:pre; +décorateur décorateur nom m s 2.56 3.11 1.37 2.03 +décorateurs décorateur nom m p 2.56 3.11 0.36 0.88 +décoratif décoratif adj m s 0.83 4.12 0.38 1.35 +décoratifs décoratif adj m p 0.83 4.12 0.12 1.22 +décoration décoration nom f s 8.15 11.76 4.8 6.35 +décorations décoration nom f p 8.15 11.76 3.35 5.41 +décorative décoratif adj f s 0.83 4.12 0.15 0.88 +décoratives décoratif adj f p 0.83 4.12 0.19 0.68 +décoratrice décorateur nom f s 2.56 3.11 0.81 0.14 +décoratrices décorateur nom f p 2.56 3.11 0.02 0.07 +décore décorer ver 8.54 20.2 0.92 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décorent décorer ver 8.54 20.2 0.43 0.47 ind:pre:3p; +décorer décorer ver 8.54 20.2 3.38 2.91 inf; +décorera décorer ver 8.54 20.2 0.19 0 ind:fut:3s; +décorerait décorer ver 8.54 20.2 0.03 0.07 cnd:pre:3s; +décoreront décorer ver 8.54 20.2 0.02 0 ind:fut:3p; +décorez décorer ver 8.54 20.2 0.14 0.14 imp:pre:2p;ind:pre:2p; +décorne décorner ver 0.01 0.27 0 0.07 ind:pre:3s; +décorner décorner ver 0.01 0.27 0.01 0.2 inf; +décors décor nom m p 8.38 45.61 2.37 6.82 +décorticage décorticage nom m s 0 0.14 0 0.14 +décortication décortication nom f s 0.01 0 0.01 0 +décortiqua décortiquer ver 0.7 2.64 0 0.14 ind:pas:3s; +décortiquaient décortiquer ver 0.7 2.64 0.01 0.07 ind:imp:3p; +décortiquait décortiquer ver 0.7 2.64 0 0.14 ind:imp:3s; +décortiquant décortiquer ver 0.7 2.64 0 0.07 par:pre; +décortique décortiquer ver 0.7 2.64 0.17 0.47 imp:pre:2s;ind:pre:3s;sub:pre:3s; +décortiquent décortiquer ver 0.7 2.64 0 0.14 ind:pre:3p; +décortiquer décortiquer ver 0.7 2.64 0.4 1.01 inf; +décortiquez décortiquer ver 0.7 2.64 0.03 0.07 imp:pre:2p;ind:pre:2p; +décortiqué décortiquer ver m s 0.7 2.64 0.08 0.34 par:pas; +décortiquée décortiquer ver f s 0.7 2.64 0.01 0 par:pas; +décortiquées décortiquer ver f p 0.7 2.64 0 0.07 par:pas; +décortiqués décortiquer ver m p 0.7 2.64 0 0.14 par:pas; +décorum décorum nom m s 0.17 0.54 0.17 0.54 +décorât décorer ver 8.54 20.2 0 0.07 sub:imp:3s; +décorèrent décorer ver 8.54 20.2 0 0.07 ind:pas:3p; +décoré décorer ver m s 8.54 20.2 2.23 5.95 par:pas; +décorée décorer ver f s 8.54 20.2 0.37 3.38 par:pas; +décorées décorer ver f p 8.54 20.2 0.26 1.49 par:pas; +décorés décoré adj m p 1.28 2.97 0.24 1.08 +découcha découcher ver 1.03 0.88 0 0.07 ind:pas:3s; +découchaient découcher ver 1.03 0.88 0 0.07 ind:imp:3p; +découche découcher ver 1.03 0.88 0.37 0.34 ind:pre:1s;ind:pre:3s; +découcher découcher ver 1.03 0.88 0.2 0.2 inf; +découches découcher ver 1.03 0.88 0.27 0 ind:pre:2s; +découché découcher ver m s 1.03 0.88 0.2 0.2 par:pas; +découd découdre ver 0.69 2.36 0 0.14 ind:pre:3s; +découdre découdre ver 0.69 2.36 0.42 1.15 inf; +découlaient découler ver 1.57 4.12 0 0.34 ind:imp:3p; +découlait découler ver 1.57 4.12 0.01 1.01 ind:imp:3s; +découlant découler ver 1.57 4.12 0.04 0.34 par:pre; +découle découler ver 1.57 4.12 0.98 1.01 ind:pre:3s; +découlent découler ver 1.57 4.12 0.21 0.54 ind:pre:3p; +découler découler ver 1.57 4.12 0.13 0.61 inf; +découlera découler ver 1.57 4.12 0.03 0.07 ind:fut:3s; +découlerait découler ver 1.57 4.12 0.02 0.07 cnd:pre:3s; +découlèrent découler ver 1.57 4.12 0.01 0 ind:pas:3p; +découlé découler ver m s 1.57 4.12 0.14 0.14 par:pas; +découpa découper ver 12.71 32.7 0.01 1.22 ind:pas:3s; +découpage découpage nom m s 0.86 1.96 0.47 1.62 +découpages découpage nom m p 0.86 1.96 0.4 0.34 +découpai découper ver 12.71 32.7 0.01 0.07 ind:pas:1s; +découpaient découper ver 12.71 32.7 0.01 2.03 ind:imp:3p; +découpais découper ver 12.71 32.7 0.08 0.07 ind:imp:1s; +découpait découper ver 12.71 32.7 0.14 4.66 ind:imp:3s; +découpant découper ver 12.71 32.7 0.28 2.43 par:pre; +découpe découper ver 12.71 32.7 2.33 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +découpent découper ver 12.71 32.7 0.22 1.08 ind:pre:3p; +découper découper ver 12.71 32.7 4.36 4.93 inf;; +découpera découper ver 12.71 32.7 0.04 0.14 ind:fut:3s; +découperai découper ver 12.71 32.7 0.21 0.07 ind:fut:1s; +découperaient découper ver 12.71 32.7 0.01 0.07 cnd:pre:3p; +découperais découper ver 12.71 32.7 0.04 0 cnd:pre:1s;cnd:pre:2s; +découperait découper ver 12.71 32.7 0.03 0.14 cnd:pre:3s; +découperont découper ver 12.71 32.7 0.04 0 ind:fut:3p; +découpes découper ver 12.71 32.7 0.49 0 ind:pre:2s; +découpeur découpeur nom m s 0.17 0.07 0.15 0 +découpeurs découpeur nom m p 0.17 0.07 0.01 0.07 +découpeuse découpeur nom f s 0.17 0.07 0.01 0 +découpez découper ver 12.71 32.7 0.33 0.07 imp:pre:2p;ind:pre:2p; +découpions découper ver 12.71 32.7 0 0.07 ind:imp:1p; +découplage découplage nom m s 0.01 0 0.01 0 +découpler découpler ver 0.04 0.07 0.01 0 inf; +découplons découpler ver 0.04 0.07 0.01 0 imp:pre:1p; +découplé découplé adj m s 0 0.27 0 0.2 +découplée découpler ver f s 0.04 0.07 0.01 0 par:pas; +découpons découper ver 12.71 32.7 0.2 0.14 imp:pre:1p;ind:pre:1p; +découpure découpure nom f s 0.01 1.01 0.01 0.34 +découpures découpure nom f p 0.01 1.01 0 0.68 +découpèrent découper ver 12.71 32.7 0 0.41 ind:pas:3p; +découpé découper ver m s 12.71 32.7 2.5 4.73 par:pas; +découpée découper ver f s 12.71 32.7 0.92 2.23 par:pas; +découpées découpé adj f p 0.64 3.38 0.1 0.74 +découpés découper ver m p 12.71 32.7 0.42 2.3 par:pas; +décourage décourager ver 4.84 15.47 1.13 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +découragea décourager ver 4.84 15.47 0.01 0.41 ind:pas:3s; +décourageai décourager ver 4.84 15.47 0 0.07 ind:pas:1s; +décourageaient décourager ver 4.84 15.47 0 0.27 ind:imp:3p; +décourageais décourager ver 4.84 15.47 0.01 0.14 ind:imp:1s; +décourageait décourager ver 4.84 15.47 0.02 1.15 ind:imp:3s; +décourageant décourageant adj m s 0.34 1.96 0.19 0.74 +décourageante décourageant adj f s 0.34 1.96 0.14 0.41 +décourageantes décourageant adj f p 0.34 1.96 0.01 0.41 +décourageants décourageant adj m p 0.34 1.96 0 0.41 +découragement découragement nom m s 0.27 6.82 0.27 6.28 +découragements découragement nom m p 0.27 6.82 0 0.54 +découragent décourager ver 4.84 15.47 0.27 0.2 ind:pre:3p; +décourageons décourager ver 4.84 15.47 0.03 0 imp:pre:1p;ind:pre:1p; +décourager décourager ver 4.84 15.47 1.9 5.61 inf; +découragera décourager ver 4.84 15.47 0.07 0 ind:fut:3s; +découragerais décourager ver 4.84 15.47 0.1 0.14 cnd:pre:1s;cnd:pre:2s; +découragerait décourager ver 4.84 15.47 0.04 0.2 cnd:pre:3s; +décourages décourager ver 4.84 15.47 0.16 0.2 ind:pre:2s; +découragez décourager ver 4.84 15.47 0.49 0.07 imp:pre:2p;ind:pre:2p; +décourageât décourager ver 4.84 15.47 0 0.07 sub:imp:3s; +découragèrent décourager ver 4.84 15.47 0 0.14 ind:pas:3p; +découragé décourager ver m s 4.84 15.47 0.41 2.64 par:pas; +découragée décourager ver f s 4.84 15.47 0.09 0.88 par:pas; +découragées décourager ver f p 4.84 15.47 0.01 0.07 par:pas; +découragés décourager ver m p 4.84 15.47 0.08 0.88 par:pas; +découronné découronner ver m s 0 0.27 0 0.2 par:pas; +découronnés découronner ver m p 0 0.27 0 0.07 par:pas; +décours décours nom m 0 0.14 0 0.14 +décousit découdre ver 0.69 2.36 0 0.14 ind:pas:3s; +décousu décousu adj m s 0.49 1.62 0.2 0.54 +décousue décousu adj f s 0.49 1.62 0.17 0.54 +décousues décousu adj f p 0.49 1.62 0.01 0.34 +décousus décousu adj m p 0.49 1.62 0.11 0.2 +découvert découvrir ver m s 124.2 198.18 46.22 30.54 par:pas; +découverte découverte nom f s 12.46 29.53 9.25 23.18 +découvertes découverte nom f p 12.46 29.53 3.21 6.35 +découverts découvrir ver m p 124.2 198.18 1.89 1.76 par:pas; +découvraient découvrir ver 124.2 198.18 0.2 3.92 ind:imp:3p; +découvrais découvrir ver 124.2 198.18 0.54 8.31 ind:imp:1s;ind:imp:2s; +découvrait découvrir ver 124.2 198.18 1.3 17.64 ind:imp:3s; +découvrant découvrir ver 124.2 198.18 1.11 14.12 par:pre; +découvre découvrir ver 124.2 198.18 17.37 26.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +découvrent découvrir ver 124.2 198.18 2.77 3.65 ind:pre:3p;sub:pre:3p; +découvres découvrir ver 124.2 198.18 1.43 0.2 ind:pre:2s; +découvreur découvreur nom m s 0.33 0.81 0.2 0.47 +découvreurs découvreur nom m p 0.33 0.81 0.11 0.34 +découvreuse découvreur nom f s 0.33 0.81 0.01 0 +découvrez découvrir ver 124.2 198.18 2.26 0.47 imp:pre:2p;ind:pre:2p; +découvriez découvrir ver 124.2 198.18 0.27 0.14 ind:imp:2p; +découvrions découvrir ver 124.2 198.18 0.07 2.5 ind:imp:1p; +découvrir découvrir ver 124.2 198.18 37.11 50.88 inf; +découvrira découvrir ver 124.2 198.18 2.44 1.22 ind:fut:3s; +découvrirai découvrir ver 124.2 198.18 1.47 0.14 ind:fut:1s; +découvriraient découvrir ver 124.2 198.18 0.04 0.07 cnd:pre:3p; +découvrirais découvrir ver 124.2 198.18 0.3 0.41 cnd:pre:1s;cnd:pre:2s; +découvrirait découvrir ver 124.2 198.18 0.46 1.69 cnd:pre:3s; +découvriras découvrir ver 124.2 198.18 0.82 0.14 ind:fut:2s; +découvrirent découvrir ver 124.2 198.18 0.38 3.65 ind:pas:3p; +découvrirez découvrir ver 124.2 198.18 0.84 0.27 ind:fut:2p; +découvririez découvrir ver 124.2 198.18 0.04 0 cnd:pre:2p; +découvrirons découvrir ver 124.2 198.18 0.8 0.2 ind:fut:1p; +découvriront découvrir ver 124.2 198.18 0.7 0.47 ind:fut:3p; +découvris découvrir ver 124.2 198.18 0.92 6.82 ind:pas:1s; +découvrisse découvrir ver 124.2 198.18 0 0.07 sub:imp:1s; +découvrissent découvrir ver 124.2 198.18 0 0.07 sub:imp:3p; +découvrit découvrir ver 124.2 198.18 1.61 19.39 ind:pas:3s; +découvrons découvrir ver 124.2 198.18 0.81 1.15 imp:pre:1p;ind:pre:1p; +découvrîmes découvrir ver 124.2 198.18 0.02 1.15 ind:pas:1p; +découvrît découvrir ver 124.2 198.18 0.02 0.88 sub:imp:3s; +décramponner décramponner ver 0 0.07 0 0.07 inf; +décrapouille décrapouiller ver 0 0.07 0 0.07 ind:pre:1s; +décrassage décrassage nom m s 0.04 0.2 0.04 0.2 +décrassait décrasser ver 0.2 1.49 0 0.27 ind:imp:3s; +décrasse décrasser ver 0.2 1.49 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrasser décrasser ver 0.2 1.49 0.1 0.61 inf; +décrassé décrasser ver m s 0.2 1.49 0.02 0.2 par:pas; +décrassés décrasser ver m p 0.2 1.49 0 0.07 par:pas; +décret décret nom m s 4.06 9.12 3.54 6.42 +décret_loi décret_loi nom m s 0.03 0.07 0.03 0.07 +décrets décret nom m p 4.06 9.12 0.52 2.7 +décrie décrier ver 0.3 0.68 0 0.07 ind:pre:3s; +décrier décrier ver 0.3 0.68 0.03 0.2 inf; +décries décrier ver 0.3 0.68 0 0.07 ind:pre:2s; +décriez décrier ver 0.3 0.68 0.15 0 imp:pre:2p;ind:pre:2p; +décriminaliser décriminaliser ver 0.01 0 0.01 0 inf; +décrira décrire ver 28.31 40.2 0.04 0.07 ind:fut:3s; +décrirai décrire ver 28.31 40.2 0.27 0.14 ind:fut:1s; +décriraient décrire ver 28.31 40.2 0.03 0 cnd:pre:3p; +décrirais décrire ver 28.31 40.2 0.4 0.34 cnd:pre:1s;cnd:pre:2s; +décrirait décrire ver 28.31 40.2 0.05 0.14 cnd:pre:3s; +décriras décrire ver 28.31 40.2 0.01 0.07 ind:fut:2s; +décrire décrire ver 28.31 40.2 11.01 13.51 inf; +décrirez décrire ver 28.31 40.2 0.02 0 ind:fut:2p; +décririez décrire ver 28.31 40.2 0.41 0 cnd:pre:2p; +décriront décrire ver 28.31 40.2 0.01 0.07 ind:fut:3p; +décris décrire ver 28.31 40.2 2.42 1.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +décrispe décrisper ver 0.12 0.54 0.09 0.14 imp:pre:2s;ind:pre:3s; +décrisper décrisper ver 0.12 0.54 0.02 0.27 inf; +décrispât décrisper ver 0.12 0.54 0 0.07 sub:imp:3s; +décrispé décrisper ver m s 0.12 0.54 0.01 0.07 par:pas; +décrit décrire ver m s 28.31 40.2 6.93 7.91 ind:pre:3s;par:pas; +décrite décrire ver f s 28.31 40.2 0.78 1.69 par:pas; +décrites décrire ver f p 28.31 40.2 0.17 0.74 par:pas; +décrits décrire ver m p 28.31 40.2 0.36 0.54 par:pas; +décrivaient décrire ver 28.31 40.2 0.03 0.88 ind:imp:3p; +décrivais décrire ver 28.31 40.2 0.13 0.27 ind:imp:1s;ind:imp:2s; +décrivait décrire ver 28.31 40.2 1.07 4.26 ind:imp:3s; +décrivant décrire ver 28.31 40.2 0.56 2.91 par:pre; +décrive décrire ver 28.31 40.2 0.13 0.41 sub:pre:1s;sub:pre:3s; +décrivent décrire ver 28.31 40.2 0.73 0.68 ind:pre:3p; +décrives décrire ver 28.31 40.2 0.05 0 sub:pre:2s; +décrivez décrire ver 28.31 40.2 2.56 0.34 imp:pre:2p;ind:pre:2p; +décriviez décrire ver 28.31 40.2 0.06 0 ind:imp:2p; +décrivirent décrire ver 28.31 40.2 0 0.34 ind:pas:3p; +décrivis décrire ver 28.31 40.2 0 0.41 ind:pas:1s; +décrivit décrire ver 28.31 40.2 0.05 3.04 ind:pas:3s; +décrié décrier ver m s 0.3 0.68 0.03 0.14 par:pas; +décriée décrier ver f s 0.3 0.68 0.1 0.2 par:pas; +décriées décrié adj f p 0.02 0.54 0.01 0.07 +décriés décrié adj m p 0.02 0.54 0.01 0.07 +décrocha décrocher ver 25 30.41 0.05 5.47 ind:pas:3s; +décrochage décrochage nom m s 0.25 0.54 0.25 0.47 +décrochages décrochage nom m p 0.25 0.54 0 0.07 +décrochai décrocher ver 25 30.41 0.01 0.74 ind:pas:1s; +décrochaient décrocher ver 25 30.41 0.01 0.47 ind:imp:3p; +décrochais décrocher ver 25 30.41 0.23 0.41 ind:imp:1s;ind:imp:2s; +décrochait décrocher ver 25 30.41 0.15 1.15 ind:imp:3s; +décrochant décrocher ver 25 30.41 0.05 0.95 par:pre; +décroche décrocher ver 25 30.41 9.95 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrochement décrochement nom m s 0 0.47 0 0.34 +décrochements décrochement nom m p 0 0.47 0 0.14 +décrochent décrocher ver 25 30.41 0.38 0.47 ind:pre:3p; +décrocher décrocher ver 25 30.41 6.02 7.91 inf; +décrochera décrocher ver 25 30.41 0.11 0.07 ind:fut:3s; +décrocherai décrocher ver 25 30.41 0.25 0 ind:fut:1s; +décrocheraient décrocher ver 25 30.41 0 0.07 cnd:pre:3p; +décrocherais décrocher ver 25 30.41 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +décrocherait décrocher ver 25 30.41 0.02 0.14 cnd:pre:3s; +décrocheras décrocher ver 25 30.41 0.03 0 ind:fut:2s; +décrocheront décrocher ver 25 30.41 0.05 0 ind:fut:3p; +décrochez décrocher ver 25 30.41 2.08 0.2 imp:pre:2p;ind:pre:2p; +décrochez_moi_ça décrochez_moi_ça nom m 0 0.07 0 0.07 +décrochiez décrocher ver 25 30.41 0.01 0 ind:imp:2p; +décrochons décrocher ver 25 30.41 0.03 0.07 imp:pre:1p;ind:pre:1p; +décrochèrent décrocher ver 25 30.41 0.01 0.2 ind:pas:3p; +décroché décrocher ver m s 25 30.41 5.28 4.8 par:pas; +décrochée décrocher ver f s 25 30.41 0.2 0.47 par:pas; +décrochées décrocher ver f p 25 30.41 0 0.34 par:pas; +décrochés décrocher ver m p 25 30.41 0.02 0.47 par:pas; +décroisa décroiser ver 0.3 1.96 0 0.61 ind:pas:3s; +décroisait décroiser ver 0.3 1.96 0 0.27 ind:imp:3s; +décroisant décroiser ver 0.3 1.96 0 0.14 par:pre; +décroise décroiser ver 0.3 1.96 0.28 0.47 imp:pre:2s;ind:pre:3s; +décroiser décroiser ver 0.3 1.96 0.02 0.07 inf; +décroissaient décroître ver 0.35 6.69 0 0.2 ind:imp:3p; +décroissait décroître ver 0.35 6.69 0 0.41 ind:imp:3s; +décroissance décroissance nom f s 0.01 0 0.01 0 +décroissant décroître ver 0.35 6.69 0.01 1.01 par:pre; +décroissante décroissant adj f s 0.08 1.08 0.04 0.14 +décroissantes décroissant adj f p 0.08 1.08 0 0.2 +décroissants décroissant adj m p 0.08 1.08 0.03 0.14 +décroisse décroître ver 0.35 6.69 0.01 0.07 sub:pre:3s; +décroissent décroître ver 0.35 6.69 0.01 0.2 ind:pre:3p; +décroisé décroiser ver m s 0.3 1.96 0 0.14 par:pas; +décroisées décroiser ver f p 0.3 1.96 0 0.27 par:pas; +décrottages décrottage nom m p 0 0.07 0 0.07 +décrottait décrotter ver 0.05 0.68 0 0.07 ind:imp:3s; +décrottant décrotter ver 0.05 0.68 0.01 0 par:pre; +décrotte décrotter ver 0.05 0.68 0.01 0.14 ind:pre:3s; +décrottent décrotter ver 0.05 0.68 0.02 0.07 ind:pre:3p; +décrotter décrotter ver 0.05 0.68 0.01 0.2 inf; +décrottions décrotter ver 0.05 0.68 0 0.07 ind:imp:1p; +décrottoir décrottoir nom m s 0 0.14 0 0.14 +décrottée décrotter ver f s 0.05 0.68 0 0.07 par:pas; +décrottés décrotter ver m p 0.05 0.68 0 0.07 par:pas; +décroît décroître ver 0.35 6.69 0.24 1.49 ind:pre:3s; +décroître décroître ver 0.35 6.69 0.05 2.23 inf; +décru décroître ver m s 0.35 6.69 0.02 0.41 par:pas; +décrue décrue nom f s 0.02 0.14 0.02 0.14 +décrut décroître ver 0.35 6.69 0.01 0.54 ind:pas:3s; +décryptage décryptage nom m s 0.2 0.14 0.2 0.14 +décryptai décrypter ver 0.89 0.54 0 0.07 ind:pas:1s; +décrypte décrypter ver 0.89 0.54 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrypter décrypter ver 0.89 0.54 0.46 0.34 inf; +décrypteur décrypteur nom m s 0.27 0 0.1 0 +décrypteurs décrypteur nom m p 0.27 0 0.17 0 +décrypté décrypter ver m s 0.89 0.54 0.3 0.07 par:pas; +décryptés décrypter ver m p 0.89 0.54 0.03 0 par:pas; +décrète décréter ver 4.86 10.74 1.18 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrètent décréter ver 4.86 10.74 0.29 0 ind:pre:3p; +décrètes décréter ver 4.86 10.74 0 0.07 ind:pre:2s; +décrédibiliser décrédibiliser ver 0.02 0 0.01 0 inf; +décrédibilisez décrédibiliser ver 0.02 0 0.01 0 ind:pre:2p; +décrépi décrépir ver m s 0.12 0.95 0.03 0.2 par:pas; +décrépie décrépir ver f s 0.12 0.95 0.01 0.2 par:pas; +décrépies décrépir ver f p 0.12 0.95 0.01 0.07 par:pas; +décrépis décrépir ver m p 0.12 0.95 0.01 0.41 par:pas; +décrépit décrépit adj m s 0.6 0.47 0.42 0.07 +décrépite décrépit adj f s 0.6 0.47 0.19 0.27 +décrépites décrépit adj f p 0.6 0.47 0 0.07 +décrépits décrépit adj m p 0.6 0.47 0 0.07 +décrépitude décrépitude nom f s 0.12 1.62 0.12 1.62 +décréta décréter ver 4.86 10.74 0.11 3.11 ind:pas:3s; +décrétai décréter ver 4.86 10.74 0 0.14 ind:pas:1s; +décrétaient décréter ver 4.86 10.74 0 0.2 ind:imp:3p; +décrétais décréter ver 4.86 10.74 0 0.07 ind:imp:1s; +décrétait décréter ver 4.86 10.74 0.01 0.74 ind:imp:3s; +décrétant décréter ver 4.86 10.74 0.02 0.61 par:pre; +décréter décréter ver 4.86 10.74 0.18 0.47 inf; +décrétera décréter ver 4.86 10.74 0 0.07 ind:fut:3s; +décréterai décréter ver 4.86 10.74 0.01 0 ind:fut:1s; +décréterais décréter ver 4.86 10.74 0 0.07 cnd:pre:1s; +décréterait décréter ver 4.86 10.74 0.01 0.14 cnd:pre:3s; +décréteront décréter ver 4.86 10.74 0 0.07 ind:fut:3p; +décrétez décréter ver 4.86 10.74 0.04 0.14 imp:pre:2p;ind:pre:2p; +décrétons décréter ver 4.86 10.74 0.34 0.07 imp:pre:1p;ind:pre:1p; +décrétèrent décréter ver 4.86 10.74 0 0.2 ind:pas:3p; +décrété décréter ver m s 4.86 10.74 2.58 2.23 par:pas; +décrétée décréter ver f s 4.86 10.74 0.07 0.34 par:pas; +décrétés décréter ver m p 4.86 10.74 0.01 0.14 par:pas; +décrêpage décrêpage nom m s 0 0.07 0 0.07 +décrêper décrêper ver 0.01 0.14 0.01 0.14 inf; +décrût décroître ver 0.35 6.69 0 0.14 sub:imp:3s; +décuité décuiter ver m s 0 0.07 0 0.07 par:pas; +déculotta déculotter ver 0.28 1.82 0 0.14 ind:pas:3s; +déculottait déculotter ver 0.28 1.82 0.01 0.14 ind:imp:3s; +déculottant déculotter ver 0.28 1.82 0 0.07 par:pre; +déculotte déculotter ver 0.28 1.82 0.15 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déculotter déculotter ver 0.28 1.82 0.05 0.81 inf; +déculottera déculotter ver 0.28 1.82 0 0.07 ind:fut:3s; +déculotté déculotter ver m s 0.28 1.82 0.07 0.34 par:pas; +déculottée déculottée nom f s 0.13 0 0.12 0 +déculottées déculottée nom f p 0.13 0 0.01 0 +déculottés déculotté nom m p 0.01 0 0.01 0 +déculpabilisait déculpabiliser ver 0.11 0.14 0 0.07 ind:imp:3s; +déculpabiliser déculpabiliser ver 0.11 0.14 0.11 0 inf; +déculpabilisé déculpabiliser ver m s 0.11 0.14 0 0.07 par:pas; +décupla décupler ver 0.5 3.24 0.03 0.27 ind:pas:3s; +décuplaient décupler ver 0.5 3.24 0 0.14 ind:imp:3p; +décuplait décupler ver 0.5 3.24 0 0.47 ind:imp:3s; +décuplant décupler ver 0.5 3.24 0.01 0.27 par:pre; +décuple décupler ver 0.5 3.24 0.2 0.14 ind:pre:3s; +décuplent décupler ver 0.5 3.24 0.01 0.14 ind:pre:3p; +décupler décupler ver 0.5 3.24 0.07 0.41 inf; +décuplera décupler ver 0.5 3.24 0.01 0.07 ind:fut:3s; +décuplerait décupler ver 0.5 3.24 0 0.07 cnd:pre:3s; +décuplèrent décupler ver 0.5 3.24 0.02 0 ind:pas:3p; +décuplé décupler ver m s 0.5 3.24 0.09 0.54 par:pas; +décuplée décupler ver f s 0.5 3.24 0.04 0.41 par:pas; +décuplées décupler ver f p 0.5 3.24 0.01 0.2 par:pas; +décuplés décupler ver m p 0.5 3.24 0 0.14 par:pas; +décuver décuver ver 0.04 0 0.04 0 inf; +décède décéder ver 8.38 3.04 0.26 0.14 ind:pre:3s; +décèdent décéder ver 8.38 3.04 0.03 0 ind:pre:3p; +décèle déceler ver 2 11.15 0.49 0.74 ind:pre:1s;ind:pre:3s; +décèlera déceler ver 2 11.15 0.01 0 ind:fut:3s; +décèlerait déceler ver 2 11.15 0 0.14 cnd:pre:3s; +décèleront déceler ver 2 11.15 0 0.07 ind:fut:3p; +décèles déceler ver 2 11.15 0 0.07 ind:pre:2s; +décès décès nom m 12.82 4.66 12.82 4.66 +décéda décéder ver 8.38 3.04 0.04 0 ind:pas:3s; +décédait décéder ver 8.38 3.04 0.03 0 ind:imp:3s; +décéder décéder ver 8.38 3.04 0.23 0.14 inf; +décédé décéder ver m s 8.38 3.04 4.15 1.62 par:pas; +décédée décéder ver f s 8.38 3.04 2.64 1.08 par:pas; +décédées décéder ver f p 8.38 3.04 0.09 0 par:pas; +décédés décéder ver m p 8.38 3.04 0.91 0.07 par:pas; +décélération décélération nom f s 0.3 0.14 0.3 0.14 +décélérer décélérer ver 0.06 0 0.05 0 inf; +décélérez décélérer ver 0.06 0 0.01 0 imp:pre:2p; +décérébration décérébration nom f s 0.03 0 0.03 0 +décérébrer décérébrer ver 0.22 0.07 0.01 0 inf; +décérébré décérébrer ver m s 0.22 0.07 0.07 0.07 par:pas; +décérébrée décérébrer ver f s 0.22 0.07 0.05 0 par:pas; +décérébrés décérébrer ver m p 0.22 0.07 0.09 0 par:pas; +dédaigna dédaigner ver 2.18 10.47 0.02 0.2 ind:pas:3s; +dédaignables dédaignable adj p 0 0.07 0 0.07 +dédaignaient dédaigner ver 2.18 10.47 0.01 0.54 ind:imp:3p; +dédaignais dédaigner ver 2.18 10.47 0 0.27 ind:imp:1s; +dédaignait dédaigner ver 2.18 10.47 0 2.64 ind:imp:3s; +dédaignant dédaigner ver 2.18 10.47 0.02 1.49 par:pre; +dédaigne dédaigner ver 2.18 10.47 0.38 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dédaignent dédaigner ver 2.18 10.47 0.06 0.07 ind:pre:3p; +dédaigner dédaigner ver 2.18 10.47 0.41 1.49 inf; +dédaignes dédaigner ver 2.18 10.47 0.14 0.07 ind:pre:2s; +dédaigneuse dédaigneux nom f s 0.01 0.07 0.01 0.07 +dédaigneusement dédaigneusement adv 0.01 1.15 0.01 1.15 +dédaigneuses dédaigneux adj f p 0.27 6.55 0.01 0.41 +dédaigneux dédaigneux adj m 0.27 6.55 0.26 3.85 +dédaignez dédaigner ver 2.18 10.47 0.28 0.14 imp:pre:2p;ind:pre:2p; +dédaignât dédaigner ver 2.18 10.47 0.01 0.27 sub:imp:3s; +dédaigné dédaigner ver m s 2.18 10.47 0.55 1.15 par:pas; +dédaignée dédaigner ver f s 2.18 10.47 0.16 0.34 par:pas; +dédaignés dédaigner ver m p 2.18 10.47 0.14 0.41 par:pas; +dédain dédain nom m s 0.65 10.07 0.65 9.39 +dédains dédain nom m p 0.65 10.07 0 0.68 +dédale dédale nom m s 0.28 5.88 0.27 5.27 +dédales dédale nom m p 0.28 5.88 0.01 0.61 +dédia dédier ver 8.69 7.77 0.11 0.88 ind:pas:3s; +dédiaient dédier ver 8.69 7.77 0 0.34 ind:imp:3p; +dédiait dédier ver 8.69 7.77 0.01 0.61 ind:imp:3s; +dédiant dédier ver 8.69 7.77 0.04 0.2 par:pre; +dédicace dédicace nom f s 1.92 2.3 1.72 1.76 +dédicacer dédicacer ver 1.91 1.49 0.69 0.41 inf; +dédicacerai dédicacer ver 1.91 1.49 0.01 0 ind:fut:1s; +dédicaces dédicace nom f p 1.92 2.3 0.2 0.54 +dédicacez dédicacer ver 1.91 1.49 0.14 0 imp:pre:2p;ind:pre:2p; +dédicaciez dédicacer ver 1.91 1.49 0.01 0 ind:imp:2p; +dédicacé dédicacer ver m s 1.91 1.49 0.25 0.34 par:pas; +dédicacée dédicacé adj f s 0.76 0.61 0.59 0.34 +dédicacées dédicacé adj f p 0.76 0.61 0.01 0 +dédicacés dédicacé adj m p 0.76 0.61 0.04 0.14 +dédicatoire dédicatoire adj f s 0 0.41 0 0.34 +dédicatoires dédicatoire adj f p 0 0.41 0 0.07 +dédicaça dédicacer ver 1.91 1.49 0 0.14 ind:pas:3s; +dédicaçait dédicacer ver 1.91 1.49 0 0.14 ind:imp:3s; +dédie dédier ver 8.69 7.77 1.83 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dédient dédier ver 8.69 7.77 0.14 0.14 ind:pre:3p; +dédier dédier ver 8.69 7.77 1.67 1.08 inf; +dédiera dédier ver 8.69 7.77 0.03 0 ind:fut:3s; +dédierai dédier ver 8.69 7.77 0.03 0.14 ind:fut:1s; +dédierait dédier ver 8.69 7.77 0 0.2 cnd:pre:3s; +dédiez dédier ver 8.69 7.77 0.01 0 imp:pre:2p; +dédions dédier ver 8.69 7.77 0.23 0 imp:pre:1p;ind:pre:1p; +dédire dédire ver 0.04 0.61 0.01 0.27 inf; +dédit dédit nom m s 0.04 0.41 0.04 0.41 +dédite dédire ver f s 0.04 0.61 0.01 0 par:pas; +dédié dédier ver m s 8.69 7.77 3.38 1.55 par:pas; +dédiée dédier ver f s 8.69 7.77 1.07 0.74 par:pas; +dédiées dédier ver f p 8.69 7.77 0.01 0.54 par:pas; +dédiés dédier ver m p 8.69 7.77 0.11 0.41 par:pas; +dédommage dédommager ver 3.05 1.69 0.35 0.14 ind:pre:1s;ind:pre:3s; +dédommagea dédommager ver 3.05 1.69 0.1 0.07 ind:pas:3s; +dédommageait dédommager ver 3.05 1.69 0.14 0.2 ind:imp:3s; +dédommagement dédommagement nom m s 1.18 0.74 1.1 0.54 +dédommagements dédommagement nom m p 1.18 0.74 0.08 0.2 +dédommagent dédommager ver 3.05 1.69 0 0.2 ind:pre:3p; +dédommager dédommager ver 3.05 1.69 1.45 0.47 inf;; +dédommagera dédommager ver 3.05 1.69 0.16 0 ind:fut:3s; +dédommagerai dédommager ver 3.05 1.69 0.25 0.07 ind:fut:1s; +dédommagerait dédommager ver 3.05 1.69 0 0.07 cnd:pre:3s; +dédommagerez dédommager ver 3.05 1.69 0.01 0 ind:fut:2p; +dédommagerons dédommager ver 3.05 1.69 0 0.07 ind:fut:1p; +dédommagé dédommager ver m s 3.05 1.69 0.25 0.34 par:pas; +dédommagée dédommager ver f s 3.05 1.69 0.19 0.07 par:pas; +dédommagés dédommager ver m p 3.05 1.69 0.15 0 par:pas; +dédorent dédorer ver 0 0.47 0 0.07 ind:pre:3p; +dédoré dédorer ver m s 0 0.47 0 0.07 par:pas; +dédorée dédorer ver f s 0 0.47 0 0.07 par:pas; +dédorées dédorer ver f p 0 0.47 0 0.14 par:pas; +dédorés dédorer ver m p 0 0.47 0 0.14 par:pas; +dédouanait dédouaner ver 0.08 0.74 0 0.07 ind:imp:3s; +dédouane dédouaner ver 0.08 0.74 0.01 0.14 ind:pre:1s;ind:pre:3s; +dédouanement dédouanement nom m s 0.14 0 0.14 0 +dédouaner dédouaner ver 0.08 0.74 0.03 0.34 inf; +dédouanez dédouaner ver 0.08 0.74 0 0.07 ind:pre:2p; +dédouané dédouaner ver m s 0.08 0.74 0.01 0.14 par:pas; +dédouanée dédouaner ver f s 0.08 0.74 0.02 0 par:pas; +dédouanés dédouaner ver m p 0.08 0.74 0.01 0 par:pas; +dédoubla dédoubler ver 0.97 2.03 0 0.07 ind:pas:3s; +dédoublaient dédoubler ver 0.97 2.03 0 0.14 ind:imp:3p; +dédoublais dédoubler ver 0.97 2.03 0 0.07 ind:imp:1s; +dédoublait dédoubler ver 0.97 2.03 0 0.07 ind:imp:3s; +dédouble dédoubler ver 0.97 2.03 0.04 0.14 ind:pre:3s; +dédoublement dédoublement nom m s 0.46 1.01 0.46 1.01 +dédoubler dédoubler ver 0.97 2.03 0.12 0.68 inf; +dédoublerait dédoubler ver 0.97 2.03 0 0.07 cnd:pre:3s; +dédoublez dédoubler ver 0.97 2.03 0.02 0 imp:pre:2p; +dédoublons dédoubler ver 0.97 2.03 0.01 0 imp:pre:1p; +dédoublé dédoubler ver m s 0.97 2.03 0.44 0.54 par:pas; +dédoublée dédoubler ver f s 0.97 2.03 0.13 0.14 par:pas; +dédoublées dédoubler ver f p 0.97 2.03 0 0.07 par:pas; +dédoublés dédoubler ver m p 0.97 2.03 0.21 0.07 par:pas; +dédramatisant dédramatiser ver 0.06 0.27 0 0.07 par:pre; +dédramatise dédramatiser ver 0.06 0.27 0.02 0 imp:pre:2s;ind:pre:1s; +dédramatiser dédramatiser ver 0.06 0.27 0.03 0.2 inf; +déducteur déducteur nom m s 0 0.14 0 0.14 +déductibilité déductibilité nom f s 0.07 0 0.07 0 +déductible déductible adj f s 0.56 0 0.4 0 +déductibles déductible adj f p 0.56 0 0.16 0 +déductif déductif adj m s 0.16 0.07 0.14 0 +déduction déduction nom f s 2.06 2.16 1.55 1.08 +déductions déduction nom f p 2.06 2.16 0.52 1.08 +déductive déductif adj f s 0.16 0.07 0.03 0.07 +déduira déduire ver 7.08 6.01 0.05 0.14 ind:fut:3s; +déduirai déduire ver 7.08 6.01 0.31 0 ind:fut:1s; +déduiraient déduire ver 7.08 6.01 0.01 0.07 cnd:pre:3p; +déduirait déduire ver 7.08 6.01 0.03 0 cnd:pre:3s; +déduire déduire ver 7.08 6.01 2 2.36 inf; +déduirez déduire ver 7.08 6.01 0.04 0.07 ind:fut:2p; +déduis déduire ver 7.08 6.01 1.54 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +déduisaient déduire ver 7.08 6.01 0.01 0.14 ind:imp:3p; +déduisait déduire ver 7.08 6.01 0 0.27 ind:imp:3s; +déduisant déduire ver 7.08 6.01 0.02 0 par:pre; +déduise déduire ver 7.08 6.01 0.04 0.07 sub:pre:1s;sub:pre:3s; +déduisent déduire ver 7.08 6.01 0.08 0.07 ind:pre:3p; +déduisez déduire ver 7.08 6.01 0.28 0.07 imp:pre:2p;ind:pre:2p; +déduisiez déduire ver 7.08 6.01 0.01 0.07 ind:imp:2p; +déduisit déduire ver 7.08 6.01 0.02 0.34 ind:pas:3s; +déduisons déduire ver 7.08 6.01 0 0.14 imp:pre:1p;ind:pre:1p; +déduit déduire ver m s 7.08 6.01 2.41 1.22 ind:pre:3s;par:pas; +déduite déduire ver f s 7.08 6.01 0.01 0.34 par:pas; +déduites déduire ver f p 7.08 6.01 0.03 0.14 par:pas; +déduits déduire ver m p 7.08 6.01 0.2 0.14 par:pas; +déesse déesse nom f s 13.56 8.65 11.82 6.42 +déesses déesse nom f p 13.56 8.65 1.74 2.23 +défaillais défaillir ver 1.32 5.47 0.01 0.07 ind:imp:1s; +défaillait défaillir ver 1.32 5.47 0.02 0.54 ind:imp:3s; +défaillance défaillance nom f s 2.37 7.57 2.06 5.47 +défaillances défaillance nom f p 2.37 7.57 0.31 2.09 +défaillant défaillant adj m s 1.02 2.3 0.36 0.81 +défaillante défaillant adj f s 1.02 2.3 0.54 0.81 +défaillantes défaillant adj f p 1.02 2.3 0.04 0.27 +défaillants défaillant adj m p 1.02 2.3 0.09 0.41 +défaille défaillir ver 1.32 5.47 0.65 0.88 sub:pre:1s;sub:pre:3s; +défaillent défaillir ver 1.32 5.47 0.01 0.14 ind:pre:3p; +défailli défaillir ver m s 1.32 5.47 0.01 0.34 par:pas; +défaillir défaillir ver 1.32 5.47 0.58 2.91 inf; +défaillirait défaillir ver 1.32 5.47 0 0.07 cnd:pre:3s; +défaillis défaillir ver 1.32 5.47 0.02 0.07 ind:pas:1s; +défaillit défaillir ver 1.32 5.47 0 0.27 ind:pas:3s; +défaire défaire ver 12.3 32.23 5.26 10.14 inf; +défais défaire ver 12.3 32.23 2.13 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +défaisaient défaire ver 12.3 32.23 0.03 0.81 ind:imp:3p; +défaisais défaire ver 12.3 32.23 0.02 0.14 ind:imp:1s;ind:imp:2s; +défaisait défaire ver 12.3 32.23 0.04 2.5 ind:imp:3s; +défaisant défaire ver 12.3 32.23 0.11 0.88 par:pre; +défaisons défaire ver 12.3 32.23 0.01 0.07 ind:pre:1p; +défait défaire ver m s 12.3 32.23 2.25 7.84 ind:pre:3s;par:pas; +défaite défaite nom f s 8.38 21.82 7.64 19.46 +défaites défaire ver f p 12.3 32.23 0.75 0.14 imp:pre:2p;ind:pre:2p;par:pas; +défaitisme défaitisme nom m s 0.56 0.68 0.56 0.68 +défaitiste défaitiste adj s 1.26 0.41 0.57 0.14 +défaitistes défaitiste adj p 1.26 0.41 0.69 0.27 +défaits défaire ver m p 12.3 32.23 0.57 1.22 par:pas; +défalque défalquer ver 0.01 0.27 0 0.07 ind:pre:3s; +défalquer défalquer ver 0.01 0.27 0.01 0.07 inf; +défalqué défalquer ver m s 0.01 0.27 0 0.07 par:pas; +défalquées défalquer ver f p 0.01 0.27 0 0.07 par:pas; +défarguaient défarguer ver 0 0.61 0 0.07 ind:imp:3p; +défargue défarguer ver 0 0.61 0 0.2 ind:pre:3s; +défarguer défarguer ver 0 0.61 0 0.2 inf; +défargué défarguer ver m s 0 0.61 0 0.14 par:pas; +défasse défaire ver 12.3 32.23 0.05 0.54 sub:pre:1s;sub:pre:3s; +défausse défausser ver 0.02 0.07 0.01 0 ind:pre:3s; +défausser défausser ver 0.02 0.07 0.01 0.07 inf; +défaut défaut nom m s 18.36 38.45 11.24 27.7 +défauts défaut nom m p 18.36 38.45 7.12 10.74 +défaveur défaveur nom f s 0.18 0.41 0.18 0.41 +défavorable défavorable adj s 0.68 2.91 0.56 1.76 +défavorablement défavorablement adv 0 0.2 0 0.2 +défavorables défavorable adj p 0.68 2.91 0.12 1.15 +défavorisait défavoriser ver 0.06 0.2 0 0.07 ind:imp:3s; +défavorisent défavoriser ver 0.06 0.2 0.01 0 ind:pre:3p; +défavorisé défavorisé adj m s 0.53 0.54 0.07 0.14 +défavorisée défavorisé adj f s 0.53 0.54 0.05 0.07 +défavorisées défavorisé adj f p 0.53 0.54 0.03 0.2 +défavorisés défavorisé adj m p 0.53 0.54 0.39 0.14 +défectible défectible adj s 0 0.07 0 0.07 +défectif défectif adj m s 0.01 0 0.01 0 +défection défection nom f s 0.44 1.35 0.42 1.15 +défectionnaires défectionnaire adj p 0 0.07 0 0.07 +défections défection nom f p 0.44 1.35 0.02 0.2 +défectueuse défectueux adj f s 2.54 1.89 0.6 0.61 +défectueusement défectueusement adv 0 0.07 0 0.07 +défectueuses défectueux adj f p 2.54 1.89 0.19 0.54 +défectueux défectueux adj m 2.54 1.89 1.74 0.74 +défectuosité défectuosité nom f s 0.01 0.14 0.01 0.14 +défend défendre ver 78.55 91.08 7 6.01 ind:pre:3s; +défendable défendable adj f s 0.2 0.2 0.2 0.2 +défendaient défendre ver 78.55 91.08 0.2 2.36 ind:imp:3p; +défendais défendre ver 78.55 91.08 0.7 1.82 ind:imp:1s;ind:imp:2s; +défendait défendre ver 78.55 91.08 1.39 8.18 ind:imp:3s; +défendant défendre ver 78.55 91.08 1.64 2.16 par:pre; +défende défendre ver 78.55 91.08 0.56 0.47 sub:pre:1s;sub:pre:3s; +défendent défendre ver 78.55 91.08 1.81 2.09 ind:pre:3p; +défenderesse défendeur nom f s 0.5 0 0.03 0 +défendes défendre ver 78.55 91.08 0.22 0.2 sub:pre:2s; +défendeur défendeur nom m s 0.5 0 0.43 0 +défendeurs défendeur nom m p 0.5 0 0.04 0 +défendez défendre ver 78.55 91.08 2.94 0.88 imp:pre:2p;ind:pre:2p; +défendiez défendre ver 78.55 91.08 0.13 0.14 ind:imp:2p; +défendions défendre ver 78.55 91.08 0.02 0.27 ind:imp:1p; +défendirent défendre ver 78.55 91.08 0.01 0.14 ind:pas:3p; +défendis défendre ver 78.55 91.08 0.1 0.27 ind:pas:1s; +défendit défendre ver 78.55 91.08 0.01 1.22 ind:pas:3s; +défendons défendre ver 78.55 91.08 0.75 0.47 imp:pre:1p;ind:pre:1p; +défendra défendre ver 78.55 91.08 1 0.68 ind:fut:3s; +défendrai défendre ver 78.55 91.08 1.8 0.61 ind:fut:1s; +défendraient défendre ver 78.55 91.08 0.13 0.34 cnd:pre:3p; +défendrais défendre ver 78.55 91.08 0.14 0.47 cnd:pre:1s;cnd:pre:2s; +défendrait défendre ver 78.55 91.08 0.11 1.15 cnd:pre:3s; +défendras défendre ver 78.55 91.08 0.06 0.07 ind:fut:2s; +défendre défendre ver 78.55 91.08 36.58 41.49 inf; +défendrez défendre ver 78.55 91.08 0.22 0.14 ind:fut:2p; +défendriez défendre ver 78.55 91.08 0.06 0.14 cnd:pre:2p; +défendrons défendre ver 78.55 91.08 0.37 0.14 ind:fut:1p; +défendront défendre ver 78.55 91.08 0.23 0.27 ind:fut:3p; +défends défendre ver 78.55 91.08 9.24 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +défendu défendre ver m s 78.55 91.08 9.18 10.81 par:pas; +défendue défendre ver f s 78.55 91.08 1.37 2.16 par:pas; +défendues défendre ver f p 78.55 91.08 0.1 0.14 par:pas; +défendus défendre ver m p 78.55 91.08 0.5 0.47 par:pas; +défendît défendre ver 78.55 91.08 0 0.47 sub:imp:3s; +défenestraient défenestrer ver 0.44 0.27 0 0.07 ind:imp:3p; +défenestrant défenestrer ver 0.44 0.27 0.01 0 par:pre; +défenestration défenestration nom f s 0.09 0.07 0.09 0.07 +défenestrer défenestrer ver 0.44 0.27 0.17 0 inf; +défenestrerai défenestrer ver 0.44 0.27 0 0.07 ind:fut:1s; +défenestré défenestrer ver m s 0.44 0.27 0.12 0.14 par:pas; +défenestrée défenestrer ver f s 0.44 0.27 0.14 0 par:pas; +défens défens nom m 0.01 0 0.01 0 +défense défense nom f s 50.94 52.3 48.56 47.77 +défenses défense nom f p 50.94 52.3 2.38 4.53 +défenseur défenseur nom m s 3.74 6.35 2.59 3.38 +défenseurs défenseur nom m p 3.74 6.35 1.15 2.97 +défensif défensif adj m s 2.35 1.96 0.71 0.74 +défensifs défensif adj m p 2.35 1.96 0.33 0 +défensive défensive nom f s 0.98 1.89 0.98 1.89 +défensives défensif adj f p 2.35 1.96 0.57 0.27 +défera défaire ver 12.3 32.23 0.03 0.27 ind:fut:3s; +déferai défaire ver 12.3 32.23 0.05 0.14 ind:fut:1s; +déferaient défaire ver 12.3 32.23 0 0.07 cnd:pre:3p; +déferais défaire ver 12.3 32.23 0.01 0 cnd:pre:1s; +déferait défaire ver 12.3 32.23 0.15 0.27 cnd:pre:3s; +déferas défaire ver 12.3 32.23 0.02 0 ind:fut:2s; +déferez défaire ver 12.3 32.23 0 0.07 ind:fut:2p; +déferla déferler ver 1.38 11.28 0.05 1.22 ind:pas:3s; +déferlaient déferler ver 1.38 11.28 0.03 1.42 ind:imp:3p; +déferlait déferler ver 1.38 11.28 0.03 2.36 ind:imp:3s; +déferlant déferler ver 1.38 11.28 0.02 0.54 par:pre; +déferlante déferlante nom f s 0.26 0.34 0.23 0.2 +déferlantes déferlante nom f p 0.26 0.34 0.03 0.14 +déferle déferler ver 1.38 11.28 0.57 1.55 imp:pre:2s;ind:pre:3s; +déferlement déferlement nom m s 0.34 4.66 0.33 4.53 +déferlements déferlement nom m p 0.34 4.66 0.01 0.14 +déferlent déferler ver 1.38 11.28 0.3 1.15 ind:pre:3p; +déferler déferler ver 1.38 11.28 0.08 1.76 inf; +déferleraient déferler ver 1.38 11.28 0 0.14 cnd:pre:3p; +déferlerait déferler ver 1.38 11.28 0 0.2 cnd:pre:3s; +déferleront déferler ver 1.38 11.28 0 0.07 ind:fut:3p; +déferlez déferler ver 1.38 11.28 0.02 0 imp:pre:2p; +déferlât déferler ver 1.38 11.28 0 0.07 sub:imp:3s; +déferlèrent déferler ver 1.38 11.28 0.01 0 ind:pas:3p; +déferlé déferler ver m s 1.38 11.28 0.28 0.74 par:pas; +déferlées déferler ver f p 1.38 11.28 0 0.07 par:pas; +déferons défaire ver 12.3 32.23 0.1 0.07 ind:fut:1p; +déferont défaire ver 12.3 32.23 0.01 0.07 ind:fut:3p; +déferrer déferrer ver 0.1 0.07 0.1 0 inf; +déferré déferrer ver m s 0.1 0.07 0 0.07 par:pas; +déferré déferré adj m s 0 0.07 0 0.07 +défeuillées défeuiller ver f p 0 0.07 0 0.07 par:pas; +défi défi nom m s 12.24 17.36 10.23 15.2 +défia défier ver 13.49 12.3 0.04 0.27 ind:pas:3s; +défiaient défier ver 13.49 12.3 0.12 0.61 ind:imp:3p; +défiais défier ver 13.49 12.3 0.01 0.27 ind:imp:1s; +défiait défier ver 13.49 12.3 0.23 1.69 ind:imp:3s; +défiance défiance nom f s 0.58 2.09 0.58 1.96 +défiances défiance nom f p 0.58 2.09 0 0.14 +défiant défiant adj m s 0.43 0.34 0.43 0.27 +défiante défiant adj f s 0.43 0.34 0 0.07 +défibreur défibreur nom m s 0.01 0 0.01 0 +défibrillateur défibrillateur nom m s 0.58 0 0.57 0 +défibrillateurs défibrillateur nom m p 0.58 0 0.01 0 +défibrillation défibrillation nom f s 0.14 0 0.14 0 +déficeler déficeler ver 0.01 0.27 0.01 0.14 inf; +déficelle déficeler ver 0.01 0.27 0 0.07 ind:pre:3s; +déficelèrent déficeler ver 0.01 0.27 0 0.07 ind:pas:3p; +déficience déficience nom f s 1.01 1.22 0.56 0.47 +déficiences déficience nom f p 1.01 1.22 0.45 0.74 +déficient déficient adj m s 0.45 0.74 0.21 0.27 +déficiente déficient adj f s 0.45 0.74 0.11 0.41 +déficientes déficient adj f p 0.45 0.74 0.04 0 +déficients déficient adj m p 0.45 0.74 0.09 0.07 +déficit déficit nom m s 1.92 1.42 1.91 0.95 +déficitaire déficitaire adj s 0.1 0.34 0.06 0.07 +déficitaires déficitaire adj p 0.1 0.34 0.04 0.27 +déficits déficit nom m p 1.92 1.42 0.01 0.47 +défie défier ver 13.49 12.3 5.36 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défient défier ver 13.49 12.3 0.86 0.54 ind:pre:3p; +défier défier ver 13.49 12.3 3.92 4.39 inf; +défiera défier ver 13.49 12.3 0.05 0 ind:fut:3s; +défierai défier ver 13.49 12.3 0.05 0 ind:fut:1s; +défierais défier ver 13.49 12.3 0.03 0 cnd:pre:1s; +défierait défier ver 13.49 12.3 0.02 0.14 cnd:pre:3s; +défieriez défier ver 13.49 12.3 0.01 0 cnd:pre:2p; +défierons défier ver 13.49 12.3 0.01 0 ind:fut:1p; +défiez défier ver 13.49 12.3 0.57 0.27 imp:pre:2p;ind:pre:2p; +défigeait défiger ver 0.07 0.07 0 0.07 ind:imp:3s; +défiger défiger ver 0.07 0.07 0.07 0 inf; +défigura défigurer ver 3.28 5.41 0.01 0.14 ind:pas:3s; +défiguraient défigurer ver 3.28 5.41 0 0.27 ind:imp:3p; +défigurais défigurer ver 3.28 5.41 0 0.07 ind:imp:1s; +défigurait défigurer ver 3.28 5.41 0 0.54 ind:imp:3s; +défigurant défigurer ver 3.28 5.41 0.01 0.07 par:pre; +défiguration défiguration nom f s 0.25 0.14 0.24 0.14 +défigurations défiguration nom f p 0.25 0.14 0.01 0 +défigure défigurer ver 3.28 5.41 0.55 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défigurement défigurement nom m s 0.01 0 0.01 0 +défigurent défigurer ver 3.28 5.41 0.01 0.14 ind:pre:3p; +défigurer défigurer ver 3.28 5.41 0.56 0.81 inf; +défigurerait défigurer ver 3.28 5.41 0.01 0.07 cnd:pre:3s; +défiguré défigurer ver m s 3.28 5.41 1.43 1.62 par:pas; +défigurée défigurer ver f s 3.28 5.41 0.62 0.74 par:pas; +défigurées défigurer ver f p 3.28 5.41 0.02 0.07 par:pas; +défigurés défigurer ver m p 3.28 5.41 0.06 0.41 par:pas; +défila défiler ver 10.82 32.64 0 0.54 ind:pas:3s; +défilaient défiler ver 10.82 32.64 0.17 4.73 ind:imp:3p; +défilais défiler ver 10.82 32.64 0.04 0.2 ind:imp:1s;ind:imp:2s; +défilait défiler ver 10.82 32.64 0.2 2.7 ind:imp:3s; +défilant défiler ver 10.82 32.64 0.17 1.15 par:pre; +défilantes défilant adj f p 0 0.14 0 0.07 +défilants défilant adj m p 0 0.14 0 0.07 +défile défiler ver 10.82 32.64 2.66 2.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défilement défilement nom m s 0.01 0.68 0.01 0.61 +défilements défilement nom m p 0.01 0.68 0 0.07 +défilent défiler ver 10.82 32.64 1.04 4.59 ind:pre:3p; +défiler défiler ver 10.82 32.64 4.32 11.28 inf; +défilera défiler ver 10.82 32.64 0.19 0.14 ind:fut:3s; +défileraient défiler ver 10.82 32.64 0 0.27 cnd:pre:3p; +défilerait défiler ver 10.82 32.64 0.02 0.27 cnd:pre:3s; +défileras défiler ver 10.82 32.64 0.01 0 ind:fut:2s; +défilerez défiler ver 10.82 32.64 0.01 0.07 ind:fut:2p; +défilerons défiler ver 10.82 32.64 0.03 0 ind:fut:1p; +défileront défiler ver 10.82 32.64 0.19 0 ind:fut:3p; +défilez défiler ver 10.82 32.64 0.25 0.07 imp:pre:2p;ind:pre:2p; +défiliez défiler ver 10.82 32.64 0.02 0 ind:imp:2p; +défilions défiler ver 10.82 32.64 0.01 0.07 ind:imp:1p; +défilons défiler ver 10.82 32.64 0.01 0.14 ind:pre:1p; +défilèrent défiler ver 10.82 32.64 0.01 1.62 ind:pas:3p; +défilé défilé nom m s 8.05 14.73 7.45 12.3 +défilée défiler ver f s 10.82 32.64 0.07 0 par:pas; +défilés défilé nom m p 8.05 14.73 0.59 2.43 +défini définir ver m s 7.22 14.53 0.82 1.22 par:pas; +définie définir ver f s 7.22 14.53 0.51 1.28 par:pas; +définies défini adj f p 1.4 3.38 0.22 0.14 +définir définir ver 7.22 14.53 3.07 7.7 inf; +définira définir ver 7.22 14.53 0.05 0.07 ind:fut:3s; +définirais définir ver 7.22 14.53 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +définirait définir ver 7.22 14.53 0.04 0.14 cnd:pre:3s; +définiriez définir ver 7.22 14.53 0.1 0 cnd:pre:2p; +définis définir ver m p 7.22 14.53 0.35 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +définissable définissable adj m s 0 0.2 0 0.14 +définissables définissable adj p 0 0.2 0 0.07 +définissaient définir ver 7.22 14.53 0 0.2 ind:imp:3p; +définissait définir ver 7.22 14.53 0.14 1.15 ind:imp:3s; +définissant définir ver 7.22 14.53 0.06 0.14 par:pre; +définisse définir ver 7.22 14.53 0.08 0.07 sub:pre:3s; +définissent définir ver 7.22 14.53 0.36 0.41 ind:pre:3p; +définissez définir ver 7.22 14.53 0.53 0.07 imp:pre:2p;ind:pre:2p; +définissons définir ver 7.22 14.53 0.05 0.07 imp:pre:1p;ind:pre:1p; +définit définir ver 7.22 14.53 0.93 1.28 ind:pre:3s;ind:pas:3s; +définitif définitif adj m s 8.01 31.76 4 10.41 +définitifs définitif adj m p 8.01 31.76 0.3 1.89 +définition définition nom f s 4.95 7.23 4.73 6.28 +définitions définition nom f p 4.95 7.23 0.22 0.95 +définitive définitif adj f s 8.01 31.76 3.43 17.97 +définitivement définitivement adv 9.34 23.51 9.34 23.51 +définitives définitif adj f p 8.01 31.76 0.27 1.49 +défions défier ver 13.49 12.3 0.47 0.07 imp:pre:1p;ind:pre:1p; +défirent défaire ver 12.3 32.23 0 0.27 ind:pas:3p; +défis défi nom m p 12.24 17.36 2.02 2.16 +défiscalisations défiscalisation nom f p 0.01 0 0.01 0 +défiscalisé défiscaliser ver m s 0.01 0 0.01 0 par:pas; +défit défaire ver 12.3 32.23 0.14 3.58 ind:pas:3s; +défièrent défier ver 13.49 12.3 0.02 0.07 ind:pas:3p; +défié défier ver m s 13.49 12.3 1.19 0.68 par:pas; +défiée défier ver f s 13.49 12.3 0.07 0.07 par:pas; +défiés défier ver m p 13.49 12.3 0.16 0.14 par:pas; +déflagrante déflagrant adj f s 0 0.07 0 0.07 +déflagration déflagration nom f s 0.34 2.09 0.31 1.55 +déflagrations déflagration nom f p 0.34 2.09 0.02 0.54 +déflationniste déflationniste adj f s 0.02 0 0.01 0 +déflationnistes déflationniste adj f p 0.02 0 0.01 0 +déflecteur déflecteur adj m s 0.04 0 0.04 0 +déflecteurs déflecteur nom m p 0.08 0.2 0.06 0.14 +défleuri défleurir ver m s 0 0.47 0 0.2 par:pas; +défleuries défleurir ver f p 0 0.47 0 0.2 par:pas; +défleuris défleurir ver m p 0 0.47 0 0.07 par:pas; +déflexion déflexion nom f s 0.09 0 0.09 0 +défloraison défloraison nom f s 0 0.2 0 0.2 +déflorait déflorer ver 0.89 0.81 0.02 0.07 ind:imp:3s; +défloration défloration nom f s 0.01 0.2 0.01 0.2 +déflorer déflorer ver 0.89 0.81 0.12 0.14 inf; +déflorerons déflorer ver 0.89 0.81 0 0.07 ind:fut:1p; +défloré déflorer ver m s 0.89 0.81 0.11 0.2 par:pas; +déflorée déflorer ver f s 0.89 0.81 0.65 0.27 par:pas; +déflorés déflorer ver m p 0.89 0.81 0 0.07 par:pas; +défoliant défoliant nom m s 0.01 0 0.01 0 +défonce défoncer ver 16.85 9.39 3.95 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défoncement défoncement nom m s 0 0.34 0 0.27 +défoncements défoncement nom m p 0 0.34 0 0.07 +défoncent défoncer ver 16.85 9.39 0.5 0.27 ind:pre:3p; +défoncer défoncer ver 16.85 9.39 5.22 2.84 inf; +défoncera défoncer ver 16.85 9.39 0.06 0.14 ind:fut:3s; +défoncerai défoncer ver 16.85 9.39 0.19 0.07 ind:fut:1s; +défonceraient défoncer ver 16.85 9.39 0.01 0.07 cnd:pre:3p; +défoncerait défoncer ver 16.85 9.39 0.04 0.07 cnd:pre:3s; +défonceront défoncer ver 16.85 9.39 0 0.07 ind:fut:3p; +défonceuse défonceuse nom f s 0.02 0.14 0.02 0.14 +défoncez défoncer ver 16.85 9.39 0.31 0 imp:pre:2p;ind:pre:2p; +défoncé défoncer ver m s 16.85 9.39 4.54 2.03 par:pas; +défoncée défoncer ver f s 16.85 9.39 1.3 0.95 par:pas; +défoncées défoncé adj f p 3.97 5.68 0.17 0.81 +défoncés défoncé adj m p 3.97 5.68 0.61 1.55 +défont défaire ver 12.3 32.23 0.05 1.22 ind:pre:3p; +défonça défoncer ver 16.85 9.39 0.01 0.07 ind:pas:3s; +défonçai défoncer ver 16.85 9.39 0 0.07 ind:pas:1s; +défonçaient défoncer ver 16.85 9.39 0.02 0.14 ind:imp:3p; +défonçais défoncer ver 16.85 9.39 0.06 0 ind:imp:1s;ind:imp:2s; +défonçait défoncer ver 16.85 9.39 0.21 0.34 ind:imp:3s; +défonçant défoncer ver 16.85 9.39 0.05 0.2 par:pre; +défonçons défoncer ver 16.85 9.39 0.04 0 imp:pre:1p;ind:pre:1p; +déforestation déforestation nom f s 0.04 0 0.04 0 +déforma déformer ver 2.75 12.43 0 0.41 ind:pas:3s; +déformaient déformer ver 2.75 12.43 0.01 0.27 ind:imp:3p; +déformait déformer ver 2.75 12.43 0.03 1.01 ind:imp:3s; +déformant déformant adj m s 0.07 0.95 0.04 0.27 +déformante déformant adj f s 0.07 0.95 0.04 0.41 +déformantes déformant adj f p 0.07 0.95 0 0.14 +déformants déformant adj m p 0.07 0.95 0 0.14 +déformation déformation nom f s 0.86 2.43 0.75 1.69 +déformations déformation nom f p 0.86 2.43 0.11 0.74 +déforme déformer ver 2.75 12.43 0.55 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déforment déformer ver 2.75 12.43 0.13 0.61 ind:pre:3p; +déformer déformer ver 2.75 12.43 0.62 1.15 inf; +déformera déformer ver 2.75 12.43 0 0.07 ind:fut:3s; +déformerai déformer ver 2.75 12.43 0 0.07 ind:fut:1s; +déformerait déformer ver 2.75 12.43 0.01 0.07 cnd:pre:3s; +déformeront déformer ver 2.75 12.43 0.03 0.07 ind:fut:3p; +déformes déformer ver 2.75 12.43 0.26 0.07 ind:pre:2s; +déformez déformer ver 2.75 12.43 0.2 0.07 imp:pre:2p;ind:pre:2p; +déformé déformer ver m s 2.75 12.43 0.56 2.57 par:pas; +déformée déformé adj f s 1.41 3.65 0.36 0.81 +déformées déformé adj f p 1.41 3.65 0.13 0.68 +déformés déformé adj m p 1.41 3.65 0.38 1.35 +défoulaient défouler ver 3.39 0.74 0.01 0 ind:imp:3p; +défoulais défouler ver 3.39 0.74 0.06 0 ind:imp:1s;ind:imp:2s; +défoulait défouler ver 3.39 0.74 0.05 0 ind:imp:3s; +défoule défouler ver 3.39 0.74 1.31 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défoulement défoulement nom m s 0.06 0.27 0.06 0.27 +défoulent défouler ver 3.39 0.74 0.14 0.07 ind:pre:3p; +défouler défouler ver 3.39 0.74 1.66 0.27 inf; +défoulera défouler ver 3.39 0.74 0.03 0 ind:fut:3s; +défoulerait défouler ver 3.39 0.74 0.01 0.07 cnd:pre:3s; +défoules défouler ver 3.39 0.74 0.09 0 ind:pre:2s; +défouliez défouler ver 3.39 0.74 0.01 0.07 ind:imp:2p; +défouloir défouloir nom m s 0.15 0 0.15 0 +défoulons défouler ver 3.39 0.74 0.01 0 imp:pre:1p; +défoulés défouler ver m p 3.39 0.74 0.01 0 par:pas; +défouraillaient défourailler ver 0.29 0.81 0 0.07 ind:imp:3p; +défouraille défourailler ver 0.29 0.81 0 0.14 ind:pre:3s; +défouraillent défourailler ver 0.29 0.81 0 0.07 ind:pre:3p; +défourailler défourailler ver 0.29 0.81 0.29 0.34 inf; +défouraillerait défourailler ver 0.29 0.81 0 0.07 cnd:pre:3s; +défouraillé défourailler ver m s 0.29 0.81 0 0.14 par:pas; +défourna défourner ver 0 0.14 0 0.07 ind:pas:3s; +défournait défourner ver 0 0.14 0 0.07 ind:imp:3s; +défragmenteur défragmenteur nom m s 0.01 0 0.01 0 +défraiement défraiement nom m s 0.42 0.07 0.05 0 +défraiements défraiement nom m p 0.42 0.07 0.37 0.07 +défraya défrayer ver 0.04 1.55 0.01 0.2 ind:pas:3s; +défrayaient défrayer ver 0.04 1.55 0 0.2 ind:imp:3p; +défrayait défrayer ver 0.04 1.55 0 0.47 ind:imp:3s; +défrayant défrayer ver 0.04 1.55 0 0.07 par:pre; +défrayent défrayer ver 0.04 1.55 0 0.07 ind:pre:3p; +défrayer défrayer ver 0.04 1.55 0 0.41 inf; +défrayèrent défrayer ver 0.04 1.55 0 0.07 ind:pas:3p; +défrayé défrayer ver m s 0.04 1.55 0.03 0.07 par:pas; +défraîchi défraîchi adj m s 0.23 2.77 0.06 0.88 +défraîchie défraîchi adj f s 0.23 2.77 0.16 0.54 +défraîchies défraîchi adj f p 0.23 2.77 0 0.68 +défraîchir défraîchir ver 0.07 1.01 0 0.2 inf; +défraîchis défraîchi adj m p 0.23 2.77 0.01 0.68 +défraîchissait défraîchir ver 0.07 1.01 0 0.07 ind:imp:3s; +défricha défricher ver 0.43 1.82 0 0.07 ind:pas:3s; +défrichage défrichage nom m s 0 0.14 0 0.14 +défrichait défricher ver 0.43 1.82 0 0.07 ind:imp:3s; +défriche défricher ver 0.43 1.82 0.13 0.2 ind:pre:1s;ind:pre:3s; +défrichement défrichement nom m s 0 0.47 0 0.41 +défrichements défrichement nom m p 0 0.47 0 0.07 +défricher défricher ver 0.43 1.82 0.1 0.74 inf; +défricheurs défricheur nom m p 0 0.14 0 0.14 +défriché défricher ver m s 0.43 1.82 0.1 0.47 par:pas; +défrichée défricher ver f s 0.43 1.82 0.1 0.14 par:pas; +défrichées défricher ver f p 0.43 1.82 0 0.07 par:pas; +défrichés défricher ver m p 0.43 1.82 0 0.07 par:pas; +défringue défringuer ver 0 0.2 0 0.14 imp:pre:2s; +défringues défringuer ver 0 0.2 0 0.07 ind:pre:2s; +défripe défriper ver 0 0.34 0 0.14 ind:pre:1s;ind:pre:3s; +défripera défriper ver 0 0.34 0 0.07 ind:fut:3s; +défripé défriper ver m s 0 0.34 0 0.07 par:pas; +défripées défriper ver f p 0 0.34 0 0.07 par:pas; +défrisage défrisage nom m s 0.01 0 0.01 0 +défrisaient défriser ver 0.88 1.01 0 0.07 ind:imp:3p; +défrisait défriser ver 0.88 1.01 0 0.14 ind:imp:3s; +défrise défriser ver 0.88 1.01 0.68 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défriser défriser ver 0.88 1.01 0.05 0.27 inf; +défriserait défriser ver 0.88 1.01 0.02 0 cnd:pre:3s; +défrises défriser ver 0.88 1.01 0.11 0 ind:pre:2s; +défrisé défriser ver m s 0.88 1.01 0.02 0.14 par:pas; +défroissa défroisser ver 0.19 1.28 0 0.07 ind:pas:3s; +défroissai défroisser ver 0.19 1.28 0 0.07 ind:pas:1s; +défroissaient défroisser ver 0.19 1.28 0 0.07 ind:imp:3p; +défroissait défroisser ver 0.19 1.28 0 0.07 ind:imp:3s; +défroissant défroisser ver 0.19 1.28 0 0.2 par:pre; +défroisse défroisser ver 0.19 1.28 0.17 0.07 ind:pre:1s;ind:pre:3s; +défroissent défroisser ver 0.19 1.28 0 0.07 ind:pre:3p; +défroisser défroisser ver 0.19 1.28 0.01 0.34 inf; +défroissé défroisser ver m s 0.19 1.28 0.01 0.14 par:pas; +défroissées défroisser ver f p 0.19 1.28 0 0.07 par:pas; +défroissés défroisser ver m p 0.19 1.28 0 0.14 par:pas; +défroqua défroquer ver 0.12 0.47 0 0.07 ind:pas:3s; +défroque défroque nom f s 0.03 2.16 0.03 1.28 +défroquer défroquer ver 0.12 0.47 0.02 0 inf; +défroques défroque nom f p 0.03 2.16 0 0.88 +défroqué défroquer ver m s 0.12 0.47 0.08 0.2 par:pas; +défroquée défroquer ver f s 0.12 0.47 0.01 0.07 par:pas; +défroqués défroquer ver m p 0.12 0.47 0 0.14 par:pas; +défunt défunt nom m s 6.42 6.28 4.5 2.91 +défunte défunt adj f s 4.79 5.27 1.63 1.28 +défunter défunter ver 0 0.14 0 0.07 inf; +défuntes défunt nom f p 6.42 6.28 0.14 0.14 +défunts défunt nom m p 6.42 6.28 1.06 1.69 +défunté défunter ver m s 0 0.14 0 0.07 par:pas; +défèque déféquer ver 0.92 0.61 0.04 0.07 ind:pre:3s; +défécation défécation nom f s 0.01 0.81 0.01 0.61 +défécations défécation nom f p 0.01 0.81 0 0.2 +défécatoire défécatoire adj s 0 0.41 0 0.41 +déféminiser déféminiser ver 0.01 0 0.01 0 inf; +déféquaient déféquer ver 0.92 0.61 0.14 0.07 ind:imp:3p; +déféquant déféquer ver 0.92 0.61 0.03 0.07 par:pre; +déféquassent déféquer ver 0.92 0.61 0.14 0 sub:imp:3p; +déféquer déféquer ver 0.92 0.61 0.48 0.27 inf; +déféqué déféquer ver m s 0.92 0.61 0.09 0.14 par:pas; +déféra déférer ver 0.42 0.47 0 0.07 ind:pas:3s; +déférait déférer ver 0.42 0.47 0 0.07 ind:imp:3s; +déférant déférer ver 0.42 0.47 0 0.07 par:pre; +déférence déférence nom f s 0.08 4.26 0.08 4.26 +déférent déférent adj m s 0.01 2.7 0 1.42 +déférente déférent adj f s 0.01 2.7 0 0.81 +déférentes déférent adj f p 0.01 2.7 0 0.2 +déférents déférent adj m p 0.01 2.7 0.01 0.27 +déférer déférer ver 0.42 0.47 0.05 0.07 inf; +déférerait déférer ver 0.42 0.47 0 0.07 cnd:pre:3s; +déféré déférer ver m s 0.42 0.47 0.36 0.07 par:pas; +déférés déférer ver m p 0.42 0.47 0.01 0.07 par:pas; +dégage dégager ver 102.47 58.04 56.41 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dégagea dégager ver 102.47 58.04 0 6.62 ind:pas:3s; +dégageai dégager ver 102.47 58.04 0 0.27 ind:pas:1s; +dégageaient dégager ver 102.47 58.04 0.04 1.62 ind:imp:3p; +dégageait dégager ver 102.47 58.04 0.22 8.85 ind:imp:3s; +dégageant dégager ver 102.47 58.04 0.32 3.92 par:pre; +dégagement dégagement nom m s 0.44 0.74 0.44 0.54 +dégagements dégagement nom m p 0.44 0.74 0 0.2 +dégagent dégager ver 102.47 58.04 1.18 1.42 ind:pre:3p; +dégageons dégager ver 102.47 58.04 0.67 0.14 imp:pre:1p;ind:pre:1p; +dégager dégager ver 102.47 58.04 8.22 15.2 inf; +dégagera dégager ver 102.47 58.04 0.22 0.07 ind:fut:3s; +dégageraient dégager ver 102.47 58.04 0 0.07 cnd:pre:3p; +dégagerais dégager ver 102.47 58.04 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +dégagerait dégager ver 102.47 58.04 0.02 0.34 cnd:pre:3s; +dégageront dégager ver 102.47 58.04 0.03 0 ind:fut:3p; +dégages dégager ver 102.47 58.04 3.15 0.14 ind:pre:2s;sub:pre:2s; +dégagez dégager ver 102.47 58.04 27.61 0.41 imp:pre:2p;ind:pre:2p; +dégageât dégager ver 102.47 58.04 0 0.14 sub:imp:3s; +dégagèrent dégager ver 102.47 58.04 0.03 0.27 ind:pas:3p; +dégagé dégager ver m s 102.47 58.04 2.96 4.39 par:pas; +dégagée dégager ver f s 102.47 58.04 1.04 2.7 par:pas; +dégagées dégager ver f p 102.47 58.04 0.08 0.41 par:pas; +dégagés dégager ver m p 102.47 58.04 0.25 0.68 par:pas; +dégaina dégainer ver 4.95 1.96 0.01 0.07 ind:pas:3s; +dégainais dégainer ver 4.95 1.96 0.02 0 ind:imp:1s;ind:imp:2s; +dégainait dégainer ver 4.95 1.96 0.06 0 ind:imp:3s; +dégainant dégainer ver 4.95 1.96 0.01 0.14 par:pre; +dégaine dégaine nom f s 1.45 3.18 1.43 3.11 +dégainent dégainer ver 4.95 1.96 0.04 0 ind:pre:3p; +dégainer dégainer ver 4.95 1.96 1.62 0.54 inf; +dégainerai dégainer ver 4.95 1.96 0.01 0 ind:fut:1s; +dégainerez dégainer ver 4.95 1.96 0.01 0 ind:fut:2p; +dégaines dégainer ver 4.95 1.96 0.15 0 ind:pre:2s; +dégainez dégainer ver 4.95 1.96 0.81 0 imp:pre:2p;ind:pre:2p; +dégainèrent dégainer ver 4.95 1.96 0 0.07 ind:pas:3p; +dégainé dégainer ver m s 4.95 1.96 0.8 0.41 par:pas; +dégainés dégainer ver m p 4.95 1.96 0 0.14 par:pas; +déganta déganter ver 0.02 0.34 0 0.07 ind:pas:3s; +dégantant déganter ver 0.02 0.34 0 0.07 par:pre; +déganté déganter ver m s 0.02 0.34 0.01 0 par:pas; +dégantée déganter ver f s 0.02 0.34 0.01 0.14 par:pas; +dégantées déganter ver f p 0.02 0.34 0 0.07 par:pas; +dégarni dégarni adj m s 0.4 1.82 0.39 1.69 +dégarnie dégarni adj f s 0.4 1.82 0.01 0 +dégarnies dégarni adj f p 0.4 1.82 0 0.14 +dégarnir dégarnir ver 0.17 1.01 0.02 0.14 inf; +dégarnis dégarnir ver m p 0.17 1.01 0.04 0 ind:pre:1s;par:pas; +dégarnissait dégarnir ver 0.17 1.01 0 0.14 ind:imp:3s; +dégarnissant dégarnir ver 0.17 1.01 0 0.07 par:pre; +dégauchi dégauchir ver m s 0 2.57 0 0.41 par:pas; +dégauchie dégauchir ver f s 0 2.57 0 0.2 par:pas; +dégauchir dégauchir ver 0 2.57 0 1.69 inf; +dégauchira dégauchir ver 0 2.57 0 0.07 ind:fut:3s; +dégauchis dégauchir ver m p 0 2.57 0 0.14 ind:pre:1s;par:pas; +dégauchisse dégauchir ver 0 2.57 0 0.07 sub:pre:3s; +dégauchisseuse dégauchisseuse nom f s 0 0.07 0 0.07 +dégazage dégazage nom m s 0.03 0 0.03 0 +dégazent dégazer ver 0.01 0.14 0 0.07 ind:pre:3p; +dégazer dégazer ver 0.01 0.14 0.01 0.07 inf; +dégel dégel nom m s 0.47 3.31 0.47 3.31 +dégela dégeler ver 0.7 1.15 0.01 0.07 ind:pas:3s; +dégelai dégeler ver 0.7 1.15 0 0.07 ind:pas:1s; +dégelait dégeler ver 0.7 1.15 0 0.14 ind:imp:3s; +dégelant dégeler ver 0.7 1.15 0.01 0 par:pre; +dégeler dégeler ver 0.7 1.15 0.38 0.34 inf; +dégelez dégeler ver 0.7 1.15 0.01 0 ind:pre:2p; +dégelât dégeler ver 0.7 1.15 0 0.07 sub:imp:3s; +dégelé dégeler ver m s 0.7 1.15 0.08 0.14 par:pas; +dégelée dégeler ver f s 0.7 1.15 0.02 0 par:pas; +dégelées dégelée nom f p 0.01 1.35 0 0.27 +dégelés dégeler ver m p 0.7 1.15 0.04 0.07 par:pas; +dégermait dégermer ver 0 0.07 0 0.07 ind:imp:3s; +dégingandé dégingandé adj m s 0.04 2.03 0.02 1.55 +dégingandée dégingandé adj f s 0.04 2.03 0.01 0.14 +dégingandées dégingandé adj f p 0.04 2.03 0 0.07 +dégingandés dégingandé adj m p 0.04 2.03 0.01 0.27 +dégivrage dégivrage nom m s 0.03 0 0.03 0 +dégivrer dégivrer ver 0.15 0.07 0.11 0 inf; +dégivré dégivrer ver m s 0.15 0.07 0.04 0.07 par:pas; +déglacer déglacer ver 0.06 0 0.01 0 inf; +déglacera déglacer ver 0.06 0 0.01 0 ind:fut:3s; +déglacez déglacer ver 0.06 0 0.02 0 imp:pre:2p; +déglacé déglacer ver m s 0.06 0 0.02 0 par:pas; +déglingua déglinguer ver 1.08 3.72 0 0.07 ind:pas:3s; +déglinguaient déglinguer ver 1.08 3.72 0 0.07 ind:imp:3p; +déglinguait déglinguer ver 1.08 3.72 0 0.27 ind:imp:3s; +déglinguant déglinguer ver 1.08 3.72 0 0.07 par:pre; +déglingue déglinguer ver 1.08 3.72 0.56 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déglinguent déglinguer ver 1.08 3.72 0.01 0.2 ind:pre:3p; +déglinguer déglinguer ver 1.08 3.72 0.26 0.68 inf; +déglinguions déglinguer ver 1.08 3.72 0 0.07 ind:imp:1p; +déglingué déglingué adj m s 0.38 2.43 0.27 1.22 +déglinguée déglinguer ver f s 1.08 3.72 0.07 0.41 par:pas; +déglinguées déglinguer ver f p 1.08 3.72 0.03 0.14 par:pas; +déglingués déglingué adj m p 0.38 2.43 0.05 0.41 +dégluti déglutir ver m s 0.17 3.18 0 0.34 par:pas; +déglutie déglutir ver f s 0.17 3.18 0 0.07 par:pas; +dégluties déglutir ver f p 0.17 3.18 0 0.07 par:pas; +déglutir déglutir ver 0.17 3.18 0.02 0.81 inf; +déglutis déglutir ver m p 0.17 3.18 0 0.14 ind:pre:1s;par:pas; +déglutissait déglutir ver 0.17 3.18 0 0.34 ind:imp:3s; +déglutissant déglutir ver 0.17 3.18 0.14 0.34 par:pre; +déglutit déglutir ver 0.17 3.18 0.01 1.08 ind:pre:3s;ind:pas:3s; +déglutition déglutition nom f s 0.31 1.08 0.31 0.81 +déglutitions déglutition nom f p 0.31 1.08 0 0.27 +dégobilla dégobiller ver 0.12 0.88 0 0.14 ind:pas:3s; +dégobillage dégobillage nom m s 0.01 0 0.01 0 +dégobillaient dégobiller ver 0.12 0.88 0 0.07 ind:imp:3p; +dégobillait dégobiller ver 0.12 0.88 0 0.07 ind:imp:3s; +dégobillant dégobiller ver 0.12 0.88 0 0.14 par:pre; +dégobille dégobiller ver 0.12 0.88 0.05 0.07 imp:pre:2s;ind:pre:3s; +dégobiller dégobiller ver 0.12 0.88 0.05 0.41 inf; +dégobillé dégobiller ver m s 0.12 0.88 0.02 0 par:pas; +dégoisais dégoiser ver 0.41 1.35 0 0.07 ind:imp:2s; +dégoisait dégoiser ver 0.41 1.35 0 0.07 ind:imp:3s; +dégoisant dégoiser ver 0.41 1.35 0 0.07 par:pre; +dégoise dégoiser ver 0.41 1.35 0.39 0.27 imp:pre:2s;ind:pre:3s; +dégoisent dégoiser ver 0.41 1.35 0 0.14 ind:pre:3p; +dégoiser dégoiser ver 0.41 1.35 0.02 0.61 inf; +dégoiserai dégoiser ver 0.41 1.35 0 0.07 ind:fut:1s; +dégoises dégoiser ver 0.41 1.35 0 0.07 ind:pre:2s; +dégommage dégommage nom m s 0.01 0.14 0.01 0.14 +dégommait dégommer ver 2.49 2.03 0.01 0.14 ind:imp:3s; +dégommant dégommer ver 2.49 2.03 0.01 0 par:pre; +dégomme dégommer ver 2.49 2.03 1.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégomment dégommer ver 2.49 2.03 0 0.07 ind:pre:3p; +dégommer dégommer ver 2.49 2.03 0.85 1.08 inf; +dégommera dégommer ver 2.49 2.03 0.02 0 ind:fut:3s; +dégommerai dégommer ver 2.49 2.03 0.01 0.07 ind:fut:1s; +dégommez dégommer ver 2.49 2.03 0.03 0 imp:pre:2p; +dégommons dégommer ver 2.49 2.03 0.01 0 imp:pre:1p; +dégommé dégommer ver m s 2.49 2.03 0.34 0.27 par:pas; +dégommée dégommer ver f s 2.49 2.03 0.02 0 par:pas; +dégommées dégommer ver f p 2.49 2.03 0 0.07 par:pas; +dégommés dégommer ver m p 2.49 2.03 0.16 0.07 par:pas; +dégonfla dégonfler ver 5.64 6.08 0 0.14 ind:pas:3s; +dégonflage dégonflage nom m s 0.01 0.07 0.01 0.07 +dégonflaient dégonfler ver 5.64 6.08 0 0.14 ind:imp:3p; +dégonflais dégonfler ver 5.64 6.08 0.01 0 ind:imp:2s; +dégonflait dégonfler ver 5.64 6.08 0.03 0.47 ind:imp:3s; +dégonflant dégonfler ver 5.64 6.08 0.02 0 par:pre; +dégonflard dégonflard nom m s 0.01 0.27 0.01 0.27 +dégonfle dégonfler ver 5.64 6.08 1.69 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégonflement dégonflement nom m s 0.01 0 0.01 0 +dégonflent dégonfler ver 5.64 6.08 0.19 0.07 ind:pre:3p; +dégonfler dégonfler ver 5.64 6.08 0.76 1.42 inf; +dégonflera dégonfler ver 5.64 6.08 0.09 0.14 ind:fut:3s; +dégonfleraient dégonfler ver 5.64 6.08 0 0.14 cnd:pre:3p; +dégonflerais dégonfler ver 5.64 6.08 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +dégonflerait dégonfler ver 5.64 6.08 0.02 0.07 cnd:pre:3s; +dégonfleriez dégonfler ver 5.64 6.08 0.01 0.07 cnd:pre:2p; +dégonfles dégonfler ver 5.64 6.08 1.17 0.41 ind:pre:2s; +dégonflez dégonfler ver 5.64 6.08 0.11 0.07 imp:pre:2p;ind:pre:2p; +dégonflé dégonflé nom m s 3.63 1.01 2.99 0.61 +dégonflée dégonfler ver f s 5.64 6.08 0.26 0.14 par:pas; +dégonflées dégonfler ver f p 5.64 6.08 0.01 0 par:pas; +dégonflés dégonflé nom m p 3.63 1.01 0.55 0.27 +dégorge dégorger ver 0.22 2.36 0.01 0.34 ind:pre:1s;ind:pre:3s; +dégorgeaient dégorger ver 0.22 2.36 0 0.2 ind:imp:3p; +dégorgeais dégorger ver 0.22 2.36 0.01 0.07 ind:imp:1s;ind:imp:2s; +dégorgeait dégorger ver 0.22 2.36 0 0.61 ind:imp:3s; +dégorgeant dégorger ver 0.22 2.36 0 0.2 par:pre; +dégorgement dégorgement nom m s 0 0.14 0 0.14 +dégorgent dégorger ver 0.22 2.36 0 0.07 ind:pre:3p; +dégorger dégorger ver 0.22 2.36 0.17 0.34 inf; +dégorgeront dégorger ver 0.22 2.36 0 0.07 ind:fut:3p; +dégorgé dégorger ver m s 0.22 2.36 0.02 0.14 par:pas; +dégorgée dégorger ver f s 0.22 2.36 0 0.07 par:pas; +dégorgées dégorger ver f p 0.22 2.36 0 0.14 par:pas; +dégorgés dégorger ver m p 0.22 2.36 0 0.14 par:pas; +dégota dégoter ver 3.47 1.82 0 0.14 ind:pas:3s; +dégotait dégoter ver 3.47 1.82 0.01 0.14 ind:imp:3s; +dégote dégoter ver 3.47 1.82 0.27 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoter dégoter ver 3.47 1.82 1.02 0.61 inf; +dégoterais dégoter ver 3.47 1.82 0.01 0.07 cnd:pre:1s; +dégoteras dégoter ver 3.47 1.82 0.03 0 ind:fut:2s; +dégotez dégoter ver 3.47 1.82 0.03 0.07 imp:pre:2p;ind:pre:2p; +dégotte dégotter ver 1.02 2.16 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégotter dégotter ver 1.02 2.16 0.23 0.95 inf; +dégottera dégotter ver 1.02 2.16 0 0.07 ind:fut:3s; +dégotterai dégotter ver 1.02 2.16 0.01 0.14 ind:fut:1s; +dégotterait dégotter ver 1.02 2.16 0 0.2 cnd:pre:3s; +dégottes dégotter ver 1.02 2.16 0.03 0 ind:pre:2s; +dégotté dégotter ver m s 1.02 2.16 0.53 0.68 par:pas; +dégoté dégoter ver m s 3.47 1.82 1.95 0.41 par:pas; +dégotée dégoter ver f s 3.47 1.82 0.04 0.07 par:pas; +dégotées dégoter ver f p 3.47 1.82 0.1 0.07 par:pas; +dégotés dégoter ver m p 3.47 1.82 0 0.07 par:pas; +dégoulina dégouliner ver 1.34 8.38 0 0.07 ind:pas:3s; +dégoulinade dégoulinade nom f s 0 0.41 0 0.27 +dégoulinades dégoulinade nom f p 0 0.41 0 0.14 +dégoulinaient dégouliner ver 1.34 8.38 0.1 0.54 ind:imp:3p; +dégoulinais dégouliner ver 1.34 8.38 0 0.07 ind:imp:1s; +dégoulinait dégouliner ver 1.34 8.38 0.04 2.64 ind:imp:3s; +dégoulinant dégouliner ver 1.34 8.38 0.09 1.08 par:pre; +dégoulinante dégoulinant adj f s 0.38 3.99 0.16 1.22 +dégoulinantes dégoulinant adj f p 0.38 3.99 0.12 0.68 +dégoulinants dégoulinant adj m p 0.38 3.99 0.04 0.74 +dégouline dégouliner ver 1.34 8.38 0.88 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoulinement dégoulinement nom m s 0.01 0.07 0.01 0 +dégoulinements dégoulinement nom m p 0.01 0.07 0 0.07 +dégoulinent dégouliner ver 1.34 8.38 0.03 0.34 ind:pre:3p; +dégouliner dégouliner ver 1.34 8.38 0.08 0.88 inf; +dégoulines dégouliner ver 1.34 8.38 0.07 0 ind:pre:2s; +dégoulinez dégouliner ver 1.34 8.38 0.02 0 ind:pre:2p; +dégoulinures dégoulinure nom f p 0 0.07 0 0.07 +dégoulinèrent dégouliner ver 1.34 8.38 0 0.07 ind:pas:3p; +dégouliné dégouliner ver m s 1.34 8.38 0.02 0.27 par:pas; +dégoupille dégoupiller ver 0.28 0.74 0.2 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoupiller dégoupiller ver 0.28 0.74 0.01 0.14 inf; +dégoupillâmes dégoupiller ver 0.28 0.74 0 0.07 ind:pas:1p; +dégoupillé dégoupiller ver m s 0.28 0.74 0.01 0 par:pas; +dégoupillée dégoupiller ver f s 0.28 0.74 0.05 0.34 par:pas; +dégoupillées dégoupiller ver f p 0.28 0.74 0.01 0.07 par:pas; +dégourdi dégourdi adj m s 0.28 0.88 0.24 0.41 +dégourdie dégourdi adj f s 0.28 0.88 0.02 0.14 +dégourdies dégourdi adj f p 0.28 0.88 0.01 0.14 +dégourdir dégourdir ver 1.65 3.31 1.4 2.43 inf; +dégourdira dégourdir ver 1.65 3.31 0.01 0 ind:fut:3s; +dégourdiraient dégourdir ver 1.65 3.31 0 0.07 cnd:pre:3p; +dégourdis dégourdir ver m p 1.65 3.31 0.07 0.14 ind:pre:1s;par:pas; +dégourdissais dégourdir ver 1.65 3.31 0 0.07 ind:imp:1s; +dégourdissait dégourdir ver 1.65 3.31 0 0.07 ind:imp:3s; +dégourdissant dégourdir ver 1.65 3.31 0 0.07 par:pre; +dégourdisse dégourdir ver 1.65 3.31 0 0.14 sub:pre:1s;sub:pre:3s; +dégourdissions dégourdir ver 1.65 3.31 0 0.07 ind:imp:1p; +dégourdit dégourdir ver 1.65 3.31 0 0.07 ind:pas:3s; +dégouttaient dégoutter ver 0.12 1.28 0 0.14 ind:imp:3p; +dégouttait dégoutter ver 0.12 1.28 0.1 0.54 ind:imp:3s; +dégouttant dégouttant adj m s 0.07 0.34 0.03 0.14 +dégouttante dégouttant adj f s 0.07 0.34 0.01 0.07 +dégouttantes dégouttant adj f p 0.07 0.34 0.03 0 +dégouttants dégouttant adj m p 0.07 0.34 0 0.14 +dégoutte dégoutter ver 0.12 1.28 0.01 0.07 ind:pre:1s;ind:pre:3s; +dégoutter dégoutter ver 0.12 1.28 0 0.14 inf; +dégoût dégoût nom m s 6.02 30.14 5.99 27.97 +dégoûta dégoûter ver 18.39 17.57 0 0.2 ind:pas:3s; +dégoûtai dégoûter ver 18.39 17.57 0 0.07 ind:pas:1s; +dégoûtaient dégoûter ver 18.39 17.57 0.03 0.61 ind:imp:3p; +dégoûtais dégoûter ver 18.39 17.57 0.19 0.27 ind:imp:1s;ind:imp:2s; +dégoûtait dégoûter ver 18.39 17.57 0.3 2.5 ind:imp:3s; +dégoûtant dégoûtant adj m s 15.92 6.76 11.47 3.92 +dégoûtante dégoûtant adj f s 15.92 6.76 2.06 1.82 +dégoûtantes dégoûtant adj f p 15.92 6.76 1.06 0.68 +dégoûtants dégoûtant adj m p 15.92 6.76 1.33 0.34 +dégoûtation dégoûtation nom f s 0 0.47 0 0.34 +dégoûtations dégoûtation nom f p 0 0.47 0 0.14 +dégoûte dégoûter ver 18.39 17.57 8.73 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoûtent dégoûter ver 18.39 17.57 0.88 0.74 ind:pre:3p; +dégoûter dégoûter ver 18.39 17.57 0.66 2.91 imp:pre:2p;ind:pre:2p;inf; +dégoûtera dégoûter ver 18.39 17.57 0.03 0.07 ind:fut:3s; +dégoûteraient dégoûter ver 18.39 17.57 0 0.07 cnd:pre:3p; +dégoûterais dégoûter ver 18.39 17.57 0 0.07 cnd:pre:1s; +dégoûterait dégoûter ver 18.39 17.57 0.34 0.27 cnd:pre:3s; +dégoûtes dégoûter ver 18.39 17.57 3.92 0.34 ind:pre:2s; +dégoûtez dégoûter ver 18.39 17.57 0.96 0.27 ind:pre:2p; +dégoûts dégoût nom m p 6.02 30.14 0.03 2.16 +dégoûtât dégoûter ver 18.39 17.57 0 0.14 sub:imp:3s; +dégoûtèrent dégoûter ver 18.39 17.57 0 0.2 ind:pas:3p; +dégoûté dégoûter ver m s 18.39 17.57 1.18 2.7 par:pas; +dégoûtée dégoûter ver f s 18.39 17.57 0.6 0.68 par:pas; +dégoûtées dégoûté nom f p 0.19 2.09 0.01 0 +dégoûtés dégoûter ver m p 18.39 17.57 0.2 0.54 par:pas; +dégrada dégrader ver 3.69 4.46 0.21 0.14 ind:pas:3s; +dégradable dégradable adj s 0.01 0 0.01 0 +dégradaient dégrader ver 3.69 4.46 0.11 0.2 ind:imp:3p; +dégradait dégrader ver 3.69 4.46 0.02 0.68 ind:imp:3s; +dégradant dégradant adj m s 1.67 1.08 1.13 0.2 +dégradante dégradant adj f s 1.67 1.08 0.15 0.47 +dégradantes dégradant adj f p 1.67 1.08 0.2 0.14 +dégradants dégradant adj m p 1.67 1.08 0.2 0.27 +dégradation dégradation nom f s 0.82 2.91 0.73 2.3 +dégradations dégradation nom f p 0.82 2.91 0.1 0.61 +dégrade dégrader ver 3.69 4.46 0.82 0.88 ind:pre:1s;ind:pre:3s; +dégradent dégrader ver 3.69 4.46 0.12 0.41 ind:pre:3p; +dégrader dégrader ver 3.69 4.46 1 0.54 inf; +dégrades dégrader ver 3.69 4.46 0.14 0.07 ind:pre:2s; +dégradez dégrader ver 3.69 4.46 0.03 0 imp:pre:2p;ind:pre:2p; +dégradé dégrader ver m s 3.69 4.46 0.93 0.47 par:pas; +dégradée dégradé adj f s 0.22 1.15 0.13 0.27 +dégradées dégrader ver f p 3.69 4.46 0.07 0.14 par:pas; +dégradés dégrader ver m p 3.69 4.46 0.04 0.14 par:pas; +dégrafa dégrafer ver 0.59 4.93 0 0.68 ind:pas:3s; +dégrafaient dégrafer ver 0.59 4.93 0 0.2 ind:imp:3p; +dégrafait dégrafer ver 0.59 4.93 0 0.61 ind:imp:3s; +dégrafant dégrafer ver 0.59 4.93 0.01 0.54 par:pre; +dégrafe dégrafer ver 0.59 4.93 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégrafer dégrafer ver 0.59 4.93 0.32 0.95 inf; +dégrafera dégrafer ver 0.59 4.93 0 0.07 ind:fut:3s; +dégraferait dégrafer ver 0.59 4.93 0 0.07 cnd:pre:3s; +dégrafeur dégrafeur nom m s 0.01 0 0.01 0 +dégrafez dégrafer ver 0.59 4.93 0.17 0 imp:pre:2p; +dégrafât dégrafer ver 0.59 4.93 0 0.07 sub:imp:3s; +dégrafé dégrafer ver m s 0.59 4.93 0.02 0.81 par:pas; +dégrafée dégrafer ver f s 0.59 4.93 0.01 0.27 par:pas; +dégrafées dégrafer ver f p 0.59 4.93 0 0.14 par:pas; +dégrafés dégrafer ver m p 0.59 4.93 0 0.07 par:pas; +dégraissage dégraissage nom m s 0.07 0 0.07 0 +dégraissant dégraisser ver 0.3 0.41 0.01 0 par:pre; +dégraissante dégraissant adj f s 0.01 0 0.01 0 +dégraisse dégraisser ver 0.3 0.41 0.04 0.14 imp:pre:2s;ind:pre:3s; +dégraissent dégraisser ver 0.3 0.41 0.03 0 ind:pre:3p; +dégraisser dégraisser ver 0.3 0.41 0.19 0.07 inf; +dégraissez dégraisser ver 0.3 0.41 0 0.07 imp:pre:2p; +dégraissé dégraisser ver m s 0.3 0.41 0.03 0.07 par:pas; +dégraissés dégraisser ver m p 0.3 0.41 0 0.07 par:pas; +dégressifs dégressif adj m p 0.01 0 0.01 0 +dégriffe dégriffer ver 0.03 0.14 0 0.07 ind:pre:3s; +dégriffer dégriffer ver 0.03 0.14 0.03 0 inf; +dégriffeur dégriffeur nom m s 0 0.27 0 0.27 +dégriffé dégriffé adj m s 0.02 0.07 0.02 0 +dégriffés dégriffé adj m p 0.02 0.07 0 0.07 +dégringola dégringoler ver 1.48 12.43 0.02 1.01 ind:pas:3s; +dégringolade dégringolade nom f s 0.13 1.89 0.13 1.82 +dégringolades dégringolade nom f p 0.13 1.89 0 0.07 +dégringolai dégringoler ver 1.48 12.43 0 0.2 ind:pas:1s; +dégringolaient dégringoler ver 1.48 12.43 0 0.54 ind:imp:3p; +dégringolait dégringoler ver 1.48 12.43 0.02 1.62 ind:imp:3s; +dégringolant dégringoler ver 1.48 12.43 0.14 0.74 par:pre; +dégringole dégringoler ver 1.48 12.43 0.58 2.16 ind:pre:1s;ind:pre:3s; +dégringolent dégringoler ver 1.48 12.43 0.05 0.95 ind:pre:3p; +dégringoler dégringoler ver 1.48 12.43 0.38 2.97 inf; +dégringoleraient dégringoler ver 1.48 12.43 0 0.07 cnd:pre:3p; +dégringolerais dégringoler ver 1.48 12.43 0 0.07 cnd:pre:1s; +dégringoleront dégringoler ver 1.48 12.43 0 0.07 ind:fut:3p; +dégringolions dégringoler ver 1.48 12.43 0 0.07 ind:imp:1p; +dégringolâmes dégringoler ver 1.48 12.43 0.01 0.07 ind:pas:1p; +dégringolèrent dégringoler ver 1.48 12.43 0.02 0.2 ind:pas:3p; +dégringolé dégringoler ver m s 1.48 12.43 0.26 1.35 par:pas; +dégringolée dégringoler ver f s 1.48 12.43 0 0.07 par:pas; +dégringolés dégringoler ver m p 1.48 12.43 0 0.27 par:pas; +dégripper dégripper ver 0 0.07 0 0.07 inf; +dégrisa dégriser ver 0.18 1.55 0 0.2 ind:pas:3s; +dégrisait dégriser ver 0.18 1.55 0 0.2 ind:imp:3s; +dégrise dégriser ver 0.18 1.55 0.03 0 imp:pre:2s;ind:pre:1s; +dégrisement dégrisement nom m s 0.16 0.2 0.16 0.2 +dégriser dégriser ver 0.18 1.55 0.06 0.07 inf; +dégrisât dégriser ver 0.18 1.55 0 0.07 sub:imp:3s; +dégrisé dégriser ver m s 0.18 1.55 0.08 0.74 par:pas; +dégrisée dégriser ver f s 0.18 1.55 0.01 0.14 par:pas; +dégrisés dégriser ver m p 0.18 1.55 0 0.14 par:pas; +dégrossi dégrossi adj m s 0.3 0.95 0.16 0.2 +dégrossie dégrossi adj f s 0.3 0.95 0.1 0.27 +dégrossies dégrossi adj f p 0.3 0.95 0 0.34 +dégrossir dégrossir ver 0.01 0.41 0.01 0.34 inf; +dégrossis dégrossi adj m p 0.3 0.95 0.04 0.14 +dégrossissage dégrossissage nom m s 0.01 0.07 0.01 0.07 +dégrossissant dégrossir ver 0.01 0.41 0 0.07 par:pre; +dégrouille dégrouiller ver 0.02 0.47 0.02 0.41 imp:pre:2s;ind:pre:3s; +dégrouiller dégrouiller ver 0.02 0.47 0 0.07 inf; +dégrène dégrèner ver 0 0.07 0 0.07 ind:pre:3s; +dégrèvement dégrèvement nom m s 0.04 0.07 0.04 0 +dégrèvements dégrèvement nom m p 0.04 0.07 0 0.07 +dégrée dégréer ver 0.01 0 0.01 0 ind:pre:3s; +dégréner dégréner ver 0 0.07 0 0.07 inf; +déguenillé déguenillé adj m s 0.16 0.27 0.01 0.07 +déguenillée déguenillé adj f s 0.16 0.27 0.13 0 +déguenillées déguenillé adj f p 0.16 0.27 0.01 0 +déguenillés déguenillé adj m p 0.16 0.27 0.01 0.2 +déguerpi déguerpir ver m s 3.75 2.43 0.46 0.41 par:pas; +déguerpir déguerpir ver 3.75 2.43 1.62 1.42 inf; +déguerpirent déguerpir ver 3.75 2.43 0 0.07 ind:pas:3p; +déguerpis déguerpir ver m p 3.75 2.43 0.65 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +déguerpisse déguerpir ver 3.75 2.43 0.03 0.14 sub:pre:1s;sub:pre:3s; +déguerpissent déguerpir ver 3.75 2.43 0.34 0 ind:pre:3p; +déguerpissez déguerpir ver 3.75 2.43 0.57 0.14 imp:pre:2p;ind:pre:2p; +déguerpissiez déguerpir ver 3.75 2.43 0.01 0 ind:imp:2p; +déguerpissons déguerpir ver 3.75 2.43 0.03 0 imp:pre:1p; +déguerpit déguerpir ver 3.75 2.43 0.04 0.14 ind:pre:3s;ind:pas:3s; +dégueu dégueu adj s 3.41 0.88 3.1 0.81 +dégueula dégueuler ver 2.36 3.65 0 0.07 ind:pas:3s; +dégueulais dégueuler ver 2.36 3.65 0.02 0 ind:imp:1s;ind:imp:2s; +dégueulait dégueuler ver 2.36 3.65 0.03 0.2 ind:imp:3s; +dégueulando dégueulando nom m s 0 0.2 0 0.2 +dégueulant dégueuler ver 2.36 3.65 0.04 0 par:pre; +dégueulasse dégueulasse adj s 19.98 17.3 18.8 14.53 +dégueulassement dégueulassement adv 0.01 0.14 0.01 0.14 +dégueulasser dégueulasser ver 0.34 1.01 0.04 0.34 inf; +dégueulasserie dégueulasserie nom f s 0 0.61 0 0.47 +dégueulasseries dégueulasserie nom f p 0 0.61 0 0.14 +dégueulasses dégueulasse adj p 19.98 17.3 1.18 2.77 +dégueulassé dégueulasser ver m s 0.34 1.01 0.11 0.07 par:pas; +dégueulassés dégueulasser ver m p 0.34 1.01 0 0.07 par:pas; +dégueule dégueuler ver 2.36 3.65 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégueulent dégueuler ver 2.36 3.65 0.04 0.2 ind:pre:3p; +dégueuler dégueuler ver 2.36 3.65 1.57 1.69 inf; +dégueulera dégueuler ver 2.36 3.65 0 0.07 ind:fut:3s; +dégueules dégueuler ver 2.36 3.65 0.01 0 ind:pre:2s; +dégueulez dégueuler ver 2.36 3.65 0.01 0.07 ind:pre:2p; +dégueulis dégueulis nom m 0.31 1.15 0.31 1.15 +dégueulé dégueuler ver m s 2.36 3.65 0.24 0.61 par:pas; +dégueulées dégueuler ver f p 2.36 3.65 0 0.07 par:pas; +dégueus dégueu adj m p 3.41 0.88 0.31 0.07 +déguisa déguiser ver 14.89 16.96 0 0.34 ind:pas:3s; +déguisaient déguiser ver 14.89 16.96 0.02 0.41 ind:imp:3p; +déguisais déguiser ver 14.89 16.96 0.17 0.34 ind:imp:1s;ind:imp:2s; +déguisait déguiser ver 14.89 16.96 0.45 1.42 ind:imp:3s; +déguisant déguiser ver 14.89 16.96 0.17 0.2 par:pre; +déguise déguiser ver 14.89 16.96 0.97 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déguisement déguisement nom m s 4.98 5.07 3.93 3.65 +déguisements déguisement nom m p 4.98 5.07 1.05 1.42 +déguisent déguiser ver 14.89 16.96 0.34 0.2 ind:pre:3p; +déguiser déguiser ver 14.89 16.96 3.34 2.5 inf; +déguisera déguiser ver 14.89 16.96 0.05 0.14 ind:fut:3s; +déguiserai déguiser ver 14.89 16.96 0.12 0 ind:fut:1s; +déguiserais déguiser ver 14.89 16.96 0.02 0.07 cnd:pre:1s; +déguiserait déguiser ver 14.89 16.96 0.03 0 cnd:pre:3s; +déguises déguiser ver 14.89 16.96 0.35 0.14 ind:pre:2s; +déguisez déguiser ver 14.89 16.96 0.33 0.14 imp:pre:2p;ind:pre:2p; +déguisiez déguiser ver 14.89 16.96 0.01 0.07 ind:imp:2p; +déguisions déguiser ver 14.89 16.96 0.01 0.07 ind:imp:1p; +déguisé déguiser ver m s 14.89 16.96 5.48 4.66 par:pas; +déguisée déguiser ver f s 14.89 16.96 1.55 2.5 par:pas; +déguisées déguiser ver f p 14.89 16.96 0.12 0.81 par:pas; +déguisés déguiser ver m p 14.89 16.96 1.34 1.49 par:pas; +dégurgitant dégurgiter ver 0 0.07 0 0.07 par:pre; +dégusta déguster ver 2.96 11.96 0 0.27 ind:pas:3s; +dégustai déguster ver 2.96 11.96 0 0.14 ind:pas:1s; +dégustaient déguster ver 2.96 11.96 0.02 0.41 ind:imp:3p; +dégustais déguster ver 2.96 11.96 0.01 0.54 ind:imp:1s;ind:imp:2s; +dégustait déguster ver 2.96 11.96 0.01 0.95 ind:imp:3s; +dégustant déguster ver 2.96 11.96 0.21 0.88 par:pre; +dégustateur dégustateur nom m s 0.12 0.2 0.02 0.14 +dégustateurs dégustateur nom m p 0.12 0.2 0 0.07 +dégustation dégustation nom f s 1.01 1.82 0.84 1.76 +dégustations dégustation nom f p 1.01 1.82 0.17 0.07 +dégustatrice dégustateur nom f s 0.12 0.2 0.1 0 +déguste déguster ver 2.96 11.96 0.53 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégustent déguster ver 2.96 11.96 0.03 0.27 ind:pre:3p; +déguster déguster ver 2.96 11.96 1.84 3.92 inf; +dégustera déguster ver 2.96 11.96 0.02 0 ind:fut:3s; +dégusteras déguster ver 2.96 11.96 0 0.07 ind:fut:2s; +dégusterons déguster ver 2.96 11.96 0.01 0 ind:fut:1p; +dégustez déguster ver 2.96 11.96 0.04 0.14 imp:pre:2p;ind:pre:2p; +dégustons déguster ver 2.96 11.96 0.02 0.14 imp:pre:1p;ind:pre:1p; +dégustâmes déguster ver 2.96 11.96 0 0.07 ind:pas:1p; +dégustèrent déguster ver 2.96 11.96 0 0.14 ind:pas:3p; +dégusté déguster ver m s 2.96 11.96 0.23 1.69 par:pas; +dégustée déguster ver f s 2.96 11.96 0.01 0.41 par:pas; +dégustées déguster ver f p 2.96 11.96 0 0.14 par:pas; +dégustés déguster ver m p 2.96 11.96 0 0.07 par:pas; +dégât dégât nom m s 14.22 9.73 0.95 0.74 +dégâts dégât nom m p 14.22 9.73 13.27 8.99 +dégèle dégeler ver 0.7 1.15 0.09 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégèlent dégeler ver 0.7 1.15 0.04 0.07 ind:pre:3p; +dégèlera dégeler ver 0.7 1.15 0.02 0 ind:fut:3s; +dégèlerait dégeler ver 0.7 1.15 0.01 0 cnd:pre:3s; +dégénère dégénérer ver 2.95 2.3 1.26 0.47 imp:pre:2s;ind:pre:3s; +dégénèrent dégénérer ver 2.95 2.3 0.03 0.14 ind:pre:3p; +dégénéra dégénérer ver 2.95 2.3 0.02 0.2 ind:pas:3s; +dégénéraient dégénérer ver 2.95 2.3 0 0.14 ind:imp:3p; +dégénérait dégénérer ver 2.95 2.3 0.03 0.14 ind:imp:3s; +dégénérant dégénérer ver 2.95 2.3 0.01 0.07 par:pre; +dégénératif dégénératif adj m s 0.28 0 0.05 0 +dégénération dégénération nom f s 0.1 0 0.1 0 +dégénérative dégénératif adj f s 0.28 0 0.23 0 +dégénérer dégénérer ver 2.95 2.3 0.86 0.61 inf; +dégénérescence dégénérescence nom f s 1.22 1.15 1.22 1.08 +dégénérescences dégénérescence nom f p 1.22 1.15 0 0.07 +dégénérât dégénérer ver 2.95 2.3 0 0.14 sub:imp:3s; +dégénéré dégénéré nom m s 2.16 0.74 1.36 0.41 +dégénérée dégénéré adj f s 1.77 1.35 0.14 0.27 +dégénérées dégénéré adj f p 1.77 1.35 0.03 0.14 +dégénérés dégénéré nom m p 2.16 0.74 0.77 0.27 +déhale déhaler ver 0 0.27 0 0.07 ind:pre:3s; +déhaler déhaler ver 0 0.27 0 0.07 inf; +déhalées déhaler ver f p 0 0.27 0 0.14 par:pas; +déhancha déhancher ver 0.67 1.76 0 0.07 ind:pas:3s; +déhanchaient déhancher ver 0.67 1.76 0.01 0.27 ind:imp:3p; +déhanchait déhancher ver 0.67 1.76 0 0.41 ind:imp:3s; +déhanchant déhancher ver 0.67 1.76 0.03 0.14 par:pre; +déhanche déhancher ver 0.67 1.76 0.47 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déhanchement déhanchement nom m s 0.05 1.76 0.04 1.08 +déhanchements déhanchement nom m p 0.05 1.76 0.01 0.68 +déhanchent déhancher ver 0.67 1.76 0.05 0.07 ind:pre:3p; +déhancher déhancher ver 0.67 1.76 0.09 0.07 inf; +déhanchez déhancher ver 0.67 1.76 0.02 0 imp:pre:2p; +déhanché déhanché adj m s 0.19 0.74 0.19 0.2 +déhanchée déhanché adj f s 0.19 0.74 0 0.41 +déhanchées déhancher ver f p 0.67 1.76 0 0.07 par:pas; +déhanchés déhanché adj m p 0.19 0.74 0 0.07 +déharnacha déharnacher ver 0 0.14 0 0.07 ind:pas:3s; +déharnachées déharnacher ver f p 0 0.14 0 0.07 par:pas; +déhiscence déhiscence nom f s 0.02 0.14 0.02 0.14 +déhotte déhotter ver 0 0.68 0 0.2 ind:pre:1s;ind:pre:3s; +déhotter déhotter ver 0 0.68 0 0.2 inf; +déhotté déhotter ver m s 0 0.68 0 0.2 par:pas; +déhottée déhotter ver f s 0 0.68 0 0.07 par:pas; +déicide déicide adj m s 0 0.14 0 0.07 +déicides déicide adj m p 0 0.14 0 0.07 +déifia déifier ver 0.07 0.34 0 0.07 ind:pas:3s; +déification déification nom f s 0 0.07 0 0.07 +déifier déifier ver 0.07 0.34 0 0.14 inf; +déifié déifier ver m s 0.07 0.34 0.04 0.14 par:pas; +déifiés déifier ver m p 0.07 0.34 0.02 0 par:pas; +déisme déisme nom m s 0.1 0 0.1 0 +déité déité nom f s 0.12 0.2 0.02 0 +déités déité nom f p 0.12 0.2 0.1 0.2 +déjanta déjanter ver 0.86 0.54 0 0.07 ind:pas:3s; +déjantait déjanter ver 0.86 0.54 0.01 0.07 ind:imp:3s; +déjante déjanter ver 0.86 0.54 0.09 0.14 ind:pre:1s;ind:pre:3s; +déjantent déjanter ver 0.86 0.54 0.01 0 ind:pre:3p; +déjanter déjanter ver 0.86 0.54 0.09 0.14 inf; +déjanterais déjanter ver 0.86 0.54 0.01 0 cnd:pre:1s; +déjantes déjanter ver 0.86 0.54 0.2 0.07 ind:pre:2s; +déjanté déjanté adj s 0.58 0.2 0.43 0.2 +déjantée déjanter ver f s 0.86 0.54 0.21 0.07 par:pas; +déjantés déjanté adj m p 0.58 0.2 0.15 0 +déjaugeant déjauger ver 0 0.07 0 0.07 par:pre; +déjection déjection nom f s 0.16 2.36 0 0.27 +déjections déjection nom f p 0.16 2.36 0.16 2.09 +déjetait déjeter ver 0 0.41 0 0.14 ind:imp:3s; +déjeté déjeté adj m s 0 0.47 0 0.41 +déjetée déjeter ver f s 0 0.41 0 0.2 par:pas; +déjetés déjeté adj m p 0 0.47 0 0.07 +déjeuna déjeuner ver 35.43 36.01 0.01 0.54 ind:pas:3s; +déjeunai déjeuner ver 35.43 36.01 0.01 0.47 ind:pas:1s; +déjeunaient déjeuner ver 35.43 36.01 0.03 0.88 ind:imp:3p; +déjeunais déjeuner ver 35.43 36.01 0.39 0.74 ind:imp:1s;ind:imp:2s; +déjeunait déjeuner ver 35.43 36.01 0.65 1.89 ind:imp:3s; +déjeunant déjeuner ver 35.43 36.01 0.31 0.68 par:pre; +déjeune déjeuner ver 35.43 36.01 5.34 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déjeunent déjeuner ver 35.43 36.01 0.2 0.2 ind:pre:3p; +déjeuner déjeuner nom m s 51.34 59.66 50.32 56.01 +déjeunera déjeuner ver 35.43 36.01 0.46 0.34 ind:fut:3s; +déjeunerai déjeuner ver 35.43 36.01 0.2 0.27 ind:fut:1s; +déjeuneraient déjeuner ver 35.43 36.01 0 0.14 cnd:pre:3p; +déjeunerait déjeuner ver 35.43 36.01 0.02 0.2 cnd:pre:3s; +déjeuneras déjeuner ver 35.43 36.01 0.02 0.14 ind:fut:2s; +déjeunerez déjeuner ver 35.43 36.01 0.09 0.07 ind:fut:2p; +déjeunerions déjeuner ver 35.43 36.01 0 0.14 cnd:pre:1p; +déjeunerons déjeuner ver 35.43 36.01 0.06 0.2 ind:fut:1p; +déjeuners déjeuner nom m p 51.34 59.66 1.02 3.65 +déjeunes déjeuner ver 35.43 36.01 1.23 0.2 ind:pre:2s;sub:pre:2s; +déjeunez déjeuner ver 35.43 36.01 0.63 0.41 imp:pre:2p;ind:pre:2p; +déjeuniez déjeuner ver 35.43 36.01 0.06 0.07 ind:imp:2p; +déjeunions déjeuner ver 35.43 36.01 0.06 1.62 ind:imp:1p; +déjeunons déjeuner ver 35.43 36.01 0.93 0.81 imp:pre:1p;ind:pre:1p; +déjeunâmes déjeuner ver 35.43 36.01 0 0.27 ind:pas:1p; +déjeunât déjeuner ver 35.43 36.01 0 0.07 sub:imp:3s; +déjeunèrent déjeuner ver 35.43 36.01 0 0.95 ind:pas:3p; +déjeuné déjeuner ver m s 35.43 36.01 4.75 4.73 par:pas; +déjoua déjouer ver 3.58 4.39 0.01 0.07 ind:pas:3s; +déjouait déjouer ver 3.58 4.39 0 0.07 ind:imp:3s; +déjouant déjouer ver 3.58 4.39 0.16 0.2 par:pre; +déjoue déjouer ver 3.58 4.39 0.4 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déjouent déjouer ver 3.58 4.39 0.01 0.07 ind:pre:3p; +déjouer déjouer ver 3.58 4.39 1.8 2.36 inf; +déjouerai déjouer ver 3.58 4.39 0.02 0 ind:fut:1s; +déjouerez déjouer ver 3.58 4.39 0.01 0 ind:fut:2p; +déjouerions déjouer ver 3.58 4.39 0 0.07 cnd:pre:1p; +déjouez déjouer ver 3.58 4.39 0.01 0.07 imp:pre:2p;ind:pre:2p; +déjouons déjouer ver 3.58 4.39 0.1 0 imp:pre:1p; +déjoué déjouer ver m s 3.58 4.39 0.99 0.61 par:pas; +déjouée déjouer ver f s 3.58 4.39 0.03 0.2 par:pas; +déjouées déjouer ver f p 3.58 4.39 0 0.2 par:pas; +déjoués déjouer ver m p 3.58 4.39 0.04 0 par:pas; +déjuchaient déjucher ver 0 0.07 0 0.07 ind:imp:3p; +déjuger déjuger ver 0.02 0.07 0.02 0 inf; +déjugé déjuger ver m s 0.02 0.07 0 0.07 par:pas; +déjà déjà ono 10.84 3.31 10.84 3.31 +déjà_vu déjà_vu nom m 0.01 0.34 0.01 0.34 +dékoulakisation dékoulakisation nom f s 0 0.07 0 0.07 +délabre délabrer ver 0.51 1.49 0.02 0.07 ind:pre:1s;ind:pre:3s; +délabrement délabrement nom m s 0.05 1.62 0.05 1.62 +délabrer délabrer ver 0.51 1.49 0.03 0.07 inf; +délabré délabrer ver m s 0.51 1.49 0.24 0.68 par:pas; +délabrée délabré adj f s 0.5 4.59 0.22 1.55 +délabrées délabrer ver f p 0.51 1.49 0.15 0.07 par:pas; +délabrés délabré adj m p 0.5 4.59 0.05 0.41 +délabyrinthez délabyrinther ver 0.01 0 0.01 0 imp:pre:2p; +délace délacer ver 0.04 1.22 0.01 0.2 imp:pre:2s;ind:pre:3s; +délacer délacer ver 0.04 1.22 0 0.14 inf; +délacèrent délacer ver 0.04 1.22 0 0.07 ind:pas:3p; +délacé délacer ver m s 0.04 1.22 0.02 0.2 par:pas; +délacées délacer ver f p 0.04 1.22 0.01 0.07 par:pas; +délai délai nom m s 11.04 18.85 8.94 14.59 +délaie délayer ver 0.06 2.84 0.03 0.07 ind:pre:3s; +délais délai nom m p 11.04 18.85 2.1 4.26 +délaissa délaisser ver 2.3 7.77 0.1 0.68 ind:pas:3s; +délaissaient délaisser ver 2.3 7.77 0.02 0.27 ind:imp:3p; +délaissais délaisser ver 2.3 7.77 0.11 0.14 ind:imp:1s;ind:imp:2s; +délaissait délaisser ver 2.3 7.77 0.17 0.41 ind:imp:3s; +délaissant délaisser ver 2.3 7.77 0.25 1.76 par:pre; +délaisse délaisser ver 2.3 7.77 0.61 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délaissement délaissement nom m s 0 0.68 0 0.61 +délaissements délaissement nom m p 0 0.68 0 0.07 +délaissent délaisser ver 2.3 7.77 0.01 0.14 ind:pre:3p; +délaisser délaisser ver 2.3 7.77 0.28 1.01 inf; +délaisserait délaisser ver 2.3 7.77 0.01 0.07 cnd:pre:3s; +délaisses délaisser ver 2.3 7.77 0.03 0.07 ind:pre:2s; +délaissions délaisser ver 2.3 7.77 0 0.2 ind:imp:1p; +délaissèrent délaisser ver 2.3 7.77 0 0.14 ind:pas:3p; +délaissé délaisser ver m s 2.3 7.77 0.5 1.28 par:pas; +délaissée délaissé adj f s 0.56 2.64 0.19 1.42 +délaissées délaissé adj f p 0.56 2.64 0.15 0.2 +délaissés délaissé adj m p 0.56 2.64 0.14 0.41 +délaita délaiter ver 0 0.27 0 0.07 ind:pas:3s; +délaite délaiter ver 0 0.27 0 0.2 ind:pre:3s; +délardant délarder ver 0 0.07 0 0.07 par:pre; +délassa délasser ver 0.2 1.42 0 0.07 ind:pas:3s; +délassait délasser ver 0.2 1.42 0.01 0.14 ind:imp:3s; +délassant délassant adj m s 0.02 0.2 0.02 0.07 +délassante délassant adj f s 0.02 0.2 0 0.14 +délasse délasser ver 0.2 1.42 0.14 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délassement délassement nom m s 0.16 0.47 0.16 0.47 +délasser délasser ver 0.2 1.42 0.04 0.54 inf; +délassera délasser ver 0.2 1.42 0.01 0.07 ind:fut:3s; +délasseront délasser ver 0.2 1.42 0 0.14 ind:fut:3p; +délassés délasser ver m p 0.2 1.42 0 0.07 par:pas; +délateur délateur nom m s 0.36 0.88 0.2 0.34 +délateurs délateur nom m p 0.36 0.88 0.17 0.47 +délation délation nom f s 0.26 1.55 0.26 1.28 +délations délation nom f p 0.26 1.55 0 0.27 +délatrice délateur nom f s 0.36 0.88 0 0.07 +délavait délaver ver 0.04 2.23 0 0.07 ind:imp:3s; +délavant délaver ver 0.04 2.23 0 0.07 par:pre; +délave délaver ver 0.04 2.23 0 0.07 ind:pre:3s; +délavent délaver ver 0.04 2.23 0 0.07 ind:pre:3p; +délaver délaver ver 0.04 2.23 0 0.07 inf; +délavé délavé adj m s 0.39 4.86 0.23 2.36 +délavée délavé adj f s 0.39 4.86 0.01 0.74 +délavées délavé adj f p 0.39 4.86 0.14 0.54 +délavés délavé adj m p 0.39 4.86 0.01 1.22 +délaya délayer ver 0.06 2.84 0 0.14 ind:pas:3s; +délayage délayage nom m s 0.01 0.2 0.01 0.2 +délayait délayer ver 0.06 2.84 0 0.14 ind:imp:3s; +délayant délayer ver 0.06 2.84 0 0.41 par:pre; +délaye délayer ver 0.06 2.84 0 0.27 ind:pre:3s; +délayent délayer ver 0.06 2.84 0 0.07 ind:pre:3p; +délayer délayer ver 0.06 2.84 0.03 0.47 inf; +délayé délayer ver m s 0.06 2.84 0 0.54 par:pas; +délayée délayé adj f s 0.01 0.2 0.01 0.14 +délayés délayer ver m p 0.06 2.84 0 0.34 par:pas; +délaça délacer ver 0.04 1.22 0 0.14 ind:pas:3s; +délaçais délacer ver 0.04 1.22 0 0.07 ind:imp:1s; +délaçait délacer ver 0.04 1.22 0 0.2 ind:imp:3s; +délaçant délacer ver 0.04 1.22 0 0.14 par:pre; +délectable délectable adj s 0.7 2.16 0.56 1.55 +délectables délectable adj p 0.7 2.16 0.14 0.61 +délectai délecter ver 0.85 3.58 0 0.07 ind:pas:1s; +délectaient délecter ver 0.85 3.58 0.01 0.14 ind:imp:3p; +délectais délecter ver 0.85 3.58 0.03 0.14 ind:imp:1s; +délectait délecter ver 0.85 3.58 0.03 1.42 ind:imp:3s; +délectant délecter ver 0.85 3.58 0.02 0.14 par:pre; +délectation délectation nom f s 0.07 3.38 0.07 3.24 +délectations délectation nom f p 0.07 3.38 0 0.14 +délecte délecter ver 0.85 3.58 0.21 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délectent délecter ver 0.85 3.58 0.16 0.14 ind:pre:3p; +délecter délecter ver 0.85 3.58 0.21 0.47 inf; +délectes délecter ver 0.85 3.58 0.03 0.07 ind:pre:2s; +délectez délecter ver 0.85 3.58 0.01 0 ind:pre:2p; +délections délecter ver 0.85 3.58 0 0.07 ind:imp:1p; +délectât délecter ver 0.85 3.58 0 0.07 sub:imp:3s; +délecté délecter ver m s 0.85 3.58 0.14 0.2 par:pas; +délestage délestage nom m s 0.02 0.14 0.02 0.14 +délestant délester ver 0.35 3.04 0.1 0.07 par:pre; +déleste délester ver 0.35 3.04 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délester délester ver 0.35 3.04 0.15 0.54 inf; +délestons délester ver 0.35 3.04 0.01 0 imp:pre:1p; +délestèrent délester ver 0.35 3.04 0 0.07 ind:pas:3p; +délesté délester ver m s 0.35 3.04 0.05 1.15 par:pas; +délestée délester ver f s 0.35 3.04 0.02 0.61 par:pas; +délestées délester ver f p 0.35 3.04 0 0.14 par:pas; +délestés délester ver m p 0.35 3.04 0 0.34 par:pas; +délia délier ver 2.55 4.86 0.88 0.27 ind:pas:3s; +déliaient délier ver 2.55 4.86 0 0.14 ind:imp:3p; +déliait délier ver 2.55 4.86 0.01 0.41 ind:imp:3s; +déliant délier ver 2.55 4.86 0 0.27 par:pre; +délibère délibérer ver 2.44 3.78 0.27 0.07 ind:pre:1s;ind:pre:3s; +délibèrent délibérer ver 2.44 3.78 0.04 0.14 ind:pre:3p; +délibéra délibérer ver 2.44 3.78 0.02 0.07 ind:pas:3s; +délibéraient délibérer ver 2.44 3.78 0 0.14 ind:imp:3p; +délibérait délibérer ver 2.44 3.78 0 0.27 ind:imp:3s; +délibérant délibérer ver 2.44 3.78 0 0.07 par:pre; +délibération délibération nom f s 1.17 1.89 0.69 0.81 +délibérations délibération nom f p 1.17 1.89 0.48 1.08 +délibérative délibératif adj f s 0 0.14 0 0.14 +délibératoire délibératoire adj s 0.01 0 0.01 0 +délibérer délibérer ver 2.44 3.78 0.74 0.81 inf; +délibérera délibérer ver 2.44 3.78 0.04 0.07 ind:fut:3s; +délibéreraient délibérer ver 2.44 3.78 0 0.14 cnd:pre:3p; +délibérions délibérer ver 2.44 3.78 0 0.07 ind:imp:1p; +délibérèrent délibérer ver 2.44 3.78 0 0.07 ind:pas:3p; +délibéré délibérer ver m s 2.44 3.78 1.18 0.74 par:pas; +délibérée délibéré adj f s 0.76 2.7 0.19 1.08 +délibérées délibéré adj f p 0.76 2.7 0.01 0.2 +délibérément délibérément adv 3.11 5.47 3.11 5.47 +délibérés délibéré adj m p 0.76 2.7 0.04 0.07 +délicat délicat adj m s 22.52 37.03 9.6 13.72 +délicate délicat adj f s 22.52 37.03 9.26 12.5 +délicatement délicatement adv 1.48 10.34 1.48 10.34 +délicates délicat adj f p 22.52 37.03 2.31 5.27 +délicatesse délicatesse nom f s 3.37 13.58 3.34 11.96 +délicatesses délicatesse nom f p 3.37 13.58 0.02 1.62 +délicats délicat adj m p 22.52 37.03 1.35 5.54 +délice délice nom m s 6.17 19.73 3.75 4.26 +délices délice nom f p 6.17 19.73 2.42 15.47 +délicieuse délicieux adj f s 29.22 28.65 6.56 10.74 +délicieusement délicieusement adv 0.52 5.27 0.52 5.27 +délicieuses délicieux adj f p 29.22 28.65 2.04 2.84 +délicieux délicieux adj m 29.22 28.65 20.62 15.07 +délictuelle délictuel adj f s 0.01 0 0.01 0 +délictueuse délictueux adj f s 0.12 0.41 0.09 0 +délictueuses délictueux adj f p 0.12 0.41 0 0.34 +délictueux délictueux adj m 0.12 0.41 0.03 0.07 +délie délier ver 2.55 4.86 0.68 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délient délier ver 2.55 4.86 0.04 0.07 ind:pre:3p; +délier délier ver 2.55 4.86 0.23 1.22 inf; +délieraient délier ver 2.55 4.86 0.01 0.07 cnd:pre:3p; +délieras délier ver 2.55 4.86 0.14 0.07 ind:fut:2s; +déliez délier ver 2.55 4.86 0.17 0 imp:pre:2p;ind:pre:2p; +délimitaient délimiter ver 0.38 5.54 0 0.74 ind:imp:3p; +délimitais délimiter ver 0.38 5.54 0 0.07 ind:imp:1s; +délimitait délimiter ver 0.38 5.54 0 0.41 ind:imp:3s; +délimitant délimiter ver 0.38 5.54 0.01 0.61 par:pre; +délimitation délimitation nom f s 0 0.34 0 0.27 +délimitations délimitation nom f p 0 0.34 0 0.07 +délimite délimiter ver 0.38 5.54 0.14 0.2 imp:pre:2s;ind:pre:3s; +délimitent délimiter ver 0.38 5.54 0.02 0.47 ind:pre:3p; +délimiter délimiter ver 0.38 5.54 0.07 0.41 inf; +délimitez délimiter ver 0.38 5.54 0.03 0 imp:pre:2p;ind:pre:2p; +délimitions délimiter ver 0.38 5.54 0 0.07 ind:imp:1p; +délimitons délimiter ver 0.38 5.54 0.01 0 ind:pre:1p; +délimité délimiter ver m s 0.38 5.54 0.03 1.15 par:pas; +délimitée délimiter ver f s 0.38 5.54 0.05 0.68 par:pas; +délimitées délimiter ver f p 0.38 5.54 0 0.41 par:pas; +délimités délimiter ver m p 0.38 5.54 0.01 0.34 par:pas; +délinquance délinquance nom f s 1.54 1.42 1.54 1.35 +délinquances délinquance nom f p 1.54 1.42 0 0.07 +délinquant délinquant nom m s 4.16 1.89 1.97 0.88 +délinquante délinquant adj f s 0.86 0.61 0.15 0.27 +délinquantes délinquant nom f p 4.16 1.89 0.03 0.07 +délinquants délinquant nom m p 4.16 1.89 2.07 0.81 +délinéaments délinéament nom m p 0 0.07 0 0.07 +déliquescence déliquescence nom f s 0.16 0.14 0.16 0.14 +déliquescent déliquescent adj m s 0.02 0.41 0.02 0.07 +déliquescente déliquescent adj f s 0.02 0.41 0 0.27 +déliquescents déliquescent adj m p 0.02 0.41 0 0.07 +délira délirer ver 13.73 7.23 0.02 0.07 ind:pas:3s; +délirai délirer ver 13.73 7.23 0 0.07 ind:pas:1s; +déliraient délirer ver 13.73 7.23 0.01 0.2 ind:imp:3p; +délirais délirer ver 13.73 7.23 0.44 0.47 ind:imp:1s;ind:imp:2s; +délirait délirer ver 13.73 7.23 1.17 1.08 ind:imp:3s; +délirant délirant adj m s 3.05 5.61 1.36 1.28 +délirante délirant adj f s 3.05 5.61 0.83 2.3 +délirantes délirant adj f p 3.05 5.61 0.11 0.95 +délirants délirant adj m p 3.05 5.61 0.75 1.08 +délirassent délirer ver 13.73 7.23 0 0.07 sub:imp:3p; +délire délire nom m s 13.2 19.8 10.93 16.62 +délirent délirer ver 13.73 7.23 0.17 0.07 ind:pre:3p; +délirer délirer ver 13.73 7.23 1.94 2.23 inf; +délireras délirer ver 13.73 7.23 0.01 0 ind:fut:2s; +délires délirer ver 13.73 7.23 4.81 0.27 ind:pre:2s; +délirez délirer ver 13.73 7.23 0.94 0.27 imp:pre:2p;ind:pre:2p; +déliriez délirer ver 13.73 7.23 0.11 0 ind:imp:2p; +déliré délirer ver m s 13.73 7.23 0.45 0.27 par:pas; +délit délit nom m s 13.52 7.97 11.35 6.35 +délitaient déliter ver 0.11 0.68 0 0.07 ind:imp:3p; +délite déliter ver 0.11 0.68 0.01 0.2 ind:pre:3s; +délitent déliter ver 0.11 0.68 0 0.14 ind:pre:3p; +déliteront déliter ver 0.11 0.68 0 0.07 ind:fut:3p; +délits délit nom m p 13.52 7.97 2.17 1.62 +délité déliter ver m s 0.11 0.68 0.1 0 par:pas; +délitée déliter ver f s 0.11 0.68 0 0.07 par:pas; +délitées déliter ver f p 0.11 0.68 0 0.14 par:pas; +délivra délivrer ver 14.45 31.15 0 0.74 ind:pas:3s; +délivraient délivrer ver 14.45 31.15 0.03 0.61 ind:imp:3p; +délivrais délivrer ver 14.45 31.15 0.01 0.07 ind:imp:1s; +délivrait délivrer ver 14.45 31.15 0.01 2.5 ind:imp:3s; +délivrance délivrance nom f s 1.94 5.74 1.94 5.68 +délivrances délivrance nom f p 1.94 5.74 0 0.07 +délivrant délivrer ver 14.45 31.15 0.04 0.2 par:pre; +délivre délivrer ver 14.45 31.15 4.37 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délivrent délivrer ver 14.45 31.15 0.25 0.68 ind:pre:3p; +délivrer délivrer ver 14.45 31.15 4.76 7.91 inf;; +délivrera délivrer ver 14.45 31.15 0.6 0.68 ind:fut:3s; +délivrerai délivrer ver 14.45 31.15 0.46 0 ind:fut:1s; +délivreraient délivrer ver 14.45 31.15 0 0.07 cnd:pre:3p; +délivrerais délivrer ver 14.45 31.15 0.01 0 cnd:pre:1s; +délivrerait délivrer ver 14.45 31.15 0.05 1.08 cnd:pre:3s; +délivreras délivrer ver 14.45 31.15 0.12 0 ind:fut:2s; +délivrerez délivrer ver 14.45 31.15 0.01 0 ind:fut:2p; +délivrerons délivrer ver 14.45 31.15 0 0.07 ind:fut:1p; +délivreront délivrer ver 14.45 31.15 0.03 0 ind:fut:3p; +délivreurs délivreur nom m p 0 0.07 0 0.07 +délivrez délivrer ver 14.45 31.15 0.94 0.41 imp:pre:2p;ind:pre:2p; +délivriez délivrer ver 14.45 31.15 0.02 0 ind:imp:2p; +délivrions délivrer ver 14.45 31.15 0.01 0 ind:imp:1p; +délivrons délivrer ver 14.45 31.15 0.16 0 imp:pre:1p;ind:pre:1p; +délivrât délivrer ver 14.45 31.15 0 0.14 sub:imp:3s; +délivrèrent délivrer ver 14.45 31.15 0 0.07 ind:pas:3p; +délivré délivrer ver m s 14.45 31.15 1.14 7.97 par:pas; +délivrée délivrer ver f s 14.45 31.15 0.52 3.99 par:pas; +délivrées délivrer ver f p 14.45 31.15 0.07 0.34 par:pas; +délivrés délivrer ver m p 14.45 31.15 0.84 1.49 par:pas; +délièrent délier ver 2.55 4.86 0 0.07 ind:pas:3p; +délié délier ver m s 2.55 4.86 0.14 0.41 par:pas; +déliée délier ver f s 2.55 4.86 0.12 0.68 par:pas; +déliées délié adj f p 0.04 2.36 0.01 0.68 +déliés délier ver m p 2.55 4.86 0.14 0.34 par:pas; +délocalisation délocalisation nom f s 0.06 0 0.06 0 +délocaliser délocaliser ver 0.09 0 0.06 0 inf; +délocalisez délocaliser ver 0.09 0 0.01 0 imp:pre:2p; +délocalisé délocaliser ver m s 0.09 0 0.02 0 par:pas; +déloge déloger ver 1.94 3.45 0.18 0.14 imp:pre:2s;ind:pre:3s; +délogea déloger ver 1.94 3.45 0 0.14 ind:pas:3s; +délogeait déloger ver 1.94 3.45 0 0.14 ind:imp:3s; +déloger déloger ver 1.94 3.45 1.17 1.89 inf; +délogera déloger ver 1.94 3.45 0.02 0.14 ind:fut:3s; +délogerait déloger ver 1.94 3.45 0.02 0 cnd:pre:3s; +délogerons déloger ver 1.94 3.45 0 0.07 ind:fut:1p; +délogez déloger ver 1.94 3.45 0.05 0 imp:pre:2p; +délogeât déloger ver 1.94 3.45 0 0.14 sub:imp:3s; +délogé déloger ver m s 1.94 3.45 0.2 0.34 par:pas; +délogée déloger ver f s 1.94 3.45 0.01 0.27 par:pas; +délogés déloger ver m p 1.94 3.45 0.29 0.2 par:pas; +déloquaient déloquer ver 0.05 1.69 0 0.07 ind:imp:3p; +déloque déloquer ver 0.05 1.69 0.01 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déloquer déloquer ver 0.05 1.69 0.04 0.54 inf; +déloques déloquer ver 0.05 1.69 0 0.14 ind:pre:2s; +déloqué déloquer ver m s 0.05 1.69 0 0.07 par:pas; +déloquées déloquer ver f p 0.05 1.69 0 0.07 par:pas; +déloqués déloquer ver m p 0.05 1.69 0 0.07 par:pas; +délourdant délourder ver 0 0.2 0 0.07 par:pre; +délourder délourder ver 0 0.2 0 0.14 inf; +déloyal déloyal adj m s 1.41 0.54 0.81 0.47 +déloyale déloyal adj f s 1.41 0.54 0.54 0.07 +déloyalement déloyalement adv 0.02 0.14 0.02 0.14 +déloyauté déloyauté nom f s 0.26 0.34 0.26 0.27 +déloyautés déloyauté nom f p 0.26 0.34 0 0.07 +déloyaux déloyal adj m p 1.41 0.54 0.06 0 +déluge déluge nom m s 2.53 8.58 2.51 8.18 +déluges déluge nom m p 2.53 8.58 0.03 0.41 +déluré déluré adj m s 0.36 0.81 0.16 0.41 +délurée déluré adj f s 0.36 0.81 0.18 0.34 +délurées délurer ver f p 0.11 0.34 0.05 0.07 par:pas; +délustrer délustrer ver 0 0.07 0 0.07 inf; +délègue déléguer ver 1.9 6.62 0.21 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délégation délégation nom f s 3.49 12.77 3.11 10.68 +délégations délégation nom f p 3.49 12.77 0.39 2.09 +délégua déléguer ver 1.9 6.62 0 0.41 ind:pas:3s; +déléguaient déléguer ver 1.9 6.62 0 0.14 ind:imp:3p; +déléguait déléguer ver 1.9 6.62 0.01 0.74 ind:imp:3s; +déléguant déléguer ver 1.9 6.62 0 0.2 par:pre; +déléguer déléguer ver 1.9 6.62 0.52 0.95 inf; +déléguerai déléguer ver 1.9 6.62 0.04 0 ind:fut:1s; +délégueraient déléguer ver 1.9 6.62 0 0.07 cnd:pre:3p; +déléguez déléguer ver 1.9 6.62 0.04 0.14 imp:pre:2p;ind:pre:2p; +déléguiez déléguer ver 1.9 6.62 0 0.07 ind:imp:2p; +déléguons déléguer ver 1.9 6.62 0.01 0 ind:pre:1p; +déléguât déléguer ver 1.9 6.62 0 0.07 sub:imp:3s; +délégué délégué nom m s 3.96 12.16 1.83 7.09 +délégué_général délégué_général adj m s 0 0.14 0 0.14 +délégué_général délégué_général nom m s 0 0.14 0 0.14 +déléguée délégué nom f s 3.96 12.16 0.57 0.27 +délégués délégué nom m p 3.96 12.16 1.56 4.8 +délétère délétère adj s 0 1.01 0 0.68 +délétères délétère adj p 0 1.01 0 0.34 +démagnétiser démagnétiser ver 0.12 0.07 0.04 0 inf; +démagnétisé démagnétiser ver m s 0.12 0.07 0.05 0 par:pas; +démagnétisée démagnétiser ver f s 0.12 0.07 0.02 0.07 par:pas; +démago démago adj f s 0.03 0 0.03 0 +démagogie démagogie nom f s 0.47 1.35 0.47 1.35 +démagogique démagogique adj f s 0.14 0.47 0.14 0.34 +démagogiques démagogique adj m p 0.14 0.47 0 0.14 +démagogue démagogue adj s 0.22 0.07 0.21 0.07 +démagogues démagogue nom p 0.29 0.54 0.13 0.34 +démaille démailler ver 0 0.2 0 0.07 ind:pre:3s; +démailler démailler ver 0 0.2 0 0.07 inf; +démailloter démailloter ver 0 0.34 0 0.2 inf; +démailloté démailloter ver m s 0 0.34 0 0.14 par:pas; +démaillée démailler ver f s 0 0.2 0 0.07 par:pas; +démanche démancher ver 0 0.2 0 0.07 ind:pre:3s; +démancher démancher ver 0 0.2 0 0.07 inf; +démanché démancher ver m s 0 0.2 0 0.07 par:pas; +démange démanger ver 3.1 3.51 2.38 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démangeaient démanger ver 3.1 3.51 0 0.14 ind:imp:3p; +démangeais démanger ver 3.1 3.51 0.01 0.07 ind:imp:1s; +démangeaison démangeaison nom f s 1.05 2.3 0.39 1.08 +démangeaisons démangeaison nom f p 1.05 2.3 0.66 1.22 +démangeait démanger ver 3.1 3.51 0.29 1.42 ind:imp:3s; +démangent démanger ver 3.1 3.51 0.28 0.2 ind:pre:3p; +démanger démanger ver 3.1 3.51 0.13 0.07 inf; +démangé démanger ver m s 3.1 3.51 0.01 0.14 par:pas; +démangés démanger ver m p 3.1 3.51 0 0.07 par:pas; +démanteler démanteler ver 1.83 1.62 0.68 0.34 inf; +démantelez démanteler ver 1.83 1.62 0.04 0 imp:pre:2p; +démantelons démanteler ver 1.83 1.62 0.01 0 ind:pre:1p; +démantelé démanteler ver m s 1.83 1.62 0.68 0.27 par:pas; +démantelée démanteler ver f s 1.83 1.62 0.03 0.2 par:pas; +démantelées démanteler ver f p 1.83 1.62 0.3 0.34 par:pas; +démantelés démanteler ver m p 1.83 1.62 0.01 0.34 par:pas; +démantibulant démantibuler ver 0.04 1.76 0 0.07 par:pre; +démantibule démantibuler ver 0.04 1.76 0.02 0.07 ind:pre:1s;ind:pre:3s; +démantibulent démantibuler ver 0.04 1.76 0 0.07 ind:pre:3p; +démantibuler démantibuler ver 0.04 1.76 0.01 0.2 inf; +démantibulé démantibuler ver m s 0.04 1.76 0.01 0.47 par:pas; +démantibulée démantibuler ver f s 0.04 1.76 0 0.27 par:pas; +démantibulées démantibuler ver f p 0.04 1.76 0 0.27 par:pas; +démantibulés démantibuler ver m p 0.04 1.76 0 0.34 par:pas; +démantèle démanteler ver 1.83 1.62 0.08 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démantèlement démantèlement nom m s 0.14 0.41 0.14 0.34 +démantèlements démantèlement nom m p 0.14 0.41 0 0.07 +démantèlent démanteler ver 1.83 1.62 0 0.14 ind:pre:3p; +démaquillage démaquillage nom m s 0.01 0.14 0.01 0.14 +démaquillaient démaquiller ver 0.55 1.49 0 0.07 ind:imp:3p; +démaquillais démaquiller ver 0.55 1.49 0 0.07 ind:imp:1s; +démaquillait démaquiller ver 0.55 1.49 0 0.27 ind:imp:3s; +démaquillant démaquillant nom m s 0.04 0.41 0.04 0.41 +démaquillante démaquillant adj f s 0.04 0.07 0.04 0 +démaquille démaquiller ver 0.55 1.49 0.16 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démaquiller démaquiller ver 0.55 1.49 0.25 0.47 inf; +démaquillerai démaquiller ver 0.55 1.49 0.1 0 ind:fut:1s; +démaquillé démaquiller ver m s 0.55 1.49 0.02 0.34 par:pas; +démaquillée démaquiller ver f s 0.55 1.49 0.01 0.14 par:pas; +démarcation démarcation nom f s 0.29 1.76 0.29 1.76 +démarcha démarcher ver 0.13 0.27 0.01 0.14 ind:pas:3s; +démarchage démarchage nom m s 0.06 0.07 0.06 0.07 +démarchait démarcher ver 0.13 0.27 0.01 0.07 ind:imp:3s; +démarche démarche nom f s 5.69 32.91 3.96 25.07 +démarcher démarcher ver 0.13 0.27 0.05 0 inf; +démarches démarche nom f p 5.69 32.91 1.73 7.84 +démarcheur démarcheur nom m s 0.04 1.15 0.02 0.74 +démarcheurs démarcheur nom m p 0.04 1.15 0 0.41 +démarcheuse démarcheur nom f s 0.04 1.15 0.02 0 +démarient démarier ver 0.02 0.07 0.01 0 ind:pre:3p; +démarier démarier ver 0.02 0.07 0.01 0 inf; +démariée démarier ver f s 0.02 0.07 0 0.07 par:pas; +démarquai démarquer ver 0.94 0.74 0 0.07 ind:pas:1s; +démarquaient démarquer ver 0.94 0.74 0 0.2 ind:imp:3p; +démarquait démarquer ver 0.94 0.74 0.01 0.07 ind:imp:3s; +démarque démarquer ver 0.94 0.74 0.22 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démarquer démarquer ver 0.94 0.74 0.13 0.2 inf; +démarqué démarquer ver m s 0.94 0.74 0.49 0.14 par:pas; +démarquée démarquer ver f s 0.94 0.74 0.07 0.07 par:pas; +démarquées démarquer ver f p 0.94 0.74 0.01 0 par:pas; +démarqués démarquer ver m p 0.94 0.74 0.01 0 par:pas; +démarra démarrer ver 35.67 29.32 0.03 6.35 ind:pas:3s; +démarrage démarrage nom m s 1.18 3.31 1.17 3.11 +démarrages démarrage nom m p 1.18 3.31 0.01 0.2 +démarrai démarrer ver 35.67 29.32 0 0.2 ind:pas:1s; +démarraient démarrer ver 35.67 29.32 0.02 0.34 ind:imp:3p; +démarrais démarrer ver 35.67 29.32 0.06 0.34 ind:imp:1s;ind:imp:2s; +démarrait démarrer ver 35.67 29.32 0.57 2.5 ind:imp:3s; +démarrant démarrer ver 35.67 29.32 0.09 1.22 par:pre; +démarre démarrer ver 35.67 29.32 17.11 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démarrent démarrer ver 35.67 29.32 1.04 0.81 ind:pre:3p; +démarrer démarrer ver 35.67 29.32 9.1 5.27 inf; +démarrera démarrer ver 35.67 29.32 0.29 0.07 ind:fut:3s; +démarrerai démarrer ver 35.67 29.32 0.02 0 ind:fut:1s; +démarreront démarrer ver 35.67 29.32 0.04 0 ind:fut:3p; +démarres démarrer ver 35.67 29.32 0.51 0.2 ind:pre:2s; +démarreur démarreur nom m s 1.25 2.23 1.24 2.09 +démarreurs démarreur nom m p 1.25 2.23 0.01 0.14 +démarrez démarrer ver 35.67 29.32 3.15 0.07 imp:pre:2p;ind:pre:2p; +démarrions démarrer ver 35.67 29.32 0 0.07 ind:imp:1p; +démarrons démarrer ver 35.67 29.32 0.39 0.2 imp:pre:1p;ind:pre:1p; +démarrât démarrer ver 35.67 29.32 0 0.07 sub:imp:3s; +démarrèrent démarrer ver 35.67 29.32 0 0.27 ind:pas:3p; +démarré démarrer ver m s 35.67 29.32 3.15 4.32 par:pas; +démarrée démarrer ver f s 35.67 29.32 0.1 0.14 par:pas; +démarrées démarrer ver f p 35.67 29.32 0 0.07 par:pas; +démarrés démarrer ver m p 35.67 29.32 0.01 0.14 par:pas; +démasqua démasquer ver 6.41 4.66 0 0.27 ind:pas:3s; +démasquage démasquage nom m s 0.01 0 0.01 0 +démasquaient démasquer ver 6.41 4.66 0 0.07 ind:imp:3p; +démasquais démasquer ver 6.41 4.66 0 0.07 ind:imp:1s; +démasquait démasquer ver 6.41 4.66 0.02 0.07 ind:imp:3s; +démasquant démasquer ver 6.41 4.66 0.17 0.61 par:pre; +démasque démasquer ver 6.41 4.66 0.46 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +démasquent démasquer ver 6.41 4.66 0.07 0.2 ind:pre:3p; +démasquer démasquer ver 6.41 4.66 2.44 0.74 inf;; +démasquera démasquer ver 6.41 4.66 0.2 0 ind:fut:3s; +démasquerai démasquer ver 6.41 4.66 0.07 0.07 ind:fut:1s; +démasquerait démasquer ver 6.41 4.66 0.11 0 cnd:pre:3s; +démasqueriez démasquer ver 6.41 4.66 0.01 0 cnd:pre:2p; +démasquerons démasquer ver 6.41 4.66 0.03 0.07 ind:fut:1p; +démasqueront démasquer ver 6.41 4.66 0.01 0 ind:fut:3p; +démasquons démasquer ver 6.41 4.66 0.02 0 imp:pre:1p;ind:pre:1p; +démasqué démasquer ver m s 6.41 4.66 1.76 1.35 par:pas; +démasquée démasquer ver f s 6.41 4.66 0.51 0.54 par:pas; +démasquées démasquer ver f p 6.41 4.66 0.04 0.07 par:pas; +démasqués démasquer ver m p 6.41 4.66 0.5 0.27 par:pas; +dématérialisation dématérialisation nom f s 0.01 0 0.01 0 +dématérialise dématérialiser ver 0.18 0.07 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dématérialisent dématérialiser ver 0.18 0.07 0.01 0 ind:pre:3p; +dématérialiser dématérialiser ver 0.18 0.07 0.05 0 inf; +dématérialisé dématérialiser ver m s 0.18 0.07 0.08 0 par:pas; +démembrant démembrer ver 0.87 0.54 0.01 0 par:pre; +démembre démembrer ver 0.87 0.54 0.12 0 ind:pre:1s;ind:pre:3s; +démembrement démembrement nom m s 0.14 0.34 0.13 0.34 +démembrements démembrement nom m p 0.14 0.34 0.01 0 +démembrer démembrer ver 0.87 0.54 0.28 0.2 inf; +démembrez démembrer ver 0.87 0.54 0.01 0 ind:pre:2p; +démembré démembrer ver m s 0.87 0.54 0.25 0.2 par:pas; +démembrée démembrer ver f s 0.87 0.54 0.08 0 par:pas; +démembrées démembrer ver f p 0.87 0.54 0.04 0 par:pas; +démembrés démembrer ver m p 0.87 0.54 0.07 0.14 par:pas; +démena démener ver 2.65 3.72 0 0.14 ind:pas:3s; +démenaient démener ver 2.65 3.72 0 0.41 ind:imp:3p; +démenais démener ver 2.65 3.72 0.25 0 ind:imp:1s;ind:imp:2s; +démenait démener ver 2.65 3.72 0.05 0.95 ind:imp:3s; +démenant démener ver 2.65 3.72 0.01 0.47 par:pre; +démence démence nom f s 2.75 2.43 2.75 2.43 +démener démener ver 2.65 3.72 0.32 1.01 inf; +démenons démener ver 2.65 3.72 0 0.07 ind:pre:1p; +démenotte démenotter ver 0 0.07 0 0.07 ind:pre:3s; +démens démentir ver 3.06 6.35 0.37 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dément dément adj m s 3.12 3.72 2.02 1.35 +démentaient démentir ver 3.06 6.35 0.01 0.61 ind:imp:3p; +démentait démentir ver 3.06 6.35 0.01 1.22 ind:imp:3s; +démentant démentir ver 3.06 6.35 0.01 0.41 par:pre; +démente dément adj f s 3.12 3.72 0.48 1.28 +démentent démentir ver 3.06 6.35 0.05 0.2 ind:pre:3p; +démentes dément adj f p 3.12 3.72 0.2 0.54 +démentez démentir ver 3.06 6.35 0.03 0 imp:pre:2p;ind:pre:2p; +démenti démenti nom m s 1.04 2.7 1.01 2.09 +démentie démenti adj f s 0.21 0.68 0.16 0.07 +démentiel démentiel adj m s 0.52 1.42 0.46 0.61 +démentielle démentiel adj f s 0.52 1.42 0.05 0.41 +démentielles démentiel adj f p 0.52 1.42 0 0.27 +démentiels démentiel adj m p 0.52 1.42 0.01 0.14 +démenties démentir ver f p 3.06 6.35 0.27 0.14 par:pas; +démentir démentir ver 3.06 6.35 1.06 1.55 inf; +démentirai démentir ver 3.06 6.35 0.01 0 ind:fut:1s; +démentirait démentir ver 3.06 6.35 0.01 0 cnd:pre:3s; +démentiront démentir ver 3.06 6.35 0.01 0 ind:fut:3p; +démentis démenti nom m p 1.04 2.7 0.03 0.61 +démentit démentir ver 3.06 6.35 0.03 0.41 ind:pas:3s; +déments dément adj m p 3.12 3.72 0.41 0.54 +démené démener ver m s 2.65 3.72 0.3 0.07 par:pas; +démenée démener ver f s 2.65 3.72 0.09 0.07 par:pas; +démerdaient démerder ver 5.37 6.42 0 0.07 ind:imp:3p; +démerdais démerder ver 5.37 6.42 0.01 0.07 ind:imp:1s; +démerdait démerder ver 5.37 6.42 0.02 0.14 ind:imp:3s; +démerdard démerdard nom m s 0.16 0.07 0.16 0 +démerdards démerdard nom m p 0.16 0.07 0 0.07 +démerde démerder ver 5.37 6.42 1.74 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démerdent démerder ver 5.37 6.42 0.21 0.41 ind:pre:3p; +démerder démerder ver 5.37 6.42 1.27 1.01 inf; +démerdera démerder ver 5.37 6.42 0.02 0.27 ind:fut:3s; +démerderai démerder ver 5.37 6.42 0.01 0.54 ind:fut:1s; +démerderas démerder ver 5.37 6.42 0 0.14 ind:fut:2s; +démerdes démerder ver 5.37 6.42 0.93 0.34 ind:pre:2s; +démerdez démerder ver 5.37 6.42 0.8 0.54 imp:pre:2p;ind:pre:2p; +démerdé démerder ver m s 5.37 6.42 0.23 0.81 par:pas; +démerdée démerder ver f s 5.37 6.42 0.14 0.27 par:pas; +démerdés démerder ver m p 5.37 6.42 0 0.2 par:pas; +démesure démesure nom f s 0.04 1.15 0.04 1.15 +démesurent démesurer ver 0.55 2.3 0 0.07 ind:pre:3p; +démesuré démesuré adj m s 0.72 8.38 0.41 3.18 +démesurée démesurer ver f s 0.55 2.3 0.36 0.88 par:pas; +démesurées démesuré adj f p 0.72 8.38 0.07 1.08 +démesurément démesurément adv 0.09 4.19 0.09 4.19 +démesurés démesurer ver m p 0.55 2.3 0.11 0.27 par:pas; +démet démettre ver 0.84 1.28 0.04 0.14 ind:pre:3s; +démets démettre ver 0.84 1.28 0.04 0.07 ind:pre:1s; +démette démettre ver 0.84 1.28 0.01 0 sub:pre:3s; +démettez démettre ver 0.84 1.28 0.04 0 imp:pre:2p; +démettrait démettre ver 0.84 1.28 0 0.07 cnd:pre:3s; +démettre démettre ver 0.84 1.28 0.2 0.41 inf; +démeublé démeubler ver m s 0 0.41 0 0.2 par:pas; +démeublée démeubler ver f s 0 0.41 0 0.2 par:pas; +démilitarisation démilitarisation nom f s 0.14 0.07 0.14 0.07 +démilitarisée démilitariser ver f s 0.25 0.14 0.25 0.07 par:pas; +démilitarisées démilitariser ver f p 0.25 0.14 0 0.07 par:pas; +déminage déminage nom m s 0.69 0.34 0.69 0.34 +déminant déminer ver 0.02 0.2 0 0.07 par:pre; +déminer déminer ver 0.02 0.2 0.01 0 inf; +démineur démineur nom m s 0.54 0.07 0.17 0.07 +démineurs démineur nom m p 0.54 0.07 0.37 0 +déminé déminer ver m s 0.02 0.2 0.01 0.07 par:pas; +déminée déminer ver f s 0.02 0.2 0 0.07 par:pas; +démis démettre ver m 0.84 1.28 0.41 0.41 par:pas; +démise démis adj f s 0.13 0.41 0.12 0.27 +démises démis adj f p 0.13 0.41 0 0.07 +démission démission nom f s 7.6 5.47 7.34 5.07 +démissionna démissionner ver 17.79 1.82 0.05 0 ind:pas:3s; +démissionnaient démissionner ver 17.79 1.82 0 0.07 ind:imp:3p; +démissionnaire démissionnaire nom s 0.32 0 0.14 0 +démissionnaires démissionnaire nom p 0.32 0 0.19 0 +démissionnais démissionner ver 17.79 1.82 0.08 0 ind:imp:1s;ind:imp:2s; +démissionnait démissionner ver 17.79 1.82 0.02 0.14 ind:imp:3s; +démissionnant démissionner ver 17.79 1.82 0.02 0.07 par:pre; +démissionne démissionner ver 17.79 1.82 5.28 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démissionnent démissionner ver 17.79 1.82 0.06 0.07 ind:pre:3p; +démissionner démissionner ver 17.79 1.82 5.15 0.2 inf; +démissionnera démissionner ver 17.79 1.82 0.1 0 ind:fut:3s; +démissionnerai démissionner ver 17.79 1.82 0.42 0 ind:fut:1s; +démissionneraient démissionner ver 17.79 1.82 0.01 0 cnd:pre:3p; +démissionnerais démissionner ver 17.79 1.82 0.07 0.14 cnd:pre:1s;cnd:pre:2s; +démissionnerait démissionner ver 17.79 1.82 0.01 0.07 cnd:pre:3s; +démissionneras démissionner ver 17.79 1.82 0.01 0 ind:fut:2s; +démissionnerez démissionner ver 17.79 1.82 0.04 0 ind:fut:2p; +démissionneront démissionner ver 17.79 1.82 0.02 0 ind:fut:3p; +démissionnes démissionner ver 17.79 1.82 0.48 0 ind:pre:2s; +démissionnez démissionner ver 17.79 1.82 0.67 0.14 imp:pre:2p;ind:pre:2p; +démissionniez démissionner ver 17.79 1.82 0.06 0 ind:imp:2p; +démissionné démissionner ver m s 17.79 1.82 5.23 0.68 par:pas; +démissions démission nom f p 7.6 5.47 0.26 0.41 +démit démettre ver 0.84 1.28 0.01 0.14 ind:pas:3s; +démiurge démiurge nom m s 0.16 1.01 0.16 0.88 +démiurges démiurge nom m p 0.16 1.01 0 0.14 +démobilisant démobiliser ver 0.28 1.28 0 0.07 par:pre; +démobilisateur démobilisateur adj m s 0 0.14 0 0.14 +démobilisation démobilisation nom f s 0.22 1.28 0.22 1.28 +démobilise démobiliser ver 0.28 1.28 0.01 0.27 ind:pre:1s;ind:pre:3s; +démobiliser démobiliser ver 0.28 1.28 0.03 0.14 inf; +démobiliseriez démobiliser ver 0.28 1.28 0 0.07 cnd:pre:2p; +démobilisé démobilisé adj m s 0.17 0.34 0.16 0.14 +démobilisés démobiliser ver m p 0.28 1.28 0.13 0.14 par:pas; +démocrate démocrate adj s 3.06 1.42 2.08 0.88 +démocrate_chrétien démocrate_chrétien adj m s 0.21 0.14 0.21 0.07 +démocrates démocrate nom p 3.68 1.08 2.35 0.74 +démocrate_chrétien démocrate_chrétien nom p 0.1 0.27 0.1 0.27 +démocratie démocratie nom f s 13.13 15.68 12.69 11.01 +démocraties démocratie nom f p 13.13 15.68 0.44 4.66 +démocratique démocratique adj s 5.38 5.74 4.97 4.12 +démocratiquement démocratiquement adv 0.18 0.27 0.18 0.27 +démocratiques démocratique adj p 5.38 5.74 0.41 1.62 +démocratisation démocratisation nom f s 0.01 0.2 0.01 0.14 +démocratisations démocratisation nom f p 0.01 0.2 0 0.07 +démocratise démocratiser ver 0.16 0.2 0.14 0.07 ind:pre:3s; +démocratiser démocratiser ver 0.16 0.2 0.01 0.07 inf; +démocratiseront démocratiser ver 0.16 0.2 0 0.07 ind:fut:3p; +démocratisé démocratiser ver m s 0.16 0.2 0.01 0 par:pas; +démodaient démoder ver 1.03 1.55 0.01 0.07 ind:imp:3p; +démodant démoder ver 1.03 1.55 0 0.07 par:pre; +démode démoder ver 1.03 1.55 0.06 0.2 ind:pre:3s; +démoder démoder ver 1.03 1.55 0 0.07 inf; +démodulateur démodulateur nom m s 0.03 0 0.02 0 +démodulateurs démodulateur nom m p 0.03 0 0.01 0 +démodé démodé adj m s 1.64 3.58 0.8 1.35 +démodée démodé adj f s 1.64 3.58 0.43 0.88 +démodées démodé adj f p 1.64 3.58 0.26 0.74 +démodés démodé adj m p 1.64 3.58 0.16 0.61 +démographie démographie nom f s 0.16 0.54 0.16 0.54 +démographique démographique adj s 0.2 0.54 0.14 0.2 +démographiquement démographiquement adv 0 0.07 0 0.07 +démographiques démographique adj p 0.2 0.54 0.06 0.34 +démoli démolir ver m s 18.81 11.22 4.41 2.3 par:pas; +démolie démolir ver f s 18.81 11.22 1.15 0.88 par:pas; +démolies démolir ver f p 18.81 11.22 0.02 0.61 par:pas; +démolir démolir ver 18.81 11.22 8.02 3.65 inf; +démolira démolir ver 18.81 11.22 0.51 0.14 ind:fut:3s; +démolirai démolir ver 18.81 11.22 0.06 0.07 ind:fut:1s; +démoliraient démolir ver 18.81 11.22 0.02 0.07 cnd:pre:3p; +démolirais démolir ver 18.81 11.22 0.08 0 cnd:pre:1s;cnd:pre:2s; +démolirait démolir ver 18.81 11.22 0.03 0.14 cnd:pre:3s; +démolirent démolir ver 18.81 11.22 0 0.07 ind:pas:3p; +démolirions démolir ver 18.81 11.22 0 0.07 cnd:pre:1p; +démoliront démolir ver 18.81 11.22 0.15 0.07 ind:fut:3p; +démolis démolir ver m p 18.81 11.22 1.93 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +démolissaient démolir ver 18.81 11.22 0.04 0.27 ind:imp:3p; +démolissais démolir ver 18.81 11.22 0 0.2 ind:imp:1s; +démolissait démolir ver 18.81 11.22 0.03 0.54 ind:imp:3s; +démolissant démolir ver 18.81 11.22 0.04 0.41 par:pre; +démolisse démolir ver 18.81 11.22 0.37 0.14 sub:pre:1s;sub:pre:3s; +démolissent démolir ver 18.81 11.22 0.48 0.27 ind:pre:3p; +démolisses démolir ver 18.81 11.22 0.17 0 sub:pre:2s; +démolisseur démolisseur nom m s 0.23 0.61 0.18 0.07 +démolisseurs démolisseur nom m p 0.23 0.61 0.05 0.47 +démolisseuse démolisseur nom f s 0.23 0.61 0 0.07 +démolissez démolir ver 18.81 11.22 0.4 0 imp:pre:2p;ind:pre:2p; +démolissions démolir ver 18.81 11.22 0 0.07 ind:imp:1p; +démolit démolir ver 18.81 11.22 0.89 0.61 ind:pre:3s;ind:pas:3s; +démolition démolition nom f s 1.55 2.36 1.53 1.82 +démolitions démolition nom f p 1.55 2.36 0.02 0.54 +démon démon nom m s 61 20.34 39.71 13.58 +démone démon nom f s 61 20.34 0.14 0.14 +démones démon nom f p 61 20.34 0.05 0.07 +démoniaque démoniaque adj s 5.52 2.3 4.22 1.69 +démoniaquement démoniaquement adv 0 0.07 0 0.07 +démoniaques démoniaque adj p 5.52 2.3 1.29 0.61 +démonique démonique adj s 0.04 0 0.04 0 +démonologie démonologie nom f s 0.16 0 0.16 0 +démonomanie démonomanie nom f s 0.01 0 0.01 0 +démons démon nom m p 61 20.34 21.1 6.55 +démonstrateur démonstrateur nom m s 0.06 0.54 0.02 0.14 +démonstrateurs démonstrateur nom m p 0.06 0.54 0 0.34 +démonstratif démonstratif adj m s 0.46 1.08 0.23 0.54 +démonstratifs démonstratif adj m p 0.46 1.08 0.15 0.2 +démonstration démonstration nom f s 7.61 12.23 7.3 9.53 +démonstrations démonstration nom f p 7.61 12.23 0.31 2.7 +démonstrative démonstratif adj f s 0.46 1.08 0.08 0.34 +démonstrativement démonstrativement adv 0.01 0.34 0.01 0.34 +démonstratrice démonstrateur nom f s 0.06 0.54 0.04 0.07 +démonta démonter ver 6.83 7.77 0 0.2 ind:pas:3s; +démontable démontable adj s 0.38 0.61 0.25 0.47 +démontables démontable adj f p 0.38 0.61 0.14 0.14 +démontage démontage nom m s 0.06 0.14 0.06 0.07 +démontages démontage nom m p 0.06 0.14 0 0.07 +démontaient démonter ver 6.83 7.77 0 0.14 ind:imp:3p; +démontait démonter ver 6.83 7.77 0.05 0.74 ind:imp:3s; +démontant démonter ver 6.83 7.77 0.04 0.07 par:pre; +démonte démonter ver 6.83 7.77 1.4 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démonte_pneu démonte_pneu nom m s 0.26 0.2 0.25 0.07 +démonte_pneu démonte_pneu nom m p 0.26 0.2 0.01 0.14 +démontent démonter ver 6.83 7.77 0.18 0.07 ind:pre:3p; +démonter démonter ver 6.83 7.77 3.44 3.11 inf; +démontez démonter ver 6.83 7.77 0.35 0 imp:pre:2p;ind:pre:2p; +démontra démontrer ver 7.12 12.09 0 0.34 ind:pas:3s; +démontrable démontrable adj m s 0.03 0 0.03 0 +démontrai démontrer ver 7.12 12.09 0 0.2 ind:pas:1s; +démontraient démontrer ver 7.12 12.09 0.01 0.27 ind:imp:3p; +démontrait démontrer ver 7.12 12.09 0.07 0.81 ind:imp:3s; +démontrant démontrer ver 7.12 12.09 0.06 0.81 par:pre; +démontre démontrer ver 7.12 12.09 1.38 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démontrent démontrer ver 7.12 12.09 0.34 0.14 ind:pre:3p; +démontrer démontrer ver 7.12 12.09 3.23 5.61 inf; +démontrera démontrer ver 7.12 12.09 0.09 0.07 ind:fut:3s; +démontrerai démontrer ver 7.12 12.09 0.09 0 ind:fut:1s; +démontrerait démontrer ver 7.12 12.09 0.02 0.14 cnd:pre:3s; +démontrerons démontrer ver 7.12 12.09 0.04 0 ind:fut:1p; +démontreront démontrer ver 7.12 12.09 0.07 0 ind:fut:3p; +démontrez démontrer ver 7.12 12.09 0.3 0 imp:pre:2p;ind:pre:2p; +démontrions démontrer ver 7.12 12.09 0.01 0.07 ind:imp:1p; +démontrât démontrer ver 7.12 12.09 0 0.07 sub:imp:3s; +démontrèrent démontrer ver 7.12 12.09 0 0.2 ind:pas:3p; +démontré démontrer ver m s 7.12 12.09 1.16 1.82 par:pas; +démontrée démontrer ver f s 7.12 12.09 0.21 0.34 par:pas; +démontrées démontrer ver f p 7.12 12.09 0.03 0 par:pas; +démontrés démontrer ver m p 7.12 12.09 0.02 0 par:pas; +démonté démonter ver m s 6.83 7.77 1.1 1.35 par:pas; +démontée démonté adj f s 0.31 2.09 0.22 0.74 +démontées démonter ver f p 6.83 7.77 0.08 0.07 par:pas; +démontés démonter ver m p 6.83 7.77 0.06 0.27 par:pas; +démonétisé démonétiser ver m s 0 0.14 0 0.07 par:pas; +démonétisés démonétiser ver m p 0 0.14 0 0.07 par:pas; +démoralisa démoraliser ver 0.98 1.82 0 0.07 ind:pas:3s; +démoralisait démoraliser ver 0.98 1.82 0 0.14 ind:imp:3s; +démoralisant démoralisant adj m s 0.14 0.81 0.11 0.34 +démoralisante démoralisant adj f s 0.14 0.81 0.03 0.34 +démoralisants démoralisant adj m p 0.14 0.81 0 0.14 +démoralisateur démoralisateur nom m s 0.01 0.07 0.01 0 +démoralisateurs démoralisateur adj m p 0 0.07 0 0.07 +démoralisateurs démoralisateur nom m p 0.01 0.07 0 0.07 +démoralisation démoralisation nom f s 0.3 0.61 0.3 0.61 +démoralise démoraliser ver 0.98 1.82 0.1 0.27 imp:pre:2s;ind:pre:3s; +démoralisent démoraliser ver 0.98 1.82 0.03 0.07 ind:pre:3p; +démoraliser démoraliser ver 0.98 1.82 0.34 0.47 inf; +démoraliseraient démoraliser ver 0.98 1.82 0 0.07 cnd:pre:3p; +démoraliserais démoraliser ver 0.98 1.82 0 0.07 cnd:pre:2s; +démoralisé démoraliser ver m s 0.98 1.82 0.32 0.34 par:pas; +démoralisée démoraliser ver f s 0.98 1.82 0.16 0.14 par:pas; +démoralisées démoralisé adj f p 0.12 0.27 0 0.07 +démoralisés démoraliser ver m p 0.98 1.82 0.02 0.2 par:pas; +démord démordre ver 0.49 2.57 0.05 0.27 ind:pre:3s; +démordaient démordre ver 0.49 2.57 0.01 0.07 ind:imp:3p; +démordais démordre ver 0.49 2.57 0 0.07 ind:imp:1s; +démordait démordre ver 0.49 2.57 0.11 0.88 ind:imp:3s; +démordent démordre ver 0.49 2.57 0 0.14 ind:pre:3p; +démordez démordre ver 0.49 2.57 0.02 0.07 imp:pre:2p;ind:pre:2p; +démordit démordre ver 0.49 2.57 0 0.07 ind:pas:3s; +démordra démordre ver 0.49 2.57 0.01 0.07 ind:fut:3s; +démordrai démordre ver 0.49 2.57 0.02 0 ind:fut:1s; +démordrait démordre ver 0.49 2.57 0 0.07 cnd:pre:3s; +démordre démordre ver 0.49 2.57 0.19 0.74 inf; +démordront démordre ver 0.49 2.57 0 0.07 ind:fut:3p; +démords démordre ver 0.49 2.57 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +démordu démordre ver m s 0.49 2.57 0.04 0 par:pas; +démotique démotique adj f s 0 0.14 0 0.14 +démotivation démotivation nom f s 0.01 0 0.01 0 +démotive démotiver ver 0.06 0 0.02 0 ind:pre:1s;ind:pre:3s; +démotiver démotiver ver 0.06 0 0.03 0 inf; +démotivée démotiver ver f s 0.06 0 0.01 0 par:pas; +démoucheté démoucheter ver m s 0.14 0.07 0.14 0.07 par:pas; +démoule démouler ver 0.09 0.07 0.02 0 ind:pre:1s;ind:pre:3s; +démouler démouler ver 0.09 0.07 0.03 0 inf; +démoules démouler ver 0.09 0.07 0.01 0 ind:pre:2s; +démoulé démouler ver m s 0.09 0.07 0.02 0 par:pas; +démoulées démouler ver f p 0.09 0.07 0 0.07 par:pas; +démultipliaient démultiplier ver 0.18 1.01 0 0.07 ind:imp:3p; +démultipliait démultiplier ver 0.18 1.01 0.01 0.07 ind:imp:3s; +démultipliant démultiplier ver 0.18 1.01 0.01 0 par:pre; +démultiplicateur démultiplicateur nom m s 0 0.07 0 0.07 +démultiplication démultiplication nom f s 0 0.07 0 0.07 +démultiplie démultiplier ver 0.18 1.01 0.01 0.07 ind:pre:3s; +démultiplient démultiplier ver 0.18 1.01 0.14 0.14 ind:pre:3p; +démultiplier démultiplier ver 0.18 1.01 0 0.14 inf; +démultiplié démultiplier ver m s 0.18 1.01 0.01 0.27 par:pas; +démultipliée démultiplier ver f s 0.18 1.01 0 0.14 par:pas; +démultipliées démultiplier ver f p 0.18 1.01 0 0.07 par:pas; +démultipliés démultiplier ver m p 0.18 1.01 0 0.07 par:pas; +démuni démunir ver m s 0.51 1.76 0.27 0.54 par:pas; +démunie démuni adj f s 0.56 3.58 0.09 0.34 +démunies démuni adj f p 0.56 3.58 0.03 0.14 +démunir démunir ver 0.51 1.76 0.01 0.14 inf; +démunis démuni nom m p 0.42 1.28 0.38 0.34 +démunissant démunir ver 0.51 1.76 0 0.07 par:pre; +démurge démurger ver 0 0.41 0 0.2 ind:pre:3s; +démurger démurger ver 0 0.41 0 0.2 inf; +démuseler démuseler ver 0 0.07 0 0.07 inf; +démystificateur démystificateur nom m s 0.03 0 0.03 0 +démystification démystification nom f s 0.1 0.07 0.1 0 +démystifications démystification nom f p 0.1 0.07 0 0.07 +démystificatrice démystificateur adj f s 0 0.14 0 0.14 +démystifier démystifier ver 0.05 0.07 0.04 0.07 inf; +démystifié démystifier ver m s 0.05 0.07 0.01 0 par:pas; +démythifie démythifier ver 0 0.14 0 0.07 ind:pre:3s; +démythifié démythifier ver m s 0 0.14 0 0.07 par:pas; +démâtait démâter ver 0.01 0.61 0 0.07 ind:imp:3s; +démâter démâter ver 0.01 0.61 0.01 0 inf; +démâté démâter ver m s 0.01 0.61 0 0.07 par:pas; +démâtée démâter ver f s 0.01 0.61 0 0.34 par:pas; +démâtés démâter ver m p 0.01 0.61 0 0.14 par:pas; +démène démener ver 2.65 3.72 1.27 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démènent démener ver 2.65 3.72 0.11 0.2 ind:pre:3p; +démèneras démener ver 2.65 3.72 0.1 0 ind:fut:2s; +démènes démener ver 2.65 3.72 0.14 0 ind:pre:2s; +déménage déménager ver 32.4 10.34 7.24 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déménagea déménager ver 32.4 10.34 0.16 0.07 ind:pas:3s; +déménageaient déménager ver 32.4 10.34 0.01 0.14 ind:imp:3p; +déménageais déménager ver 32.4 10.34 0.12 0.14 ind:imp:1s;ind:imp:2s; +déménageait déménager ver 32.4 10.34 0.38 0.2 ind:imp:3s; +déménageant déménager ver 32.4 10.34 0.1 0.14 par:pre; +déménagement déménagement nom m s 2.98 6.69 2.66 5.27 +déménagements déménagement nom m p 2.98 6.69 0.32 1.42 +déménagent déménager ver 32.4 10.34 0.89 0.2 ind:pre:3p; +déménageons déménager ver 32.4 10.34 0.28 0 imp:pre:1p;ind:pre:1p; +déménager déménager ver 32.4 10.34 11.14 4.12 inf; +déménagera déménager ver 32.4 10.34 0.4 0 ind:fut:3s; +déménagerai déménager ver 32.4 10.34 0.13 0 ind:fut:1s; +déménageraient déménager ver 32.4 10.34 0.01 0 cnd:pre:3p; +déménagerais déménager ver 32.4 10.34 0.07 0 cnd:pre:1s;cnd:pre:2s; +déménagerait déménager ver 32.4 10.34 0.15 0.14 cnd:pre:3s; +déménageras déménager ver 32.4 10.34 0.04 0 ind:fut:2s; +déménagerez déménager ver 32.4 10.34 0.14 0 ind:fut:2p; +déménages déménager ver 32.4 10.34 1.43 0.2 ind:pre:2s; +déménageur déménageur nom m s 1.67 3.18 0.63 1.28 +déménageurs déménageur nom m p 1.67 3.18 1.03 1.82 +déménageuse déménageur nom f s 1.67 3.18 0 0.07 +déménagez déménager ver 32.4 10.34 1.06 0.47 imp:pre:2p;ind:pre:2p; +déménagiez déménager ver 32.4 10.34 0.03 0 ind:imp:2p; +déménagions déménager ver 32.4 10.34 0.1 0.2 ind:imp:1p; +déménagèrent déménager ver 32.4 10.34 0.03 0.2 ind:pas:3p; +déménagé déménager ver m s 32.4 10.34 8.41 2.36 par:pas; +déménagée déménager ver f s 32.4 10.34 0.07 0.14 par:pas; +déménagés déménager ver m p 32.4 10.34 0.04 0.14 par:pas; +déméritait démériter ver 0.02 0.74 0 0.07 ind:imp:3s; +démérite démérite nom m s 0.04 0.2 0.04 0.14 +démériter démériter ver 0.02 0.74 0 0.07 inf; +démérites démérite nom m p 0.04 0.2 0 0.07 +démérité démériter ver m s 0.02 0.74 0.02 0.61 par:pas; +démêla démêler ver 1.41 5.2 0 0.07 ind:pas:3s; +démêlage démêlage nom m s 0.01 0.07 0.01 0.07 +démêlai démêler ver 1.41 5.2 0 0.2 ind:pas:1s; +démêlais démêler ver 1.41 5.2 0 0.14 ind:imp:1s; +démêlait démêler ver 1.41 5.2 0 0.27 ind:imp:3s; +démêlant démêlant nom m s 0.29 0 0.29 0 +démêle démêler ver 1.41 5.2 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démêlent démêler ver 1.41 5.2 0.01 0.07 ind:pre:3p; +démêler démêler ver 1.41 5.2 0.84 3.38 inf; +démêlerait démêler ver 1.41 5.2 0 0.07 cnd:pre:3s; +démêlions démêler ver 1.41 5.2 0 0.07 ind:imp:1p; +démêloir démêloir nom m s 0 0.07 0 0.07 +démêlé démêler ver m s 1.41 5.2 0.37 0.34 par:pas; +démêlées démêler ver f p 1.41 5.2 0 0.07 par:pas; +démêlés démêlé nom m p 0.38 1.22 0.38 1.22 +dénanti dénantir ver m s 0 0.07 0 0.07 par:pas; +dénatalité dénatalité nom f s 0.01 0 0.01 0 +dénaturaient dénaturer ver 0.54 1.49 0.01 0.07 ind:imp:3p; +dénaturait dénaturer ver 0.54 1.49 0.02 0.27 ind:imp:3s; +dénaturation dénaturation nom f s 0.02 0 0.02 0 +dénature dénaturer ver 0.54 1.49 0.07 0 imp:pre:2s;ind:pre:3s; +dénaturent dénaturer ver 0.54 1.49 0.01 0.14 ind:pre:3p; +dénaturer dénaturer ver 0.54 1.49 0.14 0.54 inf; +dénaturé dénaturer ver m s 0.54 1.49 0.26 0.14 par:pas; +dénaturée dénaturé adj f s 0.44 0.88 0.21 0.27 +dénaturées dénaturé adj f p 0.44 0.88 0.04 0.2 +dénaturés dénaturer ver m p 0.54 1.49 0 0.07 par:pas; +dénazification dénazification nom f s 0.03 0 0.03 0 +dénazifier dénazifier ver 0.01 0 0.01 0 inf; +déneigement déneigement nom m s 0.01 0 0.01 0 +déneiger déneiger ver 0.09 0 0.08 0 inf; +déneigé déneiger ver m s 0.09 0 0.01 0 par:pas; +dénervation dénervation nom f s 0.01 0 0.01 0 +dénervé dénerver ver m s 0 0.07 0 0.07 par:pas; +déni déni nom m s 0.84 0.41 0.78 0.27 +dénia dénier ver 0.64 1.22 0 0.07 ind:pas:3s; +déniaient dénier ver 0.64 1.22 0 0.07 ind:imp:3p; +déniaisa déniaiser ver 0.04 0.41 0 0.07 ind:pas:3s; +déniaisas déniaiser ver 0.04 0.41 0 0.07 ind:pas:2s; +déniaisement déniaisement nom m s 0 0.14 0 0.14 +déniaiser déniaiser ver 0.04 0.41 0.04 0 inf; +déniaises déniaiser ver 0.04 0.41 0 0.07 ind:pre:2s; +déniaisé déniaiser ver m s 0.04 0.41 0.01 0.2 par:pas; +déniait dénier ver 0.64 1.22 0 0.27 ind:imp:3s; +déniant dénier ver 0.64 1.22 0.02 0.2 par:pre; +dénicha dénicher ver 5.07 8.78 0.02 0.41 ind:pas:3s; +dénichai dénicher ver 5.07 8.78 0 0.07 ind:pas:1s; +dénichaient dénicher ver 5.07 8.78 0 0.07 ind:imp:3p; +dénichais dénicher ver 5.07 8.78 0.14 0.2 ind:imp:1s;ind:imp:2s; +dénichait dénicher ver 5.07 8.78 0.04 0.2 ind:imp:3s; +dénichant dénicher ver 5.07 8.78 0.01 0 par:pre; +déniche dénicher ver 5.07 8.78 0.52 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénichent dénicher ver 5.07 8.78 0.04 0.2 ind:pre:3p; +dénicher dénicher ver 5.07 8.78 1.91 3.85 inf; +dénichera dénicher ver 5.07 8.78 0.17 0.07 ind:fut:3s; +dénicherait dénicher ver 5.07 8.78 0.01 0.07 cnd:pre:3s; +dénicheras dénicher ver 5.07 8.78 0.01 0.07 ind:fut:2s; +dénicheur dénicheur nom m s 0.5 0.34 0.44 0.14 +dénicheurs dénicheur nom m p 0.5 0.34 0.05 0.14 +dénicheuse dénicheur nom f s 0.5 0.34 0.01 0.07 +dénichez dénicher ver 5.07 8.78 0.41 0 imp:pre:2p;ind:pre:2p; +dénichions dénicher ver 5.07 8.78 0 0.07 ind:imp:1p; +déniché dénicher ver m s 5.07 8.78 1.47 2.43 par:pas; +dénichée dénicher ver f s 5.07 8.78 0.23 0.41 par:pas; +dénichées dénicher ver f p 5.07 8.78 0.01 0.14 par:pas; +dénichés dénicher ver m p 5.07 8.78 0.08 0.34 par:pas; +dénie dénier ver 0.64 1.22 0.32 0.2 ind:pre:1s;ind:pre:3s; +dénier dénier ver 0.64 1.22 0.1 0.34 inf; +dénierai dénier ver 0.64 1.22 0.01 0 ind:fut:1s; +dénies dénier ver 0.64 1.22 0.02 0 ind:pre:2s; +dénigrais dénigrer ver 1.51 1.08 0.14 0 ind:imp:1s; +dénigrait dénigrer ver 1.51 1.08 0 0.2 ind:imp:3s; +dénigrant dénigrer ver 1.51 1.08 0.03 0 par:pre; +dénigrante dénigrant adj f s 0.01 0.07 0 0.07 +dénigre dénigrer ver 1.51 1.08 0.31 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénigrement dénigrement nom m s 0.29 0.54 0.28 0.47 +dénigrements dénigrement nom m p 0.29 0.54 0.01 0.07 +dénigrent dénigrer ver 1.51 1.08 0.04 0.07 ind:pre:3p; +dénigrer dénigrer ver 1.51 1.08 0.53 0.47 inf; +dénigres dénigrer ver 1.51 1.08 0.37 0 ind:pre:2s; +dénigreuses dénigreur nom f p 0 0.07 0 0.07 +dénigrez dénigrer ver 1.51 1.08 0.04 0 imp:pre:2p;ind:pre:2p; +dénigré dénigrer ver m s 1.51 1.08 0.04 0.2 par:pas; +dénigrées dénigrer ver f p 1.51 1.08 0 0.14 par:pas; +dénigrés dénigrer ver m p 1.51 1.08 0.01 0 par:pas; +dénions dénier ver 0.64 1.22 0.14 0.07 ind:pre:1p; +dénis déni nom m p 0.84 0.41 0.07 0.14 +dénivellation dénivellation nom f s 0.02 1.22 0.02 0.74 +dénivellations dénivellation nom f p 0.02 1.22 0 0.47 +dénivelé dénivelé nom m s 0.03 0 0.01 0 +dénivelés dénivelé nom m p 0.03 0 0.02 0 +dénié dénier ver m s 0.64 1.22 0.04 0 par:pas; +dénombra dénombrer ver 0.53 3.31 0 0.54 ind:pas:3s; +dénombrables dénombrable adj p 0 0.07 0 0.07 +dénombrait dénombrer ver 0.53 3.31 0.02 0.27 ind:imp:3s; +dénombrant dénombrer ver 0.53 3.31 0 0.2 par:pre; +dénombre dénombrer ver 0.53 3.31 0.18 0.47 ind:pre:1s;ind:pre:3s; +dénombrement dénombrement nom m s 0 0.47 0 0.41 +dénombrements dénombrement nom m p 0 0.47 0 0.07 +dénombrent dénombrer ver 0.53 3.31 0 0.07 ind:pre:3p; +dénombrer dénombrer ver 0.53 3.31 0.05 0.95 inf; +dénombrez dénombrer ver 0.53 3.31 0.01 0 ind:pre:2p; +dénombré dénombrer ver m s 0.53 3.31 0.26 0.61 par:pas; +dénombrés dénombrer ver m p 0.53 3.31 0 0.2 par:pas; +dénominateur dénominateur nom m s 0.15 0.47 0.15 0.47 +dénominatif dénominatif adj m s 0.01 0 0.01 0 +dénomination dénomination nom f s 0.09 1.15 0.07 0.61 +dénominations dénomination nom f p 0.09 1.15 0.02 0.54 +dénominer dénominer ver 0 0.07 0 0.07 inf; +dénommaient dénommer ver 0.25 0.95 0 0.14 ind:imp:3p; +dénommait dénommer ver 0.25 0.95 0.01 0.2 ind:imp:3s; +dénomment dénommer ver 0.25 0.95 0 0.07 ind:pre:3p; +dénommer dénommer ver 0.25 0.95 0 0.07 inf; +dénommez dénommer ver 0.25 0.95 0.01 0 ind:pre:2p; +dénommé dénommé nom m s 2.67 1.49 2.67 1.49 +dénommée dénommé adj f s 0.85 1.22 0.37 0.41 +dénommés dénommer ver m p 0.25 0.95 0 0.07 par:pas; +dénonce dénoncer ver 29.57 19.05 5.5 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénoncent dénoncer ver 29.57 19.05 0.7 0.2 ind:pre:3p; +dénoncer dénoncer ver 29.57 19.05 9.83 6.08 inf; +dénoncera dénoncer ver 29.57 19.05 0.92 0.27 ind:fut:3s; +dénoncerai dénoncer ver 29.57 19.05 1.21 0.14 ind:fut:1s; +dénonceraient dénoncer ver 29.57 19.05 0.14 0.2 cnd:pre:3p; +dénoncerais dénoncer ver 29.57 19.05 0.22 0 cnd:pre:1s; +dénoncerait dénoncer ver 29.57 19.05 0.34 0.2 cnd:pre:3s; +dénonceras dénoncer ver 29.57 19.05 0.04 0 ind:fut:2s; +dénoncerez dénoncer ver 29.57 19.05 0.28 0 ind:fut:2p; +dénonceriez dénoncer ver 29.57 19.05 0.03 0 cnd:pre:2p; +dénonceront dénoncer ver 29.57 19.05 0.12 0.2 ind:fut:3p; +dénonces dénoncer ver 29.57 19.05 0.88 0.14 ind:pre:2s; +dénoncez dénoncer ver 29.57 19.05 1.05 0.07 imp:pre:2p;ind:pre:2p; +dénonciateur dénonciateur nom m s 0.08 0.74 0.08 0.68 +dénonciation dénonciation nom f s 0.88 2.5 0.69 1.49 +dénonciations dénonciation nom f p 0.88 2.5 0.19 1.01 +dénonciatrice dénonciateur adj f s 0.02 0 0.02 0 +dénoncé dénoncer ver m s 29.57 19.05 5.78 3.24 par:pas; +dénoncée dénoncer ver f s 29.57 19.05 0.89 0.68 par:pas; +dénoncées dénoncer ver f p 29.57 19.05 0.07 0.27 par:pas; +dénoncés dénoncer ver m p 29.57 19.05 0.9 0.88 par:pas; +dénonça dénoncer ver 29.57 19.05 0.03 0.34 ind:pas:3s; +dénonçaient dénoncer ver 29.57 19.05 0.14 0.74 ind:imp:3p; +dénonçais dénoncer ver 29.57 19.05 0.03 0.07 ind:imp:1s; +dénonçait dénoncer ver 29.57 19.05 0.23 1.69 ind:imp:3s; +dénonçant dénoncer ver 29.57 19.05 0.25 1.08 par:pre; +dénonçons dénoncer ver 29.57 19.05 0.02 0 imp:pre:1p;ind:pre:1p; +dénonçât dénoncer ver 29.57 19.05 0 0.14 sub:imp:3s; +dénotaient dénoter ver 0.23 1.42 0.01 0.07 ind:imp:3p; +dénotait dénoter ver 0.23 1.42 0 0.54 ind:imp:3s; +dénotant dénoter ver 0.23 1.42 0.01 0.07 par:pre; +dénote dénoter ver 0.23 1.42 0.18 0.27 ind:pre:1s;ind:pre:3s; +dénotent dénoter ver 0.23 1.42 0.01 0.27 ind:pre:3p; +dénoter dénoter ver 0.23 1.42 0 0.07 inf; +dénoterait dénoter ver 0.23 1.42 0 0.07 cnd:pre:3s; +dénoté dénoter ver m s 0.23 1.42 0.02 0.07 par:pas; +dénoua dénouer ver 1.42 12.3 0.01 1.82 ind:pas:3s; +dénouaient dénouer ver 1.42 12.3 0 0.14 ind:imp:3p; +dénouait dénouer ver 1.42 12.3 0 0.74 ind:imp:3s; +dénouant dénouer ver 1.42 12.3 0 0.88 par:pre; +dénoue dénouer ver 1.42 12.3 0.46 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénouement dénouement nom m s 1.34 4.05 1.31 3.78 +dénouements dénouement nom m p 1.34 4.05 0.03 0.27 +dénouent dénouer ver 1.42 12.3 0.01 0.41 ind:pre:3p; +dénouer dénouer ver 1.42 12.3 0.62 1.96 inf; +dénouera dénouer ver 1.42 12.3 0.03 0 ind:fut:3s; +dénouerais dénouer ver 1.42 12.3 0.01 0.07 cnd:pre:1s; +dénouions dénouer ver 1.42 12.3 0 0.07 ind:imp:1p; +dénouât dénouer ver 1.42 12.3 0 0.07 sub:imp:3s; +dénouèrent dénouer ver 1.42 12.3 0 0.2 ind:pas:3p; +dénoué dénouer ver m s 1.42 12.3 0.11 1.01 par:pas; +dénouée dénouer ver f s 1.42 12.3 0.14 0.81 par:pas; +dénouées dénouer ver f p 1.42 12.3 0 0.34 par:pas; +dénoués dénouer ver m p 1.42 12.3 0.03 2.23 par:pas; +dénoyautait dénoyauter ver 0 0.2 0 0.07 ind:imp:3s; +dénoyauter dénoyauter ver 0 0.2 0 0.14 inf; +dénoyauteur dénoyauteur nom m s 0.03 0 0.03 0 +dénuda dénuder ver 0.54 5.61 0 0.07 ind:pas:3s; +dénudaient dénuder ver 0.54 5.61 0 0.14 ind:imp:3p; +dénudait dénuder ver 0.54 5.61 0 0.81 ind:imp:3s; +dénudant dénuder ver 0.54 5.61 0 0.2 par:pre; +dénudation dénudation nom f s 0.18 0 0.18 0 +dénude dénuder ver 0.54 5.61 0.05 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénudent dénuder ver 0.54 5.61 0.01 0.27 ind:pre:3p; +dénuder dénuder ver 0.54 5.61 0.08 1.01 inf; +dénudera dénuder ver 0.54 5.61 0 0.07 ind:fut:3s; +dénuderait dénuder ver 0.54 5.61 0 0.07 cnd:pre:3s; +dénudèrent dénuder ver 0.54 5.61 0 0.2 ind:pas:3p; +dénudé dénudé adj m s 0.61 4.26 0.36 1.69 +dénudée dénudé adj f s 0.61 4.26 0.13 1.01 +dénudées dénudé adj f p 0.61 4.26 0.05 0.68 +dénudés dénudé adj m p 0.61 4.26 0.07 0.88 +dénuement dénuement nom m s 0.08 3.92 0.08 3.92 +dénué dénuer ver m s 2.06 4.8 1.16 1.69 par:pas; +dénuée dénuer ver f s 2.06 4.8 0.44 1.42 par:pas; +dénuées dénuer ver f p 2.06 4.8 0.17 0.81 par:pas; +dénués dénuer ver m p 2.06 4.8 0.29 0.88 par:pas; +dénégateurs dénégateur adj m p 0 0.07 0 0.07 +dénégation dénégation nom f s 0.56 2.5 0.48 1.76 +dénégations dénégation nom f p 0.56 2.5 0.08 0.74 +déodorant déodorant nom m s 1 0.54 0.85 0.41 +déodorants déodorant nom m p 1 0.54 0.15 0.14 +déontologie déontologie nom f s 0.37 0.41 0.37 0.41 +déontologique déontologique adj m s 0.07 0 0.03 0 +déontologiques déontologique adj p 0.07 0 0.03 0 +dépaillée dépailler ver f s 0 0.2 0 0.14 par:pas; +dépaillées dépailler ver f p 0 0.2 0 0.07 par:pas; +dépannage dépannage nom m s 1.31 1.08 1.17 1.01 +dépannages dépannage nom m p 1.31 1.08 0.14 0.07 +dépannaient dépanner ver 3.56 2.77 0.01 0 ind:imp:3p; +dépannait dépanner ver 3.56 2.77 0.01 0.07 ind:imp:3s; +dépanne dépanner ver 3.56 2.77 0.49 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépannent dépanner ver 3.56 2.77 0.01 0 ind:pre:3p; +dépanner dépanner ver 3.56 2.77 1.95 1.96 inf;; +dépannera dépanner ver 3.56 2.77 0.16 0.14 ind:fut:3s; +dépannerais dépanner ver 3.56 2.77 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +dépannerait dépanner ver 3.56 2.77 0.33 0.07 cnd:pre:3s; +dépanneriez dépanner ver 3.56 2.77 0.01 0 cnd:pre:2p; +dépanneront dépanner ver 3.56 2.77 0.01 0 ind:fut:3p; +dépanneur dépanneur nom m s 1.86 0.68 0.57 0.41 +dépanneurs dépanneur nom m p 1.86 0.68 0.13 0 +dépanneuse dépanneur nom f s 1.86 0.68 1.13 0.2 +dépanneuses dépanneur nom f p 1.86 0.68 0.02 0.07 +dépannons dépanner ver 3.56 2.77 0.01 0 ind:pre:1p; +dépanné dépanner ver m s 3.56 2.77 0.47 0 par:pas; +dépannée dépanner ver f s 3.56 2.77 0.04 0.14 par:pas; +dépannés dépanner ver m p 3.56 2.77 0.03 0.14 par:pas; +dépaquetait dépaqueter ver 0 0.07 0 0.07 ind:imp:3s; +déparaient déparer ver 0.13 1.42 0 0.14 ind:imp:3p; +déparait déparer ver 0.13 1.42 0 0.27 ind:imp:3s; +dépare déparer ver 0.13 1.42 0.11 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépareillaient dépareiller ver 0.1 0.68 0 0.07 ind:imp:3p; +dépareillait dépareiller ver 0.1 0.68 0.01 0 ind:imp:3s; +dépareiller dépareiller ver 0.1 0.68 0.03 0 inf; +dépareilleraient dépareiller ver 0.1 0.68 0 0.07 cnd:pre:3p; +dépareillé dépareillé adj m s 0.11 2.03 0.01 0.14 +dépareillée dépareillé adj f s 0.11 2.03 0.02 0.07 +dépareillées dépareillé adj f p 0.11 2.03 0.04 0.95 +dépareillés dépareillé adj m p 0.11 2.03 0.03 0.88 +déparer déparer ver 0.13 1.42 0.01 0.27 inf; +déparerait déparer ver 0.13 1.42 0.01 0 cnd:pre:3s; +déparié déparier ver m s 0 2.09 0 0.95 par:pas; +dépariée déparier ver f s 0 2.09 0 0.88 par:pas; +dépariées déparier ver f p 0 2.09 0 0.07 par:pas; +dépariés déparier ver m p 0 2.09 0 0.2 par:pas; +déparlait déparler ver 0 0.14 0 0.07 ind:imp:3s; +déparler déparler ver 0 0.14 0 0.07 inf; +départ départ nom m s 68.49 123.04 67.35 116.96 +départage départager ver 0.92 0.81 0.04 0 ind:pre:3s; +départageant départager ver 0.92 0.81 0.01 0 par:pre; +départager départager ver 0.92 0.81 0.85 0.61 inf; +départagera départager ver 0.92 0.81 0.01 0.07 ind:fut:3s; +départagions départager ver 0.92 0.81 0 0.07 ind:imp:1p; +départagé départager ver m s 0.92 0.81 0 0.07 par:pas; +départait départir ver 0.67 4.19 0 0.47 ind:imp:3s; +département département nom m s 15.53 12.36 14.7 8.04 +départemental départemental adj m s 0.13 2.03 0.02 0.74 +départementale départementale nom f s 0.26 1.42 0.26 1.15 +départementales départemental adj f p 0.13 2.03 0 0.34 +départementaux départemental adj m p 0.13 2.03 0.01 0.47 +départements département nom m p 15.53 12.36 0.83 4.32 +départent départir ver 0.67 4.19 0 0.07 ind:pre:3p; +départi départir ver m s 0.67 4.19 0 0.41 par:pas; +départie départir ver f s 0.67 4.19 0 0.07 par:pas; +départir départir ver 0.67 4.19 0.04 1.82 inf; +départira départir ver 0.67 4.19 0 0.07 ind:fut:3s; +départirent départir ver 0.67 4.19 0 0.14 ind:pas:3p; +départis départir ver m p 0.67 4.19 0.01 0.07 ind:pas:1s;par:pas; +départit départir ver 0.67 4.19 0 0.27 ind:pas:3s; +départs départ nom m p 68.49 123.04 1.14 6.08 +déparât déparer ver 0.13 1.42 0 0.07 sub:imp:3s; +déparé déparer ver m s 0.13 1.42 0 0.2 par:pas; +dépassa dépasser ver 42.62 78.78 0.05 3.99 ind:pas:3s; +dépassai dépasser ver 42.62 78.78 0 0.2 ind:pas:1s; +dépassaient dépasser ver 42.62 78.78 0.17 5.95 ind:imp:3p; +dépassais dépasser ver 42.62 78.78 0.06 0.41 ind:imp:1s;ind:imp:2s; +dépassait dépasser ver 42.62 78.78 1.08 12.84 ind:imp:3s; +dépassant dépasser ver 42.62 78.78 0.47 4.86 par:pre; +dépasse dépasser ver 42.62 78.78 14.14 12.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépassement dépassement nom m s 0.55 0.61 0.49 0.41 +dépassements dépassement nom m p 0.55 0.61 0.06 0.2 +dépassent dépasser ver 42.62 78.78 3.12 5.74 ind:pre:3p; +dépasser dépasser ver 42.62 78.78 6.12 10.27 inf; +dépassera dépasser ver 42.62 78.78 0.19 0.61 ind:fut:3s; +dépasserai dépasser ver 42.62 78.78 0.01 0.07 ind:fut:1s; +dépasseraient dépasser ver 42.62 78.78 0 0.07 cnd:pre:3p; +dépasserais dépasser ver 42.62 78.78 0.06 0 cnd:pre:1s;cnd:pre:2s; +dépasserait dépasser ver 42.62 78.78 0.41 0.54 cnd:pre:3s; +dépasseras dépasser ver 42.62 78.78 0.05 0 ind:fut:2s; +dépasserions dépasser ver 42.62 78.78 0 0.07 cnd:pre:1p; +dépasseront dépasser ver 42.62 78.78 0.2 0.14 ind:fut:3p; +dépasses dépasser ver 42.62 78.78 1.63 0.27 ind:pre:2s; +dépassez dépasser ver 42.62 78.78 1.39 0.27 imp:pre:2p;ind:pre:2p; +dépassiez dépasser ver 42.62 78.78 0.05 0 ind:imp:2p; +dépassionnons dépassionner ver 0 0.07 0 0.07 imp:pre:1p; +dépassions dépasser ver 42.62 78.78 0.11 0.54 ind:imp:1p; +dépassons dépasser ver 42.62 78.78 0.19 0.54 imp:pre:1p;ind:pre:1p; +dépassâmes dépasser ver 42.62 78.78 0 0.27 ind:pas:1p; +dépassât dépasser ver 42.62 78.78 0 0.41 sub:imp:3s; +dépassèrent dépasser ver 42.62 78.78 0.01 1.42 ind:pas:3p; +dépassé dépasser ver m s 42.62 78.78 10.9 12.09 par:pas; +dépassée dépasser ver f s 42.62 78.78 0.82 2.64 par:pas; +dépassées dépasser ver f p 42.62 78.78 0.39 0.47 par:pas; +dépassés dépasser ver m p 42.62 78.78 1.01 1.69 par:pas; +dépatouillait dépatouiller ver 0.05 0.41 0 0.07 ind:imp:3s; +dépatouille dépatouiller ver 0.05 0.41 0 0.14 ind:pre:1s; +dépatouiller dépatouiller ver 0.05 0.41 0.05 0.2 inf; +dépaver dépaver ver 0 0.07 0 0.07 inf; +dépaysaient dépayser ver 0.24 3.38 0 0.34 ind:imp:3p; +dépaysait dépayser ver 0.24 3.38 0 0.41 ind:imp:3s; +dépaysant dépaysant adj m s 0.16 0.34 0.15 0.07 +dépaysante dépaysant adj f s 0.16 0.34 0 0.2 +dépaysantes dépaysant adj f p 0.16 0.34 0.01 0.07 +dépayse dépayser ver 0.24 3.38 0.01 0.41 ind:pre:1s;ind:pre:3s; +dépaysement dépaysement nom m s 0.03 3.11 0.03 2.97 +dépaysements dépaysement nom m p 0.03 3.11 0 0.14 +dépayser dépayser ver 0.24 3.38 0.04 0.27 inf; +dépaysera dépayser ver 0.24 3.38 0.01 0 ind:fut:3s; +dépaysé dépayser ver m s 0.24 3.38 0.14 0.47 par:pas; +dépaysée dépayser ver f s 0.24 3.38 0.03 0.68 par:pas; +dépaysés dépayser ver m p 0.24 3.38 0.01 0.68 par:pas; +dépecer dépecer ver 1.18 2.57 0.47 0.68 inf; +dépeceur dépeceur nom m s 0.03 0.47 0.03 0.34 +dépeceurs dépeceur nom m p 0.03 0.47 0 0.14 +dépecez dépecer ver 1.18 2.57 0.02 0 imp:pre:2p;ind:pre:2p; +dépecèrent dépecer ver 1.18 2.57 0 0.14 ind:pas:3p; +dépecé dépecer ver m s 1.18 2.57 0.1 0.54 par:pas; +dépecée dépecer ver f s 1.18 2.57 0.02 0 par:pas; +dépecés dépecer ver m p 1.18 2.57 0.1 0.41 par:pas; +dépeignaient dépeindre ver 2.24 4.19 0 0.07 ind:imp:3p; +dépeignais dépeindre ver 2.24 4.19 0 0.07 ind:imp:1s; +dépeignait dépeindre ver 2.24 4.19 0.01 0.68 ind:imp:3s; +dépeignant dépeindre ver 2.24 4.19 0.2 0 par:pre; +dépeigne dépeigner ver 0.16 1.15 0 0.14 imp:pre:2s;ind:pre:3s; +dépeignent dépeindre ver 2.24 4.19 0.21 0.41 ind:pre:3p;ind:pre:3p;sub:pre:3p; +dépeignirent dépeindre ver 2.24 4.19 0 0.07 ind:pas:3p; +dépeignis dépeindre ver 2.24 4.19 0 0.07 ind:pas:1s; +dépeignit dépeindre ver 2.24 4.19 0 0.07 ind:pas:3s; +dépeigné dépeigner ver m s 0.16 1.15 0.14 0.47 par:pas; +dépeignée dépeigner ver f s 0.16 1.15 0 0.34 par:pas; +dépeignés dépeigner ver m p 0.16 1.15 0 0.2 par:pas; +dépeindre dépeindre ver 2.24 4.19 0.66 1.01 inf; +dépeins dépeindre ver 2.24 4.19 0.11 0.2 ind:pre:1s;ind:pre:2s; +dépeint dépeindre ver m s 2.24 4.19 0.79 1.15 ind:pre:3s;par:pas; +dépeinte dépeindre ver f s 2.24 4.19 0.04 0.27 par:pas; +dépeintes dépeint adj f p 0.26 0.41 0.11 0.07 +dépeints dépeindre ver m p 2.24 4.19 0.23 0.14 par:pas; +dépenaillement dépenaillement nom m s 0 0.14 0 0.07 +dépenaillements dépenaillement nom m p 0 0.14 0 0.07 +dépenaillé dépenaillé adj m s 0.06 1.22 0.05 0.41 +dépenaillée dépenaillé nom f s 0.04 0.61 0.01 0.14 +dépenaillées dépenaillé adj f p 0.06 1.22 0.01 0.07 +dépenaillés dépenaillé adj m p 0.06 1.22 0 0.54 +dépend dépendre ver 60.33 36.49 48.3 15.2 ind:pre:3s; +dépendaient dépendre ver 60.33 36.49 0.13 1.76 ind:imp:3p; +dépendais dépendre ver 60.33 36.49 0.04 0.34 ind:imp:1s;ind:imp:2s; +dépendait dépendre ver 60.33 36.49 1.87 7.64 ind:imp:3s; +dépendance dépendance nom f s 2.42 5.34 2.03 3.51 +dépendances dépendance nom f p 2.42 5.34 0.39 1.82 +dépendant dépendant adj m s 1.81 0.95 0.56 0.34 +dépendante dépendant adj f s 1.81 0.95 0.68 0.27 +dépendantes dépendant adj f p 1.81 0.95 0.13 0 +dépendants dépendant adj m p 1.81 0.95 0.44 0.34 +dépende dépendre ver 60.33 36.49 0.17 0.27 sub:pre:1s;sub:pre:3s; +dépendent dépendre ver 60.33 36.49 2.64 2.09 ind:pre:3p; +dépendeur dépendeur nom m s 0 0.34 0 0.27 +dépendeurs dépendeur nom m p 0 0.34 0 0.07 +dépendez dépendre ver 60.33 36.49 0.25 0 ind:pre:2p; +dépendions dépendre ver 60.33 36.49 0.01 0.07 ind:imp:1p; +dépendit dépendre ver 60.33 36.49 0 0.07 ind:pas:3s; +dépendons dépendre ver 60.33 36.49 0.43 0.2 imp:pre:1p;ind:pre:1p; +dépendra dépendre ver 60.33 36.49 2.05 1.22 ind:fut:3s; +dépendraient dépendre ver 60.33 36.49 0.01 0.34 cnd:pre:3p; +dépendrait dépendre ver 60.33 36.49 0.12 1.42 cnd:pre:3s; +dépendre dépendre ver 60.33 36.49 2.46 2.84 inf; +dépendrez dépendre ver 60.33 36.49 0.01 0.14 ind:fut:2p; +dépendront dépendre ver 60.33 36.49 0.07 0.61 ind:fut:3p; +dépends dépendre ver 60.33 36.49 1.18 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dépendu dépendre ver m s 60.33 36.49 0.12 0.68 par:pas; +dépendît dépendre ver 60.33 36.49 0 0.34 sub:imp:3s; +dépens dépens nom m p 3.19 3.99 3.19 3.99 +dépensa dépenser ver 31.1 15.41 0.04 0.74 ind:pas:3s; +dépensai dépenser ver 31.1 15.41 0 0.14 ind:pas:1s; +dépensaient dépenser ver 31.1 15.41 0.03 0.41 ind:imp:3p; +dépensais dépenser ver 31.1 15.41 0.31 0.2 ind:imp:1s;ind:imp:2s; +dépensait dépenser ver 31.1 15.41 0.6 2.09 ind:imp:3s; +dépensant dépenser ver 31.1 15.41 0.23 0.54 par:pre; +dépense dépenser ver 31.1 15.41 4.25 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépensent dépenser ver 31.1 15.41 1.3 0.27 ind:pre:3p; +dépenser dépenser ver 31.1 15.41 8.77 5.14 inf; +dépensera dépenser ver 31.1 15.41 0.21 0 ind:fut:3s; +dépenserai dépenser ver 31.1 15.41 0.17 0.07 ind:fut:1s; +dépenseraient dépenser ver 31.1 15.41 0.01 0 cnd:pre:3p; +dépenserais dépenser ver 31.1 15.41 0.6 0.07 cnd:pre:1s;cnd:pre:2s; +dépenserait dépenser ver 31.1 15.41 0.04 0.2 cnd:pre:3s; +dépenseras dépenser ver 31.1 15.41 0.12 0 ind:fut:2s; +dépenserez dépenser ver 31.1 15.41 0.15 0.07 ind:fut:2p; +dépenserions dépenser ver 31.1 15.41 0.02 0.07 cnd:pre:1p; +dépenseront dépenser ver 31.1 15.41 0.06 0 ind:fut:3p; +dépenses dépense nom f p 7.11 8.72 5.29 5.07 +dépensez dépenser ver 31.1 15.41 1.29 0.07 imp:pre:2p;ind:pre:2p; +dépensier dépensier adj m s 0.17 0.68 0.1 0.27 +dépensiers dépensier adj m p 0.17 0.68 0.02 0.07 +dépensiez dépenser ver 31.1 15.41 0.04 0 ind:imp:2p; +dépensière dépensier adj f s 0.17 0.68 0.05 0.34 +dépensons dépenser ver 31.1 15.41 0.12 0.07 imp:pre:1p;ind:pre:1p; +dépensé dépenser ver m s 31.1 15.41 10.64 2.36 par:pas; +dépensée dépenser ver f s 31.1 15.41 0.11 0.47 par:pas; +dépensées dépenser ver f p 31.1 15.41 0.06 0.41 par:pas; +dépensés dépenser ver m p 31.1 15.41 0.56 0.27 par:pas; +déperdition déperdition nom f s 0.05 0.34 0.04 0.34 +déperditions déperdition nom f p 0.05 0.34 0.01 0 +dépersonnalisation dépersonnalisation nom f s 0.02 0 0.02 0 +dépersonnaliser dépersonnaliser ver 0.03 0.14 0.01 0.14 inf; +dépersonnalisé dépersonnaliser ver m s 0.03 0.14 0.02 0 par:pas; +dépersonnalisée dépersonnalisé adj f s 0 0.07 0 0.07 +dépeuplait dépeupler ver 0.41 1.28 0 0.07 ind:imp:3s; +dépeuple dépeupler ver 0.41 1.28 0.14 0.2 ind:pre:3s; +dépeuplent dépeupler ver 0.41 1.28 0 0.07 ind:pre:3p; +dépeupler dépeupler ver 0.41 1.28 0.02 0.27 inf; +dépeuplera dépeupler ver 0.41 1.28 0 0.07 ind:fut:3s; +dépeuplé dépeupler ver m s 0.41 1.28 0.14 0.34 par:pas; +dépeuplée dépeupler ver f s 0.41 1.28 0.1 0.14 par:pas; +dépeuplées dépeuplé adj f p 0 0.61 0 0.07 +dépeuplés dépeupler ver m p 0.41 1.28 0.01 0.14 par:pas; +dépeçage dépeçage nom m s 0.01 0.34 0.01 0.34 +dépeçaient dépecer ver 1.18 2.57 0 0.14 ind:imp:3p; +dépeçait dépecer ver 1.18 2.57 0.03 0 ind:imp:3s; +dépeçant dépecer ver 1.18 2.57 0 0.14 par:pre; +déphasage déphasage nom m s 0.16 0 0.16 0 +déphase déphaser ver 0.2 0.2 0.01 0 ind:pre:3s; +déphaseurs déphaseur nom m p 0.01 0 0.01 0 +déphasé déphasé adj m s 0.28 0.2 0.25 0 +déphasée déphaser ver f s 0.2 0.2 0.05 0 par:pas; +déphasés déphasé adj m p 0.28 0.2 0.02 0.07 +dépiautaient dépiauter ver 0.1 2.03 0 0.07 ind:imp:3p; +dépiautait dépiauter ver 0.1 2.03 0 0.27 ind:imp:3s; +dépiautant dépiauter ver 0.1 2.03 0 0.07 par:pre; +dépiaute dépiauter ver 0.1 2.03 0.01 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépiautent dépiauter ver 0.1 2.03 0.01 0 ind:pre:3p; +dépiauter dépiauter ver 0.1 2.03 0.06 0.74 inf; +dépiautera dépiauter ver 0.1 2.03 0.01 0 ind:fut:3s; +dépiautèrent dépiauter ver 0.1 2.03 0 0.07 ind:pas:3p; +dépiauté dépiauter ver m s 0.1 2.03 0 0.34 par:pas; +dépiautés dépiauter ver m p 0.1 2.03 0.01 0.14 par:pas; +dépieute dépieuter ver 0.01 0.07 0.01 0.07 ind:pre:1s;ind:pre:3s; +dépigmentation dépigmentation nom f s 0.01 0.07 0.01 0.07 +dépigmenté dépigmenter ver m s 0.01 0.14 0 0.07 par:pas; +dépigmentés dépigmenter ver m p 0.01 0.14 0.01 0.07 par:pas; +dépilatoire dépilatoire adj s 0.04 0.07 0.04 0.07 +dépiler dépiler ver 0 0.07 0 0.07 inf; +dépiquage dépiquage nom m s 0 0.2 0 0.2 +dépique dépiquer ver 0 0.27 0 0.14 ind:pre:3s; +dépiquer dépiquer ver 0 0.27 0 0.07 inf; +dépiqués dépiquer ver m p 0 0.27 0 0.07 par:pas; +dépistage dépistage nom m s 0.76 0.47 0.75 0.34 +dépistages dépistage nom m p 0.76 0.47 0.01 0.14 +dépistait dépister ver 0.2 1.15 0 0.2 ind:imp:3s; +dépistant dépister ver 0.2 1.15 0 0.07 par:pre; +dépiste dépister ver 0.2 1.15 0.02 0.2 ind:pre:3s; +dépister dépister ver 0.2 1.15 0.14 0.54 inf; +dépisté dépister ver m s 0.2 1.15 0.04 0.14 par:pas; +dépit dépit nom m s 5.82 44.12 5.82 44.12 +dépita dépiter ver 0.12 1.15 0 0.2 ind:pas:3s; +dépitait dépiter ver 0.12 1.15 0 0.14 ind:imp:3s; +dépiter dépiter ver 0.12 1.15 0.1 0 inf; +dépité dépité adj m s 0.05 1.62 0.05 0.95 +dépitée dépiter ver f s 0.12 1.15 0.01 0.41 par:pas; +dépités dépité adj m p 0.05 1.62 0 0.2 +déplace déplacer ver 38.63 46.82 7.79 6.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déplacement déplacement nom m s 5.03 11.49 3.38 6.15 +déplacements déplacement nom m p 5.03 11.49 1.64 5.34 +déplacent déplacer ver 38.63 46.82 2.3 2.3 ind:pre:3p; +déplacer déplacer ver 38.63 46.82 13.4 11.08 inf;; +déplacera déplacer ver 38.63 46.82 0.22 0.2 ind:fut:3s; +déplacerai déplacer ver 38.63 46.82 0.39 0 ind:fut:1s; +déplaceraient déplacer ver 38.63 46.82 0 0.27 cnd:pre:3p; +déplacerait déplacer ver 38.63 46.82 0.03 0.2 cnd:pre:3s; +déplaceras déplacer ver 38.63 46.82 0.02 0 ind:fut:2s; +déplacerez déplacer ver 38.63 46.82 0.03 0 ind:fut:2p; +déplacerons déplacer ver 38.63 46.82 0.13 0.07 ind:fut:1p; +déplaceront déplacer ver 38.63 46.82 0.03 0 ind:fut:3p; +déplaces déplacer ver 38.63 46.82 0.68 0.07 ind:pre:2s; +déplacez déplacer ver 38.63 46.82 1.69 0.07 imp:pre:2p;ind:pre:2p; +déplaciez déplacer ver 38.63 46.82 0.07 0.07 ind:imp:2p; +déplacions déplacer ver 38.63 46.82 0 0.2 ind:imp:1p; +déplacèrent déplacer ver 38.63 46.82 0.01 0.61 ind:pas:3p; +déplacé déplacer ver m s 38.63 46.82 5.99 3.99 par:pas; +déplacée déplacer ver f s 38.63 46.82 1.46 1.76 par:pas; +déplacées déplacé adj f p 2.87 3.92 0.4 0.54 +déplacés déplacer ver m p 38.63 46.82 1.4 0.88 par:pas; +déplaira déplaire ver 12.23 20.61 0.27 0.07 ind:fut:3s; +déplairaient déplaire ver 12.23 20.61 0.03 0 cnd:pre:3p; +déplairait déplaire ver 12.23 20.61 0.79 0.68 cnd:pre:3s; +déplaire déplaire ver 12.23 20.61 1.52 4.26 inf; +déplairont déplaire ver 12.23 20.61 0.14 0 ind:fut:3p; +déplais déplaire ver 12.23 20.61 0.74 0.14 ind:pre:1s;ind:pre:2s; +déplaisaient déplaire ver 12.23 20.61 0.1 0.68 ind:imp:3p; +déplaisais déplaire ver 12.23 20.61 0.02 0.2 ind:imp:1s; +déplaisait déplaire ver 12.23 20.61 0.34 4.86 ind:imp:3s; +déplaisant déplaisant adj m s 3.34 5.47 1.81 2.5 +déplaisante déplaisant adj f s 3.34 5.47 1 2.09 +déplaisantes déplaisant adj f p 3.34 5.47 0.37 0.54 +déplaisants déplaisant adj m p 3.34 5.47 0.16 0.34 +déplaise déplaire ver 12.23 20.61 0.88 0.68 sub:pre:1s;sub:pre:3s; +déplaisent déplaire ver 12.23 20.61 0.86 0.41 ind:pre:3p; +déplaisez déplaire ver 12.23 20.61 0.05 0 ind:pre:2p; +déplaisiez déplaire ver 12.23 20.61 0.1 0.07 ind:imp:2p; +déplaisir déplaisir nom m s 1.29 1.96 1.03 1.82 +déplaisirs déplaisir nom m p 1.29 1.96 0.27 0.14 +déplanque déplanquer ver 0 0.14 0 0.14 ind:pre:3s; +déplantoir déplantoir nom m s 0.04 0 0.04 0 +déplantèrent déplanter ver 0 0.07 0 0.07 ind:pas:3p; +déplaça déplacer ver 38.63 46.82 0.14 3.04 ind:pas:3s; +déplaçai déplacer ver 38.63 46.82 0 0.41 ind:pas:1s; +déplaçaient déplacer ver 38.63 46.82 0.11 2.64 ind:imp:3p; +déplaçais déplacer ver 38.63 46.82 0.3 0.27 ind:imp:1s;ind:imp:2s; +déplaçait déplacer ver 38.63 46.82 1.01 7.23 ind:imp:3s; +déplaçant déplacer ver 38.63 46.82 0.77 4.59 par:pre; +déplaçons déplacer ver 38.63 46.82 0.44 0.2 imp:pre:1p;ind:pre:1p; +déplaçât déplacer ver 38.63 46.82 0 0.14 sub:imp:3s; +déplaît déplaire ver 12.23 20.61 5.08 4.32 ind:pre:3s; +déplia déplier ver 0.89 19.46 0 4.12 ind:pas:3s; +dépliable dépliable adj m s 0 0.07 0 0.07 +dépliai déplier ver 0.89 19.46 0 0.68 ind:pas:1s; +dépliaient déplier ver 0.89 19.46 0 0.54 ind:imp:3p; +dépliais déplier ver 0.89 19.46 0 0.14 ind:imp:1s; +dépliait déplier ver 0.89 19.46 0.2 2.09 ind:imp:3s; +dépliant dépliant nom m s 0.47 1.69 0.36 1.15 +dépliante dépliant adj f s 0.04 0.34 0.02 0.14 +dépliants dépliant nom m p 0.47 1.69 0.11 0.54 +déplie déplier ver 0.89 19.46 0.27 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépliement dépliement nom m s 0 0.14 0 0.14 +déplient déplier ver 0.89 19.46 0 0.61 ind:pre:3p; +déplier déplier ver 0.89 19.46 0.16 2.43 inf; +déplies déplier ver 0.89 19.46 0.01 0.07 ind:pre:2s; +déplions déplier ver 0.89 19.46 0 0.14 imp:pre:1p;ind:pre:1p; +déplissa déplisser ver 0.01 0.68 0 0.07 ind:pas:3s; +déplissaient déplisser ver 0.01 0.68 0 0.14 ind:imp:3p; +déplissait déplisser ver 0.01 0.68 0 0.27 ind:imp:3s; +déplisse déplisser ver 0.01 0.68 0 0.07 ind:pre:3s; +déplissent déplisser ver 0.01 0.68 0 0.07 ind:pre:3p; +déplisser déplisser ver 0.01 0.68 0.01 0.07 inf; +dépliâmes déplier ver 0.89 19.46 0 0.14 ind:pas:1p; +déplièrent déplier ver 0.89 19.46 0 0.27 ind:pas:3p; +déplié déplier ver m s 0.89 19.46 0.06 3.31 par:pas; +dépliée déplier ver f s 0.89 19.46 0 1.08 par:pas; +dépliées déplier ver f p 0.89 19.46 0.03 0.34 par:pas; +dépliés déplier ver m p 0.89 19.46 0.01 0.47 par:pas; +déploie déployer ver 7.09 30.27 0.94 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déploiement déploiement nom m s 1.25 3.04 1.2 2.43 +déploiements déploiement nom m p 1.25 3.04 0.05 0.61 +déploient déployer ver 7.09 30.27 0.34 1.42 ind:pre:3p; +déploiera déployer ver 7.09 30.27 0.04 0.14 ind:fut:3s; +déploierai déployer ver 7.09 30.27 0 0.14 ind:fut:1s; +déploieraient déployer ver 7.09 30.27 0 0.07 cnd:pre:3p; +déploierait déployer ver 7.09 30.27 0 0.07 cnd:pre:3s; +déploieras déployer ver 7.09 30.27 0 0.07 ind:fut:2s; +déploierez déployer ver 7.09 30.27 0.03 0 ind:fut:2p; +déploierons déployer ver 7.09 30.27 0.02 0.14 ind:fut:1p; +déploieront déployer ver 7.09 30.27 0.02 0.14 ind:fut:3p; +déploies déployer ver 7.09 30.27 0.05 0 ind:pre:2s; +déplombé déplomber ver m s 0 0.07 0 0.07 par:pas; +déplora déplorer ver 2.53 8.04 0.01 0.41 ind:pas:3s; +déplorable déplorable adj s 1.52 5.14 1.29 3.99 +déplorablement déplorablement adv 0.01 0.41 0.01 0.41 +déplorables déplorable adj p 1.52 5.14 0.23 1.15 +déplorai déplorer ver 2.53 8.04 0 0.2 ind:pas:1s; +déploraient déplorer ver 2.53 8.04 0 0.2 ind:imp:3p; +déplorais déplorer ver 2.53 8.04 0.01 0.34 ind:imp:1s; +déplorait déplorer ver 2.53 8.04 0.01 1.35 ind:imp:3s; +déplorant déplorer ver 2.53 8.04 0.01 0.74 par:pre; +déploration déploration nom f s 0 0.2 0 0.2 +déplore déplorer ver 2.53 8.04 1.61 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déplorent déplorer ver 2.53 8.04 0.27 0.27 ind:pre:3p; +déplorer déplorer ver 2.53 8.04 0.17 1.49 inf; +déplorerais déplorer ver 2.53 8.04 0.02 0.27 cnd:pre:1s; +déplorerait déplorer ver 2.53 8.04 0.01 0.07 cnd:pre:3s; +déplorerons déplorer ver 2.53 8.04 0 0.07 ind:fut:1p; +déplorez déplorer ver 2.53 8.04 0.01 0.14 imp:pre:2p;ind:pre:2p; +déplorions déplorer ver 2.53 8.04 0 0.07 ind:imp:1p; +déplorons déplorer ver 2.53 8.04 0.27 0.07 ind:pre:1p; +déplorèrent déplorer ver 2.53 8.04 0 0.07 ind:pas:3p; +déploré déplorer ver m s 2.53 8.04 0.13 0.47 par:pas; +déplorée déplorer ver f s 2.53 8.04 0 0.07 par:pas; +déplorés déplorer ver m p 2.53 8.04 0 0.07 par:pas; +déploya déployer ver 7.09 30.27 0.03 1.69 ind:pas:3s; +déployaient déployer ver 7.09 30.27 0.01 2.03 ind:imp:3p; +déployais déployer ver 7.09 30.27 0 0.07 ind:imp:1s; +déployait déployer ver 7.09 30.27 0.13 3.78 ind:imp:3s; +déployant déployer ver 7.09 30.27 0.2 1.69 par:pre; +déployasse déployer ver 7.09 30.27 0 0.07 sub:imp:1s; +déployer déployer ver 7.09 30.27 1.81 6.01 inf; +déployez déployer ver 7.09 30.27 1.67 0.07 imp:pre:2p;ind:pre:2p; +déployions déployer ver 7.09 30.27 0 0.14 ind:imp:1p; +déployons déployer ver 7.09 30.27 0.08 0.14 imp:pre:1p;ind:pre:1p; +déployât déployer ver 7.09 30.27 0 0.07 sub:imp:3s; +déployèrent déployer ver 7.09 30.27 0.01 0.27 ind:pas:3p; +déployé déployer ver m s 7.09 30.27 0.94 2.77 par:pas; +déployée déployer ver f s 7.09 30.27 0.24 2.03 par:pas; +déployées déployé adj f p 0.8 5.41 0.32 1.49 +déployés déployer ver m p 7.09 30.27 0.33 1.55 par:pas; +déplu déplaire ver m s 12.23 20.61 1.23 2.5 par:pas; +déplumait déplumer ver 0.17 0.47 0 0.07 ind:imp:3s; +déplume déplumer ver 0.17 0.47 0.11 0.07 ind:pre:1s;ind:pre:3s; +déplumer déplumer ver 0.17 0.47 0.02 0.07 inf; +déplumé déplumé adj m s 0.33 1.55 0.16 1.15 +déplumée déplumé adj f s 0.33 1.55 0.16 0 +déplumés déplumé adj m p 0.33 1.55 0.02 0.41 +déplurent déplaire ver 12.23 20.61 0 0.2 ind:pas:3p; +déplut déplaire ver 12.23 20.61 0.01 1.01 ind:pas:3s; +déplâtré déplâtrer ver m s 0.01 0.07 0.01 0.07 par:pas; +déplût déplaire ver 12.23 20.61 0 0.14 sub:imp:3s; +dépoile dépoiler ver 0.06 0.34 0.03 0 ind:pre:1s; +dépoiler dépoiler ver 0.06 0.34 0.03 0 inf; +dépoilé dépoiler ver m s 0.06 0.34 0 0.14 par:pas; +dépoilée dépoiler ver f s 0.06 0.34 0 0.07 par:pas; +dépoilées dépoiler ver f p 0.06 0.34 0 0.14 par:pas; +dépointées dépointer ver f p 0 0.07 0 0.07 par:pas; +dépoitraillé dépoitraillé adj m s 0.02 0.68 0.02 0.27 +dépoitraillée dépoitraillé adj f s 0.02 0.68 0 0.2 +dépoitraillées dépoitraillé adj f p 0.02 0.68 0 0.07 +dépoitraillés dépoitraillé adj m p 0.02 0.68 0 0.14 +dépoli dépoli adj m s 0.01 2.3 0.01 1.15 +dépolie dépoli adj f s 0.01 2.3 0 0.34 +dépolies dépoli adj f p 0.01 2.3 0 0.47 +dépolis dépoli adj m p 0.01 2.3 0 0.34 +dépolissait dépolir ver 0.01 0.95 0 0.07 ind:imp:3s; +dépolit dépolir ver 0.01 0.95 0.01 0.07 ind:pre:3s; +dépolitisant dépolitiser ver 0.1 0.07 0 0.07 par:pre; +dépolitisé dépolitiser ver m s 0.1 0.07 0.1 0 par:pas; +dépolluer dépolluer ver 0.04 0 0.04 0 inf; +dépollution dépollution nom f s 0.03 0 0.03 0 +dépopulation dépopulation nom f s 0 0.07 0 0.07 +déport déport nom m s 0 0.14 0 0.14 +déporta déporter ver 2.75 4.26 0 0.2 ind:pas:3s; +déportaient déporter ver 2.75 4.26 0.01 0.07 ind:imp:3p; +déportais déporter ver 2.75 4.26 0.01 0.07 ind:imp:1s; +déportait déporter ver 2.75 4.26 0 0.14 ind:imp:3s; +déportant déporter ver 2.75 4.26 0.01 0.07 par:pre; +déportation déportation nom f s 1.58 2.23 1.52 2.03 +déportations déportation nom f p 1.58 2.23 0.06 0.2 +déporte déporter ver 2.75 4.26 0.36 0.14 ind:pre:1s;ind:pre:3s; +déportements déportement nom m p 0.27 0.07 0.27 0.07 +déporter déporter ver 2.75 4.26 0.95 0.61 inf; +déporteront déporter ver 2.75 4.26 0.02 0 ind:fut:3p; +déportez déporter ver 2.75 4.26 0.01 0 imp:pre:2p; +déporté déporter ver m s 2.75 4.26 0.91 1.49 par:pas; +déportée déporter ver f s 2.75 4.26 0.08 0.61 par:pas; +déportées déporter ver f p 2.75 4.26 0.01 0.07 par:pas; +déportés déporté nom m p 2.38 5.74 2.14 4.66 +déposa déposer ver 53.09 62.7 0.19 10.2 ind:pas:3s; +déposai déposer ver 53.09 62.7 0.14 1.08 ind:pas:1s; +déposaient déposer ver 53.09 62.7 0.01 1.42 ind:imp:3p; +déposais déposer ver 53.09 62.7 0.53 0.61 ind:imp:1s;ind:imp:2s; +déposait déposer ver 53.09 62.7 0.32 4.05 ind:imp:3s; +déposant déposer ver 53.09 62.7 0.33 1.55 par:pre; +dépose déposer ver 53.09 62.7 16.14 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déposent déposer ver 53.09 62.7 0.48 0.81 ind:pre:3p; +déposer déposer ver 53.09 62.7 15.03 13.24 inf;; +déposera déposer ver 53.09 62.7 0.44 0.68 ind:fut:3s; +déposerai déposer ver 53.09 62.7 0.6 0.14 ind:fut:1s; +déposeraient déposer ver 53.09 62.7 0 0.14 cnd:pre:3p; +déposerais déposer ver 53.09 62.7 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +déposerait déposer ver 53.09 62.7 0.06 0.34 cnd:pre:3s; +déposeras déposer ver 53.09 62.7 0.18 0.2 ind:fut:2s; +déposerez déposer ver 53.09 62.7 0.28 0.07 ind:fut:2p; +déposerions déposer ver 53.09 62.7 0 0.07 cnd:pre:1p; +déposerons déposer ver 53.09 62.7 0.05 0.07 ind:fut:1p; +déposeront déposer ver 53.09 62.7 0.32 0.14 ind:fut:3p; +déposes déposer ver 53.09 62.7 1.09 0.2 ind:pre:2s; +déposez déposer ver 53.09 62.7 4.06 0.54 imp:pre:2p;ind:pre:2p; +déposiez déposer ver 53.09 62.7 0.02 0 ind:imp:2p; +déposions déposer ver 53.09 62.7 0.04 0.14 ind:imp:1p; +dépositaire dépositaire nom s 0.36 2.36 0.23 1.96 +dépositaires dépositaire nom p 0.36 2.36 0.14 0.41 +déposition déposition nom f s 11.25 2.43 9.66 1.82 +dépositions déposition nom f p 11.25 2.43 1.59 0.61 +déposons déposer ver 53.09 62.7 0.1 0.2 imp:pre:1p;ind:pre:1p; +dépossession dépossession nom f s 0 1.22 0 1.22 +dépossède déposséder ver 0.83 2.97 0.02 0 ind:pre:1s;ind:pre:3s; +dépossédais déposséder ver 0.83 2.97 0 0.07 ind:imp:1s; +dépossédait déposséder ver 0.83 2.97 0 0.14 ind:imp:3s; +déposséder déposséder ver 0.83 2.97 0.08 0.61 inf; +dépossédé déposséder ver m s 0.83 2.97 0.21 1.28 par:pas; +dépossédée déposséder ver f s 0.83 2.97 0.31 0.27 par:pas; +dépossédées déposséder ver f p 0.83 2.97 0 0.2 par:pas; +dépossédés déposséder ver m p 0.83 2.97 0.21 0.41 par:pas; +déposâmes déposer ver 53.09 62.7 0.01 0.2 ind:pas:1p; +déposât déposer ver 53.09 62.7 0 0.07 sub:imp:3s; +déposèrent déposer ver 53.09 62.7 0.04 0.88 ind:pas:3p; +déposé déposer ver m s 53.09 62.7 8.73 10.34 par:pas; +déposée déposer ver f s 53.09 62.7 2.34 3.58 par:pas; +déposées déposer ver f p 53.09 62.7 0.6 1.35 par:pas; +déposés déposer ver m p 53.09 62.7 0.81 2.36 par:pas; +dépote dépoter ver 0.23 0.27 0.15 0.14 imp:pre:2s;ind:pre:3s; +dépotent dépoter ver 0.23 0.27 0 0.07 ind:pre:3p; +dépoter dépoter ver 0.23 0.27 0.07 0 inf; +dépotoir dépotoir nom m s 1.22 1.82 1.22 1.82 +dépoté dépoter ver m s 0.23 0.27 0.01 0.07 par:pas; +dépoudrer dépoudrer ver 0.01 0 0.01 0 inf; +dépouilla dépouiller ver 4.54 20.54 0.03 0.68 ind:pas:3s; +dépouillage dépouillage nom m s 0.01 0 0.01 0 +dépouillaient dépouiller ver 4.54 20.54 0.02 0.95 ind:imp:3p; +dépouillais dépouiller ver 4.54 20.54 0 0.2 ind:imp:1s; +dépouillait dépouiller ver 4.54 20.54 0.03 1.15 ind:imp:3s; +dépouillant dépouiller ver 4.54 20.54 0.01 0.61 par:pre; +dépouille dépouille nom f s 1.94 6.62 1.69 5 +dépouillement dépouillement nom m s 0.17 2.64 0.17 2.5 +dépouillements dépouillement nom m p 0.17 2.64 0 0.14 +dépouillent dépouiller ver 4.54 20.54 0.08 0.47 ind:pre:3p; +dépouiller dépouiller ver 4.54 20.54 2.07 5.14 inf; +dépouillera dépouiller ver 4.54 20.54 0.01 0 ind:fut:3s; +dépouillerais dépouiller ver 4.54 20.54 0.01 0 cnd:pre:1s; +dépouillerait dépouiller ver 4.54 20.54 0 0.07 cnd:pre:3s; +dépouillerez dépouiller ver 4.54 20.54 0.01 0 ind:fut:2p; +dépouilles dépouille nom f p 1.94 6.62 0.25 1.62 +dépouillez dépouiller ver 4.54 20.54 0.05 0 imp:pre:2p;ind:pre:2p; +dépouillons dépouiller ver 4.54 20.54 0.02 0.07 imp:pre:1p; +dépouillât dépouiller ver 4.54 20.54 0 0.07 sub:imp:3s; +dépouillèrent dépouiller ver 4.54 20.54 0.14 0.14 ind:pas:3p; +dépouillé dépouiller ver m s 4.54 20.54 0.9 4.59 par:pas; +dépouillée dépouiller ver f s 4.54 20.54 0.31 2.43 par:pas; +dépouillées dépouiller ver f p 4.54 20.54 0.01 0.41 par:pas; +dépouillés dépouillé adj m p 0.94 3.04 0.66 0.61 +dépourvu dépourvu adj m s 1.1 4.32 1 2.03 +dépourvue dépourvoir ver f s 1.71 12.36 0.73 4.12 par:pas; +dépourvues dépourvoir ver f p 1.71 12.36 0.12 1.22 par:pas; +dépourvus dépourvu adj m p 1.1 4.32 0.09 1.82 +dépoussière dépoussiérer ver 0.78 0.27 0.02 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépoussiérage dépoussiérage nom m s 0.01 0.07 0.01 0.07 +dépoussiéraient dépoussiérer ver 0.78 0.27 0 0.07 ind:imp:3p; +dépoussiérant dépoussiérer ver 0.78 0.27 0.14 0 par:pre; +dépoussiérer dépoussiérer ver 0.78 0.27 0.45 0.14 inf; +dépoussiérez dépoussiérer ver 0.78 0.27 0.03 0 imp:pre:2p; +dépoussiéré dépoussiérer ver m s 0.78 0.27 0.14 0 par:pas; +dépoétisent dépoétiser ver 0 0.07 0 0.07 ind:pre:3p; +dépravation dépravation nom f s 0.61 0.95 0.56 0.61 +dépravations dépravation nom f p 0.61 0.95 0.05 0.34 +dépraver dépraver ver 0.48 0.14 0.06 0 inf; +dépravons dépraver ver 0.48 0.14 0.01 0 ind:pre:1p; +dépravé dépravé nom m s 1.07 0.47 0.63 0.34 +dépravée dépravé adj f s 1.24 0.68 0.3 0 +dépravées dépravé adj f p 1.24 0.68 0.32 0.07 +dépravés dépravé nom m p 1.07 0.47 0.29 0.07 +déprenais déprendre ver 0.01 2.03 0 0.14 ind:imp:1s; +déprenait déprendre ver 0.01 2.03 0 0.07 ind:imp:3s; +déprend déprendre ver 0.01 2.03 0.01 0.07 ind:pre:3s; +déprendre déprendre ver 0.01 2.03 0 0.74 inf; +déprendront déprendre ver 0.01 2.03 0 0.07 ind:fut:3p; +dépressif dépressif adj m s 1.83 0.74 1.11 0.34 +dépressifs dépressif adj m p 1.83 0.74 0.17 0.14 +dépression dépression nom f s 10.41 8.38 10.1 7.36 +dépressionnaire dépressionnaire adj m s 0.03 0.07 0.03 0.07 +dépressions dépression nom f p 10.41 8.38 0.32 1.01 +dépressive dépressif adj f s 1.83 0.74 0.49 0.2 +dépressives dépressif adj f p 1.83 0.74 0.05 0.07 +dépressurisait dépressuriser ver 0.33 0 0.01 0 ind:imp:3s; +dépressurisation dépressurisation nom f s 0.36 0.14 0.36 0.14 +dépressurise dépressuriser ver 0.33 0 0.03 0 ind:pre:3s; +dépressuriser dépressuriser ver 0.33 0 0.14 0 inf; +dépressurisé dépressuriser ver m s 0.33 0 0.1 0 par:pas; +dépressurisés dépressuriser ver m p 0.33 0 0.05 0 par:pas; +déprima déprimer ver 10.61 3.85 0.01 0.14 ind:pas:3s; +déprimais déprimer ver 10.61 3.85 0.06 0 ind:imp:1s;ind:imp:2s; +déprimait déprimer ver 10.61 3.85 0.21 0.34 ind:imp:3s; +déprimant déprimant adj m s 3.83 3.31 2.85 1.49 +déprimante déprimant adj f s 3.83 3.31 0.62 1.28 +déprimantes déprimant adj f p 3.83 3.31 0.25 0.2 +déprimants déprimant adj m p 3.83 3.31 0.11 0.34 +déprime déprimer ver 10.61 3.85 3.61 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépriment déprimer ver 10.61 3.85 0.28 0.07 ind:pre:3p; +déprimer déprimer ver 10.61 3.85 1.05 0.54 inf; +déprimerais déprimer ver 10.61 3.85 0.1 0 cnd:pre:2s; +déprimerait déprimer ver 10.61 3.85 0.25 0 cnd:pre:3s; +déprimes déprimer ver 10.61 3.85 0.75 0.07 ind:pre:2s; +déprimez déprimer ver 10.61 3.85 0.04 0 ind:pre:2p; +déprimé déprimer ver m s 10.61 3.85 2.5 0.61 par:pas; +déprimée déprimer ver f s 10.61 3.85 1.43 0.41 par:pas; +déprimées déprimer ver f p 10.61 3.85 0.12 0 par:pas; +déprimés déprimé adj m p 3.29 1.62 0.16 0.27 +déprirent déprendre ver 0.01 2.03 0 0.14 ind:pas:3p; +dépris déprendre ver m 0.01 2.03 0 0.74 ind:pas:1s;par:pas;par:pas; +déprit déprendre ver 0.01 2.03 0 0.07 ind:pas:3s; +déprogrammation déprogrammation nom f s 0.07 0 0.07 0 +déprogrammer déprogrammer ver 0.37 0.07 0.21 0 inf; +déprogrammez déprogrammer ver 0.37 0.07 0.01 0 imp:pre:2p; +déprogrammé déprogrammer ver m s 0.37 0.07 0.07 0.07 par:pas; +déprogrammée déprogrammer ver f s 0.37 0.07 0.07 0 par:pas; +dépréciait déprécier ver 0.69 1.28 0.1 0.14 ind:imp:3s; +dépréciant déprécier ver 0.69 1.28 0.02 0 par:pre; +dépréciation dépréciation nom f s 0.05 0.41 0.05 0.41 +déprécie déprécier ver 0.69 1.28 0.21 0.07 imp:pre:2s;ind:pre:3s; +déprécier déprécier ver 0.69 1.28 0.15 0.61 inf; +déprécies déprécier ver 0.69 1.28 0.01 0.07 ind:pre:2s; +dépréciez déprécier ver 0.69 1.28 0 0.07 ind:pre:2p; +dépréciiez déprécier ver 0.69 1.28 0 0.07 ind:imp:2p; +déprécié déprécier ver m s 0.69 1.28 0.19 0.14 par:pas; +dépréciée déprécier ver f s 0.69 1.28 0.01 0.14 par:pas; +déprédateur déprédateur adj m s 0 0.07 0 0.07 +déprédateurs déprédateur nom m p 0 0.14 0 0.14 +déprédation déprédation nom f s 0.01 0.41 0 0.07 +déprédations déprédation nom f p 0.01 0.41 0.01 0.34 +dépucela dépuceler ver 1.38 1.01 0 0.07 ind:pas:3s; +dépucelage dépucelage nom m s 0.41 0.41 0.41 0.34 +dépucelages dépucelage nom m p 0.41 0.41 0 0.07 +dépuceler dépuceler ver 1.38 1.01 0.55 0.34 inf; +dépuceleur dépuceleur nom m s 0.02 0.07 0.01 0 +dépuceleurs dépuceleur nom m p 0.02 0.07 0.01 0.07 +dépucelle dépuceler ver 1.38 1.01 0.17 0.07 ind:pre:1s;ind:pre:3s; +dépucellera dépuceler ver 1.38 1.01 0 0.07 ind:fut:3s; +dépucelons dépuceler ver 1.38 1.01 0.03 0 imp:pre:1p; +dépucelé dépuceler ver m s 1.38 1.01 0.39 0.27 par:pas; +dépucelée dépuceler ver f s 1.38 1.01 0.25 0.2 par:pas; +dépulpé dépulper ver m s 0 0.07 0 0.07 par:pas; +dépuratifs dépuratif adj m p 0 0.07 0 0.07 +dépuratifs dépuratif nom m p 0 0.07 0 0.07 +dépurés dépurer ver m p 0 0.07 0 0.07 par:pas; +députation députation nom f s 0 0.34 0 0.2 +députations députation nom f p 0 0.34 0 0.14 +députer députer ver 0.19 0.07 0.01 0 inf; +députèrent députer ver 0.19 0.07 0 0.07 ind:pas:3p; +député député nom m s 10.4 10.88 7.4 6.42 +député_maire député_maire nom m s 0 0.34 0 0.34 +députée député nom f s 10.4 10.88 0.42 0 +députés député nom m p 10.4 10.88 2.59 4.46 +dépèce dépecer ver 1.18 2.57 0.29 0.27 imp:pre:2s;ind:pre:3s; +dépècements dépècement nom m p 0 0.07 0 0.07 +dépècent dépecer ver 1.18 2.57 0.02 0.14 ind:pre:3p; +dépècera dépecer ver 1.18 2.57 0 0.07 ind:fut:3s; +dépècerai dépecer ver 1.18 2.57 0.13 0 ind:fut:1s; +dépèceraient dépecer ver 1.18 2.57 0 0.07 cnd:pre:3p; +dépénaliser dépénaliser ver 0.01 0 0.01 0 inf; +dépéri dépérir ver m s 1.73 1.89 0.36 0.07 par:pas; +dépérir dépérir ver 1.73 1.89 0.41 0.74 inf; +dépérira dépérir ver 1.73 1.89 0.02 0 ind:fut:3s; +dépériraient dépérir ver 1.73 1.89 0 0.07 cnd:pre:3p; +dépérirait dépérir ver 1.73 1.89 0.01 0 cnd:pre:3s; +dépériront dépérir ver 1.73 1.89 0.01 0.07 ind:fut:3p; +dépéris dépérir ver 1.73 1.89 0.06 0.07 ind:pre:1s;ind:pre:2s; +dépérissaient dépérir ver 1.73 1.89 0 0.07 ind:imp:3p; +dépérissais dépérir ver 1.73 1.89 0.01 0.14 ind:imp:1s;ind:imp:2s; +dépérissait dépérir ver 1.73 1.89 0.02 0.27 ind:imp:3s; +dépérisse dépérir ver 1.73 1.89 0.02 0.07 sub:pre:3s; +dépérissement dépérissement nom m s 0 0.34 0 0.34 +dépérissent dépérir ver 1.73 1.89 0.08 0 ind:pre:3p; +dépérit dépérir ver 1.73 1.89 0.73 0.34 ind:pre:3s;ind:pas:3s; +dépêcha dépêcher ver 111.44 22.84 0 1.55 ind:pas:3s; +dépêchai dépêcher ver 111.44 22.84 0.01 0.14 ind:pas:1s; +dépêchaient dépêcher ver 111.44 22.84 0 0.27 ind:imp:3p; +dépêchais dépêcher ver 111.44 22.84 0.03 0.07 ind:imp:1s;ind:imp:2s; +dépêchait dépêcher ver 111.44 22.84 0.05 1.15 ind:imp:3s; +dépêchant dépêcher ver 111.44 22.84 0.08 0.41 par:pre; +dépêche dépêcher ver 111.44 22.84 55.9 7.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépêchent dépêcher ver 111.44 22.84 0.35 0.47 ind:pre:3p; +dépêcher dépêcher ver 111.44 22.84 7.52 3.65 inf; +dépêcherais dépêcher ver 111.44 22.84 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +dépêcherons dépêcher ver 111.44 22.84 0 0.07 ind:fut:1p; +dépêches dépêcher ver 111.44 22.84 0.96 0.2 ind:pre:2s;sub:pre:2s; +dépêchez dépêcher ver 111.44 22.84 35.35 2.77 imp:pre:2p;ind:pre:2p; +dépêchions dépêcher ver 111.44 22.84 0.01 0.07 ind:imp:1p; +dépêchons dépêcher ver 111.44 22.84 10.21 1.55 imp:pre:1p;ind:pre:1p; +dépêchât dépêcher ver 111.44 22.84 0 0.07 sub:imp:3s; +dépêchèrent dépêcher ver 111.44 22.84 0 0.14 ind:pas:3p; +dépêché dépêcher ver m s 111.44 22.84 0.27 1.55 par:pas; +dépêchée dépêcher ver f s 111.44 22.84 0.4 0.47 par:pas; +dépêchées dépêcher ver f p 111.44 22.84 0.11 0.07 par:pas; +dépêchés dépêcher ver m p 111.44 22.84 0.04 0.61 par:pas; +dépêtrer dépêtrer ver 0.13 1.01 0.13 0.81 inf; +dépêtré dépêtrer ver m s 0.13 1.01 0 0.07 par:pas; +dépêtrée dépêtrer ver f s 0.13 1.01 0 0.07 par:pas; +dépêtrés dépêtrer ver m p 0.13 1.01 0 0.07 par:pas; +dépôt dépôt nom m s 13.2 11.96 11.9 8.58 +dépôt_vente dépôt_vente nom m s 0.03 0 0.03 0 +dépôts dépôt nom m p 13.2 11.96 1.3 3.38 +déqualifier déqualifier ver 0.01 0 0.01 0 inf; +déquiller déquiller ver 0 0.27 0 0.14 inf; +déquillé déquiller ver m s 0 0.27 0 0.07 par:pas; +déquillés déquiller ver m p 0 0.27 0 0.07 par:pas; +déracina déraciner ver 0.85 2.23 0.01 0.07 ind:pas:3s; +déracinaient déraciner ver 0.85 2.23 0.01 0 ind:imp:3p; +déracinais déraciner ver 0.85 2.23 0 0.07 ind:imp:1s; +déracinait déraciner ver 0.85 2.23 0 0.2 ind:imp:3s; +déracinant déracinant adj m s 0 0.14 0 0.14 +déracine déraciner ver 0.85 2.23 0.1 0.2 ind:pre:3s; +déracinement déracinement nom m s 0.11 0.54 0.11 0.54 +déracinent déraciner ver 0.85 2.23 0.01 0.14 ind:pre:3p; +déraciner déraciner ver 0.85 2.23 0.27 0.61 inf; +déracinerait déraciner ver 0.85 2.23 0 0.07 cnd:pre:3s; +déraciné déraciner ver m s 0.85 2.23 0.43 0.54 par:pas; +déracinée déraciner ver f s 0.85 2.23 0.01 0.07 par:pas; +déracinées déraciner ver f p 0.85 2.23 0.01 0 par:pas; +déracinés déraciné adj m p 0.04 0.74 0.01 0.41 +dérailla dérailler ver 4.74 3.18 0 0.2 ind:pas:3s; +déraillaient dérailler ver 4.74 3.18 0 0.07 ind:imp:3p; +déraillais dérailler ver 4.74 3.18 0 0.07 ind:imp:1s; +déraillait dérailler ver 4.74 3.18 0.02 0.34 ind:imp:3s; +déraillant dérailler ver 4.74 3.18 0 0.07 par:pre; +déraille dérailler ver 4.74 3.18 1.89 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déraillement déraillement nom m s 0.49 0.54 0.35 0.27 +déraillements déraillement nom m p 0.49 0.54 0.14 0.27 +déraillent dérailler ver 4.74 3.18 0.05 0.07 ind:pre:3p; +dérailler dérailler ver 4.74 3.18 1.25 1.15 inf; +déraillera dérailler ver 4.74 3.18 0.02 0 ind:fut:3s; +dérailles dérailler ver 4.74 3.18 0.42 0.2 ind:pre:2s; +dérailleur dérailleur nom m s 0.02 0.81 0.02 0.81 +déraillez dérailler ver 4.74 3.18 0.21 0 ind:pre:2p; +déraillé dérailler ver m s 4.74 3.18 0.89 0.47 par:pas; +déraison déraison nom f s 0.36 1.35 0.36 1.15 +déraisonnable déraisonnable adj s 1.35 2.77 1.15 2.3 +déraisonnablement déraisonnablement adv 0 0.14 0 0.14 +déraisonnables déraisonnable adj p 1.35 2.77 0.2 0.47 +déraisonnait déraisonner ver 0.87 1.15 0.01 0.41 ind:imp:3s; +déraisonne déraisonner ver 0.87 1.15 0.2 0.2 ind:pre:1s;ind:pre:3s; +déraisonner déraisonner ver 0.87 1.15 0.1 0.34 inf; +déraisonnes déraisonner ver 0.87 1.15 0.29 0.2 ind:pre:2s; +déraisonnez déraisonner ver 0.87 1.15 0.17 0 ind:pre:2p; +déraisonné déraisonner ver m s 0.87 1.15 0.1 0 par:pas; +déraisons déraison nom f p 0.36 1.35 0 0.2 +dérange déranger ver 126.95 43.99 63.69 10.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérangea déranger ver 126.95 43.99 0.01 0.61 ind:pas:3s; +dérangeaient déranger ver 126.95 43.99 0.07 1.01 ind:imp:3p; +dérangeais déranger ver 126.95 43.99 0.18 0.27 ind:imp:1s;ind:imp:2s; +dérangeait déranger ver 126.95 43.99 1.28 3.51 ind:imp:3s; +dérangeant dérangeant adj m s 1.04 1.01 0.79 0.34 +dérangeante dérangeant adj f s 1.04 1.01 0.14 0.41 +dérangeantes dérangeant adj f p 1.04 1.01 0.06 0.14 +dérangeants dérangeant adj m p 1.04 1.01 0.04 0.14 +dérangeassent déranger ver 126.95 43.99 0 0.07 sub:imp:3p; +dérangement dérangement nom m s 3.74 1.89 3.61 1.55 +dérangements dérangement nom m p 3.74 1.89 0.14 0.34 +dérangent déranger ver 126.95 43.99 1.97 1.08 ind:pre:3p; +dérangeons déranger ver 126.95 43.99 0.65 0.14 imp:pre:1p;ind:pre:1p; +déranger déranger ver 126.95 43.99 31.38 14.59 inf;; +dérangera déranger ver 126.95 43.99 1.88 0.61 ind:fut:3s; +dérangerai déranger ver 126.95 43.99 0.98 0.2 ind:fut:1s; +dérangeraient déranger ver 126.95 43.99 0.01 0.07 cnd:pre:3p; +dérangerais déranger ver 126.95 43.99 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +dérangerait déranger ver 126.95 43.99 2.71 0.74 cnd:pre:3s; +dérangeras déranger ver 126.95 43.99 0.11 0 ind:fut:2s; +dérangerez déranger ver 126.95 43.99 0.33 0.07 ind:fut:2p; +dérangerons déranger ver 126.95 43.99 0.18 0 ind:fut:1p; +déranges déranger ver 126.95 43.99 2.11 0.47 ind:pre:2s; +dérangez déranger ver 126.95 43.99 6.75 1.55 imp:pre:2p;ind:pre:2p; +dérangeât déranger ver 126.95 43.99 0 0.34 sub:imp:3s; +dérangiez déranger ver 126.95 43.99 0.01 0 ind:imp:2p; +dérangions déranger ver 126.95 43.99 0 0.14 ind:imp:1p; +dérangé déranger ver m s 126.95 43.99 7.98 3.99 par:pas; +dérangée déranger ver f s 126.95 43.99 2.38 1.62 par:pas; +dérangées déranger ver f p 126.95 43.99 0.06 0.41 par:pas; +dérangés déranger ver m p 126.95 43.99 1.67 0.95 par:pas; +dérapa déraper ver 3.85 8.31 0 1.01 ind:pas:3s; +dérapage dérapage nom m s 0.89 2.36 0.79 1.69 +dérapages dérapage nom m p 0.89 2.36 0.1 0.68 +dérapai déraper ver 3.85 8.31 0 0.14 ind:pas:1s; +dérapaient déraper ver 3.85 8.31 0 0.61 ind:imp:3p; +dérapait déraper ver 3.85 8.31 0.23 1.08 ind:imp:3s; +dérapant déraper ver 3.85 8.31 0 1.15 par:pre; +dérape déraper ver 3.85 8.31 0.95 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérapent déraper ver 3.85 8.31 0.1 0.14 ind:pre:3p; +déraper déraper ver 3.85 8.31 0.53 1.28 inf; +déraperont déraper ver 3.85 8.31 0 0.07 ind:fut:3p; +dérapes déraper ver 3.85 8.31 0.06 0.2 ind:pre:2s; +dérapez déraper ver 3.85 8.31 0.26 0.07 imp:pre:2p;ind:pre:2p; +dérapé déraper ver m s 3.85 8.31 1.72 0.61 par:pas; +dératisation dératisation nom f s 0.27 0.14 0.27 0.07 +dératisations dératisation nom f p 0.27 0.14 0 0.07 +dératiser dératiser ver 0.2 0.07 0.17 0 inf; +dératisé dératiser ver m s 0.2 0.07 0.02 0 par:pas; +dératisée dératiser ver f s 0.2 0.07 0 0.07 par:pas; +dératisés dératiser ver m p 0.2 0.07 0.01 0 par:pas; +dératé dératé nom m s 0.26 1.22 0.2 0.74 +dératées dératé nom f p 0.26 1.22 0.03 0.07 +dératés dératé nom m p 0.26 1.22 0.02 0.41 +dérayer dérayer ver 0.01 0 0.01 0 inf; +déresponsabilisation déresponsabilisation nom f s 0 0.07 0 0.07 +dérida dérider ver 0.57 2.5 0 0.34 ind:pas:3s; +déridait dérider ver 0.57 2.5 0 0.2 ind:imp:3s; +déride dérider ver 0.57 2.5 0.17 0.07 imp:pre:2s;ind:pre:3s; +dérider dérider ver 0.57 2.5 0.19 1.49 inf; +déridera dérider ver 0.57 2.5 0.01 0.07 ind:fut:3s; +dériderait dérider ver 0.57 2.5 0.01 0.07 cnd:pre:3s; +déridez dérider ver 0.57 2.5 0.18 0 imp:pre:2p; +déridé dérider ver m s 0.57 2.5 0.01 0.27 par:pas; +dérision dérision nom f s 1.27 8.51 1.27 8.51 +dérisoire dérisoire adj s 1.38 21.42 1.09 15.27 +dérisoirement dérisoirement adv 0.1 0.54 0.1 0.54 +dérisoires dérisoire adj p 1.38 21.42 0.29 6.15 +dériva dériver ver 4.28 11.42 0 0.54 ind:pas:3s; +dérivaient dériver ver 4.28 11.42 0.02 1.08 ind:imp:3p; +dérivais dériver ver 4.28 11.42 0.04 0.07 ind:imp:1s; +dérivait dériver ver 4.28 11.42 0.06 1.55 ind:imp:3s; +dérivant dériver ver 4.28 11.42 0.18 1.22 par:pre; +dérivante dérivant adj f s 0.03 0.07 0.01 0 +dérivatif dérivatif nom m s 0.03 0.54 0.03 0.47 +dérivatifs dérivatif nom m p 0.03 0.54 0 0.07 +dérivation dérivation nom f s 0.57 0.68 0.55 0.68 +dérivations dérivation nom f p 0.57 0.68 0.02 0 +dérive dérive nom f s 2.81 6.89 2.77 6.55 +dérivent dériver ver 4.28 11.42 0.26 1.15 ind:pre:3p; +dériver dériver ver 4.28 11.42 1.09 3.18 inf; +dériverai dériver ver 4.28 11.42 0.01 0.07 ind:fut:1s; +dériveras dériver ver 4.28 11.42 0.14 0 ind:fut:2s; +dérives dériver ver 4.28 11.42 0.22 0 ind:pre:2s; +dériveur dériveur nom m s 0.14 0.2 0.14 0.14 +dériveurs dériveur nom m p 0.14 0.2 0.01 0.07 +dérivez dériver ver 4.28 11.42 0.05 0 imp:pre:2p;ind:pre:2p; +dérivions dériver ver 4.28 11.42 0.02 0.14 ind:imp:1p; +dérivons dériver ver 4.28 11.42 0.26 0.07 ind:pre:1p; +dérivé dériver ver m s 4.28 11.42 0.84 0.54 par:pas; +dérivée dériver ver f s 4.28 11.42 0.05 0.07 par:pas; +dérivées dérivé adj f p 0.57 0.27 0.06 0.07 +dérivés dérivé adj m p 0.57 0.27 0.44 0.07 +déroba dérober ver 7.15 27.23 0.03 1.22 ind:pas:3s; +dérobade dérobade nom f s 0.21 2.77 0.21 1.76 +dérobades dérobade nom f p 0.21 2.77 0 1.01 +dérobai dérober ver 7.15 27.23 0 0.2 ind:pas:1s; +dérobaient dérober ver 7.15 27.23 0.01 0.95 ind:imp:3p; +dérobais dérober ver 7.15 27.23 0.01 0.2 ind:imp:1s;ind:imp:2s; +dérobait dérober ver 7.15 27.23 0.24 3.92 ind:imp:3s; +dérobant dérober ver 7.15 27.23 0.05 1.22 par:pre; +dérobe dérober ver 7.15 27.23 0.55 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérobent dérober ver 7.15 27.23 0.36 0.74 ind:pre:3p; +dérober dérober ver 7.15 27.23 2.08 7.57 inf;; +dérobera dérober ver 7.15 27.23 0.02 0.07 ind:fut:3s; +déroberaient dérober ver 7.15 27.23 0 0.07 cnd:pre:3p; +déroberait dérober ver 7.15 27.23 0 0.2 cnd:pre:3s; +déroberons dérober ver 7.15 27.23 0.01 0.07 ind:fut:1p; +dérobes dérober ver 7.15 27.23 0.68 0 ind:pre:2s; +dérobeuse dérobeur adj f s 0 0.07 0 0.07 +dérobez dérober ver 7.15 27.23 0.28 0.14 imp:pre:2p;ind:pre:2p; +dérobiez dérober ver 7.15 27.23 0 0.07 ind:imp:2p; +dérobions dérober ver 7.15 27.23 0 0.14 ind:imp:1p; +dérobons dérober ver 7.15 27.23 0.01 0.07 imp:pre:1p;ind:pre:1p; +dérobât dérober ver 7.15 27.23 0 0.07 sub:imp:3s; +dérobèrent dérober ver 7.15 27.23 0 0.14 ind:pas:3p; +dérobé dérober ver m s 7.15 27.23 1.85 2.57 par:pas; +dérobée dérober ver f s 7.15 27.23 0.68 2.77 par:pas; +dérobées dérober ver f p 7.15 27.23 0.04 0.27 par:pas; +dérobés dérober ver m p 7.15 27.23 0.25 0.47 par:pas; +dérogation dérogation nom f s 0.42 0.34 0.4 0.2 +dérogations dérogation nom f p 0.42 0.34 0.02 0.14 +dérogatoire dérogatoire adj f s 0.01 0 0.01 0 +déroge déroger ver 0.46 1.01 0.09 0.27 imp:pre:2s;ind:pre:3s; +dérogea déroger ver 0.46 1.01 0 0.07 ind:pas:3s; +dérogeait déroger ver 0.46 1.01 0.01 0.14 ind:imp:3s; +dérogent déroger ver 0.46 1.01 0.01 0 ind:pre:3p; +déroger déroger ver 0.46 1.01 0.18 0.34 inf; +dérogera déroger ver 0.46 1.01 0.01 0.07 ind:fut:3s; +dérogerait déroger ver 0.46 1.01 0.01 0 cnd:pre:3s; +dérogé déroger ver m s 0.46 1.01 0.15 0.14 par:pas; +dérouillaient dérouiller ver 2.13 4.66 0 0.14 ind:imp:3p; +dérouillais dérouiller ver 2.13 4.66 0.02 0 ind:imp:1s; +dérouillait dérouiller ver 2.13 4.66 0.01 0.14 ind:imp:3s; +dérouillant dérouiller ver 2.13 4.66 0 0.14 par:pre; +dérouille dérouiller ver 2.13 4.66 0.48 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérouillement dérouillement nom m s 0 0.07 0 0.07 +dérouillent dérouiller ver 2.13 4.66 0.05 0.34 ind:pre:3p; +dérouiller dérouiller ver 2.13 4.66 0.94 1.69 inf; +dérouillera dérouiller ver 2.13 4.66 0.04 0 ind:fut:3s; +dérouillerai dérouiller ver 2.13 4.66 0 0.14 ind:fut:1s; +dérouillerais dérouiller ver 2.13 4.66 0.14 0.14 cnd:pre:1s;cnd:pre:2s; +dérouillerait dérouiller ver 2.13 4.66 0.01 0.07 cnd:pre:3s; +dérouilles dérouiller ver 2.13 4.66 0.04 0.2 ind:pre:2s; +dérouillez dérouiller ver 2.13 4.66 0.01 0 imp:pre:2p; +dérouillé dérouiller ver m s 2.13 4.66 0.36 0.54 par:pas; +dérouillée dérouillée nom f s 0.39 1.22 0.23 1.01 +dérouillées dérouillée nom f p 0.39 1.22 0.16 0.2 +déroula dérouler ver 11.37 39.46 0.27 3.04 ind:pas:3s; +déroulai dérouler ver 11.37 39.46 0 0.2 ind:pas:1s; +déroulaient dérouler ver 11.37 39.46 0.04 2.84 ind:imp:3p; +déroulais dérouler ver 11.37 39.46 0.02 0.27 ind:imp:1s; +déroulait dérouler ver 11.37 39.46 0.37 8.92 ind:imp:3s; +déroulant dérouler ver 11.37 39.46 0.11 1.69 par:pre; +déroule dérouler ver 11.37 39.46 5.18 6.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déroulement déroulement nom m s 0.82 5.95 0.82 5.88 +déroulements déroulement nom m p 0.82 5.95 0 0.07 +déroulent dérouler ver 11.37 39.46 1.41 1.42 ind:pre:3p; +dérouler dérouler ver 11.37 39.46 1.26 5.88 inf; +déroulera dérouler ver 11.37 39.46 0.36 0.34 ind:fut:3s; +dérouleraient dérouler ver 11.37 39.46 0.01 0.07 cnd:pre:3p; +déroulerait dérouler ver 11.37 39.46 0.06 0.47 cnd:pre:3s; +dérouleront dérouler ver 11.37 39.46 0.04 0 ind:fut:3p; +dérouleur dérouleur nom m s 0.01 0.34 0.01 0.14 +dérouleurs dérouleur nom m p 0.01 0.34 0 0.14 +dérouleuse dérouleur nom f s 0.01 0.34 0 0.07 +déroulez dérouler ver 11.37 39.46 0.19 0.07 imp:pre:2p; +déroulions dérouler ver 11.37 39.46 0 0.07 ind:imp:1p; +déroulât dérouler ver 11.37 39.46 0 0.14 sub:imp:3s; +déroulèrent dérouler ver 11.37 39.46 0.03 0.81 ind:pas:3p; +déroulé dérouler ver m s 11.37 39.46 1.15 2.57 par:pas; +déroulée dérouler ver f s 11.37 39.46 0.63 2.64 par:pas; +déroulées dérouler ver f p 11.37 39.46 0.11 0.81 par:pas; +déroulés dérouler ver m p 11.37 39.46 0.13 1.08 par:pas; +dérouta dérouter ver 1.63 4.59 0 0.07 ind:pas:3s; +déroutage déroutage nom m s 0.01 0.07 0.01 0.07 +déroutaient dérouter ver 1.63 4.59 0 0.07 ind:imp:3p; +déroutait dérouter ver 1.63 4.59 0.03 0.88 ind:imp:3s; +déroutant déroutant adj m s 1.09 2.03 0.68 0.47 +déroutante déroutant adj f s 1.09 2.03 0.22 1.28 +déroutantes déroutant adj f p 1.09 2.03 0.04 0.14 +déroutants déroutant adj m p 1.09 2.03 0.16 0.14 +déroute déroute nom f s 1.03 5.95 1.03 5.88 +déroutement déroutement nom m s 0.28 0 0.28 0 +déroutent dérouter ver 1.63 4.59 0.02 0.07 ind:pre:3p; +dérouter dérouter ver 1.63 4.59 0.54 0.47 inf;; +déroutera dérouter ver 1.63 4.59 0.01 0 ind:fut:3s; +déroutes dérouter ver 1.63 4.59 0.1 0 ind:pre:2s; +déroutez dérouter ver 1.63 4.59 0.05 0 imp:pre:2p;ind:pre:2p; +déroutèrent dérouter ver 1.63 4.59 0 0.07 ind:pas:3p; +dérouté dérouter ver m s 1.63 4.59 0.47 1.42 par:pas; +déroutée dérouter ver f s 1.63 4.59 0.16 0.47 par:pas; +déroutées dérouter ver f p 1.63 4.59 0.03 0 par:pas; +déroutés dérouter ver m p 1.63 4.59 0.06 0.27 par:pas; +dérègle dérégler ver 1.09 0.95 0.25 0.14 ind:pre:3s; +dérèglement dérèglement nom m s 1.29 1.28 0.35 1.01 +dérèglements dérèglement nom m p 1.29 1.28 0.94 0.27 +dérèglent dérégler ver 1.09 0.95 0.14 0.07 ind:pre:3p; +déréalisaient déréaliser ver 0 0.07 0 0.07 ind:imp:3p; +déréglage déréglage nom m s 0.01 0 0.01 0 +déréglait dérégler ver 1.09 0.95 0.01 0.07 ind:imp:3s; +déréglant dérégler ver 1.09 0.95 0 0.07 par:pre; +déréglementation déréglementation nom f s 0.06 0 0.06 0 +dérégler dérégler ver 1.09 0.95 0.22 0.14 inf; +déréglé dérégler ver m s 1.09 0.95 0.23 0.41 par:pas; +déréglée dérégler ver f s 1.09 0.95 0.2 0 par:pas; +déréglées dérégler ver f p 1.09 0.95 0.03 0 par:pas; +déréglés déréglé adj m p 0.23 1.35 0.1 0.34 +dérégulation dérégulation nom f s 0.04 0 0.04 0 +déréguler déréguler ver 0.01 0 0.01 0 inf; +déréliction déréliction nom f s 0.01 0.61 0.01 0.61 +dés dé nom m p 23.36 11.55 17.63 7.91 +désabonna désabonner ver 0 0.07 0 0.07 ind:pas:3s; +désabonnements désabonnement nom m p 0 0.14 0 0.14 +désabusement désabusement nom m s 0 0.41 0 0.41 +désabuser désabuser ver 0.11 1.08 0 0.07 inf; +désabusé désabusé adj m s 0.12 5.27 0.08 3.04 +désabusée désabuser ver f s 0.11 1.08 0.03 0.14 par:pas; +désabusées désabusé nom f p 0.02 1.42 0 0.14 +désabusés désabusé adj m p 0.12 5.27 0.02 0.47 +désaccord désaccord nom m s 3.02 5.2 2.41 4.05 +désaccorda désaccorder ver 0.38 1.22 0 0.07 ind:pas:3s; +désaccordaient désaccorder ver 0.38 1.22 0 0.07 ind:imp:3p; +désaccordent désaccorder ver 0.38 1.22 0 0.07 ind:pre:3p; +désaccorder désaccorder ver 0.38 1.22 0 0.14 inf; +désaccords désaccord nom m p 3.02 5.2 0.61 1.15 +désaccordé désaccorder ver m s 0.38 1.22 0.14 0.41 par:pas; +désaccordée désaccorder ver f s 0.38 1.22 0.22 0.07 par:pas; +désaccordées désaccorder ver f p 0.38 1.22 0 0.07 par:pas; +désaccordés désaccorder ver m p 0.38 1.22 0.02 0.34 par:pas; +désaccoupler désaccoupler ver 0.01 0 0.01 0 inf; +désaccoutuma désaccoutumer ver 0.14 0.07 0 0.07 ind:pas:3s; +désaccoutumer désaccoutumer ver 0.14 0.07 0.14 0 inf; +désacralisation désacralisation nom f s 0.2 0 0.2 0 +désacraliser désacraliser ver 0.04 0.07 0.03 0 inf; +désacralisé désacraliser ver m s 0.04 0.07 0.01 0.07 par:pas; +désacralisée désacraliser ver f s 0.04 0.07 0.01 0 par:pas; +désactivation désactivation nom f s 0.41 0.07 0.41 0.07 +désactive désactiver ver 4.96 0.41 0.4 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désactiver désactiver ver 4.96 0.41 1.43 0 inf; +désactiverai désactiver ver 4.96 0.41 0.03 0 ind:fut:1s; +désactiveront désactiver ver 4.96 0.41 0.02 0 ind:fut:3p; +désactives désactiver ver 4.96 0.41 0.04 0 ind:pre:2s; +désactivez désactiver ver 4.96 0.41 0.57 0 imp:pre:2p;ind:pre:2p; +désactivons désactiver ver 4.96 0.41 0.04 0 ind:pre:1p; +désactivé désactiver ver m s 4.96 0.41 1.35 0.34 par:pas; +désactivée désactiver ver f s 4.96 0.41 0.2 0.07 par:pas; +désactivées désactiver ver f p 4.96 0.41 0.78 0 par:pas; +désactivés désactiver ver m p 4.96 0.41 0.11 0 par:pas; +désadaptée désadapter ver f s 0 0.07 0 0.07 par:pas; +désadopter désadopter ver 0.01 0 0.01 0 inf; +désaffectation désaffectation nom f s 0 0.07 0 0.07 +désaffecter désaffecter ver 0.18 0.88 0 0.07 inf; +désaffection désaffection nom f s 0.04 0.54 0.04 0.54 +désaffecté désaffecté adj m s 0.85 4.73 0.46 1.62 +désaffectée désaffecté adj f s 0.85 4.73 0.22 1.82 +désaffectées désaffecté adj f p 0.85 4.73 0.03 0.68 +désaffectés désaffecté adj m p 0.85 4.73 0.14 0.61 +désagrège désagréger ver 0.8 3.18 0.35 0.95 imp:pre:2s;ind:pre:3s; +désagrègent désagréger ver 0.8 3.18 0.2 0.2 ind:pre:3p; +désagréable désagréable adj s 10.91 19.39 9.54 16.55 +désagréablement désagréablement adv 0.13 1.28 0.13 1.28 +désagréables désagréable adj p 10.91 19.39 1.38 2.84 +désagrégation désagrégation nom f s 0.1 1.35 0.1 1.35 +désagrégeait désagréger ver 0.8 3.18 0.11 0.41 ind:imp:3s; +désagrégeant désagréger ver 0.8 3.18 0.01 0.27 par:pre; +désagréger désagréger ver 0.8 3.18 0.11 0.88 inf; +désagrégèrent désagréger ver 0.8 3.18 0 0.07 ind:pas:3p; +désagrégé désagréger ver m s 0.8 3.18 0.03 0.14 par:pas; +désagrégée désagréger ver f s 0.8 3.18 0 0.2 par:pas; +désagrégés désagréger ver m p 0.8 3.18 0 0.07 par:pas; +désagrément désagrément nom m s 2.01 2.64 1.2 1.42 +désagréments désagrément nom m p 2.01 2.64 0.81 1.22 +désaimée désaimer ver f s 0 0.14 0 0.14 par:pas; +désajustés désajuster ver m p 0 0.07 0 0.07 par:pas; +désalinisation désalinisation nom f s 0.02 0 0.02 0 +désaliénation désaliénation nom f s 0 0.07 0 0.07 +désaltère désaltérer ver 0.66 1.89 0.2 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désaltéra désaltérer ver 0.66 1.89 0 0.07 ind:pas:3s; +désaltéraient désaltérer ver 0.66 1.89 0 0.07 ind:imp:3p; +désaltérait désaltérer ver 0.66 1.89 0 0.14 ind:imp:3s; +désaltérant désaltérer ver 0.66 1.89 0 0.14 par:pre; +désaltérante désaltérant adj f s 0.14 0 0.14 0 +désaltérer désaltérer ver 0.66 1.89 0.35 0.81 inf; +désaltérât désaltérer ver 0.66 1.89 0 0.07 sub:imp:3s; +désaltéré désaltérer ver m s 0.66 1.89 0.1 0.2 par:pas; +désaltérés désaltérer ver m p 0.66 1.89 0 0.14 par:pas; +désamiantage désamiantage nom m s 0.09 0 0.09 0 +désaminase désaminase nom f s 0.01 0 0.01 0 +désamorce désamorcer ver 2.8 1.62 0.5 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désamorcent désamorcer ver 2.8 1.62 0.01 0 ind:pre:3p; +désamorcer désamorcer ver 2.8 1.62 1.43 0.47 inf; +désamorcera désamorcer ver 2.8 1.62 0.01 0 ind:fut:3s; +désamorcerez désamorcer ver 2.8 1.62 0.01 0 ind:fut:2p; +désamorcerons désamorcer ver 2.8 1.62 0.01 0 ind:fut:1p; +désamorcez désamorcer ver 2.8 1.62 0.04 0 imp:pre:2p;ind:pre:2p; +désamorcé désamorcer ver m s 2.8 1.62 0.28 0.34 par:pas; +désamorcée désamorcer ver f s 2.8 1.62 0.45 0.2 par:pas; +désamorcées désamorcer ver f p 2.8 1.62 0.02 0.07 par:pas; +désamorcés désamorcer ver m p 2.8 1.62 0.03 0.07 par:pas; +désamorçage désamorçage nom m s 0.18 0 0.18 0 +désamorçait désamorcer ver 2.8 1.62 0.01 0.2 ind:imp:3s; +désamorçant désamorcer ver 2.8 1.62 0 0.07 par:pre; +désamour désamour nom m s 0 0.34 0 0.34 +désangler désangler ver 0 0.07 0 0.07 inf; +désape désaper ver 0.77 0.14 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désapent désaper ver 0.77 0.14 0.01 0 ind:pre:3p; +désaper désaper ver 0.77 0.14 0.38 0 inf; +désapeurer désapeurer ver 0 0.07 0 0.07 inf; +désapez désaper ver 0.77 0.14 0.04 0 imp:pre:2p;ind:pre:2p; +désappointait désappointer ver 0.13 0.88 0 0.07 ind:imp:3s; +désappointement désappointement nom m s 0 0.81 0 0.74 +désappointements désappointement nom m p 0 0.81 0 0.07 +désappointer désappointer ver 0.13 0.88 0.03 0.07 inf; +désappointé désappointer ver m s 0.13 0.88 0.09 0.47 par:pas; +désappointée désappointé adj f s 0.06 0.41 0.01 0.27 +désappointés désappointé adj m p 0.06 0.41 0.01 0 +désapprenais désapprendre ver 0.1 0.95 0 0.07 ind:imp:1s; +désapprenant désapprendre ver 0.1 0.95 0 0.07 par:pre; +désapprendre désapprendre ver 0.1 0.95 0.09 0.07 inf; +désapprenne désapprendre ver 0.1 0.95 0 0.14 sub:pre:3s; +désapprirent désapprendre ver 0.1 0.95 0 0.07 ind:pas:3p; +désappris désapprendre ver m 0.1 0.95 0.01 0.47 par:pas; +désapprit désapprendre ver 0.1 0.95 0 0.07 ind:pas:3s; +désapprobateur désapprobateur adj m s 0.06 1.62 0.04 0.95 +désapprobateurs désapprobateur adj m p 0.06 1.62 0 0.41 +désapprobation désapprobation nom f s 0.42 1.55 0.42 1.55 +désapprobatrice désapprobateur adj f s 0.06 1.62 0.02 0.2 +désapprobatrices désapprobateur adj f p 0.06 1.62 0 0.07 +désapprouva désapprouver ver 3.35 3.99 0 0.14 ind:pas:3s; +désapprouvaient désapprouver ver 3.35 3.99 0.04 0.07 ind:imp:3p; +désapprouvais désapprouver ver 3.35 3.99 0.04 0.34 ind:imp:1s;ind:imp:2s; +désapprouvait désapprouver ver 3.35 3.99 0.34 0.88 ind:imp:3s; +désapprouvant désapprouver ver 3.35 3.99 0.01 0.41 par:pre; +désapprouve désapprouver ver 3.35 3.99 1.48 0.95 ind:pre:1s;ind:pre:3s; +désapprouvent désapprouver ver 3.35 3.99 0.26 0.14 ind:pre:3p; +désapprouver désapprouver ver 3.35 3.99 0.16 0.34 inf; +désapprouvera désapprouver ver 3.35 3.99 0.01 0.07 ind:fut:3s; +désapprouverait désapprouver ver 3.35 3.99 0.04 0.07 cnd:pre:3s; +désapprouverez désapprouver ver 3.35 3.99 0.01 0 ind:fut:2p; +désapprouves désapprouver ver 3.35 3.99 0.36 0 ind:pre:2s; +désapprouvez désapprouver ver 3.35 3.99 0.46 0.07 imp:pre:2p;ind:pre:2p; +désapprouviez désapprouver ver 3.35 3.99 0.01 0.07 ind:imp:2p; +désapprouvât désapprouver ver 3.35 3.99 0 0.07 sub:imp:3s; +désapprouvé désapprouver ver m s 3.35 3.99 0.12 0.34 par:pas; +désapprouvée désapprouver ver f s 3.35 3.99 0.01 0.07 par:pas; +désargenté désargenter ver m s 0.01 0.14 0.01 0.07 par:pas; +désargentées désargenté adj f p 0 0.27 0 0.07 +désargentés désargenté nom m p 0.01 0 0.01 0 +désarma désarmer ver 5.72 8.11 0 0.34 ind:pas:3s; +désarmai désarmer ver 5.72 8.11 0 0.07 ind:pas:1s; +désarmaient désarmer ver 5.72 8.11 0 0.14 ind:imp:3p; +désarmait désarmer ver 5.72 8.11 0.01 1.15 ind:imp:3s; +désarmant désarmer ver 5.72 8.11 0.05 0.07 par:pre; +désarmante désarmant adj f s 0.08 1.76 0.03 1.08 +désarmants désarmant adj m p 0.08 1.76 0.01 0.14 +désarme désarmer ver 5.72 8.11 0.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désarmement désarmement nom m s 1.04 0.88 1.04 0.88 +désarment désarmer ver 5.72 8.11 0.04 0.07 ind:pre:3p; +désarmer désarmer ver 5.72 8.11 1.57 1.96 inf; +désarmera désarmer ver 5.72 8.11 0.01 0 ind:fut:3s; +désarmez désarmer ver 5.72 8.11 0.71 0 imp:pre:2p; +désarmèrent désarmer ver 5.72 8.11 0 0.07 ind:pas:3p; +désarmé désarmer ver m s 5.72 8.11 2.29 2.23 par:pas; +désarmée désarmer ver f s 5.72 8.11 0.39 0.47 par:pas; +désarmées désarmer ver f p 5.72 8.11 0.11 0.14 par:pas; +désarmés désarmé adj m p 1.56 5.41 0.72 0.68 +désarrimage désarrimage nom m s 0.02 0 0.02 0 +désarrimez désarrimer ver 0.05 0 0.03 0 imp:pre:2p; +désarrimé désarrimer ver m s 0.05 0 0.02 0 par:pas; +désarroi désarroi nom m s 1.33 14.12 1.32 13.99 +désarrois désarroi nom m p 1.33 14.12 0.01 0.14 +désarticula désarticuler ver 0.34 3.18 0 0.07 ind:pas:3s; +désarticulait désarticuler ver 0.34 3.18 0 0.27 ind:imp:3s; +désarticulant désarticuler ver 0.34 3.18 0 0.14 par:pre; +désarticulation désarticulation nom f s 0 0.14 0 0.14 +désarticulent désarticuler ver 0.34 3.18 0 0.07 ind:pre:3p; +désarticuler désarticuler ver 0.34 3.18 0 0.07 inf; +désarticulera désarticuler ver 0.34 3.18 0.02 0 ind:fut:3s; +désarticulé désarticuler ver m s 0.34 3.18 0.2 1.01 par:pas; +désarticulée désarticuler ver f s 0.34 3.18 0.07 0.81 par:pas; +désarticulées désarticuler ver f p 0.34 3.18 0 0.14 par:pas; +désarticulés désarticuler ver m p 0.34 3.18 0.04 0.61 par:pas; +désarçonna désarçonner ver 0.51 2.57 0 0.14 ind:pas:3s; +désarçonnaient désarçonner ver 0.51 2.57 0 0.07 ind:imp:3p; +désarçonnait désarçonner ver 0.51 2.57 0 0.14 ind:imp:3s; +désarçonne désarçonner ver 0.51 2.57 0.05 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désarçonner désarçonner ver 0.51 2.57 0.17 0.81 inf; +désarçonné désarçonner ver m s 0.51 2.57 0.22 0.74 par:pas; +désarçonnée désarçonner ver f s 0.51 2.57 0.04 0.07 par:pas; +désarçonnés désarçonner ver m p 0.51 2.57 0.03 0.34 par:pas; +désassemble désassembler ver 0.12 0.27 0 0.14 ind:pre:3s; +désassembler désassembler ver 0.12 0.27 0.05 0.14 inf; +désassemblé désassembler ver m s 0.12 0.27 0.07 0 par:pas; +désassortis désassorti adj m p 0 0.07 0 0.07 +désassortis désassortir ver m p 0 0.07 0 0.07 par:pas; +désastre désastre nom m s 12.82 23.72 12.26 19.86 +désastres désastre nom m p 12.82 23.72 0.55 3.85 +désastreuse désastreux adj f s 2.46 6.49 0.92 2.23 +désastreusement désastreusement adv 0.01 0 0.01 0 +désastreuses désastreux adj f p 2.46 6.49 0.41 1.62 +désastreux désastreux adj m 2.46 6.49 1.13 2.64 +désavantage désavantage nom m s 0.52 0.88 0.43 0.61 +désavantageaient désavantager ver 0.24 0.47 0 0.07 ind:imp:3p; +désavantageait désavantager ver 0.24 0.47 0 0.07 ind:imp:3s; +désavantager désavantager ver 0.24 0.47 0.02 0.07 inf; +désavantages désavantage nom m p 0.52 0.88 0.09 0.27 +désavantageuse désavantageux adj f s 0.01 0 0.01 0 +désavantagé désavantager ver m s 0.24 0.47 0.08 0.14 par:pas; +désavantagés désavantager ver m p 0.24 0.47 0.1 0.07 par:pas; +désaveu désaveu nom m s 0.07 0.61 0.07 0.61 +désaveux désaveux nom m p 0 0.07 0 0.07 +désavoua désavouer ver 0.77 3.11 0 0.14 ind:pas:3s; +désavouait désavouer ver 0.77 3.11 0 0.2 ind:imp:3s; +désavouant désavouer ver 0.77 3.11 0 0.2 par:pre; +désavoue désavouer ver 0.77 3.11 0.01 0.14 ind:pre:1s;ind:pre:3s; +désavouent désavouer ver 0.77 3.11 0.29 0.07 ind:pre:3p; +désavouer désavouer ver 0.77 3.11 0.2 0.74 inf; +désavoueraient désavouer ver 0.77 3.11 0 0.14 cnd:pre:3p; +désavouerons désavouer ver 0.77 3.11 0 0.14 ind:fut:1p; +désavouez désavouer ver 0.77 3.11 0.01 0.07 imp:pre:2p;ind:pre:2p; +désavouât désavouer ver 0.77 3.11 0 0.07 sub:imp:3s; +désavoué désavouer ver m s 0.77 3.11 0.22 0.68 par:pas; +désavouée désavouer ver f s 0.77 3.11 0.03 0.34 par:pas; +désavoués désavouer ver m p 0.77 3.11 0.01 0.2 par:pas; +désaxait désaxer ver 0.09 0.54 0 0.07 ind:imp:3s; +désaxant désaxer ver 0.09 0.54 0.01 0.07 par:pre; +désaxe désaxer ver 0.09 0.54 0.01 0.14 ind:pre:3s; +désaxement désaxement nom m s 0 0.07 0 0.07 +désaxé désaxé nom m s 0.4 0.27 0.26 0.07 +désaxée désaxé adj f s 0.13 0.61 0.02 0.34 +désaxées désaxé nom f p 0.4 0.27 0.01 0.07 +désaxés désaxé nom m p 0.4 0.27 0.12 0.14 +déscolarisé déscolariser ver m s 0.01 0 0.01 0 par:pas; +désembourber désembourber ver 0.05 0.2 0.05 0.14 inf; +désembourbée désembourber ver f s 0.05 0.2 0 0.07 par:pas; +désembrouiller désembrouiller ver 0.01 0 0.01 0 inf; +désembuer désembuer ver 0 0.07 0 0.07 inf; +désemparait désemparer ver 0.67 3.18 0 0.07 ind:imp:3s; +désemparer désemparer ver 0.67 3.18 0 0.61 inf; +désemparé désemparer ver m s 0.67 3.18 0.36 1.28 par:pas; +désemparée désemparé adj f s 0.9 4.19 0.55 1.42 +désemparées désemparé adj f p 0.9 4.19 0.11 0.07 +désemparés désemparer ver m p 0.67 3.18 0.12 0.34 par:pas; +désempenné désempenner ver m s 0 0.07 0 0.07 par:pas; +désempierraient désempierrer ver 0 0.07 0 0.07 ind:imp:3p; +désemplissaient désemplir ver 0.17 0.61 0 0.07 ind:imp:3p; +désemplissait désemplir ver 0.17 0.61 0 0.34 ind:imp:3s; +désemplit désemplir ver 0.17 0.61 0.17 0.2 ind:pre:3s;ind:pas:3s; +désenchanta désenchanter ver 0.02 0.54 0 0.07 ind:pas:3s; +désenchantant désenchanter ver 0.02 0.54 0 0.07 par:pre; +désenchante désenchanter ver 0.02 0.54 0 0.07 ind:pre:3s; +désenchantement désenchantement nom m s 0.16 1.76 0.16 1.69 +désenchantements désenchantement nom m p 0.16 1.76 0 0.07 +désenchantent désenchanter ver 0.02 0.54 0 0.07 ind:pre:3p; +désenchanter désenchanter ver 0.02 0.54 0 0.14 inf; +désenchanté désenchanté adj m s 0.11 0.88 0.11 0.47 +désenchantée désenchanter ver f s 0.02 0.54 0.01 0.07 par:pas; +désenchantées désenchanter ver f p 0.02 0.54 0.01 0 par:pas; +désenchantés désenchanté nom m p 0.17 0.34 0.14 0.07 +désenchaînement désenchaînement nom m s 0 0.07 0 0.07 +désenchaîner désenchaîner ver 0 0.07 0 0.07 inf; +désenchevêtra désenchevêtrer ver 0 0.07 0 0.07 ind:pas:3s; +désenclavement désenclavement nom m s 0 0.07 0 0.07 +désencombre désencombrer ver 0 0.07 0 0.07 ind:pre:1s; +désencrasser désencrasser ver 0.03 0.07 0.03 0.07 inf; +désenflaient désenfler ver 0.22 0.07 0 0.07 ind:imp:3p; +désenfle désenfler ver 0.22 0.07 0.06 0 imp:pre:2s;ind:pre:3s; +désenfler désenfler ver 0.22 0.07 0.12 0 inf; +désenflé désenfler ver m s 0.22 0.07 0.04 0 par:pas; +désengagement désengagement nom m s 0.14 0.07 0.14 0.07 +désengager désengager ver 0.31 0.2 0.08 0.14 inf; +désengagez désengager ver 0.31 0.2 0.18 0 imp:pre:2p;ind:pre:2p; +désengagé désengager ver m s 0.31 0.2 0.04 0.07 par:pas; +désengluer désengluer ver 0 0.07 0 0.07 inf; +désengourdir désengourdir ver 0 0.14 0 0.14 inf; +désennuie désennuyer ver 0.02 0.41 0 0.07 ind:pre:3s; +désennuiera désennuyer ver 0.02 0.41 0 0.07 ind:fut:3s; +désennuyant désennuyer ver 0.02 0.41 0 0.07 par:pre; +désennuyer désennuyer ver 0.02 0.41 0.02 0.2 inf; +désenrouler désenrouler ver 0.01 0 0.01 0 inf; +désensabler désensabler ver 0 0.07 0 0.07 inf; +désensibilisation désensibilisation nom f s 0.32 0 0.32 0 +désensibilisent désensibiliser ver 0.04 0 0.01 0 ind:pre:3p; +désensibilisée désensibiliser ver f s 0.04 0 0.03 0 par:pas; +désensorceler désensorceler ver 0 0.14 0 0.07 inf; +désensorcelé désensorceler ver m s 0 0.14 0 0.07 par:pas; +désentortille désentortiller ver 0 0.07 0 0.07 ind:pre:1s; +désentravé désentraver ver m s 0 0.14 0 0.07 par:pas; +désentravée désentraver ver f s 0 0.14 0 0.07 par:pas; +désenvoûter désenvoûter ver 0.03 0 0.02 0 inf; +désenvoûteurs désenvoûteur nom m p 0 0.07 0 0.07 +désenvoûté désenvoûter ver m s 0.03 0 0.01 0 par:pas; +désert désert nom m s 27.66 41.89 26.13 36.76 +déserta déserter ver 4.9 11.28 0.01 0.41 ind:pas:3s; +désertaient déserter ver 4.9 11.28 0.01 0.2 ind:imp:3p; +désertais déserter ver 4.9 11.28 0.02 0.14 ind:imp:1s; +désertait déserter ver 4.9 11.28 0.03 0.47 ind:imp:3s; +désertant déserter ver 4.9 11.28 0 0.07 par:pre; +déserte désert adj f s 8.02 52.57 3.48 22.91 +désertent déserter ver 4.9 11.28 0.12 0.47 ind:pre:3p; +déserter déserter ver 4.9 11.28 1.92 1.69 inf; +déserterait déserter ver 4.9 11.28 0.11 0 cnd:pre:3s; +désertes désert adj f p 8.02 52.57 0.99 7.91 +déserteur déserteur nom m s 3.08 5.54 1.89 3.51 +déserteurs déserteur nom m p 3.08 5.54 1.19 2.03 +désertifie désertifier ver 0 0.07 0 0.07 ind:pre:3s; +désertion désertion nom f s 1.09 2.43 1.07 2.09 +désertions désertion nom f p 1.09 2.43 0.02 0.34 +désertique désertique adj s 0.22 2.57 0.17 1.82 +désertiques désertique adj p 0.22 2.57 0.04 0.74 +désertons déserter ver 4.9 11.28 0 0.07 imp:pre:1p; +déserts désert nom m p 27.66 41.89 1.53 5.14 +désertâmes déserter ver 4.9 11.28 0 0.07 ind:pas:1p; +désertèrent déserter ver 4.9 11.28 0 0.27 ind:pas:3p; +déserté déserter ver m s 4.9 11.28 1.76 4.19 par:pas; +désertée déserter ver f s 4.9 11.28 0.24 0.88 par:pas; +désertées déserter ver f p 4.9 11.28 0.15 0.14 par:pas; +désertés déserter ver m p 4.9 11.28 0.02 0.47 par:pas; +désespoir désespoir nom m s 10.62 46.89 10.61 45.47 +désespoirs désespoir nom m p 10.62 46.89 0.01 1.42 +désespère désespérer ver 12.22 17.43 1.42 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désespèrent désespérer ver 12.22 17.43 0.06 0.2 ind:pre:3p; +désespères désespérer ver 12.22 17.43 0.01 0.2 ind:pre:2s; +désespéra désespérer ver 12.22 17.43 0 0.61 ind:pas:3s; +désespérai désespérer ver 12.22 17.43 0 0.14 ind:pas:1s; +désespéraient désespérer ver 12.22 17.43 0.01 0.41 ind:imp:3p; +désespérais désespérer ver 12.22 17.43 0.37 0.41 ind:imp:1s; +désespérait désespérer ver 12.22 17.43 0.06 2.03 ind:imp:3s; +désespérance désespérance nom f s 0.03 1.08 0.03 1.08 +désespérant désespérant adj m s 0.67 1.96 0.6 0.95 +désespérante désespérant adj f s 0.67 1.96 0.06 0.88 +désespérants désespérant adj m p 0.67 1.96 0.01 0.14 +désespérer désespérer ver 12.22 17.43 1.18 4.19 inf; +désespérez désespérer ver 12.22 17.43 0.57 0.2 imp:pre:2p;ind:pre:2p; +désespérions désespérer ver 12.22 17.43 0.02 0 ind:imp:1p; +désespérons désespérer ver 12.22 17.43 0.14 0.07 imp:pre:1p; +désespérât désespérer ver 12.22 17.43 0 0.07 sub:imp:3s; +désespérèrent désespérer ver 12.22 17.43 0 0.07 ind:pas:3p; +désespéré désespéré adj m s 10.37 16.35 4.87 7.3 +désespérée désespéré adj f s 10.37 16.35 3.6 5.34 +désespérées désespéré adj f p 10.37 16.35 0.65 1.08 +désespérément désespérément adv 4.08 10.81 4.08 10.81 +désespérés désespéré adj m p 10.37 16.35 1.25 2.64 +déshabilla déshabiller ver 22.98 26.22 0.01 2.43 ind:pas:3s; +déshabillage déshabillage nom m s 0.23 0.81 0.23 0.68 +déshabillage_éclair déshabillage_éclair nom m s 0 0.07 0 0.07 +déshabillages déshabillage nom m p 0.23 0.81 0 0.14 +déshabillai déshabiller ver 22.98 26.22 0 0.41 ind:pas:1s; +déshabillaient déshabiller ver 22.98 26.22 0.13 0.34 ind:imp:3p; +déshabillais déshabiller ver 22.98 26.22 0.14 0.27 ind:imp:1s;ind:imp:2s; +déshabillait déshabiller ver 22.98 26.22 0.1 2.16 ind:imp:3s; +déshabillant déshabiller ver 22.98 26.22 0.1 1.01 par:pre; +déshabille déshabiller ver 22.98 26.22 8.69 5 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +déshabillent déshabiller ver 22.98 26.22 0.44 0.34 ind:pre:3p; +déshabiller déshabiller ver 22.98 26.22 5.85 8.58 inf; +déshabillera déshabiller ver 22.98 26.22 0.01 0.14 ind:fut:3s; +déshabillerai déshabiller ver 22.98 26.22 0.13 0.07 ind:fut:1s; +déshabillerait déshabiller ver 22.98 26.22 0.01 0.07 cnd:pre:3s; +déshabilleras déshabiller ver 22.98 26.22 0.01 0.07 ind:fut:2s; +déshabilleriez déshabiller ver 22.98 26.22 0.01 0 cnd:pre:2p; +déshabillerons déshabiller ver 22.98 26.22 0 0.07 ind:fut:1p; +déshabilles déshabiller ver 22.98 26.22 1.46 0.2 ind:pre:2s;sub:pre:2s; +déshabillez déshabiller ver 22.98 26.22 3.72 0.34 imp:pre:2p;ind:pre:2p; +déshabillons déshabiller ver 22.98 26.22 0.09 0.14 imp:pre:1p;ind:pre:1p; +déshabillèrent déshabiller ver 22.98 26.22 0 0.41 ind:pas:3p; +déshabillé déshabiller ver m s 22.98 26.22 0.9 1.89 par:pas; +déshabillée déshabiller ver f s 22.98 26.22 0.73 1.69 par:pas; +déshabillées déshabiller ver f p 22.98 26.22 0.13 0.2 par:pas; +déshabillés déshabiller ver m p 22.98 26.22 0.32 0.41 par:pas; +déshabitué déshabituer ver m s 0 0.27 0 0.14 par:pas; +déshabituées déshabituer ver f p 0 0.27 0 0.07 par:pas; +déshabitués déshabituer ver m p 0 0.27 0 0.07 par:pas; +déshabité déshabité adj m s 0 0.2 0 0.07 +déshabitée déshabité adj f s 0 0.2 0 0.07 +déshabités déshabité adj m p 0 0.2 0 0.07 +désharmonie désharmonie nom f s 0 0.07 0 0.07 +désherbage désherbage nom m s 0.15 0 0.15 0 +désherbait désherber ver 0.19 0.74 0 0.34 ind:imp:3s; +désherbant désherbant adj m s 0.11 0 0.1 0 +désherbants désherbant nom m p 0.07 0.07 0.01 0.07 +désherbe désherber ver 0.19 0.74 0 0.07 ind:pre:3s; +désherber désherber ver 0.19 0.74 0.04 0.27 inf; +désherbé désherber ver m s 0.19 0.74 0.16 0 par:pas; +désherbée désherber ver f s 0.19 0.74 0 0.07 par:pas; +désheuraient désheurer ver 0 0.07 0 0.07 ind:imp:3p; +déshonneur déshonneur nom m s 3.28 2.84 3.28 2.84 +déshonnête déshonnête adj s 0.01 0.2 0.01 0.07 +déshonnêtes déshonnête adj p 0.01 0.2 0 0.14 +déshonoraient déshonorer ver 7.99 6.15 0 0.14 ind:imp:3p; +déshonorait déshonorer ver 7.99 6.15 0 0.34 ind:imp:3s; +déshonorant déshonorant adj m s 0.92 1.28 0.67 0.68 +déshonorante déshonorant adj f s 0.92 1.28 0.24 0.34 +déshonorantes déshonorant adj f p 0.92 1.28 0.01 0.14 +déshonorants déshonorant adj m p 0.92 1.28 0 0.14 +déshonore déshonorer ver 7.99 6.15 0.52 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déshonorent déshonorer ver 7.99 6.15 0.29 0.07 ind:pre:3p; +déshonorer déshonorer ver 7.99 6.15 1.31 1.28 inf; +déshonorera déshonorer ver 7.99 6.15 0.01 0.07 ind:fut:3s; +déshonorerai déshonorer ver 7.99 6.15 0.02 0 ind:fut:1s; +déshonorerais déshonorer ver 7.99 6.15 0.02 0 cnd:pre:1s; +déshonorerait déshonorer ver 7.99 6.15 0.01 0.07 cnd:pre:3s; +déshonores déshonorer ver 7.99 6.15 0.36 0.27 ind:pre:2s; +déshonorez déshonorer ver 7.99 6.15 0.28 0.14 imp:pre:2p;ind:pre:2p; +déshonoré déshonorer ver m s 7.99 6.15 3.15 1.42 par:pas; +déshonorée déshonorer ver f s 7.99 6.15 1.07 0.88 par:pas; +déshonorées déshonorer ver f p 7.99 6.15 0.27 0.14 par:pas; +déshonorés déshonorer ver m p 7.99 6.15 0.65 0.47 par:pas; +déshumanisant déshumaniser ver 0.12 0.14 0.03 0 par:pre; +déshumanisante déshumanisant adj f s 0.04 0 0.04 0 +déshumanisation déshumanisation nom f s 0.15 0.14 0.15 0.14 +déshumanise déshumaniser ver 0.12 0.14 0.01 0 ind:pre:3s; +déshumanisent déshumaniser ver 0.12 0.14 0.04 0 ind:pre:3p; +déshumaniser déshumaniser ver 0.12 0.14 0.01 0 inf; +déshumanisé déshumaniser ver m s 0.12 0.14 0 0.14 par:pas; +déshumanisée déshumaniser ver f s 0.12 0.14 0.01 0 par:pas; +déshumanisées déshumaniser ver f p 0.12 0.14 0.01 0 par:pas; +déshumidification déshumidification nom f s 0.1 0 0.1 0 +déshydratais déshydrater ver 1.17 0.14 0.01 0 ind:imp:1s; +déshydratant déshydrater ver 1.17 0.14 0.01 0 par:pre; +déshydratation déshydratation nom f s 0.61 0.07 0.61 0.07 +déshydrate déshydrater ver 1.17 0.14 0.2 0 ind:pre:1s;ind:pre:3s;sub:pre:1s; +déshydrater déshydrater ver 1.17 0.14 0.29 0 inf; +déshydraté déshydrater ver m s 1.17 0.14 0.44 0 par:pas; +déshydratée déshydraté adj f s 0.69 0.54 0.33 0.27 +déshydratées déshydrater ver f p 1.17 0.14 0.03 0 par:pas; +déshydratés déshydraté adj m p 0.69 0.54 0.03 0.14 +déshérence déshérence nom f s 0 0.2 0 0.2 +déshérita déshériter ver 0.85 1.08 0.01 0.07 ind:pas:3s; +déshéritais déshériter ver 0.85 1.08 0.01 0 ind:imp:2s; +déshérite déshériter ver 0.85 1.08 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déshériter déshériter ver 0.85 1.08 0.18 0.34 inf; +déshéritera déshériter ver 0.85 1.08 0.02 0 ind:fut:3s; +déshériterai déshériter ver 0.85 1.08 0.01 0.07 ind:fut:1s; +déshériterais déshériter ver 0.85 1.08 0.11 0 cnd:pre:1s; +déshériterait déshériter ver 0.85 1.08 0.02 0.07 cnd:pre:3s; +déshérité déshériter ver m s 0.85 1.08 0.34 0.41 par:pas; +déshéritée déshérité nom f s 0.41 0.74 0.1 0 +déshéritées déshérité adj f p 0.22 1.42 0.1 0.2 +déshérités déshérité nom m p 0.41 0.74 0.29 0.74 +désigna désigner ver 10.04 66.69 0.04 10.07 ind:pas:3s; +désignai désigner ver 10.04 66.69 0 0.68 ind:pas:1s; +désignaient désigner ver 10.04 66.69 0.03 0.95 ind:imp:3p; +désignais désigner ver 10.04 66.69 0.03 0.2 ind:imp:1s;ind:imp:2s; +désignait désigner ver 10.04 66.69 0.29 8.85 ind:imp:3s; +désignant désigner ver 10.04 66.69 0.25 11.69 par:pre; +désignassent désigner ver 10.04 66.69 0 0.07 sub:imp:3p; +désignation désignation nom f s 0.49 1.62 0.47 1.55 +désignations désignation nom f p 0.49 1.62 0.02 0.07 +désigne désigner ver 10.04 66.69 1.97 9.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +désignent désigner ver 10.04 66.69 0.18 1.28 ind:pre:3p; +désigner désigner ver 10.04 66.69 1.81 8.38 inf; +désignera désigner ver 10.04 66.69 0.32 0.2 ind:fut:3s; +désignerai désigner ver 10.04 66.69 0.02 0.07 ind:fut:1s; +désignerait désigner ver 10.04 66.69 0.01 0.34 cnd:pre:3s; +désigneras désigner ver 10.04 66.69 0.01 0 ind:fut:2s; +désignerez désigner ver 10.04 66.69 0.02 0 ind:fut:2p; +désigneriez désigner ver 10.04 66.69 0.01 0.07 cnd:pre:2p; +désignerons désigner ver 10.04 66.69 0.01 0 ind:fut:1p; +désigneront désigner ver 10.04 66.69 0.01 0 ind:fut:3p; +désignez désigner ver 10.04 66.69 0.64 0.2 imp:pre:2p;ind:pre:2p; +désignions désigner ver 10.04 66.69 0 0.07 ind:imp:1p; +désignât désigner ver 10.04 66.69 0 0.34 sub:imp:3s; +désignèrent désigner ver 10.04 66.69 0.01 0.34 ind:pas:3p; +désigné désigner ver m s 10.04 66.69 3.04 8.58 par:pas; +désignée désigner ver f s 10.04 66.69 0.65 1.35 par:pas; +désignées désigner ver f p 10.04 66.69 0.06 0.95 par:pas; +désignés désigner ver m p 10.04 66.69 0.62 2.09 par:pas; +désillusion désillusion nom f s 1.08 2.23 0.94 1.22 +désillusionnement désillusionnement nom m s 0.1 0 0.1 0 +désillusionner désillusionner ver 0.02 0.14 0.02 0 inf; +désillusionné désillusionner ver m s 0.02 0.14 0 0.14 par:pas; +désillusions désillusion nom f p 1.08 2.23 0.14 1.01 +désincarcération désincarcération nom f s 0.01 0 0.01 0 +désincarcéré désincarcérer ver m s 0.01 0 0.01 0 par:pas; +désincarnant désincarner ver 0.02 0.61 0 0.07 par:pre; +désincarnation désincarnation nom f s 0.01 0 0.01 0 +désincarne désincarner ver 0.02 0.61 0.01 0.07 ind:pre:1s;ind:pre:3s; +désincarner désincarner ver 0.02 0.61 0 0.07 inf; +désincarné désincarné nom m s 0.18 0.34 0.02 0.2 +désincarnée désincarné adj f s 0.05 0.95 0.03 0.34 +désincarnées désincarné adj f p 0.05 0.95 0.01 0.2 +désincarnés désincarné nom m p 0.18 0.34 0.15 0 +désincrustante désincrustant adj f s 0.01 0 0.01 0 +désincruster désincruster ver 0.01 0 0.01 0 inf; +désindividualisation désindividualisation nom f s 0.1 0 0.1 0 +désinence désinence nom f s 0 0.2 0 0.07 +désinences désinence nom f p 0 0.2 0 0.14 +désinfecta désinfecter ver 3.27 2.57 0 0.07 ind:pas:3s; +désinfectant désinfectant nom m s 0.82 1.62 0.79 1.49 +désinfectante désinfectant adj f s 0.1 0.14 0.01 0 +désinfectantes désinfectant adj f p 0.1 0.14 0.02 0 +désinfectants désinfectant nom m p 0.82 1.62 0.04 0.14 +désinfecte désinfecter ver 3.27 2.57 1 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désinfectent désinfecter ver 3.27 2.57 0.08 0.07 ind:pre:3p; +désinfecter désinfecter ver 3.27 2.57 1.59 1.35 inf; +désinfecterai désinfecter ver 3.27 2.57 0 0.07 ind:fut:1s; +désinfectez désinfecter ver 3.27 2.57 0.05 0 imp:pre:2p;ind:pre:2p; +désinfection désinfection nom f s 0.72 0.61 0.71 0.61 +désinfections désinfection nom f p 0.72 0.61 0.01 0 +désinfecté désinfecter ver m s 3.27 2.57 0.47 0.2 par:pas; +désinfectée désinfecter ver f s 3.27 2.57 0.03 0 par:pas; +désinfectées désinfecter ver f p 3.27 2.57 0.03 0.07 par:pas; +désinfectés désinfecter ver m p 3.27 2.57 0 0.07 par:pas; +désinformation désinformation nom f s 0.21 0.41 0.2 0.41 +désinformations désinformation nom f p 0.21 0.41 0.01 0 +désinformer désinformer ver 0.01 0.07 0.01 0 inf; +désinformée désinformer ver f s 0.01 0.07 0 0.07 par:pas; +désinhibe désinhiber ver 0.01 0 0.01 0 ind:pre:3s; +désinsectisation désinsectisation nom f s 0.19 0 0.19 0 +désinsectiser désinsectiser ver 0.01 0 0.01 0 inf; +désinstaller désinstaller ver 0.03 0 0.02 0 inf; +désinstallé désinstaller ver m s 0.03 0 0.01 0 par:pas; +désintellectualiser désintellectualiser ver 0.01 0 0.01 0 inf; +désintoxication désintoxication nom f s 1.46 0.74 1.46 0.74 +désintoxique désintoxiquer ver 0.91 1.15 0.03 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désintoxiquer désintoxiquer ver 0.91 1.15 0.47 0.68 inf; +désintoxiquera désintoxiquer ver 0.91 1.15 0 0.07 ind:fut:3s; +désintoxiquez désintoxiquer ver 0.91 1.15 0.04 0 imp:pre:2p;ind:pre:2p; +désintoxiqué désintoxiquer ver m s 0.91 1.15 0.16 0.14 par:pas; +désintoxiquée désintoxiquer ver f s 0.91 1.15 0.2 0.07 par:pas; +désintoxiqués désintoxiquer ver m p 0.91 1.15 0.01 0 par:pas; +désintègre désintégrer ver 2.08 1.49 0.33 0.07 imp:pre:2s;ind:pre:3s; +désintègrent désintégrer ver 2.08 1.49 0.1 0 ind:pre:3p; +désintégra désintégrer ver 2.08 1.49 0.03 0 ind:pas:3s; +désintégraient désintégrer ver 2.08 1.49 0.01 0.07 ind:imp:3p; +désintégrait désintégrer ver 2.08 1.49 0.01 0.2 ind:imp:3s; +désintégrant désintégrer ver 2.08 1.49 0.11 0.14 par:pre; +désintégrateur désintégrateur nom m s 0.03 0 0.03 0 +désintégration désintégration nom f s 0.88 0.54 0.86 0.47 +désintégrations désintégration nom f p 0.88 0.54 0.02 0.07 +désintégrer désintégrer ver 2.08 1.49 0.5 0.41 inf; +désintégrera désintégrer ver 2.08 1.49 0.09 0 ind:fut:3s; +désintégreront désintégrer ver 2.08 1.49 0.03 0 ind:fut:3p; +désintégré désintégrer ver m s 2.08 1.49 0.65 0.14 par:pas; +désintégrée désintégrer ver f s 2.08 1.49 0.13 0.27 par:pas; +désintégrés désintégrer ver m p 2.08 1.49 0.09 0.2 par:pas; +désintéressa désintéresser ver 0.95 5.54 0 0.34 ind:pas:3s; +désintéressaient désintéresser ver 0.95 5.54 0.01 0.2 ind:imp:3p; +désintéressait désintéresser ver 0.95 5.54 0 1.01 ind:imp:3s; +désintéressant désintéresser ver 0.95 5.54 0 0.14 par:pre; +désintéresse désintéresser ver 0.95 5.54 0.11 0.47 ind:pre:1s;ind:pre:3s; +désintéressement désintéressement nom m s 0.33 2.09 0.33 2.09 +désintéressent désintéresser ver 0.95 5.54 0 0.07 ind:pre:3p; +désintéresser désintéresser ver 0.95 5.54 0.07 1.62 inf; +désintéresserait désintéresser ver 0.95 5.54 0 0.07 cnd:pre:3s; +désintéresseront désintéresser ver 0.95 5.54 0 0.07 ind:fut:3p; +désintéressiez désintéresser ver 0.95 5.54 0.02 0 ind:imp:2p; +désintéressé désintéressé adj m s 1.05 2.64 0.63 1.01 +désintéressée désintéressé adj f s 1.05 2.64 0.39 0.95 +désintéressées désintéresser ver f p 0.95 5.54 0.01 0.07 par:pas; +désintéressés désintéresser ver m p 0.95 5.54 0.23 0 par:pas; +désintérêt désintérêt nom m s 0.07 0.68 0.07 0.68 +désinvite désinviter ver 0.07 0 0.02 0 ind:pre:1s; +désinviter désinviter ver 0.07 0 0.05 0 inf; +désinvolte désinvolte adj s 1.09 7.5 0.81 6.76 +désinvoltes désinvolte adj p 1.09 7.5 0.28 0.74 +désinvolture désinvolture nom f s 0.32 9.86 0.32 9.8 +désinvoltures désinvolture nom f p 0.32 9.86 0 0.07 +désir désir nom m s 45.35 117.09 31.59 96.69 +désira désirer ver 65.63 61.89 0.04 0.81 ind:pas:3s; +désirabilité désirabilité nom f s 0 0.07 0 0.07 +désirable désirable adj s 1.39 5.2 1.18 4.19 +désirables désirable adj p 1.39 5.2 0.21 1.01 +désiraient désirer ver 65.63 61.89 0.26 2.03 ind:imp:3p; +désirais désirer ver 65.63 61.89 1.88 4.66 ind:imp:1s;ind:imp:2s; +désirait désirer ver 65.63 61.89 1.04 14.05 ind:imp:3s; +désirant désirer ver 65.63 61.89 0.29 0.61 par:pre; +désirante désirant adj f s 0.05 0.47 0 0.14 +désire désirer ver 65.63 61.89 21.01 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désirent désirer ver 65.63 61.89 2.06 2.16 ind:pre:3p; +désirer désirer ver 65.63 61.89 4.28 9.12 inf; +désirera désirer ver 65.63 61.89 0.17 0 ind:fut:3s; +désireraient désirer ver 65.63 61.89 0.01 0.14 cnd:pre:3p; +désirerais désirer ver 65.63 61.89 0.32 0.54 cnd:pre:1s;cnd:pre:2s; +désirerait désirer ver 65.63 61.89 0.11 0.47 cnd:pre:3s; +désireras désirer ver 65.63 61.89 0.13 0.07 ind:fut:2s; +désireriez désirer ver 65.63 61.89 0.03 0 cnd:pre:2p; +désirerions désirer ver 65.63 61.89 0.02 0.07 cnd:pre:1p; +désireront désirer ver 65.63 61.89 0.1 0.07 ind:fut:3p; +désires désirer ver 65.63 61.89 3.87 1.08 ind:pre:2s; +désireuse désireux adj f s 1.46 7.43 0.35 1.96 +désireuses désireux adj f p 1.46 7.43 0.06 0.27 +désireux désireux adj m 1.46 7.43 1.05 5.2 +désirez désirer ver 65.63 61.89 23.85 3.72 imp:pre:2p;ind:pre:2p; +désiriez désirer ver 65.63 61.89 0.83 0.47 ind:imp:2p; +désirions désirer ver 65.63 61.89 0.05 0.41 ind:imp:1p; +désirons désirer ver 65.63 61.89 0.68 0.68 ind:pre:1p; +désirs désir nom m p 45.35 117.09 13.76 20.41 +désirât désirer ver 65.63 61.89 0 0.34 sub:imp:3s; +désiré désirer ver m s 65.63 61.89 2.87 5.54 par:pas; +désirée désirer ver f s 65.63 61.89 1.67 1.42 par:pas; +désirées désiré adj f p 1.02 3.31 0.02 0.07 +désirés désiré adj m p 1.02 3.31 0.09 0.41 +désiste désister ver 0.64 0.2 0.05 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désistement désistement nom m s 0.12 0.07 0.12 0.07 +désister désister ver 0.64 0.2 0.18 0.07 inf; +désistez désister ver 0.64 0.2 0.04 0 imp:pre:2p;ind:pre:2p; +désistèrent désister ver 0.64 0.2 0.01 0 ind:pas:3p; +désisté désister ver m s 0.64 0.2 0.34 0 par:pas; +désistée désister ver f s 0.64 0.2 0.02 0.07 par:pas; +désistés désister ver m p 0.64 0.2 0 0.07 par:pas; +déslipe désliper ver 0 0.07 0 0.07 ind:pre:1s; +désoblige désobliger ver 0.04 0.81 0 0.07 ind:pre:3s; +désobligea désobliger ver 0.04 0.81 0 0.07 ind:pas:3s; +désobligeait désobliger ver 0.04 0.81 0 0.07 ind:imp:3s; +désobligeance désobligeance nom f s 0 0.14 0 0.14 +désobligeant désobligeant adj m s 0.76 3.04 0.54 0.74 +désobligeante désobligeant adj f s 0.76 3.04 0.09 1.01 +désobligeantes désobligeant adj f p 0.76 3.04 0.09 0.88 +désobligeants désobligeant adj m p 0.76 3.04 0.04 0.41 +désobligent désobliger ver 0.04 0.81 0.01 0.07 ind:pre:3p; +désobliger désobliger ver 0.04 0.81 0.01 0.34 inf; +désobligerait désobliger ver 0.04 0.81 0 0.07 cnd:pre:3s; +désobligés désobliger ver m p 0.04 0.81 0 0.07 par:pas; +désobéi désobéir ver m s 6.15 2.09 2.27 0.2 par:pas; +désobéir désobéir ver 6.15 2.09 1.75 1.01 inf; +désobéira désobéir ver 6.15 2.09 0.05 0 ind:fut:3s; +désobéirai désobéir ver 6.15 2.09 0.03 0 ind:fut:1s; +désobéirais désobéir ver 6.15 2.09 0.02 0 cnd:pre:2s; +désobéiront désobéir ver 6.15 2.09 0.01 0 ind:fut:3p; +désobéis désobéir ver 6.15 2.09 0.76 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +désobéissais désobéir ver 6.15 2.09 0.14 0.07 ind:imp:1s;ind:imp:2s; +désobéissait désobéir ver 6.15 2.09 0.02 0.14 ind:imp:3s; +désobéissance désobéissance nom f s 0.91 0.74 0.91 0.68 +désobéissances désobéissance nom f p 0.91 0.74 0 0.07 +désobéissant désobéissant adj m s 0.39 0.14 0.13 0 +désobéissante désobéissant adj f s 0.39 0.14 0.23 0.07 +désobéissants désobéissant adj m p 0.39 0.14 0.03 0.07 +désobéisse désobéir ver 6.15 2.09 0.06 0.07 sub:pre:1s;sub:pre:3s; +désobéissent désobéir ver 6.15 2.09 0.27 0.14 ind:pre:3p; +désobéissez désobéir ver 6.15 2.09 0.36 0 imp:pre:2p;ind:pre:2p; +désobéissions désobéir ver 6.15 2.09 0 0.07 ind:imp:1p; +désobéit désobéir ver 6.15 2.09 0.34 0.27 ind:pre:3s;ind:pas:3s; +désoccupés désoccupé adj m p 0 0.2 0 0.2 +désodorisant désodorisant nom m s 0.45 0.27 0.32 0.27 +désodorisante désodorisant adj f s 0.09 0.07 0.01 0.07 +désodorisants désodorisant nom m p 0.45 0.27 0.13 0 +désodoriser désodoriser ver 0.04 0.07 0.04 0 inf; +désodorisés désodoriser ver m p 0.04 0.07 0.01 0.07 par:pas; +désodé désodé adj m s 0 0.07 0 0.07 +désoeuvre désoeuvre nom f s 0 0.07 0 0.07 +désoeuvrement désoeuvrement nom m s 0.03 2.36 0.03 2.3 +désoeuvrements désoeuvrement nom m p 0.03 2.36 0 0.07 +désoeuvré désoeuvrer ver m s 0.28 0.95 0.02 0.47 par:pas; +désoeuvrée désoeuvrer ver f s 0.28 0.95 0.1 0.14 par:pas; +désoeuvrées désoeuvré adj f p 0.17 3.04 0.01 0.34 +désoeuvrés désoeuvrer ver m p 0.28 0.95 0.16 0.27 par:pas; +désola désoler ver 297.27 14.46 0 0.27 ind:pas:3s; +désolai désoler ver 297.27 14.46 0 0.14 ind:pas:1s; +désolaient désoler ver 297.27 14.46 0 0.07 ind:imp:3p; +désolais désoler ver 297.27 14.46 0 0.27 ind:imp:1s; +désolait désoler ver 297.27 14.46 0.1 1.15 ind:imp:3s; +désolant désolant adj m s 0.88 2.5 0.65 1.08 +désolante désolant adj f s 0.88 2.5 0.08 1.08 +désolantes désolant adj f p 0.88 2.5 0.14 0.14 +désolants désolant adj m p 0.88 2.5 0.01 0.2 +désolation désolation nom f s 1.04 6.82 1.04 6.76 +désolations désolation nom f p 1.04 6.82 0 0.07 +désole désoler ver 297.27 14.46 2.08 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désolent désoler ver 297.27 14.46 0.01 0 ind:pre:3p; +désoler désoler ver 297.27 14.46 0.35 0.61 inf; +désolera désoler ver 297.27 14.46 0.02 0 ind:fut:3s; +désolerait désoler ver 297.27 14.46 0.03 0 cnd:pre:3s; +désoleront désoler ver 297.27 14.46 0 0.07 ind:fut:3p; +désoles désoler ver 297.27 14.46 0.02 0.07 ind:pre:2s; +désolez désoler ver 297.27 14.46 0.03 0.07 imp:pre:2p; +désolidarisa désolidariser ver 0.04 1.08 0 0.07 ind:pas:3s; +désolidarisaient désolidariser ver 0.04 1.08 0 0.07 ind:imp:3p; +désolidarisait désolidariser ver 0.04 1.08 0 0.2 ind:imp:3s; +désolidariser désolidariser ver 0.04 1.08 0.04 0.47 inf; +désolidariserai désolidariser ver 0.04 1.08 0 0.14 ind:fut:1s; +désolidarisé désolidariser ver m s 0.04 1.08 0 0.07 par:pas; +désolidarisés désolidariser ver m p 0.04 1.08 0 0.07 par:pas; +désolât désoler ver 297.27 14.46 0 0.07 sub:imp:3s; +désolé désolé adj m s 276.66 12.43 193.51 6.49 +désolée désoler ver f s 297.27 14.46 98.22 3.38 ind:imp:3s;par:pas; +désolées désolé adj f p 276.66 12.43 0.37 0.61 +désolés désoler ver m p 297.27 14.46 2.71 0.34 par:pas; +désopilant désopilant adj m s 0.42 1.08 0.41 0.61 +désopilante désopilant adj f s 0.42 1.08 0.01 0.14 +désopilantes désopilant adj f p 0.42 1.08 0 0.14 +désopilants désopilant adj m p 0.42 1.08 0.01 0.2 +désorbitation désorbitation nom f s 0.01 0 0.01 0 +désorbitent désorbiter ver 0.03 0.07 0.01 0.07 ind:pre:3p; +désorbiter désorbiter ver 0.03 0.07 0.02 0 inf; +désordonne désordonner ver 0.61 0.74 0 0.07 ind:pre:3s; +désordonné désordonner ver m s 0.61 0.74 0.27 0.2 par:pas; +désordonnée désordonné adj f s 0.4 5.41 0.22 1.62 +désordonnées désordonné adj f p 0.4 5.41 0.02 0.81 +désordonnément désordonnément adv 0 0.07 0 0.07 +désordonnés désordonner ver m p 0.61 0.74 0.21 0.14 par:pas; +désordre désordre nom m s 13.64 42.23 12.34 39.12 +désordres désordre nom m p 13.64 42.23 1.3 3.11 +désorganisait désorganiser ver 0.93 0.95 0 0.14 ind:imp:3s; +désorganisateur désorganisateur nom m s 0 0.07 0 0.07 +désorganisation désorganisation nom f s 0.01 0.47 0.01 0.47 +désorganise désorganiser ver 0.93 0.95 0.28 0.07 ind:pre:1s;ind:pre:3s; +désorganiser désorganiser ver 0.93 0.95 0.05 0.14 inf; +désorganisé désorganiser ver m s 0.93 0.95 0.43 0.2 par:pas; +désorganisée désorganiser ver f s 0.93 0.95 0.08 0 par:pas; +désorganisées désorganiser ver f p 0.93 0.95 0.01 0.2 par:pas; +désorganisés désorganiser ver m p 0.93 0.95 0.09 0.2 par:pas; +désorienta désorienter ver 1.32 2.77 0 0.14 ind:pas:3s; +désorientaient désorienter ver 1.32 2.77 0 0.07 ind:imp:3p; +désorientait désorienter ver 1.32 2.77 0 0.34 ind:imp:3s; +désorientant désorienter ver 1.32 2.77 0.01 0.2 par:pre; +désorientation désorientation nom f s 0.43 0.14 0.43 0.14 +désoriente désorienter ver 1.32 2.77 0.14 0.34 ind:pre:3s; +désorientent désorienter ver 1.32 2.77 0 0.07 ind:pre:3p; +désorienter désorienter ver 1.32 2.77 0.19 0.07 inf; +désorienterait désorienter ver 1.32 2.77 0 0.07 cnd:pre:3s; +désorienté désorienté adj m s 1.31 2.5 0.7 1.35 +désorientée désorienté adj f s 1.31 2.5 0.53 0.74 +désorientées désorienté adj f p 1.31 2.5 0 0.14 +désorientés désorienté adj m p 1.31 2.5 0.08 0.27 +désormais désormais adv 39.13 88.45 39.13 88.45 +désossage désossage nom m s 0.01 0 0.01 0 +désossait désosser ver 0.59 1.55 0 0.07 ind:imp:3s; +désosse désosser ver 0.59 1.55 0.05 0.2 imp:pre:2s;ind:pre:3s; +désossement désossement nom m s 0.01 0 0.01 0 +désosser désosser ver 0.59 1.55 0.13 0.34 inf; +désosseur désosseur nom m s 0.01 0 0.01 0 +désossé désosser ver m s 0.59 1.55 0.11 0.27 par:pas; +désossée désosser ver f s 0.59 1.55 0.31 0.34 par:pas; +désossées désosser ver f p 0.59 1.55 0 0.2 par:pas; +désossés désosser ver m p 0.59 1.55 0 0.14 par:pas; +désoxygénation désoxygénation nom f s 0.01 0 0.01 0 +désoxyribonucléique désoxyribonucléique adj m s 0.01 0.07 0.01 0.07 +déspiritualisation déspiritualisation nom f s 0 0.07 0 0.07 +déspiritualiser déspiritualiser ver 0 0.07 0 0.07 inf; +déstabilisaient déstabiliser ver 1.8 0.61 0.02 0 ind:imp:3p; +déstabilisant déstabilisant adj m s 0.37 0 0.32 0 +déstabilisante déstabilisant adj f s 0.37 0 0.04 0 +déstabilisantes déstabilisant adj f p 0.37 0 0.01 0 +déstabilisation déstabilisation nom f s 0.18 0.07 0.18 0.07 +déstabilisatrice déstabilisateur adj f s 0.14 0 0.14 0 +déstabilise déstabiliser ver 1.8 0.61 0.29 0 ind:pre:3s; +déstabilisent déstabiliser ver 1.8 0.61 0.05 0 ind:pre:3p; +déstabiliser déstabiliser ver 1.8 0.61 0.8 0.47 inf; +déstabilisera déstabiliser ver 1.8 0.61 0.06 0 ind:fut:3s; +déstabiliserait déstabiliser ver 1.8 0.61 0.1 0 cnd:pre:3s; +déstabilisez déstabiliser ver 1.8 0.61 0.03 0 imp:pre:2p;ind:pre:2p; +déstabilisé déstabiliser ver m s 1.8 0.61 0.35 0.07 par:pas; +déstabilisée déstabiliser ver f s 1.8 0.61 0.08 0 par:pas; +déstabilisés déstabiliser ver m p 1.8 0.61 0.01 0.07 par:pas; +déstalinisation déstalinisation nom f s 0 0.07 0 0.07 +déstockage déstockage nom m s 0.03 0 0.03 0 +déstocké déstocker ver m s 0.01 0.07 0.01 0.07 par:pas; +déstructuration déstructuration nom f s 0.03 0 0.03 0 +déstructurer déstructurer ver 0.03 0.07 0.01 0.07 inf; +déstructuré déstructurer ver m s 0.03 0.07 0.02 0 par:pas; +désubjectiviser désubjectiviser ver 0 0.07 0 0.07 inf; +désuet désuet adj m s 0.36 3.38 0.16 1.62 +désuets désuet adj m p 0.36 3.38 0.03 0.47 +désuni désuni adj m s 0.07 0.54 0.02 0.07 +désunie désuni adj f s 0.07 0.54 0.01 0.07 +désunies désuni adj f p 0.07 0.54 0.01 0.14 +désunion désunion nom f s 0.2 0.2 0.2 0.2 +désunir désunir ver 0.27 1.15 0.13 0.54 inf; +désunirait désunir ver 0.27 1.15 0 0.07 cnd:pre:3s; +désunirent désunir ver 0.27 1.15 0 0.07 ind:pas:3p; +désunis désuni adj m p 0.07 0.54 0.03 0.27 +désunissaient désunir ver 0.27 1.15 0 0.14 ind:imp:3p; +désunissait désunir ver 0.27 1.15 0 0.07 ind:imp:3s; +désunissant désunir ver 0.27 1.15 0 0.07 par:pre; +désunisse désunir ver 0.27 1.15 0.01 0 sub:pre:3s; +désunissent désunir ver 0.27 1.15 0 0.07 ind:pre:3p; +désunit désunir ver 0.27 1.15 0.12 0.07 ind:pre:3s;ind:pas:3s; +désuète désuet adj f s 0.36 3.38 0.04 0.74 +désuètes désuet adj f p 0.36 3.38 0.14 0.54 +désuétude désuétude nom f s 0.06 0.27 0.06 0.27 +désynchronisation désynchronisation nom f s 0.01 0 0.01 0 +désynchronisé désynchroniser ver m s 0.01 0.07 0.01 0.07 par:pas; +déséchouée déséchouer ver f s 0 0.07 0 0.07 par:pas; +déségrégation déségrégation nom f s 0.03 0 0.03 0 +désépaissir désépaissir ver 0.01 0.07 0 0.07 inf; +désépaissis désépaissir ver 0.01 0.07 0.01 0 ind:pre:1s; +déséquilibra déséquilibrer ver 0.74 1.89 0 0.14 ind:pas:3s; +déséquilibraient déséquilibrer ver 0.74 1.89 0 0.07 ind:imp:3p; +déséquilibrais déséquilibrer ver 0.74 1.89 0 0.07 ind:imp:1s; +déséquilibrait déséquilibrer ver 0.74 1.89 0 0.27 ind:imp:3s; +déséquilibrant déséquilibrer ver 0.74 1.89 0 0.07 par:pre; +déséquilibre déséquilibre nom m s 0.83 2.64 0.82 2.36 +déséquilibrer déséquilibrer ver 0.74 1.89 0.07 0.27 inf; +déséquilibres déséquilibre nom m p 0.83 2.64 0.01 0.27 +déséquilibrez déséquilibrer ver 0.74 1.89 0.01 0 ind:pre:2p; +déséquilibrât déséquilibrer ver 0.74 1.89 0 0.07 sub:imp:3s; +déséquilibré déséquilibrer ver m s 0.74 1.89 0.41 0.47 par:pas; +déséquilibrée déséquilibrer ver f s 0.74 1.89 0.16 0.34 par:pas; +déséquilibrées déséquilibré nom f p 0.2 1.42 0.01 0.07 +déséquilibrés déséquilibré adj m p 0.41 1.08 0.04 0.14 +déséquipent déséquiper ver 0 0.47 0 0.07 ind:pre:3p; +déséquiper déséquiper ver 0 0.47 0 0.2 inf; +déséquipé déséquiper ver m s 0 0.47 0 0.14 par:pas; +déséquipés déséquiper ver m p 0 0.47 0 0.07 par:pas; +détacha détacher ver 19.69 65.47 0.13 6.22 ind:pas:3s; +détachable détachable adj s 0.14 0 0.14 0 +détachai détacher ver 19.69 65.47 0 0.14 ind:pas:1s; +détachaient détacher ver 19.69 65.47 0.01 3.99 ind:imp:3p; +détachais détacher ver 19.69 65.47 0.02 0.14 ind:imp:1s;ind:imp:2s; +détachait détacher ver 19.69 65.47 0.17 8.51 ind:imp:3s; +détachant détachant nom m s 0.16 0.54 0.16 0.41 +détachants détachant nom m p 0.16 0.54 0 0.14 +détache détacher ver 19.69 65.47 7.44 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +détachement détachement nom m s 2.5 17.84 2.25 15.14 +détachements détachement nom m p 2.5 17.84 0.25 2.7 +détachent détacher ver 19.69 65.47 0.45 3.31 ind:pre:3p; +détacher détacher ver 19.69 65.47 4.44 15.14 inf; +détacherai détacher ver 19.69 65.47 0.04 0 ind:fut:1s; +détacheraient détacher ver 19.69 65.47 0 0.07 cnd:pre:3p; +détacherais détacher ver 19.69 65.47 0.01 0.07 cnd:pre:1s; +détacherait détacher ver 19.69 65.47 0.02 0.41 cnd:pre:3s; +détacherons détacher ver 19.69 65.47 0 0.07 ind:fut:1p; +détacheront détacher ver 19.69 65.47 0.01 0 ind:fut:3p; +détaches détacher ver 19.69 65.47 0.23 0.34 ind:pre:2s; +détacheur détacheur nom m s 0.1 0 0.1 0 +détachez détacher ver 19.69 65.47 3.83 0.41 imp:pre:2p;ind:pre:2p; +détachions détacher ver 19.69 65.47 0 0.07 ind:imp:1p; +détachons détacher ver 19.69 65.47 0.18 0.14 imp:pre:1p;ind:pre:1p; +détachât détacher ver 19.69 65.47 0 0.14 sub:imp:3s; +détachèrent détacher ver 19.69 65.47 0.01 0.81 ind:pas:3p; +détaché détacher ver m s 19.69 65.47 1.45 7.03 par:pas; +détachée détacher ver f s 19.69 65.47 0.57 2.64 par:pas; +détachées détaché adj f p 2.88 12.5 1.32 1.42 +détachés détacher ver m p 19.69 65.47 0.37 1.15 par:pas; +détail détail nom m s 55.78 91.15 19.82 37.97 +détailla détailler ver 2.28 14.59 0 0.95 ind:pas:3s; +détaillai détailler ver 2.28 14.59 0 0.2 ind:pas:1s; +détaillaient détailler ver 2.28 14.59 0 0.2 ind:imp:3p; +détaillais détailler ver 2.28 14.59 0 0.34 ind:imp:1s; +détaillait détailler ver 2.28 14.59 0.02 1.89 ind:imp:3s; +détaillant détailler ver 2.28 14.59 0.21 1.28 par:pre; +détaillante détaillant adj f s 0 0.2 0 0.07 +détaillants détaillant nom m p 0.14 0.14 0.06 0.07 +détaille détailler ver 2.28 14.59 0.2 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détailler détailler ver 2.28 14.59 0.14 4.26 inf; +détaillera détailler ver 2.28 14.59 0.01 0 ind:fut:3s; +détaillerai détailler ver 2.28 14.59 0.01 0.07 ind:fut:1s; +détaillez détailler ver 2.28 14.59 0.07 0.07 imp:pre:2p;ind:pre:2p; +détaillions détailler ver 2.28 14.59 0 0.07 ind:imp:1p; +détaillons détailler ver 2.28 14.59 0 0.07 ind:pre:1p; +détaillât détailler ver 2.28 14.59 0 0.07 sub:imp:3s; +détaillèrent détailler ver 2.28 14.59 0 0.14 ind:pas:3p; +détaillé détaillé adj m s 1.94 2.57 1.12 1.22 +détaillée détailler ver f s 2.28 14.59 0.68 0.74 par:pas; +détaillées détaillé adj f p 1.94 2.57 0.16 0.47 +détaillés détaillé adj m p 1.94 2.57 0.23 0.27 +détails détail nom m p 55.78 91.15 35.96 53.18 +détala détaler ver 1.13 5 0 0.88 ind:pas:3s; +détalai détaler ver 1.13 5 0 0.34 ind:pas:1s; +détalaient détaler ver 1.13 5 0.01 0.34 ind:imp:3p; +détalait détaler ver 1.13 5 0.02 0.27 ind:imp:3s; +détalant détaler ver 1.13 5 0.01 0.54 par:pre; +détale détaler ver 1.13 5 0.28 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détalent détaler ver 1.13 5 0.06 0.2 ind:pre:3p; +détaler détaler ver 1.13 5 0.14 1.28 inf; +détaleraient détaler ver 1.13 5 0.01 0 cnd:pre:3p; +détaleront détaler ver 1.13 5 0.03 0 ind:fut:3p; +détales détaler ver 1.13 5 0.05 0 ind:pre:2s; +détalions détaler ver 1.13 5 0 0.07 ind:imp:1p; +détalonner détalonner ver 0.01 0 0.01 0 inf; +détalât détaler ver 1.13 5 0 0.07 sub:imp:3s; +détalèrent détaler ver 1.13 5 0 0.2 ind:pas:3p; +détalé détaler ver m s 1.13 5 0.52 0.27 par:pas; +détartrage détartrage nom m s 0.12 0 0.12 0 +détartrant détartrant nom m s 0.02 0 0.02 0 +détartrants détartrant adj m p 0 0.14 0 0.14 +détaxe détaxe nom f s 0.02 0 0.01 0 +détaxes détaxe nom f p 0.02 0 0.01 0 +détaxée détaxer ver f s 0.11 0.07 0.1 0 par:pas; +détaxées détaxer ver f p 0.11 0.07 0.01 0.07 par:pas; +détecta détecter ver 9.86 3.04 0 0.07 ind:pas:3s; +détectable détectable adj s 0.22 0 0.17 0 +détectables détectable adj p 0.22 0 0.05 0 +détectai détecter ver 9.86 3.04 0 0.07 ind:pas:1s; +détectaient détecter ver 9.86 3.04 0.01 0 ind:imp:3p; +détectait détecter ver 9.86 3.04 0 0.2 ind:imp:3s; +détecte détecter ver 9.86 3.04 2.23 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détectent détecter ver 9.86 3.04 0.5 0.27 ind:pre:3p; +détecter détecter ver 9.86 3.04 2.49 1.49 inf; +détectera détecter ver 9.86 3.04 0.09 0 ind:fut:3s; +détecteront détecter ver 9.86 3.04 0.07 0 ind:fut:3p; +détecteur détecteur nom m s 8.05 0.27 5.19 0.2 +détecteurs détecteur nom m p 8.05 0.27 2.86 0.07 +détectez détecter ver 9.86 3.04 0.07 0 imp:pre:2p;ind:pre:2p; +détection détection nom f s 1.89 0.27 1.84 0.27 +détections détection nom f p 1.89 0.27 0.05 0 +détective détective nom s 24.61 3.92 20.77 2.36 +détective_conseil détective_conseil nom s 0.02 0 0.01 0 +détectives détective nom p 24.61 3.92 3.84 1.55 +détective_conseil détective_conseil nom p 0.02 0 0.01 0 +détectons détecter ver 9.86 3.04 0.1 0.07 ind:pre:1p; +détecté détecter ver m s 9.86 3.04 2.94 0.27 par:pas; +détectée détecter ver f s 9.86 3.04 0.64 0 par:pas; +détectées détecter ver f p 9.86 3.04 0.15 0.07 par:pas; +détectés détecter ver m p 9.86 3.04 0.56 0.07 par:pas; +déteignaient déteindre ver 1.47 3.38 0 0.07 ind:imp:3p; +déteignait déteindre ver 1.47 3.38 0.01 0.14 ind:imp:3s; +déteignant déteindre ver 1.47 3.38 0 0.07 par:pre; +déteigne déteindre ver 1.47 3.38 0.13 0.07 sub:pre:3s; +déteignent déteindre ver 1.47 3.38 0.03 0.2 ind:pre:3p; +déteignes déteindre ver 1.47 3.38 0.01 0 sub:pre:2s; +déteindra déteindre ver 1.47 3.38 0.05 0 ind:fut:3s; +déteindre déteindre ver 1.47 3.38 0.51 0.61 inf; +déteint déteindre ver m s 1.47 3.38 0.73 1.42 ind:pre:3s;par:pas; +déteinte déteindre ver f s 1.47 3.38 0 0.27 par:pas; +déteintes déteindre ver f p 1.47 3.38 0 0.34 par:pas; +déteints déteindre ver m p 1.47 3.38 0 0.2 par:pas; +détela dételer ver 0.45 1.82 0 0.14 ind:pas:3s; +dételage dételage nom m s 0.01 0 0.01 0 +dételaient dételer ver 0.45 1.82 0.01 0.07 ind:imp:3p; +dételait dételer ver 0.45 1.82 0 0.07 ind:imp:3s; +dételer dételer ver 0.45 1.82 0.04 0.61 inf; +dételez dételer ver 0.45 1.82 0.23 0 imp:pre:2p; +dételle dételer ver 0.45 1.82 0.16 0.07 imp:pre:2s;ind:pre:3s; +dételé dételer ver m s 0.45 1.82 0.02 0.47 par:pas; +dételée dételer ver f s 0.45 1.82 0 0.14 par:pas; +dételées dételer ver f p 0.45 1.82 0 0.14 par:pas; +dételés dételer ver m p 0.45 1.82 0 0.14 par:pas; +détenaient détenir ver 12.73 10.61 0.13 1.01 ind:imp:3p; +détenais détenir ver 12.73 10.61 0.06 0.27 ind:imp:1s;ind:imp:2s; +détenait détenir ver 12.73 10.61 0.6 2.91 ind:imp:3s; +détenant détenir ver 12.73 10.61 0.09 0 par:pre; +détend détendre ver 44.39 23.58 3.21 2.7 ind:pre:3s; +détendaient détendre ver 44.39 23.58 0.1 0.74 ind:imp:3p; +détendais détendre ver 44.39 23.58 0.03 0 ind:imp:1s;ind:imp:2s; +détendait détendre ver 44.39 23.58 0.08 1.69 ind:imp:3s; +détendant détendre ver 44.39 23.58 0.01 0.47 par:pre; +détende détendre ver 44.39 23.58 0.33 0.14 sub:pre:1s;sub:pre:3s; +détendent détendre ver 44.39 23.58 0.15 0.74 ind:pre:3p; +détendes détendre ver 44.39 23.58 0.36 0 sub:pre:2s; +détendeur détendeur nom m s 0.48 0 0.48 0 +détendez détendre ver 44.39 23.58 9.71 0.41 imp:pre:2p;ind:pre:2p; +détendiez détendre ver 44.39 23.58 0.09 0.07 ind:imp:2p; +détendions détendre ver 44.39 23.58 0 0.14 ind:imp:1p; +détendirent détendre ver 44.39 23.58 0.01 0.61 ind:pas:3p; +détendis détendre ver 44.39 23.58 0 0.2 ind:pas:1s; +détendit détendre ver 44.39 23.58 0.11 3.85 ind:pas:3s; +détendons détendre ver 44.39 23.58 0.07 0 imp:pre:1p;ind:pre:1p; +détendra détendre ver 44.39 23.58 0.55 0.07 ind:fut:3s; +détendrai détendre ver 44.39 23.58 0.05 0 ind:fut:1s; +détendraient détendre ver 44.39 23.58 0.01 0.07 cnd:pre:3p; +détendrait détendre ver 44.39 23.58 0.35 0.2 cnd:pre:3s; +détendre détendre ver 44.39 23.58 11.77 5.41 inf;; +détendrez détendre ver 44.39 23.58 0.02 0 ind:fut:2p; +détendrons détendre ver 44.39 23.58 0.01 0 ind:fut:1p; +détends détendre ver 44.39 23.58 15.11 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détendu détendu adj m s 2.9 7.43 1.77 3.99 +détendue détendu adj f s 2.9 7.43 0.89 1.76 +détendues détendu adj f p 2.9 7.43 0.02 0.27 +détendus détendu adj m p 2.9 7.43 0.22 1.42 +détendît détendre ver 44.39 23.58 0 0.07 sub:imp:3s; +détenez détenir ver 12.73 10.61 0.47 0 imp:pre:2p;ind:pre:2p; +déteniez détenir ver 12.73 10.61 0.04 0.14 ind:imp:2p; +détenions détenir ver 12.73 10.61 0.01 0.07 ind:imp:1p; +détenir détenir ver 12.73 10.61 1.11 1.89 inf; +détenons détenir ver 12.73 10.61 0.64 0.14 imp:pre:1p;ind:pre:1p; +détente détente nom f s 5.47 10.68 5.42 10.47 +détentes détente nom f p 5.47 10.68 0.06 0.2 +détenteur détenteur nom m s 0.67 1.55 0.33 0.81 +détenteurs détenteur nom m p 0.67 1.55 0.23 0.68 +détention détention nom f s 6.98 2.84 6.85 2.84 +détentions détention nom f p 6.98 2.84 0.13 0 +détentrice détenteur nom f s 0.67 1.55 0.11 0.07 +détentrices détenteur adj f p 0.16 0.81 0 0.07 +détenu détenu nom m s 12.67 6.08 3.64 2.09 +détenue détenir ver f s 12.73 10.61 0.45 0.07 par:pas; +détenues détenu nom f p 12.67 6.08 0.16 0 +détenus détenu nom m p 12.67 6.08 8.57 3.72 +détergeant déterger ver 0.08 0 0.08 0 par:pre; +détergent détergent nom m s 1.25 0.2 0.99 0.07 +détergents détergent nom m p 1.25 0.2 0.26 0.14 +détermina déterminer ver 14.51 11.96 0.02 0.41 ind:pas:3s; +déterminai déterminer ver 14.51 11.96 0 0.07 ind:pas:1s; +déterminaient déterminer ver 14.51 11.96 0.01 0.41 ind:imp:3p; +déterminais déterminer ver 14.51 11.96 0.03 0.07 ind:imp:1s;ind:imp:2s; +déterminait déterminer ver 14.51 11.96 0.04 0.47 ind:imp:3s; +déterminant déterminant adj m s 0.41 1.69 0.33 0.74 +déterminante déterminant adj f s 0.41 1.69 0.04 0.68 +déterminantes déterminant adj f p 0.41 1.69 0.02 0.07 +déterminants déterminant adj m p 0.41 1.69 0.01 0.2 +détermination détermination nom f s 2.75 4.86 2.75 4.59 +déterminations détermination nom f p 2.75 4.86 0 0.27 +détermine déterminer ver 14.51 11.96 1.56 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déterminent déterminer ver 14.51 11.96 0.26 0.47 ind:pre:3p; +déterminer déterminer ver 14.51 11.96 6.1 4.32 inf; +déterminera déterminer ver 14.51 11.96 0.36 0.07 ind:fut:3s; +détermineraient déterminer ver 14.51 11.96 0 0.07 cnd:pre:3p; +déterminerait déterminer ver 14.51 11.96 0.03 0.14 cnd:pre:3s; +déterminerons déterminer ver 14.51 11.96 0.08 0 ind:fut:1p; +détermineront déterminer ver 14.51 11.96 0.19 0 ind:fut:3p; +déterminez déterminer ver 14.51 11.96 0.13 0 imp:pre:2p;ind:pre:2p; +déterminiez déterminer ver 14.51 11.96 0.04 0 ind:imp:2p; +déterminions déterminer ver 14.51 11.96 0.01 0 ind:imp:1p; +déterminisme déterminisme nom m s 0.22 0.47 0.22 0.47 +déterministe déterministe adj s 0.1 0.14 0.1 0.07 +déterministes déterministe adj m p 0.1 0.14 0 0.07 +déterminons déterminer ver 14.51 11.96 0.21 0 imp:pre:1p;ind:pre:1p; +déterminèrent déterminer ver 14.51 11.96 0 0.27 ind:pas:3p; +déterminé déterminer ver m s 14.51 11.96 3.05 2.16 par:pas; +déterminée déterminer ver f s 14.51 11.96 1.46 1.28 par:pas; +déterminées déterminé adj f p 2.39 4.32 0.24 0.41 +déterminément déterminément adv 0 0.34 0 0.34 +déterminés déterminer ver m p 14.51 11.96 0.67 0.54 par:pas; +déterra déterrer ver 5.44 3.51 0.04 0.14 ind:pas:3s; +déterrage déterrage nom m s 0.01 0 0.01 0 +déterraient déterrer ver 5.44 3.51 0.01 0.2 ind:imp:3p; +déterrais déterrer ver 5.44 3.51 0 0.07 ind:imp:1s; +déterrait déterrer ver 5.44 3.51 0.02 0.27 ind:imp:3s; +déterrant déterrer ver 5.44 3.51 0.05 0.14 par:pre; +déterre déterrer ver 5.44 3.51 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déterrent déterrer ver 5.44 3.51 0.18 0.14 ind:pre:3p; +déterrer déterrer ver 5.44 3.51 2.05 0.68 inf; +déterrera déterrer ver 5.44 3.51 0.04 0.07 ind:fut:3s; +déterrerai déterrer ver 5.44 3.51 0.32 0 ind:fut:1s; +déterrerait déterrer ver 5.44 3.51 0 0.07 cnd:pre:3s; +déterrerez déterrer ver 5.44 3.51 0.01 0 ind:fut:2p; +déterreront déterrer ver 5.44 3.51 0.03 0 ind:fut:3p; +déterreur déterreur nom m s 0.07 0 0.02 0 +déterreurs déterreur nom m p 0.07 0 0.04 0 +déterreuse déterreur nom f s 0.07 0 0.01 0 +déterrez déterrer ver 5.44 3.51 0.21 0 imp:pre:2p;ind:pre:2p; +déterrions déterrer ver 5.44 3.51 0.02 0.07 ind:imp:1p; +déterrons déterrer ver 5.44 3.51 0.02 0 imp:pre:1p;ind:pre:1p; +déterré déterrer ver m s 5.44 3.51 1.86 1.08 par:pas; +déterrée déterré nom f s 0.4 0.07 0.08 0 +déterrées déterrer ver f p 5.44 3.51 0.03 0.07 par:pas; +déterrés déterrer ver m p 5.44 3.51 0.1 0.07 par:pas; +détersifs détersif adj m p 0 0.14 0 0.07 +détersive détersif adj f s 0 0.14 0 0.07 +détesta détester ver 122.87 62.64 0.11 0.61 ind:pas:3s; +détestable détestable adj s 1.93 5.34 1.68 4.12 +détestablement détestablement adv 0 0.07 0 0.07 +détestables détestable adj p 1.93 5.34 0.25 1.22 +détestai détester ver 122.87 62.64 0.01 0.54 ind:pas:1s; +détestaient détester ver 122.87 62.64 0.73 2.16 ind:imp:3p; +détestais détester ver 122.87 62.64 5.48 3.65 ind:imp:1s;ind:imp:2s; +détestait détester ver 122.87 62.64 4.25 15.47 ind:imp:3s; +détestant détester ver 122.87 62.64 0.11 0.68 par:pre; +détestation détestation nom f s 0 0.61 0 0.47 +détestations détestation nom f p 0 0.61 0 0.14 +déteste détester ver 122.87 62.64 79.45 20.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +détestent détester ver 122.87 62.64 6.63 2.64 ind:pre:3p; +détester détester ver 122.87 62.64 6.35 5.47 inf;; +détestera détester ver 122.87 62.64 0.24 0.2 ind:fut:3s; +détesterai détester ver 122.87 62.64 0.26 0 ind:fut:1s; +détesteraient détester ver 122.87 62.64 0.38 0.07 cnd:pre:3p; +détesterais détester ver 122.87 62.64 1.32 0.88 cnd:pre:1s;cnd:pre:2s; +détesterait détester ver 122.87 62.64 0.3 0.14 cnd:pre:3s; +détesteras détester ver 122.87 62.64 0.23 0 ind:fut:2s; +détesteriez détester ver 122.87 62.64 0.01 0 cnd:pre:2p; +détesteront détester ver 122.87 62.64 0.07 0 ind:fut:3p; +détestes détester ver 122.87 62.64 8.13 1.82 ind:pre:2s;sub:pre:2s; +détestez détester ver 122.87 62.64 2.78 0.61 imp:pre:2p;ind:pre:2p; +détestiez détester ver 122.87 62.64 0.42 0.2 ind:imp:2p; +détestions détester ver 122.87 62.64 0.05 1.01 ind:imp:1p;sub:pre:1p; +détestons détester ver 122.87 62.64 0.64 0.61 imp:pre:1p;ind:pre:1p; +détestât détester ver 122.87 62.64 0 0.07 sub:imp:3s; +détesté détester ver m s 122.87 62.64 4.13 4.53 par:pas; +détestée détester ver f s 122.87 62.64 0.52 0.14 par:pas; +détestés détester ver m p 122.87 62.64 0.26 0.34 par:pas; +détiendra détenir ver 12.73 10.61 0.02 0.07 ind:fut:3s; +détiendrai détenir ver 12.73 10.61 0.02 0 ind:fut:1s; +détiendraient détenir ver 12.73 10.61 0 0.07 cnd:pre:3p; +détiendrait détenir ver 12.73 10.61 0.01 0 cnd:pre:3s; +détiendras détenir ver 12.73 10.61 0.03 0 ind:fut:2s; +détiendrez détenir ver 12.73 10.61 0.01 0 ind:fut:2p; +détiendront détenir ver 12.73 10.61 0.02 0 ind:fut:3p; +détienne détenir ver 12.73 10.61 0.02 0.07 sub:pre:1s;sub:pre:3s; +détiennent détenir ver 12.73 10.61 1.21 0.61 ind:pre:3p; +détiens détenir ver 12.73 10.61 1.76 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détient détenir ver 12.73 10.61 3.48 1.28 ind:pre:3s; +détimbrée détimbré adj f s 0 0.27 0 0.27 +détint détenir ver 12.73 10.61 0 0.07 ind:pas:3s; +détisse détisser ver 0 0.07 0 0.07 ind:pre:1s; +détonait détoner ver 0.37 0.2 0.01 0.2 ind:imp:3s; +détonant détonant adj m s 0.09 0.34 0.03 0.27 +détonante détonant adj f s 0.09 0.34 0.01 0 +détonants détonant adj m p 0.09 0.34 0.05 0.07 +détonateur détonateur nom m s 4.84 0.68 3.23 0.34 +détonateurs détonateur nom m p 4.84 0.68 1.6 0.34 +détonation détonation nom f s 1.44 9.26 1.17 4.66 +détonations détonation nom f p 1.44 9.26 0.27 4.59 +détoner détoner ver 0.37 0.2 0.3 0 inf; +détonera détoner ver 0.37 0.2 0.04 0 ind:fut:3s; +détonna détonner ver 0.32 1.55 0 0.07 ind:pas:3s; +détonnaient détonner ver 0.32 1.55 0 0.27 ind:imp:3p; +détonnait détonner ver 0.32 1.55 0.12 0.61 ind:imp:3s; +détonnant détonner ver 0.32 1.55 0.03 0 par:pre; +détonne détonner ver 0.32 1.55 0.05 0.34 ind:pre:1s;ind:pre:3s; +détonnent détonner ver 0.32 1.55 0.01 0.07 ind:pre:3p; +détonner détonner ver 0.32 1.55 0.1 0.2 inf; +détonée détoner ver f s 0.37 0.2 0.01 0 par:pas; +détord détordre ver 0.01 0.07 0.01 0 ind:pre:3s; +détordit détordre ver 0.01 0.07 0 0.07 ind:pas:3s; +détortillai détortiller ver 0 0.14 0 0.07 ind:pas:1s; +détortille détortiller ver 0 0.14 0 0.07 ind:pre:3s; +détour détour nom m s 6.82 24.86 5.43 16.76 +détourage détourage nom m s 0.14 0 0.14 0 +détourna détourner ver 14.34 54.86 0.12 11.22 ind:pas:3s; +détournai détourner ver 14.34 54.86 0 1.96 ind:pas:1s; +détournaient détourner ver 14.34 54.86 0 1.76 ind:imp:3p; +détournais détourner ver 14.34 54.86 0.51 0.54 ind:imp:1s;ind:imp:2s; +détournait détourner ver 14.34 54.86 0.09 4.05 ind:imp:3s; +détournant détourner ver 14.34 54.86 0.32 5.07 par:pre; +détourne détourner ver 14.34 54.86 1.71 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détournement détournement nom m s 2.6 2.09 2.35 1.89 +détournements détournement nom m p 2.6 2.09 0.26 0.2 +détournent détourner ver 14.34 54.86 0.58 0.88 ind:pre:3p; +détourner détourner ver 14.34 54.86 5.27 12.77 inf;; +détournera détourner ver 14.34 54.86 0.23 0.07 ind:fut:3s; +détournerai détourner ver 14.34 54.86 0.05 0.07 ind:fut:1s; +détourneraient détourner ver 14.34 54.86 0 0.07 cnd:pre:3p; +détournerais détourner ver 14.34 54.86 0.03 0 cnd:pre:1s;cnd:pre:2s; +détournerait détourner ver 14.34 54.86 0.2 0.27 cnd:pre:3s; +détourneront détourner ver 14.34 54.86 0.01 0.14 ind:fut:3p; +détournes détourner ver 14.34 54.86 0.16 0.14 ind:pre:2s; +détourneur détourneur nom m s 0 0.07 0 0.07 +détournez détourner ver 14.34 54.86 0.9 0.2 imp:pre:2p;ind:pre:2p; +détourniez détourner ver 14.34 54.86 0.02 0 ind:imp:2p; +détournions détourner ver 14.34 54.86 0.01 0.07 ind:imp:1p; +détournons détourner ver 14.34 54.86 0.29 0.14 imp:pre:1p;ind:pre:1p; +détournât détourner ver 14.34 54.86 0 0.14 sub:imp:3s; +détournèrent détourner ver 14.34 54.86 0.12 0.61 ind:pas:3p; +détourné détourner ver m s 14.34 54.86 2.73 5 imp:pre:2s;par:pas; +détournée détourner ver f s 14.34 54.86 0.48 1.69 par:pas; +détournées détourné adj f p 0.65 2.77 0.06 0.47 +détournés détourner ver m p 14.34 54.86 0.46 1.42 par:pas; +détours détour nom m p 6.82 24.86 1.39 8.11 +détracteur détracteur nom m s 0.29 1.15 0.03 0.2 +détracteurs détracteur nom m p 0.29 1.15 0.26 0.95 +détraquaient détraquer ver 2.24 2.3 0.02 0.07 ind:imp:3p; +détraquais détraquer ver 2.24 2.3 0 0.07 ind:imp:1s; +détraquant détraquer ver 2.24 2.3 0 0.14 par:pre; +détraque détraquer ver 2.24 2.3 0.47 0.61 imp:pre:2s;ind:pre:3s; +détraquement détraquement nom m s 0.01 0.14 0.01 0.14 +détraquent détraquer ver 2.24 2.3 0.12 0 ind:pre:3p; +détraquer détraquer ver 2.24 2.3 0.41 0.34 inf; +détraquera détraquer ver 2.24 2.3 0.01 0 ind:fut:3s; +détraquerais détraquer ver 2.24 2.3 0.01 0 cnd:pre:1s; +détraqué détraqué nom m s 1.57 0.88 1.06 0.41 +détraquée détraqué adj f s 0.84 1.62 0.29 0.81 +détraquées détraquer ver f p 2.24 2.3 0.01 0.07 par:pas; +détraqués détraqué nom m p 1.57 0.88 0.39 0.41 +détrempaient détremper ver 0.4 5.34 0 0.07 ind:imp:3p; +détrempait détremper ver 0.4 5.34 0 0.2 ind:imp:3s; +détrempant détremper ver 0.4 5.34 0 0.07 par:pre; +détrempe détrempe nom f s 0.1 0.14 0.1 0.14 +détremper détremper ver 0.4 5.34 0 0.07 inf; +détrempé détremper ver m s 0.4 5.34 0.02 1.82 par:pas; +détrempée détremper ver f s 0.4 5.34 0.21 1.42 par:pas; +détrempées détremper ver f p 0.4 5.34 0.01 0.81 par:pas; +détrempés détremper ver m p 0.4 5.34 0.16 0.68 par:pas; +détresse détresse nom f s 8.7 19.05 8.48 18.38 +détresses détresse nom f p 8.7 19.05 0.22 0.68 +détribalisée détribaliser ver f s 0 0.07 0 0.07 par:pas; +détricote détricoter ver 0 0.14 0 0.07 ind:pre:1s; +détricoter détricoter ver 0 0.14 0 0.07 inf; +détriment détriment nom m s 0.57 3.04 0.57 2.97 +détriments détriment nom m p 0.57 3.04 0 0.07 +détritiques détritique adj p 0 0.07 0 0.07 +détritus détritus nom m 1.16 4.8 1.16 4.8 +détroit détroit nom m s 3.04 1.55 3.02 1.35 +détroits détroit nom m p 3.04 1.55 0.02 0.2 +détrompa détromper ver 2.61 3.04 0 0.14 ind:pas:3s; +détrompai détromper ver 2.61 3.04 0 0.14 ind:pas:1s; +détrompais détromper ver 2.61 3.04 0 0.14 ind:imp:1s; +détrompait détromper ver 2.61 3.04 0 0.07 ind:imp:3s; +détrompe détromper ver 2.61 3.04 0.97 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détromper détromper ver 2.61 3.04 0.08 1.15 inf; +détromperai détromper ver 2.61 3.04 0 0.07 ind:fut:1s; +détrompez détromper ver 2.61 3.04 1.53 0.47 imp:pre:2p;ind:pre:2p; +détrompé détromper ver m s 2.61 3.04 0.01 0.2 par:pas; +détrompée détromper ver f s 2.61 3.04 0.01 0.14 par:pas; +détrompés détromper ver m p 2.61 3.04 0.01 0.07 par:pas; +détroncha détroncher ver 0 0.81 0 0.07 ind:pas:3s; +détronchant détroncher ver 0 0.81 0 0.14 par:pre; +détronche détroncher ver 0 0.81 0 0.2 ind:pre:3s; +détronchent détroncher ver 0 0.81 0 0.07 ind:pre:3p; +détroncher détroncher ver 0 0.81 0 0.07 inf; +détroncherais détroncher ver 0 0.81 0 0.07 cnd:pre:1s; +détronchèrent détroncher ver 0 0.81 0 0.07 ind:pas:3p; +détronché détroncher ver m s 0 0.81 0 0.14 par:pas; +détroussaient détrousser ver 0.29 0.47 0.01 0 ind:imp:3p; +détroussais détrousser ver 0.29 0.47 0 0.07 ind:imp:1s; +détroussant détrousser ver 0.29 0.47 0 0.07 par:pre; +détroussent détrousser ver 0.29 0.47 0 0.14 ind:pre:3p; +détrousser détrousser ver 0.29 0.47 0.11 0 inf; +détrousses détrousser ver 0.29 0.47 0.01 0 ind:pre:2s; +détrousseur détrousseur nom m s 0.17 0.14 0.17 0.07 +détrousseurs détrousseur nom m p 0.17 0.14 0 0.07 +détroussez détrousser ver 0.29 0.47 0.02 0 ind:pre:2p; +détroussé détrousser ver m s 0.29 0.47 0.12 0.07 par:pas; +détroussés détrousser ver m p 0.29 0.47 0.02 0.14 par:pas; +détruira détruire ver 126.08 52.36 2.67 0.27 ind:fut:3s; +détruirai détruire ver 126.08 52.36 1.84 0.14 ind:fut:1s; +détruiraient détruire ver 126.08 52.36 0.38 0.07 cnd:pre:3p; +détruirais détruire ver 126.08 52.36 0.3 0.14 cnd:pre:1s;cnd:pre:2s; +détruirait détruire ver 126.08 52.36 1.13 0.2 cnd:pre:3s; +détruiras détruire ver 126.08 52.36 0.58 0 ind:fut:2s; +détruire détruire ver 126.08 52.36 50.12 20.34 inf;; +détruirez détruire ver 126.08 52.36 0.28 0.07 ind:fut:2p; +détruiriez détruire ver 126.08 52.36 0.13 0 cnd:pre:2p; +détruirions détruire ver 126.08 52.36 0.04 0.07 cnd:pre:1p; +détruirons détruire ver 126.08 52.36 0.64 0 ind:fut:1p; +détruiront détruire ver 126.08 52.36 0.82 0.14 ind:fut:3p; +détruis détruire ver 126.08 52.36 4.62 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détruisaient détruire ver 126.08 52.36 0.29 0.74 ind:imp:3p; +détruisais détruire ver 126.08 52.36 0.16 0.14 ind:imp:1s;ind:imp:2s; +détruisait détruire ver 126.08 52.36 0.41 1.89 ind:imp:3s; +détruisant détruire ver 126.08 52.36 1.54 1.22 par:pre; +détruise détruire ver 126.08 52.36 1.05 0.54 sub:pre:1s;sub:pre:3s; +détruisent détruire ver 126.08 52.36 3.52 1.28 ind:pre:3p; +détruises détruire ver 126.08 52.36 0.26 0 sub:pre:2s; +détruisez détruire ver 126.08 52.36 4.46 0 imp:pre:2p;ind:pre:2p; +détruisiez détruire ver 126.08 52.36 0.12 0 ind:imp:2p; +détruisions détruire ver 126.08 52.36 0.14 0 ind:imp:1p; +détruisirent détruire ver 126.08 52.36 0.06 0.14 ind:pas:3p; +détruisis détruire ver 126.08 52.36 0 0.07 ind:pas:1s; +détruisit détruire ver 126.08 52.36 0.27 0.95 ind:pas:3s; +détruisons détruire ver 126.08 52.36 1.26 0 imp:pre:1p;ind:pre:1p; +détruit détruire ver m s 126.08 52.36 35.42 14.26 ind:pre:3s;par:pas; +détruite détruire ver f s 126.08 52.36 7.49 4.32 par:pas; +détruites détruire ver f p 126.08 52.36 1.92 1.96 par:pas; +détruits détruire ver m p 126.08 52.36 4.16 2.91 par:pas; +détrônaient détrôner ver 0.46 1.28 0 0.07 ind:imp:3p; +détrône détrôner ver 0.46 1.28 0.03 0.07 ind:pre:3s; +détrônement détrônement nom m s 0.01 0 0.01 0 +détrôner détrôner ver 0.46 1.28 0.19 0.54 inf; +détrônât détrôner ver 0.46 1.28 0 0.07 sub:imp:3s; +détrôné détrôné adj m s 0.26 0.14 0.25 0.07 +détrônée détrôner ver f s 0.46 1.28 0.04 0.07 par:pas; +détérioraient détériorer ver 1.68 3.18 0.01 0.07 ind:imp:3p; +détériorait détériorer ver 1.68 3.18 0.16 0.34 ind:imp:3s; +détériorant détériorer ver 1.68 3.18 0.01 0.14 par:pre; +détérioration détérioration nom f s 0.68 0.54 0.64 0.54 +détériorations détérioration nom f p 0.68 0.54 0.04 0 +détériore détériorer ver 1.68 3.18 0.48 0.61 ind:pre:3s; +détériorent détériorer ver 1.68 3.18 0.05 0 ind:pre:3p; +détériorer détériorer ver 1.68 3.18 0.36 0.68 inf; +détériorât détériorer ver 1.68 3.18 0 0.07 sub:imp:3s; +détérioré détériorer ver m s 1.68 3.18 0.19 0.34 par:pas; +détériorée détériorer ver f s 1.68 3.18 0.22 0.47 par:pas; +détériorées détériorer ver f p 1.68 3.18 0.15 0.2 par:pas; +détériorés détériorer ver m p 1.68 3.18 0.05 0.27 par:pas; +détînt détenir ver 12.73 10.61 0 0.07 sub:imp:3s; +dévala dévaler ver 1.51 16.76 0 1.76 ind:pas:3s; +dévalai dévaler ver 1.51 16.76 0 0.34 ind:pas:1s; +dévalaient dévaler ver 1.51 16.76 0 0.88 ind:imp:3p; +dévalais dévaler ver 1.51 16.76 0.12 0.34 ind:imp:1s;ind:imp:2s; +dévalait dévaler ver 1.51 16.76 0.12 3.04 ind:imp:3s; +dévalant dévaler ver 1.51 16.76 0.22 1.96 par:pre; +dévale dévaler ver 1.51 16.76 0.52 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévalement dévalement nom m s 0 0.34 0 0.34 +dévalent dévaler ver 1.51 16.76 0.08 1.28 ind:pre:3p; +dévaler dévaler ver 1.51 16.76 0.29 1.69 inf; +dévales dévaler ver 1.51 16.76 0 0.07 ind:pre:2s; +dévalions dévaler ver 1.51 16.76 0.01 0.2 ind:imp:1p; +dévalisai dévaliser ver 6.22 2.03 0.01 0.07 ind:pas:1s; +dévalisaient dévaliser ver 6.22 2.03 0.01 0 ind:imp:3p; +dévalisait dévaliser ver 6.22 2.03 0.16 0 ind:imp:3s; +dévalisant dévaliser ver 6.22 2.03 0.05 0 par:pre; +dévalise dévaliser ver 6.22 2.03 0.5 0.07 ind:pre:1s;ind:pre:3s; +dévalisent dévaliser ver 6.22 2.03 0.04 0.07 ind:pre:3p; +dévaliser dévaliser ver 6.22 2.03 1.93 0.68 inf; +dévalisera dévaliser ver 6.22 2.03 0.11 0 ind:fut:3s; +dévaliserait dévaliser ver 6.22 2.03 0.02 0.07 cnd:pre:3s; +dévalises dévaliser ver 6.22 2.03 0.06 0 ind:pre:2s; +dévalisez dévaliser ver 6.22 2.03 0.15 0.07 imp:pre:2p;ind:pre:2p; +dévalisé dévaliser ver m s 6.22 2.03 2.64 0.68 par:pas; +dévalisée dévaliser ver f s 6.22 2.03 0.39 0.14 par:pas; +dévalisés dévaliser ver m p 6.22 2.03 0.14 0.2 par:pas; +dévalons dévaler ver 1.51 16.76 0.01 0.14 imp:pre:1p;ind:pre:1p; +dévalorisaient dévaloriser ver 0.27 0.54 0 0.07 ind:imp:3p; +dévalorisait dévaloriser ver 0.27 0.54 0 0.07 ind:imp:3s; +dévalorisant dévalorisant adj m s 0.1 0 0.1 0 +dévalorisation dévalorisation nom f s 0.01 0.27 0.01 0.27 +dévalorise dévaloriser ver 0.27 0.54 0.1 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévalorisent dévaloriser ver 0.27 0.54 0.02 0.07 ind:pre:3p; +dévaloriser dévaloriser ver 0.27 0.54 0.09 0.07 inf; +dévalorisez dévaloriser ver 0.27 0.54 0.01 0 imp:pre:2p; +dévalorisé dévaloriser ver m s 0.27 0.54 0.03 0.07 par:pas; +dévalorisée dévaloriser ver f s 0.27 0.54 0.02 0.14 par:pas; +dévaluait dévaluer ver 0.37 0.54 0 0.07 ind:imp:3s; +dévaluation dévaluation nom f s 0.14 0.54 0.14 0.47 +dévaluations dévaluation nom f p 0.14 0.54 0 0.07 +dévalue dévaluer ver 0.37 0.54 0.15 0.07 ind:pre:1s;ind:pre:3s; +dévaluer dévaluer ver 0.37 0.54 0 0.2 inf; +dévaluera dévaluer ver 0.37 0.54 0.01 0 ind:fut:3s; +dévalué dévaluer ver m s 0.37 0.54 0.07 0 par:pas; +dévaluée dévaluer ver f s 0.37 0.54 0.14 0.14 par:pas; +dévalués dévaluer ver m p 0.37 0.54 0 0.07 par:pas; +dévalèrent dévaler ver 1.51 16.76 0 0.34 ind:pas:3p; +dévalé dévaler ver m s 1.51 16.76 0.14 1.22 par:pas; +dévalée dévaler ver f s 1.51 16.76 0 0.07 par:pas; +dévasta dévaster ver 2.5 4.12 0.05 0.07 ind:pas:3s; +dévastaient dévaster ver 2.5 4.12 0 0.47 ind:imp:3p; +dévastait dévaster ver 2.5 4.12 0.01 0.14 ind:imp:3s; +dévastant dévaster ver 2.5 4.12 0.04 0 par:pre; +dévastateur dévastateur adj m s 1.43 1.89 0.38 0.61 +dévastateurs dévastateur adj m p 1.43 1.89 0.27 0.27 +dévastation dévastation nom f s 0.44 1.28 0.41 0.81 +dévastations dévastation nom f p 0.44 1.28 0.02 0.47 +dévastatrice dévastateur adj f s 1.43 1.89 0.7 0.74 +dévastatrices dévastateur adj f p 1.43 1.89 0.08 0.27 +dévaste dévaster ver 2.5 4.12 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévastent dévaster ver 2.5 4.12 0.16 0.2 ind:pre:3p; +dévaster dévaster ver 2.5 4.12 0.21 0.54 inf; +dévastera dévaster ver 2.5 4.12 0.01 0 ind:fut:3s; +dévasterait dévaster ver 2.5 4.12 0.05 0 cnd:pre:3s; +dévasteront dévaster ver 2.5 4.12 0.01 0.07 ind:fut:3p; +dévastèrent dévaster ver 2.5 4.12 0 0.14 ind:pas:3p; +dévasté dévaster ver m s 2.5 4.12 1.07 1.42 par:pas; +dévastée dévaster ver f s 2.5 4.12 0.42 0.61 par:pas; +dévastées dévasté adj f p 0.82 2.84 0.01 0.61 +dévastés dévasté adj m p 0.82 2.84 0.16 0.41 +déveinards déveinard nom m p 0 0.07 0 0.07 +déveine déveine nom f s 0.33 1.08 0.33 1.01 +déveines déveine nom f p 0.33 1.08 0 0.07 +développa développer ver 20.41 21.42 0.29 0.81 ind:pas:3s; +développai développer ver 20.41 21.42 0 0.14 ind:pas:1s; +développaient développer ver 20.41 21.42 0.07 0.54 ind:imp:3p; +développais développer ver 20.41 21.42 0.06 0.27 ind:imp:1s;ind:imp:2s; +développait développer ver 20.41 21.42 0.25 2.23 ind:imp:3s; +développant développer ver 20.41 21.42 0.2 0.88 par:pre; +développe développer ver 20.41 21.42 4.09 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +développement développement nom m s 7.09 11.15 6.63 10.2 +développements développement nom m p 7.09 11.15 0.47 0.95 +développent développer ver 20.41 21.42 0.59 0.88 ind:pre:3p; +développer développer ver 20.41 21.42 7.84 6.96 inf; +développera développer ver 20.41 21.42 0.18 0.14 ind:fut:3s; +développerai développer ver 20.41 21.42 0.02 0 ind:fut:1s; +développeraient développer ver 20.41 21.42 0.14 0 cnd:pre:3p; +développerais développer ver 20.41 21.42 0.02 0 cnd:pre:1s; +développerait développer ver 20.41 21.42 0.03 0.07 cnd:pre:3s; +développerez développer ver 20.41 21.42 0.01 0.14 ind:fut:2p; +développeront développer ver 20.41 21.42 0.01 0 ind:fut:3p; +développeur développeur nom m s 0.17 0.07 0.17 0.07 +développez développer ver 20.41 21.42 0.58 0.14 imp:pre:2p;ind:pre:2p; +développons développer ver 20.41 21.42 0.33 0 imp:pre:1p;ind:pre:1p; +développât développer ver 20.41 21.42 0 0.07 sub:imp:3s; +développèrent développer ver 20.41 21.42 0.03 0.07 ind:pas:3p; +développé développer ver m s 20.41 21.42 3.88 2.3 par:pas; +développée développer ver f s 20.41 21.42 0.83 1.08 par:pas; +développées développer ver f p 20.41 21.42 0.53 0.41 par:pas; +développés développé adj m p 3.61 1.55 0.64 0.14 +déventer déventer ver 0.01 0 0.01 0 inf; +dévergondage dévergondage nom m s 0.03 0.27 0.03 0.2 +dévergondages dévergondage nom m p 0.03 0.27 0 0.07 +dévergonde dévergonder ver 0.56 0.27 0.26 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévergondent dévergonder ver 0.56 0.27 0.01 0.07 ind:pre:3p; +dévergonder dévergonder ver 0.56 0.27 0.02 0.14 inf; +dévergondé dévergondé nom m s 1.39 0.41 0.23 0.14 +dévergondée dévergondé nom f s 1.39 0.41 1.06 0.27 +dévergondées dévergondé nom f p 1.39 0.41 0.1 0 +dévergondés dévergondé adj m p 0.56 0.54 0.14 0.07 +dévernie dévernir ver f s 0 0.27 0 0.07 par:pas; +dévernies dévernir ver f p 0 0.27 0 0.07 par:pas; +dévernir dévernir ver 0 0.27 0 0.14 inf; +déverrouilla déverrouiller ver 0.91 1.01 0 0.14 ind:pas:3s; +déverrouillage déverrouillage nom m s 0.28 0 0.28 0 +déverrouillait déverrouiller ver 0.91 1.01 0 0.2 ind:imp:3s; +déverrouille déverrouiller ver 0.91 1.01 0.18 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déverrouillent déverrouiller ver 0.91 1.01 0.01 0.07 ind:pre:3p; +déverrouiller déverrouiller ver 0.91 1.01 0.33 0.2 inf; +déverrouillez déverrouiller ver 0.91 1.01 0.23 0 imp:pre:2p; +déverrouillé déverrouiller ver m s 0.91 1.01 0.08 0.14 par:pas; +déverrouillée déverrouiller ver f s 0.91 1.01 0.07 0.14 par:pas; +déverrouillées déverrouiller ver f p 0.91 1.01 0 0.07 par:pas; +déversa déverser ver 1.97 12.09 0.01 0.61 ind:pas:3s; +déversaient déverser ver 1.97 12.09 0.04 1.15 ind:imp:3p; +déversais déverser ver 1.97 12.09 0 0.07 ind:imp:1s; +déversait déverser ver 1.97 12.09 0.06 2.84 ind:imp:3s; +déversant déverser ver 1.97 12.09 0.03 1.08 par:pre; +déverse déverser ver 1.97 12.09 0.58 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déversement déversement nom m s 0.17 0.14 0.14 0.07 +déversements déversement nom m p 0.17 0.14 0.03 0.07 +déversent déverser ver 1.97 12.09 0.13 0.95 ind:pre:3p; +déverser déverser ver 1.97 12.09 0.61 2.23 inf; +déversera déverser ver 1.97 12.09 0.11 0 ind:fut:3s; +déverserai déverser ver 1.97 12.09 0 0.07 ind:fut:1s; +déverseraient déverser ver 1.97 12.09 0 0.14 cnd:pre:3p; +déverserait déverser ver 1.97 12.09 0 0.07 cnd:pre:3s; +déversez déverser ver 1.97 12.09 0.06 0.07 imp:pre:2p;ind:pre:2p; +déversoir déversoir nom m s 0.18 0.95 0.18 0.95 +déversèrent déverser ver 1.97 12.09 0 0.2 ind:pas:3p; +déversé déverser ver m s 1.97 12.09 0.19 0.47 par:pas; +déversée déverser ver f s 1.97 12.09 0.09 0.34 par:pas; +déversées déverser ver f p 1.97 12.09 0.01 0.07 par:pas; +déversés déverser ver m p 1.97 12.09 0.06 0.41 par:pas; +dévia dévier ver 3.04 5.14 0 0.41 ind:pas:3s; +déviai dévier ver 3.04 5.14 0 0.07 ind:pas:1s; +déviaient dévier ver 3.04 5.14 0 0.07 ind:imp:3p; +déviait dévier ver 3.04 5.14 0.03 0.54 ind:imp:3s; +déviance déviance nom f s 0.18 0 0.01 0 +déviances déviance nom f p 0.18 0 0.17 0 +déviant déviant adj m s 0.45 0 0.33 0 +déviante déviant adj f s 0.45 0 0.02 0 +déviants déviant nom m p 0.21 0.07 0.1 0.07 +déviateur déviateur adj m s 0.02 0 0.02 0 +déviation déviation nom f s 1.29 1.15 1 0.95 +déviationnisme déviationnisme nom m s 0 0.14 0 0.14 +déviationniste déviationniste adj s 0 0.07 0 0.07 +déviations déviation nom f p 1.29 1.15 0.29 0.2 +dévida dévider ver 0.02 3.58 0 0.2 ind:pas:3s; +dévidais dévider ver 0.02 3.58 0 0.07 ind:imp:1s; +dévidait dévider ver 0.02 3.58 0.01 0.88 ind:imp:3s; +dévidant dévider ver 0.02 3.58 0 0.14 par:pre; +dévide dévider ver 0.02 3.58 0.01 0.54 ind:pre:1s;ind:pre:3s; +dévident dévider ver 0.02 3.58 0 0.07 ind:pre:3p; +dévider dévider ver 0.02 3.58 0 1.15 inf; +déviderait dévider ver 0.02 3.58 0 0.14 cnd:pre:3s; +dévideur dévideur nom m s 0 0.07 0 0.07 +dévidions dévider ver 0.02 3.58 0 0.07 ind:imp:1p; +dévidoir dévidoir nom m s 0.03 0.27 0.03 0.2 +dévidoirs dévidoir nom m p 0.03 0.27 0 0.07 +dévidé dévider ver m s 0.02 3.58 0 0.27 par:pas; +dévidée dévider ver f s 0.02 3.58 0 0.07 par:pas; +dévie dévier ver 3.04 5.14 0.52 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévient dévier ver 3.04 5.14 0.04 0.14 ind:pre:3p; +dévier dévier ver 3.04 5.14 0.9 1.96 inf; +déviera dévier ver 3.04 5.14 0.02 0 ind:fut:3s; +dévierait dévier ver 3.04 5.14 0.01 0.14 cnd:pre:3s; +déviez dévier ver 3.04 5.14 0.13 0 imp:pre:2p;ind:pre:2p; +dévions dévier ver 3.04 5.14 0.01 0.07 ind:pre:1p; +dévirginiser dévirginiser ver 0.01 0.07 0 0.07 inf; +dévirginisée dévirginiser ver f s 0.01 0.07 0.01 0 par:pas; +dévirilisant déviriliser ver 0 0.14 0 0.07 par:pre; +dévirilisation dévirilisation nom f s 0 0.2 0 0.2 +dévirilisé déviriliser ver m s 0 0.14 0 0.07 par:pas; +dévisage dévisager ver 2.13 24.66 0.54 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévisagea dévisager ver 2.13 24.66 0 6.01 ind:pas:3s; +dévisageai dévisager ver 2.13 24.66 0.01 1.01 ind:pas:1s; +dévisageaient dévisager ver 2.13 24.66 0.03 1.01 ind:imp:3p; +dévisageais dévisager ver 2.13 24.66 0.01 0.14 ind:imp:1s; +dévisageait dévisager ver 2.13 24.66 0.07 3.72 ind:imp:3s; +dévisageant dévisager ver 2.13 24.66 0 2.7 par:pre; +dévisagent dévisager ver 2.13 24.66 0.25 1.22 ind:pre:3p; +dévisageons dévisager ver 2.13 24.66 0 0.14 ind:pre:1p; +dévisager dévisager ver 2.13 24.66 0.67 2.91 inf; +dévisageraient dévisager ver 2.13 24.66 0.02 0 cnd:pre:3p; +dévisagez dévisager ver 2.13 24.66 0.04 0.07 imp:pre:2p;ind:pre:2p; +dévisageâmes dévisager ver 2.13 24.66 0 0.07 ind:pas:1p; +dévisagions dévisager ver 2.13 24.66 0 0.07 ind:imp:1p; +dévisagèrent dévisager ver 2.13 24.66 0 0.74 ind:pas:3p; +dévisagé dévisager ver m s 2.13 24.66 0.18 1.01 par:pas; +dévisagée dévisager ver f s 2.13 24.66 0.28 0.2 par:pas; +dévisagés dévisager ver m p 2.13 24.66 0.02 0.2 par:pas; +dévissa dévisser ver 1.34 4.59 0 0.74 ind:pas:3s; +dévissable dévissable adj m s 0.01 0 0.01 0 +dévissage dévissage nom m s 0 0.07 0 0.07 +dévissaient dévisser ver 1.34 4.59 0 0.2 ind:imp:3p; +dévissait dévisser ver 1.34 4.59 0 0.47 ind:imp:3s; +dévissant dévisser ver 1.34 4.59 0 0.07 par:pre; +dévisse dévisser ver 1.34 4.59 0.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévisser dévisser ver 1.34 4.59 0.48 1.08 inf; +dévissera dévisser ver 1.34 4.59 0.01 0.07 ind:fut:3s; +dévissez dévisser ver 1.34 4.59 0.04 0.07 imp:pre:2p;ind:pre:2p; +dévissé dévisser ver m s 1.34 4.59 0.22 0.34 par:pas; +dévissée dévisser ver f s 1.34 4.59 0.18 0.14 par:pas; +dévissées dévisser ver f p 1.34 4.59 0 0.14 par:pas; +dévissés dévisser ver m p 1.34 4.59 0 0.2 par:pas; +dévitalisation dévitalisation nom f s 0.01 0.07 0.01 0.07 +dévitaliser dévitaliser ver 0.11 0 0.05 0 inf; +dévitalisé dévitaliser ver m s 0.11 0 0.05 0 par:pas; +dévié dévier ver m s 3.04 5.14 0.96 0.88 par:pas; +déviée dévier ver f s 3.04 5.14 0.2 0.27 par:pas; +déviés dévier ver m p 3.04 5.14 0.17 0.14 par:pas; +dévoie dévoyer ver 0.38 0.88 0.1 0.07 ind:pre:3s; +dévoiement dévoiement nom m s 0 0.14 0 0.14 +dévoila dévoiler ver 8.78 12.97 0.04 0.61 ind:pas:3s; +dévoilai dévoiler ver 8.78 12.97 0 0.07 ind:pas:1s; +dévoilaient dévoiler ver 8.78 12.97 0 0.41 ind:imp:3p; +dévoilais dévoiler ver 8.78 12.97 0.12 0.07 ind:imp:1s;ind:imp:2s; +dévoilait dévoiler ver 8.78 12.97 0.06 1.22 ind:imp:3s; +dévoilant dévoiler ver 8.78 12.97 0.25 1.42 par:pre; +dévoile dévoiler ver 8.78 12.97 0.99 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévoilement dévoilement nom m s 0.06 0.47 0.06 0.41 +dévoilements dévoilement nom m p 0.06 0.47 0 0.07 +dévoilent dévoiler ver 8.78 12.97 0.14 0.41 ind:pre:3p; +dévoiler dévoiler ver 8.78 12.97 3.8 3.78 inf; +dévoilera dévoiler ver 8.78 12.97 0.18 0.07 ind:fut:3s; +dévoilerai dévoiler ver 8.78 12.97 0.3 0.07 ind:fut:1s; +dévoilerais dévoiler ver 8.78 12.97 0.01 0 cnd:pre:1s; +dévoilerait dévoiler ver 8.78 12.97 0.11 0.07 cnd:pre:3s; +dévoilerez dévoiler ver 8.78 12.97 0.02 0 ind:fut:2p; +dévoileront dévoiler ver 8.78 12.97 0.04 0 ind:fut:3p; +dévoiles dévoiler ver 8.78 12.97 0.07 0 ind:pre:2s; +dévoilez dévoiler ver 8.78 12.97 0.29 0 imp:pre:2p; +dévoilons dévoiler ver 8.78 12.97 0.3 0 imp:pre:1p;ind:pre:1p; +dévoilé dévoiler ver m s 8.78 12.97 1.55 1.82 par:pas; +dévoilée dévoiler ver f s 8.78 12.97 0.16 0.74 par:pas; +dévoilées dévoiler ver f p 8.78 12.97 0.18 0.2 par:pas; +dévoilés dévoiler ver m p 8.78 12.97 0.16 0.2 par:pas; +dévolu dévolu nom m s 0.17 0.74 0.16 0.74 +dévolue dévolu adj f s 0.07 1.89 0.03 0.54 +dévolues dévolu adj f p 0.07 1.89 0 0.2 +dévolus dévolu adj m p 0.07 1.89 0.01 0.61 +dévolution dévolution nom f s 0 0.07 0 0.07 +dévonien dévonien nom m s 0.01 0 0.01 0 +dévonienne dévonien adj f s 0.04 0 0.04 0 +dévora dévorer ver 19.7 37.64 0.19 0.88 ind:pas:3s; +dévorai dévorer ver 19.7 37.64 0.14 0.41 ind:pas:1s; +dévoraient dévorer ver 19.7 37.64 0.29 1.96 ind:imp:3p; +dévorais dévorer ver 19.7 37.64 0.13 1.01 ind:imp:1s;ind:imp:2s; +dévorait dévorer ver 19.7 37.64 0.38 4.32 ind:imp:3s; +dévorant dévorer ver 19.7 37.64 0.67 2.7 par:pre; +dévorante dévorant adj f s 0.94 3.24 0.45 1.89 +dévorantes dévorant adj f p 0.94 3.24 0.01 0.2 +dévorants dévorant adj m p 0.94 3.24 0.1 0.34 +dévorateur dévorateur adj m s 0 0.34 0 0.14 +dévorateurs dévorateur adj m p 0 0.34 0 0.14 +dévoration dévoration nom f s 0 0.07 0 0.07 +dévoratrice dévorateur adj f s 0 0.34 0 0.07 +dévore dévorer ver 19.7 37.64 4.48 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévorent dévorer ver 19.7 37.64 1.81 1.62 ind:pre:3p; +dévorer dévorer ver 19.7 37.64 4.08 7.7 inf;; +dévorera dévorer ver 19.7 37.64 0.71 0.14 ind:fut:3s; +dévorerai dévorer ver 19.7 37.64 0.16 0.14 ind:fut:1s; +dévoreraient dévorer ver 19.7 37.64 0.02 0.07 cnd:pre:3p; +dévorerais dévorer ver 19.7 37.64 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +dévorerait dévorer ver 19.7 37.64 0.19 0.34 cnd:pre:3s; +dévorerez dévorer ver 19.7 37.64 0.02 0 ind:fut:2p; +dévoreront dévorer ver 19.7 37.64 0.12 0.14 ind:fut:3p; +dévores dévorer ver 19.7 37.64 0.14 0.07 ind:pre:2s;sub:pre:2s; +dévoreur dévoreur nom m s 0.5 1.08 0.16 0.41 +dévoreurs dévoreur nom m p 0.5 1.08 0.01 0.27 +dévoreuse dévoreur nom f s 0.5 1.08 0.31 0.34 +dévoreuses dévoreur nom f p 0.5 1.08 0.01 0.07 +dévorez dévorer ver 19.7 37.64 0.17 0 imp:pre:2p;ind:pre:2p; +dévorions dévorer ver 19.7 37.64 0 0.2 ind:imp:1p; +dévorons dévorer ver 19.7 37.64 0.02 0.14 imp:pre:1p;ind:pre:1p; +dévorèrent dévorer ver 19.7 37.64 0 0.47 ind:pas:3p; +dévoré dévorer ver m s 19.7 37.64 4.25 5.2 par:pas; +dévorée dévorer ver f s 19.7 37.64 0.76 2.43 par:pas; +dévorées dévorer ver f p 19.7 37.64 0.05 0.61 par:pas; +dévorés dévorer ver m p 19.7 37.64 0.92 2.16 par:pas; +dévot dévot nom m s 0.89 2.03 0.48 0.41 +dévote dévot adj f s 0.56 1.96 0.06 0.88 +dévotement dévotement adv 0 0.47 0 0.47 +dévotes dévot adj f p 0.56 1.96 0.1 0.27 +dévotieusement dévotieusement adv 0 0.14 0 0.14 +dévotion dévotion nom f s 2.34 8.11 2.26 7.03 +dévotionnelle dévotionnel adj f s 0.01 0 0.01 0 +dévotions dévotion nom f p 2.34 8.11 0.08 1.08 +dévots dévot nom m p 0.89 2.03 0.36 1.08 +dévoua dévouer ver 4.71 5.81 0 0.47 ind:pas:3s; +dévouaient dévouer ver 4.71 5.81 0 0.07 ind:imp:3p; +dévouait dévouer ver 4.71 5.81 0 0.27 ind:imp:3s; +dévouant dévouer ver 4.71 5.81 0.01 0 par:pre; +dévoue dévouer ver 4.71 5.81 0.52 0.47 ind:pre:1s;ind:pre:3s; +dévouement dévouement nom m s 4.03 9.32 4.03 8.51 +dévouements dévouement nom m p 4.03 9.32 0 0.81 +dévouent dévouer ver 4.71 5.81 0.05 0.27 ind:pre:3p; +dévouer dévouer ver 4.71 5.81 0.38 1.55 inf; +dévouera dévouer ver 4.71 5.81 0.02 0.07 ind:fut:3s; +dévouerais dévouer ver 4.71 5.81 0.01 0 cnd:pre:2s; +dévoues dévouer ver 4.71 5.81 0.04 0.07 ind:pre:2s; +dévouez dévouer ver 4.71 5.81 0.14 0 imp:pre:2p; +dévouât dévouer ver 4.71 5.81 0 0.07 sub:imp:3s; +dévoué dévoué adj m s 4.79 6.08 2.6 1.69 +dévouée dévoué adj f s 4.79 6.08 1.28 1.08 +dévouées dévoué adj f p 4.79 6.08 0.06 0.61 +dévoués dévoué adj m p 4.79 6.08 0.85 2.7 +dévoyait dévoyer ver 0.38 0.88 0 0.14 ind:imp:3s; +dévoyer dévoyer ver 0.38 0.88 0.12 0.41 inf; +dévoyez dévoyer ver 0.38 0.88 0.01 0 ind:pre:2p; +dévoyé dévoyé adj m s 0.22 0.68 0.18 0.54 +dévoyée dévoyer ver f s 0.38 0.88 0.1 0 par:pas; +dévoyées dévoyé adj f p 0.22 0.68 0 0.07 +dévoyés dévoyé adj m p 0.22 0.68 0.03 0 +dévêt dévêtir ver 1.28 5.95 0 0.2 ind:pre:3s; +dévêtaient dévêtir ver 1.28 5.95 0 0.14 ind:imp:3p; +dévêtait dévêtir ver 1.28 5.95 0.01 0.34 ind:imp:3s; +dévêtant dévêtir ver 1.28 5.95 0.02 0.27 par:pre; +dévêtez dévêtir ver 1.28 5.95 0 0.14 imp:pre:2p; +dévêtir dévêtir ver 1.28 5.95 0.47 1.89 inf; +dévêtit dévêtir ver 1.28 5.95 0.01 0.68 ind:pas:3s; +dévêtu dévêtir ver m s 1.28 5.95 0.32 0.74 par:pas; +dévêtue dévêtir ver f s 1.28 5.95 0.34 0.74 par:pas; +dévêtues dévêtir ver f p 1.28 5.95 0.07 0.34 par:pas; +dévêtus dévêtir ver m p 1.28 5.95 0.04 0.47 par:pas; +dézingue dézinguer ver 0.35 0 0.17 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dézinguer dézinguer ver 0.35 0 0.16 0 inf; +dézingués dézinguer ver m p 0.35 0 0.02 0 par:pas; +déçois décevoir ver 33.23 21.69 3.45 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +déçoit décevoir ver 33.23 21.69 1.18 0.34 ind:pre:3s; +déçoive décevoir ver 33.23 21.69 0.03 0.14 sub:pre:1s;sub:pre:3s; +déçoivent décevoir ver 33.23 21.69 0.34 0.2 ind:pre:3p; +déçoives décevoir ver 33.23 21.69 0.02 0 sub:pre:2s; +déçu décevoir ver m s 33.23 21.69 10.09 9.12 par:pas; +déçue décevoir ver f s 33.23 21.69 4.37 3.38 par:pas; +déçues décevoir ver f p 33.23 21.69 0.18 0.2 par:pas; +déçurent décevoir ver 33.23 21.69 0 0.14 ind:pas:3p; +déçus décevoir ver m p 33.23 21.69 2.12 1.15 ind:pas:1s;par:pas;par:pas; +déçut décevoir ver 33.23 21.69 0.01 0.81 ind:pas:3s; +déçûmes décevoir ver 33.23 21.69 0 0.07 ind:pas:1p; +dîme dîme nom f s 0.44 1.28 0.43 1.22 +dîmes dîme nom f p 0.44 1.28 0.01 0.07 +dîna dîner ver 79.3 59.66 0.1 1.08 ind:pas:3s; +dînai dîner ver 79.3 59.66 0 0.68 ind:pas:1s; +dînaient dîner ver 79.3 59.66 0.05 1.55 ind:imp:3p; +dînais dîner ver 79.3 59.66 0.31 0.95 ind:imp:1s;ind:imp:2s; +dînait dîner ver 79.3 59.66 0.88 3.24 ind:imp:3s; +dînant dîner ver 79.3 59.66 0.33 1.15 par:pre; +dînatoire dînatoire adj s 0.29 0.14 0.29 0 +dînatoires dînatoire adj f p 0.29 0.14 0 0.14 +dîne dîner ver 79.3 59.66 8.22 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dînent dîner ver 79.3 59.66 0.47 0.47 ind:pre:3p; +dîner dîner nom m s 88.45 68.58 84.73 60 +dînera dîner ver 79.3 59.66 1.36 0.54 ind:fut:3s; +dînerai dîner ver 79.3 59.66 0.22 0.14 ind:fut:1s; +dîneraient dîner ver 79.3 59.66 0 0.27 cnd:pre:3p; +dînerais dîner ver 79.3 59.66 0.26 0.07 cnd:pre:1s;cnd:pre:2s; +dînerait dîner ver 79.3 59.66 0.14 0.2 cnd:pre:3s; +dîneras dîner ver 79.3 59.66 0.22 0.07 ind:fut:2s; +dînerez dîner ver 79.3 59.66 0.55 0.27 ind:fut:2p; +dîneriez dîner ver 79.3 59.66 0.2 0 cnd:pre:2p; +dînerions dîner ver 79.3 59.66 0 0.14 cnd:pre:1p; +dînerons dîner ver 79.3 59.66 0.59 0.47 ind:fut:1p; +dîneront dîner ver 79.3 59.66 0.05 0 ind:fut:3p; +dîners dîner nom m p 88.45 68.58 3.72 8.58 +dînes dîner ver 79.3 59.66 1.42 0.14 ind:pre:2s; +dînette dînette nom f s 0.59 1.55 0.49 1.35 +dînettes dînette nom f p 0.59 1.55 0.1 0.2 +dîneur dîneur nom m s 0.01 2.57 0.01 0.14 +dîneurs dîneur nom m p 0.01 2.57 0 2.23 +dîneuse dîneur nom f s 0.01 2.57 0 0.2 +dînez dîner ver 79.3 59.66 2.13 0.27 imp:pre:2p;ind:pre:2p; +dîniez dîner ver 79.3 59.66 0.2 0 ind:imp:2p; +dînions dîner ver 79.3 59.66 0.26 1.69 ind:imp:1p; +dînons dîner ver 79.3 59.66 1.95 1.89 imp:pre:1p;ind:pre:1p; +dînâmes dîner ver 79.3 59.66 0.01 0.34 ind:pas:1p; +dînât dîner ver 79.3 59.66 0 0.07 sub:imp:3s; +dînèrent dîner ver 79.3 59.66 0.04 1.22 ind:pas:3p; +dîné dîner ver m s 79.3 59.66 7.54 6.15 par:pas; +dît dire ver_sup 5946.15 4832.5 0.34 1.22 sub:imp:3s; +dîtes dire ver_sup 5946.15 4832.5 10.24 0.07 ind:pas:2p; +dôle dôle nom m s 0.01 0 0.01 0 +dôme dôme nom m s 1.93 4.93 1.81 3.78 +dômes dôme nom m p 1.93 4.93 0.12 1.15 +dôngs dông nom m p 0.14 0 0.14 0 +dû devoir ver_sup m s 3232.57 1318.18 363.68 243.65 par:pas; +dûment dûment adv 0.55 4.32 0.55 4.32 +dûmes devoir ver_sup 3232.57 1318.18 0.04 1.55 ind:pas:1p; +dût devoir ver_sup 3232.57 1318.18 0.65 4.19 sub:imp:3s; +e e nom_sup m 60.91 28.99 60.91 28.99 +e_commerce e_commerce nom m s 0.03 0 0.03 0 +e_mail e_mail nom m s 6.47 0 4.16 0 +e_mail e_mail nom m p 6.47 0 2.32 0 +east_river east_river nom f s 0 0.07 0 0.07 +eau eau nom f s 305.74 459.86 290.61 417.84 +eau_de_vie eau_de_vie nom f s 3.17 4.73 3.05 4.73 +eau_forte eau_forte nom f s 0.3 0.27 0.3 0.27 +eau_minute eau_minute nom f s 0.01 0 0.01 0 +eaux eau nom f p 305.74 459.86 15.14 42.03 +eau_de_vie eau_de_vie nom f p 3.17 4.73 0.12 0 +eaux_fortes eaux_fortes nom f p 0 0.14 0 0.14 +ecce_homo ecce_homo adv 0.2 0.2 0.2 0.2 +ecchymose ecchymose nom f s 0.91 1.22 0.23 0.34 +ecchymoses ecchymose nom f p 0.91 1.22 0.67 0.88 +ecchymosé ecchymosé adj m s 0.01 0.07 0.01 0 +ecchymosée ecchymosé adj f s 0.01 0.07 0 0.07 +ecclésiale ecclésial adj f s 0 0.2 0 0.2 +ecclésiastique ecclésiastique adj s 0.48 2.91 0.35 1.89 +ecclésiastiques ecclésiastique adj p 0.48 2.91 0.12 1.01 +ecsta ecsta adv 0.01 0 0.01 0 +ecstasy ecstasy nom m s 3.85 0 3.85 0 +ectasie ectasie nom f s 0.01 0 0.01 0 +ecthyma ecthyma nom m s 0 0.07 0 0.07 +ectodermique ectodermique adj f s 0.01 0 0.01 0 +ectopie ectopie nom f s 0.04 0 0.04 0 +ectopique ectopique adj f s 0.04 0 0.04 0 +ectoplasme ectoplasme nom m s 0.71 0.95 0.6 0.47 +ectoplasmes ectoplasme nom m p 0.71 0.95 0.11 0.47 +ectoplasmique ectoplasmique adj s 0.05 0.34 0.03 0.2 +ectoplasmiques ectoplasmique adj f p 0.05 0.34 0.02 0.14 +eczéma eczéma nom m s 0.64 1.55 0.64 1.42 +eczémas eczéma nom m p 0.64 1.55 0 0.14 +eczémateuses eczémateux adj f p 0.01 0.14 0.01 0.07 +eczémateux eczémateux nom m 0.01 0.07 0.01 0.07 +edelweiss edelweiss nom m 0 0.54 0 0.54 +edwardienne edwardien adj f s 0 0.07 0 0.07 +efface effacer ver 29.02 70.34 6.19 11.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effacement effacement nom m s 0.36 2.77 0.36 2.7 +effacements effacement nom m p 0.36 2.77 0 0.07 +effacent effacer ver 29.02 70.34 1 3.58 ind:pre:3p; +effacer effacer ver 29.02 70.34 10.05 18.31 inf; +effacera effacer ver 29.02 70.34 0.73 0.88 ind:fut:3s; +effacerai effacer ver 29.02 70.34 0.23 0.14 ind:fut:1s; +effaceraient effacer ver 29.02 70.34 0.02 0 cnd:pre:3p; +effacerais effacer ver 29.02 70.34 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +effacerait effacer ver 29.02 70.34 0.21 0.74 cnd:pre:3s; +effaceras effacer ver 29.02 70.34 0.03 0.2 ind:fut:2s; +effacerez effacer ver 29.02 70.34 0.03 0 ind:fut:2p; +effacerions effacer ver 29.02 70.34 0.01 0 cnd:pre:1p; +effacerons effacer ver 29.02 70.34 0.13 0 ind:fut:1p; +effaceront effacer ver 29.02 70.34 0.15 0.27 ind:fut:3p; +effaces effacer ver 29.02 70.34 0.47 0.07 ind:pre:2s; +effaceur effaceur nom m s 0.1 0 0.1 0 +effacez effacer ver 29.02 70.34 0.89 0.2 imp:pre:2p;ind:pre:2p; +effaciez effacer ver 29.02 70.34 0.05 0 ind:imp:2p; +effacions effacer ver 29.02 70.34 0.01 0.07 ind:imp:1p; +effacèrent effacer ver 29.02 70.34 0 1.01 ind:pas:3p; +effacé effacer ver m s 29.02 70.34 5.24 6.96 par:pas; +effacée effacer ver f s 29.02 70.34 1.51 3.31 par:pas; +effacées effacer ver f p 29.02 70.34 0.5 1.96 par:pas; +effacés effacer ver m p 29.02 70.34 0.68 1.69 par:pas; +effara effarer ver 0.11 1.96 0 0.07 ind:pas:3s; +effaraient effarer ver 0.11 1.96 0 0.07 ind:imp:3p; +effarait effarer ver 0.11 1.96 0 0.14 ind:imp:3s; +effarant effarant adj m s 1.08 2.57 0.81 0.81 +effarante effarant adj f s 1.08 2.57 0.22 1.28 +effarantes effarant adj f p 1.08 2.57 0 0.34 +effarants effarant adj m p 1.08 2.57 0.05 0.14 +effare effarer ver 0.11 1.96 0.01 0.2 ind:pre:1s;ind:pre:3s; +effarement effarement nom m s 0 1.82 0 1.82 +effarer effarer ver 0.11 1.96 0.02 0 inf; +effaroucha effaroucher ver 0.63 5.2 0 0.07 ind:pas:3s; +effarouchaient effaroucher ver 0.63 5.2 0 0.2 ind:imp:3p; +effarouchait effaroucher ver 0.63 5.2 0 0.68 ind:imp:3s; +effarouchant effaroucher ver 0.63 5.2 0 0.2 par:pre; +effarouche effaroucher ver 0.63 5.2 0.29 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effarouchement effarouchement nom m s 0 0.2 0 0.07 +effarouchements effarouchement nom m p 0 0.2 0 0.14 +effarouchent effaroucher ver 0.63 5.2 0.3 0.2 ind:pre:3p; +effaroucher effaroucher ver 0.63 5.2 0.02 1.96 inf; +effarouches effaroucher ver 0.63 5.2 0 0.07 ind:pre:2s; +effarouchâmes effaroucher ver 0.63 5.2 0 0.14 ind:pas:1p; +effarouchât effaroucher ver 0.63 5.2 0 0.2 sub:imp:3s; +effarouché effarouché adj m s 0.81 2.5 0.06 0.74 +effarouchée effarouché adj f s 0.81 2.5 0.72 0.34 +effarouchées effarouché adj f p 0.81 2.5 0.01 0.68 +effarouchés effarouché adj m p 0.81 2.5 0.03 0.74 +effarvatte effarvatte nom f s 0 0.14 0 0.07 +effarvattes effarvatte nom f p 0 0.14 0 0.07 +effarèrent effarer ver 0.11 1.96 0 0.07 ind:pas:3p; +effaré effarer ver m s 0.11 1.96 0.05 0.54 par:pas; +effarée effaré adj f s 0.13 3.45 0.1 0.88 +effarées effaré adj f p 0.13 3.45 0 0.14 +effarés effarer ver m p 0.11 1.96 0.02 0.27 par:pas; +effaça effacer ver 29.02 70.34 0.02 5.27 ind:pas:3s; +effaçable effaçable adj s 0.01 0.07 0.01 0 +effaçables effaçable adj p 0.01 0.07 0 0.07 +effaçage effaçage nom m s 0.01 0 0.01 0 +effaçai effacer ver 29.02 70.34 0 0.14 ind:pas:1s; +effaçaient effacer ver 29.02 70.34 0.06 2.5 ind:imp:3p; +effaçais effacer ver 29.02 70.34 0.02 0.34 ind:imp:1s;ind:imp:2s; +effaçait effacer ver 29.02 70.34 0.2 7.43 ind:imp:3s; +effaçant effacer ver 29.02 70.34 0.27 2.97 par:pre; +effaçassent effacer ver 29.02 70.34 0 0.07 sub:imp:3p; +effaçons effacer ver 29.02 70.34 0.25 0.07 imp:pre:1p;ind:pre:1p; +effaçât effacer ver 29.02 70.34 0 0.41 sub:imp:3s; +effectif effectif nom m s 2.63 7.64 0.62 2.23 +effectifs effectif nom m p 2.63 7.64 2.02 5.41 +effective effectif adj f s 0.57 2.77 0.2 1.22 +effectivement effectivement adv 13.57 16.28 13.57 16.28 +effectives effectif adj f p 0.57 2.77 0.01 0.14 +effectivité effectivité nom f s 0 0.07 0 0.07 +effectua effectuer ver 10.53 15.2 0.02 1.01 ind:pas:3s; +effectuai effectuer ver 10.53 15.2 0 0.27 ind:pas:1s; +effectuaient effectuer ver 10.53 15.2 0.02 0.95 ind:imp:3p; +effectuais effectuer ver 10.53 15.2 0.08 0 ind:imp:1s; +effectuait effectuer ver 10.53 15.2 0.11 1.35 ind:imp:3s; +effectuant effectuer ver 10.53 15.2 0.13 0.81 par:pre; +effectue effectuer ver 10.53 15.2 0.9 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effectuent effectuer ver 10.53 15.2 0.04 0.07 ind:pre:3p; +effectuer effectuer ver 10.53 15.2 2.84 4.59 inf; +effectuera effectuer ver 10.53 15.2 0.23 0.07 ind:fut:3s; +effectuerai effectuer ver 10.53 15.2 0.05 0 ind:fut:1s; +effectuerait effectuer ver 10.53 15.2 0 0.2 cnd:pre:3s; +effectuerons effectuer ver 10.53 15.2 0.15 0 ind:fut:1p; +effectues effectuer ver 10.53 15.2 0.02 0.07 ind:pre:2s; +effectuez effectuer ver 10.53 15.2 0.23 0 imp:pre:2p;ind:pre:2p; +effectuions effectuer ver 10.53 15.2 0.01 0.07 ind:imp:1p; +effectuons effectuer ver 10.53 15.2 0.52 0 imp:pre:1p;ind:pre:1p; +effectué effectuer ver m s 10.53 15.2 3.43 2.3 par:pas; +effectuée effectuer ver f s 10.53 15.2 0.95 1.08 par:pas; +effectuées effectuer ver f p 10.53 15.2 0.32 0.81 par:pas; +effectués effectuer ver m p 10.53 15.2 0.46 0.61 par:pas; +effendi effendi nom m s 0.19 1.62 0.19 1.62 +effervescence effervescence nom f s 0.4 3.85 0.4 3.78 +effervescences effervescence nom f p 0.4 3.85 0 0.07 +effervescent effervescent adj m s 0.09 0.88 0.04 0.34 +effervescente effervescent adj f s 0.09 0.88 0.04 0.2 +effervescentes effervescent adj f p 0.09 0.88 0 0.14 +effervescents effervescent adj m p 0.09 0.88 0.01 0.2 +effet effet nom m s 116.75 192.36 99.17 173.18 +effets effet nom m p 116.75 192.36 17.58 19.19 +effeuilla effeuiller ver 0.17 1.89 0 0.07 ind:pas:3s; +effeuillage effeuillage nom m s 0.08 0.07 0.08 0.07 +effeuillaient effeuiller ver 0.17 1.89 0 0.14 ind:imp:3p; +effeuillait effeuiller ver 0.17 1.89 0 0.27 ind:imp:3s; +effeuillant effeuiller ver 0.17 1.89 0.01 0 par:pre; +effeuille effeuiller ver 0.17 1.89 0 0.47 ind:pre:1s;ind:pre:3s; +effeuillent effeuiller ver 0.17 1.89 0 0.07 ind:pre:3p; +effeuiller effeuiller ver 0.17 1.89 0.12 0.41 inf; +effeuilleras effeuiller ver 0.17 1.89 0 0.07 ind:fut:2s; +effeuilleuse effeuilleur nom f s 0.17 0.2 0.11 0.14 +effeuilleuses effeuilleur nom f p 0.17 0.2 0.06 0.07 +effeuillez effeuiller ver 0.17 1.89 0.01 0 imp:pre:2p; +effeuillèrent effeuiller ver 0.17 1.89 0 0.07 ind:pas:3p; +effeuillé effeuiller ver m s 0.17 1.89 0.01 0.07 par:pas; +effeuillée effeuiller ver f s 0.17 1.89 0.01 0.2 par:pas; +effeuillés effeuiller ver m p 0.17 1.89 0.01 0.07 par:pas; +efficace efficace adj s 14.54 15.27 12.19 12.23 +efficacement efficacement adv 0.67 2.23 0.67 2.23 +efficaces efficace adj p 14.54 15.27 2.35 3.04 +efficacité efficacité nom f s 3.36 8.51 3.36 8.51 +efficience efficience nom f s 0.01 0.34 0.01 0.34 +efficient efficient adj m s 0.14 0.41 0 0.2 +efficiente efficient adj f s 0.14 0.41 0.14 0.07 +efficientes efficient adj f p 0.14 0.41 0 0.07 +efficients efficient adj m p 0.14 0.41 0 0.07 +effigie effigie nom f s 1.6 4.19 1.52 3.38 +effigies effigie nom f p 1.6 4.19 0.07 0.81 +effila effiler ver 0.07 2.43 0 0.07 ind:pas:3s; +effilaient effiler ver 0.07 2.43 0 0.07 ind:imp:3p; +effilait effiler ver 0.07 2.43 0 0.14 ind:imp:3s; +effilant effiler ver 0.07 2.43 0 0.2 par:pre; +effile effiler ver 0.07 2.43 0 0.2 ind:pre:3s; +effilement effilement nom m s 0 0.07 0 0.07 +effilent effiler ver 0.07 2.43 0.01 0.07 ind:pre:3p; +effiler effiler ver 0.07 2.43 0.03 0.27 inf; +effilochage effilochage nom m s 0 0.07 0 0.07 +effilochaient effilocher ver 0.2 6.35 0 0.47 ind:imp:3p; +effilochait effilocher ver 0.2 6.35 0.01 0.88 ind:imp:3s; +effilochant effilocher ver 0.2 6.35 0 0.27 par:pre; +effiloche effilocher ver 0.2 6.35 0.05 0.95 ind:pre:3s; +effilochent effilocher ver 0.2 6.35 0 0.34 ind:pre:3p; +effilocher effilocher ver 0.2 6.35 0 0.47 inf; +effilochera effilocher ver 0.2 6.35 0.01 0.07 ind:fut:3s; +effilochure effilochure nom f s 0 0.47 0 0.2 +effilochures effilochure nom f p 0 0.47 0 0.27 +effilochèrent effilocher ver 0.2 6.35 0 0.07 ind:pas:3p; +effiloché effilocher ver m s 0.2 6.35 0.11 0.81 par:pas; +effilochée effilocher ver f s 0.2 6.35 0.02 0.88 par:pas; +effilochées effilocher ver f p 0.2 6.35 0 0.47 par:pas; +effilochés effilocher ver m p 0.2 6.35 0 0.68 par:pas; +effilure effilure nom f s 0 0.14 0 0.07 +effilures effilure nom f p 0 0.14 0 0.07 +effilé effilé adj m s 0.08 4.46 0.06 1.08 +effilée effiler ver f s 0.07 2.43 0.01 0.68 par:pas; +effilées effiler ver f p 0.07 2.43 0.02 0.41 par:pas; +effilés effilé adj m p 0.08 4.46 0.01 1.35 +efflanqué efflanqué adj m s 0.14 3.92 0.14 2.3 +efflanquée efflanqué adj f s 0.14 3.92 0 0.61 +efflanquées efflanqué adj f p 0.14 3.92 0 0.47 +efflanqués efflanquer ver m p 0.01 1.28 0.01 0.27 par:pas; +effleura effleurer ver 3.23 25.68 0.01 4.93 ind:pas:3s; +effleurage effleurage nom m s 0 0.07 0 0.07 +effleurai effleurer ver 3.23 25.68 0 0.14 ind:pas:1s; +effleuraient effleurer ver 3.23 25.68 0 0.88 ind:imp:3p; +effleurais effleurer ver 3.23 25.68 0 0.2 ind:imp:1s; +effleurait effleurer ver 3.23 25.68 0.1 2.77 ind:imp:3s; +effleurant effleurer ver 3.23 25.68 0.12 1.49 par:pre; +effleure effleurer ver 3.23 25.68 0.54 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effleurement effleurement nom m s 0.07 1.22 0.03 0.81 +effleurements effleurement nom m p 0.07 1.22 0.04 0.41 +effleurent effleurer ver 3.23 25.68 0.05 0.74 ind:pre:3p; +effleurer effleurer ver 3.23 25.68 0.62 4.59 inf; +effleurera effleurer ver 3.23 25.68 0 0.14 ind:fut:3s; +effleurerait effleurer ver 3.23 25.68 0.01 0.2 cnd:pre:3s; +effleureront effleurer ver 3.23 25.68 0 0.07 ind:fut:3p; +effleures effleurer ver 3.23 25.68 0.03 0.07 ind:pre:2s; +effleurez effleurer ver 3.23 25.68 0.04 0.07 imp:pre:2p;ind:pre:2p; +effleurâmes effleurer ver 3.23 25.68 0 0.14 ind:pas:1p; +effleurât effleurer ver 3.23 25.68 0 0.07 sub:imp:3s; +effleurèrent effleurer ver 3.23 25.68 0 0.34 ind:pas:3p; +effleuré effleurer ver m s 3.23 25.68 1.27 3.18 par:pas; +effleurée effleurer ver f s 3.23 25.68 0.41 1.49 par:pas; +effleurées effleurer ver f p 3.23 25.68 0 0.2 par:pas; +effleurés effleurer ver m p 3.23 25.68 0.04 0.2 par:pas; +efflorescence efflorescence nom f s 0.01 0.27 0.01 0.27 +effluent effluent nom m s 0.01 0 0.01 0 +effluve effluve nom m s 0.09 6.49 0.02 0.61 +effluves effluve nom m p 0.09 6.49 0.06 5.88 +effondra effondrer ver 13.24 25.74 0.24 3.72 ind:pas:3s; +effondrai effondrer ver 13.24 25.74 0.02 0.34 ind:pas:1s; +effondraient effondrer ver 13.24 25.74 0.01 0.81 ind:imp:3p; +effondrais effondrer ver 13.24 25.74 0 0.14 ind:imp:1s; +effondrait effondrer ver 13.24 25.74 0.15 2.5 ind:imp:3s; +effondrant effondrer ver 13.24 25.74 0.04 0.34 par:pre; +effondre effondrer ver 13.24 25.74 3.19 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effondrement effondrement nom m s 1.83 6.82 1.82 6.28 +effondrements effondrement nom m p 1.83 6.82 0.01 0.54 +effondrent effondrer ver 13.24 25.74 0.41 1.15 ind:pre:3p; +effondrer effondrer ver 13.24 25.74 3.22 5.34 inf; +effondrera effondrer ver 13.24 25.74 0.51 0.34 ind:fut:3s; +effondreraient effondrer ver 13.24 25.74 0.04 0 cnd:pre:3p; +effondrerais effondrer ver 13.24 25.74 0.05 0.07 cnd:pre:1s; +effondrerait effondrer ver 13.24 25.74 0.36 0.27 cnd:pre:3s; +effondreront effondrer ver 13.24 25.74 0.11 0 ind:fut:3p; +effondrez effondrer ver 13.24 25.74 0.03 0 ind:pre:2p; +effondrât effondrer ver 13.24 25.74 0 0.14 sub:imp:3s; +effondrèrent effondrer ver 13.24 25.74 0 0.54 ind:pas:3p; +effondré effondrer ver m s 13.24 25.74 2.75 3.24 par:pas; +effondrée effondrer ver f s 13.24 25.74 1.87 2.16 par:pas; +effondrées effondrer ver f p 13.24 25.74 0.05 0.2 par:pas; +effondrés effondrer ver m p 13.24 25.74 0.17 0.61 par:pas; +efforce efforcer ver 6.14 54.19 2.09 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +efforcent efforcer ver 6.14 54.19 0.38 2.16 ind:pre:3p; +efforcer efforcer ver 6.14 54.19 0.86 2.57 inf; +efforcera efforcer ver 6.14 54.19 0.04 0.2 ind:fut:3s; +efforcerai efforcer ver 6.14 54.19 0.4 0.27 ind:fut:1s; +efforceraient efforcer ver 6.14 54.19 0 0.14 cnd:pre:3p; +efforcerais efforcer ver 6.14 54.19 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +efforcerait efforcer ver 6.14 54.19 0.01 0.14 cnd:pre:3s; +efforcerons efforcer ver 6.14 54.19 0.12 0.07 ind:fut:1p; +efforces efforcer ver 6.14 54.19 0.11 0.27 ind:pre:2s; +efforcez efforcer ver 6.14 54.19 0.31 0 imp:pre:2p;ind:pre:2p; +efforcions efforcer ver 6.14 54.19 0 0.81 ind:imp:1p; +efforcèrent efforcer ver 6.14 54.19 0 0.2 ind:pas:3p; +efforcé efforcer ver m s 6.14 54.19 0.46 2.03 par:pas; +efforcée efforcer ver f s 6.14 54.19 0.14 0.81 par:pas; +efforcés efforcer ver m p 6.14 54.19 0.12 0.41 par:pas; +effort effort nom m s 42.7 136.62 23.26 98.18 +efforts effort nom m p 42.7 136.62 19.44 38.45 +efforça efforcer ver 6.14 54.19 0.02 5.61 ind:pas:3s; +efforçai efforcer ver 6.14 54.19 0.01 0.95 ind:pas:1s; +efforçaient efforcer ver 6.14 54.19 0.04 4.05 ind:imp:3p; +efforçais efforcer ver 6.14 54.19 0.08 2.5 ind:imp:1s; +efforçait efforcer ver 6.14 54.19 0.32 14.19 ind:imp:3s; +efforçant efforcer ver 6.14 54.19 0.24 7.64 par:pre; +efforçons efforcer ver 6.14 54.19 0.38 0.41 imp:pre:1p;ind:pre:1p; +efforçâmes efforcer ver 6.14 54.19 0 0.14 ind:pas:1p; +efforçât efforcer ver 6.14 54.19 0 0.47 sub:imp:3s; +effraction effraction nom f s 7.76 2.03 7.49 2.03 +effractions effraction nom f p 7.76 2.03 0.27 0 +effraie effrayer ver 37.04 29.86 7.65 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effraient effrayer ver 37.04 29.86 1.07 0.47 ind:pre:3p; +effraiera effrayer ver 37.04 29.86 0.07 0.07 ind:fut:3s; +effraieraient effrayer ver 37.04 29.86 0.01 0 cnd:pre:3p; +effraierait effrayer ver 37.04 29.86 0.36 0.2 cnd:pre:3s; +effraieras effrayer ver 37.04 29.86 0.04 0 ind:fut:2s; +effraierez effrayer ver 37.04 29.86 0.03 0 ind:fut:2p; +effraies effrayer ver 37.04 29.86 0.53 0.2 ind:pre:2s; +effrange effranger ver 0.01 1.96 0 0.07 ind:pre:3s; +effrangeait effranger ver 0.01 1.96 0 0.07 ind:imp:3s; +effrangent effranger ver 0.01 1.96 0 0.07 ind:pre:3p; +effrangé effranger ver m s 0.01 1.96 0.01 0.61 par:pas; +effrangée effranger ver f s 0.01 1.96 0 0.34 par:pas; +effrangées effranger ver f p 0.01 1.96 0 0.41 par:pas; +effrangés effranger ver m p 0.01 1.96 0 0.41 par:pas; +effraya effrayer ver 37.04 29.86 0 2.09 ind:pas:3s; +effrayaient effrayer ver 37.04 29.86 0.23 1.35 ind:imp:3p; +effrayais effrayer ver 37.04 29.86 0.04 0.2 ind:imp:1s; +effrayait effrayer ver 37.04 29.86 0.91 7.16 ind:imp:3s; +effrayamment effrayamment adv 0 0.2 0 0.2 +effrayant effrayant adj m s 14.69 19.19 10.07 8.99 +effrayante effrayant adj f s 14.69 19.19 2.86 7.16 +effrayantes effrayant adj f p 14.69 19.19 0.69 1.42 +effrayants effrayant adj m p 14.69 19.19 1.07 1.62 +effraye effrayer ver 37.04 29.86 1.1 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effrayent effrayer ver 37.04 29.86 0.25 0.2 ind:pre:3p; +effrayer effrayer ver 37.04 29.86 9.43 4.73 inf;; +effrayerais effrayer ver 37.04 29.86 0.03 0 cnd:pre:1s; +effrayerait effrayer ver 37.04 29.86 0.08 0 cnd:pre:3s; +effrayeras effrayer ver 37.04 29.86 0.01 0 ind:fut:2s; +effrayez effrayer ver 37.04 29.86 1.01 0.34 imp:pre:2p;ind:pre:2p; +effrayons effrayer ver 37.04 29.86 0.2 0.07 imp:pre:1p;ind:pre:1p; +effrayèrent effrayer ver 37.04 29.86 0.14 0 ind:pas:3p; +effrayé effrayer ver m s 37.04 29.86 6.36 3.99 par:pas; +effrayée effrayer ver f s 37.04 29.86 5 2.64 par:pas; +effrayées effrayé adj f p 6.78 9.46 0.27 0.2 +effrayés effrayer ver m p 37.04 29.86 1.57 1.42 par:pas; +effrita effriter ver 0.45 5.68 0.01 0.2 ind:pas:3s; +effritaient effriter ver 0.45 5.68 0.01 0.27 ind:imp:3p; +effritait effriter ver 0.45 5.68 0.1 0.54 ind:imp:3s; +effritant effriter ver 0.45 5.68 0 0.54 par:pre; +effrite effriter ver 0.45 5.68 0.23 1.55 ind:pre:1s;ind:pre:3s; +effritement effritement nom m s 0.01 0.47 0.01 0.41 +effritements effritement nom m p 0.01 0.47 0 0.07 +effritent effriter ver 0.45 5.68 0.04 0.68 ind:pre:3p; +effriter effriter ver 0.45 5.68 0.04 0.54 inf; +effriterait effriter ver 0.45 5.68 0 0.14 cnd:pre:3s; +effrité effriter ver m s 0.45 5.68 0.02 0.41 par:pas; +effritée effriter ver f s 0.45 5.68 0 0.27 par:pas; +effritées effriter ver f p 0.45 5.68 0 0.2 par:pas; +effrités effriter ver m p 0.45 5.68 0 0.34 par:pas; +effroi effroi nom m s 2.83 12.91 2.83 12.91 +effronterie effronterie nom f s 0.46 1.22 0.46 1.15 +effronteries effronterie nom f p 0.46 1.22 0 0.07 +effronté effronté nom m s 1.65 0.81 0.73 0.2 +effrontée effronté nom f s 1.65 0.81 0.79 0.47 +effrontées effronté adj f p 1.51 1.55 0.14 0.14 +effrontément effrontément adv 0.22 0.74 0.22 0.74 +effrontés effronté adj m p 1.51 1.55 0.04 0.47 +effroyable effroyable adj s 4.41 8.99 3.84 6.69 +effroyablement effroyablement adv 0.11 1.35 0.11 1.35 +effroyables effroyable adj p 4.41 8.99 0.57 2.3 +effréné effréné adj m s 0.5 3.11 0.36 1.28 +effrénée effréné adj f s 0.5 3.11 0.13 1.42 +effrénées effréné adj f p 0.5 3.11 0.01 0.34 +effrénés effréné adj m p 0.5 3.11 0 0.07 +effulgente effulgent adj f s 0.01 0.07 0.01 0.07 +effusion effusion nom f s 1.73 6.42 1.39 3.24 +effusionniste effusionniste adj s 0 0.14 0 0.07 +effusionnistes effusionniste adj m p 0 0.14 0 0.07 +effusions effusion nom f p 1.73 6.42 0.34 3.18 +efféminait efféminer ver 0.25 0.07 0 0.07 ind:imp:3s; +efféminé efféminé adj m s 0.81 0.68 0.49 0.2 +efféminée efféminé adj f s 0.81 0.68 0.04 0.14 +efféminés efféminé adj m p 0.81 0.68 0.28 0.34 +efrit efrit nom m s 0 0.07 0 0.07 +ego ego nom m 4.16 1.22 4.16 1.22 +eh eh ono 386 176.62 386 176.62 +eider eider nom m s 0 0.34 0 0.07 +eiders eider nom m p 0 0.34 0 0.27 +eidétique eidétique adj f s 0.02 0 0.02 0 +einsteinienne einsteinien adj f s 0.01 0.07 0.01 0.07 +ektachromes ektachrome nom m p 0 0.14 0 0.14 +eldorado eldorado nom m s 0.04 0 0.04 0 +elfe elfe nom m s 3.26 1.42 1.39 0.54 +elfes elfe nom m p 3.26 1.42 1.87 0.88 +elle elle pro_per f s 4520.53 6991.49 4520.53 6991.49 +elle_même elle_même pro_per f s 17.88 113.51 17.88 113.51 +elles elles pro_per f p 420.51 605.14 420.51 605.14 +elles_mêmes elles_mêmes pro_per f p 2.21 14.86 2.21 14.86 +ellipse ellipse nom f s 0.44 1.42 0.42 0.95 +ellipses ellipse nom f p 0.44 1.42 0.02 0.47 +ellipsoïde ellipsoïde adj s 0 0.07 0 0.07 +elliptique elliptique adj s 0.09 0.61 0.06 0.47 +elliptiques elliptique adj p 0.09 0.61 0.02 0.14 +ellébore ellébore nom m s 0.03 0.07 0.03 0.07 +elzévir elzévir nom m s 0 0.07 0 0.07 +emails email nom m p 0.65 0 0.65 0 +embabouiner embabouiner ver 0 0.07 0 0.07 inf; +emballa emballer ver 18.86 15.27 0 0.74 ind:pas:3s; +emballage emballage nom m s 4.6 6.08 3.23 4.39 +emballages emballage nom m p 4.6 6.08 1.37 1.69 +emballai emballer ver 18.86 15.27 0 0.14 ind:pas:1s; +emballaient emballer ver 18.86 15.27 0 0.2 ind:imp:3p; +emballais emballer ver 18.86 15.27 0.27 0.14 ind:imp:1s;ind:imp:2s; +emballait emballer ver 18.86 15.27 0.31 1.62 ind:imp:3s; +emballant emballer ver 18.86 15.27 0.1 0.34 par:pre; +emballe emballer ver 18.86 15.27 5.34 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emballement emballement nom m s 0.02 0.61 0.01 0.54 +emballements emballement nom m p 0.02 0.61 0.01 0.07 +emballent emballer ver 18.86 15.27 0.32 0.2 ind:pre:3p; +emballer emballer ver 18.86 15.27 3.74 4.66 inf; +emballera emballer ver 18.86 15.27 0.18 0.07 ind:fut:3s; +emballeraient emballer ver 18.86 15.27 0 0.07 cnd:pre:3p; +emballerait emballer ver 18.86 15.27 0.01 0 cnd:pre:3s; +emballeras emballer ver 18.86 15.27 0 0.07 ind:fut:2s; +emballerons emballer ver 18.86 15.27 0.01 0 ind:fut:1p; +emballes emballer ver 18.86 15.27 1.04 0.2 ind:pre:2s; +emballeur emballeur nom m s 0.15 0.81 0.11 0.61 +emballeurs emballeur nom m p 0.15 0.81 0.03 0.14 +emballeuse emballeur nom f s 0.15 0.81 0.01 0 +emballeuses emballeur nom f p 0.15 0.81 0 0.07 +emballez emballer ver 18.86 15.27 1.73 0.61 imp:pre:2p;ind:pre:2p; +emballons emballer ver 18.86 15.27 0.78 0.14 imp:pre:1p;ind:pre:1p; +emballât emballer ver 18.86 15.27 0 0.07 sub:imp:3s; +emballèrent emballer ver 18.86 15.27 0 0.14 ind:pas:3p; +emballé emballer ver m s 18.86 15.27 3.21 2.16 par:pas; +emballée emballer ver f s 18.86 15.27 1.2 1.01 par:pas; +emballées emballer ver f p 18.86 15.27 0.14 0.27 par:pas; +emballés emballer ver m p 18.86 15.27 0.48 0.2 par:pas; +embaluchonnés embaluchonner ver m p 0 0.07 0 0.07 par:pas; +embarbouilla embarbouiller ver 0 0.14 0 0.07 ind:pas:3s; +embarbouillé embarbouiller ver m s 0 0.14 0 0.07 par:pas; +embarcadère embarcadère nom m s 1.13 2.16 1.1 1.89 +embarcadères embarcadère nom m p 1.13 2.16 0.03 0.27 +embarcation embarcation nom f s 0.8 4.8 0.62 3.24 +embarcations embarcation nom f p 0.8 4.8 0.19 1.55 +embardée embardée nom f s 0.23 1.96 0.16 1.35 +embardées embardée nom f p 0.23 1.96 0.07 0.61 +embargo embargo nom m s 0.75 0.07 0.72 0.07 +embargos embargo nom m p 0.75 0.07 0.03 0 +embarqua embarquer ver 26.49 32.77 0.17 1.55 ind:pas:3s; +embarquai embarquer ver 26.49 32.77 0.01 0.68 ind:pas:1s; +embarquaient embarquer ver 26.49 32.77 0.09 0.74 ind:imp:3p; +embarquais embarquer ver 26.49 32.77 0.05 0.47 ind:imp:1s; +embarquait embarquer ver 26.49 32.77 0.06 2.09 ind:imp:3s; +embarquant embarquer ver 26.49 32.77 0.37 0.27 par:pre; +embarque embarquer ver 26.49 32.77 6.88 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embarquement embarquement nom m s 4.03 4.19 4.02 3.99 +embarquements embarquement nom m p 4.03 4.19 0.01 0.2 +embarquent embarquer ver 26.49 32.77 0.95 0.41 ind:pre:3p; +embarquer embarquer ver 26.49 32.77 7.16 10.74 inf; +embarquera embarquer ver 26.49 32.77 0.27 0 ind:fut:3s; +embarquerai embarquer ver 26.49 32.77 0.03 0 ind:fut:1s; +embarqueraient embarquer ver 26.49 32.77 0.01 0.07 cnd:pre:3p; +embarquerais embarquer ver 26.49 32.77 0.04 0.14 cnd:pre:1s; +embarquerait embarquer ver 26.49 32.77 0.05 0.34 cnd:pre:3s; +embarqueras embarquer ver 26.49 32.77 0.02 0.14 ind:fut:2s; +embarquerez embarquer ver 26.49 32.77 0.12 0 ind:fut:2p; +embarquerions embarquer ver 26.49 32.77 0 0.07 cnd:pre:1p; +embarqueront embarquer ver 26.49 32.77 0.04 0.07 ind:fut:3p; +embarquez embarquer ver 26.49 32.77 2.89 0.2 imp:pre:2p;ind:pre:2p; +embarquiez embarquer ver 26.49 32.77 0.02 0.07 ind:imp:2p; +embarquions embarquer ver 26.49 32.77 0.01 0.14 ind:imp:1p; +embarquons embarquer ver 26.49 32.77 0.44 0.2 imp:pre:1p;ind:pre:1p; +embarquâmes embarquer ver 26.49 32.77 0.11 0.14 ind:pas:1p; +embarquèrent embarquer ver 26.49 32.77 0.05 0.47 ind:pas:3p; +embarqué embarquer ver m s 26.49 32.77 4.89 5.68 par:pas; +embarquée embarquer ver f s 26.49 32.77 1.12 1.15 par:pas; +embarquées embarquer ver f p 26.49 32.77 0.08 0.68 par:pas; +embarqués embarquer ver m p 26.49 32.77 0.56 2.97 par:pas; +embarras embarras nom m 5.32 12.09 5.32 12.09 +embarrassa embarrasser ver 6.69 13.85 0.02 0.27 ind:pas:3s; +embarrassai embarrasser ver 6.69 13.85 0 0.07 ind:pas:1s; +embarrassaient embarrasser ver 6.69 13.85 0.01 0.74 ind:imp:3p; +embarrassais embarrasser ver 6.69 13.85 0.01 0.14 ind:imp:1s; +embarrassait embarrasser ver 6.69 13.85 0.03 1.01 ind:imp:3s; +embarrassant embarrassant adj m s 7.44 2.23 5.28 0.74 +embarrassante embarrassant adj f s 7.44 2.23 1.2 1.01 +embarrassantes embarrassant adj f p 7.44 2.23 0.38 0.47 +embarrassants embarrassant adj m p 7.44 2.23 0.58 0 +embarrasse embarrasser ver 6.69 13.85 1.14 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embarrassent embarrasser ver 6.69 13.85 0.34 0.2 ind:pre:3p; +embarrasser embarrasser ver 6.69 13.85 1.52 1.69 inf;; +embarrasserai embarrasser ver 6.69 13.85 0.04 0 ind:fut:1s; +embarrasseraient embarrasser ver 6.69 13.85 0 0.07 cnd:pre:3p; +embarrasses embarrasser ver 6.69 13.85 0.26 0.07 ind:pre:2s; +embarrassez embarrasser ver 6.69 13.85 0.24 0 imp:pre:2p;ind:pre:2p; +embarrassions embarrasser ver 6.69 13.85 0 0.07 ind:imp:1p; +embarrassons embarrasser ver 6.69 13.85 0.14 0.07 imp:pre:1p;ind:pre:1p; +embarrassèrent embarrasser ver 6.69 13.85 0 0.07 ind:pas:3p; +embarrassé embarrassé adj m s 2.38 7.36 1.46 5 +embarrassée embarrasser ver f s 6.69 13.85 1.05 1.28 par:pas; +embarrassées embarrassé adj f p 2.38 7.36 0.14 0.27 +embarrassés embarrasser ver m p 6.69 13.85 0.23 0.61 par:pas; +embarrure embarrure nom f s 0.01 0 0.01 0 +embase embase nom f s 0 0.14 0 0.07 +embases embase nom f p 0 0.14 0 0.07 +embastiller embastiller ver 0.05 0.27 0.02 0.14 inf; +embastillé embastiller ver m s 0.05 0.27 0.02 0.07 par:pas; +embastillée embastiller ver f s 0.05 0.27 0.01 0 par:pas; +embastillés embastiller ver m p 0.05 0.27 0 0.07 par:pas; +embats embattre ver 0 0.07 0 0.07 ind:pre:2s; +embaucha embaucher ver 13.11 5.95 0.13 0.14 ind:pas:3s; +embauchage embauchage nom m s 0 0.07 0 0.07 +embauchaient embaucher ver 13.11 5.95 0.01 0.07 ind:imp:3p; +embauchais embaucher ver 13.11 5.95 0.16 0 ind:imp:1s;ind:imp:2s; +embauchait embaucher ver 13.11 5.95 0.18 0.34 ind:imp:3s; +embauchant embaucher ver 13.11 5.95 0.04 0.07 par:pre; +embauche embauche nom f s 2.86 2.97 2.84 2.97 +embauchent embaucher ver 13.11 5.95 0.29 0.27 ind:pre:3p; +embaucher embaucher ver 13.11 5.95 3.56 1.69 inf; +embauchera embaucher ver 13.11 5.95 0.1 0.14 ind:fut:3s; +embaucherai embaucher ver 13.11 5.95 0.03 0 ind:fut:1s; +embaucherais embaucher ver 13.11 5.95 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +embaucherait embaucher ver 13.11 5.95 0.07 0 cnd:pre:3s; +embaucheront embaucher ver 13.11 5.95 0.01 0 ind:fut:3p; +embauches embaucher ver 13.11 5.95 0.27 0.07 ind:pre:2s; +embauchez embaucher ver 13.11 5.95 0.38 0 imp:pre:2p;ind:pre:2p; +embauchoir embauchoir nom m s 0.05 0.07 0.03 0 +embauchoirs embauchoir nom m p 0.05 0.07 0.02 0.07 +embauchons embaucher ver 13.11 5.95 0.14 0.07 imp:pre:1p;ind:pre:1p; +embauchât embaucher ver 13.11 5.95 0 0.07 sub:imp:3s; +embauché embaucher ver m s 13.11 5.95 4.56 1.42 par:pas; +embauchée embaucher ver f s 13.11 5.95 0.75 0.2 par:pas; +embauchées embaucher ver f p 13.11 5.95 0.05 0.14 par:pas; +embauchés embaucher ver m p 13.11 5.95 0.28 0.27 par:pas; +embauma embaumer ver 2.83 7.09 0.01 0.34 ind:pas:3s; +embaumaient embaumer ver 2.83 7.09 0.04 0.34 ind:imp:3p; +embaumait embaumer ver 2.83 7.09 0.04 1.69 ind:imp:3s; +embaumant embaumant adj m s 0 0.54 0 0.47 +embaumants embaumant adj m p 0 0.54 0 0.07 +embaume embaumer ver 2.83 7.09 0.6 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embaumement embaumement nom m s 0.68 0.27 0.65 0.2 +embaumements embaumement nom m p 0.68 0.27 0.02 0.07 +embaument embaumer ver 2.83 7.09 0.26 0.61 ind:pre:3p; +embaumer embaumer ver 2.83 7.09 0.81 0.81 inf; +embaumerait embaumer ver 2.83 7.09 0 0.07 cnd:pre:3s; +embaumeur embaumeur nom m s 0.51 0.88 0.34 0.14 +embaumeurs embaumeur nom m p 0.51 0.88 0.04 0.74 +embaumeuse embaumeur nom f s 0.51 0.88 0.13 0 +embaumez embaumer ver 2.83 7.09 0.02 0 imp:pre:2p;ind:pre:2p; +embaumions embaumer ver 2.83 7.09 0.01 0 ind:imp:1p; +embaumé embaumer ver m s 2.83 7.09 0.47 0.95 par:pas; +embaumée embaumer ver f s 2.83 7.09 0.28 0.68 par:pas; +embaumées embaumer ver f p 2.83 7.09 0 0.27 par:pas; +embaumés embaumer ver m p 2.83 7.09 0.28 0.2 par:pas; +embelli embellir ver m s 3.4 5.14 0.34 0.74 par:pas; +embellie embellie nom f s 0.02 2.7 0.02 2.43 +embellies embellir ver f p 3.4 5.14 0.1 0.14 par:pas; +embellir embellir ver 3.4 5.14 1.06 1.55 inf; +embellira embellir ver 3.4 5.14 0.14 0 ind:fut:3s; +embellirai embellir ver 3.4 5.14 0.01 0 ind:fut:1s; +embellirait embellir ver 3.4 5.14 0.02 0.14 cnd:pre:3s; +embellis embellir ver m p 3.4 5.14 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +embellissaient embellir ver 3.4 5.14 0.1 0.2 ind:imp:3p; +embellissais embellir ver 3.4 5.14 0 0.07 ind:imp:1s; +embellissait embellir ver 3.4 5.14 0.01 0.68 ind:imp:3s; +embellissant embellir ver 3.4 5.14 0 0.2 par:pre; +embellissement embellissement nom m s 0.07 0.41 0.06 0.34 +embellissements embellissement nom m p 0.07 0.41 0.01 0.07 +embellissent embellir ver 3.4 5.14 0.06 0.14 ind:pre:3p; +embellissez embellir ver 3.4 5.14 0.14 0 imp:pre:2p;ind:pre:2p; +embellissons embellir ver 3.4 5.14 0.02 0 imp:pre:1p;ind:pre:1p; +embellit embellir ver 3.4 5.14 1.28 0.81 ind:pre:3s;ind:pas:3s; +emberlificotaient emberlificoter ver 0.01 0.47 0 0.07 ind:imp:3p; +emberlificotais emberlificoter ver 0.01 0.47 0 0.07 ind:imp:1s; +emberlificote emberlificoter ver 0.01 0.47 0 0.07 ind:pre:3s; +emberlificoter emberlificoter ver 0.01 0.47 0 0.14 inf; +emberlificoté emberlificoté adj m s 0.11 0.07 0.1 0 +emberlificotée emberlificoter ver f s 0.01 0.47 0 0.07 par:pas; +emberlificotées emberlificoter ver f p 0.01 0.47 0 0.07 par:pas; +emberlificotés emberlificoté adj m p 0.11 0.07 0.01 0.07 +emberlucoquer emberlucoquer ver 0 0.07 0 0.07 inf; +embijoutée embijouté adj f s 0 0.07 0 0.07 +emblavages emblavage nom m p 0 0.07 0 0.07 +emblaver emblaver ver 0 0.2 0 0.07 inf; +emblavure emblavure nom f s 0 0.27 0 0.14 +emblavures emblavure nom f p 0 0.27 0 0.14 +emblavé emblaver ver m s 0 0.2 0 0.07 par:pas; +emblavée emblaver ver f s 0 0.2 0 0.07 par:pas; +emblème emblème nom m s 1.14 4.32 0.81 2.97 +emblèmes emblème nom m p 1.14 4.32 0.33 1.35 +emblématique emblématique adj s 0.38 0.68 0.36 0.41 +emblématiques emblématique adj m p 0.38 0.68 0.01 0.27 +embobeliner embobeliner ver 0 0.14 0 0.14 inf; +embobinant embobiner ver 2.37 1.35 0.01 0 par:pre; +embobine embobiner ver 2.37 1.35 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embobiner embobiner ver 2.37 1.35 1.29 0.95 inf; +embobinez embobiner ver 2.37 1.35 0.03 0 imp:pre:2p;ind:pre:2p; +embobiné embobiner ver m s 2.37 1.35 0.67 0.14 par:pas; +embobinée embobiner ver f s 2.37 1.35 0.1 0.14 par:pas; +embobinées embobiner ver f p 2.37 1.35 0 0.07 par:pas; +embobinés embobiner ver m p 2.37 1.35 0.03 0 par:pas; +embole embole nom m s 0.04 0 0.04 0 +embolie embolie nom f s 1.05 0.68 1.03 0.61 +embolies embolie nom f p 1.05 0.68 0.02 0.07 +embolique embolique adj s 0.01 0 0.01 0 +embonpoint embonpoint nom m s 0.18 1.96 0.18 1.96 +embosser embosser ver 0 0.34 0 0.07 inf; +embossé embosser ver m s 0 0.34 0 0.07 par:pas; +embossée embosser ver f s 0 0.34 0 0.14 par:pas; +embossés embosser ver m p 0 0.34 0 0.07 par:pas; +emboucanent emboucaner ver 0 0.07 0 0.07 ind:pre:3p; +emboucha emboucher ver 0.01 1.08 0 0.07 ind:pas:3s; +embouchant emboucher ver 0.01 1.08 0 0.2 par:pre; +embouche emboucher ver 0.01 1.08 0 0.27 ind:pre:3s; +emboucher emboucher ver 0.01 1.08 0 0.2 inf; +emboucherait emboucher ver 0.01 1.08 0 0.07 cnd:pre:3s; +embouchoir embouchoir nom m s 0.01 0.14 0.01 0 +embouchoirs embouchoir nom m p 0.01 0.14 0 0.14 +embouchure embouchure nom f s 0.69 3.99 0.68 3.78 +embouchures embouchure nom f p 0.69 3.99 0.01 0.2 +embouché embouché adj m s 0.45 0.74 0.09 0.41 +embouchée embouché adj f s 0.45 0.74 0.25 0.07 +embouchées embouché adj f p 0.45 0.74 0 0.07 +embouchés embouché adj m p 0.45 0.74 0.11 0.2 +embouquer embouquer ver 0 0.2 0 0.14 inf; +embouqué embouquer ver m s 0 0.2 0 0.07 par:pas; +embourbaient embourber ver 1.02 1.89 0 0.07 ind:imp:3p; +embourbait embourber ver 1.02 1.89 0 0.14 ind:imp:3s; +embourbe embourber ver 1.02 1.89 0.03 0.34 ind:pre:1s;ind:pre:3s; +embourbent embourber ver 1.02 1.89 0 0.07 ind:pre:3p; +embourber embourber ver 1.02 1.89 0.15 0.47 inf; +embourbé embourber ver m s 1.02 1.89 0.42 0.41 par:pas; +embourbée embourber ver f s 1.02 1.89 0.15 0.14 par:pas; +embourbées embourbé adj f p 0.06 0.34 0.01 0 +embourbés embourber ver m p 1.02 1.89 0.26 0.07 par:pas; +embourgeoise embourgeoiser ver 0.03 0.41 0 0.07 ind:pre:3s; +embourgeoisement embourgeoisement nom m s 0.01 0.34 0.01 0.34 +embourgeoiser embourgeoiser ver 0.03 0.41 0.02 0.14 inf; +embourgeoises embourgeoiser ver 0.03 0.41 0 0.2 ind:pre:2s; +embourgeoisé embourgeoisé adj m s 0.01 0 0.01 0 +embourgeoisés embourgeoisé nom m p 0.1 0.07 0.1 0 +embout embout nom m s 0.2 0.81 0.18 0.41 +embouteillage embouteillage nom m s 3.93 3.38 2.08 1.35 +embouteillages embouteillage nom m p 3.93 3.38 1.85 2.03 +embouteillait embouteiller ver 0.04 0.34 0 0.07 ind:imp:3s; +embouteille embouteiller ver 0.04 0.34 0.01 0.07 ind:pre:3s; +embouteiller embouteiller ver 0.04 0.34 0 0.2 inf; +embouteillé embouteiller ver m s 0.04 0.34 0.01 0 par:pas; +embouteillée embouteillé adj f s 0.01 0.2 0.01 0.07 +embouteillées embouteiller ver f p 0.04 0.34 0.01 0 par:pas; +embouti emboutir ver m s 1.55 0.95 1.01 0.2 par:pas; +emboutie emboutir ver f s 1.55 0.95 0.07 0.07 par:pas; +embouties emboutir ver f p 1.55 0.95 0 0.07 par:pas; +emboutir emboutir ver 1.55 0.95 0.28 0.41 inf; +emboutis emboutir ver m p 1.55 0.95 0.06 0.07 ind:pre:1s;par:pas; +emboutissant emboutir ver 1.55 0.95 0 0.07 par:pre; +emboutisseur emboutisseur nom m s 0 0.14 0 0.07 +emboutisseuse emboutisseur nom f s 0 0.14 0 0.07 +emboutit emboutir ver 1.55 0.95 0.12 0.07 ind:pre:3s; +embouts embout nom m p 0.2 0.81 0.03 0.41 +emboîta emboîter ver 0.98 6.08 0 0.41 ind:pas:3s; +emboîtables emboîtable adj m p 0 0.07 0 0.07 +emboîtage emboîtage nom m s 0 0.2 0 0.07 +emboîtages emboîtage nom m p 0 0.2 0 0.14 +emboîtai emboîter ver 0.98 6.08 0 0.14 ind:pas:1s; +emboîtaient emboîter ver 0.98 6.08 0.01 0.54 ind:imp:3p; +emboîtais emboîter ver 0.98 6.08 0 0.2 ind:imp:1s; +emboîtait emboîter ver 0.98 6.08 0.1 0.47 ind:imp:3s; +emboîtant emboîter ver 0.98 6.08 0.1 0.61 par:pre; +emboîtas emboîter ver 0.98 6.08 0 0.07 ind:pas:2s; +emboîte emboîter ver 0.98 6.08 0.08 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emboîtement emboîtement nom m s 0 0.07 0 0.07 +emboîtent emboîter ver 0.98 6.08 0.24 0.61 ind:pre:3p; +emboîter emboîter ver 0.98 6.08 0.29 0.61 inf; +emboîterai emboîter ver 0.98 6.08 0.01 0 ind:fut:1s; +emboîtions emboîter ver 0.98 6.08 0 0.07 ind:imp:1p; +emboîtons emboîter ver 0.98 6.08 0.01 0.07 ind:pre:1p; +emboîtures emboîture nom f p 0 0.07 0 0.07 +emboîtâmes emboîter ver 0.98 6.08 0 0.07 ind:pas:1p; +emboîtèrent emboîter ver 0.98 6.08 0 0.14 ind:pas:3p; +emboîté emboîter ver m s 0.98 6.08 0.13 0.74 par:pas; +emboîtée emboîter ver f s 0.98 6.08 0 0.07 par:pas; +emboîtées emboîter ver f p 0.98 6.08 0.01 0.47 par:pas; +emboîtés emboîter ver m p 0.98 6.08 0 0.34 par:pas; +embranchant embrancher ver 0 0.07 0 0.07 par:pre; +embranchement embranchement nom m s 0.45 3.11 0.42 2.84 +embranchements embranchement nom m p 0.45 3.11 0.03 0.27 +embraquer embraquer ver 0.01 0 0.01 0 inf; +embrasa embraser ver 2.67 6.82 0.04 0.68 ind:pas:3s; +embrasaient embraser ver 2.67 6.82 0.01 0.34 ind:imp:3p; +embrasait embraser ver 2.67 6.82 0.02 1.22 ind:imp:3s; +embrasant embraser ver 2.67 6.82 0.03 0.14 par:pre; +embrase embraser ver 2.67 6.82 1.06 1.01 ind:pre:1s;ind:pre:3s; +embrasement embrasement nom m s 0.28 1.62 0.28 1.15 +embrasements embrasement nom m p 0.28 1.62 0 0.47 +embrasent embraser ver 2.67 6.82 0.04 0.47 ind:pre:3p; +embraser embraser ver 2.67 6.82 0.25 1.08 inf; +embrasera embraser ver 2.67 6.82 0.14 0.07 ind:fut:3s; +embraserait embraser ver 2.67 6.82 0 0.07 cnd:pre:3s; +embrasez embraser ver 2.67 6.82 0.03 0 imp:pre:2p; +embrassa embrasser ver 138.97 137.5 0.81 21.08 ind:pas:3s; +embrassade embrassade nom f s 0.61 1.89 0.16 0.61 +embrassades embrassade nom f p 0.61 1.89 0.45 1.28 +embrassai embrasser ver 138.97 137.5 0.14 3.04 ind:pas:1s; +embrassaient embrasser ver 138.97 137.5 0.57 2.36 ind:imp:3p; +embrassais embrasser ver 138.97 137.5 1.46 1.35 ind:imp:1s;ind:imp:2s; +embrassait embrasser ver 138.97 137.5 1.94 10.68 ind:imp:3s; +embrassant embrasser ver 138.97 137.5 1.41 5.07 par:pre; +embrasse embrasser ver 138.97 137.5 49.81 26.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +embrassement embrassement nom m s 0.02 0.95 0.01 0.41 +embrassements embrassement nom m p 0.02 0.95 0.01 0.54 +embrassent embrasser ver 138.97 137.5 2.88 2.64 ind:pre:3p; +embrasser embrasser ver 138.97 137.5 43.91 37.7 inf;;inf;;inf;; +embrassera embrasser ver 138.97 137.5 0.6 0.34 ind:fut:3s; +embrasserai embrasser ver 138.97 137.5 1.23 0.41 ind:fut:1s; +embrasseraient embrasser ver 138.97 137.5 0 0.14 cnd:pre:3p; +embrasserais embrasser ver 138.97 137.5 0.67 0.27 cnd:pre:1s;cnd:pre:2s; +embrasserait embrasser ver 138.97 137.5 0.17 0.81 cnd:pre:3s; +embrasseras embrasser ver 138.97 137.5 0.51 0.2 ind:fut:2s; +embrasserez embrasser ver 138.97 137.5 0.11 0.14 ind:fut:2p; +embrasseriez embrasser ver 138.97 137.5 0.04 0 cnd:pre:2p; +embrasseront embrasser ver 138.97 137.5 0.12 0.07 ind:fut:3p; +embrasses embrasser ver 138.97 137.5 5.21 0.61 ind:pre:2s;sub:pre:2s; +embrasseur embrasseur adj m s 0.05 0 0.05 0 +embrasseurs embrasseur nom m p 0.12 0.14 0.01 0 +embrasseuse embrasseur nom f s 0.12 0.14 0.06 0 +embrasseuses embrasseur nom f p 0.12 0.14 0.01 0.14 +embrassez embrasser ver 138.97 137.5 6.08 1.15 imp:pre:2p;ind:pre:2p; +embrassiez embrasser ver 138.97 137.5 0.44 0.07 ind:imp:2p; +embrassions embrasser ver 138.97 137.5 0.05 0.68 ind:imp:1p; +embrassons embrasser ver 138.97 137.5 1.82 0.61 imp:pre:1p;ind:pre:1p; +embrassâmes embrasser ver 138.97 137.5 0 0.34 ind:pas:1p; +embrassât embrasser ver 138.97 137.5 0 0.41 sub:imp:3s; +embrassâtes embrasser ver 138.97 137.5 0.1 0 ind:pas:2p; +embrassèrent embrasser ver 138.97 137.5 0.01 2.5 ind:pas:3p; +embrassé embrasser ver m s 138.97 137.5 10.17 8.65 par:pas; +embrassée embrasser ver f s 138.97 137.5 6.01 6.76 par:pas; +embrassées embrasser ver f p 138.97 137.5 0.42 0.41 par:pas; +embrassés embrasser ver m p 138.97 137.5 2.28 2.36 par:pas; +embrasure embrasure nom f s 0.1 7.16 0.07 6.01 +embrasures embrasure nom f p 0.1 7.16 0.02 1.15 +embrasèrent embraser ver 2.67 6.82 0 0.34 ind:pas:3p; +embrasé embraser ver m s 2.67 6.82 0.35 1.01 par:pas; +embrasée embraser ver f s 2.67 6.82 0.36 0.34 par:pas; +embrasées embraser ver f p 2.67 6.82 0.01 0 par:pas; +embrasés embraser ver m p 2.67 6.82 0.34 0.07 par:pas; +embraya embrayer ver 0.72 2.64 0 0.68 ind:pas:3s; +embrayage embrayage nom m s 0.98 1.01 0.98 0.95 +embrayages embrayage nom m p 0.98 1.01 0 0.07 +embrayais embrayer ver 0.72 2.64 0 0.07 ind:imp:1s; +embrayait embrayer ver 0.72 2.64 0.01 0.34 ind:imp:3s; +embrayant embrayer ver 0.72 2.64 0 0.14 par:pre; +embraye embrayer ver 0.72 2.64 0.26 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embrayer embrayer ver 0.72 2.64 0.37 0.41 inf; +embrayes embrayer ver 0.72 2.64 0.02 0.07 ind:pre:2s; +embrayé embrayer ver m s 0.72 2.64 0.05 0.34 par:pas; +embrayée embrayer ver f s 0.72 2.64 0.01 0 par:pas; +embrigadé embrigader ver m s 0.02 0.2 0.01 0.14 par:pas; +embrigadée embrigader ver f s 0.02 0.2 0.01 0.07 par:pas; +embringua embringuer ver 0.72 1.15 0 0.07 ind:pas:3s; +embringuaient embringuer ver 0.72 1.15 0 0.07 ind:imp:3p; +embringuait embringuer ver 0.72 1.15 0 0.07 ind:imp:3s; +embringuer embringuer ver 0.72 1.15 0.15 0.34 inf; +embringues embringuer ver 0.72 1.15 0.03 0 ind:pre:2s; +embringué embringuer ver m s 0.72 1.15 0.4 0.54 par:pas; +embringuée embringuer ver f s 0.72 1.15 0.14 0.07 par:pas; +embrocation embrocation nom f s 0.01 0.41 0.01 0.34 +embrocations embrocation nom f p 0.01 0.41 0 0.07 +embrocha embrocher ver 0.71 2.3 0 0.14 ind:pas:3s; +embrochais embrocher ver 0.71 2.3 0 0.07 ind:imp:1s; +embrochant embrocher ver 0.71 2.3 0.01 0.07 par:pre; +embroche embrocher ver 0.71 2.3 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embrochent embrocher ver 0.71 2.3 0.01 0.07 ind:pre:3p; +embrocher embrocher ver 0.71 2.3 0.13 0.81 inf; +embrochera embrocher ver 0.71 2.3 0 0.07 ind:fut:3s; +embrochez embrocher ver 0.71 2.3 0.16 0 imp:pre:2p; +embrochèrent embrocher ver 0.71 2.3 0 0.14 ind:pas:3p; +embroché embrocher ver m s 0.71 2.3 0.08 0.27 par:pas; +embrochée embrocher ver f s 0.71 2.3 0.02 0.2 par:pas; +embrochées embrocher ver f p 0.71 2.3 0 0.07 par:pas; +embrochés embrocher ver m p 0.71 2.3 0.02 0.27 par:pas; +embrouilla embrouiller ver 8.15 9.46 0 0.47 ind:pas:3s; +embrouillage embrouillage nom m s 0.02 0 0.02 0 +embrouillai embrouiller ver 8.15 9.46 0 0.14 ind:pas:1s; +embrouillaient embrouiller ver 8.15 9.46 0.01 0.61 ind:imp:3p; +embrouillais embrouiller ver 8.15 9.46 0.03 0.34 ind:imp:1s;ind:imp:2s; +embrouillait embrouiller ver 8.15 9.46 0.03 1.55 ind:imp:3s; +embrouillamini embrouillamini nom m s 0.01 0.34 0.01 0.27 +embrouillaminis embrouillamini nom m p 0.01 0.34 0 0.07 +embrouillant embrouiller ver 8.15 9.46 0.15 0.61 par:pre; +embrouillasse embrouiller ver 8.15 9.46 0 0.07 sub:imp:1s; +embrouille embrouille nom f s 7.99 4.39 4.35 3.18 +embrouillement embrouillement nom m s 0.01 0.27 0.01 0.2 +embrouillements embrouillement nom m p 0.01 0.27 0 0.07 +embrouillent embrouiller ver 8.15 9.46 0.36 0.41 ind:pre:3p; +embrouiller embrouiller ver 8.15 9.46 1.92 1.22 inf; +embrouillerai embrouiller ver 8.15 9.46 0.01 0 ind:fut:1s; +embrouillerais embrouiller ver 8.15 9.46 0.02 0 cnd:pre:1s;cnd:pre:2s; +embrouillerait embrouiller ver 8.15 9.46 0.02 0.07 cnd:pre:3s; +embrouilles embrouille nom f p 7.99 4.39 3.64 1.22 +embrouilleur embrouilleur nom m s 0.17 0.14 0.16 0 +embrouilleurs embrouilleur nom m p 0.17 0.14 0.02 0.07 +embrouilleuses embrouilleur nom f p 0.17 0.14 0 0.07 +embrouillez embrouiller ver 8.15 9.46 0.38 0 imp:pre:2p;ind:pre:2p; +embrouillât embrouiller ver 8.15 9.46 0 0.14 sub:imp:3s; +embrouillèrent embrouiller ver 8.15 9.46 0 0.14 ind:pas:3p; +embrouillé embrouiller ver m s 8.15 9.46 1.78 0.81 par:pas; +embrouillée embrouillé adj f s 0.71 1.76 0.23 0.47 +embrouillées embrouillé adj f p 0.71 1.76 0.04 0.54 +embrouillés embrouiller ver m p 8.15 9.46 0.04 0.14 par:pas; +embroussaille embroussailler ver 0 0.34 0 0.07 ind:pre:3s; +embroussailler embroussailler ver 0 0.34 0 0.07 inf; +embroussaillé embroussaillé adj m s 0 0.61 0 0.07 +embroussaillée embroussailler ver f s 0 0.34 0 0.07 par:pas; +embroussaillées embroussailler ver f p 0 0.34 0 0.07 par:pas; +embroussaillés embroussaillé adj m p 0 0.61 0 0.54 +embruiné embruiné adj m s 0 0.07 0 0.07 +embrumait embrumer ver 0.72 1.96 0 0.41 ind:imp:3s; +embrume embrumer ver 0.72 1.96 0.21 0.41 ind:pre:1s;ind:pre:3s; +embrument embrumer ver 0.72 1.96 0.11 0.14 ind:pre:3p; +embrumer embrumer ver 0.72 1.96 0.19 0.2 inf; +embrumé embrumer ver m s 0.72 1.96 0.2 0.34 par:pas; +embrumée embrumé adj f s 0.15 1.08 0.04 0.34 +embrumées embrumé adj f p 0.15 1.08 0.03 0.27 +embrumés embrumé adj m p 0.15 1.08 0.04 0.14 +embrun embrun nom m s 0.68 2.97 0.52 0.81 +embruns embrun nom m p 0.68 2.97 0.16 2.16 +embryologie embryologie nom f s 0.01 0 0.01 0 +embryologiste embryologiste nom s 0.01 0 0.01 0 +embryon embryon nom m s 0.96 3.72 0.6 2.64 +embryonnaire embryonnaire adj s 0.16 0.47 0.11 0.41 +embryonnaires embryonnaire adj p 0.16 0.47 0.05 0.07 +embryons embryon nom m p 0.96 3.72 0.36 1.08 +embu embu nom m s 0 0.14 0 0.07 +embua embuer ver 0.38 5.41 0 0.07 ind:pas:3s; +embuaient embuer ver 0.38 5.41 0.14 0.68 ind:imp:3p; +embuait embuer ver 0.38 5.41 0 0.68 ind:imp:3s; +embuant embuer ver 0.38 5.41 0.01 0.07 par:pre; +embue embuer ver 0.38 5.41 0.02 0.2 ind:pre:3s; +embuent embuer ver 0.38 5.41 0.04 0.47 ind:pre:3p; +embuer embuer ver 0.38 5.41 0.12 0.34 inf; +embus embu nom m p 0 0.14 0 0.07 +embuscade embuscade nom f s 5.04 4.12 4.59 2.97 +embuscades embuscade nom f p 5.04 4.12 0.44 1.15 +embusqua embusquer ver 0.58 3.58 0 0.14 ind:pas:3s; +embusquaient embusquer ver 0.58 3.58 0.1 0.07 ind:imp:3p; +embusquait embusquer ver 0.58 3.58 0 0.14 ind:imp:3s; +embusque embusquer ver 0.58 3.58 0.1 0.2 ind:pre:3s; +embusquent embusquer ver 0.58 3.58 0 0.07 ind:pre:3p; +embusquer embusquer ver 0.58 3.58 0.03 0.41 inf; +embusqué embusqué adj m s 0.46 1.08 0.36 0.54 +embusquée embusquer ver f s 0.58 3.58 0.01 0.34 par:pas; +embusquées embusquer ver f p 0.58 3.58 0 0.27 par:pas; +embusqués embusqué nom m p 0.58 0.54 0.28 0.27 +embuèrent embuer ver 0.38 5.41 0 0.27 ind:pas:3p; +embué embué adj m s 0.27 1.76 0.17 0.27 +embuée embué adj f s 0.27 1.76 0.03 0.54 +embuées embué adj f p 0.27 1.76 0.04 0.41 +embués embuer ver m p 0.38 5.41 0.02 1.01 par:pas; +embâcle embâcle nom m s 0.01 0.14 0.01 0.14 +embéguinées embéguiner ver f p 0 0.07 0 0.07 par:pas; +embêtaient embêter ver 33.91 15.61 0.3 0.27 ind:imp:3p; +embêtais embêter ver 33.91 15.61 0.42 0.27 ind:imp:1s;ind:imp:2s; +embêtait embêter ver 33.91 15.61 0.82 0.95 ind:imp:3s; +embêtant embêtant adj m s 2.92 3.51 2.41 2.97 +embêtante embêtant adj f s 2.92 3.51 0.16 0.27 +embêtantes embêtant adj f p 2.92 3.51 0.01 0.07 +embêtants embêtant adj m p 2.92 3.51 0.34 0.2 +embête embêter ver 33.91 15.61 13.21 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embêtement embêtement nom m s 0.69 1.08 0.16 0.07 +embêtements embêtement nom m p 0.69 1.08 0.53 1.01 +embêtent embêter ver 33.91 15.61 1.1 0.81 ind:pre:3p; +embêter embêter ver 33.91 15.61 7.68 3.58 ind:pre:2p;inf; +embêtera embêter ver 33.91 15.61 1.01 0.34 ind:fut:3s; +embêterai embêter ver 33.91 15.61 1.08 0.14 ind:fut:1s; +embêteraient embêter ver 33.91 15.61 0.08 0.07 cnd:pre:3p; +embêterais embêter ver 33.91 15.61 0.1 0.07 cnd:pre:1s;cnd:pre:2s; +embêterait embêter ver 33.91 15.61 1.92 0.27 cnd:pre:3s; +embêtes embêter ver 33.91 15.61 1.71 0.74 ind:pre:2s; +embêtez embêter ver 33.91 15.61 1.39 0.2 imp:pre:2p;ind:pre:2p; +embêté embêter ver m s 33.91 15.61 2.29 1.69 par:pas; +embêtée embêter ver f s 33.91 15.61 0.65 0.54 par:pas; +embêtées embêter ver f p 33.91 15.61 0.04 0.07 par:pas; +embêtés embêté adj m p 1.39 2.16 0.15 0.14 +embûche embûche nom f s 0.24 3.18 0.04 0.41 +embûches embûche nom f p 0.24 3.18 0.2 2.77 +emergency emergency nom f s 0.25 0 0.25 0 +emmagasinaient emmagasiner ver 0.58 1.82 0 0.07 ind:imp:3p; +emmagasinais emmagasiner ver 0.58 1.82 0 0.07 ind:imp:1s; +emmagasinait emmagasiner ver 0.58 1.82 0 0.07 ind:imp:3s; +emmagasine emmagasiner ver 0.58 1.82 0.11 0.27 ind:pre:1s;ind:pre:3s; +emmagasinent emmagasiner ver 0.58 1.82 0.15 0.2 ind:pre:3p; +emmagasiner emmagasiner ver 0.58 1.82 0.26 0.47 inf; +emmagasiné emmagasiner ver m s 0.58 1.82 0.04 0.27 par:pas; +emmagasinée emmagasiner ver f s 0.58 1.82 0.02 0.14 par:pas; +emmagasinées emmagasiner ver f p 0.58 1.82 0 0.14 par:pas; +emmagasinés emmagasiné adj m p 0.1 0.2 0.1 0 +emmaillota emmailloter ver 0.17 1.82 0.14 0.07 ind:pas:3s; +emmaillotaient emmailloter ver 0.17 1.82 0 0.07 ind:imp:3p; +emmaillotement emmaillotement nom m s 0 0.07 0 0.07 +emmailloter emmailloter ver 0.17 1.82 0 0.27 inf; +emmailloté emmailloter ver m s 0.17 1.82 0.02 0.61 par:pas; +emmaillotée emmailloter ver f s 0.17 1.82 0.01 0.47 par:pas; +emmaillotées emmailloter ver f p 0.17 1.82 0 0.2 par:pas; +emmaillotés emmailloter ver m p 0.17 1.82 0 0.14 par:pas; +emmanchage emmanchage nom m s 0 0.07 0 0.07 +emmanchant emmancher ver 0.19 1.76 0 0.07 par:pre; +emmanche emmancher ver 0.19 1.76 0 0.2 ind:pre:3s; +emmanchent emmancher ver 0.19 1.76 0 0.14 ind:pre:3p; +emmancher emmancher ver 0.19 1.76 0.01 0.2 inf; +emmanchure emmanchure nom f s 0 0.74 0 0.34 +emmanchures emmanchure nom f p 0 0.74 0 0.41 +emmanché emmancher ver m s 0.19 1.76 0.18 0.41 par:pas; +emmanchée emmancher ver f s 0.19 1.76 0 0.2 par:pas; +emmanchées emmancher ver f p 0.19 1.76 0 0.07 par:pas; +emmanchés emmancher ver m p 0.19 1.76 0 0.47 par:pas; +emmena emmener ver 272.71 105.47 0.89 9.73 ind:pas:3s; +emmenai emmener ver 272.71 105.47 0.1 1.42 ind:pas:1s; +emmenaient emmener ver 272.71 105.47 0.58 1.28 ind:imp:3p; +emmenais emmener ver 272.71 105.47 1.42 1.55 ind:imp:1s;ind:imp:2s; +emmenait emmener ver 272.71 105.47 3.38 10.07 ind:imp:3s; +emmenant emmener ver 272.71 105.47 0.85 1.69 par:pre; +emmener emmener ver 272.71 105.47 70.34 26.96 inf;;inf;;inf;; +emmenez emmener ver 272.71 105.47 42.79 2.77 imp:pre:2p;ind:pre:2p; +emmeniez emmener ver 272.71 105.47 0.44 0.14 ind:imp:2p;sub:pre:2p; +emmenions emmener ver 272.71 105.47 0.14 0.2 ind:imp:1p; +emmenons emmener ver 272.71 105.47 4 0.47 imp:pre:1p;ind:pre:1p; +emmenotté emmenotter ver m s 0 0.14 0 0.14 par:pas; +emmental emmental nom m s 0.01 0 0.01 0 +emmenthal emmenthal nom m s 0.15 0.14 0.15 0.14 +emmenât emmener ver 272.71 105.47 0 0.34 sub:imp:3s; +emmenèrent emmener ver 272.71 105.47 0.79 1.62 ind:pas:3p; +emmené emmener ver m s 272.71 105.47 22.85 10.95 par:pas; +emmenée emmener ver f s 272.71 105.47 11.83 6.15 par:pas; +emmenées emmener ver f p 272.71 105.47 0.9 0.2 par:pas; +emmenés emmener ver m p 272.71 105.47 3.77 2.43 par:pas; +emmerda emmerder ver 52.18 27.09 0 0.07 ind:pas:3s; +emmerdaient emmerder ver 52.18 27.09 0.05 0.47 ind:imp:3p; +emmerdais emmerder ver 52.18 27.09 0.2 0.27 ind:imp:1s;ind:imp:2s; +emmerdait emmerder ver 52.18 27.09 0.51 1.62 ind:imp:3s; +emmerdant emmerdant adj m s 1.92 1.76 1.04 1.22 +emmerdante emmerdant adj f s 1.92 1.76 0.35 0.2 +emmerdantes emmerdant adj f p 1.92 1.76 0.16 0.07 +emmerdants emmerdant adj m p 1.92 1.76 0.36 0.27 +emmerdatoires emmerdatoire adj p 0 0.07 0 0.07 +emmerde emmerder ver 52.18 27.09 33.9 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +emmerdement emmerdement nom m s 0.84 4.66 0.08 0.88 +emmerdements emmerdement nom m p 0.84 4.66 0.77 3.78 +emmerdent emmerder ver 52.18 27.09 1.5 1.15 ind:pre:3p; +emmerder emmerder ver 52.18 27.09 8.34 6.76 inf; +emmerdera emmerder ver 52.18 27.09 0.06 0.14 ind:fut:3s; +emmerderai emmerder ver 52.18 27.09 0.14 0.07 ind:fut:1s; +emmerderaient emmerder ver 52.18 27.09 0 0.07 cnd:pre:3p; +emmerderais emmerder ver 52.18 27.09 0.03 0.07 cnd:pre:1s; +emmerderait emmerder ver 52.18 27.09 0.2 0.2 cnd:pre:3s; +emmerderez emmerder ver 52.18 27.09 0.11 0.07 ind:fut:2p; +emmerderont emmerder ver 52.18 27.09 0.02 0.07 ind:fut:3p; +emmerdes emmerde nom f p 6.15 3.51 4.9 2.91 +emmerdeur emmerdeur nom m s 4.96 3.04 2.69 1.15 +emmerdeurs emmerdeur nom m p 4.96 3.04 0.73 0.88 +emmerdeuse emmerdeur nom f s 4.96 3.04 1.47 0.81 +emmerdeuses emmerdeur nom f p 4.96 3.04 0.07 0.2 +emmerdez emmerder ver 52.18 27.09 0.81 0.68 imp:pre:2p;ind:pre:2p; +emmerdons emmerder ver 52.18 27.09 0 0.07 ind:pre:1p; +emmerdé emmerder ver m s 52.18 27.09 1.47 2.43 par:pas; +emmerdée emmerder ver f s 52.18 27.09 0.22 0.34 par:pas; +emmerdés emmerder ver m p 52.18 27.09 0.32 0.68 par:pas; +emmi emmi adv 0.03 0 0.03 0 +emmitoufla emmitoufler ver 0.13 4.12 0 0.14 ind:pas:3s; +emmitouflai emmitoufler ver 0.13 4.12 0 0.07 ind:pas:1s; +emmitouflait emmitoufler ver 0.13 4.12 0 0.41 ind:imp:3s; +emmitouflant emmitoufler ver 0.13 4.12 0 0.07 par:pre; +emmitoufle emmitoufler ver 0.13 4.12 0.03 0.27 ind:pre:3s; +emmitoufler emmitoufler ver 0.13 4.12 0.03 0.07 inf; +emmitouflez emmitoufler ver 0.13 4.12 0.01 0 imp:pre:2p; +emmitouflé emmitoufler ver m s 0.13 4.12 0.02 0.88 par:pas; +emmitouflée emmitoufler ver f s 0.13 4.12 0.04 1.08 par:pas; +emmitouflées emmitoufler ver f p 0.13 4.12 0 0.47 par:pas; +emmitouflés emmitouflé adj m p 0.15 1.15 0.11 0.47 +emmouflé emmoufler ver m s 0 0.07 0 0.07 par:pas; +emmouscaillements emmouscaillement nom m p 0 0.07 0 0.07 +emmura emmurer ver 0.61 1.42 0 0.07 ind:pas:3s; +emmurait emmurer ver 0.61 1.42 0.01 0.07 ind:imp:3s; +emmure emmurer ver 0.61 1.42 0.03 0.14 ind:pre:3s; +emmurement emmurement nom m s 0.01 0 0.01 0 +emmurer emmurer ver 0.61 1.42 0.27 0.34 inf; +emmuré emmurer ver m s 0.61 1.42 0.13 0.34 par:pas; +emmurée emmuré adj f s 0.04 0.81 0.04 0.41 +emmurées emmurer ver f p 0.61 1.42 0.1 0 par:pas; +emmurés emmurer ver m p 0.61 1.42 0.04 0.2 par:pas; +emmène emmener ver 272.71 105.47 77.85 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emmènent emmener ver 272.71 105.47 3.78 1.42 ind:pre:3p;sub:pre:3p; +emmènera emmener ver 272.71 105.47 4.44 0.95 ind:fut:3s; +emmènerai emmener ver 272.71 105.47 4.85 2.64 ind:fut:1s; +emmèneraient emmener ver 272.71 105.47 0.19 0.27 cnd:pre:3p; +emmènerais emmener ver 272.71 105.47 1.47 0.34 cnd:pre:1s;cnd:pre:2s; +emmènerait emmener ver 272.71 105.47 0.9 1.55 cnd:pre:3s; +emmèneras emmener ver 272.71 105.47 1.22 0.61 ind:fut:2s; +emmènerez emmener ver 272.71 105.47 0.76 0.41 ind:fut:2p; +emmèneriez emmener ver 272.71 105.47 0.15 0.14 cnd:pre:2p; +emmènerions emmener ver 272.71 105.47 0.11 0 cnd:pre:1p; +emmènerons emmener ver 272.71 105.47 0.58 0.07 ind:fut:1p; +emmèneront emmener ver 272.71 105.47 1.26 0.34 ind:fut:3p; +emmènes emmener ver 272.71 105.47 10.1 1.55 ind:pre:1p;ind:pre:2s;sub:pre:2s; +emménage emménager ver 13.7 2.36 2.1 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emménagea emménager ver 13.7 2.36 0.04 0.2 ind:pas:3s; +emménageaient emménager ver 13.7 2.36 0.02 0 ind:imp:3p; +emménageais emménager ver 13.7 2.36 0.04 0 ind:imp:1s;ind:imp:2s; +emménageait emménager ver 13.7 2.36 0.07 0.07 ind:imp:3s; +emménageant emménager ver 13.7 2.36 0.06 0 par:pre; +emménagement emménagement nom m s 0.25 0.81 0.25 0.81 +emménagent emménager ver 13.7 2.36 0.2 0.07 ind:pre:3p; +emménageons emménager ver 13.7 2.36 0.17 0.14 imp:pre:1p;ind:pre:1p; +emménager emménager ver 13.7 2.36 5.46 1.15 inf; +emménagera emménager ver 13.7 2.36 0.13 0 ind:fut:3s; +emménagerai emménager ver 13.7 2.36 0.04 0 ind:fut:1s; +emménagerais emménager ver 13.7 2.36 0.03 0 cnd:pre:1s;cnd:pre:2s; +emménagerait emménager ver 13.7 2.36 0.15 0.07 cnd:pre:3s; +emménagerez emménager ver 13.7 2.36 0.02 0 ind:fut:2p; +emménagerons emménager ver 13.7 2.36 0.03 0 ind:fut:1p; +emménages emménager ver 13.7 2.36 0.77 0 ind:pre:2s; +emménagez emménager ver 13.7 2.36 0.45 0 imp:pre:2p;ind:pre:2p; +emménagiez emménager ver 13.7 2.36 0.02 0 ind:imp:2p; +emménagions emménager ver 13.7 2.36 0.01 0.14 ind:imp:1p; +emménagèrent emménager ver 13.7 2.36 0.04 0.07 ind:pas:3p; +emménagé emménager ver m s 13.7 2.36 3.85 0.27 par:pas; +emmêla emmêler ver 1.31 5.2 0 0.14 ind:pas:3s; +emmêlai emmêler ver 1.31 5.2 0 0.07 ind:pas:1s; +emmêlaient emmêler ver 1.31 5.2 0.03 0.41 ind:imp:3p; +emmêlait emmêler ver 1.31 5.2 0.04 0.34 ind:imp:3s; +emmêlant emmêler ver 1.31 5.2 0 0.54 par:pre; +emmêle emmêler ver 1.31 5.2 0.09 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emmêlement emmêlement nom m s 0 0.47 0 0.34 +emmêlements emmêlement nom m p 0 0.47 0 0.14 +emmêlent emmêler ver 1.31 5.2 0.43 0.27 ind:pre:3p; +emmêler emmêler ver 1.31 5.2 0.2 0.41 inf; +emmêlera emmêler ver 1.31 5.2 0 0.07 ind:fut:3s; +emmêleront emmêler ver 1.31 5.2 0 0.07 ind:fut:3p; +emmêles emmêler ver 1.31 5.2 0.12 0.07 ind:pre:2s; +emmêlèrent emmêler ver 1.31 5.2 0 0.14 ind:pas:3p; +emmêlé emmêler ver m s 1.31 5.2 0.28 0.27 par:pas; +emmêlée emmêler ver f s 1.31 5.2 0.03 0.41 par:pas; +emmêlées emmêler ver f p 1.31 5.2 0.02 0.41 par:pas; +emmêlés emmêlé adj m p 0.27 2.84 0.07 1.96 +empaffe empaffer ver 0.06 0.07 0.04 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empaffer empaffer ver 0.06 0.07 0.02 0.07 inf; +empaffé empaffé nom m s 0.5 0.2 0.38 0.14 +empaffés empaffé nom m p 0.5 0.2 0.12 0.07 +empaillant empailler ver 1.03 0.27 0 0.07 par:pre; +empailler empailler ver 1.03 0.27 0.45 0.07 inf; +empailleur empailleur nom m s 0.04 0.2 0.03 0.2 +empailleurs empailleur nom m p 0.04 0.2 0.01 0 +empaillez empailler ver 1.03 0.27 0.01 0 imp:pre:2p; +empaillé empaillé adj m s 0.67 2.09 0.46 0.74 +empaillée empaillé adj f s 0.67 2.09 0.07 0.27 +empaillées empaillé adj f p 0.67 2.09 0.04 0.07 +empaillés empailler ver m p 1.03 0.27 0.34 0 par:pas; +empalait empaler ver 1.34 1.76 0.13 0 ind:imp:3s; +empalant empaler ver 1.34 1.76 0.04 0 par:pre; +empale empaler ver 1.34 1.76 0.1 0.41 ind:pre:1s;ind:pre:3s; +empalement empalement nom m s 0.02 0 0.02 0 +empaler empaler ver 1.34 1.76 0.39 0.41 inf; +empalerais empaler ver 1.34 1.76 0.1 0 cnd:pre:1s; +empaleront empaler ver 1.34 1.76 0 0.07 ind:fut:3p; +empalmait empalmer ver 0 0.2 0 0.07 ind:imp:3s; +empalme empalmer ver 0 0.2 0 0.07 ind:pre:3s; +empalmé empalmer ver m s 0 0.2 0 0.07 par:pas; +empalé empalé adj m s 0.41 0.2 0.3 0.07 +empalée empaler ver f s 1.34 1.76 0.25 0.14 par:pas; +empalées empaler ver f p 1.34 1.76 0 0.14 par:pas; +empalés empaler ver m p 1.34 1.76 0.1 0.14 par:pas; +empan empan nom m s 0.01 0.07 0.01 0.07 +empanaché empanaché adj m s 0.02 0.74 0.01 0.2 +empanachée empanaché adj f s 0.02 0.74 0 0.14 +empanachées empanaché adj f p 0.02 0.74 0.01 0.07 +empanachés empanaché adj m p 0.02 0.74 0 0.34 +empanner empanner ver 0 0.07 0 0.07 inf; +empapaoutent empapaouter ver 0.23 0.27 0 0.07 ind:pre:3p; +empapaouter empapaouter ver 0.23 0.27 0.12 0 inf; +empapaouté empapaouter ver m s 0.23 0.27 0.1 0.07 par:pas; +empapaoutés empapaouter ver m p 0.23 0.27 0.01 0.14 par:pas; +empaqueta empaqueter ver 0.35 2.36 0 0.2 ind:pas:3s; +empaquetage empaquetage nom m s 0.14 0.2 0.14 0.2 +empaqueter empaqueter ver 0.35 2.36 0.14 0.54 inf; +empaqueteur empaqueteur nom m s 0.01 0 0.01 0 +empaquette empaqueter ver 0.35 2.36 0.03 0.2 imp:pre:2s;ind:pre:3s; +empaquettent empaqueter ver 0.35 2.36 0 0.07 ind:pre:3p; +empaquettes empaqueter ver 0.35 2.36 0 0.07 ind:pre:2s; +empaquetèrent empaqueter ver 0.35 2.36 0 0.07 ind:pas:3p; +empaqueté empaqueter ver m s 0.35 2.36 0.13 0.27 par:pas; +empaquetée empaqueter ver f s 0.35 2.36 0.03 0.41 par:pas; +empaquetées empaqueté adj f p 0.13 0.68 0.11 0.14 +empaquetés empaqueter ver m p 0.35 2.36 0.01 0.07 par:pas; +empara emparer ver 12.8 39.26 0.6 6.89 ind:pas:3s; +emparadisé emparadiser ver m s 0 0.07 0 0.07 par:pas; +emparai emparer ver 12.8 39.26 0 0.47 ind:pas:1s; +emparaient emparer ver 12.8 39.26 0.04 0.95 ind:imp:3p; +emparais emparer ver 12.8 39.26 0.01 0.14 ind:imp:1s; +emparait emparer ver 12.8 39.26 0.2 5.41 ind:imp:3s; +emparant emparer ver 12.8 39.26 0.22 1.62 par:pre; +emparassent emparer ver 12.8 39.26 0 0.07 sub:imp:3p; +empare emparer ver 12.8 39.26 2.85 6.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +emparent emparer ver 12.8 39.26 0.8 1.08 ind:pre:3p; +emparer emparer ver 12.8 39.26 3.92 7.16 inf; +emparera emparer ver 12.8 39.26 0.14 0.2 ind:fut:3s; +emparerai emparer ver 12.8 39.26 0.03 0 ind:fut:1s; +empareraient emparer ver 12.8 39.26 0.01 0.34 cnd:pre:3p; +emparerais emparer ver 12.8 39.26 0.06 0 cnd:pre:1s;cnd:pre:2s; +emparerait emparer ver 12.8 39.26 0.01 0.07 cnd:pre:3s; +empareront emparer ver 12.8 39.26 0.07 0 ind:fut:3p; +emparez emparer ver 12.8 39.26 0.91 0 imp:pre:2p;ind:pre:2p; +emparons emparer ver 12.8 39.26 0.16 0 imp:pre:1p;ind:pre:1p; +emparât emparer ver 12.8 39.26 0 0.27 sub:imp:3s; +emparèrent emparer ver 12.8 39.26 0.16 0.54 ind:pas:3p; +emparé emparer ver m s 12.8 39.26 1.53 3.72 par:pas; +emparée emparer ver f s 12.8 39.26 0.4 2.91 par:pas; +emparées emparer ver f p 12.8 39.26 0.11 0.2 par:pas; +emparés emparer ver m p 12.8 39.26 0.56 1.01 par:pas; +empathie empathie nom f s 0.63 0 0.63 0 +empathique empathique adj s 0.26 0.07 0.23 0.07 +empathiques empathique adj f p 0.26 0.07 0.03 0 +empattement empattement nom m s 0.09 0.2 0.09 0.14 +empattements empattement nom m p 0.09 0.2 0 0.07 +empaume empaumer ver 0 0.2 0 0.07 ind:pre:3s; +empaumer empaumer ver 0 0.2 0 0.14 inf; +empaumure empaumure nom f s 0.1 0.2 0.1 0.14 +empaumures empaumure nom f p 0.1 0.2 0 0.07 +empeigne empeigne nom f s 0.01 0.54 0.01 0.54 +empeignés empeigner ver m p 0 0.07 0 0.07 par:pas; +empennage empennage nom m s 0.04 0.2 0.04 0.2 +empennait empenner ver 0 0.34 0 0.07 ind:imp:3s; +empenne empenne nom f s 0.01 0 0.01 0 +empennée empenner ver f s 0 0.34 0 0.07 par:pas; +empennées empenner ver f p 0 0.34 0 0.14 par:pas; +empennés empenner ver m p 0 0.34 0 0.07 par:pas; +empereur empereur nom m s 25.55 38.45 24.45 35.88 +empereurs empereur nom m p 25.55 38.45 1.1 2.57 +emperlait emperler ver 0 0.41 0 0.07 ind:imp:3s; +emperlant emperler ver 0 0.41 0 0.07 par:pre; +emperler emperler ver 0 0.41 0 0.07 inf; +emperlousées emperlousé adj f p 0 0.14 0 0.14 +emperlé emperler ver m s 0 0.41 0 0.07 par:pas; +emperlées emperlé adj f p 0 0.27 0 0.14 +emperlés emperler ver m p 0 0.41 0 0.14 par:pas; +emperruqués emperruqué adj m p 0 0.07 0 0.07 +empesage empesage nom m s 0.01 0.07 0.01 0.07 +empesant empeser ver 0.02 1.15 0 0.07 par:pre; +empesta empester ver 3.28 3.31 0 0.14 ind:pas:3s; +empestaient empester ver 3.28 3.31 0.02 0.27 ind:imp:3p; +empestais empester ver 3.28 3.31 0.01 0.07 ind:imp:1s; +empestait empester ver 3.28 3.31 0.27 0.81 ind:imp:3s; +empestant empester ver 3.28 3.31 0.13 0.2 par:pre; +empeste empester ver 3.28 3.31 1.87 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empestent empester ver 3.28 3.31 0.13 0.14 ind:pre:3p; +empester empester ver 3.28 3.31 0.39 0.27 inf; +empestes empester ver 3.28 3.31 0.35 0 ind:pre:2s; +empestez empester ver 3.28 3.31 0.11 0.07 ind:pre:2p; +empesté empester ver m s 3.28 3.31 0.01 0.27 par:pas; +empestée empester ver f s 3.28 3.31 0 0.61 par:pas; +empestées empester ver f p 3.28 3.31 0 0.07 par:pas; +empesé empeser ver m s 0.02 1.15 0.01 0.34 par:pas; +empesée empeser ver f s 0.02 1.15 0.01 0.34 par:pas; +empesées empesé adj f p 0 1.96 0 0.41 +empesés empesé adj m p 0 1.96 0 0.2 +emphase emphase nom f s 0.22 5.27 0.22 5.2 +emphases emphase nom f p 0.22 5.27 0 0.07 +emphatique emphatique adj s 0.22 1.96 0.18 1.62 +emphatiquement emphatiquement adv 0.01 0.14 0.01 0.14 +emphatiques emphatique adj m p 0.22 1.96 0.04 0.34 +emphatise emphatiser ver 0 0.07 0 0.07 ind:pre:1s; +emphysème emphysème nom m s 0.31 0.41 0.3 0.34 +emphysèmes emphysème nom m p 0.31 0.41 0.01 0.07 +emphysémateuse emphysémateux adj f s 0 0.07 0 0.07 +empierrage empierrage nom m s 0 0.07 0 0.07 +empierrait empierrer ver 0 0.41 0 0.07 ind:imp:3s; +empierrement empierrement nom m s 0 0.34 0 0.34 +empierrer empierrer ver 0 0.41 0 0.07 inf; +empierré empierré adj m s 0 0.74 0 0.2 +empierrée empierré adj f s 0 0.74 0 0.2 +empierrées empierré adj f p 0 0.74 0 0.2 +empierrés empierré adj m p 0 0.74 0 0.14 +empiffra empiffrer ver 1.25 2.91 0 0.2 ind:pas:3s; +empiffraient empiffrer ver 1.25 2.91 0.01 0.07 ind:imp:3p; +empiffrais empiffrer ver 1.25 2.91 0.01 0.14 ind:imp:1s; +empiffrait empiffrer ver 1.25 2.91 0.04 0.41 ind:imp:3s; +empiffrant empiffrer ver 1.25 2.91 0.01 0.07 par:pre; +empiffre empiffrer ver 1.25 2.91 0.1 0.61 imp:pre:2s;ind:pre:3s; +empiffrent empiffrer ver 1.25 2.91 0.14 0.2 ind:pre:3p; +empiffrer empiffrer ver 1.25 2.91 0.47 1.22 inf; +empiffres empiffrer ver 1.25 2.91 0.03 0 ind:pre:2s; +empiffrez empiffrer ver 1.25 2.91 0.14 0 imp:pre:2p;ind:pre:2p; +empiffrée empiffrer ver f s 1.25 2.91 0.16 0 par:pas; +empiffrées empiffrer ver f p 1.25 2.91 0.14 0 par:pas; +empila empiler ver 1.78 15.81 0 0.74 ind:pas:3s; +empilage empilage nom m s 0.04 0.27 0.04 0.2 +empilages empilage nom m p 0.04 0.27 0 0.07 +empilaient empiler ver 1.78 15.81 0.03 2.77 ind:imp:3p; +empilais empiler ver 1.78 15.81 0.01 0.27 ind:imp:1s; +empilait empiler ver 1.78 15.81 0.03 1.35 ind:imp:3s; +empilant empiler ver 1.78 15.81 0.16 0.34 par:pre; +empile empiler ver 1.78 15.81 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empilement empilement nom m s 0 0.54 0 0.27 +empilements empilement nom m p 0 0.54 0 0.27 +empilent empiler ver 1.78 15.81 0.07 0.54 ind:pre:3p; +empiler empiler ver 1.78 15.81 0.25 1.35 inf;; +empilerai empiler ver 1.78 15.81 0 0.07 ind:fut:1s; +empilerions empiler ver 1.78 15.81 0.1 0 cnd:pre:1p; +empilez empiler ver 1.78 15.81 0.2 0 imp:pre:2p; +empilons empiler ver 1.78 15.81 0 0.07 ind:pre:1p; +empilèrent empiler ver 1.78 15.81 0 0.07 ind:pas:3p; +empilé empiler ver m s 1.78 15.81 0.13 0.68 par:pas; +empilée empiler ver f s 1.78 15.81 0.03 0.54 par:pas; +empilées empiler ver f p 1.78 15.81 0.09 2.57 par:pas; +empilés empiler ver m p 1.78 15.81 0.4 3.65 par:pas; +empira empirer ver 12.93 2.91 0.03 0.34 ind:pas:3s; +empirait empirer ver 12.93 2.91 0.19 0.47 ind:imp:3s; +empirant empirer ver 12.93 2.91 0.06 0.27 par:pre; +empire empire nom m s 19.47 63.51 19.02 60.74 +empirent empirer ver 12.93 2.91 0.39 0 ind:pre:3p; +empirer empirer ver 12.93 2.91 5.28 0.54 inf; +empirera empirer ver 12.93 2.91 0.26 0 ind:fut:3s; +empirerait empirer ver 12.93 2.91 0.03 0.07 cnd:pre:3s; +empireront empirer ver 12.93 2.91 0.04 0 ind:fut:3p; +empires empire nom m p 19.47 63.51 0.44 2.77 +empirez empirer ver 12.93 2.91 0.03 0 imp:pre:2p;ind:pre:2p; +empirique empirique adj s 0.3 1.01 0.22 0.54 +empiriquement empiriquement adv 0 0.07 0 0.07 +empiriques empirique adj p 0.3 1.01 0.09 0.47 +empirisme empirisme nom m s 0.02 0.27 0.02 0.2 +empirismes empirisme nom m p 0.02 0.27 0 0.07 +empirèrent empirer ver 12.93 2.91 0.01 0.07 ind:pas:3p; +empiré empirer ver m s 12.93 2.91 2.12 0.34 par:pas; +empirée empirer ver f s 12.93 2.91 0.03 0.07 par:pas; +empiècement empiècement nom m s 0 0.41 0 0.2 +empiècements empiècement nom m p 0 0.41 0 0.2 +empiète empiéter ver 1.17 1.89 0.28 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empiètements empiètement nom m p 0 0.34 0 0.34 +empiètent empiéter ver 1.17 1.89 0.26 0.14 ind:pre:3p;sub:pre:3p; +empiètes empiéter ver 1.17 1.89 0.06 0 ind:pre:2s; +empiétaient empiéter ver 1.17 1.89 0.02 0.27 ind:imp:3p; +empiétais empiéter ver 1.17 1.89 0 0.07 ind:imp:1s; +empiétait empiéter ver 1.17 1.89 0.01 0.2 ind:imp:3s; +empiétant empiéter ver 1.17 1.89 0.01 0.47 par:pre; +empiétement empiétement nom m s 0 1.96 0 0.61 +empiétements empiétement nom m p 0 1.96 0 1.35 +empiéter empiéter ver 1.17 1.89 0.2 0.47 inf; +empiétez empiéter ver 1.17 1.89 0.11 0 imp:pre:2p;ind:pre:2p; +empiété empiéter ver m s 1.17 1.89 0.22 0.07 par:pas; +emplacement emplacement nom m s 6.9 12.7 6 10.95 +emplacements emplacement nom m p 6.9 12.7 0.9 1.76 +emplafonne emplafonner ver 0.01 0.61 0.01 0.07 ind:pre:1s;ind:pre:3s; +emplafonnent emplafonner ver 0.01 0.61 0 0.07 ind:pre:3p; +emplafonner emplafonner ver 0.01 0.61 0 0.27 inf; +emplafonné emplafonner ver m s 0.01 0.61 0 0.14 par:pas; +emplafonnée emplafonner ver f s 0.01 0.61 0 0.07 par:pas; +emplanture emplanture nom f s 0 0.14 0 0.14 +emplette emplette nom f s 0.57 2.57 0.03 0.88 +emplettes emplette nom f p 0.57 2.57 0.55 1.69 +empli emplir ver m s 6.4 49.73 1.28 5.47 par:pas; +emplie emplir ver f s 6.4 49.73 0.31 2.77 par:pas; +emplies emplir ver f p 6.4 49.73 0.04 1.42 par:pas; +emplir emplir ver 6.4 49.73 0.3 6.01 inf; +emplira emplir ver 6.4 49.73 0.16 0.14 ind:fut:3s; +empliraient emplir ver 6.4 49.73 0.01 0 cnd:pre:3p; +emplirait emplir ver 6.4 49.73 0.01 0.07 cnd:pre:3s; +emplirent emplir ver 6.4 49.73 0.01 0.61 ind:pas:3p; +emplis emplir ver m p 6.4 49.73 0.4 1.76 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +emplissaient emplir ver 6.4 49.73 0.14 3.51 ind:imp:3p; +emplissais emplir ver 6.4 49.73 0 0.27 ind:imp:1s; +emplissait emplir ver 6.4 49.73 0.53 10.95 ind:imp:3s; +emplissant emplir ver 6.4 49.73 0.03 2.09 par:pre; +emplissent emplir ver 6.4 49.73 0.59 1.42 ind:pre:3p; +emplissez emplir ver 6.4 49.73 0.19 0 imp:pre:2p;ind:pre:2p; +emplissons emplir ver 6.4 49.73 0.14 0 imp:pre:1p; +emplit emplir ver 6.4 49.73 2.25 13.18 ind:pre:3s;ind:pas:3s; +emploi emploi nom m s 30.94 29.19 25.96 26.42 +emploie employer ver 19.47 46.22 3.74 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emploient employer ver 19.47 46.22 0.64 2.09 ind:pre:3p; +emploiera employer ver 19.47 46.22 0.36 0.41 ind:fut:3s; +emploierai employer ver 19.47 46.22 0.27 0.34 ind:fut:1s; +emploieraient employer ver 19.47 46.22 0.02 0.2 cnd:pre:3p; +emploierais employer ver 19.47 46.22 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +emploierait employer ver 19.47 46.22 0.28 0.34 cnd:pre:3s; +emploierez employer ver 19.47 46.22 0.01 0.07 ind:fut:2p; +emploieriez employer ver 19.47 46.22 0.03 0 cnd:pre:2p; +emploierons employer ver 19.47 46.22 0.14 0 ind:fut:1p; +emploieront employer ver 19.47 46.22 0.11 0.07 ind:fut:3p; +emploies employer ver 19.47 46.22 0.44 0.54 ind:pre:2s; +emplois emploi nom m p 30.94 29.19 4.98 2.77 +employa employer ver 19.47 46.22 0.03 1.22 ind:pas:3s; +employai employer ver 19.47 46.22 0.01 0.27 ind:pas:1s; +employaient employer ver 19.47 46.22 0.11 2.09 ind:imp:3p; +employais employer ver 19.47 46.22 0.07 0.81 ind:imp:1s;ind:imp:2s; +employait employer ver 19.47 46.22 1 7.09 ind:imp:3s; +employant employer ver 19.47 46.22 0.41 2.16 par:pre; +employer employer ver 19.47 46.22 4.16 10.95 ind:pre:2p;inf; +employeur employeur nom m s 4.01 2.7 2.7 1.69 +employeurs employeur nom m p 4.01 2.7 1.31 1.01 +employez employer ver 19.47 46.22 0.69 0.27 imp:pre:2p;ind:pre:2p; +employiez employer ver 19.47 46.22 0.04 0 ind:imp:2p; +employions employer ver 19.47 46.22 0.01 0.14 ind:imp:1p; +employons employer ver 19.47 46.22 0.42 0.27 imp:pre:1p;ind:pre:1p; +employâmes employer ver 19.47 46.22 0 0.07 ind:pas:1p; +employât employer ver 19.47 46.22 0 0.14 sub:imp:3s; +employèrent employer ver 19.47 46.22 0.14 0.2 ind:pas:3p; +employé employé nom m s 30.8 26.08 10.61 9.86 +employée employé nom f s 30.8 26.08 3.24 2.43 +employées employé nom f p 30.8 26.08 1.05 1.01 +employés employé nom m p 30.8 26.08 15.9 12.77 +empluma emplumer ver 0.02 0.34 0 0.07 ind:pas:3s; +emplume emplumer ver 0.02 0.34 0 0.07 ind:pre:3s; +emplumé emplumé adj m s 0.28 0.88 0.05 0.34 +emplumée emplumé adj f s 0.28 0.88 0.14 0.2 +emplumées emplumer ver f p 0.02 0.34 0 0.07 par:pas; +emplumés emplumé adj m p 0.28 0.88 0.1 0.34 +emplâtrage emplâtrage nom m s 0 0.14 0 0.14 +emplâtrais emplâtrer ver 0.06 0.54 0 0.07 ind:imp:1s; +emplâtre emplâtre nom m s 0.15 1.35 0.12 0.95 +emplâtrer emplâtrer ver 0.06 0.54 0.04 0.34 inf; +emplâtres emplâtre nom m p 0.15 1.35 0.03 0.41 +emplâtré emplâtrer ver m s 0.06 0.54 0.02 0.14 par:pas; +emplît emplir ver 6.4 49.73 0 0.07 sub:imp:3s; +empocha empocher ver 2.92 4.46 0.14 1.08 ind:pas:3s; +empochai empocher ver 2.92 4.46 0 0.14 ind:pas:1s; +empochaient empocher ver 2.92 4.46 0.04 0.07 ind:imp:3p; +empochais empocher ver 2.92 4.46 0.01 0.14 ind:imp:1s; +empochait empocher ver 2.92 4.46 0.02 0.61 ind:imp:3s; +empochant empocher ver 2.92 4.46 0.01 0.34 par:pre; +empoche empocher ver 2.92 4.46 0.41 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empochent empocher ver 2.92 4.46 0.09 0.07 ind:pre:3p; +empocher empocher ver 2.92 4.46 1.28 0.88 inf; +empochera empocher ver 2.92 4.46 0.08 0 ind:fut:3s; +empocherais empocher ver 2.92 4.46 0.03 0 cnd:pre:1s; +empocheras empocher ver 2.92 4.46 0.02 0 ind:fut:2s; +empoches empocher ver 2.92 4.46 0.04 0 ind:pre:2s; +empochez empocher ver 2.92 4.46 0.03 0 imp:pre:2p;ind:pre:2p; +empochiez empocher ver 2.92 4.46 0.01 0 ind:imp:2p; +empoché empocher ver m s 2.92 4.46 0.49 0.68 par:pas; +empochée empocher ver f s 2.92 4.46 0.17 0 par:pas; +empochées empocher ver f p 2.92 4.46 0.03 0.07 par:pas; +empochés empocher ver m p 2.92 4.46 0.02 0 par:pas; +empoigna empoigner ver 1.84 26.01 0.04 8.11 ind:pas:3s; +empoignade empoignade nom f s 0.16 1.01 0.16 0.54 +empoignades empoignade nom f p 0.16 1.01 0 0.47 +empoignai empoigner ver 1.84 26.01 0 0.2 ind:pas:1s; +empoignaient empoigner ver 1.84 26.01 0 0.54 ind:imp:3p; +empoignais empoigner ver 1.84 26.01 0 0.14 ind:imp:1s; +empoignait empoigner ver 1.84 26.01 0 2.3 ind:imp:3s; +empoignant empoigner ver 1.84 26.01 0.23 1.62 par:pre; +empoigne empoigner ver 1.84 26.01 0.72 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empoignent empoigner ver 1.84 26.01 0.02 0.61 ind:pre:3p; +empoigner empoigner ver 1.84 26.01 0.28 2.7 inf; +empoignera empoigner ver 1.84 26.01 0.01 0 ind:fut:3s; +empoigneront empoigner ver 1.84 26.01 0 0.07 ind:fut:3p; +empoignes empoigner ver 1.84 26.01 0.04 0 ind:pre:2s; +empoignez empoigner ver 1.84 26.01 0.17 0.07 imp:pre:2p; +empoignons empoigner ver 1.84 26.01 0.01 0.07 imp:pre:1p;ind:pre:1p; +empoignèrent empoigner ver 1.84 26.01 0 0.95 ind:pas:3p; +empoigné empoigner ver m s 1.84 26.01 0.29 3.65 par:pas; +empoignée empoigner ver f s 1.84 26.01 0.02 0.47 par:pas; +empoignées empoigner ver f p 1.84 26.01 0 0.14 par:pas; +empoiler empoiler ver 0 0.14 0 0.07 inf; +empoilés empoiler ver m p 0 0.14 0 0.07 par:pas; +empois empois nom m 0.01 0.14 0.01 0.14 +empoisonna empoisonner ver 19.62 15 0.01 0.14 ind:pas:3s; +empoisonnaient empoisonner ver 19.62 15 0.12 0.27 ind:imp:3p; +empoisonnais empoisonner ver 19.62 15 0.12 0 ind:imp:1s;ind:imp:2s; +empoisonnait empoisonner ver 19.62 15 0.1 0.61 ind:imp:3s; +empoisonnant empoisonner ver 19.62 15 0.1 0 par:pre; +empoisonnante empoisonnant adj f s 0.15 0.2 0.06 0 +empoisonnantes empoisonnant adj f p 0.15 0.2 0.01 0.07 +empoisonne empoisonner ver 19.62 15 1.76 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empoisonnement empoisonnement nom m s 1.85 0.61 1.8 0.61 +empoisonnements empoisonnement nom m p 1.85 0.61 0.05 0 +empoisonnent empoisonner ver 19.62 15 0.41 0.54 ind:pre:3p; +empoisonner empoisonner ver 19.62 15 3.57 2.57 inf; +empoisonnera empoisonner ver 19.62 15 0.31 0.14 ind:fut:3s; +empoisonnerai empoisonner ver 19.62 15 0.11 0 ind:fut:1s; +empoisonneraient empoisonner ver 19.62 15 0 0.07 cnd:pre:3p; +empoisonnerais empoisonner ver 19.62 15 0.02 0 cnd:pre:1s; +empoisonnerez empoisonner ver 19.62 15 0.01 0 ind:fut:2p; +empoisonneront empoisonner ver 19.62 15 0.02 0 ind:fut:3p; +empoisonnes empoisonner ver 19.62 15 0.31 0.07 ind:pre:2s; +empoisonneur empoisonneur nom m s 0.99 0.88 0.65 0.47 +empoisonneurs empoisonneur nom m p 0.99 0.88 0.18 0.07 +empoisonneuse empoisonneur nom f s 0.99 0.88 0.16 0.27 +empoisonneuses empoisonneur nom f p 0.99 0.88 0.01 0.07 +empoisonnez empoisonner ver 19.62 15 0.2 0.2 imp:pre:2p;ind:pre:2p; +empoisonné empoisonner ver m s 19.62 15 8.22 3.58 par:pas; +empoisonnée empoisonner ver f s 19.62 15 2.83 2.16 par:pas; +empoisonnées empoisonner ver f p 19.62 15 0.57 1.89 par:pas; +empoisonnés empoisonner ver m p 19.62 15 0.82 1.28 par:pas; +empoissait empoisser ver 0 0.34 0 0.07 ind:imp:3s; +empoisse empoisser ver 0 0.34 0 0.07 ind:pre:3s; +empoisser empoisser ver 0 0.34 0 0.07 inf; +empoissonner empoissonner ver 0.02 0.14 0.01 0 inf; +empoissonné empoissonner ver m s 0.02 0.14 0.01 0.07 par:pas; +empoissonnées empoissonner ver f p 0.02 0.14 0 0.07 par:pas; +empoissé empoisser ver m s 0 0.34 0 0.07 par:pas; +empoissés empoisser ver m p 0 0.34 0 0.07 par:pas; +emporium emporium nom m s 0.04 0.14 0.04 0.14 +emport emport nom m s 0 0.07 0 0.07 +emporta emporter ver 69.02 121.28 0.42 7.43 ind:pas:3s; +emportai emporter ver 69.02 121.28 0.01 0.74 ind:pas:1s; +emportaient emporter ver 69.02 121.28 0.23 2.84 ind:imp:3p; +emportais emporter ver 69.02 121.28 0.04 2.43 ind:imp:1s;ind:imp:2s; +emportait emporter ver 69.02 121.28 1.44 16.82 ind:imp:3s; +emportant emporter ver 69.02 121.28 0.9 8.92 par:pre; +emporte emporter ver 69.02 121.28 19.89 16.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emporte_pièce emporte_pièce nom m 0 0.95 0 0.95 +emportement emportement nom m s 0.97 3.51 0.55 3.24 +emportements emportement nom m p 0.97 3.51 0.42 0.27 +emportent emporter ver 69.02 121.28 1.3 2.03 ind:pre:3p; +emporter emporter ver 69.02 121.28 16.69 24.19 inf; +emportera emporter ver 69.02 121.28 2.45 1.49 ind:fut:3s; +emporterai emporter ver 69.02 121.28 0.4 0.27 ind:fut:1s; +emporteraient emporter ver 69.02 121.28 0.02 0.41 cnd:pre:3p; +emporterais emporter ver 69.02 121.28 0.14 0.2 cnd:pre:1s; +emporterait emporter ver 69.02 121.28 0.13 1.76 cnd:pre:3s; +emporteras emporter ver 69.02 121.28 0.53 0.41 ind:fut:2s; +emporterez emporter ver 69.02 121.28 0.36 0.14 ind:fut:2p; +emporteriez emporter ver 69.02 121.28 0 0.07 cnd:pre:2p; +emporterions emporter ver 69.02 121.28 0 0.07 cnd:pre:1p; +emporterons emporter ver 69.02 121.28 0.22 0.14 ind:fut:1p; +emporteront emporter ver 69.02 121.28 0.21 0.41 ind:fut:3p; +emportes emporter ver 69.02 121.28 2.01 0.68 ind:pre:2s; +emportez emporter ver 69.02 121.28 3.54 1.22 imp:pre:2p;ind:pre:2p; +emportiez emporter ver 69.02 121.28 0.41 0.14 ind:imp:2p; +emportions emporter ver 69.02 121.28 0.01 0.34 ind:imp:1p; +emportons emporter ver 69.02 121.28 0.8 0.14 imp:pre:1p;ind:pre:1p; +emportât emporter ver 69.02 121.28 0.01 0.61 sub:imp:3s; +emportèrent emporter ver 69.02 121.28 0.04 1.01 ind:pas:3p; +emporté emporter ver m s 69.02 121.28 12.46 18.58 par:pas; +emportée emporter ver f s 69.02 121.28 2.31 5.14 par:pas; +emportées emporter ver f p 69.02 121.28 0.35 1.69 par:pas; +emportés emporter ver m p 69.02 121.28 1.73 4.53 par:pas; +empoté empoté nom m s 0.67 0.61 0.55 0.61 +empotée empoté adj f s 0.8 0.61 0.24 0.14 +empotés empoté nom m p 0.67 0.61 0.12 0 +empourpra empourprer ver 0.03 2.97 0 0.81 ind:pas:3s; +empourprait empourprer ver 0.03 2.97 0 0.61 ind:imp:3s; +empourprant empourprer ver 0.03 2.97 0 0.27 par:pre; +empourpre empourprer ver 0.03 2.97 0.01 0.47 ind:pre:3s; +empourprent empourprer ver 0.03 2.97 0 0.07 ind:pre:3p; +empourprer empourprer ver 0.03 2.97 0.01 0.14 inf; +empourpré empourprer ver m s 0.03 2.97 0 0.27 par:pas; +empourprée empourprer ver f s 0.03 2.97 0.01 0.14 par:pas; +empourprées empourprer ver f p 0.03 2.97 0 0.14 par:pas; +empourprés empourprer ver m p 0.03 2.97 0 0.07 par:pas; +empoussière empoussiérer ver 0.02 0.54 0.01 0.07 ind:pre:3s; +empoussièrent empoussiérer ver 0.02 0.54 0 0.07 ind:pre:3p; +empoussiérait empoussiérer ver 0.02 0.54 0 0.14 ind:imp:3s; +empoussiéré empoussiérer ver m s 0.02 0.54 0.01 0.14 par:pas; +empoussiérée empoussiéré adj f s 0 0.81 0 0.27 +empoussiérées empoussiéré adj f p 0 0.81 0 0.14 +empoussiérés empoussiéré adj m p 0 0.81 0 0.2 +empreignit empreindre ver 0.23 2.23 0 0.07 ind:pas:3s; +empreint empreindre ver m s 0.23 2.23 0.08 1.15 ind:pre:3s;par:pas; +empreinte empreinte nom f s 42.06 15.61 11.41 8.72 +empreintes empreinte nom f p 42.06 15.61 30.65 6.89 +empreints empreindre ver m p 0.23 2.23 0.15 1.01 par:pas; +empressa empresser ver 1.65 12.91 0.13 2.5 ind:pas:3s; +empressai empresser ver 1.65 12.91 0.01 0.41 ind:pas:1s; +empressaient empresser ver 1.65 12.91 0 1.01 ind:imp:3p; +empressais empresser ver 1.65 12.91 0 0.14 ind:imp:1s; +empressait empresser ver 1.65 12.91 0 1.35 ind:imp:3s; +empressant empresser ver 1.65 12.91 0.01 0.27 par:pre; +empresse empresser ver 1.65 12.91 0.7 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empressement empressement nom m s 0.46 6.15 0.46 6.01 +empressements empressement nom m p 0.46 6.15 0 0.14 +empressent empresser ver 1.65 12.91 0.01 0.54 ind:pre:3p; +empresser empresser ver 1.65 12.91 0.17 0.41 inf; +empressera empresser ver 1.65 12.91 0.02 0.14 ind:fut:3s; +empresserait empresser ver 1.65 12.91 0.04 0.2 cnd:pre:3s; +empresseras empresser ver 1.65 12.91 0.01 0 ind:fut:2s; +empresserez empresser ver 1.65 12.91 0.01 0 ind:fut:2p; +empresses empresser ver 1.65 12.91 0.02 0.07 ind:pre:2s; +empressâmes empresser ver 1.65 12.91 0 0.14 ind:pas:1p; +empressèrent empresser ver 1.65 12.91 0 0.88 ind:pas:3p; +empressé empresser ver m s 1.65 12.91 0.27 1.35 par:pas; +empressée empresser ver f s 1.65 12.91 0.08 0.47 par:pas; +empressées empresser ver f p 1.65 12.91 0.14 0.27 par:pas; +empressés empressé nom m p 0.16 0.47 0.14 0.14 +emprise emprise nom f s 3.08 3.65 3.08 3.58 +emprises emprise nom f p 3.08 3.65 0 0.07 +emprisonna emprisonner ver 6.46 10.27 0.16 0.54 ind:pas:3s; +emprisonnaient emprisonner ver 6.46 10.27 0 0.41 ind:imp:3p; +emprisonnait emprisonner ver 6.46 10.27 0.01 0.74 ind:imp:3s; +emprisonnant emprisonner ver 6.46 10.27 0.14 0.95 par:pre; +emprisonne emprisonner ver 6.46 10.27 0.65 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emprisonnement emprisonnement nom m s 1.8 0.81 1.74 0.61 +emprisonnements emprisonnement nom m p 1.8 0.81 0.06 0.2 +emprisonnent emprisonner ver 6.46 10.27 0.26 0.54 ind:pre:3p; +emprisonner emprisonner ver 6.46 10.27 1.48 1.35 inf; +emprisonnera emprisonner ver 6.46 10.27 0.02 0.07 ind:fut:3s; +emprisonnez emprisonner ver 6.46 10.27 0.1 0 imp:pre:2p;ind:pre:2p; +emprisonnèrent emprisonner ver 6.46 10.27 0.01 0.07 ind:pas:3p; +emprisonné emprisonner ver m s 6.46 10.27 2.6 1.69 par:pas; +emprisonnée emprisonner ver f s 6.46 10.27 0.54 1.49 ind:imp:3p;par:pas; +emprisonnées emprisonner ver f p 6.46 10.27 0.15 0.2 par:pas; +emprisonnés emprisonner ver m p 6.46 10.27 0.35 1.08 par:pas; +emprunt emprunt nom m s 3.66 4.73 3.18 3.78 +emprunta emprunter ver 31.3 31.28 0.01 1.55 ind:pas:3s; +empruntai emprunter ver 31.3 31.28 0.01 0.95 ind:pas:1s; +empruntaient emprunter ver 31.3 31.28 0.01 1.01 ind:imp:3p; +empruntais emprunter ver 31.3 31.28 0.08 0.88 ind:imp:1s;ind:imp:2s; +empruntait emprunter ver 31.3 31.28 0.47 2.64 ind:imp:3s; +empruntant emprunter ver 31.3 31.28 0.2 2.36 par:pre; +emprunte emprunter ver 31.3 31.28 4.3 2.3 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empruntent emprunter ver 31.3 31.28 0.44 0.61 ind:pre:3p; +emprunter emprunter ver 31.3 31.28 15.87 7.09 inf; +empruntera emprunter ver 31.3 31.28 0.1 0.07 ind:fut:3s; +emprunterai emprunter ver 31.3 31.28 0.2 0.07 ind:fut:1s; +emprunteraient emprunter ver 31.3 31.28 0 0.14 cnd:pre:3p; +emprunterais emprunter ver 31.3 31.28 0.13 0.07 cnd:pre:1s; +emprunterait emprunter ver 31.3 31.28 0.03 0.54 cnd:pre:3s; +emprunteras emprunter ver 31.3 31.28 0.07 0.07 ind:fut:2s; +emprunterons emprunter ver 31.3 31.28 0.03 0 ind:fut:1p; +emprunteront emprunter ver 31.3 31.28 0.13 0.14 ind:fut:3p; +empruntes emprunter ver 31.3 31.28 0.52 0.2 ind:pre:2s; +emprunteur emprunteur nom m s 0.04 0 0.04 0 +empruntez emprunter ver 31.3 31.28 0.4 0 imp:pre:2p;ind:pre:2p; +empruntions emprunter ver 31.3 31.28 0.04 0.47 ind:imp:1p; +empruntons emprunter ver 31.3 31.28 0.1 0.41 imp:pre:1p;ind:pre:1p; +emprunts emprunt nom m p 3.66 4.73 0.47 0.95 +empruntâmes emprunter ver 31.3 31.28 0.01 0.07 ind:pas:1p; +empruntât emprunter ver 31.3 31.28 0 0.07 sub:imp:3s; +empruntèrent emprunter ver 31.3 31.28 0.01 0.74 ind:pas:3p; +emprunté emprunter ver m s 31.3 31.28 6.63 5.68 par:pas; +empruntée emprunter ver f s 31.3 31.28 1.05 1.15 par:pas; +empruntées emprunter ver f p 31.3 31.28 0.25 0.47 par:pas; +empruntés emprunter ver m p 31.3 31.28 0.21 1.55 par:pas; +empuanti empuantir ver m s 0.03 1.22 0.02 0.47 par:pas; +empuantie empuanti adj f s 0 0.34 0 0.14 +empuanties empuantir ver f p 0.03 1.22 0 0.07 par:pas; +empuantir empuantir ver 0.03 1.22 0.01 0.2 inf; +empuantis empuantir ver m p 0.03 1.22 0 0.07 par:pas; +empuantissaient empuantir ver 0.03 1.22 0 0.07 ind:imp:3p; +empuantissait empuantir ver 0.03 1.22 0 0.14 ind:imp:3s; +empuantisse empuantir ver 0.03 1.22 0 0.07 sub:pre:3s; +empuantissent empuantir ver 0.03 1.22 0 0.07 ind:pre:3p; +empyrée empyrée nom m s 0 0.81 0 0.74 +empyrées empyrée nom m p 0 0.81 0 0.07 +empâta empâter ver 0.11 1.76 0 0.07 ind:pas:3s; +empâtait empâter ver 0.11 1.76 0.01 0.54 ind:imp:3s; +empâte empâter ver 0.11 1.76 0.06 0.27 ind:pre:1s;ind:pre:3s; +empâtement empâtement nom m s 0.03 0.54 0.01 0.41 +empâtements empâtement nom m p 0.03 0.54 0.01 0.14 +empâtent empâter ver 0.11 1.76 0 0.14 ind:pre:3p; +empâter empâter ver 0.11 1.76 0.03 0.27 inf; +empâté empâté adj m s 0.04 1.35 0.01 0.54 +empâtée empâté adj f s 0.04 1.35 0.01 0.41 +empâtées empâté adj f p 0.04 1.35 0.02 0.14 +empâtés empâté adj m p 0.04 1.35 0 0.27 +empêcha empêcher ver 121.85 171.28 0.35 5 ind:pas:3s; +empêchai empêcher ver 121.85 171.28 0 0.61 ind:pas:1s; +empêchaient empêcher ver 121.85 171.28 0.1 4.59 ind:imp:3p; +empêchais empêcher ver 121.85 171.28 0.23 0.27 ind:imp:1s;ind:imp:2s; +empêchait empêcher ver 121.85 171.28 2.52 18.58 ind:imp:3s; +empêchant empêcher ver 121.85 171.28 1.06 3.11 par:pre; +empêche empêcher ver 121.85 171.28 31.46 41.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empêchement empêchement nom m s 1.25 1.42 1.23 1.01 +empêchements empêchement nom m p 1.25 1.42 0.02 0.41 +empêchent empêcher ver 121.85 171.28 2.74 4.59 ind:pre:3p; +empêcher empêcher ver 121.85 171.28 55.99 70.2 inf; +empêchera empêcher ver 121.85 171.28 4.89 2.43 ind:fut:3s; +empêcherai empêcher ver 121.85 171.28 1.57 0.34 ind:fut:1s; +empêcheraient empêcher ver 121.85 171.28 0.22 0.47 cnd:pre:3p; +empêcherais empêcher ver 121.85 171.28 0.57 0.27 cnd:pre:1s;cnd:pre:2s; +empêcherait empêcher ver 121.85 171.28 1.35 2.64 cnd:pre:3s; +empêcheras empêcher ver 121.85 171.28 0.88 0.47 ind:fut:2s; +empêcherez empêcher ver 121.85 171.28 0.37 0.34 ind:fut:2p; +empêcherons empêcher ver 121.85 171.28 0.28 0.07 ind:fut:1p; +empêcheront empêcher ver 121.85 171.28 0.54 0.54 ind:fut:3p; +empêches empêcher ver 121.85 171.28 1.36 0.34 ind:pre:2s; +empêcheur empêcheur nom m s 0.08 0.68 0.04 0.41 +empêcheurs empêcheur nom m p 0.08 0.68 0.04 0.2 +empêcheuse empêcheur nom f s 0.08 0.68 0.01 0.07 +empêchez empêcher ver 121.85 171.28 4.53 0.34 imp:pre:2p;ind:pre:2p; +empêchions empêcher ver 121.85 171.28 0.08 0.07 ind:imp:1p; +empêchons empêcher ver 121.85 171.28 0.39 0.2 imp:pre:1p;ind:pre:1p; +empêchât empêcher ver 121.85 171.28 0 0.27 sub:imp:3s; +empêchèrent empêcher ver 121.85 171.28 0.16 1.28 ind:pas:3p; +empêché empêcher ver m s 121.85 171.28 7.81 9.26 par:pas; +empêchée empêcher ver f s 121.85 171.28 1.58 2.3 par:pas; +empêchées empêcher ver f p 121.85 171.28 0.02 0.14 par:pas; +empêchés empêcher ver m p 121.85 171.28 0.8 1.42 par:pas; +empêtra empêtrer ver 0.76 5.2 0 0.34 ind:pas:3s; +empêtraient empêtrer ver 0.76 5.2 0.02 0.2 ind:imp:3p; +empêtrais empêtrer ver 0.76 5.2 0 0.2 ind:imp:1s; +empêtrait empêtrer ver 0.76 5.2 0 1.01 ind:imp:3s; +empêtrant empêtrer ver 0.76 5.2 0 0.27 par:pre; +empêtre empêtrer ver 0.76 5.2 0.02 0.54 ind:pre:1s;ind:pre:3s; +empêtrent empêtrer ver 0.76 5.2 0 0.07 ind:pre:3p; +empêtrer empêtrer ver 0.76 5.2 0.2 0.14 inf; +empêtrons empêtrer ver 0.76 5.2 0 0.07 ind:pre:1p; +empêtré empêtrer ver m s 0.76 5.2 0.19 1.35 par:pas; +empêtrée empêtrer ver f s 0.76 5.2 0.17 0.41 par:pas; +empêtrées empêtrer ver f p 0.76 5.2 0.14 0.27 par:pas; +empêtrés empêtrer ver m p 0.76 5.2 0.01 0.34 par:pas; +en en pre 5689.68 8732.57 5689.68 8732.57 +en_catimini en_catimini adv 0.12 1.42 0.12 1.42 +en_loucedé en_loucedé adv 0.16 0.47 0.16 0.47 +en_tapinois en_tapinois adv 0.25 0.68 0.25 0.68 +en_avant en_avant nom m 0.01 0.07 0.01 0.07 +en_but en_but nom m 0.32 0 0.32 0 +en_cas en_cas nom m 1.44 1.08 1.44 1.08 +en_cours en_cours nom m 0.01 0 0.01 0 +en_dehors en_dehors nom m 0.36 0.07 0.36 0.07 +en_tête en_tête nom m s 0.44 2.77 0.39 2.64 +en_tête en_tête nom m p 0.44 2.77 0.05 0.14 +enamouré enamourer ver m s 0.02 0.07 0.01 0 par:pas; +enamourée enamouré adj f s 0.1 0.2 0.1 0.14 +enamourées enamouré adj f p 0.1 0.2 0 0.07 +enamourés enamourer ver m p 0.02 0.07 0 0.07 par:pas; +encabanée encabaner ver f s 0 0.07 0 0.07 par:pas; +encablure encablure nom f s 0.07 0.88 0.04 0.2 +encablures encablure nom f p 0.07 0.88 0.02 0.68 +encadra encadrer ver 2.51 24.26 0 0.61 ind:pas:3s; +encadraient encadrer ver 2.51 24.26 0.02 2.84 ind:imp:3p; +encadrait encadrer ver 2.51 24.26 0.01 2.3 ind:imp:3s; +encadrant encadrant adj m s 0 2.16 0 2.16 +encadre encadrer ver 2.51 24.26 0.24 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encadrement encadrement nom m s 0.64 6.49 0.41 6.08 +encadrements encadrement nom m p 0.64 6.49 0.23 0.41 +encadrent encadrer ver 2.51 24.26 0.04 1.42 ind:pre:3p; +encadrer encadrer ver 2.51 24.26 1.45 2.43 inf; +encadrera encadrer ver 2.51 24.26 0 0.07 ind:fut:3s; +encadrerai encadrer ver 2.51 24.26 0.02 0 ind:fut:1s; +encadreraient encadrer ver 2.51 24.26 0.01 0.07 cnd:pre:3p; +encadrerait encadrer ver 2.51 24.26 0 0.2 cnd:pre:3s; +encadreront encadrer ver 2.51 24.26 0.01 0.07 ind:fut:3p; +encadreur encadreur nom m s 0.16 0.34 0.16 0.34 +encadrez encadrer ver 2.51 24.26 0.03 0 imp:pre:2p; +encadrions encadrer ver 2.51 24.26 0 0.07 ind:imp:1p; +encadrèrent encadrer ver 2.51 24.26 0 0.47 ind:pas:3p; +encadré encadrer ver m s 2.51 24.26 0.24 5.27 par:pas; +encadrée encadrer ver f s 2.51 24.26 0.23 3.51 par:pas; +encadrées encadrer ver f p 2.51 24.26 0.04 1.55 par:pas; +encadrés encadrer ver m p 2.51 24.26 0.16 1.76 par:pas; +encagent encager ver 0.13 0.54 0 0.07 ind:pre:3p; +encager encager ver 0.13 0.54 0 0.14 inf; +encagez encager ver 0.13 0.54 0.02 0 imp:pre:2p; +encagoulées encagoulé adj f p 0.01 0.07 0 0.07 +encagoulés encagoulé nom m p 0.14 0 0.14 0 +encagé encager ver m s 0.13 0.54 0.11 0.07 par:pas; +encagée encager ver f s 0.13 0.54 0 0.2 par:pas; +encagés encagé adj m p 0.02 0.47 0 0.27 +encaissa encaisser ver 10.35 10.27 0 0.41 ind:pas:3s; +encaissable encaissable adj s 0.01 0 0.01 0 +encaissai encaisser ver 10.35 10.27 0 0.2 ind:pas:1s; +encaissaient encaisser ver 10.35 10.27 0 0.2 ind:imp:3p; +encaissais encaisser ver 10.35 10.27 0.14 0.41 ind:imp:1s; +encaissait encaisser ver 10.35 10.27 0.05 0.88 ind:imp:3s; +encaissant encaisser ver 10.35 10.27 0.03 0.2 par:pre; +encaisse encaisser ver 10.35 10.27 2.37 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encaissement encaissement nom m s 0.51 0.2 0.35 0.14 +encaissements encaissement nom m p 0.51 0.2 0.16 0.07 +encaissent encaisser ver 10.35 10.27 0.24 0.07 ind:pre:3p; +encaisser encaisser ver 10.35 10.27 4.84 3.78 inf; +encaissera encaisser ver 10.35 10.27 0.17 0 ind:fut:3s; +encaisserai encaisser ver 10.35 10.27 0.08 0.07 ind:fut:1s; +encaisserais encaisser ver 10.35 10.27 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +encaisserait encaisser ver 10.35 10.27 0.01 0.07 cnd:pre:3s; +encaisserez encaisser ver 10.35 10.27 0.12 0 ind:fut:2p; +encaisseront encaisser ver 10.35 10.27 0.02 0 ind:fut:3p; +encaisses encaisser ver 10.35 10.27 0.14 0.14 ind:pre:2s; +encaisseur encaisseur nom m s 0.69 0.61 0.67 0.47 +encaisseurs encaisseur nom m p 0.69 0.61 0.03 0.14 +encaissez encaisser ver 10.35 10.27 0.37 0 imp:pre:2p;ind:pre:2p; +encaissons encaisser ver 10.35 10.27 0.01 0 ind:pre:1p; +encaissât encaisser ver 10.35 10.27 0 0.07 sub:imp:3s; +encaissé encaisser ver m s 10.35 10.27 1.47 0.74 par:pas; +encaissée encaisser ver f s 10.35 10.27 0.03 0.34 par:pas; +encaissées encaisser ver f p 10.35 10.27 0.01 0.34 par:pas; +encaissés encaisser ver m p 10.35 10.27 0.23 0.07 par:pas; +encalminé encalminé adj m s 0 0.2 0 0.07 +encalminés encalminé adj m p 0 0.2 0 0.14 +encanaillais encanailler ver 0.35 1.28 0.01 0 ind:imp:2s; +encanaillait encanailler ver 0.35 1.28 0.01 0.2 ind:imp:3s; +encanaille encanailler ver 0.35 1.28 0.18 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encanaillement encanaillement nom m s 0 0.07 0 0.07 +encanaillent encanailler ver 0.35 1.28 0.03 0 ind:pre:3p; +encanailler encanailler ver 0.35 1.28 0.13 0.61 inf; +encanaillé encanailler ver m s 0.35 1.28 0 0.2 par:pas; +encapsuler encapsuler ver 0.04 0 0.01 0 inf; +encapsulé encapsuler ver m s 0.04 0 0.03 0 par:pas; +encapuchonna encapuchonner ver 0 1.08 0 0.14 ind:pas:3s; +encapuchonnait encapuchonner ver 0 1.08 0 0.14 ind:imp:3s; +encapuchonnant encapuchonner ver 0 1.08 0 0.07 par:pre; +encapuchonne encapuchonner ver 0 1.08 0 0.2 ind:pre:3s; +encapuchonné encapuchonner ver m s 0 1.08 0 0.14 par:pas; +encapuchonnée encapuchonné adj f s 0.13 0.68 0.03 0.14 +encapuchonnées encapuchonner ver f p 0 1.08 0 0.07 par:pas; +encapuchonnés encapuchonné adj m p 0.13 0.68 0.1 0.41 +encaqués encaquer ver m p 0 0.14 0 0.14 par:pas; +encart encart nom m s 0.09 0.34 0.05 0.27 +encartage encartage nom m s 0 0.07 0 0.07 +encartait encarter ver 0.14 0.68 0 0.07 ind:imp:3s; +encarter encarter ver 0.14 0.68 0.14 0.07 inf; +encarts encart nom m p 0.09 0.34 0.04 0.07 +encarté encarter ver m s 0.14 0.68 0 0.27 par:pas; +encartées encarter ver f p 0.14 0.68 0 0.14 par:pas; +encartés encarter ver m p 0.14 0.68 0 0.14 par:pas; +encas encas nom m 0.4 0.14 0.4 0.14 +encaserner encaserner ver 0 0.07 0 0.07 inf; +encastelé encasteler ver m s 0 0.07 0 0.07 par:pas; +encastra encastrer ver 0.35 5.07 0 0.27 ind:pas:3s; +encastraient encastrer ver 0.35 5.07 0 0.14 ind:imp:3p; +encastrait encastrer ver 0.35 5.07 0 0.2 ind:imp:3s; +encastrant encastrer ver 0.35 5.07 0.01 0.07 par:pre; +encastre encastrer ver 0.35 5.07 0.06 0.27 ind:pre:1s;ind:pre:3s; +encastrement encastrement nom m s 0.01 0 0.01 0 +encastrent encastrer ver 0.35 5.07 0.01 0 ind:pre:3p; +encastrer encastrer ver 0.35 5.07 0.03 0.47 inf; +encastré encastrer ver m s 0.35 5.07 0.13 1.28 par:pas; +encastrée encastrer ver f s 0.35 5.07 0.04 1.22 par:pas; +encastrées encastrer ver f p 0.35 5.07 0.02 0.34 par:pas; +encastrés encastrer ver m p 0.35 5.07 0.04 0.81 par:pas; +encaustiquait encaustiquer ver 0.03 0.2 0 0.07 ind:imp:3s; +encaustique encaustique nom f s 0.04 2.64 0.04 2.64 +encaustiquer encaustiquer ver 0.03 0.2 0.02 0.14 inf; +encaustiqué encaustiqué adj m s 0 0.27 0 0.14 +encaustiquée encaustiqué adj f s 0 0.27 0 0.14 +encaver encaver ver 0 0.14 0 0.07 inf; +encavée encaver ver f s 0 0.14 0 0.07 par:pas; +enceint enceindre ver m s 0.32 0.41 0.32 0.34 ind:pre:3s;par:pas; +enceinte enceinte adj f s 48.6 12.43 46.41 11.08 +enceinter enceinter ver 0.01 0 0.01 0 inf; +enceintes enceinte adj f p 48.6 12.43 2.19 1.35 +enceints enceindre ver m p 0.32 0.41 0 0.07 par:pas; +encellulement encellulement nom m s 0 0.07 0 0.07 +encellulée encelluler ver f s 0 0.2 0 0.14 par:pas; +encellulées encelluler ver f p 0 0.2 0 0.07 par:pas; +encens encens nom m 2.44 7.91 2.44 7.91 +encensaient encenser ver 0.33 1.22 0 0.2 ind:imp:3p; +encensait encenser ver 0.33 1.22 0.01 0.14 ind:imp:3s; +encensant encenser ver 0.33 1.22 0 0.07 par:pre; +encense encenser ver 0.33 1.22 0.2 0.27 ind:pre:1s;ind:pre:3s; +encensement encensement nom m s 0.01 0 0.01 0 +encenser encenser ver 0.33 1.22 0.04 0.34 inf; +encensoir encensoir nom m s 0.14 1.01 0.04 0.68 +encensoirs encensoir nom m p 0.14 1.01 0.1 0.34 +encensé encenser ver m s 0.33 1.22 0.08 0.14 par:pas; +encensés encenser ver m p 0.33 1.22 0 0.07 par:pas; +encercla encercler ver 8.62 7.5 0.01 0.14 ind:pas:3s; +encerclaient encercler ver 8.62 7.5 0.04 1.08 ind:imp:3p; +encerclais encercler ver 8.62 7.5 0.01 0 ind:imp:2s; +encerclait encercler ver 8.62 7.5 0.02 0.61 ind:imp:3s; +encerclant encercler ver 8.62 7.5 0.13 0.41 par:pre; +encercle encercler ver 8.62 7.5 0.73 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encerclement encerclement nom m s 0.03 0.88 0.03 0.88 +encerclent encercler ver 8.62 7.5 0.8 0.61 ind:pre:3p; +encercler encercler ver 8.62 7.5 0.85 0.54 inf; +encerclera encercler ver 8.62 7.5 0.16 0 ind:fut:3s; +encercleraient encercler ver 8.62 7.5 0 0.07 cnd:pre:3p; +encerclez encercler ver 8.62 7.5 1 0 imp:pre:2p;ind:pre:2p; +encerclons encercler ver 8.62 7.5 0.04 0 imp:pre:1p;ind:pre:1p; +encerclèrent encercler ver 8.62 7.5 0.01 0.07 ind:pas:3p; +encerclé encercler ver m s 8.62 7.5 2.06 2.03 par:pas; +encerclée encercler ver f s 8.62 7.5 0.62 0.41 par:pas; +encerclées encercler ver f p 8.62 7.5 0.06 0.2 par:pas; +encerclés encercler ver m p 8.62 7.5 2.06 0.68 par:pas; +enchanta enchanter ver 15.57 22.43 0.1 1.55 ind:pas:3s; +enchantaient enchanter ver 15.57 22.43 0.12 1.22 ind:imp:3p; +enchantais enchanter ver 15.57 22.43 0 0.27 ind:imp:1s; +enchantait enchanter ver 15.57 22.43 0.61 3.65 ind:imp:3s; +enchantant enchanter ver 15.57 22.43 0.03 0.2 par:pre; +enchante enchanter ver 15.57 22.43 4.25 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enchantement enchantement nom m s 1.53 7.7 1.46 6.82 +enchantements enchantement nom m p 1.53 7.7 0.07 0.88 +enchantent enchanter ver 15.57 22.43 0.21 0.68 ind:pre:3p; +enchanter enchanter ver 15.57 22.43 0.56 1.62 inf; +enchantera enchanter ver 15.57 22.43 0.04 0.07 ind:fut:3s; +enchanteraient enchanter ver 15.57 22.43 0 0.07 cnd:pre:3p; +enchanterait enchanter ver 15.57 22.43 0.09 0.07 cnd:pre:3s; +enchanteresse enchanteur adj f s 1.88 2.64 0.55 0.47 +enchanteresses enchanteur adj f p 1.88 2.64 0.03 0.14 +enchanteront enchanter ver 15.57 22.43 0 0.07 ind:fut:3p; +enchantes enchanter ver 15.57 22.43 0 0.14 ind:pre:2s; +enchanteur enchanteur adj m s 1.88 2.64 1.25 1.22 +enchanteurs enchanteur nom m p 1.22 1.49 0.1 0.14 +enchantez enchanter ver 15.57 22.43 0.02 0 ind:pre:2p; +enchantions enchanter ver 15.57 22.43 0 0.07 ind:imp:1p; +enchantèrent enchanter ver 15.57 22.43 0 0.27 ind:pas:3p; +enchanté enchanté adj m s 55 7.97 35.28 4.26 +enchantée enchanté adj f s 55 7.97 18.96 2.43 +enchantées enchanté adj f p 55 7.97 0.2 0.27 +enchantés enchanter ver m p 15.57 22.43 0.68 1.69 par:pas; +enchaîna enchaîner ver 7.58 21.76 0.05 3.99 ind:pas:3s; +enchaînai enchaîner ver 7.58 21.76 0 0.14 ind:pas:1s; +enchaînaient enchaîner ver 7.58 21.76 0.03 0.68 ind:imp:3p; +enchaînais enchaîner ver 7.58 21.76 0.14 0.07 ind:imp:1s; +enchaînait enchaîner ver 7.58 21.76 0.04 2.23 ind:imp:3s; +enchaînant enchaîner ver 7.58 21.76 0.01 0.68 par:pre; +enchaîne enchaîner ver 7.58 21.76 0.93 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enchaînement enchaînement nom m s 1.22 4.59 0.89 3.72 +enchaînements enchaînement nom m p 1.22 4.59 0.33 0.88 +enchaînent enchaîner ver 7.58 21.76 0.41 1.01 ind:pre:3p; +enchaîner enchaîner ver 7.58 21.76 1.46 2.43 inf; +enchaînera enchaîner ver 7.58 21.76 0.01 0.07 ind:fut:3s; +enchaîneraient enchaîner ver 7.58 21.76 0.01 0 cnd:pre:3p; +enchaînerait enchaîner ver 7.58 21.76 0.02 0.07 cnd:pre:3s; +enchaîneras enchaîner ver 7.58 21.76 0.01 0 ind:fut:2s; +enchaînerez enchaîner ver 7.58 21.76 0.01 0 ind:fut:2p; +enchaînerons enchaîner ver 7.58 21.76 0 0.07 ind:fut:1p; +enchaînez enchaîner ver 7.58 21.76 0.4 0 imp:pre:2p;ind:pre:2p; +enchaînons enchaîner ver 7.58 21.76 0.16 0.27 imp:pre:1p;ind:pre:1p; +enchaînèrent enchaîner ver 7.58 21.76 0.01 0.2 ind:pas:3p; +enchaîné enchaîner ver m s 7.58 21.76 2.39 4.32 par:pas; +enchaînée enchaîner ver f s 7.58 21.76 0.47 0.41 par:pas; +enchaînées enchaîner ver f p 7.58 21.76 0.5 0.47 par:pas; +enchaînés enchaîner ver m p 7.58 21.76 0.53 1.15 par:pas; +enchemisé enchemiser ver m s 0 0.07 0 0.07 par:pas; +enchevêtraient enchevêtrer ver 0.21 2.3 0 0.41 ind:imp:3p; +enchevêtrais enchevêtrer ver 0.21 2.3 0 0.07 ind:imp:1s; +enchevêtrant enchevêtrer ver 0.21 2.3 0 0.07 par:pre; +enchevêtre enchevêtrer ver 0.21 2.3 0 0.27 ind:pre:3s; +enchevêtrement enchevêtrement nom m s 0.11 3.78 0.09 3.38 +enchevêtrements enchevêtrement nom m p 0.11 3.78 0.01 0.41 +enchevêtrent enchevêtrer ver 0.21 2.3 0.02 0.34 ind:pre:3p; +enchevêtré enchevêtrer ver m s 0.21 2.3 0.02 0 par:pas; +enchevêtrée enchevêtrer ver f s 0.21 2.3 0.14 0 par:pas; +enchevêtrées enchevêtré adj f p 0.04 2.5 0.02 0.95 +enchevêtrés enchevêtrer ver m p 0.21 2.3 0.02 0.68 par:pas; +enchifrené enchifrener ver m s 0 0.07 0 0.07 par:pas; +enchriste enchrister ver 0.14 0.47 0 0.07 ind:pre:3s; +enchrister enchrister ver 0.14 0.47 0.14 0.07 inf; +enchristé enchrister ver m s 0.14 0.47 0 0.27 par:pas; +enchristée enchrister ver f s 0.14 0.47 0 0.07 par:pas; +enchtiber enchtiber ver 0 0.47 0 0.14 inf; +enchtibé enchtiber ver m s 0 0.47 0 0.27 par:pas; +enchtibés enchtiber ver m p 0 0.47 0 0.07 par:pas; +enchâssaient enchâsser ver 0.07 1.89 0 0.07 ind:imp:3p; +enchâssait enchâsser ver 0.07 1.89 0 0.07 ind:imp:3s; +enchâssant enchâsser ver 0.07 1.89 0.01 0.14 par:pre; +enchâsse enchâsser ver 0.07 1.89 0 0.07 ind:pre:3s; +enchâsser enchâsser ver 0.07 1.89 0 0.14 inf; +enchâssé enchâsser ver m s 0.07 1.89 0.03 0.54 par:pas; +enchâssée enchâsser ver f s 0.07 1.89 0.02 0.47 par:pas; +enchâssés enchâsser ver m p 0.07 1.89 0.01 0.41 par:pas; +enchère enchère nom f s 6.67 1.89 0.88 0.07 +enchères enchère nom f p 6.67 1.89 5.79 1.82 +enchéri enchérir ver m s 0.55 0.41 0.05 0.07 par:pas; +enchérir enchérir ver 0.55 0.41 0.37 0.14 inf; +enchérissant enchérir ver 0.55 0.41 0 0.07 par:pre; +enchérisse enchérir ver 0.55 0.41 0.09 0 sub:pre:1s;sub:pre:3s; +enchérisseur enchérisseur nom m s 0.29 0 0.14 0 +enchérisseurs enchérisseur nom m p 0.29 0 0.14 0 +enchérisseuse enchérisseur nom f s 0.29 0 0.01 0 +enchérit enchérir ver 0.55 0.41 0.04 0.14 ind:pre:3s; +enclave enclave nom f s 0.21 1.49 0.13 0.95 +enclaves enclave nom f p 0.21 1.49 0.09 0.54 +enclavé enclavé adj m s 0.02 0.07 0.01 0 +enclavée enclavé adj f s 0.02 0.07 0.01 0 +enclavées enclavé adj f p 0.02 0.07 0 0.07 +enclencha enclencher ver 2.74 2.43 0 0.14 ind:pas:3s; +enclenchai enclencher ver 2.74 2.43 0 0.07 ind:pas:1s; +enclenchait enclencher ver 2.74 2.43 0 0.14 ind:imp:3s; +enclenchant enclencher ver 2.74 2.43 0.04 0.14 par:pre; +enclenche enclencher ver 2.74 2.43 0.93 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enclenchement enclenchement nom m s 0.06 0.07 0.06 0.07 +enclenchent enclencher ver 2.74 2.43 0.06 0.14 ind:pre:3p; +enclencher enclencher ver 2.74 2.43 0.46 0.47 inf; +enclenchera enclencher ver 2.74 2.43 0.04 0 ind:fut:3s; +enclenches enclencher ver 2.74 2.43 0.01 0.07 ind:pre:2s; +enclenchez enclencher ver 2.74 2.43 0.55 0 imp:pre:2p; +enclenché enclenché adj m s 1.06 0.27 0.8 0.07 +enclenchée enclenché adj f s 1.06 0.27 0.21 0.14 +enclenchées enclencher ver f p 2.74 2.43 0.03 0 par:pas; +enclenchés enclenché adj m p 1.06 0.27 0.04 0.07 +enclin enclin adj m s 2.33 5.07 1.61 2.77 +encline enclin adj f s 2.33 5.07 0.32 0.54 +enclines enclin adj f p 2.33 5.07 0 0.14 +enclins enclin adj m p 2.33 5.07 0.41 1.62 +encliqueter encliqueter ver 0.01 0 0.01 0 inf; +encloqué encloquer ver m s 0.03 0 0.03 0 par:pas; +enclore enclore ver 0 1.28 0 0.14 inf; +enclos enclos nom m 2.95 6.01 2.95 6.01 +enclose enclore ver f s 0 1.28 0 0.2 par:pas; +encloses enclore ver f p 0 1.28 0 0.41 par:pas; +enclosure enclosure nom f s 0.01 0.07 0.01 0.07 +enclouer enclouer ver 0 0.07 0 0.07 inf; +encloîtrer encloîtrer ver 0 0.07 0 0.07 inf; +enclume enclume nom f s 0.82 5.2 0.49 5.14 +enclumes enclume nom f p 0.82 5.2 0.33 0.07 +encoche encoche nom f s 0.26 2.23 0.13 1.49 +encoches encoche nom f p 0.26 2.23 0.13 0.74 +encoché encocher ver m s 0 0.07 0 0.07 par:pas; +encoconner encoconner ver 0 0.2 0 0.07 inf; +encoconnée encoconner ver f s 0 0.2 0 0.14 par:pas; +encodage encodage nom m s 0.06 0 0.06 0 +encode encoder ver 1.08 0 0.03 0 ind:pre:1s;ind:pre:3s; +encoder encoder ver 1.08 0 0.06 0 inf; +encodeur encodeur nom m s 0.06 0 0.06 0 +encodé encoder ver m s 1.08 0 0.89 0 par:pas; +encodée encoder ver f s 1.08 0 0.05 0 par:pas; +encodés encoder ver m p 1.08 0 0.05 0 par:pas; +encoignure encoignure nom f s 0 4.19 0 3.04 +encoignures encoignure nom f p 0 4.19 0 1.15 +encollage encollage nom m s 0 0.07 0 0.07 +encollait encoller ver 0 0.34 0 0.07 ind:imp:3s; +encoller encoller ver 0 0.34 0 0.07 inf; +encolleuses encolleur nom f p 0 0.07 0 0.07 +encollé encoller ver m s 0 0.34 0 0.07 par:pas; +encollée encoller ver f s 0 0.34 0 0.07 par:pas; +encollées encoller ver f p 0 0.34 0 0.07 par:pas; +encolure encolure nom f s 0.17 6.69 0.17 6.01 +encolures encolure nom f p 0.17 6.69 0 0.68 +encolérée encoléré adj f s 0 0.14 0 0.07 +encolérés encoléré adj m p 0 0.14 0 0.07 +encombra encombrer ver 2.22 30.41 0 0.14 ind:pas:3s; +encombraient encombrer ver 2.22 30.41 0.02 3.24 ind:imp:3p; +encombrais encombrer ver 2.22 30.41 0 0.07 ind:imp:1s; +encombrait encombrer ver 2.22 30.41 0.14 2.3 ind:imp:3s; +encombrant encombrant adj m s 1.42 6.08 0.47 2.7 +encombrante encombrant adj f s 1.42 6.08 0.5 1.55 +encombrantes encombrant adj f p 1.42 6.08 0.01 0.47 +encombrants encombrant adj m p 1.42 6.08 0.45 1.35 +encombre encombre nom m s 0.71 1.69 0.47 1.55 +encombrement encombrement nom m s 0.23 3.72 0.05 2.23 +encombrements encombrement nom m p 0.23 3.72 0.18 1.49 +encombrent encombrer ver 2.22 30.41 0.1 1.82 ind:pre:3p; +encombrer encombrer ver 2.22 30.41 0.47 3.65 inf; +encombrera encombrer ver 2.22 30.41 0.01 0.2 ind:fut:3s; +encombrerai encombrer ver 2.22 30.41 0.11 0 ind:fut:1s; +encombrerait encombrer ver 2.22 30.41 0 0.07 cnd:pre:3s; +encombres encombre nom m p 0.71 1.69 0.25 0.14 +encombrez encombrer ver 2.22 30.41 0.08 0.07 imp:pre:2p;ind:pre:2p; +encombrèrent encombrer ver 2.22 30.41 0 0.07 ind:pas:3p; +encombré encombrer ver m s 2.22 30.41 0.35 5.34 par:pas; +encombrée encombrer ver f s 2.22 30.41 0.17 6.49 par:pas; +encombrées encombrer ver f p 2.22 30.41 0.09 2.5 par:pas; +encombrés encombrer ver m p 2.22 30.41 0.17 2.09 par:pas; +encor encor adv 0.42 0.27 0.42 0.27 +encorbellement encorbellement nom m s 0.02 1.01 0.01 0.68 +encorbellements encorbellement nom m p 0.02 1.01 0.01 0.34 +encorder encorder ver 0.11 0.47 0.1 0.2 inf; +encordé encorder ver m s 0.11 0.47 0.01 0.07 par:pas; +encordée encorder ver f s 0.11 0.47 0 0.07 par:pas; +encordés encorder ver m p 0.11 0.47 0 0.14 par:pas; +encore encore adv_sup 1176.94 1579.05 1176.94 1579.05 +encornaient encorner ver 0.2 0.07 0 0.07 ind:imp:3p; +encorner encorner ver 0.2 0.07 0.2 0 inf; +encornet encornet nom m s 0.15 0.07 0.14 0 +encornets encornet nom m p 0.15 0.07 0.01 0.07 +encorné encorné adj m s 0 0.27 0 0.07 +encornée encorné adj f s 0 0.27 0 0.07 +encornés encorné adj m p 0 0.27 0 0.14 +encotonne encotonner ver 0 0.14 0 0.07 sub:pre:3s; +encotonner encotonner ver 0 0.14 0 0.07 inf; +encourage encourager ver 15.24 27.57 3.99 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +encouragea encourager ver 15.24 27.57 0.02 1.08 ind:pas:3s; +encourageai encourager ver 15.24 27.57 0 0.47 ind:pas:1s; +encourageaient encourager ver 15.24 27.57 0.25 1.08 ind:imp:3p; +encourageais encourager ver 15.24 27.57 0.14 0.68 ind:imp:1s;ind:imp:2s; +encourageait encourager ver 15.24 27.57 0.44 3.58 ind:imp:3s; +encourageant encourageant adj m s 1.49 3.31 1.05 1.89 +encourageante encourageant adj f s 1.49 3.31 0.14 0.61 +encourageantes encourageant adj f p 1.49 3.31 0.07 0.54 +encourageants encourageant adj m p 1.49 3.31 0.24 0.27 +encourageas encourager ver 15.24 27.57 0 0.07 ind:pas:2s; +encouragement encouragement nom m s 2.18 6.42 1 3.65 +encouragements encouragement nom m p 2.18 6.42 1.18 2.77 +encouragent encourager ver 15.24 27.57 0.82 0.34 ind:pre:3p; +encourageons encourager ver 15.24 27.57 0.42 0.07 imp:pre:1p;ind:pre:1p; +encourager encourager ver 15.24 27.57 4.42 7.03 inf; +encouragera encourager ver 15.24 27.57 0.11 0.07 ind:fut:3s; +encouragerai encourager ver 15.24 27.57 0.09 0.14 ind:fut:1s; +encouragerais encourager ver 15.24 27.57 0.1 0.07 cnd:pre:1s;cnd:pre:2s; +encouragerait encourager ver 15.24 27.57 0.08 0.07 cnd:pre:3s; +encourageras encourager ver 15.24 27.57 0.03 0 ind:fut:2s; +encourages encourager ver 15.24 27.57 0.52 0.2 ind:pre:2s; +encouragez encourager ver 15.24 27.57 0.57 0.14 imp:pre:2p;ind:pre:2p; +encourageât encourager ver 15.24 27.57 0 0.14 sub:imp:3s; +encouragiez encourager ver 15.24 27.57 0.05 0.07 ind:imp:2p; +encouragèrent encourager ver 15.24 27.57 0.01 0.2 ind:pas:3p; +encouragé encourager ver m s 15.24 27.57 1.79 4.32 par:pas; +encouragée encourager ver f s 15.24 27.57 0.73 1.35 par:pas; +encouragées encourager ver f p 15.24 27.57 0.04 0.2 par:pas; +encouragés encourager ver m p 15.24 27.57 0.23 1.22 par:pas; +encouraient encourir ver 1.1 2.3 0.03 0.14 ind:imp:3p; +encourais encourir ver 1.1 2.3 0.03 0 ind:imp:1s;ind:imp:2s; +encourait encourir ver 1.1 2.3 0.01 0.34 ind:imp:3s; +encourant encourir ver 1.1 2.3 0.01 0.07 par:pre; +encourent encourir ver 1.1 2.3 0.05 0.07 ind:pre:3p; +encourir encourir ver 1.1 2.3 0.1 0.81 inf; +encourrait encourir ver 1.1 2.3 0.02 0.07 cnd:pre:3s; +encours encourir ver 1.1 2.3 0.04 0 ind:pre:1s; +encourt encourir ver 1.1 2.3 0.23 0.14 ind:pre:3s; +encouru encourir ver m s 1.1 2.3 0.24 0.2 par:pas; +encourue encourir ver f s 1.1 2.3 0.13 0.07 par:pas; +encourues encourir ver f p 1.1 2.3 0.04 0.2 par:pas; +encourus encourir ver m p 1.1 2.3 0.16 0.2 par:pas; +encrage encrage nom m s 0.02 0.07 0.02 0.07 +encrait encrer ver 0.1 0.61 0 0.07 ind:imp:3s; +encrassait encrasser ver 0.34 0.68 0 0.07 ind:imp:3s; +encrasse encrasser ver 0.34 0.68 0.14 0.07 ind:pre:3s; +encrassent encrasser ver 0.34 0.68 0 0.07 ind:pre:3p; +encrasser encrasser ver 0.34 0.68 0.01 0.14 inf; +encrassé encrasser ver m s 0.34 0.68 0.05 0.14 par:pas; +encrassée encrasser ver f s 0.34 0.68 0.11 0.14 par:pas; +encrassées encrassé adj f p 0.02 0.27 0.01 0.07 +encrassés encrasser ver m p 0.34 0.68 0.02 0.07 par:pas; +encre encre nom f s 6.81 29.53 6.49 28.65 +encrer encrer ver 0.1 0.61 0.02 0 inf; +encres encre nom f p 6.81 29.53 0.32 0.88 +encreur encreur adj m s 0.07 0.07 0.07 0 +encreurs encreur adj m p 0.07 0.07 0 0.07 +encrier encrier nom m s 0.45 4.26 0.43 3.51 +encriers encrier nom m p 0.45 4.26 0.02 0.74 +encrotté encrotter ver m s 0 0.07 0 0.07 par:pas; +encroûtaient encroûter ver 0.18 0.95 0 0.07 ind:imp:3p; +encroûte encroûter ver 0.18 0.95 0.02 0 ind:pre:1s; +encroûtement encroûtement nom m s 0.01 0 0.01 0 +encroûter encroûter ver 0.18 0.95 0.15 0.07 inf; +encroûtèrent encroûter ver 0.18 0.95 0 0.07 ind:pas:3p; +encroûté encroûter ver m s 0.18 0.95 0.01 0.07 par:pas; +encroûtée encroûter ver f s 0.18 0.95 0 0.14 par:pas; +encroûtées encroûter ver f p 0.18 0.95 0 0.27 par:pas; +encroûtés encroûté nom m p 0.01 0.14 0.01 0.07 +encryptage encryptage nom m s 0.03 0 0.03 0 +encrypté encrypter ver m s 0.02 0 0.02 0 par:pas; +encré encrer ver m s 0.1 0.61 0.01 0.07 par:pas; +encrée encrer ver f s 0.1 0.61 0 0.07 par:pas; +encrés encrer ver m p 0.1 0.61 0.05 0.2 par:pas; +enculade enculade nom f s 0.33 0.14 0.2 0.07 +enculades enculade nom f p 0.33 0.14 0.14 0.07 +enculage enculage nom m s 0.06 0.07 0.06 0.07 +enculant enculer ver 15.43 5.27 0.13 0 par:pre; +encule enculer ver 15.43 5.27 2.36 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enculent enculer ver 15.43 5.27 0.09 0.34 ind:pre:3p; +enculer enculer ver 15.43 5.27 5.88 1.89 inf; +enculera enculer ver 15.43 5.27 0.01 0 ind:fut:3s; +enculerais enculer ver 15.43 5.27 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +enculerait enculer ver 15.43 5.27 0 0.07 cnd:pre:3s; +enculerie enculerie nom f s 0.01 0.47 0 0.27 +enculeries enculerie nom f p 0.01 0.47 0.01 0.2 +encules enculer ver 15.43 5.27 0.29 0.14 ind:pre:2s; +enculeur enculeur nom m s 0.54 0.68 0.35 0.54 +enculeurs enculeur nom m p 0.54 0.68 0.18 0.14 +enculé enculé adj m s 31.77 4.73 22.73 3.45 +enculée enculer ver f s 15.43 5.27 0.2 0.2 par:pas; +enculées enculé adj f p 31.77 4.73 0.23 0 +enculés enculé adj m p 31.77 4.73 8.78 1.22 +encyclique encyclique nom f s 0.04 0.27 0.04 0.2 +encycliques encyclique nom f p 0.04 0.27 0 0.07 +encyclopédie encyclopédie nom f s 1.99 2.64 1.14 1.28 +encyclopédies encyclopédie nom f p 1.99 2.64 0.85 1.35 +encyclopédique encyclopédique adj s 0.12 0.74 0.12 0.61 +encyclopédiques encyclopédique adj f p 0.12 0.74 0 0.14 +encyclopédistes encyclopédiste nom p 0 0.14 0 0.14 +encéphale encéphale nom m s 0.01 0.07 0.01 0.07 +encéphalique encéphalique adj s 0.04 0.14 0.04 0 +encéphaliques encéphalique adj p 0.04 0.14 0 0.14 +encéphalite encéphalite nom f s 0.48 0.07 0.48 0.07 +encéphalogramme encéphalogramme nom m s 0.58 0.2 0.58 0.2 +encéphalographie encéphalographie nom f s 0.02 0.07 0.02 0.07 +encéphalopathie encéphalopathie nom f s 0.05 0 0.05 0 +endettait endetter ver 1.41 1.01 0.01 0.07 ind:imp:3s; +endettant endetter ver 1.41 1.01 0 0.07 par:pre; +endette endetter ver 1.41 1.01 0.02 0.14 ind:pre:3s; +endettement endettement nom m s 0.09 0.07 0.09 0.07 +endetter endetter ver 1.41 1.01 0.18 0.27 inf; +endettez endetter ver 1.41 1.01 0.14 0 imp:pre:2p;ind:pre:2p; +endetté endetter ver m s 1.41 1.01 0.79 0.34 par:pas; +endettée endetté adj f s 0.45 0.2 0.23 0.07 +endettées endetter ver f p 1.41 1.01 0.01 0 par:pas; +endettés endetter ver m p 1.41 1.01 0.14 0 par:pas; +endeuille endeuiller ver 0.19 0.81 0 0.14 ind:pre:3s; +endeuillent endeuiller ver 0.19 0.81 0.01 0 ind:pre:3p; +endeuiller endeuiller ver 0.19 0.81 0.01 0.14 inf; +endeuillerai endeuiller ver 0.19 0.81 0.14 0 ind:fut:1s; +endeuillé endeuillé adj m s 0.2 1.35 0.11 0.2 +endeuillée endeuillé adj f s 0.2 1.35 0.06 0.61 +endeuillées endeuillé adj f p 0.2 1.35 0.01 0.2 +endeuillés endeuillé adj m p 0.2 1.35 0.02 0.34 +endiable endiabler ver 0.03 0.47 0 0.14 ind:pre:3s; +endiablent endiabler ver 0.03 0.47 0 0.07 ind:pre:3p; +endiablerez endiabler ver 0.03 0.47 0 0.07 ind:fut:2p; +endiablé endiablé adj m s 0.43 1.22 0.17 0.34 +endiablée endiablé adj f s 0.43 1.22 0.19 0.61 +endiablées endiablé adj f p 0.43 1.22 0.06 0.2 +endiablés endiablé adj m p 0.43 1.22 0.01 0.07 +endiamanté endiamanté adj m s 0.01 0.61 0 0.14 +endiamantée endiamanté adj f s 0.01 0.61 0.01 0.2 +endiamantées endiamanté adj f p 0.01 0.61 0 0.2 +endiamantés endiamanté adj m p 0.01 0.61 0 0.07 +endigua endiguer ver 0.56 1.82 0 0.14 ind:pas:3s; +endiguait endiguer ver 0.56 1.82 0 0.07 ind:imp:3s; +endigue endiguer ver 0.56 1.82 0.03 0 ind:pre:3s; +endiguement endiguement nom m s 0.11 0 0.11 0 +endiguer endiguer ver 0.56 1.82 0.4 1.35 inf; +endiguera endiguer ver 0.56 1.82 0.01 0 ind:fut:3s; +endigué endiguer ver m s 0.56 1.82 0.1 0.07 par:pas; +endiguée endiguer ver f s 0.56 1.82 0.01 0.2 par:pas; +endigués endiguer ver m p 0.56 1.82 0.01 0 par:pas; +endimanchait endimancher ver 0.04 1.08 0 0.07 ind:imp:3s; +endimanchement endimanchement nom m s 0 0.07 0 0.07 +endimancher endimancher ver 0.04 1.08 0 0.14 inf; +endimanché endimanché adj m s 0.21 3.18 0.06 0.61 +endimanchée endimanché adj f s 0.21 3.18 0.04 0.54 +endimanchées endimanché adj f p 0.21 3.18 0 0.74 +endimanchés endimanché adj m p 0.21 3.18 0.11 1.28 +endive endive nom f s 0.87 0.95 0.03 0.14 +endives endive nom f p 0.87 0.95 0.84 0.81 +endivisionnés endivisionner ver m p 0 0.07 0 0.07 par:pas; +endocarde endocarde nom m s 0.01 0 0.01 0 +endocardite endocardite nom f s 0.14 0 0.14 0 +endocrine endocrine adj f s 0.02 0.2 0.01 0.07 +endocrines endocrine adj f p 0.02 0.2 0.01 0.14 +endocrinien endocrinien adj m s 0.04 0.07 0.01 0 +endocrinienne endocrinien adj f s 0.04 0.07 0.02 0 +endocriniens endocrinien adj m p 0.04 0.07 0.01 0.07 +endocrinologie endocrinologie nom f s 0.07 0.27 0.07 0.27 +endocrinologiste endocrinologiste nom s 0.01 0 0.01 0 +endocrinologue endocrinologue nom s 0.04 0.07 0.04 0.07 +endoctrina endoctriner ver 0.2 0.34 0 0.07 ind:pas:3s; +endoctrinement endoctrinement nom m s 0.13 0.27 0.13 0.27 +endoctriner endoctriner ver 0.2 0.34 0.04 0.14 inf; +endoctriné endoctriner ver m s 0.2 0.34 0.01 0.07 par:pas; +endoctrinée endoctriner ver f s 0.2 0.34 0.11 0.07 par:pas; +endoctrinés endoctriner ver m p 0.2 0.34 0.05 0 par:pas; +endogamie endogamie nom f s 0.02 0.34 0.02 0.34 +endogène endogène adj f s 0.03 0.14 0.03 0.14 +endolori endolori adj m s 0.5 1.28 0.29 0.27 +endolorie endolorir ver f s 0.16 0.74 0.1 0.2 par:pas; +endolories endolori adj f p 0.5 1.28 0.01 0.2 +endolorir endolorir ver 0.16 0.74 0 0.07 inf; +endoloris endolori adj m p 0.5 1.28 0.16 0.2 +endolorissement endolorissement nom m s 0.03 0.2 0.03 0.2 +endommagea endommager ver 5.28 1.82 0 0.07 ind:pas:3s; +endommageant endommager ver 5.28 1.82 0.06 0.07 par:pre; +endommagement endommagement nom m s 0.02 0 0.01 0 +endommagements endommagement nom m p 0.02 0 0.01 0 +endommager endommager ver 5.28 1.82 1.23 0.47 inf; +endommagera endommager ver 5.28 1.82 0.07 0 ind:fut:3s; +endommagerait endommager ver 5.28 1.82 0.03 0 cnd:pre:3s; +endommagerez endommager ver 5.28 1.82 0.03 0 ind:fut:2p; +endommagez endommager ver 5.28 1.82 0.15 0 imp:pre:2p;ind:pre:2p; +endommagé endommager ver m s 5.28 1.82 2.4 0.88 par:pas; +endommagée endommager ver f s 5.28 1.82 0.69 0.14 par:pas; +endommagées endommager ver f p 5.28 1.82 0.14 0.07 par:pas; +endommagés endommager ver m p 5.28 1.82 0.49 0.14 par:pas; +endomorphe endomorphe adj s 0.01 0 0.01 0 +endomorphine endomorphine nom f s 0.01 0 0.01 0 +endométriose endométriose nom f s 0.04 0 0.04 0 +endométrite endométrite nom f s 0.01 0 0.01 0 +endoplasmique endoplasmique adj m s 0.03 0 0.03 0 +endormaient endormir ver 48.19 73.18 0.14 1.55 ind:imp:3p; +endormais endormir ver 48.19 73.18 0.42 1.96 ind:imp:1s;ind:imp:2s; +endormait endormir ver 48.19 73.18 0.5 5.81 ind:imp:3s; +endormant endormir ver 48.19 73.18 0.35 1.35 par:pre; +endormante endormant adj f s 0.04 0.14 0.01 0.07 +endorme endormir ver 48.19 73.18 1.3 0.95 sub:pre:1s;sub:pre:3s; +endorment endormir ver 48.19 73.18 0.98 1.28 ind:pre:3p; +endormes endormir ver 48.19 73.18 0.22 0.07 sub:pre:2s; +endormeur endormeur nom m s 0.02 0.2 0.02 0.14 +endormeurs endormeur nom m p 0.02 0.2 0 0.07 +endormez endormir ver 48.19 73.18 0.73 0.2 imp:pre:2p;ind:pre:2p; +endormi endormir ver m s 48.19 73.18 12.83 11.22 par:pas; +endormie endormi adj f s 13.43 32.3 8.84 16.96 +endormies endormi adj f p 13.43 32.3 0.37 2.7 +endormions endormir ver 48.19 73.18 0.16 0.2 ind:imp:1p; +endormir endormir ver 48.19 73.18 15.36 24.39 inf; +endormira endormir ver 48.19 73.18 0.94 0.27 ind:fut:3s; +endormirai endormir ver 48.19 73.18 0.47 0.2 ind:fut:1s; +endormiraient endormir ver 48.19 73.18 0 0.14 cnd:pre:3p; +endormirais endormir ver 48.19 73.18 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +endormirait endormir ver 48.19 73.18 0.02 0.47 cnd:pre:3s; +endormirent endormir ver 48.19 73.18 0.02 0.27 ind:pas:3p; +endormirez endormir ver 48.19 73.18 0.04 0.07 ind:fut:2p; +endormirions endormir ver 48.19 73.18 0.01 0 cnd:pre:1p; +endormiront endormir ver 48.19 73.18 0.06 0.14 ind:fut:3p; +endormis endormi adj m p 13.43 32.3 1.27 4.05 +endormisse endormir ver 48.19 73.18 0 0.07 sub:imp:1s; +endormissement endormissement nom m s 0.04 0.07 0.04 0 +endormissements endormissement nom m p 0.04 0.07 0 0.07 +endormit endormir ver 48.19 73.18 0.2 7.77 ind:pas:3s; +endormons endormir ver 48.19 73.18 0.29 0.27 imp:pre:1p;ind:pre:1p; +endormîmes endormir ver 48.19 73.18 0 0.2 ind:pas:1p; +endormît endormir ver 48.19 73.18 0 0.07 sub:imp:3s; +endorphine endorphine nom f s 1.33 0.07 0.29 0 +endorphines endorphine nom f p 1.33 0.07 1.04 0.07 +endors endormir ver 48.19 73.18 6.08 3.85 imp:pre:2s;ind:pre:1s;ind:pre:2s; +endort endormir ver 48.19 73.18 5.67 5.34 ind:pre:3s; +endoscope endoscope nom m s 0.15 0 0.15 0 +endoscopie endoscopie nom f s 0.25 0.07 0.25 0.07 +endoscopique endoscopique adj s 0.01 0 0.01 0 +endosquelette endosquelette nom m s 0.01 0 0.01 0 +endossa endosser ver 2.29 5.68 0 0.34 ind:pas:3s; +endossables endossable adj m p 0.01 0 0.01 0 +endossai endosser ver 2.29 5.68 0.01 0.07 ind:pas:1s; +endossaient endosser ver 2.29 5.68 0 0.07 ind:imp:3p; +endossais endosser ver 2.29 5.68 0.01 0.07 ind:imp:1s; +endossait endosser ver 2.29 5.68 0.01 0.34 ind:imp:3s; +endossant endosser ver 2.29 5.68 0.12 0.27 par:pre; +endosse endosser ver 2.29 5.68 0.28 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +endossement endossement nom m s 0.26 0 0.26 0 +endossent endosser ver 2.29 5.68 0.02 0.07 ind:pre:3p; +endosser endosser ver 2.29 5.68 1.13 2.36 inf; +endosserai endosser ver 2.29 5.68 0.04 0 ind:fut:1s; +endosserais endosser ver 2.29 5.68 0 0.07 cnd:pre:1s; +endosserait endosser ver 2.29 5.68 0 0.14 cnd:pre:3s; +endosseras endosser ver 2.29 5.68 0.01 0 ind:fut:2s; +endosses endosser ver 2.29 5.68 0.03 0 ind:pre:2s; +endosseur endosseur nom m s 0 0.07 0 0.07 +endossez endosser ver 2.29 5.68 0.23 0.07 imp:pre:2p;ind:pre:2p; +endossiez endosser ver 2.29 5.68 0.01 0.07 ind:imp:2p; +endossât endosser ver 2.29 5.68 0 0.14 sub:imp:3s; +endossèrent endosser ver 2.29 5.68 0 0.14 ind:pas:3p; +endossé endosser ver m s 2.29 5.68 0.24 0.68 par:pas; +endossée endosser ver f s 2.29 5.68 0.1 0.14 par:pas; +endossées endosser ver f p 2.29 5.68 0 0.07 par:pas; +endossés endosser ver m p 2.29 5.68 0.05 0 par:pas; +endothermique endothermique adj f s 0.01 0 0.01 0 +endroit endroit nom m s 218.24 137.57 196.75 108.65 +endroits endroit nom m p 218.24 137.57 21.48 28.92 +enduira enduire ver 1.25 7.5 0.01 0 ind:fut:3s; +enduirais enduire ver 1.25 7.5 0 0.07 cnd:pre:1s; +enduirait enduire ver 1.25 7.5 0 0.07 cnd:pre:3s; +enduire enduire ver 1.25 7.5 0.18 1.35 inf; +enduis enduire ver 1.25 7.5 0.2 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +enduisaient enduire ver 1.25 7.5 0 0.27 ind:imp:3p; +enduisait enduire ver 1.25 7.5 0 0.61 ind:imp:3s; +enduisant enduire ver 1.25 7.5 0 0.27 par:pre; +enduisent enduire ver 1.25 7.5 0.12 0.2 ind:pre:3p; +enduisit enduire ver 1.25 7.5 0 0.34 ind:pas:3s; +enduisons enduire ver 1.25 7.5 0.11 0 imp:pre:1p;ind:pre:1p; +enduit enduire ver m s 1.25 7.5 0.49 1.42 ind:pre:3s;par:pas; +enduite enduire ver f s 1.25 7.5 0.07 1.15 par:pas; +enduites enduire ver f p 1.25 7.5 0.03 0.81 par:pas; +enduits enduire ver m p 1.25 7.5 0.04 0.88 par:pas; +endura endurer ver 9.67 7.57 0 0.14 ind:pas:3s; +endurable endurable adj s 0 0.07 0 0.07 +enduraient endurer ver 9.67 7.57 0.02 0.07 ind:imp:3p; +endurais endurer ver 9.67 7.57 0.02 0.07 ind:imp:1s; +endurait endurer ver 9.67 7.57 0.04 0.2 ind:imp:3s; +endurance endurance nom f s 1.72 2.43 1.72 2.43 +endurant endurant adj m s 0.14 0.34 0.1 0.14 +endurante endurant adj f s 0.14 0.34 0.03 0.07 +endurants endurant adj m p 0.14 0.34 0.01 0.14 +endurci endurcir ver m s 2.11 2.09 0.51 0.61 par:pas; +endurcie endurcir ver f s 2.11 2.09 0.28 0.2 par:pas; +endurcies endurci adj f p 1.19 1.28 0.01 0 +endurcir endurcir ver 2.11 2.09 0.91 0.68 inf; +endurcirait endurcir ver 2.11 2.09 0.01 0 cnd:pre:3s; +endurcis endurci adj m p 1.19 1.28 0.43 0.61 +endurcissait endurcir ver 2.11 2.09 0.01 0 ind:imp:3s; +endurcissement endurcissement nom m s 0.4 0.61 0.4 0.61 +endurcit endurcir ver 2.11 2.09 0.24 0.34 ind:pre:3s;ind:pas:3s; +endure endurer ver 9.67 7.57 1.58 0.47 ind:pre:1s;ind:pre:3s; +endurent endurer ver 9.67 7.57 0.17 0.07 ind:pre:3p; +endurer endurer ver 9.67 7.57 3.7 3.58 inf; +endurera endurer ver 9.67 7.57 0 0.07 ind:fut:3s; +endurerai endurer ver 9.67 7.57 0.14 0 ind:fut:1s; +endureras endurer ver 9.67 7.57 0.01 0 ind:fut:2s; +endurez endurer ver 9.67 7.57 0.4 0 imp:pre:2p;ind:pre:2p; +enduriez endurer ver 9.67 7.57 0.01 0 ind:imp:2p; +endurons endurer ver 9.67 7.57 0.02 0 ind:pre:1p; +enduré endurer ver m s 9.67 7.57 3.08 1.82 par:pas; +endurée endurer ver f s 9.67 7.57 0.05 0.14 par:pas; +endurées endurer ver f p 9.67 7.57 0.19 0.54 par:pas; +endurés endurer ver m p 9.67 7.57 0.16 0.27 par:pas; +endémique endémique adj s 0.11 1.01 0.11 0.88 +endémiques endémique adj f p 0.11 1.01 0 0.14 +endêver endêver ver 0 0.07 0 0.07 inf; +enfance enfance nom f s 33.01 103.99 32.7 103.11 +enfances enfance nom f p 33.01 103.99 0.31 0.88 +enfant enfant nom s 735.59 725.68 287.26 381.96 +enfant_robot enfant_robot nom s 0.17 0 0.16 0 +enfant_roi enfant_roi nom s 0.02 0.2 0.02 0.14 +enfanta enfanter ver 1.96 3.99 0 0.14 ind:pas:3s; +enfantaient enfanter ver 1.96 3.99 0 0.07 ind:imp:3p; +enfantait enfanter ver 1.96 3.99 0 0.34 ind:imp:3s; +enfante enfanter ver 1.96 3.99 0.2 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfantelets enfantelet nom m p 0 0.07 0 0.07 +enfantement enfantement nom m s 0.25 0.81 0.25 0.74 +enfantements enfantement nom m p 0.25 0.81 0 0.07 +enfantent enfanter ver 1.96 3.99 0.16 0.2 ind:pre:3p; +enfanter enfanter ver 1.96 3.99 0.8 1.08 inf; +enfantera enfanter ver 1.96 3.99 0.27 0 ind:fut:3s; +enfanterai enfanter ver 1.96 3.99 0.02 0.07 ind:fut:1s; +enfantillage enfantillage nom m s 1.47 3.58 0.15 1.96 +enfantillages enfantillage nom m p 1.47 3.58 1.32 1.62 +enfantin enfantin adj m s 3.39 31.15 0.89 11.01 +enfantine enfantin adj f s 3.39 31.15 2.07 13.99 +enfantinement enfantinement adv 0.1 0.41 0.1 0.41 +enfantines enfantin adj f p 3.39 31.15 0.24 3.51 +enfantins enfantin adj m p 3.39 31.15 0.19 2.64 +enfantons enfanter ver 1.96 3.99 0 0.07 ind:pre:1p; +enfants enfant nom m p 735.59 725.68 448.33 343.72 +enfant_robot enfant_robot nom m p 0.17 0 0.01 0 +enfant_roi enfant_roi nom m p 0.02 0.2 0 0.07 +enfanté enfanter ver m s 1.96 3.99 0.4 1.01 par:pas; +enfantée enfanter ver f s 1.96 3.99 0.11 0.2 par:pas; +enfantées enfanter ver f p 1.96 3.99 0 0.07 par:pas; +enfantés enfanter ver m p 1.96 3.99 0 0.2 par:pas; +enfançon enfançon nom m s 0.1 0.34 0 0.27 +enfançons enfançon nom m p 0.1 0.34 0.1 0.07 +enfarinait enfariner ver 0.12 0.41 0 0.07 ind:imp:3s; +enfarine enfariner ver 0.12 0.41 0.1 0.07 imp:pre:2s;ind:pre:3s; +enfariner enfariner ver 0.12 0.41 0.01 0.07 inf; +enfariné enfariner ver m s 0.12 0.41 0.01 0.07 par:pas; +enfarinée enfariné adj f s 0.36 0.88 0.35 0.41 +enfarinés enfariné adj m p 0.36 0.88 0.01 0.2 +enfer enfer nom m s 88.86 41.35 86.02 38.78 +enferma enfermer ver 58.81 69.86 0.29 4.12 ind:pas:3s; +enfermai enfermer ver 58.81 69.86 0.02 0.47 ind:pas:1s; +enfermaient enfermer ver 58.81 69.86 0.05 1.69 ind:imp:3p; +enfermais enfermer ver 58.81 69.86 0.2 0.47 ind:imp:1s;ind:imp:2s; +enfermait enfermer ver 58.81 69.86 0.64 5.41 ind:imp:3s; +enfermant enfermer ver 58.81 69.86 0.12 2.23 par:pre; +enferme enfermer ver 58.81 69.86 6.32 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enfermement enfermement nom m s 0.2 0.61 0.2 0.61 +enferment enfermer ver 58.81 69.86 0.76 1.28 ind:pre:3p; +enfermer enfermer ver 58.81 69.86 12.7 13.92 inf;; +enfermera enfermer ver 58.81 69.86 0.34 0.07 ind:fut:3s; +enfermerai enfermer ver 58.81 69.86 0.33 0.14 ind:fut:1s; +enfermeraient enfermer ver 58.81 69.86 0.05 0 cnd:pre:3p; +enfermerais enfermer ver 58.81 69.86 0.08 0.2 cnd:pre:1s; +enfermerait enfermer ver 58.81 69.86 0.35 0.2 cnd:pre:3s; +enfermerez enfermer ver 58.81 69.86 0.01 0.07 ind:fut:2p; +enfermerons enfermer ver 58.81 69.86 0.03 0.14 ind:fut:1p; +enfermeront enfermer ver 58.81 69.86 0.65 0 ind:fut:3p; +enfermes enfermer ver 58.81 69.86 1.27 0.34 ind:pre:2s; +enfermez enfermer ver 58.81 69.86 4.78 0.41 imp:pre:2p;ind:pre:2p; +enfermiez enfermer ver 58.81 69.86 0.03 0.07 ind:imp:2p; +enfermons enfermer ver 58.81 69.86 0.45 0 imp:pre:1p;ind:pre:1p; +enfermèrent enfermer ver 58.81 69.86 0.23 0.34 ind:pas:3p; +enfermé enfermer ver m s 58.81 69.86 15.25 17.03 par:pas; +enfermée enfermer ver f s 58.81 69.86 8.38 7.57 par:pas; +enfermées enfermer ver f p 58.81 69.86 1.31 1.55 par:pas; +enfermés enfermer ver m p 58.81 69.86 4.17 6.42 par:pas; +enferra enferrer ver 0.23 0.95 0 0.07 ind:pas:3s; +enferrait enferrer ver 0.23 0.95 0 0.07 ind:imp:3s; +enferrant enferrer ver 0.23 0.95 0 0.07 par:pre; +enferre enferrer ver 0.23 0.95 0.01 0.14 ind:pre:1s;ind:pre:3s; +enferrent enferrer ver 0.23 0.95 0 0.07 ind:pre:3p; +enferrer enferrer ver 0.23 0.95 0.16 0.27 inf; +enferres enferrer ver 0.23 0.95 0.01 0.07 ind:pre:2s; +enferrez enferrer ver 0.23 0.95 0.01 0 ind:pre:2p; +enferrons enferrer ver 0.23 0.95 0.01 0 ind:pre:1p; +enferré enferrer ver m s 0.23 0.95 0.02 0.14 par:pas; +enferrée enferrer ver f s 0.23 0.95 0 0.07 par:pas; +enfers enfer nom m p 88.86 41.35 2.85 2.57 +enfiche enficher ver 0 0.07 0 0.07 ind:pre:1s; +enfila enfiler ver 11.42 44.86 0.11 8.99 ind:pas:3s; +enfilade enfilade nom f s 0.16 6.28 0.16 5 +enfilades enfilade nom f p 0.16 6.28 0 1.28 +enfilage enfilage nom m s 0 0.2 0 0.2 +enfilai enfiler ver 11.42 44.86 0.01 1.76 ind:pas:1s; +enfilaient enfiler ver 11.42 44.86 0.02 0.54 ind:imp:3p; +enfilais enfiler ver 11.42 44.86 0.12 0.61 ind:imp:1s; +enfilait enfiler ver 11.42 44.86 0.05 3.65 ind:imp:3s; +enfilant enfiler ver 11.42 44.86 0.14 2.16 par:pre; +enfile enfiler ver 11.42 44.86 4.46 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfilent enfiler ver 11.42 44.86 0.06 0.54 ind:pre:3p; +enfiler enfiler ver 11.42 44.86 2.74 10.95 inf; +enfilera enfiler ver 11.42 44.86 0.1 0 ind:fut:3s; +enfilerai enfiler ver 11.42 44.86 0.02 0.27 ind:fut:1s; +enfileraient enfiler ver 11.42 44.86 0 0.07 cnd:pre:3p; +enfilerais enfiler ver 11.42 44.86 0.06 0.14 cnd:pre:1s; +enfilerait enfiler ver 11.42 44.86 0 0.34 cnd:pre:3s; +enfilerez enfiler ver 11.42 44.86 0.01 0 ind:fut:2p; +enfileront enfiler ver 11.42 44.86 0.01 0 ind:fut:3p; +enfiles enfiler ver 11.42 44.86 0.42 0.34 ind:pre:2s; +enfileur enfileur nom m s 0 0.14 0 0.14 +enfilez enfiler ver 11.42 44.86 1.2 0.2 imp:pre:2p;ind:pre:2p; +enfilions enfiler ver 11.42 44.86 0 0.2 ind:imp:1p; +enfilons enfiler ver 11.42 44.86 0.09 0.07 imp:pre:1p;ind:pre:1p; +enfilèrent enfiler ver 11.42 44.86 0.11 0.54 ind:pas:3p; +enfilé enfiler ver m s 11.42 44.86 1.35 6.28 par:pas; +enfilée enfiler ver f s 11.42 44.86 0.28 0.68 par:pas; +enfilées enfiler ver f p 11.42 44.86 0.01 0.41 par:pas; +enfilés enfiler ver m p 11.42 44.86 0.04 0.34 par:pas; +enfin enfin adv_sup 265.83 440.27 265.83 440.27 +enfièvre enfiévrer ver 0.03 1.42 0 0.2 ind:pre:3s; +enfièvrent enfiévrer ver 0.03 1.42 0 0.07 ind:pre:3p; +enfiévra enfiévrer ver 0.03 1.42 0 0.07 ind:pas:3s; +enfiévraient enfiévrer ver 0.03 1.42 0 0.14 ind:imp:3p; +enfiévrait enfiévrer ver 0.03 1.42 0 0.27 ind:imp:3s; +enfiévré enfiévré adj m s 0.12 0.74 0.09 0.2 +enfiévrée enfiévrer ver f s 0.03 1.42 0.01 0.27 par:pas; +enfiévrées enfiévré adj f p 0.12 0.74 0.01 0.07 +enfiévrés enfiévré adj m p 0.12 0.74 0.01 0.2 +enfla enfler ver 2.27 10.95 0.02 1.08 ind:pas:3s; +enflaient enfler ver 2.27 10.95 0 0.68 ind:imp:3p; +enflait enfler ver 2.27 10.95 0.01 1.89 ind:imp:3s; +enflamma enflammer ver 7.25 10.68 0.14 1.55 ind:pas:3s; +enflammai enflammer ver 7.25 10.68 0 0.07 ind:pas:1s; +enflammaient enflammer ver 7.25 10.68 0 0.54 ind:imp:3p; +enflammait enflammer ver 7.25 10.68 0.07 1.82 ind:imp:3s; +enflammant enflammer ver 7.25 10.68 0.11 0.47 par:pre; +enflamme enflammer ver 7.25 10.68 2.68 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enflamment enflammer ver 7.25 10.68 0.44 0.47 ind:pre:3p; +enflammer enflammer ver 7.25 10.68 1.59 0.81 inf; +enflammera enflammer ver 7.25 10.68 0.18 0 ind:fut:3s; +enflammerait enflammer ver 7.25 10.68 0.01 0.07 cnd:pre:3s; +enflammez enflammer ver 7.25 10.68 0.05 0 imp:pre:2p; +enflammât enflammer ver 7.25 10.68 0 0.07 sub:imp:3s; +enflammèrent enflammer ver 7.25 10.68 0.01 0.34 ind:pas:3p; +enflammé enflammé adj m s 2.2 4.59 1 1.28 +enflammée enflammer ver f s 7.25 10.68 0.65 0.61 par:pas; +enflammées enflammer ver f p 7.25 10.68 0.19 0.47 par:pas; +enflammés enflammé adj m p 2.2 4.59 0.56 0.95 +enflant enfler ver 2.27 10.95 0 0.88 par:pre; +enfle enfler ver 2.27 10.95 0.56 1.69 imp:pre:2s;ind:pre:3s; +enflent enfler ver 2.27 10.95 0.26 0.81 ind:pre:3p; +enfler enfler ver 2.27 10.95 0.65 1.49 inf; +enflerait enfler ver 2.27 10.95 0.01 0 cnd:pre:3s; +enfles enfler ver 2.27 10.95 0.02 0.07 ind:pre:2s; +enflure enflure nom f s 2.19 2.36 1.93 2.16 +enflures enflure nom f p 2.19 2.36 0.26 0.2 +enflèrent enfler ver 2.27 10.95 0 0.07 ind:pas:3p; +enflé enflé adj m s 1.93 3.58 0.87 1.35 +enflée enflé adj f s 1.93 3.58 0.49 1.01 +enflées enflé adj f p 1.93 3.58 0.25 0.61 +enflés enflé adj m p 1.93 3.58 0.32 0.61 +enfoiré enfoiré nom m s 39.56 4.53 30.94 3.24 +enfoirée enfoiré adj f s 14.84 0.81 0.16 0.14 +enfoirés enfoiré nom m p 39.56 4.53 8.5 1.22 +enfonce enfoncer ver 23.3 104.8 6.51 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfoncement enfoncement nom m s 0.08 0.61 0.07 0.47 +enfoncements enfoncement nom m p 0.08 0.61 0.01 0.14 +enfoncent enfoncer ver 23.3 104.8 0.68 3.31 ind:pre:3p; +enfoncer enfoncer ver 23.3 104.8 6.88 20.14 inf;; +enfoncera enfoncer ver 23.3 104.8 0.14 0.14 ind:fut:3s; +enfoncerai enfoncer ver 23.3 104.8 0.28 0.07 ind:fut:1s; +enfonceraient enfoncer ver 23.3 104.8 0.02 0 cnd:pre:3p; +enfoncerais enfoncer ver 23.3 104.8 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +enfoncerait enfoncer ver 23.3 104.8 0.03 0.47 cnd:pre:3s; +enfonceras enfoncer ver 23.3 104.8 0.04 0.07 ind:fut:2s; +enfoncerez enfoncer ver 23.3 104.8 0 0.07 ind:fut:2p; +enfoncerions enfoncer ver 23.3 104.8 0 0.07 cnd:pre:1p; +enfoncerons enfoncer ver 23.3 104.8 0.01 0.07 ind:fut:1p; +enfonceront enfoncer ver 23.3 104.8 0.05 0.07 ind:fut:3p; +enfonces enfoncer ver 23.3 104.8 0.92 0.27 ind:pre:2s;sub:pre:2s; +enfonceur enfonceur nom m s 0 0.07 0 0.07 +enfoncez enfoncer ver 23.3 104.8 1.52 0.41 imp:pre:2p;ind:pre:2p; +enfonciez enfoncer ver 23.3 104.8 0.14 0 ind:imp:2p; +enfoncions enfoncer ver 23.3 104.8 0.01 0.34 ind:imp:1p; +enfoncèrent enfoncer ver 23.3 104.8 0.01 1.22 ind:pas:3p; +enfoncé enfoncer ver m s 23.3 104.8 2.6 13.58 par:pas; +enfoncée enfoncer ver f s 23.3 104.8 0.84 5.14 par:pas; +enfoncées enfoncer ver f p 23.3 104.8 0.19 2.7 par:pas; +enfoncés enfoncer ver m p 23.3 104.8 0.4 4.53 par:pas; +enfonça enfoncer ver 23.3 104.8 0.15 9.19 ind:pas:3s; +enfonçage enfonçage nom m s 0 0.07 0 0.07 +enfonçai enfoncer ver 23.3 104.8 0.01 1.49 ind:pas:1s; +enfonçaient enfoncer ver 23.3 104.8 0.04 4.39 ind:imp:3p; +enfonçais enfoncer ver 23.3 104.8 0.34 1.89 ind:imp:1s; +enfonçait enfoncer ver 23.3 104.8 0.4 11.76 ind:imp:3s; +enfonçant enfoncer ver 23.3 104.8 0.47 5.61 par:pre; +enfonçons enfoncer ver 23.3 104.8 0.53 0.34 imp:pre:1p;ind:pre:1p; +enfonçâmes enfoncer ver 23.3 104.8 0 0.14 ind:pas:1p; +enfoui enfouir ver m s 4.3 26.76 1.04 7.57 par:pas; +enfouie enfouir ver f s 4.3 26.76 0.74 4.8 par:pas; +enfouies enfouir ver f p 4.3 26.76 0.62 2.09 par:pas; +enfouillais enfouiller ver 0 0.88 0 0.14 ind:imp:1s; +enfouillant enfouiller ver 0 0.88 0 0.07 par:pre; +enfouille enfouiller ver 0 0.88 0 0.07 ind:pre:3s; +enfouiller enfouiller ver 0 0.88 0 0.2 inf; +enfouillé enfouiller ver m s 0 0.88 0 0.34 par:pas; +enfouillée enfouiller ver f s 0 0.88 0 0.07 par:pas; +enfouir enfouir ver 4.3 26.76 0.71 3.24 inf; +enfouiraient enfouir ver 4.3 26.76 0 0.07 cnd:pre:3p; +enfouis enfouir ver m p 4.3 26.76 0.33 2.36 ind:pre:1s;par:pas;par:pas; +enfouissais enfouir ver 4.3 26.76 0 0.27 ind:imp:1s; +enfouissait enfouir ver 4.3 26.76 0 1.01 ind:imp:3s; +enfouissant enfouir ver 4.3 26.76 0.01 0.88 par:pre; +enfouissement enfouissement nom m s 0.09 0.34 0.09 0.2 +enfouissements enfouissement nom m p 0.09 0.34 0 0.14 +enfouissent enfouir ver 4.3 26.76 0 0.07 ind:pre:3p; +enfouissez enfouir ver 4.3 26.76 0.11 0 imp:pre:2p;ind:pre:2p; +enfouissons enfouir ver 4.3 26.76 0.01 0.07 imp:pre:1p;ind:pre:1p; +enfouit enfouir ver 4.3 26.76 0.73 4.32 ind:pre:3s;ind:pas:3s; +enfouraille enfourailler ver 0 0.14 0 0.14 ind:pre:1s;ind:pre:3s; +enfouraillé enfouraillé adj m s 0.02 0.47 0.02 0.34 +enfouraillée enfouraillé adj f s 0.02 0.47 0 0.07 +enfouraillés enfouraillé adj m p 0.02 0.47 0 0.07 +enfourcha enfourcher ver 0.6 6.49 0.01 1.89 ind:pas:3s; +enfourchai enfourcher ver 0.6 6.49 0 0.27 ind:pas:1s; +enfourchaient enfourcher ver 0.6 6.49 0 0.07 ind:imp:3p; +enfourchais enfourcher ver 0.6 6.49 0.01 0.2 ind:imp:1s;ind:imp:2s; +enfourchait enfourcher ver 0.6 6.49 0 0.54 ind:imp:3s; +enfourchant enfourcher ver 0.6 6.49 0.01 0.27 par:pre; +enfourche enfourcher ver 0.6 6.49 0.23 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfourchement enfourchement nom m s 0 0.07 0 0.07 +enfourcher enfourcher ver 0.6 6.49 0.21 1.01 inf; +enfourcherait enfourcher ver 0.6 6.49 0 0.07 cnd:pre:3s; +enfourchez enfourcher ver 0.6 6.49 0.07 0 imp:pre:2p;ind:pre:2p; +enfourchiez enfourcher ver 0.6 6.49 0 0.07 ind:imp:2p; +enfourchure enfourchure nom f s 0.1 0.07 0.1 0.07 +enfourchèrent enfourcher ver 0.6 6.49 0 0.34 ind:pas:3p; +enfourché enfourcher ver m s 0.6 6.49 0.06 1.01 par:pas; +enfourna enfourner ver 0.47 4.93 0.01 0.47 ind:pas:3s; +enfournage enfournage nom m s 0 0.07 0 0.07 +enfournaient enfourner ver 0.47 4.93 0 0.07 ind:imp:3p; +enfournait enfourner ver 0.47 4.93 0 0.2 ind:imp:3s; +enfournant enfourner ver 0.47 4.93 0 0.27 par:pre; +enfourne enfourner ver 0.47 4.93 0.19 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enfournent enfourner ver 0.47 4.93 0.01 0.14 ind:pre:3p; +enfourner enfourner ver 0.47 4.93 0.24 1.08 inf; +enfourniez enfourner ver 0.47 4.93 0 0.07 ind:imp:2p; +enfournèrent enfourner ver 0.47 4.93 0 0.07 ind:pas:3p; +enfourné enfourner ver m s 0.47 4.93 0.02 0.74 par:pas; +enfournée enfourner ver f s 0.47 4.93 0 0.2 par:pas; +enfournées enfourner ver f p 0.47 4.93 0 0.07 par:pas; +enfournés enfourner ver m p 0.47 4.93 0 0.41 par:pas; +enfreignaient enfreindre ver 6.67 1.96 0.1 0.07 ind:imp:3p; +enfreignais enfreindre ver 6.67 1.96 0.05 0 ind:imp:1s;ind:imp:2s; +enfreignait enfreindre ver 6.67 1.96 0.09 0.2 ind:imp:3s; +enfreignant enfreindre ver 6.67 1.96 0.02 0 par:pre; +enfreignent enfreindre ver 6.67 1.96 0.16 0 ind:pre:3p; +enfreignez enfreindre ver 6.67 1.96 0.19 0 ind:pre:2p; +enfreindra enfreindre ver 6.67 1.96 0.07 0 ind:fut:3s; +enfreindrai enfreindre ver 6.67 1.96 0.03 0 ind:fut:1s; +enfreindrais enfreindre ver 6.67 1.96 0.02 0 cnd:pre:1s; +enfreindre enfreindre ver 6.67 1.96 1.86 1.15 inf; +enfreins enfreindre ver 6.67 1.96 0.47 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +enfreint enfreindre ver m s 6.67 1.96 3.33 0.54 ind:pre:3s;par:pas; +enfreinte enfreindre ver f s 6.67 1.96 0.19 0 par:pas; +enfreintes enfreindre ver f p 6.67 1.96 0.1 0 par:pas; +enfui enfuir ver m s 65.13 37.57 14.79 3.78 par:pas; +enfuie enfuir ver f s 65.13 37.57 8.71 3.38 par:pas;sub:pre:3s; +enfuient enfuir ver 65.13 37.57 2.74 1.01 ind:pre:3p; +enfuies enfuir ver f p 65.13 37.57 0.65 0.68 par:pas;sub:pre:2s; +enfuir enfuir ver 65.13 37.57 20.81 11.69 inf; +enfuira enfuir ver 65.13 37.57 0.56 0.14 ind:fut:3s; +enfuirai enfuir ver 65.13 37.57 0.54 0.2 ind:fut:1s; +enfuiraient enfuir ver 65.13 37.57 0.1 0.14 cnd:pre:3p; +enfuirais enfuir ver 65.13 37.57 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +enfuirait enfuir ver 65.13 37.57 0.3 0.2 cnd:pre:3s; +enfuiras enfuir ver 65.13 37.57 0.07 0 ind:fut:2s; +enfuirent enfuir ver 65.13 37.57 0.41 0.81 ind:pas:3p; +enfuiront enfuir ver 65.13 37.57 0.07 0 ind:fut:3p; +enfuis enfuir ver m p 65.13 37.57 6.83 3.04 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +enfuit enfuir ver 65.13 37.57 6.31 7.97 ind:pre:3s;ind:pas:3s; +enfuma enfumer ver 0.39 1.76 0 0.07 ind:pas:3s; +enfumaient enfumer ver 0.39 1.76 0 0.07 ind:imp:3p; +enfumait enfumer ver 0.39 1.76 0.01 0.2 ind:imp:3s; +enfumer enfumer ver 0.39 1.76 0.2 0.2 inf; +enfumez enfumer ver 0.39 1.76 0.03 0 imp:pre:2p; +enfumé enfumé adj m s 0.35 2.97 0.13 0.54 +enfumée enfumé adj f s 0.35 2.97 0.07 1.22 +enfumées enfumé adj f p 0.35 2.97 0.14 0.54 +enfumés enfumé adj m p 0.35 2.97 0.01 0.68 +enfuyaient enfuir ver 65.13 37.57 0.09 1.22 ind:imp:3p; +enfuyais enfuir ver 65.13 37.57 0.43 0.47 ind:imp:1s;ind:imp:2s; +enfuyait enfuir ver 65.13 37.57 0.67 2.03 ind:imp:3s; +enfuyant enfuir ver 65.13 37.57 0.3 0.68 par:pre; +enfuyez enfuir ver 65.13 37.57 0.41 0 imp:pre:2p;ind:pre:2p; +enfuyiez enfuir ver 65.13 37.57 0.06 0 ind:imp:2p; +enfuyons enfuir ver 65.13 37.57 0.19 0 imp:pre:1p;ind:pre:1p; +engage engager ver 68.22 94.59 10.49 10 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engagea engager ver 68.22 94.59 0.5 11.08 ind:pas:3s; +engageable engageable nom s 0.01 0 0.01 0 +engageai engager ver 68.22 94.59 0.01 1.01 ind:pas:1s; +engageaient engager ver 68.22 94.59 0.4 1.76 ind:imp:3p; +engageais engager ver 68.22 94.59 0.12 0.74 ind:imp:1s;ind:imp:2s; +engageait engager ver 68.22 94.59 0.47 6.89 ind:imp:3s; +engageant engager ver 68.22 94.59 0.52 2.3 par:pre; +engageante engageant adj f s 0.26 3.72 0.05 1.08 +engageantes engageant adj f p 0.26 3.72 0 0.2 +engageants engageant adj m p 0.26 3.72 0 0.2 +engagement engagement nom m s 12.12 18.45 9.46 11.69 +engagements engagement nom m p 12.12 18.45 2.66 6.76 +engagent engager ver 68.22 94.59 0.77 3.31 ind:pre:3p;sub:pre:3p; +engageons engager ver 68.22 94.59 2.55 0.41 imp:pre:1p;ind:pre:1p; +engager engager ver 68.22 94.59 19 21.35 inf;;inf;;inf;;inf;; +engagera engager ver 68.22 94.59 0.54 0.34 ind:fut:3s; +engagerai engager ver 68.22 94.59 0.55 0.07 ind:fut:1s; +engageraient engager ver 68.22 94.59 0.17 0.61 cnd:pre:3p; +engagerais engager ver 68.22 94.59 0.22 0.2 cnd:pre:1s;cnd:pre:2s; +engagerait engager ver 68.22 94.59 0.23 0.54 cnd:pre:3s; +engageriez engager ver 68.22 94.59 0.04 0.07 cnd:pre:2p; +engagerions engager ver 68.22 94.59 0 0.07 cnd:pre:1p; +engagerons engager ver 68.22 94.59 0.08 0.14 ind:fut:1p; +engageront engager ver 68.22 94.59 0.11 0.07 ind:fut:3p; +engages engager ver 68.22 94.59 1.22 0.14 ind:pre:2s;sub:pre:2s; +engagez engager ver 68.22 94.59 2.04 0.54 imp:pre:2p;ind:pre:2p; +engageâmes engager ver 68.22 94.59 0 0.34 ind:pas:1p; +engageât engager ver 68.22 94.59 0 0.54 sub:imp:3s; +engagiez engager ver 68.22 94.59 0.07 0.07 ind:imp:2p; +engagions engager ver 68.22 94.59 0.14 0.41 ind:imp:1p; +engagèrent engager ver 68.22 94.59 0.06 2.3 ind:pas:3p; +engagé engager ver m s 68.22 94.59 21.09 14.53 par:pas; +engagée engager ver f s 68.22 94.59 4.44 7.03 par:pas; +engagées engager ver f p 68.22 94.59 0.22 3.38 par:pas; +engagés engager ver m p 68.22 94.59 2.17 4.39 par:pas; +engazonnée engazonner ver f s 0 0.14 0 0.14 par:pas; +engeance engeance nom f s 0.72 3.11 0.63 3.04 +engeances engeance nom f p 0.72 3.11 0.1 0.07 +engelure engelure nom f s 0.46 0.88 0.02 0 +engelures engelure nom f p 0.46 0.88 0.44 0.88 +engendra engendrer ver 7.53 10.47 0.26 0.27 ind:pas:3s; +engendraient engendrer ver 7.53 10.47 0.01 0.47 ind:imp:3p; +engendrait engendrer ver 7.53 10.47 0.34 0.74 ind:imp:3s; +engendrant engendrer ver 7.53 10.47 0.05 0.41 par:pre; +engendrassent engendrer ver 7.53 10.47 0 0.07 sub:imp:3p; +engendre engendrer ver 7.53 10.47 1.55 2.09 imp:pre:2s;ind:pre:3s; +engendrement engendrement nom m s 0.01 0.2 0.01 0.2 +engendrent engendrer ver 7.53 10.47 0.33 0.74 ind:pre:3p; +engendrer engendrer ver 7.53 10.47 1.75 1.62 inf; +engendrera engendrer ver 7.53 10.47 0.25 0.07 ind:fut:3s; +engendreraient engendrer ver 7.53 10.47 0.01 0 cnd:pre:3p; +engendrerait engendrer ver 7.53 10.47 0.14 0.14 cnd:pre:3s; +engendreuse engendreur adj f s 0 0.07 0 0.07 +engendrez engendrer ver 7.53 10.47 0.06 0.07 imp:pre:2p;ind:pre:2p; +engendrons engendrer ver 7.53 10.47 0 0.07 imp:pre:1p; +engendrèrent engendrer ver 7.53 10.47 0 0.07 ind:pas:3p; +engendré engendrer ver m s 7.53 10.47 1.6 2.43 par:pas; +engendrée engendrer ver f s 7.53 10.47 0.87 0.34 par:pas; +engendrées engendrer ver f p 7.53 10.47 0.06 0.34 par:pas; +engendrés engendrer ver m p 7.53 10.47 0.25 0.54 par:pas; +engin engin nom m s 11.25 16.01 9.41 9.8 +engineering engineering nom m s 0.03 0.07 0.03 0.07 +engins engin nom m p 11.25 16.01 1.84 6.22 +englacé englacer ver m s 0.01 0 0.01 0 par:pas; +englande englander ver 0.01 0.27 0 0.07 ind:pre:1s; +englander englander ver 0.01 0.27 0.01 0.14 inf; +englandés englander ver m p 0.01 0.27 0 0.07 par:pas; +engliche engliche nom s 0.01 0.07 0.01 0.07 +engloba englober ver 0.78 4.53 0.01 0.07 ind:pas:3s; +englobaient englober ver 0.78 4.53 0 0.27 ind:imp:3p; +englobais englober ver 0.78 4.53 0 0.07 ind:imp:1s; +englobait englober ver 0.78 4.53 0.02 1.01 ind:imp:3s; +englobant englober ver 0.78 4.53 0.01 0.74 par:pre; +englobe englober ver 0.78 4.53 0.46 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +englobent englober ver 0.78 4.53 0.02 0.14 ind:pre:3p; +englober englober ver 0.78 4.53 0.06 0.68 inf; +englobera englober ver 0.78 4.53 0.01 0.07 ind:fut:3s; +engloberaient englober ver 0.78 4.53 0 0.07 cnd:pre:3p; +engloberait englober ver 0.78 4.53 0.01 0 cnd:pre:3s; +englobé englober ver m s 0.78 4.53 0.03 0.14 par:pas; +englobée englober ver f s 0.78 4.53 0.02 0.07 par:pas; +englobées englober ver f p 0.78 4.53 0.14 0.14 par:pas; +englobés englober ver m p 0.78 4.53 0 0.07 par:pas; +englouti engloutir ver m s 4.57 22.3 0.98 4.66 par:pas; +engloutie engloutir ver f s 4.57 22.3 0.6 2.3 par:pas; +englouties engloutir ver f p 4.57 22.3 0.02 1.08 par:pas; +engloutir engloutir ver 4.57 22.3 1.28 4.73 inf; +engloutira engloutir ver 4.57 22.3 0.07 0.14 ind:fut:3s; +engloutiraient engloutir ver 4.57 22.3 0 0.07 cnd:pre:3p; +engloutirait engloutir ver 4.57 22.3 0.02 0.14 cnd:pre:3s; +engloutirent engloutir ver 4.57 22.3 0.14 0.07 ind:pas:3p; +engloutirons engloutir ver 4.57 22.3 0 0.07 ind:fut:1p; +engloutis engloutir ver m p 4.57 22.3 0.34 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +engloutissaient engloutir ver 4.57 22.3 0.02 0.81 ind:imp:3p; +engloutissais engloutir ver 4.57 22.3 0.01 0.14 ind:imp:1s; +engloutissait engloutir ver 4.57 22.3 0.12 1.35 ind:imp:3s; +engloutissant engloutir ver 4.57 22.3 0.01 0.61 par:pre; +engloutisse engloutir ver 4.57 22.3 0.06 0.2 sub:pre:1s;sub:pre:3s; +engloutissement engloutissement nom m s 0.01 0.54 0.01 0.54 +engloutissent engloutir ver 4.57 22.3 0.06 0.74 ind:pre:3p; +engloutissions engloutir ver 4.57 22.3 0 0.07 ind:imp:1p; +engloutit engloutir ver 4.57 22.3 0.83 2.77 ind:pre:3s;ind:pas:3s; +engluaient engluer ver 0.4 5.2 0 0.2 ind:imp:3p; +engluait engluer ver 0.4 5.2 0 0.54 ind:imp:3s; +engluant engluer ver 0.4 5.2 0.01 0 par:pre; +englue engluer ver 0.4 5.2 0.01 0.61 ind:pre:3s; +engluent engluer ver 0.4 5.2 0 0.34 ind:pre:3p; +engluer engluer ver 0.4 5.2 0.02 0.74 inf; +englué engluer ver m s 0.4 5.2 0.2 1.01 par:pas; +engluée engluer ver f s 0.4 5.2 0.14 0.61 par:pas; +engluées engluer ver f p 0.4 5.2 0 0.61 par:pas; +englués engluer ver m p 0.4 5.2 0.03 0.54 par:pas; +engonce engoncer ver 0.05 4.19 0.02 0.14 ind:pre:3s; +engoncement engoncement nom m s 0 0.07 0 0.07 +engoncé engoncer ver m s 0.05 4.19 0.03 1.69 par:pas; +engoncée engoncer ver f s 0.05 4.19 0 0.74 par:pas; +engoncées engoncer ver f p 0.05 4.19 0 0.41 par:pas; +engoncés engoncer ver m p 0.05 4.19 0 0.88 par:pas; +engonçaient engoncer ver 0.05 4.19 0 0.14 ind:imp:3p; +engonçait engoncer ver 0.05 4.19 0 0.14 ind:imp:3s; +engonçant engoncer ver 0.05 4.19 0 0.07 par:pre; +engorge engorger ver 0.07 1.15 0 0.14 ind:pre:3s; +engorgeaient engorger ver 0.07 1.15 0 0.07 ind:imp:3p; +engorgeait engorger ver 0.07 1.15 0 0.2 ind:imp:3s; +engorgement engorgement nom m s 0.04 0.27 0.04 0.07 +engorgements engorgement nom m p 0.04 0.27 0 0.2 +engorgent engorger ver 0.07 1.15 0.01 0.14 ind:pre:3p; +engorger engorger ver 0.07 1.15 0.01 0.07 inf; +engorgeraient engorger ver 0.07 1.15 0 0.07 cnd:pre:3p; +engorgèrent engorger ver 0.07 1.15 0 0.07 ind:pas:3p; +engorgé engorgé adj m s 0.07 0.47 0.02 0.14 +engorgée engorgé adj f s 0.07 0.47 0.02 0 +engorgées engorgé adj f p 0.07 0.47 0.02 0.2 +engorgés engorgé adj m p 0.07 0.47 0.01 0.14 +engouai engouer ver 0 0.47 0 0.07 ind:pas:1s; +engouait engouer ver 0 0.47 0 0.14 ind:imp:3s; +engouement engouement nom m s 0.55 1.55 0.42 1.28 +engouements engouement nom m p 0.55 1.55 0.13 0.27 +engouffra engouffrer ver 0.61 18.58 0.01 2.36 ind:pas:3s; +engouffrai engouffrer ver 0.61 18.58 0.01 0.2 ind:pas:1s; +engouffraient engouffrer ver 0.61 18.58 0 1.49 ind:imp:3p; +engouffrait engouffrer ver 0.61 18.58 0.16 3.11 ind:imp:3s; +engouffrant engouffrer ver 0.61 18.58 0 1.76 par:pre; +engouffre engouffrer ver 0.61 18.58 0.1 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engouffrement engouffrement nom m s 0 0.14 0 0.14 +engouffrent engouffrer ver 0.61 18.58 0.03 0.61 ind:pre:3p;sub:pre:3p; +engouffrer engouffrer ver 0.61 18.58 0.09 3.24 inf; +engouffrera engouffrer ver 0.61 18.58 0.14 0 ind:fut:3s; +engouffreraient engouffrer ver 0.61 18.58 0 0.07 cnd:pre:3p; +engouffrerait engouffrer ver 0.61 18.58 0 0.14 cnd:pre:3s; +engouffrons engouffrer ver 0.61 18.58 0 0.2 ind:pre:1p; +engouffrât engouffrer ver 0.61 18.58 0 0.07 sub:imp:3s; +engouffrèrent engouffrer ver 0.61 18.58 0 0.54 ind:pas:3p; +engouffré engouffrer ver m s 0.61 18.58 0.08 0.68 par:pas; +engouffrée engouffrer ver f s 0.61 18.58 0 0.61 par:pas; +engouffrées engouffrer ver f p 0.61 18.58 0 0.14 par:pas; +engouffrés engouffrer ver m p 0.61 18.58 0 0.27 par:pas; +engoulevent engoulevent nom m s 0.1 0.14 0.1 0.14 +engourdi engourdi adj m s 1.34 5.61 0.49 1.89 +engourdie engourdi adj f s 1.34 5.61 0.35 1.55 +engourdies engourdi adj f p 1.34 5.61 0.34 1.01 +engourdir engourdir ver 1.72 10.34 0.33 1.15 inf; +engourdira engourdir ver 1.72 10.34 0.02 0.07 ind:fut:3s; +engourdirai engourdir ver 1.72 10.34 0 0.07 ind:fut:1s; +engourdirais engourdir ver 1.72 10.34 0 0.07 cnd:pre:1s; +engourdis engourdir ver m p 1.72 10.34 0.17 1.22 ind:pre:1s;ind:pre:2s;par:pas; +engourdissaient engourdir ver 1.72 10.34 0 0.27 ind:imp:3p; +engourdissait engourdir ver 1.72 10.34 0.01 2.36 ind:imp:3s; +engourdissant engourdir ver 1.72 10.34 0 0.14 par:pre; +engourdissante engourdissant adj f s 0 0.34 0 0.14 +engourdissantes engourdissant adj f p 0 0.34 0 0.07 +engourdissement engourdissement nom m s 0.53 5.54 0.44 5.41 +engourdissements engourdissement nom m p 0.53 5.54 0.09 0.14 +engourdissent engourdir ver 1.72 10.34 0.2 0.14 ind:pre:3p; +engourdit engourdir ver 1.72 10.34 0.48 0.81 ind:pre:3s;ind:pas:3s; +engoué engouer ver m s 0 0.47 0 0.14 par:pas; +engouée engouer ver f s 0 0.47 0 0.07 par:pas; +engoués engouer ver m p 0 0.47 0 0.07 par:pas; +engrainait engrainer ver 0 0.07 0 0.07 ind:imp:3s; +engrais engrais nom m 3.35 3.31 3.35 3.31 +engraissaient engraisser ver 2.65 4.59 0.01 0.14 ind:imp:3p; +engraissait engraisser ver 2.65 4.59 0 0.27 ind:imp:3s; +engraissant engraisser ver 2.65 4.59 0.14 0.14 par:pre; +engraisse engraisser ver 2.65 4.59 0.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engraissement engraissement nom m s 0 0.07 0 0.07 +engraissent engraisser ver 2.65 4.59 0.44 0.27 ind:pre:3p; +engraisser engraisser ver 2.65 4.59 1.12 0.88 inf; +engraisseraient engraisser ver 2.65 4.59 0.01 0 cnd:pre:3p; +engraisserait engraisser ver 2.65 4.59 0.01 0.07 cnd:pre:3s; +engraisserons engraisser ver 2.65 4.59 0 0.07 ind:fut:1p; +engraisses engraisser ver 2.65 4.59 0.14 0.07 ind:pre:2s; +engraissez engraisser ver 2.65 4.59 0 0.07 imp:pre:2p; +engraissèrent engraisser ver 2.65 4.59 0 0.14 ind:pas:3p; +engraissé engraisser ver m s 2.65 4.59 0.33 0.88 par:pas; +engraissée engraisser ver f s 2.65 4.59 0.01 0.27 par:pas; +engraissées engraisser ver f p 2.65 4.59 0 0.2 par:pas; +engraissés engraisser ver m p 2.65 4.59 0.03 0.07 par:pas; +engrange engranger ver 0.34 1.89 0.06 0.34 ind:pre:1s;ind:pre:3s; +engrangea engranger ver 0.34 1.89 0 0.07 ind:pas:3s; +engrangeais engranger ver 0.34 1.89 0 0.14 ind:imp:1s; +engrangeait engranger ver 0.34 1.89 0.01 0.2 ind:imp:3s; +engrangeant engranger ver 0.34 1.89 0 0.07 par:pre; +engrangement engrangement nom m s 0 0.07 0 0.07 +engrangent engranger ver 0.34 1.89 0.03 0.14 ind:pre:3p; +engrangeons engranger ver 0.34 1.89 0 0.07 imp:pre:1p; +engranger engranger ver 0.34 1.89 0.05 0.2 inf; +engrangé engranger ver m s 0.34 1.89 0.2 0.34 par:pas; +engrangée engranger ver f s 0.34 1.89 0 0.07 par:pas; +engrangées engranger ver f p 0.34 1.89 0 0.2 par:pas; +engrangés engranger ver m p 0.34 1.89 0 0.07 par:pas; +engravement engravement nom m s 0 0.07 0 0.07 +engraver engraver ver 0 0.07 0 0.07 inf; +engrenage engrenage nom m s 0.83 4.53 0.68 3.24 +engrenages engrenage nom m p 0.83 4.53 0.16 1.28 +engrenait engrener ver 0.2 0.41 0.1 0.07 ind:imp:3s; +engrenant engrener ver 0.2 0.41 0 0.07 par:pre; +engrener engrener ver 0.2 0.41 0 0.27 inf; +engrenez engrener ver 0.2 0.41 0.1 0 ind:pre:2p; +engrossait engrosser ver 1.74 1.82 0 0.14 ind:imp:3s; +engrossant engrosser ver 1.74 1.82 0.01 0.07 par:pre; +engrosse engrosser ver 1.74 1.82 0.04 0.14 ind:pre:1s;ind:pre:3s; +engrossent engrosser ver 1.74 1.82 0.02 0 ind:pre:3p; +engrosser engrosser ver 1.74 1.82 0.55 0.68 inf; +engrossera engrosser ver 1.74 1.82 0 0.07 ind:fut:3s; +engrosses engrosser ver 1.74 1.82 0.14 0 ind:pre:2s; +engrossé engrosser ver m s 1.74 1.82 0.45 0.27 par:pas; +engrossée engrosser ver f s 1.74 1.82 0.33 0.41 par:pas; +engrossées engrosser ver f p 1.74 1.82 0.2 0.07 par:pas; +engueula engueuler ver 13.94 12.97 0 0.2 ind:pas:3s; +engueulade engueulade nom f s 0.97 3.51 0.46 2.09 +engueulades engueulade nom f p 0.97 3.51 0.52 1.42 +engueulaient engueuler ver 13.94 12.97 0.17 0.41 ind:imp:3p; +engueulais engueuler ver 13.94 12.97 0.04 0.2 ind:imp:1s;ind:imp:2s; +engueulait engueuler ver 13.94 12.97 0.56 1.08 ind:imp:3s; +engueulant engueuler ver 13.94 12.97 0.03 0.2 par:pre; +engueule engueuler ver 13.94 12.97 2.96 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engueulent engueuler ver 13.94 12.97 0.62 0.47 ind:pre:3p; +engueuler engueuler ver 13.94 12.97 4.23 5.2 inf; +engueulera engueuler ver 13.94 12.97 0.18 0.14 ind:fut:3s; +engueuleraient engueuler ver 13.94 12.97 0.01 0 cnd:pre:3p; +engueulerait engueuler ver 13.94 12.97 0.02 0.14 cnd:pre:3s; +engueuleras engueuler ver 13.94 12.97 0.02 0 ind:fut:2s; +engueulerez engueuler ver 13.94 12.97 0.02 0 ind:fut:2p; +engueuleront engueuler ver 13.94 12.97 0.23 0.07 ind:fut:3p; +engueules engueuler ver 13.94 12.97 0.45 0.14 ind:pre:2s; +engueulez engueuler ver 13.94 12.97 0.44 0.07 imp:pre:2p;ind:pre:2p; +engueuliez engueuler ver 13.94 12.97 0.02 0 ind:imp:2p; +engueulions engueuler ver 13.94 12.97 0 0.14 ind:imp:1p; +engueulons engueuler ver 13.94 12.97 0.01 0.14 ind:pre:1p; +engueulèrent engueuler ver 13.94 12.97 0 0.07 ind:pas:3p; +engueulé engueuler ver m s 13.94 12.97 1.92 1.22 par:pas; +engueulée engueuler ver f s 13.94 12.97 0.77 0.14 par:pas; +engueulés engueuler ver m p 13.94 12.97 1.23 0.81 par:pas; +enguirlandaient enguirlander ver 0.16 1.28 0 0.14 ind:imp:3p; +enguirlandait enguirlander ver 0.16 1.28 0 0.14 ind:imp:3s; +enguirlande enguirlander ver 0.16 1.28 0.02 0.14 ind:pre:1s;ind:pre:3s; +enguirlandent enguirlander ver 0.16 1.28 0 0.07 ind:pre:3p; +enguirlander enguirlander ver 0.16 1.28 0.11 0.27 inf; +enguirlandé enguirlander ver m s 0.16 1.28 0.02 0.2 par:pas; +enguirlandée enguirlander ver f s 0.16 1.28 0.01 0.2 par:pas; +enguirlandées enguirlander ver f p 0.16 1.28 0 0.07 par:pas; +enguirlandés enguirlandé adj m p 0.01 0.34 0 0.14 +enhardi enhardir ver m s 0.19 4.32 0.01 0.54 par:pas; +enhardie enhardir ver f s 0.19 4.32 0.03 0.34 par:pas; +enhardies enhardir ver f p 0.19 4.32 0.01 0.07 par:pas; +enhardir enhardir ver 0.19 4.32 0 0.2 inf; +enhardirent enhardir ver 0.19 4.32 0 0.07 ind:pas:3p; +enhardis enhardir ver m p 0.19 4.32 0.01 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +enhardissaient enhardir ver 0.19 4.32 0 0.27 ind:imp:3p; +enhardissait enhardir ver 0.19 4.32 0 0.68 ind:imp:3s; +enhardissant enhardir ver 0.19 4.32 0 0.2 par:pre; +enhardissement enhardissement nom m s 0 0.07 0 0.07 +enhardissent enhardir ver 0.19 4.32 0.11 0.27 ind:pre:3p; +enhardit enhardir ver 0.19 4.32 0.02 0.95 ind:pre:3s;ind:pas:3s; +enivra enivrer ver 3.06 8.58 0.02 0.27 ind:pas:3s; +enivrai enivrer ver 3.06 8.58 0 0.07 ind:pas:1s; +enivraient enivrer ver 3.06 8.58 0 0.34 ind:imp:3p; +enivrais enivrer ver 3.06 8.58 0.14 0.14 ind:imp:1s; +enivrait enivrer ver 3.06 8.58 0.01 1.35 ind:imp:3s; +enivrant enivrant adj m s 1.2 3.38 0.8 1.08 +enivrante enivrant adj f s 1.2 3.38 0.35 1.08 +enivrantes enivrant adj f p 1.2 3.38 0.02 0.81 +enivrants enivrant adj m p 1.2 3.38 0.02 0.41 +enivre enivrer ver 3.06 8.58 0.9 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enivrement enivrement nom m s 0.02 0.68 0.02 0.68 +enivrent enivrer ver 3.06 8.58 0.04 0.41 ind:pre:3p; +enivrer enivrer ver 3.06 8.58 0.91 0.88 inf; +enivreras enivrer ver 3.06 8.58 0 0.07 ind:fut:2s; +enivrerez enivrer ver 3.06 8.58 0 0.07 ind:fut:2p; +enivres enivrer ver 3.06 8.58 0.14 0.07 ind:pre:2s; +enivrez enivrer ver 3.06 8.58 0.14 0 imp:pre:2p;ind:pre:2p; +enivrons enivrer ver 3.06 8.58 0.01 0 imp:pre:1p; +enivrèrent enivrer ver 3.06 8.58 0 0.07 ind:pas:3p; +enivré enivrer ver m s 3.06 8.58 0.47 1.35 par:pas; +enivrée enivrer ver f s 3.06 8.58 0.21 0.68 par:pas; +enivrées enivrer ver f p 3.06 8.58 0 0.07 par:pas; +enivrés enivrer ver m p 3.06 8.58 0.02 0.54 par:pas; +enjamba enjamber ver 0.86 14.8 0 2.16 ind:pas:3s; +enjambai enjamber ver 0.86 14.8 0 0.27 ind:pas:1s; +enjambaient enjamber ver 0.86 14.8 0 0.47 ind:imp:3p; +enjambais enjamber ver 0.86 14.8 0 0.07 ind:imp:1s; +enjambait enjamber ver 0.86 14.8 0.02 1.55 ind:imp:3s; +enjambant enjamber ver 0.86 14.8 0.02 1.42 par:pre; +enjambe enjamber ver 0.86 14.8 0.09 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enjambements enjambement nom m p 0 0.07 0 0.07 +enjambent enjamber ver 0.86 14.8 0.01 0.61 ind:pre:3p; +enjamber enjamber ver 0.86 14.8 0.42 2.84 inf; +enjamberais enjamber ver 0.86 14.8 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +enjamberait enjamber ver 0.86 14.8 0 0.07 cnd:pre:3s; +enjambes enjamber ver 0.86 14.8 0.01 0.07 ind:pre:2s; +enjambeur enjambeur nom m s 0 0.34 0 0.2 +enjambeurs enjambeur nom m p 0 0.34 0 0.14 +enjambez enjamber ver 0.86 14.8 0.05 0 imp:pre:2p; +enjambions enjamber ver 0.86 14.8 0 0.07 ind:imp:1p; +enjambons enjamber ver 0.86 14.8 0.01 0.47 imp:pre:1p;ind:pre:1p; +enjambèrent enjamber ver 0.86 14.8 0 0.34 ind:pas:3p; +enjambé enjamber ver m s 0.86 14.8 0.07 1.08 par:pas; +enjambée enjambée nom f s 0.15 6.76 0.06 0.81 +enjambées enjambée nom f p 0.15 6.76 0.09 5.95 +enjambés enjamber ver m p 0.86 14.8 0 0.07 par:pas; +enjeu enjeu nom m s 4.67 4.59 3.52 3.99 +enjeux enjeu nom m p 4.67 4.59 1.16 0.61 +enjoignaient enjoindre ver 0.36 3.38 0 0.07 ind:imp:3p; +enjoignait enjoindre ver 0.36 3.38 0 0.34 ind:imp:3s; +enjoignant enjoindre ver 0.36 3.38 0.01 0.41 par:pre; +enjoignis enjoindre ver 0.36 3.38 0 0.2 ind:pas:1s; +enjoignit enjoindre ver 0.36 3.38 0.1 0.95 ind:pas:3s; +enjoignons enjoindre ver 0.36 3.38 0 0.07 ind:pre:1p; +enjoindre enjoindre ver 0.36 3.38 0.07 0.34 inf; +enjoint enjoindre ver m s 0.36 3.38 0.18 1.01 ind:pre:3s;par:pas; +enjolivaient enjoliver ver 0.34 1.82 0 0.07 ind:imp:3p; +enjolivait enjoliver ver 0.34 1.82 0.03 0.2 ind:imp:3s; +enjolivant enjoliver ver 0.34 1.82 0 0.47 par:pre; +enjolive enjoliver ver 0.34 1.82 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enjolivements enjolivement nom m p 0 0.07 0 0.07 +enjoliver enjoliver ver 0.34 1.82 0.08 0.47 inf; +enjoliveur enjoliveur nom m s 0.59 0.2 0.33 0.14 +enjoliveurs enjoliveur nom m p 0.59 0.2 0.26 0.07 +enjolivé enjoliver ver m s 0.34 1.82 0.07 0.07 par:pas; +enjolivée enjoliver ver f s 0.34 1.82 0 0.14 par:pas; +enjolivés enjoliver ver m p 0.34 1.82 0 0.14 par:pas; +enjouement enjouement nom m s 0.14 1.35 0.14 1.35 +enjoué enjoué adj m s 1.33 4.39 0.25 1.55 +enjouée enjoué adj f s 1.33 4.39 1.03 2.43 +enjouées enjoué adj f p 1.33 4.39 0.01 0.27 +enjoués enjouer ver m p 0.32 0.81 0.14 0 par:pas; +enjuiver enjuiver ver 0.01 0 0.01 0 inf; +enjuivés enjuivé adj m p 0 0.07 0 0.07 +enjuponne enjuponner ver 0 0.14 0 0.07 ind:pre:3s; +enjuponnée enjuponner ver f s 0 0.14 0 0.07 par:pas; +enjôlait enjôler ver 1.07 0.2 0 0.07 ind:imp:3s; +enjôlant enjôler ver 1.07 0.2 0 0.07 par:pre; +enjôle enjôler ver 1.07 0.2 0.1 0 imp:pre:2s; +enjôlement enjôlement nom m s 0 0.07 0 0.07 +enjôler enjôler ver 1.07 0.2 0.78 0.07 inf; +enjôleur enjôleur adj m s 0.19 1.76 0.17 0.95 +enjôleurs enjôleur nom m p 0.19 0.2 0.01 0 +enjôleuse enjôleur nom f s 0.19 0.2 0.02 0.07 +enjôleuses enjôleur adj f p 0.19 1.76 0 0.07 +enjôlé enjôler ver m s 1.07 0.2 0.04 0 par:pas; +enjôlée enjôler ver f s 1.07 0.2 0.14 0 par:pas; +enkyster enkyster ver 0.01 0 0.01 0 inf; +enkystées enkysté adj f p 0 0.07 0 0.07 +enlace enlacer ver 4.42 15.88 0.89 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enlacement enlacement nom m s 0.03 0.81 0.03 0.41 +enlacements enlacement nom m p 0.03 0.81 0 0.41 +enlacent enlacer ver 4.42 15.88 0.17 0.61 ind:pre:3p; +enlacer enlacer ver 4.42 15.88 0.97 0.81 inf; +enlacerai enlacer ver 4.42 15.88 0.05 0 ind:fut:1s; +enlacerons enlacer ver 4.42 15.88 0 0.07 ind:fut:1p; +enlacez enlacer ver 4.42 15.88 0.13 0 imp:pre:2p;ind:pre:2p; +enlacions enlacer ver 4.42 15.88 0 0.07 ind:imp:1p; +enlacèrent enlacer ver 4.42 15.88 0.1 0.14 ind:pas:3p; +enlacé enlacer ver m s 4.42 15.88 0.31 1.42 par:pas; +enlacée enlacer ver f s 4.42 15.88 0.25 0.74 par:pas; +enlacées enlacer ver f p 4.42 15.88 0.07 1.28 par:pas; +enlacés enlacer ver m p 4.42 15.88 0.89 4.39 par:pas; +enlaidi enlaidir ver m s 0.76 2.36 0.29 0.34 par:pas; +enlaidie enlaidir ver f s 0.76 2.36 0.02 0.27 par:pas; +enlaidir enlaidir ver 0.76 2.36 0.11 0.47 inf; +enlaidis enlaidir ver m p 0.76 2.36 0.14 0.2 imp:pre:2s;ind:pre:1s;par:pas; +enlaidissait enlaidir ver 0.76 2.36 0.02 0.47 ind:imp:3s; +enlaidissant enlaidir ver 0.76 2.36 0 0.07 par:pre; +enlaidisse enlaidir ver 0.76 2.36 0.01 0.07 sub:pre:3s; +enlaidissement enlaidissement nom m s 0.01 0.27 0.01 0.27 +enlaidissent enlaidir ver 0.76 2.36 0.02 0.2 ind:pre:3p; +enlaidisses enlaidir ver 0.76 2.36 0.14 0 sub:pre:2s; +enlaidit enlaidir ver 0.76 2.36 0.02 0.27 ind:pre:3s;ind:pas:3s; +enlaça enlacer ver 4.42 15.88 0.13 1.28 ind:pas:3s; +enlaçaient enlacer ver 4.42 15.88 0.1 0.61 ind:imp:3p; +enlaçais enlacer ver 4.42 15.88 0.05 0.07 ind:imp:1s;ind:imp:2s; +enlaçait enlacer ver 4.42 15.88 0.16 1.28 ind:imp:3s; +enlaçant enlacer ver 4.42 15.88 0.14 0.88 par:pre; +enlaçons enlacer ver 4.42 15.88 0.03 0.07 ind:pre:1p; +enleva enlever ver 172.47 78.78 0.22 7.03 ind:pas:3s; +enlevai enlever ver 172.47 78.78 0.03 0.47 ind:pas:1s; +enlevaient enlever ver 172.47 78.78 0.19 1.15 ind:imp:3p; +enlevais enlever ver 172.47 78.78 0.55 0.88 ind:imp:1s;ind:imp:2s; +enlevait enlever ver 172.47 78.78 1.33 5.74 ind:imp:3s; +enlevant enlever ver 172.47 78.78 1.13 3.04 par:pre; +enlever enlever ver 172.47 78.78 46.74 22.36 ind:pre:2p;inf; +enlevez enlever ver 172.47 78.78 20.44 2.23 imp:pre:2p;ind:pre:2p; +enleviez enlever ver 172.47 78.78 0.41 0.14 ind:imp:2p; +enlevions enlever ver 172.47 78.78 0.17 0.07 ind:imp:1p; +enlevons enlever ver 172.47 78.78 1.24 0 imp:pre:1p;ind:pre:1p; +enlevât enlever ver 172.47 78.78 0 0.41 sub:imp:3s; +enlevèrent enlever ver 172.47 78.78 0.04 0.14 ind:pas:3p; +enlevé enlever ver m s 172.47 78.78 20.88 10.95 par:pas; +enlevée enlever ver f s 172.47 78.78 9.68 4.12 par:pas; +enlevées enlever ver f p 172.47 78.78 1.27 0.68 par:pas; +enlevés enlever ver m p 172.47 78.78 2.35 1.35 par:pas; +enliasser enliasser ver 0 0.07 0 0.07 inf; +enlisa enliser ver 0.93 5.88 0 0.14 ind:pas:3s; +enlisaient enliser ver 0.93 5.88 0 0.34 ind:imp:3p; +enlisais enliser ver 0.93 5.88 0 0.2 ind:imp:1s; +enlisait enliser ver 0.93 5.88 0.01 1.35 ind:imp:3s; +enlisant enliser ver 0.93 5.88 0 0.2 par:pre; +enlise enliser ver 0.93 5.88 0.28 0.68 ind:pre:1s;ind:pre:3s; +enlisement enlisement nom m s 0 0.74 0 0.74 +enlisent enliser ver 0.93 5.88 0.03 0.2 ind:pre:3p; +enliser enliser ver 0.93 5.88 0.21 0.74 inf; +enlisera enliser ver 0.93 5.88 0 0.07 ind:fut:3s; +enliserais enliser ver 0.93 5.88 0.01 0 cnd:pre:2s; +enlisé enliser ver m s 0.93 5.88 0.23 0.81 par:pas; +enlisée enliser ver f s 0.93 5.88 0.01 0.54 par:pas; +enlisées enliser ver f p 0.93 5.88 0.01 0.14 par:pas; +enlisés enliser ver m p 0.93 5.88 0.14 0.47 par:pas; +enlumine enluminer ver 0.03 1.15 0 0.07 ind:pre:3s; +enluminent enluminer ver 0.03 1.15 0 0.07 ind:pre:3p; +enluminer enluminer ver 0.03 1.15 0 0.07 inf; +enlumineur enlumineur nom m s 0.4 0.2 0.27 0.2 +enlumineurs enlumineur nom m p 0.4 0.2 0.14 0 +enluminure enluminure nom f s 0.11 1.08 0 0.27 +enluminures enluminure nom f p 0.11 1.08 0.11 0.81 +enluminé enluminer ver m s 0.03 1.15 0.02 0.34 par:pas; +enluminée enluminé adj f s 0.03 0.47 0.01 0.07 +enluminées enluminer ver f p 0.03 1.15 0.01 0.2 par:pas; +enluminés enluminé adj m p 0.03 0.47 0 0.14 +enlève enlever ver 172.47 78.78 55.59 13.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enlèvement enlèvement nom m s 9.51 3.85 7.8 3.58 +enlèvements enlèvement nom m p 9.51 3.85 1.71 0.27 +enlèvent enlever ver 172.47 78.78 1.96 1.55 ind:pre:3p; +enlèvera enlever ver 172.47 78.78 1.62 1.01 ind:fut:3s; +enlèverai enlever ver 172.47 78.78 1.19 0.27 ind:fut:1s; +enlèveraient enlever ver 172.47 78.78 0.04 0.14 cnd:pre:3p; +enlèverais enlever ver 172.47 78.78 0.36 0.14 cnd:pre:1s;cnd:pre:2s; +enlèverait enlever ver 172.47 78.78 0.4 0.47 cnd:pre:3s; +enlèveras enlever ver 172.47 78.78 0.28 0 ind:fut:2s; +enlèverez enlever ver 172.47 78.78 0.46 0.07 ind:fut:2p; +enlèveriez enlever ver 172.47 78.78 0.04 0 cnd:pre:2p; +enlèverons enlever ver 172.47 78.78 0.05 0.07 ind:fut:1p; +enlèveront enlever ver 172.47 78.78 0.15 0.07 ind:fut:3p; +enlèves enlever ver 172.47 78.78 3.66 0.61 ind:pre:2s;sub:pre:2s; +enneige enneiger ver 0.51 1.28 0 0.07 ind:pre:3s; +enneigeait enneiger ver 0.51 1.28 0.01 0.07 ind:imp:3s; +enneigement enneigement nom m s 0.1 0 0.1 0 +enneiger enneiger ver 0.51 1.28 0.01 0 inf; +enneigé enneigé adj m s 0.58 2.5 0.2 0.54 +enneigée enneigé adj f s 0.58 2.5 0.1 0.88 +enneigées enneigé adj f p 0.58 2.5 0.05 0.68 +enneigés enneigé adj m p 0.58 2.5 0.24 0.41 +ennemi ennemi nom m s 92.37 111.96 59.98 79.19 +ennemie ennemi nom f s 92.37 111.96 2.56 3.04 +ennemies ennemi adj f p 14.56 19.05 2.19 4.53 +ennemis ennemi nom m p 92.37 111.96 29.22 29.19 +ennobli ennoblir ver m s 0.15 1.22 0.01 0.2 par:pas; +ennoblie ennoblir ver f s 0.15 1.22 0 0.07 par:pas; +ennoblir ennoblir ver 0.15 1.22 0.01 0.34 inf; +ennoblis ennoblir ver m p 0.15 1.22 0.1 0.27 ind:pre:2s;par:pas; +ennoblissement ennoblissement nom m s 0 0.07 0 0.07 +ennoblit ennoblir ver 0.15 1.22 0.03 0.34 ind:pre:3s;ind:pas:3s; +ennuagent ennuager ver 0.03 0.2 0.01 0 ind:pre:3p; +ennuager ennuager ver 0.03 0.2 0 0.14 inf; +ennuagé ennuager ver m s 0.03 0.2 0.02 0.07 par:pas; +ennui ennui nom m s 76.64 56.62 14.76 38.24 +ennuie ennuyer ver 62.48 59.12 34.04 20.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +ennuient ennuyer ver 62.48 59.12 2.97 2.97 ind:pre:3p; +ennuiera ennuyer ver 62.48 59.12 0.66 0.07 ind:fut:3s; +ennuierai ennuyer ver 62.48 59.12 0.65 0.34 ind:fut:1s; +ennuieraient ennuyer ver 62.48 59.12 0.03 0 cnd:pre:3p; +ennuierais ennuyer ver 62.48 59.12 0.47 0.34 cnd:pre:1s;cnd:pre:2s; +ennuierait ennuyer ver 62.48 59.12 2.86 1.76 cnd:pre:3s; +ennuieras ennuyer ver 62.48 59.12 0.52 0.07 ind:fut:2s; +ennuierez ennuyer ver 62.48 59.12 0.06 0 ind:fut:2p; +ennuieriez ennuyer ver 62.48 59.12 0.04 0 cnd:pre:2p; +ennuierions ennuyer ver 62.48 59.12 0 0.07 cnd:pre:1p; +ennuierons ennuyer ver 62.48 59.12 0.14 0 ind:fut:1p; +ennuieront ennuyer ver 62.48 59.12 0.11 0 ind:fut:3p; +ennuies ennuyer ver 62.48 59.12 3.94 1.35 ind:pre:2s;sub:pre:2s; +ennuis ennui nom m p 76.64 56.62 61.89 18.38 +ennuya ennuyer ver 62.48 59.12 0 0.68 ind:pas:3s; +ennuyai ennuyer ver 62.48 59.12 0 0.14 ind:pas:1s; +ennuyaient ennuyer ver 62.48 59.12 0.38 2.43 ind:imp:3p; +ennuyais ennuyer ver 62.48 59.12 2.07 3.04 ind:imp:1s;ind:imp:2s; +ennuyait ennuyer ver 62.48 59.12 1.42 9.46 ind:imp:3s; +ennuyant ennuyant adj m s 0.94 0.07 0.79 0.07 +ennuyante ennuyant adj f s 0.94 0.07 0.15 0 +ennuyer ennuyer ver 62.48 59.12 7 9.12 inf; +ennuyeuse ennuyeux adj f s 20.42 13.31 3.98 2.77 +ennuyeuses ennuyeux adj f p 20.42 13.31 0.83 1.08 +ennuyeux ennuyeux adj m 20.42 13.31 15.62 9.46 +ennuyez ennuyer ver 62.48 59.12 1.55 1.22 imp:pre:2p;ind:pre:2p; +ennuyiez ennuyer ver 62.48 59.12 0.2 0.2 ind:imp:2p; +ennuyions ennuyer ver 62.48 59.12 0.01 0.2 ind:imp:1p; +ennuyons ennuyer ver 62.48 59.12 0.24 0.2 imp:pre:1p;ind:pre:1p; +ennuyât ennuyer ver 62.48 59.12 0 0.34 sub:imp:3s; +ennuyèrent ennuyer ver 62.48 59.12 0 0.41 ind:pas:3p; +ennuyé ennuyer ver m s 62.48 59.12 1.26 2.23 par:pas; +ennuyée ennuyer ver f s 62.48 59.12 1.54 1.35 par:pas; +ennuyées ennuyer ver f p 62.48 59.12 0.01 0 par:pas; +ennuyés ennuyer ver m p 62.48 59.12 0.14 0.14 par:pas; +enorgueilli enorgueillir ver m s 0.32 2.09 0.01 0 par:pas; +enorgueillir enorgueillir ver 0.32 2.09 0.12 0.61 inf; +enorgueillirent enorgueillir ver 0.32 2.09 0 0.07 ind:pas:3p; +enorgueillis enorgueillir ver 0.32 2.09 0.01 0 ind:pre:1s; +enorgueillissais enorgueillir ver 0.32 2.09 0 0.27 ind:imp:1s; +enorgueillissait enorgueillir ver 0.32 2.09 0.01 0.2 ind:imp:3s; +enorgueillissant enorgueillir ver 0.32 2.09 0 0.07 par:pre; +enorgueillisse enorgueillir ver 0.32 2.09 0 0.07 sub:pre:1s; +enorgueillissent enorgueillir ver 0.32 2.09 0.14 0.2 ind:pre:3p; +enorgueillit enorgueillir ver 0.32 2.09 0.03 0.54 ind:pre:3s;ind:pas:3s; +enorgueillît enorgueillir ver 0.32 2.09 0 0.07 sub:imp:3s; +enquerraient enquérir ver 1.01 8.85 0 0.07 cnd:pre:3p; +enquiers enquérir ver 1.01 8.85 0.02 0.14 imp:pre:2s;ind:pre:1s; +enquiert enquérir ver 1.01 8.85 0.05 1.35 ind:pre:3s; +enquillais enquiller ver 0 2.84 0 0.07 ind:imp:1s; +enquillait enquiller ver 0 2.84 0 0.07 ind:imp:3s; +enquillant enquiller ver 0 2.84 0 0.2 par:pre; +enquille enquiller ver 0 2.84 0 1.01 ind:pre:1s;ind:pre:3s; +enquillent enquiller ver 0 2.84 0 0.14 ind:pre:3p; +enquiller enquiller ver 0 2.84 0 0.74 inf; +enquillons enquiller ver 0 2.84 0 0.07 ind:pre:1p; +enquillé enquiller ver m s 0 2.84 0 0.47 par:pas; +enquillés enquiller ver m p 0 2.84 0 0.07 par:pas; +enquiquinaient enquiquiner ver 0.64 1.15 0 0.07 ind:imp:3p; +enquiquinait enquiquiner ver 0.64 1.15 0.02 0.07 ind:imp:3s; +enquiquinant enquiquinant adj m s 0.38 0.07 0.01 0.07 +enquiquinante enquiquinant adj f s 0.38 0.07 0.21 0 +enquiquinants enquiquinant adj m p 0.38 0.07 0.16 0 +enquiquine enquiquiner ver 0.64 1.15 0.2 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enquiquinement enquiquinement nom m s 0.01 0 0.01 0 +enquiquinent enquiquiner ver 0.64 1.15 0.02 0.14 ind:pre:3p; +enquiquiner enquiquiner ver 0.64 1.15 0.12 0.41 inf; +enquiquineraient enquiquiner ver 0.64 1.15 0.01 0 cnd:pre:3p; +enquiquines enquiquiner ver 0.64 1.15 0.23 0 ind:pre:2s; +enquiquineur enquiquineur nom m s 0.33 0.2 0.17 0.14 +enquiquineurs enquiquineur nom m p 0.33 0.2 0.07 0 +enquiquineuse enquiquineur nom f s 0.33 0.2 0.08 0.07 +enquiquiné enquiquiner ver m s 0.64 1.15 0.03 0.14 par:pas; +enquis enquérir ver m 1.01 8.85 0.06 0.88 ind:pas:1s;par:pas;par:pas; +enquise enquérir ver f s 1.01 8.85 0.01 0.2 par:pas; +enquit enquérir ver 1.01 8.85 0.1 3.45 ind:pas:3s; +enquière enquérir ver 1.01 8.85 0.01 0.07 sub:pre:1s;sub:pre:3s; +enquièrent enquérir ver 1.01 8.85 0 0.07 ind:pre:3p; +enquéraient enquérir ver 1.01 8.85 0 0.41 ind:imp:3p; +enquérais enquérir ver 1.01 8.85 0.02 0.14 ind:imp:1s; +enquérait enquérir ver 1.01 8.85 0 0.34 ind:imp:3s; +enquérant enquérir ver 1.01 8.85 0 0.41 par:pre; +enquérez enquérir ver 1.01 8.85 0.01 0 ind:pre:2p; +enquérir enquérir ver 1.01 8.85 0.73 1.35 inf; +enquêta enquêter ver 19.65 2.91 0.01 0.07 ind:pas:3s; +enquêtais enquêter ver 19.65 2.91 0.45 0.07 ind:imp:1s;ind:imp:2s; +enquêtait enquêter ver 19.65 2.91 0.85 0.61 ind:imp:3s; +enquêtant enquêter ver 19.65 2.91 0.28 0.07 par:pre; +enquête enquête nom f s 57.98 21.28 53.89 18.45 +enquêtent enquêter ver 19.65 2.91 0.5 0.27 ind:pre:3p; +enquêter enquêter ver 19.65 2.91 7.29 1.35 inf; +enquêtes enquête nom f p 57.98 21.28 4.08 2.84 +enquête_minute enquête_minute nom f p 0 0.07 0 0.07 +enquêteur enquêteur nom m s 4.06 3.18 1.83 1.28 +enquêteurs enquêteur nom m p 4.06 3.18 2.15 1.82 +enquêteuse enquêteur nom f s 4.06 3.18 0.07 0 +enquêtez enquêter ver 19.65 2.91 0.99 0.07 imp:pre:2p;ind:pre:2p; +enquêtrices enquêteur nom f p 4.06 3.18 0 0.07 +enquêté enquêter ver m s 19.65 2.91 2.13 0.14 par:pas; +enracinais enraciner ver 0.65 3.65 0 0.07 ind:imp:1s; +enracinait enraciner ver 0.65 3.65 0 0.54 ind:imp:3s; +enracinant enraciner ver 0.65 3.65 0 0.07 par:pre; +enracine enraciner ver 0.65 3.65 0.03 0.14 ind:pre:3s; +enracinement enracinement nom m s 0.01 0.47 0.01 0.41 +enracinements enracinement nom m p 0.01 0.47 0 0.07 +enracinent enraciner ver 0.65 3.65 0.14 0.27 ind:pre:3p; +enraciner enraciner ver 0.65 3.65 0.25 0.34 inf; +enracinerait enraciner ver 0.65 3.65 0.1 0.07 cnd:pre:3s; +enracineras enraciner ver 0.65 3.65 0 0.07 ind:fut:2s; +enracinerez enraciner ver 0.65 3.65 0.01 0 ind:fut:2p; +enraciné enraciner ver m s 0.65 3.65 0.05 1.15 par:pas; +enracinée enraciné adj f s 0.12 0.88 0.04 0.27 +enracinées enraciné adj f p 0.12 0.88 0.01 0.14 +enracinés enraciné adj m p 0.12 0.88 0.04 0.34 +enrage enrager ver 6.13 7.57 1.46 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enragea enrager ver 6.13 7.57 0 0.2 ind:pas:3s; +enrageai enrager ver 6.13 7.57 0 0.07 ind:pas:1s; +enrageais enrager ver 6.13 7.57 0.27 0.47 ind:imp:1s; +enrageait enrager ver 6.13 7.57 0.15 1.35 ind:imp:3s; +enrageant enrager ver 6.13 7.57 0 0.07 par:pre; +enrageante enrageant adj f s 0.01 0 0.01 0 +enragement enragement nom m s 0 0.14 0 0.14 +enragent enrager ver 6.13 7.57 0.01 0.2 ind:pre:3p; +enrager enrager ver 6.13 7.57 2.2 1.49 inf; +enragerais enrager ver 6.13 7.57 0 0.14 cnd:pre:1s; +enragé enragé adj m s 3.36 4.26 2.18 1.69 +enragée enragé adj f s 3.36 4.26 0.75 1.28 +enragées enrager ver f p 6.13 7.57 0.12 0 par:pas; +enragés enragé nom m p 0.79 1.69 0.39 0.74 +enraie enrayer ver 1.73 1.96 0.01 0 ind:pre:3s; +enraillée enrailler ver f s 0.02 0 0.02 0 par:pas; +enraya enrayer ver 1.73 1.96 0 0.2 ind:pas:3s; +enrayage enrayage nom m s 0.02 0 0.02 0 +enrayait enrayer ver 1.73 1.96 0 0.14 ind:imp:3s; +enrayant enrayer ver 1.73 1.96 0 0.14 par:pre; +enraye enrayer ver 1.73 1.96 0.27 0.2 ind:pre:3s; +enrayement enrayement nom m s 0.02 0 0.02 0 +enrayent enrayer ver 1.73 1.96 0.03 0.07 ind:pre:3p; +enrayer enrayer ver 1.73 1.96 0.92 0.74 inf; +enrayera enrayer ver 1.73 1.96 0.04 0 ind:fut:3s; +enrayé enrayer ver m s 1.73 1.96 0.32 0.2 par:pas; +enrayée enrayer ver f s 1.73 1.96 0.14 0.27 par:pas; +enregistra enregistrer ver 33.07 14.73 0.09 0.54 ind:pas:3s; +enregistrable enregistrable adj f s 0.01 0.07 0.01 0.07 +enregistrai enregistrer ver 33.07 14.73 0 0.27 ind:pas:1s; +enregistraient enregistrer ver 33.07 14.73 0.11 0.34 ind:imp:3p; +enregistrais enregistrer ver 33.07 14.73 0.49 0.2 ind:imp:1s;ind:imp:2s; +enregistrait enregistrer ver 33.07 14.73 0.63 1.35 ind:imp:3s; +enregistrant enregistrer ver 33.07 14.73 0.2 0.41 par:pre; +enregistre enregistrer ver 33.07 14.73 5.96 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enregistrement enregistrement nom m s 14.79 3.11 11.21 2.36 +enregistrements enregistrement nom m p 14.79 3.11 3.58 0.74 +enregistrent enregistrer ver 33.07 14.73 0.47 0.14 ind:pre:3p; +enregistrer enregistrer ver 33.07 14.73 7.58 3.65 inf; +enregistrera enregistrer ver 33.07 14.73 0.28 0 ind:fut:3s; +enregistrerai enregistrer ver 33.07 14.73 0.32 0 ind:fut:1s; +enregistrerait enregistrer ver 33.07 14.73 0.01 0 cnd:pre:3s; +enregistreras enregistrer ver 33.07 14.73 0.01 0 ind:fut:2s; +enregistrerez enregistrer ver 33.07 14.73 0.02 0 ind:fut:2p; +enregistrerons enregistrer ver 33.07 14.73 0.01 0 ind:fut:1p; +enregistreront enregistrer ver 33.07 14.73 0.01 0.07 ind:fut:3p; +enregistres enregistrer ver 33.07 14.73 0.83 0.07 ind:pre:2s; +enregistreur enregistreur nom m s 1 0.2 0.88 0.14 +enregistreurs enregistreur nom m p 1 0.2 0.11 0 +enregistreuse enregistreur adj f s 0.66 1.01 0.24 0.74 +enregistreuses enregistreur adj f p 0.66 1.01 0.2 0.07 +enregistrez enregistrer ver 33.07 14.73 1.12 0 imp:pre:2p;ind:pre:2p; +enregistriez enregistrer ver 33.07 14.73 0 0.07 ind:imp:2p; +enregistrions enregistrer ver 33.07 14.73 0.02 0.07 ind:imp:1p; +enregistrons enregistrer ver 33.07 14.73 0.25 0.14 imp:pre:1p;ind:pre:1p; +enregistré enregistrer ver m s 33.07 14.73 9.58 3.18 par:pas; +enregistrée enregistrer ver f s 33.07 14.73 2.73 0.88 par:pas; +enregistrées enregistrer ver f p 33.07 14.73 0.81 0.41 par:pas; +enregistrés enregistrer ver m p 33.07 14.73 1.54 0.95 par:pas; +enrhumait enrhumer ver 2.6 1.96 0 0.14 ind:imp:3s; +enrhume enrhumer ver 2.6 1.96 0.39 0.47 ind:pre:1s;ind:pre:3s; +enrhument enrhumer ver 2.6 1.96 0.11 0.07 ind:pre:3p; +enrhumer enrhumer ver 2.6 1.96 0.89 0.41 inf; +enrhumes enrhumer ver 2.6 1.96 0 0.07 ind:pre:2s; +enrhumez enrhumer ver 2.6 1.96 0.01 0 imp:pre:2p; +enrhumé enrhumer ver m s 2.6 1.96 0.97 0.41 par:pas; +enrhumée enrhumer ver f s 2.6 1.96 0.22 0.34 par:pas; +enrhumées enrhumé adj f p 0.49 1.22 0 0.07 +enrhumés enrhumé adj m p 0.49 1.22 0.11 0.27 +enrichi enrichir ver m s 7.73 11.76 1.44 2.03 par:pas; +enrichie enrichir ver f s 7.73 11.76 0.13 0.81 par:pas; +enrichies enrichir ver f p 7.73 11.76 0.17 0.14 par:pas; +enrichir enrichir ver 7.73 11.76 3 4.19 inf; +enrichira enrichir ver 7.73 11.76 0.1 0 ind:fut:3s; +enrichirais enrichir ver 7.73 11.76 0.01 0.07 cnd:pre:1s; +enrichirait enrichir ver 7.73 11.76 0.34 0 cnd:pre:3s; +enrichiront enrichir ver 7.73 11.76 0.04 0.14 ind:fut:3p; +enrichis enrichir ver m p 7.73 11.76 0.48 0.54 ind:pre:1s;ind:pre:2s;par:pas; +enrichissaient enrichir ver 7.73 11.76 0.01 0.34 ind:imp:3p; +enrichissais enrichir ver 7.73 11.76 0 0.07 ind:imp:1s; +enrichissait enrichir ver 7.73 11.76 0.05 1.15 ind:imp:3s; +enrichissant enrichissant adj m s 0.69 0.95 0.2 0.14 +enrichissante enrichissant adj f s 0.69 0.95 0.23 0.34 +enrichissantes enrichissant adj f p 0.69 0.95 0.25 0.27 +enrichissants enrichissant adj m p 0.69 0.95 0.01 0.2 +enrichisse enrichir ver 7.73 11.76 0.28 0.14 sub:pre:1s;sub:pre:3s; +enrichissement enrichissement nom m s 0.2 1.28 0.2 0.74 +enrichissements enrichissement nom m p 0.2 1.28 0 0.54 +enrichissent enrichir ver 7.73 11.76 0.49 0.54 ind:pre:3p; +enrichissez enrichir ver 7.73 11.76 0.03 0.07 imp:pre:2p;ind:pre:2p; +enrichit enrichir ver 7.73 11.76 1.08 1.35 ind:pre:3s;ind:pas:3s; +enrobage enrobage nom m s 0.05 0.07 0.05 0.07 +enrobaient enrober ver 0.68 2.36 0 0.07 ind:imp:3p; +enrobait enrober ver 0.68 2.36 0 0.61 ind:imp:3s; +enrobant enrober ver 0.68 2.36 0 0.07 par:pre; +enrobe enrober ver 0.68 2.36 0.03 0.54 ind:pre:1s;ind:pre:3s; +enrober enrober ver 0.68 2.36 0.15 0.07 inf; +enrobèrent enrober ver 0.68 2.36 0 0.07 ind:pas:3p; +enrobé enrobé adj m s 1.02 1.01 0.88 0.47 +enrobée enrober ver f s 0.68 2.36 0.09 0.27 par:pas; +enrobées enrobé adj f p 1.02 1.01 0.11 0 +enrobés enrober ver m p 0.68 2.36 0.17 0.34 par:pas; +enrochements enrochement nom m p 0 0.27 0 0.27 +enroua enrouer ver 0.12 2.16 0 0.14 ind:pas:3s; +enrouaient enrouer ver 0.12 2.16 0 0.14 ind:imp:3p; +enrouait enrouer ver 0.12 2.16 0 0.2 ind:imp:3s; +enroue enrouer ver 0.12 2.16 0 0.34 ind:pre:3s; +enrouement enrouement nom m s 0 0.41 0 0.34 +enrouements enrouement nom m p 0 0.41 0 0.07 +enrouer enrouer ver 0.12 2.16 0 0.07 inf; +enroula enrouler ver 3.75 16.89 0 1.01 ind:pas:3s; +enroulage enroulage nom m s 0 0.07 0 0.07 +enroulai enrouler ver 3.75 16.89 0.01 0.14 ind:pas:1s; +enroulaient enrouler ver 3.75 16.89 0.11 0.81 ind:imp:3p; +enroulais enrouler ver 3.75 16.89 0.02 0.14 ind:imp:1s; +enroulait enrouler ver 3.75 16.89 0.01 3.31 ind:imp:3s; +enroulant enrouler ver 3.75 16.89 0.03 1.42 par:pre; +enroule enrouler ver 3.75 16.89 1.11 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +enroulement enroulement nom m s 0.01 0.61 0.01 0.27 +enroulements enroulement nom m p 0.01 0.61 0 0.34 +enroulent enrouler ver 3.75 16.89 0.19 0.41 ind:pre:3p; +enrouler enrouler ver 3.75 16.89 0.36 1.35 inf; +enroulera enrouler ver 3.75 16.89 0 0.07 ind:fut:3s; +enroulerais enrouler ver 3.75 16.89 0.1 0.07 cnd:pre:1s; +enroulez enrouler ver 3.75 16.89 0.24 0 imp:pre:2p;ind:pre:2p; +enroulèrent enrouler ver 3.75 16.89 0.01 0.41 ind:pas:3p; +enroulé enrouler ver m s 3.75 16.89 0.52 2.5 par:pas; +enroulée enrouler ver f s 3.75 16.89 0.8 1.69 par:pas; +enroulées enrouler ver f p 3.75 16.89 0.05 0.54 par:pas; +enroulés enrouler ver m p 3.75 16.89 0.19 1.08 par:pas; +enroué enroué adj m s 0.18 3.31 0.05 0.61 +enrouée enroué adj f s 0.18 3.31 0.13 2.5 +enrouées enroué adj f p 0.18 3.31 0 0.14 +enroués enrouer ver m p 0.12 2.16 0.1 0.14 par:pas; +enrubannaient enrubanner ver 0.13 1.15 0 0.14 ind:imp:3p; +enrubannait enrubanner ver 0.13 1.15 0 0.14 ind:imp:3s; +enrubanner enrubanner ver 0.13 1.15 0.11 0 inf; +enrubanné enrubanner ver m s 0.13 1.15 0.01 0.27 par:pas; +enrubannée enrubanné adj f s 0.03 0.88 0.03 0.14 +enrubannées enrubanner ver f p 0.13 1.15 0 0.14 par:pas; +enrubannés enrubanné adj m p 0.03 0.88 0 0.34 +enrégimentait enrégimenter ver 0 0.27 0 0.07 ind:imp:3s; +enrégimenter enrégimenter ver 0 0.27 0 0.14 inf; +enrégimenterait enrégimenter ver 0 0.27 0 0.07 cnd:pre:3s; +enrôla enrôler ver 3.04 2.77 0 0.07 ind:pas:3s; +enrôlaient enrôler ver 3.04 2.77 0.04 0.07 ind:imp:3p; +enrôlais enrôler ver 3.04 2.77 0.01 0.07 ind:imp:1s; +enrôlait enrôler ver 3.04 2.77 0.01 0.14 ind:imp:3s; +enrôlant enrôler ver 3.04 2.77 0.05 0 par:pre; +enrôle enrôler ver 3.04 2.77 0.17 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enrôlement enrôlement nom m s 0.25 0.34 0.25 0.14 +enrôlements enrôlement nom m p 0.25 0.34 0 0.2 +enrôler enrôler ver 3.04 2.77 0.84 0.95 ind:pre:2p;inf; +enrôlerait enrôler ver 3.04 2.77 0.01 0.14 cnd:pre:3s; +enrôleriez enrôler ver 3.04 2.77 0.01 0 cnd:pre:2p; +enrôlez enrôler ver 3.04 2.77 0.74 0 imp:pre:2p;ind:pre:2p; +enrôlons enrôler ver 3.04 2.77 0.03 0 imp:pre:1p;ind:pre:1p; +enrôlé enrôler ver m s 3.04 2.77 0.94 0.74 par:pas; +enrôlée enrôler ver f s 3.04 2.77 0.02 0.2 par:pas; +enrôlées enrôler ver f p 3.04 2.77 0 0.07 par:pas; +enrôlés enrôler ver m p 3.04 2.77 0.17 0.2 par:pas; +ensablait ensabler ver 0.28 1.15 0.1 0.14 ind:imp:3s; +ensable ensabler ver 0.28 1.15 0 0.27 ind:pre:3s; +ensablement ensablement nom m s 0 0.2 0 0.2 +ensablent ensabler ver 0.28 1.15 0 0.07 ind:pre:3p; +ensabler ensabler ver 0.28 1.15 0.01 0.14 inf; +ensablèrent ensabler ver 0.28 1.15 0 0.07 ind:pas:3p; +ensablé ensablé adj m s 0.03 0.88 0.01 0.27 +ensablée ensabler ver f s 0.28 1.15 0.14 0.2 par:pas; +ensablées ensablé adj f p 0.03 0.88 0 0.14 +ensablés ensablé adj m p 0.03 0.88 0.01 0.27 +ensacher ensacher ver 0.04 0.07 0.02 0 inf; +ensaché ensacher ver m s 0.04 0.07 0.01 0.07 par:pas; +ensanglanta ensanglanter ver 1.07 2.3 0 0.14 ind:pas:3s; +ensanglantaient ensanglanter ver 1.07 2.3 0 0.07 ind:imp:3p; +ensanglantant ensanglanter ver 1.07 2.3 0 0.14 par:pre; +ensanglante ensanglanter ver 1.07 2.3 0.28 0 ind:pre:3s; +ensanglantement ensanglantement nom m s 0 0.07 0 0.07 +ensanglanter ensanglanter ver 1.07 2.3 0 0.07 inf; +ensanglantèrent ensanglanter ver 1.07 2.3 0 0.07 ind:pas:3p; +ensanglanté ensanglanté adj m s 1.55 4.26 0.71 1.55 +ensanglantée ensanglanté adj f s 1.55 4.26 0.52 1.28 +ensanglantées ensanglanté adj f p 1.55 4.26 0.1 0.61 +ensanglantés ensanglanté adj m p 1.55 4.26 0.21 0.81 +ensauvageait ensauvager ver 0.11 0.68 0 0.07 ind:imp:3s; +ensauvagement ensauvagement nom m s 0 0.07 0 0.07 +ensauvagé ensauvager ver m s 0.11 0.68 0.01 0.14 par:pas; +ensauvagée ensauvager ver f s 0.11 0.68 0.1 0.2 par:pas; +ensauvagées ensauvager ver f p 0.11 0.68 0 0.14 par:pas; +ensauvagés ensauvager ver m p 0.11 0.68 0 0.14 par:pas; +ensauve ensauver ver 0 0.14 0 0.07 ind:pre:1s; +ensauvés ensauver ver m p 0 0.14 0 0.07 par:pas; +enseigna enseigner ver 31.98 23.04 0.59 1.15 ind:pas:3s; +enseignaient enseigner ver 31.98 23.04 0.07 0.47 ind:imp:3p; +enseignais enseigner ver 31.98 23.04 0.8 0.34 ind:imp:1s;ind:imp:2s; +enseignait enseigner ver 31.98 23.04 1.29 3.85 ind:imp:3s; +enseignant enseignant nom m s 3.94 1.69 1.63 0.34 +enseignant_robot enseignant_robot nom m s 0 0.07 0 0.07 +enseignante enseignant nom f s 3.94 1.69 0.45 0.47 +enseignantes enseignant nom f p 3.94 1.69 0.03 0.07 +enseignants enseignant nom m p 3.94 1.69 1.84 0.81 +enseigne enseigner ver 31.98 23.04 8.85 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enseignement enseignement nom m s 4.27 12.5 3.61 10.95 +enseignements enseignement nom m p 4.27 12.5 0.66 1.55 +enseignent enseigner ver 31.98 23.04 0.59 0.95 ind:pre:3p; +enseigner enseigner ver 31.98 23.04 10.06 5 inf;; +enseignera enseigner ver 31.98 23.04 0.53 0.41 ind:fut:3s; +enseignerai enseigner ver 31.98 23.04 0.78 0.14 ind:fut:1s; +enseigneraient enseigner ver 31.98 23.04 0.01 0.07 cnd:pre:3p; +enseignerais enseigner ver 31.98 23.04 0.3 0.07 cnd:pre:1s; +enseignerait enseigner ver 31.98 23.04 0.05 0.14 cnd:pre:3s; +enseigneras enseigner ver 31.98 23.04 0.05 0 ind:fut:2s; +enseignerez enseigner ver 31.98 23.04 0.06 0 ind:fut:2p; +enseignerons enseigner ver 31.98 23.04 0.28 0 ind:fut:1p; +enseigneront enseigner ver 31.98 23.04 0.04 0.07 ind:fut:3p; +enseignes enseigner ver 31.98 23.04 0.89 0.07 ind:pre:2s; +enseigneur enseigneur nom m s 0.01 0 0.01 0 +enseignez enseigner ver 31.98 23.04 1.61 0.54 imp:pre:2p;ind:pre:2p; +enseigniez enseigner ver 31.98 23.04 0.17 0.07 ind:imp:2p; +enseignons enseigner ver 31.98 23.04 0.09 0 imp:pre:1p;ind:pre:1p; +enseignât enseigner ver 31.98 23.04 0 0.07 sub:imp:3s; +enseignèrent enseigner ver 31.98 23.04 0 0.2 ind:pas:3p; +enseigné enseigner ver m s 31.98 23.04 3.79 3.85 par:pas; +enseignée enseigner ver f s 31.98 23.04 0.43 0.88 par:pas; +enseignées enseigner ver f p 31.98 23.04 0.22 0.27 par:pas; +enseignés enseigner ver m p 31.98 23.04 0.06 0.34 par:pas; +ensellement ensellement nom m s 0 0.2 0 0.2 +ensellure ensellure nom f s 0.14 0.07 0.14 0.07 +ensellé ensellé adj m s 0.01 0.07 0.01 0 +ensellés ensellé adj m p 0.01 0.07 0 0.07 +ensemble ensemble adv 253.47 145.07 253.47 145.07 +ensembles ensemble nom m p 31.87 63.45 2.13 2.03 +ensemencement ensemencement nom m s 0.01 0.2 0.01 0.14 +ensemencements ensemencement nom m p 0.01 0.2 0 0.07 +ensemencer ensemencer ver 0.23 1.42 0.08 0.41 inf; +ensemencé ensemencer ver m s 0.23 1.42 0.14 0.34 par:pas; +ensemencée ensemencer ver f s 0.23 1.42 0.01 0.2 par:pas; +ensemencés ensemencer ver m p 0.23 1.42 0 0.14 par:pas; +ensemença ensemencer ver 0.23 1.42 0 0.07 ind:pas:3s; +ensemençaient ensemencer ver 0.23 1.42 0 0.07 ind:imp:3p; +ensemençait ensemencer ver 0.23 1.42 0 0.14 ind:imp:3s; +ensemençant ensemencer ver 0.23 1.42 0 0.07 par:pre; +enserra enserrer ver 0.23 7.7 0 0.07 ind:pas:3s; +enserrai enserrer ver 0.23 7.7 0 0.07 ind:pas:1s; +enserraient enserrer ver 0.23 7.7 0.01 1.01 ind:imp:3p; +enserrait enserrer ver 0.23 7.7 0 1.28 ind:imp:3s; +enserrant enserrer ver 0.23 7.7 0 1.49 par:pre; +enserre enserrer ver 0.23 7.7 0.05 1.08 ind:pre:1s;ind:pre:3s; +enserrent enserrer ver 0.23 7.7 0.02 0.74 ind:pre:3p; +enserrer enserrer ver 0.23 7.7 0.01 0.54 inf; +enserrera enserrer ver 0.23 7.7 0.01 0 ind:fut:3s; +enserrerait enserrer ver 0.23 7.7 0 0.07 cnd:pre:3s; +enserres enserrer ver 0.23 7.7 0 0.07 ind:pre:2s; +enserrèrent enserrer ver 0.23 7.7 0 0.07 ind:pas:3p; +enserré enserrer ver m s 0.23 7.7 0.13 0.54 par:pas; +enserrée enserrer ver f s 0.23 7.7 0 0.27 par:pas; +enserrées enserrer ver f p 0.23 7.7 0 0.14 par:pas; +enserrés enserrer ver m p 0.23 7.7 0 0.27 par:pas; +enseveli ensevelir ver m s 3.1 8.58 0.75 2.7 par:pas; +ensevelie ensevelir ver f s 3.1 8.58 0.52 0.88 par:pas; +ensevelies ensevelir ver f p 3.1 8.58 0.06 0.68 par:pas; +ensevelir ensevelir ver 3.1 8.58 1.2 1.08 inf; +ensevelira ensevelir ver 3.1 8.58 0.04 0 ind:fut:3s; +ensevelirait ensevelir ver 3.1 8.58 0 0.07 cnd:pre:3s; +ensevelis ensevelir ver m p 3.1 8.58 0.33 1.76 ind:pre:1s;par:pas; +ensevelissaient ensevelir ver 3.1 8.58 0 0.14 ind:imp:3p; +ensevelissais ensevelir ver 3.1 8.58 0 0.07 ind:imp:1s; +ensevelissait ensevelir ver 3.1 8.58 0 0.34 ind:imp:3s; +ensevelissant ensevelir ver 3.1 8.58 0 0.2 par:pre; +ensevelisse ensevelir ver 3.1 8.58 0.14 0.27 sub:pre:3s; +ensevelissement ensevelissement nom m s 0.03 0.74 0.03 0.74 +ensevelissent ensevelir ver 3.1 8.58 0 0.14 ind:pre:3p; +ensevelisseuse ensevelisseur nom f s 0 0.14 0 0.14 +ensevelissez ensevelir ver 3.1 8.58 0.03 0 imp:pre:2p;ind:pre:2p; +ensevelissons ensevelir ver 3.1 8.58 0 0.07 imp:pre:1p; +ensevelit ensevelir ver 3.1 8.58 0.02 0.2 ind:pre:3s;ind:pas:3s; +ensoleilla ensoleiller ver 0.99 3.31 0 0.14 ind:pas:3s; +ensoleillement ensoleillement nom m s 0.04 0.27 0.04 0.27 +ensoleiller ensoleiller ver 0.99 3.31 0.02 0.07 inf; +ensoleillèrent ensoleiller ver 0.99 3.31 0 0.07 ind:pas:3p; +ensoleillé ensoleillé adj m s 2.12 8.31 1.05 3.04 +ensoleillée ensoleillé adj f s 2.12 8.31 0.75 4.12 +ensoleillées ensoleillé adj f p 2.12 8.31 0.06 0.61 +ensoleillés ensoleillé adj m p 2.12 8.31 0.26 0.54 +ensommeilla ensommeiller ver 0.14 1.15 0 0.07 ind:pas:3s; +ensommeillaient ensommeiller ver 0.14 1.15 0 0.07 ind:imp:3p; +ensommeillait ensommeiller ver 0.14 1.15 0 0.14 ind:imp:3s; +ensommeiller ensommeiller ver 0.14 1.15 0 0.07 inf; +ensommeillé ensommeiller ver m s 0.14 1.15 0.14 0.34 par:pas; +ensommeillée ensommeillé adj f s 0.21 3.38 0.01 1.55 +ensommeillées ensommeillé adj f p 0.21 3.38 0 0.34 +ensommeillés ensommeillé adj m p 0.21 3.38 0.1 0.54 +ensorcelaient ensorceler ver 3.92 1.49 0 0.07 ind:imp:3p; +ensorcelant ensorcelant adj m s 0.21 0.47 0.03 0.2 +ensorcelante ensorcelant adj f s 0.21 0.47 0.19 0.2 +ensorcelantes ensorcelant adj f p 0.21 0.47 0 0.07 +ensorceler ensorceler ver 3.92 1.49 0.67 0.34 inf; +ensorceleur ensorceleur adj m s 0.03 0.07 0.01 0.07 +ensorceleuse ensorceleur nom f s 0.06 0.07 0.03 0.07 +ensorceleuses ensorceleur nom f p 0.06 0.07 0.02 0 +ensorcelez ensorceler ver 3.92 1.49 0.02 0.07 ind:pre:2p; +ensorcelle ensorceler ver 3.92 1.49 0.34 0.34 ind:pre:3s; +ensorcellement ensorcellement nom m s 0.05 0.14 0.05 0.14 +ensorcellent ensorceler ver 3.92 1.49 0.26 0.07 ind:pre:3p; +ensorcelles ensorceler ver 3.92 1.49 0 0.07 ind:pre:2s; +ensorcelé ensorceler ver m s 3.92 1.49 1.72 0.34 par:pas; +ensorcelée ensorceler ver f s 3.92 1.49 0.73 0.14 par:pas; +ensorcelées ensorcelé adj f p 0.35 0.88 0.1 0.14 +ensorcelés ensorceler ver m p 3.92 1.49 0.18 0 par:pas; +ensouple ensouple nom f s 0 0.07 0 0.07 +ensoutanée ensoutané adj f s 0 0.07 0 0.07 +ensoutanées ensoutaner ver f p 0 0.07 0 0.07 par:pas; +ensuit ensuivre ver 1.2 5.34 0.52 1.89 ind:pre:3s; +ensuite ensuite adv_sup 127.92 169.19 127.92 169.19 +ensuivaient ensuivre ver 1.2 5.34 0 0.14 ind:imp:3p; +ensuivait ensuivre ver 1.2 5.34 0 0.34 ind:imp:3s; +ensuive ensuivre ver 1.2 5.34 0.33 0.54 sub:pre:3s; +ensuivent ensuivre ver 1.2 5.34 0.04 0.07 ind:pre:3p; +ensuivi ensuivre ver m s 1.2 5.34 0 0.07 par:pas; +ensuivie ensuivre ver f s 1.2 5.34 0.01 0.07 par:pas; +ensuivies ensuivre ver f p 1.2 5.34 0 0.07 par:pas; +ensuivirent ensuivre ver 1.2 5.34 0.03 0.27 ind:pas:3p; +ensuivit ensuivre ver 1.2 5.34 0.15 1.22 ind:pas:3s; +ensuivra ensuivre ver 1.2 5.34 0.06 0.07 ind:fut:3s; +ensuivraient ensuivre ver 1.2 5.34 0.01 0.07 cnd:pre:3p; +ensuivrait ensuivre ver 1.2 5.34 0.01 0.2 cnd:pre:3s; +ensuivre ensuivre ver 1.2 5.34 0.02 0.34 inf; +ensuivront ensuivre ver 1.2 5.34 0.03 0 ind:fut:3p; +ensuquent ensuquer ver 0 0.47 0 0.07 ind:pre:3p; +ensuqué ensuquer ver m s 0 0.47 0 0.14 par:pas; +ensuquée ensuquer ver f s 0 0.47 0 0.27 par:pas; +entablement entablement nom m s 0 0.07 0 0.07 +entachait entacher ver 0.78 1.76 0 0.27 ind:imp:3s; +entache entacher ver 0.78 1.76 0.31 0.07 imp:pre:2s;ind:pre:3s; +entachent entacher ver 0.78 1.76 0.01 0 ind:pre:3p; +entacher entacher ver 0.78 1.76 0.1 0.14 inf; +entacherait entacher ver 0.78 1.76 0.04 0 cnd:pre:3s; +entaché entacher ver m s 0.78 1.76 0.12 0.81 par:pas; +entachée entacher ver f s 0.78 1.76 0.19 0.34 par:pas; +entachées entacher ver f p 0.78 1.76 0 0.07 par:pas; +entachés entacher ver m p 0.78 1.76 0 0.07 par:pas; +entailla entailler ver 0.52 2.09 0 0.07 ind:pas:3s; +entaillait entailler ver 0.52 2.09 0.01 0.27 ind:imp:3s; +entaille entaille nom f s 1.93 3.92 1.49 2.64 +entaillent entailler ver 0.52 2.09 0 0.27 ind:pre:3p; +entailler entailler ver 0.52 2.09 0.1 0.47 inf; +entaillerai entailler ver 0.52 2.09 0 0.07 ind:fut:1s; +entailles entaille nom f p 1.93 3.92 0.44 1.28 +entaillé entailler ver m s 0.52 2.09 0.18 0.34 par:pas; +entaillée entailler ver f s 0.52 2.09 0.04 0.14 par:pas; +entaillées entaillé adj f p 0.11 0.61 0.01 0 +entaillés entaillé adj m p 0.11 0.61 0.01 0.2 +entama entamer ver 7.44 27.77 0.08 2.03 ind:pas:3s; +entamai entamer ver 7.44 27.77 0.01 0.47 ind:pas:1s; +entamaient entamer ver 7.44 27.77 0.14 1.28 ind:imp:3p; +entamais entamer ver 7.44 27.77 0.07 0.07 ind:imp:1s; +entamait entamer ver 7.44 27.77 0.04 1.62 ind:imp:3s; +entamant entamer ver 7.44 27.77 0.02 0.41 par:pre; +entame entamer ver 7.44 27.77 1.09 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entament entamer ver 7.44 27.77 0.32 0.61 ind:pre:3p; +entamer entamer ver 7.44 27.77 2.42 7.03 inf; +entamera entamer ver 7.44 27.77 0.28 0.07 ind:fut:3s; +entamerai entamer ver 7.44 27.77 0.03 0.07 ind:fut:1s; +entameraient entamer ver 7.44 27.77 0.01 0.07 cnd:pre:3p; +entamerais entamer ver 7.44 27.77 0.14 0.14 cnd:pre:1s; +entamerait entamer ver 7.44 27.77 0.02 0.27 cnd:pre:3s; +entamerez entamer ver 7.44 27.77 0.01 0.07 ind:fut:2p; +entamerons entamer ver 7.44 27.77 0.12 0.07 ind:fut:1p; +entames entamer ver 7.44 27.77 0.02 0 ind:pre:2s; +entamez entamer ver 7.44 27.77 0.26 0.07 imp:pre:2p;ind:pre:2p; +entamons entamer ver 7.44 27.77 0.13 0.14 imp:pre:1p;ind:pre:1p; +entamât entamer ver 7.44 27.77 0 0.27 sub:imp:3s; +entamèrent entamer ver 7.44 27.77 0.11 0.54 ind:pas:3p; +entamé entamer ver m s 7.44 27.77 1.52 5.68 par:pas; +entamée entamer ver f s 7.44 27.77 0.47 3.51 par:pas; +entamées entamer ver f p 7.44 27.77 0.12 0.27 par:pas; +entamés entamer ver m p 7.44 27.77 0.02 0.68 par:pas; +entant enter ver 0.49 0.14 0.12 0 par:pre; +entassa entasser ver 3.9 29.05 0 0.68 ind:pas:3s; +entassaient entasser ver 3.9 29.05 0.14 5.81 ind:imp:3p; +entassait entasser ver 3.9 29.05 0.06 2.43 ind:imp:3s; +entassant entasser ver 3.9 29.05 0 0.61 par:pre; +entasse entasser ver 3.9 29.05 1.07 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entassement entassement nom m s 0 4.53 0 3.31 +entassements entassement nom m p 0 4.53 0 1.22 +entassent entasser ver 3.9 29.05 0.58 2.09 ind:pre:3p; +entasser entasser ver 3.9 29.05 0.65 2.03 inf; +entassera entasser ver 3.9 29.05 0 0.07 ind:fut:3s; +entasseraient entasser ver 3.9 29.05 0 0.14 cnd:pre:3p; +entasserait entasser ver 3.9 29.05 0 0.07 cnd:pre:3s; +entasseront entasser ver 3.9 29.05 0 0.07 ind:fut:3p; +entassez entasser ver 3.9 29.05 0.07 0.07 imp:pre:2p; +entassions entasser ver 3.9 29.05 0 0.34 ind:imp:1p; +entassons entasser ver 3.9 29.05 0.1 0.07 ind:pre:1p; +entassâmes entasser ver 3.9 29.05 0 0.07 ind:pas:1p; +entassèrent entasser ver 3.9 29.05 0 0.34 ind:pas:3p; +entassé entasser ver m s 3.9 29.05 0.07 1.62 par:pas; +entassée entasser ver f s 3.9 29.05 0.03 0.95 par:pas; +entassées entasser ver f p 3.9 29.05 0.02 3.18 par:pas; +entassés entasser ver m p 3.9 29.05 1.1 6.89 par:pas; +ente enter ver 0.49 0.14 0.01 0 ind:pre:3s; +entement entement nom m s 0 0.07 0 0.07 +entend entendre ver 728.67 719.12 41.77 63.11 ind:pre:3s; +entendaient entendre ver 728.67 719.12 1.52 7.09 ind:imp:3p; +entendais entendre ver 728.67 719.12 7.49 29.93 ind:imp:1s;ind:imp:2s; +entendait entendre ver 728.67 719.12 7.11 80.27 ind:imp:3s; +entendant entendre ver 728.67 719.12 1.95 15 par:pre; +entende entendre ver 728.67 719.12 9.72 5.47 sub:pre:1s;sub:pre:3s; +entendement entendement nom m s 1.13 2.7 1.13 2.7 +entendent entendre ver 728.67 719.12 6.75 7.64 ind:pre:3p;sub:pre:3p; +entendes entendre ver 728.67 719.12 1.01 0.41 sub:pre:2s; +entendeur entendeur nom m s 0.28 0.34 0.28 0.27 +entendeurs entendeur nom m p 0.28 0.34 0 0.07 +entendez entendre ver 728.67 719.12 45.11 13.99 imp:pre:2p;ind:pre:2p; +entendiez entendre ver 728.67 719.12 2.24 0.81 ind:imp:2p;sub:pre:2p; +entendions entendre ver 728.67 719.12 0.76 5.68 ind:imp:1p; +entendirent entendre ver 728.67 719.12 0.14 5.14 ind:pas:3p; +entendis entendre ver 728.67 719.12 1.11 16.76 ind:pas:1s; +entendisse entendre ver 728.67 719.12 0 0.14 sub:imp:1s; +entendissent entendre ver 728.67 719.12 0.01 0.2 sub:imp:3p; +entendit entendre ver 728.67 719.12 1.5 63.31 ind:pas:3s; +entendons entendre ver 728.67 719.12 2.05 5.14 imp:pre:1p;ind:pre:1p; +entendra entendre ver 728.67 719.12 6.61 2.57 ind:fut:3s; +entendrai entendre ver 728.67 719.12 1.36 1.08 ind:fut:1s; +entendraient entendre ver 728.67 719.12 0.23 0.88 cnd:pre:3p; +entendrais entendre ver 728.67 719.12 0.85 1.22 cnd:pre:1s;cnd:pre:2s; +entendrait entendre ver 728.67 719.12 1.71 3.18 cnd:pre:3s; +entendras entendre ver 728.67 719.12 2.26 0.61 ind:fut:2s; +entendre entendre ver 728.67 719.12 137.9 162.5 inf;;inf;;inf;; +entendrez entendre ver 728.67 719.12 3.45 0.47 ind:fut:2p; +entendriez entendre ver 728.67 719.12 0.28 0.14 cnd:pre:2p; +entendrions entendre ver 728.67 719.12 0.03 0.14 cnd:pre:1p; +entendrons entendre ver 728.67 719.12 0.63 0.81 ind:fut:1p; +entendront entendre ver 728.67 719.12 1.54 0.47 ind:fut:3p; +entends entendre ver 728.67 719.12 163.49 78.45 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entendu entendre ver m s 728.67 719.12 256.43 122.91 par:pas; +entendue entendre ver f s 728.67 719.12 14.31 11.01 par:pas; +entendues entendre ver f p 728.67 719.12 1.53 2.43 par:pas; +entendus entendre ver m p 728.67 719.12 5.68 6.22 par:pas; +entendîmes entendre ver 728.67 719.12 0.14 1.69 ind:pas:1p; +entendît entendre ver 728.67 719.12 0 2.3 sub:imp:3s; +entente entente nom f s 2.82 10.81 2.72 10.68 +ententes entente nom f p 2.82 10.81 0.1 0.14 +enter enter ver 0.49 0.14 0.35 0.14 inf; +enterra enterrer ver 63.68 28.58 0.26 0.47 ind:pas:3s; +enterrai enterrer ver 63.68 28.58 0.01 0.07 ind:pas:1s; +enterraient enterrer ver 63.68 28.58 0.13 0.14 ind:imp:3p; +enterrais enterrer ver 63.68 28.58 0.04 0.14 ind:imp:1s;ind:imp:2s; +enterrait enterrer ver 63.68 28.58 0.43 0.88 ind:imp:3s; +enterrant enterrer ver 63.68 28.58 0.11 0.07 par:pre; +enterre enterrer ver 63.68 28.58 8.38 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enterrement enterrement nom m s 27.33 21.22 24.71 18.99 +enterrements enterrement nom m p 27.33 21.22 2.62 2.23 +enterrent enterrer ver 63.68 28.58 0.9 0.61 ind:pre:3p; +enterrer enterrer ver 63.68 28.58 17.27 9.12 inf; +enterrera enterrer ver 63.68 28.58 1.02 0.81 ind:fut:3s; +enterrerai enterrer ver 63.68 28.58 0.47 0.14 ind:fut:1s; +enterrerais enterrer ver 63.68 28.58 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +enterrerait enterrer ver 63.68 28.58 0.1 0.14 cnd:pre:3s; +enterreras enterrer ver 63.68 28.58 0.32 0.07 ind:fut:2s; +enterrerez enterrer ver 63.68 28.58 0.09 0.07 ind:fut:2p; +enterrerons enterrer ver 63.68 28.58 0.23 0.14 ind:fut:1p; +enterreront enterrer ver 63.68 28.58 0.11 0.14 ind:fut:3p; +enterres enterrer ver 63.68 28.58 0.4 0.2 ind:pre:2s; +enterreur enterreur nom m s 0 0.07 0 0.07 +enterrez enterrer ver 63.68 28.58 2.94 0.27 imp:pre:2p;ind:pre:2p; +enterriez enterrer ver 63.68 28.58 0.03 0 ind:imp:2p; +enterrions enterrer ver 63.68 28.58 0.04 0.14 ind:imp:1p; +enterrons enterrer ver 63.68 28.58 0.93 0.34 imp:pre:1p;ind:pre:1p; +enterrâmes enterrer ver 63.68 28.58 0 0.07 ind:pas:1p; +enterrèrent enterrer ver 63.68 28.58 0.01 0.14 ind:pas:3p; +enterré enterrer ver m s 63.68 28.58 19.9 6.15 par:pas; +enterrée enterrer ver f s 63.68 28.58 5.92 3.58 par:pas; +enterrées enterrer ver f p 63.68 28.58 0.95 0.47 par:pas; +enterrés enterrer ver m p 63.68 28.58 2.63 1.82 par:pas; +enthalpie enthalpie nom f s 0.01 0 0.01 0 +enthousiasma enthousiasmer ver 1.67 4.66 0 0.61 ind:pas:3s; +enthousiasmai enthousiasmer ver 1.67 4.66 0 0.07 ind:pas:1s; +enthousiasmaient enthousiasmer ver 1.67 4.66 0 0.27 ind:imp:3p; +enthousiasmais enthousiasmer ver 1.67 4.66 0.01 0.07 ind:imp:1s; +enthousiasmait enthousiasmer ver 1.67 4.66 0.02 0.88 ind:imp:3s; +enthousiasmant enthousiasmant adj m s 0.07 0.27 0.04 0.2 +enthousiasmante enthousiasmant adj f s 0.07 0.27 0.03 0.07 +enthousiasme enthousiasme nom m s 7.09 35.61 7.05 33.72 +enthousiasmer enthousiasmer ver 1.67 4.66 0.19 0.68 inf; +enthousiasmes enthousiasme nom m p 7.09 35.61 0.04 1.89 +enthousiasmez enthousiasmer ver 1.67 4.66 0.01 0 ind:pre:2p; +enthousiasmèrent enthousiasmer ver 1.67 4.66 0 0.07 ind:pas:3p; +enthousiasmé enthousiasmer ver m s 1.67 4.66 0.69 0.88 par:pas; +enthousiasmée enthousiasmer ver f s 1.67 4.66 0.17 0.34 par:pas; +enthousiasmés enthousiasmer ver m p 1.67 4.66 0.06 0.34 par:pas; +enthousiaste enthousiaste adj s 4.41 7.7 3.34 5.88 +enthousiastes enthousiaste adj p 4.41 7.7 1.06 1.82 +enticha enticher ver 1.36 1.69 0 0.2 ind:pas:3s; +entichait enticher ver 1.36 1.69 0 0.14 ind:imp:3s; +entiche enticher ver 1.36 1.69 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entichement entichement nom m s 0.01 0 0.01 0 +entichent enticher ver 1.36 1.69 0.01 0.07 ind:pre:3p; +enticher enticher ver 1.36 1.69 0.33 0.07 inf; +entichera enticher ver 1.36 1.69 0.01 0 ind:fut:3s; +entichèrent enticher ver 1.36 1.69 0 0.2 ind:pas:3p; +entiché enticher ver m s 1.36 1.69 0.33 0.47 par:pas; +entichée enticher ver f s 1.36 1.69 0.44 0.47 par:pas; +entichés enticher ver m p 1.36 1.69 0.01 0 par:pas; +entier entier adj m s 76.01 147.91 42.15 56.69 +entiers entier adj m p 76.01 147.91 3.68 12.64 +entifler entifler ver 0 0.14 0 0.07 inf; +entiflé entifler ver m s 0 0.14 0 0.07 par:pas; +entité entité nom f s 3.08 2.09 2.12 1.62 +entités entité nom f p 3.08 2.09 0.95 0.47 +entière entier adj f s 76.01 147.91 26.45 62.97 +entièrement entièrement adv 17.17 39.93 17.17 39.93 +entières entier adj f p 76.01 147.91 3.73 15.61 +entièreté entièreté nom f s 0.02 0 0.02 0 +entoilage entoilage nom m s 0.01 0.07 0.01 0.07 +entoiler entoiler ver 0.02 0.2 0.01 0 inf; +entoilées entoiler ver f p 0.02 0.2 0.01 0.07 par:pas; +entoilés entoiler ver m p 0.02 0.2 0 0.14 par:pas; +entolome entolome nom m s 0 0.14 0 0.07 +entolomes entolome nom m p 0 0.14 0 0.07 +entomologie entomologie nom f s 0.19 0.27 0.19 0.27 +entomologique entomologique adj s 0.01 0.07 0.01 0.07 +entomologiste entomologiste nom s 0.8 1.28 0.79 1.15 +entomologistes entomologiste nom p 0.8 1.28 0.01 0.14 +entonna entonner ver 1.61 8.24 0 1.42 ind:pas:3s; +entonnaient entonner ver 1.61 8.24 0.23 0.2 ind:imp:3p; +entonnais entonner ver 1.61 8.24 0.1 0.07 ind:imp:1s;ind:imp:2s; +entonnait entonner ver 1.61 8.24 0.13 1.22 ind:imp:3s; +entonnant entonner ver 1.61 8.24 0.02 0.2 par:pre; +entonne entonner ver 1.61 8.24 0.46 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entonnent entonner ver 1.61 8.24 0.12 0.27 ind:pre:3p; +entonner entonner ver 1.61 8.24 0.42 2.43 inf; +entonnera entonner ver 1.61 8.24 0 0.07 ind:fut:3s; +entonneraient entonner ver 1.61 8.24 0 0.07 cnd:pre:3p; +entonnions entonner ver 1.61 8.24 0 0.14 ind:imp:1p; +entonnoir entonnoir nom m s 0.83 9.46 0.81 7.97 +entonnoirs entonnoir nom m p 0.83 9.46 0.01 1.49 +entonnons entonner ver 1.61 8.24 0.01 0.07 imp:pre:1p; +entonnâmes entonner ver 1.61 8.24 0 0.07 ind:pas:1p; +entonnèrent entonner ver 1.61 8.24 0 0.27 ind:pas:3p; +entonné entonner ver m s 1.61 8.24 0.11 0.74 par:pas; +entorse entorse nom f s 1.63 2.84 1.4 2.36 +entorses entorse nom f p 1.63 2.84 0.23 0.47 +entortilla entortiller ver 0.25 3.78 0 0.34 ind:pas:3s; +entortillage entortillage nom m s 0 0.14 0 0.07 +entortillages entortillage nom m p 0 0.14 0 0.07 +entortillai entortiller ver 0.25 3.78 0 0.14 ind:pas:1s; +entortillaient entortiller ver 0.25 3.78 0 0.27 ind:imp:3p; +entortillait entortiller ver 0.25 3.78 0.03 0.27 ind:imp:3s; +entortillant entortiller ver 0.25 3.78 0 0.14 par:pre; +entortille entortiller ver 0.25 3.78 0.05 0.2 imp:pre:2s;ind:pre:3s; +entortillement entortillement nom m s 0 0.14 0 0.14 +entortillent entortiller ver 0.25 3.78 0 0.2 ind:pre:3p; +entortiller entortiller ver 0.25 3.78 0.14 0.47 inf; +entortilleraient entortiller ver 0.25 3.78 0 0.07 cnd:pre:3p; +entortillé entortiller ver m s 0.25 3.78 0.03 0.68 par:pas; +entortillée entortillé adj f s 0.06 0.34 0.01 0.07 +entortillées entortiller ver f p 0.25 3.78 0 0.27 par:pas; +entortillés entortillé adj m p 0.06 0.34 0.01 0.07 +entour entour nom m s 0.01 1.42 0.01 1.15 +entoura entourer ver 23.99 112.09 0.16 4.26 ind:pas:3s; +entourage entourage nom m s 3 10.74 3 10.68 +entourages entourage nom m p 3 10.74 0 0.07 +entourai entourer ver 23.99 112.09 0 0.2 ind:pas:1s; +entouraient entourer ver 23.99 112.09 0.48 12.97 ind:imp:3p; +entourais entourer ver 23.99 112.09 0.2 0.34 ind:imp:1s; +entourait entourer ver 23.99 112.09 0.95 14.05 ind:imp:3s; +entourant entourer ver 23.99 112.09 0.9 6.28 par:pre; +entoure entourer ver 23.99 112.09 3.19 9.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +entourent entourer ver 23.99 112.09 3.12 7.91 ind:pre:3p; +entourer entourer ver 23.99 112.09 1.21 4.93 inf; +entourera entourer ver 23.99 112.09 0.14 0.2 ind:fut:3s; +entoureraient entourer ver 23.99 112.09 0.01 0.07 cnd:pre:3p; +entourerait entourer ver 23.99 112.09 0 0.07 cnd:pre:3s; +entoureront entourer ver 23.99 112.09 0.11 0.07 ind:fut:3p; +entoures entourer ver 23.99 112.09 0.05 0.07 ind:pre:2s; +entourez entourer ver 23.99 112.09 0.37 0.14 imp:pre:2p;ind:pre:2p; +entourions entourer ver 23.99 112.09 0 0.47 ind:imp:1p; +entourloupe entourloupe nom f s 0.94 1.01 0.78 0.68 +entourloupent entourlouper ver 0.12 0 0.1 0 ind:pre:3p; +entourlouper entourlouper ver 0.12 0 0.02 0 inf; +entourloupes entourloupe nom f p 0.94 1.01 0.17 0.34 +entourloupette entourloupette nom f s 0.17 0.47 0.04 0.2 +entourloupettes entourloupette nom f p 0.17 0.47 0.12 0.27 +entournures entournure nom f p 0.03 1.28 0.03 1.28 +entourons entourer ver 23.99 112.09 0.01 0.07 imp:pre:1p;ind:pre:1p; +entours entour nom m p 0.01 1.42 0 0.27 +entourât entourer ver 23.99 112.09 0 0.14 sub:imp:3s; +entourèrent entourer ver 23.99 112.09 0.03 1.42 ind:pas:3p; +entouré entourer ver m s 23.99 112.09 7.57 26.08 par:pas; +entourée entourer ver f s 23.99 112.09 3.99 13.11 par:pas; +entourées entourer ver f p 23.99 112.09 0.17 2.91 par:pas; +entourés entourer ver m p 23.99 112.09 1.32 7.09 par:pas; +entr_acte entr_acte nom m s 0.27 0 0.14 0 +entr_acte entr_acte nom m p 0.27 0 0.14 0 +entr_aimer entr_aimer ver 0 0.07 0 0.07 inf; +entr_apercevoir entr_apercevoir ver 0.03 1.08 0.01 0.27 inf; +entr_apercevoir entr_apercevoir ver m s 0.03 1.08 0 0.14 par:pas; +entr_apercevoir entr_apercevoir ver f s 0.03 1.08 0.02 0.34 par:pas; +entr_apercevoir entr_apercevoir ver f p 0.03 1.08 0 0.07 par:pas; +entr_apercevoir entr_apercevoir ver m p 0.03 1.08 0 0.27 ind:pas:1s;par:pas; +entr_appeler entr_appeler ver 0 0.07 0 0.07 ind:pre:3p; +entr_ouvert entr_ouvert adj m s 0.01 1.49 0 0.41 +entr_ouvert entr_ouvert adj f s 0.01 1.49 0.01 0.74 +entr_ouvert entr_ouvert adj f p 0.01 1.49 0 0.27 +entr_ouvert entr_ouvert adj m p 0.01 1.49 0 0.07 +entr_égorger entr_égorger ver 0 0.2 0 0.07 ind:pre:3p; +entr_égorger entr_égorger ver 0 0.2 0 0.07 inf; +entr_égorger entr_égorger ver 0 0.2 0 0.07 ind:pas:3p; +entra entrer ver 450.11 398.38 2.72 51.96 ind:pas:3s; +entracte entracte nom m s 1.61 5.74 1.59 4.86 +entractes entracte nom m p 1.61 5.74 0.02 0.88 +entrai entrer ver 450.11 398.38 0.2 7.03 ind:pas:1s; +entraidait entraider ver 3.86 0.68 0.06 0 ind:imp:3s; +entraidant entraider ver 3.86 0.68 0 0.07 par:pre; +entraide entraider ver 3.86 0.68 0.88 0 ind:pre:3s; +entraident entraider ver 3.86 0.68 0.12 0.07 ind:pre:3p; +entraider entraider ver 3.86 0.68 2.48 0.54 inf; +entraidez entraider ver 3.86 0.68 0.23 0 imp:pre:2p; +entraidiez entraider ver 3.86 0.68 0.01 0 ind:imp:2p; +entraidons entraider ver 3.86 0.68 0.05 0 ind:pre:1p; +entraidés entraider ver m p 3.86 0.68 0.02 0 par:pas; +entraient entrer ver 450.11 398.38 0.71 10.41 ind:imp:3p; +entrailles entrailles nom f p 4.96 13.45 4.96 13.45 +entrain entrain nom m s 3.82 7.97 3.82 7.97 +entrais entrer ver 450.11 398.38 1.01 4.46 ind:imp:1s;ind:imp:2s; +entrait entrer ver 450.11 398.38 3.3 33.45 ind:imp:3s; +entrant entrer ver 450.11 398.38 2.97 13.85 par:pre; +entrante entrant adj f s 0.92 0.61 0.07 0 +entrantes entrant adj f p 0.92 0.61 0.04 0 +entrants entrant adj m p 0.92 0.61 0.33 0 +entrapercevoir entrapercevoir ver 0.06 0.2 0.01 0 inf; +entraperçu entrapercevoir ver m s 0.06 0.2 0.05 0.07 par:pas; +entraperçues entrapercevoir ver f p 0.06 0.2 0 0.07 par:pas; +entraperçus entrapercevoir ver m p 0.06 0.2 0 0.07 par:pas; +entrassent entrer ver 450.11 398.38 0 0.07 sub:imp:3p; +entrava entraver ver 2.28 11.62 0 0.07 ind:pas:3s; +entravai entraver ver 2.28 11.62 0 0.07 ind:pas:1s; +entravaient entraver ver 2.28 11.62 0.01 0.14 ind:imp:3p; +entravais entraver ver 2.28 11.62 0 0.34 ind:imp:1s; +entravait entraver ver 2.28 11.62 0.01 1.55 ind:imp:3s; +entravant entraver ver 2.28 11.62 0.01 0.41 par:pre; +entrave entrave nom f s 1.17 2.5 0.85 1.01 +entravent entraver ver 2.28 11.62 0.19 0.68 ind:pre:3p; +entraver entraver ver 2.28 11.62 0.75 2.23 inf; +entravera entraver ver 2.28 11.62 0.06 0.14 ind:fut:3s; +entraverais entraver ver 2.28 11.62 0 0.07 cnd:pre:1s; +entraverait entraver ver 2.28 11.62 0.01 0.34 cnd:pre:3s; +entraveront entraver ver 2.28 11.62 0.01 0.07 ind:fut:3p; +entraves entrave nom f p 1.17 2.5 0.32 1.49 +entravez entraver ver 2.28 11.62 0.14 0 imp:pre:2p;ind:pre:2p; +entravèrent entraver ver 2.28 11.62 0 0.14 ind:pas:3p; +entravé entraver ver m s 2.28 11.62 0.46 1.35 par:pas; +entravée entraver ver f s 2.28 11.62 0.04 0.27 par:pas; +entravées entravé adj f p 0.41 1.76 0 0.47 +entravés entraver ver m p 2.28 11.62 0.14 0.27 par:pas; +entraîna entraîner ver 50.68 101.08 0.49 13.31 ind:pas:3s; +entraînai entraîner ver 50.68 101.08 0 1.01 ind:pas:1s; +entraînaient entraîner ver 50.68 101.08 0.05 3.11 ind:imp:3p; +entraînais entraîner ver 50.68 101.08 0.61 1.01 ind:imp:1s;ind:imp:2s; +entraînait entraîner ver 50.68 101.08 1.06 12.16 ind:imp:3s; +entraînant entraîner ver 50.68 101.08 1.13 7.64 par:pre; +entraînante entraînant adj f s 0.63 2.16 0.1 0.34 +entraînants entraînant adj m p 0.63 2.16 0.02 0.27 +entraîne entraîner ver 50.68 101.08 11.28 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +entraînement entraînement nom m s 20.31 8.18 19.63 7.91 +entraînements entraînement nom m p 20.31 8.18 0.67 0.27 +entraînent entraîner ver 50.68 101.08 1.5 3.24 ind:pre:3p;sub:pre:3p; +entraîner entraîner ver 50.68 101.08 15.39 20.81 inf;;inf;;inf;; +entraînera entraîner ver 50.68 101.08 0.94 0.74 ind:fut:3s; +entraînerai entraîner ver 50.68 101.08 0.4 0.07 ind:fut:1s; +entraîneraient entraîner ver 50.68 101.08 0.02 0.41 cnd:pre:3p; +entraînerais entraîner ver 50.68 101.08 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +entraînerait entraîner ver 50.68 101.08 0.54 1.89 cnd:pre:3s; +entraîneras entraîner ver 50.68 101.08 0.11 0.14 ind:fut:2s; +entraînerez entraîner ver 50.68 101.08 0.09 0 ind:fut:2p; +entraîneriez entraîner ver 50.68 101.08 0 0.07 cnd:pre:2p; +entraîneront entraîner ver 50.68 101.08 0.08 0.27 ind:fut:3p; +entraînes entraîner ver 50.68 101.08 2.05 0.07 ind:pre:2s;sub:pre:2s; +entraîneur entraîneur nom m s 8.69 4.46 7.87 2.77 +entraîneurs entraîneur nom m p 8.69 4.46 0.45 0.41 +entraîneuse entraîneur nom f s 8.69 4.46 0.33 0.47 +entraîneuses entraîneur nom f p 8.69 4.46 0.04 0.81 +entraînez entraîner ver 50.68 101.08 0.84 0.07 imp:pre:2p;ind:pre:2p; +entraîniez entraîner ver 50.68 101.08 0.11 0 ind:imp:2p;sub:pre:2p; +entraînons entraîner ver 50.68 101.08 0.15 0.07 imp:pre:1p;ind:pre:1p; +entraînât entraîner ver 50.68 101.08 0 0.27 sub:imp:3s; +entraînèrent entraîner ver 50.68 101.08 0.14 1.15 ind:pas:3p; +entraîné entraîner ver m s 50.68 101.08 8.33 10.41 par:pas; +entraînée entraîner ver f s 50.68 101.08 2.47 5 ind:imp:3p;par:pas; +entraînées entraîner ver f p 50.68 101.08 0.09 1.01 par:pas; +entraînés entraîner ver m p 50.68 101.08 2.73 4.12 par:pas; +entre entre pre 372.72 833.99 372.72 833.99 +entre_deux entre_deux nom m 0.34 0.81 0.34 0.81 +entre_deux_guerres entre_deux_guerres nom m 0.1 0.74 0.1 0.74 +entre_déchirer entre_déchirer ver 0.04 0.61 0.02 0.14 ind:imp:3p; +entre_déchirer entre_déchirer ver 0.04 0.61 0 0.07 ind:imp:3s; +entre_déchirer entre_déchirer ver 0.04 0.61 0.01 0 ind:pre:3s; +entre_déchirer entre_déchirer ver 0.04 0.61 0 0.14 ind:pre:3p; +entre_déchirer entre_déchirer ver 0.04 0.61 0.01 0.2 inf; +entre_déchirer entre_déchirer ver 0.04 0.61 0 0.07 ind:pas:3p; +entre_dévorer entre_dévorer ver 0.3 0.34 0.01 0.07 par:pre; +entre_dévorer entre_dévorer ver 0.3 0.34 0.25 0.07 ind:pre:3p; +entre_dévorer entre_dévorer ver 0.3 0.34 0.05 0.14 inf; +entre_dévorer entre_dévorer ver 0.3 0.34 0 0.07 ind:pas:3p; +entre_jambe entre_jambe nom m s 0.03 0.07 0.03 0.07 +entre_jambes entre_jambes nom m 0.07 0.07 0.07 0.07 +entre_rail entre_rail nom m s 0.01 0 0.01 0 +entre_regarder entre_regarder ver 0 0.34 0 0.07 ind:imp:3s; +entre_regarder entre_regarder ver 0 0.34 0 0.07 ind:pre:3p; +entre_regarder entre_regarder ver 0 0.34 0 0.14 ind:pas:3p; +entre_regarder entre_regarder ver m p 0 0.34 0 0.07 par:pas; +entre_temps entre_temps adv 4.04 7.97 4.04 7.97 +entre_tuer entre_tuer ver 2.63 1.01 0.01 0 ind:imp:3p; +entre_tuer entre_tuer ver 2.63 1.01 0 0.14 ind:imp:3s; +entre_tuer entre_tuer ver 2.63 1.01 0.23 0.07 ind:pre:3s; +entre_tuer entre_tuer ver 2.63 1.01 0.55 0.07 ind:pre:3p; +entre_tuer entre_tuer ver 2.63 1.01 1.33 0.68 inf; +entre_tuer entre_tuer ver 2.63 1.01 0.14 0 ind:fut:3p; +entre_tuer entre_tuer ver 2.63 1.01 0.03 0 imp:pre:2p;ind:pre:2p; +entre_tuer entre_tuer ver 2.63 1.01 0.01 0 ind:imp:1p; +entre_tuer entre_tuer ver m p 2.63 1.01 0.34 0.07 par:pas; +entrebattre entrebattre ver 0 0.07 0 0.07 inf; +entrebâilla entrebâiller ver 0.12 5.88 0 0.88 ind:pas:3s; +entrebâillaient entrebâiller ver 0.12 5.88 0 0.27 ind:imp:3p; +entrebâillais entrebâiller ver 0.12 5.88 0 0.07 ind:imp:1s; +entrebâillait entrebâiller ver 0.12 5.88 0 0.41 ind:imp:3s; +entrebâillant entrebâiller ver 0.12 5.88 0.1 0.2 par:pre; +entrebâille entrebâiller ver 0.12 5.88 0 1.01 ind:pre:1s;ind:pre:3s; +entrebâillement entrebâillement nom m s 0.02 3.51 0.02 3.51 +entrebâillent entrebâiller ver 0.12 5.88 0 0.07 ind:pre:3p; +entrebâiller entrebâiller ver 0.12 5.88 0 0.47 inf; +entrebâillerait entrebâiller ver 0.12 5.88 0 0.07 cnd:pre:3s; +entrebâilleur entrebâilleur nom m s 0.14 0 0.14 0 +entrebâillèrent entrebâiller ver 0.12 5.88 0 0.07 ind:pas:3p; +entrebâillé entrebâiller ver m s 0.12 5.88 0.01 0.47 par:pas; +entrebâillée entrebâillé adj f s 0.38 3.11 0.38 2.03 +entrebâillées entrebâiller ver f p 0.12 5.88 0 0.07 par:pas; +entrebâillés entrebâillé adj m p 0.38 3.11 0 0.34 +entrechat entrechat nom m s 0.21 0.95 0.2 0.14 +entrechats entrechat nom m p 0.21 0.95 0.01 0.81 +entrechoc entrechoc nom m s 0 0.14 0 0.07 +entrechocs entrechoc nom m p 0 0.14 0 0.07 +entrechoquaient entrechoquer ver 0.19 5.81 0.03 1.01 ind:imp:3p; +entrechoquait entrechoquer ver 0.19 5.81 0 0.07 ind:imp:3s; +entrechoquant entrechoquer ver 0.19 5.81 0.01 0.68 par:pre; +entrechoque entrechoquer ver 0.19 5.81 0 0.07 ind:pre:1s; +entrechoquement entrechoquement nom m s 0 0.07 0 0.07 +entrechoquent entrechoquer ver 0.19 5.81 0.1 1.08 ind:pre:3p; +entrechoquer entrechoquer ver 0.19 5.81 0.02 0.54 inf; +entrechoqueront entrechoquer ver 0.19 5.81 0.01 0 ind:fut:3p; +entrechoquions entrechoquer ver 0.19 5.81 0 0.07 ind:imp:1p; +entrechoquèrent entrechoquer ver 0.19 5.81 0 0.27 ind:pas:3p; +entrechoqué entrechoquer ver m s 0.19 5.81 0 0.41 par:pas; +entrechoquées entrechoquer ver f p 0.19 5.81 0 0.54 par:pas; +entrechoqués entrechoquer ver m p 0.19 5.81 0.02 1.08 par:pas; +entreclos entreclore ver m s 0 0.07 0 0.07 par:pas; +entrecloses entreclos adj f p 0 0.07 0 0.07 +entrecoupaient entrecouper ver 0.06 3.85 0 0.07 ind:imp:3p; +entrecoupais entrecouper ver 0.06 3.85 0 0.07 ind:imp:1s; +entrecoupait entrecouper ver 0.06 3.85 0 0.2 ind:imp:3s; +entrecoupant entrecouper ver 0.06 3.85 0 0.07 par:pre; +entrecoupe entrecouper ver 0.06 3.85 0 0.07 ind:pre:3s; +entrecoupent entrecouper ver 0.06 3.85 0.01 0 ind:pre:3p; +entrecouper entrecouper ver 0.06 3.85 0 0.07 inf; +entrecoupé entrecouper ver m s 0.06 3.85 0.03 1.01 par:pas; +entrecoupée entrecoupé adj f s 0.01 0.95 0.01 0.34 +entrecoupées entrecouper ver f p 0.06 3.85 0.01 0.61 par:pas; +entrecoupés entrecouper ver m p 0.06 3.85 0.01 0.74 par:pas; +entrecroisaient entrecroiser ver 0.28 5.54 0 1.49 ind:imp:3p; +entrecroisait entrecroiser ver 0.28 5.54 0 0.14 ind:imp:3s; +entrecroisant entrecroiser ver 0.28 5.54 0 0.95 par:pre; +entrecroise entrecroiser ver 0.28 5.54 0 0.07 ind:pre:3s; +entrecroisement entrecroisement nom m s 0 0.68 0 0.61 +entrecroisements entrecroisement nom m p 0 0.68 0 0.07 +entrecroisent entrecroiser ver 0.28 5.54 0.16 0.68 ind:pre:3p; +entrecroiser entrecroiser ver 0.28 5.54 0.02 0 inf; +entrecroisèrent entrecroiser ver 0.28 5.54 0 0.2 ind:pas:3p; +entrecroisé entrecroiser ver m s 0.28 5.54 0.02 0 par:pas; +entrecroisées entrecroiser ver f p 0.28 5.54 0.03 1.08 par:pas; +entrecroisés entrecroiser ver m p 0.28 5.54 0.04 0.95 par:pas; +entrecuisse entrecuisse nom m s 0.22 0.68 0.22 0.68 +entrecôte entrecôte nom f s 0.41 1.01 0.25 0.81 +entrecôtes entrecôte nom f p 0.41 1.01 0.16 0.2 +entredéchire entredéchirer ver 0.01 0.07 0.01 0.07 ind:pre:3s;sub:pre:3s; +entredévorait entredévorer ver 0.01 0.07 0.01 0 ind:imp:3s; +entredévorer entredévorer ver 0.01 0.07 0 0.07 inf; +entrefaites entrefaite nom f p 0 2.03 0 2.03 +entreferma entrefermer ver 0 0.2 0 0.07 ind:pas:3s; +entrefermée entrefermer ver f s 0 0.2 0 0.07 par:pas; +entrefermées entrefermer ver f p 0 0.2 0 0.07 par:pas; +entrefilet entrefilet nom m s 0.08 1.55 0.07 1.28 +entrefilets entrefilet nom m p 0.08 1.55 0.01 0.27 +entregent entregent nom m s 0.14 0.41 0.14 0.41 +entrejambe entrejambe nom m s 0.8 1.49 0.76 1.35 +entrejambes entrejambe nom m p 0.8 1.49 0.04 0.14 +entrelace entrelacer ver 0.71 2.03 0.02 0.14 imp:pre:2s;ind:pre:3s; +entrelacement entrelacement nom m s 0.01 0.34 0.01 0.34 +entrelacent entrelacer ver 0.71 2.03 0.13 0.27 ind:pre:3p; +entrelacer entrelacer ver 0.71 2.03 0.03 0.14 inf; +entrelacs entrelacs nom m 0.31 2.84 0.31 2.84 +entrelacèrent entrelacer ver 0.71 2.03 0 0.07 ind:pas:3p; +entrelacé entrelacer ver m s 0.71 2.03 0.04 0.2 par:pas; +entrelacée entrelacer ver f s 0.71 2.03 0.01 0.07 par:pas; +entrelacées entrelacer ver f p 0.71 2.03 0.05 0.34 par:pas; +entrelacés entrelacer ver m p 0.71 2.03 0.43 0.34 par:pas; +entrelarde entrelarder ver 0 0.34 0 0.07 ind:pre:3s; +entrelarder entrelarder ver 0 0.34 0 0.07 inf; +entrelardé entrelardé adj m s 0 0.07 0 0.07 +entrelardée entrelarder ver f s 0 0.34 0 0.07 par:pas; +entrelardées entrelarder ver f p 0 0.34 0 0.07 par:pas; +entrelardés entrelarder ver m p 0 0.34 0 0.07 par:pas; +entrelaçaient entrelacer ver 0.71 2.03 0 0.41 ind:imp:3p; +entrelaçait entrelacer ver 0.71 2.03 0 0.07 ind:imp:3s; +entremet entremettre ver 0.01 0.81 0 0.14 ind:pre:3s; +entremets entremets nom m 0.03 1.42 0.03 1.42 +entremettait entremettre ver 0.01 0.81 0 0.07 ind:imp:3s; +entremetteur entremetteur nom m s 0.92 1.01 0.68 0.61 +entremetteurs entremetteur nom m p 0.92 1.01 0.09 0.14 +entremetteuse entremetteur nom f s 0.92 1.01 0.16 0.27 +entremettre entremettre ver 0.01 0.81 0 0.27 inf; +entremis entremettre ver m s 0.01 0.81 0 0.14 par:pas; +entremise entremise nom f s 0.16 1.49 0.16 1.49 +entremit entremettre ver 0.01 0.81 0 0.2 ind:pas:3s; +entremêlaient entremêler ver 0.37 2.91 0 0.88 ind:imp:3p; +entremêlait entremêler ver 0.37 2.91 0 0.14 ind:imp:3s; +entremêlant entremêler ver 0.37 2.91 0.01 0.34 par:pre; +entremêle entremêler ver 0.37 2.91 0 0.14 ind:pre:3s; +entremêlement entremêlement nom m s 0 0.47 0 0.47 +entremêlent entremêler ver 0.37 2.91 0.16 0.2 ind:pre:3p; +entremêlé entremêler ver m s 0.37 2.91 0.01 0.07 par:pas; +entremêlées entremêler ver f p 0.37 2.91 0.04 0.34 par:pas; +entremêlés entremêler ver m p 0.37 2.91 0.15 0.81 par:pas; +entrent entrer ver 450.11 398.38 6.82 7.3 ind:pre:3p; +entrepont entrepont nom m s 0.13 0.74 0.13 0.68 +entreponts entrepont nom m p 0.13 0.74 0 0.07 +entreposage entreposage nom m s 0.11 0 0.11 0 +entreposais entreposer ver 0.94 3.31 0 0.07 ind:imp:1s; +entreposait entreposer ver 0.94 3.31 0.01 0.41 ind:imp:3s; +entrepose entreposer ver 0.94 3.31 0.1 0.2 ind:pre:3s; +entreposent entreposer ver 0.94 3.31 0.01 0.07 ind:pre:3p; +entreposer entreposer ver 0.94 3.31 0.36 0.68 inf; +entreposerait entreposer ver 0.94 3.31 0 0.07 cnd:pre:3s; +entreposez entreposer ver 0.94 3.31 0.03 0 imp:pre:2p;ind:pre:2p; +entreposions entreposer ver 0.94 3.31 0.01 0.07 ind:imp:1p; +entreposé entreposer ver m s 0.94 3.31 0.14 0.68 par:pas; +entreposée entreposer ver f s 0.94 3.31 0.04 0.07 par:pas; +entreposées entreposer ver f p 0.94 3.31 0.09 0.14 par:pas; +entreposés entreposer ver m p 0.94 3.31 0.15 0.88 par:pas; +entreprenaient entreprendre ver 6.78 47.84 0.01 0.47 ind:imp:3p; +entreprenais entreprendre ver 6.78 47.84 0.03 0.47 ind:imp:1s;ind:imp:2s; +entreprenait entreprendre ver 6.78 47.84 0.12 2.64 ind:imp:3s; +entreprenant entreprendre ver 6.78 47.84 0.46 0.88 par:pre; +entreprenante entreprenant adj f s 0.48 2.09 0.16 0.27 +entreprenantes entreprenant adj f p 0.48 2.09 0.02 0.07 +entreprenants entreprenant adj m p 0.48 2.09 0.05 0.27 +entreprend entreprendre ver 6.78 47.84 0.4 2.84 ind:pre:3s; +entreprendrai entreprendre ver 6.78 47.84 0.01 0.14 ind:fut:1s; +entreprendraient entreprendre ver 6.78 47.84 0.01 0.2 cnd:pre:3p; +entreprendrais entreprendre ver 6.78 47.84 0.02 0.14 cnd:pre:1s; +entreprendrait entreprendre ver 6.78 47.84 0.02 0.74 cnd:pre:3s; +entreprendras entreprendre ver 6.78 47.84 0.11 0 ind:fut:2s; +entreprendre entreprendre ver 6.78 47.84 2.38 11.42 inf; +entreprendrez entreprendre ver 6.78 47.84 0.01 0.07 ind:fut:2p; +entreprendrons entreprendre ver 6.78 47.84 0.02 0.07 ind:fut:1p; +entreprends entreprendre ver 6.78 47.84 0.64 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entrepreneur entrepreneur nom m s 4.88 2.16 3.24 1.35 +entrepreneurs entrepreneur nom m p 4.88 2.16 1.62 0.74 +entrepreneuse entrepreneur nom f s 4.88 2.16 0.03 0 +entrepreneuses entrepreneur nom f p 4.88 2.16 0 0.07 +entreprenez entreprendre ver 6.78 47.84 0.13 0.14 imp:pre:2p;ind:pre:2p; +entrepreniez entreprendre ver 6.78 47.84 0.02 0.07 ind:imp:2p; +entreprenions entreprendre ver 6.78 47.84 0 0.2 ind:imp:1p; +entreprenne entreprendre ver 6.78 47.84 0.01 0.41 sub:pre:1s;sub:pre:3s; +entreprennent entreprendre ver 6.78 47.84 0.07 0.74 ind:pre:3p; +entreprenons entreprendre ver 6.78 47.84 0.27 0.07 ind:pre:1p; +entreprirent entreprendre ver 6.78 47.84 0 1.28 ind:pas:3p; +entrepris entreprendre ver m 6.78 47.84 0.99 10.74 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +entreprise entreprise nom f s 28.36 38.31 22.79 29.05 +entreprises entreprise nom f p 28.36 38.31 5.57 9.26 +entreprit entreprendre ver 6.78 47.84 0.34 10.34 ind:pas:3s; +entreprîmes entreprendre ver 6.78 47.84 0.12 0.14 ind:pas:1p; +entreprît entreprendre ver 6.78 47.84 0.01 0.14 sub:imp:3s; +entrepôt entrepôt nom m s 9.75 8.58 7.47 2.36 +entrepôts entrepôt nom m p 9.75 8.58 2.28 6.22 +entrer entrer ver 450.11 398.38 160.13 109.26 inf;; +entrera entrer ver 450.11 398.38 3.06 1.76 ind:fut:3s; +entrerai entrer ver 450.11 398.38 1.84 1.28 ind:fut:1s; +entreraient entrer ver 450.11 398.38 0.05 0.61 cnd:pre:3p; +entrerais entrer ver 450.11 398.38 0.54 0.41 cnd:pre:1s;cnd:pre:2s; +entrerait entrer ver 450.11 398.38 0.58 2.23 cnd:pre:3s; +entreras entrer ver 450.11 398.38 0.68 0.81 ind:fut:2s; +entreregardèrent entreregarder ver 0 0.07 0 0.07 ind:pas:3p; +entrerez entrer ver 450.11 398.38 1.24 0.27 ind:fut:2p; +entrerions entrer ver 450.11 398.38 0.17 0.07 cnd:pre:1p; +entrerons entrer ver 450.11 398.38 0.57 0.27 ind:fut:1p; +entreront entrer ver 450.11 398.38 0.96 0.88 ind:fut:3p; +entres entrer ver 450.11 398.38 7.18 0.81 ind:pre:1p;ind:pre:2s;sub:pre:2s; +entresol entresol nom m s 0.05 1.35 0.05 1.28 +entresols entresol nom m p 0.05 1.35 0 0.07 +entretenaient entretenir ver 13.27 46.42 0.05 2.7 ind:imp:3p; +entretenais entretenir ver 13.27 46.42 0.1 0.88 ind:imp:1s;ind:imp:2s; +entretenait entretenir ver 13.27 46.42 0.39 8.85 ind:imp:3s; +entretenant entretenir ver 13.27 46.42 0.04 1.08 par:pre; +entreteneur entreteneur nom m s 0.01 0.07 0 0.07 +entreteneuse entreteneur nom f s 0.01 0.07 0.01 0 +entretenez entretenir ver 13.27 46.42 0.27 0.14 imp:pre:2p;ind:pre:2p; +entreteniez entretenir ver 13.27 46.42 0.07 0 ind:imp:2p; +entretenions entretenir ver 13.27 46.42 0.1 0.61 ind:imp:1p; +entretenir entretenir ver 13.27 46.42 8.07 17.43 inf; +entretenons entretenir ver 13.27 46.42 0.09 0.14 imp:pre:1p;ind:pre:1p; +entretenu entretenir ver m s 13.27 46.42 0.42 3.24 par:pas; +entretenue entretenir ver f s 13.27 46.42 0.52 1.22 par:pas; +entretenues entretenu adj f p 0.93 4.05 0.04 0.68 +entretenus entretenir ver m p 13.27 46.42 0.08 0.95 par:pas; +entretien entretien nom m s 18.92 27.77 16.72 20.54 +entretiendra entretenir ver 13.27 46.42 0.14 0 ind:fut:3s; +entretiendrai entretenir ver 13.27 46.42 0.02 0.07 ind:fut:1s; +entretiendraient entretenir ver 13.27 46.42 0 0.14 cnd:pre:3p; +entretiendrait entretenir ver 13.27 46.42 0.02 0.2 cnd:pre:3s; +entretiendras entretenir ver 13.27 46.42 0.14 0 ind:fut:2s; +entretiendrez entretenir ver 13.27 46.42 0.02 0.07 ind:fut:2p; +entretiendrons entretenir ver 13.27 46.42 0.01 0 ind:fut:1p; +entretienne entretenir ver 13.27 46.42 0.28 0.34 sub:pre:1s;sub:pre:3s; +entretiennent entretenir ver 13.27 46.42 0.2 1.55 ind:pre:3p; +entretiennes entretenir ver 13.27 46.42 0.02 0.07 sub:pre:2s; +entretiens entretien nom m p 18.92 27.77 2.2 7.23 +entretient entretenir ver 13.27 46.42 1.27 3.38 ind:pre:3s; +entretinrent entretenir ver 13.27 46.42 0 0.34 ind:pas:3p; +entretins entretenir ver 13.27 46.42 0.01 0.14 ind:pas:1s; +entretint entretenir ver 13.27 46.42 0 1.01 ind:pas:3s; +entretissait entretisser ver 0 0.27 0 0.07 ind:imp:3s; +entretissé entretisser ver m s 0 0.27 0 0.14 par:pas; +entretissées entretisser ver f p 0 0.27 0 0.07 par:pas; +entretoisaient entretoiser ver 0 0.07 0 0.07 ind:imp:3p; +entretoise entretoise nom f s 0.01 0 0.01 0 +entretoisement entretoisement nom m s 0 0.07 0 0.07 +entretuaient entretuer ver 4.54 0.34 0.09 0 ind:imp:3p; +entretuant entretuer ver 4.54 0.34 0.13 0 par:pre; +entretue entretuer ver 4.54 0.34 0.28 0 ind:pre:3s; +entretuent entretuer ver 4.54 0.34 0.89 0.07 ind:pre:3p; +entretuer entretuer ver 4.54 0.34 2.79 0.2 inf;; +entretueraient entretuer ver 4.54 0.34 0.01 0 cnd:pre:3p; +entretuerait entretuer ver 4.54 0.34 0.01 0.07 cnd:pre:3s; +entretueront entretuer ver 4.54 0.34 0.04 0 ind:fut:3p; +entretuez entretuer ver 4.54 0.34 0.07 0 imp:pre:2p;ind:pre:2p; +entretuées entretuer ver f p 4.54 0.34 0.1 0 par:pas; +entretués entretuer ver m p 4.54 0.34 0.14 0 par:pas; +entretînmes entretenir ver 13.27 46.42 0 0.07 ind:pas:1p; +entretînt entretenir ver 13.27 46.42 0 0.14 sub:imp:3s; +entreverrai entrevoir ver 2.44 29.53 0 0.07 ind:fut:1s; +entrevirent entrevoir ver 2.44 29.53 0 0.07 ind:pas:3p; +entrevis entrevoir ver 2.44 29.53 0.03 1.08 ind:pas:1s; +entrevit entrevoir ver 2.44 29.53 0.04 2.23 ind:pas:3s; +entrevoie entrevoir ver 2.44 29.53 0 0.07 sub:pre:3s; +entrevoient entrevoir ver 2.44 29.53 0.02 0.41 ind:pre:3p; +entrevoir entrevoir ver 2.44 29.53 1 8.65 inf; +entrevois entrevoir ver 2.44 29.53 0.81 1.96 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entrevoit entrevoir ver 2.44 29.53 0.15 1.55 ind:pre:3s; +entrevous entrevous nom m 0.01 0 0.01 0 +entrevoyaient entrevoir ver 2.44 29.53 0 0.27 ind:imp:3p; +entrevoyais entrevoir ver 2.44 29.53 0.14 1.62 ind:imp:1s; +entrevoyait entrevoir ver 2.44 29.53 0.02 1.69 ind:imp:3s; +entrevoyant entrevoir ver 2.44 29.53 0 0.34 par:pre; +entrevoyons entrevoir ver 2.44 29.53 0 0.2 ind:pre:1p; +entrevu entrevoir ver m s 2.44 29.53 0.17 4.86 par:pas; +entrevue entrevue nom f s 3.28 9.59 2.97 8.85 +entrevues entrevue nom f p 3.28 9.59 0.31 0.74 +entrevus entrevoir ver m p 2.44 29.53 0 1.15 par:pas; +entrevît entrevoir ver 2.44 29.53 0.03 0.07 sub:imp:3s; +entrez entrer ver 450.11 398.38 104.85 12.7 imp:pre:2p;ind:pre:2p; +entriez entrer ver 450.11 398.38 0.29 0.2 ind:imp:2p; +entrions entrer ver 450.11 398.38 0.12 2.09 ind:imp:1p; +entrisme entrisme nom m s 0 0.07 0 0.07 +entrons entrer ver 450.11 398.38 6.05 4.39 imp:pre:1p;ind:pre:1p; +entropie entropie nom f s 0.19 0.27 0.19 0.27 +entropique entropique adj s 0.07 0 0.05 0 +entropiques entropique adj f p 0.07 0 0.01 0 +entrouvert entrouvrir ver m s 0.95 19.59 0.1 1.62 par:pas; +entrouverte entrouvert adj f s 0.7 10.07 0.47 6.55 +entrouvertes entrouvert adj f p 0.7 10.07 0.11 2.09 +entrouverts entrouvert adj m p 0.7 10.07 0.1 0.54 +entrouverture entrouverture nom f s 0 0.07 0 0.07 +entrouvraient entrouvrir ver 0.95 19.59 0 0.47 ind:imp:3p; +entrouvrait entrouvrir ver 0.95 19.59 0.14 1.76 ind:imp:3s; +entrouvrant entrouvrir ver 0.95 19.59 0 0.68 par:pre; +entrouvre entrouvrir ver 0.95 19.59 0.2 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entrouvrent entrouvrir ver 0.95 19.59 0.02 0.81 ind:pre:3p; +entrouvrir entrouvrir ver 0.95 19.59 0.21 2.3 inf; +entrouvrirait entrouvrir ver 0.95 19.59 0 0.07 cnd:pre:3s; +entrouvrirent entrouvrir ver 0.95 19.59 0 0.14 ind:pas:3p; +entrouvris entrouvrir ver 0.95 19.59 0 0.14 ind:pas:1s; +entrouvrit entrouvrir ver 0.95 19.59 0 3.72 ind:pas:3s; +entrouvrît entrouvrir ver 0.95 19.59 0 0.07 sub:imp:3s; +entrâmes entrer ver 450.11 398.38 0 1.15 ind:pas:1p; +entrât entrer ver 450.11 398.38 0.14 0.95 sub:imp:3s; +entrèrent entrer ver 450.11 398.38 0.2 10.61 ind:pas:3p; +entré entrer ver m s 450.11 398.38 36.9 32.43 par:pas; +entrée entrée nom f s 48.08 118.78 43.75 113.72 +entrée_sortie entrée_sortie nom f s 0.01 0 0.01 0 +entrées entrée nom f p 48.08 118.78 4.33 5.07 +entrés entrer ver m p 450.11 398.38 8.81 11.22 par:pas; +entubait entuber ver 3.11 1.35 0.02 0.07 ind:imp:3s; +entube entuber ver 3.11 1.35 0.52 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entubent entuber ver 3.11 1.35 0.12 0 ind:pre:3p; +entuber entuber ver 3.11 1.35 1.77 0.68 inf; +entuberais entuber ver 3.11 1.35 0.03 0 cnd:pre:1s;cnd:pre:2s; +entubes entuber ver 3.11 1.35 0.18 0 ind:pre:2s; +entubez entuber ver 3.11 1.35 0.04 0 imp:pre:2p;ind:pre:2p; +entubé entuber ver m s 3.11 1.35 0.32 0.2 par:pas; +entubée entuber ver f s 3.11 1.35 0.03 0.07 par:pas; +entubés entuber ver m p 3.11 1.35 0.08 0 par:pas; +enturbanner enturbanner ver 0.01 0.54 0 0.07 inf; +enturbanné enturbanné adj m s 0.06 1.22 0.05 0.47 +enturbannée enturbanner ver f s 0.01 0.54 0.01 0.07 par:pas; +enturbannées enturbanné adj f p 0.06 1.22 0 0.07 +enturbannés enturbanné adj m p 0.06 1.22 0.01 0.41 +enture enture nom f s 0.14 0 0.14 0 +entéléchies entéléchie nom f p 0 0.07 0 0.07 +enténèbre enténébrer ver 0.14 2.36 0.14 0.14 ind:pre:3s; +enténèbrent enténébrer ver 0.14 2.36 0 0.07 ind:pre:3p; +enténébra enténébrer ver 0.14 2.36 0 0.07 ind:pas:3s; +enténébrait enténébrer ver 0.14 2.36 0 0.2 ind:imp:3s; +enténébrant enténébrer ver 0.14 2.36 0 0.34 par:pre; +enténébrer enténébrer ver 0.14 2.36 0 0.14 inf; +enténébré enténébrer ver m s 0.14 2.36 0.01 0.54 par:pas; +enténébrée enténébrer ver f s 0.14 2.36 0 0.54 par:pas; +enténébrées enténébrer ver f p 0.14 2.36 0 0.14 par:pas; +enténébrés enténébrer ver m p 0.14 2.36 0 0.2 par:pas; +entérinais entériner ver 0.52 1.35 0 0.14 ind:imp:1s; +entérinait entériner ver 0.52 1.35 0 0.2 ind:imp:3s; +entérinant entériner ver 0.52 1.35 0 0.07 par:pre; +entérine entériner ver 0.52 1.35 0.03 0 ind:pre:3s; +entérinement entérinement nom m s 0 0.07 0 0.07 +entériner entériner ver 0.52 1.35 0.42 0.41 inf; +entériné entériner ver m s 0.52 1.35 0.04 0.27 par:pas; +entérinée entériner ver f s 0.52 1.35 0.03 0.14 par:pas; +entérinées entériner ver f p 0.52 1.35 0 0.14 par:pas; +entérique entérique adj s 0.01 0 0.01 0 +entérite entérite nom f s 0.01 0.14 0.01 0.14 +entérocolite entérocolite nom f s 0.01 0 0.01 0 +entérovirus entérovirus nom m 0.03 0 0.03 0 +entêta entêter ver 1.65 6.89 0 0.27 ind:pas:3s; +entêtai entêter ver 1.65 6.89 0 0.41 ind:pas:1s; +entêtaient entêter ver 1.65 6.89 0 0.34 ind:imp:3p; +entêtais entêter ver 1.65 6.89 0 0.07 ind:imp:1s; +entêtait entêter ver 1.65 6.89 0 1.62 ind:imp:3s; +entêtant entêtant adj m s 0.05 2.09 0.04 0.47 +entêtante entêtant adj f s 0.05 2.09 0.01 1.08 +entêtantes entêtant adj f p 0.05 2.09 0 0.2 +entêtants entêtant adj m p 0.05 2.09 0 0.34 +entête entêter ver 1.65 6.89 0.38 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entêtement entêtement nom m s 1.27 5.74 1.27 5.61 +entêtements entêtement nom m p 1.27 5.74 0 0.14 +entêtent entêter ver 1.65 6.89 0.14 0.07 ind:pre:3p; +entêter entêter ver 1.65 6.89 0.18 0.95 inf; +entêteraient entêter ver 1.65 6.89 0 0.07 cnd:pre:3p; +entêterais entêter ver 1.65 6.89 0 0.07 cnd:pre:1s; +entêtes entêter ver 1.65 6.89 0.42 0.14 ind:pre:2s; +entêtez entêter ver 1.65 6.89 0.16 0.14 ind:pre:2p; +entêtiez entêter ver 1.65 6.89 0 0.07 ind:imp:2p; +entêtons entêter ver 1.65 6.89 0 0.2 ind:pre:1p; +entêtât entêter ver 1.65 6.89 0 0.07 sub:imp:3s; +entêté entêté nom m s 0.73 0.81 0.58 0.68 +entêtée entêté adj f s 0.38 1.35 0.08 0.74 +entêtées entêté adj f p 0.38 1.35 0.01 0.14 +entêtés entêté nom m p 0.73 0.81 0.15 0.07 +entôlage entôlage nom m s 0.01 0.14 0.01 0.14 +entôler entôler ver 0.02 0.2 0.01 0 inf; +entôleur entôleur nom m s 0 0.07 0 0.07 +entôlé entôler ver m s 0.02 0.2 0.01 0.14 par:pas; +entôlée entôler ver f s 0.02 0.2 0 0.07 par:pas; +envahi envahir ver m s 17.37 57.7 4.98 11.76 par:pas; +envahie envahir ver f s 17.37 57.7 1.11 5.88 par:pas; +envahies envahir ver f p 17.37 57.7 0.26 1.69 par:pas; +envahir envahir ver 17.37 57.7 3.83 8.31 inf; +envahira envahir ver 17.37 57.7 0.26 0.2 ind:fut:3s; +envahirai envahir ver 17.37 57.7 0.03 0 ind:fut:1s; +envahiraient envahir ver 17.37 57.7 0 0.2 cnd:pre:3p; +envahirait envahir ver 17.37 57.7 0.03 0.34 cnd:pre:3s; +envahirent envahir ver 17.37 57.7 0.25 1.28 ind:pas:3p; +envahirez envahir ver 17.37 57.7 0.01 0 ind:fut:2p; +envahirons envahir ver 17.37 57.7 0.02 0.07 ind:fut:1p; +envahiront envahir ver 17.37 57.7 0.24 0 ind:fut:3p; +envahis envahir ver m p 17.37 57.7 0.91 1.89 ind:pre:1s;ind:pre:2s;par:pas;par:pas; +envahissaient envahir ver 17.37 57.7 0.24 1.96 ind:imp:3p; +envahissait envahir ver 17.37 57.7 0.62 8.72 ind:imp:3s; +envahissant envahissant adj m s 1.08 3.18 0.33 0.88 +envahissante envahissant adj f s 1.08 3.18 0.7 1.42 +envahissantes envahissant adj f p 1.08 3.18 0.04 0.27 +envahissants envahissant adj m p 1.08 3.18 0.01 0.61 +envahisse envahir ver 17.37 57.7 0.11 0.34 sub:pre:1s;sub:pre:3s; +envahissement envahissement nom m s 0.02 1.49 0.02 1.42 +envahissements envahissement nom m p 0.02 1.49 0 0.07 +envahissent envahir ver 17.37 57.7 1.05 1.96 ind:pre:3p; +envahisseur envahisseur nom m s 3.64 8.31 1.88 6.42 +envahisseurs envahisseur nom m p 3.64 8.31 1.77 1.89 +envahissez envahir ver 17.37 57.7 0.24 0 imp:pre:2p;ind:pre:2p; +envahissiez envahir ver 17.37 57.7 0.02 0 ind:imp:2p; +envahit envahir ver 17.37 57.7 2.97 12.36 ind:pre:3s;ind:pas:3s; +envahît envahir ver 17.37 57.7 0 0.14 sub:imp:3s; +envasait envaser ver 0.01 0.41 0 0.07 ind:imp:3s; +envasement envasement nom m s 0 0.07 0 0.07 +envaser envaser ver 0.01 0.41 0.01 0 inf; +envasé envaser ver m s 0.01 0.41 0 0.2 par:pas; +envasée envaser ver f s 0.01 0.41 0 0.07 par:pas; +envasées envaser ver f p 0.01 0.41 0 0.07 par:pas; +enveloppa envelopper ver 5.21 46.49 0.17 4.39 ind:pas:3s; +enveloppai envelopper ver 5.21 46.49 0.14 0.34 ind:pas:1s; +enveloppaient envelopper ver 5.21 46.49 0.04 2.03 ind:imp:3p; +enveloppais envelopper ver 5.21 46.49 0.06 0.2 ind:imp:1s;ind:imp:2s; +enveloppait envelopper ver 5.21 46.49 0.2 9.12 ind:imp:3s; +enveloppant envelopper ver 5.21 46.49 0.04 1.69 par:pre; +enveloppante enveloppant adj f s 0.27 1.62 0.23 0.68 +enveloppantes enveloppant adj f p 0.27 1.62 0 0.07 +enveloppants enveloppant adj m p 0.27 1.62 0 0.27 +enveloppe enveloppe nom f s 13.23 32.84 11.4 26.22 +enveloppement enveloppement nom m s 0.16 0.95 0.16 0.61 +enveloppements enveloppement nom m p 0.16 0.95 0 0.34 +enveloppent envelopper ver 5.21 46.49 0.34 1.35 ind:pre:3p; +envelopper envelopper ver 5.21 46.49 0.65 4.39 inf; +enveloppera envelopper ver 5.21 46.49 0.01 0.14 ind:fut:3s; +envelopperaient envelopper ver 5.21 46.49 0.14 0.07 cnd:pre:3p; +envelopperait envelopper ver 5.21 46.49 0.02 0.54 cnd:pre:3s; +envelopperez envelopper ver 5.21 46.49 0 0.07 ind:fut:2p; +enveloppes enveloppe nom f p 13.23 32.84 1.84 6.62 +enveloppeur enveloppeur nom m s 0 0.07 0 0.07 +enveloppez envelopper ver 5.21 46.49 0.41 0.14 imp:pre:2p;ind:pre:2p; +enveloppons envelopper ver 5.21 46.49 0 0.07 ind:pre:1p; +enveloppât envelopper ver 5.21 46.49 0 0.14 sub:imp:3s; +enveloppèrent envelopper ver 5.21 46.49 0.11 0.2 ind:pas:3p; +enveloppé enveloppé adj m s 1.6 10.34 0.86 4.59 +enveloppée envelopper ver f s 5.21 46.49 0.58 4.32 par:pas; +enveloppées enveloppé adj f p 1.6 10.34 0.2 0.74 +enveloppés envelopper ver m p 5.21 46.49 0.26 2.23 par:pas; +envenima envenimer ver 0.85 1.96 0 0.07 ind:pas:3s; +envenimait envenimer ver 0.85 1.96 0 0.2 ind:imp:3s; +envenimant envenimer ver 0.85 1.96 0 0.07 par:pre; +envenime envenimer ver 0.85 1.96 0.09 0.14 imp:pre:2s;ind:pre:3s; +enveniment envenimer ver 0.85 1.96 0.04 0.2 ind:pre:3p; +envenimer envenimer ver 0.85 1.96 0.28 0.95 inf; +envenimons envenimer ver 0.85 1.96 0.01 0 imp:pre:1p; +envenimèrent envenimer ver 0.85 1.96 0 0.07 ind:pas:3p; +envenimé envenimer ver m s 0.85 1.96 0.32 0.07 par:pas; +envenimée envenimé adj f s 0.04 0 0.03 0 +envenimées envenimer ver f p 0.85 1.96 0.1 0 par:pas; +envenimés envenimer ver m p 0.85 1.96 0.01 0.07 par:pas; +envergure envergure nom f s 1.66 5.34 1.66 5.34 +enverguée enverguer ver f s 0 0.07 0 0.07 par:pas; +enverra envoyer ver 360.16 177.64 5.89 2.03 ind:fut:3s; +enverrai envoyer ver 360.16 177.64 10.43 2.7 ind:fut:1s; +enverraient envoyer ver 360.16 177.64 0.2 0.34 cnd:pre:3p; +enverrais envoyer ver 360.16 177.64 1.68 0.41 cnd:pre:1s;cnd:pre:2s; +enverrait envoyer ver 360.16 177.64 1.77 2.77 cnd:pre:3s; +enverras envoyer ver 360.16 177.64 1.3 0.47 ind:fut:2s; +enverrez envoyer ver 360.16 177.64 1.04 0.34 ind:fut:2p; +enverriez envoyer ver 360.16 177.64 0.12 0 cnd:pre:2p; +enverrions envoyer ver 360.16 177.64 0 0.2 cnd:pre:1p; +enverrons envoyer ver 360.16 177.64 1.3 0.2 ind:fut:1p; +enverront envoyer ver 360.16 177.64 1.93 0.81 ind:fut:3p; +envers envers pre 35.46 27.91 35.46 27.91 +envia envier ver 17.79 26.89 0 0.47 ind:pas:3s; +enviable enviable adj s 0.75 2.84 0.73 2.43 +enviables enviable adj p 0.75 2.84 0.02 0.41 +enviai envier ver 17.79 26.89 0 0.47 ind:pas:1s; +enviaient envier ver 17.79 26.89 0.01 0.88 ind:imp:3p; +enviais envier ver 17.79 26.89 0.56 2.84 ind:imp:1s;ind:imp:2s; +enviait envier ver 17.79 26.89 0.34 2.84 ind:imp:3s; +enviandait enviander ver 0 0.07 0 0.07 ind:imp:3s; +enviandé enviandé nom m s 0.02 0.34 0.02 0.2 +enviandés enviandé nom m p 0.02 0.34 0 0.14 +enviant envier ver 17.79 26.89 0.01 0.47 par:pre; +envie envie nom f s 213.96 258.11 210.62 252.09 +envient envier ver 17.79 26.89 0.42 0.2 ind:pre:3p; +envier envier ver 17.79 26.89 1.5 3.51 inf; +enviera envier ver 17.79 26.89 0.23 0.07 ind:fut:3s; +envieraient envier ver 17.79 26.89 0.04 0.34 cnd:pre:3p; +envierais envier ver 17.79 26.89 0.11 0.07 cnd:pre:1s; +envierait envier ver 17.79 26.89 0.02 0.27 cnd:pre:3s; +envieront envier ver 17.79 26.89 0.32 0.07 ind:fut:3p; +envies envie nom f p 213.96 258.11 3.34 6.01 +envieuse envieux adj f s 1.04 1.76 0.2 0.54 +envieuses envieux adj f p 1.04 1.76 0.2 0 +envieux envieux adj m 1.04 1.76 0.64 1.22 +enviez envier ver 17.79 26.89 0.42 0.14 imp:pre:2p;ind:pre:2p; +enviions envier ver 17.79 26.89 0 0.07 ind:imp:1p; +envions envier ver 17.79 26.89 0.05 0 imp:pre:1p;ind:pre:1p; +environ environ adv_sup 55.55 27.43 55.55 27.43 +environnaient environner ver 0.28 5.47 0 0.47 ind:imp:3p; +environnait environner ver 0.28 5.47 0 0.88 ind:imp:3s; +environnant environnant adj m s 0.66 2.23 0.17 0.47 +environnante environnant adj f s 0.66 2.23 0.29 0.54 +environnantes environnant adj f p 0.66 2.23 0.07 0.61 +environnants environnant adj m p 0.66 2.23 0.12 0.61 +environne environner ver 0.28 5.47 0.28 0.88 ind:pre:1s;ind:pre:3s; +environnement environnement nom m s 10.19 2.77 10.07 2.64 +environnemental environnemental adj m s 0.46 0 0.16 0 +environnementale environnemental adj f s 0.46 0 0.12 0 +environnementaux environnemental adj m p 0.46 0 0.18 0 +environnements environnement nom m p 10.19 2.77 0.12 0.14 +environnent environner ver 0.28 5.47 0 0.47 ind:pre:3p; +environner environner ver 0.28 5.47 0 0.07 inf; +environné environner ver m s 0.28 5.47 0 1.49 par:pas; +environnée environner ver f s 0.28 5.47 0 0.41 par:pas; +environnées environner ver f p 0.28 5.47 0 0.07 par:pas; +environnés environner ver m p 0.28 5.47 0 0.54 par:pas; +environs environ nom_sup m p 6.25 16.69 6.25 16.69 +envisage envisager ver 16.42 32.64 3.4 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +envisagea envisager ver 16.42 32.64 0.02 1.22 ind:pas:3s; +envisageable envisageable adj s 0.85 0.74 0.8 0.74 +envisageables envisageable adj f p 0.85 0.74 0.04 0 +envisageai envisager ver 16.42 32.64 0.02 0.81 ind:pas:1s; +envisageaient envisager ver 16.42 32.64 0.07 0.68 ind:imp:3p; +envisageais envisager ver 16.42 32.64 0.61 1.55 ind:imp:1s;ind:imp:2s; +envisageait envisager ver 16.42 32.64 0.47 5.47 ind:imp:3s; +envisageant envisager ver 16.42 32.64 0.01 0.81 par:pre; +envisagent envisager ver 16.42 32.64 0.44 0.41 ind:pre:3p; +envisageons envisager ver 16.42 32.64 0.3 0.34 imp:pre:1p;ind:pre:1p; +envisager envisager ver 16.42 32.64 4.83 9.39 inf; +envisagera envisager ver 16.42 32.64 0.14 0.07 ind:fut:3s; +envisagerai envisager ver 16.42 32.64 0.05 0 ind:fut:1s; +envisagerais envisager ver 16.42 32.64 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +envisagerait envisager ver 16.42 32.64 0.05 0.27 cnd:pre:3s; +envisageras envisager ver 16.42 32.64 0.01 0 ind:fut:2s; +envisagerez envisager ver 16.42 32.64 0.04 0 ind:fut:2p; +envisageriez envisager ver 16.42 32.64 0.17 0 cnd:pre:2p; +envisagerions envisager ver 16.42 32.64 0 0.14 cnd:pre:1p; +envisages envisager ver 16.42 32.64 1.35 0.27 ind:pre:2s; +envisagez envisager ver 16.42 32.64 1.11 0.68 imp:pre:2p;ind:pre:2p; +envisageât envisager ver 16.42 32.64 0 0.2 sub:imp:3s; +envisagiez envisager ver 16.42 32.64 0.2 0 ind:imp:2p; +envisagions envisager ver 16.42 32.64 0.04 0.54 ind:imp:1p; +envisagèrent envisager ver 16.42 32.64 0.01 0.27 ind:pas:3p; +envisagé envisager ver m s 16.42 32.64 2.61 3.58 par:pas; +envisagée envisager ver f s 16.42 32.64 0.19 1.22 par:pas; +envisagées envisager ver f p 16.42 32.64 0.04 0.41 par:pas; +envisagés envisager ver m p 16.42 32.64 0.01 0.2 par:pas; +enviât envier ver 17.79 26.89 0 0.07 sub:imp:3s; +envié envier ver m s 17.79 26.89 0.71 1.15 par:pas; +enviée envier ver f s 17.79 26.89 0.3 0.81 par:pas; +enviées envier ver f p 17.79 26.89 0.01 0.14 par:pas; +enviés envier ver m p 17.79 26.89 0.04 0.54 par:pas; +envoi envoi nom m s 4.46 6.96 3.47 6.28 +envoie envoyer ver 360.16 177.64 98.92 30.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +envoient envoyer ver 360.16 177.64 9.16 4.32 ind:pre:3p; +envoies envoyer ver 360.16 177.64 6.24 0.61 ind:pre:1p;ind:pre:2s;sub:pre:2s; +envois envoi nom m p 4.46 6.96 1 0.68 +envol envol nom m s 2.5 5.2 2.48 4.66 +envola envoler ver 28.82 29.86 0.43 2.43 ind:pas:3s; +envolai envoler ver 28.82 29.86 0 0.34 ind:pas:1s; +envolaient envoler ver 28.82 29.86 0.35 2.5 ind:imp:3p; +envolais envoler ver 28.82 29.86 0.03 0.2 ind:imp:1s;ind:imp:2s; +envolait envoler ver 28.82 29.86 0.29 2.16 ind:imp:3s; +envolant envoler ver 28.82 29.86 0.38 0.47 par:pre; +envole envoler ver 28.82 29.86 5.39 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +envolent envoler ver 28.82 29.86 4.47 2.3 ind:pre:3p; +envoler envoler ver 28.82 29.86 5.85 6.35 inf;; +envolera envoler ver 28.82 29.86 0.55 0.34 ind:fut:3s; +envolerai envoler ver 28.82 29.86 0.21 0.07 ind:fut:1s; +envoleraient envoler ver 28.82 29.86 0 0.41 cnd:pre:3p; +envolerais envoler ver 28.82 29.86 0.06 0.07 cnd:pre:1s; +envolerait envoler ver 28.82 29.86 0.08 0.14 cnd:pre:3s; +envolerez envoler ver 28.82 29.86 0.01 0.07 ind:fut:2p; +envolerions envoler ver 28.82 29.86 0.02 0.14 cnd:pre:1p; +envolerons envoler ver 28.82 29.86 0.05 0 ind:fut:1p; +envoleront envoler ver 28.82 29.86 0.04 0.07 ind:fut:3p; +envoles envoler ver 28.82 29.86 0.45 0 ind:pre:2s; +envolez envoler ver 28.82 29.86 0.58 0 imp:pre:2p;ind:pre:2p; +envolons envoler ver 28.82 29.86 0.04 0 imp:pre:1p;ind:pre:1p; +envols envol nom m p 2.5 5.2 0.03 0.54 +envolâmes envoler ver 28.82 29.86 0 0.07 ind:pas:1p; +envolât envoler ver 28.82 29.86 0 0.07 sub:imp:3s; +envolèrent envoler ver 28.82 29.86 0.01 1.62 ind:pas:3p; +envolé envoler ver m s 28.82 29.86 5.05 2.84 par:pas; +envolée envoler ver f s 28.82 29.86 1.62 1.62 par:pas; +envolées envolée nom f p 0.88 3.18 0.33 1.01 +envolés envoler ver m p 28.82 29.86 2.63 1.28 par:pas; +envoya envoyer ver 360.16 177.64 1.96 11.69 ind:pas:3s; +envoyai envoyer ver 360.16 177.64 0.26 2.3 ind:pas:1s; +envoyaient envoyer ver 360.16 177.64 0.62 2.91 ind:imp:3p; +envoyais envoyer ver 360.16 177.64 1.58 1.82 ind:imp:1s;ind:imp:2s; +envoyait envoyer ver 360.16 177.64 3.84 14.66 ind:imp:3s; +envoyant envoyer ver 360.16 177.64 1.91 4.26 par:pre; +envoyer envoyer ver 360.16 177.64 69.77 41.15 inf;;inf;;inf;;inf;;inf;;inf;;inf;; +envoyeur envoyeur nom m s 0.21 0.41 0.21 0.34 +envoyeurs envoyeur nom m p 0.21 0.41 0 0.07 +envoyez envoyer ver 360.16 177.64 31.66 2.23 imp:pre:2p;ind:pre:2p; +envoyiez envoyer ver 360.16 177.64 0.55 0 ind:imp:2p; +envoyions envoyer ver 360.16 177.64 0.16 0.07 ind:imp:1p; +envoyons envoyer ver 360.16 177.64 2.31 0.2 imp:pre:1p;ind:pre:1p; +envoyâmes envoyer ver 360.16 177.64 0.01 0.2 ind:pas:1p; +envoyât envoyer ver 360.16 177.64 0 0.68 sub:imp:3s; +envoyèrent envoyer ver 360.16 177.64 0.26 0.95 ind:pas:3p; +envoyé envoyer ver m s 360.16 177.64 82.52 35.2 par:pas; +envoyée envoyer ver f s 360.16 177.64 12.19 5.27 par:pas; +envoyées envoyer ver f p 360.16 177.64 1.97 2.57 par:pas; +envoyés envoyer ver m p 360.16 177.64 8.63 5.41 par:pas; +envoûtaient envoûter ver 1.81 2.16 0 0.07 ind:imp:3p; +envoûtait envoûter ver 1.81 2.16 0.01 0.14 ind:imp:3s; +envoûtant envoûtant adj m s 0.79 1.49 0.56 0.34 +envoûtante envoûtant adj f s 0.79 1.49 0.21 0.95 +envoûtantes envoûtant adj f p 0.79 1.49 0 0.07 +envoûtants envoûtant adj m p 0.79 1.49 0.02 0.14 +envoûte envoûter ver 1.81 2.16 0.32 0.34 ind:pre:1s;ind:pre:3s; +envoûtement envoûtement nom m s 0.71 1.82 0.56 1.76 +envoûtements envoûtement nom m p 0.71 1.82 0.14 0.07 +envoûter envoûter ver 1.81 2.16 0.12 0.34 inf; +envoûteras envoûter ver 1.81 2.16 0.01 0 ind:fut:2s; +envoûteur envoûteur nom m s 0 0.27 0 0.14 +envoûteurs envoûteur nom m p 0 0.27 0 0.14 +envoûté envoûter ver m s 1.81 2.16 0.88 0.61 par:pas; +envoûtée envoûter ver f s 1.81 2.16 0.44 0.14 par:pas; +envoûtées envoûter ver f p 1.81 2.16 0 0.14 par:pas; +envoûtés envoûter ver m p 1.81 2.16 0.03 0.27 par:pas; +enzymatique enzymatique adj s 0.06 0 0.06 0 +enzyme enzyme nom f s 2 0.34 1.26 0 +enzymes enzyme nom f p 2 0.34 0.75 0.34 +epsilon epsilon nom m 0.47 0.2 0.47 0.2 +erg erg nom m s 0.02 0.07 0.01 0 +ergastule ergastule nom m s 0 0.2 0 0.07 +ergastules ergastule nom m p 0 0.2 0 0.14 +ergo ergo adv 0.22 0.34 0.22 0.34 +ergol ergol nom m s 0.01 0 0.01 0 +ergonomie ergonomie nom f s 0.06 0.07 0.06 0.07 +ergonomique ergonomique adj s 0.08 0 0.08 0 +ergot ergot nom m s 0.08 1.08 0.04 0.07 +ergotage ergotage nom m s 0.01 0 0.01 0 +ergotait ergoter ver 0.43 0.68 0 0.07 ind:imp:3s; +ergotamine ergotamine nom f s 0.02 0 0.02 0 +ergote ergoter ver 0.43 0.68 0.17 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ergotent ergoter ver 0.43 0.68 0 0.07 ind:pre:3p; +ergoter ergoter ver 0.43 0.68 0.16 0.27 inf; +ergoteur ergoteur adj m s 0.02 0.27 0.02 0.07 +ergoteurs ergoteur adj m p 0.02 0.27 0 0.07 +ergoteuse ergoteur adj f s 0.02 0.27 0 0.14 +ergothérapeute ergothérapeute nom s 0.06 0 0.06 0 +ergothérapie ergothérapie nom f s 0.07 0 0.07 0 +ergotons ergoter ver 0.43 0.68 0.1 0.07 imp:pre:1p; +ergots ergot nom m p 0.08 1.08 0.04 1.01 +ergoté ergoté adj m s 0.14 0 0.14 0 +ergs erg nom m p 0.02 0.07 0.01 0.07 +ermitage ermitage nom m s 0.04 1.69 0.04 1.35 +ermitages ermitage nom m p 0.04 1.69 0 0.34 +ermite ermite nom m s 2.28 2.5 2.23 2.03 +ermites ermite nom m p 2.28 2.5 0.05 0.47 +erpétologiste erpétologiste nom s 0.02 0 0.02 0 +erra errer ver 10.44 27.36 0.41 2.16 ind:pas:3s; +errai errer ver 10.44 27.36 0.04 0.54 ind:pas:1s; +erraient errer ver 10.44 27.36 0.15 2.23 ind:imp:3p; +errais errer ver 10.44 27.36 0.12 1.28 ind:imp:1s;ind:imp:2s; +errait errer ver 10.44 27.36 0.36 3.18 ind:imp:3s; +errance errance nom f s 0.54 4.46 0.51 2.91 +errances errance nom f p 0.54 4.46 0.03 1.55 +errant errant adj m s 2.62 11.96 1.45 3.18 +errante errant adj f s 2.62 11.96 0.47 4.59 +errantes errant adj f p 2.62 11.96 0.04 1.28 +errants errant adj m p 2.62 11.96 0.66 2.91 +errata erratum nom m p 0.02 0.27 0 0.27 +erratique erratique adj s 0.22 0.54 0.17 0.2 +erratiques erratique adj p 0.22 0.54 0.04 0.34 +erratum erratum nom m s 0.02 0.27 0.02 0 +erre errer ver 10.44 27.36 3.17 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +errements errements nom m p 0.08 1.22 0.08 1.22 +errent errer ver 10.44 27.36 0.99 1.62 ind:pre:3p; +errer errer ver 10.44 27.36 2.44 6.62 inf; +errera errer ver 10.44 27.36 0.14 0 ind:fut:3s; +errerai errer ver 10.44 27.36 0.03 0.07 ind:fut:1s; +erreraient errer ver 10.44 27.36 0 0.07 cnd:pre:3p; +errerait errer ver 10.44 27.36 0 0.07 cnd:pre:3s; +erreras errer ver 10.44 27.36 0.01 0.07 ind:fut:2s; +errerons errer ver 10.44 27.36 0.01 0 ind:fut:1p; +erreront errer ver 10.44 27.36 0.01 0.07 ind:fut:3p; +erres errer ver 10.44 27.36 0.23 0.07 ind:pre:2s; +erreur erreur nom f s 124.15 52.09 101.33 37.84 +erreurs erreur nom f p 124.15 52.09 22.82 14.26 +errez errer ver 10.44 27.36 0.1 0.14 imp:pre:2p;ind:pre:2p; +erriez errer ver 10.44 27.36 0.04 0 ind:imp:2p; +errions errer ver 10.44 27.36 0.14 0.14 ind:imp:1p; +errons errer ver 10.44 27.36 0.05 0.27 imp:pre:1p;ind:pre:1p; +erroné erroné adj m s 2.05 0.74 0.54 0.27 +erronée erroné adj f s 2.05 0.74 0.44 0.07 +erronées erroné adj f p 2.05 0.74 0.68 0.27 +erronés erroné adj m p 2.05 0.74 0.4 0.14 +errâmes errer ver 10.44 27.36 0 0.2 ind:pas:1p; +errèrent errer ver 10.44 27.36 0.01 0.41 ind:pas:3p; +erré errer ver m s 10.44 27.36 0.9 2.57 par:pas; +errés errer ver m p 10.44 27.36 0.01 0 par:pas; +ers ers nom m 0.45 0 0.45 0 +ersatz ersatz nom m 0.21 1.62 0.21 1.62 +es être aux 8074.24 6501.82 539.36 77.7 ind:pre:2s; +esbaudir esbaudir ver 0 0.07 0 0.07 inf; +esbignais esbigner ver 0 0.95 0 0.14 ind:imp:1s; +esbignait esbigner ver 0 0.95 0 0.07 ind:imp:3s; +esbigne esbigner ver 0 0.95 0 0.2 ind:pre:3s; +esbignent esbigner ver 0 0.95 0 0.07 ind:pre:3p; +esbigner esbigner ver 0 0.95 0 0.2 inf; +esbigné esbigner ver m s 0 0.95 0 0.27 par:pas; +esbroufe esbroufe nom f s 0.2 0.2 0.2 0.2 +esbroufer esbroufer ver 0.1 0.14 0 0.07 inf; +esbroufeur esbroufeur nom m s 0.03 0 0.02 0 +esbroufeurs esbroufeur nom m p 0.03 0 0.01 0 +esbroufée esbroufer ver f s 0.1 0.14 0 0.07 par:pas; +escabeau escabeau nom m s 0.69 5.88 0.67 5.2 +escabeaux escabeau nom m p 0.69 5.88 0.02 0.68 +escabèches escabèche nom f p 0 0.07 0 0.07 +escadre escadre nom f s 1.54 6.08 1.44 5 +escadres escadre nom f p 1.54 6.08 0.1 1.08 +escadrille escadrille nom f s 2.1 5.14 1.67 2.09 +escadrilles escadrille nom f p 2.1 5.14 0.43 3.04 +escadrin escadrin nom m s 0 0.07 0 0.07 +escadron escadron nom m s 4.68 8.78 3.34 6.55 +escadrons escadron nom m p 4.68 8.78 1.34 2.23 +escagasse escagasser ver 0.27 0.14 0.14 0.07 ind:pre:3s; +escagasser escagasser ver 0.27 0.14 0.14 0.07 inf; +escalada escalader ver 4.87 15.34 0.12 1.55 ind:pas:3s; +escaladaient escalader ver 4.87 15.34 0.02 0.68 ind:imp:3p; +escaladais escalader ver 4.87 15.34 0.03 0.47 ind:imp:1s;ind:imp:2s; +escaladait escalader ver 4.87 15.34 0.18 1.42 ind:imp:3s; +escaladant escalader ver 4.87 15.34 0.3 1.42 par:pre; +escalade escalade nom f s 3.37 4.12 3.26 3.58 +escaladent escalader ver 4.87 15.34 0.36 0.41 ind:pre:3p; +escalader escalader ver 4.87 15.34 2.19 3.85 inf; +escaladera escalader ver 4.87 15.34 0.04 0.2 ind:fut:3s; +escaladerais escalader ver 4.87 15.34 0 0.07 cnd:pre:1s; +escaladerait escalader ver 4.87 15.34 0.01 0.07 cnd:pre:3s; +escalades escalade nom f p 3.37 4.12 0.11 0.54 +escaladeur escaladeur nom m s 0.03 0.2 0.03 0.07 +escaladeuse escaladeur nom f s 0.03 0.2 0 0.07 +escaladeuses escaladeur nom f p 0.03 0.2 0 0.07 +escaladez escalader ver 4.87 15.34 0.29 0 imp:pre:2p;ind:pre:2p; +escaladions escalader ver 4.87 15.34 0 0.27 ind:imp:1p; +escaladons escalader ver 4.87 15.34 0.02 0.07 imp:pre:1p; +escaladâmes escalader ver 4.87 15.34 0 0.14 ind:pas:1p; +escaladèrent escalader ver 4.87 15.34 0.16 0.27 ind:pas:3p; +escaladé escalader ver m s 4.87 15.34 0.48 1.62 par:pas; +escaladée escalader ver f s 4.87 15.34 0 0.14 par:pas; +escaladées escalader ver f p 4.87 15.34 0.11 0.2 par:pas; +escaladés escalader ver m p 4.87 15.34 0 0.07 par:pas; +escalais escaler ver 0 0.14 0 0.07 ind:imp:1s; +escalator escalator nom m s 0.5 0.27 0.36 0.2 +escalators escalator nom m p 0.5 0.27 0.13 0.07 +escale escale nom f s 2.32 8.92 2.25 7.16 +escalera escaler ver 0 0.14 0 0.07 ind:fut:3s; +escales escale nom f p 2.32 8.92 0.07 1.76 +escalier escalier nom m s 32.29 148.85 20.91 125.95 +escaliers escalier nom m p 32.29 148.85 11.38 22.91 +escalope escalope nom f s 1.13 1.42 0.94 0.74 +escalopes escalope nom f p 1.13 1.42 0.18 0.68 +escamota escamoter ver 0.28 4.73 0 0.2 ind:pas:3s; +escamotable escamotable adj m s 0.01 0.47 0 0.27 +escamotables escamotable adj f p 0.01 0.47 0.01 0.2 +escamotage escamotage nom m s 0.04 0.34 0.03 0.27 +escamotages escamotage nom m p 0.04 0.34 0.01 0.07 +escamotaient escamoter ver 0.28 4.73 0 0.07 ind:imp:3p; +escamotait escamoter ver 0.28 4.73 0.02 0.47 ind:imp:3s; +escamotant escamoter ver 0.28 4.73 0.01 0.07 par:pre; +escamote escamoter ver 0.28 4.73 0.02 0.47 imp:pre:2s;ind:pre:3s; +escamoter escamoter ver 0.28 4.73 0.03 0.88 inf; +escamoterai escamoter ver 0.28 4.73 0 0.07 ind:fut:1s; +escamoteur escamoteur nom m s 0.01 0.07 0.01 0.07 +escamoté escamoter ver m s 0.28 4.73 0.2 1.42 par:pas; +escamotée escamoter ver f s 0.28 4.73 0.01 0.95 par:pas; +escamotées escamoter ver f p 0.28 4.73 0 0.07 par:pas; +escamotés escamoter ver m p 0.28 4.73 0 0.07 par:pas; +escampette escampette nom f s 0.26 0.27 0.26 0.27 +escapade escapade nom f s 1.83 3.51 0.89 2.16 +escapades escapade nom f p 1.83 3.51 0.94 1.35 +escape escape nom f s 0.19 0 0.19 0 +escarbille escarbille nom f s 0.07 1.42 0.05 0.2 +escarbilles escarbille nom f p 0.07 1.42 0.02 1.22 +escarboucle escarboucle nom f s 0.03 0.27 0.03 0.07 +escarboucles escarboucle nom f p 0.03 0.27 0 0.2 +escarcelle escarcelle nom f s 0.17 0.41 0.17 0.41 +escargot escargot nom m s 8.07 7.23 2.73 2.84 +escargots escargot nom m p 8.07 7.23 5.34 4.39 +escarmouchaient escarmoucher ver 0 0.2 0 0.07 ind:imp:3p; +escarmouche escarmouche nom f s 0.41 1.96 0.32 0.47 +escarmouchent escarmoucher ver 0 0.2 0 0.14 ind:pre:3p; +escarmouches escarmouche nom f p 0.41 1.96 0.09 1.49 +escarpement escarpement nom m s 0.05 1.28 0.03 0.41 +escarpements escarpement nom m p 0.05 1.28 0.02 0.88 +escarpes escarpe nom m p 0 0.2 0 0.2 +escarpin escarpin nom m s 0.77 5.14 0.07 0.54 +escarpins escarpin nom m p 0.77 5.14 0.69 4.59 +escarpolette escarpolette nom f s 0.01 0.41 0.01 0.27 +escarpolettes escarpolette nom f p 0.01 0.41 0 0.14 +escarpé escarper ver m s 0.21 0.54 0.19 0.2 par:pas; +escarpée escarpé adj f s 0.14 2.64 0.03 0.74 +escarpées escarpé adj f p 0.14 2.64 0.03 0.54 +escarpés escarpé adj m p 0.14 2.64 0.04 0.34 +escarre escarre nom f s 0.23 0.27 0.03 0.07 +escarres escarre nom f p 0.23 0.27 0.2 0.2 +eschatologie eschatologie nom f s 0 0.14 0 0.14 +esche esche nom f s 0 0.14 0 0.14 +escher escher ver 0.01 0 0.01 0 inf; +escient escient nom m s 0.62 1.08 0.62 1.08 +esclaffa esclaffer ver 0.43 8.24 0 1.69 ind:pas:3s; +esclaffai esclaffer ver 0.43 8.24 0 0.07 ind:pas:1s; +esclaffaient esclaffer ver 0.43 8.24 0.02 0.74 ind:imp:3p; +esclaffait esclaffer ver 0.43 8.24 0 0.68 ind:imp:3s; +esclaffant esclaffer ver 0.43 8.24 0.01 0.88 par:pre; +esclaffe esclaffer ver 0.43 8.24 0.33 1.15 ind:pre:1s;ind:pre:3s; +esclaffement esclaffement nom m s 0 0.14 0 0.07 +esclaffements esclaffement nom m p 0 0.14 0 0.07 +esclaffent esclaffer ver 0.43 8.24 0 0.61 ind:pre:3p; +esclaffer esclaffer ver 0.43 8.24 0.04 1.35 inf; +esclafferaient esclaffer ver 0.43 8.24 0 0.07 cnd:pre:3p; +esclaffèrent esclaffer ver 0.43 8.24 0 0.41 ind:pas:3p; +esclaffé esclaffer ver m s 0.43 8.24 0 0.34 par:pas; +esclaffée esclaffer ver f s 0.43 8.24 0 0.2 par:pas; +esclaffés esclaffer ver m p 0.43 8.24 0.02 0.07 par:pas; +esclandre esclandre nom m s 0.37 2.36 0.36 2.09 +esclandres esclandre nom m p 0.37 2.36 0.01 0.27 +esclavage esclavage nom m s 7.14 6.96 7.14 6.96 +esclavagea esclavager ver 0 0.41 0 0.14 ind:pas:3s; +esclavager esclavager ver 0 0.41 0 0.2 inf; +esclavagisme esclavagisme nom m s 0.07 0 0.07 0 +esclavagiste esclavagiste nom s 0.73 0 0.39 0 +esclavagistes esclavagiste nom p 0.73 0 0.34 0 +esclavagé esclavager ver m s 0 0.41 0 0.07 par:pas; +esclave esclave nom s 37.52 22.23 15.51 9.86 +esclaves esclave nom m p 37.52 22.23 22.01 12.36 +esclavons esclavon nom m p 0 0.2 0 0.2 +escogriffe escogriffe nom m s 0.16 1.28 0.16 1.15 +escogriffes escogriffe nom m p 0.16 1.28 0 0.14 +escomptai escompter ver 0.67 4.93 0 0.07 ind:pas:1s; +escomptaient escompter ver 0.67 4.93 0.01 0.14 ind:imp:3p; +escomptais escompter ver 0.67 4.93 0.04 0.47 ind:imp:1s; +escomptait escompter ver 0.67 4.93 0.02 1.42 ind:imp:3s; +escomptant escompter ver 0.67 4.93 0.01 0.95 par:pre; +escompte escompte nom m s 0.17 0.61 0.17 0.61 +escomptent escompter ver 0.67 4.93 0.01 0.07 ind:pre:3p; +escompter escompter ver 0.67 4.93 0.01 0.34 inf; +escomptes escompter ver 0.67 4.93 0 0.07 ind:pre:2s; +escomptez escompter ver 0.67 4.93 0.03 0 imp:pre:2p;ind:pre:2p; +escomptions escompter ver 0.67 4.93 0.02 0 ind:imp:1p; +escompté escompter ver m s 0.67 4.93 0.09 0.81 par:pas; +escomptée escompter ver f s 0.67 4.93 0.12 0.14 par:pas; +escomptées escompter ver f p 0.67 4.93 0.1 0.07 par:pas; +escomptés escompter ver m p 0.67 4.93 0.07 0.2 par:pas; +escopette escopette nom f s 0 0.2 0 0.2 +escorta escorter ver 8.21 7.57 0 0.34 ind:pas:3s; +escortaient escorter ver 8.21 7.57 0.28 0.54 ind:imp:3p; +escortais escorter ver 8.21 7.57 0.05 0 ind:imp:1s; +escortait escorter ver 8.21 7.57 0.16 0.74 ind:imp:3s; +escortant escorter ver 8.21 7.57 0.05 0.27 par:pre; +escorte escorte nom f s 7.28 7.03 6.69 6.76 +escortent escorter ver 8.21 7.57 0.48 0.54 ind:pre:3p; +escorter escorter ver 8.21 7.57 3.02 1.01 inf; +escortera escorter ver 8.21 7.57 0.23 0.07 ind:fut:3s; +escorterai escorter ver 8.21 7.57 0.07 0 ind:fut:1s; +escorteraient escorter ver 8.21 7.57 0.01 0.07 cnd:pre:3p; +escorterez escorter ver 8.21 7.57 0.06 0 ind:fut:2p; +escorteriez escorter ver 8.21 7.57 0.01 0 cnd:pre:2p; +escorterons escorter ver 8.21 7.57 0.15 0 ind:fut:1p; +escorteront escorter ver 8.21 7.57 0.32 0 ind:fut:3p; +escortes escorte nom f p 7.28 7.03 0.58 0.27 +escorteur escorteur nom m s 0.32 0.81 0.04 0.14 +escorteurs escorteur nom m p 0.32 0.81 0.28 0.68 +escortez escorter ver 8.21 7.57 0.82 0 imp:pre:2p;ind:pre:2p; +escortiez escorter ver 8.21 7.57 0.02 0 ind:imp:2p; +escortons escorter ver 8.21 7.57 0.16 0 ind:pre:1p; +escortèrent escorter ver 8.21 7.57 0.01 0.27 ind:pas:3p; +escorté escorter ver m s 8.21 7.57 1.08 1.42 par:pas; +escortée escorter ver f s 8.21 7.57 0.12 0.88 par:pas; +escortées escorter ver f p 8.21 7.57 0.02 0.07 par:pas; +escortés escorter ver m p 8.21 7.57 0.16 1.35 par:pas; +escot escot nom m s 0.14 0 0.14 0 +escouade escouade nom f s 1.46 5.41 1.34 3.92 +escouades escouade nom f p 1.46 5.41 0.12 1.49 +escrimai escrimer ver 0.11 2.3 0 0.07 ind:pas:1s; +escrimaient escrimer ver 0.11 2.3 0 0.2 ind:imp:3p; +escrimais escrimer ver 0.11 2.3 0.01 0.07 ind:imp:1s; +escrimait escrimer ver 0.11 2.3 0.02 0.74 ind:imp:3s; +escrimant escrimer ver 0.11 2.3 0.03 0.27 par:pre; +escrime escrime nom f s 1.5 2.03 1.5 2.03 +escriment escrimer ver 0.11 2.3 0.01 0.2 ind:pre:3p; +escrimer escrimer ver 0.11 2.3 0.03 0.27 inf; +escrimera escrimer ver 0.11 2.3 0 0.07 ind:fut:3s; +escrimeraient escrimer ver 0.11 2.3 0 0.07 cnd:pre:3p; +escrimes escrimer ver 0.11 2.3 0 0.07 ind:pre:2s; +escrimeur escrimeur nom m s 0.38 0.41 0.37 0.27 +escrimeurs escrimeur nom m p 0.38 0.41 0.01 0.07 +escrimeuses escrimeur nom f p 0.38 0.41 0 0.07 +escroc escroc nom m s 9.27 4.46 6.77 2.91 +escrocs escroc nom m p 9.27 4.46 2.5 1.55 +escroquant escroquer ver 2.83 1.42 0.13 0.07 par:pre; +escroque escroquer ver 2.83 1.42 0.19 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +escroquent escroquer ver 2.83 1.42 0.03 0 ind:pre:3p; +escroquer escroquer ver 2.83 1.42 1 0.81 inf; +escroquera escroquer ver 2.83 1.42 0.02 0 ind:fut:3s; +escroquerie escroquerie nom f s 3.2 3.11 2.84 2.16 +escroqueries escroquerie nom f p 3.2 3.11 0.36 0.95 +escroques escroquer ver 2.83 1.42 0 0.07 ind:pre:2s; +escroqueuse escroqueur nom f s 0.01 0 0.01 0 +escroquez escroquer ver 2.83 1.42 0.05 0 ind:pre:2p; +escroqué escroquer ver m s 2.83 1.42 1.32 0.2 par:pas; +escroquées escroquer ver f p 2.83 1.42 0.01 0.07 par:pas; +escroqués escroquer ver m p 2.83 1.42 0.07 0.07 par:pas; +escudo escudo nom m s 3.03 0 0.01 0 +escudos escudo nom m p 3.03 0 3.02 0 +esgourdai esgourder ver 0 0.95 0 0.07 ind:pas:1s; +esgourdant esgourder ver 0 0.95 0 0.07 par:pre; +esgourde esgourde nom f s 0.09 2.7 0.01 1.22 +esgourder esgourder ver 0 0.95 0 0.68 inf; +esgourdes esgourde nom f p 0.09 2.7 0.08 1.49 +esgourdé esgourder ver m s 0 0.95 0 0.07 par:pas; +esgourdée esgourder ver f s 0 0.95 0 0.07 par:pas; +eskimo eskimo adj m s 0.02 0.14 0.02 0.07 +eskimos eskimo nom m p 0.04 0 0.02 0 +espace espace nom s 43.87 88.51 41.34 78.58 +espace_temps espace_temps nom m 1.63 0.07 1.63 0.07 +espacement espacement nom m s 0.1 0.34 0.09 0.34 +espacements espacement nom m p 0.1 0.34 0.01 0 +espacent espacer ver 0.52 5.95 0 0.47 ind:pre:3p; +espacer espacer ver 0.52 5.95 0.06 0.68 inf; +espacerait espacer ver 0.52 5.95 0 0.07 cnd:pre:3s; +espaceront espacer ver 0.52 5.95 0 0.07 ind:fut:3p; +espaces espace nom p 43.87 88.51 2.52 9.93 +espacez espacer ver 0.52 5.95 0.02 0 imp:pre:2p; +espacions espacer ver 0.52 5.95 0 0.14 ind:imp:1p; +espacèrent espacer ver 0.52 5.95 0.01 0.74 ind:pas:3p; +espacé espacé adj m s 0.41 2.5 0.02 0.2 +espacée espacer ver f s 0.52 5.95 0 0.07 par:pas; +espacées espacé adj f p 0.41 2.5 0.21 1.15 +espacés espacé adj m p 0.41 2.5 0.19 1.08 +espada espada nom f s 0 0.81 0 0.74 +espadas espada nom f p 0 0.81 0 0.07 +espadon espadon nom m s 0.8 0.54 0.71 0.47 +espadons espadon nom m p 0.8 0.54 0.09 0.07 +espadrille espadrille nom f s 0.26 8.58 0.02 0.95 +espadrilles espadrille nom f p 0.26 8.58 0.24 7.64 +espagnol espagnol nom m s 18.43 21.62 11.54 11.01 +espagnole espagnol adj f s 20.94 25 6.16 8.78 +espagnoles espagnol adj f p 20.94 25 1.48 2.5 +espagnolette espagnolette nom f s 0 1.42 0 1.42 +espagnols espagnol nom m p 18.43 21.62 5.27 7.64 +espalier espalier nom m s 0 1.49 0 0.61 +espaliers espalier nom m p 0 1.49 0 0.88 +espar espar nom m s 0 0.07 0 0.07 +espars espars nom m 0 0.07 0 0.07 +espaça espacer ver 0.52 5.95 0 0.41 ind:pas:3s; +espaçaient espacer ver 0.52 5.95 0 1.01 ind:imp:3p; +espaçait espacer ver 0.52 5.95 0 0.27 ind:imp:3s; +espaçant espacer ver 0.52 5.95 0.01 0.41 par:pre; +esperanto esperanto nom m s 0.22 0.07 0.22 0.07 +espingo espingo nom s 0 1.55 0 0.61 +espingole espingole nom f s 0 0.14 0 0.07 +espingoles espingole nom f p 0 0.14 0 0.07 +espingos espingo nom p 0 1.55 0 0.95 +espingouin espingouin nom s 0.35 0.54 0.32 0.47 +espingouins espingouin nom p 0.35 0.54 0.03 0.07 +espion espion nom m s 27.57 11.28 13.31 4.59 +espionite espionite nom f s 0.01 0 0.01 0 +espionnage espionnage nom m s 3.32 2.57 3.32 2.57 +espionnaient espionner ver 10.93 3.51 0.03 0.27 ind:imp:3p; +espionnais espionner ver 10.93 3.51 1.36 0.34 ind:imp:1s;ind:imp:2s; +espionnait espionner ver 10.93 3.51 1.52 0.54 ind:imp:3s; +espionnant espionner ver 10.93 3.51 0.21 0 par:pre; +espionne espion nom f s 27.57 11.28 5.28 2.57 +espionnent espionner ver 10.93 3.51 0.27 0 ind:pre:3p; +espionner espionner ver 10.93 3.51 4.71 2.03 inf;; +espionnera espionner ver 10.93 3.51 0.14 0 ind:fut:3s; +espionnerai espionner ver 10.93 3.51 0.04 0 ind:fut:1s; +espionnerions espionner ver 10.93 3.51 0.01 0 cnd:pre:1p; +espionnes espion nom f p 27.57 11.28 2.45 0.41 +espionnez espionner ver 10.93 3.51 0.9 0 imp:pre:2p;ind:pre:2p; +espionniez espionner ver 10.93 3.51 0.17 0 ind:imp:2p; +espionnite espionnite nom f s 0.14 0.27 0.14 0.27 +espionnons espionner ver 10.93 3.51 0.04 0 ind:pre:1p; +espionnât espionner ver 10.93 3.51 0 0.07 sub:imp:3s; +espionné espionner ver m s 10.93 3.51 0.94 0.2 par:pas; +espionnée espionner ver f s 10.93 3.51 0.13 0 par:pas; +espionnés espionner ver m p 10.93 3.51 0.47 0.07 par:pas; +espions espion nom m p 27.57 11.28 6.52 3.72 +espiègle espiègle adj s 0.89 1.42 0.81 1.01 +espièglement espièglement adv 0 0.07 0 0.07 +espièglerie espièglerie nom f s 0.08 1.01 0.03 0.88 +espiègleries espièglerie nom f p 0.08 1.01 0.04 0.14 +espiègles espiègle adj p 0.89 1.42 0.09 0.41 +esplanade esplanade nom f s 0.64 6.35 0.64 6.01 +esplanades esplanade nom f p 0.64 6.35 0 0.34 +espoir espoir nom m s 64.22 101.89 57.62 90.74 +espoirs espoir nom m p 64.22 101.89 6.61 11.15 +esprit esprit nom m s 155.82 216.28 131.7 182.84 +esprit_de_sel esprit_de_sel nom m s 0 0.07 0 0.07 +esprit_de_vin esprit_de_vin nom m s 0.01 0.2 0.01 0.2 +esprits esprit nom m p 155.82 216.28 24.12 33.45 +espèce espèce nom f s 116.51 141.69 105.04 127.23 +espèces espèce nom f p 116.51 141.69 11.47 14.46 +espère espérer ver 301.08 134.93 209.19 43.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +espèrent espérer ver 301.08 134.93 2.15 2.03 ind:pre:3p; +espères espérer ver 301.08 134.93 4.19 1.08 ind:pre:2s; +espéra espérer ver 301.08 134.93 0.02 1.49 ind:pas:3s; +espérai espérer ver 301.08 134.93 0.16 0.2 ind:pas:1s; +espéraient espérer ver 301.08 134.93 0.85 2.97 ind:imp:3p; +espérais espérer ver 301.08 134.93 25.4 12.64 ind:imp:1s;ind:imp:2s; +espérait espérer ver 301.08 134.93 3.66 18.58 ind:imp:3s; +espérance espérance nom f s 6.42 27.36 4.1 18.31 +espérances espérance nom f p 6.42 27.36 2.32 9.05 +espérant espérer ver 301.08 134.93 6.82 11.76 par:pre; +espérantiste espérantiste nom s 0 0.07 0 0.07 +espéranto espéranto nom m s 0.02 0.14 0.02 0.14 +espérer espérer ver 301.08 134.93 15.65 23.51 inf; +espérerai espérer ver 301.08 134.93 0.02 0 ind:fut:1s; +espérerais espérer ver 301.08 134.93 0.2 0 cnd:pre:1s; +espérerait espérer ver 301.08 134.93 0.01 0 cnd:pre:3s; +espérez espérer ver 301.08 134.93 3.46 1.69 imp:pre:2p;ind:pre:2p; +espériez espérer ver 301.08 134.93 1.57 0.27 ind:imp:2p;sub:pre:2p; +espérions espérer ver 301.08 134.93 1.24 0.88 ind:imp:1p; +espérons espérer ver 301.08 134.93 21.77 2.91 imp:pre:1p;ind:pre:1p; +espérâmes espérer ver 301.08 134.93 0 0.07 ind:pas:1p; +espérât espérer ver 301.08 134.93 0 0.14 sub:imp:3s; +espérèrent espérer ver 301.08 134.93 0 0.07 ind:pas:3p; +espéré espérer ver m s 301.08 134.93 4.46 8.99 par:pas; +espérée espérer ver f s 301.08 134.93 0.14 1.01 par:pas; +espérées espérer ver f p 301.08 134.93 0 0.41 par:pas; +espérés espérer ver m p 301.08 134.93 0.13 0.41 par:pas; +esquif esquif nom m s 0.29 1.76 0.29 1.42 +esquifs esquif nom m p 0.29 1.76 0 0.34 +esquille esquille nom f s 0.01 0.81 0.01 0.14 +esquilles esquille nom f p 0.01 0.81 0 0.68 +esquimau esquimau nom m s 1.89 1.22 0.91 0.88 +esquimaude esquimaud adj f s 0.1 0.07 0 0.07 +esquimaudes esquimaud adj f p 0.1 0.07 0.1 0 +esquimaux esquimau nom m p 1.89 1.22 0.97 0.34 +esquintait esquinter ver 2.29 2.7 0 0.14 ind:imp:3s; +esquinte esquinter ver 2.29 2.7 0.5 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +esquintement esquintement nom m s 0 0.07 0 0.07 +esquintent esquinter ver 2.29 2.7 0.12 0.07 ind:pre:3p; +esquinter esquinter ver 2.29 2.7 0.47 1.08 inf; +esquinterais esquinter ver 2.29 2.7 0.01 0 cnd:pre:1s; +esquintes esquinter ver 2.29 2.7 0.34 0.07 ind:pre:2s; +esquintez esquinter ver 2.29 2.7 0.13 0 imp:pre:2p; +esquinté esquinter ver m s 2.29 2.7 0.57 0.41 par:pas; +esquintée esquinté adj f s 0.51 0.34 0.33 0.27 +esquintées esquinter ver f p 2.29 2.7 0.01 0.07 par:pas; +esquintés esquinté adj m p 0.51 0.34 0.02 0.07 +esquire esquire nom m s 0.31 0 0.31 0 +esquissa esquisser ver 0.74 16.82 0.02 4.53 ind:pas:3s; +esquissai esquisser ver 0.74 16.82 0 0.2 ind:pas:1s; +esquissaient esquisser ver 0.74 16.82 0 0.27 ind:imp:3p; +esquissais esquisser ver 0.74 16.82 0.02 0.47 ind:imp:1s; +esquissait esquisser ver 0.74 16.82 0 1.62 ind:imp:3s; +esquissant esquisser ver 0.74 16.82 0.12 1.08 par:pre; +esquisse esquisse nom f s 1.06 4.39 0.54 2.43 +esquissent esquisser ver 0.74 16.82 0.01 0.34 ind:pre:3p; +esquisser esquisser ver 0.74 16.82 0.06 2.03 inf; +esquisses esquisse nom f p 1.06 4.39 0.52 1.96 +esquissèrent esquisser ver 0.74 16.82 0 0.14 ind:pas:3p; +esquissé esquisser ver m s 0.74 16.82 0.15 2.43 par:pas; +esquissée esquisser ver f s 0.74 16.82 0.1 0.41 par:pas; +esquissées esquisser ver f p 0.74 16.82 0 0.2 par:pas; +esquissés esquisser ver m p 0.74 16.82 0 0.41 par:pas; +esquiva esquiver ver 4.39 8.38 0.01 1.28 ind:pas:3s; +esquivai esquiver ver 4.39 8.38 0 0.14 ind:pas:1s; +esquivaient esquiver ver 4.39 8.38 0 0.07 ind:imp:3p; +esquivait esquiver ver 4.39 8.38 0.01 0.88 ind:imp:3s; +esquivant esquiver ver 4.39 8.38 0.04 0.47 par:pre; +esquive esquive nom f s 1.11 0.95 1.06 0.74 +esquivent esquiver ver 4.39 8.38 0.02 0.14 ind:pre:3p; +esquiver esquiver ver 4.39 8.38 1.59 3.04 inf; +esquivera esquiver ver 4.39 8.38 0.19 0.07 ind:fut:3s; +esquiveront esquiver ver 4.39 8.38 0.14 0 ind:fut:3p; +esquives esquiver ver 4.39 8.38 0.28 0 ind:pre:2s; +esquivèrent esquiver ver 4.39 8.38 0 0.14 ind:pas:3p; +esquivé esquiver ver m s 4.39 8.38 1.08 0.95 par:pas; +esquivée esquiver ver f s 4.39 8.38 0.04 0.2 par:pas; +essai essai nom m s 28.78 14.86 20.31 9.93 +essaie essayer ver 670.4 296.69 168.04 39.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +essaient essayer ver 670.4 296.69 10.09 3.65 ind:pre:3p; +essaiera essayer ver 670.4 296.69 3.5 0.95 ind:fut:3s; +essaierai essayer ver 670.4 296.69 11.2 3.31 ind:fut:1s; +essaieraient essayer ver 670.4 296.69 0.38 0.2 cnd:pre:3p; +essaierais essayer ver 670.4 296.69 1.99 0.95 cnd:pre:1s;cnd:pre:2s; +essaierait essayer ver 670.4 296.69 0.94 1.62 cnd:pre:3s; +essaieras essayer ver 670.4 296.69 0.48 0.34 ind:fut:2s; +essaierez essayer ver 670.4 296.69 0.4 0.07 ind:fut:2p; +essaieriez essayer ver 670.4 296.69 0.1 0 cnd:pre:2p; +essaierions essayer ver 670.4 296.69 0.16 0 cnd:pre:1p; +essaierons essayer ver 670.4 296.69 0.39 0.2 ind:fut:1p; +essaieront essayer ver 670.4 296.69 1.1 0.47 ind:fut:3p; +essaies essayer ver 670.4 296.69 16.09 1.49 ind:pre:2s;sub:pre:2s; +essaim essaim nom m s 0.97 4.53 0.69 3.18 +essaimaient essaimer ver 0.03 0.95 0.01 0.07 ind:imp:3p; +essaimait essaimer ver 0.03 0.95 0 0.14 ind:imp:3s; +essaiment essaimer ver 0.03 0.95 0.01 0.14 ind:pre:3p; +essaims essaim nom m p 0.97 4.53 0.28 1.35 +essaimé essaimer ver m s 0.03 0.95 0.01 0.47 par:pas; +essaimées essaimer ver f p 0.03 0.95 0 0.07 par:pas; +essaimés essaimer ver m p 0.03 0.95 0 0.07 par:pas; +essais essai nom m p 28.78 14.86 8.47 4.93 +essangent essanger ver 0 0.07 0 0.07 ind:pre:3p; +essartage essartage nom m s 0 0.07 0 0.07 +essarte essarter ver 0 0.14 0 0.07 ind:pre:3s; +essarts essart nom m p 0 0.07 0 0.07 +essartée essarter ver f s 0 0.14 0 0.07 par:pas; +essaya essayer ver 670.4 296.69 0.65 24.66 ind:pas:3s; +essayage essayage nom m s 1.84 2.84 1.26 1.82 +essayages essayage nom m p 1.84 2.84 0.58 1.01 +essayai essayer ver 670.4 296.69 0.32 9.73 ind:pas:1s; +essayaient essayer ver 670.4 296.69 2.73 6.08 ind:imp:3p; +essayais essayer ver 670.4 296.69 18.67 15.27 ind:imp:1s;ind:imp:2s; +essayait essayer ver 670.4 296.69 14.4 35.81 ind:imp:3s; +essayant essayer ver 670.4 296.69 8.96 22.57 par:pre; +essaye essayer ver 670.4 296.69 56.84 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essayent essayer ver 670.4 296.69 4.07 1.69 ind:pre:3p; +essayer essayer ver 670.4 296.69 134.69 56.42 ind:pre:2p;inf; +essayera essayer ver 670.4 296.69 1.03 0.2 ind:fut:3s; +essayerai essayer ver 670.4 296.69 1.8 0.54 ind:fut:1s; +essayeraient essayer ver 670.4 296.69 0.08 0.07 cnd:pre:3p; +essayerais essayer ver 670.4 296.69 0.66 0.27 cnd:pre:1s;cnd:pre:2s; +essayerait essayer ver 670.4 296.69 0.13 0.27 cnd:pre:3s; +essayeras essayer ver 670.4 296.69 0.1 0 ind:fut:2s; +essayerez essayer ver 670.4 296.69 0.16 0.14 ind:fut:2p; +essayeriez essayer ver 670.4 296.69 0.12 0 cnd:pre:2p; +essayerons essayer ver 670.4 296.69 0.58 0 ind:fut:1p; +essayeront essayer ver 670.4 296.69 0.15 0 ind:fut:3p; +essayes essayer ver 670.4 296.69 5.96 0.34 ind:pre:2s;sub:pre:2s; +essayeur essayeur nom m s 0.01 0.2 0.01 0.14 +essayeuses essayeur nom f p 0.01 0.2 0 0.07 +essayez essayer ver 670.4 296.69 54.14 6.96 imp:pre:2p;ind:pre:2p; +essayiez essayer ver 670.4 296.69 1.24 0.2 ind:imp:2p; +essayions essayer ver 670.4 296.69 0.75 0.81 ind:imp:1p; +essayiste essayiste nom s 0.01 0.14 0.01 0.07 +essayistes essayiste nom p 0.01 0.14 0 0.07 +essayons essayer ver 670.4 296.69 21.75 3.31 imp:pre:1p;ind:pre:1p; +essayâmes essayer ver 670.4 296.69 0 0.2 ind:pas:1p; +essayât essayer ver 670.4 296.69 0 0.41 sub:imp:3s; +essayèrent essayer ver 670.4 296.69 0.27 0.81 ind:pas:3p; +essayé essayer ver m s 670.4 296.69 124.02 45.68 par:pas;par:pas;par:pas;par:pas; +essayée essayer ver f s 670.4 296.69 0.51 0.34 par:pas; +essayées essayer ver f p 670.4 296.69 0.35 0.14 par:pas; +essayés essayer ver m p 670.4 296.69 0.45 0.47 par:pas; +esse esse nom f s 0.02 0.68 0.02 0.68 +essence essence nom f s 33.24 29.46 32.91 27.77 +essences essence nom f p 33.24 29.46 0.34 1.69 +essential essential adj m s 0.14 0 0.14 0 +essentialisme essentialisme nom m s 0 0.07 0 0.07 +essentiel essentiel nom m s 11.64 29.05 11.64 28.78 +essentielle essentiel adj f s 9.85 23.04 2.66 6.89 +essentiellement essentiellement adv 1.65 6.55 1.65 6.55 +essentielles essentiel adj f p 9.85 23.04 1.25 3.11 +essentiels essentiel adj m p 9.85 23.04 0.89 3.38 +esseulement esseulement nom m s 0 0.34 0 0.34 +esseulé esseulé adj m s 0.88 1.22 0.43 0.14 +esseulée esseulé adj f s 0.88 1.22 0.19 0.54 +esseulées esseulé adj f p 0.88 1.22 0.12 0.2 +esseulés esseulé adj m p 0.88 1.22 0.14 0.34 +essieu essieu nom m s 0.28 0.41 0.28 0.41 +essieux essieux nom m p 0.1 0.95 0.1 0.95 +essor essor nom m s 0.7 3.78 0.7 3.78 +essora essorer ver 0.18 2.5 0 0.2 ind:pas:3s; +essorage essorage nom m s 0.11 0.2 0.11 0.2 +essoraient essorer ver 0.18 2.5 0 0.14 ind:imp:3p; +essorait essorer ver 0.18 2.5 0.01 0.27 ind:imp:3s; +essorant essorer ver 0.18 2.5 0 0.14 par:pre; +essore essorer ver 0.18 2.5 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essorent essorer ver 0.18 2.5 0 0.14 ind:pre:3p; +essorer essorer ver 0.18 2.5 0.08 1.08 inf; +essorerait essorer ver 0.18 2.5 0 0.07 cnd:pre:3s; +essoreuse essoreuse nom f s 0.36 0.07 0.36 0.07 +essorillé essoriller ver m s 0 0.07 0 0.07 par:pas; +essoré essorer ver m s 0.18 2.5 0.02 0.07 par:pas; +essorée essorer ver f s 0.18 2.5 0 0.2 par:pas; +essorés essoré adj m p 0.02 0.2 0.01 0 +essouffla essouffler ver 1.03 7.91 0 0.2 ind:pas:3s; +essoufflaient essouffler ver 1.03 7.91 0 0.34 ind:imp:3p; +essoufflais essouffler ver 1.03 7.91 0.01 0.07 ind:imp:1s; +essoufflait essouffler ver 1.03 7.91 0.01 0.88 ind:imp:3s; +essoufflant essouffler ver 1.03 7.91 0 0.2 par:pre; +essouffle essouffler ver 1.03 7.91 0.26 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essoufflement essoufflement nom m s 0.19 1.62 0.16 1.55 +essoufflements essoufflement nom m p 0.19 1.62 0.03 0.07 +essoufflent essouffler ver 1.03 7.91 0.01 0.07 ind:pre:3p; +essouffler essouffler ver 1.03 7.91 0.08 0.34 inf; +essouffleront essouffler ver 1.03 7.91 0 0.07 ind:fut:3p; +essouffles essouffler ver 1.03 7.91 0.01 0.07 ind:pre:2s; +essoufflez essouffler ver 1.03 7.91 0 0.14 ind:pre:2p; +essoufflèrent essouffler ver 1.03 7.91 0 0.07 ind:pas:3p; +essoufflé essouffler ver m s 1.03 7.91 0.38 1.76 par:pas; +essoufflée essouffler ver f s 1.03 7.91 0.25 1.28 par:pas; +essoufflées essoufflé adj f p 0.55 9.39 0 0.14 +essoufflés essoufflé adj m p 0.55 9.39 0.12 1.28 +essuie essuyer ver 11.82 55 3.98 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essuie_glace essuie_glace nom m s 1 2.91 0.38 1.01 +essuie_glace essuie_glace nom m p 1 2.91 0.62 1.89 +essuie_mains essuie_mains nom m 0.23 0.27 0.23 0.27 +essuie_tout essuie_tout nom m 0.11 0.14 0.11 0.14 +essuient essuyer ver 11.82 55 0.05 0.68 ind:pre:3p; +essuiera essuyer ver 11.82 55 0.04 0 ind:fut:3s; +essuierais essuyer ver 11.82 55 0.02 0 cnd:pre:1s; +essuieras essuyer ver 11.82 55 0.01 0.07 ind:fut:2s; +essuierez essuyer ver 11.82 55 0.04 0 ind:fut:2p; +essuierions essuyer ver 11.82 55 0 0.07 cnd:pre:1p; +essuies essuyer ver 11.82 55 0.23 0.07 ind:pre:2s; +essuya essuyer ver 11.82 55 0.14 12.84 ind:pas:3s; +essuyage essuyage nom m s 0.01 0.2 0.01 0.14 +essuyages essuyage nom m p 0.01 0.2 0 0.07 +essuyai essuyer ver 11.82 55 0 0.61 ind:pas:1s; +essuyaient essuyer ver 11.82 55 0.03 0.61 ind:imp:3p; +essuyais essuyer ver 11.82 55 0.07 0.68 ind:imp:1s;ind:imp:2s; +essuyait essuyer ver 11.82 55 0.41 6.42 ind:imp:3s; +essuyant essuyer ver 11.82 55 0.15 7.09 par:pre; +essuyer essuyer ver 11.82 55 3.39 11.35 inf;; +essuyeur essuyeur nom m s 0.02 0 0.02 0 +essuyez essuyer ver 11.82 55 1.41 0.27 imp:pre:2p;ind:pre:2p; +essuyions essuyer ver 11.82 55 0 0.07 ind:imp:1p; +essuyons essuyer ver 11.82 55 0.07 0 imp:pre:1p;ind:pre:1p; +essuyèrent essuyer ver 11.82 55 0.01 0.2 ind:pas:3p; +essuyé essuyer ver m s 11.82 55 1.68 5 par:pas; +essuyée essuyer ver f s 11.82 55 0.04 0.61 par:pas; +essuyées essuyer ver f p 11.82 55 0.02 0.34 par:pas; +essuyés essuyer ver m p 11.82 55 0.03 0.07 par:pas; +est être aux 8074.24 6501.82 3318.95 1600.27 ind:pre:3s; +est_africain est_africain adj m s 0.01 0 0.01 0 +est_allemand est_allemand adj m s 0.67 0 0.31 0 +est_allemand est_allemand adj f s 0.67 0 0.23 0 +est_allemand est_allemand adj m p 0.67 0 0.13 0 +est_ce_que est_ce_que adv_sup 1.34 0.2 1.34 0.2 +est_ouest est_ouest adj 0.38 0.41 0.38 0.41 +establishment establishment nom m s 0.26 0.2 0.26 0.2 +estacade estacade nom f s 0.14 0.61 0.14 0.47 +estacades estacade nom f p 0.14 0.61 0 0.14 +estafette estafette nom f s 0.33 3.78 0.33 2.43 +estafettes estafette nom f p 0.33 3.78 0 1.35 +estafier estafier nom m s 0 0.14 0 0.07 +estafiers estafier nom m p 0 0.14 0 0.07 +estafilade estafilade nom f s 0.05 0.88 0.05 0.74 +estafilades estafilade nom f p 0.05 0.88 0 0.14 +estagnon estagnon nom m s 0 0.07 0 0.07 +estaminet estaminet nom m s 0.01 1.35 0.01 1.08 +estaminets estaminet nom m p 0.01 1.35 0 0.27 +estampage estampage nom m s 0.02 0 0.02 0 +estampe estampe nom f s 0.42 2.23 0.12 0.68 +estamper estamper ver 0.03 0.27 0.02 0.2 inf; +estampes estampe nom f p 0.42 2.23 0.3 1.55 +estampilla estampiller ver 0.07 0.47 0 0.14 ind:pas:3s; +estampillaient estampiller ver 0.07 0.47 0 0.07 ind:imp:3p; +estampille estampille nom f s 0.01 0.47 0.01 0.47 +estampiller estampiller ver 0.07 0.47 0 0.07 inf; +estampillé estampiller ver m s 0.07 0.47 0.04 0.07 par:pas; +estampillées estampillé adj f p 0 0.47 0 0.07 +estampillés estampiller ver m p 0.07 0.47 0.03 0.14 par:pas; +estampé estamper ver m s 0.03 0.27 0.01 0 par:pas; +estampée estamper ver f s 0.03 0.27 0 0.07 par:pas; +estancia estancia nom f s 0.06 0.41 0.06 0.2 +estancias estancia nom f p 0.06 0.41 0 0.2 +este este nom m s 0.5 0.41 0.5 0.14 +ester ester nom m s 0.25 0 0.25 0 +estes este nom m p 0.5 0.41 0 0.27 +esthète esthète nom s 0.29 2.57 0.27 1.49 +esthètes esthète nom p 0.29 2.57 0.02 1.08 +esthésiomètre esthésiomètre nom m s 0 0.07 0 0.07 +esthéticien esthéticien nom m s 1.16 0.54 0.11 0.14 +esthéticienne esthéticien nom f s 1.16 0.54 1.02 0.41 +esthéticiennes esthéticien nom f p 1.16 0.54 0.03 0 +esthétique esthétique adj s 3.09 4.66 2.64 3.45 +esthétiquement esthétiquement adv 0.11 0.07 0.11 0.07 +esthétiques esthétique adj p 3.09 4.66 0.46 1.22 +esthétisait esthétiser ver 0 0.07 0 0.07 ind:imp:3s; +esthétisme esthétisme nom m s 0.04 1.08 0.04 1.08 +estima estimer ver 21.41 37.64 0.14 1.89 ind:pas:3s; +estimable estimable adj s 0.54 1.69 0.4 1.42 +estimables estimable adj p 0.54 1.69 0.14 0.27 +estimai estimer ver 21.41 37.64 0 0.14 ind:pas:1s; +estimaient estimer ver 21.41 37.64 0.04 1.49 ind:imp:3p; +estimais estimer ver 21.41 37.64 0.25 2.16 ind:imp:1s;ind:imp:2s; +estimait estimer ver 21.41 37.64 0.73 7.77 ind:imp:3s; +estimant estimer ver 21.41 37.64 0.17 2.97 par:pre; +estimation estimation nom f s 3.55 1.22 2.4 1.01 +estimations estimation nom f p 3.55 1.22 1.15 0.2 +estime estimer ver 21.41 37.64 8.02 8.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +estiment estimer ver 21.41 37.64 1.28 1.49 ind:pre:3p; +estimer estimer ver 21.41 37.64 2.37 3.18 inf; +estimera estimer ver 21.41 37.64 0.08 0.14 ind:fut:3s; +estimerai estimer ver 21.41 37.64 0.03 0.2 ind:fut:1s; +estimerais estimer ver 21.41 37.64 0.04 0.07 cnd:pre:1s; +estimerait estimer ver 21.41 37.64 0 0.2 cnd:pre:3s; +estimeras estimer ver 21.41 37.64 0.04 0 ind:fut:2s; +estimerez estimer ver 21.41 37.64 0.14 0.14 ind:fut:2p; +estimes estimer ver 21.41 37.64 0.9 0.34 ind:pre:2s; +estimez estimer ver 21.41 37.64 1.41 1.28 imp:pre:2p;ind:pre:2p; +estimiez estimer ver 21.41 37.64 0.27 0.07 ind:imp:2p; +estimions estimer ver 21.41 37.64 0.01 0.68 ind:imp:1p; +estimons estimer ver 21.41 37.64 0.95 0.54 imp:pre:1p;ind:pre:1p; +estimât estimer ver 21.41 37.64 0 0.34 sub:imp:3s; +estimèrent estimer ver 21.41 37.64 0.01 0.14 ind:pas:3p; +estimé estimer ver m s 21.41 37.64 2.71 2.64 par:pas; +estimée estimer ver f s 21.41 37.64 0.77 0.41 par:pas; +estimées estimer ver f p 21.41 37.64 0.1 0.07 par:pas; +estimés estimer ver m p 21.41 37.64 0.97 0.41 par:pas; +estival estival adj m s 0.53 1.76 0.35 0.47 +estivale estival adj f s 0.53 1.76 0.11 0.74 +estivales estival adj f p 0.53 1.76 0.04 0.27 +estivant estivant nom m s 0.29 2.23 0 0.27 +estivante estivant nom f s 0.29 2.23 0 0.07 +estivantes estivant nom f p 0.29 2.23 0 0.07 +estivants estivant nom m p 0.29 2.23 0.29 1.82 +estivaux estival adj m p 0.53 1.76 0.04 0.27 +estoc estoc nom m s 0.16 0.34 0.16 0.2 +estocade estocade nom f s 0.03 0.47 0.03 0.41 +estocades estocade nom f p 0.03 0.47 0 0.07 +estocs estoc nom m p 0.16 0.34 0 0.14 +estom estom nom m s 0 0.2 0 0.2 +estomac estomac nom m s 23.56 30.95 23.06 30.14 +estomacs estomac nom m p 23.56 30.95 0.5 0.81 +estomaquait estomaquer ver 0.26 2.16 0 0.07 ind:imp:3s; +estomaquant estomaquer ver 0.26 2.16 0 0.07 par:pre; +estomaque estomaquer ver 0.26 2.16 0.16 0.14 ind:pre:1s;ind:pre:3s; +estomaquer estomaquer ver 0.26 2.16 0 0.14 inf; +estomaqué estomaquer ver m s 0.26 2.16 0.06 1.42 par:pas; +estomaquée estomaquer ver f s 0.26 2.16 0.03 0.2 par:pas; +estomaqués estomaquer ver m p 0.26 2.16 0.01 0.14 par:pas; +estompa estomper ver 1.54 8.85 0 0.81 ind:pas:3s; +estompaient estomper ver 1.54 8.85 0.01 1.08 ind:imp:3p; +estompait estomper ver 1.54 8.85 0.11 1.76 ind:imp:3s; +estompant estomper ver 1.54 8.85 0 0.47 par:pre; +estompe estomper ver 1.54 8.85 0.4 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +estompent estomper ver 1.54 8.85 0.42 1.22 ind:pre:3p; +estomper estomper ver 1.54 8.85 0.25 0.68 inf; +estompera estomper ver 1.54 8.85 0.21 0 ind:fut:3s; +estomperont estomper ver 1.54 8.85 0.07 0 ind:fut:3p; +estompes estomper ver 1.54 8.85 0 0.14 ind:pre:2s; +estompât estomper ver 1.54 8.85 0 0.14 sub:imp:3s; +estompèrent estomper ver 1.54 8.85 0 0.2 ind:pas:3p; +estompé estomper ver m s 1.54 8.85 0.02 0.14 par:pas; +estompée estomper ver f s 1.54 8.85 0.04 0.34 par:pas; +estompées estomper ver f p 1.54 8.85 0 0.47 par:pas; +estompés estomper ver m p 1.54 8.85 0.02 0.27 par:pas; +estonien estonien adj m s 0.01 0.07 0.01 0.07 +estonienne estonienne nom f s 0.1 0 0.1 0 +estoniens estonien nom m p 0 0.2 0 0.14 +estoqua estoquer ver 0 0.34 0 0.07 ind:pas:3s; +estoque estoquer ver 0 0.34 0 0.14 ind:pre:3s; +estoquer estoquer ver 0 0.34 0 0.07 inf; +estoqué estoquer ver m s 0 0.34 0 0.07 par:pas; +estouffade estouffade nom f s 0 0.07 0 0.07 +estourbi estourbir ver m s 0.14 2.36 0.03 0.41 par:pas; +estourbie estourbir ver f s 0.14 2.36 0.01 0.41 par:pas; +estourbies estourbir ver f p 0.14 2.36 0.01 0 par:pas; +estourbir estourbir ver 0.14 2.36 0.07 0.88 inf; +estourbirait estourbir ver 0.14 2.36 0 0.07 cnd:pre:3s; +estourbis estourbir ver m p 0.14 2.36 0.01 0.14 ind:pre:1s;par:pas; +estourbissais estourbir ver 0.14 2.36 0 0.07 ind:imp:1s; +estourbissant estourbir ver 0.14 2.36 0 0.07 par:pre; +estourbisse estourbir ver 0.14 2.36 0 0.07 sub:pre:1s; +estourbit estourbir ver 0.14 2.36 0 0.27 ind:pre:3s;ind:pas:3s; +estrade estrade nom f s 1.64 11.28 1.63 10.68 +estrades estrade nom f p 1.64 11.28 0.01 0.61 +estragon estragon nom m s 0.7 0.81 0.7 0.81 +estrangers estranger nom m p 0 0.2 0 0.2 +estrapade estrapade nom f s 0.14 0.47 0.14 0.41 +estrapades estrapade nom f p 0.14 0.47 0 0.07 +estrapassée estrapasser ver f s 0.01 0 0.01 0 par:pas; +estrogène estrogène nom s 0.03 0 0.03 0 +estropiait estropier ver 1.39 1.15 0 0.07 ind:imp:3s; +estropie estropier ver 1.39 1.15 0.02 0.14 ind:pre:1s;ind:pre:3s; +estropier estropier ver 1.39 1.15 0.39 0.14 inf; +estropierai estropier ver 1.39 1.15 0.01 0 ind:fut:1s; +estropierait estropier ver 1.39 1.15 0.01 0 cnd:pre:3s; +estropiez estropier ver 1.39 1.15 0.04 0 imp:pre:2p;ind:pre:2p; +estropié estropié adj m s 1.42 1.15 0.89 0.47 +estropiée estropié adj f s 1.42 1.15 0.25 0.14 +estropiés estropié adj m p 1.42 1.15 0.28 0.54 +estuaire estuaire nom m s 0.49 2.64 0.48 2.43 +estuaires estuaire nom m p 0.49 2.64 0.01 0.2 +estudiantin estudiantin adj m s 0.17 0.68 0.05 0.2 +estudiantine estudiantin adj f s 0.17 0.68 0.12 0.34 +estudiantines estudiantin adj f p 0.17 0.68 0 0.07 +estudiantins estudiantin adj m p 0.17 0.68 0 0.07 +esturgeon esturgeon nom m s 0.47 0.07 0.39 0.07 +esturgeons esturgeon nom m p 0.47 0.07 0.07 0 +et et con 12909.08 20879.73 12909.08 20879.73 +et_caetera et_caetera adv 0.72 0.88 0.72 0.88 +et_cetera et_cetera adv 1.14 0.74 1.14 0.74 +et_seq et_seq adv 0 0.07 0 0.07 +etc etc adv 13.9 55 13.9 55 +etc. etc. adv 0.03 0.74 0.03 0.74 +etcetera etcetera adv 0 0.07 0 0.07 +ethmoïdal ethmoïdal adj m s 0.03 0 0.01 0 +ethmoïdaux ethmoïdal adj m p 0.03 0 0.01 0 +ethnicité ethnicité nom f s 0.02 0 0.02 0 +ethnie ethnie nom f s 0.28 0.2 0.08 0.07 +ethnies ethnie nom f p 0.28 0.2 0.2 0.14 +ethnique ethnique adj s 1.37 1.01 0.85 0.68 +ethniquement ethniquement adv 0.01 0 0.01 0 +ethniques ethnique adj p 1.37 1.01 0.52 0.34 +ethnobotaniste ethnobotaniste nom s 0.01 0 0.01 0 +ethnographe ethnographe nom s 0.1 0.07 0.1 0.07 +ethnographie ethnographie nom f s 0 0.2 0 0.2 +ethnographique ethnographique adj m s 0.1 0.07 0.1 0.07 +ethnologie ethnologie nom f s 0.01 0.41 0.01 0.41 +ethnologique ethnologique adj s 0 0.27 0 0.2 +ethnologiques ethnologique adj m p 0 0.27 0 0.07 +ethnologue ethnologue nom s 0.14 0.47 0.14 0.34 +ethnologues ethnologue nom p 0.14 0.47 0 0.14 +eu avoir aux m s 18559.22 12800.81 18.39 22.36 par:pas; +eubage eubage nom m s 0 0.41 0 0.41 +eubine eubine nom f s 0 0.27 0 0.27 +eucalyptus eucalyptus nom m 0.83 3.11 0.83 3.11 +eucharistie eucharistie nom f s 0.34 0.61 0.34 0.61 +eucharistique eucharistique adj s 0 0.41 0 0.34 +eucharistiques eucharistique adj m p 0 0.41 0 0.07 +euclidien euclidien adj m s 0.04 0.14 0.01 0 +euclidienne euclidien adj f s 0.04 0.14 0.01 0 +euclidiens euclidien adj m p 0.04 0.14 0.01 0.14 +eudistes eudiste nom m p 0 0.07 0 0.07 +eue avoir aux f s 18559.22 12800.81 0.27 0.54 par:pas; +eues avoir aux f p 18559.22 12800.81 0.01 0.07 par:pas; +eugénique eugénique adj f s 0.01 0.07 0.01 0.07 +eugénisme eugénisme nom m s 0.45 0 0.45 0 +euh euh ono 108.86 15.47 108.86 15.47 +eulogie eulogie nom f s 0 0.07 0 0.07 +eunuque eunuque nom m s 1.79 8.45 1.27 2.43 +eunuques eunuque nom m p 1.79 8.45 0.53 6.01 +eunuques_espion eunuques_espion nom m p 0 0.14 0 0.14 +euphonie euphonie nom f s 0 0.07 0 0.07 +euphonique euphonique adj m s 0 0.34 0 0.27 +euphoniquement euphoniquement adv 0 0.07 0 0.07 +euphoniques euphonique adj p 0 0.34 0 0.07 +euphorbe euphorbe nom f s 0 0.41 0 0.07 +euphorbes euphorbe nom f p 0 0.41 0 0.34 +euphorie euphorie nom f s 0.98 8.11 0.98 8.11 +euphorique euphorique adj s 0.56 1.22 0.56 1.22 +euphorisant euphorisant adj m s 0.06 0.2 0.04 0.07 +euphorisante euphorisant adj f s 0.06 0.2 0.02 0.07 +euphorisants euphorisant nom m p 0.02 0.47 0.02 0.41 +euphorisent euphoriser ver 0 0.2 0 0.07 ind:pre:3p; +euphorisé euphoriser ver m s 0 0.2 0 0.07 par:pas; +euphorisée euphoriser ver f s 0 0.2 0 0.07 par:pas; +euphémisme euphémisme nom m s 1.52 1.55 1.11 1.01 +euphémismes euphémisme nom m p 1.52 1.55 0.41 0.54 +eurafricaine eurafricain adj f s 0.1 0.07 0 0.07 +eurafricains eurafricain adj m p 0.1 0.07 0.1 0 +eurasien eurasien nom m s 0.03 0.2 0.02 0 +eurasienne eurasien nom f s 0.03 0.2 0.01 0.2 +eurent avoir aux 18559.22 12800.81 0.44 9.32 ind:pas:3p; +euro euro nom m s 9.84 0 0.84 0 +euro_africain euro_africain adj f p 0 0.07 0 0.07 +eurodollar eurodollar nom m s 0.01 0 0.01 0 +euromarché euromarché nom m s 0 0.07 0 0.07 +européen européen adj m s 9.45 15.88 2.78 3.78 +européenne européen adj f s 9.45 15.88 3.92 6.76 +européennes européen adj f p 9.45 15.88 0.96 1.42 +européens européen nom m p 3.38 7.3 2.44 4.05 +euros euro nom m p 9.84 0 8.99 0 +eurythmiques eurythmique adj m p 0 0.07 0 0.07 +eurêka eurêka ono 0 0.2 0 0.2 +eus avoir aux m p 18559.22 12800.81 0.67 13.04 par:pas; +euskera euskera nom m s 1.3 0 1.3 0 +eusse avoir aux 18559.22 12800.81 0.52 7.3 sub:imp:1s; +eussent avoir aux 18559.22 12800.81 0.13 20.2 sub:imp:3p; +eusses avoir aux 18559.22 12800.81 0 0.07 sub:imp:2s; +eussiez avoir aux 18559.22 12800.81 0.52 0.47 sub:imp:2p; +eussions avoir aux 18559.22 12800.81 0 1.35 sub:imp:1p; +eussé avoir aux 18559.22 12800.81 0 0.95 sub:imp:1s; +eustache eustache nom m s 0 0.2 0 0.07 +eustaches eustache nom m p 0 0.2 0 0.14 +eut avoir aux 18559.22 12800.81 2.15 54.26 ind:pas:3s; +euthanasie euthanasie nom f s 1.48 0.61 1.44 0.54 +euthanasies euthanasie nom f p 1.48 0.61 0.04 0.07 +eux eux pro_per m p 295.35 504.26 295.35 504.26 +eux_mêmes eux_mêmes pro_per m p 9.96 48.04 9.96 48.04 +event event nom m s 0.14 0 0.14 0 +evzones evzone nom m p 0 0.07 0 0.07 +ex_abrupto ex_abrupto adv 0 0.07 0 0.07 +ex_nihilo ex_nihilo adv 0 0.14 0 0.14 +ex_abbé ex_abbé nom m s 0 0.07 0 0.07 +ex_acteur ex_acteur nom m s 0 0.07 0 0.07 +ex_adjudant ex_adjudant nom m s 0 0.14 0 0.14 +ex_agent ex_agent nom m s 0.09 0 0.09 0 +ex_alcoolo ex_alcoolo nom s 0.01 0 0.01 0 +ex_allée ex_allée nom f s 0 0.07 0 0.07 +ex_amant ex_amant nom m s 0.19 0.34 0.17 0.07 +ex_amant ex_amant nom f s 0.19 0.34 0.01 0.27 +ex_amant ex_amant nom m p 0.19 0.34 0.01 0 +ex_ambassadeur ex_ambassadeur nom m s 0.01 0 0.01 0 +ex_amour ex_amour nom m s 0.01 0 0.01 0 +ex_appartement ex_appartement nom m s 0 0.07 0 0.07 +ex_apprenti ex_apprenti nom m s 0 0.07 0 0.07 +ex_arriviste ex_arriviste nom s 0 0.07 0 0.07 +ex_artiste ex_artiste nom s 0 0.07 0 0.07 +ex_assistant ex_assistant nom m s 0.07 0 0.02 0 +ex_assistant ex_assistant nom f s 0.07 0 0.04 0 +ex_associé ex_associé nom m s 0.13 0.07 0.08 0.07 +ex_associé ex_associé nom m p 0.13 0.07 0.05 0 +ex_ballerine ex_ballerine nom f s 0.01 0 0.01 0 +ex_banquier ex_banquier nom m s 0.01 0 0.01 0 +ex_barman ex_barman nom m s 0.01 0.07 0.01 0.07 +ex_basketteur ex_basketteur nom m s 0 0.07 0 0.07 +ex_batteur ex_batteur nom m s 0 0.07 0 0.07 +ex_beatnik ex_beatnik nom s 0 0.07 0 0.07 +ex_belle_mère ex_belle_mère nom f s 0.05 0 0.05 0 +ex_bibliothécaire ex_bibliothécaire nom s 0 0.07 0 0.07 +ex_boss ex_boss nom m 0.01 0 0.01 0 +ex_boxeur ex_boxeur nom m s 0.16 0 0.16 0 +ex_branleur ex_branleur nom m p 0 0.07 0 0.07 +ex_buteur ex_buteur nom m s 0.01 0 0.01 0 +ex_camarade ex_camarade nom p 0.01 0 0.01 0 +ex_capitaine ex_capitaine nom m s 0.04 0 0.04 0 +ex_caïd ex_caïd nom m s 0.01 0 0.01 0 +ex_champion ex_champion nom m s 0.75 0.14 0.71 0.14 +ex_champion ex_champion nom f s 0.75 0.14 0.01 0 +ex_champion ex_champion nom m p 0.75 0.14 0.03 0 +ex_chanteur ex_chanteur nom m s 0.02 0.07 0 0.07 +ex_chanteur ex_chanteur nom f s 0.02 0.07 0.02 0 +ex_chauffeur ex_chauffeur nom m s 0.14 0.07 0.14 0.07 +ex_chef ex_chef nom s 0.2 0.14 0.2 0.14 +ex_chiropracteur ex_chiropracteur nom m s 0.01 0 0.01 0 +ex_citation ex_citation nom f s 0.01 0 0.01 0 +ex_citoyen ex_citoyen nom m s 0.01 0 0.01 0 +ex_civil ex_civil nom m p 0.01 0 0.01 0 +ex_collabo ex_collabo nom s 0 0.07 0 0.07 +ex_collègue ex_collègue nom s 0.3 0.14 0.03 0.14 +ex_collègue ex_collègue nom p 0.3 0.14 0.27 0 +ex_colonel ex_colonel nom m s 0.01 0.14 0.01 0.14 +ex_commando ex_commando nom m s 0.05 0 0.05 0 +ex_concierge ex_concierge nom s 0 0.07 0 0.07 +ex_contrebandier ex_contrebandier nom m s 0.02 0 0.02 0 +ex_copain ex_copain nom m s 0.28 0 0.26 0 +ex_copain ex_copain nom m p 0.28 0 0.02 0 +ex_copine ex_copine nom f s 0.71 0 0.54 0 +ex_copine ex_copine nom f p 0.71 0 0.18 0 +ex_corps ex_corps nom m 0.01 0 0.01 0 +ex_couple ex_couple nom m s 0.01 0 0.01 0 +ex_danseur ex_danseur nom f s 0.01 0.14 0.01 0.14 +ex_dealer ex_dealer nom m s 0.02 0 0.02 0 +ex_dieu ex_dieu nom m s 0.01 0 0.01 0 +ex_diva ex_diva nom f s 0 0.07 0 0.07 +ex_drifter ex_drifter nom m s 0 0.07 0 0.07 +ex_drôlesse ex_drôlesse nom f s 0 0.07 0 0.07 +ex_dulcinée ex_dulcinée nom f s 0 0.07 0 0.07 +ex_démon ex_démon nom m s 0.1 0 0.09 0 +ex_démon ex_démon nom m p 0.1 0 0.01 0 +ex_enseigne ex_enseigne nom m s 0 0.07 0 0.07 +ex_enzyme ex_enzyme nom f p 0 0.07 0 0.07 +ex_esclavagiste ex_esclavagiste nom p 0.01 0 0.01 0 +ex_femme ex_femme nom f s 6.75 1.62 6.32 1.62 +ex_femme ex_femme nom f p 6.75 1.62 0.43 0 +ex_fiancé ex_fiancé nom m s 0.18 0.07 0.1 0 +ex_fiancé ex_fiancé nom f s 0.18 0.07 0.08 0.07 +ex_fils ex_fils nom m 0 0.07 0 0.07 +ex_flic ex_flic nom m s 0.27 0.07 0.24 0.07 +ex_flic ex_flic nom m p 0.27 0.07 0.03 0 +ex_forçat ex_forçat nom m p 0.01 0 0.01 0 +ex_fusilleur ex_fusilleur nom m p 0 0.07 0 0.07 +ex_gang ex_gang nom m s 0 0.07 0 0.07 +ex_garde ex_garde nom f s 0.14 0.2 0 0.14 +ex_garde ex_garde nom f p 0.14 0.2 0.14 0.07 +ex_gauchiste ex_gauchiste adj m s 0 0.07 0 0.07 +ex_gauchiste ex_gauchiste nom s 0 0.07 0 0.07 +ex_gendre ex_gendre nom m s 0.01 0 0.01 0 +ex_gonzesse ex_gonzesse nom f s 0 0.14 0 0.14 +ex_gouverneur ex_gouverneur nom m s 0.06 0.14 0.06 0.14 +ex_gravosse ex_gravosse nom f s 0 0.07 0 0.07 +ex_griot ex_griot nom m s 0 0.07 0 0.07 +ex_griveton ex_griveton nom m s 0 0.07 0 0.07 +ex_grognasse ex_grognasse nom f s 0 0.07 0 0.07 +ex_groupe ex_groupe nom m s 0 0.07 0 0.07 +ex_guenille ex_guenille nom f p 0 0.07 0 0.07 +ex_guitariste ex_guitariste nom s 0 0.07 0 0.07 +ex_génie ex_génie nom m s 0 0.07 0 0.07 +ex_hippie ex_hippie nom p 0.02 0 0.02 0 +ex_homme ex_homme nom m s 0.06 0 0.06 0 +ex_homme_grenouille ex_homme_grenouille nom m s 0.01 0 0.01 0 +ex_hôpital ex_hôpital nom m s 0 0.07 0 0.07 +ex_immeuble ex_immeuble nom m s 0 0.07 0 0.07 +ex_inspecteur ex_inspecteur nom m s 0.03 0 0.02 0 +ex_inspecteur ex_inspecteur nom m p 0.03 0 0.01 0 +ex_journaliste ex_journaliste nom s 0.02 0.07 0.02 0.07 +ex_junkie ex_junkie nom m s 0.03 0 0.03 0 +ex_kid ex_kid nom m s 0 0.27 0 0.27 +ex_leader ex_leader nom m s 0.02 0 0.02 0 +ex_libris ex_libris nom m 0 0.14 0 0.14 +ex_lieutenant ex_lieutenant nom m s 0.01 0 0.01 0 +ex_lit ex_lit nom m s 0 0.07 0 0.07 +ex_lycée ex_lycée nom m s 0 0.07 0 0.07 +ex_légionnaire ex_légionnaire nom m s 0 0.07 0 0.07 +ex_madame ex_madame nom f 0.03 0.07 0.03 0.07 +ex_maire ex_maire nom m s 0.01 0 0.01 0 +ex_mari ex_mari nom m s 5.05 1.08 4.87 1.08 +ex_marine ex_marine nom f s 0.07 0 0.07 0 +ex_mari ex_mari nom m p 5.05 1.08 0.19 0 +ex_maître ex_maître nom m s 0 0.07 0 0.07 +ex_mec ex_mec nom m p 0.1 0 0.1 0 +ex_membre ex_membre nom m s 0.03 0 0.03 0 +ex_mercenaire ex_mercenaire nom p 0.01 0 0.01 0 +ex_militaire ex_militaire nom s 0.08 0 0.05 0 +ex_militaire ex_militaire nom p 0.08 0 0.03 0 +ex_ministre ex_ministre nom m s 0.06 0.41 0.04 0.41 +ex_ministre ex_ministre nom m p 0.06 0.41 0.01 0 +ex_miss ex_miss nom f 0.05 0 0.05 0 +ex_monteur ex_monteur nom m s 0.02 0 0.02 0 +ex_motard ex_motard nom m s 0.01 0 0.01 0 +ex_nana ex_nana nom f s 0.12 0 0.12 0 +ex_officier ex_officier nom m s 0.05 0.14 0.05 0.14 +ex_opérateur ex_opérateur nom m s 0 0.07 0 0.07 +ex_palme ex_palme nom f p 0.14 0 0.14 0 +ex_para ex_para nom m s 0.02 0.14 0.02 0.14 +ex_partenaire ex_partenaire nom s 0.18 0 0.18 0 +ex_patron ex_patron nom m s 0.2 0 0.2 0 +ex_pensionnaire ex_pensionnaire nom p 0 0.07 0 0.07 +ex_perroquet ex_perroquet nom m s 0.01 0 0.01 0 +ex_petit ex_petit nom m s 0.68 0 0.38 0 +ex_petit ex_petit nom f s 0.68 0 0.28 0 +ex_petit ex_petit nom m p 0.68 0 0.03 0 +ex_pharmacien ex_pharmacien nom f p 0 0.07 0 0.07 +ex_pilote ex_pilote adj m s 0 0.14 0 0.14 +ex_planton ex_planton nom m s 0 0.07 0 0.07 +ex_planète ex_planète nom f s 0.01 0 0.01 0 +ex_plaqué ex_plaqué adj f s 0 0.07 0 0.07 +ex_plâtrier ex_plâtrier nom m s 0 0.07 0 0.07 +ex_poivrot ex_poivrot nom m p 0.01 0 0.01 0 +ex_premier ex_premier adj m s 0.01 0 0.01 0 +ex_premier ex_premier nom m s 0.01 0 0.01 0 +ex_primaire ex_primaire nom s 0 0.07 0 0.07 +ex_prison ex_prison nom f s 0.01 0 0.01 0 +ex_procureur ex_procureur nom m s 0.03 0 0.03 0 +ex_profession ex_profession nom f s 0 0.07 0 0.07 +ex_profileur ex_profileur nom m s 0.01 0 0.01 0 +ex_promoteur ex_promoteur nom m s 0.01 0 0.01 0 +ex_propriétaire ex_propriétaire nom s 0.04 0.07 0.04 0.07 +ex_présentateur ex_présentateur nom m s 0 0.07 0 0.07 +ex_président ex_président nom m s 0.71 0 0.6 0 +ex_président ex_président nom m p 0.71 0 0.11 0 +ex_prêtre ex_prêtre nom m s 0.01 0 0.01 0 +ex_putain ex_putain nom f s 0 0.07 0 0.07 +ex_pute ex_pute nom f p 0.01 0 0.01 0 +ex_quincaillerie ex_quincaillerie nom f s 0 0.14 0 0.14 +ex_quincaillier ex_quincaillier nom m s 0 0.27 0 0.27 +ex_rebelle ex_rebelle adj s 0 0.07 0 0.07 +ex_reine ex_reine nom f s 0.02 0 0.02 0 +ex_roi ex_roi nom m s 0.01 0.2 0.01 0.2 +ex_république ex_république nom f p 0.01 0 0.01 0 +ex_résidence ex_résidence nom f s 0.01 0 0.01 0 +ex_révolutionnaire ex_révolutionnaire nom s 0 0.07 0 0.07 +ex_sac ex_sac nom m p 0 0.07 0 0.07 +ex_secrétaire ex_secrétaire nom s 0.07 0 0.07 0 +ex_sergent ex_sergent nom m s 0.02 0.14 0.02 0.07 +ex_sergent ex_sergent nom m p 0.02 0.14 0 0.07 +ex_soldat ex_soldat nom m p 0 0.07 0 0.07 +ex_soliste ex_soliste nom p 0 0.07 0 0.07 +ex_standardiste ex_standardiste nom s 0 0.07 0 0.07 +ex_star ex_star nom f s 0.14 0 0.14 0 +ex_strip_teaseur ex_strip_teaseur nom f s 0 0.07 0 0.07 +ex_super ex_super adj m s 0.14 0 0.14 0 +ex_séminariste ex_séminariste nom s 0 0.07 0 0.07 +ex_sénateur ex_sénateur nom m s 0 0.14 0 0.14 +ex_sévère ex_sévère adj f s 0 0.07 0 0.07 +ex_taulard ex_taulard nom m s 0.38 0.14 0.28 0.07 +ex_taulard ex_taulard nom m p 0.38 0.14 0.1 0.07 +ex_teinturier ex_teinturier nom m s 0.01 0 0.01 0 +ex_tirailleur ex_tirailleur nom m s 0 0.07 0 0.07 +ex_tueur ex_tueur nom m s 0.01 0 0.01 0 +ex_tuteur ex_tuteur nom m s 0.01 0 0.01 0 +ex_union ex_union nom f s 0 0.07 0 0.07 +ex_usine ex_usine nom f s 0.01 0 0.01 0 +ex_vedette ex_vedette nom f s 0.11 0.07 0.11 0.07 +ex_violeur ex_violeur nom m p 0.01 0 0.01 0 +ex_voto ex_voto nom m 0.48 1.69 0.48 1.69 +ex_élève ex_élève nom s 0.02 0.07 0.02 0.07 +ex_épouse ex_épouse nom f s 0.3 0.27 0.28 0.27 +ex_épouse ex_épouse nom f p 0.3 0.27 0.02 0 +ex_équipier ex_équipier nom m s 0.07 0 0.07 0 +exacerba exacerber ver 0.33 1.42 0 0.07 ind:pas:3s; +exacerbant exacerber ver 0.33 1.42 0 0.07 par:pre; +exacerbation exacerbation nom f s 0 0.07 0 0.07 +exacerbe exacerber ver 0.33 1.42 0.03 0.2 imp:pre:2s;ind:pre:3s; +exacerbent exacerber ver 0.33 1.42 0.01 0.2 ind:pre:3p; +exacerber exacerber ver 0.33 1.42 0.08 0.34 inf; +exacerbé exacerbé adj m s 0.19 1.15 0.04 0.47 +exacerbée exacerber ver f s 0.33 1.42 0.14 0.14 par:pas; +exacerbées exacerbé adj f p 0.19 1.15 0.02 0.2 +exacerbés exacerbé adj m p 0.19 1.15 0.12 0 +exact exact adj m s 86.8 38.58 76.66 19.86 +exacte exact adj f s 86.8 38.58 7.55 13.92 +exactement exactement adv 144.62 92.36 144.62 92.36 +exactes exact adj f p 86.8 38.58 1.08 2.97 +exaction exaction nom f s 0.32 1.69 0.01 0 +exactions exaction nom f p 0.32 1.69 0.31 1.69 +exactitude exactitude nom f s 1.26 5 1.26 4.93 +exactitudes exactitude nom f p 1.26 5 0 0.07 +exacts exact adj m p 86.8 38.58 1.51 1.82 +exagère exagérer ver 26.93 22.57 7.3 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exagèrent exagérer ver 26.93 22.57 0.6 0.47 ind:pre:3p; +exagères exagérer ver 26.93 22.57 7.75 1.89 ind:pre:2s; +exagéra exagérer ver 26.93 22.57 0 0.27 ind:pas:3s; +exagérai exagérer ver 26.93 22.57 0 0.07 ind:pas:1s; +exagéraient exagérer ver 26.93 22.57 0.02 0.07 ind:imp:3p; +exagérais exagérer ver 26.93 22.57 0.07 0.54 ind:imp:1s;ind:imp:2s; +exagérait exagérer ver 26.93 22.57 0.14 3.11 ind:imp:3s; +exagérant exagérer ver 26.93 22.57 0.15 0.68 par:pre; +exagération exagération nom f s 0.67 2.36 0.61 1.69 +exagérations exagération nom f p 0.67 2.36 0.06 0.68 +exagérer exagérer ver 26.93 22.57 2.86 3.85 inf; +exagérerais exagérer ver 26.93 22.57 0 0.07 cnd:pre:1s; +exagérerait exagérer ver 26.93 22.57 0 0.07 cnd:pre:3s; +exagérerons exagérer ver 26.93 22.57 0.01 0 ind:fut:1p; +exagérez exagérer ver 26.93 22.57 3.31 1.22 imp:pre:2p;ind:pre:2p; +exagérions exagérer ver 26.93 22.57 0 0.07 ind:imp:1p; +exagérons exagérer ver 26.93 22.57 1.53 1.76 imp:pre:1p;ind:pre:1p; +exagérèrent exagérer ver 26.93 22.57 0 0.07 ind:pas:3p; +exagéré exagérer ver m s 26.93 22.57 2.8 2.3 par:pas; +exagérée exagéré adj f s 2.56 4.53 0.65 1.49 +exagérées exagéré adj f p 2.56 4.53 0.17 0.34 +exagérément exagérément adv 0.26 3.38 0.26 3.38 +exagérés exagérer ver m p 26.93 22.57 0.08 0.14 par:pas; +exalta exalter ver 1.86 13.78 0 0.41 ind:pas:3s; +exaltai exalter ver 1.86 13.78 0 0.07 ind:pas:1s; +exaltaient exalter ver 1.86 13.78 0 1.01 ind:imp:3p; +exaltais exalter ver 1.86 13.78 0 0.34 ind:imp:1s; +exaltait exalter ver 1.86 13.78 0 3.51 ind:imp:3s; +exaltant exaltant adj m s 1.17 6.76 0.81 2.36 +exaltante exaltant adj f s 1.17 6.76 0.27 3.11 +exaltantes exaltant adj f p 1.17 6.76 0.04 0.68 +exaltants exaltant adj m p 1.17 6.76 0.05 0.61 +exaltation exaltation nom f s 0.98 16.22 0.98 15 +exaltations exaltation nom f p 0.98 16.22 0 1.22 +exalte exalter ver 1.86 13.78 0.49 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaltent exalter ver 1.86 13.78 0.12 0.47 ind:pre:3p; +exalter exalter ver 1.86 13.78 0.42 1.96 inf; +exalterait exalter ver 1.86 13.78 0 0.07 cnd:pre:3s; +exaltes exalter ver 1.86 13.78 0 0.14 ind:pre:2s; +exaltons exalter ver 1.86 13.78 0 0.07 ind:pre:1p; +exaltèrent exalter ver 1.86 13.78 0 0.07 ind:pas:3p; +exalté exalté adj m s 1.36 4.26 0.55 1.49 +exaltée exalté adj f s 1.36 4.26 0.55 2.03 +exaltées exalté adj f p 1.36 4.26 0.1 0.27 +exaltés exalté nom m p 0.56 2.23 0.27 0.34 +exam exam nom m s 3.08 0 2.06 0 +examen examen nom m s 47.77 27.16 30.37 18.31 +examens examen nom m p 47.77 27.16 17.4 8.85 +examina examiner ver 36.36 50.68 0.17 9.19 ind:pas:3s; +examinai examiner ver 36.36 50.68 0.03 0.68 ind:pas:1s; +examinaient examiner ver 36.36 50.68 0.14 1.69 ind:imp:3p; +examinais examiner ver 36.36 50.68 0.33 0.88 ind:imp:1s;ind:imp:2s; +examinait examiner ver 36.36 50.68 0.3 5.61 ind:imp:3s; +examinant examiner ver 36.36 50.68 0.64 5 par:pre; +examinateur examinateur nom m s 1.11 1.49 0.95 0.95 +examinateurs examinateur nom m p 1.11 1.49 0.16 0.47 +examinatrice examinateur nom f s 1.11 1.49 0 0.07 +examine examiner ver 36.36 50.68 3.94 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +examinent examiner ver 36.36 50.68 0.66 0.54 ind:pre:3p; +examiner examiner ver 36.36 50.68 16.47 14.19 inf; +examinera examiner ver 36.36 50.68 0.91 0.2 ind:fut:3s; +examinerai examiner ver 36.36 50.68 0.52 0 ind:fut:1s; +examineraient examiner ver 36.36 50.68 0.01 0.2 cnd:pre:3p; +examinerais examiner ver 36.36 50.68 0.03 0 cnd:pre:1s; +examinerait examiner ver 36.36 50.68 0.03 0.14 cnd:pre:3s; +examinerez examiner ver 36.36 50.68 0.04 0 ind:fut:2p; +examineriez examiner ver 36.36 50.68 0.01 0 cnd:pre:2p; +examinerons examiner ver 36.36 50.68 0.32 0.07 ind:fut:1p; +examineront examiner ver 36.36 50.68 0.06 0.07 ind:fut:3p; +examines examiner ver 36.36 50.68 0.12 0.07 ind:pre:2s; +examinez examiner ver 36.36 50.68 2.22 0.07 imp:pre:2p;ind:pre:2p; +examiniez examiner ver 36.36 50.68 0.29 0 ind:imp:2p; +examinions examiner ver 36.36 50.68 0.05 0.14 ind:imp:1p; +examinons examiner ver 36.36 50.68 1.57 0.47 imp:pre:1p;ind:pre:1p; +examinèrent examiner ver 36.36 50.68 0 0.47 ind:pas:3p; +examiné examiner ver m s 36.36 50.68 5.51 3.11 par:pas; +examinée examiner ver f s 36.36 50.68 1.3 0.88 par:pas; +examinées examiner ver f p 36.36 50.68 0.32 0.34 par:pas; +examinés examiner ver m p 36.36 50.68 0.39 0.41 par:pas; +exams exam nom m p 3.08 0 1.01 0 +exarque exarque nom m s 0 0.07 0 0.07 +exaspère exaspérer ver 2.31 19.66 0.93 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaspèrent exaspérer ver 2.31 19.66 0.07 0.54 ind:pre:3p; +exaspéra exaspérer ver 2.31 19.66 0 0.74 ind:pas:3s; +exaspéraient exaspérer ver 2.31 19.66 0 1.15 ind:imp:3p; +exaspérais exaspérer ver 2.31 19.66 0 0.2 ind:imp:1s; +exaspérait exaspérer ver 2.31 19.66 0.11 3.58 ind:imp:3s; +exaspérant exaspérant adj m s 0.64 2.43 0.32 1.15 +exaspérante exaspérant adj f s 0.64 2.43 0.19 1.01 +exaspérantes exaspérant adj f p 0.64 2.43 0.01 0.07 +exaspérants exaspérant adj m p 0.64 2.43 0.12 0.2 +exaspération exaspération nom f s 0.55 4.46 0.55 4.39 +exaspérations exaspération nom f p 0.55 4.46 0 0.07 +exaspérer exaspérer ver 2.31 19.66 0.52 1.96 inf; +exaspérera exaspérer ver 2.31 19.66 0 0.07 ind:fut:3s; +exaspéreraient exaspérer ver 2.31 19.66 0 0.07 cnd:pre:3p; +exaspérerait exaspérer ver 2.31 19.66 0.01 0 cnd:pre:3s; +exaspérez exaspérer ver 2.31 19.66 0.11 0 ind:pre:2p; +exaspérât exaspérer ver 2.31 19.66 0 0.07 sub:imp:3s; +exaspérèrent exaspérer ver 2.31 19.66 0 0.14 ind:pas:3p; +exaspéré exaspérer ver m s 2.31 19.66 0.52 5.34 par:pas; +exaspérée exaspérer ver f s 2.31 19.66 0.02 1.89 par:pas; +exaspérées exaspérer ver f p 2.31 19.66 0 0.47 par:pas; +exaspérés exaspérer ver m p 2.31 19.66 0.01 0.61 par:pas; +exauce exaucer ver 6.8 4.26 1.21 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaucement exaucement nom m s 0 0.07 0 0.07 +exaucent exaucer ver 6.8 4.26 0.03 0 ind:pre:3p; +exaucer exaucer ver 6.8 4.26 1.14 0.81 inf; +exaucera exaucer ver 6.8 4.26 0.16 0 ind:fut:3s; +exaucerai exaucer ver 6.8 4.26 0.17 0 ind:fut:1s; +exaucez exaucer ver 6.8 4.26 0.04 0.14 imp:pre:2p;ind:pre:2p; +exaucé exaucer ver m s 6.8 4.26 2.88 1.15 par:pas; +exaucée exaucer ver f s 6.8 4.26 0.27 0.68 par:pas; +exaucées exaucer ver f p 6.8 4.26 0.3 0.14 par:pas; +exaucés exaucer ver m p 6.8 4.26 0.51 0.41 par:pas; +exauça exaucer ver 6.8 4.26 0 0.07 ind:pas:3s; +exauçai exaucer ver 6.8 4.26 0 0.07 ind:pas:1s; +exauçaient exaucer ver 6.8 4.26 0 0.07 ind:imp:3p; +exauçant exaucer ver 6.8 4.26 0.06 0.07 par:pre; +exauçons exaucer ver 6.8 4.26 0.03 0 imp:pre:1p;ind:pre:1p; +exauçât exaucer ver 6.8 4.26 0 0.07 sub:imp:3s; +excavateur excavateur nom m s 0.04 0.14 0.02 0.07 +excavateurs excavateur nom m p 0.04 0.14 0.02 0 +excavation excavation nom f s 0.17 1.28 0.12 0.95 +excavations excavation nom f p 0.17 1.28 0.04 0.34 +excavatrice excavateur nom f s 0.04 0.14 0 0.07 +excaver excaver ver 0.04 0.07 0.03 0 inf; +excavée excaver ver f s 0.04 0.07 0.01 0 par:pas; +excavées excaver ver f p 0.04 0.07 0 0.07 par:pas; +excella exceller ver 2.38 3.78 0 0.07 ind:pas:3s; +excellaient exceller ver 2.38 3.78 0 0.41 ind:imp:3p; +excellais exceller ver 2.38 3.78 0 0.07 ind:imp:1s; +excellait exceller ver 2.38 3.78 0.08 1.28 ind:imp:3s; +excellant exceller ver 2.38 3.78 0 0.2 par:pre; +excelle exceller ver 2.38 3.78 0.85 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excellemment excellemment adv 0.16 0.07 0.16 0.07 +excellence excellence nom f s 23.29 17.43 22.73 17.09 +excellences excellence nom f p 23.29 17.43 0.56 0.34 +excellent excellent adj m s 76.43 33.92 46.87 16.01 +excellente excellent adj f s 76.43 33.92 21.04 11.76 +excellentes excellent adj f p 76.43 33.92 4.28 2.91 +excellentissime excellentissime adj s 0.01 0.07 0.01 0.07 +excellents excellent adj m p 76.43 33.92 4.25 3.24 +exceller exceller ver 2.38 3.78 0.16 0.41 inf; +excelleraient exceller ver 2.38 3.78 0 0.07 cnd:pre:3p; +excelles exceller ver 2.38 3.78 0.07 0 ind:pre:2s; +excellez exceller ver 2.38 3.78 0.09 0 ind:pre:2p; +excellé exceller ver m s 2.38 3.78 0.31 0 par:pas; +excentrer excentrer ver 0.02 0 0.01 0 inf; +excentricité excentricité nom f s 0.39 1.55 0.29 0.95 +excentricités excentricité nom f p 0.39 1.55 0.1 0.61 +excentrique excentrique adj s 2.34 2.09 1.97 1.35 +excentriques excentrique adj p 2.34 2.09 0.37 0.74 +excentré excentré adj m s 0.05 0 0.04 0 +excentrée excentré adj f s 0.05 0 0.01 0 +exceptais excepter ver 0.72 2.64 0 0.07 ind:imp:1s; +exceptait excepter ver 0.72 2.64 0 0.14 ind:imp:3s; +exceptant excepter ver 0.72 2.64 0 0.14 par:pre; +excepte excepter ver 0.72 2.64 0.23 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excepter excepter ver 0.72 2.64 0 0.41 inf; +exceptes excepter ver 0.72 2.64 0 0.07 ind:pre:2s; +exception exception nom f s 15.97 24.8 14.32 20.41 +exceptionnel exceptionnel adj m s 16.68 20.07 9.72 6.89 +exceptionnelle exceptionnel adj f s 16.68 20.07 3.47 8.24 +exceptionnellement exceptionnellement adv 1.03 4.19 1.03 4.19 +exceptionnelles exceptionnel adj f p 16.68 20.07 1.78 3.04 +exceptionnels exceptionnel adj m p 16.68 20.07 1.71 1.89 +exceptions exception nom f p 15.97 24.8 1.65 4.39 +excepté excepté pre 5.59 4.05 5.59 4.05 +exceptée excepté adj f s 0.34 0.68 0.24 0.27 +exceptées excepté adj f p 0.34 0.68 0.01 0 +exceptés excepté adj m p 0.34 0.68 0.04 0.2 +excessif excessif adj m s 4.79 15.54 2.05 5.68 +excessifs excessif adj m p 4.79 15.54 0.35 1.28 +excessive excessif adj f s 4.79 15.54 2.29 7.09 +excessivement excessivement adv 1.14 3.11 1.14 3.11 +excessives excessif adj f p 4.79 15.54 0.09 1.49 +excipent exciper ver 0 0.27 0 0.07 ind:pre:3p; +exciper exciper ver 0 0.27 0 0.2 inf; +excisant exciser ver 0.16 0.41 0.02 0 par:pre; +excise exciser ver 0.16 0.41 0.05 0 ind:pre:1s;ind:pre:3s; +exciser exciser ver 0.16 0.41 0.05 0.27 inf; +exciseuse exciseur nom f s 0 0.2 0 0.14 +exciseuses exciseur nom f p 0 0.2 0 0.07 +excision excision nom f s 0.08 0.81 0.08 0.81 +excisé exciser ver m s 0.16 0.41 0.01 0 par:pas; +excisée exciser ver f s 0.16 0.41 0.01 0 par:pas; +excisées exciser ver f p 0.16 0.41 0.01 0.14 par:pas; +excita exciter ver 28.01 26.55 0 0.61 ind:pas:3s; +excitable excitable adj m s 0.03 0 0.03 0 +excitaient exciter ver 28.01 26.55 0.17 1.55 ind:imp:3p; +excitais exciter ver 28.01 26.55 0.03 0.07 ind:imp:1s;ind:imp:2s; +excitait exciter ver 28.01 26.55 0.79 4.8 ind:imp:3s; +excitant excitant adj m s 16.14 7.36 12.44 3.92 +excitante excitant adj f s 16.14 7.36 2.83 2.3 +excitantes excitant adj f p 16.14 7.36 0.6 0.47 +excitants excitant adj m p 16.14 7.36 0.27 0.68 +excitation excitation nom f s 3.81 16.69 3.81 16.55 +excitations excitation nom f p 3.81 16.69 0 0.14 +excite exciter ver 28.01 26.55 10.38 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excitent exciter ver 28.01 26.55 1.28 1.15 ind:pre:3p; +exciter exciter ver 28.01 26.55 2.6 5.81 inf; +excitera exciter ver 28.01 26.55 0.15 0.2 ind:fut:3s; +exciterait exciter ver 28.01 26.55 0.81 0.34 cnd:pre:3s; +exciterez exciter ver 28.01 26.55 0 0.07 ind:fut:2p; +exciteriez exciter ver 28.01 26.55 0 0.07 cnd:pre:2p; +exciteront exciter ver 28.01 26.55 0.02 0.07 ind:fut:3p; +excites exciter ver 28.01 26.55 1.59 0.47 ind:pre:2s; +exciteur exciteur nom m s 0 0.07 0 0.07 +excitez exciter ver 28.01 26.55 0.64 0.2 imp:pre:2p;ind:pre:2p; +excitions exciter ver 28.01 26.55 0 0.07 ind:imp:1p; +excitons exciter ver 28.01 26.55 0.01 0.07 imp:pre:1p;ind:pre:1p;; +excitèrent exciter ver 28.01 26.55 0 0.14 ind:pas:3p; +excité exciter ver m s 28.01 26.55 5.17 2.36 par:pas; +excitée exciter ver f s 28.01 26.55 3.17 1.15 par:pas; +excitées excité adj f p 6.88 6.96 0.1 0.47 +excités exciter ver m p 28.01 26.55 0.86 0.74 par:pas; +exclama exclamer ver 0.26 18.99 0.01 8.04 ind:pas:3s; +exclamai exclamer ver 0.26 18.99 0 0.2 ind:pas:1s; +exclamaient exclamer ver 0.26 18.99 0.01 0.54 ind:imp:3p; +exclamais exclamer ver 0.26 18.99 0 0.07 ind:imp:1s; +exclamait exclamer ver 0.26 18.99 0 1.62 ind:imp:3s; +exclamant exclamer ver 0.26 18.99 0.01 0.47 par:pre; +exclamatif exclamatif adj m s 0.01 0.14 0 0.07 +exclamation exclamation nom f s 1.27 11.76 1.11 5.27 +exclamations exclamation nom f p 1.27 11.76 0.16 6.49 +exclamative exclamatif adj f s 0.01 0.14 0.01 0.07 +exclame exclamer ver 0.26 18.99 0.03 3.72 ind:pre:3s; +exclament exclamer ver 0.26 18.99 0.14 0.34 ind:pre:3p; +exclamer exclamer ver 0.26 18.99 0.03 1.49 inf; +exclameraient exclamer ver 0.26 18.99 0 0.07 cnd:pre:3p; +exclamerait exclamer ver 0.26 18.99 0 0.14 cnd:pre:3s; +exclamâmes exclamer ver 0.26 18.99 0 0.14 ind:pas:1p; +exclamèrent exclamer ver 0.26 18.99 0 0.27 ind:pas:3p; +exclamé exclamer ver m s 0.26 18.99 0.02 1.08 par:pas; +exclamée exclamer ver f s 0.26 18.99 0.01 0.81 par:pas; +exclu exclure ver m s 11.32 16.22 3.21 3.31 par:pas; +excluaient exclure ver 11.32 16.22 0 0.81 ind:imp:3p; +excluais exclure ver 11.32 16.22 0.02 0.2 ind:imp:1s; +excluait exclure ver 11.32 16.22 0.02 2.77 ind:imp:3s; +excluant exclure ver 11.32 16.22 0.12 1.15 par:pre; +exclue exclure ver f s 11.32 16.22 1.1 1.62 par:pas;sub:pre:1s;sub:pre:3s; +excluent exclure ver 11.32 16.22 0.54 0.2 ind:pre:3p; +exclues exclure ver f p 11.32 16.22 0.41 0.14 par:pas;sub:pre:2s; +excluez exclure ver 11.32 16.22 0.16 0 imp:pre:2p;ind:pre:2p; +excluions exclure ver 11.32 16.22 0 0.07 ind:imp:1p; +excluons exclure ver 11.32 16.22 0.19 0 imp:pre:1p;ind:pre:1p; +exclura exclure ver 11.32 16.22 0.01 0.14 ind:fut:3s; +exclurais exclure ver 11.32 16.22 0.23 0 cnd:pre:1s; +exclure exclure ver 11.32 16.22 2.17 2.5 inf; +exclus exclure ver m p 11.32 16.22 1.14 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:2s;par:pas; +exclusif exclusif adj m s 3.35 7.43 1.47 3.38 +exclusifs exclusif adj m p 3.35 7.43 0.46 0.2 +exclusion exclusion nom f s 1.02 3.92 1.02 3.72 +exclusions exclusion nom f p 1.02 3.92 0 0.2 +exclusive exclusif adj f s 3.35 7.43 1.32 2.97 +exclusivement exclusivement adv 2.05 10.34 2.05 10.34 +exclusives exclusif adj f p 3.35 7.43 0.1 0.88 +exclusivité exclusivité nom f s 3.21 2.16 3.06 2.03 +exclusivités exclusivité nom f p 3.21 2.16 0.15 0.14 +exclut exclure ver 11.32 16.22 2.02 1.62 ind:pre:3s;ind:pas:3s; +exclût exclure ver 11.32 16.22 0 0.07 sub:imp:3s; +excommuniaient excommunier ver 0.8 1.82 0 0.07 ind:imp:3p; +excommuniait excommunier ver 0.8 1.82 0 0.07 ind:imp:3s; +excommuniant excommunier ver 0.8 1.82 0 0.07 par:pre; +excommunication excommunication nom f s 0.82 1.28 0.72 1.15 +excommunications excommunication nom f p 0.82 1.28 0.1 0.14 +excommunie excommunier ver 0.8 1.82 0.11 0.14 ind:pre:1s;ind:pre:3s; +excommunient excommunier ver 0.8 1.82 0 0.07 ind:pre:3p; +excommunier excommunier ver 0.8 1.82 0.19 0.34 inf; +excommuniez excommunier ver 0.8 1.82 0 0.07 imp:pre:2p; +excommunié excommunier ver m s 0.8 1.82 0.33 0.68 par:pas; +excommuniée excommunier ver f s 0.8 1.82 0.05 0 par:pas; +excommuniés excommunier ver m p 0.8 1.82 0.12 0.34 par:pas; +excoriée excorier ver f s 0 0.14 0 0.07 par:pas; +excoriées excorier ver f p 0 0.14 0 0.07 par:pas; +excroissance excroissance nom f s 0.38 1.55 0.24 0.81 +excroissances excroissance nom f p 0.38 1.55 0.14 0.74 +excrément excrément nom m s 1.83 3.99 0.36 0.61 +excrémentiel excrémentiel adj m s 0 0.14 0 0.07 +excrémentielle excrémentiel adj f s 0 0.14 0 0.07 +excréments excrément nom m p 1.83 3.99 1.48 3.38 +excréter excréter ver 0.04 0.07 0.02 0 inf; +excrétera excréter ver 0.04 0.07 0.01 0 ind:fut:3s; +excrétion excrétion nom f s 0.06 0.14 0.01 0 +excrétions excrétion nom f p 0.06 0.14 0.04 0.14 +excrété excréter ver m s 0.04 0.07 0.01 0.07 par:pas; +excursion excursion nom f s 3.67 4.59 3.09 3.04 +excursionnaient excursionner ver 0 0.2 0 0.07 ind:imp:3p; +excursionnant excursionner ver 0 0.2 0 0.07 par:pre; +excursionner excursionner ver 0 0.2 0 0.07 inf; +excursionniste excursionniste nom s 0.04 0.14 0.04 0 +excursionnistes excursionniste nom p 0.04 0.14 0 0.14 +excursions excursion nom f p 3.67 4.59 0.58 1.55 +excusa excuser ver 399.19 61.82 0.02 3.45 ind:pas:3s; +excusable excusable adj s 0.4 1.62 0.39 1.55 +excusables excusable adj m p 0.4 1.62 0.01 0.07 +excusai excuser ver 399.19 61.82 0 0.34 ind:pas:1s; +excusaient excuser ver 399.19 61.82 0 0.47 ind:imp:3p; +excusais excuser ver 399.19 61.82 0.11 0.14 ind:imp:1s;ind:imp:2s; +excusait excuser ver 399.19 61.82 0.16 3.45 ind:imp:3s; +excusant excuser ver 399.19 61.82 0.21 3.18 par:pre; +excuse excuser ver 399.19 61.82 111.82 14.8 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +excusent excuser ver 399.19 61.82 0.3 0.34 ind:pre:1p;ind:pre:3p; +excuser excuser ver 399.19 61.82 43.01 12.03 ind:pre:2p;inf; +excusera excuser ver 399.19 61.82 0.41 0.41 ind:fut:3s; +excuserai excuser ver 399.19 61.82 0.49 0.14 ind:fut:1s; +excuserais excuser ver 399.19 61.82 0.09 0 cnd:pre:1s;cnd:pre:2s; +excuserait excuser ver 399.19 61.82 0.06 0.27 cnd:pre:3s; +excuseras excuser ver 399.19 61.82 0.8 1.15 ind:fut:2s; +excuserez excuser ver 399.19 61.82 2.34 1.28 ind:fut:2p; +excuseriez excuser ver 399.19 61.82 0.02 0 cnd:pre:2p; +excuserons excuser ver 399.19 61.82 0.01 0.14 ind:fut:1p; +excuseront excuser ver 399.19 61.82 0.18 0 ind:fut:3p; +excuses excuse nom f p 61.58 23.51 32.15 12.23 +excusez excuser ver 399.19 61.82 230.25 16.08 imp:pre:2p;ind:pre:2p; +excusiez excuser ver 399.19 61.82 0.09 0.07 ind:imp:2p; +excusions excuser ver 399.19 61.82 0 0.07 ind:imp:1p; +excusons excuser ver 399.19 61.82 0.48 0.14 imp:pre:1p;ind:pre:1p; +excusâmes excuser ver 399.19 61.82 0 0.07 ind:pas:1p; +excusât excuser ver 399.19 61.82 0 0.41 sub:imp:3s; +excusèrent excuser ver 399.19 61.82 0 0.2 ind:pas:3p; +excusé excuser ver m s 399.19 61.82 4.25 1.89 par:pas; +excusée excuser ver f s 399.19 61.82 0.72 0.47 par:pas; +excusées excuser ver f p 399.19 61.82 0.04 0.07 par:pas; +excusés excuser ver m p 399.19 61.82 0.22 0.2 par:pas; +excède excéder ver 0.65 9.8 0.1 0.34 ind:pre:3s; +excèdent excéder ver 0.65 9.8 0.05 0.2 ind:pre:3p; +excès excès nom m 7.67 22.23 7.67 22.23 +excédaient excéder ver 0.65 9.8 0 0.54 ind:imp:3p; +excédais excéder ver 0.65 9.8 0 0.07 ind:imp:1s; +excédait excéder ver 0.65 9.8 0.02 0.41 ind:imp:3s; +excédant excédant adj m s 0.13 0.14 0.13 0.14 +excédent excédent nom m s 0.87 0.74 0.76 0.54 +excédentaire excédentaire adj m s 0.06 0.2 0.04 0.14 +excédentaires excédentaire adj m p 0.06 0.2 0.01 0.07 +excédents excédent nom m p 0.87 0.74 0.11 0.2 +excéder excéder ver 0.65 9.8 0.16 0.27 inf; +excédera excéder ver 0.65 9.8 0.01 0 ind:fut:3s; +excédât excéder ver 0.65 9.8 0 0.07 sub:imp:3s; +excédé excéder ver m s 0.65 9.8 0.21 5.2 par:pas; +excédée excéder ver f s 0.65 9.8 0.03 1.89 par:pas; +excédées excéder ver f p 0.65 9.8 0 0.07 par:pas; +excédés excéder ver m p 0.65 9.8 0.02 0.2 par:pas; +exeat exeat nom m 0.01 0.27 0.01 0.27 +exemplaire exemplaire adj s 4.42 9.12 4.06 7.57 +exemplairement exemplairement adv 0.1 0.07 0.1 0.07 +exemplaires exemplaire nom m p 6.32 14.26 2.52 7.57 +exemplarité exemplarité nom f s 0.01 0 0.01 0 +exemple exemple nom m s 93.2 126.62 91.83 119.19 +exemples exemple nom m p 93.2 126.62 1.38 7.43 +exemplifier exemplifier ver 0.1 0 0.1 0 inf; +exempt exempt adj m s 0.28 1.96 0.12 1.15 +exempte exempt adj f s 0.28 1.96 0.09 0.27 +exempter exempter ver 1.16 0.54 0.22 0.07 inf; +exemptes exempt adj f p 0.28 1.96 0.02 0.27 +exemptiez exempter ver 1.16 0.54 0.01 0 ind:imp:2p; +exemption exemption nom f s 0.6 0.68 0.54 0.2 +exemptions exemption nom f p 0.6 0.68 0.06 0.47 +exempts exempt adj m p 0.28 1.96 0.05 0.27 +exempté exempter ver m s 1.16 0.54 0.52 0.14 par:pas; +exemptée exempter ver f s 1.16 0.54 0.05 0.14 par:pas; +exemptés exempter ver m p 1.16 0.54 0.28 0 par:pas; +exequatur exequatur nom m 0 0.07 0 0.07 +exerce exercer ver 14.53 44.26 3.82 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exercent exercer ver 14.53 44.26 0.6 1.55 ind:pre:3p; +exercer exercer ver 14.53 44.26 5.67 14.39 inf; +exercera exercer ver 14.53 44.26 0.07 0.2 ind:fut:3s; +exercerai exercer ver 14.53 44.26 0.1 0.14 ind:fut:1s; +exerceraient exercer ver 14.53 44.26 0 0.14 cnd:pre:3p; +exercerais exercer ver 14.53 44.26 0.01 0.07 cnd:pre:1s; +exercerait exercer ver 14.53 44.26 0.05 0.41 cnd:pre:3s; +exercerez exercer ver 14.53 44.26 0.14 0.14 ind:fut:2p; +exercerons exercer ver 14.53 44.26 0.01 0.07 ind:fut:1p; +exerceront exercer ver 14.53 44.26 0.02 0.14 ind:fut:3p; +exerces exercer ver 14.53 44.26 0.2 0.14 ind:pre:2s; +exercez exercer ver 14.53 44.26 0.86 0.27 imp:pre:2p;ind:pre:2p; +exercice exercice nom m s 22.66 27.36 17.54 17.5 +exercices exercice nom m p 22.66 27.36 5.12 9.86 +exerciez exercer ver 14.53 44.26 0.24 0.07 ind:imp:2p; +exercèrent exercer ver 14.53 44.26 0 0.07 ind:pas:3p; +exercé exercer ver m s 14.53 44.26 0.96 2.97 par:pas; +exercée exercer ver f s 14.53 44.26 0.56 2.03 par:pas; +exercées exercer ver f p 14.53 44.26 0.05 0.47 par:pas; +exercés exercer ver m p 14.53 44.26 0.2 0.68 par:pas; +exergue exergue nom m s 0.22 0.68 0.22 0.68 +exerça exercer ver 14.53 44.26 0.02 0.81 ind:pas:3s; +exerçai exercer ver 14.53 44.26 0.01 0.34 ind:pas:1s; +exerçaient exercer ver 14.53 44.26 0.04 1.89 ind:imp:3p; +exerçais exercer ver 14.53 44.26 0.12 0.74 ind:imp:1s;ind:imp:2s; +exerçait exercer ver 14.53 44.26 0.31 7.03 ind:imp:3s; +exerçant exercer ver 14.53 44.26 0.44 1.89 par:pre; +exerçassent exercer ver 14.53 44.26 0 0.07 sub:imp:3p; +exerçons exercer ver 14.53 44.26 0.04 0.2 imp:pre:1p;ind:pre:1p; +exerçât exercer ver 14.53 44.26 0 0.68 sub:imp:3s; +exfiltration exfiltration nom f s 0.04 0.07 0.04 0.07 +exfiltrer exfiltrer ver 0.05 0 0.03 0 inf; +exfiltré exfiltrer ver m s 0.05 0 0.02 0 par:pas; +exfoliant exfoliant adj m s 0.08 0 0.08 0 +exfolier exfolier ver 0.01 0.14 0.01 0 inf; +exfolions exfolier ver 0.01 0.14 0 0.07 ind:pre:1p; +exfoliée exfolier ver f s 0.01 0.14 0 0.07 par:pas; +exhala exhaler ver 0.8 10.81 0.03 0.81 ind:pas:3s; +exhalaient exhaler ver 0.8 10.81 0 0.47 ind:imp:3p; +exhalaison exhalaison nom f s 0.02 1.69 0 0.88 +exhalaisons exhalaison nom f p 0.02 1.69 0.02 0.81 +exhalait exhaler ver 0.8 10.81 0.16 2.5 ind:imp:3s; +exhalant exhaler ver 0.8 10.81 0 2.64 par:pre; +exhalation exhalation nom f s 0.01 0 0.01 0 +exhale exhaler ver 0.8 10.81 0.32 1.76 imp:pre:2s;ind:pre:3s; +exhalent exhaler ver 0.8 10.81 0.01 0.47 ind:pre:3p; +exhaler exhaler ver 0.8 10.81 0.27 1.08 inf; +exhaleraient exhaler ver 0.8 10.81 0 0.07 cnd:pre:3p; +exhalâmes exhaler ver 0.8 10.81 0 0.07 ind:pas:1p; +exhalât exhaler ver 0.8 10.81 0 0.14 sub:imp:3s; +exhalé exhaler ver m s 0.8 10.81 0 0.47 par:pas; +exhalée exhaler ver f s 0.8 10.81 0 0.34 par:pas; +exhaussait exhausser ver 0.03 0.47 0 0.07 ind:imp:3s; +exhausse exhausser ver 0.03 0.47 0 0.2 ind:pre:3s; +exhaussement exhaussement nom m s 0 0.07 0 0.07 +exhausser exhausser ver 0.03 0.47 0 0.07 inf; +exhaussé exhausser ver m s 0.03 0.47 0.01 0.07 par:pas; +exhaussée exhausser ver f s 0.03 0.47 0.01 0.07 par:pas; +exhaustif exhaustif adj m s 0.61 0.54 0.3 0.41 +exhaustifs exhaustif adj m p 0.61 0.54 0.02 0 +exhaustion exhaustion nom f s 0 0.34 0 0.34 +exhaustive exhaustif adj f s 0.61 0.54 0.29 0.14 +exhaustivement exhaustivement adv 0 0.14 0 0.14 +exhaustivité exhaustivité nom f s 0 0.07 0 0.07 +exhiba exhiber ver 2.87 13.31 0 0.61 ind:pas:3s; +exhibai exhiber ver 2.87 13.31 0 0.14 ind:pas:1s; +exhibaient exhiber ver 2.87 13.31 0.01 0.61 ind:imp:3p; +exhibais exhiber ver 2.87 13.31 0.03 0 ind:imp:2s; +exhibait exhiber ver 2.87 13.31 0.16 2.03 ind:imp:3s; +exhibant exhiber ver 2.87 13.31 0.16 1.69 par:pre; +exhibe exhiber ver 2.87 13.31 0.58 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exhibent exhiber ver 2.87 13.31 0.05 0.74 ind:pre:3p; +exhiber exhiber ver 2.87 13.31 0.98 3.78 inf; +exhibera exhiber ver 2.87 13.31 0.2 0.07 ind:fut:3s; +exhiberait exhiber ver 2.87 13.31 0.01 0.14 cnd:pre:3s; +exhiberas exhiber ver 2.87 13.31 0 0.07 ind:fut:2s; +exhibez exhiber ver 2.87 13.31 0.04 0 imp:pre:2p;ind:pre:2p; +exhibions exhiber ver 2.87 13.31 0.01 0.07 ind:imp:1p; +exhibition exhibition nom f s 0.44 2.77 0.36 2.09 +exhibitionnisme exhibitionnisme nom m s 0.2 0.81 0.2 0.81 +exhibitionniste exhibitionniste nom s 1.08 1.55 0.85 1.01 +exhibitionnistes exhibitionniste nom p 1.08 1.55 0.23 0.54 +exhibitions exhibition nom f p 0.44 2.77 0.08 0.68 +exhibé exhiber ver m s 2.87 13.31 0.3 1.15 par:pas; +exhibée exhiber ver f s 2.87 13.31 0.32 0.2 par:pas; +exhibées exhiber ver f p 2.87 13.31 0 0.2 par:pas; +exhibés exhiber ver m p 2.87 13.31 0.02 0.34 par:pas; +exhorta exhorter ver 0.66 3.51 0 0.68 ind:pas:3s; +exhortai exhorter ver 0.66 3.51 0 0.07 ind:pas:1s; +exhortaient exhorter ver 0.66 3.51 0.02 0.07 ind:imp:3p; +exhortais exhorter ver 0.66 3.51 0 0.34 ind:imp:1s; +exhortait exhorter ver 0.66 3.51 0.01 0.54 ind:imp:3s; +exhortant exhorter ver 0.66 3.51 0.01 0.27 par:pre; +exhortation exhortation nom f s 0.13 1.69 0.02 0.47 +exhortations exhortation nom f p 0.13 1.69 0.11 1.22 +exhorte exhorter ver 0.66 3.51 0.34 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exhortent exhorter ver 0.66 3.51 0.01 0.14 ind:pre:3p; +exhorter exhorter ver 0.66 3.51 0.06 0.54 inf; +exhortions exhorter ver 0.66 3.51 0 0.07 ind:imp:1p; +exhortons exhorter ver 0.66 3.51 0.04 0 ind:pre:1p; +exhortâmes exhorter ver 0.66 3.51 0 0.07 ind:pas:1p; +exhorté exhorter ver m s 0.66 3.51 0.17 0.07 par:pas; +exhuma exhumer ver 1.62 3.85 0 0.14 ind:pas:3s; +exhumaient exhumer ver 1.62 3.85 0 0.2 ind:imp:3p; +exhumais exhumer ver 1.62 3.85 0 0.07 ind:imp:1s; +exhumait exhumer ver 1.62 3.85 0.02 0.07 ind:imp:3s; +exhumant exhumer ver 1.62 3.85 0.01 0.14 par:pre; +exhumation exhumation nom f s 0.3 0.27 0.3 0.27 +exhume exhumer ver 1.62 3.85 0.07 0.34 imp:pre:2s;ind:pre:3s; +exhumer exhumer ver 1.62 3.85 0.81 0.88 inf; +exhumera exhumer ver 1.62 3.85 0.02 0.07 ind:fut:3s; +exhumeront exhumer ver 1.62 3.85 0 0.07 ind:fut:3p; +exhumé exhumer ver m s 1.62 3.85 0.41 0.95 par:pas; +exhumée exhumer ver f s 1.62 3.85 0.04 0.27 par:pas; +exhumées exhumer ver f p 1.62 3.85 0.01 0.2 par:pas; +exhumés exhumer ver m p 1.62 3.85 0.22 0.47 par:pas; +exige exiger ver 34.96 60.07 18.93 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exigea exiger ver 34.96 60.07 0.05 1.96 ind:pas:3s; +exigeai exiger ver 34.96 60.07 0 0.34 ind:pas:1s; +exigeaient exiger ver 34.96 60.07 0.05 3.04 ind:imp:3p; +exigeais exiger ver 34.96 60.07 0.04 0.41 ind:imp:1s; +exigeait exiger ver 34.96 60.07 1.21 13.11 ind:imp:3s; +exigeant exigeant adj m s 3.79 7.84 1.77 2.97 +exigeante exigeant adj f s 3.79 7.84 1.59 3.18 +exigeantes exigeant adj f p 3.79 7.84 0.14 0.41 +exigeants exigeant adj m p 3.79 7.84 0.28 1.28 +exigeassent exiger ver 34.96 60.07 0 0.14 sub:imp:3p; +exigence exigence nom f s 5.17 17.36 1.22 5.14 +exigences exigence nom f p 5.17 17.36 3.96 12.23 +exigent exiger ver 34.96 60.07 2.8 2.97 ind:pre:3p; +exigeons exiger ver 34.96 60.07 1.21 0.14 imp:pre:1p;ind:pre:1p; +exiger exiger ver 34.96 60.07 3.13 8.11 inf; +exigera exiger ver 34.96 60.07 0.26 0.88 ind:fut:3s; +exigerai exiger ver 34.96 60.07 0.25 0.2 ind:fut:1s; +exigeraient exiger ver 34.96 60.07 0 0.27 cnd:pre:3p; +exigerais exiger ver 34.96 60.07 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +exigerait exiger ver 34.96 60.07 0.14 1.01 cnd:pre:3s; +exigerez exiger ver 34.96 60.07 0.03 0.14 ind:fut:2p; +exigeriez exiger ver 34.96 60.07 0.02 0 cnd:pre:2p; +exigerions exiger ver 34.96 60.07 0.01 0 cnd:pre:1p; +exigerons exiger ver 34.96 60.07 0.13 0 ind:fut:1p; +exigeront exiger ver 34.96 60.07 0.21 0.14 ind:fut:3p; +exiges exiger ver 34.96 60.07 0.61 0.2 ind:pre:2s; +exigez exiger ver 34.96 60.07 0.61 0.41 imp:pre:2p;ind:pre:2p; +exigible exigible adj m s 0.01 0.07 0.01 0.07 +exigiez exiger ver 34.96 60.07 0.16 0 ind:imp:2p; +exigu exigu adj m s 0.53 4.66 0.38 1.89 +exigus exigu adj m p 0.53 4.66 0 0.41 +exiguë exigu adj f s 0.53 4.66 0.12 1.69 +exiguës exigu adj f p 0.53 4.66 0.02 0.68 +exiguïté exiguïté nom f s 0 1.76 0 1.76 +exigèrent exiger ver 34.96 60.07 0 0.14 ind:pas:3p; +exigé exiger ver m s 34.96 60.07 3.58 6.49 par:pas; +exigée exiger ver f s 34.96 60.07 0.56 1.01 par:pas; +exigées exiger ver f p 34.96 60.07 0.17 0.07 par:pas; +exigés exiger ver m p 34.96 60.07 0.01 0.47 par:pas; +exil exil nom m s 6.04 13.99 5.91 13.58 +exila exiler ver 2.41 4.32 0.04 0.2 ind:pas:3s; +exilaient exiler ver 2.41 4.32 0 0.07 ind:imp:3p; +exilait exiler ver 2.41 4.32 0 0.14 ind:imp:3s; +exilant exiler ver 2.41 4.32 0 0.07 par:pre; +exile exiler ver 2.41 4.32 0.43 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exilent exiler ver 2.41 4.32 0 0.07 ind:pre:3p; +exiler exiler ver 2.41 4.32 0.73 0.61 inf; +exiles exiler ver 2.41 4.32 0.14 0 ind:pre:2s; +exilez exiler ver 2.41 4.32 0.01 0 imp:pre:2p; +exils exil nom m p 6.04 13.99 0.14 0.41 +exilât exiler ver 2.41 4.32 0 0.07 sub:imp:3s; +exilé exilé nom m s 2.23 4.05 0.88 1.62 +exilée exilé nom f s 2.23 4.05 0.25 0.34 +exilées exilé adj f p 0.5 1.89 0 0.14 +exilés exilé nom m p 2.23 4.05 1.12 2.03 +exista exister ver 136.24 148.18 0 0.41 ind:pas:3s; +existai exister ver 136.24 148.18 0 0.07 ind:pas:1s; +existaient exister ver 136.24 148.18 1.88 7.16 ind:imp:3p; +existais exister ver 136.24 148.18 2.05 2.36 ind:imp:1s;ind:imp:2s; +existait exister ver 136.24 148.18 9.58 32.57 ind:imp:3s; +existant existant adj m s 1.43 2.03 0.19 0.54 +existante existant adj f s 1.43 2.03 0.48 0.41 +existantes existant adj f p 1.43 2.03 0.23 0.54 +existants existant adj m p 1.43 2.03 0.52 0.54 +existe exister ver 136.24 148.18 85.86 57.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +existence existence nom f s 24.98 97.36 24.66 93.85 +existences existence nom f p 24.98 97.36 0.33 3.51 +existent exister ver 136.24 148.18 10.74 8.24 ind:pre:3p; +existentialisme existentialisme nom m s 0.07 0.61 0.07 0.61 +existentialiste existentialiste adj m s 0.06 0.2 0.05 0.07 +existentialistes existentialiste nom p 0.03 0.34 0.02 0.27 +existentiel existentiel adj m s 0.35 0.88 0.14 0.2 +existentielle existentiel adj f s 0.35 0.88 0.13 0.54 +existentielles existentiel adj f p 0.35 0.88 0.08 0.14 +exister exister ver 136.24 148.18 8.62 20.2 inf; +existera exister ver 136.24 148.18 1.52 0.41 ind:fut:3s; +existerai exister ver 136.24 148.18 0.05 0.2 ind:fut:1s; +existeraient exister ver 136.24 148.18 0.07 0.2 cnd:pre:3p; +existerais exister ver 136.24 148.18 0.47 0.14 cnd:pre:1s;cnd:pre:2s; +existerait exister ver 136.24 148.18 0.97 0.95 cnd:pre:3s; +existeras exister ver 136.24 148.18 0.2 0 ind:fut:2s; +existeriez exister ver 136.24 148.18 0.11 0 cnd:pre:2p; +existerions exister ver 136.24 148.18 0.15 0 cnd:pre:1p; +existerons exister ver 136.24 148.18 0.03 0 ind:fut:1p; +existeront exister ver 136.24 148.18 0.15 0.2 ind:fut:3p; +existes exister ver 136.24 148.18 3.56 1.08 ind:pre:2s;sub:pre:2s; +existez exister ver 136.24 148.18 1.46 0.41 imp:pre:2p;ind:pre:2p; +existiez exister ver 136.24 148.18 0.41 0.14 ind:imp:2p; +existions exister ver 136.24 148.18 0.12 0.27 ind:imp:1p; +existons exister ver 136.24 148.18 0.6 0.41 imp:pre:1p;ind:pre:1p; +existât exister ver 136.24 148.18 0 1.55 sub:imp:3s; +existèrent exister ver 136.24 148.18 0 0.27 ind:pas:3p; +existé exister ver m s 136.24 148.18 7.42 11.42 par:pas; +existée exister ver f s 136.24 148.18 0.03 0 par:pas; +existés exister ver m p 136.24 148.18 0.04 0 par:pas; +exit exit ver 0.2 0.27 0.2 0.27 inf; +exo exo nom m s 0.11 0.27 0.04 0.2 +exobiologie exobiologie nom f s 0.02 0 0.02 0 +exocet exocet nom m s 0.01 0 0.01 0 +exode exode nom m s 0.43 4.53 0.42 4.32 +exodes exode nom m p 0.43 4.53 0.01 0.2 +exogamie exogamie nom f s 0 0.41 0 0.41 +exogamique exogamique adj m s 0 0.27 0 0.27 +exogène exogène adj f s 0.01 0 0.01 0 +exonérait exonérer ver 0.08 0.2 0 0.07 ind:imp:3s; +exonération exonération nom f s 0.25 0 0.25 0 +exonérer exonérer ver 0.08 0.2 0.06 0.07 inf; +exonérera exonérer ver 0.08 0.2 0.01 0 ind:fut:3s; +exonérées exonérer ver f p 0.08 0.2 0.01 0.07 par:pas; +exophtalmique exophtalmique adj m s 0 0.07 0 0.07 +exorable exorable adj s 0 0.14 0 0.14 +exorbitaient exorbiter ver 0 0.81 0 0.2 ind:imp:3p; +exorbitait exorbiter ver 0 0.81 0 0.07 ind:imp:3s; +exorbitant exorbitant adj m s 0.83 2.3 0.53 0.54 +exorbitante exorbitant adj f s 0.83 2.3 0.05 1.08 +exorbitantes exorbitant adj f p 0.83 2.3 0.05 0.47 +exorbitants exorbitant adj m p 0.83 2.3 0.21 0.2 +exorbiter exorbiter ver 0 0.81 0 0.07 inf; +exorbité exorbité adj m s 0.36 2.84 0 0.27 +exorbitées exorbité adj f p 0.36 2.84 0 0.14 +exorbités exorbité adj m p 0.36 2.84 0.36 2.43 +exorcisa exorciser ver 2 2.7 0 0.14 ind:pas:3s; +exorcisait exorciser ver 2 2.7 0.01 0.14 ind:imp:3s; +exorcisant exorciser ver 2 2.7 0.02 0 par:pre; +exorcise exorciser ver 2 2.7 0.85 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exorcisent exorciser ver 2 2.7 0.02 0 ind:pre:3p; +exorciser exorciser ver 2 2.7 0.48 1.35 inf; +exorciserait exorciser ver 2 2.7 0 0.07 cnd:pre:3s; +exorcisez exorciser ver 2 2.7 0.01 0.07 imp:pre:2p;ind:pre:2p; +exorcisions exorciser ver 2 2.7 0.01 0.07 ind:imp:1p; +exorcisme exorcisme nom m s 2.09 1.82 1.86 1.49 +exorcismes exorcisme nom m p 2.09 1.82 0.23 0.34 +exorciste exorciste nom s 0.6 0.14 0.57 0.07 +exorcistes exorciste nom p 0.6 0.14 0.03 0.07 +exorcisé exorciser ver m s 2 2.7 0.43 0.54 par:pas; +exorcisée exorciser ver f s 2 2.7 0.16 0.07 par:pas; +exorcisées exorciser ver f p 2 2.7 0 0.07 par:pas; +exorcisés exorciser ver m p 2 2.7 0 0.07 par:pas; +exorde exorde nom m s 0.01 0.54 0.01 0.47 +exordes exorde nom m p 0.01 0.54 0 0.07 +exos exo nom m p 0.11 0.27 0.07 0.07 +exosphère exosphère nom f s 0.01 0 0.01 0 +exosquelette exosquelette nom m s 0.36 0 0.36 0 +exostose exostose nom f s 0.03 0 0.02 0 +exostoses exostose nom f p 0.03 0 0.01 0 +exothermique exothermique adj f s 0.03 0 0.03 0 +exotique exotique adj s 4.19 8.99 2.86 5 +exotiquement exotiquement adv 0 0.07 0 0.07 +exotiques exotique adj p 4.19 8.99 1.33 3.99 +exotisme exotisme nom m s 0.23 2.77 0.23 2.77 +expansible expansible adj s 0.02 0 0.02 0 +expansif expansif adj m s 0.33 1.35 0.15 0.81 +expansifs expansif adj m p 0.33 1.35 0.01 0.07 +expansion expansion nom f s 1.89 2.5 1.89 2.5 +expansionnisme expansionnisme nom m s 0.01 0.07 0.01 0.07 +expansionniste expansionniste adj f s 0.02 0 0.02 0 +expansionnistes expansionniste nom p 0.1 0.07 0.1 0 +expansive expansif adj f s 0.33 1.35 0.15 0.41 +expansives expansif adj f p 0.33 1.35 0.02 0.07 +expansé expansé adj m s 0 0.07 0 0.07 +expatriait expatrier ver 0.39 0.81 0 0.07 ind:imp:3s; +expatriation expatriation nom f s 0 0.07 0 0.07 +expatrier expatrier ver 0.39 0.81 0.25 0.41 inf; +expatrièrent expatrier ver 0.39 0.81 0 0.07 ind:pas:3p; +expatrié expatrié nom m s 0.35 0.14 0.21 0 +expatriée expatrier ver f s 0.39 0.81 0 0.07 par:pas; +expatriés expatrié nom m p 0.35 0.14 0.14 0.14 +expectatif expectatif adj m s 0 0.07 0 0.07 +expectation expectation nom f s 0.02 0 0.02 0 +expectative expectative nom f s 0.09 1.01 0.06 1.01 +expectatives expectative nom f p 0.09 1.01 0.02 0 +expectora expectorer ver 0.02 0.41 0 0.07 ind:pas:3s; +expectorant expectorant nom m s 0.01 0 0.01 0 +expectoration expectoration nom f s 0.02 0.27 0.02 0.27 +expectorer expectorer ver 0.02 0.41 0 0.14 inf; +expectoré expectorer ver m s 0.02 0.41 0.01 0.14 par:pas; +expectorées expectorer ver f p 0.02 0.41 0.01 0 par:pas; +expert expert nom m s 20.14 5 12.7 1.96 +expert_comptable expert_comptable nom m s 0.23 0.2 0.23 0.2 +experte expert adj f s 7.66 6.15 3.45 2.16 +expertement expertement adv 0 0.07 0 0.07 +expertes expert adj f p 7.66 6.15 0.34 1.15 +expertisaient expertiser ver 0.26 0.47 0 0.07 ind:imp:3p; +expertisait expertiser ver 0.26 0.47 0 0.07 ind:imp:3s; +expertisant expertiser ver 0.26 0.47 0 0.07 par:pre; +expertise expertise nom f s 2.88 0.68 2.69 0.61 +expertiser expertiser ver 0.26 0.47 0.24 0.27 inf; +expertises expertise nom f p 2.88 0.68 0.2 0.07 +experts expert nom m p 20.14 5 7.44 3.04 +expiaient expier ver 2.42 2.3 0 0.07 ind:imp:3p; +expiait expier ver 2.42 2.3 0 0.27 ind:imp:3s; +expiant expier ver 2.42 2.3 0.04 0 par:pre; +expiation expiation nom f s 0.44 0.88 0.44 0.88 +expiatoire expiatoire adj s 0.17 0.95 0.16 0.74 +expiatoires expiatoire adj p 0.17 0.95 0.01 0.2 +expiatrice expiateur adj f s 0 0.07 0 0.07 +expie expier ver 2.42 2.3 0.29 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expier expier ver 2.42 2.3 1.73 1.35 inf; +expieras expier ver 2.42 2.3 0.02 0 ind:fut:2s; +expira expirer ver 6.06 4.59 0 0.61 ind:pas:3s; +expirais expirer ver 6.06 4.59 0 0.07 ind:imp:1s; +expirait expirer ver 6.06 4.59 0.04 0.88 ind:imp:3s; +expirant expirer ver 6.06 4.59 0.01 0.14 par:pre; +expirante expirant adj f s 0 0.41 0 0.07 +expirantes expirant adj f p 0 0.41 0 0.07 +expiration expiration nom f s 1.29 1.28 1.29 1.08 +expirations expiration nom f p 1.29 1.28 0 0.2 +expire expirer ver 6.06 4.59 2.63 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expirent expirer ver 6.06 4.59 0.2 0.2 ind:pre:3p; +expirer expirer ver 6.06 4.59 0.72 0.95 inf; +expirera expirer ver 6.06 4.59 0.07 0 ind:fut:3s; +expirerait expirer ver 6.06 4.59 0 0.14 cnd:pre:3s; +expirez expirer ver 6.06 4.59 0.54 0.14 imp:pre:2p;ind:pre:2p; +expirons expirer ver 6.06 4.59 0 0.07 ind:pre:1p; +expiré expirer ver m s 6.06 4.59 1.73 0.34 par:pas; +expirée expirer ver f s 6.06 4.59 0.09 0.14 par:pas; +expirés expirer ver m p 6.06 4.59 0.01 0.07 par:pas; +expié expier ver m s 2.42 2.3 0.33 0.2 par:pas; +expiée expier ver f s 2.42 2.3 0 0.07 par:pas; +expiés expier ver m p 2.42 2.3 0 0.07 par:pas; +explicable explicable adj s 0.19 1.42 0.19 1.22 +explicables explicable adj m p 0.19 1.42 0 0.2 +explicatif explicatif adj m s 0.03 1.15 0.01 0.2 +explicatifs explicatif adj m p 0.03 1.15 0 0.2 +explication explication nom f s 31.74 46.28 24.6 28.85 +explications explication nom f p 31.74 46.28 7.14 17.43 +explicative explicatif adj f s 0.03 1.15 0.02 0.54 +explicatives explicatif adj f p 0.03 1.15 0 0.2 +explicitant expliciter ver 0.06 0.68 0 0.07 par:pre; +explicite explicite adj s 1.78 2.16 1.34 1.82 +explicitement explicitement adv 0.48 1.55 0.48 1.55 +expliciter expliciter ver 0.06 0.68 0.06 0.54 inf; +explicites explicite adj p 1.78 2.16 0.45 0.34 +expliqua expliquer ver 200.93 233.92 0.77 36.42 ind:pas:3s; +expliquai expliquer ver 200.93 233.92 0.26 2.7 ind:pas:1s; +expliquaient expliquer ver 200.93 233.92 0.12 1.08 ind:imp:3p; +expliquais expliquer ver 200.93 233.92 1.25 1.82 ind:imp:1s;ind:imp:2s; +expliquait expliquer ver 200.93 233.92 1.4 21.62 ind:imp:3s; +expliquant expliquer ver 200.93 233.92 0.5 6.28 par:pre; +explique expliquer ver 200.93 233.92 48.02 38.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +expliquent expliquer ver 200.93 233.92 0.78 2.09 ind:pre:3p; +expliquer expliquer ver 200.93 233.92 89.21 76.55 inf;;inf;;inf;; +expliquera expliquer ver 200.93 233.92 3.69 1.89 ind:fut:3s; +expliquerai expliquer ver 200.93 233.92 13.85 5.81 ind:fut:1s; +expliqueraient expliquer ver 200.93 233.92 0.06 0.27 cnd:pre:3p; +expliquerais expliquer ver 200.93 233.92 0.55 0.2 cnd:pre:1s;cnd:pre:2s; +expliquerait expliquer ver 200.93 233.92 3.3 2.03 cnd:pre:3s; +expliqueras expliquer ver 200.93 233.92 1.19 0.74 ind:fut:2s; +expliquerez expliquer ver 200.93 233.92 1.29 0.54 ind:fut:2p; +expliqueriez expliquer ver 200.93 233.92 0.05 0.07 cnd:pre:2p; +expliquerons expliquer ver 200.93 233.92 0.11 0.2 ind:fut:1p; +expliqueront expliquer ver 200.93 233.92 0.25 0.14 ind:fut:3p; +expliques expliquer ver 200.93 233.92 3.97 1.62 ind:pre:2s;sub:pre:2s; +expliquez expliquer ver 200.93 233.92 14.34 3.11 imp:pre:2p;ind:pre:2p; +expliquiez expliquer ver 200.93 233.92 0.61 0.27 ind:imp:2p;sub:pre:2p; +expliquions expliquer ver 200.93 233.92 0.03 0.2 ind:imp:1p; +expliquons expliquer ver 200.93 233.92 0.23 0.2 imp:pre:1p;ind:pre:1p; +expliquâmes expliquer ver 200.93 233.92 0 0.07 ind:pas:1p; +expliquât expliquer ver 200.93 233.92 0 0.34 sub:imp:3s; +expliquèrent expliquer ver 200.93 233.92 0 0.41 ind:pas:3p; +expliqué expliquer ver m s 200.93 233.92 14.18 27.57 par:pas; +expliquée expliquer ver f s 200.93 233.92 0.36 0.34 par:pas; +expliquées expliquer ver f p 200.93 233.92 0.14 0.47 par:pas; +expliqués expliquer ver m p 200.93 233.92 0.35 0.61 par:pas; +exploit exploit nom m s 8 15.61 3.97 5.2 +exploita exploiter ver 9.47 11.15 0 0.14 ind:pas:3s; +exploitable exploitable adj s 0.19 0.41 0.14 0.34 +exploitables exploitable adj p 0.19 0.41 0.05 0.07 +exploitai exploiter ver 9.47 11.15 0 0.07 ind:pas:1s; +exploitaient exploiter ver 9.47 11.15 0.05 0.34 ind:imp:3p; +exploitais exploiter ver 9.47 11.15 0 0.07 ind:imp:1s; +exploitait exploiter ver 9.47 11.15 0.1 0.54 ind:imp:3s; +exploitant exploiter ver 9.47 11.15 0.27 0.41 par:pre; +exploitante exploitant nom f s 0.46 0.41 0.14 0 +exploitants exploitant nom m p 0.46 0.41 0.06 0.34 +exploitation exploitation nom f s 4.25 6.82 3.86 6.62 +exploitations exploitation nom f p 4.25 6.82 0.4 0.2 +exploite exploiter ver 9.47 11.15 1.23 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exploitent exploiter ver 9.47 11.15 0.58 0.54 ind:pre:3p; +exploiter exploiter ver 9.47 11.15 4.18 5.07 inf; +exploitera exploiter ver 9.47 11.15 0.05 0 ind:fut:3s; +exploiterais exploiter ver 9.47 11.15 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +exploiterait exploiter ver 9.47 11.15 0.04 0.07 cnd:pre:3s; +exploiteront exploiter ver 9.47 11.15 0.03 0 ind:fut:3p; +exploites exploiter ver 9.47 11.15 0.19 0.14 ind:pre:2s; +exploiteur exploiteur nom m s 0.57 1.22 0.29 0.27 +exploiteurs exploiteur nom m p 0.57 1.22 0.28 0.88 +exploiteuses exploiteur nom f p 0.57 1.22 0 0.07 +exploitez exploiter ver 9.47 11.15 0.27 0.2 imp:pre:2p;ind:pre:2p; +exploitions exploiter ver 9.47 11.15 0 0.07 ind:imp:1p; +exploitons exploiter ver 9.47 11.15 0.02 0 imp:pre:1p;ind:pre:1p; +exploits exploit nom m p 8 15.61 4.03 10.41 +exploitât exploiter ver 9.47 11.15 0 0.14 sub:imp:3s; +exploitèrent exploiter ver 9.47 11.15 0 0.07 ind:pas:3p; +exploité exploiter ver m s 9.47 11.15 1.64 0.88 par:pas; +exploitée exploiter ver f s 9.47 11.15 0.35 0.68 par:pas; +exploitées exploité adj f p 0.27 0.88 0.15 0.2 +exploités exploiter ver m p 9.47 11.15 0.33 0.27 par:pas; +explora explorer ver 10 12.03 0.02 0.54 ind:pas:3s; +explorai explorer ver 10 12.03 0 0.07 ind:pas:1s; +exploraient explorer ver 10 12.03 0.03 0.27 ind:imp:3p; +explorais explorer ver 10 12.03 0.17 0.27 ind:imp:1s;ind:imp:2s; +explorait explorer ver 10 12.03 0.23 0.74 ind:imp:3s; +explorant explorer ver 10 12.03 0.42 0.81 par:pre; +explorateur explorateur nom m s 1.47 2.64 0.69 1.62 +explorateurs explorateur nom m p 1.47 2.64 0.72 0.95 +exploration exploration nom f s 2.06 4.53 1.81 3.31 +explorations exploration nom f p 2.06 4.53 0.25 1.22 +exploratoire exploratoire adj f s 0.1 0.07 0.1 0 +exploratoires exploratoire adj f p 0.1 0.07 0 0.07 +exploratrice explorateur adj f s 0.7 0.95 0.25 0 +exploratrices explorateur adj f p 0.7 0.95 0 0.07 +explore explorer ver 10 12.03 0.98 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +explorent explorer ver 10 12.03 0.12 0.07 ind:pre:3p; +explorer explorer ver 10 12.03 5.5 6.76 inf;; +explorera explorer ver 10 12.03 0.05 0 ind:fut:3s; +explorerai explorer ver 10 12.03 0.08 0 ind:fut:1s; +explorerez explorer ver 10 12.03 0.01 0 ind:fut:2p; +explorerons explorer ver 10 12.03 0.17 0 ind:fut:1p; +exploreur exploreur nom m s 0.01 0 0.01 0 +explorez explorer ver 10 12.03 0.33 0 imp:pre:2p;ind:pre:2p; +explorions explorer ver 10 12.03 0.06 0.2 ind:imp:1p; +explorons explorer ver 10 12.03 0.46 0 imp:pre:1p;ind:pre:1p; +explorèrent explorer ver 10 12.03 0.02 0.27 ind:pas:3p; +exploré explorer ver m s 10 12.03 1 0.68 par:pas; +explorée explorer ver f s 10 12.03 0.26 0.34 par:pas; +explorées explorer ver f p 10 12.03 0.04 0.14 par:pas; +explorés explorer ver m p 10 12.03 0.04 0.2 par:pas; +explosa exploser ver 53.79 24.05 0.36 2.97 ind:pas:3s; +explosai exploser ver 53.79 24.05 0 0.07 ind:pas:1s; +explosaient exploser ver 53.79 24.05 0.18 1.15 ind:imp:3p; +explosais exploser ver 53.79 24.05 0.04 0 ind:imp:1s; +explosait exploser ver 53.79 24.05 0.23 1.69 ind:imp:3s; +explosant exploser ver 53.79 24.05 0.35 0.81 par:pre; +explose exploser ver 53.79 24.05 10.22 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +explosent exploser ver 53.79 24.05 1.54 1.62 ind:pre:3p; +exploser exploser ver 53.79 24.05 25.11 7.36 inf;; +explosera exploser ver 53.79 24.05 1.87 0.14 ind:fut:3s; +exploserai exploser ver 53.79 24.05 0.13 0 ind:fut:1s; +exploseraient exploser ver 53.79 24.05 0.12 0 cnd:pre:3p; +exploserais exploser ver 53.79 24.05 0.07 0 cnd:pre:1s; +exploserait exploser ver 53.79 24.05 0.68 0.2 cnd:pre:3s; +exploseras exploser ver 53.79 24.05 0.05 0.07 ind:fut:2s; +exploserez exploser ver 53.79 24.05 0.23 0 ind:fut:2p; +exploseront exploser ver 53.79 24.05 0.18 0 ind:fut:3p; +exploses exploser ver 53.79 24.05 0.13 0 ind:pre:2s;sub:pre:2s; +exploseur exploseur nom m s 0.01 0.07 0.01 0.07 +explosez exploser ver 53.79 24.05 0.27 0 imp:pre:2p;ind:pre:2p; +explosif explosif nom m s 10.04 2.7 2.05 0.61 +explosifs explosif nom m p 10.04 2.7 7.97 1.96 +explosion explosion nom f s 26.14 25.68 23.11 17.64 +explosions explosion nom f p 26.14 25.68 3.02 8.04 +explosive explosif adj f s 4.07 2.77 1.18 0.95 +explosives explosif adj f p 4.07 2.77 0.52 0.14 +explosons exploser ver 53.79 24.05 0.15 0 imp:pre:1p;ind:pre:1p; +explosât exploser ver 53.79 24.05 0 0.14 sub:imp:3s; +explosèrent exploser ver 53.79 24.05 0.01 0.41 ind:pas:3p; +explosé exploser ver m s 53.79 24.05 11.1 3.31 par:pas; +explosée exploser ver f s 53.79 24.05 0.59 0.2 par:pas; +explosées exploser ver f p 53.79 24.05 0.04 0.14 par:pas; +explosés exploser ver m p 53.79 24.05 0.13 0 par:pas; +explétif explétif nom m s 0 0.07 0 0.07 +explétive explétif adj f s 0.01 0.07 0.01 0.07 +expo expo nom f s 3.77 0.54 3.26 0.47 +exponentiel exponentiel adj m s 0.39 0.2 0.14 0.07 +exponentielle exponentiel adj f s 0.39 0.2 0.2 0.07 +exponentiellement exponentiellement adv 0.17 0 0.17 0 +exponentielles exponentiel adj f p 0.39 0.2 0.04 0.07 +export export nom m s 0.58 0.2 0.53 0.2 +exporta exporter ver 0.83 0.88 0 0.07 ind:pas:3s; +exportaient exporter ver 0.83 0.88 0.14 0.07 ind:imp:3p; +exportant exporter ver 0.83 0.88 0.02 0 par:pre; +exportateur exportateur adj m s 0.07 0.14 0.05 0.07 +exportateurs exportateur adj m p 0.07 0.14 0.01 0.07 +exportation exportation nom f s 0.88 1.96 0.76 1.49 +exportations exportation nom f p 0.88 1.96 0.11 0.47 +exporte exporter ver 0.83 0.88 0.15 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exporter exporter ver 0.83 0.88 0.17 0.34 inf; +exportera exporter ver 0.83 0.88 0.01 0 ind:fut:3s; +exporterons exporter ver 0.83 0.88 0.01 0 ind:fut:1p; +exportez exporter ver 0.83 0.88 0.01 0 ind:pre:2p; +exports export nom m p 0.58 0.2 0.06 0 +exporté exporter ver m s 0.83 0.88 0.02 0 par:pas; +exportée exporter ver f s 0.83 0.88 0.01 0 par:pas; +exportées exporter ver f p 0.83 0.88 0.02 0 par:pas; +exportés exporter ver m p 0.83 0.88 0.27 0.2 par:pas; +expos expo nom f p 3.77 0.54 0.51 0.07 +exposa exposer ver 22.42 38.18 0.05 2.5 ind:pas:3s; +exposai exposer ver 22.42 38.18 0 0.81 ind:pas:1s; +exposaient exposer ver 22.42 38.18 0.01 0.41 ind:imp:3p; +exposais exposer ver 22.42 38.18 0.05 0.61 ind:imp:1s; +exposait exposer ver 22.42 38.18 0.44 3.38 ind:imp:3s; +exposant exposant nom m s 0.25 0.14 0.25 0.14 +expose exposer ver 22.42 38.18 3.38 3.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exposent exposer ver 22.42 38.18 0.31 0.74 ind:pre:3p; +exposer exposer ver 22.42 38.18 6.58 10.41 ind:pre:2p;ind:pre:2p;inf; +exposera exposer ver 22.42 38.18 0.11 0.14 ind:fut:3s; +exposerai exposer ver 22.42 38.18 0.16 0.07 ind:fut:1s; +exposerais exposer ver 22.42 38.18 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +exposerait exposer ver 22.42 38.18 0.04 0.41 cnd:pre:3s; +exposerez exposer ver 22.42 38.18 0.04 0.07 ind:fut:2p; +exposerions exposer ver 22.42 38.18 0.01 0.07 cnd:pre:1p; +exposeront exposer ver 22.42 38.18 0.02 0 ind:fut:3p; +exposes exposer ver 22.42 38.18 1.06 0.14 ind:pre:2s; +exposez exposer ver 22.42 38.18 1.17 0.41 imp:pre:2p;ind:pre:2p; +exposiez exposer ver 22.42 38.18 0.17 0.07 ind:imp:2p; +exposition exposition nom f s 12.36 13.99 11.25 11.42 +expositions exposition nom f p 12.36 13.99 1.11 2.57 +exposons exposer ver 22.42 38.18 0.03 0.07 imp:pre:1p;ind:pre:1p; +exposâmes exposer ver 22.42 38.18 0 0.14 ind:pas:1p; +exposèrent exposer ver 22.42 38.18 0 0.07 ind:pas:3p; +exposé exposer ver m s 22.42 38.18 5 5.54 par:pas; +exposée exposer ver f s 22.42 38.18 1.42 3.24 par:pas; +exposées exposer ver f p 22.42 38.18 0.42 1.49 par:pas; +exposés exposer ver m p 22.42 38.18 1.71 1.55 par:pas; +express express adj 2.77 1.28 2.77 1.28 +expresse exprès adj f s 24.06 26.22 0.38 0.95 +expresses exprès adj f p 24.06 26.22 0 0.47 +expressif expressif adj m s 1.12 2.09 0.53 0.88 +expressifs expressif adj m p 1.12 2.09 0.26 0.34 +expression expression nom f s 19.22 76.89 17.7 69.26 +expressionnisme expressionnisme nom m s 0.07 0.14 0.07 0.14 +expressionniste expressionniste adj s 0.71 0.2 0.57 0.14 +expressionnistes expressionniste nom p 0.19 0 0.16 0 +expressions expression nom f p 19.22 76.89 1.51 7.64 +expressive expressif adj f s 1.12 2.09 0.33 0.47 +expressivement expressivement adv 0 0.07 0 0.07 +expressives expressif adj f p 1.12 2.09 0.01 0.41 +expressément expressément adv 0.34 1.55 0.34 1.55 +exprima exprimer ver 30.02 72.64 0.1 2.57 ind:pas:3s; +exprimable exprimable adj s 0.01 0 0.01 0 +exprimai exprimer ver 30.02 72.64 0 0.61 ind:pas:1s; +exprimaient exprimer ver 30.02 72.64 0.08 4.66 ind:imp:3p; +exprimais exprimer ver 30.02 72.64 0.14 0.61 ind:imp:1s;ind:imp:2s; +exprimait exprimer ver 30.02 72.64 0.56 11.76 ind:imp:3s; +exprimant exprimer ver 30.02 72.64 0.23 2.84 par:pre; +exprime exprimer ver 30.02 72.64 4.67 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expriment exprimer ver 30.02 72.64 0.79 3.38 ind:pre:3p; +exprimer exprimer ver 30.02 72.64 18.13 25.95 inf;; +exprimera exprimer ver 30.02 72.64 0.16 0.07 ind:fut:3s; +exprimerai exprimer ver 30.02 72.64 0.02 0.07 ind:fut:1s; +exprimerais exprimer ver 30.02 72.64 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +exprimerait exprimer ver 30.02 72.64 0.05 0.81 cnd:pre:3s; +exprimeras exprimer ver 30.02 72.64 0.03 0 ind:fut:2s; +exprimerez exprimer ver 30.02 72.64 0.03 0.14 ind:fut:2p; +exprimeront exprimer ver 30.02 72.64 0.01 0.07 ind:fut:3p; +exprimes exprimer ver 30.02 72.64 0.39 0.14 ind:pre:2s; +exprimez exprimer ver 30.02 72.64 0.82 0.27 imp:pre:2p;ind:pre:2p; +exprimiez exprimer ver 30.02 72.64 0.03 0 ind:imp:2p; +exprimions exprimer ver 30.02 72.64 0 0.2 ind:imp:1p; +exprimons exprimer ver 30.02 72.64 0.3 0 imp:pre:1p;ind:pre:1p; +exprimât exprimer ver 30.02 72.64 0 0.47 sub:imp:3s; +exprimèrent exprimer ver 30.02 72.64 0 0.54 ind:pas:3p; +exprimé exprimer ver m s 30.02 72.64 2.41 3.58 par:pas; +exprimée exprimer ver f s 30.02 72.64 0.75 1.96 par:pas; +exprimées exprimer ver f p 30.02 72.64 0.05 0.95 par:pas; +exprimés exprimer ver m p 30.02 72.64 0.22 0.61 par:pas; +expropria exproprier ver 0.21 0.34 0.01 0 ind:pas:3s; +expropriation expropriation nom f s 0.32 0.41 0.28 0.27 +expropriations expropriation nom f p 0.32 0.41 0.03 0.14 +exproprie exproprier ver 0.21 0.34 0.01 0.07 ind:pre:3s; +exproprier exproprier ver 0.21 0.34 0.04 0 inf; +exproprierait exproprier ver 0.21 0.34 0 0.07 cnd:pre:3s; +exproprié exproprier ver m s 0.21 0.34 0.11 0.07 par:pas; +expropriée exproprié nom f s 0.1 0 0.1 0 +expropriées exproprier ver f p 0.21 0.34 0 0.07 par:pas; +expropriés exproprier ver m p 0.21 0.34 0.01 0 par:pas; +exprès exprès adj m 24.06 26.22 23.68 24.8 +expulsa expulser ver 9.28 8.24 0 0.41 ind:pas:3s; +expulsai expulser ver 9.28 8.24 0 0.07 ind:pas:1s; +expulsaient expulser ver 9.28 8.24 0.01 0.27 ind:imp:3p; +expulsais expulser ver 9.28 8.24 0 0.14 ind:imp:1s; +expulsait expulser ver 9.28 8.24 0.02 0.27 ind:imp:3s; +expulsant expulser ver 9.28 8.24 0.03 0.2 par:pre; +expulse expulser ver 9.28 8.24 0.67 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expulsent expulser ver 9.28 8.24 0.24 0.07 ind:pre:3p; +expulser expulser ver 9.28 8.24 4.03 2.3 inf;; +expulsera expulser ver 9.28 8.24 0.1 0.07 ind:fut:3s; +expulserai expulser ver 9.28 8.24 0.03 0 ind:fut:1s; +expulserait expulser ver 9.28 8.24 0.12 0.07 cnd:pre:3s; +expulseront expulser ver 9.28 8.24 0.01 0 ind:fut:3p; +expulsez expulser ver 9.28 8.24 0.15 0.14 imp:pre:2p;ind:pre:2p; +expulsion expulsion nom f s 2.97 1.76 2.51 1.55 +expulsions expulsion nom f p 2.97 1.76 0.46 0.2 +expulsive expulsif adj f s 0.01 0 0.01 0 +expulsons expulser ver 9.28 8.24 0.02 0 imp:pre:1p;ind:pre:1p; +expulsât expulser ver 9.28 8.24 0 0.07 sub:imp:3s; +expulsé expulser ver m s 9.28 8.24 2.37 1.76 par:pas; +expulsée expulser ver f s 9.28 8.24 0.42 0.41 par:pas; +expulsées expulser ver f p 9.28 8.24 0.19 0.14 par:pas; +expulsés expulser ver m p 9.28 8.24 0.88 0.81 par:pas; +expurgeait expurger ver 0.13 0.81 0 0.14 ind:imp:3s; +expurger expurger ver 0.13 0.81 0 0.14 inf; +expurgera expurger ver 0.13 0.81 0 0.07 ind:fut:3s; +expurgé expurger ver m s 0.13 0.81 0.03 0.07 par:pas; +expurgée expurger ver f s 0.13 0.81 0.1 0.27 par:pas; +expurgés expurger ver m p 0.13 0.81 0 0.14 par:pas; +expédia expédier ver 8.69 23.78 0 1.49 ind:pas:3s; +expédiai expédier ver 8.69 23.78 0 0.47 ind:pas:1s; +expédiaient expédier ver 8.69 23.78 0 0.34 ind:imp:3p; +expédiais expédier ver 8.69 23.78 0.05 0.2 ind:imp:1s;ind:imp:2s; +expédiait expédier ver 8.69 23.78 0.06 2.36 ind:imp:3s; +expédiant expédier ver 8.69 23.78 0.05 1.01 par:pre; +expédie expédier ver 8.69 23.78 1.73 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expédient expédier ver 8.69 23.78 0.26 0.47 ind:pre:3p; +expédientes expédient adj f p 0.03 0.34 0.01 0 +expédients expédient nom m p 0.36 2.64 0.2 1.82 +expédier expédier ver 8.69 23.78 2.09 5.41 inf; +expédiera expédier ver 8.69 23.78 0.13 0.27 ind:fut:3s; +expédierai expédier ver 8.69 23.78 0.02 0.14 ind:fut:1s; +expédierait expédier ver 8.69 23.78 0 0.2 cnd:pre:3s; +expédieras expédier ver 8.69 23.78 0 0.07 ind:fut:2s; +expédieriez expédier ver 8.69 23.78 0.02 0 cnd:pre:2p; +expédierons expédier ver 8.69 23.78 0.01 0.07 ind:fut:1p; +expédieront expédier ver 8.69 23.78 0.01 0.14 ind:fut:3p; +expédies expédier ver 8.69 23.78 0.04 0.07 ind:pre:2s;sub:pre:2s; +expédiez expédier ver 8.69 23.78 0.72 0 imp:pre:2p;ind:pre:2p; +expédions expédier ver 8.69 23.78 0.28 0.07 imp:pre:1p;ind:pre:1p; +expéditeur expéditeur nom m s 1.4 1.01 1.35 0.81 +expéditeurs expéditeur nom m p 1.4 1.01 0.03 0.2 +expéditif expéditif adj m s 0.47 2.03 0.05 1.08 +expéditifs expéditif adj m p 0.47 2.03 0.03 0.34 +expédition expédition nom f s 10.74 15.14 9.05 11.76 +expéditionnaire expéditionnaire adj s 0.18 2.77 0.16 2.43 +expéditionnaires expéditionnaire adj f p 0.18 2.77 0.02 0.34 +expéditions expédition nom f p 10.74 15.14 1.69 3.38 +expéditive expéditif adj f s 0.47 2.03 0.36 0.34 +expéditives expéditif adj f p 0.47 2.03 0.02 0.27 +expéditrice expéditeur nom f s 1.4 1.01 0.02 0 +expédié expédier ver m s 8.69 23.78 1.92 4.39 par:pas; +expédiée expédier ver f s 8.69 23.78 0.52 1.49 par:pas; +expédiées expédier ver f p 8.69 23.78 0.34 0.68 par:pas; +expédiés expédier ver m p 8.69 23.78 0.42 1.28 par:pas; +expérience expérience nom f s 72.04 58.72 55.52 48.11 +expériences expérience nom f p 72.04 58.72 16.52 10.61 +expérimenta expérimenter ver 3.92 2.97 0.03 0.07 ind:pas:3s; +expérimentai expérimenter ver 3.92 2.97 0.01 0.07 ind:pas:1s; +expérimentaient expérimenter ver 3.92 2.97 0.13 0.2 ind:imp:3p; +expérimentais expérimenter ver 3.92 2.97 0.07 0.2 ind:imp:1s; +expérimentait expérimenter ver 3.92 2.97 0.08 0.14 ind:imp:3s; +expérimental expérimental adj m s 2.74 1.01 1.9 0.07 +expérimentale expérimental adj f s 2.74 1.01 0.48 0.61 +expérimentalement expérimentalement adv 0.01 0.07 0.01 0.07 +expérimentales expérimental adj f p 2.74 1.01 0.1 0.14 +expérimentant expérimenter ver 3.92 2.97 0.03 0.14 par:pre; +expérimentateur expérimentateur nom m s 0.14 0.07 0.14 0.07 +expérimentation expérimentation nom f s 1.3 2.91 0.87 2.16 +expérimentations expérimentation nom f p 1.3 2.91 0.43 0.74 +expérimentaux expérimental adj m p 2.74 1.01 0.26 0.2 +expérimente expérimenter ver 3.92 2.97 0.33 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expérimentent expérimenter ver 3.92 2.97 0.18 0 ind:pre:3p; +expérimenter expérimenter ver 3.92 2.97 1.23 0.47 inf; +expérimenteras expérimenter ver 3.92 2.97 0.02 0 ind:fut:2s; +expérimentez expérimenter ver 3.92 2.97 0.18 0 imp:pre:2p;ind:pre:2p; +expérimentiez expérimenter ver 3.92 2.97 0.04 0 ind:imp:2p; +expérimentons expérimenter ver 3.92 2.97 0.02 0.07 imp:pre:1p;ind:pre:1p; +expérimenté expérimenté adj m s 2.42 1.62 1.33 0.68 +expérimentée expérimenté adj f s 2.42 1.62 0.52 0.34 +expérimentées expérimenté adj f p 2.42 1.62 0.14 0.14 +expérimentés expérimenté adj m p 2.42 1.62 0.42 0.47 +exquis exquis adj m 6.38 17.36 3.2 7.23 +exquise exquis adj f s 6.38 17.36 2.51 7.97 +exquises exquis adj f p 6.38 17.36 0.66 2.16 +exsangue exsangue adj s 0.45 4.19 0.44 2.84 +exsangues exsangue adj p 0.45 4.19 0.01 1.35 +exsudaient exsuder ver 0.05 0.41 0 0.07 ind:imp:3p; +exsudait exsuder ver 0.05 0.41 0 0.07 ind:imp:3s; +exsudant exsuder ver 0.05 0.41 0 0.14 par:pre; +exsudat exsudat nom m s 0 0.07 0 0.07 +exsudation exsudation nom f s 0.01 0 0.01 0 +exsude exsuder ver 0.05 0.41 0.01 0.07 ind:pre:3s; +exsuder exsuder ver 0.05 0.41 0.04 0 inf; +exsudé exsuder ver m s 0.05 0.41 0 0.07 par:pas; +extase extase nom f s 3.67 11.55 3.43 10.54 +extases extase nom f p 3.67 11.55 0.24 1.01 +extasia extasier ver 0.68 7.3 0 1.22 ind:pas:3s; +extasiaient extasier ver 0.68 7.3 0.14 0.41 ind:imp:3p; +extasiais extasier ver 0.68 7.3 0 0.34 ind:imp:1s;ind:imp:2s; +extasiait extasier ver 0.68 7.3 0.02 1.35 ind:imp:3s; +extasiant extasier ver 0.68 7.3 0.01 0.27 par:pre; +extasiantes extasiant adj f p 0 0.14 0 0.07 +extasie extasier ver 0.68 7.3 0.16 0.68 ind:pre:1s;ind:pre:3s; +extasient extasier ver 0.68 7.3 0.02 0.07 ind:pre:3p; +extasier extasier ver 0.68 7.3 0.26 0.88 inf; +extasieront extasier ver 0.68 7.3 0 0.14 ind:fut:3p; +extasiez extasier ver 0.68 7.3 0.02 0 ind:pre:2p; +extasions extasier ver 0.68 7.3 0.01 0.2 ind:pre:1p; +extasiât extasier ver 0.68 7.3 0 0.07 sub:imp:3s; +extasièrent extasier ver 0.68 7.3 0 0.07 ind:pas:3p; +extasié extasier ver m s 0.68 7.3 0.04 0.61 par:pas; +extasiée extasié adj f s 0.11 1.89 0.1 0.47 +extasiées extasier ver f p 0.68 7.3 0 0.2 par:pas; +extasiés extasié adj m p 0.11 1.89 0 0.47 +extatique extatique adj s 0.22 1.22 0.22 1.01 +extatiquement extatiquement adv 0 0.14 0 0.14 +extatiques extatique adj p 0.22 1.22 0 0.2 +extenseur extenseur nom m s 0.07 0.14 0.06 0.14 +extenseurs extenseur nom m p 0.07 0.14 0.01 0 +extensible extensible adj s 0.1 0.61 0.09 0.47 +extensibles extensible adj m p 0.1 0.61 0.01 0.14 +extension extension nom f s 2.6 2.77 2.43 2.57 +extensions extension nom f p 2.6 2.77 0.17 0.2 +extensive extensif adj f s 0.04 0 0.04 0 +extermina exterminer ver 6.85 4.05 0.13 0.07 ind:pas:3s; +exterminaient exterminer ver 6.85 4.05 0.03 0.14 ind:imp:3p; +exterminais exterminer ver 6.85 4.05 0.02 0.07 ind:imp:1s; +exterminait exterminer ver 6.85 4.05 0 0.14 ind:imp:3s; +exterminant exterminer ver 6.85 4.05 0.12 0 par:pre; +exterminateur exterminateur nom m s 0.72 0.07 0.56 0.07 +exterminateurs exterminateur nom m p 0.72 0.07 0.17 0 +extermination extermination nom f s 2.09 1.08 2.08 1.01 +exterminations extermination nom f p 2.09 1.08 0.01 0.07 +exterminatrice exterminateur adj f s 0.39 0.88 0.1 0 +exterminatrices exterminateur adj f p 0.39 0.88 0 0.14 +extermine exterminer ver 6.85 4.05 0.53 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exterminent exterminer ver 6.85 4.05 0.18 0 ind:pre:3p; +exterminer exterminer ver 6.85 4.05 3.07 1.89 inf; +exterminera exterminer ver 6.85 4.05 0.23 0 ind:fut:3s; +exterminerait exterminer ver 6.85 4.05 0 0.07 cnd:pre:3s; +exterminerons exterminer ver 6.85 4.05 0.01 0 ind:fut:1p; +extermineront exterminer ver 6.85 4.05 0.04 0 ind:fut:3p; +exterminez exterminer ver 6.85 4.05 0.13 0 imp:pre:2p;ind:pre:2p; +exterminions exterminer ver 6.85 4.05 0.01 0 ind:imp:1p; +exterminons exterminer ver 6.85 4.05 0.04 0 imp:pre:1p;ind:pre:1p; +exterminé exterminer ver m s 6.85 4.05 0.85 0.41 par:pas; +exterminée exterminer ver f s 6.85 4.05 0.26 0.2 par:pas; +exterminées exterminer ver f p 6.85 4.05 0.15 0.07 par:pas; +exterminés exterminer ver m p 6.85 4.05 1.05 0.88 par:pas; +externalité externalité nom f s 0.01 0 0.01 0 +externat externat nom m s 0.01 0.07 0.01 0.07 +externe externe adj s 3.53 0.88 2.48 0.54 +externes externe adj p 3.53 0.88 1.05 0.34 +exterritorialité exterritorialité nom f s 0 0.07 0 0.07 +extincteur extincteur nom m s 1.93 0.95 1.49 0.88 +extincteurs extincteur nom m p 1.93 0.95 0.44 0.07 +extinction extinction nom f s 3.42 3.65 3.42 3.65 +extinctrice extinctrice adj f s 0.01 0 0.01 0 +extirpa extirper ver 1.35 10.07 0 1.42 ind:pas:3s; +extirpaient extirper ver 1.35 10.07 0 0.2 ind:imp:3p; +extirpais extirper ver 1.35 10.07 0.01 0.07 ind:imp:1s; +extirpait extirper ver 1.35 10.07 0.02 0.47 ind:imp:3s; +extirpant extirper ver 1.35 10.07 0.02 0.34 par:pre; +extirpation extirpation nom f s 0.01 0 0.01 0 +extirpe extirper ver 1.35 10.07 0.05 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extirpent extirper ver 1.35 10.07 0.02 0.34 ind:pre:3p; +extirper extirper ver 1.35 10.07 0.88 3.51 inf; +extirpera extirper ver 1.35 10.07 0.02 0.07 ind:fut:3s; +extirperai extirper ver 1.35 10.07 0.2 0 ind:fut:1s; +extirperais extirper ver 1.35 10.07 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +extirperait extirper ver 1.35 10.07 0 0.07 cnd:pre:3s; +extirpé extirper ver m s 1.35 10.07 0.09 1.08 par:pas; +extirpée extirper ver f s 1.35 10.07 0 0.27 par:pas; +extirpées extirper ver f p 1.35 10.07 0.01 0.07 par:pas; +extirpés extirper ver m p 1.35 10.07 0.01 0.34 par:pas; +extorquai extorquer ver 1.35 2.03 0 0.07 ind:pas:1s; +extorquais extorquer ver 1.35 2.03 0 0.07 ind:imp:1s; +extorquait extorquer ver 1.35 2.03 0.01 0.2 ind:imp:3s; +extorque extorquer ver 1.35 2.03 0.05 0 ind:pre:3s; +extorquent extorquer ver 1.35 2.03 0.02 0 ind:pre:3p; +extorquer extorquer ver 1.35 2.03 0.9 0.68 inf; +extorqueur extorqueur nom m s 0.02 0 0.02 0 +extorquez extorquer ver 1.35 2.03 0.01 0 ind:pre:2p; +extorquèrent extorquer ver 1.35 2.03 0 0.07 ind:pas:3p; +extorqué extorquer ver m s 1.35 2.03 0.28 0.61 par:pas; +extorquée extorquer ver f s 1.35 2.03 0.03 0.07 par:pas; +extorquées extorquer ver f p 1.35 2.03 0.03 0.07 par:pas; +extorqués extorquer ver m p 1.35 2.03 0.03 0.2 par:pas; +extorsion extorsion nom f s 1.79 0.14 1.57 0.14 +extorsions extorsion nom f p 1.79 0.14 0.23 0 +extra extra adj_sup 6.78 1.42 6.78 1.42 +extra_dry extra_dry nom m 0 0.07 0 0.07 +extra_fin extra_fin adj m s 0 0.34 0 0.27 +extra_fin extra_fin adj m p 0 0.34 0 0.07 +extra_fort extra_fort adj m s 0.11 0.2 0.04 0.07 +extra_fort extra_fort adj f s 0.11 0.2 0.08 0.14 +extra_lucide extra_lucide adj f s 0.05 0.2 0.04 0.14 +extra_lucide extra_lucide adj p 0.05 0.2 0.01 0.07 +extra_muros extra_muros adj f p 0 0.07 0 0.07 +extra_muros extra_muros adv 0 0.07 0 0.07 +extra_sensoriel extra_sensoriel adj m s 0.06 0 0.02 0 +extra_sensoriel extra_sensoriel adj f s 0.06 0 0.04 0 +extra_souple extra_souple adj f p 0 0.07 0 0.07 +extra_terrestre extra_terrestre nom s 3.71 0.34 1.35 0.27 +extra_terrestre extra_terrestre nom p 3.71 0.34 2.36 0.07 +extra_utérin extra_utérin adj m s 0.1 0 0.03 0 +extra_utérin extra_utérin adj f s 0.1 0 0.07 0 +extraconjugal extraconjugal adj m s 0.1 0.07 0.03 0 +extraconjugale extraconjugal adj f s 0.1 0.07 0.02 0 +extraconjugales extraconjugal adj f p 0.1 0.07 0.04 0.07 +extraconjugaux extraconjugal adj m p 0.1 0.07 0.01 0 +extracorporelle extracorporel adj f s 0.01 0 0.01 0 +extracteur extracteur nom m s 0.04 0 0.04 0 +extracteurs extracteur nom m p 0.04 0 0.01 0 +extraction extraction nom f s 1.82 1.42 1.79 1.35 +extractions extraction nom f p 1.82 1.42 0.03 0.07 +extractive extractif adj f s 0.01 0 0.01 0 +extradaient extrader ver 0.66 0.2 0 0.07 ind:imp:3p; +extrade extrader ver 0.66 0.2 0.04 0.07 imp:pre:2s;ind:pre:3s; +extrader extrader ver 0.66 0.2 0.36 0.07 inf; +extradition extradition nom f s 0.78 0.14 0.78 0.14 +extradé extrader ver m s 0.66 0.2 0.26 0 par:pas; +extradée extradé adj f s 0.02 0.07 0.01 0 +extraforte extrafort adj f s 0.01 0 0.01 0 +extragalactique extragalactique adj f s 0.02 0 0.02 0 +extraient extraire ver 8.55 13.24 0.19 0.27 ind:pre:3p; +extraira extraire ver 8.55 13.24 0.04 0 ind:fut:3s; +extrairai extraire ver 8.55 13.24 0.04 0 ind:fut:1s; +extraire extraire ver 8.55 13.24 4.71 5.68 inf; +extrairons extraire ver 8.55 13.24 0.03 0 ind:fut:1p; +extrairont extraire ver 8.55 13.24 0.03 0 ind:fut:3p; +extrais extraire ver 8.55 13.24 0.17 0.41 imp:pre:2s;ind:pre:1s; +extrait extraire ver m s 8.55 13.24 1.9 3.51 ind:pre:3s;par:pas;par:pas; +extraite extraire ver f s 8.55 13.24 0.8 0.61 par:pas; +extraites extraire ver f p 8.55 13.24 0.11 0.54 par:pas; +extraits extrait nom m p 3.06 4.19 1.17 2.09 +extralucide extralucide adj m s 0.2 0.07 0.19 0 +extralucides extralucide adj p 0.2 0.07 0.01 0.07 +extraordinaire extraordinaire adj s 27.36 42.84 23.71 36.01 +extraordinairement extraordinairement adv 0.46 8.51 0.46 8.51 +extraordinaires extraordinaire adj p 27.36 42.84 3.65 6.82 +extrapolant extrapoler ver 0.37 0.34 0.04 0 par:pre; +extrapolation extrapolation nom f s 0.14 0.27 0.12 0.14 +extrapolations extrapolation nom f p 0.14 0.27 0.02 0.14 +extrapole extrapoler ver 0.37 0.34 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extrapolent extrapoler ver 0.37 0.34 0 0.07 ind:pre:3p; +extrapoler extrapoler ver 0.37 0.34 0.14 0.07 inf; +extrapolez extrapoler ver 0.37 0.34 0.05 0 imp:pre:2p;ind:pre:2p; +extrapolons extrapoler ver 0.37 0.34 0 0.07 imp:pre:1p; +extrapolé extrapoler ver m s 0.37 0.34 0.06 0 par:pas; +extrapolée extrapoler ver f s 0.37 0.34 0.01 0 par:pas; +extrapolées extrapoler ver f p 0.37 0.34 0 0.07 par:pas; +extras extra nom_sup m p 4.93 1.55 1.04 0.68 +extrascolaire extrascolaire adj s 0.23 0 0.11 0 +extrascolaires extrascolaire adj p 0.23 0 0.13 0 +extrasensoriel extrasensoriel adj m s 0.51 0 0.02 0 +extrasensorielle extrasensoriel adj f s 0.51 0 0.25 0 +extrasensoriels extrasensoriel adj m p 0.51 0 0.25 0 +extrasystole extrasystole nom f s 0.03 0 0.03 0 +extraterrestre extraterrestre adj s 6.66 0.41 4.46 0.14 +extraterrestres extraterrestre nom p 9.81 1.01 6.37 0.68 +extraterritoriale extraterritorial adj f s 0.02 0 0.02 0 +extravagance extravagance nom f s 0.94 3.78 0.31 2.43 +extravagances extravagance nom f p 0.94 3.78 0.63 1.35 +extravagant extravagant adj m s 2.26 6.55 0.91 2.16 +extravagante extravagant adj f s 2.26 6.55 0.56 1.62 +extravagantes extravagant adj f p 2.26 6.55 0.36 1.15 +extravagants extravagant adj m p 2.26 6.55 0.43 1.62 +extravaguait extravaguer ver 0 0.27 0 0.07 ind:imp:3s; +extravague extravaguer ver 0 0.27 0 0.07 ind:pre:3s; +extravaguer extravaguer ver 0 0.27 0 0.07 inf; +extravagué extravaguer ver m s 0 0.27 0 0.07 par:pas; +extravasation extravasation nom f s 0.01 0 0.01 0 +extraverti extraverti adj m s 0.11 0 0.06 0 +extravertie extraverti adj f s 0.11 0 0.05 0 +extravéhiculaire extravéhiculaire adj s 0.07 0 0.07 0 +extrayaient extraire ver 8.55 13.24 0 0.34 ind:imp:3p; +extrayait extraire ver 8.55 13.24 0.04 0.95 ind:imp:3s; +extrayant extraire ver 8.55 13.24 0.04 0.41 par:pre; +extrayez extraire ver 8.55 13.24 0.18 0 imp:pre:2p;ind:pre:2p; +extrayions extraire ver 8.55 13.24 0.01 0 ind:imp:1p; +extroverti extroverti adj m s 0.03 0 0.01 0 +extrovertie extroverti adj f s 0.03 0 0.01 0 +extrusion extrusion nom f s 0.03 0 0.03 0 +extrémisme extrémisme nom m s 0.13 0.2 0.13 0.2 +extrémiste extrémiste nom s 1.03 0.61 0.42 0.27 +extrémistes extrémiste nom p 1.03 0.61 0.61 0.34 +extrémité extrémité nom f s 2.95 27.09 2.12 20.27 +extrémités extrémité nom f p 2.95 27.09 0.83 6.82 +extrême extrême adj s 12.08 45.54 9.07 41.62 +extrême_onction extrême_onction nom f s 0.42 1.62 0.42 1.55 +extrême_orient extrême_orient nom m s 0 0.07 0 0.07 +extrême_oriental extrême_oriental adj f s 0 0.07 0 0.07 +extrêmement extrêmement adv 14.69 16.96 14.69 16.96 +extrêmes extrême adj p 12.08 45.54 3.01 3.92 +extrême_onction extrême_onction nom f p 0.42 1.62 0 0.07 +exténua exténuer ver 0.81 3.18 0 0.14 ind:pas:3s; +exténuait exténuer ver 0.81 3.18 0 0.2 ind:imp:3s; +exténuant exténuant adj m s 0.16 1.49 0.07 0.68 +exténuante exténuant adj f s 0.16 1.49 0.04 0.68 +exténuantes exténuant adj f p 0.16 1.49 0.03 0.07 +exténuants exténuant adj m p 0.16 1.49 0.02 0.07 +exténuation exténuation nom f s 0.1 0 0.1 0 +exténue exténuer ver 0.81 3.18 0 0.27 ind:pre:3s; +exténuement exténuement nom m s 0 0.27 0 0.27 +exténuent exténuer ver 0.81 3.18 0 0.07 ind:pre:3p; +exténuer exténuer ver 0.81 3.18 0.01 0.14 inf; +exténuerait exténuer ver 0.81 3.18 0 0.07 cnd:pre:3s; +exténué exténuer ver m s 0.81 3.18 0.35 0.74 par:pas; +exténuée exténuer ver f s 0.81 3.18 0.27 0.74 par:pas; +exténuées exténué adj f p 0.26 5.07 0 0.47 +exténués exténuer ver m p 0.81 3.18 0.19 0.54 par:pas; +extérieur extérieur nom m s 25.53 24.39 24.97 23.72 +extérieure extérieur adj f s 11.01 29.86 3.36 7.84 +extérieurement extérieurement adv 0.23 0.81 0.23 0.81 +extérieures extérieur adj f p 11.01 29.86 1.24 5.34 +extérieurs extérieur adj m p 11.01 29.86 1.52 4.46 +extériorisa extérioriser ver 0.61 1.15 0 0.14 ind:pas:3s; +extériorisaient extérioriser ver 0.61 1.15 0 0.07 ind:imp:3p; +extériorisait extérioriser ver 0.61 1.15 0 0.2 ind:imp:3s; +extériorisation extériorisation nom f s 0.05 0 0.05 0 +extériorise extérioriser ver 0.61 1.15 0.22 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extérioriser extérioriser ver 0.61 1.15 0.34 0.41 inf; +extériorisez extérioriser ver 0.61 1.15 0.01 0 ind:pre:2p; +extériorisé extérioriser ver m s 0.61 1.15 0.03 0.14 par:pas; +extériorisés extérioriser ver m p 0.61 1.15 0.01 0 par:pas; +extériorité extériorité nom f s 0 0.14 0 0.14 +exubérance exubérance nom f s 0.47 3.99 0.47 3.92 +exubérances exubérance nom f p 0.47 3.99 0 0.07 +exubérant exubérant adj m s 0.85 2.77 0.32 0.88 +exubérante exubérant adj f s 0.85 2.77 0.32 1.22 +exubérantes exubérant adj f p 0.85 2.77 0 0.54 +exubérants exubérant adj m p 0.85 2.77 0.21 0.14 +exulta exulter ver 0.61 4.26 0 0.54 ind:pas:3s; +exultai exulter ver 0.61 4.26 0 0.2 ind:pas:1s; +exultaient exulter ver 0.61 4.26 0 0.14 ind:imp:3p; +exultais exulter ver 0.61 4.26 0.01 0.27 ind:imp:1s; +exultait exulter ver 0.61 4.26 0.01 1.15 ind:imp:3s; +exultant exulter ver 0.61 4.26 0.01 0.27 par:pre; +exultante exultant adj f s 0.01 0.61 0.01 0.2 +exultantes exultant adj f p 0.01 0.61 0 0.07 +exultants exultant adj m p 0.01 0.61 0 0.07 +exultation exultation nom f s 0.05 0.68 0.05 0.68 +exulte exulter ver 0.61 4.26 0.5 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exultent exulter ver 0.61 4.26 0.01 0.07 ind:pre:3p; +exulter exulter ver 0.61 4.26 0.07 0.14 inf; +exultons exulter ver 0.61 4.26 0 0.07 ind:pre:1p; +exultèrent exulter ver 0.61 4.26 0 0.14 ind:pas:3p; +exutoire exutoire nom m s 0.67 0.54 0.67 0.47 +exutoires exutoire nom m p 0.67 0.54 0 0.07 +exècre exécrer ver 0.48 3.18 0.41 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exècrent exécrer ver 0.48 3.18 0 0.07 ind:pre:3p; +exécra exécrer ver 0.48 3.18 0 0.07 ind:pas:3s; +exécrable exécrable adj s 1.13 2.16 1.08 1.89 +exécrables exécrable adj p 1.13 2.16 0.06 0.27 +exécrais exécrer ver 0.48 3.18 0.01 0.14 ind:imp:1s; +exécrait exécrer ver 0.48 3.18 0.01 0.68 ind:imp:3s; +exécration exécration nom f s 0 1.28 0 1.22 +exécrations exécration nom f p 0 1.28 0 0.07 +exécrer exécrer ver 0.48 3.18 0.02 0.27 inf; +exécré exécrer ver m s 0.48 3.18 0.02 0.54 par:pas; +exécrée exécrer ver f s 0.48 3.18 0.02 0.34 par:pas; +exécrées exécrer ver f p 0.48 3.18 0 0.07 par:pas; +exécrés exécrer ver m p 0.48 3.18 0 0.14 par:pas; +exécuta exécuter ver 25.02 37.77 0.29 2.64 ind:pas:3s; +exécutai exécuter ver 25.02 37.77 0.01 0.54 ind:pas:1s; +exécutaient exécuter ver 25.02 37.77 0.04 1.28 ind:imp:3p; +exécutais exécuter ver 25.02 37.77 0.07 0.41 ind:imp:1s; +exécutait exécuter ver 25.02 37.77 0.14 2.57 ind:imp:3s; +exécutant exécutant nom m s 0.31 1.15 0.15 0.54 +exécutants exécutant nom m p 0.31 1.15 0.16 0.61 +exécute exécuter ver 25.02 37.77 3.07 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +exécutent exécuter ver 25.02 37.77 0.22 1.01 ind:pre:3p; +exécuter exécuter ver 25.02 37.77 7.53 11.22 inf;; +exécutera exécuter ver 25.02 37.77 0.31 0 ind:fut:3s; +exécuterai exécuter ver 25.02 37.77 0.2 0.07 ind:fut:1s; +exécuteraient exécuter ver 25.02 37.77 0.02 0 cnd:pre:3p; +exécuterais exécuter ver 25.02 37.77 0.05 0.07 cnd:pre:1s; +exécuterait exécuter ver 25.02 37.77 0.02 0.27 cnd:pre:3s; +exécuteras exécuter ver 25.02 37.77 0.03 0 ind:fut:2s; +exécuterez exécuter ver 25.02 37.77 0.05 0.14 ind:fut:2p; +exécuteriez exécuter ver 25.02 37.77 0.1 0 cnd:pre:2p; +exécuterons exécuter ver 25.02 37.77 0.03 0.07 ind:fut:1p; +exécuteront exécuter ver 25.02 37.77 0.07 0.14 ind:fut:3p; +exécutes exécuter ver 25.02 37.77 0.46 0.07 ind:pre:2s; +exécuteur exécuteur nom m s 1.07 0.88 0.97 0.47 +exécuteurs exécuteur nom m p 1.07 0.88 0.08 0.41 +exécutez exécuter ver 25.02 37.77 1.53 0.14 imp:pre:2p;ind:pre:2p; +exécutiez exécuter ver 25.02 37.77 0.03 0 ind:imp:2p; +exécutif exécutif adj m s 2.13 1.62 1.26 1.42 +exécutifs exécutif adj m p 2.13 1.62 0.7 0 +exécution exécution nom f s 17.49 23.51 15.6 20.68 +exécutions exécution nom f p 17.49 23.51 1.89 2.84 +exécutive exécutif adj f s 2.13 1.62 0.17 0.2 +exécutoire exécutoire adj f s 0.42 0.14 0.42 0.07 +exécutoires exécutoire adj p 0.42 0.14 0 0.07 +exécutons exécuter ver 25.02 37.77 0.27 0 imp:pre:1p;ind:pre:1p; +exécutrice exécuteur nom f s 1.07 0.88 0.02 0 +exécutèrent exécuter ver 25.02 37.77 0.11 0.27 ind:pas:3p; +exécuté exécuter ver m s 25.02 37.77 6.92 6.89 par:pas; +exécutée exécuter ver f s 25.02 37.77 0.96 2.3 par:pas; +exécutées exécuter ver f p 25.02 37.77 0.66 1.01 par:pas; +exécutés exécuter ver m p 25.02 37.77 1.69 2.3 par:pas; +exégèse exégèse nom f s 0.14 0.61 0.14 0.41 +exégèses exégèse nom f p 0.14 0.61 0 0.2 +exégète exégète nom s 0 0.54 0 0.2 +exégètes exégète nom p 0 0.54 0 0.34 +eye_liner eye_liner nom m s 0.22 0.27 0.22 0.27 +eyeliner eyeliner nom m s 0.12 0 0.12 0 +eûmes avoir aux 18559.22 12800.81 0.14 1.08 ind:pas:1p; +eût avoir aux 18559.22 12800.81 6.38 203.51 sub:imp:3s; +eûtes avoir ver_sup 13572.4 6426.49 0.01 0 ind:pas:2p; +f f nom_sup m s 26.65 7.09 26.65 7.09 +fa fa nom m 5.23 1.08 5.23 1.08 +fabiens fabien nom m p 0 0.07 0 0.07 +fable fable nom f s 2.59 9.8 1.79 5.81 +fables fable nom f p 2.59 9.8 0.8 3.99 +fabliau fabliau nom m s 0 0.41 0 0.27 +fabliaux fabliau nom m p 0 0.41 0 0.14 +fabricant fabricant nom m s 3.67 3.45 2.55 2.23 +fabricante fabricant nom f s 3.67 3.45 0 0.07 +fabricantes fabricant nom f p 3.67 3.45 0 0.07 +fabricants fabricant nom m p 3.67 3.45 1.12 1.08 +fabrication fabrication nom f s 4.07 7.97 4.06 6.55 +fabrications fabrication nom f p 4.07 7.97 0.01 1.42 +fabriqua fabriquer ver 40.37 47.57 0.05 0.47 ind:pas:3s; +fabriquai fabriquer ver 40.37 47.57 0 0.2 ind:pas:1s; +fabriquaient fabriquer ver 40.37 47.57 0.4 1.15 ind:imp:3p; +fabriquais fabriquer ver 40.37 47.57 0.46 0.95 ind:imp:1s;ind:imp:2s; +fabriquait fabriquer ver 40.37 47.57 0.93 4.53 ind:imp:3s; +fabriquant fabriquer ver 40.37 47.57 0.67 0.95 par:pre; +fabrique fabriquer ver 40.37 47.57 7.5 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fabriquent fabriquer ver 40.37 47.57 3.06 1.35 ind:pre:3p; +fabriquer fabriquer ver 40.37 47.57 6.97 13.51 inf; +fabriquera fabriquer ver 40.37 47.57 0.19 0.07 ind:fut:3s; +fabriquerai fabriquer ver 40.37 47.57 0.06 0.14 ind:fut:1s; +fabriquerais fabriquer ver 40.37 47.57 0.17 0 cnd:pre:1s;cnd:pre:2s; +fabriquerait fabriquer ver 40.37 47.57 0 0.47 cnd:pre:3s; +fabriquerez fabriquer ver 40.37 47.57 0.04 0 ind:fut:2p; +fabriquerons fabriquer ver 40.37 47.57 0.01 0 ind:fut:1p; +fabriqueront fabriquer ver 40.37 47.57 0.01 0 ind:fut:3p; +fabriques fabriquer ver 40.37 47.57 6.32 0.88 ind:pre:2s; +fabriquez fabriquer ver 40.37 47.57 1.72 0.54 imp:pre:2p;ind:pre:2p; +fabriquiez fabriquer ver 40.37 47.57 0.22 0.07 ind:imp:2p; +fabriquions fabriquer ver 40.37 47.57 0.02 0.34 ind:imp:1p; +fabriquons fabriquer ver 40.37 47.57 0.35 0.2 imp:pre:1p;ind:pre:1p; +fabriquèrent fabriquer ver 40.37 47.57 0.02 0.2 ind:pas:3p; +fabriqué fabriquer ver m s 40.37 47.57 7.51 8.18 par:pas; +fabriquée fabriquer ver f s 40.37 47.57 1.93 2.97 par:pas; +fabriquées fabriquer ver f p 40.37 47.57 0.84 1.49 par:pas; +fabriqués fabriquer ver m p 40.37 47.57 0.93 2.43 par:pas; +fabulateur fabulateur adj m s 0 0.07 0 0.07 +fabulation fabulation nom f s 0.14 0.41 0.03 0.2 +fabulations fabulation nom f p 0.14 0.41 0.11 0.2 +fabulatrice fabulateur nom f s 0 0.07 0 0.07 +fabule fabuler ver 0.42 0.34 0.31 0.07 ind:pre:1s;ind:pre:3s; +fabuler fabuler ver 0.42 0.34 0.02 0.2 inf; +fabuleuse fabuleux adj f s 15.34 17.5 3.48 4.73 +fabuleusement fabuleusement adv 0.29 0.74 0.29 0.74 +fabuleuses fabuleux adj f p 15.34 17.5 0.76 2.91 +fabuleux fabuleux adj m 15.34 17.5 11.1 9.86 +fabulez fabuler ver 0.42 0.34 0.06 0 ind:pre:2p; +fabuliste fabuliste nom s 0 0.07 0 0.07 +fabulé fabuler ver m s 0.42 0.34 0.02 0.07 par:pas; +fac fac nom f s 29.65 2.36 28.94 2.09 +fac_similé fac_similé nom m s 0.03 0.34 0.02 0.27 +fac_similé fac_similé nom m p 0.03 0.34 0.01 0.07 +face face nom f s 125.32 270.88 124.33 262.16 +face_à_face face_à_face nom m 0 0.47 0 0.47 +face_à_main face_à_main nom m s 0 0.54 0 0.54 +faces face nom f p 125.32 270.88 0.98 8.72 +faces_à_main faces_à_main nom m p 0 0.07 0 0.07 +facette facette nom f s 1.21 3.18 0.67 0.07 +facettes facette nom f p 1.21 3.18 0.55 3.11 +facettés facetter ver m p 0 0.07 0 0.07 par:pas; +facho facho nom m s 1.17 0.54 0.48 0 +fachos facho nom m p 1.17 0.54 0.69 0.54 +facial facial adj m s 2.29 0.54 0.69 0.2 +faciale facial adj f s 2.29 0.54 1.04 0.2 +faciales facial adj f p 2.29 0.54 0.21 0.07 +faciaux facial adj m p 2.29 0.54 0.34 0.07 +facile facile adj s 159.35 98.65 153.57 88.65 +facilement facilement adv 26.85 37.03 26.85 37.03 +faciles facile adj p 159.35 98.65 5.78 10 +facilita faciliter ver 8.76 12.57 0.01 0.07 ind:pas:3s; +facilitaient faciliter ver 8.76 12.57 0.01 0.47 ind:imp:3p; +facilitait faciliter ver 8.76 12.57 0.16 1.42 ind:imp:3s; +facilitant faciliter ver 8.76 12.57 0.09 0.14 par:pre; +facilitateur facilitateur nom m s 0.03 0 0.03 0 +facilitation facilitation nom f s 0.03 0 0.03 0 +facilite faciliter ver 8.76 12.57 1.39 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +facilitent faciliter ver 8.76 12.57 0.08 0.54 ind:pre:3p; +faciliter faciliter ver 8.76 12.57 4.08 5.14 ind:pre:2p;inf; +facilitera faciliter ver 8.76 12.57 0.73 0.07 ind:fut:3s; +faciliterai faciliter ver 8.76 12.57 0.06 0 ind:fut:1s; +faciliteraient faciliter ver 8.76 12.57 0 0.07 cnd:pre:3p; +faciliterais faciliter ver 8.76 12.57 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +faciliterait faciliter ver 8.76 12.57 0.69 0.74 cnd:pre:3s; +faciliteront faciliter ver 8.76 12.57 0.04 0.14 ind:fut:3p; +facilitez faciliter ver 8.76 12.57 0.33 0 imp:pre:2p;ind:pre:2p; +facilitons faciliter ver 8.76 12.57 0.01 0 ind:pre:1p; +facilité facilité nom f s 2.09 15.07 1.47 11.55 +facilitée faciliter ver f s 8.76 12.57 0.06 0.47 par:pas; +facilitées faciliter ver f p 8.76 12.57 0.02 0.2 par:pas; +facilités facilité nom f p 2.09 15.07 0.62 3.51 +faciès faciès nom m 0.21 2.09 0.21 2.09 +faconde faconde nom f s 0 1.62 0 1.62 +facs fac nom f p 29.65 2.36 0.71 0.27 +facteur facteur nom m s 12.26 14.32 9.67 12.36 +facteurs facteur nom m p 12.26 14.32 2.54 1.96 +factice factice adj s 0.79 3.65 0.43 2.77 +factices factice adj p 0.79 3.65 0.36 0.88 +factieux factieux nom m 0.24 0.14 0.24 0.14 +faction faction nom f s 1.52 4.73 0.69 3.72 +factionnaire factionnaire nom s 0.04 1.69 0 0.95 +factionnaires factionnaire nom p 0.04 1.69 0.04 0.74 +factions faction nom f p 1.52 4.73 0.83 1.01 +factor factor nom m s 0.03 0 0.03 0 +factorielle factoriel nom f s 0.01 0.14 0.01 0.07 +factorielles factoriel nom f p 0.01 0.14 0 0.07 +factorisation factorisation nom f s 0.01 0 0.01 0 +factoriser factoriser ver 0.04 0 0.04 0 inf; +factotum factotum nom m s 0.66 1.15 0.66 0.95 +factotums factotum nom m p 0.66 1.15 0 0.2 +factrice facteur nom f s 12.26 14.32 0.06 0 +factuel factuel adj m s 0.15 0 0.11 0 +factuelles factuel adj f p 0.15 0 0.03 0 +factuels factuel adj m p 0.15 0 0.01 0 +factum factum nom m s 0 0.34 0 0.27 +factums factum nom m p 0 0.34 0 0.07 +facturation facturation nom f s 0.26 0.07 0.26 0.07 +facture facture nom f s 22.61 8.72 12.24 4.66 +facturent facturer ver 1.9 0.14 0.09 0 ind:pre:3p; +facturer facturer ver 1.9 0.14 0.56 0 inf; +facturera facturer ver 1.9 0.14 0.05 0 ind:fut:3s; +facturerait facturer ver 1.9 0.14 0 0.07 cnd:pre:3s; +factures facture nom f p 22.61 8.72 10.37 4.05 +facturette facturette nom f s 0.01 0 0.01 0 +facturez facturer ver 1.9 0.14 0.2 0 imp:pre:2p;ind:pre:2p; +facturier facturier nom m s 0.14 0.14 0.14 0 +facturière facturier nom f s 0.14 0.14 0 0.14 +facturons facturer ver 1.9 0.14 0.05 0.07 imp:pre:1p;ind:pre:1p; +facturé facturer ver m s 1.9 0.14 0.3 0 par:pas; +facturée facturer ver f s 1.9 0.14 0.05 0 par:pas; +facturées facturer ver f p 1.9 0.14 0.02 0 par:pas; +facturés facturer ver m p 1.9 0.14 0.04 0 par:pas; +facultatif facultatif adj m s 0.44 0.47 0.14 0.14 +facultatifs facultatif adj m p 0.44 0.47 0.09 0.14 +facultative facultatif adj f s 0.44 0.47 0.21 0.2 +faculté faculté nom f s 8.73 17.3 5.93 13.85 +facultés faculté nom f p 8.73 17.3 2.8 3.45 +facétie facétie nom f s 0.17 1.96 0.14 0.54 +facéties facétie nom f p 0.17 1.96 0.02 1.42 +facétieuse facétieux adj f s 0.08 1.49 0.01 0.47 +facétieusement facétieusement adv 0 0.34 0 0.34 +facétieuses facétieux adj f p 0.08 1.49 0 0.14 +facétieux facétieux adj m s 0.08 1.49 0.07 0.88 +fada fada adj m s 1.81 0.47 1.81 0.47 +fadaise fadaise nom f s 0.62 1.49 0 0.07 +fadaises fadaise nom f p 0.62 1.49 0.62 1.42 +fadas fada nom p 0.7 0.68 0.28 0.34 +fadasse fadasse adj s 0.04 1.08 0.04 0.88 +fadasses fadasse adj f p 0.04 1.08 0 0.2 +fade fade adj s 2.06 14.93 1.51 10.34 +fadement fadement adv 0 0.07 0 0.07 +fadent fader ver 0.01 1.76 0 0.07 ind:pre:3p; +fader fader ver 0.01 1.76 0.01 0.61 inf; +faderas fader ver 0.01 1.76 0 0.07 ind:fut:2s; +fades fade adj p 2.06 14.93 0.55 4.59 +fadette fadette nom f s 0 0.47 0 0.47 +fadeur fadeur nom f s 0.32 1.82 0.32 1.49 +fadeurs fadeur nom f p 0.32 1.82 0 0.34 +fading fading nom m s 0.01 0.07 0.01 0.07 +fado fado nom m s 3.33 0 3.33 0 +fadé fader ver m s 0.01 1.76 0 0.27 par:pas; +fadée fadé adj f s 0 0.34 0 0.14 +fadés fader ver m p 0.01 1.76 0 0.07 par:pas; +faena faena nom f s 0 0.07 0 0.07 +faf faf nom m s 0.07 0.88 0.04 0 +fafiot fafiot nom m s 0.28 0.74 0 0.07 +fafiots fafiot nom m p 0.28 0.74 0.28 0.68 +fafs faf nom m p 0.07 0.88 0.03 0.88 +fagne fagne nom f s 0 0.34 0 0.2 +fagnes fagne nom f p 0 0.34 0 0.14 +fagot fagot nom m s 0.19 10.68 0.03 2.64 +fagotage fagotage nom m s 0 0.07 0 0.07 +fagotait fagoter ver 0.05 1.15 0 0.07 ind:imp:3s; +fagotant fagoter ver 0.05 1.15 0 0.07 par:pre; +fagote fagoter ver 0.05 1.15 0 0.07 ind:pre:1s; +fagoter fagoter ver 0.05 1.15 0 0.27 inf; +fagotiers fagotier nom m p 0 0.07 0 0.07 +fagotin fagotin nom m s 0 0.27 0 0.14 +fagotins fagotin nom m p 0 0.27 0 0.14 +fagots fagot nom m p 0.19 10.68 0.16 8.04 +fagoté fagoté adj m s 0.3 0.74 0.13 0.34 +fagotée fagoté adj f s 0.3 0.74 0.09 0.27 +fagotées fagoté adj f p 0.3 0.74 0.02 0.14 +fagotés fagoté adj m p 0.3 0.74 0.06 0 +fahrenheit fahrenheit adj m p 0.15 0.07 0.15 0.07 +faiblard faiblard adj m s 0.23 1.76 0.19 1.15 +faiblarde faiblard adj f s 0.23 1.76 0.03 0.27 +faiblards faiblard adj m p 0.23 1.76 0.01 0.34 +faible faible adj s 38.78 53.65 31.03 40.95 +faiblement faiblement adv 0.65 16.89 0.65 16.89 +faibles faible adj p 38.78 53.65 7.75 12.7 +faiblesse faiblesse nom f s 14.71 31.62 11.32 25.34 +faiblesses faiblesse nom f p 14.71 31.62 3.38 6.28 +faibli faiblir ver m s 2.62 7.03 0.15 0.74 par:pas; +faiblir faiblir ver 2.62 7.03 0.73 2.77 inf; +faiblira faiblir ver 2.62 7.03 0.08 0.07 ind:fut:3s; +faiblirent faiblir ver 2.62 7.03 0 0.14 ind:pas:3p; +faiblis faiblir ver 2.62 7.03 0.16 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +faiblissaient faiblir ver 2.62 7.03 0 0.27 ind:imp:3p; +faiblissais faiblir ver 2.62 7.03 0 0.14 ind:imp:1s; +faiblissait faiblir ver 2.62 7.03 0.04 1.15 ind:imp:3s; +faiblissant faiblir ver 2.62 7.03 0 0.2 par:pre; +faiblissante faiblissant adj f s 0.16 0.07 0.02 0 +faiblissantes faiblissant adj f p 0.16 0.07 0.14 0.07 +faiblisse faiblir ver 2.62 7.03 0.11 0.14 sub:pre:3s; +faiblissent faiblir ver 2.62 7.03 0.11 0.27 ind:pre:3p; +faiblissez faiblir ver 2.62 7.03 0.01 0 ind:pre:2p; +faiblissions faiblir ver 2.62 7.03 0.14 0.07 ind:imp:1p; +faiblit faiblir ver 2.62 7.03 1.1 0.88 ind:pre:3s;ind:pas:3s; +faiblît faiblir ver 2.62 7.03 0 0.14 sub:imp:3s; +faignant faignant nom m s 0.16 0.2 0.01 0.07 +faignante faignanter ver 0.1 0 0.1 0 sub:pre:3s; +faignants faignant nom m p 0.16 0.2 0.14 0.14 +faillait failler ver 1.84 1.96 0.01 0 ind:imp:3s; +faille faille nom f s 4.71 9.59 3.85 7.43 +failles faille nom f p 4.71 9.59 0.86 2.16 +failli faillir ver m s 44.19 43.65 42.7 22.43 par:pas; +faillibilité faillibilité nom f s 0.01 0.07 0.01 0 +faillibilités faillibilité nom f p 0.01 0.07 0 0.07 +faillible faillible adj s 0.09 0.34 0.06 0.27 +faillibles faillible adj m p 0.09 0.34 0.04 0.07 +faillie faillie adj m p 0.1 0.07 0.1 0 +faillies faillie adj m p 0.1 0.07 0 0.07 +faillir faillir ver 44.19 43.65 0.39 0.95 inf; +faillirai faillir ver 44.19 43.65 0.03 0.07 ind:fut:1s; +faillirent faillir ver 44.19 43.65 0.14 0.81 ind:pas:3p; +faillis faillir ver 44.19 43.65 0.27 3.11 ind:pas:1s;ind:pas:2s; +faillit faillir ver 44.19 43.65 0.66 16.22 ind:pas:3s; +faillite faillite nom f s 6.94 7.77 6.74 7.16 +faillites faillite nom f p 6.94 7.77 0.2 0.61 +faillîmes faillir ver 44.19 43.65 0.01 0.07 ind:pas:1p; +faim faim nom f s 128.04 75.95 127.49 74.93 +faims faim nom f p 128.04 75.95 0.55 1.01 +faine faine nom f s 1.77 0.07 1.77 0.07 +fainéant fainéant nom m s 3.87 1.69 1.59 0.81 +fainéantais fainéanter ver 0.07 0.34 0 0.07 ind:imp:1s; +fainéantant fainéanter ver 0.07 0.34 0 0.07 par:pre; +fainéante fainéant nom f s 3.87 1.69 0.37 0.14 +fainéanter fainéanter ver 0.07 0.34 0.04 0.14 inf; +fainéantes fainéant adj f p 1.66 1.89 0.12 0 +fainéantise fainéantise nom f s 0.04 0.34 0.04 0.34 +fainéants fainéant nom m p 3.87 1.69 1.81 0.74 +fair_play fair_play nom m 0.6 0.14 0.6 0.14 +faire faire ver_sup 8813.48 5328.99 2735.96 1555.14 inf;;inf;;inf;;inf;; +faire_part faire_part nom m 0.65 3.04 0.65 3.04 +faire_valoir faire_valoir nom m 0.2 0.68 0.2 0.68 +fais faire ver_sup 8813.48 5328.99 1390.92 224.26 imp:pre:2s;ind:pre:1s;ind:pre:2s; +faisabilité faisabilité nom f s 0.19 0 0.19 0 +faisable faisable adj s 3.63 0.95 3.63 0.95 +faisaient faire ver_sup 8813.48 5328.99 20.25 123.38 ind:imp:3p; +faisais faire ver_sup 8813.48 5328.99 75.81 60.54 ind:imp:1s;ind:imp:2s; +faisait faire ver_sup 8813.48 5328.99 134.9 524.73 ind:imp:3s; +faisan faisan nom m s 1.13 4.12 0.98 1.69 +faisander faisander ver 0.06 0.41 0.04 0.07 inf; +faisanderie faisanderie nom f s 0 0.27 0 0.27 +faisandé faisandé adj m s 0.12 1.15 0.02 0.47 +faisandée faisandé adj f s 0.12 1.15 0.1 0.41 +faisandées faisandé adj f p 0.12 1.15 0 0.07 +faisandés faisandé adj m p 0.12 1.15 0 0.2 +faisane faisan nom f s 1.13 4.12 0 0.34 +faisans faisan nom m p 1.13 4.12 0.14 2.09 +faisant faire ver_sup 8813.48 5328.99 30.88 118.11 par:pre; +faisceau faisceau nom m s 1.71 10 1.27 6.82 +faisceaux faisceau nom m p 1.71 10 0.44 3.18 +faiseur faiseur nom m s 1.89 3.24 0.88 1.42 +faiseurs faiseur nom m p 1.89 3.24 0.6 0.74 +faiseuse faiseur nom f s 1.89 3.24 0.38 0.54 +faiseuses faiseur nom f p 1.89 3.24 0.04 0.54 +faisiez faire ver_sup 8813.48 5328.99 15.98 3.31 ind:imp:2p; +faisions faire ver_sup 8813.48 5328.99 5.01 12.16 ind:imp:1p; +faisons faire ver_sup 8813.48 5328.99 64.49 15.88 imp:pre:1p;ind:pre:1p; +fait faire ver_sup m s 8813.48 5328.99 2751.99 1459.26 ind:pre:3s;par:pas;par:pas; +fait_divers fait_divers nom m 0 0.2 0 0.2 +fait_tout fait_tout nom m 0.01 0.74 0.01 0.74 +faite faire ver_sup f s 8813.48 5328.99 0.14 59.39 par:pas; +faites faire ver_sup f p 8813.48 5328.99 541.8 93.31 imp:pre:2p;ind:pre:2p;par:pas;;imp:pre:2p;ind:pre:2p;par:pas; +faitout faitout nom m s 0.2 0.14 0.2 0.07 +faitouts faitout nom m p 0.2 0.14 0 0.07 +faits fait nom m p 412.07 355.54 27.36 30.27 +faits_divers faits_divers nom m p 0 0.07 0 0.07 +faix faix nom m 0.1 0.68 0.1 0.68 +fakir fakir nom m s 0.72 1.22 0.45 0.88 +fakirs fakir nom m p 0.72 1.22 0.28 0.34 +falaise falaise nom f s 5.85 20.68 4.45 15.47 +falaises falaise nom f p 5.85 20.68 1.41 5.2 +falbala falbala nom m s 0.16 1.55 0.14 0.41 +falbalas falbala nom m p 0.16 1.55 0.02 1.15 +falciforme falciforme adj s 0.01 0.07 0.01 0.07 +falerne falerne nom m s 0 0.07 0 0.07 +fallacieuse fallacieux adj f s 0.23 2.3 0.13 0.54 +fallacieusement fallacieusement adv 0.01 0.2 0.01 0.2 +fallacieuses fallacieux adj f p 0.23 2.3 0 0.41 +fallacieux fallacieux adj m 0.23 2.3 0.1 1.35 +fallait falloir ver_sup 1653.76 1250.41 110.88 310.61 ind:imp:3s; +falloir falloir ver_sup 1653.76 1250.41 39.78 17.77 inf; +fallu falloir ver_sup m s 1653.76 1250.41 23.82 68.04 par:pas; +fallut falloir ver_sup 1653.76 1250.41 1.35 26.89 ind:pas:3s; +fallût falloir ver_sup 1653.76 1250.41 0.01 0.27 sub:imp:3s; +falot falot nom m s 0.11 0.88 0.11 0.68 +falote falot adj f s 0.04 1.76 0.01 0.54 +falotes falot adj f p 0.04 1.76 0 0.14 +falots falot adj m p 0.04 1.76 0.01 0.2 +falsifiaient falsifier ver 2.5 1.35 0.01 0 ind:imp:3p; +falsifiais falsifier ver 2.5 1.35 0 0.07 ind:imp:1s; +falsifiait falsifier ver 2.5 1.35 0.15 0.07 ind:imp:3s; +falsifiant falsifier ver 2.5 1.35 0.01 0.07 par:pre; +falsification falsification nom f s 0.37 0.27 0.37 0.27 +falsifient falsifier ver 2.5 1.35 0.02 0 ind:pre:3p; +falsifier falsifier ver 2.5 1.35 0.68 0.2 inf; +falsifiez falsifier ver 2.5 1.35 0.02 0 imp:pre:2p;ind:pre:2p; +falsifié falsifier ver m s 2.5 1.35 0.86 0.27 par:pas; +falsifiée falsifier ver f s 2.5 1.35 0.41 0.27 par:pas; +falsifiées falsifier ver f p 2.5 1.35 0.1 0.2 par:pas; +falsifiés falsifier ver m p 2.5 1.35 0.25 0.2 par:pas; +faluche faluche nom f s 0 0.14 0 0.14 +falzar falzar nom m s 0.36 1.01 0.29 0.88 +falzars falzar nom m p 0.36 1.01 0.07 0.14 +fameuse fameux adj f s 18.67 53.11 4.74 16.28 +fameusement fameusement adv 0.02 0.07 0.02 0.07 +fameuses fameux adj f p 18.67 53.11 1.17 3.51 +fameux fameux adj m 18.67 53.11 12.77 33.31 +familial familial adj m s 15.66 32.84 5 12.36 +familiale familial adj f s 15.66 32.84 7.22 12.97 +familiales familial adj f p 15.66 32.84 1.97 4.8 +familialiste familialiste nom s 0 0.07 0 0.07 +familiarisa familiariser ver 0.89 2.36 0 0.2 ind:pas:3s; +familiarisaient familiariser ver 0.89 2.36 0 0.07 ind:imp:3p; +familiarisais familiariser ver 0.89 2.36 0 0.07 ind:imp:1s; +familiarisait familiariser ver 0.89 2.36 0.03 0.14 ind:imp:3s; +familiarisant familiariser ver 0.89 2.36 0 0.14 par:pre; +familiarise familiariser ver 0.89 2.36 0.1 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +familiarisent familiariser ver 0.89 2.36 0 0.07 ind:pre:3p; +familiariser familiariser ver 0.89 2.36 0.51 0.68 inf; +familiariserez familiariser ver 0.89 2.36 0.02 0 ind:fut:2p; +familiarisez familiariser ver 0.89 2.36 0.03 0 imp:pre:2p;ind:pre:2p; +familiarisé familiariser ver m s 0.89 2.36 0.17 0.61 par:pas; +familiarisée familiariser ver f s 0.89 2.36 0.02 0.27 par:pas; +familiarisés familiariser ver m p 0.89 2.36 0.01 0.07 par:pas; +familiarité familiarité nom f s 1.43 7.3 0.97 7.09 +familiarités familiarité nom f p 1.43 7.3 0.46 0.2 +familiaux familial adj m p 15.66 32.84 1.47 2.7 +familier familier adj m s 11.3 47.91 7.77 18.31 +familiers familier adj m p 11.3 47.91 1.54 11.55 +familistère familistère nom m s 0 0.07 0 0.07 +familière familier adj f s 11.3 47.91 1.63 13.11 +familièrement familièrement adv 0.15 2.09 0.15 2.09 +familières familier adj f p 11.3 47.91 0.37 4.93 +famille famille nom f s 384.92 274.39 357.75 241.69 +familles famille nom f p 384.92 274.39 27.16 32.7 +famine famine nom f s 4.88 6.76 4.4 5.61 +famines famine nom f p 4.88 6.76 0.48 1.15 +famulus famulus nom m 0 0.14 0 0.14 +famé famé adj m s 0.52 1.49 0.38 0.68 +famée famé adj f s 0.52 1.49 0.04 0.14 +famées famé adj f p 0.52 1.49 0.02 0.34 +famélique famélique adj s 0.32 2.57 0.17 1.15 +faméliques famélique adj p 0.32 2.57 0.15 1.42 +famés famé adj m p 0.52 1.49 0.08 0.34 +fan fan nom s 21.43 2.91 13.27 1.49 +fan_club fan_club nom m s 0.28 0.14 0.28 0.14 +fana fana nom s 0.61 0.27 0.43 0.07 +fanaient faner ver 3.73 5.54 0.02 0.47 ind:imp:3p; +fanait faner ver 3.73 5.54 0 0.27 ind:imp:3s; +fanal fanal nom m s 0.34 3.24 0.34 2.36 +fanant faner ver 3.73 5.54 0.01 0 par:pre; +fanas fana nom p 0.61 0.27 0.18 0.2 +fanatique fanatique nom s 3.56 3.92 1.22 1.69 +fanatiquement fanatiquement adv 0.02 0.34 0.02 0.34 +fanatiques fanatique nom p 3.56 3.92 2.34 2.23 +fanatisait fanatiser ver 0.02 0.81 0 0.07 ind:imp:3s; +fanatise fanatiser ver 0.02 0.81 0 0.07 ind:pre:3s; +fanatiser fanatiser ver 0.02 0.81 0 0.07 inf; +fanatisme fanatisme nom m s 0.54 2.84 0.54 2.7 +fanatismes fanatisme nom m p 0.54 2.84 0 0.14 +fanatisé fanatiser ver m s 0.02 0.81 0 0.2 par:pas; +fanatisés fanatiser ver m p 0.02 0.81 0.02 0.41 par:pas; +fanaux fanal nom m p 0.34 3.24 0 0.88 +fanchon fanchon nom f s 0 0.07 0 0.07 +fandango fandango nom m s 0.38 0 0.38 0 +fane faner ver 3.73 5.54 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fanent faner ver 3.73 5.54 0.95 0.47 ind:pre:3p; +faner faner ver 3.73 5.54 0.89 1.01 inf; +fanera faner ver 3.73 5.54 0.28 0.07 ind:fut:3s; +faneraient faner ver 3.73 5.54 0.01 0.07 cnd:pre:3p; +fanerait faner ver 3.73 5.54 0 0.07 cnd:pre:3s; +faneras faner ver 3.73 5.54 0.1 0.07 ind:fut:2s; +fanerions faner ver 3.73 5.54 0.1 0 cnd:pre:1p; +faneront faner ver 3.73 5.54 0.05 0 ind:fut:3p; +fanes faner ver 3.73 5.54 0.01 0 ind:pre:2s; +faneuse faneur nom f s 0 0.27 0 0.2 +faneuses faneur nom f p 0 0.27 0 0.07 +fanez faner ver 3.73 5.54 0.02 0 imp:pre:2p;ind:pre:2p; +fanfan fanfan nom m s 1.22 0 1.22 0 +fanfare fanfare nom f s 4.07 5.27 3.8 3.72 +fanfares fanfare nom f p 4.07 5.27 0.27 1.55 +fanfaron fanfaron nom m s 0.9 0.47 0.68 0.2 +fanfaronna fanfaronner ver 0.42 0.74 0 0.14 ind:pas:3s; +fanfaronnade fanfaronnade nom f s 0.4 0.74 0.18 0.54 +fanfaronnades fanfaronnade nom f p 0.4 0.74 0.22 0.2 +fanfaronnaient fanfaronner ver 0.42 0.74 0 0.14 ind:imp:3p; +fanfaronnait fanfaronner ver 0.42 0.74 0 0.14 ind:imp:3s; +fanfaronnant fanfaronner ver 0.42 0.74 0.02 0.07 par:pre; +fanfaronne fanfaronner ver 0.42 0.74 0.34 0.14 imp:pre:2s;ind:pre:3s; +fanfaronner fanfaronner ver 0.42 0.74 0.05 0.07 inf; +fanfaronnes fanfaronner ver 0.42 0.74 0.01 0 ind:pre:2s; +fanfaronné fanfaronner ver m s 0.42 0.74 0 0.07 par:pas; +fanfarons fanfaron nom m p 0.9 0.47 0.22 0.2 +fanfreluche fanfreluche nom f s 0.16 1.42 0.02 0 +fanfreluches fanfreluche nom f p 0.16 1.42 0.14 1.42 +fang fang adj f s 0.03 0.07 0.03 0.07 +fange fange nom f s 0.74 1.96 0.74 1.89 +fanges fange nom f p 0.74 1.96 0 0.07 +fangeuse fangeux adj f s 0.18 2.09 0.14 0.54 +fangeuses fangeux adj f p 0.18 2.09 0.01 0.14 +fangeux fangeux adj m 0.18 2.09 0.02 1.42 +fanion fanion nom m s 0.25 3.51 0.16 2.64 +fanions fanion nom m p 0.25 3.51 0.09 0.88 +fanny fanny adj f s 1.06 0.14 1.06 0.14 +fanon fanon nom m s 0.04 0.61 0.03 0.07 +fanons fanon nom m p 0.04 0.61 0.01 0.54 +fans fan nom p 21.43 2.91 8.17 1.42 +fantaisie fantaisie nom f s 6.98 16.89 5.57 14.26 +fantaisies fantaisie nom f p 6.98 16.89 1.41 2.64 +fantaisiste fantaisiste adj s 0.8 1.76 0.59 0.68 +fantaisistes fantaisiste adj p 0.8 1.76 0.2 1.08 +fantasia fantasia nom f s 0.33 0.54 0.33 0.54 +fantasmagorie fantasmagorie nom f s 0.17 0.88 0.17 0.81 +fantasmagories fantasmagorie nom f p 0.17 0.88 0 0.07 +fantasmagorique fantasmagorique adj m s 0 0.14 0 0.14 +fantasmaient fantasmer ver 2.04 1.08 0.01 0.07 ind:imp:3p; +fantasmais fantasmer ver 2.04 1.08 0.04 0.07 ind:imp:1s;ind:imp:2s; +fantasmait fantasmer ver 2.04 1.08 0.03 0.2 ind:imp:3s; +fantasmatique fantasmatique adj f s 0.03 0.14 0.03 0.14 +fantasmatiquement fantasmatiquement adv 0 0.14 0 0.14 +fantasme fantasme nom m s 9.18 6.35 4.64 1.49 +fantasment fantasmer ver 2.04 1.08 0.04 0 ind:pre:3p; +fantasmer fantasmer ver 2.04 1.08 0.86 0.34 inf; +fantasmes fantasme nom m p 9.18 6.35 4.54 4.86 +fantasmez fantasmer ver 2.04 1.08 0.21 0 imp:pre:2p;ind:pre:2p; +fantasmé fantasmer ver m s 2.04 1.08 0.33 0.07 par:pas; +fantasmés fantasmer ver m p 2.04 1.08 0.01 0 par:pas; +fantasque fantasque adj s 0.88 3.72 0.52 3.04 +fantasquement fantasquement adv 0 0.07 0 0.07 +fantasques fantasque adj p 0.88 3.72 0.36 0.68 +fantassin fantassin nom m s 0.78 6.62 0.29 1.96 +fantassins fantassin nom m p 0.78 6.62 0.48 4.66 +fantastique fantastique adj s 26.9 10.34 24.2 7.09 +fantastiquement fantastiquement adv 0.07 0.34 0.07 0.34 +fantastiques fantastique adj p 26.9 10.34 2.69 3.24 +fanti fanti nom m s 0 0.07 0 0.07 +fantoche fantoche nom m s 0.48 1.28 0.21 0.47 +fantoches fantoche nom m p 0.48 1.28 0.27 0.81 +fantomale fantomal adj f s 0 0.14 0 0.07 +fantomales fantomal adj f p 0 0.14 0 0.07 +fantomatique fantomatique adj s 0.2 3.65 0.19 2.77 +fantomatiquement fantomatiquement adv 0 0.07 0 0.07 +fantomatiques fantomatique adj p 0.2 3.65 0.01 0.88 +fantôme fantôme nom m s 48.23 35.88 29.71 20.74 +fantômes fantôme nom m p 48.23 35.88 18.52 15.14 +fanzine fanzine nom m s 0.49 0.07 0.17 0 +fanzines fanzine nom m p 0.49 0.07 0.32 0.07 +fané fané adj m s 0.79 7.57 0.04 2.3 +fanée fané adj f s 0.79 7.57 0.4 1.69 +fanées faner ver f p 3.73 5.54 0.53 0.88 par:pas; +fanés fané adj m p 0.79 7.57 0.14 0.88 +faon faon nom m s 0.53 1.08 0.25 0.54 +faons faon nom m p 0.53 1.08 0.29 0.54 +faquin faquin nom m s 0.45 0.34 0.45 0.2 +faquins faquin nom m p 0.45 0.34 0 0.14 +far far nom m s 0.65 0.07 0.65 0.07 +far_west far_west nom m s 0.01 0.07 0.01 0.07 +farad farad nom m s 0.75 0.07 0.75 0 +farads farad nom m p 0.75 0.07 0 0.07 +faramineuse faramineux adj f s 0.23 0.68 0.01 0.14 +faramineuses faramineux adj f p 0.23 0.68 0.01 0.14 +faramineux faramineux adj m 0.23 0.68 0.2 0.41 +farandolaient farandoler ver 0 0.07 0 0.07 ind:imp:3p; +farandole farandole nom f s 0.32 1.42 0.32 0.95 +farandoles farandole nom f p 0.32 1.42 0 0.47 +faraud faraud adj m s 0.03 1.69 0.02 1.08 +faraude faraud nom f s 0.01 0.61 0.01 0 +farauder farauder ver 0 0.07 0 0.07 inf; +faraudes faraud nom f p 0.01 0.61 0 0.07 +farauds faraud adj m p 0.03 1.69 0.01 0.41 +farce farce nom f s 9.35 12.5 7.45 8.99 +farces farce nom f p 9.35 12.5 1.9 3.51 +farceur farceur nom m s 2.06 1.69 1.64 1.15 +farceurs farceur nom m p 2.06 1.69 0.21 0.47 +farceuse farceur nom f s 2.06 1.69 0.2 0 +farceuses farceur nom f p 2.06 1.69 0.01 0.07 +farci farcir ver m s 3.39 12.57 0.89 2.5 par:pas; +farcie farcir ver f s 3.39 12.57 0.47 1.35 par:pas; +farcies farci adj f p 2.41 2.23 0.56 0.74 +farcir farcir ver 3.39 12.57 1.23 4.73 inf; +farcirai farcir ver 3.39 12.57 0.02 0 ind:fut:1s; +farcirait farcir ver 3.39 12.57 0.01 0.07 cnd:pre:3s; +farcis farcir ver m p 3.39 12.57 0.64 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +farcissaient farcir ver 3.39 12.57 0 0.07 ind:imp:3p; +farcissais farcir ver 3.39 12.57 0.02 0.07 ind:imp:1s;ind:imp:2s; +farcissait farcir ver 3.39 12.57 0 0.54 ind:imp:3s; +farcissant farcir ver 3.39 12.57 0 0.07 par:pre; +farcisse farcir ver 3.39 12.57 0.01 0.54 sub:pre:1s;sub:pre:3s; +farcissez farcir ver 3.39 12.57 0.01 0.14 imp:pre:2p;ind:pre:2p; +farcit farcir ver 3.39 12.57 0.09 0.88 ind:pre:3s;ind:pas:3s; +fard fard nom m s 1.69 7.57 1.44 4.73 +fardaient farder ver 0.2 8.99 0 0.2 ind:imp:3p; +fardait farder ver 0.2 8.99 0 0.68 ind:imp:3s; +fardant farder ver 0.2 8.99 0.01 0 par:pre; +farde farder ver 0.2 8.99 0 0.54 ind:pre:3s; +fardeau fardeau nom m s 7.56 7.7 7 6.89 +fardeaux fardeau nom m p 7.56 7.7 0.56 0.81 +fardent farder ver 0.2 8.99 0 0.14 ind:pre:3p; +farder farder ver 0.2 8.99 0.03 0.61 inf; +fardier fardier nom m s 0 0.34 0 0.14 +fardiers fardier nom m p 0 0.34 0 0.2 +fards fard nom m p 1.69 7.57 0.25 2.84 +fardé farder ver m s 0.2 8.99 0 1.55 par:pas; +fardée farder ver f s 0.2 8.99 0.14 2.23 par:pas; +fardées farder ver f p 0.2 8.99 0.03 1.96 par:pas; +fardés farder ver m p 0.2 8.99 0 1.08 par:pas; +fare fare nom m s 0 0.07 0 0.07 +farfadet farfadet nom m s 0.45 0.41 0.31 0.14 +farfadets farfadet nom m p 0.45 0.41 0.14 0.27 +farfelu farfelu adj m s 1.77 1.28 0.93 0.61 +farfelue farfelu adj f s 1.77 1.28 0.35 0.2 +farfelues farfelu adj f p 1.77 1.28 0.18 0.14 +farfelus farfelu adj m p 1.77 1.28 0.32 0.34 +farfouilla farfouiller ver 1.17 4.12 0 0.54 ind:pas:3s; +farfouillais farfouiller ver 1.17 4.12 0.05 0.07 ind:imp:1s;ind:imp:2s; +farfouillait farfouiller ver 1.17 4.12 0 0.47 ind:imp:3s; +farfouillant farfouiller ver 1.17 4.12 0.02 0.14 par:pre; +farfouille farfouiller ver 1.17 4.12 0.34 0.68 ind:pre:1s;ind:pre:3s; +farfouillent farfouiller ver 1.17 4.12 0 0.07 ind:pre:3p; +farfouiller farfouiller ver 1.17 4.12 0.42 1.28 inf; +farfouillerait farfouiller ver 1.17 4.12 0 0.07 cnd:pre:3s; +farfouilles farfouiller ver 1.17 4.12 0.04 0.2 ind:pre:2s; +farfouilleurs farfouilleur adj m p 0 0.07 0 0.07 +farfouillez farfouiller ver 1.17 4.12 0.14 0.14 ind:pre:2p; +farfouillé farfouiller ver m s 1.17 4.12 0.15 0.47 par:pas; +faribole faribole nom f s 0.23 1.49 0 0.27 +fariboler fariboler ver 0 0.07 0 0.07 inf; +fariboles faribole nom f p 0.23 1.49 0.23 1.22 +farigoule farigoule nom f s 0 0.07 0 0.07 +farine farine nom f s 7.95 13.72 7.93 13.51 +farines farine nom f p 7.95 13.72 0.02 0.2 +farineuse farineux adj f s 0.03 1.08 0 0.41 +farineuses farineux adj f p 0.03 1.08 0.03 0.14 +farineux farineux adj m s 0.03 1.08 0 0.54 +farinée fariner ver f s 0 0.14 0 0.07 par:pas; +farinés fariner ver m p 0 0.14 0 0.07 par:pas; +farniente farniente nom m s 0.36 0.47 0.36 0.47 +faro faro nom m s 0.16 0.07 0.16 0.07 +farouche farouche adj s 2.39 15.2 1.9 11.62 +farouchement farouchement adv 0.26 4.05 0.26 4.05 +farouches farouche adj p 2.39 15.2 0.49 3.58 +farsi farsi nom m s 0.39 0 0.39 0 +fart fart nom m s 0.42 0 0.42 0 +farter farter ver 0.02 0 0.02 0 inf; +fascia fascia nom m s 0.07 0 0.07 0 +fascicule fascicule nom m s 0.02 0.95 0.01 0.34 +fascicules fascicule nom m p 0.02 0.95 0.01 0.61 +fascina fasciner ver 9.34 28.78 0.1 0.68 ind:pas:3s; +fascinaient fasciner ver 9.34 28.78 0.3 1.42 ind:imp:3p; +fascinais fasciner ver 9.34 28.78 0 0.07 ind:imp:1s; +fascinait fasciner ver 9.34 28.78 0.62 4.93 ind:imp:3s; +fascinant fascinant adj m s 11.64 5.54 7.78 2.91 +fascinante fascinant adj f s 11.64 5.54 2.47 1.42 +fascinantes fascinant adj f p 11.64 5.54 0.66 0.54 +fascinants fascinant adj m p 11.64 5.54 0.74 0.68 +fascination fascination nom f s 2.67 7.5 2.66 7.3 +fascinations fascination nom f p 2.67 7.5 0.01 0.2 +fascine fasciner ver 9.34 28.78 2.24 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fascinent fasciner ver 9.34 28.78 0.44 0.95 ind:pre:3p; +fasciner fasciner ver 9.34 28.78 0.35 0.88 inf; +fascinerait fasciner ver 9.34 28.78 0.01 0.07 cnd:pre:3s; +fascines fasciner ver 9.34 28.78 0.04 0 ind:pre:2s; +fascinez fasciner ver 9.34 28.78 0.04 0 ind:pre:2p; +fascinèrent fasciner ver 9.34 28.78 0 0.2 ind:pas:3p; +fasciné fasciner ver m s 9.34 28.78 2.67 9.46 par:pas; +fascinée fasciner ver f s 9.34 28.78 0.6 3.72 par:pas; +fascinées fasciner ver f p 9.34 28.78 0.05 0.14 par:pas; +fascinés fasciner ver m p 9.34 28.78 0.58 2.77 par:pas; +fascisme fascisme nom m s 1.94 6.76 1.94 6.76 +fasciste fasciste adj s 6.93 4.93 3.89 3.58 +fascistes fasciste adj p 6.93 4.93 3.04 1.35 +fascisée fasciser ver f s 0 0.07 0 0.07 par:pas; +faseyaient faseyer ver 0 0.14 0 0.07 ind:imp:3p; +faseyait faseyer ver 0 0.14 0 0.07 ind:imp:3s; +fashion fashion nom f s 0.28 0 0.28 0 +fashionable fashionable adj m s 0 0.2 0 0.2 +fasse faire ver_sup 8813.48 5328.99 93.83 60.88 sub:pre:1s;sub:pre:3s; +fassent faire ver_sup 8813.48 5328.99 9.05 7.3 sub:pre:3p; +fasses faire ver_sup 8813.48 5328.99 20.2 2.84 sub:pre:2s; +fassiez faire ver_sup 8813.48 5328.99 8.46 2.64 sub:pre:2p; +fassions faire ver_sup 8813.48 5328.99 1.63 2.09 sub:pre:1p; +fast_food fast_food nom m s 2.34 0.47 0.43 0.07 +fast_food fast_food nom m s 2.34 0.47 1.56 0.34 +fast_food fast_food nom m p 2.34 0.47 0.34 0.07 +faste faste adj s 0.57 1.28 0.53 0.61 +fastes faste adj p 0.57 1.28 0.04 0.68 +fastidieuse fastidieux adj f s 1.39 4.12 0.03 1.01 +fastidieusement fastidieusement adv 0 0.07 0 0.07 +fastidieuses fastidieux adj f p 1.39 4.12 0.26 0.74 +fastidieux fastidieux adj m 1.39 4.12 1.1 2.36 +fastoche fastoche adj m s 1.31 0.41 1.31 0.41 +fastueuse fastueux adj f s 0.38 3.38 0.22 1.08 +fastueusement fastueusement adv 0 0.34 0 0.34 +fastueuses fastueux adj f p 0.38 3.38 0.02 0.41 +fastueux fastueux adj m 0.38 3.38 0.14 1.89 +fat fat nom m s 2.29 0.34 2.21 0.2 +fatal fatal adj m s 11.69 23.38 5.37 12.3 +fatale fatal adj f s 11.69 23.38 5.37 8.92 +fatalement fatalement adv 0.44 5.07 0.44 5.07 +fatales fatal adj f p 11.69 23.38 0.82 1.49 +fatalise fataliser ver 0.06 0 0.04 0 imp:pre:2s; +fataliser fataliser ver 0.06 0 0.01 0 inf; +fatalisme fatalisme nom m s 0.19 1.76 0.19 1.76 +fataliste fataliste adj s 0.06 1.76 0.06 1.69 +fatalistes fataliste adj m p 0.06 1.76 0 0.07 +fatalisé fataliser ver m s 0.06 0 0.01 0 par:pas; +fatalité fatalité nom f s 2.77 8.85 2.66 8.51 +fatalités fatalité nom f p 2.77 8.85 0.11 0.34 +fatals fatal adj m p 11.69 23.38 0.13 0.68 +fate fat adj f s 1.81 1.08 0.13 0.07 +fathma fathma nom f s 0.1 0.07 0.1 0.07 +fathom fathom nom m s 0 0.07 0 0.07 +fatidique fatidique adj s 0.42 4.05 0.41 3.51 +fatidiques fatidique adj p 0.42 4.05 0.01 0.54 +fatigant fatigant adj m s 4.84 7.84 3.81 5.2 +fatigante fatigant adj f s 4.84 7.84 0.67 1.62 +fatigantes fatigant adj f p 4.84 7.84 0.31 0.27 +fatigants fatigant adj m p 4.84 7.84 0.04 0.74 +fatigua fatiguer ver 78.25 49.05 0.02 0.41 ind:pas:3s; +fatiguai fatiguer ver 78.25 49.05 0.01 0.14 ind:pas:1s; +fatiguaient fatiguer ver 78.25 49.05 0.12 0.54 ind:imp:3p; +fatiguais fatiguer ver 78.25 49.05 0.16 0.41 ind:imp:1s;ind:imp:2s; +fatiguait fatiguer ver 78.25 49.05 0.3 2.36 ind:imp:3s; +fatiguant fatiguer ver 78.25 49.05 1.43 0.14 par:pre; +fatigue fatigue nom f s 9.25 69.46 8.7 65.81 +fatiguent fatiguer ver 78.25 49.05 1.11 1.55 ind:pre:3p; +fatiguer fatiguer ver 78.25 49.05 2.89 3.31 inf; +fatiguera fatiguer ver 78.25 49.05 0.25 0.14 ind:fut:3s; +fatiguerai fatiguer ver 78.25 49.05 0.02 0.07 ind:fut:1s; +fatigueraient fatiguer ver 78.25 49.05 0 0.14 cnd:pre:3p; +fatiguerais fatiguer ver 78.25 49.05 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +fatiguerait fatiguer ver 78.25 49.05 0.06 0.61 cnd:pre:3s; +fatigueras fatiguer ver 78.25 49.05 0.1 0 ind:fut:2s; +fatigues fatiguer ver 78.25 49.05 3.44 0.54 ind:pre:2s; +fatiguez fatiguer ver 78.25 49.05 2.49 1.08 imp:pre:2p;ind:pre:2p; +fatiguons fatiguer ver 78.25 49.05 0.01 0 ind:pre:1p; +fatiguât fatiguer ver 78.25 49.05 0 0.14 sub:imp:3s; +fatiguèrent fatiguer ver 78.25 49.05 0 0.14 ind:pas:3p; +fatigué fatiguer ver m s 78.25 49.05 31.43 16.01 par:pas;par:pas;par:pas; +fatiguée fatiguer ver f s 78.25 49.05 20.46 9.73 par:pas; +fatiguées fatiguer ver f p 78.25 49.05 1.27 0.95 par:pas; +fatigués fatiguer ver m p 78.25 49.05 4.26 2.97 par:pas; +fatma fatma nom f s 0.16 0.95 0.14 0.54 +fatmas fatma nom f p 0.16 0.95 0.03 0.41 +fatras fatras nom m 0.34 2.91 0.34 2.91 +fats fat adj m p 1.81 1.08 0.33 0.07 +fatuité fatuité nom f s 0.23 0.95 0.23 0.95 +fatum fatum nom m s 0 0.47 0 0.47 +fau fau nom m s 0.14 0 0.14 0 +faubert faubert nom m s 0.02 0.07 0.02 0.07 +faubourg faubourg nom m s 1.69 22.09 0.58 14.73 +faubourgs faubourg nom m p 1.69 22.09 1.11 7.36 +faubourien faubourien adj m s 0 1.15 0 0.54 +faubourienne faubourien adj f s 0 1.15 0 0.27 +faubouriennes faubourien adj f p 0 1.15 0 0.14 +faubouriens faubourien adj m p 0 1.15 0 0.2 +faucardé faucarder ver m s 0 0.27 0 0.07 par:pas; +faucardée faucarder ver f s 0 0.27 0 0.07 par:pas; +faucardées faucarder ver f p 0 0.27 0 0.07 par:pas; +faucardés faucarder ver m p 0 0.27 0 0.07 par:pas; +faucha faucher ver 14.76 13.51 0 0.34 ind:pas:3s; +fauchage fauchage nom m s 0.04 0.34 0.04 0.34 +fauchaient faucher ver 14.76 13.51 0.01 0.34 ind:imp:3p; +fauchais faucher ver 14.76 13.51 0.02 0.14 ind:imp:1s; +fauchaison fauchaison nom f s 0.1 0.2 0.1 0.2 +fauchait faucher ver 14.76 13.51 0.01 0.61 ind:imp:3s; +fauchant faucher ver 14.76 13.51 0.14 0.74 par:pre; +fauchard fauchard nom m s 0 0.14 0 0.14 +fauche faucher ver 14.76 13.51 0.51 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fauchent faucher ver 14.76 13.51 0.16 0.34 ind:pre:3p; +faucher faucher ver 14.76 13.51 2.54 2.77 inf; +fauchera faucher ver 14.76 13.51 0.03 0 ind:fut:3s; +faucherait faucher ver 14.76 13.51 0.02 0.07 cnd:pre:3s; +faucheras faucher ver 14.76 13.51 0.04 0 ind:fut:2s; +faucheront faucher ver 14.76 13.51 0.01 0 ind:fut:3p; +fauches faucher ver 14.76 13.51 0.41 0.14 ind:pre:2s; +faucheur faucheur nom m s 2.07 0.81 0.42 0.14 +faucheurs faucheur nom m p 2.07 0.81 0.52 0.07 +faucheuse faucheur nom f s 2.07 0.81 1.12 0.54 +faucheuses faucheur nom f p 2.07 0.81 0.01 0.07 +faucheux faucheux nom m 0 0.68 0 0.68 +fauchez faucher ver 14.76 13.51 0.27 0.07 imp:pre:2p;ind:pre:2p; +fauchon fauchon nom m s 0.18 0.2 0.18 0.2 +fauché faucher ver m s 14.76 13.51 6.42 4.05 par:pas; +fauchée faucher ver f s 14.76 13.51 2.18 0.95 par:pas; +fauchées faucher ver f p 14.76 13.51 0.3 0.14 par:pas; +fauchés faucher ver m p 14.76 13.51 1.69 1.08 par:pas; +faucille faucille nom f s 0.53 2.57 0.51 2.23 +faucilles faucille nom f p 0.53 2.57 0.03 0.34 +faucillon faucillon nom m s 0 0.2 0 0.2 +faucon faucon nom m s 5.93 3.51 4.07 2.36 +fauconneau fauconneau nom m s 0.22 0 0.22 0 +fauconnerie fauconnerie nom f s 0.01 0.07 0.01 0.07 +fauconnier fauconnier nom m s 0.25 0.41 0.15 0.34 +fauconniers fauconnier nom m p 0.25 0.41 0.1 0.07 +faucons faucon nom m p 5.93 3.51 1.86 1.15 +faudra falloir ver_sup 1653.76 1250.41 85.73 61.22 ind:fut:3s; +faudrait falloir ver_sup 1653.76 1250.41 74.08 111.69 cnd:pre:3s; +faufil faufil nom m s 0.01 0.07 0.01 0.07 +faufila faufiler ver 4.41 17.3 0.03 1.35 ind:pas:3s; +faufilai faufiler ver 4.41 17.3 0.01 0.2 ind:pas:1s; +faufilaient faufiler ver 4.41 17.3 0.02 0.54 ind:imp:3p; +faufilais faufiler ver 4.41 17.3 0.08 0 ind:imp:1s;ind:imp:2s; +faufilait faufiler ver 4.41 17.3 0.04 2.43 ind:imp:3s; +faufilant faufiler ver 4.41 17.3 0.02 2.09 par:pre; +faufile faufiler ver 4.41 17.3 1.24 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +faufilent faufiler ver 4.41 17.3 0.16 0.88 ind:pre:3p; +faufiler faufiler ver 4.41 17.3 1.86 3.65 inf; +faufilera faufiler ver 4.41 17.3 0.14 0 ind:fut:3s; +faufilerai faufiler ver 4.41 17.3 0.02 0 ind:fut:1s; +faufilerait faufiler ver 4.41 17.3 0 0.07 cnd:pre:3s; +faufileras faufiler ver 4.41 17.3 0.04 0 ind:fut:2s; +faufileront faufiler ver 4.41 17.3 0.01 0 ind:fut:3p; +faufilez faufiler ver 4.41 17.3 0.05 0 imp:pre:2p;ind:pre:2p; +faufilons faufiler ver 4.41 17.3 0.05 0.07 imp:pre:1p;ind:pre:1p; +faufilâmes faufiler ver 4.41 17.3 0 0.07 ind:pas:1p; +faufilât faufiler ver 4.41 17.3 0 0.07 sub:imp:3s; +faufilèrent faufiler ver 4.41 17.3 0 0.2 ind:pas:3p; +faufilé faufiler ver m s 4.41 17.3 0.44 1.08 par:pas; +faufilée faufiler ver f s 4.41 17.3 0.12 0.68 par:pas; +faufilées faufiler ver f p 4.41 17.3 0 0.07 par:pas; +faufilés faufiler ver m p 4.41 17.3 0.07 0.27 par:pas; +faune faune nom s 1.48 6.49 1.47 5.95 +faunes faune nom p 1.48 6.49 0.01 0.54 +faunesque faunesque adj f s 0 0.14 0 0.07 +faunesques faunesque adj p 0 0.14 0 0.07 +faunesse faunesse nom f s 0 0.07 0 0.07 +faussa fausser ver 3.51 8.45 0 0.27 ind:pas:3s; +faussaient fausser ver 3.51 8.45 0.01 0 ind:imp:3p; +faussaire faussaire nom m s 1.22 1.35 0.89 0.95 +faussaires faussaire nom m p 1.22 1.35 0.33 0.41 +faussait fausser ver 3.51 8.45 0.02 0.34 ind:imp:3s; +faussant fausser ver 3.51 8.45 0 0.14 par:pre; +fausse faux adj f s 122.23 109.59 21.98 27.09 +fausse_couche fausse_couche nom f s 0.07 0.2 0.07 0.2 +faussement faussement adv 0.66 7.91 0.66 7.91 +faussent fausser ver 3.51 8.45 0.02 0.07 ind:pre:3p; +fausser fausser ver 3.51 8.45 0.34 1.89 inf; +fausseront fausser ver 3.51 8.45 0 0.14 ind:fut:3p; +fausses faux adj f p 122.23 109.59 9.26 15.95 +fausset fausset nom m s 0.05 1.55 0.04 1.55 +faussets fausset nom m p 0.05 1.55 0.01 0 +fausseté fausseté nom f s 0.75 1.08 0.75 1.08 +faussez fausser ver 3.51 8.45 0.03 0.07 ind:pre:2p; +faussions fausser ver 3.51 8.45 0.01 0 ind:imp:1p; +faussât fausser ver 3.51 8.45 0 0.07 sub:imp:3s; +faussé fausser ver m s 3.51 8.45 1.19 1.76 par:pas; +faussée fausser ver f s 3.51 8.45 0.23 0.68 par:pas; +faussées fausser ver f p 3.51 8.45 0.06 0.41 par:pas; +faussés fausser ver m p 3.51 8.45 0.04 0.07 par:pas; +faustien faustien adj m s 0.15 0.07 0.14 0.07 +faustienne faustien adj f s 0.15 0.07 0.01 0 +faut falloir ver_sup 1653.76 1250.41 1318.11 653.92 ind:pre:3s; +faute faute nom f s 169.26 95.2 163.19 81.08 +fauter fauter ver 1.42 1.76 0 0.27 inf; +fautes faute nom f p 169.26 95.2 6.07 14.12 +fauteuil fauteuil nom m s 19.27 102.03 17.16 76.69 +fauteuil_club fauteuil_club nom m s 0 0.27 0 0.27 +fauteuils fauteuil nom m p 19.27 102.03 2.1 25.34 +fauteuils_club fauteuils_club nom m p 0 0.07 0 0.07 +fauteur fauteur nom m s 0.88 1.82 0.31 0.88 +fauteurs fauteur nom m p 0.88 1.82 0.52 0.95 +fauteuse fauteur nom f s 0.88 1.82 0.03 0 +fautif fautif adj m s 2.96 2.09 1.5 1.08 +fautifs fautif adj m p 2.96 2.09 0.19 0.2 +fautive fautif adj f s 2.96 2.09 1.12 0.74 +fautives fautif adj f p 2.96 2.09 0.15 0.07 +fautrice fauteur nom f s 0.88 1.82 0.02 0 +fauté fauter ver m s 1.42 1.76 1.02 0.68 par:pas; +fauve fauve nom m s 3.61 13.38 1.26 7.77 +fauverie fauverie nom f s 0 0.14 0 0.14 +fauves fauve nom m p 3.61 13.38 2.35 5.61 +fauvette fauvette nom f s 0.6 2.23 0.6 1.62 +fauvettes fauvette nom f p 0.6 2.23 0 0.61 +fauvisme fauvisme nom m s 0.01 0 0.01 0 +faux faux adj m 122.23 109.59 90.99 66.55 +faux_bond faux_bond nom m 0.01 0.07 0.01 0.07 +faux_bourdon faux_bourdon nom m s 0.02 0.07 0.02 0.07 +faux_col faux_col nom m s 0.02 0.34 0.02 0.34 +faux_cul faux_cul nom m s 0.41 0.07 0.41 0.07 +faux_filet faux_filet nom m s 0.04 0.34 0.04 0.34 +faux_frère faux_frère adj m s 0.01 0 0.01 0 +faux_fuyant faux_fuyant nom m s 0.22 1.22 0.02 0.47 +faux_fuyant faux_fuyant nom m p 0.22 1.22 0.2 0.74 +faux_monnayeur faux_monnayeur nom m s 0.26 0.61 0.01 0.14 +faux_monnayeur faux_monnayeur nom m p 0.26 0.61 0.25 0.47 +faux_pas faux_pas nom m 0.38 0.14 0.38 0.14 +faux_pont faux_pont nom m s 0.01 0 0.01 0 +faux_saunier faux_saunier nom m p 0 0.07 0 0.07 +faux_semblant faux_semblant nom m s 0.46 1.49 0.37 0.74 +faux_semblant faux_semblant nom m p 0.46 1.49 0.09 0.74 +favela favela nom f s 1.62 0.07 1.25 0 +favelas favela nom f p 1.62 0.07 0.36 0.07 +faveur faveur nom f s 36.65 31.62 31.09 27.64 +faveurs faveur nom f p 36.65 31.62 5.56 3.99 +favorable favorable adj s 5.38 16.62 4.53 11.28 +favorablement favorablement adv 0.47 1.55 0.47 1.55 +favorables favorable adj p 5.38 16.62 0.85 5.34 +favori favori adj m s 8.79 13.99 5.19 5.81 +favoris favori nom m p 3.22 4.19 1.28 2.77 +favorisa favoriser ver 3.26 10.54 0.01 0.14 ind:pas:3s; +favorisaient favoriser ver 3.26 10.54 0.01 0.34 ind:imp:3p; +favorisait favoriser ver 3.26 10.54 0.05 2.03 ind:imp:3s; +favorisant favoriser ver 3.26 10.54 0.06 0.27 par:pre; +favorise favoriser ver 3.26 10.54 1.4 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +favorisent favoriser ver 3.26 10.54 0.51 0.61 ind:pre:3p; +favoriser favoriser ver 3.26 10.54 0.63 2.23 inf; +favorisera favoriser ver 3.26 10.54 0.03 0.07 ind:fut:3s; +favoriserai favoriser ver 3.26 10.54 0.01 0 ind:fut:1s; +favoriseraient favoriser ver 3.26 10.54 0 0.07 cnd:pre:3p; +favoriserait favoriser ver 3.26 10.54 0.07 0.07 cnd:pre:3s; +favorisez favoriser ver 3.26 10.54 0.03 0 ind:pre:2p; +favorisât favoriser ver 3.26 10.54 0 0.2 sub:imp:3s; +favorisèrent favoriser ver 3.26 10.54 0 0.07 ind:pas:3p; +favorisé favoriser ver m s 3.26 10.54 0.25 1.69 par:pas; +favorisée favoriser ver f s 3.26 10.54 0.05 0.54 par:pas; +favorisées favoriser ver f p 3.26 10.54 0 0.34 par:pas; +favorisés favoriser ver m p 3.26 10.54 0.14 0.68 par:pas; +favorite favori adj f s 8.79 13.99 1.92 3.45 +favorites favori adj f p 8.79 13.99 0.51 1.55 +favoritisme favoritisme nom m s 0.47 0.34 0.47 0.34 +fax fax nom m 5.59 0.14 5.59 0.14 +faxe faxer ver 2.58 0.07 0.45 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +faxer faxer ver 2.58 0.07 0.65 0.07 inf; +faxera faxer ver 2.58 0.07 0.04 0 ind:fut:3s; +faxerai faxer ver 2.58 0.07 0.09 0 ind:fut:1s; +faxes faxer ver 2.58 0.07 0.27 0 ind:pre:2s; +faxez faxer ver 2.58 0.07 0.27 0 imp:pre:2p;ind:pre:2p; +faxons faxer ver 2.58 0.07 0.01 0 imp:pre:1p; +faxé faxer ver m s 2.58 0.07 0.75 0 par:pas; +faxés faxer ver m p 2.58 0.07 0.05 0 par:pas; +fayard fayard nom m s 0 0.27 0 0.2 +fayards fayard nom m p 0 0.27 0 0.07 +fayot fayot adj m s 0.25 0.27 0.25 0.14 +fayotage fayotage nom m s 0.03 0.07 0.03 0.07 +fayotaient fayoter ver 0.09 0.61 0 0.07 ind:imp:3p; +fayotais fayoter ver 0.09 0.61 0 0.14 ind:imp:1s; +fayotait fayoter ver 0.09 0.61 0 0.07 ind:imp:3s; +fayote fayoter ver 0.09 0.61 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fayoter fayoter ver 0.09 0.61 0.01 0.2 inf; +fayots fayot nom m p 0.42 1.28 0.32 1.08 +fayotte fayotter ver 0.25 0 0.25 0 ind:pre:3s; +fayotée fayoter ver f s 0.09 0.61 0 0.07 par:pas; +fazenda fazenda nom f s 0.35 0 0.35 0 +façade façade nom f s 4.6 46.76 4.19 29.66 +façades façade nom f p 4.6 46.76 0.41 17.09 +façon façon nom f s 230.48 277.3 212.6 259.26 +façonna façonner ver 1.95 7.16 0.14 0.2 ind:pas:3s; +façonnable façonnable adj m s 0.02 0 0.02 0 +façonnaient façonner ver 1.95 7.16 0 0.2 ind:imp:3p; +façonnait façonner ver 1.95 7.16 0 0.47 ind:imp:3s; +façonnant façonner ver 1.95 7.16 0.02 0.27 par:pre; +façonne façonner ver 1.95 7.16 0.17 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +façonnent façonner ver 1.95 7.16 0.03 0 ind:pre:3p; +façonner façonner ver 1.95 7.16 0.46 1.22 inf; +façonnera façonner ver 1.95 7.16 0.02 0 ind:fut:3s; +façonnerai façonner ver 1.95 7.16 0.12 0 ind:fut:1s; +façonnerais façonner ver 1.95 7.16 0 0.07 cnd:pre:1s; +façonnerez façonner ver 1.95 7.16 0.03 0 ind:fut:2p; +façonneront façonner ver 1.95 7.16 0 0.07 ind:fut:3p; +façonnière façonnier nom f s 0 0.07 0 0.07 +façonné façonner ver m s 1.95 7.16 0.61 1.76 par:pas; +façonnée façonner ver f s 1.95 7.16 0.23 1.08 par:pas; +façonnées façonner ver f p 1.95 7.16 0.04 0.34 par:pas; +façonnés façonner ver m p 1.95 7.16 0.07 0.88 par:pas; +façons façon nom f p 230.48 277.3 17.89 18.04 +faînes faîne nom m p 0 0.07 0 0.07 +faîtage faîtage nom m s 0 0.47 0 0.27 +faîtages faîtage nom m p 0 0.47 0 0.2 +faîte faîte nom m s 56.42 7.03 56.42 7.03 +faîtes_la_moi faîtes_la_moi nom m p 0.01 0 0.01 0 +faîtière faîtier adj f s 0.02 0.07 0.02 0 +faîtières faîtier adj f p 0.02 0.07 0 0.07 +faïence faïence nom f s 0.28 9.86 0.28 8.85 +faïencerie faïencerie nom f s 0 0.14 0 0.14 +faïences faïence nom f p 0.28 9.86 0 1.01 +faïencier faïencier nom m s 0 0.14 0 0.07 +faïenciers faïencier nom m p 0 0.14 0 0.07 +fedayin fedayin nom m s 0.01 0 0.01 0 +feed_back feed_back nom m 0.04 0 0.04 0 +feedback feedback nom m s 0.1 0.07 0.1 0.07 +feeder feeder nom m s 0.01 0 0.01 0 +feeling feeling nom m s 1.53 0.54 1.3 0.54 +feelings feeling nom m p 1.53 0.54 0.23 0 +feignaient feindre ver 5.92 21.22 0.11 0.61 ind:imp:3p; +feignais feindre ver 5.92 21.22 0.18 0.74 ind:imp:1s;ind:imp:2s; +feignait feindre ver 5.92 21.22 0.13 2.77 ind:imp:3s; +feignant feignant adj m s 0.98 1.35 0.71 1.01 +feignante feignant nom f s 1.51 3.11 0.28 0 +feignantes feignant nom f p 1.51 3.11 0 0.07 +feignants feignant nom m p 1.51 3.11 0.57 1.35 +feignasse feignasse nom f s 0.72 0.2 0.52 0.14 +feignasses feignasse nom f p 0.72 0.2 0.21 0.07 +feigne feindre ver 5.92 21.22 0 0.07 sub:pre:1s; +feignent feindre ver 5.92 21.22 0.13 0.61 ind:pre:3p; +feignez feindre ver 5.92 21.22 0.52 0 imp:pre:2p;ind:pre:2p; +feigniez feindre ver 5.92 21.22 0.1 0 ind:imp:2p; +feignirent feindre ver 5.92 21.22 0 0.2 ind:pas:3p; +feignis feindre ver 5.92 21.22 0 0.47 ind:pas:1s; +feignit feindre ver 5.92 21.22 0.1 1.62 ind:pas:3s; +feignons feindre ver 5.92 21.22 0.07 0.34 imp:pre:1p;ind:pre:1p; +feignîmes feindre ver 5.92 21.22 0 0.14 ind:pas:1p; +feindra feindre ver 5.92 21.22 0.21 0.07 ind:fut:3s; +feindrai feindre ver 5.92 21.22 0.3 0 ind:fut:1s; +feindrait feindre ver 5.92 21.22 0.01 0.14 cnd:pre:3s; +feindre feindre ver 5.92 21.22 1.23 4.39 inf; +feins feindre ver 5.92 21.22 0.81 1.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +feint feindre ver m s 5.92 21.22 1.67 4.12 ind:pre:3s;par:pas; +feintait feinter ver 1.47 1.89 0 0.07 ind:imp:3s; +feintant feinter ver 1.47 1.89 0 0.14 par:pre; +feinte feinte nom f s 1.04 2.36 0.86 1.15 +feinter feinter ver 1.47 1.89 0.27 0.68 inf; +feinterez feinter ver 1.47 1.89 0.01 0 ind:fut:2p; +feintes feinte nom f p 1.04 2.36 0.18 1.22 +feinteur feinteur nom m s 0.02 0 0.02 0 +feintise feintise nom f s 0 0.07 0 0.07 +feints feint adj m p 1 5.61 0.02 0 +feinté feinter ver m s 1.47 1.89 0.79 0.07 par:pas; +feintés feinter ver m p 1.47 1.89 0.03 0.2 par:pas; +feld_maréchal feld_maréchal nom m s 0.32 0.27 0.32 0.27 +feldgrau feldgrau nom m 0 0.47 0 0.47 +feldspath feldspath nom m s 0.03 0.14 0.03 0.14 +feldwebel feldwebel nom m s 0 1.42 0 1.28 +feldwebels feldwebel nom m p 0 1.42 0 0.14 +fellaga fellaga nom m s 0 0.81 0 0.74 +fellagas fellaga nom m p 0 0.81 0 0.07 +fellagha fellagha nom m s 0 0.34 0 0.2 +fellaghas fellagha nom m p 0 0.34 0 0.14 +fellah fellah nom m s 0.14 0.27 0.14 0.2 +fellahs fellah nom m p 0.14 0.27 0 0.07 +fellation fellation nom f s 0.98 0.81 0.88 0.74 +fellationne fellationner ver 0 0.07 0 0.07 ind:pre:3s; +fellations fellation nom f p 0.98 0.81 0.1 0.07 +fellinien fellinien nom m s 0 0.07 0 0.07 +fellinienne fellinien adj f s 0.1 0 0.1 0 +felouque felouque nom f s 0.01 1.49 0.01 1.01 +felouques felouque nom f p 0.01 1.49 0 0.47 +femelle femelle nom f s 9.38 12.64 6.84 7.84 +femelles femelle nom f p 9.38 12.64 2.53 4.8 +femme femme nom f s 1049.32 995.74 806.57 680.2 +femme_enfant femme_enfant nom f s 0.35 0.27 0.35 0.27 +femme_fleur femme_fleur nom f s 0 0.07 0 0.07 +femme_objet femme_objet nom f s 0.03 0.07 0.03 0.07 +femme_refuge femme_refuge nom f s 0 0.07 0 0.07 +femme_robot femme_robot nom f s 0.07 0 0.07 0 +femmelette femmelette nom f s 1.34 0.47 1.1 0.47 +femmelettes femmelette nom f p 1.34 0.47 0.24 0 +femmes femme nom f p 1049.32 995.74 242.75 315.54 +fenaison fenaison nom f s 0 0.34 0 0.27 +fenaisons fenaison nom f p 0 0.34 0 0.07 +fend fendre ver 7.76 28.58 1.2 3.58 ind:pre:3s; +fendaient fendre ver 7.76 28.58 0.01 0.88 ind:imp:3p; +fendais fendre ver 7.76 28.58 0.01 0.27 ind:imp:1s; +fendait fendre ver 7.76 28.58 0.26 3.24 ind:imp:3s; +fendant fendre ver 7.76 28.58 0.03 1.96 par:pre; +fendants fendant adj m p 0.01 0.34 0.01 0 +fendard fendard adj m s 0.06 0.07 0.06 0.07 +fende fendre ver 7.76 28.58 0.04 0.14 sub:pre:1s;sub:pre:3s; +fendent fendre ver 7.76 28.58 0.15 0.68 ind:pre:3p; +fendeur fendeur nom m s 0 0.34 0 0.14 +fendeurs fendeur nom m p 0 0.34 0 0.2 +fendez fendre ver 7.76 28.58 0.49 0 imp:pre:2p;ind:pre:2p; +fendillaient fendiller ver 0.01 1.76 0 0.07 ind:imp:3p; +fendillait fendiller ver 0.01 1.76 0 0.41 ind:imp:3s; +fendille fendiller ver 0.01 1.76 0 0.41 ind:pre:1s;ind:pre:3s; +fendillement fendillement nom m s 0 0.14 0 0.07 +fendillements fendillement nom m p 0 0.14 0 0.07 +fendiller fendiller ver 0.01 1.76 0 0.07 inf; +fendillèrent fendiller ver 0.01 1.76 0 0.07 ind:pas:3p; +fendillé fendillé adj m s 0 0.74 0 0.34 +fendillée fendiller ver f s 0.01 1.76 0.01 0.34 par:pas; +fendillées fendillé adj f p 0 0.74 0 0.2 +fendillés fendiller ver m p 0.01 1.76 0 0.14 par:pas; +fendis fendre ver 7.76 28.58 0 0.07 ind:pas:1s; +fendissent fendre ver 7.76 28.58 0 0.07 sub:imp:3p; +fendit fendre ver 7.76 28.58 0.03 1.89 ind:pas:3s; +fendoir fendoir nom m s 0.11 0 0.11 0 +fendons fendre ver 7.76 28.58 0.01 0.07 ind:pre:1p; +fendra fendre ver 7.76 28.58 0.07 0.07 ind:fut:3s; +fendrai fendre ver 7.76 28.58 0.16 0.14 ind:fut:1s; +fendraient fendre ver 7.76 28.58 0 0.07 cnd:pre:3p; +fendrait fendre ver 7.76 28.58 0.16 0.07 cnd:pre:3s; +fendre fendre ver 7.76 28.58 2.49 6.89 inf; +fends fendre ver 7.76 28.58 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s; +fendu fendre ver m s 7.76 28.58 1.77 4.12 par:pas; +fendue fendu adj f s 0.69 4.46 0.38 1.62 +fendues fendu adj f p 0.69 4.46 0.04 0.68 +fendus fendre ver m p 7.76 28.58 0.14 0.74 par:pas; +fenestrages fenestrage nom m p 0 0.07 0 0.07 +fenestrelle fenestrelle nom f s 0.14 0 0.14 0 +fenians fenian nom m p 0 0.07 0 0.07 +fenil fenil nom m s 0.02 0.41 0.02 0.27 +fenils fenil nom m p 0.02 0.41 0 0.14 +fennec fennec nom m s 0.01 0.2 0.01 0 +fennecs fennec nom m p 0.01 0.2 0 0.2 +fenouil fenouil nom m s 1.14 0.74 1.14 0.74 +fente fente nom f s 3.93 15.61 3.61 10.54 +fentes fente nom f p 3.93 15.61 0.32 5.07 +fenton fenton nom m s 0.43 0 0.43 0 +fenugrec fenugrec nom m s 0.03 0 0.03 0 +fenêtre fenêtre nom f s 90.55 280.2 70.2 199.39 +fenêtres fenêtre nom f p 90.55 280.2 20.35 80.81 +fer fer nom m s 37.08 114.19 33.65 106.28 +fer_blanc fer_blanc nom m s 0.08 2.84 0.08 2.84 +fera faire ver_sup 8813.48 5328.99 170.7 59.66 ind:fut:3s; +ferai faire ver_sup 8813.48 5328.99 146.11 31.69 ind:fut:1s; +feraient faire ver_sup 8813.48 5328.99 10.8 13.11 cnd:pre:3p; +ferais faire ver_sup 8813.48 5328.99 110.19 26.96 cnd:pre:1s;cnd:pre:2s; +ferait faire ver_sup 8813.48 5328.99 86.88 77.23 cnd:pre:3s; +feras faire ver_sup 8813.48 5328.99 42.91 13.18 ind:fut:2s; +ferblanterie ferblanterie nom f s 0 0.27 0 0.27 +ferblantier ferblantier nom m s 0.1 0.34 0.1 0.07 +ferblantiers ferblantier nom m p 0.1 0.34 0 0.27 +ferez faire ver_sup 8813.48 5328.99 27.63 10.54 ind:fut:2p; +feria feria nom f s 0.17 0.2 0.02 0.14 +ferias feria nom f p 0.17 0.2 0.15 0.07 +feriez faire ver_sup 8813.48 5328.99 23.97 5.54 cnd:pre:2p; +ferions faire ver_sup 8813.48 5328.99 3.59 2.7 cnd:pre:1p; +ferlage ferlage nom f s 0.1 0 0.1 0 +ferlez ferler ver 0.03 0.14 0.03 0 imp:pre:2p; +ferlée ferler ver f s 0.03 0.14 0 0.14 par:pas; +ferma fermer ver 238.65 197.16 0.59 23.99 ind:pas:3s; +fermage fermage nom m s 0.03 0.74 0.02 0.54 +fermages fermage nom m p 0.03 0.74 0.01 0.2 +fermai fermer ver 238.65 197.16 0.06 3.24 ind:pas:1s; +fermaient fermer ver 238.65 197.16 0.29 5.27 ind:imp:3p; +fermais fermer ver 238.65 197.16 0.92 3.18 ind:imp:1s;ind:imp:2s; +fermait fermer ver 238.65 197.16 1.36 16.42 ind:imp:3s; +fermant fermer ver 238.65 197.16 0.88 9.05 par:pre; +ferme fermer ver 238.65 197.16 79.68 28.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fermement fermement adv 2.6 10.07 2.6 10.07 +ferment fermer ver 238.65 197.16 3.65 3.65 ind:pre:3p;sub:pre:3p; +fermentaient fermenter ver 0.14 2.16 0 0.14 ind:imp:3p; +fermentais fermenter ver 0.14 2.16 0 0.07 ind:imp:1s; +fermentait fermenter ver 0.14 2.16 0.01 0.2 ind:imp:3s; +fermentation fermentation nom f s 0.29 1.28 0.29 0.95 +fermentations fermentation nom f p 0.29 1.28 0 0.34 +fermente fermenter ver 0.14 2.16 0.04 0.74 ind:pre:3s; +fermenter fermenter ver 0.14 2.16 0.05 0.54 inf; +ferments ferment nom m p 0.2 1.76 0.14 0.61 +fermentèrent fermenter ver 0.14 2.16 0 0.07 ind:pas:3p; +fermenté fermenté adj m s 0.57 1.28 0.44 0.81 +fermentée fermenté adj f s 0.57 1.28 0.11 0.2 +fermentées fermenté adj f p 0.57 1.28 0 0.14 +fermentés fermenté adj m p 0.57 1.28 0.02 0.14 +fermer fermer ver 238.65 197.16 48.85 32.97 inf;; +fermera fermer ver 238.65 197.16 1.11 0.34 ind:fut:3s; +fermerai fermer ver 238.65 197.16 2.11 0.61 ind:fut:1s; +fermeraient fermer ver 238.65 197.16 0.05 0.14 cnd:pre:3p; +fermerais fermer ver 238.65 197.16 0.58 0.14 cnd:pre:1s;cnd:pre:2s; +fermerait fermer ver 238.65 197.16 0.18 0.95 cnd:pre:3s; +fermeras fermer ver 238.65 197.16 0.35 0 ind:fut:2s; +fermerez fermer ver 238.65 197.16 0.54 0 ind:fut:2p; +fermeriez fermer ver 238.65 197.16 0.11 0 cnd:pre:2p; +fermerons fermer ver 238.65 197.16 0.1 0 ind:fut:1p; +fermeront fermer ver 238.65 197.16 0.55 0.14 ind:fut:3p; +fermes fermer ver 238.65 197.16 7.41 1.01 ind:pre:2s;sub:pre:2s; +fermes_hôtel fermes_hôtel nom f p 0 0.07 0 0.07 +fermette fermette nom f s 0.11 0.34 0.11 0.34 +fermeture fermeture nom f s 11.54 15.74 11.06 14.86 +fermetures fermeture nom f p 11.54 15.74 0.48 0.88 +fermeté fermeté nom f s 2.12 10.47 2.12 10.47 +fermez fermer ver 238.65 197.16 30.74 1.69 imp:pre:2p;ind:pre:2p; +fermi fermi nom m s 0.01 0 0.01 0 +fermier fermier nom m s 8.85 12.36 4.54 5.61 +fermiers fermier nom m p 8.85 12.36 3.22 4.05 +fermiez fermer ver 238.65 197.16 0.57 0.2 ind:imp:2p; +fermions fermer ver 238.65 197.16 0.03 0.54 ind:imp:1p; +fermium fermium nom m s 0.01 0 0.01 0 +fermière fermier nom f s 8.85 12.36 1.05 2.23 +fermières fermier nom f p 8.85 12.36 0.03 0.47 +fermoir fermoir nom m s 0.38 2.09 0.38 1.76 +fermoirs fermoir nom m p 0.38 2.09 0 0.34 +fermons fermer ver 238.65 197.16 1.69 0.68 imp:pre:1p;ind:pre:1p; +fermât fermer ver 238.65 197.16 0 0.14 sub:imp:3s; +fermèrent fermer ver 238.65 197.16 0.29 1.62 ind:pas:3p; +fermé fermer ver m s 238.65 197.16 34.73 30.54 par:pas; +fermée fermer ver f s 238.65 197.16 13.72 16.15 par:pas; +fermées fermer ver f p 238.65 197.16 3.31 6.42 par:pas; +fermés fermé adj m p 21.46 56.35 7.2 21.08 +ferons faire ver_sup 8813.48 5328.99 21.07 6.96 ind:fut:1p; +feront faire ver_sup 8813.48 5328.99 23.12 11.01 ind:fut:3p; +ferra ferrer ver 1.96 6.96 0.03 0.14 ind:pas:3s; +ferrage ferrage nom m s 0 0.47 0 0.27 +ferrages ferrage nom m p 0 0.47 0 0.2 +ferrai ferrer ver 1.96 6.96 0.01 0 ind:pas:1s; +ferrailla ferrailler ver 0.17 0.95 0 0.07 ind:pas:3s; +ferraillaient ferrailler ver 0.17 0.95 0 0.14 ind:imp:3p; +ferraillait ferrailler ver 0.17 0.95 0 0.14 ind:imp:3s; +ferraillant ferrailler ver 0.17 0.95 0.14 0.14 par:pre; +ferraillante ferraillant adj f s 0 0.47 0 0.14 +ferraille ferraille nom f s 4.36 13.72 4.22 10.88 +ferraillement ferraillement nom m s 0 0.68 0 0.68 +ferrailler ferrailler ver 0.17 0.95 0.01 0.2 inf; +ferrailles ferraille nom f p 4.36 13.72 0.14 2.84 +ferrailleur ferrailleur nom m s 0.53 1.62 0.51 0.68 +ferrailleurs ferrailleur nom m p 0.53 1.62 0.02 0.95 +ferraillé ferrailler ver m s 0.17 0.95 0 0.07 par:pas; +ferrais ferrer ver 1.96 6.96 0.17 0 ind:imp:1s;ind:imp:2s; +ferrait ferrer ver 1.96 6.96 0.03 0.74 ind:imp:3s; +ferrant ferrer ver 1.96 6.96 0.01 0.2 par:pre; +ferrasse ferrer ver 1.96 6.96 0.14 0 sub:imp:1s; +ferre ferrer ver 1.96 6.96 0.03 0.54 ind:pre:1s;ind:pre:3s; +ferrer ferrer ver 1.96 6.96 0.25 2.03 inf; +ferrera ferrer ver 1.96 6.96 0 0.07 ind:fut:3s; +ferrerait ferrer ver 1.96 6.96 0 0.07 cnd:pre:3s; +ferrets ferret nom m p 0.14 0.2 0.14 0.2 +ferreuse ferreux adj f s 0.16 0.54 0.01 0 +ferreux ferreux adj m 0.16 0.54 0.14 0.54 +ferrez ferrer ver 1.96 6.96 0.08 0 imp:pre:2p;ind:pre:2p; +ferries ferry nom m p 2.12 0.61 0.14 0 +ferriques ferrique adj m p 0 0.07 0 0.07 +ferrite ferrite nom s 0.03 0 0.03 0 +ferro ferro nom m s 0 0.07 0 0.07 +ferrocyanure ferrocyanure nom m s 0 0.07 0 0.07 +ferrocérium ferrocérium nom m s 0 0.07 0 0.07 +ferronnerie ferronnerie nom f s 0.13 0.68 0.13 0.34 +ferronneries ferronnerie nom f p 0.13 0.68 0 0.34 +ferronnier ferronnier nom m s 0.02 0.68 0.01 0.34 +ferronniers ferronnier nom m p 0.02 0.68 0 0.34 +ferronnière ferronnier nom f s 0.02 0.68 0.01 0 +ferrons ferrer ver 1.96 6.96 0.02 0 ind:pre:1p; +ferroviaire ferroviaire adj s 1.29 1.49 1.22 0.88 +ferroviaires ferroviaire adj p 1.29 1.49 0.07 0.61 +ferrugineuse ferrugineux adj f s 0 1.15 0 0.27 +ferrugineuses ferrugineux adj f p 0 1.15 0 0.2 +ferrugineux ferrugineux adj m 0 1.15 0 0.68 +ferrure ferrure nom f s 0.01 1.42 0.01 0.14 +ferrures ferrure nom f p 0.01 1.42 0 1.28 +ferry ferry nom m s 2.12 0.61 1.98 0.61 +ferry_boat ferry_boat nom m s 0.14 0.2 0.14 0.2 +ferré ferrer ver m s 1.96 6.96 0.31 1.08 par:pas; +ferrée ferré adj f s 2.91 6.76 2.27 3.04 +ferrées ferré adj f p 2.91 6.76 0.52 1.82 +ferrés ferré adj m p 2.91 6.76 0.08 1.35 +fers fer nom m p 37.08 114.19 3.42 7.7 +fertile fertile adj s 3.17 3.18 2.72 2.57 +fertiles fertile adj p 3.17 3.18 0.45 0.61 +fertilisable fertilisable adj m s 0 0.07 0 0.07 +fertilisait fertiliser ver 0.97 0.95 0.01 0.2 ind:imp:3s; +fertilisant fertilisant nom m s 0.07 0.07 0.07 0.07 +fertilisateur fertilisateur adj m s 0 0.07 0 0.07 +fertilisation fertilisation nom f s 0.07 0.14 0.07 0.14 +fertilise fertiliser ver 0.97 0.95 0.27 0.14 ind:pre:3s; +fertilisent fertiliser ver 0.97 0.95 0.03 0 ind:pre:3p; +fertiliser fertiliser ver 0.97 0.95 0.18 0.34 inf; +fertilisera fertiliser ver 0.97 0.95 0.02 0 ind:fut:3s; +fertiliserons fertiliser ver 0.97 0.95 0 0.07 ind:fut:1p; +fertilisez fertiliser ver 0.97 0.95 0.02 0 imp:pre:2p; +fertilisèrent fertiliser ver 0.97 0.95 0 0.07 ind:pas:3p; +fertilisé fertiliser ver m s 0.97 0.95 0.19 0.07 par:pas; +fertilisée fertiliser ver f s 0.97 0.95 0 0.07 par:pas; +fertilisés fertiliser ver m p 0.97 0.95 0.23 0 par:pas; +fertilité fertilité nom f s 1.13 1.01 1.13 1.01 +ferté ferté nom f s 0 0.27 0 0.27 +fervent fervent adj m s 2.13 4.53 1.22 2.03 +fervente fervent adj f s 2.13 4.53 0.42 1.22 +ferventes fervent adj f p 2.13 4.53 0.12 0.14 +fervents fervent adj m p 2.13 4.53 0.37 1.15 +ferveur ferveur nom f s 1.69 10.88 1.69 10.61 +ferveurs ferveur nom f p 1.69 10.88 0 0.27 +fessait fesser ver 1 0.74 0 0.14 ind:imp:3s; +fesse fesse nom f s 36.32 45.14 1.81 6.42 +fesse_mathieu fesse_mathieu nom m s 0 0.07 0 0.07 +fesser fesser ver 1 0.74 0.26 0.27 inf; +fesserai fesser ver 1 0.74 0.02 0.07 ind:fut:1s; +fesserais fesser ver 1 0.74 0.04 0 cnd:pre:1s;cnd:pre:2s; +fesses fesse nom f p 36.32 45.14 34.52 38.72 +fesseur fesseur nom m s 0.01 0.14 0.01 0.07 +fesseuse fesseur nom f s 0.01 0.14 0 0.07 +fessier fessier nom m s 0.33 0.68 0.23 0.54 +fessiers fessier adj m p 0.34 0.27 0.21 0.07 +fessiez fesser ver 1 0.74 0.01 0 ind:imp:2p; +fessière fessier adj f s 0.34 0.27 0.03 0.07 +fessières fessier adj f p 0.34 0.27 0 0.14 +fessu fessu adj m s 0.01 0.81 0 0.27 +fessue fessu adj f s 0.01 0.81 0.01 0.34 +fessues fessu adj f p 0.01 0.81 0 0.2 +fessé fesser ver m s 1 0.74 0.25 0.07 par:pas; +fessée fessée nom f s 4.44 1.76 4.02 1.15 +fessées fessée nom f p 4.44 1.76 0.41 0.61 +fessés fesser ver m p 1 0.74 0.01 0.07 par:pas; +festif festif adj m s 0.88 0.34 0.7 0.07 +festin festin nom m s 4.5 5.68 4.05 4.46 +festins festin nom m p 4.5 5.68 0.45 1.22 +festival festival nom m s 7.65 5.27 7.51 4.93 +festivalier festivalier nom m s 0.01 0.07 0.01 0.07 +festivals festival nom m p 7.65 5.27 0.14 0.34 +festive festif adj f s 0.88 0.34 0.17 0.07 +festives festif adj f p 0.88 0.34 0.01 0.2 +festivité festivité nom f s 1.21 1.01 0.02 0 +festivités festivité nom f p 1.21 1.01 1.19 1.01 +festoie festoyer ver 1.26 1.01 0.55 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +festoient festoyer ver 1.26 1.01 0.13 0.07 ind:pre:3p; +festoiera festoyer ver 1.26 1.01 0.02 0 ind:fut:3s; +festoierons festoyer ver 1.26 1.01 0.02 0 ind:fut:1p; +feston feston nom m s 0.17 1.49 0.02 0.14 +festonnaient festonner ver 0.03 1.01 0 0.07 ind:imp:3p; +festonnait festonner ver 0.03 1.01 0 0.14 ind:imp:3s; +festonne festonner ver 0.03 1.01 0 0.07 ind:pre:1s; +festonnements festonnement nom m p 0 0.07 0 0.07 +festonner festonner ver 0.03 1.01 0.02 0 inf; +festonné festonner ver m s 0.03 1.01 0.01 0.07 par:pas; +festonnée festonner ver f s 0.03 1.01 0 0.27 par:pas; +festonnées festonner ver f p 0.03 1.01 0 0.2 par:pas; +festonnés festonner ver m p 0.03 1.01 0 0.2 par:pas; +festons feston nom m p 0.17 1.49 0.14 1.35 +festoya festoyer ver 1.26 1.01 0 0.2 ind:pas:3s; +festoyaient festoyer ver 1.26 1.01 0.03 0.14 ind:imp:3p; +festoyant festoyer ver 1.26 1.01 0.03 0 par:pre; +festoyer festoyer ver 1.26 1.01 0.34 0.47 inf; +festoyez festoyer ver 1.26 1.01 0.03 0 imp:pre:2p; +festoyé festoyer ver m s 1.26 1.01 0.11 0.07 par:pas; +feta feta nom f s 0.09 0 0.09 0 +fettucine fettucine nom f 0.05 0 0.05 0 +feu feu nom m s 233.96 236.15 215.87 199.39 +feudataire feudataire nom m s 0 0.07 0 0.07 +feue feu adj f s 22.07 16.42 0.14 0.34 +feuillage feuillage nom m s 1.68 23.72 1.3 10.47 +feuillages feuillage nom m p 1.68 23.72 0.38 13.24 +feuillaison feuillaison nom f s 0 0.14 0 0.14 +feuillantines feuillantine nom f p 0 0.2 0 0.2 +feuille feuille nom f s 30.1 138.04 13.24 46.35 +feuille_morte feuille_morte adj f s 0 0.07 0 0.07 +feuilles feuille nom f p 30.1 138.04 16.86 91.69 +feuillet feuillet nom m s 0.26 10 0.06 2.16 +feuilleta feuilleter ver 2.21 21.49 0 2.7 ind:pas:3s; +feuilletage feuilletage nom m s 0 0.2 0 0.2 +feuilletai feuilleter ver 2.21 21.49 0.02 0.34 ind:pas:1s; +feuilletaient feuilleter ver 2.21 21.49 0 0.47 ind:imp:3p; +feuilletais feuilleter ver 2.21 21.49 0.23 0.81 ind:imp:1s;ind:imp:2s; +feuilletait feuilleter ver 2.21 21.49 0 2.91 ind:imp:3s; +feuilletant feuilleter ver 2.21 21.49 0.04 3.11 par:pre; +feuilleter feuilleter ver 2.21 21.49 0.65 4.05 inf; +feuilletez feuilleter ver 2.21 21.49 0 0.07 ind:pre:2p; +feuilletiez feuilleter ver 2.21 21.49 0.01 0.07 ind:imp:2p; +feuilletions feuilleter ver 2.21 21.49 0 0.07 ind:imp:1p; +feuilleton feuilleton nom m s 2.81 6.28 2.06 4.66 +feuilletoniste feuilletoniste nom s 0 0.34 0 0.34 +feuilletons feuilleton nom m p 2.81 6.28 0.75 1.62 +feuillets feuillet nom m p 0.26 10 0.2 7.84 +feuillette feuilleter ver 2.21 21.49 0.41 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +feuillettement feuillettement nom m s 0 0.14 0 0.14 +feuillettent feuilleter ver 2.21 21.49 0 0.14 ind:pre:3p; +feuillettes feuilleter ver 2.21 21.49 0.16 0 ind:pre:2s; +feuilletèrent feuilleter ver 2.21 21.49 0 0.07 ind:pas:3p; +feuilleté feuilleter ver m s 2.21 21.49 0.65 2.36 par:pas; +feuilletée feuilleté adj f s 0.19 0.61 0.12 0.27 +feuilletées feuilleté adj f p 0.19 0.61 0.01 0.07 +feuilletés feuilleté nom m p 0.79 0.34 0.3 0.14 +feuillu feuillu adj m s 0.18 2.43 0.12 0.47 +feuillue feuillu adj f s 0.18 2.43 0.05 1.08 +feuillues feuillu adj f p 0.18 2.43 0.01 0.47 +feuillure feuillure nom f s 0.03 0.14 0 0.07 +feuillures feuillure nom f p 0.03 0.14 0.03 0.07 +feuillus feuillu nom m p 0.1 0.14 0.1 0 +feuillée feuillée nom f s 0.14 1.42 0 0.41 +feuillées feuillée nom f p 0.14 1.42 0.14 1.01 +feuj feuj nom s 0.04 0 0.04 0 +feula feuler ver 0.1 0.54 0 0.07 ind:pas:3s; +feulait feuler ver 0.1 0.54 0 0.07 ind:imp:3s; +feulant feuler ver 0.1 0.54 0 0.14 par:pre; +feule feuler ver 0.1 0.54 0 0.07 ind:pre:3s; +feulement feulement nom m s 0 1.08 0 0.81 +feulements feulement nom m p 0 1.08 0 0.27 +feulent feuler ver 0.1 0.54 0 0.07 ind:pre:3p; +feuler feuler ver 0.1 0.54 0.1 0.07 inf; +feulée feuler ver f s 0.1 0.54 0 0.07 par:pas; +feurre feurre nom m s 0 0.07 0 0.07 +feutra feutrer ver 0.19 5.34 0 0.07 ind:pas:3s; +feutrage feutrage nom m s 0 0.41 0 0.34 +feutrages feutrage nom m p 0 0.41 0 0.07 +feutrait feutrer ver 0.19 5.34 0 0.14 ind:imp:3s; +feutrant feutrer ver 0.19 5.34 0 0.07 par:pre; +feutre feutre nom m s 1.45 13.99 1.33 13.18 +feutrent feutrer ver 0.19 5.34 0 0.14 ind:pre:3p; +feutrer feutrer ver 0.19 5.34 0 0.14 inf; +feutres feutrer ver 0.19 5.34 0.14 0.27 sub:pre:2s; +feutrine feutrine nom f s 0 0.74 0 0.74 +feutré feutré adj m s 0.29 5.74 0.03 1.96 +feutrée feutré adj f s 0.29 5.74 0.21 2.03 +feutrées feutré adj f p 0.29 5.74 0.01 0.54 +feutrés feutré adj m p 0.29 5.74 0.04 1.22 +feux feu nom m p 233.96 236.15 18.1 36.76 +fez fez nom m s 0.42 1.15 0.42 1.15 +fi fi ono 4.92 4.66 4.92 4.66 +fia fier ver 14.27 8.99 0 0.14 ind:pas:3s; +fiabilité fiabilité nom f s 0.37 0.34 0.37 0.34 +fiable fiable adj s 6.85 1.28 5.36 1.08 +fiables fiable adj p 6.85 1.28 1.5 0.2 +fiacre fiacre nom m s 1.39 5.2 1.39 4.05 +fiacres fiacre nom m p 1.39 5.2 0 1.15 +fiaient fier ver 14.27 8.99 0.03 0.07 ind:imp:3p; +fiais fier ver 14.27 8.99 0.23 0.14 ind:imp:1s;ind:imp:2s; +fiait fier ver 14.27 8.99 0.21 0.34 ind:imp:3s; +fiance fiancer ver 13.3 4.8 0.46 0.2 imp:pre:2s;ind:pre:3s;sub:pre:3s; +fiancent fiancer ver 13.3 4.8 0.03 0 ind:pre:3p; +fiancer fiancer ver 13.3 4.8 1.22 0.47 inf; +fiancerais fiancer ver 13.3 4.8 0.02 0 cnd:pre:1s;cnd:pre:2s; +fiancerons fiancer ver 13.3 4.8 0 0.07 ind:fut:1p; +fiancez fiancer ver 13.3 4.8 0 0.07 ind:pre:2p; +fiancèrent fiancer ver 13.3 4.8 0.01 0.07 ind:pas:3p; +fiancé fiancé nom m s 51.51 23.11 21.89 9.73 +fiancée fiancé nom f s 51.51 23.11 27.84 9.93 +fiancées fiancé nom f p 51.51 23.11 0.68 0.88 +fiancés fiancer ver m p 13.3 4.8 4.1 0.74 par:pas; +fiant fier ver 14.27 8.99 0.28 0.81 par:pre; +fiança fiancer ver 13.3 4.8 0.01 0.14 ind:pas:3s; +fiançailles fiançailles nom f p 5.63 6.96 5.63 6.96 +fiançais fiancer ver 13.3 4.8 0.01 0 ind:imp:1s; +fiançons fiancer ver 13.3 4.8 0.12 0 imp:pre:1p;ind:pre:1p; +fias fier ver 14.27 8.99 0 0.81 ind:pas:2s; +fiasco fiasco nom m s 1.96 2.16 1.95 1.89 +fiascos fiasco nom m p 1.96 2.16 0.01 0.27 +fiasque fiasque nom f s 0.04 0.41 0.02 0.27 +fiasques fiasque nom f p 0.04 0.41 0.01 0.14 +fiassent fier ver 14.27 8.99 0 0.07 sub:imp:3p; +fiat fiat nom m s 0.02 0.07 0.02 0.07 +fibre fibre nom f s 6.65 7.43 2.67 2.5 +fibres fibre nom f p 6.65 7.43 3.97 4.93 +fibreuse fibreux adj f s 0.17 0.54 0.01 0.27 +fibreuses fibreux adj f p 0.17 0.54 0 0.07 +fibreux fibreux adj m 0.17 0.54 0.16 0.2 +fibrillation fibrillation nom f s 0.69 0 0.69 0 +fibrille fibrille nom f s 0.37 0.61 0.37 0.07 +fibrilles fibrille nom f p 0.37 0.61 0 0.54 +fibrilleux fibrilleux adj m s 0 0.07 0 0.07 +fibrillé fibrillé nom m s 0.01 0 0.01 0 +fibrine fibrine nom f s 0.01 0.14 0.01 0.14 +fibrinogène fibrinogène nom m s 0.03 0 0.03 0 +fibrociment fibrociment nom m s 0 0.27 0 0.27 +fibromateuse fibromateux adj f s 0 0.14 0 0.14 +fibrome fibrome nom m s 0.06 1.01 0.01 0.95 +fibromes fibrome nom m p 0.06 1.01 0.05 0.07 +fibroscope fibroscope nom m s 0.08 0 0.08 0 +fibroscopie fibroscopie nom f s 0.05 0 0.05 0 +fibrose fibrose nom f s 0.28 0 0.28 0 +fibrotoxine fibrotoxine nom f s 0 0.14 0 0.14 +fibré fibré adj m s 0 0.2 0 0.2 +fibule fibule nom f s 0 0.07 0 0.07 +fic fic nom m s 0.01 0 0.01 0 +ficaires ficaire nom f p 0 0.07 0 0.07 +ficela ficeler ver 0.86 6.76 0 0.41 ind:pas:3s; +ficelai ficeler ver 0.86 6.76 0 0.07 ind:pas:1s; +ficelaient ficeler ver 0.86 6.76 0.01 0.14 ind:imp:3p; +ficelait ficeler ver 0.86 6.76 0 0.47 ind:imp:3s; +ficelant ficeler ver 0.86 6.76 0 0.07 par:pre; +ficeler ficeler ver 0.86 6.76 0.17 0.68 inf; +ficelez ficeler ver 0.86 6.76 0.01 0 imp:pre:2p; +ficelle ficelle nom f s 6.31 21.22 3.13 13.38 +ficellerait ficeler ver 0.86 6.76 0 0.07 cnd:pre:3s; +ficelles ficelle nom f p 6.31 21.22 3.19 7.84 +ficelèrent ficeler ver 0.86 6.76 0 0.07 ind:pas:3p; +ficelé ficeler ver m s 0.86 6.76 0.36 2.03 par:pas; +ficelée ficeler ver f s 0.86 6.76 0.17 1.15 par:pas; +ficelées ficelé adj f p 0.61 3.18 0.04 0.47 +ficelés ficelé adj m p 0.61 3.18 0.11 1.15 +ficha ficher ver 97.84 29.32 0.01 0.54 ind:pas:3s; +fichage fichage nom m s 0.01 0 0.01 0 +fichaient ficher ver 97.84 29.32 0.27 0.61 ind:imp:3p; +fichais ficher ver 97.84 29.32 1.67 0.81 ind:imp:1s;ind:imp:2s; +fichaise fichaise nom f s 0.03 0.2 0.01 0.07 +fichaises fichaise nom f p 0.03 0.2 0.02 0.14 +fichait ficher ver 97.84 29.32 2.31 3.38 ind:imp:3s; +fichant ficher ver 97.84 29.32 0.2 0.81 par:pre; +fiche ficher ver 97.84 29.32 60.95 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +fichent ficher ver 97.84 29.32 2.87 1.49 ind:pre:3p; +ficher ficher ver 97.84 29.32 1.9 1.42 inf; +fichera ficher ver 97.84 29.32 0.5 0.14 ind:fut:3s; +ficherai ficher ver 97.84 29.32 0.34 0.2 ind:fut:1s; +ficheraient ficher ver 97.84 29.32 0.21 0 cnd:pre:3p; +ficherais ficher ver 97.84 29.32 0.75 0 cnd:pre:1s;cnd:pre:2s; +ficherait ficher ver 97.84 29.32 0.21 0.2 cnd:pre:3s; +ficheras ficher ver 97.84 29.32 0.07 0 ind:fut:2s; +ficherons ficher ver 97.84 29.32 0 0.07 ind:fut:1p; +ficheront ficher ver 97.84 29.32 0.17 0.14 ind:fut:3p; +fiches ficher ver 97.84 29.32 6.86 1.22 ind:pre:2s; +fichez ficher ver 97.84 29.32 12.73 1.35 imp:pre:2p;ind:pre:2p; +fichier fichier nom m s 11.1 2.91 5.42 1.89 +fichiers fichier nom m p 11.1 2.91 5.69 1.01 +fichiez ficher ver 97.84 29.32 0.48 0 ind:imp:2p; +fichions ficher ver 97.84 29.32 0 0.07 ind:imp:1p; +fichons ficher ver 97.84 29.32 2.67 0.07 imp:pre:1p;ind:pre:1p; +fichtre fichtre ono 1.23 1.01 1.23 1.01 +fichtrement fichtrement adv 0.27 0.47 0.27 0.47 +fichu fichu adj m s 27.51 12.03 17.34 7.7 +fichue fichu adj f s 27.51 12.03 6.34 3.04 +fichues fichu adj f p 27.51 12.03 1.04 0.2 +fichus fichu adj m p 27.51 12.03 2.79 1.08 +fichât ficher ver 97.84 29.32 0 0.14 sub:imp:3s; +fiché ficher ver m s 97.84 29.32 1.99 2.16 par:pas; +fichée ficher ver f s 97.84 29.32 0.35 1.82 par:pas; +fichées ficher ver f p 97.84 29.32 0.14 1.22 par:pas; +fichés ficher ver m p 97.84 29.32 0.2 1.08 par:pas; +fictif fictif adj m s 1.99 2.84 0.94 1.22 +fictifs fictif adj m p 1.99 2.84 0.57 0.34 +fiction fiction nom f s 6.46 5.14 6.25 4.32 +fictionnel fictionnel adj m s 0.02 0 0.02 0 +fictions fiction nom f p 6.46 5.14 0.21 0.81 +fictive fictif adj f s 1.99 2.84 0.41 0.88 +fictivement fictivement adv 0 0.2 0 0.2 +fictives fictif adj f p 1.99 2.84 0.06 0.41 +ficus ficus nom m 0.17 0.2 0.17 0.2 +fiduciaire fiduciaire adj s 0.17 0.68 0.13 0.68 +fiduciaires fiduciaire adj f p 0.17 0.68 0.04 0 +fiducie fiducie nom f s 0.06 0 0.06 0 +fidèle fidèle adj s 24.61 35.61 20.04 27.43 +fidèlement fidèlement adv 1.12 4.53 1.12 4.53 +fidèles fidèle adj p 24.61 35.61 4.57 8.18 +fidéicommis fidéicommis nom m 0.42 0.07 0.42 0.07 +fidéliser fidéliser ver 0.04 0 0.03 0 inf; +fidéliseras fidéliser ver 0.04 0 0.01 0 ind:fut:2s; +fidélité fidélité nom f s 10.26 18.31 10.26 17.43 +fidélités fidélité nom f p 10.26 18.31 0 0.88 +fie fier ver 14.27 8.99 4.1 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fief fief nom m s 3.38 3.45 3.22 2.7 +fieffé fieffé adj m s 0.95 0.61 0.77 0.2 +fieffée fieffé adj f s 0.95 0.61 0 0.27 +fieffés fieffé adj m p 0.95 0.61 0.19 0.14 +fiefs fief nom m p 3.38 3.45 0.16 0.74 +fiel fiel nom m s 1.36 2.5 1.36 2.5 +field field nom m s 0.47 0 0.47 0 +fielleuse fielleux adj f s 0.42 0.95 0.11 0.2 +fielleusement fielleusement adv 0 0.07 0 0.07 +fielleuses fielleux adj f p 0.42 0.95 0 0.27 +fielleux fielleux adj m 0.42 0.95 0.31 0.47 +fient fier ver 14.27 8.99 0.18 0 ind:pre:3p; +fiente fiente nom f s 0.79 2.7 0.72 1.96 +fientes fiente nom f p 0.79 2.7 0.07 0.74 +fienteuse fienteux adj f s 0 0.14 0 0.07 +fienteux fienteux adj m p 0 0.14 0 0.07 +fienté fienter ver m s 0.2 0.2 0 0.14 par:pas; +fier fier adj m s 79.13 58.18 46.07 31.42 +fier_à_bras fier_à_bras nom m 0 0.14 0 0.14 +fiera fier ver 14.27 8.99 0.11 0 ind:fut:3s; +fierai fier ver 14.27 8.99 0.02 0 ind:fut:1s; +fierais fier ver 14.27 8.99 0.29 0.07 cnd:pre:1s;cnd:pre:2s; +fieras fier ver 14.27 8.99 0.01 0 ind:fut:2s; +fiers fier adj m p 79.13 58.18 12.36 8.38 +fiers_à_bras fiers_à_bras nom m p 0 0.27 0 0.27 +fierté fierté nom f s 13.58 29.93 13.56 29.66 +fiertés fierté nom f p 13.58 29.93 0.02 0.27 +fiesta fiesta nom f s 2.14 2.43 2.07 1.96 +fiestas fiesta nom f p 2.14 2.43 0.07 0.47 +fieu fieu nom m s 0 0.07 0 0.07 +fieux fieux nom m p 0.02 0 0.02 0 +fiez fier ver 14.27 8.99 1.58 0.41 imp:pre:2p;ind:pre:2p; +fifi fifi nom m s 0.98 7.77 0.96 7.36 +fifille fifille nom f s 0.65 1.35 0.65 1.35 +fifis fifi nom m p 0.98 7.77 0.02 0.41 +fifre fifre nom m s 0.1 2.09 0.07 1.22 +fifrelin fifrelin nom m s 0.13 0.54 0.03 0.41 +fifrelins fifrelin nom m p 0.13 0.54 0.1 0.14 +fifres fifre nom m p 0.1 2.09 0.03 0.88 +fifties fifties nom p 0.03 0.07 0.03 0.07 +fifty fifty nom m s 0.05 0.47 0.05 0.47 +fifty_fifty fifty_fifty adv 0.66 0.14 0.66 0.14 +figaro figaro nom m s 0 1.42 0 1.35 +figaros figaro nom m p 0 1.42 0 0.07 +fige figer ver 4.49 33.18 1.04 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +figea figer ver 4.49 33.18 0 2.97 ind:pas:3s; +figeaient figer ver 4.49 33.18 0 0.95 ind:imp:3p; +figeais figer ver 4.49 33.18 0.03 0.14 ind:imp:1s; +figeait figer ver 4.49 33.18 0.04 1.89 ind:imp:3s; +figeant figer ver 4.49 33.18 0.01 0.68 par:pre; +figent figer ver 4.49 33.18 0.17 0.34 ind:pre:3p; +figer figer ver 4.49 33.18 1.16 2.5 inf; +figera figer ver 4.49 33.18 0.04 0.14 ind:fut:3s; +figerai figer ver 4.49 33.18 0.07 0.07 ind:fut:1s; +figeraient figer ver 4.49 33.18 0 0.14 cnd:pre:3p; +figerait figer ver 4.49 33.18 0 0.27 cnd:pre:3s; +figez figer ver 4.49 33.18 0.05 0 imp:pre:2p;ind:pre:2p; +fignard fignard nom m s 0 0.07 0 0.07 +fignola fignoler ver 0.48 3.85 0 0.27 ind:pas:3s; +fignolage fignolage nom m s 0.11 0.41 0.11 0.2 +fignolages fignolage nom m p 0.11 0.41 0 0.2 +fignolaient fignoler ver 0.48 3.85 0 0.07 ind:imp:3p; +fignolait fignoler ver 0.48 3.85 0 0.41 ind:imp:3s; +fignolant fignoler ver 0.48 3.85 0 0.61 par:pre; +fignole fignoler ver 0.48 3.85 0.2 0.27 ind:pre:1s;ind:pre:3s; +fignolent fignoler ver 0.48 3.85 0 0.14 ind:pre:3p; +fignoler fignoler ver 0.48 3.85 0.16 0.95 inf; +fignolerai fignoler ver 0.48 3.85 0 0.07 ind:fut:1s; +fignolerais fignoler ver 0.48 3.85 0.01 0 cnd:pre:1s; +fignolerait fignoler ver 0.48 3.85 0 0.07 cnd:pre:3s; +fignoleur fignoleur nom m s 0.01 0 0.01 0 +fignolons fignoler ver 0.48 3.85 0 0.07 ind:pre:1p; +fignolé fignoler ver m s 0.48 3.85 0.09 0.61 par:pas; +fignolée fignoler ver f s 0.48 3.85 0.01 0.27 par:pas; +fignolés fignoler ver m p 0.48 3.85 0.01 0.07 par:pas; +figue figue nom f s 7.38 3.58 3.44 1.28 +figues figue nom f p 7.38 3.58 3.94 2.3 +figuier figuier nom m s 1.79 3.58 1.36 1.82 +figuiers figuier nom m p 1.79 3.58 0.43 1.76 +figura figurer ver 14.41 57.23 0.07 0.41 ind:pas:3s; +figurai figurer ver 14.41 57.23 0.14 0.34 ind:pas:1s; +figuraient figurer ver 14.41 57.23 0.21 3.99 ind:imp:3p; +figurais figurer ver 14.41 57.23 0.03 1.96 ind:imp:1s;ind:imp:2s; +figurait figurer ver 14.41 57.23 0.81 7.97 ind:imp:3s; +figurant figurant nom m s 2.99 5.07 0.68 1.62 +figurante figurant nom f s 2.99 5.07 0.37 0.54 +figurantes figurant nom f p 2.99 5.07 0.02 0.14 +figurants figurant nom m p 2.99 5.07 1.93 2.77 +figuratif figuratif adj m s 0.2 0.68 0.2 0.27 +figuratifs figuratif adj m p 0.2 0.68 0 0.14 +figuration figuration nom f s 0.41 2.57 0.4 1.96 +figurations figuration nom f p 0.41 2.57 0.01 0.61 +figurative figuratif adj f s 0.2 0.68 0.01 0.14 +figurativement figurativement adv 0.01 0.07 0.01 0.07 +figuratives figuratif adj f p 0.2 0.68 0 0.14 +figure figure nom f s 25.18 95.34 22.49 77.7 +figurent figurer ver 14.41 57.23 0.56 4.46 ind:pre:3p; +figurer figurer ver 14.41 57.23 1.43 7.3 inf; +figurera figurer ver 14.41 57.23 0.42 0.34 ind:fut:3s; +figureraient figurer ver 14.41 57.23 0.01 0.27 cnd:pre:3p; +figurerait figurer ver 14.41 57.23 0.03 0.27 cnd:pre:3s; +figures figure nom f p 25.18 95.34 2.69 17.64 +figurez figurer ver 14.41 57.23 3.06 6.15 imp:pre:2p;ind:pre:2p; +figuriez figurer ver 14.41 57.23 0.03 0.07 ind:imp:2p; +figurine figurine nom f s 2.18 2.43 1.19 0.88 +figurines figurine nom f p 2.18 2.43 0.99 1.55 +figurions figurer ver 14.41 57.23 0 0.14 ind:imp:1p; +figurât figurer ver 14.41 57.23 0 0.34 sub:imp:3s; +figurèrent figurer ver 14.41 57.23 0 0.07 ind:pas:3p; +figuré figuré adj m s 0.57 1.08 0.56 0.95 +figurée figuré adj f s 0.57 1.08 0.02 0 +figurées figurer ver f p 14.41 57.23 0 0.47 par:pas; +figurés figurer ver m p 14.41 57.23 0 0.74 par:pas; +figèrent figer ver 4.49 33.18 0 0.27 ind:pas:3p; +figé figer ver m s 4.49 33.18 1.02 9.32 par:pas; +figée figer ver f s 4.49 33.18 0.49 5 par:pas; +figées figé adj f p 0.94 11.82 0.05 0.88 +figés figer ver m p 4.49 33.18 0.36 3.92 par:pas; +fil fil nom m s 64.92 99.73 51.83 75.95 +fil_à_fil fil_à_fil nom m 0 0.34 0 0.34 +fila filer ver 100.97 88.51 0.41 4.93 ind:pas:3s; +filage filage nom m s 0.06 0.14 0.06 0.14 +filai filer ver 100.97 88.51 0 0.61 ind:pas:1s; +filaient filer ver 100.97 88.51 0.34 3.38 ind:imp:3p; +filaire filaire adj f s 0.01 0 0.01 0 +filais filer ver 100.97 88.51 0.54 1.15 ind:imp:1s;ind:imp:2s; +filait filer ver 100.97 88.51 1.39 10.27 ind:imp:3s; +filament filament nom m s 0.4 2.16 0.29 0.27 +filamenteux filamenteux adj m 0.01 0.07 0.01 0.07 +filaments filament nom m p 0.4 2.16 0.11 1.89 +filandres filandre nom f p 0 0.07 0 0.07 +filandreuse filandreux adj f s 0.07 1.62 0 0.54 +filandreuses filandreux adj f p 0.07 1.62 0.03 0.61 +filandreux filandreux adj m 0.07 1.62 0.05 0.47 +filant filer ver 100.97 88.51 0.26 3.38 par:pre; +filante filant adj f s 1.64 3.38 0.6 1.28 +filantes filant adj f p 1.64 3.38 0.82 1.22 +filaos filao nom m p 0 0.07 0 0.07 +filariose filariose nom f s 0.05 0 0.05 0 +filasse filasse nom f s 0.06 0.47 0.02 0.34 +filasses filasse nom f p 0.06 0.47 0.04 0.14 +filateur filateur nom m s 0 0.27 0 0.07 +filateurs filateur nom m p 0 0.27 0 0.2 +filature filature nom f s 2.1 1.42 1.85 0.88 +filatures filature nom f p 2.1 1.42 0.24 0.54 +file filer ver 100.97 88.51 36.47 17.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +file_la_moi file_la_moi nom f s 0.01 0 0.01 0 +filent filer ver 100.97 88.51 2.21 3.18 ind:pre:3p; +filer filer ver 100.97 88.51 25.86 21.76 ind:pre:2p;inf; +filera filer ver 100.97 88.51 1.03 0.61 ind:fut:3s; +filerai filer ver 100.97 88.51 0.71 0.68 ind:fut:1s; +fileraient filer ver 100.97 88.51 0.03 0.07 cnd:pre:3p; +filerais filer ver 100.97 88.51 0.35 0.2 cnd:pre:1s;cnd:pre:2s; +filerait filer ver 100.97 88.51 0.27 0.34 cnd:pre:3s; +fileras filer ver 100.97 88.51 0.22 0.14 ind:fut:2s; +filerez filer ver 100.97 88.51 0.16 0.14 ind:fut:2p; +fileriez filer ver 100.97 88.51 0.03 0 cnd:pre:2p; +filerons filer ver 100.97 88.51 0.21 0.07 ind:fut:1p; +fileront filer ver 100.97 88.51 0.11 0.2 ind:fut:3p; +files filer ver 100.97 88.51 4.95 1.89 ind:pre:1p;ind:pre:2s;sub:pre:2s; +filet filet nom m s 15.44 41.49 10.99 26.35 +filetage filetage nom m s 0.09 0.07 0.09 0.07 +filets filet nom m p 15.44 41.49 4.45 15.14 +fileté fileté adj m s 0.03 0.34 0.03 0.07 +filetée fileter ver f s 0.01 0.14 0.01 0.07 par:pas; +fileur fileur nom m s 0.06 0.14 0.04 0.07 +fileuse fileur nom f s 0.06 0.14 0.01 0.07 +filez filer ver 100.97 88.51 7.9 1.49 imp:pre:2p;ind:pre:2p; +filial filial adj m s 0.63 3.85 0.14 1.76 +filiale filiale nom f s 1.33 0.81 0.84 0.54 +filialement filialement adv 0 0.2 0 0.2 +filiales filiale nom f p 1.33 0.81 0.48 0.27 +filiation filiation nom f s 0.23 2.36 0.23 1.89 +filiations filiation nom f p 0.23 2.36 0 0.47 +filiaux filial adj m p 0.63 3.85 0 0.34 +filiez filer ver 100.97 88.51 0.17 0.14 ind:imp:2p; +filiforme filiforme adj s 0.03 1.55 0.03 1.01 +filiformes filiforme adj p 0.03 1.55 0 0.54 +filigrane filigrane nom m s 0.45 2.97 0.43 2.3 +filigranes filigrane nom m p 0.45 2.97 0.02 0.68 +filigranés filigraner ver m p 0 0.07 0 0.07 par:pas; +filin filin nom m s 0.44 2.64 0.25 1.42 +filins filin nom m p 0.44 2.64 0.19 1.22 +filions filer ver 100.97 88.51 0.01 0.07 ind:imp:1p; +filioque filioque adj m s 0 0.54 0 0.54 +filière filière nom f s 0.78 3.18 0.73 2.7 +filières filière nom f p 0.78 3.18 0.05 0.47 +fillasses fillasse nom f p 0 0.07 0 0.07 +fille fille nom f s 841.56 592.23 627.59 417.03 +fille_mère fille_mère nom f s 0.39 0.41 0.39 0.41 +filles fille nom f p 841.56 592.23 213.97 175.2 +fillette fillette nom f s 13.26 22.97 11.59 16.69 +fillettes fillette nom f p 13.26 22.97 1.67 6.28 +filleul filleul nom m s 2.72 1.82 2.42 1.22 +filleule filleul nom f s 2.72 1.82 0.29 0.47 +filleuls filleul nom m p 2.72 1.82 0.01 0.14 +fillér fillér nom m s 0.01 0 0.01 0 +film film nom m s 252.66 74.12 195.1 49.53 +film_livre film_livre nom m s 0 0.07 0 0.07 +filma filmer ver 40.08 3.45 0.27 0 ind:pas:3s; +filmage filmage nom m s 0.02 0 0.02 0 +filmaient filmer ver 40.08 3.45 0.44 0.07 ind:imp:3p; +filmais filmer ver 40.08 3.45 0.51 0 ind:imp:1s;ind:imp:2s; +filmait filmer ver 40.08 3.45 0.8 0.14 ind:imp:3s; +filmant filmer ver 40.08 3.45 0.42 0.14 par:pre; +filme filmer ver 40.08 3.45 7.17 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +filment filmer ver 40.08 3.45 0.56 0.14 ind:pre:3p; +filmer filmer ver 40.08 3.45 12.89 1.28 inf; +filmera filmer ver 40.08 3.45 0.26 0 ind:fut:3s; +filmerai filmer ver 40.08 3.45 0.2 0 ind:fut:1s; +filmerais filmer ver 40.08 3.45 0.2 0 cnd:pre:2s; +filmerait filmer ver 40.08 3.45 0.01 0 cnd:pre:3s; +filmerez filmer ver 40.08 3.45 0.11 0 ind:fut:2p; +filmeront filmer ver 40.08 3.45 0.16 0 ind:fut:3p; +filmes filmer ver 40.08 3.45 1.93 0.07 ind:pre:2s; +filmez filmer ver 40.08 3.45 1.64 0.07 imp:pre:2p;ind:pre:2p; +filmiez filmer ver 40.08 3.45 0.03 0 ind:imp:2p;sub:pre:2p; +filmions filmer ver 40.08 3.45 0.16 0 ind:imp:1p; +filmique filmique adj s 0.15 0 0.15 0 +filmographie filmographie nom f s 0.03 0 0.03 0 +filmons filmer ver 40.08 3.45 0.53 0 imp:pre:1p;ind:pre:1p; +filmothèque filmothèque nom f s 0.01 0 0.01 0 +films film nom m p 252.66 74.12 57.56 24.59 +films_annonce films_annonce nom m p 0 0.07 0 0.07 +filmé filmer ver m s 40.08 3.45 7.96 0.61 par:pas; +filmée filmer ver f s 40.08 3.45 1.45 0.34 par:pas; +filmées filmer ver f p 40.08 3.45 0.51 0.2 par:pas; +filmés filmer ver m p 40.08 3.45 1.88 0.07 par:pas; +filochard filochard nom m s 0.05 0.2 0.05 0.2 +filoche filoche nom f s 0.14 0.47 0.14 0.47 +filocher filocher ver 0.02 0.34 0.01 0.2 inf; +filochez filocher ver 0.02 0.34 0.01 0 imp:pre:2p; +filoché filocher ver m s 0.02 0.34 0 0.14 par:pas; +filoguidé filoguidé adj m s 0.01 0 0.01 0 +filon filon nom m s 5.61 2.64 1.77 1.82 +filons filon nom m p 5.61 2.64 3.83 0.81 +filoselle filoselle nom f s 0 0.34 0 0.34 +filou filou nom m s 2.48 1.28 1.79 1.08 +filous filou nom m p 2.48 1.28 0.68 0.2 +filouter filouter ver 0.53 0.2 0.19 0.07 inf; +filouterie filouterie nom f s 0.17 0.34 0.14 0.2 +filouteries filouterie nom f p 0.17 0.34 0.02 0.14 +filoutes filouter ver 0.53 0.2 0 0.07 ind:pre:2s; +filouté filouter ver m s 0.53 0.2 0.03 0 par:pas; +filoutés filouter ver m p 0.53 0.2 0.31 0.07 par:pas; +fils fils nom m 480.15 247.64 480.15 247.64 +filtra filtrer ver 2.58 13.58 0 0.27 ind:pas:3s; +filtrage filtrage nom m s 0.26 0.07 0.26 0.07 +filtraient filtrer ver 2.58 13.58 0 1.15 ind:imp:3p; +filtrais filtrer ver 2.58 13.58 0.01 0 ind:imp:1s; +filtrait filtrer ver 2.58 13.58 0.04 2.64 ind:imp:3s; +filtrant filtrant adj m s 0.2 0.41 0.19 0.27 +filtrantes filtrant adj f p 0.2 0.41 0 0.07 +filtrants filtrant adj m p 0.2 0.41 0.01 0.07 +filtration filtration nom f s 0.2 0.14 0.2 0.07 +filtrations filtration nom f p 0.2 0.14 0 0.07 +filtre filtre nom m s 4.54 2.64 3.52 2.16 +filtrent filtrer ver 2.58 13.58 0.08 0.2 ind:pre:3p; +filtrer filtrer ver 2.58 13.58 1.01 3.72 inf; +filtrerait filtrer ver 2.58 13.58 0.01 0.14 cnd:pre:3s; +filtres filtre nom m p 4.54 2.64 1.02 0.47 +filtrez filtrer ver 2.58 13.58 0.23 0 imp:pre:2p;ind:pre:2p; +filtrèrent filtrer ver 2.58 13.58 0 0.14 ind:pas:3p; +filtré filtrer ver m s 2.58 13.58 0.27 0.95 par:pas; +filtrée filtrer ver f s 2.58 13.58 0.05 0.47 par:pas; +filtrées filtrer ver f p 2.58 13.58 0 0.34 par:pas; +filtrés filtrer ver m p 2.58 13.58 0.01 0.07 par:pas; +filâmes filer ver 100.97 88.51 0.01 0.07 ind:pas:1p; +filât filer ver 100.97 88.51 0 0.2 sub:imp:3s; +filèrent filer ver 100.97 88.51 0.03 0.74 ind:pas:3p; +filé filer ver m s 100.97 88.51 15.18 13.51 par:pas; +filée filer ver f s 100.97 88.51 0.36 0.41 par:pas; +filées filer ver f p 100.97 88.51 0.07 0.14 par:pas; +filés filer ver m p 100.97 88.51 0.34 0.54 par:pas; +fin fin nom s 213.37 314.53 207.34 303.31 +finage finage nom m s 0 0.07 0 0.07 +final final adj m s 18.2 19.39 9.73 11.55 +finale final adj f s 18.2 19.39 7.67 7.5 +finalement finalement adv 45.89 58.92 45.89 58.92 +finales finale nom p 5.45 2.84 0.58 0.34 +finalisation finalisation nom f s 0.07 0 0.07 0 +finaliser finaliser ver 0.64 0 0.25 0 inf; +finaliste finaliste nom s 0.78 0.07 0.19 0.07 +finalistes finaliste nom p 0.78 0.07 0.59 0 +finalisé finaliser ver m s 0.64 0 0.39 0 par:pas; +finalisées finaliser ver f p 0.64 0 0.01 0 par:pas; +finalité finalité nom f s 0.46 0.41 0.46 0.34 +finalités finalité nom f p 0.46 0.41 0 0.07 +finals final nom m p 3.76 1.69 0.02 0.07 +finance finance nom f s 8.03 8.78 2.13 1.76 +financement financement nom m s 2.9 0.47 2.55 0.47 +financements financement nom m p 2.9 0.47 0.34 0 +financent financer ver 9.92 2.7 0.46 0.07 ind:pre:3p; +financer financer ver 9.92 2.7 3.96 1.08 inf; +financera financer ver 9.92 2.7 0.11 0 ind:fut:3s; +financerai financer ver 9.92 2.7 0.32 0 ind:fut:1s; +financeraient financer ver 9.92 2.7 0.01 0 cnd:pre:3p; +financerait financer ver 9.92 2.7 0.12 0.07 cnd:pre:3s; +financeras financer ver 9.92 2.7 0.11 0 ind:fut:2s; +financerons financer ver 9.92 2.7 0.02 0 ind:fut:1p; +financeront financer ver 9.92 2.7 0.16 0.07 ind:fut:3p; +finances finance nom f p 8.03 8.78 5.89 7.03 +financez financer ver 9.92 2.7 0.14 0.2 imp:pre:2p;ind:pre:2p; +financier financier adj m s 11.02 9.32 4 2.3 +financiers financier adj m p 11.02 9.32 2.17 2.36 +financiez financer ver 9.92 2.7 0.01 0 ind:imp:2p; +financière financier adj f s 11.02 9.32 3.49 2.43 +financièrement financièrement adv 2.21 0.47 2.21 0.47 +financières financier adj f p 11.02 9.32 1.36 2.23 +financé financer ver m s 9.92 2.7 1.7 0.34 par:pas; +financée financer ver f s 9.92 2.7 0.64 0.14 par:pas; +financés financer ver m p 9.92 2.7 0.29 0 par:pas; +finançai financer ver 9.92 2.7 0 0.07 ind:pas:1s; +finançaient financer ver 9.92 2.7 0.03 0 ind:imp:3p; +finançait financer ver 9.92 2.7 0.19 0.27 ind:imp:3s; +finançant financer ver 9.92 2.7 0.03 0.14 par:pre; +finançons financer ver 9.92 2.7 0.03 0 imp:pre:1p;ind:pre:1p; +finassait finasser ver 0.15 0.41 0 0.07 ind:imp:3s; +finasse finasser ver 0.15 0.41 0 0.2 ind:pre:3s; +finasser finasser ver 0.15 0.41 0.06 0.14 inf; +finasserie finasserie nom f s 0.01 0.2 0 0.07 +finasseries finasserie nom f p 0.01 0.2 0.01 0.14 +finasses finasser ver 0.15 0.41 0.01 0 ind:pre:2s; +finassons finasser ver 0.15 0.41 0.01 0 imp:pre:1p; +finassé finasser ver m s 0.15 0.41 0.07 0 par:pas; +finaud finaud adj m s 0.34 1.28 0.18 1.01 +finaude finaud adj f s 0.34 1.28 0.16 0.2 +finauds finaud nom m p 0.22 0.34 0.03 0.07 +finaux final adj m p 18.2 19.39 0.29 0 +fine fin adj f s 26.95 97.97 10.16 33.99 +finement finement adv 1.03 5.88 1.03 5.88 +fines fin adj f p 26.95 97.97 2.35 19.05 +finesse finesse nom f s 2.38 9.32 2.21 7.84 +finesses finesse nom f p 2.38 9.32 0.17 1.49 +finet finet adj m s 0 0.27 0 0.27 +finette finette nom f s 0 0.68 0 0.68 +fini finir ver m s 557.61 417.97 292.55 149.26 par:pas; +finie finir ver f s 557.61 417.97 26.99 12.23 par:pas; +finies finir ver f p 557.61 417.97 3.04 2.57 par:pas; +finir finir ver 557.61 417.97 96.48 68.92 inf; +finira finir ver 557.61 417.97 20.35 8.99 ind:fut:3s; +finirai finir ver 557.61 417.97 5.65 1.89 ind:fut:1s; +finiraient finir ver 557.61 417.97 0.34 1.76 cnd:pre:3p; +finirais finir ver 557.61 417.97 2.05 2.3 cnd:pre:1s;cnd:pre:2s; +finirait finir ver 557.61 417.97 4.51 11.28 cnd:pre:3s; +finiras finir ver 557.61 417.97 7.36 1.96 ind:fut:2s; +finirent finir ver 557.61 417.97 0.27 2.3 ind:pas:3p; +finirez finir ver 557.61 417.97 3.1 0.95 ind:fut:2p; +finiriez finir ver 557.61 417.97 0.36 0.14 cnd:pre:2p; +finirions finir ver 557.61 417.97 0.34 0.54 cnd:pre:1p; +finirons finir ver 557.61 417.97 1.63 1.08 ind:fut:1p; +finiront finir ver 557.61 417.97 3.31 2.09 ind:fut:3p; +finis finir ver m p 557.61 417.97 21.82 11.28 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +finish finish nom m s 0.32 0.61 0.32 0.61 +finissaient finir ver 557.61 417.97 0.44 8.38 ind:imp:3p; +finissais finir ver 557.61 417.97 1.06 3.38 ind:imp:1s;ind:imp:2s; +finissait finir ver 557.61 417.97 2.68 30 ind:imp:3s; +finissant finir ver 557.61 417.97 0.48 3.85 par:pre; +finissante finissant adj f s 0.22 2.57 0.12 0.54 +finissantes finissant adj f p 0.22 2.57 0 0.14 +finissants finissant adj m p 0.22 2.57 0.07 0.07 +finisse finir ver 557.61 417.97 9.34 6.49 sub:pre:1s;sub:pre:3s; +finissent finir ver 557.61 417.97 8.49 10.41 ind:pre:3p; +finisses finir ver 557.61 417.97 0.63 0.14 sub:pre:2s; +finisseur finisseur nom m s 0.03 0 0.02 0 +finisseuse finisseur nom f s 0.03 0 0.01 0 +finissez finir ver 557.61 417.97 5.8 1.15 imp:pre:2p;ind:pre:2p; +finissiez finir ver 557.61 417.97 0.41 0.2 ind:imp:2p; +finissions finir ver 557.61 417.97 0.2 1.08 ind:imp:1p; +finissons finir ver 557.61 417.97 7.82 1.82 imp:pre:1p;ind:pre:1p; +finit finir ver 557.61 417.97 29.97 70.47 ind:pre:3s;ind:pas:3s; +finition finition nom f s 1.12 1.28 0.61 1.01 +finitions finition nom f p 1.12 1.28 0.5 0.27 +finitude finitude nom f s 0 0.2 0 0.2 +finlandais finlandais adj m 1.35 0.61 0.76 0.27 +finlandaise finlandais adj f s 1.35 0.61 0.56 0.27 +finlandaises finlandais adj f p 1.35 0.61 0.04 0.07 +finlandisation finlandisation nom f s 0 0.07 0 0.07 +finnois finnois nom m 0.54 0.07 0.54 0.07 +fins fin nom p 213.37 314.53 6.03 11.22 +finîmes finir ver 557.61 417.97 0.14 0.41 ind:pas:1p; +finît finir ver 557.61 417.97 0 0.68 sub:imp:3s; +fiole fiole nom f s 1.93 5.14 1.5 3.11 +fioles fiole nom f p 1.93 5.14 0.42 2.03 +fion fion nom m s 1.77 2.64 1.75 2.57 +fions fier ver 14.27 8.99 0.25 0 imp:pre:1p;ind:pre:1p; +fiord fiord nom m s 0 0.07 0 0.07 +fioriture fioriture nom f s 0.25 2.09 0.01 0.74 +fioritures fioriture nom f p 0.25 2.09 0.24 1.35 +fioul fioul nom m s 0.06 0 0.06 0 +firent faire ver_sup 8813.48 5328.99 3 37.16 ind:pas:3p; +firmament firmament nom m s 1.57 2.09 1.57 2.03 +firmaments firmament nom m p 1.57 2.09 0 0.07 +firman firman nom m s 0.04 0.2 0.04 0.14 +firmans firman nom m p 0.04 0.2 0 0.07 +firme firme nom f s 4.32 2.7 4.07 1.96 +firmes firme nom f p 4.32 2.7 0.25 0.74 +fis faire ver_sup 8813.48 5328.99 4.35 40.74 ind:pas:1s;ind:pas:2s; +fisc fisc nom m s 2.53 1.28 2.53 1.28 +fiscal fiscal adj m s 4.54 1.22 1.41 0.14 +fiscale fiscal adj f s 4.54 1.22 1.97 0.47 +fiscalement fiscalement adv 0.01 0.07 0.01 0.07 +fiscales fiscal adj f p 4.54 1.22 0.41 0.27 +fiscaliste fiscaliste nom s 0.08 0 0.08 0 +fiscalité fiscalité nom f s 0.09 0.07 0.09 0.07 +fiscaux fiscal adj m p 4.54 1.22 0.76 0.34 +fissa fissa adv 1.84 3.24 1.84 3.24 +fisse faire ver_sup 8813.48 5328.99 0.54 0.74 sub:imp:1s; +fissent faire ver_sup 8813.48 5328.99 0 2.16 sub:imp:3p; +fissible fissible adj s 0.07 0 0.04 0 +fissibles fissible adj p 0.07 0 0.04 0 +fissiez faire ver_sup 8813.48 5328.99 0.01 0.2 sub:imp:2p; +fission fission nom f s 0.52 0.2 0.52 0.2 +fissionner fissionner ver 0.02 0 0.01 0 inf; +fissionné fissionner ver m s 0.02 0 0.01 0 par:pas; +fissions faire ver_sup 8813.48 5328.99 0 0.14 sub:imp:1p; +fissurait fissurer ver 0.69 1.76 0.01 0.07 ind:imp:3s; +fissurant fissurer ver 0.69 1.76 0.01 0.07 par:pre; +fissure fissure nom f s 2.74 8.11 1.25 4.66 +fissurent fissurer ver 0.69 1.76 0 0.07 ind:pre:3p; +fissurer fissurer ver 0.69 1.76 0.06 0.14 inf; +fissures fissure nom f p 2.74 8.11 1.49 3.45 +fissuré fissurer ver m s 0.69 1.76 0.24 0.68 par:pas; +fissurée fissurer ver f s 0.69 1.76 0.05 0.27 par:pas; +fissurées fissurer ver f p 0.69 1.76 0.05 0.07 par:pas; +fissurés fissurer ver m p 0.69 1.76 0.14 0.07 par:pas; +fiston fiston nom m s 30.43 2.97 30.38 2.84 +fistons fiston nom m p 30.43 2.97 0.05 0.14 +fistule fistule nom f s 0.06 0 0.04 0 +fistules fistule nom f p 0.06 0 0.02 0 +fit faire ver_sup 8813.48 5328.99 20.63 469.66 ind:pas:3s; +fitness fitness nom m 0.39 0 0.39 0 +fitzgéraldiennes fitzgéraldien adj f p 0 0.07 0 0.07 +five_o_clock five_o_clock nom m 0.01 0.14 0.01 0.14 +fivete fivete nom f s 0 0.2 0 0.2 +fixa fixer ver 32.73 140.95 0.27 10.47 ind:pas:3s; +fixage fixage nom m s 0 0.14 0 0.14 +fixai fixer ver 32.73 140.95 0.1 1.62 ind:pas:1s; +fixaient fixer ver 32.73 140.95 0.4 3.72 ind:imp:3p; +fixais fixer ver 32.73 140.95 0.28 1.62 ind:imp:1s;ind:imp:2s; +fixait fixer ver 32.73 140.95 0.95 17.5 ind:imp:3s; +fixant fixer ver 32.73 140.95 0.54 12.84 par:pre; +fixateur fixateur nom m s 0.05 0 0.05 0 +fixatif fixatif nom m s 0 0.07 0 0.07 +fixation fixation nom f s 1.94 1.96 1.47 1.89 +fixations fixation nom f p 1.94 1.96 0.47 0.07 +fixe fixe adj s 11.12 39.53 9.83 27.97 +fixe_chaussette fixe_chaussette nom f p 0.13 0.2 0.13 0.2 +fixement fixement adv 1.89 8.92 1.89 8.92 +fixent fixer ver 32.73 140.95 0.76 2.09 ind:pre:3p; +fixer fixer ver 32.73 140.95 7.04 24.8 inf; +fixera fixer ver 32.73 140.95 0.33 0.41 ind:fut:3s; +fixerai fixer ver 32.73 140.95 0.05 0.14 ind:fut:1s; +fixeraient fixer ver 32.73 140.95 0.01 0.14 cnd:pre:3p; +fixerais fixer ver 32.73 140.95 0.12 0 cnd:pre:1s; +fixerait fixer ver 32.73 140.95 0 0.54 cnd:pre:3s; +fixeras fixer ver 32.73 140.95 0.11 0 ind:fut:2s; +fixerez fixer ver 32.73 140.95 0.04 0.07 ind:fut:2p; +fixeriez fixer ver 32.73 140.95 0 0.14 cnd:pre:2p; +fixerons fixer ver 32.73 140.95 0.22 0.07 ind:fut:1p; +fixeront fixer ver 32.73 140.95 0.03 0 ind:fut:3p; +fixes fixer ver 32.73 140.95 1.77 0.07 ind:pre:2s; +fixette fixette nom f s 0.24 0.07 0.24 0.07 +fixez fixer ver 32.73 140.95 1.98 0.27 imp:pre:2p;ind:pre:2p; +fixiez fixer ver 32.73 140.95 0.03 0 ind:imp:2p; +fixing fixing nom m s 0.08 0 0.08 0 +fixions fixer ver 32.73 140.95 0 0.14 ind:imp:1p; +fixité fixité nom f s 0.14 4.86 0.14 4.86 +fixons fixer ver 32.73 140.95 0.47 0.2 imp:pre:1p;ind:pre:1p; +fixâmes fixer ver 32.73 140.95 0 0.07 ind:pas:1p; +fixât fixer ver 32.73 140.95 0 0.14 sub:imp:3s; +fixèrent fixer ver 32.73 140.95 0.1 1.28 ind:pas:3p; +fixé fixer ver m s 32.73 140.95 6.34 25.14 par:pas; +fixée fixer ver f s 32.73 140.95 2.47 7.7 par:pas; +fixées fixer ver f p 32.73 140.95 0.34 2.97 par:pas; +fixés fixer ver m p 32.73 140.95 1.84 14.19 par:pas; +fière fier adj f s 79.13 58.18 19.68 16.69 +fièrement fièrement adv 1.45 7.64 1.45 7.64 +fières fier adj f p 79.13 58.18 1.02 1.69 +fièvre fièvre nom f s 25 42.64 24.23 38.58 +fièvres fièvre nom f p 25 42.64 0.77 4.05 +fié fier ver m s 14.27 8.99 0.04 0.34 par:pas; +fiée fier ver f s 14.27 8.99 0.41 0 par:pas; +fiérot fiérot nom m s 0.01 0.07 0.01 0.07 +fiérote fiérot adj f s 0 0.41 0 0.14 +fiérots fiérot adj m p 0 0.41 0 0.07 +fiés fier ver m p 14.27 8.99 0.03 0 par:pas; +fiévreuse fiévreux adj f s 1.18 11.01 0.1 2.64 +fiévreusement fiévreusement adv 0.03 2.7 0.03 2.7 +fiévreuses fiévreux adj f p 1.18 11.01 0.12 1.28 +fiévreux fiévreux adj m 1.18 11.01 0.95 7.09 +fjord fjord nom m s 1.07 0.68 0.96 0.27 +fjords fjord nom m p 1.07 0.68 0.11 0.41 +fla fla nom m 0.03 0 0.03 0 +flac flac ono 0.01 1.08 0.01 1.08 +flaccide flaccide adj s 0.01 0.07 0.01 0.07 +flaccidité flaccidité nom f s 0.01 0.07 0.01 0.07 +flache flache nom f s 0 0.27 0 0.07 +flaches flache nom f p 0 0.27 0 0.2 +flacon flacon nom m s 4.93 19.46 4.12 11.82 +flacons flacon nom m p 4.93 19.46 0.81 7.64 +flafla flafla nom m s 0 0.2 0 0.2 +flag flag nom m 0.57 0.41 0.57 0.41 +flagada flagada adj 0.06 0.14 0.06 0.14 +flagella flageller ver 0.82 1.89 0 0.14 ind:pas:3s; +flagellaient flageller ver 0.82 1.89 0.1 0.07 ind:imp:3p; +flagellait flageller ver 0.82 1.89 0.01 0.14 ind:imp:3s; +flagellant flageller ver 0.82 1.89 0.1 0 par:pre; +flagellants flagellant nom m p 0.11 0.07 0.1 0.07 +flagellateur flagellateur nom m s 0.01 0 0.01 0 +flagellation flagellation nom f s 0.47 0.81 0.44 0.61 +flagellations flagellation nom f p 0.47 0.81 0.02 0.2 +flagelle flageller ver 0.82 1.89 0.03 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flagellent flageller ver 0.82 1.89 0.11 0.2 ind:pre:3p; +flageller flageller ver 0.82 1.89 0.17 0.41 inf; +flagellerez flageller ver 0.82 1.89 0.14 0 ind:fut:2p; +flagelleront flageller ver 0.82 1.89 0.14 0 ind:fut:3p; +flagellé flagellé adj m s 0.28 0.27 0.27 0.14 +flagellée flageller ver f s 0.82 1.89 0.01 0.27 par:pas; +flagellées flageller ver f p 0.82 1.89 0.01 0.07 par:pas; +flagellés flageller ver m p 0.82 1.89 0.01 0.14 par:pas; +flageola flageoler ver 0.13 2.16 0 0.07 ind:pas:3s; +flageolai flageoler ver 0.13 2.16 0 0.07 ind:pas:1s; +flageolaient flageoler ver 0.13 2.16 0 0.2 ind:imp:3p; +flageolait flageoler ver 0.13 2.16 0 0.2 ind:imp:3s; +flageolant flageoler ver 0.13 2.16 0.01 0.54 par:pre; +flageolante flageolant adj f s 0.04 1.35 0 0.2 +flageolantes flageolant adj f p 0.04 1.35 0.03 0.81 +flageolants flageolant adj m p 0.04 1.35 0 0.07 +flageole flageoler ver 0.13 2.16 0 0.27 ind:pre:1s;ind:pre:3s; +flageolent flageoler ver 0.13 2.16 0.12 0.34 ind:pre:3p; +flageoler flageoler ver 0.13 2.16 0 0.34 inf; +flageoleront flageoler ver 0.13 2.16 0 0.07 ind:fut:3p; +flageolet flageolet nom m s 0.51 1.49 0.27 0.34 +flageolets flageolet nom m p 0.51 1.49 0.24 1.15 +flageolèrent flageoler ver 0.13 2.16 0 0.07 ind:pas:3p; +flagornait flagorner ver 0.01 0.2 0 0.07 ind:imp:3s; +flagornent flagorner ver 0.01 0.2 0.01 0.07 ind:pre:3p; +flagorner flagorner ver 0.01 0.2 0 0.07 inf; +flagornerie flagornerie nom f s 0.07 0.68 0.04 0.54 +flagorneries flagornerie nom f p 0.07 0.68 0.04 0.14 +flagorneur flagorneur nom m s 0.33 0.07 0.14 0 +flagorneurs flagorneur nom m p 0.33 0.07 0.19 0.07 +flagorneuse flagorneur adj f s 0.02 0.07 0.02 0.07 +flagrance flagrance nom f s 0.01 0 0.01 0 +flagrant flagrant adj m s 3.89 7.36 3.01 5.2 +flagrante flagrant adj f s 3.89 7.36 0.7 1.76 +flagrantes flagrant adj f p 3.89 7.36 0.14 0.14 +flagrants flagrant adj m p 3.89 7.36 0.04 0.27 +flahutes flahute nom p 0 0.07 0 0.07 +flair flair nom m s 2.32 4.8 2.32 4.8 +flaira flairer ver 4.47 14.73 0 1.69 ind:pas:3s; +flairaient flairer ver 4.47 14.73 0.02 0.34 ind:imp:3p; +flairais flairer ver 4.47 14.73 0.37 0.14 ind:imp:1s; +flairait flairer ver 4.47 14.73 0.05 2.16 ind:imp:3s; +flairant flairer ver 4.47 14.73 0.02 1.42 par:pre; +flaire flairer ver 4.47 14.73 1.67 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flairent flairer ver 4.47 14.73 0.23 0.61 ind:pre:3p; +flairer flairer ver 4.47 14.73 0.93 2.7 inf; +flairera flairer ver 4.47 14.73 0.02 0 ind:fut:3s; +flairerait flairer ver 4.47 14.73 0 0.14 cnd:pre:3s; +flaires flairer ver 4.47 14.73 0.04 0.27 ind:pre:2s; +flaireur flaireur nom m s 0 0.27 0 0.14 +flaireurs flaireur nom m p 0 0.27 0 0.07 +flaireuse flaireur nom f s 0 0.27 0 0.07 +flairez flairer ver 4.47 14.73 0.02 0 ind:pre:2p; +flairé flairer ver m s 4.47 14.73 1 2.5 par:pas; +flairée flairer ver f s 4.47 14.73 0 0.14 par:pas; +flairés flairer ver m p 4.47 14.73 0.11 0.07 par:pas; +flamand flamand nom m s 1.37 2.3 0.85 1.35 +flamande flamand adj f s 0.79 2.43 0.28 0.54 +flamandes flamand adj f p 0.79 2.43 0.02 0.41 +flamands flamand nom m p 1.37 2.3 0.53 0.47 +flamant flamant nom m s 1.29 1.15 0.39 0.07 +flamants flamant nom m p 1.29 1.15 0.9 1.08 +flamba flamber ver 4.8 13.99 0.1 0.41 ind:pas:3s; +flambaient flamber ver 4.8 13.99 0 1.28 ind:imp:3p; +flambait flamber ver 4.8 13.99 0.13 3.11 ind:imp:3s; +flambant flambant adj m s 0.88 2.3 0.83 1.49 +flambante flambant adj f s 0.88 2.3 0.03 0.27 +flambantes flambant adj f p 0.88 2.3 0 0.2 +flambants flambant adj m p 0.88 2.3 0.02 0.34 +flambard flambard nom m s 0 0.34 0 0.34 +flambe flamber ver 4.8 13.99 2.05 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flambeau flambeau nom m s 3.04 7.09 2.66 3.58 +flambeaux flambeau nom m p 3.04 7.09 0.38 3.51 +flambent flamber ver 4.8 13.99 0.26 0.74 ind:pre:3p; +flamber flamber ver 4.8 13.99 0.84 3.45 inf; +flambera flamber ver 4.8 13.99 0.12 0 ind:fut:3s; +flamberaient flamber ver 4.8 13.99 0 0.07 cnd:pre:3p; +flamberait flamber ver 4.8 13.99 0.03 0.07 cnd:pre:3s; +flamberge flamberge nom f s 0 0.07 0 0.07 +flamberont flamber ver 4.8 13.99 0 0.07 ind:fut:3p; +flambes flamber ver 4.8 13.99 0.05 0 ind:pre:2s; +flambeur flambeur nom m s 1.18 1.89 0.82 0.88 +flambeurs flambeur nom m p 1.18 1.89 0.34 0.88 +flambeuse flambeur nom f s 1.18 1.89 0.01 0.14 +flambez flamber ver 4.8 13.99 0.02 0.07 imp:pre:2p;ind:pre:2p; +flamboie flamboyer ver 0.54 3.11 0.22 0.68 imp:pre:2s;ind:pre:3s; +flamboiement flamboiement nom m s 0.04 1.49 0.04 1.22 +flamboiements flamboiement nom m p 0.04 1.49 0 0.27 +flamboient flamboyer ver 0.54 3.11 0.01 0.47 ind:pre:3p;sub:pre:3p; +flamboierait flamboyer ver 0.54 3.11 0 0.07 cnd:pre:3s; +flambons flamber ver 4.8 13.99 0.01 0 imp:pre:1p; +flamboya flamboyer ver 0.54 3.11 0 0.07 ind:pas:3s; +flamboyaient flamboyer ver 0.54 3.11 0.14 0.14 ind:imp:3p; +flamboyait flamboyer ver 0.54 3.11 0 0.81 ind:imp:3s; +flamboyance flamboyance nom f s 0.01 0 0.01 0 +flamboyant flamboyant adj m s 1.07 5.41 0.8 2.57 +flamboyante flamboyant adj f s 1.07 5.41 0.07 1.55 +flamboyantes flamboyant adj f p 1.07 5.41 0.03 0.54 +flamboyants flamboyant adj m p 1.07 5.41 0.17 0.74 +flamboyer flamboyer ver 0.54 3.11 0 0.07 inf; +flamboyèrent flamboyer ver 0.54 3.11 0 0.07 ind:pas:3p; +flambèrent flamber ver 4.8 13.99 0 0.27 ind:pas:3p; +flambé flamber ver m s 4.8 13.99 0.63 1.28 par:pas; +flambée flambée nom f s 0.59 3.31 0.59 2.7 +flambées flamber ver f p 4.8 13.99 0.06 0.2 par:pas; +flambés flambé adj m p 0.21 0.14 0.04 0.07 +flamenco flamenco nom m s 1.04 0.88 1.04 0.88 +flamencos flamenco adj m p 0.14 0.74 0 0.07 +flamine flamine nom m s 0.01 0 0.01 0 +flamme flamme nom f s 26.93 71.82 12.61 38.38 +flammes flamme nom f p 26.93 71.82 14.32 33.45 +flammèche flammèche nom f s 0.17 2.57 0.14 0.47 +flammèches flammèche nom f p 0.17 2.57 0.02 2.09 +flammé flammé adj m s 0 0.27 0 0.14 +flammée flammé adj f s 0 0.27 0 0.07 +flammés flammé adj m p 0 0.27 0 0.07 +flan flan nom m s 2.36 2.77 2.3 2.64 +flanc flanc nom m s 5.57 46.89 4.01 29.53 +flanc_garde flanc_garde nom f s 0.04 0.27 0 0.14 +flancha flancher ver 3.04 2.7 0 0.2 ind:pas:3s; +flanchais flancher ver 3.04 2.7 0.02 0 ind:imp:1s; +flanchait flancher ver 3.04 2.7 0.03 0.27 ind:imp:3s; +flanche flancher ver 3.04 2.7 1.27 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flanchent flancher ver 3.04 2.7 0.08 0.14 ind:pre:3p; +flancher flancher ver 3.04 2.7 0.67 0.54 inf; +flanchera flancher ver 3.04 2.7 0.04 0.07 ind:fut:3s; +flancherai flancher ver 3.04 2.7 0.01 0 ind:fut:1s; +flancheraient flancher ver 3.04 2.7 0.01 0 cnd:pre:3p; +flancherait flancher ver 3.04 2.7 0.11 0.07 cnd:pre:3s; +flanchet flanchet nom m s 0 0.07 0 0.07 +flanché flancher ver m s 3.04 2.7 0.8 0.41 par:pas; +flancs flanc nom m p 5.57 46.89 1.56 17.36 +flanc_garde flanc_garde nom f p 0.04 0.27 0.04 0.14 +flandrin flandrin nom m s 0 0.41 0 0.41 +flanelle flanelle nom f s 0.83 8.99 0.68 8.78 +flanelles flanelle nom f p 0.83 8.99 0.16 0.2 +flanqua flanquer ver 5.82 21.22 0 0.54 ind:pas:3s; +flanquaient flanquer ver 5.82 21.22 0 0.68 ind:imp:3p; +flanquait flanquer ver 5.82 21.22 0.01 1.22 ind:imp:3s; +flanquant flanquer ver 5.82 21.22 0 0.68 par:pre; +flanque flanquer ver 5.82 21.22 1.66 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flanquement flanquement nom m s 0 0.07 0 0.07 +flanquent flanquer ver 5.82 21.22 0.19 0.54 ind:pre:3p; +flanquer flanquer ver 5.82 21.22 1.34 2.16 inf; +flanquera flanquer ver 5.82 21.22 0.07 0.14 ind:fut:3s; +flanquerai flanquer ver 5.82 21.22 0.22 0.07 ind:fut:1s; +flanqueraient flanquer ver 5.82 21.22 0 0.07 cnd:pre:3p; +flanquerais flanquer ver 5.82 21.22 0.16 0.14 cnd:pre:1s; +flanquerait flanquer ver 5.82 21.22 0.01 0.2 cnd:pre:3s; +flanquerez flanquer ver 5.82 21.22 0.01 0 ind:fut:2p; +flanques flanquer ver 5.82 21.22 0.17 0.14 ind:pre:2s; +flanquez flanquer ver 5.82 21.22 0.28 0.34 imp:pre:2p;ind:pre:2p; +flanquons flanquer ver 5.82 21.22 0.2 0 imp:pre:1p; +flanqué flanquer ver m s 5.82 21.22 1.09 6.42 par:pas; +flanquée flanquer ver f s 5.82 21.22 0.31 3.51 par:pas; +flanquées flanquer ver f p 5.82 21.22 0 0.74 par:pas; +flanqués flanquer ver m p 5.82 21.22 0.1 1.42 par:pas; +flans flan nom m p 2.36 2.77 0.05 0.14 +flapi flapi adj m s 0.07 0.54 0.05 0.2 +flapie flapi adj f s 0.07 0.54 0.02 0.14 +flapies flapi adj f p 0.07 0.54 0 0.07 +flapis flapi adj m p 0.07 0.54 0 0.14 +flaque flaque nom f s 3.53 23.99 2.31 10.07 +flaques flaque nom f p 3.53 23.99 1.21 13.92 +flash flash nom m s 8.52 4.59 7.78 4.59 +flash_back flash_back nom m 0.33 0.74 0.33 0.74 +flashage flashage nom m s 0.14 0 0.14 0 +flashaient flasher ver 1.1 0.61 0 0.07 ind:imp:3p; +flashant flasher ver 1.1 0.61 0.01 0 par:pre; +flashe flasher ver 1.1 0.61 0.16 0.34 ind:pre:1s;ind:pre:3s; +flashent flasher ver 1.1 0.61 0.08 0.07 ind:pre:3p; +flasher flasher ver 1.1 0.61 0.17 0 inf; +flashes flashe nom m p 0.46 2.16 0.46 2.16 +flasheur flasheur nom m s 0.03 0 0.03 0 +flashs flash nom m p 8.52 4.59 0.74 0 +flashé flasher ver m s 1.1 0.61 0.68 0.14 par:pas; +flask flask nom m s 0.01 0.07 0.01 0.07 +flasque flasque adj s 1.07 6.89 0.58 4.26 +flasques flasque adj p 1.07 6.89 0.5 2.64 +flat flat adj m s 1.61 0 1.02 0 +flats flat adj m p 1.61 0 0.58 0 +flatta flatter ver 12.36 24.05 0 1.22 ind:pas:3s; +flattai flatter ver 12.36 24.05 0 0.14 ind:pas:1s; +flattaient flatter ver 12.36 24.05 0 0.88 ind:imp:3p; +flattais flatter ver 12.36 24.05 0.04 0.74 ind:imp:1s;ind:imp:2s; +flattait flatter ver 12.36 24.05 0.03 3.45 ind:imp:3s; +flattant flatter ver 12.36 24.05 0.03 0.95 par:pre; +flattasse flatter ver 12.36 24.05 0 0.07 sub:imp:1s; +flattassent flatter ver 12.36 24.05 0 0.07 sub:imp:3p; +flatte flatter ver 12.36 24.05 2.6 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +flattent flatter ver 12.36 24.05 0.19 0.14 ind:pre:3p; +flatter flatter ver 12.36 24.05 1.53 3.78 inf; +flatteras flatter ver 12.36 24.05 0 0.07 ind:fut:2s; +flatterie flatterie nom f s 1.4 2.64 0.78 1.69 +flatteries flatterie nom f p 1.4 2.64 0.62 0.95 +flatteront flatter ver 12.36 24.05 0 0.07 ind:fut:3p; +flattes flatter ver 12.36 24.05 0.63 0.07 ind:pre:2s; +flatteur flatteur adj m s 3.51 6.49 2.65 2.16 +flatteurs flatteur adj m p 3.51 6.49 0.2 0.88 +flatteuse flatteur adj f s 3.51 6.49 0.59 2.3 +flatteuses flatteur adj f p 3.51 6.49 0.08 1.15 +flattez flatter ver 12.36 24.05 1.54 0.14 imp:pre:2p;ind:pre:2p; +flattions flatter ver 12.36 24.05 0 0.14 ind:imp:1p; +flattons flatter ver 12.36 24.05 0.04 0 imp:pre:1p;ind:pre:1p; +flattèrent flatter ver 12.36 24.05 0 0.2 ind:pas:3p; +flatté flatter ver m s 12.36 24.05 3.56 4.86 par:pas; +flattée flatter ver f s 12.36 24.05 1.78 2.7 par:pas; +flattées flatter ver f p 12.36 24.05 0.12 0.27 par:pas; +flattés flatter ver m p 12.36 24.05 0.26 0.61 par:pas; +flatulence flatulence nom f s 0.25 0.47 0.07 0.2 +flatulences flatulence nom f p 0.25 0.47 0.18 0.27 +flatulent flatulent adj m s 0.04 0.07 0.03 0 +flatulents flatulent adj m p 0.04 0.07 0.01 0.07 +flatuosité flatuosité nom f s 0 0.07 0 0.07 +flatus_vocis flatus_vocis nom m 0 0.07 0 0.07 +flave flave adj s 0 0.07 0 0.07 +flaveur flaveur nom f s 0.01 0 0.01 0 +flegmatique flegmatique adj m s 0.03 0.95 0.02 0.74 +flegmatiquement flegmatiquement adv 0 0.07 0 0.07 +flegmatiques flegmatique adj m p 0.03 0.95 0.01 0.2 +flegmatisme flegmatisme nom m s 0 0.07 0 0.07 +flegme flegme nom m s 0.22 2.43 0.22 2.43 +flemmard flemmard nom m s 0.8 0.41 0.63 0.2 +flemmardais flemmarder ver 0.25 0.2 0.1 0.07 ind:imp:1s; +flemmardant flemmarder ver 0.25 0.2 0.01 0 par:pre; +flemmarde flemmard nom f s 0.8 0.41 0.04 0.07 +flemmarder flemmarder ver 0.25 0.2 0.1 0.14 inf; +flemmardes flemmard adj f p 0.48 0.41 0.01 0 +flemmardise flemmardise nom f s 0.01 0.07 0.01 0.07 +flemmards flemmard nom m p 0.8 0.41 0.13 0.14 +flemme flemme nom f s 0.49 1.62 0.49 1.62 +flemmer flemmer ver 0.02 0 0.02 0 inf; +fleur fleur nom f s 99.75 164.39 25.2 42.97 +fleurage fleurage nom m s 0 0.27 0 0.27 +fleuraient fleurer ver 0.18 3.31 0 0.47 ind:imp:3p; +fleurais fleurer ver 0.18 3.31 0 0.07 ind:imp:1s; +fleurait fleurer ver 0.18 3.31 0.1 1.08 ind:imp:3s; +fleurant fleurer ver 0.18 3.31 0.01 1.42 par:pre; +fleurdelisé fleurdelisé adj m s 0.14 0.34 0.14 0.2 +fleurdelisée fleurdelisé adj f s 0.14 0.34 0 0.07 +fleurdelisés fleurdelisé adj m p 0.14 0.34 0 0.07 +fleure fleurer ver 0.18 3.31 0.02 0.2 ind:pre:3s; +fleurent fleurer ver 0.18 3.31 0.02 0.07 ind:pre:3p; +fleurer fleurer ver 0.18 3.31 0.03 0 inf; +fleuret fleuret nom m s 0.97 2.43 0.29 1.28 +fleuretais fleureter ver 0.01 0.07 0.01 0 ind:imp:2s; +fleuretait fleureter ver 0.01 0.07 0 0.07 ind:imp:3s; +fleurets fleuret nom m p 0.97 2.43 0.68 1.15 +fleurette fleurette nom f s 0.29 2.97 0.29 0.74 +fleurettes fleurette nom f p 0.29 2.97 0 2.23 +fleuri fleurir ver m s 3.95 16.49 0.69 2.3 par:pas; +fleurie fleuri adj f s 1.48 10.14 0.42 2.7 +fleuries fleuri adj f p 1.48 10.14 0.14 1.82 +fleurir fleurir ver 3.95 16.49 1 2.91 inf; +fleurira fleurir ver 3.95 16.49 0.04 0.07 ind:fut:3s; +fleuriraient fleurir ver 3.95 16.49 0 0.07 cnd:pre:3p; +fleurirent fleurir ver 3.95 16.49 0.01 0.07 ind:pas:3p; +fleuriront fleurir ver 3.95 16.49 0.23 0.27 ind:fut:3p; +fleuris fleuri adj m p 1.48 10.14 0.31 2.84 +fleurissaient fleurir ver 3.95 16.49 0.05 1.76 ind:imp:3p; +fleurissait fleurir ver 3.95 16.49 0.1 1.15 ind:imp:3s; +fleurissant fleurir ver 3.95 16.49 0.14 0.2 par:pre; +fleurisse fleurir ver 3.95 16.49 0.25 0 sub:pre:3s; +fleurissement fleurissement nom m s 0 0.14 0 0.14 +fleurissent fleurir ver 3.95 16.49 0.78 2.16 ind:pre:3p; +fleurissiez fleurir ver 3.95 16.49 0.01 0 ind:imp:2p; +fleurissons fleurir ver 3.95 16.49 0.01 0 ind:pre:1p; +fleuriste fleuriste nom s 4.08 8.51 3.73 7.23 +fleuristes fleuriste nom p 4.08 8.51 0.35 1.28 +fleurit fleurir ver 3.95 16.49 0.53 2.23 ind:pre:3s;ind:pas:3s; +fleuron fleuron nom m s 0.46 1.15 0.31 0.54 +fleuronner fleuronner ver 0 0.07 0 0.07 inf; +fleuronnée fleuronné adj f s 0.01 0 0.01 0 +fleurons fleuron nom m p 0.46 1.15 0.16 0.61 +fleurs fleur nom f p 99.75 164.39 74.56 121.42 +fleuve fleuve nom m s 21.58 46.89 19.81 39.32 +fleuves fleuve nom m p 21.58 46.89 1.77 7.57 +flexibilité flexibilité nom f s 0.44 0.34 0.44 0.34 +flexible flexible adj s 1.43 3.18 0.77 2.09 +flexibles flexible adj p 1.43 3.18 0.66 1.08 +flexion flexion nom f s 0.97 0.74 0.71 0.14 +flexions flexion nom f p 0.97 0.74 0.26 0.61 +flexuosité flexuosité nom f s 0 0.07 0 0.07 +flibuste flibuste nom f s 0.14 0.14 0.14 0.14 +flibustier flibustier nom m s 0.21 0.74 0.04 0.68 +flibustiers flibustier nom m p 0.21 0.74 0.17 0.07 +flic flic nom m s 153.5 72.43 67.53 30.95 +flicage flicage nom m s 0.01 0.14 0.01 0.14 +flicaille flicaille nom f s 0.2 1.28 0.2 1.22 +flicailles flicaille nom f p 0.2 1.28 0 0.07 +flicard flicard nom m s 0.31 2.03 0.29 1.28 +flicarde flicard adj f s 0.35 0.54 0 0.14 +flicardes flicard adj f p 0.35 0.54 0 0.07 +flicards flicard adj m p 0.35 0.54 0.13 0 +flics flic nom m p 153.5 72.43 85.97 41.49 +flingage flingage nom m s 0.01 0.27 0.01 0.27 +flingot flingot nom m s 0.02 0.41 0.02 0.2 +flingots flingot nom m p 0.02 0.41 0 0.2 +flingoté flingoter ver m s 0 0.07 0 0.07 par:pas; +flinguait flinguer ver 11.35 4.12 0.01 0.14 ind:imp:3s; +flinguant flinguer ver 11.35 4.12 0.03 0 par:pre; +flingue flingue nom m s 44.48 12.57 38.34 10.88 +flinguent flinguer ver 11.35 4.12 0.4 0 ind:pre:3p; +flinguer flinguer ver 11.35 4.12 4.05 2.36 inf; +flinguera flinguer ver 11.35 4.12 0.18 0 ind:fut:3s; +flinguerai flinguer ver 11.35 4.12 0.11 0 ind:fut:1s; +flingueraient flinguer ver 11.35 4.12 0.01 0 cnd:pre:3p; +flinguerais flinguer ver 11.35 4.12 0.24 0 cnd:pre:1s;cnd:pre:2s; +flingueront flinguer ver 11.35 4.12 0.02 0 ind:fut:3p; +flingues flingue nom m p 44.48 12.57 6.13 1.69 +flingueur flingueur nom m s 0.61 0.14 0.5 0.07 +flingueurs flingueur nom m p 0.61 0.14 0.1 0.07 +flingueuse flingueur nom f s 0.61 0.14 0.01 0 +flingueuses flingueur nom f p 0.61 0.14 0.01 0 +flinguez flinguer ver 11.35 4.12 0.47 0.14 imp:pre:2p;ind:pre:2p; +flinguons flinguer ver 11.35 4.12 0.02 0 imp:pre:1p; +flinguât flinguer ver 11.35 4.12 0 0.07 sub:imp:3s; +flingué flinguer ver m s 11.35 4.12 2.3 0.81 par:pas; +flinguée flinguer ver f s 11.35 4.12 0.24 0.2 par:pas; +flingués flinguer ver m p 11.35 4.12 0.22 0.07 par:pas; +flint flint nom m s 0 0.07 0 0.07 +flip flip nom m s 1.63 1.42 1.58 1.28 +flip_flap flip_flap nom m 0 0.14 0 0.14 +flip_flop flip_flop nom m 0.07 0 0.07 0 +flippais flipper ver 14.29 3.65 0.08 0.07 ind:imp:1s;ind:imp:2s; +flippait flipper ver 14.29 3.65 0.26 0.47 ind:imp:3s; +flippant flipper ver 14.29 3.65 2.6 0.27 par:pre; +flippe flipper ver 14.29 3.65 1.98 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flippent flipper ver 14.29 3.65 0.21 0.07 ind:pre:3p; +flipper flipper ver 14.29 3.65 6.58 1.69 inf; +flipperais flipper ver 14.29 3.65 0.04 0 cnd:pre:1s; +flipperait flipper ver 14.29 3.65 0.09 0 cnd:pre:3s; +flipperont flipper ver 14.29 3.65 0.11 0 ind:fut:3p; +flippers flipper nom m p 1.93 2.43 0.32 0.95 +flippes flipper ver 14.29 3.65 0.69 0 ind:pre:2s; +flippé flipper ver m s 14.29 3.65 1.57 0.27 par:pas; +flippée flippé adj f s 0.32 0.2 0.13 0.14 +flippés flippé nom m p 0.11 0.95 0.04 0.07 +flips flip nom m p 1.63 1.42 0.05 0.14 +fliquer fliquer ver 0 0.07 0 0.07 inf; +fliquesse fliquesse nom f s 0.02 0 0.02 0 +fliqué fliqué adj m s 0.14 0.07 0 0.07 +fliqués fliqué adj m p 0.14 0.07 0.14 0 +flirt flirt nom m s 2.29 3.65 1.98 2.64 +flirta flirter ver 7.06 3.04 0.02 0.14 ind:pas:3s; +flirtaient flirter ver 7.06 3.04 0.01 0.07 ind:imp:3p; +flirtais flirter ver 7.06 3.04 0.51 0.07 ind:imp:1s;ind:imp:2s; +flirtait flirter ver 7.06 3.04 0.55 0.81 ind:imp:3s; +flirtant flirter ver 7.06 3.04 0.29 0.14 par:pre; +flirtation flirtation nom f s 0.01 0 0.01 0 +flirte flirter ver 7.06 3.04 1.42 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flirtent flirter ver 7.06 3.04 0.07 0.07 ind:pre:3p; +flirter flirter ver 7.06 3.04 2.91 0.54 inf; +flirteront flirter ver 7.06 3.04 0 0.07 ind:fut:3p; +flirtes flirter ver 7.06 3.04 0.38 0 ind:pre:2s; +flirteur flirteur adj m s 0.11 0.14 0.1 0.07 +flirteuse flirteur nom f s 0.11 0.07 0.01 0.07 +flirteuses flirteur adj f p 0.11 0.14 0 0.07 +flirtez flirter ver 7.06 3.04 0.14 0 imp:pre:2p;ind:pre:2p; +flirtiez flirter ver 7.06 3.04 0.04 0 ind:imp:2p; +flirtons flirter ver 7.06 3.04 0.02 0 imp:pre:1p;ind:pre:1p; +flirts flirt nom m p 2.29 3.65 0.31 1.01 +flirtèrent flirter ver 7.06 3.04 0 0.14 ind:pas:3p; +flirté flirter ver m s 7.06 3.04 0.71 0.41 par:pas; +floc floc ono 0.33 2.57 0.33 2.57 +floche floche adj f s 0.03 0.2 0.03 0 +floches floche nom f p 0 0.27 0 0.2 +flocon flocon nom m s 2.61 8.92 0.19 1.35 +floconne floconner ver 0 0.34 0 0.27 ind:pre:3s; +floconnent floconner ver 0 0.34 0 0.07 ind:pre:3p; +floconneuse floconneux adj f s 0.08 0.54 0.04 0.2 +floconneuses floconneux adj f p 0.08 0.54 0 0.14 +floconneux floconneux adj m 0.08 0.54 0.05 0.2 +flocons flocon nom m p 2.61 8.92 2.42 7.57 +floculation floculation nom f s 0.01 0 0.01 0 +floculent floculer ver 0 0.07 0 0.07 ind:pre:3p; +flonflon flonflon nom m s 0.22 1.35 0 0.07 +flonflons flonflon nom m p 0.22 1.35 0.22 1.28 +flood flood adj s 0.33 0 0.33 0 +flop flop ono 0.14 0.2 0.14 0.2 +flops flop nom m p 0.76 0.27 0.08 0 +flopée flopée nom f s 0.27 0.74 0.26 0.61 +flopées flopée nom f p 0.27 0.74 0.01 0.14 +floraison floraison nom f s 0.53 4.12 0.29 3.18 +floraisons floraison nom f p 0.53 4.12 0.24 0.95 +floral floral adj m s 0.69 1.49 0.28 0.34 +florale floral adj f s 0.69 1.49 0.32 0.27 +florales floral adj f p 0.69 1.49 0.05 0.41 +floralies floralies nom f p 0.02 0.07 0.02 0.07 +floraux floral adj m p 0.69 1.49 0.04 0.47 +flore flore nom f s 0.72 1.55 0.7 1.35 +florence florence nom f s 0 0.07 0 0.07 +florentin florentin adj m s 0.58 1.49 0.21 0.47 +florentine florentin adj f s 0.58 1.49 0.2 0.41 +florentines florentin adj f p 0.58 1.49 0.14 0.14 +florentins florentin adj m p 0.58 1.49 0.04 0.47 +flores flore nom f p 0.72 1.55 0.02 0.2 +florilège florilège nom m s 0 0.14 0 0.14 +florin florin nom m s 3.55 1.76 1.08 0.27 +florins florin nom m p 3.55 1.76 2.48 1.49 +florissaient florissaient ver 0 0.07 0 0.07 inf; +florissait florissait ver 0 0.14 0 0.14 inf; +florissant florissant adj m s 0.97 2.3 0.28 0.74 +florissante florissant adj f s 0.97 2.3 0.32 0.81 +florissantes florissant adj f p 0.97 2.3 0.33 0.47 +florissants florissant adj m p 0.97 2.3 0.04 0.27 +florès florès adv 0 0.54 0 0.54 +floréal floréal nom m s 0 0.2 0 0.2 +flot flot nom m s 10.28 45.95 4.66 29.59 +flots flot nom m p 10.28 45.95 5.62 16.35 +flotta flotter ver 12.79 63.85 0.01 0.81 ind:pas:3s; +flottabilité flottabilité nom f s 0.02 0 0.02 0 +flottage flottage nom m s 0 0.07 0 0.07 +flottaient flotter ver 12.79 63.85 0.47 6.62 ind:imp:3p; +flottais flotter ver 12.79 63.85 0.54 0.81 ind:imp:1s;ind:imp:2s; +flottaison flottaison nom f s 0.12 1.28 0.12 1.22 +flottaisons flottaison nom f p 0.12 1.28 0 0.07 +flottait flotter ver 12.79 63.85 0.96 19.8 ind:imp:3s; +flottant flottant adj m s 2.21 13.31 1.01 4.12 +flottante flottant adj f s 2.21 13.31 0.93 4.59 +flottantes flottant adj f p 2.21 13.31 0.12 2.43 +flottants flottant adj m p 2.21 13.31 0.15 2.16 +flottation flottation nom f s 0.01 0 0.01 0 +flotte flotte nom f s 16.36 27.64 16.22 26.22 +flottement flottement nom m s 0.3 2.43 0.3 2.3 +flottements flottement nom m p 0.3 2.43 0 0.14 +flottent flotter ver 12.79 63.85 1.07 5.34 ind:pre:3p; +flotter flotter ver 12.79 63.85 3.16 10.68 inf; +flottera flotter ver 12.79 63.85 0.58 0 ind:fut:3s; +flotteraient flotter ver 12.79 63.85 0 0.14 cnd:pre:3p; +flotterait flotter ver 12.79 63.85 0.04 0.2 cnd:pre:3s; +flotteras flotter ver 12.79 63.85 0.05 0 ind:fut:2s; +flotterez flotter ver 12.79 63.85 0.04 0 ind:fut:2p; +flotteront flotter ver 12.79 63.85 0.01 0.07 ind:fut:3p; +flottes flotter ver 12.79 63.85 0.3 0.07 ind:pre:2s; +flotteur flotteur nom m s 0.7 1.62 0.39 0.68 +flotteurs flotteur nom m p 0.7 1.62 0.31 0.95 +flottez flotter ver 12.79 63.85 0.3 0.2 imp:pre:2p;ind:pre:2p; +flottiez flotter ver 12.79 63.85 0.14 0.07 ind:imp:2p; +flottille flottille nom f s 0.28 1.76 0.28 1.42 +flottilles flottille nom f p 0.28 1.76 0 0.34 +flottions flotter ver 12.79 63.85 0 0.14 ind:imp:1p; +flottât flotter ver 12.79 63.85 0 0.07 sub:imp:3s; +flottèrent flotter ver 12.79 63.85 0.01 0.54 ind:pas:3p; +flotté flotter ver m s 12.79 63.85 0.37 1.15 par:pas; +flottée flotter ver f s 12.79 63.85 0 0.2 par:pas; +flottées flotter ver f p 12.79 63.85 0 0.2 par:pas; +flottés flotter ver m p 12.79 63.85 0 0.27 par:pas; +flou flou adj m s 8.18 16.15 4.91 6.08 +flouant flouer ver 0.84 0.95 0 0.07 par:pre; +floue flou adj f s 8.18 16.15 2.25 4.39 +flouer flouer ver 0.84 0.95 0.07 0 inf; +flouerie flouerie nom f s 0 0.07 0 0.07 +floues flou adj f p 8.18 16.15 0.76 2.57 +flous flou adj m p 8.18 16.15 0.27 3.11 +flouse flouse nom m s 0.01 0.14 0.01 0.14 +flouve flouve nom f s 0 0.07 0 0.07 +flouzaille flouzaille nom f s 0 0.07 0 0.07 +flouze flouze nom m s 0.23 0.34 0.23 0.34 +floué flouer ver m s 0.84 0.95 0.39 0.54 par:pas; +flouée flouer ver f s 0.84 0.95 0.06 0.07 par:pas; +floués flouer ver m p 0.84 0.95 0.3 0.07 par:pas; +fluaient fluer ver 0 0.14 0 0.07 ind:imp:3p; +fluait fluer ver 0 0.14 0 0.07 ind:imp:3s; +flubes fluber ver 0 0.88 0 0.88 ind:pre:2s; +fluctuait fluctuer ver 0.17 0.68 0.01 0.07 ind:imp:3s; +fluctuant fluctuant adj m s 0.11 0.41 0.07 0.2 +fluctuante fluctuant adj f s 0.11 0.41 0.04 0.2 +fluctuation fluctuation nom f s 0.85 0.95 0.29 0.07 +fluctuations fluctuation nom f p 0.85 0.95 0.56 0.88 +fluctue fluctuer ver 0.17 0.68 0.11 0.27 ind:pre:3s; +fluctuent fluctuer ver 0.17 0.68 0.03 0.07 ind:pre:3p; +fluctuer fluctuer ver 0.17 0.68 0.02 0.07 inf; +fluctuerait fluctuer ver 0.17 0.68 0 0.07 cnd:pre:3s; +fluctué fluctuer ver m s 0.17 0.68 0 0.14 par:pas; +fluence fluence nom f s 0.01 0 0.01 0 +fluet fluet adj m s 0.32 4.32 0.23 1.69 +fluets fluet adj m p 0.32 4.32 0 0.34 +fluette fluet adj f s 0.32 4.32 0.08 2.03 +fluettes fluet adj f p 0.32 4.32 0 0.27 +fluide fluide adj s 1.73 4.8 1.58 3.78 +fluidement fluidement adv 0 0.14 0 0.14 +fluides fluide nom m p 3.27 2.43 1.78 0.68 +fluidifiant fluidifiant nom m s 0.03 0 0.03 0 +fluidifier fluidifier ver 0.03 0.07 0.01 0.07 inf; +fluidifié fluidifier ver m s 0.03 0.07 0.01 0 par:pas; +fluidiques fluidique adj p 0 0.07 0 0.07 +fluidité fluidité nom f s 0.39 1.35 0.39 1.35 +fluo fluo adj 0.56 0.2 0.56 0.2 +fluor fluor nom m s 0.12 0 0.12 0 +fluorescence fluorescence nom f s 0.05 0.14 0.05 0.14 +fluorescent fluorescent adj m s 0.6 0.95 0.14 0.47 +fluorescente fluorescent adj f s 0.6 0.95 0.12 0.07 +fluorescentes fluorescent adj f p 0.6 0.95 0.26 0.2 +fluorescents fluorescent adj m p 0.6 0.95 0.08 0.2 +fluorescéine fluorescéine nom f s 0.01 0 0.01 0 +fluorhydrique fluorhydrique adj m s 0.01 0 0.01 0 +fluorite fluorite nom f s 0.04 0 0.04 0 +fluorure fluorure nom m s 0.17 0.07 0.17 0.07 +fluorée fluoré adj f s 0.04 0 0.04 0 +flush flush nom m s 1.17 0.07 1.17 0.07 +fluvial fluvial adj m s 0.6 1.35 0.16 0.74 +fluviale fluvial adj f s 0.6 1.35 0.33 0.27 +fluviales fluvial adj f p 0.6 1.35 0.11 0.07 +fluviatile fluviatile adj m s 0 0.07 0 0.07 +fluviaux fluvial adj m p 0.6 1.35 0.01 0.27 +flux flux nom m 4.07 6.42 4.07 6.42 +fluxe fluxer ver 0.01 0 0.01 0 ind:pre:3s; +fluxion fluxion nom f s 0.29 0.47 0.29 0.47 +flâna flâner ver 1.15 9.05 0 0.2 ind:pas:3s; +flânai flâner ver 1.15 9.05 0 0.07 ind:pas:1s; +flânaient flâner ver 1.15 9.05 0 0.47 ind:imp:3p; +flânais flâner ver 1.15 9.05 0.03 0.07 ind:imp:1s; +flânait flâner ver 1.15 9.05 0.12 0.68 ind:imp:3s; +flânant flâner ver 1.15 9.05 0.02 1.55 par:pre; +flâne flâner ver 1.15 9.05 0.19 0.68 ind:pre:1s;ind:pre:3s; +flânent flâner ver 1.15 9.05 0.01 0.41 ind:pre:3p; +flâner flâner ver 1.15 9.05 0.7 3.65 inf; +flânera flâner ver 1.15 9.05 0 0.07 ind:fut:3s; +flânerais flâner ver 1.15 9.05 0.01 0 cnd:pre:1s; +flânerait flâner ver 1.15 9.05 0.01 0 cnd:pre:3s; +flânerie flânerie nom f s 0.11 2.43 0.01 1.76 +flâneries flânerie nom f p 0.11 2.43 0.1 0.68 +flâneront flâner ver 1.15 9.05 0 0.07 ind:fut:3p; +flâneur flâneur nom m s 0.03 1.69 0.01 0.88 +flâneurs flâneur nom m p 0.03 1.69 0.01 0.68 +flâneuse flâneuse nom f s 0.01 0 0.01 0 +flâneuses flâneur nom f p 0.03 1.69 0 0.14 +flânions flâner ver 1.15 9.05 0.02 0.14 ind:imp:1p; +flânochent flânocher ver 0 0.14 0 0.07 ind:pre:3p; +flânocher flânocher ver 0 0.14 0 0.07 inf; +flânons flâner ver 1.15 9.05 0 0.07 ind:pre:1p; +flâné flâner ver m s 1.15 9.05 0.03 0.95 par:pas; +flèche flèche nom f s 12.76 25 8.21 15.54 +flèches flèche nom f p 12.76 25 4.55 9.46 +fléau fléau nom m s 5.1 4.39 4.47 3.04 +fléaux fléau nom m p 5.1 4.39 0.63 1.35 +flécher flécher ver 0.02 0.61 0.01 0.07 inf; +fléchette fléchette nom f s 1.6 1.28 0.33 0.34 +fléchettes fléchette nom f p 1.6 1.28 1.27 0.95 +fléchi fléchir ver m s 1.54 9.32 0.21 1.08 par:pas; +fléchie fléchir ver f s 1.54 9.32 0.14 0.34 par:pas; +fléchies fléchir ver f p 1.54 9.32 0 0.34 par:pas; +fléchir fléchir ver 1.54 9.32 0.58 2.64 inf; +fléchiraient fléchir ver 1.54 9.32 0.01 0 cnd:pre:3p; +fléchirait fléchir ver 1.54 9.32 0 0.07 cnd:pre:3s; +fléchirent fléchir ver 1.54 9.32 0 0.07 ind:pas:3p; +fléchis fléchir ver m p 1.54 9.32 0.17 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fléchissaient fléchir ver 1.54 9.32 0 0.41 ind:imp:3p; +fléchissais fléchir ver 1.54 9.32 0 0.07 ind:imp:1s; +fléchissait fléchir ver 1.54 9.32 0.01 0.61 ind:imp:3s; +fléchissant fléchir ver 1.54 9.32 0 0.61 par:pre; +fléchisse fléchir ver 1.54 9.32 0 0.2 sub:pre:3s; +fléchissement fléchissement nom m s 0.01 1.15 0.01 1.01 +fléchissements fléchissement nom m p 0.01 1.15 0 0.14 +fléchissent fléchir ver 1.54 9.32 0.02 0.47 ind:pre:3p; +fléchisseur fléchisseur adj m s 0.01 0 0.01 0 +fléchissez fléchir ver 1.54 9.32 0.02 0 imp:pre:2p;ind:pre:2p; +fléchissions fléchir ver 1.54 9.32 0 0.07 ind:imp:1p; +fléchissons fléchir ver 1.54 9.32 0.01 0 ind:pre:1p; +fléchit fléchir ver 1.54 9.32 0.37 1.76 ind:pre:3s;ind:pas:3s; +fléché flécher ver m s 0.02 0.61 0.01 0.14 par:pas; +fléchée fléché adj f s 0.09 0.54 0.08 0.14 +fléchées flécher ver f p 0.02 0.61 0 0.07 par:pas; +fléchés fléché adj m p 0.09 0.54 0.01 0.07 +fléole fléole nom f s 0 0.07 0 0.07 +flétan flétan nom m s 0.26 0.07 0.23 0.07 +flétans flétan nom m p 0.26 0.07 0.02 0 +flétri flétrir ver m s 1.78 6.08 0.32 1.69 par:pas; +flétrie flétrir ver f s 1.78 6.08 0.23 1.01 par:pas; +flétries flétrir ver f p 1.78 6.08 0.03 1.08 par:pas; +flétrir flétrir ver 1.78 6.08 0.23 0.27 inf; +flétrira flétrir ver 1.78 6.08 0.01 0.07 ind:fut:3s; +flétrirai flétrir ver 1.78 6.08 0.01 0 ind:fut:1s; +flétrirent flétrir ver 1.78 6.08 0 0.07 ind:pas:3p; +flétriront flétrir ver 1.78 6.08 0.01 0 ind:fut:3p; +flétris flétrir ver m p 1.78 6.08 0.33 0.95 par:pas; +flétrissaient flétrir ver 1.78 6.08 0 0.14 ind:imp:3p; +flétrissait flétrir ver 1.78 6.08 0.01 0.41 ind:imp:3s; +flétrissant flétrissant adj m s 0 0.07 0 0.07 +flétrissement flétrissement nom m s 0.1 0 0.1 0 +flétrissent flétrir ver 1.78 6.08 0.06 0.14 ind:pre:3p; +flétrissure flétrissure nom f s 0 0.88 0 0.61 +flétrissures flétrissure nom f p 0 0.88 0 0.27 +flétrit flétrir ver 1.78 6.08 0.54 0.2 ind:pre:3s;ind:pas:3s; +flétrît flétrir ver 1.78 6.08 0 0.07 sub:imp:3s; +flûta flûter ver 0.14 0.2 0 0.07 ind:pas:3s; +flûte flûte nom f s 10.13 10.61 9.11 8.92 +flûter flûter ver 0.14 0.2 0.14 0.07 inf; +flûtes flûte nom f p 10.13 10.61 1.02 1.69 +flûtiau flûtiau nom m s 0.1 0.07 0.1 0.07 +flûtiste flûtiste nom s 0.19 0.34 0.16 0.34 +flûtistes flûtiste nom p 0.19 0.34 0.03 0 +flûté flûté adj m s 0.01 0.81 0 0.34 +flûtée flûté adj f s 0.01 0.81 0.01 0.41 +flûtés flûté adj m p 0.01 0.81 0 0.07 +foc foc nom m s 0.31 1.28 0.29 1.22 +focal focal adj m s 0.68 0.07 0.25 0.07 +focale focal adj f s 0.68 0.07 0.36 0 +focales focal adj f p 0.68 0.07 0.05 0 +focalisation focalisation nom f s 0.01 0 0.01 0 +focalise focaliser ver 1.81 0.34 0.52 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +focaliser focaliser ver 1.81 0.34 0.59 0.07 inf; +focalisez focaliser ver 1.81 0.34 0.22 0 imp:pre:2p;ind:pre:2p; +focalisons focaliser ver 1.81 0.34 0.05 0 imp:pre:1p;ind:pre:1p; +focalisé focaliser ver m s 1.81 0.34 0.35 0 par:pas; +focalisés focaliser ver m p 1.81 0.34 0.08 0.07 par:pas; +focaux focal adj m p 0.68 0.07 0.01 0 +focs foc nom m p 0.31 1.28 0.02 0.07 +foehn foehn nom m s 0.04 0 0.04 0 +foetal foetal adj m s 1.05 1.35 0.27 0.34 +foetale foetal adj f s 1.05 1.35 0.69 1.01 +foetales foetal adj f p 1.05 1.35 0.01 0 +foetaux foetal adj m p 1.05 1.35 0.08 0 +foetus foetus nom m 3.06 2.57 3.06 2.57 +fofolle fofolle adj f s 0.27 0 0.25 0 +fofolles fofolle adj f p 0.27 0 0.02 0 +foi foi nom f s 54.06 76.49 54.06 76.49 +foie foie nom m s 23.48 17.97 22.27 15.47 +foies foie nom m p 23.48 17.97 1.21 2.5 +foil foil nom m s 0.01 0 0.01 0 +foin foin nom m s 6.73 17.91 6.06 16.01 +foins foin nom m p 6.73 17.91 0.67 1.89 +foira foirer ver 14.76 2.09 0 0.07 ind:pas:3s; +foirade foirade nom f s 0 0.34 0 0.2 +foirades foirade nom f p 0 0.34 0 0.14 +foiraient foirer ver 14.76 2.09 0.01 0.14 ind:imp:3p; +foirail foirail nom m s 0 0.47 0 0.41 +foirails foirail nom m p 0 0.47 0 0.07 +foirais foirer ver 14.76 2.09 0.01 0 ind:imp:1s; +foirait foirer ver 14.76 2.09 0.07 0.2 ind:imp:3s; +foire foire nom f s 11.83 15.95 11.11 13.78 +foirent foirer ver 14.76 2.09 0.16 0.07 ind:pre:3p; +foirer foirer ver 14.76 2.09 4.6 0.34 inf; +foirera foirer ver 14.76 2.09 0.05 0 ind:fut:3s; +foires foire nom f p 11.83 15.95 0.72 2.16 +foireuse foireux adj f s 3.2 4.05 0.37 0.41 +foireuses foireux adj f p 3.2 4.05 0.26 0.61 +foireux foireux adj m 3.2 4.05 2.57 3.04 +foirez foirer ver 14.76 2.09 0.15 0 imp:pre:2p;ind:pre:2p; +foiridon foiridon nom m s 0 0.2 0 0.2 +foiré foirer ver m s 14.76 2.09 6.96 0.74 par:pas; +foirée foirer ver f s 14.76 2.09 0.11 0 par:pas; +foirées foirer ver f p 14.76 2.09 0.02 0.07 par:pas; +foirés foirer ver m p 14.76 2.09 0.03 0.07 par:pas; +fois fois nom f p 899.25 1140 899.25 1140 +foison foison nom f s 0.31 1.15 0.31 1.15 +foisonnaient foisonner ver 0.09 1.42 0 0.41 ind:imp:3p; +foisonnait foisonner ver 0.09 1.42 0 0.07 ind:imp:3s; +foisonnant foisonner ver 0.09 1.42 0.01 0.14 par:pre; +foisonnante foisonnant adj f s 0.1 0.88 0.1 0.34 +foisonnantes foisonnant adj f p 0.1 0.88 0 0.2 +foisonne foisonner ver 0.09 1.42 0.02 0.14 ind:pre:3s; +foisonnement foisonnement nom m s 0 1.55 0 1.55 +foisonnent foisonner ver 0.09 1.42 0.04 0.47 ind:pre:3p; +foisonner foisonner ver 0.09 1.42 0.01 0.14 inf; +foisonneraient foisonner ver 0.09 1.42 0 0.07 cnd:pre:3p; +foisonneront foisonner ver 0.09 1.42 0.01 0 ind:fut:3p; +fol fol adj m s 0.66 1.62 0.41 1.28 +folasse folasse nom f s 0.01 0 0.01 0 +foldingue foldingue adj s 0.24 0.2 0.24 0.07 +foldingues foldingue nom p 0.07 0.07 0.03 0 +foliacée foliacé adj f s 0.01 0 0.01 0 +folichon folichon adj m s 0.72 0.27 0.69 0.2 +folichonnait folichonner ver 0 0.14 0 0.07 ind:imp:3s; +folichonne folichon adj f s 0.72 0.27 0.02 0 +folichonneries folichonnerie nom f p 0 0.07 0 0.07 +folichonnes folichon adj f p 0.72 0.27 0.01 0.07 +folie folie nom f s 52.39 60.74 49.01 52.43 +folies folie nom f p 52.39 60.74 3.38 8.31 +folingue folingue adj m s 0.02 0.68 0.02 0.61 +folingues folingue adj p 0.02 0.68 0 0.07 +folio folio nom m s 0.02 0.54 0.02 0.41 +folioles foliole nom f p 0 0.14 0 0.14 +folios folio nom m p 0.02 0.54 0 0.14 +folique folique adj m s 0.13 0 0.13 0 +folk folk nom m s 1.73 2.64 1.3 2.64 +folklo folklo adj s 0.04 0.47 0.04 0.47 +folklore folklore nom m s 0.86 3.78 0.85 3.72 +folklores folklore nom m p 0.86 3.78 0.01 0.07 +folklorique folklorique adj s 1.73 1.96 0.79 0.95 +folkloriques folklorique adj p 1.73 1.96 0.94 1.01 +folkloriste folkloriste nom s 0 0.2 0 0.14 +folkloristes folkloriste nom p 0 0.2 0 0.07 +folks folk nom m p 1.73 2.64 0.42 0 +folle fou adj f s 321.31 164.32 84.38 46.01 +folledingue folledingue nom s 0.02 0 0.02 0 +follement follement adv 4.15 6.42 4.15 6.42 +folles fou adj f p 321.31 164.32 6.47 11.62 +follet follet adj m s 0.3 3.11 0.08 1.15 +follets follet adj m p 0.3 3.11 0.23 1.55 +follette follet adj f s 0.3 3.11 0 0.2 +follettes follet adj f p 0.3 3.11 0 0.2 +folliculaire folliculaire adj f s 0.05 0 0.05 0 +folliculaires folliculaire nom m p 0 0.07 0 0.07 +follicule follicule nom m s 0.36 0 0.15 0 +follicules follicule nom m p 0.36 0 0.21 0 +folliculite folliculite nom f s 0.02 0 0.02 0 +follingue follingue adj s 0 0.07 0 0.07 +fols fol adj m p 0.66 1.62 0.25 0.34 +folâtraient folâtrer ver 0.36 0.95 0 0.34 ind:imp:3p; +folâtrait folâtrer ver 0.36 0.95 0.02 0.14 ind:imp:3s; +folâtre folâtrer ver 0.36 0.95 0.3 0.2 imp:pre:2s;ind:pre:3s; +folâtrent folâtrer ver 0.36 0.95 0 0.07 ind:pre:3p; +folâtrer folâtrer ver 0.36 0.95 0.04 0.2 inf; +folâtreries folâtrerie nom f p 0.01 0.07 0.01 0.07 +folâtres folâtre adj p 0.28 0.74 0.01 0.34 +fomentaient fomenter ver 0.44 1.35 0 0.07 ind:imp:3p; +fomentait fomenter ver 0.44 1.35 0 0.2 ind:imp:3s; +fomentateurs fomentateur nom m p 0.01 0 0.01 0 +fomente fomenter ver 0.44 1.35 0.24 0.07 ind:pre:1s;ind:pre:3s; +fomentent fomenter ver 0.44 1.35 0.04 0.14 ind:pre:3p; +fomenter fomenter ver 0.44 1.35 0.06 0.61 inf; +fomenté fomenter ver m s 0.44 1.35 0.11 0.2 par:pas; +fomentée fomenter ver f s 0.44 1.35 0 0.07 par:pas; +fonce foncer ver 30.27 41.82 16.31 12.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +foncent foncer ver 30.27 41.82 1.44 2.09 ind:pre:3p; +foncer foncer ver 30.27 41.82 3.34 6.01 inf; +foncera foncer ver 30.27 41.82 0.05 0 ind:fut:3s; +foncerai foncer ver 30.27 41.82 0.03 0 ind:fut:1s; +fonceraient foncer ver 30.27 41.82 0.03 0.14 cnd:pre:3p; +foncerais foncer ver 30.27 41.82 0.04 0 cnd:pre:1s; +foncerait foncer ver 30.27 41.82 0.03 0.07 cnd:pre:3s; +foncerons foncer ver 30.27 41.82 0.02 0 ind:fut:1p; +fonceront foncer ver 30.27 41.82 0.04 0.07 ind:fut:3p; +fonces foncer ver 30.27 41.82 1.16 0.2 ind:pre:2s;sub:pre:2s; +fonceur fonceur nom m s 0.72 0.14 0.42 0.14 +fonceurs fonceur nom m p 0.72 0.14 0.15 0 +fonceuse fonceur nom f s 0.72 0.14 0.16 0 +foncez foncer ver 30.27 41.82 2.69 0.27 imp:pre:2p;ind:pre:2p; +foncier foncier adj m s 1.2 2.64 0.33 1.28 +fonciers foncier adj m p 1.2 2.64 0.62 0.41 +fonciez foncer ver 30.27 41.82 0.02 0 ind:imp:2p; +foncions foncer ver 30.27 41.82 0 0.14 ind:imp:1p; +foncière foncier adj f s 1.2 2.64 0.2 0.81 +foncièrement foncièrement adv 0.18 2.09 0.18 2.09 +foncières foncier adj f p 1.2 2.64 0.05 0.14 +foncteur foncteur nom m s 0.01 0 0.01 0 +fonction fonction nom f s 21.95 37.91 13.12 21.76 +fonctionna fonctionner ver 42.51 24.39 0.04 0.34 ind:pas:3s; +fonctionnaient fonctionner ver 42.51 24.39 0.48 1.42 ind:imp:3p; +fonctionnaire fonctionnaire nom s 8.13 26.89 5.03 11.28 +fonctionnaires fonctionnaire nom p 8.13 26.89 3.1 15.61 +fonctionnais fonctionner ver 42.51 24.39 0.03 0 ind:imp:1s; +fonctionnait fonctionner ver 42.51 24.39 1.24 5.47 ind:imp:3s; +fonctionnaliste fonctionnaliste adj f s 0 0.07 0 0.07 +fonctionnalité fonctionnalité nom f s 0.07 0 0.07 0 +fonctionnant fonctionner ver 42.51 24.39 0.17 1.22 par:pre; +fonctionnarisé fonctionnariser ver m s 0 0.14 0 0.07 par:pas; +fonctionnarisée fonctionnariser ver f s 0 0.14 0 0.07 par:pas; +fonctionnassent fonctionner ver 42.51 24.39 0 0.07 sub:imp:3p; +fonctionne fonctionner ver 42.51 24.39 23.76 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fonctionnel fonctionnel adj m s 2.05 1.55 1.28 0.47 +fonctionnelle fonctionnel adj f s 2.05 1.55 0.6 0.54 +fonctionnellement fonctionnellement adv 0 0.07 0 0.07 +fonctionnelles fonctionnel adj f p 2.05 1.55 0.04 0.2 +fonctionnels fonctionnel adj m p 2.05 1.55 0.13 0.34 +fonctionnement fonctionnement nom m s 2.69 6.01 2.69 6.01 +fonctionnent fonctionner ver 42.51 24.39 5.29 1.42 ind:pre:3p; +fonctionner fonctionner ver 42.51 24.39 6.59 7.03 inf; +fonctionnera fonctionner ver 42.51 24.39 0.91 0.07 ind:fut:3s; +fonctionneraient fonctionner ver 42.51 24.39 0.02 0 cnd:pre:3p; +fonctionnerait fonctionner ver 42.51 24.39 0.52 0.07 cnd:pre:3s; +fonctionneront fonctionner ver 42.51 24.39 0.13 0.07 ind:fut:3p; +fonctionnes fonctionner ver 42.51 24.39 0.2 0 ind:pre:2s; +fonctionnez fonctionner ver 42.51 24.39 0.07 0 ind:pre:2p; +fonctionnons fonctionner ver 42.51 24.39 0.07 0 ind:pre:1p; +fonctionnât fonctionner ver 42.51 24.39 0 0.34 sub:imp:3s; +fonctionné fonctionner ver m s 42.51 24.39 2.98 0.81 par:pas; +fonctions fonction nom f p 21.95 37.91 8.83 16.15 +foncèrent foncer ver 30.27 41.82 0.05 0.47 ind:pas:3p; +foncé foncer ver m s 30.27 41.82 3.4 6.55 par:pas; +foncée foncé adj f s 4.06 11.08 0.75 1.62 +foncées foncé adj f p 4.06 11.08 0.14 0.47 +foncés foncé adj m p 4.06 11.08 0.69 1.08 +fond fond nom m s 110.07 376.15 110.07 376.15 +fonda fonder ver 15.97 34.66 0.22 1.15 ind:pas:3s; +fondaient fonder ver 15.97 34.66 0.08 3.24 ind:imp:3p; +fondais fonder ver 15.97 34.66 0.11 0.81 ind:imp:1s;ind:imp:2s; +fondait fonder ver 15.97 34.66 0.25 7.97 ind:imp:3s; +fondamental fondamental adj m s 4.69 9.19 1.45 2.64 +fondamentale fondamental adj f s 4.69 9.19 1.55 4.39 +fondamentalement fondamentalement adv 2.03 1.15 2.03 1.15 +fondamentales fondamental adj f p 4.69 9.19 0.89 1.28 +fondamentalisme fondamentalisme nom m s 0.02 0 0.02 0 +fondamentaliste fondamentaliste adj s 0.19 0 0.11 0 +fondamentalistes fondamentaliste nom p 0.48 0 0.46 0 +fondamentaux fondamental adj m p 4.69 9.19 0.8 0.88 +fondant fondant nom m s 0.23 0.68 0.21 0.61 +fondante fondant adj f s 0.18 2.7 0.05 1.08 +fondantes fondant adj f p 0.18 2.7 0 0.2 +fondants fondant adj m p 0.18 2.7 0.03 0.2 +fondateur fondateur nom m s 5.11 2.16 2.4 1.69 +fondateurs fondateur nom m p 5.11 2.16 2.64 0.2 +fondation fondation nom f s 9.74 7.64 6.39 3.99 +fondations fondation nom f p 9.74 7.64 3.35 3.65 +fondatrice fondateur adj f s 1.91 1.55 0.09 0.07 +fondatrices fondateur nom f p 5.11 2.16 0.01 0 +fonde fonder ver 15.97 34.66 2.23 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fondement fondement nom m s 2.47 3.78 1.76 2.43 +fondements fondement nom m p 2.47 3.78 0.71 1.35 +fondent fonder ver 15.97 34.66 1.21 3.85 ind:pre:3p;sub:pre:3p; +fonder fonder ver 15.97 34.66 4.21 4.26 inf; +fondera fonder ver 15.97 34.66 0.15 0 ind:fut:3s; +fonderais fonder ver 15.97 34.66 0.04 0 cnd:pre:1s; +fonderait fonder ver 15.97 34.66 0.02 0 cnd:pre:3s; +fonderez fonder ver 15.97 34.66 0.02 0 ind:fut:2p; +fonderie fonderie nom f s 0.53 1.42 0.51 0.41 +fonderies fonderie nom f p 0.53 1.42 0.03 1.01 +fonderons fonder ver 15.97 34.66 0.02 0 ind:fut:1p; +fonderont fonder ver 15.97 34.66 0.14 0.07 ind:fut:3p; +fondeur fondeur nom m s 0.34 0.41 0.34 0.41 +fondez fonder ver 15.97 34.66 0.33 0 imp:pre:2p;ind:pre:2p; +fondions fonder ver 15.97 34.66 0.02 0.07 ind:imp:1p; +fondirent fondre ver 17.32 38.18 0.02 0.68 ind:pas:3p; +fondis fondre ver 17.32 38.18 0 0.07 ind:pas:1s; +fondit fondre ver 17.32 38.18 0.04 2.97 ind:pas:3s; +fondons fonder ver 15.97 34.66 0.2 0 imp:pre:1p;ind:pre:1p; +fondouk fondouk nom m s 0 0.07 0 0.07 +fondra fondre ver 17.32 38.18 0.28 0.27 ind:fut:3s; +fondrai fondre ver 17.32 38.18 0.16 0 ind:fut:1s; +fondraient fondre ver 17.32 38.18 0.01 0.2 cnd:pre:3p; +fondrait fondre ver 17.32 38.18 0.11 0.27 cnd:pre:3s; +fondras fondre ver 17.32 38.18 0.03 0 ind:fut:2s; +fondre fondre ver 17.32 38.18 8.05 17.7 ind:pre:2p;inf; +fondriez fondre ver 17.32 38.18 0.01 0 cnd:pre:2p; +fondrière fondrière nom f s 0.01 1.96 0 0.61 +fondrières fondrière nom f p 0.01 1.96 0.01 1.35 +fonds fonds nom m 15.1 16.62 15.1 16.62 +fondu fondre ver m s 17.32 38.18 3.42 5.95 par:pas; +fondue fondue nom f s 1.08 0.81 1.04 0.74 +fondues fondre ver f p 17.32 38.18 0.11 0.81 par:pas; +fondus fondu adj m p 1.82 2.84 0.22 0.47 +fondât fonder ver 15.97 34.66 0 0.14 sub:imp:3s; +fondèrent fonder ver 15.97 34.66 0.17 0.07 ind:pas:3p; +fondé fonder ver m s 15.97 34.66 4.09 4.73 par:pas; +fondée fonder ver f s 15.97 34.66 1.28 3.31 par:pas; +fondées fonder ver f p 15.97 34.66 0.52 0.54 par:pas; +fondés fonder ver m p 15.97 34.66 0.46 0.88 par:pas; +fondît fondre ver 17.32 38.18 0 0.07 sub:imp:3s; +fongible fongible adj s 0.04 0 0.04 0 +fongicide fongicide nom m s 0.04 0 0.04 0 +fongique fongique adj s 0.05 0 0.05 0 +fongueuse fongueux adj f s 0 0.14 0 0.07 +fongueuses fongueux adj f p 0 0.14 0 0.07 +fongus fongus nom m 0.04 0 0.04 0 +font faire ver_sup 8813.48 5328.99 193.61 153.92 ind:pre:3p; +fontaine fontaine nom f s 7.72 24.46 6.62 17.36 +fontaines fontaine nom f p 7.72 24.46 1.11 7.09 +fontainette fontainette nom f s 0 0.27 0 0.27 +fontainier fontainier nom m s 0.27 0 0.27 0 +fontanelle fontanelle nom f s 0.14 0.07 0.14 0.07 +fonte fonte nom f s 0.74 8.78 0.74 8.31 +fontes fonte nom f p 0.74 8.78 0 0.47 +fonts fonts nom m p 0.1 1.08 0.1 1.08 +fonça foncer ver 30.27 41.82 0.17 3.18 ind:pas:3s; +fonçai foncer ver 30.27 41.82 0.01 0.81 ind:pas:1s; +fonçaient foncer ver 30.27 41.82 0.21 1.76 ind:imp:3p; +fonçais foncer ver 30.27 41.82 0.14 0.81 ind:imp:1s;ind:imp:2s; +fonçait foncer ver 30.27 41.82 0.23 3.85 ind:imp:3s; +fonçant foncer ver 30.27 41.82 0.26 2.3 par:pre; +fonçons foncer ver 30.27 41.82 0.23 0.34 imp:pre:1p;ind:pre:1p; +foot foot nom m s 24.18 5.54 24.18 5.54 +football football nom m s 13.93 6.28 13.93 6.28 +footballeur footballeur nom m s 2.76 1.01 2.01 0.54 +footballeur_vedette footballeur_vedette nom m s 0.01 0 0.01 0 +footballeurs footballeur nom m p 2.76 1.01 0.71 0.47 +footballeuse footballeur nom f s 2.76 1.01 0.04 0 +footballistique footballistique adj f s 0.03 0.07 0.02 0 +footballistiques footballistique adj f p 0.03 0.07 0.01 0.07 +footeuse footeux adj f s 0.01 0 0.01 0 +footeux footeux nom m 0.04 0 0.04 0 +footing footing nom m s 0.45 0.34 0.45 0.34 +for for nom m s 21.32 8.51 21.32 8.51 +forage forage nom m s 0.91 0.27 0.82 0.2 +forages forage nom m p 0.91 0.27 0.09 0.07 +foraient forer ver 1.66 1.69 0.02 0.14 ind:imp:3p; +forain forain adj m s 2.14 6.22 0.39 1.42 +foraine forain adj f s 2.14 6.22 1.52 3.24 +foraines forain adj f p 2.14 6.22 0.23 1.08 +forains forain nom m p 0.44 2.5 0.34 1.01 +forait forer ver 1.66 1.69 0.14 0.27 ind:imp:3s; +foramen foramen nom m s 0.03 0 0.03 0 +foraminifères foraminifère nom m p 0.01 0 0.01 0 +forant forer ver 1.66 1.69 0.02 0.2 par:pre; +forban forban nom m s 0.19 1.01 0.03 0.74 +forbans forban nom m p 0.19 1.01 0.16 0.27 +force force adj_ind 1.41 4.86 1.41 4.86 +forcement forcement nom m s 0.81 0.07 0.81 0.07 +forcent forcer ver 64.64 75.41 1.14 1.08 ind:pre:3p; +forcené forcené nom m s 0.94 2.23 0.75 1.35 +forcenée forcené nom f s 0.94 2.23 0.02 0.2 +forcenées forcené nom f p 0.94 2.23 0.01 0 +forcenés forcené nom m p 0.94 2.23 0.16 0.68 +forceps forceps nom m 0.72 0.95 0.72 0.95 +forcer forcer ver 64.64 75.41 16.33 18.04 inf; +forcera forcer ver 64.64 75.41 0.76 0.34 ind:fut:3s; +forcerai forcer ver 64.64 75.41 0.47 0.2 ind:fut:1s; +forcerais forcer ver 64.64 75.41 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +forcerait forcer ver 64.64 75.41 0.14 0.2 cnd:pre:3s; +forceras forcer ver 64.64 75.41 0.05 0 ind:fut:2s; +forcerez forcer ver 64.64 75.41 0.11 0 ind:fut:2p; +forceront forcer ver 64.64 75.41 0.12 0 ind:fut:3p; +forces force nom f p 151.96 344.73 43.67 126.35 +forceur forceur nom m s 0.02 0.2 0.02 0.07 +forceurs forceur nom m p 0.02 0.2 0 0.14 +forcez forcer ver 64.64 75.41 2.81 0.74 imp:pre:2p;ind:pre:2p; +forci forcir ver m s 0.14 1.08 0.02 0.74 par:pas; +forciez forcer ver 64.64 75.41 0.06 0 ind:imp:2p; +forcing forcing nom m s 0.13 0.88 0.13 0.88 +forcions forcer ver 64.64 75.41 0.03 0.2 ind:imp:1p; +forcir forcir ver 0.14 1.08 0.01 0.2 inf; +forcis forcir ver m p 0.14 1.08 0 0.07 par:pas; +forcissait forcir ver 0.14 1.08 0 0.07 ind:imp:3s; +forcit forcir ver 0.14 1.08 0.11 0 ind:pre:3s; +forcèrent forcer ver 64.64 75.41 0.04 0.68 ind:pas:3p; +forcé forcer ver m s 64.64 75.41 16.33 16.55 par:pas; +forcée forcer ver f s 64.64 75.41 6.41 4.46 par:pas; +forcées forcer ver f p 64.64 75.41 0.94 0.61 par:pas; +forcément forcément adv 24.23 29.12 24.23 29.12 +forcés forcer ver m p 64.64 75.41 2.67 2.64 par:pas; +fore forer ver 1.66 1.69 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +foreign_office foreign_office nom m s 0 2.5 0 2.5 +forent forer ver 1.66 1.69 0.01 0.07 ind:pre:3p; +forer forer ver 1.66 1.69 0.8 0.47 inf; +forestier forestier adj m s 3.19 6.42 2.13 2.09 +forestiers forestier adj m p 3.19 6.42 0.42 0.61 +forestière forestier adj f s 3.19 6.42 0.49 2.91 +forestières forestier adj f p 3.19 6.42 0.14 0.81 +foret foret nom m s 1.56 0.54 1.16 0.14 +forets foret nom m p 1.56 0.54 0.4 0.41 +foreur foreur adj m s 0.43 0 0.42 0 +foreurs foreur nom m p 1.2 0.2 0.13 0.07 +foreuse foreur nom f s 1.2 0.2 0.68 0.14 +foreuses foreur nom f p 1.2 0.2 0.17 0 +forez forer ver 1.66 1.69 0.03 0 ind:pre:2p; +forfait forfait nom m s 2.03 4.59 1.5 3.38 +forfaitaire forfaitaire adj s 0.05 0.2 0.05 0.14 +forfaitaires forfaitaire adj f p 0.05 0.2 0 0.07 +forfaits forfait nom m p 2.03 4.59 0.53 1.22 +forfaiture forfaiture nom f s 0.02 0.61 0.02 0.61 +forfanterie forfanterie nom f s 0.17 0.74 0.17 0.68 +forfanteries forfanterie nom f p 0.17 0.74 0 0.07 +forficules forficule nom f p 0 0.07 0 0.07 +forge forger ver 9.02 11.82 1.78 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +forgea forger ver 9.02 11.82 0 0.07 ind:pas:3s; +forgeage forgeage nom m s 0.14 0 0.14 0 +forgeaient forger ver 9.02 11.82 0 0.07 ind:imp:3p; +forgeais forger ver 9.02 11.82 0 0.07 ind:imp:1s; +forgeait forger ver 9.02 11.82 0.12 0.61 ind:imp:3s; +forgeant forger ver 9.02 11.82 0.1 0.27 par:pre; +forgent forger ver 9.02 11.82 0.31 0.2 ind:pre:3p; +forgeons forger ver 9.02 11.82 0.02 0.14 imp:pre:1p;ind:pre:1p; +forger forger ver 9.02 11.82 3.16 1.62 inf; +forgera forger ver 9.02 11.82 0.21 0.07 ind:fut:3s; +forgerai forger ver 9.02 11.82 0.2 0 ind:fut:1s; +forgeries forgerie nom f p 0 0.07 0 0.07 +forgeron forgeron nom m s 3.76 4.39 3.49 3.38 +forgeronne forgeron nom f s 3.76 4.39 0.02 0 +forgerons forgeron nom m p 3.76 4.39 0.25 1.01 +forges forge nom f p 1.64 8.58 0.13 0.95 +forgeur forgeur nom m s 0.15 0 0.15 0 +forgions forger ver 9.02 11.82 0.1 0.07 ind:imp:1p; +forgèrent forger ver 9.02 11.82 0.03 0 ind:pas:3p; +forgé forger ver m s 9.02 11.82 1.55 5.81 par:pas; +forgée forger ver f s 9.02 11.82 0.92 0.41 par:pas; +forgées forger ver f p 9.02 11.82 0.05 0.88 par:pas; +forgés forger ver m p 9.02 11.82 0.45 0.74 par:pas; +forints forint nom m p 0.14 0 0.14 0 +forlane forlane nom f s 0.1 0 0.1 0 +forlonger forlonger ver 0 0.14 0 0.07 inf; +forlongés forlonger ver m p 0 0.14 0 0.07 par:pas; +forma former ver 39.69 110.27 0.16 2.16 ind:pas:3s; +formage formage nom m s 0 0.07 0 0.07 +formai former ver 39.69 110.27 0 0.07 ind:pas:1s; +formaient former ver 39.69 110.27 0.73 16.96 ind:imp:3p; +formais former ver 39.69 110.27 0.01 0.47 ind:imp:1s; +formait former ver 39.69 110.27 1.42 11.69 ind:imp:3s; +formaldéhyde formaldéhyde nom m s 0.34 0 0.34 0 +formalisa formaliser ver 0.43 2.23 0 0.34 ind:pas:3s; +formalisaient formaliser ver 0.43 2.23 0 0.07 ind:imp:3p; +formalisais formaliser ver 0.43 2.23 0 0.14 ind:imp:1s; +formalisait formaliser ver 0.43 2.23 0 0.41 ind:imp:3s; +formalise formaliser ver 0.43 2.23 0.13 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +formaliser formaliser ver 0.43 2.23 0.04 0.68 inf; +formalisera formaliser ver 0.43 2.23 0.01 0 ind:fut:3s; +formaliserait formaliser ver 0.43 2.23 0 0.14 cnd:pre:3s; +formalisez formaliser ver 0.43 2.23 0.25 0.07 imp:pre:2p;ind:pre:2p; +formalisme formalisme nom m s 0.12 0.34 0.12 0.34 +formaliste formaliste adj m s 0.02 0.27 0.02 0.07 +formalistes formaliste adj f p 0.02 0.27 0 0.2 +formalisât formaliser ver 0.43 2.23 0 0.07 sub:imp:3s; +formalisé formalisé adj m s 0.01 0 0.01 0 +formalisée formaliser ver f s 0.43 2.23 0 0.07 par:pas; +formalisés formaliser ver m p 0.43 2.23 0 0.07 par:pas; +formalité formalité nom f s 7.08 7.03 3.77 2.97 +formalités formalité nom f p 7.08 7.03 3.3 4.05 +formant former ver 39.69 110.27 0.56 7.91 par:pre; +format format nom m s 1.9 8.11 1.8 6.96 +formatage formatage nom m s 0.07 0 0.07 0 +formater formater ver 0.13 0 0.04 0 inf; +formateur formateur adj m s 0.42 0.2 0.19 0.07 +formation formation nom f s 14.4 12.16 13.68 9.32 +formations formation nom f p 14.4 12.16 0.72 2.84 +formatrice formateur adj f s 0.42 0.2 0.12 0.14 +formatrices formateur adj f p 0.42 0.2 0.11 0 +formats format nom m p 1.9 8.11 0.1 1.15 +formaté formater ver m s 0.13 0 0.09 0 par:pas; +forme forme nom f s 94.19 176.69 82.61 137.91 +formel formel adj m s 4.55 9.05 2.4 3.31 +formelle formel adj f s 4.55 9.05 1.13 3.99 +formellement formellement adv 1.48 4.53 1.48 4.53 +formelles formel adj f p 4.55 9.05 0.4 0.81 +formels formel adj m p 4.55 9.05 0.62 0.95 +forment former ver 39.69 110.27 4.51 11.01 ind:pre:3p;sub:pre:3p; +former former ver 39.69 110.27 8.18 15.95 inf; +formera former ver 39.69 110.27 0.59 0.07 ind:fut:3s; +formerai former ver 39.69 110.27 0.1 0.07 ind:fut:1s; +formeraient former ver 39.69 110.27 0.28 0.54 cnd:pre:3p; +formerais former ver 39.69 110.27 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +formerait former ver 39.69 110.27 0.09 0.34 cnd:pre:3s; +formerez former ver 39.69 110.27 0.22 0.07 ind:fut:2p; +formeriez former ver 39.69 110.27 0.13 0 cnd:pre:2p; +formerons former ver 39.69 110.27 0.52 0.14 ind:fut:1p; +formeront former ver 39.69 110.27 0.42 0.41 ind:fut:3p; +formes forme nom f p 94.19 176.69 11.58 38.78 +formez former ver 39.69 110.27 2.7 0.27 imp:pre:2p;ind:pre:2p; +formica formica nom m s 0.28 2.03 0.28 1.96 +formicas formica nom m p 0.28 2.03 0 0.07 +formid formid adj f s 0.02 0.2 0.02 0.14 +formidable formidable adj s 54.23 34.32 51.79 30.07 +formidablement formidablement adv 0.24 1.42 0.24 1.42 +formidables formidable adj p 54.23 34.32 2.44 4.26 +formide formide adj s 0.01 0.27 0.01 0.2 +formides formide adj f p 0.01 0.27 0 0.07 +formids formid adj p 0.02 0.2 0 0.07 +formiez former ver 39.69 110.27 0.3 0.07 ind:imp:2p; +formions former ver 39.69 110.27 0.24 1.62 ind:imp:1p; +formique formique adj m s 0.04 0.07 0.04 0.07 +formol formol nom m s 0.88 0.74 0.88 0.74 +formons former ver 39.69 110.27 1.94 0.88 imp:pre:1p;ind:pre:1p; +formula formuler ver 3.52 15.54 0.01 0.54 ind:pas:3s; +formulai formuler ver 3.52 15.54 0 0.14 ind:pas:1s; +formulaient formuler ver 3.52 15.54 0 0.14 ind:imp:3p; +formulaire formulaire nom m s 9.73 1.55 6.93 0.81 +formulaires formulaire nom m p 9.73 1.55 2.8 0.74 +formulais formuler ver 3.52 15.54 0.11 0.34 ind:imp:1s; +formulait formuler ver 3.52 15.54 0.01 1.08 ind:imp:3s; +formulant formuler ver 3.52 15.54 0 0.54 par:pre; +formulation formulation nom f s 0.41 1.15 0.28 1.01 +formulations formulation nom f p 0.41 1.15 0.14 0.14 +formule formule nom f s 12.53 34.39 10.97 22.84 +formulent formuler ver 3.52 15.54 0.01 0.2 ind:pre:3p; +formuler formuler ver 3.52 15.54 1.88 7.5 inf; +formulera formuler ver 3.52 15.54 0 0.2 ind:fut:3s; +formules formule nom f p 12.53 34.39 1.56 11.55 +formulettes formulette nom f p 0 0.07 0 0.07 +formulez formuler ver 3.52 15.54 0.07 0.14 imp:pre:2p;ind:pre:2p; +formulons formuler ver 3.52 15.54 0.04 0.07 imp:pre:1p;ind:pre:1p; +formulât formuler ver 3.52 15.54 0 0.07 sub:imp:3s; +formulé formuler ver m s 3.52 15.54 0.44 1.22 par:pas; +formulée formulé adj f s 0.26 1.69 0.13 0.54 +formulées formuler ver f p 3.52 15.54 0.08 1.15 par:pas; +formulés formulé adj m p 0.26 1.69 0.01 0.27 +formèrent former ver 39.69 110.27 0.28 1.42 ind:pas:3p; +formé former ver m s 39.69 110.27 5.5 14.32 par:pas; +formée former ver f s 39.69 110.27 2 5.47 ind:imp:3p;par:pas; +formées former ver f p 39.69 110.27 0.25 2.23 par:pas; +formés former ver m p 39.69 110.27 1.49 3.92 par:pas; +fornicateur fornicateur nom m s 0.51 0.34 0.21 0.14 +fornicateurs fornicateur nom m p 0.51 0.34 0.11 0.2 +fornication fornication nom f s 1.06 1.22 1.05 0.95 +fornications fornication nom f p 1.06 1.22 0.01 0.27 +fornicatrice fornicateur nom f s 0.51 0.34 0.19 0 +forniquaient forniquer ver 0.89 1.22 0.01 0.14 ind:imp:3p; +forniquait forniquer ver 0.89 1.22 0.01 0.27 ind:imp:3s; +forniquant forniquer ver 0.89 1.22 0.05 0.07 par:pre; +fornique forniquer ver 0.89 1.22 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +forniquent forniquer ver 0.89 1.22 0.07 0.07 ind:pre:3p; +forniquer forniquer ver 0.89 1.22 0.51 0.47 inf; +forniqué forniquer ver m s 0.89 1.22 0.19 0.14 par:pas; +fors fors pre 0.01 0.27 0.01 0.27 +forsythias forsythia nom m p 0 0.07 0 0.07 +fort fort adv_sup 171.91 212.77 171.91 212.77 +forte fort adj_sup f s 95.28 140.27 42.42 62.64 +fortement fortement adv 4.25 15.68 4.25 15.68 +forteresse forteresse nom f s 7.53 16.96 7.38 14.05 +forteresses forteresse nom f p 7.53 16.96 0.14 2.91 +fortes fort adj_sup f p 95.28 140.27 7.92 16.35 +fortiche fortiche adj s 1.14 2.03 0.84 1.49 +fortiches fortiche adj p 1.14 2.03 0.3 0.54 +fortifia fortifier ver 2.19 6.55 0.11 0.27 ind:pas:3s; +fortifiaient fortifier ver 2.19 6.55 0.01 0.14 ind:imp:3p; +fortifiais fortifier ver 2.19 6.55 0 0.07 ind:imp:1s; +fortifiait fortifier ver 2.19 6.55 0 0.81 ind:imp:3s; +fortifiant fortifiant nom m s 0.26 0.54 0.23 0.34 +fortifiants fortifiant nom m p 0.26 0.54 0.04 0.2 +fortification fortification nom f s 0.68 2.36 0.22 0.34 +fortifications fortification nom f p 0.68 2.36 0.46 2.03 +fortifie fortifier ver 2.19 6.55 0.74 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fortifient fortifier ver 2.19 6.55 0.04 0.34 ind:pre:3p; +fortifier fortifier ver 2.19 6.55 0.47 1.22 inf; +fortifiera fortifier ver 2.19 6.55 0.13 0 ind:fut:3s; +fortifierait fortifier ver 2.19 6.55 0 0.07 cnd:pre:3s; +fortifiez fortifier ver 2.19 6.55 0.01 0.07 imp:pre:2p; +fortifions fortifier ver 2.19 6.55 0.1 0.07 imp:pre:1p; +fortifiât fortifier ver 2.19 6.55 0 0.07 sub:imp:3s; +fortifièrent fortifier ver 2.19 6.55 0.01 0 ind:pas:3p; +fortifié fortifier ver m s 2.19 6.55 0.22 1.01 par:pas; +fortifiée fortifié adj f s 0.43 1.82 0.29 0.68 +fortifiées fortifier ver f p 2.19 6.55 0.02 0.27 par:pas; +fortifiés fortifier ver m p 2.19 6.55 0.14 0.14 par:pas; +fortifs fortif nom f p 0 1.01 0 1.01 +fortin fortin nom m s 0.33 3.31 0.32 2.7 +fortins fortin nom m p 0.33 3.31 0.01 0.61 +fortissimo fortissimo nom_sup m s 0.11 0.2 0.11 0.2 +fortitude fortitude nom f s 0.05 0.07 0.05 0.07 +fortraiture fortraiture nom f s 0 0.07 0 0.07 +forts fort adj_sup m p 95.28 140.27 17 17.43 +fortuit fortuit adj m s 1.96 3.38 0.55 1.22 +fortuite fortuit adj f s 1.96 3.38 1.29 1.28 +fortuitement fortuitement adv 0.17 0.34 0.17 0.34 +fortuites fortuit adj f p 1.96 3.38 0.07 0.68 +fortuits fortuit adj m p 1.96 3.38 0.05 0.2 +fortune fortune nom f s 33.62 51.49 32.35 46.49 +fortunes fortune nom f p 33.62 51.49 1.27 5 +fortuné fortuné adj m s 2.84 3.45 1.24 1.35 +fortunée fortuné adj f s 2.84 3.45 0.48 0.41 +fortunées fortuné adj f p 2.84 3.45 0.17 0.47 +fortunés fortuné adj m p 2.84 3.45 0.95 1.22 +forum forum nom m s 1.4 1.08 1.14 0.95 +forums forum nom m p 1.4 1.08 0.26 0.14 +força forcer ver 64.64 75.41 0.34 3.38 ind:pas:3s; +forçage forçage nom m s 0.04 0.14 0.04 0.14 +forçai forcer ver 64.64 75.41 0.11 0.34 ind:pas:1s; +forçaient forcer ver 64.64 75.41 0.05 0.61 ind:imp:3p; +forçais forcer ver 64.64 75.41 0.22 1.35 ind:imp:1s;ind:imp:2s; +forçait forcer ver 64.64 75.41 0.7 6.76 ind:imp:3s; +forçant forcer ver 64.64 75.41 0.91 4.86 par:pre; +forçat forçat nom m s 1.26 3.11 0.3 1.35 +forçats forçat nom m p 1.26 3.11 0.96 1.76 +forçons forcer ver 64.64 75.41 0.27 0.14 imp:pre:1p;ind:pre:1p; +forçât forcer ver 64.64 75.41 0 0.2 sub:imp:3s; +foré forer ver m s 1.66 1.69 0.23 0.14 par:pas; +forée forer ver f s 1.66 1.69 0.01 0.14 par:pas; +forés forer ver m p 1.66 1.69 0.14 0.14 par:pas; +forêt forêt nom f s 34.94 113.31 29.57 91.89 +forêts forêt nom f p 34.94 113.31 5.37 21.42 +fosse fosse nom f s 7.92 14.05 6.64 10.74 +fosses fosse nom f p 7.92 14.05 1.27 3.31 +fossette fossette nom f s 0.86 4.32 0.44 2.09 +fossettes fossette nom f p 0.86 4.32 0.42 2.23 +fossile fossile nom m s 2.02 0.74 1.4 0.2 +fossiles fossile nom m p 2.02 0.74 0.62 0.54 +fossilisation fossilisation nom f s 0.13 0.07 0.13 0.07 +fossilisé fossiliser ver m s 0.17 0.68 0.08 0.41 par:pas; +fossilisés fossiliser ver m p 0.17 0.68 0.09 0.27 par:pas; +fossoyeur fossoyeur nom m s 2.77 2.7 2 1.42 +fossoyeurs fossoyeur nom m p 2.77 2.7 0.77 1.28 +fossoyeuse fossoyeuse nom f s 0.01 0 0.01 0 +fossé fossé nom m s 4.71 26.42 4.1 20.07 +fossés fossé nom m p 4.71 26.42 0.61 6.35 +fou fou adj m s 321.31 164.32 181.51 82.03 +fou_fou fou_fou adj m s 0.08 0 0.08 0 +fou_rire fou_rire nom m s 0.02 0.14 0.02 0.14 +fouaces fouace nom f p 0 0.07 0 0.07 +fouailla fouailler ver 0 1.55 0 0.2 ind:pas:3s; +fouaillai fouailler ver 0 1.55 0 0.07 ind:pas:1s; +fouaillaient fouailler ver 0 1.55 0 0.14 ind:imp:3p; +fouaillait fouailler ver 0 1.55 0 0.07 ind:imp:3s; +fouaillant fouailler ver 0 1.55 0 0.14 par:pre; +fouaille fouaille nom f s 0 1.22 0 1.22 +fouailler fouailler ver 0 1.55 0 0.34 inf; +fouaillé fouailler ver m s 0 1.55 0 0.2 par:pas; +fouaillée fouailler ver f s 0 1.55 0 0.14 par:pas; +fouaillées fouailler ver f p 0 1.55 0 0.07 par:pas; +foucade foucade nom f s 0.01 0.47 0.01 0.14 +foucades foucade nom f p 0.01 0.47 0 0.34 +fouchtra fouchtra ono 0 0.27 0 0.27 +foudre foudre nom s 12.94 14.46 12.5 12.64 +foudres foudre nom p 12.94 14.46 0.44 1.82 +foudroie foudroyer ver 2.36 8.99 0.34 0.41 ind:pre:1s;ind:pre:3s; +foudroiement foudroiement nom m s 0.01 0 0.01 0 +foudroient foudroyer ver 2.36 8.99 0 0.14 ind:pre:3p; +foudroiera foudroyer ver 2.36 8.99 0.01 0.07 ind:fut:3s; +foudroieraient foudroyer ver 2.36 8.99 0 0.07 cnd:pre:3p; +foudroierait foudroyer ver 2.36 8.99 0 0.07 cnd:pre:3s; +foudroya foudroyer ver 2.36 8.99 0.01 0.41 ind:pas:3s; +foudroyaient foudroyer ver 2.36 8.99 0 0.14 ind:imp:3p; +foudroyait foudroyer ver 2.36 8.99 0 0.47 ind:imp:3s; +foudroyant foudroyant adj m s 0.52 6.62 0.41 2.23 +foudroyante foudroyant adj f s 0.52 6.62 0.1 3.24 +foudroyantes foudroyant adj f p 0.52 6.62 0 0.54 +foudroyants foudroyant adj m p 0.52 6.62 0.01 0.61 +foudroyer foudroyer ver 2.36 8.99 0.39 1.35 inf; +foudroyions foudroyer ver 2.36 8.99 0.01 0 ind:imp:1p; +foudroyèrent foudroyer ver 2.36 8.99 0 0.07 ind:pas:3p; +foudroyé foudroyer ver m s 2.36 8.99 0.91 2.84 par:pas; +foudroyée foudroyer ver f s 2.36 8.99 0.36 0.95 par:pas; +foudroyées foudroyer ver f p 2.36 8.99 0.04 0.27 par:pas; +foudroyés foudroyer ver m p 2.36 8.99 0.28 1.42 par:pas; +fouet fouet nom m s 8.56 18.31 7.92 16.69 +fouets fouet nom m p 8.56 18.31 0.63 1.62 +fouetta fouetter ver 7.61 17.36 0.14 0.68 ind:pas:3s; +fouettaient fouetter ver 7.61 17.36 0.02 0.41 ind:imp:3p; +fouettais fouetter ver 7.61 17.36 0.04 0.27 ind:imp:1s; +fouettait fouetter ver 7.61 17.36 0.09 2.36 ind:imp:3s; +fouettant fouetter ver 7.61 17.36 0.03 1.42 par:pre; +fouettard fouettard adj m s 0.34 0.68 0.34 0.47 +fouettards fouettard adj m p 0.34 0.68 0 0.2 +fouette fouetter ver 7.61 17.36 1.65 2.3 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fouettement fouettement nom m s 0.01 0.27 0.01 0.2 +fouettements fouettement nom m p 0.01 0.27 0 0.07 +fouettent fouetter ver 7.61 17.36 0.07 0.68 ind:pre:3p; +fouetter fouetter ver 7.61 17.36 2.27 4.26 inf; +fouettera fouetter ver 7.61 17.36 0.06 0 ind:fut:3s; +fouetterai fouetter ver 7.61 17.36 0.12 0 ind:fut:1s; +fouetterait fouetter ver 7.61 17.36 0.03 0.07 cnd:pre:3s; +fouetteront fouetter ver 7.61 17.36 0.02 0.07 ind:fut:3p; +fouettes fouetter ver 7.61 17.36 0.12 0.07 ind:pre:2s; +fouetteur fouetteur nom m s 0.16 0.41 0.02 0 +fouetteurs fouetteur nom m p 0.16 0.41 0.14 0.07 +fouetteuse fouetteur nom f s 0.16 0.41 0 0.34 +fouettez fouetter ver 7.61 17.36 0.36 0.14 imp:pre:2p;ind:pre:2p; +fouettons fouetter ver 7.61 17.36 0.02 0.14 imp:pre:1p;ind:pre:1p; +fouettèrent fouetter ver 7.61 17.36 0 0.14 ind:pas:3p; +fouetté fouetter ver m s 7.61 17.36 0.81 1.69 par:pas; +fouettée fouetter ver f s 7.61 17.36 1.5 1.69 par:pas; +fouettées fouetter ver f p 7.61 17.36 0.04 0.54 par:pas; +fouettés fouetter ver m p 7.61 17.36 0.22 0.47 par:pas; +foufou foufou adj m s 0.44 0 0.42 0 +foufoune foufoune nom f s 0.69 0 0.57 0 +foufounes foufoune nom f p 0.69 0 0.12 0 +foufounette foufounette nom f s 0.01 0.2 0.01 0.2 +foufous foufou adj m p 0.44 0 0.01 0 +fougasse fougasse nom f s 2.54 0.14 2.54 0.14 +fouge fouger ver 0.1 0 0.1 0 imp:pre:2s; +fougeraie fougeraie nom f s 0 0.61 0 0.54 +fougeraies fougeraie nom f p 0 0.61 0 0.07 +fougue fougue nom f s 1.17 5.14 1.17 5.07 +fougues fougue nom f p 1.17 5.14 0 0.07 +fougueuse fougueux adj f s 1.72 3.45 0.26 0.74 +fougueusement fougueusement adv 0.05 0.47 0.05 0.47 +fougueuses fougueux adj f p 1.72 3.45 0.05 0.27 +fougueux fougueux adj m 1.72 3.45 1.41 2.43 +fougère fougère nom f s 0.76 8.11 0.48 0.74 +fougères fougère nom f p 0.76 8.11 0.27 7.36 +foui fouir ver m s 0.04 0.95 0.02 0.34 par:pas; +fouie fouir ver f s 0.04 0.95 0.01 0.07 par:pas; +fouies fouir ver f p 0.04 0.95 0 0.07 par:pas; +fouilla fouiller ver 42.37 47.16 0.01 5.27 ind:pas:3s; +fouillai fouiller ver 42.37 47.16 0.01 0.47 ind:pas:1s; +fouillaient fouiller ver 42.37 47.16 0.08 1.76 ind:imp:3p; +fouillais fouiller ver 42.37 47.16 0.37 0.95 ind:imp:1s;ind:imp:2s; +fouillait fouiller ver 42.37 47.16 0.37 5.81 ind:imp:3s; +fouillant fouiller ver 42.37 47.16 1.43 5.14 par:pre; +fouillasse fouiller ver 42.37 47.16 0 0.07 sub:imp:1s; +fouille fouiller ver 42.37 47.16 6.09 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fouillent fouiller ver 42.37 47.16 1.46 1.82 ind:pre:3p; +fouiller fouiller ver 42.37 47.16 12.87 11.76 inf; +fouillera fouiller ver 42.37 47.16 0.3 0.07 ind:fut:3s; +fouillerai fouiller ver 42.37 47.16 0.1 0.07 ind:fut:1s; +fouillerais fouiller ver 42.37 47.16 0.03 0 cnd:pre:1s; +fouillerait fouiller ver 42.37 47.16 0.17 0.07 cnd:pre:3s; +fouilleras fouiller ver 42.37 47.16 0.03 0 ind:fut:2s; +fouillerons fouiller ver 42.37 47.16 0.07 0 ind:fut:1p; +fouilleront fouiller ver 42.37 47.16 0.1 0 ind:fut:3p; +fouilles fouille nom f p 5 11.28 1.81 4.53 +fouillette fouillette nom f s 0 0.2 0 0.2 +fouilleur fouilleur nom m s 0.05 0.41 0.03 0.27 +fouilleurs fouilleur adj m p 0.03 0.07 0.01 0.07 +fouilleuse fouilleur nom f s 0.05 0.41 0.03 0.07 +fouillez fouiller ver 42.37 47.16 6.79 0.41 imp:pre:2p;ind:pre:2p; +fouilliez fouiller ver 42.37 47.16 0.21 0 ind:imp:2p; +fouillis fouillis nom m 0.81 7.16 0.81 7.16 +fouillons fouiller ver 42.37 47.16 0.61 0.07 imp:pre:1p;ind:pre:1p; +fouillèrent fouiller ver 42.37 47.16 0.01 0.81 ind:pas:3p; +fouillé fouiller ver m s 42.37 47.16 8.89 4.05 par:pas; +fouillée fouiller ver f s 42.37 47.16 0.85 0.74 par:pas; +fouillées fouiller ver f p 42.37 47.16 0.07 0.27 par:pas; +fouillés fouiller ver m p 42.37 47.16 0.51 0.27 par:pas; +fouinaient fouiner ver 5.54 2.43 0.02 0.2 ind:imp:3p; +fouinais fouiner ver 5.54 2.43 0.17 0.07 ind:imp:1s;ind:imp:2s; +fouinait fouiner ver 5.54 2.43 0.19 0.47 ind:imp:3s; +fouinant fouiner ver 5.54 2.43 0.05 0.2 par:pre; +fouinard fouinard nom m s 0.13 0 0.11 0 +fouinards fouinard nom m p 0.13 0 0.02 0 +fouine fouine nom f s 2.87 2.43 2.45 1.89 +fouinent fouiner ver 5.54 2.43 0.36 0.07 ind:pre:3p; +fouiner fouiner ver 5.54 2.43 3.31 1.08 inf; +fouinera fouiner ver 5.54 2.43 0.01 0 ind:fut:3s; +fouineriez fouiner ver 5.54 2.43 0.01 0 cnd:pre:2p; +fouines fouine nom f p 2.87 2.43 0.42 0.54 +fouineur fouineur nom m s 0.8 0.07 0.23 0.07 +fouineurs fouineur nom m p 0.8 0.07 0.27 0 +fouineuse fouineur nom f s 0.8 0.07 0.29 0 +fouinez fouiner ver 5.54 2.43 0.14 0.07 imp:pre:2p;ind:pre:2p; +fouiniez fouiner ver 5.54 2.43 0.03 0 ind:imp:2p; +fouiné fouiner ver m s 5.54 2.43 0.39 0 par:pas; +fouir fouir ver 0.04 0.95 0 0.2 inf; +fouissait fouir ver 0.04 0.95 0 0.07 ind:imp:3s; +fouissant fouir ver 0.04 0.95 0 0.07 par:pre; +fouissent fouir ver 0.04 0.95 0 0.07 ind:pre:3p; +fouisseur fouisseur adj m s 0.01 0.34 0.01 0.07 +fouisseurs fouisseur adj m p 0.01 0.34 0 0.07 +fouisseuse fouisseur adj f s 0.01 0.34 0 0.14 +fouisseuses fouisseur adj f p 0.01 0.34 0 0.07 +fouit fouir ver 0.04 0.95 0.01 0.07 ind:pre:3s; +foula fouler ver 3.06 9.59 0.04 0.14 ind:pas:3s; +foulage foulage nom m s 0 0.07 0 0.07 +foulaient fouler ver 3.06 9.59 0 0.61 ind:imp:3p; +foulais fouler ver 3.06 9.59 0.05 0.27 ind:imp:1s; +foulait fouler ver 3.06 9.59 0.14 0.41 ind:imp:3s; +foulant fouler ver 3.06 9.59 0.13 1.01 par:pre; +foulard foulard nom m s 4.44 19.19 3.94 15.95 +foulards foulard nom m p 4.44 19.19 0.5 3.24 +foulbé foulbé adj s 0 0.07 0 0.07 +foule foule nom f s 27.81 112.3 25.95 101.62 +foulent fouler ver 3.06 9.59 0.16 0.27 ind:pre:3p; +fouler fouler ver 3.06 9.59 0.65 2.57 inf; +foulera fouler ver 3.06 9.59 0.04 0 ind:fut:3s; +fouleraient fouler ver 3.06 9.59 0 0.07 cnd:pre:3p; +foulerait fouler ver 3.06 9.59 0 0.07 cnd:pre:3s; +foulerez fouler ver 3.06 9.59 0.03 0 ind:fut:2p; +foules foule nom f p 27.81 112.3 1.86 10.68 +fouleur fouleur nom m s 0.01 0 0.01 0 +foulions fouler ver 3.06 9.59 0.01 0.14 ind:imp:1p; +fouloir fouloir nom m s 0 0.14 0 0.14 +foulon foulon nom m s 0.14 0 0.14 0 +foulons fouler ver 3.06 9.59 0.11 0.14 ind:pre:1p; +foulque foulque nom f s 0.03 0.07 0.01 0 +foulques foulque nom f p 0.03 0.07 0.01 0.07 +foulure foulure nom f s 0.21 0.2 0.17 0.2 +foulures foulure nom f p 0.21 0.2 0.03 0 +foulèrent fouler ver 3.06 9.59 0.04 0.2 ind:pas:3p; +foulé fouler ver m s 3.06 9.59 1.11 1.49 par:pas; +foulée foulée nom f s 0.56 7.3 0.5 5.34 +foulées foulée nom f p 0.56 7.3 0.06 1.96 +foulés fouler ver m p 3.06 9.59 0.03 0.41 par:pas; +four four nom m s 15.44 28.99 13.95 25.07 +fourbais fourber ver 0 0.14 0 0.07 ind:imp:1s; +fourbe fourbe adj s 1.7 1.08 1.32 0.68 +fourber fourber ver 0 0.14 0 0.07 inf; +fourberie fourberie nom f s 0.65 1.28 0.52 0.88 +fourberies fourberie nom f p 0.65 1.28 0.14 0.41 +fourbes fourbe nom p 1.52 0.81 0.41 0.2 +fourbi fourbi nom m s 0.78 3.18 0.77 2.91 +fourbie fourbir ver f s 0.03 1.55 0 0.07 par:pas; +fourbir fourbir ver 0.03 1.55 0.01 0.34 inf; +fourbis fourbi nom m p 0.78 3.18 0.01 0.27 +fourbissaient fourbir ver 0.03 1.55 0 0.14 ind:imp:3p; +fourbissais fourbir ver 0.03 1.55 0 0.07 ind:imp:1s; +fourbissait fourbir ver 0.03 1.55 0 0.27 ind:imp:3s; +fourbissant fourbir ver 0.03 1.55 0 0.2 par:pre; +fourbit fourbir ver 0.03 1.55 0.01 0.14 ind:pre:3s; +fourbu fourbu adj m s 0.42 6.01 0.12 2.84 +fourbue fourbu adj f s 0.42 6.01 0.14 0.81 +fourbues fourbu adj f p 0.42 6.01 0.01 0.74 +fourbus fourbu adj m p 0.42 6.01 0.16 1.62 +fourcha fourcher ver 0.33 0.27 0 0.14 ind:pas:3s; +fourche fourche nom f s 1.57 8.18 1.21 5.61 +fourchent fourcher ver 0.33 0.27 0.01 0 ind:pre:3p; +fourcher fourcher ver 0.33 0.27 0.03 0 inf; +fourches fourche nom f p 1.57 8.18 0.36 2.57 +fourchet fourchet nom m s 0 0.14 0 0.07 +fourchets fourchet nom m p 0 0.14 0 0.07 +fourchette fourchette nom f s 5.85 14.19 4.98 10.95 +fourchettes fourchette nom f p 5.85 14.19 0.87 3.24 +fourchez fourcher ver 0.33 0.27 0.03 0 imp:pre:2p; +fourchu fourchu adj m s 0.75 1.42 0.17 0.27 +fourchue fourchu adj f s 0.75 1.42 0.2 0.54 +fourchues fourchu adj f p 0.75 1.42 0.01 0.07 +fourchures fourchure nom f p 0 0.14 0 0.14 +fourchus fourchu adj m p 0.75 1.42 0.37 0.54 +fourché fourcher ver m s 0.33 0.27 0.15 0.14 par:pas; +fourchée fourcher ver f s 0.33 0.27 0.01 0 par:pas; +fourgon fourgon nom m s 8.69 7.7 7.87 5.14 +fourgonnait fourgonner ver 0 0.61 0 0.14 ind:imp:3s; +fourgonnas fourgonner ver 0 0.61 0 0.07 ind:pas:2s; +fourgonne fourgonner ver 0 0.61 0 0.07 ind:pre:3s; +fourgonner fourgonner ver 0 0.61 0 0.34 inf; +fourgonnette fourgonnette nom f s 1.31 1.76 1.26 1.62 +fourgonnettes fourgonnette nom f p 1.31 1.76 0.05 0.14 +fourgons fourgon nom m p 8.69 7.7 0.82 2.57 +fourguais fourguer ver 2.47 5.07 0.03 0.07 ind:imp:1s; +fourguait fourguer ver 2.47 5.07 0.02 0.61 ind:imp:3s; +fourguant fourguer ver 2.47 5.07 0.03 0.2 par:pre; +fourgue fourguer ver 2.47 5.07 0.28 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fourguent fourguer ver 2.47 5.07 0.16 0.14 ind:pre:3p; +fourguer fourguer ver 2.47 5.07 1.1 1.82 inf; +fourgueraient fourguer ver 2.47 5.07 0 0.07 cnd:pre:3p; +fourguerais fourguer ver 2.47 5.07 0 0.07 cnd:pre:1s; +fourguerait fourguer ver 2.47 5.07 0 0.07 cnd:pre:3s; +fourgues fourguer ver 2.47 5.07 0.06 0 ind:pre:2s; +fourguez fourguer ver 2.47 5.07 0.02 0 ind:pre:2p; +fourgué fourguer ver m s 2.47 5.07 0.59 0.88 par:pas; +fourguée fourguer ver f s 2.47 5.07 0.15 0.2 par:pas; +fourguées fourguer ver f p 2.47 5.07 0.01 0.07 par:pas; +fourgués fourguer ver m p 2.47 5.07 0.02 0.14 par:pas; +fourme fourme nom f s 0 0.41 0 0.34 +fourmes fourme nom f p 0 0.41 0 0.07 +fourmi fourmi nom f s 9.61 12.77 2.78 5.14 +fourmi_lion fourmi_lion nom m s 0 0.14 0 0.07 +fourmilier fourmilier nom m s 1.1 2.91 0.12 0.07 +fourmilion fourmilion nom m s 0 0.14 0 0.14 +fourmilière fourmilier nom f s 1.1 2.91 0.98 2.84 +fourmilières fourmilière nom f p 0.01 0.2 0.01 0.2 +fourmillaient fourmiller ver 0.53 3.18 0 0.2 ind:imp:3p; +fourmillait fourmiller ver 0.53 3.18 0 0.74 ind:imp:3s; +fourmillant fourmiller ver 0.53 3.18 0 0.47 par:pre; +fourmillante fourmillant adj f s 0 1.15 0 0.81 +fourmillants fourmillant adj m p 0 1.15 0 0.2 +fourmille fourmiller ver 0.53 3.18 0.42 0.68 ind:pre:1s;ind:pre:3s; +fourmillement fourmillement nom m s 0.16 2.36 0.07 1.82 +fourmillements fourmillement nom m p 0.16 2.36 0.08 0.54 +fourmillent fourmiller ver 0.53 3.18 0.09 0.47 ind:pre:3p; +fourmiller fourmiller ver 0.53 3.18 0.01 0.54 inf; +fourmillé fourmiller ver m s 0.53 3.18 0 0.07 par:pas; +fourmis fourmi nom f p 9.61 12.77 6.83 7.64 +fourmi_lion fourmi_lion nom m p 0 0.14 0 0.07 +fournaise fournaise nom f s 0.62 3.18 0.59 3.04 +fournaises fournaise nom f p 0.62 3.18 0.03 0.14 +fourneau fourneau nom m s 2.26 15.34 1.13 12.3 +fourneaux fourneau nom m p 2.26 15.34 1.13 3.04 +fourni fournir ver m s 25.67 56.28 4.21 8.11 par:pas; +fournie fournir ver f s 25.67 56.28 0.59 1.69 par:pas; +fournier fournier nom m s 0 0.07 0 0.07 +fournies fournir ver f p 25.67 56.28 0.42 1.42 par:pas; +fournil fournil nom m s 0.26 3.92 0.26 3.92 +fourniment fourniment nom m s 0.13 1.01 0.13 0.88 +fourniments fourniment nom m p 0.13 1.01 0 0.14 +fournir fournir ver 25.67 56.28 8.43 19.46 inf; +fournira fournir ver 25.67 56.28 1.18 0.81 ind:fut:3s; +fournirai fournir ver 25.67 56.28 0.43 0.07 ind:fut:1s; +fourniraient fournir ver 25.67 56.28 0 0.47 cnd:pre:3p; +fournirait fournir ver 25.67 56.28 0.29 1.08 cnd:pre:3s; +fournirent fournir ver 25.67 56.28 0 0.47 ind:pas:3p; +fournirez fournir ver 25.67 56.28 0.24 0.14 ind:fut:2p; +fournirons fournir ver 25.67 56.28 0.22 0 ind:fut:1p; +fourniront fournir ver 25.67 56.28 0.06 0.27 ind:fut:3p; +fournis fournir ver m p 25.67 56.28 2.11 3.72 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fournissaient fournir ver 25.67 56.28 0.28 2.16 ind:imp:3p; +fournissais fournir ver 25.67 56.28 0.08 0.34 ind:imp:1s;ind:imp:2s; +fournissait fournir ver 25.67 56.28 0.87 5.47 ind:imp:3s; +fournissant fournir ver 25.67 56.28 0.18 1.22 par:pre; +fournisse fournir ver 25.67 56.28 0.13 0.07 sub:pre:1s;sub:pre:3s; +fournissent fournir ver 25.67 56.28 0.77 1.89 ind:pre:3p; +fournisseur fournisseur nom m s 4.75 4.39 2.62 1.76 +fournisseurs fournisseur nom m p 4.75 4.39 2.13 2.57 +fournisseuses fournisseur nom f p 4.75 4.39 0 0.07 +fournissez fournir ver 25.67 56.28 1.31 0.2 imp:pre:2p;ind:pre:2p; +fournissiez fournir ver 25.67 56.28 0.14 0.07 ind:imp:2p; +fournissions fournir ver 25.67 56.28 0.02 0.2 ind:imp:1p; +fournissons fournir ver 25.67 56.28 0.65 0.2 imp:pre:1p;ind:pre:1p; +fournit fournir ver 25.67 56.28 3.04 6.55 ind:pre:3s;ind:pas:3s; +fourniture fourniture nom f s 2.04 2.77 0.16 0.61 +fournitures fourniture nom f p 2.04 2.77 1.88 2.16 +fournée fournée nom f s 0.47 2.36 0.46 1.82 +fournées fournée nom f p 0.47 2.36 0.01 0.54 +fournîmes fournir ver 25.67 56.28 0 0.07 ind:pas:1p; +fournît fournir ver 25.67 56.28 0 0.14 sub:imp:3s; +fourra fourrer ver 14.05 23.58 0.12 2.77 ind:pas:3s; +fourrage fourrage nom m s 0.63 2.3 0.58 1.89 +fourragea fourrager ver 0.03 3.99 0 0.74 ind:pas:3s; +fourrageaient fourrager ver 0.03 3.99 0 0.07 ind:imp:3p; +fourrageais fourrager ver 0.03 3.99 0 0.07 ind:imp:2s; +fourrageait fourrager ver 0.03 3.99 0 0.88 ind:imp:3s; +fourrageant fourrager ver 0.03 3.99 0 0.61 par:pre; +fourragement fourragement nom m s 0 0.07 0 0.07 +fourrager fourrager ver 0.03 3.99 0.02 0.61 inf; +fourragerait fourrager ver 0.03 3.99 0 0.07 cnd:pre:3s; +fourrages fourrage nom m p 0.63 2.3 0.05 0.41 +fourrageurs fourrageur nom m p 0 0.27 0 0.27 +fourragère fourrager adj f s 0.14 0.41 0.14 0.14 +fourragères fourrager adj f p 0.14 0.41 0 0.2 +fourragé fourrager ver m s 0.03 3.99 0 0.2 par:pas; +fourrai fourrer ver 14.05 23.58 0 0.74 ind:pas:1s; +fourraient fourrer ver 14.05 23.58 0.12 0.34 ind:imp:3p; +fourrais fourrer ver 14.05 23.58 0.06 0.14 ind:imp:1s;ind:imp:2s; +fourrait fourrer ver 14.05 23.58 0.25 1.55 ind:imp:3s; +fourrant fourrer ver 14.05 23.58 0.07 1.15 par:pre; +fourre fourrer ver 14.05 23.58 2.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fourre_tout fourre_tout nom m 0.28 0.54 0.28 0.54 +fourreau fourreau nom m s 0.79 4.32 0.78 3.85 +fourreaux fourreau nom m p 0.79 4.32 0.01 0.47 +fourrent fourrer ver 14.05 23.58 0.17 0.54 ind:pre:3p; +fourrer fourrer ver 14.05 23.58 4.36 6.82 inf;; +fourrerai fourrer ver 14.05 23.58 0.19 0.07 ind:fut:1s; +fourreur fourreur nom m s 0.08 0.68 0.07 0.61 +fourreurs fourreur nom m p 0.08 0.68 0.01 0.07 +fourrez fourrer ver 14.05 23.58 0.35 0.14 imp:pre:2p;ind:pre:2p; +fourrier fourrier nom m s 0.01 1.82 0.01 1.69 +fourriers fourrier nom m p 0.01 1.82 0 0.14 +fourriez fourrer ver 14.05 23.58 0.03 0 ind:imp:2p; +fourrions fourrer ver 14.05 23.58 0 0.14 ind:imp:1p; +fourrière fourrière nom f s 2.83 0.81 2.83 0.81 +fourrons fourrer ver 14.05 23.58 0.04 0.07 imp:pre:1p;ind:pre:1p; +fourrure fourrure nom f s 7.53 21.42 5.56 16.89 +fourrures fourrure nom f p 7.53 21.42 1.97 4.53 +fourrât fourrer ver 14.05 23.58 0 0.07 sub:imp:3s; +fourrèrent fourrer ver 14.05 23.58 0 0.07 ind:pas:3p; +fourré fourrer ver m s 14.05 23.58 3.42 3.51 par:pas; +fourrée fourrer ver f s 14.05 23.58 1.24 1.28 par:pas; +fourrées fourré adj f p 2.6 5.47 0.17 0.54 +fourrés fourré nom m p 1.18 15 0.72 6.15 +fours four nom m p 15.44 28.99 1.48 3.92 +fourvoie fourvoyer ver 0.52 2.57 0.04 0.27 imp:pre:2s;ind:pre:3s; +fourvoiement fourvoiement nom m s 0 0.14 0 0.07 +fourvoiements fourvoiement nom m p 0 0.14 0 0.07 +fourvoient fourvoyer ver 0.52 2.57 0.01 0 ind:pre:3p; +fourvoierais fourvoyer ver 0.52 2.57 0 0.07 cnd:pre:1s; +fourvoierait fourvoyer ver 0.52 2.57 0 0.07 cnd:pre:3s; +fourvoyaient fourvoyer ver 0.52 2.57 0 0.14 ind:imp:3p; +fourvoyait fourvoyer ver 0.52 2.57 0 0.07 ind:imp:3s; +fourvoyant fourvoyer ver 0.52 2.57 0.01 0.14 par:pre; +fourvoyer fourvoyer ver 0.52 2.57 0.14 0.2 inf; +fourvoyâmes fourvoyer ver 0.52 2.57 0 0.07 ind:pas:1p; +fourvoyé fourvoyer ver m s 0.52 2.57 0.11 0.88 par:pas; +fourvoyée fourvoyer ver f s 0.52 2.57 0.04 0.2 par:pas; +fourvoyées fourvoyé adj f p 0.04 0.41 0.01 0 +fourvoyés fourvoyer ver m p 0.52 2.57 0.17 0.27 par:pas; +fous foutre ver 400.67 172.3 133.75 34.46 ind:pre:1p;ind:pre:1s;ind:pre:2s; +fout foutre ver 400.67 172.3 51.51 25.2 ind:pre:3s; +fouta fouta nom s 0.01 0.07 0.01 0.07 +foutaient foutre ver 400.67 172.3 0.61 1.96 ind:imp:3p; +foutais foutre ver 400.67 172.3 4.42 3.72 ind:imp:1s;ind:imp:2s; +foutaise foutaise nom f s 8.66 2.7 1.8 0.74 +foutaises foutaise nom f p 8.66 2.7 6.86 1.96 +foutait foutre ver 400.67 172.3 2.8 11.69 ind:imp:3s; +foutant foutre ver 400.67 172.3 0.18 0.81 par:pre; +foute foutre ver 400.67 172.3 3.35 3.99 sub:pre:1s;sub:pre:3s; +foutent foutre ver 400.67 172.3 8.34 7.36 ind:pre:3p; +fouterie fouterie nom f s 0 0.34 0 0.2 +fouteries fouterie nom f p 0 0.34 0 0.14 +foutes foutre ver 400.67 172.3 0.27 0 sub:pre:2s; +fouteur fouteur nom m s 0.54 0.07 0.46 0.07 +fouteurs fouteur nom m p 0.54 0.07 0.07 0 +foutez foutre ver 400.67 172.3 32.65 7.57 imp:pre:2p;ind:pre:2p; +foutiez foutre ver 400.67 172.3 0.56 0.14 ind:imp:2p; +foutions foutre ver 400.67 172.3 0 0.07 ind:imp:1p; +foutit foutre ver 400.67 172.3 0 0.14 ind:pas:3s; +foutoir foutoir nom m s 2.15 1.62 2.15 1.49 +foutoirs foutoir nom m p 2.15 1.62 0 0.14 +foutons foutre ver 400.67 172.3 1.68 0.34 imp:pre:1p;ind:pre:1p; +foutra foutre ver 400.67 172.3 1.58 1.42 ind:fut:3s; +foutrai foutre ver 400.67 172.3 0.85 1.15 ind:fut:1s; +foutraient foutre ver 400.67 172.3 0.08 0.2 cnd:pre:3p; +foutrais foutre ver 400.67 172.3 1.48 1.35 cnd:pre:1s;cnd:pre:2s; +foutrait foutre ver 400.67 172.3 0.6 1.01 cnd:pre:3s; +foutral foutral adj m s 0.05 0.2 0.05 0.14 +foutrale foutral adj f s 0.05 0.2 0 0.07 +foutraque foutraque adj m s 0.01 0.07 0.01 0.07 +foutras foutre ver 400.67 172.3 0.24 0.2 ind:fut:2s; +foutre foutre ver 400.67 172.3 97.99 42.7 inf;; +foutrement foutrement adv 1.24 0.61 1.24 0.61 +foutrerie foutrerie nom f s 0.01 0 0.01 0 +foutrez foutre ver 400.67 172.3 0.2 0.14 ind:fut:2p; +foutriquet foutriquet nom m s 0.04 0.2 0.04 0.14 +foutriquets foutriquet nom m p 0.04 0.2 0 0.07 +foutrons foutre ver 400.67 172.3 0.02 0.07 ind:fut:1p; +foutront foutre ver 400.67 172.3 0.16 0.27 ind:fut:3p; +foutu foutre ver m s 400.67 172.3 41.96 19.05 par:pas; +foutue foutu adj f s 33.23 16.76 10.35 6.22 +foutues foutu adj f p 33.23 16.76 2.5 0.74 +foutument foutument adv 0.03 0.2 0.03 0.2 +foutus foutre ver m p 400.67 172.3 6.54 2.91 par:pas; +foutît foutre ver 400.67 172.3 0 0.07 sub:imp:3s; +fox fox nom m 0.48 0.41 0.48 0.41 +fox_terrier fox_terrier nom m s 0.04 0.47 0.04 0.41 +fox_terrier fox_terrier nom m p 0.04 0.47 0 0.07 +fox_trot fox_trot nom m 0.5 1.62 0.5 1.62 +foyard foyard nom m s 0 0.27 0 0.2 +foyards foyard nom m p 0 0.27 0 0.07 +foyer foyer nom m s 28.95 30.88 25.57 25.81 +foyers foyer nom m p 28.95 30.88 3.38 5.07 +foëne foëne nom f s 0 0.07 0 0.07 +fra fra nom m s 0.93 0.34 0.93 0.34 +frac frac nom m s 0.89 2.23 0.77 1.96 +fracas fracas nom m 4.17 18.18 4.17 18.18 +fracassa fracasser ver 3.85 7.84 0 0.74 ind:pas:3s; +fracassaient fracasser ver 3.85 7.84 0.02 0.68 ind:imp:3p; +fracassait fracasser ver 3.85 7.84 0.01 0.27 ind:imp:3s; +fracassant fracassant adj m s 0.58 2.16 0.24 0.88 +fracassante fracassant adj f s 0.58 2.16 0.23 0.95 +fracassantes fracassant adj f p 0.58 2.16 0.05 0.14 +fracassants fracassant adj m p 0.58 2.16 0.06 0.2 +fracasse fracasser ver 3.85 7.84 0.6 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fracassent fracasser ver 3.85 7.84 0.05 0.14 ind:pre:3p; +fracasser fracasser ver 3.85 7.84 0.91 2.23 inf; +fracassera fracasser ver 3.85 7.84 0.16 0 ind:fut:3s; +fracasserait fracasser ver 3.85 7.84 0 0.14 cnd:pre:3s; +fracassez fracasser ver 3.85 7.84 0.04 0 imp:pre:2p; +fracassât fracasser ver 3.85 7.84 0 0.07 sub:imp:3s; +fracassé fracasser ver m s 3.85 7.84 1.43 0.81 par:pas; +fracassée fracasser ver f s 3.85 7.84 0.56 0.41 par:pas; +fracassées fracasser ver f p 3.85 7.84 0.03 0.27 par:pas; +fracassés fracasser ver m p 3.85 7.84 0.02 0.34 par:pas; +fracs frac nom m p 0.89 2.23 0.12 0.27 +fractal fractal adj m s 0.34 0 0.05 0 +fractale fractal adj f s 0.34 0 0.12 0 +fractales fractal adj f p 0.34 0 0.17 0 +fraction fraction nom f s 2.03 10.88 1.34 6.76 +fractionnait fractionner ver 0.07 0.54 0 0.07 ind:imp:3s; +fractionnant fractionner ver 0.07 0.54 0 0.14 par:pre; +fractionne fractionner ver 0.07 0.54 0.02 0.07 ind:pre:3s; +fractionnel fractionnel adj m s 0 0.14 0 0.07 +fractionnelles fractionnel adj f p 0 0.14 0 0.07 +fractionnement fractionnement nom m s 0 0.2 0 0.2 +fractionner fractionner ver 0.07 0.54 0.02 0.14 inf; +fractionné fractionner ver m s 0.07 0.54 0 0.07 par:pas; +fractionnée fractionner ver f s 0.07 0.54 0.01 0 par:pas; +fractionnées fractionner ver f p 0.07 0.54 0.01 0.07 par:pas; +fractions fraction nom f p 2.03 10.88 0.69 4.12 +fractura fracturer ver 1.75 1.22 0 0.27 ind:pas:3s; +fracturant fracturer ver 1.75 1.22 0 0.2 par:pre; +fracture fracture nom f s 7.88 2.57 5.62 1.82 +fracturent fracturer ver 1.75 1.22 0.1 0 ind:pre:3p; +fracturer fracturer ver 1.75 1.22 0.27 0.47 inf; +fractures fracture nom f p 7.88 2.57 2.26 0.74 +fracturé fracturer ver m s 1.75 1.22 0.8 0.14 par:pas; +fracturée fracturer ver f s 1.75 1.22 0.29 0.07 par:pas; +fracturées fracturé adj f p 0.79 0.34 0.04 0 +fracturés fracturé adj m p 0.79 0.34 0.09 0.07 +fractus fractus nom m 0 0.07 0 0.07 +fragile fragile adj s 15.89 45.34 12.94 35.68 +fragilement fragilement adv 0 0.07 0 0.07 +fragiles fragile adj p 15.89 45.34 2.95 9.66 +fragilise fragiliser ver 0.14 0.07 0.04 0.07 ind:pre:3s; +fragiliser fragiliser ver 0.14 0.07 0.02 0 inf; +fragilisé fragiliser ver m s 0.14 0.07 0.04 0 par:pas; +fragilisée fragiliser ver f s 0.14 0.07 0.03 0 par:pas; +fragilisés fragiliser ver m p 0.14 0.07 0.01 0 par:pas; +fragilité fragilité nom f s 1.19 8.65 1.18 8.31 +fragilités fragilité nom f p 1.19 8.65 0.01 0.34 +fragment fragment nom m s 4.57 15.88 1.58 6.01 +fragmentaient fragmenter ver 0.31 0.74 0 0.14 ind:imp:3p; +fragmentaire fragmentaire adj s 0.02 1.69 0.01 0.61 +fragmentaires fragmentaire adj p 0.02 1.69 0.01 1.08 +fragmentait fragmenter ver 0.31 0.74 0 0.07 ind:imp:3s; +fragmentant fragmenter ver 0.31 0.74 0.01 0 par:pre; +fragmentation fragmentation nom f s 0.77 0.14 0.77 0.14 +fragmente fragmenter ver 0.31 0.74 0.07 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fragmentent fragmenter ver 0.31 0.74 0.02 0.07 ind:pre:3p; +fragmenter fragmenter ver 0.31 0.74 0.03 0 inf; +fragments fragment nom m p 4.57 15.88 2.99 9.86 +fragmentèrent fragmenter ver 0.31 0.74 0 0.07 ind:pas:3p; +fragmenté fragmenter ver m s 0.31 0.74 0.07 0.07 par:pas; +fragmentée fragmenter ver f s 0.31 0.74 0.07 0.14 par:pas; +fragmentées fragmenter ver f p 0.31 0.74 0.03 0 par:pas; +fragmentés fragmenté adj m p 0.05 0.27 0.01 0.14 +fragrance fragrance nom f s 0.3 1.08 0.29 0.68 +fragrances fragrance nom f p 0.3 1.08 0.01 0.41 +fragrant fragrant adj m s 0 0.07 0 0.07 +frai frai nom m s 0.03 0.07 0.03 0.07 +fraie frayer ver 2.54 11.55 0.08 0.61 ind:pre:1s;ind:pre:3s; +fraient frayer ver 2.54 11.55 0.01 0.14 ind:pre:3p; +fraies frayer ver 2.54 11.55 0.01 0 ind:pre:2s; +frairie frairie nom f s 0 0.41 0 0.41 +frais frais adj m 46.43 111.69 27.41 56.22 +fraise fraise nom f s 12 10.07 5.28 3.92 +fraiser fraiser ver 1.52 0.14 1.39 0 inf; +fraises fraise nom f p 12 10.07 6.72 6.15 +fraiseur fraiseur nom m s 0.07 0.27 0 0.07 +fraiseur_outilleur fraiseur_outilleur nom m s 0 0.07 0 0.07 +fraiseurs fraiseur nom m p 0.07 0.27 0 0.2 +fraiseuse fraiseur nom f s 0.07 0.27 0.07 0 +fraisier fraisier nom m s 0.28 0.68 0.14 0.2 +fraisiers fraisier nom m p 0.28 0.68 0.14 0.47 +fraisil fraisil nom m s 0 0.07 0 0.07 +fraisées fraiser ver f p 1.52 0.14 0 0.07 par:pas; +framboise framboise nom f s 2.5 4.86 1.95 3.92 +framboises framboise nom f p 2.5 4.86 0.55 0.95 +framboisier framboisier nom m s 0.27 0.47 0.27 0 +framboisiers framboisier nom m p 0.27 0.47 0 0.47 +franc franc adj m s 21.67 23.45 12.84 10.95 +franc_comtois franc_comtois nom m 0 0.07 0 0.07 +franc_comtois franc_comtois adj f s 0 0.07 0 0.07 +franc_jeu franc_jeu nom m s 0.56 0 0.56 0 +franc_maçon franc_maçon nom m s 0.94 2.09 0.38 0.54 +franc_maçon franc_maçon nom f s 0.94 2.09 0 0.27 +franc_maçonnerie franc_maçonnerie nom f s 0.17 0.81 0.17 0.81 +franc_parler franc_parler nom m s 0.53 0.27 0.53 0.27 +franc_tireur franc_tireur nom m s 0.64 2.3 0.1 0.81 +francatu francatu nom m s 0 0.07 0 0.07 +francfort francfort nom f s 0.1 0.14 0.07 0.07 +francforts francfort nom f p 0.1 0.14 0.03 0.07 +franche franc adj f s 21.67 23.45 5.93 7.03 +franchement franchement adv 35.09 28.24 35.09 28.24 +franches franc adj f p 21.67 23.45 0.53 1.96 +franchi franchir ver m s 18.93 64.8 4.49 12.09 par:pas; +franchie franchir ver f s 18.93 64.8 0.6 2.5 par:pas; +franchies franchir ver f p 18.93 64.8 0.17 0.54 par:pas; +franchir franchir ver 18.93 64.8 7.88 22.36 inf; +franchira franchir ver 18.93 64.8 0.46 0.47 ind:fut:3s; +franchirai franchir ver 18.93 64.8 0.25 0.14 ind:fut:1s; +franchiraient franchir ver 18.93 64.8 0.01 0.07 cnd:pre:3p; +franchirais franchir ver 18.93 64.8 0.01 0.07 cnd:pre:1s; +franchirait franchir ver 18.93 64.8 0.05 0.54 cnd:pre:3s; +franchiras franchir ver 18.93 64.8 0.09 0 ind:fut:2s; +franchirent franchir ver 18.93 64.8 0.01 1.55 ind:pas:3p; +franchirez franchir ver 18.93 64.8 0.12 0 ind:fut:2p; +franchirions franchir ver 18.93 64.8 0.03 0.07 cnd:pre:1p; +franchirons franchir ver 18.93 64.8 0.05 0.14 ind:fut:1p; +franchiront franchir ver 18.93 64.8 0.09 0 ind:fut:3p; +franchis franchir ver m p 18.93 64.8 0.99 2.7 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +franchisage franchisage nom m s 0.03 0 0.03 0 +franchisant franchiser ver 0.17 0 0.01 0 par:pre; +franchise franchise nom f s 5.75 7.97 5.62 7.7 +franchiser franchiser ver 0.17 0 0.09 0 inf; +franchises franchise nom f p 5.75 7.97 0.14 0.27 +franchissables franchissable adj p 0 0.07 0 0.07 +franchissaient franchir ver 18.93 64.8 0.03 1.82 ind:imp:3p; +franchissais franchir ver 18.93 64.8 0.04 0.47 ind:imp:1s; +franchissait franchir ver 18.93 64.8 0.32 3.04 ind:imp:3s; +franchissant franchir ver 18.93 64.8 0.48 4.53 par:pre; +franchisse franchir ver 18.93 64.8 0.17 0.14 sub:pre:1s;sub:pre:3s; +franchissement franchissement nom m s 0.11 1.08 0.11 0.88 +franchissements franchissement nom m p 0.11 1.08 0 0.2 +franchissent franchir ver 18.93 64.8 0.27 0.81 ind:pre:3p; +franchissez franchir ver 18.93 64.8 0.29 0 imp:pre:2p;ind:pre:2p; +franchissions franchir ver 18.93 64.8 0 0.14 ind:imp:1p; +franchissons franchir ver 18.93 64.8 0.07 0.74 imp:pre:1p;ind:pre:1p; +franchisé franchiser ver m s 0.17 0 0.04 0 par:pas; +franchisée franchiser ver f s 0.17 0 0.03 0 par:pas; +franchit franchir ver 18.93 64.8 1.83 9.66 ind:pre:3s;ind:pas:3s; +franchouillard franchouillard adj m s 0.01 0.34 0.01 0.27 +franchouillarde franchouillard adj f s 0.01 0.34 0 0.07 +franchouillards franchouillard nom m p 0 0.41 0 0.34 +franchîmes franchir ver 18.93 64.8 0.14 0.14 ind:pas:1p; +franchît franchir ver 18.93 64.8 0 0.07 sub:imp:3s; +francisant franciser ver 0 0.68 0 0.07 par:pre; +francisation francisation nom f s 0 0.14 0 0.14 +franciscain franciscain adj m s 1.49 0.61 0.29 0.41 +franciscaine franciscain adj f s 1.49 0.61 0.14 0.07 +franciscains franciscain adj m p 1.49 0.61 1.07 0.14 +franciser franciser ver 0 0.68 0 0.2 inf; +francisque francisque nom f s 0 0.47 0 0.41 +francisques francisque nom f p 0 0.47 0 0.07 +francisé franciser ver m s 0 0.68 0 0.27 par:pas; +francisés franciser ver m p 0 0.68 0 0.14 par:pas; +francité francité nom f s 0 0.68 0 0.68 +franco franco adv_sup 3.87 2.7 3.87 2.7 +franco_africain franco_africain adj m s 0.14 0.07 0.14 0.07 +franco_algérien franco_algérien adj f s 0 0.07 0 0.07 +franco_allemand franco_allemand adj m s 0.11 0.61 0 0.14 +franco_allemand franco_allemand adj f s 0.11 0.61 0.11 0.34 +franco_allemand franco_allemand adj f p 0.11 0.61 0 0.14 +franco_américain franco_américain adj m s 0.04 0.68 0.01 0.07 +franco_américain franco_américain adj f s 0.04 0.68 0.03 0.27 +franco_américain franco_américain adj f p 0.04 0.68 0 0.2 +franco_américain franco_américain adj m p 0.04 0.68 0 0.14 +franco_anglais franco_anglais adj m s 0.01 0.74 0.01 0.27 +franco_anglais franco_anglais adj f s 0.01 0.74 0 0.41 +franco_anglais franco_anglais nom f p 0.01 0 0.01 0 +franco_belge franco_belge adj f s 0 0.14 0 0.14 +franco_britannique franco_britannique adj f s 0.14 2.43 0 1.35 +franco_britannique franco_britannique adj p 0.14 2.43 0.14 1.08 +franco_canadien franco_canadien nom m s 0.01 0 0.01 0 +franco_chinois franco_chinois adj f p 0 0.07 0 0.07 +franco_italienne franco_italienne adj f s 0.01 0 0.01 0 +franco_japonais franco_japonais adj f s 0.01 0 0.01 0 +franco_libanais franco_libanais adj m p 0 0.14 0 0.14 +franco_mongol franco_mongol adj f s 0 0.14 0 0.14 +franco_polonais franco_polonais adj f s 0 0.07 0 0.07 +franco_russe franco_russe adj s 0 1.42 0 1.42 +franco_russe franco_russe nom p 0 0.2 0 0.07 +franco_soviétique franco_soviétique adj s 0 0.14 0 0.14 +franco_syrien franco_syrien adj m s 0 0.14 0 0.14 +franco_turque franco_turque adj f s 0 0.14 0 0.14 +franco_vietnamien franco_vietnamien adj m s 0 0.07 0 0.07 +francomanie francomanie nom f s 0 0.07 0 0.07 +francophile francophile adj s 0 0.2 0 0.14 +francophiles francophile adj p 0 0.2 0 0.07 +francophilie francophilie nom f s 0 0.27 0 0.27 +francophobie francophobie nom f s 0 0.07 0 0.07 +francophone francophone adj s 0.12 0.74 0.1 0.61 +francophones francophone adj m p 0.12 0.74 0.02 0.14 +francophonie francophonie nom f s 0 0.2 0 0.2 +francs franc nom m p 17.64 82.84 16.43 78.11 +francs_bourgeois francs_bourgeois nom m p 0 0.2 0 0.2 +franc_maçon franc_maçon nom m p 0.94 2.09 0.57 1.28 +franc_tireur franc_tireur nom m p 0.64 2.3 0.54 1.49 +frange frange nom f s 0.97 13.45 0.69 8.04 +frangeaient franger ver 0 3.65 0 0.14 ind:imp:3p; +frangeait franger ver 0 3.65 0 0.2 ind:imp:3s; +frangeant franger ver 0 3.65 0 0.07 par:pre; +frangent franger ver 0 3.65 0 0.07 ind:pre:3p; +franges frange nom f p 0.97 13.45 0.28 5.41 +frangin frangin nom m s 9.03 18.78 7.29 7.43 +frangine frangin nom f s 9.03 18.78 1.3 6.28 +frangines frangin nom f p 9.03 18.78 0.11 2.91 +frangins frangin nom m p 9.03 18.78 0.34 2.16 +frangipane frangipane nom f s 0 0.34 0 0.14 +frangipanes frangipane nom f p 0 0.34 0 0.2 +frangipaniers frangipanier nom m p 0 0.07 0 0.07 +franglais franglais nom m 0 0.2 0 0.2 +frangé franger ver m s 0 3.65 0 0.81 par:pas; +frangée franger ver f s 0 3.65 0 0.68 par:pas; +frangées franger ver f p 0 3.65 0 0.74 par:pas; +frangés franger ver m p 0 3.65 0 0.81 par:pas; +frankaoui frankaoui nom s 0 0.07 0 0.07 +franklin franklin nom m s 0.04 0.07 0.04 0.07 +franque franque adj f s 0 4.53 0 3.58 +franques franque adj f p 0 4.53 0 0.95 +franquette franquette nom f s 0.32 0.88 0.32 0.88 +franquisme franquisme nom m s 0.5 0.07 0.5 0.07 +franquiste franquiste adj s 0.77 0.68 0.14 0.34 +franquistes franquiste nom p 0.9 0.54 0.8 0.47 +français français nom m s 39.49 164.59 34.94 148.72 +française français adj f s 43.06 298.85 11.03 105.07 +françaises français adj f p 43.06 298.85 2.25 45.07 +frapadingue frapadingue adj m s 0.06 0.27 0.05 0.2 +frapadingues frapadingue adj m p 0.06 0.27 0.01 0.07 +frappa frapper ver 160.04 168.31 1.64 21.49 ind:pas:3s; +frappadingue frappadingue adj m s 0.09 0.27 0.07 0.14 +frappadingues frappadingue adj m p 0.09 0.27 0.01 0.14 +frappai frapper ver 160.04 168.31 0.12 1.55 ind:pas:1s; +frappaient frapper ver 160.04 168.31 0.22 3.92 ind:imp:3p; +frappais frapper ver 160.04 168.31 1.05 0.61 ind:imp:1s;ind:imp:2s; +frappait frapper ver 160.04 168.31 2.86 17.97 ind:imp:3s; +frappant frapper ver 160.04 168.31 1 8.45 par:pre; +frappante frappant adj f s 1.69 3.65 0.78 1.28 +frappantes frappant adj f p 1.69 3.65 0.11 0.14 +frappants frappant adj m p 1.69 3.65 0.01 0.27 +frappe frapper ver 160.04 168.31 41.37 20.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +frappement frappement nom m s 0.01 0.2 0 0.2 +frappements frappement nom m p 0.01 0.2 0.01 0 +frappent frapper ver 160.04 168.31 3.24 5.34 ind:pre:3p; +frapper frapper ver 160.04 168.31 37.08 32.09 inf;; +frappera frapper ver 160.04 168.31 1.71 0.34 ind:fut:3s; +frapperai frapper ver 160.04 168.31 1.68 0.07 ind:fut:1s; +frapperaient frapper ver 160.04 168.31 0.05 0.41 cnd:pre:3p; +frapperais frapper ver 160.04 168.31 0.37 0.2 cnd:pre:1s;cnd:pre:2s; +frapperait frapper ver 160.04 168.31 0.32 1.15 cnd:pre:3s; +frapperas frapper ver 160.04 168.31 0.29 0.14 ind:fut:2s; +frapperez frapper ver 160.04 168.31 0.33 0 ind:fut:2p; +frapperiez frapper ver 160.04 168.31 0.03 0 cnd:pre:2p; +frapperons frapper ver 160.04 168.31 0.23 0.14 ind:fut:1p; +frapperont frapper ver 160.04 168.31 0.27 0.14 ind:fut:3p; +frappes frapper ver 160.04 168.31 3.92 0.14 ind:pre:2s;sub:pre:2s; +frappeur frappeur nom m s 0.55 0.34 0.4 0.2 +frappeurs frappeur nom m p 0.55 0.34 0.15 0.14 +frappez frapper ver 160.04 168.31 7.81 1.08 imp:pre:2p;ind:pre:2p; +frappiez frapper ver 160.04 168.31 0.16 0.07 ind:imp:2p; +frappions frapper ver 160.04 168.31 0.01 0.14 ind:imp:1p; +frappons frapper ver 160.04 168.31 0.4 0 imp:pre:1p;ind:pre:1p; +frappât frapper ver 160.04 168.31 0 0.14 sub:imp:3s; +frappèrent frapper ver 160.04 168.31 0.04 1.28 ind:pas:3p; +frappé frapper ver m s 160.04 168.31 43.83 35.68 par:pas; +frappée frapper ver f s 160.04 168.31 8.21 8.45 par:pas; +frappées frappé adj f p 1.19 3.99 0.15 0.47 +frappés frapper ver m p 160.04 168.31 1.72 5.81 par:pas; +fraser fraser ver 0.01 0 0.01 0 inf; +frasque frasque nom f s 0.51 1.76 0.14 0.07 +frasques frasque nom f p 0.51 1.76 0.37 1.69 +frater frater nom m s 0.01 0.07 0.01 0.07 +fraternel fraternel adj m s 2.06 10.27 1.13 4.32 +fraternelle fraternel adj f s 2.06 10.27 0.39 3.11 +fraternellement fraternellement adv 0.11 1.62 0.11 1.62 +fraternelles fraternel adj f p 2.06 10.27 0.2 0.81 +fraternels fraternel adj m p 2.06 10.27 0.34 2.03 +fraternisa fraterniser ver 0.61 0.95 0 0.07 ind:pas:3s; +fraternisaient fraterniser ver 0.61 0.95 0 0.2 ind:imp:3p; +fraternisant fraterniser ver 0.61 0.95 0 0.07 par:pre; +fraternisation fraternisation nom f s 0.06 0.34 0.06 0.34 +fraternise fraterniser ver 0.61 0.95 0.3 0 imp:pre:2s;ind:pre:3s; +fraternisent fraterniser ver 0.61 0.95 0.03 0.07 ind:pre:3p; +fraterniser fraterniser ver 0.61 0.95 0.23 0.2 inf; +fraterniserait fraterniser ver 0.61 0.95 0 0.14 cnd:pre:3s; +fraternisiez fraterniser ver 0.61 0.95 0.01 0 ind:imp:2p; +fraternisons fraterniser ver 0.61 0.95 0.01 0 ind:pre:1p; +fraternisèrent fraterniser ver 0.61 0.95 0 0.07 ind:pas:3p; +fraternisé fraterniser ver m s 0.61 0.95 0.04 0.14 par:pas; +fraternité fraternité nom f s 3.63 7.43 3.49 7.3 +fraternités fraternité nom f p 3.63 7.43 0.14 0.14 +fratricide fratricide adj s 0.41 0.54 0.28 0.34 +fratricides fratricide adj p 0.41 0.54 0.14 0.2 +fratrie fratrie nom f s 0.08 0.14 0.07 0.14 +fratries fratrie nom f p 0.08 0.14 0.01 0 +frauda frauder ver 0.49 0.41 0 0.07 ind:pas:3s; +fraudais frauder ver 0.49 0.41 0.01 0.07 ind:imp:1s;ind:imp:2s; +fraude fraude nom f s 5.54 3.24 4.82 2.84 +frauder frauder ver 0.49 0.41 0.16 0.14 inf; +fraudes fraude nom f p 5.54 3.24 0.72 0.41 +fraudeur fraudeur nom m s 0.78 0.14 0.06 0.07 +fraudeurs fraudeur nom m p 0.78 0.14 0.37 0.07 +fraudeuse fraudeur nom f s 0.78 0.14 0.35 0 +frauduleuse frauduleux adj f s 0.58 0.68 0.14 0.41 +frauduleusement frauduleusement adv 0.03 0.14 0.03 0.14 +frauduleuses frauduleux adj f p 0.58 0.68 0.19 0.14 +frauduleux frauduleux adj m 0.58 0.68 0.25 0.14 +fraudé frauder ver m s 0.49 0.41 0.27 0.07 par:pas; +fraya frayer ver 2.54 11.55 0.01 0.81 ind:pas:3s; +frayai frayer ver 2.54 11.55 0 0.14 ind:pas:1s; +frayaient frayer ver 2.54 11.55 0.01 0.47 ind:imp:3p; +frayais frayer ver 2.54 11.55 0.02 0.2 ind:imp:1s; +frayait frayer ver 2.54 11.55 0.15 1.35 ind:imp:3s; +frayant frayer ver 2.54 11.55 0.25 0.81 par:pre; +fraye frayer ver 2.54 11.55 0.29 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frayent frayer ver 2.54 11.55 0.02 0.34 ind:pre:3p; +frayer frayer ver 2.54 11.55 1.03 4.86 inf; +frayes frayer ver 2.54 11.55 0.03 0.07 ind:pre:2s; +frayeur frayeur nom f s 3.86 6.89 3.43 5.88 +frayeurs frayeur nom f p 3.86 6.89 0.43 1.01 +frayez frayer ver 2.54 11.55 0.26 0 imp:pre:2p;ind:pre:2p; +frayons frayer ver 2.54 11.55 0.01 0.07 imp:pre:1p;ind:pre:1p; +frayèrent frayer ver 2.54 11.55 0 0.07 ind:pas:3p; +frayé frayer ver m s 2.54 11.55 0.27 0.74 par:pas; +frayée frayer ver f s 2.54 11.55 0.1 0.27 par:pas; +fraîche frais adj f s 46.43 111.69 13.59 42.91 +fraîchement fraîchement adv 1.17 8.31 1.17 8.31 +fraîches frais adj f p 46.43 111.69 5.44 12.57 +fraîcheur fraîcheur nom f s 3.24 35.47 3.24 35 +fraîcheurs fraîcheur nom f p 3.24 35.47 0 0.47 +fraîchi fraîchir ver m s 0.29 2.43 0.02 0.61 par:pas; +fraîchir fraîchir ver 0.29 2.43 0.01 0.34 inf; +fraîchira fraîchir ver 0.29 2.43 0 0.14 ind:fut:3s; +fraîchissait fraîchir ver 0.29 2.43 0 0.61 ind:imp:3s; +fraîchissant fraîchir ver 0.29 2.43 0 0.27 par:pre; +fraîchissent fraîchir ver 0.29 2.43 0.01 0.07 ind:pre:3p; +fraîchit fraîchir ver 0.29 2.43 0.25 0.41 ind:pre:3s;ind:pas:3s; +freak freak nom m s 0.24 0.14 0.16 0.14 +freaks freak nom m p 0.24 0.14 0.08 0 +fredaines fredaine nom f p 0.06 0.2 0.06 0.2 +fredonna fredonner ver 1.69 9.66 0 1.28 ind:pas:3s; +fredonnaient fredonner ver 1.69 9.66 0 0.47 ind:imp:3p; +fredonnais fredonner ver 1.69 9.66 0.04 0.27 ind:imp:1s;ind:imp:2s; +fredonnait fredonner ver 1.69 9.66 0.08 2.23 ind:imp:3s; +fredonnant fredonner ver 1.69 9.66 0.26 1.15 par:pre; +fredonne fredonner ver 1.69 9.66 0.81 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fredonnement fredonnement nom m s 0.04 0.14 0.04 0.14 +fredonnent fredonner ver 1.69 9.66 0.04 0 ind:pre:3p; +fredonner fredonner ver 1.69 9.66 0.23 2.03 inf; +fredonnera fredonner ver 1.69 9.66 0.02 0 ind:fut:3s; +fredonnerai fredonner ver 1.69 9.66 0.01 0 ind:fut:1s; +fredonnerait fredonner ver 1.69 9.66 0 0.07 cnd:pre:3s; +fredonneras fredonner ver 1.69 9.66 0.01 0 ind:fut:2s; +fredonnez fredonner ver 1.69 9.66 0.16 0 imp:pre:2p;ind:pre:2p; +fredonnons fredonner ver 1.69 9.66 0 0.07 ind:pre:1p; +fredonnâmes fredonner ver 1.69 9.66 0 0.07 ind:pas:1p; +fredonnèrent fredonner ver 1.69 9.66 0 0.14 ind:pas:3p; +fredonné fredonner ver m s 1.69 9.66 0.04 0.41 par:pas; +fredonnée fredonner ver f s 1.69 9.66 0 0.07 par:pas; +fredonnées fredonner ver f p 1.69 9.66 0 0.07 par:pas; +fredonnés fredonner ver m p 1.69 9.66 0 0.07 par:pas; +free_jazz free_jazz nom m 0 0.07 0 0.07 +free_jazz free_jazz nom m 0 0.07 0 0.07 +free_lance free_lance nom s 0.2 0.07 0.2 0.07 +freelance freelance nom f s 0.4 0.07 0.4 0.07 +freesia freesia nom m s 0.05 0.07 0.01 0 +freesias freesia nom m p 0.05 0.07 0.04 0.07 +freezer freezer nom m s 1.08 0 1.08 0 +frein frein nom m s 10.25 13.18 4.87 7.91 +freina freiner ver 7.43 13.04 0 2.09 ind:pas:3s; +freinage freinage nom m s 0.97 0.74 0.84 0.68 +freinages freinage nom m p 0.97 0.74 0.14 0.07 +freinai freiner ver 7.43 13.04 0 0.14 ind:pas:1s; +freinaient freiner ver 7.43 13.04 0 0.34 ind:imp:3p; +freinais freiner ver 7.43 13.04 0 0.07 ind:imp:1s; +freinait freiner ver 7.43 13.04 0 0.68 ind:imp:3s; +freinant freiner ver 7.43 13.04 0 0.41 par:pre; +freine freiner ver 7.43 13.04 3.52 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +freinent freiner ver 7.43 13.04 0.15 0.41 ind:pre:3p; +freiner freiner ver 7.43 13.04 1.63 3.11 inf; +freinera freiner ver 7.43 13.04 0.07 0 ind:fut:3s; +freinerais freiner ver 7.43 13.04 0.01 0 cnd:pre:1s; +freinerez freiner ver 7.43 13.04 0.02 0 ind:fut:2p; +freines freiner ver 7.43 13.04 0.34 0.14 ind:pre:2s; +freineurs freineur nom m p 0.01 0 0.01 0 +freinez freiner ver 7.43 13.04 0.5 0 imp:pre:2p;ind:pre:2p; +freinons freiner ver 7.43 13.04 0.1 0.07 imp:pre:1p;ind:pre:1p; +freins frein nom m p 10.25 13.18 5.38 5.27 +freinèrent freiner ver 7.43 13.04 0 0.07 ind:pas:3p; +freiné freiner ver m s 7.43 13.04 1.04 1.08 par:pas; +freinée freiner ver f s 7.43 13.04 0.01 0.47 par:pas; +freinées freiner ver f p 7.43 13.04 0.01 0.07 par:pas; +freinés freiner ver m p 7.43 13.04 0.02 0.07 par:pas; +frelater frelater ver 0.06 0.07 0.01 0 inf; +frelaté frelaté adj m s 0.18 0.81 0.02 0.34 +frelatée frelaté adj f s 0.18 0.81 0.06 0.27 +frelatées frelaté adj f p 0.18 0.81 0 0.2 +frelatés frelaté adj m p 0.18 0.81 0.1 0 +frelon frelon nom m s 0.78 1.82 0.59 0.81 +frelons frelon nom m p 0.78 1.82 0.18 1.01 +freluquet freluquet nom m s 0.51 0.68 0.46 0.34 +freluquets freluquet nom m p 0.51 0.68 0.05 0.34 +french french nom m s 0.2 0.41 0.2 0.41 +fresque fresque nom f s 3.18 6.76 1.37 3.24 +fresques fresque nom f p 3.18 6.76 1.81 3.51 +fresquiste fresquiste nom s 0.01 0 0.01 0 +fret fret nom m s 1.19 0.74 1.18 0.68 +fretin fretin nom m s 0.64 0.61 0.63 0.61 +fretins fretin nom m p 0.64 0.61 0.01 0 +frets fret nom m p 1.19 0.74 0.01 0.07 +fretta fretter ver 0 0.07 0 0.07 ind:pas:3s; +frette frette nom f s 0.16 0.27 0.16 0.27 +freudien freudien adj m s 0.49 0.61 0.23 0.34 +freudienne freudien adj f s 0.49 0.61 0.13 0.2 +freudiennes freudien adj f p 0.49 0.61 0.04 0.07 +freudiens freudien adj m p 0.49 0.61 0.1 0 +freudisme freudisme nom m s 0.02 0.14 0.02 0.14 +freux freux nom m 0.02 0.2 0.02 0.2 +friabilité friabilité nom f s 0 0.14 0 0.14 +friable friable adj s 0.12 2.91 0.1 1.82 +friables friable adj p 0.12 2.91 0.03 1.08 +friand friand adj m s 0.47 3.31 0.29 1.49 +friande friand adj f s 0.47 3.31 0.02 0.74 +friandes friand adj f p 0.47 3.31 0.01 0.27 +friandise friandise nom f s 2.28 4.05 0.46 1.49 +friandises friandise nom f p 2.28 4.05 1.82 2.57 +friands friand adj m p 0.47 3.31 0.15 0.81 +fribourgeoise fribourgeois nom f s 0 0.14 0 0.14 +fric fric nom m s 109.01 26.42 108.99 26.35 +fric_frac fric_frac nom m 0.25 0.41 0.25 0.41 +fricadelle fricadelle nom f s 1.21 0 0.67 0 +fricadelles fricadelle nom f p 1.21 0 0.54 0 +fricandeau fricandeau nom m s 0 0.27 0 0.14 +fricandeaux fricandeau nom m p 0 0.27 0 0.14 +fricasse fricasser ver 0.01 0.34 0.01 0.14 ind:pre:1s;ind:pre:3s; +fricasserai fricasser ver 0.01 0.34 0 0.07 ind:fut:1s; +fricassé fricasser ver m s 0.01 0.34 0 0.14 par:pas; +fricassée fricassée nom f s 0.46 0.68 0.46 0.47 +fricassées fricassée nom f p 0.46 0.68 0 0.2 +fricatif fricatif adj m s 0 0.2 0 0.2 +fricatives fricative nom f p 0.01 0 0.01 0 +friche friche nom f s 0.32 7.91 0.28 4.59 +friches friche nom f p 0.32 7.91 0.04 3.31 +frichti frichti nom m s 0.03 4.39 0.03 4.12 +frichtis frichti nom m p 0.03 4.39 0 0.27 +fricot fricot nom m s 0.01 0.81 0.01 0.54 +fricotage fricotage nom m s 0.03 0.2 0.03 0 +fricotages fricotage nom m p 0.03 0.2 0 0.2 +fricotaient fricoter ver 1.86 1.55 0.01 0.07 ind:imp:3p; +fricotais fricoter ver 1.86 1.55 0.06 0.07 ind:imp:1s;ind:imp:2s; +fricotait fricoter ver 1.86 1.55 0.08 0.27 ind:imp:3s; +fricotant fricoter ver 1.86 1.55 0.01 0 par:pre; +fricote fricoter ver 1.86 1.55 0.41 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fricotent fricoter ver 1.86 1.55 0.21 0 ind:pre:3p; +fricoter fricoter ver 1.86 1.55 0.47 0.41 inf; +fricotes fricoter ver 1.86 1.55 0.28 0.14 ind:pre:2s; +fricoteur fricoteur nom m s 0.11 0.07 0.1 0 +fricoteurs fricoteur nom m p 0.11 0.07 0.01 0.07 +fricotez fricoter ver 1.86 1.55 0.09 0 ind:pre:2p; +fricotiez fricoter ver 1.86 1.55 0.04 0.07 ind:imp:2p; +fricots fricot nom m p 0.01 0.81 0 0.27 +fricoté fricoter ver m s 1.86 1.55 0.2 0.14 par:pas; +frics fric nom m p 109.01 26.42 0.02 0.07 +friction friction nom f s 1.14 2.36 0.87 0.54 +frictionna frictionner ver 0.59 2.64 0 0.54 ind:pas:3s; +frictionnais frictionner ver 0.59 2.64 0.1 0 ind:imp:1s; +frictionnait frictionner ver 0.59 2.64 0.11 0.41 ind:imp:3s; +frictionnant frictionner ver 0.59 2.64 0 0.27 par:pre; +frictionne frictionner ver 0.59 2.64 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frictionnent frictionner ver 0.59 2.64 0.01 0.14 ind:pre:3p; +frictionner frictionner ver 0.59 2.64 0.06 0.47 inf; +frictionnerai frictionner ver 0.59 2.64 0 0.07 ind:fut:1s; +frictionnerait frictionner ver 0.59 2.64 0 0.07 cnd:pre:3s; +frictionnez frictionner ver 0.59 2.64 0.14 0.07 imp:pre:2p;ind:pre:2p; +frictionnèrent frictionner ver 0.59 2.64 0 0.07 ind:pas:3p; +frictionné frictionner ver m s 0.59 2.64 0.01 0.27 par:pas; +frictions friction nom f p 1.14 2.36 0.27 1.82 +fridolin fridolin nom m s 0.16 0.34 0.01 0 +fridolins fridolin nom m p 0.16 0.34 0.14 0.34 +frigidaire frigidaire nom m s 1.2 3.45 1.16 3.18 +frigidaires frigidaire nom m p 1.2 3.45 0.05 0.27 +frigide frigide adj s 0.69 0.81 0.65 0.68 +frigides frigide adj f p 0.69 0.81 0.04 0.14 +frigidité frigidité nom f s 0.06 0.34 0.06 0.34 +frigo frigo nom m s 19.29 7.97 19.07 7.5 +frigorifiant frigorifier ver 0.34 0.47 0.01 0.07 par:pre; +frigorifier frigorifier ver 0.34 0.47 0.01 0 inf; +frigorifique frigorifique adj m s 0.26 0.14 0.1 0 +frigorifiques frigorifique adj f p 0.26 0.14 0.16 0.14 +frigorifié frigorifier ver m s 0.34 0.47 0.23 0.07 par:pas; +frigorifiée frigorifier ver f s 0.34 0.47 0.08 0.07 par:pas; +frigorifiées frigorifié adj f p 0.13 0.61 0.01 0.07 +frigorifiés frigorifié adj m p 0.13 0.61 0.02 0 +frigorigène frigorigène adj m s 0.01 0 0.01 0 +frigorigène frigorigène nom m s 0.01 0 0.01 0 +frigos frigo nom m p 19.29 7.97 0.22 0.47 +frileuse frileux adj f s 1.08 5.88 0.31 1.55 +frileusement frileusement adv 0 1.96 0 1.96 +frileuses frileux adj f p 1.08 5.88 0.03 0.68 +frileux frileux adj m 1.08 5.88 0.74 3.65 +frilosité frilosité nom f s 0.01 0.07 0.01 0.07 +frima frimer ver 3.67 4.32 0 0.07 ind:pas:3s; +frimaient frimer ver 3.67 4.32 0 0.07 ind:imp:3p; +frimaire frimaire nom m s 0 0.07 0 0.07 +frimais frimer ver 3.67 4.32 0.3 0.41 ind:imp:1s;ind:imp:2s; +frimait frimer ver 3.67 4.32 0.04 0.2 ind:imp:3s; +frimant frimer ver 3.67 4.32 0.01 0.2 par:pre; +frimas frimas nom m 0.11 1.15 0.11 1.15 +frime frimer ver 3.67 4.32 1.37 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +friment frimer ver 3.67 4.32 0.02 0.07 ind:pre:3p; +frimer frimer ver 3.67 4.32 1.73 1.62 inf; +frimerais frimer ver 3.67 4.32 0 0.07 cnd:pre:2s; +frimes frimer ver 3.67 4.32 0.08 0 ind:pre:2s; +frimeur frimeur nom m s 1.43 0.47 0.86 0.27 +frimeurs frimeur nom m p 1.43 0.47 0.51 0.2 +frimeuse frimeur nom f s 1.43 0.47 0.05 0 +frimez frimer ver 3.67 4.32 0.01 0 ind:pre:2p; +frimiez frimer ver 3.67 4.32 0.02 0 ind:imp:2p; +frimousse frimousse nom f s 0.81 1.82 0.81 1.49 +frimousses frimousse nom f p 0.81 1.82 0 0.34 +frimé frimer ver m s 3.67 4.32 0.08 0.2 par:pas; +frimée frimer ver f s 3.67 4.32 0 0.07 par:pas; +frimées frimer ver f p 3.67 4.32 0 0.07 par:pas; +frimés frimer ver m p 3.67 4.32 0.01 0.14 par:pas; +fringale fringale nom f s 0.46 2.7 0.4 2.23 +fringales fringale nom f p 0.46 2.7 0.05 0.47 +fringant fringant adj m s 0.86 2.77 0.63 1.96 +fringante fringant adj f s 0.86 2.77 0.19 0.41 +fringantes fringant adj f p 0.86 2.77 0.02 0 +fringants fringant adj m p 0.86 2.77 0.03 0.41 +fringillidé fringillidé nom m s 0.01 0.07 0.01 0.07 +fringuait fringuer ver 1.28 3.31 0.02 0.27 ind:imp:3s; +fringue fringue nom f s 13.12 11.82 0.23 0.2 +fringuent fringuer ver 1.28 3.31 0.14 0.14 ind:pre:3p; +fringuer fringuer ver 1.28 3.31 0.29 0.47 inf; +fringues fringue nom f p 13.12 11.82 12.88 11.62 +fringuez fringuer ver 1.28 3.31 0.01 0 imp:pre:2p; +fringué fringuer ver m s 1.28 3.31 0.47 0.81 par:pas; +fringuée fringuer ver f s 1.28 3.31 0.1 0.88 par:pas; +fringuées fringuer ver f p 1.28 3.31 0.03 0.14 par:pas; +fringués fringuer ver m p 1.28 3.31 0.04 0.41 par:pas; +frio frio adj s 0.01 0.07 0.01 0.07 +fripa friper ver 0.11 1.89 0 0.07 ind:pas:3s; +fripaient friper ver 0.11 1.89 0 0.14 ind:imp:3p; +fripant friper ver 0.11 1.89 0 0.07 par:pre; +fripe fripe nom f s 0.58 0.95 0.22 0.61 +fripent friper ver 0.11 1.89 0.01 0.07 ind:pre:3p; +friper friper ver 0.11 1.89 0.01 0.2 inf; +friperie friperie nom f s 0.37 0.2 0.37 0.2 +fripes fripe nom f p 0.58 0.95 0.36 0.34 +fripier fripier nom m s 0.04 1.01 0.02 0.61 +fripiers fripier nom m p 0.04 1.01 0.02 0.41 +fripon fripon nom m s 0.88 0.68 0.44 0.34 +friponne fripon nom f s 0.88 0.68 0.33 0.07 +friponnerie friponnerie nom f s 0.13 0.14 0.13 0.14 +friponnes fripon nom f p 0.88 0.68 0.02 0.07 +fripons fripon nom m p 0.88 0.68 0.09 0.2 +fripouille fripouille nom f s 2.08 2.23 1.99 1.15 +fripouillerie fripouillerie nom f s 0 0.2 0 0.14 +fripouilleries fripouillerie nom f p 0 0.2 0 0.07 +fripouilles fripouille nom f p 2.08 2.23 0.1 1.08 +frippe frippe nom f s 0 0.07 0 0.07 +fripé fripé adj m s 0.57 5.88 0.33 1.49 +fripée fripé adj f s 0.57 5.88 0.17 1.82 +fripées fripé adj f p 0.57 5.88 0.04 1.01 +fripés fripé adj m p 0.57 5.88 0.03 1.55 +friqué friqué adj m s 1.05 0.74 0.32 0.2 +friquée friqué adj f s 1.05 0.74 0.16 0.14 +friquées friqué adj f p 1.05 0.74 0.11 0.07 +friqués friqué adj m p 1.05 0.74 0.46 0.34 +frire frire ver 6.63 4.73 2.26 1.82 inf; +fris frire ver 6.63 4.73 0.32 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +frisa friser ver 2.54 7.7 0 0.14 ind:pas:3s; +frisaient friser ver 2.54 7.7 0.14 0.27 ind:imp:3p; +frisais friser ver 2.54 7.7 0.1 0.07 ind:imp:1s;ind:imp:2s; +frisait friser ver 2.54 7.7 0.16 0.95 ind:imp:3s; +frisant frisant adj m s 0.02 0.95 0.02 0.2 +frisante frisant adj f s 0.02 0.95 0 0.68 +frisants frisant adj m p 0.02 0.95 0 0.07 +frisbee frisbee nom m s 1.35 0 1.35 0 +frise friser ver 2.54 7.7 0.8 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frise_poulet frise_poulet nom m s 0.01 0 0.01 0 +friseler friseler ver 0 0.07 0 0.07 inf; +friselis friselis nom m 0 1.35 0 1.35 +friselée friselée nom f s 0 0.07 0 0.07 +frisent friser ver 2.54 7.7 0.04 0.27 ind:pre:3p; +friser friser ver 2.54 7.7 0.42 1.42 inf; +friserai friser ver 2.54 7.7 0 0.07 ind:fut:1s; +frises frise nom f p 0.37 3.45 0.14 0.41 +frisette frisette nom f s 0.06 1.42 0.03 0.88 +frisettes frisette nom f p 0.06 1.42 0.03 0.54 +friseur friseur nom m s 0 0.2 0 0.2 +frisez friser ver 2.54 7.7 0.02 0 ind:pre:2p; +frison frison nom m s 0.1 0.54 0.1 0 +frisonne frison adj f s 0 0.27 0 0.14 +frisonnes frison adj f p 0 0.27 0 0.07 +frisons friser ver 2.54 7.7 0.14 0 ind:pre:1p; +frisottaient frisotter ver 0.01 0.61 0 0.14 ind:imp:3p; +frisottant frisottant adj m s 0 0.27 0 0.07 +frisottants frisottant adj m p 0 0.27 0 0.2 +frisottement frisottement nom m s 0 0.07 0 0.07 +frisottent frisotter ver 0.01 0.61 0 0.14 ind:pre:3p; +frisotter frisotter ver 0.01 0.61 0 0.07 inf; +frisottis frisottis nom m 0.01 0.14 0.01 0.14 +frisotté frisotter ver m s 0.01 0.61 0.01 0 par:pas; +frisottée frisotté adj f s 0 0.68 0 0.41 +frisottées frisotter ver f p 0.01 0.61 0 0.07 par:pas; +frisottés frisotter ver m p 0.01 0.61 0 0.14 par:pas; +frisous frisou nom m p 0.14 0.07 0.14 0.07 +frisquet frisquet adj m s 1.25 1.01 1.16 0.68 +frisquette frisquet adj f s 1.25 1.01 0.1 0.34 +frisselis frisselis nom m 0 0.14 0 0.14 +frisson frisson nom m s 8.62 21.69 4.23 14.26 +frissonna frissonner ver 2.21 20.34 0.01 4.39 ind:pas:3s; +frissonnai frissonner ver 2.21 20.34 0.01 0.34 ind:pas:1s; +frissonnaient frissonner ver 2.21 20.34 0 1.01 ind:imp:3p; +frissonnais frissonner ver 2.21 20.34 0.03 0.68 ind:imp:1s; +frissonnait frissonner ver 2.21 20.34 0.21 3.38 ind:imp:3s; +frissonnant frissonner ver 2.21 20.34 0.14 2.09 par:pre; +frissonnante frissonnant adj f s 0.2 3.92 0.07 1.82 +frissonnantes frissonnant adj f p 0.2 3.92 0 0.61 +frissonnants frissonnant adj m p 0.2 3.92 0.02 0.54 +frissonne frissonner ver 2.21 20.34 0.75 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frissonnement frissonnement nom m s 0.01 0.61 0.01 0.41 +frissonnements frissonnement nom m p 0.01 0.61 0 0.2 +frissonnent frissonner ver 2.21 20.34 0.03 0.47 ind:pre:3p; +frissonner frissonner ver 2.21 20.34 0.73 4.12 inf; +frissonnes frissonner ver 2.21 20.34 0.11 0 ind:pre:2s; +frissonnez frissonner ver 2.21 20.34 0.04 0 ind:pre:2p; +frissonnèrent frissonner ver 2.21 20.34 0 0.07 ind:pas:3p; +frissonné frissonner ver m s 2.21 20.34 0.14 0.61 par:pas; +frissons frisson nom m p 8.62 21.69 4.39 7.43 +frisure frisure nom f s 0 0.34 0 0.14 +frisures frisure nom f p 0 0.34 0 0.2 +frisâmes friser ver 2.54 7.7 0 0.07 ind:pas:1p; +frisé frisé adj m s 2.72 10.2 1.56 3.24 +frisée frisé adj f s 2.72 10.2 0.4 1.28 +frisées frisé adj f p 2.72 10.2 0.04 0.68 +frisés frisé adj m p 2.72 10.2 0.73 5 +frit frire ver m s 6.63 4.73 2.74 1.82 ind:pre:3s;par:pas; +frite frite nom f s 9.33 5.47 0.66 0.54 +friterie friterie nom f s 0.18 0.47 0.18 0.14 +friteries friterie nom f p 0.18 0.47 0 0.34 +frites frite nom f p 9.33 5.47 8.68 4.93 +friteuse friteur nom f s 0.36 0.41 0.34 0.2 +friteuses friteur nom f p 0.36 0.41 0.02 0.2 +fritillaires fritillaire nom f p 0.01 0.07 0.01 0.07 +fritons friton nom m p 0 0.07 0 0.07 +frits frire ver m p 6.63 4.73 1.32 1.08 par:pas; +fritte fritte nom f s 0.01 0 0.01 0 +fritter fritter ver 0.04 0 0.04 0 inf; +frittés fritter ver m p 0.04 0 0.01 0 par:pas; +friture friture nom f s 1.88 3.78 1.81 3.24 +fritures friture nom f p 1.88 3.78 0.06 0.54 +friturier friturier nom m s 0 0.07 0 0.07 +fritz fritz nom m 1.72 1.82 1.72 1.82 +frivole frivole adj s 2.22 5.81 1.75 4.26 +frivoles frivole adj p 2.22 5.81 0.47 1.55 +frivolité frivolité nom f s 0.48 2.84 0.4 2.3 +frivolités frivolité nom f p 0.48 2.84 0.08 0.54 +froc froc nom m s 6.92 7.64 6.61 6.89 +frocard frocard nom m s 0 0.2 0 0.14 +frocards frocard nom m p 0 0.2 0 0.07 +frocs froc nom m p 6.92 7.64 0.31 0.74 +froid froid adj m s 127.22 161.69 98.43 94.86 +froidasse froidasse adj f s 0 0.07 0 0.07 +froide froid adj f s 127.22 161.69 21.48 49.59 +froidement froidement adv 0.94 9.05 0.94 9.05 +froides froid adj f p 127.22 161.69 4.07 10 +froideur froideur nom f s 1.94 7.84 1.94 7.57 +froideurs froideur nom f p 1.94 7.84 0 0.27 +froidi froidir ver m s 0 0.2 0 0.07 par:pas; +froidir froidir ver 0 0.2 0 0.07 inf; +froidissait froidir ver 0 0.2 0 0.07 ind:imp:3s; +froids froid adj m p 127.22 161.69 3.24 7.23 +froidure froidure nom f s 0.12 1.69 0.11 1.55 +froidures froidure nom f p 0.12 1.69 0.01 0.14 +froissa froisser ver 3.74 12.5 0 0.88 ind:pas:3s; +froissaient froisser ver 3.74 12.5 0 0.54 ind:imp:3p; +froissais froisser ver 3.74 12.5 0.01 0.14 ind:imp:1s; +froissait froisser ver 3.74 12.5 0.01 1.55 ind:imp:3s; +froissant froisser ver 3.74 12.5 0 1.08 par:pre; +froisse froisser ver 3.74 12.5 0.64 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +froissement froissement nom m s 0.23 10.54 0.23 8.38 +froissements froissement nom m p 0.23 10.54 0.01 2.16 +froissent froisser ver 3.74 12.5 0.04 0.47 ind:pre:3p; +froisser froisser ver 3.74 12.5 1.6 1.96 inf; +froissera froisser ver 3.74 12.5 0.01 0 ind:fut:3s; +froisserais froisser ver 3.74 12.5 0 0.07 cnd:pre:1s; +froisserait froisser ver 3.74 12.5 0.02 0 cnd:pre:3s; +froisses froisser ver 3.74 12.5 0.05 0.14 ind:pre:2s; +froissez froisser ver 3.74 12.5 0.04 0 imp:pre:2p;ind:pre:2p; +froissions froisser ver 3.74 12.5 0 0.07 ind:imp:1p; +froissèrent froisser ver 3.74 12.5 0 0.07 ind:pas:3p; +froissé froisser ver m s 3.74 12.5 0.66 2.3 par:pas; +froissée froisser ver f s 3.74 12.5 0.59 0.81 par:pas; +froissées froissé adj f p 0.96 9.46 0.01 1.22 +froissés froissé adj m p 0.96 9.46 0.21 2.03 +fromage fromage nom m s 27.22 26.96 25.68 20.81 +fromager fromager nom m s 0.32 0.47 0.3 0.34 +fromagerie fromagerie nom f s 0.01 0.41 0.01 0.41 +fromagers fromager nom m p 0.32 0.47 0.02 0.14 +fromages fromage nom m p 27.22 26.96 1.54 6.15 +fromagère fromager adj f s 0.04 0.27 0 0.14 +fromegi fromegi nom m s 0 0.07 0 0.07 +froment froment nom m s 0.21 1.35 0.21 1.35 +fromental fromental nom m s 0 0.07 0 0.07 +frometon frometon nom m s 0.04 0.47 0.04 0.27 +frometons frometon nom m p 0.04 0.47 0 0.2 +fronce fronce nom f s 0.36 0.54 0.34 0.07 +froncement froncement nom m s 0.27 1.69 0.16 1.08 +froncements froncement nom m p 0.27 1.69 0.11 0.61 +froncer froncer ver 0.52 15.88 0.08 0.88 inf; +froncerait froncer ver 0.52 15.88 0.01 0.2 cnd:pre:3s; +fronces froncer ver 0.52 15.88 0.04 0.07 ind:pre:2s; +froncez froncer ver 0.52 15.88 0.06 0 imp:pre:2p;ind:pre:2p; +froncèrent froncer ver 0.52 15.88 0 0.07 ind:pas:3p; +froncé froncer ver m s 0.52 15.88 0.04 1.08 par:pas; +froncée froncé adj f s 0.14 5.61 0.1 0.2 +froncées froncé adj f p 0.14 5.61 0 0.14 +froncés froncé adj m p 0.14 5.61 0.01 4.19 +frondaient fronder ver 0 0.27 0 0.07 ind:imp:3p; +frondaison frondaison nom f s 0.01 3.92 0 0.61 +frondaisons frondaison nom f p 0.01 3.92 0.01 3.31 +fronde fronde nom f s 1.02 1.82 0.86 1.69 +frondent fronder ver 0 0.27 0 0.07 ind:pre:3p; +frondes fronde nom f p 1.02 1.82 0.16 0.14 +frondeur frondeur adj m s 0.01 0.61 0.01 0.34 +frondeurs frondeur nom m p 0.02 0 0.02 0 +frondeuse frondeur adj f s 0.01 0.61 0 0.14 +frondé fronder ver m s 0 0.27 0 0.07 par:pas; +front front nom m s 41.03 159.12 38.81 152.57 +frontal frontal adj m s 1.62 1.55 1.15 0.74 +frontale frontal adj f s 1.62 1.55 0.35 0.81 +frontalier frontalier adj m s 0.6 1.22 0.04 0.07 +frontaliers frontalier adj m p 0.6 1.22 0.04 0.34 +frontalière frontalier adj f s 0.6 1.22 0.32 0.68 +frontalières frontalier adj f p 0.6 1.22 0.2 0.14 +frontaux frontal adj m p 1.62 1.55 0.12 0 +fronteau fronteau nom m s 0 0.07 0 0.07 +frontispice frontispice nom m s 0.01 0.34 0.01 0.27 +frontispices frontispice nom m p 0.01 0.34 0 0.07 +frontière frontière nom f s 34.54 40.47 28.54 26.42 +frontières frontière nom f p 34.54 40.47 6 14.05 +fronton fronton nom m s 0.1 5.47 0.1 4.39 +frontons fronton nom m p 0.1 5.47 0 1.08 +fronts front nom m p 41.03 159.12 2.23 6.55 +fronça froncer ver 0.52 15.88 0 5.61 ind:pas:3s; +fronçai froncer ver 0.52 15.88 0 0.14 ind:pas:1s; +fronçaient froncer ver 0.52 15.88 0 0.14 ind:imp:3p; +fronçais froncer ver 0.52 15.88 0.01 0.07 ind:imp:1s; +fronçait froncer ver 0.52 15.88 0.01 1.01 ind:imp:3s; +fronçant froncer ver 0.52 15.88 0.01 3.58 par:pre; +frotta frotter ver 12.52 50.14 0.01 7.7 ind:pas:3s; +frottage frottage nom m s 0.05 0.27 0.05 0.2 +frottages frottage nom m p 0.05 0.27 0 0.07 +frottai frotter ver 12.52 50.14 0.01 0.14 ind:pas:1s; +frottaient frotter ver 12.52 50.14 0.16 1.42 ind:imp:3p; +frottais frotter ver 12.52 50.14 0.33 1.01 ind:imp:1s;ind:imp:2s; +frottait frotter ver 12.52 50.14 0.29 8.38 ind:imp:3s; +frottant frotter ver 12.52 50.14 0.27 7.03 par:pre; +frotte frotter ver 12.52 50.14 3.9 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +frottement frottement nom m s 0.68 5.07 0.31 3.72 +frottements frottement nom m p 0.68 5.07 0.37 1.35 +frottent frotter ver 12.52 50.14 0.16 1.01 ind:pre:3p; +frotter frotter ver 12.52 50.14 4.01 8.99 inf; +frottera frotter ver 12.52 50.14 0.25 0 ind:fut:3s; +frotterai frotter ver 12.52 50.14 0.05 0.14 ind:fut:1s; +frotterais frotter ver 12.52 50.14 0.06 0 cnd:pre:1s; +frotterait frotter ver 12.52 50.14 0.01 0.2 cnd:pre:3s; +frotteras frotter ver 12.52 50.14 0.02 0.07 ind:fut:2s; +frotterons frotter ver 12.52 50.14 0 0.07 ind:fut:1p; +frottes frotter ver 12.52 50.14 0.58 0.07 ind:pre:2s; +frotteur frotteur adj m s 0.01 0.14 0.01 0.07 +frotteurs frotteur nom m p 0 0.68 0 0.14 +frotteuse frotteur nom f s 0 0.68 0 0.14 +frotteuses frotteur nom f p 0 0.68 0 0.07 +frottez frotter ver 12.52 50.14 0.74 0.14 imp:pre:2p;ind:pre:2p; +frotti_frotta frotti_frotta nom m 0.04 0.2 0.04 0.2 +frottiez frotter ver 12.52 50.14 0.05 0 ind:imp:2p; +frottin frottin nom m s 0.01 0.2 0.01 0.2 +frottions frotter ver 12.52 50.14 0 0.07 ind:imp:1p; +frottis frottis nom m 0.39 0.34 0.39 0.34 +frottoir frottoir nom m s 0 0.41 0 0.34 +frottoirs frottoir nom m p 0 0.41 0 0.07 +frottons frotton nom m p 0.06 0.14 0.06 0.14 +frottèrent frotter ver 12.52 50.14 0 0.27 ind:pas:3p; +frotté frotter ver m s 12.52 50.14 1.25 2.64 par:pas; +frottée frotter ver f s 12.52 50.14 0.3 0.61 par:pas; +frottées frotter ver f p 12.52 50.14 0.01 0.81 par:pas; +frottés frotter ver m p 12.52 50.14 0.03 0.81 par:pas; +frou_frou frou_frou nom m s 0.23 0.47 0.09 0.41 +frouement frouement nom m s 0 0.27 0 0.2 +frouements frouement nom m p 0 0.27 0 0.07 +froufrou froufrou nom m s 0.32 0.41 0.23 0.14 +froufrous froufrou nom m p 0.32 0.41 0.08 0.27 +froufroutait froufrouter ver 0.02 0.07 0 0.07 ind:imp:3s; +froufroutant froufrouter ver 0.02 0.07 0.01 0 par:pre; +froufroutante froufroutant adj f s 0.01 0.41 0 0.07 +froufroutantes froufroutant adj f p 0.01 0.41 0 0.2 +froufroutants froufroutant adj m p 0.01 0.41 0.01 0.07 +froufroutement froufroutement nom m s 0 0.07 0 0.07 +froufrouter froufrouter ver 0.02 0.07 0.01 0 inf; +frou_frou frou_frou nom m p 0.23 0.47 0.14 0.07 +froussard froussard nom m s 1.99 0.61 1.33 0.41 +froussarde froussard nom f s 1.99 0.61 0.26 0 +froussards froussard nom m p 1.99 0.61 0.4 0.2 +frousse frousse nom f s 3.13 2.36 2.9 2.16 +frousses frousse nom f p 3.13 2.36 0.23 0.2 +fructidor fructidor nom m s 0.01 0.07 0.01 0.07 +fructifiaient fructifier ver 0.55 1.28 0 0.07 ind:imp:3p; +fructifiant fructifier ver 0.55 1.28 0.01 0.07 par:pre; +fructification fructification nom f s 0 0.14 0 0.14 +fructifier fructifier ver 0.55 1.28 0.53 1.08 inf; +fructifié fructifier ver m s 0.55 1.28 0.01 0.07 par:pas; +fructose fructose nom m s 0.07 0 0.07 0 +fructueuse fructueux adj f s 1.05 3.24 0.54 1.28 +fructueuses fructueux adj f p 1.05 3.24 0.19 0.61 +fructueux fructueux adj m 1.05 3.24 0.32 1.35 +frugal frugal adj m s 0.19 1.28 0.18 0.61 +frugale frugal adj f s 0.19 1.28 0.01 0.41 +frugalement frugalement adv 0.01 0.07 0.01 0.07 +frugales frugal adj f p 0.19 1.28 0 0.07 +frugalité frugalité nom f s 0.01 0.47 0.01 0.47 +frugaux frugal adj m p 0.19 1.28 0 0.2 +frugivore frugivore adj s 0.02 0 0.02 0 +fruit fruit nom m s 39.45 64.05 15.99 21.96 +fruiter fruiter ver 0.04 0.41 0 0.07 inf; +fruiteries fruiterie nom f p 0 0.14 0 0.14 +fruiteux fruiteux adj m s 0 0.07 0 0.07 +fruitier fruitier adj m s 0.39 2.43 0.15 0.47 +fruitiers fruitier adj m p 0.39 2.43 0.22 1.82 +fruitière fruitier adj f s 0.39 2.43 0.01 0.07 +fruitières fruitier adj f p 0.39 2.43 0.01 0.07 +fruits fruit nom m p 39.45 64.05 23.45 42.09 +fruité fruité adj m s 0.38 1.01 0.31 0.34 +fruitée fruité adj f s 0.38 1.01 0.01 0.54 +fruitées fruité adj f p 0.38 1.01 0 0.07 +fruités fruité adj m p 0.38 1.01 0.06 0.07 +frusquer frusquer ver 0 0.14 0 0.07 inf; +frusques frusque nom f p 0.64 3.24 0.64 3.24 +frusquée frusquer ver f s 0 0.14 0 0.07 par:pas; +fruste fruste adj s 0.51 4.86 0.37 3.11 +frustes fruste adj p 0.51 4.86 0.14 1.76 +frustra frustrer ver 2.68 3.38 0 0.07 ind:pas:3s; +frustrait frustrer ver 2.68 3.38 0.14 0.27 ind:imp:3s; +frustrant frustrant adj m s 1.39 0.14 1.23 0 +frustrante frustrant adj f s 1.39 0.14 0.14 0.14 +frustrantes frustrant adj f p 1.39 0.14 0.02 0 +frustration frustration nom f s 3.06 3.85 2.73 3.24 +frustrations frustration nom f p 3.06 3.85 0.33 0.61 +frustre frustrer ver 2.68 3.38 0.37 0 ind:pre:3s; +frustrer frustrer ver 2.68 3.38 0.08 0.34 inf; +frustrât frustrer ver 2.68 3.38 0 0.14 sub:imp:3s; +frustré frustré adj m s 1.98 2.43 1.14 1.15 +frustrée frustré adj f s 1.98 2.43 0.62 0.68 +frustrées frustré nom f p 0.78 0.81 0.04 0.07 +frustrés frustrer ver m p 2.68 3.38 0.49 0.74 par:pas; +frère frère nom m s 390.39 216.35 311.45 142.36 +frères frère nom m p 390.39 216.35 78.94 73.99 +frète fréter ver 0.01 0.74 0 0.07 ind:pre:1s; +frégate frégate nom f s 0.63 3.11 0.46 1.82 +frégates frégate nom f p 0.63 3.11 0.17 1.28 +frémi frémir ver m s 3.86 24.26 0.43 1.49 par:pas; +frémir frémir ver 3.86 24.26 1.38 6.22 inf; +frémirait frémir ver 3.86 24.26 0.14 0.07 cnd:pre:3s; +frémirent frémir ver 3.86 24.26 0 1.08 ind:pas:3p; +frémiront frémir ver 3.86 24.26 0 0.07 ind:fut:3p; +frémis frémir ver m p 3.86 24.26 1.06 1.08 ind:pre:1s;ind:pre:2s;par:pas; +frémissaient frémir ver 3.86 24.26 0 2.23 ind:imp:3p; +frémissais frémir ver 3.86 24.26 0 0.41 ind:imp:1s; +frémissait frémir ver 3.86 24.26 0.02 2.16 ind:imp:3s; +frémissant frémissant adj m s 0.77 8.45 0.39 2.03 +frémissante frémissant adj f s 0.77 8.45 0.14 3.24 +frémissantes frémissant adj f p 0.77 8.45 0.1 1.69 +frémissants frémissant adj m p 0.77 8.45 0.14 1.49 +frémisse frémir ver 3.86 24.26 0 0.07 sub:pre:3s; +frémissement frémissement nom m s 0.66 10.34 0.55 8.58 +frémissements frémissement nom m p 0.66 10.34 0.11 1.76 +frémissent frémir ver 3.86 24.26 0.34 1.82 ind:pre:3p; +frémissez frémir ver 3.86 24.26 0 0.07 ind:pre:2p; +frémit frémir ver 3.86 24.26 0.46 5.68 ind:pre:3s;ind:pas:3s; +frénésie frénésie nom f s 1.25 8.51 1.23 7.77 +frénésies frénésie nom f p 1.25 8.51 0.02 0.74 +frénétique frénétique adj s 0.61 6.28 0.52 4.12 +frénétiquement frénétiquement adv 0.26 2.97 0.26 2.97 +frénétiques frénétique adj p 0.61 6.28 0.09 2.16 +fréon fréon nom m s 0.21 0 0.21 0 +fréquemment fréquemment adv 1.16 8.24 1.16 8.24 +fréquence fréquence nom f s 10.12 2.43 7.61 2.23 +fréquences fréquence nom f p 10.12 2.43 2.51 0.2 +fréquent fréquent adj m s 4.14 12.09 2.39 3.78 +fréquenta fréquenter ver 18.97 30.81 0.01 0.68 ind:pas:3s; +fréquentable fréquentable adj m s 0.37 1.01 0.22 0.34 +fréquentables fréquentable adj m p 0.37 1.01 0.15 0.68 +fréquentai fréquenter ver 18.97 30.81 0 0.34 ind:pas:1s; +fréquentaient fréquenter ver 18.97 30.81 0.24 2.3 ind:imp:3p; +fréquentais fréquenter ver 18.97 30.81 0.96 1.22 ind:imp:1s;ind:imp:2s; +fréquentait fréquenter ver 18.97 30.81 1.55 5.54 ind:imp:3s; +fréquentant fréquenter ver 18.97 30.81 0.04 0.81 par:pre; +fréquentation fréquentation nom f s 2.81 5.74 0.46 2.97 +fréquentations fréquentation nom f p 2.81 5.74 2.35 2.77 +fréquente fréquenter ver 18.97 30.81 4.76 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fréquentent fréquenter ver 18.97 30.81 0.64 0.74 ind:pre:3p; +fréquenter fréquenter ver 18.97 30.81 4.57 6.76 inf;; +fréquenterais fréquenter ver 18.97 30.81 0.39 0.14 cnd:pre:1s;cnd:pre:2s; +fréquenterait fréquenter ver 18.97 30.81 0.11 0 cnd:pre:3s; +fréquenteras fréquenter ver 18.97 30.81 0.03 0 ind:fut:2s; +fréquenterez fréquenter ver 18.97 30.81 0.01 0.07 ind:fut:2p; +fréquentes fréquenter ver 18.97 30.81 2.01 0.61 ind:pre:2s; +fréquentez fréquenter ver 18.97 30.81 0.65 0.47 imp:pre:2p;ind:pre:2p; +fréquentiez fréquenter ver 18.97 30.81 0.17 0.14 ind:imp:2p; +fréquentions fréquenter ver 18.97 30.81 0.14 0.47 ind:imp:1p; +fréquentons fréquenter ver 18.97 30.81 0.09 0.14 ind:pre:1p; +fréquents fréquent adj m p 4.14 12.09 0.27 3.11 +fréquentât fréquenter ver 18.97 30.81 0 0.2 sub:imp:3s; +fréquentèrent fréquenter ver 18.97 30.81 0 0.07 ind:pas:3p; +fréquenté fréquenter ver m s 18.97 30.81 2.31 3.65 par:pas; +fréquentée fréquenté adj f s 0.86 3.51 0.38 0.74 +fréquentées fréquenter ver f p 18.97 30.81 0.02 0.68 par:pas; +fréquentés fréquenter ver m p 18.97 30.81 0.12 1.42 par:pas; +frérot frérot nom m s 2.5 0.81 2.46 0.68 +frérots frérot nom m p 2.5 0.81 0.04 0.14 +fréta fréter ver 0.01 0.74 0 0.14 ind:pas:3s; +frétait fréter ver 0.01 0.74 0 0.07 ind:imp:3s; +frétant fréter ver 0.01 0.74 0 0.07 par:pre; +fréter fréter ver 0.01 0.74 0.01 0.14 inf; +frétilla frétiller ver 0.6 3.58 0 0.14 ind:pas:3s; +frétillaient frétiller ver 0.6 3.58 0.01 0.27 ind:imp:3p; +frétillait frétiller ver 0.6 3.58 0.1 0.61 ind:imp:3s; +frétillant frétillant adj m s 0.22 1.89 0.07 0.61 +frétillante frétillant adj f s 0.22 1.89 0.13 0.47 +frétillantes frétillant adj f p 0.22 1.89 0 0.27 +frétillants frétillant adj m p 0.22 1.89 0.02 0.54 +frétillard frétillard adj m s 0 0.14 0 0.07 +frétillarde frétillard adj f s 0 0.14 0 0.07 +frétille frétiller ver 0.6 3.58 0.3 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frétillement frétillement nom m s 0 0.34 0 0.27 +frétillements frétillement nom m p 0 0.34 0 0.07 +frétillent frétiller ver 0.6 3.58 0.06 0.27 ind:pre:3p; +frétiller frétiller ver 0.6 3.58 0.08 0.54 inf; +frétillon frétillon adj m s 0 0.2 0 0.2 +frétillé frétiller ver m s 0.6 3.58 0 0.07 par:pas; +frétèrent fréter ver 0.01 0.74 0 0.07 ind:pas:3p; +frété fréter ver m s 0.01 0.74 0 0.14 par:pas; +frétée fréter ver f s 0.01 0.74 0 0.07 par:pas; +frêle frêle adj s 1.19 12.03 1 9.8 +frêles frêle adj p 1.19 12.03 0.19 2.23 +frêne frêne nom m s 1.81 2.5 1.71 1.62 +frênes frêne nom m p 1.81 2.5 0.1 0.88 +frôla frôler ver 4.45 25.41 0.03 2.3 ind:pas:3s; +frôlai frôler ver 4.45 25.41 0 0.34 ind:pas:1s; +frôlaient frôler ver 4.45 25.41 0.01 1.49 ind:imp:3p; +frôlais frôler ver 4.45 25.41 0 0.27 ind:imp:1s; +frôlait frôler ver 4.45 25.41 0.14 3.18 ind:imp:3s; +frôlant frôler ver 4.45 25.41 0.14 3.72 par:pre; +frôle frôler ver 4.45 25.41 0.88 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frôlement frôlement nom m s 0.11 6.01 0.11 3.85 +frôlements frôlement nom m p 0.11 6.01 0 2.16 +frôlent frôler ver 4.45 25.41 0.14 1.62 ind:pre:3p; +frôler frôler ver 4.45 25.41 0.68 4.19 inf; +frôlerais frôler ver 4.45 25.41 0 0.07 cnd:pre:1s; +frôlerait frôler ver 4.45 25.41 0 0.14 cnd:pre:3s; +frôles frôler ver 4.45 25.41 0.04 0.07 ind:pre:2s; +frôleur frôleur adj m s 0 0.74 0 0.34 +frôleurs frôleur nom m p 0.01 0.07 0.01 0.07 +frôleuse frôleur adj f s 0 0.74 0 0.2 +frôleuses frôleur adj f p 0 0.74 0 0.14 +frôlez frôler ver 4.45 25.41 0.2 0 imp:pre:2p;ind:pre:2p; +frôlions frôler ver 4.45 25.41 0 0.14 ind:imp:1p; +frôlons frôler ver 4.45 25.41 0.02 0.27 ind:pre:1p; +frôlât frôler ver 4.45 25.41 0.01 0 sub:imp:3s; +frôlèrent frôler ver 4.45 25.41 0 0.34 ind:pas:3p; +frôlé frôler ver m s 4.45 25.41 1.8 2.09 par:pas; +frôlée frôler ver f s 4.45 25.41 0.16 0.54 par:pas; +frôlées frôler ver f p 4.45 25.41 0 0.14 par:pas; +frôlés frôler ver m p 4.45 25.41 0.21 0.47 par:pas; +fuchsia fuchsia adj 0.06 0.34 0.06 0.34 +fuchsias fuchsia nom m p 0.04 0.34 0 0.2 +fuel fuel nom m s 1.03 0.27 1.03 0.27 +fuel_oil fuel_oil nom m s 0 0.07 0 0.07 +fugace fugace adj s 0.85 4.39 0.68 3.18 +fugacement fugacement adv 0 0.54 0 0.54 +fugaces fugace adj p 0.85 4.39 0.17 1.22 +fugacité fugacité nom f s 0.11 0.07 0.11 0.07 +fugitif fugitif nom m s 4.96 3.78 2.41 1.28 +fugitifs fugitif nom m p 4.96 3.78 1.96 1.69 +fugitive fugitif nom f s 4.96 3.78 0.47 0.74 +fugitivement fugitivement adv 0 2.57 0 2.57 +fugitives fugitif nom f p 4.96 3.78 0.12 0.07 +fugu fugu nom m s 0.27 0 0.27 0 +fuguaient fuguer ver 2.81 0.41 0.01 0 ind:imp:3p; +fuguait fuguer ver 2.81 0.41 0 0.14 ind:imp:3s; +fugue fugue nom f s 4.16 7.16 3.61 5.68 +fuguent fuguer ver 2.81 0.41 0.23 0 ind:pre:3p; +fuguer fuguer ver 2.81 0.41 0.42 0.14 inf; +fuguerais fuguer ver 2.81 0.41 0.01 0 cnd:pre:1s; +fugues fugue nom f p 4.16 7.16 0.55 1.49 +fugueur fugueur nom m s 0.83 0.81 0.16 0.27 +fugueurs fugueur nom m p 0.83 0.81 0.14 0.07 +fugueuse fugueur nom f s 0.83 0.81 0.51 0.27 +fugueuses fugueur nom f p 0.83 0.81 0.02 0.2 +fuguèrent fuguer ver 2.81 0.41 0.01 0 ind:pas:3p; +fugué fuguer ver m s 2.81 0.41 1.72 0.07 par:pas; +fuguées fugué adj f p 0 0.07 0 0.07 +fui fuir ver m s 76.82 76.42 10.68 8.24 par:pas; +fuie fuir ver f s 76.82 76.42 0.58 0.47 par:pas;sub:pre:1s;sub:pre:3s; +fuient fuir ver 76.82 76.42 2.81 2.43 ind:pre:3p; +fuies fuir ver 76.82 76.42 0.21 0 sub:pre:2s; +fuir fuir ver 76.82 76.42 30.95 35.88 inf; +fuira fuir ver 76.82 76.42 0.2 0 ind:fut:3s; +fuirai fuir ver 76.82 76.42 0.31 0.07 ind:fut:1s; +fuiraient fuir ver 76.82 76.42 0.02 0.07 cnd:pre:3p; +fuirais fuir ver 76.82 76.42 0.25 0.14 cnd:pre:1s;cnd:pre:2s; +fuirait fuir ver 76.82 76.42 0.17 0.14 cnd:pre:3s; +fuiras fuir ver 76.82 76.42 0.27 0.07 ind:fut:2s; +fuirent fuir ver 76.82 76.42 0.2 0.2 ind:pas:3p; +fuirez fuir ver 76.82 76.42 0.03 0 ind:fut:2p; +fuiriez fuir ver 76.82 76.42 0.02 0 cnd:pre:2p; +fuirions fuir ver 76.82 76.42 0 0.07 cnd:pre:1p; +fuirons fuir ver 76.82 76.42 0.16 0 ind:fut:1p; +fuiront fuir ver 76.82 76.42 0.31 0.14 ind:fut:3p; +fuis fuir ver m p 76.82 76.42 9.63 2.09 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fuisse fuir ver 76.82 76.42 0.01 0.07 sub:imp:1s; +fuit fuir ver 76.82 76.42 6.78 4.86 ind:pre:3s;ind:pas:3s; +fuite fuite nom f s 29.09 34.26 26.02 31.82 +fuiter fuiter ver 0.01 0.07 0.01 0.07 inf; +fuites fuite nom f p 29.09 34.26 3.07 2.43 +fulgores fulgore nom m p 0 0.07 0 0.07 +fulgura fulgurer ver 0.05 1.15 0 0.07 ind:pas:3s; +fulguraient fulgurer ver 0.05 1.15 0 0.07 ind:imp:3p; +fulgurait fulgurer ver 0.05 1.15 0 0.07 ind:imp:3s; +fulgurance fulgurance nom f s 0.04 0.68 0.03 0.47 +fulgurances fulgurance nom f p 0.04 0.68 0.01 0.2 +fulgurant fulgurant adj m s 0.57 7.84 0.12 2.57 +fulgurante fulgurant adj f s 0.57 7.84 0.4 3.31 +fulgurantes fulgurant adj f p 0.57 7.84 0.01 1.15 +fulgurants fulgurant adj m p 0.57 7.84 0.04 0.81 +fulguration fulguration nom f s 0.01 0.41 0 0.2 +fulgurations fulguration nom f p 0.01 0.41 0.01 0.2 +fulgure fulgurer ver 0.05 1.15 0 0.07 ind:pre:3s; +fulgurent fulgurer ver 0.05 1.15 0 0.14 ind:pre:3p; +fulgurer fulgurer ver 0.05 1.15 0 0.07 inf; +fulgurèrent fulgurer ver 0.05 1.15 0 0.14 ind:pas:3p; +fulguré fulgurer ver m s 0.05 1.15 0.01 0.2 par:pas; +fuligineuse fuligineux adj f s 0.01 1.69 0 0.47 +fuligineuses fuligineux adj f p 0.01 1.69 0 0.14 +fuligineux fuligineux adj m 0.01 1.69 0.01 1.08 +fuligule fuligule nom m s 0.02 0 0.02 0 +full full nom m s 2.28 0.41 2.27 0.27 +full_contact full_contact nom m s 0.04 0 0.04 0 +fullerène fullerène nom m s 0.04 0 0.04 0 +fulls full nom m p 2.28 0.41 0.01 0.14 +fulmicoton fulmicoton nom m s 0 0.14 0 0.14 +fulmina fulminer ver 0.3 2.77 0 0.74 ind:pas:3s; +fulminaient fulminer ver 0.3 2.77 0 0.07 ind:imp:3p; +fulminais fulminer ver 0.3 2.77 0 0.14 ind:imp:1s; +fulminait fulminer ver 0.3 2.77 0.01 0.74 ind:imp:3s; +fulminant fulminant adj m s 0.43 1.01 0.21 0.34 +fulminante fulminant adj f s 0.43 1.01 0.22 0.34 +fulminantes fulminant adj f p 0.43 1.01 0 0.14 +fulminants fulminant adj m p 0.43 1.01 0 0.2 +fulminate fulminate nom m s 0.05 0.07 0.05 0.07 +fulmination fulmination nom f s 0.02 0.41 0.02 0.27 +fulminations fulmination nom f p 0.02 0.41 0 0.14 +fulmine fulminer ver 0.3 2.77 0.07 0.61 ind:pre:1s;ind:pre:3s; +fulminement fulminement nom m s 0 0.07 0 0.07 +fulminent fulminer ver 0.3 2.77 0 0.14 ind:pre:3p; +fulminer fulminer ver 0.3 2.77 0.1 0.27 inf; +fulminera fulminer ver 0.3 2.77 0.01 0 ind:fut:3s; +fuma fumer ver 98.49 84.39 0.24 1.55 ind:pas:3s; +fumaga fumaga nom f s 0 0.07 0 0.07 +fumage fumage nom m s 0.07 0.07 0.07 0.07 +fumai fumer ver 98.49 84.39 0 0.2 ind:pas:1s; +fumaient fumer ver 98.49 84.39 0.52 5.2 ind:imp:3p; +fumailler fumailler ver 0 0.14 0 0.07 inf; +fumaillé fumailler ver m s 0 0.14 0 0.07 par:pas; +fumais fumer ver 98.49 84.39 1.65 1.28 ind:imp:1s;ind:imp:2s; +fumaison fumaison nom f s 0 0.07 0 0.07 +fumait fumer ver 98.49 84.39 2.7 15.07 ind:imp:3s; +fumant fumant adj m s 1.78 11.35 1.04 4.12 +fumante fumant adj f s 1.78 11.35 0.37 2.91 +fumantes fumant adj f p 1.78 11.35 0.06 2.36 +fumants fumant adj m p 1.78 11.35 0.31 1.96 +fumasse fumasse adj s 0.12 0.2 0.12 0.2 +fume fumer ver 98.49 84.39 29.46 15.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fume_cigarette fume_cigarette nom m s 0.27 2.09 0.17 1.82 +fume_cigarette fume_cigarette nom m p 0.27 2.09 0.1 0.27 +fument fumer ver 98.49 84.39 2.66 3.72 ind:pre:3p; +fumer fumer ver 98.49 84.39 35.91 20.88 inf; +fumera fumer ver 98.49 84.39 0.08 0.07 ind:fut:3s; +fumerai fumer ver 98.49 84.39 0.34 0.27 ind:fut:1s; +fumeraient fumer ver 98.49 84.39 0 0.14 cnd:pre:3p; +fumerais fumer ver 98.49 84.39 0.15 0.2 cnd:pre:1s;cnd:pre:2s; +fumerait fumer ver 98.49 84.39 0.03 0.2 cnd:pre:3s; +fumeras fumer ver 98.49 84.39 0.22 0 ind:fut:2s; +fumerez fumer ver 98.49 84.39 0.17 0 ind:fut:2p; +fumerie fumerie nom f s 0.48 0.68 0.46 0.27 +fumeries fumerie nom f p 0.48 0.68 0.03 0.41 +fumerolles fumerolle nom f p 0.01 0.81 0.01 0.81 +fumeron fumeron nom m s 0 0.14 0 0.07 +fumeronne fumeronner ver 0 0.07 0 0.07 ind:pre:3s; +fumerons fumer ver 98.49 84.39 0 0.14 ind:fut:1p; +fumes fumer ver 98.49 84.39 9.68 1.49 ind:pre:2s; +fumet fumet nom m s 0.25 4.26 0.24 3.51 +fumets fumet nom m p 0.25 4.26 0.01 0.74 +fumette fumette nom f s 0.28 0.07 0.28 0.07 +fumeur fumeur nom m s 3.85 3.04 2.09 1.96 +fumeurs fumeur nom m p 3.85 3.04 1.56 0.88 +fumeuse fumeur adj f s 0.31 1.89 0.23 0.95 +fumeuses fumeur adj f p 0.31 1.89 0.08 0.95 +fumeux fumeux adj m 0.05 1.49 0.05 1.49 +fumez fumer ver 98.49 84.39 5.75 1.28 imp:pre:2p;ind:pre:2p; +fumier fumier nom m s 18.74 16.69 15.66 13.11 +fumiers fumier nom m p 18.74 16.69 3.08 3.45 +fumiez fumer ver 98.49 84.39 0.34 0.14 ind:imp:2p; +fumigateur fumigateur nom m s 0.01 0 0.01 0 +fumigation fumigation nom f s 0.34 0.54 0.25 0.14 +fumigations fumigation nom f p 0.34 0.54 0.1 0.41 +fumiger fumiger ver 0.13 0 0.09 0 inf; +fumigène fumigène adj s 0.96 0.47 0.33 0.27 +fumigènes fumigène adj p 0.96 0.47 0.63 0.2 +fumigé fumiger ver m s 0.13 0 0.04 0 par:pas; +fumions fumer ver 98.49 84.39 0.1 0.27 ind:imp:1p; +fumiste fumiste nom s 0.63 0.2 0.59 0.07 +fumisterie fumisterie nom f s 0.3 0.34 0.29 0.27 +fumisteries fumisterie nom f p 0.3 0.34 0.01 0.07 +fumistes fumiste nom p 0.63 0.2 0.03 0.14 +fumière fumier nom f s 18.74 16.69 0 0.14 +fumoir fumoir nom m s 0.31 1.49 0.31 1.49 +fumons fumer ver 98.49 84.39 0.68 0.81 imp:pre:1p;ind:pre:1p; +fumure fumure nom f s 0 0.07 0 0.07 +fumâmes fumer ver 98.49 84.39 0 0.14 ind:pas:1p; +fumât fumer ver 98.49 84.39 0 0.07 sub:imp:3s; +fumèrent fumer ver 98.49 84.39 0.01 1.01 ind:pas:3p; +fumé fumer ver m s 98.49 84.39 6.75 4.19 par:pas; +fumée fumée nom f s 20.25 67.36 19.91 55.88 +fumées fumée nom f p 20.25 67.36 0.34 11.49 +fumés fumer ver m p 98.49 84.39 0.23 0.27 par:pas; +fun fun nom m s 2.85 0.07 2.85 0.07 +funambule funambule nom s 0.8 1.62 0.52 1.35 +funambules funambule nom p 0.8 1.62 0.28 0.27 +funambulesque funambulesque adj s 0 0.07 0 0.07 +funeste funeste adj s 4.97 4.86 4.22 3.11 +funestement funestement adv 0 0.07 0 0.07 +funestes funeste adj p 4.97 4.86 0.75 1.76 +fung fung adj m s 0.13 0 0.13 0 +funiculaire funiculaire nom m s 0.2 1.01 0.2 0.88 +funiculaires funiculaire nom m p 0.2 1.01 0 0.14 +funk funk adj 1.06 0.14 1.06 0.14 +funky funky adj 1.51 0.07 1.51 0.07 +funèbre funèbre adj s 8.07 16.35 4.21 11.69 +funèbres funèbre adj p 8.07 16.35 3.86 4.66 +funérailles funérailles nom f p 9.75 4.53 9.75 4.53 +funéraire funéraire adj s 1.68 4.59 1.39 2.84 +funéraires funéraire adj p 1.68 4.59 0.29 1.76 +funérarium funérarium nom m s 0.55 0.07 0.54 0.07 +funérariums funérarium nom m p 0.55 0.07 0.01 0 +fur_et_à_mesure fur_et_à_mesure nom m s 1.62 17.84 1.62 17.84 +furax furax adj m 4.51 0.81 4.51 0.81 +furent être aux 8074.24 6501.82 8.96 40.74 ind:pas:3p; +furet furet nom m s 0.87 0.2 0.69 0.14 +fureta fureter ver 0.55 2.64 0 0.07 ind:pas:3s; +furetage furetage nom m s 0.02 0.07 0.02 0.07 +furetai fureter ver 0.55 2.64 0 0.07 ind:pas:1s; +furetaient fureter ver 0.55 2.64 0 0.07 ind:imp:3p; +furetait fureter ver 0.55 2.64 0 0.2 ind:imp:3s; +furetant fureter ver 0.55 2.64 0.06 0.54 par:pre; +fureter fureter ver 0.55 2.64 0.4 1.08 inf; +fureteur fureteur adj m s 0.01 1.62 0.01 0.54 +fureteurs fureteur adj m p 0.01 1.62 0 0.81 +fureteuse fureteur adj f s 0.01 1.62 0 0.07 +fureteuses fureteur adj f p 0.01 1.62 0 0.2 +furetez fureter ver 0.55 2.64 0 0.07 ind:pre:2p; +furets furet nom m p 0.87 0.2 0.19 0.07 +furette furette nom f s 0 0.14 0 0.14 +fureté fureter ver m s 0.55 2.64 0.05 0.2 par:pas; +fureur fureur nom f s 7.87 33.92 7.03 30.61 +fureurs fureur nom f p 7.87 33.92 0.84 3.31 +furia furia nom f s 0.02 0.27 0.02 0.27 +furibard furibard adj m s 0.19 1.42 0.17 1.01 +furibarde furibard adj f s 0.19 1.42 0.02 0.34 +furibardes furibard adj f p 0.19 1.42 0 0.07 +furibond furibond adj m s 0.37 2.64 0.25 1.35 +furibonde furibond adj f s 0.37 2.64 0.1 0.74 +furibondes furibond adj f p 0.37 2.64 0 0.2 +furibonds furibond adj m p 0.37 2.64 0.02 0.34 +furie furie nom f s 2.58 5.74 2.05 5.54 +furies furie nom f p 2.58 5.74 0.53 0.2 +furieuse furieux adj f s 25.31 44.59 6.95 12.3 +furieusement furieusement adv 0.87 7.3 0.87 7.3 +furieuses furieux adj f p 25.31 44.59 0.3 2.77 +furieux furieux adj m 25.31 44.59 18.06 29.53 +furioso furioso adj m s 0.46 0.14 0.46 0.14 +furoncle furoncle nom m s 1.27 0.88 0.61 0.34 +furoncles furoncle nom m p 1.27 0.88 0.66 0.54 +furonculeux furonculeux adj m 0 0.07 0 0.07 +furonculose furonculose nom f s 0 0.14 0 0.07 +furonculoses furonculose nom f p 0 0.14 0 0.07 +furtif furtif adj m s 2.12 14.59 1.41 5.54 +furtifs furtif adj m p 2.12 14.59 0.26 4.46 +furtive furtif adj f s 2.12 14.59 0.42 3.04 +furtivement furtivement adv 1.13 5.07 1.13 5.07 +furtives furtif adj f p 2.12 14.59 0.04 1.55 +furtivité furtivité nom f s 0.07 0 0.07 0 +furète fureter ver 0.55 2.64 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +furètent fureter ver 0.55 2.64 0.01 0.07 ind:pre:3p; +furèterais fureter ver 0.55 2.64 0.01 0 cnd:pre:1s; +fus être aux 8074.24 6501.82 3.58 29.53 ind:pas:2s; +fusa fuser ver 1.24 10.14 0 0.41 ind:pas:3s; +fusaient fuser ver 1.24 10.14 0.14 2.03 ind:imp:3p; +fusain fusain nom m s 0.33 3.72 0.3 1.76 +fusains fusain nom m p 0.33 3.72 0.02 1.96 +fusait fuser ver 1.24 10.14 0.03 1.28 ind:imp:3s; +fusant fuser ver 1.24 10.14 0 0.95 par:pre; +fusante fusant adj f s 0 0.74 0 0.2 +fusants fusant nom m p 0 1.55 0 1.28 +fuse fuser ver 1.24 10.14 0.33 1.35 ind:pre:1s;ind:pre:3s; +fuseau fuseau nom m s 0.61 2.43 0.39 0.88 +fuseaux fuseau nom m p 0.61 2.43 0.22 1.55 +fuselage fuselage nom m s 0.44 0.54 0.44 0.47 +fuselages fuselage nom m p 0.44 0.54 0 0.07 +fuselé fuseler ver m s 0.01 0.2 0.01 0 par:pas; +fuselée fuselé adj f s 0.14 0.81 0 0.07 +fuselées fuselé adj f p 0.14 0.81 0.14 0.14 +fuselés fuselé adj m p 0.14 0.81 0 0.41 +fusent fuser ver 1.24 10.14 0.21 0.88 ind:pre:3p; +fuser fuser ver 1.24 10.14 0.34 1.22 inf; +fusible fusible nom m s 3.23 0.54 1.59 0.14 +fusibles fusible nom m p 3.23 0.54 1.64 0.41 +fusiforme fusiforme adj m s 0 0.2 0 0.2 +fusil fusil nom m s 48.61 55.68 36.52 39.32 +fusil_mitrailleur fusil_mitrailleur nom m s 0.37 0.41 0.37 0.34 +fusilier fusilier nom m s 0.63 0.95 0.23 0 +fusiliers fusilier nom m p 0.63 0.95 0.4 0.95 +fusilier_marin fusilier_marin nom m p 0.04 1.08 0.04 1.08 +fusilla fusiller ver 6.63 18.24 0 0.2 ind:pas:3s; +fusillade fusillade nom f s 9.63 9.39 8.35 8.18 +fusillades fusillade nom f p 9.63 9.39 1.27 1.22 +fusillaient fusiller ver 6.63 18.24 0 0.88 ind:imp:3p; +fusillait fusiller ver 6.63 18.24 0.01 0.88 ind:imp:3s; +fusillant fusiller ver 6.63 18.24 0.01 0.2 par:pre; +fusille fusiller ver 6.63 18.24 0.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fusillent fusiller ver 6.63 18.24 0.26 0.54 ind:pre:3p; +fusiller fusiller ver 6.63 18.24 2.19 6.49 inf; +fusillera fusiller ver 6.63 18.24 0.29 0.14 ind:fut:3s; +fusilleraient fusiller ver 6.63 18.24 0.01 0 cnd:pre:3p; +fusillerait fusiller ver 6.63 18.24 0.02 0.2 cnd:pre:3s; +fusillerons fusiller ver 6.63 18.24 0.01 0 ind:fut:1p; +fusilleront fusiller ver 6.63 18.24 0.04 0.07 ind:fut:3p; +fusilleurs fusilleur nom m p 0 0.14 0 0.14 +fusillez fusiller ver 6.63 18.24 0.19 0.07 imp:pre:2p;ind:pre:2p; +fusillions fusiller ver 6.63 18.24 0.01 0.07 ind:imp:1p; +fusillons fusiller ver 6.63 18.24 0.14 0 ind:pre:1p; +fusillé fusiller ver m s 6.63 18.24 1.96 5.07 par:pas; +fusillée fusillé adj f s 1.29 2.5 0.3 0.07 +fusillées fusiller ver f p 6.63 18.24 0.2 0.07 par:pas; +fusillés fusiller ver m p 6.63 18.24 0.66 2.36 par:pas; +fusils fusil nom m p 48.61 55.68 12.1 16.35 +fusil_mitrailleur fusil_mitrailleur nom m p 0.37 0.41 0 0.07 +fusion fusion nom f s 6.64 5.95 6.29 5.74 +fusionnaient fusionner ver 2.36 0.34 0.01 0.07 ind:imp:3p; +fusionnant fusionner ver 2.36 0.34 0.15 0 par:pre; +fusionne fusionner ver 2.36 0.34 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fusionnel fusionnel adj m s 0.01 0.2 0 0.14 +fusionnelle fusionnel adj f s 0.01 0.2 0.01 0.07 +fusionnement fusionnement nom m s 0.01 0 0.01 0 +fusionnent fusionner ver 2.36 0.34 0.4 0.14 ind:pre:3p; +fusionner fusionner ver 2.36 0.34 1.01 0 inf; +fusionneraient fusionner ver 2.36 0.34 0.01 0 cnd:pre:3p; +fusionnerait fusionner ver 2.36 0.34 0.01 0 cnd:pre:3s; +fusionneront fusionner ver 2.36 0.34 0.04 0 ind:fut:3p; +fusionnons fusionner ver 2.36 0.34 0.29 0 imp:pre:1p; +fusionné fusionner ver m s 2.36 0.34 0.28 0.07 par:pas; +fusionnés fusionner ver m p 2.36 0.34 0.03 0 par:pas; +fusions fusion nom f p 6.64 5.95 0.36 0.2 +fusse être aux 8074.24 6501.82 0.02 1.69 sub:imp:1s; +fussent être aux 8074.24 6501.82 0.3 15.88 sub:imp:3p; +fusses être aux 8074.24 6501.82 0.01 0.07 sub:imp:2s; +fussiez être aux 8074.24 6501.82 0 0.07 sub:imp:2p; +fussions être aux 8074.24 6501.82 0 0.95 sub:imp:1p; +fustanelle fustanelle nom f s 0 0.07 0 0.07 +fustigation fustigation nom f s 0.01 0.14 0.01 0 +fustigations fustigation nom f p 0.01 0.14 0 0.14 +fustige fustiger ver 0.51 1.22 0.03 0.14 imp:pre:2s;ind:pre:3s; +fustigea fustiger ver 0.51 1.22 0 0.14 ind:pas:3s; +fustigeaient fustiger ver 0.51 1.22 0 0.07 ind:imp:3p; +fustigeais fustiger ver 0.51 1.22 0.01 0.07 ind:imp:1s; +fustigeait fustiger ver 0.51 1.22 0 0.07 ind:imp:3s; +fustigeant fustiger ver 0.51 1.22 0.01 0.07 par:pre; +fustiger fustiger ver 0.51 1.22 0.05 0.41 inf; +fustigez fustiger ver 0.51 1.22 0.1 0 imp:pre:2p; +fustigé fustiger ver m s 0.51 1.22 0.14 0.07 par:pas; +fustigée fustiger ver f s 0.51 1.22 0.14 0.14 par:pas; +fustigés fustiger ver m p 0.51 1.22 0.03 0.07 par:pas; +fusèrent fuser ver 1.24 10.14 0 1.35 ind:pas:3p; +fusé fuser ver m s 1.24 10.14 0.03 0.61 par:pas; +fusée fusée nom f s 10.09 9.26 6 4.59 +fusées fusée nom f p 10.09 9.26 4.08 4.66 +fut être aux 8074.24 6501.82 32.92 180.41 ind:pas:3s; +futaie futaie nom f s 0.02 5.27 0 2.5 +futaies futaie nom f p 0.02 5.27 0.02 2.77 +futaille futaille nom f s 0 1.69 0 0.88 +futailles futaille nom f p 0 1.69 0 0.81 +futaine futaine nom f s 0.1 0 0.1 0 +futal futal nom m s 0.72 0.54 0.68 0.47 +futals futal nom m p 0.72 0.54 0.04 0.07 +futile futile adj s 2.94 8.31 2.23 4.86 +futilement futilement adv 0 0.14 0 0.14 +futiles futile adj p 2.94 8.31 0.71 3.45 +futilité futilité nom f s 0.65 3.51 0.22 2.23 +futilités futilité nom f p 0.65 3.51 0.43 1.28 +futon futon nom m s 0.32 0 0.28 0 +futons futon nom m p 0.32 0 0.03 0 +futur futur nom m s 26.33 11.89 25.73 10.61 +future futur adj f s 23.2 36.35 7.5 9.86 +futures futur adj f p 23.2 36.35 2.51 5.81 +futurisme futurisme nom m s 0 0.07 0 0.07 +futuriste futuriste adj s 0.59 0.47 0.36 0.41 +futuristes futuriste adj p 0.59 0.47 0.23 0.07 +futurologue futurologue nom s 0.1 0 0.1 0 +futurs futur adj m p 23.2 36.35 3.79 6.76 +futé futé adj m s 9.23 1.89 5.96 1.28 +futée futé adj f s 9.23 1.89 1.74 0.27 +futées futé adj f p 9.23 1.89 0.55 0.14 +futés futé adj m p 9.23 1.89 0.97 0.2 +fuyaient fuir ver 76.82 76.42 0.44 4.73 ind:imp:3p; +fuyais fuir ver 76.82 76.42 1.52 1.22 ind:imp:1s;ind:imp:2s; +fuyait fuir ver 76.82 76.42 1.27 8.65 ind:imp:3s; +fuyant fuir ver 76.82 76.42 1.54 5.2 par:pre; +fuyante fuyant adj f s 1.09 8.31 0.19 2.91 +fuyantes fuyant adj f p 1.09 8.31 0.11 0.47 +fuyants fuyant adj m p 1.09 8.31 0.11 1.01 +fuyard fuyard nom m s 1.15 4.73 0.4 1.15 +fuyarde fuyard adj f s 0.04 0.47 0.01 0.14 +fuyards fuyard nom m p 1.15 4.73 0.75 3.45 +fuyez fuir ver 76.82 76.42 4.78 0.47 imp:pre:2p;ind:pre:2p; +fuyiez fuir ver 76.82 76.42 0.26 0 ind:imp:2p;sub:pre:2p; +fuyions fuir ver 76.82 76.42 0.18 0.47 ind:imp:1p; +fuyons fuir ver 76.82 76.42 3.23 0.74 imp:pre:1p;ind:pre:1p; +fuégien fuégien nom m s 0 0.07 0 0.07 +fy fy nom m s 0.01 0 0.01 0 +fâcha fâcher ver 46.63 21.96 0.04 1.42 ind:pas:3s; +fâchai fâcher ver 46.63 21.96 0 0.07 ind:pas:1s; +fâchaient fâcher ver 46.63 21.96 0.01 0.27 ind:imp:3p; +fâchais fâcher ver 46.63 21.96 0.01 0.07 ind:imp:1s; +fâchait fâcher ver 46.63 21.96 0.04 1.01 ind:imp:3s; +fâche fâcher ver 46.63 21.96 11.69 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fâchent fâcher ver 46.63 21.96 0.1 0.2 ind:pre:3p; +fâcher fâcher ver 46.63 21.96 5.08 4.05 inf; +fâchera fâcher ver 46.63 21.96 0.49 0.07 ind:fut:3s; +fâcherai fâcher ver 46.63 21.96 0.43 0.07 ind:fut:1s; +fâcherais fâcher ver 46.63 21.96 0.02 0 cnd:pre:1s;cnd:pre:2s; +fâcherait fâcher ver 46.63 21.96 0.28 0.2 cnd:pre:3s; +fâcheras fâcher ver 46.63 21.96 0.16 0.07 ind:fut:2s; +fâcherie fâcherie nom f s 0.14 0.47 0.14 0.2 +fâcheries fâcherie nom f p 0.14 0.47 0 0.27 +fâcheront fâcher ver 46.63 21.96 0.01 0 ind:fut:3p; +fâches fâcher ver 46.63 21.96 1.6 0.34 ind:pre:2s; +fâcheuse fâcheux adj f s 3.79 8.85 0.8 2.7 +fâcheusement fâcheusement adv 0.03 0.88 0.03 0.88 +fâcheuses fâcheux adj f p 3.79 8.85 0.85 1.76 +fâcheux fâcheux adj m 3.79 8.85 2.13 4.39 +fâchez fâcher ver 46.63 21.96 2.25 0.74 imp:pre:2p;ind:pre:2p; +fâchiez fâcher ver 46.63 21.96 0.01 0 ind:imp:2p; +fâchions fâcher ver 46.63 21.96 0.1 0 ind:imp:1p; +fâchons fâcher ver 46.63 21.96 0.05 0 imp:pre:1p; +fâchèrent fâcher ver 46.63 21.96 0 0.14 ind:pas:3p; +fâché fâcher ver m s 46.63 21.96 12.81 4.73 par:pas; +fâchée fâcher ver f s 46.63 21.96 8.9 2.16 par:pas; +fâchées fâcher ver f p 46.63 21.96 0.43 0.2 par:pas; +fâchés fâcher ver m p 46.63 21.96 2.13 1.08 par:pas; +fèces fèces nom f p 0.32 0.2 0.32 0.2 +fère fer nom f s 37.08 114.19 0.02 0.2 +fève fève nom f s 1.12 1.89 0.44 0.61 +fèves fève nom f p 1.12 1.89 0.68 1.28 +féal féal adj m s 0.01 0.2 0.01 0.14 +féaux féal adj m p 0.01 0.2 0 0.07 +fébrile fébrile adj s 0.98 7.16 0.94 5.27 +fébrilement fébrilement adv 0.24 4.53 0.24 4.53 +fébriles fébrile adj p 0.98 7.16 0.05 1.89 +fébrilité fébrilité nom f s 0.01 2.36 0.01 2.36 +fécal fécal adj m s 0.27 0.88 0.05 0.27 +fécale fécal adj f s 0.27 0.88 0.06 0.47 +fécales fécal adj f p 0.27 0.88 0.13 0.07 +fécalome fécalome nom m s 0.01 0 0.01 0 +fécaux fécal adj m p 0.27 0.88 0.03 0.07 +fécond fécond adj m s 0.94 3.92 0.04 0.68 +fécondais féconder ver 1.46 3.04 0 0.07 ind:imp:1s; +fécondait féconder ver 1.46 3.04 0 0.2 ind:imp:3s; +fécondant féconder ver 1.46 3.04 0.1 0 par:pre; +fécondante fécondant adj f s 0 0.2 0 0.07 +fécondateur fécondateur nom m s 0.1 0 0.1 0 +fécondation fécondation nom f s 0.42 0.74 0.41 0.47 +fécondations fécondation nom f p 0.42 0.74 0.01 0.27 +féconde fécond adj f s 0.94 3.92 0.73 2.09 +fécondent féconder ver 1.46 3.04 0.01 0.14 ind:pre:3p; +féconder féconder ver 1.46 3.04 0.49 0.88 inf; +féconderai féconder ver 1.46 3.04 0.01 0 ind:fut:1s; +féconderait féconder ver 1.46 3.04 0.01 0.07 cnd:pre:3s; +fécondes féconder ver 1.46 3.04 0.1 0 ind:pre:2s; +fécondez féconder ver 1.46 3.04 0.02 0 imp:pre:2p; +fécondité fécondité nom f s 0.44 2.03 0.44 2.03 +féconds fécond adj m p 0.94 3.92 0.1 0.34 +fécondé féconder ver m s 1.46 3.04 0.28 0.68 par:pas; +fécondée féconder ver f s 1.46 3.04 0.28 0.47 par:pas; +fécondées féconder ver f p 1.46 3.04 0.02 0.14 par:pas; +fécondés féconder ver m p 1.46 3.04 0.03 0.07 par:pas; +fécule fécule nom f s 0.17 0.07 0.17 0.07 +féculent féculent nom m s 0.2 0.34 0.02 0 +féculents féculent nom m p 0.2 0.34 0.18 0.34 +fédéral fédéral adj m s 13.92 1.76 6.94 0.68 +fédérale fédéral adj f s 13.92 1.76 4.56 0.81 +fédérales fédéral adj f p 13.92 1.76 0.88 0.07 +fédéralisme fédéralisme nom m s 0.14 0.07 0.14 0.07 +fédéraliste fédéraliste adj s 0.03 0 0.03 0 +fédérateur fédérateur adj m s 0.03 0 0.03 0 +fédération fédération nom f s 2.56 2.36 2.56 2.23 +fédérations fédération nom f p 2.56 2.36 0 0.14 +fédérative fédératif adj f s 0 0.07 0 0.07 +fédératrice fédérateur nom f s 0.01 0.07 0.01 0 +fédéraux fédéral nom m p 4.25 0.14 3.91 0.07 +fédérer fédérer ver 0.09 0.2 0 0.07 inf; +fédéré fédéré nom m s 0.15 0.34 0.01 0.07 +fédérée fédéré adj f s 0.03 0.34 0.01 0.07 +fédérées fédéré adj f p 0.03 0.34 0 0.07 +fédérés fédéré nom m p 0.15 0.34 0.14 0.27 +fée fée nom f s 15.32 11.35 8.3 6.62 +féerie féerie nom f s 0.46 3.72 0.46 3.18 +féeries féerie nom f p 0.46 3.72 0 0.54 +féerique féerique adj s 0.46 3.18 0.42 2.36 +féeriquement féeriquement adv 0 0.27 0 0.27 +féeriques féerique adj p 0.46 3.18 0.04 0.81 +fées fée nom f p 15.32 11.35 7.01 4.73 +félibre félibre nom m s 0 0.27 0 0.07 +félibres félibre nom m p 0 0.27 0 0.2 +félibrige félibrige nom m s 0.14 0.14 0.14 0.14 +félicita féliciter ver 15.72 24.66 0.01 3.24 ind:pas:3s; +félicitai féliciter ver 15.72 24.66 0.01 0.81 ind:pas:1s; +félicitaient féliciter ver 15.72 24.66 0.02 0.88 ind:imp:3p; +félicitais féliciter ver 15.72 24.66 0.05 1.01 ind:imp:1s; +félicitait féliciter ver 15.72 24.66 0.11 2.77 ind:imp:3s; +félicitant féliciter ver 15.72 24.66 0.06 0.47 par:pre; +félicitation félicitation nom f s 60.08 5.07 0.84 0 +félicitations félicitation nom f p 60.08 5.07 59.23 5.07 +félicite féliciter ver 15.72 24.66 5.46 4.8 imp:pre:2s;ind:pre:1s;ind:pre:3s; +félicitent féliciter ver 15.72 24.66 0.17 0.34 ind:pre:3p; +féliciter féliciter ver 15.72 24.66 7.1 6.15 inf;;inf;;inf;; +félicitera féliciter ver 15.72 24.66 0.06 0.07 ind:fut:3s; +féliciterai féliciter ver 15.72 24.66 0.21 0.07 ind:fut:1s; +féliciteraient féliciter ver 15.72 24.66 0.01 0.07 cnd:pre:3p; +féliciterais féliciter ver 15.72 24.66 0.01 0 cnd:pre:1s; +féliciterait féliciter ver 15.72 24.66 0 0.2 cnd:pre:3s; +féliciteras féliciter ver 15.72 24.66 0.01 0 ind:fut:2s; +féliciteriez féliciter ver 15.72 24.66 0 0.07 cnd:pre:2p; +félicitez féliciter ver 15.72 24.66 0.38 0.2 imp:pre:2p;ind:pre:2p; +félicitiez féliciter ver 15.72 24.66 0 0.07 ind:imp:2p; +félicitions féliciter ver 15.72 24.66 0 0.27 ind:imp:1p; +félicitons féliciter ver 15.72 24.66 0.37 0.34 imp:pre:1p;ind:pre:1p; +félicitâmes féliciter ver 15.72 24.66 0 0.07 ind:pas:1p; +félicitèrent féliciter ver 15.72 24.66 0 0.54 ind:pas:3p; +félicité félicité nom f s 2.12 3.38 2.1 2.97 +félicitée féliciter ver f s 15.72 24.66 0.07 0.41 par:pas; +félicités féliciter ver m p 15.72 24.66 0.25 0.14 par:pas; +félidé félidé nom m s 0 0.07 0 0.07 +félin félin nom m s 0.35 1.08 0.26 0.88 +féline félin adj f s 0.34 2.09 0.2 1.22 +félinement félinement adv 0 0.07 0 0.07 +félines félin adj f p 0.34 2.09 0.03 0.27 +félinité félinité nom f s 0.01 0 0.01 0 +félins félin nom m p 0.35 1.08 0.09 0.2 +félon félon nom m s 0.5 0.27 0.33 0.27 +félonie félonie nom f s 0.17 0.34 0.17 0.34 +félonne félon adj f s 0.09 0.2 0.01 0 +félons félon nom m p 0.5 0.27 0.17 0 +féminin féminin adj m s 16.88 32.91 7.51 11.28 +féminine féminin adj f s 16.88 32.91 6.5 13.38 +féminines féminin adj f p 16.88 32.91 0.98 3.92 +féminins féminin adj m p 16.88 32.91 1.89 4.32 +féminisaient féminiser ver 0 0.2 0 0.07 ind:imp:3p; +féminisation féminisation nom f s 0.01 0 0.01 0 +féminiser féminiser ver 0 0.2 0 0.07 inf; +féminisme féminisme nom m s 0.46 0.41 0.46 0.41 +féministe féministe adj s 1.12 2.03 0.79 1.62 +féministes féministe nom p 1.42 1.15 0.7 0.81 +féminisé féminiser ver m s 0 0.2 0 0.07 par:pas; +féminitude féminitude nom f s 0 0.07 0 0.07 +féminité féminité nom f s 1.87 4.8 1.87 4.73 +féminités féminité nom f p 1.87 4.8 0 0.07 +fémoral fémoral adj m s 0.94 0.34 0.11 0 +fémorale fémoral adj f s 0.94 0.34 0.59 0.2 +fémorales fémoral adj f p 0.94 0.34 0.01 0.14 +fémoraux fémoral adj m p 0.94 0.34 0.23 0 +fémur fémur nom m s 1.48 0.81 1.42 0.61 +fémurs fémur nom m p 1.48 0.81 0.06 0.2 +fénelonienne fénelonien adj f s 0 0.07 0 0.07 +féodal féodal adj m s 0.38 2.7 0.13 1.22 +féodale féodal adj f s 0.38 2.7 0.1 0.61 +féodales féodal adj f p 0.38 2.7 0.11 0.2 +féodalisme féodalisme nom m s 0.02 0.14 0.02 0.14 +féodalité féodalité nom f s 0.02 0.27 0.02 0.27 +féodaux féodal adj m p 0.38 2.7 0.04 0.68 +féra féra nom f s 0 0.14 0 0.07 +féras féra nom f p 0 0.14 0 0.07 +féria féria nom f s 0.8 0.34 0.8 0.2 +férias féria nom f p 0.8 0.34 0 0.14 +férir férir ver 0.04 0.88 0.04 0.88 inf; +férié férié adj m s 0.97 1.82 0.52 0.81 +fériés férié adj m p 0.97 1.82 0.46 1.01 +féroce féroce adj s 6.33 16.22 4.39 12.3 +férocement férocement adv 0.62 2.97 0.62 2.97 +féroces féroce adj p 6.33 16.22 1.94 3.92 +férocité férocité nom f s 1.2 3.85 1.2 3.72 +férocités férocité nom f p 1.2 3.85 0 0.14 +féru féru adj m s 0.3 1.96 0.23 0.81 +férue féru adj f s 0.3 1.96 0.03 0.27 +férues féru adj f p 0.3 1.96 0 0.07 +férule férule nom f s 0.07 1.01 0.07 1.01 +férus féru adj m p 0.3 1.96 0.05 0.81 +fétiche fétiche nom m s 1.48 5.27 1.03 4.39 +fétiches fétiche nom m p 1.48 5.27 0.45 0.88 +féticheur féticheur nom m s 0.01 0.47 0 0.2 +féticheurs féticheur nom m p 0.01 0.47 0.01 0.27 +fétichisations fétichisation nom f p 0 0.07 0 0.07 +fétichisme fétichisme nom m s 0.64 0.54 0.63 0.54 +fétichismes fétichisme nom m p 0.64 0.54 0.01 0 +fétichiste fétichiste nom s 0.43 0.27 0.4 0.14 +fétichistes fétichiste nom p 0.43 0.27 0.04 0.14 +fétide fétide adj s 1.18 2.7 1.1 2.23 +fétides fétide adj p 1.18 2.7 0.08 0.47 +fétidité fétidité nom f s 0 0.34 0 0.34 +fétu fétu nom m s 0.2 1.69 0.17 0.81 +fétuque fétuque nom f s 0.01 0.07 0.01 0.07 +fétus fétu nom m p 0.2 1.69 0.03 0.88 +féveroles féverole nom f p 0 0.14 0 0.14 +février février nom m 8.03 22.5 8.03 22.5 +fêla fêler ver 1.74 1.89 0 0.14 ind:pas:3s; +fêlant fêler ver 1.74 1.89 0 0.07 par:pre; +fêle fêle nom f s 0.1 0 0.1 0 +fêler fêler ver 1.74 1.89 0.14 0.27 inf; +fêles fêler ver 1.74 1.89 0 0.07 ind:pre:2s; +fêlure fêlure nom f s 0.26 1.76 0.23 1.55 +fêlures fêlure nom f p 0.26 1.76 0.03 0.2 +fêlé fêler ver m s 1.74 1.89 0.84 0.68 par:pas; +fêlée fêler ver f s 1.74 1.89 0.5 0.47 par:pas; +fêlées fêler ver f p 1.74 1.89 0.16 0 par:pas; +fêlés fêlé nom m p 1 0.41 0.36 0.14 +fêta fêter ver 36.97 16.01 0.34 0.34 ind:pas:3s; +fêtaient fêter ver 36.97 16.01 0.12 0.47 ind:imp:3p; +fêtait fêter ver 36.97 16.01 0.93 1.08 ind:imp:3s; +fêtant fêter ver 36.97 16.01 0.05 0.2 par:pre; +fêtard fêtard nom m s 0.77 1.22 0.34 0.2 +fêtards fêtard nom m p 0.77 1.22 0.42 1.01 +fête fête nom f s 155.97 94.05 138.03 70.41 +fête_dieu fête_dieu nom f s 0.14 0.54 0.14 0.54 +fêtent fêter ver 36.97 16.01 0.95 0.41 ind:pre:3p; +fêter fêter ver 36.97 16.01 20.03 7.7 inf; +fêtera fêter ver 36.97 16.01 1.06 0.2 ind:fut:3s; +fêterait fêter ver 36.97 16.01 0.05 0.2 cnd:pre:3s; +fêterons fêter ver 36.97 16.01 0.6 0.41 ind:fut:1p; +fêtes fête nom f p 155.97 94.05 17.94 23.65 +fêtez fêter ver 36.97 16.01 1.02 0.14 imp:pre:2p;ind:pre:2p; +fêtions fêter ver 36.97 16.01 0.22 0.14 ind:imp:1p; +fêtons fêter ver 36.97 16.01 2.34 0.34 imp:pre:1p;ind:pre:1p; +fêtâmes fêter ver 36.97 16.01 0 0.07 ind:pas:1p; +fêtèrent fêter ver 36.97 16.01 0 0.2 ind:pas:3p; +fêté fêter ver m s 36.97 16.01 1.67 1.82 par:pas; +fêtée fêter ver f s 36.97 16.01 0.22 0.27 par:pas; +fêtés fêter ver m p 36.97 16.01 0.13 0.14 par:pas; +fîmes faire ver_sup 8813.48 5328.99 0.29 5.47 ind:pas:1p; +fît faire ver_sup 8813.48 5328.99 0.46 14.19 sub:imp:3s; +fîtes faire ver_sup 8813.48 5328.99 0.38 0.07 ind:pas:2p; +fûmes être aux 8074.24 6501.82 0.72 4.05 ind:pas:1p; +fût être aux 8074.24 6501.82 2.16 54.66 sub:imp:3s; +fûtes être aux 8074.24 6501.82 0.14 0.27 ind:pas:2p; +fûts fût nom m p 2.58 17.3 1.01 3.24 +führer führer nom m s 23.86 4.59 23.84 4.59 +führers führer nom m p 23.86 4.59 0.02 0 +g g nom_sup m 10.92 4.66 10.92 4.66 +gaba gaba nom m s 0.01 0 0.01 0 +gabardine gabardine nom f s 0.25 3.45 0.23 3.11 +gabardines gabardine nom f p 0.25 3.45 0.03 0.34 +gabare gabare nom f s 0.1 0.2 0.1 0.2 +gabariers gabarier nom m p 0 0.07 0 0.07 +gabarit gabarit nom m s 0.33 1.82 0.3 1.62 +gabarits gabarit nom m p 0.33 1.82 0.03 0.2 +gabarres gabarre nom f p 0 0.07 0 0.07 +gabbro gabbro nom m s 0.01 0 0.01 0 +gabe gaber ver 1.01 0 1.01 0 imp:pre:2s;ind:pre:1s; +gabegie gabegie nom f s 0.04 0.34 0.04 0.34 +gabelle gabelle nom f s 0.02 0.07 0.02 0.07 +gabelou gabelou nom m s 0 0.07 0 0.07 +gabier gabier nom m s 0.13 0.34 0.09 0.2 +gabiers gabier nom m p 0.13 0.34 0.04 0.14 +gabion gabion nom m s 0 0.2 0 0.07 +gabions gabion nom m p 0 0.2 0 0.14 +gable gable nom m s 0.14 0.27 0.01 0.14 +gables gable nom m p 0.14 0.27 0.14 0.14 +gabonais gabonais nom m 0 0.34 0 0.34 +gabonaise gabonais adj f s 0 0.27 0 0.07 +gade gade nom m s 0 0.07 0 0.07 +gadget gadget nom m s 2.8 1.62 1.31 0.41 +gadgets gadget nom m p 2.8 1.62 1.5 1.22 +gadin gadin nom m s 0.12 0.68 0.12 0.54 +gadins gadin nom m p 0.12 0.68 0 0.14 +gadjo gadjo nom m s 0.54 0 0.54 0 +gadolinium gadolinium nom m s 0.01 0 0.01 0 +gadoue gadoue nom f s 0.37 4.93 0.37 2.36 +gadoues gadoue nom f p 0.37 4.93 0 2.57 +gadouille gadouille nom f s 0 0.47 0 0.47 +gaffa gaffer ver 5.2 5.88 0 0.07 ind:pas:3s; +gaffaient gaffer ver 5.2 5.88 0 0.07 ind:imp:3p; +gaffais gaffer ver 5.2 5.88 0 0.07 ind:imp:1s; +gaffait gaffer ver 5.2 5.88 0 0.27 ind:imp:3s; +gaffant gaffer ver 5.2 5.88 0 0.2 par:pre; +gaffe gaffe nom f s 34.68 20.47 33.92 17.57 +gaffent gaffer ver 5.2 5.88 0.01 0.27 ind:pre:3p; +gaffer gaffer ver 5.2 5.88 0.07 1.55 inf; +gafferai gaffer ver 5.2 5.88 0 0.07 ind:fut:1s; +gaffes gaffe nom f p 34.68 20.47 0.76 2.91 +gaffeur gaffeur nom m s 0.1 0.14 0.08 0.07 +gaffeurs gaffeur nom m p 0.1 0.14 0.01 0.07 +gaffeuse gaffeur nom f s 0.1 0.14 0.01 0 +gaffeuses gaffeur adj f p 0.04 0.27 0 0.07 +gaffez gaffer ver 5.2 5.88 0.11 0 imp:pre:2p; +gaffé gaffer ver m s 5.2 5.88 0.35 0.61 par:pas; +gaffée gaffer ver f s 5.2 5.88 0 0.14 par:pas; +gaffés gaffer ver m p 5.2 5.88 0 0.07 par:pas; +gag gag nom m s 3.03 1.28 2.41 1.08 +gaga gaga adj 0.61 1.01 0.58 0.88 +gagas gaga adj p 0.61 1.01 0.02 0.14 +gage gage nom m s 15.31 6.76 9.24 4.05 +gageaient gager ver 1.87 1.42 0 0.14 ind:imp:3p; +gageons gager ver 1.87 1.42 0.17 0.41 imp:pre:1p; +gager gager ver 1.87 1.42 0.34 0.07 inf; +gagerai gager ver 1.87 1.42 0.01 0 ind:fut:1s; +gagerais gager ver 1.87 1.42 0.15 0.2 cnd:pre:1s; +gages gage nom m p 15.31 6.76 6.06 2.7 +gageure gageure nom f s 0.49 1.28 0.35 1.28 +gageures gageure nom f p 0.49 1.28 0.14 0 +gagez gager ver 1.87 1.42 0.02 0 imp:pre:2p; +gagna gagner ver 294.44 180.88 0.78 12.77 ind:pas:3s; +gagnage gagnage nom m s 0 0.2 0 0.14 +gagnages gagnage nom m p 0 0.2 0 0.07 +gagnai gagner ver 294.44 180.88 0 2.23 ind:pas:1s; +gagnaient gagner ver 294.44 180.88 0.74 3.99 ind:imp:3p; +gagnais gagner ver 294.44 180.88 2.11 1.76 ind:imp:1s;ind:imp:2s; +gagnait gagner ver 294.44 180.88 2.96 14.12 ind:imp:3s; +gagnant gagnant nom m s 12.56 1.76 8.45 1.35 +gagnante gagnant nom f s 12.56 1.76 1.34 0.14 +gagnantes gagnant nom f p 12.56 1.76 0.1 0 +gagnants gagnant nom m p 12.56 1.76 2.68 0.27 +gagne gagner ver 294.44 180.88 53.39 19.66 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +gagne_pain gagne_pain nom m 2.01 1.82 2.01 1.82 +gagne_petit gagne_petit nom m 0.16 0.68 0.16 0.68 +gagnent gagner ver 294.44 180.88 7.02 4.05 ind:pre:3p; +gagner gagner ver 294.44 180.88 92.72 64.59 inf;; +gagnera gagner ver 294.44 180.88 5.08 1.49 ind:fut:3s; +gagnerai gagner ver 294.44 180.88 2.14 0.41 ind:fut:1s; +gagneraient gagner ver 294.44 180.88 0.34 0.34 cnd:pre:3p; +gagnerais gagner ver 294.44 180.88 1.52 0.61 cnd:pre:1s;cnd:pre:2s; +gagnerait gagner ver 294.44 180.88 1.95 1.69 cnd:pre:3s; +gagneras gagner ver 294.44 180.88 2.56 0.74 ind:fut:2s; +gagnerez gagner ver 294.44 180.88 2.09 0.68 ind:fut:2p; +gagneriez gagner ver 294.44 180.88 0.38 0 cnd:pre:2p; +gagnerions gagner ver 294.44 180.88 0.28 0 cnd:pre:1p; +gagnerons gagner ver 294.44 180.88 1.37 0.27 ind:fut:1p; +gagneront gagner ver 294.44 180.88 0.82 0.61 ind:fut:3p; +gagnes gagner ver 294.44 180.88 11.04 1.76 ind:pre:2s;sub:pre:2s; +gagneur gagneur nom m s 0.78 0.74 0.04 0 +gagneurs gagneur nom m p 0.78 0.74 0.05 0.07 +gagneuse gagneur nom f s 0.78 0.74 0.67 0.54 +gagneuses gagneur nom f p 0.78 0.74 0.02 0.14 +gagnez gagner ver 294.44 180.88 7.04 0.41 imp:pre:2p;ind:pre:2p; +gagniez gagner ver 294.44 180.88 0.38 0.07 ind:imp:2p; +gagnions gagner ver 294.44 180.88 0.12 0.41 ind:imp:1p; +gagnons gagner ver 294.44 180.88 1.74 0.88 imp:pre:1p;ind:pre:1p; +gagnâmes gagner ver 294.44 180.88 0 0.41 ind:pas:1p; +gagnât gagner ver 294.44 180.88 0 0.34 sub:imp:3s; +gagnèrent gagner ver 294.44 180.88 0.09 3.11 ind:pas:3p; +gagné gagner ver m s 294.44 180.88 89.92 33.51 par:pas; +gagnée gagner ver f s 294.44 180.88 2.85 4.46 par:pas; +gagnées gagner ver f p 294.44 180.88 0.29 0.88 par:pas; +gagnés gagner ver m p 294.44 180.88 1.02 1.76 par:pas; +gags gag nom m p 3.03 1.28 0.61 0.2 +gagé gager ver m s 1.87 1.42 0.16 0 par:pas; +gagée gager ver f s 1.87 1.42 0.02 0 par:pas; +gai gai adj m s 20 41.76 10.74 22.64 +gaie gai adj f s 20 41.76 6.58 12.7 +gaiement gaiement adv 2.58 16.22 2.58 16.22 +gaies gai adj f p 20 41.76 0.88 2.3 +gaieté gaieté nom f s 2.81 27.36 2.81 27.09 +gaietés gaieté nom f p 2.81 27.36 0 0.27 +gail gail nom f s 0 0.61 0 0.61 +gaillard gaillard nom m s 3.4 10.34 2.47 7.3 +gaillarde gaillard adj f s 0.95 3.18 0.25 0.68 +gaillardement gaillardement adv 0.1 0.95 0.1 0.95 +gaillardes gaillard adj f p 0.95 3.18 0.14 0.47 +gaillardise gaillardise nom f s 0 0.14 0 0.14 +gaillards gaillard nom m p 3.4 10.34 0.9 2.64 +gaillet gaillet nom m s 0.01 0.07 0.01 0.07 +gaillette gaillette nom f s 0 0.2 0 0.14 +gaillettes gaillette nom f p 0 0.2 0 0.07 +gain gain nom m s 5.6 5.88 2.58 4.32 +gainaient gainer ver 0.08 3.11 0 0.07 ind:imp:3p; +gainait gainer ver 0.08 3.11 0 0.14 ind:imp:3s; +gaine gaine nom f s 2.15 3.85 1.16 3.11 +gaine_culotte gaine_culotte nom f s 0.01 0.07 0.01 0.07 +gainent gainer ver 0.08 3.11 0 0.07 ind:pre:3p; +gainer gainer ver 0.08 3.11 0.05 0 inf; +gaines gaine nom f p 2.15 3.85 0.99 0.74 +gainiers gainier nom m p 0 0.07 0 0.07 +gains gain nom m p 5.6 5.88 3.02 1.55 +gainé gainer ver m s 0.08 3.11 0 0.74 par:pas; +gainée gainer ver f s 0.08 3.11 0.01 0.68 par:pas; +gainées gainer ver f p 0.08 3.11 0.01 0.95 par:pas; +gainés gainer ver m p 0.08 3.11 0.01 0.47 par:pas; +gais gai adj m p 20 41.76 1.81 4.12 +gal gal adv 1.18 0 1.18 0 +gala gala nom m s 3.9 3.65 3.31 2.97 +galactique galactique adj s 1.13 0.14 0.94 0.07 +galactiques galactique adj p 1.13 0.14 0.19 0.07 +galactophore galactophore adj s 0.01 0 0.01 0 +galago galago nom m s 0.02 0 0.02 0 +galalithe galalithe nom f s 0 0.2 0 0.2 +galamment galamment adv 0.07 1.22 0.07 1.22 +galant galant adj m s 5.39 5.81 4.66 2.77 +galante galant adj f s 5.39 5.81 0.11 1.28 +galanterie galanterie nom f s 1.14 2.5 1 1.82 +galanteries galanterie nom f p 1.14 2.5 0.13 0.68 +galantes galant adj f p 5.39 5.81 0.16 1.08 +galantine galantine nom f s 0.01 0.88 0.01 0.74 +galantines galantine nom f p 0.01 0.88 0 0.14 +galantins galantin nom m p 0.01 0.14 0.01 0.14 +galantisait galantiser ver 0 0.14 0 0.07 ind:imp:3s; +galantisé galantiser ver m s 0 0.14 0 0.07 par:pas; +galants galant adj m p 5.39 5.81 0.48 0.68 +galapiat galapiat nom m s 0.01 0.27 0.01 0.14 +galapiats galapiat nom m p 0.01 0.27 0 0.14 +galas gala nom m p 3.9 3.65 0.59 0.68 +galate galate nom s 0.05 0 0.01 0 +galates galate nom p 0.05 0 0.04 0 +galathée galathée nom f s 0 0.07 0 0.07 +galaxie galaxie nom f s 9.53 4.12 8.29 2.16 +galaxies galaxie nom f p 9.53 4.12 1.23 1.96 +galbait galber ver 0.1 0.47 0 0.07 ind:imp:3s; +galbe galbe nom m s 0.06 1.28 0.05 1.08 +galber galber ver 0.1 0.47 0 0.07 inf; +galbes galbe nom m p 0.06 1.28 0.01 0.2 +galbé galbé adj m s 0.04 0.74 0 0.2 +galbée galbé adj f s 0.04 0.74 0.02 0.14 +galbées galbé adj f p 0.04 0.74 0.01 0.27 +galbés galber ver m p 0.1 0.47 0.1 0 par:pas; +gale gale nom f s 3.52 0.47 3.5 0.47 +galerie galerie nom f s 15.69 32.16 13.64 21.22 +galerie_refuge galerie_refuge nom f s 0 0.14 0 0.07 +galeries galerie nom f p 15.69 32.16 2.05 10.95 +galerie_refuge galerie_refuge nom f p 0 0.14 0 0.07 +galeriste galeriste nom s 0.1 0 0.1 0 +galernes galerne nom f p 0 0.07 0 0.07 +gales gale nom f p 3.52 0.47 0.03 0 +galet galet nom m s 1.18 15.74 0.54 2.7 +galetas galetas nom m 0.14 1.28 0.14 1.28 +galetouse galetouse nom f s 0 0.2 0 0.2 +galets galet nom m p 1.18 15.74 0.65 13.04 +galette galette nom f s 1.86 6.42 0.67 4.26 +galettes galette nom f p 1.86 6.42 1.19 2.16 +galetteux galetteux adj m 0 0.14 0 0.14 +galeuse galeux adj f s 2.09 3.18 0.88 1.22 +galeuses galeux adj f p 2.09 3.18 0.24 0.41 +galeux galeux adj m 2.09 3.18 0.97 1.55 +galibot galibot nom m s 0 0.14 0 0.07 +galibots galibot nom m p 0 0.14 0 0.07 +galicien galicien nom m s 0.34 0.07 0.34 0 +galiciennes galicien adj f p 0 0.07 0 0.07 +galiciens galicien nom m p 0.34 0.07 0 0.07 +galiléen galiléen nom m s 0.06 0 0.06 0 +galimatias galimatias nom m 0.11 0.47 0.11 0.47 +galion galion nom m s 0.23 1.15 0.21 0.81 +galions galion nom m p 0.23 1.15 0.03 0.34 +galiote galiote nom f s 0 0.54 0 0.34 +galiotes galiote nom f p 0 0.54 0 0.2 +galipette galipette nom f s 0.86 1.55 0.21 0.34 +galipettes galipette nom f p 0.86 1.55 0.65 1.22 +gallant galler ver 0.47 0.2 0.47 0.2 par:pre; +galle galle nom f s 0.02 0.2 0 0.07 +galles galle nom f p 0.02 0.2 0.02 0.14 +gallicanes gallican adj f p 0 0.07 0 0.07 +gallicanisme gallicanisme nom m s 0 0.14 0 0.14 +gallinacé gallinacé nom m s 0 0.14 0 0.14 +galline galline adj f s 0.27 0 0.27 0 +gallique gallique adj f s 0 0.07 0 0.07 +gallium gallium nom m s 0.06 0.07 0.06 0.07 +gallo gallo adj s 1.54 0.14 1.54 0.07 +gallo_romain gallo_romain adj m s 0 0.14 0 0.07 +gallo_romain gallo_romain adj m p 0 0.14 0 0.07 +gallois gallois adj m 0.65 0.14 0.49 0.07 +galloise gallois adj f s 0.65 0.14 0.12 0.07 +galloises gallois adj f p 0.65 0.14 0.04 0 +gallon gallon nom m s 0.63 0.68 0.18 0.07 +gallons gallon nom m p 0.63 0.68 0.45 0.61 +gallos gallo adj p 1.54 0.14 0 0.07 +galoche galoche nom f s 0.09 6.62 0 1.69 +galoches galoche nom f p 0.09 6.62 0.09 4.93 +galoché galocher ver m s 0 0.14 0 0.07 par:pas; +galochés galocher ver m p 0 0.14 0 0.07 par:pas; +galon galon nom m s 3.16 14.73 0.89 4.12 +galonnage galonnage nom m s 0 0.07 0 0.07 +galonnait galonner ver 0.01 1.22 0 0.07 ind:imp:3s; +galonne galonner ver 0.01 1.22 0 0.07 ind:pre:3s; +galonné galonné adj m s 0.09 2.09 0.03 0.74 +galonnée galonné adj f s 0.09 2.09 0.01 0.54 +galonnées galonné adj f p 0.09 2.09 0.01 0.27 +galonnés galonné adj m p 0.09 2.09 0.03 0.54 +galons galon nom m p 3.16 14.73 2.28 10.61 +galop galop nom m s 2.83 13.72 2.83 12.77 +galopa galoper ver 3.14 13.31 0.14 0.61 ind:pas:3s; +galopade galopade nom f s 0 3.65 0 2.03 +galopades galopade nom f p 0 3.65 0 1.62 +galopaient galoper ver 3.14 13.31 0.03 1.49 ind:imp:3p; +galopais galoper ver 3.14 13.31 0.01 0.27 ind:imp:1s;ind:imp:2s; +galopait galoper ver 3.14 13.31 0.05 1.55 ind:imp:3s; +galopant galoper ver 3.14 13.31 0.09 1.62 par:pre; +galopante galopant adj f s 0.31 1.89 0.22 1.15 +galopantes galopant adj f p 0.31 1.89 0.01 0.07 +galopants galopant adj m p 0.31 1.89 0 0.14 +galope galoper ver 3.14 13.31 0.63 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +galopent galoper ver 3.14 13.31 0.18 1.42 ind:pre:3p; +galoper galoper ver 3.14 13.31 0.95 3.78 inf; +galopera galoper ver 3.14 13.31 0.02 0 ind:fut:3s; +galoperaient galoper ver 3.14 13.31 0 0.07 cnd:pre:3p; +galoperez galoper ver 3.14 13.31 0.01 0 ind:fut:2p; +galopes galoper ver 3.14 13.31 0.13 0 ind:pre:2s; +galopez galoper ver 3.14 13.31 0.04 0 imp:pre:2p;ind:pre:2p; +galopin galopin nom m s 0.88 4.05 0.32 1.69 +galopine galopin nom f s 0.88 4.05 0 0.41 +galopiner galopiner ver 0 0.07 0 0.07 inf; +galopines galopin nom f p 0.88 4.05 0 0.07 +galopins galopin nom m p 0.88 4.05 0.56 1.89 +galopons galoper ver 3.14 13.31 0.27 0.07 imp:pre:1p;ind:pre:1p; +galops galop nom m p 2.83 13.72 0 0.95 +galopèrent galoper ver 3.14 13.31 0 0.07 ind:pas:3p; +galopé galoper ver m s 3.14 13.31 0.6 0.41 par:pas; +galoubet galoubet nom m s 0.01 0 0.01 0 +galoup galoup nom m s 0 0.2 0 0.2 +galtouse galtouse nom f s 0 1.28 0 1.01 +galtouses galtouse nom f p 0 1.28 0 0.27 +galuchat galuchat nom m s 0 0.34 0 0.34 +galure galure nom m s 0.09 1.08 0.08 0.88 +galures galure nom m p 0.09 1.08 0.01 0.2 +galurin galurin nom m s 0.04 0.41 0.04 0.41 +galvanique galvanique adj f s 0 0.07 0 0.07 +galvanisa galvaniser ver 0.51 1.96 0 0.07 ind:pas:3s; +galvanisait galvaniser ver 0.51 1.96 0 0.2 ind:imp:3s; +galvanisant galvaniser ver 0.51 1.96 0.03 0.14 par:pre; +galvanise galvaniser ver 0.51 1.96 0.02 0.2 ind:pre:3s; +galvaniser galvaniser ver 0.51 1.96 0.2 0.34 inf; +galvanisme galvanisme nom m s 0.02 0 0.02 0 +galvanisé galvaniser ver m s 0.51 1.96 0.26 0.54 par:pas; +galvanisée galvaniser ver f s 0.51 1.96 0.01 0.34 par:pas; +galvanisées galvaniser ver f p 0.51 1.96 0 0.07 par:pas; +galvanisés galvaniser ver m p 0.51 1.96 0 0.07 par:pas; +galvaudait galvauder ver 0.16 0.88 0 0.07 ind:imp:3s; +galvaudant galvauder ver 0.16 0.88 0 0.07 par:pre; +galvaude galvauder ver 0.16 0.88 0 0.14 ind:pre:3s; +galvaudent galvauder ver 0.16 0.88 0 0.07 ind:pre:3p; +galvauder galvauder ver 0.16 0.88 0.1 0.14 inf; +galvaudeux galvaudeux nom m 0 0.14 0 0.14 +galvaudez galvauder ver 0.16 0.88 0 0.07 imp:pre:2p; +galvaudiez galvauder ver 0.16 0.88 0 0.07 ind:imp:2p; +galvaudé galvauder ver m s 0.16 0.88 0.04 0.2 par:pas; +galvaudée galvauder ver f s 0.16 0.88 0.02 0.07 par:pas; +galène galène nom f s 0.23 0.41 0.23 0.41 +galère galer nom f s 8.12 10.47 8.12 6.08 +galèrent galérer ver 0.91 0.74 0.06 0 ind:pre:3p; +galères galère nom f p 2.14 0 2.14 0 +galéasses galéasse nom f p 0 0.14 0 0.14 +galée galée nom f s 0.04 0.34 0 0.2 +galées galée nom f p 0.04 0.34 0.04 0.14 +galéjade galéjade nom f s 0.29 0.41 0.28 0.34 +galéjades galéjade nom f p 0.29 0.41 0.01 0.07 +galéjeur galéjeur adj m s 0 0.07 0 0.07 +galéniste galéniste nom m s 0 0.07 0 0.07 +galérais galérer ver 0.91 0.74 0.01 0 ind:imp:1s; +galérait galérer ver 0.91 0.74 0 0.07 ind:imp:3s; +galérer galérer ver 0.91 0.74 0.36 0.2 inf; +galérien galérien nom m s 0.09 1.01 0.07 0.41 +galériens galérien nom m p 0.09 1.01 0.02 0.61 +galéré galérer ver m s 0.91 0.74 0.23 0.2 par:pas; +gamahuche gamahucher ver 0 0.07 0 0.07 ind:pre:3s; +gamay gamay nom m s 0 0.07 0 0.07 +gambada gambader ver 0.8 2.64 0 0.07 ind:pas:3s; +gambadaient gambader ver 0.8 2.64 0 0.14 ind:imp:3p; +gambadais gambader ver 0.8 2.64 0.01 0 ind:imp:1s; +gambadait gambader ver 0.8 2.64 0.05 0.61 ind:imp:3s; +gambadant gambader ver 0.8 2.64 0.05 0.2 par:pre; +gambadante gambadant adj f s 0.02 0.14 0 0.07 +gambade gambader ver 0.8 2.64 0.16 0.54 ind:pre:1s;ind:pre:3s; +gambadent gambader ver 0.8 2.64 0.12 0.27 ind:pre:3p; +gambader gambader ver 0.8 2.64 0.38 0.74 inf; +gambades gambade nom f p 0.01 0.61 0.01 0.47 +gambadeurs gambadeur nom m p 0 0.07 0 0.07 +gambadez gambader ver 0.8 2.64 0.02 0 imp:pre:2p; +gambadèrent gambader ver 0.8 2.64 0 0.07 ind:pas:3p; +gambas gamba nom f p 0.45 0.14 0.45 0.14 +gambe gambe nom f s 0.34 0.07 0.34 0.07 +gamberge gamberger ver 0.69 7.7 0.11 1.89 ind:pre:1s;ind:pre:3s; +gambergea gamberger ver 0.69 7.7 0 0.07 ind:pas:3s; +gambergeaient gamberger ver 0.69 7.7 0 0.07 ind:imp:3p; +gambergeailler gambergeailler ver 0 0.07 0 0.07 inf; +gambergeais gamberger ver 0.69 7.7 0.01 0.61 ind:imp:1s; +gambergeait gamberger ver 0.69 7.7 0.04 0.74 ind:imp:3s; +gambergeant gamberger ver 0.69 7.7 0 0.54 par:pre; +gambergent gamberger ver 0.69 7.7 0.01 0.07 ind:pre:3p; +gambergeons gamberger ver 0.69 7.7 0 0.07 imp:pre:1p; +gamberger gamberger ver 0.69 7.7 0.23 2.5 inf; +gamberges gamberger ver 0.69 7.7 0.19 0.2 ind:pre:2s; +gambergez gamberger ver 0.69 7.7 0.02 0 imp:pre:2p;ind:pre:2p; +gambergé gamberger ver m s 0.69 7.7 0.09 0.95 par:pas; +gambette gambette nom s 0.33 0.74 0.02 0.2 +gambettes gambette nom p 0.33 0.74 0.31 0.54 +gambillait gambiller ver 0.08 1.35 0 0.07 ind:imp:3s; +gambillant gambiller ver 0.08 1.35 0 0.2 par:pre; +gambille gambiller ver 0.08 1.35 0.03 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gambiller gambiller ver 0.08 1.35 0.03 0.14 inf; +gambilles gambiller ver 0.08 1.35 0.02 0.27 ind:pre:2s; +gambilleurs gambilleur nom m p 0 0.2 0 0.14 +gambilleuses gambilleur nom f p 0 0.2 0 0.07 +gambillé gambiller ver m s 0.08 1.35 0 0.07 par:pas; +gambit gambit nom m s 0.04 0 0.04 0 +game game nom m s 0.64 0.14 0.64 0.14 +gamelan gamelan nom m s 0.25 0.07 0.25 0.07 +gamelle gamelle nom f s 1.64 13.72 1.29 8.45 +gamelles gamelle nom f p 1.64 13.72 0.34 5.27 +gamin gamin nom m s 92.22 38.78 55.94 19.53 +gaminas gaminer ver 0 0.07 0 0.07 ind:pas:2s; +gamine gamin nom f s 92.22 38.78 12 7.16 +gaminement gaminement nom m s 0 0.07 0 0.07 +gaminerie gaminerie nom f s 0.4 0.61 0.08 0.2 +gamineries gaminerie nom f p 0.4 0.61 0.32 0.41 +gamines gamin nom f p 92.22 38.78 2.13 2.77 +gamins gamin nom m p 92.22 38.78 22.15 9.32 +gamma gamma nom m 1.94 1.01 1.94 1.01 +gammaglobuline gammaglobuline nom f s 0.03 0.34 0 0.2 +gammaglobulines gammaglobuline nom f p 0.03 0.34 0.03 0.14 +gammas gammas nom m 0.04 0 0.04 0 +gamme gamme nom f s 3.22 7.91 2.67 5.74 +gammes gamme nom f p 3.22 7.91 0.55 2.16 +gammée gammée adj f s 1.27 3.45 0.2 2.43 +gammées gammée adj f p 1.27 3.45 1.07 1.01 +gamète gamète nom m s 0.03 0.2 0.01 0.14 +gamètes gamète nom m p 0.03 0.2 0.02 0.07 +gan gan nom m s 0.27 0 0.27 0 +ganache ganache nom f s 0.04 0.61 0.04 0.61 +ganaderia ganaderia nom f s 0 0.2 0 0.14 +ganaderias ganaderia nom f p 0 0.2 0 0.07 +gandin gandin nom m s 0.56 1.28 0.56 0.95 +gandins gandin nom m p 0.56 1.28 0 0.34 +gandoura gandoura nom f s 0.01 0.68 0.01 0.54 +gandourah gandourah nom f s 0 0.2 0 0.2 +gandouras gandoura nom f p 0.01 0.68 0 0.14 +gang gang nom m s 17.48 3.85 12.44 3.04 +ganglion ganglion nom m s 0.61 1.01 0.18 0.41 +ganglionnaires ganglionnaire adj f p 0 0.07 0 0.07 +ganglions ganglion nom m p 0.61 1.01 0.44 0.61 +gangrena gangrener ver 0.5 0.61 0 0.07 ind:pas:3s; +gangrener gangrener ver 0.5 0.61 0.21 0.07 inf; +gangreneux gangreneux adj m s 0.01 0 0.01 0 +gangrené gangrené adj m s 0.19 0.41 0.17 0.27 +gangrenée gangrener ver f s 0.5 0.61 0.1 0.14 par:pas; +gangrenées gangrené adj f p 0.19 0.41 0.01 0 +gangrenés gangrener ver m p 0.5 0.61 0.01 0.07 par:pas; +gangrène gangrène nom f s 1.74 2.23 1.74 2.16 +gangrènes gangrène nom f p 1.74 2.23 0 0.07 +gangs gang nom m p 17.48 3.85 5.05 0.81 +gangster gangster nom m s 10.43 6.35 6.75 3.11 +gangsters gangster nom m p 10.43 6.35 3.68 3.24 +gangstérisme gangstérisme nom m s 0 0.07 0 0.07 +gangue gangue nom f s 0.01 2.03 0.01 1.89 +gangues gangue nom f p 0.01 2.03 0 0.14 +ganja ganja nom f s 0.18 0 0.18 0 +ganse ganse nom f s 0.04 0.68 0.02 0.34 +ganses ganse nom f p 0.04 0.68 0.02 0.34 +gansé ganser ver m s 0 0.41 0 0.07 par:pas; +gansée ganser ver f s 0 0.41 0 0.34 par:pas; +gant gant nom m s 25.02 36.01 9.86 7.97 +gantait ganter ver 0.14 3.72 0 0.07 ind:imp:3s; +gantant ganter ver 0.14 3.72 0 0.07 par:pre; +gante ganter ver 0.14 3.72 0 0.07 ind:pre:3s; +gantelet gantelet nom m s 0.37 0.14 0.36 0.07 +gantelets gantelet nom m p 0.37 0.14 0.01 0.07 +ganterie ganterie nom f s 0 0.07 0 0.07 +gantier gantier nom m s 0.24 0.07 0.24 0 +gantières gantier nom f p 0.24 0.07 0 0.07 +gants gant nom m p 25.02 36.01 15.16 28.04 +ganté ganté adj m s 0.06 2.5 0.04 0.2 +gantée ganter ver f s 0.14 3.72 0.01 1.82 par:pas; +gantées ganter ver f p 0.14 3.72 0.01 0.74 par:pas; +gantés ganter ver m p 0.14 3.72 0.1 0.2 par:pas; +ganymèdes ganymède nom m p 0 0.07 0 0.07 +gap gap nom m s 0.01 0 0.01 0 +gaperon gaperon nom m s 0 0.07 0 0.07 +gapette gapette nom f s 0.01 0.68 0.01 0.54 +gapettes gapette nom f p 0.01 0.68 0 0.14 +gara garer ver 27.16 18.04 0.04 1.15 ind:pas:3s; +garage garage nom m s 25.25 24.12 24.41 22.23 +garages garage nom m p 25.25 24.12 0.83 1.89 +garagiste garagiste nom s 1.25 5.27 1.25 5 +garagistes garagiste nom p 1.25 5.27 0 0.27 +garaient garer ver 27.16 18.04 0.02 0.2 ind:imp:3p; +garais garer ver 27.16 18.04 0.07 0.07 ind:imp:1s;ind:imp:2s; +garait garer ver 27.16 18.04 0.05 0.34 ind:imp:3s; +garance garance adj 0.01 0.27 0.01 0.27 +garancière garancière nom f s 0 0.27 0 0.27 +garant garant adj m s 2.39 2.09 2.19 0.81 +garante garant adj f s 2.39 2.09 0.16 0.68 +garantes garant adj f p 2.39 2.09 0 0.07 +garanti garantir ver m s 19.74 16.82 2.32 2.7 par:pas; +garantie garantie nom f s 9.16 8.24 6.84 5.14 +garanties garantie nom f p 9.16 8.24 2.32 3.11 +garantir garantir ver 19.74 16.82 4.86 4.59 inf; +garantira garantir ver 19.74 16.82 0.2 0.54 ind:fut:3s; +garantirais garantir ver 19.74 16.82 0.01 0 cnd:pre:1s; +garantirait garantir ver 19.74 16.82 0.04 0.27 cnd:pre:3s; +garantiriez garantir ver 19.74 16.82 0.01 0 cnd:pre:2p; +garantirons garantir ver 19.74 16.82 0 0.07 ind:fut:1p; +garantiront garantir ver 19.74 16.82 0.04 0 ind:fut:3p; +garantis garantir ver m p 19.74 16.82 7.15 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +garantissaient garantir ver 19.74 16.82 0.01 0.34 ind:imp:3p; +garantissais garantir ver 19.74 16.82 0.01 0.07 ind:imp:1s; +garantissait garantir ver 19.74 16.82 0.11 0.95 ind:imp:3s; +garantissant garantir ver 19.74 16.82 0.13 0.68 par:pre; +garantisse garantir ver 19.74 16.82 0.18 0.14 sub:pre:1s;sub:pre:3s; +garantissent garantir ver 19.74 16.82 0.07 0.14 ind:pre:3p; +garantissez garantir ver 19.74 16.82 0.26 0 imp:pre:2p;ind:pre:2p; +garantissons garantir ver 19.74 16.82 0.25 0 imp:pre:1p;ind:pre:1p; +garantit garantir ver 19.74 16.82 2.3 1.22 ind:pre:3s;ind:pas:3s; +garants garant nom m p 0.97 1.62 0.24 0.34 +garantît garantir ver 19.74 16.82 0 0.07 sub:imp:3s; +garbure garbure nom f s 0.14 0.14 0.14 0.14 +garce garce nom f s 21.71 8.78 20.25 7.36 +garces garce nom f p 21.71 8.78 1.46 1.42 +garcette garcette nom f s 0 0.2 0 0.07 +garcettes garcette nom f p 0 0.2 0 0.14 +garda garder ver 338.4 257.5 0.4 11.89 ind:pas:3s; +gardai garder ver 338.4 257.5 0.12 3.65 ind:pas:1s; +gardaient garder ver 338.4 257.5 0.89 8.45 ind:imp:3p; +gardais garder ver 338.4 257.5 3 5.74 ind:imp:1s;ind:imp:2s; +gardait garder ver 338.4 257.5 4.52 37.3 ind:imp:3s; +gardant garder ver 338.4 257.5 2.06 9.46 par:pre; +garde garder ver 338.4 257.5 93.72 37.7 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +garde_barrière garde_barrière nom m s 0 0.95 0 0.95 +garde_boue garde_boue nom m 0.05 1.08 0.05 1.08 +garde_champêtre garde_champêtre nom m s 0 0.54 0 0.47 +garde_chasse garde_chasse nom m s 0.22 1.42 0.22 1.42 +garde_chiourme garde_chiourme nom m s 0.13 0.88 0.06 0.54 +garde_corps garde_corps nom m 0.01 0.34 0.01 0.34 +garde_côte garde_côte nom m s 1.9 0.14 0.54 0.07 +garde_côte garde_côte nom m p 1.9 0.14 1.36 0.07 +garde_feu garde_feu nom m 0.05 0 0.05 0 +garde_forestier garde_forestier nom s 0.16 0.14 0.16 0.14 +garde_fou garde_fou nom m s 0.3 1.89 0.25 1.49 +garde_fou garde_fou nom m p 0.3 1.89 0.05 0.41 +garde_frontière garde_frontière nom m s 0.16 0 0.16 0 +garde_malade garde_malade nom s 0.44 1.15 0.44 1.15 +garde_manger garde_manger nom m 0.68 2.77 0.68 2.77 +garde_meuble garde_meuble nom m 0.34 0.2 0.34 0.2 +garde_meubles garde_meubles nom m 0.16 0.34 0.16 0.34 +garde_pêche garde_pêche nom m s 0.01 0.07 0.01 0.07 +garde_robe garde_robe nom f s 2.19 2.77 2.17 2.7 +garde_robe garde_robe nom f p 2.19 2.77 0.03 0.07 +garde_voie garde_voie nom m s 0 0.14 0 0.07 +garde_vue garde_vue nom m 0.25 0 0.25 0 +garde_à_vous garde_à_vous nom m 0 5.88 0 5.88 +garden_party garden_party nom f s 0.22 0.34 0.22 0.34 +gardent garder ver 338.4 257.5 6.04 6.35 ind:pre:3p;sub:pre:3p; +garder garder ver 338.4 257.5 123.09 68.31 inf;;inf;;inf;;inf;;inf;; +gardera garder ver 338.4 257.5 3.31 2.3 ind:fut:3s; +garderai garder ver 338.4 257.5 5.83 1.89 ind:fut:1s; +garderaient garder ver 338.4 257.5 0.15 0.61 cnd:pre:3p; +garderais garder ver 338.4 257.5 1.19 0.95 cnd:pre:1s;cnd:pre:2s; +garderait garder ver 338.4 257.5 0.74 2.97 cnd:pre:3s; +garderas garder ver 338.4 257.5 1.42 0.61 ind:fut:2s; +garderez garder ver 338.4 257.5 0.72 0.74 ind:fut:2p; +garderie garderie nom f s 1.96 0.61 1.67 0.47 +garderies garderie nom f p 1.96 0.61 0.29 0.14 +garderiez garder ver 338.4 257.5 0.45 0.07 cnd:pre:2p; +garderions garder ver 338.4 257.5 0.03 0.14 cnd:pre:1p; +garderons garder ver 338.4 257.5 1.3 0.41 ind:fut:1p; +garderont garder ver 338.4 257.5 1.05 0.47 ind:fut:3p; +gardes garde nom p 104.47 112.09 27.7 22.23 +garde_barrières garde_barrières nom p 0 0.14 0 0.14 +garde_champêtre garde_champêtre nom m p 0 0.54 0 0.07 +gardes_chasse gardes_chasse nom m s 0.03 0.41 0.03 0.41 +garde_chiourme garde_chiourme nom m p 0.13 0.88 0.04 0.2 +garde_chiourme garde_chiourme nom p 0.13 0.88 0.03 0.14 +garde_côtes garde_côtes nom m p 0.31 0 0.31 0 +garde_française garde_française nom m p 0 0.07 0 0.07 +garde_frontières garde_frontières nom m p 0.03 0.41 0.03 0.41 +garde_voie garde_voie nom m p 0 0.14 0 0.07 +gardeur gardeur nom m s 0 0.34 0 0.07 +gardeurs gardeur nom m p 0 0.34 0 0.07 +gardeuse gardeur nom f s 0 0.34 0 0.14 +gardeuses gardeur nom f p 0 0.34 0 0.07 +gardez garder ver 338.4 257.5 39.17 5.2 imp:pre:2p;ind:pre:2p; +gardian gardian nom m s 0 0.2 0 0.14 +gardians gardian nom m p 0 0.2 0 0.07 +gardien gardien nom m s 31.92 31.96 18.55 18.45 +gardien_chef gardien_chef nom m s 0.22 0.27 0.22 0.27 +gardiennage gardiennage nom m s 0.05 0.27 0.05 0.27 +gardiennait gardienner ver 0 0.07 0 0.07 ind:imp:3s; +gardienne gardien nom f s 31.92 31.96 2.81 3.31 +gardiennes gardien nom f p 31.92 31.96 0.36 0.61 +gardiens gardien nom m p 31.92 31.96 10.2 9.59 +gardiez garder ver 338.4 257.5 1.23 0.61 ind:imp:2p; +gardions garder ver 338.4 257.5 0.56 0.88 ind:imp:1p; +gardois gardois adj m s 0 0.07 0 0.07 +gardon gardon nom m s 1.06 1.08 0.44 0.41 +gardons garder ver 338.4 257.5 4.58 2.03 imp:pre:1p;ind:pre:1p; +gardâmes garder ver 338.4 257.5 0 0.2 ind:pas:1p; +gardât garder ver 338.4 257.5 0 0.68 sub:imp:3s; +gardèrent garder ver 338.4 257.5 0.12 0.61 ind:pas:3p; +gardé garder ver m s 338.4 257.5 24.98 36.89 imp:pre:2s;par:pas;par:pas; +gardée garder ver f s 338.4 257.5 3.87 4.93 par:pas; +gardées garder ver f p 338.4 257.5 1.3 0.88 par:pas; +gardénal gardénal nom m s 0 1.08 0 1.08 +gardénia gardénia nom m s 0.27 0.54 0.11 0.14 +gardénias gardénia nom m p 0.27 0.54 0.16 0.41 +gardés garder ver m p 338.4 257.5 1.5 2.77 par:pas; +gare gare ono 10.79 2.84 10.79 2.84 +garenne garenne nom s 0.66 1.01 0.64 0.68 +garennes garenne nom f p 0.66 1.01 0.02 0.34 +garent garer ver 27.16 18.04 0.14 0.14 ind:pre:3p; +garer garer ver 27.16 18.04 6.7 3.24 inf; +garerai garer ver 27.16 18.04 0.17 0 ind:fut:1s; +garerais garer ver 27.16 18.04 0.01 0 cnd:pre:1s; +garerait garer ver 27.16 18.04 0.01 0.07 cnd:pre:3s; +gareront garer ver 27.16 18.04 0.01 0 ind:fut:3p; +gares gare nom_sup f p 42.15 84.53 1.87 5.95 +garez garer ver 27.16 18.04 2.48 0.27 imp:pre:2p;ind:pre:2p; +gargamelle gargamelle nom f s 0 0.07 0 0.07 +gargantua gargantua nom m s 0.01 0 0.01 0 +gargantuesque gargantuesque adj s 0.38 0.41 0.33 0.34 +gargantuesques gargantuesque adj m p 0.38 0.41 0.05 0.07 +gargarisa gargariser ver 0.41 0.74 0 0.07 ind:pas:3s; +gargarisaient gargariser ver 0.41 0.74 0 0.07 ind:imp:3p; +gargarisait gargariser ver 0.41 0.74 0.01 0.14 ind:imp:3s; +gargarisant gargariser ver 0.41 0.74 0 0.14 par:pre; +gargarise gargariser ver 0.41 0.74 0.2 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gargarisent gargariser ver 0.41 0.74 0.03 0.14 ind:pre:3p; +gargariser gargariser ver 0.41 0.74 0.15 0.07 inf; +gargarisme gargarisme nom m s 0.06 0.34 0.02 0.2 +gargarismes gargarisme nom m p 0.06 0.34 0.04 0.14 +gargarisé gargariser ver m s 0.41 0.74 0.01 0 par:pas; +gargote gargote nom f s 0.47 1.55 0.26 0.95 +gargotes gargote nom f p 0.47 1.55 0.21 0.61 +gargotier gargotier nom m s 0.14 0.2 0.14 0.07 +gargotiers gargotier nom m p 0.14 0.2 0 0.14 +gargouilla gargouiller ver 0.55 2.36 0 0.14 ind:pas:3s; +gargouillaient gargouiller ver 0.55 2.36 0 0.07 ind:imp:3p; +gargouillait gargouiller ver 0.55 2.36 0.03 0.54 ind:imp:3s; +gargouillant gargouiller ver 0.55 2.36 0.01 0.14 par:pre; +gargouillante gargouillant adj f s 0.01 0.14 0 0.07 +gargouille gargouiller ver 0.55 2.36 0.42 0.81 ind:pre:1s;ind:pre:3s; +gargouillement gargouillement nom m s 0.04 1.15 0.02 0.61 +gargouillements gargouillement nom m p 0.04 1.15 0.02 0.54 +gargouillent gargouiller ver 0.55 2.36 0.03 0.14 ind:pre:3p; +gargouiller gargouiller ver 0.55 2.36 0.05 0.47 inf; +gargouilles gargouille nom f p 0.73 1.82 0.41 0.74 +gargouillette gargouillette nom f s 0 0.07 0 0.07 +gargouillis gargouillis nom m 0.23 2.5 0.23 2.5 +gargouillé gargouiller ver m s 0.55 2.36 0.01 0.07 par:pas; +gargoulette gargoulette nom f s 0 0.47 0 0.41 +gargoulettes gargoulette nom f p 0 0.47 0 0.07 +gargousses gargousse nom f p 0 0.07 0 0.07 +gari gari nom m s 0 0.14 0 0.14 +garibaldien garibaldien adj m s 0.14 0.07 0.14 0 +garibaldiens garibaldien nom m p 0.4 0 0.4 0 +garions garer ver 27.16 18.04 0.01 0.07 ind:imp:1p; +garnement garnement nom m s 1.94 2.64 1.42 1.22 +garnements garnement nom m p 1.94 2.64 0.52 1.42 +garni garnir ver m s 1.04 16.42 0.26 3.99 par:pas; +garnie garnir ver f s 1.04 16.42 0.34 4.19 par:pas; +garnies garnir ver f p 1.04 16.42 0.07 2.3 par:pas; +garnir garnir ver 1.04 16.42 0.16 1.89 inf; +garnirent garnir ver 1.04 16.42 0 0.07 ind:pas:3p; +garniront garnir ver 1.04 16.42 0 0.07 ind:fut:3p; +garnis garni adj m p 0.66 6.01 0.21 1.96 +garnison garnison nom f s 3.23 11.35 3.13 8.38 +garnisons garnison nom f p 3.23 11.35 0.1 2.97 +garnissage garnissage nom m s 0.01 0 0.01 0 +garnissaient garnir ver 1.04 16.42 0 0.68 ind:imp:3p; +garnissais garnir ver 1.04 16.42 0.01 0.07 ind:imp:1s; +garnissait garnir ver 1.04 16.42 0 0.95 ind:imp:3s; +garnissant garnir ver 1.04 16.42 0 0.34 par:pre; +garnissent garnir ver 1.04 16.42 0.01 0.34 ind:pre:3p; +garnissez garnir ver 1.04 16.42 0 0.07 imp:pre:2p; +garnit garnir ver 1.04 16.42 0.02 0.54 ind:pre:3s;ind:pas:3s; +garniture garniture nom f s 1.03 2.3 0.8 1.28 +garnitures garniture nom f p 1.03 2.3 0.23 1.01 +garno garno nom m s 0 0.07 0 0.07 +garons garer ver 27.16 18.04 0.04 0.07 imp:pre:1p;ind:pre:1p; +garou garou nom m s 0.03 0.14 0.03 0.14 +garrick garrick nom m s 0 0.07 0 0.07 +garrigue garrigue nom f s 0.54 1.96 0.54 1.49 +garrigues garrigue nom f p 0.54 1.96 0 0.47 +garrot garrot nom m s 1.58 2.43 1.55 2.3 +garrots garrot nom m p 1.58 2.43 0.03 0.14 +garrottaient garrotter ver 0.35 0.68 0 0.07 ind:imp:3p; +garrotte garrotter ver 0.35 0.68 0.28 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +garrottent garrotter ver 0.35 0.68 0.01 0 ind:pre:3p; +garrotter garrotter ver 0.35 0.68 0.01 0.07 inf; +garrotté garrotter ver m s 0.35 0.68 0.03 0.07 par:pas; +garrottée garrotter ver f s 0.35 0.68 0.01 0.14 par:pas; +garrottés garrotter ver m p 0.35 0.68 0.01 0.14 par:pas; +gars gars nom m 289.63 59.26 289.63 59.26 +garçon garçon nom m s 251.51 262.5 188.41 186.96 +garçonne garçonne nom f s 0 0.88 0 0.88 +garçonnet garçonnet nom m s 0.27 3.65 0.21 2.5 +garçonnets garçonnet nom m p 0.27 3.65 0.06 1.15 +garçonnier garçonnier adj m s 0.02 1.15 0 0.2 +garçonniers garçonnier adj m p 0.02 1.15 0 0.14 +garçonnière garçonnière nom f s 1.51 1.22 1.51 1.08 +garçonnières garçonnière nom f p 1.51 1.22 0 0.14 +garçons garçon nom m p 251.51 262.5 63.09 75.54 +garèrent garer ver 27.16 18.04 0 0.14 ind:pas:3p; +garé garer ver m s 27.16 18.04 4.28 3.45 par:pas; +garée garer ver f s 27.16 18.04 4.08 3.72 par:pas; +garées garer ver f p 27.16 18.04 0.3 0.88 par:pas; +garés garer ver m p 27.16 18.04 0.78 0.81 par:pas; +gas_oil gas_oil nom m s 0.02 0.27 0.02 0.27 +gascon gascon adj m s 0.58 0.2 0.47 0.07 +gasconne gascon adj f s 0.58 0.2 0.1 0.07 +gascons gascon nom m p 0.44 0.27 0.06 0.2 +gasoil gasoil nom m s 0.49 0.34 0.49 0.34 +gaspacho gaspacho nom m s 1.38 0 1.38 0 +gaspard gaspard nom m s 0.54 1.01 0.54 0.2 +gaspards gaspard nom m p 0.54 1.01 0 0.81 +gaspilla gaspiller ver 11.5 6.08 0.01 0 ind:pas:3s; +gaspillage gaspillage nom m s 1.92 2.3 1.81 2.16 +gaspillages gaspillage nom m p 1.92 2.3 0.1 0.14 +gaspillaient gaspiller ver 11.5 6.08 0 0.14 ind:imp:3p; +gaspillait gaspiller ver 11.5 6.08 0.1 0.27 ind:imp:3s; +gaspillant gaspiller ver 11.5 6.08 0.04 0.2 par:pre; +gaspillasse gaspiller ver 11.5 6.08 0 0.07 sub:imp:1s; +gaspille gaspiller ver 11.5 6.08 2.57 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gaspillent gaspiller ver 11.5 6.08 0.41 0 ind:pre:3p; +gaspiller gaspiller ver 11.5 6.08 3.06 2.43 inf; +gaspillerai gaspiller ver 11.5 6.08 0.05 0 ind:fut:1s; +gaspilleraient gaspiller ver 11.5 6.08 0 0.07 cnd:pre:3p; +gaspillerais gaspiller ver 11.5 6.08 0.18 0 cnd:pre:1s;cnd:pre:2s; +gaspillerez gaspiller ver 11.5 6.08 0 0.07 ind:fut:2p; +gaspilles gaspiller ver 11.5 6.08 0.82 0.14 ind:pre:2s; +gaspilleur gaspilleur adj m s 0.02 0 0.01 0 +gaspilleurs gaspilleur nom m p 0.02 0.2 0.02 0.14 +gaspilleuse gaspilleur adj f s 0.02 0 0.01 0 +gaspilleuses gaspilleur nom f p 0.02 0.2 0 0.07 +gaspillez gaspiller ver 11.5 6.08 1.32 0.2 imp:pre:2p;ind:pre:2p; +gaspillons gaspiller ver 11.5 6.08 0.26 0.14 imp:pre:1p;ind:pre:1p; +gaspillât gaspiller ver 11.5 6.08 0 0.07 sub:imp:3s; +gaspillé gaspiller ver m s 11.5 6.08 1.79 0.81 par:pas; +gaspillée gaspiller ver f s 11.5 6.08 0.48 0.34 par:pas; +gaspillées gaspiller ver f p 11.5 6.08 0.12 0.2 par:pas; +gaspillés gaspiller ver m p 11.5 6.08 0.28 0.41 par:pas; +gaster gaster nom m s 0.01 0.14 0.01 0.14 +gastralgie gastralgie nom f s 0.01 0.07 0.01 0 +gastralgies gastralgie nom f p 0.01 0.07 0 0.07 +gastrectomie gastrectomie nom f s 0.01 0 0.01 0 +gastrique gastrique adj s 1.35 0.61 1.13 0.34 +gastriques gastrique adj p 1.35 0.61 0.22 0.27 +gastrite gastrite nom f s 0.21 0.07 0.2 0 +gastrites gastrite nom f p 0.21 0.07 0.01 0.07 +gastro gastro nom s 0.66 0.07 0.66 0.07 +gastro_entérite gastro_entérite nom f s 0.04 0.07 0.04 0.07 +gastro_entérologue gastro_entérologue nom s 0.04 0.14 0.04 0.07 +gastro_entérologue gastro_entérologue nom p 0.04 0.14 0 0.07 +gastro_intestinal gastro_intestinal adj m s 0.12 0 0.04 0 +gastro_intestinal gastro_intestinal adj f s 0.12 0 0.02 0 +gastro_intestinal gastro_intestinal adj m p 0.12 0 0.05 0 +gastroentérologue gastroentérologue nom s 0.02 0 0.02 0 +gastrolâtre gastrolâtre adj m s 0 0.07 0 0.07 +gastrolâtre gastrolâtre nom s 0 0.07 0 0.07 +gastronome gastronome nom s 0.07 0.81 0.04 0.68 +gastronomes gastronome nom p 0.07 0.81 0.04 0.14 +gastronomie gastronomie nom f s 0.58 0.61 0.58 0.61 +gastronomique gastronomique adj s 0.48 1.96 0.4 0.88 +gastronomiques gastronomique adj p 0.48 1.96 0.08 1.08 +gastrula gastrula nom f s 0.01 0 0.01 0 +gastéropode gastéropode nom m s 0.02 0.14 0 0.07 +gastéropodes gastéropode nom m p 0.02 0.14 0.02 0.07 +gatte gatte nom f s 0.02 0 0.02 0 +gauche gauche nom s 71.78 134.59 71.66 133.78 +gauchement gauchement adv 0.1 3.45 0.1 3.45 +gaucher gaucher adj m s 2.29 0.81 1.93 0.2 +gaucherie gaucherie nom f s 0.12 2.5 0.12 2.43 +gaucheries gaucherie nom f p 0.12 2.5 0 0.07 +gauchers gaucher nom m p 1.1 0.27 0.28 0.14 +gauches gauche adj p 45.88 89.59 0.36 1.55 +gauchi gauchir ver m s 0.02 0.88 0.01 0 par:pas; +gauchie gauchir ver f s 0.02 0.88 0.01 0.34 par:pas; +gauchir gauchir ver 0.02 0.88 0 0.34 inf; +gauchis gauchir ver m p 0.02 0.88 0 0.07 par:pas; +gauchisante gauchisant adj f s 0 0.14 0 0.07 +gauchisantes gauchisant adj f p 0 0.14 0 0.07 +gauchisme gauchisme nom m s 0 0.2 0 0.14 +gauchismes gauchisme nom m p 0 0.2 0 0.07 +gauchissaient gauchir ver 0.02 0.88 0 0.07 ind:imp:3p; +gauchissait gauchir ver 0.02 0.88 0 0.07 ind:imp:3s; +gauchissement gauchissement nom m s 0 0.07 0 0.07 +gauchiste gauchiste adj s 1.02 1.08 0.79 0.74 +gauchistes gauchiste adj p 1.02 1.08 0.23 0.34 +gaucho gaucho nom m s 0.35 1.28 0.28 0.27 +gauchos gaucho nom m p 0.35 1.28 0.07 1.01 +gauchère gaucher adj f s 2.29 0.81 0.18 0.61 +gaudriole gaudriole nom f s 0.04 1.01 0.02 0.68 +gaudrioles gaudriole nom f p 0.04 1.01 0.02 0.34 +gaufre gaufre nom f s 3.03 1.96 0.58 0.68 +gaufres gaufre nom f p 3.03 1.96 2.44 1.28 +gaufrette gaufrette nom f s 0.08 0.88 0.01 0.27 +gaufrettes gaufrette nom f p 0.08 0.88 0.07 0.61 +gaufrier gaufrier nom m s 0.17 0.27 0.17 0.27 +gaufré gaufré adj m s 0.04 0.95 0.04 0.47 +gaufrée gaufrer ver f s 0.04 0.81 0.01 0.07 par:pas; +gaufrées gaufré adj f p 0.04 0.95 0 0.14 +gaufrés gaufrer ver m p 0.04 0.81 0 0.2 par:pas; +gaulant gauler ver 0.75 1.28 0 0.07 par:pre; +gauldo gauldo nom f s 0 0.14 0 0.07 +gauldos gauldo nom f p 0 0.14 0 0.07 +gaule gaule nom f s 0.85 2.5 0.75 1.89 +gauleiter gauleiter nom m s 0.12 0.68 0.12 0.68 +gauler gauler ver 0.75 1.28 0.35 0.95 inf; +gaulerais gauler ver 0.75 1.28 0.01 0 cnd:pre:1s; +gaulerait gauler ver 0.75 1.28 0 0.07 cnd:pre:3s; +gaules gaule nom f p 0.85 2.5 0.1 0.61 +gaulis gaulis nom m 0 0.34 0 0.34 +gaulle gaulle nom f s 0 0.07 0 0.07 +gaullisme gaullisme nom m s 0 1.49 0 1.49 +gaulliste gaulliste adj s 0.01 2.43 0.01 1.62 +gaullistes gaulliste nom p 0 4.05 0 3.58 +gaulois gaulois nom m 2.56 8.85 2.47 2.64 +gauloise gaulois adj f s 1.36 3.04 0.17 1.28 +gauloisement gauloisement adv 0 0.07 0 0.07 +gauloiseries gauloiserie nom f p 0 0.07 0 0.07 +gauloises gaulois adj f p 1.36 3.04 0.19 0.47 +gaulthérie gaulthérie nom f s 0.01 0 0.01 0 +gaulèrent gauler ver 0.75 1.28 0 0.07 ind:pas:3p; +gaulé gauler ver m s 0.75 1.28 0.2 0.14 par:pas; +gaulée gauler ver f s 0.75 1.28 0.19 0 par:pas; +gaupe gaupe nom f s 0 0.07 0 0.07 +gauss gauss nom m 0.01 0 0.01 0 +gaussaient gausser ver 0.15 2.64 0 0.68 ind:imp:3p; +gaussait gausser ver 0.15 2.64 0.01 0.61 ind:imp:3s; +gaussant gausser ver 0.15 2.64 0.01 0.14 par:pre; +gausse gausser ver 0.15 2.64 0.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gaussent gausser ver 0.15 2.64 0.03 0.07 ind:pre:3p; +gausser gausser ver 0.15 2.64 0.02 0.41 inf; +gausserai gausser ver 0.15 2.64 0 0.07 ind:fut:1s; +gausserait gausser ver 0.15 2.64 0 0.07 cnd:pre:3s; +gaussez gausser ver 0.15 2.64 0.01 0 imp:pre:2p; +gaussèrent gausser ver 0.15 2.64 0 0.14 ind:pas:3p; +gaussé gausser ver m s 0.15 2.64 0 0.14 par:pas; +gaussée gausser ver f s 0.15 2.64 0 0.07 par:pas; +gava gaver ver 4.19 9.39 0 0.07 ind:pas:3s; +gavage gavage nom m s 0.06 0.54 0.06 0.54 +gavai gaver ver 4.19 9.39 0 0.07 ind:pas:1s; +gavaient gaver ver 4.19 9.39 0.03 0.34 ind:imp:3p; +gavais gaver ver 4.19 9.39 0.02 0.07 ind:imp:1s; +gavait gaver ver 4.19 9.39 0.23 0.88 ind:imp:3s; +gavant gaver ver 4.19 9.39 0.05 0.54 par:pre; +gave gaver ver 4.19 9.39 1.22 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gavent gaver ver 4.19 9.39 0.19 0.34 ind:pre:3p; +gaver gaver ver 4.19 9.39 0.5 1.55 inf; +gavera gaver ver 4.19 9.39 0.01 0.07 ind:fut:3s; +gaveraient gaver ver 4.19 9.39 0.01 0.07 cnd:pre:3p; +gaves gaver ver 4.19 9.39 0.11 0 ind:pre:2s; +gavez gaver ver 4.19 9.39 0.3 0.07 imp:pre:2p;ind:pre:2p; +gavial gavial nom m s 0 0.07 0 0.07 +gaviot gaviot nom m s 0 0.2 0 0.2 +gavons gaver ver 4.19 9.39 0.03 0.07 imp:pre:1p;ind:pre:1p;;imp:pre:1p; +gavroche gavroche nom m s 0.01 0.34 0.01 0.27 +gavroches gavroche nom m p 0.01 0.34 0 0.07 +gavé gaver ver m s 4.19 9.39 0.61 1.76 par:pas; +gavée gaver ver f s 4.19 9.39 0.43 1.08 par:pas; +gavées gaver ver f p 4.19 9.39 0.01 0.34 par:pas; +gavés gaver ver m p 4.19 9.39 0.43 1.08 par:pas; +gay gay adj m s 20.33 0.34 18.27 0.34 +gayac gayac nom m s 0 0.07 0 0.07 +gays gay nom m p 7.6 0.14 3.94 0.07 +gaz gaz nom m 36.33 28.65 36.33 28.65 +gazage gazage nom m s 0.02 0.07 0.02 0.07 +gazait gazer ver 5.39 1.82 0.02 0.41 ind:imp:3s; +gaze gazer ver 5.39 1.82 3.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gazelle gazelle nom f s 2.39 3.92 1.98 2.77 +gazelles gazelle nom f p 2.39 3.92 0.4 1.15 +gazer gazer ver 5.39 1.82 0.68 0.2 inf; +gazera gazer ver 5.39 1.82 0.11 0 ind:fut:3s; +gazerait gazer ver 5.39 1.82 0 0.07 cnd:pre:3s; +gazes gaze nom f p 0.93 3.85 0.11 0.34 +gazette gazette nom f s 0.42 2.43 0.26 1.01 +gazettes gazette nom f p 0.42 2.43 0.16 1.42 +gazeuse gazeux adj f s 2.26 1.89 1.42 1.35 +gazeuses gazeux adj f p 2.26 1.89 0.48 0.27 +gazeux gazeux adj m 2.26 1.89 0.37 0.27 +gazez gazer ver 5.39 1.82 0.01 0 ind:pre:2p; +gazier gazier nom m s 0.03 1.08 0.02 0.68 +gaziers gazier nom m p 0.03 1.08 0.01 0.41 +gazinière gazinière nom f s 0.14 0.14 0.01 0.14 +gazinières gazinière nom f p 0.14 0.14 0.12 0 +gazoduc gazoduc nom m s 0.22 0 0.22 0 +gazogène gazogène nom m s 0 1.62 0 1.49 +gazogènes gazogène nom m p 0 1.62 0 0.14 +gazole gazole nom m s 0.22 0 0.22 0 +gazoline gazoline nom f s 0.01 0.14 0.01 0.14 +gazomètre gazomètre nom m s 0.02 0.07 0.02 0.07 +gazométrie gazométrie nom f s 0.02 0 0.02 0 +gazon gazon nom m s 3.81 7.77 3.58 6.96 +gazonné gazonné adj m s 0.05 0.27 0 0.14 +gazonnée gazonné adj f s 0.05 0.27 0.05 0.14 +gazons gazon nom m p 3.81 7.77 0.22 0.81 +gazouilla gazouiller ver 0.79 0.95 0 0.07 ind:pas:3s; +gazouillaient gazouiller ver 0.79 0.95 0.12 0.07 ind:imp:3p; +gazouillait gazouiller ver 0.79 0.95 0.03 0.2 ind:imp:3s; +gazouillant gazouiller ver 0.79 0.95 0.2 0.2 par:pre; +gazouillante gazouillant adj f s 0.14 0.27 0 0.14 +gazouillants gazouillant adj m p 0.14 0.27 0 0.07 +gazouille gazouiller ver 0.79 0.95 0.13 0.14 imp:pre:2s;ind:pre:3s; +gazouillement gazouillement nom m s 0.13 0.2 0.12 0.14 +gazouillements gazouillement nom m p 0.13 0.2 0.01 0.07 +gazouillent gazouiller ver 0.79 0.95 0.17 0.14 ind:pre:3p; +gazouiller gazouiller ver 0.79 0.95 0.11 0.14 inf; +gazouilles gazouiller ver 0.79 0.95 0.03 0 ind:pre:2s; +gazouilleurs gazouilleur adj m p 0 0.07 0 0.07 +gazouillis gazouillis nom m 0.3 1.62 0.3 1.62 +gazpacho gazpacho nom m s 0.22 0 0.22 0 +gazé gazé adj m s 0.32 0.2 0.17 0.07 +gazée gazer ver f s 5.39 1.82 0.01 0.07 par:pas; +gazées gazer ver f p 5.39 1.82 0.02 0 par:pas; +gazéifier gazéifier ver 0.02 0 0.01 0 inf; +gazéifiée gazéifier ver f s 0.02 0 0.01 0 par:pas; +gazés gazer ver m p 5.39 1.82 0.75 0.07 par:pas; +gaélique gaélique nom s 0.17 0.14 0.17 0.14 +gaîment gaîment adv 0.03 0.47 0.03 0.47 +gaîté gaîté nom f s 0.55 6.35 0.55 6.28 +gaîtés gaîté nom f p 0.55 6.35 0 0.07 +geai geai nom m s 0.27 1.62 0.24 0.81 +geais geai nom m p 0.27 1.62 0.03 0.81 +gecko gecko nom m s 0.32 0 0.26 0 +geckos gecko nom m p 0.32 0 0.07 0 +geez geez nom m s 0.13 0 0.13 0 +geignaient geindre ver 0.59 5.68 0 0.07 ind:imp:3p; +geignais geindre ver 0.59 5.68 0.02 0 ind:imp:2s; +geignait geindre ver 0.59 5.68 0.02 1.35 ind:imp:3s; +geignant geignant adj m s 0.1 0.74 0.1 0.27 +geignante geignant adj f s 0.1 0.74 0 0.34 +geignantes geignant adj f p 0.1 0.74 0 0.14 +geignard geignard nom m s 0.22 0.34 0.16 0.2 +geignarde geignard adj f s 0.22 2.43 0.1 1.01 +geignardes geignard adj f p 0.22 2.43 0 0.47 +geignardises geignardise nom f p 0 0.07 0 0.07 +geignards geignard adj m p 0.22 2.43 0.04 0.14 +geignement geignement nom m s 0.11 0.61 0.01 0.27 +geignements geignement nom m p 0.11 0.61 0.1 0.34 +geignent geindre ver 0.59 5.68 0.04 0.14 ind:pre:3p; +geignez geindre ver 0.59 5.68 0 0.14 imp:pre:2p;ind:pre:2p; +geignit geindre ver 0.59 5.68 0 0.27 ind:pas:3s; +geindre geindre nom m s 1.41 1.96 1.41 1.96 +geins geindre ver 0.59 5.68 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +geint geindre ver m s 0.59 5.68 0.14 1.35 ind:pre:3s;par:pas; +geisha geisha nom f s 2.6 0.47 2.23 0.34 +geishas geisha nom f p 2.6 0.47 0.37 0.14 +gel gel nom m s 4.75 6.69 4.61 6.22 +gela geler ver 23.41 17.03 0 0.2 ind:pas:3s; +gelaient geler ver 23.41 17.03 0.02 0.47 ind:imp:3p; +gelais geler ver 23.41 17.03 0.07 0.07 ind:imp:1s;ind:imp:2s; +gelait geler ver 23.41 17.03 0.91 1.69 ind:imp:3s; +gelant geler ver 23.41 17.03 0.17 0.27 par:pre; +geler geler ver 23.41 17.03 3.18 2.09 inf; +gelez geler ver 23.41 17.03 0.19 0.14 imp:pre:2p;ind:pre:2p; +geline geline nom f s 0.01 0 0.01 0 +gelinotte gelinotte nom f s 0 0.07 0 0.07 +gelons geler ver 23.41 17.03 0.03 0 imp:pre:1p;ind:pre:1p; +gels gel nom m p 4.75 6.69 0.15 0.47 +gelure gelure nom f s 0.15 0.34 0.02 0.27 +gelures gelure nom f p 0.15 0.34 0.13 0.07 +gelât geler ver 23.41 17.03 0 0.07 sub:imp:3s; +gelé geler ver m s 23.41 17.03 5.2 2.43 par:pas; +gelée gelée nom f s 4.31 7.57 3.92 6.42 +gelées geler ver f p 23.41 17.03 0.71 2.09 par:pas; +gelés geler ver m p 23.41 17.03 0.96 0.68 par:pas; +gemme gemme nom f s 0.3 0.88 0.12 0.41 +gemmes gemme nom f p 0.3 0.88 0.19 0.47 +gemmologie gemmologie nom f s 0.01 0 0.01 0 +gencive gencive nom f s 1.35 4.26 0.18 0.81 +gencives gencive nom f p 1.35 4.26 1.17 3.45 +gendarme gendarme nom m s 13.67 43.72 5.53 16.15 +gendarmer gendarmer ver 0.01 0 0.01 0 inf; +gendarmerie gendarmerie nom f s 4.46 9.32 4.44 8.78 +gendarmeries gendarmerie nom f p 4.46 9.32 0.01 0.54 +gendarmes gendarme nom m p 13.67 43.72 8.14 27.57 +gendelettres gendelettre nom m p 0 0.07 0 0.07 +gendre gendre nom m s 5.71 8.11 5.71 7.5 +gendres gendre nom m p 5.71 8.11 0 0.61 +genet genet nom m s 0.01 0 0.01 0 +genevois genevois adj m 0 0.54 0 0.27 +genevoises genevois adj f p 0 0.54 0 0.27 +gengis_khan gengis_khan nom m s 0 0.14 0 0.14 +gengiskhanide gengiskhanide adj s 0 0.07 0 0.07 +genièvre genièvre nom m s 0.63 2.16 0.63 2.16 +genou genou nom m s 54.24 127.91 11.43 23.92 +genouillère genouillère nom f s 0.19 0.2 0.01 0 +genouillères genouillère nom f p 0.19 0.2 0.17 0.2 +genoux genou nom m p 54.24 127.91 42.82 103.99 +genre genre nom m s 221.51 157.91 219.66 155.2 +genres genre nom m p 221.51 157.91 1.85 2.7 +genreux genreux adj m 0 0.07 0 0.07 +gens gens nom p 594.29 409.39 594.29 409.39 +gent gent nom f s 0.49 1.15 0.4 1.15 +gentamicine gentamicine nom f s 0.04 0 0.04 0 +gente gent adj f s 1.56 1.08 1.39 0.41 +gentes gent adj f p 1.56 1.08 0.18 0.68 +gentiane gentiane nom f s 0.15 0.95 0.14 0.61 +gentianes gentiane nom f p 0.15 0.95 0.01 0.34 +gentil gentil adj m s 192.64 64.86 134.11 37.36 +gentilhomme gentilhomme nom m s 6.89 3.51 5.43 2.43 +gentilhommière gentilhommier nom f s 0.01 0.68 0 0.41 +gentilhommières gentilhommier nom f p 0.01 0.68 0.01 0.27 +gentilice gentilice adj m s 0 0.07 0 0.07 +gentille gentil adj f s 192.64 64.86 41.44 18.31 +gentilles gentil adj f p 192.64 64.86 3.12 2.77 +gentillesse gentillesse nom f s 7.56 17.5 6.96 15.27 +gentillesses gentillesse nom f p 7.56 17.5 0.6 2.23 +gentillet gentillet adj m s 0.17 0.47 0.04 0.34 +gentillets gentillet adj m p 0.17 0.47 0.11 0.07 +gentillette gentillet adj f s 0.17 0.47 0.02 0.07 +gentils gentil adj m p 192.64 64.86 13.98 6.42 +gentilshommes gentilhomme nom m p 6.89 3.51 1.47 1.08 +gentiment gentiment adv 11.32 21.76 11.32 21.76 +gentleman gentleman nom m s 13.08 4.19 10.31 2.97 +gentleman_farmer gentleman_farmer nom m s 0.14 0.27 0.14 0.2 +gentlemen gentleman nom m p 13.08 4.19 2.77 1.22 +gentleman_farmer gentleman_farmer nom m p 0.14 0.27 0 0.07 +gentry gentry nom f s 0.28 0 0.28 0 +gents gent nom f p 0.49 1.15 0.09 0 +genèse genèse nom f s 0.15 1.01 0.15 1.01 +genévrier genévrier nom m s 0.29 0.88 0.27 0.27 +genévriers genévrier nom m p 0.29 0.88 0.02 0.61 +genêt genêt nom m s 0.25 5.34 0.23 1.49 +genêtière genêtière nom f s 0 0.07 0 0.07 +genêts genêt nom m p 0.25 5.34 0.01 3.85 +gerba gerber ver 8.28 4.66 0.13 0.07 ind:pas:3s; +gerbaient gerber ver 8.28 4.66 0.02 0 ind:imp:3p; +gerbais gerber ver 8.28 4.66 0.1 0.14 ind:imp:1s;ind:imp:2s; +gerbait gerber ver 8.28 4.66 0.06 0.2 ind:imp:3s; +gerbant gerber ver 8.28 4.66 0.17 0.14 par:pre; +gerbe gerbe nom f s 2.06 14.19 1.69 6.49 +gerbent gerber ver 8.28 4.66 0.05 0.07 ind:pre:3p; +gerber gerber ver 8.28 4.66 6.49 2.64 inf; +gerberais gerber ver 8.28 4.66 0.01 0 cnd:pre:1s; +gerberas gerbera nom m p 0.01 0.2 0.01 0.2 +gerbes gerbe nom f p 2.06 14.19 0.38 7.7 +gerbeuse gerbeur nom f s 0.04 0.14 0.04 0.07 +gerbeuses gerbeur nom f p 0.04 0.14 0 0.07 +gerbier gerbier nom m s 0.45 0.14 0.45 0.07 +gerbille gerbille nom f s 0.29 0 0.29 0 +gerbière gerbier nom f s 0.45 0.14 0 0.07 +gerboise gerboise nom f s 0.06 0.14 0.04 0.14 +gerboises gerboise nom f p 0.06 0.14 0.02 0 +gerbèrent gerber ver 8.28 4.66 0.01 0 ind:pas:3p; +gerbé gerber ver m s 8.28 4.66 0.82 0.68 par:pas; +gerbée gerber ver f s 8.28 4.66 0 0.07 par:pas; +gerbées gerber ver f p 8.28 4.66 0 0.07 par:pas; +gerbés gerber ver m p 8.28 4.66 0 0.07 par:pas; +gerce gercer ver 0.26 1.76 0.01 0 ind:pre:3s; +gercent gercer ver 0.26 1.76 0 0.14 ind:pre:3p; +gercer gercer ver 0.26 1.76 0.01 0.07 inf; +gerces gerce nom f p 0 0.07 0 0.07 +gercèrent gercer ver 0.26 1.76 0 0.07 ind:pas:3p; +gercé gercer ver m s 0.26 1.76 0.01 0.2 par:pas; +gercée gercer ver f s 0.26 1.76 0 0.27 par:pas; +gercées gercer ver f p 0.26 1.76 0.23 0.68 par:pas; +gercés gercer ver m p 0.26 1.76 0 0.27 par:pas; +gerfaut gerfaut nom m s 0.03 0.07 0.03 0 +gerfauts gerfaut nom m p 0.03 0.07 0 0.07 +germa germer ver 1.02 3.04 0.02 0.14 ind:pas:3s; +germaient germer ver 1.02 3.04 0 0.14 ind:imp:3p; +germain germain adj m s 1.38 2.23 0.91 0.88 +germaine germain adj f s 1.38 2.23 0.25 0.47 +germaines germain adj f p 1.38 2.23 0.01 0.27 +germains germain nom m p 0.45 1.15 0.45 1.15 +germait germer ver 1.02 3.04 0.1 0.27 ind:imp:3s; +germanique germanique adj s 1.18 4.73 0.69 3.45 +germaniques germanique adj p 1.18 4.73 0.49 1.28 +germanisation germanisation nom f s 0.01 0 0.01 0 +germanisme germanisme nom m s 0 0.2 0 0.2 +germaniste germaniste nom s 0 0.07 0 0.07 +germanité germanité nom f s 0.02 0 0.02 0 +germanium germanium nom m s 0 0.07 0 0.07 +germano germano adv 0.2 0 0.2 0 +germano_anglais germano_anglais adj f p 0 0.07 0 0.07 +germano_belge germano_belge adj f s 0.01 0 0.01 0 +germano_irlandais germano_irlandais adj m 0.03 0 0.03 0 +germano_russe germano_russe adj m s 0 0.27 0 0.27 +germano_soviétique germano_soviétique adj s 0 1.82 0 1.82 +germanophile germanophile nom s 0 0.07 0 0.07 +germanophilie germanophilie nom f s 0 0.07 0 0.07 +germanophone germanophone adj s 0.01 0 0.01 0 +germant germant adj m s 0 0.07 0 0.07 +germe germe nom m s 1.98 3.78 0.55 2.03 +germen germen nom m s 0 0.07 0 0.07 +germent germer ver 1.02 3.04 0.05 0.2 ind:pre:3p; +germer germer ver 1.02 3.04 0.23 1.01 inf; +germera germer ver 1.02 3.04 0.01 0 ind:fut:3s; +germerait germer ver 1.02 3.04 0.1 0.07 cnd:pre:3s; +germes germe nom m p 1.98 3.78 1.42 1.76 +germinal germinal nom m s 0 0.14 0 0.14 +germinale germinal adj f s 0.01 0.14 0.01 0.07 +germination germination nom f s 0.01 0.54 0 0.34 +germinations germination nom f p 0.01 0.54 0.01 0.2 +germé germer ver m s 1.02 3.04 0.39 0.47 par:pas; +germée germer ver f s 1.02 3.04 0 0.07 par:pas; +germées germé adj f p 0.02 0.27 0 0.2 +gerris gerris nom m 0.03 0 0.03 0 +gerçait gercer ver 0.26 1.76 0 0.07 ind:imp:3s; +gerçures gerçure nom f p 0.01 0.61 0.01 0.61 +gestapiste gestapiste nom m s 0 0.14 0 0.14 +gestapo gestapo nom f s 0.69 1.69 0.69 1.69 +gestation gestation nom f s 0.53 1.82 0.53 1.76 +gestations gestation nom f p 0.53 1.82 0 0.07 +geste geste nom s 40.78 271.08 31.41 172.03 +gestes geste nom p 40.78 271.08 9.36 99.05 +gesticula gesticuler ver 0.99 6.96 0 0.14 ind:pas:3s; +gesticulai gesticuler ver 0.99 6.96 0 0.07 ind:pas:1s; +gesticulaient gesticuler ver 0.99 6.96 0 0.54 ind:imp:3p; +gesticulais gesticuler ver 0.99 6.96 0 0.07 ind:imp:1s; +gesticulait gesticuler ver 0.99 6.96 0.02 1.62 ind:imp:3s; +gesticulant gesticuler ver 0.99 6.96 0.01 1.49 par:pre; +gesticulante gesticulant adj f s 0.01 1.42 0 0.47 +gesticulantes gesticulant adj f p 0.01 1.42 0 0.07 +gesticulants gesticulant adj m p 0.01 1.42 0 0.41 +gesticulateurs gesticulateur nom m p 0.01 0.07 0.01 0.07 +gesticulation gesticulation nom f s 0.21 1.69 0.15 0.88 +gesticulations gesticulation nom f p 0.21 1.69 0.06 0.81 +gesticulatoire gesticulatoire adj s 0 0.07 0 0.07 +gesticule gesticuler ver 0.99 6.96 0.35 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gesticulent gesticuler ver 0.99 6.96 0 0.68 ind:pre:3p; +gesticuler gesticuler ver 0.99 6.96 0.58 1.35 inf; +gesticules gesticuler ver 0.99 6.96 0.01 0 ind:pre:2s; +gesticulé gesticuler ver m s 0.99 6.96 0.01 0.07 par:pas; +gestion gestion nom f s 4.23 2.3 4.23 2.3 +gestionnaire gestionnaire nom s 0.15 0.14 0.08 0.07 +gestionnaires gestionnaire nom p 0.15 0.14 0.07 0.07 +gestuel gestuel adj m s 0.04 0.07 0.02 0 +gestuelle gestuel nom f s 0.07 0.14 0.07 0.14 +geyser geyser nom m s 0.22 1.01 0.17 0.61 +geysers geyser nom m p 0.22 1.01 0.05 0.41 +geôle geôle nom f s 0.27 2.36 0.09 1.89 +geôles geôle nom f p 0.27 2.36 0.18 0.47 +geôlier geôlier nom m s 1.6 5 1.05 2.97 +geôliers geôlier nom m p 1.6 5 0.54 1.55 +geôlière geôlier nom f s 1.6 5 0.01 0.27 +geôlières geôlier nom f p 1.6 5 0 0.2 +ghanéens ghanéen adj m p 0 0.07 0 0.07 +ghetto ghetto nom m s 5.42 3.24 5 2.77 +ghettos ghetto nom m p 5.42 3.24 0.41 0.47 +ghât ghât nom m s 0 0.27 0 0.27 +gi gi adv 1.18 0.14 1.18 0.14 +giaour giaour nom m s 0.1 0.54 0.1 0.34 +giaours giaour nom m p 0.1 0.54 0 0.2 +gibbeuse gibbeux adj f s 0 0.2 0 0.07 +gibbeux gibbeux adj m s 0 0.2 0 0.14 +gibbon gibbon nom m s 0.19 0.14 0.02 0.07 +gibbons gibbon nom m p 0.19 0.14 0.16 0.07 +gibbosité gibbosité nom f s 0 0.14 0 0.14 +gibecière gibecière nom f s 0 1.55 0 1.28 +gibecières gibecière nom f p 0 1.55 0 0.27 +gibelet gibelet nom m s 0 0.2 0 0.2 +gibelin gibelin nom m s 0.01 0.14 0.01 0 +gibeline gibelin adj f s 0 0.07 0 0.07 +gibelins gibelin nom m p 0.01 0.14 0 0.14 +gibelotte gibelotte nom f s 0 0.47 0 0.41 +gibelottes gibelotte nom f p 0 0.47 0 0.07 +giberne giberne nom f s 0 0.68 0 0.34 +gibernes giberne nom f p 0 0.68 0 0.34 +gibet gibet nom m s 1.43 1.89 1.09 1.35 +gibets gibet nom m p 1.43 1.89 0.34 0.54 +gibier gibier nom m s 6.5 11.69 5.79 10.88 +gibiers gibier nom m p 6.5 11.69 0.7 0.81 +giboulée giboulée nom f s 0.03 1.28 0.03 0.34 +giboulées giboulée nom f p 0.03 1.28 0 0.95 +giboyeuse giboyeux adj f s 0.01 0.68 0 0.41 +giboyeuses giboyeux adj f p 0.01 0.68 0 0.07 +giboyeux giboyeux adj m 0.01 0.68 0.01 0.2 +gibus gibus nom m 0.01 1.01 0.01 1.01 +gicla gicler ver 3.68 7.97 0 0.74 ind:pas:3s; +giclaient gicler ver 3.68 7.97 0 0.41 ind:imp:3p; +giclais gicler ver 3.68 7.97 0 0.14 ind:imp:1s; +giclait gicler ver 3.68 7.97 0.07 1.76 ind:imp:3s; +giclant gicler ver 3.68 7.97 0 0.2 par:pre; +gicle gicler ver 3.68 7.97 1.69 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +giclement giclement nom m s 0 0.14 0 0.07 +giclements giclement nom m p 0 0.14 0 0.07 +giclent gicler ver 3.68 7.97 0.04 0.2 ind:pre:3p; +gicler gicler ver 3.68 7.97 0.76 2.16 inf; +giclera gicler ver 3.68 7.97 0.02 0 ind:fut:3s; +gicleront gicler ver 3.68 7.97 0.01 0 ind:fut:3p; +gicles gicler ver 3.68 7.97 0.45 0 ind:pre:2s; +gicleur gicleur nom m s 0.45 0.07 0.45 0.07 +giclez gicler ver 3.68 7.97 0.01 0 imp:pre:2p; +giclèrent gicler ver 3.68 7.97 0 0.07 ind:pas:3p; +giclé gicler ver m s 3.68 7.97 0.62 0.47 par:pas; +giclée giclée nom f s 0.38 3.65 0.35 2.77 +giclées giclée nom f p 0.38 3.65 0.02 0.88 +gidien gidien adj m s 0 0.2 0 0.07 +gidienne gidien adj f s 0 0.2 0 0.07 +gidiennes gidien adj f p 0 0.2 0 0.07 +gidouille gidouille nom f s 0 0.2 0 0.2 +gifla gifler ver 6.77 15.88 0.11 2.7 ind:pas:3s; +giflai gifler ver 6.77 15.88 0 0.07 ind:pas:1s; +giflaient gifler ver 6.77 15.88 0.01 0.41 ind:imp:3p; +giflais gifler ver 6.77 15.88 0.16 0.07 ind:imp:1s; +giflait gifler ver 6.77 15.88 0.07 1.35 ind:imp:3s; +giflant gifler ver 6.77 15.88 0.01 0.68 par:pre; +gifle gifle nom f s 4.47 16.01 3.6 9.86 +giflent gifler ver 6.77 15.88 0 0.41 ind:pre:3p; +gifler gifler ver 6.77 15.88 1.96 4.05 inf; +giflera gifler ver 6.77 15.88 0.03 0 ind:fut:3s; +giflerai gifler ver 6.77 15.88 0.01 0 ind:fut:1s; +giflerais gifler ver 6.77 15.88 0.1 0.14 cnd:pre:1s;cnd:pre:2s; +giflerait gifler ver 6.77 15.88 0.07 0 cnd:pre:3s; +gifles gifle nom f p 4.47 16.01 0.88 6.15 +gifleuse gifleur nom f s 0.01 0.07 0.01 0.07 +giflez gifler ver 6.77 15.88 0.14 0 imp:pre:2p;ind:pre:2p; +giflât gifler ver 6.77 15.88 0 0.2 sub:imp:3s; +giflé gifler ver m s 6.77 15.88 1.63 2.36 par:pas; +giflée gifler ver f s 6.77 15.88 0.84 1.08 par:pas; +giflées gifler ver f p 6.77 15.88 0.01 0.14 par:pas; +giflés gifler ver m p 6.77 15.88 0 0.41 par:pas; +gifts gift nom m p 0.02 0 0.02 0 +gig gig nom m s 0.15 0.14 0.15 0.14 +giga giga adj s 0.23 0.14 0.19 0.14 +gigabits gigabit nom m p 0.05 0 0.05 0 +gigahertz gigahertz nom m 0.07 0 0.07 0 +gigantesque gigantesque adj s 4.59 21.69 3.87 15.81 +gigantesques gigantesque adj p 4.59 21.69 0.72 5.88 +gigantisme gigantisme nom m s 0.2 0.34 0.2 0.27 +gigantismes gigantisme nom m p 0.2 0.34 0 0.07 +gigantomachie gigantomachie nom f s 0 0.14 0 0.14 +gigaoctets gigaoctet nom m p 0.01 0 0.01 0 +gigas giga adj p 0.23 0.14 0.04 0 +gigogne gigogne adj f s 0.03 0.81 0.01 0.54 +gigognes gigogne adj p 0.03 0.81 0.02 0.27 +gigolette gigolette nom f s 0.14 0.14 0.14 0.14 +gigolo gigolo nom m s 1.23 2.3 1.01 1.69 +gigolos gigolo nom m p 1.23 2.3 0.22 0.61 +gigolpince gigolpince nom m s 0.01 1.01 0.01 0.81 +gigolpinces gigolpince nom m p 0.01 1.01 0 0.2 +gigot gigot nom m s 1.46 3.92 1.41 3.18 +gigota gigoter ver 1.85 3.31 0 0.07 ind:pas:3s; +gigotaient gigoter ver 1.85 3.31 0.01 0.47 ind:imp:3p; +gigotait gigoter ver 1.85 3.31 0.05 0.68 ind:imp:3s; +gigotant gigoter ver 1.85 3.31 0.03 0.34 par:pre; +gigote gigoter ver 1.85 3.31 0.43 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gigotements gigotement nom m p 0 0.34 0 0.34 +gigotent gigoter ver 1.85 3.31 0.04 0.47 ind:pre:3p; +gigoter gigoter ver 1.85 3.31 1.07 0.88 inf; +gigotes gigoter ver 1.85 3.31 0.04 0 ind:pre:2s; +gigotez gigoter ver 1.85 3.31 0.17 0 imp:pre:2p;ind:pre:2p; +gigots gigot nom m p 1.46 3.92 0.05 0.74 +gigoté gigoter ver m s 1.85 3.31 0.01 0 par:pas; +gigue gigue nom f s 0.32 1.22 0.32 1.22 +gilbert gilbert nom m s 0 0.2 0 0.2 +gilet gilet nom m s 6.06 15.14 5.13 13.72 +giletières giletier nom f p 0 0.07 0 0.07 +gilets gilet nom m p 6.06 15.14 0.93 1.42 +gilles gille nom m p 2.43 0.41 2.43 0.41 +gimmick gimmick nom m s 0.01 0.14 0.01 0.07 +gimmicks gimmick nom m p 0.01 0.14 0 0.07 +gin gin nom m s 6.24 4.39 6.15 4.32 +gin_fizz gin_fizz nom m 0.04 1.01 0.04 1.01 +gin_rami gin_rami nom m s 0.04 0.07 0.04 0.07 +gin_rummy gin_rummy nom m s 0.05 0.14 0.05 0.14 +gineste gineste nom m s 0.01 0.41 0.01 0.41 +gingembre gingembre nom m s 1.5 0.88 1.5 0.88 +gingin gingin nom m s 0 0.14 0 0.14 +gingivite gingivite nom f s 0.18 0 0.18 0 +ginkgo ginkgo nom m s 0.06 0 0.06 0 +gins gin nom m p 6.24 4.39 0.09 0.07 +ginseng ginseng nom m s 0.49 0.2 0.49 0.2 +giocoso giocoso adj m s 0 0.07 0 0.07 +gipsy gipsy nom s 0.03 0 0.03 0 +girafe girafe nom f s 3.5 3.18 2.71 1.89 +girafeau girafeau nom m s 0.01 0 0.01 0 +girafes girafe nom f p 3.5 3.18 0.79 1.28 +girafon girafon nom m s 0.01 0 0.01 0 +girandes girande nom f p 0 0.07 0 0.07 +girandole girandole nom f s 0 0.74 0 0.07 +girandoles girandole nom f p 0 0.74 0 0.68 +giration giration nom f s 0.01 0.68 0 0.61 +girations giration nom f p 0.01 0.68 0.01 0.07 +giratoire giratoire adj f s 0.02 0.07 0.02 0.07 +giraudistes giraudiste nom p 0 0.07 0 0.07 +gire gire nom m s 0 0.14 0 0.07 +girelles girel nom f p 0 0.07 0 0.07 +girer girer ver 0 0.07 0 0.07 inf; +gires gire nom m p 0 0.14 0 0.07 +girie girie nom f s 0 0.27 0 0.07 +giries girie nom f p 0 0.27 0 0.2 +girl girl nom f s 7.47 9.59 4.41 1.89 +girl_friend girl_friend nom f s 0.14 0 0.14 0 +girl_scout girl_scout nom f s 0.06 0.14 0.06 0.14 +girls girl nom f p 7.47 9.59 3.06 7.7 +girofle girofle nom m s 0.83 0.81 0.81 0.74 +girofles girofle nom m p 0.83 0.81 0.01 0.07 +giroflier giroflier nom m s 0 0.07 0 0.07 +giroflée giroflée nom f s 0.24 0.88 0.22 0.07 +giroflées giroflée nom f p 0.24 0.88 0.02 0.81 +girolle girolle nom f s 0.29 0.88 0.01 0.07 +girolles girolle nom f p 0.29 0.88 0.28 0.81 +giron giron nom m s 0.39 2.03 0.39 2.03 +girond girond adj m s 0.17 1.96 0.01 0.07 +gironde girond adj f s 0.17 1.96 0.15 1.35 +girondes girond adj f p 0.17 1.96 0 0.47 +girondin girondin adj m s 0 0.54 0 0.14 +girondine girondin adj f s 0 0.54 0 0.07 +girondines girondin adj f p 0 0.54 0 0.07 +girondins girondin adj m p 0 0.54 0 0.27 +gironds girond adj m p 0.17 1.96 0.01 0.07 +girouettait girouetter ver 0 0.14 0 0.07 ind:imp:3s; +girouettant girouetter ver 0 0.14 0 0.07 par:pre; +girouette girouette nom f s 0.66 2.36 0.47 1.76 +girouettes girouette nom f p 0.66 2.36 0.19 0.61 +gis gésir ver 4.77 15.68 0.26 0 ind:pre:1s;ind:pre:2s; +gisaient gésir ver 4.77 15.68 0.11 2.5 ind:imp:3p; +gisais gésir ver 4.77 15.68 0.49 0.27 ind:imp:1s;ind:imp:2s; +gisait gésir ver 4.77 15.68 1.2 7.3 ind:imp:3s; +gisant gésir ver 4.77 15.68 0.33 1.35 par:pre; +gisante gisant adj f s 0.33 1.89 0.14 0.41 +gisantes gisant adj f p 0.33 1.89 0 0.14 +gisants gisant nom m p 0.02 2.57 0 1.22 +gisement gisement nom m s 1.25 0.95 0.73 0.61 +gisements gisement nom m p 1.25 0.95 0.53 0.34 +gisent gésir ver 4.77 15.68 0.22 1.42 ind:pre:3p; +gisions gésir ver 4.77 15.68 0 0.14 ind:imp:1p; +gisquette gisquette nom f s 0 1.42 0 0.68 +gisquettes gisquette nom f p 0 1.42 0 0.74 +gitan gitan nom m s 7.5 8.72 1.6 1.89 +gitane gitan nom f s 7.5 8.72 2.32 3.11 +gitanes gitan nom f p 7.5 8.72 0.18 1.76 +gitans gitan nom m p 7.5 8.72 3.39 1.96 +giton giton nom m s 1.25 0.68 1.23 0.47 +gitons giton nom m p 1.25 0.68 0.02 0.2 +givrage givrage nom m s 0.01 0 0.01 0 +givrait givrer ver 1.59 1.35 0.01 0.2 ind:imp:3s; +givrante givrant adj f s 0.01 0.07 0.01 0.07 +givre givre nom m s 0.33 5.14 0.32 5.07 +givrer givrer ver 1.59 1.35 0.01 0.14 inf; +givres givre nom m p 0.33 5.14 0.01 0.07 +givré givré adj m s 1.52 2.23 1 0.61 +givrée givrer ver f s 1.59 1.35 0.67 0.34 par:pas; +givrées givré adj f p 1.52 2.23 0.04 0.14 +givrés givré adj m p 1.52 2.23 0.22 0.47 +gla_gla gla_gla adj m s 0 0.14 0 0.14 +glabelle glabelle nom f s 0.01 0 0.01 0 +glabre glabre adj s 0.06 2.64 0.05 1.69 +glabres glabre adj p 0.06 2.64 0.01 0.95 +glace glace nom f s 66.82 91.01 58.09 76.01 +glacent glacer ver 7.21 25.74 0.03 0.81 ind:pre:3p; +glacer glacer ver 7.21 25.74 0.3 0.95 inf; +glacera glacer ver 7.21 25.74 0.04 0 ind:fut:3s; +glaceront glacer ver 7.21 25.74 0 0.07 ind:fut:3p; +glaces glace nom f p 66.82 91.01 8.73 15 +glacez glacer ver 7.21 25.74 0.01 0 ind:pre:2p; +glaciaire glaciaire adj s 0.58 0.34 0.5 0.14 +glaciaires glaciaire adj p 0.58 0.34 0.09 0.2 +glacial glacial adj m s 3.81 13.92 2.44 8.18 +glaciale glacial adj f s 3.81 13.92 1.3 4.46 +glacialement glacialement adv 0.1 0.07 0.1 0.07 +glaciales glacial adj f p 3.81 13.92 0.07 1.01 +glacials glacial adj m p 3.81 13.92 0 0.14 +glaciation glaciation nom f s 0.03 0.34 0.03 0.27 +glaciations glaciation nom f p 0.03 0.34 0 0.07 +glaciaux glacial adj m p 3.81 13.92 0 0.14 +glacier glacier nom m s 5 3.72 4.34 2.16 +glaciers glacier nom m p 5 3.72 0.67 1.55 +glaciologue glaciologue nom s 0.14 0 0.14 0 +glacis glacis nom m 0.02 3.58 0.02 3.58 +glacière glacière nom f s 1.6 2.91 1.44 2.64 +glacières glacière nom f p 1.6 2.91 0.17 0.27 +glacèrent glacer ver 7.21 25.74 0.14 0.2 ind:pas:3p; +glacé glacé adj m s 11.42 40.27 5.28 17.5 +glacée glacé adj f s 11.42 40.27 4.67 13.85 +glacées glacé adj f p 11.42 40.27 0.64 4.59 +glacés glacé adj m p 11.42 40.27 0.84 4.32 +gladiateur gladiateur nom m s 2.84 1.62 1.38 0.74 +gladiateurs gladiateur nom m p 2.84 1.62 1.46 0.88 +gladiatrices gladiatrice nom f p 0.04 0 0.04 0 +glaglate glaglater ver 0 0.54 0 0.47 ind:pre:1s;ind:pre:3s; +glaglater glaglater ver 0 0.54 0 0.07 inf; +glaire glaire nom f s 0.48 1.35 0.22 0.34 +glaires glaire nom f p 0.48 1.35 0.26 1.01 +glaireuse glaireux adj f s 0.02 1.42 0 0.41 +glaireuses glaireux adj f p 0.02 1.42 0 0.2 +glaireux glaireux adj m 0.02 1.42 0.02 0.81 +glaise glaise nom f s 1.71 8.85 1.71 8.72 +glaises glaise nom f p 1.71 8.85 0 0.14 +glaiseuse glaiseux adj f s 0 1.15 0 0.14 +glaiseuses glaiseux adj f p 0 1.15 0 0.07 +glaiseux glaiseux adj m 0 1.15 0 0.95 +glaive glaive nom m s 1.95 4.39 1.71 3.85 +glaives glaive nom m p 1.95 4.39 0.24 0.54 +glamour glamour nom m s 1.49 0.07 1.49 0.07 +glana glaner ver 1.2 4.93 0 0.14 ind:pas:3s; +glanage glanage nom m s 0.18 0 0.18 0 +glanaient glaner ver 1.2 4.93 0 0.14 ind:imp:3p; +glanais glaner ver 1.2 4.93 0 0.07 ind:imp:1s; +glanait glaner ver 1.2 4.93 0.02 0.68 ind:imp:3s; +glanant glaner ver 1.2 4.93 0.14 0.41 par:pre; +gland gland nom m s 2.95 5.27 2.14 3.04 +glandage glandage nom m s 0.03 0 0.03 0 +glandais glander ver 2.88 2.57 0.05 0.07 ind:imp:1s; +glandait glander ver 2.88 2.57 0.03 0.14 ind:imp:3s; +glande glander ver 2.88 2.57 0.86 0.88 ind:pre:1s;ind:pre:3s; +glandent glander ver 2.88 2.57 0.04 0.2 ind:pre:3p; +glander glander ver 2.88 2.57 1.37 1.15 inf; +glandes glande nom f p 2.2 4.66 1.46 4.32 +glandeur glandeur nom m s 0.48 0.41 0.33 0.14 +glandeurs glandeur nom m p 0.48 0.41 0.15 0.27 +glandez glander ver 2.88 2.57 0.08 0.07 ind:pre:2p; +glandiez glander ver 2.88 2.57 0.02 0 ind:imp:2p; +glandilleuse glandilleuse adj m s 0 0.68 0 0.34 +glandilleuses glandilleuse adj m p 0 0.68 0 0.34 +glandilleux glandilleux adj m 0 1.22 0 1.22 +glandons glander ver 2.88 2.57 0.01 0 ind:pre:1p; +glandouillant glandouiller ver 0.13 0.74 0.01 0 par:pre; +glandouille glandouiller ver 0.13 0.74 0.01 0.27 ind:pre:1s;ind:pre:3s; +glandouiller glandouiller ver 0.13 0.74 0.1 0.41 inf; +glandouilleur glandouilleur nom m s 0 0.07 0 0.07 +glandouillez glandouiller ver 0.13 0.74 0.01 0 ind:pre:2p; +glandouillé glandouiller ver m s 0.13 0.74 0 0.07 par:pas; +glands gland nom m p 2.95 5.27 0.81 2.23 +glandu glandu nom s 0.57 0 0.31 0 +glandulaire glandulaire adj s 0.19 0.74 0.06 0.41 +glandulaires glandulaire adj p 0.19 0.74 0.12 0.34 +glanduleuse glanduleux adj f s 0 0.07 0 0.07 +glandus glandu nom p 0.57 0 0.26 0 +glandé glander ver m s 2.88 2.57 0.21 0.07 par:pas; +glane glaner ver 1.2 4.93 0.25 0.2 ind:pre:1s;ind:pre:3s; +glanent glaner ver 1.2 4.93 0.02 0.14 ind:pre:3p; +glaner glaner ver 1.2 4.93 0.62 1.69 inf; +glanes glane nom f p 0 0.14 0 0.07 +glaneur glaneur nom m s 0.18 0 0.06 0 +glaneuse glaneur nom f s 0.18 0 0.13 0 +glanez glaner ver 1.2 4.93 0.01 0 ind:pre:2p; +glanure glanure nom f s 0 0.07 0 0.07 +glané glaner ver m s 1.2 4.93 0.09 0.27 par:pas; +glanée glaner ver f s 1.2 4.93 0 0.27 par:pas; +glanées glaner ver f p 1.2 4.93 0.01 0.47 par:pas; +glanés glaner ver m p 1.2 4.93 0.05 0.47 par:pas; +glapi glapir ver m s 0.23 6.76 0 0.41 par:pas; +glapie glapir ver f s 0.23 6.76 0 0.07 par:pas; +glapir glapir ver 0.23 6.76 0.04 1.22 inf; +glapirent glapir ver 0.23 6.76 0 0.14 ind:pas:3p; +glapissaient glapir ver 0.23 6.76 0.14 0.2 ind:imp:3p; +glapissait glapir ver 0.23 6.76 0 0.81 ind:imp:3s; +glapissant glapir ver 0.23 6.76 0.01 0.61 par:pre; +glapissante glapissant adj f s 0.01 0.61 0 0.34 +glapissantes glapissant adj f p 0.01 0.61 0 0.07 +glapissants glapissant adj m p 0.01 0.61 0.01 0.07 +glapissement glapissement nom m s 0.02 1.76 0.02 0.81 +glapissements glapissement nom m p 0.02 1.76 0 0.95 +glapissent glapir ver 0.23 6.76 0 0.14 ind:pre:3p; +glapisseurs glapisseur adj m p 0.01 0 0.01 0 +glapissions glapir ver 0.23 6.76 0 0.07 ind:imp:1p; +glapit glapir ver 0.23 6.76 0.04 3.11 ind:pre:3s;ind:pas:3s; +glaréole glaréole nom f s 0.04 0 0.04 0 +glas glas nom m 1.28 4.05 1.28 4.05 +glasnost glasnost nom f s 0.03 0 0.03 0 +glass glass nom m 1.23 1.28 1.05 1.28 +glasses glass nom m p 1.23 1.28 0.17 0 +glaucome glaucome nom m s 0.27 0.2 0.27 0.2 +glauque glauque adj s 1.4 9.32 1.12 6.82 +glauquement glauquement adv 0 0.07 0 0.07 +glauques glauque adj p 1.4 9.32 0.28 2.5 +glaviot glaviot nom m s 0.13 1.35 0.11 0.74 +glaviotaient glavioter ver 0.02 1.22 0 0.07 ind:imp:3p; +glaviotait glavioter ver 0.02 1.22 0 0.14 ind:imp:3s; +glaviotant glavioter ver 0.02 1.22 0 0.14 par:pre; +glaviote glavioter ver 0.02 1.22 0.01 0.34 ind:pre:1s;ind:pre:3s; +glavioter glavioter ver 0.02 1.22 0.01 0.54 inf; +glavioteurs glavioteur nom m p 0 0.07 0 0.07 +glaviots glaviot nom m p 0.13 1.35 0.02 0.61 +glaviotte glaviotter ver 0 0.07 0 0.07 ind:pre:3s; +glaça glacer ver 7.21 25.74 0.01 1.49 ind:pas:3s; +glaçage glaçage nom m s 0.77 0.07 0.75 0.07 +glaçages glaçage nom m p 0.77 0.07 0.01 0 +glaçaient glacer ver 7.21 25.74 0.01 0.47 ind:imp:3p; +glaçais glacer ver 7.21 25.74 0 0.07 ind:imp:1s; +glaçait glacer ver 7.21 25.74 0.06 2.97 ind:imp:3s; +glaçant glacer ver 7.21 25.74 0.04 0.07 par:pre; +glaçante glaçant adj f s 0.04 0.27 0.01 0.27 +glaçon glaçon nom m s 7.4 5.47 1.55 0.95 +glaçons glaçon nom m p 7.4 5.47 5.85 4.53 +glaçure glaçure nom f s 0 0.14 0 0.07 +glaçures glaçure nom f p 0 0.14 0 0.07 +glaïeul glaïeul nom m s 0.38 1.89 0.01 0 +glaïeuls glaïeul nom m p 0.38 1.89 0.36 1.89 +glide glide nom m s 0.07 0 0.07 0 +glioblastome glioblastome nom m s 0.04 0 0.04 0 +gliome gliome nom m s 0.05 0 0.05 0 +glissa glisser ver 34.75 229.32 0.78 30.61 ind:pas:3s; +glissade glissade nom f s 0.64 4.26 0.57 2.5 +glissades glissade nom f p 0.64 4.26 0.07 1.76 +glissai glisser ver 34.75 229.32 0.05 2.43 ind:pas:1s; +glissaient glisser ver 34.75 229.32 0.35 10.14 ind:imp:3p; +glissais glisser ver 34.75 229.32 0.09 2.3 ind:imp:1s;ind:imp:2s; +glissait glisser ver 34.75 229.32 1 27.97 ind:imp:3s; +glissandi glissando nom m p 0.01 0.27 0 0.07 +glissando glissando nom m s 0.01 0.27 0.01 0.14 +glissandos glissando nom m p 0.01 0.27 0 0.07 +glissant glissant adj m s 3.54 8.24 1.76 3.18 +glissante glissant adj f s 3.54 8.24 1.34 2.64 +glissantes glissant adj f p 3.54 8.24 0.35 1.49 +glissants glissant adj m p 3.54 8.24 0.09 0.95 +glisse glisser ver 34.75 229.32 8.99 31.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +glisse_la_moi glisse_la_moi nom f s 0.1 0 0.1 0 +glissement glissement nom m s 0.48 7.5 0.35 6.62 +glissements glissement nom m p 0.48 7.5 0.13 0.88 +glissent glisser ver 34.75 229.32 1.22 8.65 ind:pre:3p; +glisser glisser ver 34.75 229.32 9.02 61.62 inf;;inf;;inf;; +glissera glisser ver 34.75 229.32 0.17 0.68 ind:fut:3s; +glisserai glisser ver 34.75 229.32 0.41 0.27 ind:fut:1s; +glisseraient glisser ver 34.75 229.32 0.01 0.41 cnd:pre:3p; +glisserais glisser ver 34.75 229.32 0.04 0.54 cnd:pre:1s;cnd:pre:2s; +glisserait glisser ver 34.75 229.32 0.15 0.95 cnd:pre:3s; +glisserez glisser ver 34.75 229.32 0.12 0 ind:fut:2p; +glisseriez glisser ver 34.75 229.32 0.02 0.07 cnd:pre:2p; +glisserons glisser ver 34.75 229.32 0.01 0.07 ind:fut:1p; +glisseront glisser ver 34.75 229.32 0.05 0.27 ind:fut:3p; +glisses glisser ver 34.75 229.32 0.72 0.41 ind:pre:2s; +glissez glisser ver 34.75 229.32 1.08 0.27 imp:pre:2p;ind:pre:2p; +glissions glisser ver 34.75 229.32 0.03 1.01 ind:imp:1p; +glissière glissière nom f s 0.24 1.96 0.22 1.69 +glissières glissière nom f p 0.24 1.96 0.03 0.27 +glissoire glissoire nom f s 0.04 0 0.04 0 +glissons glisser ver 34.75 229.32 0.47 0.54 imp:pre:1p;ind:pre:1p; +glissâmes glisser ver 34.75 229.32 0 0.2 ind:pas:1p; +glissât glisser ver 34.75 229.32 0 0.34 sub:imp:3s; +glissèrent glisser ver 34.75 229.32 0.01 2.5 ind:pas:3p; +glissé glisser ver m s 34.75 229.32 8.77 22.97 par:pas; +glissée glisser ver f s 34.75 229.32 0.39 5.2 par:pas; +glissées glisser ver f p 34.75 229.32 0.04 1.01 par:pas; +glissés glisser ver m p 34.75 229.32 0.07 2.43 par:pas; +global global adj m s 3.59 2.57 2.38 1.15 +globale global adj f s 3.59 2.57 1.19 1.42 +globalement globalement adv 0.68 0.61 0.68 0.61 +globalisation globalisation nom f s 0.19 0 0.19 0 +globalisé globaliser ver m s 0.01 0 0.01 0 par:pas; +globalité globalité nom f s 0.04 0.07 0.04 0.07 +globaux global adj m p 3.59 2.57 0.02 0 +globe globe nom m s 4.21 11.89 3.17 8.58 +globe_trotter globe_trotter nom m s 0.22 0.41 0.2 0.27 +globe_trotter globe_trotter nom m p 0.22 0.41 0.02 0.14 +globes globe nom m p 4.21 11.89 1.04 3.31 +globulaire globulaire adj s 0.09 0.34 0.04 0.14 +globulaires globulaire adj p 0.09 0.34 0.04 0.2 +globule globule nom m s 3.25 1.28 0.38 0.27 +globules globule nom m p 3.25 1.28 2.88 1.01 +globuleuse globuleux adj f s 0.27 4.8 0 0.14 +globuleux globuleux adj m 0.27 4.8 0.27 4.66 +globuline globuline nom f s 0.01 0 0.01 0 +glockenspiel glockenspiel nom m s 0.03 0.07 0.03 0.07 +gloire gloire nom s 35.27 50.88 34.78 48.51 +gloires gloire nom f p 35.27 50.88 0.48 2.36 +glomérule glomérule nom m s 0 0.07 0 0.07 +glop glop nom f s 0.01 0.27 0.01 0.27 +gloria gloria nom m s 2.66 0.81 2.66 0.81 +gloriette gloriette nom f s 0.1 0.34 0.1 0.27 +gloriettes gloriette nom f p 0.1 0.34 0 0.07 +glorieuse glorieux adj f s 7.41 18.31 2.44 5.54 +glorieusement glorieusement adv 0.34 1.82 0.34 1.82 +glorieuses glorieux adj f p 7.41 18.31 0.28 1.96 +glorieux glorieux adj m 7.41 18.31 4.68 10.81 +glorifia glorifier ver 1.82 3.65 0.01 0.14 ind:pas:3s; +glorifiaient glorifier ver 1.82 3.65 0.01 0.27 ind:imp:3p; +glorifiait glorifier ver 1.82 3.65 0.12 0.27 ind:imp:3s; +glorifiant glorifier ver 1.82 3.65 0.02 0.2 par:pre; +glorification glorification nom f s 0.22 0.2 0.22 0.2 +glorifie glorifier ver 1.82 3.65 0.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +glorifient glorifier ver 1.82 3.65 0.22 0.2 ind:pre:3p; +glorifier glorifier ver 1.82 3.65 0.56 1.22 inf; +glorifiez glorifier ver 1.82 3.65 0.08 0.07 imp:pre:2p;ind:pre:2p; +glorifions glorifier ver 1.82 3.65 0.05 0.07 imp:pre:1p;ind:pre:1p; +glorifié glorifier ver m s 1.82 3.65 0.21 0.54 par:pas; +glorifiées glorifier ver f p 1.82 3.65 0 0.07 par:pas; +glorifiés glorifier ver m p 1.82 3.65 0 0.14 par:pas; +gloriole gloriole nom f s 0.03 1.69 0.03 1.69 +glosaient gloser ver 0 0.61 0 0.07 ind:imp:3p; +glose glose nom f s 0.01 0.61 0.01 0.2 +gloser gloser ver 0 0.61 0 0.27 inf; +gloses glose nom f p 0.01 0.61 0 0.41 +glossaire glossaire nom m s 0.04 0.07 0.04 0.07 +glossateurs glossateur nom m p 0 0.07 0 0.07 +glossématique glossématique nom f s 0 0.07 0 0.07 +glosé gloser ver m s 0 0.61 0 0.07 par:pas; +glosées gloser ver f p 0 0.61 0 0.07 par:pas; +glotte glotte nom f s 0.12 2.03 0.12 2.03 +glottique glottique adj m s 0 0.07 0 0.07 +glouglou glouglou nom m s 0.24 1.22 0.23 0.61 +glouglous glouglou nom m p 0.24 1.22 0.01 0.61 +glougloutait glouglouter ver 0 0.61 0 0.14 ind:imp:3s; +glougloutant glouglouter ver 0 0.61 0 0.14 par:pre; +glougloute glouglouter ver 0 0.61 0 0.27 ind:pre:3s; +glougloutement glougloutement nom m s 0.01 0.14 0.01 0.14 +glouglouter glouglouter ver 0 0.61 0 0.07 inf; +gloussa glousser ver 0.98 5.61 0 1.08 ind:pas:3s; +gloussaient glousser ver 0.98 5.61 0 0.41 ind:imp:3p; +gloussait glousser ver 0.98 5.61 0.03 0.88 ind:imp:3s; +gloussant glousser ver 0.98 5.61 0.04 0.61 par:pre; +gloussante gloussant adj f s 0.01 0.54 0.01 0.14 +gloussantes gloussant adj f p 0.01 0.54 0 0.14 +gloussants gloussant adj m p 0.01 0.54 0 0.07 +glousse glousser ver 0.98 5.61 0.38 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gloussement gloussement nom m s 0.26 3.72 0.21 1.22 +gloussements gloussement nom m p 0.26 3.72 0.05 2.5 +gloussent glousser ver 0.98 5.61 0.03 0.07 ind:pre:3p; +glousser glousser ver 0.98 5.61 0.43 1.42 inf; +glousserait glousser ver 0.98 5.61 0 0.07 cnd:pre:3s; +gloussez glousser ver 0.98 5.61 0.02 0 ind:pre:2p; +gloussèrent glousser ver 0.98 5.61 0 0.07 ind:pas:3p; +gloussé glousser ver m s 0.98 5.61 0.05 0.34 par:pas; +glouton glouton nom m s 1.1 0.54 0.78 0.34 +gloutonnant gloutonner ver 0 0.14 0 0.14 par:pre; +gloutonne glouton adj f s 0.69 1.69 0.22 0.74 +gloutonnement gloutonnement adv 0 0.54 0 0.54 +gloutonnerie gloutonnerie nom f s 0.27 0.74 0.27 0.74 +gloutons glouton nom m p 1.1 0.54 0.32 0.07 +gloxinias gloxinia nom m p 0 0.07 0 0.07 +glu glu nom f s 0.56 2.57 0.56 2.43 +gluant gluant adj m s 1.96 15.2 1.23 4.73 +gluante gluant adj f s 1.96 15.2 0.4 5.81 +gluantes gluant adj f p 1.96 15.2 0.07 2.09 +gluants gluant adj m p 1.96 15.2 0.26 2.57 +glucagon glucagon nom m s 0.04 0 0.04 0 +glucide glucide nom m s 0.51 0.2 0 0.07 +glucides glucide nom m p 0.51 0.2 0.51 0.14 +gluconique gluconique adj s 0.01 0 0.01 0 +glucose glucose nom m s 2.08 0.2 2.08 0.2 +glue gluer ver 0.42 1.22 0.35 0.14 ind:pre:3s; +gluent gluer ver 0.42 1.22 0 0.07 ind:pre:3p; +gluon gluon nom m s 0.04 0 0.04 0 +glus glu nom f p 0.56 2.57 0 0.14 +glutamate glutamate nom m s 0.16 0 0.16 0 +gluten gluten nom m s 0.06 0.07 0.06 0.07 +glycine glycine nom f s 0.26 4.26 0.21 1.96 +glycines glycine nom f p 0.26 4.26 0.05 2.3 +glycol glycol nom m s 0.12 0 0.12 0 +glycoprotéine glycoprotéine nom f s 0.03 0 0.03 0 +glycémie glycémie nom f s 0.44 0 0.44 0 +glycérine glycérine nom f s 1.04 0.14 1.04 0.14 +glycérol glycérol nom m s 0.01 0 0.01 0 +glyphe glyphe nom m s 0.24 0 0.06 0 +glyphes glyphe nom m p 0.24 0 0.18 0 +glèbe glèbe nom f s 0.51 0.95 0.51 0.88 +glèbes glèbe nom f p 0.51 0.95 0 0.07 +glène glène nom f s 0 0.07 0 0.07 +glénoïde glénoïde adj f s 0.03 0 0.03 0 +gna_gna gna_gna ono 0.14 0.14 0.14 0.14 +gnafron gnafron nom m s 0.01 0.34 0.01 0.2 +gnafrons gnafron nom m p 0.01 0.34 0 0.14 +gnagnagna gnagnagna ono 0.01 1.35 0.01 1.35 +gnangnan gnangnan adj 0.23 0.47 0.23 0.47 +gnard gnard nom m s 0 0.34 0 0.2 +gnards gnard nom m p 0 0.34 0 0.14 +gnaule gnaule nom f s 0.01 0 0.01 0 +gnian_gnian gnian_gnian nom m s 0.01 0 0.01 0 +gniard gniard nom m s 0 1.15 0 0.27 +gniards gniard nom m p 0 1.15 0 0.88 +gniouf gniouf nom f s 0 0.27 0 0.27 +gnocchi gnocchi nom m s 2.02 0.07 1.06 0 +gnocchis gnocchi nom m p 2.02 0.07 0.96 0.07 +gnognote gnognote nom f s 0.04 0.41 0.04 0.41 +gnognotte gnognotte nom f s 0.23 0.2 0.23 0.2 +gnole gnole nom f s 0.55 1.01 0.55 1.01 +gnome gnome nom m s 2.95 2.03 2.36 1.01 +gnomes gnome nom m p 2.95 2.03 0.59 1.01 +gnon gnon nom m s 1.02 1.82 0.42 0.54 +gnons gnon nom m p 1.02 1.82 0.59 1.28 +gnose gnose nom f s 0 0.07 0 0.07 +gnosticisme gnosticisme nom m s 0.01 0.07 0.01 0.07 +gnostique gnostique adj m s 0.04 0 0.01 0 +gnostiques gnostique adj m p 0.04 0 0.03 0 +gnou gnou nom m s 0.2 0.27 0.17 0 +gnouf gnouf nom m s 0.41 1.01 0.41 1.01 +gnous gnou nom m p 0.2 0.27 0.03 0.27 +gnôle gnôle nom f s 3.24 1.55 3.24 1.55 +go go nom m s 15.32 2.7 15.32 2.7 +goal goal nom m s 1.32 1.55 1.32 1.49 +goals goal nom m p 1.32 1.55 0 0.07 +goba gober ver 5.9 5.68 0.01 0.34 ind:pas:3s; +gobage gobage nom m s 0.04 0.27 0.04 0.07 +gobages gobage nom m p 0.04 0.27 0 0.2 +gobaient gober ver 5.9 5.68 0.01 0.14 ind:imp:3p; +gobais gober ver 5.9 5.68 0.04 0.07 ind:imp:1s; +gobait gober ver 5.9 5.68 0.06 0.27 ind:imp:3s; +gobant gober ver 5.9 5.68 0.03 0.41 par:pre; +gobe gober ver 5.9 5.68 0.86 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gobe_mouches gobe_mouches nom m 0.02 0.14 0.02 0.14 +gobelet gobelet nom m s 3.25 4.46 2.21 2.16 +gobelets gobelet nom m p 3.25 4.46 1.04 2.3 +gobelin gobelin nom m s 0.19 0.41 0.04 0 +gobelins gobelin nom m p 0.19 0.41 0.14 0.41 +gobelottes gobelotter ver 0 0.07 0 0.07 ind:pre:2s; +gobent gober ver 5.9 5.68 0.19 0.34 ind:pre:3p; +gober gober ver 5.9 5.68 2.5 2.09 inf; +gobera gober ver 5.9 5.68 0.06 0 ind:fut:3s; +goberaient gober ver 5.9 5.68 0.04 0 cnd:pre:3p; +goberait gober ver 5.9 5.68 0.02 0.07 cnd:pre:3s; +goberge goberger ver 0.03 0.74 0.01 0.27 ind:pre:1s;ind:pre:3s; +gobergeait goberger ver 0.03 0.74 0 0.07 ind:imp:3s; +gobergent goberger ver 0.03 0.74 0.01 0.14 ind:pre:3p; +goberger goberger ver 0.03 0.74 0 0.14 inf; +gobergez goberger ver 0.03 0.74 0.01 0.07 imp:pre:2p; +gobergé goberger ver m s 0.03 0.74 0 0.07 par:pas; +goberont gober ver 5.9 5.68 0.04 0 ind:fut:3p; +gobes gober ver 5.9 5.68 0.28 0.14 ind:pre:2s; +gobet gobet nom m s 0 0.14 0 0.07 +gobets gobet nom m p 0 0.14 0 0.07 +gobette gobeter ver 0 0.41 0 0.41 ind:pre:3s; +gobeur gobeur nom m s 0.12 0.07 0.03 0 +gobeurs gobeur nom m p 0.12 0.07 0 0.07 +gobeuse gobeur nom f s 0.12 0.07 0.09 0 +gobez gober ver 5.9 5.68 0.31 0 imp:pre:2p;ind:pre:2p; +gobions gober ver 5.9 5.68 0 0.07 ind:imp:1p; +gobèrent gober ver 5.9 5.68 0 0.07 ind:pas:3p; +gobé gober ver m s 5.9 5.68 1.44 0.74 par:pas; +gobée gober ver f s 5.9 5.68 0 0.14 par:pas; +gobées gober ver f p 5.9 5.68 0.02 0 par:pas; +gobés gober ver m p 5.9 5.68 0 0.14 par:pas; +goda goder ver 0.7 1.62 0.01 0 ind:pas:3s; +godaille godailler ver 0.01 0.27 0.01 0.14 ind:pre:3s; +godaillera godailler ver 0.01 0.27 0 0.07 ind:fut:3s; +godailles godailler ver 0.01 0.27 0 0.07 ind:pre:2s; +godait goder ver 0.7 1.62 0 0.07 ind:imp:3s; +godant goder ver 0.7 1.62 0 0.07 par:pre; +godasse godasse nom f s 2.99 8.92 0.46 1.55 +godasses godasse nom f p 2.99 8.92 2.53 7.36 +goddam goddam ono 0.01 0 0.01 0 +gode goder ver 0.7 1.62 0.32 0.68 imp:pre:2s;ind:pre:3s; +godelureau godelureau nom m s 0.01 0.34 0.01 0.2 +godelureaux godelureau nom m p 0.01 0.34 0 0.14 +godemiché godemiché nom m s 0.63 0.81 0.59 0.61 +godemichés godemiché nom m p 0.63 0.81 0.04 0.2 +godent goder ver 0.7 1.62 0 0.07 ind:pre:3p; +goder goder ver 0.7 1.62 0 0.61 inf; +goderas goder ver 0.7 1.62 0 0.07 ind:fut:2s; +godes goder ver 0.7 1.62 0.36 0.07 ind:pre:2s; +godet godet nom m s 0.33 7.5 0.29 4.32 +godets godet nom m p 0.33 7.5 0.04 3.18 +godiche godiche nom f s 0.09 0 0.07 0 +godiches godiche adj p 0.07 0.95 0.02 0.27 +godillais godiller ver 0 0.61 0 0.07 ind:imp:1s; +godillait godiller ver 0 0.61 0 0.07 ind:imp:3s; +godillant godiller ver 0 0.61 0 0.2 par:pre; +godille godille nom f s 0.2 0.88 0 0.88 +godiller godiller ver 0 0.61 0 0.14 inf; +godilles godille nom f p 0.2 0.88 0.2 0 +godilleur godilleur nom m s 0 0.14 0 0.14 +godillot godillot nom m s 0.35 3.24 0.04 0.47 +godillots godillot nom m p 0.35 3.24 0.32 2.77 +godillé godiller ver m s 0 0.61 0 0.07 par:pas; +godronnés godronner ver m p 0 0.07 0 0.07 par:pas; +godrons godron nom m p 0 0.07 0 0.07 +goglu goglu nom m s 0.02 0 0.02 0 +gogo gogo nom m s 2.19 1.96 1.85 1.42 +gogol gogol adj s 0.3 0.14 0.29 0.07 +gogols gogol adj p 0.3 0.14 0.01 0.07 +gogos gogo nom m p 2.19 1.96 0.35 0.54 +gogs gog nom m p 0.03 0.88 0.03 0.88 +goguenard goguenard adj m s 0.01 6.15 0.01 3.85 +goguenarda goguenarder ver 0 0.2 0 0.07 ind:pas:3s; +goguenarde goguenard adj f s 0.01 6.15 0 1.01 +goguenardes goguenard adj f p 0.01 6.15 0 0.14 +goguenards goguenard adj m p 0.01 6.15 0 1.15 +goguenots goguenot nom m p 0 0.2 0 0.2 +gogues gogues nom m p 0.23 2.57 0.23 2.57 +goguette goguette nom f s 0.47 1.35 0.47 1.15 +goguettes goguette nom f p 0.47 1.35 0 0.2 +goinfraient goinfrer ver 0.98 1.62 0 0.07 ind:imp:3p; +goinfrait goinfrer ver 0.98 1.62 0 0.14 ind:imp:3s; +goinfre goinfre nom s 0.52 0.61 0.34 0.34 +goinfrent goinfrer ver 0.98 1.62 0.03 0.07 ind:pre:3p; +goinfrer goinfrer ver 0.98 1.62 0.67 0.95 inf; +goinfreras goinfrer ver 0.98 1.62 0 0.07 ind:fut:2s; +goinfrerie goinfrerie nom f s 0.12 0.41 0.12 0.41 +goinfres goinfre nom p 0.52 0.61 0.17 0.27 +goinfrez goinfrer ver 0.98 1.62 0.03 0.07 imp:pre:2p;ind:pre:2p; +goinfré goinfrer ver m s 0.98 1.62 0.06 0 par:pas; +goinfrée goinfrer ver f s 0.98 1.62 0.01 0.07 par:pas; +goinfrés goinfrer ver m p 0.98 1.62 0.01 0.07 par:pas; +goitre goitre nom m s 0.11 0.68 0.1 0.54 +goitres goitre nom m p 0.11 0.68 0.01 0.14 +goitreux goitreux nom m 0 0.34 0 0.34 +gold gold adj 3.11 0.41 3.11 0.41 +golden golden nom s 2.37 0.68 2.37 0.61 +goldens golden nom p 2.37 0.68 0 0.07 +goldo goldo nom f s 0 0.61 0 0.54 +goldos goldo nom f p 0 0.61 0 0.07 +golem golem nom m s 0.1 0.07 0.1 0.07 +golf golf nom m s 14.14 7.3 14.05 7.16 +golf_club golf_club nom m s 0.01 0.07 0.01 0.07 +golfe golfe nom m s 1.69 6.49 1.55 5.95 +golfes golfe nom m p 1.69 6.49 0.14 0.54 +golfeur golfeur nom m s 0.86 0.34 0.58 0.07 +golfeurs golfeur nom m p 0.86 0.34 0.22 0.07 +golfeuse golfeur nom f s 0.86 0.34 0.05 0.07 +golfeuses golfeur nom f p 0.86 0.34 0.01 0.14 +golfs golf nom m p 14.14 7.3 0.09 0.14 +golgotha golgotha nom m s 0 0.07 0 0.07 +goliath goliath nom m s 0 0.07 0 0.07 +gombo gombo nom m s 2.44 0.14 2 0.14 +gombos gombo nom m p 2.44 0.14 0.43 0 +gomina gomina nom f s 0.14 1.01 0.14 1.01 +gominer gominer ver 0.29 1.82 0 0.07 inf; +gominé gominer ver m s 0.29 1.82 0.04 0.61 par:pas; +gominée gominer ver f s 0.29 1.82 0 0.34 par:pas; +gominées gominer ver f p 0.29 1.82 0 0.07 par:pas; +gominés gominer ver m p 0.29 1.82 0.25 0.74 par:pas; +gomma gommer ver 0.57 4.73 0 0.2 ind:pas:3s; +gommage gommage nom m s 0.25 0.07 0.25 0.07 +gommait gommer ver 0.57 4.73 0 0.47 ind:imp:3s; +gommant gommer ver 0.57 4.73 0.02 0.2 par:pre; +gomme gomme nom f s 3.81 9.93 3.21 9.26 +gomment gommer ver 0.57 4.73 0 0.07 ind:pre:3p; +gommer gommer ver 0.57 4.73 0.26 1.69 inf; +gommerait gommer ver 0.57 4.73 0 0.2 cnd:pre:3s; +gommes gomme nom f p 3.81 9.93 0.6 0.68 +gommette gommette nom f s 0.03 0 0.03 0 +gommeuse gommeux adj f s 0 0.34 0 0.14 +gommeux gommeux nom m 0.05 0.68 0.05 0.68 +gommier gommier nom m s 0.06 0.27 0.05 0 +gommiers gommier nom m p 0.06 0.27 0.01 0.27 +gommé gommer ver m s 0.57 4.73 0.19 0.68 par:pas; +gommée gommer ver f s 0.57 4.73 0.01 0.41 par:pas; +gommées gommer ver f p 0.57 4.73 0.01 0.14 par:pas; +gommés gommer ver m p 0.57 4.73 0.01 0.14 par:pas; +goménol goménol nom m s 0 0.07 0 0.07 +goménolée goménolé adj f s 0 0.14 0 0.14 +gon gon nom m s 0.86 0 0.86 0 +gonade gonade nom f s 0.16 0.07 0.04 0 +gonades gonade nom f p 0.16 0.07 0.12 0.07 +gonadotropes gonadotrope adj f p 0.01 0 0.01 0 +gonadotrophine gonadotrophine nom f s 0.01 0 0.01 0 +goncier goncier nom m s 0 0.14 0 0.14 +gond gond nom m s 0.91 2.97 0.04 0.14 +gonde gonder ver 0.01 0.07 0 0.07 ind:pre:3s; +gonder gonder ver 0.01 0.07 0.01 0 inf; +gondolaient gondoler ver 0.11 2.7 0 0.47 ind:imp:3p; +gondolais gondoler ver 0.11 2.7 0 0.14 ind:imp:1s;ind:imp:2s; +gondolait gondoler ver 0.11 2.7 0 0.27 ind:imp:3s; +gondolant gondoler ver 0.11 2.7 0 0.2 par:pre; +gondole gondole nom f s 1.26 4.93 1.01 3.31 +gondolement gondolement nom m s 0 0.07 0 0.07 +gondolent gondoler ver 0.11 2.7 0.01 0.2 ind:pre:3p; +gondoler gondoler ver 0.11 2.7 0.02 0.41 inf; +gondolera gondoler ver 0.11 2.7 0 0.07 ind:fut:3s; +gondoles gondole nom f p 1.26 4.93 0.25 1.62 +gondolier gondolier nom m s 0.72 1.15 0.59 0.74 +gondoliers gondolier nom m p 0.72 1.15 0.11 0.41 +gondolière gondolier nom f s 0.72 1.15 0.03 0 +gondolèrent gondoler ver 0.11 2.7 0 0.07 ind:pas:3p; +gondolé gondoler ver m s 0.11 2.7 0.01 0.14 par:pas; +gondolée gondolé adj f s 0.01 0.68 0 0.27 +gondolées gondolé adj f p 0.01 0.68 0 0.2 +gondolés gondolé adj m p 0.01 0.68 0 0.14 +gonds gond nom m p 0.91 2.97 0.87 2.84 +gone gone nom m s 1 0.14 1 0.14 +gonelle gonelle nom f s 0 0.14 0 0.14 +gonfalon gonfalon nom m s 0 0.2 0 0.14 +gonfaloniers gonfalonier nom m p 0 0.07 0 0.07 +gonfalons gonfalon nom m p 0 0.2 0 0.07 +gonfanon gonfanon nom m s 0 0.2 0 0.14 +gonfanons gonfanon nom m p 0 0.2 0 0.07 +gonfla gonfler ver 16.52 47.57 0.02 2.36 ind:pas:3s; +gonflable gonflable adj s 1.35 0.95 0.92 0.54 +gonflables gonflable adj p 1.35 0.95 0.44 0.41 +gonflage gonflage nom m s 0 0.2 0 0.2 +gonflaient gonfler ver 16.52 47.57 0 1.96 ind:imp:3p; +gonflais gonfler ver 16.52 47.57 0.02 0.07 ind:imp:1s; +gonflait gonfler ver 16.52 47.57 0.6 7.91 ind:imp:3s; +gonflant gonflant adj m s 0.21 0.54 0.19 0.34 +gonflante gonflant adj f s 0.21 0.54 0.01 0.14 +gonflantes gonflant adj f p 0.21 0.54 0 0.07 +gonflants gonflant adj m p 0.21 0.54 0.01 0 +gonfle gonfler ver 16.52 47.57 4.14 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gonflement gonflement nom m s 0.24 1.15 0.2 0.88 +gonflements gonflement nom m p 0.24 1.15 0.04 0.27 +gonflent gonfler ver 16.52 47.57 0.5 2.09 ind:pre:3p; +gonfler gonfler ver 16.52 47.57 3.17 5.68 inf; +gonflera gonfler ver 16.52 47.57 0.07 0.07 ind:fut:3s; +gonflerait gonfler ver 16.52 47.57 0.02 0.14 cnd:pre:3s; +gonfles gonfler ver 16.52 47.57 1.16 0.14 ind:pre:2s; +gonflette gonflette nom f s 0.46 0 0.46 0 +gonfleur gonfleur nom m s 0 0.2 0 0.2 +gonflez gonfler ver 16.52 47.57 1.2 0.07 imp:pre:2p;ind:pre:2p; +gonflèrent gonfler ver 16.52 47.57 0.01 0.61 ind:pas:3p; +gonflé gonfler ver m s 16.52 47.57 3.96 7.3 par:pas; +gonflée gonfler ver f s 16.52 47.57 0.8 3.92 par:pas; +gonflées gonflé adj f p 3.56 12.64 0.34 3.24 +gonflés gonflé adj m p 3.56 12.64 1.2 3.18 +gong gong nom m s 2.41 3.65 2.35 3.51 +gongoriste gongoriste adj m s 0 0.07 0 0.07 +gongs gong nom m p 2.41 3.65 0.06 0.14 +goniomètre goniomètre nom m s 0 0.07 0 0.07 +gonococcie gonococcie nom f s 0.03 0 0.03 0 +gonococcique gonococcique adj s 0.01 0 0.01 0 +gonocoque gonocoque nom m s 0.01 0.41 0 0.2 +gonocoques gonocoque nom m p 0.01 0.41 0.01 0.2 +gonorrhée gonorrhée nom f s 0.08 0 0.08 0 +gonze gonze nom m s 0.07 6.89 0.06 4.05 +gonzes gonze nom m p 0.07 6.89 0.01 2.84 +gonzesse gonzesse nom f s 11.29 15.61 7.74 7.57 +gonzesses gonzesse nom f p 11.29 15.61 3.56 8.04 +gopak gopak nom m s 0 0.07 0 0.07 +gopher gopher nom m s 0.02 0.07 0.02 0.07 +gord gord nom m s 0.25 0 0.25 0 +gordien gordien adj m s 0 0.2 0 0.14 +gordiens gordien adj m p 0 0.2 0 0.07 +gore gore adj s 0.57 0.14 0.57 0.14 +goret goret nom m s 0.85 1.28 0.81 0.95 +gorets goret nom m p 0.85 1.28 0.04 0.34 +gorge gorge nom s 30.87 86.82 29.57 82.64 +gorge_de_pigeon gorge_de_pigeon adj m s 0.01 0.14 0.01 0.14 +gorgea gorger ver 1.52 8.04 0.01 0.14 ind:pas:3s; +gorgeai gorger ver 1.52 8.04 0 0.14 ind:pas:1s; +gorgeaient gorger ver 1.52 8.04 0 0.14 ind:imp:3p; +gorgeais gorger ver 1.52 8.04 0 0.07 ind:imp:1s; +gorgeait gorger ver 1.52 8.04 0.01 0.47 ind:imp:3s; +gorgeant gorger ver 1.52 8.04 0.01 0.2 par:pre; +gorgent gorger ver 1.52 8.04 0.02 0.07 ind:pre:3p; +gorgeon gorgeon nom m s 0.01 1.01 0.01 0.95 +gorgeons gorger ver 1.52 8.04 0 0.07 ind:pre:1p; +gorger gorger ver 1.52 8.04 0.03 0.47 inf; +gorgerette gorgerette nom f s 0 0.07 0 0.07 +gorgerin gorgerin nom m s 0.01 0.07 0.01 0.07 +gorges gorge nom f p 30.87 86.82 1.3 4.19 +gorget gorget nom m s 0 0.07 0 0.07 +gorgez gorger ver 1.52 8.04 0 0.07 imp:pre:2p; +gorgone gorgone nom f s 0.02 0.41 0.02 0.41 +gorgonzola gorgonzola nom m s 0.22 0.34 0.22 0.34 +gorgèrent gorger ver 1.52 8.04 0 0.07 ind:pas:3p; +gorgé gorger ver m s 1.52 8.04 0.19 1.76 par:pas; +gorgée gorgée nom f s 5.7 20.27 4.97 13.31 +gorgées gorgée nom f p 5.7 20.27 0.72 6.96 +gorgés gorger ver m p 1.52 8.04 0.4 1.35 par:pas; +gorille gorille nom m s 6.06 2.77 3.55 2.03 +gorilles gorille nom m p 6.06 2.77 2.51 0.74 +gosier gosier nom m s 1.2 4.93 1.2 4.26 +gosiers gosier nom m p 1.2 4.93 0 0.68 +gospel gospel nom m s 0.61 0 0.61 0 +gosplan gosplan nom m s 0.1 0.07 0.1 0.07 +gosse gosse nom s 109.96 61.76 62.92 34.12 +gosseline gosseline nom f s 0 0.14 0 0.07 +gosselines gosseline nom f p 0 0.14 0 0.07 +gosses gosse nom p 109.96 61.76 47.03 27.64 +goth goth nom s 0.04 0.14 0.02 0 +gotha gotha nom m s 0.04 0.14 0.04 0.07 +gothas gotha nom m p 0.04 0.14 0 0.07 +gothique gothique adj s 0.99 6.55 0.89 3.85 +gothiques gothique adj p 0.99 6.55 0.1 2.7 +goths goth nom p 0.04 0.14 0.01 0.14 +goton goton nom f s 0 0.07 0 0.07 +gouache gouache nom f s 0.04 1.55 0.04 1.22 +gouaches gouache nom f p 0.04 1.55 0 0.34 +gouachez gouacher ver 0.01 0 0.01 0 ind:pre:2p; +gouailla gouailler ver 0 0.41 0 0.27 ind:pas:3s; +gouaille gouaille nom f s 0.01 1.49 0.01 1.49 +gouailleur gouailleur adj m s 0 1.28 0 0.61 +gouailleurs gouailleur adj m p 0 1.28 0 0.07 +gouailleuse gouailleur adj f s 0 1.28 0 0.54 +gouailleuses gouailleur adj f p 0 1.28 0 0.07 +gouaillé gouailler ver m s 0 0.41 0 0.07 par:pas; +goualante goualante nom f s 0.01 1.08 0.01 0.81 +goualantes goualante nom f p 0.01 1.08 0 0.27 +goualer goualer ver 0 0.14 0 0.14 inf; +gouape gouape nom f s 0.39 1.08 0.38 0.74 +gouapes gouape nom f p 0.39 1.08 0.01 0.34 +gouda gouda nom m s 0.03 0.07 0.03 0.07 +goudou goudou nom f s 0.09 0.14 0.06 0.07 +goudous goudou nom f p 0.09 0.14 0.03 0.07 +goudron goudron nom m s 3.4 7.64 3.4 7.5 +goudronnage goudronnage nom m s 0 0.14 0 0.14 +goudronne goudronner ver 0.38 1.01 0 0.07 ind:pre:3s; +goudronner goudronner ver 0.38 1.01 0.05 0.2 inf; +goudronneux goudronneux adj m 0 0.2 0 0.2 +goudronnez goudronner ver 0.38 1.01 0.14 0 imp:pre:2p; +goudronné goudronner ver m s 0.38 1.01 0.06 0.41 par:pas; +goudronnée goudronné adj f s 0.39 3.04 0.23 1.01 +goudronnées goudronné adj f p 0.39 3.04 0.14 0.54 +goudronnés goudronné adj m p 0.39 3.04 0 0.27 +goudrons goudron nom m p 3.4 7.64 0 0.14 +gouet gouet nom m s 0 0.07 0 0.07 +gouffre gouffre nom m s 3.84 13.38 3.43 11.35 +gouffres gouffre nom m p 3.84 13.38 0.4 2.03 +gouge gouge nom f s 0.02 1.01 0.01 0.74 +gouges gouge nom f p 0.02 1.01 0.01 0.27 +gougnafier gougnafier nom m s 0 1.96 0 0.61 +gougnafiers gougnafier nom m p 0 1.96 0 1.35 +gougnottes gougnotter ver 0.01 0.07 0.01 0.07 ind:pre:2s; +gougoutte gougoutte nom f s 0.01 0.07 0.01 0 +gougouttes gougoutte nom f p 0.01 0.07 0 0.07 +gougère gougère nom f s 0 0.2 0 0.07 +gougères gougère nom f p 0 0.2 0 0.14 +gouine gouine nom f s 3.12 0.88 2.41 0.47 +gouines gouine nom f p 3.12 0.88 0.71 0.41 +goujat goujat nom m s 1.68 2.09 1.23 1.69 +goujaterie goujaterie nom f s 0.16 0.47 0.16 0.47 +goujats goujat nom m p 1.68 2.09 0.45 0.41 +goujon goujon nom m s 0.5 1.35 0.5 0.81 +goujons goujon nom m p 0.5 1.35 0 0.54 +goulache goulache nom m s 0.46 0 0.46 0 +goulafre goulafre nom s 0 0.14 0 0.07 +goulafres goulafre nom p 0 0.14 0 0.07 +goulag goulag nom m s 0.31 1.01 0.31 0.74 +goulags goulag nom m p 0.31 1.01 0 0.27 +goulasch goulasch nom m s 0.27 0.14 0.27 0.14 +goule goule nom f s 0.61 0.07 0.26 0.07 +goules goule nom f p 0.61 0.07 0.36 0 +goulet goulet nom m s 0.09 0.74 0.09 0.74 +goulette goulette nom f s 0.94 0.14 0.94 0.14 +gouleyant gouleyant adj m s 0 0.14 0 0.14 +goulot goulot nom m s 0.5 10.81 0.49 10.14 +goulots goulot nom m p 0.5 10.81 0.01 0.68 +goulotte goulotte nom f s 0 0.07 0 0.07 +goulu goulu adj m s 0.14 1.55 0.02 0.34 +goulue goulu adj f s 0.14 1.55 0.02 0.68 +goulues goulu nom f p 0.02 0.41 0.01 0.07 +goulus goulu adj m p 0.14 1.55 0.1 0.34 +goulée goulée nom f s 0.01 2.64 0 1.55 +goulées goulée nom f p 0.01 2.64 0.01 1.08 +goulûment goulûment adv 0.14 2.7 0.14 2.7 +goum goum nom m s 0.04 0.41 0 0.34 +goumi goumi nom m s 0 0.34 0 0.34 +goumier goumier nom m s 0 0.54 0 0.07 +goumiers goumier nom m p 0 0.54 0 0.47 +goums goum nom m p 0.04 0.41 0.04 0.07 +goupil goupil nom m s 0.03 0.27 0.03 0.27 +goupillait goupiller ver 0.27 1.69 0.01 0.2 ind:imp:3s; +goupille goupille nom f s 0.74 0.47 0.72 0.34 +goupiller goupiller ver 0.27 1.69 0.04 0.34 inf; +goupilles goupille nom f p 0.74 0.47 0.02 0.14 +goupillon goupillon nom m s 0.16 1.62 0.16 1.55 +goupillons goupillon nom m p 0.16 1.62 0 0.07 +goupillé goupiller ver m s 0.27 1.69 0.04 0.47 par:pas; +goupillée goupiller ver f s 0.27 1.69 0.02 0.07 par:pas; +gour gour nom m 0.02 0.61 0.01 0.54 +goura goura nom m s 0 0.07 0 0.07 +gouraient gourer ver 2.33 6.28 0 0.07 ind:imp:3p; +gourais gourer ver 2.33 6.28 0.01 0.68 ind:imp:1s;ind:imp:2s; +gourait gourer ver 2.33 6.28 0.01 0.47 ind:imp:3s; +gourance gourance nom f s 0 1.28 0 1.15 +gourances gourance nom f p 0 1.28 0 0.14 +gourbi gourbi nom m s 0.17 2.91 0.12 1.69 +gourbis gourbi nom m p 0.17 2.91 0.06 1.22 +gourd gourd adj m s 0 2.7 0 0.68 +gourde gourde nom f s 2.85 4.59 2.56 4.59 +gourdes gourde nom f p 2.85 4.59 0.29 0 +gourdin gourdin nom m s 1.59 2.84 1.51 1.82 +gourdins gourdin nom m p 1.59 2.84 0.08 1.01 +gourds gourd adj m p 0 2.7 0 2.03 +goure gourer ver 2.33 6.28 0.3 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gourent gourer ver 2.33 6.28 0.03 0.27 ind:pre:3p; +gourer gourer ver 2.33 6.28 0.22 1.35 inf; +gourerait gourer ver 2.33 6.28 0 0.07 cnd:pre:3s; +goures gourer ver 2.33 6.28 0.77 0.34 ind:pre:2s; +gourez gourer ver 2.33 6.28 0.19 0.07 ind:pre:2p; +gourgandine gourgandine nom f s 0.06 0.34 0.06 0.2 +gourgandines gourgandine nom f p 0.06 0.34 0 0.14 +gourmand gourmand adj m s 2.79 9.86 1.81 4.53 +gourmandai gourmander ver 0.11 0.81 0 0.07 ind:pas:1s; +gourmandais gourmander ver 0.11 0.81 0 0.07 ind:imp:1s; +gourmandait gourmander ver 0.11 0.81 0 0.07 ind:imp:3s; +gourmandant gourmander ver 0.11 0.81 0 0.07 par:pre; +gourmande gourmand adj f s 2.79 9.86 0.54 3.45 +gourmandement gourmandement adv 0 0.07 0 0.07 +gourmandent gourmander ver 0.11 0.81 0 0.07 ind:pre:3p; +gourmander gourmander ver 0.11 0.81 0 0.14 inf; +gourmandes gourmand adj f p 2.79 9.86 0.14 1.08 +gourmandise gourmandise nom f s 0.51 6.49 0.47 5.54 +gourmandises gourmandise nom f p 0.51 6.49 0.04 0.95 +gourmands gourmand adj m p 2.79 9.86 0.32 0.81 +gourmandé gourmander ver m s 0.11 0.81 0.01 0 par:pas; +gourme gourme nom f s 0.06 0.41 0.06 0.41 +gourmet gourmet nom m s 0.97 1.55 0.89 0.81 +gourmets gourmet nom m p 0.97 1.55 0.08 0.74 +gourmette gourmette nom f s 1.25 2.43 1.25 2.09 +gourmettes gourmette nom f p 1.25 2.43 0.01 0.34 +gourmé gourmé adj m s 0.01 0.81 0.01 0.34 +gourmée gourmé adj f s 0.01 0.81 0 0.2 +gourmés gourmé adj m p 0.01 0.81 0 0.27 +gourou gourou nom m s 1.84 1.42 1.63 1.28 +gourous gourou nom m p 1.84 1.42 0.22 0.14 +gours gour nom m p 0.02 0.61 0.01 0.07 +gouré gourer ver m s 2.33 6.28 0.64 1.22 par:pas; +gourée gourer ver f s 2.33 6.28 0.07 0.54 par:pas; +gourées gourer ver f p 2.33 6.28 0 0.07 par:pas; +gourés gourer ver m p 2.33 6.28 0.1 0.27 par:pas; +gousse gousse nom f s 0.58 1.28 0.51 0.81 +gousses gousse nom f p 0.58 1.28 0.07 0.47 +gousset gousset nom m s 0.27 2.23 0.27 1.69 +goussets gousset nom m p 0.27 2.23 0 0.54 +gouttait goutter ver 0.73 2.36 0.01 0.34 ind:imp:3s; +gouttant goutter ver 0.73 2.36 0.01 0.2 par:pre; +goutte goutte nom f s 28.03 64.32 19.09 30.34 +gouttelaient goutteler ver 0 0.14 0 0.07 ind:imp:3p; +gouttelait goutteler ver 0 0.14 0 0.07 ind:imp:3s; +gouttelette gouttelette nom f s 0.25 5.88 0.04 0.41 +gouttelettes gouttelette nom f p 0.25 5.88 0.21 5.47 +goutter goutter ver 0.73 2.36 0.01 0.41 inf; +gouttera goutter ver 0.73 2.36 0.01 0 ind:fut:3s; +goutterais goutter ver 0.73 2.36 0.01 0 cnd:pre:1s; +gouttereau gouttereau adj m s 0 0.2 0 0.14 +gouttereaux gouttereau adj m p 0 0.2 0 0.07 +gouttes goutte nom f p 28.03 64.32 8.94 33.99 +goutteuse goutteur nom f s 0.01 0 0.01 0 +goutteuses goutteux adj f p 0.01 0.41 0 0.14 +goutteux goutteux adj m 0.01 0.41 0.01 0.2 +gouttière gouttière nom f s 2.99 10.95 2.47 6.82 +gouttières gouttière nom f p 2.99 10.95 0.52 4.12 +gouvernable gouvernable adj s 0.01 0 0.01 0 +gouvernaient gouverner ver 7.6 8.78 0.17 0.14 ind:imp:3p; +gouvernail gouvernail nom m s 2.87 1.69 2.81 1.62 +gouvernails gouvernail nom m p 2.87 1.69 0.06 0.07 +gouvernait gouverner ver 7.6 8.78 0.21 1.69 ind:imp:3s; +gouvernance gouvernance nom f s 0.01 0 0.01 0 +gouvernant gouvernant nom m s 0.45 2.09 0.14 0.07 +gouvernante gouvernante nom f s 4.6 4.73 4.52 3.85 +gouvernantes gouvernante nom f p 4.6 4.73 0.08 0.88 +gouvernants gouvernant nom m p 0.45 2.09 0.3 2.03 +gouverne gouverner ver 7.6 8.78 1.58 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gouvernement gouvernement nom m s 62.66 132.03 59.82 119.73 +gouvernemental gouvernemental adj m s 2.93 1.69 0.98 0.61 +gouvernementale gouvernemental adj f s 2.93 1.69 0.82 0.74 +gouvernementales gouvernemental adj f p 2.93 1.69 0.72 0.34 +gouvernementaux gouvernemental adj m p 2.93 1.69 0.4 0 +gouvernements gouvernement nom m p 62.66 132.03 2.83 12.3 +gouvernent gouverner ver 7.6 8.78 0.72 0.41 ind:pre:3p; +gouverner gouverner ver 7.6 8.78 3.18 3.24 inf; +gouvernera gouverner ver 7.6 8.78 0.56 0.07 ind:fut:3s; +gouvernerai gouverner ver 7.6 8.78 0.03 0.14 ind:fut:1s; +gouvernerait gouverner ver 7.6 8.78 0.01 0.14 cnd:pre:3s; +gouverneras gouverner ver 7.6 8.78 0.02 0 ind:fut:2s; +gouvernerez gouverner ver 7.6 8.78 0.04 0.07 ind:fut:2p; +gouvernerons gouverner ver 7.6 8.78 0.03 0 ind:fut:1p; +gouverneront gouverner ver 7.6 8.78 0.06 0.07 ind:fut:3p; +gouvernes gouverner ver 7.6 8.78 0.17 0 ind:pre:2s; +gouverneur gouverneur nom m s 21.73 18.38 20.96 16.35 +gouverneurs gouverneur nom m p 21.73 18.38 0.77 2.03 +gouvernez gouverner ver 7.6 8.78 0.14 0 imp:pre:2p;ind:pre:2p; +gouverniez gouverner ver 7.6 8.78 0.01 0 ind:imp:2p; +gouvernorat gouvernorat nom m s 0.01 0.14 0.01 0 +gouvernorats gouvernorat nom m p 0.01 0.14 0 0.14 +gouvernât gouverner ver 7.6 8.78 0 0.14 sub:imp:3s; +gouverné gouverner ver m s 7.6 8.78 0.38 0.81 par:pas; +gouvernée gouverner ver f s 7.6 8.78 0.17 0.47 par:pas; +gouvernés gouverner ver m p 7.6 8.78 0.07 0.07 par:pas; +gouzi_gouzi gouzi_gouzi nom m 0.06 0.07 0.06 0.07 +goy goy nom m s 0.13 0.47 0.13 0.47 +goyave goyave nom f s 0.06 0.2 0.06 0.2 +goyesque goyesque nom s 0 0.2 0 0.14 +goyesques goyesque nom p 0 0.2 0 0.07 +goéland goéland nom m s 0.53 2.91 0.31 0.81 +goélands goéland nom m p 0.53 2.91 0.23 2.09 +goélette goélette nom f s 0.6 0.68 0.6 0.61 +goélettes goélette nom f p 0.6 0.68 0 0.07 +goémon goémon nom m s 0.14 0.88 0 0.41 +goémons goémon nom m p 0.14 0.88 0.14 0.47 +goétie goétie nom f s 0.02 0 0.02 0 +goût goût nom m s 57.94 141.82 50.51 124.8 +goûta goûter ver 42.27 39.86 0 1.89 ind:pas:3s; +goûtables goûtable adj m p 0 0.07 0 0.07 +goûtai goûter ver 42.27 39.86 0.02 0.34 ind:pas:1s; +goûtaient goûter ver 42.27 39.86 0.02 0.68 ind:imp:3p; +goûtais goûter ver 42.27 39.86 0.21 1.49 ind:imp:1s;ind:imp:2s; +goûtait goûter ver 42.27 39.86 0.09 3.85 ind:imp:3s; +goûtant goûter ver 42.27 39.86 0.05 0.74 par:pre; +goûte goûter ver 42.27 39.86 9.85 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +goûtent goûter ver 42.27 39.86 0.14 0.61 ind:pre:3p; +goûter goûter ver 42.27 39.86 15.91 15.2 inf; +goûtera goûter ver 42.27 39.86 0.24 0.07 ind:fut:3s; +goûterai goûter ver 42.27 39.86 0.5 0.07 ind:fut:1s; +goûterais goûter ver 42.27 39.86 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +goûterait goûter ver 42.27 39.86 0.02 0.07 cnd:pre:3s; +goûteras goûter ver 42.27 39.86 0.08 0 ind:fut:2s; +goûterez goûter ver 42.27 39.86 0.33 0.27 ind:fut:2p; +goûterons goûter ver 42.27 39.86 0.02 0 ind:fut:1p;; +goûteront goûter ver 42.27 39.86 0.06 0 ind:fut:3p; +goûters goûter nom m p 2.26 7.84 0.42 2.09 +goûtes goûter ver 42.27 39.86 1.15 0 ind:pre:2s; +goûteur goûteur nom m s 0.14 0 0.12 0 +goûteuse goûteur nom f s 0.14 0 0.03 0 +goûteuses goûteux adj f p 0.13 0.27 0.02 0.07 +goûteux goûteux adj m s 0.13 0.27 0.09 0.14 +goûtez goûter ver 42.27 39.86 4.28 0.88 imp:pre:2p;ind:pre:2p; +goûtiez goûter ver 42.27 39.86 0.43 0 ind:imp:2p; +goûtions goûter ver 42.27 39.86 0.03 0.61 ind:imp:1p; +goûtons goûter ver 42.27 39.86 0.72 0.54 imp:pre:1p;ind:pre:1p; +goûts goût nom m p 57.94 141.82 7.43 17.03 +goûtâmes goûter ver 42.27 39.86 0.14 0 ind:pas:1p; +goûtèrent goûter ver 42.27 39.86 0 0.54 ind:pas:3p; +goûté goûter ver m s 42.27 39.86 7.01 6.42 par:pas; +goûtée goûter ver f s 42.27 39.86 0.57 0.47 par:pas; +goûtées goûter ver f p 42.27 39.86 0.23 0.34 par:pas; +goûtés goûter ver m p 42.27 39.86 0.06 0.27 par:pas; +graal graal nom m s 0.04 0.34 0.04 0.34 +grabat grabat nom m s 0.36 2.09 0.23 1.96 +grabataire grabataire adj s 0.13 0.27 0.11 0.27 +grabataires grabataire adj m p 0.13 0.27 0.02 0 +grabats grabat nom m p 0.36 2.09 0.14 0.14 +graben graben nom m s 0.14 0 0.14 0 +grabuge grabuge nom m s 2.55 0.54 2.55 0.54 +gracia gracier ver 3.62 1.22 0 0.07 ind:pas:3s; +graciai gracier ver 3.62 1.22 0 0.07 ind:pas:1s; +gracias gracier ver 3.62 1.22 1.58 0.2 ind:pas:2s; +gracie gracier ver 3.62 1.22 0.81 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gracier gracier ver 3.62 1.22 0.39 0.41 inf; +graciera gracier ver 3.62 1.22 0.01 0 ind:fut:3s; +gracierai gracier ver 3.62 1.22 0.04 0 ind:fut:1s; +gracieras gracier ver 3.62 1.22 0.02 0 ind:fut:2s; +gracieuse gracieux adj f s 4.54 15.81 1.84 6.08 +gracieusement gracieusement adv 0.54 2.7 0.54 2.7 +gracieuses gracieux adj f p 4.54 15.81 0.29 2.09 +gracieuseté gracieuseté nom f s 0.2 0.41 0.06 0.14 +gracieusetés gracieuseté nom f p 0.2 0.41 0.14 0.27 +gracieusé gracieusé adj m s 0 0.07 0 0.07 +gracieux gracieux adj m 4.54 15.81 2.42 7.64 +graciez gracier ver 3.62 1.22 0.04 0 imp:pre:2p;ind:pre:2p; +gracile gracile adj s 0.16 2.5 0.16 1.69 +graciles gracile adj f p 0.16 2.5 0 0.81 +gracilité gracilité nom f s 0 0.07 0 0.07 +graciât gracier ver 3.62 1.22 0 0.07 sub:imp:3s; +gracié gracier ver m s 3.62 1.22 0.51 0 par:pas; +graciée gracier ver f s 3.62 1.22 0.06 0.07 par:pas; +graciés gracier ver m p 3.62 1.22 0.16 0.07 par:pas; +gradaille gradaille nom f s 0 0.07 0 0.07 +gradation gradation nom f s 0.01 0.54 0 0.34 +gradations gradation nom f p 0.01 0.54 0.01 0.2 +grade grade nom m s 6.44 8.18 5.78 7.03 +grader grader nom m s 0 0.07 0 0.07 +grades grade nom m p 6.44 8.18 0.66 1.15 +gradient gradient nom m s 0.04 0 0.03 0 +gradients gradient nom m p 0.04 0 0.01 0 +gradin gradin nom m s 1.06 5.07 0.01 0.41 +gradins gradin nom m p 1.06 5.07 1.05 4.66 +graduation graduation nom f s 0.12 0.41 0.11 0.27 +graduations graduation nom f p 0.12 0.41 0.01 0.14 +graduel graduel adj m s 0.09 0.14 0.01 0 +graduelle graduel adj f s 0.09 0.14 0.07 0.14 +graduellement graduellement adv 0.24 0.81 0.24 0.81 +graduer graduer ver 0.18 0.41 0.01 0.14 inf; +gradus gradus nom m 0 0.07 0 0.07 +gradué graduer ver m s 0.18 0.41 0.03 0.2 par:pas; +graduée graduer ver f s 0.18 0.41 0.14 0 par:pas; +graduées graduer ver f p 0.18 0.41 0.01 0 par:pas; +gradués gradué nom m p 0.02 0 0.02 0 +gradé gradé adj m s 1.61 1.22 1.36 0.68 +gradée gradé adj f s 1.61 1.22 0.09 0.07 +gradés gradé nom m p 1.94 8.45 0.82 6.49 +graff graff nom m s 0.05 0 0.05 0 +graffeur graffeur nom m s 0.06 0 0.06 0 +graffita graffiter ver 0.01 0.27 0 0.07 ind:pas:3s; +graffiter graffiter ver 0.01 0.27 0.01 0.07 inf; +graffiteur graffiteur nom m s 0.09 0.07 0.02 0 +graffiteurs graffiteur nom m p 0.09 0.07 0.07 0.07 +graffiti graffiti nom m 2.73 4.19 1.93 3.45 +graffitis graffiti nom m p 2.73 4.19 0.8 0.74 +graffito graffito nom m s 0 0.2 0 0.2 +graffité graffiter ver m s 0.01 0.27 0 0.14 par:pas; +grafigner grafigner ver 0.14 0.07 0.14 0.07 inf; +graillant grailler ver 0.21 2.64 0 0.07 par:pre; +graille grailler ver 0.21 2.64 0.05 0.95 imp:pre:2s;ind:pre:3s; +grailler grailler ver 0.21 2.64 0.15 0 inf; +graillon graillon nom m s 0.08 1.22 0.08 1.01 +graillonna graillonner ver 0.14 0.2 0 0.07 ind:pas:3s; +graillonnait graillonner ver 0.14 0.2 0 0.07 ind:imp:3s; +graillonnant graillonnant adj m s 0 0.07 0 0.07 +graillonne graillonner ver 0.14 0.2 0.14 0.07 ind:pre:3s; +graillonnements graillonnement nom m p 0 0.07 0 0.07 +graillonneuse graillonneur nom f s 0 0.27 0 0.2 +graillonneuses graillonneur nom f p 0 0.27 0 0.07 +graillonneux graillonneux adj m 0 0.14 0 0.14 +graillons graillon nom m p 0.08 1.22 0 0.2 +graillé grailler ver m s 0.21 2.64 0.01 0.14 par:pas; +graillée grailler ver f s 0.21 2.64 0 1.49 par:pas; +grain grain nom m s 14.32 35.95 10.74 24.26 +graine graine nom f s 11.41 13.51 5.51 8.04 +grainer grainer ver 0 0.2 0 0.07 inf; +graines graine nom f p 11.41 13.51 5.9 5.47 +graineterie graineterie nom f s 0 0.2 0 0.2 +grainetier grainetier nom m s 0 0.34 0 0.2 +grainetiers grainetier nom m p 0 0.34 0 0.14 +grains grain nom m p 14.32 35.95 3.57 11.69 +grainé grainer ver m s 0 0.2 0 0.14 par:pas; +graissa graisser ver 2.48 4.53 0 0.34 ind:pas:3s; +graissage graissage nom m s 0.24 0.27 0.23 0.2 +graissages graissage nom m p 0.24 0.27 0.01 0.07 +graissait graisser ver 2.48 4.53 0.01 0.61 ind:imp:3s; +graissant graisser ver 2.48 4.53 0 0.2 par:pre; +graisse graisse nom f s 9.09 18.31 8.38 17.64 +graissent graisser ver 2.48 4.53 0.03 0.54 ind:pre:3p; +graisser graisser ver 2.48 4.53 1.1 1.49 inf; +graissera graisser ver 2.48 4.53 0.02 0 ind:fut:3s; +graisserai graisser ver 2.48 4.53 0.01 0.07 ind:fut:1s; +graisses graisse nom f p 9.09 18.31 0.7 0.68 +graisseur graisseur adj m s 0.02 0 0.02 0 +graisseuse graisseux adj f s 0.82 5.07 0.1 1.42 +graisseuses graisseux adj f p 0.82 5.07 0.07 0.88 +graisseux graisseux adj m 0.82 5.07 0.65 2.77 +graissez graisser ver 2.48 4.53 0.09 0.07 imp:pre:2p;ind:pre:2p; +graissât graisser ver 2.48 4.53 0 0.07 sub:imp:3s; +graissé graisser ver m s 2.48 4.53 0.42 0.47 par:pas; +graissée graissé adj f s 0.3 1.08 0.01 0.47 +graissées graisser ver f p 2.48 4.53 0.01 0.07 par:pas; +graissés graisser ver m p 2.48 4.53 0.26 0 par:pas; +gram gram nom m s 0.28 0 0.28 0 +gramen gramen nom m s 0.01 0.2 0.01 0 +gramens gramen nom m p 0.01 0.2 0 0.2 +graminée graminée nom f s 0.01 1.89 0.01 0.54 +graminées graminée nom f p 0.01 1.89 0 1.35 +grammage grammage nom m s 0.03 0.07 0.03 0 +grammages grammage nom m p 0.03 0.07 0 0.07 +grammaire grammaire nom f s 1.73 6.01 1.73 5.47 +grammaires grammaire nom f p 1.73 6.01 0 0.54 +grammairien grammairien nom m s 0.01 1.08 0.01 0.41 +grammairienne grammairien nom f s 0.01 1.08 0 0.14 +grammairiennes grammairien nom f p 0.01 1.08 0 0.07 +grammairiens grammairien nom m p 0.01 1.08 0 0.47 +grammatical grammatical adj m s 0.17 0.68 0.14 0.07 +grammaticale grammatical adj f s 0.17 0.68 0.02 0.41 +grammaticalement grammaticalement adv 0.14 0.14 0.14 0.14 +grammaticales grammatical adj f p 0.17 0.68 0.01 0.07 +grammaticaux grammatical adj m p 0.17 0.68 0 0.14 +gramme gramme nom m s 5.81 4.93 1.76 1.22 +grammer grammer ver 0.03 0 0.03 0 inf; +grammes gramme nom m p 5.81 4.93 4.05 3.72 +gramophone gramophone nom m s 1.14 1.08 1.13 1.01 +gramophones gramophone nom m p 1.14 1.08 0.01 0.07 +grana grana nom m s 0 0.14 0 0.07 +granas grana nom m p 0 0.14 0 0.07 +grand grand adj m s 638.72 1244.66 338.27 537.97 +grand_angle grand_angle nom m s 0.06 0 0.06 0 +grand_chose grand_chose pro_ind m s 28.01 36.08 28.01 36.08 +grand_duc grand_duc nom m s 2.04 1.89 1.9 0.88 +grand_ducal grand_ducal adj f s 0 0.07 0 0.07 +grand_duché grand_duché nom m s 0.01 0.07 0.01 0.07 +grand_faim grand_faim adv 0 0.2 0 0.2 +grand_guignol grand_guignol nom m s 0.01 0 0.01 0 +grand_guignolesque grand_guignolesque adj s 0.01 0 0.01 0 +grand_hâte grand_hâte adv 0 0.07 0 0.07 +grand_hôtel grand_hôtel nom m s 0 0.07 0 0.07 +grand_papa grand_papa nom f s 2.35 0.95 0.84 0.27 +grand_maître grand_maître nom m s 0.1 0.07 0.1 0.07 +grand_messe grand_messe nom f s 0.29 1.28 0.29 1.28 +grand_mère grand_mère nom f s 73.22 94.59 72.39 91.76 +grand_mère grand_mère nom f p 73.22 94.59 0.53 2.16 +grand_neige grand_neige nom m s 0 0.07 0 0.07 +grand_officier grand_officier nom m s 0 0.07 0 0.07 +grand_oncle grand_oncle nom m s 0.45 4.26 0.45 3.65 +grand_papa grand_papa nom m s 2.35 0.95 1.5 0.68 +grand_peine grand_peine adv 0.25 4.86 0.25 4.86 +grand_peur grand_peur adv 0 0.2 0 0.2 +grand_place grand_place nom f s 0.12 1.35 0.12 1.35 +grand_prêtre grand_prêtre nom m s 0.11 0.2 0.11 0.2 +grand_père grand_père nom m s 75.64 96.49 75.19 95.2 +grand_quartier grand_quartier nom m s 0 0.34 0 0.34 +grand_route grand_route nom f s 0.27 3.65 0.27 3.58 +grand_route grand_route nom f p 0.27 3.65 0 0.07 +grand_rue grand_rue nom f s 0.64 2.36 0.64 2.36 +grand_salle grand_salle nom f s 0 0.2 0 0.2 +grand_tante grand_tante nom f s 1.17 1.76 1.17 1.22 +grand_tante grand_tante nom f p 1.17 1.76 0 0.47 +grand_vergue grand_vergue nom f s 0.05 0 0.05 0 +grand_voile grand_voile nom f s 0.23 0.27 0.23 0.27 +grande grand adj f s 638.72 1244.66 198.25 378.65 +grand_duc grand_duc nom f s 2.04 1.89 0.09 0.34 +grandement grandement adv 1.59 2.84 1.59 2.84 +grandes grand adj f p 638.72 1244.66 42.68 126.49 +grand_duc grand_duc nom f p 2.04 1.89 0.01 0.14 +grandesse grandesse nom f s 0 0.14 0 0.14 +grandet grandet adj m s 0 0.14 0 0.14 +grandeur grandeur nom f s 8.75 28.38 7.71 26.49 +grandeurs grandeur nom f p 8.75 28.38 1.04 1.89 +grandi grandir ver m s 63.99 46.69 30.06 13.45 par:pas; +grandie grandir ver f s 63.99 46.69 0.17 0.74 par:pas; +grandiloque grandiloque adj m s 0 0.07 0 0.07 +grandiloquence grandiloquence nom f s 0.06 0.81 0.06 0.81 +grandiloquent grandiloquent adj m s 0.15 1.69 0.15 0.54 +grandiloquente grandiloquent adj f s 0.15 1.69 0 0.74 +grandiloquentes grandiloquent adj f p 0.15 1.69 0 0.14 +grandiloquents grandiloquent adj m p 0.15 1.69 0 0.27 +grandiose grandiose adj s 4.7 10 4.16 8.24 +grandiosement grandiosement adv 0 0.14 0 0.14 +grandioses grandiose adj p 4.7 10 0.53 1.76 +grandir grandir ver 63.99 46.69 13.31 11.22 inf; +grandira grandir ver 63.99 46.69 1.07 0.27 ind:fut:3s; +grandirai grandir ver 63.99 46.69 0.07 0 ind:fut:1s; +grandiraient grandir ver 63.99 46.69 0.03 0.07 cnd:pre:3p; +grandirais grandir ver 63.99 46.69 0.01 0 cnd:pre:2s; +grandirait grandir ver 63.99 46.69 0.14 0.27 cnd:pre:3s; +grandiras grandir ver 63.99 46.69 0.7 0.2 ind:fut:2s; +grandirent grandir ver 63.99 46.69 0.08 0.41 ind:pas:3p; +grandirez grandir ver 63.99 46.69 0.05 0.07 ind:fut:2p; +grandiriez grandir ver 63.99 46.69 0.01 0 cnd:pre:2p; +grandirons grandir ver 63.99 46.69 0.01 0.07 ind:fut:1p; +grandiront grandir ver 63.99 46.69 0.24 0.2 ind:fut:3p; +grandis grandir ver m p 63.99 46.69 2.44 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +grandissaient grandir ver 63.99 46.69 0.44 1.22 ind:imp:3p; +grandissais grandir ver 63.99 46.69 0.17 0.47 ind:imp:1s;ind:imp:2s; +grandissait grandir ver 63.99 46.69 1.28 5.61 ind:imp:3s; +grandissant grandir ver 63.99 46.69 1.52 2.09 par:pre; +grandissante grandissant adj f s 0.87 5.47 0.38 3.11 +grandissantes grandissant adj f p 0.87 5.47 0.03 0.07 +grandissants grandissant adj m p 0.87 5.47 0.01 0.07 +grandisse grandir ver 63.99 46.69 1.36 0.27 sub:pre:1s;sub:pre:3s; +grandissement grandissement nom m s 0 0.07 0 0.07 +grandissent grandir ver 63.99 46.69 2.55 1.76 ind:pre:3p; +grandisses grandir ver 63.99 46.69 0.31 0.07 sub:pre:2s; +grandissez grandir ver 63.99 46.69 0.28 0 imp:pre:2p;ind:pre:2p; +grandissime grandissime adj s 0.03 0.07 0.03 0.07 +grandissions grandir ver 63.99 46.69 0.01 0.07 ind:imp:1p; +grandissons grandir ver 63.99 46.69 0.04 0.07 imp:pre:1p;ind:pre:1p; +grandit grandir ver 63.99 46.69 7.64 6.89 ind:pre:3s;ind:pas:3s; +grands grand adj m p 638.72 1244.66 59.52 201.55 +grand_croix grand_croix nom m p 0 0.07 0 0.07 +grand_duc grand_duc nom m p 2.04 1.89 0.05 0.54 +grand_mère grand_mère nom f p 73.22 94.59 0.3 0.68 +grand_oncle grand_oncle nom m p 0.45 4.26 0 0.61 +grands_parents grands_parents nom m p 4.59 9.19 4.59 9.19 +grand_père grand_père nom m p 75.64 96.49 0.45 1.28 +grand_tante grand_tante nom f p 1.17 1.76 0 0.07 +grandît grandir ver 63.99 46.69 0.01 0.07 sub:imp:3s; +grange grange nom f s 7.33 46.01 6.95 40.74 +granges grange nom f p 7.33 46.01 0.38 5.27 +grangette grangette nom f s 0 0.14 0 0.14 +granit granit nom m s 1.74 10.07 1.74 9.8 +granita graniter ver 0 0.2 0 0.14 ind:pas:3s; +granite granite nom m s 0.34 0.47 0.34 0.47 +granitique granitique adj s 0.14 0.61 0.14 0.2 +granitiques granitique adj p 0.14 0.61 0 0.41 +granito granito nom m s 0 0.07 0 0.07 +granits granit nom m p 1.74 10.07 0 0.27 +granité granité nom m s 0.17 0.07 0.12 0.07 +granitée graniter ver f s 0 0.2 0 0.07 par:pas; +granités granité nom m p 0.17 0.07 0.05 0 +granulaire granulaire adj m s 0.01 0 0.01 0 +granulait granuler ver 0 0.27 0 0.14 ind:imp:3s; +granulation granulation nom f s 0.01 0.34 0.01 0.07 +granulations granulation nom f p 0.01 0.34 0 0.27 +granule granuler ver 0 0.27 0 0.07 ind:pre:3s; +granules granule nom m p 0.11 0.14 0.11 0.14 +granuleuse granuleux adj f s 0.22 1.55 0.17 0.95 +granuleuses granuleux adj f p 0.22 1.55 0.01 0.07 +granuleux granuleux adj m s 0.22 1.55 0.04 0.54 +granulie granulie nom f s 0.01 0 0.01 0 +granulome granulome nom m s 0.03 0 0.03 0 +granulé granulé nom m s 0.32 0.47 0 0.14 +granulée granuler ver f s 0 0.27 0 0.07 par:pas; +granulés granulé nom m p 0.32 0.47 0.32 0.34 +grape_fruit grape_fruit nom m s 0 0.27 0 0.27 +graphe graphe nom m s 0.14 0 0.12 0 +graphes graphe nom m p 0.14 0 0.03 0 +graphie graphie nom f s 0.02 0.61 0.02 0.41 +graphies graphie nom f p 0.02 0.61 0 0.2 +graphique graphique nom s 1.31 0.61 0.72 0.2 +graphiques graphique nom p 1.31 0.61 0.59 0.41 +graphisme graphisme nom m s 0.28 0.41 0.23 0.41 +graphismes graphisme nom m p 0.28 0.41 0.04 0 +graphiste graphiste nom s 0.18 0 0.18 0 +graphite graphite nom m s 0.29 0.07 0.29 0 +graphites graphite nom m p 0.29 0.07 0 0.07 +graphologie graphologie nom f s 0.15 0 0.15 0 +graphologique graphologique adj m s 0.01 0.07 0.01 0.07 +graphologue graphologue nom s 0.18 0.2 0.17 0.14 +graphologues graphologue nom p 0.18 0.2 0.01 0.07 +graphomane graphomane nom s 0.01 0.14 0.01 0 +graphomanes graphomane nom p 0.01 0.14 0 0.14 +graphomanie graphomanie nom f s 0 0.07 0 0.07 +graphomètre graphomètre nom m s 0 0.07 0 0.07 +graphophone graphophone nom m s 0.01 0 0.01 0 +grappa grappa nom f s 0.72 0.34 0.72 0.34 +grappe grappe nom f s 2.51 12.3 1.93 4.39 +grappes grappe nom f p 2.51 12.3 0.59 7.91 +grappillage grappillage nom m s 0.07 0 0.07 0 +grappillais grappiller ver 0.13 0.95 0 0.14 ind:imp:1s; +grappillait grappiller ver 0.13 0.95 0.01 0.2 ind:imp:3s; +grappillent grappiller ver 0.13 0.95 0 0.07 ind:pre:3p; +grappiller grappiller ver 0.13 0.95 0.08 0.41 inf; +grappilleur grappilleur nom m s 0.01 0 0.01 0 +grappillon grappillon nom m s 0 0.14 0 0.07 +grappillons grappillon nom m p 0 0.14 0 0.07 +grappillé grappiller ver m s 0.13 0.95 0.01 0.07 par:pas; +grappillées grappiller ver f p 0.13 0.95 0.03 0.07 par:pas; +grappin grappin nom m s 1.54 0.81 1.36 0.68 +grappins grappin nom m p 1.54 0.81 0.18 0.14 +gras gras adj m 14.31 48.92 10.55 25.61 +gras_double gras_double nom m s 0.22 1.08 0.22 1.01 +gras_double gras_double nom m p 0.22 1.08 0 0.07 +grasse gras adj f s 14.31 48.92 2.19 14.12 +grassement grassement adv 0.24 0.81 0.24 0.81 +grasses gras adj f p 14.31 48.92 1.57 9.19 +grasseya grasseyer ver 0 0.61 0 0.2 ind:pas:3s; +grasseyait grasseyer ver 0 0.61 0 0.14 ind:imp:3s; +grasseyant grasseyant adj m s 0 0.61 0 0.2 +grasseyante grasseyant adj f s 0 0.61 0 0.41 +grasseyement grasseyement nom m s 0 0.41 0 0.27 +grasseyements grasseyement nom m p 0 0.41 0 0.14 +grasseyer grasseyer ver 0 0.61 0 0.07 inf; +grasseyé grasseyer ver m s 0 0.61 0 0.07 par:pas; +grassouillet grassouillet adj m s 1.08 1.96 0.66 0.88 +grassouillets grassouillet adj m p 1.08 1.96 0.06 0.14 +grassouillette grassouillet adj f s 1.08 1.96 0.28 0.74 +grassouillettes grassouillet adj f p 1.08 1.96 0.08 0.2 +gratifia gratifier ver 0.76 4.26 0 0.74 ind:pas:3s; +gratifiaient gratifier ver 0.76 4.26 0 0.14 ind:imp:3p; +gratifiait gratifier ver 0.76 4.26 0.01 0.2 ind:imp:3s; +gratifiant gratifiant adj m s 0.99 0.27 0.78 0.14 +gratifiante gratifiant adj f s 0.99 0.27 0.21 0.14 +gratification gratification nom f s 0.34 0.68 0.29 0.34 +gratifications gratification nom f p 0.34 0.68 0.04 0.34 +gratifie gratifier ver 0.76 4.26 0.17 0.68 ind:pre:1s;ind:pre:3s; +gratifier gratifier ver 0.76 4.26 0.19 0.54 inf; +gratifierait gratifier ver 0.76 4.26 0 0.07 cnd:pre:3s; +gratifies gratifier ver 0.76 4.26 0 0.07 ind:pre:2s; +gratifiez gratifier ver 0.76 4.26 0.01 0 ind:pre:2p; +gratifièrent gratifier ver 0.76 4.26 0.01 0.07 ind:pas:3p; +gratifié gratifier ver m s 0.76 4.26 0.14 1.15 par:pas; +gratifiée gratifier ver f s 0.76 4.26 0.03 0.2 par:pas; +gratifiés gratifier ver m p 0.76 4.26 0.1 0.27 par:pas; +gratin gratin nom m s 1.63 2.16 1.63 2.09 +gratiner gratiner ver 0.29 0.81 0.01 0.07 inf; +gratins gratin nom m p 1.63 2.16 0 0.07 +gratiné gratiner ver m s 0.29 0.81 0.04 0.2 par:pas; +gratinée gratiner ver f s 0.29 0.81 0.05 0.34 par:pas; +gratinées gratiner ver f p 0.29 0.81 0.17 0.2 par:pas; +gratinés gratiner ver m p 0.29 0.81 0.03 0 par:pas; +gratis gratis adv 4.39 3.11 4.39 3.11 +gratis_pro_deo gratis_pro_deo adv 0 0.14 0 0.14 +gratitude gratitude nom f s 7.61 8.38 7.61 8.24 +gratitudes gratitude nom f p 7.61 8.38 0 0.14 +gratos gratos adv 3.94 0.68 3.94 0.68 +gratouillait gratouiller ver 0.17 0.41 0 0.07 ind:imp:3s; +gratouillant gratouiller ver 0.17 0.41 0 0.07 par:pre; +gratouille gratouiller ver 0.17 0.41 0.17 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gratouillerait gratouiller ver 0.17 0.41 0 0.07 cnd:pre:3s; +gratouillis gratouillis nom m 0 0.07 0 0.07 +gratta gratter ver 12.11 38.51 0 5.81 ind:pas:3s; +grattage grattage nom m s 0.1 0.41 0.1 0.34 +grattages grattage nom m p 0.1 0.41 0 0.07 +grattai gratter ver 12.11 38.51 0 0.2 ind:pas:1s; +grattaient gratter ver 12.11 38.51 0.14 0.88 ind:imp:3p; +grattais gratter ver 12.11 38.51 0.13 0.88 ind:imp:1s;ind:imp:2s; +grattait gratter ver 12.11 38.51 0.25 5.14 ind:imp:3s; +grattant gratter ver 12.11 38.51 0.12 3.85 par:pre; +gratte gratter ver 12.11 38.51 3.75 7.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gratte_ciel gratte_ciel nom m 1.4 3.04 1.14 3.04 +gratte_ciel gratte_ciel nom m p 1.4 3.04 0.26 0 +gratte_cul gratte_cul nom m 0 0.14 0 0.14 +gratte_dos gratte_dos nom m 0.11 0 0.11 0 +gratte_papier gratte_papier nom m 0.67 0.54 0.45 0.54 +gratte_papier gratte_papier nom m p 0.67 0.54 0.22 0 +gratte_pieds gratte_pieds nom m 0 0.2 0 0.2 +grattement grattement nom m s 0.15 1.49 0.05 1.22 +grattements grattement nom m p 0.15 1.49 0.1 0.27 +grattent gratter ver 12.11 38.51 0.51 1.15 ind:pre:3p; +gratter gratter ver 12.11 38.51 5.03 8.85 inf; +grattera gratter ver 12.11 38.51 0.03 0.14 ind:fut:3s; +gratterai gratter ver 12.11 38.51 0.1 0.07 ind:fut:1s; +gratteraient gratter ver 12.11 38.51 0 0.07 cnd:pre:3p; +gratterait gratter ver 12.11 38.51 0.01 0.2 cnd:pre:3s; +gratterez gratter ver 12.11 38.51 0 0.07 ind:fut:2p; +gratterons gratteron nom m p 0 0.2 0 0.2 +grattes gratter ver 12.11 38.51 0.49 0.27 ind:pre:2s; +gratteur gratteur nom m s 0.05 0.34 0.04 0.07 +gratteurs gratteur nom m p 0.05 0.34 0.01 0.27 +grattez gratter ver 12.11 38.51 0.8 0.07 imp:pre:2p;ind:pre:2p; +grattoir grattoir nom m s 0.09 1.49 0.08 1.15 +grattoirs grattoir nom m p 0.09 1.49 0.01 0.34 +grattons gratter ver 12.11 38.51 0.02 0 ind:pre:1p; +grattouillant grattouiller ver 0.01 0.27 0 0.07 par:pre; +grattouillent grattouiller ver 0.01 0.27 0 0.07 ind:pre:3p; +grattouiller grattouiller ver 0.01 0.27 0.01 0 inf; +grattouilles grattouiller ver 0.01 0.27 0 0.07 ind:pre:2s; +grattouillis grattouillis nom m 0.05 0.07 0.05 0.07 +grattouillé grattouiller ver m s 0.01 0.27 0 0.07 par:pas; +gratture gratture nom f s 0 0.07 0 0.07 +grattât gratter ver 12.11 38.51 0.1 0.07 sub:imp:3s; +gratté gratter ver m s 12.11 38.51 0.56 2.43 par:pas; +grattée gratter ver f s 12.11 38.51 0.03 0.47 par:pas; +grattées gratter ver f p 12.11 38.51 0.01 0.41 par:pas; +grattés gratter ver m p 12.11 38.51 0.04 0.41 par:pas; +gratuit gratuit adj m s 24.28 13.11 12.15 5.81 +gratuite gratuit adj f s 24.28 13.11 6.43 4.73 +gratuitement gratuitement adv 6.37 2.91 6.37 2.91 +gratuites gratuit adj f p 24.28 13.11 1.81 1.15 +gratuits gratuit adj m p 24.28 13.11 3.89 1.42 +gratuité gratuité nom f s 0.05 1.69 0.05 1.69 +grau grau nom m s 0.01 0 0.01 0 +grava graver ver 10.34 18.38 0.04 0.47 ind:pas:3s; +gravai graver ver 10.34 18.38 0 0.07 ind:pas:1s; +gravaient graver ver 10.34 18.38 0.02 0.27 ind:imp:3p; +gravais graver ver 10.34 18.38 0.02 0.2 ind:imp:1s; +gravait graver ver 10.34 18.38 0.16 0.68 ind:imp:3s; +gravant graver ver 10.34 18.38 0.02 0.34 par:pre; +gravats gravats nom m p 0.34 4.12 0.34 4.12 +grave grave adj s 142.48 93.78 134.19 74.86 +graveleuse graveleux adj f s 0.06 1.35 0.01 0.2 +graveleuses graveleux adj f p 0.06 1.35 0 0.47 +graveleux graveleux adj m s 0.06 1.35 0.04 0.68 +gravelle gravelle nom f s 0 0.34 0 0.27 +gravelles gravelle nom f p 0 0.34 0 0.07 +gravelé graveler ver m s 0 0.14 0 0.07 par:pas; +gravelés graveler ver m p 0 0.14 0 0.07 par:pas; +gravement gravement adv 6.43 19.73 6.43 19.73 +gravent graver ver 10.34 18.38 0.04 0.2 ind:pre:3p; +graver graver ver 10.34 18.38 1.94 1.76 inf; +graveraient graver ver 10.34 18.38 0 0.14 cnd:pre:3p; +graverais graver ver 10.34 18.38 0.01 0 cnd:pre:1s; +graverait graver ver 10.34 18.38 0.01 0 cnd:pre:3s; +graves grave adj p 142.48 93.78 8.29 18.92 +graveur graveur nom m s 0.4 1.08 0.38 0.81 +graveurs graveur nom m p 0.4 1.08 0.02 0.27 +gravez graver ver 10.34 18.38 0.47 0 imp:pre:2p;ind:pre:2p; +gravi gravir ver m s 2.6 17.16 0.44 2.16 par:pas; +gravide gravide adj s 0.04 0 0.04 0 +gravidité gravidité nom f s 0.01 0 0.01 0 +gravie gravir ver f s 2.6 17.16 0 0.2 par:pas; +gravier gravier nom m s 2.32 15.41 1.4 11.35 +graviers gravier nom m p 2.32 15.41 0.92 4.05 +gravies gravir ver f p 2.6 17.16 0.1 0.07 par:pas; +gravillon gravillon nom m s 0.1 1.22 0 0.2 +gravillonnée gravillonner ver f s 0 0.2 0 0.14 par:pas; +gravillonnées gravillonner ver f p 0 0.2 0 0.07 par:pas; +gravillons gravillon nom m p 0.1 1.22 0.1 1.01 +gravir gravir ver 2.6 17.16 1.3 5.41 inf; +gravirai gravir ver 2.6 17.16 0.05 0 ind:fut:1s; +gravirait gravir ver 2.6 17.16 0 0.07 cnd:pre:3s; +gravirent gravir ver 2.6 17.16 0.01 0.68 ind:pas:3p; +gravirons gravir ver 2.6 17.16 0.01 0.07 ind:fut:1p; +gravis gravir ver m p 2.6 17.16 0.4 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +gravissaient gravir ver 2.6 17.16 0 0.41 ind:imp:3p; +gravissais gravir ver 2.6 17.16 0.01 0.2 ind:imp:1s;ind:imp:2s; +gravissait gravir ver 2.6 17.16 0.01 0.95 ind:imp:3s; +gravissant gravir ver 2.6 17.16 0.05 0.81 par:pre; +gravisse gravir ver 2.6 17.16 0 0.07 sub:pre:1s; +gravissent gravir ver 2.6 17.16 0 0.41 ind:pre:3p; +gravissime gravissime adj f s 0.41 0.14 0.17 0.07 +gravissimes gravissime adj p 0.41 0.14 0.25 0.07 +gravissions gravir ver 2.6 17.16 0 0.14 ind:imp:1p; +gravissons gravir ver 2.6 17.16 0.01 0.47 imp:pre:1p;ind:pre:1p; +gravit gravir ver 2.6 17.16 0.22 3.92 ind:pre:3s;ind:pas:3s; +gravitaient graviter ver 0.39 1.08 0 0.34 ind:imp:3p; +gravitait graviter ver 0.39 1.08 0.03 0.2 ind:imp:3s; +gravitant graviter ver 0.39 1.08 0 0.07 par:pre; +gravitation gravitation nom f s 0.98 1.22 0.98 1.22 +gravitationnel gravitationnel adj m s 1.66 0 0.61 0 +gravitationnelle gravitationnel adj f s 1.66 0 0.59 0 +gravitationnelles gravitationnel adj f p 1.66 0 0.44 0 +gravitationnels gravitationnel adj m p 1.66 0 0.01 0 +gravite graviter ver 0.39 1.08 0.21 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +graviter graviter ver 0.39 1.08 0.04 0.27 inf; +gravitons graviton nom m p 0.02 0 0.02 0 +gravité gravité nom f s 7.58 17.16 7.58 17.16 +gravières gravière nom f p 0 0.07 0 0.07 +gravons graver ver 10.34 18.38 0.05 0 imp:pre:1p; +gravos gravos adj m 0.01 0.2 0.01 0.2 +gravosse gravosse nom f s 0 1.42 0 1.35 +gravosses gravosse nom f p 0 1.42 0 0.07 +gravure gravure nom f s 1.45 10 0.88 3.85 +gravures gravure nom f p 1.45 10 0.57 6.15 +gravât graver ver 10.34 18.38 0 0.07 sub:imp:3s; +gravèrent graver ver 10.34 18.38 0.14 0.07 ind:pas:3p; +gravé graver ver m s 10.34 18.38 3.58 6.08 par:pas; +gravée graver ver f s 10.34 18.38 1.05 2.57 par:pas; +gravées graver ver f p 10.34 18.38 0.82 1.69 par:pas; +gravés graver ver m p 10.34 18.38 1.13 3.11 par:pas; +gray gray nom m s 0.1 0.07 0.03 0 +grays gray nom m p 0.1 0.07 0.08 0.07 +grec grec nom m s 11.36 26.22 6.31 14.86 +grecque grec adj f s 12.14 29.46 3.69 9.26 +grecques grec adj f p 12.14 29.46 0.96 3.18 +grecs grec nom m p 11.36 26.22 4.58 8.51 +gredin gredin nom m s 1.82 0.61 1.25 0.34 +gredine gredin nom f s 1.82 0.61 0.02 0.07 +gredins gredin nom m p 1.82 0.61 0.55 0.2 +green green nom m s 1.13 0.27 1.04 0.07 +greens green nom m p 1.13 0.27 0.09 0.2 +greffage greffage nom m s 0.01 0 0.01 0 +greffaient greffer ver 2.33 2.3 0 0.07 ind:imp:3p; +greffais greffer ver 2.33 2.3 0.01 0 ind:imp:1s; +greffait greffer ver 2.33 2.3 0 0.14 ind:imp:3s; +greffant greffer ver 2.33 2.3 0.01 0.27 par:pre; +greffe greffe nom s 4.25 5.41 3.31 4.86 +greffent greffer ver 2.33 2.3 0.14 0.14 ind:pre:3p; +greffer greffer ver 2.33 2.3 0.84 0.61 inf; +greffera greffer ver 2.33 2.3 0.01 0.07 ind:fut:3s; +grefferais greffer ver 2.33 2.3 0 0.07 cnd:pre:1s; +grefferons greffer ver 2.33 2.3 0 0.07 ind:fut:1p; +grefferont greffer ver 2.33 2.3 0 0.07 ind:fut:3p; +greffes greffe nom p 4.25 5.41 0.94 0.54 +greffier greffier nom m s 1.54 3.65 1.42 3.18 +greffiers greffier nom m p 1.54 3.65 0.04 0.47 +greffière greffier nom f s 1.54 3.65 0.08 0 +greffon greffon nom m s 0.33 0.2 0.18 0 +greffons greffon nom m p 0.33 0.2 0.16 0.2 +greffé greffer ver m s 2.33 2.3 0.44 0.47 par:pas; +greffée greffé adj f s 0.34 0.41 0.26 0.34 +greffées greffer ver f p 2.33 2.3 0.01 0 par:pas; +greffés greffer ver m p 2.33 2.3 0.2 0.07 par:pas; +grelot grelot nom m s 0.43 4.66 0.11 1.82 +grelots grelot nom m p 0.43 4.66 0.32 2.84 +grelotta grelotter ver 1.25 10.27 0 0.2 ind:pas:3s; +grelottaient grelotter ver 1.25 10.27 0 0.41 ind:imp:3p; +grelottais grelotter ver 1.25 10.27 0.01 0.47 ind:imp:1s; +grelottait grelotter ver 1.25 10.27 0.27 1.76 ind:imp:3s; +grelottant grelottant adj m s 0.11 2.16 0.1 0.74 +grelottante grelottant adj f s 0.11 2.16 0 0.68 +grelottantes grelottant adj f p 0.11 2.16 0 0.34 +grelottants grelottant adj m p 0.11 2.16 0.01 0.41 +grelotte grelotter ver 1.25 10.27 0.65 1.49 ind:pre:1s;ind:pre:3s; +grelottement grelottement nom m s 0 0.95 0 0.88 +grelottements grelottement nom m p 0 0.95 0 0.07 +grelottent grelotter ver 1.25 10.27 0 0.47 ind:pre:3p; +grelotter grelotter ver 1.25 10.27 0.14 2.03 inf; +grelottes grelotter ver 1.25 10.27 0.01 0.2 ind:pre:2s; +grelotteux grelotteux nom m 0 0.07 0 0.07 +grelottions grelotter ver 1.25 10.27 0.14 0.07 ind:imp:1p; +grelottons grelotter ver 1.25 10.27 0 0.2 ind:pre:1p; +grelottèrent grelotter ver 1.25 10.27 0 0.07 ind:pas:3p; +grelotté grelotter ver m s 1.25 10.27 0.01 0.27 par:pas; +grelottée grelotter ver f s 1.25 10.27 0 0.07 par:pas; +greluche greluche nom f s 0.57 1.01 0.29 0.47 +greluches greluche nom f p 0.57 1.01 0.28 0.54 +greluchon greluchon nom m s 0 0.2 0 0.2 +grenache grenache nom m s 0 0.27 0 0.27 +grenadage grenadage nom m s 0.03 0 0.03 0 +grenade grenade nom f s 11.67 12.97 6.32 6.49 +grenader grenader ver 0.05 0.2 0.05 0.07 inf; +grenades grenade nom f p 11.67 12.97 5.35 6.49 +grenadeur grenadeur nom m s 0.01 0 0.01 0 +grenadier grenadier nom m s 0.14 4.05 0.04 1.42 +grenadiers grenadier nom m p 0.14 4.05 0.1 2.64 +grenadine grenadine nom f s 0.41 3.99 0.14 3.72 +grenadines grenadine nom f p 0.41 3.99 0.27 0.27 +grenadé grenader ver m s 0.05 0.2 0 0.14 par:pas; +grenaille grenaille nom f s 0 0.14 0 0.07 +grenailles grenaille nom f p 0 0.14 0 0.07 +grenat grenat adj 0.16 3.85 0.16 3.85 +grenats grenat nom m p 0.06 0.61 0.04 0.27 +grenelle greneler ver 0 0.07 0 0.07 imp:pre:2s; +greneta greneter ver 0 0.07 0 0.07 ind:pas:3s; +greneuse greneur nom f s 0 0.07 0 0.07 +grenier grenier nom m s 9.39 24.39 9.05 19.53 +greniers grenier nom m p 9.39 24.39 0.34 4.86 +grenoblois grenoblois nom m s 0 0.14 0 0.14 +grenouillage grenouillage nom m s 0.14 0 0.14 0 +grenouillait grenouiller ver 0 0.07 0 0.07 ind:imp:3s; +grenouillard grenouillard adj m s 0.01 0 0.01 0 +grenouille grenouille nom f s 9.09 10.47 5.74 4.59 +grenouille_taureau grenouille_taureau nom f s 0.01 0 0.01 0 +grenouilles grenouille nom f p 9.09 10.47 3.35 5.88 +grenouillettes grenouillette nom f p 0 0.07 0 0.07 +grenouillère grenouillère nom f s 0.12 0.14 0.06 0 +grenouillères grenouillère nom f p 0.12 0.14 0.05 0.14 +grenu grenu adj m s 0.01 1.89 0.01 0.74 +grenue grenu adj f s 0.01 1.89 0 0.68 +grenues grenu adj f p 0.01 1.89 0 0.34 +grenures grenure nom f p 0 0.14 0 0.14 +grenus grenu adj m p 0.01 1.89 0 0.14 +grené grener ver m s 0 0.34 0 0.07 par:pas; +grenée grener ver f s 0 0.34 0 0.07 par:pas; +grenées grener ver f p 0 0.34 0 0.07 par:pas; +gressin gressin nom m s 0.04 0.27 0.03 0.2 +gressins gressin nom m p 0.04 0.27 0.01 0.07 +gretchen gretchen nom f s 1.89 0.41 1.89 0.34 +gretchens gretchen nom f p 1.89 0.41 0 0.07 +grevaient grever ver 0.18 0.81 0 0.07 ind:imp:3p; +grever grever ver 0.18 0.81 0.02 0.07 inf; +grevé grever ver m s 0.18 0.81 0.01 0.14 par:pas; +grevée grever ver f s 0.18 0.81 0 0.2 par:pas; +grevés grever ver m p 0.18 0.81 0 0.07 par:pas; +gri_gri gri_gri nom m s 0.21 0.14 0.21 0.14 +gribiche gribiche adj f s 0 0.14 0 0.14 +gribouilla gribouiller ver 0.6 1.69 0 0.07 ind:pas:3s; +gribouillage gribouillage nom m s 0.66 0.54 0.51 0.2 +gribouillages gribouillage nom m p 0.66 0.54 0.16 0.34 +gribouillais gribouiller ver 0.6 1.69 0.02 0 ind:imp:1s; +gribouillait gribouiller ver 0.6 1.69 0.01 0.14 ind:imp:3s; +gribouillant gribouiller ver 0.6 1.69 0.01 0.07 par:pre; +gribouille gribouiller ver 0.6 1.69 0.19 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gribouillent gribouiller ver 0.6 1.69 0 0.07 ind:pre:3p; +gribouiller gribouiller ver 0.6 1.69 0.13 0.41 inf; +gribouilles gribouiller ver 0.6 1.69 0.01 0.07 ind:pre:2s; +gribouilleur gribouilleur nom m s 0.06 0.07 0.06 0.07 +gribouillez gribouiller ver 0.6 1.69 0.03 0 imp:pre:2p;ind:pre:2p; +gribouillis gribouillis nom m 0.85 1.01 0.85 1.01 +gribouillé gribouiller ver m s 0.6 1.69 0.18 0.14 par:pas; +gribouillée gribouiller ver f s 0.6 1.69 0.01 0.07 par:pas; +gribouillées gribouiller ver f p 0.6 1.69 0 0.14 par:pas; +gribouillés gribouiller ver m p 0.6 1.69 0 0.2 par:pas; +grief grief nom m s 0.77 7.43 0.23 2.91 +griefs grief nom m p 0.77 7.43 0.54 4.53 +griffa griffer ver 3.28 9.53 0 0.68 ind:pas:3s; +griffage griffage nom m s 0 0.07 0 0.07 +griffai griffer ver 3.28 9.53 0 0.07 ind:pas:1s; +griffaient griffer ver 3.28 9.53 0.02 0.95 ind:imp:3p; +griffais griffer ver 3.28 9.53 0.01 0.07 ind:imp:1s; +griffait griffer ver 3.28 9.53 0.1 0.88 ind:imp:3s; +griffant griffer ver 3.28 9.53 0.05 0.68 par:pre; +griffe griffe nom f s 8.11 13.92 1.06 2.7 +griffent griffer ver 3.28 9.53 0.2 0.2 ind:pre:3p; +griffer griffer ver 3.28 9.53 0.64 2.57 inf; +griffera griffer ver 3.28 9.53 0.02 0.14 ind:fut:3s; +grifferait griffer ver 3.28 9.53 0 0.07 cnd:pre:3s; +griffes griffe nom f p 8.11 13.92 7.04 11.22 +griffeur griffeur nom m s 0.01 0 0.01 0 +griffon griffon nom m s 0.59 1.42 0.57 1.01 +griffonna griffonner ver 0.65 7.97 0 0.68 ind:pas:3s; +griffonnage griffonnage nom m s 0.07 0.61 0.04 0.2 +griffonnages griffonnage nom m p 0.07 0.61 0.04 0.41 +griffonnai griffonner ver 0.65 7.97 0 0.14 ind:pas:1s; +griffonnaient griffonner ver 0.65 7.97 0 0.07 ind:imp:3p; +griffonnais griffonner ver 0.65 7.97 0.01 0.2 ind:imp:1s;ind:imp:2s; +griffonnait griffonner ver 0.65 7.97 0.16 0.61 ind:imp:3s; +griffonnant griffonner ver 0.65 7.97 0.03 0.47 par:pre; +griffonne griffonner ver 0.65 7.97 0.18 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +griffonnent griffonner ver 0.65 7.97 0 0.14 ind:pre:3p; +griffonner griffonner ver 0.65 7.97 0.1 1.55 inf; +griffonnes griffonner ver 0.65 7.97 0.03 0.07 ind:pre:2s; +griffonneur griffonneur nom m s 0.14 0 0.14 0 +griffonnez griffonner ver 0.65 7.97 0.02 0 imp:pre:2p;ind:pre:2p; +griffonné griffonner ver m s 0.65 7.97 0.04 1.15 par:pas; +griffonnée griffonner ver f s 0.65 7.97 0.03 0.34 par:pas; +griffonnées griffonner ver f p 0.65 7.97 0.01 0.74 par:pas; +griffonnés griffonner ver m p 0.65 7.97 0.04 0.74 par:pas; +griffons griffon nom m p 0.59 1.42 0.03 0.41 +grifftons griffton nom m p 0 0.07 0 0.07 +griffu griffu adj m s 0.21 1.89 0.16 0.27 +griffue griffu adj f s 0.21 1.89 0 0.34 +griffues griffu adj f p 0.21 1.89 0.01 0.95 +griffure griffure nom f s 0.82 0.81 0.19 0.2 +griffures griffure nom f p 0.82 0.81 0.63 0.61 +griffus griffu adj m p 0.21 1.89 0.04 0.34 +griffé griffer ver m s 3.28 9.53 1.4 0.74 par:pas; +griffée griffer ver f s 3.28 9.53 0.21 0.34 par:pas; +griffées griffé adj f p 0.14 0.81 0.01 0.14 +griffés griffer ver m p 3.28 9.53 0.05 0.2 par:pas; +grifton grifton nom m s 0 0.14 0 0.14 +grignota grignoter ver 3.52 10.27 0 0.68 ind:pas:3s; +grignotage grignotage nom m s 0.1 0.34 0.1 0.2 +grignotages grignotage nom m p 0.1 0.34 0 0.14 +grignotaient grignoter ver 3.52 10.27 0.02 0.61 ind:imp:3p; +grignotais grignoter ver 3.52 10.27 0.03 0.27 ind:imp:1s; +grignotait grignoter ver 3.52 10.27 0.03 1.69 ind:imp:3s; +grignotant grignoter ver 3.52 10.27 0.16 1.22 par:pre; +grignote grignoter ver 3.52 10.27 0.6 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +grignotement grignotement nom m s 0.04 0.88 0.04 0.88 +grignotent grignoter ver 3.52 10.27 0.14 0.47 ind:pre:3p; +grignoter grignoter ver 3.52 10.27 1.69 2.57 inf; +grignotera grignoter ver 3.52 10.27 0.01 0.07 ind:fut:3s; +grignoterai grignoter ver 3.52 10.27 0.16 0 ind:fut:1s; +grignoteraient grignoter ver 3.52 10.27 0 0.07 cnd:pre:3p; +grignoterons grignoter ver 3.52 10.27 0.1 0 ind:fut:1p; +grignoteront grignoter ver 3.52 10.27 0.01 0 ind:fut:3p; +grignoteurs grignoteur nom m p 0 0.07 0 0.07 +grignoteuses grignoteur adj f p 0 0.14 0 0.14 +grignotions grignoter ver 3.52 10.27 0 0.14 ind:imp:1p; +grignotis grignotis nom m 0 0.14 0 0.14 +grignotons grignoter ver 3.52 10.27 0.02 0.07 imp:pre:1p;ind:pre:1p; +grignotèrent grignoter ver 3.52 10.27 0 0.14 ind:pas:3p; +grignoté grignoter ver m s 3.52 10.27 0.51 0.74 par:pas; +grignotée grignoter ver f s 3.52 10.27 0.01 0.14 par:pas; +grignotées grignoter ver f p 3.52 10.27 0.02 0.07 par:pas; +grignotés grignoter ver m p 3.52 10.27 0 0.07 par:pas; +grigou grigou nom m s 0.02 0.41 0.02 0.41 +grigri grigri nom m s 0.48 0.61 0.46 0.07 +grigris grigri nom m p 0.48 0.61 0.02 0.54 +gril gril nom m s 0.68 1.76 0.64 1.49 +grill grill nom m s 1.66 0.14 1.66 0.14 +grill_room grill_room nom m s 0 0.27 0 0.27 +grilla griller ver 14.2 12.7 0 0.27 ind:pas:3s; +grillade grillade nom f s 0.69 1.08 0.41 0.54 +grilladerie grilladerie nom f s 0.02 0 0.02 0 +grillades grillade nom f p 0.69 1.08 0.28 0.54 +grillage grillage nom m s 1.48 12.03 1.47 9.59 +grillageront grillager ver 0.18 0.88 0 0.07 ind:fut:3p; +grillages grillage nom m p 1.48 12.03 0.01 2.43 +grillagez grillager ver 0.18 0.88 0.01 0 imp:pre:2p; +grillagé grillager ver m s 0.18 0.88 0.01 0.2 par:pas; +grillagée grillager ver f s 0.18 0.88 0.12 0.34 par:pas; +grillagées grillager ver f p 0.18 0.88 0.04 0.2 par:pas; +grillagés grillagé adj m p 0.14 2.64 0.14 0.2 +grillaient griller ver 14.2 12.7 0 0.14 ind:imp:3p; +grillais griller ver 14.2 12.7 0.01 0.14 ind:imp:1s; +grillait griller ver 14.2 12.7 0.06 1.35 ind:imp:3s; +grillant griller ver 14.2 12.7 0.16 0.88 par:pre; +grille grille nom f s 11.01 58.24 9.09 43.85 +grille_pain grille_pain nom m 2.9 0.27 2.9 0.27 +grillent griller ver 14.2 12.7 0.24 0.27 ind:pre:3p; +griller griller ver 14.2 12.7 4.97 4.05 inf; +grillera griller ver 14.2 12.7 0.16 0 ind:fut:3s; +grillerai griller ver 14.2 12.7 0.02 0 ind:fut:1s; +grilleraient griller ver 14.2 12.7 0.02 0.07 cnd:pre:3p; +grillerais griller ver 14.2 12.7 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +grillerait griller ver 14.2 12.7 0.01 0 cnd:pre:3s; +grilleras griller ver 14.2 12.7 0.28 0 ind:fut:2s; +grillerez griller ver 14.2 12.7 0.12 0.07 ind:fut:2p; +grillerions griller ver 14.2 12.7 0.14 0 cnd:pre:1p; +grilleront griller ver 14.2 12.7 0.01 0.07 ind:fut:3p; +grilles grille nom f p 11.01 58.24 1.92 14.39 +grillez griller ver 14.2 12.7 0.16 0 imp:pre:2p;ind:pre:2p; +grilliez griller ver 14.2 12.7 0.01 0 ind:imp:2p; +grilloirs grilloir nom m p 0 0.07 0 0.07 +grillon grillon nom m s 1.45 4.59 0.98 2.09 +grillons grillon nom m p 1.45 4.59 0.46 2.5 +grillots grillot nom m p 0 0.07 0 0.07 +grillé griller ver m s 14.2 12.7 4.1 2.7 par:pas; +grillée grillé adj f s 4.3 7.57 0.76 1.15 +grillées grillé adj f p 4.3 7.57 0.5 1.62 +grillés grillé adj m p 4.3 7.57 0.91 1.49 +grils gril nom m p 0.68 1.76 0.04 0.27 +grima grimer ver 0.2 0.81 0.04 0 ind:pas:3s; +grimace grimace nom f s 4.5 31.49 2.28 22.57 +grimace_éclair grimace_éclair nom f s 0.01 0 0.01 0 +grimacement grimacement nom m s 0 0.07 0 0.07 +grimacent grimacer ver 0.49 12.36 0.04 0.14 ind:pre:3p; +grimacer grimacer ver 0.49 12.36 0.16 1.96 inf; +grimaceries grimacerie nom f p 0 0.07 0 0.07 +grimaces grimace nom f p 4.5 31.49 2.23 8.92 +grimacez grimacer ver 0.49 12.36 0.03 0.07 imp:pre:2p;ind:pre:2p; +grimacier grimacier nom m s 0.27 0.34 0 0.34 +grimaciers grimacier nom m p 0.27 0.34 0.27 0 +grimaciez grimacer ver 0.49 12.36 0 0.07 ind:imp:2p; +grimacions grimacer ver 0.49 12.36 0 0.07 ind:imp:1p; +grimacèrent grimacer ver 0.49 12.36 0 0.07 ind:pas:3p; +grimacé grimacer ver m s 0.49 12.36 0.05 0.88 par:pas; +grimage grimage nom m s 0.02 0.2 0.02 0.2 +grimait grimer ver 0.2 0.81 0 0.14 ind:imp:3s; +grimant grimer ver 0.2 0.81 0 0.07 par:pre; +grimasse grimer ver 0.2 0.81 0.01 0 sub:imp:1s; +grimauds grimaud nom m p 0 0.07 0 0.07 +grimaça grimacer ver 0.49 12.36 0.01 1.62 ind:pas:3s; +grimaçai grimacer ver 0.49 12.36 0 0.07 ind:pas:1s; +grimaçaient grimacer ver 0.49 12.36 0 0.54 ind:imp:3p; +grimaçais grimacer ver 0.49 12.36 0 0.14 ind:imp:1s; +grimaçait grimacer ver 0.49 12.36 0.02 2.09 ind:imp:3s; +grimaçant grimaçant adj m s 0.16 3.04 0.14 1.62 +grimaçante grimaçant adj f s 0.16 3.04 0 0.68 +grimaçantes grimaçant adj f p 0.16 3.04 0 0.34 +grimaçants grimaçant adj m p 0.16 3.04 0.02 0.41 +grimaçons grimacer ver 0.49 12.36 0 0.07 imp:pre:1p; +griment grimer ver 0.2 0.81 0 0.07 ind:pre:3p; +grimer grimer ver 0.2 0.81 0.01 0.07 inf; +grimes grime nom m p 0.48 0 0.48 0 +grimoire grimoire nom m s 0.49 1.22 0.47 0.47 +grimoires grimoire nom m p 0.49 1.22 0.02 0.74 +grimpa grimper ver 21.05 51.15 0.19 5.81 ind:pas:3s; +grimpai grimper ver 21.05 51.15 0 0.95 ind:pas:1s; +grimpaient grimper ver 21.05 51.15 0.04 2.03 ind:imp:3p; +grimpais grimper ver 21.05 51.15 0.51 1.01 ind:imp:1s;ind:imp:2s; +grimpait grimper ver 21.05 51.15 0.39 5.47 ind:imp:3s; +grimpant grimper ver 21.05 51.15 0.13 2.36 par:pre; +grimpante grimpant adj f s 0.18 1.55 0.11 0.14 +grimpantes grimpant adj f p 0.18 1.55 0.04 0.61 +grimpants grimpant adj m p 0.18 1.55 0.01 0.27 +grimpe grimper ver 21.05 51.15 6.12 8.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grimpent grimper ver 21.05 51.15 0.82 2.03 ind:pre:3p; +grimper grimper ver 21.05 51.15 7.48 14.05 inf; +grimpera grimper ver 21.05 51.15 0.2 0.14 ind:fut:3s; +grimperai grimper ver 21.05 51.15 0.03 0.07 ind:fut:1s; +grimperaient grimper ver 21.05 51.15 0.14 0.14 cnd:pre:3p; +grimperais grimper ver 21.05 51.15 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +grimperait grimper ver 21.05 51.15 0.06 0.14 cnd:pre:3s; +grimperez grimper ver 21.05 51.15 0.02 0 ind:fut:2p; +grimperons grimper ver 21.05 51.15 0.01 0 ind:fut:1p; +grimperont grimper ver 21.05 51.15 0.2 0 ind:fut:3p; +grimpette grimpette nom f s 0.29 1.01 0.29 0.81 +grimpettes grimpette nom f p 0.29 1.01 0 0.2 +grimpeur grimpeur nom m s 0.91 0.41 0.61 0.34 +grimpeurs grimpeur nom m p 0.91 0.41 0.25 0.07 +grimpeuse grimpeur nom f s 0.91 0.41 0.06 0 +grimpez grimper ver 21.05 51.15 1.59 0.14 imp:pre:2p;ind:pre:2p; +grimpiez grimper ver 21.05 51.15 0.19 0 ind:imp:2p; +grimpions grimper ver 21.05 51.15 0.01 0.61 ind:imp:1p; +grimpons grimper ver 21.05 51.15 0.29 0.54 imp:pre:1p;ind:pre:1p; +grimpâmes grimper ver 21.05 51.15 0.01 0.07 ind:pas:1p; +grimpât grimper ver 21.05 51.15 0 0.07 sub:imp:3s; +grimpèrent grimper ver 21.05 51.15 0.12 1.49 ind:pas:3p; +grimpé grimper ver m s 21.05 51.15 2.01 4.93 par:pas; +grimpée grimper ver f s 21.05 51.15 0.14 0.14 par:pas; +grimpées grimper ver f p 21.05 51.15 0.14 0 par:pas; +grimpés grimper ver m p 21.05 51.15 0.04 0.68 par:pas; +grimé grimer ver m s 0.2 0.81 0.13 0.14 par:pas; +grimée grimer ver f s 0.2 0.81 0 0.07 par:pas; +grimées grimer ver f p 0.2 0.81 0 0.07 par:pas; +grimés grimer ver m p 0.2 0.81 0 0.2 par:pas; +grince grincer ver 2.84 19.53 1.37 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grincement grincement nom m s 1.57 9.59 0.71 6.49 +grincements grincement nom m p 1.57 9.59 0.86 3.11 +grincent grincer ver 2.84 19.53 0.26 0.95 ind:pre:3p; +grincer grincer ver 2.84 19.53 0.59 4.46 inf; +grincerait grincer ver 2.84 19.53 0.01 0.07 cnd:pre:3s; +grinces grincer ver 2.84 19.53 0.04 0 ind:pre:2s; +grincez grincer ver 2.84 19.53 0 0.07 imp:pre:2p; +grinche grinche adj s 0.02 0 0.02 0 +grincheuse grincheux adj f s 1.54 1.22 0.35 0.14 +grincheuses grincheux adj f p 1.54 1.22 0.02 0.07 +grincheux grincheux adj m 1.54 1.22 1.16 1.01 +grinchir grinchir ver 0 0.14 0 0.14 inf; +grincèrent grincer ver 2.84 19.53 0 0.47 ind:pas:3p; +grincé grincer ver m s 2.84 19.53 0.35 0.95 par:pas; +gringalet gringalet nom m s 0.44 0.61 0.4 0.41 +gringalets gringalet nom m p 0.44 0.61 0.04 0.2 +gringo gringo nom m s 4.64 0 3.66 0 +gringos gringo nom m p 4.64 0 0.98 0 +gringue gringue nom m s 0.35 1.15 0.35 1.15 +gringuer gringuer ver 0 0.14 0 0.14 inf; +grinça grincer ver 2.84 19.53 0 2.64 ind:pas:3s; +grinçaient grincer ver 2.84 19.53 0 1.35 ind:imp:3p; +grinçais grincer ver 2.84 19.53 0 0.07 ind:imp:1s; +grinçait grincer ver 2.84 19.53 0.19 2.97 ind:imp:3s; +grinçant grinçant adj m s 0.47 3.78 0.32 1.35 +grinçante grinçant adj f s 0.47 3.78 0.02 1.49 +grinçantes grinçant adj f p 0.47 3.78 0.1 0.34 +grinçants grinçant adj m p 0.47 3.78 0.03 0.61 +grinçât grincer ver 2.84 19.53 0 0.07 sub:imp:3s; +griot griot nom m s 0.58 1.55 0.16 1.08 +griots griot nom m p 0.58 1.55 0.43 0.47 +griotte griotte nom f s 0.13 3.18 0 0.07 +griottes griotte nom f p 0.13 3.18 0.13 3.11 +grip grip nom m s 0.2 0 0.2 0 +grippa gripper ver 0.71 1.22 0 0.14 ind:pas:3s; +grippaient gripper ver 0.71 1.22 0 0.07 ind:imp:3p; +grippal grippal adj m s 0.03 0 0.01 0 +grippant gripper ver 0.71 1.22 0 0.07 par:pre; +grippaux grippal adj m p 0.03 0 0.02 0 +grippe grippe nom f s 8.22 5.54 8.02 4.86 +grippe_sou grippe_sou nom m s 0.25 0.14 0.13 0.07 +grippe_sou grippe_sou nom m p 0.25 0.14 0.12 0.07 +grippements grippement nom m p 0 0.07 0 0.07 +gripper gripper ver 0.71 1.22 0.04 0 inf; +gripperait gripper ver 0.71 1.22 0 0.07 cnd:pre:3s; +grippes grippe nom f p 8.22 5.54 0.21 0.68 +grippé gripper ver m s 0.71 1.22 0.15 0.2 par:pas; +grippée gripper ver f s 0.71 1.22 0.25 0.27 par:pas; +grippés gripper ver m p 0.71 1.22 0.14 0.07 par:pas; +gris gris adj m 19.64 154.86 11.05 88.31 +gris_blanc gris_blanc adj m s 0 0.2 0 0.2 +gris_bleu gris_bleu adj m s 0.3 1.69 0.3 1.69 +gris_gris gris_gris nom m 0.22 0.74 0.22 0.74 +gris_jaune gris_jaune adj m s 0 0.2 0 0.2 +gris_perle gris_perle adj m s 0.01 0.14 0.01 0.14 +gris_rose gris_rose adj 0 0.41 0 0.41 +gris_vert gris_vert adj m s 0.01 1.55 0.01 1.55 +grisa griser ver 1.03 10.27 0 0.47 ind:pas:3s; +grisai griser ver 1.03 10.27 0 0.14 ind:pas:1s; +grisaient griser ver 1.03 10.27 0 0.2 ind:imp:3p; +grisaille grisaille nom f s 0.25 7.77 0.25 7.36 +grisailles grisaille nom f p 0.25 7.77 0 0.41 +grisaillèrent grisailler ver 0 0.07 0 0.07 ind:pas:3p; +grisais griser ver 1.03 10.27 0 0.14 ind:imp:1s; +grisait griser ver 1.03 10.27 0 1.35 ind:imp:3s; +grisant grisant adj m s 0.54 3.24 0.29 1.28 +grisante grisant adj f s 0.54 3.24 0.21 1.28 +grisantes grisant adj f p 0.54 3.24 0.01 0.34 +grisants grisant adj m p 0.54 3.24 0.03 0.34 +grisassent griser ver 1.03 10.27 0 0.07 sub:imp:3p; +grisbi grisbi nom m s 0.15 1.22 0.15 1.22 +grise gris adj f s 19.64 154.86 7.25 49.39 +grisent griser ver 1.03 10.27 0.02 0.2 ind:pre:3p; +griser griser ver 1.03 10.27 0.09 1.55 inf; +grisera griser ver 1.03 10.27 0 0.07 ind:fut:3s; +griserie griserie nom f s 0.02 2.23 0.02 2.16 +griseries griserie nom f p 0.02 2.23 0 0.07 +grises gris adj f p 19.64 154.86 1.34 17.16 +grisette grisette nom f s 0 0.41 0 0.14 +grisettes grisette nom f p 0 0.41 0 0.27 +grison grison nom m s 0.01 0 0.01 0 +grisonnaient grisonner ver 0.32 0.88 0 0.27 ind:imp:3p; +grisonnait grisonner ver 0.32 0.88 0.01 0.14 ind:imp:3s; +grisonnant grisonnant adj m s 0.48 3.04 0.18 0.81 +grisonnante grisonnant adj f s 0.48 3.04 0.03 0.74 +grisonnantes grisonnant adj f p 0.48 3.04 0.12 0.2 +grisonnants grisonnant adj m p 0.48 3.04 0.15 1.28 +grisonne grisonner ver 0.32 0.88 0.14 0 ind:pre:1s; +grisonnent grisonner ver 0.32 0.88 0.01 0.14 ind:pre:3p; +grisonner grisonner ver 0.32 0.88 0.01 0.14 inf; +grisonné grisonner ver m s 0.32 0.88 0.01 0.07 par:pas; +grisons grison adj m p 0.01 0.14 0 0.14 +grisotte grisotte nom f s 0 0.07 0 0.07 +grisou grisou nom m s 0.01 1.22 0.01 1.22 +grisâtre grisâtre adj s 0.12 13.04 0.1 9.53 +grisâtres grisâtre adj p 0.12 13.04 0.02 3.51 +grisé grisé adj m s 0.16 0.61 0.14 0.41 +grisée griser ver f s 1.03 10.27 0 0.61 par:pas; +grisées griser ver f p 1.03 10.27 0 0.07 par:pas; +grisés griser ver m p 1.03 10.27 0.14 0.61 par:pas; +grive grive nom f s 1.73 1.82 0.52 0.74 +grivelle griveler ver 0 0.2 0 0.2 ind:pre:3s; +grivelures grivelure nom f p 0 0.07 0 0.07 +grivelée grivelé adj f s 0 0.07 0 0.07 +grives grive nom f p 1.73 1.82 1.21 1.08 +grivet grivet nom m s 0.01 0 0.01 0 +griveton griveton nom m s 0 1.08 0 0.47 +grivetons griveton nom m p 0 1.08 0 0.61 +grivois grivois adj m 0.38 0.95 0.25 0.27 +grivoise grivois adj f s 0.38 0.95 0.12 0.14 +grivoiserie grivoiserie nom f s 0.03 0.2 0 0.14 +grivoiseries grivoiserie nom f p 0.03 0.2 0.03 0.07 +grivoises grivois adj f p 0.38 0.95 0.01 0.54 +grivèlerie grivèlerie nom f s 0 0.2 0 0.2 +grizzli grizzli nom m s 0.57 0 0.19 0 +grizzlis grizzli nom m p 0.57 0 0.38 0 +grizzly grizzly nom m s 0.74 0.2 0.72 0.14 +grizzlys grizzly nom m p 0.74 0.2 0.02 0.07 +grièvement grièvement adv 1.68 1.55 1.68 1.55 +groenlandais groenlandais adj m p 0.1 0.07 0.1 0.07 +grog grog nom m s 0.63 1.42 0.52 1.15 +groggy groggy adj s 0.71 0.54 0.71 0.54 +grogna grogner ver 3.01 31.42 0.02 11.96 ind:pas:3s; +grognai grogner ver 3.01 31.42 0 0.07 ind:pas:1s; +grognaient grogner ver 3.01 31.42 0.23 0.41 ind:imp:3p; +grognais grogner ver 3.01 31.42 0 0.07 ind:imp:1s; +grognait grogner ver 3.01 31.42 0.07 4.19 ind:imp:3s; +grognant grognant adj m s 0.1 0.27 0.1 0.27 +grognard grognard nom m s 0.03 0.74 0.03 0.27 +grognards grognard nom m p 0.03 0.74 0 0.47 +grognassaient grognasser ver 0 0.2 0 0.07 ind:imp:3p; +grognasse grognasse nom f s 0.17 0.95 0.14 0.61 +grognasser grognasser ver 0 0.2 0 0.14 inf; +grognasses grognasse nom f p 0.17 0.95 0.03 0.34 +grogne grogner ver 3.01 31.42 1.55 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grognement grognement nom m s 1.33 9.53 0.65 4.46 +grognements grognement nom m p 1.33 9.53 0.68 5.07 +grognent grogner ver 3.01 31.42 0.08 0.54 ind:pre:3p; +grogner grogner ver 3.01 31.42 0.69 2.3 inf; +grognera grogner ver 3.01 31.42 0 0.14 ind:fut:3s; +grognes grogner ver 3.01 31.42 0.25 0.41 ind:pre:2s; +grogneurs grogneur adj m p 0 0.2 0 0.07 +grogneuse grogneur adj f s 0 0.2 0 0.14 +grognions grogner ver 3.01 31.42 0 0.14 ind:imp:1p; +grognon grognon adj m s 0.8 1.22 0.71 0.88 +grognonna grognonner ver 0.01 0.2 0 0.07 ind:pas:3s; +grognonne grognon adj f s 0.8 1.22 0.02 0.2 +grognonner grognonner ver 0.01 0.2 0.01 0.07 inf; +grognons grognon adj m p 0.8 1.22 0.06 0.14 +grognèrent grogner ver 3.01 31.42 0 0.2 ind:pas:3p; +grogné grogner ver m s 3.01 31.42 0.11 2.3 par:pas; +grognées grogner ver f p 3.01 31.42 0 0.07 par:pas; +grogs grog nom m p 0.63 1.42 0.12 0.27 +groin groin nom m s 0.43 1.89 0.32 1.76 +groins groin nom m p 0.43 1.89 0.11 0.14 +grole grole nom f s 0.07 0.34 0.04 0.14 +groles grole nom f p 0.07 0.34 0.03 0.2 +grolle grolle nom f s 0.13 1.49 0.04 0.41 +grolles grolle nom f p 0.13 1.49 0.1 1.08 +grommela grommeler ver 0.14 13.92 0.01 5.61 ind:pas:3s; +grommelai grommeler ver 0.14 13.92 0 0.14 ind:pas:1s; +grommelaient grommeler ver 0.14 13.92 0.01 0.14 ind:imp:3p; +grommelait grommeler ver 0.14 13.92 0.01 1.96 ind:imp:3s; +grommelant grommeler ver 0.14 13.92 0.02 2.36 par:pre; +grommeler grommeler ver 0.14 13.92 0.03 0.81 inf; +grommelez grommeler ver 0.14 13.92 0.02 0 ind:pre:2p; +grommelle grommeler ver 0.14 13.92 0.01 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grommellement grommellement nom m s 0.01 0.74 0.01 0.47 +grommellements grommellement nom m p 0.01 0.74 0 0.27 +grommellent grommeler ver 0.14 13.92 0.02 0.07 ind:pre:3p; +grommellerait grommeler ver 0.14 13.92 0 0.07 cnd:pre:3s; +grommelèrent grommeler ver 0.14 13.92 0 0.07 ind:pas:3p; +grommelé grommeler ver m s 0.14 13.92 0.01 0.88 par:pas; +grommelée grommeler ver f s 0.14 13.92 0 0.07 par:pas; +gronda gronder ver 8.74 22.7 0.04 4.66 ind:pas:3s; +grondai gronder ver 8.74 22.7 0 0.34 ind:pas:1s; +grondaient gronder ver 8.74 22.7 0.02 0.81 ind:imp:3p; +grondais gronder ver 8.74 22.7 0.1 0.2 ind:imp:1s;ind:imp:2s; +grondait gronder ver 8.74 22.7 0.15 4.66 ind:imp:3s; +grondant gronder ver 8.74 22.7 0.3 2.36 par:pre; +grondante grondant adj f s 0.23 1.42 0.01 0.81 +grondants grondant adj m p 0.23 1.42 0 0.14 +gronde gronder ver 8.74 22.7 4.75 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grondement grondement nom m s 1.3 14.8 1.18 12.36 +grondements grondement nom m p 1.3 14.8 0.13 2.43 +grondent gronder ver 8.74 22.7 0.15 0.27 ind:pre:3p; +gronder gronder ver 8.74 22.7 2.14 3.58 inf; +grondera gronder ver 8.74 22.7 0.28 0.07 ind:fut:3s; +gronderai gronder ver 8.74 22.7 0.01 0.07 ind:fut:1s; +gronderait gronder ver 8.74 22.7 0.04 0.34 cnd:pre:3s; +gronderies gronderie nom f p 0 0.14 0 0.14 +grondes gronder ver 8.74 22.7 0.15 0.07 ind:pre:2s; +grondeur grondeur adj m s 0 1.35 0 0.47 +grondeurs grondeur adj m p 0 1.35 0 0.07 +grondeuse grondeur adj f s 0 1.35 0 0.68 +grondeuses grondeur adj f p 0 1.35 0 0.14 +grondez gronder ver 8.74 22.7 0.15 0.2 imp:pre:2p;ind:pre:2p; +grondin grondin nom m s 0 1.69 0 1.55 +grondins grondin nom m p 0 1.69 0 0.14 +grondèrent gronder ver 8.74 22.7 0.01 0.14 ind:pas:3p; +grondé gronder ver m s 8.74 22.7 0.33 0.95 par:pas; +grondée gronder ver f s 8.74 22.7 0.12 0.34 par:pas; +grondés gronder ver m p 8.74 22.7 0.01 0.14 par:pas; +groom groom nom m s 1.17 2.57 1.02 1.89 +grooms groom nom m p 1.17 2.57 0.14 0.68 +gros gros adj m 266.95 353.45 180.91 216.01 +gros_bec gros_bec nom m s 0.06 0.07 0.06 0 +gros_bec gros_bec nom m p 0.06 0.07 0 0.07 +gros_cul gros_cul nom m s 0.04 0.14 0.04 0.14 +gros_grain gros_grain nom m s 0 0.41 0 0.41 +gros_porteur gros_porteur nom m s 0.02 0 0.02 0 +groschen groschen nom m s 0 0.07 0 0.07 +groseille groseille adj f s 0.3 0.2 0.3 0.2 +groseilles groseille nom f p 1.23 1.89 0.94 1.35 +groseillier groseillier nom m s 0.17 0.61 0.01 0.14 +groseilliers groseillier nom m p 0.17 0.61 0.16 0.47 +grosse gros adj f s 266.95 353.45 70.63 85.81 +grosses gros adj f p 266.95 353.45 15.41 51.62 +grossesse grossesse nom f s 7.09 4.93 6.63 3.92 +grossesses grossesse nom f p 7.09 4.93 0.46 1.01 +grosseur grosseur nom f s 1.12 2.97 1.08 2.57 +grosseurs grosseur nom f p 1.12 2.97 0.04 0.41 +grossi grossir ver m s 10.57 14.8 3.85 2.57 par:pas; +grossie grossir ver f s 10.57 14.8 0 0.54 par:pas; +grossier grossier adj m s 11.64 22.57 6.77 8.99 +grossiers grossier adj m p 11.64 22.57 0.9 4.05 +grossies grossir ver f p 10.57 14.8 0 0.34 par:pas; +grossir grossir ver 10.57 14.8 3.3 4.93 inf; +grossira grossir ver 10.57 14.8 0.05 0.14 ind:fut:3s; +grossirent grossir ver 10.57 14.8 0 0.07 ind:pas:3p; +grossirez grossir ver 10.57 14.8 0 0.07 ind:fut:2p; +grossiront grossir ver 10.57 14.8 0.04 0.07 ind:fut:3p; +grossis grossir ver m p 10.57 14.8 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +grossissaient grossir ver 10.57 14.8 0.02 0.74 ind:imp:3p; +grossissais grossir ver 10.57 14.8 0.02 0.07 ind:imp:1s; +grossissait grossir ver 10.57 14.8 0.32 1.62 ind:imp:3s; +grossissant grossissant adj m s 0.34 1.28 0.04 1.01 +grossissante grossissant adj f s 0.34 1.28 0.03 0 +grossissantes grossissant adj f p 0.34 1.28 0 0.14 +grossissants grossissant adj m p 0.34 1.28 0.28 0.14 +grossisse grossir ver 10.57 14.8 0.09 0.14 sub:pre:1s;sub:pre:3s; +grossissement grossissement nom m s 0.06 0.81 0.06 0.81 +grossissent grossir ver 10.57 14.8 0.43 0.68 ind:pre:3p; +grossisses grossir ver 10.57 14.8 0.02 0 sub:pre:2s; +grossissez grossir ver 10.57 14.8 0.07 0.07 imp:pre:2p;ind:pre:2p; +grossiste grossiste nom s 0.7 0.81 0.5 0.54 +grossistes grossiste nom p 0.7 0.81 0.2 0.27 +grossit grossir ver 10.57 14.8 1.96 1.82 ind:pre:3s;ind:pas:3s; +grossium grossium nom m s 0.01 0.88 0 0.54 +grossiums grossium nom m p 0.01 0.88 0.01 0.34 +grossière grossier adj f s 11.64 22.57 3.3 6.28 +grossièrement grossièrement adv 0.61 5.41 0.61 5.41 +grossières grossier adj f p 11.64 22.57 0.67 3.24 +grossièreté grossièreté nom f s 2.71 6.15 1.96 4.8 +grossièretés grossièreté nom f p 2.71 6.15 0.74 1.35 +grosso_modo grosso_modo adv 0.44 1.89 0.44 1.89 +grotesque grotesque adj s 5.58 12.97 5.01 9.12 +grotesquement grotesquement adv 0.04 0.95 0.04 0.95 +grotesques grotesque adj p 5.58 12.97 0.57 3.85 +grotte grotte nom f s 12.23 21.96 8.96 17.84 +grottes grotte nom f p 12.23 21.96 3.28 4.12 +grouillaient grouiller ver 22.39 15.54 0.06 2.23 ind:imp:3p; +grouillais grouiller ver 22.39 15.54 0 0.07 ind:imp:1s; +grouillait grouiller ver 22.39 15.54 0.27 2.64 ind:imp:3s; +grouillant grouiller ver 22.39 15.54 0.11 1.28 par:pre; +grouillante grouillant adj f s 0.14 4.73 0.04 2.09 +grouillantes grouillant adj f p 0.14 4.73 0.03 0.88 +grouillants grouillant adj m p 0.14 4.73 0.03 1.01 +grouille grouiller ver 22.39 15.54 15.56 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grouillement grouillement nom m s 0.16 4.73 0.02 4.53 +grouillements grouillement nom m p 0.16 4.73 0.14 0.2 +grouillent grouiller ver 22.39 15.54 0.65 1.35 ind:pre:3p; +grouiller grouiller ver 22.39 15.54 0.89 1.62 inf; +grouillera grouiller ver 22.39 15.54 0.05 0 ind:fut:3s; +grouillerait grouiller ver 22.39 15.54 0.04 0 cnd:pre:3s; +grouilleront grouiller ver 22.39 15.54 0.01 0 ind:fut:3p; +grouilles grouiller ver 22.39 15.54 0.48 0.07 ind:pre:2s; +grouillez grouiller ver 22.39 15.54 4.08 0.95 imp:pre:2p;ind:pre:2p; +grouillis grouillis nom m 0 0.47 0 0.47 +grouillons grouiller ver 22.39 15.54 0.19 0.41 imp:pre:1p;ind:pre:1p; +grouillot grouillot nom m s 0.12 0.74 0.1 0.61 +grouillots grouillot nom m p 0.12 0.74 0.03 0.14 +grouillèrent grouiller ver 22.39 15.54 0 0.07 ind:pas:3p; +grouillé grouiller ver m s 22.39 15.54 0.02 0.07 par:pas; +grouillées grouiller ver f p 22.39 15.54 0 0.07 par:pas; +grouiner grouiner ver 0.01 0 0.01 0 inf; +groumais groumer ver 0 1.22 0 0.07 ind:imp:1s; +groumait groumer ver 0 1.22 0 0.27 ind:imp:3s; +groumant groumer ver 0 1.22 0 0.07 par:pre; +groume groumer ver 0 1.22 0 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +groumer groumer ver 0 1.22 0 0.14 inf; +ground ground nom m s 0.27 0 0.27 0 +group group nom m s 7.65 0.34 7.41 0.34 +groupa grouper ver 3.1 13.31 0 0.2 ind:pas:3s; +groupage groupage nom m s 0.01 0 0.01 0 +groupaient grouper ver 3.1 13.31 0 1.08 ind:imp:3p; +groupais grouper ver 3.1 13.31 0 0.07 ind:imp:1s; +groupait grouper ver 3.1 13.31 0.01 0.68 ind:imp:3s; +groupant grouper ver 3.1 13.31 0 0.54 par:pre; +groupe groupe nom m s 104.38 122.5 90.16 85.88 +groupement groupement nom m s 0.98 6.22 0.96 4.19 +groupements groupement nom m p 0.98 6.22 0.02 2.03 +groupent grouper ver 3.1 13.31 0 0.95 ind:pre:3p; +grouper grouper ver 3.1 13.31 0.44 2.03 inf; +grouperaient grouper ver 3.1 13.31 0 0.07 cnd:pre:3p; +grouperont grouper ver 3.1 13.31 0.1 0.07 ind:fut:3p; +groupes groupe nom m p 104.38 122.5 14.21 36.62 +groupez grouper ver 3.1 13.31 0.04 0 imp:pre:2p;ind:pre:2p; +groupie groupie nom f s 1.34 0.74 0.86 0.34 +groupies groupie nom f p 1.34 0.74 0.48 0.41 +groupons grouper ver 3.1 13.31 0.2 0.07 imp:pre:1p;ind:pre:1p; +groups group nom m p 7.65 0.34 0.25 0 +groupuscule groupuscule nom m s 0.36 0.54 0.2 0.2 +groupuscules groupuscule nom m p 0.36 0.54 0.16 0.34 +groupât grouper ver 3.1 13.31 0 0.07 sub:imp:3s; +groupèrent grouper ver 3.1 13.31 0 0.41 ind:pas:3p; +groupé grouper ver m s 3.1 13.31 0.25 0.34 par:pas; +groupée grouper ver f s 3.1 13.31 0.11 0.61 par:pas; +groupées grouper ver f p 3.1 13.31 0.1 0.88 par:pas; +groupés grouper ver m p 3.1 13.31 1.25 4.19 par:pas; +grouse grouse nom f s 0.28 0.68 0.28 0.14 +grouses grouse nom f p 0.28 0.68 0 0.54 +gruau gruau nom m s 0.73 0.54 0.69 0.54 +gruaux gruau nom m p 0.73 0.54 0.04 0 +grue grue nom f s 4.76 6.22 3.54 2.84 +grues grue nom f p 4.76 6.22 1.22 3.38 +gruge gruger ver 0.48 0.47 0.04 0.07 ind:pre:3s; +grugeaient gruger ver 0.48 0.47 0 0.07 ind:imp:3p; +grugeait gruger ver 0.48 0.47 0.01 0.07 ind:imp:3s; +grugeant gruger ver 0.48 0.47 0 0.07 par:pre; +gruger gruger ver 0.48 0.47 0.21 0.14 inf; +grugé gruger ver m s 0.48 0.47 0.21 0.07 par:pas; +grugée gruger ver f s 0.48 0.47 0.01 0 par:pas; +grume grume nom f s 0.12 0.47 0.01 0.2 +grumeau grumeau nom m s 0.28 1.01 0.02 0.14 +grumeaux grumeau nom m p 0.28 1.01 0.26 0.88 +grumeleuse grumeleux adj f s 0.33 1.89 0.01 1.15 +grumeleuses grumeleux adj f p 0.33 1.89 0.02 0.14 +grumeleux grumeleux adj m 0.33 1.89 0.29 0.61 +grumes grume nom f p 0.12 0.47 0.11 0.27 +grumier grumier nom m s 0.01 0 0.01 0 +grunge grunge nom m s 0.27 0 0.27 0 +gruppetto gruppetto nom m s 0 0.14 0 0.14 +gruta gruter ver 0 0.14 0 0.07 ind:pas:3s; +grute gruter ver 0 0.14 0 0.07 ind:pre:1s; +grutier grutier nom m s 0.14 2.3 0.14 0.34 +grutiers grutier nom m p 0.14 2.3 0 1.89 +grutière grutier nom f s 0.14 2.3 0 0.07 +gruyère gruyère nom m s 1.02 4.8 1.02 4.8 +grâce grâce pre 85.61 78.85 85.61 78.85 +grâces grâce nom f p 34.59 57.7 2.5 8.04 +grèbe grèbe nom m s 0.02 0.07 0.02 0 +grèbes grèbe nom m p 0.02 0.07 0 0.07 +grège grège adj s 0 1.28 0 1.22 +grèges grège adj p 0 1.28 0 0.07 +grègues grègues nom f p 0 0.07 0 0.07 +grène grener ver 0 0.34 0 0.07 ind:pre:3s; +grènera grener ver 0 0.34 0 0.07 ind:fut:3s; +grès grès nom m 0.31 4.05 0.31 4.05 +grève grève nom f s 15.87 26.55 14.54 22.36 +grèvent grever ver 0.18 0.81 0 0.14 ind:pre:3p; +grèverait grever ver 0.18 0.81 0 0.07 cnd:pre:3s; +grèves grève nom f p 15.87 26.55 1.33 4.19 +gré gré nom m s 11.36 28.04 11.36 28.04 +gréage gréage nom m s 0.01 0 0.01 0 +grébiche grébiche nom f s 0.01 0 0.01 0 +gréco gréco adv 0.15 0.14 0.15 0.14 +gréco_latin gréco_latin adj f s 0 0.34 0 0.27 +gréco_latin gréco_latin adj f p 0 0.34 0 0.07 +gréco_romain gréco_romain adj m s 0.46 0.68 0.03 0.14 +gréco_romain gréco_romain adj f s 0.46 0.68 0.42 0.34 +gréco_romain gréco_romain adj f p 0.46 0.68 0.01 0.14 +gréco_romain gréco_romain adj m p 0.46 0.68 0 0.07 +gréement gréement nom m s 0.26 0.34 0.26 0.2 +gréements gréement nom m p 0.26 0.34 0 0.14 +gréer gréer ver 0.07 0.61 0.03 0.07 inf; +gréez gréer ver 0.07 0.61 0.01 0 imp:pre:2p; +grégaire grégaire adj s 0.11 0.47 0.11 0.47 +grégeois grégeois adj m 0.05 0.34 0.05 0.34 +grégorien grégorien adj m s 0.06 1.35 0.03 1.01 +grégorienne grégorien adj f s 0.06 1.35 0 0.14 +grégoriens grégorien adj m p 0.06 1.35 0.02 0.2 +grésil grésil nom m s 0 0.41 0 0.41 +grésilla grésiller ver 0.35 5.61 0 0.41 ind:pas:3s; +grésillaient grésiller ver 0.35 5.61 0 0.68 ind:imp:3p; +grésillait grésiller ver 0.35 5.61 0 1.28 ind:imp:3s; +grésillant grésillant adj m s 0.15 0.68 0.01 0.41 +grésillante grésillant adj f s 0.15 0.68 0.14 0.14 +grésillantes grésillant adj f p 0.15 0.68 0 0.14 +grésille grésiller ver 0.35 5.61 0.16 0.88 ind:pre:1s;ind:pre:3s; +grésillement grésillement nom m s 0.46 3.85 0.17 3.38 +grésillements grésillement nom m p 0.46 3.85 0.29 0.47 +grésillent grésiller ver 0.35 5.61 0.03 0.07 ind:pre:3p; +grésiller grésiller ver 0.35 5.61 0.16 1.01 inf; +grésillerait grésiller ver 0.35 5.61 0 0.07 cnd:pre:3s; +grésillé grésiller ver m s 0.35 5.61 0 0.2 par:pas; +gréviste gréviste nom s 1.5 2.36 0.28 0.41 +grévistes gréviste nom p 1.5 2.36 1.22 1.96 +gréé gréer ver m s 0.07 0.61 0.01 0.34 par:pas; +gréée gréer ver f s 0.07 0.61 0.02 0.14 par:pas; +gréées gréer ver f p 0.07 0.61 0 0.07 par:pas; +grêlaient grêler ver 0.24 1.49 0 0.07 ind:imp:3p; +grêlait grêler ver 0.24 1.49 0 0.07 ind:imp:3s; +grêle grêle nom f s 1.05 6.15 1.05 5.81 +grêlent grêler ver 0.24 1.49 0 0.2 ind:pre:3p; +grêler grêler ver 0.24 1.49 0.03 0.14 inf; +grêleraient grêler ver 0.24 1.49 0 0.07 cnd:pre:3p; +grêles grêle adj p 0.54 8.24 0.01 3.38 +grêlon grêlon nom m s 0.33 1.01 0 0.14 +grêlons grêlon nom m p 0.33 1.01 0.33 0.88 +grêlé grêlé adj m s 0.31 0.47 0.3 0.34 +grêlée grêlé adj f s 0.31 0.47 0.01 0.07 +grêlées grêler ver f p 0.24 1.49 0 0.14 par:pas; +grêlés grêler ver m p 0.24 1.49 0 0.14 par:pas; +guacamole guacamole nom m s 0.43 0 0.43 0 +guadeloupéenne guadeloupéenne nom f s 0 0.14 0 0.14 +guanaco guanaco nom m s 0.01 0 0.01 0 +guanine guanine nom f s 0.04 0 0.04 0 +guano guano nom m s 0.23 0.14 0.23 0.14 +guaracha guaracha nom f s 0.02 0 0.02 0 +guarani guarani adj m s 0 0.07 0 0.07 +guatémaltèque guatémaltèque adj m s 0.07 0 0.07 0 +guelfe guelfe nom m s 0.1 0.2 0.1 0.07 +guelfes guelfe nom m p 0.1 0.2 0 0.14 +guenille guenille nom f s 0.41 4.46 0.04 1.08 +guenilles guenille nom f p 0.41 4.46 0.37 3.38 +guenilleux guenilleux adj m p 0 0.54 0 0.54 +guenillons guenillon nom m p 0 0.07 0 0.07 +guenipe guenipe nom f s 0 0.07 0 0.07 +guenon guenon nom f s 0.58 1.89 0.37 1.55 +guenons guenon nom f p 0.58 1.89 0.2 0.34 +guerre guerre nom f s 221.65 354.59 212.82 338.65 +guerre_éclair guerre_éclair nom f s 0.01 0.14 0.01 0.14 +guerres guerre nom f p 221.65 354.59 8.83 15.95 +guerrier guerrier nom m s 16.75 10 9.07 3.85 +guerriers guerrier nom m p 16.75 10 7.68 6.15 +guerrière guerrier adj f s 6.7 8.85 0.88 2.3 +guerrières guerrier adj f p 6.7 8.85 1.41 1.62 +guerroient guerroyer ver 0.3 1.08 0 0.07 ind:pre:3p; +guerroyai guerroyer ver 0.3 1.08 0 0.07 ind:pas:1s; +guerroyaient guerroyer ver 0.3 1.08 0 0.07 ind:imp:3p; +guerroyait guerroyer ver 0.3 1.08 0 0.27 ind:imp:3s; +guerroyant guerroyer ver 0.3 1.08 0.14 0.07 par:pre; +guerroyer guerroyer ver 0.3 1.08 0.14 0.41 inf; +guerroyeur guerroyeur nom m s 0 0.07 0 0.07 +guerroyé guerroyer ver m s 0.3 1.08 0.03 0.14 par:pas; +guet guet nom m s 3.29 7.7 3.29 7.43 +guet_apens guet_apens nom m 0.68 0.74 0.68 0.74 +guets guet nom m p 3.29 7.7 0 0.27 +guets_apens guets_apens nom m p 0 0.07 0 0.07 +guetta guetter ver 8.52 51.01 0 0.74 ind:pas:3s; +guettai guetter ver 8.52 51.01 0 0.81 ind:pas:1s; +guettaient guetter ver 8.52 51.01 0.16 2.5 ind:imp:3p; +guettais guetter ver 8.52 51.01 0.24 2.5 ind:imp:1s;ind:imp:2s; +guettait guetter ver 8.52 51.01 0.52 9.53 ind:imp:3s; +guettant guetter ver 8.52 51.01 0.3 6.82 par:pre; +guette guetter ver 8.52 51.01 3.79 9.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +guettent guetter ver 8.52 51.01 1.13 3.04 ind:pre:3p; +guetter guetter ver 8.52 51.01 1.01 10 inf;; +guettera guetter ver 8.52 51.01 0 0.2 ind:fut:3s; +guetterai guetter ver 8.52 51.01 0.05 0.2 ind:fut:1s; +guetterais guetter ver 8.52 51.01 0 0.07 cnd:pre:1s; +guetterait guetter ver 8.52 51.01 0.11 0.27 cnd:pre:3s; +guetterez guetter ver 8.52 51.01 0.01 0 ind:fut:2p; +guetterons guetter ver 8.52 51.01 0.02 0.14 ind:fut:1p; +guetteront guetter ver 8.52 51.01 0.02 0 ind:fut:3p; +guettes guetter ver 8.52 51.01 0.23 0.47 ind:pre:2s; +guetteur guetteur nom m s 1.09 4.46 0.6 2.5 +guetteurs guetteur nom m p 1.09 4.46 0.49 1.55 +guetteuse guetteur nom f s 1.09 4.46 0 0.27 +guetteuses guetteur nom f p 1.09 4.46 0 0.14 +guettez guetter ver 8.52 51.01 0.23 0 imp:pre:2p;ind:pre:2p; +guettiez guetter ver 8.52 51.01 0.01 0.07 ind:imp:2p; +guettions guetter ver 8.52 51.01 0.14 1.01 ind:imp:1p; +guettons guetter ver 8.52 51.01 0.12 0 ind:pre:1p; +guettât guetter ver 8.52 51.01 0 0.07 sub:imp:3s; +guettèrent guetter ver 8.52 51.01 0 0.14 ind:pas:3p; +guetté guetter ver m s 8.52 51.01 0.41 2.5 par:pas; +guettée guetter ver f s 8.52 51.01 0.02 0.2 par:pas; +guettées guetter ver f p 8.52 51.01 0 0.07 par:pas; +guettés guetter ver m p 8.52 51.01 0 0.61 par:pas; +gueugueule gueugueule nom f s 0 0.07 0 0.07 +gueula gueuler ver 9.81 27.3 0 1.28 ind:pas:3s; +gueulai gueuler ver 9.81 27.3 0 0.2 ind:pas:1s; +gueulaient gueuler ver 9.81 27.3 0.13 0.41 ind:imp:3p; +gueulais gueuler ver 9.81 27.3 0.17 0.47 ind:imp:1s;ind:imp:2s; +gueulait gueuler ver 9.81 27.3 0.23 4.26 ind:imp:3s; +gueulant gueuler ver 9.81 27.3 0.31 1.69 par:pre; +gueulante gueulante nom f s 0.14 1.49 0.13 1.01 +gueulantes gueulante nom f p 0.14 1.49 0.01 0.47 +gueulard gueulard nom m s 0.23 0.88 0.2 0.68 +gueularde gueulard nom f s 0.23 0.88 0.02 0 +gueulards gueulard nom m p 0.23 0.88 0.01 0.2 +gueule gueule nom f s 125.22 109.93 118.45 100.14 +gueule_de_loup gueule_de_loup nom f s 0.03 0.07 0.03 0.07 +gueulement gueulement nom m s 0 0.81 0 0.14 +gueulements gueulement nom m p 0 0.81 0 0.68 +gueulent gueuler ver 9.81 27.3 0.18 1.42 ind:pre:3p; +gueuler gueuler ver 9.81 27.3 3.97 6.62 inf; +gueulera gueuler ver 9.81 27.3 0.03 0.07 ind:fut:3s; +gueulerai gueuler ver 9.81 27.3 0.02 0.07 ind:fut:1s; +gueulerais gueuler ver 9.81 27.3 0 0.14 cnd:pre:1s;cnd:pre:2s; +gueulerait gueuler ver 9.81 27.3 0.01 0.14 cnd:pre:3s; +gueules gueule nom p 125.22 109.93 6.77 9.8 +gueules_de_loup gueules_de_loup nom f p 0 0.14 0 0.14 +gueuleton gueuleton nom m s 0.65 1.08 0.52 0.74 +gueuletonnait gueuletonner ver 0 0.2 0 0.07 ind:imp:3s; +gueuletonner gueuletonner ver 0 0.2 0 0.14 inf; +gueuletons gueuleton nom m p 0.65 1.08 0.12 0.34 +gueulette gueulette nom f s 0.01 0.14 0.01 0.07 +gueulettes gueulette nom f p 0.01 0.14 0 0.07 +gueulez gueuler ver 9.81 27.3 0.07 0.07 imp:pre:2p;ind:pre:2p; +gueuloir gueuloir nom m s 0 0.07 0 0.07 +gueulé gueuler ver m s 9.81 27.3 0.79 3.38 par:pas; +gueulée gueuler ver f s 9.81 27.3 0 0.07 par:pas; +gueulés gueuler ver m p 9.81 27.3 0 0.07 par:pas; +gueusant gueuser ver 0 0.07 0 0.07 par:pre; +gueusards gueusard nom m p 0 0.14 0 0.14 +gueuse gueux nom f s 2.87 4.66 0.73 0.88 +gueuserie gueuserie nom f s 0 0.47 0 0.47 +gueuses gueuse nom f p 0.01 0 0.01 0 +gueux gueux nom m 2.87 4.66 2.14 3.65 +gueuze gueuze nom f s 0 0.07 0 0.07 +gugusse gugusse nom m s 1.12 0.27 1.06 0.27 +gugusses gugusse nom m p 1.12 0.27 0.06 0 +gui gui nom m s 2.9 2.5 2.9 2.5 +guibole guibole nom f s 0.14 0.34 0.05 0 +guiboles guibole nom f p 0.14 0.34 0.08 0.34 +guibolle guibolle nom f s 0.11 4.93 0 0.74 +guibolles guibolle nom f p 0.11 4.93 0.11 4.19 +guiche guiche nom f s 0.06 0.27 0.06 0.14 +guiches guiche nom f p 0.06 0.27 0 0.14 +guichet guichet nom m s 3.81 8.45 2.92 6.42 +guichetier guichetier nom m s 0.31 0.47 0.16 0.07 +guichetiers guichetier nom m p 0.31 0.47 0.01 0.07 +guichetière guichetier nom f s 0.31 0.47 0.14 0.34 +guichets guichet nom m p 3.81 8.45 0.89 2.03 +guida guider ver 24.79 26.22 0.31 2.03 ind:pas:3s; +guidage guidage nom m s 1.19 0 1.19 0 +guidai guider ver 24.79 26.22 0 0.14 ind:pas:1s; +guidaient guider ver 24.79 26.22 0.17 1.08 ind:imp:3p; +guidais guider ver 24.79 26.22 0 0.27 ind:imp:1s; +guidait guider ver 24.79 26.22 0.13 2.3 ind:imp:3s; +guidance guidance nom f s 0.01 0 0.01 0 +guidant guider ver 24.79 26.22 0.2 1.96 par:pre; +guide guide nom s 17.52 22.84 14.69 16.69 +guide_interprète guide_interprète nom s 0 0.07 0 0.07 +guident guider ver 24.79 26.22 0.39 0.74 ind:pre:3p; +guider guider ver 24.79 26.22 7.29 6.76 inf; +guidera guider ver 24.79 26.22 1.57 0.14 ind:fut:3s; +guiderai guider ver 24.79 26.22 0.8 0 ind:fut:1s; +guiderait guider ver 24.79 26.22 0.2 0.14 cnd:pre:3s; +guideras guider ver 24.79 26.22 0.06 0 ind:fut:2s; +guiderez guider ver 24.79 26.22 0.09 0 ind:fut:2p; +guideront guider ver 24.79 26.22 0.27 0.2 ind:fut:3p; +guides guide nom p 17.52 22.84 2.84 6.15 +guidez guider ver 24.79 26.22 0.85 0.14 imp:pre:2p;ind:pre:2p; +guidiez guider ver 24.79 26.22 0.09 0 ind:imp:2p; +guidon guidon nom m s 1.27 7.03 1.26 6.15 +guidons guider ver 24.79 26.22 0.16 0.14 imp:pre:1p;ind:pre:1p; +guidèrent guider ver 24.79 26.22 0 0.2 ind:pas:3p; +guidé guider ver m s 24.79 26.22 2.81 3.38 par:pas; +guidée guider ver f s 24.79 26.22 1.55 1.82 par:pas; +guidées guider ver f p 24.79 26.22 0.4 0.27 par:pas; +guidés guider ver m p 24.79 26.22 1.25 1.22 par:pas; +guigna guigner ver 0.04 1.69 0 0.14 ind:pas:3s; +guignaient guigner ver 0.04 1.69 0.01 0 ind:imp:3p; +guignais guigner ver 0.04 1.69 0.01 0.14 ind:imp:1s; +guignait guigner ver 0.04 1.69 0.01 0.47 ind:imp:3s; +guignant guigner ver 0.04 1.69 0 0.2 par:pre; +guigne guigne nom f s 0.93 1.35 0.93 1.28 +guigner guigner ver 0.04 1.69 0 0.34 inf; +guignes guigne nom f p 0.93 1.35 0 0.07 +guignol guignol nom m s 3.29 6.15 2.14 3.58 +guignolades guignolade nom f p 0 0.14 0 0.14 +guignolesque guignolesque adj m s 0 0.07 0 0.07 +guignolet guignolet nom m s 0 0.2 0 0.2 +guignols guignol nom m p 3.29 6.15 1.16 2.57 +guignon guignon nom m s 0 0.2 0 0.2 +guilde guilde nom f s 0.57 0 0.56 0 +guildes guilde nom f p 0.57 0 0.01 0 +guili_guili guili_guili nom m 0.16 0.14 0.16 0.14 +guillaume guillaume nom m s 0 0.2 0 0.14 +guillaumes guillaume nom m p 0 0.2 0 0.07 +guilledou guilledou nom m s 0.02 0.2 0.02 0.2 +guillemet guillemet nom m s 0.52 1.55 0.01 0 +guillemets guillemet nom m p 0.52 1.55 0.5 1.55 +guillemot guillemot nom m s 0.11 0 0.11 0 +guilleret guilleret adj m s 0.22 3.24 0.14 2.09 +guillerets guilleret adj m p 0.22 3.24 0.01 0.34 +guillerette guilleret adj f s 0.22 3.24 0.07 0.74 +guillerettes guilleret adj f p 0.22 3.24 0 0.07 +guilloche guillocher ver 0.02 0.47 0.01 0 ind:pre:3s; +guillochures guillochure nom f p 0 0.07 0 0.07 +guilloché guillocher ver m s 0.02 0.47 0 0.27 par:pas; +guillochée guillocher ver f s 0.02 0.47 0.01 0.07 par:pas; +guillochées guillocher ver f p 0.02 0.47 0 0.07 par:pas; +guillochés guillocher ver m p 0.02 0.47 0 0.07 par:pas; +guillotina guillotiner ver 0.8 1.89 0 0.07 ind:pas:3s; +guillotinaient guillotiner ver 0.8 1.89 0 0.07 ind:imp:3p; +guillotinait guillotiner ver 0.8 1.89 0 0.14 ind:imp:3s; +guillotine guillotine nom f s 1.07 5.61 1.07 5.54 +guillotinent guillotiner ver 0.8 1.89 0.01 0.07 ind:pre:3p; +guillotiner guillotiner ver 0.8 1.89 0.45 0.47 inf; +guillotines guillotin nom f p 0.01 0 0.01 0 +guillotineur guillotineur nom m s 0 0.14 0 0.07 +guillotineurs guillotineur nom m p 0 0.14 0 0.07 +guillotiné guillotiner ver m s 0.8 1.89 0.2 0.68 par:pas; +guillotinée guillotiner ver f s 0.8 1.89 0 0.2 par:pas; +guillotinées guillotiné adj f p 0.01 0.47 0 0.07 +guillotinés guillotiner ver m p 0.8 1.89 0.01 0.14 par:pas; +guimauve guimauve nom f s 1.49 2.43 1.25 2.23 +guimauves guimauve nom f p 1.49 2.43 0.24 0.2 +guimbarde guimbarde nom f s 0.61 1.69 0.57 1.01 +guimbardes guimbarde nom f p 0.61 1.69 0.03 0.68 +guimpe guimpe nom f s 0.19 1.15 0.19 0.54 +guimpes guimpe nom f p 0.19 1.15 0 0.61 +guinchait guincher ver 0.11 0.2 0 0.07 ind:imp:3s; +guinche guinche nom m s 0 0.47 0 0.27 +guincher guincher ver 0.11 0.2 0.1 0.14 inf; +guinches guincher ver 0.11 0.2 0.01 0 ind:pre:2s; +guindaient guinder ver 0.16 1.55 0 0.14 ind:imp:3p; +guindait guinder ver 0.16 1.55 0 0.07 ind:imp:3s; +guindal guindal nom m s 0 0.61 0 0.41 +guindals guindal nom m p 0 0.61 0 0.2 +guindant guindant nom m s 0.1 0 0.1 0 +guinde guinder ver 0.16 1.55 0.01 0.54 imp:pre:2s;ind:pre:3s; +guindeau guindeau nom m s 0.02 0.07 0.02 0.07 +guinder guinder ver 0.16 1.55 0 0.2 inf; +guindé guindé adj m s 0.67 2.43 0.55 0.88 +guindée guindé adj f s 0.67 2.43 0.06 0.81 +guindées guindé adj f p 0.67 2.43 0.03 0.34 +guindés guindé adj m p 0.67 2.43 0.04 0.41 +guinguette guinguette nom f s 0.14 3.04 0.14 2.36 +guinguettes guinguette nom f p 0.14 3.04 0 0.68 +guinée guinée nom f s 1.4 0.07 0.1 0.07 +guinéen guinéen adj m s 0 0.41 0 0.14 +guinéenne guinéen adj f s 0 0.41 0 0.14 +guinéennes guinéen adj f p 0 0.41 0 0.07 +guinéens guinéen adj m p 0 0.41 0 0.07 +guinées guinée nom f p 1.4 0.07 1.3 0 +guipure guipure nom f s 0.27 1.15 0.14 0.61 +guipures guipure nom f p 0.27 1.15 0.14 0.54 +guirlande guirlande nom f s 1.65 9.05 0.62 2.3 +guirlandes guirlande nom f p 1.65 9.05 1.03 6.76 +guise guise nom f s 6.26 20.61 6.26 20.61 +guises guis nom f p 0 0.07 0 0.07 +guitare guitare nom f s 13.86 14.8 12.78 11.55 +guitares guitare nom f p 13.86 14.8 1.08 3.24 +guitariste guitariste nom s 2.29 4.39 1.76 3.38 +guitaristes guitariste nom p 2.29 4.39 0.53 1.01 +guitoune guitoune nom f s 0 5.68 0 3.51 +guitounes guitoune nom f p 0 5.68 0 2.16 +gulden gulden nom m s 0.1 0 0.1 0 +gun gun nom m s 1.51 0.14 1.15 0.07 +guna guna nom m 0.04 0 0.04 0 +guns gun nom m p 1.51 0.14 0.36 0.07 +guppy guppy nom m s 0.55 0 0.55 0 +guru guru nom m s 0.08 0.07 0.08 0.07 +gus gus nom m 8.5 1.96 8.5 1.96 +gusse gusse nom m s 0.14 0 0.14 0 +gustatif gustatif adj m s 0.21 0.14 0.05 0.14 +gustation gustation nom f s 0 0.14 0 0.14 +gustative gustatif adj f s 0.21 0.14 0.02 0 +gustatives gustatif adj f p 0.21 0.14 0.14 0 +gusto gusto adv 0.88 0.14 0.88 0.14 +gut gut nom m s 0.64 0.2 0.64 0.2 +gutta_percha gutta_percha nom f s 0.03 0 0.03 0 +guttural guttural adj m s 0.07 2.97 0.04 1.08 +gutturale guttural adj f s 0.07 2.97 0.01 0.95 +gutturales guttural adj f p 0.07 2.97 0 0.34 +gutturaux guttural adj m p 0.07 2.97 0.01 0.61 +guyanais guyanais adj m p 0 0.07 0 0.07 +guzla guzla nom f s 0 0.07 0 0.07 +guède guède nom f s 0.02 0 0.02 0 +guère guère adv 17.02 110.68 17.02 110.68 +gué gué ono 0.02 0 0.02 0 +guéable guéable adj f s 0 0.07 0 0.07 +guéguerre guéguerre nom f s 0.07 0.41 0.04 0.2 +guéguerres guéguerre nom f p 0.07 0.41 0.02 0.2 +guépard guépard nom m s 0.44 0.74 0.27 0.34 +guépards guépard nom m p 0.44 0.74 0.17 0.41 +guéret guéret nom m s 0.01 0.27 0 0.07 +guérets guéret nom m p 0.01 0.27 0.01 0.2 +guéri guérir ver m s 44.73 30.27 9.04 5.95 par:pas; +guéridon guéridon nom m s 0.7 11.42 0.69 8.31 +guéridons guéridon nom m p 0.7 11.42 0.01 3.11 +guérie guérir ver f s 44.73 30.27 3.84 3.65 par:pas; +guéries guéri adj f p 3.46 4.05 0.16 0.27 +guérilla guérilla nom f s 2.17 1.55 1.89 1.35 +guérillas guérilla nom f p 2.17 1.55 0.28 0.2 +guérillero guérillero nom m s 2.81 0.27 0.67 0.14 +guérilleros guérillero nom m p 2.81 0.27 2.14 0.14 +guérir guérir ver 44.73 30.27 17.7 11.49 inf; +guérira guérir ver 44.73 30.27 2.28 0.81 ind:fut:3s; +guérirai guérir ver 44.73 30.27 0.69 0.34 ind:fut:1s; +guérirais guérir ver 44.73 30.27 0.03 0 cnd:pre:1s;cnd:pre:2s; +guérirait guérir ver 44.73 30.27 0.29 0.47 cnd:pre:3s; +guériras guérir ver 44.73 30.27 0.66 0.54 ind:fut:2s; +guérirez guérir ver 44.73 30.27 0.33 0.14 ind:fut:2p; +guérirons guérir ver 44.73 30.27 0.02 0.07 ind:fut:1p; +guériront guérir ver 44.73 30.27 0.28 0.07 ind:fut:3p; +guéris guérir ver m p 44.73 30.27 2.03 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +guérison guérison nom f s 5.84 5.2 5.43 4.93 +guérisons guérison nom f p 5.84 5.2 0.41 0.27 +guérissable guérissable adj m s 0.01 0.2 0.01 0.07 +guérissables guérissable adj f p 0.01 0.2 0 0.14 +guérissaient guérir ver 44.73 30.27 0.16 0.34 ind:imp:3p; +guérissais guérir ver 44.73 30.27 0.02 0.07 ind:imp:1s; +guérissait guérir ver 44.73 30.27 0.14 0.74 ind:imp:3s; +guérissant guérir ver 44.73 30.27 0.1 0.07 par:pre; +guérisse guérir ver 44.73 30.27 1.95 0.27 sub:pre:1s;sub:pre:3s; +guérissent guérir ver 44.73 30.27 0.86 0.41 ind:pre:3p; +guérisses guérir ver 44.73 30.27 0.05 0.07 sub:pre:2s; +guérisseur guérisseur nom m s 3.2 2.23 1.95 1.42 +guérisseurs guérisseur nom m p 3.2 2.23 0.24 0.27 +guérisseuse guérisseur nom f s 3.2 2.23 0.92 0.47 +guérisseuses guérisseur nom f p 3.2 2.23 0.1 0.07 +guérissez guérir ver 44.73 30.27 0.35 0.27 imp:pre:2p;ind:pre:2p; +guérissiez guérir ver 44.73 30.27 0.04 0.07 ind:imp:2p; +guérissons guérir ver 44.73 30.27 0.11 0 ind:pre:1p; +guérit guérir ver 44.73 30.27 3.62 3.24 ind:pre:3s;ind:pas:3s; +guérite guérite nom f s 0.06 5.07 0.05 4.12 +guérites guérite nom f p 0.06 5.07 0.01 0.95 +guérît guérir ver 44.73 30.27 0 0.07 sub:imp:3s; +guévariste guévariste nom s 0 0.14 0 0.14 +guêpe guêpe nom f s 3.37 6.42 2.73 2.84 +guêpes guêpe nom f p 3.37 6.42 0.64 3.58 +guêpier guêpier nom m s 0.27 0.68 0.27 0.68 +guêpière guêpière nom f s 0.06 1.22 0.05 0.95 +guêpières guêpière nom f p 0.06 1.22 0.01 0.27 +guêtre guêtre nom f s 0.39 4.8 0.03 0.41 +guêtres guêtre nom f p 0.39 4.8 0.36 4.39 +guêtré guêtrer ver m s 0 0.14 0 0.07 par:pas; +guêtrés guêtrer ver m p 0 0.14 0 0.07 par:pas; +gy gy ono 0 1.15 0 1.15 +gym gym nom f s 9.18 2.23 9.18 2.23 +gymkhana gymkhana nom m s 0.05 0.27 0.05 0.27 +gymnase gymnase nom m s 4.28 2.43 4.11 2.09 +gymnases gymnase nom m p 4.28 2.43 0.17 0.34 +gymnasium gymnasium nom m s 0 0.14 0 0.14 +gymnaste gymnaste nom s 0.35 1.35 0.26 0.61 +gymnastes gymnaste nom p 0.35 1.35 0.1 0.74 +gymnastique gymnastique nom f s 2.85 10 2.74 9.39 +gymnastiques gymnastique nom f p 2.85 10 0.11 0.61 +gymnique gymnique adj f s 0 0.14 0 0.07 +gymniques gymnique adj f p 0 0.14 0 0.07 +gymnopédie gymnopédie nom f s 0 0.07 0 0.07 +gymnosophiste gymnosophiste nom s 0 0.14 0 0.07 +gymnosophistes gymnosophiste nom p 0 0.14 0 0.07 +gynéco gynéco nom s 0.96 0.54 0.96 0.54 +gynécologie gynécologie nom f s 0.28 0.07 0.28 0.07 +gynécologique gynécologique adj s 0.17 0.27 0.15 0.27 +gynécologiques gynécologique adj m p 0.17 0.27 0.02 0 +gynécologue gynécologue nom s 1.56 3.85 1.38 3.65 +gynécologues gynécologue nom p 1.56 3.85 0.17 0.2 +gynécomastie gynécomastie nom f s 0.03 0 0.03 0 +gynécée gynécée nom m s 0.01 0.2 0.01 0.14 +gynécées gynécée nom m p 0.01 0.2 0 0.07 +gypaète gypaète nom m s 0.08 0 0.08 0 +gypse gypse nom m s 0.09 0.34 0.09 0.27 +gypses gypse nom m p 0.09 0.34 0 0.07 +gypseuse gypseux adj f s 0 0.14 0 0.07 +gypseux gypseux adj m s 0 0.14 0 0.07 +gypsophile gypsophile nom f s 0.08 0 0.06 0 +gypsophiles gypsophile nom f p 0.08 0 0.02 0 +gyrins gyrin nom m p 0 0.07 0 0.07 +gyrocompas gyrocompas nom m 0.14 0 0.14 0 +gyrophare gyrophare nom m s 0.56 1.42 0.3 0.81 +gyrophares gyrophare nom m p 0.56 1.42 0.26 0.61 +gyroscope gyroscope nom m s 0.5 0.61 0.46 0.47 +gyroscopes gyroscope nom m p 0.5 0.61 0.04 0.14 +gyroscopique gyroscopique adj s 0.02 0.07 0.02 0.07 +gyrus gyrus nom m 0.01 0.07 0.01 0.07 +gâcha gâcher ver 49.57 18.51 0 0.27 ind:pas:3s; +gâchage gâchage nom m s 0 0.07 0 0.07 +gâchaient gâcher ver 49.57 18.51 0.02 0.47 ind:imp:3p; +gâchais gâcher ver 49.57 18.51 0.1 0.14 ind:imp:1s;ind:imp:2s; +gâchait gâcher ver 49.57 18.51 0.19 1.49 ind:imp:3s; +gâchant gâcher ver 49.57 18.51 0.03 0.14 par:pre; +gâche gâcher ver 49.57 18.51 7.08 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +gâchent gâcher ver 49.57 18.51 0.66 0.34 ind:pre:3p; +gâcher gâcher ver 49.57 18.51 18.26 6.49 inf; +gâchera gâcher ver 49.57 18.51 0.31 0 ind:fut:3s; +gâcherai gâcher ver 49.57 18.51 0.7 0 ind:fut:1s; +gâcheraient gâcher ver 49.57 18.51 0.03 0 cnd:pre:3p; +gâcherais gâcher ver 49.57 18.51 0.26 0 cnd:pre:1s;cnd:pre:2s; +gâcherait gâcher ver 49.57 18.51 0.56 0.2 cnd:pre:3s; +gâcheras gâcher ver 49.57 18.51 0.08 0 ind:fut:2s; +gâcherez gâcher ver 49.57 18.51 0.05 0 ind:fut:2p; +gâcheriez gâcher ver 49.57 18.51 0.26 0 cnd:pre:2p; +gâches gâcher ver 49.57 18.51 2.24 0.41 ind:pre:2s; +gâchette gâchette nom f s 5.09 1.82 4.89 1.82 +gâchettes gâchette nom f p 5.09 1.82 0.19 0 +gâcheur gâcheur nom m s 0.01 0.07 0.01 0 +gâcheurs gâcheur nom m p 0.01 0.07 0 0.07 +gâcheuse gâcheur adj f s 0 0.14 0 0.14 +gâchez gâcher ver 49.57 18.51 1.53 0.41 imp:pre:2p;ind:pre:2p; +gâchiez gâcher ver 49.57 18.51 0.04 0 ind:imp:2p; +gâchis gâchis nom m 6.24 3.85 6.24 3.85 +gâchons gâcher ver 49.57 18.51 0.9 0.2 imp:pre:1p;ind:pre:1p; +gâchât gâcher ver 49.57 18.51 0 0.07 sub:imp:3s; +gâché gâcher ver m s 49.57 18.51 14.1 4.19 par:pas; +gâchée gâcher ver f s 49.57 18.51 1.77 1.28 par:pas; +gâchées gâcher ver f p 49.57 18.51 0.3 0.74 par:pas; +gâchés gâcher ver m p 49.57 18.51 0.1 0.27 par:pas; +gâpette gâpette nom f s 0 0.07 0 0.07 +gâta gâter ver 10.97 14.26 0 0.14 ind:pas:3s; +gâtaient gâter ver 10.97 14.26 0.04 0.34 ind:imp:3p; +gâtais gâter ver 10.97 14.26 0.03 0.07 ind:imp:1s; +gâtait gâter ver 10.97 14.26 0.03 0.95 ind:imp:3s; +gâtant gâter ver 10.97 14.26 0.23 0.14 par:pre; +gâte gâter ver 10.97 14.26 2.96 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gâte_bois gâte_bois nom m 0 0.07 0 0.07 +gâte_sauce gâte_sauce nom m s 0 0.14 0 0.14 +gâteau gâteau nom m s 55.19 32.16 42.33 13.92 +gâteaux gâteau nom m p 55.19 32.16 12.85 18.24 +gâtent gâter ver 10.97 14.26 0.54 0.14 ind:pre:3p; +gâter gâter ver 10.97 14.26 1.8 3.45 inf; +gâtera gâter ver 10.97 14.26 0.35 0.14 ind:fut:3s; +gâterais gâter ver 10.97 14.26 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +gâterait gâter ver 10.97 14.26 0.02 0.07 cnd:pre:3s; +gâterie gâterie nom f s 1.35 2.91 0.98 0.81 +gâteries gâterie nom f p 1.35 2.91 0.36 2.09 +gâteront gâter ver 10.97 14.26 0 0.14 ind:fut:3p; +gâtes gâter ver 10.97 14.26 1.22 0.2 ind:pre:2s; +gâteuse gâteux adj f s 1.71 3.92 0.25 0.88 +gâteuses gâteux adj f p 1.71 3.92 0 0.07 +gâteux gâteux adj m 1.71 3.92 1.47 2.97 +gâtez gâter ver 10.97 14.26 0.46 0.2 imp:pre:2p;ind:pre:2p; +gâtifie gâtifier ver 0 0.07 0 0.07 ind:pre:3s; +gâtine gâtine nom f s 0 0.07 0 0.07 +gâtisme gâtisme nom m s 0.02 0.95 0.02 0.95 +gâtât gâter ver 10.97 14.26 0 0.07 sub:imp:3s; +gâtèrent gâter ver 10.97 14.26 0 0.27 ind:pas:3p; +gâté gâter ver m s 10.97 14.26 1.54 3.58 par:pas; +gâtée gâté adj f s 3.66 4.73 1.68 1.28 +gâtées gâté adj f p 3.66 4.73 0.15 0.61 +gâtés gâté adj m p 3.66 4.73 0.54 0.68 +gèle geler ver 23.41 17.03 6.57 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gèlent geler ver 23.41 17.03 0.58 0.27 ind:pre:3p; +gèlera geler ver 23.41 17.03 0.48 0.14 ind:fut:3s; +gèlerai geler ver 23.41 17.03 0.3 0 ind:fut:1s; +gèlerait geler ver 23.41 17.03 0.18 0.14 cnd:pre:3s; +gèles geler ver 23.41 17.03 0.26 0.07 ind:pre:2s; +gène gène nom m s 8.07 0.74 4.18 0.2 +gènes gène nom m p 8.07 0.74 3.9 0.54 +gère gérer ver 27.51 3.31 6.08 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gèrent gérer ver 27.51 3.31 0.37 0.07 ind:pre:3p; +géant géant adj m s 13.91 21.42 8.6 8.99 +géante géant adj f s 13.91 21.42 2.81 6.08 +géantes géant adj f p 13.91 21.42 0.94 2.97 +géants géant nom m p 11.67 22.91 4.19 3.78 +gégène gégène nom f s 0.12 0.41 0.12 0.41 +géhenne géhenne nom f s 0.58 0.34 0.57 0.34 +géhennes géhenne nom f p 0.58 0.34 0.01 0 +gélatine gélatine nom f s 0.87 1.35 0.87 1.22 +gélatines gélatine nom f p 0.87 1.35 0 0.14 +gélatineuse gélatineux adj f s 0.16 1.62 0.01 0.54 +gélatineuses gélatineux adj f p 0.16 1.62 0.01 0.2 +gélatineux gélatineux adj m 0.16 1.62 0.13 0.88 +gélatino_bromure gélatino_bromure nom m s 0 0.07 0 0.07 +gélifiant gélifiant nom m s 0.01 0 0.01 0 +gélification gélification nom f s 0 0.07 0 0.07 +gélifié gélifier ver m s 0 0.07 0 0.07 par:pas; +géline géline nom f s 0.01 0.2 0.01 0 +gélines géline nom f p 0.01 0.2 0 0.2 +gélinotte gélinotte nom f s 0 0.07 0 0.07 +gélolevure gélolevure nom f s 0 0.07 0 0.07 +gélose gélose nom f s 0.01 0.07 0.01 0.07 +gélule gélule nom f s 0.38 0.88 0.04 0.14 +gélules gélule nom f p 0.38 0.88 0.33 0.74 +gémeau gémeau nom m s 0.4 0.07 0.12 0 +gémeaux gémeau nom m p 0.4 0.07 0.29 0.07 +gémellaire gémellaire adj s 0.01 7.43 0.01 7.09 +gémellaires gémellaire adj p 0.01 7.43 0 0.34 +gémellité gémellité nom f s 0.17 3.38 0.17 3.38 +gémi gémir ver m s 9.19 36.89 0.28 1.96 par:pas; +gémie gémir ver f s 9.19 36.89 0.01 0.07 par:pas; +gémir gémir ver 9.19 36.89 2.38 8.18 inf; +gémira gémir ver 9.19 36.89 0.04 0.07 ind:fut:3s; +gémirai gémir ver 9.19 36.89 0.01 0 ind:fut:1s; +gémiraient gémir ver 9.19 36.89 0 0.07 cnd:pre:3p; +gémirais gémir ver 9.19 36.89 0.1 0 cnd:pre:1s; +gémirait gémir ver 9.19 36.89 0 0.2 cnd:pre:3s; +gémirent gémir ver 9.19 36.89 0 0.2 ind:pas:3p; +gémis gémir ver m p 9.19 36.89 0.93 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +gémissaient gémir ver 9.19 36.89 0.12 1.28 ind:imp:3p; +gémissais gémir ver 9.19 36.89 0.07 0.27 ind:imp:1s;ind:imp:2s; +gémissait gémir ver 9.19 36.89 0.52 6.01 ind:imp:3s; +gémissant gémir ver 9.19 36.89 0.19 4.8 par:pre; +gémissante gémissant adj f s 0.08 2.64 0 1.15 +gémissantes gémissant adj f p 0.08 2.64 0.02 0.54 +gémissants gémissant adj m p 0.08 2.64 0.02 0.14 +gémisse gémir ver 9.19 36.89 0.03 0.07 sub:pre:3s; +gémissement gémissement nom m s 5.16 16.76 0.97 9.32 +gémissements gémissement nom m p 5.16 16.76 4.18 7.43 +gémissent gémir ver 9.19 36.89 0.45 0.81 ind:pre:3p; +gémisseur gémisseur adj m s 0 0.2 0 0.07 +gémisseurs gémisseur adj m p 0 0.2 0 0.14 +gémissez gémir ver 9.19 36.89 0.17 0.07 imp:pre:2p;ind:pre:2p; +gémissiez gémir ver 9.19 36.89 0.01 0 ind:imp:2p; +gémit gémir ver 9.19 36.89 3.88 12.3 ind:pre:3s;ind:pas:3s; +gémonies gémonies nom f p 0.01 0.07 0.01 0.07 +génial génial adj m s 134.47 10.2 115.27 5.95 +géniale génial adj f s 134.47 10.2 15.86 3.31 +génialement génialement adv 0.04 0.2 0.04 0.2 +géniales génial adj f p 134.47 10.2 1.62 0.27 +génialité génialité nom f s 0 0.07 0 0.07 +géniaux génial adj m p 134.47 10.2 1.72 0.68 +génie génie nom m s 38.01 51.62 34.65 47.43 +génies génie nom m p 38.01 51.62 3.36 4.19 +génique génique adj s 0.4 0 0.4 0 +génisse génisse nom f s 0.83 1.76 0.69 1.42 +génisses génisse nom f p 0.83 1.76 0.15 0.34 +génital génital adj m s 2.43 1.55 0.16 0.34 +génitale génital adj f s 2.43 1.55 0.08 0.27 +génitales génital adj f p 2.43 1.55 0.81 0.34 +génitalité génitalité nom f s 0 0.07 0 0.07 +génitaux génital adj m p 2.43 1.55 1.38 0.61 +géniteur géniteur nom m s 0.51 2.5 0.33 1.01 +géniteurs géniteur nom m p 0.51 2.5 0.03 1.08 +génitoires génitoire nom f p 0 0.41 0 0.41 +génitrice géniteur nom f s 0.51 2.5 0.14 0.27 +génitrices géniteur nom f p 0.51 2.5 0.02 0.14 +génocidaire génocidaire adj s 0.04 0 0.04 0 +génocide génocide nom m s 1.25 1.15 1.18 0.81 +génocides génocide nom m p 1.25 1.15 0.08 0.34 +génois génois adj m 0.17 0.34 0.17 0.34 +génoise génois nom f s 0.37 1.42 0.12 0.54 +génoises génois nom f p 0.37 1.42 0.21 0.07 +génome génome nom m s 0.63 0 0.63 0 +génomique génomique adj s 0.11 0 0.09 0 +génomiques génomique adj p 0.11 0 0.02 0 +génotype génotype nom m s 0.11 0 0.08 0 +génotypes génotype nom m p 0.11 0 0.04 0 +génovéfains génovéfain nom m p 0 0.07 0 0.07 +génuflexion génuflexion nom f s 0.03 1.01 0.03 0.68 +génuflexions génuflexion nom f p 0.03 1.01 0 0.34 +génuine génuine adj f s 0 0.07 0 0.07 +génère générer ver 2.83 0 0.93 0 imp:pre:2s;ind:pre:3s; +génères générer ver 2.83 0 0.03 0 ind:pre:2s; +généalogie généalogie nom f s 0.28 1.96 0.28 1.62 +généalogies généalogie nom f p 0.28 1.96 0 0.34 +généalogique généalogique adj s 0.76 2.5 0.69 1.89 +généalogiques généalogique adj p 0.76 2.5 0.07 0.61 +généalogiste généalogiste nom s 0.17 0.14 0.04 0.14 +généalogistes généalogiste nom p 0.17 0.14 0.14 0 +général général nom m s 124.83 236.89 119.61 223.99 +générale général adj f s 41.31 95.41 10.27 34.73 +généralement généralement adv 7.79 16.89 7.79 16.89 +générales général adj f p 41.31 95.41 0.95 3.65 +généralife généralife nom m s 0 0.2 0 0.2 +généralisable généralisable adj s 0 0.07 0 0.07 +généralisait généraliser ver 0.66 1.22 0 0.14 ind:imp:3s; +généralisant généraliser ver 0.66 1.22 0 0.07 par:pre; +généralisation généralisation nom f s 0.07 0.61 0.05 0.2 +généralisations généralisation nom f p 0.07 0.61 0.02 0.41 +généralise généraliser ver 0.66 1.22 0.14 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +généraliser généraliser ver 0.66 1.22 0.44 0.34 inf; +généralisez généraliser ver 0.66 1.22 0.01 0.2 imp:pre:2p;ind:pre:2p; +généralisions généraliser ver 0.66 1.22 0 0.07 ind:imp:1p; +généralissime généralissime nom m s 0.12 1.82 0.12 1.82 +généraliste généraliste nom s 0.72 0.54 0.45 0.41 +généralistes généraliste nom p 0.72 0.54 0.27 0.14 +généralisé généralisé adj m s 0.33 2.3 0.25 0.68 +généralisée généralisé adj f s 0.33 2.3 0.08 1.49 +généralisées généralisé adj f p 0.33 2.3 0 0.14 +généralité généralité nom f s 0.41 1.96 0.11 0.47 +généralités généralité nom f p 0.41 1.96 0.3 1.49 +générant générer ver 2.83 0 0.07 0 par:pre; +générateur générateur nom m s 8.96 0.34 6.44 0.14 +générateurs générateur nom m p 8.96 0.34 2.2 0.07 +génératif génératif adj m s 0.02 0 0.01 0 +génération génération nom f s 20.51 37.77 13.38 21.01 +générationnel générationnel adj m s 0.27 0 0.27 0 +générations génération nom f p 20.51 37.77 7.13 16.76 +générative génératif adj f s 0.02 0 0.01 0 +génératrice générateur nom f s 8.96 0.34 0.29 0.14 +génératrices générateur nom f p 8.96 0.34 0.02 0 +généraux général nom m p 124.83 236.89 3.83 11.08 +générer générer ver 2.83 0 1.05 0 inf; +généreuse généreux adj f s 23.32 23.72 6 8.04 +généreusement généreusement adv 1.81 4.53 1.81 4.53 +généreuses généreux adj f p 23.32 23.72 0.74 1.69 +généreux généreux adj m 23.32 23.72 16.57 13.99 +générez générer ver 2.83 0 0.05 0 ind:pre:2p; +générique générique nom m s 1.71 0.88 1.64 0.54 +génériques générique adj p 0.56 0.41 0.19 0.07 +générosité générosité nom f s 6.15 11.55 6.15 10.95 +générosités générosité nom f p 6.15 11.55 0 0.61 +généré générer ver m s 2.83 0 0.34 0 par:pas; +générée générer ver f s 2.83 0 0.14 0 par:pas; +générés générer ver m p 2.83 0 0.2 0 par:pas; +génésique génésique adj s 0 0.07 0 0.07 +généticien généticien nom m s 0.6 0.07 0.26 0.07 +généticienne généticien nom f s 0.6 0.07 0.01 0 +généticiens généticien nom m p 0.6 0.07 0.33 0 +génétique génétique adj s 8.06 1.35 6.33 1.01 +génétiquement génétiquement adv 1.9 0.2 1.9 0.2 +génétiques génétique adj p 8.06 1.35 1.73 0.34 +géo géo nom f s 0.3 1.22 0.3 1.22 +géocorises géocorise nom f p 0 0.07 0 0.07 +géode géode nom f s 0.04 0 0.04 0 +géodésiens géodésien adj m p 0 0.14 0 0.14 +géodésigraphe géodésigraphe nom m s 0 0.07 0 0.07 +géodésique géodésique adj s 0.18 0.27 0.17 0.2 +géodésiques géodésique adj m p 0.18 0.27 0.01 0.07 +géographe géographe nom s 0.1 0.95 0.04 0.54 +géographes géographe nom f p 0.1 0.95 0.06 0.41 +géographie géographie nom f s 2.26 8.51 2.26 8.11 +géographies géographie nom f p 2.26 8.51 0 0.41 +géographique géographique adj s 0.97 3.51 0.83 2.36 +géographiquement géographiquement adv 0.1 0.47 0.1 0.47 +géographiques géographique adj p 0.97 3.51 0.14 1.15 +géologie géologie nom f s 0.4 0.61 0.4 0.61 +géologique géologique adj s 0.59 0.81 0.39 0.34 +géologiquement géologiquement adv 0.03 0 0.03 0 +géologiques géologique adj p 0.59 0.81 0.2 0.47 +géologue géologue nom s 1.11 0.61 0.73 0.27 +géologues géologue nom p 1.11 0.61 0.38 0.34 +géomagnétique géomagnétique adj f s 0.03 0 0.02 0 +géomagnétiques géomagnétique adj p 0.03 0 0.01 0 +géomancie géomancie nom f s 0.01 0.07 0.01 0.07 +géomètre géomètre nom s 6.2 0.54 6.02 0.27 +géomètres géomètre nom p 6.2 0.54 0.19 0.27 +géométrie géométrie nom f s 1.06 5.2 1.06 4.8 +géométries géométrie nom f p 1.06 5.2 0 0.41 +géométrique géométrique adj s 0.77 4.8 0.58 2.57 +géométriquement géométriquement adv 0.08 0.41 0.08 0.41 +géométriques géométrique adj p 0.77 4.8 0.19 2.23 +géophysiciens géophysicien nom m p 0.01 0 0.01 0 +géophysique géophysique nom f s 0.17 0 0.17 0 +géopolitique géopolitique adj s 0.07 0.14 0.07 0.14 +géorgien géorgien adj m s 0.45 0.68 0.44 0.27 +géorgienne géorgien adj f s 0.45 0.68 0.01 0.27 +géorgiennes géorgien adj f p 0.45 0.68 0 0.07 +géorgiens géorgien adj m p 0.45 0.68 0 0.07 +géosciences géoscience nom f p 0.01 0 0.01 0 +géostationnaire géostationnaire adj s 0.04 0 0.04 0 +géostratégie géostratégie nom f s 0 0.07 0 0.07 +géosynchrone géosynchrone adj f s 0.02 0 0.02 0 +géothermale géothermal adj f s 0.01 0 0.01 0 +géothermie géothermie nom f s 0.01 0 0.01 0 +géothermique géothermique adj s 0.13 0 0.13 0 +géotropique géotropique adj m s 0 0.2 0 0.14 +géotropiques géotropique adj m p 0 0.2 0 0.07 +géra gérer ver 27.51 3.31 0 0.14 ind:pas:3s; +gérable gérable adj s 0.29 0 0.25 0 +gérables gérable adj p 0.29 0 0.04 0 +gérais gérer ver 27.51 3.31 0.27 0.07 ind:imp:1s;ind:imp:2s; +gérait gérer ver 27.51 3.31 0.4 0.41 ind:imp:3s; +gérance gérance nom f s 0.29 1.15 0.29 1.15 +géranium géranium nom m s 1.09 4.12 0.77 0.95 +géraniums géranium nom m p 1.09 4.12 0.32 3.18 +gérant gérant nom m s 6.45 8.72 5.54 8.04 +gérante gérant nom f s 6.45 8.72 0.69 0.68 +gérants gérant nom m p 6.45 8.72 0.21 0 +gérer gérer ver 27.51 3.31 16.57 1.22 inf; +gérera gérer ver 27.51 3.31 0.21 0 ind:fut:3s; +gérerai gérer ver 27.51 3.31 0.15 0 ind:fut:1s; +gérerais gérer ver 27.51 3.31 0.02 0 cnd:pre:1s; +gérerez gérer ver 27.51 3.31 0.01 0.07 ind:fut:2p; +géreriez gérer ver 27.51 3.31 0.01 0 cnd:pre:2p; +gérez gérer ver 27.51 3.31 0.69 0.07 imp:pre:2p;ind:pre:2p; +gériatrie gériatrie nom f s 0.07 0.07 0.07 0.07 +gériatrique gériatrique adj s 0.09 0 0.07 0 +gériatriques gériatrique adj f p 0.09 0 0.01 0 +gérons gérer ver 27.51 3.31 0.12 0 imp:pre:1p;ind:pre:1p; +géronte géronte nom m s 0 0.14 0 0.07 +gérontes géronte nom m p 0 0.14 0 0.07 +gérontisme gérontisme nom m s 0.01 0 0.01 0 +gérontologie gérontologie nom f s 0.05 0.27 0.05 0.27 +gérontologue gérontologue nom s 0.01 0.07 0.01 0.07 +gérontophiles gérontophile nom p 0 0.07 0 0.07 +géré gérer ver m s 27.51 3.31 1.83 0.41 par:pas; +gérée gérer ver f s 27.51 3.31 0.28 0.34 par:pas; +gérées gérer ver f p 27.51 3.31 0.06 0 par:pas; +gérés gérer ver m p 27.51 3.31 0.07 0 par:pas; +gésier gésier nom m s 0.07 0.88 0.05 0.74 +gésiers gésier nom m p 0.07 0.88 0.02 0.14 +gésine gésine nom f s 0.1 0.34 0.1 0.34 +gésir gésir ver 4.77 15.68 0.02 0.07 inf; +gêna gêner ver 57.76 71.01 0.01 1.22 ind:pas:3s; +gênaient gêner ver 57.76 71.01 0.16 2.84 ind:imp:3p; +gênais gêner ver 57.76 71.01 0.34 0.61 ind:imp:1s;ind:imp:2s; +gênait gêner ver 57.76 71.01 1.64 11.96 ind:imp:3s; +gênant gênant adj m s 10.33 10.27 8.89 6.08 +gênante gênant adj f s 10.33 10.27 0.65 2.43 +gênantes gênant adj f p 10.33 10.27 0.27 0.95 +gênants gênant adj m p 10.33 10.27 0.52 0.81 +gêne gêner ver 57.76 71.01 29.21 13.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gênent gêner ver 57.76 71.01 1.81 2.16 ind:pre:3p; +gêner gêner ver 57.76 71.01 5.48 9.8 inf;; +gênera gêner ver 57.76 71.01 1.36 0.68 ind:fut:3s; +gênerai gêner ver 57.76 71.01 0.47 0.14 ind:fut:1s; +gêneraient gêner ver 57.76 71.01 0.02 0.14 cnd:pre:3p; +gênerais gêner ver 57.76 71.01 0.34 0.68 cnd:pre:1s;cnd:pre:2s; +gênerait gêner ver 57.76 71.01 1.77 1.15 cnd:pre:3s; +gênerons gêner ver 57.76 71.01 0.01 0.07 ind:fut:1p; +gêneront gêner ver 57.76 71.01 0.19 0.07 ind:fut:3p; +gênes gêner ver 57.76 71.01 1.19 0.68 ind:pre:2s;sub:pre:2s; +gêneur gêneur nom m s 0.95 1.01 0.85 0.54 +gêneurs gêneur nom m p 0.95 1.01 0.09 0.34 +gêneuse gêneur nom f s 0.95 1.01 0.01 0.07 +gêneuses gêneur nom f p 0.95 1.01 0 0.07 +gênez gêner ver 57.76 71.01 3.52 1.28 imp:pre:2p;ind:pre:2p; +gêniez gêner ver 57.76 71.01 0 0.07 ind:imp:2p; +gênons gêner ver 57.76 71.01 0.17 0 imp:pre:1p;ind:pre:1p; +gênât gêner ver 57.76 71.01 0 0.2 sub:imp:3s; +gêné gêner ver m s 57.76 71.01 5.44 14.53 par:pas; +gênée gêner ver f s 57.76 71.01 3.26 4.12 par:pas; +gênées gêner ver f p 57.76 71.01 0.18 0.34 par:pas; +gênés gêner ver m p 57.76 71.01 0.92 2.91 par:pas; +gît gésir ver 4.77 15.68 2.15 2.64 ind:pre:3s; +gîta gîter ver 0.03 1.28 0.01 0.07 ind:pas:3s; +gîtait gîter ver 0.03 1.28 0 0.61 ind:imp:3s; +gîte gîte nom s 1.2 6.49 1.05 5.81 +gîtent gîter ver 0.03 1.28 0 0.14 ind:pre:3p; +gîter gîter ver 0.03 1.28 0 0.34 inf; +gîtera gîter ver 0.03 1.28 0.02 0 ind:fut:3s; +gîtes gîte nom m p 1.2 6.49 0.14 0.68 +gîté gîter ver m s 0.03 1.28 0 0.14 par:pas; +ha ha ono 21.54 7.7 21.54 7.7 +habanera habanera nom f s 0.01 0 0.01 0 +habile habile adj s 6.44 17.16 5.6 13.11 +habilement habilement adv 0.58 5.2 0.58 5.2 +habiles habile adj p 6.44 17.16 0.84 4.05 +habileté habileté nom f s 2.05 10.88 2.03 10.54 +habiletés habileté nom f p 2.05 10.88 0.02 0.34 +habilitation habilitation nom f s 0.22 0.07 0.19 0.07 +habilitations habilitation nom f p 0.22 0.07 0.03 0 +habilite habiliter ver 0.77 1.01 0.04 0 imp:pre:2s;ind:pre:3s; +habilité habilité nom f s 0.58 0.14 0.51 0.14 +habilitée habiliter ver f s 0.77 1.01 0.17 0.14 par:pas; +habilitées habilité adj f p 0.43 0.2 0.15 0 +habilités habiliter ver m p 0.77 1.01 0.11 0.2 par:pas; +habilla habiller ver 58.27 67.36 0.13 3.78 ind:pas:3s; +habillage habillage nom m s 0.14 0.14 0.14 0.14 +habillai habiller ver 58.27 67.36 0 0.95 ind:pas:1s; +habillaient habiller ver 58.27 67.36 0.14 0.88 ind:imp:3p; +habillais habiller ver 58.27 67.36 0.56 0.68 ind:imp:1s;ind:imp:2s; +habillait habiller ver 58.27 67.36 0.86 6.08 ind:imp:3s; +habillant habiller ver 58.27 67.36 0.1 0.95 par:pre; +habillas habiller ver 58.27 67.36 0 0.07 ind:pas:2s; +habille habiller ver 58.27 67.36 16.95 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +habillement habillement nom m s 0.55 2.5 0.55 2.5 +habillent habiller ver 58.27 67.36 0.77 1.35 ind:pre:3p; +habiller habiller ver 58.27 67.36 17.1 15.27 inf;;inf;;inf;;inf;; +habillera habiller ver 58.27 67.36 0.39 0.14 ind:fut:3s; +habillerai habiller ver 58.27 67.36 0.29 0.14 ind:fut:1s; +habilleraient habiller ver 58.27 67.36 0.01 0.07 cnd:pre:3p; +habillerais habiller ver 58.27 67.36 0.06 0.14 cnd:pre:1s; +habillerait habiller ver 58.27 67.36 0.14 0.34 cnd:pre:3s; +habilleras habiller ver 58.27 67.36 0.03 0.2 ind:fut:2s; +habillerez habiller ver 58.27 67.36 0.23 0 ind:fut:2p; +habillerons habiller ver 58.27 67.36 0.12 0.07 ind:fut:1p; +habilles habiller ver 58.27 67.36 2.26 0.27 ind:pre:2s; +habilleur habilleur nom m s 0.72 0.34 0.06 0.07 +habilleurs habilleur nom m p 0.72 0.34 0.02 0 +habilleuse habilleur nom f s 0.72 0.34 0.62 0.2 +habilleuses habilleur nom f p 0.72 0.34 0.02 0.07 +habillez habiller ver 58.27 67.36 3.65 0.2 imp:pre:2p;ind:pre:2p; +habilliez habiller ver 58.27 67.36 0.04 0 ind:imp:2p; +habillions habiller ver 58.27 67.36 0.01 0.07 ind:imp:1p; +habillons habiller ver 58.27 67.36 0.34 0.2 imp:pre:1p;ind:pre:1p; +habillâmes habiller ver 58.27 67.36 0 0.07 ind:pas:1p; +habillât habiller ver 58.27 67.36 0 0.14 sub:imp:3s; +habillèrent habiller ver 58.27 67.36 0 0.27 ind:pas:3p; +habillé habiller ver m s 58.27 67.36 7.24 12.03 par:pas; +habillée habiller ver f s 58.27 67.36 4.51 8.04 par:pas; +habillées habillé adj f p 10.45 17.23 0.59 1.62 +habillés habiller ver m p 58.27 67.36 2.07 5.2 par:pas; +habit habit nom m s 27.64 27.5 8.34 11.08 +habita habiter ver 128.3 112.5 0.02 1.08 ind:pas:3s; +habitabilité habitabilité nom f s 0 0.07 0 0.07 +habitable habitable adj s 0.57 2.09 0.34 1.69 +habitables habitable adj p 0.57 2.09 0.23 0.41 +habitacle habitacle nom m s 0.27 1.69 0.26 1.62 +habitacles habitacle nom m p 0.27 1.69 0.01 0.07 +habitai habiter ver 128.3 112.5 0 0.07 ind:pas:1s; +habitaient habiter ver 128.3 112.5 2.04 8.24 ind:imp:3p; +habitais habiter ver 128.3 112.5 3.27 4.39 ind:imp:1s;ind:imp:2s; +habitait habiter ver 128.3 112.5 8.94 31.01 ind:imp:3s; +habitant habitant nom m s 16.68 29.46 1.38 4.32 +habitante habitant nom f s 16.68 29.46 0.09 0.14 +habitants habitant nom m p 16.68 29.46 15.21 25 +habitassent habiter ver 128.3 112.5 0 0.07 sub:imp:3p; +habitat habitat nom m s 1.38 0.95 1.31 0.88 +habitation habitation nom f s 1.77 5.61 0.82 3.58 +habitations habitation nom f p 1.77 5.61 0.95 2.03 +habitats habitat nom m p 1.38 0.95 0.06 0.07 +habite habiter ver 128.3 112.5 59.55 22.5 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +habitent habiter ver 128.3 112.5 6.92 4.8 ind:pre:3p; +habiter habiter ver 128.3 112.5 12.73 13.51 inf; +habitera habiter ver 128.3 112.5 0.98 0.34 ind:fut:3s; +habiterai habiter ver 128.3 112.5 0.8 0.14 ind:fut:1s; +habiteraient habiter ver 128.3 112.5 0.01 0.14 cnd:pre:3p; +habiterais habiter ver 128.3 112.5 0.42 0.14 cnd:pre:1s;cnd:pre:2s; +habiterait habiter ver 128.3 112.5 0.64 0.34 cnd:pre:3s; +habiteras habiter ver 128.3 112.5 0.43 0.41 ind:fut:2s; +habiterez habiter ver 128.3 112.5 0.41 0.07 ind:fut:2p; +habiterions habiter ver 128.3 112.5 0.01 0.27 cnd:pre:1p; +habiterons habiter ver 128.3 112.5 0.24 0.14 ind:fut:1p; +habiteront habiter ver 128.3 112.5 0.01 0.14 ind:fut:3p; +habites habiter ver 128.3 112.5 11.71 1.96 ind:pre:2s; +habitez habiter ver 128.3 112.5 8.83 1.82 imp:pre:2p;ind:pre:2p; +habitiez habiter ver 128.3 112.5 1.5 0.14 ind:imp:2p; +habitions habiter ver 128.3 112.5 0.39 2.16 ind:imp:1p; +habitons habiter ver 128.3 112.5 1.72 1.55 imp:pre:1p;ind:pre:1p; +habits habit nom m p 27.64 27.5 19.29 16.42 +habitua habituer ver 31.89 46.42 0.02 0.74 ind:pas:3s; +habituai habituer ver 31.89 46.42 0.1 0.07 ind:pas:1s; +habituaient habituer ver 31.89 46.42 0 0.88 ind:imp:3p; +habituais habituer ver 31.89 46.42 0.03 0.74 ind:imp:1s; +habituait habituer ver 31.89 46.42 0.17 1.76 ind:imp:3s; +habituant habituer ver 31.89 46.42 0.01 0.74 par:pre; +habitude habitude nom f s 98.22 154.46 89.71 128.51 +habitudes habitude nom f p 98.22 154.46 8.52 25.95 +habitue habituer ver 31.89 46.42 5.36 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +habituel habituel adj m s 15.66 39.93 5.35 14.86 +habituelle habituel adj f s 15.66 39.93 4.95 13.65 +habituellement habituellement adv 4.02 7.7 4.02 7.7 +habituelles habituel adj f p 15.66 39.93 2 5.41 +habituels habituel adj m p 15.66 39.93 3.36 6.01 +habituent habituer ver 31.89 46.42 0.47 0.61 ind:pre:3p; +habituer habituer ver 31.89 46.42 8.95 9.26 inf;;inf;;inf;; +habituera habituer ver 31.89 46.42 0.21 0.2 ind:fut:3s; +habituerai habituer ver 31.89 46.42 0.46 0.27 ind:fut:1s; +habitueraient habituer ver 31.89 46.42 0 0.14 cnd:pre:3p; +habituerais habituer ver 31.89 46.42 0.08 0.14 cnd:pre:1s; +habituerait habituer ver 31.89 46.42 0.04 0.47 cnd:pre:3s; +habitueras habituer ver 31.89 46.42 1.45 0.14 ind:fut:2s; +habituerez habituer ver 31.89 46.42 0.33 0.14 ind:fut:2p; +habituerons habituer ver 31.89 46.42 0 0.07 ind:fut:1p; +habitueront habituer ver 31.89 46.42 0.07 0.07 ind:fut:3p; +habitues habituer ver 31.89 46.42 0.71 0.34 ind:pre:2s;sub:pre:2s; +habituez habituer ver 31.89 46.42 0.37 0.27 imp:pre:2p;ind:pre:2p; +habituons habituer ver 31.89 46.42 0.02 0 imp:pre:1p; +habitus habitus nom m 0 0.14 0 0.14 +habituât habituer ver 31.89 46.42 0 0.14 sub:imp:3s; +habituèrent habituer ver 31.89 46.42 0.11 0.34 ind:pas:3p; +habitué habituer ver m s 31.89 46.42 6.32 10.47 par:pas; +habituée habituer ver f s 31.89 46.42 3.75 7.7 par:pas; +habituées habituer ver f p 31.89 46.42 0.63 0.47 par:pas; +habitués habituer ver m p 31.89 46.42 2.24 5.74 par:pas; +habitât habiter ver 128.3 112.5 0 0.34 sub:imp:3s; +habitèrent habiter ver 128.3 112.5 0 0.47 ind:pas:3p; +habité habiter ver m s 128.3 112.5 4.83 8.51 par:pas; +habitée habiter ver f s 128.3 112.5 1.19 3.58 par:pas; +habitées habité adj f p 1.4 3.85 0.08 0.27 +habités habité adj m p 1.4 3.85 0.38 0.61 +hacha hacher ver 2.18 6.01 0.1 0.07 ind:pas:3s; +hachage hachage nom m s 0.01 0 0.01 0 +hachaient hacher ver 2.18 6.01 0 0.14 ind:imp:3p; +hachait hacher ver 2.18 6.01 0.02 0.74 ind:imp:3s; +hachant hacher ver 2.18 6.01 0.02 0.47 par:pre; +hachard hachard nom m s 0 0.07 0 0.07 +hache hache nom f s 10.23 13.65 8.73 11.76 +hache_paille hache_paille nom m p 0 0.14 0 0.14 +hachent hacher ver 2.18 6.01 0.03 0.34 ind:pre:3p; +hacher hacher ver 2.18 6.01 0.35 0.74 inf; +hacherai hacher ver 2.18 6.01 0.03 0 ind:fut:1s; +hacherait hacher ver 2.18 6.01 0.02 0 cnd:pre:3s; +haches hache nom f p 10.23 13.65 1.5 1.89 +hachette hachette nom f s 0.22 0.74 0.2 0.74 +hachettes hachette nom f p 0.22 0.74 0.02 0 +hacheur hacheur nom m s 0.11 0.27 0.01 0.14 +hacheurs hacheur nom m p 0.11 0.27 0.1 0.14 +hachez hacher ver 2.18 6.01 0.67 0.14 imp:pre:2p;ind:pre:2p; +hachis hachis nom m p 1.07 1.22 1.07 1.22 +hachisch hachisch nom m s 0.01 0.07 0.01 0.07 +hachoir hachoir nom m s 0.7 0.81 0.68 0.61 +hachoirs hachoir nom m p 0.7 0.81 0.02 0.2 +hachuraient hachurer ver 0.03 1.08 0 0.14 ind:imp:3p; +hachurait hachurer ver 0.03 1.08 0 0.07 ind:imp:3s; +hachurant hachurer ver 0.03 1.08 0 0.07 par:pre; +hachure hachure nom f s 0 1.55 0 0.2 +hachures hachure nom f p 0 1.55 0 1.35 +hachuré hachurer ver m s 0.03 1.08 0.03 0.34 par:pas; +hachurée hachurer ver f s 0.03 1.08 0 0.14 par:pas; +hachurées hachurer ver f p 0.03 1.08 0 0.14 par:pas; +hachurés hachurer ver m p 0.03 1.08 0 0.14 par:pas; +hachèrent hacher ver 2.18 6.01 0 0.07 ind:pas:3p; +haché haché adj m s 1.5 5.07 0.73 1.01 +hachée haché adj f s 1.5 5.07 0.66 2.7 +hachées hacher ver f p 2.18 6.01 0.01 0.41 par:pas; +hachés haché adj m p 1.5 5.07 0.11 0.81 +hacienda hacienda nom f s 0.93 0.2 0.9 0.2 +haciendas hacienda nom f p 0.93 0.2 0.03 0 +hack hack nom m s 0.23 0 0.23 0 +hacker hacker nom m s 0.99 0 0.66 0 +hackers hacker nom m p 0.99 0 0.33 0 +haddock haddock nom m s 0.23 0.54 0.23 0.54 +hadith hadith nom m s 0.01 0 0.01 0 +hadj hadj nom m s 1.88 0 1.88 0 +hadji hadji nom m p 0.47 0.27 0.47 0.27 +hagard hagard adj m s 0.46 13.18 0.24 6.96 +hagarde hagard adj f s 0.46 13.18 0.03 3.51 +hagardes hagard adj f p 0.46 13.18 0 0.41 +hagards hagard adj m p 0.46 13.18 0.19 2.3 +haggadah haggadah nom f s 0.02 0 0.02 0 +haggis haggis nom m p 0.27 0 0.27 0 +hagiographe hagiographe nom m s 0 0.47 0 0.47 +hagiographie hagiographie nom f s 0.01 0.2 0.01 0.2 +haha haha ono 0.59 1.22 0.59 1.22 +hai hai ono 1.28 0.07 1.28 0.07 +haie haie nom f s 3.36 26.08 2.6 14.8 +haies haie nom f p 3.36 26.08 0.76 11.28 +haillon haillon nom m s 1.78 3.78 0.01 0.47 +haillonneuse haillonneux adj f s 0 0.2 0 0.14 +haillonneux haillonneux adj m p 0 0.2 0 0.07 +haillons haillon nom m p 1.78 3.78 1.77 3.31 +haine haine nom f s 33.1 52.5 31.49 49.39 +haines haine nom f p 33.1 52.5 1.62 3.11 +haineuse haineux adj f s 0.96 6.42 0.07 1.76 +haineusement haineusement adv 0.01 0.68 0.01 0.68 +haineuses haineux adj f p 0.96 6.42 0.07 0.34 +haineux haineux adj m 0.96 6.42 0.82 4.32 +haire haire nom f s 0 0.2 0 0.14 +haires haire nom f p 0 0.2 0 0.07 +hais haïr ver 55.42 35.68 31.21 8.85 imp:pre:2s;ind:pre:1s;ind:pre:2s; +hait haïr ver 55.42 35.68 7.53 3.58 ind:pre:3s; +haka haka nom m s 0.01 0 0.01 0 +hakka hakka nom m s 0.01 0 0.01 0 +hala haler ver 0.16 2.3 0 0.07 ind:pas:3s; +halage halage nom m s 0.16 1.55 0.16 1.49 +halages halage nom m p 0.16 1.55 0 0.07 +halaient haler ver 0.16 2.3 0 0.34 ind:imp:3p; +halait haler ver 0.16 2.3 0 0.2 ind:imp:3s; +halal halal adj f s 0.24 0 0.24 0 +halant haler ver 0.16 2.3 0 0.34 par:pre; +halcyon halcyon nom m s 0.02 0 0.02 0 +hale hale nom m s 0 0.07 0 0.07 +haleine haleine nom f s 8 23.04 7.55 21.82 +haleines haleine nom f p 8 23.04 0.45 1.22 +halent haler ver 0.16 2.3 0.1 0.2 ind:pre:3p; +haler haler ver 0.16 2.3 0.02 0.54 inf; +haleta haleter ver 0.79 11.76 0.02 0.95 ind:pas:3s; +haletaient haleter ver 0.79 11.76 0 0.27 ind:imp:3p; +haletais haleter ver 0.79 11.76 0.03 0.14 ind:imp:1s;ind:imp:2s; +haletait haleter ver 0.79 11.76 0 3.58 ind:imp:3s; +haletant haleter ver 0.79 11.76 0.06 4.26 par:pre; +haletante haletant adj f s 0.47 9.8 0.4 4.66 +haletantes haletant adj f p 0.47 9.8 0 0.41 +haletants haletant adj m p 0.47 9.8 0.01 1.76 +haleter haleter ver 0.79 11.76 0.2 1.28 inf; +haleté haleter ver m s 0.79 11.76 0.02 0.2 par:pas; +haleur haleur nom m s 0.11 0.34 0.01 0.07 +haleurs haleur nom m p 0.11 0.34 0.1 0.27 +halez haler ver 0.16 2.3 0.02 0.07 imp:pre:2p; +half_track half_track nom m s 0.05 0.14 0.04 0.14 +half_track half_track nom m p 0.05 0.14 0.01 0 +halieutiques halieutique adj f p 0 0.07 0 0.07 +hall hall nom m s 9.9 26.76 9.73 25.81 +hallali hallali nom m s 0.14 1.35 0.14 1.35 +halle halle nom f s 0.83 9.32 0.26 1.01 +hallebarde hallebarde nom f s 0.06 1.28 0.05 0.27 +hallebardes hallebarde nom f p 0.06 1.28 0.01 1.01 +hallebardier hallebardier nom m s 0.03 0.68 0.02 0.2 +hallebardiers hallebardier nom m p 0.03 0.68 0.01 0.47 +halles halle nom f p 0.83 9.32 0.57 8.31 +hallier hallier nom m s 0.02 1.76 0.01 0.81 +halliers hallier nom m p 0.02 1.76 0.01 0.95 +halloween halloween nom f s 0.04 0 0.04 0 +halls hall nom m p 9.9 26.76 0.17 0.95 +hallucinais halluciner ver 3.44 0.95 0.08 0.07 ind:imp:1s;ind:imp:2s; +hallucinant hallucinant adj m s 1.56 2.91 1.4 0.81 +hallucinante hallucinant adj f s 1.56 2.91 0.1 1.62 +hallucinantes hallucinant adj f p 1.56 2.91 0.02 0.14 +hallucinants hallucinant adj m p 1.56 2.91 0.04 0.34 +hallucination hallucination nom f s 7.88 5.61 3.46 3.51 +hallucinations hallucination nom f p 7.88 5.61 4.43 2.09 +hallucinatoire hallucinatoire adj s 0.39 0.2 0.23 0.14 +hallucinatoires hallucinatoire adj p 0.39 0.2 0.16 0.07 +hallucine halluciner ver 3.44 0.95 1.87 0.2 ind:pre:1s;ind:pre:3s; +halluciner halluciner ver 3.44 0.95 0.95 0.14 inf; +hallucinez halluciner ver 3.44 0.95 0.05 0 imp:pre:2p;ind:pre:2p; +hallucinogène hallucinogène adj s 0.61 0.14 0.18 0 +hallucinogènes hallucinogène adj p 0.61 0.14 0.44 0.14 +hallucinons halluciner ver 3.44 0.95 0.01 0 ind:pre:1p; +halluciné halluciner ver m s 3.44 0.95 0.41 0.34 par:pas; +hallucinée halluciné adj f s 0.25 1.35 0.11 0.47 +hallucinées halluciné adj f p 0.25 1.35 0.01 0.07 +hallucinés halluciné nom m p 0.03 0.95 0.01 0.27 +halo halo nom m s 1.36 8.38 1.3 7.5 +halogène halogène nom m s 0.12 0 0.04 0 +halogènes halogène nom m p 0.12 0 0.08 0 +halogénure halogénure nom m s 0.01 0 0.01 0 +halon halon nom m s 0.08 0.07 0.08 0 +halons halon nom m p 0.08 0.07 0 0.07 +halopéridol halopéridol nom m s 0.12 0 0.12 0 +halos halo nom m p 1.36 8.38 0.05 0.88 +halothane halothane nom m s 0.5 0 0.5 0 +halte halte ono 14.27 3.85 14.27 3.85 +halte_garderie halte_garderie nom f s 0.02 0 0.02 0 +halter halter ver 0.07 0.2 0.03 0 inf; +haltes halte nom f p 3.77 12.77 0.03 1.89 +haltère haltère nom m s 0.95 1.35 0.06 0.07 +haltères haltère nom m p 0.95 1.35 0.89 1.28 +haltérophile haltérophile nom s 0.11 0.27 0.06 0.2 +haltérophiles haltérophile nom p 0.11 0.27 0.04 0.07 +haltérophilie haltérophilie nom f s 0.18 0.14 0.18 0.14 +halva halva nom m s 0.01 0.07 0.01 0.07 +halèrent haler ver 0.16 2.3 0.02 0.07 ind:pas:3p; +halète haleter ver 0.79 11.76 0.34 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +halètement halètement nom m s 0.45 3.72 0 2.57 +halètements halètement nom m p 0.45 3.72 0.45 1.15 +halètent haleter ver 0.79 11.76 0.1 0.2 ind:pre:3p; +halètes haleter ver 0.79 11.76 0.01 0 ind:pre:2s; +halé haler ver m s 0.16 2.3 0 0.2 par:pas; +halée haler ver f s 0.16 2.3 0 0.14 par:pas; +halés haler ver m p 0.16 2.3 0 0.14 par:pas; +hamac hamac nom m s 1.84 3.78 1.63 3.11 +hamacs hamac nom m p 1.84 3.78 0.22 0.68 +hamada hamada nom f s 0.17 0.07 0.17 0.07 +hamadryade hamadryade nom f s 0.01 0 0.01 0 +hamadryas hamadryas nom m 0.01 0 0.01 0 +hamamélis hamamélis nom m 0.01 0 0.01 0 +hambourgeois hambourgeois adj m s 0.02 0.2 0.02 0.2 +hambourgeoises hambourgeois nom f p 0 0.2 0 0.07 +hamburger hamburger nom m s 7.47 0.68 4.1 0.41 +hamburgers hamburger nom m p 7.47 0.68 3.38 0.27 +hameau hameau nom m s 0.81 10.61 0.79 7.91 +hameaux hameau nom m p 0.81 10.61 0.03 2.7 +hameçon hameçon nom m s 3.08 3.24 2.61 2.5 +hameçonne hameçonner ver 0 0.07 0 0.07 ind:pre:3s; +hameçons hameçon nom m p 3.08 3.24 0.47 0.74 +hammam hammam nom m s 0.73 1.55 0.58 1.49 +hammams hammam nom m p 0.73 1.55 0.14 0.07 +hammerless hammerless nom m p 0.27 0.07 0.27 0.07 +hampe hampe nom f s 0.52 3.11 0.52 1.82 +hampes hampe nom f p 0.52 3.11 0 1.28 +hamster hamster nom m s 2.51 1.22 2.18 0.68 +hamsters hamster nom m p 2.51 1.22 0.33 0.54 +han han adj m s 1.96 1.49 1.96 1.49 +hanap hanap nom m s 0.01 0.34 0.01 0.2 +hanaps hanap nom m p 0.01 0.34 0 0.14 +hanche hanche nom f s 8.9 32.36 3.42 9.59 +hanches hanche nom f p 8.9 32.36 5.48 22.77 +hanchée hancher ver f s 0 0.07 0 0.07 par:pas; +hand_ball hand_ball nom m s 0.08 0 0.08 0 +handball handball nom m s 0.52 0 0.52 0 +handicap handicap nom m s 3.7 2.7 3.4 2.3 +handicapait handicaper ver 2.32 0.74 0.02 0 ind:imp:3s; +handicapant handicapant adj m s 0.15 0 0.15 0 +handicape handicaper ver 2.32 0.74 0.2 0.07 imp:pre:2s;ind:pre:3s; +handicaper handicaper ver 2.32 0.74 0.05 0.07 inf;; +handicapera handicaper ver 2.32 0.74 0.02 0 ind:fut:3s; +handicapeur handicapeur nom m s 0.06 0 0.06 0 +handicaps handicap nom m p 3.7 2.7 0.3 0.41 +handicapé handicaper ver m s 2.32 0.74 1.12 0.41 par:pas; +handicapée handicaper ver f s 2.32 0.74 0.66 0.14 par:pas; +handicapées handicaper ver f p 2.32 0.74 0.03 0 par:pas; +handicapés handicapé nom m p 4.9 1.15 3.46 0.41 +hangar hangar nom m s 5.65 18.85 5.44 12.97 +hangars hangar nom m p 5.65 18.85 0.2 5.88 +hanneton hanneton nom m s 0.5 5.34 0.05 2.7 +hannetons hanneton nom m p 0.5 5.34 0.45 2.64 +hanoukka hanoukka nom f s 0.31 0 0.31 0 +hanovrien hanovrien adj m s 0 0.07 0 0.07 +hanovriens hanovrien nom m p 0.14 0 0.14 0 +hanséatique hanséatique adj f s 0.1 0 0.1 0 +hanta hanter ver 11.37 15.2 0.06 0.27 ind:pas:3s; +hantaient hanter ver 11.37 15.2 0.02 0.74 ind:imp:3p; +hantais hanter ver 11.37 15.2 0.18 0 ind:imp:1s;ind:imp:2s; +hantait hanter ver 11.37 15.2 0.42 2.36 ind:imp:3s; +hantant hanter ver 11.37 15.2 0.01 0.14 par:pre; +hantavirus hantavirus nom m 0.03 0 0.03 0 +hante hanter ver 11.37 15.2 2.7 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hantent hanter ver 11.37 15.2 1.28 0.95 ind:pre:3p; +hanter hanter ver 11.37 15.2 1.92 2.23 inf; +hantera hanter ver 11.37 15.2 0.19 0.07 ind:fut:3s; +hanterai hanter ver 11.37 15.2 0.04 0 ind:fut:1s; +hanterait hanter ver 11.37 15.2 0.08 0.07 cnd:pre:3s; +hanteront hanter ver 11.37 15.2 0.15 0 ind:fut:3p; +hantes hanter ver 11.37 15.2 0.39 0 ind:pre:2s; +hanteur hanteur adj m s 0 0.07 0 0.07 +hantez hanter ver 11.37 15.2 0.33 0.07 imp:pre:2p;ind:pre:2p; +hantise hantise nom f s 0.19 5.07 0.07 4.46 +hantises hantise nom f p 0.19 5.07 0.12 0.61 +hanté hanter ver m s 11.37 15.2 1.91 3.04 par:pas; +hantée hanter ver f s 11.37 15.2 1.15 0.81 par:pas; +hantées hanté adj f p 1.99 1.55 0.17 0.27 +hantés hanter ver m p 11.37 15.2 0.47 1.08 par:pas; +happa happer ver 0.99 8.24 0 0.34 ind:pas:3s; +happai happer ver 0.99 8.24 0 0.07 ind:pas:1s; +happaient happer ver 0.99 8.24 0 0.27 ind:imp:3p; +happait happer ver 0.99 8.24 0 0.54 ind:imp:3s; +happant happer ver 0.99 8.24 0 0.34 par:pre; +happe happer ver 0.99 8.24 0.16 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +happement happement nom m s 0 0.2 0 0.2 +happening happening nom m s 0.41 0.54 0.39 0.41 +happenings happening nom m p 0.41 0.54 0.02 0.14 +happent happer ver 0.99 8.24 0.11 0.34 ind:pre:3p; +happer happer ver 0.99 8.24 0.24 0.88 inf; +happerait happer ver 0.99 8.24 0 0.07 cnd:pre:3s; +happeurs happeur nom m p 0 0.07 0 0.07 +happy_end happy_end nom m s 0.51 0.27 0.45 0.27 +happy_end happy_end nom m p 0.51 0.27 0.05 0 +happy_few happy_few nom m p 0 0.14 0 0.14 +happé happer ver m s 0.99 8.24 0.11 2.23 par:pas; +happée happer ver f s 0.99 8.24 0.32 1.15 par:pas; +happées happer ver f p 0.99 8.24 0.01 0.41 par:pas; +happés happer ver m p 0.99 8.24 0.04 0.61 par:pas; +haptoglobine haptoglobine nom f s 0.01 0 0.01 0 +haque haque nom f s 0.41 1.62 0.41 1.62 +haquenée haquenée nom f s 0 0.07 0 0.07 +haquet haquet nom m s 0 0.2 0 0.14 +haquets haquet nom m p 0 0.2 0 0.07 +hara_kiri hara_kiri nom m s 0.29 0.41 0.29 0.41 +harangua haranguer ver 0.09 1.89 0 0.27 ind:pas:3s; +haranguaient haranguer ver 0.09 1.89 0 0.14 ind:imp:3p; +haranguait haranguer ver 0.09 1.89 0 0.34 ind:imp:3s; +haranguant haranguer ver 0.09 1.89 0 0.41 par:pre; +harangue harangue nom f s 0.01 1.22 0.01 0.81 +haranguer haranguer ver 0.09 1.89 0.06 0.2 inf; +haranguerais haranguer ver 0.09 1.89 0 0.07 cnd:pre:1s; +harangues harangue nom f p 0.01 1.22 0 0.41 +haranguez haranguer ver 0.09 1.89 0.01 0 ind:pre:2p; +harangué haranguer ver m s 0.09 1.89 0 0.2 par:pas; +haranguée haranguer ver f s 0.09 1.89 0.01 0.07 par:pas; +harangués haranguer ver m p 0.09 1.89 0 0.14 par:pas; +harari harari nom m p 0.02 0 0.02 0 +haras haras nom m p 0.19 1.01 0.19 1.01 +harassaient harasser ver 0.17 1.28 0.01 0.14 ind:imp:3p; +harassant harassant adj m s 0.19 1.42 0.03 0.2 +harassante harassant adj f s 0.19 1.42 0.15 0.47 +harassantes harassant adj f p 0.19 1.42 0 0.47 +harassants harassant adj m p 0.19 1.42 0 0.27 +harasse harasser ver 0.17 1.28 0 0.07 ind:pre:3s; +harassement harassement nom m s 0.27 0.2 0.27 0.2 +harassent harasser ver 0.17 1.28 0.11 0.07 ind:pre:3p; +harasser harasser ver 0.17 1.28 0 0.07 inf; +harassé harassé adj m s 0.12 2.5 0.01 1.15 +harassée harassé adj f s 0.12 2.5 0.01 0.41 +harassées harassé adj f p 0.12 2.5 0 0.14 +harassés harassé adj m p 0.12 2.5 0.1 0.81 +harcela harceler ver 11.12 8.24 0 0.14 ind:pas:3s; +harcelai harceler ver 11.12 8.24 0 0.07 ind:pas:1s; +harcelaient harceler ver 11.12 8.24 0.3 0.74 ind:imp:3p; +harcelais harceler ver 11.12 8.24 0.11 0.2 ind:imp:1s;ind:imp:2s; +harcelait harceler ver 11.12 8.24 0.62 0.88 ind:imp:3s; +harcelant harceler ver 11.12 8.24 0.13 0.61 par:pre; +harcelante harcelant adj f s 0.04 0.61 0 0.27 +harcelantes harcelant adj f p 0.04 0.61 0.01 0.14 +harcelants harcelant adj m p 0.04 0.61 0 0.07 +harceler harceler ver 11.12 8.24 3 1.82 inf; +harceleur harceleur nom m s 0.17 0.07 0.16 0 +harceleuse harceleur nom f s 0.17 0.07 0.01 0.07 +harcelez harceler ver 11.12 8.24 0.92 0 imp:pre:2p;ind:pre:2p; +harceliez harceler ver 11.12 8.24 0.06 0 ind:imp:2p; +harcelèrent harceler ver 11.12 8.24 0 0.07 ind:pas:3p; +harcelé harceler ver m s 11.12 8.24 1.16 1.62 par:pas; +harcelée harceler ver f s 11.12 8.24 0.67 0.34 par:pas; +harcelées harceler ver f p 11.12 8.24 0.04 0.07 par:pas; +harcelés harceler ver m p 11.12 8.24 0.37 0.61 par:pas; +harcèle harceler ver 11.12 8.24 2.88 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +harcèlement harcèlement nom m s 3.69 1.49 3.65 1.35 +harcèlements harcèlement nom m p 3.69 1.49 0.05 0.14 +harcèlent harceler ver 11.12 8.24 0.41 0.27 ind:pre:3p; +harcèlera harceler ver 11.12 8.24 0.17 0 ind:fut:3s; +harcèlerai harceler ver 11.12 8.24 0.11 0 ind:fut:1s; +harcèleraient harceler ver 11.12 8.24 0 0.14 cnd:pre:3p; +harcèlerez harceler ver 11.12 8.24 0.01 0 ind:fut:2p; +harcèlerons harceler ver 11.12 8.24 0.14 0 ind:fut:1p; +harcèleront harceler ver 11.12 8.24 0.02 0 ind:fut:3p; +hard hard adj 2.72 1.08 2.72 1.08 +hard_edge hard_edge nom m s 0.01 0 0.01 0 +hard_top hard_top nom m s 0.01 0 0.01 0 +harde harde nom f s 0.15 8.99 0 3.85 +hardent harder ver 0.18 0.07 0.01 0 ind:pre:3p; +harder harder ver 0.18 0.07 0.17 0.07 inf; +hardes harde nom f p 0.15 8.99 0.15 5.14 +hardi hardi ono 0.01 0.61 0.01 0.61 +hardie hardi adj f s 2.22 10.68 0.63 1.35 +hardies hardi adj f p 2.22 10.68 0.11 0.88 +hardiesse hardiesse nom f s 0.46 2.64 0.46 2.03 +hardiesses hardiesse nom f p 0.46 2.64 0 0.61 +hardiment hardiment adv 1.2 1.62 1.2 1.62 +hardis hardi adj m p 2.22 10.68 0.19 1.96 +hare hare ono 0.49 0.07 0.49 0.07 +harem harem nom m s 1.78 15.95 1.6 15.74 +harems harem nom m p 1.78 15.95 0.17 0.2 +hareng hareng nom m s 2.78 6.08 1.9 2.91 +harengs hareng nom m p 2.78 6.08 0.89 3.18 +harenguet harenguet nom m s 0.01 0 0.01 0 +harenguier harenguier nom m s 0.1 0 0.1 0 +harengère harengère nom f s 0.1 0.14 0.1 0.14 +haret haret adj m s 0 0.07 0 0.07 +harfang harfang nom m s 0 0.07 0 0.07 +hargne hargne nom f s 0.42 4.53 0.42 4.26 +hargnes hargne nom f p 0.42 4.53 0 0.27 +hargneuse hargneux adj f s 1.13 9.46 0.14 3.11 +hargneusement hargneusement adv 0 1.42 0 1.42 +hargneuses hargneux adj f p 1.13 9.46 0.01 0.81 +hargneux hargneux adj m 1.13 9.46 0.98 5.54 +haricot haricot nom m s 8.85 13.45 1.4 1.22 +haricots haricot nom m p 8.85 13.45 7.45 12.23 +haridelle haridelle nom f s 0.01 0.61 0.01 0.41 +haridelles haridelle nom f p 0.01 0.61 0 0.2 +harissa harissa nom f s 0 0.2 0 0.2 +harki harki nom m s 0 0.41 0 0.14 +harkis harki nom m p 0 0.41 0 0.27 +harmattan harmattan nom m s 0.02 0.07 0.02 0.07 +harmonica harmonica nom m s 1.41 1.76 1.38 1.69 +harmonicas harmonica nom m p 1.41 1.76 0.03 0.07 +harmoniciste harmoniciste nom s 0.02 0 0.02 0 +harmonie harmonie nom f s 6.8 16.22 6.36 15.61 +harmonies harmonie nom f p 6.8 16.22 0.44 0.61 +harmonieuse harmonieux adj f s 1.16 7.09 0.27 2.43 +harmonieusement harmonieusement adv 0.06 1.28 0.06 1.28 +harmonieuses harmonieux adj f p 1.16 7.09 0.05 0.61 +harmonieux harmonieux adj m 1.16 7.09 0.84 4.05 +harmonique harmonique adj s 0.43 0.61 0.36 0.47 +harmoniquement harmoniquement adv 0.01 0 0.01 0 +harmoniques harmonique nom m p 0.22 0.41 0.18 0.41 +harmonisaient harmoniser ver 0.35 1.42 0 0.07 ind:imp:3p; +harmonisait harmoniser ver 0.35 1.42 0.05 0.54 ind:imp:3s; +harmonisant harmoniser ver 0.35 1.42 0.01 0.14 par:pre; +harmonisateurs harmonisateur adj m p 0 0.2 0 0.07 +harmonisation harmonisation nom f s 0.05 0.07 0.05 0.07 +harmonisatrices harmonisateur adj f p 0 0.2 0 0.14 +harmonise harmoniser ver 0.35 1.42 0.04 0.2 ind:pre:3s; +harmonisent harmoniser ver 0.35 1.42 0.01 0.07 ind:pre:3p; +harmoniser harmoniser ver 0.35 1.42 0.22 0.27 inf; +harmonisera harmoniser ver 0.35 1.42 0.01 0 ind:fut:3s; +harmonisez harmoniser ver 0.35 1.42 0.01 0 ind:pre:2p; +harmonisèrent harmoniser ver 0.35 1.42 0 0.07 ind:pas:3p; +harmonisé harmoniser ver m s 0.35 1.42 0.01 0 par:pas; +harmonisés harmoniser ver m p 0.35 1.42 0 0.07 par:pas; +harmonium harmonium nom m s 0.05 3.51 0.05 3.45 +harmoniums harmonium nom m p 0.05 3.51 0 0.07 +harnacha harnacher ver 0.19 1.62 0 0.07 ind:pas:3s; +harnachaient harnacher ver 0.19 1.62 0 0.07 ind:imp:3p; +harnachais harnacher ver 0.19 1.62 0 0.07 ind:imp:1s; +harnachait harnacher ver 0.19 1.62 0 0.27 ind:imp:3s; +harnachement harnachement nom m s 0.06 1.55 0.06 1.28 +harnachements harnachement nom m p 0.06 1.55 0 0.27 +harnacher harnacher ver 0.19 1.62 0.04 0.07 inf; +harnachiez harnacher ver 0.19 1.62 0 0.07 ind:imp:2p; +harnachèrent harnacher ver 0.19 1.62 0 0.07 ind:pas:3p; +harnaché harnacher ver m s 0.19 1.62 0.14 0.47 par:pas; +harnachée harnacher ver f s 0.19 1.62 0 0.07 par:pas; +harnachées harnacher ver f p 0.19 1.62 0 0.14 par:pas; +harnachés harnaché adj m p 0.02 0.88 0.02 0.41 +harnais harnais nom m 1.29 3.92 1.29 3.92 +harnois harnois nom m p 0.01 0.2 0.01 0.2 +haro haro nom m s 0.03 1.35 0.03 1.35 +harpagon harpagon nom m s 0.01 0 0.01 0 +harpe harpe nom f s 1.14 5.34 0.94 4.86 +harper harper ver 7.25 0.14 7.25 0 inf; +harpes harpe nom f p 1.14 5.34 0.2 0.47 +harpie harpie nom f s 0.73 1.42 0.64 1.22 +harpies harpie nom f p 0.73 1.42 0.09 0.2 +harpin harpin nom m s 0 0.07 0 0.07 +harpions harper ver 7.25 0.14 0 0.14 ind:imp:1p; +harpiste harpiste nom s 0.08 0.27 0.08 0.27 +harpon harpon nom m s 1.18 2.03 0.75 1.76 +harponna harponner ver 0.34 1.22 0 0.07 ind:pas:3s; +harponnage harponnage nom m s 0.17 0.07 0.17 0.07 +harponne harponner ver 0.34 1.22 0.02 0.2 ind:pre:1s;ind:pre:3s; +harponnent harponner ver 0.34 1.22 0 0.07 ind:pre:3p; +harponner harponner ver 0.34 1.22 0.23 0.47 inf; +harponnera harponner ver 0.34 1.22 0.01 0 ind:fut:3s; +harponneur harponneur nom m s 0.04 0.2 0.03 0.14 +harponneurs harponneur nom m p 0.04 0.2 0.01 0.07 +harponné harponner ver m s 0.34 1.22 0.04 0.2 par:pas; +harponnée harponner ver f s 0.34 1.22 0.02 0.2 par:pas; +harponnés harponner ver m p 0.34 1.22 0.01 0 par:pas; +harpons harpon nom m p 1.18 2.03 0.43 0.27 +harpyes harpye nom f p 0 0.07 0 0.07 +hart hart nom f s 0.07 0.41 0.07 0.27 +harts hart nom f p 0.07 0.41 0 0.14 +haruspices haruspice nom m p 0.01 0.14 0.01 0.14 +has_been has_been nom m 0.18 0.2 0.18 0.2 +hasard hasard nom m s 48.07 124.19 46.98 118.99 +hasarda hasarder ver 1.1 6.35 0.01 1.35 ind:pas:3s; +hasardai hasarder ver 1.1 6.35 0 0.54 ind:pas:1s; +hasardaient hasarder ver 1.1 6.35 0 0.2 ind:imp:3p; +hasardais hasarder ver 1.1 6.35 0 0.14 ind:imp:1s; +hasardait hasarder ver 1.1 6.35 0 0.68 ind:imp:3s; +hasardant hasarder ver 1.1 6.35 0 0.41 par:pre; +hasarde hasarder ver 1.1 6.35 0.29 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hasardent hasarder ver 1.1 6.35 0.01 0.2 ind:pre:3p; +hasarder hasarder ver 1.1 6.35 0.74 0.68 inf; +hasardera hasarder ver 1.1 6.35 0 0.07 ind:fut:3s; +hasarderais hasarder ver 1.1 6.35 0.03 0 cnd:pre:1s; +hasardeuse hasardeux adj f s 0.66 2.77 0.35 1.08 +hasardeusement hasardeusement adv 0 0.07 0 0.07 +hasardeuses hasardeux adj f p 0.66 2.77 0.03 0.47 +hasardeux hasardeux adj m 0.66 2.77 0.28 1.22 +hasards hasard nom m p 48.07 124.19 1.09 5.2 +hasardé hasarder ver m s 1.1 6.35 0 0.27 par:pas; +hasardée hasardé adj f s 0.1 0.07 0.1 0.07 +hasch hasch nom m s 2.16 0.47 2.16 0.47 +haschich haschich nom m s 0.39 0.47 0.39 0.47 +haschisch haschisch nom m s 0.11 0.41 0.11 0.41 +hase hase nom f s 0.02 0.27 0.02 0.14 +haseki haseki nom f s 0 0.2 0 0.07 +hasekis haseki nom f p 0 0.2 0 0.14 +hases hase nom f p 0.02 0.27 0 0.14 +hassidim hassidim nom m p 0.22 0 0.22 0 +hassidique hassidique adj s 0.09 0 0.09 0 +hassidisme hassidisme nom m s 0 0.07 0 0.07 +hauban hauban nom m s 0.37 1.01 0.02 0.2 +haubans hauban nom m p 0.37 1.01 0.35 0.81 +haubanée haubaner ver f s 0 0.27 0 0.07 par:pas; +haubanés haubaner ver m p 0 0.27 0 0.2 par:pas; +haubert haubert nom m s 0.01 0.54 0.01 0.54 +haussa hausser ver 1.76 71.96 0 34.46 ind:pas:3s; +haussai hausser ver 1.76 71.96 0.27 2.09 ind:pas:1s; +haussaient hausser ver 1.76 71.96 0.1 1.01 ind:imp:3p; +haussais hausser ver 1.76 71.96 0 0.41 ind:imp:1s; +haussait hausser ver 1.76 71.96 0.01 4.86 ind:imp:3s; +haussant hausser ver 1.76 71.96 0.03 8.38 par:pre; +hausse hausse nom f s 3.38 2.36 3.31 2.09 +haussement haussement nom m s 0.06 5.68 0.06 5.07 +haussements haussement nom m p 0.06 5.68 0 0.61 +haussent hausser ver 1.76 71.96 0.1 0.61 ind:pre:3p; +hausser hausser ver 1.76 71.96 0.43 4.86 inf; +hausserait hausser ver 1.76 71.96 0.01 0.14 cnd:pre:3s; +hausses hausser ver 1.76 71.96 0.23 0.2 ind:pre:2s; +haussez hausser ver 1.76 71.96 0.2 0.07 imp:pre:2p;ind:pre:2p; +haussier haussier adj m s 0.02 0 0.01 0 +haussière haussière nom f s 0.03 0.14 0.03 0.07 +haussières haussière nom f p 0.03 0.14 0 0.07 +haussons hausser ver 1.76 71.96 0 0.14 imp:pre:1p;ind:pre:1p; +haussât hausser ver 1.76 71.96 0 0.14 sub:imp:3s; +haussèrent hausser ver 1.76 71.96 0 0.27 ind:pas:3p; +haussé hausser ver m s 1.76 71.96 0.1 5 par:pas; +haussée hausser ver f s 1.76 71.96 0.01 0.27 par:pas; +haussées hausser ver f p 1.76 71.96 0 0.07 par:pas; +haussés hausser ver m p 1.76 71.96 0 0.27 par:pas; +haut haut nom m s 77.86 125.07 75.22 121.01 +haut_commandement haut_commandement nom m s 0 1.22 0 1.22 +haut_commissaire haut_commissaire nom m s 0.03 7.97 0.03 7.57 +haut_commissariat haut_commissariat nom m s 0.02 0.81 0.02 0.81 +haut_de_chausse haut_de_chausse nom f s 0.15 0.07 0.14 0.07 +haut_de_chausses haut_de_chausses nom m 0 0.2 0 0.2 +haut_de_forme haut_de_forme nom m s 0.45 1.62 0.3 1.42 +haut_fond haut_fond nom m s 0.08 1.08 0.02 0.61 +haut_le_coeur haut_le_coeur nom m 0.04 1.01 0.04 1.01 +haut_le_corps haut_le_corps nom m 0 1.76 0 1.76 +haut_parleur haut_parleur nom m s 3.65 7.36 2.61 3.99 +haut_parleur haut_parleur nom m p 3.65 7.36 1.04 3.38 +haut_relief haut_relief nom m s 0 0.2 0 0.2 +hautain hautain adj m s 0.84 10.88 0.51 4.12 +hautaine hautain adj f s 0.84 10.88 0.27 5.07 +hautainement hautainement adv 0 0.07 0 0.07 +hautaines hautain adj f p 0.84 10.88 0.03 0.81 +hautains hautain adj m p 0.84 10.88 0.03 0.88 +hautbois hautbois nom m 0.38 1.62 0.38 1.62 +haute haut adj f s 68.05 196.76 32.44 88.11 +haute_fidélité haute_fidélité nom f s 0.03 0.07 0.03 0.07 +hautement hautement adv 4.83 4.73 4.83 4.73 +hautes haut adj f p 68.05 196.76 6.72 37.43 +hautesse hautesse nom f s 0 1.42 0 1.42 +hauteur hauteur nom f s 19.99 77.7 18.19 66.15 +hauteurs hauteur nom f p 19.99 77.7 1.8 11.55 +hautin hautin nom m s 0.11 0 0.1 0 +hautins hautin nom m p 0.11 0 0.01 0 +hauts haut adj m p 68.05 196.76 5.48 29.26 +haut_commissaire haut_commissaire nom m p 0.03 7.97 0 0.41 +haut_de_chausse haut_de_chausse nom m p 0.15 0.07 0.01 0 +haut_de_forme haut_de_forme nom m p 0.45 1.62 0.14 0.2 +haut_fond haut_fond nom m p 0.08 1.08 0.06 0.47 +haut_fourneau haut_fourneau nom m p 0.01 0.27 0.01 0.27 +hauturière hauturier adj f s 0 0.14 0 0.14 +havanais havanais nom m 0 0.07 0 0.07 +havanaise havanaise nom f s 0.01 0 0.01 0 +havane havane nom m s 0.5 0.95 0.17 0.47 +havanes havane nom m p 0.5 0.95 0.33 0.47 +have haver ver 10.73 0.74 10.67 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +haveneau haveneau nom m s 0 0.14 0 0.07 +haveneaux haveneau nom m p 0 0.14 0 0.07 +haver haver ver 10.73 0.74 0.07 0 inf; +haves haver ver 10.73 0.74 0 0.07 ind:pre:2s; +havrais havrais adj m s 0 0.07 0 0.07 +havre havre nom m s 0.89 3.11 0.85 3.04 +havres havre nom m p 0.89 3.11 0.04 0.07 +havresac havresac nom m s 0.12 2.16 0.12 1.49 +havresacs havresac nom m p 0.12 2.16 0 0.68 +hawaiienne hawaiien adj f s 0 0.14 0 0.07 +hawaiiennes hawaiien adj f p 0 0.14 0 0.07 +hawaïen hawaïen adj m s 0 0.2 0 0.07 +hawaïenne hawaïen adj f s 0 0.2 0 0.14 +hayon hayon nom m s 0.06 0.14 0.06 0.07 +hayons hayon nom m p 0.06 0.14 0 0.07 +haï haïr ver m s 55.42 35.68 0.86 2.03 par:pas; +haïe haïr ver f s 55.42 35.68 0.4 0.54 par:pas; +haïes haïr ver f p 55.42 35.68 0 0.2 par:pas; +haïk haïk nom m s 0 0.61 0 0.41 +haïkaï haïkaï nom m s 0 0.07 0 0.07 +haïks haïk nom m p 0 0.61 0 0.2 +haïku haïku nom m s 0.3 0.07 0.29 0.07 +haïkus haïku nom m p 0.3 0.07 0.01 0 +haïr haïr ver 55.42 35.68 5.91 7.09 inf; +haïra haïr ver 55.42 35.68 0.52 0 ind:fut:3s; +haïrai haïr ver 55.42 35.68 0.39 0.07 ind:fut:1s; +haïraient haïr ver 55.42 35.68 0.04 0.07 cnd:pre:3p; +haïrais haïr ver 55.42 35.68 0.05 0.74 cnd:pre:1s;cnd:pre:2s; +haïrait haïr ver 55.42 35.68 0.1 0.14 cnd:pre:3s; +haïras haïr ver 55.42 35.68 0.32 0 ind:fut:2s; +haïrez haïr ver 55.42 35.68 0.03 0 ind:fut:2p; +haïriez haïr ver 55.42 35.68 0.01 0 cnd:pre:2p; +haïrons haïr ver 55.42 35.68 0 0.07 ind:fut:1p; +haïront haïr ver 55.42 35.68 0.39 0 ind:fut:3p; +haïs haïr ver m p 55.42 35.68 0.34 1.01 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +haïssable haïssable adj s 0.07 1.62 0.07 1.15 +haïssables haïssable adj p 0.07 1.62 0.01 0.47 +haïssaient haïr ver 55.42 35.68 0.17 0.74 ind:imp:3p; +haïssais haïr ver 55.42 35.68 1.2 2.09 ind:imp:1s;ind:imp:2s; +haïssait haïr ver 55.42 35.68 1.1 6.08 ind:imp:3s; +haïssant haïr ver 55.42 35.68 0.05 0.27 par:pre; +haïsse haïr ver 55.42 35.68 0.25 0.14 sub:pre:1s;sub:pre:3s; +haïssent haïr ver 55.42 35.68 2.44 1.08 ind:pre:3p; +haïsses haïr ver 55.42 35.68 0.21 0 sub:pre:2s; +haïssez haïr ver 55.42 35.68 1.19 0.27 imp:pre:2p;ind:pre:2p; +haïssiez haïr ver 55.42 35.68 0.4 0.27 ind:imp:2p; +haïssions haïr ver 55.42 35.68 0 0.14 ind:imp:1p; +haïssons haïr ver 55.42 35.68 0.29 0.2 imp:pre:1p;ind:pre:1p; +haït haïr ver 55.42 35.68 0.03 0 ind:pas:3s; +haïtien haïtien adj m s 0.7 0.34 0.35 0.07 +haïtienne haïtien adj f s 0.7 0.34 0.32 0 +haïtiens haïtien nom m p 0.58 1.01 0.53 0.14 +heaume heaume nom m s 0.55 1.01 0.51 0.88 +heaumes heaume nom m p 0.55 1.01 0.04 0.14 +hebdo hebdo nom m s 0.2 1.49 0.18 1.08 +hebdomadaire hebdomadaire adj s 1.64 4.19 1.3 3.51 +hebdomadairement hebdomadairement adv 0 0.2 0 0.2 +hebdomadaires hebdomadaire adj p 1.64 4.19 0.34 0.68 +hebdos hebdo nom m p 0.2 1.49 0.03 0.41 +hectare hectare nom m s 2.95 6.35 0.27 0.14 +hectares hectare nom m p 2.95 6.35 2.68 6.22 +hecto hecto nom m s 0 0.07 0 0.07 +hectolitres hectolitre nom m p 0.01 0.2 0.01 0.2 +hectomètres hectomètre nom m p 0 0.07 0 0.07 +hein hein ono 437.2 88.45 437.2 88.45 +hello hello ono 10.82 1.49 10.82 1.49 +hellène hellène adj s 0.02 0.34 0.02 0.2 +hellènes hellène nom p 0.01 0.68 0.01 0.47 +hellénique hellénique adj s 0.03 0.81 0.03 0.54 +helléniques hellénique adj f p 0.03 0.81 0 0.27 +helléniser helléniser ver 0 0.27 0 0.2 inf; +hellénisme hellénisme nom m s 0 0.34 0 0.34 +helléniste helléniste nom s 0.01 0.27 0.01 0.14 +hellénistes helléniste nom p 0.01 0.27 0 0.14 +hellénistique hellénistique adj s 0.02 0.14 0.02 0.07 +hellénistiques hellénistique adj m p 0.02 0.14 0 0.07 +hellénisé helléniser ver m s 0 0.27 0 0.07 par:pas; +helminthe helminthe nom m s 0 0.07 0 0.07 +helvelles helvelle nom f p 0 0.07 0 0.07 +helvète helvète adj m s 0 0.2 0 0.14 +helvètes helvète nom p 0 0.2 0 0.2 +helvétien helvétien adj m s 0 0.07 0 0.07 +helvétique helvétique adj f s 0 0.81 0 0.68 +helvétiques helvétique adj m p 0 0.81 0 0.14 +hem hem ono 0.1 0.2 0.1 0.2 +hemlock hemlock nom m s 0.23 0 0.23 0 +hennin hennin nom m s 0 0.34 0 0.34 +hennir hennir ver 0.07 1.55 0.03 0 inf; +hennirent hennir ver 0.07 1.55 0 0.14 ind:pas:3p; +hennissaient hennir ver 0.07 1.55 0 0.27 ind:imp:3p; +hennissait hennir ver 0.07 1.55 0 0.07 ind:imp:3s; +hennissant hennissant adj m s 0.01 0.34 0.01 0.27 +hennissantes hennissant adj f p 0.01 0.34 0 0.07 +hennissement hennissement nom m s 0.45 2.91 0.14 1.76 +hennissements hennissement nom m p 0.45 2.91 0.3 1.15 +hennissent hennir ver 0.07 1.55 0.02 0.07 ind:pre:3p; +hennit hennir ver 0.07 1.55 0.02 0.74 ind:pre:3s;ind:pas:3s; +henné henné nom m s 1.15 0.95 1.15 0.95 +henry henry nom m s 0.15 0 0.15 0 +hep hep ono 1.94 1.96 1.94 1.96 +heptagone heptagone nom m s 0 0.14 0 0.14 +heptaméron heptaméron nom m s 0 0.07 0 0.07 +heptane heptane nom m s 0.04 0 0.04 0 +herba herber ver 0.22 0.07 0.02 0.07 ind:pas:3s; +herbage herbage nom m s 0.1 1.35 0.04 0.74 +herbagers herbager nom m p 0 0.07 0 0.07 +herbages herbage nom m p 0.1 1.35 0.06 0.61 +herbe herbe nom f s 34.81 118.51 27.64 86.08 +herber herber ver 0.22 0.07 0.2 0 inf; +herbes herbe nom f p 34.81 118.51 7.17 32.43 +herbette herbette nom f s 0 0.14 0 0.07 +herbettes herbette nom f p 0 0.14 0 0.07 +herbeuse herbeux adj f s 0.02 1.01 0 0.2 +herbeuses herbeux adj f p 0.02 1.01 0.01 0.07 +herbeux herbeux adj m 0.02 1.01 0.01 0.74 +herbicide herbicide nom m s 0.32 0 0.32 0 +herbier herbier nom m s 0.16 1.28 0.16 0.81 +herbiers herbier nom m p 0.16 1.28 0 0.47 +herbivore herbivore nom m s 0.2 0.27 0.14 0.14 +herbivores herbivore nom m p 0.2 0.27 0.06 0.14 +herborisais herboriser ver 0 0.54 0 0.07 ind:imp:1s; +herborisait herboriser ver 0 0.54 0 0.14 ind:imp:3s; +herboriser herboriser ver 0 0.54 0 0.34 inf; +herboriste herboriste nom s 0.74 0.88 0.64 0.68 +herboristerie herboristerie nom f s 0.08 0.14 0.04 0.07 +herboristeries herboristerie nom f p 0.08 0.14 0.04 0.07 +herboristes herboriste nom p 0.74 0.88 0.1 0.2 +herbu herbu adj m s 0.01 1.82 0 0.81 +herbue herbu adj f s 0.01 1.82 0.01 0.54 +herbues herbu adj f p 0.01 1.82 0 0.41 +herbus herbu adj m p 0.01 1.82 0 0.07 +hercher hercher ver 0.03 0 0.03 0 inf; +hercule hercule nom m s 0.77 0.68 0.19 0.41 +hercules hercule nom m p 0.77 0.68 0.58 0.27 +herculéen herculéen adj m s 0.03 0.74 0.02 0.34 +herculéenne herculéen adj f s 0.03 0.74 0.01 0.07 +herculéennes herculéen adj f p 0.03 0.74 0 0.07 +herculéens herculéen adj m p 0.03 0.74 0 0.27 +hercynien hercynien adj m s 0 0.14 0 0.07 +hercyniennes hercynien adj f p 0 0.14 0 0.07 +hermaphrodisme hermaphrodisme nom m s 0 0.07 0 0.07 +hermaphrodite hermaphrodite adj s 0.37 0.2 0.11 0.14 +hermaphrodites hermaphrodite adj p 0.37 0.2 0.26 0.07 +hermaphroditisme hermaphroditisme nom m s 0 0.07 0 0.07 +hermine hermine nom f s 0.28 1.69 0.28 1.62 +hermines hermine nom f p 0.28 1.69 0 0.07 +herminette herminette nom f s 0.01 0.14 0.01 0.07 +herminettes herminette nom f p 0.01 0.14 0 0.07 +herminé herminé adj m s 0 0.07 0 0.07 +hermès hermès nom m 0.73 0 0.73 0 +herméneutique herméneutique adj f s 0.01 0 0.01 0 +hermétique hermétique adj s 0.98 3.11 0.82 1.96 +hermétiquement hermétiquement adv 0.61 1.55 0.61 1.55 +hermétiques hermétique adj p 0.98 3.11 0.16 1.15 +hermétisme hermétisme nom m s 0.14 0.2 0.14 0.2 +hermétistes hermétiste nom p 0 0.14 0 0.14 +herniaire herniaire adj s 0.06 0.41 0.06 0.27 +herniaires herniaire adj m p 0.06 0.41 0 0.14 +hernie hernie nom f s 2.91 1.01 2.85 0.61 +hernies hernie nom f p 2.91 1.01 0.06 0.41 +hernieux hernieux adj m p 0 0.07 0 0.07 +herpès herpès nom m 0.86 0.2 0.86 0.2 +herpétique herpétique adj f s 0.03 0 0.03 0 +herpétologie herpétologie nom f s 0.04 0 0.04 0 +herpétologiste herpétologiste nom s 0.01 0 0.01 0 +hersait herser ver 0 0.34 0 0.07 ind:imp:3s; +herse herse nom f s 0.27 2.57 0.26 1.69 +herser herser ver 0 0.34 0 0.14 inf; +herses herse nom f p 0.27 2.57 0.01 0.88 +hersé herser ver m s 0 0.34 0 0.07 par:pas; +hersés herser ver m p 0 0.34 0 0.07 par:pas; +hertz hertz nom m 0.09 0 0.09 0 +hertzienne hertzien adj f s 0.1 0.07 0.03 0 +hertziennes hertzien adj f p 0.1 0.07 0.06 0.07 +hertziens hertzien adj m p 0.1 0.07 0.01 0 +hessois hessois adj m 0 0.14 0 0.07 +hessoise hessois adj f s 0 0.14 0 0.07 +hetman hetman nom m s 0.34 0.07 0.34 0.07 +heu heu ono 35.17 6.69 35.17 6.69 +heur heur nom m s 0.28 1.15 0.05 0.41 +heure heure nom f s 709.79 924.05 415.4 439.86 +heures heure nom f p 709.79 924.05 294.39 484.19 +heureuse heureux adj f s 248.45 190 88.71 58.11 +heureusement heureusement adv 39.78 51.35 39.78 51.35 +heureuses heureux adj f p 248.45 190 3.94 6.49 +heureux heureux adj m 248.45 190 155.8 125.41 +heuristique heuristique adj f s 0.03 0 0.03 0 +heurs heur nom m p 0.28 1.15 0.01 0.2 +heurt heurt nom m s 0.49 6.15 0.29 2.84 +heurta heurter ver 9.79 39.05 0.17 5.14 ind:pas:3s; +heurtai heurter ver 9.79 39.05 0.01 0.68 ind:pas:1s; +heurtaient heurter ver 9.79 39.05 0.06 2.36 ind:imp:3p; +heurtais heurter ver 9.79 39.05 0.05 0.41 ind:imp:1s; +heurtait heurter ver 9.79 39.05 0.04 4.32 ind:imp:3s; +heurtant heurter ver 9.79 39.05 0.22 4.19 par:pre; +heurte heurter ver 9.79 39.05 1.15 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +heurtent heurter ver 9.79 39.05 0.29 1.96 ind:pre:3p; +heurter heurter ver 9.79 39.05 1.81 7.5 inf; +heurtera heurter ver 9.79 39.05 0.04 0.2 ind:fut:3s; +heurterai heurter ver 9.79 39.05 0 0.07 ind:fut:1s; +heurteraient heurter ver 9.79 39.05 0 0.07 cnd:pre:3p; +heurterait heurter ver 9.79 39.05 0.04 0.2 cnd:pre:3s; +heurterions heurter ver 9.79 39.05 0 0.07 cnd:pre:1p; +heurtez heurter ver 9.79 39.05 0.07 0.14 imp:pre:2p;ind:pre:2p; +heurtions heurter ver 9.79 39.05 0 0.41 ind:imp:1p; +heurtoir heurtoir nom m s 0.03 0.61 0.03 0.47 +heurtoirs heurtoir nom m p 0.03 0.61 0 0.14 +heurtons heurter ver 9.79 39.05 0 0.14 ind:pre:1p; +heurts heurt nom m p 0.49 6.15 0.2 3.31 +heurtât heurter ver 9.79 39.05 0 0.14 sub:imp:3s; +heurtèrent heurter ver 9.79 39.05 0.01 0.95 ind:pas:3p; +heurté heurter ver m s 9.79 39.05 4.92 3.85 par:pas; +heurtée heurter ver f s 9.79 39.05 0.61 0.68 par:pas; +heurtées heurter ver f p 9.79 39.05 0.05 0.07 par:pas; +heurtés heurter ver m p 9.79 39.05 0.22 0.88 par:pas; +hexagonal hexagonal adj m s 0.03 1.96 0.01 0.61 +hexagonale hexagonal adj f s 0.03 1.96 0.01 0.68 +hexagonales hexagonal adj f p 0.03 1.96 0.01 0.47 +hexagonaux hexagonal adj m p 0.03 1.96 0 0.2 +hexagone hexagone nom m s 0.23 0.61 0.23 0.47 +hexagones hexagone nom m p 0.23 0.61 0 0.14 +hexamètres hexamètre nom m p 0.02 0.14 0.02 0.14 +hi hi ono 3.81 5.41 3.81 5.41 +hi_fi hi_fi nom f s 0.87 0.81 0.87 0.81 +hi_han hi_han ono 0.2 0.14 0.2 0.14 +hiatale hiatal adj f s 0.29 0 0.29 0 +hiatus hiatus nom m 0.04 1.01 0.04 1.01 +hibernaient hiberner ver 0.65 0.34 0.02 0 ind:imp:3p; +hibernait hiberner ver 0.65 0.34 0.03 0.07 ind:imp:3s; +hibernation hibernation nom f s 0.82 0.27 0.82 0.27 +hiberne hiberner ver 0.65 0.34 0.16 0.07 ind:pre:1s;ind:pre:3s; +hibernent hiberner ver 0.65 0.34 0.05 0 ind:pre:3p; +hiberner hiberner ver 0.65 0.34 0.21 0.07 inf; +hiberné hiberner ver m s 0.65 0.34 0.17 0.14 par:pas; +hibiscus hibiscus nom m 0.13 1.08 0.13 1.08 +hibou hibou nom m s 5.01 2.97 4.08 2.36 +hiboux hibou nom m p 5.01 2.97 0.94 0.61 +hic hic nom_sup m 2.21 2.91 2.21 2.91 +hic_et_nunc hic_et_nunc adv 0 0.41 0 0.41 +hickory hickory nom m s 0.14 0.07 0.14 0.07 +hidalgo hidalgo nom m s 0.08 0.61 0.06 0.27 +hidalgos hidalgo nom m p 0.08 0.61 0.02 0.34 +hideur hideur nom f s 0 0.81 0 0.61 +hideurs hideur nom f p 0 0.81 0 0.2 +hideuse hideux adj f s 3.31 9.26 0.99 2.7 +hideusement hideusement adv 0.03 0.34 0.03 0.34 +hideuses hideux adj f p 3.31 9.26 0.39 1.28 +hideux hideux adj m 3.31 9.26 1.93 5.27 +hier hier adv_sup 223.77 92.64 223.77 92.64 +high_life high_life nom m s 0.04 0.41 0.04 0.41 +high_tech high_tech adj s 0.32 0.14 0.04 0.07 +high_life high_life nom m s 0.27 0.14 0.27 0.14 +high_tech high_tech adj 0.32 0.14 0.29 0.07 +highlander highlander nom m s 0.3 0.14 0.14 0 +highlanders highlander nom m p 0.3 0.14 0.16 0.14 +higoumène higoumène nom m s 0 0.07 0 0.07 +hilaire hilaire adj f s 0.02 0 0.02 0 +hilarant hilarant adj m s 2.37 0.47 1.94 0.2 +hilarante hilarant adj f s 2.37 0.47 0.25 0 +hilarantes hilarant adj f p 2.37 0.47 0.09 0.14 +hilarants hilarant adj m p 2.37 0.47 0.1 0.14 +hilare hilare adj s 0.14 8.72 0.14 6.15 +hilares hilare adj p 0.14 8.72 0 2.57 +hilarité hilarité nom f s 0.32 4.12 0.32 4.05 +hilarités hilarité nom f p 0.32 4.12 0 0.07 +hile hile nom m s 0.24 0 0.24 0 +hiloire hiloire nom f s 0 0.07 0 0.07 +hilotes hilote nom m p 0 0.07 0 0.07 +himalaya himalaya nom m s 0.01 0.14 0.01 0.14 +himalayenne himalayen adj f s 0.2 0.07 0.2 0 +himalayens himalayen adj m p 0.2 0.07 0 0.07 +hindi hindi nom m s 0.14 0.07 0.14 0.07 +hindou hindou nom m s 1.79 1.22 0.93 0.47 +hindoue hindou adj f s 1.27 2.03 0.47 0.68 +hindoues hindou adj f p 1.27 2.03 0.17 0.27 +hindouisme hindouisme nom m s 0.28 0 0.28 0 +hindous hindou nom m p 1.79 1.22 0.73 0.74 +hindoustani hindoustani nom m s 0.03 0 0.03 0 +hip hip ono 4.43 1.22 4.43 1.22 +hip_hop hip_hop nom m s 1.74 0 1.74 0 +hippie hippie nom s 3.68 0.27 1.33 0.14 +hippies hippie nom p 3.68 0.27 2.36 0.14 +hippique hippique adj s 0.59 2.91 0.49 1.42 +hippiques hippique adj p 0.59 2.91 0.11 1.49 +hippisme hippisme nom m s 0.02 0 0.02 0 +hippo hippo nom m s 0.41 45.61 0.41 45.61 +hippocampe hippocampe nom m s 0.63 0.41 0.58 0.27 +hippocampes hippocampe nom m p 0.63 0.41 0.05 0.14 +hippocratique hippocratique adj m s 0 0.14 0 0.14 +hippodrome hippodrome nom m s 0.53 1.35 0.52 0.81 +hippodromes hippodrome nom m p 0.53 1.35 0.01 0.54 +hippogriffe hippogriffe nom m s 0.19 0.14 0.19 0.14 +hippomobile hippomobile adj m s 0.1 0 0.1 0 +hippophagique hippophagique adj s 0 0.14 0 0.07 +hippophagiques hippophagique adj f p 0 0.14 0 0.07 +hippopotame hippopotame nom m s 2.52 1.01 1.45 0.54 +hippopotames hippopotame nom m p 2.52 1.01 1.07 0.47 +hippopotamesque hippopotamesque adj f s 0 0.07 0 0.07 +hippy hippy nom m s 0.25 0.14 0.25 0.14 +hirondelle hirondeau nom f s 1.87 3.24 1.87 3.24 +hirondelles hirondelle nom f p 0.69 6.42 0.69 6.42 +hirsute hirsute adj s 1.53 5.61 1.44 3.78 +hirsutes hirsute adj p 1.53 5.61 0.09 1.82 +hirsutisme hirsutisme nom m s 0.02 0 0.02 0 +hirudine hirudine nom f s 0.01 0 0.01 0 +hispanique hispanique adj s 0.5 0.27 0.47 0.14 +hispaniques hispanique nom p 0.27 0 0.1 0 +hispanisante hispanisant adj f s 0 0.14 0 0.07 +hispanisants hispanisant adj m p 0 0.14 0 0.07 +hispano hispano adv 0.06 0.54 0.06 0.54 +hispano_américain hispano_américain nom m s 0.01 0 0.01 0 +hispano_américain hispano_américain adj f s 0.03 0.27 0.03 0.2 +hispano_cubain hispano_cubain adj m s 0 0.07 0 0.07 +hispano_mauresque hispano_mauresque adj m s 0 0.07 0 0.07 +hispanophone hispanophone nom s 0.02 0 0.02 0 +hissa hisser ver 8.09 22.36 0.13 2.3 ind:pas:3s; +hissai hisser ver 8.09 22.36 0.14 0.27 ind:pas:1s; +hissaient hisser ver 8.09 22.36 0.02 0.47 ind:imp:3p; +hissais hisser ver 8.09 22.36 0.02 0.14 ind:imp:1s; +hissait hisser ver 8.09 22.36 0.16 2.09 ind:imp:3s; +hissant hisser ver 8.09 22.36 0.01 1.62 par:pre; +hisse hisse ono 0.88 0.07 0.88 0.07 +hissent hisser ver 8.09 22.36 0.12 0.34 ind:pre:3p; +hisser hisser ver 8.09 22.36 1.37 6.22 inf; +hissera hisser ver 8.09 22.36 0.13 0.14 ind:fut:3s; +hisserai hisser ver 8.09 22.36 0 0.14 ind:fut:1s; +hissez hisser ver 8.09 22.36 1.76 0 imp:pre:2p;ind:pre:2p; +hissons hisser ver 8.09 22.36 0.04 0.2 imp:pre:1p;ind:pre:1p; +hissâmes hisser ver 8.09 22.36 0.01 0.14 ind:pas:1p; +hissèrent hisser ver 8.09 22.36 0 0.81 ind:pas:3p; +hissé hisser ver m s 8.09 22.36 1.21 2.64 par:pas; +hissée hisser ver f s 8.09 22.36 0.05 1.28 par:pas; +hissées hisser ver f p 8.09 22.36 0.1 0.14 par:pas; +hissés hisser ver m p 8.09 22.36 0.07 0.81 par:pas; +histamine histamine nom f s 0.15 0 0.15 0 +histaminique histaminique adj s 0.03 0 0.03 0 +hister hister nom m s 0.02 0 0.02 0 +histocompatibilité histocompatibilité nom f s 0.14 0 0.14 0 +histocompatibles histocompatible adj p 0 0.07 0 0.07 +histoire histoire nom f s 359.92 359.53 295.32 292.23 +histoires histoire nom f p 359.92 359.53 64.6 67.3 +histologie histologie nom f s 0.11 0 0.11 0 +histologique histologique adj s 0.06 0.07 0.06 0.07 +histopathologie histopathologie nom f s 0.03 0 0.03 0 +histoplasmose histoplasmose nom f s 0.01 0 0.01 0 +historia historier ver 0 0.34 0 0.2 ind:pas:3s; +historicité historicité nom f s 0 0.14 0 0.14 +historico_culturel historico_culturel adj f s 0 0.07 0 0.07 +historien historien nom m s 2.32 6.28 1.49 3.11 +historienne historien nom f s 2.32 6.28 0.21 0.34 +historiens historien nom m p 2.32 6.28 0.63 2.84 +historiette historiette nom f s 0 0.34 0 0.14 +historiettes historiette nom f p 0 0.34 0 0.2 +historiographe historiographe nom s 0.01 0 0.01 0 +historiographie historiographie nom f s 0.11 0 0.11 0 +historique historique adj s 11.31 18.24 8.83 11.69 +historiquement historiquement adv 0.99 0.47 0.99 0.47 +historiques historique adj p 11.31 18.24 2.48 6.55 +historiée historier ver f s 0 0.34 0 0.07 par:pas; +historiés historié adj m p 0 0.2 0 0.14 +histrion histrion nom m s 0.34 0.41 0.23 0.27 +histrions histrion nom m p 0.34 0.41 0.1 0.14 +hit hit nom m s 1.59 0.47 1.37 0.41 +hit_parade hit_parade nom m s 0.73 0.68 0.69 0.68 +hit_parade hit_parade nom m p 0.73 0.68 0.04 0 +hitchcockien hitchcockien adj m s 0.03 0.14 0.03 0.14 +hitlérien hitlérien adj m s 0.68 4.59 0.26 1.08 +hitlérienne hitlérien adj f s 0.68 4.59 0.14 2.16 +hitlériennes hitlérien adj f p 0.68 4.59 0.29 0.68 +hitlériens hitlérien nom m p 0.1 1.15 0 0.88 +hitlérisme hitlérisme nom m s 0.01 0.68 0.01 0.68 +hits hit nom m p 1.59 0.47 0.22 0.07 +hittite hittite adj m s 0.04 0.41 0.04 0.2 +hittites hittite adj p 0.04 0.41 0 0.2 +hiv hiv adj s 0 1.62 0 1.62 +hiver hiver nom m s 38.96 99.53 37.44 96.28 +hivernage hivernage nom m s 0 0.95 0 0.95 +hivernaient hiverner ver 0.02 0.81 0 0.07 ind:imp:3p; +hivernait hiverner ver 0.02 0.81 0 0.14 ind:imp:3s; +hivernal hivernal adj m s 0.17 1.82 0.08 0.74 +hivernale hivernal adj f s 0.17 1.82 0.04 0.88 +hivernales hivernal adj f p 0.17 1.82 0.05 0.14 +hivernant hivernant adj m s 0 0.2 0 0.07 +hivernante hivernant adj f s 0 0.2 0 0.07 +hivernantes hivernant adj f p 0 0.2 0 0.07 +hivernants hivernant nom m p 0 0.07 0 0.07 +hivernaux hivernal adj m p 0.17 1.82 0 0.07 +hiverne hiverner ver 0.02 0.81 0 0.14 ind:pre:1s;ind:pre:3s; +hiverner hiverner ver 0.02 0.81 0.02 0.34 inf; +hivernons hiverner ver 0.02 0.81 0 0.07 ind:pre:1p; +hiverné hiverner ver m s 0.02 0.81 0 0.07 par:pas; +hivers hiver nom m p 38.96 99.53 1.52 3.24 +hiérarchie hiérarchie nom f s 2.59 9.86 2.56 8.65 +hiérarchies hiérarchie nom f p 2.59 9.86 0.03 1.22 +hiérarchique hiérarchique adj s 0.59 1.49 0.57 1.28 +hiérarchiquement hiérarchiquement adv 0.01 0.2 0.01 0.2 +hiérarchiques hiérarchique adj p 0.59 1.49 0.02 0.2 +hiérarchisait hiérarchiser ver 0.01 0.14 0 0.07 ind:imp:3s; +hiérarchisation hiérarchisation nom f s 0 0.07 0 0.07 +hiérarchise hiérarchiser ver 0.01 0.14 0.01 0 ind:pre:3s; +hiérarchisé hiérarchisé adj m s 0 0.34 0 0.07 +hiérarchisée hiérarchisé adj f s 0 0.34 0 0.2 +hiérarchisés hiérarchisé adj m p 0 0.34 0 0.07 +hiératique hiératique adj s 0.02 1.69 0.01 1.22 +hiératiquement hiératiquement adv 0 0.07 0 0.07 +hiératiques hiératique adj p 0.02 1.69 0.01 0.47 +hiératisme hiératisme nom m s 0 0.54 0 0.54 +hiéroglyphe hiéroglyphe nom m s 1.25 1.49 0.2 0.2 +hiéroglyphes hiéroglyphe nom m p 1.25 1.49 1.05 1.28 +hiéroglyphique hiéroglyphique adj s 0.03 0 0.01 0 +hiéroglyphiques hiéroglyphique adj m p 0.03 0 0.02 0 +hiéronymites hiéronymite nom m p 0 0.07 0 0.07 +hiérophante hiérophante nom m s 0 0.2 0 0.2 +ho ho ono 20.06 4.73 20.06 4.73 +hobbies hobby nom m p 3.11 0.2 0.61 0.2 +hobby hobby nom m s 3.11 0.2 2.5 0 +hobereau hobereau nom m s 0.03 1.82 0.02 1.01 +hobereaux hobereau nom m p 0.03 1.82 0.01 0.81 +hocha hocher ver 1.8 41.15 0.16 14.12 ind:pas:3s; +hochai hocher ver 1.8 41.15 0 0.41 ind:pas:1s; +hochaient hocher ver 1.8 41.15 0 1.15 ind:imp:3p; +hochais hocher ver 1.8 41.15 0 0.27 ind:imp:1s; +hochait hocher ver 1.8 41.15 0.02 5.27 ind:imp:3s; +hochant hocher ver 1.8 41.15 0.27 8.38 par:pre; +hoche hocher ver 1.8 41.15 0.41 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hochement hochement nom m s 0.1 5.68 0.08 3.78 +hochements hochement nom m p 0.1 5.68 0.02 1.89 +hochent hocher ver 1.8 41.15 0.01 0.47 ind:pre:3p; +hochepot hochepot nom m s 0 0.14 0 0.14 +hocher hocher ver 1.8 41.15 0.18 1.42 inf; +hocheraient hocher ver 1.8 41.15 0 0.07 cnd:pre:3p; +hocheront hocher ver 1.8 41.15 0 0.07 ind:fut:3p; +hoches hocher ver 1.8 41.15 0.34 0 ind:pre:2s; +hochet hochet nom m s 0.88 2.23 0.43 1.01 +hochets hochet nom m p 0.88 2.23 0.45 1.22 +hocheurs hocheur nom m p 0 0.07 0 0.07 +hochez hocher ver 1.8 41.15 0.14 0.14 imp:pre:2p;ind:pre:2p; +hochions hocher ver 1.8 41.15 0 0.14 ind:imp:1p; +hochèrent hocher ver 1.8 41.15 0 0.68 ind:pas:3p; +hoché hocher ver m s 1.8 41.15 0.27 2.23 par:pas; +hockey hockey nom m s 6.38 0.14 6.38 0.14 +hockeyeur hockeyeur nom m s 0.5 0.14 0.43 0.07 +hockeyeurs hockeyeur nom m p 0.5 0.14 0.07 0.07 +hodgkinien hodgkinien adj m s 0.01 0 0.01 0 +hodja hodja nom m s 0.19 0 0.19 0 +hoirie hoirie nom f s 0 0.34 0 0.27 +hoiries hoirie nom f p 0 0.34 0 0.07 +hold_up hold_up nom m 7.78 3.38 0.2 0 +hold_up hold_up nom m 7.78 3.38 7.59 3.38 +holding holding nom s 0.73 0.27 0.67 0.14 +holdings holding nom p 0.73 0.27 0.06 0.14 +holistique holistique adj s 0.15 0 0.14 0 +holistiques holistique adj m p 0.15 0 0.01 0 +hollandais hollandais nom m p 2.93 3.11 2.9 2.97 +hollandaise hollandais adj f s 3.87 5.47 1.01 2.09 +hollandaises hollandais adj f p 3.87 5.47 0.28 0.34 +hollande hollande nom f s 0.02 0.07 0.02 0.07 +hollywoodien hollywoodien adj m s 0 1.28 0 0.34 +hollywoodienne hollywoodien adj f s 0 1.28 0 0.34 +hollywoodiennes hollywoodien adj f p 0 1.28 0 0.07 +hollywoodiens hollywoodien adj m p 0 1.28 0 0.54 +holocauste holocauste nom m s 1.61 1.15 1.61 0.95 +holocaustes holocauste nom m p 1.61 1.15 0 0.2 +hologramme hologramme nom m s 1.93 0 1.45 0 +hologrammes hologramme nom m p 1.93 0 0.48 0 +holographe holographe adj s 0.04 0 0.02 0 +holographes holographe adj p 0.04 0 0.02 0 +holographie holographie nom f s 0.06 0.07 0.06 0.07 +holographique holographique adj s 0.56 0 0.47 0 +holographiques holographique adj p 0.56 0 0.09 0 +holothuries holothurie nom f p 0 0.07 0 0.07 +holoèdres holoèdre adj f p 0 0.07 0 0.07 +holster holster nom m s 0.07 0.27 0.07 0.27 +holà holà ono 4.87 1.62 4.87 1.62 +hom hom ono 0.54 0 0.54 0 +homard homard nom m s 4.96 5.34 3.79 3.51 +homardiers homardier nom m p 0.01 0 0.01 0 +homards homard nom m p 4.96 5.34 1.18 1.82 +hombre hombre nom m s 1.6 0.61 1.6 0.61 +home home nom m s 4 2.16 3.75 1.96 +home_trainer home_trainer nom m s 0.01 0 0.01 0 +homeland homeland nom m s 0.14 0 0.14 0 +homes home nom m p 4 2.16 0.24 0.2 +homicide homicide nom m s 12.07 0.47 10.3 0.47 +homicides homicide nom m p 12.07 0.47 1.77 0 +hominien hominien nom m s 0 0.14 0 0.07 +hominiens hominien nom m p 0 0.14 0 0.07 +hominisation hominisation nom f s 0 0.07 0 0.07 +hommage hommage nom m s 16.45 16.69 11.11 13.31 +hommages hommage nom m p 16.45 16.69 5.34 3.38 +hommasse hommasse adj s 0.05 0.61 0.05 0.47 +hommasses hommasse adj f p 0.05 0.61 0 0.14 +homme homme nom m s 1123.55 1398.85 781.11 852.23 +homme_chien homme_chien nom m s 0.09 0.14 0.09 0.14 +homme_clé homme_clé nom m s 0.04 0 0.04 0 +homme_femme homme_femme nom m s 0.36 0.07 0.36 0.07 +homme_grenouille homme_grenouille nom m s 0.35 0.2 0.2 0.07 +homme_loup homme_loup nom m s 0.05 0 0.05 0 +homme_machine homme_machine nom m s 0.04 0 0.04 0 +homme_oiseau homme_oiseau nom m s 0.05 0 0.05 0 +homme_orchestre homme_orchestre nom m s 0.03 0.07 0.03 0.07 +homme_poisson homme_poisson nom m s 0.06 0 0.06 0 +homme_robot homme_robot nom m s 0.07 0 0.07 0 +homme_sandwich homme_sandwich nom m s 0 0.41 0 0.41 +homme_serpent homme_serpent nom m s 0.02 0.27 0.02 0.27 +hommes homme nom m p 1123.55 1398.85 342.44 546.62 +homme_grenouille homme_grenouille nom m p 0.35 0.2 0.16 0.14 +homo homo adj s 8.15 0.41 7.18 0.41 +homo_erectus homo_erectus nom m 0.04 0 0.04 0 +homo_habilis homo_habilis nom m 0 0.07 0 0.07 +homogène homogène adj s 0.44 2.77 0.4 2.43 +homogènes homogène adj p 0.44 2.77 0.04 0.34 +homogénéisateur homogénéisateur nom m s 0.14 0 0.14 0 +homogénéisation homogénéisation nom f s 0.03 0.07 0.03 0.07 +homogénéisé homogénéisé adj m s 0.05 0.07 0.02 0 +homogénéisée homogénéisé adj f s 0.05 0.07 0.03 0.07 +homogénéité homogénéité nom f s 0.04 0.34 0.04 0.34 +homologable homologable adj s 0 0.07 0 0.07 +homologation homologation nom f s 0.1 0.2 0.1 0.2 +homologue homologue nom s 0.3 0.27 0.2 0.07 +homologuer homologuer ver 0.14 0.41 0.12 0.2 inf; +homologues homologue nom p 0.3 0.27 0.11 0.2 +homologué homologué adj m s 0.01 0.27 0.01 0.14 +homologuée homologuer ver f s 0.14 0.41 0.01 0 par:pas; +homologués homologuer ver m p 0.14 0.41 0.01 0.07 par:pas; +homoncule homoncule nom m s 0.02 0.07 0.02 0.07 +homonyme homonyme nom s 0.25 0.47 0.21 0.47 +homonymes homonyme nom p 0.25 0.47 0.04 0 +homonymie homonymie nom f s 0 0.27 0 0.27 +homonymique homonymique adj s 0 0.07 0 0.07 +homophile homophile nom m s 0.01 0.14 0.01 0.14 +homophilie homophilie nom f s 0 0.07 0 0.07 +homophobe homophobe adj s 0.73 0.07 0.57 0.07 +homophobes homophobe adj f p 0.73 0.07 0.16 0 +homophone homophone nom m s 0.01 0 0.01 0 +homophonie homophonie nom f s 0 0.07 0 0.07 +homos homo nom p 4.51 0.95 2.31 0.2 +homosexualité homosexualité nom f s 4.81 2.57 4.81 2.57 +homosexuel homosexuel adj m s 5.81 3.11 3.77 1.76 +homosexuelle homosexuel adj f s 5.81 3.11 0.63 0.34 +homosexuelles homosexuel adj f p 5.81 3.11 0.66 0.34 +homosexuels homosexuel nom m p 3.62 4.32 2.51 2.43 +homozygote homozygote adj s 0.01 0 0.01 0 +homuncule homuncule nom m s 0.14 0 0.14 0 +homélie homélie nom f s 0.33 0.81 0.31 0.47 +homélies homélie nom f p 0.33 0.81 0.02 0.34 +homéopathe homéopathe adj m s 0.15 0 0.15 0 +homéopathie homéopathie nom f s 0.58 0.14 0.58 0.14 +homéopathique homéopathique adj s 0.17 0.14 0.17 0.07 +homéopathiques homéopathique adj f p 0.17 0.14 0 0.07 +homéostatique homéostatique adj s 0.01 0 0.01 0 +homéothermie homéothermie nom f s 0.01 0 0.01 0 +homérique homérique adj s 0.05 0.95 0.04 0.54 +homériques homérique adj f p 0.05 0.95 0.01 0.41 +hon hon ono 0.57 1.01 0.57 1.01 +hondurien hondurien adj m s 0.01 0 0.01 0 +hondurien hondurien nom m s 0.01 0 0.01 0 +hong_kong hong_kong nom s 0.03 0 0.03 0 +hongkongais hongkongais nom m 0.14 0 0.14 0 +hongre hongre adj m s 0.18 0.2 0.17 0.14 +hongres hongre adj m p 0.18 0.2 0.01 0.07 +hongrois hongrois nom m 1.73 2.36 1.73 2.36 +hongroise hongroise nom f s 1.08 0.47 0.97 0.47 +hongroises hongroise nom f p 1.08 0.47 0.1 0 +honneur honneur nom m s 130.69 97.36 126.78 87.64 +honneurs honneur nom m p 130.69 97.36 3.92 9.73 +honni honni adj m s 0.56 0.61 0.55 0.41 +honnie honnir ver f s 0.19 1.01 0.03 0.2 par:pas; +honnir honnir ver 0.19 1.01 0 0.07 inf; +honnis honnir ver m p 0.19 1.01 0.01 0.14 ind:pre:2s;par:pas; +honnissait honnir ver 0.19 1.01 0 0.2 ind:imp:3s; +honnissant honnir ver 0.19 1.01 0 0.07 par:pre; +honnissent honnir ver 0.19 1.01 0 0.07 ind:pre:3p; +honnit honnir ver 0.19 1.01 0.01 0.07 ind:pre:3s; +honnête honnête adj s 53.89 28.24 43.6 20.2 +honnêtement honnêtement adv 12.06 4.73 12.06 4.73 +honnêtes honnête adj p 53.89 28.24 10.29 8.04 +honnêteté honnêteté nom f s 7.2 6.42 7.2 6.42 +honora honorer ver 22.65 13.24 0.03 0.27 ind:pas:3s; +honorabilité honorabilité nom f s 0.2 1.15 0.2 1.15 +honorable honorable adj s 11.44 10.81 9.31 8.24 +honorablement honorablement adv 0.41 1.55 0.41 1.55 +honorables honorable adj p 11.44 10.81 2.13 2.57 +honorai honorer ver 22.65 13.24 0 0.07 ind:pas:1s; +honoraient honorer ver 22.65 13.24 0.01 0.47 ind:imp:3p; +honoraire honoraire adj s 0.9 0.81 0.77 0.68 +honoraires honoraire nom m p 3.06 1.49 3.06 1.49 +honorais honorer ver 22.65 13.24 0.01 0.07 ind:imp:1s; +honorait honorer ver 22.65 13.24 0.08 1.49 ind:imp:3s; +honorant honorer ver 22.65 13.24 0.03 0.2 par:pre; +honore honorer ver 22.65 13.24 4.41 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +honorent honorer ver 22.65 13.24 0.8 0.54 ind:pre:3p; +honorer honorer ver 22.65 13.24 6.13 5.07 inf; +honorera honorer ver 22.65 13.24 0.14 0 ind:fut:3s; +honorerai honorer ver 22.65 13.24 0.34 0 ind:fut:1s; +honorerait honorer ver 22.65 13.24 0.05 0.14 cnd:pre:3s; +honoreras honorer ver 22.65 13.24 0.23 0 ind:fut:2s; +honorerez honorer ver 22.65 13.24 0.23 0 ind:fut:2p; +honorerons honorer ver 22.65 13.24 0.15 0 ind:fut:1p; +honoreront honorer ver 22.65 13.24 0.03 0 ind:fut:3p; +honores honorer ver 22.65 13.24 0.65 0 ind:pre:2s; +honorez honorer ver 22.65 13.24 1.54 0.07 imp:pre:2p;ind:pre:2p; +honoriez honorer ver 22.65 13.24 0.02 0.07 ind:imp:2p; +honorifique honorifique adj s 0.65 0.68 0.61 0.54 +honorifiques honorifique adj p 0.65 0.68 0.03 0.14 +honoris_causa honoris_causa adv 0.16 0.27 0.16 0.27 +honorons honorer ver 22.65 13.24 0.52 0 imp:pre:1p;ind:pre:1p; +honorât honorer ver 22.65 13.24 0 0.07 sub:imp:3s; +honorèrent honorer ver 22.65 13.24 0 0.07 ind:pas:3p; +honoré honorer ver m s 22.65 13.24 5.09 1.89 par:pas; +honorée honorer ver f s 22.65 13.24 0.92 0.54 par:pas; +honorées honorer ver f p 22.65 13.24 0.13 0.27 par:pas; +honorés honorer ver m p 22.65 13.24 1.1 0.34 par:pas; +honte honte nom f s 103.4 83.45 103.26 82.64 +hontes honte nom f p 103.4 83.45 0.14 0.81 +honteuse honteux adj f s 9.52 22.3 1.91 6.89 +honteusement honteusement adv 0.58 2.43 0.58 2.43 +honteuses honteux adj f p 9.52 22.3 0.45 2.36 +honteux honteux adj m 9.52 22.3 7.17 13.04 +hooligan hooligan nom m s 0.72 0.14 0.1 0.07 +hooligans hooligan nom m p 0.72 0.14 0.62 0.07 +hop hop ono 26.52 14.19 26.52 14.19 +hopak hopak nom m s 0.01 0 0.01 0 +hopi hopi adj f s 0.01 0.14 0.01 0.07 +hopis hopi adj m p 0.01 0.14 0 0.07 +hoplite hoplite nom m s 0 0.07 0 0.07 +hoquet hoquet nom m s 1.73 7.91 1.57 4.32 +hoqueta hoqueter ver 0.03 5.54 0 1.55 ind:pas:3s; +hoquetai hoqueter ver 0.03 5.54 0 0.14 ind:pas:1s; +hoquetais hoqueter ver 0.03 5.54 0 0.14 ind:imp:1s; +hoquetait hoqueter ver 0.03 5.54 0 1.15 ind:imp:3s; +hoquetant hoqueter ver 0.03 5.54 0.01 1.35 par:pre; +hoqueter hoqueter ver 0.03 5.54 0.01 0.41 inf; +hoquetons hoqueter ver 0.03 5.54 0 0.07 ind:pre:1p; +hoquets hoquet nom m p 1.73 7.91 0.16 3.58 +hoquette hoqueter ver 0.03 5.54 0.01 0.47 ind:pre:3s;sub:pre:3s; +hoqueté hoqueter ver m s 0.03 5.54 0 0.27 par:pas; +horaire horaire nom m s 8.94 7.91 2.64 3.58 +horaires horaire nom m p 8.94 7.91 6.3 4.32 +horde horde nom f s 2.95 7.03 2.33 3.78 +hordes horde nom f p 2.95 7.03 0.62 3.24 +horion horion nom m s 0 0.88 0 0.14 +horions horion nom m p 0 0.88 0 0.74 +horizon horizon nom m s 9.04 66.15 7.8 61.08 +horizons horizon nom m p 9.04 66.15 1.24 5.07 +horizontal horizontal adj m s 1.47 10.47 0.88 2.84 +horizontale horizontale nom f s 1.37 3.04 0.87 2.77 +horizontalement horizontalement adv 0.15 1.96 0.15 1.96 +horizontales horizontale nom f p 1.37 3.04 0.5 0.27 +horizontalité horizontalité nom f s 0 0.2 0 0.2 +horizontaux horizontal adj m p 1.47 10.47 0.03 1.69 +horloge horloge nom f s 10.48 16.49 9.37 13.99 +horloger horloger nom m s 0.39 5.41 0.34 2.23 +horlogerie horlogerie nom f s 0.29 1.08 0.29 1.08 +horlogers horloger nom m p 0.39 5.41 0.05 0.54 +horloges horloge nom f p 10.48 16.49 1.11 2.5 +horlogère horloger nom f s 0.39 5.41 0 2.64 +hormis hormis pre 3.23 5.74 3.23 5.74 +hormonal hormonal adj m s 0.77 0.34 0.51 0.14 +hormonale hormonal adj f s 0.77 0.34 0.19 0.2 +hormonales hormonal adj f p 0.77 0.34 0.04 0 +hormonaux hormonal adj m p 0.77 0.34 0.03 0 +hormone hormone nom f s 4.69 0.68 0.57 0.2 +hormones hormone nom f p 4.69 0.68 4.12 0.47 +hormonés hormoner ver m p 0 0.07 0 0.07 par:pas; +hornblende hornblende nom f s 0.01 0 0.01 0 +horoscope horoscope nom m s 2.9 1.96 2.47 1.28 +horoscopes horoscope nom m p 2.9 1.96 0.43 0.68 +horreur horreur nom f s 46.19 69.46 39.79 61.35 +horreurs horreur nom f p 46.19 69.46 6.4 8.11 +horrible horrible adj s 67.22 25.47 57.16 20.74 +horriblement horriblement adv 3.23 4.53 3.23 4.53 +horribles horrible adj p 67.22 25.47 10.07 4.73 +horrifia horrifier ver 1.37 3.04 0 0.14 ind:pas:3s; +horrifiaient horrifier ver 1.37 3.04 0 0.07 ind:imp:3p; +horrifiait horrifier ver 1.37 3.04 0.02 0.2 ind:imp:3s; +horrifiant horrifiant adj m s 0.24 1.49 0.19 1.08 +horrifiante horrifiant adj f s 0.24 1.49 0.04 0.07 +horrifiants horrifiant adj m p 0.24 1.49 0.01 0.34 +horrifie horrifier ver 1.37 3.04 0.14 0.14 ind:pre:1s;ind:pre:3s; +horrifier horrifier ver 1.37 3.04 0.01 0.27 inf; +horrifique horrifique adj f s 0.04 0.14 0.04 0.14 +horrifièrent horrifier ver 1.37 3.04 0 0.07 ind:pas:3p; +horrifié horrifier ver m s 1.37 3.04 0.61 1.35 par:pas; +horrifiée horrifier ver f s 1.37 3.04 0.42 0.54 par:pas; +horrifiées horrifier ver f p 1.37 3.04 0.02 0.07 par:pas; +horrifiés horrifié adj m p 0.28 2.16 0.21 0.34 +horripilaient horripiler ver 0.24 1.49 0 0.07 ind:imp:3p; +horripilais horripiler ver 0.24 1.49 0 0.07 ind:imp:1s; +horripilait horripiler ver 0.24 1.49 0 0.34 ind:imp:3s; +horripilant horripilant adj m s 0.28 0.68 0.19 0.2 +horripilante horripilant adj f s 0.28 0.68 0.07 0.2 +horripilantes horripilant adj f p 0.28 0.68 0.03 0.07 +horripilants horripilant adj m p 0.28 0.68 0 0.2 +horripilation horripilation nom f s 0.01 0.2 0.01 0.14 +horripilations horripilation nom f p 0.01 0.2 0 0.07 +horripile horripiler ver 0.24 1.49 0.21 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +horripilent horripiler ver 0.24 1.49 0.01 0.07 ind:pre:3p; +horripiler horripiler ver 0.24 1.49 0.01 0.07 inf; +horripilé horripiler ver m s 0.24 1.49 0 0.14 par:pas; +horripilée horripiler ver f s 0.24 1.49 0.01 0.2 par:pas; +horripilés horripiler ver m p 0.24 1.49 0 0.07 par:pas; +hors hors pre 71.94 92.43 71.94 92.43 +hors_bord hors_bord nom m p 0.45 0.61 0.45 0.61 +hors_cote hors_cote adj 0.01 0 0.01 0 +hors_d_oeuvre hors_d_oeuvre nom m 0.56 1.96 0.56 1.96 +hors_jeu hors_jeu adj 1.13 0.2 1.13 0.2 +hors_la_loi hors_la_loi nom m p 3.21 1.49 3.21 1.49 +hors_piste hors_piste nom m p 0.45 0 0.45 0 +hors_série hors_série adj f s 0.01 0.2 0.01 0.2 +horse_guard horse_guard nom m s 0.02 0.14 0 0.07 +horse_guard horse_guard nom m p 0.02 0.14 0.02 0.07 +hortensia hortensia nom m s 0.66 2.03 0.3 0.34 +hortensias hortensia nom m p 0.66 2.03 0.36 1.69 +horticoles horticole adj m p 0 0.07 0 0.07 +horticulteur horticulteur nom m s 0.07 0.54 0.06 0.34 +horticulteurs horticulteur nom m p 0.07 0.54 0.01 0.2 +horticultrice horticultrice nom f s 0.01 0 0.01 0 +horticulture horticulture nom f s 0.23 0.27 0.23 0.27 +hortillonnage hortillonnage nom m s 0 0.07 0 0.07 +hosanna hosanna nom m s 0.54 0.54 0.23 0.41 +hosannah hosannah nom m s 0 0.27 0 0.27 +hosannas hosanna nom m p 0.54 0.54 0.3 0.14 +hospice hospice nom m s 3.12 6.96 3.06 6.28 +hospices hospice nom m p 3.12 6.96 0.05 0.68 +hospitalier hospitalier adj m s 1.87 2.91 1.38 1.22 +hospitaliers hospitalier adj m p 1.87 2.91 0.26 0.74 +hospitalisation hospitalisation nom f s 0.85 0.27 0.71 0.27 +hospitalisations hospitalisation nom f p 0.85 0.27 0.14 0 +hospitaliser hospitaliser ver 5.19 2.36 1.46 0.54 inf; +hospitaliserons hospitaliser ver 5.19 2.36 0.01 0 ind:fut:1p; +hospitalisé hospitaliser ver m s 5.19 2.36 1.95 1.01 par:pas; +hospitalisée hospitaliser ver f s 5.19 2.36 1.42 0.61 par:pas; +hospitalisées hospitaliser ver f p 5.19 2.36 0.03 0 par:pas; +hospitalisés hospitaliser ver m p 5.19 2.36 0.32 0.2 par:pas; +hospitalité hospitalité nom f s 6.72 3.85 6.72 3.85 +hospitalière hospitalier adj f s 1.87 2.91 0.21 0.61 +hospitalières hospitalier adj f p 1.87 2.91 0.02 0.34 +hospodar hospodar nom m s 0 0.54 0 0.27 +hospodars hospodar nom m p 0 0.54 0 0.27 +hostau hostau nom m s 0 0.2 0 0.2 +hostellerie hostellerie nom f s 0.1 1.22 0.1 1.08 +hostelleries hostellerie nom f p 0.1 1.22 0 0.14 +hostie hostie nom f s 2.31 3.85 1.74 3.45 +hosties hostie nom f p 2.31 3.85 0.57 0.41 +hostile hostile adj s 8.56 21.15 6.32 15.47 +hostilement hostilement adv 0 0.2 0 0.2 +hostiles hostile adj p 8.56 21.15 2.24 5.68 +hostilité hostilité nom f s 3.52 15.81 2.7 11.89 +hostilités hostilité nom f p 3.52 15.81 0.82 3.92 +hosto hosto nom m s 5.74 5.81 5.69 5.41 +hostos hosto nom m p 5.74 5.81 0.05 0.41 +hot hot adj 1.67 0.2 1.67 0.2 +hot_dog hot_dog nom m s 2.69 0.14 1.31 0.14 +hot_dog hot_dog nom m p 2.69 0.14 1.38 0 +hot_dog hot_dog nom m s 6.09 0.27 3.12 0.07 +hot_dog hot_dog nom m p 6.09 0.27 2.98 0.2 +hotline hotline nom f s 0.52 0 0.52 0 +hotte hotte nom f s 1.23 2.57 1 2.43 +hotter hotter ver 0.01 0 0.01 0 inf; +hottes hotte nom f p 1.23 2.57 0.24 0.14 +hottée hottée nom f s 0 0.07 0 0.07 +hotu hotu nom m s 0 0.81 0 0.41 +hotus hotu nom m p 0 0.81 0 0.41 +hou hou ono 8.65 5.27 8.65 5.27 +houa houer ver 0.07 0 0.07 0 ind:pas:3s; +houari houari nom m s 0 0.07 0 0.07 +houblon houblon nom m s 0.31 0.61 0.31 0.54 +houblonnés houblonner ver m p 0 0.07 0 0.07 par:pas; +houblons houblon nom m p 0.31 0.61 0 0.07 +houe houe nom f s 0.37 0.34 0.37 0.34 +houhou houhou ono 0.46 0.27 0.46 0.27 +houille houille nom f s 0 0.88 0 0.81 +houiller houiller adj m s 0 0.14 0 0.14 +houilles houille nom f p 0 0.88 0 0.07 +houillère houillère nom f s 0.05 0.41 0.05 0 +houillères houillère nom f p 0.05 0.41 0 0.41 +houle houle nom f s 0.46 10.07 0.44 8.85 +houler houler ver 0 0.07 0 0.07 inf; +houles houle nom f p 0.46 10.07 0.02 1.22 +houlette houlette nom f s 0.82 0.81 0.82 0.81 +houleuse houleux adj f s 0.79 2.16 0.66 1.35 +houleuses houleux adj f p 0.79 2.16 0.01 0.27 +houleux houleux adj m 0.79 2.16 0.11 0.54 +houligan houligan nom m s 0 0.07 0 0.07 +houliganisme houliganisme nom m s 0 0.2 0 0.2 +houlque houlque nom f s 0 0.07 0 0.07 +houlà houlà ono 0.13 0.61 0.13 0.61 +houp houp ono 0.07 0.14 0.07 0.14 +houppe houppe nom f s 0.02 0.68 0.01 0.54 +houppelande houppelande nom f s 0.03 2.09 0.03 1.96 +houppelandes houppelande nom f p 0.03 2.09 0 0.14 +houppes houppe nom f p 0.02 0.68 0.01 0.14 +houppette houppette nom f s 0.02 2.43 0.02 2.09 +houppettes houppette nom f p 0.02 2.43 0 0.34 +hourdis hourdis nom m 0 0.07 0 0.07 +hourds hourd nom m p 0 0.2 0 0.2 +houri houri nom f s 0.1 0.61 0.1 0.41 +houris houri nom f p 0.1 0.61 0 0.2 +hourra hourra ono 5.18 0.81 5.18 0.81 +hourrah hourrah nom m s 0.77 0.41 0.77 0.34 +hourrahs hourrah nom m p 0.77 0.41 0 0.07 +hourras hourra nom_sup m p 2.38 1.42 0.27 0.68 +hourvari hourvari nom m s 0.27 0.54 0.27 0.41 +hourvaris hourvari nom m p 0.27 0.54 0 0.14 +housards housard nom m p 0 0.14 0 0.14 +house house nom f s 4.74 0.27 4.74 0.27 +house_music house_music nom f s 0.01 0 0.01 0 +house_boat house_boat nom m s 0.04 0.07 0.02 0 +house_boat house_boat nom m p 0.04 0.07 0.01 0.07 +houseau houseau nom m s 0.1 1.08 0 0.2 +houseaux houseau nom m p 0.1 1.08 0.1 0.88 +houspilla houspiller ver 0.41 2.77 0 0.07 ind:pas:3s; +houspillaient houspiller ver 0.41 2.77 0 0.14 ind:imp:3p; +houspillait houspiller ver 0.41 2.77 0.01 0.47 ind:imp:3s; +houspillant houspiller ver 0.41 2.77 0 0.34 par:pre; +houspille houspiller ver 0.41 2.77 0.16 0.27 ind:pre:1s;ind:pre:3s; +houspillent houspiller ver 0.41 2.77 0 0.07 ind:pre:3p; +houspiller houspiller ver 0.41 2.77 0.22 0.81 inf; +houspillâmes houspiller ver 0.41 2.77 0 0.07 ind:pas:1p; +houspillèrent houspiller ver 0.41 2.77 0 0.07 ind:pas:3p; +houspillé houspiller ver m s 0.41 2.77 0.02 0.14 par:pas; +houspillée houspiller ver f s 0.41 2.77 0 0.2 par:pas; +houspillées houspiller ver f p 0.41 2.77 0 0.07 par:pas; +houspillés houspiller ver m p 0.41 2.77 0 0.07 par:pas; +housse housse nom f s 0.83 5.68 0.35 3.11 +housses housse nom f p 0.83 5.68 0.49 2.57 +houssés housser ver m p 0 0.07 0 0.07 par:pas; +houx houx nom m 0.07 1.28 0.07 1.28 +hovercraft hovercraft nom m s 0.01 0 0.01 0 +hoyau hoyau nom m s 0 0.14 0 0.14 +hua huer ver 1.24 2.3 0.09 0 ind:pas:3s; +huaient huer ver 1.24 2.3 0.01 0 ind:imp:3p; +huait huer ver 1.24 2.3 0.02 0.07 ind:imp:3s; +huant huer ver 1.24 2.3 0.03 0.07 par:pre; +huard huard nom m s 0.59 0.27 0.52 0.07 +huards huard nom m p 0.59 0.27 0.08 0.2 +huart huart nom m s 0 0.27 0 0.27 +hublot hublot nom m s 2.61 7.77 1.77 4.66 +hublots hublot nom m p 2.61 7.77 0.84 3.11 +huche huche nom f s 0.19 0.47 0.19 0.34 +huches huche nom f p 0.19 0.47 0 0.14 +huchet huchet nom m s 0 0.27 0 0.27 +hue hue ono 2.63 1.08 2.63 1.08 +huer huer ver 1.24 2.3 0.25 0.27 inf; +huerta huerta nom f s 0.53 0.95 0.53 0.95 +huez huer ver 1.24 2.3 0.02 0.14 imp:pre:2p;ind:pre:2p; +hugh hugh ono 1.38 0.27 1.38 0.27 +hugolien hugolien adj m s 0 0.14 0 0.07 +hugoliens hugolien adj m p 0 0.14 0 0.07 +huguenot huguenot nom m s 0.33 0.47 0.11 0.2 +huguenote huguenot nom f s 0.33 0.47 0.1 0.07 +huguenots huguenot nom m p 0.33 0.47 0.12 0.2 +hui hui nom s 2.36 0.47 2.36 0.47 +huilai huiler ver 0.59 1.76 0 0.07 ind:pas:1s; +huilait huiler ver 0.59 1.76 0.1 0.07 ind:imp:3s; +huile huile nom f s 22.68 38.18 20.23 36.22 +huilent huiler ver 0.59 1.76 0 0.07 ind:pre:3p; +huiler huiler ver 0.59 1.76 0.12 0.41 inf; +huilerai huiler ver 0.59 1.76 0.02 0 ind:fut:1s; +huiles huile nom f p 22.68 38.18 2.46 1.96 +huileuse huileux adj f s 0.37 4.26 0.09 1.89 +huileuses huileux adj f p 0.37 4.26 0.01 0.54 +huileux huileux adj m 0.37 4.26 0.27 1.82 +huilez huiler ver 0.59 1.76 0.05 0 imp:pre:2p; +huilier huilier nom m s 0.1 0.07 0.1 0.07 +huiliers huilier adj m p 0.01 0.07 0 0.07 +huilé huilé adj m s 0.57 3.24 0.21 1.15 +huilée huilé adj f s 0.57 3.24 0.21 1.08 +huilées huiler ver f p 0.59 1.76 0.05 0.07 par:pas; +huilés huilé adj m p 0.57 3.24 0.15 0.81 +huipil huipil nom m s 0 0.54 0 0.47 +huipils huipil nom m p 0 0.54 0 0.07 +huis huis nom m 0.48 1.82 0.48 1.82 +huisserie huisserie nom f s 0.04 0.34 0.04 0.14 +huisseries huisserie nom f p 0.04 0.34 0 0.2 +huissier huissier nom m s 2.84 5.95 2.06 3.72 +huissiers huissier nom m p 2.84 5.95 0.78 2.23 +huit huit adj_num 58.47 102.5 58.47 102.5 +huit_reflets huit_reflets nom m 0 0.27 0 0.27 +huitaine huitaine nom f s 0.2 1.01 0.2 1.01 +huitième huitième nom s 1.29 2.09 0.88 1.96 +huitièmes huitième nom p 1.29 2.09 0.41 0.14 +hulotte hulotte nom f s 0.1 0.61 0.1 0.34 +hulottes hulotte nom f p 0.1 0.61 0 0.27 +hulula hululer ver 0.18 1.35 0 0.2 ind:pas:3s; +hululaient hululer ver 0.18 1.35 0 0.14 ind:imp:3p; +hululait hululer ver 0.18 1.35 0 0.34 ind:imp:3s; +hululant hululer ver 0.18 1.35 0 0.27 par:pre; +hulule hululer ver 0.18 1.35 0.14 0.14 ind:pre:1s;ind:pre:3s; +hululement hululement nom m s 0.27 1.82 0 1.22 +hululements hululement nom m p 0.27 1.82 0.27 0.61 +hululent hululer ver 0.18 1.35 0.02 0.07 ind:pre:3p; +hululer hululer ver 0.18 1.35 0.01 0.14 inf; +hululée hululer ver f s 0.18 1.35 0 0.07 par:pas; +hum hum ono 33.59 5.68 33.59 5.68 +huma humer ver 0.73 9.53 0.03 1.49 ind:pas:3s; +humai humer ver 0.73 9.53 0 0.07 ind:pas:1s; +humaient humer ver 0.73 9.53 0 0.34 ind:imp:3p; +humain humain adj m s 107.1 111.55 50.53 35.81 +humain_robot humain_robot adj m s 0.03 0 0.03 0 +humaine humain adj f s 107.1 111.55 32.37 47.43 +humainement humainement adv 0.86 0.95 0.86 0.95 +humaines humain adj f p 107.1 111.55 6.36 14.93 +humains humain nom m p 30 18.31 18.15 10 +humais humer ver 0.73 9.53 0.01 0.07 ind:imp:1s; +humait humer ver 0.73 9.53 0 1.28 ind:imp:3s; +humanisait humaniser ver 0.27 1.35 0 0.27 ind:imp:3s; +humanisant humaniser ver 0.27 1.35 0.01 0.07 par:pre; +humanisation humanisation nom f s 0 0.14 0 0.14 +humanise humaniser ver 0.27 1.35 0.03 0.07 imp:pre:2s;ind:pre:3s; +humanisent humaniser ver 0.27 1.35 0 0.07 ind:pre:3p; +humaniser humaniser ver 0.27 1.35 0.09 0.41 inf; +humanisme humanisme nom m s 0.41 2.3 0.41 2.3 +humaniste humaniste adj s 0.72 0.68 0.72 0.54 +humanistes humaniste nom p 0.45 1.08 0.01 0.47 +humanisé humaniser ver m s 0.27 1.35 0 0.2 par:pas; +humanisée humaniser ver f s 0.27 1.35 0.14 0.07 par:pas; +humanisées humaniser ver f p 0.27 1.35 0 0.14 par:pas; +humanisés humaniser ver m p 0.27 1.35 0.01 0.07 par:pas; +humanitaire humanitaire adj s 2.02 1.55 1.52 1.22 +humanitaires humanitaire adj p 2.02 1.55 0.5 0.34 +humanitarisme humanitarisme nom m s 0.11 0.07 0.11 0.07 +humanité humanité nom f s 23.31 24.32 23.15 23.85 +humanités humanité nom f p 23.31 24.32 0.16 0.47 +humano humano adv 0.16 0 0.16 0 +humanoïde humanoïde adj s 0.46 0 0.42 0 +humanoïdes humanoïde nom p 0.21 0.41 0.11 0.27 +humant humer ver 0.73 9.53 0.11 1.69 par:pre; +humble humble adj s 12.43 18.45 9.66 12.84 +humblement humblement adv 2.26 3.65 2.26 3.65 +humbles humble adj p 12.43 18.45 2.77 5.61 +humbug humbug adj s 0.01 0 0.01 0 +hume humer ver 0.73 9.53 0.13 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humecta humecter ver 0.35 4.53 0.14 0.27 ind:pas:3s; +humectage humectage nom m s 0.01 0 0.01 0 +humectai humecter ver 0.35 4.53 0 0.14 ind:pas:1s; +humectaient humecter ver 0.35 4.53 0 0.07 ind:imp:3p; +humectais humecter ver 0.35 4.53 0 0.07 ind:imp:1s; +humectait humecter ver 0.35 4.53 0 0.41 ind:imp:3s; +humectant humectant adj m s 0.05 0 0.05 0 +humecte humecter ver 0.35 4.53 0 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humectent humecter ver 0.35 4.53 0 0.07 ind:pre:3p; +humecter humecter ver 0.35 4.53 0.16 1.01 inf; +humecté humecter ver m s 0.35 4.53 0 0.54 par:pas; +humectée humecter ver f s 0.35 4.53 0.03 0.41 par:pas; +humectées humecter ver f p 0.35 4.53 0.01 0.2 par:pas; +humectés humecter ver m p 0.35 4.53 0.01 0.34 par:pas; +hument humer ver 0.73 9.53 0.11 0.14 ind:pre:3p; +humer humer ver 0.73 9.53 0.28 1.76 inf; +humeras humer ver 0.73 9.53 0 0.07 ind:fut:2s; +humeur humeur nom f s 31.26 58.04 29.8 52.57 +humeurs humeur nom f p 31.26 58.04 1.46 5.47 +humez humer ver 0.73 9.53 0.04 0.07 imp:pre:2p; +humide humide adj s 11.23 53.31 8.24 38.24 +humidement humidement adv 0 0.07 0 0.07 +humides humide adj p 11.23 53.31 2.98 15.07 +humidifia humidifier ver 0.31 0.47 0 0.07 ind:pas:3s; +humidifiant humidifier ver 0.31 0.47 0.15 0.07 par:pre; +humidificateur humidificateur nom m s 0.2 0.07 0.2 0.07 +humidification humidification nom f s 0.03 0 0.03 0 +humidifient humidifier ver 0.31 0.47 0.04 0.07 ind:pre:3p; +humidifier humidifier ver 0.31 0.47 0.06 0.14 inf; +humidifié humidifier ver m s 0.31 0.47 0.06 0.07 par:pas; +humidifiés humidifier ver m p 0.31 0.47 0 0.07 par:pas; +humidité humidité nom f s 4.09 14.86 4.09 14.86 +humilia humilier ver 16.01 14.26 0 0.07 ind:pas:3s; +humiliaient humilier ver 16.01 14.26 0 0.2 ind:imp:3p; +humiliais humilier ver 16.01 14.26 0.02 0 ind:imp:2s; +humiliait humilier ver 16.01 14.26 0.05 0.95 ind:imp:3s; +humiliant humiliant adj m s 5.08 3.78 3.35 1.89 +humiliante humiliant adj f s 5.08 3.78 0.73 0.88 +humiliantes humiliant adj f p 5.08 3.78 0.56 0.34 +humiliants humiliant adj m p 5.08 3.78 0.45 0.68 +humiliassent humilier ver 16.01 14.26 0 0.07 sub:imp:3p; +humiliation humiliation nom f s 7.6 13.65 6.72 10.68 +humiliations humiliation nom f p 7.6 13.65 0.89 2.97 +humilie humilier ver 16.01 14.26 2.15 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humilient humilier ver 16.01 14.26 0.15 0.14 ind:pre:3p; +humilier humilier ver 16.01 14.26 5.68 4.32 inf;; +humiliera humilier ver 16.01 14.26 0.05 0 ind:fut:3s; +humilierai humilier ver 16.01 14.26 0.04 0 ind:fut:1s; +humilieraient humilier ver 16.01 14.26 0 0.14 cnd:pre:3p; +humilierais humilier ver 16.01 14.26 0.01 0 cnd:pre:1s; +humilierait humilier ver 16.01 14.26 0.01 0.14 cnd:pre:3s; +humilies humilier ver 16.01 14.26 0.62 0.27 ind:pre:2s; +humiliez humilier ver 16.01 14.26 0.14 0.27 imp:pre:2p;ind:pre:2p; +humilité humilité nom f s 4.24 12.09 4.24 11.96 +humilités humilité nom f p 4.24 12.09 0 0.14 +humilié humilier ver m s 16.01 14.26 3.65 3.18 par:pas; +humiliée humilier ver f s 16.01 14.26 1.93 1.62 par:pas; +humiliées humilié adj f p 2.45 4.32 0.4 0.07 +humiliés humilier ver m p 16.01 14.26 1.12 0.88 par:pas; +humions humer ver 0.73 9.53 0 0.07 ind:imp:1p; +humons humer ver 0.73 9.53 0 0.07 ind:pre:1p; +humoral humoral adj m s 0 0.07 0 0.07 +humoriste humoriste adj s 0.33 0.2 0.33 0.14 +humoristes humoriste nom p 0.11 0.74 0.02 0.41 +humoristique humoristique adj s 0.3 1.22 0.2 0.61 +humoristiques humoristique adj p 0.3 1.22 0.1 0.61 +humour humour nom m s 17.22 16.76 17.22 16.76 +humus humus nom m 0.32 5.74 0.32 5.74 +humèrent humer ver 0.73 9.53 0 0.07 ind:pas:3p; +humé humer ver m s 0.73 9.53 0.02 0.47 par:pas; +humée humer ver f s 0.73 9.53 0 0.07 par:pas; +humérale huméral adj f s 0.04 0 0.04 0 +humérus humérus nom m 0.22 0.34 0.22 0.34 +humés humer ver m p 0.73 9.53 0 0.07 par:pas; +hun hun nom m s 0.16 0.68 0.11 0.47 +hune hune nom f s 0.06 0.41 0.06 0.34 +hunes hune nom f p 0.06 0.41 0 0.07 +hunier hunier nom m s 0.17 0.14 0.12 0.07 +huniers hunier nom m p 0.17 0.14 0.05 0.07 +huns hun nom m p 0.16 0.68 0.05 0.2 +hunter hunter nom m s 0.02 0 0.02 0 +huppe huppe nom f s 0.06 0.34 0.06 0.34 +huppé huppé adj m s 0.45 2.09 0.17 0.68 +huppée huppé adj f s 0.45 2.09 0.1 0.61 +huppées huppé adj f p 0.45 2.09 0.05 0.27 +huppés huppé adj m p 0.45 2.09 0.13 0.54 +hure hure nom f s 0.11 2.36 0.11 0.34 +hures hure nom f p 0.11 2.36 0 2.03 +hurla hurler ver 33.17 88.65 0.46 13.78 ind:pas:3s; +hurlai hurler ver 33.17 88.65 0 1.08 ind:pas:1s; +hurlaient hurler ver 33.17 88.65 0.64 3.38 ind:imp:3p; +hurlais hurler ver 33.17 88.65 0.69 0.88 ind:imp:1s;ind:imp:2s; +hurlait hurler ver 33.17 88.65 2.19 10.54 ind:imp:3s; +hurlant hurler ver 33.17 88.65 2.08 12.36 par:pre; +hurlante hurlant adj f s 0.69 7.5 0.14 2.03 +hurlantes hurlant adj f p 0.69 7.5 0.09 1.01 +hurlants hurlant adj m p 0.69 7.5 0.06 0.95 +hurle hurler ver 33.17 88.65 8.34 18.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hurlement hurlement nom m s 4.59 20.95 2.16 9.86 +hurlements hurlement nom m p 4.59 20.95 2.43 11.08 +hurlent hurler ver 33.17 88.65 2.52 2.36 ind:pre:3p; +hurler hurler ver 33.17 88.65 10.38 17.23 inf; +hurlera hurler ver 33.17 88.65 0.09 0 ind:fut:3s; +hurlerai hurler ver 33.17 88.65 0.08 0.2 ind:fut:1s; +hurleraient hurler ver 33.17 88.65 0.01 0.14 cnd:pre:3p; +hurlerais hurler ver 33.17 88.65 0.06 0.2 cnd:pre:1s; +hurlerait hurler ver 33.17 88.65 0.04 0.2 cnd:pre:3s; +hurlerez hurler ver 33.17 88.65 0.08 0 ind:fut:2p; +hurleront hurler ver 33.17 88.65 0.18 0.07 ind:fut:3p; +hurles hurler ver 33.17 88.65 0.69 0.07 ind:pre:2s; +hurleur hurleur nom m s 0.22 0.47 0.11 0.07 +hurleurs hurleur nom m p 0.22 0.47 0.12 0.41 +hurlez hurler ver 33.17 88.65 1.47 0 imp:pre:2p;ind:pre:2p; +hurlions hurler ver 33.17 88.65 0.14 0.14 ind:imp:1p; +hurluberlu hurluberlu nom m s 0.23 0.61 0.2 0.14 +hurluberlus hurluberlu nom m p 0.23 0.61 0.04 0.47 +hurlât hurler ver 33.17 88.65 0 0.07 sub:imp:3s; +hurlèrent hurler ver 33.17 88.65 0 1.01 ind:pas:3p; +hurlé hurler ver m s 33.17 88.65 3.06 6.15 par:pas; +hurlée hurler ver f s 33.17 88.65 0 0.14 par:pas; +hurlées hurler ver f p 33.17 88.65 0 0.34 par:pas; +hurlés hurler ver m p 33.17 88.65 0 0.07 par:pas; +huron huron adj m s 0.04 0.07 0.01 0 +huronne huron adj f s 0.04 0.07 0.03 0.07 +hurrah hurrah ono 0.17 0.61 0.17 0.61 +hurrahs hurrah nom m p 0.01 0.07 0 0.07 +hurricane hurricane nom m s 0.56 0.34 0.52 0.27 +hurricanes hurricane nom m p 0.56 0.34 0.05 0.07 +huskies huskies nom m p 0.2 0 0.2 0 +husky husky nom m s 0.28 0 0.28 0 +hussard hussard nom m s 0.71 3.45 0.17 1.42 +hussarde hussard nom f s 0.71 3.45 0.01 0.27 +hussards hussard nom m p 0.71 3.45 0.53 1.76 +husseinites husseinite nom p 0 0.14 0 0.14 +hussite hussite nom m s 0 0.2 0 0.14 +hussites hussite nom m p 0 0.2 0 0.07 +hutte hutte nom f s 3.9 7.84 3.25 4.93 +hutter hutter ver 0.77 0 0.77 0 inf; +huttes hutte nom f p 3.9 7.84 0.65 2.91 +huèrent huer ver 1.24 2.3 0 0.07 ind:pas:3p; +hué huer ver m s 1.24 2.3 0.05 0.34 par:pas; +huée huer ver f s 1.24 2.3 0.02 0 par:pas; +huées huée nom f p 0.64 1.49 0.64 1.42 +hués huer ver m p 1.24 2.3 0.02 0.14 par:pas; +huître huître nom f s 4 7.64 1.41 2.7 +huîtres huître nom f p 4 7.64 2.59 4.93 +huîtrier huîtrier nom m s 0.01 0.07 0.01 0 +huîtriers huîtrier nom m p 0.01 0.07 0 0.07 +huîtrière huîtrière nom f s 0 0.07 0 0.07 +hyacinthe hyacinthe nom f s 0.04 0.07 0.04 0.07 +hyades hyade nom f p 0.1 0.07 0.1 0.07 +hybridation hybridation nom f s 0.05 0 0.05 0 +hybride hybride nom m s 1.97 0.41 1.2 0.27 +hybrides hybride nom m p 1.97 0.41 0.77 0.14 +hybridé hybrider ver m s 0.01 0 0.01 0 par:pas; +hydatique hydatique adj s 0.01 0 0.01 0 +hydne hydne nom m s 0 0.07 0 0.07 +hydratant hydratant adj m s 0.38 0.27 0.04 0.07 +hydratante hydratant adj f s 0.38 0.27 0.26 0.2 +hydratantes hydratant adj f p 0.38 0.27 0.07 0 +hydratants hydratant adj m p 0.38 0.27 0.01 0 +hydratation hydratation nom f s 0.13 0 0.13 0 +hydrate hydrate nom m s 0.42 0 0.18 0 +hydrater hydrater ver 0.58 0 0.12 0 inf; +hydrates hydrate nom m p 0.42 0 0.25 0 +hydratez hydrater ver 0.58 0 0.15 0 imp:pre:2p; +hydraté hydrater ver m s 0.58 0 0.17 0 par:pas; +hydratée hydrater ver f s 0.58 0 0.07 0 par:pas; +hydraulicien hydraulicien nom m s 0.01 0 0.01 0 +hydraulique hydraulique adj s 1.41 1.15 1.15 1.01 +hydrauliques hydraulique adj p 1.41 1.15 0.26 0.14 +hydravion hydravion nom m s 0.47 0.61 0.43 0.27 +hydravions hydravion nom m p 0.47 0.61 0.04 0.34 +hydre hydre nom f s 0.17 0.34 0.17 0.34 +hydrique hydrique adj s 0.07 0 0.07 0 +hydro hydro adv 0.17 0.07 0.17 0.07 +hydro_électrique hydro_électrique adj s 0 0.07 0 0.07 +hydrocarbure hydrocarbure nom m s 0.5 0.34 0.11 0.07 +hydrocarbures hydrocarbure nom m p 0.5 0.34 0.39 0.27 +hydrochlorique hydrochlorique adj m s 0.09 0 0.09 0 +hydrocortisone hydrocortisone nom f s 0.03 0 0.03 0 +hydrocution hydrocution nom f s 0 0.07 0 0.07 +hydrocèle hydrocèle nom f s 0 0.07 0 0.07 +hydrocéphale hydrocéphale adj s 0.22 0.14 0.12 0.07 +hydrocéphales hydrocéphale adj m p 0.22 0.14 0.1 0.07 +hydrocéphalie hydrocéphalie nom f s 0.01 0 0.01 0 +hydrodynamique hydrodynamique adj f s 0.01 0 0.01 0 +hydrofoil hydrofoil nom m s 0.01 0 0.01 0 +hydroglisseur hydroglisseur nom m s 0.06 0 0.06 0 +hydrographe hydrographe adj m s 0.14 0 0.14 0 +hydrographie hydrographie nom f s 0.01 0.07 0.01 0.07 +hydrographique hydrographique adj m s 0.27 0.14 0.27 0.07 +hydrographiques hydrographique adj p 0.27 0.14 0 0.07 +hydrogène hydrogène nom m s 1.76 0.88 1.75 0.88 +hydrogènes hydrogène nom m p 1.76 0.88 0.01 0 +hydrogénisation hydrogénisation nom f s 0 0.14 0 0.14 +hydrogéné hydrogéné adj m s 0.04 0 0.02 0 +hydrogénée hydrogéné adj f s 0.04 0 0.02 0 +hydrolase hydrolase nom f s 0.1 0 0.1 0 +hydrologie hydrologie nom f s 0.02 0 0.02 0 +hydrolyse hydrolyse nom f s 0.03 0 0.03 0 +hydromel hydromel nom m s 0.52 0.2 0.52 0.2 +hydromètres hydromètre nom f p 0 0.07 0 0.07 +hydrophile hydrophile adj m s 0.1 1.01 0.1 0.88 +hydrophiles hydrophile adj f p 0.1 1.01 0 0.14 +hydrophobe hydrophobe adj f s 0.01 0 0.01 0 +hydrophobie hydrophobie nom f s 0.04 0.07 0.04 0.07 +hydrophone hydrophone nom m s 0.25 0 0.25 0 +hydrophyte hydrophyte nom f s 0.01 0 0.01 0 +hydropique hydropique adj f s 0.14 0.14 0.14 0.14 +hydropisie hydropisie nom f s 0.01 0.27 0.01 0.27 +hydropneumatique hydropneumatique adj m s 0.01 0.14 0.01 0.14 +hydroponique hydroponique adj s 0.28 0 0.2 0 +hydroponiques hydroponique adj p 0.28 0 0.09 0 +hydroptère hydroptère nom m s 0.02 0 0.02 0 +hydroquinone hydroquinone nom f s 0 0.14 0 0.14 +hydrostatique hydrostatique adj s 0.04 0 0.04 0 +hydrothérapie hydrothérapie nom f s 0.08 0.14 0.08 0.14 +hydrox hydrox nom m 0.01 0 0.01 0 +hydroxyde hydroxyde nom m s 0.13 0 0.13 0 +hydroélectrique hydroélectrique adj f s 0.36 0.14 0.36 0.14 +hygiaphone hygiaphone nom m s 0 0.2 0 0.2 +hygiène hygiène nom f s 4.42 6.35 4.4 6.28 +hygiènes hygiène nom f p 4.42 6.35 0.01 0.07 +hygiénique hygiénique adj s 1.74 4.12 1.48 2.84 +hygiéniquement hygiéniquement adv 0.01 0.07 0.01 0.07 +hygiéniques hygiénique adj p 1.74 4.12 0.26 1.28 +hygiéniste hygiéniste nom s 0.2 0.14 0.19 0 +hygiénistes hygiéniste nom p 0.2 0.14 0.01 0.14 +hygroma hygroma nom m s 0.03 0 0.03 0 +hygromètre hygromètre nom m s 0.01 0.14 0 0.07 +hygromètres hygromètre nom m p 0.01 0.14 0.01 0.07 +hygrométrie hygrométrie nom f s 0.14 0.07 0.14 0.07 +hygrométrique hygrométrique adj s 0 0.14 0 0.07 +hygrométriques hygrométrique adj f p 0 0.14 0 0.07 +hylémorphique hylémorphique adj f s 0 0.07 0 0.07 +hymen hymen nom m s 2.05 0.34 2.05 0.34 +hymne hymne nom s 6.25 8.72 5.37 6.69 +hymnes hymne nom p 6.25 8.72 0.88 2.03 +hyménoptère hyménoptère nom m s 0.02 0.27 0 0.07 +hyménoptères hyménoptère nom m p 0.02 0.27 0.02 0.2 +hyménée hyménée nom m s 0.34 0.07 0.34 0 +hyménées hyménée nom m p 0.34 0.07 0 0.07 +hyoïde hyoïde adj f s 0.16 0 0.16 0 +hypallage hypallage nom f s 0 0.07 0 0.07 +hyper hyper adv 6.66 0.95 6.66 0.95 +hyperacidité hyperacidité nom f s 0.01 0 0.01 0 +hyperactif hyperactif adj m s 0.2 0 0.13 0 +hyperactive hyperactif adj f s 0.2 0 0.08 0 +hyperactivité hyperactivité nom f s 0.17 0 0.17 0 +hyperbare hyperbare adj m s 0.07 0 0.07 0 +hyperbole hyperbole nom f s 0.12 0.34 0.09 0.2 +hyperboles hyperbole nom f p 0.12 0.34 0.04 0.14 +hyperbolique hyperbolique adj s 0.01 0.2 0.01 0.2 +hyperboliquement hyperboliquement adv 0 0.07 0 0.07 +hyperborée hyperborée nom f s 0 0.07 0 0.07 +hyperboréen hyperboréen adj m s 0 0.54 0 0.14 +hyperboréenne hyperboréen adj f s 0 0.54 0 0.27 +hyperboréens hyperboréen adj m p 0 0.54 0 0.14 +hypercalcémie hypercalcémie nom f s 0.07 0 0.07 0 +hypercholestérolémie hypercholestérolémie nom f s 0.03 0 0.03 0 +hypercoagulabilité hypercoagulabilité nom f s 0.03 0 0.03 0 +hyperespace hyperespace nom m s 1.89 0 1.89 0 +hyperesthésie hyperesthésie nom f s 0 0.07 0 0.07 +hyperglycémies hyperglycémie nom f p 0 0.07 0 0.07 +hyperkaliémie hyperkaliémie nom f s 0.03 0 0.03 0 +hyperlipidémie hyperlipidémie nom f s 0 0.07 0 0.07 +hyperlipémie hyperlipémie nom f s 0.01 0 0.01 0 +hypermarché hypermarché nom m s 0.15 0.27 0.12 0.14 +hypermarchés hypermarché nom m p 0.15 0.27 0.03 0.14 +hypermnésie hypermnésie nom f s 0 0.07 0 0.07 +hypernerveuse hypernerveux adj f s 0 0.27 0 0.07 +hypernerveux hypernerveux adj m 0 0.27 0 0.2 +hyperplan hyperplan nom m s 0.01 0 0.01 0 +hyperplasie hyperplasie nom f s 0.04 0 0.04 0 +hyperréactivité hyperréactivité nom f s 0.01 0 0.01 0 +hyperréalisme hyperréalisme nom m s 0 0.07 0 0.07 +hyperréaliste hyperréaliste adj s 0 0.14 0 0.07 +hyperréaliste hyperréaliste nom s 0 0.14 0 0.07 +hyperréalistes hyperréaliste adj p 0 0.14 0 0.07 +hyperréalistes hyperréaliste nom p 0 0.14 0 0.07 +hypersensibilité hypersensibilité nom f s 0.22 0.14 0.22 0.14 +hypersensible hypersensible adj s 0.31 0.34 0.27 0.07 +hypersensibles hypersensible adj m p 0.31 0.34 0.04 0.27 +hypersomnie hypersomnie nom f s 0.03 0 0.03 0 +hypersonique hypersonique adj m s 0.01 0 0.01 0 +hypersustentateur hypersustentateur nom m s 0.06 0 0.06 0 +hypertendu hypertendu adj m s 0.2 0.07 0.04 0.07 +hypertendue hypertendu adj f s 0.2 0.07 0.16 0 +hypertendus hypertendu nom m p 0.01 0 0.01 0 +hypertension hypertension nom f s 0.71 0.2 0.7 0.07 +hypertensions hypertension nom f p 0.71 0.2 0.01 0.14 +hyperthermie hyperthermie nom f s 0.15 0 0.15 0 +hyperthyroïdien hyperthyroïdien adj m s 0 0.07 0 0.07 +hypertonique hypertonique adj s 0.06 0 0.06 0 +hypertrichose hypertrichose nom f s 0.03 0 0.03 0 +hypertrophie hypertrophie nom f s 0.56 0.27 0.56 0.27 +hypertrophique hypertrophique adj f s 0.07 0 0.07 0 +hypertrophié hypertrophié adj m s 0.2 0.27 0.17 0.07 +hypertrophiée hypertrophier ver f s 0.16 0.2 0.01 0.07 par:pas; +hypertrophiés hypertrophié adj m p 0.2 0.27 0.03 0.14 +hyperventilation hyperventilation nom f s 0.23 0 0.23 0 +hyperémotive hyperémotif adj f s 0.01 0 0.01 0 +hyperémotivité hyperémotivité nom f s 0 0.07 0 0.07 +hypholomes hypholome nom m p 0 0.07 0 0.07 +hypnagogique hypnagogique adj s 0.04 0.07 0.04 0 +hypnagogiques hypnagogique adj f p 0.04 0.07 0 0.07 +hypnogène hypnogène adj s 0 0.54 0 0.54 +hypnogènes hypnogène nom m p 0 0.2 0 0.07 +hypnose hypnose nom f s 3.29 1.28 3.29 1.22 +hypnoses hypnose nom f p 3.29 1.28 0 0.07 +hypnotique hypnotique adj s 1.16 0.74 0.99 0.68 +hypnotiquement hypnotiquement adv 0 0.14 0 0.14 +hypnotiques hypnotique adj p 1.16 0.74 0.17 0.07 +hypnotisa hypnotiser ver 3.73 4.19 0 0.07 ind:pas:3s; +hypnotisaient hypnotiser ver 3.73 4.19 0.14 0.07 ind:imp:3p; +hypnotisais hypnotiser ver 3.73 4.19 0 0.07 ind:imp:1s; +hypnotisait hypnotiser ver 3.73 4.19 0.03 0.14 ind:imp:3s; +hypnotisant hypnotiser ver 3.73 4.19 0.09 0.41 par:pre; +hypnotise hypnotiser ver 3.73 4.19 0.47 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hypnotisent hypnotiser ver 3.73 4.19 0.04 0.14 ind:pre:3p; +hypnotiser hypnotiser ver 3.73 4.19 1.05 0.27 inf;; +hypnotiseur hypnotiseur nom m s 0.63 0.27 0.6 0.07 +hypnotiseurs hypnotiseur nom m p 0.63 0.27 0.02 0.2 +hypnotiseuse hypnotiseur nom f s 0.63 0.27 0.01 0 +hypnotisme hypnotisme nom m s 0.3 0.27 0.3 0.27 +hypnotisé hypnotiser ver m s 3.73 4.19 0.9 1.22 par:pas; +hypnotisée hypnotiser ver f s 3.73 4.19 0.71 0.47 par:pas; +hypnotisées hypnotiser ver f p 3.73 4.19 0.01 0.27 par:pas; +hypnotisés hypnotiser ver m p 3.73 4.19 0.31 0.54 par:pas; +hypo hypo adv 0.19 0.07 0.19 0.07 +hypoallergénique hypoallergénique adj f s 0.09 0.07 0.06 0.07 +hypoallergéniques hypoallergénique adj m p 0.09 0.07 0.02 0 +hypocalcémie hypocalcémie nom f s 0.03 0 0.03 0 +hypocapnie hypocapnie nom f s 0.01 0 0.01 0 +hypocauste hypocauste nom m s 0.01 0.07 0.01 0 +hypocaustes hypocauste nom m p 0.01 0.07 0 0.07 +hypocentre hypocentre nom m s 0.01 0 0.01 0 +hypochlorite hypochlorite nom m s 0.01 0 0.01 0 +hypochondriaque hypochondriaque adj s 0.12 0 0.12 0 +hypochondriaques hypochondriaque nom p 0.05 0 0.03 0 +hypocondre hypocondre nom m s 0 0.14 0 0.14 +hypocondriaque hypocondriaque adj m s 0.17 0.34 0.17 0.2 +hypocondriaques hypocondriaque nom p 0.17 0.14 0.07 0.07 +hypocondrie hypocondrie nom f s 0.04 0.27 0.04 0.27 +hypocras hypocras nom m 0 0.2 0 0.2 +hypocrisie hypocrisie nom f s 4.41 5.61 4.06 5.47 +hypocrisies hypocrisie nom f p 4.41 5.61 0.35 0.14 +hypocrite hypocrite nom s 5.41 2.91 3.66 1.96 +hypocritement hypocritement adv 0.14 1.69 0.14 1.69 +hypocrites hypocrite nom p 5.41 2.91 1.75 0.95 +hypoderme hypoderme nom m s 0 0.07 0 0.07 +hypodermique hypodermique adj s 0.4 0.14 0.36 0.14 +hypodermiques hypodermique adj f p 0.4 0.14 0.04 0 +hypoglycémie hypoglycémie nom f s 0.4 0.2 0.4 0.2 +hypoglycémique hypoglycémique adj m s 0.14 0.2 0.13 0.14 +hypoglycémiques hypoglycémique adj f p 0.14 0.2 0.01 0.07 +hypogonadisme hypogonadisme nom m s 0.03 0 0.03 0 +hypogée hypogée nom m s 0 0.81 0 0.47 +hypogées hypogée nom m p 0 0.81 0 0.34 +hypokhâgne hypokhâgne nom f s 0 1.28 0 1.22 +hypokhâgnes hypokhâgne nom f p 0 1.28 0 0.07 +hypomaniaques hypomaniaque nom p 0.01 0 0.01 0 +hyponatrémie hyponatrémie nom f s 0.05 0 0.05 0 +hyponomeutes hyponomeute nom m p 0 0.07 0 0.07 +hypophysaire hypophysaire adj s 0.01 0.07 0.01 0.07 +hypophyse hypophyse nom f s 0.07 0.14 0.07 0.07 +hypophyses hypophyse nom f p 0.07 0.14 0 0.07 +hypoplasie hypoplasie nom f s 0.01 0 0.01 0 +hypospadias hypospadias nom m 0.01 0 0.01 0 +hypostase hypostase nom f s 0.01 0.07 0.01 0 +hypostases hypostase nom f p 0.01 0.07 0 0.07 +hyposulfite hyposulfite nom m s 0 0.2 0 0.2 +hypotaupe hypotaupe nom f s 0 0.07 0 0.07 +hypotendu hypotendu nom m s 0.03 0 0.03 0 +hypotendue hypotendu adj f s 0.03 0 0.01 0 +hypotensif hypotensif adj m s 0.03 0 0.01 0 +hypotension hypotension nom f s 0.28 0 0.28 0 +hypotensive hypotensif adj f s 0.03 0 0.01 0 +hypothalamus hypothalamus nom m 0.29 0.2 0.29 0.2 +hypothermie hypothermie nom f s 0.8 0 0.8 0 +hypothermique hypothermique adj m s 0.04 0 0.04 0 +hypothyroïdie hypothyroïdie nom f s 0.04 0 0.04 0 +hypothèque hypothèque nom f s 2.78 1.96 2.48 0.88 +hypothèquent hypothéquer ver 1.43 1.42 0 0.07 ind:pre:3p; +hypothèques hypothèque nom f p 2.78 1.96 0.29 1.08 +hypothèse hypothèse nom f s 8.97 16.82 7.47 12.91 +hypothèses hypothèse nom f p 8.97 16.82 1.5 3.92 +hypothécaire hypothécaire adj s 0.09 0.07 0.05 0 +hypothécaires hypothécaire adj m p 0.09 0.07 0.04 0.07 +hypothéquait hypothéquer ver 1.43 1.42 0.01 0.14 ind:imp:3s; +hypothéquant hypothéquer ver 1.43 1.42 0.01 0.07 par:pre; +hypothéquer hypothéquer ver 1.43 1.42 0.57 0.34 inf; +hypothéqueraient hypothéquer ver 1.43 1.42 0 0.07 cnd:pre:3p; +hypothéquez hypothéquer ver 1.43 1.42 0.1 0.07 imp:pre:2p;ind:pre:2p; +hypothéquions hypothéquer ver 1.43 1.42 0 0.07 ind:imp:1p; +hypothéqué hypothéquer ver m s 1.43 1.42 0.23 0.14 par:pas; +hypothéquée hypothéquer ver f s 1.43 1.42 0.04 0.41 par:pas; +hypothétique hypothétique adj s 0.71 2.23 0.65 1.62 +hypothétiquement hypothétiquement adv 0.23 0.07 0.23 0.07 +hypothétiques hypothétique adj p 0.71 2.23 0.07 0.61 +hypotonie hypotonie nom f s 0.01 0 0.01 0 +hypoténuse hypoténuse nom f s 0.09 0.07 0.09 0.07 +hypoxie hypoxie nom f s 0.13 0 0.13 0 +hypoxique hypoxique adj s 0.16 0 0.16 0 +hysope hysope nom f s 0.01 0.14 0.01 0.07 +hysopes hysope nom f p 0.01 0.14 0 0.07 +hystérectomie hystérectomie nom f s 0.26 0.07 0.26 0.07 +hystérie hystérie nom f s 3.48 3.38 3.48 3.31 +hystéries hystérie nom f p 3.48 3.38 0 0.07 +hystérique hystérique adj s 6.61 5.2 5.6 3.45 +hystériquement hystériquement adv 0.03 0.27 0.03 0.27 +hystériques hystérique adj p 6.61 5.2 1.01 1.76 +hystéro hystéro adj f s 0.02 0.34 0.02 0.34 +hyène hyène nom f s 2.37 2.43 1.64 1.76 +hyènes hyène nom f p 2.37 2.43 0.73 0.68 +hâblerie hâblerie nom f s 0 0.34 0 0.07 +hâbleries hâblerie nom f p 0 0.34 0 0.27 +hâbleur hâbleur nom m s 0.19 0.54 0.06 0.34 +hâbleurs hâbleur nom m p 0.19 0.54 0.14 0.2 +hâlait hâler ver 0.01 1.08 0 0.07 ind:imp:3s; +hâlant hâler ver 0.01 1.08 0 0.07 par:pre; +hâle hâle nom m s 0.15 3.04 0.15 2.84 +hâles hâle nom m p 0.15 3.04 0 0.2 +hâlé hâlé adj m s 0.05 2.57 0.03 1.15 +hâlée hâlé adj f s 0.05 2.57 0.02 0.68 +hâlées hâlé adj f p 0.05 2.57 0 0.2 +hâlés hâlé adj m p 0.05 2.57 0 0.54 +hâta hâter ver 5.63 24.05 0.1 4.05 ind:pas:3s; +hâtai hâter ver 5.63 24.05 0.01 1.28 ind:pas:1s; +hâtaient hâter ver 5.63 24.05 0.02 1.69 ind:imp:3p; +hâtais hâter ver 5.63 24.05 0.01 0.47 ind:imp:1s; +hâtait hâter ver 5.63 24.05 0.14 2.09 ind:imp:3s; +hâtant hâter ver 5.63 24.05 0.01 2.64 par:pre; +hâte hâte nom f s 18.83 45.2 18.83 44.8 +hâtent hâter ver 5.63 24.05 0.32 0.34 ind:pre:3p; +hâter hâter ver 5.63 24.05 1.32 5.54 inf; +hâtera hâter ver 5.63 24.05 0.01 0.2 ind:fut:3s; +hâteraient hâter ver 5.63 24.05 0 0.07 cnd:pre:3p; +hâterait hâter ver 5.63 24.05 0 0.27 cnd:pre:3s; +hâtes hâter ver 5.63 24.05 0.01 0 ind:pre:2s; +hâtez hâter ver 5.63 24.05 0.93 0.14 imp:pre:2p;ind:pre:2p; +hâtif hâtif adj m s 2.43 5.61 0.65 1.76 +hâtifs hâtif adj m p 2.43 5.61 0.02 1.15 +hâtions hâter ver 5.63 24.05 0 0.14 ind:imp:1p; +hâtive hâtif adj f s 2.43 5.61 0.61 1.76 +hâtivement hâtivement adv 0.12 5.54 0.12 5.54 +hâtives hâtif adj f p 2.43 5.61 1.15 0.95 +hâtons hâter ver 5.63 24.05 0.37 0.14 imp:pre:1p;ind:pre:1p; +hâtâmes hâter ver 5.63 24.05 0 0.14 ind:pas:1p; +hâtât hâter ver 5.63 24.05 0 0.07 sub:imp:3s; +hâtèrent hâter ver 5.63 24.05 0 0.61 ind:pas:3p; +hâté hâter ver m s 5.63 24.05 0.26 1.01 par:pas; +hâtée hâter ver f s 5.63 24.05 0.01 0.2 par:pas; +hâtés hâter ver m p 5.63 24.05 0 0.14 par:pas; +hâve hâve adj s 0.01 1.28 0.01 0.61 +hâves hâve adj p 0.01 1.28 0 0.68 +hèle héler ver 0.35 6.49 0.05 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hère hère nom m s 0.17 0.74 0.04 0.41 +hères hère nom m p 0.17 0.74 0.13 0.34 +hé hé ono 288.29 30 288.29 30 +héberge héberger ver 5.77 6.49 0.87 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hébergea héberger ver 5.77 6.49 0 0.2 ind:pas:3s; +hébergeai héberger ver 5.77 6.49 0 0.07 ind:pas:1s; +hébergeaient héberger ver 5.77 6.49 0.11 0.27 ind:imp:3p; +hébergeais héberger ver 5.77 6.49 0.01 0.14 ind:imp:1s;ind:imp:2s; +hébergeait héberger ver 5.77 6.49 0.02 0.41 ind:imp:3s; +hébergeant héberger ver 5.77 6.49 0.12 0.2 par:pre; +hébergement hébergement nom m s 0.68 0.68 0.68 0.68 +hébergent héberger ver 5.77 6.49 0.04 0.07 ind:pre:3p; +hébergeons héberger ver 5.77 6.49 0.12 0 imp:pre:1p;ind:pre:1p; +héberger héberger ver 5.77 6.49 2.8 2.7 inf; +hébergera héberger ver 5.77 6.49 0.19 0.07 ind:fut:3s; +hébergerait héberger ver 5.77 6.49 0 0.14 cnd:pre:3s; +hébergeras héberger ver 5.77 6.49 0 0.07 ind:fut:2s; +hébergez héberger ver 5.77 6.49 0.19 0 imp:pre:2p;ind:pre:2p; +hébergiez héberger ver 5.77 6.49 0.02 0 ind:imp:2p; +hébergions héberger ver 5.77 6.49 0 0.07 ind:imp:1p; +hébergé héberger ver m s 5.77 6.49 0.78 1.15 par:pas; +hébergée héberger ver f s 5.77 6.49 0.24 0.27 par:pas; +hébergées héberger ver f p 5.77 6.49 0.01 0.07 par:pas; +hébergés héberger ver m p 5.77 6.49 0.24 0.34 par:pas; +hébertisme hébertisme nom m s 0 0.27 0 0.27 +hébraïque hébraïque adj s 0.11 1.08 0.09 0.88 +hébraïquement hébraïquement adv 0 0.07 0 0.07 +hébraïques hébraïque adj p 0.11 1.08 0.02 0.2 +hébraïsant hébraïsant adj m s 0 0.07 0 0.07 +hébreu hébreu nom m s 1.67 2.97 1.67 2.97 +hébreux hébreux nom m p 0.4 0.07 0.4 0.07 +hébètent hébéter ver 0.35 2.03 0 0.07 ind:pre:3p; +hébéphrénique hébéphrénique adj f s 0.02 0 0.02 0 +hébéta hébéter ver 0.35 2.03 0 0.07 ind:pas:3s; +hébétait hébéter ver 0.35 2.03 0 0.07 ind:imp:3s; +hébétement hébétement nom m s 0 0.07 0 0.07 +hébétude hébétude nom f s 0.14 4.05 0.14 4.05 +hébété hébété adj m s 0.54 4.73 0.29 2.84 +hébétée hébété adj f s 0.54 4.73 0.23 0.95 +hébétées hébété adj f p 0.54 4.73 0 0.2 +hébétés hébéter ver m p 0.35 2.03 0.03 0.34 par:pas; +hécatombe hécatombe nom f s 0.2 1.69 0.2 1.28 +hécatombes hécatombe nom f p 0.2 1.69 0 0.41 +hédonisme hédonisme nom m s 0.05 0.2 0.05 0.2 +hédoniste hédoniste adj s 0.21 0.14 0.21 0.07 +hédonistes hédoniste adj m p 0.21 0.14 0 0.07 +hégire hégire nom f s 0.38 0.27 0.38 0.27 +hégélianisme hégélianisme nom m s 0 0.07 0 0.07 +hégélien hégélien adj m s 0.16 0.14 0 0.07 +hégélienne hégélien adj f s 0.16 0.14 0.16 0 +hégéliens hégélien adj m p 0.16 0.14 0 0.07 +hégémonie hégémonie nom f s 0.04 1.42 0.04 1.42 +héla héler ver 0.35 6.49 0.01 1.69 ind:pas:3s; +hélai héler ver 0.35 6.49 0 0.14 ind:pas:1s; +hélaient héler ver 0.35 6.49 0 0.47 ind:imp:3p; +hélait héler ver 0.35 6.49 0.01 0.14 ind:imp:3s; +hélant héler ver 0.35 6.49 0 0.47 par:pre; +hélas hélas ono 24.21 34.73 24.21 34.73 +héler héler ver 0.35 6.49 0.11 1.08 inf; +hélez héler ver 0.35 6.49 0.01 0 imp:pre:2p; +hélianthes hélianthe nom m p 0 0.34 0 0.34 +hélice hélice nom f s 2.83 3.85 1.9 2.36 +hélices hélice nom f p 2.83 3.85 0.93 1.49 +hélico hélico adv 0.01 0 0.01 0 +hélicoptère hélicoptère nom m s 13.96 3.72 10.98 2.43 +hélicoptères hélicoptère nom m p 13.96 3.72 2.98 1.28 +hélicoïdal hélicoïdal adj m s 0.01 0.07 0 0.07 +hélicoïdale hélicoïdal adj f s 0.01 0.07 0.01 0 +hélio hélio nom f s 0 0.07 0 0.07 +héliographe héliographe nom m s 0.01 0 0.01 0 +héliogravure héliogravure nom f s 0 0.07 0 0.07 +héliophanie héliophanie nom f s 0 0.07 0 0.07 +héliotrope héliotrope nom m s 0.07 0.41 0.04 0.27 +héliotropes héliotrope nom m p 0.07 0.41 0.03 0.14 +héliport héliport nom m s 0.12 0.14 0.12 0.14 +héliporter héliporter ver 0.08 0.07 0.01 0.07 inf; +héliporté héliporter ver m s 0.08 0.07 0.05 0 par:pas; +héliportée héliporté adj f s 0.06 0.14 0.05 0 +héliportés héliporter ver m p 0.08 0.07 0.01 0 par:pas; +hélitreuiller hélitreuiller ver 0.01 0 0.01 0 inf; +hélium hélium nom m s 0.99 0.47 0.99 0.47 +hélix hélix nom m 0.07 0.07 0.07 0.07 +hélèrent héler ver 0.35 6.49 0 0.2 ind:pas:3p; +hélé héler ver m s 0.35 6.49 0.11 0.68 par:pas; +hélés héler ver m p 0.35 6.49 0 0.07 par:pas; +hématie hématie nom f s 0.12 0.07 0 0.07 +hématies hématie nom f p 0.12 0.07 0.12 0 +hématine hématine nom f s 0.05 0 0.05 0 +hématite hématite nom f s 0 0.07 0 0.07 +hématocrite hématocrite nom m s 0.6 0 0.6 0 +hématocèle hématocèle nom f s 0 0.07 0 0.07 +hématologie hématologie nom f s 0.1 0.07 0.1 0.07 +hématologique hématologique adj f s 0.01 0 0.01 0 +hématologue hématologue nom s 0.14 0.07 0.14 0.07 +hématome hématome nom m s 1.53 0.61 1.08 0.41 +hématomes hématome nom m p 1.53 0.61 0.45 0.2 +hématopoïèse hématopoïèse nom f s 0 0.07 0 0.07 +hématose hématose nom f s 0 0.07 0 0.07 +hématurie hématurie nom f s 0.02 0 0.02 0 +hémi hémi adv 0 0.07 0 0.07 +hémicycle hémicycle nom m s 0.03 0.34 0.03 0.34 +hémiplégie hémiplégie nom f s 0.2 0.41 0.2 0.41 +hémiplégique hémiplégique adj s 0.01 0.07 0.01 0.07 +hémiptère hémiptère nom m s 0 0.07 0 0.07 +hémisphère hémisphère nom m s 1.38 1.76 0.96 0.88 +hémisphères hémisphère nom m p 1.38 1.76 0.41 0.88 +hémisphérique hémisphérique adj s 0.01 0.41 0.01 0.34 +hémisphériques hémisphérique adj m p 0.01 0.41 0 0.07 +hémistiche hémistiche nom m s 0.01 0.2 0 0.07 +hémistiches hémistiche nom m p 0.01 0.2 0.01 0.14 +hémièdres hémièdre adj f p 0 0.07 0 0.07 +hémoculture hémoculture nom f s 0.17 0 0.09 0 +hémocultures hémoculture nom f p 0.17 0 0.09 0 +hémodialyse hémodialyse nom f s 0.04 0 0.04 0 +hémodynamique hémodynamique nom f s 0.05 0 0.05 0 +hémoglobine hémoglobine nom f s 1.15 0.34 1.14 0.27 +hémoglobines hémoglobine nom f p 1.15 0.34 0.01 0.07 +hémogramme hémogramme nom m s 0.12 0 0.12 0 +hémolyse hémolyse nom f s 0.07 0 0.07 0 +hémolytique hémolytique adj f s 0.12 0 0.12 0 +hémophile hémophile adj m s 0.1 0.07 0.07 0.07 +hémophiles hémophile adj m p 0.1 0.07 0.03 0 +hémophilie hémophilie nom f s 0.14 0.07 0.14 0.07 +hémoptysie hémoptysie nom f s 0.01 0.68 0 0.34 +hémoptysies hémoptysie nom f p 0.01 0.68 0.01 0.34 +hémorragie hémorragie nom f s 9.35 3.11 8.39 2.43 +hémorragies hémorragie nom f p 9.35 3.11 0.96 0.68 +hémorragique hémorragique adj s 0.25 0 0.25 0 +hémorroïdaire hémorroïdaire adj s 0.01 0 0.01 0 +hémorroïdale hémorroïdal adj f s 0.01 0 0.01 0 +hémorroïde hémorroïde nom f s 1.69 0.41 0.23 0 +hémorroïdes hémorroïde nom f p 1.69 0.41 1.46 0.41 +hémostase hémostase nom f s 0.13 0 0.13 0 +hémostatique hémostatique adj s 0.14 0.07 0.14 0.07 +héparine héparine nom f s 0.28 0 0.28 0 +hépatique hépatique adj s 0.5 0.41 0.32 0.27 +hépatiques hépatique adj p 0.5 0.41 0.18 0.14 +hépatite hépatite nom f s 2.12 0.74 2.04 0.74 +hépatites hépatite nom f p 2.12 0.74 0.08 0 +hépatomégalie hépatomégalie nom f s 0.01 0 0.01 0 +héraclitienne héraclitien adj f s 0 0.07 0 0.07 +héraclitéen héraclitéen adj m s 0 0.2 0 0.14 +héraclitéenne héraclitéen adj f s 0 0.2 0 0.07 +héraldique héraldique adj s 0 1.22 0 0.81 +héraldiques héraldique adj p 0 1.22 0 0.41 +héraut héraut nom m s 0.36 0.81 0.35 0.2 +hérauts héraut nom m p 0.36 0.81 0.01 0.61 +hérissa hérisser ver 0.64 13.99 0.1 0.14 ind:pas:3s; +hérissaient hérisser ver 0.64 13.99 0 0.74 ind:imp:3p; +hérissait hérisser ver 0.64 13.99 0.01 1.08 ind:imp:3s; +hérissant hérisser ver 0.64 13.99 0 0.27 par:pre; +hérisse hérisser ver 0.64 13.99 0.11 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hérissement hérissement nom m s 0 0.34 0 0.14 +hérissements hérissement nom m p 0 0.34 0 0.2 +hérissent hérisser ver 0.64 13.99 0.03 0.41 ind:pre:3p; +hérisser hérisser ver 0.64 13.99 0.03 0.41 inf; +hérisseraient hérisser ver 0.64 13.99 0 0.14 cnd:pre:3p; +hérisses hérisser ver 0.64 13.99 0.01 0.07 ind:pre:2s; +hérisson hérisson nom m s 0.75 2.57 0.69 1.76 +hérissons hérisson nom m p 0.75 2.57 0.06 0.81 +hérissât hérisser ver 0.64 13.99 0 0.07 sub:imp:3s; +hérissèrent hérisser ver 0.64 13.99 0 0.14 ind:pas:3p; +hérissé hérisser ver m s 0.64 13.99 0.14 3.38 par:pas; +hérissée hérissé adj f s 0.41 4.86 0.21 1.28 +hérissées hérissé adj f p 0.41 4.86 0.14 1.22 +hérissés hérisser ver m p 0.64 13.99 0.05 2.5 par:pas; +hérita hériter ver 11.93 12.84 0.18 0.34 ind:pas:3s; +héritage héritage nom m s 12.37 12.03 12.18 11.15 +héritages héritage nom m p 12.37 12.03 0.19 0.88 +héritai hériter ver 11.93 12.84 0 0.2 ind:pas:1s; +héritaient hériter ver 11.93 12.84 0 0.14 ind:imp:3p; +héritais hériter ver 11.93 12.84 0.11 0.14 ind:imp:1s;ind:imp:2s; +héritait hériter ver 11.93 12.84 0.03 0.2 ind:imp:3s; +hérite hériter ver 11.93 12.84 1.52 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +héritent hériter ver 11.93 12.84 0.21 0 ind:pre:3p; +hériter hériter ver 11.93 12.84 1.86 1.35 inf; +héritera hériter ver 11.93 12.84 0.38 0.14 ind:fut:3s; +hériterai hériter ver 11.93 12.84 0.05 0.07 ind:fut:1s; +hériteraient hériter ver 11.93 12.84 0.02 0 cnd:pre:3p; +hériterait hériter ver 11.93 12.84 0.07 0.14 cnd:pre:3s; +hériteras hériter ver 11.93 12.84 0.22 0 ind:fut:2s; +hériterez hériter ver 11.93 12.84 0.2 0.07 ind:fut:2p; +hériteront hériter ver 11.93 12.84 0.11 0 ind:fut:3p; +hérites hériter ver 11.93 12.84 0.34 0.14 ind:pre:2s; +héritez hériter ver 11.93 12.84 0.25 0.14 imp:pre:2p;ind:pre:2p; +héritier héritier nom m s 10.82 13.45 7.76 7.16 +héritiers héritier nom m p 10.82 13.45 1.39 3.18 +héritière héritier nom f s 10.82 13.45 1.62 2.7 +héritières héritier nom f p 10.82 13.45 0.05 0.41 +héritons hériter ver 11.93 12.84 0.11 0 ind:pre:1p; +hérité hériter ver m s 11.93 12.84 6 6.89 par:pas; +héritée hériter ver f s 11.93 12.84 0.1 1.42 par:pas; +héritées hériter ver f p 11.93 12.84 0.01 0.27 par:pas; +hérités hériter ver m p 11.93 12.84 0.15 0.61 par:pas; +héro héro nom f s 4.38 1.35 4.38 1.35 +héron héron nom m s 0.64 2.36 0.27 1.08 +hérons héron nom m p 0.64 2.36 0.37 1.28 +héros héros nom m 76.58 52.77 66.17 43.65 +héroïde héroïde nom f s 0 0.07 0 0.07 +héroïne héros nom f s 76.58 52.77 10.32 7.23 +héroïnes héros nom f p 76.58 52.77 0.1 1.89 +héroïnomane héroïnomane nom s 0.02 0 0.02 0 +héroïque héroïque adj s 4.73 11.28 3.31 7.57 +héroïquement héroïquement adv 0.14 0.74 0.14 0.74 +héroïques héroïque adj p 4.73 11.28 1.42 3.72 +héroïsme héroïsme nom m s 1.06 5.95 1.06 5.95 +héréditaire héréditaire adj s 2.59 4.59 2.21 3.85 +héréditairement héréditairement adv 0 0.2 0 0.2 +héréditaires héréditaire adj p 2.59 4.59 0.38 0.74 +hérédité hérédité nom f s 0.71 3.99 0.71 3.99 +hérédo hérédo adv 0 0.07 0 0.07 +hérésiarque hérésiarque nom s 0 0.2 0 0.07 +hérésiarques hérésiarque nom p 0 0.2 0 0.14 +hérésie hérésie nom f s 1.72 7.91 1.52 7.16 +hérésies hérésie nom f p 1.72 7.91 0.2 0.74 +hérétique hérétique nom s 3.15 18.65 2.08 2.77 +hérétiques hérétique nom p 3.15 18.65 1.08 15.88 +hésita hésiter ver 30.06 122.43 0.3 36.15 ind:pas:3s; +hésitai hésiter ver 30.06 122.43 0.01 4.26 ind:pas:1s; +hésitaient hésiter ver 30.06 122.43 0.01 3.11 ind:imp:3p; +hésitais hésiter ver 30.06 122.43 0.33 3.38 ind:imp:1s;ind:imp:2s; +hésitait hésiter ver 30.06 122.43 1.01 15.07 ind:imp:3s; +hésitant hésiter ver 30.06 122.43 0.23 6.22 par:pre; +hésitante hésitant adj f s 0.56 12.09 0.32 5.88 +hésitantes hésitant adj f p 0.56 12.09 0.04 0.61 +hésitants hésitant adj m p 0.56 12.09 0.09 1.69 +hésitation hésitation nom f s 2.9 25.14 2.27 19.8 +hésitations hésitation nom f p 2.9 25.14 0.63 5.34 +hésite hésiter ver 30.06 122.43 8.21 18.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hésitent hésiter ver 30.06 122.43 0.47 2.3 ind:pre:3p; +hésiter hésiter ver 30.06 122.43 4.57 16.28 inf; +hésitera hésiter ver 30.06 122.43 0.2 0.34 ind:fut:3s; +hésiterai hésiter ver 30.06 122.43 0.92 0.2 ind:fut:1s; +hésiteraient hésiter ver 30.06 122.43 0.22 0.41 cnd:pre:3p; +hésiterais hésiter ver 30.06 122.43 0.72 0.61 cnd:pre:1s;cnd:pre:2s; +hésiterait hésiter ver 30.06 122.43 0.51 0.47 cnd:pre:3s; +hésiteras hésiter ver 30.06 122.43 0.16 0 ind:fut:2s; +hésiterez hésiter ver 30.06 122.43 0.04 0.07 ind:fut:2p; +hésiteriez hésiter ver 30.06 122.43 0.1 0 cnd:pre:2p; +hésiterions hésiter ver 30.06 122.43 0 0.07 cnd:pre:1p; +hésiterons hésiter ver 30.06 122.43 0.05 0.07 ind:fut:1p; +hésiteront hésiter ver 30.06 122.43 0.34 0 ind:fut:3p; +hésites hésiter ver 30.06 122.43 1.09 0.47 ind:pre:2s; +hésitez hésiter ver 30.06 122.43 6.28 1.89 imp:pre:2p;ind:pre:2p; +hésitiez hésiter ver 30.06 122.43 0.05 0 ind:imp:2p; +hésitions hésiter ver 30.06 122.43 0 0.2 ind:imp:1p; +hésitons hésiter ver 30.06 122.43 0.42 0.14 imp:pre:1p;ind:pre:1p; +hésitât hésiter ver 30.06 122.43 0 0.2 sub:imp:3s; +hésitèrent hésiter ver 30.06 122.43 0 0.95 ind:pas:3p; +hésité hésiter ver m s 30.06 122.43 3.83 11.01 par:pas; +hétaïre hétaïre nom f s 0 0.27 0 0.14 +hétaïres hétaïre nom f p 0 0.27 0 0.14 +hétéro hétéro adj s 3.91 0.74 3.16 0.61 +hétérochromie hétérochromie nom f s 0.03 0 0.03 0 +hétéroclite hétéroclite adj s 0.17 4.73 0.02 2.57 +hétéroclites hétéroclite adj p 0.17 4.73 0.16 2.16 +hétérodoxes hétérodoxe nom p 0.01 0.14 0.01 0.14 +hétérodoxie hétérodoxie nom f s 0 0.07 0 0.07 +hétérogène hétérogène adj m s 0.14 0.34 0.14 0.07 +hétérogènes hétérogène adj p 0.14 0.34 0 0.27 +hétérogénéité hétérogénéité nom f s 0 0.14 0 0.14 +hétéroptère hétéroptère nom m s 0 0.07 0 0.07 +hétéros hétéro nom p 3.5 0.34 1.87 0 +hétérosexualité hétérosexualité nom f s 0.08 0.81 0.08 0.81 +hétérosexuel hétérosexuel adj m s 0.97 3.58 0.6 1.49 +hétérosexuelle hétérosexuel adj f s 0.97 3.58 0.13 0.88 +hétérosexuelles hétérosexuel adj f p 0.97 3.58 0.07 0.07 +hétérosexuels hétérosexuel adj m p 0.97 3.58 0.17 1.15 +hétérozygote hétérozygote adj s 0.01 0.07 0.01 0 +hétérozygotes hétérozygote adj p 0.01 0.07 0 0.07 +hévéa hévéa nom m s 0.23 0.2 0.01 0.14 +hévéas hévéa nom m p 0.23 0.2 0.22 0.07 +hêtraie hêtraie nom f s 0 0.68 0 0.54 +hêtraies hêtraie nom f p 0 0.68 0 0.14 +hêtre hêtre nom m s 0.65 10.2 0.18 3.38 +hêtres hêtre nom m p 0.65 10.2 0.47 6.82 +hôpital hôpital nom m s 133.15 54.93 126.08 50.41 +hôpitaux hôpital nom m p 133.15 54.93 7.07 4.53 +hôte hôte nom m s 19.43 20.2 13.43 10.81 +hôtel hôtel nom m s 114.67 158.92 107.73 143.78 +hôtel_dieu hôtel_dieu nom m s 0.01 0.81 0.01 0.81 +hôtel_restaurant hôtel_restaurant nom m s 0 0.14 0 0.14 +hôtelier hôtelier nom m s 0.44 1.35 0.43 1.08 +hôteliers hôtelier nom m p 0.44 1.35 0.01 0.2 +hôtelière hôtelier adj f s 0.85 1.28 0.61 0.27 +hôtelières hôtelier adj f p 0.85 1.28 0.01 0.07 +hôtellerie hôtellerie nom f s 0.57 1.82 0.57 1.76 +hôtelleries hôtellerie nom f p 0.57 1.82 0 0.07 +hôtels hôtel nom m p 114.67 158.92 6.94 15.14 +hôtes hôte nom m p 19.43 20.2 6 9.39 +hôtesse hôtesse nom f s 8.34 8.31 6.79 7.43 +hôtesses hôtesse nom f p 8.34 8.31 1.55 0.88 +i i nom s 71.21 31.15 71.21 31.15 +i.e. i.e. nom m s 0.02 0 0.02 0 +iambe iambe nom m s 0.02 0 0.02 0 +iambique iambique adj m s 0.15 0 0.08 0 +iambiques iambique adj m p 0.15 0 0.07 0 +ibex ibex nom m 0.11 0 0.11 0 +ibis ibis nom m 0 0.81 0 0.81 +ibm ibm nom m s 0 0.07 0 0.07 +ibo ibo adj f s 0.02 0.07 0.02 0.07 +iboga iboga nom m s 0.04 0 0.04 0 +ibère ibère nom s 0.01 0 0.01 0 +ibères ibère adj m p 0 0.14 0 0.07 +ibérique ibérique adj s 0.11 0.61 0.11 0.47 +ibériques ibérique adj p 0.11 0.61 0 0.14 +icarienne icarienne adj f s 0.04 0 0.04 0 +ice_cream ice_cream nom m s 0.02 0.34 0.02 0 +ice_cream ice_cream nom m s 0.02 0.34 0 0.27 +ice_cream ice_cream nom m p 0.02 0.34 0 0.07 +iceberg iceberg nom m s 1.88 1.42 1.5 1.08 +icebergs iceberg nom m p 1.88 1.42 0.39 0.34 +icelle icelle pro_ind f s 0 0.34 0 0.34 +icelles icelles pro_ind f p 0 0.2 0 0.2 +icelui icelui pro_ind m s 0 0.07 0 0.07 +ichtyologie ichtyologie nom f s 0.15 0 0.15 0 +ichtyologiste ichtyologiste nom s 0.02 0 0.02 0 +ici ici adv_sup 2411.21 483.58 2411.21 483.58 +ici_bas ici_bas adv 3.58 2.97 3.58 2.97 +icoglan icoglan nom m s 0 0.14 0 0.07 +icoglans icoglan nom m p 0 0.14 0 0.07 +iconoclaste iconoclaste nom s 0.11 0.47 0.1 0.27 +iconoclastes iconoclaste adj f p 0.02 0.41 0.02 0.07 +iconographe iconographe nom s 0 0.07 0 0.07 +iconographie iconographie nom f s 0.04 0.61 0.03 0.54 +iconographies iconographie nom f p 0.04 0.61 0.01 0.07 +iconographique iconographique adj f s 0 0.07 0 0.07 +iconostase iconostase nom f s 0 0.2 0 0.2 +icosaèdre icosaèdre nom m s 0.03 0 0.03 0 +ictus ictus nom m 0 0.07 0 0.07 +ictère ictère nom m s 0.16 0.07 0.16 0.07 +ictérique ictérique adj s 0.01 0 0.01 0 +icône icône nom f s 1.81 4.73 1.25 2.16 +icônes icône nom f p 1.81 4.73 0.55 2.57 +ide ide nom m s 0.47 0.07 0.47 0.07 +idem idem adv 1.86 2.64 1.86 2.64 +identifia identifier ver 38.52 18.92 0.26 0.68 ind:pas:3s; +identifiable identifiable adj s 0.67 1.49 0.55 0.47 +identifiables identifiable adj p 0.67 1.49 0.12 1.01 +identifiai identifier ver 38.52 18.92 0 0.41 ind:pas:1s; +identifiaient identifier ver 38.52 18.92 0.03 0.14 ind:imp:3p; +identifiais identifier ver 38.52 18.92 0.05 0.95 ind:imp:1s;ind:imp:2s; +identifiait identifier ver 38.52 18.92 0.31 1.55 ind:imp:3s; +identifiant identifier ver 38.52 18.92 0.22 0.34 par:pre; +identifiassent identifier ver 38.52 18.92 0 0.07 sub:imp:3p; +identificateur identificateur nom m s 0.07 0 0.07 0 +identification identification nom f s 7.14 1.82 6.88 1.76 +identifications identification nom f p 7.14 1.82 0.26 0.07 +identifie identifier ver 38.52 18.92 2.39 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +identifient identifier ver 38.52 18.92 0.29 0.27 ind:pre:3p; +identifier identifier ver 38.52 18.92 16.52 8.45 inf; +identifiera identifier ver 38.52 18.92 0.66 0.07 ind:fut:3s; +identifierai identifier ver 38.52 18.92 0.02 0 ind:fut:1s; +identifierais identifier ver 38.52 18.92 0.01 0.2 cnd:pre:1s; +identifierait identifier ver 38.52 18.92 0.06 0.14 cnd:pre:3s; +identifierez identifier ver 38.52 18.92 0.19 0 ind:fut:2p; +identifieront identifier ver 38.52 18.92 0.03 0 ind:fut:3p; +identifiez identifier ver 38.52 18.92 2.04 0 imp:pre:2p;ind:pre:2p; +identifions identifier ver 38.52 18.92 0.24 0 imp:pre:1p;ind:pre:1p; +identifiât identifier ver 38.52 18.92 0 0.07 sub:imp:3s; +identifièrent identifier ver 38.52 18.92 0 0.07 ind:pas:3p; +identifié identifier ver m s 38.52 18.92 10.78 2.5 par:pas; +identifiée identifier ver f s 38.52 18.92 2.02 0.68 par:pas; +identifiées identifier ver f p 38.52 18.92 0.4 0.14 par:pas; +identifiés identifier ver m p 38.52 18.92 2 0.47 par:pas; +identique identique adj s 7.9 15.41 4.02 8.04 +identiquement identiquement adv 0 0.54 0 0.54 +identiques identique adj p 7.9 15.41 3.88 7.36 +identitaire identitaire adj s 0.05 0.41 0.05 0.34 +identitaires identitaire adj f p 0.05 0.41 0 0.07 +identitarisme identitarisme nom m s 0 0.2 0 0.2 +identité identité nom f s 34.78 24.19 32.83 22.64 +identités identité nom f p 34.78 24.19 1.96 1.55 +ides ides nom f p 0.29 0.54 0.29 0.54 +idiolectes idiolecte nom m p 0 0.07 0 0.07 +idiomatique idiomatique adj s 0.02 0.07 0.01 0 +idiomatiques idiomatique adj f p 0.02 0.07 0.01 0.07 +idiome idiome nom m s 0.06 1.35 0.06 0.88 +idiomes idiome nom m p 0.06 1.35 0 0.47 +idiopathique idiopathique adj s 0.06 0 0.06 0 +idiosyncrasie idiosyncrasie nom f s 0.06 0.2 0.04 0.07 +idiosyncrasies idiosyncrasie nom f p 0.06 0.2 0.02 0.14 +idiosyncrasique idiosyncrasique adj m s 0.01 0 0.01 0 +idiot idiot nom m s 90.57 22.03 55.73 12.64 +idiote idiot nom f s 90.57 22.03 18.4 5.07 +idiotement idiotement adv 0 0.61 0 0.61 +idiotes idiot adj f p 74.06 33.24 3.62 2.16 +idiotie idiotie nom f s 5.27 2.97 1.81 1.96 +idioties idiotie nom f p 5.27 2.97 3.46 1.01 +idiotisme idiotisme nom m s 0.14 0.14 0.14 0.07 +idiotismes idiotisme nom m p 0.14 0.14 0 0.07 +idiots idiot nom m p 90.57 22.03 15.08 3.92 +idoine idoine adj s 0.02 0.95 0.01 0.74 +idoines idoine adj p 0.02 0.95 0.01 0.2 +idole idole nom f s 5.43 10.07 4.77 6.35 +idoles idole nom f p 5.43 10.07 0.66 3.72 +idolâtraient idolâtrer ver 1.03 1.15 0 0.07 ind:imp:3p; +idolâtrait idolâtrer ver 1.03 1.15 0.11 0.61 ind:imp:3s; +idolâtrant idolâtrer ver 1.03 1.15 0.14 0.07 par:pre; +idolâtre idolâtrer ver 1.03 1.15 0.17 0.07 ind:pre:1s;ind:pre:3s; +idolâtrent idolâtrer ver 1.03 1.15 0.17 0 ind:pre:3p; +idolâtrer idolâtrer ver 1.03 1.15 0.12 0.27 inf; +idolâtres idolâtre nom p 0.16 0.61 0.14 0.34 +idolâtrie idolâtrie nom f s 0.38 1.08 0.38 0.95 +idolâtries idolâtrie nom f p 0.38 1.08 0 0.14 +idolâtré idolâtrer ver m s 1.03 1.15 0.05 0 par:pas; +idolâtrée idolâtrer ver f s 1.03 1.15 0.23 0.07 par:pas; +idylle idylle nom f s 1.13 3.31 1.07 2.7 +idylles idylle nom f p 1.13 3.31 0.06 0.61 +idyllique idyllique adj s 0.82 1.76 0.79 1.35 +idylliques idyllique adj p 0.82 1.76 0.03 0.41 +idéal idéal adj m s 21.85 16.35 15.8 7.97 +idéale idéal adj f s 21.85 16.35 5.32 7.03 +idéalement idéalement adv 0.28 1.22 0.28 1.22 +idéales idéal adj f p 21.85 16.35 0.4 1.15 +idéalisait idéaliser ver 0.68 0.81 0.02 0.07 ind:imp:3s; +idéalisant idéaliser ver 0.68 0.81 0.02 0.07 par:pre; +idéalisation idéalisation nom f s 0.16 0.14 0.16 0.14 +idéalise idéaliser ver 0.68 0.81 0.34 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +idéalisent idéaliser ver 0.68 0.81 0.01 0.07 ind:pre:3p; +idéaliser idéaliser ver 0.68 0.81 0.13 0.2 inf; +idéalisme idéalisme nom m s 0.98 1.96 0.98 1.82 +idéalismes idéalisme nom m p 0.98 1.96 0 0.14 +idéaliste idéaliste nom s 1.61 1.69 1.33 1.08 +idéalistes idéaliste adj p 1.2 1.15 0.44 0.2 +idéalisé idéaliser ver m s 0.68 0.81 0.08 0.14 par:pas; +idéalisée idéaliser ver f s 0.68 0.81 0.07 0.2 par:pas; +idéalisées idéaliser ver f p 0.68 0.81 0.01 0 par:pas; +idéalisés idéaliser ver m p 0.68 0.81 0.01 0.07 par:pas; +idéals idéal adj m p 21.85 16.35 0.01 0 +idéation idéation nom f s 0.03 0 0.03 0 +idéaux idéal nom m p 11.22 12.23 3.22 0.74 +idée idée nom f s 389.77 328.45 330.39 241.08 +idée_clé idée_clé nom f s 0.01 0 0.01 0 +idée_force idée_force nom f s 0.01 0.2 0.01 0.07 +idéel idéel adj m s 0.01 0 0.01 0 +idées idée nom f p 389.77 328.45 59.38 87.36 +idée_force idée_force nom f p 0.01 0.2 0 0.14 +idéogramme idéogramme nom m s 0.39 0.74 0.17 0 +idéogrammes idéogramme nom m p 0.39 0.74 0.22 0.74 +idéographie idéographie nom f s 0.01 0 0.01 0 +idéographique idéographique adj m s 0 0.07 0 0.07 +idéologie idéologie nom f s 2.59 4.05 2.07 2.97 +idéologies idéologie nom f p 2.59 4.05 0.52 1.08 +idéologique idéologique adj s 1.8 2.7 1.41 1.89 +idéologiquement idéologiquement adv 0.1 0.27 0.1 0.27 +idéologiques idéologique adj p 1.8 2.7 0.39 0.81 +idéologue idéologue nom s 0.38 0.54 0.28 0.34 +idéologues idéologue nom p 0.38 0.54 0.1 0.2 +if if nom m s 7.19 1.55 7.17 0.81 +ifs if nom m p 7.19 1.55 0.02 0.74 +iftar iftar nom m s 0 0.07 0 0.07 +igloo igloo nom m s 1.08 0.27 0.54 0.07 +igloos igloo nom m p 1.08 0.27 0.55 0.2 +igname igname nom f s 0.18 0.34 0.05 0.07 +ignames igname nom f p 0.18 0.34 0.13 0.27 +ignare ignare adj s 0.75 1.42 0.55 0.88 +ignares ignare nom p 0.78 0.61 0.3 0.34 +ignifuge ignifuge adj f s 0 0.07 0 0.07 +ignifugeant ignifuger ver 0.17 0.07 0.01 0 par:pre; +ignifuger ignifuger ver 0.17 0.07 0 0.07 inf; +ignifugé ignifugé adj m s 0.07 0.2 0.04 0.07 +ignifugée ignifugé adj f s 0.07 0.2 0.02 0.07 +ignifugées ignifuger ver f p 0.17 0.07 0.14 0 par:pas; +ignifugés ignifugé adj m p 0.07 0.2 0.01 0.07 +ignition ignition nom f s 0.05 0.34 0.05 0.34 +ignoble ignoble adj s 8.11 12.3 6.95 9.19 +ignoblement ignoblement adv 0.16 0.88 0.16 0.88 +ignobles ignoble adj p 8.11 12.3 1.16 3.11 +ignominie ignominie nom f s 0.88 3.72 0.76 3.18 +ignominies ignominie nom f p 0.88 3.72 0.13 0.54 +ignominieuse ignominieux adj f s 0.39 0.88 0.12 0.54 +ignominieusement ignominieusement adv 0 0.47 0 0.47 +ignominieuses ignominieux adj f p 0.39 0.88 0.01 0.07 +ignominieux ignominieux adj m s 0.39 0.88 0.26 0.27 +ignora ignorer ver 156.55 108.45 0.26 1.49 ind:pas:3s; +ignorai ignorer ver 156.55 108.45 0.02 0.14 ind:pas:1s; +ignoraient ignorer ver 156.55 108.45 1.2 4.46 ind:imp:3p; +ignorais ignorer ver 156.55 108.45 24.82 10.61 ind:imp:1s;ind:imp:2s; +ignorait ignorer ver 156.55 108.45 5.32 26.01 ind:imp:3s; +ignorance ignorance nom f s 6.54 16.82 6.54 16.35 +ignorances ignorance nom f p 6.54 16.82 0 0.47 +ignorant ignorant adj m s 3.9 6.22 1.79 2.5 +ignorante ignorant adj f s 3.9 6.22 0.61 1.55 +ignorantes ignorant adj f p 3.9 6.22 0.15 0.41 +ignorantins ignorantin adj m p 0 0.14 0 0.14 +ignorants ignorant nom m p 3.41 3.45 1.36 1.08 +ignorassent ignorer ver 156.55 108.45 0 0.07 sub:imp:3p; +ignore ignorer ver 156.55 108.45 76.78 22.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ignorent ignorer ver 156.55 108.45 5.09 5.07 ind:pre:3p; +ignorer ignorer ver 156.55 108.45 13.04 16.89 inf; +ignorera ignorer ver 156.55 108.45 0.31 0.27 ind:fut:3s; +ignorerai ignorer ver 156.55 108.45 0.13 0.41 ind:fut:1s; +ignoreraient ignorer ver 156.55 108.45 0.01 0 cnd:pre:3p; +ignorerais ignorer ver 156.55 108.45 0.15 0 cnd:pre:1s;cnd:pre:2s; +ignorerait ignorer ver 156.55 108.45 0.04 0.27 cnd:pre:3s; +ignoreras ignorer ver 156.55 108.45 0.04 0 ind:fut:2s; +ignoreriez ignorer ver 156.55 108.45 0.09 0 cnd:pre:2p; +ignorerons ignorer ver 156.55 108.45 0.02 0 ind:fut:1p; +ignoreront ignorer ver 156.55 108.45 0.1 0 ind:fut:3p; +ignores ignorer ver 156.55 108.45 5.89 1.42 ind:pre:2s;sub:pre:2s; +ignorez ignorer ver 156.55 108.45 9.84 2.5 imp:pre:2p;ind:pre:2p; +ignoriez ignorer ver 156.55 108.45 1.84 0.61 ind:imp:2p;sub:pre:2p; +ignorions ignorer ver 156.55 108.45 0.73 1.49 ind:imp:1p; +ignorons ignorer ver 156.55 108.45 4.5 1.28 imp:pre:1p;ind:pre:1p; +ignorât ignorer ver 156.55 108.45 0 0.54 sub:imp:3s; +ignorèrent ignorer ver 156.55 108.45 0 0.2 ind:pas:3p; +ignoré ignorer ver m s 156.55 108.45 3.36 3.58 par:pas; +ignorée ignorer ver f s 156.55 108.45 0.7 1.28 par:pas; +ignorées ignorer ver f p 156.55 108.45 0.14 0.34 par:pas; +ignorés ignorer ver m p 156.55 108.45 0.41 0.74 par:pas; +igné igné adj m s 0.02 0.2 0 0.2 +ignée igné adj f s 0.02 0.2 0.02 0 +iguane iguane nom m s 0.69 0.74 0.63 0.2 +iguanes iguane nom m p 0.69 0.74 0.06 0.54 +iguanodon iguanodon nom m s 0 0.14 0 0.07 +iguanodons iguanodon nom m p 0 0.14 0 0.07 +igue igue nom f s 0.01 0.07 0.01 0 +igues igue nom f p 0.01 0.07 0 0.07 +ikebana ikebana nom m s 0.02 0.07 0.02 0.07 +il il pro_per m s 13222.93 15832.09 13222.93 15832.09 +iles ile nom m p 1.25 0.2 1.25 0.2 +iliaque iliaque adj f s 0.14 0.2 0.14 0.07 +iliaques iliaque adj f p 0.14 0.2 0.01 0.14 +ilium ilium nom m s 0.01 0 0.01 0 +illettrisme illettrisme nom m s 0.05 0.07 0.05 0.07 +illettré illettré adj m s 1.54 1.01 1.04 0.41 +illettrée illettré adj f s 1.54 1.01 0.33 0.47 +illettrés illettré nom m p 0.62 0.68 0.2 0.27 +illicite illicite adj s 1.07 1.42 0.44 0.74 +illicitement illicitement adv 0.01 0 0.01 0 +illicites illicite adj p 1.07 1.42 0.63 0.68 +illico illico adv_sup 2.19 7.16 2.19 7.16 +illimité illimité adj m s 2.56 3.92 1.52 1.49 +illimitée illimité adj f s 2.56 3.92 0.6 1.69 +illimitées illimité adj f p 2.56 3.92 0.26 0.54 +illimités illimité adj m p 2.56 3.92 0.18 0.2 +illisible illisible adj s 0.83 6.76 0.68 5.68 +illisibles illisible adj p 0.83 6.76 0.14 1.08 +illogique illogique adj s 0.46 0.88 0.39 0.81 +illogiquement illogiquement adv 0 0.07 0 0.07 +illogiques illogique adj p 0.46 0.88 0.07 0.07 +illogisme illogisme nom m s 0.01 0.47 0.01 0.34 +illogismes illogisme nom m p 0.01 0.47 0 0.14 +illumina illuminer ver 6.43 20 0.14 2.57 ind:pas:3s; +illuminaient illuminer ver 6.43 20 0.21 1.35 ind:imp:3p; +illuminait illuminer ver 6.43 20 0.27 3.11 ind:imp:3s; +illuminant illuminer ver 6.43 20 0.2 1.01 par:pre; +illuminateurs illuminateur nom m p 0 0.07 0 0.07 +illumination illumination nom f s 1.89 4.19 1.63 3.11 +illuminations illumination nom f p 1.89 4.19 0.26 1.08 +illumine illuminer ver 6.43 20 2.1 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +illuminent illuminer ver 6.43 20 0.36 0.54 ind:pre:3p; +illuminer illuminer ver 6.43 20 1.12 1.08 inf; +illuminera illuminer ver 6.43 20 0.17 0.07 ind:fut:3s; +illuminerai illuminer ver 6.43 20 0.02 0 ind:fut:1s; +illuminerait illuminer ver 6.43 20 0 0.2 cnd:pre:3s; +illumineront illuminer ver 6.43 20 0.01 0.07 ind:fut:3p; +illuminez illuminer ver 6.43 20 0.17 0 imp:pre:2p; +illuministes illuministe adj f p 0 0.07 0 0.07 +illuminèrent illuminer ver 6.43 20 0 0.47 ind:pas:3p; +illuminé illuminer ver m s 6.43 20 1.05 2.91 par:pas; +illuminée illuminer ver f s 6.43 20 0.56 2.03 par:pas; +illuminées illuminé adj f p 0.6 7.57 0.01 1.08 +illuminés illuminé nom m p 0.8 2.5 0.16 0.81 +illusion illusion nom f s 19.14 47.36 11.19 30.27 +illusionnait illusionner ver 0.25 1.01 0 0.2 ind:imp:3s; +illusionne illusionner ver 0.25 1.01 0.05 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +illusionnent illusionner ver 0.25 1.01 0 0.07 ind:pre:3p; +illusionner illusionner ver 0.25 1.01 0.1 0.41 inf; +illusionnez illusionner ver 0.25 1.01 0.1 0.07 imp:pre:2p;ind:pre:2p; +illusionnisme illusionnisme nom m s 0.01 0.34 0.01 0.34 +illusionniste illusionniste nom s 0.17 0.61 0.14 0.54 +illusionnistes illusionniste nom p 0.17 0.61 0.04 0.07 +illusions illusion nom f p 19.14 47.36 7.95 17.09 +illusoire illusoire adj s 0.95 5.81 0.81 4.59 +illusoirement illusoirement adv 0 0.14 0 0.14 +illusoires illusoire adj p 0.95 5.81 0.15 1.22 +illustra illustrer ver 2.59 11.55 0.04 0.27 ind:pas:3s; +illustraient illustrer ver 2.59 11.55 0.01 0.61 ind:imp:3p; +illustrait illustrer ver 2.59 11.55 0.04 0.68 ind:imp:3s; +illustrant illustrer ver 2.59 11.55 0.08 1.15 par:pre; +illustrateur illustrateur nom m s 0.15 0.2 0.1 0.2 +illustration illustration nom f s 1.37 7.91 0.67 4.86 +illustrations illustration nom f p 1.37 7.91 0.7 3.04 +illustratrice illustrateur nom f s 0.15 0.2 0.05 0 +illustre illustre adj s 4.38 9.66 2.6 6.22 +illustrement illustrement adv 0 0.2 0 0.2 +illustrent illustrer ver 2.59 11.55 0.08 0.54 ind:pre:3p; +illustrer illustrer ver 2.59 11.55 1.08 3.18 inf; +illustrera illustrer ver 2.59 11.55 0.01 0.07 ind:fut:3s; +illustrerai illustrer ver 2.59 11.55 0.01 0 ind:fut:1s; +illustrerait illustrer ver 2.59 11.55 0.01 0.07 cnd:pre:3s; +illustres illustre adj p 4.38 9.66 1.78 3.45 +illustrions illustrer ver 2.59 11.55 0 0.07 ind:imp:1p; +illustrissime illustrissime adj f s 0 0.54 0 0.27 +illustrissimes illustrissime adj f p 0 0.54 0 0.27 +illustré illustré adj m s 0.74 2.77 0.1 1.55 +illustrée illustrer ver f s 2.59 11.55 0.34 0.61 par:pas; +illustrées illustré adj f p 0.74 2.77 0.15 0.07 +illustrés illustré adj m p 0.74 2.77 0.39 0.74 +illégal illégal adj m s 19.88 1.76 11.93 0.88 +illégale illégal adj f s 19.88 1.76 4.03 0.47 +illégalement illégalement adv 1.87 0.2 1.87 0.2 +illégales illégal adj f p 19.88 1.76 2.28 0.41 +illégalistes illégaliste nom p 0 0.07 0 0.07 +illégalité illégalité nom f s 0.55 0.81 0.55 0.81 +illégaux illégal adj m p 19.88 1.76 1.65 0 +illégitime illégitime adj s 1.52 0.95 1.18 0.61 +illégitimement illégitimement adv 0.02 0 0.02 0 +illégitimes illégitime adj p 1.52 0.95 0.34 0.34 +illégitimité illégitimité nom f s 0.04 0.2 0.04 0.2 +ilote ilote nom m s 0 0.61 0 0.27 +ilotes ilote nom m p 0 0.61 0 0.34 +ilotisme ilotisme nom m s 0.14 0 0.14 0 +ils ils pro_per m p 3075.07 2809.53 3075.07 2809.53 +iléaux iléal adj m p 0.01 0 0.01 0 +iléus iléus nom m 0.03 0 0.03 0 +image image nom f s 82.13 188.92 51.34 119.39 +imageant imager ver 0.73 1.76 0.01 0 par:pre; +imager imager ver 0.73 1.76 0.02 0.07 inf; +imagerie imagerie nom f s 0.54 2.09 0.54 1.89 +imageries imagerie nom f p 0.54 2.09 0 0.2 +images image nom f p 82.13 188.92 30.79 69.53 +imageur imageur nom m s 0.03 0 0.02 0 +imageurs imageur nom m p 0.03 0 0.01 0 +imagier imagier nom m s 0 1.01 0 0.27 +imagiers imagier nom m p 0 1.01 0 0.74 +imagina imaginer ver 194.29 241.15 0.29 8.78 ind:pas:3s; +imaginable imaginable adj s 0.79 2.36 0.2 1.08 +imaginables imaginable adj p 0.79 2.36 0.58 1.28 +imaginai imaginer ver 194.29 241.15 0.05 3.72 ind:pas:1s; +imaginaient imaginer ver 194.29 241.15 0.27 2.91 ind:imp:3p; +imaginaire imaginaire adj s 5.34 19.32 3.8 12.36 +imaginairement imaginairement adv 0 0.14 0 0.14 +imaginaires imaginaire adj p 5.34 19.32 1.54 6.96 +imaginais imaginer ver 194.29 241.15 11.64 19.66 ind:imp:1s;ind:imp:2s; +imaginait imaginer ver 194.29 241.15 1.63 27.84 ind:imp:3s; +imaginant imaginer ver 194.29 241.15 0.78 7.57 par:pre; +imaginatif imaginatif adj m s 0.75 2.09 0.44 1.08 +imaginatifs imaginatif adj m p 0.75 2.09 0.02 0.34 +imagination imagination nom f s 27.64 48.58 27.14 45.81 +imaginations imagination nom f p 27.64 48.58 0.5 2.77 +imaginative imaginatif adj f s 0.75 2.09 0.15 0.54 +imaginatives imaginatif adj f p 0.75 2.09 0.14 0.14 +imagine imaginer ver 194.29 241.15 77.33 53.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +imaginent imaginer ver 194.29 241.15 2.05 4.46 ind:pre:3p; +imaginer imaginer ver 194.29 241.15 37.09 64.26 ind:pre:2p;inf; +imaginerai imaginer ver 194.29 241.15 0.08 0.14 ind:fut:1s; +imagineraient imaginer ver 194.29 241.15 0.23 0.41 cnd:pre:3p; +imaginerais imaginer ver 194.29 241.15 0.03 0.27 cnd:pre:1s; +imaginerait imaginer ver 194.29 241.15 0.13 0.81 cnd:pre:3s; +imagineras imaginer ver 194.29 241.15 0.05 0 ind:fut:2s; +imaginerez imaginer ver 194.29 241.15 0.2 0 ind:fut:2p; +imagineriez imaginer ver 194.29 241.15 0 0.07 cnd:pre:2p; +imaginerons imaginer ver 194.29 241.15 0 0.07 ind:fut:1p; +imagineront imaginer ver 194.29 241.15 0.04 0.14 ind:fut:3p; +imagines imaginer ver 194.29 241.15 19.91 9.46 ind:pre:2s;sub:pre:2s; +imaginez imaginer ver 194.29 241.15 23.35 10.54 imp:pre:2p;ind:pre:2p; +imaginiez imaginer ver 194.29 241.15 0.86 0.41 ind:imp:2p;sub:pre:2p; +imaginions imaginer ver 194.29 241.15 0.48 1.55 ind:imp:1p; +imaginons imaginer ver 194.29 241.15 2.8 0.74 imp:pre:1p;ind:pre:1p; +imaginâmes imaginer ver 194.29 241.15 0 0.14 ind:pas:1p; +imaginât imaginer ver 194.29 241.15 0 0.2 sub:imp:3s; +imaginèrent imaginer ver 194.29 241.15 0.02 0.41 ind:pas:3p; +imaginé imaginer ver m s 194.29 241.15 13.33 18.38 par:pas; +imaginée imaginer ver f s 194.29 241.15 1.34 2.77 par:pas; +imaginées imaginer ver f p 194.29 241.15 0.09 1.01 par:pas; +imaginés imaginer ver m p 194.29 241.15 0.21 0.88 par:pas; +imago imago nom m s 0 0.07 0 0.07 +imagé imagé adj m s 0.1 1.01 0.08 0.34 +imagée imagé adj f s 0.1 1.01 0.02 0.34 +imagées imager ver f p 0.73 1.76 0.01 0.07 par:pas; +imagés imagé adj m p 0.1 1.01 0 0.2 +imam imam nom m s 1.27 0.34 1.11 0.14 +imams imam nom m p 1.27 0.34 0.16 0.2 +iman iman nom m s 0.02 0.07 0.02 0.07 +imbaisable imbaisable adj s 0.14 0.07 0.14 0.07 +imbattable imbattable adj s 2.12 2.43 1.86 2.03 +imbattables imbattable adj m p 2.12 2.43 0.27 0.41 +imberbe imberbe adj s 0.27 1.35 0.21 0.95 +imberbes imberbe adj p 0.27 1.35 0.06 0.41 +imbiba imbiber ver 1.28 7.36 0 0.14 ind:pas:3s; +imbibaient imbiber ver 1.28 7.36 0 0.2 ind:imp:3p; +imbibais imbiber ver 1.28 7.36 0.01 0 ind:imp:1s; +imbibait imbiber ver 1.28 7.36 0 0.61 ind:imp:3s; +imbibant imbiber ver 1.28 7.36 0.01 0.41 par:pre; +imbibe imbiber ver 1.28 7.36 0.03 0.54 ind:pre:3s; +imbiber imbiber ver 1.28 7.36 0.3 0.34 inf; +imbiberai imbiber ver 1.28 7.36 0.02 0 ind:fut:1s; +imbiberais imbiber ver 1.28 7.36 0 0.07 cnd:pre:1s; +imbiberait imbiber ver 1.28 7.36 0.01 0.07 cnd:pre:3s; +imbibition imbibition nom f s 0 0.07 0 0.07 +imbibé imbiber ver m s 1.28 7.36 0.39 2.77 par:pas; +imbibée imbiber ver f s 1.28 7.36 0.27 1.15 par:pas; +imbibées imbibé adj f p 0.36 0.81 0.14 0 +imbibés imbiber ver m p 1.28 7.36 0.21 0.88 par:pas; +imbitable imbitable adj m s 0.03 0.07 0.01 0.07 +imbitables imbitable adj m p 0.03 0.07 0.02 0 +imbittable imbittable adj s 0 0.07 0 0.07 +imbrication imbrication nom f s 0 0.61 0 0.47 +imbrications imbrication nom f p 0 0.61 0 0.14 +imbriquaient imbriquer ver 0.23 1.35 0 0.07 ind:imp:3p; +imbriquait imbriquer ver 0.23 1.35 0 0.14 ind:imp:3s; +imbriquant imbriquer ver 0.23 1.35 0 0.14 par:pre; +imbrique imbriquer ver 0.23 1.35 0.04 0.2 ind:pre:3s; +imbriquent imbriquer ver 0.23 1.35 0.03 0.27 ind:pre:3p; +imbriquer imbriquer ver 0.23 1.35 0.1 0.07 inf; +imbriqué imbriqué adj m s 0.05 0.74 0 0.14 +imbriquée imbriquer ver f s 0.23 1.35 0.01 0.07 par:pas; +imbriquées imbriqué adj f p 0.05 0.74 0.03 0.47 +imbriqués imbriquer ver m p 0.23 1.35 0.04 0.2 par:pas; +imbrisable imbrisable adj s 0.01 0 0.01 0 +imbroglio imbroglio nom m s 0.46 1.69 0.33 1.55 +imbroglios imbroglio nom m p 0.46 1.69 0.13 0.14 +imbu imbu adj m s 0.56 1.42 0.41 0.88 +imbue imbu adj f s 0.56 1.42 0.09 0.27 +imbues imbu adj f p 0.56 1.42 0.01 0.07 +imbus imbu adj m p 0.56 1.42 0.05 0.2 +imbuvable imbuvable adj f s 0.6 0.47 0.6 0.47 +imbécile imbécile nom s 43.42 30.68 35.01 20.47 +imbécilement imbécilement adv 0 0.27 0 0.27 +imbéciles imbécile nom p 43.42 30.68 8.42 10.2 +imbécillité imbécillité nom f s 0.25 2.7 0.2 2.23 +imbécillités imbécillité nom f p 0.25 2.7 0.05 0.47 +imidazole imidazole nom m s 0.03 0 0.03 0 +imita imiter ver 14.7 41.35 0.01 3.51 ind:pas:3s; +imitable imitable adj m s 0 0.14 0 0.07 +imitables imitable adj m p 0 0.14 0 0.07 +imitai imiter ver 14.7 41.35 0.01 0.07 ind:pas:1s; +imitaient imiter ver 14.7 41.35 0.14 0.95 ind:imp:3p; +imitais imiter ver 14.7 41.35 0.45 0.81 ind:imp:1s;ind:imp:2s; +imitait imiter ver 14.7 41.35 0.45 4.12 ind:imp:3s; +imitant imiter ver 14.7 41.35 0.46 7.64 par:pre; +imitateur imitateur nom m s 1 0.47 0.48 0.34 +imitateurs imitateur nom m p 1 0.47 0.39 0.14 +imitation imitation nom f s 4.25 7.3 3.33 5.68 +imitations imitation nom f p 4.25 7.3 0.92 1.62 +imitative imitatif adj f s 0 0.2 0 0.14 +imitatives imitatif adj f p 0 0.2 0 0.07 +imitatrice imitateur nom f s 1 0.47 0.13 0 +imite imiter ver 14.7 41.35 3.85 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imitent imiter ver 14.7 41.35 0.78 0.95 ind:pre:3p; +imiter imiter ver 14.7 41.35 6.01 12.97 ind:pre:2p;inf; +imitera imiter ver 14.7 41.35 0.11 0.07 ind:fut:3s; +imiterai imiter ver 14.7 41.35 0.05 0.07 ind:fut:1s; +imiteraient imiter ver 14.7 41.35 0.01 0.07 cnd:pre:3p; +imiterais imiter ver 14.7 41.35 0.01 0.07 cnd:pre:1s; +imiterait imiter ver 14.7 41.35 0.04 0.14 cnd:pre:3s; +imiteront imiter ver 14.7 41.35 0.08 0.07 ind:fut:3p; +imites imiter ver 14.7 41.35 0.7 0.07 ind:pre:2s; +imitez imiter ver 14.7 41.35 0.5 0.07 imp:pre:2p;ind:pre:2p; +imitiez imiter ver 14.7 41.35 0.04 0.07 ind:imp:2p; +imitions imiter ver 14.7 41.35 0.01 0.07 ind:imp:1p; +imitons imiter ver 14.7 41.35 0.26 0.14 imp:pre:1p;ind:pre:1p; +imitâmes imiter ver 14.7 41.35 0 0.07 ind:pas:1p; +imitât imiter ver 14.7 41.35 0 0.07 sub:imp:3s; +imitèrent imiter ver 14.7 41.35 0 1.08 ind:pas:3p; +imité imiter ver m s 14.7 41.35 0.4 2.57 par:pas; +imitée imiter ver f s 14.7 41.35 0.28 0.68 par:pas; +imitées imiter ver f p 14.7 41.35 0.02 0.41 par:pas; +imités imiter ver m p 14.7 41.35 0.03 0.68 par:pas; +immaculation immaculation nom f s 0 0.54 0 0.54 +immaculé immaculé adj m s 2.29 9.39 1.05 2.84 +immaculée immaculé adj f s 2.29 9.39 0.66 3.85 +immaculées immaculé adj f p 2.29 9.39 0.27 1.08 +immaculés immaculé adj m p 2.29 9.39 0.32 1.62 +immanence immanence nom f s 0 0.07 0 0.07 +immanent immanent adj m s 0.07 1.01 0 0.14 +immanente immanent adj f s 0.07 1.01 0.07 0.88 +immanentisme immanentisme nom m s 0 0.07 0 0.07 +immangeable immangeable adj m s 0.74 0.68 0.69 0.54 +immangeables immangeable adj p 0.74 0.68 0.05 0.14 +immanquable immanquable adj s 0.04 0.14 0.04 0.07 +immanquablement immanquablement adv 0.1 3.24 0.1 3.24 +immanquables immanquable adj p 0.04 0.14 0 0.07 +immarcescible immarcescible adj s 0 0.07 0 0.07 +immatriculation immatriculation nom f s 4.64 0.95 4.13 0.88 +immatriculations immatriculation nom f p 4.64 0.95 0.51 0.07 +immatriculer immatriculer ver 0.95 1.15 0.04 0 inf; +immatriculé immatriculé adj m s 1.68 0.07 0.28 0 +immatriculée immatriculé adj f s 1.68 0.07 1.4 0.07 +immatriculées immatriculer ver f p 0.95 1.15 0.03 0.27 par:pas; +immature immature adj s 2.98 0.27 2.42 0.2 +immatures immature adj p 2.98 0.27 0.56 0.07 +immaturité immaturité nom f s 0.48 0.34 0.48 0.34 +immatérialité immatérialité nom f s 0 0.07 0 0.07 +immatériel immatériel adj m s 0.42 3.72 0.23 1.76 +immatérielle immatériel adj f s 0.42 3.72 0.17 1.49 +immatérielles immatériel adj f p 0.42 3.72 0 0.2 +immatériels immatériel adj m p 0.42 3.72 0.03 0.27 +immense immense adj s 21.56 106.89 19.01 83.99 +immenses immense adj p 21.56 106.89 2.55 22.91 +immensité immensité nom f s 1.53 8.45 1.52 7.97 +immensités immensité nom f p 1.53 8.45 0.01 0.47 +immensurable immensurable adj s 0 0.14 0 0.14 +immensément immensément adv 0.39 2.3 0.39 2.3 +immerge immerger ver 1.95 2.84 0.17 0.14 ind:pre:1s;ind:pre:3s; +immergea immerger ver 1.95 2.84 0 0.14 ind:pas:3s; +immergeait immerger ver 1.95 2.84 0 0.27 ind:imp:3s; +immergeant immerger ver 1.95 2.84 0.01 0 par:pre; +immergent immerger ver 1.95 2.84 0 0.07 ind:pre:3p; +immergeons immerger ver 1.95 2.84 0.1 0 imp:pre:1p; +immerger immerger ver 1.95 2.84 0.39 0.41 inf; +immergerons immerger ver 1.95 2.84 0.01 0 ind:fut:1p; +immergez immerger ver 1.95 2.84 0.03 0 imp:pre:2p; +immergiez immerger ver 1.95 2.84 0 0.07 ind:imp:2p; +immergèrent immerger ver 1.95 2.84 0.1 0.07 ind:pas:3p; +immergé immerger ver m s 1.95 2.84 0.67 0.81 par:pas; +immergée immerger ver f s 1.95 2.84 0.22 0.41 par:pas; +immergées immergé adj f p 0.29 1.42 0.11 0.34 +immergés immerger ver m p 1.95 2.84 0.25 0.27 par:pas; +immersion immersion nom f s 1.29 1.15 1.29 1.15 +immettable immettable adj s 0.16 0.14 0.16 0.14 +immeuble immeuble nom m s 30.03 68.78 24.54 50.88 +immeubles immeuble nom m p 30.03 68.78 5.49 17.91 +immigrai immigrer ver 0.68 0.34 0 0.07 ind:pas:1s; +immigrant immigrant nom m s 1.46 0.88 0.43 0.2 +immigrante immigrant nom f s 1.46 0.88 0.06 0 +immigrants immigrant nom m p 1.46 0.88 0.96 0.68 +immigration immigration nom f s 4.91 0.81 4.91 0.81 +immigrer immigrer ver 0.68 0.34 0.29 0.07 inf; +immigré immigré nom m s 1.54 2.84 0.42 0.2 +immigrée immigré adj f s 0.83 1.28 0.28 0.07 +immigrées immigré adj f p 0.83 1.28 0.01 0.2 +immigrés immigré nom m p 1.54 2.84 1.02 2.5 +imminence imminence nom f s 0.12 3.38 0.12 3.38 +imminent imminent adj m s 4.63 7.64 1.79 2.03 +imminente imminent adj f s 4.63 7.64 2.58 4.73 +imminentes imminent adj f p 4.63 7.64 0.17 0.41 +imminents imminent adj m p 4.63 7.64 0.08 0.47 +immisce immiscer ver 1.56 1.62 0.15 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immiscent immiscer ver 1.56 1.62 0.07 0.07 ind:pre:3p; +immiscer immiscer ver 1.56 1.62 1.17 1.08 inf; +immiscerait immiscer ver 1.56 1.62 0.02 0 cnd:pre:3s; +immisces immiscer ver 1.56 1.62 0.01 0 ind:pre:2s; +immiscibles immiscible adj m p 0 0.07 0 0.07 +immiscé immiscer ver m s 1.56 1.62 0.06 0.07 par:pas; +immiscée immiscer ver f s 1.56 1.62 0.04 0 par:pas; +immisçaient immiscer ver 1.56 1.62 0 0.14 ind:imp:3p; +immisçait immiscer ver 1.56 1.62 0.01 0.14 ind:imp:3s; +immisçant immiscer ver 1.56 1.62 0.02 0.14 par:pre; +immixtion immixtion nom f s 0.1 0.54 0.1 0.47 +immixtions immixtion nom f p 0.1 0.54 0 0.07 +immobile immobile adj s 8.03 116.42 6.67 87.5 +immobiles immobile adj p 8.03 116.42 1.35 28.92 +immobilier immobilier adj m s 6.43 3.45 3.27 1.76 +immobiliers immobilier adj m p 6.43 3.45 1.13 0.47 +immobilisa immobiliser ver 3.23 30.27 0 8.24 ind:pas:3s; +immobilisai immobiliser ver 3.23 30.27 0 0.27 ind:pas:1s; +immobilisaient immobiliser ver 3.23 30.27 0 0.54 ind:imp:3p; +immobilisais immobiliser ver 3.23 30.27 0 0.14 ind:imp:1s; +immobilisait immobiliser ver 3.23 30.27 0.14 2.23 ind:imp:3s; +immobilisant immobiliser ver 3.23 30.27 0.01 1.76 par:pre; +immobilisation immobilisation nom f s 0.08 0.34 0.08 0.27 +immobilisations immobilisation nom f p 0.08 0.34 0 0.07 +immobilise immobiliser ver 3.23 30.27 0.53 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +immobilisent immobiliser ver 3.23 30.27 0.01 0.81 ind:pre:3p; +immobiliser immobiliser ver 3.23 30.27 0.75 2.91 inf;; +immobilisera immobiliser ver 3.23 30.27 0.07 0.07 ind:fut:3s; +immobiliserait immobiliser ver 3.23 30.27 0.01 0.07 cnd:pre:3s; +immobiliseront immobiliser ver 3.23 30.27 0.02 0.07 ind:fut:3p; +immobilises immobiliser ver 3.23 30.27 0.01 0.07 ind:pre:2s; +immobilisez immobiliser ver 3.23 30.27 0.24 0 imp:pre:2p; +immobilisme immobilisme nom m s 0.04 0.27 0.04 0.27 +immobilisons immobiliser ver 3.23 30.27 0 0.07 ind:pre:1p; +immobilisèrent immobiliser ver 3.23 30.27 0 1.15 ind:pas:3p; +immobilisé immobiliser ver m s 3.23 30.27 0.61 3.58 par:pas; +immobilisée immobiliser ver f s 3.23 30.27 0.33 2.84 par:pas; +immobilisées immobiliser ver f p 3.23 30.27 0.02 0.41 par:pas; +immobilisés immobiliser ver m p 3.23 30.27 0.48 2.16 par:pas; +immobilité immobilité nom f s 0.66 21.96 0.66 21.62 +immobilités immobilité nom f p 0.66 21.96 0 0.34 +immobilière immobilier adj f s 6.43 3.45 1.75 0.81 +immobilières immobilier adj f p 6.43 3.45 0.28 0.41 +immodeste immodeste adj f s 0.13 0.2 0.13 0.07 +immodestes immodeste adj f p 0.13 0.2 0 0.14 +immodestie immodestie nom f s 0.01 0.07 0.01 0.07 +immodéré immodéré adj m s 0.13 1.22 0.13 0.81 +immodérée immodéré adj f s 0.13 1.22 0 0.14 +immodérées immodéré adj f p 0.13 1.22 0 0.07 +immodérément immodérément adv 0 0.2 0 0.2 +immodérés immodéré adj m p 0.13 1.22 0 0.2 +immola immoler ver 2.54 1.01 0.01 0.07 ind:pas:3s; +immolation immolation nom f s 0.05 0.2 0.05 0.14 +immolations immolation nom f p 0.05 0.2 0 0.07 +immole immoler ver 2.54 1.01 0.82 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immolent immoler ver 2.54 1.01 0.03 0 ind:pre:3p; +immoler immoler ver 2.54 1.01 0.73 0.2 inf; +immolé immoler ver m s 2.54 1.01 0.77 0.41 par:pas; +immolée immoler ver f s 2.54 1.01 0.01 0.07 par:pas; +immolés immoler ver m p 2.54 1.01 0.17 0.2 par:pas; +immonde immonde adj s 5.12 6.28 4.48 4.12 +immondes immonde adj p 5.12 6.28 0.64 2.16 +immondice immondice nom f s 0.46 2.36 0.02 0.14 +immondices immondice nom f p 0.46 2.36 0.44 2.23 +immoral immoral adj m s 3.88 1.76 2.96 0.81 +immorale immoral adj f s 3.88 1.76 0.59 0.27 +immoralement immoralement adv 0.27 0 0.27 0 +immorales immoral adj f p 3.88 1.76 0.07 0.14 +immoralisme immoralisme nom m s 0 0.2 0 0.2 +immoraliste immoraliste nom s 0 0.07 0 0.07 +immoralité immoralité nom f s 0.67 0.61 0.67 0.61 +immoraux immoral adj m p 3.88 1.76 0.26 0.54 +immortalisa immortaliser ver 1.17 1.62 0.01 0.14 ind:pas:3s; +immortalisait immortaliser ver 1.17 1.62 0 0.2 ind:imp:3s; +immortalisant immortaliser ver 1.17 1.62 0 0.14 par:pre; +immortalisation immortalisation nom f s 0 0.07 0 0.07 +immortalise immortaliser ver 1.17 1.62 0.09 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immortaliser immortaliser ver 1.17 1.62 0.55 0.74 inf; +immortaliseraient immortaliser ver 1.17 1.62 0.01 0 cnd:pre:3p; +immortaliseront immortaliser ver 1.17 1.62 0.02 0 ind:fut:3p; +immortalisez immortaliser ver 1.17 1.62 0.01 0 imp:pre:2p; +immortalisé immortaliser ver m s 1.17 1.62 0.28 0.07 par:pas; +immortalisée immortaliser ver f s 1.17 1.62 0.03 0.14 par:pas; +immortalisées immortaliser ver f p 1.17 1.62 0.11 0.07 par:pas; +immortalisés immortaliser ver m p 1.17 1.62 0.06 0.14 par:pas; +immortalité immortalité nom f s 3.67 4.53 3.67 4.46 +immortalités immortalité nom f p 3.67 4.53 0 0.07 +immortel immortel adj m s 6.66 5.74 2.88 2.3 +immortelle immortel adj f s 6.66 5.74 2.12 1.89 +immortelles immortel adj f p 6.66 5.74 0.36 0.54 +immortels immortel adj m p 6.66 5.74 1.29 1.01 +immortifiées immortifié adj f p 0 0.07 0 0.07 +immotivée immotivé adj f s 0.01 0.14 0 0.07 +immotivés immotivé adj m p 0.01 0.14 0.01 0.07 +immuabilité immuabilité nom f s 0.01 0.2 0.01 0.2 +immuable immuable adj s 1.64 9.8 1.24 7.84 +immuablement immuablement adv 0.01 0.74 0.01 0.74 +immuables immuable adj p 1.64 9.8 0.4 1.96 +immune immun adj f s 0.01 0.07 0.01 0.07 +immunisait immuniser ver 1.96 0.68 0 0.14 ind:imp:3s; +immunisation immunisation nom f s 0.08 0.07 0.08 0.07 +immunise immuniser ver 1.96 0.68 0.04 0.07 ind:pre:3s; +immunisent immuniser ver 1.96 0.68 0.03 0 ind:pre:3p; +immuniser immuniser ver 1.96 0.68 0.09 0.2 inf; +immunisé immuniser ver m s 1.96 0.68 0.97 0.2 par:pas; +immunisée immuniser ver f s 1.96 0.68 0.36 0.07 par:pas; +immunisés immuniser ver m p 1.96 0.68 0.48 0 par:pas; +immunitaire immunitaire adj s 1.73 0.54 1.64 0.2 +immunitaires immunitaire adj p 1.73 0.54 0.09 0.34 +immunité immunité nom f s 2.99 1.42 2.92 1.42 +immunités immunité nom f p 2.99 1.42 0.06 0 +immunodéficience immunodéficience nom f s 0.04 0 0.04 0 +immunodéficitaire immunodéficitaire adj f s 0.03 0 0.03 0 +immunodéprimé immunodéprimé adj m s 0.02 0 0.02 0 +immunogène immunogène adj f s 0 0.14 0 0.14 +immunologie immunologie nom f s 0.02 0 0.02 0 +immunologique immunologique adj s 0.05 0.07 0.05 0.07 +immunologiste immunologiste nom s 0.09 0 0.09 0 +immunostimulant immunostimulant nom m s 0.01 0 0.01 0 +immunothérapie immunothérapie nom f s 0.01 0 0.01 0 +immutabilité immutabilité nom f s 0.14 0 0.14 0 +immédiat immédiat adj m s 9.77 24.59 4.59 9.59 +immédiate immédiat adj f s 9.77 24.59 4.19 10.61 +immédiatement immédiatement adv 56.35 42.64 56.35 42.64 +immédiates immédiat adj f p 9.77 24.59 0.44 1.96 +immédiateté immédiateté nom f s 0.02 0.07 0.02 0.07 +immédiats immédiat adj m p 9.77 24.59 0.54 2.43 +immémorial immémorial adj m s 0.04 4.93 0 1.89 +immémoriale immémorial adj f s 0.04 4.93 0.01 1.15 +immémoriales immémorial adj f p 0.04 4.93 0.01 1.01 +immémoriaux immémorial adj m p 0.04 4.93 0.02 0.88 +immérité immérité adj m s 0.24 0.88 0.2 0.27 +imméritée immérité adj f s 0.24 0.88 0.02 0.27 +imméritées immérité adj f p 0.24 0.88 0 0.2 +immérités immérité adj m p 0.24 0.88 0.03 0.14 +impact impact nom m s 9.54 2.5 8.36 2.3 +impacts impact nom m p 9.54 2.5 1.19 0.2 +impair impair adj m s 0.58 1.08 0.2 0.68 +impaire impair adj f s 0.58 1.08 0.03 0 +impaires impair adj f p 0.58 1.08 0 0.14 +impairs impair adj m p 0.58 1.08 0.36 0.27 +impala impala nom m s 0.19 1.22 0.17 1.01 +impalas impala nom m p 0.19 1.22 0.02 0.2 +impalpabilité impalpabilité nom f s 0 0.07 0 0.07 +impalpable impalpable adj s 0.6 5.27 0.6 3.72 +impalpablement impalpablement adv 0 0.07 0 0.07 +impalpables impalpable adj p 0.6 5.27 0 1.55 +imparable imparable adj s 0.43 0.81 0.41 0.68 +imparablement imparablement adv 0 0.07 0 0.07 +imparables imparable adj f p 0.43 0.81 0.02 0.14 +impardonnable impardonnable adj s 2.84 3.11 2.46 2.7 +impardonnablement impardonnablement adv 0 0.07 0 0.07 +impardonnables impardonnable adj p 2.84 3.11 0.39 0.41 +imparfait imparfait adj m s 1.51 3.11 0.74 1.01 +imparfaite imparfait adj f s 1.51 3.11 0.23 1.22 +imparfaitement imparfaitement adv 0.02 0.81 0.02 0.81 +imparfaites imparfait adj f p 1.51 3.11 0.13 0.2 +imparfaits imparfait adj m p 1.51 3.11 0.41 0.68 +impartageable impartageable adj s 0 0.07 0 0.07 +imparti imparti adj m s 0.27 0.07 0.27 0.07 +impartial impartial adj m s 1.72 1.28 0.81 0.74 +impartiale impartial adj f s 1.72 1.28 0.69 0.27 +impartialement impartialement adv 0.04 0.34 0.04 0.34 +impartiales impartial adj f p 1.72 1.28 0.01 0.07 +impartialité impartialité nom f s 0.32 0.95 0.32 0.95 +impartiaux impartial adj m p 1.72 1.28 0.22 0.2 +impartie impartir ver f s 0.19 0.95 0 0.14 par:pas; +impartir impartir ver 0.19 0.95 0 0.14 inf; +impartis impartir ver m p 0.19 0.95 0 0.27 par:pas; +impassable impassable adj s 0.02 0 0.02 0 +impasse impasse nom f s 6.95 10.47 6.3 9.19 +impasses impasse nom f p 6.95 10.47 0.65 1.28 +impassibilité impassibilité nom f s 0 2.43 0 2.43 +impassible impassible adj s 1.48 11.49 1.29 9.66 +impassiblement impassiblement adv 0 0.14 0 0.14 +impassibles impassible adj p 1.48 11.49 0.18 1.82 +impatiemment impatiemment adv 0.79 2.5 0.79 2.5 +impatience impatience nom f s 7.59 33.78 7.59 33.11 +impatiences impatience nom f p 7.59 33.78 0 0.68 +impatiens impatiens nom f 0.01 0 0.01 0 +impatient impatient adj m s 12.64 16.76 7.4 9.19 +impatienta impatienter ver 2.74 10.54 0 1.28 ind:pas:3s; +impatientai impatienter ver 2.74 10.54 0.01 0.14 ind:pas:1s; +impatientaient impatienter ver 2.74 10.54 0.01 0.47 ind:imp:3p; +impatientais impatienter ver 2.74 10.54 0 0.27 ind:imp:1s; +impatientait impatienter ver 2.74 10.54 0.18 2.43 ind:imp:3s; +impatientant impatienter ver 2.74 10.54 0 0.14 par:pre; +impatiente impatient adj f s 12.64 16.76 3.34 3.99 +impatientent impatienter ver 2.74 10.54 0.63 0.34 ind:pre:3p; +impatienter impatienter ver 2.74 10.54 0.72 0.95 inf; +impatienterait impatienter ver 2.74 10.54 0 0.07 cnd:pre:3s; +impatientes impatient adj f p 12.64 16.76 0.26 0.68 +impatientez impatienter ver 2.74 10.54 0.01 0.27 imp:pre:2p;ind:pre:2p; +impatients impatient adj m p 12.64 16.76 1.63 2.91 +impatientèrent impatienter ver 2.74 10.54 0 0.14 ind:pas:3p; +impatienté impatienter ver m s 2.74 10.54 0.01 0.81 par:pas; +impatientée impatienter ver f s 2.74 10.54 0.01 0.34 par:pas; +impatientés impatienter ver m p 2.74 10.54 0.01 0 par:pas; +impatronisait impatroniser ver 0 0.2 0 0.07 ind:imp:3s; +impatroniser impatroniser ver 0 0.2 0 0.07 inf; +impatronisé impatroniser ver m s 0 0.2 0 0.07 par:pas; +impavide impavide adj s 0.29 1.89 0.29 1.28 +impavides impavide adj f p 0.29 1.89 0 0.61 +impayable impayable adj m s 0.36 0.81 0.3 0.74 +impayables impayable adj p 0.36 0.81 0.06 0.07 +impayé impayé adj m s 0.96 0.47 0.11 0 +impayée impayé adj f s 0.96 0.47 0.23 0.2 +impayées impayé adj f p 0.96 0.47 0.35 0.14 +impayés impayé adj m p 0.96 0.47 0.27 0.14 +impeachment impeachment nom m s 0.07 0 0.07 0 +impec impec adj 1.06 1.96 1.06 1.96 +impeccabilité impeccabilité nom f s 0 0.07 0 0.07 +impeccable impeccable adj s 6.96 10.07 5.67 8.24 +impeccablement impeccablement adv 0.09 2.64 0.09 2.64 +impeccables impeccable adj p 6.96 10.07 1.29 1.82 +impedimenta impedimenta nom m p 0 0.07 0 0.07 +impensable impensable adj s 2.94 2.57 2.91 2.23 +impensables impensable adj f p 2.94 2.57 0.03 0.34 +impensé impensé adj m s 0 0.14 0 0.14 +imper imper nom m s 2.08 2.91 1.95 2.5 +imperator imperator nom m s 0.09 0.2 0.09 0.2 +imperceptible imperceptible adj s 0.61 15.27 0.45 12.16 +imperceptiblement imperceptiblement adv 0.14 9.73 0.14 9.73 +imperceptibles imperceptible adj p 0.61 15.27 0.16 3.11 +imperfectible imperfectible adj s 0.01 0 0.01 0 +imperfection imperfection nom f s 1 1.69 0.34 0.61 +imperfections imperfection nom f p 1 1.69 0.66 1.08 +imperium imperium nom m s 0.08 0.07 0.08 0.07 +imperméabilisant imperméabilisant nom m s 0.01 0 0.01 0 +imperméabiliser imperméabiliser ver 0.23 0 0.01 0 inf; +imperméabilisé imperméabiliser ver m s 0.23 0 0.23 0 par:pas; +imperméabilité imperméabilité nom f s 0 0.14 0 0.14 +imperméable imperméable nom m s 2.14 11.62 1.95 10.14 +imperméables imperméable nom m p 2.14 11.62 0.19 1.49 +impers imper nom m p 2.08 2.91 0.13 0.41 +impersonnaliser impersonnaliser ver 0.01 0 0.01 0 inf; +impersonnalité impersonnalité nom f s 0 0.34 0 0.34 +impersonnel impersonnel adj m s 0.86 5 0.68 1.82 +impersonnelle impersonnel adj f s 0.86 5 0.15 2.43 +impersonnelles impersonnel adj f p 0.86 5 0.01 0.27 +impersonnels impersonnel adj m p 0.86 5 0.03 0.47 +impertinemment impertinemment adv 0 0.07 0 0.07 +impertinence impertinence nom f s 0.47 1.69 0.34 1.35 +impertinences impertinence nom f p 0.47 1.69 0.14 0.34 +impertinent impertinent adj m s 1.14 1.01 0.92 0.41 +impertinente impertinent adj f s 1.14 1.01 0.17 0.41 +impertinentes impertinent adj f p 1.14 1.01 0.04 0.2 +impertinents impertinent nom m p 0.97 0.2 0.27 0.07 +imperturbable imperturbable adj s 0.18 6.42 0.15 5.54 +imperturbablement imperturbablement adv 0 1.01 0 1.01 +imperturbables imperturbable adj p 0.18 6.42 0.04 0.88 +impie impie adj s 1.66 1.96 1.19 0.95 +impies impie nom p 1.09 1.28 0.94 0.54 +impitoyable impitoyable adj s 5.34 10.68 4.4 8.18 +impitoyablement impitoyablement adv 0.4 1.82 0.4 1.82 +impitoyables impitoyable adj p 5.34 10.68 0.94 2.5 +impiété impiété nom f s 0.74 1.08 0.74 0.95 +impiétés impiété nom f p 0.74 1.08 0 0.14 +implacabilité implacabilité nom f s 0.02 0.07 0.02 0.07 +implacable implacable adj s 2.02 10.54 1.77 9.46 +implacablement implacablement adv 0.11 0.2 0.11 0.2 +implacables implacable adj p 2.02 10.54 0.24 1.08 +implant implant nom m s 5.11 0.14 2 0 +implanta implanter ver 3.39 2.64 0.14 0.07 ind:pas:3s; +implantable implantable adj m s 0.01 0 0.01 0 +implantaient implanter ver 3.39 2.64 0 0.14 ind:imp:3p; +implantais implanter ver 3.39 2.64 0.01 0.07 ind:imp:1s; +implantait implanter ver 3.39 2.64 0 0.14 ind:imp:3s; +implantant implanter ver 3.39 2.64 0.05 0.07 par:pre; +implantation implantation nom f s 0.66 0.81 0.53 0.81 +implantations implantation nom f p 0.66 0.81 0.12 0 +implante implanter ver 3.39 2.64 0.39 0.07 ind:pre:3s; +implantent implanter ver 3.39 2.64 0.05 0.14 ind:pre:3p; +implanter implanter ver 3.39 2.64 1.1 0.95 inf; +implantez implanter ver 3.39 2.64 0.04 0 imp:pre:2p;ind:pre:2p; +implantiez implanter ver 3.39 2.64 0.02 0 ind:imp:2p; +implantons implanter ver 3.39 2.64 0.05 0 imp:pre:1p;ind:pre:1p; +implants implant nom m p 5.11 0.14 3.11 0.14 +implanté implanter ver m s 3.39 2.64 1.2 0.47 par:pas; +implantée implanter ver f s 3.39 2.64 0.17 0.2 par:pas; +implantées implanter ver f p 3.39 2.64 0.03 0.07 par:pas; +implantés implanter ver m p 3.39 2.64 0.14 0.27 par:pas; +implication implication nom f s 2.96 1.01 2.01 0.27 +implications implication nom f p 2.96 1.01 0.95 0.74 +implicite implicite adj s 0.26 1.28 0.23 1.08 +implicitement implicitement adv 0.19 1.15 0.19 1.15 +implicites implicite adj p 0.26 1.28 0.03 0.2 +impliqua impliquer ver 36.8 12.09 0.11 0.07 ind:pas:3s; +impliquaient impliquer ver 36.8 12.09 0.05 0.27 ind:imp:3p; +impliquait impliquer ver 36.8 12.09 0.66 2.91 ind:imp:3s; +impliquant impliquer ver 36.8 12.09 1.37 1.08 par:pre; +implique impliquer ver 36.8 12.09 6.73 3.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impliquent impliquer ver 36.8 12.09 0.6 0.61 ind:pre:3p; +impliquer impliquer ver 36.8 12.09 4.07 0.47 inf; +impliquera impliquer ver 36.8 12.09 0.07 0.07 ind:fut:3s; +impliquerai impliquer ver 36.8 12.09 0.04 0 ind:fut:1s; +impliquerais impliquer ver 36.8 12.09 0.04 0 cnd:pre:1s;cnd:pre:2s; +impliquerait impliquer ver 36.8 12.09 0.52 0.41 cnd:pre:3s; +impliquerons impliquer ver 36.8 12.09 0.01 0 ind:fut:1p; +impliqueront impliquer ver 36.8 12.09 0.01 0 ind:fut:3p; +impliquez impliquer ver 36.8 12.09 0.34 0 imp:pre:2p;ind:pre:2p; +impliquions impliquer ver 36.8 12.09 0.01 0 ind:imp:1p; +impliquons impliquer ver 36.8 12.09 0.04 0 imp:pre:1p;ind:pre:1p; +impliquât impliquer ver 36.8 12.09 0 0.14 sub:imp:3s; +impliqué impliquer ver m s 36.8 12.09 13.38 1.28 par:pas; +impliquée impliquer ver f s 36.8 12.09 4.05 0.34 par:pas; +impliquées impliquer ver f p 36.8 12.09 1.21 0.07 par:pas; +impliqués impliquer ver m p 36.8 12.09 3.46 0.41 par:pas; +implora implorer ver 11.88 8.11 0.13 1.08 ind:pas:3s; +implorai implorer ver 11.88 8.11 0 0.14 ind:pas:1s; +imploraient implorer ver 11.88 8.11 0.05 0.2 ind:imp:3p; +implorais implorer ver 11.88 8.11 0.06 0.14 ind:imp:1s;ind:imp:2s; +implorait implorer ver 11.88 8.11 0.3 1.15 ind:imp:3s; +implorant implorer ver 11.88 8.11 0.49 1.22 par:pre; +implorante implorant adj f s 0.5 3.31 0.04 1.15 +implorantes implorant adj f p 0.5 3.31 0.11 0.2 +implorants implorant adj m p 0.5 3.31 0.12 0.81 +imploration imploration nom f s 0.01 1.01 0.01 0.88 +implorations imploration nom f p 0.01 1.01 0 0.14 +implore implorer ver 11.88 8.11 5.87 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +implorent implorer ver 11.88 8.11 0.9 0.41 ind:pre:3p; +implorer implorer ver 11.88 8.11 1.75 1.76 inf; +implorera implorer ver 11.88 8.11 0.02 0.07 ind:fut:3s; +implorerai implorer ver 11.88 8.11 0.03 0.07 ind:fut:1s; +implorerais implorer ver 11.88 8.11 0.01 0 cnd:pre:2s; +implorerez implorer ver 11.88 8.11 0.04 0 ind:fut:2p; +imploreront implorer ver 11.88 8.11 0.01 0 ind:fut:3p; +implorez implorer ver 11.88 8.11 0.24 0.07 imp:pre:2p;ind:pre:2p; +imploriez implorer ver 11.88 8.11 0.14 0.07 ind:imp:2p; +implorons implorer ver 11.88 8.11 1.13 0.07 imp:pre:1p;ind:pre:1p; +implorèrent implorer ver 11.88 8.11 0.01 0.07 ind:pas:3p; +imploré implorer ver m s 11.88 8.11 0.52 0.34 par:pas; +implorée implorer ver f s 11.88 8.11 0.19 0 par:pas; +implose imploser ver 0.47 0.34 0.07 0.27 ind:pre:1s;ind:pre:3s; +implosent imploser ver 0.47 0.34 0.02 0.07 ind:pre:3p; +imploser imploser ver 0.47 0.34 0.32 0 inf; +implosera imploser ver 0.47 0.34 0.04 0 ind:fut:3s; +implosez imploser ver 0.47 0.34 0.01 0 ind:pre:2p; +implosif implosif adj m s 0.06 0.07 0.04 0 +implosifs implosif adj m p 0.06 0.07 0.01 0.07 +implosion implosion nom f s 0.23 0.14 0.23 0.14 +implosive implosive nom f s 0 0.07 0 0.07 +implosives implosif adj f p 0.06 0.07 0.01 0 +implémentation implémentation nom f s 0.04 0 0.04 0 +implémenter implémenter ver 0.05 0 0.05 0 inf; +impoli impoli adj m s 4.76 0.68 3.32 0.47 +impolie impoli adj f s 4.76 0.68 0.95 0.2 +impoliment impoliment adv 0.03 0 0.03 0 +impolis impoli adj m p 4.76 0.68 0.48 0 +impolitesse impolitesse nom f s 1.01 0.88 1 0.81 +impolitesses impolitesse nom f p 1.01 0.88 0.01 0.07 +impollu impollu adj m s 0 0.07 0 0.07 +impolluable impolluable adj f s 0 0.07 0 0.07 +impollué impollué adj m s 0 0.47 0 0.14 +impolluée impollué adj f s 0 0.47 0 0.14 +impolluées impollué adj f p 0 0.47 0 0.07 +impollués impollué adj m p 0 0.47 0 0.14 +impondérable impondérable nom m s 0.1 0.61 0.03 0.2 +impondérables impondérable nom m p 0.1 0.61 0.07 0.41 +impopulaire impopulaire adj s 1.14 0.14 0.95 0.07 +impopulaires impopulaire adj m p 1.14 0.14 0.19 0.07 +impopularité impopularité nom f s 0.01 0.27 0.01 0.27 +import import nom m s 0.43 0.27 0.32 0.14 +import_export import_export nom m s 0.47 0.41 0.47 0.41 +importa importer ver 259.37 173.11 0.11 0.2 ind:pas:3s; +importable importable adj s 0.16 0 0.01 0 +importables importable adj p 0.16 0 0.15 0 +importaient importer ver 259.37 173.11 0.09 1.35 ind:imp:3p; +importait importer ver 259.37 173.11 2.25 15.68 ind:imp:3s; +importance importance nom f s 57.32 75.81 57.32 75.54 +importances importance nom f p 57.32 75.81 0 0.27 +important important adj m s 229.36 86.76 168.62 49.66 +importante important adj f s 229.36 86.76 35.29 18.31 +importantes important adj f p 229.36 86.76 13.8 8.99 +importants important adj m p 229.36 86.76 11.65 9.8 +importateur importateur nom m s 0.24 0.34 0.19 0.27 +importateurs importateur nom m p 0.24 0.34 0.05 0.07 +importation importation nom f s 1.23 2.23 0.73 1.01 +importations importation nom f p 1.23 2.23 0.5 1.22 +importe importer ver 259.37 173.11 251.39 151.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +importent importer ver 259.37 173.11 2.16 1.76 ind:pre:3p; +importer importer ver 259.37 173.11 1.01 0.68 inf; +importera importer ver 259.37 173.11 0.25 0.34 ind:fut:3s; +importeraient importer ver 259.37 173.11 0.01 0 cnd:pre:3p; +importerait importer ver 259.37 173.11 0.1 0.41 cnd:pre:3s; +importes importer ver 259.37 173.11 0.2 0.07 ind:pre:2s; +imports import nom m p 0.43 0.27 0.11 0.14 +importun importun nom m s 0.36 1.82 0.32 1.01 +importuna importuner ver 4.66 3.38 0 0.07 ind:pas:3s; +importunaient importuner ver 4.66 3.38 0 0.2 ind:imp:3p; +importunais importuner ver 4.66 3.38 0.03 0.07 ind:imp:1s; +importunait importuner ver 4.66 3.38 0.14 0.68 ind:imp:3s; +importune importuner ver 4.66 3.38 0.51 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +importunent importuner ver 4.66 3.38 0.04 0.14 ind:pre:3p; +importuner importuner ver 4.66 3.38 2.79 0.95 inf; +importunerai importuner ver 4.66 3.38 0.07 0 ind:fut:1s; +importunerait importuner ver 4.66 3.38 0.01 0 cnd:pre:3s; +importunerez importuner ver 4.66 3.38 0.02 0.07 ind:fut:2p; +importunerons importuner ver 4.66 3.38 0.11 0 ind:fut:1p; +importunes importuner ver 4.66 3.38 0.27 0 ind:pre:2s; +importunez importuner ver 4.66 3.38 0.28 0.2 imp:pre:2p;ind:pre:2p; +importunités importunité nom f p 0 0.2 0 0.2 +importuns importun adj m p 0.7 2.23 0.16 0.2 +importunât importuner ver 4.66 3.38 0 0.07 sub:imp:3s; +importuné importuner ver m s 4.66 3.38 0.14 0.47 par:pas; +importunée importuner ver f s 4.66 3.38 0.2 0.2 par:pas; +importunés importuner ver m p 4.66 3.38 0.06 0.07 par:pas; +importât importer ver 259.37 173.11 0 0.07 sub:imp:3s; +importé importer ver m s 259.37 173.11 1.05 0.61 par:pas; +importée importé adj f s 1.45 0.54 0.26 0.2 +importées importer ver f p 259.37 173.11 0.28 0.27 par:pas; +importés importé adj m p 1.45 0.54 0.39 0.2 +imposa imposer ver 23.62 78.38 0.79 3.72 ind:pas:3s; +imposable imposable adj s 0.29 0.14 0.2 0.07 +imposables imposable adj m p 0.29 0.14 0.09 0.07 +imposai imposer ver 23.62 78.38 0 0.2 ind:pas:1s; +imposaient imposer ver 23.62 78.38 0.08 2.5 ind:imp:3p; +imposais imposer ver 23.62 78.38 0.04 0.68 ind:imp:1s;ind:imp:2s; +imposait imposer ver 23.62 78.38 1.07 14.66 ind:imp:3s; +imposant imposant adj m s 1.47 9.39 0.97 3.72 +imposante imposant adj f s 1.47 9.39 0.42 4.39 +imposantes imposant adj f p 1.47 9.39 0.05 0.95 +imposants imposant adj m p 1.47 9.39 0.03 0.34 +imposassent imposer ver 23.62 78.38 0 0.07 sub:imp:3p; +impose imposer ver 23.62 78.38 6.92 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +imposent imposer ver 23.62 78.38 1.62 4.12 ind:pre:3p; +imposer imposer ver 23.62 78.38 7.19 19.53 inf; +imposera imposer ver 23.62 78.38 0.27 0.47 ind:fut:3s; +imposerai imposer ver 23.62 78.38 0.23 0.14 ind:fut:1s; +imposeraient imposer ver 23.62 78.38 0.01 0.2 cnd:pre:3p; +imposerais imposer ver 23.62 78.38 0.03 0.07 cnd:pre:1s; +imposerait imposer ver 23.62 78.38 0.07 1.08 cnd:pre:3s; +imposerez imposer ver 23.62 78.38 0.03 0 ind:fut:2p; +imposerions imposer ver 23.62 78.38 0 0.14 cnd:pre:1p; +imposerons imposer ver 23.62 78.38 0.05 0.14 ind:fut:1p; +imposeront imposer ver 23.62 78.38 0.03 0.14 ind:fut:3p; +imposes imposer ver 23.62 78.38 0.35 0.34 ind:pre:2s; +imposez imposer ver 23.62 78.38 0.41 0.2 imp:pre:2p;ind:pre:2p; +imposiez imposer ver 23.62 78.38 0 0.14 ind:imp:2p; +imposition imposition nom f s 0.69 0.41 0.69 0.34 +impositions imposition nom f p 0.69 0.41 0 0.07 +imposons imposer ver 23.62 78.38 0.3 0.14 imp:pre:1p;ind:pre:1p; +impossibilité impossibilité nom f s 0.96 7.5 0.94 7.16 +impossibilités impossibilité nom f p 0.96 7.5 0.02 0.34 +impossible impossible adj s 124.54 96.01 122.32 90.07 +impossibles impossible adj p 124.54 96.01 2.22 5.95 +imposte imposte nom f s 0.01 0.68 0.01 0.68 +imposteur imposteur nom m s 6.04 1.96 5.43 1.42 +imposteurs imposteur nom m p 6.04 1.96 0.61 0.54 +imposture imposture nom f s 1.82 3.38 1.78 3.18 +impostures imposture nom f p 1.82 3.38 0.04 0.2 +imposât imposer ver 23.62 78.38 0.01 0.54 sub:imp:3s; +imposèrent imposer ver 23.62 78.38 0 0.61 ind:pas:3p; +imposé imposer ver m s 23.62 78.38 2.46 6.42 par:pas; +imposée imposer ver f s 23.62 78.38 0.53 4.19 par:pas; +imposées imposer ver f p 23.62 78.38 0.52 1.62 par:pas; +imposés imposer ver m p 23.62 78.38 0.21 0.68 par:pas; +impotence impotence nom f s 0.01 0.07 0.01 0.07 +impotent impotent adj m s 0.9 1.22 0.64 0.47 +impotente impotent adj f s 0.9 1.22 0.21 0.61 +impotentes impotent adj f p 0.9 1.22 0 0.07 +impotents impotent adj m p 0.9 1.22 0.05 0.07 +impraticabilité impraticabilité nom f s 0.01 0 0.01 0 +impraticable impraticable adj s 0.33 1.35 0.15 0.95 +impraticables impraticable adj p 0.33 1.35 0.18 0.41 +impratique impratique adj s 0 0.07 0 0.07 +imprenable imprenable adj s 0.76 2.3 0.74 1.82 +imprenables imprenable adj p 0.76 2.3 0.02 0.47 +impresarii impresario nom m p 0.39 2.36 0 0.14 +impresario impresario nom m s 0.39 2.36 0.38 2.03 +impresarios impresario nom m p 0.39 2.36 0.01 0.2 +imprescriptible imprescriptible adj s 0.02 0.41 0.01 0.27 +imprescriptibles imprescriptible adj m p 0.02 0.41 0.01 0.14 +impression impression nom f s 90.19 155.27 88.3 146.28 +impressionna impressionner ver 24.98 24.26 0.01 1.49 ind:pas:3s; +impressionnable impressionnable adj s 1.02 0.68 0.78 0.68 +impressionnables impressionnable adj m p 1.02 0.68 0.24 0 +impressionnaient impressionner ver 24.98 24.26 0 0.61 ind:imp:3p; +impressionnais impressionner ver 24.98 24.26 0.14 0 ind:imp:1s;ind:imp:2s; +impressionnait impressionner ver 24.98 24.26 0.13 2.84 ind:imp:3s; +impressionnant impressionnant adj m s 15.91 9.86 12.98 4.59 +impressionnante impressionnant adj f s 15.91 9.86 2.09 3.78 +impressionnantes impressionnant adj f p 15.91 9.86 0.4 0.95 +impressionnants impressionnant adj m p 15.91 9.86 0.45 0.54 +impressionne impressionner ver 24.98 24.26 3.54 2.3 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impressionnent impressionner ver 24.98 24.26 0.42 0.47 ind:pre:3p; +impressionner impressionner ver 24.98 24.26 5.97 4.66 inf; +impressionnera impressionner ver 24.98 24.26 0.26 0 ind:fut:3s; +impressionnerait impressionner ver 24.98 24.26 0.06 0.27 cnd:pre:3s; +impressionneras impressionner ver 24.98 24.26 0.02 0 ind:fut:2s; +impressionneront impressionner ver 24.98 24.26 0 0.07 ind:fut:3p; +impressionnes impressionner ver 24.98 24.26 0.82 0.07 ind:pre:1p;ind:pre:2s; +impressionnez impressionner ver 24.98 24.26 0.94 0.07 imp:pre:2p;ind:pre:2p; +impressionnisme impressionnisme nom m s 0.16 0.2 0.16 0.2 +impressionniste impressionniste adj s 0.28 1.15 0.11 0.54 +impressionnistes impressionniste adj p 0.28 1.15 0.17 0.61 +impressionnât impressionner ver 24.98 24.26 0 0.07 sub:imp:3s; +impressionnèrent impressionner ver 24.98 24.26 0 0.07 ind:pas:3p; +impressionné impressionner ver m s 24.98 24.26 6.91 7.16 par:pas; +impressionnée impressionner ver f s 24.98 24.26 3.34 1.89 par:pas; +impressionnées impressionner ver f p 24.98 24.26 0.07 0.2 par:pas; +impressionnés impressionner ver m p 24.98 24.26 1.5 1.55 par:pas; +impressions impression nom f p 90.19 155.27 1.89 8.99 +impressive impressif adj f s 0.03 0 0.03 0 +imprima imprimer ver 8.67 28.24 0.02 0.54 ind:pas:3s; +imprimable imprimable adj s 0.01 0 0.01 0 +imprimaient imprimer ver 8.67 28.24 0.03 0.68 ind:imp:3p; +imprimais imprimer ver 8.67 28.24 0.06 0.07 ind:imp:1s; +imprimait imprimer ver 8.67 28.24 0.03 2.23 ind:imp:3s; +imprimant imprimer ver 8.67 28.24 0.11 0.74 par:pre; +imprimante imprimante nom f s 0.95 0.07 0.95 0.07 +imprimatur imprimatur nom m 0 0.07 0 0.07 +imprime imprimer ver 8.67 28.24 1.82 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impriment imprimer ver 8.67 28.24 0.31 0.47 ind:pre:3p; +imprimer imprimer ver 8.67 28.24 2.82 3.58 inf; +imprimera imprimer ver 8.67 28.24 0.03 0.14 ind:fut:3s; +imprimerai imprimer ver 8.67 28.24 0.04 0 ind:fut:1s; +imprimerait imprimer ver 8.67 28.24 0.01 0.07 cnd:pre:3s; +imprimeras imprimer ver 8.67 28.24 0.01 0 ind:fut:2s; +imprimerie imprimerie nom f s 1.63 9.53 1.6 9.12 +imprimeries imprimerie nom f p 1.63 9.53 0.03 0.41 +imprimerons imprimer ver 8.67 28.24 0 0.07 ind:fut:1p; +imprimeur imprimeur nom m s 1.12 2.97 1.01 2.09 +imprimeurs imprimeur nom m p 1.12 2.97 0.1 0.88 +imprimez imprimer ver 8.67 28.24 0.47 0.14 imp:pre:2p;ind:pre:2p; +imprimèrent imprimer ver 8.67 28.24 0.01 0.2 ind:pas:3p; +imprimé imprimer ver m s 8.67 28.24 1.79 7.91 par:pas; +imprimée imprimer ver f s 8.67 28.24 0.36 4.05 par:pas; +imprimées imprimer ver f p 8.67 28.24 0.22 2.84 par:pas; +imprimés imprimer ver m p 8.67 28.24 0.53 2.97 par:pas; +impro impro nom f s 0.82 0.14 0.82 0.14 +improbabilité improbabilité nom f s 0.11 0.2 0.11 0.2 +improbable improbable adj s 2.87 7.7 2.77 5.68 +improbables improbable adj p 2.87 7.7 0.09 2.03 +improductif improductif adj m s 0.85 0.54 0.2 0.2 +improductifs improductif adj m p 0.85 0.54 0.4 0.07 +improductive improductif adj f s 0.85 0.54 0.25 0.14 +improductives improductif adj f p 0.85 0.54 0 0.14 +impromptu impromptu adj m s 0.4 2.43 0.25 1.42 +impromptue impromptu adj f s 0.4 2.43 0.11 0.68 +impromptues impromptu adj f p 0.4 2.43 0.02 0.27 +impromptus impromptu nom m p 0.14 0.61 0.14 0.07 +imprononcé imprononcé adj m s 0 0.07 0 0.07 +imprononçable imprononçable adj m s 0.19 0.47 0.16 0.41 +imprononçables imprononçable adj m p 0.19 0.47 0.02 0.07 +impropre impropre adj s 0.5 1.62 0.48 1.22 +improprement improprement adv 0.11 0.07 0.11 0.07 +impropres impropre adj f p 0.5 1.62 0.02 0.41 +impropriétés impropriété nom f p 0 0.14 0 0.14 +improuva improuver ver 0 0.07 0 0.07 ind:pas:3s; +improuvable improuvable adj s 0.03 0 0.03 0 +improvisa improviser ver 7.09 8.92 0.03 0.68 ind:pas:3s; +improvisade improvisade nom f s 0.01 0 0.01 0 +improvisai improviser ver 7.09 8.92 0 0.07 ind:pas:1s; +improvisaient improviser ver 7.09 8.92 0 0.34 ind:imp:3p; +improvisais improviser ver 7.09 8.92 0.03 0.14 ind:imp:1s; +improvisait improviser ver 7.09 8.92 0.2 0.95 ind:imp:3s; +improvisant improviser ver 7.09 8.92 0.02 0.88 par:pre; +improvisateur improvisateur nom m s 0.01 0.27 0.01 0.2 +improvisateurs improvisateur nom m p 0.01 0.27 0 0.07 +improvisation improvisation nom f s 0.91 3.78 0.72 2.7 +improvisations improvisation nom f p 0.91 3.78 0.19 1.08 +improvise improviser ver 7.09 8.92 1.92 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +improvisent improviser ver 7.09 8.92 0.22 0.41 ind:pre:3p; +improviser improviser ver 7.09 8.92 2.79 1.42 inf; +improvisera improviser ver 7.09 8.92 0.21 0.14 ind:fut:3s; +improviserai improviser ver 7.09 8.92 0.19 0 ind:fut:1s; +improviserons improviser ver 7.09 8.92 0.01 0 ind:fut:1p; +improvisez improviser ver 7.09 8.92 0.14 0 imp:pre:2p;ind:pre:2p; +improvisions improviser ver 7.09 8.92 0 0.07 ind:imp:1p; +improvisons improviser ver 7.09 8.92 0.2 0 imp:pre:1p;ind:pre:1p; +improvisèrent improviser ver 7.09 8.92 0 0.14 ind:pas:3p; +improvisé improviser ver m s 7.09 8.92 0.82 1.28 par:pas; +improvisée improviser ver f s 7.09 8.92 0.26 0.34 par:pas; +improvisées improvisé adj f p 0.6 4.19 0.04 0.2 +improvisés improviser ver m p 7.09 8.92 0.04 0.54 par:pas; +imprudemment imprudemment adv 0.34 1.28 0.34 1.28 +imprudence imprudence nom f s 2.04 6.15 1.56 4.73 +imprudences imprudence nom f p 2.04 6.15 0.48 1.42 +imprudent imprudent adj m s 4.34 4.8 3.1 2.5 +imprudente imprudent adj f s 4.34 4.8 0.87 1.22 +imprudentes imprudent adj f p 4.34 4.8 0.08 0.61 +imprudents imprudent adj m p 4.34 4.8 0.3 0.47 +imprègne imprégner ver 1.76 17.7 0.25 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imprègnent imprégner ver 1.76 17.7 0.03 0.34 ind:pre:3p; +imprécateur imprécateur nom m s 0 0.07 0 0.07 +imprécation imprécation nom f s 0.12 3.38 0.11 0.34 +imprécations imprécation nom f p 0.12 3.38 0.01 3.04 +imprécis imprécis adj m 0.36 7.36 0.28 2.77 +imprécisable imprécisable nom s 0 0.2 0 0.2 +imprécise imprécis adj f s 0.36 7.36 0.07 2.97 +imprécises imprécis adj f p 0.36 7.36 0.01 1.62 +imprécision imprécision nom f s 0.06 1.01 0.04 0.95 +imprécisions imprécision nom f p 0.06 1.01 0.02 0.07 +imprégna imprégner ver 1.76 17.7 0 0.34 ind:pas:3s; +imprégnaient imprégner ver 1.76 17.7 0.02 0.61 ind:imp:3p; +imprégnais imprégner ver 1.76 17.7 0 0.07 ind:imp:1s; +imprégnait imprégner ver 1.76 17.7 0.12 1.96 ind:imp:3s; +imprégnant imprégner ver 1.76 17.7 0 0.41 par:pre; +imprégnation imprégnation nom f s 0.01 0.68 0.01 0.54 +imprégnations imprégnation nom f p 0.01 0.68 0 0.14 +imprégner imprégner ver 1.76 17.7 0.27 2.36 inf; +imprégnez imprégner ver 1.76 17.7 0.04 0 imp:pre:2p; +imprégnèrent imprégner ver 1.76 17.7 0.01 0.07 ind:pas:3p; +imprégné imprégner ver m s 1.76 17.7 0.63 4.19 par:pas; +imprégnée imprégner ver f s 1.76 17.7 0.1 2.09 par:pas; +imprégnées imprégner ver f p 1.76 17.7 0.1 1.28 par:pas; +imprégnés imprégner ver m p 1.76 17.7 0.18 1.55 par:pas; +impréparation impréparation nom f s 0 0.14 0 0.14 +imprésario imprésario nom m s 1.21 1.49 1.05 1.22 +imprésarios imprésario nom m p 1.21 1.49 0.16 0.27 +imprésentable imprésentable adj s 0 0.2 0 0.14 +imprésentables imprésentable adj f p 0 0.2 0 0.07 +imprévisibilité imprévisibilité nom f s 0.17 0.2 0.17 0.2 +imprévisible imprévisible adj s 4.92 12.43 4.01 7.3 +imprévisiblement imprévisiblement adv 0.11 0 0.11 0 +imprévisibles imprévisible adj p 4.92 12.43 0.91 5.14 +imprévision imprévision nom f s 0 0.07 0 0.07 +imprévoyance imprévoyance nom f s 0.1 0.47 0.1 0.47 +imprévoyant imprévoyant adj m s 0 0.27 0 0.07 +imprévoyante imprévoyant adj f s 0 0.27 0 0.07 +imprévoyants imprévoyant adj m p 0 0.27 0 0.14 +imprévu imprévu nom m s 3.22 5.47 2.67 4.86 +imprévue imprévu adj f s 2.72 8.99 1.56 3.18 +imprévues imprévu adj f p 2.72 8.99 0.28 0.95 +imprévus imprévu nom m p 3.22 5.47 0.55 0.61 +impubliable impubliable adj s 0.01 0.34 0.01 0.27 +impubliables impubliable adj p 0.01 0.34 0 0.07 +impubère impubère adj f s 0 0.61 0 0.41 +impubères impubère adj p 0 0.61 0 0.2 +impudemment impudemment adv 0.13 0.27 0.13 0.27 +impudence impudence nom f s 1.27 1.35 1.27 1.28 +impudences impudence nom f p 1.27 1.35 0 0.07 +impudent impudent adj m s 1.13 1.35 0.47 0.61 +impudente impudent adj f s 1.13 1.35 0.3 0.47 +impudentes impudent adj f p 1.13 1.35 0.02 0 +impudents impudent adj m p 1.13 1.35 0.34 0.27 +impudeur impudeur nom f s 0.25 4.19 0.25 4.05 +impudeurs impudeur nom f p 0.25 4.19 0 0.14 +impudicité impudicité nom f s 0.03 0.2 0.03 0.2 +impudique impudique adj s 0.65 3.04 0.63 2.23 +impudiquement impudiquement adv 0.01 0.2 0.01 0.2 +impudiques impudique adj p 0.65 3.04 0.03 0.81 +impuissance impuissance nom f s 2.5 16.62 2.5 16.28 +impuissances impuissance nom f p 2.5 16.62 0 0.34 +impuissant impuissant adj m s 7.58 11.55 4.49 4.93 +impuissante impuissant adj f s 7.58 11.55 1.14 4.46 +impuissantes impuissant adj f p 7.58 11.55 0.23 0.34 +impuissants impuissant adj m p 7.58 11.55 1.72 1.82 +impulsif impulsif adj m s 2.24 1.96 1.4 1.28 +impulsifs impulsif adj m p 2.24 1.96 0.26 0.14 +impulsion impulsion nom f s 4.58 8.38 3 6.01 +impulsions impulsion nom f p 4.58 8.38 1.58 2.36 +impulsive impulsif adj f s 2.24 1.96 0.54 0.47 +impulsivement impulsivement adv 0.07 0.34 0.07 0.34 +impulsives impulsif adj f p 2.24 1.96 0.04 0.07 +impulsivité impulsivité nom f s 0.13 0.07 0.13 0.07 +impuni impuni adj m s 1.48 0.74 0.89 0.34 +impunie impuni adj f s 1.48 0.74 0.46 0.07 +impunis impuni adj m p 1.48 0.74 0.13 0.34 +impunité impunité nom f s 0.93 1.42 0.93 1.42 +impunément impunément adv 1.9 3.24 1.9 3.24 +impur impur adj m s 3.91 4.53 1.44 2.23 +impure impur adj f s 3.91 4.53 0.89 0.95 +impures impur adj f p 3.91 4.53 0.95 0.88 +impureté impureté nom f s 0.71 1.42 0.41 1.01 +impuretés impureté nom f p 0.71 1.42 0.31 0.41 +impurs impur adj m p 3.91 4.53 0.63 0.47 +imputable imputable adj s 0.03 0.74 0.02 0.54 +imputables imputable adj m p 0.03 0.74 0.01 0.2 +imputai imputer ver 0.9 2.77 0 0.07 ind:pas:1s; +imputaient imputer ver 0.9 2.77 0.02 0.2 ind:imp:3p; +imputais imputer ver 0.9 2.77 0 0.14 ind:imp:1s; +imputait imputer ver 0.9 2.77 0 0.41 ind:imp:3s; +imputant imputer ver 0.9 2.77 0 0.07 par:pre; +imputasse imputer ver 0.9 2.77 0.01 0 sub:imp:1s; +imputation imputation nom f s 0.04 0.54 0.03 0.2 +imputations imputation nom f p 0.04 0.54 0.01 0.34 +impute imputer ver 0.9 2.77 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imputer imputer ver 0.9 2.77 0.26 0.81 inf; +imputera imputer ver 0.9 2.77 0 0.07 ind:fut:3s; +imputerai imputer ver 0.9 2.77 0.01 0.07 ind:fut:1s; +imputeront imputer ver 0.9 2.77 0.01 0 ind:fut:3p; +imputrescible imputrescible adj s 0 0.47 0 0.41 +imputrescibles imputrescible adj m p 0 0.47 0 0.07 +imputât imputer ver 0.9 2.77 0 0.07 sub:imp:3s; +imputèrent imputer ver 0.9 2.77 0 0.14 ind:pas:3p; +imputé imputer ver m s 0.9 2.77 0.03 0.14 par:pas; +imputée imputer ver f s 0.9 2.77 0.3 0.27 par:pas; +imputées imputer ver f p 0.9 2.77 0.01 0.07 par:pas; +imputés imputer ver m p 0.9 2.77 0.03 0.2 par:pas; +impécunieuse impécunieux adj f s 0 0.27 0 0.14 +impécunieux impécunieux adj m p 0 0.27 0 0.14 +impécuniosité impécuniosité nom f s 0 0.07 0 0.07 +impédance impédance nom f s 0.04 0 0.04 0 +impénitent impénitent adj m s 0.07 1.35 0.03 0.68 +impénitente impénitent adj f s 0.07 1.35 0.01 0 +impénitents impénitent adj m p 0.07 1.35 0.03 0.68 +impénétrabilité impénétrabilité nom f s 0 0.2 0 0.2 +impénétrable impénétrable adj s 3.08 6.89 1.29 4.66 +impénétrables impénétrable adj p 3.08 6.89 1.79 2.23 +impératif impératif adj m s 1.38 3.78 1.21 1.55 +impératifs impératif nom m p 0.69 3.04 0.32 1.22 +impérative impératif adj f s 1.38 3.78 0.16 1.35 +impérativement impérativement adv 0.55 0.68 0.55 0.68 +impératives impératif adj f p 1.38 3.78 0 0.47 +impératrice impératrice nom f s 3.03 6.35 2.96 6.08 +impératrices impératrice nom f p 3.03 6.35 0.07 0.27 +impérial impérial adj m s 6.77 19.12 2.1 7.64 +impériale impérial adj f s 6.77 19.12 4.21 7.77 +impériales impérial adj f p 6.77 19.12 0.13 2.09 +impérialisation impérialisation nom f s 0.01 0 0.01 0 +impérialisme impérialisme nom m s 0.64 1.35 0.64 1.35 +impérialiste impérialiste adj s 0.84 1.01 0.48 0.34 +impérialistes impérialiste adj p 0.84 1.01 0.35 0.68 +impériaux impérial adj m p 6.77 19.12 0.33 1.62 +impérieuse impérieux adj f s 0.54 12.09 0.03 4.66 +impérieusement impérieusement adv 0 1.69 0 1.69 +impérieuses impérieux adj f p 0.54 12.09 0.13 0.88 +impérieux impérieux adj m 0.54 12.09 0.38 6.55 +impérissable impérissable adj s 0.11 2.03 0.09 1.55 +impérissables impérissable adj p 0.11 2.03 0.02 0.47 +impéritie impéritie nom f s 0 0.2 0 0.2 +impétigo impétigo nom m s 0.08 0.41 0.08 0.41 +impétrant impétrant nom m s 0.02 0.27 0.01 0.2 +impétrante impétrant nom f s 0.02 0.27 0 0.07 +impétrants impétrant nom m p 0.02 0.27 0.01 0 +impétueuse impétueux adj f s 1.44 2.97 0.55 0.81 +impétueusement impétueusement adv 0.01 0.41 0.01 0.41 +impétueuses impétueux adj f p 1.44 2.97 0 0.14 +impétueux impétueux adj m 1.44 2.97 0.89 2.03 +impétuosité impétuosité nom f s 0.18 0.95 0.18 0.95 +impôt impôt nom m s 15.14 6.55 2.67 1.76 +impôts impôt nom m p 15.14 6.55 12.47 4.8 +in in adj_sup 47.17 11.62 47.17 11.62 +in_absentia in_absentia adv 0.02 0 0.02 0 +in_abstracto in_abstracto adv 0 0.2 0 0.2 +in_anima_vili in_anima_vili adv 0 0.07 0 0.07 +in_cauda_venenum in_cauda_venenum adv 0 0.14 0 0.14 +in_extenso in_extenso adv 0 0.54 0 0.54 +in_extremis in_extremis adv 0.07 2.64 0.07 2.64 +in_memoriam in_memoriam adv 0.15 0 0.15 0 +in_pace in_pace nom m 0.16 0.07 0.16 0.07 +in_petto in_petto adv 0 1.22 0 1.22 +in_utero in_utero adj f p 0.05 0 0.05 0 +in_utero in_utero adv 0.05 0 0.05 0 +in_vino_veritas in_vino_veritas adv 0.05 0 0.05 0 +in_vitro in_vitro adj 0.22 0.34 0.22 0.34 +in_vivo in_vivo adv 0 0.07 0 0.07 +in_bord in_bord adj m s 0.01 0 0.01 0 +in_bord in_bord nom m s 0.01 0 0.01 0 +in_folio in_folio nom m 0 0.61 0 0.61 +in_folios in_folios nom m 0 0.2 0 0.2 +in_octavo in_octavo nom m 0.01 0.34 0.01 0.34 +in_octavos in_octavos nom m 0 0.07 0 0.07 +in_quarto in_quarto adj 0 0.07 0 0.07 +in_quarto in_quarto nom m 0 0.07 0 0.07 +in_seize in_seize nom m 0 0.07 0 0.07 +inabordable inabordable adj s 0.22 0.34 0.22 0.34 +inabouti inabouti adj m s 0 0.14 0 0.07 +inaboutie inabouti adj f s 0 0.14 0 0.07 +inacceptable inacceptable adj s 4.09 2.7 3.75 2.36 +inacceptables inacceptable adj p 4.09 2.7 0.33 0.34 +inaccessibilité inaccessibilité nom f s 0.01 0.27 0.01 0.27 +inaccessible inaccessible adj s 2.74 10.88 2.32 8.04 +inaccessibles inaccessible adj p 2.74 10.88 0.42 2.84 +inaccompli inaccompli adj m s 0.04 0.47 0.03 0.34 +inaccomplis inaccompli adj m p 0.04 0.47 0.01 0.14 +inaccomplissement inaccomplissement nom m s 0 0.07 0 0.07 +inaccoutumé inaccoutumé adj m s 0.02 0.61 0.02 0.2 +inaccoutumée inaccoutumé adj f s 0.02 0.61 0 0.34 +inaccoutumées inaccoutumé adj f p 0.02 0.61 0 0.07 +inachevé inachevé adj m s 3.44 7.09 1.24 3.04 +inachevée inachevé adj f s 3.44 7.09 1.73 2.57 +inachevées inachevé adj f p 3.44 7.09 0.18 0.95 +inachevés inachevé adj m p 3.44 7.09 0.29 0.54 +inachèvement inachèvement nom m s 0.01 0.54 0.01 0.54 +inactif inactif adj m s 1.29 1.22 0.74 0.34 +inactifs inactif adj m p 1.29 1.22 0.39 0.14 +inaction inaction nom f s 0.12 2.36 0.12 2.36 +inactivation inactivation nom f s 0.01 0 0.01 0 +inactive inactif adj f s 1.29 1.22 0.12 0.61 +inactives inactif adj f p 1.29 1.22 0.04 0.14 +inactivité inactivité nom f s 0.17 0.74 0.17 0.74 +inactivé inactivé adj m s 0.01 0 0.01 0 +inactuel inactuel adj m s 0 0.07 0 0.07 +inadaptable inadaptable adj s 0 0.07 0 0.07 +inadaptation inadaptation nom f s 0.05 0.54 0.05 0.54 +inadapté inadapté adj m s 0.39 0.54 0.16 0.34 +inadaptée inadapté adj f s 0.39 0.54 0.05 0.07 +inadaptées inadapté adj f p 0.39 0.54 0.01 0 +inadaptés inadapté adj m p 0.39 0.54 0.17 0.14 +inadmissible inadmissible adj s 2.29 3.04 2.24 2.64 +inadmissibles inadmissible adj p 2.29 3.04 0.05 0.41 +inadvertance inadvertance nom f s 0.58 1.55 0.58 1.49 +inadvertances inadvertance nom f p 0.58 1.55 0 0.07 +inadéquat inadéquat adj m s 0.61 0.81 0.14 0.27 +inadéquate inadéquat adj f s 0.61 0.81 0.29 0.07 +inadéquatement inadéquatement adv 0.01 0 0.01 0 +inadéquates inadéquat adj f p 0.61 0.81 0.04 0.07 +inadéquation inadéquation nom f s 0.01 0.07 0.01 0.07 +inadéquats inadéquat adj m p 0.61 0.81 0.15 0.41 +inaliénable inaliénable adj s 0.16 0.14 0.11 0.07 +inaliénables inaliénable adj m p 0.16 0.14 0.05 0.07 +inaltérable inaltérable adj s 0.58 5.14 0.47 4.66 +inaltérables inaltérable adj p 0.58 5.14 0.11 0.47 +inaltéré inaltéré adj m s 0.03 0.34 0.01 0.14 +inaltérée inaltéré adj f s 0.03 0.34 0.02 0.07 +inaltérées inaltéré adj f p 0.03 0.34 0 0.07 +inaltérés inaltéré adj m p 0.03 0.34 0 0.07 +inamical inamical adj m s 0.23 0.41 0.04 0.34 +inamicale inamical adj f s 0.23 0.41 0.17 0.07 +inamicaux inamical adj m p 0.23 0.41 0.02 0 +inamovible inamovible adj s 0.17 0.95 0.16 0.41 +inamovibles inamovible adj p 0.17 0.95 0.01 0.54 +inanalysable inanalysable adj f s 0 0.34 0 0.07 +inanalysables inanalysable adj p 0 0.34 0 0.27 +inane inane adj s 0 0.07 0 0.07 +inanimation inanimation nom f s 0 0.07 0 0.07 +inanimé inanimé adj m s 0.94 3.11 0.48 1.62 +inanimée inanimé adj f s 0.94 3.11 0.12 0.74 +inanimées inanimé adj f p 0.94 3.11 0.03 0.2 +inanimés inanimé adj m p 0.94 3.11 0.32 0.54 +inanition inanition nom f s 0.02 1.62 0.02 1.62 +inanité inanité nom f s 0.14 1.28 0.14 1.28 +inapaisable inapaisable adj s 0 0.47 0 0.47 +inapaisée inapaisé adj f s 0.01 0.14 0 0.07 +inapaisées inapaisé adj f p 0.01 0.14 0 0.07 +inapaisés inapaisé adj m p 0.01 0.14 0.01 0 +inaperçu inaperçu adj m s 3.37 7.57 1.66 2.91 +inaperçue inaperçu adj f s 3.37 7.57 0.81 2.97 +inaperçues inaperçu adj f p 3.37 7.57 0.23 0.68 +inaperçus inaperçu adj m p 3.37 7.57 0.68 1.01 +inapplicable inapplicable adj s 0.03 0.07 0.02 0 +inapplicables inapplicable adj m p 0.03 0.07 0.01 0.07 +inapplication inapplication nom f s 0 0.07 0 0.07 +inapprivoisables inapprivoisable adj p 0 0.07 0 0.07 +inapprochable inapprochable adj s 0.04 0 0.04 0 +inapproprié inapproprié adj m s 1.59 0.07 0.86 0 +inappropriée inapproprié adj f s 1.59 0.07 0.52 0.07 +inappropriées inapproprié adj f p 1.59 0.07 0.13 0 +inappropriés inapproprié adj m p 1.59 0.07 0.08 0 +inappréciable inappréciable adj s 0 0.68 0 0.61 +inappréciables inappréciable adj m p 0 0.68 0 0.07 +inappréciée inapprécié adj f s 0.01 0 0.01 0 +inappétence inappétence nom f s 0 0.27 0 0.27 +inapte inapte adj s 2 2.03 1.3 1.55 +inaptes inapte adj m p 2 2.03 0.7 0.47 +inaptitude inaptitude nom f s 0.3 1.01 0.29 1.01 +inaptitudes inaptitude nom f p 0.3 1.01 0.01 0 +inarrangeable inarrangeable adj s 0 0.07 0 0.07 +inarticulé inarticulé adj m s 0.15 1.55 0.03 0.2 +inarticulée inarticulé adj f s 0.15 1.55 0.02 0.14 +inarticulées inarticulé adj f p 0.15 1.55 0 0.2 +inarticulés inarticulé adj m p 0.15 1.55 0.1 1.01 +inassimilable inassimilable adj s 0 0.14 0 0.07 +inassimilables inassimilable adj p 0 0.14 0 0.07 +inassouvi inassouvi adj m s 0.09 1.96 0.04 0.41 +inassouvie inassouvi adj f s 0.09 1.96 0.02 0.47 +inassouvies inassouvi adj f p 0.09 1.96 0 0.2 +inassouvis inassouvi adj m p 0.09 1.96 0.02 0.88 +inassouvissable inassouvissable adj m s 0 0.27 0 0.14 +inassouvissables inassouvissable adj p 0 0.27 0 0.14 +inassouvissement inassouvissement nom m s 0 0.07 0 0.07 +inassurable inassurable adj s 0.02 0 0.02 0 +inattaquable inattaquable adj s 0.52 1.15 0.48 1.08 +inattaquables inattaquable adj m p 0.52 1.15 0.03 0.07 +inatteignable inatteignable adj m s 0.19 0.34 0.16 0.34 +inatteignables inatteignable adj p 0.19 0.34 0.04 0 +inattendu inattendu adj m s 6.1 25.14 3.58 10.41 +inattendue inattendu adj f s 6.1 25.14 1.9 10.41 +inattendues inattendu adj f p 6.1 25.14 0.43 2.16 +inattendus inattendu adj m p 6.1 25.14 0.2 2.16 +inattentif inattentif adj m s 0.17 1.62 0.16 0.88 +inattentifs inattentif adj m p 0.17 1.62 0 0.34 +inattention inattention nom f s 0.52 2.3 0.52 2.3 +inattentive inattentif adj f s 0.17 1.62 0.01 0.27 +inattentives inattentif adj f p 0.17 1.62 0 0.14 +inattrapable inattrapable adj s 0 0.07 0 0.07 +inaudible inaudible adj s 5.34 3.65 4.68 2.23 +inaudibles inaudible adj p 5.34 3.65 0.66 1.42 +inaugura inaugurer ver 2.41 5.54 0 0.2 ind:pas:3s; +inaugurai inaugurer ver 2.41 5.54 0 0.2 ind:pas:1s; +inaugurais inaugurer ver 2.41 5.54 0 0.07 ind:imp:1s; +inaugurait inaugurer ver 2.41 5.54 0.04 0.81 ind:imp:3s; +inaugural inaugural adj m s 0.26 1.01 0.22 0.41 +inaugurale inaugural adj f s 0.26 1.01 0.04 0.54 +inaugurales inaugural adj f p 0.26 1.01 0 0.07 +inaugurant inaugurer ver 2.41 5.54 0.01 0.41 par:pre; +inauguration inauguration nom f s 3.12 2.77 2.99 2.57 +inaugurations inauguration nom f p 3.12 2.77 0.12 0.2 +inaugure inaugurer ver 2.41 5.54 0.86 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inaugurer inaugurer ver 2.41 5.54 0.62 1.28 inf; +inaugurera inaugurer ver 2.41 5.54 0.23 0 ind:fut:3s; +inaugurions inaugurer ver 2.41 5.54 0 0.07 ind:imp:1p; +inaugurons inaugurer ver 2.41 5.54 0.01 0.14 imp:pre:1p;ind:pre:1p; +inaugurèrent inaugurer ver 2.41 5.54 0 0.14 ind:pas:3p; +inauguré inaugurer ver m s 2.41 5.54 0.55 1.15 par:pas; +inaugurée inaugurer ver f s 2.41 5.54 0.07 0.41 par:pas; +inaugurés inaugurer ver m p 2.41 5.54 0.01 0.14 par:pas; +inauthenticité inauthenticité nom f s 0 0.07 0 0.07 +inaverti inaverti adj m s 0 0.07 0 0.07 +inavouable inavouable adj s 1.27 2.84 0.96 1.76 +inavouablement inavouablement adv 0 0.07 0 0.07 +inavouables inavouable adj p 1.27 2.84 0.32 1.08 +inavoué inavoué adj m s 0.28 2.09 0.13 0.81 +inavouée inavoué adj f s 0.28 2.09 0.01 0.81 +inavouées inavoué adj f p 0.28 2.09 0 0.34 +inavoués inavoué adj m p 0.28 2.09 0.14 0.14 +inca inca adj 0.45 0.61 0.37 0.34 +incalculable incalculable adj s 0.94 2.09 0.77 1.55 +incalculables incalculable adj p 0.94 2.09 0.17 0.54 +incandescence incandescence nom f s 0.06 1.15 0.06 1.01 +incandescences incandescence nom f p 0.06 1.15 0 0.14 +incandescent incandescent adj m s 0.6 4.73 0.15 1.96 +incandescente incandescent adj f s 0.6 4.73 0.42 1.15 +incandescentes incandescent adj f p 0.6 4.73 0.01 1.15 +incandescents incandescent adj m p 0.6 4.73 0.02 0.47 +incantation incantation nom f s 1.92 2.5 1.33 1.08 +incantations incantation nom f p 1.92 2.5 0.59 1.42 +incantatoire incantatoire adj s 0.01 1.01 0.01 0.74 +incantatoires incantatoire adj p 0.01 1.01 0 0.27 +incantatrice incantateur nom f s 0 0.07 0 0.07 +incapable incapable adj s 20.93 46.22 17.38 38.72 +incapables incapable adj p 20.93 46.22 3.55 7.5 +incapacitant incapacitant adj m s 0.07 0.07 0.05 0.07 +incapacitante incapacitant adj f s 0.07 0.07 0.01 0 +incapacitants incapacitant adj m p 0.07 0.07 0.01 0 +incapacité incapacité nom f s 2.75 3.99 2.71 3.85 +incapacités incapacité nom f p 2.75 3.99 0.04 0.14 +incarcère incarcérer ver 1.7 1.35 0.06 0.07 imp:pre:2s;ind:pre:3s; +incarcération incarcération nom f s 0.84 0.81 0.84 0.81 +incarcérer incarcérer ver 1.7 1.35 0.24 0.07 inf; +incarcérez incarcérer ver 1.7 1.35 0.01 0 imp:pre:2p; +incarcéré incarcérer ver m s 1.7 1.35 1.19 0.74 par:pas; +incarcérée incarcérer ver f s 1.7 1.35 0.1 0.07 par:pas; +incarcérées incarcérer ver f p 1.7 1.35 0.01 0.07 par:pas; +incarcérés incarcérer ver m p 1.7 1.35 0.09 0.34 par:pas; +incarna incarner ver 3.31 16.28 0 0.2 ind:pas:3s; +incarnadines incarnadin adj f p 0 0.14 0 0.14 +incarnai incarner ver 3.31 16.28 0 0.07 ind:pas:1s; +incarnaient incarner ver 3.31 16.28 0 1.22 ind:imp:3p; +incarnais incarner ver 3.31 16.28 0.04 0.47 ind:imp:1s;ind:imp:2s; +incarnait incarner ver 3.31 16.28 0.15 4.32 ind:imp:3s; +incarnant incarner ver 3.31 16.28 0.2 0.88 par:pre; +incarnat incarnat nom m s 0.02 0.41 0.02 0.41 +incarnation incarnation nom f s 1.03 5.2 0.96 4.26 +incarnations incarnation nom f p 1.03 5.2 0.07 0.95 +incarne incarner ver 3.31 16.28 1.28 2.7 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incarnent incarner ver 3.31 16.28 0.12 0.54 ind:pre:3p; +incarner incarner ver 3.31 16.28 0.36 2.7 inf; +incarnera incarner ver 3.31 16.28 0.04 0.07 ind:fut:3s; +incarneraient incarner ver 3.31 16.28 0 0.07 cnd:pre:3p; +incarnerais incarner ver 3.31 16.28 0.01 0 cnd:pre:1s; +incarnerait incarner ver 3.31 16.28 0.01 0.07 cnd:pre:3s; +incarnerez incarner ver 3.31 16.28 0.01 0 ind:fut:2p; +incarnes incarner ver 3.31 16.28 0.17 0.07 ind:pre:2s; +incarnez incarner ver 3.31 16.28 0.08 0 ind:pre:2p; +incarniez incarner ver 3.31 16.28 0.01 0 ind:imp:2p; +incarnions incarner ver 3.31 16.28 0 0.2 ind:imp:1p; +incarnât incarner ver 3.31 16.28 0.01 0.07 sub:imp:3s; +incarné incarné adj m s 1.69 1.22 0.98 0.47 +incarnée incarné adj f s 1.69 1.22 0.63 0.61 +incarnées incarné adj f p 1.69 1.22 0.01 0.14 +incarnés incarné adj m p 1.69 1.22 0.06 0 +incartade incartade nom f s 0.11 2.03 0.11 0.81 +incartades incartade nom f p 0.11 2.03 0 1.22 +incas inca adj p 0.45 0.61 0.09 0.27 +incassable incassable adj s 0.88 0.88 0.8 0.54 +incassables incassable adj p 0.88 0.88 0.08 0.34 +incendia incendier ver 4.37 5.81 0.01 0.34 ind:pas:3s; +incendiaient incendier ver 4.37 5.81 0 0.14 ind:imp:3p; +incendiaire incendiaire nom s 1.35 0.81 0.83 0.41 +incendiaires incendiaire nom p 1.35 0.81 0.51 0.41 +incendiait incendier ver 4.37 5.81 0.04 1.01 ind:imp:3s; +incendiant incendier ver 4.37 5.81 0.01 0.41 par:pre; +incendie incendie nom m s 19.84 22.43 17.75 18.04 +incendient incendier ver 4.37 5.81 0.02 0.2 ind:pre:3p; +incendier incendier ver 4.37 5.81 0.93 1.89 inf; +incendieras incendier ver 4.37 5.81 0.01 0 ind:fut:2s; +incendies incendie nom m p 19.84 22.43 2.09 4.39 +incendiez incendier ver 4.37 5.81 0.13 0 imp:pre:2p;ind:pre:2p; +incendièrent incendier ver 4.37 5.81 0 0.07 ind:pas:3p; +incendié incendier ver m s 4.37 5.81 1.42 0.81 par:pas; +incendiée incendier ver f s 4.37 5.81 0.2 0.27 par:pas; +incendiées incendié adj f p 0.89 2.43 0.28 0.54 +incendiés incendier ver m p 4.37 5.81 0.04 0.07 par:pas; +incernable incernable adj m s 0 0.14 0 0.14 +incertain incertain adj m s 4.23 20.95 1.49 8.78 +incertaine incertain adj f s 4.23 20.95 1.27 6.76 +incertaines incertain adj f p 4.23 20.95 0.4 2.64 +incertains incertain adj m p 4.23 20.95 1.08 2.77 +incertitude incertitude nom f s 2.52 11.89 2.31 10 +incertitudes incertitude nom f p 2.52 11.89 0.21 1.89 +incessamment incessamment adv 0.48 3.58 0.48 3.58 +incessant incessant adj m s 1.79 12.23 0.65 4.12 +incessante incessant adj f s 1.79 12.23 0.33 3.31 +incessantes incessant adj f p 1.79 12.23 0.44 2.97 +incessants incessant adj m p 1.79 12.23 0.37 1.82 +inceste inceste nom m s 2.11 3.04 2.08 2.97 +incestes inceste nom m p 2.11 3.04 0.03 0.07 +incestueuse incestueux adj f s 0.69 1.76 0.17 0.41 +incestueuses incestueux adj f p 0.69 1.76 0.02 0.34 +incestueux incestueux adj m 0.69 1.76 0.5 1.01 +inch_allah inch_allah ono 0.27 0.47 0.27 0.47 +inchangeable inchangeable adj f s 0.02 0.07 0.02 0.07 +inchangé inchangé adj m s 1.22 1.69 0.37 0.68 +inchangée inchangé adj f s 1.22 1.69 0.54 0.61 +inchangées inchangé adj f p 1.22 1.69 0.16 0.14 +inchangés inchangé adj m p 1.22 1.69 0.15 0.27 +inchavirable inchavirable adj s 0.01 0 0.01 0 +inchiffrable inchiffrable adj s 0 0.14 0 0.14 +incidemment incidemment adv 0.27 1.28 0.27 1.28 +incidence incidence nom f s 0.82 1.35 0.68 0.81 +incidences incidence nom f p 0.82 1.35 0.14 0.54 +incident incident nom m s 20.35 29.93 17.73 21.08 +incidente incident adj f s 1.2 1.69 0 0.14 +incidentes incident adj f p 1.2 1.69 0 0.14 +incidents incident nom m p 20.35 29.93 2.62 8.85 +incinère incinérer ver 3.79 1.76 0.13 0.07 ind:pre:1s;ind:pre:3s; +incinérait incinérer ver 3.79 1.76 0 0.07 ind:imp:3s; +incinérant incinérer ver 3.79 1.76 0.01 0 par:pre; +incinérateur incinérateur nom m s 0.67 0.27 0.63 0.2 +incinérateurs incinérateur nom m p 0.67 0.27 0.04 0.07 +incinération incinération nom f s 0.48 1.62 0.48 1.62 +incinérer incinérer ver 3.79 1.76 1.5 0.54 inf; +incinérez incinérer ver 3.79 1.76 0.06 0 imp:pre:2p;ind:pre:2p; +incinéré incinérer ver m s 3.79 1.76 1.02 0.54 par:pas; +incinérée incinérer ver f s 3.79 1.76 0.66 0.47 par:pas; +incinérés incinérer ver m p 3.79 1.76 0.41 0.07 par:pas; +incirconcis incirconcis adj m 0.01 0.27 0.01 0.27 +incisa inciser ver 1.05 1.82 0 0.07 ind:pas:3s; +incisaient inciser ver 1.05 1.82 0 0.2 ind:imp:3p; +incisait inciser ver 1.05 1.82 0 0.27 ind:imp:3s; +incisant inciser ver 1.05 1.82 0.11 0.41 par:pre; +incise inciser ver 1.05 1.82 0.17 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inciser inciser ver 1.05 1.82 0.36 0.27 inf; +incisera inciser ver 1.05 1.82 0 0.07 ind:fut:3s; +incises inciser ver 1.05 1.82 0.02 0 ind:pre:2s; +incisez inciser ver 1.05 1.82 0.04 0.07 imp:pre:2p;ind:pre:2p; +incisif incisif adj m s 0.18 1.89 0.07 0.88 +incisifs incisif adj m p 0.18 1.89 0.03 0.41 +incision incision nom f s 2.62 0.68 2.27 0.47 +incisions incision nom f p 2.62 0.68 0.35 0.2 +incisive incisive nom f s 0.67 1.42 0.28 0.2 +incisives incisive nom f p 0.67 1.42 0.39 1.22 +incisé inciser ver m s 1.05 1.82 0.19 0.07 par:pas; +incisée inciser ver f s 1.05 1.82 0.12 0.07 par:pas; +incisées inciser ver f p 1.05 1.82 0.03 0.07 par:pas; +incisés inciser ver m p 1.05 1.82 0.01 0.07 par:pas; +incita inciter ver 6.32 10.47 0.14 0.47 ind:pas:3s; +incitaient inciter ver 6.32 10.47 0.01 0.88 ind:imp:3p; +incitait inciter ver 6.32 10.47 0.38 2.16 ind:imp:3s; +incitant inciter ver 6.32 10.47 0.08 0.47 par:pre; +incitateur incitateur nom m s 0.04 0.07 0.04 0 +incitatif incitatif adj m s 0.01 0.07 0.01 0.07 +incitation incitation nom f s 1.24 0.54 1.24 0.54 +incitatrice incitateur nom f s 0.04 0.07 0 0.07 +incite inciter ver 6.32 10.47 1.61 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incitent inciter ver 6.32 10.47 0.37 0.68 ind:pre:3p; +inciter inciter ver 6.32 10.47 2.01 2.43 inf; +incitera inciter ver 6.32 10.47 0.1 0.14 ind:fut:3s; +inciterai inciter ver 6.32 10.47 0.14 0 ind:fut:1s; +inciteraient inciter ver 6.32 10.47 0.01 0.07 cnd:pre:3p; +inciterais inciter ver 6.32 10.47 0.02 0 cnd:pre:1s; +inciterait inciter ver 6.32 10.47 0.14 0.2 cnd:pre:3s; +inciteront inciter ver 6.32 10.47 0.01 0 ind:fut:3p; +incitez inciter ver 6.32 10.47 0.23 0.07 imp:pre:2p;ind:pre:2p; +incitiez inciter ver 6.32 10.47 0.03 0 sub:pre:2p; +incitèrent inciter ver 6.32 10.47 0.01 0.14 ind:pas:3p; +incité inciter ver m s 6.32 10.47 0.77 0.61 par:pas; +incitée inciter ver f s 6.32 10.47 0.06 0.47 par:pas; +incités inciter ver m p 6.32 10.47 0.2 0.07 par:pas; +incivil incivil adj m s 0 0.2 0 0.07 +incivils incivil adj m p 0 0.2 0 0.14 +inclassable inclassable adj m s 0.3 0.2 0.02 0.14 +inclassables inclassable adj p 0.3 0.2 0.28 0.07 +inclina incliner ver 7.35 50 0.23 8.85 ind:pas:3s; +inclinable inclinable adj m s 0.07 0.07 0.04 0.07 +inclinables inclinable adj m p 0.07 0.07 0.03 0 +inclinai incliner ver 7.35 50 0 0.68 ind:pas:1s; +inclinaient incliner ver 7.35 50 0.1 2.3 ind:imp:3p; +inclinais incliner ver 7.35 50 0 1.08 ind:imp:1s; +inclinaison inclinaison nom f s 0.78 3.04 0.73 2.77 +inclinaisons inclinaison nom f p 0.78 3.04 0.05 0.27 +inclinait incliner ver 7.35 50 0.13 4.12 ind:imp:3s; +inclinant incliner ver 7.35 50 0.21 4.19 par:pre; +inclinante inclinant adj f s 0 0.07 0 0.07 +inclination inclination nom f s 0.52 2.57 0.38 2.03 +inclinations inclination nom f p 0.52 2.57 0.14 0.54 +incline incliner ver 7.35 50 3.79 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +inclinent incliner ver 7.35 50 0.41 1.96 ind:pre:3p; +incliner incliner ver 7.35 50 0.88 5.81 ind:pre:2p;inf; +inclinerai incliner ver 7.35 50 0.04 0 ind:fut:1s; +inclineraient incliner ver 7.35 50 0 0.2 cnd:pre:3p; +inclinerais incliner ver 7.35 50 0.16 0.14 cnd:pre:1s; +inclinerait incliner ver 7.35 50 0 0.34 cnd:pre:3s; +inclineras incliner ver 7.35 50 0.03 0 ind:fut:2s; +inclinerez incliner ver 7.35 50 0.01 0 ind:fut:2p; +inclineront incliner ver 7.35 50 0.12 0.07 ind:fut:3p; +inclinez incliner ver 7.35 50 0.46 0 imp:pre:2p;ind:pre:2p; +inclinions incliner ver 7.35 50 0 0.14 ind:imp:1p; +inclinomètre inclinomètre nom m s 0.01 0 0.01 0 +inclinons incliner ver 7.35 50 0.23 0 imp:pre:1p;ind:pre:1p; +inclinât incliner ver 7.35 50 0 0.2 sub:imp:3s; +inclinèrent incliner ver 7.35 50 0.01 0.61 ind:pas:3p; +incliné incliner ver m s 7.35 50 0.33 5.74 par:pas; +inclinée incliné adj f s 0.19 5.54 0.12 1.35 +inclinées incliner ver f p 7.35 50 0.1 0.34 par:pas; +inclinés incliner ver m p 7.35 50 0.08 0.81 par:pas; +incluais inclure ver 8.12 3.51 0 0.07 ind:imp:1s; +incluait inclure ver 8.12 3.51 0.2 0.41 ind:imp:3s; +incluant inclure ver 8.12 3.51 0.91 0.27 par:pre; +inclue inclure ver 8.12 3.51 0.4 0.07 sub:pre:1s;sub:pre:3s; +incluent inclure ver 8.12 3.51 0.25 0 ind:pre:3p; +incluez inclure ver 8.12 3.51 0.1 0 imp:pre:2p;ind:pre:2p; +incluons inclure ver 8.12 3.51 0 0.07 ind:pre:1p; +inclura inclure ver 8.12 3.51 0.02 0 ind:fut:3s; +inclurai inclure ver 8.12 3.51 0.03 0 ind:fut:1s; +inclurait inclure ver 8.12 3.51 0.06 0 cnd:pre:3s; +inclure inclure ver 8.12 3.51 1.85 0.95 inf;; +inclus inclure ver m 8.12 3.51 2.53 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +incluse inclus adj f s 0.7 0.81 0.45 0.41 +incluses inclus adj f p 0.7 0.81 0.04 0.2 +inclusion inclusion nom f s 0.11 0.14 0.11 0.14 +inclusive inclusif adj f s 0.01 0.07 0.01 0.07 +inclusivement inclusivement adv 0.01 0.27 0.01 0.27 +inclut inclure ver 8.12 3.51 1.78 0.54 ind:pre:3s;ind:pas:3s; +inclémence inclémence nom f s 0 0.27 0 0.2 +inclémences inclémence nom f p 0 0.27 0 0.07 +inclément inclément adj m s 0.02 0.07 0.02 0 +inclémente inclément adj f s 0.02 0.07 0 0.07 +incoercible incoercible adj s 0.12 0.61 0.11 0.34 +incoerciblement incoerciblement adv 0 0.2 0 0.2 +incoercibles incoercible adj p 0.12 0.61 0.01 0.27 +incognito incognito adv 1.87 2.36 1.87 2.36 +incognitos incognito nom m p 0.3 1.55 0 0.07 +incohérence incohérence nom f s 1.11 2.7 0.77 2.09 +incohérences incohérence nom f p 1.11 2.7 0.34 0.61 +incohérent incohérent adj m s 0.86 5.27 0.27 1.76 +incohérente incohérent adj f s 0.86 5.27 0.29 1.28 +incohérentes incohérent adj f p 0.86 5.27 0.06 1.15 +incohérents incohérent adj m p 0.86 5.27 0.25 1.08 +incoiffables incoiffable adj m p 0.01 0.14 0.01 0.14 +incollable incollable adj m s 0.1 0.14 0.1 0.14 +incolore incolore adj s 0.14 5 0.14 3.92 +incolores incolore adj p 0.14 5 0 1.08 +incombaient incomber ver 1.43 5.95 0.01 0.61 ind:imp:3p; +incombait incomber ver 1.43 5.95 0.04 2.7 ind:imp:3s; +incombant incomber ver 1.43 5.95 0.02 0.07 par:pre; +incombe incomber ver 1.43 5.95 1.28 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incombent incomber ver 1.43 5.95 0.03 0.34 ind:pre:3p; +incomber incomber ver 1.43 5.95 0.02 0.14 inf; +incombera incomber ver 1.43 5.95 0.02 0.07 ind:fut:3s; +incomberait incomber ver 1.43 5.95 0.01 0.2 cnd:pre:3s; +incombustible incombustible adj f s 0.02 0 0.01 0 +incombustibles incombustible adj p 0.02 0 0.01 0 +incombèrent incomber ver 1.43 5.95 0 0.07 ind:pas:3p; +incomestible incomestible adj f s 0 0.14 0 0.14 +incommensurable incommensurable adj s 0.28 1.89 0.16 1.82 +incommensurablement incommensurablement adv 0 0.14 0 0.14 +incommensurables incommensurable adj p 0.28 1.89 0.12 0.07 +incommodait incommoder ver 0.85 1.96 0.01 0.61 ind:imp:3s; +incommodant incommodant adj m s 0.05 0.07 0.04 0 +incommodante incommodant adj f s 0.05 0.07 0 0.07 +incommodantes incommodant adj f p 0.05 0.07 0.01 0 +incommode incommoder ver 0.85 1.96 0.28 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incommoder incommoder ver 0.85 1.96 0.05 0.34 inf; +incommodera incommoder ver 0.85 1.96 0.14 0 ind:fut:3s; +incommoderai incommoder ver 0.85 1.96 0.11 0 ind:fut:1s; +incommodes incommode adj p 0.23 1.55 0 0.47 +incommodez incommoder ver 0.85 1.96 0.17 0 imp:pre:2p;ind:pre:2p; +incommodité incommodité nom f s 0 0.68 0 0.41 +incommodités incommodité nom f p 0 0.68 0 0.27 +incommodé incommoder ver m s 0.85 1.96 0.07 0.47 par:pas; +incommodée incommoder ver f s 0.85 1.96 0.03 0.14 par:pas; +incommodées incommoder ver f p 0.85 1.96 0 0.07 par:pas; +incommodés incommoder ver m p 0.85 1.96 0 0.14 par:pas; +incommunicabilité incommunicabilité nom f s 0.12 0.07 0.12 0.07 +incommunicable incommunicable adj s 0 1.42 0 1.35 +incommunicables incommunicable adj p 0 1.42 0 0.07 +incomparable incomparable adj s 1.95 9.32 1.64 7.43 +incomparablement incomparablement adv 0.01 1.08 0.01 1.08 +incomparables incomparable adj p 1.95 9.32 0.31 1.89 +incompatibilité incompatibilité nom f s 0.71 0.61 0.59 0.47 +incompatibilités incompatibilité nom f p 0.71 0.61 0.11 0.14 +incompatible incompatible adj s 1.23 3.11 0.66 1.89 +incompatibles incompatible adj p 1.23 3.11 0.56 1.22 +incomplet incomplet adj m s 2.27 2.43 1.14 1.15 +incomplets incomplet adj m p 2.27 2.43 0.17 0.27 +incomplète incomplet adj f s 2.27 2.43 0.57 0.54 +incomplètement incomplètement adv 0 0.2 0 0.2 +incomplètes incomplet adj f p 2.27 2.43 0.4 0.47 +incomplétude incomplétude nom f s 0.01 0 0.01 0 +incompressible incompressible adj s 0.03 0 0.03 0 +incompris incompris adj m 0.93 1.35 0.73 0.74 +incomprise incompris adj f s 0.93 1.35 0.18 0.54 +incomprises incompris nom f p 0.29 0.34 0.1 0.07 +incompréhensible incompréhensible adj s 5.16 17.97 4.54 11.89 +incompréhensiblement incompréhensiblement adv 0 0.47 0 0.47 +incompréhensibles incompréhensible adj p 5.16 17.97 0.63 6.08 +incompréhensif incompréhensif adj m s 0.01 0.47 0.01 0.27 +incompréhensifs incompréhensif adj m p 0.01 0.47 0 0.2 +incompréhension incompréhension nom f s 0.65 4.59 0.65 4.53 +incompréhensions incompréhension nom f p 0.65 4.59 0 0.07 +incompétence incompétence nom f s 1.64 1.35 1.62 1.28 +incompétences incompétence nom f p 1.64 1.35 0.02 0.07 +incompétent incompétent adj m s 2.3 0.81 1.25 0.41 +incompétente incompétent adj f s 2.3 0.81 0.35 0.14 +incompétents incompétent adj m p 2.3 0.81 0.69 0.27 +inconcevable inconcevable adj s 1.91 5.68 1.75 5.27 +inconcevablement inconcevablement adv 0 0.07 0 0.07 +inconcevables inconcevable adj p 1.91 5.68 0.16 0.41 +inconciliable inconciliable adj m s 0.35 1.22 0.01 0.61 +inconciliables inconciliable adj p 0.35 1.22 0.34 0.61 +inconditionnel inconditionnel adj m s 1.2 0.54 0.45 0.27 +inconditionnelle inconditionnel adj f s 1.2 0.54 0.71 0.27 +inconditionnellement inconditionnellement adv 0.05 0 0.05 0 +inconditionnelles inconditionnel adj f p 1.2 0.54 0.02 0 +inconditionnels inconditionnel adj m p 1.2 0.54 0.01 0 +inconditionné inconditionné adj m s 0 0.2 0 0.07 +inconditionnée inconditionné adj f s 0 0.2 0 0.14 +inconduite inconduite nom f s 0.06 0.68 0.06 0.68 +inconfiance inconfiance nom f s 0 0.14 0 0.14 +inconfort inconfort nom m s 0.37 2.16 0.37 2.16 +inconfortable inconfortable adj s 1.9 2.09 1.77 1.89 +inconfortablement inconfortablement adv 0.01 0.34 0.01 0.34 +inconfortables inconfortable adj p 1.9 2.09 0.13 0.2 +incongelables incongelable adj f p 0 0.07 0 0.07 +incongru incongru adj m s 0.32 7.5 0.25 3.72 +incongrue incongru adj f s 0.32 7.5 0.05 2.03 +incongrues incongru adj f p 0.32 7.5 0 0.68 +incongruité incongruité nom f s 0.11 1.49 0.01 1.22 +incongruités incongruité nom f p 0.11 1.49 0.1 0.27 +incongrus incongru adj m p 0.32 7.5 0.02 1.08 +inconnaissable inconnaissable adj f s 0.01 0.41 0.01 0.41 +inconnaissance inconnaissance nom f s 0 0.07 0 0.07 +inconnu inconnu nom m s 24.25 40.41 13.29 22.97 +inconnue inconnu adj f s 23.13 61.82 7.24 17.16 +inconnues inconnu adj f p 23.13 61.82 2.23 9.05 +inconnus inconnu nom m p 24.25 40.41 5.5 9.19 +inconsciemment inconsciemment adv 2 6.28 2 6.28 +inconscience inconscience nom f s 1.23 6.69 1.23 6.55 +inconsciences inconscience nom f p 1.23 6.69 0 0.14 +inconscient inconscient adj m s 10.45 10.74 6.06 4.93 +inconsciente inconscient adj f s 10.45 10.74 3.35 3.85 +inconscientes inconscient adj f p 10.45 10.74 0.21 0.41 +inconscients inconscient adj m p 10.45 10.74 0.83 1.55 +inconsidéré inconsidéré adj m s 0.86 1.22 0.42 0.41 +inconsidérée inconsidéré adj f s 0.86 1.22 0.05 0.2 +inconsidérées inconsidéré adj f p 0.86 1.22 0.39 0.34 +inconsidérément inconsidérément adv 0.07 0.41 0.07 0.41 +inconsidérés inconsidéré adj m p 0.86 1.22 0 0.27 +inconsistance inconsistance nom f s 0 0.88 0 0.88 +inconsistant inconsistant adj m s 0.21 2.5 0.01 1.42 +inconsistante inconsistant adj f s 0.21 2.5 0.03 0.34 +inconsistantes inconsistant adj f p 0.21 2.5 0.03 0.2 +inconsistants inconsistant adj m p 0.21 2.5 0.14 0.54 +inconsolable inconsolable adj s 1.41 1.69 1.37 1.42 +inconsolables inconsolable adj m p 1.41 1.69 0.05 0.27 +inconsolé inconsolé adj m s 0 0.47 0 0.07 +inconsolée inconsolé adj f s 0 0.47 0 0.14 +inconsolées inconsolé adj f p 0 0.47 0 0.07 +inconsolés inconsolé adj m p 0 0.47 0 0.2 +inconsommable inconsommable adj s 0 0.14 0 0.14 +inconstance inconstance nom f s 0.26 0.95 0.26 0.95 +inconstant inconstant adj m s 0.85 0.54 0.32 0.34 +inconstante inconstant adj f s 0.85 0.54 0.26 0.2 +inconstants inconstant adj m p 0.85 0.54 0.28 0 +inconstitutionnel inconstitutionnel adj m s 0.24 0.14 0.08 0.07 +inconstitutionnelle inconstitutionnel adj f s 0.24 0.14 0.16 0.07 +inconstructibles inconstructible adj m p 0.01 0 0.01 0 +inconséquence inconséquence nom f s 0.04 1.42 0.04 1.08 +inconséquences inconséquence nom f p 0.04 1.42 0 0.34 +inconséquent inconséquent adj m s 0.27 0.88 0.13 0.27 +inconséquente inconséquent adj f s 0.27 0.88 0.11 0.34 +inconséquents inconséquent adj m p 0.27 0.88 0.04 0.27 +incontestable incontestable adj s 1.29 1.89 0.87 1.42 +incontestablement incontestablement adv 0.61 2.09 0.61 2.09 +incontestables incontestable adj p 1.29 1.89 0.43 0.47 +incontesté incontesté adj m s 0.64 1.69 0.4 1.15 +incontestée incontesté adj f s 0.64 1.69 0.23 0.34 +incontestés incontesté adj m p 0.64 1.69 0.01 0.2 +incontinence incontinence nom f s 0.28 0.68 0.28 0.34 +incontinences incontinence nom f p 0.28 0.68 0 0.34 +incontinent incontinent adj m s 0.29 1.49 0.2 1.08 +incontinente incontinent adj f s 0.29 1.49 0.06 0.07 +incontinentes incontinent adj f p 0.29 1.49 0.01 0.07 +incontinents incontinent adj m p 0.29 1.49 0.02 0.27 +incontournable incontournable adj s 0.58 0.54 0.5 0.41 +incontournables incontournable adj p 0.58 0.54 0.08 0.14 +incontrôlable incontrôlable adj s 2.65 1.82 2.08 1.01 +incontrôlables incontrôlable adj p 2.65 1.82 0.57 0.81 +incontrôlé incontrôlé adj m s 0.73 1.01 0.13 0.14 +incontrôlée incontrôlé adj f s 0.73 1.01 0.4 0.34 +incontrôlées incontrôlé adj f p 0.73 1.01 0.17 0.27 +incontrôlés incontrôlé adj m p 0.73 1.01 0.03 0.27 +inconvenance inconvenance nom f s 0.32 1.28 0.29 0.95 +inconvenances inconvenance nom f p 0.32 1.28 0.02 0.34 +inconvenant inconvenant adj m s 1.67 2.97 1.14 1.28 +inconvenante inconvenant adj f s 1.67 2.97 0.36 0.68 +inconvenantes inconvenant adj f p 1.67 2.97 0.05 0.74 +inconvenants inconvenant adj m p 1.67 2.97 0.12 0.27 +inconvertible inconvertible adj s 0 0.07 0 0.07 +inconvertissable inconvertissable adj m s 0 0.07 0 0.07 +inconvénient inconvénient nom m s 5.23 9.05 3.58 5.54 +inconvénients inconvénient nom m p 5.23 9.05 1.65 3.51 +incoordination incoordination nom f s 0.01 0 0.01 0 +incorpora incorporer ver 1.54 7.23 0.01 0.07 ind:pas:3s; +incorporable incorporable adj m s 0.01 0 0.01 0 +incorporaient incorporer ver 1.54 7.23 0 0.34 ind:imp:3p; +incorporait incorporer ver 1.54 7.23 0.02 0.41 ind:imp:3s; +incorporant incorporer ver 1.54 7.23 0.03 0.47 par:pre; +incorporation incorporation nom f s 0.46 1.35 0.46 1.28 +incorporations incorporation nom f p 0.46 1.35 0 0.07 +incorpore incorporer ver 1.54 7.23 0.24 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incorporel incorporel adj m s 0.28 0.27 0.28 0.07 +incorporelle incorporel adj f s 0.28 0.27 0 0.14 +incorporelles incorporel adj f p 0.28 0.27 0 0.07 +incorporent incorporer ver 1.54 7.23 0 0.34 ind:pre:3p; +incorporer incorporer ver 1.54 7.23 0.32 1.42 inf; +incorporez incorporer ver 1.54 7.23 0.01 0.07 imp:pre:2p; +incorporé incorporer ver m s 1.54 7.23 0.56 1.22 par:pas; +incorporée incorporer ver f s 1.54 7.23 0.19 0.81 par:pas; +incorporées incorporer ver f p 1.54 7.23 0.01 0.34 par:pas; +incorporés incorporer ver m p 1.54 7.23 0.15 1.42 par:pas; +incorrect incorrect adj m s 2.34 0.68 1.67 0.27 +incorrecte incorrect adj f s 2.34 0.68 0.61 0.34 +incorrectement incorrectement adv 0.06 0.07 0.06 0.07 +incorrection incorrection nom f s 0.02 0.34 0.02 0.34 +incorrects incorrect adj m p 2.34 0.68 0.06 0.07 +incorrigible incorrigible adj s 1.89 2.23 1.72 1.89 +incorrigiblement incorrigiblement adv 0 0.07 0 0.07 +incorrigibles incorrigible adj p 1.89 2.23 0.16 0.34 +incorruptibilité incorruptibilité nom f s 0.03 0.14 0.03 0.14 +incorruptible incorruptible adj s 0.53 1.01 0.47 0.68 +incorruptibles incorruptible adj p 0.53 1.01 0.06 0.34 +increvable increvable adj s 0.52 0.95 0.35 0.61 +increvables increvable adj m p 0.52 0.95 0.17 0.34 +incrimina incriminer ver 1.25 0.54 0 0.07 ind:pas:3s; +incriminant incriminer ver 1.25 0.54 0.19 0 par:pre; +incrimination incrimination nom f s 0.01 0 0.01 0 +incrimine incriminer ver 1.25 0.54 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incriminent incriminer ver 1.25 0.54 0.06 0 ind:pre:3p; +incriminer incriminer ver 1.25 0.54 0.57 0.2 inf; +incriminé incriminer ver m s 1.25 0.54 0.3 0.07 par:pas; +incriminée incriminer ver f s 1.25 0.54 0.03 0.07 par:pas; +incriminées incriminer ver f p 1.25 0.54 0.01 0.07 par:pas; +incrochetable incrochetable adj s 0.01 0 0.01 0 +incroyable incroyable adj s 74.67 22.64 69.22 19.32 +incroyablement incroyablement adv 5.55 4.53 5.55 4.53 +incroyables incroyable adj p 74.67 22.64 5.46 3.31 +incroyance incroyance nom f s 0.2 0.34 0.2 0.34 +incroyant incroyant nom m s 0.16 1.08 0.06 0.34 +incroyante incroyant nom f s 0.16 1.08 0 0.14 +incroyants incroyant nom m p 0.16 1.08 0.1 0.61 +incrusta incruster ver 2.77 14.46 0 0.47 ind:pas:3s; +incrustaient incruster ver 2.77 14.46 0.12 0.27 ind:imp:3p; +incrustais incruster ver 2.77 14.46 0 0.34 ind:imp:1s;ind:imp:2s; +incrustait incruster ver 2.77 14.46 0.01 1.01 ind:imp:3s; +incrustant incruster ver 2.77 14.46 0 0.68 par:pre; +incrustation incrustation nom f s 0.12 1.62 0.06 0.2 +incrustations incrustation nom f p 0.12 1.62 0.06 1.42 +incruste incruster ver 2.77 14.46 0.59 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incrustent incruster ver 2.77 14.46 0 0.61 ind:pre:3p; +incruster incruster ver 2.77 14.46 0.84 0.68 inf; +incrusterait incruster ver 2.77 14.46 0 0.14 cnd:pre:3s; +incrustez incruster ver 2.77 14.46 0.02 0 imp:pre:2p;ind:pre:2p; +incrustèrent incruster ver 2.77 14.46 0 0.07 ind:pas:3p; +incrusté incruster ver m s 2.77 14.46 0.43 2.7 par:pas; +incrustée incruster ver f s 2.77 14.46 0.44 2.77 par:pas; +incrustées incruster ver f p 2.77 14.46 0.17 1.55 par:pas; +incrustés incruster ver m p 2.77 14.46 0.14 2.23 par:pas; +incrédibilité incrédibilité nom f s 0 0.2 0 0.2 +incrédule incrédule adj s 0.46 9.86 0.14 8.45 +incrédules incrédule adj p 0.46 9.86 0.32 1.42 +incrédulité incrédulité nom f s 0.58 5 0.58 5 +incréé incréé adj m s 0.14 0.14 0.14 0 +incréée incréé adj f s 0.14 0.14 0 0.14 +incubateur incubateur nom m s 0.41 0.07 0.34 0 +incubateurs incubateur nom m p 0.41 0.07 0.07 0.07 +incubation incubation nom f s 0.53 0.54 0.53 0.54 +incube incube nom m s 0.1 0.14 0.07 0.07 +incuber incuber ver 0.17 0 0.05 0 inf; +incubes incube nom m p 0.1 0.14 0.03 0.07 +incubé incuber ver m s 0.17 0 0.12 0 par:pas; +inculcation inculcation nom f s 0 0.07 0 0.07 +inculpa inculper ver 7.4 1.22 0.01 0.07 ind:pas:3s; +inculpant inculper ver 7.4 1.22 0.03 0 par:pre; +inculpation inculpation nom f s 2.55 1.55 2.05 1.42 +inculpations inculpation nom f p 2.55 1.55 0.51 0.14 +inculpe inculper ver 7.4 1.22 0.64 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inculpent inculper ver 7.4 1.22 0.03 0 ind:pre:3p; +inculper inculper ver 7.4 1.22 2.95 0.54 inf;; +inculpera inculper ver 7.4 1.22 0.15 0 ind:fut:3s; +inculperai inculper ver 7.4 1.22 0.04 0 ind:fut:1s; +inculperais inculper ver 7.4 1.22 0.02 0 cnd:pre:1s;cnd:pre:2s; +inculperont inculper ver 7.4 1.22 0.01 0 ind:fut:3p; +inculpez inculper ver 7.4 1.22 0.33 0 imp:pre:2p;ind:pre:2p; +inculpons inculper ver 7.4 1.22 0.04 0 imp:pre:1p;ind:pre:1p; +inculpé inculper ver m s 7.4 1.22 2.33 0.41 par:pas; +inculpée inculper ver f s 7.4 1.22 0.49 0 par:pas; +inculpés inculper ver m p 7.4 1.22 0.33 0.2 par:pas; +inculqua inculquer ver 1.19 4.05 0.01 0.2 ind:pas:3s; +inculquait inculquer ver 1.19 4.05 0.1 0.27 ind:imp:3s; +inculquant inculquer ver 1.19 4.05 0.01 0 par:pre; +inculque inculquer ver 1.19 4.05 0.1 0.2 ind:pre:1s;ind:pre:3s; +inculquent inculquer ver 1.19 4.05 0 0.07 ind:pre:3p; +inculquer inculquer ver 1.19 4.05 0.62 1.42 inf; +inculquons inculquer ver 1.19 4.05 0.01 0 ind:pre:1p; +inculquât inculquer ver 1.19 4.05 0 0.07 sub:imp:3s; +inculqué inculquer ver m s 1.19 4.05 0.29 0.74 par:pas; +inculquée inculquer ver f s 1.19 4.05 0.04 0.54 par:pas; +inculquées inculquer ver f p 1.19 4.05 0.01 0.14 par:pas; +inculqués inculquer ver m p 1.19 4.05 0 0.41 par:pas; +inculte inculte adj s 2.2 2.23 1.53 1.49 +incultes inculte adj p 2.2 2.23 0.67 0.74 +incultivable incultivable adj f s 0 0.27 0 0.2 +incultivables incultivable adj m p 0 0.27 0 0.07 +inculture inculture nom f s 0 0.41 0 0.41 +incunables incunable nom m p 0 0.47 0 0.47 +incurable incurable adj s 2.44 2.84 2.26 2.36 +incurablement incurablement adv 0.12 0.41 0.12 0.41 +incurables incurable nom p 0.8 0.2 0.36 0.07 +incurie incurie nom f s 0.11 0.68 0.11 0.68 +incurieux incurieux adj m s 0 0.07 0 0.07 +incuriosité incuriosité nom f s 0 0.34 0 0.34 +incursion incursion nom f s 0.48 4.26 0.41 2.64 +incursions incursion nom f p 0.48 4.26 0.08 1.62 +incurvaient incurver ver 0.06 3.11 0.01 0.07 ind:imp:3p; +incurvait incurver ver 0.06 3.11 0 0.81 ind:imp:3s; +incurvant incurver ver 0.06 3.11 0 0.27 par:pre; +incurvation incurvation nom f s 0.14 0.07 0.14 0.07 +incurve incurver ver 0.06 3.11 0.01 0.95 imp:pre:2s;ind:pre:3s; +incurvent incurver ver 0.06 3.11 0 0.2 ind:pre:3p; +incurver incurver ver 0.06 3.11 0.01 0.27 inf; +incurvèrent incurver ver 0.06 3.11 0 0.07 ind:pas:3p; +incurvé incurvé adj m s 0.09 1.42 0.07 0.74 +incurvée incurvé adj f s 0.09 1.42 0.02 0.41 +incurvées incurver ver f p 0.06 3.11 0 0.07 par:pas; +incurvés incurvé adj m p 0.09 1.42 0 0.2 +incus incus adj 0.01 0 0.01 0 +indansable indansable adj s 0.01 0 0.01 0 +inde inde nom m s 0.24 0.54 0.24 0.14 +indemne indemne adj s 2.66 3.11 2.13 2.3 +indemnes indemne adj p 2.66 3.11 0.53 0.81 +indemnisable indemnisable adj s 0.01 0 0.01 0 +indemnisation indemnisation nom f s 0.36 0.14 0.32 0.07 +indemnisations indemnisation nom f p 0.36 0.14 0.04 0.07 +indemnise indemniser ver 0.78 0.2 0.14 0 ind:pre:3s; +indemniser indemniser ver 0.78 0.2 0.32 0.07 inf; +indemniserai indemniser ver 0.78 0.2 0.11 0 ind:fut:1s; +indemniseraient indemniser ver 0.78 0.2 0 0.07 cnd:pre:3p; +indemnisez indemniser ver 0.78 0.2 0.11 0 imp:pre:2p; +indemnisé indemniser ver m s 0.78 0.2 0.06 0 par:pas; +indemnisés indemniser ver m p 0.78 0.2 0.03 0.07 par:pas; +indemnité indemnité nom f s 3.17 2.36 1.84 1.69 +indemnités indemnité nom f p 3.17 2.36 1.33 0.68 +indemnités_repa indemnités_repa nom f p 0.01 0 0.01 0 +indentation indentation nom f s 0.03 0.14 0.03 0.14 +indenter indenter ver 0.04 0 0.01 0 inf; +indentification indentification nom f s 0.01 0 0.01 0 +indenté indenter ver m s 0.04 0 0.03 0 par:pas; +indes inde nom m p 0.24 0.54 0 0.41 +indescriptible indescriptible adj s 1.88 2.7 1.71 2.5 +indescriptiblement indescriptiblement adv 0 0.07 0 0.07 +indescriptibles indescriptible adj p 1.88 2.7 0.17 0.2 +indestructibilité indestructibilité nom f s 0 0.14 0 0.14 +indestructible indestructible adj s 1.92 4.46 1.49 3.38 +indestructibles indestructible adj p 1.92 4.46 0.43 1.08 +index index nom m 2.18 32.43 2.18 32.43 +indexation indexation nom f s 0.12 0 0.12 0 +indexer indexer ver 0.09 0.27 0.04 0 inf; +indexeur indexeur nom m s 0.02 0 0.02 0 +indexé indexer ver m s 0.09 0.27 0.04 0.2 par:pas; +indexée indexer ver f s 0.09 0.27 0.01 0.07 par:pas; +indianisés indianiser ver m p 0 0.07 0 0.07 par:pas; +indic indic nom m s 5.36 1.35 4.33 0.54 +indicateur indicateur nom m s 1.77 2.5 0.98 1.89 +indicateurs indicateur nom m p 1.77 2.5 0.79 0.61 +indicatif indicatif nom m s 0.81 1.55 0.79 1.49 +indicatifs indicatif nom m p 0.81 1.55 0.02 0.07 +indication indication nom f s 3.59 12.43 1.42 5.74 +indications indication nom f p 3.59 12.43 2.18 6.69 +indicatrice indicateur adj f s 0.39 1.49 0 0.14 +indicatrices indicateur adj f p 0.39 1.49 0.01 0.2 +indice indice nom m s 22.13 9.39 13.29 4.66 +indices indice nom m p 22.13 9.39 8.85 4.73 +indiciaire indiciaire adj f s 0.01 0.07 0.01 0 +indiciaires indiciaire adj f p 0.01 0.07 0 0.07 +indicible indicible adj s 0.82 6.35 0.76 5.41 +indiciblement indiciblement adv 0.01 0.47 0.01 0.47 +indicibles indicible adj p 0.82 6.35 0.07 0.95 +indics indic nom m p 5.36 1.35 1.03 0.81 +indien indien adj m s 11.62 11.22 5.75 3.18 +indienne indien adj f s 11.62 11.22 3.33 4.53 +indienneries indiennerie nom f p 0 0.34 0 0.34 +indiennes indien adj f p 11.62 11.22 0.65 1.42 +indiens indien nom m p 12.99 7.16 5.92 3.65 +indiffère indifférer ver 0.6 1.22 0.47 0.74 ind:pre:1s;ind:pre:3s; +indiffèrent indifférer ver 0.6 1.22 0.09 0.07 ind:pre:3p; +indiffères indifférer ver 0.6 1.22 0.01 0 ind:pre:2s; +indifféraient indifférer ver 0.6 1.22 0 0.2 ind:imp:3p; +indifférait indifférer ver 0.6 1.22 0.02 0.14 ind:imp:3s; +indifféremment indifféremment adv 0.06 3.45 0.06 3.45 +indifférence indifférence nom f s 3.62 38.31 3.62 38.04 +indifférences indifférence nom f p 3.62 38.31 0 0.27 +indifférenciation indifférenciation nom f s 0.01 0.14 0.01 0.14 +indifférencié indifférencié adj m s 0.02 0.74 0 0.2 +indifférenciée indifférencié adj f s 0.02 0.74 0.02 0.34 +indifférenciés indifférencié adj m p 0.02 0.74 0 0.2 +indifférent indifférent adj m s 4.48 30.14 2.42 16.22 +indifférente indifférent adj f s 4.48 30.14 1.21 8.24 +indifférentes indifférent adj f p 4.48 30.14 0.11 1.42 +indifférentisme indifférentisme nom m s 0 0.07 0 0.07 +indifférents indifférent adj m p 4.48 30.14 0.74 4.26 +indifféré indifférer ver m s 0.6 1.22 0.01 0.07 par:pas; +indigence indigence nom f s 0.44 1.96 0.44 1.96 +indigent indigent nom m s 0.57 0.95 0.07 0.2 +indigente indigent nom f s 0.57 0.95 0.02 0 +indigentes indigent adj f p 0.12 0.68 0.04 0 +indigents indigent nom m p 0.57 0.95 0.48 0.61 +indigeste indigeste adj s 0.53 1.15 0.24 0.81 +indigestes indigeste adj p 0.53 1.15 0.29 0.34 +indigestion indigestion nom f s 1.59 2.03 1.56 1.82 +indigestionner indigestionner ver 0 0.07 0 0.07 inf; +indigestions indigestion nom f p 1.59 2.03 0.04 0.2 +indigna indigner ver 4.23 17.23 0.01 2.43 ind:pas:3s; +indignai indigner ver 4.23 17.23 0 0.2 ind:pas:1s; +indignaient indigner ver 4.23 17.23 0 0.41 ind:imp:3p; +indignais indigner ver 4.23 17.23 0 0.07 ind:imp:1s; +indignait indigner ver 4.23 17.23 0.01 3.04 ind:imp:3s; +indignant indigner ver 4.23 17.23 0 0.14 par:pre; +indignassent indigner ver 4.23 17.23 0 0.07 sub:imp:3p; +indignation indignation nom f s 1.56 16.28 1.45 15.68 +indignations indignation nom f p 1.56 16.28 0.11 0.61 +indigne indigne adj s 8.75 10.61 6.99 7.91 +indignement indignement adv 0.28 0.54 0.28 0.54 +indignent indigner ver 4.23 17.23 0.72 0.61 ind:pre:3p; +indigner indigner ver 4.23 17.23 0.37 2.84 inf; +indignera indigner ver 4.23 17.23 0.1 0.14 ind:fut:3s; +indignes indigne adj p 8.75 10.61 1.75 2.7 +indignité indignité nom f s 0.5 2.36 0.47 2.3 +indignités indignité nom f p 0.5 2.36 0.03 0.07 +indignèrent indigner ver 4.23 17.23 0 0.14 ind:pas:3p; +indigné indigner ver m s 4.23 17.23 0.43 2.64 par:pas; +indignée indigner ver f s 4.23 17.23 0.45 1.08 par:pas; +indignées indigner ver f p 4.23 17.23 0.03 0.14 par:pas; +indignés indigné adj m p 0.34 6.35 0.16 1.15 +indigo indigo nom m s 0.45 0.81 0.45 0.81 +indigène indigène adj s 1.04 4.19 0.68 2.57 +indigènes indigène nom p 3.24 5.27 2.85 4.19 +indiqua indiquer ver 36.49 54.12 0.02 4.86 ind:pas:3s; +indiquai indiquer ver 36.49 54.12 0 0.88 ind:pas:1s; +indiquaient indiquer ver 36.49 54.12 0.25 1.96 ind:imp:3p; +indiquais indiquer ver 36.49 54.12 0.05 0.47 ind:imp:1s;ind:imp:2s; +indiquait indiquer ver 36.49 54.12 0.84 9.73 ind:imp:3s; +indiquant indiquer ver 36.49 54.12 1.81 5.54 par:pre; +indique indiquer ver 36.49 54.12 14.13 10.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +indiquent indiquer ver 36.49 54.12 5.18 1.22 ind:pre:3p; +indiquer indiquer ver 36.49 54.12 5.75 7.91 ind:pre:2p;inf; +indiquera indiquer ver 36.49 54.12 0.67 0.27 ind:fut:3s; +indiquerai indiquer ver 36.49 54.12 0.14 0.2 ind:fut:1s; +indiqueraient indiquer ver 36.49 54.12 0.09 0.07 cnd:pre:3p; +indiquerais indiquer ver 36.49 54.12 0.04 0 cnd:pre:1s; +indiquerait indiquer ver 36.49 54.12 0.53 0.41 cnd:pre:3s; +indiqueras indiquer ver 36.49 54.12 0.03 0 ind:fut:2s; +indiquerez indiquer ver 36.49 54.12 0.03 0.07 ind:fut:2p; +indiqueriez indiquer ver 36.49 54.12 0 0.14 cnd:pre:2p; +indiquerons indiquer ver 36.49 54.12 0.03 0.07 ind:fut:1p; +indiquez indiquer ver 36.49 54.12 0.82 0.27 imp:pre:2p;ind:pre:2p; +indiquiez indiquer ver 36.49 54.12 0.01 0.14 ind:imp:2p; +indiquions indiquer ver 36.49 54.12 0 0.07 ind:imp:1p; +indiquons indiquer ver 36.49 54.12 0.01 0 imp:pre:1p; +indiquât indiquer ver 36.49 54.12 0 0.47 sub:imp:3s; +indiquèrent indiquer ver 36.49 54.12 0.02 0.47 ind:pas:3p; +indiqué indiquer ver m s 36.49 54.12 4.81 5.61 par:pas; +indiquée indiquer ver f s 36.49 54.12 0.6 1.69 par:pas; +indiquées indiquer ver f p 36.49 54.12 0.27 0.41 par:pas; +indiqués indiquer ver m p 36.49 54.12 0.36 1.01 par:pas; +indirect indirect adj m s 1.25 3.78 0.23 1.42 +indirecte indirect adj f s 1.25 3.78 0.55 1.42 +indirectement indirectement adv 1.05 2.57 1.05 2.57 +indirectes indirect adj f p 1.25 3.78 0.36 0.2 +indirects indirect adj m p 1.25 3.78 0.11 0.74 +indiscernable indiscernable adj s 0.02 1.69 0.02 0.88 +indiscernables indiscernable adj p 0.02 1.69 0 0.81 +indiscipline indiscipline nom f s 0.21 1.01 0.21 1.01 +indiscipliné indiscipliné adj m s 1.49 0.68 0.23 0.2 +indisciplinée indiscipliné adj f s 1.49 0.68 0.36 0.07 +indisciplinées indiscipliné adj f p 1.49 0.68 0.27 0.07 +indisciplinés indiscipliné adj m p 1.49 0.68 0.63 0.34 +indiscret indiscret adj m s 4.56 8.45 2.25 3.38 +indiscrets indiscret adj m p 4.56 8.45 0.38 1.76 +indiscrète indiscret adj f s 4.56 8.45 1.68 2.03 +indiscrètement indiscrètement adv 0 0.47 0 0.47 +indiscrètes indiscret adj f p 4.56 8.45 0.25 1.28 +indiscrétion indiscrétion nom f s 2.24 5.74 1.9 4.53 +indiscrétions indiscrétion nom f p 2.24 5.74 0.34 1.22 +indiscutable indiscutable adj s 1.13 5.27 0.95 4.19 +indiscutablement indiscutablement adv 0.25 1.96 0.25 1.96 +indiscutables indiscutable adj p 1.13 5.27 0.18 1.08 +indiscuté indiscuté adj m s 0.01 0.41 0.01 0.2 +indiscutée indiscuté adj f s 0.01 0.41 0 0.14 +indiscutés indiscuté adj m p 0.01 0.41 0 0.07 +indispensable indispensable adj s 9.21 21.76 8.52 15.68 +indispensables indispensable adj p 9.21 21.76 0.69 6.08 +indisponibilité indisponibilité nom f s 0.03 0 0.03 0 +indisponible indisponible adj s 0.52 0.2 0.43 0.07 +indisponibles indisponible adj p 0.52 0.2 0.09 0.14 +indisposa indisposer ver 0.96 2.64 0 0.14 ind:pas:3s; +indisposaient indisposer ver 0.96 2.64 0 0.14 ind:imp:3p; +indisposait indisposer ver 0.96 2.64 0.01 0.41 ind:imp:3s; +indispose indispos adj f s 0.12 0.54 0.12 0.54 +indisposent indisposer ver 0.96 2.64 0.1 0.27 ind:pre:3p; +indisposer indisposer ver 0.96 2.64 0.16 0.74 inf; +indisposerait indisposer ver 0.96 2.64 0.02 0.07 cnd:pre:3s; +indisposition indisposition nom f s 0.02 0.61 0.02 0.61 +indisposons indisposer ver 0.96 2.64 0 0.07 ind:pre:1p; +indisposèrent indisposer ver 0.96 2.64 0 0.07 ind:pas:3p; +indisposé indisposer ver m s 0.96 2.64 0.53 0.41 par:pas; +indisposée indisposé adj f s 0.42 0.14 0.17 0.07 +indisposés indisposer ver m p 0.96 2.64 0.01 0.14 par:pas; +indissociable indissociable adj s 0.25 0.14 0.02 0.07 +indissociables indissociable adj m p 0.25 0.14 0.23 0.07 +indissociés indissocié adj m p 0 0.07 0 0.07 +indissoluble indissoluble adj s 0.14 0.95 0.12 0.74 +indissolublement indissolublement adv 0.01 0.54 0.01 0.54 +indissolubles indissoluble adj m p 0.14 0.95 0.02 0.2 +indistinct indistinct adj m s 0.54 8.24 0.3 2.64 +indistincte indistinct adj f s 0.54 8.24 0.23 2.23 +indistinctement indistinctement adv 0.01 1.55 0.01 1.55 +indistinctes indistinct adj f p 0.54 8.24 0 2.09 +indistinction indistinction nom f s 0 0.34 0 0.34 +indistincts indistinct adj m p 0.54 8.24 0 1.28 +individu individu nom m s 15.38 31.42 9.04 19.53 +individualiser individualiser ver 0.01 0.2 0.01 0 inf; +individualisme individualisme nom m s 0.5 1.35 0.5 1.35 +individualiste individualiste nom s 0.3 0.2 0.17 0.14 +individualistes individualiste nom p 0.3 0.2 0.13 0.07 +individualisé individualiser ver m s 0.01 0.2 0 0.07 par:pas; +individualisés individualiser ver m p 0.01 0.2 0 0.14 par:pas; +individualité individualité nom f s 0.58 0.88 0.57 0.74 +individualités individualité nom f p 0.58 0.88 0.01 0.14 +individuel individuel adj m s 3.99 8.11 0.97 2.23 +individuelle individuel adj f s 3.99 8.11 1.36 2.23 +individuellement individuellement adv 1.22 0.95 1.22 0.95 +individuelles individuel adj f p 3.99 8.11 0.99 2.36 +individuels individuel adj m p 3.99 8.11 0.67 1.28 +individus individu nom m p 15.38 31.42 6.34 11.89 +individuée individué adj f s 0 0.07 0 0.07 +indivis indivis adj m 0.1 0.34 0.1 0.27 +indivises indivis adj f p 0.1 0.34 0 0.07 +indivisibilité indivisibilité nom f s 0 0.07 0 0.07 +indivisible indivisible adj s 0.44 1.15 0.4 1.15 +indivisibles indivisible adj p 0.44 1.15 0.03 0 +indivision indivision nom f s 0 0.07 0 0.07 +indivisé indivisé adj m s 0 0.07 0 0.07 +indo indo adv 0.03 0.54 0.03 0.54 +indo_européen indo_européen adj m s 0.11 0.27 0.1 0 +indo_européen indo_européen adj f s 0.11 0.27 0.01 0.07 +indo_européen indo_européen adj f p 0.11 0.27 0 0.14 +indo_européen indo_européen adj m p 0.11 0.27 0 0.07 +indochinois indochinois nom m 0.1 0.34 0.1 0.34 +indochinoise indochinois adj f s 0.01 1.28 0 0.68 +indochinoises indochinois adj f p 0.01 1.28 0 0.2 +indocile indocile adj s 0.23 0.74 0.23 0.74 +indocilité indocilité nom f s 0 0.07 0 0.07 +indole indole nom m s 0.01 0 0.01 0 +indolemment indolemment adv 0 0.54 0 0.54 +indolence indolence nom f s 0.27 2.57 0.27 2.5 +indolences indolence nom f p 0.27 2.57 0 0.07 +indolent indolent adj m s 1.29 2.91 0.38 0.95 +indolente indolent adj f s 1.29 2.91 0.13 1.22 +indolentes indolent adj f p 1.29 2.91 0.1 0.34 +indolents indolent adj m p 1.29 2.91 0.68 0.41 +indolore indolore adj s 0.77 0.68 0.69 0.47 +indolores indolore adj p 0.77 0.68 0.08 0.2 +indomptable indomptable adj s 1.07 1.28 0.91 1.01 +indomptables indomptable adj m p 1.07 1.28 0.16 0.27 +indompté indompté adj m s 0.24 0.27 0.07 0 +indomptée indompté adj f s 0.24 0.27 0.07 0.2 +indomptés indompté adj m p 0.24 0.27 0.1 0.07 +indonésien indonésien adj m s 0.2 0.2 0.18 0 +indonésienne indonésien nom f s 0.26 0 0.1 0 +indonésiens indonésien nom m p 0.26 0 0.14 0 +indoor indoor adj m s 0.05 0 0.05 0 +indosable indosable adj f s 0 0.07 0 0.07 +indou indou adj m s 0.03 0.27 0.03 0.07 +indous indou adj m p 0.03 0.27 0 0.2 +indu indu adj m s 0.29 0.81 0.02 0.07 +indubitable indubitable adj s 0.31 0.88 0.29 0.81 +indubitablement indubitablement adv 0.7 0.61 0.7 0.61 +indubitables indubitable adj f p 0.31 0.88 0.03 0.07 +inducteur inducteur nom m s 0.02 0 0.02 0 +inductif inductif adj m s 0.01 0.07 0.01 0 +induction induction nom f s 0.43 0.54 0.42 0.47 +inductions induction nom f p 0.43 0.54 0.01 0.07 +inductive inductif adj f s 0.01 0.07 0 0.07 +inductrice inducteur adj f s 0 0.07 0 0.07 +indue indu adj f s 0.29 0.81 0.27 0.27 +indues indu adj f p 0.29 0.81 0 0.41 +induiraient induire ver 1.68 1.69 0 0.07 cnd:pre:3p; +induirait induire ver 1.68 1.69 0.01 0.07 cnd:pre:3s; +induire induire ver 1.68 1.69 0.54 0.54 inf; +induis induire ver 1.68 1.69 0.17 0.07 imp:pre:2s;ind:pre:1s; +induisaient induire ver 1.68 1.69 0 0.14 ind:imp:3p; +induisait induire ver 1.68 1.69 0.02 0.07 ind:imp:3s; +induisant induire ver 1.68 1.69 0.06 0 par:pre; +induisez induire ver 1.68 1.69 0.03 0 ind:pre:2p; +induisit induire ver 1.68 1.69 0 0.14 ind:pas:3s; +induit induire ver m s 1.68 1.69 0.6 0.34 ind:pre:3s;par:pas; +induite induire ver f s 1.68 1.69 0.05 0.07 par:pas; +induits induire ver m p 1.68 1.69 0.19 0.2 par:pas; +indulgence indulgence nom f s 2.46 16.35 2.46 15.41 +indulgences indulgence nom f p 2.46 16.35 0.01 0.95 +indulgent indulgent adj m s 3.31 7.09 1.89 4.19 +indulgente indulgent adj f s 3.31 7.09 0.66 2.3 +indulgentes indulgent adj f p 3.31 7.09 0.01 0.34 +indulgents indulgent adj m p 3.31 7.09 0.75 0.27 +induré indurer ver m s 0 0.14 0 0.07 par:pas; +indurée induré adj f s 0 0.07 0 0.07 +indurées indurer ver f p 0 0.14 0 0.07 par:pas; +indus indu adj m p 0.29 0.81 0 0.07 +industrialisation industrialisation nom f s 0.01 0.2 0.01 0.2 +industrialiser industrialiser ver 0.04 0.14 0 0.14 inf; +industrialisé industrialiser ver m s 0.04 0.14 0.04 0 par:pas; +industrialisée industrialisé adj f s 0.16 0.14 0.01 0.07 +industrialisés industrialisé adj m p 0.16 0.14 0.14 0.07 +industrie industrie nom f s 12.51 11.82 9.66 10.34 +industrie_clé industrie_clé nom f s 0.01 0 0.01 0 +industriel industriel adj m s 6.66 7.7 2.68 3.04 +industrielle industriel adj f s 6.66 7.7 1.78 3.04 +industriellement industriellement adv 0 0.2 0 0.2 +industrielles industriel adj f p 6.66 7.7 0.55 0.61 +industriels industriel adj m p 6.66 7.7 1.66 1.01 +industries industrie nom f p 12.51 11.82 2.85 1.49 +industrieuse industrieux adj f s 0.02 1.08 0.01 0.34 +industrieusement industrieusement adv 0 0.07 0 0.07 +industrieuses industrieux adj f p 0.02 1.08 0 0.07 +industrieux industrieux adj m 0.02 1.08 0.01 0.68 +indécelable indécelable adj s 0.22 0.2 0.2 0.14 +indécelables indécelable adj p 0.22 0.2 0.02 0.07 +indécemment indécemment adv 0.01 0.27 0.01 0.27 +indécence indécence nom f s 0.28 2.16 0.28 1.96 +indécences indécence nom f p 0.28 2.16 0 0.2 +indécent indécent adj m s 2.09 5.27 1.36 2.43 +indécente indécent adj f s 2.09 5.27 0.6 1.96 +indécentes indécent adj f p 2.09 5.27 0.07 0.47 +indécents indécent adj m p 2.09 5.27 0.05 0.41 +indéchiffrable indéchiffrable adj s 0.14 2.97 0.08 1.69 +indéchiffrables indéchiffrable adj p 0.14 2.97 0.06 1.28 +indéchirable indéchirable adj s 0.02 0.14 0.01 0.14 +indéchirables indéchirable adj f p 0.02 0.14 0.01 0 +indécidable indécidable adj s 0 0.27 0 0.2 +indécidables indécidable adj m p 0 0.27 0 0.07 +indécis indécis adj m 1.15 11.42 0.66 6.49 +indécise indécis adj f s 1.15 11.42 0.35 3.58 +indécises indécis adj f p 1.15 11.42 0.14 1.35 +indécision indécision nom f s 0.27 2.16 0.17 1.89 +indécisions indécision nom f p 0.27 2.16 0.1 0.27 +indécodable indécodable adj s 0.03 0 0.03 0 +indécollable indécollable adj s 0.01 0.07 0.01 0 +indécollables indécollable adj m p 0.01 0.07 0 0.07 +indécrassables indécrassable adj m p 0 0.14 0 0.14 +indécrottable indécrottable adj s 0.17 1.22 0.16 1.01 +indécrottablement indécrottablement adv 0 0.07 0 0.07 +indécrottables indécrottable adj m p 0.17 1.22 0.01 0.2 +indéfectible indéfectible adj s 0.25 1.01 0.24 0.88 +indéfectiblement indéfectiblement adv 0 0.41 0 0.41 +indéfectibles indéfectible adj m p 0.25 1.01 0.01 0.14 +indéfendable indéfendable adj f s 0.19 0.34 0.19 0.34 +indéfini indéfini adj m s 0.43 2.16 0.21 0.95 +indéfinie indéfini adj f s 0.43 2.16 0.23 0.81 +indéfinies indéfini adj f p 0.43 2.16 0 0.2 +indéfiniment indéfiniment adv 2.08 11.22 2.08 11.22 +indéfinis indéfini adj m p 0.43 2.16 0 0.2 +indéfinissable indéfinissable adj s 0.29 6.01 0.16 5.54 +indéfinissablement indéfinissablement adv 0 0.14 0 0.14 +indéfinissables indéfinissable adj p 0.29 6.01 0.14 0.47 +indéfinition indéfinition nom f s 0 0.07 0 0.07 +indéformables indéformable adj p 0 0.07 0 0.07 +indéfriché indéfriché adj m s 0 0.14 0 0.14 +indéfrisable indéfrisable nom f s 0.01 1.49 0 1.01 +indéfrisables indéfrisable nom f p 0.01 1.49 0.01 0.47 +indélicat indélicat adj m s 0.44 0.74 0.32 0.41 +indélicate indélicat adj f s 0.44 0.74 0.11 0.07 +indélicatesse indélicatesse nom f s 0.02 0.74 0.02 0.54 +indélicatesses indélicatesse nom f p 0.02 0.74 0 0.2 +indélicats indélicat adj m p 0.44 0.74 0.01 0.27 +indélivrable indélivrable adj m s 0 0.07 0 0.07 +indélogeable indélogeable adj f s 0.01 0.14 0.01 0.07 +indélogeables indélogeable adj p 0.01 0.14 0 0.07 +indélébile indélébile adj s 0.75 3.78 0.71 2.97 +indélébiles indélébile adj p 0.75 3.78 0.04 0.81 +indémaillable indémaillable adj s 0 0.41 0 0.27 +indémaillables indémaillable adj p 0 0.41 0 0.14 +indémodable indémodable adj s 0.14 0.07 0.14 0 +indémodables indémodable adj m p 0.14 0.07 0 0.07 +indémontrable indémontrable adj m s 0 0.14 0 0.07 +indémontrables indémontrable adj m p 0 0.14 0 0.07 +indémêlables indémêlable adj m p 0 0.07 0 0.07 +indéniable indéniable adj s 0.97 1.82 0.89 1.22 +indéniablement indéniablement adv 0.33 0.74 0.33 0.74 +indéniables indéniable adj p 0.97 1.82 0.08 0.61 +indénombrables indénombrable adj m p 0.02 0.07 0.02 0.07 +indénouable indénouable adj s 0.2 0.14 0.2 0.14 +indépassable indépassable adj m s 0 0.2 0 0.2 +indépendamment indépendamment adv 0.55 3.45 0.55 3.45 +indépendance indépendance nom f s 6.59 27.16 6.59 27.16 +indépendant indépendant adj m s 11.11 9.46 5.03 3.04 +indépendante indépendant adj s 11.11 9.46 4.08 3.78 +indépendantes indépendant adj f p 11.11 9.46 0.54 0.88 +indépendantisme indépendantisme nom m s 0.1 0 0.1 0 +indépendantiste indépendantiste adj m s 0.23 0.07 0.11 0 +indépendantistes indépendantiste nom p 0.27 0 0.27 0 +indépendants indépendant adj m p 11.11 9.46 1.46 1.76 +indéracinable indéracinable adj s 0 0.54 0 0.47 +indéracinables indéracinable adj p 0 0.54 0 0.07 +indéréglables indéréglable adj f p 0 0.2 0 0.2 +indésirable indésirable adj s 1.08 1.08 0.56 0.74 +indésirables indésirable nom p 0.69 0.74 0.53 0.47 +indétectable indétectable adj s 0.77 0.14 0.65 0.07 +indétectables indétectable adj f p 0.77 0.14 0.12 0.07 +indéterminable indéterminable adj s 0.01 0.07 0.01 0.07 +indétermination indétermination nom f s 0.01 0.34 0.01 0.34 +indéterminé indéterminé adj m s 1.49 2.36 0.21 1.08 +indéterminée indéterminé adj f s 1.49 2.36 1.23 0.95 +indéterminées indéterminé adj f p 1.49 2.36 0.03 0.2 +indéterminés indéterminé adj m p 1.49 2.36 0.03 0.14 +indûment indûment adv 0.22 0.81 0.22 0.81 +ineffable ineffable adj s 0.06 4.46 0.04 3.92 +ineffablement ineffablement adv 0.02 0.07 0.02 0.07 +ineffables ineffable adj p 0.06 4.46 0.02 0.54 +ineffaçable ineffaçable adj s 0.13 1.22 0.13 1.08 +ineffaçablement ineffaçablement adv 0 0.07 0 0.07 +ineffaçables ineffaçable adj f p 0.13 1.22 0 0.14 +inefficace inefficace adj s 1.25 1.28 0.98 0.61 +inefficaces inefficace adj p 1.25 1.28 0.27 0.68 +inefficacité inefficacité nom f s 0.27 0.61 0.27 0.61 +inemploi inemploi nom m s 0.1 0 0.1 0 +inemployable inemployable adj s 0.03 0.07 0.03 0 +inemployables inemployable adj p 0.03 0.07 0 0.07 +inemployé inemployé adj m s 0.02 0.88 0 0.27 +inemployée inemployé adj f s 0.02 0.88 0 0.27 +inemployées inemployé adj f p 0.02 0.88 0 0.27 +inemployés inemployé adj m p 0.02 0.88 0.02 0.07 +inentamable inentamable adj f s 0.01 0.14 0.01 0.14 +inentamé inentamé adj m s 0.01 0.81 0 0.54 +inentamée inentamé adj f s 0.01 0.81 0.01 0.2 +inentamées inentamé adj f p 0.01 0.81 0 0.07 +inenvisageable inenvisageable adj s 0.05 0 0.05 0 +inepte inepte adj s 0.69 3.24 0.52 1.69 +ineptement ineptement adv 0 0.07 0 0.07 +ineptes inepte adj p 0.69 3.24 0.17 1.55 +ineptie ineptie nom f s 1.48 1.89 0.77 1.01 +inepties ineptie nom f p 1.48 1.89 0.71 0.88 +inerte inerte adj s 0.96 14.53 0.67 10.61 +inertes inerte adj p 0.96 14.53 0.29 3.92 +inertie inertie nom f s 0.95 6.62 0.95 6.49 +inertiel inertiel adj m s 0.11 0 0.06 0 +inertielle inertiel adj f s 0.11 0 0.05 0 +inerties inertie nom f p 0.95 6.62 0 0.14 +inespoir inespoir nom m s 0 0.07 0 0.07 +inespérable inespérable adj s 0 0.07 0 0.07 +inespéré inespéré adj m s 0.35 4.32 0.17 1.62 +inespérée inespéré adj f s 0.35 4.32 0.18 2.43 +inespérées inespéré adj f p 0.35 4.32 0 0.27 +inespérément inespérément adv 0 0.07 0 0.07 +inessentiel inessentiel adj m s 0 0.07 0 0.07 +inesthétique inesthétique adj m s 0.02 0.27 0.02 0.07 +inesthétiques inesthétique adj m p 0.02 0.27 0 0.2 +inestimable inestimable adj s 2.19 2.91 1.79 1.89 +inestimables inestimable adj p 2.19 2.91 0.4 1.01 +inexact inexact adj m s 1.01 1.28 0.65 0.47 +inexacte inexact adj f s 1.01 1.28 0.19 0.47 +inexactement inexactement adv 0.01 0.14 0.01 0.14 +inexactes inexact adj f p 1.01 1.28 0.16 0.27 +inexactitude inexactitude nom f s 0.08 0.54 0.03 0.2 +inexactitudes inexactitude nom f p 0.08 0.54 0.05 0.34 +inexacts inexact adj m p 1.01 1.28 0.01 0.07 +inexcusable inexcusable adj s 0.77 0.54 0.64 0.47 +inexcusables inexcusable adj p 0.77 0.54 0.13 0.07 +inexistant inexistant adj m s 1.29 3.65 0.39 1.28 +inexistante inexistant adj f s 1.29 3.65 0.46 0.88 +inexistantes inexistant adj f p 1.29 3.65 0.1 0.54 +inexistants inexistant adj m p 1.29 3.65 0.35 0.95 +inexistence inexistence nom f s 0.02 1.62 0.02 1.62 +inexorabilité inexorabilité nom f s 0 0.14 0 0.14 +inexorable inexorable adj s 0.33 4.19 0.33 3.78 +inexorablement inexorablement adv 0.33 3.92 0.33 3.92 +inexorables inexorable adj m p 0.33 4.19 0 0.41 +inexperte inexpert adj f s 0 0.14 0 0.14 +inexpiable inexpiable adj s 0.1 0.54 0.1 0.54 +inexplicable inexplicable adj s 3.25 7.16 1.96 5.61 +inexplicablement inexplicablement adv 0.23 3.18 0.23 3.18 +inexplicables inexplicable adj p 3.25 7.16 1.29 1.55 +inexpliqué inexpliqué adj m s 1.23 1.55 0.28 0.61 +inexpliquée inexpliqué adj f s 1.23 1.55 0.41 0.54 +inexpliquées inexpliqué adj f p 1.23 1.55 0.34 0.07 +inexpliqués inexpliqué adj m p 1.23 1.55 0.21 0.34 +inexploitable inexploitable adj s 0.02 0 0.02 0 +inexploité inexploité adj m s 0.22 0.14 0.06 0 +inexploitée inexploité adj f s 0.22 0.14 0.11 0 +inexploitées inexploité adj f p 0.22 0.14 0.04 0.14 +inexploités inexploité adj m p 0.22 0.14 0.01 0 +inexploré inexploré adj m s 1.11 0.61 0.32 0.27 +inexplorée inexploré adj f s 1.11 0.61 0.32 0.07 +inexplorées inexploré adj f p 1.11 0.61 0.26 0.14 +inexplorés inexploré adj m p 1.11 0.61 0.22 0.14 +inexplosible inexplosible adj s 0 0.27 0 0.07 +inexplosibles inexplosible adj m p 0 0.27 0 0.2 +inexpressif inexpressif adj m s 0.17 2.64 0.04 1.49 +inexpressifs inexpressif adj m p 0.17 2.64 0.12 0.74 +inexpression inexpression nom f s 0 0.07 0 0.07 +inexpressive inexpressif adj f s 0.17 2.64 0 0.41 +inexpressives inexpressif adj f p 0.17 2.64 0.01 0 +inexprimable inexprimable adj s 0.4 3.18 0.4 3.04 +inexprimablement inexprimablement adv 0 0.2 0 0.2 +inexprimables inexprimable adj m p 0.4 3.18 0 0.14 +inexprimé inexprimé adj m s 0.1 0.47 0.05 0.27 +inexprimée inexprimé adj f s 0.1 0.47 0.05 0.2 +inexpugnable inexpugnable adj f s 0.13 0.41 0.13 0.34 +inexpugnablement inexpugnablement adv 0 0.07 0 0.07 +inexpugnables inexpugnable adj f p 0.13 0.41 0 0.07 +inexpérience inexpérience nom f s 0.28 2.03 0.28 1.96 +inexpériences inexpérience nom f p 0.28 2.03 0 0.07 +inexpérimenté inexpérimenté adj m s 1.28 1.01 0.54 0.34 +inexpérimentée inexpérimenté adj f s 1.28 1.01 0.55 0.47 +inexpérimentées inexpérimenté adj f p 1.28 1.01 0.01 0.07 +inexpérimentés inexpérimenté adj m p 1.28 1.01 0.18 0.14 +inextinguible inextinguible adj s 0.18 0.81 0.18 0.74 +inextinguibles inextinguible adj m p 0.18 0.81 0 0.07 +inextirpable inextirpable adj f s 0 0.07 0 0.07 +inextricable inextricable adj s 0.58 3.31 0.44 2.7 +inextricablement inextricablement adv 0.15 0.81 0.15 0.81 +inextricables inextricable adj p 0.58 3.31 0.14 0.61 +infaillibilité infaillibilité nom f s 0.28 0.95 0.28 0.95 +infaillible infaillible adj s 2.37 6.28 2.1 6.01 +infailliblement infailliblement adv 0.27 1.82 0.27 1.82 +infaillibles infaillible adj m p 2.37 6.28 0.27 0.27 +infaisable infaisable adj s 0.39 0.14 0.39 0.14 +infalsifiable infalsifiable adj s 0.01 0 0.01 0 +infamant infamant adj m s 0.18 2.43 0.02 1.08 +infamante infamant adj f s 0.18 2.43 0.15 0.74 +infamantes infamant adj f p 0.18 2.43 0.01 0.27 +infamants infamant adj m p 0.18 2.43 0 0.34 +infamie infamie nom f s 2.22 3.72 2.01 3.11 +infamies infamie nom f p 2.22 3.72 0.21 0.61 +infant infant nom m s 5.52 1.76 4.98 0.54 +infante infant nom f s 5.52 1.76 0.54 0.88 +infanterie infanterie nom f s 3.79 10.07 3.79 10 +infanteries infanterie nom f p 3.79 10.07 0 0.07 +infantes infant nom f p 5.52 1.76 0 0.07 +infanticide infanticide nom s 0.34 0.41 0.34 0.27 +infanticides infanticide nom p 0.34 0.41 0 0.14 +infantile infantile adj s 3.3 3.24 2.57 2.3 +infantilement infantilement adv 0 0.07 0 0.07 +infantiles infantile adj p 3.3 3.24 0.73 0.95 +infantiliser infantiliser ver 0.04 0 0.02 0 inf; +infantilisme infantilisme nom m s 0.06 0.74 0.05 0.74 +infantilismes infantilisme nom m p 0.06 0.74 0.01 0 +infantilisé infantiliser ver m s 0.04 0 0.02 0 par:pas; +infants infant nom m p 5.52 1.76 0 0.27 +infarctus infarctus nom m 4.87 1.62 4.87 1.62 +infatigable infatigable adj s 0.46 4.8 0.29 3.31 +infatigablement infatigablement adv 0 0.61 0 0.61 +infatigables infatigable adj p 0.46 4.8 0.17 1.49 +infatuation infatuation nom f s 0.01 0.41 0.01 0.41 +infatuer infatuer ver 0.02 0.34 0.01 0 inf; +infatué infatué adj m s 0.02 0.14 0.02 0.07 +infatués infatuer ver m p 0.02 0.34 0 0.07 par:pas; +infect infect adj m s 3.61 6.28 2.03 2.91 +infectaient infecter ver 9.96 2.64 0.01 0.14 ind:imp:3p; +infectait infecter ver 9.96 2.64 0.02 0.14 ind:imp:3s; +infectant infecter ver 9.96 2.64 0.06 0 par:pre; +infectassent infecter ver 9.96 2.64 0 0.07 sub:imp:3p; +infecte infect adj f s 3.61 6.28 1.31 1.62 +infectement infectement adv 0 0.07 0 0.07 +infectent infecter ver 9.96 2.64 0.21 0.14 ind:pre:3p; +infecter infecter ver 9.96 2.64 1.84 0.68 inf; +infectera infecter ver 9.96 2.64 0.05 0 ind:fut:3s; +infectes infect adj f p 3.61 6.28 0.05 1.08 +infectez infecter ver 9.96 2.64 0.02 0 imp:pre:2p;ind:pre:2p; +infectieuse infectieux adj f s 0.66 0.47 0.14 0.14 +infectieuses infectieux adj f p 0.66 0.47 0.26 0.27 +infectieux infectieux adj m 0.66 0.47 0.26 0.07 +infectiologie infectiologie nom f s 0.01 0 0.01 0 +infection infection nom f s 10.62 1.89 9.55 1.69 +infections infection nom f p 10.62 1.89 1.07 0.2 +infects infect adj m p 3.61 6.28 0.22 0.68 +infecté infecter ver m s 9.96 2.64 3.23 0.54 par:pas; +infectée infecter ver f s 9.96 2.64 1.92 0.54 par:pas; +infectées infecté adj f p 3.4 0.61 0.66 0.27 +infectés infecter ver m p 9.96 2.64 0.99 0.07 par:pas; +infernal infernal adj m s 6.66 13.38 3.36 5.41 +infernale infernal adj f s 6.66 13.38 2.61 5.95 +infernalement infernalement adv 0 0.2 0 0.2 +infernales infernal adj f p 6.66 13.38 0.46 1.55 +infernaux infernal adj m p 6.66 13.38 0.24 0.47 +infertile infertile adj s 0.08 0.41 0.08 0.34 +infertiles infertile adj p 0.08 0.41 0 0.07 +infertilité infertilité nom f s 0.03 0.07 0.03 0.07 +infestaient infester ver 2.05 2.84 0.01 0.68 ind:imp:3p; +infestait infester ver 2.05 2.84 0 0.14 ind:imp:3s; +infestant infester ver 2.05 2.84 0.01 0.07 par:pre; +infestation infestation nom f s 0.12 0 0.12 0 +infeste infester ver 2.05 2.84 0.02 0.07 ind:pre:3s; +infestent infester ver 2.05 2.84 0.12 0.2 ind:pre:3p; +infester infester ver 2.05 2.84 0.09 0 inf; +infesteront infester ver 2.05 2.84 0.1 0.07 ind:fut:3p; +infestât infester ver 2.05 2.84 0 0.07 sub:imp:3s; +infestèrent infester ver 2.05 2.84 0 0.07 ind:pas:3p; +infesté infester ver m s 2.05 2.84 0.57 0.34 par:pas; +infestée infester ver f s 2.05 2.84 0.56 0.61 par:pas; +infestées infester ver f p 2.05 2.84 0.38 0.2 par:pas; +infestés infester ver m p 2.05 2.84 0.19 0.34 par:pas; +infibulation infibulation nom f s 0.03 0 0.03 0 +infidèle infidèle adj s 3.83 2.97 2.84 2.5 +infidèles infidèle nom p 2.33 2.57 1.25 1.49 +infidélité infidélité nom f s 1.4 2.57 1.11 1.62 +infidélités infidélité nom f p 1.4 2.57 0.28 0.95 +infigurable infigurable adj s 0 0.07 0 0.07 +infiltra infiltrer ver 6.88 6.35 0.11 0.07 ind:pas:3s; +infiltraient infiltrer ver 6.88 6.35 0.01 0.27 ind:imp:3p; +infiltrait infiltrer ver 6.88 6.35 0.05 1.42 ind:imp:3s; +infiltrant infiltrer ver 6.88 6.35 0.08 0.07 par:pre; +infiltrat infiltrat nom m s 0.01 0 0.01 0 +infiltration infiltration nom f s 1.71 1.55 1.38 0.95 +infiltrations infiltration nom f p 1.71 1.55 0.34 0.61 +infiltre infiltrer ver 6.88 6.35 0.73 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +infiltrent infiltrer ver 6.88 6.35 0.2 0.2 ind:pre:3p; +infiltrer infiltrer ver 6.88 6.35 2.38 1.82 inf; +infiltrera infiltrer ver 6.88 6.35 0.05 0 ind:fut:3s; +infiltreront infiltrer ver 6.88 6.35 0.1 0 ind:fut:3p; +infiltrez infiltrer ver 6.88 6.35 0.05 0 imp:pre:2p;ind:pre:2p; +infiltriez infiltrer ver 6.88 6.35 0.01 0 ind:imp:2p; +infiltrions infiltrer ver 6.88 6.35 0 0.07 ind:imp:1p; +infiltrons infiltrer ver 6.88 6.35 0.01 0.07 imp:pre:1p;ind:pre:1p; +infiltrèrent infiltrer ver 6.88 6.35 0 0.07 ind:pas:3p; +infiltré infiltrer ver m s 6.88 6.35 2.22 0.61 par:pas; +infiltrée infiltrer ver f s 6.88 6.35 0.25 0.34 par:pas; +infiltrées infiltrer ver f p 6.88 6.35 0.04 0.07 par:pas; +infiltrés infiltrer ver m p 6.88 6.35 0.58 0.27 par:pas; +infime infime adj s 2.09 11.89 1.53 6.55 +infimes infime adj p 2.09 11.89 0.56 5.34 +infini infini adj m s 9.21 27.03 3.86 6.69 +infinie infini adj f s 9.21 27.03 4.11 12.16 +infinies infini adj f p 9.21 27.03 0.76 4.86 +infiniment infiniment adv 10.29 17.43 10.29 17.43 +infinis infini adj m p 9.21 27.03 0.47 3.31 +infinitif infinitif nom m s 0.03 0.14 0.01 0.07 +infinitifs infinitif nom m p 0.03 0.14 0.01 0.07 +infinitive infinitif adj f s 0.01 0 0.01 0 +infinitude infinitude nom f s 0 0.14 0 0.14 +infinité infinité nom f s 0.62 2.57 0.6 2.5 +infinités infinité nom f p 0.62 2.57 0.01 0.07 +infinitésimal infinitésimal adj m s 0.07 1.22 0.03 0.27 +infinitésimale infinitésimal adj f s 0.07 1.22 0.03 0.34 +infinitésimalement infinitésimalement adv 0 0.07 0 0.07 +infinitésimales infinitésimal adj f p 0.07 1.22 0 0.61 +infinitésimaux infinitésimal adj m p 0.07 1.22 0.01 0 +infirma infirmer ver 0.14 1.15 0 0.2 ind:pas:3s; +infirmait infirmer ver 0.14 1.15 0 0.14 ind:imp:3s; +infirmant infirmer ver 0.14 1.15 0 0.07 par:pre; +infirme infirme adj s 2.27 3.65 2 3.04 +infirment infirmer ver 0.14 1.15 0.01 0.07 ind:pre:3p; +infirmer infirmer ver 0.14 1.15 0.07 0.07 inf; +infirmerie infirmerie nom f s 7.14 7.43 7.13 7.3 +infirmeries infirmerie nom f p 7.14 7.43 0.01 0.14 +infirmeront infirmer ver 0.14 1.15 0 0.07 ind:fut:3p; +infirmes infirme nom p 2.32 6.15 0.64 2.64 +infirmier infirmier nom m s 39.56 36.28 3.17 3.58 +infirmiers infirmier nom m p 39.56 36.28 2 4.8 +infirmité infirmité nom f s 0.93 5.88 0.83 4.53 +infirmités infirmité nom f p 0.93 5.88 0.1 1.35 +infirmière infirmier nom f s 39.56 36.28 27.14 22.97 +infirmière_major infirmière_major nom f s 0.14 0.14 0.14 0.14 +infirmières infirmier nom f p 39.56 36.28 7.25 4.93 +infirmé infirmer ver m s 0.14 1.15 0 0.07 par:pas; +inflammabilité inflammabilité nom f s 0.02 0 0.02 0 +inflammable inflammable adj s 0.92 0.14 0.66 0.14 +inflammables inflammable adj p 0.92 0.14 0.26 0 +inflammation inflammation nom f s 0.88 0.54 0.88 0.54 +inflammatoire inflammatoire adj s 0.04 0 0.01 0 +inflammatoires inflammatoire adj p 0.04 0 0.02 0 +inflation inflation nom f s 1.72 2.3 1.72 2.3 +inflationniste inflationniste adj s 0.14 0.07 0.14 0.07 +inflexibilité inflexibilité nom f s 0.01 0.2 0.01 0.2 +inflexible inflexible adj s 0.61 4.59 0.56 3.85 +inflexiblement inflexiblement adv 0 0.14 0 0.14 +inflexibles inflexible adj p 0.61 4.59 0.05 0.74 +inflexion inflexion nom f s 0.23 4.86 0.08 1.82 +inflexions inflexion nom f p 0.23 4.86 0.16 3.04 +infliction infliction nom f s 0.03 0 0.03 0 +inflige infliger ver 6.54 14.05 0.75 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +infligea infliger ver 6.54 14.05 0.01 0.14 ind:pas:3s; +infligeaient infliger ver 6.54 14.05 0.02 0.54 ind:imp:3p; +infligeais infliger ver 6.54 14.05 0 0.07 ind:imp:1s; +infligeait infliger ver 6.54 14.05 0.06 1.69 ind:imp:3s; +infligeant infliger ver 6.54 14.05 0.08 0.47 par:pre; +infligent infliger ver 6.54 14.05 0.36 0.2 ind:pre:3p; +infligeons infliger ver 6.54 14.05 0 0.07 ind:pre:1p; +infliger infliger ver 6.54 14.05 2.46 3.65 inf; +infligera infliger ver 6.54 14.05 0.02 0 ind:fut:3s; +infligerai infliger ver 6.54 14.05 0.07 0 ind:fut:1s; +infligeraient infliger ver 6.54 14.05 0.03 0.07 cnd:pre:3p; +infligerais infliger ver 6.54 14.05 0.02 0 cnd:pre:1s;cnd:pre:2s; +infligerait infliger ver 6.54 14.05 0.02 0.07 cnd:pre:3s; +infligerez infliger ver 6.54 14.05 0.01 0 ind:fut:2p; +infligerions infliger ver 6.54 14.05 0 0.07 cnd:pre:1p; +infliges infliger ver 6.54 14.05 0.2 0 ind:pre:2s;sub:pre:2s; +infligez infliger ver 6.54 14.05 0.32 0.14 imp:pre:2p;ind:pre:2p; +infligeâmes infliger ver 6.54 14.05 0 0.07 ind:pas:1p; +infligèrent infliger ver 6.54 14.05 0 0.14 ind:pas:3p; +infligé infliger ver m s 6.54 14.05 0.97 2.3 par:pas; +infligée infliger ver f s 6.54 14.05 0.63 1.69 par:pas; +infligées infliger ver f p 6.54 14.05 0.36 0.88 par:pas; +infligés infliger ver m p 6.54 14.05 0.15 0.47 par:pas; +inflorescence inflorescence nom f s 0.01 0.07 0.01 0 +inflorescences inflorescence nom f p 0.01 0.07 0 0.07 +influaient influer ver 1.31 1.82 0.1 0.07 ind:imp:3p; +influait influer ver 1.31 1.82 0.01 0 ind:imp:3s; +influant influer ver 1.31 1.82 0.15 0 par:pre; +influe influer ver 1.31 1.82 0.24 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +influence influence nom f s 13.96 23.51 13.32 19.73 +influencent influencer ver 8.3 4.53 0.25 0.07 ind:pre:3p; +influencer influencer ver 8.3 4.53 3.19 1.82 inf;; +influencera influencer ver 8.3 4.53 0.25 0 ind:fut:3s; +influencerait influencer ver 8.3 4.53 0.02 0 cnd:pre:3s; +influencerez influencer ver 8.3 4.53 0.04 0.07 ind:fut:2p; +influenceriez influencer ver 8.3 4.53 0 0.07 cnd:pre:2p; +influenceront influencer ver 8.3 4.53 0.17 0 ind:fut:3p; +influences influence nom f p 13.96 23.51 0.63 3.78 +influencé influencer ver m s 8.3 4.53 1.98 1.15 par:pas; +influencée influencer ver f s 8.3 4.53 0.7 0.47 par:pas; +influencés influencer ver m p 8.3 4.53 0.58 0.07 par:pas; +influent influent adj m s 2.75 1.62 1.38 0.54 +influente influent adj f s 2.75 1.62 0.33 0.27 +influentes influent adj f p 2.75 1.62 0.11 0.14 +influents influent adj m p 2.75 1.62 0.93 0.68 +influenza influenza nom f s 0.01 0.07 0.01 0.07 +influença influencer ver 8.3 4.53 0.04 0 ind:pas:3s; +influençable influençable adj s 0.73 0.27 0.56 0.27 +influençables influençable adj p 0.73 0.27 0.17 0 +influençaient influencer ver 8.3 4.53 0.02 0.07 ind:imp:3p; +influençait influencer ver 8.3 4.53 0.15 0.2 ind:imp:3s; +influençant influencer ver 8.3 4.53 0.04 0 par:pre; +influer influer ver 1.31 1.82 0.6 0.68 inf; +influera influer ver 1.31 1.82 0.03 0.14 ind:fut:3s; +influeraient influer ver 1.31 1.82 0.01 0.07 cnd:pre:3p; +influeront influer ver 1.31 1.82 0.02 0.07 ind:fut:3p; +influx influx nom m 0.25 0.61 0.25 0.61 +influé influer ver m s 1.31 1.82 0.01 0.27 par:pas; +infléchi infléchir ver m s 0.1 2.77 0 0.14 par:pas; +infléchie infléchir ver f s 0.1 2.77 0.01 0.07 par:pas; +infléchies infléchi adj f p 0 0.27 0 0.07 +infléchir infléchir ver 0.1 2.77 0.05 1.28 inf; +infléchirai infléchir ver 0.1 2.77 0.01 0 ind:fut:1s; +infléchissaient infléchir ver 0.1 2.77 0 0.14 ind:imp:3p; +infléchissant infléchir ver 0.1 2.77 0 0.27 par:pre; +infléchissement infléchissement nom m s 0 0.07 0 0.07 +infléchissent infléchir ver 0.1 2.77 0 0.2 ind:pre:3p; +infléchissez infléchir ver 0.1 2.77 0.01 0 imp:pre:2p; +infléchit infléchir ver 0.1 2.77 0.01 0.68 ind:pre:3s;ind:pas:3s; +info info nom f s 25.5 0.47 6.71 0 +infographie infographie nom f s 0.04 0 0.04 0 +infondé infondé adj m s 0.81 0 0.05 0 +infondée infondé adj f s 0.81 0 0.08 0 +infondées infondé adj f p 0.81 0 0.31 0 +infondés infondé adj m p 0.81 0 0.36 0 +informa informer ver 37.42 21.69 0.17 3.18 ind:pas:3s; +informai informer ver 37.42 21.69 0 0.14 ind:pas:1s; +informaient informer ver 37.42 21.69 0.11 0.34 ind:imp:3p; +informais informer ver 37.42 21.69 0.1 0 ind:imp:1s; +informait informer ver 37.42 21.69 0.23 1.82 ind:imp:3s; +informant informer ver 37.42 21.69 0.29 0.54 par:pre; +informateur informateur nom m s 4.15 2.3 3.01 0.74 +informateurs informateur nom m p 4.15 2.3 1.05 1.55 +informaticien informaticien nom m s 1.03 0.47 0.72 0.14 +informaticienne informaticien nom f s 1.03 0.47 0.02 0.14 +informaticiens informaticien nom m p 1.03 0.47 0.29 0.2 +informatif informatif adj m s 0.1 0 0.06 0 +information information nom f s 63.2 36.55 23.9 16.22 +informations information nom f p 63.2 36.55 39.3 20.34 +informatique informatique nom f s 4.6 0.81 4.6 0.81 +informatiquement informatiquement adv 0.15 0 0.15 0 +informatiques informatique adj p 5.24 0.2 0.91 0 +informatiser informatiser ver 0.31 0 0.01 0 inf; +informatisé informatisé adj m s 0.39 0 0.25 0 +informatisée informatiser ver f s 0.31 0 0.16 0 par:pas; +informatisées informatisé adj f p 0.39 0 0.03 0 +informatisés informatiser ver m p 0.31 0 0.03 0 par:pas; +informative informatif adj f s 0.1 0 0.03 0 +informatives informatif adj f p 0.1 0 0.01 0 +informatrice informateur nom f s 4.15 2.3 0.09 0 +informe informer ver 37.42 21.69 5.76 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +informel informel adj m s 0.78 0.74 0.34 0.41 +informelle informel adj f s 0.78 0.74 0.39 0.2 +informelles informel adj f p 0.78 0.74 0.01 0.14 +informels informel adj m p 0.78 0.74 0.03 0 +informent informer ver 37.42 21.69 1.15 0.07 ind:pre:3p; +informer informer ver 37.42 21.69 12.57 6.42 ind:pre:2p;inf; +informera informer ver 37.42 21.69 0.35 0.07 ind:fut:3s; +informerai informer ver 37.42 21.69 1.21 0.07 ind:fut:1s; +informerais informer ver 37.42 21.69 0.03 0 cnd:pre:1s; +informeras informer ver 37.42 21.69 0.03 0 ind:fut:2s; +informerez informer ver 37.42 21.69 0.15 0 ind:fut:2p; +informerons informer ver 37.42 21.69 0.16 0 ind:fut:1p; +informeront informer ver 37.42 21.69 0.11 0 ind:fut:3p; +informes informe adj p 0.79 9.53 0.12 3.11 +informez informer ver 37.42 21.69 2.06 0.14 imp:pre:2p;ind:pre:2p; +informiez informer ver 37.42 21.69 0.07 0 ind:imp:2p; +informions informer ver 37.42 21.69 0 0.07 ind:imp:1p; +informons informer ver 37.42 21.69 0.86 0.07 imp:pre:1p;ind:pre:1p; +informulable informulable adj f s 0 0.27 0 0.2 +informulables informulable adj m p 0 0.27 0 0.07 +informulé informulé adj m s 0 1.01 0 0.47 +informulée informulé adj f s 0 1.01 0 0.41 +informulées informulé adj f p 0 1.01 0 0.14 +informèrent informer ver 37.42 21.69 0 0.2 ind:pas:3p; +informé informer ver m s 37.42 21.69 8 3.65 par:pas; +informée informer ver f s 37.42 21.69 1.45 1.01 par:pas; +informées informer ver f p 37.42 21.69 0.19 0.14 par:pas; +informés informer ver m p 37.42 21.69 2.27 0.95 par:pas; +infortune infortune nom f s 1.3 4.19 1.21 3.72 +infortunes infortune nom f p 1.3 4.19 0.09 0.47 +infortuné infortuné adj m s 1.65 2.57 0.73 1.76 +infortunée infortuné adj f s 1.65 2.57 0.58 0.34 +infortunées infortuné adj f p 1.65 2.57 0.01 0 +infortunés infortuné adj m p 1.65 2.57 0.33 0.47 +infos info nom f p 25.5 0.47 18.78 0.47 +infoutu infoutu adj m s 0.06 0.14 0.04 0 +infoutue infoutu adj f s 0.06 0.14 0 0.07 +infoutus infoutu adj m p 0.06 0.14 0.02 0.07 +infra infra adv 0.59 0.27 0.59 0.27 +infraction infraction nom f s 3.95 1.22 2.91 0.95 +infractions infraction nom f p 3.95 1.22 1.04 0.27 +infranchi infranchi adj m s 0 0.07 0 0.07 +infranchissable infranchissable adj s 0.93 3.18 0.77 2.64 +infranchissables infranchissable adj p 0.93 3.18 0.17 0.54 +infrangible infrangible adj f s 0.01 0.27 0.01 0.27 +infrarouge infrarouge nom m s 1.31 0.07 0.85 0 +infrarouges infrarouge adj p 1.09 0 0.48 0 +infrason infrason nom m s 0.01 0 0.01 0 +infrastructure infrastructure nom f s 0.93 0.27 0.6 0.2 +infrastructures infrastructure nom f p 0.93 0.27 0.32 0.07 +infroissable infroissable adj m s 0.18 0.14 0.18 0.14 +infructueuse infructueux adj f s 0.34 1.22 0.07 0 +infructueuses infructueux adj f p 0.34 1.22 0.08 0.34 +infructueux infructueux adj m 0.34 1.22 0.19 0.88 +infréquentable infréquentable adj m s 0.03 0.2 0.01 0.07 +infréquentables infréquentable adj m p 0.03 0.2 0.02 0.14 +infréquentée infréquenté adj f s 0 0.14 0 0.07 +infréquentés infréquenté adj m p 0 0.14 0 0.07 +infus infus adj m s 0.27 0.34 0 0.14 +infusaient infuser ver 0.2 1.82 0 0.14 ind:imp:3p; +infusait infuser ver 0.2 1.82 0 0.34 ind:imp:3s; +infusant infuser ver 0.2 1.82 0 0.14 par:pre; +infuse infus adj f s 0.27 0.34 0.27 0.14 +infusent infuser ver 0.2 1.82 0 0.14 ind:pre:3p; +infuser infuser ver 0.2 1.82 0.1 0.2 inf; +infuses infus adj f p 0.27 0.34 0 0.07 +infusion infusion nom f s 0.57 2.77 0.54 2.43 +infusions infusion nom f p 0.57 2.77 0.03 0.34 +infusoires infusoire nom m p 0 0.07 0 0.07 +infusé infuser ver m s 0.2 1.82 0.04 0.41 par:pas; +infusée infuser ver f s 0.2 1.82 0.01 0.07 par:pas; +infusées infuser ver f p 0.2 1.82 0.01 0.07 par:pas; +infâme infâme adj s 7.71 7.91 6 5.27 +infâmes infâme adj p 7.71 7.91 1.71 2.64 +inféconde infécond adj f s 0.16 0.2 0.14 0.2 +infécondes infécond adj f p 0.16 0.2 0.01 0 +infécondité infécondité nom f s 0 0.07 0 0.07 +inféode inféoder ver 0 0.34 0 0.07 ind:pre:3s; +inféoder inféoder ver 0 0.34 0 0.2 inf; +inféodée inféoder ver f s 0 0.34 0 0.07 par:pas; +inférai inférer ver 0 0.2 0 0.07 ind:pas:1s; +inférer inférer ver 0 0.2 0 0.07 inf; +inférieur inférieur adj m s 8.15 16.89 2.63 3.45 +inférieure inférieur adj f s 8.15 16.89 3.27 11.22 +inférieures inférieur adj f p 8.15 16.89 0.7 0.88 +inférieurs inférieur adj m p 8.15 16.89 1.54 1.35 +inférioriser inférioriser ver 0.01 0 0.01 0 inf; +infériorité infériorité nom f s 1.06 3.45 1.06 3.38 +infériorités infériorité nom f p 1.06 3.45 0 0.07 +inféré inférer ver m s 0 0.2 0 0.07 par:pas; +ingagnable ingagnable adj f s 0.06 0 0.06 0 +ingambe ingambe adj s 0 0.41 0 0.2 +ingambes ingambe adj m p 0 0.41 0 0.2 +ingestion ingestion nom f s 0.17 0.2 0.17 0.2 +inglorieusement inglorieusement adv 0 0.07 0 0.07 +inglorieux inglorieux adj m 0 0.14 0 0.14 +ingouvernable ingouvernable adj f s 0.11 0.27 0.11 0.27 +ingrat ingrat adj m s 5.61 8.31 3.46 4.86 +ingrate ingrat adj f s 5.61 8.31 1.42 2.09 +ingratement ingratement adv 0 0.07 0 0.07 +ingrates ingrat nom f p 3.11 2.5 0.29 0 +ingratitude ingratitude nom f s 1.32 3.11 1.32 3.11 +ingrats ingrat nom m p 3.11 2.5 0.55 0.34 +ingrédient ingrédient nom m s 4.22 1.82 1.48 0.27 +ingrédients ingrédient nom m p 4.22 1.82 2.75 1.55 +inguinal inguinal adj m s 0 0.14 0 0.07 +inguinales inguinal adj f p 0 0.14 0 0.07 +ingurgita ingurgiter ver 0.99 4.66 0 0.2 ind:pas:3s; +ingurgitaient ingurgiter ver 0.99 4.66 0 0.2 ind:imp:3p; +ingurgitais ingurgiter ver 0.99 4.66 0 0.07 ind:imp:1s; +ingurgitait ingurgiter ver 0.99 4.66 0.01 0.47 ind:imp:3s; +ingurgitant ingurgiter ver 0.99 4.66 0 0.41 par:pre; +ingurgitation ingurgitation nom f s 0 0.14 0 0.14 +ingurgite ingurgiter ver 0.99 4.66 0.15 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ingurgitent ingurgiter ver 0.99 4.66 0.02 0.07 ind:pre:3p; +ingurgiter ingurgiter ver 0.99 4.66 0.4 1.96 inf; +ingurgiterait ingurgiter ver 0.99 4.66 0 0.07 cnd:pre:3s; +ingurgité ingurgiter ver m s 0.99 4.66 0.4 0.54 par:pas; +ingurgitée ingurgiter ver f s 0.99 4.66 0 0.27 par:pas; +ingurgitées ingurgiter ver f p 0.99 4.66 0 0.07 par:pas; +ingurgités ingurgiter ver m p 0.99 4.66 0 0.14 par:pas; +inguérissable inguérissable adj f s 0.03 1.62 0.03 1.15 +inguérissables inguérissable adj f p 0.03 1.62 0 0.47 +ingère ingérer ver 1.29 0.61 0.23 0 ind:pre:1s;ind:pre:3s; +ingèrent ingérer ver 1.29 0.61 0.05 0.07 ind:pre:3p; +ingénia ingénier ver 0.03 3.11 0 0.27 ind:pas:3s; +ingéniai ingénier ver 0.03 3.11 0 0.14 ind:pas:1s; +ingéniaient ingénier ver 0.03 3.11 0 0.14 ind:imp:3p; +ingéniais ingénier ver 0.03 3.11 0 0.14 ind:imp:1s; +ingéniait ingénier ver 0.03 3.11 0 1.35 ind:imp:3s; +ingéniant ingénier ver 0.03 3.11 0 0.27 par:pre; +ingénie ingénier ver 0.03 3.11 0.01 0.34 ind:pre:1s;ind:pre:3s; +ingénient ingénier ver 0.03 3.11 0 0.07 ind:pre:3p; +ingénier ingénier ver 0.03 3.11 0 0.14 inf; +ingénierie ingénierie nom f s 0.94 0 0.94 0 +ingénieur ingénieur nom m s 21.12 12.36 18.92 9.12 +ingénieur_chimiste ingénieur_chimiste nom m s 0 0.07 0 0.07 +ingénieur_conseil ingénieur_conseil nom m s 0 0.14 0 0.14 +ingénieurs ingénieur nom m p 21.12 12.36 2.2 3.24 +ingénieuse ingénieux adj f s 3.55 4.32 0.62 0.95 +ingénieusement ingénieusement adv 0.06 0.41 0.06 0.41 +ingénieuses ingénieux adj f p 3.55 4.32 0.02 0.61 +ingénieux ingénieux adj m 3.55 4.32 2.9 2.77 +ingéniosité ingéniosité nom f s 0.7 3.45 0.7 3.31 +ingéniosités ingéniosité nom f p 0.7 3.45 0 0.14 +ingénié ingénier ver m s 0.03 3.11 0.02 0.2 par:pas; +ingéniés ingénier ver m p 0.03 3.11 0 0.07 par:pas; +ingénu ingénu nom m s 0.99 0.81 0.37 0.14 +ingénue ingénu adj f s 1.03 1.96 0.36 0.54 +ingénues ingénu nom f p 0.99 0.81 0.28 0.27 +ingénuité ingénuité nom f s 0.52 1.15 0.52 1.08 +ingénuités ingénuité nom f p 0.52 1.15 0 0.07 +ingénument ingénument adv 0 0.95 0 0.95 +ingénus ingénu adj m p 1.03 1.96 0.23 0.47 +ingérable ingérable adj m s 0.16 0 0.16 0 +ingérant ingérer ver 1.29 0.61 0.03 0.07 par:pre; +ingérence ingérence nom f s 0.23 1.76 0.21 1.01 +ingérences ingérence nom f p 0.23 1.76 0.02 0.74 +ingérer ingérer ver 1.29 0.61 0.38 0.34 inf; +ingérons ingérer ver 1.29 0.61 0.01 0 ind:pre:1p; +ingéré ingérer ver m s 1.29 0.61 0.41 0 par:pas; +ingérée ingérer ver f s 1.29 0.61 0.14 0 par:pas; +ingérées ingérer ver f p 1.29 0.61 0.02 0.07 par:pas; +ingérés ingérer ver m p 1.29 0.61 0.02 0.07 par:pas; +inhabile inhabile adj s 0.01 0.14 0.01 0.14 +inhabitable inhabitable adj s 0.54 1.08 0.51 0.81 +inhabitables inhabitable adj m p 0.54 1.08 0.04 0.27 +inhabituel inhabituel adj m s 10.23 7.16 7.04 2.7 +inhabituelle inhabituel adj f s 10.23 7.16 1.83 3.58 +inhabituellement inhabituellement adv 0.11 0.2 0.11 0.2 +inhabituelles inhabituel adj f p 10.23 7.16 0.75 0.41 +inhabituels inhabituel adj m p 10.23 7.16 0.61 0.47 +inhabité inhabité adj m s 1.71 2.57 0.6 1.08 +inhabitée inhabité adj f s 1.71 2.57 1 1.22 +inhabitées inhabité adj f p 1.71 2.57 0.07 0.27 +inhabités inhabité adj m p 1.71 2.57 0.04 0 +inhala inhaler ver 0.77 0.47 0 0.14 ind:pas:3s; +inhalais inhaler ver 0.77 0.47 0 0.07 ind:imp:1s; +inhalait inhaler ver 0.77 0.47 0.05 0.07 ind:imp:3s; +inhalant inhaler ver 0.77 0.47 0.03 0.07 par:pre; +inhalateur inhalateur nom m s 0.93 0.27 0.86 0.2 +inhalateurs inhalateur nom m p 0.93 0.27 0.06 0.07 +inhalation inhalation nom f s 0.67 0.41 0.6 0.2 +inhalations inhalation nom f p 0.67 0.41 0.07 0.2 +inhaler inhaler ver 0.77 0.47 0.17 0.14 inf; +inhalera inhaler ver 0.77 0.47 0.02 0 ind:fut:3s; +inhalez inhaler ver 0.77 0.47 0.06 0 imp:pre:2p;ind:pre:2p; +inhalé inhaler ver m s 0.77 0.47 0.44 0 par:pas; +inharmonieux inharmonieux adj m s 0.01 0 0.01 0 +inhibait inhiber ver 0.47 0.61 0 0.07 ind:imp:3s; +inhibant inhiber ver 0.47 0.61 0.04 0.2 par:pre; +inhibe inhiber ver 0.47 0.61 0.19 0 ind:pre:3s; +inhibent inhiber ver 0.47 0.61 0.02 0 ind:pre:3p; +inhiber inhiber ver 0.47 0.61 0.12 0.07 inf; +inhibiteur inhibiteur nom m s 0.84 0 0.69 0 +inhibiteurs inhibiteur nom m p 0.84 0 0.15 0 +inhibition inhibition nom f s 1.51 1.22 0.66 0.74 +inhibitions inhibition nom f p 1.51 1.22 0.85 0.47 +inhibitrice inhibiteur adj f s 0.22 0 0.03 0 +inhibât inhiber ver 0.47 0.61 0 0.07 sub:imp:3s; +inhibé inhibé adj m s 0.34 0.27 0.18 0.07 +inhibée inhibé adj f s 0.34 0.27 0.03 0.14 +inhibés inhibé adj m p 0.34 0.27 0.14 0.07 +inhospitalier inhospitalier adj m s 0.19 1.08 0.11 0.47 +inhospitaliers inhospitalier adj m p 0.19 1.08 0.02 0.07 +inhospitalité inhospitalité nom f s 0.01 0.07 0.01 0.07 +inhospitalière inhospitalier adj f s 0.19 1.08 0.05 0.27 +inhospitalières inhospitalier adj f p 0.19 1.08 0.01 0.27 +inhuma inhumer ver 1.11 1.89 0 0.27 ind:pas:3s; +inhumaient inhumer ver 1.11 1.89 0 0.07 ind:imp:3p; +inhumain inhumain adj m s 4.46 8.85 3.21 4.12 +inhumaine inhumain adj f s 4.46 8.85 0.32 3.24 +inhumainement inhumainement adv 0.01 0.34 0.01 0.34 +inhumaines inhumain adj f p 4.46 8.85 0.45 0.74 +inhumains inhumain adj m p 4.46 8.85 0.48 0.74 +inhumait inhumer ver 1.11 1.89 0 0.07 ind:imp:3s; +inhumanité inhumanité nom f s 0.28 0.68 0.28 0.68 +inhumation inhumation nom f s 0.31 1.28 0.31 1.22 +inhumations inhumation nom f p 0.31 1.28 0 0.07 +inhume inhumer ver 1.11 1.89 0.01 0 ind:pre:3s; +inhumer inhumer ver 1.11 1.89 0.42 0.54 inf; +inhumons inhumer ver 1.11 1.89 0 0.07 imp:pre:1p; +inhumé inhumer ver m s 1.11 1.89 0.36 0.61 par:pas; +inhumée inhumer ver f s 1.11 1.89 0.12 0.07 par:pas; +inhumés inhumer ver m p 1.11 1.89 0.19 0.2 par:pas; +inhérent inhérent adj m s 0.75 1.82 0.38 0.61 +inhérente inhérent adj f s 0.75 1.82 0.14 0.41 +inhérentes inhérent adj f p 0.75 1.82 0.13 0.47 +inhérents inhérent adj m p 0.75 1.82 0.09 0.34 +inidentifiable inidentifiable adj m s 0 0.34 0 0.14 +inidentifiables inidentifiable adj p 0 0.34 0 0.2 +inimaginable inimaginable adj s 3.17 4.8 2.48 3.58 +inimaginablement inimaginablement adv 0.01 0.07 0.01 0.07 +inimaginables inimaginable adj p 3.17 4.8 0.69 1.22 +inimitable inimitable adj s 0.64 3.51 0.64 3.51 +inimitablement inimitablement adv 0 0.07 0 0.07 +inimitié inimitié nom f s 0.33 1.08 0.31 0.74 +inimitiés inimitié nom f p 0.33 1.08 0.01 0.34 +inimité inimité adj m s 0.11 0 0.11 0 +ininflammable ininflammable adj m s 0.19 0 0.19 0 +inintelligence inintelligence nom f s 0 0.14 0 0.14 +inintelligent inintelligent adj m s 0.11 0.34 0.01 0.14 +inintelligents inintelligent adj m p 0.11 0.34 0.1 0.2 +inintelligible inintelligible adj m s 0.18 2.16 0.08 1.28 +inintelligibles inintelligible adj p 0.18 2.16 0.1 0.88 +ininterprétables ininterprétable adj f p 0 0.07 0 0.07 +ininterrompu ininterrompu adj m s 0.61 4.05 0.08 2.23 +ininterrompue ininterrompu adj f s 0.61 4.05 0.29 1.49 +ininterrompues ininterrompu adj f p 0.61 4.05 0.22 0.2 +ininterrompus ininterrompu adj m p 0.61 4.05 0.02 0.14 +inintéressant inintéressant adj m s 0.41 0.54 0.06 0.2 +inintéressante inintéressant adj f s 0.41 0.54 0.17 0.14 +inintéressantes inintéressant adj f p 0.41 0.54 0.02 0.14 +inintéressants inintéressant adj m p 0.41 0.54 0.15 0.07 +inintérêt inintérêt nom m s 0 0.14 0 0.14 +inique inique adj s 0.28 0.34 0.27 0.2 +iniques inique adj p 0.28 0.34 0.01 0.14 +iniquité iniquité nom f s 1.06 1.35 0.98 1.08 +iniquités iniquité nom f p 1.06 1.35 0.09 0.27 +initia initier ver 3.59 8.78 0.06 0.54 ind:pas:3s; +initiai initier ver 3.59 8.78 0.01 0.14 ind:pas:1s; +initiaient initier ver 3.59 8.78 0 0.27 ind:imp:3p; +initiais initier ver 3.59 8.78 0 0.2 ind:imp:1s; +initiait initier ver 3.59 8.78 0.15 0.47 ind:imp:3s; +initial initial adj m s 2.86 7.23 1.3 4.19 +initiale initial adj f s 2.86 7.23 1.09 1.96 +initialement initialement adv 0.27 1.49 0.27 1.49 +initiales initiale nom f p 4.02 7.36 3.61 6.89 +initialisation initialisation nom f s 0.55 0 0.55 0 +initialise initialiser ver 0.14 0 0.04 0 imp:pre:2s;ind:pre:1s; +initialiser initialiser ver 0.14 0 0.06 0 inf; +initialisez initialiser ver 0.14 0 0.03 0 imp:pre:2p; +initialisé initialisé adj m s 0.15 0 0.07 0 +initialisée initialisé adj f s 0.15 0 0.04 0 +initialisés initialisé adj m p 0.15 0 0.03 0 +initiant initier ver 3.59 8.78 0.01 0.2 par:pre; +initiateur initiateur adj m s 0.16 0.2 0.14 0.14 +initiateurs initiateur nom m p 0.11 1.01 0.11 0.14 +initiation initiation nom f s 1.63 4.39 1.58 4.05 +initiations initiation nom f p 1.63 4.39 0.05 0.34 +initiatique initiatique adj s 0.22 1.82 0.21 1.42 +initiatiques initiatique adj p 0.22 1.82 0.01 0.41 +initiative initiative nom f s 8.76 16.82 7.08 14.46 +initiatives initiative nom f p 8.76 16.82 1.67 2.36 +initiatrice initiateur nom f s 0.11 1.01 0 0.27 +initiatrices initiateur nom f p 0.11 1.01 0 0.07 +initiaux initial adj m p 2.86 7.23 0.14 0.27 +initie initier ver 3.59 8.78 0.37 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +initier initier ver 3.59 8.78 1.27 3.45 inf; +initiera initier ver 3.59 8.78 0 0.07 ind:fut:3s; +initierai initier ver 3.59 8.78 0.04 0.14 ind:fut:1s; +initierait initier ver 3.59 8.78 0 0.07 cnd:pre:3s; +initierons initier ver 3.59 8.78 0 0.07 ind:fut:1p; +initiez initier ver 3.59 8.78 0.1 0 imp:pre:2p;ind:pre:2p; +initiâmes initier ver 3.59 8.78 0 0.07 ind:pas:1p; +initiât initier ver 3.59 8.78 0 0.07 sub:imp:3s; +initièrent initier ver 3.59 8.78 0 0.2 ind:pas:3p; +initié initier ver m s 3.59 8.78 1 1.89 par:pas; +initiée initier ver f s 3.59 8.78 0.4 0.34 par:pas; +initiées initier ver f p 3.59 8.78 0.03 0 par:pas; +initiés initié nom m p 0.97 3.04 0.56 2.3 +injecta injecter ver 6.83 3.11 0 0.07 ind:pas:3s; +injectable injectable adj s 0.05 0 0.05 0 +injectaient injecter ver 6.83 3.11 0.02 0.14 ind:imp:3p; +injectait injecter ver 6.83 3.11 0.14 0.07 ind:imp:3s; +injectant injecter ver 6.83 3.11 0.28 0.14 par:pre; +injecte injecter ver 6.83 3.11 1.32 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +injectent injecter ver 6.83 3.11 0.25 0.07 ind:pre:3p; +injecter injecter ver 6.83 3.11 1.42 0.61 imp:pre:2p;inf; +injectera injecter ver 6.83 3.11 0.03 0 ind:fut:3s; +injecteras injecter ver 6.83 3.11 0.04 0 ind:fut:2s; +injectes injecter ver 6.83 3.11 0.06 0.07 ind:pre:2s; +injecteur injecteur nom m s 0.6 0.07 0.08 0.07 +injecteurs injecteur nom m p 0.6 0.07 0.52 0 +injectez injecter ver 6.83 3.11 0.29 0 imp:pre:2p;ind:pre:2p; +injection injection nom f s 8.98 1.42 7.83 0.95 +injections injection nom f p 8.98 1.42 1.16 0.47 +injecté injecter ver m s 6.83 3.11 1.97 0.88 par:pas; +injectée injecter ver f s 6.83 3.11 0.4 0 par:pas; +injectés injecter ver m p 6.83 3.11 0.61 0.81 par:pas; +injoignable injoignable adj s 1.21 0.07 1.1 0.07 +injoignables injoignable adj p 1.21 0.07 0.12 0 +injonction injonction nom f s 1.58 4.26 1.3 2.36 +injonctions injonction nom f p 1.58 4.26 0.28 1.89 +injouable injouable adj s 0.02 0 0.02 0 +injure injure nom f s 4.58 16.69 2.22 4.93 +injures injure nom f p 4.58 16.69 2.35 11.76 +injuria injurier ver 1.81 6.55 0 0.61 ind:pas:3s; +injuriai injurier ver 1.81 6.55 0.1 0.07 ind:pas:1s; +injuriaient injurier ver 1.81 6.55 0 0.27 ind:imp:3p; +injuriais injurier ver 1.81 6.55 0 0.14 ind:imp:1s; +injuriait injurier ver 1.81 6.55 0.17 1.15 ind:imp:3s; +injuriant injurier ver 1.81 6.55 0.02 0.54 par:pre; +injurie injurier ver 1.81 6.55 0.05 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +injurient injurier ver 1.81 6.55 0.01 0.07 ind:pre:3p; +injurier injurier ver 1.81 6.55 0.49 1.89 inf; +injuries injurier ver 1.81 6.55 0.05 0 ind:pre:2s; +injurieuse injurieux adj f s 0.13 1.15 0.04 0.27 +injurieusement injurieusement adv 0 0.07 0 0.07 +injurieux injurieux adj m 0.13 1.15 0.09 0.88 +injurié injurier ver m s 1.81 6.55 0.78 0.47 par:pas; +injuriée injurier ver f s 1.81 6.55 0.14 0.27 par:pas; +injuriés injurier ver m p 1.81 6.55 0.01 0.2 par:pas; +injuste injuste adj s 17.46 15.47 15.94 13.38 +injustement injustement adv 1.58 2.23 1.58 2.23 +injustes injuste adj p 17.46 15.47 1.52 2.09 +injustice injustice nom f s 6.59 13.51 4.61 11.49 +injustices injustice nom f p 6.59 13.51 1.98 2.03 +injustifiable injustifiable adj f s 0.06 0.95 0.06 0.88 +injustifiables injustifiable adj m p 0.06 0.95 0 0.07 +injustifié injustifié adj m s 1.33 1.42 0.41 0.27 +injustifiée injustifié adj f s 1.33 1.42 0.7 0.61 +injustifiées injustifié adj f p 1.33 1.42 0.05 0.41 +injustifiés injustifié adj m p 1.33 1.42 0.17 0.14 +inlassable inlassable adj s 0.38 4.19 0.24 3.31 +inlassablement inlassablement adv 0.38 9.59 0.38 9.59 +inlassables inlassable adj p 0.38 4.19 0.14 0.88 +innervant innerver ver 0.02 0.2 0.02 0 par:pre; +innervation innervation nom f s 0 0.27 0 0.27 +innerver innerver ver 0.02 0.2 0 0.07 inf; +innervé innerver ver m s 0.02 0.2 0 0.14 par:pas; +innocemment innocemment adv 0.64 3.18 0.64 3.18 +innocence innocence nom f s 10.63 20 10.63 19.59 +innocences innocence nom f p 10.63 20 0 0.41 +innocent innocent adj m s 39.31 23.11 23.49 11.22 +innocentait innocenter ver 2.56 1.42 0.01 0.14 ind:imp:3s; +innocentant innocenter ver 2.56 1.42 0.03 0 par:pre; +innocente innocent adj f s 39.31 23.11 8.15 5.14 +innocenter innocenter ver 2.56 1.42 0.76 0.61 inf; +innocentera innocenter ver 2.56 1.42 0.27 0 ind:fut:3s; +innocenterai innocenter ver 2.56 1.42 0.01 0 ind:fut:1s; +innocenterait innocenter ver 2.56 1.42 0.02 0.14 cnd:pre:3s; +innocentes innocent adj f p 39.31 23.11 2.73 2.43 +innocents innocent nom m p 24.68 13.18 11.03 5.95 +innocenté innocenter ver m s 2.56 1.42 0.94 0.14 par:pas; +innocentée innocenter ver f s 2.56 1.42 0.15 0 par:pas; +innocuité innocuité nom f s 0 0.2 0 0.2 +innombrable innombrable adj s 3.15 29.53 0.02 4.12 +innombrablement innombrablement adv 0 0.07 0 0.07 +innombrables innombrable adj p 3.15 29.53 3.13 25.41 +innominés innominé adj m p 0 0.14 0 0.14 +innommable innommable adj s 0.49 3.85 0.33 2.5 +innommables innommable adj p 0.49 3.85 0.17 1.35 +innommé innommé adj m s 0.05 0.27 0 0.14 +innommée innommé adj f s 0.05 0.27 0.05 0 +innommés innommé adj m p 0.05 0.27 0 0.14 +innova innover ver 0.93 0.88 0 0.07 ind:pas:3s; +innovais innover ver 0.93 0.88 0 0.07 ind:imp:1s; +innovait innover ver 0.93 0.88 0.02 0.07 ind:imp:3s; +innovant innovant adj m s 0.07 0.07 0.04 0.07 +innovante innovant adj f s 0.07 0.07 0.03 0 +innovateur innovateur adj m s 0.07 0 0.06 0 +innovation innovation nom f s 1.06 2.03 0.55 1.49 +innovations innovation nom f p 1.06 2.03 0.51 0.54 +innovatrice innovateur adj f s 0.07 0 0.01 0 +innove innover ver 0.93 0.88 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +innover innover ver 0.93 0.88 0.55 0.34 inf; +innovez innover ver 0.93 0.88 0 0.07 ind:pre:2p; +innové innover ver m s 0.93 0.88 0.09 0.14 par:pas; +inné inné adj m s 1.26 2.97 0.95 1.35 +innée inné adj f s 1.26 2.97 0.26 1.28 +innées inné adj f p 1.26 2.97 0.03 0.07 +innés inné adj m p 1.26 2.97 0.01 0.27 +inoccupations inoccupation nom f p 0 0.07 0 0.07 +inoccupé inoccupé adj m s 0.67 3.24 0.11 0.88 +inoccupée inoccupé adj f s 0.67 3.24 0.48 1.49 +inoccupées inoccupé adj f p 0.67 3.24 0.04 0.34 +inoccupés inoccupé adj m p 0.67 3.24 0.02 0.54 +inoculant inoculer ver 0.93 0.95 0.01 0 par:pre; +inoculation inoculation nom f s 0.24 0.07 0.24 0.07 +inocule inoculer ver 0.93 0.95 0.05 0.14 ind:pre:1s;ind:pre:3s; +inoculent inoculer ver 0.93 0.95 0 0.07 ind:pre:3p; +inoculer inoculer ver 0.93 0.95 0.09 0.2 inf; +inoculerait inoculer ver 0.93 0.95 0 0.07 cnd:pre:3s; +inoculé inoculer ver m s 0.93 0.95 0.55 0.34 par:pas; +inoculée inoculer ver f s 0.93 0.95 0.07 0.14 par:pas; +inoculées inoculer ver f p 0.93 0.95 0.16 0 par:pas; +inodore inodore adj s 0.15 0.54 0.14 0.47 +inodores inodore adj p 0.15 0.54 0.01 0.07 +inoffensif inoffensif adj m s 7.78 8.04 4.62 3.45 +inoffensifs inoffensif adj m p 7.78 8.04 1.35 2.03 +inoffensive inoffensif adj f s 7.78 8.04 1.38 1.49 +inoffensives inoffensif adj f p 7.78 8.04 0.43 1.08 +inonda inonder ver 6.69 15.14 0.13 1.42 ind:pas:3s; +inondable inondable adj f s 0.01 0.2 0 0.07 +inondables inondable adj f p 0.01 0.2 0.01 0.14 +inondaient inonder ver 6.69 15.14 0.01 0.74 ind:imp:3p; +inondait inonder ver 6.69 15.14 0.18 3.04 ind:imp:3s; +inondant inonder ver 6.69 15.14 0.21 1.35 par:pre; +inondation inondation nom f s 3.21 3.78 2.15 2.43 +inondations inondation nom f p 3.21 3.78 1.06 1.35 +inonde inonder ver 6.69 15.14 0.73 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inondent inonder ver 6.69 15.14 0.26 0.14 ind:pre:3p; +inonder inonder ver 6.69 15.14 1.37 1.35 inf; +inondera inonder ver 6.69 15.14 0.03 0 ind:fut:3s; +inonderai inonder ver 6.69 15.14 0.02 0.07 ind:fut:1s; +inonderait inonder ver 6.69 15.14 0.05 0 cnd:pre:3s; +inonderons inonder ver 6.69 15.14 0.02 0 ind:fut:1p; +inondez inonder ver 6.69 15.14 0.09 0 imp:pre:2p;ind:pre:2p; +inondiez inonder ver 6.69 15.14 0.02 0 ind:imp:2p; +inondât inonder ver 6.69 15.14 0 0.07 sub:imp:3s; +inondèrent inonder ver 6.69 15.14 0 0.07 ind:pas:3p; +inondé inonder ver m s 6.69 15.14 2.13 2.7 par:pas; +inondée inonder ver f s 6.69 15.14 0.74 1.35 par:pas; +inondées inonder ver f p 6.69 15.14 0.22 0.14 par:pas; +inondés inonder ver m p 6.69 15.14 0.48 0.61 par:pas; +inopiné inopiné adj m s 0.26 1.15 0.04 0.2 +inopinée inopiné adj f s 0.26 1.15 0.09 0.68 +inopinées inopiné adj f p 0.26 1.15 0.14 0.27 +inopinément inopinément adv 0.41 1.42 0.41 1.42 +inopportun inopportun adj m s 0.86 1.82 0.71 0.68 +inopportune inopportun adj f s 0.86 1.82 0.13 0.61 +inopportunes inopportun adj f p 0.86 1.82 0.01 0.34 +inopportunité inopportunité nom f s 0 0.07 0 0.07 +inopportuns inopportun adj m p 0.86 1.82 0.01 0.2 +inopportunément inopportunément adv 0.02 0.07 0.02 0.07 +inopérable inopérable adj s 0.26 0 0.24 0 +inopérables inopérable adj m p 0.26 0 0.02 0 +inopérant inopérant adj m s 0.35 0.88 0.07 0.34 +inopérante inopérant adj f s 0.35 0.88 0.07 0.07 +inopérantes inopérant adj f p 0.35 0.88 0.01 0.2 +inopérants inopérant adj m p 0.35 0.88 0.19 0.27 +inorganique inorganique adj f s 0.01 0.14 0.01 0.14 +inorganisé inorganisé adj m s 0.04 0.2 0.02 0 +inorganisée inorganisé adj f s 0.04 0.2 0.02 0.07 +inorganisées inorganisé adj f p 0.04 0.2 0 0.14 +inoubliable inoubliable adj s 5.07 7.5 4.21 4.8 +inoubliablement inoubliablement adv 0 0.07 0 0.07 +inoubliables inoubliable adj p 5.07 7.5 0.86 2.7 +inoublié inoublié adj m s 0 0.14 0 0.07 +inoubliées inoublié adj f p 0 0.14 0 0.07 +inouï inouï adj m s 3.23 15.2 1.79 6.28 +inouïe inouï adj f s 3.23 15.2 0.97 5.27 +inouïes inouï adj f p 3.23 15.2 0.09 2.09 +inouïs inouï adj m p 3.23 15.2 0.38 1.55 +inox inox nom m 0.13 0.27 0.13 0.27 +inoxydable inoxydable nom m s 0.23 0.14 0.23 0.14 +inoxydables inoxydable adj m p 0.16 0.61 0.01 0.14 +input input nom m s 0 0.07 0 0.07 +inqualifiable inqualifiable adj s 0.3 1.08 0.29 0.95 +inqualifiables inqualifiable adj m p 0.3 1.08 0.01 0.14 +inquiet inquiet adj m s 34.96 46.55 17.9 23.38 +inquiets inquiet adj m p 34.96 46.55 4.28 6.28 +inquilisme inquilisme nom m s 0 0.07 0 0.07 +inquisiteur inquisiteur adj m s 0.83 2.7 0.8 1.69 +inquisiteurs inquisiteur nom m p 1.45 2.43 0.67 1.35 +inquisition inquisition nom f s 3.15 4.66 3.13 4.26 +inquisitionner inquisitionner ver 0 0.07 0 0.07 inf; +inquisitions inquisition nom f p 3.15 4.66 0.01 0.41 +inquisitive inquisitif adj f s 0 0.07 0 0.07 +inquisitorial inquisitorial adj m s 0.1 0.54 0.1 0.07 +inquisitoriale inquisitorial adj f s 0.1 0.54 0 0.27 +inquisitoriales inquisitorial adj f p 0.1 0.54 0 0.14 +inquisitoriaux inquisitorial adj m p 0.1 0.54 0 0.07 +inquisitrice inquisiteur adj f s 0.83 2.7 0.02 0.14 +inquiète inquiéter ver 212.16 71.01 114.06 22.5 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +inquiètent inquiéter ver 212.16 71.01 3.02 1.01 ind:pre:3p; +inquiètes inquiéter ver 212.16 71.01 13.85 0.68 ind:pre:2s;sub:pre:2s; +inquiéta inquiéter ver 212.16 71.01 0.03 4.39 ind:pas:3s; +inquiétai inquiéter ver 212.16 71.01 0 0.34 ind:pas:1s; +inquiétaient inquiéter ver 212.16 71.01 0.12 2.16 ind:imp:3p; +inquiétais inquiéter ver 212.16 71.01 4.12 1.08 ind:imp:1s;ind:imp:2s; +inquiétait inquiéter ver 212.16 71.01 3.56 11.08 ind:imp:3s; +inquiétant inquiétant adj m s 5.72 20.88 3.88 8.72 +inquiétante inquiétant adj f s 5.72 20.88 1.18 7.03 +inquiétantes inquiétant adj f p 5.72 20.88 0.32 2.36 +inquiétants inquiétant adj m p 5.72 20.88 0.35 2.77 +inquiétassent inquiéter ver 212.16 71.01 0 0.07 sub:imp:3p; +inquiéter inquiéter ver 212.16 71.01 27.98 12.36 inf;; +inquiétera inquiéter ver 212.16 71.01 0.32 0.27 ind:fut:3s; +inquiéterai inquiéter ver 212.16 71.01 0.12 0.07 ind:fut:1s; +inquiéteraient inquiéter ver 212.16 71.01 0.06 0.07 cnd:pre:3p; +inquiéterais inquiéter ver 212.16 71.01 0.51 0.07 cnd:pre:1s;cnd:pre:2s; +inquiéterait inquiéter ver 212.16 71.01 0.23 0.61 cnd:pre:3s; +inquiéteras inquiéter ver 212.16 71.01 0.04 0.07 ind:fut:2s; +inquiéteriez inquiéter ver 212.16 71.01 0.01 0 cnd:pre:2p; +inquiéteront inquiéter ver 212.16 71.01 0.05 0 ind:fut:3p; +inquiéteur inquiéteur nom m s 0 0.07 0 0.07 +inquiétez inquiéter ver 212.16 71.01 38.8 3.85 imp:pre:2p;ind:pre:2p; +inquiétiez inquiéter ver 212.16 71.01 0.23 0.07 ind:imp:2p; +inquiétions inquiéter ver 212.16 71.01 0.15 0.07 ind:imp:1p; +inquiétons inquiéter ver 212.16 71.01 0.45 0.07 imp:pre:1p;ind:pre:1p; +inquiétude inquiétude nom f s 10.04 46.76 8.2 41.35 +inquiétudes inquiétude nom f p 10.04 46.76 1.84 5.41 +inquiétât inquiéter ver 212.16 71.01 0 0.27 sub:imp:3s; +inquiétèrent inquiéter ver 212.16 71.01 0 0.54 ind:pas:3p; +inquiété inquiéter ver m s 212.16 71.01 2.21 4.26 par:pas; +inquiétée inquiéter ver f s 212.16 71.01 1.41 1.62 par:pas; +inquiétées inquiéter ver f p 212.16 71.01 0.04 0 par:pas; +inquiétés inquiéter ver m p 212.16 71.01 0.5 0.95 par:pas; +inracontables inracontable adj f p 0.14 0 0.14 0 +insaisissable insaisissable adj s 1.16 6.15 1.08 5.47 +insaisissables insaisissable adj p 1.16 6.15 0.08 0.68 +insalissable insalissable adj s 0 0.07 0 0.07 +insalubre insalubre adj s 0.36 0.95 0.35 0.68 +insalubres insalubre adj p 0.36 0.95 0.01 0.27 +insalubrité insalubrité nom f s 0 0.27 0 0.27 +insane insane adj m s 0.05 0.41 0.05 0.07 +insanes insane adj p 0.05 0.41 0 0.34 +insanité insanité nom f s 0.44 1.49 0.22 0.27 +insanités insanité nom f p 0.44 1.49 0.22 1.22 +insatiable insatiable adj s 2.5 3.45 1.73 2.84 +insatiablement insatiablement adv 0 0.34 0 0.34 +insatiables insatiable adj p 2.5 3.45 0.77 0.61 +insatisfaction insatisfaction nom f s 0.22 1.15 0.21 1.08 +insatisfactions insatisfaction nom f p 0.22 1.15 0.01 0.07 +insatisfaisant insatisfaisant adj m s 0.24 0.14 0.18 0.14 +insatisfaisante insatisfaisant adj f s 0.24 0.14 0.05 0 +insatisfaisantes insatisfaisant adj f p 0.24 0.14 0.01 0 +insatisfait insatisfait adj m s 1.71 1.89 0.64 1.01 +insatisfaite insatisfait adj f s 1.71 1.89 0.53 0.34 +insatisfaites insatisfait adj f p 1.71 1.89 0.2 0.27 +insatisfaits insatisfait adj m p 1.71 1.89 0.34 0.27 +inscription inscription nom f s 7.17 19.32 5.04 12.97 +inscriptions inscription nom f p 7.17 19.32 2.13 6.35 +inscrira inscrire ver 25.41 42.7 0.25 0.27 ind:fut:3s; +inscrirai inscrire ver 25.41 42.7 0.55 0 ind:fut:1s; +inscriraient inscrire ver 25.41 42.7 0.01 0.07 cnd:pre:3p; +inscrirais inscrire ver 25.41 42.7 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +inscrirait inscrire ver 25.41 42.7 0.02 0.41 cnd:pre:3s; +inscriras inscrire ver 25.41 42.7 0 0.07 ind:fut:2s; +inscrire inscrire ver 25.41 42.7 7.84 9.86 inf; +inscris inscrire ver 25.41 42.7 2.63 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s; +inscrit inscrire ver m s 25.41 42.7 7.01 13.04 ind:pre:3s;par:pas; +inscrite inscrire ver f s 25.41 42.7 2.32 3.92 par:pas; +inscrites inscrire ver f p 25.41 42.7 0.29 0.81 par:pas; +inscrits inscrire ver m p 25.41 42.7 1.69 2.7 par:pas; +inscrivaient inscrire ver 25.41 42.7 0.02 1.55 ind:imp:3p; +inscrivais inscrire ver 25.41 42.7 0.02 0.2 ind:imp:1s;ind:imp:2s; +inscrivait inscrire ver 25.41 42.7 0.18 2.97 ind:imp:3s; +inscrivant inscrire ver 25.41 42.7 0.07 1.28 par:pre; +inscrive inscrire ver 25.41 42.7 0.33 0.34 sub:pre:1s;sub:pre:3s; +inscrivent inscrire ver 25.41 42.7 0.34 1.28 ind:pre:3p; +inscrivez inscrire ver 25.41 42.7 1.58 0.27 imp:pre:2p;ind:pre:2p; +inscrivirent inscrire ver 25.41 42.7 0.01 0.14 ind:pas:3p; +inscrivis inscrire ver 25.41 42.7 0 0.61 ind:pas:1s; +inscrivit inscrire ver 25.41 42.7 0.01 2.03 ind:pas:3s; +inscrivons inscrire ver 25.41 42.7 0.2 0 imp:pre:1p; +inscrutable inscrutable adj f s 0 0.14 0 0.14 +insecte insecte nom m s 13.79 22.7 5.46 8.04 +insectes insecte nom m p 13.79 22.7 8.32 14.66 +insecticide insecticide nom m s 1.05 0.61 0.92 0.47 +insecticides insecticide nom m p 1.05 0.61 0.14 0.14 +insectivore insectivore adj f s 0.02 0 0.02 0 +insensibilisait insensibiliser ver 0.18 0.27 0 0.07 ind:imp:3s; +insensibiliser insensibiliser ver 0.18 0.27 0.04 0 inf; +insensibilisé insensibiliser ver m s 0.18 0.27 0.13 0.14 par:pas; +insensibilisée insensibiliser ver f s 0.18 0.27 0.01 0.07 par:pas; +insensibilité insensibilité nom f s 0.28 1.55 0.28 1.55 +insensible insensible adj s 5.13 12.16 4.04 9.39 +insensiblement insensiblement adv 0.1 10.41 0.1 10.41 +insensibles insensible adj p 5.13 12.16 1.09 2.77 +insensé insensé adj m s 11.32 11.82 7.51 6.28 +insensée insensé adj f s 11.32 11.82 1.92 2.97 +insensées insensé adj f p 11.32 11.82 0.79 1.35 +insensément insensément adv 0 0.07 0 0.07 +insensés insensé adj m p 11.32 11.82 1.09 1.22 +insert insert nom m s 0.3 0 0.12 0 +insertion insertion nom f s 0.64 0.54 0.64 0.54 +inserts insert nom m p 0.3 0 0.19 0 +insidieuse insidieux adj f s 0.62 4.12 0.15 2.43 +insidieusement insidieusement adv 0.04 2.16 0.04 2.16 +insidieuses insidieux adj f p 0.62 4.12 0.16 0.34 +insidieux insidieux adj m 0.62 4.12 0.31 1.35 +insight insight nom m s 0.03 0.07 0.02 0 +insights insight nom m p 0.03 0.07 0.01 0.07 +insigne insigne nom m s 5.56 3.18 4.42 1.69 +insignes insigne nom m p 5.56 3.18 1.14 1.49 +insignifiance insignifiance nom f s 0.18 3.99 0.18 3.65 +insignifiances insignifiance nom f p 0.18 3.99 0 0.34 +insignifiant insignifiant adj m s 5.27 13.92 2.26 5.2 +insignifiante insignifiant adj f s 5.27 13.92 1.5 3.18 +insignifiantes insignifiant adj f p 5.27 13.92 0.66 2.5 +insignifiants insignifiant adj m p 5.27 13.92 0.85 3.04 +insincère insincère adj s 0 0.14 0 0.14 +insincérité insincérité nom f s 0.03 0.41 0.03 0.41 +insinua insinuer ver 9.9 9.73 0.01 1.22 ind:pas:3s; +insinuai insinuer ver 9.9 9.73 0 0.07 ind:pas:1s; +insinuaient insinuer ver 9.9 9.73 0.14 0.41 ind:imp:3p; +insinuais insinuer ver 9.9 9.73 0.11 0.07 ind:imp:1s;ind:imp:2s; +insinuait insinuer ver 9.9 9.73 0.1 1.22 ind:imp:3s; +insinuant insinuer ver 9.9 9.73 0.15 0.54 par:pre; +insinuante insinuant adj f s 0.1 2.09 0 0.74 +insinuantes insinuant adj f p 0.1 2.09 0 0.14 +insinuants insinuant adj m p 0.1 2.09 0 0.14 +insinuation insinuation nom f s 1.62 1.55 0.49 0.47 +insinuations insinuation nom f p 1.62 1.55 1.12 1.08 +insinue insinuer ver 9.9 9.73 1.19 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insinuent insinuer ver 9.9 9.73 0.09 0.61 ind:pre:3p; +insinuer insinuer ver 9.9 9.73 1.63 2.03 inf; +insinuerai insinuer ver 9.9 9.73 0.01 0 ind:fut:1s; +insinuerait insinuer ver 9.9 9.73 0.01 0 cnd:pre:3s; +insinues insinuer ver 9.9 9.73 2.36 0.41 ind:pre:2s; +insinuez insinuer ver 9.9 9.73 3.56 0.14 imp:pre:2p;ind:pre:2p; +insinuiez insinuer ver 9.9 9.73 0.03 0 ind:imp:2p; +insinué insinuer ver m s 9.9 9.73 0.38 0.34 par:pas; +insinuée insinuer ver f s 9.9 9.73 0.14 0.34 par:pas; +insipide insipide adj s 0.88 4.05 0.54 2.84 +insipides insipide adj p 0.88 4.05 0.34 1.22 +insipidité insipidité nom f s 0 0.14 0 0.14 +insista insister ver 42.16 67.03 0.18 13.04 ind:pas:3s; +insistai insister ver 42.16 67.03 0 3.31 ind:pas:1s; +insistaient insister ver 42.16 67.03 0.02 1.08 ind:imp:3p; +insistais insister ver 42.16 67.03 0.23 1.28 ind:imp:1s;ind:imp:2s; +insistait insister ver 42.16 67.03 1.11 7.97 ind:imp:3s; +insistance insistance nom f s 1.53 14.59 1.52 14.53 +insistances insistance nom f p 1.53 14.59 0.01 0.07 +insistant insister ver 42.16 67.03 0.64 3.45 par:pre; +insistante insistant adj f s 0.68 5.2 0.13 2.57 +insistantes insistant adj f p 0.68 5.2 0.01 0.54 +insistants insistant adj m p 0.68 5.2 0.19 0.68 +insiste insister ver 42.16 67.03 17.5 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insistent insister ver 42.16 67.03 0.52 0.68 ind:pre:3p; +insister insister ver 42.16 67.03 6.09 9.19 inf; +insistera insister ver 42.16 67.03 0.03 0.07 ind:fut:3s; +insisterai insister ver 42.16 67.03 0.28 0.07 ind:fut:1s; +insisteraient insister ver 42.16 67.03 0.14 0 cnd:pre:3p; +insisterais insister ver 42.16 67.03 0.17 0 cnd:pre:1s; +insisterait insister ver 42.16 67.03 0.08 0.07 cnd:pre:3s; +insisteras insister ver 42.16 67.03 0.01 0 ind:fut:2s; +insisterons insister ver 42.16 67.03 0.02 0.07 ind:fut:1p; +insistes insister ver 42.16 67.03 2 0.47 ind:pre:2s; +insistez insister ver 42.16 67.03 5.11 1.22 imp:pre:2p;ind:pre:2p; +insistiez insister ver 42.16 67.03 0.02 0.07 ind:imp:2p; +insistions insister ver 42.16 67.03 0 0.07 ind:imp:1p; +insistons insister ver 42.16 67.03 0.27 0.2 imp:pre:1p;ind:pre:1p; +insistât insister ver 42.16 67.03 0 0.07 sub:imp:3s; +insistèrent insister ver 42.16 67.03 0 0.27 ind:pas:3p; +insisté insister ver m s 42.16 67.03 7.75 9.86 par:pas; +insociable insociable adj s 0.02 0.2 0.02 0.2 +insolant insoler ver 0 0.2 0 0.07 par:pre; +insolation insolation nom f s 0.56 1.62 0.55 1.35 +insolations insolation nom f p 0.56 1.62 0.01 0.27 +insolemment insolemment adv 0.14 2.03 0.14 2.03 +insolence insolence nom f s 2.75 9.8 2.69 8.78 +insolences insolence nom f p 2.75 9.8 0.06 1.01 +insolent insolent adj m s 5.88 9.12 3.48 3.92 +insolente insolent adj f s 5.88 9.12 2.23 3.24 +insolentes insolent adj f p 5.88 9.12 0.03 0.47 +insolents insolent nom m p 1.31 0.88 0.16 0.2 +insolite insolite adj s 2.9 18.99 2.24 15.81 +insolitement insolitement adv 0 0.07 0 0.07 +insolites insolite adj p 2.9 18.99 0.66 3.18 +insoluble insoluble adj s 0.69 2.16 0.5 1.28 +insolubles insoluble adj p 0.69 2.16 0.19 0.88 +insolvable insolvable adj m s 0.14 0.07 0.12 0 +insolvables insolvable adj m p 0.14 0.07 0.02 0.07 +insolé insoler ver m s 0 0.2 0 0.07 par:pas; +insomniaque insomniaque adj s 0.77 0.95 0.62 0.68 +insomniaques insomniaque nom p 0.28 0.54 0.23 0.14 +insomnie insomnie nom f s 3.69 8.24 2.55 6.08 +insomnies insomnie nom f p 3.69 8.24 1.14 2.16 +insomnieuse insomnieux nom f s 0 0.27 0 0.07 +insomnieux insomnieux nom m 0 0.27 0 0.2 +insondable insondable adj s 0.95 4.32 0.38 3.58 +insondablement insondablement adv 0 0.14 0 0.14 +insondables insondable adj p 0.95 4.32 0.58 0.74 +insonore insonore adj m s 0.27 0.34 0.27 0.34 +insonorisation insonorisation nom f s 0.02 0.07 0.02 0.07 +insonoriser insonoriser ver 0.58 0.47 0.05 0.14 inf; +insonorisé insonoriser ver m s 0.58 0.47 0.32 0 par:pas; +insonorisée insonoriser ver f s 0.58 0.47 0.12 0.34 par:pas; +insonorisées insonoriser ver f p 0.58 0.47 0.03 0 par:pas; +insonorisés insonoriser ver m p 0.58 0.47 0.07 0 par:pas; +insonorité insonorité nom f s 0 0.07 0 0.07 +insortable insortable adj s 0.01 0.07 0.01 0 +insortables insortable adj p 0.01 0.07 0 0.07 +insouciance insouciance nom f s 1.15 7.91 1.15 7.91 +insouciant insouciant adj m s 3.27 6.55 1.75 2.16 +insouciante insouciant adj f s 3.27 6.55 0.58 2.7 +insouciantes insouciant adj f p 3.27 6.55 0.33 0.34 +insouciants insouciant adj m p 3.27 6.55 0.61 1.35 +insoucieuse insoucieux adj f s 0.04 1.28 0 0.27 +insoucieusement insoucieusement adv 0 0.07 0 0.07 +insoucieux insoucieux adj m 0.04 1.28 0.04 1.01 +insoulevables insoulevable adj p 0 0.07 0 0.07 +insoumis insoumis nom m 0.36 0.88 0.2 0.81 +insoumise insoumis adj f s 0.37 1.08 0.2 0.14 +insoumission insoumission nom f s 0.03 0.81 0.03 0.81 +insoupçonnable insoupçonnable adj s 0.24 1.62 0.23 0.88 +insoupçonnables insoupçonnable adj p 0.24 1.62 0.01 0.74 +insoupçonné insoupçonné adj m s 0.16 2.57 0.04 0.47 +insoupçonnée insoupçonné adj f s 0.16 2.57 0.03 0.88 +insoupçonnées insoupçonné adj f p 0.16 2.57 0.06 0.68 +insoupçonnés insoupçonné adj m p 0.16 2.57 0.04 0.54 +insoutenable insoutenable adj s 1.04 4.86 0.88 4.39 +insoutenables insoutenable adj p 1.04 4.86 0.16 0.47 +inspecta inspecter ver 7.54 13.99 0.02 1.28 ind:pas:3s; +inspectai inspecter ver 7.54 13.99 0.01 0.54 ind:pas:1s; +inspectaient inspecter ver 7.54 13.99 0.01 0.41 ind:imp:3p; +inspectais inspecter ver 7.54 13.99 0.04 0.2 ind:imp:1s; +inspectait inspecter ver 7.54 13.99 0.04 1.55 ind:imp:3s; +inspectant inspecter ver 7.54 13.99 0.09 0.95 par:pre; +inspecte inspecter ver 7.54 13.99 1.17 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inspectent inspecter ver 7.54 13.99 0.06 0.27 ind:pre:3p; +inspecter inspecter ver 7.54 13.99 3.61 5.14 inf; +inspectera inspecter ver 7.54 13.99 0.07 0 ind:fut:3s; +inspecterais inspecter ver 7.54 13.99 0.01 0.07 cnd:pre:1s; +inspecterez inspecter ver 7.54 13.99 0.01 0 ind:fut:2p; +inspecteront inspecter ver 7.54 13.99 0.03 0 ind:fut:3p; +inspectes inspecter ver 7.54 13.99 0.04 0.07 ind:pre:2s; +inspecteur inspecteur nom m s 69.77 19.66 64.12 15.74 +inspecteurs inspecteur nom m p 69.77 19.66 4.99 3.92 +inspectez inspecter ver 7.54 13.99 0.41 0 imp:pre:2p;ind:pre:2p; +inspectiez inspecter ver 7.54 13.99 0.02 0 ind:imp:2p; +inspection inspection nom f s 7.8 9.39 6.97 8.18 +inspections inspection nom f p 7.8 9.39 0.83 1.22 +inspectons inspecter ver 7.54 13.99 0.08 0.07 imp:pre:1p;ind:pre:1p; +inspectrice inspecteur nom f s 69.77 19.66 0.67 0 +inspectèrent inspecter ver 7.54 13.99 0 0.07 ind:pas:3p; +inspecté inspecter ver m s 7.54 13.99 1.29 1.55 par:pas; +inspectée inspecter ver f s 7.54 13.99 0.18 0.2 par:pas; +inspectées inspecter ver f p 7.54 13.99 0.15 0 par:pas; +inspectés inspecter ver m p 7.54 13.99 0.06 0.14 par:pas; +inspira inspirer ver 26.56 45 0.11 2.23 ind:pas:3s; +inspirai inspirer ver 26.56 45 0 0.07 ind:pas:1s; +inspiraient inspirer ver 26.56 45 0.08 3.04 ind:imp:3p; +inspirais inspirer ver 26.56 45 0.11 0.34 ind:imp:1s;ind:imp:2s; +inspirait inspirer ver 26.56 45 0.86 10.81 ind:imp:3s; +inspirant inspirer ver 26.56 45 0.6 2.43 par:pre; +inspirante inspirant adj f s 0.28 0.47 0.11 0 +inspirantes inspirant adj f p 0.28 0.47 0.01 0.27 +inspirants inspirant adj m p 0.28 0.47 0 0.07 +inspirateur inspirateur nom m s 0.13 1.08 0.03 0.61 +inspirateurs inspirateur nom m p 0.13 1.08 0 0.14 +inspiration inspiration nom f s 7.38 18.04 7.04 17.16 +inspirations inspiration nom f p 7.38 18.04 0.34 0.88 +inspiratoire inspiratoire adj m s 0 0.07 0 0.07 +inspiratrice inspirateur nom f s 0.13 1.08 0.08 0.27 +inspiratrices inspirateur nom f p 0.13 1.08 0.02 0.07 +inspire inspirer ver 26.56 45 9.34 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +inspirent inspirer ver 26.56 45 0.94 1.49 ind:pre:3p; +inspirer inspirer ver 26.56 45 3.21 5.95 inf; +inspirera inspirer ver 26.56 45 0.2 0.34 ind:fut:3s; +inspireraient inspirer ver 26.56 45 0 0.07 cnd:pre:3p; +inspirerait inspirer ver 26.56 45 0.1 0.47 cnd:pre:3s; +inspireras inspirer ver 26.56 45 0 0.14 ind:fut:2s; +inspireront inspirer ver 26.56 45 0.01 0.07 ind:fut:3p; +inspires inspirer ver 26.56 45 0.47 0.07 ind:pre:2s; +inspirez inspirer ver 26.56 45 1.79 0.27 imp:pre:2p;ind:pre:2p; +inspiriez inspirer ver 26.56 45 0.01 0 ind:imp:2p; +inspirions inspirer ver 26.56 45 0 0.07 ind:imp:1p; +inspirât inspirer ver 26.56 45 0 0.2 sub:imp:3s; +inspirèrent inspirer ver 26.56 45 0.02 0.34 ind:pas:3p; +inspiré inspirer ver m s 26.56 45 5.89 5.47 par:pas; +inspirée inspirer ver f s 26.56 45 1.55 1.76 par:pas; +inspirées inspirer ver f p 26.56 45 0.56 0.81 par:pas; +inspirés inspirer ver m p 26.56 45 0.71 1.76 par:pas; +instabilité instabilité nom f s 0.93 0.81 0.93 0.81 +instable instable adj s 5 4.93 4.2 3.92 +instables instable adj p 5 4.93 0.8 1.01 +installa installer ver 70.76 162.23 0.27 16.35 ind:pas:3s; +installai installer ver 70.76 162.23 0.02 2.09 ind:pas:1s; +installaient installer ver 70.76 162.23 0.12 3.38 ind:imp:3p; +installais installer ver 70.76 162.23 0.44 1.22 ind:imp:1s;ind:imp:2s; +installait installer ver 70.76 162.23 0.69 11.49 ind:imp:3s; +installant installer ver 70.76 162.23 0.22 2.16 par:pre; +installasse installer ver 70.76 162.23 0 0.07 sub:imp:1s; +installateur installateur nom m s 0.07 0 0.07 0 +installation installation nom f s 6.75 12.57 4.16 9.8 +installations installation nom f p 6.75 12.57 2.59 2.77 +installe installer ver 70.76 162.23 12.89 15.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +installent installer ver 70.76 162.23 1.38 2.97 ind:pre:3p; +installer installer ver 70.76 162.23 22.76 29.73 inf;; +installera installer ver 70.76 162.23 1.01 0.88 ind:fut:3s; +installerai installer ver 70.76 162.23 0.63 0.54 ind:fut:1s; +installeraient installer ver 70.76 162.23 0.1 0.14 cnd:pre:3p; +installerais installer ver 70.76 162.23 0.23 0.54 cnd:pre:1s;cnd:pre:2s; +installerait installer ver 70.76 162.23 0.29 0.68 cnd:pre:3s; +installeras installer ver 70.76 162.23 0.29 0.07 ind:fut:2s; +installerez installer ver 70.76 162.23 0.14 0 ind:fut:2p; +installerions installer ver 70.76 162.23 0.1 0.07 cnd:pre:1p; +installerons installer ver 70.76 162.23 0.19 0.14 ind:fut:1p; +installeront installer ver 70.76 162.23 0.23 0.27 ind:fut:3p; +installes installer ver 70.76 162.23 1.39 0.34 ind:pre:2s; +installeur installeur nom m s 0 0.07 0 0.07 +installez installer ver 70.76 162.23 6.66 0.61 imp:pre:2p;ind:pre:2p; +installiez installer ver 70.76 162.23 0.1 0 ind:imp:2p; +installions installer ver 70.76 162.23 0.03 1.22 ind:imp:1p; +installons installer ver 70.76 162.23 0.6 0.61 imp:pre:1p;ind:pre:1p; +installâmes installer ver 70.76 162.23 0 1.62 ind:pas:1p; +installât installer ver 70.76 162.23 0 0.2 sub:imp:3s; +installèrent installer ver 70.76 162.23 0.09 3.99 ind:pas:3p; +installé installer ver m s 70.76 162.23 11.02 33.51 par:pas; +installée installer ver f s 70.76 162.23 4.78 14.26 par:pas; +installées installer ver f p 70.76 162.23 0.74 3.18 par:pas; +installés installer ver m p 70.76 162.23 3.34 14.05 par:pas; +instamment instamment adv 0.12 1.35 0.12 1.35 +instance instance nom f s 2.12 4.59 1.62 1.76 +instances instance nom f p 2.12 4.59 0.5 2.84 +instant instant nom m s 189.41 340.2 182.14 285.88 +instantané instantané adj m s 2.31 2.97 1.22 1.22 +instantanée instantané adj f s 2.31 2.97 0.98 1.35 +instantanées instantané adj f p 2.31 2.97 0.03 0.2 +instantanéité instantanéité nom f s 0 0.07 0 0.07 +instantanément instantanément adv 2.15 7.57 2.15 7.57 +instantanés instantané nom m p 0.33 1.01 0.12 0.41 +instante instant adj f s 3.55 18.78 0 0.2 +instantes instant adj f p 3.55 18.78 0.01 0.47 +instants instant nom m p 189.41 340.2 7.27 54.32 +instaura instaurer ver 2.63 4.66 0.26 0.34 ind:pas:3s; +instaurai instaurer ver 2.63 4.66 0 0.07 ind:pas:1s; +instaurait instaurer ver 2.63 4.66 0 0.47 ind:imp:3s; +instaurant instaurer ver 2.63 4.66 0 0.14 par:pre; +instauration instauration nom f s 0.02 0.27 0.02 0.27 +instauratrice instaurateur nom f s 0 0.07 0 0.07 +instaure instaurer ver 2.63 4.66 0.16 0.41 ind:pre:1s;ind:pre:3s; +instaurer instaurer ver 2.63 4.66 1.31 1.35 inf; +instaurera instaurer ver 2.63 4.66 0.02 0 ind:fut:3s; +instaurerions instaurer ver 2.63 4.66 0 0.07 cnd:pre:1p; +instaurions instaurer ver 2.63 4.66 0 0.07 ind:imp:1p; +instaurèrent instaurer ver 2.63 4.66 0 0.07 ind:pas:3p; +instauré instaurer ver m s 2.63 4.66 0.63 1.22 par:pas; +instaurée instaurer ver f s 2.63 4.66 0.21 0.14 par:pas; +instaurées instaurer ver f p 2.63 4.66 0.02 0.14 par:pas; +instaurés instaurer ver m p 2.63 4.66 0.02 0.2 par:pas; +instigateur instigateur nom m s 1.04 1.01 0.88 0.47 +instigateurs instigateur nom m p 1.04 1.01 0.07 0.34 +instigation instigation nom f s 0.14 0.88 0.14 0.88 +instigatrice instigateur nom f s 1.04 1.01 0.09 0.2 +instilla instiller ver 0.24 0.74 0 0.14 ind:pas:3s; +instille instiller ver 0.24 0.74 0 0.07 ind:pre:3s; +instiller instiller ver 0.24 0.74 0.2 0.2 inf; +instillera instiller ver 0.24 0.74 0 0.07 ind:fut:3s; +instillé instiller ver m s 0.24 0.74 0.04 0.2 par:pas; +instillées instiller ver f p 0.24 0.74 0 0.07 par:pas; +instinct instinct nom m s 16.95 35.27 14.27 31.01 +instinctif instinctif adj m s 1.34 9.59 0.72 4.59 +instinctifs instinctif adj m p 1.34 9.59 0.01 0.34 +instinctive instinctif adj f s 1.34 9.59 0.59 4.39 +instinctivement instinctivement adv 1.5 9.46 1.5 9.46 +instinctives instinctif adj f p 1.34 9.59 0.01 0.27 +instinctivo instinctivo adv 0 0.07 0 0.07 +instincts instinct nom m p 16.95 35.27 2.69 4.26 +instinctuel instinctuel adj m s 0.01 0 0.01 0 +instit instit nom s 1.09 1.49 0.98 1.15 +instits instit nom p 1.09 1.49 0.11 0.34 +institua instituer ver 0.41 6.42 0 0.2 ind:pas:3s; +instituai instituer ver 0.41 6.42 0 0.14 ind:pas:1s; +instituaient instituer ver 0.41 6.42 0 0.07 ind:imp:3p; +instituait instituer ver 0.41 6.42 0 0.54 ind:imp:3s; +instituant instituer ver 0.41 6.42 0 0.68 par:pre; +institue instituer ver 0.41 6.42 0.11 0.14 ind:pre:3s; +instituent instituer ver 0.41 6.42 0 0.07 ind:pre:3p; +instituer instituer ver 0.41 6.42 0.05 1.69 inf; +instituons instituer ver 0.41 6.42 0.01 0 imp:pre:1p; +institut institut nom m s 5.49 4.53 5.37 3.85 +instituteur instituteur nom m s 11.8 23.31 7.29 13.18 +instituteurs instituteur nom m p 11.8 23.31 0.79 2.91 +institution institution nom f s 9.41 17.23 6.23 7.57 +institutionnalisé institutionnaliser ver m s 0.03 0 0.03 0 par:pas; +institutionnel institutionnel adj m s 0.5 0.27 0.17 0.14 +institutionnelle institutionnel adj f s 0.5 0.27 0.3 0.14 +institutionnels institutionnel adj m p 0.5 0.27 0.03 0 +institutions institution nom f p 9.41 17.23 3.19 9.66 +institutrice instituteur nom f s 11.8 23.31 3.42 6.08 +institutrices instituteur nom f p 11.8 23.31 0.3 1.15 +instituts institut nom m p 5.49 4.53 0.12 0.68 +instituèrent instituer ver 0.41 6.42 0 0.07 ind:pas:3p; +institué instituer ver m s 0.41 6.42 0.19 2.3 par:pas; +instituée instituer ver f s 0.41 6.42 0.01 0.41 par:pas; +instituées instituer ver f p 0.41 6.42 0.02 0.14 par:pas; +institués instituer ver m p 0.41 6.42 0.01 0 par:pas; +instructeur instructeur nom m s 1.6 2.09 1.12 1.22 +instructeurs instructeur nom m p 1.6 2.09 0.48 0.88 +instructif instructif adj m s 2.08 2.91 1.54 1.55 +instructifs instructif adj m p 2.08 2.91 0.19 0.14 +instruction instruction nom f s 22.37 30.27 6.91 16.08 +instructions instruction nom f p 22.37 30.27 15.46 14.19 +instructive instructif adj f s 2.08 2.91 0.14 0.88 +instructives instructif adj f p 2.08 2.91 0.22 0.34 +instruira instruire ver 5.85 11.96 0.16 0.07 ind:fut:3s; +instruirai instruire ver 5.85 11.96 0.02 0 ind:fut:1s; +instruiraient instruire ver 5.85 11.96 0 0.07 cnd:pre:3p; +instruirait instruire ver 5.85 11.96 0.02 0.41 cnd:pre:3s; +instruire instruire ver 5.85 11.96 2.49 5.81 inf; +instruis instruire ver 5.85 11.96 0.39 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +instruisaient instruire ver 5.85 11.96 0 0.14 ind:imp:3p; +instruisais instruire ver 5.85 11.96 0.01 0.2 ind:imp:1s; +instruisait instruire ver 5.85 11.96 0 0.41 ind:imp:3s; +instruisant instruire ver 5.85 11.96 0.04 0.07 par:pre; +instruise instruire ver 5.85 11.96 0.04 0.27 sub:pre:1s;sub:pre:3s; +instruisent instruire ver 5.85 11.96 0.12 0.47 ind:pre:3p; +instruisez instruire ver 5.85 11.96 0.08 0 imp:pre:2p;ind:pre:2p; +instruisirent instruire ver 5.85 11.96 0 0.07 ind:pas:3p; +instruisis instruire ver 5.85 11.96 0.01 0 ind:pas:1s; +instruisit instruire ver 5.85 11.96 0.1 0.41 ind:pas:3s; +instruisîmes instruire ver 5.85 11.96 0 0.07 ind:pas:1p; +instruit instruit adj m s 3.58 3.31 2.37 1.69 +instruite instruire ver f s 5.85 11.96 0.28 0.61 par:pas; +instruites instruit adj f p 3.58 3.31 0.11 0.2 +instruits instruit adj m p 3.58 3.31 1.02 1.01 +instrument instrument nom m s 22.67 36.08 14.59 21.62 +instrumentais instrumenter ver 0.01 0.2 0 0.07 ind:imp:1s; +instrumental instrumental adj m s 0.2 0.41 0.16 0.07 +instrumentale instrumental adj f s 0.2 0.41 0.04 0.34 +instrumentation instrumentation nom f s 0.23 0.07 0.23 0.07 +instrumentaux instrumental adj m p 0.2 0.41 0.01 0 +instrumenter instrumenter ver 0.01 0.2 0.01 0.14 inf; +instrumentiste instrumentiste nom s 0.03 0.27 0.01 0.14 +instrumentistes instrumentiste nom p 0.03 0.27 0.02 0.14 +instruments instrument nom m p 22.67 36.08 8.08 14.46 +insu insu nom m s 3.74 10.2 3.74 10.2 +insubmersible insubmersible adj m s 0.11 0.2 0.09 0.14 +insubmersibles insubmersible adj f p 0.11 0.2 0.02 0.07 +insubordination insubordination nom f s 1.17 0.74 1.16 0.74 +insubordinations insubordination nom f p 1.17 0.74 0.01 0 +insubordonné insubordonné adj m s 0.14 0 0.13 0 +insubordonnée insubordonné adj f s 0.14 0 0.01 0 +insuccès insuccès nom m 0.02 0.2 0.02 0.2 +insuffisamment insuffisamment adv 0.03 0.68 0.03 0.68 +insuffisance insuffisance nom f s 1.4 3.85 1.2 2.5 +insuffisances insuffisance nom f p 1.4 3.85 0.2 1.35 +insuffisant insuffisant adj m s 3.45 5.54 1.74 2.57 +insuffisante insuffisant adj f s 3.45 5.54 0.79 1.08 +insuffisantes insuffisant adj f p 3.45 5.54 0.42 0.74 +insuffisants insuffisant adj m p 3.45 5.54 0.51 1.15 +insufflaient insuffler ver 0.89 1.62 0 0.07 ind:imp:3p; +insufflait insuffler ver 0.89 1.62 0.03 0.2 ind:imp:3s; +insufflant insuffler ver 0.89 1.62 0.03 0 par:pre; +insufflateur insufflateur nom m s 0 0.07 0 0.07 +insuffle insuffler ver 0.89 1.62 0.1 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insufflent insuffler ver 0.89 1.62 0 0.07 ind:pre:3p; +insuffler insuffler ver 0.89 1.62 0.53 0.74 inf; +insufflera insuffler ver 0.89 1.62 0 0.07 ind:fut:3s; +insufflé insuffler ver m s 0.89 1.62 0.18 0.27 par:pas; +insufflée insuffler ver f s 0.89 1.62 0.01 0.07 par:pas; +insufflées insuffler ver f p 0.89 1.62 0.01 0 par:pas; +insula insula nom f s 0.01 0 0.01 0 +insulaire insulaire adj s 0.09 1.01 0.03 0.81 +insulaires insulaire adj p 0.09 1.01 0.06 0.2 +insularité insularité nom f s 0 0.07 0 0.07 +insulation insulation nom f s 0.01 0 0.01 0 +insuline insuline nom f s 1.45 1.15 1.45 1.15 +insulinique insulinique adj m s 0.01 0.41 0.01 0.41 +insulta insulter ver 26.93 18.31 0.01 0.61 ind:pas:3s; +insultaient insulter ver 26.93 18.31 0.28 0.74 ind:imp:3p; +insultais insulter ver 26.93 18.31 0.09 0.34 ind:imp:1s;ind:imp:2s; +insultait insulter ver 26.93 18.31 0.2 1.35 ind:imp:3s; +insultant insultant adj m s 1.9 3.24 1.38 1.62 +insultante insultant adj f s 1.9 3.24 0.41 0.68 +insultantes insultant adj f p 1.9 3.24 0.06 0.2 +insultants insultant adj m p 1.9 3.24 0.05 0.74 +insulte insulter ver 26.93 18.31 6.13 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insultent insulter ver 26.93 18.31 0.88 0.81 ind:pre:3p;sub:pre:3p; +insulter insulter ver 26.93 18.31 6.76 6.42 inf;; +insulterai insulter ver 26.93 18.31 0.04 0 ind:fut:1s; +insulterais insulter ver 26.93 18.31 0.06 0.2 cnd:pre:1s;cnd:pre:2s; +insulteras insulter ver 26.93 18.31 0.01 0 ind:fut:2s; +insultes insulte nom f p 10.49 15.88 5.25 8.92 +insulteur insulteur nom m s 0 0.27 0 0.2 +insulteurs insulteur nom m p 0 0.27 0 0.07 +insultez insulter ver 26.93 18.31 2.52 0.27 imp:pre:2p;ind:pre:2p; +insultions insulter ver 26.93 18.31 0 0.07 ind:imp:1p; +insultons insulter ver 26.93 18.31 0.03 0 imp:pre:1p;ind:pre:1p; +insulté insulter ver m s 26.93 18.31 5.95 1.62 par:pas; +insultée insulter ver f s 26.93 18.31 1.28 0.54 par:pas; +insultées insulter ver f p 26.93 18.31 0 0.07 par:pas; +insultés insulter ver m p 26.93 18.31 0.37 0.34 par:pas; +insupportable insupportable adj s 11.42 25.74 11.01 22.23 +insupportablement insupportablement adv 0.25 0.41 0.25 0.41 +insupportables insupportable adj p 11.42 25.74 0.41 3.51 +insupportaient insupporter ver 0.43 0.27 0 0.14 ind:imp:3p; +insupporte insupporter ver 0.43 0.27 0.29 0.07 ind:pre:3s; +insupportent insupporter ver 0.43 0.27 0.14 0.07 ind:pre:3p; +insurge insurger ver 0.57 3.58 0.1 0.88 ind:pre:1s;ind:pre:3s; +insurgea insurger ver 0.57 3.58 0 0.41 ind:pas:3s; +insurgeai insurger ver 0.57 3.58 0 0.07 ind:pas:1s; +insurgeaient insurger ver 0.57 3.58 0 0.14 ind:imp:3p; +insurgeais insurger ver 0.57 3.58 0 0.2 ind:imp:1s; +insurgeait insurger ver 0.57 3.58 0.01 0.2 ind:imp:3s; +insurgeant insurger ver 0.57 3.58 0 0.07 par:pre; +insurgent insurger ver 0.57 3.58 0.01 0.14 ind:pre:3p; +insurgeons insurger ver 0.57 3.58 0 0.07 ind:pre:1p; +insurger insurger ver 0.57 3.58 0.42 0.54 inf; +insurgera insurger ver 0.57 3.58 0 0.07 ind:fut:3s; +insurgerai insurger ver 0.57 3.58 0 0.07 ind:fut:1s; +insurgerait insurger ver 0.57 3.58 0.02 0.14 cnd:pre:3s; +insurgeât insurger ver 0.57 3.58 0 0.07 sub:imp:3s; +insurgèrent insurger ver 0.57 3.58 0 0.07 ind:pas:3p; +insurgé insurger ver m s 0.57 3.58 0.01 0.2 par:pas; +insurgée insurgé nom f s 0.33 2.91 0.01 0 +insurgés insurgé nom m p 0.33 2.91 0.31 2.7 +insurmontable insurmontable adj s 0.77 2.77 0.64 2.36 +insurmontables insurmontable adj p 0.77 2.77 0.14 0.41 +insurpassable insurpassable adj s 0.16 0.54 0.16 0.54 +insurpassé insurpassé adj m s 0 0.07 0 0.07 +insurrection insurrection nom f s 1.4 3.72 1.39 3.51 +insurrectionnel insurrectionnel adj m s 0.01 0.34 0 0.14 +insurrectionnelle insurrectionnel adj f s 0.01 0.34 0.01 0.2 +insurrections insurrection nom f p 1.4 3.72 0.01 0.2 +insère insérer ver 2.92 4.26 0.57 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insèrent insérer ver 2.92 4.26 0.05 0.14 ind:pre:3p; +insécable insécable adj s 0 0.07 0 0.07 +insécurité insécurité nom f s 0.92 1.49 0.86 1.42 +insécurités insécurité nom f p 0.92 1.49 0.05 0.07 +inséminateur inséminateur nom m s 0.27 0 0.27 0 +insémination insémination nom f s 0.67 0.81 0.67 0.41 +inséminations insémination nom f p 0.67 0.81 0 0.41 +inséminer inséminer ver 0.5 0.34 0.17 0.07 inf; +inséminé inséminer ver m s 0.5 0.34 0.02 0 par:pas; +inséminée inséminer ver f s 0.5 0.34 0.31 0.14 par:pas; +inséminés inséminer ver m p 0.5 0.34 0 0.14 par:pas; +inséparabilité inséparabilité nom f s 0 0.07 0 0.07 +inséparable inséparable adj s 3.08 6.28 0.34 3.18 +inséparablement inséparablement adv 0 0.14 0 0.14 +inséparables inséparable adj p 3.08 6.28 2.73 3.11 +inséra insérer ver 2.92 4.26 0 0.07 ind:pas:3s; +inséraient insérer ver 2.92 4.26 0 0.07 ind:imp:3p; +insérait insérer ver 2.92 4.26 0.03 0.47 ind:imp:3s; +insérant insérer ver 2.92 4.26 0.06 0.34 par:pre; +insérer insérer ver 2.92 4.26 1.01 1.69 inf; +insérera insérer ver 2.92 4.26 0.01 0 ind:fut:3s; +insérerait insérer ver 2.92 4.26 0 0.07 cnd:pre:3s; +insérerons insérer ver 2.92 4.26 0.01 0 ind:fut:1p; +insérez insérer ver 2.92 4.26 0.39 0 imp:pre:2p;ind:pre:2p; +insérons insérer ver 2.92 4.26 0.01 0 imp:pre:1p; +insérèrent insérer ver 2.92 4.26 0 0.07 ind:pas:3p; +inséré insérer ver m s 2.92 4.26 0.63 0.34 par:pas; +insérée insérer ver f s 2.92 4.26 0.09 0.27 par:pas; +insérées insérer ver f p 2.92 4.26 0.02 0.14 par:pas; +insérés insérer ver m p 2.92 4.26 0.02 0.27 par:pas; +intact intact adj m s 11.89 31.89 6.21 11.69 +intacte intact adj f s 11.89 31.89 3.51 11.35 +intactes intact adj f p 11.89 31.89 0.88 4.19 +intacts intact adj m p 11.89 31.89 1.29 4.66 +intaille intaille nom f s 0 0.2 0 0.14 +intailles intaille nom f p 0 0.2 0 0.07 +intangibilité intangibilité nom f s 0.01 0.07 0.01 0.07 +intangible intangible adj s 0.09 0.68 0.05 0.47 +intangibles intangible adj p 0.09 0.68 0.04 0.2 +intarissable intarissable adj s 0.45 3.85 0.44 2.97 +intarissablement intarissablement adv 0 0.27 0 0.27 +intarissables intarissable adj p 0.45 3.85 0.01 0.88 +intellect intellect nom m s 1.14 0.95 1.14 0.95 +intellectualisation intellectualisation nom f s 0.01 0 0.01 0 +intellectualise intellectualiser ver 0 0.2 0 0.07 ind:pre:3s; +intellectualiser intellectualiser ver 0 0.2 0 0.07 inf; +intellectualisme intellectualisme nom m s 0.01 0.2 0.01 0.2 +intellectualiste intellectualiste nom s 0 0.07 0 0.07 +intellectualisées intellectualiser ver f p 0 0.2 0 0.07 par:pas; +intellectuel intellectuel adj m s 6.52 15.2 2.47 4.59 +intellectuel_phare intellectuel_phare nom m s 0 0.07 0 0.07 +intellectuelle intellectuel adj f s 6.52 15.2 2.04 6.08 +intellectuellement intellectuellement adv 0.97 0.81 0.97 0.81 +intellectuelles intellectuel adj f p 6.52 15.2 0.66 2.77 +intellectuels intellectuel nom m p 5.09 15.27 2.42 8.58 +intellige intelliger ver 0 0.07 0 0.07 ind:pre:1s; +intelligemment intelligemment adv 1.28 1.49 1.28 1.49 +intelligence intelligence nom f s 18.41 37.16 18.27 36.22 +intelligences intelligence nom f p 18.41 37.16 0.14 0.95 +intelligent intelligent adj m s 57.51 35.68 31.92 19.32 +intelligente intelligent adj f s 57.51 35.68 17.42 8.45 +intelligentes intelligent adj f p 57.51 35.68 2.53 1.82 +intelligents intelligent adj m p 57.51 35.68 5.65 6.08 +intelligentsia intelligentsia nom f s 0.44 0.95 0.44 0.95 +intelligibilité intelligibilité nom f s 0.01 0.27 0.01 0.27 +intelligible intelligible adj s 0.06 1.96 0.05 1.69 +intelligiblement intelligiblement adv 0.01 0.2 0.01 0.2 +intelligibles intelligible adj p 0.06 1.96 0.01 0.27 +intello intello nom s 3.11 1.08 1.96 0.34 +intellos intello nom p 3.11 1.08 1.16 0.74 +intempestif intempestif adj m s 0.38 2.84 0.15 0.74 +intempestifs intempestif adj m p 0.38 2.84 0.04 0.34 +intempestive intempestif adj f s 0.38 2.84 0.14 1.22 +intempestivement intempestivement adv 0 0.07 0 0.07 +intempestives intempestif adj f p 0.38 2.84 0.04 0.54 +intemporalité intemporalité nom f s 0 0.14 0 0.14 +intemporel intemporel adj m s 0.31 1.49 0.21 0.68 +intemporelle intemporel adj f s 0.31 1.49 0.07 0.74 +intemporelles intemporel adj f p 0.31 1.49 0.03 0.07 +intempérance intempérance nom f s 0.17 0.41 0.16 0.41 +intempérances intempérance nom f p 0.17 0.41 0.01 0 +intempérante intempérant adj f s 0.02 0 0.02 0 +intempéries intempérie nom f p 0.42 3.51 0.42 3.51 +intenable intenable adj s 0.91 3.31 0.83 2.97 +intenables intenable adj p 0.91 3.31 0.08 0.34 +intendance intendance nom f s 1.37 4.05 1.37 3.99 +intendances intendance nom f p 1.37 4.05 0 0.07 +intendant intendant nom m s 4.55 4.73 4.02 3.24 +intendante intendant nom f s 4.55 4.73 0.46 1.35 +intendants intendant nom m p 4.55 4.73 0.08 0.14 +intense intense adj s 8.45 22.57 7.2 20.27 +intenses intense adj p 8.45 22.57 1.25 2.3 +intensif intensif adj m s 3.5 1.55 1.02 0.47 +intensifia intensifier ver 1.22 1.28 0 0.07 ind:pas:3s; +intensifiaient intensifier ver 1.22 1.28 0.01 0.14 ind:imp:3p; +intensifiait intensifier ver 1.22 1.28 0.03 0.34 ind:imp:3s; +intensifiant intensifier ver 1.22 1.28 0.03 0.14 par:pre; +intensification intensification nom f s 0.02 0.14 0.02 0.14 +intensifie intensifier ver 1.22 1.28 0.18 0.2 imp:pre:2s;ind:pre:3s; +intensifient intensifier ver 1.22 1.28 0.27 0 ind:pre:3p; +intensifier intensifier ver 1.22 1.28 0.31 0.41 inf; +intensifiez intensifier ver 1.22 1.28 0.04 0 imp:pre:2p; +intensifié intensifier ver m s 1.22 1.28 0.2 0 par:pas; +intensifiée intensifier ver f s 1.22 1.28 0.04 0 par:pas; +intensifiées intensifier ver f p 1.22 1.28 0.11 0 par:pas; +intensifs intensif adj m p 3.5 1.55 1.75 0.14 +intension intension nom f s 0.04 0 0.04 0 +intensité intensité nom f s 3.11 13.24 3.11 13.18 +intensités intensité nom f p 3.11 13.24 0 0.07 +intensive intensif adj f s 3.5 1.55 0.66 0.95 +intensivement intensivement adv 0.14 0.14 0.14 0.14 +intensives intensif adj f p 3.5 1.55 0.07 0 +intensément intensément adv 0.87 8.58 0.87 8.58 +intenta intenter ver 1.34 0.68 0.01 0.07 ind:pas:3s; +intentait intenter ver 1.34 0.68 0 0.14 ind:imp:3s; +intente intenter ver 1.34 0.68 0.54 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intenter intenter ver 1.34 0.68 0.42 0.27 inf; +intentera intenter ver 1.34 0.68 0.03 0 ind:fut:3s; +intenterai intenter ver 1.34 0.68 0.04 0 ind:fut:1s; +intention intention nom f s 51.11 68.65 40 53.99 +intentionnalité intentionnalité nom f s 0.01 0 0.01 0 +intentionnel intentionnel adj m s 0.85 0.47 0.69 0.27 +intentionnelle intentionnel adj f s 0.85 0.47 0.15 0.14 +intentionnellement intentionnellement adv 1.04 0.81 1.04 0.81 +intentionnels intentionnel adj m p 0.85 0.47 0.01 0.07 +intentionné intentionné adj m s 0.43 1.22 0.27 0.2 +intentionnée intentionné adj f s 0.43 1.22 0.05 0.14 +intentionnées intentionné adj f p 0.43 1.22 0.02 0.2 +intentionnés intentionné adj m p 0.43 1.22 0.09 0.68 +intentions intention nom f p 51.11 68.65 11.12 14.66 +intenté intenter ver m s 1.34 0.68 0.12 0.07 par:pas; +intentée intenter ver f s 1.34 0.68 0.01 0 par:pas; +intentées intenter ver f p 1.34 0.68 0.01 0.07 par:pas; +intentés intenter ver m p 1.34 0.68 0.02 0.07 par:pas; +inter inter nom_sup m s 0.84 0.95 0.84 0.88 +inter_école inter_école nom f p 0.03 0 0.03 0 +interactif interactif adj m s 0.44 0 0.3 0 +interactifs interactif adj m p 0.44 0 0.07 0 +interaction interaction nom f s 0.92 0.2 0.76 0.14 +interactions interaction nom f p 0.92 0.2 0.16 0.07 +interactive interactif adj f s 0.44 0 0.06 0 +interactivité interactivité nom f s 0.05 0 0.05 0 +interagir interagir ver 0.3 0 0.17 0 inf; +interagis interagir ver 0.3 0 0.04 0 imp:pre:2s;ind:pre:2s; +interagissais interagir ver 0.3 0 0.01 0 ind:imp:1s; +interagissant interagir ver 0.3 0 0.03 0 par:pre; +interagit interagir ver 0.3 0 0.05 0 ind:pre:3s; +interallié interallié adj m s 0.02 2.97 0 2.43 +interalliée interallié adj f s 0.02 2.97 0.01 0.27 +interalliées interallié adj f p 0.02 2.97 0 0.14 +interalliés interallié adj m p 0.02 2.97 0.01 0.14 +interarmes interarmes adj f p 0.12 0.07 0.12 0.07 +interarmées interarmées adj m s 0.05 0.07 0.05 0.07 +intercalaient intercaler ver 0.2 1.82 0 0.14 ind:imp:3p; +intercalaire intercalaire adj m s 0 0.2 0 0.14 +intercalaires intercalaire adj m p 0 0.2 0 0.07 +intercalait intercaler ver 0.2 1.82 0.01 0.27 ind:imp:3s; +intercalant intercaler ver 0.2 1.82 0 0.27 par:pre; +intercale intercaler ver 0.2 1.82 0 0.41 ind:pre:1s;ind:pre:3s; +intercalent intercaler ver 0.2 1.82 0 0.07 ind:pre:3p; +intercaler intercaler ver 0.2 1.82 0.05 0.41 inf; +intercalera intercaler ver 0.2 1.82 0 0.07 ind:fut:3s; +intercalerai intercaler ver 0.2 1.82 0.01 0 ind:fut:1s; +intercalerez intercaler ver 0.2 1.82 0.1 0 ind:fut:2p; +intercalé intercaler ver m s 0.2 1.82 0.03 0 par:pas; +intercalée intercalé adj f s 0 0.2 0 0.07 +intercalées intercaler ver f p 0.2 1.82 0 0.14 par:pas; +intercalés intercaler ver m p 0.2 1.82 0 0.07 par:pas; +intercellulaire intercellulaire adj m s 0.01 0 0.01 0 +intercepta intercepter ver 6.64 3.65 0.01 0.47 ind:pas:3s; +interceptai intercepter ver 6.64 3.65 0 0.14 ind:pas:1s; +interceptais intercepter ver 6.64 3.65 0.01 0 ind:imp:1s; +interceptait intercepter ver 6.64 3.65 0.15 0.07 ind:imp:3s; +interceptant intercepter ver 6.64 3.65 0.03 0.07 par:pre; +intercepte intercepter ver 6.64 3.65 0.56 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interceptent intercepter ver 6.64 3.65 0.13 0.07 ind:pre:3p; +intercepter intercepter ver 6.64 3.65 1.81 1.28 inf; +interceptera intercepter ver 6.64 3.65 0.04 0 ind:fut:3s; +intercepterait intercepter ver 6.64 3.65 0.01 0 cnd:pre:3s; +intercepterez intercepter ver 6.64 3.65 0.01 0 ind:fut:2p; +intercepterons intercepter ver 6.64 3.65 0.04 0 ind:fut:1p; +intercepteur intercepteur nom m s 0.45 0 0.19 0 +intercepteurs intercepteur nom m p 0.45 0 0.26 0 +interceptez intercepter ver 6.64 3.65 0.69 0 imp:pre:2p;ind:pre:2p; +interception interception nom f s 1.2 0.27 1.1 0.2 +interceptions interception nom f p 1.2 0.27 0.09 0.07 +interceptèrent intercepter ver 6.64 3.65 0 0.07 ind:pas:3p; +intercepté intercepter ver m s 6.64 3.65 2.5 0.95 par:pas; +interceptée intercepter ver f s 6.64 3.65 0.15 0.07 par:pas; +interceptées intercepter ver f p 6.64 3.65 0.08 0 par:pas; +interceptés intercepter ver m p 6.64 3.65 0.41 0.2 par:pas; +intercesseur intercesseur nom m s 0 1.22 0 0.54 +intercesseurs intercesseur nom m p 0 1.22 0 0.68 +intercession intercession nom f s 0.2 1.01 0.2 1.01 +interchangeable interchangeable adj s 0.32 2.5 0.07 0.74 +interchangeables interchangeable adj p 0.32 2.5 0.24 1.76 +interchanger interchanger ver 0.13 0.14 0 0.14 inf; +interchangé interchanger ver m s 0.13 0.14 0.13 0 par:pas; +interclasse interclasse nom m s 0.03 0.07 0.01 0 +interclasses interclasse nom m p 0.03 0.07 0.01 0.07 +interclubs interclubs adj 0.01 0 0.01 0 +intercommunal intercommunal adj m s 0.01 0 0.01 0 +intercommunautaire intercommunautaire adj s 0.01 0 0.01 0 +intercommunication intercommunication nom f s 0.03 0 0.03 0 +interconnecté interconnecter ver m s 0.06 0 0.05 0 par:pas; +interconnectée interconnecter ver f s 0.06 0 0.01 0 par:pas; +interconnexion interconnexion nom f s 0.01 0 0.01 0 +intercontinental intercontinental adj m s 0.63 0.41 0.58 0.2 +intercontinentale intercontinental adj f s 0.63 0.41 0 0.07 +intercontinentales intercontinental adj f p 0.63 0.41 0 0.07 +intercontinentaux intercontinental adj m p 0.63 0.41 0.04 0.07 +intercostal intercostal adj m s 0.3 0.14 0.17 0 +intercostale intercostal adj f s 0.3 0.14 0.1 0.07 +intercostaux intercostal adj m p 0.3 0.14 0.03 0.07 +intercours intercours nom m 0 0.07 0 0.07 +intercourse intercourse nom f s 0.05 0.07 0.05 0.07 +interculturel interculturel adj m s 0.01 0.07 0 0.07 +interculturels interculturel adj m p 0.01 0.07 0.01 0 +intercède intercéder ver 0.63 0.68 0.04 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intercéda intercéder ver 0.63 0.68 0 0.14 ind:pas:3s; +intercédait intercéder ver 0.63 0.68 0.14 0.07 ind:imp:3s; +intercédant intercéder ver 0.63 0.68 0 0.07 par:pre; +intercéder intercéder ver 0.63 0.68 0.37 0.41 inf; +intercédera intercéder ver 0.63 0.68 0.02 0 ind:fut:3s; +intercéderai intercéder ver 0.63 0.68 0.03 0 ind:fut:1s; +intercédé intercéder ver m s 0.63 0.68 0.03 0 par:pas; +interdiction interdiction nom f s 3.11 6.76 3.02 5.95 +interdictions interdiction nom f p 3.11 6.76 0.09 0.81 +interdira interdire ver 63.72 54.39 0.41 0.07 ind:fut:3s; +interdirai interdire ver 63.72 54.39 0.15 0.07 ind:fut:1s; +interdiraient interdire ver 63.72 54.39 0.02 0.14 cnd:pre:3p; +interdirais interdire ver 63.72 54.39 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +interdirait interdire ver 63.72 54.39 0.21 0.47 cnd:pre:3s; +interdire interdire ver 63.72 54.39 4.38 5.95 inf; +interdirent interdire ver 63.72 54.39 0 0.2 ind:pas:3p; +interdis interdire ver 63.72 54.39 7.55 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s; +interdisaient interdire ver 63.72 54.39 0.18 1.69 ind:imp:3p; +interdisais interdire ver 63.72 54.39 0.1 0.14 ind:imp:1s;ind:imp:2s; +interdisait interdire ver 63.72 54.39 0.51 9.46 ind:imp:3s; +interdisant interdire ver 63.72 54.39 0.64 1.35 par:pre; +interdisciplinaires interdisciplinaire adj f p 0.01 0.07 0.01 0.07 +interdise interdire ver 63.72 54.39 0.34 0.34 sub:pre:1s;sub:pre:3s; +interdisent interdire ver 63.72 54.39 0.77 1.15 ind:pre:3p; +interdisez interdire ver 63.72 54.39 0.18 0.07 imp:pre:2p;ind:pre:2p; +interdisiez interdire ver 63.72 54.39 0.13 0 ind:imp:2p; +interdisons interdire ver 63.72 54.39 0.02 0 ind:pre:1p; +interdissent interdire ver 63.72 54.39 0.01 0.07 sub:imp:3p; +interdit interdire ver m s 63.72 54.39 42.13 24.12 ind:pre:3s;par:pas; +interdite interdit adj f s 10.31 15.34 3.63 3.72 +interdites interdire ver f p 63.72 54.39 0.67 1.08 par:pas; +interdits interdire ver m p 63.72 54.39 2.27 1.69 par:pas; +interdépartementaux interdépartemental adj m p 0.01 0 0.01 0 +interdépendance interdépendance nom f s 0.11 0.74 0.11 0.74 +interdépendant interdépendant adj m s 0.02 0 0.02 0 +interdît interdire ver 63.72 54.39 0 0.07 sub:imp:3s; +interethnique interethnique adj s 0 0.14 0 0.14 +interface interface nom f s 1.35 0 1.3 0 +interfacer interfacer ver 0.07 0 0.07 0 inf; +interfaces interface nom f p 1.35 0 0.04 0 +interfère interférer ver 2.75 0.68 0.8 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interfèrent interférer ver 2.75 0.68 0.14 0.14 ind:pre:3p; +interféraient interférer ver 2.75 0.68 0.03 0 ind:imp:3p; +interférait interférer ver 2.75 0.68 0.02 0 ind:imp:3s; +interférant interférer ver 2.75 0.68 0.07 0.07 par:pre; +interférence interférence nom f s 3 1.62 1.33 0.68 +interférences interférence nom f p 3 1.62 1.68 0.95 +interférent interférent adj m s 0.01 0 0.01 0 +interférer interférer ver 2.75 0.68 1.39 0.41 inf;; +interférez interférer ver 2.75 0.68 0.14 0 imp:pre:2p;ind:pre:2p; +interférométrie interférométrie nom f s 0.01 0 0.01 0 +interféron interféron nom m s 0.12 0 0.12 0 +interférons interférer ver 2.75 0.68 0.01 0 ind:pre:1p; +interféré interférer ver m s 2.75 0.68 0.16 0 par:pas; +intergalactique intergalactique adj s 1.07 0.14 0.85 0.14 +intergalactiques intergalactique adj p 1.07 0.14 0.22 0 +interglaciaire interglaciaire adj m s 0.14 0 0.14 0 +intergouvernemental intergouvernemental adj m s 0.03 0 0.01 0 +intergouvernementale intergouvernemental adj f s 0.03 0 0.01 0 +interjecter interjecter ver 0 0.07 0 0.07 inf; +interjection interjection nom f s 0.01 1.28 0.01 0.27 +interjections interjection nom f p 0.01 1.28 0 1.01 +interjeta interjeter ver 0.01 0.07 0 0.07 ind:pas:3s; +interjeter interjeter ver 0.01 0.07 0.01 0 inf; +interligne interligne nom m s 0.04 0.14 0.04 0 +interlignes interligne nom m p 0.04 0.14 0 0.14 +interlignés interligner ver m p 0 0.07 0 0.07 par:pas; +interlocuteur interlocuteur nom m s 1.28 14.73 0.98 10.27 +interlocuteurs interlocuteur nom m p 1.28 14.73 0.28 3.85 +interlocutoire interlocutoire adj f s 0.01 0.07 0.01 0 +interlocutoires interlocutoire adj p 0.01 0.07 0 0.07 +interlocutrice interlocuteur nom f s 1.28 14.73 0.01 0.41 +interlocutrices interlocuteur nom f p 1.28 14.73 0 0.2 +interlope interlope nom m s 0.03 0 0.03 0 +interlopes interlope adj m p 0 0.54 0 0.2 +interloque interloquer ver 0.04 1.62 0 0.27 ind:pre:1s;ind:pre:3s; +interloqué interloqué adj m s 0.02 3.11 0.02 1.62 +interloquée interloquer ver f s 0.04 1.62 0.01 0.47 par:pas; +interloquées interloqué adj f p 0.02 3.11 0 0.07 +interloqués interloquer ver m p 0.04 1.62 0.01 0.2 par:pas; +interlude interlude nom m s 0.3 0.34 0.29 0.27 +interludes interlude nom m p 0.3 0.34 0.01 0.07 +intermezzo intermezzo nom m s 0.1 0.07 0.1 0.07 +interminable interminable adj s 4.11 38.65 2.56 22.16 +interminablement interminablement adv 0.05 5.34 0.05 5.34 +interminables interminable adj p 4.11 38.65 1.54 16.49 +interministérielles interministériel adj f p 0 0.14 0 0.07 +interministériels interministériel adj m p 0 0.14 0 0.07 +intermission intermission nom f s 0 0.07 0 0.07 +intermittence intermittence nom f s 0.57 3.78 0.57 2.77 +intermittences intermittence nom f p 0.57 3.78 0 1.01 +intermittent intermittent adj m s 0.67 3.38 0.3 0.74 +intermittente intermittent adj f s 0.67 3.38 0.19 1.35 +intermittentes intermittent adj f p 0.67 3.38 0.14 0.95 +intermittents intermittent adj m p 0.67 3.38 0.05 0.34 +intermède intermède nom m s 0.89 2.84 0.77 2.3 +intermèdes intermède nom m p 0.89 2.84 0.11 0.54 +intermédiaire intermédiaire nom s 4.43 7.3 3.44 6.01 +intermédiaires intermédiaire nom p 4.43 7.3 1 1.28 +internat internat nom m s 2.37 3.04 2.25 2.64 +international international adj m s 16.65 24.86 8.04 9.12 +internationale international adj f s 16.65 24.86 5.29 10 +internationalement internationalement adv 0.07 0.14 0.07 0.14 +internationales international adj f p 16.65 24.86 1.63 3.99 +internationalisation internationalisation nom f s 0.01 0.07 0.01 0.07 +internationalisme internationalisme nom m s 0 0.61 0 0.61 +internationaliste internationaliste adj s 0.11 0.14 0.01 0 +internationalistes internationaliste adj p 0.11 0.14 0.1 0.14 +internationalisée internationaliser ver f s 0 0.14 0 0.07 par:pas; +internationalisés internationaliser ver m p 0 0.14 0 0.07 par:pas; +internationaux international adj m p 16.65 24.86 1.69 1.76 +internats internat nom m p 2.37 3.04 0.12 0.41 +internaute internaute nom s 0.11 0 0.01 0 +internautes internaute nom p 0.11 0 0.1 0 +interne interne adj s 13.15 7.3 8.86 5.47 +internement internement nom m s 0.51 1.22 0.51 1.22 +interner interner ver 4.21 1.15 1.71 0.27 inf; +internes interne adj p 13.15 7.3 4.29 1.82 +internet internet nom s 5.61 0 5.61 0 +internez interner ver 4.21 1.15 0.01 0 imp:pre:2p; +interniste interniste nom s 0.02 0 0.02 0 +interné interner ver m s 4.21 1.15 1.25 0.54 par:pas; +internée interner ver f s 4.21 1.15 0.76 0.07 par:pas; +internées interner ver f p 4.21 1.15 0.03 0 par:pas; +internés interner ver m p 4.21 1.15 0.07 0.27 par:pas; +interpella interpeller ver 1.52 15.54 0 3.04 ind:pas:3s; +interpellai interpeller ver 1.52 15.54 0 0.07 ind:pas:1s; +interpellaient interpeller ver 1.52 15.54 0 1.42 ind:imp:3p; +interpellais interpeller ver 1.52 15.54 0 0.14 ind:imp:1s; +interpellait interpeller ver 1.52 15.54 0.01 1.15 ind:imp:3s; +interpellant interpeller ver 1.52 15.54 0 1.08 par:pre; +interpellateur interpellateur nom m s 0 0.27 0 0.2 +interpellateurs interpellateur nom m p 0 0.27 0 0.07 +interpellation interpellation nom f s 0.23 1.15 0.07 0.47 +interpellations interpellation nom f p 0.23 1.15 0.17 0.68 +interpelle interpeller ver 1.52 15.54 0.36 2.43 ind:pre:1s;ind:pre:3s; +interpellent interpeller ver 1.52 15.54 0.46 1.15 ind:pre:3p; +interpeller interpeller ver 1.52 15.54 0.16 1.69 inf; +interpellerait interpeller ver 1.52 15.54 0.04 0.07 cnd:pre:3s; +interpellez interpeller ver 1.52 15.54 0.02 0 imp:pre:2p;ind:pre:2p; +interpellèrent interpeller ver 1.52 15.54 0 0.27 ind:pas:3p; +interpellé interpeller ver m s 1.52 15.54 0.34 1.96 par:pas; +interpellée interpeller ver f s 1.52 15.54 0.06 0.74 par:pas; +interpellées interpeller ver f p 1.52 15.54 0.01 0.07 par:pas; +interpellés interpeller ver m p 1.52 15.54 0.05 0.27 par:pas; +interphase interphase nom f s 0.01 0 0.01 0 +interphone interphone nom m s 1.87 1.22 1.58 1.15 +interphones interphone nom m p 1.87 1.22 0.28 0.07 +interplanétaire interplanétaire adj s 0.8 0.2 0.53 0.07 +interplanétaires interplanétaire adj p 0.8 0.2 0.26 0.14 +interpolateur interpolateur nom m s 0.01 0 0.01 0 +interpolation interpolation nom f s 0.01 0.14 0.01 0 +interpolations interpolation nom f p 0.01 0.14 0 0.14 +interpole interpoler ver 0.01 0.07 0.01 0 ind:pre:3s; +interpolez interpoler ver 0.01 0.07 0 0.07 imp:pre:2p; +interposa interposer ver 1.69 6.76 0.1 0.68 ind:pas:3s; +interposai interposer ver 1.69 6.76 0 0.2 ind:pas:1s; +interposaient interposer ver 1.69 6.76 0.01 0.2 ind:imp:3p; +interposais interposer ver 1.69 6.76 0 0.07 ind:imp:1s; +interposait interposer ver 1.69 6.76 0.04 1.08 ind:imp:3s; +interposant interposer ver 1.69 6.76 0 0.68 par:pre; +interpose interposer ver 1.69 6.76 0.26 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interposent interposer ver 1.69 6.76 0.02 0.27 ind:pre:3p; +interposer interposer ver 1.69 6.76 0.8 1.49 inf; +interposera interposer ver 1.69 6.76 0.04 0.07 ind:fut:3s; +interposeront interposer ver 1.69 6.76 0.03 0 ind:fut:3p; +interposez interposer ver 1.69 6.76 0.04 0 imp:pre:2p;ind:pre:2p; +interposition interposition nom f s 0.01 0.07 0.01 0.07 +interposèrent interposer ver 1.69 6.76 0 0.14 ind:pas:3p; +interposé interposer ver m s 1.69 6.76 0.29 0.41 par:pas; +interposée interposer ver f s 1.69 6.76 0.07 0.2 par:pas; +interposées interposé adj f p 0.13 2.3 0.02 0.74 +interposés interposé adj m p 0.13 2.3 0.04 0.2 +interprofessionnelle interprofessionnel adj f s 0 0.07 0 0.07 +interprète interprète nom s 4.81 8.58 4.01 7.16 +interprètent interpréter ver 9.5 12.64 0.17 0.47 ind:pre:3p; +interprètes interprète nom p 4.81 8.58 0.8 1.42 +interpréta interpréter ver 9.5 12.64 0.01 0.61 ind:pas:3s; +interprétable interprétable adj m s 0.01 0 0.01 0 +interprétai interpréter ver 9.5 12.64 0 0.07 ind:pas:1s; +interprétaient interpréter ver 9.5 12.64 0.03 0.34 ind:imp:3p; +interprétais interpréter ver 9.5 12.64 0.17 0.27 ind:imp:1s;ind:imp:2s; +interprétait interpréter ver 9.5 12.64 0.04 0.95 ind:imp:3s; +interprétant interpréter ver 9.5 12.64 0.21 0.2 par:pre; +interprétante interprétant adj f s 0 0.07 0 0.07 +interprétatif interprétatif adj m s 0.04 0.2 0.02 0.14 +interprétation interprétation nom f s 5.49 7.77 4.9 5.68 +interprétations interprétation nom f p 5.49 7.77 0.59 2.09 +interprétative interprétatif adj f s 0.04 0.2 0.02 0 +interprétatives interprétatif adj f p 0.04 0.2 0 0.07 +interpréter interpréter ver 9.5 12.64 3.38 4.8 inf; +interprétera interpréter ver 9.5 12.64 0.17 0 ind:fut:3s; +interpréteraient interpréter ver 9.5 12.64 0 0.07 cnd:pre:3p; +interpréterait interpréter ver 9.5 12.64 0.01 0.14 cnd:pre:3s; +interpréteriez interpréter ver 9.5 12.64 0 0.07 cnd:pre:2p; +interpréteur interpréteur nom m s 0.01 0 0.01 0 +interprétez interpréter ver 9.5 12.64 0.2 0.2 imp:pre:2p;ind:pre:2p; +interprétât interpréter ver 9.5 12.64 0 0.07 sub:imp:3s; +interprétèrent interpréter ver 9.5 12.64 0.1 0.14 ind:pas:3p; +interprété interpréter ver m s 9.5 12.64 2.59 1.69 par:pas; +interprétée interpréter ver f s 9.5 12.64 0.32 0.95 par:pas; +interprétées interpréter ver f p 9.5 12.64 0.15 0.14 par:pas; +interprétés interpréter ver m p 9.5 12.64 0.1 0.07 par:pas; +interpénètre interpénétrer ver 0.02 0.14 0 0.07 ind:pre:3s; +interpénètrent interpénétrer ver 0.02 0.14 0.01 0.07 ind:pre:3p; +interpénétration interpénétration nom f s 0.01 0.14 0.01 0.07 +interpénétrations interpénétration nom f p 0.01 0.14 0 0.07 +interpénétrer interpénétrer ver 0.02 0.14 0.01 0 inf; +interracial interracial adj m s 0.08 0 0.01 0 +interraciale interracial adj f s 0.08 0 0.03 0 +interraciaux interracial adj m p 0.08 0 0.04 0 +interrelations interrelation nom f p 0.02 0 0.02 0 +interrogateur interrogateur nom m s 0.21 0.2 0.18 0.2 +interrogateurs interrogateur nom m p 0.21 0.2 0.03 0 +interrogatif interrogatif adj m s 0.03 1.89 0.01 0.74 +interrogatifs interrogatif adj m p 0.03 1.89 0 0.34 +interrogation interrogation nom f s 2.26 8.92 1.85 7.09 +interrogations interrogation nom f p 2.26 8.92 0.41 1.82 +interrogative interrogatif adj f s 0.03 1.89 0.02 0.68 +interrogativement interrogativement adv 0 0.07 0 0.07 +interrogatives interrogatif adj f p 0.03 1.89 0 0.14 +interrogatoire interrogatoire nom m s 11.66 10.14 9.56 6.96 +interrogatoires interrogatoire nom m p 11.66 10.14 2.1 3.18 +interrogatrice interrogateur nom f s 0.21 0.2 0.01 0 +interroge interroger ver 44.31 73.04 8.37 12.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +interrogea interroger ver 44.31 73.04 0.04 9.59 ind:pas:3s; +interrogeai interroger ver 44.31 73.04 0.13 2.23 ind:pas:1s; +interrogeaient interroger ver 44.31 73.04 0.1 2.09 ind:imp:3p; +interrogeais interroger ver 44.31 73.04 0.6 2.57 ind:imp:1s;ind:imp:2s; +interrogeait interroger ver 44.31 73.04 0.79 8.24 ind:imp:3s; +interrogeant interroger ver 44.31 73.04 0.39 2.36 par:pre; +interrogent interroger ver 44.31 73.04 1.04 1.42 ind:pre:3p; +interrogeons interroger ver 44.31 73.04 0.65 0.27 imp:pre:1p;ind:pre:1p; +interroger interroger ver 44.31 73.04 16.22 18.58 inf;;inf;;inf;; +interrogera interroger ver 44.31 73.04 0.62 0.27 ind:fut:3s; +interrogerai interroger ver 44.31 73.04 0.65 0.07 ind:fut:1s; +interrogeraient interroger ver 44.31 73.04 0.02 0.07 cnd:pre:3p; +interrogerais interroger ver 44.31 73.04 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +interrogerait interroger ver 44.31 73.04 0.03 0.2 cnd:pre:3s; +interrogeras interroger ver 44.31 73.04 0 0.07 ind:fut:2s; +interrogerez interroger ver 44.31 73.04 0.02 0 ind:fut:2p; +interrogerons interroger ver 44.31 73.04 0.12 0 ind:fut:1p; +interrogeront interroger ver 44.31 73.04 0.28 0.2 ind:fut:3p; +interroges interroger ver 44.31 73.04 0.94 0.2 ind:pre:2s; +interrogez interroger ver 44.31 73.04 2.46 0.41 imp:pre:2p;ind:pre:2p; +interrogeâmes interroger ver 44.31 73.04 0 0.14 ind:pas:1p; +interrogeât interroger ver 44.31 73.04 0 0.34 sub:imp:3s; +interrogiez interroger ver 44.31 73.04 0.11 0.2 ind:imp:2p;sub:pre:2p; +interrogions interroger ver 44.31 73.04 0.05 0.2 ind:imp:1p;sub:pre:1p; +interrogèrent interroger ver 44.31 73.04 0.01 0.61 ind:pas:3p; +interrogé interroger ver m s 44.31 73.04 7.52 7.16 par:pas; +interrogée interroger ver f s 44.31 73.04 1.93 2.03 par:pas; +interrogées interroger ver f p 44.31 73.04 0.12 0.27 par:pas; +interrogés interroger ver m p 44.31 73.04 1.09 0.74 par:pas; +interrompaient interrompre ver 27.47 64.32 0 1.01 ind:imp:3p; +interrompais interrompre ver 27.47 64.32 0.03 0.27 ind:imp:1s;ind:imp:2s; +interrompait interrompre ver 27.47 64.32 0.05 3.65 ind:imp:3s; +interrompant interrompre ver 27.47 64.32 0.19 4.39 par:pre; +interrompe interrompre ver 27.47 64.32 0.32 0.14 sub:pre:1s;sub:pre:3s; +interrompent interrompre ver 27.47 64.32 0.04 0.95 ind:pre:3p; +interrompes interrompre ver 27.47 64.32 0.03 0 sub:pre:2s; +interrompez interrompre ver 27.47 64.32 2.61 0.14 imp:pre:2p;ind:pre:2p; +interrompiez interrompre ver 27.47 64.32 0.01 0.07 ind:imp:2p; +interrompirent interrompre ver 27.47 64.32 0.01 0.54 ind:pas:3p; +interrompis interrompre ver 27.47 64.32 0.01 0.88 ind:pas:1s; +interrompisse interrompre ver 27.47 64.32 0 0.07 sub:imp:1s; +interrompit interrompre ver 27.47 64.32 0.06 20.07 ind:pas:3s; +interrompons interrompre ver 27.47 64.32 1.22 0 imp:pre:1p;ind:pre:1p; +interrompra interrompre ver 27.47 64.32 0.09 0 ind:fut:3s; +interromprai interrompre ver 27.47 64.32 0.03 0 ind:fut:1s; +interromprais interrompre ver 27.47 64.32 0.03 0.07 cnd:pre:1s; +interromprait interrompre ver 27.47 64.32 0.27 0.14 cnd:pre:3s; +interrompras interrompre ver 27.47 64.32 0 0.07 ind:fut:2s; +interrompre interrompre ver 27.47 64.32 12.47 11.96 inf; +interromps interrompre ver 27.47 64.32 3.13 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +interrompt interrompre ver 27.47 64.32 1.07 5.81 ind:pre:3s; +interrompu interrompre ver m s 27.47 64.32 3.62 7.7 par:pas; +interrompue interrompre ver f s 27.47 64.32 0.76 3.11 par:pas; +interrompues interrompre ver f p 27.47 64.32 0.49 0.81 par:pas; +interrompus interrompre ver m p 27.47 64.32 0.93 1.08 par:pas; +interrompît interrompre ver 27.47 64.32 0 0.27 sub:imp:3s; +interrupteur interrupteur nom m s 2.94 2.3 2.58 2.09 +interrupteurs interrupteur nom m p 2.94 2.3 0.36 0.2 +interruption interruption nom f s 2.88 5.61 2.15 4.86 +interruptions interruption nom f p 2.88 5.61 0.73 0.74 +interrègne interrègne nom m s 0.04 0.14 0.04 0.14 +inters inter nom_sup m p 0.84 0.95 0 0.07 +intersaison intersaison nom f s 0.03 0 0.03 0 +interscolaire interscolaire adj s 0.01 0 0.01 0 +intersectant intersecter ver 0 0.07 0 0.07 par:pre; +intersection intersection nom f s 1.16 1.42 1.1 1.35 +intersections intersection nom f p 1.16 1.42 0.06 0.07 +interservices interservices adj 0.04 0 0.04 0 +intersidéral intersidéral adj m s 0.34 0.2 0.32 0.14 +intersidérale intersidéral adj f s 0.34 0.2 0.01 0.07 +intersidéraux intersidéral adj m p 0.34 0.2 0.01 0 +interstellaire interstellaire adj s 0.65 0.07 0.47 0 +interstellaires interstellaire adj p 0.65 0.07 0.18 0.07 +interstice interstice nom m s 0.33 3.99 0.2 1.42 +interstices interstice nom m p 0.33 3.99 0.14 2.57 +intersubjectif intersubjectif adj m s 0.01 0 0.01 0 +intertitre intertitre nom m s 0 0.07 0 0.07 +intertribal intertribal adj m s 0.01 0 0.01 0 +interurbain interurbain adj m s 0.39 0.07 0.38 0 +interurbaine interurbain adj f s 0.39 0.07 0.01 0.07 +intervalle intervalle nom m s 2.82 19.12 1.98 6.69 +intervalles intervalle nom m p 2.82 19.12 0.83 12.43 +intervenaient intervenir ver 22.39 35.34 0.14 0.54 ind:imp:3p; +intervenais intervenir ver 22.39 35.34 0.02 0.2 ind:imp:1s;ind:imp:2s; +intervenait intervenir ver 22.39 35.34 0.07 2.7 ind:imp:3s; +intervenant intervenir ver 22.39 35.34 0.24 0.54 par:pre; +intervenante intervenant nom f s 0.35 0.14 0.01 0 +intervenants intervenant nom m p 0.35 0.14 0.19 0 +intervenez intervenir ver 22.39 35.34 1.25 0.07 imp:pre:2p;ind:pre:2p; +interveniez intervenir ver 22.39 35.34 0.12 0 ind:imp:2p; +intervenir intervenir ver 22.39 35.34 9.82 13.58 inf; +intervenons intervenir ver 22.39 35.34 0.2 0.34 imp:pre:1p;ind:pre:1p; +intervention intervention nom f s 13.33 16.01 12.37 13.24 +interventionnisme interventionnisme nom m s 0.01 0 0.01 0 +interventionniste interventionniste adj s 0.04 0.14 0.04 0 +interventionnistes interventionniste nom p 0.11 0 0.1 0 +interventions intervention nom f p 13.33 16.01 0.96 2.77 +interventriculaire interventriculaire adj s 0.01 0 0.01 0 +intervenu intervenir ver m s 22.39 35.34 1.66 1.62 par:pas; +intervenue intervenir ver f s 22.39 35.34 0.93 0.61 par:pas; +intervenues intervenir ver f p 22.39 35.34 0.04 0.14 par:pas; +intervenus intervenir ver m p 22.39 35.34 0.67 0.54 par:pas; +interversion interversion nom f s 0.04 0.2 0.04 0.07 +interversions interversion nom f p 0.04 0.2 0 0.14 +interverti intervertir ver m s 0.56 0.95 0.17 0 par:pas; +intervertir intervertir ver 0.56 0.95 0.26 0.34 inf; +intervertirai intervertir ver 0.56 0.95 0.01 0 ind:fut:1s; +intervertis intervertir ver m p 0.56 0.95 0.08 0.14 ind:pre:1s;ind:pre:2s;par:pas; +intervertissait intervertir ver 0.56 0.95 0.01 0.07 ind:imp:3s; +intervertissent intervertir ver 0.56 0.95 0.01 0.07 ind:pre:3p; +intervertissiez intervertir ver 0.56 0.95 0.01 0 ind:imp:2p; +intervertissons intervertir ver 0.56 0.95 0 0.07 imp:pre:1p; +intervertit intervertir ver 0.56 0.95 0.01 0.27 ind:pre:3s;ind:pas:3s; +intervertébral intervertébral adj m s 0.04 0.07 0.04 0 +intervertébraux intervertébral adj m p 0.04 0.07 0 0.07 +interviendra intervenir ver 22.39 35.34 0.57 0.2 ind:fut:3s; +interviendrai intervenir ver 22.39 35.34 0.2 0.07 ind:fut:1s; +interviendraient intervenir ver 22.39 35.34 0.02 0 cnd:pre:3p; +interviendrais intervenir ver 22.39 35.34 0.17 0 cnd:pre:1s; +interviendrait intervenir ver 22.39 35.34 0.04 0.47 cnd:pre:3s; +interviendrez intervenir ver 22.39 35.34 0.2 0 ind:fut:2p; +interviendrons intervenir ver 22.39 35.34 0.09 0.07 ind:fut:1p; +interviendront intervenir ver 22.39 35.34 0.09 0 ind:fut:3p; +intervienne intervenir ver 22.39 35.34 0.78 0.81 sub:pre:1s;sub:pre:3s; +interviennent intervenir ver 22.39 35.34 0.47 0.47 ind:pre:3p; +interviens intervenir ver 22.39 35.34 1.4 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +intervient intervenir ver 22.39 35.34 3.16 4.32 ind:pre:3s; +interview interview nom f s 0 7.3 0 5.07 +interviewaient interviewer ver 0 1.69 0 0.14 ind:imp:3p; +interviewais interviewer ver 0 1.69 0 0.14 ind:imp:1s; +interviewait interviewer ver 0 1.69 0 0.41 ind:imp:3s; +interviewe interviewer ver 0 1.69 0 0.07 ind:pre:1s; +interviewer interviewer nom m s 0 1.22 0 1.15 +interviewers interviewer nom m p 0 1.22 0 0.07 +intervieweur intervieweur nom m s 0 0.07 0 0.07 +interviews interview nom f p 0 7.3 0 2.23 +interviewèrent interviewer ver 0 1.69 0 0.07 ind:pas:3p; +interviewé interviewer ver m s 0 1.69 0 0.41 par:pas; +interviewée interviewer ver f s 0 1.69 0 0.14 par:pas; +interviewés interviewer ver m p 0 1.69 0 0.07 par:pas; +intervinrent intervenir ver 22.39 35.34 0.01 0.07 ind:pas:3p; +intervins intervenir ver 22.39 35.34 0 0.41 ind:pas:1s; +intervinsse intervenir ver 22.39 35.34 0 0.07 sub:imp:1s; +intervint intervenir ver 22.39 35.34 0.03 6.55 ind:pas:3s; +intervînt intervenir ver 22.39 35.34 0 0.14 sub:imp:3s; +interzones interzone adj f p 0 0.14 0 0.14 +interétatique interétatique adj f s 0.01 0 0.01 0 +intestat intestat adj m s 0.01 0.2 0.01 0.2 +intestats intestat nom m p 0 0.07 0 0.07 +intestin intestin nom m s 4.29 3.92 1.71 1.82 +intestinal intestinal adj m s 2.13 2.03 0.66 0.27 +intestinale intestinal adj f s 2.13 2.03 0.67 0.95 +intestinales intestinal adj f p 2.13 2.03 0.18 0.34 +intestinaux intestinal adj m p 2.13 2.03 0.63 0.47 +intestine intestin adj f s 0.68 1.28 0.04 0.2 +intestines intestin adj f p 0.68 1.28 0.45 0.74 +intestins intestin nom m p 4.29 3.92 2.58 2.09 +inti inti nom m s 0.02 0 0.02 0 +intifada intifada nom m s 0.42 0 0.42 0 +intima intimer ver 0.5 3.92 0 1.08 ind:pas:3s;;ind:pas:3s; +intimait intimer ver 0.5 3.92 0 0.54 ind:imp:3s; +intimant intimer ver 0.5 3.92 0 0.2 par:pre; +intimation intimation nom f s 0 0.14 0 0.14 +intime intime adj s 15.78 34.66 9.09 23.85 +intimement intimement adv 0.84 4.26 0.84 4.26 +intimer intimer ver 0.5 3.92 0.28 0.54 inf; +intimerait intimer ver 0.5 3.92 0 0.07 cnd:pre:3s; +intimes intime adj p 15.78 34.66 6.69 10.81 +intimida intimider ver 6.97 17.16 0.14 0.27 ind:pas:3s; +intimidable intimidable adj s 0.01 0 0.01 0 +intimidaient intimider ver 6.97 17.16 0.02 0.88 ind:imp:3p; +intimidais intimider ver 6.97 17.16 0.12 0.07 ind:imp:1s;ind:imp:2s; +intimidait intimider ver 6.97 17.16 0.09 2.43 ind:imp:3s; +intimidant intimidant adj m s 0.78 1.89 0.61 1.08 +intimidante intimidant adj f s 0.78 1.89 0.13 0.74 +intimidants intimidant adj m p 0.78 1.89 0.04 0.07 +intimidateur intimidateur nom m s 0.01 0 0.01 0 +intimidation intimidation nom f s 0.77 1.76 0.71 1.76 +intimidations intimidation nom f p 0.77 1.76 0.05 0 +intimide intimider ver 6.97 17.16 1.13 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intimident intimider ver 6.97 17.16 0.13 0.34 ind:pre:3p; +intimider intimider ver 6.97 17.16 2.4 2.77 inf; +intimiderait intimider ver 6.97 17.16 0 0.07 cnd:pre:3s; +intimides intimider ver 6.97 17.16 0.22 0.14 ind:pre:2s; +intimidez intimider ver 6.97 17.16 0.49 0.2 imp:pre:2p;ind:pre:2p; +intimidiez intimider ver 6.97 17.16 0 0.07 ind:imp:2p; +intimidât intimider ver 6.97 17.16 0 0.07 sub:imp:3s; +intimidé intimider ver m s 6.97 17.16 1.22 5.34 par:pas; +intimidée intimider ver f s 6.97 17.16 0.71 2.03 par:pas; +intimidées intimider ver f p 6.97 17.16 0.01 0.27 par:pas; +intimidés intimider ver m p 6.97 17.16 0.22 1.28 par:pas; +intimiste intimiste adj m s 0.04 0.2 0.01 0 +intimistes intimiste adj p 0.04 0.2 0.03 0.2 +intimité intimité nom f s 10.8 24.12 10.79 23.65 +intimités intimité nom f p 10.8 24.12 0.01 0.47 +intimât intimer ver 0.5 3.92 0 0.07 sub:imp:3s; +intimèrent intimer ver 0.5 3.92 0 0.07 ind:pas:3p; +intimé intimer ver m s 0.5 3.92 0.2 0.41 par:pas; +intimés intimer ver m p 0.5 3.92 0 0.07 par:pas; +intirable intirable adj s 0 0.07 0 0.07 +intitula intituler ver 4.72 9.53 0 0.27 ind:pas:3s; +intitulai intituler ver 4.72 9.53 0 0.07 ind:pas:1s; +intitulaient intituler ver 4.72 9.53 0 0.14 ind:imp:3p; +intitulais intituler ver 4.72 9.53 0 0.07 ind:imp:1s; +intitulait intituler ver 4.72 9.53 0.17 1.28 ind:imp:3s; +intitulant intituler ver 4.72 9.53 0.01 0.07 par:pre; +intitule intituler ver 4.72 9.53 1.6 0.81 ind:pre:1s;ind:pre:3s; +intituler intituler ver 4.72 9.53 0.11 0.34 inf; +intitulerait intituler ver 4.72 9.53 0 0.07 cnd:pre:3s; +intitulé intituler ver m s 4.72 9.53 1.43 3.65 par:pas; +intitulée intituler ver f s 4.72 9.53 1.29 2.3 par:pas; +intitulées intituler ver f p 4.72 9.53 0.1 0.14 par:pas; +intitulés intitulé nom m p 0.38 1.69 0.02 0.14 +intolérable intolérable adj s 4.23 11.28 3.74 10.47 +intolérablement intolérablement adv 0.02 0.2 0.02 0.2 +intolérables intolérable adj p 4.23 11.28 0.49 0.81 +intolérance intolérance nom f s 0.93 1.35 0.93 1.35 +intolérant intolérant adj m s 0.63 0.34 0.15 0.2 +intolérante intolérant adj f s 0.63 0.34 0.33 0 +intolérants intolérant adj m p 0.63 0.34 0.15 0.14 +intonation intonation nom f s 0.55 10.07 0.42 5.95 +intonations intonation nom f p 0.55 10.07 0.12 4.12 +intouchable intouchable adj s 1.52 2.84 1.23 1.96 +intouchables intouchable adj p 1.52 2.84 0.28 0.88 +intouché intouché adj m s 0.12 0.47 0.1 0.07 +intouchée intouché adj f s 0.12 0.47 0 0.2 +intouchées intouché adj f p 0.12 0.47 0.02 0.14 +intouchés intouché adj m p 0.12 0.47 0 0.07 +intox intox nom f 0.34 0.14 0.21 0.14 +intoxe intox nom f s 0.34 0.14 0.14 0 +intoxicant intoxicant adj m s 0.02 0 0.02 0 +intoxication intoxication nom f s 1.51 0.74 1.38 0.74 +intoxications intoxication nom f p 1.51 0.74 0.13 0 +intoxiquant intoxiquer ver 0.53 0.74 0.01 0.07 par:pre; +intoxique intoxiquer ver 0.53 0.74 0.01 0.14 ind:pre:3s; +intoxiquer intoxiquer ver 0.53 0.74 0.01 0.27 inf; +intoxiqué intoxiquer ver m s 0.53 0.74 0.38 0.2 par:pas; +intoxiquée intoxiquer ver f s 0.53 0.74 0.09 0.07 par:pas; +intoxiquées intoxiqué nom f p 0.04 0.2 0 0.07 +intoxiqués intoxiquer ver m p 0.53 0.74 0.03 0 par:pas; +intra intra adv 0.02 0 0.02 0 +intra_muros intra_muros adv 0.01 0.07 0.01 0.07 +intra_atomique intra_atomique adj s 0 0.07 0 0.07 +intra_muros intra_muros adv 0.01 0.07 0.01 0.07 +rachidien rachidien adj f s 0.23 0.14 0.01 0 +intra_utérin intra_utérin adj f s 0.14 0.07 0.04 0 +intra_utérin intra_utérin adj f p 0.14 0.07 0.1 0.07 +intracardiaque intracardiaque adj f s 0.08 0 0.08 0 +intracrânien intracrânien adj m s 0.14 0 0.01 0 +intracrânienne intracrânien adj f s 0.14 0 0.13 0 +intracérébrale intracérébral adj f s 0.03 0 0.03 0 +intradermique intradermique adj m s 0.03 0 0.03 0 +intrados intrados nom f s 0 0.07 0 0.07 +intraduisible intraduisible adj s 0.13 0.61 0.12 0.27 +intraduisibles intraduisible adj p 0.13 0.61 0.01 0.34 +intrait intrait nom m s 0 0.14 0 0.14 +intraitable intraitable adj s 0.51 2.91 0.45 2.64 +intraitables intraitable adj f p 0.51 2.91 0.06 0.27 +intramusculaire intramusculaire adj s 0.19 0.07 0.16 0 +intramusculaires intramusculaire adj f p 0.19 0.07 0.03 0.07 +intranet intranet nom m s 0.08 0 0.08 0 +intransgressible intransgressible adj s 0 0.07 0 0.07 +intransigeance intransigeance nom f s 0.04 3.04 0.04 2.91 +intransigeances intransigeance nom f p 0.04 3.04 0 0.14 +intransigeant intransigeant adj m s 0.86 2.3 0.64 1.15 +intransigeante intransigeant adj f s 0.86 2.3 0.09 0.81 +intransigeantes intransigeant adj f p 0.86 2.3 0 0.27 +intransigeants intransigeant adj m p 0.86 2.3 0.14 0.07 +intransitif intransitif nom m s 0 0.07 0 0.07 +intransmissible intransmissible adj m s 0.01 0.14 0.01 0.14 +intransportable intransportable adj f s 0.02 0.2 0.02 0.14 +intransportables intransportable adj m p 0.02 0.2 0 0.07 +intraoculaire intraoculaire adj f s 0.01 0 0.01 0 +intravasculaire intravasculaire adj s 0.04 0 0.04 0 +intraveineuse intraveineux adj f s 1.13 0.34 1.02 0.07 +intraveineuses intraveineux adj f p 1.13 0.34 0.09 0.2 +intraveineux intraveineux adj m 1.13 0.34 0.01 0.07 +intrigant intrigant adj m s 1.77 1.42 0.44 0.81 +intrigante intrigant adj f s 1.77 1.42 1.23 0.14 +intrigantes intrigant adj f p 1.77 1.42 0.04 0 +intrigants intrigant adj m p 1.77 1.42 0.06 0.47 +intrigua intriguer ver 5.58 19.73 0.02 1.01 ind:pas:3s; +intriguaient intriguer ver 5.58 19.73 0.04 0.88 ind:imp:3p; +intriguait intriguer ver 5.58 19.73 0.46 3.58 ind:imp:3s; +intriguant intriguer ver 5.58 19.73 0.38 0.27 par:pre; +intriguassent intriguer ver 5.58 19.73 0 0.07 sub:imp:3p; +intrigue intrigue nom f s 4.8 13.18 2.56 5.07 +intriguent intriguer ver 5.58 19.73 0.25 0.27 ind:pre:3p; +intriguer intriguer ver 5.58 19.73 0.12 1.82 inf; +intriguera intriguer ver 5.58 19.73 0.03 0.07 ind:fut:3s; +intriguerait intriguer ver 5.58 19.73 0.02 0.14 cnd:pre:3s; +intrigues intrigue nom f p 4.8 13.18 2.24 8.11 +intriguez intriguer ver 5.58 19.73 0.14 0.2 imp:pre:2p;ind:pre:2p; +intriguât intriguer ver 5.58 19.73 0 0.07 sub:imp:3s; +intriguèrent intriguer ver 5.58 19.73 0 0.14 ind:pas:3p; +intrigué intriguer ver m s 5.58 19.73 1.19 6.42 par:pas; +intriguée intriguer ver f s 5.58 19.73 0.4 1.76 par:pas; +intrigués intriguer ver m p 5.58 19.73 0.13 1.22 par:pas; +intrinsèque intrinsèque adj s 0.13 0.41 0.13 0.41 +intrinsèquement intrinsèquement adv 0.35 0.07 0.35 0.07 +introducteur introducteur nom m s 0.05 0.34 0.05 0.27 +introductif introductif adj m s 0.03 0.14 0.03 0.14 +introduction introduction nom f s 2.45 3.04 2.27 2.97 +introductions introduction nom f p 2.45 3.04 0.18 0.07 +introductrice introducteur nom f s 0.05 0.34 0 0.07 +introduira introduire ver 12.56 30.54 0.17 0.2 ind:fut:3s; +introduirai introduire ver 12.56 30.54 0.11 0.07 ind:fut:1s; +introduiraient introduire ver 12.56 30.54 0 0.07 cnd:pre:3p; +introduirais introduire ver 12.56 30.54 0.01 0.07 cnd:pre:1s; +introduirait introduire ver 12.56 30.54 0.03 0.2 cnd:pre:3s; +introduire introduire ver 12.56 30.54 3.96 8.04 inf;;inf;;inf;; +introduirez introduire ver 12.56 30.54 0.01 0 ind:fut:2p; +introduirions introduire ver 12.56 30.54 0 0.07 cnd:pre:1p; +introduis introduire ver 12.56 30.54 0.78 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +introduisaient introduire ver 12.56 30.54 0 0.54 ind:imp:3p; +introduisais introduire ver 12.56 30.54 0.02 0.07 ind:imp:1s;ind:imp:2s; +introduisait introduire ver 12.56 30.54 0.05 2.09 ind:imp:3s; +introduisant introduire ver 12.56 30.54 0.17 1.55 par:pre; +introduise introduire ver 12.56 30.54 0.19 0.34 sub:pre:1s;sub:pre:3s; +introduisent introduire ver 12.56 30.54 0.38 0.34 ind:pre:3p; +introduisez introduire ver 12.56 30.54 0.89 0 imp:pre:2p;ind:pre:2p; +introduisirent introduire ver 12.56 30.54 0.01 0.2 ind:pas:3p; +introduisis introduire ver 12.56 30.54 0 0.34 ind:pas:1s;ind:pas:2s; +introduisit introduire ver 12.56 30.54 0.16 3.45 ind:pas:3s; +introduisons introduire ver 12.56 30.54 0.07 0.2 imp:pre:1p;ind:pre:1p; +introduisît introduire ver 12.56 30.54 0 0.14 sub:imp:3s; +introduit introduire ver m s 12.56 30.54 4.18 8.99 ind:pre:3s;par:pas; +introduite introduire ver f s 12.56 30.54 0.86 1.08 par:pas; +introduites introduire ver f p 12.56 30.54 0.23 0.47 par:pas; +introduits introduire ver m p 12.56 30.54 0.28 1.89 par:pas; +intromission intromission nom f s 0 0.14 0 0.14 +intronisa introniser ver 0.12 0.34 0 0.07 ind:pas:3s; +intronisait introniser ver 0.12 0.34 0.01 0.07 ind:imp:3s; +intronisation intronisation nom f s 0.02 0.41 0.02 0.41 +intronise introniser ver 0.12 0.34 0 0.07 ind:pre:3s; +introniser introniser ver 0.12 0.34 0.05 0 inf; +intronisé introniser ver m s 0.12 0.34 0.06 0.14 par:pas; +introspecter introspecter ver 0.01 0 0.01 0 inf; +introspectif introspectif adj m s 0.08 0.07 0.06 0 +introspection introspection nom f s 0.33 0.2 0.33 0.14 +introspections introspection nom f p 0.33 0.2 0 0.07 +introspective introspectif adj f s 0.08 0.07 0.01 0 +introspectives introspectif adj f p 0.08 0.07 0.01 0.07 +introuvable introuvable adj s 3.66 3.92 3.27 2.77 +introuvables introuvable adj p 3.66 3.92 0.39 1.15 +introversions introversion nom f p 0 0.07 0 0.07 +introverti introverti adj m s 0.33 0 0.22 0 +introvertie introverti adj f s 0.33 0 0.09 0 +introvertis introverti nom m p 0.27 0 0.14 0 +introït introït nom m s 0 0.2 0 0.2 +intrus intrus nom m s 4.35 5.47 4.29 4.46 +intruse intrus nom f s 4.35 5.47 0.06 0.81 +intruses intrus nom f p 4.35 5.47 0 0.2 +intrusif intrusif adj m s 0.04 0 0.04 0 +intrusion intrusion nom f s 4.61 3.78 4.48 3.24 +intrusions intrusion nom f p 4.61 3.78 0.13 0.54 +intrépide intrépide adj s 1.63 3.78 1.37 2.77 +intrépidement intrépidement adv 0 0.14 0 0.14 +intrépides intrépide adj p 1.63 3.78 0.26 1.01 +intrépidité intrépidité nom f s 0.04 0.74 0.04 0.74 +intubation intubation nom f s 0.86 0 0.86 0 +intube intuber ver 2.33 0 0.42 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intuber intuber ver 2.33 0 1.25 0 inf; +intubez intuber ver 2.33 0 0.15 0 imp:pre:2p;ind:pre:2p; +intubé intuber ver m s 2.33 0 0.42 0 par:pas; +intubée intuber ver f s 2.33 0 0.09 0 par:pas; +intuitif intuitif adj m s 0.81 0.61 0.24 0.27 +intuitifs intuitif adj m p 0.81 0.61 0.02 0 +intuition intuition nom f s 9.37 11.08 8.64 9.8 +intuitions intuition nom f p 9.37 11.08 0.73 1.28 +intuitive intuitif adj f s 0.81 0.61 0.5 0.27 +intuitivement intuitivement adv 0.17 0.74 0.17 0.74 +intuitives intuitif adj f p 0.81 0.61 0.05 0.07 +intumescence intumescence nom f s 0.01 0 0.01 0 +intussusception intussusception nom f s 0.03 0 0.03 0 +intègre intègre adj s 1.7 1.35 1.5 0.81 +intègrent intégrer ver 7.98 6.89 0.06 0.14 ind:pre:3p; +intègres intègre adj p 1.7 1.35 0.19 0.54 +intégra intégrer ver 7.98 6.89 0.01 0.07 ind:pas:3s; +intégraient intégrer ver 7.98 6.89 0.01 0.2 ind:imp:3p; +intégrait intégrer ver 7.98 6.89 0.08 0.47 ind:imp:3s; +intégral intégral adj m s 1.35 5.27 0.56 3.18 +intégrale intégral adj f s 1.35 5.27 0.8 1.76 +intégralement intégralement adv 0.57 3.24 0.57 3.24 +intégrales intégrale nom f p 0.45 0.27 0.02 0 +intégralisme intégralisme nom m s 0 0.07 0 0.07 +intégralité intégralité nom f s 0.43 0.74 0.43 0.74 +intégrant intégrer ver 7.98 6.89 0.19 0.14 par:pre; +intégrante intégrant adj f s 0.34 1.01 0.34 1.01 +intégrateur intégrateur nom m s 0.02 0 0.02 0 +intégration intégration nom f s 1.28 1.08 1.28 1.08 +intégraux intégral adj m p 1.35 5.27 0 0.07 +intégrer intégrer ver 7.98 6.89 3.71 2.57 inf; +intégrera intégrer ver 7.98 6.89 0.16 0.14 ind:fut:3s; +intégrerais intégrer ver 7.98 6.89 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +intégreras intégrer ver 7.98 6.89 0.02 0.07 ind:fut:2s; +intégrerez intégrer ver 7.98 6.89 0.16 0 ind:fut:2p; +intégreront intégrer ver 7.98 6.89 0.03 0 ind:fut:3p; +intégrez intégrer ver 7.98 6.89 0.08 0 imp:pre:2p;ind:pre:2p; +intégriez intégrer ver 7.98 6.89 0.01 0 ind:imp:2p; +intégrisme intégrisme nom m s 0.04 0.14 0.03 0 +intégrismes intégrisme nom m p 0.04 0.14 0.01 0.14 +intégriste intégriste adj m s 0.22 0 0.15 0 +intégristes intégriste adj p 0.22 0 0.07 0 +intégrité intégrité nom f s 4.1 4.32 4.1 4.26 +intégrités intégrité nom f p 4.1 4.32 0 0.07 +intégrèrent intégrer ver 7.98 6.89 0.01 0 ind:pas:3p; +intégré intégrer ver m s 7.98 6.89 1.25 1.22 par:pas; +intégrée intégrer ver f s 7.98 6.89 0.39 0.68 par:pas; +intégrées intégrer ver f p 7.98 6.89 0.28 0.14 par:pas; +intégrés intégrer ver m p 7.98 6.89 0.43 0.47 par:pas; +intéressa intéresser ver 140.8 117.36 0.02 1.69 ind:pas:3s; +intéressai intéresser ver 140.8 117.36 0 0.34 ind:pas:1s; +intéressaient intéresser ver 140.8 117.36 0.73 4.93 ind:imp:3p; +intéressais intéresser ver 140.8 117.36 1.2 2.7 ind:imp:1s;ind:imp:2s; +intéressait intéresser ver 140.8 117.36 7.29 22.57 ind:imp:3s; +intéressant intéressant adj m s 69.17 28.65 47.07 15.47 +intéressante intéressant adj f s 69.17 28.65 13.05 5.95 +intéressantes intéressant adj f p 69.17 28.65 4.82 3.58 +intéressants intéressant adj m p 69.17 28.65 4.24 3.65 +intéresse intéresser ver 140.8 117.36 75.2 34.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +intéressement intéressement nom m s 0.05 0.07 0.05 0.07 +intéressent intéresser ver 140.8 117.36 9.68 7.23 ind:pre:3p; +intéresser intéresser ver 140.8 117.36 12.94 22.7 inf;; +intéressera intéresser ver 140.8 117.36 1.65 0.88 ind:fut:3s; +intéresserai intéresser ver 140.8 117.36 0.24 0 ind:fut:1s; +intéresseraient intéresser ver 140.8 117.36 0.29 0.41 cnd:pre:3p; +intéresserais intéresser ver 140.8 117.36 0.14 0.2 cnd:pre:1s;cnd:pre:2s; +intéresserait intéresser ver 140.8 117.36 3.42 2.57 cnd:pre:3s; +intéresseras intéresser ver 140.8 117.36 0.01 0.07 ind:fut:2s; +intéresseriez intéresser ver 140.8 117.36 0.01 0 cnd:pre:2p; +intéresserons intéresser ver 140.8 117.36 0 0.07 ind:fut:1p; +intéresseront intéresser ver 140.8 117.36 0.25 0.34 ind:fut:3p; +intéresses intéresser ver 140.8 117.36 6.81 1.01 ind:pre:2s; +intéressez intéresser ver 140.8 117.36 2.03 0.81 imp:pre:2p;ind:pre:2p; +intéressiez intéresser ver 140.8 117.36 0.46 0.34 ind:imp:2p; +intéressions intéresser ver 140.8 117.36 0.01 0.07 ind:imp:1p; +intéressons intéresser ver 140.8 117.36 0.31 0.07 imp:pre:1p;ind:pre:1p; +intéressât intéresser ver 140.8 117.36 0.01 0.74 sub:imp:3s; +intéressèrent intéresser ver 140.8 117.36 0 0.27 ind:pas:3p; +intéressé intéresser ver m s 140.8 117.36 9.31 6.22 par:pas; +intéressée intéresser ver f s 140.8 117.36 3.02 2.36 par:pas; +intéressées intéressé adj f p 7.2 7.77 0.46 0.68 +intéressés intéresser ver m p 140.8 117.36 2.82 1.76 par:pas; +intérieur intérieur nom m s 90.11 135.88 89.75 133.51 +intérieure intérieur adj f s 13.17 50.61 6.75 23.38 +intérieurement intérieurement adv 1.29 6.01 1.29 6.01 +intérieures intérieur adj f p 13.17 50.61 0.84 4.86 +intérieurs intérieur adj m p 13.17 50.61 0.84 3.38 +intérim intérim nom m s 1.1 2.03 1.1 1.89 +intérimaire intérimaire nom s 0.77 0.47 0.49 0.2 +intérimaires intérimaire nom p 0.77 0.47 0.28 0.27 +intérims intérim nom m p 1.1 2.03 0 0.14 +intériorisa intérioriser ver 0.35 0.34 0 0.07 ind:pas:3s; +intériorisait intérioriser ver 0.35 0.34 0.01 0 ind:imp:3s; +intériorisation intériorisation nom f s 0.14 0.07 0.14 0.07 +intériorise intérioriser ver 0.35 0.34 0.09 0.07 ind:pre:1s;ind:pre:3s; +intériorisent intérioriser ver 0.35 0.34 0.14 0 ind:pre:3p; +intérioriser intérioriser ver 0.35 0.34 0.09 0 inf; +intériorisée intérioriser ver f s 0.35 0.34 0.03 0.07 par:pas; +intériorisées intérioriser ver f p 0.35 0.34 0 0.07 par:pas; +intériorisés intérioriser ver m p 0.35 0.34 0 0.07 par:pas; +intériorité intériorité nom f s 0.1 0.41 0.1 0.41 +intérêt intérêt nom m s 81.09 97.36 63.63 75 +intérêts intérêt nom m p 81.09 97.36 17.46 22.36 +inuit inuit nom f s 0.04 0 0.04 0 +inupik inupik nom m s 0 0.07 0 0.07 +inusabilité inusabilité nom f s 0 0.07 0 0.07 +inusable inusable adj s 0.17 1.96 0.16 1.55 +inusables inusable adj p 0.17 1.96 0.01 0.41 +inusité inusité adj m s 0.3 1.42 0.22 0.47 +inusitée inusité adj f s 0.3 1.42 0.07 0.68 +inusitées inusité adj f p 0.3 1.42 0.01 0.2 +inusités inusité adj m p 0.3 1.42 0 0.07 +inusuelle inusuel adj f s 0 0.07 0 0.07 +inutile inutile adj s 72.71 70.34 64.05 53.04 +inutilement inutilement adv 1.83 4.66 1.83 4.66 +inutiles inutile adj p 72.71 70.34 8.66 17.3 +inutilisable inutilisable adj s 1.72 2.03 1.14 0.95 +inutilisables inutilisable adj p 1.72 2.03 0.58 1.08 +inutilisation inutilisation nom f s 0 0.14 0 0.14 +inutilisé inutilisé adj m s 0.37 0.81 0.08 0.14 +inutilisée inutilisé adj f s 0.37 0.81 0.13 0.27 +inutilisées inutilisé adj f p 0.37 0.81 0.09 0.2 +inutilisés inutilisé adj m p 0.37 0.81 0.07 0.2 +inutilité inutilité nom f s 0.56 3.58 0.56 3.51 +inutilités inutilité nom f p 0.56 3.58 0 0.07 +invagination invagination nom f s 0.03 0 0.03 0 +invaincu invaincu adj m s 0.84 0.61 0.5 0.34 +invaincue invaincu adj f s 0.84 0.61 0.08 0.14 +invaincues invaincu adj f p 0.84 0.61 0 0.07 +invaincus invaincu adj m p 0.84 0.61 0.26 0.07 +invalidant invalidant adj m s 0.04 0 0.02 0 +invalidante invalidant adj f s 0.04 0 0.02 0 +invalidation invalidation nom f s 0.02 0 0.02 0 +invalide invalide adj s 1.77 0.81 1.48 0.27 +invalider invalider ver 0.59 0.27 0.1 0 inf; +invalides invalide nom p 2.03 4.39 1.41 3.85 +invalidité invalidité nom f s 0.99 0.27 0.99 0.2 +invalidités invalidité nom f p 0.99 0.27 0 0.07 +invalidé invalider ver m s 0.59 0.27 0.14 0.14 par:pas; +invalidés invalider ver m p 0.59 0.27 0 0.07 par:pas; +invariable invariable adj s 0.08 1.89 0.07 1.55 +invariablement invariablement adv 0.64 4.86 0.64 4.86 +invariables invariable adj p 0.08 1.89 0.01 0.34 +invariance invariance nom f s 0.01 0 0.01 0 +invasif invasif adj m s 0.28 0 0.11 0 +invasion invasion nom f s 7.15 11.22 6.96 9.32 +invasions invasion nom f p 7.15 11.22 0.19 1.89 +invasive invasif adj f s 0.28 0 0.14 0 +invasives invasif adj f p 0.28 0 0.03 0 +invectiva invectiver ver 0.14 1.82 0 0.2 ind:pas:3s; +invectivai invectiver ver 0.14 1.82 0 0.07 ind:pas:1s; +invectivaient invectiver ver 0.14 1.82 0 0.07 ind:imp:3p; +invectivait invectiver ver 0.14 1.82 0 0.41 ind:imp:3s; +invectivant invectiver ver 0.14 1.82 0 0.34 par:pre; +invective invectiver ver 0.14 1.82 0.12 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +invectivent invectiver ver 0.14 1.82 0 0.07 ind:pre:3p; +invectiver invectiver ver 0.14 1.82 0.02 0.47 inf; +invectives invective nom f p 0.25 2.84 0.24 2.03 +invendable invendable adj m s 0.2 0.27 0.19 0.14 +invendables invendable adj m p 0.2 0.27 0.01 0.14 +invendu invendu nom m s 0.47 0.41 0.01 0 +invendues invendu adj f p 0.17 0.68 0.12 0.2 +invendus invendu nom m p 0.47 0.41 0.46 0.41 +inventa inventer ver 53.96 69.73 0.65 1.69 ind:pas:3s; +inventai inventer ver 53.96 69.73 0.02 1.22 ind:pas:1s; +inventaient inventer ver 53.96 69.73 0.02 0.81 ind:imp:3p; +inventaire inventaire nom m s 4.02 7.5 3.86 6.62 +inventaires inventaire nom m p 4.02 7.5 0.16 0.88 +inventais inventer ver 53.96 69.73 0.43 1.69 ind:imp:1s;ind:imp:2s; +inventait inventer ver 53.96 69.73 0.55 3.85 ind:imp:3s; +inventant inventer ver 53.96 69.73 0.21 1.42 par:pre; +invente inventer ver 53.96 69.73 7.53 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inventent inventer ver 53.96 69.73 1.68 1.62 ind:pre:3p; +inventer inventer ver 53.96 69.73 11.35 17.43 inf;; +inventera inventer ver 53.96 69.73 0.33 0.54 ind:fut:3s; +inventerai inventer ver 53.96 69.73 0.69 0.34 ind:fut:1s; +inventeraient inventer ver 53.96 69.73 0.01 0.07 cnd:pre:3p; +inventerais inventer ver 53.96 69.73 0.35 0.41 cnd:pre:1s;cnd:pre:2s; +inventerait inventer ver 53.96 69.73 0.14 0.68 cnd:pre:3s; +inventeras inventer ver 53.96 69.73 0.14 0.07 ind:fut:2s; +inventerez inventer ver 53.96 69.73 0.04 0 ind:fut:2p; +inventeriez inventer ver 53.96 69.73 0.11 0 cnd:pre:2p; +inventerions inventer ver 53.96 69.73 0.01 0 cnd:pre:1p; +inventerons inventer ver 53.96 69.73 0.04 0 ind:fut:1p; +inventeront inventer ver 53.96 69.73 0.07 0.2 ind:fut:3p; +inventes inventer ver 53.96 69.73 2.11 1.08 ind:pre:2s;sub:pre:2s; +inventeur inventeur nom m s 3.34 2.03 2.91 1.76 +inventeurs inventeur nom m p 3.34 2.03 0.42 0.27 +inventez inventer ver 53.96 69.73 1.17 0.07 imp:pre:2p;ind:pre:2p; +inventiez inventer ver 53.96 69.73 0.04 0 ind:imp:2p; +inventif inventif adj m s 0.36 1.28 0.22 0.74 +inventifs inventif adj m p 0.36 1.28 0.04 0.14 +invention invention nom f s 10.37 15.68 7.88 10.81 +inventions invention nom f p 10.37 15.68 2.49 4.86 +inventive inventif adj f s 0.36 1.28 0.1 0.41 +inventivité inventivité nom f s 0.02 0.07 0.02 0 +inventivités inventivité nom f p 0.02 0.07 0 0.07 +inventons inventer ver 53.96 69.73 0.14 0.07 imp:pre:1p;ind:pre:1p; +inventoria inventorier ver 0.23 1.55 0 0.07 ind:pas:3s; +inventoriai inventorier ver 0.23 1.55 0 0.07 ind:pas:1s; +inventoriaient inventorier ver 0.23 1.55 0 0.07 ind:imp:3p; +inventoriait inventorier ver 0.23 1.55 0 0.14 ind:imp:3s; +inventorient inventorier ver 0.23 1.55 0 0.07 ind:pre:3p; +inventorier inventorier ver 0.23 1.55 0.19 0.74 inf; +inventorié inventorier ver m s 0.23 1.55 0.03 0.2 par:pas; +inventoriée inventorier ver f s 0.23 1.55 0 0.07 par:pas; +inventoriées inventorier ver f p 0.23 1.55 0.02 0.14 par:pas; +inventât inventer ver 53.96 69.73 0 0.07 sub:imp:3s; +inventèrent inventer ver 53.96 69.73 0.11 0.34 ind:pas:3p; +inventé inventer ver m s 53.96 69.73 23.2 17.97 par:pas; +inventée inventer ver f s 53.96 69.73 1.53 3.58 par:pas; +inventées inventer ver f p 53.96 69.73 0.56 1.62 par:pas; +inventés inventer ver m p 53.96 69.73 0.72 2.23 par:pas; +inversa inverser ver 6.29 7.57 0 0.14 ind:pas:3s; +inversaient inverser ver 6.29 7.57 0 0.14 ind:imp:3p; +inversait inverser ver 6.29 7.57 0.13 0.2 ind:imp:3s; +inversant inverser ver 6.29 7.57 0.07 0.41 par:pre; +inverse inverse nom s 6.4 6.22 6.4 6.22 +inversement inversement adv 0.47 2.64 0.47 2.64 +inversent inverser ver 6.29 7.57 0.13 0.2 ind:pre:3p; +inverser inverser ver 6.29 7.57 1.36 1.01 inf; +inversera inverser ver 6.29 7.57 0.06 0 ind:fut:3s; +inverserais inverser ver 6.29 7.57 0.01 0 cnd:pre:1s; +inverserait inverser ver 6.29 7.57 0.02 0 cnd:pre:3s; +inverses inverser ver 6.29 7.57 0.04 0 ind:pre:2s; +inverseur inverseur nom m s 0.02 0 0.02 0 +inversez inverser ver 6.29 7.57 0.21 0.07 imp:pre:2p;ind:pre:2p; +inversible inversible adj f s 0 0.07 0 0.07 +inversion inversion nom f s 0.76 3.65 0.75 3.38 +inversions inversion nom f p 0.76 3.65 0.01 0.27 +inversons inverser ver 6.29 7.57 0.04 0 imp:pre:1p; +inversèrent inverser ver 6.29 7.57 0 0.07 ind:pas:3p; +inversé inverser ver m s 6.29 7.57 2 1.96 par:pas; +inversée inverser ver f s 6.29 7.57 0.85 1.49 par:pas; +inversées inverser ver f p 6.29 7.57 0.2 0.54 par:pas; +inversés inverser ver m p 6.29 7.57 0.71 0.95 par:pas; +inverti invertir ver m s 0.16 0 0.16 0 par:pas; +invertis inverti nom m p 0.56 0.41 0.44 0.34 +invertébré invertébré adj m s 0.19 0.27 0.07 0.07 +invertébrée invertébré adj f s 0.19 0.27 0.01 0.07 +invertébrés invertébré nom m p 0.2 0.14 0.19 0.07 +investi investir ver m s 16.5 9.46 5.49 2.91 par:pas; +investie investir ver f s 16.5 9.46 0.15 0.81 par:pas; +investies investir ver f p 16.5 9.46 0.02 0.07 par:pas; +investigateur investigateur nom m s 0.13 0 0.03 0 +investigateurs investigateur nom m p 0.13 0 0.07 0 +investigation investigation nom f s 3.26 2.57 1.95 1.08 +investigations investigation nom f p 3.26 2.57 1.31 1.49 +investigatrice investigateur adj f s 0.14 0.27 0.11 0 +investigatrices investigateur adj f p 0.14 0.27 0.01 0.07 +investiguant investiguer ver 0.03 0 0.01 0 par:pre; +investiguer investiguer ver 0.03 0 0.01 0 inf; +investir investir ver 16.5 9.46 5.85 2.36 inf; +investira investir ver 16.5 9.46 0.14 0 ind:fut:3s; +investirais investir ver 16.5 9.46 0.07 0 cnd:pre:1s; +investirait investir ver 16.5 9.46 0.16 0 cnd:pre:3s; +investirent investir ver 16.5 9.46 0.02 0.07 ind:pas:3p; +investirons investir ver 16.5 9.46 0.02 0 ind:fut:1p; +investiront investir ver 16.5 9.46 0.17 0 ind:fut:3p; +investis investir ver m p 16.5 9.46 1.53 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +investissaient investir ver 16.5 9.46 0.14 0.14 ind:imp:3p; +investissais investir ver 16.5 9.46 0.02 0.14 ind:imp:1s;ind:imp:2s; +investissait investir ver 16.5 9.46 0.05 0.2 ind:imp:3s; +investissant investir ver 16.5 9.46 0.04 0.41 par:pre; +investisse investir ver 16.5 9.46 0.06 0.14 sub:pre:1s;sub:pre:3s; +investissement investissement nom m s 7.38 2.77 5.05 1.35 +investissements investissement nom m p 7.38 2.77 2.33 1.42 +investissent investir ver 16.5 9.46 0.29 0.2 ind:pre:3p; +investisseur investisseur nom m s 2.64 0.07 0.66 0 +investisseurs investisseur nom m p 2.64 0.07 1.98 0.07 +investissez investir ver 16.5 9.46 0.67 0 imp:pre:2p;ind:pre:2p; +investissons investir ver 16.5 9.46 0.06 0 imp:pre:1p;ind:pre:1p; +investit investir ver 16.5 9.46 1.56 1.22 ind:pre:3s;ind:pas:3s; +investiture investiture nom f s 0.38 0.47 0.38 0.34 +investitures investiture nom f p 0.38 0.47 0 0.14 +investît investir ver 16.5 9.46 0.01 0 sub:imp:3s; +invincibilité invincibilité nom f s 0.11 0.27 0.11 0.27 +invincible invincible adj s 3.6 5.07 2.92 4.59 +invinciblement invinciblement adv 0.01 1.22 0.01 1.22 +invincibles invincible adj p 3.6 5.07 0.68 0.47 +inviolabilité inviolabilité nom f s 0.13 0.14 0.13 0.14 +inviolable inviolable adj s 0.39 1.35 0.26 0.95 +inviolables inviolable adj p 0.39 1.35 0.13 0.41 +inviolé inviolé adj m s 0.1 0.34 0.04 0.2 +inviolée inviolé adj f s 0.1 0.34 0.03 0 +inviolées inviolé adj f p 0.1 0.34 0.02 0 +inviolés inviolé adj m p 0.1 0.34 0.01 0.14 +invisibilité invisibilité nom f s 0.45 0.27 0.45 0.27 +invisible invisible adj s 16.21 52.36 12.85 36.35 +invisible_piston invisible_piston nom m s 0 0.07 0 0.07 +invisiblement invisiblement adv 0.01 0.41 0.01 0.41 +invisibles invisible adj p 16.21 52.36 3.36 16.01 +invita inviter ver 116.83 82.3 0.45 9.93 ind:pas:3s; +invitai inviter ver 116.83 82.3 0.11 1.49 ind:pas:1s; +invitaient inviter ver 116.83 82.3 0.06 2.36 ind:imp:3p; +invitais inviter ver 116.83 82.3 0.5 1.01 ind:imp:1s;ind:imp:2s; +invitait inviter ver 116.83 82.3 0.9 8.92 ind:imp:3s; +invitant inviter ver 116.83 82.3 0.63 3.72 par:pre; +invitante invitant adj f s 0.01 0.68 0.01 0.34 +invitantes invitant adj f p 0.01 0.68 0 0.14 +invitants invitant adj m p 0.01 0.68 0 0.07 +invitation invitation nom f s 18.27 18.24 15.08 14.53 +invitations invitation nom f p 18.27 18.24 3.18 3.72 +invite inviter ver 116.83 82.3 29.01 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +invitent inviter ver 116.83 82.3 3.12 1.42 ind:pre:3p; +inviter inviter ver 116.83 82.3 22.63 14.05 inf;;inf;;inf;; +invitera inviter ver 116.83 82.3 0.65 0.47 ind:fut:3s; +inviterai inviter ver 116.83 82.3 1.36 0.34 ind:fut:1s; +inviteraient inviter ver 116.83 82.3 0.03 0.14 cnd:pre:3p; +inviterais inviter ver 116.83 82.3 0.8 0.2 cnd:pre:1s;cnd:pre:2s; +inviterait inviter ver 116.83 82.3 0.2 0.54 cnd:pre:3s; +inviteras inviter ver 116.83 82.3 0.19 0.14 ind:fut:2s; +inviterez inviter ver 116.83 82.3 0.17 0.07 ind:fut:2p; +inviteriez inviter ver 116.83 82.3 0.05 0.14 cnd:pre:2p; +inviterions inviter ver 116.83 82.3 0 0.07 cnd:pre:1p; +inviterons inviter ver 116.83 82.3 0.07 0.14 ind:fut:1p; +inviteront inviter ver 116.83 82.3 0.02 0 ind:fut:3p; +invites inviter ver 116.83 82.3 3.64 0.14 ind:pre:2s;sub:pre:2s; +inviteur inviteur nom m s 0 0.14 0 0.07 +inviteurs inviteur nom m p 0 0.14 0 0.07 +invitez inviter ver 116.83 82.3 3.09 0.47 imp:pre:2p;ind:pre:2p; +invitiez inviter ver 116.83 82.3 0.24 0.14 ind:imp:2p; +invitions inviter ver 116.83 82.3 0.03 0.2 ind:imp:1p; +invitons inviter ver 116.83 82.3 0.93 0.2 imp:pre:1p;ind:pre:1p; +invitâmes inviter ver 116.83 82.3 0 0.14 ind:pas:1p; +invitât inviter ver 116.83 82.3 0 0.2 sub:imp:3s; +invitèrent inviter ver 116.83 82.3 0.11 0.74 ind:pas:3p; +invité inviter ver m s 116.83 82.3 28.27 14.05 par:pas; +invitée inviter ver f s 116.83 82.3 12.14 5.2 par:pas; +invitées inviter ver f p 116.83 82.3 0.66 0.74 par:pas; +invités invité nom m p 41.19 27.16 24.84 18.51 +invivable invivable adj s 0.43 1.22 0.43 1.22 +invocation invocation nom f s 0.69 1.96 0.55 1.28 +invocations invocation nom f p 0.69 1.96 0.14 0.68 +invocatoire invocatoire adj m s 0 0.07 0 0.07 +involontaire involontaire adj s 3.4 6.62 3.1 5.61 +involontairement involontairement adv 0.57 3.18 0.57 3.18 +involontaires involontaire adj p 3.4 6.62 0.3 1.01 +involutif involutif adj m s 0 0.14 0 0.07 +involutifs involutif adj m p 0 0.14 0 0.07 +involution involution nom f s 0 0.07 0 0.07 +invoqua invoquer ver 8.13 10.95 0.26 0.61 ind:pas:3s; +invoquai invoquer ver 8.13 10.95 0 0.2 ind:pas:1s; +invoquaient invoquer ver 8.13 10.95 0.01 0.34 ind:imp:3p; +invoquais invoquer ver 8.13 10.95 0 0.34 ind:imp:1s; +invoquait invoquer ver 8.13 10.95 0.01 1.28 ind:imp:3s; +invoquant invoquer ver 8.13 10.95 0.67 2.09 par:pre; +invoque invoquer ver 8.13 10.95 1.55 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +invoquent invoquer ver 8.13 10.95 0.31 0.27 ind:pre:3p; +invoquer invoquer ver 8.13 10.95 2.23 2.57 inf; +invoquera invoquer ver 8.13 10.95 0.06 0.07 ind:fut:3s; +invoquerai invoquer ver 8.13 10.95 0.04 0.14 ind:fut:1s; +invoquerais invoquer ver 8.13 10.95 0.11 0.07 cnd:pre:1s;cnd:pre:2s; +invoquerait invoquer ver 8.13 10.95 0.02 0 cnd:pre:3s; +invoquerez invoquer ver 8.13 10.95 0 0.07 ind:fut:2p; +invoquerons invoquer ver 8.13 10.95 0.02 0 ind:fut:1p; +invoques invoquer ver 8.13 10.95 0.15 0.14 ind:pre:2s; +invoquez invoquer ver 8.13 10.95 0.35 0.34 imp:pre:2p;ind:pre:2p; +invoquons invoquer ver 8.13 10.95 0.33 0 imp:pre:1p;ind:pre:1p; +invoquât invoquer ver 8.13 10.95 0 0.07 sub:imp:3s; +invoqué invoquer ver m s 8.13 10.95 1.52 1.22 par:pas; +invoquée invoquer ver f s 8.13 10.95 0.2 0.27 par:pas; +invoquées invoquer ver f p 8.13 10.95 0.12 0.07 par:pas; +invoqués invoquer ver m p 8.13 10.95 0.17 0.14 par:pas; +invraisemblable invraisemblable adj s 2.11 9.53 1.62 7.3 +invraisemblablement invraisemblablement adv 0 0.14 0 0.14 +invraisemblables invraisemblable adj p 2.11 9.53 0.48 2.23 +invraisemblance invraisemblance nom f s 0.17 1.76 0.14 1.35 +invraisemblances invraisemblance nom f p 0.17 1.76 0.04 0.41 +invulnérabilité invulnérabilité nom f s 0.28 0.54 0.28 0.54 +invulnérable invulnérable adj s 1.12 3.18 0.9 2.57 +invulnérables invulnérable adj p 1.12 3.18 0.22 0.61 +invérifiable invérifiable adj s 0.02 0.34 0.01 0.14 +invérifiables invérifiable adj f p 0.02 0.34 0.01 0.2 +invétéré invétéré adj m s 0.79 1.69 0.65 1.01 +invétérée invétéré adj f s 0.79 1.69 0.08 0.34 +invétérées invétéré adj f p 0.79 1.69 0 0.14 +invétérés invétéré adj m p 0.79 1.69 0.06 0.2 +inébranlable inébranlable adj s 1.2 3.72 1.05 3.04 +inébranlablement inébranlablement adv 0.14 0.2 0.14 0.2 +inébranlables inébranlable adj p 1.2 3.72 0.15 0.68 +inébranlé inébranlé adj m s 0 0.07 0 0.07 +inéchangeable inéchangeable adj f s 0 0.07 0 0.07 +inécoutée inécouté adj f s 0 0.07 0 0.07 +inédit inédit adj m s 1.1 5.34 0.65 0.95 +inédite inédit adj f s 1.1 5.34 0.28 2.5 +inédites inédit adj f p 1.1 5.34 0.12 0.95 +inédits inédit adj m p 1.1 5.34 0.06 0.95 +inéducable inéducable adj s 0.01 0 0.01 0 +inégal inégal adj m s 0.68 8.11 0.23 2.84 +inégalable inégalable adj s 0.38 1.22 0.36 0.95 +inégalables inégalable adj f p 0.38 1.22 0.01 0.27 +inégale inégal adj f s 0.68 8.11 0.29 1.69 +inégalement inégalement adv 0.03 1.01 0.03 1.01 +inégales inégal adj f p 0.68 8.11 0.08 1.76 +inégalité inégalité nom f s 0.67 1.62 0.33 1.35 +inégalités inégalité nom f p 0.67 1.62 0.34 0.27 +inégalé inégalé adj m s 0.17 0.54 0.06 0.2 +inégalée inégaler ver f s 0.22 0.41 0.18 0.27 par:pas; +inégalées inégalé adj f p 0.17 0.54 0 0.07 +inégaux inégal adj m p 0.68 8.11 0.07 1.82 +inéligibilité inéligibilité nom f s 0.14 0 0.14 0 +inéligible inéligible adj s 0.03 0.07 0.03 0.07 +inéluctabilité inéluctabilité nom f s 0 0.14 0 0.14 +inéluctable inéluctable adj s 1.01 5.74 0.97 5.34 +inéluctablement inéluctablement adv 0.27 1.01 0.27 1.01 +inéluctables inéluctable adj p 1.01 5.74 0.04 0.41 +inélégamment inélégamment adv 0 0.07 0 0.07 +inélégance inélégance nom f s 0.14 0 0.14 0 +inélégant inélégant adj m s 0.39 0.14 0.39 0.07 +inélégantes inélégant adj f p 0.39 0.14 0 0.07 +inénarrable inénarrable adj s 0.12 0.95 0.11 0.47 +inénarrables inénarrable adj p 0.12 0.95 0.01 0.47 +inépuisable inépuisable adj s 0.97 9.53 0.68 7.57 +inépuisablement inépuisablement adv 0 0.74 0 0.74 +inépuisables inépuisable adj p 0.97 9.53 0.28 1.96 +inépuisées inépuisé adj f p 0 0.14 0 0.14 +inéquitable inéquitable adj m s 0.04 0 0.04 0 +inévaluable inévaluable adj s 0 0.07 0 0.07 +inévitabilité inévitabilité nom f s 0.04 0 0.04 0 +inévitable inévitable adj s 7.44 16.49 6.96 13.38 +inévitablement inévitablement adv 1.02 3.51 1.02 3.51 +inévitables inévitable adj p 7.44 16.49 0.48 3.11 +iode iode nom m s 1.15 3.58 1.15 3.58 +iodle iodler ver 0.07 0 0.03 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +iodler iodler ver 0.07 0 0.03 0 inf; +iodoforme iodoforme nom m s 0.01 0.07 0.01 0.07 +iodure iodure nom m s 0.05 0 0.05 0 +iodé iodé adj m s 0.14 0.2 0 0.07 +iodée iodé adj f s 0.14 0.2 0.14 0.14 +ion ion nom m s 0.85 0.14 0.37 0.07 +ionien ionien adj m s 0 0.41 0 0.07 +ionienne ionienne adj f s 0.01 0.07 0.01 0.07 +ioniennes ionien adj f 0 0.41 0 0.27 +ioniens ionien adj m p 0 0.41 0 0.07 +ionique ionique adj s 0.45 0.07 0.35 0.07 +ioniques ionique adj p 0.45 0.07 0.1 0 +ionisant ionisant adj m s 0.05 0 0.04 0 +ionisante ionisant adj f s 0.05 0 0.01 0 +ionisation ionisation nom f s 0.23 0.14 0.23 0.14 +ioniser ioniser ver 0.04 0 0.02 0 inf; +ionisez ioniser ver 0.04 0 0.01 0 imp:pre:2p; +ionisé ionisé adj m s 0.15 0.07 0.05 0.07 +ionisée ionisé adj f s 0.15 0.07 0.1 0 +ionosphère ionosphère nom f s 0.2 0.07 0.2 0.07 +ions ion nom m p 0.85 0.14 0.48 0.07 +iota iota nom m 0.22 0.34 0.22 0.34 +ipomée ipomée nom f s 0 0.07 0 0.07 +ippon ippon nom m s 0.03 0 0.03 0 +ipse ipse nom m s 0.01 0.14 0.01 0.14 +ipso_facto ipso_facto adv 0.21 0.61 0.21 0.61 +ipéca ipéca nom m s 0.32 0.2 0.32 0.14 +ipécas ipéca nom m p 0.32 0.2 0 0.07 +ira aller ver 9992.77 2854.93 148.34 28.31 ind:fut:3s; +irai aller ver 9992.77 2854.93 71.96 27.7 ind:fut:1s; +iraient aller ver 9992.77 2854.93 1.65 5.47 cnd:pre:3p; +irais aller ver 9992.77 2854.93 20.14 11.96 cnd:pre:1s;cnd:pre:2s; +irait aller ver 9992.77 2854.93 22.44 26.01 cnd:pre:3s; +irakien irakien adj m s 1.19 0.34 0.86 0.07 +irakienne irakien adj f s 1.19 0.34 0.13 0.27 +irakiens irakien nom m p 0.64 0.07 0.56 0.07 +iranien iranien adj m s 0.41 0.41 0.2 0.07 +iranienne iranien adj f s 0.41 0.41 0.12 0.07 +iraniennes iranien adj f p 0.41 0.41 0.01 0.14 +iraniens iranien nom m p 0.36 0.47 0.28 0.14 +iraquien iraquien adj m s 0.16 0 0.09 0 +iraquienne iraquien adj f s 0.16 0 0.07 0 +iraquiens iraquien nom m p 0.11 0 0.08 0 +iras aller ver 9992.77 2854.93 24.9 6.76 ind:fut:2s; +irascible irascible adj s 0.65 1.55 0.52 1.28 +irascibles irascible adj m p 0.65 1.55 0.14 0.27 +ire ire nom f s 0.58 0.81 0.55 0.74 +ires ire nom f p 0.58 0.81 0.03 0.07 +irez aller ver 9992.77 2854.93 14.29 5.41 ind:fut:2p; +iridescence iridescence nom f s 0.01 0 0.01 0 +iridescent iridescent adj m s 0.01 0.07 0.01 0 +iridescentes iridescent adj f p 0.01 0.07 0 0.07 +iridium iridium nom m s 0.18 0.34 0.18 0.34 +iridologie iridologie nom f s 0.01 0 0.01 0 +iriez aller ver 9992.77 2854.93 2.02 1.08 cnd:pre:2p; +irions aller ver 9992.77 2854.93 1.1 2.91 cnd:pre:1p; +iris iris nom m 3.93 6.42 3.93 6.42 +irisaient iriser ver 0.01 2.03 0 0.14 ind:imp:3p; +irisait iriser ver 0.01 2.03 0 0.2 ind:imp:3s; +irisant iriser ver 0.01 2.03 0 0.07 par:pre; +irisation irisation nom f s 0 0.81 0 0.47 +irisations irisation nom f p 0 0.81 0 0.34 +irise iriser ver 0.01 2.03 0.01 0.14 ind:pre:3s; +irisent iriser ver 0.01 2.03 0 0.14 ind:pre:3p; +iriser iriser ver 0.01 2.03 0 0.07 inf; +iriserait iriser ver 0.01 2.03 0 0.07 cnd:pre:3s; +irish_coffee irish_coffee nom m s 0.16 0.14 0.16 0.14 +irisé irisé adj m s 0.05 1.96 0 0.41 +irisée irisé adj f s 0.05 1.96 0 0.61 +irisées irisé adj f p 0.05 1.96 0.03 0.54 +irisés irisé adj m p 0.05 1.96 0.02 0.41 +irlandais irlandais adj m 4.75 3.78 3.71 2.43 +irlandaise irlandais adj f s 4.75 3.78 0.89 1.08 +irlandaises irlandais adj f p 4.75 3.78 0.15 0.27 +ironie ironie nom f s 6.05 24.19 6 23.78 +ironies ironie nom f p 6.05 24.19 0.05 0.41 +ironique ironique adj s 3.73 16.28 3.67 13.72 +ironiquement ironiquement adv 0.95 2.77 0.95 2.77 +ironiques ironique adj p 3.73 16.28 0.06 2.57 +ironisa ironiser ver 0.44 2.5 0 1.01 ind:pas:3s; +ironisai ironiser ver 0.44 2.5 0 0.07 ind:pas:1s; +ironisais ironiser ver 0.44 2.5 0 0.14 ind:imp:1s;ind:imp:2s; +ironisait ironiser ver 0.44 2.5 0 0.14 ind:imp:3s; +ironise ironiser ver 0.44 2.5 0.01 0.34 imp:pre:2s;ind:pre:3s; +ironisent ironiser ver 0.44 2.5 0.01 0.07 ind:pre:3p; +ironiser ironiser ver 0.44 2.5 0.42 0.47 inf; +ironisme ironisme nom m s 0 0.07 0 0.07 +ironiste ironiste nom s 0 0.14 0 0.14 +ironisé ironiser ver m s 0.44 2.5 0 0.27 par:pas; +irons aller ver 9992.77 2854.93 15.36 9.32 ind:fut:1p; +iront aller ver 9992.77 2854.93 7.43 4.73 ind:fut:3p; +iroquois iroquois nom m 0.05 0 0.05 0 +iroquoise iroquois adj f s 0.22 0.27 0.17 0 +irradia irradier ver 0.65 4.32 0 0.14 ind:pas:3s; +irradiaient irradier ver 0.65 4.32 0 0.2 ind:imp:3p; +irradiait irradier ver 0.65 4.32 0.03 1.28 ind:imp:3s; +irradiant irradiant adj m s 0.11 0.54 0.03 0.2 +irradiante irradiant adj f s 0.11 0.54 0.05 0.34 +irradiantes irradiant adj f p 0.11 0.54 0.04 0 +irradiation irradiation nom f s 0.27 0.34 0.26 0.2 +irradiations irradiation nom f p 0.27 0.34 0.01 0.14 +irradie irradier ver 0.65 4.32 0.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +irradier irradier ver 0.65 4.32 0.01 0.68 inf; +irradiera irradier ver 0.65 4.32 0.01 0 ind:fut:3s; +irradiez irradier ver 0.65 4.32 0 0.07 ind:pre:2p; +irradié irradier ver m s 0.65 4.32 0.27 0.27 par:pas; +irradiée irradier ver f s 0.65 4.32 0.06 0.07 par:pas; +irradiées irradier ver f p 0.65 4.32 0.03 0 par:pas; +irradiés irradier ver m p 0.65 4.32 0.1 0 par:pas; +irraisonnable irraisonnable adj s 0.01 0.07 0.01 0.07 +irraisonné irraisonné adj m s 0.07 1.49 0.03 0.27 +irraisonnée irraisonné adj f s 0.07 1.49 0.02 1.15 +irraisonnés irraisonné adj m p 0.07 1.49 0.01 0.07 +irrationalité irrationalité nom f s 0.04 0.07 0.04 0.07 +irrationnel irrationnel adj m s 1.63 1.15 0.61 0.81 +irrationnelle irrationnel adj f s 1.63 1.15 0.77 0.14 +irrationnellement irrationnellement adv 0.01 0.07 0.01 0.07 +irrationnelles irrationnel adj f p 1.63 1.15 0.16 0.14 +irrationnels irrationnel adj m p 1.63 1.15 0.1 0.07 +irrattrapable irrattrapable adj m s 0.12 0.27 0.12 0.14 +irrattrapables irrattrapable adj p 0.12 0.27 0 0.14 +irrecevabilité irrecevabilité nom f s 0.02 0.14 0.02 0.14 +irrecevable irrecevable adj s 0.72 0.14 0.61 0.14 +irrecevables irrecevable adj p 0.72 0.14 0.12 0 +irremplaçable irremplaçable adj s 1.23 5.14 1.11 4.26 +irremplaçables irremplaçable adj p 1.23 5.14 0.13 0.88 +irreprésentable irreprésentable adj s 0 0.07 0 0.07 +irrespect irrespect nom m s 0.13 0.68 0.13 0.68 +irrespectueuse irrespectueux adj f s 0.71 1.01 0.04 0.27 +irrespectueusement irrespectueusement adv 0.02 0.07 0.02 0.07 +irrespectueuses irrespectueux adj f p 0.71 1.01 0 0.07 +irrespectueux irrespectueux adj m 0.71 1.01 0.68 0.68 +irrespirable irrespirable adj s 0.61 2.57 0.61 2.43 +irrespirables irrespirable adj f p 0.61 2.57 0 0.14 +irresponsabilité irresponsabilité nom f s 1.45 1.49 1.45 1.49 +irresponsable irresponsable adj s 6.29 2.7 4.99 2.09 +irresponsables irresponsable adj p 6.29 2.7 1.3 0.61 +irrigateur irrigateur adj m s 0.01 0 0.01 0 +irrigateurs irrigateur nom m p 0 0.07 0 0.07 +irrigation irrigation nom f s 0.86 1.55 0.86 1.55 +irriguaient irriguer ver 0.5 2.84 0 0.14 ind:imp:3p; +irriguait irriguer ver 0.5 2.84 0 0.34 ind:imp:3s; +irriguant irriguer ver 0.5 2.84 0.01 0.14 par:pre; +irrigue irriguer ver 0.5 2.84 0.14 0.2 imp:pre:2s;ind:pre:3s; +irriguent irriguer ver 0.5 2.84 0.01 0.07 ind:pre:3p; +irriguer irriguer ver 0.5 2.84 0.17 0.47 inf; +irriguera irriguer ver 0.5 2.84 0.02 0 ind:fut:3s; +irrigueraient irriguer ver 0.5 2.84 0 0.07 cnd:pre:3p; +irriguerait irriguer ver 0.5 2.84 0 0.2 cnd:pre:3s; +irriguons irriguer ver 0.5 2.84 0 0.07 imp:pre:1p; +irrigué irriguer ver m s 0.5 2.84 0.08 0.41 par:pas; +irriguée irriguer ver f s 0.5 2.84 0.03 0.47 par:pas; +irriguées irriguer ver f p 0.5 2.84 0.03 0.07 par:pas; +irrigués irriguer ver m p 0.5 2.84 0.01 0.2 par:pas; +irrita irriter ver 6.7 24.93 0.11 1.35 ind:pas:3s; +irritabilité irritabilité nom f s 0.2 0.07 0.2 0.07 +irritable irritable adj s 1.71 1.55 1.56 1.22 +irritables irritable adj f p 1.71 1.55 0.15 0.34 +irritai irriter ver 6.7 24.93 0 0.2 ind:pas:1s; +irritaient irriter ver 6.7 24.93 0.01 0.68 ind:imp:3p; +irritais irriter ver 6.7 24.93 0.01 0.81 ind:imp:1s; +irritait irriter ver 6.7 24.93 0.44 5.68 ind:imp:3s; +irritant irritant adj m s 1.18 4.26 0.8 1.89 +irritante irritant adj f s 1.18 4.26 0.17 1.42 +irritantes irritant adj f p 1.18 4.26 0.01 0.47 +irritants irritant adj m p 1.18 4.26 0.2 0.47 +irritation irritation nom f s 1 9.39 0.8 9.19 +irritations irritation nom f p 1 9.39 0.2 0.2 +irrite irriter ver 6.7 24.93 2.62 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +irritent irriter ver 6.7 24.93 0.2 0.68 ind:pre:3p; +irriter irriter ver 6.7 24.93 0.79 2.36 inf; +irritera irriter ver 6.7 24.93 0.01 0 ind:fut:3s; +irriterait irriter ver 6.7 24.93 0.02 0.2 cnd:pre:3s; +irriterons irriter ver 6.7 24.93 0.01 0 ind:fut:1p; +irritez irriter ver 6.7 24.93 0.08 0.07 imp:pre:2p;ind:pre:2p; +irritons irriter ver 6.7 24.93 0 0.07 ind:pre:1p; +irritât irriter ver 6.7 24.93 0 0.14 sub:imp:3s; +irritèrent irriter ver 6.7 24.93 0 0.14 ind:pas:3p; +irrité irriter ver m s 6.7 24.93 1.29 5 par:pas; +irritée irriter ver f s 6.7 24.93 0.82 3.24 par:pas; +irritées irriter ver f p 6.7 24.93 0.22 0.41 par:pas; +irrités irriter ver m p 6.7 24.93 0.07 0.47 par:pas; +irroration irroration nom f s 0 0.07 0 0.07 +irruption irruption nom f s 2.82 11.69 2.79 11.35 +irruptions irruption nom f p 2.82 11.69 0.03 0.34 +irréalisable irréalisable adj s 0.51 1.08 0.47 0.88 +irréalisables irréalisable adj m p 0.51 1.08 0.03 0.2 +irréalisait irréaliser ver 0 0.14 0 0.07 ind:imp:3s; +irréalise irréaliser ver 0 0.14 0 0.07 ind:pre:3s; +irréalisme irréalisme nom m s 0 0.07 0 0.07 +irréaliste irréaliste adj s 0.46 0.14 0.35 0.14 +irréalistes irréaliste adj p 0.46 0.14 0.1 0 +irréalisé irréalisé adj m s 0 0.14 0 0.07 +irréalisés irréalisé adj m p 0 0.14 0 0.07 +irréalité irréalité nom f s 0.14 3.51 0.14 3.51 +irréconciliable irréconciliable adj s 0.32 0.2 0.28 0.14 +irréconciliables irréconciliable adj f p 0.32 0.2 0.04 0.07 +irrécupérable irrécupérable adj s 0.98 2.03 0.81 1.42 +irrécupérables irrécupérable adj p 0.98 2.03 0.18 0.61 +irrécusable irrécusable adj s 0.02 1.01 0.02 0.81 +irrécusables irrécusable adj m p 0.02 1.01 0 0.2 +irréductible irréductible adj s 0.29 2.64 0 1.49 +irréductiblement irréductiblement adv 0.01 0.14 0.01 0.14 +irréductibles irréductible adj p 0.29 2.64 0.29 1.15 +irréel irréel adj m s 2.84 12.43 1.87 5.27 +irréelle irréel adj f s 2.84 12.43 0.86 4.53 +irréellement irréellement adv 0 0.2 0 0.2 +irréelles irréel adj f p 2.84 12.43 0.07 1.15 +irréels irréel adj m p 2.84 12.43 0.04 1.49 +irréfléchi irréfléchi adj m s 0.92 0.54 0.4 0.14 +irréfléchie irréfléchi adj f s 0.92 0.54 0.34 0.41 +irréfléchis irréfléchi adj m p 0.92 0.54 0.18 0 +irréfragable irréfragable adj s 0.07 0.2 0.07 0.2 +irréfutable irréfutable adj s 1.58 2.77 0.97 2.09 +irréfutablement irréfutablement adv 0.03 0.2 0.03 0.2 +irréfutables irréfutable adj p 1.58 2.77 0.6 0.68 +irrégularité irrégularité nom f s 0.96 1.55 0.54 0.74 +irrégularités irrégularité nom f p 0.96 1.55 0.42 0.81 +irrégulier irrégulier adj m s 2.7 7.64 1.44 1.82 +irréguliers irrégulier adj m p 2.7 7.64 0.38 2.09 +irrégulière irrégulier adj f s 2.7 7.64 0.59 2.16 +irrégulièrement irrégulièrement adv 0.03 1.76 0.03 1.76 +irrégulières irrégulier adj f p 2.7 7.64 0.29 1.55 +irréligieuse irréligieux adj f s 0.04 0.07 0.01 0 +irréligieux irréligieux adj m s 0.04 0.07 0.03 0.07 +irréligiosité irréligiosité nom f s 0 0.07 0 0.07 +irrémissible irrémissible adj s 0.16 0.27 0.16 0.27 +irrémédiable irrémédiable adj s 0.57 5.34 0.52 5.07 +irrémédiablement irrémédiablement adv 1.12 4.19 1.12 4.19 +irrémédiables irrémédiable adj p 0.57 5.34 0.06 0.27 +irréparable irréparable adj s 1.73 4.39 1.33 3.58 +irréparablement irréparablement adv 0 0.14 0 0.14 +irréparables irréparable adj p 1.73 4.39 0.4 0.81 +irrépressible irrépressible adj s 0.95 3.99 0.79 3.24 +irrépressibles irrépressible adj p 0.95 3.99 0.16 0.74 +irréprochable irréprochable adj s 2.38 4.46 1.82 3.38 +irréprochablement irréprochablement adv 0 0.2 0 0.2 +irréprochables irréprochable adj p 2.38 4.46 0.56 1.08 +irrésistible irrésistible adj s 4.67 15.34 4.33 13.78 +irrésistiblement irrésistiblement adv 0.14 4.66 0.14 4.66 +irrésistibles irrésistible adj p 4.67 15.34 0.33 1.55 +irrésolu irrésolu adj m s 0.33 0.68 0.04 0.47 +irrésolue irrésolu adj f s 0.33 0.68 0.17 0 +irrésolues irrésolu adj f p 0.33 0.68 0.07 0.07 +irrésolus irrésolu adj m p 0.33 0.68 0.05 0.14 +irrésolution irrésolution nom f s 0.01 0.2 0.01 0.2 +irrétrécissable irrétrécissable adj s 0.01 0 0.01 0 +irréversibilité irréversibilité nom f s 0 0.27 0 0.27 +irréversible irréversible adj s 1.92 2.43 1.33 1.96 +irréversiblement irréversiblement adv 0.15 0.34 0.15 0.34 +irréversibles irréversible adj p 1.92 2.43 0.59 0.47 +irrévocabilité irrévocabilité nom f s 0.01 0 0.01 0 +irrévocable irrévocable adj s 0.82 0.81 0.68 0.68 +irrévocablement irrévocablement adv 0.21 0.47 0.21 0.47 +irrévocables irrévocable adj p 0.82 0.81 0.14 0.14 +irrévérence irrévérence nom f s 0.3 0.2 0.3 0.2 +irrévérencieuse irrévérencieux adj f s 0.16 0.27 0.1 0.07 +irrévérencieusement irrévérencieusement adv 0 0.14 0 0.14 +irrévérencieuses irrévérencieux adj f p 0.16 0.27 0 0.14 +irrévérencieux irrévérencieux adj m s 0.16 0.27 0.06 0.07 +isabelle isabelle adj 1.85 0.47 1.85 0.47 +isard isard nom m s 0 0.54 0 0.34 +isards isard nom m p 0 0.54 0 0.2 +isatis isatis nom m 0 0.07 0 0.07 +isba isba nom f s 0.4 5.34 0.4 4.05 +isbas isba nom f p 0.4 5.34 0 1.28 +ischion ischion nom m s 0.01 0.14 0.01 0.14 +ischémie ischémie nom f s 0.23 0 0.23 0 +ischémique ischémique adj s 0.13 0 0.13 0 +islam islam nom m s 2.84 2.3 2.84 2.3 +islamique islamique adj s 1.49 0.54 1.3 0.47 +islamiques islamique adj p 1.49 0.54 0.2 0.07 +islamisants islamisant adj m p 0 0.07 0 0.07 +islamiser islamiser ver 0.01 0.07 0.01 0 inf; +islamisme islamisme nom m s 0.01 0.07 0.01 0.07 +islamiste islamiste adj s 0.19 0 0.15 0 +islamistes islamiste nom p 0.09 0.14 0.09 0.14 +islamisée islamisé adj f s 0 0.07 0 0.07 +islamisées islamiser ver f p 0.01 0.07 0 0.07 par:pas; +islandais islandais adj m s 0.44 0.81 0.29 0.34 +islandaise islandais adj f s 0.44 0.81 0.15 0.47 +ismaélien ismaélien nom m s 0.01 0.07 0.01 0 +ismaéliens ismaélien nom m p 0.01 0.07 0 0.07 +ismaélite ismaélite adj m s 0.01 0 0.01 0 +ismaïliens ismaïlien nom m p 0 0.07 0 0.07 +isme isme nom m s 0.34 0 0.34 0 +isochronisme isochronisme nom m s 0.01 0 0.01 0 +isocèle isocèle adj s 0.05 0.14 0.05 0.14 +isola isoler ver 14.1 23.45 0.04 1.28 ind:pas:3s; +isolables isolable adj m p 0 0.07 0 0.07 +isolai isoler ver 14.1 23.45 0 0.14 ind:pas:1s; +isolaient isoler ver 14.1 23.45 0.02 0.47 ind:imp:3p; +isolais isoler ver 14.1 23.45 0.01 0.14 ind:imp:1s;ind:imp:2s; +isolait isoler ver 14.1 23.45 0.05 2.57 ind:imp:3s; +isolant isolant nom m s 0.45 0.14 0.45 0.14 +isolante isolant adj f s 0.27 0.14 0.13 0.07 +isolateur isolateur nom m s 0 0.14 0 0.07 +isolateurs isolateur adj m p 0.01 0.07 0.01 0 +isolation isolation nom f s 1.02 0.34 1.02 0.2 +isolationnisme isolationnisme nom m s 0.05 0.2 0.05 0.2 +isolationniste isolationniste adj f s 0.02 0.07 0.02 0.07 +isolations isolation nom f p 1.02 0.34 0 0.14 +isole isoler ver 14.1 23.45 1.36 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +isolement isolement nom m s 5.63 7.97 5.63 7.91 +isolements isolement nom m p 5.63 7.97 0 0.07 +isolent isoler ver 14.1 23.45 0.46 0.47 ind:pre:3p; +isoler isoler ver 14.1 23.45 4.62 5.74 inf; +isolera isoler ver 14.1 23.45 0.03 0 ind:fut:3s; +isoleraient isoler ver 14.1 23.45 0 0.14 cnd:pre:3p; +isolerait isoler ver 14.1 23.45 0.01 0.27 cnd:pre:3s; +isoleront isoler ver 14.1 23.45 0.02 0 ind:fut:3p; +isolez isoler ver 14.1 23.45 0.65 0 imp:pre:2p;ind:pre:2p; +isoliez isoler ver 14.1 23.45 0 0.07 ind:imp:2p; +isolions isoler ver 14.1 23.45 0.03 0 ind:imp:1p; +isoloir isoloir nom m s 0.75 0.14 0.58 0.14 +isoloirs isoloir nom m p 0.75 0.14 0.16 0 +isolèrent isoler ver 14.1 23.45 0 0.2 ind:pas:3p; +isolé isolé adj m s 8.17 14.8 4.08 4.46 +isolée isolé adj f s 8.17 14.8 1.98 4.12 +isolées isoler ver f p 14.1 23.45 0.35 1.01 par:pas; +isolément isolément adv 0.14 1.28 0.14 1.28 +isolés isolé adj m p 8.17 14.8 1.79 4.66 +isomère isomère adj f s 0.25 0 0.25 0 +isométrique isométrique adj f s 0.02 0 0.02 0 +isoniazide isoniazide nom m s 0.01 0 0.01 0 +isorel isorel nom m s 0 0.14 0 0.14 +isotherme isotherme adj m s 0.11 0 0.11 0 +isothermique isothermique adj f s 0.01 0 0.01 0 +isotonique isotonique adj f s 0.1 0 0.1 0 +isotope isotope nom m s 0.64 0 0.37 0 +isotopes isotope nom m p 0.64 0 0.26 0 +isotopique isotopique adj f s 0.04 0 0.04 0 +israélien israélien adj m s 5.63 0.54 2.22 0.47 +israélienne israélien adj f s 5.63 0.54 1.54 0.07 +israéliennes israélien adj f p 5.63 0.54 0.15 0 +israéliens israélien nom m p 4.53 1.08 4 0.74 +israélite israélite adj s 0.7 0.81 0.57 0.41 +israélites israélite nom p 0.41 0.68 0.39 0.54 +israélo_arabe israélo_arabe adj f s 0.01 0 0.01 0 +israélo_syrien israélo_syrien adj f s 0.14 0 0.14 0 +issu issu adj m s 5.24 8.51 2.1 3.58 +issue issue nom f s 16.52 22.7 13.7 19.26 +issues issue nom f p 16.52 22.7 2.82 3.45 +issus issu adj m p 5.24 8.51 1.29 2.16 +isthme isthme nom m s 0.19 0.61 0.19 0.54 +isthmes isthme nom m p 0.19 0.61 0 0.07 +isthmique isthmique adj f s 0.01 0 0.01 0 +italianisme italianisme nom m s 0 0.14 0 0.14 +italiano italiano nom m s 0.24 0.07 0.24 0.07 +italien italien adj m s 26.66 35.74 13.01 13.51 +italienne italien adj f s 26.66 35.74 7.56 11.62 +italiennes italien adj f p 26.66 35.74 1.54 4.05 +italiens italien nom m p 23.82 27.57 9.07 9.73 +italique italique adj m s 0.14 0.68 0.12 0.07 +italiques italique adj f p 0.14 0.68 0.02 0.61 +italo_allemand italo_allemand adj f s 0 0.2 0 0.07 +italo_allemand italo_allemand adj f p 0 0.2 0 0.14 +italo_américain italo_américain adj m s 0.2 0 0.15 0 +italo_américain italo_américain adj f s 0.2 0 0.04 0 +italo_brésilien italo_brésilien adj m s 0 0.07 0 0.07 +italo_français italo_français adj m 0 0.14 0 0.07 +italo_français italo_français adj f p 0 0.14 0 0.07 +italo_irlandais italo_irlandais adj m 0.01 0 0.01 0 +italo_polonais italo_polonais adj m 0 0.07 0 0.07 +italo_égyptien italo_égyptien adj m s 0 0.07 0 0.07 +ite_missa_est ite_missa_est nom m 0 0.14 0 0.14 +item item nom m s 0.09 1.49 0.09 1.49 +ithos ithos nom m 0 0.07 0 0.07 +ithyphallique ithyphallique adj m s 0 0.14 0 0.14 +itinéraire itinéraire nom m s 4.18 10.47 3.25 8.45 +itinéraires itinéraire nom m p 4.18 10.47 0.93 2.03 +itinérant itinérant adj m s 0.51 0.74 0.39 0.2 +itinérante itinérant adj f s 0.51 0.74 0.06 0.27 +itinérantes itinérant adj f p 0.51 0.74 0.01 0.07 +itinérants itinérant nom m p 0.2 0 0.2 0 +itou itou adv_sup 0.3 1.82 0.3 1.82 +iules iule nom m p 0 0.07 0 0.07 +ive ive nom f s 0.81 0.68 0.01 0.68 +ives ive nom f p 0.81 0.68 0.81 0 +ivoire ivoire nom m s 1.98 8.38 1.96 7.84 +ivoires ivoire nom m p 1.98 8.38 0.02 0.54 +ivoirien ivoirien adj m s 0 0.14 0 0.14 +ivoirienne ivoirienne nom f s 0 0.07 0 0.07 +ivoirin ivoirin adj m s 0 0.74 0 0.68 +ivoirine ivoirin nom f s 0 0.41 0 0.27 +ivoirines ivoirin nom f p 0 0.41 0 0.14 +ivoirins ivoirin adj m p 0 0.74 0 0.07 +ivraie ivraie nom f s 0.21 0.68 0.21 0.68 +ivre ivre adj s 18.32 27.7 16.59 21.76 +ivres ivre adj p 18.32 27.7 1.72 5.95 +ivresse ivresse nom f s 3.56 18.11 3.29 17.5 +ivresses ivresse nom f p 3.56 18.11 0.27 0.61 +ivrognait ivrogner ver 0 0.2 0 0.07 ind:imp:3s; +ivrognasse ivrogner ver 0 0.2 0 0.07 sub:imp:1s; +ivrogne ivrogne nom s 10.6 13.92 7.81 8.72 +ivrogner ivrogner ver 0 0.2 0 0.07 inf; +ivrognerie ivrognerie nom f s 0.21 0.88 0.21 0.88 +ivrognes ivrogne nom p 10.6 13.92 2.79 5.2 +ivrognesse ivrognesse nom f s 0.01 0.07 0.01 0.07 +ixe ixer ver 0 0.34 0 0.34 ind:pre:3s; +ixième ixième adj f s 0 0.07 0 0.07 +j j pro_per s 3.16 0.88 3.16 0.88 +jabadao jabadao nom m s 0 0.2 0 0.2 +jabot jabot nom m s 0.16 2.16 0.15 1.89 +jaboter jaboter ver 0 0.07 0 0.07 inf; +jabots jabot nom m p 0.16 2.16 0.01 0.27 +jacarandas jacaranda nom m p 0 0.2 0 0.2 +jacassaient jacasser ver 1.58 2.09 0.01 0.47 ind:imp:3p; +jacassais jacasser ver 1.58 2.09 0.01 0 ind:imp:1s; +jacassait jacasser ver 1.58 2.09 0.04 0.2 ind:imp:3s; +jacassant jacasser ver 1.58 2.09 0.03 0.41 par:pre; +jacassante jacassant adj f s 0 0.61 0 0.14 +jacassantes jacassant adj f p 0 0.61 0 0.27 +jacassants jacassant adj m p 0 0.61 0 0.07 +jacasse jacasser ver 1.58 2.09 0.33 0.2 ind:pre:1s;ind:pre:3s; +jacassement jacassement nom m s 0.06 0.81 0.03 0.47 +jacassements jacassement nom m p 0.06 0.81 0.04 0.34 +jacassent jacasser ver 1.58 2.09 0.13 0.07 ind:pre:3p; +jacasser jacasser ver 1.58 2.09 0.91 0.61 inf; +jacasseraient jacasser ver 1.58 2.09 0 0.07 cnd:pre:3p; +jacasserie jacasserie nom f s 0.04 0.34 0 0.07 +jacasseries jacasserie nom f p 0.04 0.34 0.04 0.27 +jacasses jacasser ver 1.58 2.09 0.05 0 ind:pre:2s; +jacasseur jacasseur nom m s 0.04 0.07 0.03 0 +jacasseurs jacasseur nom m p 0.04 0.07 0 0.07 +jacasseuse jacasseur nom f s 0.04 0.07 0.01 0 +jacassez jacasser ver 1.58 2.09 0.04 0 imp:pre:2p;ind:pre:2p; +jacassiers jacassier nom m p 0 0.2 0 0.07 +jacassiez jacasser ver 1.58 2.09 0 0.07 ind:imp:2p; +jacassière jacassier nom f s 0 0.2 0 0.14 +jacassé jacasser ver m s 1.58 2.09 0.03 0 par:pas; +jachère jachère nom f s 0.12 0.88 0.12 0.74 +jachères jachère nom f p 0.12 0.88 0 0.14 +jacinthe jacinthe nom f s 0.15 1.28 0.01 0.54 +jacinthes jacinthe nom f p 0.15 1.28 0.14 0.74 +jack jack nom m s 2.26 0.07 1.86 0.07 +jacket jacket nom f s 0.23 0.14 0.04 0.07 +jackets jacket nom f p 0.23 0.14 0.19 0.07 +jackpot jackpot nom m s 1.96 0.27 1.96 0.27 +jacks jack nom m p 2.26 0.07 0.4 0 +jacob jacob nom m s 0.09 0.2 0.09 0.2 +jacobin jacobin adj m s 0.11 0.14 0.1 0 +jacobine jacobin adj f s 0.11 0.14 0 0.14 +jacobins jacobin adj m p 0.11 0.14 0.01 0 +jacobite jacobite adj m s 0.07 0.2 0.05 0.2 +jacobites jacobite nom p 0.18 0.14 0.14 0.14 +jacobées jacobée nom f p 0 0.07 0 0.07 +jacot jacot nom m s 0 0.41 0 0.41 +jacquard jacquard nom m s 0.11 1.28 0.11 1.28 +jacqueline jacqueline nom f s 0.01 0 0.01 0 +jacquemart jacquemart nom m s 0 0.2 0 0.07 +jacquemarts jacquemart nom m p 0 0.2 0 0.14 +jacqueries jacquerie nom f p 0 0.14 0 0.14 +jacques jacques nom m 3.12 4.73 3.12 4.73 +jacquet jacquet nom m s 0.25 2.57 0.25 2.57 +jacquier jacquier nom m s 0 0.68 0 0.68 +jacquot jacquot nom m s 0.01 0 0.01 0 +jactais jacter ver 0.36 9.53 0 0.07 ind:imp:1s; +jactait jacter ver 0.36 9.53 0 1.01 ind:imp:3s; +jactance jactance nom f s 0.4 3.85 0.4 3.85 +jactancier jactancier adj m s 0 0.07 0 0.07 +jactant jacter ver 0.36 9.53 0 0.14 par:pre; +jacte jacter ver 0.36 9.53 0.17 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jactent jacter ver 0.36 9.53 0 0.34 ind:pre:3p; +jacter jacter ver 0.36 9.53 0.14 3.92 inf; +jacteraient jacter ver 0.36 9.53 0 0.07 cnd:pre:3p; +jacterais jacter ver 0.36 9.53 0.01 0 cnd:pre:2s; +jactes jacter ver 0.36 9.53 0.01 0.2 ind:pre:2s; +jacteur jacteur nom m s 0 0.14 0 0.14 +jactez jacter ver 0.36 9.53 0.01 0.14 imp:pre:2p;ind:pre:2p; +jactions jacter ver 0.36 9.53 0 0.07 ind:imp:1p; +jacté jacter ver m s 0.36 9.53 0.02 1.01 par:pas; +jaculatoire jaculatoire adj f s 0 0.07 0 0.07 +jacuzzi jacuzzi nom m s 3.46 0.14 3.32 0.07 +jacuzzis jacuzzi nom m p 3.46 0.14 0.14 0.07 +jade jade nom m s 0.66 3.51 0.63 3.38 +jades jade nom m p 0.66 3.51 0.03 0.14 +jadis jadis adv_sup 11.55 52.3 11.55 52.3 +jaffa jaffer ver 5.41 0.2 0.79 0 ind:pas:3s; +jaffas jaffer ver 5.41 0.2 4.57 0 ind:pas:2s; +jaffe jaffe nom f s 0.17 0.74 0.17 0.74 +jaffer jaffer ver 5.41 0.2 0.05 0.2 inf; +jaguar jaguar nom m s 0.91 0.61 0.65 0.41 +jaguarondi jaguarondi nom m s 0.01 0 0.01 0 +jaguars jaguar nom m p 0.91 0.61 0.27 0.2 +jailli jaillir ver m s 5.79 43.24 0.69 5.47 par:pas; +jaillie jaillir ver f s 5.79 43.24 0.05 1.01 par:pas; +jaillies jaillir ver f p 5.79 43.24 0 0.68 par:pas; +jaillir jaillir ver 5.79 43.24 2.03 9.73 inf; +jaillira jaillir ver 5.79 43.24 0.34 0.27 ind:fut:3s; +jailliraient jaillir ver 5.79 43.24 0 0.07 cnd:pre:3p; +jaillirait jaillir ver 5.79 43.24 0.01 0.27 cnd:pre:3s; +jaillirent jaillir ver 5.79 43.24 0.06 1.42 ind:pas:3p; +jailliront jaillir ver 5.79 43.24 0.03 0.07 ind:fut:3p; +jaillis jaillir ver m p 5.79 43.24 0.15 1.28 ind:pre:1s;ind:pre:2s;par:pas; +jaillissaient jaillir ver 5.79 43.24 0.07 2.57 ind:imp:3p; +jaillissait jaillir ver 5.79 43.24 0.17 3.85 ind:imp:3s; +jaillissant jaillir ver 5.79 43.24 0.17 2.03 par:pre; +jaillissante jaillissant adj f s 0.02 1.69 0.01 0.74 +jaillissantes jaillissant adj f p 0.02 1.69 0.01 0.14 +jaillissants jaillissant adj m p 0.02 1.69 0 0.07 +jaillisse jaillir ver 5.79 43.24 0.08 0.41 sub:pre:3s; +jaillissement jaillissement nom m s 0.25 1.82 0.25 1.49 +jaillissements jaillissement nom m p 0.25 1.82 0 0.34 +jaillissent jaillir ver 5.79 43.24 0.53 3.99 ind:pre:3p; +jaillit jaillir ver 5.79 43.24 1.43 10.07 ind:pre:3s;ind:pas:3s; +jaillît jaillir ver 5.79 43.24 0 0.07 sub:imp:3s; +jais jais nom m 0.43 6.82 0.43 6.82 +jaja jaja nom m s 0.2 0.61 0.2 0.61 +jalmince jalmince adj s 0 1.22 0 0.95 +jalminces jalmince adj p 0 1.22 0 0.27 +jalon jalon nom m s 0.17 2.7 0.03 1.08 +jalonnaient jalonner ver 0.12 5 0.01 1.08 ind:imp:3p; +jalonnais jalonner ver 0.12 5 0 0.07 ind:imp:1s; +jalonnait jalonner ver 0.12 5 0 0.2 ind:imp:3s; +jalonnant jalonner ver 0.12 5 0.02 0.27 par:pre; +jalonne jalonner ver 0.12 5 0.01 0.07 ind:pre:1s;ind:pre:3s; +jalonnent jalonner ver 0.12 5 0.04 1.28 ind:pre:3p; +jalonner jalonner ver 0.12 5 0 0.2 inf; +jalonné jalonner ver m s 0.12 5 0.02 0.61 par:pas; +jalonnée jalonner ver f s 0.12 5 0.02 0.95 par:pas; +jalonnés jalonner ver m p 0.12 5 0 0.27 par:pas; +jalons jalon nom m p 0.17 2.7 0.14 1.62 +jalousaient jalouser ver 0.26 1.69 0.02 0.2 ind:imp:3p; +jalousais jalouser ver 0.26 1.69 0 0.27 ind:imp:1s; +jalousait jalouser ver 0.26 1.69 0.01 0.54 ind:imp:3s; +jalousant jalouser ver 0.26 1.69 0.03 0.07 par:pre; +jalouse jaloux adj f s 44.67 24.19 14.2 7.84 +jalousement jalousement adv 0.95 2.5 0.95 2.5 +jalousent jalouser ver 0.26 1.69 0.14 0.2 ind:pre:3p; +jalouser jalouser ver 0.26 1.69 0.01 0.2 inf; +jalouserais jalouser ver 0.26 1.69 0.02 0 cnd:pre:1s;cnd:pre:2s; +jalouses jaloux adj f p 44.67 24.19 0.6 1.22 +jalousie jalousie nom f s 13.67 25.2 13.2 22.09 +jalousies jalousie nom f p 13.67 25.2 0.47 3.11 +jalousé jalouser ver m s 0.26 1.69 0.04 0.14 par:pas; +jalousée jalouser ver f s 0.26 1.69 0 0.07 par:pas; +jaloux jaloux adj m 44.67 24.19 29.87 15.14 +jam jam nom f s 0.05 0.07 0.05 0.07 +jam_session jam_session nom f s 0.16 0 0.14 0 +jam_session jam_session nom f p 0.16 0 0.01 0 +jamais jamais adv_sup 1360.22 1122.97 1360.22 1122.97 +jamais_vu jamais_vu nom m 0 0.07 0 0.07 +jamaïcain jamaïcain adj m s 0.27 0.2 0.14 0.2 +jamaïcaine jamaïcain adj f s 0.27 0.2 0.1 0 +jamaïcains jamaïcain nom m p 0.19 0 0.09 0 +jamaïquain jamaïquain adj m s 0.05 0.07 0.05 0 +jamaïquains jamaïquain nom m p 0.04 0 0.02 0 +jambage jambage nom m s 0.02 1.08 0.01 0.2 +jambages jambage nom m p 0.02 1.08 0.01 0.88 +jambart jambart nom m s 0 0.07 0 0.07 +jambe jambe nom f s 113.82 220.95 46.31 49.93 +jambes jambe nom f 113.82 220.95 67.51 171.01 +jambier jambier nom m s 0.01 0 0.01 0 +jambière jambière nom f s 0.26 0.61 0.02 0 +jambières jambière nom f p 0.26 0.61 0.23 0.61 +jambon jambon nom m s 9.43 13.24 8.94 11.01 +jambonneau jambonneau nom m s 0.04 1.01 0 0.68 +jambonneaux jambonneau nom m p 0.04 1.01 0.04 0.34 +jambons jambon nom m p 9.43 13.24 0.48 2.23 +jamboree jamboree nom m s 0.09 0.07 0.09 0.07 +janissaire janissaire nom m s 0 6.42 0 0.68 +janissaires janissaire nom m p 0 6.42 0 5.74 +jans jan nom m p 0.1 0.61 0.1 0.61 +jansénisme jansénisme nom m s 0 0.54 0 0.54 +janséniste janséniste adj s 0 0.95 0 0.88 +jansénistes janséniste nom p 0 0.74 0 0.27 +jante jante nom f s 1.22 0.68 0.22 0.47 +jantes jante nom f p 1.22 0.68 0.99 0.2 +janvier janvier nom m 8.34 30.61 8.34 30.61 +jap jap nom s 2.26 0.2 0.23 0.14 +japon japon nom m s 0.2 0.27 0.2 0.2 +japonais japonais nom m 13.23 12.64 10.99 11.49 +japonaise japonais adj f s 11.9 14.66 3.2 3.99 +japonaiserie japonaiserie nom f s 0 0.07 0 0.07 +japonaises japonais adj f p 11.9 14.66 1 1.49 +japonerie japonerie nom f s 0 0.14 0 0.07 +japoneries japonerie nom f p 0 0.14 0 0.07 +japonisants japonisant nom m p 0 0.07 0 0.07 +japoniser japoniser ver 0.01 0 0.01 0 inf; +japons japon nom m p 0.2 0.27 0 0.07 +jappa japper ver 0.48 2.64 0 0.2 ind:pas:3s; +jappaient japper ver 0.48 2.64 0 0.07 ind:imp:3p; +jappait japper ver 0.48 2.64 0.02 0.34 ind:imp:3s; +jappant japper ver 0.48 2.64 0.01 0.34 par:pre; +jappe japper ver 0.48 2.64 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jappement jappement nom m s 0.07 2.03 0.04 0.88 +jappements jappement nom m p 0.07 2.03 0.03 1.15 +jappent japper ver 0.48 2.64 0 0.14 ind:pre:3p; +japper japper ver 0.48 2.64 0.11 0.61 inf; +jappeur jappeur nom m s 0.01 0.07 0.01 0.07 +jappèrent japper ver 0.48 2.64 0 0.07 ind:pas:3p; +jappé japper ver m s 0.48 2.64 0 0.27 par:pas; +japs jap nom p 2.26 0.2 2.04 0.07 +jaquelin jaquelin nom m s 0 0.2 0 0.2 +jaquemart jaquemart nom m s 0.01 0.07 0.01 0 +jaquemarts jaquemart nom m p 0.01 0.07 0 0.07 +jaquet jaquet nom m s 0 0.14 0 0.14 +jaquette jaquette nom f s 1.34 2.91 1.3 2.57 +jaquettes jaquette nom f p 1.34 2.91 0.04 0.34 +jar jar nom m s 0.12 0.07 0.12 0.07 +jardin jardin nom m s 60.21 185.81 54.01 148.72 +jardinage jardinage nom m s 1.65 2.03 1.65 2.03 +jardinait jardiner ver 1.01 0.68 0.01 0.14 ind:imp:3s; +jardinant jardiner ver 1.01 0.68 0.02 0.07 par:pre; +jardine jardiner ver 1.01 0.68 0.62 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jardinent jardiner ver 1.01 0.68 0.01 0.07 ind:pre:3p; +jardiner jardiner ver 1.01 0.68 0.31 0.27 inf; +jardinerai jardiner ver 1.01 0.68 0.01 0 ind:fut:1s; +jardineras jardiner ver 1.01 0.68 0 0.07 ind:fut:2s; +jardinerie jardinerie nom f s 0.04 0.07 0.04 0.07 +jardinet jardinet nom m s 0.18 6.62 0.18 3.65 +jardinets jardinet nom m p 0.18 6.62 0 2.97 +jardinier jardinier nom m s 7.29 10.27 6.9 6.22 +jardiniers jardinier nom m p 7.29 10.27 0.39 4.05 +jardinière jardinière nom f s 0.39 1.82 0.38 1.55 +jardinières jardinière nom f p 0.39 1.82 0.01 0.27 +jardins jardin nom m p 60.21 185.81 6.2 37.09 +jardiné jardiner ver m s 1.01 0.68 0.03 0 par:pas; +jargon jargon nom m s 1.91 4.32 1.9 4.26 +jargonnant jargonner ver 0 0.47 0 0.14 par:pre; +jargonne jargonner ver 0 0.47 0 0.14 ind:pre:3s; +jargonnent jargonner ver 0 0.47 0 0.07 ind:pre:3p; +jargonner jargonner ver 0 0.47 0 0.07 inf; +jargonné jargonner ver m s 0 0.47 0 0.07 par:pas; +jargons jargon nom m p 1.91 4.32 0.01 0.07 +jarnicoton jarnicoton ono 0 0.07 0 0.07 +jarre jarre nom f s 1.25 3.92 1.17 1.49 +jarres jarre nom f p 1.25 3.92 0.08 2.43 +jarret jarret nom m s 1.31 3.92 1.16 1.28 +jarretelle jarretelle nom f s 0.14 1.82 0.02 0.47 +jarretelles jarretelle nom f p 0.14 1.82 0.12 1.35 +jarretière jarretière nom f s 1.65 0.47 1.28 0.27 +jarretières jarretière nom f p 1.65 0.47 0.38 0.2 +jarrets jarret nom m p 1.31 3.92 0.15 2.64 +jars jars nom m 0.09 0.74 0.09 0.74 +jas jas nom m 0.03 0.07 0.03 0.07 +jasaient jaser ver 2.72 1.62 0.01 0.07 ind:imp:3p; +jasait jaser ver 2.72 1.62 0 0.2 ind:imp:3s; +jase jaser ver 2.72 1.62 0.51 0.41 imp:pre:2s;ind:pre:3s; +jasent jaser ver 2.72 1.62 0.47 0 ind:pre:3p; +jaser jaser ver 2.72 1.62 1.56 0.81 inf; +jaserait jaser ver 2.72 1.62 0.16 0 cnd:pre:3s; +jases jaser ver 2.72 1.62 0 0.07 ind:pre:2s; +jaseur jaseur nom m s 0 0.2 0 0.2 +jasmin jasmin nom m s 1.57 5.14 1.57 4.19 +jasmins jasmin nom m p 1.57 5.14 0 0.95 +jaspaient jasper ver 0.11 0.27 0 0.07 ind:imp:3p; +jaspe jaspe nom m s 0 0.27 0 0.27 +jasper jasper ver 0.11 0.27 0.11 0 inf; +jaspin jaspin nom m s 0 0.07 0 0.07 +jaspinaient jaspiner ver 0 1.08 0 0.07 ind:imp:3p; +jaspinais jaspiner ver 0 1.08 0 0.07 ind:imp:1s; +jaspinait jaspiner ver 0 1.08 0 0.14 ind:imp:3s; +jaspine jaspiner ver 0 1.08 0 0.61 ind:pre:1s;ind:pre:3s; +jaspinent jaspiner ver 0 1.08 0 0.07 ind:pre:3p; +jaspiner jaspiner ver 0 1.08 0 0.07 inf; +jaspiné jaspiner ver m s 0 1.08 0 0.07 par:pas; +jaspé jasper ver m s 0.11 0.27 0 0.07 par:pas; +jaspées jasper ver f p 0.11 0.27 0 0.07 par:pas; +jaspés jasper ver m p 0.11 0.27 0 0.07 par:pas; +jasé jaser ver m s 2.72 1.62 0.01 0.07 par:pas; +jatte jatte nom f s 0.18 0.81 0.18 0.41 +jattes jatte nom f p 0.18 0.81 0 0.41 +jauge jauge nom f s 1.44 0.54 1.25 0.47 +jaugea jauger ver 1.17 4.66 0 0.68 ind:pas:3s; +jaugeait jauger ver 1.17 4.66 0.01 1.01 ind:imp:3s; +jaugeant jauger ver 1.17 4.66 0 0.34 par:pre; +jaugent jauger ver 1.17 4.66 0.06 0.14 ind:pre:3p; +jauger jauger ver 1.17 4.66 0.64 0.88 inf; +jauges jauge nom f p 1.44 0.54 0.18 0.07 +jaugez jauger ver 1.17 4.66 0.28 0 imp:pre:2p;ind:pre:2p; +jaugé jauger ver m s 1.17 4.66 0 0.41 par:pas; +jaugée jauger ver f s 1.17 4.66 0.01 0.27 par:pas; +jaugés jauger ver m p 1.17 4.66 0.01 0.07 par:pas; +jaunasse jaunasse adj s 0 0.34 0 0.14 +jaunasses jaunasse adj f p 0 0.34 0 0.2 +jaune jaune adj s 21.09 109.86 15.48 75.81 +jaune_vert jaune_vert adj s 0.01 0.2 0.01 0.2 +jaunes jaune adj p 21.09 109.86 5.62 34.05 +jaunets jaunet nom m p 0 0.2 0 0.2 +jauni jaunir ver m s 0.92 8.31 0.5 1.55 par:pas; +jaunie jaunir ver f s 0.92 8.31 0.02 1.62 par:pas; +jaunies jauni adj f p 0.28 8.38 0.26 1.96 +jaunir jaunir ver 0.92 8.31 0.21 0.68 inf; +jaunira jaunir ver 0.92 8.31 0 0.07 ind:fut:3s; +jauniront jaunir ver 0.92 8.31 0 0.07 ind:fut:3p; +jaunis jauni adj m p 0.28 8.38 0.02 2.43 +jaunissaient jaunir ver 0.92 8.31 0 0.47 ind:imp:3p; +jaunissait jaunir ver 0.92 8.31 0 1.08 ind:imp:3s; +jaunissant jaunissant adj m s 0.16 0.68 0.16 0 +jaunissante jaunissant adj f s 0.16 0.68 0 0.14 +jaunissantes jaunissant adj f p 0.16 0.68 0 0.41 +jaunissants jaunissant adj m p 0.16 0.68 0 0.14 +jaunisse jaunisse nom f s 0.51 0.41 0.51 0.34 +jaunissement jaunissement nom m s 0.01 0.07 0.01 0.07 +jaunissent jaunir ver 0.92 8.31 0.02 0.27 ind:pre:3p; +jaunisses jaunisse nom f p 0.51 0.41 0 0.07 +jaunit jaunir ver 0.92 8.31 0.14 0.54 ind:pre:3s;ind:pas:3s; +jaunâtre jaunâtre adj s 0.1 9.93 0.08 7.5 +jaunâtres jaunâtre adj p 0.1 9.93 0.02 2.43 +java java nom f s 0.46 2.3 0.44 1.89 +javanais javanais adj m s 0.07 0.27 0.06 0.2 +javanaise javanais adj f s 0.07 0.27 0.01 0 +javanaises javanais adj f p 0.07 0.27 0 0.07 +javas java nom f p 0.46 2.3 0.02 0.41 +javel javel nom f s 1.33 3.45 1.33 3.45 +javeline javeline nom f s 0 0.07 0 0.07 +javelle javelle nom f s 0.01 0.34 0.01 0 +javelles javelle nom f p 0.01 0.34 0 0.34 +javellise javelliser ver 0.02 0.34 0 0.07 ind:pre:3s; +javelliser javelliser ver 0.02 0.34 0.01 0 inf; +javellisé javelliser ver m s 0.02 0.34 0 0.07 par:pas; +javellisée javelliser ver f s 0.02 0.34 0.01 0.14 par:pas; +javellisées javelliser ver f p 0.02 0.34 0 0.07 par:pas; +javelot javelot nom m s 0.71 1.35 0.44 0.95 +javelots javelot nom m p 0.71 1.35 0.27 0.41 +javotte javotte nom f s 0 0.07 0 0.07 +jazz jazz nom m 7.38 8.11 7.38 8.11 +jazz_band jazz_band nom m s 0.02 0.2 0.02 0.2 +jazz_rock jazz_rock nom m 0.14 0.07 0.14 0.07 +jazzman jazzman nom m s 0.34 0.2 0.27 0.14 +jazzmen jazzman nom m p 0.34 0.2 0.07 0.07 +jazzy jazzy adj f 0.14 0 0.14 0 +jaïnistes jaïniste nom p 0 0.07 0 0.07 +je je pro_per s 25983.2 10862.77 25983.2 10862.77 +je_m_en_fichiste je_m_en_fichiste adj f s 0.01 0 0.01 0 +je_m_en_foutisme je_m_en_foutisme nom m s 0.01 0.14 0.01 0.14 +je_m_en_foutiste je_m_en_foutiste adj s 0.01 0 0.01 0 +je_m_en_foutiste je_m_en_foutiste nom p 0.03 0.07 0.03 0.07 +je_ne_sais_quoi je_ne_sais_quoi nom m 0.34 0.47 0.34 0.47 +jean jean nom m s 6.55 10.2 3.62 6.96 +jean_foutre jean_foutre nom m 0.41 1.28 0.41 1.28 +jean_le_blanc jean_le_blanc nom m 0 0.07 0 0.07 +jeanneton jeanneton nom f s 0.02 0.68 0.02 0.68 +jeannette jeannette nom f s 0.27 0.2 0.02 0.2 +jeannettes jeannette nom f p 0.27 0.2 0.25 0 +jeannot jeannot nom m s 0 0.07 0 0.07 +jeans jean nom m p 6.55 10.2 2.93 3.24 +jeep jeep nom f s 4.65 2.97 4.18 2.16 +jeeps jeep nom f p 4.65 2.97 0.47 0.81 +jellaba jellaba nom f s 0 0.14 0 0.14 +jenny jenny nom f s 0.12 9.32 0.12 9.32 +jerez jerez nom m 0.67 0.68 0.67 0.68 +jerk jerk nom m s 0.11 0.54 0.11 0.54 +jerrican jerrican nom m s 0.37 0.2 0.34 0.07 +jerricane jerricane nom m s 0.19 0.07 0.19 0 +jerricanes jerricane nom m p 0.19 0.07 0 0.07 +jerricans jerrican nom m p 0.37 0.2 0.04 0.14 +jerrycan jerrycan nom m s 0.42 0.68 0.25 0.27 +jerrycans jerrycan nom m p 0.42 0.68 0.18 0.41 +jersey jersey nom m s 0.51 1.69 0.51 1.62 +jerseys jersey nom m p 0.51 1.69 0 0.07 +jet jet nom m s 10.49 20.95 7.96 14.53 +jet_society jet_society nom f s 0 0.07 0 0.07 +jet_set jet_set nom m s 0.42 0.07 0.42 0.07 +jet_stream jet_stream nom m s 0.01 0 0.01 0 +jeta jeter ver 192.18 336.82 1.63 60.95 ind:pas:3s; +jetable jetable adj s 1.16 0.54 0.54 0.34 +jetables jetable adj p 1.16 0.54 0.62 0.2 +jetai jeter ver 192.18 336.82 0.26 6.89 ind:pas:1s; +jetaient jeter ver 192.18 336.82 0.96 9.26 ind:imp:3p; +jetais jeter ver 192.18 336.82 1.24 3.04 ind:imp:1s;ind:imp:2s; +jetait jeter ver 192.18 336.82 0 33.85 ind:imp:3s; +jetant jeter ver 192.18 336.82 1.53 22.3 par:pre; +jetas jeter ver 192.18 336.82 0.02 0 ind:pas:2s; +jeter jeter ver 192.18 336.82 59.28 61.89 inf;;inf;;inf;; +jeteur jeteur nom m s 0.23 0.47 0.04 0.14 +jeteurs jeteur nom m p 0.23 0.47 0.17 0.14 +jeteuse jeteur nom f s 0.23 0.47 0 0.14 +jeteuses jeteur nom f p 0.23 0.47 0 0.07 +jetez jeter ver 192.18 336.82 17.07 1.69 imp:pre:2p;ind:pre:2p; +jetiez jeter ver 192.18 336.82 0.29 0.27 ind:imp:2p; +jetions jeter ver 192.18 336.82 0.34 1.89 ind:imp:1p; +jeton jeton nom m s 10.27 10.27 2.88 4.32 +jetons jeton nom m p 10.27 10.27 7.39 5.95 +jets jet nom m p 10.49 20.95 2.53 6.42 +jette jeter ver 192.18 336.82 43.48 45.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +jettent jeter ver 192.18 336.82 3.44 6.89 ind:pre:3p;sub:pre:3p; +jettera jeter ver 192.18 336.82 2.1 1.01 ind:fut:3s; +jetterai jeter ver 192.18 336.82 2.38 0.61 ind:fut:1s; +jetteraient jeter ver 192.18 336.82 0.16 0.95 cnd:pre:3p; +jetterais jeter ver 192.18 336.82 1.02 0.34 cnd:pre:1s;cnd:pre:2s; +jetterait jeter ver 192.18 336.82 0.39 2.5 cnd:pre:3s; +jetteras jeter ver 192.18 336.82 0.31 0.14 ind:fut:2s; +jetterez jeter ver 192.18 336.82 0.09 0.2 ind:fut:2p; +jetteriez jeter ver 192.18 336.82 0.19 0.07 cnd:pre:2p; +jetterions jeter ver 192.18 336.82 0 0.14 cnd:pre:1p; +jetterons jeter ver 192.18 336.82 0.41 0.07 ind:fut:1p; +jetteront jeter ver 192.18 336.82 0.59 0.68 ind:fut:3p; +jettes jeter ver 192.18 336.82 4.77 0.47 ind:pre:2s;sub:pre:2s; +jetâmes jeter ver 192.18 336.82 0.01 0.2 ind:pas:1p; +jetât jeter ver 192.18 336.82 0 0.27 sub:imp:3s; +jetèrent jeter ver 192.18 336.82 0.29 3.72 ind:pas:3p; +jeté jeter ver m s 192.18 336.82 33.21 45.07 par:pas; +jetée jeter ver f s 192.18 336.82 9.01 13.38 par:pas; +jetées jeter ver f p 192.18 336.82 1.11 3.38 par:pas; +jetés jeter ver m p 192.18 336.82 3.73 8.72 par:pas; +jeu jeu nom m s 190.44 173.31 156.79 130.68 +jeu_concours jeu_concours nom m 0.1 0.14 0.1 0.14 +jeudi jeudi nom m s 26.09 23.51 24.58 21.01 +jeudis jeudi nom m p 26.09 23.51 1.51 2.5 +jeune jeune adj s 297.01 569.19 234.9 432.64 +jeune_homme jeune_homme adj s 0.1 0 0.1 0 +jeunement jeunement adv 0 0.27 0 0.27 +jeunes jeune adj p 297.01 569.19 62.12 136.55 +jeunesse jeunesse nom f s 28.71 85.14 27.21 83.24 +jeunesses jeunesse nom f p 28.71 85.14 1.5 1.89 +jeunet jeunet nom m s 0.11 0 0.11 0 +jeunets jeunet adj m p 0.13 0.68 0 0.07 +jeunette jeunette nom f s 0.17 0.95 0.12 0.61 +jeunettes jeunette nom f p 0.17 0.95 0.04 0.34 +jeunot jeunot nom m s 1.56 3.11 0.94 1.22 +jeunots jeunot nom m p 1.56 3.11 0.62 1.89 +jeux jeu nom m p 190.44 173.31 33.65 42.64 +jeûna jeûner ver 2.59 1.35 0.01 0.07 ind:pas:3s; +jeûnaient jeûner ver 2.59 1.35 0 0.14 ind:imp:3p; +jeûnait jeûner ver 2.59 1.35 0 0.07 ind:imp:3s; +jeûnant jeûner ver 2.59 1.35 0.03 0.07 par:pre; +jeûne jeûne nom m s 1.84 4.46 1.62 3.72 +jeûnent jeûner ver 2.59 1.35 0.17 0.07 ind:pre:3p; +jeûner jeûner ver 2.59 1.35 1.1 0.61 inf; +jeûnerai jeûner ver 2.59 1.35 0.02 0.07 ind:fut:1s; +jeûnerait jeûner ver 2.59 1.35 0 0.07 cnd:pre:3s; +jeûneras jeûner ver 2.59 1.35 0.01 0.07 ind:fut:2s; +jeûnerons jeûner ver 2.59 1.35 0.01 0 ind:fut:1p; +jeûnes jeûner ver 2.59 1.35 0.32 0 ind:pre:2s; +jeûneurs jeûneur nom m p 0 0.07 0 0.07 +jeûnez jeûner ver 2.59 1.35 0.16 0 imp:pre:2p;ind:pre:2p; +jeûné jeûner ver m s 2.59 1.35 0.33 0.07 par:pas; +jigger jigger nom m s 0.04 0 0.04 0 +jihad jihad nom s 0.28 0 0.28 0 +jingle jingle nom m s 1.14 0.07 0.88 0.07 +jingles jingle nom m p 1.14 0.07 0.26 0 +jinjin jinjin nom m s 0 0.27 0 0.27 +jiu_jitsu jiu_jitsu nom m 0.35 0.14 0.35 0.14 +jivaro jivaro adj m s 0 0.14 0 0.14 +joaillerie joaillerie nom f s 0.07 0.47 0.07 0.47 +joaillier joaillier nom m s 0.39 0.68 0.33 0.47 +joailliers joaillier nom m p 0.39 0.68 0.06 0.2 +job job nom m s 28.62 2.77 27.24 2.43 +jobard jobard nom m s 0.46 0.47 0.41 0.14 +jobardes jobard adj f p 0.05 0.47 0 0.07 +jobardise jobardise nom f s 0 0.2 0 0.2 +jobards jobard nom m p 0.46 0.47 0.06 0.34 +jobs job nom m p 28.62 2.77 1.38 0.34 +jociste jociste nom s 0 0.41 0 0.34 +jocistes jociste nom p 0 0.41 0 0.07 +jockey jockey nom s 1.69 8.24 1.37 6.82 +jockeys jockey nom p 1.69 8.24 0.33 1.42 +jocko jocko adj m s 0.17 0 0.17 0 +jocrisse jocrisse nom m s 0.02 0.27 0 0.2 +jocrisses jocrisse nom m p 0.02 0.27 0.02 0.07 +jodhpurs jodhpur nom m p 0.04 0.07 0.04 0.07 +jodler jodler ver 0.23 0 0.23 0 inf; +jogger jogger nom m s 0.34 0.07 0.25 0.07 +joggers jogger nom m p 0.34 0.07 0.09 0 +joggeur joggeur nom m s 0.26 0 0.07 0 +joggeurs joggeur nom m p 0.26 0 0.16 0 +joggeuse joggeur nom f s 0.26 0 0.03 0 +jogging jogging nom m s 2.21 1.28 2.2 1.22 +joggings jogging nom m p 2.21 1.28 0.01 0.07 +johannisberg johannisberg nom m s 0 0.07 0 0.07 +joice joice adj s 0.01 0.95 0.01 0.81 +joices joice adj p 0.01 0.95 0 0.14 +joie joie nom f s 75.09 150.2 71.07 134.12 +joies joie nom f p 75.09 150.2 4.03 16.08 +joignable joignable adj m s 0.6 0.07 0.6 0.07 +joignaient joindre ver 46.37 32.7 0.1 1.28 ind:imp:3p; +joignais joindre ver 46.37 32.7 0.07 0.2 ind:imp:1s;ind:imp:2s; +joignait joindre ver 46.37 32.7 0.22 1.89 ind:imp:3s; +joignant joindre ver 46.37 32.7 0.45 2.03 par:pre; +joigne joindre ver 46.37 32.7 0.72 0.2 sub:pre:1s;sub:pre:3s; +joignent joindre ver 46.37 32.7 0.69 0.61 ind:pre:3p; +joignes joindre ver 46.37 32.7 0.19 0 sub:pre:2s; +joignez joindre ver 46.37 32.7 2.71 0.2 imp:pre:2p;ind:pre:2p; +joigniez joindre ver 46.37 32.7 0.28 0 ind:imp:2p; +joignions joindre ver 46.37 32.7 0.15 0.07 ind:imp:1p; +joignirent joindre ver 46.37 32.7 0.01 0.68 ind:pas:3p; +joignis joindre ver 46.37 32.7 0 0.27 ind:pas:1s; +joignissent joindre ver 46.37 32.7 0 0.07 sub:imp:3p; +joignit joindre ver 46.37 32.7 0.07 2.77 ind:pas:3s; +joignons joindre ver 46.37 32.7 0.46 0.14 imp:pre:1p;ind:pre:1p; +joignîmes joindre ver 46.37 32.7 0 0.07 ind:pas:1p; +joindra joindre ver 46.37 32.7 0.38 0.14 ind:fut:3s; +joindrai joindre ver 46.37 32.7 0.11 0 ind:fut:1s; +joindraient joindre ver 46.37 32.7 0.01 0.14 cnd:pre:3p; +joindrais joindre ver 46.37 32.7 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +joindrait joindre ver 46.37 32.7 0.02 0.07 cnd:pre:3s; +joindras joindre ver 46.37 32.7 0.07 0 ind:fut:2s; +joindre joindre ver 46.37 32.7 32.91 14.19 inf;; +joindrez joindre ver 46.37 32.7 0.26 0 ind:fut:2p; +joindriez joindre ver 46.37 32.7 0.12 0 cnd:pre:2p; +joindrons joindre ver 46.37 32.7 0.01 0 ind:fut:1p; +joindront joindre ver 46.37 32.7 0.37 0.07 ind:fut:3p; +joins joindre ver 46.37 32.7 3 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +joint joint nom m s 8.38 6.62 5.78 4.53 +joint_venture joint_venture nom f s 0.16 0 0.16 0 +jointe joint adj f s 2.8 15 0.43 2.09 +jointes joint adj f p 2.8 15 0.6 7.64 +jointif jointif adj m s 0.02 0.27 0 0.14 +jointifs jointif adj m p 0.02 0.27 0.01 0.07 +jointives jointif adj f p 0.02 0.27 0.01 0.07 +jointoyaient jointoyer ver 0 0.07 0 0.07 ind:imp:3p; +joints joint nom m p 8.38 6.62 2.61 2.09 +jointure jointure nom f s 0.52 4.05 0.22 1.28 +jointures jointure nom f p 0.52 4.05 0.29 2.77 +jointée jointé adj f s 0 0.07 0 0.07 +jointés jointer ver m p 0.01 0.07 0 0.07 par:pas; +jojo jojo adj s 1.4 1.15 1.37 1.08 +jojoba jojoba nom m s 0.03 0 0.03 0 +jojos jojo adj m p 1.4 1.15 0.03 0.07 +jokari jokari nom m s 0 0.07 0 0.07 +joker joker nom m s 3.54 0.14 3.44 0.14 +jokers joker nom m p 3.54 0.14 0.1 0 +joli joli adj m s 226.45 120 94.55 44.53 +joli_coeur joli_coeur adj m s 0.01 0 0.01 0 +joli_joli joli_joli adj m s 0.26 0.41 0.26 0.41 +jolibois jolibois nom m 0 0.14 0 0.14 +jolie joli adj f s 226.45 120 101.54 51.76 +jolies joli adj f p 226.45 120 20.99 15.68 +joliesse joliesse nom f s 0.03 0.54 0.02 0.41 +joliesses joliesse nom f p 0.03 0.54 0.01 0.14 +joliet joliet adj m s 0.01 0.14 0.01 0 +joliette joliet adj f s 0.01 0.14 0 0.14 +joliment joliment adv 2.19 5.41 2.19 5.41 +jolis joli adj m p 226.45 120 9.37 8.04 +jonc jonc nom m s 0.24 7.09 0.19 1.89 +joncaille joncaille nom f s 0 0.41 0 0.41 +jonchaie jonchaie nom f s 0 0.2 0 0.14 +jonchaient joncher ver 0.67 9.39 0.01 2.3 ind:imp:3p; +jonchaies jonchaie nom f p 0 0.2 0 0.07 +jonchait joncher ver 0.67 9.39 0.01 0.07 ind:imp:3s; +jonchant joncher ver 0.67 9.39 0.01 0.95 par:pre; +jonchent joncher ver 0.67 9.39 0.2 1.01 ind:pre:3p; +joncher joncher ver 0.67 9.39 0.11 0.07 inf; +joncheraies joncheraie nom f p 0 0.07 0 0.07 +jonchet jonchet nom m s 0 0.95 0 0.27 +jonchets jonchet nom m p 0 0.95 0 0.68 +jonchère jonchère nom f s 0 0.14 0 0.14 +jonché joncher ver m s 0.67 9.39 0.09 2.77 par:pas; +jonchée joncher ver f s 0.67 9.39 0.22 1.28 par:pas; +jonchées joncher ver f p 0.67 9.39 0.02 0.41 par:pas; +jonchés joncher ver m p 0.67 9.39 0.01 0.54 par:pas; +joncs jonc nom m p 0.24 7.09 0.05 5.2 +jonction jonction nom f s 0.6 1.96 0.5 1.89 +jonctions jonction nom f p 0.6 1.96 0.1 0.07 +jonglage jonglage nom m s 0.03 0 0.03 0 +jonglaient jongler ver 2.13 3.85 0 0.14 ind:imp:3p; +jonglais jongler ver 2.13 3.85 0.04 0.2 ind:imp:1s;ind:imp:2s; +jonglait jongler ver 2.13 3.85 0.04 0.47 ind:imp:3s; +jonglant jongler ver 2.13 3.85 0.05 0.61 par:pre; +jongle jongler ver 2.13 3.85 0.54 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jonglent jongler ver 2.13 3.85 0.03 0.07 ind:pre:3p; +jongler jongler ver 2.13 3.85 0.83 1.82 inf; +jonglera jongler ver 2.13 3.85 0.03 0 ind:fut:3s; +jonglerie jonglerie nom f s 0.02 0.2 0.02 0.14 +jongleries jonglerie nom f p 0.02 0.2 0 0.07 +jongles jongler ver 2.13 3.85 0.2 0 ind:pre:2s; +jongleur jongleur nom m s 0.58 2.23 0.46 0.74 +jongleurs jongleur nom m p 0.58 2.23 0.12 1.22 +jongleuse jongleur nom f s 0.58 2.23 0 0.14 +jongleuses jongleur nom f p 0.58 2.23 0 0.14 +jonglez jongler ver 2.13 3.85 0.2 0 imp:pre:2p;ind:pre:2p; +jonglé jongler ver m s 2.13 3.85 0.16 0.14 par:pas; +jonkheer jonkheer nom m s 0.34 0 0.34 0 +jonque jonque nom f s 0.34 1.42 0.33 0.74 +jonques jonque nom f p 0.34 1.42 0.02 0.68 +jonquille jonquille nom f s 0.39 0.81 0.04 0.07 +jonquilles jonquille nom f p 0.39 0.81 0.35 0.74 +jordanienne jordanien adj f s 0.01 0.07 0.01 0 +jordaniens jordanien nom m p 0.03 0 0.03 0 +jordonner jordonner ver 0 0.07 0 0.07 inf; +joseph joseph nom m s 0.17 1.08 0.17 1.08 +joua jouer ver 570.12 337.23 0.8 5.61 ind:pas:3s; +jouable jouable adj m s 0.46 0.07 0.46 0.07 +jouai jouer ver 570.12 337.23 0.13 1.01 ind:pas:1s; +jouaient jouer ver 570.12 337.23 3.86 20 ind:imp:3p; +jouais jouer ver 570.12 337.23 12.89 5.95 ind:imp:1s;ind:imp:2s; +jouait jouer ver 570.12 337.23 21.59 49.93 ind:imp:3s; +jouant jouer ver 570.12 337.23 5.66 19.19 par:pre; +jouasse jouasse adj m s 0.02 1.22 0.02 1.01 +jouasses jouasse adj p 0.02 1.22 0 0.2 +joubarbe joubarbe nom f s 0 0.07 0 0.07 +joue jouer ver 570.12 337.23 122.88 40.47 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +jouent jouer ver 570.12 337.23 16.41 14.59 ind:pre:3p; +jouer jouer ver 570.12 337.23 225.84 121.82 inf;; +jouera jouer ver 570.12 337.23 5.56 1.89 ind:fut:3s; +jouerai jouer ver 570.12 337.23 4.22 0.41 ind:fut:1s; +joueraient jouer ver 570.12 337.23 0.24 0.41 cnd:pre:3p; +jouerais jouer ver 570.12 337.23 1.54 0.47 cnd:pre:1s;cnd:pre:2s; +jouerait jouer ver 570.12 337.23 1.24 3.04 cnd:pre:3s; +joueras jouer ver 570.12 337.23 2.3 0.47 ind:fut:2s; +jouerez jouer ver 570.12 337.23 0.98 0.34 ind:fut:2p; +joueriez jouer ver 570.12 337.23 0.22 0.07 cnd:pre:2p; +jouerions jouer ver 570.12 337.23 0.01 0.07 cnd:pre:1p; +jouerons jouer ver 570.12 337.23 0.54 0.41 ind:fut:1p; +joueront jouer ver 570.12 337.23 0.74 0.47 ind:fut:3p; +joues jouer ver 570.12 337.23 33.7 2.5 ind:pre:2s;sub:pre:2s; +jouet jouet nom m s 25.5 21.01 11.82 7.03 +jouets jouet nom m p 25.5 21.01 13.68 13.99 +joueur joueur nom m s 28.45 19.86 17.22 9.05 +joueurs joueur nom m p 28.45 19.86 9.95 9.53 +joueuse joueur nom f s 28.45 19.86 1.15 0.74 +joueuses joueur nom f p 28.45 19.86 0.14 0.54 +jouez jouer ver 570.12 337.23 24.66 3.18 imp:pre:2p;ind:pre:2p; +joufflu joufflu nom m s 0.47 0.2 0.46 0.2 +joufflue joufflu adj f s 0.31 2.36 0.16 0.34 +joufflues joufflu adj f p 0.31 2.36 0.01 0.2 +joufflus joufflu adj m p 0.31 2.36 0.02 0.41 +joug joug nom m s 2.48 2.5 2.47 2.36 +jougs joug nom m p 2.48 2.5 0.01 0.14 +joui jouir ver m s 22.06 39.19 3.33 3.65 par:pas; +jouiez jouer ver 570.12 337.23 2.11 0.41 ind:imp:2p; +jouions jouer ver 570.12 337.23 1.44 1.42 ind:imp:1p; +jouir jouir ver 22.06 39.19 10.42 15.68 inf; +jouira jouir ver 22.06 39.19 0.32 0.34 ind:fut:3s; +jouirai jouir ver 22.06 39.19 0.02 0.07 ind:fut:1s; +jouiraient jouir ver 22.06 39.19 0.01 0.07 cnd:pre:3p; +jouirait jouir ver 22.06 39.19 0 0.14 cnd:pre:3s; +jouiras jouir ver 22.06 39.19 0.07 0.07 ind:fut:2s; +jouirent jouir ver 22.06 39.19 0 0.14 ind:pas:3p; +jouirions jouir ver 22.06 39.19 0 0.07 cnd:pre:1p; +jouirons jouir ver 22.06 39.19 0.02 0.07 ind:fut:1p; +jouis jouir ver m p 22.06 39.19 2.65 1.76 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +jouissaient jouir ver 22.06 39.19 0.14 1.28 ind:imp:3p; +jouissais jouir ver 22.06 39.19 0.21 1.49 ind:imp:1s;ind:imp:2s; +jouissait jouir ver 22.06 39.19 0.33 5.61 ind:imp:3s; +jouissance jouissance nom f s 1.96 14.19 1.82 12.36 +jouissances jouissance nom f p 1.96 14.19 0.14 1.82 +jouissant jouir ver 22.06 39.19 0.05 1.42 par:pre; +jouissants jouissant adj m p 0 0.07 0 0.07 +jouisse jouir ver 22.06 39.19 0.33 0.54 sub:pre:1s;sub:pre:3s; +jouissent jouir ver 22.06 39.19 0.69 1.22 ind:pre:3p; +jouisses jouir ver 22.06 39.19 0.34 0.07 sub:pre:2s; +jouisseur jouisseur adj m s 0.01 0.68 0.01 0.41 +jouisseurs jouisseur nom m p 0.01 0.81 0 0.34 +jouisseuse jouisseur nom f s 0.01 0.81 0.01 0.07 +jouissez jouir ver 22.06 39.19 0.28 0.41 imp:pre:2p;ind:pre:2p; +jouissif jouissif adj m s 0.16 1.15 0.14 0.74 +jouissifs jouissif adj m p 0.16 1.15 0 0.14 +jouissions jouir ver 22.06 39.19 0.04 0.41 ind:imp:1p; +jouissive jouissif adj f s 0.16 1.15 0.01 0.14 +jouissives jouissif adj f p 0.16 1.15 0 0.14 +jouissons jouir ver 22.06 39.19 0.82 0.41 imp:pre:1p;ind:pre:1p; +jouit jouir ver 22.06 39.19 1.99 4.32 ind:pre:3s;ind:pas:3s; +joujou joujou nom m s 1.63 1.49 1.63 1.49 +joujoux joujoux nom m p 0.82 0.88 0.82 0.88 +joules joule nom m p 0.22 0.07 0.22 0.07 +jouons jouer ver 570.12 337.23 7.81 2.57 imp:pre:1p;ind:pre:1p; +jour jour nom m s 1061.92 1341.76 635.22 826.35 +journal journal nom m s 110.8 197.7 72.5 124.32 +journaleuse journaleux nom f s 0.12 0.74 0 0.14 +journaleux journaleux nom m 0.12 0.74 0.12 0.61 +journalier journalier adj m s 1.02 2.16 0.52 0.88 +journaliers journalier adj m p 1.02 2.16 0.18 0.2 +journalisme journalisme nom m s 3.25 3.51 3.25 3.51 +journaliste journaliste nom s 35.29 30.34 24.26 15.95 +journalistes journaliste nom p 35.29 30.34 11.03 14.39 +journalistique journalistique adj s 0.63 0.68 0.57 0.34 +journalistiques journalistique adj p 0.63 0.68 0.07 0.34 +journalière journalier adj f s 1.02 2.16 0.3 0.68 +journalières journalière nom f p 0.1 0 0.1 0 +journaux journal nom m p 110.8 197.7 38.3 73.38 +journellement journellement adv 0.15 0.88 0.15 0.88 +journée journée nom f s 174.89 179.39 165.35 140.74 +journées journée nom f p 174.89 179.39 9.54 38.65 +jours jour nom m p 1061.92 1341.76 426.7 515.41 +joute joute nom f s 1.25 2.03 0.97 1.08 +jouter jouter ver 0.1 0 0.06 0 inf; +joutes joute nom f p 1.25 2.03 0.28 0.95 +jouteur jouteur nom m s 0 0.2 0 0.07 +jouteurs jouteur nom m p 0 0.2 0 0.07 +jouteuse jouteur nom f s 0 0.2 0 0.07 +joutez jouter ver 0.1 0 0.03 0 imp:pre:2p;ind:pre:2p; +jouté jouter ver m s 0.1 0 0.01 0 par:pas; +jouvence jouvence nom f s 0.81 1.35 0.81 1.35 +jouvenceau jouvenceau nom m s 0.28 0.74 0.08 0.27 +jouvenceaux jouvenceau nom m p 0.28 0.74 0.02 0.14 +jouvencelle jouvenceau nom f s 0.28 0.74 0.18 0.14 +jouvencelles jouvenceau nom f p 0.28 0.74 0 0.2 +jouxtaient jouxter ver 0.07 2.23 0 0.2 ind:imp:3p; +jouxtait jouxter ver 0.07 2.23 0.02 1.28 ind:imp:3s; +jouxtant jouxter ver 0.07 2.23 0 0.68 par:pre; +jouxte jouxte pre 0.05 0.07 0.05 0.07 +jouâmes jouer ver 570.12 337.23 0.01 0.34 ind:pas:1p; +jouât jouer ver 570.12 337.23 0 0.81 sub:imp:3s; +jouèrent jouer ver 570.12 337.23 0.18 1.89 ind:pas:3p; +joué jouer ver m s 570.12 337.23 69.83 33.58 par:pas;par:pas;par:pas; +jouée jouer ver f s 570.12 337.23 2.01 2.91 par:pas; +jouées jouer ver f p 570.12 337.23 0.27 0.47 par:pas; +joués jouer ver m p 570.12 337.23 0.45 0.54 par:pas; +jovial jovial adj m s 0.61 6.22 0.48 4.46 +joviale jovial adj f s 0.61 6.22 0.12 1.49 +jovialement jovialement adv 0 0.54 0 0.54 +joviales jovial adj f p 0.61 6.22 0 0.14 +jovialité jovialité nom f s 0.04 1.28 0.04 1.28 +joviaux jovial adj m p 0.61 6.22 0.01 0.14 +joyau joyau nom m s 3.6 3.24 2.67 1.96 +joyaux joyau nom m p 3.6 3.24 0.93 1.28 +joyciennes joycien adj f p 0 0.07 0 0.07 +joyeuse joyeux adj f s 39.89 45.61 6.07 14.86 +joyeusement joyeusement adv 1.14 9.39 1.14 9.39 +joyeuses joyeux adj f p 39.89 45.61 2.01 4.05 +joyeuseté joyeuseté nom f s 0.01 0.34 0 0.2 +joyeusetés joyeuseté nom f p 0.01 0.34 0.01 0.14 +joyeux joyeux adj m 39.89 45.61 31.81 26.69 +joystick joystick nom m s 0.11 0 0.11 0 +juan juan nom m s 0.01 0.2 0.01 0.2 +jubila jubiler ver 1.2 5.07 0.01 0.34 ind:pas:3s; +jubilai jubiler ver 1.2 5.07 0 0.14 ind:pas:1s; +jubilaient jubiler ver 1.2 5.07 0 0.07 ind:imp:3p; +jubilaire jubilaire adj s 0.4 0.07 0.4 0.07 +jubilais jubiler ver 1.2 5.07 0.04 0.41 ind:imp:1s;ind:imp:2s; +jubilait jubiler ver 1.2 5.07 0.05 1.76 ind:imp:3s; +jubilant jubilant adj m s 0.02 0.88 0.02 0.14 +jubilante jubilant adj f s 0.02 0.88 0 0.41 +jubilantes jubilant adj f p 0.02 0.88 0 0.07 +jubilants jubilant adj m p 0.02 0.88 0 0.27 +jubilation jubilation nom f s 0.32 6.55 0.32 6.42 +jubilations jubilation nom f p 0.32 6.55 0 0.14 +jubilatoire jubilatoire adj s 0.02 0.2 0.02 0.14 +jubilatoires jubilatoire adj m p 0.02 0.2 0 0.07 +jubile jubiler ver 1.2 5.07 0.38 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jubilent jubiler ver 1.2 5.07 0.03 0.07 ind:pre:3p; +jubiler jubiler ver 1.2 5.07 0.4 0.61 inf; +jubilera jubiler ver 1.2 5.07 0 0.07 ind:fut:3s; +jubileraient jubiler ver 1.2 5.07 0 0.07 cnd:pre:3p; +jubiles jubiler ver 1.2 5.07 0.1 0.07 ind:pre:2s; +jubilèrent jubiler ver 1.2 5.07 0 0.07 ind:pas:3p; +jubilé jubilé nom m s 0.33 0.41 0.33 0.41 +jubilée jubiler ver f s 1.2 5.07 0.08 0 par:pas; +jubé jubé nom m s 0 0.2 0 0.2 +jucha jucher ver 0.24 10.61 0 0.47 ind:pas:3s; +juchai jucher ver 0.24 10.61 0 0.07 ind:pas:1s; +juchaient jucher ver 0.24 10.61 0 0.14 ind:imp:3p; +juchais jucher ver 0.24 10.61 0 0.14 ind:imp:1s; +juchait jucher ver 0.24 10.61 0 0.41 ind:imp:3s; +juchant jucher ver 0.24 10.61 0 0.14 par:pre; +juche jucher ver 0.24 10.61 0 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +juchent jucher ver 0.24 10.61 0 0.2 ind:pre:3p; +jucher jucher ver 0.24 10.61 0 0.54 inf; +jucheront jucher ver 0.24 10.61 0 0.07 ind:fut:3p; +juchions jucher ver 0.24 10.61 0 0.07 ind:imp:1p; +juché jucher ver m s 0.24 10.61 0.17 5 par:pas; +juchée jucher ver f s 0.24 10.61 0.04 0.74 par:pas; +juchées jucher ver f p 0.24 10.61 0 0.74 par:pas; +juchés jucher ver m p 0.24 10.61 0.03 1.55 par:pas; +judas judas nom m 1.28 1.76 1.28 1.76 +judaïcité judaïcité nom f s 0.01 0 0.01 0 +judaïque judaïque adj f s 0.06 0.14 0.06 0.07 +judaïques judaïque adj m p 0.06 0.14 0 0.07 +judaïsant judaïsant nom m s 0 0.07 0 0.07 +judaïser judaïser ver 0 0.14 0 0.07 inf; +judaïsme judaïsme nom m s 0.51 1.15 0.51 1.15 +judaïsées judaïser ver f p 0 0.14 0 0.07 par:pas; +judaïté judaïté nom f s 0 0.07 0 0.07 +judiciaire judiciaire adj s 10.8 5.61 9.29 4.26 +judiciaires judiciaire adj p 10.8 5.61 1.51 1.35 +judicieuse judicieux adj f s 2.36 2.16 0.51 0.74 +judicieusement judicieusement adv 0.17 0.61 0.17 0.61 +judicieuses judicieux adj f p 2.36 2.16 0.13 0.07 +judicieux judicieux adj m 2.36 2.16 1.72 1.35 +judo judo nom m s 0.9 1.22 0.9 1.22 +judoka judoka nom s 0.21 0.2 0.21 0.2 +judéen judéen adj m s 0.07 0 0.07 0 +judéenne judéenne nom f s 0.01 0.14 0.01 0.14 +judéité judéité nom f s 0.02 0 0.02 0 +judéo judéo adv 0.01 0.2 0.01 0.2 +judéo_christianisme judéo_christianisme nom m s 0.01 0 0.01 0 +judéo_chrétien judéo_chrétien adj f s 0.06 0.2 0.04 0.07 +judéo_chrétien judéo_chrétien adj f p 0.06 0.2 0.01 0.07 +judéo_chrétien judéo_chrétien adj m p 0.06 0.2 0 0.07 +juge juge nom m s 66.45 44.46 56.4 29.8 +jugea juger ver 56.12 96.96 0.42 5.34 ind:pas:3s; +jugeai juger ver 56.12 96.96 0.01 1.49 ind:pas:1s; +jugeaient juger ver 56.12 96.96 0.05 2.7 ind:imp:3p; +jugeais juger ver 56.12 96.96 0.34 2.91 ind:imp:1s;ind:imp:2s; +jugeait juger ver 56.12 96.96 0.4 12.64 ind:imp:3s; +jugeant juger ver 56.12 96.96 0.24 3.72 par:pre; +jugement jugement nom m s 21.43 29.26 19.92 24.12 +jugements jugement nom m p 21.43 29.26 1.51 5.14 +jugent juger ver 56.12 96.96 1.06 1.55 ind:pre:3p; +jugeons juger ver 56.12 96.96 0.98 0.41 imp:pre:1p;ind:pre:1p; +jugeote jugeote nom f s 1.07 1.01 1.07 1.01 +juger juger ver 56.12 96.96 18.06 28.65 inf;; +jugera juger ver 56.12 96.96 1.42 1.49 ind:fut:3s; +jugerai juger ver 56.12 96.96 0.72 0 ind:fut:1s; +jugeraient juger ver 56.12 96.96 0.05 0.07 cnd:pre:3p; +jugerais juger ver 56.12 96.96 0.09 0.07 cnd:pre:1s; +jugerait juger ver 56.12 96.96 0.08 0.81 cnd:pre:3s; +jugeras juger ver 56.12 96.96 0.39 0.27 ind:fut:2s; +jugerez juger ver 56.12 96.96 0.81 0.88 ind:fut:2p; +jugeriez juger ver 56.12 96.96 0.05 0.41 cnd:pre:2p; +jugerons juger ver 56.12 96.96 0.22 0.07 ind:fut:1p; +jugeront juger ver 56.12 96.96 0.23 0.54 ind:fut:3p; +juges juge nom m p 66.45 44.46 10.06 14.66 +jugeur jugeur nom m s 0.01 0 0.01 0 +jugez juger ver 56.12 96.96 4.25 1.62 imp:pre:2p;ind:pre:2p; +jugeâmes juger ver 56.12 96.96 0 0.14 ind:pas:1p; +jugeât juger ver 56.12 96.96 0 0.54 sub:imp:3s; +jugiez juger ver 56.12 96.96 0.13 0.34 ind:imp:2p; +jugions juger ver 56.12 96.96 0.02 0.54 ind:imp:1p; +jugula juguler ver 0.39 0.61 0 0.14 ind:pas:3s; +jugulaire jugulaire nom f s 0.6 1.96 0.53 1.89 +jugulaires jugulaire nom f p 0.6 1.96 0.07 0.07 +jugulant juguler ver 0.39 0.61 0 0.07 par:pre; +jugule juguler ver 0.39 0.61 0.13 0 ind:pre:3s; +juguler juguler ver 0.39 0.61 0.21 0.27 inf; +jugulé juguler ver m s 0.39 0.61 0.05 0 par:pas; +jugulée juguler ver f s 0.39 0.61 0 0.14 par:pas; +jugèrent juger ver 56.12 96.96 0.03 0.68 ind:pas:3p; +jugé juger ver m s 56.12 96.96 9.18 11.62 par:pas; +jugée juger ver f s 56.12 96.96 2.01 2.7 par:pas; +jugées juger ver f p 56.12 96.96 0.11 0.95 par:pas; +jugés juger ver m p 56.12 96.96 1.88 1.89 par:pas; +juif juif adj m s 30.62 36.76 17.23 19.86 +juifs juif nom m p 45.32 55.74 29.03 30.88 +juillet juillet nom m 11.97 47.57 11.96 47.57 +juillets juillet nom m p 11.97 47.57 0.01 0 +juin juin nom m 13.4 51.28 13.4 51.28 +juive juif adj f s 30.62 36.76 8.43 8.99 +juiverie juiverie nom f s 0.1 0.61 0.1 0.47 +juiveries juiverie nom f p 0.1 0.61 0 0.14 +juives juif adj f p 30.62 36.76 0.54 1.35 +jujube jujube nom m s 0.06 0.54 0.02 0.54 +jujubes jujube nom m p 0.06 0.54 0.04 0 +jujubiers jujubier nom m p 0 0.27 0 0.27 +juke_box juke_box nom m 1.61 1.89 1.58 1.69 +juke_box juke_box nom m p 1.61 1.89 0.03 0.2 +julep julep nom m s 0.02 0.41 0.02 0.27 +juleps julep nom m p 0.02 0.41 0 0.14 +jules jules nom m 4.13 3.51 4.13 3.51 +julien julien adj m s 0.47 1.76 0.47 1.76 +julienne julienne nom f s 0.04 0.74 0.04 0.68 +juliennes julienne adj f p 0 1.15 0 0.14 +julot julot nom m s 0.12 2.36 0.12 1.76 +julots julot nom m p 0.12 2.36 0 0.61 +jumbo jumbo nom m s 0.52 0.2 0.52 0.2 +jumeau jumeau adj m s 5.68 8.99 1.34 2.09 +jumeaux jumeau nom m p 13.74 17.77 12.47 16.01 +jumelage jumelage nom m s 0.01 0.07 0.01 0.07 +jumeler jumeler ver 0.17 0.54 0 0.07 inf; +jumelle jumeau adj f s 5.68 8.99 1.17 2.36 +jumellera jumeler ver 0.17 0.54 0 0.07 ind:fut:3s; +jumelles jumelle nom f p 5.61 14.66 4.89 12.7 +jumelé jumeler ver m s 0.17 0.54 0 0.14 par:pas; +jumelée jumeler ver f s 0.17 0.54 0 0.07 par:pas; +jumelée jumelé adj f s 0.03 0.54 0 0.07 +jumelées jumeler ver f p 0.17 0.54 0.02 0.07 par:pas; +jumelés jumelé adj m p 0.03 0.54 0.02 0.2 +jument jument nom f s 6.67 10.34 5.71 8.51 +jumenterie jumenterie nom f s 0 0.07 0 0.07 +juments jument nom f p 6.67 10.34 0.96 1.82 +jumper jumper nom m s 2.26 0 2.26 0 +jumping jumping nom m s 0.21 0 0.21 0 +jungien jungien adj m s 0.04 0.14 0.03 0.07 +jungiens jungien adj m p 0.04 0.14 0.01 0.07 +jungle jungle nom f s 16.47 8.38 16.25 7.43 +jungles jungle nom f p 16.47 8.38 0.22 0.95 +junior junior adj s 2.35 1.22 2.27 0.95 +juniors junior nom p 2.05 0.54 0.35 0.41 +junker junker nom m s 0.02 0.54 0.02 0.41 +junkers junker nom m p 0.02 0.54 0 0.14 +junkie junkie nom m s 5.15 1.42 3.22 0.81 +junkies junkie nom m p 5.15 1.42 1.93 0.61 +junky junky nom m s 0.15 0.07 0.15 0.07 +junte junte nom f s 0.17 0.14 0.17 0.14 +jupe jupe nom f s 12.76 49.59 10.12 34.05 +jupe_culotte jupe_culotte nom f s 0.02 0.34 0.02 0.27 +jupes jupe nom f p 12.76 49.59 2.64 15.54 +jupe_culotte jupe_culotte nom m p 0.02 0.34 0 0.07 +jupette jupette nom f s 0.66 1.55 0.63 1.42 +jupettes jupette nom f p 0.66 1.55 0.04 0.14 +jupiers jupier nom m p 0 0.07 0 0.07 +jupitérien jupitérien adj m s 0.02 0.34 0.02 0.14 +jupitérienne jupitérien adj f s 0.02 0.34 0 0.14 +jupitériens jupitérien adj m p 0.02 0.34 0 0.07 +jupon jupon nom m s 3 6.89 1.35 2.77 +juponnée juponner ver f s 0 0.27 0 0.14 par:pas; +juponnés juponner ver m p 0 0.27 0 0.14 par:pas; +jupons jupon nom m p 3 6.89 1.65 4.12 +jupée jupé adj f s 0 0.14 0 0.07 +jupées jupé adj f p 0 0.14 0 0.07 +jura jurer ver 148.41 81.76 0.2 5.54 ind:pas:3s; +jurai jurer ver 148.41 81.76 0.16 0.41 ind:pas:1s; +juraient jurer ver 148.41 81.76 0.17 1.62 ind:imp:3p; +jurais jurer ver 148.41 81.76 0.34 1.22 ind:imp:1s;ind:imp:2s; +jurait jurer ver 148.41 81.76 1.06 4.46 ind:imp:3s; +jurant jurer ver 148.41 81.76 0.58 4.93 par:pre; +jurançon jurançon nom m s 0 0.07 0 0.07 +jurassien jurassien adj m s 0 0.14 0 0.07 +jurassien jurassien nom m s 0 0.14 0 0.07 +jurassiens jurassien adj m p 0 0.14 0 0.07 +jurassiens jurassien nom m p 0 0.14 0 0.07 +jurassique jurassique adj m s 0.29 0 0.28 0 +jurassiques jurassique adj f p 0.29 0 0.01 0 +jure jurer ver 148.41 81.76 104.04 31.62 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +jurent jurer ver 148.41 81.76 1.01 1.01 ind:pre:3p; +jurer jurer ver 148.41 81.76 7.58 7.57 ind:pre:2p;inf; +jurera jurer ver 148.41 81.76 0.08 0 ind:fut:3s; +jurerai jurer ver 148.41 81.76 0.72 0.07 ind:fut:1s; +jurerais jurer ver 148.41 81.76 1.62 1.69 cnd:pre:1s;cnd:pre:2s; +jurerait jurer ver 148.41 81.76 0.38 2.16 cnd:pre:3s; +jureras jurer ver 148.41 81.76 0.16 0.07 ind:fut:2s; +jurerez jurer ver 148.41 81.76 0.05 0 ind:fut:2p; +jureriez jurer ver 148.41 81.76 0.05 0.14 cnd:pre:2p; +jureront jurer ver 148.41 81.76 0.04 0.07 ind:fut:3p; +jures jurer ver 148.41 81.76 4.75 1.01 ind:pre:2s; +jurez jurer ver 148.41 81.76 6.55 0.47 imp:pre:2p;ind:pre:2p; +juridiction juridiction nom f s 2.63 1.49 2.53 1.15 +juridictionnel juridictionnel adj m s 0.04 0 0.01 0 +juridictionnelle juridictionnel adj f s 0.04 0 0.04 0 +juridictions juridiction nom f p 2.63 1.49 0.09 0.34 +juridique juridique adj s 5.2 2.5 4.24 1.62 +juridiquement juridiquement adv 0.14 0.27 0.14 0.27 +juridiques juridique adj p 5.2 2.5 0.95 0.88 +juriez jurer ver 148.41 81.76 0.13 0 ind:imp:2p; +jurisprudence jurisprudence nom f s 0.82 0.34 0.82 0.34 +juriste juriste nom s 2.57 0.88 1.95 0.34 +juristes juriste nom p 2.57 0.88 0.62 0.54 +juron juron nom m s 2.1 9.93 0.42 3.31 +jurons juron nom m p 2.1 9.93 1.68 6.62 +jury jury nom m s 18.8 5.27 18.65 5.14 +jurys jury nom m p 18.8 5.27 0.15 0.14 +jurâmes jurer ver 148.41 81.76 0 0.07 ind:pas:1p; +jurèrent jurer ver 148.41 81.76 0.02 0.54 ind:pas:3p; +juré jurer ver m s 148.41 81.76 17.59 16.69 par:pas; +jurée jurer ver f s 148.41 81.76 0.45 0.14 par:pas; +jurées jurer ver f p 148.41 81.76 0.01 0 par:pas; +jurés juré nom m p 8.82 4.73 5.59 3.92 +jus jus nom m 22.36 23.04 22.36 23.04 +jusant jusant nom m s 0.01 1.76 0.01 1.76 +jusqu jusqu pre 2.26 0.07 2.26 0.07 +jusqu_au jusqu_au pre 0.34 0.07 0.34 0.07 +jusqu_à jusqu_à pre 0.81 0.27 0.81 0.27 +jusque jusque pre 15.05 37.5 15.05 37.5 +jusque_là jusque_là adv 7.81 29.53 7.81 29.53 +jusques jusques adv 0 1.15 0 1.15 +jusquiame jusquiame nom f s 0.11 0.07 0.11 0.07 +justaucorps justaucorps nom m 0.22 0.61 0.22 0.61 +juste juste adj_sup s 656.86 153.45 653.49 147.77 +juste_milieu juste_milieu nom m 0 0.07 0 0.07 +justement justement adv 62.08 78.18 62.08 78.18 +justes juste adj_sup p 656.86 153.45 3.36 5.68 +justesse justesse nom f s 1.91 8.58 1.91 8.58 +justice justice nom s 50.96 46.28 50.96 46.22 +justices justice nom f p 50.96 46.28 0 0.07 +justiciable justiciable adj m s 0.1 0.47 0.1 0.27 +justiciables justiciable adj p 0.1 0.47 0 0.2 +justicier justicier nom m s 1.97 3.78 1.45 1.96 +justiciers justicier nom m p 1.97 3.78 0.48 1.35 +justicière justicier nom f s 1.97 3.78 0.03 0.47 +justifia justifier ver 15.55 36.01 0 0.27 ind:pas:3s; +justifiable justifiable adj m s 0.08 0.34 0.06 0.14 +justifiables justifiable adj f p 0.08 0.34 0.02 0.2 +justifiaient justifier ver 15.55 36.01 0 1.28 ind:imp:3p; +justifiais justifier ver 15.55 36.01 0.01 0.2 ind:imp:1s;ind:imp:2s; +justifiait justifier ver 15.55 36.01 0.17 4.53 ind:imp:3s; +justifiant justifier ver 15.55 36.01 0.07 0.68 par:pre; +justificatif justificatif nom m s 0.49 0.2 0.26 0.2 +justificatifs justificatif nom m p 0.49 0.2 0.23 0 +justification justification nom f s 0.96 6.76 0.84 5 +justifications justification nom f p 0.96 6.76 0.13 1.76 +justificative justificatif adj f s 0.02 0.34 0.01 0.2 +justificatives justificatif adj f p 0.02 0.34 0 0.14 +justifie justifier ver 15.55 36.01 3.94 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +justifient justifier ver 15.55 36.01 0.42 0.68 ind:pre:3p; +justifier justifier ver 15.55 36.01 7.37 14.93 inf; +justifiera justifier ver 15.55 36.01 0.08 0.27 ind:fut:3s; +justifierai justifier ver 15.55 36.01 0.04 0.07 ind:fut:1s; +justifieraient justifier ver 15.55 36.01 0.01 0.14 cnd:pre:3p; +justifierais justifier ver 15.55 36.01 0.01 0.07 cnd:pre:1s; +justifierait justifier ver 15.55 36.01 0.2 0.61 cnd:pre:3s; +justifiez justifier ver 15.55 36.01 0.52 0.14 imp:pre:2p;ind:pre:2p; +justifiât justifier ver 15.55 36.01 0 0.47 sub:imp:3s; +justifié justifier ver m s 15.55 36.01 1.38 2.91 par:pas; +justifiée justifier ver f s 15.55 36.01 0.84 2.36 par:pas; +justifiées justifier ver f p 15.55 36.01 0.27 0.68 par:pas; +justifiés justifier ver m p 15.55 36.01 0.23 1.01 par:pas; +justinien justinien adj m s 0 0.07 0 0.07 +juta juter ver 0.03 0.95 0 0.07 ind:pas:3s; +jutait juter ver 0.03 0.95 0 0.14 ind:imp:3s; +jute jute nom m s 0.64 2.77 0.64 2.77 +juter juter ver 0.03 0.95 0.03 0.61 inf; +juteuse juteux adj f s 2.86 2.64 0.75 1.01 +juteuses juteux adj f p 2.86 2.64 0.53 0.47 +juteux juteux adj m 2.86 2.64 1.58 1.15 +juté juter ver m s 0.03 0.95 0 0.14 par:pas; +juvénile juvénile adj s 1.48 6.89 1.24 5.27 +juvéniles juvénile adj p 1.48 6.89 0.23 1.62 +juvénilité juvénilité nom f s 0 0.2 0 0.2 +juxtaposaient juxtaposer ver 0.07 0.95 0 0.07 ind:imp:3p; +juxtaposais juxtaposer ver 0.07 0.95 0 0.07 ind:imp:1s; +juxtaposait juxtaposer ver 0.07 0.95 0.01 0.07 ind:imp:3s; +juxtaposant juxtaposer ver 0.07 0.95 0.02 0 par:pre; +juxtapose juxtaposer ver 0.07 0.95 0.03 0.07 ind:pre:1s;ind:pre:3s; +juxtaposent juxtaposer ver 0.07 0.95 0 0.14 ind:pre:3p; +juxtaposer juxtaposer ver 0.07 0.95 0 0.2 inf; +juxtaposition juxtaposition nom f s 0.17 0.68 0.17 0.54 +juxtapositions juxtaposition nom f p 0.17 0.68 0 0.14 +juxtaposèrent juxtaposer ver 0.07 0.95 0 0.07 ind:pas:3p; +juxtaposées juxtaposé adj f p 0 0.68 0 0.47 +juxtaposés juxtaposer ver m p 0.07 0.95 0 0.2 par:pas; +jà jà adv 1.02 0.41 1.02 0.41 +jèze jèze adj m s 0 0.07 0 0.07 +jèzes jèze nom p 0 0.07 0 0.07 +jéjunale jéjunal adj f s 0.01 0 0.01 0 +jéjunum jéjunum nom m s 0.04 0 0.04 0 +jéroboam jéroboam nom m s 0.01 0.07 0.01 0 +jéroboams jéroboam nom m p 0.01 0.07 0 0.07 +jérémiade jérémiade nom f s 0.93 1.89 0.14 0.14 +jérémiades jérémiade nom f p 0.93 1.89 0.79 1.76 +jésuite jésuite nom m s 1.54 5.07 0.61 2.09 +jésuites jésuite nom m p 1.54 5.07 0.92 2.97 +jésuitique jésuitique adj s 0.02 0.41 0.02 0.34 +jésuitiques jésuitique adj m p 0.02 0.41 0 0.07 +jésuitière jésuitière nom f s 0 0.07 0 0.07 +jésus jésus nom m s 8.19 0.88 8.19 0.88 +k k nom m 9.93 3.78 9.93 3.78 +k_o k_o adj 0.02 0.07 0.02 0.07 +k_way k_way nom m s 0.06 0.2 0.06 0.2 +ka ka nom m s 0.29 0.07 0.29 0.07 +kabarde kabarde adj f s 0 0.07 0 0.07 +kabbale kabbale nom f s 0.2 0.47 0.2 0.47 +kabbalistique kabbalistique adj s 0 0.07 0 0.07 +kabuki kabuki nom m s 0.42 0.14 0.42 0.14 +kabyle kabyle adj s 0.01 1.01 0.01 0.61 +kabyles kabyle adj p 0.01 1.01 0 0.41 +kacha kacha nom f s 0 0.34 0 0.34 +kacher kacher adj m s 0.02 0.14 0.02 0.14 +kachoube kachoube adj 0.1 0 0.1 0 +kaddisch kaddisch nom m s 0 0.07 0 0.07 +kaddish kaddish nom m s 0.2 0 0.2 0 +kadi kadi nom m s 0.11 0 0.11 0 +kafir kafir nom m s 0.05 0 0.05 0 +kafkaïen kafkaïen adj m s 0.02 0.07 0.02 0.07 +kaftan kaftan adj m s 0.04 0 0.02 0 +kaftans kaftan adj m p 0.04 0 0.01 0 +kaiser kaiser nom m s 0.02 0.14 0.02 0.14 +kaki kaki adj 0.46 5.34 0.46 5.34 +kakis kaki nom m p 0.68 1.15 0.29 0.27 +kala_azar kala_azar nom m s 0 0.07 0 0.07 +kalachnikovs kalachnikov nom f p 0.17 0 0.17 0 +kali kali nom m s 0.19 0 0.19 0 +kaliémie kaliémie nom f s 0.01 0 0.01 0 +kalmouk kalmouk adj m s 0 0.14 0 0.07 +kalmouks kalmouk adj m p 0 0.14 0 0.07 +kalpa kalpa nom m s 0.01 0.07 0.01 0.07 +kaléidoscope kaléidoscope nom m s 0.21 1.42 0.18 1.22 +kaléidoscopes kaléidoscope nom m p 0.21 1.42 0.04 0.2 +kama kama nom s 0.14 0 0.14 0 +kamala kamala nom m s 0.07 0 0.07 0 +kami kami nom m s 0.2 0.07 0.2 0.07 +kamikaze kamikaze nom m s 1.26 2.09 0.73 1.01 +kamikazes kamikaze nom m p 1.26 2.09 0.53 1.08 +kan kan nom m s 0.12 0.27 0.12 0.27 +kana kana nom m s 0.12 0.07 0.12 0.07 +kandjar kandjar nom m s 0 0.07 0 0.07 +kangourou kangourou nom m s 1.85 1.42 1.42 1.15 +kangourous kangourou nom m p 1.85 1.42 0.42 0.27 +kanji kanji nom m s 0.04 0 0.04 0 +kantien kantien adj m s 0.01 0.07 0.01 0.07 +kantisme kantisme nom m s 0 0.2 0 0.2 +kaolin kaolin nom m s 0.01 0.34 0.01 0.34 +kaori kaori nom m s 0.01 0 0.01 0 +kapo kapo nom m s 0.29 0.34 0.29 0.14 +kapok kapok nom m s 0.04 0.34 0.04 0.34 +kapokier kapokier nom m s 0.01 0 0.01 0 +kapos kapo nom m p 0.29 0.34 0 0.2 +kaposi kaposi nom m s 0.09 0.2 0.09 0.2 +kapout kapout nom m s 0.01 0.2 0.01 0.2 +kappa kappa nom m s 0.17 0 0.17 0 +karaoké karaoké nom m s 0.99 0 0.97 0 +karaokés karaoké nom m p 0.99 0 0.02 0 +karaté karaté nom m s 2.64 0.95 2.64 0.95 +karatéka karatéka nom s 0.2 0.14 0.2 0.07 +karatékas karatéka nom p 0.2 0.14 0 0.07 +karen karen adj s 0.43 0 0.43 0 +kari kari nom m s 0.19 0.07 0.19 0.07 +karité karité nom m s 0.01 0.14 0.01 0.14 +karma karma nom m s 10.73 0.14 10.73 0.14 +karmique karmique adj s 0.16 0 0.16 0 +kart kart nom m s 0.3 0 0.3 0 +karting karting nom m s 0.34 0 0.34 0 +kasbah kasbah nom f 0 0.27 0 0.27 +kascher kascher adj s 0.13 0.27 0.13 0.27 +kasher kasher adj 0.63 0.41 0.63 0.41 +kastro kastro nom m s 0 0.54 0 0.47 +kastros kastro nom m p 0 0.54 0 0.07 +kata kata nom m s 0.02 0 0.01 0 +katal katal nom m s 0.01 0 0.01 0 +katangais katangais nom m 0.1 0.14 0.1 0.14 +katas kata nom m p 0.02 0 0.01 0 +katchinas katchina nom m p 0 0.07 0 0.07 +katiba katiba nom f s 0 0.07 0 0.07 +kava kava nom m s 0.01 0 0.01 0 +kawa kawa nom m s 0 3.11 0 3.11 +kayac kayac nom m s 0.01 0 0.01 0 +kayak kayak nom m s 0.34 0.14 0.34 0.14 +kayakiste kayakiste nom s 0.01 0 0.01 0 +kazakh kazakh adj m s 0.33 0.07 0.13 0 +kazakhs kazakh adj m p 0.33 0.07 0.2 0.07 +kebab kebab nom m s 0.78 0.07 0.55 0.07 +kebabs kebab nom m p 0.78 0.07 0.23 0 +kebla kebla adj s 0 0.14 0 0.07 +keblas kebla adj f p 0 0.14 0 0.07 +keepsake keepsake nom m s 0.05 0 0.05 0 +keffieh keffieh nom m s 0.01 0 0.01 0 +keiretsu keiretsu nom m s 0.07 0 0.07 0 +kekchose kekchose nom f s 0.01 0.07 0.01 0.07 +kelvins kelvin nom m p 0.03 0 0.03 0 +kendo kendo nom m s 0.24 0 0.24 0 +kermesse kermesse nom f s 0.96 2.77 0.93 2.3 +kermesses kermesse nom f p 0.96 2.77 0.04 0.47 +kerrie kerrie nom f s 0.04 0 0.04 0 +ket ket nom m s 0.07 0.07 0.07 0.07 +ketch ketch nom m s 0.11 0.07 0.11 0.07 +ketchup ketchup nom m s 4.45 0.54 4.45 0.54 +keuf keuf nom f s 2.83 0.88 1 0 +keufs keuf nom f p 2.83 0.88 1.83 0.88 +keum keum nom m s 0.35 0.2 0.27 0.2 +keums keum nom m p 0.35 0.2 0.08 0 +kevlar kevlar nom m s 0.26 0 0.26 0 +khalife khalife nom m s 0.02 0.27 0.02 0.27 +khamsin khamsin nom m s 0 0.2 0 0.2 +khan khan nom m s 0.3 6.55 0.21 1.49 +khanat khanat nom m s 0 0.07 0 0.07 +khans khan nom m p 0.3 6.55 0.1 5.07 +khat khat nom m s 0.01 0 0.01 0 +khazar khazar adj s 0 0.14 0 0.14 +khmer khmer adj m s 0.28 0 0.27 0 +khmère khmer adj f s 0.28 0 0.01 0 +khâgne khâgne nom f s 0 1.55 0 1.42 +khâgnes khâgne nom f p 0 1.55 0 0.14 +khâgneux khâgneux nom m 0 0.34 0 0.34 +khédival khédival adj m s 0 0.07 0 0.07 +khédive khédive nom m s 0.03 0.88 0.03 0.88 +khôl khôl nom m s 0 0.81 0 0.81 +kibboutz kibboutz nom m 1.85 0.27 1.85 0.27 +kibboutzim kibboutzim nom m p 0 0.07 0 0.07 +kick kick nom m s 0.47 0.34 0.42 0.34 +kicker kicker nom m s 0.14 0 0.14 0 +kicks kick nom m p 0.47 0.34 0.05 0 +kid kid nom m s 6.62 7.36 5.71 6.82 +kidnappa kidnapper ver 15.21 1.08 0 0.07 ind:pas:3s; +kidnappait kidnapper ver 15.21 1.08 0.04 0.07 ind:imp:3s; +kidnappant kidnapper ver 15.21 1.08 0.04 0 par:pre; +kidnappe kidnapper ver 15.21 1.08 0.69 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +kidnappent kidnapper ver 15.21 1.08 0.15 0 ind:pre:3p; +kidnapper kidnapper ver 15.21 1.08 2.54 0.2 inf; +kidnapperai kidnapper ver 15.21 1.08 0.14 0 ind:fut:1s; +kidnapperaient kidnapper ver 15.21 1.08 0.11 0 cnd:pre:3p; +kidnapperas kidnapper ver 15.21 1.08 0.01 0 ind:fut:2s; +kidnapperez kidnapper ver 15.21 1.08 0.02 0 ind:fut:2p; +kidnappeur kidnappeur nom m s 3.55 0.27 2.2 0.07 +kidnappeurs kidnappeur nom m p 3.55 0.27 1.35 0.2 +kidnappez kidnapper ver 15.21 1.08 0.1 0 imp:pre:2p;ind:pre:2p; +kidnappiez kidnapper ver 15.21 1.08 0.03 0 ind:imp:2p; +kidnapping kidnapping nom m s 5.58 0.54 5.33 0.54 +kidnappings kidnapping nom m p 5.58 0.54 0.25 0 +kidnappons kidnapper ver 15.21 1.08 0.01 0 imp:pre:1p; +kidnappé kidnapper ver m s 15.21 1.08 6.66 0.2 par:pas; +kidnappée kidnapper ver f s 15.21 1.08 3.65 0.2 par:pas; +kidnappées kidnapper ver f p 15.21 1.08 0.28 0.14 par:pas; +kidnappés kidnapper ver m p 15.21 1.08 0.75 0.07 par:pas; +kids kid nom m p 6.62 7.36 0.91 0.54 +kief kief nom m s 0.02 0 0.02 0 +kierkegaardienne kierkegaardien nom f s 0 0.07 0 0.07 +kif kif nom m s 1.25 2.77 1.25 2.77 +kif_kif kif_kif adj s 0.2 0.81 0.2 0.81 +kiki kiki nom m s 0.53 0.74 0.53 0.74 +kil kil nom m s 0.17 0.54 0.16 0.34 +kilbus kilbus nom m 0 0.27 0 0.27 +kilim kilim nom m s 0.28 0 0.28 0 +killer killer nom s 1.19 0.07 1.19 0.07 +kilo kilo nom m s 22.54 24.19 5.19 5.27 +kilogramme kilogramme nom m s 0.17 0.14 0.14 0.07 +kilogrammes kilogramme nom m p 0.17 0.14 0.03 0.07 +kilohertz kilohertz nom m 0.14 0 0.14 0 +kilomètre kilomètre nom m s 24.8 62.23 3.73 6.28 +kilomètres kilomètre nom m p 24.8 62.23 21.07 55.95 +kilomètre_heure kilomètre_heure nom m p 0.14 0.41 0.14 0.41 +kilométrage kilométrage nom m s 0.5 0.27 0.49 0.14 +kilométrages kilométrage nom m p 0.5 0.27 0.01 0.14 +kilométrique kilométrique adj s 0.04 0.68 0.04 0.34 +kilométriques kilométrique adj f p 0.04 0.68 0 0.34 +kilos kilo nom m p 22.54 24.19 17.35 18.92 +kilotonnes kilotonne nom m p 0.1 0.14 0.1 0.14 +kilowattheure kilowattheure nom m s 0 0.07 0 0.07 +kilowatts kilowatt nom m p 0 0.34 0 0.34 +kils kil nom m p 0.17 0.54 0.01 0.2 +kilt kilt nom m s 0.55 0.68 0.5 0.68 +kilts kilt nom m p 0.55 0.68 0.05 0 +kimono kimono nom m s 2.11 2.43 1.84 1.89 +kimonos kimono nom m p 2.11 2.43 0.27 0.54 +kinase kinase nom f s 0.03 0 0.03 0 +kinescope kinescope nom m s 0.01 0 0.01 0 +kinesthésie kinesthésie nom f s 0.01 0 0.01 0 +king_charles king_charles nom m 0 0.07 0 0.07 +kinnor kinnor nom m s 0 0.07 0 0.07 +kino kino nom m s 0 0.07 0 0.07 +kiné kiné nom s 1.28 0 1.28 0 +kinésiques kinésique nom f p 0.01 0 0.01 0 +kinésithérapeute kinésithérapeute nom s 0.05 0.2 0.05 0.2 +kinésithérapie kinésithérapie nom f s 0.07 0 0.07 0 +kiosk kiosk nom m s 0 1.82 0 1.55 +kiosks kiosk nom m p 0 1.82 0 0.27 +kiosque kiosque nom m s 4.05 8.18 3.95 5.88 +kiosques kiosque nom m p 4.05 8.18 0.1 2.3 +kip kip nom m s 0.63 0 0.62 0 +kipa kipa nom f s 0.01 1.89 0.01 1.89 +kippa kippa nom f s 0.52 0.07 0.52 0.07 +kipper kipper nom m s 0.04 0.07 0.04 0 +kippers kipper nom m p 0.04 0.07 0 0.07 +kips kip nom m p 0.63 0 0.01 0 +kir kir nom m s 0.63 1.28 0.62 0.95 +kirghiz kirghiz nom m 0 0.2 0 0.2 +kirghize kirghize nom s 0.14 0 0.14 0 +kirghizes kirghize adj f p 0 0.14 0 0.07 +kirs kir nom m p 0.63 1.28 0.01 0.34 +kirsch kirsch nom m s 0.56 1.22 0.56 1.22 +kit kit nom m s 7.33 0.34 6.99 0.34 +kitch kitch adj f s 0.17 0 0.17 0 +kitchenette kitchenette nom f s 0.19 0.27 0.19 0.27 +kits kit nom m p 7.33 0.34 0.34 0 +kitsch kitsch adj 0.23 0.68 0.23 0.68 +kiva kiva nom f s 0.03 0 0.03 0 +kiwi kiwi nom m s 0 0.14 0 0.07 +kiwis kiwi nom m p 0 0.14 0 0.07 +klaxon klaxon nom m s 5.55 5.74 4.89 3.24 +klaxonna klaxonner ver 4.29 3.24 0.03 0.27 ind:pas:3s; +klaxonnai klaxonner ver 4.29 3.24 0 0.14 ind:pas:1s; +klaxonnaient klaxonner ver 4.29 3.24 0.02 0.14 ind:imp:3p; +klaxonnais klaxonner ver 4.29 3.24 0.04 0 ind:imp:1s; +klaxonnait klaxonner ver 4.29 3.24 0.05 0.27 ind:imp:3s; +klaxonnant klaxonner ver 4.29 3.24 0 0.68 par:pre; +klaxonne klaxonner ver 4.29 3.24 2.26 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +klaxonnent klaxonner ver 4.29 3.24 0.07 0.14 ind:pre:3p; +klaxonner klaxonner ver 4.29 3.24 0.75 0.61 inf; +klaxonnera klaxonner ver 4.29 3.24 0.01 0.07 ind:fut:3s; +klaxonnerai klaxonner ver 4.29 3.24 0.26 0 ind:fut:1s; +klaxonnes klaxonner ver 4.29 3.24 0.23 0 ind:pre:2s; +klaxonnez klaxonner ver 4.29 3.24 0.39 0.07 imp:pre:2p;ind:pre:2p; +klaxonné klaxonner ver m s 4.29 3.24 0.19 0.41 par:pas; +klaxons klaxon nom m p 5.55 5.74 0.66 2.5 +klebs klebs nom m 0.01 0 0.01 0 +kleenex kleenex nom m 1.35 2.91 1.35 2.91 +kleptomane kleptomane nom s 0.16 0 0.14 0 +kleptomanes kleptomane nom p 0.16 0 0.02 0 +kleptomanie kleptomanie nom f s 0.02 0 0.02 0 +klystron klystron nom m s 0.12 0 0.12 0 +km km adv 0.01 0 0.01 0 +knickerbockers knickerbocker nom m p 0.01 0.07 0.01 0.07 +knickers knicker nom m p 0.03 0.07 0.03 0.07 +knock_out knock_out adj m s 0.19 0.2 0.19 0.2 +knout knout nom m s 0 0.2 0 0.2 +koala koala nom m s 0.19 0.14 0.15 0.14 +koalas koala nom m p 0.19 0.14 0.04 0 +kobold kobold nom m s 0.37 0.07 0.22 0.07 +kobolds kobold nom m p 0.37 0.07 0.15 0 +kodak kodak nom m s 0.01 0.47 0.01 0.47 +kodiak kodiak nom m s 0.31 0 0.31 0 +kohl kohl nom m s 0 0.14 0 0.14 +kola kola nom m s 0.02 0.2 0.02 0.2 +kolatiers kolatier nom m p 0 0.2 0 0.2 +kolkhoze kolkhoze nom m s 1.11 0.41 1.11 0.41 +kolkhozien kolkhozien nom m s 0.2 0.68 0 0.07 +kolkhozienne kolkhozien nom f s 0.2 0.68 0.1 0.2 +kolkhoziennes kolkhozien nom f p 0.2 0.68 0 0.14 +kolkhoziens kolkhozien nom m p 0.2 0.68 0.1 0.27 +komi komi adj s 0.03 0 0.03 0 +komintern komintern nom m s 0.01 0.54 0.01 0.54 +kommandantur kommandantur nom f s 0.27 0.68 0.27 0.68 +kommando kommando nom m s 0.28 0.14 0.28 0.14 +komsomol komsomol nom m s 0.25 0.81 0.25 0.54 +komsomols komsomol nom m p 0.25 0.81 0 0.27 +kondo kondo nom m s 0.12 0 0.12 0 +kopeck kopeck nom m s 1.52 0.61 1.3 0.47 +kopecks kopeck nom m p 1.52 0.61 0.22 0.14 +kopeks kopek nom m p 0.14 0 0.14 0 +kora kora nom f s 0.01 0 0.01 0 +koran koran nom m s 0 0.14 0 0.14 +korrigan korrigan nom m s 0.03 0.2 0.01 0.07 +korrigans korrigan nom m p 0.03 0.2 0.02 0.14 +korè korè nom f s 0 0.07 0 0.07 +koré koré nom f s 0 0.34 0 0.34 +kosovar kosovar nom m s 0.01 0 0.01 0 +kot kot nom m s 0.33 0 0.33 0 +koto koto nom m s 0.02 0.07 0.02 0.07 +kouglof kouglof nom m s 0.02 0.14 0.02 0.14 +koulak koulak nom m s 0.11 0.47 0 0.27 +koulaks koulak nom m p 0.11 0.47 0.11 0.2 +kouros kouros nom m 0 0.27 0 0.27 +kraal kraal nom m s 0.03 0 0.03 0 +krach krach nom m s 0.15 0.41 0.15 0.34 +krachs krach nom m p 0.15 0.41 0 0.07 +kraft kraft nom m s 0.8 0.95 0.8 0.95 +krak krak nom m s 0.01 0 0.01 0 +kraken kraken nom m s 0.14 0 0.14 0 +kremlin kremlin nom m s 0 0.07 0 0.07 +kreutzer kreutzer nom m s 0 0.07 0 0.07 +kriegspiel kriegspiel nom m s 0 0.14 0 0.14 +krill krill nom m s 0.17 0 0.17 0 +kriss kriss nom m 0.09 0 0.09 0 +kroumir kroumir nom m s 0.01 0.27 0.01 0.2 +kroumirs kroumir nom m p 0.01 0.27 0 0.07 +krypton krypton nom m s 1.04 0 1.04 0 +ksar ksar nom m s 0 0.07 0 0.07 +kugelhof kugelhof nom m s 0.04 0.07 0.04 0.07 +kula kula nom f s 0.01 0.07 0.01 0.07 +kummel kummel nom m s 0.01 0.34 0.01 0.34 +kumquat kumquat nom m s 0.16 0.07 0.13 0 +kumquats kumquat nom m p 0.16 0.07 0.03 0.07 +kung_fu kung_fu nom m s 1.12 0 0.1 0 +kung_fu kung_fu nom m s 1.12 0 1.01 0 +kurde kurde adj s 0.17 0.2 0.16 0.07 +kurdes kurde adj p 0.17 0.2 0.01 0.14 +kursaal kursaal nom m s 0.2 0.07 0.2 0.07 +kurus kuru nom m p 0 0.07 0 0.07 +kvas kvas nom m 0.2 0 0.2 0 +kyrie kyrie nom m 0 0.54 0 0.54 +kyrie_eleison kyrie_eleison nom m 0.41 0.07 0.41 0.07 +kyrielle kyrielle nom f s 0.03 1.42 0.03 1.22 +kyrielles kyrielle nom f p 0.03 1.42 0 0.2 +kyste kyste nom m s 0.57 0.2 0.51 0.07 +kystes kyste nom m p 0.57 0.2 0.06 0.14 +kystique kystique adj f s 0.03 0 0.03 0 +kébour kébour nom m s 0 0.41 0 0.34 +kébours kébour nom m p 0 0.41 0 0.07 +kéfir kéfir nom m s 0 0.27 0 0.2 +kéfirs kéfir nom m p 0 0.27 0 0.07 +kényan kényan adj m s 0.02 0 0.02 0 +képi képi nom m s 2.39 15.81 1.85 12.91 +képis képi nom m p 2.39 15.81 0.55 2.91 +kérabau kérabau nom m s 0.1 0 0.1 0 +kératinisée kératinisé adj f s 0.01 0 0.01 0 +kératoplastie kératoplastie nom f s 0.01 0 0.01 0 +kératose kératose nom f s 0.01 0 0.01 0 +kérosène kérosène nom m s 0.91 0.2 0.91 0.14 +kérosènes kérosène nom m p 0.91 0.2 0 0.07 +l l art_def s 78.26 3.92 78.26 3.92 +l_ l_ art_def m s 8129.41 12746.76 8129.41 12746.76 +l_dopa l_dopa nom f s 0.05 0 0.05 0 +la la art_def f s 14946.48 23633.92 14946.48 23633.92 +la_plata la_plata nom s 0.01 0.14 0.01 0.14 +la_la_la la_la_la art_def f s 0.14 0.07 0.14 0.07 +labbe labbe nom m s 0 0.14 0 0.07 +labbes labbe nom m p 0 0.14 0 0.07 +label label nom m s 1.59 0.54 1.3 0.47 +labelle labelle nom m s 0.09 0 0.09 0 +labels label nom m p 1.59 0.54 0.29 0.07 +labeur labeur nom m s 3.73 9.8 3.71 8.85 +labeurs labeur nom m p 3.73 9.8 0.03 0.95 +labial labial adj m s 0.02 0.41 0 0.27 +labiale labial adj f s 0.02 0.41 0.02 0 +labiales labial adj f p 0.02 0.41 0 0.07 +labialisant labialiser ver 0 0.07 0 0.07 par:pre; +labiaux labial adj m p 0.02 0.41 0 0.07 +labile labile adj s 0.01 0.27 0.01 0.27 +labo labo nom m s 29.95 1.42 28.36 1.22 +laborantin laborantin nom m s 0.12 0.27 0.09 0.07 +laborantine laborantin nom f s 0.12 0.27 0.02 0.07 +laborantins laborantin nom m p 0.12 0.27 0.01 0.14 +laboratoire laboratoire nom m s 14.74 13.99 13.24 12.91 +laboratoires laboratoire nom m p 14.74 13.99 1.51 1.08 +laborieuse laborieux adj f s 1.21 7.16 0.34 1.96 +laborieusement laborieusement adv 0.02 1.62 0.02 1.62 +laborieuses laborieux adj f p 1.21 7.16 0.28 1.89 +laborieux laborieux adj m 1.21 7.16 0.6 3.31 +labos labo nom m p 29.95 1.42 1.6 0.2 +labour labour nom m s 0.67 6.62 0.39 2.64 +laboura labourer ver 2.56 7.03 0 0.07 ind:pas:3s; +labourable labourable adj s 0.01 0 0.01 0 +labourage labourage nom m s 0.14 0.41 0.14 0.41 +labouraient labourer ver 2.56 7.03 0.01 0.41 ind:imp:3p; +labourais labourer ver 2.56 7.03 0.03 0 ind:imp:1s;ind:imp:2s; +labourait labourer ver 2.56 7.03 0.14 0.61 ind:imp:3s; +labourant labourer ver 2.56 7.03 0.03 0.54 par:pre; +laboure labourer ver 2.56 7.03 0.27 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +labourent labourer ver 2.56 7.03 0.13 0.2 ind:pre:3p; +labourer labourer ver 2.56 7.03 1.41 1.22 inf; +labourerait labourer ver 2.56 7.03 0.01 0.07 cnd:pre:3s; +laboureur laboureur nom m s 0.2 2.43 0.17 1.42 +laboureurs laboureur nom m p 0.2 2.43 0.02 1.01 +labours labour nom m p 0.67 6.62 0.28 3.99 +labouré labourer ver m s 2.56 7.03 0.47 1.15 par:pas; +labourée labourer ver f s 2.56 7.03 0.02 1.08 par:pas; +labourées labourer ver f p 2.56 7.03 0.02 0.47 par:pas; +labourés labourer ver m p 2.56 7.03 0.01 0.54 par:pas; +labrador labrador nom m s 0.36 0.34 0.3 0.27 +labradors labrador nom m p 0.36 0.34 0.06 0.07 +labre labre nom m s 0 0.2 0 0.07 +labres labre nom m p 0 0.2 0 0.14 +labri labri nom m s 0.02 0 0.01 0 +labris labri nom m p 0.02 0 0.01 0 +labyrinthe labyrinthe nom m s 5.05 8.31 4.9 7.03 +labyrinthes labyrinthe nom m p 5.05 8.31 0.15 1.28 +labyrinthique labyrinthique adj s 0.05 0.27 0.02 0.2 +labyrinthiques labyrinthique adj p 0.05 0.27 0.03 0.07 +lac lac nom m s 31.16 32.84 31.16 32.84 +lacandon lacandon adj s 0 0.07 0 0.07 +lacanien lacanien adj m s 0.01 0.07 0.01 0.07 +lacaniens lacanien nom m p 0 0.14 0 0.07 +lace lacer ver 0.81 2.23 0.15 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lacent lacer ver 0.81 2.23 0 0.07 ind:pre:3p; +lacer lacer ver 0.81 2.23 0.56 0.68 inf; +lacet lacet nom m s 4.4 13.78 0.83 5.27 +lacets lacet nom m p 4.4 13.78 3.57 8.51 +lacis lacis nom m 0 1.89 0 1.89 +lack lack nom m s 0.16 0 0.16 0 +laconique laconique adj s 0.08 2.43 0.06 1.55 +laconiquement laconiquement adv 0.01 0.61 0.01 0.61 +laconiques laconique adj p 0.08 2.43 0.02 0.88 +laconisme laconisme nom m s 0.01 0.47 0.01 0.47 +lacrima_christi lacrima_christi nom m 0 0.07 0 0.07 +lacryma_christi lacryma_christi nom m s 0 0.34 0 0.14 +lacryma_christi lacryma_christi nom m s 0 0.34 0 0.2 +lacrymal lacrymal adj m s 0.42 0.68 0.03 0.14 +lacrymale lacrymal adj f s 0.42 0.68 0 0.07 +lacrymales lacrymal adj f p 0.42 0.68 0.25 0.47 +lacrymaux lacrymal adj m p 0.42 0.68 0.14 0 +lacrymogène lacrymogène adj s 1.22 0.81 0.54 0.41 +lacrymogènes lacrymogène adj p 1.22 0.81 0.69 0.41 +lacs lacs nom m 3.6 8.58 3.6 8.58 +lactaires lactaire nom m p 0 0.2 0 0.2 +lactate lactate nom m s 0.06 0 0.06 0 +lactation lactation nom f s 0.05 0 0.05 0 +lactescent lactescent adj m s 0 0.14 0 0.07 +lactescente lactescent adj f s 0 0.14 0 0.07 +lactifère lactifère adj f s 0.01 0 0.01 0 +lactique lactique adj s 0.12 0 0.12 0 +lactose lactose nom m s 0.69 0 0.69 0 +lacté lacté adj m s 0.85 1.69 0.1 0.2 +lactée lacté adj f s 0.85 1.69 0.75 1.42 +lactés lacté adj m p 0.85 1.69 0 0.07 +lacunaire lacunaire adj s 0.08 0.34 0.08 0.34 +lacune lacune nom f s 0.44 2.23 0.09 0.68 +lacunes lacune nom f p 0.44 2.23 0.35 1.55 +lacustre lacustre adj s 0.02 0.61 0.02 0.47 +lacustres lacustre adj m p 0.02 0.61 0 0.14 +lacère lacérer ver 1.38 4.05 0.18 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lacèrent lacérer ver 1.38 4.05 0.14 0.2 ind:pre:3p; +lacé lacer ver m s 0.81 2.23 0.04 0.07 par:pas; +lacédémoniens lacédémonien nom m p 0 0.07 0 0.07 +lacée lacer ver f s 0.81 2.23 0 0.07 par:pas; +lacées lacer ver f p 0.81 2.23 0.02 0.54 par:pas; +lacéra lacérer ver 1.38 4.05 0 0.2 ind:pas:3s; +lacéraient lacérer ver 1.38 4.05 0 0.14 ind:imp:3p; +lacérait lacérer ver 1.38 4.05 0 0.14 ind:imp:3s; +lacérant lacérer ver 1.38 4.05 0.15 0.41 par:pre; +lacération lacération nom f s 1.64 0 1 0 +lacérations lacération nom f p 1.64 0 0.64 0 +lacérer lacérer ver 1.38 4.05 0.34 1.01 inf; +lacérions lacérer ver 1.38 4.05 0 0.07 ind:imp:1p; +lacéré lacérer ver m s 1.38 4.05 0.26 0.68 par:pas; +lacérée lacérer ver f s 1.38 4.05 0.04 0.34 par:pas; +lacérées lacéré adj f p 0.1 1.22 0.02 0.34 +lacérés lacérer ver m p 1.38 4.05 0.26 0.27 par:pas; +lacés lacer ver m p 0.81 2.23 0 0.2 par:pas; +lad lad nom m s 0.2 0.74 0.17 0.54 +ladies ladies nom f p 0.91 0.14 0.91 0.14 +ladino ladino nom m s 0 0.07 0 0.07 +ladite ladite adj f s 0.33 1.82 0.33 1.82 +ladre ladre nom s 0.01 0.27 0.01 0.2 +ladrerie ladrerie nom f s 0 0.2 0 0.14 +ladreries ladrerie nom f p 0 0.2 0 0.07 +ladres ladre nom p 0.01 0.27 0 0.07 +lads lad nom m p 0.2 0.74 0.03 0.2 +lady lady nom f s 13.48 3.24 13.47 3.24 +ladys lady nom f p 13.48 3.24 0.01 0 +lagan lagan nom m s 0.05 0 0.05 0 +lagon lagon nom m s 0.84 0.88 0.71 0.74 +lagons lagon nom m p 0.84 0.88 0.13 0.14 +laguiole laguiole nom m s 0 0.07 0 0.07 +lagunaire lagunaire adj m s 0 0.2 0 0.2 +lagune lagune nom f s 2.84 8.92 2.4 6.69 +lagunes lagune nom f p 2.84 8.92 0.44 2.23 +lai lai adj m s 1.05 0.14 1.04 0.14 +laid laid adj m s 18.54 26.82 9.52 10.41 +laide laid adj f s 18.54 26.82 6.23 9.73 +laidement laidement adv 0 0.47 0 0.47 +laideron laideron nom m s 0.47 0.68 0.26 0.2 +laiderons laideron nom m p 0.47 0.68 0.21 0.47 +laides laid adj f p 18.54 26.82 1.51 3.11 +laideur laideur nom f s 1.44 8.99 1.44 8.78 +laideurs laideur nom f p 1.44 8.99 0 0.2 +laids laid adj m p 18.54 26.82 1.28 3.58 +laie laie nom f s 0.01 1.76 0.01 1.62 +laies laie nom f p 0.01 1.76 0 0.14 +lainage lainage nom m s 0.17 4.59 0.01 2.5 +lainages lainage nom m p 0.17 4.59 0.16 2.09 +laine laine nom f s 6.41 37.03 6.27 34.86 +laines laine nom f p 6.41 37.03 0.14 2.16 +laineurs laineur nom m p 0 0.14 0 0.07 +laineuse laineux adj f s 0.06 1.89 0 0.47 +laineuses laineux adj f p 0.06 1.89 0 0.34 +laineux laineux adj m s 0.06 1.89 0.06 1.08 +lainier lainier adj m s 0 0.2 0 0.14 +lainière lainier adj f s 0 0.2 0 0.07 +laird laird nom m s 0.36 0.07 0.36 0.07 +lais lai adj m p 1.05 0.14 0.01 0 +laissa laisser ver 1334.1 851.55 2.52 67.97 ind:pas:3s; +laissai laisser ver 1334.1 851.55 0.41 8.11 ind:pas:1s; +laissaient laisser ver 1334.1 851.55 1.69 23.92 ind:imp:3p; +laissais laisser ver 1334.1 851.55 4.54 12.36 ind:imp:1s;ind:imp:2s; +laissait laisser ver 1334.1 851.55 7.78 82.77 ind:imp:3s; +laissant laisser ver 1334.1 851.55 10.8 58.51 par:pre; +laissassent laisser ver 1334.1 851.55 0 0.07 sub:imp:3p; +laisse laisser ver 1334.1 851.55 479.63 143.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +laisse_la_moi laisse_la_moi nom f s 0.14 0 0.14 0 +laissent laisser ver 1334.1 851.55 15.24 22.3 ind:pre:3p;sub:pre:3p; +laisser laisser ver 1334.1 851.55 243.13 192.03 inf;;inf;;inf;;inf;;inf;;inf;; +laisser_aller laisser_aller nom m 0.75 3.38 0.75 3.38 +laisser_faire laisser_faire nom m 0.01 0.07 0.01 0.07 +laissera laisser ver 1334.1 851.55 13.78 6.62 ind:fut:3s; +laisserai laisser ver 1334.1 851.55 28.33 5.81 ind:fut:1s; +laisseraient laisser ver 1334.1 851.55 1.23 2.09 cnd:pre:3p; +laisserais laisser ver 1334.1 851.55 7.47 2.64 cnd:pre:1s;cnd:pre:2s; +laisserait laisser ver 1334.1 851.55 5.18 8.72 cnd:pre:3s; +laisseras laisser ver 1334.1 851.55 3.19 0.74 ind:fut:2s; +laisserez laisser ver 1334.1 851.55 1.93 1.22 ind:fut:2p; +laisseriez laisser ver 1334.1 851.55 0.93 0.54 cnd:pre:2p; +laisserions laisser ver 1334.1 851.55 0.1 0.34 cnd:pre:1p; +laisserons laisser ver 1334.1 851.55 2.93 0.81 ind:fut:1p; +laisseront laisser ver 1334.1 851.55 5.74 2.5 ind:fut:3p; +laisses laisser ver 1334.1 851.55 36.4 5 ind:pre:2s;sub:pre:1p;sub:pre:2s; +laissez laisser ver 1334.1 851.55 265.61 31.42 imp:pre:2p;ind:pre:2p; +laissez_faire laissez_faire nom m 0.01 0 0.01 0 +laissez_passer laissez_passer nom m 4 1.96 4 1.96 +laissiez laisser ver 1334.1 851.55 2.39 0.95 ind:imp:2p;sub:pre:2p; +laissions laisser ver 1334.1 851.55 0.54 2.5 ind:imp:1p; +laissons laisser ver 1334.1 851.55 20.73 6.76 imp:pre:1p;ind:pre:1p; +laissâmes laisser ver 1334.1 851.55 0 0.54 ind:pas:1p; +laissât laisser ver 1334.1 851.55 0.01 2.97 sub:imp:3s; +laissèrent laisser ver 1334.1 851.55 0.42 4.73 ind:pas:3p; +laissé laisser ver m s 1334.1 851.55 139.96 117.57 par:pas;par:pas;par:pas;par:pas; +laissé_pour_compte laissé_pour_compte nom m s 0 0.07 0 0.07 +laissée laisser ver f s 1334.1 851.55 20.9 20.47 ind:imp:3p;par:pas; +laissées laisser ver f p 1334.1 851.55 3.47 6.01 par:pas; +laissés laisser ver m p 1334.1 851.55 7.12 9.26 par:pas; +laissés_pour_compte laissés_pour_compte nom m p 0.23 0.07 0.23 0.07 +lait lait nom m s 59.62 62.91 59.41 62.23 +laitage laitage nom m s 0.41 0.88 0.22 0.54 +laitages laitage nom m p 0.41 0.88 0.2 0.34 +laitance laitance nom f s 0.27 0.47 0.27 0.34 +laitances laitance nom f p 0.27 0.47 0 0.14 +laiterie laiterie nom f s 0.32 0.61 0.29 0.47 +laiteries laiterie nom f p 0.32 0.61 0.03 0.14 +laites laite nom f p 0 0.07 0 0.07 +laiteuse laiteux adj f s 0.32 10.41 0.1 4.86 +laiteuses laiteux adj f p 0.32 10.41 0 1.42 +laiteux laiteux adj m 0.32 10.41 0.22 4.12 +laitier laitier nom m s 1.32 2.43 1.18 1.49 +laitiers laitier adj m p 1.26 0.74 0.66 0.07 +laitière laitier adj f s 1.26 0.74 0.38 0.47 +laitières laitier adj f p 1.26 0.74 0.05 0.14 +laiton laiton nom m s 0.21 1.55 0.21 1.55 +laits lait nom m p 59.62 62.91 0.21 0.68 +laitue laitue nom f s 2.52 2.43 1.97 1.62 +laitues laitue nom f p 2.52 2.43 0.56 0.81 +laizes laize nom f p 0 0.14 0 0.14 +lala lala ono 0.66 0.07 0.66 0.07 +lama lama nom m s 2.13 0.74 1.23 0.47 +lamais lamer ver 0.02 0.2 0 0.07 ind:imp:1s; +lamantin lamantin nom m s 0.84 0.2 0.54 0.14 +lamantins lamantin nom m p 0.84 0.2 0.29 0.07 +lamartiniennes lamartinien nom f p 0 0.07 0 0.07 +lamas lama nom m p 2.13 0.74 0.9 0.27 +lamaïsme lamaïsme nom m s 0 0.07 0 0.07 +lambada lambada nom f s 0.13 0 0.13 0 +lambda lambda nom m s 0.74 0.07 0.72 0 +lambdas lambda nom m p 0.74 0.07 0.02 0.07 +lambeau lambeau nom m s 2.41 14.26 0.61 3.51 +lambeaux lambeau nom m p 2.41 14.26 1.8 10.74 +lambel lambel nom m s 0.01 0 0.01 0 +lambi lambi nom m s 0 0.07 0 0.07 +lambic lambic nom m s 0 0.07 0 0.07 +lambin lambin adj m s 0.04 0.14 0.02 0.14 +lambinaient lambiner ver 0.62 1.15 0 0.14 ind:imp:3p; +lambinais lambiner ver 0.62 1.15 0 0.07 ind:imp:1s; +lambinait lambiner ver 0.62 1.15 0 0.07 ind:imp:3s; +lambinant lambiner ver 0.62 1.15 0 0.07 par:pre; +lambine lambiner ver 0.62 1.15 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lambiner lambiner ver 0.62 1.15 0.22 0.54 inf; +lambines lambiner ver 0.62 1.15 0.02 0 ind:pre:2s; +lambinez lambiner ver 0.62 1.15 0.05 0 imp:pre:2p;ind:pre:2p; +lambiniez lambiner ver 0.62 1.15 0.01 0 ind:imp:2p; +lambinions lambiner ver 0.62 1.15 0 0.07 ind:imp:1p; +lambinons lambiner ver 0.62 1.15 0.01 0.07 imp:pre:1p; +lambins lambin nom m p 0.16 0.2 0.15 0 +lambiné lambiner ver m s 0.62 1.15 0.05 0 par:pas; +lambrequins lambrequin nom m p 0 0.2 0 0.2 +lambris lambris nom m 0.04 1.55 0.04 1.55 +lambrissage lambrissage nom m s 0.01 0.07 0.01 0.07 +lambrissé lambrisser ver m s 0.02 0.27 0.01 0.07 par:pas; +lambrissée lambrissé adj f s 0 0.41 0 0.2 +lambrissées lambrisser ver f p 0.02 0.27 0.01 0 par:pas; +lambrusques lambrusque nom f p 0 0.07 0 0.07 +lambswool lambswool nom m s 0 0.14 0 0.14 +lame lame nom f s 14.22 37.09 11.05 25.81 +lamedu lamedu nom m s 0 0.14 0 0.14 +lamedé lamedé nom f s 0 0.81 0 0.68 +lamedés lamedé nom f p 0 0.81 0 0.14 +lamelle lamelle nom f s 0.72 2.64 0.14 0.54 +lamelles lamelle nom f p 0.72 2.64 0.59 2.09 +lamellibranches lamellibranche nom m p 0 0.07 0 0.07 +lamelliforme lamelliforme adj m s 0 0.07 0 0.07 +lamenta lamenter ver 3.37 7.43 0 0.61 ind:pas:3s; +lamentable lamentable adj s 5.7 9.26 5.33 7.36 +lamentablement lamentablement adv 0.44 1.82 0.44 1.82 +lamentables lamentable adj p 5.7 9.26 0.37 1.89 +lamentaient lamenter ver 3.37 7.43 0 0.47 ind:imp:3p; +lamentais lamenter ver 3.37 7.43 0.02 0 ind:imp:1s;ind:imp:2s; +lamentait lamenter ver 3.37 7.43 0.2 2.09 ind:imp:3s; +lamentant lamenter ver 3.37 7.43 0.06 0.41 par:pre; +lamentation lamentation nom f s 1.35 4.8 0.47 0.95 +lamentations lamentation nom f p 1.35 4.8 0.89 3.85 +lamente lamenter ver 3.37 7.43 1.31 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lamentent lamenter ver 3.37 7.43 0.15 0.54 ind:pre:3p; +lamenter lamenter ver 3.37 7.43 1.2 1.55 inf;; +lamentera lamenter ver 3.37 7.43 0.14 0.07 ind:fut:3s; +lamenterait lamenter ver 3.37 7.43 0.01 0.07 cnd:pre:3s; +lamenteront lamenter ver 3.37 7.43 0.02 0.07 ind:fut:3p; +lamentez lamenter ver 3.37 7.43 0.03 0.07 imp:pre:2p;ind:pre:2p; +lamentions lamenter ver 3.37 7.43 0 0.07 ind:imp:1p; +lamento lamento nom m s 0.01 1.22 0.01 1.22 +lamentons lamenter ver 3.37 7.43 0.1 0 ind:pre:1p; +lamentèrent lamenter ver 3.37 7.43 0 0.07 ind:pas:3p; +lamenté lamenter ver m s 3.37 7.43 0.14 0.27 par:pas; +lamentés lamenter ver m p 3.37 7.43 0 0.07 par:pas; +lamer lamer ver 0.02 0.2 0.01 0 imp:pre:2p; +lames lame nom f p 14.22 37.09 3.17 11.28 +lamie lamie nom f s 0 0.07 0 0.07 +lamifié lamifié adj m s 0 0.14 0 0.07 +lamifiés lamifié adj m p 0 0.14 0 0.07 +laminage laminage nom m s 0.01 0.07 0.01 0 +laminages laminage nom m p 0.01 0.07 0 0.07 +laminaire laminaire nom f s 0 0.14 0 0.07 +laminaires laminaire nom f p 0 0.14 0 0.07 +laminait laminer ver 0.7 1.55 0 0.14 ind:imp:3s; +laminant laminer ver 0.7 1.55 0.01 0 par:pre; +lamine laminer ver 0.7 1.55 0.05 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +laminectomie laminectomie nom f s 0.01 0 0.01 0 +laminer laminer ver 0.7 1.55 0.44 0.34 inf; +lamineront laminer ver 0.7 1.55 0.01 0 ind:fut:3p; +lamines laminer ver 0.7 1.55 0 0.07 ind:pre:2s; +laminoir laminoir nom m s 0.01 0.47 0 0.34 +laminoirs laminoir nom m p 0.01 0.47 0.01 0.14 +laminé laminer ver m s 0.7 1.55 0.11 0.47 par:pas; +laminée laminer ver f s 0.7 1.55 0.02 0.07 par:pas; +laminées laminer ver f p 0.7 1.55 0.01 0.14 par:pas; +laminés laminer ver m p 0.7 1.55 0.05 0.14 par:pas; +lampa lamper ver 0.41 1.69 0.14 0.2 ind:pas:3s; +lampadaire lampadaire nom m s 1.89 6.76 1.61 2.84 +lampadaires lampadaire nom m p 1.89 6.76 0.28 3.92 +lampadophore lampadophore adj s 0 0.14 0 0.14 +lampais lamper ver 0.41 1.69 0 0.07 ind:imp:1s; +lampait lamper ver 0.41 1.69 0 0.41 ind:imp:3s; +lampant lamper ver 0.41 1.69 0 0.2 par:pre; +lamparos lamparo nom m p 0 0.14 0 0.14 +lampas lampas nom m 0 0.07 0 0.07 +lampe lampe nom f s 25.86 93.11 22.22 70.88 +lampe_phare lampe_phare nom f s 0 0.07 0 0.07 +lampe_tempête lampe_tempête nom f s 0 0.95 0 0.68 +lampent lamper ver 0.41 1.69 0.01 0 ind:pre:3p; +lamper lamper ver 0.41 1.69 0 0.2 inf; +lampes lampe nom f p 25.86 93.11 3.63 22.23 +lampe_tempête lampe_tempête nom f p 0 0.95 0 0.27 +lampez lamper ver 0.41 1.69 0 0.07 ind:pre:2p; +lampion lampion nom m s 0.28 3.99 0.01 0.81 +lampions lampion nom m p 0.28 3.99 0.27 3.18 +lampiste lampiste nom m s 0.03 0.2 0.01 0 +lampisterie lampisterie nom f s 0 0.27 0 0.2 +lampisteries lampisterie nom f p 0 0.27 0 0.07 +lampistes lampiste nom m p 0.03 0.2 0.02 0.2 +lampons lampon nom m p 0 0.07 0 0.07 +lamproie lamproie nom f s 0.04 0.41 0.03 0.07 +lamproies lamproie nom f p 0.04 0.41 0.01 0.34 +lampyres lampyre nom m p 0.01 0.07 0.01 0.07 +lampé lamper ver m s 0.41 1.69 0 0.2 par:pas; +lampée lampée nom f s 0.26 3.31 0.25 2.5 +lampées lampée nom f p 0.26 3.31 0.01 0.81 +lamé lamé adj m s 0.56 1.22 0.56 0.81 +lamée lamé adj f s 0.56 1.22 0 0.07 +lamées lamer ver f p 0.02 0.2 0 0.07 par:pas; +lamés lamé adj m p 0.56 1.22 0 0.34 +lance lancer ver 75.22 165.07 18.3 19.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +lance_engins lance_engins nom m 0.02 0 0.02 0 +lance_flamme lance_flamme nom m s 0.06 0 0.06 0 +lance_flammes lance_flammes nom m 1.06 0.61 1.06 0.61 +lance_fusée lance_fusée nom m s 0.01 0 0.01 0 +lance_fusées lance_fusées nom m 0.12 0.61 0.12 0.61 +lance_grenade lance_grenade nom m s 0.02 0 0.02 0 +lance_grenades lance_grenades nom m 0.34 0 0.34 0 +lance_missiles lance_missiles nom m 0.26 0.07 0.26 0.07 +lance_pierre lance_pierre nom m s 0.25 0.07 0.25 0.07 +lance_pierres lance_pierres nom m 0.39 1.42 0.39 1.42 +lance_roquette lance_roquette nom m s 0.06 0 0.06 0 +lance_roquettes lance_roquettes nom m 0.72 0.14 0.72 0.14 +lance_torpille lance_torpille nom m s 0 0.07 0 0.07 +lance_torpilles lance_torpilles nom m 0.03 0.41 0.03 0.41 +lancelot lancelot nom m s 0 0.14 0 0.14 +lancement lancement nom m s 8.88 2.03 8.63 1.96 +lancements lancement nom m p 8.88 2.03 0.25 0.07 +lancent lancer ver 75.22 165.07 1.31 4.05 ind:pre:3p; +lancequine lancequiner ver 0 0.34 0 0.27 ind:pre:1s;ind:pre:3s; +lancequiner lancequiner ver 0 0.34 0 0.07 inf; +lancer lancer ver 75.22 165.07 18.56 26.08 ind:pre:2p;ind:pre:2p;inf; +lancera lancer ver 75.22 165.07 0.9 0.41 ind:fut:3s; +lancerai lancer ver 75.22 165.07 0.65 0.2 ind:fut:1s; +lanceraient lancer ver 75.22 165.07 0.01 0.07 cnd:pre:3p; +lancerais lancer ver 75.22 165.07 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +lancerait lancer ver 75.22 165.07 0.15 0.68 cnd:pre:3s; +lanceras lancer ver 75.22 165.07 0.18 0.07 ind:fut:2s; +lancerez lancer ver 75.22 165.07 0.26 0 ind:fut:2p; +lancerons lanceron nom m p 0.18 0 0.18 0 +lanceront lancer ver 75.22 165.07 0.16 0.14 ind:fut:3p; +lancers lancer nom m p 4.04 2.03 0.68 0.34 +lances lancer ver 75.22 165.07 1.91 0.47 ind:pre:2s;sub:pre:2s; +lancette lancette nom f s 0.29 0.27 0.29 0.27 +lanceur lanceur nom m s 2.25 0.54 1.84 0.34 +lanceurs lanceur nom m p 2.25 0.54 0.39 0.2 +lanceuse lanceur nom f s 2.25 0.54 0.02 0 +lancez lancer ver 75.22 165.07 5.83 0.47 imp:pre:2p;ind:pre:2p; +lancier lancier nom m s 0.55 0.88 0.23 0.14 +lanciers lancier nom m p 0.55 0.88 0.31 0.74 +lanciez lancer ver 75.22 165.07 0.1 0 ind:imp:2p; +lancinait lanciner ver 0.14 0.74 0 0.14 ind:imp:3s; +lancinance lancinance nom f s 0 0.07 0 0.07 +lancinant lancinant adj m s 0.48 5.34 0.19 1.89 +lancinante lancinant adj f s 0.48 5.34 0.29 2.16 +lancinantes lancinant adj f p 0.48 5.34 0.01 0.95 +lancinants lancinant adj m p 0.48 5.34 0 0.34 +lancine lanciner ver 0.14 0.74 0.04 0.07 ind:pre:1s;ind:pre:3s; +lanciné lanciner ver m s 0.14 0.74 0 0.14 par:pas; +lancions lancer ver 75.22 165.07 0.05 0.2 ind:imp:1p; +lancèrent lancer ver 75.22 165.07 0.21 1.42 ind:pas:3p; +lancé lancer ver m s 75.22 165.07 17.31 24.66 par:pas; +lancée lancer ver f s 75.22 165.07 3.02 6.76 par:pas; +lancées lancer ver f p 75.22 165.07 0.68 2.84 par:pas; +lancéolés lancéolé adj m p 0 0.07 0 0.07 +lancés lancer ver m p 75.22 165.07 1.2 5.27 par:pas; +land land nom m s 2.77 1.96 2.56 1.96 +landais landais adj m 0.01 0.74 0.01 0.2 +landaise landais nom f s 0.01 0.07 0.01 0 +landaises landais adj f p 0.01 0.74 0 0.14 +landau landau nom m s 1.01 4.59 0.98 3.65 +landaulet landaulet nom m s 0 0.07 0 0.07 +landaus landau nom m p 1.01 4.59 0.04 0.95 +lande lande nom f s 1.69 10.47 1.57 8.04 +landerneau landerneau nom m s 0 0.07 0 0.07 +landes lande nom f p 1.69 10.47 0.12 2.43 +landiers landier nom m p 0 0.2 0 0.2 +landing landing nom m s 0.1 0 0.1 0 +landlord landlord nom m s 0.01 0 0.01 0 +lands land nom m p 2.77 1.96 0.21 0 +landsturm landsturm nom m s 0 0.14 0 0.14 +landwehr landwehr nom f s 0 0.27 0 0.27 +langage langage nom m s 16.68 37.36 16.56 36.01 +langages langage nom m p 16.68 37.36 0.11 1.35 +langagiers langagier adj m p 0 0.2 0 0.2 +lange langer ver 1.06 1.15 0.55 0 ind:pre:3s; +langeait langer ver 1.06 1.15 0 0.14 ind:imp:3s; +langeant langer ver 1.06 1.15 0 0.07 par:pre; +langer langer ver 1.06 1.15 0.23 0.68 inf; +langes lange nom m p 0.85 1.62 0.75 1.55 +langoureuse langoureux adj f s 0.77 3.04 0.09 1.08 +langoureusement langoureusement adv 0.02 0.47 0.02 0.47 +langoureuses langoureux adj f p 0.77 3.04 0.01 0.27 +langoureux langoureux adj m 0.77 3.04 0.67 1.69 +langouste langouste nom f s 2.98 4.19 1.99 2.09 +langoustes langouste nom f p 2.98 4.19 0.99 2.09 +langoustine langoustine nom f s 0.48 0.47 0.22 0 +langoustines langoustine nom f p 0.48 0.47 0.26 0.47 +langue langue nom f s 69.11 126.28 58.95 103.78 +languedociens languedocien nom m p 0 0.07 0 0.07 +langues langue nom f p 69.11 126.28 10.17 22.5 +languette languette nom f s 0.1 0.81 0.09 0.54 +languettes languette nom f p 0.1 0.81 0.01 0.27 +langueur langueur nom f s 0.36 4.66 0.36 3.78 +langueurs langueur nom f p 0.36 4.66 0 0.88 +langui languir ver m s 5.99 3.72 0.34 0.2 par:pas; +languide languide adj s 0.2 1.55 0.1 1.28 +languides languide adj m p 0.2 1.55 0.1 0.27 +languir languir ver 5.99 3.72 1.45 1.08 inf; +languirait languir ver 5.99 3.72 0.01 0.07 cnd:pre:3s; +languirent languir ver 5.99 3.72 0.01 0.07 ind:pas:3p; +languiront languir ver 5.99 3.72 0 0.07 ind:fut:3p; +languis languir ver m p 5.99 3.72 1.8 0.27 ind:pre:1s;ind:pre:2s;par:pas; +languissaient languir ver 5.99 3.72 0.12 0.14 ind:imp:3p; +languissais languir ver 5.99 3.72 0.46 0.41 ind:imp:1s;ind:imp:2s; +languissait languir ver 5.99 3.72 0.49 0.68 ind:imp:3s; +languissamment languissamment adv 0.01 0.34 0.01 0.34 +languissant languissant adj m s 0.91 2.16 0.49 0.81 +languissante languissant adj f s 0.91 2.16 0.28 0.74 +languissantes languissant adj f p 0.91 2.16 0.15 0.2 +languissants languissant adj m p 0.91 2.16 0 0.41 +languisse languir ver 5.99 3.72 0.02 0 sub:pre:1s;sub:pre:3s; +languissent languir ver 5.99 3.72 0.03 0.07 ind:pre:3p; +languisses languir ver 5.99 3.72 0.01 0 sub:pre:2s; +languissons languir ver 5.99 3.72 0.14 0 ind:pre:1p; +languit languir ver 5.99 3.72 1.1 0.47 ind:pre:3s;ind:pas:3s; +langé langer ver m s 1.06 1.15 0.28 0.2 par:pas; +langée langer ver f s 1.06 1.15 0 0.07 par:pas; +lanière lanière nom f s 0.85 6.69 0.42 2.64 +lanières lanière nom f p 0.85 6.69 0.43 4.05 +lanlaire lanlaire adv 0 0.14 0 0.14 +lanoline lanoline nom f s 0.09 0.14 0.09 0.14 +lansquenet lansquenet nom m s 1.36 1.76 1.36 0.41 +lansquenets lansquenet nom m p 1.36 1.76 0 1.35 +lansquine lansquine nom f s 0 0.07 0 0.07 +lansquiner lansquiner ver 0 0.07 0 0.07 inf; +lanternant lanterner ver 0.1 0.2 0 0.07 par:pre; +lanterne lanterne nom f s 3.09 16.82 2.35 11.55 +lanterne_tempête lanterne_tempête nom f s 0 0.07 0 0.07 +lanterner lanterner ver 0.1 0.2 0.06 0.14 inf; +lanternes lanterne nom f p 3.09 16.82 0.73 5.27 +lanternez lanterner ver 0.1 0.2 0.02 0 imp:pre:2p;ind:pre:2p; +lanternier lanternier nom m s 0 0.14 0 0.14 +lanterné lanterner ver m s 0.1 0.2 0.01 0 par:pas; +lanthane lanthane nom m s 0.01 0 0.01 0 +lança lancer ver 75.22 165.07 0.79 38.72 ind:pas:3s; +lançai lancer ver 75.22 165.07 0.04 1.49 ind:pas:1s; +lançaient lancer ver 75.22 165.07 0.63 5.81 ind:imp:3p; +lançais lancer ver 75.22 165.07 0.41 1.49 ind:imp:1s;ind:imp:2s; +lançait lancer ver 75.22 165.07 0.89 15.41 ind:imp:3s; +lançant lancer ver 75.22 165.07 0.6 8.11 par:pre; +lanças lancer ver 75.22 165.07 0 0.14 ind:pas:2s; +lançons lancer ver 75.22 165.07 0.81 0.34 imp:pre:1p;ind:pre:1p; +lançâmes lancer ver 75.22 165.07 0 0.14 ind:pas:1p; +lançât lancer ver 75.22 165.07 0 0.41 sub:imp:3s; +lao lao nom m s 0.02 0.14 0.01 0.07 +laos lao nom m p 0.02 0.14 0.01 0.07 +laotien laotien adj m s 0.02 0.2 0.02 0 +laotienne laotien adj f s 0.02 0.2 0 0.14 +laotiens laotien nom m p 0.05 0 0.05 0 +lap lap nom m s 0.08 0.27 0.08 0.27 +lapais laper ver 1.41 2.36 0 0.07 ind:imp:1s; +lapait laper ver 1.41 2.36 0 0.41 ind:imp:3s; +lapalissade lapalissade nom f s 0.01 0 0.01 0 +lapant laper ver 1.41 2.36 0 0.47 par:pre; +laparoscopie laparoscopie nom f s 0.09 0 0.09 0 +laparotomie laparotomie nom f s 0.22 0.07 0.22 0.07 +lape laper ver 1.41 2.36 1.33 0.41 imp:pre:2s;ind:pre:3s; +lapement lapement nom m s 0 0.27 0 0.07 +lapements lapement nom m p 0 0.27 0 0.2 +lapent laper ver 1.41 2.36 0 0.07 ind:pre:3p; +laper laper ver 1.41 2.36 0.07 0.68 inf; +lapereau lapereau nom m s 0.31 0.27 0.29 0 +lapereaux lapereau nom m p 0.31 0.27 0.02 0.27 +lapida lapider ver 0.93 1.35 0 0.07 ind:pas:3s; +lapidaire lapidaire adj s 0.03 0.88 0.01 0.34 +lapidaires lapidaire adj p 0.03 0.88 0.02 0.54 +lapidait lapider ver 0.93 1.35 0.02 0.14 ind:imp:3s; +lapidant lapider ver 0.93 1.35 0 0.07 par:pre; +lapidation lapidation nom f s 0.27 0.14 0.25 0.07 +lapidations lapidation nom f p 0.27 0.14 0.02 0.07 +lapide lapider ver 0.93 1.35 0.13 0.07 ind:pre:3s; +lapident lapider ver 0.93 1.35 0.01 0 ind:pre:3p; +lapider lapider ver 0.93 1.35 0.27 0.34 inf; +lapiderait lapider ver 0.93 1.35 0.01 0.07 cnd:pre:3s; +lapideras lapider ver 0.93 1.35 0.01 0 ind:fut:2s; +lapidez lapider ver 0.93 1.35 0.07 0 imp:pre:2p; +lapidification lapidification nom f s 0 0.07 0 0.07 +lapidifiés lapidifier ver m p 0 0.07 0 0.07 par:pas; +lapidèrent lapider ver 0.93 1.35 0.14 0 ind:pas:3p; +lapidé lapider ver m s 0.93 1.35 0.19 0.41 par:pas; +lapidée lapider ver f s 0.93 1.35 0.07 0.07 par:pas; +lapidés lapider ver m p 0.93 1.35 0.01 0.14 par:pas; +lapin lapin nom m s 39.28 32.43 26.59 16.76 +lapine lapin nom f s 39.28 32.43 0.25 0.41 +lapiner lapiner ver 0 0.07 0 0.07 inf; +lapines lapin nom f p 39.28 32.43 0.13 0.14 +lapinière lapinière nom f s 0.01 0 0.01 0 +lapins lapin nom m p 39.28 32.43 12.32 15.14 +lapis lapis nom m 0.03 0.14 0.03 0.14 +lapis_lazuli lapis_lazuli nom m 0.01 0.41 0.01 0.41 +lapon lapon nom m s 2.21 0.14 2.21 0.07 +lapone lapon adj f s 1.44 0.14 0.01 0.07 +lapones lapon adj f p 1.44 0.14 0 0.07 +laponne lapon adj f s 1.44 0.14 0.1 0 +lapons lapon nom m p 2.21 0.14 0.01 0 +lappant lapper ver 0 0.47 0 0.14 par:pre; +lapper lapper ver 0 0.47 0 0.27 inf; +lappé lapper ver m s 0 0.47 0 0.07 par:pas; +laps laps nom m 0.57 2.23 0.57 2.23 +lapsus lapsus nom m 0.93 1.62 0.93 1.62 +lapé laper ver m s 1.41 2.36 0 0.27 par:pas; +lapées laper ver f p 1.41 2.36 0.01 0 par:pas; +laquaient laquer ver 0.12 3.72 0 0.07 ind:imp:3p; +laquais laquais nom m 1.15 2.36 1.15 2.36 +laquait laquer ver 0.12 3.72 0 0.07 ind:imp:3s; +laque laque nom f s 0.79 2.7 0.79 2.09 +laquelle laquelle pro_rel f s 68.94 185.27 66.95 182.36 +laquer laquer ver 0.12 3.72 0.01 0.07 inf; +laquerai laquer ver 0.12 3.72 0 0.07 ind:fut:1s; +laques laque nom f p 0.79 2.7 0 0.61 +laqué laqué adj m s 0.66 3.38 0.47 1.49 +laquée laqué adj f s 0.66 3.38 0.14 0.81 +laquées laqué adj f p 0.66 3.38 0.01 0.14 +laqués laqué adj m p 0.66 3.38 0.04 0.95 +larbin larbin nom m s 3.17 3.72 2.24 1.96 +larbineries larbinerie nom f p 0 0.07 0 0.07 +larbins larbin nom m p 3.17 3.72 0.93 1.76 +larcin larcin nom m s 0.6 2.3 0.43 1.22 +larcins larcin nom m p 0.6 2.3 0.17 1.08 +lard lard nom m s 8.62 11.28 8.49 11.01 +larda larder ver 0.07 1.35 0 0.07 ind:pas:3s; +lardage lardage nom m s 0 0.07 0 0.07 +lardais larder ver 0.07 1.35 0 0.07 ind:imp:1s; +lardait larder ver 0.07 1.35 0 0.14 ind:imp:3s; +lardant larder ver 0.07 1.35 0 0.07 par:pre; +larde larder ver 0.07 1.35 0.01 0.14 ind:pre:1s;ind:pre:3s; +larder larder ver 0.07 1.35 0.04 0.41 inf; +lardeuss lardeuss nom m 0 0.68 0 0.68 +lardeux lardeux adj m 0 0.07 0 0.07 +lardon lardon nom m s 0.83 1.76 0.57 0.61 +lardons lardon nom m p 0.83 1.76 0.26 1.15 +lards lard nom m p 8.62 11.28 0.13 0.27 +lardu lardu nom m s 0.03 3.85 0.01 1.49 +lardus lardu nom m p 0.03 3.85 0.02 2.36 +lardé larder ver m s 0.07 1.35 0.02 0.27 par:pas; +lardée larder ver f s 0.07 1.35 0 0.07 par:pas; +lardées larder ver f p 0.07 1.35 0 0.07 par:pas; +lare lare adj m s 0.27 0.14 0 0.07 +lares lare adj m p 0.27 0.14 0.27 0.07 +larfeuil larfeuil nom m s 0.13 0.27 0.13 0.2 +larfeuille larfeuille nom m s 0.16 0.41 0.16 0.34 +larfeuilles larfeuille nom m p 0.16 0.41 0 0.07 +larfeuils larfeuil nom m p 0.13 0.27 0 0.07 +largable largable adj f s 0.02 0 0.02 0 +largage largage nom m s 1.36 0.07 1.34 0.07 +largages largage nom m p 1.36 0.07 0.02 0 +large large adj s 18.66 107.5 14.25 70.54 +largement largement adv 5.98 26.76 5.98 26.76 +larges large adj p 18.66 107.5 4.41 36.96 +largesse largesse nom f s 0.42 2.23 0.08 0.88 +largesses largesse nom f p 0.42 2.23 0.34 1.35 +largeur largeur nom f s 1.58 11.89 1.55 11.42 +largeurs largeur nom f p 1.58 11.89 0.02 0.47 +larghetto larghetto nom m s 0 0.07 0 0.07 +largo largo adv 0.94 0 0.94 0 +largua larguer ver 14.61 6.89 0.03 0.2 ind:pas:3s; +larguaient larguer ver 14.61 6.89 0.01 0.07 ind:imp:3p; +larguais larguer ver 14.61 6.89 0.05 0.14 ind:imp:1s; +larguait larguer ver 14.61 6.89 0.08 0.41 ind:imp:3s; +larguant larguer ver 14.61 6.89 0.08 0.2 par:pre; +largue larguer ver 14.61 6.89 2.13 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +larguent larguer ver 14.61 6.89 0.27 0.2 ind:pre:3p; +larguer larguer ver 14.61 6.89 4.16 2.3 inf; +larguera larguer ver 14.61 6.89 0.16 0 ind:fut:3s; +larguerai larguer ver 14.61 6.89 0.04 0.07 ind:fut:1s; +larguerait larguer ver 14.61 6.89 0.03 0.07 cnd:pre:3s; +larguerez larguer ver 14.61 6.89 0.02 0 ind:fut:2p; +largueront larguer ver 14.61 6.89 0.02 0 ind:fut:3p; +largues larguer ver 14.61 6.89 0.3 0.07 ind:pre:2s; +largueur largueur nom m s 0.02 0 0.02 0 +larguez larguer ver 14.61 6.89 1.01 0.2 imp:pre:2p;ind:pre:2p; +larguiez larguer ver 14.61 6.89 0 0.07 ind:imp:2p; +larguons larguer ver 14.61 6.89 0 0.07 imp:pre:1p; +largué larguer ver m s 14.61 6.89 4.2 1.28 par:pas; +larguée larguer ver f s 14.61 6.89 1.49 0.61 par:pas; +larguées largué adj f p 0.87 0.95 0.21 0.14 +largués larguer ver m p 14.61 6.89 0.45 0.27 par:pas; +larigot larigot nom m s 0 0.41 0 0.41 +larme larme nom f s 45.71 133.51 5.15 10.81 +larmes larme nom f p 45.71 133.51 40.56 122.7 +larmichette larmichette nom f s 0.01 0.27 0.01 0.2 +larmichettes larmichette nom f p 0.01 0.27 0 0.07 +larmiers larmier nom m p 0 0.07 0 0.07 +larmoie larmoyer ver 0.28 1.28 0.1 0.27 ind:pre:3s; +larmoiement larmoiement nom m s 0 0.2 0 0.14 +larmoiements larmoiement nom m p 0 0.2 0 0.07 +larmoient larmoyer ver 0.28 1.28 0 0.07 ind:pre:3p; +larmoyait larmoyer ver 0.28 1.28 0.01 0.2 ind:imp:3s; +larmoyant larmoyant adj m s 0.84 2.91 0.32 0.54 +larmoyante larmoyant adj f s 0.84 2.91 0.27 1.35 +larmoyantes larmoyant adj f p 0.84 2.91 0.09 0.2 +larmoyants larmoyant adj m p 0.84 2.91 0.16 0.81 +larmoyer larmoyer ver 0.28 1.28 0.15 0.41 inf; +larmoyeur larmoyeur adj m s 0 0.07 0 0.07 +larmoyons larmoyer ver 0.28 1.28 0 0.07 imp:pre:1p; +larmoyé larmoyer ver m s 0.28 1.28 0 0.07 par:pas; +larron larron nom m s 0.51 1.82 0.34 0.95 +larronne larronner ver 0 0.07 0 0.07 ind:pre:3s; +larrons larron nom m p 0.51 1.82 0.17 0.88 +larsen larsen nom m s 0.89 0.34 0.89 0.34 +larvaire larvaire adj s 0.09 1.08 0.07 0.68 +larvaires larvaire adj p 0.09 1.08 0.03 0.41 +larve larve nom f s 3.52 3.92 1.92 1.69 +larves larve nom f p 3.52 3.92 1.61 2.23 +larvicide larvicide nom m s 0.01 0 0.01 0 +larvé larvé adj m s 0.03 0.88 0 0.14 +larvée larvé adj f s 0.03 0.88 0.03 0.61 +larvées larvé adj f p 0.03 0.88 0 0.14 +laryngite laryngite nom f s 0.27 0.14 0.27 0.14 +laryngologique laryngologique adj f s 0 0.07 0 0.07 +laryngologiste laryngologiste nom s 0 0.14 0 0.14 +laryngoscope laryngoscope nom m s 0.19 0.07 0.18 0 +laryngoscopes laryngoscope nom m p 0.19 0.07 0.01 0.07 +laryngoscopie laryngoscopie nom f s 0.1 0 0.1 0 +laryngé laryngé adj m s 0.09 0.07 0.09 0 +laryngée laryngé adj f s 0.09 0.07 0 0.07 +larynx larynx nom m 0.94 1.55 0.94 1.55 +las las ono 0.12 0.74 0.12 0.74 +lasagne lasagne nom f s 1.94 0.41 0.15 0 +lasagnes lasagne nom f p 1.94 0.41 1.79 0.41 +lascar lascar nom m s 1.34 3.92 0.79 1.89 +lascars lascar nom m p 1.34 3.92 0.55 2.03 +lascif lascif adj m s 1.52 2.5 0.46 0.74 +lascifs lascif adj m p 1.52 2.5 0.05 0.27 +lascive lascif adj f s 1.52 2.5 0.21 0.54 +lascivement lascivement adv 0.02 0.27 0.02 0.27 +lascives lascif adj f p 1.52 2.5 0.8 0.95 +lascivité lascivité nom f s 0.16 0.34 0.16 0.27 +lascivités lascivité nom f p 0.16 0.34 0 0.07 +laser laser nom m s 7.87 0.95 5.87 0.81 +lasers laser nom m p 7.87 0.95 2 0.14 +lassa lasser ver 7.43 24.32 0.05 0.74 ind:pas:3s; +lassai lasser ver 7.43 24.32 0 0.2 ind:pas:1s; +lassaient lasser ver 7.43 24.32 0.01 0.95 ind:imp:3p; +lassais lasser ver 7.43 24.32 0.08 0.68 ind:imp:1s;ind:imp:2s; +lassait lasser ver 7.43 24.32 0.06 2.91 ind:imp:3s; +lassant lassant adj m s 0.67 1.28 0.58 0.61 +lassante lassant adj f s 0.67 1.28 0.05 0.41 +lassantes lassant adj f p 0.67 1.28 0.02 0.2 +lassants lassant adj m p 0.67 1.28 0.02 0.07 +lasse las adj f s 16.46 35 8.33 10.07 +lassent lasser ver 7.43 24.32 0.5 0.74 ind:pre:3p; +lasser lasser ver 7.43 24.32 1.22 5.88 inf; +lassera lasser ver 7.43 24.32 0.39 0 ind:fut:3s; +lasserai lasser ver 7.43 24.32 0.22 0.47 ind:fut:1s; +lasseraient lasser ver 7.43 24.32 0 0.14 cnd:pre:3p; +lasserais lasser ver 7.43 24.32 0.04 0.27 cnd:pre:1s;cnd:pre:2s; +lasserait lasser ver 7.43 24.32 0.01 0.2 cnd:pre:3s; +lasserez lasser ver 7.43 24.32 0.02 0 ind:fut:2p; +lasseront lasser ver 7.43 24.32 0.04 0.07 ind:fut:3p; +lasses lasser ver 7.43 24.32 0.18 0 ind:pre:2s; +lassez lasser ver 7.43 24.32 0.1 0.14 imp:pre:2p;ind:pre:2p; +lassitude lassitude nom f s 1.57 17.09 1.57 16.82 +lassitudes lassitude nom f p 1.57 17.09 0 0.27 +lasso lasso nom m s 1.02 1.28 0.94 1.08 +lassons lasser ver 7.43 24.32 0 0.07 ind:pre:1p; +lassos lasso nom m p 1.02 1.28 0.09 0.2 +lassèrent lasser ver 7.43 24.32 0 0.27 ind:pas:3p; +lassé lasser ver m s 7.43 24.32 1.78 3.31 par:pas; +lassée lasser ver f s 7.43 24.32 0.42 1.42 par:pas; +lassées lasser ver f p 7.43 24.32 0.02 0.34 par:pas; +lassés lasser ver m p 7.43 24.32 0.23 0.68 par:pas; +lasure lasure nom f s 0.01 0 0.01 0 +latence latence nom f s 0.08 0.14 0.08 0.07 +latences latence nom f p 0.08 0.14 0 0.07 +latent latent adj m s 1.25 2.84 0.21 0.88 +latente latent adj f s 1.25 2.84 0.76 1.22 +latentes latent adj f p 1.25 2.84 0.14 0.47 +latents latent adj m p 1.25 2.84 0.14 0.27 +latex latex nom m 1.65 0.47 1.65 0.47 +laticlave laticlave nom m s 0 0.07 0 0.07 +latifundistes latifundiste nom p 0 0.07 0 0.07 +latin latin nom m s 6.62 15.07 6.53 14.93 +latine latin adj f s 4.52 12.64 2.37 4.05 +latines latin adj f p 4.52 12.64 0.27 1.82 +latinisaient latiniser ver 0 0.2 0 0.07 ind:imp:3p; +latinismes latinisme nom m p 0 0.07 0 0.07 +latiniste latiniste nom s 0.03 0.27 0.02 0.2 +latinistes latiniste nom p 0.03 0.27 0.01 0.07 +latinisé latiniser ver m s 0 0.2 0 0.07 par:pas; +latinisée latiniser ver f s 0 0.2 0 0.07 par:pas; +latinité latinité nom f s 0 0.2 0 0.14 +latinités latinité nom f p 0 0.2 0 0.07 +latino latino nom m s 2.89 0 1.61 0 +latino_américain latino_américain nom m s 0.1 0.07 0.03 0.07 +latino_américain latino_américain nom f s 0.1 0.07 0.03 0 +latino_américain latino_américain nom m p 0.1 0.07 0.04 0 +latinos latino nom m p 2.89 0 1.27 0 +latins latin adj m p 4.52 12.64 0.1 2.3 +latitude latitude nom f s 1.45 2.91 1.09 1.76 +latitudes latitude nom f p 1.45 2.91 0.36 1.15 +latrine latrine nom f s 0.82 2.5 0.14 0.14 +latrines latrine nom f p 0.82 2.5 0.67 2.36 +lats lats nom m 0.09 0 0.09 0 +latte latte nom f s 1.15 9.46 0.76 2.03 +latter latter ver 0.29 0.07 0.11 0.07 inf; +lattes latte nom f p 1.15 9.46 0.39 7.43 +lattis lattis nom m 0.15 0 0.15 0 +latté latter ver m s 0.29 0.07 0.08 0 par:pas; +lattés latter ver m p 0.29 0.07 0.01 0 par:pas; +latviens latvien nom m p 0.01 0 0.01 0 +latéral latéral adj m s 2.1 5.68 0.77 0.81 +latérale latéral adj f s 2.1 5.68 1 2.77 +latéralement latéralement adv 0.25 1.08 0.25 1.08 +latérales latéral adj f p 2.1 5.68 0.15 1.35 +latéralisée latéralisé adj f s 0.02 0 0.02 0 +latéralité latéralité nom f s 0 0.07 0 0.07 +latéraux latéral adj m p 2.1 5.68 0.17 0.74 +latérite latérite nom f s 0 0.61 0 0.61 +laubé laubé nom s 0 0.07 0 0.07 +laudanum laudanum nom m s 0.45 0.2 0.45 0.2 +laudateur laudateur adj m s 0 0.07 0 0.07 +laudative laudatif adj f s 0 0.07 0 0.07 +laudes laude nom f p 0 0.47 0 0.47 +laurier laurier nom m s 2.27 9.32 0.9 3.58 +laurier_cerise laurier_cerise nom m s 0 0.2 0 0.07 +laurier_rose laurier_rose nom m s 0.14 1.69 0.04 0.2 +lauriers laurier nom m p 2.27 9.32 1.37 5.74 +laurier_cerise laurier_cerise nom m p 0 0.2 0 0.14 +laurier_rose laurier_rose nom m p 0.14 1.69 0.1 1.49 +lauréat lauréat nom m s 0.46 0.68 0.41 0.41 +lauréate lauréat adj f s 0.19 0.2 0.06 0 +lauréats lauréat nom m p 0.46 0.68 0.05 0.27 +lausannoises lausannois adj f p 0 0.07 0 0.07 +lauzes lauze nom f p 0 0.07 0 0.07 +lav lav nom m 0.01 0.14 0.01 0.14 +lava laver ver 74.35 69.53 0.07 3.38 ind:pas:3s; +lavable lavable adj s 0.06 0.47 0.05 0.27 +lavables lavable adj m p 0.06 0.47 0.01 0.2 +lavabo lavabo nom m s 3.38 16.89 2.56 13.85 +lavabos lavabo nom m p 3.38 16.89 0.82 3.04 +lavage lavage nom m s 5.09 3.24 5.01 2.64 +lavages lavage nom m p 5.09 3.24 0.09 0.61 +lavai laver ver 74.35 69.53 0 0.41 ind:pas:1s; +lavaient laver ver 74.35 69.53 0.05 1.69 ind:imp:3p; +lavais laver ver 74.35 69.53 1.36 0.95 ind:imp:1s;ind:imp:2s; +lavait laver ver 74.35 69.53 1.23 5.88 ind:imp:3s; +lavallière lavallière nom f s 0.03 0.95 0.02 0.88 +lavallières lavallière nom f p 0.03 0.95 0.01 0.07 +lavande lavande nom f s 1.53 7.23 1.53 6.82 +lavandes lavande nom f p 1.53 7.23 0 0.41 +lavandin lavandin nom m s 0 0.07 0 0.07 +lavandière lavandière nom f s 0.31 1.49 0.3 0.47 +lavandières lavandière nom f p 0.31 1.49 0.01 1.01 +lavant laver ver 74.35 69.53 0.56 2.03 par:pre; +lavasse lavasse nom f s 0.23 0.47 0.23 0.47 +lave laver ver 74.35 69.53 16.98 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +lave_auto lave_auto nom m s 0.06 0 0.06 0 +lave_glace lave_glace nom m s 0.03 0.2 0.03 0.2 +lave_linge lave_linge nom m 0.83 0 0.83 0 +lave_mains lave_mains nom m 0 0.07 0 0.07 +lave_pont lave_pont nom m s 0 0.14 0 0.07 +lave_pont lave_pont nom m p 0 0.14 0 0.07 +lave_vaisselle lave_vaisselle nom m 0.88 0.2 0.88 0.2 +lavedu lavedu nom s 0 0.07 0 0.07 +lavement lavement nom m s 1.38 0.68 1.21 0.68 +lavements lavement nom m p 1.38 0.68 0.17 0 +lavent laver ver 74.35 69.53 0.94 0.88 ind:pre:3p; +laver laver ver 74.35 69.53 34.01 30.68 inf;; +lavera laver ver 74.35 69.53 0.87 0.27 ind:fut:3s; +laverai laver ver 74.35 69.53 1.25 0.61 ind:fut:1s; +laverais laver ver 74.35 69.53 0.05 0.14 cnd:pre:1s;cnd:pre:2s; +laverait laver ver 74.35 69.53 0.04 0.54 cnd:pre:3s; +laveras laver ver 74.35 69.53 0.26 0.2 ind:fut:2s; +laverez laver ver 74.35 69.53 0.27 0 ind:fut:2p; +laverie laverie nom f s 2.42 1.01 2.27 0.88 +laveries laverie nom f p 2.42 1.01 0.14 0.14 +laverions laver ver 74.35 69.53 0 0.07 cnd:pre:1p; +laverons laver ver 74.35 69.53 0.04 0.07 ind:fut:1p; +laveront laver ver 74.35 69.53 0.01 0.14 ind:fut:3p; +laves laver ver 74.35 69.53 3.24 0.41 ind:pre:2s; +lavette lavette nom f s 1.57 1.28 1.2 1.22 +lavettes lavette nom f p 1.57 1.28 0.38 0.07 +laveur laveur nom m s 2.49 1.89 1.51 0.88 +laveurs laveur nom m p 2.49 1.89 0.95 0.14 +laveuse laveur nom f s 2.49 1.89 0.01 0.74 +laveuses laveur nom f p 2.49 1.89 0.03 0.14 +lavez laver ver 74.35 69.53 2.68 0.34 imp:pre:2p;ind:pre:2p; +lavions laver ver 74.35 69.53 0.01 0.2 ind:imp:1p; +lavis lavis nom m 0 0.41 0 0.41 +lavoir lavoir nom m s 0.15 5.34 0.15 5.14 +lavoirs lavoir nom m p 0.15 5.34 0 0.2 +lavons laver ver 74.35 69.53 0.45 0 imp:pre:1p;ind:pre:1p; +lavure lavure nom f s 0 0.14 0 0.07 +lavures lavure nom f p 0 0.14 0 0.07 +lavèrent laver ver 74.35 69.53 0.01 0.34 ind:pas:3p; +lavé laver ver m s 74.35 69.53 6.95 8.38 par:pas; +lavée laver ver f s 74.35 69.53 1.91 2.64 par:pas; +lavées lavé adj f p 1.18 7.16 0.27 1.15 +lavés laver ver m p 74.35 69.53 0.86 1.01 par:pas; +laxatif laxatif nom m s 0.98 0.41 0.73 0.34 +laxatifs laxatif nom m p 0.98 0.41 0.24 0.07 +laxative laxatif adj f s 0.1 0.14 0.05 0.07 +laxatives laxatif adj f p 0.1 0.14 0 0.07 +laxisme laxisme nom m s 0.28 0.2 0.28 0.2 +laxiste laxiste adj s 0.45 0.2 0.25 0.2 +laxistes laxiste adj p 0.45 0.2 0.2 0 +laxité laxité nom f s 0.02 0 0.02 0 +laya layer ver 0.03 0.47 0 0.34 ind:pas:3s; +layer layer ver 0.03 0.47 0.03 0.14 inf; +layette layette nom f s 0.18 2.09 0.18 1.35 +layettes layette nom f p 0.18 2.09 0 0.74 +layon layon nom m s 0 6.89 0 5.95 +layons layon nom m p 0 6.89 0 0.95 +lazaret lazaret nom m s 0.07 0.2 0.06 0.07 +lazarets lazaret nom m p 0.07 0.2 0.01 0.14 +lazaro lazaro nom m s 0.27 0.14 0.27 0.14 +lazingue lazingue nom m s 0 0.27 0 0.27 +lazzi lazzi nom m s 0 1.35 0 0.68 +lazzis lazzi nom m p 0 1.35 0 0.68 +laça lacer ver 0.81 2.23 0 0.2 ind:pas:3s; +laçage laçage nom m s 0.03 0.41 0.03 0.41 +laçais lacer ver 0.81 2.23 0.01 0 ind:imp:2s; +laçait lacer ver 0.81 2.23 0.01 0.14 ind:imp:3s; +laçant lacer ver 0.81 2.23 0.01 0.14 par:pre; +laîche laîche nom f s 0.06 0.07 0.06 0 +laîches laîche nom f p 0.06 0.07 0 0.07 +laïc laïc adj m s 0.33 0.88 0.33 0.74 +laïciser laïciser ver 0.14 0 0.14 0 inf; +laïcité laïcité nom f s 0.29 0.47 0.29 0.47 +laïcs laïc nom p 0.32 0.95 0.16 0.68 +laïque laïque adj s 0.58 3.45 0.43 2.43 +laïques laïque adj p 0.58 3.45 0.15 1.01 +laïus laïus nom m 1.78 1.08 1.78 1.08 +laïusse laïusser ver 0 0.07 0 0.07 ind:pre:3s; +le le art_def m s 13652.76 18310.95 13652.76 18310.95 +leader leader nom m s 12.72 1.69 10.28 0.95 +leaders leader nom m p 12.72 1.69 2.44 0.74 +leadership leadership nom m s 0.38 0.14 0.38 0.14 +leasing leasing nom m s 0.24 0 0.24 0 +lebel lebel nom m s 0 1.35 0 0.81 +lebels lebel nom m p 0 1.35 0 0.54 +leben leben nom m s 0.02 0.27 0.02 0.27 +lecteur lecteur nom m s 6.31 25.81 2.86 12.03 +lecteurs lecteur nom m p 6.31 25.81 2.92 11.28 +lectorat lectorat nom m s 0.15 0 0.15 0 +lectrice lecteur nom f s 6.31 25.81 0.32 1.49 +lectrices lecteur nom f p 6.31 25.81 0.22 1.01 +lecture lecture nom f s 15.8 54.53 13.97 42.16 +lectures lecture nom f p 15.8 54.53 1.83 12.36 +ledit ledit adj m s 0.32 4.46 0.32 4.46 +legato legato adv 0.01 0 0.01 0 +leggins leggins nom f p 0 0.61 0 0.61 +leghorns leghorn nom f p 0 0.07 0 0.07 +lego lego nom m s 0.44 0.07 0.35 0.07 +legos lego nom m p 0.44 0.07 0.09 0 +legs legs nom m 1.34 1.49 1.34 1.49 +lei lei nom m p 0.8 0.34 0.8 0.34 +leishmaniose leishmaniose nom f s 0.06 0 0.06 0 +leitmotiv leitmotiv nom m s 0.06 1.22 0.06 1.22 +leitmotive leitmotive nom m p 0 0.07 0 0.07 +lek lek nom m s 0.01 0 0.01 0 +lem lem nom m s 0.16 0 0.16 0 +lemmes lemme nom m p 0 0.07 0 0.07 +lemming lemming nom m s 0.16 0.07 0.07 0 +lemmings lemming nom m p 0.16 0.07 0.09 0.07 +lendemain lendemain nom_sup m s 29.29 149.26 28.58 145.54 +lendemains lendemain nom_sup m p 29.29 149.26 0.71 3.72 +lent lent adj m s 16.41 64.12 9.15 23.31 +lente lent adj f s 16.41 64.12 4.67 21.55 +lentement lentement adv 26.48 156.55 26.48 156.55 +lentes lent adj f p 16.41 64.12 0.94 7.23 +lenteur lenteur nom f s 1.16 22.5 1.15 21.96 +lenteurs lenteur nom f p 1.16 22.5 0.01 0.54 +lenticulaires lenticulaire adj m p 0.01 0 0.01 0 +lenticules lenticule nom f p 0 0.07 0 0.07 +lentille lentille nom f s 4.66 8.24 1.22 0.74 +lentilles lentille nom f p 4.66 8.24 3.44 7.5 +lentisque lentisque nom m s 0 0.88 0 0.07 +lentisques lentisque nom m p 0 0.88 0 0.81 +lento lento adv 0.05 0.14 0.05 0.14 +lents lent adj m p 16.41 64.12 1.65 12.03 +lepton lepton nom m s 0.08 0 0.06 0 +leptonique leptonique adj m s 0.07 0 0.07 0 +leptons lepton nom m p 0.08 0 0.02 0 +lequel lequel pro_rel m s 64.31 137.09 59.66 133.99 +lerch lerch adv 0 0.07 0 0.07 +lerche lerche adv 0 4.12 0 4.12 +les les art_def p 8720.38 14662.3 8720.38 14662.3 +lesbianisme lesbianisme nom m s 0.12 0.07 0.12 0.07 +lesbien lesbien adj m s 8.24 1.15 0.49 0 +lesbienne lesbien adj f s 8.24 1.15 6.8 0.81 +lesbiennes lesbien nom f p 5.38 0.41 2.56 0.34 +lesdites lesdites adj f p 0 0.2 0 0.2 +lesdits lesdits adj m p 0.13 0.54 0.13 0.54 +lesquelles lesquelles pro_rel f p 11.75 43.11 11.6 41.55 +lesquels lesquels pro_rel m p 10.42 47.91 10 45.14 +lessiva lessiver ver 0.91 3.31 0 0.07 ind:pas:3s; +lessivage lessivage nom m s 0.02 0.2 0.02 0.2 +lessivaient lessiver ver 0.91 3.31 0 0.07 ind:imp:3p; +lessivait lessiver ver 0.91 3.31 0 0.14 ind:imp:3s; +lessivant lessiver ver 0.91 3.31 0 0.14 par:pre; +lessive lessive nom f s 8.51 8.78 8.09 7.7 +lessiver lessiver ver 0.91 3.31 0.12 0.88 inf; +lessiverait lessiver ver 0.91 3.31 0 0.07 cnd:pre:3s; +lessives lessive nom f p 8.51 8.78 0.42 1.08 +lessiveuse lessiveur nom f s 0.06 2.7 0.04 2.3 +lessiveuses lessiveur nom f p 0.06 2.7 0.02 0.41 +lessivons lessiver ver 0.91 3.31 0.05 0 imp:pre:1p; +lessivé lessiver ver m s 0.91 3.31 0.5 1.08 par:pas; +lessivée lessiver ver f s 0.91 3.31 0.06 0.27 par:pas; +lessivés lessiver ver m p 0.91 3.31 0.05 0.54 par:pas; +lest lest nom m s 0.97 0.68 0.97 0.68 +leste leste adj s 0.61 1.42 0.5 0.95 +lestement lestement adv 0.02 0.68 0.02 0.68 +lester lester ver 2.27 2.7 1.97 0.41 inf; +lestera lester ver 2.27 2.7 0.01 0 ind:fut:3s; +lesterait lester ver 2.27 2.7 0 0.07 cnd:pre:3s; +lestes lester ver 2.27 2.7 0.14 0 ind:pre:2s; +lestez lester ver 2.27 2.7 0.01 0 ind:pre:2p; +lesté lester ver m s 2.27 2.7 0.07 1.08 par:pas; +lestée lester ver f s 2.27 2.7 0.03 0.41 par:pas; +lestées lester ver f p 2.27 2.7 0.01 0.07 par:pas; +lestés lester ver m p 2.27 2.7 0.01 0.54 par:pas; +let let adj 3.56 0.47 3.56 0.47 +letchis letchi nom m p 0 0.07 0 0.07 +lette lette nom s 0.03 0 0.01 0 +lettes lette nom p 0.03 0 0.01 0 +letton letton nom m s 0.14 0.34 0.1 0.07 +lettone letton adj f s 0.1 0.34 0.03 0.07 +lettonne letton adj f s 0.1 0.34 0 0.07 +lettonnes letton adj f p 0.1 0.34 0 0.07 +lettons letton nom m p 0.14 0.34 0.04 0.27 +lettrage lettrage nom m s 0.03 0 0.03 0 +lettre lettre nom f s 156.77 256.01 108.79 140.88 +lettre_clé lettre_clé nom f s 0.14 0 0.14 0 +lettres lettre nom f p 156.77 256.01 47.98 115.14 +lettreur lettreur nom m s 0 0.07 0 0.07 +lettrine lettrine nom f s 0 0.2 0 0.14 +lettrines lettrine nom f p 0 0.2 0 0.07 +lettriques lettrique adj m p 0 0.07 0 0.07 +lettristes lettriste adj p 0 0.07 0 0.07 +lettré lettré nom m s 0.31 2.3 0.19 1.35 +lettrée lettré adj f s 0.23 0.95 0.01 0.07 +lettrés lettré adj m p 0.23 0.95 0.16 0.41 +leu leu nom m s 0.92 4.73 0.92 4.73 +leucocytaire leucocytaire adj f s 0.01 0 0.01 0 +leucocyte leucocyte nom m s 0.1 0.2 0.01 0 +leucocytes leucocyte nom m p 0.1 0.2 0.09 0.2 +leucocytose leucocytose nom f s 0.03 0 0.03 0 +leucoplasie leucoplasie nom f s 0.01 0.07 0.01 0.07 +leucopénie leucopénie nom f s 0.01 0.07 0.01 0.07 +leucose leucose nom f s 0 0.41 0 0.41 +leucotomie leucotomie nom f s 0 0.07 0 0.07 +leucémie leucémie nom f s 1.9 0.61 1.72 0.54 +leucémies leucémie nom f p 1.9 0.61 0.17 0.07 +leucémique leucémique nom s 0.05 0 0.05 0 +leur leur pro_per p 283.82 427.5 277.53 415 +leurrais leurrer ver 1.36 1.96 0.01 0.07 ind:imp:1s; +leurrait leurrer ver 1.36 1.96 0 0.27 ind:imp:3s; +leurre leurre nom m s 2.67 2.91 2.12 2.16 +leurrent leurrer ver 1.36 1.96 0.01 0.07 ind:pre:3p; +leurrer leurrer ver 1.36 1.96 0.55 0.68 inf; +leurres leurre nom m p 2.67 2.91 0.55 0.74 +leurrez leurrer ver 1.36 1.96 0.09 0.07 imp:pre:2p;ind:pre:2p; +leurrons leurrer ver 1.36 1.96 0.14 0.27 imp:pre:1p; +leurré leurrer ver m s 1.36 1.96 0.09 0.27 par:pas; +leurrés leurrer ver m p 1.36 1.96 0.03 0.07 par:pas; +leurs leurs adj_pos 243.56 886.55 243.56 886.55 +lev lev nom m s 0.68 0 0.68 0 +leva lever ver 165.98 440.74 1.28 123.58 ind:pas:3s; +levage levage nom m s 0.02 0.34 0.02 0.34 +levai lever ver 165.98 440.74 0.07 10.27 ind:pas:1s; +levaient lever ver 165.98 440.74 0.2 5.88 ind:imp:3p; +levain levain nom m s 0.18 0.88 0.18 0.88 +levais lever ver 165.98 440.74 0.69 4.39 ind:imp:1s;ind:imp:2s; +levait lever ver 165.98 440.74 1.17 32.84 ind:imp:3s; +levant lever ver 165.98 440.74 1.36 28.78 par:pre; +levante levant adj f s 0.93 2.43 0.02 0.14 +levantin levantin adj m s 0.02 0.2 0.02 0.14 +levantines levantin nom f p 0.01 0.47 0 0.07 +levantins levantin nom m p 0.01 0.47 0 0.2 +lever lever ver 165.98 440.74 35.9 66.89 inf; +levers lever nom m p 4.92 9.12 0.16 0.34 +leveur leveur nom m s 0.03 0.34 0.02 0.07 +leveurs leveur nom m p 0.03 0.34 0.01 0.07 +leveuse leveur nom f s 0.03 0.34 0 0.2 +levez lever ver 165.98 440.74 22.23 2.23 imp:pre:2p;ind:pre:2p; +levier levier nom m s 3.46 5.27 3.24 3.45 +leviers levier nom m p 3.46 5.27 0.23 1.82 +leviez lever ver 165.98 440.74 0.35 0.07 ind:imp:2p; +levions lever ver 165.98 440.74 0.03 1.08 ind:imp:1p; +levons lever ver 165.98 440.74 2.52 1.49 imp:pre:1p;ind:pre:1p; +levreau levreau nom m s 0 0.14 0 0.07 +levreaux levreau nom m p 0 0.14 0 0.07 +levrette levrette nom f s 0.65 1.01 0.65 0.95 +levrettes levrette nom f p 0.65 1.01 0 0.07 +levure levure nom f s 1.05 0.81 1 0.81 +levures levure nom f p 1.05 0.81 0.05 0 +levâmes lever ver 165.98 440.74 0 0.34 ind:pas:1p; +levât lever ver 165.98 440.74 0 0.68 sub:imp:3s; +levèrent lever ver 165.98 440.74 0.12 7.5 ind:pas:3p; +levé lever ver m s 165.98 440.74 13.4 40.41 par:pas; +levée lever ver f s 165.98 440.74 6.41 13.78 par:pas; +levées lever ver f p 165.98 440.74 0.41 1.55 par:pas; +levés lever ver m p 165.98 440.74 0.58 6.08 par:pas; +lexical lexical adj m s 0 0.07 0 0.07 +lexicographes lexicographe nom p 0 0.07 0 0.07 +lexie lexie nom f s 0.05 0.07 0.05 0.07 +lexique lexique nom m s 0.11 0.95 0.11 0.68 +lexiques lexique nom m p 0.11 0.95 0 0.27 +lez lez pre 0.36 0.14 0.36 0.14 +leçon leçon nom f s 41.48 48.72 29.24 22.64 +leçons leçon nom f p 41.48 48.72 12.23 26.08 +li li nom m s 2.56 1.76 2.56 1.76 +lia lier ver 37.17 46.08 0.49 0.95 ind:pas:3s; +liage liage nom m s 0.01 0 0.01 0 +liai lier ver 37.17 46.08 0 0.41 ind:pas:1s; +liaient lier ver 37.17 46.08 0.14 0.95 ind:imp:3p; +liais lier ver 37.17 46.08 0.02 0.2 ind:imp:1s; +liaison liaison nom f s 20.34 31.96 18.41 26.69 +liaisons liaison nom f p 20.34 31.96 1.94 5.27 +liait lier ver 37.17 46.08 0.71 3.72 ind:imp:3s; +liane liane nom f s 0.77 4.59 0.34 1.08 +lianes liane nom f p 0.77 4.59 0.43 3.51 +liant lier ver 37.17 46.08 0.12 0.81 par:pre; +liante liant adj f s 0.2 0.54 0.14 0.14 +liants liant adj m p 0.2 0.54 0.02 0.14 +liard liard nom m s 0.23 0.54 0.19 0.27 +liardais liarder ver 0 0.07 0 0.07 ind:imp:1s; +liards liard nom m p 0.23 0.54 0.03 0.27 +liasse liasse nom f s 1.24 11.69 0.64 7.36 +liasses liasse nom f p 1.24 11.69 0.6 4.32 +libanais libanais nom m 0.92 1.69 0.85 1.42 +libanaise libanais adj f s 0.45 4.19 0.05 0.88 +libanaises libanais nom f p 0.92 1.69 0.03 0.2 +libation libation nom f s 0.07 1.49 0.05 0.2 +libations libation nom f p 0.07 1.49 0.02 1.28 +libeccio libeccio nom m s 0 0.2 0 0.2 +libelle libelle nom m s 0.14 0.54 0.13 0.27 +libeller libeller ver 0.04 0.47 0 0.07 inf; +libelles libelle nom m p 0.14 0.54 0.01 0.27 +libellule libellule nom f s 1.17 3.38 1.07 2.16 +libellules libellule nom f p 1.17 3.38 0.1 1.22 +libellé libeller ver m s 0.04 0.47 0.04 0.07 par:pas; +libellée libeller ver f s 0.04 0.47 0.01 0.2 par:pas; +libellées libeller ver f p 0.04 0.47 0 0.14 par:pas; +liber liber nom m s 0.03 0.14 0.03 0.14 +libera libera nom m 0.16 0.07 0.16 0.07 +libero libero nom m s 0 0.07 0 0.07 +libertaire libertaire adj s 0.56 0.47 0.56 0.34 +libertaires libertaire nom p 0.02 0.14 0.01 0.07 +liberticide liberticide adj s 0.03 0 0.03 0 +libertin libertin nom m s 1.25 3.24 1.05 1.69 +libertinage libertinage nom m s 0.39 1.35 0.39 1.35 +libertine libertin adj f s 1.29 1.76 0.35 0.47 +libertines libertin adj f p 1.29 1.76 0.38 0.2 +libertins libertin nom m p 1.25 3.24 0.16 0.95 +liberté liberté nom f s 79.53 97.97 76.28 93.31 +libertés liberté nom f p 79.53 97.97 3.26 4.66 +libidinal libidinal adj m s 0 0.47 0 0.2 +libidinale libidinal adj f s 0 0.47 0 0.07 +libidinales libidinal adj f p 0 0.47 0 0.07 +libidinaux libidinal adj m p 0 0.47 0 0.14 +libidineuse libidineux adj f s 0.36 0.81 0.04 0.14 +libidineuses libidineux adj f p 0.36 0.81 0 0.07 +libidineux libidineux adj m 0.36 0.81 0.32 0.61 +libido libido nom f s 1.79 1.22 1.79 1.22 +libraire libraire nom s 2.1 5.34 1.67 4.26 +libraires libraire nom p 2.1 5.34 0.43 1.08 +librairie librairie nom f s 5.97 9.59 5.02 8.24 +librairie_papeterie librairie_papeterie nom f s 0 0.2 0 0.2 +librairies librairie nom f p 5.97 9.59 0.95 1.35 +libre libre adj s 134.42 167.91 110.36 130.14 +libre_arbitre libre_arbitre nom m s 0.12 0.14 0.12 0.14 +libre_penseur libre_penseur nom m s 0.04 0.14 0.04 0.14 +libre_penseur libre_penseur nom f s 0.04 0.14 0.01 0 +libre_service libre_service nom m s 0.04 0.34 0.04 0.34 +libre_échange libre_échange nom m 0.32 0.14 0.32 0.14 +libre_échangiste libre_échangiste nom s 0.03 0 0.03 0 +librement librement adv 6.8 12.84 6.8 12.84 +libres libre adj p 134.42 167.91 24.06 37.77 +librettiste librettiste nom s 0.01 0.14 0.01 0.07 +librettistes librettiste nom p 0.01 0.14 0 0.07 +libretto libretto nom m s 0.04 0 0.04 0 +libyen libyen adj m s 0.18 0.2 0.02 0.14 +libyenne libyen adj f s 0.18 0.2 0.14 0.07 +libyens libyen nom m p 0.11 0.07 0.1 0 +libère libérer ver 75.77 48.51 11.66 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +libèrent libérer ver 75.77 48.51 0.91 0.68 ind:pre:3p; +libères libérer ver 75.77 48.51 1.74 0 ind:pre:1p;ind:pre:2s; +libéra libérer ver 75.77 48.51 0.14 2.09 ind:pas:3s; +libérable libérable nom s 0.09 0 0.07 0 +libérables libérable adj m p 0.07 0.27 0.01 0 +libérai libérer ver 75.77 48.51 0.02 0.07 ind:pas:1s; +libéraient libérer ver 75.77 48.51 0.16 0.81 ind:imp:3p; +libérais libérer ver 75.77 48.51 0.18 0.14 ind:imp:1s;ind:imp:2s; +libérait libérer ver 75.77 48.51 0.23 2.23 ind:imp:3s; +libéral libéral adj m s 3.07 7.23 1.12 3.04 +libérale libéral adj f s 3.07 7.23 1.11 2.03 +libéralement libéralement adv 0 0.47 0 0.47 +libérales libéral adj f p 3.07 7.23 0.14 1.49 +libéralisation libéralisation nom f s 0.04 0.27 0.04 0.27 +libéralisme libéralisme nom m s 0.22 1.49 0.22 1.49 +libéralité libéralité nom f s 0.11 0.54 0.11 0.14 +libéralités libéralité nom f p 0.11 0.54 0 0.41 +libérant libérer ver 75.77 48.51 0.23 2.16 par:pre; +libérateur libérateur nom m s 1.7 1.01 0.61 0.47 +libérateurs libérateur nom m p 1.7 1.01 1.07 0.47 +libération libération nom f s 8.43 45 8.31 44.86 +libérations libération nom f p 8.43 45 0.12 0.14 +libératoire libératoire adj f s 0.1 0.07 0.1 0.07 +libératrice libérateur adj f s 0.99 2.43 0.34 0.74 +libératrices libérateur adj f p 0.99 2.43 0.02 0.34 +libéraux libéral nom m p 1.47 1.62 0.97 0.61 +libérer libérer ver 75.77 48.51 26.16 14.53 inf;;inf;;inf;; +libérera libérer ver 75.77 48.51 1.48 0.27 ind:fut:3s; +libérerai libérer ver 75.77 48.51 0.62 0 ind:fut:1s; +libéreraient libérer ver 75.77 48.51 0.01 0.2 cnd:pre:3p; +libérerais libérer ver 75.77 48.51 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +libérerait libérer ver 75.77 48.51 0.63 0.41 cnd:pre:3s; +libéreras libérer ver 75.77 48.51 0.14 0 ind:fut:2s; +libérerez libérer ver 75.77 48.51 0.1 0.07 ind:fut:2p; +libérerons libérer ver 75.77 48.51 0.22 0.07 ind:fut:1p; +libéreront libérer ver 75.77 48.51 0.41 0.07 ind:fut:3p; +libérez libérer ver 75.77 48.51 6.65 0.34 imp:pre:2p;ind:pre:2p; +libérien libérien adj m s 0.01 0 0.01 0 +libériez libérer ver 75.77 48.51 0.12 0 ind:imp:2p; +libérions libérer ver 75.77 48.51 0.04 0 ind:imp:1p;sub:pre:1p; +libéro libéro nom m s 0.01 0 0.01 0 +libérons libérer ver 75.77 48.51 0.34 0.14 imp:pre:1p;ind:pre:1p; +libérât libérer ver 75.77 48.51 0 0.14 sub:imp:3s; +libérèrent libérer ver 75.77 48.51 0.04 0.34 ind:pas:3p; +libéré libérer ver m s 75.77 48.51 15.75 10.2 par:pas; +libérée libérer ver f s 75.77 48.51 3.6 4.46 par:pas; +libérées libérer ver f p 75.77 48.51 0.41 0.81 par:pas; +libérés libérer ver m p 75.77 48.51 3.59 3.65 par:pas; +lice lice nom f s 0.63 1.42 0.63 1.22 +licence licence nom f s 8.27 7.84 7.37 7.03 +licences licence nom f p 8.27 7.84 0.9 0.81 +licencia licencier ver 5.93 1.49 0.01 0 ind:pas:3s; +licenciables licenciable adj p 0 0.07 0 0.07 +licenciai licencier ver 5.93 1.49 0 0.07 ind:pas:1s; +licenciaient licencier ver 5.93 1.49 0.01 0.07 ind:imp:3p; +licenciait licencier ver 5.93 1.49 0.16 0.07 ind:imp:3s; +licenciant licencier ver 5.93 1.49 0.02 0 par:pre; +licencie licencier ver 5.93 1.49 0.16 0 ind:pre:1s;ind:pre:3s; +licenciement licenciement nom m s 3.93 0.41 2.62 0.2 +licenciements licenciement nom m p 3.93 0.41 1.31 0.2 +licencient licencier ver 5.93 1.49 0.26 0.07 ind:pre:3p; +licencier licencier ver 5.93 1.49 1.61 0.27 inf; +licenciera licencier ver 5.93 1.49 0.02 0 ind:fut:3s; +licencieuse licencieux adj f s 0.68 0.68 0.12 0.14 +licencieuses licencieux adj f p 0.68 0.68 0.15 0.2 +licencieux licencieux adj m 0.68 0.68 0.41 0.34 +licenciez licencier ver 5.93 1.49 0.2 0.07 imp:pre:2p;ind:pre:2p; +licencié licencier ver m s 5.93 1.49 2.57 0.47 par:pas; +licenciée licencier ver f s 5.93 1.49 0.6 0.34 par:pas; +licenciées licencié nom f p 0.68 0.54 0 0.07 +licenciés licencier ver m p 5.93 1.49 0.31 0.07 par:pas; +lices lice nom f p 0.63 1.42 0 0.2 +lichant licher ver 0.27 0.61 0 0.2 par:pre; +lichas licher ver 0.27 0.61 0.27 0 ind:pas:2s; +liche liche nom m s 0 0.2 0 0.2 +lichen lichen nom m s 0.11 2.7 0.1 1.28 +lichens lichen nom m p 0.11 2.7 0.01 1.42 +licher licher ver 0.27 0.61 0 0.14 inf; +lichette lichette nom f s 0.15 0.74 0.15 0.61 +lichettes lichette nom f p 0.15 0.74 0 0.14 +lichotter lichotter ver 0 0.07 0 0.07 inf; +liché licher ver m s 0.27 0.61 0 0.07 par:pas; +lichée licher ver f s 0.27 0.61 0 0.14 par:pas; +lichées licher ver f p 0.27 0.61 0 0.07 par:pas; +liciers licier nom m p 0 0.07 0 0.07 +licite licite adj s 0.32 0.74 0.29 0.61 +licites licite adj f p 0.32 0.74 0.03 0.14 +licol licol nom m s 0 0.61 0 0.47 +licols licol nom m p 0 0.61 0 0.14 +licorne licorne nom f s 1.98 1.82 1.41 1.28 +licornes licorne nom f p 1.98 1.82 0.57 0.54 +licou licou nom m s 0.03 0.61 0.03 0.54 +licous licou nom m p 0.03 0.61 0 0.07 +licteur licteur nom m s 0 0.34 0 0.07 +licteurs licteur nom m p 0 0.34 0 0.27 +licéité licéité nom f s 0 0.07 0 0.07 +lido lido nom m s 0.07 0 0.07 0 +lidocaïne lidocaïne nom f s 0.36 0 0.36 0 +lie lier ver 37.17 46.08 4.02 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lie_de_vin lie_de_vin adj 0 1.08 0 1.08 +lied lied nom m s 0.06 0.54 0.01 0.07 +lieder lied nom m p 0.06 0.54 0.04 0.47 +lien lien nom m s 35.89 38.38 23.47 18.18 +liens lien nom m p 35.89 38.38 12.42 20.2 +lient lier ver 37.17 46.08 0.61 0.27 ind:pre:3p; +lier lier ver 37.17 46.08 5.07 6.62 inf; +liera lier ver 37.17 46.08 0.05 0.07 ind:fut:3s; +lierais lier ver 37.17 46.08 0.02 0 cnd:pre:1s; +lierait lier ver 37.17 46.08 0.02 0.27 cnd:pre:3s; +lieras lier ver 37.17 46.08 0.14 0.07 ind:fut:2s; +lieront lier ver 37.17 46.08 0.03 0.14 ind:fut:3p; +lierre lierre nom m s 0.43 6.35 0.42 6.08 +lierres lierre nom m p 0.43 6.35 0.01 0.27 +lies lier ver 37.17 46.08 0.29 0 ind:pre:2s;sub:pre:2s; +liesse liesse nom f s 1.39 2.23 1.39 2.16 +liesses liesse nom f p 1.39 2.23 0 0.07 +lieu lieu nom m s 182 267.57 153.12 213.38 +lieu_dit lieu_dit nom m s 0 0.88 0 0.88 +lieudit lieudit nom m s 0 0.14 0 0.07 +lieudits lieudit nom m p 0 0.14 0 0.07 +lieue lieue nom f s 1.93 10.47 0.19 1.08 +lieues lieue nom f p 1.93 10.47 1.74 9.39 +lieur lieur nom m s 0.01 0.14 0.01 0 +lieus lieu nom m p 182 267.57 0.15 0.07 +lieuse lieur nom f s 0.01 0.14 0 0.14 +lieutenant lieutenant nom m s 80.99 54.93 80.05 52.36 +lieutenant_colonel lieutenant_colonel nom m s 1.74 1.42 1.73 1.42 +lieutenant_pilote lieutenant_pilote nom m s 0 0.07 0 0.07 +lieutenants lieutenant nom m p 80.99 54.93 0.94 2.57 +lieutenant_colonel lieutenant_colonel nom m p 1.74 1.42 0.01 0 +lieux lieu nom m p 182 267.57 28.73 54.12 +lieux_dits lieux_dits nom m p 0 0.41 0 0.41 +liez lier ver 37.17 46.08 0.15 0.07 imp:pre:2p;ind:pre:2p; +lift lift nom m s 0.61 0.07 0.52 0.07 +lifter lifter ver 0.27 0.07 0.22 0 inf; +liftier liftier nom m s 0.39 0.54 0.36 0.41 +liftiers liftier nom m p 0.39 0.54 0 0.14 +lifting lifting nom m s 1.4 0.07 1.19 0.07 +liftings lifting nom m p 1.4 0.07 0.22 0 +liftière liftier nom f s 0.39 0.54 0.02 0 +lifts lift nom m p 0.61 0.07 0.1 0 +lifté lifté adj m s 0.05 0.14 0 0.07 +liftée lifté adj f s 0.05 0.14 0.04 0.07 +liftées lifter ver f p 0.27 0.07 0.01 0.07 par:pas; +ligament ligament nom m s 1.12 0.47 0.29 0 +ligamentaire ligamentaire adj f s 0.02 0 0.02 0 +ligaments ligament nom m p 1.12 0.47 0.83 0.47 +ligature ligature nom f s 0.46 0.2 0.3 0.07 +ligaturer ligaturer ver 0.13 0.47 0.05 0.14 inf; +ligatures ligature nom f p 0.46 0.2 0.16 0.14 +ligaturez ligaturer ver 0.13 0.47 0.01 0.07 imp:pre:2p;ind:pre:2p; +ligaturé ligaturer ver m s 0.13 0.47 0.04 0.14 par:pas; +ligaturée ligaturer ver f s 0.13 0.47 0.02 0.14 par:pas; +lige lige adj s 0.14 0.2 0.14 0.14 +liges lige adj m p 0.14 0.2 0 0.07 +light light adj 3.76 0.27 3.76 0.27 +ligna ligner ver 0.06 0.2 0 0.07 ind:pas:3s; +lignage lignage nom m s 0.13 0.41 0.13 0.34 +lignages lignage nom m p 0.13 0.41 0 0.07 +lignards lignard nom m p 0 0.07 0 0.07 +ligne ligne nom f s 89.83 162.3 69.42 101.01 +ligner ligner ver 0.06 0.2 0 0.07 inf; +lignes ligne nom f p 89.83 162.3 20.41 61.28 +ligneuses ligneux adj f p 0 0.41 0 0.2 +ligneux ligneux adj m p 0 0.41 0 0.2 +lignite lignite nom m s 0.14 0.61 0 0.54 +lignites lignite nom m p 0.14 0.61 0.14 0.07 +ligné ligner ver m s 0.06 0.2 0.01 0.07 par:pas; +lignée lignée nom f s 4.83 5.07 4.67 4.8 +lignées lignée nom f p 4.83 5.07 0.16 0.27 +ligot ligot nom m s 0.01 0.27 0.01 0 +ligota ligoter ver 4.49 5.07 0.1 0.2 ind:pas:3s; +ligotage ligotage nom m s 0.01 0.2 0.01 0.2 +ligotaient ligoter ver 4.49 5.07 0 0.2 ind:imp:3p; +ligotait ligoter ver 4.49 5.07 0.01 0.27 ind:imp:3s; +ligotant ligoter ver 4.49 5.07 0.01 0.07 par:pre; +ligote ligoter ver 4.49 5.07 0.91 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ligotent ligoter ver 4.49 5.07 0.16 0.61 ind:pre:3p; +ligoter ligoter ver 4.49 5.07 0.48 0.61 inf; +ligoterai ligoter ver 4.49 5.07 0.14 0 ind:fut:1s; +ligoterait ligoter ver 4.49 5.07 0.01 0 cnd:pre:3s; +ligoterons ligoter ver 4.49 5.07 0.1 0 ind:fut:1p; +ligotez ligoter ver 4.49 5.07 0.8 0 imp:pre:2p;ind:pre:2p; +ligotons ligoter ver 4.49 5.07 0.01 0 imp:pre:1p; +ligots ligot nom m p 0.01 0.27 0 0.27 +ligotèrent ligoter ver 4.49 5.07 0 0.07 ind:pas:3p; +ligoté ligoter ver m s 4.49 5.07 0.91 1.69 par:pas; +ligotée ligoter ver f s 4.49 5.07 0.29 0.54 par:pas; +ligotées ligoter ver f p 4.49 5.07 0.01 0.14 par:pas; +ligotés ligoter ver m p 4.49 5.07 0.53 0.34 par:pas; +liguaient liguer ver 1.07 1.76 0.01 0.14 ind:imp:3p; +liguait liguer ver 1.07 1.76 0.01 0.27 ind:imp:3s; +liguant liguer ver 1.07 1.76 0.01 0.07 par:pre; +ligue ligue nom f s 2.97 2.09 2.74 1.42 +liguent liguer ver 1.07 1.76 0.17 0 ind:pre:3p; +liguer liguer ver 1.07 1.76 0.22 0.27 inf; +ligues ligue nom f p 2.97 2.09 0.23 0.68 +ligueur ligueur nom m s 0 0.27 0 0.14 +ligueurs ligueur nom m p 0 0.27 0 0.14 +liguez liguer ver 1.07 1.76 0.16 0 ind:pre:2p; +ligure ligure adj f s 0 0.2 0 0.14 +ligures ligure adj p 0 0.2 0 0.07 +liguèrent liguer ver 1.07 1.76 0 0.07 ind:pas:3p; +ligué liguer ver m s 1.07 1.76 0.15 0 par:pas; +liguées liguer ver f p 1.07 1.76 0.03 0.34 par:pas; +ligués liguer ver m p 1.07 1.76 0.13 0.41 par:pas; +lilas lilas nom m 2.28 5.47 2.28 5.47 +liliacées liliacée nom f p 0.14 0 0.14 0 +lilial lilial adj m s 0 0.68 0 0.41 +liliale lilial adj f s 0 0.68 0 0.27 +lilium lilium nom m s 0.01 0.07 0.01 0.07 +lilliputien lilliputien adj m s 0.36 0.68 0.12 0.41 +lilliputienne lilliputien adj f s 0.36 0.68 0.02 0.2 +lilliputiens lilliputien adj m p 0.36 0.68 0.22 0.07 +lillois lillois nom m 0 0.27 0 0.2 +lilloise lillois nom f s 0 0.27 0 0.07 +lima limer ver 1.07 3.11 0 0.07 ind:pas:3s; +limace limace nom f s 4.01 6.35 2.89 4.05 +limaces limace nom f p 4.01 6.35 1.12 2.3 +limage limage nom m s 0.26 0.14 0.26 0.14 +limaient limer ver 1.07 3.11 0 0.07 ind:imp:3p; +limaille limaille nom f s 0.02 1.55 0.02 1.55 +limait limer ver 1.07 3.11 0 0.54 ind:imp:3s; +liman liman nom m s 0.01 0 0.01 0 +limande limande nom f s 0.09 0.68 0.08 0.61 +limandes limande nom f p 0.09 0.68 0.01 0.07 +limant limer ver 1.07 3.11 0 0.14 par:pre; +limaçon limaçon nom m s 0.02 0.54 0.01 0.27 +limaçons limaçon nom m p 0.02 0.54 0.01 0.27 +limbe limbe nom m s 0.81 3.18 0 0.07 +limbes limbe nom m p 0.81 3.18 0.81 3.11 +limbique limbique adj s 0.31 0 0.31 0 +limbo limbo nom m s 0.36 0 0.36 0 +lime lime nom f s 1.56 3.65 1.48 2.91 +liment limer ver 1.07 3.11 0.01 0.07 ind:pre:3p; +limer limer ver 1.07 3.11 0.5 0.74 inf; +limerick limerick nom m s 0.04 0.07 0.03 0 +limericks limerick nom m p 0.04 0.07 0.01 0.07 +limes lime nom f p 1.56 3.65 0.08 0.74 +limette limette nom f s 0.07 0 0.07 0 +limez limer ver 1.07 3.11 0 0.07 ind:pre:2p; +limier limier nom m s 1.12 0.88 0.77 0.54 +limiers limier nom m p 1.12 0.88 0.35 0.34 +liminaire liminaire adj s 0.07 0 0.07 0 +limions limer ver 1.07 3.11 0 0.07 ind:imp:1p; +limita limiter ver 11.19 19.26 0.01 0 ind:pas:3s; +limitai limiter ver 11.19 19.26 0 0.2 ind:pas:1s; +limitaient limiter ver 11.19 19.26 0.12 0.41 ind:imp:3p; +limitais limiter ver 11.19 19.26 0.02 0.07 ind:imp:1s;ind:imp:2s; +limitait limiter ver 11.19 19.26 0.13 2.36 ind:imp:3s; +limitant limiter ver 11.19 19.26 0.09 1.28 par:pre; +limitatif limitatif adj m s 0 0.27 0 0.14 +limitation limitation nom f s 0.74 0.95 0.27 0.61 +limitations limitation nom f p 0.74 0.95 0.47 0.34 +limitative limitatif adj f s 0 0.27 0 0.14 +limite limite nom f s 32.77 47.23 13.69 21.76 +limitent limiter ver 11.19 19.26 0.23 0.74 ind:pre:3p; +limiter limiter ver 11.19 19.26 2.62 4.46 inf; +limitera limiter ver 11.19 19.26 0.13 0.14 ind:fut:3s; +limiterai limiter ver 11.19 19.26 0.14 0.07 ind:fut:1s; +limiteraient limiter ver 11.19 19.26 0.01 0.2 cnd:pre:3p; +limiterait limiter ver 11.19 19.26 0.05 0.07 cnd:pre:3s; +limiteront limiter ver 11.19 19.26 0.05 0 ind:fut:3p; +limites limite nom f p 32.77 47.23 19.09 25.47 +limiteur limiteur nom m s 0.02 0 0.02 0 +limitez limiter ver 11.19 19.26 0.36 0 imp:pre:2p;ind:pre:2p; +limitions limiter ver 11.19 19.26 0.01 0.07 ind:imp:1p; +limitons limiter ver 11.19 19.26 0.14 0.07 imp:pre:1p;ind:pre:1p; +limitrophe limitrophe adj s 0 0.54 0 0.07 +limitrophes limitrophe adj p 0 0.54 0 0.47 +limité limiter ver m s 11.19 19.26 2.1 2.3 par:pas; +limitée limité adj f s 3.66 6.35 1.3 1.28 +limitées limité adj f p 3.66 6.35 0.68 1.35 +limités limiter ver m p 11.19 19.26 0.36 0.68 par:pas; +limoge limoger ver 0.51 0.34 0 0.07 ind:pre:3s; +limogeage limogeage nom m s 0.11 0.07 0.11 0.07 +limoger limoger ver 0.51 0.34 0.18 0 inf; +limoges limoger ver 0.51 0.34 0.01 0.2 ind:pre:2s; +limogé limoger ver m s 0.51 0.34 0.32 0.07 par:pas; +limon limon nom m s 0.53 3.45 0.53 2.97 +limonade limonade nom f s 6.17 6.15 6.06 5.68 +limonades limonade nom f p 6.17 6.15 0.11 0.47 +limonadier limonadier nom m s 0.03 0.54 0.03 0.14 +limonadiers limonadier nom m p 0.03 0.54 0 0.27 +limonadière limonadier nom f s 0.03 0.54 0 0.14 +limonaire limonaire nom m s 0 0.54 0 0.54 +limoneuse limoneux adj f s 0.01 0.61 0.01 0.27 +limoneuses limoneux adj f p 0.01 0.61 0 0.14 +limoneux limoneux adj m s 0.01 0.61 0 0.2 +limonier limonier nom m s 0 0.14 0 0.07 +limonière limonier nom f s 0 0.14 0 0.07 +limons limon nom m p 0.53 3.45 0 0.47 +limoselle limoselle nom f s 0.01 0 0.01 0 +limousin limousin nom m s 3.93 3.78 0 0.14 +limousine limousin nom f s 3.93 3.78 3.34 2.97 +limousines limousin nom f p 3.93 3.78 0.58 0.68 +limousins limousin adj m p 2.07 1.15 0 0.07 +limpide limpide adj s 2.66 12.16 2.32 9.86 +limpides limpide adj p 2.66 12.16 0.34 2.3 +limpidité limpidité nom f s 0.01 1.62 0.01 1.62 +limé limer ver m s 1.07 3.11 0.16 0.54 par:pas; +limée limer ver f s 1.07 3.11 0.01 0.14 par:pas; +lin lin nom m s 2.35 6.08 1.76 6.01 +linaire linaire nom f s 0 0.07 0 0.07 +linceul linceul nom m s 1.98 2.7 1.94 2.3 +linceuls linceul nom m p 1.98 2.7 0.04 0.41 +lindor lindor nom m s 0.27 0 0.27 0 +line line nom f s 1.08 0.07 1.08 0.07 +linga linga nom m s 0.01 0 0.01 0 +lingala lingala nom m s 0.02 0 0.02 0 +lingam lingam nom m s 0.54 0.07 0.54 0.07 +linge linge nom m s 17.04 47.3 16.75 44.53 +linger linger adj m s 0.02 0.41 0.01 0.14 +lingerie lingerie nom f s 4.13 5.34 4.11 4.73 +lingeries lingerie nom f p 4.13 5.34 0.02 0.61 +linges linge nom m p 17.04 47.3 0.3 2.77 +lingette lingette nom f s 0.66 0 0.48 0 +lingettes lingette nom f p 0.66 0 0.18 0 +lingot lingot nom m s 1.58 2.36 0.47 1.15 +lingotière lingotier nom f s 0 0.07 0 0.07 +lingots lingot nom m p 1.58 2.36 1.11 1.22 +lingual lingual adj m s 0.04 0 0.01 0 +linguale lingual adj f s 0.04 0 0.02 0 +linguaux lingual adj m p 0.04 0 0.01 0 +linguiste linguiste nom s 0.5 0.68 0.46 0.41 +linguistes linguiste nom p 0.5 0.68 0.04 0.27 +linguistique linguistique nom f s 0.54 0.61 0.54 0.61 +linguistiquement linguistiquement adv 0.01 0.07 0.01 0.07 +linguistiques linguistique adj p 0.38 1.55 0.14 0.74 +lingère lingère nom f s 0.04 0.68 0.04 0.47 +lingères lingère nom f p 0.04 0.68 0 0.2 +liniment liniment nom m s 0.03 0.07 0.03 0.07 +lino lino nom m s 0.38 1.69 0.38 1.55 +linoléum linoléum nom m s 0.18 2.64 0.18 2.36 +linoléums linoléum nom m p 0.18 2.64 0 0.27 +linon linon nom m s 0.05 0.74 0.05 0.68 +linons linon nom m p 0.05 0.74 0 0.07 +linos lino nom m p 0.38 1.69 0 0.14 +linotte linotte nom f s 0.81 0.54 0.69 0.27 +linottes linotte nom f p 0.81 0.54 0.12 0.27 +linotype linotype nom f s 0.01 0.41 0.01 0.14 +linotypes linotype nom f p 0.01 0.41 0 0.27 +linotypistes linotypiste nom p 0 0.2 0 0.2 +lins lin nom m p 2.35 6.08 0.59 0.07 +linteau linteau nom m s 0.24 1.08 0.17 0.95 +linteaux linteau nom m p 0.24 1.08 0.07 0.14 +linter linter nom m s 0.01 0 0.01 0 +linéaire linéaire adj s 0.39 1.08 0.3 0.88 +linéairement linéairement adv 0.01 0 0.01 0 +linéaires linéaire adj p 0.39 1.08 0.09 0.2 +linéaments linéament nom m p 0 0.54 0 0.54 +lion lion nom m s 20.86 33.04 14.58 20.14 +lionceau lionceau nom m s 0.21 1.01 0.21 0.61 +lionceaux lionceau nom m p 0.21 1.01 0 0.41 +lionne lion nom f s 20.86 33.04 0.79 2.43 +lionnes lion nom f p 20.86 33.04 0.16 2.23 +lions lion nom m p 20.86 33.04 5.33 8.24 +lipase lipase nom f s 0.01 0 0.01 0 +lipide lipide nom m s 0.06 0.2 0.01 0.07 +lipides lipide nom m p 0.06 0.2 0.04 0.14 +lipiodol lipiodol nom m s 0.01 0 0.01 0 +lipome lipome nom m s 0.03 0 0.03 0 +liposome liposome nom m s 0.01 0 0.01 0 +liposuccion liposuccion nom f s 1.04 0 0.75 0 +liposuccions liposuccion nom f p 1.04 0 0.29 0 +liposucer liposucer ver 0.2 0 0.2 0 inf; +lipothymie lipothymie nom f s 0.1 0 0.1 0 +lippe lippe nom f s 0.14 1.89 0.14 1.69 +lippes lippe nom f p 0.14 1.89 0 0.2 +lippu lippu adj m s 0.17 1.01 0.17 0.41 +lippue lippu adj f s 0.17 1.01 0 0.47 +lippues lippu adj f p 0.17 1.01 0 0.07 +lippus lippu adj m p 0.17 1.01 0 0.07 +lippées lippée nom f p 0 0.07 0 0.07 +liquette liquette nom f s 0.19 1.49 0.19 1.22 +liquettes liquette nom f p 0.19 1.49 0 0.27 +liqueur liqueur nom f s 5 4.26 3.46 2.36 +liqueurs liqueur nom f p 5 4.26 1.55 1.89 +liquida liquider ver 9.76 10.74 0.1 0.27 ind:pas:3s; +liquidai liquider ver 9.76 10.74 0 0.07 ind:pas:1s; +liquidaient liquider ver 9.76 10.74 0 0.2 ind:imp:3p; +liquidait liquider ver 9.76 10.74 0.02 0.2 ind:imp:3s; +liquidambars liquidambar nom m p 0 0.07 0 0.07 +liquidant liquider ver 9.76 10.74 0.02 0.2 par:pre; +liquidateur liquidateur nom m s 0.07 0.2 0.05 0.14 +liquidateurs liquidateur nom m p 0.07 0.2 0.01 0.07 +liquidation liquidation nom f s 0.81 3.11 0.7 3.04 +liquidations liquidation nom f p 0.81 3.11 0.11 0.07 +liquidative liquidatif adj f s 0.02 0 0.02 0 +liquide liquide nom m s 18.41 19.19 17.74 17.91 +liquident liquider ver 9.76 10.74 0.04 0.07 ind:pre:3p; +liquider liquider ver 9.76 10.74 3.78 4.93 inf; +liquidera liquider ver 9.76 10.74 0.06 0.14 ind:fut:3s; +liquiderai liquider ver 9.76 10.74 0.04 0 ind:fut:1s; +liquiderais liquider ver 9.76 10.74 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +liquiderait liquider ver 9.76 10.74 0.14 0.07 cnd:pre:3s; +liquiderons liquider ver 9.76 10.74 0.04 0 ind:fut:1p; +liquideront liquider ver 9.76 10.74 0 0.14 ind:fut:3p; +liquides liquide nom m p 18.41 19.19 0.68 1.28 +liquidez liquider ver 9.76 10.74 0.37 0 imp:pre:2p;ind:pre:2p; +liquidions liquider ver 9.76 10.74 0 0.07 ind:imp:1p; +liquidité liquidité nom f s 0.7 0.54 0.03 0.07 +liquidités liquidité nom f p 0.7 0.54 0.67 0.47 +liquidons liquider ver 9.76 10.74 0.26 0.07 imp:pre:1p;ind:pre:1p; +liquidé liquider ver m s 9.76 10.74 2.45 1.62 par:pas; +liquidée liquider ver f s 9.76 10.74 0.31 0.95 par:pas; +liquidées liquider ver f p 9.76 10.74 0.02 0.2 par:pas; +liquidés liquider ver m p 9.76 10.74 0.54 0.61 par:pas; +liquor liquor nom m s 0.04 0 0.04 0 +liquoreux liquoreux adj m s 0 0.27 0 0.27 +liquoriste liquoriste nom s 0.01 0.07 0.01 0.07 +liquéfaction liquéfaction nom f s 0.04 0.27 0.04 0.27 +liquéfiaient liquéfier ver 1.09 2.43 0 0.27 ind:imp:3p; +liquéfiait liquéfier ver 1.09 2.43 0 0.47 ind:imp:3s; +liquéfiante liquéfiant adj f s 0 0.07 0 0.07 +liquéfie liquéfier ver 1.09 2.43 0.78 0.2 ind:pre:1s;ind:pre:3s; +liquéfient liquéfier ver 1.09 2.43 0.04 0.14 ind:pre:3p; +liquéfier liquéfier ver 1.09 2.43 0.14 0.47 inf; +liquéfièrent liquéfier ver 1.09 2.43 0 0.07 ind:pas:3p; +liquéfié liquéfier ver m s 1.09 2.43 0.04 0.27 par:pas; +liquéfiée liquéfier ver f s 1.09 2.43 0.03 0.34 par:pas; +liquéfiées liquéfier ver f p 1.09 2.43 0.01 0.14 par:pas; +liquéfiés liquéfier ver m p 1.09 2.43 0.05 0.07 par:pas; +lira lire ver 281.09 324.8 1.88 1.82 ind:fut:3s; +lirai lire ver 281.09 324.8 3.36 1.28 ind:fut:1s; +liraient lire ver 281.09 324.8 0.03 0.34 cnd:pre:3p; +lirais lire ver 281.09 324.8 0.74 0.81 cnd:pre:1s;cnd:pre:2s; +lirait lire ver 281.09 324.8 0.3 3.31 cnd:pre:3s; +liras lire ver 281.09 324.8 1.97 0.81 ind:fut:2s; +lire lire ver 281.09 324.8 89.58 103.58 inf; +lires lire nom f p 28.88 10.27 18.98 1.42 +lirette lirette nom f s 0.02 0 0.02 0 +lirez lire ver 281.09 324.8 0.68 0.81 ind:fut:2p; +liriez lire ver 281.09 324.8 0.09 0 cnd:pre:2p; +liron liron nom m s 0.14 0.54 0.14 0.54 +lirons lire ver 281.09 324.8 0.08 0.07 ind:fut:1p; +liront lire ver 281.09 324.8 0.17 0.27 ind:fut:3p; +lis lire ver 281.09 324.8 39.81 16.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +lisaient lire ver 281.09 324.8 0.22 4.73 ind:imp:3p; +lisais lire ver 281.09 324.8 5.08 10.54 ind:imp:1s;ind:imp:2s; +lisait lire ver 281.09 324.8 3.88 39.12 ind:imp:3s; +lisant lire ver 281.09 324.8 2.95 13.31 par:pre; +lise lire ver 281.09 324.8 3.2 2.09 sub:pre:1s;sub:pre:3s; +lisent lire ver 281.09 324.8 2.67 3.72 ind:pre:3p; +liseron liseron nom m s 0.02 1.08 0.01 0.61 +liserons liseron nom m p 0.02 1.08 0.01 0.47 +liseré liseré nom m s 0.02 0.81 0.02 0.74 +liserée liserer ver f s 0 0.14 0 0.07 par:pas; +liserés liseré nom m p 0.02 0.81 0 0.07 +lises lire ver 281.09 324.8 1.12 0.41 sub:pre:2s; +liseur liseur nom m s 0.06 1.49 0 0.68 +liseuse liseur nom f s 0.06 1.49 0.06 0.68 +liseuses liseur nom f p 0.06 1.49 0 0.14 +lisez lire ver 281.09 324.8 16.78 5 imp:pre:2p;ind:pre:2p; +lisibilité lisibilité nom f s 0.01 0 0.01 0 +lisible lisible adj s 0.84 3.58 0.4 2.5 +lisiblement lisiblement adv 0.11 0.2 0.11 0.2 +lisibles lisible adj p 0.84 3.58 0.44 1.08 +lisier lisier nom m s 0.01 0 0.01 0 +lisiez lire ver 281.09 324.8 0.96 0.95 ind:imp:2p; +lisions lire ver 281.09 324.8 0.27 1.55 ind:imp:1p; +lisière lisière nom f s 0.67 18.24 0.67 16.49 +lisières lisière nom f p 0.67 18.24 0 1.76 +lisons lire ver 281.09 324.8 1.56 0.81 imp:pre:1p;ind:pre:1p; +lissa lisser ver 2.04 11.35 0.02 1.15 ind:pas:3s; +lissage lissage nom m s 0.01 0.14 0.01 0.14 +lissai lisser ver 2.04 11.35 0 0.14 ind:pas:1s; +lissaient lisser ver 2.04 11.35 0 0.34 ind:imp:3p; +lissais lisser ver 2.04 11.35 0 0.07 ind:imp:1s; +lissait lisser ver 2.04 11.35 0 1.42 ind:imp:3s; +lissant lisser ver 2.04 11.35 0 1.96 par:pre; +lisse lisse adj s 3.48 33.58 2.71 24.26 +lissent lisser ver 2.04 11.35 0 0.34 ind:pre:3p; +lisser lisser ver 2.04 11.35 0.34 1.49 inf; +lissera lisser ver 2.04 11.35 0 0.07 ind:fut:3s; +lisserait lisser ver 2.04 11.35 0 0.14 cnd:pre:3s; +lisses lisse adj p 3.48 33.58 0.77 9.32 +lisseur lisseur nom m s 0 0.14 0 0.07 +lisseurs lisseur nom m p 0 0.14 0 0.07 +lissez lisser ver 2.04 11.35 0.7 0 imp:pre:2p; +lissons lisser ver 2.04 11.35 0.14 0.14 imp:pre:1p;ind:pre:1p; +lissotriche lissotriche adj s 0 0.07 0 0.07 +lissèrent lisser ver 2.04 11.35 0 0.07 ind:pas:3p; +lissé lisser ver m s 2.04 11.35 0.22 0.88 par:pas; +lissée lisser ver f s 2.04 11.35 0.15 0.34 par:pas; +lissées lisser ver f p 2.04 11.35 0.1 0.2 par:pas; +lissés lisser ver m p 2.04 11.35 0.01 0.68 par:pas; +liste liste nom f s 71.56 24.32 69.07 18.92 +listel listel nom m s 0 0.07 0 0.07 +lister lister ver 1.6 0 1.07 0 inf; +listeria listeria nom f 0.01 0 0.01 0 +listes liste nom f p 71.56 24.32 2.49 5.41 +listez lister ver 1.6 0 0.07 0 imp:pre:2p; +listing listing nom m s 0.26 0 0.23 0 +listings listing nom m p 0.26 0 0.02 0 +liston liston nom m s 4.14 0 4.14 0 +listé lister ver m s 1.6 0 0.23 0 par:pas; +listée lister ver f s 1.6 0 0.1 0 par:pas; +listées lister ver f p 1.6 0 0.04 0 par:pas; +listés lister ver m p 1.6 0 0.09 0 par:pas; +lisérait lisérer ver 0 0.2 0 0.07 ind:imp:3s; +liséré liséré nom m s 0 2.5 0 2.16 +lisérés liséré nom m p 0 2.5 0 0.34 +lit lit nom m s 184.27 338.18 176.1 315.74 +lit_bateau lit_bateau nom m s 0 0.81 0 0.81 +lit_cage lit_cage nom m s 0.01 1.62 0.01 1.15 +lit_divan lit_divan nom m s 0 0.2 0 0.2 +lita liter ver 0.82 0 0.34 0 ind:pas:3s; +litanie litanie nom f s 0.59 7.09 0.56 4.53 +litanies litanie nom f p 0.59 7.09 0.03 2.57 +lite liter ver 0.82 0 0.08 0 imp:pre:2s;ind:pre:3s; +liteaux liteau nom m p 0 0.07 0 0.07 +liter liter ver 0.82 0 0.27 0 inf; +literie literie nom f s 0.29 2.03 0.28 1.96 +literies literie nom f p 0.29 2.03 0.01 0.07 +lithiase lithiase nom f s 0.04 0 0.04 0 +lithinés lithiné adj m p 0 0.27 0 0.27 +lithique lithique adj s 0.01 0 0.01 0 +lithium lithium nom m s 0.94 0.14 0.94 0.14 +litho litho nom f s 0.02 0.2 0.01 0.14 +lithographe lithographe nom s 0 0.14 0 0.14 +lithographie lithographie nom f s 0.26 0.54 0.25 0.41 +lithographies lithographie nom f p 0.26 0.54 0.01 0.14 +lithographié lithographier ver m s 0 0.07 0 0.07 par:pas; +lithophages lithophage adj m p 0 0.07 0 0.07 +lithos litho nom f p 0.02 0.2 0.01 0.07 +lithosphère lithosphère nom f s 0.03 0 0.03 0 +lithotripsie lithotripsie nom f s 0.03 0 0.03 0 +lithotriteur lithotriteur nom m s 0.01 0 0.01 0 +lithuanien lithuanien adj m s 0.08 0.27 0.07 0.2 +lithuanienne lithuanien adj f s 0.08 0.27 0.01 0 +lithuaniennes lithuanien adj f p 0.08 0.27 0 0.07 +litige litige nom m s 0.78 1.42 0.57 0.74 +litiges litige nom m p 0.78 1.42 0.2 0.68 +litigieuse litigieux adj f s 0.07 0.34 0.02 0.2 +litigieux litigieux adj m s 0.07 0.34 0.04 0.14 +litière litière nom f s 0.82 6.15 0.81 5.68 +litières litière nom f p 0.82 6.15 0.01 0.47 +litorne litorne nom f s 0 0.07 0 0.07 +litote litote nom f s 0.03 0.41 0.03 0.2 +litotes litote nom f p 0.03 0.41 0 0.2 +litre litre nom s 10.19 18.51 2.75 10.2 +litrer litrer ver 0 0.07 0 0.07 inf; +litres litre nom p 10.19 18.51 7.44 8.31 +litron litron nom m s 0.2 3.18 0.2 1.82 +litronaient litroner ver 0 0.14 0 0.07 ind:imp:3p; +litrons litron nom m p 0.2 3.18 0 1.35 +litroné litroner ver m s 0 0.14 0 0.07 par:pas; +lits lit nom m p 184.27 338.18 8.17 22.43 +lit_cage lit_cage nom m p 0.01 1.62 0 0.47 +littoral littoral nom m s 0.21 3.11 0.2 3.11 +littorale littoral adj f s 0.23 0.34 0.07 0.14 +littoraux littoral nom m p 0.21 3.11 0.01 0 +littéraire littéraire adj s 3.09 17.16 2.64 11.82 +littérairement littérairement adv 0.01 0.14 0.01 0.14 +littéraires littéraire adj p 3.09 17.16 0.45 5.34 +littéral littéral adj m s 1.08 1.49 0.72 0.61 +littérale littéral adj f s 1.08 1.49 0.34 0.74 +littéralement littéralement adv 5.27 10.95 5.27 10.95 +littérales littéral adj f p 1.08 1.49 0 0.14 +littéralité littéralité nom f s 0 0.07 0 0.07 +littérateur littérateur nom m s 0.23 1.01 0.23 0.47 +littérateurs littérateur nom m p 0.23 1.01 0 0.54 +littérature littérature nom f s 8.48 36.89 8.48 36.82 +littératures littérature nom f p 8.48 36.89 0 0.07 +littéraux littéral adj m p 1.08 1.49 0.01 0 +lituanien lituanien adj m s 0.69 0.88 0.44 0.07 +lituanienne lituanien adj f s 0.69 0.88 0.25 0.27 +lituaniennes lituanien adj f p 0.69 0.88 0 0.34 +lituaniens lituanien nom m p 0.21 0.47 0.21 0.27 +liturgie liturgie nom f s 0.03 2.16 0.03 2.09 +liturgies liturgie nom f p 0.03 2.16 0 0.07 +liturgique liturgique adj s 0.16 1.08 0.16 0.54 +liturgiques liturgique adj p 0.16 1.08 0 0.54 +lité liter ver m s 0.82 0 0.14 0 par:pas; +litée litée nom f s 0 0.07 0 0.07 +livarot livarot nom m s 0 0.27 0 0.27 +live live adj 3.9 0.27 3.9 0.27 +livide livide adj s 0.74 10.54 0.62 8.78 +livides livide adj p 0.74 10.54 0.12 1.76 +lividité lividité nom f s 0.4 0 0.4 0 +living living nom m s 0.87 2.84 0.87 2.77 +living_room living_room nom m s 0.23 2.23 0.23 2.23 +livings living nom m p 0.87 2.84 0 0.07 +livoniennes livonienne nom f p 0 0.07 0 0.07 +livra livrer ver 56.53 84.93 0.14 2.5 ind:pas:3s; +livrable livrable adj s 0.02 0.07 0 0.07 +livrables livrable adj f p 0.02 0.07 0.02 0 +livrai livrer ver 56.53 84.93 0.01 0.34 ind:pas:1s; +livraient livrer ver 56.53 84.93 0.44 4.19 ind:imp:3p; +livrais livrer ver 56.53 84.93 0.38 1.22 ind:imp:1s;ind:imp:2s; +livraison livraison nom f s 13.68 8.58 10.69 5.47 +livraisons livraison nom f p 13.68 8.58 2.98 3.11 +livrait livrer ver 56.53 84.93 0.74 7.91 ind:imp:3s; +livrant livrer ver 56.53 84.93 0.98 3.65 par:pre; +livre livre nom 198.11 286.49 112.43 151.76 +livre_cassette livre_cassette nom m s 0.03 0 0.03 0 +livrent livrer ver 56.53 84.93 1.44 2.84 ind:pre:3p; +livrer livrer ver 56.53 84.93 21.42 25.2 inf;;inf;;inf;; +livrera livrer ver 56.53 84.93 0.97 0.34 ind:fut:3s; +livrerai livrer ver 56.53 84.93 0.62 0.41 ind:fut:1s; +livreraient livrer ver 56.53 84.93 0.04 0.54 cnd:pre:3p; +livrerais livrer ver 56.53 84.93 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +livrerait livrer ver 56.53 84.93 0.18 0.95 cnd:pre:3s; +livreras livrer ver 56.53 84.93 0.24 0.14 ind:fut:2s; +livrerez livrer ver 56.53 84.93 0.14 0 ind:fut:2p; +livrerons livrer ver 56.53 84.93 0.1 0.07 ind:fut:1p; +livreront livrer ver 56.53 84.93 0.47 0.2 ind:fut:3p; +livres livre nom p 198.11 286.49 85.69 134.73 +livres_club livres_club nom m p 0 0.07 0 0.07 +livresque livresque adj s 0.02 0.74 0.02 0.68 +livresques livresque adj f p 0.02 0.74 0 0.07 +livret livret nom m s 3.26 5.41 3.1 4.73 +livrets livret nom m p 3.26 5.41 0.16 0.68 +livreur livreur nom m s 4.46 3.99 3.81 2.91 +livreurs livreur nom m p 4.46 3.99 0.57 1.08 +livreuse livreur nom f s 4.46 3.99 0.08 0 +livrez livrer ver 56.53 84.93 3.28 0.2 imp:pre:2p;ind:pre:2p; +livrions livrer ver 56.53 84.93 0.02 0.2 ind:imp:1p; +livrons livrer ver 56.53 84.93 0.7 0.27 imp:pre:1p;ind:pre:1p; +livrâmes livrer ver 56.53 84.93 0.01 0.14 ind:pas:1p; +livrât livrer ver 56.53 84.93 0 0.54 sub:imp:3s; +livrèrent livrer ver 56.53 84.93 0.06 0.61 ind:pas:3p; +livré livrer ver m s 56.53 84.93 8.03 11.08 par:pas; +livrée livrer ver f s 56.53 84.93 1.91 4.73 par:pas; +livrées livrer ver f p 56.53 84.93 0.57 1.96 par:pas; +livrés livrer ver m p 56.53 84.93 2.64 4.59 par:pas; +livèche livèche nom f s 0.14 0 0.14 0 +liâmes lier ver 37.17 46.08 0 0.14 ind:pas:1p; +liât lier ver 37.17 46.08 0 0.34 sub:imp:3s; +liège liège nom m s 0.46 3.78 0.46 3.58 +lièges liège nom m p 0.46 3.78 0 0.2 +lièrent lier ver 37.17 46.08 0.03 0.34 ind:pas:3p; +lièvre lièvre nom m s 4.3 7.03 3.36 4.73 +lièvres lièvre nom m p 4.3 7.03 0.94 2.3 +lié lier ver m s 37.17 46.08 12.54 10.68 par:pas; +liée lier ver f s 37.17 46.08 3.96 7.5 par:pas; +liées lier ver f p 37.17 46.08 2.58 2.84 par:pas; +liégeois liégeois adj m 0 0.14 0 0.14 +liés lier ver m p 37.17 46.08 6.12 6.55 par:pas; +llanos llano nom m p 0 0.07 0 0.07 +lloyd lloyd nom m s 0.01 0 0.01 0 +loader loader nom m s 0.14 0 0.14 0 +lob lob nom m s 0.04 0.27 0.04 0.2 +lobaire lobaire adj f s 0.01 0 0.01 0 +lobbies lobbies nom m p 0.29 0 0.29 0 +lobby lobby nom m s 0.83 0.27 0.83 0.27 +lobbying lobbying nom m s 0.07 0 0.07 0 +lobe lobe nom m s 3.58 2.09 2.84 1.35 +lobectomie lobectomie nom f s 0.03 0.07 0.03 0.07 +lober lober ver 0.05 0 0.03 0 inf; +lobes lobe nom m p 3.58 2.09 0.74 0.74 +lobotomie lobotomie nom f s 0.83 0.14 0.83 0.14 +lobotomiser lobotomiser ver 0.31 0.07 0.04 0 inf; +lobotomisé lobotomiser ver m s 0.31 0.07 0.25 0.07 par:pas; +lobotomisée lobotomiser ver f s 0.31 0.07 0.03 0 par:pas; +lobs lob nom m p 0.04 0.27 0 0.07 +lobulaire lobulaire adj m s 0 0.07 0 0.07 +lobé lober ver m s 0.05 0 0.02 0 par:pas; +lobée lobé adj f s 0.01 0 0.01 0 +local local adj m s 18.11 22.84 6.05 6.76 +locale local adj f s 18.11 22.84 7.31 6.69 +localement localement adv 0.22 0.88 0.22 0.88 +locales local adj f p 18.11 22.84 2.93 4.8 +localisa localiser ver 12.87 2.84 0 0.34 ind:pas:3s; +localisable localisable adj m s 0.04 0.07 0.04 0.07 +localisaient localiser ver 12.87 2.84 0 0.07 ind:imp:3p; +localisais localiser ver 12.87 2.84 0.01 0.07 ind:imp:1s;ind:imp:2s; +localisait localiser ver 12.87 2.84 0.02 0 ind:imp:3s; +localisant localiser ver 12.87 2.84 0.02 0.07 par:pre; +localisateur localisateur adj m s 0.3 0 0.3 0 +localisation localisation nom f s 2.06 0.2 1.99 0.2 +localisations localisation nom f p 2.06 0.2 0.08 0 +localise localiser ver 12.87 2.84 0.76 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +localisent localiser ver 12.87 2.84 0.08 0.07 ind:pre:3p; +localiser localiser ver 12.87 2.84 7.41 1.76 inf; +localisera localiser ver 12.87 2.84 0.14 0 ind:fut:3s; +localiseront localiser ver 12.87 2.84 0.02 0 ind:fut:3p; +localisez localiser ver 12.87 2.84 0.48 0 imp:pre:2p;ind:pre:2p; +localisions localiser ver 12.87 2.84 0.01 0 ind:imp:1p; +localisons localiser ver 12.87 2.84 0.06 0 imp:pre:1p;ind:pre:1p; +localisé localiser ver m s 12.87 2.84 3.31 0.34 par:pas; +localisée localiser ver f s 12.87 2.84 0.25 0 par:pas; +localisées localiser ver f p 12.87 2.84 0.02 0 par:pas; +localisés localiser ver m p 12.87 2.84 0.26 0 par:pas; +localité localité nom f s 0.36 1.55 0.23 0.81 +localités localité nom f p 0.36 1.55 0.13 0.74 +locataire locataire nom s 7.22 14.46 3.29 6.22 +locataires locataire nom p 7.22 14.46 3.94 8.24 +locateurs locateur nom m p 0.01 0 0.01 0 +locatif locatif adj m s 0.04 0.07 0.01 0 +location location nom f s 5.51 5.34 5.29 5 +locations location nom f p 5.51 5.34 0.22 0.34 +locative locatif adj f s 0.04 0.07 0.01 0 +locatives locatif adj f p 0.04 0.07 0.02 0.07 +locature locature nom f s 0 0.07 0 0.07 +locaux local nom m p 5.78 11.89 2.23 4.26 +locdu locdu adj m s 0 0.27 0 0.27 +loch loch nom m s 0.65 0.41 0.65 0.41 +loche loche nom f s 0.56 1.08 0.12 1.01 +loches loche nom f p 0.56 1.08 0.44 0.07 +lock_out lock_out nom m 0.11 0 0.11 0 +lock_outer lock_outer ver m p 0 0.07 0 0.07 par:pas; +loco loco adv 1.48 1.08 1.48 1.08 +locomobile locomobile nom f s 0 0.07 0 0.07 +locomoteur locomoteur adj m s 0.01 0.07 0.01 0 +locomoteurs locomoteur adj m p 0.01 0.07 0 0.07 +locomotion locomotion nom f s 0.26 0.88 0.26 0.88 +locomotive locomotive nom f s 3.95 13.11 3.69 10.61 +locomotives locomotive nom f p 3.95 13.11 0.25 2.5 +locomotrice locomoteur nom f s 0 0.07 0 0.07 +locos loco nom m p 0.73 1.35 0.16 0.47 +locus locus nom m 0.15 0.2 0.15 0.2 +locuste locuste nom f s 0.06 0 0.01 0 +locustes locuste nom f p 0.06 0 0.05 0 +locuteur locuteur nom m s 0.02 0 0.01 0 +locution locution nom f s 0.04 1.01 0.04 0.41 +locutions locution nom f p 0.04 1.01 0.01 0.61 +locutrice locuteur nom f s 0.02 0 0.01 0 +loden loden nom m s 0.27 0.81 0.27 0.74 +lodens loden nom m p 0.27 0.81 0 0.07 +lof lof nom m s 0.02 0 0.02 0 +lofe lofer ver 0.02 0 0.01 0 ind:pre:3s; +lofez lofer ver 0.02 0 0.01 0 imp:pre:2p; +loft loft nom m s 1.36 0.47 1.11 0.47 +lofts loft nom m p 1.36 0.47 0.26 0 +logarithme logarithme nom m s 0.09 0.34 0.05 0 +logarithmes logarithme nom m p 0.09 0.34 0.04 0.34 +logarithmique logarithmique adj s 0.02 0 0.02 0 +loge loge nom f s 13.69 22.36 12.15 18.11 +logea loger ver 18.36 26.42 0.03 0.41 ind:pas:3s; +logeable logeable adj m s 0 0.14 0 0.07 +logeables logeable adj m p 0 0.14 0 0.07 +logeai loger ver 18.36 26.42 0 0.14 ind:pas:1s; +logeaient loger ver 18.36 26.42 0.06 1.69 ind:imp:3p; +logeais loger ver 18.36 26.42 0.16 0.47 ind:imp:1s;ind:imp:2s; +logeait loger ver 18.36 26.42 0.55 3.72 ind:imp:3s; +logeant loger ver 18.36 26.42 0.01 0.47 par:pre; +logeassent loger ver 18.36 26.42 0 0.07 sub:imp:3p; +logement logement nom m s 11.13 13.65 8.37 11.08 +logements logement nom m p 11.13 13.65 2.76 2.57 +logent loger ver 18.36 26.42 0.38 1.08 ind:pre:3p; +loger loger ver 18.36 26.42 5.84 7.23 inf; +logera loger ver 18.36 26.42 0.39 0 ind:fut:3s; +logerai loger ver 18.36 26.42 0.3 0.2 ind:fut:1s; +logeraient loger ver 18.36 26.42 0 0.14 cnd:pre:3p; +logerait loger ver 18.36 26.42 0.17 0.27 cnd:pre:3s; +logeras loger ver 18.36 26.42 0.24 0.07 ind:fut:2s; +logerez loger ver 18.36 26.42 0.38 0.07 ind:fut:2p; +logerions loger ver 18.36 26.42 0 0.07 cnd:pre:1p; +logerons loger ver 18.36 26.42 0.03 0 ind:fut:1p; +logeront loger ver 18.36 26.42 0.29 0.14 ind:fut:3p; +loges loge nom f p 13.69 22.36 1.54 4.26 +logettes logette nom f p 0 0.14 0 0.14 +logeur logeur nom m s 1.52 3.72 0.25 0.07 +logeurs logeur nom m p 1.52 3.72 0 0.27 +logeuse logeur nom f s 1.52 3.72 1.26 3.31 +logeuses logeur nom f p 1.52 3.72 0.01 0.07 +logez loger ver 18.36 26.42 1.29 0.41 imp:pre:2p;ind:pre:2p; +loggia loggia nom f s 0.1 3.85 0.1 3.11 +loggias loggia nom f p 0.1 3.85 0 0.74 +logiciel logiciel nom m s 3.61 0.14 2.31 0.14 +logiciels logiciel nom m p 3.61 0.14 1.3 0 +logicien logicien nom m s 0.03 0.41 0.03 0.2 +logicienne logicien nom f s 0.03 0.41 0 0.07 +logiciens logicien nom m p 0.03 0.41 0 0.14 +logiez loger ver 18.36 26.42 0.45 0.07 ind:imp:2p; +login login adj m s 0.04 0 0.04 0 +logions loger ver 18.36 26.42 0.11 0.2 ind:imp:1p; +logique logique adj s 14.4 12.03 13.79 11.22 +logiquement logiquement adv 1.33 3.24 1.33 3.24 +logiques logique adj p 14.4 12.03 0.61 0.81 +logis logis nom m 2.7 12.84 2.7 12.84 +logisticien logisticien nom m s 0.01 0 0.01 0 +logistique logistique nom f s 0.8 0.27 0.8 0.27 +logistiques logistique adj p 0.41 0.2 0.2 0.07 +logo logo nom m s 1.65 0 1.65 0 +logogriphe logogriphe nom m s 0.01 0.14 0.01 0.07 +logogriphes logogriphe nom m p 0.01 0.14 0 0.07 +logomachie logomachie nom f s 0 0.14 0 0.14 +logorrhée logorrhée nom f s 0.06 0.27 0.06 0.27 +logos logos nom m 0.16 0.81 0.16 0.81 +logosphère logosphère nom f s 0 0.14 0 0.14 +logothètes logothète nom m p 0 0.07 0 0.07 +logue loguer ver 0.02 0 0.02 0 imp:pre:2s;ind:pre:3s; +logèrent loger ver 18.36 26.42 0 0.14 ind:pas:3p; +logé loger ver m s 18.36 26.42 1.77 3.45 par:pas; +logée loger ver f s 18.36 26.42 1.23 1.08 par:pas; +logées loger ver f p 18.36 26.42 0.16 0.2 par:pas; +logés logé adj m p 0.89 1.76 0.36 0.81 +loi loi nom f s 110.12 72.3 87.37 44.46 +loin loin adv_sup 248.34 452.36 248.34 452.36 +lointain lointain adj m s 10.12 91.96 5.05 33.18 +lointaine lointain adj f s 10.12 91.96 2.89 32.5 +lointainement lointainement adv 0 0.47 0 0.47 +lointaines lointain adj f p 10.12 91.96 1.15 12.64 +lointains lointain adj m p 10.12 91.96 1.02 13.65 +loir loir nom m s 0.69 1.62 0.51 0.74 +loirs loir nom m p 0.69 1.62 0.18 0.88 +lois loi nom f p 110.12 72.3 22.75 27.84 +loisible loisible adj s 0 0.74 0 0.74 +loisir loisir nom m s 5.09 20.81 2.41 13.24 +loisirs loisir nom m p 5.09 20.81 2.68 7.57 +lokoum lokoum nom m s 0 0.14 0 0.14 +lolita lolita nom f s 0.1 0.07 0.04 0 +lolitas lolita nom f p 0.1 0.07 0.06 0.07 +lolo lolo nom m s 1.81 0.41 0.7 0.34 +lolos lolo nom m p 1.81 0.41 1.12 0.07 +lombaire lombaire adj s 1.37 0.34 1.06 0.2 +lombaires lombaire adj f p 1.37 0.34 0.3 0.14 +lombalgie lombalgie nom f s 0.01 0 0.01 0 +lombard lombard adj m s 0.14 0.74 0 0.2 +lombarde lombard adj f s 0.14 0.74 0.14 0.14 +lombardes lombard adj f p 0.14 0.74 0 0.14 +lombardo lombardo nom m 0.01 0 0.01 0 +lombards lombard adj m p 0.14 0.74 0 0.27 +lombes lombes nom f p 0 0.41 0 0.41 +lombostats lombostat nom m p 0 0.07 0 0.07 +lombric lombric nom m s 0.28 0.74 0.08 0.41 +lombrics lombric nom m p 0.28 0.74 0.2 0.34 +lompe lompe nom m s 0.01 0 0.01 0 +londonien londonien adj m s 1.23 0.95 0.44 0.47 +londonienne londonien adj f s 1.23 0.95 0.34 0.2 +londoniennes londonien adj f p 1.23 0.95 0.04 0.07 +londoniens londonien adj m p 1.23 0.95 0.41 0.2 +londrès londrès nom m 0 0.07 0 0.07 +long long adj m s 164.02 444.86 79.18 153.51 +long_courrier long_courrier nom m s 0.26 0.61 0.25 0.47 +long_courrier long_courrier nom m p 0.26 0.61 0.01 0.14 +long_métrage long_métrage nom m s 0.06 0 0.06 0 +longane longane nom m s 0.14 0 0.14 0 +longanimité longanimité nom f s 0 0.14 0 0.14 +longe longer ver 2.98 34.32 0.55 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +longea longer ver 2.98 34.32 0.01 3.65 ind:pas:3s; +longeai longer ver 2.98 34.32 0 0.27 ind:pas:1s; +longeaient longer ver 2.98 34.32 0 1.82 ind:imp:3p; +longeais longer ver 2.98 34.32 0.12 0.81 ind:imp:1s; +longeait longer ver 2.98 34.32 0.03 6.76 ind:imp:3s; +longeant longer ver 2.98 34.32 0.4 5.68 par:pre; +longent longer ver 2.98 34.32 0.14 0.74 ind:pre:3p; +longeons longer ver 2.98 34.32 0.02 0.81 imp:pre:1p;ind:pre:1p; +longer longer ver 2.98 34.32 0.61 2.57 inf; +longera longer ver 2.98 34.32 0.16 0 ind:fut:3s; +longeraient longer ver 2.98 34.32 0 0.07 cnd:pre:3p; +longerait longer ver 2.98 34.32 0 0.14 cnd:pre:3s; +longerions longer ver 2.98 34.32 0 0.07 cnd:pre:1p; +longeron longeron nom m s 0 0.2 0 0.07 +longerons longer ver 2.98 34.32 0.01 0 ind:fut:1p; +longeront longer ver 2.98 34.32 0.01 0.2 ind:fut:3p; +longes longe nom f p 0.11 1.35 0.03 0.07 +longez longer ver 2.98 34.32 0.43 0.14 imp:pre:2p;ind:pre:2p; +longeâmes longer ver 2.98 34.32 0 0.41 ind:pas:1p; +longicornes longicorne nom m p 0 0.07 0 0.07 +longiez longer ver 2.98 34.32 0.01 0 ind:imp:2p; +longiforme longiforme adj s 0 0.07 0 0.07 +longiligne longiligne adj m s 0.02 0.88 0 0.81 +longilignes longiligne adj m p 0.02 0.88 0.02 0.07 +longions longer ver 2.98 34.32 0.1 0.74 ind:imp:1p; +longitude longitude nom f s 0.46 0.41 0.46 0.41 +longitudinal longitudinal adj m s 0.19 0.54 0.03 0 +longitudinale longitudinal adj f s 0.19 0.54 0.01 0.07 +longitudinalement longitudinalement adv 0 0.07 0 0.07 +longitudinales longitudinal adj f p 0.19 0.54 0.15 0.41 +longitudinaux longitudinal adj m p 0.19 0.54 0 0.07 +longrines longrine nom f p 0 0.07 0 0.07 +longs long adj m p 164.02 444.86 17.65 65.47 +longtemps longtemps adv_sup 290.36 335.54 290.36 335.54 +longue long adj f s 164.02 444.86 54.12 138.31 +longue_vue longue_vue nom f s 0.3 2.64 0.29 2.5 +longuement longuement adv 3.71 58.45 3.71 58.45 +longues long adj f p 164.02 444.86 13.07 87.57 +longue_vue longue_vue nom f p 0.3 2.64 0.01 0.14 +longuet longuet adj m s 0.02 0.41 0.01 0.2 +longuette longuet adj f s 0.02 0.41 0.01 0.14 +longuettes longuet adj f p 0.02 0.41 0 0.07 +longueur longueur nom f s 9.42 28.45 8.36 26.82 +longueurs longueur nom f p 9.42 28.45 1.06 1.62 +longèrent longer ver 2.98 34.32 0 1.55 ind:pas:3p; +longé longer ver m s 2.98 34.32 0.38 1.76 par:pas; +longée longer ver f s 2.98 34.32 0.01 0.14 par:pas; +longés longer ver m p 2.98 34.32 0 0.07 par:pas; +longévité longévité nom f s 0.71 0.88 0.71 0.88 +look look nom m s 10.93 1.96 10.47 1.82 +looks look nom m p 10.93 1.96 0.46 0.14 +looping looping nom m s 0.33 0.68 0.27 0.54 +loopings looping nom m p 0.33 0.68 0.06 0.14 +looser looser nom m s 1.09 0 0.82 0 +loosers looser nom m p 1.09 0 0.27 0 +lopaille lopaille nom f s 0 0.07 0 0.07 +lope lope nom f s 1.01 1.69 0.53 1.08 +lopes lope nom f p 1.01 1.69 0.48 0.61 +lopette lopette nom f s 1.25 0.47 1.11 0.41 +lopettes lopette nom f p 1.25 0.47 0.15 0.07 +lopin lopin nom m s 0.62 0.41 0.52 0.34 +lopins lopin nom m p 0.62 0.41 0.1 0.07 +loquace loquace adj s 0.61 2.43 0.58 2.03 +loquaces loquace adj f p 0.61 2.43 0.03 0.41 +loquacité loquacité nom f s 0.01 0 0.01 0 +loquait loquer ver 0.41 0.27 0 0.07 ind:imp:3s; +loque loque nom f s 2.2 9.66 1.72 3.24 +loquedu loquedu nom s 0.07 2.5 0.01 1.08 +loquedus loquedu nom p 0.07 2.5 0.06 1.42 +loquer loquer ver 0.41 0.27 0 0.14 inf; +loques loque nom f p 2.2 9.66 0.48 6.42 +loquet loquet nom m s 0.6 4.39 0.6 4.05 +loqueteau loqueteau nom m s 0 0.07 0 0.07 +loqueteuse loqueteux adj f s 0.06 1.89 0 0.07 +loqueteuses loqueteux adj f p 0.06 1.89 0 0.07 +loqueteux loqueteux adj m 0.06 1.89 0.06 1.76 +loquets loquet nom m p 0.6 4.39 0 0.34 +loquette loqueter ver 0 0.07 0 0.07 ind:pre:3s; +loqué loquer ver m s 0.41 0.27 0.41 0 par:pas; +loqués loquer ver m p 0.41 0.27 0 0.07 par:pas; +loran loran nom m s 0.14 0 0.14 0 +lord lord nom m s 1.41 7.57 1.26 6.69 +lord_maire lord_maire nom m s 0.02 0.07 0.02 0.07 +lordose lordose nom f s 0 0.07 0 0.07 +lords lord nom m p 1.41 7.57 0.15 0.88 +lorette lorette nom f s 0.01 0.07 0.01 0 +lorettes lorette nom f p 0.01 0.07 0 0.07 +lorgna lorgner ver 1.07 7.09 0 0.88 ind:pas:3s; +lorgnaient lorgner ver 1.07 7.09 0.02 0.54 ind:imp:3p; +lorgnais lorgner ver 1.07 7.09 0.04 0.2 ind:imp:1s;ind:imp:2s; +lorgnait lorgner ver 1.07 7.09 0.13 1.69 ind:imp:3s; +lorgnant lorgner ver 1.07 7.09 0.01 1.15 par:pre; +lorgne lorgner ver 1.07 7.09 0.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lorgnent lorgner ver 1.07 7.09 0.07 0.47 ind:pre:3p; +lorgner lorgner ver 1.07 7.09 0.14 0.88 inf; +lorgnerai lorgner ver 1.07 7.09 0 0.07 ind:fut:1s; +lorgnerez lorgner ver 1.07 7.09 0 0.07 ind:fut:2p; +lorgnette lorgnette nom f s 0.13 2.09 0.13 1.08 +lorgnettes lorgnette nom f p 0.13 2.09 0 1.01 +lorgnez lorgner ver 1.07 7.09 0.13 0 ind:pre:2p; +lorgnon lorgnon nom m s 0.02 5.41 0.02 2.84 +lorgnons lorgnon nom m p 0.02 5.41 0 2.57 +lorgnèrent lorgner ver 1.07 7.09 0 0.07 ind:pas:3p; +lorgné lorgner ver m s 1.07 7.09 0 0.47 par:pas; +lorgnées lorgner ver f p 1.07 7.09 0 0.07 par:pas; +lorgnés lorgner ver m p 1.07 7.09 0 0.07 par:pas; +lori lori nom m s 0.01 0 0.01 0 +loriot loriot nom m s 0.05 2.36 0.02 2.16 +loriots loriot nom m p 0.05 2.36 0.03 0.2 +loris loris nom m 0.04 0 0.04 0 +lorrain lorrain adj m s 0.06 1.49 0 0.47 +lorraine lorrain adj f s 0.06 1.49 0.06 0.74 +lorraines lorrain adj f p 0.06 1.49 0 0.2 +lorrains lorrain nom m p 0 0.81 0 0.54 +lors lors adv_sup 35.79 70.27 35.79 70.27 +lorsqu lorsqu con 0.04 0 0.04 0 +lorsque lorsque con 49.36 207.09 49.36 207.09 +los los nom m 5.08 2.77 5.08 2.77 +losange losange nom m s 0.11 3.92 0.08 1.49 +losanges losange nom m p 0.11 3.92 0.03 2.43 +losangé losangé adj m s 0 0.34 0 0.07 +losangée losangé adj f s 0 0.34 0 0.07 +losangés losangé adj m p 0 0.34 0 0.2 +loser loser nom m s 4.77 0.07 3.27 0.07 +losers loser nom m p 4.77 0.07 1.51 0 +lot lot nom m s 13.28 17.16 11.87 15.68 +loterie loterie nom f s 7.25 4.86 7.16 4.32 +loteries loterie nom f p 7.25 4.86 0.09 0.54 +loti loti adj m s 0.69 1.22 0.09 0.34 +lotie lotir ver f s 0.26 0.54 0.23 0.14 par:pas; +lotier lotier nom m s 0 0.07 0 0.07 +loties loti adj f p 0.69 1.22 0 0.07 +lotion lotion nom f s 1.68 0.74 1.53 0.54 +lotionnés lotionner ver m p 0 0.07 0 0.07 par:pas; +lotions lotion nom f p 1.68 0.74 0.15 0.2 +lotir lotir ver 0.26 0.54 0.01 0.34 inf; +lotis loti adj m p 0.69 1.22 0.47 0.47 +lotissement lotissement nom m s 0.77 1.01 0.59 0.47 +lotissements lotissement nom m p 0.77 1.01 0.19 0.54 +loto loto nom m s 6.75 1.35 6.75 1.15 +lotos loto nom m p 6.75 1.35 0 0.2 +lots lot nom m p 13.28 17.16 1.42 1.49 +lotta lotta nom f s 0.16 0.41 0.16 0.41 +lotte lotte nom f s 0.18 0.14 0.18 0.07 +lottes lotte nom f p 0.18 0.14 0 0.07 +lotus lotus nom m 0.58 1.08 0.58 1.08 +loua louer ver 48.08 29.46 0.17 1.08 ind:pas:3s; +louable louable adj s 1.37 1.89 1.04 1.42 +louablement louablement adv 0.14 0 0.14 0 +louables louable adj p 1.37 1.89 0.33 0.47 +louage louage nom m s 0.07 0.88 0.07 0.88 +louai louer ver 48.08 29.46 0 0.41 ind:pas:1s; +louaient louer ver 48.08 29.46 0.33 1.15 ind:imp:3p; +louais louer ver 48.08 29.46 0.42 0.34 ind:imp:1s;ind:imp:2s; +louait louer ver 48.08 29.46 1.46 3.24 ind:imp:3s; +louange louange nom f s 3.06 6.35 0.97 1.82 +louangea louanger ver 0.13 0.74 0 0.14 ind:pas:3s; +louangeaient louanger ver 0.13 0.74 0 0.07 ind:imp:3p; +louangeant louanger ver 0.13 0.74 0 0.07 par:pre; +louanger louanger ver 0.13 0.74 0.12 0.2 inf; +louanges louange nom f p 3.06 6.35 2.09 4.53 +louangeur louangeur adj m s 0 0.2 0 0.14 +louangeuses louangeur adj f p 0 0.2 0 0.07 +louangé louanger ver m s 0.13 0.74 0 0.07 par:pas; +louangée louanger ver f s 0.13 0.74 0 0.07 par:pas; +louangés louanger ver m p 0.13 0.74 0.01 0.07 par:pas; +louant louer ver 48.08 29.46 0.23 0.54 par:pre; +loubard loubard nom m s 1.73 3.04 1.04 1.01 +loubarde loubard nom f s 1.73 3.04 0 0.34 +loubards loubard nom m p 1.73 3.04 0.69 1.69 +loucha loucher ver 2.54 6.35 0 0.27 ind:pas:3s; +louchai loucher ver 2.54 6.35 0 0.07 ind:pas:1s; +louchaient loucher ver 2.54 6.35 0 0.41 ind:imp:3p; +louchais loucher ver 2.54 6.35 0.01 0.2 ind:imp:1s;ind:imp:2s; +louchait loucher ver 2.54 6.35 0.2 1.08 ind:imp:3s; +louchant loucher ver 2.54 6.35 0.04 1.42 par:pre; +louche louche adj s 7.63 9.05 5.71 5.88 +louchebem louchebem nom m s 0 0.27 0 0.27 +louchement louchement nom m s 0 0.07 0 0.07 +louchent loucher ver 2.54 6.35 0.15 0.14 ind:pre:3p; +loucher loucher ver 2.54 6.35 0.4 0.61 inf; +louches louche adj p 7.63 9.05 1.92 3.18 +louchet louchet nom m s 0 0.07 0 0.07 +loucheur loucheur nom m s 0.05 0.27 0.05 0.14 +loucheuse loucheur nom f s 0.05 0.27 0 0.14 +louchez loucher ver 2.54 6.35 0.09 0.07 ind:pre:2p; +louchon louchon nom m s 0 0.14 0 0.07 +louchons loucher ver 2.54 6.35 0.01 0.14 ind:pre:1p; +louchât loucher ver 2.54 6.35 0 0.07 sub:imp:3s; +louché loucher ver m s 2.54 6.35 0.01 0.41 par:pas; +louchébème louchébème nom m s 0 0.07 0 0.07 +louchée loucher ver f s 2.54 6.35 0.01 0.14 par:pas; +loue louer ver 48.08 29.46 6.01 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +louent louer ver 48.08 29.46 0.76 0.41 ind:pre:3p; +louer louer ver 48.08 29.46 15.03 7.57 inf;; +louera louer ver 48.08 29.46 0.33 0.14 ind:fut:3s; +louerai louer ver 48.08 29.46 0.29 0.14 ind:fut:1s; +loueraient louer ver 48.08 29.46 0.01 0.07 cnd:pre:3p; +louerais louer ver 48.08 29.46 0.31 0.14 cnd:pre:1s;cnd:pre:2s; +louerait louer ver 48.08 29.46 0.05 0.41 cnd:pre:3s; +loueras louer ver 48.08 29.46 0.18 0 ind:fut:2s; +loueriez louer ver 48.08 29.46 0.01 0.07 cnd:pre:2p; +louerons louer ver 48.08 29.46 0.17 0.07 ind:fut:1p; +loues louer ver 48.08 29.46 0.58 0.07 ind:pre:2s; +loueur loueur nom m s 0.65 1.62 0.41 1.49 +loueurs loueur nom m p 0.65 1.62 0.23 0.07 +loueuse loueur nom f s 0.65 1.62 0.01 0.07 +louez louer ver 48.08 29.46 1.96 0.2 imp:pre:2p;ind:pre:2p; +louf louf adj m s 0.47 1.55 0.47 1.55 +loufer loufer ver 0 0.2 0 0.07 inf; +loufes loufer ver 0 0.2 0 0.14 ind:pre:2s; +loufiat loufiat nom m s 0.2 6.76 0.14 5.27 +loufiats loufiat nom m p 0.2 6.76 0.05 1.49 +loufoque loufoque adj s 0.87 0.41 0.68 0.34 +loufoquerie loufoquerie nom f s 0.04 0.27 0.04 0.2 +loufoqueries loufoquerie nom f p 0.04 0.27 0 0.07 +loufoques loufoque adj f p 0.87 0.41 0.19 0.07 +louftingue louftingue adj s 0 0.07 0 0.07 +louions louer ver 48.08 29.46 0.12 0.07 ind:imp:1p; +louis louis nom m s 5.01 5.07 5.01 5.07 +louis_philippard louis_philippard adj m s 0 0.34 0 0.07 +louis_philippard louis_philippard adj f s 0 0.34 0 0.14 +louis_philippard louis_philippard adj m p 0 0.34 0 0.14 +louise_bonne louise_bonne nom f s 0 0.07 0 0.07 +louisianais louisianais adj m s 0.02 0 0.02 0 +loukoum loukoum nom m s 0.07 2.57 0.02 0.95 +loukoums loukoum nom m p 0.07 2.57 0.05 1.62 +loulou loulou nom m s 1.48 19.32 1.45 18.72 +loulous loulou nom m p 1.48 19.32 0.03 0.61 +louloute louloute nom f s 0.45 0.2 0.35 0.07 +louloutes louloute nom f p 0.45 0.2 0.1 0.14 +louloutte louloutte nom f s 0 0.07 0 0.07 +louons louer ver 48.08 29.46 1.35 0.27 imp:pre:1p;ind:pre:1p; +loup loup nom m s 30.42 44.39 20.97 22.3 +loup_cervier loup_cervier nom m s 0 0.14 0 0.07 +loup_garou loup_garou nom m s 3.98 1.22 3.35 0.88 +loupa louper ver 12.06 9.46 0.03 0.14 ind:pas:3s; +loupai louper ver 12.06 9.46 0 0.07 ind:pas:1s; +loupaient louper ver 12.06 9.46 0 0.07 ind:imp:3p; +loupais louper ver 12.06 9.46 0 0.07 ind:imp:1s; +loupait louper ver 12.06 9.46 0.02 0.27 ind:imp:3s; +loupe loupe nom f s 1.71 5.47 1.66 4.86 +loupent louper ver 12.06 9.46 0.06 0.07 ind:pre:3p; +louper louper ver 12.06 9.46 3.81 3.04 inf; +loupera louper ver 12.06 9.46 0.26 0.2 ind:fut:3s; +louperai louper ver 12.06 9.46 0.15 0.07 ind:fut:1s; +louperais louper ver 12.06 9.46 0.06 0 cnd:pre:1s;cnd:pre:2s; +louperait louper ver 12.06 9.46 0 0.07 cnd:pre:3s; +louperas louper ver 12.06 9.46 0.02 0 ind:fut:2s; +louperez louper ver 12.06 9.46 0.03 0 ind:fut:2p; +loupes louper ver 12.06 9.46 0.69 0.14 ind:pre:2s; +loupez louper ver 12.06 9.46 0.17 0.07 imp:pre:2p;ind:pre:2p; +loupiat loupiat nom m s 0 0.14 0 0.14 +loupiez louper ver 12.06 9.46 0.04 0.07 ind:imp:2p; +loupiot loupiot nom m s 0.13 0.41 0.12 0.2 +loupiote loupiote nom f s 0.06 1.01 0.02 0.68 +loupiotes loupiote nom f p 0.06 1.01 0.03 0.34 +loupiots loupiot nom m p 0.13 0.41 0.01 0.2 +loupiotte loupiotte nom f s 0 0.14 0 0.07 +loupiottes loupiotte nom f p 0 0.14 0 0.07 +loups loup nom m p 30.42 44.39 8.41 18.24 +loup_cervier loup_cervier nom m p 0 0.14 0 0.07 +loup_garou loup_garou nom m p 3.98 1.22 0.63 0.34 +loupé louper ver m s 12.06 9.46 5.37 2.64 par:pas; +loupée louper ver f s 12.06 9.46 0.4 0.2 par:pas; +loupées louper ver f p 12.06 9.46 0.04 0.14 par:pas; +loupés louper ver m p 12.06 9.46 0.18 0.27 par:pas; +lourant lourer ver 0 0.07 0 0.07 par:pre; +lourd lourd adv 16.09 21.35 16.09 21.35 +lourdait lourder ver 0.38 1.69 0 0.07 ind:imp:3s; +lourdant lourder ver 0.38 1.69 0 0.07 par:pre; +lourdaud lourdaud nom m s 0.64 0.95 0.48 0.74 +lourdaude lourdaud adj f s 0.35 0.68 0 0.14 +lourdaudes lourdaud adj f p 0.35 0.68 0 0.07 +lourdauds lourdaud nom m p 0.64 0.95 0.16 0.2 +lourde lourd adj f s 29.45 145.88 8.46 56.62 +lourdement lourdement adv 1.87 14.66 1.87 14.66 +lourder lourder ver 0.38 1.69 0.22 0.61 inf; +lourderie lourderie nom f s 0 0.07 0 0.07 +lourdes lourd adj f p 29.45 145.88 4.26 23.18 +lourdeur lourdeur nom f s 0.2 5.47 0.19 4.86 +lourdeurs lourdeur nom f p 0.2 5.47 0.01 0.61 +lourdingue lourdingue adj f s 0.14 0.88 0.07 0.34 +lourdingues lourdingue adj m p 0.14 0.88 0.07 0.54 +lourds lourd adj m p 29.45 145.88 6.58 23.58 +lourdé lourder ver m s 0.38 1.69 0.1 0.34 par:pas; +lourdée lourder ver f s 0.38 1.69 0.05 0.27 par:pas; +lourdées lourder ver f p 0.38 1.69 0 0.14 par:pas; +lourdés lourder ver m p 0.38 1.69 0.01 0.2 par:pas; +loustic loustic nom m s 0.08 1.49 0.06 0.95 +loustics loustic nom m p 0.08 1.49 0.02 0.54 +loute loute nom f s 0.07 0.14 0.07 0.14 +loutre loutre nom f s 2.52 1.62 1.3 1.35 +loutres loutre nom f p 2.52 1.62 1.22 0.27 +louve loup nom f s 30.42 44.39 1.02 3.51 +louves loup nom f p 30.42 44.39 0.02 0.34 +louvet louvet adj m s 0.01 2.91 0.01 2.91 +louveteau louveteau nom m s 0.23 2.36 0.13 0.54 +louveteaux louveteau nom m p 0.23 2.36 0.11 1.82 +louvetiers louvetier nom m p 0 0.07 0 0.07 +louvoie louvoyer ver 0.31 2.97 0.07 0.81 ind:pre:1s;ind:pre:3s; +louvoiements louvoiement nom m p 0 0.14 0 0.14 +louvoient louvoyer ver 0.31 2.97 0.01 0.07 ind:pre:3p; +louvoyaient louvoyer ver 0.31 2.97 0 0.07 ind:imp:3p; +louvoyait louvoyer ver 0.31 2.97 0.01 0.2 ind:imp:3s; +louvoyant louvoyer ver 0.31 2.97 0 0.61 par:pre; +louvoyants louvoyant adj m p 0 0.2 0 0.07 +louvoyer louvoyer ver 0.31 2.97 0.18 0.88 inf; +louvoyons louvoyer ver 0.31 2.97 0 0.07 ind:pre:1p; +louvoyât louvoyer ver 0.31 2.97 0 0.07 sub:imp:3s; +louvoyé louvoyer ver m s 0.31 2.97 0.04 0.2 par:pas; +louâmes louer ver 48.08 29.46 0 0.07 ind:pas:1p; +louèrent louer ver 48.08 29.46 0.02 0.47 ind:pas:3p; +loué louer ver m s 48.08 29.46 16.22 7.91 par:pas; +louée louer ver f s 48.08 29.46 1.64 2.09 par:pas; +louées loué adj f p 1.67 1.82 0.12 0.14 +loués louer ver m p 48.08 29.46 0.37 0.34 par:pas; +lova lover ver 8.85 7.03 0 0.2 ind:pas:3s; +lovaient lover ver 8.85 7.03 0 0.07 ind:imp:3p; +lovais lover ver 8.85 7.03 0.01 0 ind:imp:1s; +lovait lover ver 8.85 7.03 0 0.34 ind:imp:3s; +lovant lover ver 8.85 7.03 0 0.14 par:pre; +love lover ver 8.85 7.03 8.64 2.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lovent lover ver 8.85 7.03 0 0.07 ind:pre:3p; +lover lover ver 8.85 7.03 0.14 1.01 inf; +lové lover ver m s 8.85 7.03 0.04 1.15 par:pas; +lovée lover ver f s 8.85 7.03 0.02 0.95 par:pas; +lovées lover ver f p 8.85 7.03 0 0.14 par:pas; +lovés lover ver m p 8.85 7.03 0 0.47 par:pas; +loyal loyal adj m s 10.96 7.36 5.87 3.72 +loyale loyal adj f s 10.96 7.36 2.13 1.82 +loyalement loyalement adv 0.81 1.42 0.81 1.42 +loyales loyal adj f p 10.96 7.36 0.19 0 +loyalisme loyalisme nom m s 0.08 1.15 0.08 1.15 +loyaliste loyaliste adj f s 0.07 0.07 0.03 0 +loyalistes loyaliste nom p 0.07 0.07 0.06 0 +loyauté loyauté nom f s 9.38 3.11 9.36 2.97 +loyautés loyauté nom f p 9.38 3.11 0.02 0.14 +loyaux loyal adj m p 10.96 7.36 2.76 1.82 +loyer loyer nom m s 17.18 6.49 16.2 5.07 +loyers loyer nom m p 17.18 6.49 0.98 1.42 +lsd lsd nom m 0.08 0 0.08 0 +lu lire ver m s 281.09 324.8 82.12 57.97 par:pas; +lubie lubie nom f s 2.41 2.77 1.37 1.35 +lubies lubie nom f p 2.41 2.77 1.04 1.42 +lubricité lubricité nom f s 0.57 0.74 0.57 0.74 +lubrifiant lubrifiant nom m s 0.63 0.68 0.58 0.54 +lubrifiante lubrifiant adj f s 0.1 0.07 0 0.07 +lubrifiants lubrifiant nom m p 0.63 0.68 0.05 0.14 +lubrification lubrification nom f s 0.14 0 0.14 0 +lubrifie lubrifier ver 0.53 0.41 0.19 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lubrifient lubrifier ver 0.53 0.41 0.01 0 ind:pre:3p; +lubrifier lubrifier ver 0.53 0.41 0.24 0.2 inf; +lubrifié lubrifié adj m s 0.17 0.2 0.11 0.07 +lubrifiée lubrifier ver f s 0.53 0.41 0.03 0 par:pas; +lubrifiées lubrifié adj f p 0.17 0.2 0.02 0.14 +lubrifiés lubrifié adj m p 0.17 0.2 0.01 0 +lubrique lubrique adj s 1.6 3.31 1.04 2.03 +lubriques lubrique adj p 1.6 3.31 0.56 1.28 +lucarne lucarne nom f s 0.95 10 0.78 8.24 +lucarnes lucarne nom f p 0.95 10 0.17 1.76 +luce luce nom f s 0.01 0 0.01 0 +lucet lucet nom m s 0 0.07 0 0.07 +lucide lucide adj s 3.2 12.43 2.76 10.54 +lucidement lucidement adv 0.02 0.68 0.02 0.68 +lucides lucide adj m p 3.2 12.43 0.44 1.89 +lucidité lucidité nom f s 1.92 10.95 1.92 10.74 +lucidités lucidité nom f p 1.92 10.95 0 0.2 +luciférien luciférien adj m s 0.01 0.34 0 0.2 +luciférienne luciférien adj f s 0.01 0.34 0.01 0.07 +lucifériens luciférien adj m p 0.01 0.34 0 0.07 +lucilie lucilie nom f s 0.02 0 0.02 0 +luciole luciole nom f s 1.5 2.3 1.01 0.54 +lucioles luciole nom f p 1.5 2.3 0.48 1.76 +lucite lucite nom f s 0.01 0 0.01 0 +lucratif lucratif adj m s 1.54 0.95 0.88 0.27 +lucratifs lucratif adj m p 1.54 0.95 0.02 0.14 +lucrative lucratif adj f s 1.54 0.95 0.57 0.41 +lucratives lucratif adj f p 1.54 0.95 0.08 0.14 +lucre lucre nom m s 0.14 0.54 0.14 0.54 +luddite luddite nom m s 0.01 0 0.01 0 +ludion ludion nom m s 0 0.61 0 0.54 +ludions ludion nom m p 0 0.61 0 0.07 +ludique ludique adj s 0.42 0.61 0.41 0.54 +ludiques ludique adj p 0.42 0.61 0.01 0.07 +lue lire ver f s 281.09 324.8 2.82 3.18 par:pas; +lues lire ver f p 281.09 324.8 1.12 1.69 par:pas; +luette luette nom f s 0.03 1.28 0.03 1.22 +luettes luette nom f p 0.03 1.28 0 0.07 +lueur lueur nom f s 6.65 64.19 5.37 49.12 +lueurs lueur nom f p 6.65 64.19 1.28 15.07 +luffa luffa nom m s 0.04 0 0.04 0 +luge luge nom f s 1.22 1.55 1.19 1.42 +luger luger nom m s 0.38 0.47 0.36 0.47 +lugers luger nom m p 0.38 0.47 0.01 0 +luges luge nom f p 1.22 1.55 0.03 0.14 +lugubre lugubre adj s 3.25 10.41 3 7.97 +lugubrement lugubrement adv 0 0.81 0 0.81 +lugubres lugubre adj p 3.25 10.41 0.25 2.43 +lui lui pro_per s 2308.74 4225.14 2308.74 4225.14 +lui_même lui_même pro_per m s 46.58 202.3 46.58 202.3 +luira luire ver 15.58 37.43 0.03 0 ind:fut:3s; +luiraient luire ver 15.58 37.43 0 0.07 cnd:pre:3p; +luirait luire ver 15.58 37.43 0 0.07 cnd:pre:3s; +luire luire ver 15.58 37.43 0.95 4.19 inf; +luirent luire ver 15.58 37.43 0 0.07 ind:pas:3p; +luis luire ver 15.58 37.43 6.61 1.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +luisaient luire ver 15.58 37.43 0.03 5 ind:imp:3p; +luisait luire ver 15.58 37.43 0.31 5.95 ind:imp:3s; +luisance luisance nom f s 0 1.08 0 0.88 +luisances luisance nom f p 0 1.08 0 0.2 +luisant luisant adj m s 0.81 28.51 0.52 8.45 +luisante luisant adj f s 0.81 28.51 0.09 7.43 +luisantes luisant adj f p 0.81 28.51 0.03 5.95 +luisants luisant adj m p 0.81 28.51 0.17 6.69 +luise luire ver 15.58 37.43 0 0.14 sub:pre:3s; +luisent luire ver 15.58 37.43 0.06 2.5 ind:pre:3p; +luit luire ver 15.58 37.43 2.02 3.31 ind:pre:3s;ind:pas:3s; +lulu lulu nom m s 0.03 0.74 0.03 0.61 +lulus lulu nom m p 0.03 0.74 0 0.14 +lumbago lumbago nom m s 0.16 0.68 0.14 0.47 +lumbagos lumbago nom m p 0.16 0.68 0.01 0.2 +lumen lumen nom m s 0.05 0.34 0.05 0.34 +lumignon lumignon nom m s 0 2.09 0 1.42 +lumignons lumignon nom m p 0 2.09 0 0.68 +luminaire luminaire nom m s 0.05 0.68 0 0.27 +luminaires luminaire nom m p 0.05 0.68 0.05 0.41 +luminescence luminescence nom f s 0.05 0.14 0.05 0.14 +luminescent luminescent adj m s 0.04 0.95 0 0.34 +luminescente luminescent adj f s 0.04 0.95 0.01 0.14 +luminescentes luminescent adj f p 0.04 0.95 0.03 0.34 +luminescents luminescent adj m p 0.04 0.95 0 0.14 +lumineuse lumineux adj f s 7.36 39.46 2.21 11.42 +lumineusement lumineusement adv 0.1 0.27 0.1 0.27 +lumineuses lumineux adj f p 7.36 39.46 0.35 4.8 +lumineux lumineux adj m 7.36 39.46 4.79 23.24 +luminosité luminosité nom f s 0.66 2.03 0.66 1.82 +luminosités luminosité nom f p 0.66 2.03 0 0.2 +lumière lumière nom f s 134.83 274.26 116.02 238.65 +lumières lumière nom f p 134.83 274.26 18.81 35.61 +lump lump nom m s 0.14 0.07 0.14 0.07 +lunaire lunaire adj s 3.82 4.66 3.58 3.78 +lunaires lunaire adj p 3.82 4.66 0.24 0.88 +lunaison lunaison nom f s 0.01 0.14 0.01 0.07 +lunaisons lunaison nom f p 0.01 0.14 0 0.07 +lunatique lunatique adj s 1.79 1.15 1.58 0.88 +lunatiques lunatique adj m p 1.79 1.15 0.21 0.27 +lunch lunch nom m s 0.54 1.22 0.54 1.22 +luncher luncher ver 0.14 0 0.14 0 inf; +lunches lunche nom m p 0 0.14 0 0.14 +lundi lundi nom m s 36.94 24.46 36.01 23.51 +lundis lundi nom m p 36.94 24.46 0.93 0.95 +lune lune nom f s 61.02 66.69 58.29 63.24 +lunes lune nom f p 61.02 66.69 2.74 3.45 +lunetier lunetier nom m s 0 0.07 0 0.07 +lunette lunette nom f s 33.33 75.27 1.71 7.43 +lunetteries lunetterie nom f p 0 0.07 0 0.07 +lunettes lunette nom f p 33.33 75.27 31.61 67.84 +lunetteux lunetteux adj m s 0 0.2 0 0.2 +lunetté lunetté adj m s 0 0.2 0 0.2 +lunule lunule nom f s 0 1.01 0 0.34 +lunules lunule nom f p 0 1.01 0 0.68 +luné luné adj m s 0.84 0.68 0.66 0.47 +lunée luné adj f s 0.84 0.68 0.18 0.07 +lunés luné adj m p 0.84 0.68 0 0.14 +lupanar lupanar nom m s 0.21 0.95 0.07 0.74 +lupanars lupanar nom m p 0.21 0.95 0.14 0.2 +lupin lupin nom m s 0.25 0.47 0.15 0.2 +lupins lupin nom m p 0.25 0.47 0.1 0.27 +lupus lupus nom m 1.28 0.27 1.28 0.27 +lur lur nom m s 0 0.07 0 0.07 +lurent lire ver 281.09 324.8 0.01 0.54 ind:pas:3p; +lurex lurex nom m 0.2 0.14 0.2 0.14 +luron luron nom m s 0.69 0.88 0.27 0.61 +luronne luron nom f s 0.69 0.88 0.29 0 +luronnes luron nom f p 0.69 0.88 0 0.14 +lurons luron nom m p 0.69 0.88 0.13 0.14 +lus lire ver m p 281.09 324.8 3.06 7.97 ind:pas:1s;ind:pas:2s;par:pas; +lusitanienne lusitanien adj f s 0 0.07 0 0.07 +lustra lustrer ver 0.8 2.43 0 0.07 ind:pas:3s; +lustrage lustrage nom m s 0.05 0 0.05 0 +lustraient lustrer ver 0.8 2.43 0 0.07 ind:imp:3p; +lustrait lustrer ver 0.8 2.43 0 0.2 ind:imp:3s; +lustral lustral adj m s 0 1.35 0 0.74 +lustrale lustral adj f s 0 1.35 0 0.41 +lustrales lustral adj f p 0 1.35 0 0.2 +lustrant lustrer ver 0.8 2.43 0.01 0.07 par:pre; +lustre lustre nom m s 3.92 15.14 0.93 7.3 +lustrer lustrer ver 0.8 2.43 0.51 0.68 inf; +lustres lustre nom m p 3.92 15.14 2.99 7.84 +lustreur lustreur nom m s 0.01 0.07 0.01 0 +lustreuse lustreur nom f s 0.01 0.07 0 0.07 +lustrine lustrine nom f s 0 0.74 0 0.74 +lustré lustrer ver m s 0.8 2.43 0.04 0.41 par:pas; +lustrée lustrer ver f s 0.8 2.43 0.06 0.41 par:pas; +lustrées lustré adj f p 0.09 2.23 0.02 0.27 +lustrés lustré adj m p 0.09 2.23 0.02 0.47 +lustucru lustucru nom m s 0.01 0.07 0.01 0.07 +lut lire ver 281.09 324.8 0.36 15.88 ind:pas:3s; +luth luth nom m s 0.17 1.62 0.17 1.28 +lutherie lutherie nom f s 0 0.07 0 0.07 +luthier luthier nom m s 0.11 0.2 0.11 0.2 +luths luth nom m p 0.17 1.62 0 0.34 +luthéranisme luthéranisme nom m s 0.01 0.14 0.01 0.14 +luthérianisme luthérianisme nom m s 0 0.07 0 0.07 +luthérien luthérien adj m s 0.37 0.81 0.1 0.47 +luthérienne luthérien adj f s 0.37 0.81 0.2 0.27 +luthériennes luthérien adj f p 0.37 0.81 0.01 0.07 +luthériens luthérien adj m p 0.37 0.81 0.06 0 +lutin lutin nom m s 2.14 1.01 1.45 0.61 +lutinaient lutiner ver 0.26 1.15 0 0.07 ind:imp:3p; +lutinait lutiner ver 0.26 1.15 0.01 0.2 ind:imp:3s; +lutinant lutiner ver 0.26 1.15 0 0.07 par:pre; +lutine lutin adj f s 0.63 0.61 0.01 0.07 +lutinent lutiner ver 0.26 1.15 0 0.14 ind:pre:3p; +lutiner lutiner ver 0.26 1.15 0.21 0.27 inf; +lutinerais lutiner ver 0.26 1.15 0.01 0.07 cnd:pre:1s; +lutins lutin nom m p 2.14 1.01 0.69 0.41 +lutinèrent lutiner ver 0.26 1.15 0 0.07 ind:pas:3p; +lutiné lutiner ver m s 0.26 1.15 0.02 0.14 par:pas; +lutinée lutiner ver f s 0.26 1.15 0 0.07 par:pas; +lutrin lutrin nom m s 0 1.35 0 1.15 +lutrins lutrin nom m p 0 1.35 0 0.2 +lutta lutter ver 25.41 48.78 0.05 1.42 ind:pas:3s; +luttai lutter ver 25.41 48.78 0.14 0.27 ind:pas:1s; +luttaient lutter ver 25.41 48.78 0.32 2.03 ind:imp:3p; +luttais lutter ver 25.41 48.78 0.29 0.88 ind:imp:1s;ind:imp:2s; +luttait lutter ver 25.41 48.78 0.76 5.54 ind:imp:3s; +luttant lutter ver 25.41 48.78 1.56 5.2 par:pre; +lutte lutte nom f s 23.18 41.82 22 37.36 +luttent lutter ver 25.41 48.78 1.56 1.76 ind:pre:3p; +lutter lutter ver 25.41 48.78 10.24 20.81 inf;; +luttera lutter ver 25.41 48.78 0.06 0 ind:fut:3s; +lutterai lutter ver 25.41 48.78 0.11 0.2 ind:fut:1s; +lutterais lutter ver 25.41 48.78 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +lutterait lutter ver 25.41 48.78 0.13 0.2 cnd:pre:3s; +lutterions lutter ver 25.41 48.78 0 0.07 cnd:pre:1p; +lutterons lutter ver 25.41 48.78 0.19 0 ind:fut:1p; +lutteront lutter ver 25.41 48.78 0.1 0 ind:fut:3p; +luttes lutte nom f p 23.18 41.82 1.19 4.46 +lutteur lutteur nom m s 1.27 3.78 0.88 1.62 +lutteurs lutteur nom m p 1.27 3.78 0.24 1.08 +lutteuse lutteur nom f s 1.27 3.78 0.14 0.27 +lutteuses lutteur nom f p 1.27 3.78 0.01 0.81 +luttez lutter ver 25.41 48.78 0.92 0.14 imp:pre:2p;ind:pre:2p; +luttiez lutter ver 25.41 48.78 0.07 0 ind:imp:2p; +luttions lutter ver 25.41 48.78 0.02 0.27 ind:imp:1p; +luttons lutter ver 25.41 48.78 0.8 0.41 imp:pre:1p;ind:pre:1p; +luttât lutter ver 25.41 48.78 0 0.14 sub:imp:3s; +luttèrent lutter ver 25.41 48.78 0.14 0.41 ind:pas:3p; +lutté lutter ver m s 25.41 48.78 3.27 4.26 par:pas; +lutz lutz nom m 4.52 0.14 4.52 0.14 +luté luter ver m s 0 0.14 0 0.14 par:pas; +lutécien lutécien adj m s 0 0.07 0 0.07 +lux lux nom m 0.34 0.34 0.34 0.34 +luxa luxer ver 0.16 0.34 0.01 0 ind:pas:3s; +luxation luxation nom f s 0.38 0.14 0.37 0.07 +luxations luxation nom f p 0.38 0.14 0.01 0.07 +luxe luxe nom m s 15.62 38.85 15.42 38.65 +luxembourgeois luxembourgeois adj m 0 0.74 0 0.47 +luxembourgeoise luxembourgeois adj f s 0 0.74 0 0.27 +luxer luxer ver 0.16 0.34 0.01 0 inf; +luxes luxe nom m p 15.62 38.85 0.2 0.2 +luxueuse luxueux adj f s 2.59 7.43 0.5 1.82 +luxueusement luxueusement adv 0.39 0.81 0.39 0.81 +luxueuses luxueux adj f p 2.59 7.43 0.12 0.95 +luxueux luxueux adj m 2.59 7.43 1.98 4.66 +luxure luxure nom f s 2.92 2.3 2.92 2.3 +luxuriance luxuriance nom f s 0.1 0.47 0.1 0.47 +luxuriant luxuriant adj m s 0.41 1.62 0.18 0.34 +luxuriante luxuriant adj f s 0.41 1.62 0.17 0.81 +luxuriantes luxuriant adj f p 0.41 1.62 0.04 0.14 +luxuriants luxuriant adj m p 0.41 1.62 0.02 0.34 +luxurieuse luxurieux adj f s 0.03 0.54 0.01 0.2 +luxurieux luxurieux adj m 0.03 0.54 0.02 0.34 +luxé luxer ver m s 0.16 0.34 0.03 0.07 par:pas; +luzerne luzerne nom f s 0.44 3.04 0.44 2.84 +luzernes luzerne nom f p 0.44 3.04 0 0.2 +luzernières luzernière nom f p 0 0.07 0 0.07 +lycanthrope lycanthrope nom m s 0.1 0 0.09 0 +lycanthropes lycanthrope nom m p 0.1 0 0.01 0 +lycanthropie lycanthropie nom f s 0.18 0 0.18 0 +lycaons lycaon nom m p 0 0.07 0 0.07 +lychee lychee nom m s 0.16 0.14 0.14 0 +lychees lychee nom m p 0.16 0.14 0.01 0.14 +lychnis lychnis nom m 0 0.07 0 0.07 +lycien lycien nom m s 0 0.2 0 0.07 +lyciennes lycien nom f p 0 0.2 0 0.14 +lycoperdon lycoperdon nom m s 0 0.14 0 0.07 +lycoperdons lycoperdon nom m p 0 0.14 0 0.07 +lycra lycra nom m s 0.28 0.14 0.28 0.14 +lycée lycée nom m s 42.56 38.78 41.96 36.42 +lycéen lycéen nom m s 3.55 10.61 0.64 1.42 +lycéenne lycéen nom f s 3.55 10.61 0.68 5.95 +lycéennes lycéen nom f p 3.55 10.61 0.41 1.55 +lycéens lycéen nom m p 3.55 10.61 1.81 1.69 +lycées lycée nom m p 42.56 38.78 0.59 2.36 +lymphangite lymphangite nom f s 0 0.07 0 0.07 +lymphatique lymphatique adj s 0.67 0.47 0.44 0.27 +lymphatiques lymphatique adj p 0.67 0.47 0.24 0.2 +lymphatisme lymphatisme nom m s 0 0.07 0 0.07 +lymphe lymphe nom f s 0.2 0.47 0.2 0.41 +lymphes lymphe nom f p 0.2 0.47 0 0.07 +lymphocytaire lymphocytaire adj s 0.02 0.14 0.02 0.07 +lymphocytaires lymphocytaire adj p 0.02 0.14 0 0.07 +lymphocyte lymphocyte nom m s 0.18 0.2 0.03 0 +lymphocytes lymphocyte nom m p 0.18 0.2 0.14 0.2 +lymphocytose lymphocytose nom f s 0.01 0 0.01 0 +lymphome lymphome nom m s 0.3 0.07 0.29 0.07 +lymphomes lymphome nom m p 0.3 0.07 0.01 0 +lymphopénie lymphopénie nom f s 0 0.07 0 0.07 +lymphosarcome lymphosarcome nom m s 0.01 0 0.01 0 +lymphoïde lymphoïde adj s 0.01 0 0.01 0 +lynch lynch nom m s 0.29 0.27 0.29 0.27 +lynchage lynchage nom m s 0.99 0.81 0.81 0.68 +lynchages lynchage nom m p 0.99 0.81 0.18 0.14 +lynchait lyncher ver 1.04 0.81 0.01 0.07 ind:imp:3s; +lynchent lyncher ver 1.04 0.81 0.01 0 ind:pre:3p; +lyncher lyncher ver 1.04 0.81 0.58 0.47 inf; +lyncheurs lyncheur nom m p 0.06 0 0.06 0 +lynchez lyncher ver 1.04 0.81 0.02 0 imp:pre:2p;ind:pre:2p; +lynchiez lyncher ver 1.04 0.81 0.01 0 ind:imp:2p; +lynchons lyncher ver 1.04 0.81 0.02 0 imp:pre:1p; +lynché lyncher ver m s 1.04 0.81 0.33 0.14 par:pas; +lynchée lyncher ver f s 1.04 0.81 0.01 0.07 par:pas; +lynchés lyncher ver m p 1.04 0.81 0.05 0.07 par:pas; +lynx lynx nom m 1.73 1.22 1.73 1.22 +lyonnais lyonnais adj m 0.28 1.01 0.27 0.81 +lyonnaise lyonnais adj f s 0.28 1.01 0.01 0.2 +lyophilisant lyophiliser ver 0.07 0 0.01 0 par:pre; +lyophiliser lyophiliser ver 0.07 0 0.05 0 inf; +lyophilisé lyophilisé adj m s 0.15 0.07 0.06 0 +lyophilisée lyophilisé adj f s 0.15 0.07 0.04 0 +lyophilisés lyophilisé adj m p 0.15 0.07 0.04 0.07 +lyre lyre nom f s 0.71 1.42 0.55 1.15 +lyres lyre nom f p 0.71 1.42 0.16 0.27 +lyrique lyrique adj s 0.95 5.2 0.92 4.26 +lyriques lyrique adj p 0.95 5.2 0.03 0.95 +lyriser lyriser ver 0 0.07 0 0.07 inf; +lyrisme lyrisme nom m s 0.26 3.11 0.26 3.11 +lys lys nom m 2.41 3.38 2.41 3.38 +lyse lyse nom f s 0.04 0 0.04 0 +lysergique lysergique adj m s 0.07 0.14 0.07 0.14 +lysimaque lysimaque nom f s 0.01 0 0.01 0 +lysine lysine nom f s 0.04 0.07 0.04 0.07 +lysosomes lysosome nom m p 0.14 0 0.14 0 +là là ono 38.53 4.26 38.53 4.26 +là_bas là_bas adv 263.15 117.7 263.15 117.7 +là_dedans là_dedans adv 74 23.58 74 23.58 +là_dehors là_dehors adv 1.3 0 1.3 0 +là_derrière là_derrière adv 1.14 0.14 1.14 0.14 +là_dessous là_dessous adv 7.12 4.32 7.12 4.32 +là_dessus là_dessus adv 30.89 32.5 30.89 32.5 +là_devant là_devant adv 0 0.14 0 0.14 +là_haut là_haut adv 67.78 42.7 67.78 42.7 +lâcha lâcher ver 171.08 89.19 0.03 12.7 ind:pas:3s; +lâchage lâchage nom m s 0.02 0.2 0.02 0.2 +lâchai lâcher ver 171.08 89.19 0.03 0.95 ind:pas:1s; +lâchaient lâcher ver 171.08 89.19 0.09 1.49 ind:imp:3p; +lâchais lâcher ver 171.08 89.19 0.2 0.81 ind:imp:1s;ind:imp:2s; +lâchait lâcher ver 171.08 89.19 1.08 5.68 ind:imp:3s; +lâchant lâcher ver 171.08 89.19 0.25 4.59 par:pre; +lâche lâcher ver 171.08 89.19 75.31 14.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +lâchement lâchement adv 1.07 2.97 1.07 2.97 +lâchent lâcher ver 171.08 89.19 2.52 2.5 ind:pre:3p; +lâcher lâcher ver 171.08 89.19 19.41 20.41 inf;; +lâchera lâcher ver 171.08 89.19 1.24 1.35 ind:fut:3s; +lâcherai lâcher ver 171.08 89.19 2.86 0.47 ind:fut:1s; +lâcheraient lâcher ver 171.08 89.19 0.05 0.07 cnd:pre:3p; +lâcherais lâcher ver 171.08 89.19 0.32 0.07 cnd:pre:1s;cnd:pre:2s; +lâcherait lâcher ver 171.08 89.19 0.35 0.81 cnd:pre:3s; +lâcheras lâcher ver 171.08 89.19 0.35 0.07 ind:fut:2s; +lâcherez lâcher ver 171.08 89.19 0.11 0.14 ind:fut:2p; +lâcheriez lâcher ver 171.08 89.19 0.02 0.07 cnd:pre:2p; +lâcherons lâcher ver 171.08 89.19 0.08 0.07 ind:fut:1p; +lâcheront lâcher ver 171.08 89.19 0.69 0.34 ind:fut:3p; +lâchers lâcher nom m p 0.95 0.88 0.01 0.07 +lâches lâche nom p 27.16 5.81 7.65 2.57 +lâcheté lâcheté nom f s 4.17 10 3.91 9.12 +lâchetés lâcheté nom f p 4.17 10 0.26 0.88 +lâcheur lâcheur nom m s 0.67 0.81 0.3 0.47 +lâcheurs lâcheur nom m p 0.67 0.81 0.25 0.14 +lâcheuse lâcheur nom f s 0.67 0.81 0.13 0.2 +lâchez lâcher ver 171.08 89.19 48.02 2.09 imp:pre:2p;ind:pre:2p; +lâchiez lâcher ver 171.08 89.19 0.13 0 ind:imp:2p; +lâchions lâcher ver 171.08 89.19 0.03 0.07 ind:imp:1p; +lâchons lâcher ver 171.08 89.19 0.17 0.27 imp:pre:1p;ind:pre:1p; +lâchât lâcher ver 171.08 89.19 0 0.27 sub:imp:3s; +lâchèrent lâcher ver 171.08 89.19 0.01 0.88 ind:pas:3p; +lâché lâcher ver m s 171.08 89.19 11.35 14.8 par:pas; +lâchée lâcher ver f s 171.08 89.19 1.07 1.69 par:pas; +lâchées lâcher ver f p 171.08 89.19 0.21 0.81 par:pas; +lâchés lâcher ver m p 171.08 89.19 1.05 1.42 par:pas; +lèche lécher ver 14.09 23.11 4.03 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lèche_botte lèche_botte nom m s 0.11 0 0.11 0 +lèche_bottes lèche_bottes nom m 0.68 0.34 0.68 0.34 +lèche_cul lèche_cul nom m s 1.29 0.61 1.29 0.61 +lèche_vitrine lèche_vitrine nom m s 0.26 0.07 0.26 0.07 +lèche_vitrines lèche_vitrines nom m 0.07 0.2 0.07 0.2 +lèchefrite lèchefrite nom f s 0 0.07 0 0.07 +lèchent lécher ver 14.09 23.11 0.5 0.34 ind:pre:3p; +lècheries lècherie nom f p 0 0.07 0 0.07 +lèches lécher ver 14.09 23.11 0.5 0.07 ind:pre:2s; +lègue léguer ver 4.98 5.61 1.47 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lèpre lèpre nom f s 1.4 3.65 1.4 3.51 +lèpres lèpre nom f p 1.4 3.65 0 0.14 +lès lès pre 0 0.07 0 0.07 +lèse léser ver 1.36 1.08 0.06 0.07 ind:pre:3s; +lèse_majesté lèse_majesté nom f 0.03 0.27 0.03 0.27 +lève lever ver 165.98 440.74 67.72 77.7 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +lèvent lever ver 165.98 440.74 1.67 8.45 ind:pre:3p;sub:pre:3p; +lèvera lever ver 165.98 440.74 1.91 1.89 ind:fut:3s; +lèverai lever ver 165.98 440.74 0.7 0.95 ind:fut:1s; +lèveraient lever ver 165.98 440.74 0.05 0.34 cnd:pre:3p; +lèverais lever ver 165.98 440.74 0.26 0.41 cnd:pre:1s;cnd:pre:2s; +lèverait lever ver 165.98 440.74 0.48 1.35 cnd:pre:3s; +lèveras lever ver 165.98 440.74 0.32 0.07 ind:fut:2s; +lèverez lever ver 165.98 440.74 0.17 0.07 ind:fut:2p; +lèverons lever ver 165.98 440.74 0.31 0.14 ind:fut:1p; +lèveront lever ver 165.98 440.74 0.26 0.2 ind:fut:3p; +lèves lever ver 165.98 440.74 5.42 1.35 ind:pre:2s;sub:pre:2s; +lèvre lèvre nom f s 37.91 222.03 4 20.74 +lèvres lèvre nom f p 37.91 222.03 33.91 201.28 +lé lé nom m s 2.3 2.03 2.28 1.35 +lécha lécher ver 14.09 23.11 0.01 1.96 ind:pas:3s; +léchage léchage nom m s 0.19 0.27 0.17 0.14 +léchages léchage nom m p 0.19 0.27 0.01 0.14 +léchaient lécher ver 14.09 23.11 0.08 0.74 ind:imp:3p; +léchais lécher ver 14.09 23.11 0.11 0.27 ind:imp:1s;ind:imp:2s; +léchait lécher ver 14.09 23.11 0.37 3.45 ind:imp:3s; +léchant lécher ver 14.09 23.11 0.57 2.09 par:pre; +léchassions lécher ver 14.09 23.11 0 0.07 sub:imp:1p; +lécher lécher ver 14.09 23.11 5.73 6.89 inf; +léchera lécher ver 14.09 23.11 0.05 0.07 ind:fut:3s; +lécherai lécher ver 14.09 23.11 0.08 0 ind:fut:1s; +lécherais lécher ver 14.09 23.11 0.05 0 cnd:pre:1s;cnd:pre:2s; +lécherait lécher ver 14.09 23.11 0.01 0.14 cnd:pre:3s; +lécheras lécher ver 14.09 23.11 0.04 0.07 ind:fut:2s; +lécheront lécher ver 14.09 23.11 0.05 0 ind:fut:3p; +lécheur lécheur nom m s 0.47 0.34 0.3 0.14 +lécheurs lécheur nom m p 0.47 0.34 0.17 0.07 +lécheuse lécheur nom f s 0.47 0.34 0.01 0.07 +lécheuses lécheur nom f p 0.47 0.34 0 0.07 +léchez lécher ver 14.09 23.11 0.35 0.2 imp:pre:2p;ind:pre:2p; +léchouillait léchouiller ver 0.04 0.2 0 0.07 ind:imp:3s; +léchouillent léchouiller ver 0.04 0.2 0 0.07 ind:pre:3p; +léchouiller léchouiller ver 0.04 0.2 0.02 0.07 inf; +léchouilles léchouiller ver 0.04 0.2 0.02 0 ind:pre:2s; +léchèrent lécher ver 14.09 23.11 0 0.14 ind:pas:3p; +léché lécher ver m s 14.09 23.11 0.93 1.42 par:pas; +léchée lécher ver f s 14.09 23.11 0.45 1.01 par:pas; +léchées lécher ver f p 14.09 23.11 0.14 0.41 par:pas; +léchés lécher ver m p 14.09 23.11 0.03 0.2 par:pas; +lécithine lécithine nom f s 0.15 0 0.15 0 +légal légal adj m s 16.79 6.49 9.8 2.43 +légale légal adj f s 16.79 6.49 4.51 2.03 +légalement légalement adv 5.09 2.03 5.09 2.03 +légales légal adj f p 16.79 6.49 1.48 1.42 +légalisant légaliser ver 0.76 0.14 0.03 0.07 par:pre; +légalisation légalisation nom f s 0.09 0 0.09 0 +légalise légaliser ver 0.76 0.14 0.04 0 ind:pre:1s;ind:pre:3s; +légaliser légaliser ver 0.76 0.14 0.3 0 inf; +légalisez légaliser ver 0.76 0.14 0.14 0.07 imp:pre:2p; +légaliste légaliste adj s 0 0.14 0 0.07 +légalistes légaliste adj m p 0 0.14 0 0.07 +légalisé légaliser ver m s 0.76 0.14 0.12 0 par:pas; +légalisée légaliser ver f s 0.76 0.14 0.14 0 par:pas; +légalité légalité nom f s 2.39 2.5 2.39 2.5 +légat légat nom m s 0.15 2.23 0 1.96 +légataire légataire nom s 0.15 0.34 0.14 0.34 +légataires légataire nom p 0.15 0.34 0.01 0 +légation légation nom f s 0.06 2.91 0.06 1.89 +légations légation nom f p 0.06 2.91 0 1.01 +légats légat nom m p 0.15 2.23 0.15 0.27 +légaux légal adj m p 16.79 6.49 1 0.61 +légendaire légendaire adj s 4.1 7.5 3.57 5.74 +légendaires légendaire adj p 4.1 7.5 0.53 1.76 +légende légende nom f s 20.41 27.43 16.07 21.49 +légender légender ver 0 0.14 0 0.07 inf; +légendes légende nom f p 20.41 27.43 4.33 5.95 +légendée légender ver f s 0 0.14 0 0.07 par:pas; +léger léger adj m s 37.77 151.01 17.03 74.93 +légers léger adj m p 37.77 151.01 2.57 17.16 +légifère légiférer ver 0.22 0.27 0.01 0.07 ind:pre:3s; +légiférait légiférer ver 0.22 0.27 0 0.07 ind:imp:3s; +légiférer légiférer ver 0.22 0.27 0.19 0.14 inf; +légiféré légiférer ver m s 0.22 0.27 0.01 0 par:pas; +légion légion nom f s 6.66 16.35 4.17 13.65 +légionellose légionellose nom f s 0.03 0 0.03 0 +légionnaire légionnaire nom m s 1.23 4.26 0.71 2.57 +légionnaires légionnaire nom m p 1.23 4.26 0.52 1.69 +légions légion nom f p 6.66 16.35 2.5 2.7 +législateur législateur nom m s 0.47 1.08 0.3 0.68 +législateurs législateur nom m p 0.47 1.08 0.17 0.41 +législatif législatif adj m s 0.73 2.03 0.41 0.74 +législatifs législatif adj m p 0.73 2.03 0.03 0.14 +législation législation nom f s 1.16 1.42 1.16 1.42 +législative législatif adj f s 0.73 2.03 0.11 0.54 +législatives législatif adj f p 0.73 2.03 0.18 0.61 +législature législature nom f s 0.2 0.14 0.2 0.14 +légiste légiste nom s 7.97 1.42 7.28 1.35 +légistes légiste nom p 7.97 1.42 0.69 0.07 +légitimaient légitimer ver 0.3 1.62 0 0.14 ind:imp:3p; +légitimait légitimer ver 0.3 1.62 0 0.14 ind:imp:3s; +légitimant légitimer ver 0.3 1.62 0.02 0.07 par:pre; +légitimation légitimation nom f s 0.03 0.07 0.03 0 +légitimations légitimation nom f p 0.03 0.07 0 0.07 +légitime légitime adj s 14.08 16.22 12.82 13.24 +légitimement légitimement adv 0.27 1.22 0.27 1.22 +légitiment légitimer ver 0.3 1.62 0 0.07 ind:pre:3p; +légitimer légitimer ver 0.3 1.62 0.19 0.47 inf; +légitimera légitimer ver 0.3 1.62 0.01 0.07 ind:fut:3s; +légitimes légitime adj p 14.08 16.22 1.26 2.97 +légitimiste légitimiste adj m s 0 0.34 0 0.34 +légitimistes légitimiste nom p 0 0.07 0 0.07 +légitimité légitimité nom f s 0.76 1.76 0.76 1.76 +légitimé légitimer ver m s 0.3 1.62 0.05 0.27 par:pas; +légitimée légitimer ver f s 0.3 1.62 0 0.07 par:pas; +légua léguer ver 4.98 5.61 0.02 0.27 ind:pas:3s; +léguaient léguer ver 4.98 5.61 0 0.07 ind:imp:3p; +léguais léguer ver 4.98 5.61 0 0.07 ind:imp:1s; +léguait léguer ver 4.98 5.61 0.04 0.2 ind:imp:3s; +léguant léguer ver 4.98 5.61 0.31 0.27 par:pre; +léguer léguer ver 4.98 5.61 0.67 1.22 inf; +léguera léguer ver 4.98 5.61 0 0.07 ind:fut:3s; +léguerai léguer ver 4.98 5.61 0.01 0.2 ind:fut:1s; +léguerais léguer ver 4.98 5.61 0.01 0.07 cnd:pre:2s; +léguerez léguer ver 4.98 5.61 0.01 0 ind:fut:2p; +léguerons léguer ver 4.98 5.61 0.01 0 ind:fut:1p; +légueront léguer ver 4.98 5.61 0.01 0 ind:fut:3p; +léguez léguer ver 4.98 5.61 0.16 0 imp:pre:2p;ind:pre:2p; +légume légume nom m s 15.16 23.45 3.2 2.09 +légumes légume nom m p 15.16 23.45 11.96 21.35 +légumier légumier nom m s 0 0.07 0 0.07 +légumineuse légumineux nom f s 0 0.07 0 0.07 +légumineux légumineux adj m 0 0.07 0 0.07 +légué léguer ver m s 4.98 5.61 1.99 1.96 par:pas; +léguée léguer ver f s 4.98 5.61 0.09 0.47 par:pas; +léguées léguer ver f p 4.98 5.61 0.02 0.14 par:pas; +légués léguer ver m p 4.98 5.61 0.17 0.07 par:pas; +légère léger adj f s 37.77 151.01 15.71 47.84 +légèrement légèrement adv 6.35 65.2 6.35 65.2 +légères léger adj f p 37.77 151.01 2.45 11.08 +légèreté légèreté nom f s 1.35 12.7 1.35 12.5 +légèretés légèreté nom f p 1.35 12.7 0 0.2 +lémur lémur nom m s 0.01 0 0.01 0 +lémure lémure nom m s 0 0.27 0 0.14 +lémures lémure nom m p 0 0.27 0 0.14 +lémurien lémurien nom m s 0.34 0.41 0.3 0 +lémuriens lémurien nom m p 0.34 0.41 0.04 0.41 +lénifiait lénifier ver 0 0.07 0 0.07 ind:imp:3s; +lénifiant lénifiant adj m s 0.04 1.01 0.01 0.07 +lénifiante lénifiant adj f s 0.04 1.01 0.01 0.68 +lénifiantes lénifiant adj f p 0.04 1.01 0 0.2 +lénifiants lénifiant adj m p 0.04 1.01 0.01 0.07 +lénification lénification nom f s 0 0.07 0 0.07 +léninisme léninisme nom m s 0.27 0.2 0.27 0.2 +léniniste léniniste adj f s 0.14 0.27 0.14 0.2 +léninistes léniniste nom p 0 0.34 0 0.34 +lénitive lénitif adj f s 0 0.27 0 0.2 +lénitives lénitif adj f p 0 0.27 0 0.07 +léonard léonard adj m s 0.05 0.14 0.05 0.14 +léonin léonin adj m s 0 0.68 0 0.27 +léonine léonin adj f s 0 0.68 0 0.34 +léonins léonin adj m p 0 0.68 0 0.07 +léopard léopard nom m s 3.64 2.7 3.18 2.57 +léopards léopard nom m p 3.64 2.7 0.46 0.14 +léopardé léopardé adj m s 0 0.07 0 0.07 +lépidoptère lépidoptère nom m s 0 0.2 0 0.14 +lépidoptères lépidoptère nom m p 0 0.2 0 0.07 +lépiotes lépiote nom f p 0 0.07 0 0.07 +lépontique lépontique nom m s 0 0.14 0 0.14 +lépreuse lépreux adj f s 0.41 2.57 0.15 0.41 +lépreuses lépreux nom f p 2.65 2.64 0.04 0 +lépreux lépreux nom m 2.65 2.64 2.54 2.57 +léprologie léprologie nom f s 0.01 0 0.01 0 +léproserie léproserie nom f s 0.32 0.81 0.32 0.74 +léproseries léproserie nom f p 0.32 0.81 0 0.07 +lérot lérot nom m s 0.01 0.14 0.01 0 +lérots lérot nom m p 0.01 0.14 0 0.14 +lés lé nom m p 2.3 2.03 0.02 0.68 +lésaient léser ver 1.36 1.08 0 0.07 ind:imp:3p; +lésais léser ver 1.36 1.08 0 0.07 ind:imp:1s; +léser léser ver 1.36 1.08 0.33 0.07 inf; +lésina lésiner ver 1.01 2.3 0 0.07 ind:pas:3s; +lésinaient lésiner ver 1.01 2.3 0 0.14 ind:imp:3p; +lésinait lésiner ver 1.01 2.3 0 0.2 ind:imp:3s; +lésine lésiner ver 1.01 2.3 0.47 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lésinent lésiner ver 1.01 2.3 0 0.2 ind:pre:3p; +lésiner lésiner ver 1.01 2.3 0.36 0.88 inf; +lésinerie lésinerie nom f s 0 0.07 0 0.07 +lésines lésine nom f p 0 0.2 0 0.07 +lésinez lésiner ver 1.01 2.3 0.09 0 imp:pre:2p;ind:pre:2p; +lésiné lésiner ver m s 1.01 2.3 0.09 0.47 par:pas; +lésion lésion nom f s 4.37 1.28 1.84 0.47 +lésionnaire lésionnaire adj s 0.01 0 0.01 0 +lésions lésion nom f p 4.37 1.28 2.53 0.81 +lésons léser ver 1.36 1.08 0.01 0 ind:pre:1p; +lésé léser ver m s 1.36 1.08 0.43 0.41 par:pas; +lésée léser ver f s 1.36 1.08 0.35 0.14 par:pas; +lésées léser ver f p 1.36 1.08 0.02 0 par:pas; +lésés léser ver m p 1.36 1.08 0.15 0.27 par:pas; +létal létal adj m s 0.29 0.07 0.03 0 +létale létal adj f s 0.29 0.07 0.23 0.07 +létales létal adj f p 0.29 0.07 0.03 0 +létalité létalité nom f s 0.02 0 0.02 0 +léthargie léthargie nom f s 0.76 2.16 0.75 2.09 +léthargies léthargie nom f p 0.76 2.16 0.01 0.07 +léthargique léthargique adj s 0.22 0.81 0.18 0.54 +léthargiques léthargique adj m p 0.22 0.81 0.04 0.27 +léviathan léviathan nom m s 0.27 0.27 0.27 0.27 +lévitation lévitation nom f s 0.46 0.61 0.46 0.61 +lévite lévite nom s 0.1 0.54 0.09 0.41 +lévitent léviter ver 0.47 0.07 0.01 0.07 ind:pre:3p; +léviter léviter ver 0.47 0.07 0.46 0 inf; +lévites lévite nom p 0.1 0.54 0.01 0.14 +lévitique lévitique adj s 0.02 0 0.02 0 +lévitique lévitique nom s 0.02 0 0.02 0 +lévrier lévrier nom m s 0.94 2.3 0.31 1.55 +lévriers lévrier nom m p 0.94 2.3 0.63 0.74 +lézard lézard nom m s 6.16 11.42 4.9 7.5 +lézardaient lézarder ver 0.27 1.89 0 0.2 ind:imp:3p; +lézardait lézarder ver 0.27 1.89 0 0.41 ind:imp:3s; +lézarde lézard nom f s 6.16 11.42 0.03 0.88 +lézardent lézarder ver 0.27 1.89 0.23 0 ind:pre:3p; +lézarder lézarder ver 0.27 1.89 0.01 0.34 inf; +lézardes lézard nom f p 6.16 11.42 0.01 1.22 +lézards lézard nom m p 6.16 11.42 1.22 1.82 +lézardé lézarder ver m s 0.27 1.89 0.01 0.07 par:pas; +lézardée lézardé adj f s 0.02 0.88 0.01 0.27 +lézardées lézardé adj f p 0.02 0.88 0 0.27 +lézardés lézarder ver m p 0.27 1.89 0 0.27 par:pas; +lûmes lire ver 281.09 324.8 0.01 0.2 ind:pas:1p; +lût lire ver 281.09 324.8 0 0.47 sub:imp:3s; +m m pro_per s 13.94 0.27 13.94 0.27 +m_as_tu_vu m_as_tu_vu adj s 0.03 0 0.03 0 +ma ma adj_pos 2346.9 1667.16 2346.9 1667.16 +ma_jong ma_jong nom m s 0.02 0.07 0.02 0.07 +maboul maboul adj m s 0.97 1.35 0.61 0.68 +maboule maboul adj f s 0.97 1.35 0.3 0.47 +maboules maboul adj f p 0.97 1.35 0.03 0.14 +mabouls maboul nom m p 0.34 0.95 0.09 0 +mac mac nom m s 7.74 1.82 6.81 1.49 +macabre macabre adj s 2.63 3.51 2.26 2.7 +macabres macabre adj p 2.63 3.51 0.37 0.81 +macache macache adv 0.06 0.74 0.06 0.74 +macadam macadam nom m s 0.23 4.53 0.23 4.53 +macadamia macadamia nom m s 0.11 0 0.11 0 +macaque macaque nom s 1.72 0.41 1.44 0.14 +macaques macaque nom p 1.72 0.41 0.28 0.27 +macarel macarel ono 0 0.07 0 0.07 +macarelle macarelle ono 0 0.14 0 0.14 +macareux macareux nom m 0.01 0.27 0.01 0.27 +macaron macaron nom m s 0.34 1.35 0.12 0.61 +macaroni macaroni nom m s 3.11 2.43 1.37 1.01 +macaronique macaronique adj m s 0 0.14 0 0.14 +macaronis macaroni nom m p 3.11 2.43 1.74 1.42 +macarons macaron nom m p 0.34 1.35 0.22 0.74 +macassar macassar nom m s 0 0.14 0 0.14 +maccarthysme maccarthysme nom m s 0.05 0 0.05 0 +macchab macchab nom m s 0.09 0.74 0.07 0.47 +macchabs macchab nom m p 0.09 0.74 0.02 0.27 +macchabée macchabée nom m s 2.63 1.96 1.86 0.95 +macchabées macchabée nom m p 2.63 1.96 0.77 1.01 +macfarlane macfarlane nom m s 0.34 0.07 0.34 0.07 +mach mach nom m 0.07 0.07 0.07 0.07 +machaon machaon nom m s 0.01 0 0.01 0 +machette machette nom f s 2.64 1.35 1.88 1.22 +machettes machette nom f p 2.64 1.35 0.77 0.14 +machiavélique machiavélique adj s 0.57 0.54 0.5 0.54 +machiavéliques machiavélique adj p 0.57 0.54 0.07 0 +machiavélisme machiavélisme nom m s 0.01 0.47 0.01 0.41 +machiavélismes machiavélisme nom m p 0.01 0.47 0 0.07 +machin machin nom m s 14.6 14.32 12.34 10.07 +machina machiner ver 0.07 0.88 0.03 0.07 ind:pas:3s; +machinaient machiner ver 0.07 0.88 0 0.07 ind:imp:3p; +machinal machinal adj m s 0.2 6.01 0.16 4.26 +machinale machinal adj f s 0.2 6.01 0.02 0.74 +machinalement machinalement adv 0.39 22.77 0.39 22.77 +machinales machinal adj f p 0.2 6.01 0.01 0.41 +machination machination nom f s 1.51 2.16 1.14 1.55 +machinations machination nom f p 1.51 2.16 0.37 0.61 +machinaux machinal adj m p 0.2 6.01 0.01 0.61 +machinchouette machinchouette nom s 0 0.14 0 0.14 +machine machine nom f s 67.72 85 44.94 58.99 +machine_outil machine_outil nom f s 0.11 0.47 0 0.07 +machiner machiner ver 0.07 0.88 0.02 0.14 inf; +machinerie machinerie nom f s 0.23 2.97 0.18 2.77 +machineries machinerie nom f p 0.23 2.97 0.05 0.2 +machines machine nom f p 67.72 85 22.79 26.01 +machine_outil machine_outil nom f p 0.11 0.47 0.11 0.41 +machinette machinette nom f s 0.01 0.07 0.01 0.07 +machinique machinique adj f s 0 0.07 0 0.07 +machinisme machinisme nom m s 0 0.74 0 0.74 +machiniste machiniste nom s 1.51 1.15 1.3 0.61 +machinistes machiniste nom p 1.51 1.15 0.2 0.54 +machino machino nom m s 0.02 0.07 0.01 0 +machinos machino nom m p 0.02 0.07 0.01 0.07 +machins machin nom m p 14.6 14.32 2.26 4.26 +machiné machiner ver m s 0.07 0.88 0.02 0.27 par:pas; +machinée machiner ver f s 0.07 0.88 0 0.14 par:pas; +machinées machiner ver f p 0.07 0.88 0 0.14 par:pas; +machinés machiner ver m p 0.07 0.88 0 0.07 par:pas; +machisme machisme nom m s 0.36 0.2 0.36 0.2 +machiste machiste adj s 0.41 0.41 0.38 0.34 +machistes machiste adj p 0.41 0.41 0.02 0.07 +machmètre machmètre nom m s 0.02 0 0.02 0 +macho macho nom m s 3.19 0.74 2.34 0.54 +machos macho nom m p 3.19 0.74 0.84 0.2 +macintosh macintosh nom m s 0.26 0.07 0.26 0.07 +macis macis nom m 0.01 0 0.01 0 +mackintosh mackintosh nom m s 0 0.27 0 0.27 +macoute macoute adj m s 0.14 0.07 0.03 0 +macoutes macoute adj m p 0.14 0.07 0.11 0.07 +macramé macramé nom m s 0.14 0.68 0.14 0.68 +macres macre nom f p 0 0.27 0 0.27 +macreuse macreuse nom f s 0.02 0.07 0.02 0 +macreuses macreuse nom f p 0.02 0.07 0 0.07 +macro macro nom s 0.2 0 0.2 0 +macrobiotique macrobiotique adj s 0.16 0.2 0.16 0.2 +macroclimat macroclimat nom m s 0 0.07 0 0.07 +macrocosme macrocosme nom m s 0 0.14 0 0.14 +macrolide macrolide nom m s 0.01 0 0.01 0 +macrophage macrophage nom m s 0.01 0 0.01 0 +macroscopique macroscopique adj m s 0 0.07 0 0.07 +macroéconomie macroéconomie nom f s 0.02 0 0.02 0 +macs mac nom m p 7.74 1.82 0.93 0.34 +macula macula nom f s 0.01 0 0.01 0 +maculage maculage nom m s 0 0.07 0 0.07 +maculaient maculer ver 0.59 7.7 0 0.2 ind:imp:3p; +maculait maculer ver 0.59 7.7 0 0.2 ind:imp:3s; +maculant maculer ver 0.59 7.7 0.01 0.27 par:pre; +maculation maculation nom f s 0 0.07 0 0.07 +maculature maculature nom f s 0 0.07 0 0.07 +macule maculer ver 0.59 7.7 0.1 0.14 ind:pre:3s; +maculent maculer ver 0.59 7.7 0.01 0.14 ind:pre:3p; +maculer maculer ver 0.59 7.7 0.02 0.27 inf; +macules macule nom f p 0 0.2 0 0.14 +maculèrent maculer ver 0.59 7.7 0 0.07 ind:pas:3p; +maculé maculer ver m s 0.59 7.7 0.28 1.96 par:pas; +maculée maculer ver f s 0.59 7.7 0.06 1.08 par:pas; +maculées maculer ver f p 0.59 7.7 0.04 1.49 par:pas; +maculés maculer ver m p 0.59 7.7 0.08 1.82 par:pas; +macumba macumba nom f s 1.2 0 1.2 0 +macère macérer ver 0.32 1.82 0.03 0.07 imp:pre:2s;ind:pre:3s; +macèrent macérer ver 0.32 1.82 0 0.14 ind:pre:3p; +macédoine macédoine nom f s 0.14 0.54 0.14 0.41 +macédoines macédoine nom f p 0.14 0.54 0 0.14 +macédonien macédonien nom m s 0.23 0.2 0.23 0.2 +macédonienne macédonien adj f s 0.19 0.14 0.15 0 +macédoniennes macédonien adj f p 0.19 0.14 0.01 0 +macérai macérer ver 0.32 1.82 0 0.07 ind:pas:1s; +macéraient macérer ver 0.32 1.82 0 0.07 ind:imp:3p; +macérait macérer ver 0.32 1.82 0 0.07 ind:imp:3s; +macération macération nom f s 0.04 0.74 0.04 0.47 +macérations macération nom f p 0.04 0.74 0 0.27 +macérer macérer ver 0.32 1.82 0.23 0.54 inf; +macéré macérer ver m s 0.32 1.82 0.04 0.41 par:pas; +macérée macérer ver f s 0.32 1.82 0 0.41 par:pas; +macérés macérer ver m p 0.32 1.82 0.02 0.07 par:pas; +madame madame nom_sup f 307.36 203.45 249.32 198.72 +madapolam madapolam nom m s 0 0.2 0 0.2 +made_in made_in adv 1.06 0.88 1.06 0.88 +madeleine madeleine nom f s 0.98 1.89 0.37 0.95 +madeleines madeleine nom f p 0.98 1.89 0.61 0.95 +mademoiselle mademoiselle nom f s 73.98 62.36 73.98 62.3 +mademoiselles mademoiselle nom f p 73.98 62.36 0 0.07 +madone madone nom f s 5.25 5.14 4.9 4.39 +madones madone nom f p 5.25 5.14 0.35 0.74 +madrague madrague nom f s 0.02 0 0.02 0 +madras madras nom m 0.03 1.49 0.03 1.49 +madre madre nom m s 0.62 0 0.62 0 +madre_de_dios madre_de_dios nom s 0 0.07 0 0.07 +madrier madrier nom m s 0.14 3.24 0 0.61 +madriers madrier nom m p 0.14 3.24 0.14 2.64 +madrigal madrigal nom m s 0.14 1.28 0.12 0.68 +madrigaux madrigal nom m p 0.14 1.28 0.03 0.61 +madrilène madrilène adj s 0.3 0.61 0.3 0.47 +madrilènes madrilène nom p 0.37 0.27 0.1 0.2 +madré madré adj m s 0 0.27 0 0.2 +madrée madré adj f s 0 0.27 0 0.07 +madrépore madrépore nom m s 0 0.27 0 0.14 +madrépores madrépore nom m p 0 0.27 0 0.14 +madrés madré nom m p 0 0.07 0 0.07 +madère madère nom m s 0.11 0.68 0.11 0.68 +maelstrom maelstrom nom m s 0.14 0.07 0.14 0.07 +maelström maelström nom m s 0 0.41 0 0.41 +maestria maestria nom f s 0.02 0.41 0.02 0.41 +maestro maestro nom m s 5.96 0.47 5.96 0.47 +maffia maffia nom f s 0 0.54 0 0.54 +maffieux maffieux nom m 0.01 0 0.01 0 +maffiosi maffioso nom m p 0.01 0 0.01 0 +mafflu mafflu adj m s 0 0.41 0 0.27 +mafflue mafflu adj f s 0 0.41 0 0.07 +mafflus mafflu adj m p 0 0.41 0 0.07 +mafia mafia nom f s 11.56 2.97 11.34 2.91 +mafias mafia nom f p 11.56 2.97 0.23 0.07 +mafieuse mafieux adj f s 1.18 0.2 0.34 0.14 +mafieuses mafieux adj f p 1.18 0.2 0.25 0 +mafieux mafieux nom m 0.94 0 0.94 0 +mafiosi mafioso nom m p 0.73 0.14 0.2 0 +mafioso mafioso nom m s 0.73 0.14 0.54 0.14 +maganer maganer ver 0.03 0 0.03 0 inf; +magasin magasin nom m s 60.62 65.54 51.97 45.61 +magasinage magasinage nom m s 0.03 0 0.03 0 +magasine magasiner ver 0.83 0 0.37 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +magasiner magasiner ver 0.83 0 0.27 0 inf; +magasines magasiner ver 0.83 0 0.2 0 ind:pre:2s; +magasinier magasinier nom m s 0.55 1.15 0.53 0.68 +magasiniers magasinier nom m p 0.55 1.15 0.01 0.47 +magasinière magasinier nom f s 0.55 1.15 0.01 0 +magasins magasin nom m p 60.62 65.54 8.65 19.93 +magazine magazine nom m s 21.42 16.15 14.03 7.03 +magazines magazine nom m p 21.42 16.15 7.39 9.12 +magdalénien magdalénien adj m s 0.14 0.2 0 0.07 +magdaléniennes magdalénien adj f p 0.14 0.2 0.14 0.14 +mage mage nom m s 1.57 2.57 0.53 0.95 +magenta magenta adj p 0.07 0 0.07 0 +mages mage nom m p 1.57 2.57 1.04 1.62 +maghrébin maghrébin adj m s 0.14 0.54 0.14 0.27 +maghrébine maghrébin nom f s 0.81 0.95 0 0.14 +maghrébines maghrébin nom f p 0.81 0.95 0 0.41 +maghrébins maghrébin nom m p 0.81 0.95 0.67 0.34 +maghzen maghzen nom m s 0 0.07 0 0.07 +magicien magicien nom m s 13.76 4.05 12.07 2.77 +magicienne magicien nom f s 13.76 4.05 0.53 0.61 +magiciens magicien nom m p 13.76 4.05 1.17 0.68 +magico magico adv 0.03 0 0.03 0 +magie magie nom f s 25.66 15.2 25.58 15.14 +magies magie nom f p 25.66 15.2 0.07 0.07 +magique magique adj s 26.93 25.88 21.84 19.8 +magiquement magiquement adv 0.14 1.35 0.14 1.35 +magiques magique adj p 26.93 25.88 5.09 6.08 +magister magister nom m s 0.1 1.08 0.1 0.95 +magisters magister nom m p 0.1 1.08 0 0.14 +magistral magistral adj m s 1.69 3.72 1.34 2.09 +magistrale magistral adj f s 1.69 3.72 0.33 1.22 +magistralement magistralement adv 0.07 0.54 0.07 0.54 +magistrales magistral adj f p 1.69 3.72 0.01 0.27 +magistrat magistrat nom m s 3.28 6.01 2.71 2.64 +magistrate magistrat nom f s 3.28 6.01 0.16 0 +magistrats magistrat nom m p 3.28 6.01 0.41 3.38 +magistrature magistrature nom f s 1.12 0.95 1.12 0.88 +magistratures magistrature nom f p 1.12 0.95 0 0.07 +magistraux magistral adj m p 1.69 3.72 0.01 0.14 +magistère magistère nom m s 0 0.07 0 0.07 +magma magma nom m s 0.33 3.45 0.33 3.38 +magmas magma nom m p 0.33 3.45 0 0.07 +magmatique magmatique adj f s 0.04 0 0.03 0 +magmatiques magmatique adj p 0.04 0 0.01 0 +magna magner ver 6.36 2.23 0.22 0 ind:pas:3s; +magnait magner ver 6.36 2.23 0 0.07 ind:imp:3s; +magnaneries magnanerie nom f p 0 0.14 0 0.14 +magnanime magnanime adj s 1.09 2.09 1.03 1.55 +magnanimes magnanime adj p 1.09 2.09 0.06 0.54 +magnanimité magnanimité nom f s 0.13 0.68 0.13 0.68 +magnans magnan nom m p 0 0.07 0 0.07 +magnat magnat nom m s 0.96 1.42 0.83 1.28 +magnats magnat nom m p 0.96 1.42 0.13 0.14 +magne magner ver 6.36 2.23 2.38 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +magnent magner ver 6.36 2.23 0.05 0 ind:pre:3p; +magner magner ver 6.36 2.23 0.2 0.41 inf; +magnes magner ver 6.36 2.23 0.11 0.47 ind:pre:2s;sub:pre:2s; +magnez magner ver 6.36 2.23 3.34 0 imp:pre:2p;ind:pre:2p; +magnifiaient magnifier ver 0.56 2.43 0 0.07 ind:imp:3p; +magnifiais magnifier ver 0.56 2.43 0 0.07 ind:imp:1s; +magnifiait magnifier ver 0.56 2.43 0.1 0.34 ind:imp:3s; +magnifiant magnifier ver 0.56 2.43 0 0.2 par:pre; +magnificat magnificat nom m 0 0.54 0 0.54 +magnificence magnificence nom f s 0.27 1.96 0.27 1.82 +magnificences magnificence nom f p 0.27 1.96 0 0.14 +magnifie magnifier ver 0.56 2.43 0.03 0.2 imp:pre:2s;ind:pre:3s; +magnifient magnifier ver 0.56 2.43 0 0.14 ind:pre:3p; +magnifier magnifier ver 0.56 2.43 0.15 0.54 inf; +magnifiez magnifier ver 0.56 2.43 0 0.14 ind:pre:2p; +magnifique magnifique adj s 88.22 27.7 78.72 22.91 +magnifiquement magnifiquement adv 1.43 2.77 1.43 2.77 +magnifiques magnifique adj p 88.22 27.7 9.51 4.8 +magnifié magnifier ver m s 0.56 2.43 0 0.2 par:pas; +magnifiée magnifier ver f s 0.56 2.43 0.29 0.34 par:pas; +magnifiées magnifier ver f p 0.56 2.43 0 0.07 par:pas; +magnifiés magnifier ver m p 0.56 2.43 0 0.14 par:pas; +magnitude magnitude nom f s 0.25 0 0.25 0 +magnolia magnolia nom m s 0.14 3.04 0.1 1.49 +magnolias magnolia nom m p 0.14 3.04 0.05 1.55 +magnons magner ver 6.36 2.23 0.04 0.07 imp:pre:1p; +magnum magnum nom m s 3.69 1.76 3.62 1.55 +magnums magnum nom m p 3.69 1.76 0.07 0.2 +magné magner ver m s 6.36 2.23 0.01 0 par:pas; +magnésie magnésie nom f s 0.07 0.14 0.07 0.14 +magnésium magnésium nom m s 0.75 1.08 0.75 1.08 +magnétique magnétique adj s 5.11 3.38 3.74 2.64 +magnétiquement magnétiquement adv 0.13 0 0.13 0 +magnétiques magnétique adj p 5.11 3.38 1.37 0.74 +magnétisait magnétiser ver 0.14 0.41 0.01 0.07 ind:imp:3s; +magnétise magnétiser ver 0.14 0.41 0 0.07 ind:pre:3s; +magnétiseur magnétiseur nom m s 0.01 0.07 0.01 0 +magnétiseuses magnétiseur nom f p 0.01 0.07 0 0.07 +magnétisme magnétisme nom m s 1.41 0.68 1.41 0.61 +magnétismes magnétisme nom m p 1.41 0.68 0 0.07 +magnétisé magnétiser ver m s 0.14 0.41 0.04 0.07 par:pas; +magnétisée magnétiser ver f s 0.14 0.41 0.03 0.07 par:pas; +magnétisées magnétiser ver f p 0.14 0.41 0.04 0 par:pas; +magnétisés magnétiser ver m p 0.14 0.41 0.03 0.14 par:pas; +magnétite magnétite nom f s 0.07 0 0.07 0 +magnéto magnéto nom s 2.89 1.62 2.78 1.35 +magnétomètre magnétomètre nom m s 0.04 0 0.04 0 +magnétophone magnétophone nom m s 2.7 3.51 2.27 3.24 +magnétophones magnétophone nom m p 2.7 3.51 0.43 0.27 +magnétos magnéto nom p 2.89 1.62 0.11 0.27 +magnétoscope magnétoscope nom m s 2.12 0.81 1.98 0.34 +magnétoscopes magnétoscope nom m p 2.12 0.81 0.14 0.47 +magnétron magnétron nom m s 0.01 0 0.01 0 +magot magot nom m s 2.24 4.39 2.24 3.51 +magots magot nom m p 2.24 4.39 0 0.88 +magouillais magouiller ver 0.69 0.41 0.01 0.14 ind:imp:1s;ind:imp:2s; +magouillait magouiller ver 0.69 0.41 0.03 0 ind:imp:3s; +magouillant magouiller ver 0.69 0.41 0.03 0 par:pre; +magouille magouille nom f s 2.73 1.35 1.03 0.68 +magouiller magouiller ver 0.69 0.41 0.14 0.14 inf; +magouilles magouille nom f p 2.73 1.35 1.69 0.68 +magouilleur magouilleur nom m s 0.43 0.2 0.29 0 +magouilleurs magouilleur nom m p 0.43 0.2 0.14 0.2 +magouillez magouiller ver 0.69 0.41 0.06 0.07 ind:pre:2p; +magouillé magouiller ver m s 0.69 0.41 0.42 0.07 par:pas; +magret magret nom m s 0.01 0 0.01 0 +magyar magyar adj m s 0.11 0.14 0.1 0 +magyare magyar adj f s 0.11 0.14 0.01 0 +magyares magyar adj f p 0.11 0.14 0 0.07 +magyars magyar nom m p 0.1 0 0.1 0 +mah_jong mah_jong nom m s 1.54 0.2 1.54 0.2 +maharadja maharadja nom m s 0.14 0 0.13 0 +maharadjah maharadjah nom m s 1.47 0.68 1.47 0.47 +maharadjahs maharadjah nom m p 1.47 0.68 0 0.2 +maharadjas maharadja nom m p 0.14 0 0.01 0 +maharaja maharaja nom m s 0.02 0.07 0.02 0 +maharajah maharajah nom m s 0.51 0.2 0.48 0.07 +maharajahs maharajah nom m p 0.51 0.2 0.02 0.14 +maharajas maharaja nom m p 0.02 0.07 0 0.07 +maharani maharani nom f s 1.12 0.14 1.12 0.14 +mahatma mahatma nom m s 0.04 0.07 0.04 0 +mahatmas mahatma nom m p 0.04 0.07 0 0.07 +mahométan mahométan nom m s 0.01 0.27 0.01 0.07 +mahométane mahométan adj f s 0.01 0.2 0 0.07 +mahométans mahométan adj m p 0.01 0.2 0.01 0.07 +mahonia mahonia nom m s 0 0.61 0 0.41 +mahonias mahonia nom m p 0 0.61 0 0.2 +mahousse mahousse adj f s 0.03 1.35 0.01 1.08 +mahousses mahousse adj f p 0.03 1.35 0.02 0.27 +mai mai nom s 24.34 45.88 24.34 45.88 +maid maid nom f s 0.13 0.07 0.13 0.07 +maie maie nom f s 0.01 1.22 0 1.08 +maies maie nom f p 0.01 1.22 0.01 0.14 +maigre maigre adj s 12.73 62.7 11.1 41.82 +maigrelet maigrelet nom m s 0.27 0 0.27 0 +maigrelets maigrelet adj m p 0.1 1.01 0.02 0.14 +maigrelette maigrelet adj f s 0.1 1.01 0 0.27 +maigrelettes maigrelet adj f p 0.1 1.01 0.01 0.07 +maigrement maigrement adv 0 0.27 0 0.27 +maigres maigre adj p 12.73 62.7 1.64 20.88 +maigreur maigreur nom f s 0.04 3.99 0.04 3.99 +maigri maigrir ver m s 5.7 8.99 2.81 4.19 par:pas; +maigrichon maigrichon adj m s 1.25 2.3 0.69 0.81 +maigrichonne maigrichon adj f s 1.25 2.3 0.43 0.81 +maigrichonnes maigrichon adj f p 1.25 2.3 0.1 0.41 +maigrichons maigrichon nom m p 0.96 0.61 0.08 0 +maigrie maigrir ver f s 5.7 8.99 0 0.2 par:pas; +maigriot maigriot nom m s 0.01 0.14 0.01 0.14 +maigrir maigrir ver 5.7 8.99 2.1 2.23 inf; +maigris maigrir ver m p 5.7 8.99 0.36 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +maigrissais maigrir ver 5.7 8.99 0 0.27 ind:imp:1s; +maigrissait maigrir ver 5.7 8.99 0.02 0.68 ind:imp:3s; +maigrissant maigrir ver 5.7 8.99 0.01 0.07 par:pre; +maigrisse maigrir ver 5.7 8.99 0.04 0.07 sub:pre:1s;sub:pre:3s; +maigrissent maigrir ver 5.7 8.99 0.03 0.14 ind:pre:3p; +maigrisses maigrir ver 5.7 8.99 0.14 0.14 sub:pre:2s; +maigrissez maigrir ver 5.7 8.99 0.05 0.07 imp:pre:2p;ind:pre:2p; +maigrit maigrir ver 5.7 8.99 0.14 0.61 ind:pre:3s;ind:pas:3s; +mail mail nom m s 3.29 1.62 2.23 1.62 +mail_coach mail_coach nom m s 0 0.14 0 0.14 +mailer mailer ver 0.18 0 0.08 0 inf; +mailing mailing nom m s 0.04 0 0.04 0 +maillait mailler ver 0.02 0.27 0 0.07 ind:imp:3s; +maille maille nom f s 1.09 9.66 0.71 2.7 +maillechort maillechort nom m s 0 0.14 0 0.14 +mailler mailler ver 0.02 0.27 0.02 0 inf; +mailles maille nom f p 1.09 9.66 0.39 6.96 +maillet maillet nom m s 0.46 2.16 0.41 1.69 +maillets maillet nom m p 0.46 2.16 0.05 0.47 +mailloche mailloche nom f s 0 0.47 0 0.47 +maillon maillon nom m s 1.12 3.18 0.94 1.89 +maillons maillon nom m p 1.12 3.18 0.19 1.28 +maillot maillot nom m s 9.88 18.99 8.44 15.27 +maillotin maillotin nom m s 0 0.14 0 0.07 +maillotins maillotin nom m p 0 0.14 0 0.07 +maillots maillot nom m p 9.88 18.99 1.44 3.72 +maillé maillé adj m s 0.01 0.14 0 0.14 +maillés maillé adj m p 0.01 0.14 0.01 0 +mails mail nom m p 3.29 1.62 1.05 0 +mailé mailer ver m s 0.18 0 0.1 0 par:pas; +main main nom s 499.6 1229.39 286.62 788.72 +main_courante main_courante nom f s 0.01 0.07 0.01 0.07 +main_d_oeuvre main_d_oeuvre nom f s 0.89 1.62 0.89 1.62 +main_forte main_forte nom f 0.36 0.41 0.36 0.41 +mainate mainate nom m s 0.03 0.74 0.03 0.74 +maincourantier maincourantier nom m s 0 0.07 0 0.07 +mainlevée mainlevée nom f s 0.01 0 0.01 0 +mainmise mainmise nom f s 0.14 1.42 0.14 1.42 +mains main nom f p 499.6 1229.39 212.97 440.68 +maint maint adj_ind m s 1.27 0.41 1.27 0.41 +mainte mainte adj_ind f s 0.2 1.22 0.2 1.22 +maintenaient maintenir ver 121.32 98.51 0.23 2.09 ind:imp:3p; +maintenais maintenir ver 121.32 98.51 0.27 0.47 ind:imp:1s;ind:imp:2s; +maintenait maintenir ver 121.32 98.51 0.32 7.36 ind:imp:3s; +maintenance maintenance nom f s 3.89 0.14 3.89 0.14 +maintenant maintenant adv_sup 1028.86 496.76 1028.86 496.76 +mainteneur mainteneur nom m s 0 0.14 0 0.07 +mainteneurs mainteneur nom m p 0 0.14 0 0.07 +maintenez maintenir ver 121.32 98.51 4.28 0.34 imp:pre:2p;ind:pre:2p; +mainteniez maintenir ver 121.32 98.51 0.01 0 ind:imp:2p; +maintenions maintenir ver 121.32 98.51 0.04 0.2 ind:imp:1p; +maintenir maintenir ver 121.32 98.51 10.27 21.76 inf; +maintenons maintenir ver 121.32 98.51 0.58 0.34 imp:pre:1p;ind:pre:1p; +maintenu maintenir ver m s 121.32 98.51 1.73 3.78 par:pas; +maintenue maintenir ver f s 121.32 98.51 0.95 2.43 par:pas; +maintenues maintenir ver f p 121.32 98.51 0.14 1.35 par:pas; +maintenus maintenir ver m p 121.32 98.51 0.2 2.23 par:pas; +maintes maintes adj_ind f p 2.36 9.86 2.36 9.86 +maintien maintien nom m s 2.13 10.14 1.87 10.14 +maintiendra maintenir ver 121.32 98.51 0.25 0.34 ind:fut:3s; +maintiendrai maintenir ver 121.32 98.51 0.19 0.14 ind:fut:1s; +maintiendraient maintenir ver 121.32 98.51 0.01 0.14 cnd:pre:3p; +maintiendrait maintenir ver 121.32 98.51 0.02 0.2 cnd:pre:3s; +maintiendras maintenir ver 121.32 98.51 0.04 0.07 ind:fut:2s; +maintiendriez maintenir ver 121.32 98.51 0 0.07 cnd:pre:2p; +maintiendrons maintenir ver 121.32 98.51 0.25 0.07 ind:fut:1p; +maintiendront maintenir ver 121.32 98.51 0.08 0.14 ind:fut:3p; +maintienne maintenir ver 121.32 98.51 0.41 0.41 sub:pre:1s;sub:pre:3s; +maintiennent maintenir ver 121.32 98.51 0.44 1.28 ind:pre:3p; +maintiennes maintenir ver 121.32 98.51 0.05 0 sub:pre:2s; +maintiens maintenir ver 121.32 98.51 2.17 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s; +maintient maintenir ver 121.32 98.51 2.63 4.39 ind:pre:3s; +maintinrent maintenir ver 121.32 98.51 0 0.34 ind:pas:3p; +maintins maintenir ver 121.32 98.51 0.01 0.34 ind:pas:1s; +maintint maintenir ver 121.32 98.51 0.14 2.03 ind:pas:3s; +maints maints adj_ind m p 0.34 4.39 0.34 4.39 +maintînt maintenir ver 121.32 98.51 0 0.07 sub:imp:3s; +maire maire nom m s 28.17 13.85 27.91 13.11 +maires maire nom m p 28.17 13.85 0.27 0.61 +mairesse maire nom f s 28.17 13.85 0 0.14 +mairie mairie nom f s 13.55 15.95 13.48 15 +mairies mairie nom f p 13.55 15.95 0.07 0.95 +mais mais con 5179.05 4463.72 5179.05 4463.72 +maison maison nom s 605.75 575.34 570.3 461.55 +maison_mère maison_mère nom f s 0.12 0.14 0.12 0.14 +maisonnette maisonnette nom f s 0.57 7.97 0.56 5.68 +maisonnettes maisonnette nom f p 0.57 7.97 0.02 2.3 +maisonnée maisonnée nom f s 0.33 1.82 0.33 1.76 +maisonnées maisonnée nom f p 0.33 1.82 0 0.07 +maisons maison nom f p 605.75 575.34 35.44 113.78 +maja maja nom f s 0.54 0.14 0.54 0.14 +majestueuse majestueux adj f s 1.79 11.08 0.53 4.8 +majestueusement majestueusement adv 0.06 1.22 0.06 1.22 +majestueuses majestueux adj f p 1.79 11.08 0.17 0.81 +majestueux majestueux adj m 1.79 11.08 1.09 5.47 +majesté majesté nom f s 43.43 22.57 42.84 22.3 +majestés majesté nom f p 43.43 22.57 0.58 0.27 +majeur majeur adj m s 10.45 11.55 4.29 3.85 +majeure majeur adj f s 10.45 11.55 4.81 5.2 +majeures majeur adj f p 10.45 11.55 0.55 1.15 +majeurs majeur adj m p 10.45 11.55 0.81 1.35 +majo majo adj m s 0 0.14 0 0.14 +majolique majolique nom f s 0.01 0.14 0.01 0.14 +major major nom s 16.95 8.38 16.45 8.04 +major_général major_général nom s 0.02 0.34 0.02 0.34 +majora majorer ver 0.05 0.34 0 0.07 ind:pas:3s; +majoral majoral nom m s 0 0.07 0 0.07 +majorat majorat nom m s 0 0.2 0 0.2 +majoration majoration nom f s 0.03 0.27 0.03 0.27 +majordome majordome nom m s 2.87 1.42 2.66 1.28 +majordomes majordome nom m p 2.87 1.42 0.2 0.14 +majore majorer ver 0.05 0.34 0 0.14 ind:pre:1s;ind:pre:3s; +majorer majorer ver 0.05 0.34 0.04 0.14 inf; +majorette majorette nom f s 1.11 0.61 0.57 0.27 +majorettes majorette nom f p 1.11 0.61 0.54 0.34 +majoritaire majoritaire adj s 1.04 0.61 0.52 0.54 +majoritairement majoritairement adv 0.12 0 0.12 0 +majoritaires majoritaire adj f p 1.04 0.61 0.52 0.07 +majorité majorité nom f s 11.43 12.57 11.41 12.36 +majorités majorité nom f p 11.43 12.57 0.01 0.2 +majors major nom p 16.95 8.38 0.49 0.34 +majorée majorer ver f s 0.05 0.34 0.01 0 par:pas; +majuscule majuscule adj s 0.8 1.69 0.76 0.88 +majuscules majuscule nom f p 0.85 2.84 0.76 2.03 +maki maki nom m s 0.12 0 0.12 0 +mal mal adv_sup 453.95 349.46 453.95 349.46 +mal_aimé mal_aimé nom m s 0.21 0.07 0.03 0 +mal_aimé mal_aimé nom f s 0.21 0.07 0.01 0.07 +mal_aimé mal_aimé nom m p 0.21 0.07 0.17 0 +mal_baisé mal_baisé nom m s 0 0.2 0 0.07 +mal_baisé mal_baisé nom f s 0 0.2 0 0.14 +mal_pensant mal_pensant adj f s 0 0.07 0 0.07 +mal_pensant mal_pensant nom m p 0.14 0.07 0.14 0.07 +mal_être mal_être nom m s 0.34 0.2 0.34 0.2 +malabar malabar adj m s 1.3 0 1.27 0 +malabars malabar nom m p 1.52 1.28 0.46 0.68 +malachite malachite nom f s 0.01 0.27 0.01 0.27 +malade malade adj s 158.27 73.92 147.5 66.22 +malades malade nom f p 41.24 43.18 15.57 17.03 +maladie maladie nom f s 66.04 60.68 52.18 49.59 +maladies maladie nom f p 66.04 60.68 13.86 11.08 +maladif maladif adj m s 1.44 5.14 0.86 2.03 +maladifs maladif adj m p 1.44 5.14 0.02 0.14 +maladive maladif adj f s 1.44 5.14 0.53 2.84 +maladivement maladivement adv 0.45 0.2 0.45 0.2 +maladives maladif adj f p 1.44 5.14 0.02 0.14 +maladrerie maladrerie nom f s 0.01 0 0.01 0 +maladresse maladresse nom f s 1.02 9.73 0.97 8.24 +maladresses maladresse nom f p 1.02 9.73 0.05 1.49 +maladroit maladroit adj m s 7.52 18.58 4.57 7.77 +maladroite maladroit adj f s 7.52 18.58 2.29 4.53 +maladroitement maladroitement adv 0.27 9.59 0.27 9.59 +maladroites maladroit adj f p 7.52 18.58 0.11 2.16 +maladroits maladroit adj m p 7.52 18.58 0.55 4.12 +malaga malaga nom m s 0.84 1.28 0.84 1.28 +malaire malaire adj s 0.1 0 0.1 0 +malais malais adj m 0.58 0.61 0.58 0.61 +malaise malaise nom s 6.55 25.14 6.34 23.38 +malaises malaise nom p 6.55 25.14 0.21 1.76 +malaisien malaisien adj m s 0.06 0 0.04 0 +malaisienne malaisien adj f s 0.06 0 0.02 0 +malaisiens malaisien nom m p 0.06 0 0.02 0 +malaisé malaisé adj m s 0.16 2.36 0.13 1.28 +malaisée malaisé adj f s 0.16 2.36 0.01 0.47 +malaisées malaisé adj f p 0.16 2.36 0.01 0.2 +malaisément malaisément adv 0 0.95 0 0.95 +malaisés malaisé adj m p 0.16 2.36 0.01 0.41 +malandrin malandrin nom m s 0.32 0.61 0.04 0.14 +malandrins malandrin nom m p 0.32 0.61 0.28 0.47 +malappris malappris nom m 0.17 0.2 0.16 0.2 +malapprise malappris nom f s 0.17 0.2 0.01 0 +malard malard nom m s 0.01 0.74 0 0.68 +malards malard nom m p 0.01 0.74 0.01 0.07 +malaria malaria nom f s 1.57 0.54 1.57 0.47 +malarias malaria nom f p 1.57 0.54 0 0.07 +malaventures malaventure nom f p 0 0.07 0 0.07 +malavisé malavisé adj m s 0.2 0.07 0.17 0.07 +malavisée malavisé adj f s 0.2 0.07 0.04 0 +malaxa malaxer ver 0.76 1.89 0 0.07 ind:pas:3s; +malaxaient malaxer ver 0.76 1.89 0 0.14 ind:imp:3p; +malaxait malaxer ver 0.76 1.89 0 0.2 ind:imp:3s; +malaxant malaxer ver 0.76 1.89 0 0.2 par:pre; +malaxe malaxer ver 0.76 1.89 0.28 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +malaxer malaxer ver 0.76 1.89 0.45 0.34 inf; +malaxera malaxer ver 0.76 1.89 0 0.07 ind:fut:3s; +malaxeur malaxeur nom m s 0.04 0 0.04 0 +malaxez malaxer ver 0.76 1.89 0 0.07 imp:pre:2p; +malaxé malaxer ver m s 0.76 1.89 0.02 0.2 par:pas; +malaxée malaxer ver f s 0.76 1.89 0 0.2 par:pas; +malaxées malaxer ver f p 0.76 1.89 0 0.07 par:pas; +malaxés malaxer ver m p 0.76 1.89 0 0.07 par:pas; +malchance malchance nom f s 5.68 4.8 5.68 4.53 +malchances malchance nom f p 5.68 4.8 0 0.27 +malchanceuse malchanceux adj f s 0.94 1.42 0.27 0.27 +malchanceuses malchanceux adj f p 0.94 1.42 0.04 0.07 +malchanceux malchanceux nom m 0.8 0.81 0.79 0.81 +malcommode malcommode adj m s 0.04 0.54 0.04 0.47 +malcommodes malcommode adj p 0.04 0.54 0 0.07 +malcontent malcontent adj m s 0 0.14 0 0.07 +malcontents malcontent adj m p 0 0.14 0 0.07 +maldonne maldonne nom f s 0.14 1.15 0.14 1.01 +maldonnes maldonne nom f p 0.14 1.15 0 0.14 +male mal adj_sup f s 14.55 11.42 0.44 0.14 +malencontre malencontre nom f s 0 0.68 0 0.41 +malencontres malencontre nom f p 0 0.68 0 0.27 +malencontreuse malencontreux adj f s 0.89 1.08 0.12 0.47 +malencontreusement malencontreusement adv 0.26 0.88 0.26 0.88 +malencontreuses malencontreux adj f p 0.89 1.08 0.14 0.07 +malencontreux malencontreux adj m 0.89 1.08 0.64 0.54 +malentendant malentendant adj m s 0.04 0 0.02 0 +malentendant malentendant nom m s 0.38 0 0.02 0 +malentendante malentendant adj f s 0.04 0 0.02 0 +malentendants malentendant nom m p 0.38 0 0.36 0 +malentendu malentendu nom m s 11.82 10.2 10.7 7.3 +malentendus malentendu nom m p 11.82 10.2 1.13 2.91 +males mal adj_sup f p 14.55 11.42 0.28 0.07 +malfaisance malfaisance nom f s 0.19 1.08 0.17 0.88 +malfaisances malfaisance nom f p 0.19 1.08 0.01 0.2 +malfaisant malfaisant adj m s 2.58 3.38 0.96 1.76 +malfaisante malfaisant adj f s 2.58 3.38 0.46 0.61 +malfaisantes malfaisant adj f p 2.58 3.38 0.19 0.34 +malfaisants malfaisant adj m p 2.58 3.38 0.97 0.68 +malfaiteur malfaiteur nom m s 2.93 3.24 1.18 1.82 +malfaiteurs malfaiteur nom m p 2.93 3.24 1.75 1.42 +malfamé malfamé adj m s 0.13 0.27 0.05 0.07 +malfamée malfamé adj f s 0.13 0.27 0.05 0.07 +malfamés malfamé adj m p 0.13 0.27 0.02 0.14 +malfaçon malfaçon nom f s 0.08 0.34 0.04 0.27 +malfaçons malfaçon nom f p 0.08 0.34 0.04 0.07 +malformation malformation nom f s 0.5 0.54 0.5 0.54 +malformé malformé adj m s 0.01 0 0.01 0 +malfrat malfrat nom m s 1.53 4.73 0.73 1.96 +malfrats malfrat nom m p 1.53 4.73 0.79 2.77 +malgache malgache adj s 0 0.61 0 0.34 +malgaches malgache nom p 0.02 0.27 0.02 0.27 +malgracieuse malgracieux adj f s 0.01 0.41 0 0.07 +malgracieux malgracieux adj m 0.01 0.41 0.01 0.34 +malgré malgré pre 46.5 191.55 46.5 191.55 +malhabile malhabile adj s 0.14 3.24 0.13 2.23 +malhabilement malhabilement adv 0 0.07 0 0.07 +malhabiles malhabile adj p 0.14 3.24 0.01 1.01 +malherbe malherbe nom f s 0 0.07 0 0.07 +malheur malheur nom m s 56.89 92.64 49.16 72.84 +malheureuse malheureux adj f s 37.96 58.85 12.48 16.08 +malheureusement malheureusement adv 35.35 21.08 35.35 21.08 +malheureuses malheureux adj f p 37.96 58.85 0.93 2.5 +malheureux malheureux adj m 37.96 58.85 24.55 40.27 +malheurs malheur nom m p 56.89 92.64 7.72 19.8 +malhonnête malhonnête adj s 4.3 1.82 3.34 0.95 +malhonnêtement malhonnêtement adv 0.22 0.27 0.22 0.27 +malhonnêtes malhonnête adj 4.3 1.82 0.97 0.88 +malhonnêteté malhonnêteté nom f s 0.5 1.89 0.5 1.82 +malhonnêtetés malhonnêteté nom f p 0.5 1.89 0 0.07 +mali mali nom m s 0 0.07 0 0.07 +malice malice nom f s 1.29 10.95 1.22 10.47 +malices malice nom f p 1.29 10.95 0.07 0.47 +malicieuse malicieux adj f s 0.41 4.39 0.17 1.01 +malicieusement malicieusement adv 0.02 0.81 0.02 0.81 +malicieuses malicieux adj f p 0.41 4.39 0.02 0.07 +malicieux malicieux adj m 0.41 4.39 0.21 3.31 +malien malien nom m s 0 0.14 0 0.07 +malienne malien adj f s 0.02 0.14 0.02 0 +maliens malien adj m p 0.02 0.14 0 0.14 +maligne malin adj f s 41.49 20.2 3.91 3.45 +malignement malignement adv 0.01 0.68 0.01 0.68 +malignes malin adj f p 41.49 20.2 0.35 0.68 +malignité malignité nom f s 0.04 2.23 0.04 2.03 +malignités malignité nom f p 0.04 2.23 0 0.2 +malin malin adj m s 41.49 20.2 33.11 13.38 +maline malin nom f s 22.67 8.18 0.42 0.14 +malines malin nom f p 22.67 8.18 0.06 0.2 +malingre malingre adj s 0.04 3.78 0.03 2.97 +malingres malingre adj p 0.04 3.78 0.01 0.81 +malinké malinké nom m s 0 0.07 0 0.07 +malinois malinois nom m 0.01 0.2 0.01 0.2 +malins malin adj m p 41.49 20.2 4.13 2.7 +malintentionné malintentionné adj m s 0.17 0.41 0.02 0.2 +malintentionnée malintentionné adj f s 0.17 0.41 0.1 0.07 +malintentionnés malintentionné adj m p 0.17 0.41 0.04 0.14 +mallarméen mallarméen adj m s 0 0.07 0 0.07 +malle malle nom f s 7.96 15.14 6.53 10.27 +malles malle nom f p 7.96 15.14 1.43 4.86 +mallette mallette nom f s 9.3 6.62 8.97 5.88 +mallettes mallette nom f p 9.3 6.62 0.33 0.74 +mallophages mallophage nom m p 0 0.07 0 0.07 +malléabilité malléabilité nom f s 0.03 0.14 0.03 0.14 +malléable malléable adj s 0.31 1.42 0.25 1.08 +malléables malléable adj p 0.31 1.42 0.06 0.34 +malléolaire malléolaire adj s 0.03 0 0.03 0 +malléole malléole nom f s 0.05 0 0.05 0 +malm malm nom m s 0.01 0 0.01 0 +malmenage malmenage nom m s 0.01 0 0.01 0 +malmenaient malmener ver 2.08 3.72 0 0.2 ind:imp:3p; +malmenais malmener ver 2.08 3.72 0.01 0 ind:imp:1s; +malmenait malmener ver 2.08 3.72 0.06 0.47 ind:imp:3s; +malmenant malmener ver 2.08 3.72 0.04 0.34 par:pre; +malmener malmener ver 2.08 3.72 0.63 0.74 inf; +malmenez malmener ver 2.08 3.72 0.13 0 imp:pre:2p;ind:pre:2p; +malmené malmener ver m s 2.08 3.72 0.5 0.61 par:pas; +malmenée malmener ver f s 2.08 3.72 0.25 0.27 par:pas; +malmenées malmener ver f p 2.08 3.72 0.01 0.34 par:pas; +malmenés malmener ver m p 2.08 3.72 0.22 0.34 par:pas; +malmène malmener ver 2.08 3.72 0.18 0.34 imp:pre:2s;ind:pre:3s; +malmènent malmener ver 2.08 3.72 0.05 0 ind:pre:3p; +malmèneront malmener ver 2.08 3.72 0.01 0.07 ind:fut:3p; +malnutrition malnutrition nom f s 0.58 0.07 0.58 0.07 +malodorant malodorant adj m s 0.8 2.3 0.25 1.01 +malodorante malodorant adj f s 0.8 2.3 0.27 0.61 +malodorantes malodorant adj f p 0.8 2.3 0.14 0.47 +malodorants malodorant adj m p 0.8 2.3 0.13 0.2 +malotru malotru nom m s 0.46 1.01 0.43 0.81 +malotrus malotru nom m p 0.46 1.01 0.03 0.2 +malouin malouin adj m s 0 0.27 0 0.07 +malouine malouin adj f s 0 0.27 0 0.07 +malouines malouin adj f p 0 0.27 0 0.07 +malouins malouin adj m p 0 0.27 0 0.07 +malpoli malpoli adj m s 1.04 0.34 0.89 0.14 +malpolie malpoli adj f s 1.04 0.34 0.13 0.07 +malpolis malpoli adj m p 1.04 0.34 0.02 0.14 +malpropre malpropre nom s 0.69 0.74 0.65 0.54 +malproprement malproprement adv 0 0.07 0 0.07 +malpropres malpropre nom p 0.69 0.74 0.04 0.2 +malpropreté malpropreté nom f s 0 0.14 0 0.14 +malsain malsain adj m s 5.05 9.05 3.85 4.93 +malsaine malsain adj f s 5.05 9.05 0.95 2.36 +malsainement malsainement adv 0 0.07 0 0.07 +malsaines malsain adj f p 5.05 9.05 0.18 1.42 +malsains malsain adj m p 5.05 9.05 0.08 0.34 +malsonnants malsonnant adj m p 0 0.07 0 0.07 +malséance malséance nom f s 0 0.07 0 0.07 +malséant malséant adj m s 0.06 0.61 0.06 0.54 +malséante malséant adj f s 0.06 0.61 0 0.07 +malt malt nom m s 0.68 0.14 0.68 0.14 +malta malter ver 0.23 0 0.14 0 ind:pas:3s; +maltais maltais nom m 0.16 0.34 0.16 0.34 +maltaises maltais adj f p 0.03 0.27 0 0.07 +maltraitaient maltraiter ver 6.31 4.12 0.17 0 ind:imp:3p; +maltraitais maltraiter ver 6.31 4.12 0.04 0.07 ind:imp:1s; +maltraitait maltraiter ver 6.31 4.12 0.21 0.34 ind:imp:3s; +maltraitance maltraitance nom f s 0.66 0 0.61 0 +maltraitances maltraitance nom f p 0.66 0 0.05 0 +maltraitant maltraiter ver 6.31 4.12 0.01 0.07 par:pre; +maltraite maltraiter ver 6.31 4.12 0.65 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maltraitent maltraiter ver 6.31 4.12 0.47 0.07 ind:pre:3p; +maltraiter maltraiter ver 6.31 4.12 0.99 0.54 inf; +maltraitera maltraiter ver 6.31 4.12 0.03 0 ind:fut:3s; +maltraiterez maltraiter ver 6.31 4.12 0.02 0 ind:fut:2p; +maltraitez maltraiter ver 6.31 4.12 0.48 0.07 imp:pre:2p;ind:pre:2p; +maltraitât maltraiter ver 6.31 4.12 0 0.07 sub:imp:3s; +maltraitèrent maltraiter ver 6.31 4.12 0 0.07 ind:pas:3p; +maltraité maltraiter ver m s 6.31 4.12 1.77 0.88 par:pas; +maltraitée maltraiter ver f s 6.31 4.12 1.06 0.54 par:pas; +maltraitées maltraiter ver f p 6.31 4.12 0.02 0.14 par:pas; +maltraités maltraiter ver m p 6.31 4.12 0.4 0.81 par:pas; +malté malter ver m s 0.23 0 0.08 0 par:pas; +maltée malter ver f s 0.23 0 0.01 0 par:pas; +malus malus nom m 0.04 0 0.04 0 +malveillance malveillance nom f s 0.4 3.85 0.39 3.72 +malveillances malveillance nom f p 0.4 3.85 0.01 0.14 +malveillant malveillant adj m s 0.95 2.23 0.44 0.68 +malveillante malveillant adj f s 0.95 2.23 0.28 0.14 +malveillantes malveillant adj f p 0.95 2.23 0.09 0.81 +malveillants malveillant adj m p 0.95 2.23 0.15 0.61 +malvenu malvenu adj m s 0.37 0.34 0.14 0.34 +malvenue malvenu adj f s 0.37 0.34 0.07 0 +malvenus malvenu adj m p 0.37 0.34 0.16 0 +malversation malversation nom f s 0.55 0.54 0.07 0.14 +malversations malversation nom f p 0.55 0.54 0.48 0.41 +malvoisie malvoisie nom m s 0.01 0.07 0.01 0 +malvoisies malvoisie nom m p 0.01 0.07 0 0.07 +malédiction malédiction nom f s 14.17 9.46 13.27 7.57 +malédictions malédiction nom f p 14.17 9.46 0.9 1.89 +maléfice maléfice nom m s 0.89 1.69 0.56 0.74 +maléfices maléfice nom m p 0.89 1.69 0.33 0.95 +maléficier maléficier ver 0 0.07 0 0.07 inf; +maléficié maléficié adj m s 0 0.07 0 0.07 +maléfique maléfique adj s 6.16 4.86 4.71 3.51 +maléfiques maléfique adj p 6.16 4.86 1.44 1.35 +mam mam nom f s 0.63 0.95 0.63 0.95 +mam_selle mam_selle nom f s 0.11 0.07 0.11 0.07 +mam_zelle mam_zelle nom f s 0.03 0 0.03 0 +mamaliga mamaliga nom f s 0 0.07 0 0.07 +mamamouchi mamamouchi nom m s 0 0.14 0 0.14 +maman maman nom f s 540.21 144.39 537.44 140.2 +mamans maman nom f p 540.21 144.39 2.76 4.19 +mamba mamba nom m s 0.1 0 0.1 0 +mambo mambo nom m s 1.58 1.62 1.56 1.62 +mambos mambo nom m p 1.58 1.62 0.02 0 +mame mame nom f s 0 0.74 0 0.74 +mamelle mamelle nom f s 0.83 3.72 0.19 1.01 +mamelles mamelle nom f p 0.83 3.72 0.65 2.7 +mamelon mamelon nom m s 1.49 7.16 0.5 3.85 +mamelonnée mamelonné adj f s 0 0.14 0 0.14 +mamelons mamelon nom m p 1.49 7.16 0.99 3.31 +mamelouk mamelouk nom m s 0.01 0.34 0.01 0.14 +mamelouks mamelouk nom m p 0.01 0.34 0 0.2 +mamelu mamelu adj m s 0.01 0.41 0 0.14 +mamelue mamelu adj f s 0.01 0.41 0.01 0.14 +mamelues mamelu adj f p 0.01 0.41 0 0.07 +mameluk mameluk nom m s 0 2.03 0 0.81 +mameluks mameluk nom m p 0 2.03 0 1.22 +mamelus mamelu adj m p 0.01 0.41 0 0.07 +mamie mamie nom f s 18.66 2.3 18.56 2.23 +mamies mamie nom f p 18.66 2.3 0.1 0.07 +mamma mamma nom f s 2.27 0.27 2.27 0.27 +mammaire mammaire adj s 0.58 0.14 0.2 0.07 +mammaires mammaire adj p 0.58 0.14 0.38 0.07 +mammectomie mammectomie nom f s 0.02 0 0.02 0 +mammifère mammifère nom m s 1.27 1.28 0.4 0.47 +mammifères mammifère nom m p 1.27 1.28 0.87 0.81 +mammographie mammographie nom f s 0.15 0 0.15 0 +mammoplastie mammoplastie nom f s 0.01 0 0.01 0 +mammouth mammouth nom m s 1.38 8.18 1.16 7.84 +mammouths mammouth nom m p 1.38 8.18 0.21 0.34 +mammy mammy nom f s 0.41 0.07 0.41 0.07 +mamours mamours nom m p 0.46 0.47 0.46 0.47 +mamy mamy nom f s 0.69 0 0.66 0 +mamys mamy nom f p 0.69 0 0.04 0 +mamzelle mamzelle nom f s 0.1 0.07 0.1 0.07 +man man nom s 19.31 6.82 19.31 6.82 +mana mana nom m s 0.03 0.88 0.03 0.88 +manade manade nom f s 0 0.27 0 0.07 +manades manade nom f p 0 0.27 0 0.2 +manage manager ver 1.55 0.47 0.3 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manageait manager ver 1.55 0.47 0.02 0 ind:imp:3s; +management management nom m s 0.57 0.07 0.57 0.07 +manager manager nom m s 8.08 2.57 7.54 1.89 +managerais manager ver 1.55 0.47 0.01 0 cnd:pre:2s; +managers manager nom m p 8.08 2.57 0.54 0.68 +manageur manageur nom m s 0.01 0 0.01 0 +manant manant nom m s 0.4 1.22 0.24 0.27 +manants manant nom m p 0.4 1.22 0.16 0.95 +manceau manceau adj m s 0 0.07 0 0.07 +mancenillier mancenillier nom m s 0.01 0.14 0.01 0.14 +manche manche nom s 14.25 59.39 10.12 35.41 +mancheron mancheron nom m s 0 0.27 0 0.07 +mancherons mancheron nom m p 0 0.27 0 0.2 +manches manche nom p 14.25 59.39 4.13 23.99 +manchette manchette nom f s 2.34 6.22 1.69 1.76 +manchettes manchette nom f p 2.34 6.22 0.65 4.46 +manchon manchon nom m s 0.09 1.76 0.08 1.35 +manchons manchon nom m p 0.09 1.76 0.01 0.41 +manchot manchot nom m s 1.56 1.89 1.47 1.49 +manchote manchot adj f s 1 1.55 0.07 0.14 +manchotes manchot nom f p 1.56 1.89 0 0.07 +manchots manchot nom m p 1.56 1.89 0.09 0.27 +mandai mander ver 1.26 3.31 0 0.14 ind:pas:1s; +mandaient mander ver 1.26 3.31 0 0.07 ind:imp:3p; +mandait mander ver 1.26 3.31 0 0.27 ind:imp:3s; +mandala mandala nom m s 1.76 0.07 1.76 0 +mandalas mandala nom m p 1.76 0.07 0 0.07 +mandale mandale nom f s 0.03 0.88 0.03 0.54 +mandales mandale nom f p 0.03 0.88 0 0.34 +mandant mandant nom m s 0.1 0.34 0.09 0 +mandants mandant nom m p 0.1 0.34 0.01 0.34 +mandarin mandarin nom m s 0.47 1.82 0.43 1.22 +mandarine mandarine nom f s 1.17 3.11 0.6 2.09 +mandarines mandarine nom f p 1.17 3.11 0.56 1.01 +mandarinier mandarinier nom m s 0 0.34 0 0.07 +mandariniers mandarinier nom m p 0 0.34 0 0.27 +mandarins mandarin nom m p 0.47 1.82 0.04 0.61 +mandas mander ver 1.26 3.31 0.01 0 ind:pas:2s; +mandat mandat nom m s 25.25 14.32 23.45 11.76 +mandat_carte mandat_carte nom m s 0.01 0 0.01 0 +mandat_lettre mandat_lettre nom m s 0 0.07 0 0.07 +mandat_poste mandat_poste nom m s 0.03 0.07 0.03 0.07 +mandataire mandataire nom s 0.37 1.82 0.32 0.74 +mandataires mandataire nom p 0.37 1.82 0.05 1.08 +mandatait mandater ver 1.14 0.95 0 0.14 ind:imp:3s; +mandatant mandater ver 1.14 0.95 0 0.07 par:pre; +mandatement mandatement nom m s 0 0.07 0 0.07 +mandater mandater ver 1.14 0.95 0.02 0 inf; +mandatez mandater ver 1.14 0.95 0.01 0 imp:pre:2p; +mandats mandat nom m p 25.25 14.32 1.8 2.57 +mandaté mandater ver m s 1.14 0.95 0.6 0.47 par:pas; +mandatée mandater ver f s 1.14 0.95 0.07 0 par:pas; +mandatés mandater ver m p 1.14 0.95 0.44 0.27 par:pas; +mandchoue mandchou adj f s 0.03 0.2 0.03 0.2 +mandchous mandchou nom m p 0.02 0.07 0.02 0.07 +mande mander ver 1.26 3.31 0.6 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mandement mandement nom m s 0.03 0.07 0.01 0 +mandements mandement nom m p 0.03 0.07 0.02 0.07 +mander mander ver 1.26 3.31 0.34 1.15 inf; +mandera mander ver 1.26 3.31 0.01 0.14 ind:fut:3s; +manderai mander ver 1.26 3.31 0 0.07 ind:fut:1s; +manderaient mander ver 1.26 3.31 0.01 0 cnd:pre:3p; +manderais mander ver 1.26 3.31 0 0.07 cnd:pre:1s; +mandes mander ver 1.26 3.31 0 0.07 ind:pre:2s; +mandez mander ver 1.26 3.31 0.01 0.2 imp:pre:2p; +mandibulaire mandibulaire adj f s 0.02 0 0.02 0 +mandibule mandibule nom f s 0.55 2.36 0.17 0.07 +mandibules mandibule nom f p 0.55 2.36 0.38 2.3 +mandingue mandingue adj s 0.01 0 0.01 0 +mandingues mandingue nom p 0.3 0 0.3 0 +mandoline mandoline nom f s 0.55 1.15 0.54 0.88 +mandolines mandoline nom f p 0.55 1.15 0.01 0.27 +mandore mandore nom f s 0 1.55 0 1.55 +mandorle mandorle nom f s 0 0.34 0 0.27 +mandorles mandorle nom f p 0 0.34 0 0.07 +mandragore mandragore nom f s 0.47 1.69 0.42 1.01 +mandragores mandragore nom f p 0.47 1.69 0.05 0.68 +mandrill mandrill nom m s 0.01 0 0.01 0 +mandrin mandrin nom m s 0.15 0.41 0.15 0.27 +mandrins mandrin nom m p 0.15 0.41 0 0.14 +manducation manducation nom f s 0 0.07 0 0.07 +mandèrent mander ver 1.26 3.31 0 0.07 ind:pas:3p; +mandé mander ver m s 1.26 3.31 0.28 0.27 par:pas; +mandée mander ver f s 1.26 3.31 0 0.14 par:pas; +manette manette nom f s 1.08 2.64 0.65 0.95 +manettes manette nom f p 1.08 2.64 0.43 1.69 +manga manga nom m s 0.37 0.47 0.04 0.47 +manganite manganite nom m s 0.14 0 0.14 0 +manganèse manganèse nom m s 0.23 0.07 0.23 0.07 +mangas manga nom m p 0.37 0.47 0.32 0 +mange manger ver 467.82 280.61 103.81 31.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mange_disque mange_disque nom m s 0.11 0.07 0.1 0 +mange_disque mange_disque nom m p 0.11 0.07 0.01 0.07 +mange_tout mange_tout nom m 0.01 0.07 0.01 0.07 +mangea manger ver 467.82 280.61 0.66 5.54 ind:pas:3s; +mangeable mangeable adj s 0.72 0.68 0.68 0.54 +mangeables mangeable adj m p 0.72 0.68 0.04 0.14 +mangeai manger ver 467.82 280.61 0.02 1.55 ind:pas:1s; +mangeaient manger ver 467.82 280.61 0.99 7.91 ind:imp:3p; +mangeaille mangeaille nom f s 0.14 1.28 0.14 1.08 +mangeailles mangeaille nom f p 0.14 1.28 0 0.2 +mangeais manger ver 467.82 280.61 2.31 2.91 ind:imp:1s;ind:imp:2s; +mangeait manger ver 467.82 280.61 4.93 20.14 ind:imp:3s; +mangeant manger ver 467.82 280.61 3.13 7.57 par:pre; +mangeas manger ver 467.82 280.61 0.1 0.07 ind:pas:2s; +mangeasse manger ver 467.82 280.61 0 0.07 sub:imp:1s; +mangent manger ver 467.82 280.61 13.77 8.18 ind:pre:3p;sub:pre:3p; +mangeoire mangeoire nom f s 0.46 1.08 0.23 0.95 +mangeoires mangeoire nom f p 0.46 1.08 0.22 0.14 +mangeons manger ver 467.82 280.61 4.05 1.82 imp:pre:1p;ind:pre:1p; +manger manger ver 467.82 280.61 207.63 134.26 inf;; +mangera manger ver 467.82 280.61 4.91 1.35 ind:fut:3s; +mangerai manger ver 467.82 280.61 5.01 1.42 ind:fut:1s; +mangeraient manger ver 467.82 280.61 0.13 0.54 cnd:pre:3p; +mangerais manger ver 467.82 280.61 2.84 1.08 cnd:pre:1s;cnd:pre:2s; +mangerait manger ver 467.82 280.61 1.88 1.96 cnd:pre:3s; +mangeras manger ver 467.82 280.61 2.54 1.49 ind:fut:2s; +mangerez manger ver 467.82 280.61 1.43 0.54 ind:fut:2p; +mangerie mangerie nom f s 0 0.07 0 0.07 +mangeriez manger ver 467.82 280.61 0.32 0.07 cnd:pre:2p; +mangerions manger ver 467.82 280.61 0.03 0.27 cnd:pre:1p; +mangerons manger ver 467.82 280.61 1.49 0.74 ind:fut:1p; +mangeront manger ver 467.82 280.61 1.43 0.81 ind:fut:3p; +manges manger ver 467.82 280.61 20.56 4.46 ind:pre:2s;sub:pre:2s; +mangetout mangetout nom m 0 0.07 0 0.07 +mangeur mangeur nom m s 3.45 3.04 1.49 1.01 +mangeurs mangeur nom m p 3.45 3.04 1.07 1.55 +mangeuse mangeur nom f s 3.45 3.04 0.81 0.27 +mangeuses mangeur nom f p 3.45 3.04 0.08 0.2 +mangez manger ver 467.82 280.61 17.85 3.31 imp:pre:2p;ind:pre:2p; +mangeâmes manger ver 467.82 280.61 0.01 0.47 ind:pas:1p; +mangeât manger ver 467.82 280.61 0 0.34 sub:imp:3s; +mangiez manger ver 467.82 280.61 0.91 0.2 ind:imp:2p; +mangions manger ver 467.82 280.61 0.34 1.89 ind:imp:1p; +mango mango nom s 0.07 0 0.07 0 +mangonneaux mangonneau nom m p 0 0.54 0 0.54 +mangouste mangouste nom f s 0.33 0 0.33 0 +mangrove mangrove nom f s 0.02 0.07 0.01 0.07 +mangroves mangrove nom f p 0.02 0.07 0.01 0 +mangue mangue nom f s 1.44 2.09 0.73 0.74 +mangues mangue nom f p 1.44 2.09 0.71 1.35 +manguier manguier nom m s 0.05 1.42 0.03 0.2 +manguiers manguier nom m p 0.05 1.42 0.02 1.22 +mangèrent manger ver 467.82 280.61 0.33 3.72 ind:pas:3p; +mangé manger ver m s 467.82 280.61 60.43 27.5 par:pas; +mangée manger ver f s 467.82 280.61 1.98 3.04 par:pas; +mangées manger ver f p 467.82 280.61 0.38 1.01 par:pas; +mangés manger ver m p 467.82 280.61 1.66 2.43 par:pas; +manhattan manhattan nom s 0.07 0.14 0.07 0.14 +mania manier ver 5.7 16.22 0.61 0.14 ind:pas:3s; +maniabilité maniabilité nom f s 0.03 0 0.03 0 +maniable maniable adj s 0.51 0.95 0.27 0.88 +maniables maniable adj p 0.51 0.95 0.24 0.07 +maniaco_dépressif maniaco_dépressif adj m s 0.38 0.14 0.17 0 +maniaco_dépressif maniaco_dépressif adj m p 0.38 0.14 0.08 0.14 +maniaco_dépressif maniaco_dépressif adj f s 0.38 0.14 0.13 0 +maniacodépressif maniacodépressif adj m s 0.06 0 0.03 0 +maniacodépressive maniacodépressif adj f s 0.06 0 0.03 0 +maniaient manier ver 5.7 16.22 0 0.74 ind:imp:3p; +maniais manier ver 5.7 16.22 0.02 0.2 ind:imp:1s; +maniait manier ver 5.7 16.22 0.08 2.43 ind:imp:3s; +maniant manier ver 5.7 16.22 0.2 1.49 par:pre; +maniaque maniaque nom s 5.63 4.39 5.11 3.04 +maniaquement maniaquement adv 0 0.27 0 0.27 +maniaquerie maniaquerie nom f s 0 0.34 0 0.27 +maniaqueries maniaquerie nom f p 0 0.34 0 0.07 +maniaques maniaque nom p 5.63 4.39 0.52 1.35 +manichéen manichéen adj m s 0.04 0.27 0.04 0.27 +manichéisme manichéisme nom m s 0 0.61 0 0.61 +manichéiste manichéiste nom s 0 0.07 0 0.07 +manie manie nom f s 6.63 18.38 5.42 13.18 +maniement maniement nom m s 0.5 3.72 0.5 3.58 +maniements maniement nom m p 0.5 3.72 0 0.14 +manient manier ver 5.7 16.22 0.17 0.54 ind:pre:3p; +manier manier ver 5.7 16.22 2.96 7.23 inf; +manierais manier ver 5.7 16.22 0.01 0 cnd:pre:1s; +manieront manier ver 5.7 16.22 0 0.07 ind:fut:3p; +manies manie nom f p 6.63 18.38 1.21 5.2 +manieur manieur nom m s 0.03 0.47 0.03 0.27 +manieurs manieur nom m p 0.03 0.47 0 0.14 +manieuse manieur nom f s 0.03 0.47 0 0.07 +maniez manier ver 5.7 16.22 0.24 0 imp:pre:2p;ind:pre:2p; +manif manif nom f s 4.98 2.16 3.33 1.49 +manifesta manifester ver 10.28 38.04 0.02 3.31 ind:pas:3s; +manifestai manifester ver 10.28 38.04 0 0.14 ind:pas:1s; +manifestaient manifester ver 10.28 38.04 0.22 2.3 ind:imp:3p; +manifestais manifester ver 10.28 38.04 0.04 0.27 ind:imp:1s;ind:imp:2s; +manifestait manifester ver 10.28 38.04 0.52 6.82 ind:imp:3s; +manifestant manifester ver 10.28 38.04 0.21 1.42 par:pre; +manifestante manifestant nom f s 2.06 2.3 0.01 0.07 +manifestantes manifestant nom f p 2.06 2.3 0.01 0.14 +manifestants manifestant nom m p 2.06 2.3 1.96 2.03 +manifestation manifestation nom f s 8.9 17.16 5.96 9.8 +manifestations manifestation nom f p 8.9 17.16 2.94 7.36 +manifeste manifester ver 10.28 38.04 1.77 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manifestement manifestement adv 5.79 6.76 5.79 6.76 +manifestent manifester ver 10.28 38.04 0.92 1.28 ind:pre:3p; +manifester manifester ver 10.28 38.04 3.16 9.8 inf; +manifestera manifester ver 10.28 38.04 0.21 0 ind:fut:3s; +manifesterai manifester ver 10.28 38.04 0.01 0.07 ind:fut:1s; +manifesteraient manifester ver 10.28 38.04 0.14 0 cnd:pre:3p; +manifesterais manifester ver 10.28 38.04 0.02 0 cnd:pre:2s; +manifesterait manifester ver 10.28 38.04 0.02 0.14 cnd:pre:3s; +manifesteront manifester ver 10.28 38.04 0.19 0.07 ind:fut:3p; +manifestes manifeste adj p 1.1 3.45 0.23 0.41 +manifestez manifester ver 10.28 38.04 0.38 0.2 imp:pre:2p;ind:pre:2p; +manifestiez manifester ver 10.28 38.04 0.06 0 ind:imp:2p; +manifestions manifester ver 10.28 38.04 0 0.07 ind:imp:1p; +manifestons manifester ver 10.28 38.04 0.01 0 ind:pre:1p; +manifestât manifester ver 10.28 38.04 0 0.41 sub:imp:3s; +manifestèrent manifester ver 10.28 38.04 0 0.27 ind:pas:3p; +manifesté manifester ver m s 10.28 38.04 1.53 5.14 par:pas; +manifestée manifester ver f s 10.28 38.04 0.57 1.35 par:pas; +manifestées manifester ver f p 10.28 38.04 0.11 0.07 par:pas; +manifestés manifester ver m p 10.28 38.04 0.08 0.41 par:pas; +manifold manifold nom m s 0 0.2 0 0.14 +manifolds manifold nom m p 0 0.2 0 0.07 +manifs manif nom f p 4.98 2.16 1.66 0.68 +manigance manigancer ver 5.03 1.35 0.92 0.34 ind:pre:1s;ind:pre:3s; +manigancent manigancer ver 5.03 1.35 0.41 0.14 ind:pre:3p; +manigancer manigancer ver 5.03 1.35 0.45 0.14 inf; +manigancerait manigancer ver 5.03 1.35 0 0.07 cnd:pre:3s; +manigances manigancer ver 5.03 1.35 0.7 0.07 ind:pre:2s; +manigancez manigancer ver 5.03 1.35 0.56 0.07 ind:pre:2p; +maniganciez manigancer ver 5.03 1.35 0.05 0 ind:imp:2p; +manigancé manigancer ver m s 5.03 1.35 1.59 0.27 par:pas; +manigancée manigancer ver f s 5.03 1.35 0.01 0.14 par:pas; +manigançaient manigancer ver 5.03 1.35 0.04 0 ind:imp:3p; +manigançais manigancer ver 5.03 1.35 0.03 0 ind:imp:1s;ind:imp:2s; +manigançait manigancer ver 5.03 1.35 0.28 0.14 ind:imp:3s; +manilla maniller ver 0.02 0 0.02 0 ind:pas:3s; +manille manille nom f s 0.4 0.95 0.4 0.81 +manilles manille nom f p 0.4 0.95 0 0.14 +manilleurs manilleur nom m p 0 0.07 0 0.07 +manillon manillon nom m s 0.27 0 0.27 0 +manioc manioc nom m s 0.23 0.88 0.23 0.88 +manip manip nom f s 0.09 0.14 0.09 0.07 +manipe manip nom f s 0.09 0.14 0 0.07 +manipula manipuler ver 12.35 6.01 0.14 0.41 ind:pas:3s; +manipulable manipulable adj s 0.14 0.27 0.09 0.14 +manipulables manipulable adj m p 0.14 0.27 0.05 0.14 +manipulaient manipuler ver 12.35 6.01 0.03 0.14 ind:imp:3p; +manipulais manipuler ver 12.35 6.01 0.02 0.07 ind:imp:1s;ind:imp:2s; +manipulait manipuler ver 12.35 6.01 0.31 0.61 ind:imp:3s; +manipulant manipuler ver 12.35 6.01 0.13 0.61 par:pre; +manipulateur manipulateur nom m s 1.47 0.54 0.81 0.41 +manipulateurs manipulateur nom m p 1.47 0.54 0.23 0.14 +manipulation manipulation nom f s 2.63 2.16 2 1.01 +manipulations manipulation nom f p 2.63 2.16 0.63 1.15 +manipulatrice manipulateur nom f s 1.47 0.54 0.4 0 +manipulatrices manipulateur nom f p 1.47 0.54 0.02 0 +manipule manipuler ver 12.35 6.01 2.02 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manipulent manipuler ver 12.35 6.01 0.27 0.2 ind:pre:3p; +manipuler manipuler ver 12.35 6.01 4.36 1.82 inf; +manipulera manipuler ver 12.35 6.01 0.02 0 ind:fut:3s; +manipulerai manipuler ver 12.35 6.01 0.03 0 ind:fut:1s; +manipulerait manipuler ver 12.35 6.01 0.01 0 cnd:pre:3s; +manipuleras manipuler ver 12.35 6.01 0.03 0 ind:fut:2s; +manipules manipuler ver 12.35 6.01 0.28 0 ind:pre:2s; +manipulez manipuler ver 12.35 6.01 0.4 0.07 imp:pre:2p;ind:pre:2p; +manipulons manipuler ver 12.35 6.01 0.03 0.07 ind:pre:1p; +manipulé manipuler ver m s 12.35 6.01 2.4 0.68 par:pas; +manipulée manipuler ver f s 12.35 6.01 1.01 0.14 par:pas; +manipulées manipuler ver f p 12.35 6.01 0.13 0.07 par:pas; +manipulés manipuler ver m p 12.35 6.01 0.74 0.61 par:pas; +manitoba manitoba nom m s 0 0.07 0 0.07 +manitou manitou nom m s 0.51 0.88 0.47 0.74 +manitous manitou nom m p 0.51 0.88 0.04 0.14 +manivelle manivelle nom f s 1.55 31.96 1.54 31.22 +manivelles manivelle nom f p 1.55 31.96 0.01 0.74 +manière manière nom f s 72.31 157.77 55.43 134.66 +manièrent manier ver 5.7 16.22 0 0.07 ind:pas:3p; +manières manière nom f p 72.31 157.77 16.89 23.11 +manié manier ver m s 5.7 16.22 0.33 1.01 par:pas; +maniée manier ver f s 5.7 16.22 0.01 0.27 par:pas; +maniées manier ver f p 5.7 16.22 0 0.14 par:pas; +maniérisme maniérisme nom m s 0.07 0.34 0.05 0.27 +maniérismes maniérisme nom m p 0.07 0.34 0.02 0.07 +maniériste maniériste adj s 0.01 0 0.01 0 +maniéristes maniériste nom p 0 0.07 0 0.07 +maniéré maniéré adj m s 0.16 0.74 0.04 0.2 +maniérée maniéré adj f s 0.16 0.74 0.11 0.07 +maniérées maniéré adj f p 0.16 0.74 0.01 0.2 +maniérés maniéré adj m p 0.16 0.74 0 0.27 +maniés manier ver m p 5.7 16.22 0 0.34 par:pas; +manne manne nom f s 0.65 1.35 0.52 1.22 +mannequin mannequin nom s 12.33 10.68 8.43 6.01 +mannequine mannequiner ver 0 0.07 0 0.07 ind:pre:3s; +mannequins mannequin nom p 12.33 10.68 3.9 4.66 +mannes manne nom f p 0.65 1.35 0.14 0.14 +mannezingue mannezingue nom m s 0 0.2 0 0.2 +mannitol mannitol nom m s 0.19 0 0.19 0 +manoeuvra manoeuvrer ver 1.89 13.78 0 0.88 ind:pas:3s; +manoeuvrabilité manoeuvrabilité nom f s 0.04 0 0.04 0 +manoeuvrable manoeuvrable adj f s 0.04 0.07 0.04 0.07 +manoeuvraient manoeuvrer ver 1.89 13.78 0.14 0.61 ind:imp:3p; +manoeuvrais manoeuvrer ver 1.89 13.78 0.01 0.2 ind:imp:1s; +manoeuvrait manoeuvrer ver 1.89 13.78 0.04 1.89 ind:imp:3s; +manoeuvrant manoeuvrer ver 1.89 13.78 0 1.22 par:pre; +manoeuvre manoeuvre nom s 9.17 26.42 6.71 16.08 +manoeuvrent manoeuvrer ver 1.89 13.78 0 0.54 ind:pre:3p; +manoeuvrer manoeuvrer ver 1.89 13.78 0.85 5.2 inf; +manoeuvres manoeuvre nom p 9.17 26.42 2.46 10.34 +manoeuvrez manoeuvrer ver 1.89 13.78 0.02 0 imp:pre:2p;ind:pre:2p; +manoeuvrier manoeuvrier adj m s 0 0.41 0 0.14 +manoeuvriers manoeuvrier nom m p 0 0.14 0 0.07 +manoeuvrière manoeuvrier adj f s 0 0.41 0 0.14 +manoeuvrières manoeuvrier adj f p 0 0.41 0 0.14 +manoeuvrons manoeuvrer ver 1.89 13.78 0.01 0.07 imp:pre:1p;ind:pre:1p; +manoeuvrèrent manoeuvrer ver 1.89 13.78 0 0.07 ind:pas:3p; +manoeuvré manoeuvrer ver m s 1.89 13.78 0.12 1.15 par:pas; +manoeuvrée manoeuvrer ver f s 1.89 13.78 0.01 0.34 par:pas; +manoeuvrées manoeuvrer ver f p 1.89 13.78 0 0.14 par:pas; +manoeuvrés manoeuvrer ver m p 1.89 13.78 0 0.07 par:pas; +manoir manoir nom m s 6.08 9.59 5.87 9.05 +manoirs manoir nom m p 6.08 9.59 0.21 0.54 +manomètre manomètre nom m s 0.47 0.27 0.42 0.14 +manomètres manomètre nom m p 0.47 0.27 0.05 0.14 +manouche manouche nom s 0.13 0.88 0.09 0.68 +manouches manouche nom p 0.13 0.88 0.05 0.2 +manouvrier manouvrier nom m s 0.01 0 0.01 0 +manqua manquer ver 253.94 197.64 0.79 6.01 ind:pas:3s; +manquai manquer ver 253.94 197.64 0.01 0.68 ind:pas:1s; +manquaient manquer ver 253.94 197.64 1.38 12.09 ind:imp:3p; +manquais manquer ver 253.94 197.64 2.85 3.51 ind:imp:1s;ind:imp:2s; +manquait manquer ver 253.94 197.64 18.13 48.78 ind:imp:3s; +manquant manquant adj m s 4.74 2.23 1.75 0.95 +manquante manquant adj f s 4.74 2.23 0.85 0.27 +manquantes manquant adj f p 4.74 2.23 1.23 0.47 +manquants manquant adj m p 4.74 2.23 0.92 0.54 +manquassent manquer ver 253.94 197.64 0.14 0.07 sub:imp:3p; +manque manquer ver 253.94 197.64 98.77 41.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +manquement manquement nom m s 0.54 1.55 0.39 1.08 +manquements manquement nom m p 0.54 1.55 0.15 0.47 +manquent manquer ver 253.94 197.64 10.51 8.99 ind:pre:3p;sub:pre:3p; +manquer manquer ver 253.94 197.64 30.61 24.39 inf; +manquera manquer ver 253.94 197.64 5.21 2.36 ind:fut:3s; +manquerai manquer ver 253.94 197.64 3.86 0.54 ind:fut:1s; +manqueraient manquer ver 253.94 197.64 0.17 1.82 cnd:pre:3p; +manquerais manquer ver 253.94 197.64 0.9 1.01 cnd:pre:1s;cnd:pre:2s; +manquerait manquer ver 253.94 197.64 3.97 6.22 cnd:pre:3s; +manqueras manquer ver 253.94 197.64 2.88 0.54 ind:fut:2s; +manquerez manquer ver 253.94 197.64 1.54 0.61 ind:fut:2p; +manqueriez manquer ver 253.94 197.64 0.25 0 cnd:pre:2p; +manquerions manquer ver 253.94 197.64 0.02 0.2 cnd:pre:1p; +manquerons manquer ver 253.94 197.64 0.22 0.2 ind:fut:1p; +manqueront manquer ver 253.94 197.64 1.03 1.28 ind:fut:3p; +manques manquer ver 253.94 197.64 20.07 1.76 ind:pre:2s;sub:pre:2s; +manquez manquer ver 253.94 197.64 5.98 1.89 imp:pre:2p;ind:pre:2p; +manquiez manquer ver 253.94 197.64 0.92 0.14 ind:imp:2p; +manquions manquer ver 253.94 197.64 0.31 0.61 ind:imp:1p; +manquons manquer ver 253.94 197.64 2.06 1.15 imp:pre:1p;ind:pre:1p; +manquâmes manquer ver 253.94 197.64 0.01 0.34 ind:pas:1p; +manquât manquer ver 253.94 197.64 0 0.61 sub:imp:3s; +manquèrent manquer ver 253.94 197.64 0.16 0.88 ind:pas:3p; +manqué manquer ver m s 253.94 197.64 38.94 24.53 par:pas; +manquée manquer ver f s 253.94 197.64 1.48 1.42 par:pas; +manquées manqué adj f p 2.43 4.8 0.3 0.74 +manqués manquer ver m p 253.94 197.64 0.32 0.2 par:pas; +mansard mansard nom m s 0 0.07 0 0.07 +mansarde mansarde nom f s 0.5 5.2 0.46 3.38 +mansardes mansarde nom f p 0.5 5.2 0.03 1.82 +mansardé mansarder ver m s 0.1 0.41 0.1 0.07 par:pas; +mansardée mansardé adj f s 0 1.22 0 0.61 +mansardées mansarder ver f p 0.1 0.41 0 0.27 par:pas; +mansion mansion nom f s 0.05 0 0.01 0 +mansions mansion nom f p 0.05 0 0.04 0 +mansuétude mansuétude nom f s 0.17 2.09 0.17 2.03 +mansuétudes mansuétude nom f p 0.17 2.09 0 0.07 +manta manta nom f s 0.72 0 0.72 0 +mante mante nom f s 0.72 1.69 0.57 0.47 +manteau manteau nom m s 39.97 68.11 36.16 58.99 +manteaux manteau nom m p 39.97 68.11 3.81 9.12 +mantelet mantelet nom m s 0 0.27 0 0.2 +mantelets mantelet nom m p 0 0.27 0 0.07 +mantelure mantelure nom f s 0 0.07 0 0.07 +mantes mante nom f p 0.72 1.69 0.15 1.22 +mantille mantille nom f s 0.02 1.35 0.01 0.81 +mantilles mantille nom f p 0.02 1.35 0.01 0.54 +mantique mantique nom f s 0 0.07 0 0.07 +mantra mantra nom m s 0.34 0.07 0.34 0.07 +manu_militari manu_militari adv 0.16 0.2 0.16 0.2 +manubrium manubrium nom m s 0.03 0 0.03 0 +manucure manucure nom s 2.15 1.55 1.95 1.15 +manucurer manucurer ver 0.27 0.95 0.1 0 inf; +manucures manucure nom p 2.15 1.55 0.19 0.41 +manucuré manucurer ver m s 0.27 0.95 0.03 0.07 par:pas; +manucurée manucurer ver f s 0.27 0.95 0.01 0.14 par:pas; +manucurées manucurer ver f p 0.27 0.95 0.03 0.27 par:pas; +manucurés manucurer ver m p 0.27 0.95 0.09 0.27 par:pas; +manuel manuel nom m s 6.63 8.18 4.94 3.85 +manuelle manuel adj f s 5.7 3.85 1.16 0.61 +manuellement manuellement adv 1.4 0.14 1.4 0.14 +manuelles manuel adj f p 5.7 3.85 0.28 0.2 +manuels manuel nom m p 6.63 8.18 1.52 4.05 +manufacture manufacture nom f s 0.37 2.03 0.35 1.49 +manufacturer manufacturer ver 0.11 0.74 0.02 0.14 inf; +manufactures manufacture nom f p 0.37 2.03 0.02 0.54 +manufacturiers manufacturier nom m p 0.1 0 0.1 0 +manufacturons manufacturer ver 0.11 0.74 0.01 0 ind:pre:1p; +manufacturé manufacturer ver m s 0.11 0.74 0.04 0.07 par:pas; +manufacturée manufacturer ver f s 0.11 0.74 0.03 0 par:pas; +manufacturées manufacturer ver f p 0.11 0.74 0 0.07 par:pas; +manufacturés manufacturer ver m p 0.11 0.74 0 0.47 par:pas; +manuscrit manuscrit nom m s 5.48 17.36 3.87 12.09 +manuscrite manuscrit adj f s 0.27 2.64 0.1 0.68 +manuscrites manuscrit adj f p 0.27 2.64 0.02 0.74 +manuscrits manuscrit nom m p 5.48 17.36 1.61 5.27 +manutention manutention nom f s 0.04 0.61 0.04 0.54 +manutentionnaire manutentionnaire nom s 0.14 0.41 0.12 0.27 +manutentionnaires manutentionnaire nom p 0.14 0.41 0.01 0.14 +manutentionner manutentionner ver 0.2 0 0.2 0 inf; +manutentions manutention nom f p 0.04 0.61 0 0.07 +manuélin manuélin adj m s 0 0.07 0 0.07 +manzanilla manzanilla nom m s 0 0.61 0 0.61 +manège manège nom m s 5.92 15.27 5.22 13.51 +manèges manège nom m p 5.92 15.27 0.7 1.76 +manécanterie manécanterie nom f s 0 0.27 0 0.27 +manégés manéger ver m p 0 0.07 0 0.07 par:pas; +mao mao nom s 0.21 0.68 0.21 0.41 +maori maori adj m s 0.17 0 0.15 0 +maorie maori adj f s 0.17 0 0.02 0 +maos mao nom p 0.21 0.68 0 0.27 +maous maous adj m 0.09 0.74 0.09 0.74 +maousse maousse adj f s 0.14 0.54 0.14 0.54 +maoïsme maoïsme nom m s 0.01 0.07 0.01 0.07 +maoïste maoïste adj s 0 0.34 0 0.34 +mappemonde mappemonde nom f s 0.07 1.76 0.06 1.42 +mappemondes mappemonde nom f p 0.07 1.76 0.01 0.34 +maquaient maquer ver 0.88 1.35 0 0.07 ind:imp:3p; +maque maquer ver 0.88 1.35 0.2 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maquent maquer ver 0.88 1.35 0 0.07 ind:pre:3p; +maquer maquer ver 0.88 1.35 0.15 0.68 inf; +maquereau maquereau nom m s 7.5 7.16 5.32 3.38 +maquereautage maquereautage nom m s 0.1 0.14 0.1 0.14 +maquereauter maquereauter ver 0.13 0 0.13 0 inf; +maquereautins maquereautin nom m p 0 0.07 0 0.07 +maquereaux maquereau nom m p 7.5 7.16 1.35 2.03 +maquerellage maquerellage nom m s 0.1 0 0.1 0 +maquerelle maquereau nom f s 7.5 7.16 0.56 1.35 +maquerelles maquereau nom f p 7.5 7.16 0.27 0.41 +maques maquer ver 0.88 1.35 0.01 0 ind:pre:2s; +maquette maquette nom f s 4.58 3.92 2.57 2.43 +maquettes maquette nom f p 4.58 3.92 2.01 1.49 +maquettiste maquettiste nom s 0.02 0.54 0.01 0.41 +maquettistes maquettiste nom p 0.02 0.54 0.01 0.14 +maquignon maquignon nom m s 0.35 2.57 0.21 1.76 +maquignonnage maquignonnage nom m s 0.01 0.14 0 0.07 +maquignonnages maquignonnage nom m p 0.01 0.14 0.01 0.07 +maquignonne maquignonner ver 0 0.2 0 0.07 ind:pre:3s; +maquignonné maquignonner ver m s 0 0.2 0 0.07 par:pas; +maquignonnés maquignonner ver m p 0 0.2 0 0.07 par:pas; +maquignons maquignon nom m p 0.35 2.57 0.14 0.81 +maquilla maquiller ver 11.14 15.81 0 0.14 ind:pas:3s; +maquillage maquillage nom m s 11.39 11.62 11.36 11.08 +maquillages maquillage nom m p 11.39 11.62 0.03 0.54 +maquillai maquiller ver 11.14 15.81 0 0.07 ind:pas:1s; +maquillais maquiller ver 11.14 15.81 0.19 0.2 ind:imp:1s;ind:imp:2s; +maquillait maquiller ver 11.14 15.81 0.28 1.55 ind:imp:3s; +maquillant maquiller ver 11.14 15.81 0.22 0.07 par:pre; +maquille maquiller ver 11.14 15.81 2.39 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maquillent maquiller ver 11.14 15.81 0.22 0.34 ind:pre:3p; +maquiller maquiller ver 11.14 15.81 3.1 3.18 inf; +maquillerai maquiller ver 11.14 15.81 0.17 0.07 ind:fut:1s; +maquillerais maquiller ver 11.14 15.81 0.01 0.07 cnd:pre:1s; +maquilleras maquiller ver 11.14 15.81 0.01 0 ind:fut:2s; +maquilles maquiller ver 11.14 15.81 0.62 0.27 ind:pre:2s; +maquilleur maquilleur nom m s 0.82 0.47 0.28 0.14 +maquilleurs maquilleur nom m p 0.82 0.47 0.07 0.07 +maquilleuse maquilleur nom f s 0.82 0.47 0.44 0.2 +maquilleuses maquilleur nom f p 0.82 0.47 0.03 0.07 +maquillez maquiller ver 11.14 15.81 0.08 0.07 imp:pre:2p;ind:pre:2p; +maquilliez maquiller ver 11.14 15.81 0.1 0 ind:imp:2p; +maquillons maquiller ver 11.14 15.81 0.01 0 imp:pre:1p; +maquillé maquiller ver m s 11.14 15.81 1.99 1.96 par:pas; +maquillée maquiller ver f s 11.14 15.81 1.37 4.39 par:pas; +maquillées maquiller ver f p 11.14 15.81 0.07 1.15 par:pas; +maquillés maquiller ver m p 11.14 15.81 0.32 0.88 par:pas; +maquis maquis nom m 0.91 16.01 0.91 16.01 +maquisard maquisard nom m s 0.16 5.81 0.14 0.68 +maquisarde maquisard nom f s 0.16 5.81 0 0.2 +maquisardes maquisard nom f p 0.16 5.81 0 0.14 +maquisards maquisard nom m p 0.16 5.81 0.02 4.8 +maqué maquer ver m s 0.88 1.35 0.07 0.07 par:pas; +maquée maquer ver f s 0.88 1.35 0.42 0.27 par:pas; +maqués maquer ver m p 0.88 1.35 0.03 0.14 par:pas; +mara mara nom m s 0.41 0 0.41 0 +marabout marabout nom m s 0.07 1.28 0.05 0.88 +marabouts marabout nom m p 0.07 1.28 0.02 0.41 +maracas maraca nom f p 0.12 0.41 0.12 0.41 +marae marae nom m s 0.02 0 0.02 0 +marais marais nom m 6.91 10.68 6.91 10.68 +maranta maranta nom m s 0.01 0 0.01 0 +marante marante nom f s 0.02 0.07 0.02 0.07 +marasme marasme nom m s 0.42 1.01 0.41 0.95 +marasmes marasme nom m p 0.42 1.01 0.01 0.07 +marasquin marasquin nom m s 0.06 0.74 0.06 0.74 +marathon marathon nom m s 2.12 1.28 1.98 1.28 +marathonien marathonien nom m s 0.17 0.14 0.17 0.07 +marathonienne marathonien nom f s 0.17 0.14 0 0.07 +marathons marathon nom m p 2.12 1.28 0.14 0 +maraud maraud nom m s 0.68 2.09 0.45 0.2 +maraudaient marauder ver 0.05 0.81 0 0.07 ind:imp:3p; +maraudait marauder ver 0.05 0.81 0.01 0.27 ind:imp:3s; +maraude maraud nom f s 0.68 2.09 0.22 1.28 +marauder marauder ver 0.05 0.81 0.03 0.34 inf; +maraudes maraud nom f p 0.68 2.09 0.01 0.27 +maraudeur maraudeur nom m s 1.99 1.49 1.5 0.61 +maraudeurs maraudeur nom m p 1.99 1.49 0.48 0.88 +maraudeuse maraudeur nom f s 1.99 1.49 0.01 0 +marauds maraud nom m p 0.68 2.09 0 0.34 +maraudé marauder ver m s 0.05 0.81 0 0.07 par:pas; +maraudés marauder ver m p 0.05 0.81 0 0.07 par:pas; +maravédis maravédis nom m 0.11 0.2 0.11 0.2 +maraîcher maraîcher nom m s 0.38 2.16 0.35 0.47 +maraîchers maraîcher nom m p 0.38 2.16 0.01 0.95 +maraîchère maraîcher nom f s 0.38 2.16 0.01 0.2 +maraîchères maraîcher nom f p 0.38 2.16 0.01 0.54 +marbra marbrer ver 0.28 1.82 0 0.07 ind:pas:3s; +marbraient marbrer ver 0.28 1.82 0 0.07 ind:imp:3p; +marbrait marbrer ver 0.28 1.82 0 0.2 ind:imp:3s; +marbre marbre nom m s 7.31 43.04 6.28 41.49 +marbrent marbrer ver 0.28 1.82 0 0.07 ind:pre:3p; +marbrerie marbrerie nom f s 0 0.14 0 0.07 +marbreries marbrerie nom f p 0 0.14 0 0.07 +marbres marbre nom m p 7.31 43.04 1.03 1.55 +marbrier marbrier adj m s 0.04 0 0.04 0 +marbrure marbrure nom f s 0 1.15 0 0.07 +marbrures marbrure nom f p 0 1.15 0 1.08 +marbré marbré adj m s 0.04 0.47 0.04 0.2 +marbrée marbrer ver f s 0.28 1.82 0.17 0.27 par:pas; +marbrées marbrer ver f p 0.28 1.82 0 0.34 par:pas; +marbrés marbrer ver m p 0.28 1.82 0 0.2 par:pas; +marc marc nom m s 1.28 3.38 1.18 2.91 +marcassin marcassin nom m s 0.02 0.88 0.02 0.74 +marcassins marcassin nom m p 0.02 0.88 0 0.14 +marcel marcel nom m s 0.06 0.2 0.06 0.2 +marceline marceline nom f s 0 0.07 0 0.07 +marcha marcher ver 364.37 325.61 0.28 21.96 ind:pas:3s; +marchai marcher ver 364.37 325.61 0.04 2.64 ind:pas:1s; +marchaient marcher ver 364.37 325.61 1.82 13.92 ind:imp:3p; +marchais marcher ver 364.37 325.61 3.51 7.91 ind:imp:1s;ind:imp:2s; +marchait marcher ver 364.37 325.61 12.13 48.65 ind:imp:3s; +marchand marchand nom m s 15.32 45.81 8.66 24.12 +marchandage marchandage nom m s 0.57 2.5 0.54 1.08 +marchandages marchandage nom m p 0.57 2.5 0.04 1.42 +marchandaient marchander ver 2.84 3.18 0 0.27 ind:imp:3p; +marchandais marchander ver 2.84 3.18 0.01 0.07 ind:imp:1s;ind:imp:2s; +marchandait marchander ver 2.84 3.18 0.15 0.34 ind:imp:3s; +marchandant marchander ver 2.84 3.18 0.01 0.41 par:pre; +marchande marchand nom f s 15.32 45.81 2.85 6.01 +marchandent marchander ver 2.84 3.18 0.14 0 ind:pre:3p; +marchander marchander ver 2.84 3.18 1.43 1.35 inf; +marchandera marchander ver 2.84 3.18 0.01 0 ind:fut:3s; +marchanderais marchander ver 2.84 3.18 0 0.07 cnd:pre:1s; +marchanderez marchander ver 2.84 3.18 0.01 0 ind:fut:2p; +marchandes marchander ver 2.84 3.18 0.11 0 ind:pre:2s; +marchandeuse marchandeur nom f s 0 0.07 0 0.07 +marchandez marchander ver 2.84 3.18 0.07 0 imp:pre:2p;ind:pre:2p; +marchandise marchandise nom f s 15.21 15.81 10.54 8.78 +marchandises marchandise nom f p 15.21 15.81 4.67 7.03 +marchandiseur marchandiseur nom m s 0.01 0 0.01 0 +marchandons marchander ver 2.84 3.18 0.05 0 imp:pre:1p;ind:pre:1p; +marchands marchand nom m p 15.32 45.81 3.71 14.46 +marchandé marchander ver m s 2.84 3.18 0.3 0.27 par:pas; +marchandée marchander ver f s 2.84 3.18 0 0.07 par:pas; +marchant marcher ver 364.37 325.61 4.32 24.86 par:pre; +marchante marchant adj f s 0.22 2.36 0 0.2 +marchantes marchant adj f p 0.22 2.36 0 0.07 +marche marcher ver 364.37 325.61 154.71 58.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +marchent marcher ver 364.37 325.61 11.64 10.61 ind:pre:3p; +marchepied marchepied nom m s 0.64 5.54 0.36 4.59 +marchepieds marchepied nom m p 0.64 5.54 0.28 0.95 +marcher marcher ver 364.37 325.61 85.34 80.88 ind:imp:3s;inf; +marchera marcher ver 364.37 325.61 17.43 1.62 ind:fut:3s; +marcherai marcher ver 364.37 325.61 1.23 1.15 ind:fut:1s; +marcheraient marcher ver 364.37 325.61 0.06 0.74 cnd:pre:3p; +marcherais marcher ver 364.37 325.61 0.59 0.81 cnd:pre:1s;cnd:pre:2s; +marcherait marcher ver 364.37 325.61 4.1 2.3 cnd:pre:3s; +marcheras marcher ver 364.37 325.61 0.57 0.27 ind:fut:2s; +marcherez marcher ver 364.37 325.61 0.25 0.2 ind:fut:2p; +marcheriez marcher ver 364.37 325.61 0.06 0.07 cnd:pre:2p; +marcherions marcher ver 364.37 325.61 0.03 0 cnd:pre:1p; +marcherons marcher ver 364.37 325.61 0.55 0.41 ind:fut:1p; +marcheront marcher ver 364.37 325.61 1.03 0.34 ind:fut:3p; +marches marche nom f p 53.17 152.97 6.56 52.97 +marcheur marcheur nom m s 0.7 1.96 0.14 0.81 +marcheurs marcheur nom m p 0.7 1.96 0.38 0.81 +marcheuse marcheur nom f s 0.7 1.96 0.04 0.27 +marcheuses marcheur nom f p 0.7 1.96 0.14 0.07 +marchez marcher ver 364.37 325.61 7.39 1.69 imp:pre:2p;ind:pre:2p; +marchiez marcher ver 364.37 325.61 0.48 0.2 ind:imp:2p;sub:pre:2p; +marchions marcher ver 364.37 325.61 0.74 5.27 ind:imp:1p; +marchons marcher ver 364.37 325.61 4.3 6.82 imp:pre:1p;ind:pre:1p; +marchâmes marcher ver 364.37 325.61 0.11 1.01 ind:pas:1p; +marchât marcher ver 364.37 325.61 0 0.47 sub:imp:3s; +marchèrent marcher ver 364.37 325.61 0.24 6.96 ind:pas:3p; +marché marché nom m s 74.36 62.43 72.73 57.36 +marchées marcher ver f p 364.37 325.61 0.01 0 par:pas; +marchés marché nom m p 74.36 62.43 1.64 5.07 +marconi marconi adj 0.01 0.07 0.01 0.07 +marcotin marcotin nom m s 0 0.07 0 0.07 +marcotte marcotte nom f s 0.01 0 0.01 0 +marcs marc nom m p 1.28 3.38 0.1 0.47 +mardi mardi nom m s 23.65 16.28 22.38 15.47 +mardis mardi nom m p 23.65 16.28 1.27 0.81 +mare mare nom f s 3.78 13.04 3.66 9.86 +marelle marelle nom f s 0.64 2.23 0.64 1.76 +marelles marelle nom f p 0.64 2.23 0 0.47 +marengo marengo adj m s 0.01 0.07 0.01 0.07 +marennes marennes nom f 0 0.41 0 0.41 +mares mare nom f p 3.78 13.04 0.12 3.18 +mareyeur mareyeur nom m s 0 0.41 0 0.2 +mareyeurs mareyeur nom m p 0 0.41 0 0.07 +mareyeuse mareyeur nom f s 0 0.41 0 0.07 +mareyeuses mareyeur nom f p 0 0.41 0 0.07 +margarine margarine nom f s 0.64 1.35 0.64 1.35 +margaux margaux nom m 0.04 0.14 0.04 0.14 +margay margay nom m s 0 1.49 0 1.49 +marge marge nom f s 14.4 14.86 14.21 12.64 +margeait marger ver 0 0.27 0 0.14 ind:imp:3s; +margelle margelle nom f s 0.04 2.09 0.04 2.03 +margelles margelle nom f p 0.04 2.09 0 0.07 +marger marger ver 0 0.27 0 0.14 inf; +marges marge nom f p 14.4 14.86 0.19 2.23 +margeuse margeur nom f s 0 0.07 0 0.07 +margina marginer ver 0 0.14 0 0.07 ind:pas:3s; +marginal marginal adj m s 0.59 1.82 0.35 0.47 +marginale marginal adj f s 0.59 1.82 0.15 0.54 +marginalement marginalement adv 0.01 0 0.01 0 +marginales marginal adj f p 0.59 1.82 0.01 0.54 +marginalisant marginaliser ver 0.36 0.41 0 0.07 par:pre; +marginaliser marginaliser ver 0.36 0.41 0.25 0.07 inf; +marginaliseraient marginaliser ver 0.36 0.41 0.01 0 cnd:pre:3p; +marginalisé marginaliser ver m s 0.36 0.41 0.03 0 par:pas; +marginalisée marginaliser ver f s 0.36 0.41 0.05 0.14 par:pas; +marginalisés marginaliser ver m p 0.36 0.41 0.03 0.14 par:pas; +marginalité marginalité nom f s 0 0.34 0 0.34 +marginaux marginal nom m p 0.58 1.49 0.39 0.81 +marginée marginer ver f s 0 0.14 0 0.07 par:pas; +margis margis nom m 0 0.27 0 0.27 +margot margot nom m s 1.17 0 1.17 0 +margotait margoter ver 0 0.07 0 0.07 ind:imp:3s; +margotin margotin nom m s 0 0.14 0 0.07 +margotins margotin nom m p 0 0.14 0 0.07 +margoton margoton nom f s 0 0.07 0 0.07 +margotte margotter ver 0 0.27 0 0.2 ind:pre:3s; +margottons margotter ver 0 0.27 0 0.07 imp:pre:1p; +margouillat margouillat nom m s 0 0.74 0 0.41 +margouillats margouillat nom m p 0 0.74 0 0.34 +margouillis margouillis nom m 0 0.07 0 0.07 +margoulette margoulette nom f s 0 0.34 0 0.34 +margoulin margoulin nom m s 0.04 0.61 0.03 0.34 +margoulins margoulin nom m p 0.04 0.61 0.01 0.27 +margrave margrave nom m s 0.6 0 0.6 0 +margraviat margraviat nom m s 0 0.07 0 0.07 +marguerite marguerite nom f s 1.58 2.97 0.25 0.54 +marguerites marguerite nom f p 1.58 2.97 1.33 2.43 +marguillier marguillier nom m s 0.03 0.41 0.03 0.34 +marguilliers marguillier nom m p 0.03 0.41 0 0.07 +mari mari nom m s 264.15 124.26 254.92 118.38 +maria marier ver 220.51 65.07 19.11 3.24 ind:pas:3s; +mariable mariable adj m s 0.01 0.14 0.01 0.14 +mariachi mariachi nom m s 0.9 0 0.63 0 +mariachis mariachi nom m p 0.9 0 0.28 0 +mariage mariage nom m s 167.39 78.72 158.58 70.68 +mariages mariage nom m p 167.39 78.72 8.81 8.04 +mariai marier ver 220.51 65.07 0 0.07 ind:pas:1s; +mariaient marier ver 220.51 65.07 0.08 0.95 ind:imp:3p; +mariais marier ver 220.51 65.07 0.55 0.14 ind:imp:1s;ind:imp:2s; +mariait marier ver 220.51 65.07 1.08 2.03 ind:imp:3s; +mariales marial adj f p 0 0.2 0 0.2 +marianne marian nom f s 0.27 0 0.27 0 +mariant marier ver 220.51 65.07 0.64 0.88 par:pre; +marias marier ver 220.51 65.07 0 0.07 ind:pas:2s; +mariassent marier ver 220.51 65.07 0 0.07 sub:imp:3p; +marida marida nom s 0 0.81 0 0.74 +maridas marida nom p 0 0.81 0 0.07 +marie marier ver 220.51 65.07 22 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +marie_couche_toi_là marie_couche_toi_là nom f 0.06 0.27 0.06 0.27 +marie_jeanne marie_jeanne nom f s 0.26 0.07 0.26 0.07 +marie_louise marie_louise nom f s 0 0.07 0 0.07 +marie_salope marie_salope nom f s 0 0.07 0 0.07 +marient marier ver 220.51 65.07 4.04 1.42 ind:pre:3p; +marier marier ver 220.51 65.07 63.88 16.49 inf;; +mariera marier ver 220.51 65.07 2.8 0.81 ind:fut:3s; +marierai marier ver 220.51 65.07 2.58 0.61 ind:fut:1s; +marieraient marier ver 220.51 65.07 0 0.54 cnd:pre:3p; +marierais marier ver 220.51 65.07 0.8 0.2 cnd:pre:1s;cnd:pre:2s; +marierait marier ver 220.51 65.07 0.66 0.74 cnd:pre:3s; +marieras marier ver 220.51 65.07 1.11 0.41 ind:fut:2s; +marierez marier ver 220.51 65.07 0.49 0.47 ind:fut:2p; +marieriez marier ver 220.51 65.07 0.01 0 cnd:pre:2p; +marierions marier ver 220.51 65.07 0.02 0.14 cnd:pre:1p; +marierons marier ver 220.51 65.07 1.2 0.27 ind:fut:1p; +marieront marier ver 220.51 65.07 0.47 0.14 ind:fut:3p; +maries marier ver 220.51 65.07 4.27 0.54 ind:pre:2s;sub:pre:2s; +marieur marieur nom m s 1.1 0.27 0.43 0 +marieuse marieur nom f s 1.1 0.27 0.27 0.2 +marieuses marieur nom f p 1.1 0.27 0.4 0.07 +mariez marier ver 220.51 65.07 2.44 0.41 imp:pre:2p;ind:pre:2p; +marigot marigot nom m s 0.16 1.69 0.16 1.15 +marigots marigot nom m p 0.16 1.69 0 0.54 +marihuana marihuana nom f s 0.07 0.14 0.07 0.14 +mariions marier ver 220.51 65.07 0 0.14 ind:imp:1p; +marijuana marijuana nom f s 3.77 0.41 3.77 0.41 +marimba marimba nom m s 0.02 0 0.02 0 +marin marin nom m s 13.96 33.38 8.48 15.34 +marin_pêcheur marin_pêcheur nom m s 0.01 0.14 0.01 0.14 +marina marina nom f s 1.16 0.14 1.14 0.07 +marinade marinade nom f s 1.46 0.27 1.44 0.2 +marinades marinade nom f p 1.46 0.27 0.03 0.07 +marinage marinage nom m s 0 0.07 0 0.07 +marinaient mariner ver 1.42 2.84 0 0.14 ind:imp:3p; +marinait mariner ver 1.42 2.84 0 0.14 ind:imp:3s; +marinant mariner ver 1.42 2.84 0 0.34 par:pre; +marinas marina nom f p 1.16 0.14 0.02 0.07 +marine marine adj s 7.26 20.34 5.9 17.97 +mariner mariner ver 1.42 2.84 0.84 1.15 inf; +marinera mariner ver 1.42 2.84 0 0.07 ind:fut:3s; +marines marine adj p 7.26 20.34 1.36 2.36 +maringoins maringoin nom m p 0 0.07 0 0.07 +marinier marinier nom m s 0.06 1.49 0.04 0.41 +mariniers marinier nom m p 0.06 1.49 0.02 1.08 +marinière marinière nom f s 0.26 0.54 0.23 0.41 +marinières marinière nom f p 0.26 0.54 0.02 0.14 +marins marin nom m p 13.96 33.38 5.48 18.04 +mariné mariné adj m s 0.34 0.47 0.18 0.2 +marinée mariner ver f s 1.42 2.84 0.13 0 par:pas; +marinées mariner ver f p 1.42 2.84 0.12 0.07 par:pas; +marinés mariné adj m p 0.34 0.47 0.16 0.27 +mariol mariol nom s 0.04 0 0.04 0 +mariole mariole nom s 0.68 0.81 0.58 0.54 +marioles mariole nom p 0.68 0.81 0.1 0.27 +mariolle mariolle nom s 0.99 0.61 0.59 0.41 +mariolles mariolle nom p 0.99 0.61 0.4 0.2 +marionnette marionnette nom f s 5.11 5.95 2.87 2.77 +marionnettes marionnette nom f p 5.11 5.95 2.24 3.18 +marionnettiste marionnettiste nom s 0.36 0.07 0.36 0.07 +marions marier ver 220.51 65.07 2.53 0.07 imp:pre:1p;ind:pre:1p; +maris mari nom m p 264.15 124.26 9.23 5.88 +maristes mariste nom p 0 0.14 0 0.14 +marital marital adj m s 0.59 0.14 0.14 0 +maritale marital adj f s 0.59 0.14 0.31 0 +maritalement maritalement adv 0.03 0.2 0.03 0.2 +maritales marital adj f p 0.59 0.14 0.01 0.07 +maritaux marital adj m p 0.59 0.14 0.13 0.07 +maritime maritime adj s 2.37 6.22 1.74 3.58 +maritimes maritime adj p 2.37 6.22 0.63 2.64 +maritorne maritorne nom f s 0 0.27 0 0.27 +marivaudage marivaudage nom m s 0.03 0.41 0.03 0.2 +marivaudages marivaudage nom m p 0.03 0.41 0 0.2 +marivaudant marivauder ver 0.02 0.07 0 0.07 par:pre; +marivauder marivauder ver 0.02 0.07 0.02 0 inf; +mariât marier ver 220.51 65.07 0 0.07 sub:imp:3s; +marièrent marier ver 220.51 65.07 0.42 0.88 ind:pas:3p; +marié marier ver m s 220.51 65.07 35.76 10.47 par:pas; +mariée marier ver f s 220.51 65.07 30.55 10.74 ind:imp:3p;par:pas; +mariées marier ver f p 220.51 65.07 1.5 0.61 par:pas; +mariés marier ver m p 220.51 65.07 21.53 5.2 par:pas; +marjolaine marjolaine nom f s 0.24 0.61 0.24 0.61 +mark mark nom m s 13.24 1.76 1.31 0.61 +marker marker nom m s 0.08 0.14 0.08 0.14 +marketing marketing nom m s 1.88 0.88 1.88 0.81 +marketings marketing nom m p 1.88 0.88 0 0.07 +marks mark nom m p 13.24 1.76 11.93 1.15 +marle marle adj m s 0.04 1.55 0 1.35 +marles marle adj p 0.04 1.55 0.04 0.2 +marlin marlin nom m s 0.5 0 0.5 0 +marlou marlou nom m s 0.24 0.88 0.14 0.54 +marloupin marloupin nom m s 0 0.34 0 0.14 +marloupinerie marloupinerie nom f s 0 0.27 0 0.2 +marloupineries marloupinerie nom f p 0 0.27 0 0.07 +marloupins marloupin nom m p 0 0.34 0 0.2 +marlous marlou nom m p 0.24 0.88 0.1 0.34 +marmaille marmaille nom f s 0.3 4.26 0.3 4.12 +marmailles marmaille nom f p 0.3 4.26 0 0.14 +marmelade marmelade nom f s 0.73 2.91 0.73 2.77 +marmelades marmelade nom f p 0.73 2.91 0 0.14 +marmitage marmitage nom m s 0 0.47 0 0.41 +marmitages marmitage nom m p 0 0.47 0 0.07 +marmite marmite nom f s 3.21 14.66 2.35 8.38 +marmiter marmiter ver 0.14 0.07 0.14 0 inf; +marmites marmite nom f p 3.21 14.66 0.86 6.28 +marmiteuse marmiteux adj f s 0.14 0.14 0 0.07 +marmiteux marmiteux adj m 0.14 0.14 0.14 0.07 +marmiton marmiton nom m s 0.13 1.15 0.12 0.41 +marmitons marmiton nom m p 0.13 1.15 0.01 0.74 +marmitées marmitée nom f p 0 0.14 0 0.14 +marmités marmiter ver m p 0.14 0.07 0 0.07 par:pas; +marmonna marmonner ver 1.74 13.51 0.14 3.04 ind:pas:3s; +marmonnaient marmonner ver 1.74 13.51 0 0.27 ind:imp:3p; +marmonnait marmonner ver 1.74 13.51 0.15 2.43 ind:imp:3s; +marmonnant marmonner ver 1.74 13.51 0.07 1.89 par:pre; +marmonne marmonner ver 1.74 13.51 0.56 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +marmonnement marmonnement nom m s 0.32 0.61 0.29 0.61 +marmonnements marmonnement nom m p 0.32 0.61 0.02 0 +marmonnent marmonner ver 1.74 13.51 0.03 0.2 ind:pre:3p; +marmonner marmonner ver 1.74 13.51 0.31 1.35 inf; +marmonnes marmonner ver 1.74 13.51 0.2 0.07 ind:pre:2s; +marmonnez marmonner ver 1.74 13.51 0.11 0 imp:pre:2p;ind:pre:2p; +marmonniez marmonner ver 1.74 13.51 0.01 0 ind:imp:2p; +marmonné marmonner ver m s 1.74 13.51 0.12 1.28 par:pas; +marmonnée marmonner ver f s 1.74 13.51 0.01 0.07 par:pas; +marmonnés marmonner ver m p 1.74 13.51 0.02 0 par:pas; +marmoréen marmoréen adj m s 0.01 0.61 0 0.27 +marmoréenne marmoréen adj f s 0.01 0.61 0.01 0.2 +marmoréens marmoréen adj m p 0.01 0.61 0 0.14 +marmot marmot nom m s 1.52 2.36 1.21 1.42 +marmots marmot nom m p 1.52 2.36 0.32 0.95 +marmotta marmotter ver 0.34 1.28 0.1 0.47 ind:pas:3s; +marmottages marmottage nom m p 0 0.07 0 0.07 +marmottait marmotter ver 0.34 1.28 0 0.2 ind:imp:3s; +marmottant marmotter ver 0.34 1.28 0 0.2 par:pre; +marmotte marmotte nom f s 3.15 1.22 2.84 0.74 +marmottement marmottement nom m s 0 0.07 0 0.07 +marmotter marmotter ver 0.34 1.28 0 0.27 inf; +marmottes marmotte nom f p 3.15 1.22 0.32 0.47 +marmotté marmotter ver m s 0.34 1.28 0 0.07 par:pas; +marmouset marmouset nom m s 0.1 0.07 0.1 0 +marmousets marmouset nom m p 0.1 0.07 0 0.07 +marna marner ver 0.1 1.15 0.05 0 ind:pas:3s; +marnaise marnais adj f s 0 0.07 0 0.07 +marnait marner ver 0.1 1.15 0 0.07 ind:imp:3s; +marne marne nom f s 0.03 2.84 0.03 0.34 +marnent marner ver 0.1 1.15 0 0.14 ind:pre:3p; +marner marner ver 0.1 1.15 0.05 0.61 inf; +marnes marne nom f p 0.03 2.84 0 2.5 +marneuse marneux adj f s 0 0.2 0 0.2 +marnières marnière nom f p 0 0.07 0 0.07 +marné marner ver m s 0.1 1.15 0 0.14 par:pas; +marocain marocain nom m s 2.28 2.09 1.06 1.49 +marocaine marocain adj f s 0.54 5.14 0.19 2.03 +marocaines marocain nom f p 2.28 2.09 0.14 0.07 +marocains marocain nom m p 2.28 2.09 1.07 0.47 +maronite maronite adj s 0 0.2 0 0.14 +maronites maronite nom p 0 0.14 0 0.14 +maronner maronner ver 0.01 0.07 0.01 0 inf; +maronné maronner ver m s 0.01 0.07 0 0.07 par:pas; +maroquin maroquin nom m s 0.11 1.76 0.11 1.69 +maroquinerie maroquinerie nom f s 0.05 1.15 0.05 1.01 +maroquineries maroquinerie nom f p 0.05 1.15 0 0.14 +maroquinier maroquinier nom m s 0.01 0.61 0.01 0.47 +maroquiniers maroquinier nom m p 0.01 0.61 0 0.14 +maroquins maroquin nom m p 0.11 1.76 0 0.07 +marotte marotte nom f s 0.26 2.09 0.2 1.55 +marottes marotte nom f p 0.26 2.09 0.05 0.54 +marouette marouette nom f s 0.01 0 0.01 0 +maroufle maroufle nom f s 0.14 0.41 0.14 0.27 +maroufler maroufler ver 0 0.07 0 0.07 inf; +maroufles maroufle nom f p 0.14 0.41 0 0.14 +marqua marquer ver 43.78 101.08 0.32 8.04 ind:pas:3s; +marquage marquage nom m s 0.65 0.14 0.65 0.14 +marquai marquer ver 43.78 101.08 0 0.74 ind:pas:1s; +marquaient marquer ver 43.78 101.08 0.12 4.39 ind:imp:3p; +marquais marquer ver 43.78 101.08 0.06 0.41 ind:imp:1s;ind:imp:2s; +marquait marquer ver 43.78 101.08 0.56 12.03 ind:imp:3s; +marquant marquer ver 43.78 101.08 0.3 5.2 par:pre; +marquante marquant adj f s 0.56 1.49 0.04 0.14 +marquantes marquant adj f p 0.56 1.49 0.01 0.07 +marquants marquant adj m p 0.56 1.49 0.29 0.61 +marque marque nom f s 40.29 37.7 23.91 26.89 +marque_page marque_page nom m s 0.25 0.14 0.24 0.07 +marque_page marque_page nom m p 0.25 0.14 0.01 0.07 +marquent marquer ver 43.78 101.08 0.86 2.77 ind:pre:3p; +marquer marquer ver 43.78 101.08 7.69 16.82 inf; +marquera marquer ver 43.78 101.08 0.85 0.74 ind:fut:3s; +marquerai marquer ver 43.78 101.08 0.42 0.07 ind:fut:1s; +marqueraient marquer ver 43.78 101.08 0.11 0.14 cnd:pre:3p; +marquerait marquer ver 43.78 101.08 0.07 0.47 cnd:pre:3s; +marqueras marquer ver 43.78 101.08 0.03 0.07 ind:fut:2s; +marquerez marquer ver 43.78 101.08 0.01 0.14 ind:fut:2p; +marquerons marquer ver 43.78 101.08 0.01 0 ind:fut:1p; +marqueront marquer ver 43.78 101.08 0.08 0.14 ind:fut:3p; +marques marque nom f p 40.29 37.7 16.39 10.81 +marqueterie marqueterie nom f s 0.11 2.09 0.11 1.62 +marqueteries marqueterie nom f p 0.11 2.09 0 0.47 +marquette marqueter ver 0.02 0.27 0.01 0.07 imp:pre:2s;ind:pre:3s; +marqueté marqueter ver m s 0.02 0.27 0.01 0.07 par:pas; +marquetées marqueter ver f p 0.02 0.27 0 0.07 par:pas; +marquetés marqueter ver m p 0.02 0.27 0 0.07 par:pas; +marqueur marqueur nom m s 2.02 0.47 1.25 0.47 +marqueurs marqueur nom m p 2.02 0.47 0.77 0 +marquez marquer ver 43.78 101.08 1.98 0.41 imp:pre:2p;ind:pre:2p; +marquiez marquer ver 43.78 101.08 0.28 0.07 ind:imp:2p; +marquions marquer ver 43.78 101.08 0 0.07 ind:imp:1p; +marquis marquis nom m 16.69 18.31 14.98 9.86 +marquisat marquisat nom m s 0 0.27 0 0.2 +marquisats marquisat nom m p 0 0.27 0 0.07 +marquise marquis nom f s 16.69 18.31 1.64 7.36 +marquises marquis nom f p 16.69 18.31 0.07 1.08 +marquisien marquisien adj m s 0 0.2 0 0.07 +marquisiens marquisien adj m p 0 0.2 0 0.14 +marquons marquer ver 43.78 101.08 0.04 0.14 imp:pre:1p;ind:pre:1p; +marquât marquer ver 43.78 101.08 0 0.41 sub:imp:3s; +marquèrent marquer ver 43.78 101.08 0.01 0.68 ind:pas:3p; +marqué marquer ver m s 43.78 101.08 15.81 20.07 par:pas; +marquée marquer ver f s 43.78 101.08 2.84 9.26 par:pas; +marquées marquer ver f p 43.78 101.08 0.51 2.5 par:pas; +marqués marquer ver m p 43.78 101.08 1.68 4.32 par:pas; +marra marrer ver 16.13 32.57 0.1 0.34 ind:pas:3s; +marrade marrade nom f s 0.01 0.68 0.01 0.68 +marraient marrer ver 16.13 32.57 0.14 0.54 ind:imp:3p; +marraine marraine nom f s 2.74 8.78 2.52 8.38 +marraines marraine nom f p 2.74 8.78 0.22 0.41 +marrais marrer ver 16.13 32.57 0.14 0.34 ind:imp:1s; +marrait marrer ver 16.13 32.57 0.27 2.3 ind:imp:3s; +marrane marrane nom m s 0 0.27 0 0.14 +marranes marrane nom m p 0 0.27 0 0.14 +marrant marrant adj m s 35.7 12.36 30.41 9.19 +marrante marrant adj f s 35.7 12.36 3.15 1.42 +marrantes marrant adj f p 35.7 12.36 0.81 0.54 +marrants marrant adj m p 35.7 12.36 1.33 1.22 +marre marre adv 57.48 20.68 57.48 20.68 +marrent marrer ver 16.13 32.57 0.54 1.76 ind:pre:3p; +marrer marrer ver 16.13 32.57 6.45 12.5 inf; +marrera marrer ver 16.13 32.57 0.22 0.07 ind:fut:3s; +marrerais marrer ver 16.13 32.57 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +marrerait marrer ver 16.13 32.57 0 0.14 cnd:pre:3s; +marres marrer ver 16.13 32.57 1.12 0.34 ind:pre:2s; +marrez marrer ver 16.13 32.57 0.47 0.41 imp:pre:2p;ind:pre:2p; +marri marri adj m s 0.52 0.41 0.03 0.41 +marrie marri adj f s 0.52 0.41 0.45 0 +marrions marrer ver 16.13 32.57 0.05 0 ind:imp:1p; +marris marri adj m p 0.52 0.41 0.04 0 +marron marron adj 5.33 13.72 5.33 13.72 +marronnais marronner ver 0 0.41 0 0.07 ind:imp:2s; +marronnasse marronnasse adj s 0 0.07 0 0.07 +marronner marronner ver 0 0.41 0 0.2 inf; +marronnera marronner ver 0 0.41 0 0.07 ind:fut:3s; +marronnier marronnier nom m s 0.61 9.39 0.46 2.57 +marronniers marronnier nom m p 0.61 9.39 0.15 6.82 +marronné marronner ver m s 0 0.41 0 0.07 par:pas; +marrons marron nom m p 4.89 7.36 2.8 3.92 +marré marrer ver m s 16.13 32.57 0.72 1.76 par:pas; +marrée marrer ver f s 16.13 32.57 0.15 0.07 par:pas; +marrés marrer ver m p 16.13 32.57 0.18 0.61 par:pas; +mars mars nom m 9.75 31.42 9.75 31.42 +marsala marsala nom m s 0.38 0.14 0.38 0.14 +marsaules marsaule nom m p 0 0.27 0 0.27 +marseillais marseillais nom m 1.27 1.82 1.27 0.81 +marseillaise marseillais nom f s 1.27 1.82 0 1.01 +marseillaises marseillais adj f p 1.22 1.35 0 0.34 +marshal marshal nom m s 3.11 0 2.74 0 +marshals marshal nom m p 3.11 0 0.37 0 +marsouin marsouin nom m s 0.11 0.68 0.08 0.47 +marsouins marsouin nom m p 0.11 0.68 0.03 0.2 +marsupial marsupial nom m s 0.1 0 0.04 0 +marsupiaux marsupial nom m p 0.1 0 0.06 0 +marsupilami marsupilami nom m s 0 0.2 0 0.14 +marsupilamis marsupilami nom m p 0 0.2 0 0.07 +martagon martagon nom m s 0 0.07 0 0.07 +marteau marteau nom m s 12.63 15.61 11.84 13.31 +marteau_pilon marteau_pilon nom m s 0.07 0.41 0.07 0.34 +marteau_piqueur marteau_piqueur nom m s 0.42 0.07 0.42 0.07 +marteaux marteau nom m p 12.63 15.61 0.79 2.3 +marteau_pilon marteau_pilon nom m p 0.07 0.41 0 0.07 +martel martel nom m s 0.05 0.47 0.05 0.34 +martela marteler ver 1.45 10.41 0 0.68 ind:pas:3s; +martelage martelage nom m s 0 0.14 0 0.14 +martelai marteler ver 1.45 10.41 0 0.07 ind:pas:1s; +martelaient marteler ver 1.45 10.41 0.02 0.74 ind:imp:3p; +martelait marteler ver 1.45 10.41 0.01 1.15 ind:imp:3s; +martelant marteler ver 1.45 10.41 0.29 2.3 par:pre; +marteler marteler ver 1.45 10.41 0.41 1.35 inf; +martelet martelet nom m s 0 0.07 0 0.07 +marteleur marteleur nom m s 0.04 0 0.04 0 +martelez marteler ver 1.45 10.41 0.01 0 ind:pre:2p; +martels martel nom m p 0.05 0.47 0 0.14 +martelèrent marteler ver 1.45 10.41 0 0.07 ind:pas:3p; +martelé marteler ver m s 1.45 10.41 0.16 1.42 par:pas; +martelée marteler ver f s 1.45 10.41 0.02 0.54 par:pas; +martelées marteler ver f p 1.45 10.41 0 0.27 par:pas; +martelés marteler ver m p 1.45 10.41 0 0.47 par:pas; +martial martial adj m s 8.02 4.26 0.85 1.76 +martiale martial adj f s 8.02 4.26 5.63 1.22 +martiales martial adj f p 8.02 4.26 0.01 0.34 +martialités martialité nom f p 0 0.07 0 0.07 +martiaux martial adj m p 8.02 4.26 1.53 0.95 +martien martien nom m s 1.96 1.49 0.59 0.61 +martienne martienne nom f s 0.51 0.34 0.35 0.27 +martiennes martienne nom f p 0.51 0.34 0.16 0.07 +martiens martien nom m p 1.96 1.49 1.37 0.88 +martin martin nom m s 1.69 0.07 0.08 0 +martin_pêcheur martin_pêcheur nom m s 0.02 0.41 0.01 0.27 +martinet martinet nom m s 0.26 2.64 0.24 1.15 +martinets martinet nom m p 0.26 2.64 0.02 1.49 +martinez martiner ver 2.56 0.47 2.56 0.34 imp:pre:2p;ind:pre:2p; +martingale martingale nom f s 0.12 1.28 0.12 1.08 +martingales martingale nom f p 0.12 1.28 0 0.2 +martini martini nom m s 3.85 2.23 2.76 1.89 +martiniquais martiniquais nom m 0.03 1.69 0.02 0.68 +martiniquaise martiniquais nom f s 0.03 1.69 0.01 0.95 +martiniquaises martiniquais nom f p 0.03 1.69 0 0.07 +martinis martini nom m p 3.85 2.23 1.09 0.34 +martins martin nom m p 1.69 0.07 1.62 0.07 +martin_pêcheur martin_pêcheur nom m p 0.02 0.41 0.01 0.14 +martre martre nom f s 0.53 1.22 0.16 1.01 +martres martre nom f p 0.53 1.22 0.37 0.2 +martyr martyr nom m s 5.5 6.76 3.68 3.24 +martyre martyre nom s 3.75 6.35 3.32 6.08 +martyres martyre nom p 3.75 6.35 0.42 0.27 +martyrisaient martyriser ver 0.94 3.38 0 0.07 ind:imp:3p; +martyrisait martyriser ver 0.94 3.38 0.01 0.47 ind:imp:3s; +martyrisant martyriser ver 0.94 3.38 0 0.14 par:pre; +martyrise martyriser ver 0.94 3.38 0.24 0.07 ind:pre:3s; +martyrisent martyriser ver 0.94 3.38 0.02 0.07 ind:pre:3p; +martyriser martyriser ver 0.94 3.38 0.22 0.74 inf; +martyriserait martyriser ver 0.94 3.38 0.01 0 cnd:pre:3s; +martyrisé martyriser ver m s 0.94 3.38 0.24 0.68 par:pas; +martyrisée martyriser ver f s 0.94 3.38 0.04 0.74 par:pas; +martyrisées martyriser ver f p 0.94 3.38 0.01 0.07 par:pas; +martyrisés martyriser ver m p 0.94 3.38 0.15 0.34 par:pas; +martyrologe martyrologe nom m s 0 0.2 0 0.14 +martyrologes martyrologe nom m p 0 0.2 0 0.07 +martyrs martyr nom m p 5.5 6.76 1.82 3.51 +martèle marteler ver 1.45 10.41 0.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +martèlement martèlement nom m s 0.43 3.65 0.41 3.51 +martèlements martèlement nom m p 0.43 3.65 0.02 0.14 +martèlent marteler ver 1.45 10.41 0.32 0.27 ind:pre:3p; +martèlera marteler ver 1.45 10.41 0 0.14 ind:fut:3s; +marxisme marxisme nom m s 0.94 3.92 0.94 3.92 +marxisme_léninisme marxisme_léninisme nom m s 0.5 0.68 0.5 0.68 +marxiste marxiste adj s 0.91 2.84 0.67 2.36 +marxiste_léniniste marxiste_léniniste adj s 0.41 0.41 0.27 0.41 +marxistes marxiste adj p 0.91 2.84 0.24 0.47 +marxiste_léniniste marxiste_léniniste adj p 0.41 0.41 0.14 0 +mary mary nom m s 0.56 0.2 0.56 0.2 +maryland maryland nom m s 0.04 0.14 0.04 0.14 +marâtre marâtre nom f s 0.38 1.22 0.37 1.08 +marâtres marâtre nom f p 0.38 1.22 0.01 0.14 +marécage marécage nom m s 3.18 6.15 2.31 2.77 +marécages marécage nom m p 3.18 6.15 0.87 3.38 +marécageuse marécageux adj f s 0.47 1.62 0.02 0.41 +marécageuses marécageux adj f p 0.47 1.62 0.01 0.34 +marécageux marécageux adj m 0.47 1.62 0.44 0.88 +maréchal maréchal nom m s 2.84 41.69 2.67 38.24 +maréchal_ferrant maréchal_ferrant nom m s 0.22 1.96 0.22 1.96 +maréchalat maréchalat nom m s 0 0.07 0 0.07 +maréchale maréchal nom f s 2.84 41.69 0.14 0.07 +maréchalerie maréchalerie nom f s 0 0.27 0 0.27 +maréchalistes maréchaliste nom p 0 0.07 0 0.07 +maréchaussée maréchaussée nom f s 0 0.88 0 0.88 +maréchaux maréchal nom m p 2.84 41.69 0.04 3.38 +maréchaux_ferrants maréchaux_ferrants nom m p 0 0.41 0 0.41 +marée marée nom f s 6.31 26.89 5.21 21.28 +marées marée nom f p 6.31 26.89 1.1 5.61 +marémotrice marémoteur adj f s 0.01 0 0.01 0 +mas mas nom m 2.21 5.07 2.21 5.07 +masaï masaï nom s 0.01 3.99 0.01 3.99 +mascara mascara nom m s 1.15 0.47 1.15 0.47 +mascarade mascarade nom f s 2.71 2.03 2.58 1.76 +mascarades mascarade nom f p 2.71 2.03 0.13 0.27 +mascaret mascaret nom m s 0 0.54 0 0.54 +mascaron mascaron nom m s 0 0.14 0 0.07 +mascarons mascaron nom m p 0 0.14 0 0.07 +mascarpone mascarpone nom m s 0.11 0 0.11 0 +mascotte mascotte nom f s 2.36 0.88 1.91 0.74 +mascottes mascotte nom f p 2.36 0.88 0.45 0.14 +masculin masculin adj m s 8.14 10.14 4.49 4.05 +masculine masculin adj f s 8.14 10.14 2.66 3.92 +masculines masculin adj f p 8.14 10.14 0.4 0.95 +masculiniser masculiniser ver 0.02 0.07 0.01 0 inf; +masculinisée masculiniser ver f s 0.02 0.07 0.01 0.07 par:pas; +masculinité masculinité nom f s 0.21 0 0.21 0 +masculins masculin adj m p 8.14 10.14 0.59 1.22 +maser maser nom m s 0.01 0 0.01 0 +maskinongé maskinongé nom m s 0 0.07 0 0.07 +maso maso nom s 0.38 0.34 0.24 0.34 +masochisme masochisme nom m s 0.42 1.01 0.42 1.01 +masochiste masochiste adj s 0.34 0.81 0.3 0.68 +masochistes masochiste nom p 0.29 0.47 0.04 0.07 +masos maso adj p 0.35 0.88 0.15 0 +masqua masquer ver 3.74 19.12 0.01 0.27 ind:pas:3s; +masquage masquage nom m s 0.02 0 0.01 0 +masquages masquage nom m p 0.02 0 0.01 0 +masquaient masquer ver 3.74 19.12 0.04 1.22 ind:imp:3p; +masquait masquer ver 3.74 19.12 0.08 3.11 ind:imp:3s; +masquant masquer ver 3.74 19.12 0.05 1.82 par:pre; +masque masque nom m s 29.18 38.65 23.16 28.45 +masque_espion masque_espion nom m s 0.01 0 0.01 0 +masquent masquer ver 3.74 19.12 0.09 0.68 ind:pre:3p; +masquer masquer ver 3.74 19.12 1.39 4.32 inf; +masqueraient masquer ver 3.74 19.12 0 0.07 cnd:pre:3p; +masques masque nom m p 29.18 38.65 6.02 10.2 +masquons masquer ver 3.74 19.12 0.03 0 ind:pre:1p; +masqué masqué adj m s 3.26 3.85 2.42 1.69 +masquée masquer ver f s 3.74 19.12 0.15 1.42 par:pas; +masquées masquer ver f p 3.74 19.12 0.02 0.47 par:pas; +masqués masqué adj m p 3.26 3.85 0.73 0.68 +mass_media mass_media nom m p 0.17 0.07 0.17 0.07 +massa masser ver 5.69 12.84 0 1.28 ind:pas:3s; +massacra massacrer ver 16.87 14.66 0.05 0.14 ind:pas:3s; +massacraient massacrer ver 16.87 14.66 0.01 0.47 ind:imp:3p; +massacrais massacrer ver 16.87 14.66 0.01 0 ind:imp:1s; +massacrait massacrer ver 16.87 14.66 0.05 0.74 ind:imp:3s; +massacrant massacrer ver 16.87 14.66 0.33 0.47 par:pre; +massacrante massacrant adj f s 0.45 0.34 0.4 0.34 +massacre massacre nom m s 13.71 16.49 11.71 10.27 +massacrent massacrer ver 16.87 14.66 0.36 0.2 ind:pre:3p;sub:pre:3p; +massacrer massacrer ver 16.87 14.66 5.73 4.12 inf; +massacrera massacrer ver 16.87 14.66 0.27 0.07 ind:fut:3s; +massacrerai massacrer ver 16.87 14.66 0.03 0.07 ind:fut:1s; +massacreraient massacrer ver 16.87 14.66 0.01 0.2 cnd:pre:3p; +massacrerait massacrer ver 16.87 14.66 0 0.14 cnd:pre:3s; +massacrerons massacrer ver 16.87 14.66 0.16 0 ind:fut:1p; +massacreront massacrer ver 16.87 14.66 0.08 0.07 ind:fut:3p; +massacres massacre nom m p 13.71 16.49 2 6.22 +massacreur massacreur nom m s 0.06 0.34 0.06 0.2 +massacreurs massacreur nom m p 0.06 0.34 0 0.14 +massacrez massacrer ver 16.87 14.66 0.57 0.07 imp:pre:2p;ind:pre:2p; +massacrons massacrer ver 16.87 14.66 0.2 0 imp:pre:1p;ind:pre:1p; +massacrât massacrer ver 16.87 14.66 0 0.07 sub:imp:3s; +massacrèrent massacrer ver 16.87 14.66 0.16 0.2 ind:pas:3p; +massacré massacrer ver m s 16.87 14.66 3.17 2.7 par:pas; +massacrée massacrer ver f s 16.87 14.66 0.81 0.81 par:pas; +massacrées massacrer ver f p 16.87 14.66 0.09 0.2 par:pas; +massacrés massacrer ver m p 16.87 14.66 1.92 3.04 par:pas; +massage massage nom m s 9.57 3.18 7.76 2.23 +massages massage nom m p 9.57 3.18 1.81 0.95 +massaient masser ver 5.69 12.84 0 0.27 ind:imp:3p; +massais masser ver 5.69 12.84 0.08 0 ind:imp:1s; +massait masser ver 5.69 12.84 0.02 1.01 ind:imp:3s; +massant masser ver 5.69 12.84 0.04 0.68 par:pre; +masse masse nom f s 16.73 79.8 11.64 60.54 +massent masser ver 5.69 12.84 0.01 0.41 ind:pre:3p; +massepain massepain nom m s 0.29 0.34 0.17 0 +massepains massepain nom m p 0.29 0.34 0.12 0.34 +masser masser ver 5.69 12.84 2.98 2.09 inf; +massera masser ver 5.69 12.84 0.21 0 ind:fut:3s; +masserai masser ver 5.69 12.84 0.05 0 ind:fut:1s; +masseraient masser ver 5.69 12.84 0 0.07 cnd:pre:3p; +masserais masser ver 5.69 12.84 0.01 0 cnd:pre:2s; +masseras masser ver 5.69 12.84 0.02 0 ind:fut:2s; +masserez masser ver 5.69 12.84 0.01 0 ind:fut:2p; +masses masse nom f p 16.73 79.8 5.09 19.26 +massettes massette nom f p 0 0.14 0 0.14 +masseur masseur nom m s 1.94 1.69 0.7 1.15 +masseurs masseur nom m p 1.94 1.69 0.06 0.14 +masseuse masseur nom f s 1.94 1.69 1.12 0.27 +masseuses masseur nom f p 1.94 1.69 0.05 0.14 +massez masser ver 5.69 12.84 0.21 0 imp:pre:2p; +massicot massicot nom m s 0.2 0.61 0.1 0.54 +massicoter massicoter ver 0 0.14 0 0.07 inf; +massicotier massicotier nom m s 0 0.41 0 0.41 +massicots massicot nom m p 0.2 0.61 0.1 0.07 +massicoté massicoter ver m s 0 0.14 0 0.07 par:pas; +massif massif adj m s 7.16 22.3 2.52 8.92 +massifs massif adj m p 7.16 22.3 0.4 2.03 +massive massif adj f s 7.16 22.3 3.68 8.38 +massivement massivement adv 0.21 1.01 0.21 1.01 +massives massif adj f p 7.16 22.3 0.55 2.97 +massivité massivité nom f s 0 0.2 0 0.2 +massue massue nom f s 0.71 2.84 0.57 2.3 +massues massue nom f p 0.71 2.84 0.14 0.54 +massèrent masser ver 5.69 12.84 0 0.14 ind:pas:3p; +massé masser ver m s 5.69 12.84 0.4 1.01 par:pas; +massée masser ver f s 5.69 12.84 0.11 1.62 par:pas; +massées masser ver f p 5.69 12.84 0.03 0.47 par:pas; +massés masser ver m p 5.69 12.84 0.05 1.69 par:pas; +mastaba mastaba nom m s 0.01 0.2 0.01 0.14 +mastabas mastaba nom m p 0.01 0.2 0 0.07 +mastar mastar nom m s 0.02 0.07 0.02 0.07 +mastard mastard adj m s 0.8 0.88 0.8 0.74 +mastards mastard adj m p 0.8 0.88 0 0.14 +mastectomie mastectomie nom f s 0.22 0 0.22 0 +master master nom m s 3.43 0.07 1.41 0.07 +masters master nom m p 3.43 0.07 2.02 0 +mastic mastic nom m s 0.26 1.62 0.26 1.62 +masticage masticage nom m s 0 0.07 0 0.07 +masticateurs masticateur adj m p 0.01 0.07 0.01 0.07 +mastication mastication nom f s 0.16 0.81 0.16 0.74 +mastications mastication nom f p 0.16 0.81 0 0.07 +mastiff mastiff nom m s 0.02 0.07 0.02 0.07 +mastiqua mastiquer ver 0.32 4.32 0 0.14 ind:pas:3s; +mastiquaient mastiquer ver 0.32 4.32 0 0.14 ind:imp:3p; +mastiquais mastiquer ver 0.32 4.32 0 0.07 ind:imp:1s; +mastiquait mastiquer ver 0.32 4.32 0.01 0.81 ind:imp:3s; +mastiquant mastiquer ver 0.32 4.32 0 0.81 par:pre; +mastique mastiquer ver 0.32 4.32 0.1 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mastiquent mastiquer ver 0.32 4.32 0.01 0.07 ind:pre:3p; +mastiquer mastiquer ver 0.32 4.32 0.14 1.35 inf; +mastiquez mastiquer ver 0.32 4.32 0.01 0.07 imp:pre:2p; +mastiquons mastiquer ver 0.32 4.32 0 0.07 ind:pre:1p; +mastiqué mastiquer ver m s 0.32 4.32 0.04 0.14 par:pas; +mastiqués mastiquer ver m p 0.32 4.32 0.01 0.07 par:pas; +mastite mastite nom f s 0.12 0 0.12 0 +mastoc mastoc adj s 1.28 0.68 1.28 0.68 +mastodonte mastodonte nom m s 0.17 0.61 0.13 0.47 +mastodontes mastodonte nom m p 0.17 0.61 0.04 0.14 +mastoïde mastoïde adj s 0.93 0.07 0.93 0.07 +mastroquet mastroquet nom m s 0.16 0.34 0.14 0.2 +mastroquets mastroquet nom m p 0.16 0.34 0.01 0.14 +masturbais masturber ver 3.89 1.69 0.08 0 ind:imp:1s;ind:imp:2s; +masturbait masturber ver 3.89 1.69 0.44 0.2 ind:imp:3s; +masturbant masturber ver 3.89 1.69 0.43 0.2 par:pre; +masturbateur masturbateur adj m s 0.06 0 0.06 0 +masturbation masturbation nom f s 1.57 2.03 1.57 1.89 +masturbations masturbation nom f p 1.57 2.03 0 0.14 +masturbatoire masturbatoire adj m s 0.05 0.14 0.02 0.14 +masturbatoires masturbatoire adj p 0.05 0.14 0.03 0 +masturbe masturber ver 3.89 1.69 1.02 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +masturbent masturber ver 3.89 1.69 0.19 0.14 ind:pre:3p; +masturber masturber ver 3.89 1.69 1.16 0.47 inf; +masturberas masturber ver 3.89 1.69 0.01 0 ind:fut:2s; +masturbez masturber ver 3.89 1.69 0.04 0 ind:pre:2p; +masturbé masturber ver m s 3.89 1.69 0.18 0.07 par:pas; +masturbée masturber ver f s 3.89 1.69 0.34 0 par:pas; +masturbés masturber ver m p 3.89 1.69 0.01 0.07 par:pas; +mastère mastère nom m s 0.02 0 0.02 0 +masure masure nom f s 0.47 4.32 0.19 2.3 +masures masure nom f p 0.47 4.32 0.28 2.03 +mat mat nom m s 6.84 4.32 4.54 3.31 +mat mat nom m s 6.84 4.32 1.95 0.88 +mata mater ver 17.27 14.93 0.41 0.2 ind:pas:3s; +matador matador nom m s 1.25 2.03 1.15 1.76 +matadors matador nom m p 1.25 2.03 0.1 0.27 +mataf mataf nom m s 0.13 0.61 0.02 0.54 +matafs mataf nom m p 0.13 0.61 0.11 0.07 +mataient mater ver 17.27 14.93 0.04 0.2 ind:imp:3p; +matais mater ver 17.27 14.93 0.52 0.54 ind:imp:1s;ind:imp:2s; +matait mater ver 17.27 14.93 0.64 0.61 ind:imp:3s; +matamore matamore nom m s 0.27 0.61 0.14 0.27 +matamores matamore nom m p 0.27 0.61 0.14 0.34 +matant mater ver 17.27 14.93 0.1 0.41 par:pre; +match match nom m s 63.48 10 58.26 9.39 +matcha matcher ver 0.01 0.07 0 0.07 ind:pas:3s; +matche matcher ver 0.01 0.07 0.01 0 ind:pre:3s; +matches matche nom m p 1.42 1.42 1.42 1.42 +matchiche matchiche nom f s 0 0.2 0 0.2 +matchs match nom m p 63.48 10 5.22 0.61 +mate mater ver 17.27 14.93 4.55 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +matelas matelas nom m 8.98 25.95 8.98 25.95 +matelassent matelasser ver 0 1.01 0 0.07 ind:pre:3p; +matelasser matelasser ver 0 1.01 0 0.07 inf; +matelassier matelassier nom m s 0 0.41 0 0.2 +matelassiers matelassier nom m p 0 0.41 0 0.07 +matelassière matelassier nom f s 0 0.41 0 0.07 +matelassières matelassier nom f p 0 0.41 0 0.07 +matelassé matelassé adj m s 0.15 0.47 0.14 0.14 +matelassée matelassé adj f s 0.15 0.47 0.01 0.34 +matelassées matelasser ver f p 0 1.01 0 0.2 par:pas; +matelassés matelasser ver m p 0 1.01 0 0.07 par:pas; +matelot matelot nom m s 7.04 6.96 4.78 4.26 +matelote matelote nom f s 0.04 0.2 0.04 0.2 +matelots matelot nom m p 7.04 6.96 2.27 2.7 +matent mater ver 17.27 14.93 0.51 0.41 ind:pre:3p; +mater mater ver 17.27 14.93 5.91 6.22 inf; +mater_dolorosa mater_dolorosa nom f 0 0.47 0 0.47 +matera mater ver 17.27 14.93 0.16 0.07 ind:fut:3s; +materai mater ver 17.27 14.93 0.17 0.07 ind:fut:1s; +materais mater ver 17.27 14.93 0.04 0 cnd:pre:1s;cnd:pre:2s; +materait mater ver 17.27 14.93 0.01 0.14 cnd:pre:3s; +maternage maternage nom m s 0.04 0 0.04 0 +maternalisme maternalisme nom m s 0 0.2 0 0.2 +maternant materner ver 0.68 0.14 0.01 0 par:pre; +maternel maternel adj m s 5.21 23.72 2.71 8.99 +maternelle maternel nom f s 3.22 2.43 3.17 2.3 +maternellement maternellement adv 0 0.54 0 0.54 +maternelles maternel adj f p 5.21 23.72 0.35 1.76 +maternels maternel adj m p 5.21 23.72 0.24 1.82 +materner materner ver 0.68 0.14 0.52 0.14 inf; +maternera materner ver 0.68 0.14 0.11 0 ind:fut:3s; +materniser materniser ver 0.3 0 0.01 0 inf; +maternisé materniser ver m s 0.3 0 0.29 0 par:pas; +maternité maternité nom f s 3.49 4.73 3.47 4.05 +maternités maternité nom f p 3.49 4.73 0.03 0.68 +materné materner ver m s 0.68 0.14 0.04 0 par:pas; +materons mater ver 17.27 14.93 0.01 0.14 ind:fut:1p; +materont mater ver 17.27 14.93 0 0.07 ind:fut:3p; +mates mater ver 17.27 14.93 1.56 0.41 ind:pre:2s; +mateur mateur nom m s 0.37 0.27 0.11 0.07 +mateurs mateur nom m p 0.37 0.27 0.2 0.14 +mateuse mateur nom f s 0.37 0.27 0.06 0.07 +matez mater ver 17.27 14.93 1.4 0.34 imp:pre:2p;ind:pre:2p; +math math nom f p 1.55 0.74 1.55 0.74 +matheuse matheux nom f s 0.1 0.27 0.02 0.07 +matheux matheux nom m 0.1 0.27 0.08 0.2 +maths maths nom f p 10.66 3.38 10.66 3.38 +mathurins mathurin nom m p 0 0.07 0 0.07 +mathusalems mathusalem nom m p 0 0.07 0 0.07 +mathématicien mathématicien nom m s 0.96 0.68 0.65 0.54 +mathématicienne mathématicien nom f s 0.96 0.68 0.02 0.07 +mathématiciens mathématicien nom m p 0.96 0.68 0.28 0.07 +mathématique mathématique adj s 1.78 2.36 1.27 1.42 +mathématiquement mathématiquement adv 0.35 0.34 0.35 0.34 +mathématiques mathématique nom f p 1.8 7.03 1.64 5.68 +mathématiser mathématiser ver 0 0.07 0 0.07 inf; +mati mati adj m s 0.18 0 0.18 0 +matiez mater ver 17.27 14.93 0.03 0 ind:imp:2p; +matin matin nom m s 275.01 396.76 265.03 376.89 +matinal matinal adj m s 5.81 10.74 2.56 3.78 +matinale matinal adj f s 5.81 10.74 2.51 5.2 +matinalement matinalement adv 0 0.14 0 0.14 +matinales matinal adj f p 5.81 10.74 0.42 0.95 +matinaux matinal adj m p 5.81 10.74 0.32 0.81 +matines mâtine nom f p 0.57 1.22 0.56 1.01 +matineux matineux adj m p 0 0.14 0 0.14 +matins matin nom m p 275.01 396.76 9.98 19.86 +matinée matinée nom f s 12.51 34.05 12.1 32.23 +matinées matinée nom f p 12.51 34.05 0.41 1.82 +matis matir ver m p 0.2 0.14 0 0.07 par:pas; +matisse matir ver 0.2 0.14 0.19 0.07 sub:pre:1s;sub:pre:3s; +matité matité nom f s 0 0.54 0 0.54 +matière matière nom f s 16.99 58.45 14.2 49.8 +matières matière nom f p 16.99 58.45 2.79 8.65 +matois matois nom m 0.01 0.07 0.01 0.07 +matoise matois adj f s 0 0.41 0 0.07 +matoiserie matoiserie nom f s 0 0.14 0 0.14 +maton maton nom m s 1.41 6.08 0.5 3.11 +matonne maton nom f s 1.41 6.08 0 0.14 +matonnes maton nom f p 1.41 6.08 0 0.27 +matons maton nom m p 1.41 6.08 0.91 2.57 +matos matos nom m 5.72 1.55 5.72 1.55 +matou matou nom m s 1.21 4.12 1.04 3.18 +matous matou nom m p 1.21 4.12 0.17 0.95 +matouse matouser ver 0 0.2 0 0.07 ind:pre:3s; +matouser matouser ver 0 0.2 0 0.14 inf; +matraqua matraquer ver 0.59 1.49 0 0.14 ind:pas:3s; +matraquage matraquage nom m s 0.14 0.14 0.14 0.07 +matraquages matraquage nom m p 0.14 0.14 0 0.07 +matraquaient matraquer ver 0.59 1.49 0 0.07 ind:imp:3p; +matraquais matraquer ver 0.59 1.49 0 0.07 ind:imp:1s; +matraquait matraquer ver 0.59 1.49 0.01 0.07 ind:imp:3s; +matraquant matraquer ver 0.59 1.49 0 0.2 par:pre; +matraque matraque nom f s 1.8 5.41 1.41 4.46 +matraquer matraquer ver 0.59 1.49 0.11 0.14 inf; +matraques matraque nom f p 1.8 5.41 0.39 0.95 +matraqueur matraqueur nom m s 0.01 0.07 0 0.07 +matraqueurs matraqueur nom m p 0.01 0.07 0.01 0 +matraquez matraquer ver 0.59 1.49 0.15 0.07 imp:pre:2p;ind:pre:2p; +matraqué matraquer ver m s 0.59 1.49 0.23 0.34 par:pas; +matraquée matraquer ver f s 0.59 1.49 0.04 0.14 par:pas; +matraqués matraquer ver m p 0.59 1.49 0 0.07 par:pas; +matras matras nom m 0 0.47 0 0.47 +matriarcal matriarcal adj m s 0.01 0.41 0.01 0.14 +matriarcale matriarcal adj f s 0.01 0.41 0 0.2 +matriarcales matriarcal adj f p 0.01 0.41 0 0.07 +matriarcat matriarcat nom m s 0.14 0.74 0.14 0.74 +matriarche matriarche nom f s 0.09 0 0.09 0 +matrice matrice nom f s 2.16 2.03 2 1.96 +matrices matrice nom f p 2.16 2.03 0.16 0.07 +matricide matricide nom s 0.01 0 0.01 0 +matriciel matriciel adj m s 0.02 0.27 0.01 0.07 +matricielle matriciel adj f s 0.02 0.27 0.01 0.07 +matricielles matriciel adj f p 0.02 0.27 0 0.07 +matriciels matriciel adj m p 0.02 0.27 0 0.07 +matriculaire matriculaire nom s 0 0.07 0 0.07 +matricule matricule nom s 3.49 3.38 3.15 2.84 +matricules matricule nom p 3.49 3.38 0.34 0.54 +matrilinéaire matrilinéaire adj s 0 0.2 0 0.14 +matrilinéaires matrilinéaire adj f p 0 0.2 0 0.07 +matrilocales matrilocal adj f p 0 0.07 0 0.07 +matrimonial matrimonial adj m s 1.4 1.28 0.69 0.54 +matrimoniale matrimonial adj f s 1.4 1.28 0.17 0.47 +matrimoniales matrimonial adj f p 1.4 1.28 0.4 0.27 +matrimoniaux matrimonial adj m p 1.4 1.28 0.13 0 +matriochka matriochka nom f s 0 0.07 0 0.07 +matrone matrone nom f s 0.36 3.72 0.23 2.16 +matrones matrone nom f p 0.36 3.72 0.14 1.55 +mats mat nom m p 6.84 4.32 0.35 0.14 +matte matte nom f s 0.52 0.07 0.35 0.07 +matter matter ver 0.64 0.07 0.64 0.07 inf; +mattes matte nom f p 0.52 0.07 0.16 0 +matuche matuche nom m s 0 0.41 0 0.41 +maturation maturation nom f s 0.07 0.68 0.07 0.54 +maturations maturation nom f p 0.07 0.68 0 0.14 +mature mature adj s 1.83 0 1.65 0 +maturer maturer ver 0 0.07 0 0.07 inf; +matures mature adj p 1.83 0 0.17 0 +maturité maturité nom f s 2.61 5 2.61 5 +matutinal matutinal adj m s 0 0.34 0 0.07 +matutinale matutinal adj f s 0 0.34 0 0.14 +matutinales matutinal adj f p 0 0.34 0 0.07 +matutinaux matutinal adj m p 0 0.34 0 0.07 +matèrent mater ver 17.27 14.93 0 0.14 ind:pas:3p; +maté maté nom m s 1.62 0.2 1.62 0.14 +matée mater ver f s 17.27 14.93 0.2 0.07 par:pas; +matées mater ver f p 17.27 14.93 0.16 0.14 par:pas; +matérialisa matérialiser ver 1.05 4.32 0 0.2 ind:pas:3s; +matérialisaient matérialiser ver 1.05 4.32 0.01 0.07 ind:imp:3p; +matérialisait matérialiser ver 1.05 4.32 0.01 0.47 ind:imp:3s; +matérialisant matérialiser ver 1.05 4.32 0.04 0.14 par:pre; +matérialisation matérialisation nom f s 0.17 0.54 0.15 0.54 +matérialisations matérialisation nom f p 0.17 0.54 0.02 0 +matérialise matérialiser ver 1.05 4.32 0.25 0.61 ind:pre:1s;ind:pre:3s; +matérialisent matérialiser ver 1.05 4.32 0.05 0.14 ind:pre:3p; +matérialiser matérialiser ver 1.05 4.32 0.34 0.74 inf; +matérialisera matérialiser ver 1.05 4.32 0 0.07 ind:fut:3s; +matérialiseront matérialiser ver 1.05 4.32 0.01 0 ind:fut:3p; +matérialisions matérialiser ver 1.05 4.32 0 0.07 ind:imp:1p; +matérialisme matérialisme nom m s 0.38 1.49 0.38 1.49 +matérialiste matérialiste adj s 0.82 0.88 0.65 0.61 +matérialistes matérialiste adj p 0.82 0.88 0.17 0.27 +matérialisèrent matérialiser ver 1.05 4.32 0 0.07 ind:pas:3p; +matérialisé matérialiser ver m s 1.05 4.32 0.17 0.34 par:pas; +matérialisée matérialiser ver f s 1.05 4.32 0.13 0.68 par:pas; +matérialisées matérialiser ver f p 1.05 4.32 0.01 0.27 par:pas; +matérialisés matérialiser ver m p 1.05 4.32 0.02 0.47 par:pas; +matérialité matérialité nom f s 0.01 0.47 0.01 0.47 +matériau matériau nom m s 3.78 5.14 0.95 1.62 +matériaux matériau nom m p 3.78 5.14 2.83 3.51 +matériel matériel nom m s 25.26 26.22 25.15 25.47 +matérielle matériel adj f s 5.54 16.89 1.17 5.14 +matériellement matériellement adv 0.31 3.04 0.31 3.04 +matérielles matériel adj f p 5.54 16.89 0.45 3.31 +matériels matériel adj m p 5.54 16.89 1.38 3.45 +matés mater ver m p 17.27 14.93 0.05 0.34 par:pas; +maudira maudire ver 7.97 10.47 0.14 0 ind:fut:3s; +maudirai maudire ver 7.97 10.47 0.05 0.34 ind:fut:1s; +maudirais maudire ver 7.97 10.47 0.01 0 cnd:pre:2s; +maudirait maudire ver 7.97 10.47 0.21 0.07 cnd:pre:3s; +maudire maudire ver 7.97 10.47 1.65 2.64 inf; +maudirent maudire ver 7.97 10.47 0 0.07 ind:pas:3p; +maudirons maudire ver 7.97 10.47 0.01 0 ind:fut:1p; +maudiront maudire ver 7.97 10.47 0.02 0 ind:fut:3p; +maudis maudire ver m p 7.97 10.47 3.36 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +maudissaient maudire ver 7.97 10.47 0.01 0.2 ind:imp:3p; +maudissais maudire ver 7.97 10.47 0.04 0.47 ind:imp:1s;ind:imp:2s; +maudissait maudire ver 7.97 10.47 0.25 1.55 ind:imp:3s; +maudissant maudire ver 7.97 10.47 0.21 2.23 par:pre; +maudisse maudire ver 7.97 10.47 0.95 0.14 sub:pre:1s;sub:pre:3s; +maudissent maudire ver 7.97 10.47 0.26 0.2 ind:pre:3p; +maudissez maudire ver 7.97 10.47 0.2 0.14 imp:pre:2p;ind:pre:2p; +maudissions maudire ver 7.97 10.47 0 0.2 ind:imp:1p; +maudit maudit adj m s 37.18 17.5 17.59 7.43 +maudite maudit adj f s 37.18 17.5 12.65 5.47 +maudites maudit adj f p 37.18 17.5 1.71 1.42 +maudits maudit adj m p 37.18 17.5 5.23 3.18 +maugréa maugréer ver 0.29 5.41 0 1.15 ind:pas:3s; +maugréai maugréer ver 0.29 5.41 0 0.14 ind:pas:1s; +maugréaient maugréer ver 0.29 5.41 0 0.14 ind:imp:3p; +maugréait maugréer ver 0.29 5.41 0 0.61 ind:imp:3s; +maugréant maugréer ver 0.29 5.41 0 2.57 par:pre; +maugrée maugréer ver 0.29 5.41 0.27 0.27 imp:pre:2s;ind:pre:3s; +maugréer maugréer ver 0.29 5.41 0.03 0.54 inf; +maure maure adj s 1.11 0.81 0.9 0.41 +maures maure nom p 0.96 1.15 0.31 0.14 +mauresque mauresque adj s 0.12 2.91 0.12 2.09 +mauresques mauresque adj p 0.12 2.91 0 0.81 +mauricienne mauricien adj f s 0 0.07 0 0.07 +mauritanienne mauritanien adj f s 0 0.07 0 0.07 +maurrassien maurrassien nom m s 0 0.14 0 0.14 +maurrassisme maurrassisme nom m s 0 0.07 0 0.07 +mauser mauser nom m s 0.57 3.04 0.56 2.09 +mausers mauser nom m p 0.57 3.04 0.01 0.95 +mausolée mausolée nom m s 1.66 3.11 1.64 2.91 +mausolées mausolée nom m p 1.66 3.11 0.02 0.2 +maussade maussade adj s 1.09 7.97 1.04 6.82 +maussadement maussadement adv 0 0.27 0 0.27 +maussaderie maussaderie nom f s 0 0.34 0 0.27 +maussaderies maussaderie nom f p 0 0.34 0 0.07 +maussades maussade adj p 1.09 7.97 0.05 1.15 +mauvais mauvais adj m 252.69 200.61 138.04 108.65 +mauvaise mauvais adj f s 252.69 200.61 88.33 70.88 +mauvaisement mauvaisement adv 0 0.27 0 0.27 +mauvaises mauvais adj f p 252.69 200.61 26.32 21.08 +mauvaiseté mauvaiseté nom f s 0 0.2 0 0.2 +mauve mauve adj s 0.7 17.64 0.63 10.68 +mauves mauve adj p 0.7 17.64 0.07 6.96 +mauviette mauviette nom f s 4.86 0.88 3.49 0.61 +mauviettes mauviette nom f p 4.86 0.88 1.37 0.27 +maux mal nom_sup m p 326.58 193.92 8.31 8.78 +max max nom m s 5.94 2.3 5.94 2.3 +maxi maxi adj 1.71 0.27 1.71 0.27 +maxillaire maxillaire nom m s 0.27 1.76 0.25 0.54 +maxillaires maxillaire adj f p 0.08 0.14 0.05 0.07 +maxillo_facial maxillo_facial adj m s 0.01 0 0.01 0 +maxima maximum nom m p 14.79 15.81 0.22 0.41 +maximal maximal adj m s 3.04 0.61 0.34 0.2 +maximale maximal adj f s 3.04 0.61 2.53 0.41 +maximales maximal adj f p 3.04 0.61 0.16 0 +maximalise maximaliser ver 0.03 0 0.01 0 ind:pre:3s; +maximaliser maximaliser ver 0.03 0 0.02 0 inf; +maximalisme maximalisme nom m s 0 0.14 0 0.14 +maxime maxime nom f s 0.67 2.09 0.64 1.22 +maximes maxime nom f p 0.67 2.09 0.03 0.88 +maximisation maximisation nom f s 0.01 0 0.01 0 +maximiser maximiser ver 0.26 0 0.26 0 inf; +maximum maximum nom m s 14.79 15.81 14.55 15.34 +maximums maximum adj m p 5.8 1.96 0.04 0 +maxis maxi nom m p 0.58 0.95 0.04 0 +maxiton maxiton nom m s 0 0.14 0 0.14 +maya maya adj s 0.56 0.2 0.44 0.2 +mayas maya adj p 0.56 0.2 0.12 0 +mayo mayo nom f s 0.77 0 0.77 0 +mayonnaise mayonnaise nom f s 3.64 3.45 3.63 3.45 +mayonnaises mayonnaise nom f p 3.64 3.45 0.01 0 +mazagran mazagran nom m s 0 0.2 0 0.07 +mazagrans mazagran nom m p 0 0.2 0 0.14 +mazas mazer ver 0.01 0.27 0 0.07 ind:pas:2s; +mazdéens mazdéen adj m p 0 0.07 0 0.07 +maze mazer ver 0.01 0.27 0.01 0.14 imp:pre:2s;ind:pre:3s; +mazet mazet nom m s 0 0.41 0 0.41 +mazette mazette ono 0.32 0.81 0.32 0.81 +mazettes mazette nom_sup f p 0.02 0.07 0.01 0 +mazout mazout nom m s 1.42 2.64 1.42 2.64 +mazouté mazouter ver m s 0 0.07 0 0.07 par:pas; +mazoutés mazouté adj m p 0 0.14 0 0.14 +mazurka mazurka nom f s 0.58 0.41 0.58 0.34 +mazurkas mazurka nom f p 0.58 0.41 0 0.07 +mazé mazer ver m s 0.01 0.27 0 0.07 par:pas; +maçon maçon nom m s 3.79 6.76 3.48 3.31 +maçonnant maçonner ver 0.01 1.69 0 0.14 par:pre; +maçonne maçon nom f s 3.79 6.76 0 0.14 +maçonnent maçonner ver 0.01 1.69 0 0.07 ind:pre:3p; +maçonner maçonner ver 0.01 1.69 0 0.07 inf; +maçonnerie maçonnerie nom f s 0.69 3.04 0.69 2.97 +maçonneries maçonnerie nom f p 0.69 3.04 0 0.07 +maçonnique maçonnique adj s 0.35 0.74 0.32 0.34 +maçonniques maçonnique adj p 0.35 0.74 0.04 0.41 +maçonné maçonner ver m s 0.01 1.69 0 0.54 par:pas; +maçonnée maçonner ver f s 0.01 1.69 0 0.2 par:pas; +maçonnées maçonner ver f p 0.01 1.69 0 0.47 par:pas; +maçonnés maçonner ver m p 0.01 1.69 0.01 0.2 par:pas; +maçons maçon nom m p 3.79 6.76 0.32 3.31 +maître maître nom m s 128.55 151.49 118.88 125.74 +maître_queux maître_queux nom m s 0 0.14 0 0.14 +maître_assistant maître_assistant nom m s 0 0.07 0 0.07 +maître_autel maître_autel nom m s 0 0.61 0 0.61 +maître_chanteur maître_chanteur nom m s 0.21 0.2 0.21 0.2 +maître_chien maître_chien nom m s 0.11 0 0.11 0 +maître_coq maître_coq nom m s 0.01 0 0.01 0 +maître_nageur maître_nageur nom m s 0.45 0.27 0.45 0.27 +maître_à_danser maître_à_danser nom m s 0 0.07 0 0.07 +maîtres maître nom m p 128.55 151.49 9.67 25.74 +maîtresse maîtresse nom f s 26.59 53.92 25.22 47.43 +maîtresses maîtresse nom f p 26.59 53.92 1.38 6.49 +maîtrisa maîtriser ver 15.57 14.93 0.01 0.81 ind:pas:3s; +maîtrisable maîtrisable adj f s 0.06 0.14 0.06 0.07 +maîtrisables maîtrisable adj p 0.06 0.14 0 0.07 +maîtrisaient maîtriser ver 15.57 14.93 0.05 0.34 ind:imp:3p; +maîtrisais maîtriser ver 15.57 14.93 0.16 0.07 ind:imp:1s;ind:imp:2s; +maîtrisait maîtriser ver 15.57 14.93 0.37 0.54 ind:imp:3s; +maîtrisant maîtriser ver 15.57 14.93 0.19 1.22 par:pre; +maîtrise maîtrise nom f s 4.22 7.7 4.16 7.7 +maîtrisent maîtriser ver 15.57 14.93 0.39 0.27 ind:pre:3p; +maîtriser maîtriser ver 15.57 14.93 5.85 8.24 inf; +maîtrisera maîtriser ver 15.57 14.93 0.08 0 ind:fut:3s; +maîtriserai maîtriser ver 15.57 14.93 0.16 0 ind:fut:1s; +maîtriseraient maîtriser ver 15.57 14.93 0 0.07 cnd:pre:3p; +maîtriserait maîtriser ver 15.57 14.93 0.01 0.07 cnd:pre:3s; +maîtriseras maîtriser ver 15.57 14.93 0.01 0 ind:fut:2s; +maîtriserez maîtriser ver 15.57 14.93 0.03 0 ind:fut:2p; +maîtriseriez maîtriser ver 15.57 14.93 0.02 0 cnd:pre:2p; +maîtriserons maîtriser ver 15.57 14.93 0.2 0.07 ind:fut:1p; +maîtriseront maîtriser ver 15.57 14.93 0.02 0 ind:fut:3p; +maîtrises maîtriser ver 15.57 14.93 0.81 0 ind:pre:2s; +maîtrisez maîtriser ver 15.57 14.93 1.05 0.2 imp:pre:2p;ind:pre:2p; +maîtrisiez maîtriser ver 15.57 14.93 0.05 0 ind:imp:2p; +maîtrisions maîtriser ver 15.57 14.93 0.03 0.07 ind:imp:1p;sub:pre:1p; +maîtrisons maîtriser ver 15.57 14.93 0.43 0 imp:pre:1p;ind:pre:1p; +maîtrisèrent maîtriser ver 15.57 14.93 0.02 0.07 ind:pas:3p; +maîtrisé maîtriser ver m s 15.57 14.93 1.23 1.01 par:pas; +maîtrisée maîtriser ver f s 15.57 14.93 0.29 0.41 par:pas; +maîtrisées maîtriser ver f p 15.57 14.93 0.01 0.14 par:pas; +maîtrisés maîtrisé adj m p 0.6 1.35 0.2 0.14 +maïa maïa nom m s 0 3.51 0 3.51 +maïs maïs nom m 6.33 6.42 6.33 6.42 +maïzena maïzena nom f s 0.03 0.2 0.03 0.2 +me me pro_per s 4929.44 4264.32 4929.44 4264.32 +mea_culpa mea_culpa nom m 0.7 0.68 0.7 0.68 +mea_culpa mea_culpa nom m 0.07 0.14 0.07 0.14 +mec mec nom m s 325.54 72.3 252.94 50.41 +meccano meccano nom m s 0.29 1.01 0.29 0.95 +meccanos meccano nom m p 0.29 1.01 0 0.07 +mechta mechta nom f s 0 0.34 0 0.14 +mechtas mechta nom f p 0 0.34 0 0.2 +mecklembourgeois mecklembourgeois nom m 0 0.07 0 0.07 +mecs mec nom m p 325.54 72.3 72.61 21.89 +mecton mecton nom m s 0.03 0.74 0.03 0.27 +mectons mecton nom m p 0.03 0.74 0 0.47 +media media nom f s 7.72 0.07 7.72 0.07 +medicine_ball medicine_ball nom m s 0 0.07 0 0.07 +medium medium nom m s 0.59 0.07 0.59 0.07 +meeting meeting nom m s 4.23 6.82 3.49 4.73 +meetings meeting nom m p 4.23 6.82 0.74 2.09 +meiji meiji adj m s 0.02 0.07 0.02 0.07 +meilleur meilleur adj m s 221.17 86.82 99.59 34.32 +meilleure meilleur adj f s 221.17 86.82 73.69 24.86 +meilleures meilleur adj f p 221.17 86.82 15.25 10.41 +meilleurs meilleur adj m p 221.17 86.82 32.64 17.23 +melba melba adj 0.03 0.2 0.03 0.2 +melkites melkite nom p 0 0.14 0 0.14 +melliflues melliflue adj f p 0 0.07 0 0.07 +mellifère mellifère adj s 0 0.07 0 0.07 +mellifères mellifère nom m p 0 0.07 0 0.07 +melon melon nom m s 7.11 6.96 4.92 5.2 +melons melon nom m p 7.11 6.96 2.19 1.76 +melting_pot melting_pot nom m s 0.14 0.07 0.01 0.07 +melting_pot melting_pot nom m s 0.14 0.07 0.13 0 +membranaire membranaire adj f s 0.01 0 0.01 0 +membrane membrane nom f s 1.23 2.97 0.89 1.69 +membranes membrane nom f p 1.23 2.97 0.34 1.28 +membraneuse membraneux adj f s 0.01 0.34 0 0.07 +membraneuses membraneux adj f p 0.01 0.34 0.01 0.14 +membraneux membraneux adj m 0.01 0.34 0 0.14 +membre membre nom m s 56.06 64.86 26.72 15.2 +membres membre nom m p 56.06 64.86 29.34 49.66 +membrues membru adj f p 0 0.07 0 0.07 +membrure membrure nom f s 0.03 0.61 0.02 0.34 +membrures membrure nom f p 0.03 0.61 0.01 0.27 +membré membré adj m s 0.05 0.07 0.05 0.07 +mena mener ver 99.86 137.7 0.4 3.85 ind:pas:3s; +menace menace nom f s 30.36 44.12 21.07 26.01 +menacent menacer ver 49.63 52.57 2.46 2.5 ind:pre:3p; +menacer menacer ver 49.63 52.57 5.35 5.34 ind:pre:2p;ind:pre:2p;inf; +menacera menacer ver 49.63 52.57 0.09 0.07 ind:fut:3s; +menaceraient menacer ver 49.63 52.57 0.04 0 cnd:pre:3p; +menacerait menacer ver 49.63 52.57 0.1 0.27 cnd:pre:3s; +menaceras menacer ver 49.63 52.57 0.01 0 ind:fut:2s; +menaceriez menacer ver 49.63 52.57 0.03 0 cnd:pre:2p; +menaceront menacer ver 49.63 52.57 0.15 0.14 ind:fut:3p; +menaces menace nom f p 30.36 44.12 9.28 18.11 +menacez menacer ver 49.63 52.57 1.41 0.2 imp:pre:2p;ind:pre:2p; +menaciez menacer ver 49.63 52.57 0.25 0 ind:imp:2p; +menacions menacer ver 49.63 52.57 0.01 0.07 ind:imp:1p; +menacèrent menacer ver 49.63 52.57 0.01 0.2 ind:pas:3p; +menacé menacer ver m s 49.63 52.57 14.44 7.84 par:pas; +menacée menacer ver f s 49.63 52.57 4.83 4.05 par:pas; +menacées menacer ver f p 49.63 52.57 0.5 0.95 par:pas; +menacés menacer ver m p 49.63 52.57 1.44 2.3 par:pas; +menai mener ver 99.86 137.7 0.02 0.2 ind:pas:1s; +menaient mener ver 99.86 137.7 0.49 6.96 ind:imp:3p; +menais mener ver 99.86 137.7 0.7 2.3 ind:imp:1s;ind:imp:2s; +menait mener ver 99.86 137.7 2.56 24.8 ind:imp:3s; +menant mener ver 99.86 137.7 1.68 7.03 par:pre; +menassent mener ver 99.86 137.7 0 0.07 sub:imp:3p; +menaça menacer ver 49.63 52.57 0.16 1.82 ind:pas:3s; +menaçaient menacer ver 49.63 52.57 1.07 3.04 ind:imp:3p; +menaçais menacer ver 49.63 52.57 0.34 0.34 ind:imp:1s;ind:imp:2s; +menaçait menacer ver 49.63 52.57 2.95 10.07 ind:imp:3s; +menaçant menaçant adj m s 3.56 16.69 1.76 7.09 +menaçante menaçant adj f s 3.56 16.69 1.33 5.61 +menaçantes menaçant adj f p 3.56 16.69 0.06 1.28 +menaçants menaçant adj m p 3.56 16.69 0.41 2.7 +menaçons menacer ver 49.63 52.57 0.19 0 ind:pre:1p; +menaçât menacer ver 49.63 52.57 0.01 0.07 sub:imp:3s; +mencheviks menchevik nom p 0 0.07 0 0.07 +mendia mendier ver 4.07 6.49 0.01 0 ind:pas:3s; +mendiaient mendier ver 4.07 6.49 0.01 0.34 ind:imp:3p; +mendiais mendier ver 4.07 6.49 0.27 0.07 ind:imp:1s;ind:imp:2s; +mendiait mendier ver 4.07 6.49 0.24 0.68 ind:imp:3s; +mendiant mendiant nom m s 6.86 11.76 3.44 5.2 +mendiante mendiant nom f s 6.86 11.76 0.34 0.95 +mendiantes mendiant nom f p 6.86 11.76 0 0.14 +mendiants mendiant nom m p 6.86 11.76 3.07 5.47 +mendicité mendicité nom f s 0.44 0.95 0.44 0.88 +mendicités mendicité nom f p 0.44 0.95 0 0.07 +mendie mendier ver 4.07 6.49 0.61 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mendient mendier ver 4.07 6.49 0.23 0.14 ind:pre:3p; +mendier mendier ver 4.07 6.49 2.07 3.11 inf; +mendierait mendier ver 4.07 6.49 0 0.07 cnd:pre:3s; +mendieras mendier ver 4.07 6.49 0 0.07 ind:fut:2s; +mendies mendier ver 4.07 6.49 0.01 0 ind:pre:2s; +mendiez mendier ver 4.07 6.49 0.03 0 imp:pre:2p;ind:pre:2p; +mendigot mendigot nom m s 0.3 0.81 0.3 0.07 +mendigotant mendigoter ver 0 0.14 0 0.07 par:pre; +mendigote mendigot nom f s 0.3 0.81 0 0.07 +mendigoter mendigoter ver 0 0.14 0 0.07 inf; +mendigots mendigot nom m p 0.3 0.81 0 0.68 +mendions mendier ver 4.07 6.49 0.1 0.07 ind:pre:1p; +mendié mendier ver m s 4.07 6.49 0.1 0.34 par:pas; +mendiée mendier ver f s 4.07 6.49 0 0.07 par:pas; +mendiées mendier ver f p 4.07 6.49 0 0.07 par:pas; +mendé mendé adj s 0.01 0 0.01 0 +meneau meneau nom m s 2.18 0.54 0 0.07 +meneaux meneau nom m p 2.18 0.54 2.18 0.47 +mener mener ver 99.86 137.7 22.45 29.53 inf;; +meneur meneur nom m s 2.94 3.51 1.67 2.03 +meneurs meneur nom m p 2.94 3.51 0.69 1.35 +meneuse meneur nom f s 2.94 3.51 0.59 0.14 +menez mener ver 99.86 137.7 2.96 0.41 imp:pre:2p;ind:pre:2p; +menhaden menhaden nom m s 0.01 0 0.01 0 +menhir menhir nom m s 0.41 0.68 0.41 0.2 +menhirs menhir nom m p 0.41 0.68 0 0.47 +meniez mener ver 99.86 137.7 0.22 0 ind:imp:2p;sub:pre:2p; +menions mener ver 99.86 137.7 0.06 0.88 ind:imp:1p; +mennonite mennonite nom m s 0.09 0.14 0.04 0.07 +mennonites mennonite nom m p 0.09 0.14 0.05 0.07 +menon menon nom m s 0.03 0.07 0.02 0 +menons mener ver 99.86 137.7 1.2 0.81 imp:pre:1p;ind:pre:1p; +menora menora nom f s 0.03 0 0.03 0 +menotte menotte nom f s 11.65 7.84 0.78 0.61 +menotter menotter ver 2.65 0.27 0.31 0 inf; +menottes menotte nom f p 11.65 7.84 10.88 7.23 +menottez menotter ver 2.65 0.27 0.83 0 imp:pre:2p;ind:pre:2p; +menotté menotter ver m s 2.65 0.27 1.06 0.27 par:pas; +menottée menotter ver f s 2.65 0.27 0.28 0 par:pas; +menottés menotter ver m p 2.65 0.27 0.17 0 par:pas; +mens mentir ver 185.16 52.03 42.12 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mensonge mensonge nom m s 61.05 35.41 33.64 21.89 +mensonger mensonger adj m s 1.29 1.96 0.29 0.47 +mensongers mensonger adj m p 1.29 1.96 0.14 0.14 +mensonges mensonge nom m p 61.05 35.41 27.41 13.51 +mensongère mensonger adj f s 1.29 1.96 0.48 0.81 +mensongèrement mensongèrement adv 0 0.2 0 0.2 +mensongères mensonger adj f p 1.29 1.96 0.38 0.54 +menstruation menstruation nom f s 0.4 0 0.28 0 +menstruations menstruation nom f p 0.4 0 0.13 0 +menstruel menstruel adj m s 0.29 0.54 0.22 0.27 +menstruelle menstruel adj f s 0.29 0.54 0.01 0.07 +menstruelles menstruel adj f p 0.29 0.54 0.02 0.14 +menstruels menstruel adj m p 0.29 0.54 0.04 0.07 +menstrues menstrues nom f p 0 0.14 0 0.14 +mensualité mensualité nom f s 0.72 1.01 0.15 0.81 +mensualités mensualité nom f p 0.72 1.01 0.56 0.2 +mensuel mensuel adj m s 2.13 2.5 0.73 0.81 +mensuelle mensuel adj f s 2.13 2.5 0.87 0.88 +mensuellement mensuellement adv 0.01 0.14 0.01 0.14 +mensuelles mensuel adj f p 2.13 2.5 0.23 0.34 +mensuels mensuel adj m p 2.13 2.5 0.3 0.47 +mensuration mensuration nom f s 0.58 1.42 0 0.2 +mensurations mensuration nom f p 0.58 1.42 0.58 1.22 +ment mentir ver 185.16 52.03 24.08 5.81 ind:pre:3s; +mentaient mentir ver 185.16 52.03 0.44 0.88 ind:imp:3p; +mentais mentir ver 185.16 52.03 3.64 1.55 ind:imp:1s;ind:imp:2s; +mentait mentir ver 185.16 52.03 2.54 5.88 ind:imp:3s; +mental mental adj m s 18.15 11.35 5.84 4.05 +mentale mental adj f s 18.15 11.35 6.92 4.8 +mentalement mentalement adv 4.37 6.42 4.37 6.42 +mentales mental adj f p 18.15 11.35 1.68 1.01 +mentaliser mentaliser ver 0 0.07 0 0.07 inf; +mentalité mentalité nom f s 2.79 5.95 2.15 5.27 +mentalités mentalité nom f p 2.79 5.95 0.64 0.68 +mentant mentir ver 185.16 52.03 0.72 0.54 par:pre; +mentaux mental adj m p 18.15 11.35 3.71 1.49 +mente mentir ver 185.16 52.03 1.94 0.41 sub:pre:1s;sub:pre:3s; +mentent mentir ver 185.16 52.03 5.57 1.15 ind:pre:3p; +menterie menterie nom f s 0.12 0.74 0.1 0.14 +menteries menterie nom f p 0.12 0.74 0.02 0.61 +mentes mentir ver 185.16 52.03 0.32 0 sub:pre:2s; +menteur menteur nom m s 36.64 5.34 23.57 3.38 +menteurs menteur nom m p 36.64 5.34 4.46 1.01 +menteuse menteur nom f s 36.64 5.34 8.28 0.95 +menteuses menteur adj f p 8.49 4.8 0.36 0.27 +mentez mentir ver 185.16 52.03 10.29 1.22 imp:pre:2p;ind:pre:2p; +menthe menthe nom f s 5.51 9.53 5.21 9.39 +menthes menthe nom f p 5.51 9.53 0.3 0.14 +menthol menthol nom m s 0.44 0.41 0.36 0.34 +menthols menthol nom m p 0.44 0.41 0.08 0.07 +mentholé mentholé adj m s 0.19 0.34 0.04 0 +mentholée mentholé adj f s 0.19 0.34 0.1 0.2 +mentholées mentholé adj f p 0.19 0.34 0.04 0.14 +mentholés mentholé nom m p 0.03 0 0.01 0 +menti mentir ver m s 185.16 52.03 47.32 9.59 par:pas; +mentiez mentir ver 185.16 52.03 0.61 0.2 ind:imp:2p; +mention mention nom f s 4.27 6.01 4.03 5.54 +mentionna mentionner ver 15.61 9.32 0.1 0.61 ind:pas:3s; +mentionnai mentionner ver 15.61 9.32 0 0.07 ind:pas:1s; +mentionnaient mentionner ver 15.61 9.32 0.03 0.47 ind:imp:3p; +mentionnais mentionner ver 15.61 9.32 0.1 0.07 ind:imp:1s;ind:imp:2s; +mentionnait mentionner ver 15.61 9.32 0.33 1.01 ind:imp:3s; +mentionnant mentionner ver 15.61 9.32 0.05 0.47 par:pre; +mentionne mentionner ver 15.61 9.32 2.33 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mentionnent mentionner ver 15.61 9.32 0.64 0.27 ind:pre:3p; +mentionner mentionner ver 15.61 9.32 2.86 2.03 inf; +mentionnerai mentionner ver 15.61 9.32 0.11 0.14 ind:fut:1s; +mentionnerais mentionner ver 15.61 9.32 0.01 0.07 cnd:pre:1s; +mentionnerait mentionner ver 15.61 9.32 0.14 0 cnd:pre:3s; +mentionneras mentionner ver 15.61 9.32 0.02 0 ind:fut:2s; +mentionnerez mentionner ver 15.61 9.32 0.04 0 ind:fut:2p; +mentionnes mentionner ver 15.61 9.32 0.14 0 ind:pre:2s; +mentionnez mentionner ver 15.61 9.32 0.7 0 imp:pre:2p;ind:pre:2p; +mentionniez mentionner ver 15.61 9.32 0.07 0 ind:imp:2p; +mentionnons mentionner ver 15.61 9.32 0.11 0.07 imp:pre:1p; +mentionnât mentionner ver 15.61 9.32 0.01 0 sub:imp:3s; +mentionné mentionner ver m s 15.61 9.32 6.56 2.36 par:pas; +mentionnée mentionner ver f s 15.61 9.32 0.42 0.61 par:pas; +mentionnées mentionner ver f p 15.61 9.32 0.39 0.34 par:pas; +mentionnés mentionner ver m p 15.61 9.32 0.45 0.2 par:pas; +mentions mention nom f p 4.27 6.01 0.24 0.47 +mentir mentir ver 185.16 52.03 37.01 15.2 inf; +mentira mentir ver 185.16 52.03 0.51 0.07 ind:fut:3s; +mentirai mentir ver 185.16 52.03 1.6 0.14 ind:fut:1s; +mentiraient mentir ver 185.16 52.03 0.3 0.14 cnd:pre:3p; +mentirais mentir ver 185.16 52.03 3.47 1.35 cnd:pre:1s;cnd:pre:2s; +mentirait mentir ver 185.16 52.03 1.55 0.07 cnd:pre:3s; +mentiras mentir ver 185.16 52.03 0.24 0.07 ind:fut:2s; +mentirez mentir ver 185.16 52.03 0.05 0 ind:fut:2p; +mentiriez mentir ver 185.16 52.03 0.19 0 cnd:pre:2p; +mentirons mentir ver 185.16 52.03 0.04 0.07 ind:fut:1p; +mentiront mentir ver 185.16 52.03 0.05 0 ind:fut:3p; +mentis mentir ver 185.16 52.03 0.25 0.47 ind:pas:1s; +mentissent mentir ver 185.16 52.03 0 0.07 sub:imp:3p; +mentit mentir ver 185.16 52.03 0.06 1.01 ind:pas:3s; +menton menton nom m s 6.58 60 6.45 58.65 +mentonnet mentonnet nom m s 0 0.07 0 0.07 +mentonnier mentonnier adj m s 0 0.14 0 0.07 +mentonnière mentonnier nom f s 0 0.34 0 0.34 +mentons mentir ver 185.16 52.03 0.24 0.14 imp:pre:1p;ind:pre:1p; +mentor mentor nom m s 1.72 0.74 1.62 0.61 +mentors mentor nom m p 1.72 0.74 0.1 0.14 +mentule mentule nom f s 0 0.07 0 0.07 +mentît mentir ver 185.16 52.03 0 0.14 sub:imp:3s; +menu menu nom m s 11.15 14.53 9.87 12.03 +menue menu adj f s 2.29 27.77 0.69 5.68 +menues menu adj f p 2.29 27.77 0.19 4.32 +menuet menuet nom m s 0.75 0.95 0.62 0.81 +menuets menuet nom m p 0.75 0.95 0.14 0.14 +menuise menuise nom f s 0.14 0 0.14 0 +menuiser menuiser ver 0 0.14 0 0.07 inf; +menuisera menuiser ver 0 0.14 0 0.07 ind:fut:3s; +menuiserie menuiserie nom f s 0.46 1.22 0.46 1.22 +menuisier menuisier nom m s 3.54 4.46 2.88 4.05 +menuisiers menuisier nom m p 3.54 4.46 0.65 0.41 +menus menu nom m p 11.15 14.53 1.28 2.5 +menât mener ver 99.86 137.7 0 0.2 sub:imp:3s; +menèrent mener ver 99.86 137.7 0.09 0.88 ind:pas:3p; +mené mener ver m s 99.86 137.7 10.41 10.07 par:pas; +menée mener ver f s 99.86 137.7 3.89 8.65 par:pas; +menées mener ver f p 99.86 137.7 0.82 2.57 par:pas; +menés mener ver m p 99.86 137.7 2.51 2.97 par:pas; +mer mer nom f s 106.61 257.57 99.49 246.55 +mer_air mer_air adj f s 0.01 0 0.01 0 +mercanti mercanti nom m s 0.27 0.2 0.14 0.14 +mercantile mercantile adj s 0.1 0.95 0.1 0.54 +mercantiles mercantile adj p 0.1 0.95 0 0.41 +mercantilisme mercantilisme nom m s 0.04 0.14 0.04 0.14 +mercantis mercanti nom m p 0.27 0.2 0.14 0.07 +mercaptan mercaptan nom m s 0.01 0 0.01 0 +mercenaire mercenaire nom s 2.87 2.3 1.33 0.54 +mercenaires mercenaire nom p 2.87 2.3 1.54 1.76 +mercerie mercerie nom f s 0.94 9.32 0.94 8.99 +merceries mercerie nom f p 0.94 9.32 0 0.34 +mercerisé merceriser ver m s 0.02 0.27 0.02 0.27 par:pas; +merchandising merchandising nom m s 0.16 0 0.16 0 +merci merci ono 936.01 42.36 936.01 42.36 +mercier mercier nom m s 0.16 4.26 0.14 0.34 +merciers mercier nom m p 0.16 4.26 0 0.14 +mercis merci nom m p 379.38 53.51 0.94 0.27 +mercière mercier nom f s 0.16 4.26 0.01 3.72 +mercières mercier nom f p 0.16 4.26 0 0.07 +mercredi mercredi nom m s 21.48 12.64 20.38 11.82 +mercredis mercredi nom m p 21.48 12.64 1.11 0.81 +mercure mercure nom m s 1.13 1.76 1.13 1.76 +mercurey mercurey nom m s 0 0.27 0 0.27 +mercuriale mercuriale nom f s 0 0.14 0 0.07 +mercuriales mercuriale nom f p 0 0.14 0 0.07 +mercurochrome mercurochrome nom m s 0.07 1.22 0.07 1.22 +merda merder ver 16.45 3.58 0.42 0 ind:pas:3s; +merdait merder ver 16.45 3.58 0.19 0 ind:imp:3s; +merdasse merdasse ono 0.02 0.07 0.02 0.07 +merde merde ono 221.46 33.85 221.46 33.85 +merdent merder ver 16.45 3.58 0.08 0 ind:pre:3p; +merder merder ver 16.45 3.58 0.89 0 inf; +merderai merder ver 16.45 3.58 0.02 0 ind:fut:1s; +merdes merde nom f p 213.05 62.77 6.37 1.49 +merdeuse merdeux adj f s 3.56 2.57 0.82 0.54 +merdeuses merdeux adj f p 3.56 2.57 0.01 0.54 +merdeux merdeux nom m 5.22 1.82 5.22 1.82 +merdez merder ver 16.45 3.58 0.16 0 imp:pre:2p;ind:pre:2p; +merdier merdier nom m s 5.34 1.96 5.33 1.89 +merdiers merdier nom m p 5.34 1.96 0.01 0.07 +merdique merdique adj s 7.82 2.16 6.53 1.42 +merdiques merdique adj p 7.82 2.16 1.29 0.74 +merdoie merdoyer ver 0 0.2 0 0.14 imp:pre:2s; +merdouille merdouille nom f s 0.2 0.34 0.2 0.34 +merdouillé merdouiller ver m s 0.01 0 0.01 0 par:pas; +merdoyait merdoyer ver 0 0.2 0 0.07 ind:imp:3s; +merdre merdre ono 0.04 0.07 0.04 0.07 +merdé merder ver m s 16.45 3.58 9.14 0.2 par:pas; +merdée merder ver f s 16.45 3.58 0.04 0.07 par:pas; +merguez merguez nom f 0.7 2.16 0.7 2.16 +meringue meringue nom f s 0.51 1.35 0.47 0.81 +meringues meringue nom f p 0.51 1.35 0.04 0.54 +meringué meringuer ver m s 0.2 0.27 0.01 0.07 par:pas; +meringuée meringuer ver f s 0.2 0.27 0.2 0.14 par:pas; +meringuées meringuer ver f p 0.2 0.27 0 0.07 par:pas; +merise merise nom f s 0.01 0.07 0.01 0 +merises merise nom f p 0.01 0.07 0 0.07 +merisier merisier nom m s 0.13 1.15 0.13 0.81 +merisiers merisier nom m p 0.13 1.15 0 0.34 +merl merl nom m s 0.26 0 0.26 0 +merlan merlan nom m s 1.81 3.78 1.76 3.45 +merlans merlan nom m p 1.81 3.78 0.05 0.34 +merle merle nom m s 2.24 4.19 1.8 2.64 +merleau merleau nom m s 0 0.07 0 0.07 +merles merle nom m p 2.24 4.19 0.45 1.55 +merlette merlette nom f s 0 0.2 0 0.2 +merlin merlin nom m s 0.02 0.2 0.02 0.2 +merlot merlot nom m s 1.9 0 1.9 0 +merlu merlu nom m s 0.01 0.14 0.01 0.14 +merluche merluche nom f s 0.01 0.27 0.01 0.2 +merluches merluche nom f p 0.01 0.27 0 0.07 +merrain merrain nom m s 0 0.61 0 0.41 +merrains merrain nom m p 0 0.61 0 0.2 +mers mer nom f p 106.61 257.57 7.12 11.01 +merveille merveille nom f s 21.16 33.31 15.64 22.5 +merveilles merveille nom f p 21.16 33.31 5.52 10.81 +merveilleuse merveilleux adj f s 79.25 40.34 20.93 14.8 +merveilleusement merveilleusement adv 3.63 7.03 3.63 7.03 +merveilleuses merveilleux adj f p 79.25 40.34 3.88 4.26 +merveilleux merveilleux adj m 79.25 40.34 54.44 21.28 +merveillosité merveillosité nom f s 0.01 0 0.01 0 +mes mes adj_pos 1102.23 1023.11 1102.23 1023.11 +mesa mesa nom f s 0.51 0.07 0.51 0.07 +mescal mescal nom m s 0.26 0 0.26 0 +mescaline mescaline nom f s 0.25 0.07 0.25 0.07 +mesclun mesclun nom m s 0.05 0 0.05 0 +mesdames madame nom_sup f p 307.36 203.45 58.03 4.73 +mesdemoiselles mesdemoiselles nom f p 7.36 0.74 7.36 0.74 +mesmérisme mesmérisme nom m s 0.04 0 0.04 0 +mesnils mesnil nom m p 0 0.07 0 0.07 +mesquin mesquin adj m s 2.93 6.96 1.64 2.91 +mesquine mesquin adj f s 2.93 6.96 0.74 1.62 +mesquinement mesquinement adv 0 0.14 0 0.14 +mesquinerie mesquinerie nom f s 0.51 1.96 0.2 1.42 +mesquineries mesquinerie nom f p 0.51 1.96 0.31 0.54 +mesquines mesquin adj f p 2.93 6.96 0.21 1.35 +mesquins mesquin adj m p 2.93 6.96 0.34 1.08 +mess mess nom m 1.74 2.57 1.74 2.57 +message message nom m s 117.11 42.57 99.7 31.15 +messager messager nom m s 10.87 6.28 9.6 3.38 +messagerie messagerie nom f s 1.05 0.68 1.02 0.14 +messageries messagerie nom f p 1.05 0.68 0.03 0.54 +messagers messager nom m p 10.87 6.28 1.06 2.09 +messages message nom m p 117.11 42.57 17.41 11.42 +messagère messager nom f s 10.87 6.28 0.21 0.61 +messagères messager nom f p 10.87 6.28 0 0.2 +messaliste messaliste adj s 0 0.2 0 0.2 +messalistes messaliste nom p 0 0.2 0 0.14 +messe messe nom f s 18.36 35.68 16.14 32.7 +messeigneurs messeigneurs nom m p 0.5 0.14 0.5 0.14 +messer messer nom m s 1.5 0.95 1.5 0.95 +messes messe nom f p 18.36 35.68 2.22 2.97 +messianique messianique adj s 0.05 0.27 0.03 0.2 +messianiques messianique adj f p 0.05 0.27 0.02 0.07 +messianisme messianisme nom m s 0 0.07 0 0.07 +messidor messidor nom m s 0 0.07 0 0.07 +messie messie nom m s 0.69 0.54 0.61 0.54 +messies messie nom m p 0.69 0.54 0.08 0 +messieurs monsieur nom_sup m p 739.12 324.86 155.66 38.11 +messieurs_dames messieurs_dames nom m p 0.48 0.68 0.48 0.68 +messine messin adj f s 0.02 0.07 0.02 0.07 +messire messire nom m s 5.69 0.47 5.21 0.41 +messires messire nom m p 5.69 0.47 0.48 0.07 +messéance messéance nom f s 0 0.07 0 0.07 +mestre mestre nom m s 0.01 0 0.01 0 +mesura mesurer ver 19.65 47.3 0.01 1.76 ind:pas:3s; +mesurable mesurable adj s 0.22 0.95 0.19 0.74 +mesurables mesurable adj f p 0.22 0.95 0.02 0.2 +mesurai mesurer ver 19.65 47.3 0 0.54 ind:pas:1s; +mesuraient mesurer ver 19.65 47.3 0.16 0.95 ind:imp:3p; +mesurais mesurer ver 19.65 47.3 0.35 1.82 ind:imp:1s;ind:imp:2s; +mesurait mesurer ver 19.65 47.3 0.79 4.53 ind:imp:3s; +mesurant mesurer ver 19.65 47.3 0.42 2.23 par:pre; +mesurassent mesurer ver 19.65 47.3 0 0.07 sub:imp:3p; +mesure mesure nom f s 32.15 132.84 21.02 112.16 +mesurent mesurer ver 19.65 47.3 1.01 1.08 ind:pre:3p; +mesurer mesurer ver 19.65 47.3 6.63 16.35 inf; +mesurera mesurer ver 19.65 47.3 0.37 0.2 ind:fut:3s; +mesurerait mesurer ver 19.65 47.3 0.06 0 cnd:pre:3s; +mesurerez mesurer ver 19.65 47.3 0 0.07 ind:fut:2p; +mesurerons mesurer ver 19.65 47.3 0 0.07 ind:fut:1p; +mesureront mesurer ver 19.65 47.3 0.07 0 ind:fut:3p; +mesures mesure nom f p 32.15 132.84 11.14 20.68 +mesurette mesurette nom f s 0.01 0 0.01 0 +mesureur mesureur nom m s 0.01 0.27 0.01 0.27 +mesurez mesurer ver 19.65 47.3 0.91 0.34 imp:pre:2p;ind:pre:2p; +mesuriez mesurer ver 19.65 47.3 0.03 0.07 ind:imp:2p; +mesurions mesurer ver 19.65 47.3 0.1 0.2 ind:imp:1p; +mesurons mesurer ver 19.65 47.3 0.11 0 imp:pre:1p; +mesurât mesurer ver 19.65 47.3 0 0.14 sub:imp:3s; +mesurèrent mesurer ver 19.65 47.3 0 0.2 ind:pas:3p; +mesuré mesurer ver m s 19.65 47.3 1.81 4.05 par:pas; +mesurée mesurer ver f s 19.65 47.3 0.19 1.35 par:pas; +mesurées mesurer ver f p 19.65 47.3 0.23 0.27 par:pas; +mesurés mesurer ver m p 19.65 47.3 0.03 0.54 par:pas; +met mettre ver 1004.83 1083.72 89.25 86.69 ind:pre:3s; +mets mettre ver 1004.83 1083.72 151.83 33.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mets_la_toi mets_la_toi nom m 0.01 0 0.01 0 +mettable mettable adj s 0.02 0.14 0.02 0.14 +mettaient mettre ver 1004.83 1083.72 1.81 19.39 ind:imp:3p; +mettais mettre ver 1004.83 1083.72 5.16 9.46 ind:imp:1s;ind:imp:2s; +mettait mettre ver 1004.83 1083.72 10.14 75.54 ind:imp:3s; +mettant mettre ver 1004.83 1083.72 5.61 20.41 par:pre; +mette mettre ver 1004.83 1083.72 16.36 12.97 sub:pre:1s;sub:pre:3s; +mettent mettre ver 1004.83 1083.72 17.98 23.24 ind:pre:3p;sub:pre:3p; +mettes mettre ver 1004.83 1083.72 3.34 1.08 sub:pre:2s; +metteur metteur nom m s 5.5 7.7 5.24 6.01 +metteurs metteur nom m p 5.5 7.7 0.25 1.69 +metteuse metteur nom f s 5.5 7.7 0.01 0 +mettez mettre ver 1004.83 1083.72 85.44 9.86 imp:pre:2p;ind:pre:2p; +mettiez mettre ver 1004.83 1083.72 2.17 0.74 ind:imp:2p; +mettions mettre ver 1004.83 1083.72 0.27 2.16 ind:imp:1p; +mettons mettre ver 1004.83 1083.72 15.8 9.32 imp:pre:1p;ind:pre:1p; +mettra mettre ver 1004.83 1083.72 15.12 7.5 ind:fut:3s; +mettrai mettre ver 1004.83 1083.72 12.42 4.59 ind:fut:1s; +mettraient mettre ver 1004.83 1083.72 1.01 2.23 cnd:pre:3p; +mettrais mettre ver 1004.83 1083.72 5.11 2.91 cnd:pre:1s;cnd:pre:2s; +mettrait mettre ver 1004.83 1083.72 4.91 7.64 cnd:pre:3s; +mettras mettre ver 1004.83 1083.72 4.67 1.35 ind:fut:2s; +mettre mettre ver 1004.83 1083.72 271.05 230.2 inf;;inf;;inf;;inf;; +mettrez mettre ver 1004.83 1083.72 2.03 1.22 ind:fut:2p; +mettriez mettre ver 1004.83 1083.72 0.87 0.14 cnd:pre:2p; +mettrions mettre ver 1004.83 1083.72 0.05 0.2 cnd:pre:1p; +mettrons mettre ver 1004.83 1083.72 2 0.81 ind:fut:1p; +mettront mettre ver 1004.83 1083.72 2.31 1.01 ind:fut:3p; +meubla meubler ver 0.54 10.61 0 0.07 ind:pas:3s; +meublaient meubler ver 0.54 10.61 0 0.2 ind:imp:3p; +meublais meubler ver 0.54 10.61 0 0.07 ind:imp:1s; +meublait meubler ver 0.54 10.61 0.01 0.47 ind:imp:3s; +meublant meubler ver 0.54 10.61 0 0.14 par:pre; +meuble meuble nom m s 19.48 53.99 2.46 11.76 +meublent meubler ver 0.54 10.61 0 0.27 ind:pre:3p; +meubler meubler ver 0.54 10.61 0.38 3.85 inf; +meubles meuble nom m p 19.48 53.99 17.01 42.23 +meublèrent meubler ver 0.54 10.61 0 0.07 ind:pas:3p; +meublé meublé adj m s 0.9 4.53 0.65 2.16 +meublée meublé adj f s 0.9 4.53 0.23 1.08 +meublées meublé adj f p 0.9 4.53 0 0.68 +meublés meublé adj m p 0.9 4.53 0.02 0.61 +meuf meuf nom f s 8.29 2.57 6.22 2.3 +meufs meuf nom f p 8.29 2.57 2.08 0.27 +meugla meugler ver 0.28 1.08 0 0.2 ind:pas:3s; +meuglaient meugler ver 0.28 1.08 0 0.34 ind:imp:3p; +meuglait meugler ver 0.28 1.08 0.02 0.07 ind:imp:3s; +meuglant meugler ver 0.28 1.08 0 0.14 par:pre; +meugle meugler ver 0.28 1.08 0.12 0.07 ind:pre:3s; +meuglement meuglement nom m s 0.56 1.35 0.03 0.61 +meuglements meuglement nom m p 0.56 1.35 0.54 0.74 +meugler meugler ver 0.28 1.08 0.13 0.27 inf; +meuglé meugler ver m s 0.28 1.08 0.01 0 par:pas; +meuh meuh ono 0.78 0.14 0.78 0.14 +meulage meulage nom m s 0.01 0 0.01 0 +meule meule nom f s 1.39 8.38 1.17 4.73 +meuler meuler ver 0.06 0.27 0.02 0.14 inf; +meules meule nom f p 1.39 8.38 0.22 3.65 +meuleuse meuleuse nom f s 0.01 0.07 0.01 0.07 +meulez meuler ver 0.06 0.27 0.01 0 ind:pre:2p; +meulière meulier nom f s 0 0.81 0 0.68 +meulières meulier nom f p 0 0.81 0 0.14 +meunier meunier nom m s 0.96 0.95 0.76 0.74 +meuniers meunier nom m p 0.96 0.95 0.17 0.14 +meunière meunier adj f s 0.44 0.41 0.23 0.14 +meure mourir ver 916.4 391.08 14.97 5.54 sub:pre:1s;sub:pre:3s; +meurent mourir ver 916.4 391.08 19.13 10.47 ind:pre:3p; +meures mourir ver 916.4 391.08 1.88 0.14 sub:pre:2s; +meurette meurette nom f s 0 0.34 0 0.34 +meurs mourir ver 916.4 391.08 43.9 5.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +meursault meursault nom m s 0 0.2 0 0.2 +meurt mourir ver 916.4 391.08 44.29 20.41 ind:pre:3s; +meurtre meurtre nom m s 104.45 15.47 81.94 12.3 +meurtre_suicide meurtre_suicide nom m s 0.04 0 0.04 0 +meurtres meurtre nom m p 104.45 15.47 22.51 3.18 +meurtri meurtrir ver m s 0.8 6.35 0.34 1.35 par:pas; +meurtrie meurtri adj f s 0.66 5 0.32 1.76 +meurtrier meurtrier nom m s 25.38 4.59 19.57 1.69 +meurtriers meurtrier nom m p 25.38 4.59 2.48 0.54 +meurtries meurtri adj f p 0.66 5 0.03 0.74 +meurtrir meurtrir ver 0.8 6.35 0.04 1.69 inf; +meurtrira meurtrir ver 0.8 6.35 0 0.07 ind:fut:3s; +meurtriront meurtrir ver 0.8 6.35 0 0.07 ind:fut:3p; +meurtris meurtrir ver m p 0.8 6.35 0.29 0.34 ind:pre:1s;ind:pre:2s;par:pas; +meurtrissaient meurtrir ver 0.8 6.35 0 0.34 ind:imp:3p; +meurtrissais meurtrir ver 0.8 6.35 0 0.07 ind:imp:1s; +meurtrissait meurtrir ver 0.8 6.35 0 0.27 ind:imp:3s; +meurtrissant meurtrir ver 0.8 6.35 0 0.27 par:pre; +meurtrissent meurtrir ver 0.8 6.35 0 0.14 ind:pre:3p; +meurtrissure meurtrissure nom f s 0.09 1.42 0.04 0.88 +meurtrissures meurtrissure nom f p 0.09 1.42 0.05 0.54 +meurtrit meurtrir ver 0.8 6.35 0.04 0.2 ind:pre:3s;ind:pas:3s; +meurtrière meurtrier nom f s 25.38 4.59 2.36 1.22 +meurtrières meurtrier nom f p 25.38 4.59 0.96 1.15 +meus mouvoir ver 1.75 13.18 0.02 0.14 imp:pre:2s;ind:pre:1s; +meusien meusien adj m s 0 0.54 0 0.2 +meusienne meusien adj f s 0 0.54 0 0.07 +meusiennes meusien adj f p 0 0.54 0 0.14 +meusiens meusien adj m p 0 0.54 0 0.14 +meut mouvoir ver 1.75 13.18 0.41 1.28 ind:pre:3s; +meute meute nom f s 2.45 7.36 2.25 6.55 +meutes meute nom f p 2.45 7.36 0.2 0.81 +meuvent mouvoir ver 1.75 13.18 0.17 0.68 ind:pre:3p; +mexicain mexicain nom m s 8.06 2.43 3.98 1.62 +mexicaine mexicain adj f s 7.74 4.05 2.42 1.49 +mexicaines mexicain adj f p 7.74 4.05 0.59 0.68 +mexicains mexicain nom m p 8.06 2.43 3.22 0.41 +mexico mexico adv 0.54 0.07 0.54 0.07 +mezcal mezcal nom m s 0.13 0 0.13 0 +mezza_voce mezza_voce adv 0 0.2 0 0.2 +mezza_voce mezza_voce adv 0 0.07 0 0.07 +mezzanine mezzanine nom f s 0.13 0.47 0.12 0.27 +mezzanines mezzanine nom f p 0.13 0.47 0.01 0.2 +mezzo mezzo nom s 0.03 0.14 0.03 0.07 +mezzo_soprano mezzo_soprano nom s 0.2 0 0.2 0 +mezzos mezzo nom p 0.03 0.14 0 0.07 +mi mi nom_sup m 8.97 5.61 8.97 5.61 +mi_accablé mi_accablé adj m s 0 0.07 0 0.07 +mi_africains mi_africains nom m 0 0.07 0 0.07 +mi_airain mi_airain nom m s 0 0.07 0 0.07 +mi_allemand mi_allemand nom m 0 0.07 0 0.07 +mi_allongé mi_allongé adj m s 0 0.07 0 0.07 +mi_américaine mi_américaine nom m 0.02 0 0.02 0 +mi_ange mi_ange nom m s 0.01 0 0.01 0 +mi_angevins mi_angevins nom m 0 0.07 0 0.07 +mi_animal mi_animal adj m s 0.05 0 0.05 0 +mi_animaux mi_animaux adj m 0 0.07 0 0.07 +mi_août mi_août nom f s 0 0.2 0 0.2 +mi_appointé mi_appointé adj f p 0 0.07 0 0.07 +mi_appréhension mi_appréhension nom f s 0 0.07 0 0.07 +mi_arabe mi_arabe adj s 0 0.07 0 0.07 +mi_artisan mi_artisan nom m s 0 0.07 0 0.07 +mi_automne mi_automne nom f s 0 0.14 0 0.14 +mi_bandit mi_bandit nom m s 0 0.07 0 0.07 +mi_bas mi_bas nom m 0.14 0.14 0.14 0.14 +mi_biblique mi_biblique adj f s 0 0.07 0 0.07 +mi_black mi_black adj m s 0.14 0 0.14 0 +mi_blanc mi_blanc nom m 0 0.14 0 0.14 +mi_blancs mi_blancs nom m 0 0.07 0 0.07 +mi_bleu mi_bleu adj 0 0.07 0 0.07 +mi_bois mi_bois nom m 0 0.07 0 0.07 +mi_bordel mi_bordel nom m s 0 0.07 0 0.07 +mi_bourgeois mi_bourgeois adj m s 0 0.07 0 0.07 +mi_bovins mi_bovins nom m 0 0.07 0 0.07 +mi_braconnier mi_braconnier nom m p 0 0.07 0 0.07 +mi_bras mi_bras nom m 0 0.14 0 0.14 +mi_britannique mi_britannique adj s 0 0.07 0 0.07 +mi_building mi_building nom m s 0 0.07 0 0.07 +mi_bureaucrate mi_bureaucrate adj m p 0 0.07 0 0.07 +mi_bête mi_bête adj m s 0.04 0 0.04 0 +mi_café mi_café adj 0 0.07 0 0.07 +mi_café mi_café nom m s 0 0.07 0 0.07 +mi_campagnarde mi_campagnarde nom m 0 0.07 0 0.07 +mi_canard mi_canard nom m s 0 0.07 0 0.07 +mi_capacité mi_capacité nom f s 0.02 0 0.02 0 +mi_carrier mi_carrier nom f s 0.01 0 0.01 0 +mi_carême mi_carême nom f s 0.01 0.61 0.01 0.61 +mi_chair mi_chair adj m s 0 0.2 0 0.2 +mi_chat mi_chat nom m s 0 0.07 0 0.07 +mi_chatte mi_chatte nom f s 0.01 0 0.01 0 +mi_chauve mi_chauve adj s 0 0.07 0 0.07 +mi_chemin mi_chemin nom m s 3.72 6.35 3.72 6.35 +mi_chou mi_chou nom m s 0 0.07 0 0.07 +mi_chourineur mi_chourineur nom m s 0 0.07 0 0.07 +mi_châtaignier mi_châtaignier nom m p 0 0.07 0 0.07 +mi_chèvre mi_chèvre nom f s 0 0.07 0 0.07 +mi_chêne mi_chêne nom m p 0 0.07 0 0.07 +mi_clair mi_clair adj m s 0 0.07 0 0.07 +mi_clos mi_clos adj m 0.21 7.16 0.11 6.08 +mi_clos mi_clos adj f s 0.21 7.16 0 0.2 +mi_clos mi_clos adj f p 0.21 7.16 0.1 0.88 +mi_cloître mi_cloître nom m s 0 0.07 0 0.07 +mi_comique mi_comique adj m s 0 0.14 0 0.14 +mi_complice mi_complice adj m p 0 0.07 0 0.07 +mi_compote mi_compote nom f s 0 0.07 0 0.07 +mi_confit mi_confit nom m 0 0.07 0 0.07 +mi_confondu mi_confondu adj m p 0 0.07 0 0.07 +mi_connu mi_connu adj f s 0.01 0 0.01 0 +mi_consterné mi_consterné adj m s 0 0.07 0 0.07 +mi_contrarié mi_contrarié adj m p 0 0.07 0 0.07 +mi_corbeaux mi_corbeaux nom m p 0 0.07 0 0.07 +mi_corps mi_corps nom m 0.01 1.55 0.01 1.55 +mi_course mi_course nom f s 0.08 0.27 0.08 0.27 +mi_courtois mi_courtois adj m 0 0.07 0 0.07 +mi_cousin mi_cousin nom f s 0 0.14 0 0.07 +mi_cousin mi_cousin nom m p 0 0.14 0 0.07 +mi_coutume mi_coutume nom f s 0 0.07 0 0.07 +mi_crabe mi_crabe nom m s 0 0.07 0 0.07 +mi_croyant mi_croyant nom m 0 0.07 0 0.07 +mi_cruel mi_cruel adj m s 0 0.07 0 0.07 +mi_créature mi_créature nom f s 0 0.07 0 0.07 +mi_cuisse mi_cuisse nom f s 0.06 1.35 0.04 0.81 +mi_cuisse mi_cuisse nom f p 0.06 1.35 0.01 0.54 +mi_curieux mi_curieux adj m p 0 0.14 0 0.14 +mi_céleste mi_céleste adj m s 0 0.07 0 0.07 +mi_cérémonieux mi_cérémonieux adj m 0 0.07 0 0.07 +mi_côte mi_côte nom f s 0 0.2 0 0.2 +mi_dentelle mi_dentelle nom f s 0 0.07 0 0.07 +mi_didactique mi_didactique adj s 0 0.07 0 0.07 +mi_distance mi_distance nom f s 0.04 0.34 0.04 0.34 +mi_douce mi_douce adj f s 0 0.07 0 0.07 +mi_décadents mi_décadents nom m 0 0.07 0 0.07 +mi_décembre mi_décembre nom m 0.01 0.27 0.01 0.27 +mi_démon mi_démon nom m s 0.02 0 0.02 0 +mi_désir mi_désir nom m s 0 0.07 0 0.07 +mi_effrayé mi_effrayé adj f s 0 0.2 0 0.07 +mi_effrayé mi_effrayé adj m p 0 0.2 0 0.14 +mi_effrontée mi_effrontée nom m 0 0.07 0 0.07 +mi_enfant mi_enfant nom s 0.01 0.07 0.01 0.07 +mi_enjoué mi_enjoué adj f s 0 0.07 0 0.07 +mi_enterré mi_enterré adj m s 0 0.07 0 0.07 +mi_envieux mi_envieux adj m p 0 0.07 0 0.07 +mi_espagnol mi_espagnol nom m 0 0.07 0 0.07 +mi_européen mi_européen nom m 0 0.14 0 0.14 +mi_excitation mi_excitation nom f s 0 0.07 0 0.07 +mi_farceur mi_farceur nom m 0 0.07 0 0.07 +mi_faux mi_faux adj m 0 0.07 0 0.07 +mi_femme mi_femme nom f s 0.12 0.07 0.12 0.07 +mi_fermiers mi_fermiers nom m 0 0.07 0 0.07 +mi_fiel mi_fiel nom m s 0 0.07 0 0.07 +mi_figue mi_figue nom f s 0.02 0.54 0.02 0.54 +mi_flanc mi_flanc nom m s 0 0.14 0 0.14 +mi_fleuve mi_fleuve nom m s 0.08 0 0.08 0 +mi_français mi_français nom m 0 0.14 0 0.14 +mi_furieux mi_furieux adj m s 0 0.07 0 0.07 +mi_février mi_février nom f s 0.01 0.07 0.01 0.07 +mi_garçon mi_garçon nom m s 0 0.07 0 0.07 +mi_geste mi_geste nom m s 0 0.07 0 0.07 +mi_gigolpince mi_gigolpince nom m s 0 0.07 0 0.07 +mi_gnon mi_gnon nom m s 0 0.07 0 0.07 +mi_goguenard mi_goguenard adj f s 0 0.07 0 0.07 +mi_gonzesse mi_gonzesse nom f s 0 0.07 0 0.07 +mi_goéland mi_goéland nom m p 0 0.07 0 0.07 +mi_grave mi_grave adj p 0 0.07 0 0.07 +mi_grenier mi_grenier nom m s 0 0.07 0 0.07 +mi_grognon mi_grognon nom m 0 0.07 0 0.07 +mi_grondeur mi_grondeur adj m s 0 0.07 0 0.07 +mi_grossier mi_grossier adj f p 0 0.07 0 0.07 +mi_haute mi_haute adj f s 0 0.07 0 0.07 +mi_hauteur mi_hauteur nom f s 0.17 2.91 0.17 2.91 +mi_historique mi_historique adj f p 0 0.07 0 0.07 +mi_homme mi_homme nom m s 0.44 0.14 0.44 0.14 +mi_humain mi_humain nom m 0.08 0 0.08 0 +mi_humaine mi_humaine nom m 0.01 0.07 0.01 0.07 +mi_humains mi_humains nom m 0.01 0.07 0.01 0.07 +mi_hésitant mi_hésitant adj m s 0 0.07 0 0.07 +mi_idiotes mi_idiotes nom m 0 0.07 0 0.07 +mi_image mi_image nom f p 0 0.14 0 0.14 +mi_indien mi_indien nom m 0.01 0.07 0.01 0.07 +mi_indifférente mi_indifférente nom m 0 0.07 0 0.07 +mi_indigné mi_indigné adj f s 0 0.07 0 0.07 +mi_indigène mi_indigène adj s 0 0.07 0 0.07 +mi_indulgent mi_indulgent adj m s 0 0.14 0 0.14 +mi_inquiet mi_inquiet adj f s 0 0.14 0 0.14 +mi_ironique mi_ironique adj m s 0 0.41 0 0.27 +mi_ironique mi_ironique adj p 0 0.41 0 0.14 +mi_jambe mi_jambe nom f s 0 0.74 0 0.47 +mi_jambe mi_jambe nom f p 0 0.74 0 0.27 +mi_janvier mi_janvier nom f s 0.12 0.2 0.12 0.2 +mi_jaune mi_jaune adj s 0 0.14 0 0.07 +mi_jaune mi_jaune adj p 0 0.14 0 0.07 +mi_jersey mi_jersey nom m s 0 0.14 0 0.14 +mi_joue mi_joue nom f s 0 0.07 0 0.07 +mi_jour mi_jour nom m s 0 0.07 0 0.07 +mi_journée mi_journée nom f s 0.2 0.27 0.2 0.27 +mi_juif mi_juif nom m 0 0.07 0 0.07 +mi_juillet mi_juillet nom f s 0.02 0.41 0.02 0.41 +mi_juin mi_juin nom f s 0.01 0.07 0.01 0.07 +mi_laiton mi_laiton nom m s 0 0.07 0 0.07 +mi_lent mi_lent adj m s 0.01 0 0.01 0 +mi_londrès mi_londrès nom m 0 0.07 0 0.07 +mi_longs mi_longs nom m 0.15 0.34 0.15 0.34 +mi_longueur mi_longueur nom f s 0 0.07 0 0.07 +mi_lourd mi_lourd adj m s 0.17 0.14 0.17 0.14 +mi_machine mi_machine nom f s 0.07 0 0.06 0 +mi_machine mi_machine nom f p 0.07 0 0.01 0 +mi_mai mi_mai nom f s 0.01 0 0.01 0 +mi_mao mi_mao nom s 0 0.07 0 0.07 +mi_marchande mi_marchande nom m 0 0.07 0 0.07 +mi_mars mi_mars nom f s 0.04 0.2 0.04 0.2 +mi_marécage mi_marécage nom m p 0 0.07 0 0.07 +mi_menaçant mi_menaçant adj f s 0 0.07 0 0.07 +mi_meublé mi_meublé nom m 0 0.07 0 0.07 +mi_mexicain mi_mexicain nom m 0.01 0 0.01 0 +mi_miel mi_miel adj m s 0 0.07 0 0.07 +mi_mollet mi_mollet nom m 0.01 0.2 0.01 0.2 +mi_mollets mi_mollets nom m 0 0.27 0 0.27 +mi_mondaine mi_mondaine nom m 0 0.07 0 0.07 +mi_moqueur mi_moqueur nom m 0 0.14 0 0.14 +mi_mot mi_mot nom m s 0.03 0.27 0.03 0.2 +mi_mot mi_mot nom m p 0.03 0.27 0 0.07 +mi_mouton mi_mouton nom m s 0 0.07 0 0.07 +mi_moyen mi_moyen adj m s 0.1 0.07 0.08 0 +mi_moyen mi_moyen adj m p 0.1 0.07 0.02 0.07 +mi_métal mi_métal nom m s 0 0.07 0 0.07 +mi_narquoise mi_narquoise adj f s 0 0.07 0 0.07 +mi_noir mi_noir nom m 0 0.07 0 0.07 +mi_novembre mi_novembre nom f s 0.13 0.27 0.13 0.27 +mi_nuit mi_nuit nom f s 0 0.07 0 0.07 +mi_obscur mi_obscur adj f s 0 0.07 0 0.07 +mi_octobre mi_octobre nom f s 0.02 0.14 0.02 0.14 +mi_officiel mi_officiel nom m 0 0.14 0 0.14 +mi_ogre mi_ogre nom m s 0 0.07 0 0.07 +mi_oiseau mi_oiseau nom m s 0.1 0 0.1 0 +mi_oriental mi_oriental nom m 0 0.07 0 0.07 +mi_parcours mi_parcours nom m 0.25 0.34 0.25 0.34 +mi_parti mi_parti adj f s 0 0.61 0 0.61 +mi_pathétique mi_pathétique adj s 0 0.07 0 0.07 +mi_patio mi_patio nom m s 0 0.07 0 0.07 +mi_patois mi_patois nom m 0 0.07 0 0.07 +mi_peau mi_peau nom f s 0 0.07 0 0.07 +mi_pelouse mi_pelouse nom f s 0 0.07 0 0.07 +mi_pensée mi_pensée nom f p 0 0.14 0 0.14 +mi_pente mi_pente nom f s 0.02 0.81 0.02 0.81 +mi_pierre mi_pierre nom f s 0 0.07 0 0.07 +mi_pincé mi_pincé adj m s 0 0.07 0 0.07 +mi_plaintif mi_plaintif adj m s 0 0.2 0 0.2 +mi_plaisant mi_plaisant nom m 0 0.07 0 0.07 +mi_pleurant mi_pleurant nom m 0 0.07 0 0.07 +mi_pleurnichard mi_pleurnichard nom m 0 0.07 0 0.07 +mi_plombier mi_plombier nom m p 0 0.07 0 0.07 +mi_poisson mi_poisson nom m s 0 0.14 0 0.14 +mi_poitrine mi_poitrine nom f s 0 0.07 0 0.07 +mi_porcine mi_porcine nom m 0 0.07 0 0.07 +mi_portugaise mi_portugaise nom m 0 0.07 0 0.07 +mi_porté mi_porté nom m 0 0.07 0 0.07 +mi_poucet mi_poucet nom m s 0 0.07 0 0.07 +mi_poulet mi_poulet nom m s 0 0.07 0 0.07 +mi_prestidigitateur mi_prestidigitateur nom m s 0 0.07 0 0.07 +mi_promenoir mi_promenoir nom m s 0 0.07 0 0.07 +mi_protecteur mi_protecteur nom m 0 0.14 0 0.14 +mi_putain mi_putain nom f s 0 0.07 0 0.07 +mi_pêcheur mi_pêcheur nom m p 0 0.07 0 0.07 +mi_rageur mi_rageur adj m s 0 0.07 0 0.07 +mi_raide mi_raide adj f s 0 0.07 0 0.07 +mi_railleur mi_railleur nom m 0 0.14 0 0.14 +mi_raisin mi_raisin nom m s 0.02 0.61 0.02 0.61 +mi_renaissance mi_renaissance nom f s 0 0.07 0 0.07 +mi_respectueux mi_respectueux adj f s 0 0.07 0 0.07 +mi_riant mi_riant adj m s 0 0.27 0 0.27 +mi_rose mi_rose nom s 0 0.07 0 0.07 +mi_roulotte mi_roulotte nom f s 0 0.07 0 0.07 +mi_route mi_route nom f s 0 0.07 0 0.07 +mi_russe mi_russe adj m s 0.14 0.07 0.14 0.07 +mi_réalité mi_réalité nom f s 0 0.07 0 0.07 +mi_régime mi_régime nom m s 0 0.07 0 0.07 +mi_réprobateur mi_réprobateur adj m s 0 0.07 0 0.07 +mi_résigné mi_résigné nom m 0 0.07 0 0.07 +mi_saison mi_saison nom f s 0.14 0 0.14 0 +mi_salade mi_salade nom f s 0.01 0 0.01 0 +mi_salaire mi_salaire nom m s 0.01 0 0.01 0 +mi_samoan mi_samoan adj m s 0.01 0 0.01 0 +mi_sanglotant mi_sanglotant adj m s 0 0.07 0 0.07 +mi_satin mi_satin nom m s 0 0.07 0 0.07 +mi_satisfait mi_satisfait adj m s 0 0.07 0 0.07 +mi_sceptique mi_sceptique adj m s 0 0.07 0 0.07 +mi_scientifique mi_scientifique adj f p 0 0.07 0 0.07 +mi_secours mi_secours nom m 0 0.07 0 0.07 +mi_seigneur mi_seigneur nom m s 0 0.07 0 0.07 +mi_sel mi_sel nom m s 0 0.07 0 0.07 +mi_septembre mi_septembre nom f s 0.03 0.27 0.03 0.27 +mi_sidéré mi_sidéré adj f s 0 0.07 0 0.07 +mi_singe mi_singe nom m s 0.01 0 0.01 0 +mi_sombre mi_sombre adj m s 0 0.07 0 0.07 +mi_sommet mi_sommet nom m s 0 0.07 0 0.07 +mi_songe mi_songe nom m s 0 0.07 0 0.07 +mi_souriant mi_souriant adj m s 0 0.14 0 0.07 +mi_souriant mi_souriant adj f s 0 0.14 0 0.07 +mi_suisse mi_suisse adj s 0 0.07 0 0.07 +mi_série mi_série nom f s 0.01 0 0.01 0 +mi_sérieux mi_sérieux adj m 0 0.2 0 0.2 +mi_tantouse mi_tantouse nom f s 0 0.07 0 0.07 +mi_tendre mi_tendre nom m 0 0.14 0 0.14 +mi_terrorisé mi_terrorisé adj m s 0 0.07 0 0.07 +mi_timide mi_timide adj s 0 0.07 0 0.07 +mi_tortue mi_tortue adj f s 0 0.07 0 0.07 +mi_tour mi_tour nom s 0 0.07 0 0.07 +mi_tout mi_tout nom m 0 0.07 0 0.07 +mi_tragique mi_tragique adj m s 0 0.07 0 0.07 +mi_trimestre mi_trimestre nom m s 0.01 0 0.01 0 +mi_velours mi_velours nom m 0 0.07 0 0.07 +mi_verre mi_verre nom m s 0 0.14 0 0.14 +mi_vie mi_vie nom f s 0 0.07 0 0.07 +mi_voix mi_voix nom f 0.31 14.39 0.31 14.39 +mi_voluptueux mi_voluptueux adj m 0 0.07 0 0.07 +mi_vrais mi_vrais nom m 0 0.07 0 0.07 +mi_végétal mi_végétal nom m 0.01 0 0.01 0 +mi_vénitien mi_vénitien nom m 0 0.07 0 0.07 +mi_épaule mi_épaule nom f s 0 0.07 0 0.07 +mi_étage mi_étage nom m s 0 0.47 0 0.47 +mi_étendue mi_étendue nom f s 0 0.07 0 0.07 +mi_étonné mi_étonné adj m s 0 0.14 0 0.14 +mi_étudiant mi_étudiant nom m 0 0.07 0 0.07 +mi_été mi_été nom m 0 0.27 0 0.27 +mi_éveillé mi_éveillé adj f s 0 0.14 0 0.14 +miam miam ono 2.19 1.69 2.19 1.69 +miam_miam miam_miam ono 0.56 0.68 0.56 0.68 +miao miao adj m s 0.06 0 0.06 0 +miaou miaou nom m s 0.46 1.55 0.45 1.35 +miaous miaou nom m p 0.46 1.55 0.01 0.2 +miasme miasme nom m s 0.06 1.28 0.01 0.14 +miasmes miasme nom m p 0.06 1.28 0.05 1.15 +miaula miauler ver 1.15 6.15 0 0.54 ind:pas:3s; +miaulaient miauler ver 1.15 6.15 0 0.34 ind:imp:3p; +miaulais miauler ver 1.15 6.15 0 0.07 ind:imp:1s; +miaulait miauler ver 1.15 6.15 0.01 0.81 ind:imp:3s; +miaulant miauler ver 1.15 6.15 0.02 0.74 par:pre; +miaule miauler ver 1.15 6.15 0.88 1.15 imp:pre:2s;ind:pre:3s; +miaulement miaulement nom m s 1.35 2.57 0.64 1.55 +miaulements miaulement nom m p 1.35 2.57 0.7 1.01 +miaulent miauler ver 1.15 6.15 0.03 0.34 ind:pre:3p; +miauler miauler ver 1.15 6.15 0.2 1.62 inf; +miauleur miauleur adj m s 0.01 0 0.01 0 +miaulez miauler ver 1.15 6.15 0.01 0.07 ind:pre:2p; +miaulé miauler ver m s 1.15 6.15 0 0.47 par:pas; +mica mica nom m s 0.34 2.77 0.34 2.5 +micacées micacé adj f p 0 0.14 0 0.14 +micas mica nom m p 0.34 2.77 0 0.27 +miche miche nom f s 2.2 9.8 0.7 4.59 +micheline micheline nom f s 0 0.2 0 0.2 +miches miche nom f p 2.2 9.8 1.5 5.2 +micheton micheton nom m s 0.59 5.41 0.46 3.51 +michetonnais michetonner ver 0.01 0.54 0.01 0.07 ind:imp:1s; +michetonne michetonner ver 0.01 0.54 0 0.2 ind:pre:1s;ind:pre:3s; +michetonner michetonner ver 0.01 0.54 0 0.14 inf; +michetonnes michetonner ver 0.01 0.54 0 0.14 ind:pre:2s; +michetonneuse michetonneuse nom f s 0 0.14 0 0.07 +michetonneuses michetonneuse nom f p 0 0.14 0 0.07 +michetons micheton nom m p 0.59 5.41 0.13 1.89 +miché miché nom m s 0.03 2.91 0.02 1.76 +michés miché nom m p 0.03 2.91 0.01 1.15 +mickeys mickey nom m p 0.19 0.2 0.19 0.2 +micmac micmac nom m s 0.14 0.61 0.12 0.34 +micmacs micmac nom m p 0.14 0.61 0.02 0.27 +micocoulier micocoulier nom m s 0 0.34 0 0.14 +micocouliers micocoulier nom m p 0 0.34 0 0.2 +micro micro nom s 15.03 8.31 11.25 6.82 +micro_cravate micro_cravate nom m s 0.01 0 0.01 0 +micro_onde micro_onde nom f s 0.38 0 0.38 0 +micro_ondes micro_ondes nom m 2.45 0.14 2.45 0.14 +micro_ordinateur micro_ordinateur nom m s 0.01 0.14 0.01 0.07 +micro_ordinateur micro_ordinateur nom m p 0.01 0.14 0 0.07 +micro_organisme micro_organisme nom m s 0.08 0 0.08 0 +micro_trottoir micro_trottoir nom m s 0.01 0 0.01 0 +microanalyse microanalyse nom f s 0.02 0 0.02 0 +microbe microbe nom m s 6 4.26 1.86 1.15 +microbes microbe nom m p 6 4.26 4.14 3.11 +microbienne microbien adj f s 0.04 0.07 0.01 0.07 +microbiens microbien adj m p 0.04 0.07 0.02 0 +microbiologie microbiologie nom f s 0.14 0 0.14 0 +microbiologiste microbiologiste nom s 0.06 0 0.06 0 +microbus microbus nom m 0.01 0 0.01 0 +microcassette microcassette nom f s 0 0.07 0 0.07 +microchimie microchimie nom f s 0.03 0 0.03 0 +microchirurgie microchirurgie nom f s 0.06 0.07 0.06 0.07 +microcircuit microcircuit nom m s 0.07 0 0.02 0 +microcircuits microcircuit nom m p 0.07 0 0.05 0 +microclimat microclimat nom m s 0.16 0.14 0.16 0.14 +microcomposants microcomposant nom m p 0.01 0 0.01 0 +microcopie microcopie nom f s 0.01 0 0.01 0 +microcosme microcosme nom m s 0.23 0.34 0.23 0.34 +microcycles microcycle nom m p 0.01 0 0.01 0 +microcéphale microcéphale nom m s 0.1 0.07 0.1 0 +microcéphales microcéphale adj p 0 0.27 0 0.07 +microfiches microfiche nom f p 0.04 0 0.04 0 +microfilm microfilm nom m s 0.58 0.2 0.51 0 +microfilms microfilm nom m p 0.58 0.2 0.07 0.2 +microgramme microgramme nom m s 0.02 0 0.02 0 +microgravité microgravité nom f s 0.01 0 0.01 0 +microlithes microlithe nom m p 0 0.07 0 0.07 +micromètre micromètre nom m s 0.04 0 0.02 0 +micromètres micromètre nom m p 0.04 0 0.01 0 +micron micron nom m s 0.74 0.27 0.24 0.2 +microns micron nom m p 0.74 0.27 0.5 0.07 +microphone microphone nom m s 0.73 0.68 0.48 0.34 +microphones microphone nom m p 0.73 0.68 0.25 0.34 +microprocesseur microprocesseur nom m s 0.36 0.2 0.17 0.07 +microprocesseurs microprocesseur nom m p 0.36 0.2 0.2 0.14 +micros micro nom p 15.03 8.31 3.78 1.49 +microscope microscope nom m s 3.94 1.62 3.71 1.35 +microscopes microscope nom m p 3.94 1.62 0.23 0.27 +microscopie microscopie nom f s 0.04 0 0.04 0 +microscopique microscopique adj s 1.04 2.23 0.62 0.88 +microscopiquement microscopiquement adv 0.01 0.07 0.01 0.07 +microscopiques microscopique adj p 1.04 2.23 0.42 1.35 +microseconde microseconde nom f s 0.1 0 0.06 0 +microsecondes microseconde nom f p 0.1 0 0.04 0 +microsillon microsillon nom m s 0 0.27 0 0.14 +microsillons microsillon nom m p 0 0.27 0 0.14 +microsociologie microsociologie nom f s 0 0.07 0 0.07 +microsonde microsonde nom f s 0.01 0 0.01 0 +microstructure microstructure nom f s 0.03 0.07 0.03 0 +microstructures microstructure nom f p 0.03 0.07 0 0.07 +microédition microédition nom f s 0.01 0 0.01 0 +miction miction nom f s 0.04 0.07 0.03 0 +mictions miction nom f p 0.04 0.07 0.01 0.07 +middle_class middle_class nom f s 0 0.07 0 0.07 +middle_west middle_west nom m s 0.05 0.14 0.05 0.14 +midi midi nom m 35.19 68.38 35.15 68.11 +midinette midinette nom f s 0.13 2.23 0.06 1.62 +midinettes midinette nom f p 0.13 2.23 0.07 0.61 +midis midi nom m p 35.19 68.38 0.04 0.27 +midrash midrash nom m s 0.02 0 0.02 0 +midship midship nom m s 0 0.2 0 0.2 +mie mie nom f s 1.41 5.74 1.39 5.68 +miel miel nom m s 17.36 15.54 17.34 15.41 +miellat miellat nom m s 0.01 0 0.01 0 +mielle mielle nom f s 0 0.07 0 0.07 +mielleuse mielleux adj f s 0.81 1.82 0.2 0.41 +mielleuses mielleux adj f p 0.81 1.82 0.17 0.2 +mielleux mielleux adj m 0.81 1.82 0.44 1.22 +miellé miellé adj m s 0 0.07 0 0.07 +miellée miellé nom f s 0 0.2 0 0.14 +miellées miellé nom f p 0 0.2 0 0.07 +miels miel nom m p 17.36 15.54 0.03 0.14 +mien mien pro_pos m s 54.06 36.08 54.06 36.08 +mienne mienne pro_pos f s 50.46 41.28 50.46 41.28 +miennes miennes pro_pos m p 9.31 9.59 9.31 9.59 +miens miens pro_pos m p 16.32 21.15 16.32 21.15 +mies mie nom f p 1.41 5.74 0.03 0.07 +miette miette nom f s 8.68 17.16 2.54 4.12 +miettes miette nom f p 8.68 17.16 6.13 13.04 +mieux mieux adv_sup 651.73 398.38 651.73 398.38 +mieux_vivre mieux_vivre nom m s 0 0.07 0 0.07 +mieux_être mieux_être nom m 0.12 0.2 0.12 0.2 +mignard mignard adj m s 0 1.35 0 0.34 +mignardant mignarder ver 0 0.2 0 0.07 par:pre; +mignarde mignard adj f s 0 1.35 0 0.81 +mignardement mignardement adv 0 0.07 0 0.07 +mignardes mignard adj f p 0 1.35 0 0.14 +mignardise mignardise nom f s 0.03 0.88 0.02 0.14 +mignardises mignardise nom f p 0.03 0.88 0.01 0.74 +mignards mignard adj m p 0 1.35 0 0.07 +mignardé mignarder ver m s 0 0.2 0 0.07 par:pas; +mignon mignon adj m s 69.71 13.58 46.14 6.49 +mignonne mignon adj f s 69.71 13.58 17.41 4.73 +mignonnement mignonnement adv 0 0.14 0 0.14 +mignonnes mignon adj f p 69.71 13.58 1.37 0.74 +mignonnet mignonnet adj m s 0.17 0.27 0.07 0.14 +mignonnets mignonnet adj m p 0.17 0.27 0 0.07 +mignonnette mignonnet adj f s 0.17 0.27 0.1 0 +mignonnettes mignonnette nom f p 0.06 0.14 0.01 0.07 +mignons mignon adj m p 69.71 13.58 4.78 1.62 +mignoter mignoter ver 0.01 0.41 0.01 0.27 inf; +mignoteront mignoter ver 0.01 0.41 0 0.07 ind:fut:3p; +mignoté mignoter ver m s 0.01 0.41 0 0.07 par:pas; +migraine migraine nom f s 10.32 6.01 7.51 4.05 +migraines migraine nom f p 10.32 6.01 2.8 1.96 +migraineuse migraineuse nom f s 0.01 0.07 0.01 0.07 +migraineux migraineux nom m 0.04 0 0.04 0 +migrait migrer ver 0.83 0.14 0.01 0 ind:imp:3s; +migrant migrer ver 0.83 0.14 0.01 0 par:pre; +migrante migrant adj f s 0 0.14 0 0.07 +migrants migrant nom m p 0.03 0.54 0.03 0.27 +migrateur migrateur adj m s 0.35 1.55 0.19 0.41 +migrateurs migrateur adj m p 0.35 1.55 0.16 1.08 +migration migration nom f s 0.74 2.64 0.71 1.76 +migrations migration nom f p 0.74 2.64 0.03 0.88 +migratoire migratoire adj s 0.06 0.14 0.02 0 +migratoires migratoire adj p 0.06 0.14 0.04 0.14 +migratrice migrateur adj f s 0.35 1.55 0.01 0 +migratrices migrateur adj f p 0.35 1.55 0 0.07 +migre migrer ver 0.83 0.14 0.03 0.07 ind:pre:3s; +migrent migrer ver 0.83 0.14 0.24 0 ind:pre:3p; +migrer migrer ver 0.83 0.14 0.44 0 inf; +migres migrer ver 0.83 0.14 0.01 0 ind:pre:2s; +migré migrer ver m s 0.83 0.14 0.08 0.07 par:pas; +mijaurée mijaurée nom f s 0.61 1.01 0.57 0.68 +mijaurées mijaurée nom f p 0.61 1.01 0.04 0.34 +mijota mijoter ver 6.98 7.57 0 0.07 ind:pas:3s; +mijotaient mijoter ver 6.98 7.57 0 0.34 ind:imp:3p; +mijotais mijoter ver 6.98 7.57 0.05 0.14 ind:imp:1s;ind:imp:2s; +mijotait mijoter ver 6.98 7.57 0.28 1.49 ind:imp:3s; +mijotant mijoter ver 6.98 7.57 0 0.27 par:pre; +mijote mijoter ver 6.98 7.57 1.85 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mijotent mijoter ver 6.98 7.57 0.51 0.34 ind:pre:3p; +mijoter mijoter ver 6.98 7.57 1.28 1.55 inf; +mijotera mijoter ver 6.98 7.57 0 0.07 ind:fut:3s; +mijotes mijoter ver 6.98 7.57 1.73 0.34 ind:pre:2s; +mijoteuse mijoteuse nom f s 0.01 0.07 0.01 0.07 +mijotez mijoter ver 6.98 7.57 0.75 0.07 imp:pre:2p;ind:pre:2p; +mijotions mijoter ver 6.98 7.57 0 0.07 ind:imp:1p; +mijotons mijoter ver 6.98 7.57 0 0.14 imp:pre:1p;ind:pre:1p; +mijoté mijoter ver m s 6.98 7.57 0.34 0.88 par:pas; +mijotées mijoter ver f p 6.98 7.57 0.01 0.07 par:pas; +mijotés mijoter ver m p 6.98 7.57 0.17 0.34 par:pas; +mikado mikado nom m s 0.28 0.88 0.28 0.88 +mil mil adj_num 0.46 0.61 0.46 0.61 +milady milady nom f s 3.18 0.34 3.18 0.34 +milan milan nom m s 0.14 0.34 0.14 0.14 +milanais milanais adj m 0.37 0.47 0.23 0.14 +milanaise milanais adj f s 0.37 0.47 0.14 0.27 +milanaises milanais nom f p 0.23 0.27 0 0.14 +milans milan nom m p 0.14 0.34 0.01 0.2 +mildiou mildiou nom m s 0.04 0 0.04 0 +mile mile nom m s 8.34 1.28 0.9 0.07 +miles mile nom m p 8.34 1.28 7.44 1.22 +milice milice nom f s 3.77 4.39 3.25 2.43 +milices milice nom f p 3.77 4.39 0.53 1.96 +milicien milicien nom m s 0.78 8.92 0.2 1.35 +miliciennes milicienne nom f p 0.01 0 0.01 0 +miliciens milicien nom m p 0.78 8.92 0.57 7.5 +milieu milieu nom m s 70.27 256.08 68.6 246.69 +milieux milieu nom m p 70.27 256.08 1.67 9.39 +milita militer ver 1.1 4.26 0 0.14 ind:pas:3s; +militaient militer ver 1.1 4.26 0 0.07 ind:imp:3p; +militaire militaire adj s 43.73 96.22 35.09 69.19 +militairement militairement adv 0.12 1.15 0.12 1.15 +militaires militaire nom p 13.24 18.99 9.74 11.96 +militait militer ver 1.1 4.26 0.16 0.95 ind:imp:3s; +militant militant nom m s 2.92 11.55 1.18 4.86 +militante militant adj f s 0.92 3.45 0.19 1.22 +militantes militant nom f p 2.92 11.55 0.06 0.14 +militantisme militantisme nom m s 0.06 0.74 0.06 0.74 +militants militant nom m p 2.92 11.55 1.54 5.61 +militarisation militarisation nom f s 0.04 0 0.04 0 +militariser militariser ver 0.05 0.07 0.03 0 inf; +militarisme militarisme nom m s 0.03 0.2 0.03 0.2 +militariste militariste adj s 0.03 0.47 0.02 0.34 +militaristes militariste adj p 0.03 0.47 0.01 0.14 +militarisé militariser ver m s 0.05 0.07 0.02 0.07 par:pas; +militaro militaro adv 0.01 0 0.01 0 +militaro_industriel militaro_industriel adj m s 0.06 0 0.05 0 +militaro_industriel militaro_industriel adj f s 0.06 0 0.01 0 +milite militer ver 1.1 4.26 0.58 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +militent militer ver 1.1 4.26 0.03 0.27 ind:pre:3p; +militer militer ver 1.1 4.26 0.09 0.95 inf; +militerai militer ver 1.1 4.26 0 0.07 ind:fut:1s; +milites militer ver 1.1 4.26 0.04 0.07 ind:pre:2s; +militons militer ver 1.1 4.26 0.02 0 ind:pre:1p; +militèrent militer ver 1.1 4.26 0 0.07 ind:pas:3p; +milité militer ver m s 1.1 4.26 0.15 0.95 par:pas; +milk_shake milk_shake nom m s 1.85 0.14 0.13 0 +milk_bar milk_bar nom m s 0.03 0.2 0.03 0.14 +milk_bar milk_bar nom m p 0.03 0.2 0 0.07 +milk_shake milk_shake nom m s 1.85 0.14 1.27 0.14 +milk_shake milk_shake nom m p 1.85 0.14 0.45 0 +mille mille adj_num 55.43 142.09 55.43 142.09 +mille_feuille mille_feuille nom m s 0.03 1.08 0.02 0.2 +mille_feuille mille_feuille nom m p 0.03 1.08 0.01 0.88 +mille_pattes mille_pattes nom m 0.39 2.09 0.39 2.09 +millefeuille millefeuille nom s 0.1 0.54 0.09 0.34 +millefeuilles millefeuille nom p 0.1 0.54 0.01 0.2 +millenium millenium nom m s 0.08 0.07 0.08 0.07 +milles mille nom_sup m p 29.63 30.68 3.46 3.04 +millet millet nom m s 0.17 0.61 0.17 0.61 +milli milli adv 0.16 0.14 0.16 0.14 +milliaire milliaire adj f s 0 0.14 0 0.14 +milliard milliard nom m s 17.52 14.39 4.02 2.43 +milliardaire milliardaire nom s 2.13 2.77 1.69 1.55 +milliardaires milliardaire nom p 2.13 2.77 0.44 1.22 +milliardième milliardième adj 0.02 0 0.02 0 +milliards milliard nom m p 17.52 14.39 13.49 11.96 +millier millier nom m s 37.94 42.43 3.15 2.36 +milliers millier nom m p 37.94 42.43 34.78 40.07 +milligramme milligramme nom m s 1.06 0.34 0.23 0.27 +milligrammes milligramme nom m p 1.06 0.34 0.83 0.07 +millilitre millilitre nom m s 0.04 0 0.04 0 +millimètre millimètre nom m s 2.77 6.76 1.58 4.46 +millimètres millimètre nom m p 2.77 6.76 1.2 2.3 +millimétrique millimétrique adj s 0.15 0.27 0.14 0.14 +millimétriques millimétrique adj p 0.15 0.27 0.01 0.14 +millimétré millimétré adj m s 0.02 0.47 0.02 0.34 +millimétrées millimétré adj f p 0.02 0.47 0 0.07 +millimétrés millimétré adj m p 0.02 0.47 0 0.07 +million million nom_sup m s 124.7 54.05 36.78 7.84 +millionième millionième adj 0.22 0.34 0.22 0.34 +millionnaire millionnaire adj s 3.59 0.88 2.82 0.61 +millionnaires millionnaire adj p 3.59 0.88 0.78 0.27 +millions million nom_sup m p 124.7 54.05 87.92 46.22 +milliseconde milliseconde nom f s 0.16 0.14 0.09 0.07 +millisecondes milliseconde nom f p 0.16 0.14 0.08 0.07 +millième millième nom m s 0.29 0.95 0.17 0.88 +millièmes millième nom m p 0.29 0.95 0.12 0.07 +millénaire millénaire nom m s 3.45 5.41 2.1 0.74 +millénaires millénaire nom m p 3.45 5.41 1.36 4.66 +millénarisme millénarisme nom m s 0.01 0 0.01 0 +millénariste millénariste adj f s 0.02 0 0.02 0 +millénium millénium nom m s 0.13 0 0.13 0 +millésime millésime nom m s 0.27 1.01 0.25 0.61 +millésimes millésime nom m p 0.27 1.01 0.02 0.41 +millésimé millésimer ver m s 0.22 0.54 0.17 0.2 par:pas; +millésimée millésimer ver f s 0.22 0.54 0.01 0 par:pas; +millésimées millésimer ver f p 0.22 0.54 0 0.14 par:pas; +millésimés millésimer ver m p 0.22 0.54 0.03 0.2 par:pas; +milonga milonga nom f s 0.03 0 0.03 0 +milord milord nom m s 2.72 0.88 2.66 0.81 +milords milord nom m p 2.72 0.88 0.07 0.07 +milouin milouin nom m s 0.01 0 0.01 0 +milésiennes milésien adj f p 0 0.07 0 0.07 +mima mimer ver 0.93 9.86 0 1.22 ind:pas:3s; +mimaient mimer ver 0.93 9.86 0 0.14 ind:imp:3p; +mimais mimer ver 0.93 9.86 0.12 0.27 ind:imp:1s;ind:imp:2s; +mimait mimer ver 0.93 9.86 0.13 1.96 ind:imp:3s; +mimant mimer ver 0.93 9.86 0.16 1.69 par:pre; +mimas mimer ver 0.93 9.86 0.01 0 ind:pas:2s; +mime mime nom m s 5.35 1.08 5.11 0.88 +miment mimer ver 0.93 9.86 0.02 0.47 ind:pre:3p; +mimer mimer ver 0.93 9.86 0.11 1.96 inf; +mimerai mimer ver 0.93 9.86 0 0.07 ind:fut:1s; +mimerait mimer ver 0.93 9.86 0 0.14 cnd:pre:3s; +mimes mime nom m p 5.35 1.08 0.25 0.2 +mimi mimi nom m s 0.44 0.14 0.41 0.14 +mimique mimique nom f s 0.19 6.22 0.01 3.58 +mimiques mimique nom f p 0.19 6.22 0.18 2.64 +mimis mimi nom m p 0.44 0.14 0.02 0 +mimodrames mimodrame nom m p 0 0.07 0 0.07 +mimolette mimolette nom f s 0.01 0 0.01 0 +mimosa mimosa nom m s 1.75 2.91 0.97 1.35 +mimosas mimosa nom m p 1.75 2.91 0.77 1.55 +mimosées mimosée nom f p 0 0.07 0 0.07 +mimâmes mimer ver 0.93 9.86 0 0.07 ind:pas:1p; +mimèrent mimer ver 0.93 9.86 0 0.27 ind:pas:3p; +mimé mimer ver m s 0.93 9.86 0.03 0.54 par:pas; +mimée mimer ver f s 0.93 9.86 0.01 0.2 par:pas; +mimétique mimétique adj s 0.04 0.07 0.04 0.07 +mimétisme mimétisme nom m s 0.17 1.55 0.17 1.55 +min min nom m 7.85 1.08 7.85 1.08 +mina miner ver 4.83 10.47 0.17 0 ind:pas:3s; +minable minable adj s 15.58 11.55 13.06 8.72 +minablement minablement adv 0.14 0.07 0.14 0.07 +minables minable adj p 15.58 11.55 2.52 2.84 +minage minage nom m s 0.01 0.07 0.01 0.07 +minait miner ver 4.83 10.47 0.18 0.54 ind:imp:3s; +minant miner ver 4.83 10.47 0.17 0 par:pre; +minaret minaret nom m s 0.34 1.96 0.21 0.88 +minarets minaret nom m p 0.34 1.96 0.13 1.08 +minas miner ver 4.83 10.47 0.04 0 ind:pas:2s; +minauda minauder ver 0.17 3.38 0 0.68 ind:pas:3s; +minaudaient minauder ver 0.17 3.38 0 0.07 ind:imp:3p; +minaudait minauder ver 0.17 3.38 0.02 0.54 ind:imp:3s; +minaudant minauder ver 0.17 3.38 0.01 0.81 par:pre; +minaudants minaudant adj m p 0.01 0.07 0 0.07 +minaude minauder ver 0.17 3.38 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +minaudent minauder ver 0.17 3.38 0.01 0.14 ind:pre:3p; +minauder minauder ver 0.17 3.38 0.07 0.47 inf; +minauderait minauder ver 0.17 3.38 0 0.07 cnd:pre:3s; +minauderie minauderie nom f s 0.12 0.88 0 0.27 +minauderies minauderie nom f p 0.12 0.88 0.12 0.61 +minaudeur minaudeur adj m s 0 0.07 0 0.07 +minaudez minauder ver 0.17 3.38 0.01 0 ind:pre:2p; +minaudière minaudier adj f s 0 0.27 0 0.27 +minaudé minauder ver m s 0.17 3.38 0 0.14 par:pas; +minbar minbar nom m s 0.12 0 0.12 0 +mince mince ono 14.62 2.84 14.62 2.84 +minces mince adj p 16.27 78.51 2.17 18.18 +minceur minceur nom f s 0.2 2.36 0.2 2.3 +minceurs minceur nom f p 0.2 2.36 0 0.07 +minci mincir ver m s 0.55 0.2 0.21 0.14 par:pas; +mincir mincir ver 0.55 0.2 0.32 0 inf; +mincirait mincir ver 0.55 0.2 0.01 0 cnd:pre:3s; +mincis mincir ver 0.55 0.2 0.01 0 ind:pre:2s; +mincissaient mincir ver 0.55 0.2 0 0.07 ind:imp:3p; +mine mine nom f s 48.08 65.88 36.84 48.18 +minent miner ver 4.83 10.47 0.02 0.2 ind:pre:3p; +miner miner ver 4.83 10.47 0.58 1.35 inf; +minera miner ver 4.83 10.47 0.02 0 ind:fut:3s; +minerai minerai nom m s 1.38 1.01 1.21 0.95 +minerais minerai nom m p 1.38 1.01 0.17 0.07 +minerval minerval nom m s 0.01 0 0.01 0 +minerve minerve nom f s 0.69 0.07 0.69 0.07 +mines mine nom f p 48.08 65.88 11.24 17.7 +minestrone minestrone nom m s 0.27 0.07 0.27 0.07 +minet minet nom m s 7.09 6.42 2.22 2.23 +minets minet nom m p 7.09 6.42 0.68 1.22 +minette minet nom f s 7.09 6.42 2.98 2.03 +minettes minet nom f p 7.09 6.42 1.21 0.95 +mineur mineur adj m s 8.01 6.62 3.79 2.7 +mineure mineur adj f s 8.01 6.62 1.96 1.62 +mineures mineur adj f p 8.01 6.62 0.53 0.74 +mineurs mineur nom m p 8.79 11.96 4.09 6.01 +ming ming adj s 0.04 0 0.04 0 +mini mini adj 1.69 0.14 1.69 0.14 +mini_chaîne mini_chaîne nom f s 0.14 0.07 0.14 0.07 +mini_jupe mini_jupe nom f s 0.62 0.54 0.56 0.34 +mini_jupe mini_jupe nom f p 0.62 0.54 0.06 0.2 +mini_ordinateur mini_ordinateur nom m s 0.02 0 0.02 0 +miniature miniature nom f s 2.18 10.07 1.62 7.09 +miniatures miniature nom f p 2.18 10.07 0.56 2.97 +miniaturisation miniaturisation nom f s 0.15 0.14 0.15 0.14 +miniaturise miniaturiser ver 0.22 0.34 0.03 0 ind:pre:3s; +miniaturiser miniaturiser ver 0.22 0.34 0.08 0.07 inf; +miniaturiste miniaturiste nom s 0.01 0.47 0.01 0.47 +miniaturisé miniaturiser ver m s 0.22 0.34 0.06 0.14 par:pas; +miniaturisée miniaturiser ver f s 0.22 0.34 0.02 0.07 par:pas; +miniaturisées miniaturiser ver f p 0.22 0.34 0.01 0 par:pas; +miniaturisés miniaturiser ver m p 0.22 0.34 0.01 0.07 par:pas; +minibar minibar nom m s 0.26 0 0.26 0 +minibus minibus nom m 1.99 0.54 1.99 0.54 +minicassette minicassette nom s 0.02 0.27 0.01 0.2 +minicassettes minicassette nom p 0.02 0.27 0.01 0.07 +minier minier adj m s 1.09 1.42 0.28 0.47 +miniers minier adj m p 1.09 1.42 0.2 0.2 +minigolf minigolf nom m s 0.23 0 0.23 0 +minijupe minijupe nom f s 1.2 0.54 0.82 0.41 +minijupes minijupe nom f p 1.2 0.54 0.38 0.14 +minima minimum nom m p 7.12 11.82 0.04 0.34 +minimal minimal adj m s 1.39 0.81 0.28 0.34 +minimale minimal adj f s 1.39 0.81 0.83 0.34 +minimales minimal adj f p 1.39 0.81 0.22 0.07 +minimaliser minimaliser ver 0.01 0 0.01 0 inf; +minimalisme minimalisme nom m s 0.06 0 0.06 0 +minimaliste minimaliste adj s 0.1 0 0.1 0 +minimaux minimal adj m p 1.39 0.81 0.04 0.07 +minimax minimax nom m 0.01 0 0.01 0 +minime minime adj s 1.87 2.84 1.04 2.16 +minimes minime adj p 1.87 2.84 0.82 0.68 +minimisa minimiser ver 2.1 2.57 0.01 0 ind:pas:3s; +minimisaient minimiser ver 2.1 2.57 0 0.07 ind:imp:3p; +minimisait minimiser ver 2.1 2.57 0 0.07 ind:imp:3s; +minimisant minimiser ver 2.1 2.57 0.05 0.2 par:pre; +minimisation minimisation nom f s 0 0.07 0 0.07 +minimise minimiser ver 2.1 2.57 0.39 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +minimisent minimiser ver 2.1 2.57 0.03 0.07 ind:pre:3p; +minimiser minimiser ver 2.1 2.57 1.42 1.42 inf; +minimiserons minimiser ver 2.1 2.57 0.01 0 ind:fut:1p; +minimises minimiser ver 2.1 2.57 0.02 0.07 ind:pre:2s; +minimisez minimiser ver 2.1 2.57 0.09 0 imp:pre:2p;ind:pre:2p; +minimisons minimiser ver 2.1 2.57 0.01 0 imp:pre:1p; +minimisé minimiser ver m s 2.1 2.57 0.04 0.14 par:pas; +minimisée minimiser ver f s 2.1 2.57 0.03 0 par:pas; +minimisées minimiser ver f p 2.1 2.57 0.01 0.07 par:pas; +minimum minimum nom m s 7.12 11.82 7.07 11.49 +minimums minimum adj p 3.77 1.76 0.05 0 +minis mini nom p 1.01 1.01 0.14 0 +ministrables ministrable adj p 0 0.07 0 0.07 +ministre ministre nom s 41.41 81.15 38.1 61.01 +ministres ministre nom m p 41.41 81.15 3.31 20.14 +ministère ministère nom m s 17.47 17.5 16.91 14.32 +ministères ministère nom m p 17.47 17.5 0.55 3.18 +ministériel ministériel adj m s 0.4 2.77 0.38 0.95 +ministérielle ministériel adj f s 0.4 2.77 0.01 0.74 +ministérielles ministériel adj f p 0.4 2.77 0 0.41 +ministériels ministériel adj m p 0.4 2.77 0.01 0.68 +minitel minitel nom m s 0 0.34 0 0.34 +minium minium nom m s 0.04 0.95 0.04 0.95 +minière minier adj f s 1.09 1.42 0.53 0.54 +minières minier adj f p 1.09 1.42 0.08 0.2 +mino mino adj m s 1.13 0.27 1.13 0.27 +minoen minoen nom m s 0.01 0.2 0.01 0.07 +minoenne minoen adj f s 0.07 0.34 0.06 0.14 +minoens minoen adj m p 0.07 0.34 0.01 0 +minois minois nom m 1.11 1.55 1.11 1.55 +minoritaire minoritaire adj s 0.6 0.61 0.17 0.34 +minoritaires minoritaire adj p 0.6 0.61 0.44 0.27 +minorité minorité nom f s 4.03 2.84 3.15 2.36 +minorités minorité nom f p 4.03 2.84 0.89 0.47 +minot minot nom m s 0.58 1.35 0.58 1.08 +minotaure minotaure nom m s 0.03 0.14 0.02 0.07 +minotaures minotaure nom m p 0.03 0.14 0.01 0.07 +minoteries minoterie nom f p 0 0.14 0 0.14 +minotier minotier nom m s 0 0.61 0 0.61 +minots minot nom m p 0.58 1.35 0 0.27 +minou minou nom m s 7 1.55 6.46 1.55 +minouche minouche adj s 0.17 0.81 0.17 0.81 +minous minou nom m p 7 1.55 0.55 0 +minuit minuit nom m s 38.51 29.86 38.47 29.8 +minuits minuit nom m p 38.51 29.86 0.03 0.07 +minus minus nom m 8.35 2.5 8.35 2.5 +minus_habens minus_habens nom m 0 0.14 0 0.14 +minuscule minuscule adj s 7.26 62.09 5.07 38.04 +minuscules minuscule adj p 7.26 62.09 2.19 24.05 +minutage minutage nom m s 0.08 0.34 0.08 0.34 +minute minute nom f s 342.28 201.42 144.83 60.74 +minuter minuter ver 2.04 1.69 0.17 0 inf; +minuterie minuterie nom f s 1.34 2.36 1.21 2.36 +minuteries minuterie nom f p 1.34 2.36 0.13 0 +minutes minute nom f p 342.28 201.42 197.45 140.68 +minuteur minuteur nom m s 1.21 0 0.98 0 +minuteurs minuteur nom m p 1.21 0 0.22 0 +minutie minutie nom f s 0.62 3.58 0.48 3.45 +minuties minutie nom f p 0.62 3.58 0.14 0.14 +minutieuse minutieux adj f s 1.81 7.03 0.57 2.84 +minutieusement minutieusement adv 0.74 4.73 0.74 4.73 +minutieuses minutieux adj f p 1.81 7.03 0.02 1.08 +minutieux minutieux adj m 1.81 7.03 1.21 3.11 +minutions minuter ver 2.04 1.69 0.02 0 ind:imp:1p; +minutât minuter ver 2.04 1.69 0 0.07 sub:imp:3s; +minuté minuter ver m s 2.04 1.69 0.27 0.81 par:pas; +minutée minuter ver f s 2.04 1.69 0.04 0.07 par:pas; +minutés minuter ver m p 2.04 1.69 0 0.07 par:pas; +miné miner ver m s 4.83 10.47 1.04 2.5 par:pas; +minée miner ver f s 4.83 10.47 0.2 1.01 par:pas; +minées miner ver f p 4.83 10.47 0.02 0.27 par:pas; +minéral minéral nom m s 1.03 0.81 0.28 0.74 +minérale minéral adj f s 4.2 8.78 3.28 5.88 +minérales minéral adj f p 4.2 8.78 0.31 0.74 +minéraliers minéralier nom m p 0 0.07 0 0.07 +minéralisation minéralisation nom f s 0.01 0 0.01 0 +minéralisés minéraliser ver m p 0 0.07 0 0.07 par:pas; +minéralisés minéralisé adj m p 0 0.07 0 0.07 +minéralogique minéralogique adj s 0.38 0.74 0.31 0.34 +minéralogiques minéralogique adj p 0.38 0.74 0.07 0.41 +minéraux minéral nom m p 1.03 0.81 0.76 0.07 +minés miner ver m p 4.83 10.47 0.1 0.34 par:pas; +mioche mioche nom s 1.07 2.3 0.54 1.08 +mioches mioche nom p 1.07 2.3 0.53 1.22 +miquette miquette nom f s 0 0.34 0 0.34 +mir mir nom m s 0.33 0.68 0.33 0.68 +mira mirer ver 0.48 2.57 0.14 0.2 ind:pas:3s; +mirabelle mirabelle nom f s 0.01 1.96 0 0.74 +mirabelles mirabelle nom f p 0.01 1.96 0.01 1.22 +mirabellier mirabellier nom m s 0 0.34 0 0.14 +mirabelliers mirabellier nom m p 0 0.34 0 0.2 +mirabilis mirabilis nom m 0.12 0.14 0.12 0.14 +miracle miracle nom m s 56.89 42.16 39.78 34.12 +miracles miracle nom m p 56.89 42.16 17.1 8.04 +miraculant miraculant adj m s 0 0.14 0 0.07 +miraculantes miraculant adj f p 0 0.14 0 0.07 +miraculeuse miraculeux adj f s 4.43 9.26 1.73 3.99 +miraculeusement miraculeusement adv 1.34 4.53 1.34 4.53 +miraculeuses miraculeux adj f p 4.43 9.26 0.45 1.08 +miraculeux miraculeux adj m 4.43 9.26 2.25 4.19 +miraculé miraculé nom m s 0.55 0.88 0.45 0.41 +miraculée miraculé nom f s 0.55 0.88 0.05 0.34 +miraculés miraculé nom m p 0.55 0.88 0.05 0.14 +mirador mirador nom m s 0.23 4.73 0.15 3.04 +miradors mirador nom m p 0.23 4.73 0.08 1.69 +mirage mirage nom m s 1.83 10.07 1.42 6.08 +mirages mirage nom m p 1.83 10.07 0.42 3.99 +miraient mirer ver 0.48 2.57 0 0.14 ind:imp:3p; +mirais mirer ver 0.48 2.57 0 0.07 ind:imp:1s; +mirait mirer ver 0.48 2.57 0.14 0.41 ind:imp:3s; +mirant mirer ver 0.48 2.57 0 0.2 par:pre; +miraud miraud adj m s 0.02 0.14 0.02 0.07 +mirauds miraud adj m p 0.02 0.14 0 0.07 +mire mire nom f s 1.81 2.16 1.81 2.03 +mirent mettre ver 1004.83 1083.72 1.38 27.36 ind:pas:3p; +mirepoix mirepoix nom f 0.01 0 0.01 0 +mirer mirer ver 0.48 2.57 0.05 0.61 inf; +mirerais mirer ver 0.48 2.57 0 0.07 cnd:pre:2s; +mires mire nom f p 1.81 2.16 0 0.14 +mirette mirette nom f s 0.16 6.01 0 4.32 +mirettes mirette nom f p 0.16 6.01 0.16 1.69 +mirez mirer ver 0.48 2.57 0 0.07 imp:pre:2p; +mirifique mirifique adj s 0.03 1.08 0.02 0.61 +mirifiques mirifique adj p 0.03 1.08 0.01 0.47 +mirliflore mirliflore nom m s 0 0.07 0 0.07 +mirliton mirliton nom m s 0.05 1.15 0.04 0.34 +mirlitons mirliton nom m p 0.05 1.15 0.01 0.81 +mirmidon mirmidon nom m s 0.14 0 0.14 0 +miro miro adj s 1.32 0.61 1.32 0.54 +mirobolant mirobolant adj m s 0.17 1.42 0.14 0.54 +mirobolante mirobolant adj f s 0.17 1.42 0.01 0.27 +mirobolantes mirobolant adj f p 0.17 1.42 0.02 0.34 +mirobolants mirobolant adj m p 0.17 1.42 0 0.27 +miroir miroir nom m s 28.35 63.99 24.89 48.58 +miroirs miroir nom m p 28.35 63.99 3.46 15.41 +miroita miroiter ver 0.39 5.74 0 0.2 ind:pas:3s; +miroitaient miroiter ver 0.39 5.74 0.01 0.47 ind:imp:3p; +miroitait miroiter ver 0.39 5.74 0.01 0.68 ind:imp:3s; +miroitant miroiter ver 0.39 5.74 0.03 0.34 par:pre; +miroitante miroitant adj f s 0.04 3.51 0.01 1.82 +miroitantes miroitant adj f p 0.04 3.51 0 0.61 +miroitants miroitant adj m p 0.04 3.51 0.02 0.34 +miroite miroiter ver 0.39 5.74 0.03 0.81 ind:pre:3s; +miroitement miroitement nom m s 0.04 2.43 0.04 1.89 +miroitements miroitement nom m p 0.04 2.43 0 0.54 +miroitent miroiter ver 0.39 5.74 0.03 0.54 ind:pre:3p; +miroiter miroiter ver 0.39 5.74 0.29 2.7 inf; +miroiterie miroiterie nom f s 0.02 0.07 0.02 0.07 +miroitier miroitier nom m s 0.02 0.2 0.02 0.14 +miroitiers miroitier nom m p 0.02 0.2 0 0.07 +miroités miroité adj m p 0 0.07 0 0.07 +mironton mironton nom m s 0.01 1.08 0.01 0.81 +mirontons mironton nom m p 0.01 1.08 0 0.27 +miros miro adj p 1.32 0.61 0 0.07 +miroton miroton nom m s 0.01 0.34 0.01 0.34 +mirus mirus nom m 0.09 0.54 0.09 0.54 +mirée mirer ver f s 0.48 2.57 0 0.07 par:pas; +mis mettre ver m 1004.83 1083.72 228.57 245.68 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas;par:pas; +misa miser ver 11.8 3.78 0.34 0.14 ind:pas:3s; +misai miser ver 11.8 3.78 0 0.07 ind:pas:1s; +misaient miser ver 11.8 3.78 0.04 0.07 ind:imp:3p; +misaine misaine nom f s 0.23 0.27 0.23 0.2 +misaines misaine nom f p 0.23 0.27 0 0.07 +misais miser ver 11.8 3.78 0.03 0.2 ind:imp:1s; +misait miser ver 11.8 3.78 0.07 0.47 ind:imp:3s; +misant miser ver 11.8 3.78 0.2 0.27 par:pre; +misanthrope misanthrope nom s 0.27 0.47 0.27 0.47 +misanthropes misanthrope adj p 0.06 0.61 0 0.07 +misanthropie misanthropie nom f s 0.01 0.41 0.01 0.41 +misanthropiques misanthropique adj p 0 0.07 0 0.07 +miscible miscible adj m s 0.01 0 0.01 0 +mise mettre ver f s 1004.83 1083.72 35.33 46.69 par:pas; +misent miser ver 11.8 3.78 0.36 0.14 ind:pre:3p; +miser miser ver 11.8 3.78 2.79 0.74 inf; +misera miser ver 11.8 3.78 0.1 0 ind:fut:3s; +miserais miser ver 11.8 3.78 0.26 0 cnd:pre:1s;cnd:pre:2s; +miseras miser ver 11.8 3.78 0.02 0 ind:fut:2s; +miserere miserere nom m 0.8 0.34 0.8 0.34 +miseriez miser ver 11.8 3.78 0.14 0 cnd:pre:2p; +miseront miser ver 11.8 3.78 0.01 0 ind:fut:3p; +mises mettre ver f p 1004.83 1083.72 5.36 9.05 par:pas; +misez miser ver 11.8 3.78 1.42 0 imp:pre:2p;ind:pre:2p; +misiez miser ver 11.8 3.78 0.21 0 ind:imp:2p; +misogyne misogyne adj s 0.32 0.54 0.29 0.47 +misogynes misogyne adj p 0.32 0.54 0.02 0.07 +misogynie misogynie nom f s 0.23 1.01 0.23 1.01 +misons miser ver 11.8 3.78 0.2 0 imp:pre:1p;ind:pre:1p; +miss miss nom f 39.08 9.86 39.08 9.86 +missel missel nom m s 0.59 3.38 0.53 3.04 +missels missel nom m p 0.59 3.38 0.06 0.34 +missent mettre ver 1004.83 1083.72 0 0.41 sub:imp:3p; +missile missile nom m s 16.7 0.74 7.47 0.41 +missiles missile nom m p 16.7 0.74 9.23 0.34 +missilier missilier nom m s 0.16 0 0.16 0 +mission mission nom f s 85.24 48.45 80.02 42.36 +mission_suicide mission_suicide nom f s 0.03 0.07 0.03 0.07 +missionna missionner ver 0.11 0.14 0 0.07 ind:pas:3s; +missionnaire missionnaire nom s 2.29 2.16 1.27 0.95 +missionnaires missionnaire nom p 2.29 2.16 1.02 1.22 +missionné missionner ver m s 0.11 0.14 0.11 0 par:pas; +missionnés missionner ver m p 0.11 0.14 0 0.07 par:pas; +missions mission nom f p 85.24 48.45 5.22 6.08 +missive missive nom f s 0.92 2.97 0.81 1.82 +missives missive nom f p 0.92 2.97 0.11 1.15 +mister mister nom m s 2.14 1.22 2.14 1.22 +mistigri mistigri nom m s 0 0.14 0 0.07 +mistigris mistigri nom m p 0 0.14 0 0.07 +mistonne miston nom f s 0 0.41 0 0.2 +mistonnes miston nom f p 0 0.41 0 0.2 +mistoufle mistoufle nom f s 0 0.81 0 0.68 +mistoufles mistoufle nom f p 0 0.81 0 0.14 +mistral mistral nom m s 0.02 2.03 0.02 1.96 +mistrals mistral nom m p 0.02 2.03 0 0.07 +misât miser ver 11.8 3.78 0 0.07 sub:imp:3s; +misère misère nom f s 18.77 47.23 16.85 39.46 +misères misère nom f p 18.77 47.23 1.92 7.77 +misé miser ver m s 11.8 3.78 2.68 0.95 par:pas; +misérabilisme misérabilisme nom m s 0.01 0.14 0.01 0.14 +misérabiliste misérabiliste adj m s 0.01 0.14 0.01 0.14 +misérable misérable adj s 13.16 22.97 10.17 16.22 +misérablement misérablement adv 0.36 2.16 0.36 2.16 +misérables misérable adj p 13.16 22.97 2.98 6.76 +miséreuse miséreux adj f s 0.23 0.54 0.02 0.27 +miséreuses miséreux nom f p 0.9 1.35 0.01 0 +miséreux miséreux nom m 0.9 1.35 0.88 1.35 +miséricorde miséricorde nom f s 8.79 5.2 8.77 5.07 +miséricordes miséricorde nom f p 8.79 5.2 0.02 0.14 +miséricordieuse miséricordieux adj f s 4.69 1.76 0.36 0.61 +miséricordieusement miséricordieusement adv 0 0.07 0 0.07 +miséricordieuses miséricordieux adj f p 4.69 1.76 0.1 0.14 +miséricordieux miséricordieux adj m s 4.69 1.76 4.23 1.01 +mit mettre ver 1004.83 1083.72 7.48 185.2 ind:pas:3s; +mita mita nom f s 0.06 0.07 0.06 0.07 +mitaine mitaine nom f s 0.32 0.95 0.06 0.07 +mitaines mitaine nom f p 0.32 0.95 0.26 0.88 +mitan mitan nom m s 0.4 3.58 0.4 3.58 +mitard mitard nom m s 1.91 4.32 1.91 4.26 +mitarder mitarder ver 0 0.2 0 0.07 inf; +mitards mitard nom m p 1.91 4.32 0 0.07 +mitardés mitarder ver m p 0 0.2 0 0.14 par:pas; +mitchouriniens mitchourinien adj m p 0 0.07 0 0.07 +mite mite nom f s 1.18 2.23 0.36 0.54 +mitent miter ver 0.23 0.34 0 0.07 ind:pre:3p; +miter miter ver 0.23 0.34 0.2 0 inf; +mites mite nom f p 1.18 2.23 0.81 1.69 +miteuse miteux adj f s 1.98 4.86 0.25 1.08 +miteusement miteusement adv 0 0.07 0 0.07 +miteuserie miteuserie nom f s 0 0.14 0 0.14 +miteuses miteux adj f p 1.98 4.86 0.02 0.41 +miteux miteux adj m 1.98 4.86 1.72 3.38 +mithriaque mithriaque adj m s 0 0.14 0 0.14 +mithridatisation mithridatisation nom f s 0 0.07 0 0.07 +mithridatisé mithridatiser ver m s 0 0.2 0 0.07 par:pas; +mithridatisés mithridatiser ver m p 0 0.2 0 0.14 par:pas; +mitigea mitiger ver 0.22 0.34 0 0.07 ind:pas:3s; +mitiger mitiger ver 0.22 0.34 0.05 0.07 inf; +mitigeurs mitigeur nom m p 0 0.07 0 0.07 +mitigé mitiger ver m s 0.22 0.34 0.1 0.2 par:pas; +mitigée mitiger ver f s 0.22 0.34 0.03 0 par:pas; +mitigées mitigé adj f p 0.07 0.47 0.02 0.07 +mitigés mitiger ver m p 0.22 0.34 0.03 0 par:pas; +mitochondrial mitochondrial adj m s 0.03 0 0.03 0 +mitochondrie mitochondrie nom f s 0.33 0 0.04 0 +mitochondries mitochondrie nom f p 0.33 0 0.29 0 +miton miton nom m s 0 0.07 0 0.07 +mitonnaient mitonner ver 0.19 2.7 0 0.07 ind:imp:3p; +mitonnait mitonner ver 0.19 2.7 0 0.07 ind:imp:3s; +mitonnant mitonner ver 0.19 2.7 0 0.14 par:pre; +mitonne mitonner ver 0.19 2.7 0.03 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mitonnent mitonner ver 0.19 2.7 0 0.2 ind:pre:3p; +mitonner mitonner ver 0.19 2.7 0.14 0.74 inf; +mitonnerait mitonner ver 0.19 2.7 0 0.07 cnd:pre:3s; +mitonné mitonner ver m s 0.19 2.7 0.02 0.27 par:pas; +mitonnée mitonner ver f s 0.19 2.7 0 0.27 par:pas; +mitonnées mitonner ver f p 0.19 2.7 0 0.27 par:pas; +mitonnés mitonner ver m p 0.19 2.7 0 0.14 par:pas; +mitose mitose nom f s 0.14 0 0.14 0 +mitotique mitotique adj f s 0.03 0 0.03 0 +mitoufle mitoufle nom f s 0 0.07 0 0.07 +mitoyen mitoyen adj m s 0.43 1.55 0.26 1.01 +mitoyenne mitoyen adj f s 0.43 1.55 0.02 0.27 +mitoyennes mitoyen adj f p 0.43 1.55 0.02 0.07 +mitoyenneté mitoyenneté nom f s 0 0.2 0 0.2 +mitoyens mitoyen adj m p 0.43 1.55 0.14 0.2 +mitra mitrer ver 0 0.2 0 0.07 ind:pas:3s; +mitrailla mitrailler ver 1.55 3.85 0 0.2 ind:pas:3s; +mitraillade mitraillade nom f s 0 1.01 0 0.88 +mitraillades mitraillade nom f p 0 1.01 0 0.14 +mitraillage mitraillage nom m s 0.15 0.07 0.12 0.07 +mitraillages mitraillage nom m p 0.15 0.07 0.03 0 +mitraillaient mitrailler ver 1.55 3.85 0.01 0.14 ind:imp:3p; +mitraillait mitrailler ver 1.55 3.85 0 0.27 ind:imp:3s; +mitraillant mitrailler ver 1.55 3.85 0.04 0.61 par:pre; +mitraille mitraille nom f s 0.65 3.18 0.65 3.04 +mitraillent mitrailler ver 1.55 3.85 0.08 0.27 ind:pre:3p; +mitrailler mitrailler ver 1.55 3.85 0.59 0.61 inf; +mitrailleraient mitrailler ver 1.55 3.85 0 0.07 cnd:pre:3p; +mitrailles mitrailler ver 1.55 3.85 0.02 0 ind:pre:2s; +mitraillette mitraillette nom f s 3.88 11.35 2.62 7.09 +mitraillettes mitraillette nom f p 3.88 11.35 1.26 4.26 +mitrailleur mitrailleur nom m s 9.59 15.47 0.44 0.74 +mitrailleurs mitrailleur nom m p 9.59 15.47 0.43 1.15 +mitrailleuse mitrailleur nom f s 9.59 15.47 5.32 7.03 +mitrailleuses mitrailleur nom f p 9.59 15.47 3.4 6.55 +mitrailliez mitrailler ver 1.55 3.85 0.01 0 ind:imp:2p; +mitraillèrent mitrailler ver 1.55 3.85 0 0.2 ind:pas:3p; +mitraillé mitrailler ver m s 1.55 3.85 0.09 0.61 par:pas; +mitraillée mitrailler ver f s 1.55 3.85 0.04 0.07 par:pas; +mitraillées mitrailler ver f p 1.55 3.85 0.1 0.07 par:pas; +mitraillés mitrailler ver m p 1.55 3.85 0.14 0.54 par:pas; +mitral mitral adj m s 0.3 0 0.04 0 +mitrale mitral adj f s 0.3 0 0.27 0 +mitre mitre nom f s 0.26 1.96 0.26 1.49 +mitres mitre nom f p 0.26 1.96 0 0.47 +mitron mitron nom m s 0.14 3.58 0.14 2.91 +mitrons mitron nom m p 0.14 3.58 0 0.68 +mitré mitré adj m s 0 0.61 0 0.47 +mitrés mitré adj m p 0 0.61 0 0.14 +mité mité adj m s 0.03 1.01 0.03 0.27 +mitée mité adj f s 0.03 1.01 0 0.2 +mitées mité adj f p 0.03 1.01 0 0.2 +mités mité adj m p 0.03 1.01 0 0.34 +mixage mixage nom m s 0.86 0.27 0.86 0.27 +mixait mixer ver 1.11 0.27 0.01 0.07 ind:imp:3s; +mixe mixer ver 1.11 0.27 0.11 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mixer mixer ver 1.11 0.27 0.78 0 inf; +mixers mixer nom m p 0.78 0.14 0.11 0.07 +mixeur mixeur nom m s 1.21 0.14 1.05 0.14 +mixeurs mixeur nom m p 1.21 0.14 0.15 0 +mixité mixité nom f s 0.07 0.14 0.07 0.14 +mixte mixte adj s 2.81 3.45 2.23 2.3 +mixtes mixte adj p 2.81 3.45 0.59 1.15 +mixture mixture nom f s 0.93 1.62 0.92 1.35 +mixtures mixture nom f p 0.93 1.62 0.01 0.27 +mixé mixer ver m s 1.11 0.27 0.13 0.14 par:pas; +mixée mixer ver f s 1.11 0.27 0.05 0.07 par:pas; +mixés mixer ver m p 1.11 0.27 0.03 0 par:pas; +mièvre mièvre adj s 0.2 1.35 0.2 0.95 +mièvrement mièvrement adv 0.01 0 0.01 0 +mièvrerie mièvrerie nom f s 0.14 1.01 0.01 0.81 +mièvreries mièvrerie nom f p 0.14 1.01 0.13 0.2 +mièvres mièvre adj p 0.2 1.35 0.01 0.41 +ml ml adj_num 0.03 0 0.03 0 +mlle mlle nom_sup f s 45.69 6.55 45.69 6.55 +mm mm nom_sup m 3.79 1.35 3.79 1.35 +mme mme nom_sup f s 81.64 33.24 81.64 33.24 +mn mn nom m s 0.02 0 0.02 0 +mnémonique mnémonique adj m s 0.05 0.07 0.05 0 +mnémoniques mnémonique adj m p 0.05 0.07 0 0.07 +mnémotechnie mnémotechnie nom f s 0 0.07 0 0.07 +mnémotechnique mnémotechnique adj s 0.03 0 0.03 0 +mnésiques mnésique adj m p 0 0.07 0 0.07 +mob mob nom f s 0.93 0.68 0.93 0.68 +mobil_home mobil_home nom m s 0.07 0 0.07 0 +mobile mobile nom m s 8.01 2.84 7.03 1.15 +mobiles mobile nom m p 8.01 2.84 0.98 1.69 +mobilier mobilier nom m s 1.7 5.74 1.66 5.27 +mobiliers mobilier nom m p 1.7 5.74 0.04 0.47 +mobilisa mobiliser ver 3.99 9.39 0.02 0.27 ind:pas:3s; +mobilisable mobilisable adj m s 0 0.74 0 0.47 +mobilisables mobilisable adj f p 0 0.74 0 0.27 +mobilisaient mobiliser ver 3.99 9.39 0.01 0.27 ind:imp:3p; +mobilisais mobiliser ver 3.99 9.39 0 0.14 ind:imp:1s; +mobilisait mobiliser ver 3.99 9.39 0.01 0.41 ind:imp:3s; +mobilisant mobiliser ver 3.99 9.39 0.06 0.34 par:pre; +mobilisateur mobilisateur adj m s 0.01 0.34 0.01 0.2 +mobilisateurs mobilisateur adj m p 0.01 0.34 0 0.14 +mobilisation mobilisation nom f s 0.86 4.39 0.86 4.39 +mobilise mobiliser ver 3.99 9.39 0.42 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mobilisent mobiliser ver 3.99 9.39 0.11 0.14 ind:pre:3p; +mobiliser mobiliser ver 3.99 9.39 1.13 1.35 inf; +mobilisera mobiliser ver 3.99 9.39 0.03 0 ind:fut:3s; +mobiliserait mobiliser ver 3.99 9.39 0.01 0.07 cnd:pre:3s; +mobiliserons mobiliser ver 3.99 9.39 0.01 0.07 ind:fut:1p; +mobilisez mobiliser ver 3.99 9.39 0.28 0 imp:pre:2p;ind:pre:2p; +mobilisions mobiliser ver 3.99 9.39 0.01 0 ind:imp:1p; +mobilisons mobiliser ver 3.99 9.39 0.01 0 ind:pre:1p; +mobilisé mobiliser ver m s 3.99 9.39 0.83 2.97 par:pas; +mobilisée mobiliser ver f s 3.99 9.39 0.53 0.27 par:pas; +mobilisées mobiliser ver f p 3.99 9.39 0.08 0.27 par:pas; +mobilisés mobiliser ver m p 3.99 9.39 0.43 2.23 par:pas; +mobilité mobilité nom f s 0.4 1.96 0.4 1.96 +mobilière mobilier adj f s 0.22 0.88 0 0.2 +mobilières mobilier adj f p 0.22 0.88 0.04 0.27 +mobylette mobylette nom f s 0.89 2.09 0.87 1.82 +mobylettes mobylette nom f p 0.89 2.09 0.02 0.27 +mocassin mocassin nom m s 0.63 2.5 0.06 0.07 +mocassins mocassin nom m p 0.63 2.5 0.57 2.43 +mochard mochard adj m s 0 0.41 0 0.2 +mocharde mochard adj f s 0 0.41 0 0.2 +moche moche adj s 28.73 17.77 25.64 14.32 +moches moche adj p 28.73 17.77 3.09 3.45 +mocheté mocheté nom f s 0.75 0.88 0.66 0.41 +mochetés mocheté nom f p 0.75 0.88 0.08 0.47 +moco moco nom m s 0.19 0 0.19 0 +mod mod nom m s 0.01 0 0.01 0 +modalité modalité nom f s 0.41 2.3 0.01 0 +modalités modalité nom f p 0.41 2.3 0.4 2.3 +mode mode nom s 31.67 51.69 30.79 46.96 +model model nom m s 0.99 0 0.99 0 +modela modeler ver 2.42 8.24 0 0.2 ind:pas:3s; +modelable modelable adj s 0 0.07 0 0.07 +modelage modelage nom m s 0.04 0.2 0.04 0.2 +modelaient modeler ver 2.42 8.24 0 0.2 ind:imp:3p; +modelais modeler ver 2.42 8.24 0 0.27 ind:imp:1s; +modelait modeler ver 2.42 8.24 0.01 0.47 ind:imp:3s; +modelant modeler ver 2.42 8.24 0 0.34 par:pre; +modeler modeler ver 2.42 8.24 1.16 2.03 inf; +modeleur modeleur nom m s 0.04 0 0.04 0 +modelez modeler ver 2.42 8.24 0.28 0 imp:pre:2p;ind:pre:2p; +modelé modeler ver m s 2.42 8.24 0.35 1.22 par:pas; +modelée modeler ver f s 2.42 8.24 0.18 1.01 par:pas; +modelées modeler ver f p 2.42 8.24 0.14 0.54 par:pas; +modelés modeler ver m p 2.42 8.24 0.01 0.54 par:pas; +modem modem nom m s 0.43 0 0.37 0 +modems modem nom m p 0.43 0 0.06 0 +moderato moderato adv 0 0.81 0 0.81 +modern_style modern_style nom m 0.01 0 0.01 0 +modern_style modern_style nom m s 0 0.27 0 0.27 +moderne moderne adj s 21.3 34.73 16.77 24.46 +modernes moderne adj p 21.3 34.73 4.53 10.27 +modernisaient moderniser ver 0.81 1.69 0 0.07 ind:imp:3p; +modernisait moderniser ver 0.81 1.69 0 0.07 ind:imp:3s; +modernisation modernisation nom f s 0.36 0.74 0.36 0.68 +modernisations modernisation nom f p 0.36 0.74 0 0.07 +modernise moderniser ver 0.81 1.69 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modernisent moderniser ver 0.81 1.69 0.03 0.14 ind:pre:3p; +moderniser moderniser ver 0.81 1.69 0.48 0.81 inf; +modernisme modernisme nom m s 0.08 1.15 0.08 1.15 +modernisons moderniser ver 0.81 1.69 0.01 0.07 imp:pre:1p;ind:pre:1p; +modernissime modernissime adj s 0 0.07 0 0.07 +moderniste moderniste adj f s 0.01 0.2 0.01 0.07 +modernistes moderniste nom p 0.04 0 0.03 0 +modernisé moderniser ver m s 0.81 1.69 0.14 0.27 par:pas; +modernisée moderniser ver f s 0.81 1.69 0.04 0.14 par:pas; +modernisés moderniser ver m p 0.81 1.69 0.05 0.07 par:pas; +modernité modernité nom f s 0.71 1.35 0.71 1.22 +modernités modernité nom f p 0.71 1.35 0 0.14 +modes mode nom p 31.67 51.69 0.89 4.73 +modeste modeste adj s 10.64 31.69 9.06 23.38 +modestement modestement adv 0.52 4.39 0.52 4.39 +modestes modeste adj p 10.64 31.69 1.58 8.31 +modestie modestie nom f s 3.96 10.34 3.96 10.27 +modesties modestie nom f p 3.96 10.34 0 0.07 +modicité modicité nom f s 0 0.2 0 0.2 +modifia modifier ver 10.9 18.85 0 0.61 ind:pas:3s; +modifiable modifiable adj f s 0.05 0.2 0.04 0.14 +modifiables modifiable adj p 0.05 0.2 0.01 0.07 +modifiaient modifier ver 10.9 18.85 0 0.95 ind:imp:3p; +modifiais modifier ver 10.9 18.85 0.01 0 ind:imp:1s; +modifiait modifier ver 10.9 18.85 0.04 1.76 ind:imp:3s; +modifiant modifier ver 10.9 18.85 0.2 0.81 par:pre; +modificateur modificateur adj m s 0.03 0 0.03 0 +modification modification nom f s 2.69 4.26 1 1.96 +modifications modification nom f p 2.69 4.26 1.69 2.3 +modifie modifier ver 10.9 18.85 1.04 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modifient modifier ver 10.9 18.85 0.17 0.34 ind:pre:3p; +modifier modifier ver 10.9 18.85 4.17 6.96 inf; +modifiera modifier ver 10.9 18.85 0.03 0 ind:fut:3s; +modifierai modifier ver 10.9 18.85 0.02 0 ind:fut:1s; +modifieraient modifier ver 10.9 18.85 0 0.2 cnd:pre:3p; +modifierais modifier ver 10.9 18.85 0.02 0 cnd:pre:1s;cnd:pre:2s; +modifierait modifier ver 10.9 18.85 0.04 0.34 cnd:pre:3s; +modifiez modifier ver 10.9 18.85 0.22 0 imp:pre:2p;ind:pre:2p; +modifions modifier ver 10.9 18.85 0.17 0 imp:pre:1p;ind:pre:1p; +modifiât modifier ver 10.9 18.85 0 0.14 sub:imp:3s; +modifièrent modifier ver 10.9 18.85 0.02 0.14 ind:pas:3p; +modifié modifier ver m s 10.9 18.85 3.38 3.18 par:pas; +modifiée modifier ver f s 10.9 18.85 0.64 1.15 par:pas; +modifiées modifier ver f p 10.9 18.85 0.21 0.34 par:pas; +modifiés modifier ver m p 10.9 18.85 0.53 0.2 par:pas; +modillon modillon nom m s 0 0.47 0 0.07 +modillons modillon nom m p 0 0.47 0 0.41 +modique modique adj s 0.33 0.95 0.32 0.74 +modiques modique adj f p 0.33 0.95 0.01 0.2 +modiste modiste nom s 0.15 1.55 0.14 1.15 +modistes modiste nom p 0.15 1.55 0.01 0.41 +modula moduler ver 0.2 4.19 0 0.41 ind:pas:3s; +modulable modulable adj m s 0.07 0.14 0.03 0.07 +modulables modulable adj m p 0.07 0.14 0.04 0.07 +modulai moduler ver 0.2 4.19 0 0.07 ind:pas:1s; +modulaire modulaire adj m s 0.11 0 0.06 0 +modulaires modulaire adj p 0.11 0 0.04 0 +modulais moduler ver 0.2 4.19 0 0.07 ind:imp:1s; +modulait moduler ver 0.2 4.19 0 0.14 ind:imp:3s; +modulant moduler ver 0.2 4.19 0 0.34 par:pre; +modulateur modulateur adj m s 0.47 0 0.47 0 +modulation modulation nom f s 0.19 2.36 0.16 1.01 +modulations modulation nom f p 0.19 2.36 0.04 1.35 +module module nom m s 7.03 0.61 6.49 0.54 +modulent moduler ver 0.2 4.19 0 0.07 ind:pre:3p; +moduler moduler ver 0.2 4.19 0.07 0.47 inf; +modules module nom m p 7.03 0.61 0.54 0.07 +modulé moduler ver m s 0.2 4.19 0.01 0.95 par:pas; +modulée moduler ver f s 0.2 4.19 0.01 0.68 par:pas; +modulées moduler ver f p 0.2 4.19 0 0.14 par:pas; +modulés moduler ver m p 0.2 4.19 0 0.47 par:pas; +modus_operandi modus_operandi nom m s 0.32 0 0.32 0 +modus_vivendi modus_vivendi nom m 0.01 0.47 0.01 0.47 +modèle modèle nom m s 25.06 35.95 19.56 27.5 +modèlent modeler ver 2.42 8.24 0 0.14 ind:pre:3p; +modèles modèle nom m p 25.06 35.95 5.5 8.45 +modère modérer ver 1.32 3.51 0.41 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modélisation modélisation nom f s 0.04 0 0.04 0 +modélisme modélisme nom m s 0.03 0 0.03 0 +modéliste modéliste nom s 0.04 0.27 0.04 0.27 +modélisé modéliser ver m s 0.02 0 0.01 0 par:pas; +modélisée modéliser ver f s 0.02 0 0.01 0 par:pas; +modéra modérer ver 1.32 3.51 0 0.07 ind:pas:3s; +modérai modérer ver 1.32 3.51 0 0.07 ind:pas:1s; +modérait modérer ver 1.32 3.51 0 0.07 ind:imp:3s; +modérant modérer ver 1.32 3.51 0 0.14 par:pre; +modérateur modérateur nom m s 0.01 0.14 0.01 0.07 +modérateurs modérateur nom m p 0.01 0.14 0 0.07 +modération modération nom f s 1.3 2.36 1.3 2.3 +modérations modération nom f p 1.3 2.36 0 0.07 +modérer modérer ver 1.32 3.51 0.34 1.62 inf; +modéreras modérer ver 1.32 3.51 0.01 0 ind:fut:2s; +modérez modérer ver 1.32 3.51 0.06 0.2 imp:pre:2p; +modéré modéré adj m s 0.52 3.18 0.25 1.22 +modérée modérer ver f s 1.32 3.51 0.2 0 par:pas; +modérées modérer ver f p 1.32 3.51 0.03 0.14 par:pas; +modérément modérément adv 0.21 2.36 0.21 2.36 +modérés modéré nom m p 0.45 1.42 0.14 0.95 +moelle moelle nom f s 4.23 6.15 4.21 5.34 +moelles moelle nom f p 4.23 6.15 0.01 0.81 +moelleuse moelleux adj f s 1.22 6.22 0.14 1.49 +moelleusement moelleusement adv 0 0.27 0 0.27 +moelleuses moelleux adj f p 1.22 6.22 0.1 0.2 +moelleux moelleux adj m 1.22 6.22 0.98 4.53 +moellon moellon nom m s 0.01 2.5 0 0.41 +moellons moellon nom m p 0.01 2.5 0.01 2.09 +moeurs moeurs nom f p 3.08 21.08 3.08 21.08 +moghol moghol nom m s 0.01 0 0.01 0 +mogol mogol adj m s 0 0.14 0 0.14 +mohair mohair nom m s 0.29 0.54 0.29 0.47 +mohairs mohair nom m p 0.29 0.54 0 0.07 +mohican mohican nom m s 0.01 0 0.01 0 +moho moho nom m s 0.03 0 0.03 0 +moi moi pro_per s 3675.68 1877.57 3675.68 1877.57 +moi_moi_moi moi_moi_moi nom m 0 0.07 0 0.07 +moi_même moi_même pro_per s 83.25 107.3 83.25 107.3 +moignon moignon nom m s 0.57 4.05 0.36 1.82 +moignons moignon nom m p 0.57 4.05 0.2 2.23 +moindre moindre adj_sup s 50.12 130.27 46.74 116.96 +moindrement moindrement adv 0.02 0.07 0.02 0.07 +moindres moindre adj_sup p 50.12 130.27 3.38 13.31 +moine moine nom m s 11.82 34.73 8.21 18.04 +moineau moineau nom m s 5.65 8.38 2.92 4.32 +moineaux moineau nom m p 5.65 8.38 2.73 4.05 +moines moine nom m p 11.82 34.73 3.62 16.69 +moinillon moinillon nom m s 0.04 0.54 0.04 0.41 +moinillons moinillon nom m p 0.04 0.54 0 0.14 +moins moins adv_sup 478.75 718.18 478.75 718.18 +moiraient moirer ver 0 0.81 0 0.07 ind:imp:3p; +moire moire nom f s 0.04 1.76 0.02 1.28 +moires moire nom f p 0.04 1.76 0.02 0.47 +moirure moirure nom f s 0 0.34 0 0.07 +moirures moirure nom f p 0 0.34 0 0.27 +moiré moiré adj m s 0.04 1.96 0.02 0.61 +moirée moiré adj f s 0.04 1.96 0.01 0.74 +moirées moiré adj f p 0.04 1.96 0 0.27 +moirés moiré adj m p 0.04 1.96 0.01 0.34 +mois mois nom m 312.31 304.86 312.31 304.86 +moise moise nom f s 0.37 0 0.27 0 +moises moise nom f p 0.37 0 0.1 0 +moisi moisir ver m s 3.85 5 0.56 0.47 par:pas; +moisie moisi adj f s 0.61 4.46 0.19 0.74 +moisies moisi adj f p 0.61 4.46 0.02 1.01 +moisir moisir ver 3.85 5 2.46 2.09 inf; +moisira moisir ver 3.85 5 0.01 0.07 ind:fut:3s; +moisirai moisir ver 3.85 5 0.03 0.07 ind:fut:1s; +moisiraient moisir ver 3.85 5 0 0.07 cnd:pre:3p; +moisirais moisir ver 3.85 5 0.01 0 cnd:pre:1s; +moisirait moisir ver 3.85 5 0 0.07 cnd:pre:3s; +moisiras moisir ver 3.85 5 0.05 0 ind:fut:2s; +moisirez moisir ver 3.85 5 0.04 0 ind:fut:2p; +moisiront moisir ver 3.85 5 0 0.14 ind:fut:3p; +moisis moisir ver m p 3.85 5 0.25 0.14 ind:pre:1s;par:pas; +moisissaient moisir ver 3.85 5 0 0.14 ind:imp:3p; +moisissais moisir ver 3.85 5 0 0.14 ind:imp:1s; +moisissait moisir ver 3.85 5 0 0.47 ind:imp:3s; +moisissant moisir ver 3.85 5 0.13 0.07 par:pre; +moisisse moisir ver 3.85 5 0.04 0.07 sub:pre:1s;sub:pre:3s; +moisissent moisir ver 3.85 5 0.04 0.14 ind:pre:3p; +moisissez moisir ver 3.85 5 0.03 0 imp:pre:2p;ind:pre:2p; +moisissure moisissure nom f s 1.39 3.78 1.15 2.57 +moisissures moisissure nom f p 1.39 3.78 0.25 1.22 +moisit moisir ver 3.85 5 0.13 0.41 ind:pre:3s;ind:pas:3s; +moisson moisson nom f s 3.08 7.91 2.62 4.05 +moissonnait moissonner ver 1.01 1.01 0 0.07 ind:imp:3s; +moissonnant moissonner ver 1.01 1.01 0 0.07 par:pre; +moissonne moissonner ver 1.01 1.01 0.11 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +moissonnent moissonner ver 1.01 1.01 0.16 0 ind:pre:3p; +moissonner moissonner ver 1.01 1.01 0.18 0.41 inf; +moissonnera moissonner ver 1.01 1.01 0.02 0 ind:fut:3s; +moissonnerai moissonner ver 1.01 1.01 0.12 0 ind:fut:1s; +moissonneur moissonneur nom m s 0.75 1.22 0.09 0.07 +moissonneurs moissonneur nom m p 0.75 1.22 0.3 0.81 +moissonneuse moissonneur nom f s 0.75 1.22 0.34 0.14 +moissonneuse_batteuse moissonneuse_batteuse nom f s 0.04 0.47 0.04 0.27 +moissonneuse_lieuse moissonneuse_lieuse nom f s 0 0.14 0 0.07 +moissonneuses moissonneur nom f p 0.75 1.22 0.01 0.2 +moissonneuse_batteuse moissonneuse_batteuse nom f p 0.04 0.47 0 0.2 +moissonneuse_lieuse moissonneuse_lieuse nom f p 0 0.14 0 0.07 +moissonnez moissonner ver 1.01 1.01 0.16 0 imp:pre:2p;ind:pre:2p; +moissonné moissonner ver m s 1.01 1.01 0.26 0.14 par:pas; +moissonnée moissonner ver f s 1.01 1.01 0.01 0 par:pas; +moissonnées moissonner ver f p 1.01 1.01 0 0.07 par:pas; +moissonnés moissonner ver m p 1.01 1.01 0 0.14 par:pas; +moissons moisson nom f p 3.08 7.91 0.45 3.85 +moite moite adj s 1.98 15.14 1.01 10 +moites moite adj p 1.98 15.14 0.97 5.14 +moiteur moiteur nom f s 0.77 4.93 0.77 4.66 +moiteurs moiteur nom f p 0.77 4.93 0 0.27 +moiti moitir ver m s 0.04 0 0.04 0 par:pas; +moitié moitié nom f s 74.77 79.05 74.25 76.96 +moitié_moitié moitié_moitié adv 0 0.14 0 0.14 +moitiés moitié nom f p 74.77 79.05 0.52 2.09 +moka moka nom m s 0.64 1.89 0.55 1.55 +mokas moka nom m p 0.64 1.89 0.09 0.34 +moko moko nom m s 0.14 0.14 0.14 0.14 +mol mol adj m s 1.1 1.28 1.07 1.15 +molaire molaire nom f s 0.96 1.76 0.4 0.74 +molaires molaire nom f p 0.96 1.76 0.56 1.01 +molard molard nom m s 0.01 0 0.01 0 +molasse molasse nom f s 0.02 0.2 0.02 0.2 +moldave moldave nom s 0.27 0 0.27 0 +moldaves moldave adj p 0.02 0.14 0 0.14 +mole mole nom f s 0.27 0.47 0.27 0.41 +moles mole nom f p 0.27 0.47 0 0.07 +moleskine moleskine nom f s 0.01 3.31 0.01 3.31 +molesquine molesquine nom f s 0 0.88 0 0.88 +molesta molester ver 0.74 0.88 0.01 0.07 ind:pas:3s; +molestaient molester ver 0.74 0.88 0 0.07 ind:imp:3p; +molestant molester ver 0.74 0.88 0.01 0.07 par:pre; +molestation molestation nom f s 0 0.07 0 0.07 +moleste molester ver 0.74 0.88 0.03 0.07 ind:pre:3s; +molester molester ver 0.74 0.88 0.21 0.2 inf; +molestez molester ver 0.74 0.88 0.02 0 imp:pre:2p;ind:pre:2p; +molesté molester ver m s 0.74 0.88 0.33 0.27 par:pas; +molestée molester ver f s 0.74 0.88 0.11 0 par:pas; +molestés molester ver m p 0.74 0.88 0.02 0.14 par:pas; +moleta moleter ver 0.2 0 0.2 0 ind:pas:3s; +molette molette nom f s 0.43 1.01 0.42 0.88 +molettes molette nom f p 0.43 1.01 0.01 0.14 +moliéresque moliéresque adj f s 0 0.07 0 0.07 +mollah mollah nom m s 0.89 0.14 0.36 0 +mollahs mollah nom m p 0.89 0.14 0.53 0.14 +mollard mollard nom m s 0.2 1.82 0.16 1.69 +mollarder mollarder ver 0.02 0.07 0 0.07 inf; +mollards mollard nom m p 0.2 1.82 0.03 0.14 +mollardé mollarder ver m s 0.02 0.07 0.02 0 par:pas; +mollasse mollasse adj s 0.25 0.95 0.25 0.81 +mollasses mollasse adj m p 0.25 0.95 0 0.14 +mollasson mollasson nom m s 0.4 0.2 0.38 0.2 +mollassonne mollasson adj f s 0.3 0.27 0.04 0.07 +mollassons mollasson adj m p 0.3 0.27 0.02 0.07 +molle mou,mol adj f s 5.37 34.53 3.92 22.7 +mollement mollement adv 0.33 11.55 0.33 11.55 +molles mou,mol adj f p 5.37 34.53 1.45 11.82 +mollesse mollesse nom f s 0.44 6.42 0.44 6.28 +mollesses mollesse nom f p 0.44 6.42 0 0.14 +mollet mollet nom m s 1.77 14.93 0.67 5.27 +molletière molletière nom f s 0.1 3.18 0 0.14 +molletières molletière nom f p 0.1 3.18 0.1 3.04 +molleton molleton nom m s 0 0.88 0 0.81 +molletonneux molletonneux adj m p 0 0.07 0 0.07 +molletonné molletonner ver m s 0.01 0.07 0.01 0 par:pas; +molletonnée molletonné adj f s 0 0.14 0 0.07 +molletons molleton nom m p 0 0.88 0 0.07 +mollets mollet nom m p 1.77 14.93 1.11 9.66 +mollette mollet adj f s 0.06 0.61 0.01 0 +mollettes mollet adj f p 0.06 0.61 0 0.07 +molli mollir ver m s 1.18 2.57 0.03 0.34 par:pas; +mollie mollir ver f s 1.18 2.57 0.59 0 par:pas; +mollir mollir ver 1.18 2.57 0.04 0.61 inf; +mollis mollir ver 1.18 2.57 0.07 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mollissaient mollir ver 1.18 2.57 0 0.2 ind:imp:3p; +mollissait mollir ver 1.18 2.57 0.01 0.74 ind:imp:3s; +mollissant mollir ver 1.18 2.57 0 0.07 par:pre; +mollisse mollir ver 1.18 2.57 0 0.07 sub:pre:3s; +mollissent mollir ver 1.18 2.57 0.04 0.14 ind:pre:3p; +mollissez mollir ver 1.18 2.57 0.14 0 imp:pre:2p; +mollit mollir ver 1.18 2.57 0.26 0.41 ind:pre:3s;ind:pas:3s; +mollo mollo adv 5.23 2.3 5.23 2.3 +mollusque mollusque nom m s 0.93 1.22 0.57 0.81 +mollusques mollusque nom m p 0.93 1.22 0.35 0.41 +moloch moloch nom m s 0 0.07 0 0.07 +molosse molosse nom m s 0.54 1.76 0.24 0.74 +molosses molosse nom m p 0.54 1.76 0.3 1.01 +mols mol adj m p 1.1 1.28 0.03 0.14 +molto molto adv 0.28 0.27 0.28 0.27 +moly moly nom m s 0.04 0 0.04 0 +molybdène molybdène nom m s 0.01 0 0.01 0 +molènes molène nom f p 0 0.07 0 0.07 +moléculaire moléculaire adj s 2.4 0.41 2.3 0.27 +moléculaires moléculaire adj p 2.4 0.41 0.1 0.14 +molécule molécule nom f s 2.15 1.62 0.76 0.88 +molécules molécule nom f p 2.15 1.62 1.39 0.74 +moman moman nom f s 0.04 0.27 0.04 0.27 +mombin mombin nom m s 0 0.07 0 0.07 +moment moment nom m s 433.59 688.24 403.25 611.62 +moment_clé moment_clé nom m s 0.04 0 0.04 0 +momentané momentané adj m s 0.96 2.57 0.47 1.08 +momentanée momentané adj f s 0.96 2.57 0.34 1.15 +momentanées momentané adj f p 0.96 2.57 0 0.07 +momentanément momentanément adv 1.29 5.2 1.29 5.2 +momentanés momentané adj m p 0.96 2.57 0.16 0.27 +moments moment nom m p 433.59 688.24 30.34 76.62 +moments_clé moments_clé nom m p 0.01 0 0.01 0 +momerie momerie nom f s 0.14 0.61 0 0.27 +momeries momerie nom f p 0.14 0.61 0.14 0.34 +momichons momichon nom m p 0 0.07 0 0.07 +momie momi nom f s 2.47 4.86 2.47 3.31 +momies momie nom f p 2.18 0 0.76 0 +momifiait momifier ver 0.25 1.55 0 0.27 ind:imp:3s; +momifiant momifier ver 0.25 1.55 0 0.07 par:pre; +momification momification nom f s 0.07 0 0.07 0 +momifie momifier ver 0.25 1.55 0 0.07 ind:pre:3s; +momifier momifier ver 0.25 1.55 0.07 0.27 inf; +momifié momifier ver m s 0.25 1.55 0.14 0.2 par:pas; +momifiée momifié adj f s 0.24 1.22 0.02 0.41 +momifiées momifier ver f p 0.25 1.55 0 0.07 par:pas; +momifiés momifié adj m p 0.24 1.22 0.18 0.14 +mominette mominette nom f s 0 0.41 0 0.41 +mon mon adj_pos 3848.99 2307.97 3848.99 2307.97 +monacal monacal adj m s 0.01 1.22 0 0.41 +monacale monacal adj f s 0.01 1.22 0.01 0.68 +monacales monacal adj f p 0.01 1.22 0 0.14 +monachisme monachisme nom m s 0 0.07 0 0.07 +monades monade nom f p 0 0.07 0 0.07 +monadologie monadologie nom f s 0.01 0 0.01 0 +monarchie monarchie nom f s 1.1 4.86 1.1 4.53 +monarchies monarchie nom f p 1.1 4.86 0 0.34 +monarchique monarchique adj s 0 0.34 0 0.34 +monarchiste monarchiste adj s 0.61 1.28 0.31 1.08 +monarchistes monarchiste adj m p 0.61 1.28 0.3 0.2 +monarque monarque nom m s 1.37 1.96 1.16 1.55 +monarques monarque nom m p 1.37 1.96 0.2 0.41 +monastique monastique adj s 0.02 1.08 0.02 0.95 +monastiques monastique adj p 0.02 1.08 0 0.14 +monastère monastère nom m s 4.86 7.97 4.51 6.28 +monastères monastère nom m p 4.86 7.97 0.35 1.69 +monbazillac monbazillac nom m s 0 0.54 0 0.54 +monceau monceau nom m s 0.97 7.84 0.95 4.59 +monceaux monceau nom m p 0.97 7.84 0.02 3.24 +monda monder ver 0.11 0.07 0.1 0 ind:pas:3s; +mondain mondain adj m s 2.73 13.24 1.17 4.26 +mondaine mondain adj f s 2.73 13.24 0.84 4.53 +mondainement mondainement adv 0 0.14 0 0.14 +mondaines mondain adj f p 2.73 13.24 0.43 2.64 +mondains mondain adj m p 2.73 13.24 0.28 1.82 +mondanisaient mondaniser ver 0 0.14 0 0.07 ind:imp:3p; +mondanisé mondaniser ver m s 0 0.14 0 0.07 par:pas; +mondanité mondanité nom f s 0.33 2.64 0.01 0.81 +mondanités mondanité nom f p 0.33 2.64 0.32 1.82 +monde monde nom m s 830.72 741.35 823.62 732.43 +monder monder ver 0.11 0.07 0.01 0 inf; +mondes monde nom m p 830.72 741.35 7.11 8.92 +mondial mondial adj m s 13.79 16.35 4.27 2.5 +mondiale mondial adj f s 13.79 16.35 8.17 12.03 +mondialement mondialement adv 0.53 0.14 0.53 0.14 +mondiales mondial adj f p 13.79 16.35 0.8 0.74 +mondialisation mondialisation nom f s 0.13 0 0.13 0 +mondialisent mondialiser ver 0 0.07 0 0.07 ind:pre:3p; +mondialistes mondialiste adj m p 0 0.07 0 0.07 +mondiaux mondial adj m p 13.79 16.35 0.55 1.08 +mondovision mondovision nom f s 0.03 0.07 0.03 0.07 +mondée monder ver f s 0.11 0.07 0 0.07 par:pas; +mongo mongo nom s 0.19 0 0.19 0 +mongol mongol adj m s 0.81 3.92 0.49 2.03 +mongole mongol nom f s 0.69 1.69 0.22 0.41 +mongoles mongol nom f p 0.69 1.69 0.12 0 +mongolie mongolie nom f s 0 0.07 0 0.07 +mongolien mongolien adj m s 0.56 0.07 0.39 0 +mongolienne mongolien adj f s 0.56 0.07 0.15 0.07 +mongoliennes mongolien adj f p 0.56 0.07 0.01 0 +mongoliens mongolien nom m p 0.38 1.01 0.01 0.34 +mongolique mongolique adj f s 0 0.14 0 0.07 +mongoliques mongolique adj m p 0 0.14 0 0.07 +mongoloïde mongoloïde adj s 0 0.07 0 0.07 +mongols mongol adj m p 0.81 3.92 0.17 0.27 +moniale moniale nom f s 0 0.14 0 0.14 +moniales moniale adj f p 0 0.07 0 0.07 +moniteur moniteur nom m s 4.26 5.61 2.44 1.89 +moniteurs moniteur nom m p 4.26 5.61 1.61 2.03 +monition monition nom f s 0.14 0 0.14 0 +monitor monitor nom m s 0.11 0 0.11 0 +monitorage monitorage nom m s 0.04 0 0.04 0 +monitoring monitoring nom m s 0.13 0 0.13 0 +monitrice moniteur nom f s 4.26 5.61 0.22 0.68 +monitrices moniteur nom f p 4.26 5.61 0 1.01 +monnaie monnaie nom f s 27.31 28.99 26.82 25.34 +monnaie_du_pape monnaie_du_pape nom f s 0 0.07 0 0.07 +monnaiera monnayer ver 0.7 1.49 0 0.07 ind:fut:3s; +monnaierai monnayer ver 0.7 1.49 0.01 0 ind:fut:1s; +monnaies monnaie nom f p 27.31 28.99 0.48 3.65 +monnaies_du_pape monnaies_du_pape nom f p 0 0.07 0 0.07 +monnaya monnayer ver 0.7 1.49 0 0.07 ind:pas:3s; +monnayable monnayable adj s 0.02 0.27 0.02 0.2 +monnayables monnayable adj m p 0.02 0.27 0 0.07 +monnayait monnayer ver 0.7 1.49 0.01 0.2 ind:imp:3s; +monnayant monnayer ver 0.7 1.49 0 0.07 par:pre; +monnaye monnayer ver 0.7 1.49 0.02 0.07 ind:pre:3s; +monnayer monnayer ver 0.7 1.49 0.29 0.74 inf; +monnayeur monnayeur nom m s 0.03 0.14 0.01 0 +monnayeurs monnayeur nom m p 0.03 0.14 0.02 0.14 +monnayé monnayer ver m s 0.7 1.49 0.03 0.2 par:pas; +monnayée monnayer ver f s 0.7 1.49 0 0.07 par:pas; +mono mono nom s 3.02 0.2 3.02 0.2 +monoamine monoamine nom f s 0.03 0 0.03 0 +monobloc monobloc nom m s 0 0.07 0 0.07 +monocellulaire monocellulaire adj f s 0.01 0 0.01 0 +monochrome monochrome adj m s 0.07 0.41 0.04 0.2 +monochromes monochrome adj f p 0.07 0.41 0.02 0.2 +monochromie monochromie nom f s 0 0.07 0 0.07 +monocle monocle nom m s 0.56 4.05 0.53 3.92 +monocles monocle nom m p 0.56 4.05 0.02 0.14 +monoclonal monoclonal adj m s 0.02 0 0.01 0 +monoclonaux monoclonal adj m p 0.02 0 0.01 0 +monoclé monoclé adj m s 0 0.14 0 0.14 +monocoque monocoque adj s 0.1 0 0.1 0 +monocorde monocorde adj s 0.03 2.57 0.02 2.09 +monocordes monocorde adj f p 0.03 2.57 0.01 0.47 +monocratie monocratie nom f s 0.01 0 0.01 0 +monoculaire monoculaire adj m s 0.01 0.07 0 0.07 +monoculaires monoculaire adj p 0.01 0.07 0.01 0 +monoculture monoculture nom f s 0 0.07 0 0.07 +monocycle monocycle nom m s 0.07 0 0.07 0 +monocylindre monocylindre nom m s 0.01 0 0.01 0 +monodie monodie nom f s 0.1 0.07 0.1 0.07 +monofilament monofilament nom m s 0.02 0 0.02 0 +monogame monogame adj s 0.5 0.47 0.31 0.34 +monogames monogame adj p 0.5 0.47 0.18 0.14 +monogamie monogamie nom f s 0.59 0.07 0.59 0.07 +monogramme monogramme nom m s 0.21 0.95 0.21 0.81 +monogrammes monogramme nom m p 0.21 0.95 0 0.14 +monogrammées monogrammé adj f p 0.01 0 0.01 0 +monographie monographie nom f s 0.2 0.61 0.19 0.27 +monographies monographie nom f p 0.2 0.61 0.01 0.34 +monokini monokini nom m s 0.32 0 0.32 0 +monolinguisme monolinguisme nom m s 0.1 0 0.1 0 +monolithe monolithe nom m s 0.13 0.14 0.12 0.07 +monolithes monolithe nom m p 0.13 0.14 0.01 0.07 +monolithique monolithique adj s 0.03 0.68 0.02 0.61 +monolithiques monolithique adj f p 0.03 0.68 0.01 0.07 +monolithisme monolithisme nom m s 0 0.07 0 0.07 +monologua monologuer ver 0.16 1.01 0.01 0 ind:pas:3s; +monologuaient monologuer ver 0.16 1.01 0 0.07 ind:imp:3p; +monologuais monologuer ver 0.16 1.01 0 0.14 ind:imp:1s; +monologuait monologuer ver 0.16 1.01 0 0.2 ind:imp:3s; +monologuant monologuer ver 0.16 1.01 0 0.34 par:pre; +monologue monologue nom m s 1.86 6.28 1.44 5.68 +monologuer monologuer ver 0.16 1.01 0.01 0.14 inf; +monologues monologue nom m p 1.86 6.28 0.42 0.61 +monomane monomane nom s 0.01 0 0.01 0 +monomanes monomane adj p 0 0.07 0 0.07 +monomaniaque monomaniaque adj s 0.04 0.2 0.04 0.07 +monomaniaques monomaniaque adj p 0.04 0.2 0 0.14 +monomanie monomanie nom f s 0.01 0.14 0.01 0.14 +monomoteur monomoteur nom m s 0.01 0.07 0.01 0.07 +monomoteurs monomoteur adj m p 0.03 0 0.03 0 +mononucléaire mononucléaire adj f s 0 0.07 0 0.07 +mononucléose mononucléose nom f s 0.4 0.07 0.4 0.07 +monoparental monoparental adj m s 0.09 0 0.01 0 +monoparentale monoparental adj f s 0.09 0 0.04 0 +monoparentales monoparental adj f p 0.09 0 0.01 0 +monoparentaux monoparental adj m p 0.09 0 0.03 0 +monophasée monophasé adj f s 0 0.07 0 0.07 +monoplace monoplace adj m s 0.04 0.14 0.04 0.14 +monoplaces monoplace nom p 0.02 0.07 0.02 0 +monoplan monoplan nom m s 0.1 0.47 0.09 0.34 +monoplans monoplan nom m p 0.1 0.47 0.01 0.14 +monopode monopode adj m s 0.01 0 0.01 0 +monopole monopole nom m s 1.61 3.11 1.32 2.91 +monopoles monopole nom m p 1.61 3.11 0.29 0.2 +monopolisa monopoliser ver 0.61 0.88 0.02 0 ind:pas:3s; +monopolisaient monopoliser ver 0.61 0.88 0 0.07 ind:imp:3p; +monopolisais monopoliser ver 0.61 0.88 0 0.07 ind:imp:1s; +monopolisait monopoliser ver 0.61 0.88 0.04 0.14 ind:imp:3s; +monopolise monopoliser ver 0.61 0.88 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +monopolisent monopoliser ver 0.61 0.88 0.15 0 ind:pre:3p; +monopoliser monopoliser ver 0.61 0.88 0.07 0.41 inf; +monopolisera monopoliser ver 0.61 0.88 0.01 0 ind:fut:3s; +monopolisez monopoliser ver 0.61 0.88 0.03 0 imp:pre:2p;ind:pre:2p; +monopolisèrent monopoliser ver 0.61 0.88 0 0.07 ind:pas:3p; +monopolisé monopoliser ver m s 0.61 0.88 0.04 0 par:pas; +monopolisés monopoliser ver m p 0.61 0.88 0.01 0.07 par:pas; +monopoly monopoly nom m s 1.37 0.41 1.37 0.41 +monoprix monoprix nom m 0.21 0.27 0.21 0.27 +monorail monorail nom m s 0.55 0 0.48 0 +monorails monorail nom m p 0.55 0 0.07 0 +monospace monospace nom m s 0.18 0 0.18 0 +monosyllabe monosyllabe nom m s 0.06 1.35 0 0.27 +monosyllabes monosyllabe nom m p 0.06 1.35 0.06 1.08 +monosyllabique monosyllabique adj m s 0.04 0.14 0.02 0.07 +monosyllabiques monosyllabique adj m p 0.04 0.14 0.01 0.07 +monothéisme monothéisme nom m s 0 0.34 0 0.27 +monothéismes monothéisme nom m p 0 0.34 0 0.07 +monothéiste monothéiste adj f s 0 0.14 0 0.07 +monothéistes monothéiste adj p 0 0.14 0 0.07 +monotone monotone adj s 1.48 15.47 1.3 13.24 +monotonement monotonement adv 0.1 0.41 0.1 0.41 +monotones monotone adj p 1.48 15.47 0.18 2.23 +monotonie monotonie nom f s 0.87 4.93 0.87 4.93 +monotype monotype nom m s 0 0.07 0 0.07 +monoxyde monoxyde nom m s 0.4 0.07 0.4 0.07 +monoxyle monoxyle adj f s 0 0.07 0 0.07 +mons mons nom s 0.41 0.07 0.41 0.07 +monseigneur monseigneur nom_sup m s 26.26 5.34 26.26 5.34 +monsieur monsieur nom_sup m s 739.12 324.86 583.45 286.76 +monsignor monsignor nom m s 0.17 0.14 0.17 0.14 +monsignore monsignore nom m s 0.16 0.07 0.16 0.07 +monstrance monstrance nom f s 0 0.14 0 0.07 +monstrances monstrance nom f p 0 0.14 0 0.07 +monstre monstre nom m s 62.56 26.96 48.42 18.18 +monstres monstre nom m p 62.56 26.96 14.14 8.78 +monstrueuse monstrueux adj f s 8.93 20.88 1.89 7.97 +monstrueusement monstrueusement adv 0.3 1.69 0.3 1.69 +monstrueuses monstrueux adj f p 8.93 20.88 0.41 2.3 +monstrueux monstrueux adj m 8.93 20.88 6.63 10.61 +monstruosité monstruosité nom f s 0.93 2.77 0.4 2.16 +monstruosités monstruosité nom f p 0.93 2.77 0.53 0.61 +mont mont nom m s 12.63 18.92 9.04 12.36 +mont_blanc mont_blanc nom m s 1.84 0.47 1.64 0.41 +mont_de_piété mont_de_piété nom m s 0.98 0.81 0.98 0.81 +monta monter ver 277.32 404.59 1.07 34.05 ind:pas:3s; +montage montage nom m s 6.66 2.91 6.35 2.77 +montages montage nom m p 6.66 2.91 0.31 0.14 +montagnard montagnard nom m s 1.05 2.03 0.28 0.61 +montagnarde montagnard adj f s 0.42 1.22 0.16 0.27 +montagnardes montagnard adj f p 0.42 1.22 0 0.2 +montagnards montagnard nom m p 1.05 2.03 0.74 1.22 +montagne montagne nom f s 62.01 81.82 36.76 49.8 +montagnes montagne nom f p 62.01 81.82 25.25 32.03 +montagneuse montagneux adj f s 0.41 1.35 0.05 0.41 +montagneuses montagneux adj f p 0.41 1.35 0.02 0.27 +montagneux montagneux adj m 0.41 1.35 0.33 0.68 +montai monter ver 277.32 404.59 0.04 4.86 ind:pas:1s; +montaient monter ver 277.32 404.59 0.83 21.96 ind:imp:3p; +montais monter ver 277.32 404.59 1.52 3.58 ind:imp:1s;ind:imp:2s; +montaison montaison nom f s 0 0.07 0 0.07 +montait monter ver 277.32 404.59 3.95 62.57 ind:imp:3s; +montant montant nom m s 5.97 12.84 5.31 8.38 +montante montant adj f s 1.65 8.38 0.86 4.59 +montantes montant adj f p 1.65 8.38 0.3 1.15 +montants montant nom m p 5.97 12.84 0.66 4.46 +monte monter ver 277.32 404.59 109.76 70.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +monte_charge monte_charge nom m 0.51 0.54 0.51 0.54 +monte_charges monte_charges nom m 0.01 0.07 0.01 0.07 +monte_en_l_air monte_en_l_air nom m 0.12 0.2 0.12 0.2 +monte_plat monte_plat nom m s 0.01 0 0.01 0 +monte_plats monte_plats nom m 0.04 0.07 0.04 0.07 +montent monter ver 277.32 404.59 4.86 14.39 ind:pre:3p; +monter monter ver 277.32 404.59 85.7 96.89 ind:pre:2p;inf; +montera monter ver 277.32 404.59 2.36 1.82 ind:fut:3s; +monterai monter ver 277.32 404.59 1.61 1.22 ind:fut:1s; +monteraient monter ver 277.32 404.59 0.1 0.41 cnd:pre:3p; +monterais monter ver 277.32 404.59 0.53 0.41 cnd:pre:1s;cnd:pre:2s; +monterait monter ver 277.32 404.59 0.55 2.84 cnd:pre:3s; +monteras monter ver 277.32 404.59 0.76 0.47 ind:fut:2s; +monterez monter ver 277.32 404.59 0.23 0.34 ind:fut:2p; +monteriez monter ver 277.32 404.59 0.03 0 cnd:pre:2p; +monterons monter ver 277.32 404.59 0.31 0.34 ind:fut:1p; +monteront monter ver 277.32 404.59 0.34 0.34 ind:fut:3p; +montes monter ver 277.32 404.59 6.27 2.3 ind:pre:2s;sub:pre:2s; +monteur monteur nom m s 1.46 0.68 1.07 0.27 +monteurs monteur nom m p 1.46 0.68 0.09 0.27 +monteuse monteur nom f s 1.46 0.68 0.3 0.14 +montez monter ver 277.32 404.59 15.38 1.89 imp:pre:2p;ind:pre:2p; +montgolfière montgolfière nom f s 0.81 0.95 0.78 0.81 +montgolfières montgolfière nom f p 0.81 0.95 0.04 0.14 +monticule monticule nom m s 0.6 3.78 0.58 1.96 +monticules monticule nom m p 0.6 3.78 0.02 1.82 +montiez monter ver 277.32 404.59 0.64 0.14 ind:imp:2p; +montions monter ver 277.32 404.59 0.19 1.69 ind:imp:1p; +montjoie montjoie nom f s 0.05 0.34 0.05 0.34 +montmartrois montmartrois adj m 0 0.74 0 0.41 +montmartroise montmartrois adj f s 0 0.74 0 0.2 +montmartroises montmartrois adj f p 0 0.74 0 0.14 +montons monter ver 277.32 404.59 3.44 2.7 imp:pre:1p;ind:pre:1p; +montparno montparno nom m s 0 0.2 0 0.2 +montpelliéraine montpelliérain nom f s 0 0.07 0 0.07 +montra montrer ver 327.33 276.55 0.77 29.46 ind:pas:3s; +montrable montrable adj s 0.02 0.41 0.02 0.34 +montrables montrable adj f p 0.02 0.41 0 0.07 +montrai montrer ver 327.33 276.55 0.42 1.76 ind:pas:1s; +montraient montrer ver 327.33 276.55 0.98 8.78 ind:imp:3p; +montrais montrer ver 327.33 276.55 1.72 2.43 ind:imp:1s;ind:imp:2s; +montrait montrer ver 327.33 276.55 3.27 33.65 ind:imp:3s; +montrant montrer ver 327.33 276.55 2.02 23.24 par:pre; +montrassent montrer ver 327.33 276.55 0 0.14 sub:imp:3p; +montre montrer ver 327.33 276.55 85.44 38.99 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +montre_bracelet montre_bracelet nom f s 0.08 2.09 0.07 1.82 +montre_gousset montre_gousset nom f s 0.01 0.07 0.01 0.07 +montre_la_moi montre_la_moi nom f s 0.14 0 0.14 0 +montrent montrer ver 327.33 276.55 8.82 4.93 ind:pre:3p; +montrer montrer ver 327.33 276.55 136.2 81.15 inf;; +montrera montrer ver 327.33 276.55 4.71 1.96 ind:fut:3s; +montrerai montrer ver 327.33 276.55 7.58 3.18 ind:fut:1s; +montreraient montrer ver 327.33 276.55 0.11 0.14 cnd:pre:3p; +montrerais montrer ver 327.33 276.55 1.05 0.34 cnd:pre:1s;cnd:pre:2s; +montrerait montrer ver 327.33 276.55 0.78 2.57 cnd:pre:3s; +montreras montrer ver 327.33 276.55 1.46 0.61 ind:fut:2s; +montrerez montrer ver 327.33 276.55 1.02 0.27 ind:fut:2p; +montreriez montrer ver 327.33 276.55 0.16 0 cnd:pre:2p; +montrerons montrer ver 327.33 276.55 0.83 0.14 ind:fut:1p; +montreront montrer ver 327.33 276.55 0.54 0.07 ind:fut:3p; +montres montrer ver 327.33 276.55 5.93 1.08 ind:pre:1p;ind:pre:2s;sub:pre:2s; +montre_bracelet montre_bracelet nom f p 0.08 2.09 0.01 0.27 +montreur montreur nom m s 0.48 1.35 0.45 0.81 +montreurs montreur nom m p 0.48 1.35 0.02 0.41 +montreuse montreur nom f s 0.48 1.35 0.01 0.07 +montreuses montreur nom f p 0.48 1.35 0 0.07 +montrez montrer ver 327.33 276.55 26.48 2.57 imp:pre:2p;ind:pre:2p; +montriez montrer ver 327.33 276.55 0.7 0.41 ind:imp:2p; +montrions montrer ver 327.33 276.55 0.05 0.27 ind:imp:1p; +montrons montrer ver 327.33 276.55 2.77 0.27 imp:pre:1p;ind:pre:1p; +montrâmes montrer ver 327.33 276.55 0 0.07 ind:pas:1p; +montrât montrer ver 327.33 276.55 0 1.01 sub:imp:3s; +montrèrent montrer ver 327.33 276.55 0.01 1.82 ind:pas:3p; +montré montrer ver m s 327.33 276.55 29.65 28.11 par:pas; +montrée montrer ver f s 327.33 276.55 2.61 4.39 ind:imp:3p;par:pas; +montrées montrer ver f p 327.33 276.55 0.42 0.88 par:pas; +montrés montrer ver m p 327.33 276.55 0.81 1.89 par:pas; +monts mont nom m p 12.63 18.92 3.59 6.55 +mont_blanc mont_blanc nom m p 1.84 0.47 0.2 0.07 +montueuse montueux adj f s 0 0.47 0 0.2 +montueuses montueux adj f p 0 0.47 0 0.14 +montueux montueux adj m 0 0.47 0 0.14 +monture monture nom f s 2.21 16.62 1.61 11.55 +montures monture nom f p 2.21 16.62 0.6 5.07 +montâmes monter ver 277.32 404.59 0 1.55 ind:pas:1p; +montât monter ver 277.32 404.59 0 0.54 sub:imp:3s; +montèrent monter ver 277.32 404.59 0.07 7.97 ind:pas:3p; +monté monter ver m s 277.32 404.59 23.72 28.72 par:pas; +montée monter ver f s 277.32 404.59 6.11 13.18 par:pas; +montées monter ver f p 277.32 404.59 0.7 3.18 par:pas; +monténégrin monténégrin adj m s 0.01 0.07 0.01 0 +monténégrines monténégrin adj f p 0.01 0.07 0 0.07 +montés monter ver m p 277.32 404.59 3.94 9.73 par:pas; +monument monument nom m s 6.68 19.32 5.07 10.54 +monumental monumental adj m s 1.67 12.03 0.62 4.32 +monumentale monumental adj f s 1.67 12.03 0.71 5.2 +monumentalement monumentalement adv 0.03 0 0.03 0 +monumentales monumental adj f p 1.67 12.03 0.29 1.96 +monumentalité monumentalité nom f s 0.01 0 0.01 0 +monumentaux monumental adj m p 1.67 12.03 0.04 0.54 +monuments monument nom m p 6.68 19.32 1.61 8.78 +monétaire monétaire adj s 0.9 2.16 0.81 1.49 +monétaires monétaire adj p 0.9 2.16 0.1 0.68 +monétariste monétariste adj s 0.01 0 0.01 0 +monômes monôme nom m p 0 0.14 0 0.14 +moonisme moonisme nom m s 0 0.07 0 0.07 +moonistes mooniste nom p 0.03 0 0.03 0 +mooré mooré nom m s 0.03 0 0.03 0 +moos moos nom m 0.03 0 0.03 0 +moose moose adj s 0.6 0 0.6 0 +moqua moquer ver 71.13 50.34 0.01 0.88 ind:pas:3s; +moquai moquer ver 71.13 50.34 0.01 0.2 ind:pas:1s; +moquaient moquer ver 71.13 50.34 0.96 2.7 ind:imp:3p; +moquais moquer ver 71.13 50.34 0.75 1.42 ind:imp:1s;ind:imp:2s; +moquait moquer ver 71.13 50.34 2.2 9.39 ind:imp:3s; +moquant moquer ver 71.13 50.34 0.78 1.89 par:pre; +moque moquer ver 71.13 50.34 25.79 11.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +moquent moquer ver 71.13 50.34 4.18 2.36 ind:pre:3p; +moquer moquer ver 71.13 50.34 11.47 9.46 inf;; +moquera moquer ver 71.13 50.34 0.72 0.27 ind:fut:3s; +moquerai moquer ver 71.13 50.34 0.09 0 ind:fut:1s; +moqueraient moquer ver 71.13 50.34 0.03 0 cnd:pre:3p; +moquerais moquer ver 71.13 50.34 0.29 0.14 cnd:pre:1s;cnd:pre:2s; +moquerait moquer ver 71.13 50.34 0.56 0.27 cnd:pre:3s; +moqueras moquer ver 71.13 50.34 0.06 0.07 ind:fut:2s; +moquerez moquer ver 71.13 50.34 0.28 0.07 ind:fut:2p; +moquerie moquerie nom f s 1.69 6.35 0.64 3.72 +moqueries moquerie nom f p 1.69 6.35 1.05 2.64 +moqueriez moquer ver 71.13 50.34 0.01 0.07 cnd:pre:2p; +moqueront moquer ver 71.13 50.34 0.1 0.07 ind:fut:3p; +moques moquer ver 71.13 50.34 9.6 0.95 ind:pre:2s;sub:pre:2s; +moquette moquette nom f s 3.63 15.95 3.37 14.73 +moquettes moquette nom f p 3.63 15.95 0.27 1.22 +moquetté moquetter ver m s 0 0.2 0 0.07 par:pas; +moquettées moquetter ver f p 0 0.2 0 0.07 par:pas; +moquettés moquetter ver m p 0 0.2 0 0.07 par:pas; +moqueur moqueur adj m s 0.82 9.12 0.41 4.73 +moqueurs moqueur adj m p 0.82 9.12 0.28 1.01 +moqueuse moqueur adj f s 0.82 9.12 0.11 2.97 +moqueusement moqueusement adv 0 0.27 0 0.27 +moqueuses moqueur adj f p 0.82 9.12 0.02 0.41 +moquez moquer ver 71.13 50.34 7.98 1.15 imp:pre:2p;ind:pre:2p; +moquiez moquer ver 71.13 50.34 0.23 0.2 ind:imp:2p; +moquions moquer ver 71.13 50.34 0 1.01 ind:imp:1p; +moquons moquer ver 71.13 50.34 0.34 0.07 imp:pre:1p;ind:pre:1p; +moquât moquer ver 71.13 50.34 0 0.68 sub:imp:3s; +moquèrent moquer ver 71.13 50.34 0 0.61 ind:pas:3p; +moqué moquer ver m s 71.13 50.34 2.64 2.84 par:pas; +moquée moquer ver f s 71.13 50.34 1.02 1.15 par:pas; +moquées moquer ver f p 71.13 50.34 0.17 0.14 par:pas; +moqués moquer ver m p 71.13 50.34 0.84 0.47 par:pas; +moraillon moraillon nom m s 0 0.07 0 0.07 +moraine moraine nom f s 0.08 0.47 0.07 0.07 +moraines moraine nom f p 0.08 0.47 0.01 0.41 +morainique morainique adj s 0.01 0.2 0.01 0.14 +morainiques morainique adj p 0.01 0.2 0 0.07 +moral moral nom m s 10.27 14.19 10.17 14.19 +morale morale nom f s 13.13 21.49 12.89 21.01 +moralement moralement adv 1.98 7.3 1.98 7.3 +morales moral adj f p 16.39 34.53 2.26 4.93 +moralisante moralisant adj f s 0 0.14 0 0.14 +moralisateur moralisateur nom m s 0.73 0 0.47 0 +moralisateurs moralisateur nom m p 0.73 0 0.26 0 +moralisation moralisation nom f s 0.01 0.07 0.01 0.07 +moralisatrice moralisateur adj f s 0.2 0.68 0.04 0.07 +moralise moraliser ver 0.03 0.41 0 0.14 ind:pre:3s; +moraliser moraliser ver 0.03 0.41 0.03 0.2 inf; +moralisme moralisme nom m s 0.15 0.27 0.15 0.27 +moraliste moraliste nom s 0.48 1.49 0.4 0.74 +moralistes moraliste adj p 0.55 0.41 0.16 0.2 +moralisée moraliser ver f s 0.03 0.41 0 0.07 par:pas; +moralité moralité nom f s 4.86 3.04 4.57 2.91 +moralités moralité nom f p 4.86 3.04 0.29 0.14 +morasse morasse nom f s 0 0.81 0 0.61 +morasses morasse nom f p 0 0.81 0 0.2 +moratoire moratoire nom m s 0.17 0.07 0.17 0.07 +moraux moral adj m p 16.39 34.53 1.59 1.76 +morave morave adj m s 0.02 0 0.01 0 +moraves morave adj m p 0.02 0 0.01 0 +morbac morbac nom m s 0.17 0.2 0.14 0.14 +morbacs morbac nom m p 0.17 0.2 0.02 0.07 +morbaque morbaque nom m s 0.02 0.54 0.01 0.14 +morbaques morbaque nom m p 0.02 0.54 0.01 0.41 +morbide morbide adj s 3.92 4.73 2.83 3.99 +morbidement morbidement adv 0.01 0.07 0.01 0.07 +morbides morbide adj p 3.92 4.73 1.09 0.74 +morbidesse morbidesse nom f s 0 0.14 0 0.14 +morbidité morbidité nom f s 0.07 0.14 0.07 0.14 +morbier morbier nom m s 0 0.07 0 0.07 +morbleu morbleu ono 0.54 0.14 0.54 0.14 +morceau morceau nom m s 64.78 99.32 40.65 57.84 +morceaux morceau nom m p 64.78 99.32 24.13 41.49 +morcela morceler ver 0.47 1.28 0 0.07 ind:pas:3s; +morcelait morceler ver 0.47 1.28 0 0.27 ind:imp:3s; +morcelant morceler ver 0.47 1.28 0 0.2 par:pre; +morceler morceler ver 0.47 1.28 0.03 0.14 inf; +morcellement morcellement nom m s 0 0.34 0 0.27 +morcellements morcellement nom m p 0 0.34 0 0.07 +morcellent morceler ver 0.47 1.28 0 0.27 ind:pre:3p; +morcellera morceler ver 0.47 1.28 0.01 0 ind:fut:3s; +morcelé morceler ver m s 0.47 1.28 0.29 0.2 par:pas; +morcelée morcelé adj f s 0.11 0.61 0.11 0.2 +morcelées morceler ver f p 0.47 1.28 0.01 0.07 par:pas; +morcelés morceler ver m p 0.47 1.28 0.01 0 par:pas; +morcif morcif nom m s 0 0.34 0 0.2 +morcifs morcif nom m p 0 0.34 0 0.14 +mord mordre ver 44.85 48.45 7.95 4.8 ind:pre:3s; +mordaient mordre ver 44.85 48.45 0.22 1.49 ind:imp:3p; +mordais mordre ver 44.85 48.45 0.36 0.54 ind:imp:1s;ind:imp:2s; +mordait mordre ver 44.85 48.45 1.09 5.74 ind:imp:3s; +mordant mordant nom m s 0.6 1.49 0.6 1.49 +mordante mordant adj f s 0.35 2.7 0.1 0.81 +mordantes mordant adj f p 0.35 2.7 0.01 0.07 +mordants mordant adj m p 0.35 2.7 0.01 0.2 +mordançage mordançage nom m s 0 0.14 0 0.14 +morde mordre ver 44.85 48.45 0.47 0.2 sub:pre:1s;sub:pre:3s; +mordent mordre ver 44.85 48.45 1.74 1.35 ind:pre:3p; +mordes mordre ver 44.85 48.45 0.15 0.07 sub:pre:2s; +mordeur mordeur nom m s 0.04 0 0.03 0 +mordeurs mordeur adj m p 0.03 0.14 0.01 0.07 +mordeuse mordeuse nom f s 0.03 0 0.03 0 +mordez mordre ver 44.85 48.45 0.92 0.41 imp:pre:2p;ind:pre:2p; +mordicus mordicus adv_sup 0.19 0.54 0.19 0.54 +mordieu mordieu ono 0.2 0 0.2 0 +mordilla mordiller ver 0.76 5.61 0 0.61 ind:pas:3s; +mordillage mordillage nom m s 0 0.07 0 0.07 +mordillaient mordiller ver 0.76 5.61 0.01 0.14 ind:imp:3p; +mordillais mordiller ver 0.76 5.61 0 0.07 ind:imp:1s; +mordillait mordiller ver 0.76 5.61 0 1.96 ind:imp:3s; +mordillant mordiller ver 0.76 5.61 0.02 1.01 par:pre; +mordille mordiller ver 0.76 5.61 0.3 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mordillement mordillement nom m s 0 0.61 0 0.27 +mordillements mordillement nom m p 0 0.61 0 0.34 +mordillent mordiller ver 0.76 5.61 0 0.14 ind:pre:3p; +mordiller mordiller ver 0.76 5.61 0.25 0.68 inf; +mordillera mordiller ver 0.76 5.61 0 0.07 ind:fut:3s; +mordillez mordiller ver 0.76 5.61 0.01 0 imp:pre:2p; +mordillé mordiller ver m s 0.76 5.61 0.14 0.07 par:pas; +mordillée mordiller ver f s 0.76 5.61 0.02 0.2 par:pas; +mordillées mordiller ver f p 0.76 5.61 0 0.07 par:pas; +mordillés mordiller ver m p 0.76 5.61 0 0.14 par:pas; +mordions mordre ver 44.85 48.45 0.01 0.14 ind:imp:1p; +mordirent mordre ver 44.85 48.45 0 0.2 ind:pas:3p; +mordis mordre ver 44.85 48.45 0 0.41 ind:pas:1s;ind:pas:2s; +mordissent mordre ver 44.85 48.45 0 0.07 sub:imp:3p; +mordit mordre ver 44.85 48.45 0.09 6.01 ind:pas:3s; +mordorait mordorer ver 0 0.34 0 0.07 ind:imp:3s; +mordoré mordoré adj m s 0.04 2.16 0.01 0.41 +mordorée mordoré adj f s 0.04 2.16 0 0.61 +mordorées mordoré adj f p 0.04 2.16 0.02 0.34 +mordorés mordoré adj m p 0.04 2.16 0.01 0.81 +mordra mordre ver 44.85 48.45 0.8 0.2 ind:fut:3s; +mordrai mordre ver 44.85 48.45 0.4 0 ind:fut:1s; +mordraient mordre ver 44.85 48.45 0.01 0.14 cnd:pre:3p; +mordrais mordre ver 44.85 48.45 0.09 0 cnd:pre:1s;cnd:pre:2s; +mordrait mordre ver 44.85 48.45 0.35 0.41 cnd:pre:3s; +mordras mordre ver 44.85 48.45 0.22 0 ind:fut:2s; +mordre mordre ver 44.85 48.45 8.83 12.36 inf;; +mordrez mordre ver 44.85 48.45 0.25 0 ind:fut:2p; +mordront mordre ver 44.85 48.45 0.58 0.07 ind:fut:3p; +mords mordre ver 44.85 48.45 6.3 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mordu mordre ver m s 44.85 48.45 10.22 6.28 par:pas; +mordue mordre ver f s 44.85 48.45 2.77 1.08 par:pas; +mordues mordre ver f p 44.85 48.45 0.32 0.34 par:pas; +mordus mordre ver m p 44.85 48.45 0.45 0.54 par:pas; +mordît mordre ver 44.85 48.45 0 0.07 sub:imp:3s; +more more adj s 3.69 0.07 3.68 0.07 +moreau moreau adj m s 0.02 0 0.02 0 +morelle morelle nom f s 0.01 0 0.01 0 +mores more nom p 0.55 0.14 0.01 0.07 +moresque moresque nom f s 0.27 0 0.27 0 +morfal morfal adj m s 0.04 0.47 0.01 0.07 +morfale morfal adj f s 0.04 0.47 0.01 0.2 +morfaler morfaler ver 0 0.41 0 0.14 inf; +morfales morfal adj f p 0.04 0.47 0.01 0.07 +morfalou morfalou nom m s 0 0.07 0 0.07 +morfals morfal adj m p 0.04 0.47 0 0.14 +morfalé morfaler ver m s 0 0.41 0 0.07 par:pas; +morfalée morfaler ver f s 0 0.41 0 0.07 par:pas; +morfalés morfaler ver m p 0 0.41 0 0.07 par:pas; +morfil morfil nom m s 0 0.07 0 0.07 +morflais morfler ver 2.01 2.91 0 0.14 ind:imp:2s; +morflait morfler ver 2.01 2.91 0.01 0.14 ind:imp:3s; +morfle morfler ver 2.01 2.91 0.38 0.41 ind:pre:1s;ind:pre:3s; +morfler morfler ver 2.01 2.91 0.93 0.88 inf; +morflera morfler ver 2.01 2.91 0.01 0.14 ind:fut:3s; +morfleras morfler ver 2.01 2.91 0.01 0 ind:fut:2s; +morflerez morfler ver 2.01 2.91 0.01 0 ind:fut:2p; +morfles morfler ver 2.01 2.91 0.04 0 ind:pre:2s; +morflé morfler ver m s 2.01 2.91 0.62 1.08 par:pas; +morflée morfler ver f s 2.01 2.91 0 0.14 par:pas; +morfond morfondre ver 1.26 2.5 0.34 0.34 ind:pre:3s; +morfondaient morfondre ver 1.26 2.5 0 0.2 ind:imp:3p; +morfondais morfondre ver 1.26 2.5 0 0.07 ind:imp:1s; +morfondait morfondre ver 1.26 2.5 0.14 0.68 ind:imp:3s; +morfondant morfondre ver 1.26 2.5 0 0.14 par:pre; +morfonde morfondre ver 1.26 2.5 0.01 0.07 sub:pre:1s;sub:pre:3s; +morfondis morfondre ver 1.26 2.5 0 0.07 ind:pas:1s; +morfondra morfondre ver 1.26 2.5 0.01 0 ind:fut:3s; +morfondre morfondre ver 1.26 2.5 0.47 0.68 inf; +morfonds morfondre ver 1.26 2.5 0.28 0.07 imp:pre:2s;ind:pre:1s; +morfondu morfondre ver m s 1.26 2.5 0.02 0.2 par:pas; +morfondue morfondu adj f s 0 0.68 0 0.27 +morgana morganer ver 0.26 0.34 0.24 0 ind:pas:3s; +morganatique morganatique adj m s 0 0.14 0 0.07 +morganatiques morganatique adj f p 0 0.14 0 0.07 +morgane morganer ver 0.26 0.34 0.02 0.14 imp:pre:2s;ind:pre:3s; +morganer morganer ver 0.26 0.34 0 0.14 inf; +morganerai morganer ver 0.26 0.34 0 0.07 ind:fut:1s; +morgeline morgeline nom f s 0.01 0 0.01 0 +morgon morgon nom m s 0.01 0 0.01 0 +morgue morgue nom f s 10.12 7.03 9.95 6.76 +morgues morgue nom f p 10.12 7.03 0.17 0.27 +moria moria nom f s 0.08 0 0.08 0 +moribond moribond adj m s 0.65 2.5 0.52 1.35 +moribonde moribond adj f s 0.65 2.5 0.05 0.54 +moribondes moribond adj f p 0.65 2.5 0.03 0.2 +moribonds moribond nom m p 0.45 2.23 0.14 0.47 +moricaud moricaud nom m s 0.16 0.95 0.07 0.07 +moricaude moricaud nom f s 0.16 0.95 0.01 0.74 +moricaudes moricaud nom f p 0.16 0.95 0 0.07 +moricauds moricaud nom m p 0.16 0.95 0.08 0.07 +morigène morigéner ver 0 1.22 0 0.14 ind:pre:3s; +morigéna morigéner ver 0 1.22 0 0.07 ind:pas:3s; +morigénai morigéner ver 0 1.22 0 0.07 ind:pas:1s; +morigénais morigéner ver 0 1.22 0 0.07 ind:imp:1s; +morigénait morigéner ver 0 1.22 0 0.07 ind:imp:3s; +morigénant morigéner ver 0 1.22 0 0.27 par:pre; +morigéner morigéner ver 0 1.22 0 0.2 inf; +morigéné morigéner ver m s 0 1.22 0 0.2 par:pas; +morigénée morigéner ver f s 0 1.22 0 0.14 par:pas; +morille morille nom f s 0.17 0.61 0 0.14 +morilles morille nom f p 0.17 0.61 0.17 0.47 +morillon morillon nom m s 0.14 0.88 0.14 0.81 +morillons morillon nom m p 0.14 0.88 0 0.07 +morlingue morlingue nom m s 0 1.28 0 1.01 +morlingues morlingue nom m p 0 1.28 0 0.27 +mormon mormon adj m s 0.44 0.14 0.24 0.07 +mormone mormon adj f s 0.44 0.14 0.06 0.07 +mormones mormon adj f p 0.44 0.14 0.03 0 +mormons mormon nom m p 0.75 0.14 0.55 0.14 +morne morne adj s 1.06 19.66 0.81 14.46 +mornement mornement adv 0.01 0.07 0.01 0.07 +mornes morne adj p 1.06 19.66 0.25 5.2 +mornifle mornifle nom f s 0 0.81 0 0.81 +moro moro adj s 0.01 0 0.01 0 +morose morose adj s 1.23 8.78 1 7.23 +morosement morosement adv 0 0.07 0 0.07 +moroses morose adj p 1.23 8.78 0.24 1.55 +morosité morosité nom f s 0.07 1.08 0.07 1.01 +morosités morosité nom f p 0.07 1.08 0 0.07 +morphine morphine nom f s 7.37 1.62 7.37 1.62 +morphing morphing nom m s 0.01 0 0.01 0 +morphinomane morphinomane adj m s 0.14 0.14 0.14 0.14 +morphique morphique adj s 0.04 0 0.04 0 +morpho morpho adv 0.03 0 0.03 0 +morphogenèse morphogenèse nom f s 0.01 0 0.01 0 +morphogénétique morphogénétique adj m s 0.11 0 0.11 0 +morphologie morphologie nom f s 0.33 0.81 0.33 0.81 +morphologique morphologique adj s 0.01 0.14 0 0.07 +morphologiques morphologique adj f p 0.01 0.14 0.01 0.07 +morpion morpion nom m s 2.14 1.76 0.46 0.95 +morpions morpion nom m p 2.14 1.76 1.68 0.81 +mors mors nom m 0.64 1.89 0.64 1.89 +morse morse nom m s 3.5 0.88 3.5 0.88 +morsure morsure nom f s 6.31 5.95 3.9 4.26 +morsures morsure nom f p 6.31 5.95 2.41 1.69 +mort mort nom 460.05 452.7 372.07 373.99 +mort_aux_rats mort_aux_rats nom f 0.61 0.47 0.61 0.47 +mort_né mort_né adj m s 0.8 0.61 0.53 0.34 +mort_né mort_né adj f s 0.8 0.61 0.23 0 +mort_né mort_né adj f p 0.8 0.61 0 0.07 +mort_né mort_né adj m p 0.8 0.61 0.04 0.2 +mort_vivant mort_vivant nom m s 1.46 0.81 0.41 0.27 +mortadelle mortadelle nom f s 0.79 0.34 0.79 0.34 +mortaise mortaise nom f s 0.16 0.2 0.14 0 +mortaiser mortaiser ver 0.01 0.2 0.01 0.2 inf; +mortaises mortaise nom f p 0.16 0.2 0.01 0.2 +mortaiseuse mortaiseur nom f s 0 0.14 0 0.14 +mortalité mortalité nom f s 1.51 0.61 1.51 0.61 +morte mourir ver f s 916.4 391.08 112.36 44.93 par:pas; +morte_saison morte_saison nom f s 0.01 1.08 0.01 1.01 +mortel mortel adj m s 24.13 20.07 14.62 8.38 +mortelle mortel adj f s 24.13 20.07 5.69 6.69 +mortellement mortellement adv 2.03 3.18 2.03 3.18 +mortelles mortel adj f p 24.13 20.07 1.22 2.3 +mortels mortel nom m p 7.09 4.8 3.32 3.31 +mortes mourir ver f p 916.4 391.08 5.32 3.04 par:pas; +mortes_eaux mortes_eaux nom f p 0 0.07 0 0.07 +morte_saison morte_saison nom f p 0.01 1.08 0 0.07 +mortibus mortibus adj m s 0.02 0.34 0.02 0.34 +mortier mortier nom m s 2.06 5.61 1.3 3.51 +mortiers mortier nom m p 2.06 5.61 0.76 2.09 +mortifia mortifier ver 1.63 3.78 0 0.07 ind:pas:3s; +mortifiai mortifier ver 1.63 3.78 0 0.07 ind:pas:1s; +mortifiaient mortifier ver 1.63 3.78 0 0.07 ind:imp:3p; +mortifiait mortifier ver 1.63 3.78 0 0.54 ind:imp:3s; +mortifiant mortifiant adj m s 0.05 0.41 0.05 0.2 +mortifiante mortifiant adj f s 0.05 0.41 0 0.07 +mortifiantes mortifiant adj f p 0.05 0.41 0 0.07 +mortifiants mortifiant adj m p 0.05 0.41 0 0.07 +mortification mortification nom f s 0.56 1.22 0.54 0.68 +mortifications mortification nom f p 0.56 1.22 0.02 0.54 +mortifie mortifier ver 1.63 3.78 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mortifier mortifier ver 1.63 3.78 0.19 0.68 inf; +mortifié mortifier ver m s 1.63 3.78 0.91 1.28 par:pas; +mortifiée mortifier ver f s 1.63 3.78 0.49 0.74 par:pas; +mortifiés mortifier ver m p 1.63 3.78 0 0.27 par:pas; +mortifère mortifère adj s 0.02 0.34 0.01 0.2 +mortifères mortifère adj m p 0.02 0.34 0.01 0.14 +morts mort nom p 460.05 452.7 78.09 66.15 +mort_vivant mort_vivant nom m p 1.46 0.81 1.05 0.54 +mortuaire mortuaire adj s 1.86 5.47 1.61 4.59 +mortuaires mortuaire adj p 1.86 5.47 0.25 0.88 +morue morue nom f s 3.67 5.61 3.46 4.86 +morues morue nom f p 3.67 5.61 0.2 0.74 +morula morula nom f s 0.01 0 0.01 0 +morvandiau morvandiau adj m s 0 0.2 0 0.2 +morve morve nom f s 1.6 1.96 1.6 1.82 +morves morve nom f p 1.6 1.96 0 0.14 +morveuse morveux nom f s 4.97 2.43 0.46 0.14 +morveuses morveux adj f p 2.11 1.22 0.01 0.07 +morveux morveux nom m 4.97 2.43 4.51 2.3 +mos mos nom m 0.01 0 0.01 0 +mosaïque mosaïque nom f s 0.58 4.53 0.53 2.77 +mosaïques mosaïque nom f p 0.58 4.53 0.06 1.76 +mosaïquée mosaïqué adj f s 0 0.14 0 0.07 +mosaïqués mosaïqué adj m p 0 0.14 0 0.07 +mosaïste mosaïste nom m s 0 0.14 0 0.14 +moscoutaire moscoutaire nom s 0 0.07 0 0.07 +moscovite moscovite adj s 0.68 1.42 0.34 1.15 +moscovites moscovite adj p 0.68 1.42 0.34 0.27 +mosellane mosellan adj f s 0 0.2 0 0.14 +mosellanes mosellan adj f p 0 0.2 0 0.07 +mosquée mosquée nom f s 3.43 5.68 2.71 4.32 +mosquées mosquée nom f p 3.43 5.68 0.72 1.35 +mot mot nom m s 279.55 553.78 174.83 260.47 +mot_clé mot_clé nom m s 0.58 0.34 0.41 0.14 +mot_valise mot_valise nom m s 0.01 0 0.01 0 +motard motard nom m s 4.1 6.89 1.79 3.45 +motarde motard nom f s 4.1 6.89 0.07 0.14 +motardes motard nom f p 4.1 6.89 0.01 0.07 +motards motard nom m p 4.1 6.89 2.23 3.24 +motel motel nom m s 9.43 1.28 8.62 1.22 +motels motel nom m p 9.43 1.28 0.82 0.07 +motesse motesse nom f s 0 0.07 0 0.07 +motet motet nom m s 0.03 0.27 0.03 0.2 +motets motet nom m p 0.03 0.27 0 0.07 +moteur moteur nom m s 33.63 51.08 26.31 41.28 +moteur_fusée moteur_fusée nom m s 0.04 0 0.01 0 +moteurs moteur nom m p 33.63 51.08 7.32 9.8 +moteur_fusée moteur_fusée nom m p 0.04 0 0.04 0 +motif motif nom m s 16.56 31.15 12.2 15.74 +motifs motif nom m p 16.56 31.15 4.36 15.41 +motilité motilité nom f s 0.02 0 0.02 0 +motion motion nom f s 3.1 1.28 2.87 0.68 +motions motion nom f p 3.1 1.28 0.22 0.61 +motiva motiver ver 5.5 2.43 0 0.14 ind:pas:3s; +motivai motiver ver 5.5 2.43 0 0.07 ind:pas:1s; +motivaient motiver ver 5.5 2.43 0 0.14 ind:imp:3p; +motivais motiver ver 5.5 2.43 0.01 0 ind:imp:2s; +motivait motiver ver 5.5 2.43 0.08 0.27 ind:imp:3s; +motivant motivant adj m s 0.24 0 0.21 0 +motivante motivant adj f s 0.24 0 0.03 0 +motivateur motivateur nom m s 0.05 0 0.05 0 +motivation motivation nom f s 4.81 1.28 3.02 0.81 +motivations motivation nom f p 4.81 1.28 1.79 0.47 +motive motiver ver 5.5 2.43 1.33 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +motivent motiver ver 5.5 2.43 0.04 0.2 ind:pre:3p; +motiver motiver ver 5.5 2.43 1.3 0.34 inf; +motivera motiver ver 5.5 2.43 0.02 0 ind:fut:3s; +motivez motiver ver 5.5 2.43 0.01 0 imp:pre:2p; +motivé motiver ver m s 5.5 2.43 1.67 0.2 par:pas; +motivée motiver ver f s 5.5 2.43 0.42 0.47 par:pas; +motivées motiver ver f p 5.5 2.43 0.04 0.07 par:pas; +motivés motiver ver m p 5.5 2.43 0.53 0.14 par:pas; +moto moto nom f s 25.23 19.26 22.61 15.27 +moto_club moto_club nom f s 0 0.14 0 0.14 +moto_cross moto_cross nom m 0.04 0.07 0.04 0.07 +motocross motocross nom m 0.19 0 0.19 0 +motoculteur motoculteur nom m s 0 0.14 0 0.14 +motoculture motoculture nom f s 0.14 0 0.14 0 +motocycles motocycle nom m p 0 0.07 0 0.07 +motocyclette motocyclette nom f s 0.4 4.19 0.36 3.31 +motocyclettes motocyclette nom f p 0.4 4.19 0.04 0.88 +motocyclisme motocyclisme nom m s 0.02 0 0.02 0 +motocycliste motocycliste nom s 0.07 2.64 0.04 1.28 +motocyclistes motocycliste nom p 0.07 2.64 0.03 1.35 +motoneige motoneige nom f s 0.6 0 0.34 0 +motoneiges motoneige nom f p 0.6 0 0.26 0 +motoneurone motoneurone nom m s 0.01 0 0.01 0 +motorisation motorisation nom f s 0.01 0.27 0.01 0.27 +motoriser motoriser ver 0.09 1.42 0 0.07 inf; +motorisé motorisé adj m s 0.47 2.23 0.12 0.41 +motorisée motorisé adj f s 0.47 2.23 0.2 0.68 +motorisées motoriser ver f p 0.09 1.42 0.01 0.14 par:pas; +motorisés motorisé adj m p 0.47 2.23 0.16 0.68 +motos moto nom f p 25.23 19.26 2.62 3.99 +motrice moteur adj f s 4.17 2.43 0.26 0.34 +motrices moteur adj f p 4.17 2.43 0.2 0.14 +motricité motricité nom f s 0.42 0 0.42 0 +mots mot nom m p 279.55 553.78 104.72 293.31 +mot_clef mot_clef nom m p 0 0.07 0 0.07 +mot_clé mot_clé nom m p 0.58 0.34 0.17 0.2 +mots_croisés mots_croisés nom m p 0.07 0 0.07 0 +motte motte nom f s 0.51 9.19 0.26 2.97 +mottereau mottereau nom m s 0 0.07 0 0.07 +mottes motte nom f p 0.51 9.19 0.24 6.22 +motteux motteux nom m 0 0.07 0 0.07 +motu_proprio motu_proprio adv 0 0.07 0 0.07 +motus motus ono 0.88 1.01 0.88 1.01 +mou mou adj m s 6.99 22.5 5.53 17.09 +mouais mouais ono 1.15 0.2 1.15 0.2 +moucha moucher ver 2.55 6.55 0 1.82 ind:pas:3s; +mouchachou mouchachou nom m s 0 0.07 0 0.07 +mouchage mouchage nom m s 0.01 0 0.01 0 +mouchai moucher ver 2.55 6.55 0 0.14 ind:pas:1s; +mouchaient moucher ver 2.55 6.55 0 0.2 ind:imp:3p; +mouchait moucher ver 2.55 6.55 0.15 0.41 ind:imp:3s; +mouchant moucher ver 2.55 6.55 0 0.2 par:pre; +mouchard mouchard nom m s 6 2.77 4.16 1.62 +moucharda moucharder ver 1.54 0.88 0 0.07 ind:pas:3s; +mouchardage mouchardage nom m s 0.04 0.2 0.04 0.2 +mouchardait moucharder ver 1.54 0.88 0.01 0.07 ind:imp:3s; +moucharde mouchard nom f s 6 2.77 0.56 0.27 +mouchardent moucharder ver 1.54 0.88 0.04 0 ind:pre:3p; +moucharder moucharder ver 1.54 0.88 0.46 0.54 inf; +mouchardera moucharder ver 1.54 0.88 0.02 0 ind:fut:3s; +moucharderait moucharder ver 1.54 0.88 0.01 0.07 cnd:pre:3s; +mouchardes moucharder ver 1.54 0.88 0.14 0.07 ind:pre:2s; +mouchards mouchard nom m p 6 2.77 1.28 0.88 +mouchardé moucharder ver m s 1.54 0.88 0.61 0.07 par:pas; +mouche mouche nom f s 24.65 46.89 15.36 18.72 +mouchent moucher ver 2.55 6.55 0 0.2 ind:pre:3p; +moucher moucher ver 2.55 6.55 0.76 1.28 inf; +moucheron moucheron nom m s 2.19 2.43 1.93 0.74 +moucherons moucheron nom m p 2.19 2.43 0.26 1.69 +mouches mouche nom f p 24.65 46.89 9.29 28.18 +mouchetait moucheter ver 0.03 1.15 0 0.07 ind:imp:3s; +mouchetant moucheter ver 0.03 1.15 0 0.07 par:pre; +mouchette mouchette nom f s 0 0.14 0 0.14 +moucheture moucheture nom f s 0.02 0.41 0.01 0 +mouchetures moucheture nom f p 0.02 0.41 0.01 0.41 +moucheté moucheté adj m s 0.3 1.15 0.1 0.41 +mouchetée moucheté adj f s 0.3 1.15 0.1 0.2 +mouchetées moucheté adj f p 0.3 1.15 0.1 0.2 +mouchetés moucheter ver m p 0.03 1.15 0.01 0.2 par:pas; +moucheur moucheur nom m s 0.01 0.07 0.01 0.07 +mouchez moucher ver 2.55 6.55 0.22 0.07 imp:pre:2p;ind:pre:2p; +mouchoir mouchoir nom m s 11.53 34.59 9.84 28.85 +mouchoirs mouchoir nom m p 11.53 34.59 1.69 5.74 +mouchons moucher ver 2.55 6.55 0 0.07 ind:pre:1p; +mouché moucher ver m s 2.55 6.55 0.39 0.81 par:pas; +mouchée moucher ver f s 2.55 6.55 0.06 0.2 par:pas; +mouchés moucher ver m p 2.55 6.55 0.04 0.07 par:pas; +moud moudre ver 1.43 2.57 0.38 0.14 ind:pre:3s; +moudjahiddine moudjahiddine nom m s 0.03 0.07 0.03 0.07 +moudjahidin moudjahidin nom m p 0.16 0 0.16 0 +moudjahidine moudjahidine nom m p 0.01 0 0.01 0 +moudrai moudre ver 1.43 2.57 0.1 0 ind:fut:1s; +moudre moudre ver 1.43 2.57 0.72 1.22 inf; +mouds moudre ver 1.43 2.57 0 0.07 ind:pre:1s; +moue moue nom f s 0.78 18.58 0.76 17.43 +moues moue nom f p 0.78 18.58 0.02 1.15 +mouette mouette nom f s 3.24 15.81 1.43 5.47 +mouettes mouette nom f p 3.24 15.81 1.81 10.34 +moufetait moufeter ver 0 0.14 0 0.07 ind:imp:3s; +moufette moufette nom f s 0.04 0 0.04 0 +moufeté moufeter ver m s 0 0.14 0 0.07 par:pas; +mouffette mouffette nom f s 0.08 0.54 0.08 0.54 +moufle moufle nom f s 0.73 1.76 0.28 0.34 +moufles moufle nom f p 0.73 1.76 0.45 1.42 +mouflet mouflet nom m s 0.41 5.68 0.17 3.18 +mouflets mouflet nom m p 0.41 5.68 0.24 2.5 +mouflette mouflette nom f s 0.19 2.43 0.19 2.09 +mouflettes mouflette nom f p 0.19 2.43 0 0.34 +mouflon mouflon nom m s 0.05 0.47 0.04 0.14 +mouflons mouflon nom m p 0.05 0.47 0.01 0.34 +mouftaient moufter ver 0.2 4.12 0.01 0 ind:imp:3p; +mouftais moufter ver 0.2 4.12 0 0.07 ind:imp:1s; +mouftait moufter ver 0.2 4.12 0 0.61 ind:imp:3s; +moufte moufter ver 0.2 4.12 0.02 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mouftent moufter ver 0.2 4.12 0.01 0.27 ind:pre:3p; +moufter moufter ver 0.2 4.12 0.06 1.22 inf; +mouftera moufter ver 0.2 4.12 0.01 0.07 ind:fut:3s; +mouftes moufter ver 0.2 4.12 0.01 0.07 ind:pre:2s; +mouftez moufter ver 0.2 4.12 0.01 0.07 ind:pre:2p; +moufté moufter ver m s 0.2 4.12 0.06 0.47 par:pas; +mouilla mouiller ver 19.36 38.92 0.01 2.03 ind:pas:3s; +mouillage mouillage nom m s 0.14 1.22 0.14 1.15 +mouillages mouillage nom m p 0.14 1.22 0 0.07 +mouillaient mouiller ver 19.36 38.92 0.14 0.88 ind:imp:3p; +mouillais mouiller ver 19.36 38.92 0.04 0.27 ind:imp:1s;ind:imp:2s; +mouillait mouiller ver 19.36 38.92 0.32 2.64 ind:imp:3s; +mouillant mouiller ver 19.36 38.92 0.11 1.15 par:pre; +mouillante mouillant adj f s 0 0.14 0 0.07 +mouillasse mouiller ver 19.36 38.92 0 0.07 sub:imp:1s; +mouille mouiller ver 19.36 38.92 3.26 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mouillent mouiller ver 19.36 38.92 0.24 0.88 ind:pre:3p; +mouiller mouiller ver 19.36 38.92 4.43 7.5 inf; +mouillera mouiller ver 19.36 38.92 0.44 0 ind:fut:3s; +mouillerai mouiller ver 19.36 38.92 0.02 0.07 ind:fut:1s; +mouillerais mouiller ver 19.36 38.92 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +mouillerait mouiller ver 19.36 38.92 0.01 0.2 cnd:pre:3s; +mouilleras mouiller ver 19.36 38.92 0.01 0.07 ind:fut:2s; +mouilleront mouiller ver 19.36 38.92 0.16 0.07 ind:fut:3p; +mouilles mouiller ver 19.36 38.92 0.64 0.41 ind:pre:2s;sub:pre:2s; +mouillette mouillette nom f s 0.25 0.68 0.04 0.41 +mouillettes mouillette nom f p 0.25 0.68 0.21 0.27 +mouilleur mouilleur nom m s 0.01 0 0.01 0 +mouilleuse mouilleur adj f s 0 0.07 0 0.07 +mouillez mouiller ver 19.36 38.92 0.32 0.14 imp:pre:2p;ind:pre:2p; +mouillon mouillon nom m s 0.04 0.07 0 0.07 +mouillons mouillon nom m p 0.04 0.07 0.04 0 +mouillure mouillure nom f s 0 0.34 0 0.27 +mouillures mouillure nom f p 0 0.34 0 0.07 +mouillèrent mouiller ver 19.36 38.92 0 0.27 ind:pas:3p; +mouillé mouiller ver m s 19.36 38.92 5.7 8.58 par:pas; +mouillée mouillé adj f s 12.92 33.51 5.26 10.54 +mouillées mouillé adj f p 12.92 33.51 1.6 3.92 +mouillés mouillé adj m p 12.92 33.51 1.96 5.74 +mouise mouise nom f s 0.81 1.01 0.81 1.01 +moujahid moujahid nom m s 0 0.47 0 0.47 +moujik moujik nom m s 0.8 1.15 0.3 0.54 +moujiks moujik nom m p 0.8 1.15 0.5 0.61 +moujingue moujingue nom s 0 1.28 0 0.47 +moujingues moujingue nom p 0 1.28 0 0.81 +moukère moukère nom f s 0 0.41 0 0.2 +moukères moukère nom f p 0 0.41 0 0.2 +moula mouler ver 1.56 8.78 0 0.07 ind:pas:3s; +moulage moulage nom m s 0.8 1.15 0.53 0.54 +moulages moulage nom m p 0.8 1.15 0.27 0.61 +moulaient mouler ver 1.56 8.78 0.01 0.41 ind:imp:3p; +moulait mouler ver 1.56 8.78 0.12 2.03 ind:imp:3s; +moulant moulant adj m s 1.75 1.76 0.71 1.15 +moulante moulant adj f s 1.75 1.76 0.31 0.27 +moulantes moulant adj f p 1.75 1.76 0.03 0 +moulants moulant adj m p 1.75 1.76 0.69 0.34 +moule moule nom s 6.12 9.26 3.56 3.99 +moulent mouler ver 1.56 8.78 0.04 0.14 ind:pre:3p; +mouler mouler ver 1.56 8.78 0.15 0.47 inf; +mouleraient mouler ver 1.56 8.78 0 0.07 cnd:pre:3p; +moulerait mouler ver 1.56 8.78 0 0.07 cnd:pre:3s; +moules moule nom p 6.12 9.26 2.56 5.27 +mouleur mouleur nom m s 0 0.07 0 0.07 +moulez mouler ver 1.56 8.78 0.21 0 imp:pre:2p;ind:pre:2p; +moulin moulin nom m s 7.75 19.05 6.8 15.61 +moulin_à_vent moulin_à_vent nom m 0 0.14 0 0.14 +moulinage moulinage nom m s 0.01 0 0.01 0 +moulinait mouliner ver 0.06 0.88 0.01 0.14 ind:imp:3s; +mouline mouliner ver 0.06 0.88 0.02 0.14 imp:pre:2s;ind:pre:3s; +moulinent mouliner ver 0.06 0.88 0 0.07 ind:pre:3p; +mouliner mouliner ver 0.06 0.88 0 0.47 inf; +moulines mouliner ver 0.06 0.88 0 0.07 ind:pre:2s; +moulinet moulinet nom m s 0.5 3.18 0.44 1.82 +moulinets moulinet nom m p 0.5 3.18 0.06 1.35 +moulinette moulinette nom f s 0.27 0.68 0.23 0.61 +moulinettes moulinette nom f p 0.27 0.68 0.05 0.07 +moulinez mouliner ver 0.06 0.88 0.02 0 imp:pre:2p; +moulins moulin nom m p 7.75 19.05 0.94 3.45 +moult moult adv 0.33 3.18 0.33 3.18 +moulu moulu adj m s 0.48 0.88 0.26 0.47 +moulue moudre ver f s 1.43 2.57 0.11 0.27 par:pas; +moulues moulu adj f p 0.48 0.88 0.2 0.14 +moulurations mouluration nom f p 0 0.07 0 0.07 +moulure moulure nom f s 0.22 2.7 0.06 0.54 +moulures moulure nom f p 0.22 2.7 0.16 2.16 +mouluré moulurer ver m s 0 0.2 0 0.2 par:pas; +moulus moulu adj m p 0.48 0.88 0.02 0.2 +moulut moudre ver 1.43 2.57 0 0.07 ind:pas:3s; +moulé mouler ver m s 1.56 8.78 0.42 1.62 par:pas; +moulée mouler ver f s 1.56 8.78 0.14 1.69 par:pas; +moulées mouler ver f p 1.56 8.78 0.01 0.74 par:pas; +moulés moulé adj m p 0.24 1.49 0.02 0.07 +moumounes moumoune nom f p 0 0.14 0 0.14 +moumoute moumoute nom f s 0.87 0.61 0.86 0.47 +moumoutes moumoute nom f p 0.87 0.61 0.01 0.14 +mound mound nom m s 0.02 0 0.02 0 +mouquère mouquère nom f s 0 0.27 0 0.27 +mouraient mourir ver 916.4 391.08 1.22 5.95 ind:imp:3p; +mourais mourir ver 916.4 391.08 2.23 1.89 ind:imp:1s;ind:imp:2s; +mourait mourir ver 916.4 391.08 2.92 11.35 ind:imp:3s; +mourant mourant adj m s 9.56 5.74 6.18 3.04 +mourante mourant adj f s 9.56 5.74 2.71 1.89 +mourantes mourant adj f p 9.56 5.74 0.27 0.54 +mourants mourant nom m p 2.87 5.14 1.11 1.35 +mourez mourir ver 916.4 391.08 2.77 1.08 imp:pre:2p;ind:pre:2p; +mourides mouride adj f p 0 0.07 0 0.07 +mouriez mourir ver 916.4 391.08 0.73 0 ind:imp:2p; +mourions mourir ver 916.4 391.08 0.41 0.27 ind:imp:1p; +mourir mourir ver 916.4 391.08 234.74 130.61 inf;; +mouroir mouroir nom m s 0.07 0.27 0.07 0.27 +mouron mouron nom m s 0.73 4.26 0.53 4.12 +mouronne mouronner ver 0 0.14 0 0.07 ind:pre:1s; +mouronner mouronner ver 0 0.14 0 0.07 inf; +mourons mourir ver 916.4 391.08 1.33 0.47 imp:pre:1p;ind:pre:1p; +mourra mourir ver 916.4 391.08 13.63 4.93 ind:fut:3s; +mourrai mourir ver 916.4 391.08 7.54 3.04 ind:fut:1s; +mourraient mourir ver 916.4 391.08 1.38 0.61 cnd:pre:3p; +mourrais mourir ver 916.4 391.08 4.22 1.28 cnd:pre:1s;cnd:pre:2s; +mourrait mourir ver 916.4 391.08 3.45 3.78 cnd:pre:3s; +mourras mourir ver 916.4 391.08 7.67 1.15 ind:fut:2s; +mourre mourre nom f s 0.03 0.07 0.03 0.07 +mourrez mourir ver 916.4 391.08 4.99 0.95 ind:fut:2p; +mourriez mourir ver 916.4 391.08 0.29 0.07 cnd:pre:2p; +mourrions mourir ver 916.4 391.08 0.16 0.07 cnd:pre:1p; +mourrons mourir ver 916.4 391.08 3.41 1.15 ind:fut:1p; +mourront mourir ver 916.4 391.08 3.86 1.08 ind:fut:3p; +moururent mourir ver 916.4 391.08 0.91 1.22 ind:pas:3p; +mourus mourir ver 916.4 391.08 0.11 0.34 ind:pas:1s;ind:pas:2s; +mourussent mourir ver 916.4 391.08 0 0.07 sub:imp:3p; +mourut mourir ver 916.4 391.08 5.62 11.35 ind:pas:3s; +mourût mourir ver 916.4 391.08 0.02 0.61 sub:imp:3s; +mourûtes mourir ver 916.4 391.08 0 0.07 ind:pas:2p; +mous mou adj m p 6.99 22.5 1.46 5.41 +mouscaille mouscaille nom f s 0 0.81 0 0.74 +mouscailles mouscaille nom f p 0 0.81 0 0.07 +mousmé mousmé nom f s 0.22 0.2 0.21 0.14 +mousmés mousmé nom f p 0.22 0.2 0.01 0.07 +mousquet mousquet nom m s 1.31 0.95 0.48 0.54 +mousquetades mousquetade nom f p 0.01 0 0.01 0 +mousquetaire mousquetaire nom m s 3.02 3.65 0.82 1.15 +mousquetaires mousquetaire nom m p 3.02 3.65 2.19 2.5 +mousqueterie mousqueterie nom f s 0.01 0.2 0.01 0.2 +mousqueton mousqueton nom m s 0.72 4.39 0.41 3.18 +mousquetons mousqueton nom m p 0.72 4.39 0.32 1.22 +mousquets mousquet nom m p 1.31 0.95 0.83 0.41 +moussage moussage nom m s 0 0.07 0 0.07 +moussaient mousser ver 0.89 3.51 0 0.2 ind:imp:3p; +moussaillon moussaillon nom m s 0.59 0.34 0.34 0.34 +moussaillons moussaillon nom m p 0.59 0.34 0.25 0 +moussait mousser ver 0.89 3.51 0 0.68 ind:imp:3s; +moussaka moussaka nom f s 0.07 0.27 0.07 0.14 +moussakas moussaka nom f p 0.07 0.27 0 0.14 +moussant moussant adj m s 0.75 0.61 0.63 0.27 +moussante moussant adj f s 0.75 0.61 0.01 0.14 +moussants moussant adj m p 0.75 0.61 0.11 0.2 +mousse mousse nom s 6.47 27.16 6.24 23.04 +mousseline mousseline nom f s 0.36 4.73 0.36 4.19 +mousselines mousseline nom f p 0.36 4.73 0 0.54 +moussent mousser ver 0.89 3.51 0 0.07 ind:pre:3p; +mousser mousser ver 0.89 3.51 0.66 1.82 inf;; +mousseron mousseron nom m s 0 1.62 0 0.2 +mousserons mousseron nom m p 0 1.62 0 1.42 +mousses mousse nom p 6.47 27.16 0.24 4.12 +mousseuse mousseux adj f s 0.23 3.72 0.02 1.28 +mousseuses mousseux adj f p 0.23 3.72 0 0.41 +mousseux mousseux nom m 1.45 1.82 1.45 1.82 +mousson mousson nom f s 0.84 17.36 0.73 17.23 +moussons mousson nom f p 0.84 17.36 0.11 0.14 +moussu moussu adj m s 0.04 2.23 0 0.68 +moussue moussu adj f s 0.04 2.23 0.03 0.41 +moussues moussu adj f p 0.04 2.23 0.01 0.47 +moussus moussu adj m p 0.04 2.23 0 0.68 +moustache moustache nom f s 12.79 45.07 10.65 28.92 +moustaches moustache nom f p 12.79 45.07 2.13 16.15 +moustachu moustachu adj m s 0.84 8.99 0.63 6.55 +moustachue moustachu adj f s 0.84 8.99 0.04 0.54 +moustachues moustachu adj f p 0.84 8.99 0.01 0.27 +moustachus moustachu adj m p 0.84 8.99 0.17 1.62 +moustagache moustagache nom f s 0 0.54 0 0.34 +moustagaches moustagache nom f p 0 0.54 0 0.2 +moustiquaire moustiquaire nom f s 0.45 2.09 0.38 1.22 +moustiquaires moustiquaire nom f p 0.45 2.09 0.07 0.88 +moustique moustique nom m s 5.97 7.57 2.53 1.49 +moustiques moustique nom m p 5.97 7.57 3.44 6.08 +moutard moutard nom m s 0.86 3.31 0.54 1.49 +moutarde moutarde nom f s 3.95 5 3.94 4.93 +moutardes moutarde nom f p 3.95 5 0.01 0.07 +moutardier moutardier nom m s 0 0.14 0 0.14 +moutards moutard nom m p 0.86 3.31 0.32 1.82 +moutardé moutarder ver m s 0 0.07 0 0.07 par:pas; +moutier moutier nom m s 0.14 0 0.14 0 +mouton mouton nom m s 15.2 30.47 6.08 14.12 +moutonnaient moutonner ver 0.01 1.01 0 0.07 ind:imp:3p; +moutonnait moutonner ver 0.01 1.01 0 0.27 ind:imp:3s; +moutonnant moutonner ver 0.01 1.01 0 0.2 par:pre; +moutonnante moutonnant adj f s 0 0.47 0 0.2 +moutonnantes moutonnant adj f p 0 0.47 0 0.14 +moutonnants moutonnant adj m p 0 0.47 0 0.07 +moutonne moutonner ver 0.01 1.01 0.01 0.14 ind:pre:3s; +moutonnement moutonnement nom m s 0 1.42 0 1.35 +moutonnements moutonnement nom m p 0 1.42 0 0.07 +moutonnent moutonner ver 0.01 1.01 0 0.2 ind:pre:3p; +moutonner moutonner ver 0.01 1.01 0 0.14 inf; +moutonnerie moutonnerie nom f s 0 0.07 0 0.07 +moutonneux moutonneux adj m s 0 0.2 0 0.2 +moutonnier moutonnier adj m s 0 0.27 0 0.07 +moutonniers moutonnier adj m p 0 0.27 0 0.07 +moutonnière moutonnier adj f s 0 0.27 0 0.14 +moutons mouton nom m p 15.2 30.47 9.13 16.35 +mouture mouture nom f s 0.06 0.2 0.06 0.14 +moutures mouture nom f p 0.06 0.2 0 0.07 +mouvaient mouvoir ver 1.75 13.18 0.1 1.01 ind:imp:3p; +mouvais mouvoir ver 1.75 13.18 0.11 0.14 ind:imp:1s; +mouvait mouvoir ver 1.75 13.18 0.1 1.22 ind:imp:3s; +mouvance mouvance nom f s 0.02 0.2 0.01 0.2 +mouvances mouvance nom f p 0.02 0.2 0.01 0 +mouvant mouvant adj m s 1.77 13.18 0.39 3.45 +mouvante mouvant adj f s 1.77 13.18 0.55 4.39 +mouvantes mouvant adj f p 1.77 13.18 0.04 2.84 +mouvants mouvant adj m p 1.77 13.18 0.81 2.5 +mouvement mouvement nom m s 40.33 182.97 29.26 134.8 +mouvementent mouvementer ver 0.51 0.41 0 0.07 ind:pre:3p; +mouvements mouvement nom m p 40.33 182.97 11.07 48.18 +mouvementé mouvementé adj m s 0.92 1.42 0.16 0.34 +mouvementée mouvementé adj f s 0.92 1.42 0.47 0.74 +mouvementées mouvementé adj f p 0.92 1.42 0.16 0.34 +mouvementés mouvementé adj m p 0.92 1.42 0.12 0 +mouvoir mouvoir ver 1.75 13.18 0.58 4.26 inf; +moyen moyen nom m s 83.47 107.03 53.27 48.72 +moyen_oriental moyen_oriental adj m s 0.03 0 0.03 0 +moyen_orientaux moyen_orientaux adj m p 0.01 0 0.01 0 +moyen_âge moyen_âge nom m s 1.15 0.2 1.15 0.2 +moyennant moyennant pre 0.49 4.53 0.49 4.53 +moyenne moyenne nom f s 7.22 7.77 6.81 7.5 +moyennement moyennement adv 0.42 0.54 0.42 0.54 +moyenner moyenner ver 0.06 0.2 0 0.07 inf; +moyennes moyen adj f p 50.69 41.69 0.63 0.81 +moyens moyen nom m p 83.47 107.03 30.2 58.31 +moyenâgeuse moyenâgeux adj f s 0.09 1.69 0.01 0.14 +moyenâgeuses moyenâgeux adj f p 0.09 1.69 0.01 0.47 +moyenâgeux moyenâgeux adj m 0.09 1.69 0.06 1.08 +moyer moyer ver 0.1 0 0.1 0 inf; +moyeu moyeu nom m s 0.01 0.68 0.01 0.68 +moyeux moyeux nom m p 0.11 0.41 0.11 0.41 +mozarabe mozarabe adj s 0.2 0.14 0.2 0.14 +mozartiennes mozartien adj f p 0 0.07 0 0.07 +mozzarella mozzarella nom f s 0.64 0.14 0.64 0.14 +mozzarelle mozzarelle nom f s 0.03 0 0.03 0 +moï moï adj m s 0 0.27 0 0.27 +moïse moïse nom m s 0.05 0.47 0.05 0.47 +moût moût nom m s 0 0.68 0 0.54 +moûts moût nom m p 0 0.68 0 0.14 +mua muer ver 1.63 7.03 0.14 0.68 ind:pas:3s; +muai muer ver 1.63 7.03 0 0.07 ind:pas:1s; +muaient muer ver 1.63 7.03 0 0.14 ind:imp:3p; +muait muer ver 1.63 7.03 0.02 1.01 ind:imp:3s; +muant muer ver 1.63 7.03 0 0.2 par:pre; +muchacho muchacho nom m s 1.56 0.07 1.03 0 +muchachos muchacho nom m p 1.56 0.07 0.54 0.07 +muchas mucher ver 0.53 0 0.52 0 ind:pas:2s; +muche mucher ver 0.53 0 0.01 0 ind:pre:3s; +mucilage mucilage nom m s 0.01 0 0.01 0 +mucilagineuse mucilagineux adj f s 0 0.07 0 0.07 +mucor mucor nom m s 0.01 0 0.01 0 +mucosité mucosité nom f s 0.06 0.2 0.01 0.07 +mucosités mucosité nom f p 0.06 0.2 0.05 0.14 +mucoviscidose mucoviscidose nom f s 0.14 0 0.14 0 +mucus mucus nom m 0.38 0.2 0.38 0.2 +mudéjar mudéjar adj m s 0.1 0.2 0.1 0.14 +mudéjare mudéjar adj f s 0.1 0.2 0 0.07 +mue muer ver 1.63 7.03 0.26 0.88 ind:pre:1s;ind:pre:3s; +muent muer ver 1.63 7.03 0.16 0.2 ind:pre:3p; +muer muer ver 1.63 7.03 0.65 0.95 inf; +muera muer ver 1.63 7.03 0.02 0 ind:fut:3s; +mueront muer ver 1.63 7.03 0 0.07 ind:fut:3p; +mues muer ver 1.63 7.03 0.02 0.07 ind:pre:2s;sub:pre:2s; +muesli muesli nom m s 0.06 0 0.06 0 +muet muet adj m s 14.23 45.74 8.69 16.55 +muets muet adj m p 14.23 45.74 2.43 6.01 +muette muet adj f s 14.23 45.74 2.68 19.12 +muettement muettement adv 0 0.68 0 0.68 +muettes muet adj f p 14.23 45.74 0.43 4.05 +muezzin muezzin nom m s 0.14 0.61 0.14 0.41 +muezzins muezzin nom m p 0.14 0.61 0 0.2 +muffin muffin nom m s 2.96 0.34 1.3 0 +muffins muffin nom m p 2.96 0.34 1.65 0.34 +mufle mufle nom m s 1.7 6.89 1.56 6.08 +muflerie muflerie nom f s 0.12 1.01 0.12 0.81 +mufleries muflerie nom f p 0.12 1.01 0 0.2 +mufles mufle nom m p 1.7 6.89 0.14 0.81 +muflier muflier nom m s 0.68 0.07 0.68 0 +mufliers muflier nom m p 0.68 0.07 0 0.07 +muflée muflée nom f s 0.01 0.2 0.01 0.2 +mufti mufti nom m s 0.26 0.41 0.25 0.14 +muftis mufti nom m p 0.26 0.41 0.01 0.27 +muges muge nom m p 0 0.07 0 0.07 +mugi mugir ver m s 0.33 2.84 0.01 0.2 par:pas; +mugir mugir ver 0.33 2.84 0.04 0.95 inf; +mugis mugir ver 0.33 2.84 0 0.07 ind:pre:2s; +mugissaient mugir ver 0.33 2.84 0 0.07 ind:imp:3p; +mugissait mugir ver 0.33 2.84 0 0.34 ind:imp:3s; +mugissant mugissant adj m s 0.2 0.54 0.1 0.2 +mugissante mugissant adj f s 0.2 0.54 0.1 0.14 +mugissantes mugissant adj f p 0.2 0.54 0 0.14 +mugissants mugissant adj m p 0.2 0.54 0 0.07 +mugissement mugissement nom m s 0.09 2.97 0.04 1.76 +mugissements mugissement nom m p 0.09 2.97 0.04 1.22 +mugissent mugir ver 0.33 2.84 0.01 0.14 ind:pre:3p; +mugit mugir ver 0.33 2.84 0.26 0.88 ind:pre:3s;ind:pas:3s; +muguet muguet nom m s 0.4 3.92 0.38 3.85 +muguets muguet nom m p 0.4 3.92 0.02 0.07 +muguette mugueter ver 0 0.07 0 0.07 imp:pre:2s; +muids muid nom m p 0 0.14 0 0.14 +mulard mulard adj m s 0.01 0 0.01 0 +mule mule nom f s 9.62 8.99 7.29 4.26 +mules mule nom f p 9.62 8.99 2.33 4.73 +mulet mulet nom m s 3.67 7.43 3.19 2.77 +muleta muleta nom f s 0.15 0.27 0.15 0.27 +muletier muletier adj m s 0.05 0.41 0.05 0.27 +muletiers muletier nom m p 0.37 0.27 0.32 0.27 +muletière muletier adj f s 0.05 0.41 0 0.14 +mulets mulet nom m p 3.67 7.43 0.49 4.66 +mulettes mulette nom f p 0.01 0 0.01 0 +mulhousien mulhousien adj m s 0 0.07 0 0.07 +mullah mullah nom m s 0.05 0 0.05 0 +mulon mulon nom m s 0 0.07 0 0.07 +mulot mulot nom m s 0.06 1.55 0.04 0.88 +mulots mulot nom m p 0.06 1.55 0.01 0.68 +multi multi adv 2.37 0.61 2.37 0.61 +multi_tâches multi_tâches adj f s 0.05 0 0.05 0 +multicellulaire multicellulaire adj s 0.02 0 0.02 0 +multicolore multicolore adj s 0.42 13.72 0.19 3.04 +multicolores multicolore adj p 0.42 13.72 0.23 10.68 +multiconfessionnel multiconfessionnel adj m s 0.01 0 0.01 0 +multicouche multicouche adj m s 0.01 0 0.01 0 +multiculturalisme multiculturalisme nom m s 0.01 0 0.01 0 +multiculturel multiculturel adj m s 0.1 0 0.03 0 +multiculturelle multiculturel adj f s 0.1 0 0.07 0 +multidimensionnel multidimensionnel adj m s 0.12 0 0.04 0 +multidimensionnelle multidimensionnel adj f s 0.12 0 0.06 0 +multidimensionnels multidimensionnel adj m p 0.12 0 0.01 0 +multidisciplinaire multidisciplinaire adj s 0.01 0.07 0.01 0.07 +multifamilial multifamilial adj m s 0.01 0 0.01 0 +multifonction multifonction adj m s 0.04 0 0.04 0 +multifonctionnel multifonctionnel adj m s 0.01 0 0.01 0 +multifonctions multifonctions adj m s 0.14 0 0.14 0 +multiforme multiforme adj s 0.04 0.74 0.02 0.47 +multiformes multiforme adj f p 0.04 0.74 0.01 0.27 +multifréquences multifréquence adj m p 0.01 0 0.01 0 +multigrade multigrade adj f s 0 0.34 0 0.34 +multimilliardaire multimilliardaire adj f s 0.04 0 0.04 0 +multimilliardaire multimilliardaire nom s 0.04 0 0.04 0 +multimillionnaire multimillionnaire nom s 0.13 0 0.09 0 +multimillionnaires multimillionnaire nom p 0.13 0 0.04 0 +multimédia multimédia adj s 0.08 0 0.08 0 +multinational multinational adj m s 0.56 0.27 0.07 0.07 +multinationale multinationale nom f s 1.71 0.41 0.48 0.27 +multinationales multinationale nom f p 1.71 0.41 1.22 0.14 +multinationaux multinational adj m p 0.56 0.27 0 0.07 +multipare multipare nom f s 0 0.07 0 0.07 +multipartite multipartite adj s 0.1 0 0.1 0 +multiple multiple adj s 6.6 18.18 0.84 3.92 +multiples multiple adj p 6.6 18.18 5.76 14.26 +multiplex multiplex nom m 0.09 0 0.09 0 +multiplexe multiplexe nom m s 0.04 0 0.01 0 +multiplexer multiplexer ver 0.02 0 0.01 0 inf; +multiplexes multiplexe nom m p 0.04 0 0.03 0 +multiplexé multiplexer ver m s 0.02 0 0.01 0 par:pas; +multiplia multiplier ver 6.07 22.91 0 0.81 ind:pas:3s; +multipliai multiplier ver 6.07 22.91 0 0.2 ind:pas:1s; +multipliaient multiplier ver 6.07 22.91 0.07 2.91 ind:imp:3p; +multipliais multiplier ver 6.07 22.91 0 0.2 ind:imp:1s; +multipliait multiplier ver 6.07 22.91 0.07 2.5 ind:imp:3s; +multipliant multiplier ver 6.07 22.91 0.1 2.23 par:pre; +multiplicateur multiplicateur adj m s 0.04 0 0.04 0 +multiplication multiplication nom f s 0.54 2.36 0.28 2.03 +multiplications multiplication nom f p 0.54 2.36 0.26 0.34 +multiplicité multiplicité nom f s 0.18 1.55 0.17 1.49 +multiplicités multiplicité nom f p 0.18 1.55 0.01 0.07 +multiplie multiplier ver 6.07 22.91 1.06 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +multiplient multiplier ver 6.07 22.91 1.29 2.16 ind:pre:3p; +multiplier multiplier ver 6.07 22.91 1.39 3.51 inf; +multiplierai multiplier ver 6.07 22.91 0 0.07 ind:fut:1s; +multiplieraient multiplier ver 6.07 22.91 0 0.14 cnd:pre:3p; +multiplierait multiplier ver 6.07 22.91 0 0.07 cnd:pre:3s; +multiplierons multiplier ver 6.07 22.91 0.02 0 ind:fut:1p; +multiplieront multiplier ver 6.07 22.91 0.04 0.14 ind:fut:3p; +multiplies multiplier ver 6.07 22.91 0.14 0.07 ind:pre:2s; +multipliez multiplier ver 6.07 22.91 0.5 0.27 imp:pre:2p;ind:pre:2p; +multipliions multiplier ver 6.07 22.91 0 0.07 ind:imp:1p; +multipliât multiplier ver 6.07 22.91 0 0.14 sub:imp:3s; +multiplièrent multiplier ver 6.07 22.91 0.01 0.81 ind:pas:3p; +multiplié multiplier ver m s 6.07 22.91 0.75 1.76 par:pas; +multipliée multiplier ver f s 6.07 22.91 0.27 0.81 par:pas; +multipliées multiplier ver f p 6.07 22.91 0.2 0.88 par:pas; +multipliés multiplier ver m p 6.07 22.91 0.16 0.74 par:pas; +multipoints multipoints adj f s 0.01 0 0.01 0 +multiprise multiprise nom f s 0.03 0.14 0.03 0.14 +multipropriété multipropriété nom f s 0.23 0 0.23 0 +multiracial multiracial adj m s 0.14 0 0.02 0 +multiraciale multiracial adj f s 0.14 0 0.1 0 +multiraciaux multiracial adj m p 0.14 0 0.02 0 +multirisque multirisque adj f s 0.14 0.07 0.14 0.07 +multirécidiviste multirécidiviste nom s 0.05 0 0.05 0 +multiséculaires multiséculaire adj p 0 0.07 0 0.07 +multitude multitude nom f s 1.38 10.27 1.31 9.66 +multitudes multitude nom f p 1.38 10.27 0.07 0.61 +multitâche multitâche adj m s 0.04 0 0.03 0 +multitâches multitâche nom m p 0.06 0 0.04 0 +mulâtre mulâtre nom m s 0.77 1.08 0.5 0.74 +mulâtres mulâtre nom m p 0.77 1.08 0.27 0.34 +mulâtresse mulâtresse nom f s 0.14 0.34 0.01 0.2 +mulâtresses mulâtresse nom f p 0.14 0.34 0.14 0.14 +mungo mungo nom m s 0.02 0 0.02 0 +muni munir ver m s 2.06 14.53 1.14 6.62 par:pas; +munich munich nom s 0 0.07 0 0.07 +munichois munichois adj m p 0.1 0.14 0.1 0.07 +munichoise munichois adj f s 0.1 0.14 0 0.07 +municipal municipal adj m s 9.92 14.53 6.25 7.03 +municipale municipal adj f s 9.92 14.53 1.66 3.18 +municipales municipal adj f p 9.92 14.53 0.54 1.22 +municipalité municipalité nom f s 1.79 3.58 1.77 2.57 +municipalités municipalité nom f p 1.79 3.58 0.03 1.01 +municipaux municipal adj m p 9.92 14.53 1.47 3.11 +municipe municipe nom m s 0 0.27 0 0.2 +municipes municipe nom m p 0 0.27 0 0.07 +munie munir ver f s 2.06 14.53 0.29 3.78 par:pas; +munies munir ver f p 2.06 14.53 0.14 1.01 par:pas; +munificence munificence nom f s 0.14 1.01 0 0.81 +munificences munificence nom f p 0.14 1.01 0.14 0.2 +munificente munificent adj f s 0 0.14 0 0.07 +munificents munificent adj m p 0 0.14 0 0.07 +munir munir ver 2.06 14.53 0.24 0.88 inf; +munis munir ver m p 2.06 14.53 0.25 1.69 imp:pre:2s;ind:pre:1s;par:pas; +munissaient munir ver 2.06 14.53 0 0.07 ind:imp:3p; +munissait munir ver 2.06 14.53 0 0.14 ind:imp:3s; +munissant munir ver 2.06 14.53 0 0.07 par:pre; +munissent munir ver 2.06 14.53 0 0.07 ind:pre:3p; +munit munir ver 2.06 14.53 0.01 0.2 ind:pre:3s;ind:pas:3s; +munition munition nom f s 14.68 8.45 0.28 0.07 +munitions munition nom f p 14.68 8.45 14.4 8.38 +munster munster nom m s 0.05 0.2 0.05 0.2 +muon muon nom m s 0.01 0 0.01 0 +muphti muphti nom m s 0 0.07 0 0.07 +muqueuse muqueux nom f s 0.11 1.82 0.11 0.61 +muqueuses muqueuse nom f p 0.19 0 0.19 0 +muqueux muqueux adj m s 0.19 0.47 0.15 0.07 +mur mur nom m s 88.93 317.77 58.9 172.57 +mura murer ver 1.39 6.96 0.11 0.2 ind:pas:3s; +murage murage nom m s 0.01 0 0.01 0 +muraient murer ver 1.39 6.96 0 0.07 ind:imp:3p; +muraille muraille nom f s 2.61 20.88 1.28 11.01 +murailles muraille nom f p 2.61 20.88 1.32 9.86 +murait murer ver 1.39 6.96 0 0.34 ind:imp:3s; +mural mural adj m s 0.35 3.24 0.08 1.76 +murale mural adj f s 0.35 3.24 0.2 1.01 +murales mural adj f p 0.35 3.24 0.05 0.47 +murant murer ver 1.39 6.96 0 0.14 par:pre; +muraux mural adj m p 0.35 3.24 0.02 0 +mure murer ver 1.39 6.96 0.26 0.07 imp:pre:2s;ind:pre:3s; +murent mouvoir ver 1.75 13.18 0 0.07 ind:pas:3p; +murer murer ver 1.39 6.96 0.05 1.28 inf; +murerait murer ver 1.39 6.96 0 0.07 cnd:pre:3s; +mures murer ver 1.39 6.96 0.01 0 ind:pre:2s; +muret muret nom m s 0.28 3.24 0.28 2.64 +muretin muretin nom m s 0 0.27 0 0.07 +muretins muretin nom m p 0 0.27 0 0.2 +murets muret nom m p 0.28 3.24 0 0.61 +murette murette nom f s 0 4.26 0 3.31 +murettes murette nom f p 0 4.26 0 0.95 +murex murex nom m 0 0.07 0 0.07 +murez murer ver 1.39 6.96 0 0.07 imp:pre:2p; +muriatique muriatique adj m s 0.01 0.07 0.01 0.07 +muridés muridé nom m p 0.02 0 0.02 0 +murin murin nom m s 0.01 0 0.01 0 +murmel murmel nom m s 0 0.07 0 0.07 +murmura murmurer ver 7.27 123.58 0.8 58.31 ind:pas:3s; +murmurai murmurer ver 7.27 123.58 0.12 3.31 ind:pas:1s; +murmuraient murmurer ver 7.27 123.58 0.35 1.55 ind:imp:3p; +murmurais murmurer ver 7.27 123.58 0.03 0.95 ind:imp:1s;ind:imp:2s; +murmurait murmurer ver 7.27 123.58 0.55 12.5 ind:imp:3s; +murmurant murmurer ver 7.27 123.58 0.38 7.64 par:pre; +murmurante murmurant adj f s 0.14 1.22 0.14 0.41 +murmurantes murmurant adj f p 0.14 1.22 0 0.14 +murmurants murmurant adj m p 0.14 1.22 0 0.14 +murmuras murmurer ver 7.27 123.58 0 0.07 ind:pas:2s; +murmure murmurer ver 7.27 123.58 2.29 14.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +murmurent murmurer ver 7.27 123.58 0.58 0.81 ind:pre:3p; +murmurer murmurer ver 7.27 123.58 1.17 10.14 inf; +murmurera murmurer ver 7.27 123.58 0.01 0.07 ind:fut:3s; +murmureraient murmurer ver 7.27 123.58 0 0.07 cnd:pre:3p; +murmurerait murmurer ver 7.27 123.58 0.01 0.27 cnd:pre:3s; +murmureront murmurer ver 7.27 123.58 0.01 0 ind:fut:3p; +murmures murmure nom m p 3.4 31.62 1.78 6.49 +murmurez murmurer ver 7.27 123.58 0.12 0.14 imp:pre:2p;ind:pre:2p; +murmurions murmurer ver 7.27 123.58 0.01 0.14 ind:imp:1p; +murmurèrent murmurer ver 7.27 123.58 0.1 0.34 ind:pas:3p; +murmuré murmurer ver m s 7.27 123.58 0.63 10.81 par:pas; +murmurée murmurer ver f s 7.27 123.58 0 0.27 par:pas; +murmurées murmurer ver f p 7.27 123.58 0.01 0.81 par:pas; +murmurés murmurer ver m p 7.27 123.58 0 0.47 par:pas; +murs mur nom m p 88.93 317.77 30.04 145.2 +murène murène nom f s 0.56 0.47 0.41 0.2 +murènes murène nom f p 0.56 0.47 0.14 0.27 +murèrent murer ver 1.39 6.96 0 0.07 ind:pas:3p; +muré murer ver m s 1.39 6.96 0.38 1.96 par:pas; +murée murer ver f s 1.39 6.96 0.56 1.42 par:pas; +murées murer ver f p 1.39 6.96 0 0.61 par:pas; +murés murer ver m p 1.39 6.96 0.02 0.68 par:pas; +mus mu adj m p 0.18 0 0.18 0 +musa muser ver 0.44 0.74 0 0.07 ind:pas:3s; +musagètes musagète adj m p 0 0.07 0 0.07 +musait muser ver 0.44 0.74 0 0.14 ind:imp:3s; +musant muser ver 0.44 0.74 0 0.14 par:pre; +musaraigne musaraigne nom f s 0.07 0.61 0.05 0.47 +musaraignes musaraigne nom f p 0.07 0.61 0.02 0.14 +musard musard adj m s 0 0.2 0 0.14 +musarda musarder ver 0.03 1.42 0 0.07 ind:pas:3s; +musardaient musarder ver 0.03 1.42 0 0.14 ind:imp:3p; +musardait musarder ver 0.03 1.42 0 0.34 ind:imp:3s; +musardant musarder ver 0.03 1.42 0 0.07 par:pre; +musarde musarder ver 0.03 1.42 0 0.2 ind:pre:3s; +musarder musarder ver 0.03 1.42 0.03 0.54 inf; +musardez musarder ver 0.03 1.42 0 0.07 imp:pre:2p; +musardise musardise nom f s 0 0.07 0 0.07 +musards musard adj m p 0 0.2 0 0.07 +musc musc nom m s 0.28 0.81 0.28 0.81 +muscade muscade nom f s 0.52 1.15 0.52 1.15 +muscadelle muscadelle nom f s 0 0.07 0 0.07 +muscadet muscadet nom m s 0.3 1.69 0.3 1.69 +muscadin muscadin nom m s 0 0.07 0 0.07 +muscadine muscadine nom f s 0 0.07 0 0.07 +muscat muscat nom m s 0.36 1.28 0.36 1.15 +muscats muscat nom m p 0.36 1.28 0 0.14 +musclant muscler ver 1.46 2.5 0.01 0 par:pre; +muscle muscle nom m s 15.61 34.53 3.86 3.92 +musclent muscler ver 1.46 2.5 0.01 0.14 ind:pre:3p; +muscler muscler ver 1.46 2.5 0.52 0.27 inf; +muscles muscle nom m p 15.61 34.53 11.75 30.61 +musclé musclé adj m s 2.6 7.03 1.52 2.5 +musclée musclé adj f s 2.6 7.03 0.17 1.28 +musclées musclé adj f p 2.6 7.03 0.14 1.28 +musclés musclé adj m p 2.6 7.03 0.76 1.96 +muscovite muscovite nom f s 0.01 0 0.01 0 +musculaire musculaire adj s 2.55 2.77 1.66 1.82 +musculaires musculaire adj p 2.55 2.77 0.9 0.95 +musculation musculation nom f s 0.48 0.2 0.48 0.2 +musculature musculature nom f s 0.36 1.89 0.36 1.89 +musculeuse musculeux adj f s 0.03 2.3 0 0.81 +musculeuses musculeux adj f p 0.03 2.3 0 0.41 +musculeux musculeux adj m 0.03 2.3 0.03 1.08 +muse muse nom f s 2.42 1.35 1.82 0.81 +museau museau nom m s 1.86 12.64 1.6 11.76 +museaux museau nom m p 1.86 12.64 0.26 0.88 +muselait museler ver 0.4 1.01 0 0.07 ind:imp:3s; +muselant museler ver 0.4 1.01 0.01 0.07 par:pre; +museler museler ver 0.4 1.01 0.19 0.34 inf; +muselière muselière nom f s 0.74 0.81 0.62 0.74 +muselières muselière nom f p 0.74 0.81 0.12 0.07 +muselle museler ver 0.4 1.01 0.01 0.07 imp:pre:2s;ind:pre:3s; +musellerait museler ver 0.4 1.01 0 0.07 cnd:pre:3s; +muselons museler ver 0.4 1.01 0.01 0 imp:pre:1p; +muselé museler ver m s 0.4 1.01 0.15 0.07 par:pas; +muselée museler ver f s 0.4 1.01 0.01 0.07 par:pas; +muselées museler ver f p 0.4 1.01 0 0.07 par:pas; +muselés museler ver m p 0.4 1.01 0.02 0.2 par:pas; +muser muser ver 0.44 0.74 0.1 0.07 inf; +muserolle muserolle nom f s 0 0.07 0 0.07 +muses muse nom f p 2.42 1.35 0.6 0.54 +musette musette nom f s 0.77 18.45 0.75 13.78 +musettes musette nom f p 0.77 18.45 0.02 4.66 +musette_repas musette_repas nom f p 0 0.07 0 0.07 +music_hall music_hall nom m s 1.85 4.32 0.02 0 +music_hall music_hall nom m s 1.85 4.32 1.7 3.78 +music_hall music_hall nom m p 1.85 4.32 0.13 0.54 +musical musical adj m s 24.76 10.54 17.5 3.45 +musicale musical adj f s 24.76 10.54 4.88 4.19 +musicalement musicalement adv 0.3 0.27 0.3 0.27 +musicales musical adj f p 24.76 10.54 1.63 1.96 +musicalité musicalité nom f s 0.14 0.47 0.14 0.47 +musicaux musical adj m p 24.76 10.54 0.75 0.95 +musicien musicien nom m s 13.3 16.08 4.78 5.88 +musicienne musicien nom f s 13.3 16.08 0.79 0.14 +musiciennes musicien nom f p 13.3 16.08 0.43 0.2 +musiciens musicien nom m p 13.3 16.08 7.31 9.86 +musico musico adv 0 0.68 0 0.68 +musicographes musicographe nom p 0 0.07 0 0.07 +musicologie musicologie nom f s 0.03 0 0.03 0 +musicologique musicologique adj m s 0.02 0 0.02 0 +musicologue musicologue nom s 0.01 0.34 0.01 0.07 +musicologues musicologue nom p 0.01 0.34 0 0.27 +musicothérapie musicothérapie nom f s 0.01 0 0.01 0 +musiquait musiquer ver 0.27 0.34 0 0.07 ind:imp:3s; +musique musique nom f s 169.8 114.32 168.89 109.8 +musiquer musiquer ver 0.27 0.34 0 0.14 inf; +musiques musique nom f p 169.8 114.32 0.91 4.53 +musiquette musiquette nom f s 0 0.47 0 0.34 +musiquettes musiquette nom f p 0 0.47 0 0.14 +muskogee muskogee nom s 0.01 0 0.01 0 +musoir musoir nom m s 0 0.07 0 0.07 +musqué musqué adj m s 0.18 1.49 0.14 0.41 +musquée musqué adj f s 0.18 1.49 0.01 0.68 +musquées musqué adj f p 0.18 1.49 0 0.14 +musqués musqué adj m p 0.18 1.49 0.04 0.27 +mussais musser ver 0 0.41 0 0.07 ind:imp:1s; +musse musser ver 0 0.41 0 0.07 ind:pre:3s; +mussent musser ver 0 0.41 0 0.07 ind:pre:3p; +mussolinien mussolinien adj m s 0 0.41 0 0.14 +mussolinienne mussolinien adj f s 0 0.41 0 0.14 +mussoliniens mussolinien adj m p 0 0.41 0 0.14 +mussée musser ver f s 0 0.41 0 0.07 par:pas; +mussés musser ver m p 0 0.41 0 0.14 par:pas; +must must nom m 3.98 0.54 3.98 0.54 +mustang mustang nom m s 0.75 0.14 0.32 0.07 +mustangs mustang nom m p 0.75 0.14 0.43 0.07 +mustélidés mustélidé nom m p 0 0.07 0 0.07 +musulman musulman adj m s 5.84 7.09 2 2.09 +musulmane musulman adj f s 5.84 7.09 1.84 2.09 +musulmanes musulman adj f p 5.84 7.09 0.54 0.81 +musulmans musulman nom m p 6.22 6.22 4 3.92 +musée musée nom m s 20.7 28.38 18.59 21.55 +musées musée nom m p 20.7 28.38 2.11 6.82 +muséologie muséologie nom f s 0.01 0 0.01 0 +muséologique muséologique adj f s 0.01 0 0.01 0 +muséologue muséologue nom s 0.01 0 0.01 0 +muséum muséum nom m s 0.24 0.2 0.24 0.2 +mutabilité mutabilité nom f s 0.03 0 0.03 0 +mutable mutable adj s 0.03 0 0.02 0 +mutables mutable adj p 0.03 0 0.01 0 +mutagène mutagène adj m s 0.02 0 0.02 0 +mutant mutant nom m s 4.67 0.81 1.93 0.27 +mutante mutant adj f s 2.02 0.07 0.98 0 +mutantes mutant adj f p 2.02 0.07 0.1 0 +mutants mutant nom m p 4.67 0.81 2.46 0.54 +mutation mutation nom f s 5.53 4.32 4.67 3.18 +mutations mutation nom f p 5.53 4.32 0.85 1.15 +mutatis_mutandis mutatis_mutandis adv 0 0.07 0 0.07 +mute muter ver 7.04 2.09 0.24 0.14 ind:pre:1s;ind:pre:3s; +mutent muter ver 7.04 2.09 0.08 0 ind:pre:3p; +muter muter ver 7.04 2.09 1.88 0.47 inf; +mutera muter ver 7.04 2.09 0.01 0 ind:fut:3s; +muterai muter ver 7.04 2.09 0.34 0 ind:fut:1s; +muteront muter ver 7.04 2.09 0.01 0 ind:fut:3p; +mutila mutiler ver 2.62 4.39 0.01 0.2 ind:pas:3s; +mutilais mutiler ver 2.62 4.39 0.01 0 ind:imp:2s; +mutilait mutiler ver 2.62 4.39 0.02 0.27 ind:imp:3s; +mutilant mutiler ver 2.62 4.39 0.14 0.07 par:pre; +mutilante mutilant adj f s 0 0.2 0 0.14 +mutilateur mutilateur adj m s 0.03 0 0.03 0 +mutilation mutilation nom f s 2.02 2.57 1.13 1.82 +mutilations mutilation nom f p 2.02 2.57 0.89 0.74 +mutile mutiler ver 2.62 4.39 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mutilent mutiler ver 2.62 4.39 0.08 0.07 ind:pre:3p; +mutiler mutiler ver 2.62 4.39 0.67 0.81 inf; +mutilera mutiler ver 2.62 4.39 0 0.07 ind:fut:3s; +mutileraient mutiler ver 2.62 4.39 0.01 0.07 cnd:pre:3p; +mutilé mutilé adj m s 2.21 6.15 1.22 1.76 +mutilée mutiler ver f s 2.62 4.39 0.4 0.68 par:pas; +mutilées mutilé adj f p 2.21 6.15 0.04 1.01 +mutilés mutilé adj m p 2.21 6.15 0.72 1.96 +mutin mutin adj m s 0.33 0.88 0.27 0.27 +mutina mutiner ver 0.85 0.47 0.03 0.07 ind:pas:3s; +mutinaient mutiner ver 0.85 0.47 0.03 0.07 ind:imp:3p; +mutine mutiner ver 0.85 0.47 0.04 0.07 ind:pre:3s; +mutinent mutiner ver 0.85 0.47 0.11 0 ind:pre:3p; +mutiner mutiner ver 0.85 0.47 0.18 0.14 inf; +mutinerie mutinerie nom f s 3.13 1.15 2.97 0.81 +mutineries mutinerie nom f p 3.13 1.15 0.16 0.34 +mutines mutin adj f p 0.33 0.88 0.01 0.07 +mutinez mutiner ver 0.85 0.47 0.01 0 ind:pre:2p; +mutins mutin nom m p 0.7 1.01 0.59 0.61 +mutiné mutiner ver m s 0.85 0.47 0.31 0.14 par:pas; +mutinée mutiner ver f s 0.85 0.47 0.1 0 par:pas; +mutinés mutiné adj m p 0.15 0.07 0.05 0.07 +mutique mutique adj m s 0.01 0.07 0.01 0.07 +mutisme mutisme nom m s 0.97 6.89 0.97 6.82 +mutismes mutisme nom m p 0.97 6.89 0 0.07 +mutité mutité nom f s 0 0.2 0 0.2 +mutualisme mutualisme nom m s 0 0.07 0 0.07 +mutualité mutualité nom f s 0.14 0.34 0 0.34 +mutualités mutualité nom f p 0.14 0.34 0.14 0 +mutuel mutuel adj m s 4 3.78 1.5 1.15 +mutuelle mutuel adj f s 4 3.78 1.88 2.23 +mutuellement mutuellement adv 3.4 4.59 3.4 4.59 +mutuelles mutuel adj f p 4 3.78 0.22 0.34 +mutuels mutuel adj m p 4 3.78 0.41 0.07 +mutât muter ver 7.04 2.09 0 0.07 sub:imp:3s; +muté muter ver m s 7.04 2.09 3.59 1.08 par:pas; +mutée muter ver f s 7.04 2.09 0.42 0 par:pas; +mutées muter ver f p 7.04 2.09 0.05 0 par:pas; +mutés muter ver m p 7.04 2.09 0.19 0.34 par:pas; +mué muer ver m s 1.63 7.03 0.32 1.62 par:pas; +muée muer ver f s 1.63 7.03 0.03 0.81 par:pas; +muées muer ver f p 1.63 7.03 0 0.07 par:pas; +mués muer ver m p 1.63 7.03 0.02 0.27 par:pas; +myasthénie myasthénie nom f s 0.12 0 0.12 0 +mycologie mycologie nom f s 0 0.07 0 0.07 +mycologue mycologue nom s 0.01 0.27 0 0.2 +mycologues mycologue nom p 0.01 0.27 0.01 0.07 +mycose mycose nom f s 0.73 0 0.73 0 +mycène mycène nom m s 0.04 0 0.04 0 +mycénien mycénien adj m s 0.01 0.14 0.01 0 +mycéniennes mycénien adj f p 0.01 0.14 0 0.07 +mycéniens mycénien adj m p 0.01 0.14 0 0.07 +mygale mygale nom f s 0.05 0.47 0.04 0.27 +mygales mygale nom f p 0.05 0.47 0.01 0.2 +mylord mylord nom m s 0.97 0.14 0.97 0.14 +myocarde myocarde nom m s 0.12 0.2 0.12 0.2 +myocardiopathie myocardiopathie nom f s 0.07 0 0.07 0 +myocardique myocardique adj f s 0.01 0 0.01 0 +myocardite myocardite nom f s 0.03 0.07 0.03 0.07 +myoclonie myoclonie nom f s 0.01 0 0.01 0 +myoglobine myoglobine nom f s 0.04 0 0.04 0 +myographe myographe nom m s 0 0.07 0 0.07 +myopathes myopathe nom p 0.02 0 0.02 0 +myopathie myopathie nom f s 0.03 0.07 0.03 0.07 +myopathique myopathique adj s 0.01 0 0.01 0 +myope myope adj s 1.76 4.05 1.71 3.24 +myopes myope adj m p 1.76 4.05 0.05 0.81 +myopie myopie nom f s 0.29 2.16 0.29 2.09 +myopies myopie nom f p 0.29 2.16 0 0.07 +myosine myosine nom f s 0.01 0 0.01 0 +myosis myosis nom m 0.04 0 0.04 0 +myosotis myosotis nom m 0.17 1.49 0.17 1.49 +myriade myriade nom f s 0.78 3.31 0.11 1.08 +myriades myriade nom f p 0.78 3.31 0.67 2.23 +myriophylle myriophylle nom f s 0 0.2 0 0.2 +myrmidon myrmidon nom m s 0.69 0 0.67 0 +myrmidons myrmidon nom m p 0.69 0 0.02 0 +myrrhe myrrhe nom f s 0.43 0.54 0.43 0.54 +myrte myrte nom m s 1.25 1.55 1.25 0.74 +myrtes myrte nom m p 1.25 1.55 0 0.81 +myrtille myrtille nom f s 3.43 2.16 1.71 0.34 +myrtilles myrtille nom f p 3.43 2.16 1.72 1.82 +mystagogie mystagogie nom f s 0 0.14 0 0.14 +mystagogique mystagogique adj f s 0 0.14 0 0.14 +mystagogue mystagogue nom m s 0 0.07 0 0.07 +myste myste nom m s 0.01 0 0.01 0 +mysticisme mysticisme nom m s 0.79 1.89 0.79 1.82 +mysticismes mysticisme nom m p 0.79 1.89 0 0.07 +mystificateur mystificateur nom m s 0.09 0.41 0.05 0.34 +mystificateurs mystificateur nom m p 0.09 0.41 0.02 0.07 +mystification mystification nom f s 0.4 1.49 0.16 1.28 +mystifications mystification nom f p 0.4 1.49 0.23 0.2 +mystificatrice mystificateur nom f s 0.09 0.41 0.02 0 +mystifie mystifier ver 0.28 1.01 0.1 0 ind:pre:3s; +mystifier mystifier ver 0.28 1.01 0.03 0.54 inf; +mystifié mystifier ver m s 0.28 1.01 0.13 0.2 par:pas; +mystifiée mystifier ver f s 0.28 1.01 0.01 0.14 par:pas; +mystifiées mystifier ver f p 0.28 1.01 0 0.07 par:pas; +mystifiés mystifier ver m p 0.28 1.01 0.01 0.07 par:pas; +mystique mystique adj s 3.31 8.85 2.75 6.82 +mystiquement mystiquement adv 0.04 0.2 0.04 0.2 +mystiques mystique adj p 3.31 8.85 0.57 2.03 +mystère mystère nom m s 28.03 51.01 22.9 39.53 +mystères mystère nom m p 28.03 51.01 5.13 11.49 +mystérieuse mystérieux adj f s 19.61 53.65 6.56 18.65 +mystérieusement mystérieusement adv 1.63 6.82 1.63 6.82 +mystérieuses mystérieux adj f p 19.61 53.65 1.21 7.64 +mystérieux mystérieux adj m 19.61 53.65 11.84 27.36 +mythe mythe nom m s 6.26 10.41 5.17 5.61 +mythes mythe nom m p 6.26 10.41 1.1 4.8 +mythifiait mythifier ver 0 0.14 0 0.07 ind:imp:3s; +mythifier mythifier ver 0 0.14 0 0.07 inf; +mythique mythique adj s 1.15 4.19 1.01 3.11 +mythiques mythique adj p 1.15 4.19 0.14 1.08 +mythisation mythisation nom f s 0 0.07 0 0.07 +mytho mytho adv 0.36 0.2 0.36 0.2 +mythologie mythologie nom f s 2.06 4.73 2.02 4.12 +mythologies mythologie nom f p 2.06 4.73 0.04 0.61 +mythologique mythologique adj s 0.81 2.03 0.66 1.62 +mythologiques mythologique adj p 0.81 2.03 0.16 0.41 +mythologisé mythologiser ver m s 0 0.07 0 0.07 par:pas; +mythologue mythologue nom s 0 0.14 0 0.07 +mythologues mythologue nom p 0 0.14 0 0.07 +mythomane mythomane adj s 0.43 0.68 0.42 0.68 +mythomanes mythomane adj f p 0.43 0.68 0.01 0 +mythomanie mythomanie nom f s 0.1 0.61 0.1 0.61 +myxoedémateuse myxoedémateux adj f s 0 0.07 0 0.07 +myxoedémateuse myxoedémateux nom f s 0 0.07 0 0.07 +myxomatose myxomatose nom f s 0.03 0.07 0.03 0.07 +myéline myéline nom f s 0.01 0 0.01 0 +myélite myélite nom f s 0.05 0.07 0.05 0.07 +myéloblaste myéloblaste nom m s 0 0.2 0 0.07 +myéloblastes myéloblaste nom m p 0 0.2 0 0.14 +myéloïde myéloïde adj f s 0.02 0 0.02 0 +mâcha mâcher ver 5 12.3 0 0.47 ind:pas:3s; +mâchage mâchage nom m s 0 0.07 0 0.07 +mâchaient mâcher ver 5 12.3 0.01 0.47 ind:imp:3p; +mâchais mâcher ver 5 12.3 0.1 0.07 ind:imp:1s; +mâchait mâcher ver 5 12.3 0.14 2.09 ind:imp:3s; +mâchant mâcher ver 5 12.3 0.16 1.82 par:pre; +mâche mâcher ver 5 12.3 1.37 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mâchefer mâchefer nom m s 0.01 2.57 0.01 2.57 +mâchent mâcher ver 5 12.3 0.16 0.2 ind:pre:3p; +mâcher mâcher ver 5 12.3 1.61 3.78 inf; +mâcherai mâcher ver 5 12.3 0.04 0.07 ind:fut:1s; +mâcherais mâcher ver 5 12.3 0.01 0 cnd:pre:1s; +mâcherait mâcher ver 5 12.3 0.01 0.07 cnd:pre:3s; +mâcherez mâcher ver 5 12.3 0 0.07 ind:fut:2p; +mâches mâcher ver 5 12.3 0.15 0 ind:pre:2s; +mâcheur mâcheur nom m s 0.05 0.07 0.04 0 +mâcheurs mâcheur nom m p 0.05 0.07 0 0.07 +mâcheuse mâcheur nom f s 0.05 0.07 0.01 0 +mâchez mâcher ver 5 12.3 0.31 0 imp:pre:2p;ind:pre:2p; +mâchicoulis mâchicoulis nom m 0 0.34 0 0.34 +mâchoire mâchoire nom f s 7.9 23.58 6.8 11.28 +mâchoires mâchoire nom f p 7.9 23.58 1.09 12.3 +mâchonna mâchonner ver 0.22 4.59 0 0.41 ind:pas:3s; +mâchonnaient mâchonner ver 0.22 4.59 0 0.2 ind:imp:3p; +mâchonnais mâchonner ver 0.22 4.59 0 0.07 ind:imp:1s; +mâchonnait mâchonner ver 0.22 4.59 0.01 0.61 ind:imp:3s; +mâchonnant mâchonner ver 0.22 4.59 0.16 1.01 par:pre; +mâchonne mâchonner ver 0.22 4.59 0.01 0.68 ind:pre:3s; +mâchonnements mâchonnement nom m p 0 0.14 0 0.14 +mâchonnent mâchonner ver 0.22 4.59 0 0.14 ind:pre:3p; +mâchonner mâchonner ver 0.22 4.59 0.04 1.01 inf; +mâchonné mâchonner ver m s 0.22 4.59 0 0.34 par:pas; +mâchonnés mâchonner ver m p 0.22 4.59 0 0.14 par:pas; +mâchons mâcher ver 5 12.3 0 0.07 imp:pre:1p; +mâchouilla mâchouiller ver 0.31 1.62 0 0.27 ind:pas:3s; +mâchouillait mâchouiller ver 0.31 1.62 0 0.34 ind:imp:3s; +mâchouillant mâchouiller ver 0.31 1.62 0.02 0.61 par:pre; +mâchouille mâchouiller ver 0.31 1.62 0.1 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mâchouiller mâchouiller ver 0.31 1.62 0.04 0.2 inf; +mâchouilles mâchouiller ver 0.31 1.62 0.07 0 ind:pre:2s; +mâchouilleur mâchouilleur nom m s 0.02 0.07 0.02 0.07 +mâchouillé mâchouiller ver m s 0.31 1.62 0.07 0.07 par:pas; +mâchouillée mâchouiller ver f s 0.31 1.62 0.01 0.07 par:pas; +mâchuré mâchurer ver m s 0 0.14 0 0.07 par:pas; +mâchurée mâchurer ver f s 0 0.14 0 0.07 par:pas; +mâchèrent mâcher ver 5 12.3 0 0.07 ind:pas:3p; +mâché mâcher ver m s 5 12.3 0.91 1.42 par:pas; +mâchée mâcher ver f s 5 12.3 0.01 0.14 par:pas; +mâchés mâcher ver m p 5 12.3 0.01 0.2 par:pas; +mâconnaise mâconnais adj f s 0 0.14 0 0.07 +mâconnaises mâconnais adj f p 0 0.14 0 0.07 +mâle mâle nom m s 11.72 15.95 8.96 10 +mâles mâle nom m p 11.72 15.95 2.76 5.95 +mânes mânes nom m p 0.01 0.41 0.01 0.41 +mât mât nom m s 1.67 9.59 1.47 5.95 +mâte mâter ver 0.04 0.14 0.01 0.07 imp:pre:2s;ind:pre:3s; +mâter mâter ver 0.04 0.14 0.03 0 inf; +mâtin mâtin ono 0 0.07 0 0.07 +mâtinant mâtiner ver 0.03 0.81 0 0.07 par:pre; +mâtine mâtine nom f s 0.57 1.22 0 0.14 +mâtines mâtine nom f p 0.57 1.22 0.01 0.07 +mâtins mâtin nom m p 0.26 0.2 0 0.07 +mâtiné mâtiné adj m s 0.03 0 0.03 0 +mâtinée mâtiner ver f s 0.03 0.81 0.01 0.14 par:pas; +mâtinés mâtiner ver m p 0.03 0.81 0 0.14 par:pas; +mâts mât nom m p 1.67 9.59 0.2 3.65 +mâture mâture nom f s 0.14 1.62 0.14 1.08 +mâtures mâture nom f p 0.14 1.62 0 0.54 +mâtée mâter ver f s 0.04 0.14 0 0.07 par:pas; +mèche mèche nom f s 9.87 31.01 8.21 19.12 +mèches mèche nom f p 9.87 31.01 1.66 11.89 +mène mener ver 99.86 137.7 31.86 21.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mènent mener ver 99.86 137.7 6.42 7.57 ind:pre:3p; +mènera mener ver 99.86 137.7 4.7 1.28 ind:fut:3s; +mènerai mener ver 99.86 137.7 0.73 0.41 ind:fut:1s; +mèneraient mener ver 99.86 137.7 0.05 0.68 cnd:pre:3p; +mènerais mener ver 99.86 137.7 0.25 0.14 cnd:pre:1s;cnd:pre:2s; +mènerait mener ver 99.86 137.7 0.98 2.3 cnd:pre:3s; +mèneras mener ver 99.86 137.7 0.19 0 ind:fut:2s; +mènerez mener ver 99.86 137.7 0.08 0.14 ind:fut:2p; +mènerons mener ver 99.86 137.7 0.26 0.07 ind:fut:1p; +mèneront mener ver 99.86 137.7 1.04 0.47 ind:fut:3p; +mènes mener ver 99.86 137.7 2.84 1.01 ind:pre:2s; +mère mère nom f s 686.79 761.28 672 737.09 +mère_grand mère_grand nom f s 0.89 0.34 0.89 0.34 +mère_patrie mère_patrie nom f s 0.04 0.41 0.04 0.41 +mères mère nom f p 686.79 761.28 14.79 24.19 +mètre mètre nom m s 43.49 130.07 6.03 21.82 +mètres mètre nom m p 43.49 130.07 37.46 108.24 +méandre méandre nom m s 0.72 3.72 0.14 0.54 +méandres méandre nom m p 0.72 3.72 0.58 3.18 +méandreux méandreux adj m s 0 0.07 0 0.07 +méandrine méandrine nom f s 0 0.07 0 0.07 +méat méat nom m s 0 0.14 0 0.14 +mécanicien mécanicien nom m s 5.81 7.5 5.38 5.34 +mécanicienne mécanicien nom f s 5.81 7.5 0.05 0 +mécaniciennes mécanicien nom f p 5.81 7.5 0.01 0 +mécaniciens mécanicien nom m p 5.81 7.5 0.38 2.16 +mécanique mécanique adj s 3.47 21.82 2.83 15.47 +mécaniquement mécaniquement adv 0.12 3.65 0.12 3.65 +mécaniques mécanique nom f p 3.75 15.14 0.93 2.7 +mécanisait mécaniser ver 0.29 0.88 0 0.14 ind:imp:3s; +mécanisation mécanisation nom f s 0.01 0.14 0.01 0.14 +mécanise mécaniser ver 0.29 0.88 0 0.07 ind:pre:3s; +mécaniser mécaniser ver 0.29 0.88 0.02 0.07 inf; +mécanisme mécanisme nom m s 4.59 10.34 3.79 6.62 +mécanismes mécanisme nom m p 4.59 10.34 0.8 3.72 +mécanistes mécaniste adj m p 0 0.07 0 0.07 +mécanisé mécaniser ver m s 0.29 0.88 0.04 0.47 par:pas; +mécanisée mécaniser ver f s 0.29 0.88 0.2 0.14 par:pas; +mécanisées mécaniser ver f p 0.29 0.88 0.01 0 par:pas; +mécanisés mécaniser ver m p 0.29 0.88 0.02 0 par:pas; +mécano mécano nom m s 2.5 4.05 1.68 3.45 +mécanographiques mécanographique adj p 0 0.07 0 0.07 +mécanos mécano nom m p 2.5 4.05 0.82 0.61 +méchait mécher ver 0.77 0.61 0 0.07 ind:imp:3s; +méchamment méchamment adv 2.04 6.42 2.04 6.42 +méchanceté méchanceté nom f s 4.13 12.97 3.38 11.22 +méchancetés méchanceté nom f p 4.13 12.97 0.75 1.76 +méchant méchant adj m s 53.37 34.05 30.23 16.01 +méchante méchant adj f s 53.37 34.05 14.73 9.12 +méchantes méchant adj f p 53.37 34.05 1.73 1.62 +méchants méchant nom m p 14.82 6.89 7.21 3.92 +mécher mécher ver 0.77 0.61 0.01 0 inf; +méchoui méchoui nom m s 0.04 0.47 0.03 0.41 +méchouis méchoui nom m p 0.04 0.47 0.01 0.07 +mécompte mécompte nom m s 0 0.81 0 0.27 +mécomptes mécompte nom m p 0 0.81 0 0.54 +méconduite méconduite nom f s 0.01 0 0.01 0 +méconium méconium nom m s 0.03 0 0.03 0 +méconnais méconnaître ver 0.27 4.93 0.1 0.27 ind:pre:1s;ind:pre:2s; +méconnaissable méconnaissable adj s 1.82 6.22 1.53 4.86 +méconnaissables méconnaissable adj p 1.82 6.22 0.29 1.35 +méconnaissais méconnaître ver 0.27 4.93 0 0.2 ind:imp:1s; +méconnaissance méconnaissance nom f s 0.03 0.81 0.03 0.81 +méconnaissant méconnaître ver 0.27 4.93 0 0.14 par:pre; +méconnaisse méconnaître ver 0.27 4.93 0 0.27 sub:pre:1s;sub:pre:3s; +méconnaissent méconnaître ver 0.27 4.93 0.01 0.14 ind:pre:3p; +méconnaîtra méconnaître ver 0.27 4.93 0 0.07 ind:fut:3s; +méconnaître méconnaître ver 0.27 4.93 0.1 2.23 inf; +méconnu méconnu adj m s 0.26 2.16 0.17 1.01 +méconnue méconnaître ver f s 0.27 4.93 0.05 0.41 par:pas; +méconnues méconnaître ver f p 0.27 4.93 0 0.2 par:pas; +méconnus méconnu adj m p 0.26 2.16 0.06 0.54 +mécontent mécontent adj m s 3.04 9.53 1.54 6.96 +mécontenta mécontenter ver 0.2 0.81 0 0.07 ind:pas:3s; +mécontentait mécontenter ver 0.2 0.81 0 0.07 ind:imp:3s; +mécontente mécontent adj f s 3.04 9.53 0.5 1.42 +mécontentement mécontentement nom m s 1.62 4.05 1.6 3.58 +mécontentements mécontentement nom m p 1.62 4.05 0.02 0.47 +mécontenter mécontenter ver 0.2 0.81 0.03 0.34 inf; +mécontentes mécontent adj f p 3.04 9.53 0.04 0.27 +mécontents mécontent adj m p 3.04 9.53 0.96 0.88 +mécontenté mécontenter ver m s 0.2 0.81 0.14 0.07 par:pas; +mécontentés mécontenter ver m p 0.2 0.81 0 0.07 par:pas; +mécru mécroire ver m s 0 0.07 0 0.07 par:pas; +mécréance mécréance nom f s 0 0.2 0 0.2 +mécréant mécréant nom m s 1.41 1.35 1.09 0.81 +mécréante mécréant adj f s 0.37 0.47 0.14 0 +mécréants mécréant nom m p 1.41 1.35 0.31 0.54 +mécène mécène nom m s 0.82 1.89 0.69 1.49 +mécènes mécène nom m p 0.82 1.89 0.14 0.41 +mécénat mécénat nom m s 0.04 0 0.04 0 +médaille médaille nom f s 16.32 16.08 12.44 9.53 +médailles médaille nom f p 16.32 16.08 3.89 6.55 +médailleurs médailleur nom m p 0 0.07 0 0.07 +médaillon médaillon nom m s 1.77 3.65 1.44 2.16 +médaillons médaillon nom m p 1.77 3.65 0.33 1.49 +médaillé médaillé nom m s 0.24 0.2 0.24 0.14 +médaillée médailler ver f s 0.13 0.07 0.02 0 par:pas; +médecin médecin nom m s 140.19 75.61 112.35 60.68 +médecin_chef médecin_chef nom m s 0.56 2.09 0.56 2.09 +médecin_conseil médecin_conseil nom m s 0.01 0 0.01 0 +médecin_général médecin_général nom m s 0.01 0.2 0.01 0.2 +médecin_major médecin_major nom m s 0.7 0.14 0.7 0.14 +médecine médecine nom f s 23.51 12.43 23.29 12.36 +médecine_ball médecine_ball nom m s 0.01 0 0.01 0 +médecines médecine nom f p 23.51 12.43 0.22 0.07 +médecins médecin nom m p 140.19 75.61 27.84 14.93 +média média nom m s 10.23 1.22 0.77 0.07 +médian médian adj m s 0.29 2.5 0.04 0.41 +médiane médian adj f s 0.29 2.5 0.21 1.96 +médianes médian adj f p 0.29 2.5 0.02 0.14 +médianoche médianoche nom m s 0 0.47 0 0.47 +médians médian adj m p 0.29 2.5 0.01 0 +médias média nom m p 10.23 1.22 9.46 1.15 +médiascope médiascope nom m s 0.14 0 0.14 0 +médiastin médiastin nom m s 0.2 0 0.2 0 +médiateur médiateur nom m s 0.6 0.41 0.41 0.2 +médiateurs médiateur nom m p 0.6 0.41 0.08 0.07 +médiation médiation nom f s 0.46 0.74 0.46 0.74 +médiatique médiatique adj s 1.72 0.61 1.61 0.41 +médiatiques médiatique adj p 1.72 0.61 0.11 0.2 +médiatisant médiatiser ver 0.36 0 0.01 0 par:pre; +médiatisation médiatisation nom f s 0.23 0 0.23 0 +médiatisé médiatiser ver m s 0.36 0 0.12 0 par:pas; +médiatisée médiatiser ver f s 0.36 0 0.21 0 par:pas; +médiatisées médiatiser ver f p 0.36 0 0.01 0 par:pas; +médiatisés médiatiser ver m p 0.36 0 0.01 0 par:pas; +médiator médiator nom m s 0.09 0 0.09 0 +médiatrice médiateur nom f s 0.6 0.41 0.12 0.07 +médiatrices médiateur nom f p 0.6 0.41 0 0.07 +médical médical adj m s 31.48 11.89 13.65 4.8 +médicale médical adj f s 31.48 11.89 10.41 3.85 +médicalement médicalement adv 1.03 0.61 1.03 0.61 +médicales médical adj f p 31.48 11.89 2.81 1.76 +médicalisation médicalisation nom f s 0.01 0 0.01 0 +médicalisé médicaliser ver m s 0.04 0.07 0.04 0 par:pas; +médicalisée médicaliser ver f s 0.04 0.07 0.01 0.07 par:pas; +médicament médicament nom m s 41.82 12.57 12.03 4.12 +médicamentait médicamenter ver 0.03 0.14 0 0.07 ind:imp:3s; +médicamentation médicamentation nom f s 0.04 0.07 0.04 0.07 +médicamenter médicamenter ver 0.03 0.14 0.02 0.07 inf; +médicamenteuse médicamenteux adj f s 0.1 0.07 0.07 0 +médicamenteux médicamenteux adj m 0.1 0.07 0.02 0.07 +médicaments médicament nom m p 41.82 12.57 29.8 8.45 +médicamenté médicamenter ver m s 0.03 0.14 0.01 0 par:pas; +médicastre médicastre nom m s 0 0.41 0 0.14 +médicastres médicastre nom m p 0 0.41 0 0.27 +médication médication nom f s 0.23 0.27 0.22 0.07 +médications médication nom f p 0.23 0.27 0.01 0.2 +médicaux médical adj m p 31.48 11.89 4.62 1.49 +médicinal médicinal adj m s 0.85 0.54 0.23 0 +médicinale médicinal adj f s 0.85 0.54 0.1 0.07 +médicinales médicinal adj f p 0.85 0.54 0.52 0.41 +médicinaux médicinal adj m p 0.85 0.54 0.01 0.07 +médicine médiciner ver 0.07 0 0.07 0 ind:pre:1s;ind:pre:3s; +médico_légal médico_légal adj m s 1.06 0.54 0.63 0.41 +médico_légal médico_légal adj f s 1.06 0.54 0.25 0.14 +médico_légal médico_légal adj f p 1.06 0.54 0.13 0 +médico_légal médico_légal adj m p 1.06 0.54 0.05 0 +médico_psychologique médico_psychologique adj m s 0.01 0 0.01 0 +médico_social médico_social adj m s 0.01 0.07 0.01 0.07 +médina médina nom f s 0.37 1.28 0.37 1.08 +médinas médina nom f p 0.37 1.28 0 0.2 +médiocre médiocre adj s 3.36 15.88 2.59 11.89 +médiocrement médiocrement adv 0.28 2.43 0.28 2.43 +médiocres médiocre adj p 3.36 15.88 0.77 3.99 +médiocrité médiocrité nom f s 2.04 5.54 2.02 5.34 +médiocrités médiocrité nom f p 2.04 5.54 0.02 0.2 +médire médire ver 0.35 1.15 0.11 0.41 inf; +médis médire ver 0.35 1.15 0.02 0.07 imp:pre:2s;ind:pre:2s; +médisaient médire ver 0.35 1.15 0 0.07 ind:imp:3p; +médisait médire ver 0.35 1.15 0.01 0.07 ind:imp:3s; +médisance médisance nom f s 0.13 1.62 0.04 0.88 +médisances médisance nom f p 0.13 1.62 0.09 0.74 +médisant médisant adj m s 0.06 0.14 0.04 0.07 +médisante médisant adj f s 0.06 0.14 0.02 0.07 +médisants médisant nom m p 0.17 0.68 0.16 0.47 +médise médire ver 0.35 1.15 0 0.07 sub:pre:3s; +médisent médire ver 0.35 1.15 0 0.2 ind:pre:3p; +médisez médire ver 0.35 1.15 0.02 0 imp:pre:2p; +médisons médire ver 0.35 1.15 0 0.14 imp:pre:1p;ind:pre:1p; +médit médire ver m s 0.35 1.15 0.17 0.14 ind:pre:3s;par:pas; +médita méditer ver 5.49 14.86 0.01 0.81 ind:pas:3s; +méditai méditer ver 5.49 14.86 0 0.14 ind:pas:1s; +méditaient méditer ver 5.49 14.86 0.01 0.47 ind:imp:3p; +méditais méditer ver 5.49 14.86 0.19 0.54 ind:imp:1s;ind:imp:2s; +méditait méditer ver 5.49 14.86 0.12 2.5 ind:imp:3s; +méditant méditer ver 5.49 14.86 0.07 1.22 par:pre; +méditatif méditatif adj m s 0.2 4.59 0.08 2.36 +méditatifs méditatif adj m p 0.2 4.59 0 0.74 +méditation méditation nom f s 3.14 10.47 2.72 7.5 +méditations méditation nom f p 3.14 10.47 0.42 2.97 +méditative méditatif adj f s 0.2 4.59 0.12 1.28 +méditativement méditativement adv 0 0.34 0 0.34 +méditatives méditatif adj f p 0.2 4.59 0 0.2 +médite méditer ver 5.49 14.86 0.68 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +méditent méditer ver 5.49 14.86 0.28 0.41 ind:pre:3p; +méditer méditer ver 5.49 14.86 2.44 4.8 inf; +méditera méditer ver 5.49 14.86 0.03 0.07 ind:fut:3s; +méditerait méditer ver 5.49 14.86 0 0.07 cnd:pre:3s; +méditeras méditer ver 5.49 14.86 0.01 0 ind:fut:2s; +méditerranée méditerrané adj f s 0.04 0.95 0.04 0.95 +méditerranéen méditerranéen adj m s 0.74 5.34 0.08 2.64 +méditerranéenne méditerranéen adj f s 0.74 5.34 0.33 1.49 +méditerranéennes méditerranéenne nom f p 0.03 0.14 0.03 0.14 +méditerranéens méditerranéen nom m p 0.45 0.27 0.45 0.07 +médites méditer ver 5.49 14.86 0.31 0.07 ind:pre:2s; +méditez méditer ver 5.49 14.86 0.56 0.27 imp:pre:2p;ind:pre:2p; +méditiez méditer ver 5.49 14.86 0.02 0 ind:imp:2p; +méditons méditer ver 5.49 14.86 0.07 0 imp:pre:1p;ind:pre:1p; +méditèrent méditer ver 5.49 14.86 0.01 0.07 ind:pas:3p; +médité méditer ver m s 5.49 14.86 0.67 1.35 par:pas; +méditée méditer ver f s 5.49 14.86 0.01 0.27 par:pas; +méditées méditer ver f p 5.49 14.86 0 0.14 par:pas; +médités méditer ver m p 5.49 14.86 0 0.14 par:pas; +médium médium nom m s 6.07 1.82 4.97 1.08 +médiumnique médiumnique adj s 0.21 0.14 0.11 0.14 +médiumniques médiumnique adj p 0.21 0.14 0.1 0 +médiumnité médiumnité nom f s 0.03 0 0.03 0 +médiums médium nom m p 6.07 1.82 1.1 0.74 +médius médius nom m 0.16 1.69 0.16 1.69 +médiéval médiéval adj m s 1.66 4.26 0.7 1.15 +médiévale médiéval adj f s 1.66 4.26 0.5 1.62 +médiévales médiéval adj f p 1.66 4.26 0.42 0.88 +médiévaux médiéval adj m p 1.66 4.26 0.04 0.61 +médiéviste médiéviste nom s 0 0.2 0 0.07 +médiévistes médiéviste nom p 0 0.2 0 0.14 +médoc médoc nom m s 1.48 1.35 0.19 0.14 +médocs médoc nom m p 1.48 1.35 1.29 1.22 +médulla médulla nom f s 0.01 0 0.01 0 +médullaire médullaire adj s 0.07 0 0.07 0 +médusa méduser ver 0.48 1.96 0.1 0.14 ind:pas:3s; +médusait méduser ver 0.48 1.96 0 0.14 ind:imp:3s; +médusant méduser ver 0.48 1.96 0 0.07 par:pre; +méduse méduse nom f s 1.5 3.92 0.66 1.42 +médusent méduser ver 0.48 1.96 0 0.07 ind:pre:3p; +méduser méduser ver 0.48 1.96 0.01 0 inf; +méduses méduse nom f p 1.5 3.92 0.84 2.5 +médusé méduser ver m s 0.48 1.96 0.15 0.47 par:pas; +médusée méduser ver f s 0.48 1.96 0 0.41 par:pas; +médusées médusé adj f p 0.02 1.96 0 0.14 +médusés méduser ver m p 0.48 1.96 0.21 0.61 par:pas; +méfait méfait nom m s 1.85 2.64 0.46 0.74 +méfaits méfait nom m p 1.85 2.64 1.39 1.89 +méfiaient méfier ver 26.68 35.95 0.03 0.88 ind:imp:3p; +méfiais méfier ver 26.68 35.95 0.29 1.42 ind:imp:1s;ind:imp:2s; +méfiait méfier ver 26.68 35.95 0.16 4.05 ind:imp:3s; +méfiance méfiance nom f s 2.21 19.46 2.18 18.99 +méfiances méfiance nom f p 2.21 19.46 0.02 0.47 +méfiant méfiant adj m s 3.64 9.93 2.07 5.14 +méfiante méfiant adj f s 3.64 9.93 1.12 2.36 +méfiantes méfiant adj f p 3.64 9.93 0.01 0.47 +méfiants méfiant adj m p 3.64 9.93 0.44 1.96 +méfie méfier ver 26.68 35.95 10.95 8.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +méfient méfier ver 26.68 35.95 1.31 1.15 ind:pre:3p; +méfier méfier ver 26.68 35.95 7.18 13.11 inf; +méfiera méfier ver 26.68 35.95 0.15 0.07 ind:fut:3s; +méfierai méfier ver 26.68 35.95 0.26 0.14 ind:fut:1s; +méfierais méfier ver 26.68 35.95 0.36 0.41 cnd:pre:1s; +méfierait méfier ver 26.68 35.95 0.3 0.07 cnd:pre:3s; +méfieront méfier ver 26.68 35.95 0.19 0 ind:fut:3p; +méfies méfier ver 26.68 35.95 0.61 0.2 ind:pre:2s; +méfiez méfier ver 26.68 35.95 3.63 2.7 imp:pre:2p;ind:pre:2p; +méfiions méfier ver 26.68 35.95 0 0.14 ind:imp:1p; +méfions méfier ver 26.68 35.95 0.73 0.34 imp:pre:1p;ind:pre:1p; +méfièrent méfier ver 26.68 35.95 0.02 0.07 ind:pas:3p; +méfié méfier ver m s 26.68 35.95 0.22 1.22 par:pas; +méfiée méfier ver f s 26.68 35.95 0.19 0.41 par:pas; +méfiés méfier ver m p 26.68 35.95 0.01 0.68 par:pas; +méforme méforme nom f s 0.02 0 0.02 0 +méga méga adj s 4.75 0.81 4.75 0.81 +mégacôlon mégacôlon nom m s 0.01 0 0.01 0 +mégahertz mégahertz nom m 0.05 0 0.05 0 +mégajoules mégajoule nom m p 0.02 0 0.02 0 +mégalithe mégalithe nom m s 0.01 0.14 0.01 0.14 +mégalithique mégalithique adj f s 0 0.14 0 0.14 +mégalo mégalo adj m s 0.34 0 0.32 0 +mégalomane mégalomane adj s 0.42 0.47 0.41 0.34 +mégalomanes mégalomane adj m p 0.42 0.47 0.01 0.14 +mégalomaniaque mégalomaniaque adj s 0.01 0.14 0.01 0.14 +mégalomanie mégalomanie nom f s 0.25 0.61 0.25 0.61 +mégalopole mégalopole nom f s 0.02 0 0.02 0 +mégalos mégalo nom p 0.03 0.2 0.03 0 +mégalosaure mégalosaure nom m s 0.01 0 0.01 0 +mégaphone mégaphone nom m s 0.89 0.61 0.58 0.54 +mégaphones mégaphone nom m p 0.89 0.61 0.3 0.07 +mégapole mégapole nom f s 0.01 0.27 0.01 0.27 +mégaron mégaron nom m s 0 0.14 0 0.14 +mégathériums mégathérium nom m p 0 0.07 0 0.07 +mégatonne mégatonne nom f s 0.39 0.14 0.04 0 +mégatonnes mégatonne nom f p 0.39 0.14 0.35 0.14 +mégawatts mégawatt nom m p 0 0.07 0 0.07 +mégisserie mégisserie nom f s 0 0.47 0 0.47 +mégissiers mégissier nom m p 0 0.07 0 0.07 +mégot mégot nom m s 2.66 17.3 1.2 9.53 +mégotage mégotage nom m s 0.01 0.2 0.01 0.14 +mégotages mégotage nom m p 0.01 0.2 0 0.07 +mégotaient mégoter ver 0.43 0.47 0 0.07 ind:imp:3p; +mégotait mégoter ver 0.43 0.47 0 0.07 ind:imp:3s; +mégote mégoter ver 0.43 0.47 0.02 0.14 ind:pre:3s; +mégoter mégoter ver 0.43 0.47 0.41 0.14 inf; +mégots mégot nom m p 2.66 17.3 1.46 7.77 +mégoté mégoter ver m s 0.43 0.47 0 0.07 par:pas; +mégère méger nom f s 0.83 0.81 0.83 0.54 +mégères mégère nom f p 0.18 0 0.18 0 +méhari méhari nom m s 0.14 0.41 0.14 0.41 +méhariste méhariste nom s 0.01 0.27 0 0.07 +méharistes méhariste nom p 0.01 0.27 0.01 0.2 +méiose méiose nom f s 0.04 0 0.04 0 +méjugement méjugement nom m s 0 0.07 0 0.07 +méjugez méjuger ver 0.05 0.07 0.03 0 imp:pre:2p;ind:pre:2p; +méjugé méjuger ver m s 0.05 0.07 0.01 0 par:pas; +méjugés méjuger ver m p 0.05 0.07 0.01 0.07 par:pas; +mélancolie mélancolie nom f s 2.6 21.01 2.6 20.68 +mélancolies mélancolie nom f p 2.6 21.01 0 0.34 +mélancolieux mélancolieux adj m 0 0.07 0 0.07 +mélancolique mélancolique adj s 4.41 16.62 4.1 13.45 +mélancoliquement mélancoliquement adv 0 1.82 0 1.82 +mélancoliques mélancolique adj p 4.41 16.62 0.31 3.18 +mélancoliser mélancoliser ver 0 0.07 0 0.07 inf; +mélange mélange nom m s 9.9 31.01 9.56 28.58 +mélangea mélanger ver 14.36 22.84 0.01 0.61 ind:pas:3s; +mélangeaient mélanger ver 14.36 22.84 0.01 1.76 ind:imp:3p; +mélangeais mélanger ver 14.36 22.84 0.04 0.2 ind:imp:1s;ind:imp:2s; +mélangeait mélanger ver 14.36 22.84 0.1 2.5 ind:imp:3s; +mélangeant mélanger ver 14.36 22.84 0.27 1.96 par:pre; +mélangent mélanger ver 14.36 22.84 0.95 1.28 ind:pre:3p; +mélangeons mélanger ver 14.36 22.84 0.31 0.2 imp:pre:1p;ind:pre:1p; +mélanger mélanger ver 14.36 22.84 4.46 3.18 inf;; +mélangera mélanger ver 14.36 22.84 0.17 0.07 ind:fut:3s; +mélangerai mélanger ver 14.36 22.84 0.01 0 ind:fut:1s; +mélangeraient mélanger ver 14.36 22.84 0 0.07 cnd:pre:3p; +mélanges mélanger ver 14.36 22.84 0.88 0.47 ind:pre:2s;sub:pre:2s; +mélangeur mélangeur nom m s 0.05 0.2 0.05 0.14 +mélangeurs mélangeur nom m p 0.05 0.2 0 0.07 +mélangez mélanger ver 14.36 22.84 0.94 0.34 imp:pre:2p;ind:pre:2p; +mélangions mélanger ver 14.36 22.84 0 0.14 ind:imp:1p; +mélangèrent mélanger ver 14.36 22.84 0 0.2 ind:pas:3p; +mélangé mélanger ver m s 14.36 22.84 2.08 2.5 par:pas; +mélangée mélanger ver f s 14.36 22.84 0.24 1.42 par:pas; +mélangées mélangé adj f p 1.22 2.97 0.31 0.74 +mélangés mélanger ver m p 14.36 22.84 0.51 1.08 par:pas; +mélanine mélanine nom f s 0.04 0 0.04 0 +mélanome mélanome nom m s 0.52 0 0.42 0 +mélanomes mélanome nom m p 0.52 0 0.09 0 +mélanésiennes mélanésien adj f p 0.01 0 0.01 0 +mélasse mélasse nom f s 1.31 1.42 1.31 1.42 +mélatonine mélatonine nom f s 0.11 0 0.11 0 +méli_mélo méli_mélo nom m s 0.39 0.81 0.39 0.68 +mélilot mélilot nom m s 0 0.07 0 0.07 +mélinite mélinite nom f s 0 0.14 0 0.14 +méli_mélo méli_mélo nom m p 0.39 0.81 0 0.14 +mélisse mélisse nom f s 0 0.34 0 0.34 +mélo mélo nom m s 0.89 1.08 0.84 0.95 +mélodie mélodie nom f s 4.08 7.77 3.61 5.95 +mélodies mélodie nom f p 4.08 7.77 0.47 1.82 +mélodieuse mélodieux adj f s 0.49 2.97 0.11 0.95 +mélodieusement mélodieusement adv 0.01 0.07 0.01 0.07 +mélodieuses mélodieux adj f p 0.49 2.97 0.01 0.14 +mélodieux mélodieux adj m 0.49 2.97 0.37 1.89 +mélodique mélodique adj s 0.06 0.47 0.03 0.34 +mélodiques mélodique adj p 0.06 0.47 0.03 0.14 +mélodramatique mélodramatique adj s 0.64 0.68 0.51 0.68 +mélodramatiques mélodramatique adj p 0.64 0.68 0.13 0 +mélodrame mélodrame nom m s 1.09 1.49 1.04 1.35 +mélodrames mélodrame nom m p 1.09 1.49 0.05 0.14 +mélomane mélomane adj m s 0.21 0.54 0.21 0.54 +mélomanes mélomane nom p 0.44 0.81 0.27 0.27 +mélopée mélopée nom f s 0.02 3.51 0.01 2.84 +mélopées mélopée nom f p 0.02 3.51 0.01 0.68 +mélos mélo nom m p 0.89 1.08 0.05 0.14 +mélèze mélèze nom m s 0.04 1.08 0.03 0.41 +mélèzes mélèze nom m p 0.04 1.08 0.01 0.68 +mémentos mémento nom m p 0 0.07 0 0.07 +mémo mémo nom m s 3.21 0.07 2.72 0 +mémoire mémoire nom s 60.87 110.88 56.6 105.74 +mémoires mémoire nom p 60.87 110.88 4.27 5.14 +mémorabilité mémorabilité nom f s 0 0.07 0 0.07 +mémorable mémorable adj s 2.23 5.34 2.04 4.26 +mémorables mémorable adj p 2.23 5.34 0.19 1.08 +mémorandum mémorandum nom m s 0.1 2.91 0.09 2.91 +mémorandums mémorandum nom m p 0.1 2.91 0.01 0 +mémorial mémorial nom m s 0.81 0.41 0.8 0.34 +mémorialiste mémorialiste nom s 0 0.54 0 0.34 +mémorialistes mémorialiste nom p 0 0.54 0 0.2 +mémoriaux mémorial nom m p 0.81 0.41 0.01 0.07 +mémoriel mémoriel adj m s 0.18 0.07 0.07 0 +mémorielle mémoriel adj f s 0.18 0.07 0.06 0 +mémoriels mémoriel adj m p 0.18 0.07 0.04 0.07 +mémorisables mémorisable adj m p 0 0.07 0 0.07 +mémorisaient mémoriser ver 2.57 0.41 0 0.07 ind:imp:3p; +mémorisait mémoriser ver 2.57 0.41 0.02 0 ind:imp:3s; +mémorisation mémorisation nom f s 0.02 0 0.02 0 +mémorise mémoriser ver 2.57 0.41 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mémorisent mémoriser ver 2.57 0.41 0.03 0 ind:pre:3p; +mémoriser mémoriser ver 2.57 0.41 1.3 0.14 inf; +mémoriserai mémoriser ver 2.57 0.41 0.03 0 ind:fut:1s; +mémoriserais mémoriser ver 2.57 0.41 0.01 0 cnd:pre:1s; +mémorisez mémoriser ver 2.57 0.41 0.27 0 imp:pre:2p;ind:pre:2p; +mémorisiez mémoriser ver 2.57 0.41 0.02 0 ind:imp:2p; +mémorisé mémoriser ver m s 2.57 0.41 0.5 0 par:pas; +mémorisée mémoriser ver f s 2.57 0.41 0.08 0 par:pas; +mémorisées mémoriser ver f p 2.57 0.41 0.01 0 par:pas; +mémorisés mémoriser ver m p 2.57 0.41 0.07 0.14 par:pas; +mémos mémo nom m p 3.21 0.07 0.49 0.07 +mémère mémère nom f s 1.03 5.34 1 3.78 +mémères mémère nom f p 1.03 5.34 0.04 1.55 +mémé mémé nom f s 8.21 35.34 8.15 34.39 +mémés mémé nom f p 8.21 35.34 0.06 0.95 +ménade ménade nom f s 0.01 0.2 0.01 0.14 +ménades ménade nom f p 0.01 0.2 0 0.07 +ménage ménage nom m s 29.46 32.91 27.55 29.26 +ménagea ménager ver 5.12 23.65 0.01 0.41 ind:pas:3s; +ménageaient ménager ver 5.12 23.65 0.01 0.95 ind:imp:3p; +ménageais ménager ver 5.12 23.65 0.14 0.47 ind:imp:1s; +ménageait ménager ver 5.12 23.65 0.13 1.82 ind:imp:3s; +ménageant ménager ver 5.12 23.65 0.14 1.62 par:pre; +ménagement ménagement nom m s 0.45 5.2 0.42 3.11 +ménagements ménagement nom m p 0.45 5.2 0.03 2.09 +ménagent ménager ver 5.12 23.65 0.16 0.54 ind:pre:3p; +ménager ménager ver 5.12 23.65 1.73 8.45 inf;; +ménagera ménager ver 5.12 23.65 0.01 0.14 ind:fut:3s; +ménagerai ménager ver 5.12 23.65 0.01 0.07 ind:fut:1s; +ménagerait ménager ver 5.12 23.65 0 0.27 cnd:pre:3s; +ménageras ménager ver 5.12 23.65 0.01 0 ind:fut:2s; +ménagerie ménagerie nom f s 0.56 2.23 0.54 2.09 +ménageries ménagerie nom f p 0.56 2.23 0.02 0.14 +ménagers ménager adj m p 2.87 9.12 1.11 1.76 +ménages ménage nom m p 29.46 32.91 1.91 3.65 +ménagez ménager ver 5.12 23.65 0.83 0.41 imp:pre:2p;ind:pre:2p; +ménageât ménager ver 5.12 23.65 0 0.34 sub:imp:3s; +ménagiez ménager ver 5.12 23.65 0.01 0.07 ind:imp:2p; +ménagions ménager ver 5.12 23.65 0 0.07 ind:imp:1p; +ménagère ménager nom f s 2.57 8.72 1.57 4.05 +ménagèrent ménager ver 5.12 23.65 0 0.14 ind:pas:3p; +ménagères ménager nom f p 2.57 8.72 0.95 4.53 +ménagé ménager ver m s 5.12 23.65 0.43 2.91 par:pas; +ménagée ménager ver f s 5.12 23.65 0.02 1.49 par:pas; +ménagées ménager ver f p 5.12 23.65 0 0.47 par:pas; +ménagés ménager ver m p 5.12 23.65 0.01 0.41 par:pas; +ménesse ménesse nom f s 0 0.07 0 0.07 +ménestrel ménestrel nom m s 0.43 0.14 0.28 0 +ménestrels ménestrel nom m p 0.43 0.14 0.14 0.14 +méninges méninge nom f p 1.08 2.7 1.08 2.7 +méningiome méningiome nom m s 0.01 0 0.01 0 +méningite méningite nom f s 0.99 0.81 0.96 0.81 +méningites méningite nom f p 0.99 0.81 0.03 0 +méningocoque méningocoque nom m s 0.01 0 0.01 0 +méningée méningé adj f s 0.04 0.07 0.04 0.07 +ménisque ménisque nom m s 0.39 0.41 0.28 0.27 +ménisques ménisque nom m p 0.39 0.41 0.1 0.14 +ménopause ménopause nom f s 0.83 1.01 0.83 1.01 +ménopausé ménopausé adj m s 0.15 0.14 0.01 0 +ménopausée ménopausé adj f s 0.15 0.14 0.1 0.14 +ménopausées ménopausé adj f p 0.15 0.14 0.04 0 +méphistophélique méphistophélique adj s 0.01 0.41 0.01 0.27 +méphistophéliques méphistophélique adj p 0.01 0.41 0 0.14 +méphitique méphitique adj f s 0.06 0.68 0.04 0.27 +méphitiques méphitique adj p 0.06 0.68 0.01 0.41 +méplat méplat nom m s 0 0.88 0 0.27 +méplats méplat nom m p 0 0.88 0 0.61 +méprenais méprendre ver 4.7 6.15 0 0.07 ind:imp:1s; +méprenait méprendre ver 4.7 6.15 0 0.14 ind:imp:3s; +méprenant méprendre ver 4.7 6.15 0 0.41 par:pre; +méprend méprendre ver 4.7 6.15 0.08 0.34 ind:pre:3s; +méprendre méprendre ver 4.7 6.15 0.27 2.09 inf; +méprendriez méprendre ver 4.7 6.15 0 0.07 cnd:pre:2p; +méprends méprendre ver 4.7 6.15 1.15 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +méprenez méprendre ver 4.7 6.15 2.51 0.27 imp:pre:2p;ind:pre:2p; +mépreniez méprendre ver 4.7 6.15 0.04 0 ind:imp:2p; +méprenne méprendre ver 4.7 6.15 0.04 0.27 sub:pre:3s; +méprennent méprendre ver 4.7 6.15 0.09 0 ind:pre:3p; +mépris mépris nom m 7.39 36.55 7.39 36.55 +méprisa mépriser ver 15.05 27.57 0.2 0.27 ind:pas:3s; +méprisable méprisable adj s 1.91 2.84 1.41 2.09 +méprisables méprisable adj p 1.91 2.84 0.5 0.74 +méprisai mépriser ver 15.05 27.57 0 0.14 ind:pas:1s; +méprisaient mépriser ver 15.05 27.57 0.23 1.22 ind:imp:3p; +méprisais mépriser ver 15.05 27.57 0.13 1.28 ind:imp:1s;ind:imp:2s; +méprisait mépriser ver 15.05 27.57 0.39 5.27 ind:imp:3s; +méprisamment méprisamment adv 0.01 0 0.01 0 +méprisant méprisant adj m s 0.63 9.86 0.4 4.8 +méprisante méprisant adj f s 0.63 9.86 0.19 3.65 +méprisantes méprisant adj f p 0.63 9.86 0.02 0.2 +méprisants méprisant adj m p 0.63 9.86 0.02 1.22 +méprise mépriser ver 15.05 27.57 6.43 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +méprisent mépriser ver 15.05 27.57 0.73 1.15 ind:pre:3p; +mépriser mépriser ver 15.05 27.57 1.76 4.93 inf; +méprisera mépriser ver 15.05 27.57 0.42 0.07 ind:fut:3s; +mépriserai mépriser ver 15.05 27.57 0.04 0 ind:fut:1s; +mépriseraient mépriser ver 15.05 27.57 0.01 0 cnd:pre:3p; +mépriserais mépriser ver 15.05 27.57 0.05 0.14 cnd:pre:1s;cnd:pre:2s; +mépriserait mépriser ver 15.05 27.57 0.02 0.2 cnd:pre:3s; +mépriseras mépriser ver 15.05 27.57 0.01 0.07 ind:fut:2s; +mépriseriez mépriser ver 15.05 27.57 0.1 0.07 cnd:pre:2p; +méprises mépriser ver 15.05 27.57 1.5 0.61 ind:pre:2s; +méprisez mépriser ver 15.05 27.57 0.79 0.34 imp:pre:2p;ind:pre:2p; +méprisiez mépriser ver 15.05 27.57 0.04 0 ind:imp:2p; +méprisions mépriser ver 15.05 27.57 0.01 0.47 ind:imp:1p;sub:pre:1p; +méprisons mépriser ver 15.05 27.57 0.29 0.14 imp:pre:1p;ind:pre:1p; +méprisé mépriser ver m s 15.05 27.57 0.85 2.77 par:pas; +méprisée mépriser ver f s 15.05 27.57 0.19 0.81 par:pas; +méprisées mépriser ver f p 15.05 27.57 0.3 0.47 par:pas; +méprisés mépriser ver m p 15.05 27.57 0.21 0.68 par:pas; +méprit méprendre ver 4.7 6.15 0 0.68 ind:pas:3s; +méprît méprendre ver 4.7 6.15 0 0.07 sub:imp:3s; +méridien méridien nom m s 0.25 0.95 0.22 0.47 +méridienne méridien adj f s 0.09 0.54 0.04 0.14 +méridiennes méridien adj f p 0.09 0.54 0 0.07 +méridiens méridien nom m p 0.25 0.95 0.01 0.14 +méridional méridional adj m s 1 2.43 0.32 1.15 +méridionale méridional adj f s 1 2.43 0.46 0.88 +méridionales méridional adj f p 1 2.43 0.11 0.34 +méridionaux méridional nom m p 0.78 0.47 0.55 0.07 +mérinos mérinos nom m 0.01 0.27 0.01 0.27 +mérita mériter ver 97.06 54.53 0 0.14 ind:pas:3s; +méritaient mériter ver 97.06 54.53 1.18 2.3 ind:imp:3p; +méritais mériter ver 97.06 54.53 2.12 1.76 ind:imp:1s;ind:imp:2s; +méritait mériter ver 97.06 54.53 6.08 9.93 ind:imp:3s; +méritant méritant adj m s 0.85 1.89 0.51 0.61 +méritante méritant adj f s 0.85 1.89 0.1 0.34 +méritantes méritant adj f p 0.85 1.89 0.04 0.41 +méritants méritant adj m p 0.85 1.89 0.21 0.54 +méritassent mériter ver 97.06 54.53 0 0.07 sub:imp:3p; +mérite mériter ver 97.06 54.53 39.92 13.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +méritent mériter ver 97.06 54.53 6.62 2.64 ind:pre:3p; +mériter mériter ver 97.06 54.53 6.73 6.42 inf; +méritera mériter ver 97.06 54.53 0.11 0.07 ind:fut:3s; +mériterai mériter ver 97.06 54.53 0.02 0.07 ind:fut:1s; +mériteraient mériter ver 97.06 54.53 0.31 0.47 cnd:pre:3p; +mériterais mériter ver 97.06 54.53 1.15 0.54 cnd:pre:1s;cnd:pre:2s; +mériterait mériter ver 97.06 54.53 1.29 1.82 cnd:pre:3s; +mériteras mériter ver 97.06 54.53 0.04 0.14 ind:fut:2s; +mériteriez mériter ver 97.06 54.53 0.31 0.2 cnd:pre:2p; +mériteront mériter ver 97.06 54.53 0.06 0 ind:fut:3p; +mérites mériter ver 97.06 54.53 11.08 1.15 ind:pre:2s;sub:pre:2s; +méritez mériter ver 97.06 54.53 5.25 1.01 imp:pre:2p;ind:pre:2p; +méritiez mériter ver 97.06 54.53 0.36 0.34 ind:imp:2p; +méritions mériter ver 97.06 54.53 0.04 0.2 ind:imp:1p; +méritocratie méritocratie nom f s 0.01 0 0.01 0 +méritoire méritoire adj s 0.47 2.09 0.36 1.62 +méritoires méritoire adj p 0.47 2.09 0.11 0.47 +méritons mériter ver 97.06 54.53 1.16 0.2 imp:pre:1p;ind:pre:1p; +méritât mériter ver 97.06 54.53 0 0.2 sub:imp:3s; +mérité mériter ver m s 97.06 54.53 11.34 8.31 par:pas; +méritée mériter ver f s 97.06 54.53 1.43 1.42 par:pas; +méritées mériter ver f p 97.06 54.53 0.28 0.47 par:pas; +mérités mériter ver m p 97.06 54.53 0.05 0.47 par:pas; +mérou mérou nom m s 0.99 0.14 0.99 0.14 +mérovingien mérovingien adj m s 0 0.41 0 0.07 +mérovingienne mérovingien adj f s 0 0.41 0 0.14 +mérovingiennes mérovingien adj f p 0 0.41 0 0.2 +mésalliance mésalliance nom f s 0.05 0.54 0.05 0.47 +mésalliances mésalliance nom f p 0.05 0.54 0 0.07 +mésallieras mésallier ver 0 0.27 0 0.14 ind:fut:2s; +mésallies mésallier ver 0 0.27 0 0.07 ind:pre:2s; +mésalliés mésallier ver m p 0 0.27 0 0.07 par:pas; +mésange mésange nom f s 0.42 7.64 0.19 6.89 +mésanges mésange nom f p 0.42 7.64 0.23 0.74 +mésaventure mésaventure nom f s 0.78 4.26 0.58 3.31 +mésaventures mésaventure nom f p 0.78 4.26 0.2 0.95 +mésencéphale mésencéphale nom m s 0.04 0 0.04 0 +mésentente mésentente nom f s 0.11 0.61 0.08 0.34 +mésententes mésentente nom f p 0.11 0.61 0.03 0.27 +mésentère mésentère nom m s 0.01 0 0.01 0 +mésentérique mésentérique adj s 0.11 0 0.11 0 +mésestimant mésestimer ver 0.1 0.2 0 0.07 par:pre; +mésestime mésestimer ver 0.1 0.2 0.03 0 imp:pre:2s;ind:pre:1s; +mésestimer mésestimer ver 0.1 0.2 0 0.07 inf; +mésestimez mésestimer ver 0.1 0.2 0.02 0.07 imp:pre:2p;ind:pre:2p; +mésestimé mésestimer ver m s 0.1 0.2 0.05 0 par:pas; +mésintelligence mésintelligence nom f s 0 0.07 0 0.07 +mésinterpréter mésinterpréter ver 0 0.14 0 0.14 inf; +mésodermiques mésodermique adj p 0.01 0 0.01 0 +mésomorphe mésomorphe adj m s 0.02 0 0.02 0 +mésomorphique mésomorphique adj s 0.01 0 0.01 0 +méson méson nom m s 0.04 0 0.03 0 +mésons méson nom m p 0.04 0 0.01 0 +mésopotamien mésopotamien adj m s 0.05 0 0.04 0 +mésopotamienne mésopotamienne nom f s 0 0.07 0 0.07 +mésopotamiens mésopotamien nom m p 0.03 0 0.03 0 +mésosphère mésosphère nom f s 0.02 0 0.02 0 +mésozoïque mésozoïque adj f s 0.04 0 0.04 0 +mésusage mésusage nom m s 0 0.07 0 0.07 +mésuser mésuser ver 0 0.07 0 0.07 inf; +méta méta nom m s 0.14 0.14 0.14 0.14 +métabolique métabolique adj s 0.28 0 0.28 0 +métaboliser métaboliser ver 0.02 0 0.02 0 inf; +métabolisme métabolisme nom m s 1.27 0.2 1.22 0.2 +métabolismes métabolisme nom m p 1.27 0.2 0.05 0 +métabolite métabolite nom m s 0.07 0 0.07 0 +métacarpe métacarpe nom m s 0.13 0 0.13 0 +métacarpien métacarpien nom m s 0.04 0 0.03 0 +métacarpiens métacarpien nom m p 0.04 0 0.01 0 +métairie métairie nom f s 0 1.15 0 0.74 +métairies métairie nom f p 0 1.15 0 0.41 +métal métal nom m s 14.36 44.73 12.16 41.82 +métallique métallique adj s 3.34 23.78 2.6 16.49 +métalliques métallique adj p 3.34 23.78 0.74 7.3 +métallisation métallisation nom f s 0.01 0 0.01 0 +métallise métalliser ver 0.62 1.15 0 0.07 ind:pre:3s; +métallisent métalliser ver 0.62 1.15 0 0.07 ind:pre:3p; +métallisé métalliser ver m s 0.62 1.15 0.48 0.68 par:pas; +métallisée métalliser ver f s 0.62 1.15 0.12 0.2 par:pas; +métallisées métalliser ver f p 0.62 1.15 0 0.07 par:pas; +métallisés métalliser ver m p 0.62 1.15 0.01 0.07 par:pas; +métallo métallo nom m s 0.02 1.08 0.02 0.47 +métallographie métallographie nom f s 0.04 0 0.04 0 +métallos métallo nom m p 0.02 1.08 0 0.61 +métallurgie métallurgie nom f s 0.16 0.47 0.16 0.47 +métallurgique métallurgique adj s 0.07 0.54 0.07 0.47 +métallurgiques métallurgique adj f p 0.07 0.54 0 0.07 +métallurgiste métallurgiste nom m s 0.27 0.34 0.23 0.07 +métallurgistes métallurgiste nom m p 0.27 0.34 0.04 0.27 +métamorphique métamorphique adj f s 0.01 0 0.01 0 +métamorphosa métamorphoser ver 0.94 9.26 0.02 0.2 ind:pas:3s; +métamorphosaient métamorphoser ver 0.94 9.26 0 0.27 ind:imp:3p; +métamorphosait métamorphoser ver 0.94 9.26 0 1.49 ind:imp:3s; +métamorphosant métamorphoser ver 0.94 9.26 0.1 0.27 par:pre; +métamorphose métamorphose nom f s 1.59 11.22 1.22 9.12 +métamorphosent métamorphoser ver 0.94 9.26 0 0.2 ind:pre:3p; +métamorphoser métamorphoser ver 0.94 9.26 0.37 1.69 inf; +métamorphoseraient métamorphoser ver 0.94 9.26 0 0.07 cnd:pre:3p; +métamorphoserait métamorphoser ver 0.94 9.26 0 0.07 cnd:pre:3s; +métamorphoses métamorphose nom f p 1.59 11.22 0.37 2.09 +métamorphosez métamorphoser ver 0.94 9.26 0 0.07 ind:pre:2p; +métamorphosions métamorphoser ver 0.94 9.26 0 0.07 ind:imp:1p; +métamorphosât métamorphoser ver 0.94 9.26 0 0.07 sub:imp:3s; +métamorphosèrent métamorphoser ver 0.94 9.26 0.01 0 ind:pas:3p; +métamorphosé métamorphoser ver m s 0.94 9.26 0.22 1.96 par:pas; +métamorphosée métamorphoser ver f s 0.94 9.26 0.11 1.08 par:pas; +métamorphosées métamorphoser ver f p 0.94 9.26 0 0.14 par:pas; +métamorphosés métamorphoser ver m p 0.94 9.26 0.01 0.47 par:pas; +métaphase métaphase nom f s 0.01 0 0.01 0 +métaphore métaphore nom f s 4.71 3.31 4.04 1.89 +métaphores métaphore nom f p 4.71 3.31 0.67 1.42 +métaphorique métaphorique adj s 0.27 0.2 0.26 0.2 +métaphoriquement métaphoriquement adv 0.51 0.07 0.51 0.07 +métaphoriques métaphorique adj p 0.27 0.2 0.01 0 +métaphysicien métaphysicien nom m s 0.03 0.47 0.02 0.14 +métaphysicienne métaphysicien nom f s 0.03 0.47 0 0.07 +métaphysiciens métaphysicien nom m p 0.03 0.47 0.01 0.27 +métaphysique métaphysique adj s 0.91 6.35 0.64 4.12 +métaphysiquement métaphysiquement adv 0.01 0.14 0.01 0.14 +métaphysiques métaphysique adj p 0.91 6.35 0.27 2.23 +métapsychique métapsychique adj s 0.11 0 0.11 0 +métapsychologie métapsychologie nom f s 0.01 0.07 0.01 0.07 +métapsychologique métapsychologique adj s 0 0.07 0 0.07 +métastase métastase nom f s 0.28 0.27 0.08 0.2 +métastases métastase nom f p 0.28 0.27 0.2 0.07 +métastasé métastaser ver m s 0.1 0.07 0.1 0.07 par:pas; +métastatique métastatique adj s 0.08 0 0.08 0 +métatarses métatarse nom m p 0.01 0 0.01 0 +métatarsienne métatarsien adj f s 0.03 0 0.03 0 +métaux métal nom m p 14.36 44.73 2.19 2.91 +métayage métayage nom m s 0.01 0.07 0.01 0.07 +métayer métayer nom m s 0.23 1.49 0.11 0.81 +métayers métayer nom m p 0.23 1.49 0.12 0.68 +métazoaires métazoaire nom m p 0 0.07 0 0.07 +métempsychose métempsychose nom f s 0 0.07 0 0.07 +métempsycose métempsycose nom f s 0.14 0.27 0.14 0.27 +méthacrylate méthacrylate nom m s 0.01 0 0.01 0 +méthadone méthadone nom f s 0.73 0 0.73 0 +méthanal méthanal nom m s 0.01 0 0.01 0 +méthane méthane nom m s 0.7 0.2 0.7 0.2 +méthanol méthanol nom m s 0.13 0 0.13 0 +méthode méthode nom f s 24.87 24.86 13.83 16.42 +méthodes méthode nom f p 24.87 24.86 11.04 8.45 +méthodique méthodique adj s 0.67 3.18 0.6 2.84 +méthodiquement méthodiquement adv 0.09 4.26 0.09 4.26 +méthodiques méthodique adj p 0.67 3.18 0.07 0.34 +méthodisme méthodisme nom m s 0 0.14 0 0.14 +méthodiste méthodiste adj s 0.2 0.2 0.15 0.14 +méthodistes méthodiste nom p 0.28 0.07 0.18 0.07 +méthodologie méthodologie nom f s 0.27 0 0.27 0 +méthodologique méthodologique adj f s 0.02 0.07 0.02 0.07 +méthyle méthyle nom m s 0.05 0 0.05 0 +méthylique méthylique adj s 0.01 0 0.01 0 +méthylène méthylène nom m s 0.05 0.34 0.05 0.34 +méthédrine méthédrine nom f s 0.09 0 0.09 0 +méticuleuse méticuleux adj f s 2.4 6.28 0.52 1.82 +méticuleusement méticuleusement adv 0.37 2.57 0.37 2.57 +méticuleuses méticuleux adj f p 2.4 6.28 0.09 0.34 +méticuleux méticuleux adj m 2.4 6.28 1.79 4.12 +méticulosité méticulosité nom f s 0 0.34 0 0.34 +métier métier nom m s 55.03 84.53 53.22 75.54 +métiers métier nom m p 55.03 84.53 1.81 8.99 +métingue métingue nom m s 0 0.14 0 0.14 +métis métis nom m 2.12 3.18 1.91 2.97 +métissage métissage nom m s 0.23 1.15 0.23 0.88 +métissages métissage nom m p 0.23 1.15 0 0.27 +métisse métis adj f s 0.56 0.95 0.19 0.34 +métisser métisser ver 0.4 0.34 0 0.07 inf; +métisses métis adj f p 0.56 0.95 0.04 0.2 +métissez métisser ver 0.4 0.34 0 0.07 imp:pre:2p; +métissé métisser ver m s 0.4 0.34 0.39 0.14 par:pas; +métissée métisser ver f s 0.4 0.34 0.01 0.07 par:pas; +métonymie métonymie nom f s 0 0.07 0 0.07 +métopes métope nom f p 0 0.07 0 0.07 +métra métrer ver 0.16 0.61 0.04 0 ind:pas:3s; +métrage métrage nom m s 0.91 1.69 0.69 1.08 +métrages métrage nom m p 0.91 1.69 0.22 0.61 +métras métrer ver 0.16 0.61 0.01 0 ind:pas:2s; +métreur métreur nom m s 0.01 0 0.01 0 +métrique métrique adj s 0.24 0.27 0.24 0.27 +métriques métrique nom f p 0.04 0.07 0.01 0 +métrite métrite nom f s 0 0.14 0 0.07 +métrites métrite nom f p 0 0.14 0 0.07 +métro métro nom m s 18.17 41.35 17.66 40 +métronome métronome nom m s 0.16 1.35 0.15 1.28 +métronomes métronome nom m p 0.16 1.35 0.01 0.07 +métropole métropole nom f s 1.17 10.74 0.95 10.34 +métropoles métropole nom f p 1.17 10.74 0.22 0.41 +métropolitain métropolitain adj m s 0.23 3.92 0.07 1.96 +métropolitaine métropolitain adj f s 0.23 3.92 0.11 1.08 +métropolitaines métropolitain adj f p 0.23 3.92 0.03 0.41 +métropolitains métropolitain adj m p 0.23 3.92 0.02 0.47 +métropolite métropolite nom m s 0 0.47 0 0.47 +métros métro nom m p 18.17 41.35 0.51 1.35 +métèque métèque nom s 1.26 4.19 0.64 2.91 +métèques métèque nom p 1.26 4.19 0.61 1.28 +météo météo nom f s 8.9 1.69 8.9 1.69 +météore météore nom m s 1.06 2.97 0.55 0.81 +météores météore nom m p 1.06 2.97 0.52 2.16 +météorique météorique adj s 0.05 0.14 0.05 0.14 +météoriquement météoriquement adv 0.01 0.07 0.01 0.07 +météorite météorite nom f s 4.87 0.61 2.05 0.47 +météorites météorite nom f p 4.87 0.61 2.82 0.14 +météoritique météoritique adj f s 0.01 0.07 0.01 0.07 +météorologie météorologie nom f s 0.13 1.08 0.13 1.08 +météorologique météorologique adj s 0.71 1.82 0.47 0.88 +météorologiques météorologique adj p 0.71 1.82 0.25 0.95 +météorologiste météorologiste nom s 0.05 0.07 0.05 0.07 +météorologue météorologue nom s 0.4 0.2 0.32 0 +météorologues météorologue nom p 0.4 0.2 0.08 0.2 +mévente mévente nom f s 0 0.27 0 0.27 +mézig mézig pro_per s 0 1.15 0 1.15 +mézigue mézigue pro_per s 0.02 2.84 0.02 2.84 +mêla mêler ver 53.84 112.64 0.04 2.5 ind:pas:3s; +mêlai mêler ver 53.84 112.64 0 0.54 ind:pas:1s; +mêlaient mêler ver 53.84 112.64 0.07 11.15 ind:imp:3p; +mêlais mêler ver 53.84 112.64 0.21 0.61 ind:imp:1s;ind:imp:2s; +mêlait mêler ver 53.84 112.64 0.14 13.31 ind:imp:3s; +mêlant mêler ver 53.84 112.64 0.7 4.86 par:pre; +mêlasse mêler ver 53.84 112.64 0 0.07 sub:imp:1s; +mêle mêler ver 53.84 112.64 18.97 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +mêle_tout mêle_tout nom m 0.01 0 0.01 0 +mêlent mêler ver 53.84 112.64 1.77 6.01 ind:pre:3p; +mêler mêler ver 53.84 112.64 11.24 17.23 inf;; +mêlera mêler ver 53.84 112.64 0.41 0.14 ind:fut:3s; +mêlerai mêler ver 53.84 112.64 0.3 0.2 ind:fut:1s; +mêleraient mêler ver 53.84 112.64 0.02 0.07 cnd:pre:3p; +mêlerais mêler ver 53.84 112.64 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +mêlerait mêler ver 53.84 112.64 0.16 0.07 cnd:pre:3s; +mêleront mêler ver 53.84 112.64 0.31 0.14 ind:fut:3p; +mêles mêler ver 53.84 112.64 3.03 0.68 ind:pre:2s; +mêlez mêler ver 53.84 112.64 4.26 0.88 imp:pre:2p;ind:pre:2p; +mêliez mêler ver 53.84 112.64 0.11 0.14 ind:imp:2p; +mêlions mêler ver 53.84 112.64 0.01 0.07 ind:imp:1p; +mêlons mêler ver 53.84 112.64 0.19 0.2 imp:pre:1p;ind:pre:1p; +mêlât mêler ver 53.84 112.64 0 0.47 sub:imp:3s; +mêlèrent mêler ver 53.84 112.64 0.01 1.22 ind:pas:3p; +mêlé mêler ver m s 53.84 112.64 7.4 13.65 par:pas; +mêlé_cass mêlé_cass nom m 0 0.2 0 0.2 +mêlé_casse mêlé_casse nom m 0 0.14 0 0.14 +mêlécasse mêlécasse nom m s 0 0.07 0 0.07 +mêlée mêler ver f s 53.84 112.64 2.98 11.89 par:pas; +mêlées mêler ver f p 53.84 112.64 0.23 6.76 par:pas; +mêlés mêler ver m p 53.84 112.64 1.12 8.72 par:pas; +même même pro_ind s 43.18 55.74 43.18 55.74 +mêmement mêmement adv 0.1 0.34 0.1 0.34 +mêmes mêmes pro_ind p 14.48 18.38 14.48 18.38 +mîmes mettre ver 1004.83 1083.72 0 1.42 ind:pas:1p; +mît mettre ver 1004.83 1083.72 0 3.51 sub:imp:3s; +môle môle nom s 1.6 3.92 1.6 3.45 +môles môle nom p 1.6 3.92 0 0.47 +môme môme nom s 28.15 61.08 18.88 37.03 +mômeries mômerie nom f p 0 0.14 0 0.14 +mômes môme nom p 28.15 61.08 9.28 24.05 +mû mouvoir ver m s 1.75 13.18 0.19 1.96 par:pas; +mûr mûr adj m s 9.89 19.73 3.6 8.31 +mûre mûr adj f s 9.89 19.73 2.98 4.8 +mûrement mûrement adv 0.4 0.34 0.4 0.34 +mûres mûr adj f p 9.89 19.73 2.04 2.7 +mûri mûrir ver m s 3.77 8.24 1.32 1.42 par:pas; +mûrie mûrir ver f s 3.77 8.24 0.21 0.54 par:pas; +mûrier mûrier nom m s 0.48 0.74 0.2 0.27 +mûriers mûrier nom m p 0.48 0.74 0.28 0.47 +mûries mûrir ver f p 3.77 8.24 0 0.2 par:pas; +mûrir mûrir ver 3.77 8.24 1.11 2.7 inf; +mûrira mûrir ver 3.77 8.24 0.16 0.07 ind:fut:3s; +mûriraient mûrir ver 3.77 8.24 0.01 0.07 cnd:pre:3p; +mûrirez mûrir ver 3.77 8.24 0 0.07 ind:fut:2p; +mûris mûrir ver m p 3.77 8.24 0.23 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +mûrissaient mûrir ver 3.77 8.24 0.14 0.27 ind:imp:3p; +mûrissait mûrir ver 3.77 8.24 0 0.74 ind:imp:3s; +mûrissant mûrir ver 3.77 8.24 0.02 0 par:pre; +mûrissante mûrissant adj f s 0.02 0.61 0 0.2 +mûrissantes mûrissant adj f p 0.02 0.61 0.01 0.14 +mûrissants mûrissant adj m p 0.02 0.61 0 0.14 +mûrisse mûrir ver 3.77 8.24 0.11 0.14 sub:pre:1s;sub:pre:3s; +mûrissement mûrissement nom m s 0.1 0.54 0.1 0.41 +mûrissements mûrissement nom m p 0.1 0.54 0 0.14 +mûrissent mûrir ver 3.77 8.24 0.15 0.61 ind:pre:3p; +mûrisseries mûrisserie nom f p 0 0.07 0 0.07 +mûrit mûrir ver 3.77 8.24 0.3 1.15 ind:pre:3s;ind:pas:3s; +mûron mûron nom m s 0 0.07 0 0.07 +mûrs mûr adj m p 9.89 19.73 1.27 3.92 +n ne adv_sup 22287.83 13841.89 70.36 5.68 +n_ n_ pro_per 0.18 0 0.18 0 +n_est_ce_pas n_est_ce_pas adv_sup 0.1 0 0.1 0 +na na ono 5.66 0.81 5.66 0.81 +nabab nabab nom m s 0.72 0.68 0.55 0.54 +nababs nabab nom m p 0.72 0.68 0.18 0.14 +nabi nabi nom m s 0.28 0 0.28 0 +nable nable nom m s 0.02 0 0.02 0 +nabot nabot nom m s 2.1 2.09 2.01 1.49 +nabote nabot nom f s 2.1 2.09 0 0.14 +nabots nabot nom m p 2.1 2.09 0.08 0.47 +nacarat nacarat nom m s 0 0.2 0 0.2 +nacelle nacelle nom f s 1.24 3.04 1.04 2.36 +nacelles nacelle nom f p 1.24 3.04 0.2 0.68 +nacra nacrer ver 0 1.62 0 0.07 ind:pas:3s; +nacraient nacrer ver 0 1.62 0 0.07 ind:imp:3p; +nacre nacre nom f s 0.58 5.34 0.58 5.2 +nacres nacre nom f p 0.58 5.34 0 0.14 +nacrure nacrure nom f s 0 0.14 0 0.14 +nacré nacré adj m s 0.38 3.24 0.05 1.15 +nacrée nacré adj f s 0.38 3.24 0.01 0.74 +nacrées nacré adj f p 0.38 3.24 0.04 0.74 +nacrés nacré adj m p 0.38 3.24 0.28 0.61 +nada nada adv 2.63 0.41 2.63 0.41 +nadir nadir nom m s 0.01 0.2 0.01 0.2 +naevus naevus nom m 0.03 0.14 0.03 0.14 +naga naga nom m 0.05 0 0.05 0 +nage nage nom f s 5.42 6.28 5.37 6.22 +nagea nager ver 30.36 25.68 0.03 1.15 ind:pas:3s; +nageai nager ver 30.36 25.68 0 0.2 ind:pas:1s; +nageaient nager ver 30.36 25.68 0.08 1.82 ind:imp:3p; +nageais nager ver 30.36 25.68 0.57 0.74 ind:imp:1s;ind:imp:2s; +nageait nager ver 30.36 25.68 0.62 3.58 ind:imp:3s; +nageant nager ver 30.36 25.68 0.95 2.3 par:pre; +nageante nageant adj f s 0.03 0.07 0 0.07 +nagent nager ver 30.36 25.68 1.24 1.01 ind:pre:3p; +nageoire nageoire nom f s 1.1 2.3 0.53 0.34 +nageoires nageoire nom f p 1.1 2.3 0.57 1.96 +nageons nager ver 30.36 25.68 0.07 0.2 imp:pre:1p;ind:pre:1p; +nager nager ver 30.36 25.68 18.71 9.32 inf; +nagera nager ver 30.36 25.68 0.15 0.07 ind:fut:3s; +nagerai nager ver 30.36 25.68 0.22 0 ind:fut:1s; +nageraient nager ver 30.36 25.68 0.01 0 cnd:pre:3p; +nagerais nager ver 30.36 25.68 0.02 0.07 cnd:pre:1s; +nagerait nager ver 30.36 25.68 0.02 0.2 cnd:pre:3s; +nageras nager ver 30.36 25.68 0.03 0.07 ind:fut:2s; +nagerez nager ver 30.36 25.68 0.01 0.14 ind:fut:2p; +nagerons nager ver 30.36 25.68 0.03 0 ind:fut:1p; +nageront nager ver 30.36 25.68 0.01 0 ind:fut:3p; +nages nager ver 30.36 25.68 0.58 0.14 ind:pre:2s; +nageur nageur nom m s 2.72 4.59 1.43 3.24 +nageurs nageur nom m p 2.72 4.59 0.75 0.95 +nageuse nageur nom f s 2.72 4.59 0.47 0.41 +nageuses nageur nom f p 2.72 4.59 0.07 0 +nagez nager ver 30.36 25.68 0.53 0.27 imp:pre:2p;ind:pre:2p; +nageât nager ver 30.36 25.68 0 0.07 sub:imp:3s; +nagiez nager ver 30.36 25.68 0.05 0.07 ind:imp:2p; +nagions nager ver 30.36 25.68 0.13 0.34 ind:imp:1p; +naguère naguère adv 1.16 23.72 1.16 23.72 +nagèrent nager ver 30.36 25.68 0 0.34 ind:pas:3p; +nagé nager ver m s 30.36 25.68 1.26 1.22 par:pas; +nain nain nom m s 13.9 8.99 9.08 6.69 +naine nain nom f s 13.9 8.99 0.63 0.61 +naines nain nom f p 13.9 8.99 0.03 0.07 +nains nain nom m p 13.9 8.99 4.17 1.62 +naira naira nom m s 0.03 0 0.03 0 +nais naître ver 116.11 119.32 0.57 0.27 ind:pre:1s;ind:pre:2s; +naissaient naître ver 116.11 119.32 0.16 3.85 ind:imp:3p; +naissain naissain nom m s 0 0.07 0 0.07 +naissais naître ver 116.11 119.32 0.01 0.07 ind:imp:1s; +naissait naître ver 116.11 119.32 0.24 7.57 ind:imp:3s; +naissance naissance nom f s 39.72 52.91 37.9 49.53 +naissances naissance nom f p 39.72 52.91 1.83 3.38 +naissant naître ver 116.11 119.32 0.42 0.88 par:pre; +naissante naissant adj f s 0.94 5.61 0.33 2.5 +naissantes naissant adj f p 0.94 5.61 0.34 0.68 +naissants naissant adj m p 0.94 5.61 0.01 0.27 +naisse naître ver 116.11 119.32 0.92 0.88 sub:pre:1s;sub:pre:3s; +naissent naître ver 116.11 119.32 3.82 3.58 ind:pre:3p; +naisses naître ver 116.11 119.32 0.03 0.14 sub:pre:2s; +naisseur naisseur adj m s 0.01 0 0.01 0 +naissez naître ver 116.11 119.32 0.06 0 imp:pre:2p;ind:pre:2p; +naissions naître ver 116.11 119.32 0.03 0.14 ind:imp:1p; +naissons naître ver 116.11 119.32 0.21 0.27 ind:pre:1p; +naja naja nom m s 0.02 0.41 0.02 0.34 +najas naja nom m p 0.02 0.41 0 0.07 +namibiens namibien nom m p 0.02 0 0.02 0 +nan nan nom m s 11.92 1.42 11.92 1.42 +nana nana nom f s 39.57 13.65 26.48 7.64 +nanan nanan nom m s 0.04 0.74 0.04 0.74 +nanar nanar nom m s 0 0.14 0 0.14 +nanard nanard nom m s 0.01 0.07 0.01 0.07 +nanas nana nom f p 39.57 13.65 13.09 6.01 +nancéiens nancéien adj m p 0 0.07 0 0.07 +nanisme nanisme nom m s 0.02 0.14 0.02 0.14 +nankin nankin nom m s 0.02 0.27 0.02 0.27 +nano nano adv 0.14 0.14 0.14 0.14 +nanomètre nanomètre nom m s 0.07 0 0.03 0 +nanomètres nanomètre nom m p 0.07 0 0.04 0 +nanoseconde nanoseconde nom f s 0.05 0 0.02 0 +nanosecondes nanoseconde nom f p 0.05 0 0.03 0 +nanotechnologie nanotechnologie nom f s 0.34 0 0.34 0 +nant nant nom m s 0.32 0.81 0.32 0.81 +nantais nantais adj m s 0 0.41 0 0.34 +nantaise nantaise nom f s 0.14 0 0.14 0 +nantaises nantais nom f p 0 0.34 0 0.07 +nanti nanti nom m s 0.44 1.62 0.17 0.14 +nantie nantir ver f s 0.11 1.96 0.05 0.61 par:pas; +nanties nantir ver f p 0.11 1.96 0 0.14 par:pas; +nantir nantir ver 0.11 1.96 0.01 0.2 inf; +nantis nanti nom m p 0.44 1.62 0.25 1.42 +nantissement nantissement nom m s 0.01 0.07 0.01 0.07 +nap nap adj m s 0.05 0 0.05 0 +napalm napalm nom m s 0.96 0.68 0.96 0.68 +napel napel nom m s 0.01 0 0.01 0 +naphtaline naphtaline nom f s 0.53 2.3 0.53 2.23 +naphtalines naphtaline nom f p 0.53 2.3 0 0.07 +naphtalène naphtalène nom m s 0.09 0 0.09 0 +naphte naphte nom m s 0.1 0.27 0.1 0.27 +napolitain napolitain adj m s 1.09 1.96 0.73 0.34 +napolitaine napolitain adj f s 1.09 1.96 0.21 0.74 +napolitaines napolitain adj f p 1.09 1.96 0.02 0.27 +napolitains napolitain nom m p 1.21 0.74 0.63 0.07 +napoléon napoléon nom m s 0.18 1.28 0.04 0.81 +napoléonien napoléonien adj m s 0.08 0.61 0.02 0.2 +napoléonienne napoléonien adj f s 0.08 0.61 0.01 0.2 +napoléoniennes napoléonien adj f p 0.08 0.61 0.04 0.14 +napoléoniens napoléonien adj m p 0.08 0.61 0.01 0.07 +napoléons napoléon nom m p 0.18 1.28 0.14 0.47 +nappa napper ver 0.31 1.49 0.22 0.2 ind:pas:3s; +nappage nappage nom m s 0.04 0 0.04 0 +nappaient napper ver 0.31 1.49 0 0.07 ind:imp:3p; +nappait napper ver 0.31 1.49 0 0.14 ind:imp:3s; +nappe nappe nom f s 4.34 25.68 3.01 18.18 +napper napper ver 0.31 1.49 0.01 0.07 inf; +napperon napperon nom m s 0.51 3.65 0.31 2.16 +napperons napperon nom m p 0.51 3.65 0.2 1.49 +nappes nappe nom f p 4.34 25.68 1.33 7.5 +nappé napper ver m s 0.31 1.49 0.04 0.41 par:pas; +nappée napper ver f s 0.31 1.49 0.01 0.2 par:pas; +nappées napper ver f p 0.31 1.49 0.01 0.2 par:pas; +nappés napper ver m p 0.31 1.49 0.02 0.14 par:pas; +naquirent naître ver 116.11 119.32 0.03 0.34 ind:pas:3p; +naquis naître ver 116.11 119.32 0.25 0.27 ind:pas:1s;ind:pas:2s; +naquisse naître ver 116.11 119.32 0 0.07 sub:imp:1s; +naquissent naître ver 116.11 119.32 0 0.07 sub:imp:3p; +naquit naître ver 116.11 119.32 1.4 3.18 ind:pas:3s; +naquît naître ver 116.11 119.32 0 0.2 sub:imp:3s; +narbonnais narbonnais adj m s 0 0.68 0 0.68 +narcisse narcisse nom m s 0.34 0.95 0.04 0.27 +narcisses narcisse nom m p 0.34 0.95 0.31 0.68 +narcissique narcissique adj s 1.16 0.88 0.88 0.61 +narcissiquement narcissiquement adv 0 0.07 0 0.07 +narcissiques narcissique adj p 1.16 0.88 0.27 0.27 +narcissisme narcissisme nom m s 1.18 1.15 1.18 1.15 +narcissiste narcissiste nom s 0.03 0 0.03 0 +narco_analyse narco_analyse nom f s 0.01 0 0.01 0 +narcolepsie narcolepsie nom f s 0.21 0 0.21 0 +narcoleptique narcoleptique adj s 0.14 0 0.14 0 +narcose narcose nom f s 0 0.14 0 0.14 +narcotique narcotique nom m s 1.28 0.47 0.32 0.34 +narcotiques narcotique nom m p 1.28 0.47 0.96 0.14 +narcotrafic narcotrafic nom m s 0.01 0 0.01 0 +narcotrafiquants narcotrafiquant nom m p 0.19 0 0.19 0 +nard nard nom m s 0.02 0.14 0.01 0.14 +nards nard nom m p 0.02 0.14 0.01 0 +narghileh narghileh nom m s 0 0.07 0 0.07 +narghilé narghilé nom m s 0.01 0.14 0.01 0.14 +nargua narguer ver 1.93 6.55 0 0.14 ind:pas:3s; +narguaient narguer ver 1.93 6.55 0 0.34 ind:imp:3p; +narguais narguer ver 1.93 6.55 0.02 0.07 ind:imp:2s; +narguait narguer ver 1.93 6.55 0.02 0.88 ind:imp:3s; +narguant narguer ver 1.93 6.55 0.04 0.47 par:pre; +nargue narguer ver 1.93 6.55 0.88 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +narguent narguer ver 1.93 6.55 0.48 0.2 ind:pre:3p; +narguer narguer ver 1.93 6.55 0.41 3.38 inf; +nargues narguer ver 1.93 6.55 0.01 0 ind:pre:2s; +narguez narguer ver 1.93 6.55 0.02 0.07 ind:pre:2p; +narguilé narguilé nom m s 0.08 1.01 0.07 0.81 +narguilés narguilé nom m p 0.08 1.01 0.01 0.2 +narguons narguer ver 1.93 6.55 0.01 0 imp:pre:1p; +nargué narguer ver m s 1.93 6.55 0.05 0.07 par:pas; +narguées narguer ver f p 1.93 6.55 0 0.07 par:pas; +narine narine nom f s 3.41 25.81 1.11 5.14 +narines narine nom f p 3.41 25.81 2.3 20.68 +narquois narquois adj m 0.26 6.35 0.12 4.73 +narquoise narquois adj f s 0.26 6.35 0.14 1.42 +narquoisement narquoisement adv 0 0.27 0 0.27 +narquoiserie narquoiserie nom f s 0 0.07 0 0.07 +narquoises narquois adj f p 0.26 6.35 0 0.2 +narra narrer ver 0.24 2.3 0 0.2 ind:pas:3s; +narrai narrer ver 0.24 2.3 0 0.07 ind:pas:1s; +narrait narrer ver 0.24 2.3 0.01 0.61 ind:imp:3s; +narrant narrer ver 0.24 2.3 0.02 0.27 par:pre; +narrateur narrateur nom m s 0.74 2.36 0.43 2.23 +narratif narratif adj m s 0.2 0.34 0.05 0.34 +narratifs narratif adj m p 0.2 0.34 0.05 0 +narration narration nom f s 0.44 2.43 0.43 2.3 +narrations narration nom f p 0.44 2.43 0.01 0.14 +narrative narratif adj f s 0.2 0.34 0.07 0 +narratives narratif adj f p 0.2 0.34 0.04 0 +narratrice narrateur nom f s 0.74 2.36 0.17 0.14 +narratrices narrateur nom f p 0.74 2.36 0.14 0 +narre narrer ver 0.24 2.3 0.01 0.34 ind:pre:1s;ind:pre:3s; +narrer narrer ver 0.24 2.3 0.16 0.47 inf; +narré narrer ver m s 0.24 2.3 0.03 0.2 par:pas; +narrée narrer ver f s 0.24 2.3 0 0.07 par:pas; +narrées narrer ver f p 0.24 2.3 0 0.07 par:pas; +narthex narthex nom m 0.01 0.61 0.01 0.61 +narval narval nom m s 0.04 0.68 0.04 0.61 +narvals narval nom m p 0.04 0.68 0 0.07 +nasal nasal adj m s 1.56 2.5 0.6 0.47 +nasale nasal adj f s 1.56 2.5 0.67 1.08 +nasales nasal adj f p 1.56 2.5 0.24 0.81 +nasard nasard nom m s 0 0.14 0 0.07 +nasardes nasard nom f p 0 0.14 0 0.07 +nasaux nasal adj m p 1.56 2.5 0.05 0.14 +nasdaq nasdaq nom m s 0.14 0 0.14 0 +nase nase adj s 1.84 0.74 1.54 0.68 +naseau naseau nom m s 0.35 5.2 0.14 0.2 +naseaux naseau nom m p 0.35 5.2 0.21 5 +nases nase nom m p 1.06 0.2 0.43 0 +nasilla nasiller ver 0.01 1.22 0 0.07 ind:pas:3s; +nasillaient nasiller ver 0.01 1.22 0 0.07 ind:imp:3p; +nasillait nasiller ver 0.01 1.22 0 0.41 ind:imp:3s; +nasillant nasiller ver 0.01 1.22 0 0.34 par:pre; +nasillard nasillard adj m s 0.02 2.64 0.01 0.54 +nasillarde nasillard adj f s 0.02 2.64 0.01 1.42 +nasillardes nasillard adj f p 0.02 2.64 0 0.27 +nasillards nasillard adj m p 0.02 2.64 0 0.41 +nasille nasiller ver 0.01 1.22 0.01 0.14 ind:pre:1s;ind:pre:3s; +nasillement nasillement nom m s 0 0.41 0 0.41 +nasillent nasiller ver 0.01 1.22 0 0.07 ind:pre:3p; +nasiller nasiller ver 0.01 1.22 0 0.14 inf; +nasillonne nasillonner ver 0 0.07 0 0.07 ind:pre:3s; +nasique nasique nom m s 0.5 0 0.5 0 +nasopharynx nasopharynx nom m 0.03 0 0.03 0 +nasse nasse nom f s 0.54 1.82 0.39 1.22 +nasses nasse nom f p 0.54 1.82 0.14 0.61 +nassérien nassérien adj m s 0 0.07 0 0.07 +natal natal adj m s 5.71 13.92 2.54 5.47 +natale natal adj f s 5.71 13.92 3.15 7.91 +natales natal adj f p 5.71 13.92 0.02 0.41 +natalité natalité nom f s 0.2 0.54 0.2 0.54 +natals natal adj m p 5.71 13.92 0 0.14 +natation natation nom f s 3.59 1.22 3.59 1.22 +natatoire natatoire adj f s 0.01 0.07 0.01 0.07 +natif natif adj m s 0.58 3.65 0.44 1.82 +natifs natif nom m p 0.52 0.68 0.36 0.27 +nation nation nom f s 24.8 47.23 16.97 31.96 +national national adj m s 34.61 98.04 12.23 42.7 +national_socialisme national_socialisme nom m s 0.58 2.03 0.58 2.03 +national_socialiste national_socialiste adj m s 0.23 0.14 0.23 0.14 +nationale national adj f s 34.61 98.04 18.59 48.18 +nationale_socialiste nationale_socialiste adj f s 0 0.14 0 0.14 +nationalement nationalement adv 0 0.14 0 0.14 +nationales national adj f p 34.61 98.04 1.43 4.39 +nationalisait nationaliser ver 0.06 0.68 0 0.07 ind:imp:3s; +nationalisation nationalisation nom f s 0.11 1.08 0.01 0.61 +nationalisations nationalisation nom f p 0.11 1.08 0.1 0.47 +nationalisent nationaliser ver 0.06 0.68 0 0.07 ind:pre:3p; +nationaliser nationaliser ver 0.06 0.68 0.01 0.07 inf; +nationalisme nationalisme nom m s 2.75 3.11 2.75 3.11 +nationalisons nationaliser ver 0.06 0.68 0 0.07 imp:pre:1p; +nationaliste nationaliste adj s 1.65 2.57 1.16 1.76 +nationalistes nationaliste nom p 1.45 1.55 1.4 1.22 +nationalisé nationaliser ver m s 0.06 0.68 0.01 0.07 par:pas; +nationalisée nationaliser ver f s 0.06 0.68 0.01 0.14 par:pas; +nationalisées nationaliser ver f p 0.06 0.68 0.01 0.2 par:pas; +nationalisés nationaliser ver m p 0.06 0.68 0.02 0 par:pas; +nationalité nationalité nom f s 3.21 6.89 2.77 5.74 +nationalités nationalité nom f p 3.21 6.89 0.43 1.15 +nationaux national adj m p 34.61 98.04 2.35 2.77 +nationaux_socialistes nationaux_socialistes adj p 0 0.14 0 0.14 +nations nation nom f p 24.8 47.23 7.83 15.27 +native natif adj f s 0.58 3.65 0.06 1.28 +natives natif adj f p 0.58 3.65 0.01 0.2 +nativité nativité nom f s 0.14 1.35 0.14 1.28 +nativités nativité nom f p 0.14 1.35 0 0.07 +natron natron nom m s 0.04 0 0.04 0 +natrum natrum nom m s 0.01 0 0.01 0 +natrémie natrémie nom f s 0.03 0 0.03 0 +natta natter ver 0.11 1.01 0 0.07 ind:pas:3s; +natte natte nom f s 1.75 10.2 0.88 4.26 +natter natter ver 0.11 1.01 0.01 0.14 inf; +nattes natte nom f p 1.75 10.2 0.87 5.95 +nattier nattier nom m s 0 0.14 0 0.14 +natté natter ver m s 0.11 1.01 0 0.07 par:pas; +nattée natter ver f s 0.11 1.01 0 0.2 par:pas; +nattées natter ver f p 0.11 1.01 0 0.07 par:pas; +nattés natter ver m p 0.11 1.01 0.1 0.41 par:pas; +naturalisation naturalisation nom f s 0.06 1.01 0.06 1.01 +naturaliser naturaliser ver 0.34 0.68 0.05 0.34 inf; +naturalisme naturalisme nom m s 0.4 0.27 0.4 0.27 +naturaliste naturaliste nom s 0.69 0.68 0.51 0.41 +naturalistes naturaliste nom p 0.69 0.68 0.18 0.27 +naturalisé naturaliser ver m s 0.34 0.68 0.29 0.27 par:pas; +naturalisée naturalisé adj f s 0.04 0.47 0.01 0 +naturalisés naturalisé adj m p 0.04 0.47 0.01 0.2 +nature nature nom f s 60.2 95.88 59.8 93.45 +naturel naturel adj m s 39.78 75.68 19.01 38.65 +naturelle naturel adj f s 39.78 75.68 14.02 24.86 +naturellement naturellement adv 21.05 71.96 21.05 71.96 +naturelles naturel adj f p 39.78 75.68 3.9 6.28 +naturels naturel adj m p 39.78 75.68 2.86 5.88 +natures nature nom f p 60.2 95.88 0.4 2.43 +naturisme naturisme nom m s 0.03 0.14 0.03 0.14 +naturiste naturiste adj m s 0.2 0.41 0.18 0.2 +naturistes naturiste nom p 0.03 0.2 0.03 0.14 +naturlich naturlich adv 0.27 0.14 0.27 0.14 +naturopathe naturopathe nom s 0.03 0 0.03 0 +naufrage naufrage nom m s 3.04 11.62 2.76 10.61 +naufrageant naufrager ver 0.21 0.88 0 0.07 par:pre; +naufragent naufrager ver 0.21 0.88 0 0.07 ind:pre:3p; +naufrager naufrager ver 0.21 0.88 0.19 0.07 inf; +naufrages naufrage nom m p 3.04 11.62 0.28 1.01 +naufrageur naufrageur nom m s 0.02 0.2 0 0.07 +naufrageurs naufrageur nom m p 0.02 0.2 0.02 0.07 +naufrageuse naufrageur nom f s 0.02 0.2 0 0.07 +naufragé naufragé nom m s 0.69 3.45 0.3 2.03 +naufragée naufragé nom f s 0.69 3.45 0 0.41 +naufragées naufragé adj f p 0.06 1.08 0 0.07 +naufragés naufragé nom m p 0.69 3.45 0.38 1.01 +nauséabond nauséabond adj m s 0.63 2.97 0.34 0.95 +nauséabonde nauséabond adj f s 0.63 2.97 0.17 0.88 +nauséabondes nauséabond adj f p 0.63 2.97 0.05 0.95 +nauséabonds nauséabond adj m p 0.63 2.97 0.06 0.2 +nausée nausée nom f s 6.51 10 4.75 7.91 +nausées nausée nom f p 6.51 10 1.76 2.09 +nauséeuse nauséeux adj f s 0.55 2.03 0.2 0.74 +nauséeuses nauséeux adj f p 0.55 2.03 0.14 0.14 +nauséeux nauséeux adj m 0.55 2.03 0.21 1.15 +nautes naute nom m p 0 0.07 0 0.07 +nautile nautile nom m s 0.05 0 0.05 0 +nautilus nautilus nom m 1.26 0.14 1.26 0.14 +nautique nautique adj s 1.89 2.09 0.71 1.15 +nautiques nautique adj p 1.89 2.09 1.17 0.95 +nautonier nautonier nom m s 0 0.27 0 0.07 +nautoniers nautonier nom m p 0 0.27 0 0.2 +navaja navaja nom f s 0.15 0.34 0.15 0.27 +navajas navaja nom f p 0.15 0.34 0 0.07 +navajo navajo adj s 0.21 0.14 0.18 0 +navajos navajo nom p 0.13 0 0.09 0 +naval naval adj m s 4.37 8.78 2.08 1.08 +navale naval adj f s 4.37 8.78 1.56 3.45 +navales naval adj f p 4.37 8.78 0.27 3.31 +navals naval adj m p 4.37 8.78 0.46 0.95 +navarin navarin nom m s 0.1 0.27 0.1 0.2 +navarins navarin nom m p 0.1 0.27 0 0.07 +navarrais navarrais nom m 0.1 0.61 0.1 0.61 +nave nave nom f s 0.02 0.74 0.02 0.74 +navel navel nom f s 0.03 0 0.03 0 +navet navet nom m s 3.16 2.77 1.25 0.88 +navets navet nom m p 3.16 2.77 1.9 1.89 +navette navette nom f s 9.35 3.65 8.44 3.04 +navettes navette nom f p 9.35 3.65 0.91 0.61 +navicert navicert nom m 0 0.07 0 0.07 +navigabilité navigabilité nom f s 0.01 0 0.01 0 +navigable navigable adj m s 0.07 0.27 0.02 0.14 +navigables navigable adj f p 0.07 0.27 0.04 0.14 +navigant navigant adj m s 0.19 0.41 0.16 0.41 +navigante navigant adj f s 0.19 0.41 0.03 0 +navigateur navigateur nom m s 2.23 3.78 1.95 1.89 +navigateurs navigateur nom m p 2.23 3.78 0.25 1.82 +navigation navigation nom f s 3.25 5.41 3.25 5.07 +navigations navigation nom f p 3.25 5.41 0 0.34 +navigatrice navigateur nom f s 2.23 3.78 0.04 0.07 +navigua naviguer ver 8.71 11.42 0.04 0.27 ind:pas:3s; +naviguaient naviguer ver 8.71 11.42 0.02 1.01 ind:imp:3p; +naviguais naviguer ver 8.71 11.42 0.12 0.27 ind:imp:1s; +naviguait naviguer ver 8.71 11.42 0.2 1.82 ind:imp:3s; +naviguant naviguer ver 8.71 11.42 0.07 1.08 par:pre; +navigue naviguer ver 8.71 11.42 2.18 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +naviguent naviguer ver 8.71 11.42 0.14 0.61 ind:pre:3p; +naviguer naviguer ver 8.71 11.42 3.33 2.57 inf; +naviguera naviguer ver 8.71 11.42 0.1 0 ind:fut:3s; +naviguerai naviguer ver 8.71 11.42 0.04 0 ind:fut:1s; +navigueraient naviguer ver 8.71 11.42 0 0.07 cnd:pre:3p; +naviguerons naviguer ver 8.71 11.42 0.25 0 ind:fut:1p; +navigues naviguer ver 8.71 11.42 0.02 0 ind:pre:2s; +naviguez naviguer ver 8.71 11.42 0.56 0 imp:pre:2p;ind:pre:2p; +naviguiez naviguer ver 8.71 11.42 0.14 0 ind:imp:2p; +naviguions naviguer ver 8.71 11.42 0 0.41 ind:imp:1p; +naviguons naviguer ver 8.71 11.42 0.19 0.14 imp:pre:1p;ind:pre:1p; +naviguèrent naviguer ver 8.71 11.42 0.02 0 ind:pas:3p; +navigué naviguer ver m s 8.71 11.42 1.29 1.35 par:pas; +navire navire nom m s 21.98 50.2 15.83 28.04 +navire_citerne navire_citerne nom m s 0.14 0 0.01 0 +navire_hôpital navire_hôpital nom m s 0.04 0.14 0.04 0.14 +navires navire nom m p 21.98 50.2 6.14 22.16 +navire_citerne navire_citerne nom m p 0.14 0 0.14 0 +navire_école navire_école nom m p 0 0.07 0 0.07 +navra navrer ver 18.68 4.19 0 0.2 ind:pas:3s; +navrait navrer ver 18.68 4.19 0 0.34 ind:imp:3s; +navrance navrance nom f s 0 0.07 0 0.07 +navrant navrant adj m s 0.63 2.7 0.51 0.74 +navrante navrant adj f s 0.63 2.7 0.09 1.01 +navrantes navrant adj f p 0.63 2.7 0.02 0.54 +navrants navrant adj m p 0.63 2.7 0.01 0.41 +navre navrer ver 18.68 4.19 0.29 0.47 imp:pre:2s;ind:pre:3s; +navrer navrer ver 18.68 4.19 0 0.07 inf; +navres navrer ver 18.68 4.19 0 0.07 ind:pre:2s; +navrez navrer ver 18.68 4.19 0.01 0 ind:pre:2p; +navré navrer ver m s 18.68 4.19 12.01 1.42 par:pas; +navrée navrer ver f s 18.68 4.19 6.01 0.81 par:pas; +navrées navrer ver f p 18.68 4.19 0.03 0.07 par:pas; +navrés navrer ver m p 18.68 4.19 0.31 0.41 par:pas; +nay nay nom f s 0.01 0 0.01 0 +nazaréen nazaréen nom m s 0.48 0.14 0.48 0.14 +naze naze adj s 4.82 1.55 4.2 1.55 +nazes naze nom m p 3.27 0.34 1.56 0.07 +nazi nazi nom m s 14.76 7.5 4.13 0.74 +nazie nazi adj f s 7.11 7.7 1.27 1.62 +nazies nazi adj f p 7.11 7.7 0.53 0.88 +nazillons nazillon nom m p 0.01 0.07 0.01 0.07 +nazis nazi nom m p 14.76 7.5 9.81 6.76 +nazisme nazisme nom m s 0.63 1.62 0.63 1.62 +naît naître ver 116.11 119.32 5.47 6.82 ind:pre:3s; +naîtra naître ver 116.11 119.32 1.55 0.54 ind:fut:3s; +naîtrai naître ver 116.11 119.32 0.02 0 ind:fut:1s; +naîtraient naître ver 116.11 119.32 0.17 0.07 cnd:pre:3p; +naîtrait naître ver 116.11 119.32 0.11 0.34 cnd:pre:3s; +naître naître ver 116.11 119.32 12.74 19.86 inf; +naîtrions naître ver 116.11 119.32 0 0.07 cnd:pre:1p; +naîtront naître ver 116.11 119.32 0.34 0.47 ind:fut:3p; +naïade naïade nom f s 0.04 0.54 0.03 0.14 +naïades naïade nom f p 0.04 0.54 0.01 0.41 +naïf naïf adj m s 7.91 21.62 4.22 9.59 +naïfs naïf adj m p 7.91 21.62 0.76 3.18 +naïve naïf adj f s 7.91 21.62 2.76 6.69 +naïvement naïvement adv 0.27 6.01 0.27 6.01 +naïves naïf adj f p 7.91 21.62 0.17 2.16 +naïveté naïveté nom f s 0.95 10.68 0.94 9.86 +naïvetés naïveté nom f p 0.95 10.68 0.01 0.81 +ne ne adv_sup 22287.83 13841.89 13357.03 7752.09 +ne_varietur ne_varietur adv 0 0.14 0 0.14 +nec nec nom s 0.64 0.27 0.64 0.27 +neck neck nom m s 0.21 0 0.21 0 +nectar nectar nom m s 2.28 0.81 2.28 0.81 +nectarine nectarine nom f s 0.14 0 0.12 0 +nectarines nectarine nom f p 0.14 0 0.01 0 +nef nef nom f s 0.55 6.89 0.41 6.49 +nefs nef nom f p 0.55 6.89 0.13 0.41 +negro negro nom s 0.07 0.07 0.07 0.07 +negro_spiritual negro_spiritual nom m s 0.01 0.14 0.01 0.07 +negro_spiritual negro_spiritual nom m p 0.01 0.14 0 0.07 +neige neige nom f s 39.34 80.88 37.52 74.93 +neigeait neiger ver 7.87 3.92 0.89 1.22 ind:imp:3s; +neiger neiger ver 7.87 3.92 0.59 0.61 inf; +neigera neiger ver 7.87 3.92 0.21 0.07 ind:fut:3s; +neigerait neiger ver 7.87 3.92 0.02 0 cnd:pre:3s; +neiges neige nom f p 39.34 80.88 1.82 5.95 +neigeuse neigeux adj f s 0.3 4.12 0.04 1.35 +neigeuses neigeux adj f p 0.3 4.12 0.03 1.22 +neigeux neigeux adj m 0.3 4.12 0.23 1.55 +neigé neiger ver m s 7.87 3.92 0.66 0.54 par:pas; +nem nem nom m s 0.62 0.14 0.33 0.07 +nemrod nemrod nom m s 0 0.07 0 0.07 +nems nem nom m p 0.62 0.14 0.29 0.07 +nenni nenni adv 0.52 0.34 0.52 0.34 +nephtys nephtys nom m 0 0.07 0 0.07 +neptunienne neptunien adj f s 0.06 0 0.03 0 +neptuniens neptunien adj m p 0.06 0 0.04 0 +nerf nerf nom m s 30.12 30.47 8.09 3.92 +nerfs nerf nom m p 30.12 30.47 22.03 26.55 +nerprun nerprun nom m s 0 0.2 0 0.14 +nerpruns nerprun nom m p 0 0.2 0 0.07 +nerva nerver ver 0.35 0.07 0.34 0 ind:pas:3s; +nerver nerver ver 0.35 0.07 0.02 0 inf; +nerveuse nerveux adj f s 50.4 35.81 16.99 10.88 +nerveusement nerveusement adv 0.38 7.36 0.38 7.36 +nerveuses nerveux adj f p 50.4 35.81 0.89 3.11 +nerveux nerveux adj m 50.4 35.81 32.52 21.82 +nervi nervi nom m s 0.05 0.81 0.05 0.47 +nervis nervi nom m p 0.05 0.81 0 0.34 +nervosité nervosité nom f s 1.58 5.07 1.58 4.93 +nervosités nervosité nom f p 1.58 5.07 0 0.14 +nervure nervure nom f s 0.01 3.24 0 0.54 +nervures nervure nom f p 0.01 3.24 0.01 2.7 +nervuré nervurer ver m s 0.01 0.41 0 0.2 par:pas; +nervurée nervurer ver f s 0.01 0.41 0.01 0.14 par:pas; +nervurées nervurer ver f p 0.01 0.41 0 0.07 par:pas; +nervé nerver ver m s 0.35 0.07 0 0.07 par:pas; +nescafé nescafé nom m s 0.2 0.81 0.2 0.81 +nestor nestor nom m s 0.01 0 0.01 0 +nestorianisme nestorianisme nom m s 0 0.34 0 0.34 +nestorien nestorien nom m s 0 2.09 0 1.35 +nestorienne nestorien adj f s 0 1.62 0 0.34 +nestoriennes nestorien adj f p 0 1.62 0 0.07 +nestoriens nestorien nom m p 0 2.09 0 0.74 +net net adj m s 19.95 40.2 14.31 17.09 +nets net adj m p 19.95 40.2 0.94 4.19 +nette net adj f s 19.95 40.2 3.91 14.86 +nettement nettement adv 3.17 20.34 3.17 20.34 +nettes net adj f p 19.95 40.2 0.79 4.05 +netteté netteté nom f s 0.61 9.12 0.61 9.12 +nettoie nettoyer ver 61.95 28.11 12.09 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +nettoiement nettoiement nom m s 0.03 0.27 0.03 0.27 +nettoient nettoyer ver 61.95 28.11 0.67 0.81 ind:pre:3p; +nettoiera nettoyer ver 61.95 28.11 0.33 0.2 ind:fut:3s; +nettoierai nettoyer ver 61.95 28.11 0.75 0.07 ind:fut:1s; +nettoieraient nettoyer ver 61.95 28.11 0.02 0 cnd:pre:3p; +nettoierais nettoyer ver 61.95 28.11 0.11 0 cnd:pre:1s;cnd:pre:2s; +nettoierait nettoyer ver 61.95 28.11 0.13 0.07 cnd:pre:3s; +nettoieras nettoyer ver 61.95 28.11 0.33 0 ind:fut:2s; +nettoierez nettoyer ver 61.95 28.11 0.04 0.14 ind:fut:2p; +nettoierons nettoyer ver 61.95 28.11 0.13 0 ind:fut:1p; +nettoies nettoyer ver 61.95 28.11 1.42 0.14 ind:pre:2s;sub:pre:2s; +nettoya nettoyer ver 61.95 28.11 0.02 1.28 ind:pas:3s; +nettoyable nettoyable adj s 0.01 0.07 0.01 0 +nettoyables nettoyable adj p 0.01 0.07 0 0.07 +nettoyage nettoyage nom m s 7.5 6.35 7.48 5.88 +nettoyages nettoyage nom m p 7.5 6.35 0.02 0.47 +nettoyai nettoyer ver 61.95 28.11 0 0.14 ind:pas:1s; +nettoyaient nettoyer ver 61.95 28.11 0.07 0.95 ind:imp:3p; +nettoyais nettoyer ver 61.95 28.11 1.06 0.14 ind:imp:1s;ind:imp:2s; +nettoyait nettoyer ver 61.95 28.11 1.02 2.57 ind:imp:3s; +nettoyant nettoyer ver 61.95 28.11 0.64 1.01 par:pre; +nettoyante nettoyant adj f s 0.1 0.07 0.01 0 +nettoyants nettoyant nom m p 0.35 0.07 0.02 0.07 +nettoyer nettoyer ver 61.95 28.11 30.28 10.95 imp:pre:2p;ind:pre:2p;inf; +nettoyeur nettoyeur nom m s 2.51 0.68 1.24 0.34 +nettoyeurs nettoyeur nom m p 2.51 0.68 0.91 0.2 +nettoyeuse nettoyeur nom f s 2.51 0.68 0.36 0.07 +nettoyeuses nettoyeur nom f p 2.51 0.68 0 0.07 +nettoyez nettoyer ver 61.95 28.11 2.88 0 imp:pre:2p;ind:pre:2p; +nettoyiez nettoyer ver 61.95 28.11 0.14 0.07 ind:imp:2p; +nettoyons nettoyer ver 61.95 28.11 0.46 0.14 imp:pre:1p;ind:pre:1p; +nettoyât nettoyer ver 61.95 28.11 0 0.2 sub:imp:3s; +nettoyèrent nettoyer ver 61.95 28.11 0.01 0.07 ind:pas:3p; +nettoyé nettoyer ver m s 61.95 28.11 7.72 4.19 par:pas; +nettoyée nettoyer ver f s 61.95 28.11 0.89 1.08 par:pas; +nettoyées nettoyer ver f p 61.95 28.11 0.29 0.41 par:pas; +nettoyés nettoyer ver m p 61.95 28.11 0.45 0.88 par:pas; +neuf neuf adj_num 59.45 113.18 32.05 56.01 +neufs neuf adj m p 59.45 113.18 3.5 11.89 +neuneu neuneu adj f s 0.49 0.07 0.49 0.07 +neural neural adj m s 1.21 0 0.79 0 +neurale neural adj f s 1.21 0 0.32 0 +neurales neural adj f p 1.21 0 0.1 0 +neurasthénie neurasthénie nom f s 0.14 1.28 0.14 1.28 +neurasthénique neurasthénique adj s 0.71 1.15 0.7 0.81 +neurasthéniques neurasthénique nom p 0.1 0.2 0.1 0.07 +neurinome neurinome nom m s 0.01 0 0.01 0 +neurobiologie neurobiologie nom f s 0.01 0 0.01 0 +neurobiologiste neurobiologiste nom s 0.02 0 0.02 0 +neurochimie neurochimie nom f s 0.03 0 0.03 0 +neurochimique neurochimique adj s 0.01 0 0.01 0 +neurochirurgie neurochirurgie nom f s 0.53 0 0.53 0 +neurochirurgien neurochirurgien nom m s 0.85 0 0.79 0 +neurochirurgienne neurochirurgien nom f s 0.85 0 0.06 0 +neurofibromatose neurofibromatose nom f s 0.05 0 0.05 0 +neuroleptique neuroleptique nom m s 0.07 0.2 0.01 0.07 +neuroleptiques neuroleptique nom m p 0.07 0.2 0.06 0.14 +neurolinguistique neurolinguistique nom f s 0.01 0 0.01 0 +neurologie neurologie nom f s 0.93 0 0.93 0 +neurologique neurologique adj s 1.71 0 1.26 0 +neurologiquement neurologiquement adv 0.02 0 0.02 0 +neurologiques neurologique adj p 1.71 0 0.45 0 +neurologiste neurologiste nom s 0.09 0 0.09 0 +neurologue neurologue nom s 1.56 0.34 1.34 0.34 +neurologues neurologue nom p 1.56 0.34 0.22 0 +neuromusculaire neuromusculaire adj m s 0.11 0 0.11 0 +neuronal neuronal adj m s 0.42 0 0.19 0 +neuronale neuronal adj f s 0.42 0 0.14 0 +neuronales neuronal adj f p 0.42 0 0.03 0 +neuronaux neuronal adj m p 0.42 0 0.06 0 +neurone neurone nom m s 1.77 1.15 0.38 0.07 +neurones neurone nom m p 1.77 1.15 1.39 1.08 +neuronique neuronique adj f s 0.03 0 0.03 0 +neuropathie neuropathie nom f s 0.07 0 0.07 0 +neuropathologie neuropathologie nom f s 0.01 0 0.01 0 +neuropeptide neuropeptide nom m s 0.01 0 0.01 0 +neurophysiologie neurophysiologie nom f s 0.02 0.07 0.02 0.07 +neuroplégique neuroplégique adj s 0.02 0 0.02 0 +neuropsychiatrie neuropsychiatrie nom f s 0.03 0 0.03 0 +neuropsychologiques neuropsychologique adj p 0.11 0 0.11 0 +neuropsychologue neuropsychologue nom s 0.02 0 0.02 0 +neuroscience neuroscience nom f s 0.04 0 0.04 0 +neurotoxine neurotoxine nom f s 0.05 0 0.05 0 +neurotoxique neurotoxique adj s 0.14 0 0.14 0 +neurotransmetteur neurotransmetteur nom m s 0.36 0 0.05 0 +neurotransmetteurs neurotransmetteur nom m p 0.36 0 0.31 0 +neutralisaient neutraliser ver 5.31 2.97 0.01 0.14 ind:imp:3p; +neutralisait neutraliser ver 5.31 2.97 0.05 0.07 ind:imp:3s; +neutralisant neutraliser ver 5.31 2.97 0.06 0.2 par:pre; +neutralisante neutralisant adj f s 0.04 0 0.02 0 +neutralisateur neutralisateur adj m s 0.01 0.07 0.01 0.07 +neutralisation neutralisation nom f s 0.13 1.08 0.13 1.08 +neutralise neutraliser ver 5.31 2.97 0.53 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +neutralisent neutraliser ver 5.31 2.97 0.29 0 ind:pre:3p; +neutraliser neutraliser ver 5.31 2.97 2.31 1.28 inf; +neutralisera neutraliser ver 5.31 2.97 0.09 0 ind:fut:3s; +neutraliserai neutraliser ver 5.31 2.97 0.02 0 ind:fut:1s; +neutraliseraient neutraliser ver 5.31 2.97 0 0.07 cnd:pre:3p; +neutraliserait neutraliser ver 5.31 2.97 0.03 0 cnd:pre:3s; +neutraliseront neutraliser ver 5.31 2.97 0.04 0 ind:fut:3p; +neutralisez neutraliser ver 5.31 2.97 0.19 0 imp:pre:2p;ind:pre:2p; +neutralisiez neutraliser ver 5.31 2.97 0.01 0 ind:imp:2p; +neutralisons neutraliser ver 5.31 2.97 0.03 0 imp:pre:1p;ind:pre:1p; +neutraliste neutraliste nom s 0.16 0 0.16 0 +neutralisé neutraliser ver m s 5.31 2.97 1.02 0.34 par:pas; +neutralisée neutraliser ver f s 5.31 2.97 0.29 0.27 par:pas; +neutralisées neutraliser ver f p 5.31 2.97 0.02 0.14 par:pas; +neutralisés neutraliser ver m p 5.31 2.97 0.31 0.2 par:pas; +neutralité neutralité nom f s 0.46 2.97 0.46 2.97 +neutre neutre adj s 5.15 11.76 4.32 10.2 +neutres neutre adj p 5.15 11.76 0.83 1.55 +neutrino neutrino nom m s 0.55 0 0.15 0 +neutrinos neutrino nom m p 0.55 0 0.4 0 +neutron neutron nom m s 0.68 0.54 0.46 0.14 +neutronique neutronique adj m s 0.01 0 0.01 0 +neutrons neutron nom m p 0.68 0.54 0.23 0.41 +neutropénie neutropénie nom f s 0.04 0 0.04 0 +neuvaine neuvaine nom f s 0.38 0.61 0.14 0.14 +neuvaines neuvaine nom f p 0.38 0.61 0.25 0.47 +neuve neuf adj f s 59.45 113.18 10.3 22.43 +neuves neuf adj f p 59.45 113.18 5.02 8.72 +neuvième neuvième adj 1.09 1.49 1.09 1.42 +neuvièmes neuvième nom p 0.55 1.08 0.01 0 +neveu neveu nom m s 22.9 13.92 22.9 13.92 +neveux neveux nom m p 2.13 3.72 2.13 3.72 +new new adj m s 0.74 3.51 0.74 3.51 +new_wave new_wave nom f 0 0.07 0 0.07 +new_yorkais new_yorkais adj m 0 1.42 0 0.95 +new_yorkais new_yorkais adj f s 0 1.42 0 0.34 +new_yorkais new_yorkais adj f p 0 1.42 0 0.14 +news new nom m p 0.08 0.2 0.08 0.2 +ney ney nom m s 1.68 0.14 1.68 0.14 +nez nez nom m 75.18 177.64 75.18 177.64 +ni ni con 377.64 662.36 377.64 662.36 +nia nier ver 24.86 23.58 0.13 1.01 ind:pas:3s; +niable niable adj s 0 0.61 0 0.61 +niai nier ver 24.86 23.58 0 0.2 ind:pas:1s; +niaient nier ver 24.86 23.58 0.03 0.54 ind:imp:3p; +niais niais adj m 1.19 5.68 1.11 3.51 +niaise niais nom f s 0.82 1.49 0.18 0.41 +niaisement niaisement adv 0.11 0.68 0.11 0.68 +niaiser niaiser ver 0.3 0 0.17 0 inf; +niaiserie niaiserie nom f s 0.89 3.51 0.16 1.89 +niaiseries niaiserie nom f p 0.89 3.51 0.73 1.62 +niaises niais nom f p 0.82 1.49 0.07 0 +niaiseuse niaiseux adj f s 0.05 0.07 0.01 0 +niaiseux niaiseux adj m p 0.05 0.07 0.04 0.07 +niaisé niaiser ver m s 0.3 0 0.14 0 par:pas; +niait nier ver 24.86 23.58 0.11 2.43 ind:imp:3s; +niakoué niakoué nom s 0.07 0.14 0.03 0.07 +niakoués niakoué nom p 0.07 0.14 0.04 0.07 +niant nier ver 24.86 23.58 0.35 0.95 par:pre; +nib nib adv 0.16 2.03 0.16 2.03 +nibard nibard nom m s 1.6 0.68 0.13 0.07 +nibards nibard nom m p 1.6 0.68 1.47 0.61 +nibergue nibergue adj 0 0.07 0 0.07 +nicaraguayen nicaraguayen adj m s 0.06 0 0.04 0 +nicaraguayenne nicaraguayen nom f s 0.07 0 0.02 0 +nicaraguayens nicaraguayen nom m p 0.07 0 0.05 0 +nice nice nom s 2 0.41 2 0.41 +nicet nicet adj m s 0 0.14 0 0.14 +nicha nicher ver 1.52 5.61 0.01 0.07 ind:pas:3s; +nichaient nicher ver 1.52 5.61 0.12 0.34 ind:imp:3p; +nichait nicher ver 1.52 5.61 0.1 0.27 ind:imp:3s; +nichan nichan nom m s 0 0.07 0 0.07 +nichant nicher ver 1.52 5.61 0 0.34 par:pre; +niche niche nom f s 2.27 9.39 2.17 6.35 +nichent nicher ver 1.52 5.61 0.16 0.27 ind:pre:3p; +nicher nicher ver 1.52 5.61 0.35 1.62 inf; +niches niche nom f p 2.27 9.39 0.1 3.04 +nicheurs nicheur adj m p 0 0.07 0 0.07 +nichions nicher ver 1.52 5.61 0 0.07 ind:imp:1p; +nichon nichon nom m s 9.85 6.35 0.67 0.54 +nichonnée nichonnée adj f s 0 0.27 0 0.14 +nichonnées nichonnée adj f p 0 0.27 0 0.14 +nichons nichon nom m p 9.85 6.35 9.18 5.81 +nichèrent nicher ver 1.52 5.61 0 0.07 ind:pas:3p; +niché nicher ver m s 1.52 5.61 0.23 0.61 par:pas; +nichée nicher ver f s 1.52 5.61 0.14 0.61 par:pas; +nichées nichée nom f p 0.07 1.22 0.01 0 +nichés nicher ver m p 1.52 5.61 0.02 0.27 par:pas; +nickel nickel adj 2.78 1.28 2.78 1.28 +nickelle nickeler ver 0 0.54 0 0.07 ind:pre:3s; +nickels nickel nom m p 1.5 1.55 0.09 0.34 +nickelé nickelé adj m s 0.35 2.03 0.02 0.81 +nickelée nickelé adj f s 0.35 2.03 0.01 0.54 +nickelées nickelé adj f p 0.35 2.03 0 0.07 +nickelés nickelé adj m p 0.35 2.03 0.32 0.61 +nicotine nicotine nom f s 1.66 1.28 1.66 1.28 +nicotinisé nicotiniser ver m s 0 0.14 0 0.07 par:pas; +nicotinisés nicotiniser ver m p 0 0.14 0 0.07 par:pas; +nictation nictation nom f s 0 0.07 0 0.07 +nictitant nictitant adj m s 0.01 0.07 0 0.07 +nictitante nictitant adj f s 0.01 0.07 0.01 0 +nid nid nom m s 12.25 18.85 11.07 14.59 +nid_de_poule nid_de_poule nom m s 0.2 0.2 0.14 0.07 +nidification nidification nom f s 0.04 0.07 0.04 0.07 +nidificatrices nidificateur nom f p 0 0.07 0 0.07 +nidifie nidifier ver 0.01 0 0.01 0 ind:pre:3s; +nids nid nom m p 12.25 18.85 1.19 4.26 +nid_de_poule nid_de_poule nom m p 0.2 0.2 0.06 0.14 +nie nier ver 24.86 23.58 7.37 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +nielle nielle nom s 0 0.14 0 0.14 +niellé nieller ver m s 0 0.07 0 0.07 par:pas; +nient nier ver 24.86 23.58 0.9 0.95 ind:pre:3p; +nier nier ver 24.86 23.58 7.76 10.68 inf; +niera nier ver 24.86 23.58 0.18 0 ind:fut:3s; +nierai nier ver 24.86 23.58 0.62 0.2 ind:fut:1s; +nierais nier ver 24.86 23.58 0.12 0.14 cnd:pre:1s; +nierait nier ver 24.86 23.58 0.19 0.07 cnd:pre:3s; +nieras nier ver 24.86 23.58 0.14 0 ind:fut:2s; +nierez nier ver 24.86 23.58 0.04 0.2 ind:fut:2p; +nieriez nier ver 24.86 23.58 0.01 0 cnd:pre:2p; +nierons nier ver 24.86 23.58 0.04 0 ind:fut:1p; +nieront nier ver 24.86 23.58 0.06 0.07 ind:fut:3p; +nies nier ver 24.86 23.58 2.96 0.2 ind:pre:2s; +niet niet ono 0.33 0.27 0.33 0.27 +nietzschéen nietzschéen nom m s 0.59 0.07 0.59 0.07 +nietzschéenne nietzschéen adj f s 0.79 0.74 0.41 0.2 +nietzschéennes nietzschéen adj f p 0.79 0.74 0.2 0.14 +niez nier ver 24.86 23.58 1.87 0.61 imp:pre:2p;ind:pre:2p; +nigaud nigaud nom m s 1.59 1.42 1.27 0.95 +nigaude nigaud adj f s 0.62 1.15 0.05 0.14 +nigaudement nigaudement adv 0 0.07 0 0.07 +nigauderie nigauderie nom f s 0 0.07 0 0.07 +nigauds nigaud nom m p 1.59 1.42 0.28 0.41 +nigelle nigel nom f s 0.01 0 0.01 0 +night_club night_club nom m s 1.31 0.88 0.05 0 +night_club night_club nom m s 1.31 0.88 1.16 0.61 +night_club night_club nom m p 1.31 0.88 0.1 0.27 +niguedouille niguedouille nom s 0 0.07 0 0.07 +nigérian nigérian adj m s 0.13 0 0.08 0 +nigérian nigérian nom m s 0.22 0 0.08 0 +nigériane nigérian adj f s 0.13 0 0.01 0 +nigérians nigérian nom m p 0.22 0 0.14 0 +nigérien nigérien adj m s 0.17 0 0.17 0 +nigériens nigérien nom m p 0.04 0.07 0.03 0.07 +nihil_obstat nihil_obstat adv 0 0.2 0 0.2 +nihilisme nihilisme nom m s 0.11 1.22 0.11 1.22 +nihiliste nihiliste adj s 0.09 0.74 0.09 0.54 +nihilistes nihiliste nom p 0.16 0.41 0.08 0 +nikkei nikkei nom m s 0.05 0 0.05 0 +nil nil nom s 0.05 0.07 0.05 0.07 +nim nim nom m s 1.78 0.07 1.78 0.07 +nimba nimber ver 0.17 2.5 0 0.07 ind:pas:3s; +nimbaient nimber ver 0.17 2.5 0 0.07 ind:imp:3p; +nimbait nimber ver 0.17 2.5 0.01 0.74 ind:imp:3s; +nimbant nimber ver 0.17 2.5 0 0.14 par:pre; +nimbe nimbe nom m s 0.01 0.88 0.01 0.81 +nimbent nimber ver 0.17 2.5 0 0.07 ind:pre:3p; +nimber nimber ver 0.17 2.5 0 0.14 inf; +nimbes nimbe nom m p 0.01 0.88 0 0.07 +nimbo nimbo adv 0 0.07 0 0.07 +nimbo_stratus nimbo_stratus nom m 0.14 0 0.14 0 +nimbostratus nimbostratus nom m 0 0.07 0 0.07 +nimbus nimbus nom m 0.09 0.2 0.09 0.2 +nimbé nimber ver m s 0.17 2.5 0.14 0.47 par:pas; +nimbée nimber ver f s 0.17 2.5 0.02 0.61 par:pas; +nimbées nimber ver f p 0.17 2.5 0 0.14 par:pas; +nimbés nimber ver m p 0.17 2.5 0 0.07 par:pas; +ninas ninas nom m 0.01 0.95 0.01 0.95 +niobium niobium nom m s 0.01 0 0.01 0 +niolo niolo nom m s 0 0.14 0 0.14 +nions nier ver 24.86 23.58 0.16 0.07 imp:pre:1p;ind:pre:1p; +nioulouque nioulouque adj s 0 0.07 0 0.07 +nippe nippe nom f s 0.14 2.43 0.01 0.07 +nipper nipper ver 0.38 0.88 0.04 0.14 inf; +nippes nippe nom f p 0.14 2.43 0.13 2.36 +nippez nipper ver 0.38 0.88 0.1 0.07 imp:pre:2p; +nippo nippo adv 0.03 0 0.03 0 +nippon nippon adj m s 0.34 1.22 0.33 0.41 +nippone nippon adj f s 0.34 1.22 0.01 0.14 +nippones nippon adj f p 0.34 1.22 0 0.34 +nipponne nipponne adj f s 0.14 0 0.14 0 +nippons nippon nom m p 0.06 0.41 0.04 0.41 +nippé nipper ver m s 0.38 0.88 0.02 0.07 par:pas; +nippée nipper ver f s 0.38 0.88 0.02 0.34 par:pas; +nippées nipper ver f p 0.38 0.88 0.1 0.2 par:pas; +niquait niquer ver 7.57 1.35 0.06 0 ind:imp:3s; +nique nique nom f s 1.56 0.61 1.56 0.61 +niquedouille niquedouille nom s 0.03 0.2 0.03 0.2 +niquent niquer ver 7.57 1.35 0.23 0 ind:pre:3p; +niquer niquer ver 7.57 1.35 3.27 0.74 inf; +niquera niquer ver 7.57 1.35 0.03 0 ind:fut:3s; +niquerait niquer ver 7.57 1.35 0.01 0 cnd:pre:3s; +niques niquer ver 7.57 1.35 0.11 0 ind:pre:2s; +niquez niquer ver 7.57 1.35 0.08 0 imp:pre:2p;ind:pre:2p; +niquons niquer ver 7.57 1.35 0.01 0 imp:pre:1p; +niqué niquer ver m s 7.57 1.35 2.33 0.2 par:pas; +niquée niquer ver f s 7.57 1.35 0.11 0 par:pas; +niqués niquer ver m p 7.57 1.35 0.14 0.2 par:pas; +nirvana nirvana nom m s 0.81 0.74 0.81 0.68 +nirvanas nirvana nom m p 0.81 0.74 0 0.07 +nirvâna nirvâna nom m s 0.01 2.09 0.01 2.09 +nisan nisan nom m s 0 0.2 0 0.2 +nitratant nitrater ver 0.01 0 0.01 0 par:pre; +nitrate nitrate nom m s 0.64 0.54 0.38 0.41 +nitrates nitrate nom m p 0.64 0.54 0.27 0.14 +nitre nitre nom m s 0.07 0 0.07 0 +nitreuse nitreux adj f s 0.17 0 0.01 0 +nitreux nitreux adj m s 0.17 0 0.16 0 +nitrique nitrique adj s 0.25 0.14 0.25 0.14 +nitrite nitrite nom m s 0.02 0.14 0.02 0.14 +nitroglycérine nitroglycérine nom f s 0.79 0.2 0.79 0.2 +nitrogène nitrogène nom m s 0.17 0 0.17 0 +nitré nitré adj m s 0 0.07 0 0.07 +nivaquine nivaquine nom f s 0 0.14 0 0.14 +niveau niveau nom m s 50.7 32.91 45.46 30.74 +niveaux niveau nom m p 50.7 32.91 5.24 2.16 +nivelait niveler ver 0.14 1.96 0 0.07 ind:imp:3s; +nivelant niveler ver 0.14 1.96 0.04 0.07 par:pre; +niveler niveler ver 0.14 1.96 0.09 0.27 inf; +niveleur niveleur nom m s 0.01 0.27 0.01 0 +niveleurs niveleur nom m p 0.01 0.27 0 0.2 +niveleuse niveleur nom f s 0.01 0.27 0 0.07 +nivelle niveler ver 0.14 1.96 0 0.07 ind:pre:1s; +nivellement nivellement nom m s 0 0.2 0 0.2 +nivellent niveler ver 0.14 1.96 0 0.07 ind:pre:3p; +nivelât niveler ver 0.14 1.96 0 0.07 sub:imp:3s; +nivelé niveler ver m s 0.14 1.96 0.02 0.68 par:pas; +nivelée niveler ver f s 0.14 1.96 0 0.27 par:pas; +nivelées niveler ver f p 0.14 1.96 0 0.07 par:pas; +nivelés niveler ver m p 0.14 1.96 0 0.34 par:pas; +nivernais nivernais adj m 0 0.07 0 0.07 +nivernaise nivernaise adj f s 0 0.2 0 0.2 +nivôse nivôse nom m s 0 0.41 0 0.41 +nixe nixe nom f s 0.01 0.07 0.01 0.07 +niçois niçois adj m 0.08 1.28 0 0.88 +niçoise niçois adj f s 0.08 1.28 0.08 0.34 +niçoises niçois nom f p 0.03 0.61 0 0.2 +nièce nièce nom f s 10.1 12.43 9.28 9.73 +nièces nièce nom f p 10.1 12.43 0.82 2.7 +nième nième nom m s 0.03 0.07 0.03 0.07 +nière nière nom m s 0.14 0.07 0.14 0.07 +nièrent nier ver 24.86 23.58 0.01 0.07 ind:pas:3p; +nié nier ver m s 24.86 23.58 1.53 0.88 par:pas; +niébé niébé nom m s 0.02 0.07 0.02 0.07 +niée nier ver f s 24.86 23.58 0.14 0.27 par:pas; +niés nier ver m p 24.86 23.58 0.01 0.07 par:pas; +no_man_s_land no_man_s_land nom m s 0.95 1.49 0.95 1.49 +nobiliaire nobiliaire adj s 0.1 0.95 0.1 0.47 +nobiliaires nobiliaire adj p 0.1 0.95 0 0.47 +nobilitas nobilitas nom f 0.1 0 0.1 0 +noblaillon noblaillon nom m s 0.02 0 0.02 0 +noble noble adj s 28.7 31.62 23.73 20 +noblement noblement adv 0.58 2.7 0.58 2.7 +nobles noble adj p 28.7 31.62 4.97 11.62 +noblesse noblesse nom f s 6.09 12.64 6.09 12.43 +noblesses noblesse nom f p 6.09 12.64 0 0.2 +nobliau nobliau nom m s 0.01 0.14 0.01 0 +nobliaux nobliau nom m p 0.01 0.14 0 0.14 +noce noce nom f s 17.05 21.01 4.43 6.55 +nocer nocer ver 0.01 0 0.01 0 inf; +noces noce nom f p 17.05 21.01 12.62 14.46 +noceur noceur nom m s 0.17 0.88 0.15 0.47 +noceurs noceur nom m p 0.17 0.88 0.02 0.2 +noceuse noceur nom f s 0.17 0.88 0 0.14 +noceuses noceur nom f p 0.17 0.88 0 0.07 +nocher nocher nom m s 0.02 0.14 0.02 0.14 +nochère nochère nom f s 0 0.14 0 0.14 +nocif nocif adj m s 1.53 1.69 0.56 0.74 +nocifs nocif adj m p 1.53 1.69 0.38 0.34 +nocive nocif adj f s 1.53 1.69 0.31 0.41 +nocives nocif adj f p 1.53 1.69 0.27 0.2 +nocivité nocivité nom f s 0.16 0.2 0.16 0.2 +noctambule noctambule adj m s 0.51 0.61 0.38 0.27 +noctambules noctambule adj p 0.51 0.61 0.14 0.34 +noctambulisme noctambulisme nom m s 0 0.14 0 0.14 +nocturnal nocturnal nom m s 0.01 0.07 0.01 0.07 +nocturne nocturne adj s 5.71 37.16 4.09 25.41 +nocturnes nocturne adj p 5.71 37.16 1.62 11.76 +nodal nodal adj m s 0.01 0.41 0.01 0.34 +nodales nodal adj f p 0.01 0.41 0 0.07 +nodosités nodosité nom f p 0.01 0.27 0.01 0.27 +nodule nodule nom m s 0.43 0 0.12 0 +nodules nodule nom m p 0.43 0 0.31 0 +noduleux noduleux adj m p 0 0.14 0 0.14 +nodus nodus nom m 0 0.07 0 0.07 +noeud noeud nom m s 11.12 24.26 7.64 14.46 +noeuds noeud nom m p 11.12 24.26 3.48 9.8 +noie noyer ver 27.29 38.58 4.53 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +noient noyer ver 27.29 38.58 0.48 1.08 ind:pre:3p; +noiera noyer ver 27.29 38.58 0.14 0.07 ind:fut:3s; +noierai noyer ver 27.29 38.58 0.17 0.07 ind:fut:1s; +noieraient noyer ver 27.29 38.58 0 0.07 cnd:pre:3p; +noierait noyer ver 27.29 38.58 0.56 0.47 cnd:pre:3s; +noieras noyer ver 27.29 38.58 0.04 0 ind:fut:2s; +noierez noyer ver 27.29 38.58 0.1 0.07 ind:fut:2p; +noieront noyer ver 27.29 38.58 0.14 0 ind:fut:3p; +noies noyer ver 27.29 38.58 0.71 0.14 ind:pre:2s; +noir noir adj m s 144.81 482.23 72.2 184.86 +noiraud noiraud adj m s 0.7 4.8 0.69 1.28 +noiraude noiraud adj f s 0.7 4.8 0.01 3.31 +noiraudes noiraud adj f p 0.7 4.8 0 0.14 +noirauds noiraud nom m p 0.37 0.81 0.01 0 +noirceur noirceur nom f s 0.63 3.24 0.63 2.97 +noirceurs noirceur nom f p 0.63 3.24 0 0.27 +noirci noirci adj m s 0.66 4.93 0.47 1.35 +noircie noircir ver f s 2.14 10.41 0.15 1.01 par:pas; +noircies noirci adj f p 0.66 4.93 0.04 1.69 +noircir noircir ver 2.14 10.41 0.68 2.16 inf; +noircirai noircir ver 2.14 10.41 0.01 0 ind:fut:1s; +noircirais noircir ver 2.14 10.41 0 0.07 cnd:pre:1s; +noircirait noircir ver 2.14 10.41 0 0.07 cnd:pre:3s; +noircirent noircir ver 2.14 10.41 0 0.2 ind:pas:3p; +noircis noircir ver m p 2.14 10.41 0.35 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +noircissaient noircir ver 2.14 10.41 0.14 0.2 ind:imp:3p; +noircissais noircir ver 2.14 10.41 0 0.07 ind:imp:1s; +noircissait noircir ver 2.14 10.41 0.01 1.28 ind:imp:3s; +noircissant noircir ver 2.14 10.41 0 0.34 par:pre; +noircisse noircir ver 2.14 10.41 0 0.07 sub:pre:1s; +noircissent noircir ver 2.14 10.41 0.11 0.2 ind:pre:3p; +noircissez noircir ver 2.14 10.41 0.05 0.07 imp:pre:2p;ind:pre:2p; +noircit noircir ver 2.14 10.41 0.25 0.68 ind:pre:3s;ind:pas:3s; +noire noir adj f s 144.81 482.23 41.57 140.88 +noires noir adj f p 144.81 482.23 9.39 62.64 +noirs noir adj m p 144.81 482.23 21.65 93.85 +noirâtre noirâtre adj s 0.02 6.08 0.02 4.12 +noirâtres noirâtre adj p 0.02 6.08 0 1.96 +noise noise nom f s 1.14 0.68 0.35 0.27 +noises noise nom f p 1.14 0.68 0.79 0.41 +noisetier noisetier nom m s 1.12 3.24 1.1 1.62 +noisetiers noisetier nom m p 1.12 3.24 0.03 1.62 +noisette noisette nom f s 2.9 3.99 0.57 1.69 +noisettes noisette nom f p 2.9 3.99 2.33 2.3 +noix noix nom f 12.83 12.23 12.83 12.23 +nok nok adj f s 0.03 0 0.03 0 +nolis nolis nom m 0 0.07 0 0.07 +nom nom nom m s 570.67 395 528.17 326.89 +nomade nomade nom s 1.32 4.86 0.6 1.62 +nomades nomade nom p 1.32 4.86 0.72 3.24 +nomadisait nomadiser ver 0 0.2 0 0.07 ind:imp:3s; +nomadisant nomadiser ver 0 0.2 0 0.07 par:pre; +nomadisent nomadiser ver 0 0.2 0 0.07 ind:pre:3p; +nomadisme nomadisme nom m s 0.01 0.68 0.01 0.68 +nombre nombre nom m s 40.16 78.38 36.57 76.28 +nombres nombre nom m p 40.16 78.38 3.59 2.09 +nombreuse nombreux adj f s 44.64 60.27 0.74 5.34 +nombreuses nombreux adj f p 44.64 60.27 14.01 17.91 +nombreux nombreux adj m 44.64 60.27 29.89 37.03 +nombril nombril nom m s 4.34 5.54 4.26 5.2 +nombrilisme nombrilisme nom m s 0.03 0 0.03 0 +nombriliste nombriliste nom s 0.14 0 0.14 0 +nombrils nombril nom m p 4.34 5.54 0.08 0.34 +nome nome nom m s 0.24 0.07 0.24 0.07 +nomenclature nomenclature nom f s 0.03 1.01 0.03 0.81 +nomenclatures nomenclature nom f p 0.03 1.01 0 0.2 +nomenklatura nomenklatura nom f s 0 0.14 0 0.14 +nominal nominal adj m s 0.39 0.34 0.09 0.14 +nominale nominal adj f s 0.39 0.34 0.1 0.07 +nominalement nominalement adv 0.01 0 0.01 0 +nominales nominal adj f p 0.39 0.34 0.02 0.14 +nominaliste nominaliste adj m s 0 0.07 0 0.07 +nominatif nominatif adj m s 0.09 0.47 0.05 0.07 +nominatifs nominatif adj m p 0.09 0.47 0 0.2 +nomination nomination nom f s 3.5 3.11 3.1 2.77 +nominations nomination nom f p 3.5 3.11 0.4 0.34 +nominative nominatif adj f s 0.09 0.47 0.03 0.07 +nominatives nominatif adj f p 0.09 0.47 0.01 0.14 +nominaux nominal adj m p 0.39 0.34 0.17 0 +nomine nominer ver 1.42 0.34 0.25 0.34 ind:pre:1s;ind:pre:3s; +nominer nominer ver 1.42 0.34 0.04 0 inf; +nominé nominer ver m s 1.42 0.34 0.56 0 par:pas; +nominée nominer ver f s 1.42 0.34 0.21 0 par:pas; +nominées nominer ver f p 1.42 0.34 0.08 0 par:pas; +nominés nominer ver m p 1.42 0.34 0.27 0 par:pas; +nomma nommer ver 45.6 62.3 0.3 1.82 ind:pas:3s; +nommai nommer ver 45.6 62.3 0 0.68 ind:pas:1s; +nommaient nommer ver 45.6 62.3 0.02 1.22 ind:imp:3p; +nommais nommer ver 45.6 62.3 0.02 0.27 ind:imp:1s; +nommait nommer ver 45.6 62.3 0.51 6.82 ind:imp:3s; +nommant nommer ver 45.6 62.3 0.57 0.95 par:pre; +nomme nommer ver 45.6 62.3 9.41 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +nomment nommer ver 45.6 62.3 0.69 1.22 ind:pre:3p; +nommer nommer ver 45.6 62.3 7.41 10.47 inf; +nommera nommer ver 45.6 62.3 0.64 0.27 ind:fut:3s; +nommerai nommer ver 45.6 62.3 1.1 0.27 ind:fut:1s; +nommerais nommer ver 45.6 62.3 0.21 0 cnd:pre:1s;cnd:pre:2s; +nommerait nommer ver 45.6 62.3 0.04 0.14 cnd:pre:3s; +nommeras nommer ver 45.6 62.3 0.02 0 ind:fut:2s; +nommeriez nommer ver 45.6 62.3 0.02 0 cnd:pre:2p; +nommerons nommer ver 45.6 62.3 0.05 0 ind:fut:1p; +nommeront nommer ver 45.6 62.3 0.05 0.07 ind:fut:3p; +nommes nommer ver 45.6 62.3 0.61 0.07 ind:pre:2s;sub:pre:2s; +nommez nommer ver 45.6 62.3 1.14 0.61 imp:pre:2p;ind:pre:2p; +nommiez nommer ver 45.6 62.3 0.17 0 ind:imp:2p; +nommions nommer ver 45.6 62.3 0.01 0.27 ind:imp:1p; +nommons nommer ver 45.6 62.3 0.34 0.34 imp:pre:1p;ind:pre:1p; +nommât nommer ver 45.6 62.3 0 0.14 sub:imp:3s; +nommèrent nommer ver 45.6 62.3 0.15 0.14 ind:pas:3p; +nommé nommer ver m s 45.6 62.3 18.24 20.41 par:pas; +nommée nommer ver f s 45.6 62.3 3.01 3.51 par:pas; +nommées nommer ver f p 45.6 62.3 0.2 0.81 par:pas; +nommément nommément adv 0.1 0.47 0.1 0.47 +nommés nommer ver m p 45.6 62.3 0.68 2.3 par:pas; +noms nom nom m p 570.67 395 42.5 68.11 +non non pro_per s 0.01 0 0.01 0 +non_troppo non_troppo adv 0 0.07 0 0.07 +non_agression non_agression nom f s 0.07 0.61 0.07 0.61 +non_alignement non_alignement nom m s 0.04 0 0.04 0 +non_aligné non_aligné adj m p 0.09 0 0.09 0 +non_amour non_amour nom m s 0.1 0 0.1 0 +non_appartenance non_appartenance nom f s 0.01 0.07 0.01 0.07 +non_assistance non_assistance nom f s 0.1 0.07 0.1 0.07 +non_blanc non_blanc nom m s 0.04 0.07 0 0.07 +non_blanc non_blanc nom m p 0.04 0.07 0.04 0 +non_combattant non_combattant adj m s 0.15 0 0.01 0 +non_combattant non_combattant nom m s 0.03 0 0.01 0 +non_combattant non_combattant adj m p 0.15 0 0.14 0 +non_comparution non_comparution nom f s 0.01 0 0.01 0 +non_concurrence non_concurrence nom f s 0.01 0 0.01 0 +non_conformisme non_conformisme nom m s 0 0.2 0 0.2 +non_conformiste non_conformiste adj s 0.14 0 0.1 0 +non_conformiste non_conformiste adj p 0.14 0 0.04 0 +non_conformité non_conformité nom f s 0.01 0 0.01 0 +non_consommation non_consommation nom f s 0.03 0 0.03 0 +non_croyance non_croyance nom f s 0.1 0 0.1 0 +non_croyant non_croyant nom m s 0.62 0.07 0.21 0.07 +non_croyant non_croyant nom m p 0.62 0.07 0.41 0 +non_culpabilité non_culpabilité nom f s 0.01 0 0.01 0 +non_dit non_dit nom m s 0.27 0.88 0.09 0.74 +non_dit non_dit nom m p 0.27 0.88 0.18 0.14 +non_droit non_droit nom m s 0.22 0 0.22 0 +non_existence non_existence nom f s 0.07 0.07 0.07 0.07 +non_ferreux non_ferreux nom m 0.01 0 0.01 0 +non_fumeur non_fumeur adj m s 0.68 0 0.68 0 +non_fumeurs non_fumeurs adj 0.44 0.07 0.44 0.07 +non_initié non_initié nom m s 0.22 0.34 0.03 0.14 +non_initié non_initié nom m p 0.22 0.34 0.19 0.2 +non_intervention non_intervention nom f s 0.21 0.14 0.21 0.14 +non_lieu non_lieu nom m s 1.08 1.42 1.08 1.42 +non_lieux non_lieux nom m p 0.01 0.2 0.01 0.2 +non_malade non_malade nom p 0 0.07 0 0.07 +non_paiement non_paiement nom m s 0.1 0.07 0.1 0.07 +non_participation non_participation nom f s 0.01 0.07 0.01 0.07 +non_pesanteur non_pesanteur nom f s 0 0.07 0 0.07 +non_prolifération non_prolifération nom f s 0.09 0 0.09 0 +non_présence non_présence nom f s 0.01 0.14 0.01 0.14 +non_recevoir non_recevoir nom m s 0.06 0.2 0.06 0.2 +non_représentation non_représentation nom f s 0.01 0 0.01 0 +non_respect non_respect nom m s 0.16 0 0.16 0 +non_retour non_retour nom m s 0.34 0.41 0.34 0.41 +non_résistance non_résistance nom f s 0 0.14 0 0.14 +non_savoir non_savoir nom m s 0.04 0.07 0.04 0.07 +non_sens non_sens nom m 0.83 0.95 0.83 0.95 +non_spécialiste non_spécialiste nom s 0.02 0.07 0.01 0 +non_spécialiste non_spécialiste nom p 0.02 0.07 0.01 0.07 +non_stop non_stop adj 0.89 0.14 0.89 0.14 +non_séparation non_séparation nom f s 0 0.07 0 0.07 +non_utilisation non_utilisation nom f s 0.01 0 0.01 0 +non_vie non_vie nom f s 0.04 0 0.04 0 +non_violence non_violence nom f s 0.63 0.07 0.63 0.07 +non_violent non_violent adj m s 0.31 0.07 0.19 0.07 +non_violent non_violent adj f s 0.31 0.07 0.07 0 +non_violent non_violent adj m p 0.31 0.07 0.05 0 +non_vouloir non_vouloir nom m s 0 0.07 0 0.07 +non_voyant non_voyant nom m s 0.32 0.27 0.28 0.2 +non_voyant non_voyant nom f s 0.32 0.27 0.02 0 +non_voyant non_voyant nom m p 0.32 0.27 0.03 0.07 +non_événement non_événement nom m s 0.02 0 0.02 0 +non_être non_être nom m 0 0.95 0 0.95 +nonagénaire nonagénaire adj s 0.01 0.54 0.01 0.41 +nonagénaires nonagénaire nom p 0.03 0.14 0.01 0 +nonante nonante adj_num 0.27 0.27 0.27 0.27 +nonante_huit nonante_huit adj_num 0 0.07 0 0.07 +nonce nonce nom m s 0.01 0.68 0.01 0.68 +nonchalamment nonchalamment adv 0.04 2.7 0.04 2.7 +nonchalance nonchalance nom f s 0.47 5 0.47 5 +nonchalant nonchalant adj m s 0.6 7.64 0.21 3.31 +nonchalante nonchalant adj f s 0.6 7.64 0.27 2.77 +nonchalantes nonchalant adj f p 0.6 7.64 0.11 0.68 +nonchalants nonchalant adj m p 0.6 7.64 0.01 0.88 +nonciature nonciature nom f s 0.14 0.14 0.14 0.14 +none none nom f s 0.67 0.41 0.48 0.07 +nones none nom f p 0.67 0.41 0.19 0.34 +nonette nonette nom s 0 0.27 0 0.2 +nonettes nonette nom p 0 0.27 0 0.07 +nonidi nonidi nom m s 0 0.07 0 0.07 +nonnain nonnain nom m s 0 0.61 0 0.61 +nonne nonne nom f s 8.46 3.72 5.46 1.69 +nonnes nonne nom f p 8.46 3.72 3.01 2.03 +nonnette nonnette nom f s 0.14 0.41 0.04 0.34 +nonnettes nonnette nom f p 0.14 0.41 0.1 0.07 +nonobstant nonobstant pre 0.16 2.97 0.16 2.97 +nonpareille nonpareil adj f s 0.01 0.14 0.01 0.14 +nonsense nonsense nom m s 0.04 0.07 0.04 0.07 +nope nope nom f s 0.5 0 0.5 0 +noradrénaline noradrénaline nom f s 0.05 0 0.05 0 +nord nord nom m 50.38 72.3 50.38 72.3 +nord_africain nord_africain adj m s 0.05 1.96 0.02 0.2 +nord_africain nord_africain adj f s 0.05 1.96 0.01 0.95 +nord_africain nord_africain adj f p 0.05 1.96 0.01 0.07 +nord_africain nord_africain adj m p 0.05 1.96 0.01 0.74 +nord_américain nord_américain adj m s 0.32 0.2 0.24 0.07 +nord_américain nord_américain adj f s 0.32 0.2 0.06 0.14 +nord_américain nord_américain nom m p 0.13 0 0.03 0 +nord_coréen nord_coréen adj m s 0.36 0 0.24 0 +nord_coréen nord_coréen adj f s 0.36 0 0.06 0 +nord_coréen nord_coréen adj f p 0.36 0 0.02 0 +nord_coréen nord_coréen nom m p 0.23 0.07 0.18 0.07 +nord_est nord_est nom m 1.4 2.84 1.4 2.84 +nord_nord_est nord_nord_est nom m s 0.03 0.14 0.03 0.14 +nord_ouest nord_ouest nom m 0.95 1.22 0.95 1.22 +nord_sud nord_sud adj 0.15 0.88 0.15 0.88 +nord_vietnamien nord_vietnamien adj m s 0.11 0 0.04 0 +nord_vietnamien nord_vietnamien adj f s 0.11 0 0.04 0 +nord_vietnamien nord_vietnamien nom m p 0.12 0 0.11 0 +nordet nordet nom m s 0 0.07 0 0.07 +nordicité nordicité nom f s 0.01 0 0.01 0 +nordique nordique adj s 1.43 1.69 1.15 1.22 +nordiques nordique nom p 0.71 0.47 0.31 0.07 +nordiste nordiste adj s 0.47 0.14 0.22 0.14 +nordistes nordiste nom p 0.78 0.07 0.66 0.07 +noria noria nom f s 0.01 0.61 0.01 0.54 +norias noria nom f p 0.01 0.61 0 0.07 +normal normal adj m s 127.15 62.77 90.98 42.97 +normale normal adj f s 127.15 62.77 23.74 13.45 +normalement normalement adv 20.37 12.43 20.37 12.43 +normales normal adj f p 127.15 62.77 4.08 2.3 +normalien normalien nom m s 0 2.23 0 1.35 +normalienne normalien adj f s 0 0.34 0 0.14 +normaliennes normalien nom f p 0 2.23 0 0.07 +normaliens normalien nom m p 0 2.23 0 0.81 +normalisation normalisation nom f s 0.13 0.41 0.13 0.41 +normalise normaliser ver 0.2 0.54 0.04 0.07 ind:pre:3s; +normalisent normaliser ver 0.2 0.54 0 0.07 ind:pre:3p; +normaliser normaliser ver 0.2 0.54 0.12 0.27 inf; +normalisons normaliser ver 0.2 0.54 0 0.07 ind:pre:1p; +normalisée normaliser ver f s 0.2 0.54 0.03 0 par:pas; +normalisées normaliser ver f p 0.2 0.54 0 0.07 par:pas; +normalisés normaliser ver m p 0.2 0.54 0.01 0 par:pas; +normalité normalité nom f s 1.27 0.74 1.27 0.74 +normand normand adj m s 0.79 6.42 0.45 2.03 +normande normand adj f s 0.79 6.42 0.27 2.97 +normandes normand adj f p 0.79 6.42 0.03 0.74 +normands normand adj m p 0.79 6.42 0.05 0.68 +normatif normatif adj m s 0.01 0.27 0.01 0.14 +normative normatif adj f s 0.01 0.27 0 0.14 +normaux normal adj m p 127.15 62.77 8.35 4.05 +norme norme nom f s 5 3.78 1.58 1.15 +normes norme nom f p 5 3.78 3.42 2.64 +noroît noroît nom m s 0 0.34 0 0.34 +norroise norrois adj f s 0.01 0 0.01 0 +norvégien norvégien adj m s 2.96 1.15 1.16 0.54 +norvégienne norvégien adj f s 2.96 1.15 1 0.14 +norvégiennes norvégien adj f p 2.96 1.15 0.47 0.14 +norvégiens norvégien adj m p 2.96 1.15 0.34 0.34 +nos nos adj_pos p 524.63 579.19 524.63 579.19 +nosocomiale nosocomial adj f s 0.01 0 0.01 0 +nostalgie nostalgie nom f s 4.45 20.07 4.44 18.04 +nostalgies nostalgie nom f p 4.45 20.07 0.01 2.03 +nostalgique nostalgique adj s 1.31 5.27 1.11 3.78 +nostalgiquement nostalgiquement adv 0 0.2 0 0.2 +nostalgiques nostalgique adj p 1.31 5.27 0.2 1.49 +not not nom 0.56 0.07 0.56 0.07 +nota noter ver 31.24 44.53 0.02 4.12 ind:pas:3s; +nota_bene nota_bene adv 0.01 0.07 0.01 0.07 +notabilité notabilité nom f s 0 0.74 0 0.07 +notabilités notabilité nom f p 0 0.74 0 0.68 +notable notable adj s 0.69 5 0.49 3.65 +notablement notablement adv 0.04 0.74 0.04 0.74 +notables notable nom p 0.63 6.55 0.52 5.2 +notai noter ver 31.24 44.53 0.14 1.62 ind:pas:1s; +notaient noter ver 31.24 44.53 0.03 0.27 ind:imp:3p; +notaire notaire nom m s 4.69 17.23 4.63 14.86 +notaires notaire nom m p 4.69 17.23 0.06 2.36 +notais noter ver 31.24 44.53 0.31 1.01 ind:imp:1s; +notait noter ver 31.24 44.53 0.32 2.7 ind:imp:3s; +notamment notamment adv 2.2 20.2 2.2 20.2 +notant noter ver 31.24 44.53 0.16 1.01 par:pre; +notarial notarial adj m s 0.03 0.2 0.01 0.14 +notariale notarial adj f s 0.03 0.2 0.01 0 +notariat notariat nom m s 0 0.2 0 0.2 +notariaux notarial adj m p 0.03 0.2 0 0.07 +notarié notarier ver m s 0.09 0.2 0.05 0.07 par:pas; +notariée notarié adj f s 0.07 0.07 0.01 0 +notariées notarier ver f p 0.09 0.2 0.01 0.07 par:pas; +notariés notarier ver m p 0.09 0.2 0.03 0.07 par:pas; +notation notation nom f s 0.21 1.08 0.19 0.54 +notations notation nom f p 0.21 1.08 0.03 0.54 +note note nom f s 62.82 77.43 33.42 39.32 +notent noter ver 31.24 44.53 0.28 0.14 ind:pre:3p; +noter noter ver 31.24 44.53 5.44 8.78 inf; +notera noter ver 31.24 44.53 0.03 0.47 ind:fut:3s; +noterai noter ver 31.24 44.53 0.51 0.2 ind:fut:1s; +noterais noter ver 31.24 44.53 0.05 0 cnd:pre:1s;cnd:pre:2s; +noterait noter ver 31.24 44.53 0.04 0.27 cnd:pre:3s; +noteras noter ver 31.24 44.53 0.03 0.07 ind:fut:2s; +noterez noter ver 31.24 44.53 0.19 0.34 ind:fut:2p; +noterons noter ver 31.24 44.53 0.01 0.07 ind:fut:1p; +noteront noter ver 31.24 44.53 0.04 0 ind:fut:3p; +notes note nom f p 62.82 77.43 29.4 38.11 +notez noter ver 31.24 44.53 5.74 5.14 imp:pre:2p;ind:pre:2p; +notice notice nom f s 1.23 2.57 0.92 1.96 +notices notice nom f p 1.23 2.57 0.31 0.61 +notiez noter ver 31.24 44.53 0.35 0 ind:imp:2p; +notifia notifier ver 0.75 3.18 0 0.47 ind:pas:3s; +notifiai notifier ver 0.75 3.18 0 0.2 ind:pas:1s; +notifiaient notifier ver 0.75 3.18 0 0.07 ind:imp:3p; +notifiait notifier ver 0.75 3.18 0 0.2 ind:imp:3s; +notifiant notifier ver 0.75 3.18 0 0.2 par:pre; +notification notification nom f s 0.37 0.54 0.37 0.54 +notifier notifier ver 0.75 3.18 0.27 0.74 inf; +notifiez notifier ver 0.75 3.18 0.01 0 imp:pre:2p; +notifions notifier ver 0.75 3.18 0.02 0.07 ind:pre:1p; +notifié notifier ver m s 0.75 3.18 0.42 0.88 par:pas; +notifiée notifier ver f s 0.75 3.18 0.02 0.27 par:pas; +notifiées notifié adj f p 0 0.2 0 0.14 +notion notion nom f s 5.79 14.05 4.99 10.61 +notions notion nom f p 5.79 14.05 0.81 3.45 +notoire notoire adj s 1.81 5.81 1.55 4.39 +notoirement notoirement adv 0.17 0.61 0.17 0.61 +notoires notoire adj p 1.81 5.81 0.26 1.42 +notonecte notonecte nom s 0 0.14 0 0.07 +notonectes notonecte nom p 0 0.14 0 0.07 +notons noter ver 31.24 44.53 0.18 0.2 imp:pre:1p;ind:pre:1p; +notoriété notoriété nom f s 0.65 2.84 0.65 2.77 +notoriétés notoriété nom f p 0.65 2.84 0 0.07 +notre notre adj_pos s 1022.94 680.68 1022.94 680.68 +notre_dame notre_dame nom f 2.69 8.58 2.69 8.58 +notules notule nom f p 0 0.2 0 0.2 +notèrent noter ver 31.24 44.53 0.01 0.07 ind:pas:3p; +noté noter ver m s 31.24 44.53 11.04 8.11 par:pas; +notée noter ver f s 31.24 44.53 0.33 0.27 par:pas; +notées noté adj f p 1.4 0.68 0.16 0 +notés noter ver m p 31.24 44.53 0.56 0.47 par:pas; +noua nouer ver 3.61 32.5 0.01 3.04 ind:pas:3s; +nouage nouage nom m s 0.01 0 0.01 0 +nouai nouer ver 3.61 32.5 0 0.2 ind:pas:1s; +nouaient nouer ver 3.61 32.5 0.02 1.49 ind:imp:3p; +nouais nouer ver 3.61 32.5 0 0.27 ind:imp:1s; +nouait nouer ver 3.61 32.5 0.03 3.85 ind:imp:3s; +nouant nouer ver 3.61 32.5 0.01 1.01 par:pre; +nouas nouer ver 3.61 32.5 0.01 0 ind:pas:2s; +nouba nouba nom f s 0.98 0.88 0.95 0.74 +noubas nouba nom f p 0.98 0.88 0.04 0.14 +noue nouer ver 3.61 32.5 0.52 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +nouent nouer ver 3.61 32.5 0.16 1.69 ind:pre:3p; +nouer nouer ver 3.61 32.5 1.67 6.01 inf; +nouera nouer ver 3.61 32.5 0.01 0.07 ind:fut:3s; +nouerais nouer ver 3.61 32.5 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +nouerait nouer ver 3.61 32.5 0 0.07 cnd:pre:3s; +nouerez nouer ver 3.61 32.5 0 0.07 ind:fut:2p; +noueront nouer ver 3.61 32.5 0 0.07 ind:fut:3p; +noueuse noueux adj f s 0.22 5.14 0 0.74 +noueuses noueux adj f p 0.22 5.14 0 1.62 +noueux noueux adj m 0.22 5.14 0.22 2.77 +nouez nouer ver 3.61 32.5 0.18 0 imp:pre:2p;ind:pre:2p; +nougat nougat nom m s 0.94 2.16 0.89 1.49 +nougatine nougatine nom f s 0.04 0.47 0.03 0.41 +nougatines nougatine nom f p 0.04 0.47 0.01 0.07 +nougats nougat nom m p 0.94 2.16 0.05 0.68 +nouille nouille nom f s 4.37 4.26 1.02 0.47 +nouilles nouille nom f p 4.37 4.26 3.35 3.78 +noumène noumène nom m s 0 0.07 0 0.07 +nounou nounou nom f s 4.4 5 3.87 4.86 +nounours nounours nom m 3.71 2.03 3.71 2.03 +nounous nounou nom f p 4.4 5 0.53 0.14 +nourri nourrir ver m s 52.53 64.53 6.13 7.43 par:pas; +nourrice nourrice nom f s 6.17 8.38 5.88 7.36 +nourrices nourrice nom f p 6.17 8.38 0.29 1.01 +nourricier nourricier adj m s 0.34 2.91 0.15 1.01 +nourriciers nourricier adj m p 0.34 2.91 0.01 0.61 +nourricière nourricier adj f s 0.34 2.91 0.16 1.15 +nourricières nourricier adj f p 0.34 2.91 0.02 0.14 +nourrie nourrir ver f s 52.53 64.53 0.91 2.97 par:pas; +nourries nourrir ver f p 52.53 64.53 0.11 0.95 par:pas; +nourrir nourrir ver 52.53 64.53 22.08 24.05 inf;; +nourrira nourrir ver 52.53 64.53 0.52 0.47 ind:fut:3s; +nourrirai nourrir ver 52.53 64.53 0.36 0.2 ind:fut:1s; +nourriraient nourrir ver 52.53 64.53 0.01 0.2 cnd:pre:3p; +nourrirais nourrir ver 52.53 64.53 0.05 0 cnd:pre:1s;cnd:pre:2s; +nourrirait nourrir ver 52.53 64.53 0.35 0.41 cnd:pre:3s; +nourriras nourrir ver 52.53 64.53 0.03 0 ind:fut:2s; +nourrirent nourrir ver 52.53 64.53 0 0.14 ind:pas:3p; +nourrirez nourrir ver 52.53 64.53 0.06 0 ind:fut:2p; +nourririons nourrir ver 52.53 64.53 0.01 0 cnd:pre:1p; +nourrirons nourrir ver 52.53 64.53 0.07 0.07 ind:fut:1p; +nourriront nourrir ver 52.53 64.53 0.18 0.2 ind:fut:3p; +nourris nourrir ver m p 52.53 64.53 6.36 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +nourrissage nourrissage nom m s 0.02 0.14 0.02 0.14 +nourrissaient nourrir ver 52.53 64.53 0.26 1.82 ind:imp:3p; +nourrissais nourrir ver 52.53 64.53 0.54 0.95 ind:imp:1s;ind:imp:2s; +nourrissait nourrir ver 52.53 64.53 1 7.91 ind:imp:3s; +nourrissant nourrissant adj m s 1.01 1.49 0.68 0.81 +nourrissante nourrissant adj f s 1.01 1.49 0.28 0.47 +nourrissantes nourrissant adj f p 1.01 1.49 0 0.07 +nourrissants nourrissant adj m p 1.01 1.49 0.05 0.14 +nourrisse nourrir ver 52.53 64.53 0.52 0.74 sub:pre:1s;sub:pre:3s; +nourrissent nourrir ver 52.53 64.53 2.46 3.31 ind:pre:3p;sub:imp:3p; +nourrisses nourrir ver 52.53 64.53 0.06 0.14 sub:pre:2s; +nourrisseur nourrisseur nom m s 0 0.14 0 0.14 +nourrissez nourrir ver 52.53 64.53 0.91 0.27 imp:pre:2p;ind:pre:2p; +nourrissiez nourrir ver 52.53 64.53 0.03 0.07 ind:imp:2p; +nourrissions nourrir ver 52.53 64.53 0.02 0.2 ind:imp:1p; +nourrisson nourrisson nom m s 1.62 4.53 1.13 3.04 +nourrissons nourrisson nom m p 1.62 4.53 0.49 1.49 +nourrit nourrir ver 52.53 64.53 8.78 6.55 ind:pre:3s;ind:pas:3s; +nourriture nourriture nom f s 44.86 31.01 44.59 25.74 +nourritures nourriture nom f p 44.86 31.01 0.27 5.27 +nourrît nourrir ver 52.53 64.53 0 0.07 sub:imp:3s; +nous nous pro_per p 4772.12 3867.84 4772.12 3867.84 +nous_même nous_même pro_per p 1.12 0.61 1.12 0.61 +nous_mêmes nous_mêmes pro_per p 11.11 16.28 11.11 16.28 +nouveau nouveau adj m s 209.45 185.61 170.28 138.31 +nouveau_né nouveau_né nom m s 2.72 4.8 2.27 3.18 +nouveau_né nouveau_né nom m p 2.72 4.8 0.14 1.49 +nouveauté nouveauté nom f s 4.23 8.72 3.23 6.55 +nouveautés nouveauté nom f p 4.23 8.72 1 2.16 +nouveaux nouveau adj m p 209.45 185.61 39.17 47.3 +nouveau_né nouveau_né nom m p 2.72 4.8 0.3 0.14 +nouvel nouvel adj m s 30.59 22.23 30.59 22.23 +nouvelle nouvelle adj f s 191.15 172.5 152.78 130.81 +nouvellement nouvellement adv 0.27 1.62 0.27 1.62 +nouvelles nouveau nom f p 229.97 292.43 82.08 63.78 +nouvelleté nouvelleté nom f s 0 0.07 0 0.07 +nouvelliste nouvelliste nom s 0.01 0 0.01 0 +nouèrent nouer ver 3.61 32.5 0 0.34 ind:pas:3p; +noué nouer ver m s 3.61 32.5 0.47 5.81 par:pas; +nouée noué adj f s 1.01 6.62 0.45 3.24 +nouées nouer ver f p 3.61 32.5 0.17 1.62 par:pas; +noués nouer ver m p 3.61 32.5 0.21 3.04 par:pas; +nova nova nom f s 4.14 0.07 4.14 0.07 +novateur novateur adj m s 0.38 0.68 0.27 0.2 +novateurs novateur nom m p 0.3 0.27 0.27 0 +novation novation nom f s 0.14 0 0.14 0 +novatrice novateur adj f s 0.38 0.68 0.05 0.27 +novatrices novateur adj f p 0.38 0.68 0.02 0.07 +nove nover ver 0.02 0.07 0 0.07 imp:pre:2s; +novelettes novelette nom f p 0.01 0 0.01 0 +novembre novembre nom m 8.79 33.04 8.79 33.04 +novice novice nom s 2.01 2.91 1.05 1.35 +novices novice nom p 2.01 2.91 0.96 1.55 +noviciat noviciat nom m s 0.04 0.61 0.04 0.61 +novilleros novillero nom m p 0 0.07 0 0.07 +novillo novillo nom m s 0 0.14 0 0.14 +novocaïne novocaïne nom f s 0.13 0.27 0.13 0.27 +novotique novotique nom f s 0.01 0 0.01 0 +novélisation novélisation nom f s 0.03 0 0.03 0 +noya noyer ver 27.29 38.58 0.33 0.74 ind:pas:3s; +noyade noyade nom f s 1.96 2.43 1.85 2.03 +noyades noyade nom f p 1.96 2.43 0.12 0.41 +noyaient noyer ver 27.29 38.58 0.06 1.15 ind:imp:3p; +noyais noyer ver 27.29 38.58 0.3 0.2 ind:imp:1s;ind:imp:2s; +noyait noyer ver 27.29 38.58 0.38 3.24 ind:imp:3s; +noyant noyer ver 27.29 38.58 0.18 1.55 par:pre; +noyau noyau nom m s 4.15 9.66 3.71 7.36 +noyauta noyauter ver 0.01 0.88 0 0.07 ind:pas:3s; +noyautage noyautage nom m s 0.01 0.2 0.01 0.2 +noyautant noyauter ver 0.01 0.88 0 0.07 par:pre; +noyautent noyauter ver 0.01 0.88 0 0.07 ind:pre:3p; +noyauter noyauter ver 0.01 0.88 0 0.47 inf; +noyauté noyauter ver m s 0.01 0.88 0 0.07 par:pas; +noyautée noyauter ver f s 0.01 0.88 0.01 0.07 par:pas; +noyautées noyauter ver f p 0.01 0.88 0 0.07 par:pas; +noyaux noyau nom m p 4.15 9.66 0.45 2.3 +noyer noyer ver 27.29 38.58 9 11.49 inf; +noyers noyer nom m p 0.55 2.5 0.03 0.88 +noyez noyer ver 27.29 38.58 0.39 0.14 imp:pre:2p;ind:pre:2p; +noyions noyer ver 27.29 38.58 0 0.07 ind:imp:1p; +noyons noyer ver 27.29 38.58 0.13 0.14 imp:pre:1p;ind:pre:1p; +noyèrent noyer ver 27.29 38.58 0 0.27 ind:pas:3p; +noyé noyer ver m s 27.29 38.58 4.78 6.69 par:pas; +noyée noyer ver f s 27.29 38.58 3.35 3.11 par:pas; +noyées noyé adj f p 1.8 7.36 0.16 0.68 +noyés noyer ver m p 27.29 38.58 1.4 2.91 par:pas; +noël noël nom m s 2.98 6.69 2.14 5.95 +noëls noël nom m p 2.98 6.69 0.84 0.74 +nu nu adj m s 49.87 168.04 17.39 53.85 +nu_propriétaire nu_propriétaire nom s 0 0.07 0 0.07 +nu_tête nu_tête adj m s 0.02 1.35 0.02 1.35 +nuage nuage nom m s 30.27 76.82 11.81 26.49 +nuages nuage nom m p 30.27 76.82 18.47 50.34 +nuageuse nuageux adj f s 1.24 1.28 0.22 0.14 +nuageuses nuageux adj f p 1.24 1.28 0.29 0.2 +nuageux nuageux adj m 1.24 1.28 0.73 0.95 +nuance nuance nom f s 1.98 20.81 1.09 10.88 +nuancer nuancer ver 0.05 2.64 0.01 0.54 inf; +nuances nuance nom f p 1.98 20.81 0.89 9.93 +nuancier nuancier nom m s 0.04 0 0.04 0 +nuancé nuancé adj m s 0.2 0.81 0.16 0.41 +nuancée nuancé adj f s 0.2 0.81 0.04 0.07 +nuancées nuancer ver f p 0.05 2.64 0 0.07 par:pas; +nuancés nuancé adj m p 0.2 0.81 0.01 0.27 +nuança nuancer ver 0.05 2.64 0 0.27 ind:pas:3s; +nuançaient nuancer ver 0.05 2.64 0 0.14 ind:imp:3p; +nuançait nuancer ver 0.05 2.64 0 0.34 ind:imp:3s; +nuançant nuancer ver 0.05 2.64 0 0.14 par:pre; +nuançât nuancer ver 0.05 2.64 0 0.07 sub:imp:3s; +nuas nuer ver 0.01 0.14 0 0.07 ind:pas:2s; +nubien nubien nom m s 0.13 0.07 0.1 0 +nubienne nubien adj f s 0.17 0.27 0.07 0.07 +nubiens nubien nom m p 0.13 0.07 0.03 0.07 +nubile nubile adj s 0.31 0.54 0.25 0.34 +nubiles nubile adj f p 0.31 0.54 0.06 0.2 +nubilité nubilité nom f s 0 0.14 0 0.14 +nubuck nubuck nom m s 0.16 0 0.16 0 +nucal nucal adj m s 0.01 0 0.01 0 +nucléaire nucléaire adj s 15.49 1.82 11.45 1.22 +nucléaires nucléaire adj p 15.49 1.82 4.04 0.61 +nucléique nucléique adj m s 0.02 0 0.02 0 +nucléoside nucléoside nom m s 0.01 0 0.01 0 +nucléotides nucléotide nom m p 0.09 0 0.09 0 +nucléus nucléus nom m 0.1 0 0.1 0 +nucléée nucléé adj f s 0.01 0 0.01 0 +nudisme nudisme nom m s 0.25 0.07 0.25 0.07 +nudiste nudiste nom s 2.24 0.47 0.81 0.07 +nudistes nudiste nom p 2.24 0.47 1.43 0.41 +nudité nudité nom f s 2.11 13.51 2.1 12.57 +nudités nudité nom f p 2.11 13.51 0.01 0.95 +nue nu adj f s 49.87 168.04 15.23 43.85 +nue_propriété nue_propriété nom f s 0 0.07 0 0.07 +nuer nuer ver 0.01 0.14 0.01 0 inf; +nues nu adj f 49.87 168.04 6.46 21.42 +nui nuire ver m s 14.74 11.22 1.31 0.61 par:pas; +nuira nuire ver 14.74 11.22 0.59 0.14 ind:fut:3s; +nuirai nuire ver 14.74 11.22 0.01 0 ind:fut:1s; +nuirait nuire ver 14.74 11.22 0.27 0.34 cnd:pre:3s; +nuiras nuire ver 14.74 11.22 0.11 0 ind:fut:2s; +nuire nuire ver 14.74 11.22 5.98 4.46 inf; +nuiront nuire ver 14.74 11.22 0.03 0 ind:fut:3p; +nuis nuire ver 14.74 11.22 0.2 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +nuisaient nuire ver 14.74 11.22 0.1 0.07 ind:imp:3p; +nuisait nuire ver 14.74 11.22 0.05 0.61 ind:imp:3s; +nuisance nuisance nom f s 0.67 0.27 0.38 0.14 +nuisances nuisance nom f p 0.67 0.27 0.3 0.14 +nuisant nuire ver 14.74 11.22 0.03 0.07 par:pre; +nuise nuire ver 14.74 11.22 0.22 0.41 sub:pre:1s;sub:pre:3s; +nuisent nuire ver 14.74 11.22 0.54 0.27 ind:pre:3p; +nuisette nuisette nom f s 0.33 0.07 0.33 0.07 +nuisez nuire ver 14.74 11.22 0.02 0 ind:pre:2p; +nuisible nuisible adj s 0.83 2.23 0.56 1.42 +nuisibles nuisible adj p 0.83 2.23 0.28 0.81 +nuisît nuire ver 14.74 11.22 0 0.07 sub:imp:3s; +nuit nuit nom f s 586.54 738.24 557.56 672.36 +nuitamment nuitamment adv 0.02 0.47 0.02 0.47 +nuitards nuitard nom m p 0.01 0 0.01 0 +nuiteux nuiteux nom m s 0.01 0.2 0.01 0.2 +nuits nuit nom f p 586.54 738.24 28.98 65.88 +nuitée nuitée nom f s 0.01 0.34 0 0.2 +nuitées nuitée nom f p 0.01 0.34 0.01 0.14 +nul nul adj_ind m s 44.53 35.07 28.8 19.93 +nullard nullard nom m s 0.51 0.2 0.2 0.07 +nullarde nullard adj f s 0.17 0.14 0.03 0.07 +nullardes nullard adj f p 0.17 0.14 0 0.07 +nullards nullard nom m p 0.51 0.2 0.32 0.14 +nulle nulle adj_ind f s 37.84 32.7 37.84 32.7 +nullement nullement adv 1.45 14.19 1.45 14.19 +nulles nulles adj_ind f p 0.41 0.34 0.41 0.34 +nullissime nullissime adj s 0.01 0.07 0.01 0.07 +nullité nullité nom f s 1.2 2.77 0.96 2.16 +nullités nullité nom f p 1.2 2.77 0.24 0.61 +nullos nullos adj s 0.18 0 0.18 0 +nuls nuls adj_ind m p 0.63 0.34 0.63 0.34 +numerus_clausus numerus_clausus nom m 0 0.07 0 0.07 +numide numide nom s 0.04 0.14 0.04 0.14 +numides numide adj p 0 0.34 0 0.27 +numismate numismate nom s 0.01 0.47 0.01 0.34 +numismates numismate nom p 0.01 0.47 0 0.14 +numismatique numismatique adj m s 0.01 0.14 0.01 0.14 +numéraire numéraire nom m s 0.01 0.27 0.01 0.27 +numéral numéral adj m s 0 0.07 0 0.07 +numérateur numérateur nom m s 0.02 0 0.02 0 +numération numération nom f s 0.23 0.07 0.23 0.07 +numérique numérique adj s 3.34 0.41 2.41 0.27 +numériquement numériquement adv 0.09 0.2 0.09 0.2 +numériques numérique adj p 3.34 0.41 0.93 0.14 +numérisation numérisation nom f s 0.07 0 0.07 0 +numérise numériser ver 0.22 0 0.04 0 imp:pre:2s;ind:pre:3s; +numériser numériser ver 0.22 0 0.02 0 inf; +numérisez numériser ver 0.22 0 0.02 0 imp:pre:2p; +numérisé numériser ver m s 0.22 0 0.09 0 par:pas; +numérisée numériser ver f s 0.22 0 0.01 0 par:pas; +numérisées numériser ver f p 0.22 0 0.04 0 par:pas; +numéro numéro nom m s 173.48 70.07 162.08 60 +numérologie numérologie nom f s 0.14 0 0.14 0 +numérologue numérologue nom s 0.05 0 0.05 0 +numéros numéro nom m p 173.48 70.07 11.4 10.07 +numérota numéroter ver 0.56 1.89 0 0.07 ind:pas:3s; +numérotage numérotage nom m s 0 0.14 0 0.14 +numérotaient numéroter ver 0.56 1.89 0 0.07 ind:imp:3p; +numérotait numéroter ver 0.56 1.89 0.01 0.2 ind:imp:3s; +numérotation numérotation nom f s 0.12 0.07 0.12 0.07 +numérote numéroter ver 0.56 1.89 0.11 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +numérotent numéroter ver 0.56 1.89 0.01 0.07 ind:pre:3p; +numéroter numéroter ver 0.56 1.89 0.04 0.27 inf; +numérotez numéroter ver 0.56 1.89 0.03 0.07 imp:pre:2p; +numéroté numéroter ver m s 0.56 1.89 0.2 0.14 par:pas; +numérotée numéroté adj f s 0.53 1.62 0.11 0.07 +numérotées numéroté adj f p 0.53 1.62 0.15 0.68 +numérotés numéroté adj m p 0.53 1.62 0.08 0.54 +nunchaku nunchaku nom m s 0.24 0 0.05 0 +nunchakus nunchaku nom m p 0.24 0 0.19 0 +nuncupatifs nuncupatif adj m p 0 0.07 0 0.07 +nunuche nunuche adj s 0.51 0 0.35 0 +nunuches nunuche adj p 0.51 0 0.16 0 +nuoc_mâm nuoc_mâm nom m 0 0.07 0 0.07 +nuptial nuptial adj m s 2.92 4.32 1.05 1.35 +nuptiale nuptial adj f s 2.92 4.32 1.56 2.09 +nuptiales nuptial adj f p 2.92 4.32 0.17 0.68 +nuptialité nuptialité nom f s 0 0.2 0 0.2 +nuptiaux nuptial adj m p 2.92 4.32 0.14 0.2 +nuque nuque nom f s 7.8 50.95 7.58 48.51 +nuques nuque nom f p 7.8 50.95 0.22 2.43 +nurse nurse nom f s 2.24 3.92 2.14 3.18 +nurseries nurseries nom f p 0 0.07 0 0.07 +nursery nursery nom f s 1.04 0.74 1.04 0.74 +nurses nurse nom f p 2.24 3.92 0.1 0.74 +nursing nursing nom m s 0.03 0 0.03 0 +nus nu adj m p 49.87 168.04 10.8 48.92 +nutriment nutriment nom m s 0.21 0 0.02 0 +nutriments nutriment nom m p 0.21 0 0.19 0 +nutritif nutritif adj m s 1.05 0.41 0.16 0.2 +nutritifs nutritif adj m p 1.05 0.41 0.21 0 +nutrition nutrition nom f s 0.86 0.34 0.86 0.34 +nutritionnel nutritionnel adj m s 0.1 0.07 0.04 0 +nutritionnelle nutritionnel adj f s 0.1 0.07 0.06 0.07 +nutritionniste nutritionniste nom s 0.25 0 0.25 0 +nutritive nutritif adj f s 1.05 0.41 0.51 0.07 +nutritives nutritif adj f p 1.05 0.41 0.18 0.14 +nuée nuée nom f s 1.27 10.74 0.54 3.99 +nuées nuée nom f p 1.27 10.74 0.74 6.76 +nyctalope nyctalope adj s 0 0.2 0 0.14 +nyctalopes nyctalope nom p 0 0.41 0 0.34 +nylon nylon nom m s 1.33 6.42 1.27 6.42 +nylons nylon nom m p 1.33 6.42 0.05 0 +nymphal nymphal adj m s 0.04 0 0.04 0 +nymphe nymphe nom f s 1.77 5.81 0.88 1.76 +nymphes nymphe nom f p 1.77 5.81 0.9 4.05 +nymphette nymphette nom f s 0.1 0.68 0.07 0.41 +nymphettes nymphette nom f p 0.1 0.68 0.03 0.27 +nympho nympho nom f s 0.8 0.14 0.69 0.07 +nymphomane nymphomane nom s 0.92 0.2 0.8 0.07 +nymphomanes nymphomane nom p 0.92 0.2 0.13 0.14 +nymphomanie nymphomanie nom f s 0.2 0 0.2 0 +nymphos nympho nom f p 0.8 0.14 0.11 0.07 +nymphéa nymphéa nom m s 0 0.34 0 0.07 +nymphéas nymphéa nom m p 0 0.34 0 0.27 +nymphées nymphée nom m p 0.14 0.07 0.14 0.07 +nèfles nèfle nom f p 0.17 0.54 0.17 0.54 +nègre nègre nom m s 19.08 27.64 11.26 15.54 +nègres nègre nom m p 19.08 27.64 6.12 7.03 +nèpe nèpe nom f s 0 0.14 0 0.07 +nèpes nèpe nom f p 0 0.14 0 0.07 +né naître ver m s 116.11 119.32 53.72 36.01 par:pas; +néandertalien néandertalien adj m s 0.01 0 0.01 0 +néandertaliens néandertalien nom m p 0.02 0 0.02 0 +néanderthalien néanderthalien nom m s 0.01 0.07 0.01 0.07 +néanmoins néanmoins con 2.7 16.35 2.7 16.35 +néant néant nom m s 6.62 23.99 6.62 23.92 +néantisation néantisation nom f s 0 0.07 0 0.07 +néantisée néantiser ver f s 0 0.07 0 0.07 par:pas; +néants néant nom m p 6.62 23.99 0 0.07 +nébuleuse nébuleux nom f s 0.71 1.22 0.71 0.61 +nébuleuses nébuleux adj f p 0.45 1.28 0.04 0.27 +nébuleux nébuleux adj m 0.45 1.28 0.38 0.68 +nébuliseur nébuliseur nom m s 0.01 0 0.01 0 +nébulosité nébulosité nom f s 0.1 0.14 0.1 0.14 +nécessaire nécessaire adj s 52 68.11 44.29 48.45 +nécessairement nécessairement adv 3.31 7.64 3.31 7.64 +nécessaires nécessaire adj p 52 68.11 7.71 19.66 +nécessita nécessiter ver 4.16 4.12 0.01 0.2 ind:pas:3s; +nécessitaient nécessiter ver 4.16 4.12 0.01 0.14 ind:imp:3p; +nécessitait nécessiter ver 4.16 4.12 0.54 1.01 ind:imp:3s; +nécessitant nécessiter ver 4.16 4.12 0.28 0.07 par:pre; +nécessite nécessiter ver 4.16 4.12 2.42 1.08 imp:pre:2s;ind:pre:3s; +nécessitent nécessiter ver 4.16 4.12 0.4 0.34 ind:pre:3p; +nécessiter nécessiter ver 4.16 4.12 0.16 0.07 inf; +nécessitera nécessiter ver 4.16 4.12 0.07 0 ind:fut:3s; +nécessiterait nécessiter ver 4.16 4.12 0.11 0.14 cnd:pre:3s; +nécessiteuse nécessiteux adj f s 0.21 0.47 0.01 0 +nécessiteuses nécessiteux adj f p 0.21 0.47 0.04 0.07 +nécessiteux nécessiteux nom m 0.76 0.54 0.76 0.54 +nécessité nécessité nom f s 5.93 33.78 5.61 28.78 +nécessitée nécessiter ver f s 4.16 4.12 0 0.14 par:pas; +nécessitées nécessiter ver f p 4.16 4.12 0 0.07 par:pas; +nécessités nécessité nom f p 5.93 33.78 0.32 5 +nécro nécro nom f s 0.35 0.07 0.25 0.07 +nécrobioses nécrobiose nom f p 0 0.07 0 0.07 +nécrologe nécrologe nom m s 0 0.14 0 0.14 +nécrologie nécrologie nom f s 1.11 0.47 1.03 0.47 +nécrologies nécrologie nom f p 1.11 0.47 0.08 0 +nécrologique nécrologique adj s 0.53 0.47 0.41 0.34 +nécrologiques nécrologique adj p 0.53 0.47 0.12 0.14 +nécrologue nécrologue nom s 0.03 0.07 0.03 0.07 +nécromancie nécromancie nom f s 0.09 0.07 0.09 0.07 +nécromancien nécromancien nom m s 0.2 0.27 0.19 0 +nécromancienne nécromancien nom f s 0.2 0.27 0.01 0.07 +nécromanciens nécromancien nom m p 0.2 0.27 0 0.2 +nécromant nécromant nom m s 0.03 0.07 0.03 0.07 +nécrophage nécrophage adj s 0.03 0.07 0.03 0.07 +nécrophagie nécrophagie nom f s 0 0.07 0 0.07 +nécrophile nécrophile adj m s 0.25 0 0.2 0 +nécrophiles nécrophile adj f p 0.25 0 0.05 0 +nécrophilie nécrophilie nom f s 0.08 0.27 0.08 0.27 +nécropole nécropole nom f s 0.2 1.28 0.2 1.01 +nécropoles nécropole nom f p 0.2 1.28 0 0.27 +nécropsie nécropsie nom f s 0.05 0 0.05 0 +nécros nécro nom f p 0.35 0.07 0.11 0 +nécrosant nécroser ver 0.2 0.07 0.1 0 par:pre; +nécrose nécrose nom f s 0.45 0.27 0.28 0.14 +nécroser nécroser ver 0.2 0.07 0.01 0 inf; +nécroses nécrose nom f p 0.45 0.27 0.17 0.14 +nécrosé nécroser ver m s 0.2 0.07 0.07 0.07 par:pas; +nécrosée nécroser ver f s 0.2 0.07 0.01 0 par:pas; +nécrotique nécrotique adj m s 0.05 0 0.05 0 +née naître ver f s 116.11 119.32 23.63 22.36 par:pas; +néerlandais néerlandais adj m 1.47 0.88 1.1 0.47 +néerlandaise néerlandais adj f s 1.47 0.88 0.37 0.14 +néerlandaises néerlandais adj f p 1.47 0.88 0 0.27 +nées naître ver f p 116.11 119.32 1.37 3.51 par:pas; +néfaste néfaste adj s 1.65 4.39 1.27 2.7 +néfastes néfaste adj p 1.65 4.39 0.38 1.69 +néflier néflier nom m s 0 0.27 0 0.2 +néfliers néflier nom m p 0 0.27 0 0.07 +négateur négateur adj m s 0 0.14 0 0.14 +négatif négatif adj m s 16.02 8.31 8.33 3.31 +négatifs négatif adj m p 16.02 8.31 2.13 0.68 +négation négation nom f s 1.83 3.65 1.78 3.38 +négationnisme négationnisme nom m s 0.01 0 0.01 0 +négations négation nom f p 1.83 3.65 0.04 0.27 +négative négatif adj f s 16.02 8.31 3.33 3.65 +négativement négativement adv 0.12 1.08 0.12 1.08 +négatives négatif adj f p 16.02 8.31 2.23 0.68 +négativisme négativisme nom m s 0.01 0 0.01 0 +négativiste négativiste nom s 0.01 0.07 0.01 0.07 +négativité négativité nom f s 0.2 0.07 0.2 0.07 +néglige négliger ver 9.42 19.86 1.46 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +négligea négliger ver 9.42 19.86 0.01 1.08 ind:pas:3s; +négligeable négligeable adj s 1.16 5 0.82 3.92 +négligeables négligeable adj p 1.16 5 0.34 1.08 +négligeai négliger ver 9.42 19.86 0 0.2 ind:pas:1s; +négligeaient négliger ver 9.42 19.86 0 0.27 ind:imp:3p; +négligeais négliger ver 9.42 19.86 0.3 0.2 ind:imp:1s;ind:imp:2s; +négligeait négliger ver 9.42 19.86 0.12 1.62 ind:imp:3s; +négligeant négliger ver 9.42 19.86 0.17 2.16 par:pre; +négligemment négligemment adv 0.04 8.45 0.04 8.45 +négligence négligence nom f s 3.01 5 2.96 4.12 +négligences négligence nom f p 3.01 5 0.05 0.88 +négligent négligent adj m s 1.7 3.31 0.92 2.09 +négligente négligent adj f s 1.7 3.31 0.36 0.95 +négligents négligent adj m p 1.7 3.31 0.41 0.27 +négligeons négliger ver 9.42 19.86 0.3 0 imp:pre:1p;ind:pre:1p; +négliger négliger ver 9.42 19.86 1.62 4.73 inf; +négligera négliger ver 9.42 19.86 0 0.07 ind:fut:3s; +négligerai négliger ver 9.42 19.86 0.14 0 ind:fut:1s; +négligerait négliger ver 9.42 19.86 0.01 0.14 cnd:pre:3s; +négligeriez négliger ver 9.42 19.86 0.01 0 cnd:pre:2p; +négliges négliger ver 9.42 19.86 0.23 0.2 ind:pre:2s; +négligez négliger ver 9.42 19.86 1.34 0.07 imp:pre:2p;ind:pre:2p; +négligeât négliger ver 9.42 19.86 0 0.2 sub:imp:3s; +négligiez négliger ver 9.42 19.86 0.01 0 ind:imp:2p; +négligions négliger ver 9.42 19.86 0 0.2 ind:imp:1p; +négligèrent négliger ver 9.42 19.86 0 0.07 ind:pas:3p; +négligé négliger ver m s 9.42 19.86 2.71 4.46 par:pas; +négligée négligé adj f s 1.37 2.7 0.65 1.08 +négligées négligé adj f p 1.37 2.7 0.11 0.34 +négligés négligé adj m p 1.37 2.7 0.14 0.54 +négoce négoce nom m s 0.2 2.09 0.1 2.03 +négoces négoce nom m p 0.2 2.09 0.1 0.07 +négocia négocier ver 18.82 10.81 0.03 0.14 ind:pas:3s; +négociable négociable adj s 1.31 0.68 1.08 0.41 +négociables négociable adj p 1.31 0.68 0.23 0.27 +négociaient négocier ver 18.82 10.81 0.04 0.34 ind:imp:3p; +négociais négocier ver 18.82 10.81 0.08 0.2 ind:imp:1s; +négociait négocier ver 18.82 10.81 0.23 0.81 ind:imp:3s; +négociant négociant nom m s 0.43 2.43 0.3 0.88 +négociante négociant nom f s 0.43 2.43 0.04 0 +négociants négociant nom m p 0.43 2.43 0.1 1.55 +négociateur négociateur nom m s 1.38 1.22 0.94 0.61 +négociateurs négociateur nom m p 1.38 1.22 0.38 0.61 +négociation négociation nom f s 6.7 11.28 2.71 2.84 +négociations négociation nom f p 6.7 11.28 3.99 8.45 +négociatrice négociateur nom f s 1.38 1.22 0.05 0 +négociatrices négociateur nom f p 1.38 1.22 0.01 0 +négocie négocier ver 18.82 10.81 2.49 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +négocient négocier ver 18.82 10.81 0.4 0.14 ind:pre:3p; +négocier négocier ver 18.82 10.81 11.88 5.61 inf; +négociera négocier ver 18.82 10.81 0.24 0 ind:fut:3s; +négocierai négocier ver 18.82 10.81 0.19 0.14 ind:fut:1s; +négocieraient négocier ver 18.82 10.81 0 0.07 cnd:pre:3p; +négocierions négocier ver 18.82 10.81 0.02 0 cnd:pre:1p; +négocierons négocier ver 18.82 10.81 0.28 0 ind:fut:1p; +négocieront négocier ver 18.82 10.81 0.19 0 ind:fut:3p; +négociez négocier ver 18.82 10.81 0.34 0.07 imp:pre:2p;ind:pre:2p; +négocions négocier ver 18.82 10.81 0.45 0 imp:pre:1p;ind:pre:1p; +négocié négocier ver m s 18.82 10.81 1.76 1.22 par:pas; +négociée négocier ver f s 18.82 10.81 0 0.14 par:pas; +négociées négocier ver f p 18.82 10.81 0.01 0 par:pas; +négociés négocier ver m p 18.82 10.81 0.09 0.47 par:pas; +négresse nègre nom f s 19.08 27.64 1.56 3.78 +négresses nègre nom f p 19.08 27.64 0.15 1.28 +négrier négrier adj m s 0.13 0.34 0.12 0.34 +négriers négrier nom m p 0.33 0.54 0.23 0.07 +négril négril nom m s 0 0.07 0 0.07 +négrillon négrillon nom m s 0.07 1.01 0.04 0.14 +négrillons négrillon nom m p 0.07 1.01 0.04 0.88 +négritude négritude nom f s 0.44 0.41 0.44 0.41 +négrière négrier nom f s 0.33 0.54 0.02 0 +négro négro nom m s 6.02 2.97 4.64 2.43 +négrophile négrophile adj m s 0.04 0 0.02 0 +négrophiles négrophile adj f p 0.04 0 0.02 0 +négros négro nom m p 6.02 2.97 1.38 0.54 +négroïde négroïde adj s 0.09 1.28 0.07 0.74 +négroïdes négroïde adj p 0.09 1.28 0.02 0.54 +négus négus nom m 0.1 1.55 0.1 1.55 +nématodes nématode nom m p 0.01 0 0.01 0 +nénesse nénesse nom m s 0 0.27 0 0.14 +nénesses nénesse nom m p 0 0.27 0 0.14 +nénette nénette nom f s 0.85 3.72 0.69 2.77 +nénettes nénette nom f p 0.85 3.72 0.16 0.95 +nénuphar nénuphar nom m s 0.5 2.91 0.25 0.47 +nénuphars nénuphar nom m p 0.5 2.91 0.24 2.43 +néné néné nom m s 5.41 3.04 3.76 2.03 +nénés néné nom m p 5.41 3.04 1.65 1.01 +néo néo adv 0.62 0.61 0.62 0.61 +néo_barbare néo_barbare adj f p 0 0.07 0 0.07 +néo_classique néo_classique adj s 0.12 0.34 0.12 0.34 +néo_colonialisme néo_colonialisme nom m s 0 0.2 0 0.2 +néo_communiste néo_communiste adj f s 0.01 0 0.01 0 +néo_fascisme néo_fascisme nom m s 0.01 0.07 0.01 0.07 +néo_fasciste néo_fasciste adj p 0.01 0 0.01 0 +néo_fasciste néo_fasciste nom p 0.01 0 0.01 0 +néo_figuration néo_figuration nom f s 0 0.07 0 0.07 +néo_flic néo_flic nom m p 0.02 0 0.02 0 +néo_gangster néo_gangster nom m s 0.01 0 0.01 0 +néo_gothique néo_gothique adj f s 0 0.2 0 0.14 +néo_gothique néo_gothique adj p 0 0.2 0 0.07 +néo_grec néo_grec adj m s 0 0.07 0 0.07 +néo_hellénique néo_hellénique adj f p 0 0.07 0 0.07 +néo_malthusianisme néo_malthusianisme nom m s 0 0.14 0 0.14 +néo_mauresque néo_mauresque adj m s 0 0.14 0 0.07 +néo_mauresque néo_mauresque adj f p 0 0.14 0 0.07 +néo_mouvement néo_mouvement nom m s 0 0.07 0 0.07 +néo_renaissant néo_renaissant adj m s 0 0.07 0 0.07 +néo_romantique néo_romantique adj f s 0.01 0 0.01 0 +néo_russe néo_russe adj s 0 0.14 0 0.14 +néo_réalisme néo_réalisme nom m s 0.1 0.07 0.1 0.07 +néo_réaliste néo_réaliste adj m s 0 0.2 0 0.07 +néo_réaliste néo_réaliste adj m p 0 0.2 0 0.14 +néo_zélandais néo_zélandais adj m 0.11 0.14 0.1 0.14 +néo_zélandais néo_zélandais adj f s 0.11 0.14 0.01 0 +néoclassique néoclassique adj m s 0.01 0.07 0.01 0.07 +néocolonial néocolonial adj m s 0 0.07 0 0.07 +néocolonialisme néocolonialisme nom m s 0.01 0 0.01 0 +néocortex néocortex nom m 0.15 0 0.15 0 +néofascisme néofascisme nom m s 0.01 0 0.01 0 +néogothique néogothique adj m s 0.14 0.07 0.14 0.07 +néolibéralisme néolibéralisme nom m s 0.14 0 0.14 0 +néolithique néolithique nom s 0.02 0.14 0.02 0.14 +néolithiques néolithique adj f p 0.01 0.14 0 0.07 +néologisme néologisme nom m s 0.01 0.61 0.01 0.27 +néologismes néologisme nom m p 0.01 0.61 0 0.34 +néon néon nom m s 1.81 10.81 1.21 7.16 +néonatal néonatal adj m s 0.11 0 0.04 0 +néonatale néonatal adj f s 0.11 0 0.07 0 +néonazie néonazi adj f s 0.11 0 0.01 0 +néonazis néonazi adj m p 0.11 0 0.1 0 +néons néon nom m p 1.81 10.81 0.61 3.65 +néophyte néophyte nom s 0.17 0.95 0.12 0.54 +néophytes néophyte nom p 0.17 0.95 0.05 0.41 +néoplasie néoplasie nom f s 0.01 0 0.01 0 +néoplasique néoplasique adj s 0.04 0 0.04 0 +néoplasme néoplasme nom m s 0.01 0.07 0.01 0.07 +néoplatonisme néoplatonisme nom m s 0 0.07 0 0.07 +néoprène néoprène nom m s 0.03 0 0.03 0 +néoréalisme néoréalisme nom m s 0.02 0 0.02 0 +népalais népalais adj m p 0.03 0.2 0.02 0.07 +népalaise népalais nom f s 0.01 0.2 0 0.14 +népalaises népalais adj f p 0.03 0.2 0.01 0.07 +népenthès népenthès nom m 0.04 0.07 0.04 0.07 +néphrectomie néphrectomie nom f s 0.03 0 0.03 0 +néphrite néphrite nom f s 0.11 0.07 0.11 0.07 +néphrologie néphrologie nom f s 0.05 0 0.05 0 +néphrologue néphrologue nom s 0.03 0 0.03 0 +néphrétique néphrétique adj f s 0.02 0.2 0.01 0.07 +néphrétiques néphrétique adj f p 0.02 0.2 0.01 0.14 +népotisme népotisme nom m s 0.13 0.2 0.13 0.2 +néroli néroli nom m s 0.03 0 0.03 0 +néréide néréide nom f s 0 0.2 0 0.07 +néréides néréide nom f p 0 0.2 0 0.14 +nés naître ver m p 116.11 119.32 8.83 7.5 par:pas; +névralgie névralgie nom f s 0.21 0.61 0.17 0.34 +névralgies névralgie nom f p 0.21 0.61 0.04 0.27 +névralgique névralgique adj m s 0.12 0.14 0.12 0 +névralgiques névralgique adj m p 0.12 0.14 0 0.14 +névrite névrite nom f s 0.17 0.07 0.17 0.07 +névropathe névropathe nom s 0.12 0.14 0.12 0.14 +névroptères névroptère nom m p 0 0.07 0 0.07 +névrose névrose nom f s 1.36 2.5 1.04 1.28 +névroses névrose nom f p 1.36 2.5 0.32 1.22 +névrosé névrosé adj m s 1.2 0.74 0.49 0.14 +névrosée névrosé adj f s 1.2 0.74 0.61 0.41 +névrosées névrosé adj f p 1.2 0.74 0.04 0.14 +névrosés névrosé nom m p 0.58 0.41 0.24 0.2 +névrotique névrotique adj s 0.21 0.27 0.13 0.14 +névrotiques névrotique adj p 0.21 0.27 0.08 0.14 +névé névé nom m s 0 0.27 0 0.14 +névés névé nom m p 0 0.27 0 0.14 +nôtre nôtre pro_pos s 19 23.51 19 23.51 +nôtres nôtres pro_pos p 22.63 21.35 22.63 21.35 +o o nom_sup m 57.07 11.49 57.07 11.49 +oaristys oaristys nom f 0 0.07 0 0.07 +oasis oasis nom f 1.61 6.42 1.61 6.42 +ob ob nom m s 0.25 0.07 0.25 0.07 +obi obi nom f s 0.3 0.07 0.3 0.07 +obituaire obituaire adj s 0 0.07 0 0.07 +objecta objecter ver 0.87 6.49 0 2.43 ind:pas:3s; +objectai objecter ver 0.87 6.49 0 0.47 ind:pas:1s; +objectais objecter ver 0.87 6.49 0.01 0.07 ind:imp:1s;ind:imp:2s; +objectait objecter ver 0.87 6.49 0.01 0.68 ind:imp:3s; +objectal objectal adj m s 0.01 0.07 0 0.07 +objectale objectal adj f s 0.01 0.07 0.01 0 +objectant objecter ver 0.87 6.49 0 0.14 par:pre; +objecte objecter ver 0.87 6.49 0.46 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +objectent objecter ver 0.87 6.49 0 0.07 ind:pre:3p; +objecter objecter ver 0.87 6.49 0.28 0.54 inf; +objectera objecter ver 0.87 6.49 0.01 0.07 ind:fut:3s; +objecterez objecter ver 0.87 6.49 0.01 0.07 ind:fut:2p; +objecteront objecter ver 0.87 6.49 0.01 0 ind:fut:3p; +objecteur objecteur nom m s 0.43 0.2 0.36 0.2 +objecteurs objecteur nom m p 0.43 0.2 0.07 0 +objectez objecter ver 0.87 6.49 0.03 0 imp:pre:2p;ind:pre:2p; +objectif objectif nom m s 18.91 12.43 15.44 9.19 +objectifs objectif nom m p 18.91 12.43 3.46 3.24 +objection objection nom f s 14.18 7.97 12.07 3.78 +objections objection nom f p 14.18 7.97 2.1 4.19 +objectivation objectivation nom f s 0.11 0 0.11 0 +objective objectif adj f s 4.3 3.72 1.34 1.42 +objectivement objectivement adv 0.41 1.82 0.41 1.82 +objectivent objectiver ver 0.19 0.07 0.01 0.07 ind:pre:3p; +objectives objectif adj f p 4.3 3.72 0.2 0.41 +objectivité objectivité nom f s 0.89 0.68 0.89 0.68 +objectèrent objecter ver 0.87 6.49 0 0.07 ind:pas:3p; +objecté objecter ver m s 0.87 6.49 0.04 0.81 par:pas; +objet objet nom m s 45.94 124.32 26.88 67.09 +objets objet nom m p 45.94 124.32 19.06 57.23 +objurgation objurgation nom f s 0 2.03 0 0.14 +objurgations objurgation nom f p 0 2.03 0 1.89 +objurgua objurguer ver 0 0.14 0 0.07 ind:pas:3s; +objurguant objurguer ver 0 0.14 0 0.07 par:pre; +oblatif oblatif adj m s 0 0.2 0 0.07 +oblation oblation nom f s 0 0.2 0 0.2 +oblative oblatif adj f s 0 0.2 0 0.14 +oblats oblat nom m p 0 0.07 0 0.07 +obligado obligado adv 0 0.14 0 0.14 +obligataire obligataire adj m s 0.02 0 0.01 0 +obligataires obligataire adj m p 0.02 0 0.01 0 +obligation obligation nom f s 11.34 15.74 6.66 9.12 +obligations obligation nom f p 11.34 15.74 4.69 6.62 +obligatoire obligatoire adj s 5.57 7.97 5.18 6.49 +obligatoirement obligatoirement adv 1.13 3.04 1.13 3.04 +obligatoires obligatoire adj p 5.57 7.97 0.39 1.49 +oblige obliger ver 91.63 107.57 14.74 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +obligea obliger ver 91.63 107.57 0.47 4.39 ind:pas:3s; +obligeai obliger ver 91.63 107.57 0 0.34 ind:pas:1s; +obligeaient obliger ver 91.63 107.57 0.17 2.43 ind:imp:3p; +obligeais obliger ver 91.63 107.57 0.04 0.47 ind:imp:1s;ind:imp:2s; +obligeait obliger ver 91.63 107.57 1.4 9.32 ind:imp:3s; +obligeamment obligeamment adv 0 0.68 0 0.68 +obligeance obligeance nom f s 0.85 1.62 0.84 1.55 +obligeances obligeance nom f p 0.85 1.62 0.01 0.07 +obligeant obliger ver 91.63 107.57 0.45 4.19 par:pre; +obligeante obligeant adj f s 0.36 1.55 0.14 0.14 +obligeantes obligeant adj f p 0.36 1.55 0.01 0.2 +obligeants obligeant adj m p 0.36 1.55 0.03 0.14 +obligent obliger ver 91.63 107.57 1.93 2.3 ind:pre:3p; +obligeons obliger ver 91.63 107.57 0.06 0.07 imp:pre:1p;ind:pre:1p; +obliger obliger ver 91.63 107.57 6.3 9.39 inf;; +obligera obliger ver 91.63 107.57 0.84 0.2 ind:fut:3s; +obligerai obliger ver 91.63 107.57 0.77 0.07 ind:fut:1s; +obligerais obliger ver 91.63 107.57 0.18 0.07 cnd:pre:1s;cnd:pre:2s; +obligerait obliger ver 91.63 107.57 0.78 1.08 cnd:pre:3s; +obligeras obliger ver 91.63 107.57 0.15 0.14 ind:fut:2s; +obligerez obliger ver 91.63 107.57 0.04 0.07 ind:fut:2p; +obligeriez obliger ver 91.63 107.57 0.05 0.14 cnd:pre:2p; +obligeront obliger ver 91.63 107.57 0.06 0.07 ind:fut:3p; +obliges obliger ver 91.63 107.57 1.28 0.34 ind:pre:2s; +obligez obliger ver 91.63 107.57 2.81 0.2 imp:pre:2p;ind:pre:2p; +obligeât obliger ver 91.63 107.57 0 0.54 sub:imp:3s; +obligiez obliger ver 91.63 107.57 0.16 0 ind:imp:2p; +obligèrent obliger ver 91.63 107.57 0.2 0.61 ind:pas:3p; +obligé obliger ver m s 91.63 107.57 36.43 35.07 par:pas; +obligée obliger ver f s 91.63 107.57 12.01 11.96 par:pas; +obligées obliger ver f p 91.63 107.57 0.75 0.88 par:pas; +obligés obliger ver m p 91.63 107.57 9.56 10.27 par:pas; +obliqua obliquer ver 0.16 5.41 0 2.3 ind:pas:3s; +obliquaient obliquer ver 0.16 5.41 0 0.14 ind:imp:3p; +obliquait obliquer ver 0.16 5.41 0 0.2 ind:imp:3s; +obliquant obliquer ver 0.16 5.41 0.1 0.54 par:pre; +oblique oblique adj s 0.83 11.49 0.81 7.7 +obliquement obliquement adv 0.02 2.23 0.02 2.23 +obliquent obliquer ver 0.16 5.41 0.01 0.14 ind:pre:3p; +obliquer obliquer ver 0.16 5.41 0 0.54 inf; +obliques oblique adj p 0.83 11.49 0.02 3.78 +obliquez obliquer ver 0.16 5.41 0.03 0 imp:pre:2p; +obliquité obliquité nom f s 0.01 0.07 0.01 0.07 +obliquâmes obliquer ver 0.16 5.41 0 0.07 ind:pas:1p; +obliquèrent obliquer ver 0.16 5.41 0 0.34 ind:pas:3p; +obliqué obliquer ver m s 0.16 5.41 0 0.41 par:pas; +oblitère oblitérer ver 0.17 1.42 0 0.27 ind:pre:3s; +oblitèrent oblitérer ver 0.17 1.42 0 0.07 ind:pre:3p; +oblitéraient oblitérer ver 0.17 1.42 0 0.07 ind:imp:3p; +oblitérait oblitérer ver 0.17 1.42 0 0.27 ind:imp:3s; +oblitération oblitération nom f s 0.03 0.07 0.03 0.07 +oblitérer oblitérer ver 0.17 1.42 0.07 0.2 inf; +oblitérons oblitérer ver 0.17 1.42 0.01 0 imp:pre:1p; +oblitérèrent oblitérer ver 0.17 1.42 0 0.07 ind:pas:3p; +oblitéré oblitérer ver m s 0.17 1.42 0.04 0.14 par:pas; +oblitérée oblitérer ver f s 0.17 1.42 0.02 0.14 par:pas; +oblitérées oblitérer ver f p 0.17 1.42 0.01 0.14 par:pas; +oblitérés oblitérer ver m p 0.17 1.42 0.02 0.07 par:pas; +oblong oblong adj m s 0.05 3.24 0.02 1.01 +oblongs oblong adj m p 0.05 3.24 0 0.27 +oblongue oblong adj f s 0.05 3.24 0.03 1.49 +oblongues oblong adj f p 0.05 3.24 0 0.47 +obnubila obnubiler ver 0.5 1.82 0 0.07 ind:pas:3s; +obnubilait obnubiler ver 0.5 1.82 0.01 0 ind:imp:3s; +obnubilant obnubiler ver 0.5 1.82 0 0.07 par:pre; +obnubilation obnubilation nom f s 0 0.14 0 0.14 +obnubile obnubiler ver 0.5 1.82 0.03 0.07 ind:pre:3s; +obnubiler obnubiler ver 0.5 1.82 0.02 0.27 inf; +obnubilé obnubiler ver m s 0.5 1.82 0.22 0.88 par:pas; +obnubilée obnubiler ver f s 0.5 1.82 0.17 0.07 par:pas; +obnubilées obnubiler ver f p 0.5 1.82 0 0.07 par:pas; +obnubilés obnubiler ver m p 0.5 1.82 0.04 0.34 par:pas; +obole obole nom f s 0.11 1.22 0.11 1.01 +oboles obole nom f p 0.11 1.22 0 0.2 +obscur obscur adj m s 11.06 67.57 5 29.12 +obscurantisme obscurantisme nom m s 0.14 0.81 0.14 0.74 +obscurantismes obscurantisme nom m p 0.14 0.81 0 0.07 +obscurantiste obscurantiste nom s 0.14 0 0.14 0 +obscurci obscurcir ver m s 1.42 6.69 0.57 1.28 par:pas; +obscurcie obscurcir ver f s 1.42 6.69 0.15 0.74 par:pas; +obscurcies obscurcir ver f p 1.42 6.69 0 0.2 par:pas; +obscurcir obscurcir ver 1.42 6.69 0.24 0.88 inf; +obscurcira obscurcir ver 1.42 6.69 0.04 0.14 ind:fut:3s; +obscurcirait obscurcir ver 1.42 6.69 0 0.07 cnd:pre:3s; +obscurcis obscurcir ver m p 1.42 6.69 0 0.27 par:pas; +obscurcissaient obscurcir ver 1.42 6.69 0.01 0.47 ind:imp:3p; +obscurcissait obscurcir ver 1.42 6.69 0.01 0.68 ind:imp:3s; +obscurcissant obscurcir ver 1.42 6.69 0 0.14 par:pre; +obscurcissement obscurcissement nom m s 0.11 0.41 0.11 0.27 +obscurcissements obscurcissement nom m p 0.11 0.41 0 0.14 +obscurcissent obscurcir ver 1.42 6.69 0.06 0.47 ind:pre:3p; +obscurcit obscurcir ver 1.42 6.69 0.34 1.28 ind:pre:3s;ind:pas:3s; +obscurcît obscurcir ver 1.42 6.69 0 0.07 sub:imp:3s; +obscure obscur adj f s 11.06 67.57 3.46 20.61 +obscures obscur adj f p 11.06 67.57 1.32 9.53 +obscurité obscurité nom f s 14.33 49.39 14.33 48.65 +obscurités obscurité nom f p 14.33 49.39 0 0.74 +obscurs obscur adj m p 11.06 67.57 1.28 8.31 +obscurément obscurément adv 0.01 6.96 0.01 6.96 +obscène obscène adj s 4.48 13.04 3.25 7.91 +obscènement obscènement adv 0.01 0.27 0.01 0.27 +obscènes obscène adj p 4.48 13.04 1.23 5.14 +obscénité obscénité nom f s 1.63 3.78 0.92 2.23 +obscénités obscénité nom f p 1.63 3.78 0.71 1.55 +observa observer ver 42.66 116.01 0.18 19.46 ind:pas:3s; +observable observable adj m s 0.03 0 0.03 0 +observai observer ver 42.66 116.01 0.01 1.76 ind:pas:1s; +observaient observer ver 42.66 116.01 0.26 3.85 ind:imp:3p; +observais observer ver 42.66 116.01 1.39 5.2 ind:imp:1s;ind:imp:2s; +observait observer ver 42.66 116.01 1.23 19.73 ind:imp:3s; +observance observance nom f s 0.14 0.34 0.14 0.27 +observances observance nom f p 0.14 0.34 0 0.07 +observant observer ver 42.66 116.01 1.17 6.89 par:pre; +observateur observateur nom m s 3.08 6.08 1.94 4.53 +observateurs observateur nom m p 3.08 6.08 1.05 1.35 +observation observation nom f s 8.07 15.27 6.91 11.08 +observations observation nom f p 8.07 15.27 1.16 4.19 +observatoire observatoire nom m s 1.25 3.18 1.23 2.84 +observatoires observatoire nom m p 1.25 3.18 0.02 0.34 +observatrice observateur adj f s 1.55 0.68 0.24 0.07 +observatrices observateur nom f p 3.08 6.08 0 0.14 +observe observer ver 42.66 116.01 11.48 16.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +observent observer ver 42.66 116.01 1.41 2.16 ind:pre:3p; +observer observer ver 42.66 116.01 11.22 24.26 inf; +observera observer ver 42.66 116.01 0.11 0.07 ind:fut:3s; +observerai observer ver 42.66 116.01 0.51 0.07 ind:fut:1s; +observeraient observer ver 42.66 116.01 0 0.14 cnd:pre:3p; +observerais observer ver 42.66 116.01 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +observerait observer ver 42.66 116.01 0.04 0.2 cnd:pre:3s; +observerez observer ver 42.66 116.01 0.05 0.07 ind:fut:2p; +observerons observer ver 42.66 116.01 0.18 0 ind:fut:1p; +observeront observer ver 42.66 116.01 0.03 0 ind:fut:3p; +observes observer ver 42.66 116.01 0.75 0.34 ind:pre:2s;sub:pre:2s; +observez observer ver 42.66 116.01 3.63 1.35 imp:pre:2p;ind:pre:2p; +observiez observer ver 42.66 116.01 0.15 0 ind:imp:2p;sub:pre:2p; +observions observer ver 42.66 116.01 0.13 0.74 ind:imp:1p; +observons observer ver 42.66 116.01 1.27 0.47 imp:pre:1p;ind:pre:1p; +observâmes observer ver 42.66 116.01 0 0.2 ind:pas:1p; +observèrent observer ver 42.66 116.01 0 1.69 ind:pas:3p; +observé observer ver m s 42.66 116.01 5.53 6.96 par:pas; +observée observer ver f s 42.66 116.01 0.83 2.03 par:pas; +observées observer ver f p 42.66 116.01 0.22 0.54 par:pas; +observés observer ver m p 42.66 116.01 0.86 1.08 par:pas; +obsessif obsessif adj m s 0.2 0 0.13 0 +obsession obsession nom f s 8.79 11.15 7.76 8.78 +obsessionnel obsessionnel adj m s 1.43 1.15 0.87 0.41 +obsessionnelle obsessionnel adj f s 1.43 1.15 0.37 0.47 +obsessionnellement obsessionnellement adv 0.01 0.41 0.01 0.41 +obsessionnelles obsessionnel adj f p 1.43 1.15 0.06 0.07 +obsessionnels obsessionnel adj m p 1.43 1.15 0.13 0.2 +obsessions obsession nom f p 8.79 11.15 1.02 2.36 +obsessive obsessif adj f s 0.2 0 0.08 0 +obsidienne obsidienne nom f s 0.03 0.74 0.03 0.74 +obsidional obsidional adj m s 0 0.41 0 0.07 +obsidionale obsidional adj f s 0 0.41 0 0.34 +obsolescence obsolescence nom f s 0.02 0.07 0.02 0.07 +obsolète obsolète adj s 1.19 0.14 0.84 0.07 +obsolètes obsolète adj p 1.19 0.14 0.35 0.07 +obstacle obstacle nom m s 10.65 26.01 6.58 14.12 +obstacles obstacle nom m p 10.65 26.01 4.07 11.89 +obstina obstiner ver 3.77 16.49 0.03 0.88 ind:pas:3s; +obstinai obstiner ver 3.77 16.49 0 0.14 ind:pas:1s; +obstinaient obstiner ver 3.77 16.49 0.02 0.74 ind:imp:3p; +obstinais obstiner ver 3.77 16.49 0 0.68 ind:imp:1s;ind:imp:2s; +obstinait obstiner ver 3.77 16.49 0.03 4.66 ind:imp:3s; +obstinant obstiner ver 3.77 16.49 0 0.88 par:pre; +obstination obstination nom f s 1.26 12.23 1.26 12.09 +obstinations obstination nom f p 1.26 12.23 0 0.14 +obstine obstiner ver 3.77 16.49 0.94 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obstinent obstiner ver 3.77 16.49 0.16 0.81 ind:pre:3p; +obstiner obstiner ver 3.77 16.49 0.53 1.35 inf; +obstinera obstiner ver 3.77 16.49 0.01 0.07 ind:fut:3s; +obstineraient obstiner ver 3.77 16.49 0 0.07 cnd:pre:3p; +obstinerait obstiner ver 3.77 16.49 0 0.07 cnd:pre:3s; +obstineras obstiner ver 3.77 16.49 0 0.07 ind:fut:2s; +obstinerez obstiner ver 3.77 16.49 0 0.14 ind:fut:2p; +obstineriez obstiner ver 3.77 16.49 0 0.07 cnd:pre:2p; +obstineront obstiner ver 3.77 16.49 0 0.14 ind:fut:3p; +obstines obstiner ver 3.77 16.49 0.77 0.27 ind:pre:2s;sub:pre:2s; +obstinez obstiner ver 3.77 16.49 0.34 0.27 imp:pre:2p;ind:pre:2p; +obstinions obstiner ver 3.77 16.49 0 0.14 ind:imp:1p; +obstinons obstiner ver 3.77 16.49 0.01 0.14 ind:pre:1p; +obstinèrent obstiner ver 3.77 16.49 0 0.14 ind:pas:3p; +obstiné obstiner ver m s 3.77 16.49 0.51 1.15 par:pas; +obstinée obstiner ver f s 3.77 16.49 0.28 0.41 par:pas; +obstinées obstiné adj f p 0.55 6.96 0.01 0.68 +obstinément obstinément adv 0.48 10.27 0.48 10.27 +obstinés obstiner ver m p 3.77 16.49 0.14 0.34 par:pas; +obstrua obstruer ver 1.35 4.86 0.01 0.14 ind:pas:3s; +obstruaient obstruer ver 1.35 4.86 0.01 0.68 ind:imp:3p; +obstruait obstruer ver 1.35 4.86 0.03 0.61 ind:imp:3s; +obstruant obstruer ver 1.35 4.86 0.03 0.27 par:pre; +obstructif obstructif adj m s 0.03 0 0.01 0 +obstruction obstruction nom f s 3.64 0.47 3.2 0.47 +obstructionnisme obstructionnisme nom m s 0.01 0 0.01 0 +obstructions obstruction nom f p 3.64 0.47 0.44 0 +obstructive obstructif adj f s 0.03 0 0.01 0 +obstrue obstruer ver 1.35 4.86 0.55 0.54 imp:pre:2s;ind:pre:3s; +obstruent obstruer ver 1.35 4.86 0 0.47 ind:pre:3p; +obstruer obstruer ver 1.35 4.86 0.04 0.27 inf; +obstrueraient obstruer ver 1.35 4.86 0 0.07 cnd:pre:3p; +obstrueront obstruer ver 1.35 4.86 0.1 0 ind:fut:3p; +obstruez obstruer ver 1.35 4.86 0.02 0 imp:pre:2p;ind:pre:2p; +obstrué obstruer ver m s 1.35 4.86 0.31 0.54 par:pas; +obstruée obstruer ver f s 1.35 4.86 0.07 0.81 par:pas; +obstruées obstruer ver f p 1.35 4.86 0.01 0.27 par:pas; +obstrués obstruer ver m p 1.35 4.86 0.17 0.2 par:pas; +obstétrical obstétrical adj m s 0.01 0 0.01 0 +obstétricien obstétricien nom m s 0.35 0.07 0.28 0.07 +obstétricienne obstétricien nom f s 0.35 0.07 0.04 0 +obstétriciens obstétricien nom m p 0.35 0.07 0.04 0 +obstétrique obstétrique nom f s 0.83 0.14 0.83 0.14 +obsède obséder ver 11.53 9.12 2.15 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obsèdent obséder ver 11.53 9.12 0.19 0.27 ind:pre:3p; +obsèdes obséder ver 11.53 9.12 0.08 0 ind:pre:2s; +obsèques obsèques nom f p 4.32 4.8 4.32 4.8 +obséda obséder ver 11.53 9.12 0 0.14 ind:pas:3s; +obsédaient obséder ver 11.53 9.12 0 0.34 ind:imp:3p; +obsédais obséder ver 11.53 9.12 0.04 0 ind:imp:1s;ind:imp:2s; +obsédait obséder ver 11.53 9.12 0.4 1.82 ind:imp:3s; +obsédant obsédant adj m s 0.22 6.28 0.12 1.69 +obsédante obsédant adj f s 0.22 6.28 0.05 3.58 +obsédantes obsédant adj f p 0.22 6.28 0.02 0.54 +obsédants obsédant adj m p 0.22 6.28 0.03 0.47 +obséder obséder ver 11.53 9.12 0.12 0.61 inf; +obsédèrent obséder ver 11.53 9.12 0.14 0.07 ind:pas:3p; +obsédé obséder ver m s 11.53 9.12 5.12 2.57 par:pas; +obsédée obséder ver f s 11.53 9.12 2.19 0.95 par:pas; +obsédées obséder ver f p 11.53 9.12 0.1 0.2 par:pas; +obsédés obsédé nom m p 3.73 2.23 1.33 0.95 +obséquieuse obséquieux adj f s 0.15 1.01 0.02 0.2 +obséquieusement obséquieusement adv 0.01 0.14 0.01 0.14 +obséquieuses obséquieux adj f p 0.15 1.01 0 0.14 +obséquieux obséquieux adj m s 0.15 1.01 0.13 0.68 +obséquiosité obséquiosité nom f s 0.01 0.54 0.01 0.54 +obtempère obtempérer ver 1.12 2.16 0.18 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obtempéra obtempérer ver 1.12 2.16 0 0.47 ind:pas:3s; +obtempérai obtempérer ver 1.12 2.16 0 0.07 ind:pas:1s; +obtempéraient obtempérer ver 1.12 2.16 0.01 0.07 ind:imp:3p; +obtempérait obtempérer ver 1.12 2.16 0 0.14 ind:imp:3s; +obtempérer obtempérer ver 1.12 2.16 0.82 0.74 inf; +obtempérez obtempérer ver 1.12 2.16 0.07 0 imp:pre:2p;ind:pre:2p; +obtempérions obtempérer ver 1.12 2.16 0 0.07 ind:imp:1p; +obtempérèrent obtempérer ver 1.12 2.16 0 0.07 ind:pas:3p; +obtempéré obtempérer ver m s 1.12 2.16 0.04 0.2 par:pas; +obtenaient obtenir ver 88.08 80.95 0.04 0.68 ind:imp:3p; +obtenais obtenir ver 88.08 80.95 0.51 1.08 ind:imp:1s;ind:imp:2s; +obtenait obtenir ver 88.08 80.95 0.35 2.36 ind:imp:3s; +obtenant obtenir ver 88.08 80.95 0.19 1.22 par:pre; +obtenez obtenir ver 88.08 80.95 2.4 0.2 imp:pre:2p;ind:pre:2p; +obteniez obtenir ver 88.08 80.95 0.27 0 ind:imp:2p; +obtenions obtenir ver 88.08 80.95 0.06 0.2 ind:imp:1p; +obtenir obtenir ver 88.08 80.95 36.7 37.77 inf; +obtenons obtenir ver 88.08 80.95 0.87 0.41 imp:pre:1p;ind:pre:1p; +obtention obtention nom f s 0.53 0.47 0.53 0.47 +obtenu obtenir ver m s 88.08 80.95 20.36 14.73 par:pas; +obtenue obtenir ver f s 88.08 80.95 0.67 2.03 par:pas; +obtenues obtenir ver f p 88.08 80.95 0.55 0.68 par:pas; +obtenus obtenir ver m p 88.08 80.95 0.91 1.35 par:pas; +obtiendra obtenir ver 88.08 80.95 1.24 0.41 ind:fut:3s; +obtiendrai obtenir ver 88.08 80.95 1.62 0.2 ind:fut:1s; +obtiendraient obtenir ver 88.08 80.95 0 0.34 cnd:pre:3p; +obtiendrais obtenir ver 88.08 80.95 0.86 0.2 cnd:pre:1s;cnd:pre:2s; +obtiendrait obtenir ver 88.08 80.95 0.66 1.22 cnd:pre:3s; +obtiendras obtenir ver 88.08 80.95 0.85 0.07 ind:fut:2s; +obtiendrez obtenir ver 88.08 80.95 1.39 0.47 ind:fut:2p; +obtiendriez obtenir ver 88.08 80.95 0.17 0 cnd:pre:2p; +obtiendrions obtenir ver 88.08 80.95 0.03 0.07 cnd:pre:1p; +obtiendrons obtenir ver 88.08 80.95 0.53 0.41 ind:fut:1p; +obtiendront obtenir ver 88.08 80.95 0.55 0.27 ind:fut:3p; +obtienne obtenir ver 88.08 80.95 1.44 0.88 sub:pre:1s;sub:pre:3s; +obtiennent obtenir ver 88.08 80.95 1.23 0.47 ind:pre:3p; +obtiennes obtenir ver 88.08 80.95 0.33 0.07 sub:pre:2s; +obtiens obtenir ver 88.08 80.95 5.46 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +obtient obtenir ver 88.08 80.95 6.75 3.18 ind:pre:3s; +obtinrent obtenir ver 88.08 80.95 0.2 0.74 ind:pas:3p; +obtins obtenir ver 88.08 80.95 0.16 2.57 ind:pas:1s;ind:pas:2s; +obtinsse obtenir ver 88.08 80.95 0 0.07 sub:imp:1s; +obtint obtenir ver 88.08 80.95 0.74 5.95 ind:pas:3s; +obtura obturer ver 0.13 0.61 0 0.07 ind:pas:3s; +obturait obturer ver 0.13 0.61 0 0.14 ind:imp:3s; +obturateur obturateur adj m s 0.13 0 0.12 0 +obturateurs obturateur nom m p 0.07 0.27 0.01 0.07 +obturation obturation nom f s 0.06 0 0.06 0 +obture obturer ver 0.13 0.61 0.01 0.2 ind:pre:1s;ind:pre:3s; +obturer obturer ver 0.13 0.61 0.08 0.07 inf; +obturez obturer ver 0.13 0.61 0.01 0 imp:pre:2p; +obturé obturer ver m s 0.13 0.61 0.03 0.07 par:pas; +obturée obturer ver f s 0.13 0.61 0 0.07 par:pas; +obtus obtus adj m 1.17 4.66 0.85 2.7 +obtuse obtus adj f s 1.17 4.66 0.32 1.89 +obtuses obtus adj f p 1.17 4.66 0 0.07 +obtînmes obtenir ver 88.08 80.95 0.01 0.07 ind:pas:1p; +obtînt obtenir ver 88.08 80.95 0 0.14 sub:imp:3s; +obus obus nom m 5.13 31.82 5.13 31.82 +obusier obusier nom m s 0.05 0.68 0.01 0.07 +obusiers obusier nom m p 0.05 0.68 0.04 0.61 +obverse obvers nom f s 0 0.07 0 0.07 +obvie obvie adj s 0 0.07 0 0.07 +obvier obvier ver 0 0.14 0 0.14 inf; +obère obérer ver 0 0.2 0 0.07 ind:pre:1s; +obèse obèse adj s 1.4 3.58 1.11 2.57 +obèses obèse adj p 1.4 3.58 0.29 1.01 +obédience obédience nom f s 0.14 2.36 0.14 2.3 +obédiences obédience nom f p 0.14 2.36 0 0.07 +obéi obéir ver m s 45.12 45.88 3.38 4.59 par:pas; +obéie obéir ver f s 45.12 45.88 0.01 0.27 par:pas; +obéir obéir ver 45.12 45.88 13.76 14.26 inf;;inf;;inf;; +obéira obéir ver 45.12 45.88 0.86 0.61 ind:fut:3s; +obéirai obéir ver 45.12 45.88 1.47 0.2 ind:fut:1s; +obéiraient obéir ver 45.12 45.88 0.01 0.07 cnd:pre:3p; +obéirais obéir ver 45.12 45.88 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +obéirait obéir ver 45.12 45.88 0.03 0.07 cnd:pre:3s; +obéiras obéir ver 45.12 45.88 0.32 0.14 ind:fut:2s; +obéirent obéir ver 45.12 45.88 0 0.54 ind:pas:3p; +obéirez obéir ver 45.12 45.88 0.33 0.07 ind:fut:2p; +obéiriez obéir ver 45.12 45.88 0.03 0.07 cnd:pre:2p; +obéirons obéir ver 45.12 45.88 0.24 0.07 ind:fut:1p; +obéiront obéir ver 45.12 45.88 0.21 0.07 ind:fut:3p; +obéis obéir ver m p 45.12 45.88 10.93 2.91 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +obéissaient obéir ver 45.12 45.88 0.46 1.15 ind:imp:3p; +obéissais obéir ver 45.12 45.88 0.36 0.54 ind:imp:1s;ind:imp:2s; +obéissait obéir ver 45.12 45.88 0.36 4.05 ind:imp:3s; +obéissance obéissance nom f s 4.24 5.07 4.24 5.07 +obéissant obéissant adj m s 2.59 2.3 0.99 1.15 +obéissante obéissant adj f s 2.59 2.3 1.1 0.41 +obéissantes obéissant adj f p 2.59 2.3 0.11 0.34 +obéissants obéissant adj m p 2.59 2.3 0.39 0.41 +obéisse obéir ver 45.12 45.88 0.39 0.41 sub:pre:1s;sub:pre:3s; +obéissent obéir ver 45.12 45.88 2.04 1.55 ind:pre:3p; +obéisses obéir ver 45.12 45.88 0.05 0.07 sub:pre:2s; +obéissez obéir ver 45.12 45.88 4.88 0.27 imp:pre:2p;ind:pre:2p; +obéissiez obéir ver 45.12 45.88 0.19 0.07 ind:imp:2p; +obéissions obéir ver 45.12 45.88 0 0.41 ind:imp:1p; +obéissons obéir ver 45.12 45.88 0.49 0.07 imp:pre:1p;ind:pre:1p; +obéit obéir ver 45.12 45.88 3.54 9.66 ind:pre:3s;ind:pas:3s; +obélisque obélisque nom m s 0.36 1.22 0.1 0.74 +obélisques obélisque nom m p 0.36 1.22 0.27 0.47 +obérant obérer ver 0 0.2 0 0.07 par:pre; +obérer obérer ver 0 0.2 0 0.07 inf; +obésité obésité nom f s 0.73 1.08 0.73 0.95 +obésités obésité nom f p 0.73 1.08 0 0.14 +obéîmes obéir ver 45.12 45.88 0.01 0.07 ind:pas:1p; +ocarina ocarina nom m s 0.03 0.27 0.03 0.2 +ocarinas ocarina nom m p 0.03 0.27 0 0.07 +occase occase nom f s 1.25 5.34 1.14 4.53 +occases occase nom f p 1.25 5.34 0.11 0.81 +occasion occasion nom f s 61.89 105.74 55.39 92.09 +occasionna occasionner ver 0.7 1.69 0 0.07 ind:pas:3s; +occasionnait occasionner ver 0.7 1.69 0 0.14 ind:imp:3s; +occasionnant occasionner ver 0.7 1.69 0.02 0.07 par:pre; +occasionne occasionner ver 0.7 1.69 0.02 0.34 ind:pre:1s;ind:pre:3s; +occasionnel occasionnel adj m s 0.99 1.22 0.46 0.54 +occasionnelle occasionnel adj f s 0.99 1.22 0.33 0.14 +occasionnellement occasionnellement adv 0.59 0.27 0.59 0.27 +occasionnelles occasionnel adj f p 0.99 1.22 0.06 0.14 +occasionnels occasionnel adj m p 0.99 1.22 0.14 0.41 +occasionnent occasionner ver 0.7 1.69 0.01 0.07 ind:pre:3p; +occasionner occasionner ver 0.7 1.69 0.09 0.2 inf; +occasionnèrent occasionner ver 0.7 1.69 0 0.07 ind:pas:3p; +occasionné occasionner ver m s 0.7 1.69 0.23 0.07 par:pas; +occasionnée occasionner ver f s 0.7 1.69 0.12 0.14 par:pas; +occasionnées occasionner ver f p 0.7 1.69 0.03 0.2 par:pas; +occasionnés occasionner ver m p 0.7 1.69 0.19 0.34 par:pas; +occasions occasion nom f p 61.89 105.74 6.5 13.65 +occident occident nom m s 0.38 1.69 0.38 1.69 +occidental occidental adj m s 5.07 15.61 1.5 3.65 +occidentale occidental adj f s 5.07 15.61 2.15 8.65 +occidentales occidental adj f p 5.07 15.61 0.36 1.69 +occidentalisation occidentalisation nom f s 0.1 0.14 0.1 0.14 +occidentalise occidentaliser ver 0.01 0.07 0.01 0.07 ind:pre:3s; +occidentalisme occidentalisme nom m s 0 0.07 0 0.07 +occidentaux occidental adj m p 5.07 15.61 1.06 1.62 +occipital occipital adj m s 0.49 0.2 0.38 0.14 +occipitale occipital adj f s 0.49 0.2 0.08 0 +occipitales occipital adj f p 0.49 0.2 0.01 0.07 +occipitaux occipital adj m p 0.49 0.2 0.02 0 +occiput occiput nom m s 0.19 1.69 0.19 1.69 +occire occire ver 0.1 0.41 0.1 0.41 inf; +occis occis adj m 0.28 0.68 0.28 0.68 +occitan occitan nom m s 0 0.34 0 0.34 +occitane occitan adj f s 0.01 0.41 0.01 0.27 +occitans occitan adj m p 0.01 0.41 0 0.07 +occlusion occlusion nom f s 0.31 0.34 0.31 0.34 +occlut occlure ver 0 0.07 0 0.07 ind:pas:3s; +occulta occulter ver 0.86 1.01 0 0.07 ind:pas:3s; +occultaient occulter ver 0.86 1.01 0 0.07 ind:imp:3p; +occultait occulter ver 0.86 1.01 0.01 0.34 ind:imp:3s; +occultant occulter ver 0.86 1.01 0.04 0 par:pre; +occultation occultation nom f s 0.28 0.27 0.28 0.2 +occultations occultation nom f p 0.28 0.27 0 0.07 +occulte occulte adj s 2.28 3.24 0.96 1.76 +occultement occultement adv 0 0.07 0 0.07 +occultent occulter ver 0.86 1.01 0.12 0.07 ind:pre:3p; +occulter occulter ver 0.86 1.01 0.29 0.34 inf; +occultera occulter ver 0.86 1.01 0.01 0 ind:fut:3s; +occultes occulte adj p 2.28 3.24 1.33 1.49 +occultez occulter ver 0.86 1.01 0.07 0 imp:pre:2p; +occultisme occultisme nom m s 0.33 0.34 0.33 0.27 +occultismes occultisme nom m p 0.33 0.34 0 0.07 +occultiste occultiste nom s 0.11 0.14 0.01 0 +occultistes occultiste nom p 0.11 0.14 0.1 0.14 +occulté occulter ver m s 0.86 1.01 0.22 0.14 par:pas; +occultée occulter ver f s 0.86 1.01 0.08 0 par:pas; +occupa occuper ver 375.14 219.8 0.1 3.78 ind:pas:3s; +occupai occuper ver 375.14 219.8 0.01 0.61 ind:pas:1s; +occupaient occuper ver 375.14 219.8 0.93 10.34 ind:imp:3p; +occupais occuper ver 375.14 219.8 3.37 3.45 ind:imp:1s;ind:imp:2s; +occupait occuper ver 375.14 219.8 4.36 31.42 ind:imp:3s; +occupant occupant nom m s 2.38 10.07 0.62 3.99 +occupante occupant nom f s 2.38 10.07 0.03 0.14 +occupantes occupant adj f p 0.18 0.81 0.01 0.07 +occupants occupant nom m p 2.38 10.07 1.73 5.88 +occupas occuper ver 375.14 219.8 0 0.07 ind:pas:2s; +occupation occupation nom f s 6.71 30.61 4.91 22.84 +occupations occupation nom f p 6.71 30.61 1.8 7.77 +occupe occuper ver 375.14 219.8 139.84 37.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +occupent occuper ver 375.14 219.8 6.45 7.3 ind:pre:3p; +occuper occuper ver 375.14 219.8 97.22 56.69 inf;; +occupera occuper ver 375.14 219.8 10.27 2.5 ind:fut:3s; +occuperai occuper ver 375.14 219.8 10.51 1.69 ind:fut:1s; +occuperaient occuper ver 375.14 219.8 0.31 0.54 cnd:pre:3p; +occuperais occuper ver 375.14 219.8 1.03 0.34 cnd:pre:1s;cnd:pre:2s; +occuperait occuper ver 375.14 219.8 0.67 2.5 cnd:pre:3s; +occuperas occuper ver 375.14 219.8 1.09 0.41 ind:fut:2s; +occuperez occuper ver 375.14 219.8 0.56 0.2 ind:fut:2p; +occuperions occuper ver 375.14 219.8 0.03 0.07 cnd:pre:1p; +occuperons occuper ver 375.14 219.8 0.79 0 ind:fut:1p; +occuperont occuper ver 375.14 219.8 1.61 0.61 ind:fut:3p; +occupes occuper ver 375.14 219.8 12.6 0.95 ind:pre:2s;sub:pre:2s; +occupez occuper ver 375.14 219.8 15.36 2.23 imp:pre:2p;ind:pre:2p; +occupiez occuper ver 375.14 219.8 1.08 0.07 ind:imp:2p; +occupions occuper ver 375.14 219.8 0.06 1.35 ind:imp:1p; +occupons occuper ver 375.14 219.8 2.23 0.95 imp:pre:1p;ind:pre:1p; +occupât occuper ver 375.14 219.8 0 0.88 sub:imp:3s; +occupèrent occuper ver 375.14 219.8 0.16 1.08 ind:pas:3p; +occupé occuper ver m s 375.14 219.8 41.37 25.47 par:pas; +occupée occuper ver f s 375.14 219.8 15.71 13.31 par:pas; +occupées occuper ver f p 375.14 219.8 1.67 3.31 par:pas; +occupés occuper ver m p 375.14 219.8 5.24 7.36 par:pas; +occurrence occurrence nom f s 1.57 7.43 1.56 7.16 +occurrences occurrence nom f p 1.57 7.43 0.01 0.27 +occurrentes occurrent adj f p 0 0.07 0 0.07 +ocelles ocelle nom m p 0 0.14 0 0.14 +ocellée ocellé adj f s 0 0.41 0 0.2 +ocellés ocellé adj m p 0 0.41 0 0.2 +ocelot ocelot nom m s 0.2 0.14 0.17 0.07 +ocelots ocelot nom m p 0.2 0.14 0.03 0.07 +ocre ocre nom s 0.29 4.46 0.26 3.78 +ocres ocre nom p 0.29 4.46 0.04 0.68 +ocreux ocreux adj m 0 0.2 0 0.2 +ocré ocrer ver m s 0 0.34 0 0.07 par:pas; +ocrée ocré adj f s 0 0.27 0 0.2 +ocrées ocrer ver f p 0 0.34 0 0.07 par:pas; +ocrés ocrer ver m p 0 0.34 0 0.14 par:pas; +octane octane nom m s 0.09 0 0.09 0 +octant octant nom m s 0 0.14 0 0.14 +octante octante adj_num 0 0.14 0 0.14 +octave octave nom f s 1.11 1.82 1.07 1.42 +octaves octave nom f p 1.11 1.82 0.03 0.41 +octavia octavier ver 0.34 0 0.28 0 ind:pas:3s; +octavie octavier ver 0.34 0 0.07 0 imp:pre:2s; +octavo octavo adv 0.01 0 0.01 0 +octet octet nom m s 0.02 0 0.01 0 +octets octet nom m p 0.02 0 0.01 0 +octidi octidi nom m s 0 0.07 0 0.07 +octobre octobre nom m 11.78 36.28 11.78 36.28 +octogonal octogonal adj m s 0.23 1.82 0.2 0.74 +octogonale octogonal adj f s 0.23 1.82 0.03 0.95 +octogonales octogonal adj f p 0.23 1.82 0 0.07 +octogonaux octogonal adj m p 0.23 1.82 0 0.07 +octogone octogone nom m s 0.04 0.61 0.04 0.41 +octogones octogone nom m p 0.04 0.61 0 0.2 +octogénaire octogénaire nom s 0.22 0.41 0.21 0.27 +octogénaires octogénaire nom p 0.22 0.41 0.01 0.14 +octosyllabe octosyllabe nom m s 0.14 0.34 0 0.07 +octosyllabes octosyllabe nom m p 0.14 0.34 0.14 0.27 +octroi octroi nom m s 0.18 2.03 0.17 1.82 +octroie octroyer ver 1.35 3.58 0.41 0.47 ind:pre:1s;ind:pre:3s; +octroient octroyer ver 1.35 3.58 0.03 0.14 ind:pre:3p; +octroiera octroyer ver 1.35 3.58 0.02 0.07 ind:fut:3s; +octrois octroi nom m p 0.18 2.03 0.01 0.2 +octroya octroyer ver 1.35 3.58 0.01 0.47 ind:pas:3s; +octroyaient octroyer ver 1.35 3.58 0 0.27 ind:imp:3p; +octroyait octroyer ver 1.35 3.58 0.01 0.2 ind:imp:3s; +octroyant octroyer ver 1.35 3.58 0.02 0.14 par:pre; +octroyer octroyer ver 1.35 3.58 0.11 0.27 inf; +octroyons octroyer ver 1.35 3.58 0.01 0.07 ind:pre:1p; +octroyât octroyer ver 1.35 3.58 0 0.07 sub:imp:3s; +octroyé octroyer ver m s 1.35 3.58 0.59 0.88 par:pas; +octroyée octroyer ver f s 1.35 3.58 0.13 0.27 par:pas; +octroyées octroyer ver f p 1.35 3.58 0 0.14 par:pas; +octroyés octroyer ver m p 1.35 3.58 0 0.14 par:pas; +octuor octuor nom m s 0.01 0.14 0.01 0.14 +octuple octuple adj f s 0.02 0 0.02 0 +oculaire oculaire adj s 3.36 0.81 1.98 0.2 +oculaires oculaire adj p 3.36 0.81 1.38 0.61 +oculi oculus nom m p 0.02 0 0.01 0 +oculiste oculiste nom s 0.37 0.81 0.37 0.74 +oculistes oculiste nom p 0.37 0.81 0 0.07 +oculomoteur oculomoteur adj m s 0.01 0 0.01 0 +oculus oculus nom m 0.02 0 0.01 0 +ocytocine ocytocine nom f s 0.03 0 0.03 0 +océan océan nom m s 24.89 28.78 22.86 24.93 +océane océan adj f s 0.02 0.47 0.02 0.47 +océanienne océanien adj f s 0 0.07 0 0.07 +océanique océanique adj s 0.26 0.81 0.22 0.68 +océaniques océanique adj m p 0.26 0.81 0.04 0.14 +océanographe océanographe nom s 0.07 0 0.07 0 +océanographie océanographie nom f s 0.05 0 0.05 0 +océanographique océanographique adj s 0.33 0 0.3 0 +océanographiques océanographique adj m p 0.33 0 0.03 0 +océanologie océanologie nom f s 0.01 0 0.01 0 +océanologue océanologue nom s 0.08 0 0.08 0 +océans océan nom m p 24.89 28.78 2.03 3.85 +odalisque odalisque nom f s 0.38 1.28 0.22 0.54 +odalisques odalisque nom f p 0.38 1.28 0.16 0.74 +ode ode nom f s 0.96 0.81 0.94 0.61 +odelette odelette nom f s 0.01 0.07 0.01 0 +odelettes odelette nom f p 0.01 0.07 0 0.07 +odes ode nom f p 0.96 0.81 0.03 0.2 +odeur odeur nom f s 49.57 195.68 47.19 159.86 +odeurs odeur nom f p 49.57 195.68 2.38 35.81 +odieuse odieux adj f s 8.59 14.32 2.14 3.78 +odieusement odieusement adv 0.03 0.61 0.03 0.61 +odieuses odieux adj f p 8.59 14.32 0.23 1.01 +odieux odieux adj m 8.59 14.32 6.22 9.53 +odomètre odomètre nom m s 0.1 0 0.1 0 +odontologie odontologie nom f s 0.13 0 0.13 0 +odontologiste odontologiste nom s 0.01 0 0.01 0 +odontologues odontologue nom p 0.01 0 0.01 0 +odorant odorant adj m s 0.66 6.82 0.08 1.49 +odorante odorant adj f s 0.66 6.82 0.16 3.11 +odorantes odorant adj f p 0.66 6.82 0.4 1.35 +odorants odorant adj m p 0.66 6.82 0.03 0.88 +odorat odorat nom m s 1.28 2.57 1.28 2.57 +odoriférant odoriférant adj m s 0.01 0.74 0 0.14 +odoriférante odoriférant adj f s 0.01 0.74 0 0.2 +odoriférantes odoriférant adj f p 0.01 0.74 0.01 0.14 +odoriférants odoriférant adj m p 0.01 0.74 0 0.27 +odyssée odyssée nom f s 0.24 1.01 0.23 0.95 +odyssées odyssée nom f p 0.24 1.01 0.01 0.07 +odéon odéon nom m s 0 0.34 0 0.34 +oecuménique oecuménique adj s 0.33 0.41 0.33 0.34 +oecuméniques oecuménique adj f p 0.33 0.41 0 0.07 +oecuménisme oecuménisme nom m s 0.01 0.34 0.01 0.34 +oedipe oedipe nom m s 0.14 0.41 0.14 0.41 +oedipien oedipien adj m s 0.07 0.14 0.06 0.14 +oedipienne oedipien adj f s 0.07 0.14 0.01 0 +oedème oedème nom m s 1.26 0.61 1.25 0.54 +oedèmes oedème nom m p 1.26 0.61 0.01 0.07 +oedémateuse oedémateux adj f s 0.01 0 0.01 0 +oeil oeil nom m s 413.04 1234.59 97.13 278.51 +oeil_de_boeuf oeil_de_boeuf nom m s 0 0.95 0 0.47 +oeillade oeillade nom f s 0.05 1.82 0.02 0.74 +oeillades oeillade nom f p 0.05 1.82 0.03 1.08 +oeillet oeillet nom m s 3.53 6.08 0.39 2.09 +oeilleton oeilleton nom m s 0 1.35 0 1.15 +oeilletons oeilleton nom m p 0 1.35 0 0.2 +oeillets oeillet nom m p 3.53 6.08 3.13 3.99 +oeillette oeillette nom f s 0 0.14 0 0.14 +oeillère oeillère nom f s 0.44 1.82 0 0.07 +oeillères oeillère nom f p 0.44 1.82 0.44 1.76 +oeils oeil nom m p 413.04 1234.59 0.01 0.41 +oeil_de_boeuf oeil_de_boeuf nom m p 0 0.95 0 0.47 +oeil_de_perdrix oeil_de_perdrix nom m p 0 0.14 0 0.14 +oenologie oenologie nom f s 0.01 0 0.01 0 +oenologique oenologique adj f s 0 0.07 0 0.07 +oenologues oenologue nom p 0 0.14 0 0.14 +oenophile oenophile adj s 0 0.07 0 0.07 +oenothera oenothera nom m s 0.01 0 0.01 0 +oenothère oenothère nom m s 0 0.07 0 0.07 +oesophage oesophage nom m s 0.48 1.22 0.48 1.08 +oesophages oesophage nom m p 0.48 1.22 0 0.14 +oesophagien oesophagien adj m s 0.06 0 0.02 0 +oesophagienne oesophagien adj f s 0.06 0 0.01 0 +oesophagiennes oesophagien adj f p 0.06 0 0.03 0 +oestrogène oestrogène nom m s 0.28 0.14 0.04 0 +oestrogènes oestrogène nom m p 0.28 0.14 0.24 0.14 +oeuf oeuf nom m s 39.4 50.14 13.53 20.34 +oeufs oeuf nom m p 39.4 50.14 25.88 29.8 +oeuvraient oeuvrer ver 2.26 4.26 0 0.2 ind:imp:3p; +oeuvrait oeuvrer ver 2.26 4.26 0.14 0.61 ind:imp:3s; +oeuvrant oeuvrer ver 2.26 4.26 0.14 0.54 par:pre; +oeuvre oeuvre nom s 41.96 92.23 35.24 68.11 +oeuvrent oeuvrer ver 2.26 4.26 0.16 0.2 ind:pre:3p; +oeuvrer oeuvrer ver 2.26 4.26 0.41 1.01 inf; +oeuvrera oeuvrer ver 2.26 4.26 0.03 0 ind:fut:3s; +oeuvres oeuvre nom p 41.96 92.23 6.72 24.12 +oeuvrette oeuvrette nom f s 0 0.2 0 0.07 +oeuvrettes oeuvrette nom f p 0 0.2 0 0.14 +oeuvrez oeuvrer ver 2.26 4.26 0.03 0 imp:pre:2p; +oeuvrions oeuvrer ver 2.26 4.26 0 0.07 ind:imp:1p; +oeuvré oeuvrer ver m s 2.26 4.26 0.11 0.74 par:pas; +off off adj 3.27 0.54 3.27 0.54 +off_shore off_shore nom m s 0.07 0 0.07 0 +offensa offenser ver 15.79 6.35 0.03 0.07 ind:pas:3s; +offensaient offenser ver 15.79 6.35 0 0.2 ind:imp:3p; +offensais offenser ver 15.79 6.35 0 0.07 ind:imp:1s; +offensait offenser ver 15.79 6.35 0.13 0.54 ind:imp:3s; +offensant offensant adj m s 0.93 1.01 0.82 0.34 +offensante offensant adj f s 0.93 1.01 0.07 0.41 +offensantes offensant adj f p 0.93 1.01 0.01 0.07 +offensants offensant adj m p 0.93 1.01 0.02 0.2 +offense offense nom f s 7.45 3.24 5.41 2.03 +offensent offenser ver 15.79 6.35 0.34 0.34 ind:pre:3p; +offenser offenser ver 15.79 6.35 6.6 1.76 ind:pre:2p;inf; +offensera offenser ver 15.79 6.35 0.04 0 ind:fut:3s; +offenserai offenser ver 15.79 6.35 0.01 0.07 ind:fut:1s; +offenseraient offenser ver 15.79 6.35 0.11 0.14 cnd:pre:3p; +offenserais offenser ver 15.79 6.35 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +offenserez offenser ver 15.79 6.35 0.01 0 ind:fut:2p; +offenseront offenser ver 15.79 6.35 0.01 0 ind:fut:3p; +offenses offense nom f p 7.45 3.24 2.04 1.22 +offenseur offenseur nom m s 0.66 0.14 0.55 0.14 +offenseurs offenseur nom m p 0.66 0.14 0.11 0 +offensez offenser ver 15.79 6.35 0.64 0.07 imp:pre:2p;ind:pre:2p; +offensif offensif adj m s 0.85 2.36 0.32 0.61 +offensifs offensif adj m p 0.85 2.36 0.07 0.07 +offensive offensive nom f s 3.12 12.3 2.91 11.96 +offensives offensive nom f p 3.12 12.3 0.21 0.34 +offensons offenser ver 15.79 6.35 0 0.07 ind:pre:1p; +offensèrent offenser ver 15.79 6.35 0 0.07 ind:pas:3p; +offensé offenser ver m s 15.79 6.35 4.09 1.55 par:pas; +offensée offenser ver f s 15.79 6.35 0.97 0.47 par:pas; +offensées offensé adj f p 2.19 2.09 0.17 0.14 +offensés offenser ver m p 15.79 6.35 1.15 0.14 par:pas; +offert offrir ver m s 177.8 213.99 34.01 28.51 par:pas; +offerte offrir ver f s 177.8 213.99 5.08 12.03 par:pas; +offertes offrir ver f p 177.8 213.99 0.93 3.85 par:pas; +offertoire offertoire nom m s 0 0.34 0 0.34 +offerts offrir ver m p 177.8 213.99 1.41 3.45 par:pas; +office office nom s 6.37 25 6.13 21.28 +offices office nom m p 6.37 25 0.25 3.72 +officiaient officier ver 7.15 6.69 0 0.41 ind:imp:3p; +officiais officier ver 7.15 6.69 0 0.14 ind:imp:1s; +officiait officier ver 7.15 6.69 0.05 1.08 ind:imp:3s; +official official nom m s 0.03 0 0.03 0 +officialisait officialiser ver 0.23 0.07 0 0.07 ind:imp:3s; +officialise officialiser ver 0.23 0.07 0.03 0 ind:pre:1s;ind:pre:3s; +officialiser officialiser ver 0.23 0.07 0.14 0 inf; +officialisez officialiser ver 0.23 0.07 0.01 0 imp:pre:2p; +officialisé officialiser ver m s 0.23 0.07 0.04 0 par:pas; +officialité officialité nom f s 0 0.2 0 0.2 +officiant officiant nom m s 0.21 1.62 0.21 1.08 +officiants officiant adj m p 0.01 0.2 0.01 0.07 +officie officier ver 7.15 6.69 0.08 0.61 ind:pre:1s;ind:pre:3s; +officiel officiel adj m s 21.36 32.84 9.54 11.89 +officielle officiel adj f s 21.36 32.84 8.45 12.09 +officiellement officiellement adv 10.41 7.36 10.41 7.36 +officielles officiel adj f p 21.36 32.84 1.59 4.05 +officiels officiel adj m p 21.36 32.84 1.78 4.8 +officient officier ver 7.15 6.69 0.01 0.07 ind:pre:3p; +officier officier nom m s 55.35 79.05 35.47 35.68 +officiers officier nom m p 55.35 79.05 19.87 43.38 +officieuse officieux adj f s 1.44 1.35 0.38 0.2 +officieusement officieusement adv 1.13 0.54 1.13 0.54 +officieuses officieux adj f p 1.44 1.35 0.15 0.27 +officieux officieux adj m 1.44 1.35 0.92 0.88 +officiez officier ver 7.15 6.69 0.02 0 ind:pre:2p; +officine officine nom f s 0.17 2.64 0.17 1.96 +officines officine nom f p 0.17 2.64 0 0.68 +officions officier ver 7.15 6.69 0.01 0 ind:pre:1p; +officière officier nom f s 55.35 79.05 0.01 0 +officié officier ver m s 7.15 6.69 0.05 0 par:pas; +offraient offrir ver 177.8 213.99 0.71 8.38 ind:imp:3p; +offrais offrir ver 177.8 213.99 0.81 1.96 ind:imp:1s;ind:imp:2s; +offrait offrir ver 177.8 213.99 2.96 31.76 ind:imp:3s; +offrande offrande nom f s 4.54 6.89 3.97 4.53 +offrandes offrande nom f p 4.54 6.89 0.57 2.36 +offrant offrir ver 177.8 213.99 2.13 10.54 par:pre; +offrante offrant adj f s 1.09 0.47 0.01 0 +offrantes offrant adj f p 1.09 0.47 0 0.07 +offrants offrant adj m p 1.09 0.47 0.02 0 +offre offrir ver 177.8 213.99 51.81 29.8 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +offrent offrir ver 177.8 213.99 4.29 4.53 ind:pre:3p; +offres offrir ver 177.8 213.99 4.78 0.68 ind:pre:2s;sub:pre:2s; +offrez offrir ver 177.8 213.99 5.5 1.01 imp:pre:2p;ind:pre:2p; +offriez offrir ver 177.8 213.99 0.26 0.14 ind:imp:2p; +offrions offrir ver 177.8 213.99 0.07 0.34 ind:imp:1p; +offrir offrir ver 177.8 213.99 52.06 50.34 inf;; +offrira offrir ver 177.8 213.99 1.15 1.15 ind:fut:3s; +offrirai offrir ver 177.8 213.99 1.92 0.81 ind:fut:1s; +offriraient offrir ver 177.8 213.99 0.02 0.54 cnd:pre:3p; +offrirais offrir ver 177.8 213.99 1.23 0.34 cnd:pre:1s;cnd:pre:2s; +offrirait offrir ver 177.8 213.99 0.7 2.43 cnd:pre:3s; +offriras offrir ver 177.8 213.99 0.73 0 ind:fut:2s; +offrirent offrir ver 177.8 213.99 0.02 1.35 ind:pas:3p; +offrirez offrir ver 177.8 213.99 0.13 0.2 ind:fut:2p; +offririez offrir ver 177.8 213.99 0.06 0.07 cnd:pre:2p; +offrirons offrir ver 177.8 213.99 0.37 0.07 ind:fut:1p; +offriront offrir ver 177.8 213.99 0.24 0.27 ind:fut:3p; +offris offrir ver 177.8 213.99 0.06 1.69 ind:pas:1s; +offrit offrir ver 177.8 213.99 1.55 16.55 ind:pas:3s; +offrons offrir ver 177.8 213.99 2.81 0.74 imp:pre:1p;ind:pre:1p; +offrît offrir ver 177.8 213.99 0 0.47 sub:imp:3s; +offset offset nom s 0.01 0.2 0.01 0.2 +offshore offshore adj 0.43 0 0.43 0 +offuscation offuscation nom f s 0 0.14 0 0.07 +offuscations offuscation nom f p 0 0.14 0 0.07 +offusqua offusquer ver 1.04 4.93 0.01 0.47 ind:pas:3s; +offusquaient offusquer ver 1.04 4.93 0 0.41 ind:imp:3p; +offusquais offusquer ver 1.04 4.93 0.01 0.07 ind:imp:1s; +offusquait offusquer ver 1.04 4.93 0.01 0.68 ind:imp:3s; +offusquant offusquant adj m s 0.03 0.07 0.03 0.07 +offusque offusquer ver 1.04 4.93 0.3 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +offusquent offusquer ver 1.04 4.93 0.01 0.2 ind:pre:3p; +offusquer offusquer ver 1.04 4.93 0.23 0.74 inf; +offusquerai offusquer ver 1.04 4.93 0.04 0 ind:fut:1s; +offusquerait offusquer ver 1.04 4.93 0.01 0 cnd:pre:3s; +offusquerez offusquer ver 1.04 4.93 0.01 0 ind:fut:2p; +offusques offusquer ver 1.04 4.93 0 0.07 ind:pre:2s; +offusquât offusquer ver 1.04 4.93 0 0.07 sub:imp:3s; +offusquèrent offusquer ver 1.04 4.93 0 0.14 ind:pas:3p; +offusqué offusquer ver m s 1.04 4.93 0.27 0.34 par:pas; +offusquée offusquer ver f s 1.04 4.93 0.12 0.61 par:pas; +offusquées offusquer ver f p 1.04 4.93 0 0.14 par:pas; +offusqués offusquer ver m p 1.04 4.93 0 0.2 par:pas; +oflag oflag nom m s 0 0.27 0 0.2 +oflags oflag nom m p 0 0.27 0 0.07 +ogival ogival adj m s 0 0.41 0 0.41 +ogive ogive nom f s 2.35 3.45 1.4 1.69 +ogives ogive nom f p 2.35 3.45 0.95 1.76 +ognons ognon nom m p 0.11 0 0.11 0 +ogre ogre nom m s 2.83 5.95 2.52 4.66 +ogres ogre nom m p 2.83 5.95 0.3 1.28 +ogresse ogresse nom f s 0.31 1.89 0.31 1.55 +ogresses ogresse nom f p 0.31 1.89 0 0.34 +oh oh ono 897.52 197.09 897.52 197.09 +ohms ohm nom m p 0.02 0.14 0.02 0.14 +ohé ohé ono 5.24 1.28 5.24 1.28 +oie oie nom f s 9.15 9.32 5.42 5.2 +oies oie nom f p 9.15 9.32 3.73 4.12 +oignait oindre ver 0.56 1.62 0 0.14 ind:imp:3s; +oignant oindre ver 0.56 1.62 0 0.07 par:pre; +oigne oindre ver 0.56 1.62 0.14 0.07 sub:pre:1s;sub:pre:3s; +oignes oindre ver 0.56 1.62 0 0.2 sub:pre:2s; +oignez oindre ver 0.56 1.62 0.03 0 imp:pre:2p; +oignit oindre ver 0.56 1.62 0 0.07 ind:pas:3s; +oignon oignon nom m s 19.98 15.54 4.35 5.34 +oignons oignon nom m p 19.98 15.54 15.63 10.2 +oille oille nom f s 0 0.07 0 0.07 +oindra oindre ver 0.56 1.62 0 0.07 ind:fut:3s; +oindre oindre ver 0.56 1.62 0.12 0.2 inf; +oing oing nom m s 0 0.07 0 0.07 +oins oindre ver 0.56 1.62 0.16 0.07 ind:pre:1s;ind:pre:2s; +oint oint nom m s 0.1 0.27 0.1 0.14 +ointe oindre ver f s 0.56 1.62 0 0.2 par:pas; +ointes oindre ver f p 0.56 1.62 0 0.27 par:pas; +oints oint nom m p 0.1 0.27 0 0.14 +ois ouïr ver 5.72 3.78 1.16 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +oiseau oiseau nom m s 77.73 113.04 43.78 47.97 +oiseau_clé oiseau_clé nom m s 0.01 0 0.01 0 +oiseau_lyre oiseau_lyre nom m s 0 0.07 0 0.07 +oiseau_mouche oiseau_mouche nom m s 0.1 0.27 0.08 0.14 +oiseau_vedette oiseau_vedette nom m s 0.01 0 0.01 0 +oiseaux oiseau nom m p 77.73 113.04 33.96 65.07 +oiseau_mouche oiseau_mouche nom m p 0.1 0.27 0.01 0.14 +oiselet oiselet nom m s 0.13 0.54 0.12 0.34 +oiselets oiselet nom m p 0.13 0.54 0.01 0.2 +oiseleur oiseleur nom m s 0.07 0.54 0.06 0.47 +oiseleurs oiseleur nom m p 0.07 0.54 0.01 0.07 +oiselez oiseler ver 0 0.07 0 0.07 imp:pre:2p; +oiselier oiselier nom m s 0.01 0.2 0 0.07 +oiseliers oiselier nom m p 0.01 0.2 0.01 0.07 +oiselière oiselier nom f s 0.01 0.2 0 0.07 +oiselle oiselle nom f s 0.08 0.41 0.06 0.34 +oisellerie oisellerie nom f s 0.04 0 0.04 0 +oiselles oiselle nom f p 0.08 0.41 0.02 0.07 +oiseuse oiseux adj f s 0.28 2.36 0.01 0.47 +oiseuses oiseux adj f p 0.28 2.36 0.13 1.01 +oiseux oiseux adj m 0.28 2.36 0.14 0.88 +oisif oisif adj m s 0.85 2.03 0.36 0.41 +oisifs oisif nom m p 0.1 1.28 0.06 1.01 +oisillon oisillon nom m s 0.46 1.22 0.3 0.68 +oisillons oisillon nom m p 0.46 1.22 0.15 0.54 +oisive oisif adj f s 0.85 2.03 0.35 0.95 +oisivement oisivement adv 0.02 0 0.02 0 +oisives oisif adj f p 0.85 2.03 0.08 0.2 +oisiveté oisiveté nom f s 0.59 3.65 0.59 3.65 +oison oison nom m s 0.02 0.07 0.02 0 +oisons oison nom m p 0.02 0.07 0 0.07 +oit ouïr ver 5.72 3.78 0.13 0 ind:pre:3s; +ok ok adj_sup 234.89 1.15 234.89 1.15 +oka oka nom m s 0 0.07 0 0.07 +okapi okapi nom m s 0.08 0 0.08 0 +okoumé okoumé nom m s 0 0.14 0 0.14 +ola ola nom f s 1.31 0 1.31 0 +olfactif olfactif adj m s 0.47 1.01 0.11 0.54 +olfactifs olfactif adj m p 0.47 1.01 0.03 0.07 +olfactive olfactif adj f s 0.47 1.01 0.06 0.27 +olfactives olfactif adj f p 0.47 1.01 0.28 0.14 +olfactomètre olfactomètre nom m s 0 0.07 0 0.07 +olibrius olibrius nom m 0.03 0.2 0.03 0.2 +olifant olifant nom m s 0.14 0.41 0.14 0.41 +oligarchie oligarchie nom f s 0.12 0.07 0.12 0.07 +oligo_élément oligo_élément nom m p 0 0.14 0 0.14 +olivaies olivaie nom f p 0 0.07 0 0.07 +olive olive nom f s 5.42 8.85 2.54 4.12 +oliver oliver nom m s 0.06 0 0.06 0 +oliveraie oliveraie nom f s 1.08 0.47 1.08 0.07 +oliveraies oliveraie nom f p 1.08 0.47 0 0.41 +olives olive nom f p 5.42 8.85 2.88 4.73 +olivette olivette nom f s 0 0.68 0 0.07 +olivettes olivette nom f p 0 0.68 0 0.61 +olivier olivier nom m s 2.09 12.84 0.77 4.19 +oliviers olivier nom m p 2.09 12.84 1.32 8.65 +olivine olivine nom f s 0.05 0 0.05 0 +olivâtre olivâtre adj s 0 1.15 0 0.81 +olivâtres olivâtre adj f p 0 1.15 0 0.34 +olla_podrida olla_podrida nom f 0 0.07 0 0.07 +ollé ollé ono 0.02 0 0.02 0 +olmèque olmèque adj s 0.01 0 0.01 0 +olmèques olmèque nom p 0 0.07 0 0.07 +olographe olographe adj m s 0 0.14 0 0.14 +olympe olympe nom m s 0.01 0.2 0.01 0.14 +olympes olympe nom m p 0.01 0.2 0 0.07 +olympiade olympiade nom f s 0.36 0.2 0.1 0.07 +olympiades olympiade nom f p 0.36 0.2 0.26 0.14 +olympien olympien adj m s 0.08 2.03 0.07 1.35 +olympienne olympien adj f s 0.08 2.03 0 0.54 +olympiens olympien adj m p 0.08 2.03 0.01 0.14 +olympique olympique adj s 3.62 1.69 1.68 1.28 +olympiques olympique adj p 3.62 1.69 1.94 0.41 +olé olé ono 2.37 0.47 2.37 0.47 +olé_olé olé_olé adj m p 0 0.14 0 0.14 +oléagineux oléagineux nom m 0 0.07 0 0.07 +olécrane olécrane nom m s 0.01 0 0.01 0 +olécrâne olécrâne nom m s 0 0.07 0 0.07 +oléfine oléfine nom f s 0.03 0 0.03 0 +oléiculteurs oléiculteur nom m p 0 0.07 0 0.07 +oléine oléine nom f s 0 0.07 0 0.07 +oléoduc oléoduc nom m s 0.31 0.07 0.26 0 +oléoducs oléoduc nom m p 0.31 0.07 0.05 0.07 +omani omani adj m s 0.01 0 0.01 0 +ombelle ombelle nom f s 0.01 0.74 0 0.07 +ombelles ombelle nom f p 0.01 0.74 0.01 0.68 +ombellifères ombellifère nom f p 0 0.2 0 0.2 +ombilic ombilic nom m s 0.07 0.2 0.07 0.2 +ombilical ombilical adj m s 0.78 1.89 0.57 1.76 +ombilicale ombilical adj f s 0.78 1.89 0.19 0 +ombilicaux ombilical adj m p 0.78 1.89 0.02 0.14 +omble omble nom m s 0.03 0.14 0.01 0.07 +ombles omble nom m p 0.03 0.14 0.02 0.07 +ombra ombrer ver 0.54 2.5 0 0.07 ind:pas:3s; +ombrage ombrage nom m s 0.57 2.64 0.46 1.28 +ombragea ombrager ver 0.03 2.77 0 0.07 ind:pas:3s; +ombrageaient ombrager ver 0.03 2.77 0 0.2 ind:imp:3p; +ombrageait ombrager ver 0.03 2.77 0 0.27 ind:imp:3s; +ombragent ombrager ver 0.03 2.77 0 0.27 ind:pre:3p; +ombrager ombrager ver 0.03 2.77 0 0.2 inf; +ombrages ombrage nom m p 0.57 2.64 0.11 1.35 +ombrageuse ombrageux adj f s 0.45 2.84 0.14 0.81 +ombrageusement ombrageusement adv 0 0.07 0 0.07 +ombrageuses ombrageux adj f p 0.45 2.84 0 0.14 +ombrageux ombrageux adj m 0.45 2.84 0.31 1.89 +ombragé ombragé adj m s 0.17 0.95 0.13 0.68 +ombragée ombragé adj f s 0.17 0.95 0.01 0.2 +ombragées ombrager ver f p 0.03 2.77 0 0.27 par:pas; +ombragés ombragé adj m p 0.17 0.95 0.03 0 +ombraient ombrer ver 0.54 2.5 0 0.07 ind:imp:3p; +ombrait ombrer ver 0.54 2.5 0 0.2 ind:imp:3s; +ombrant ombrer ver 0.54 2.5 0 0.14 par:pre; +ombre ombre nom s 45.67 233.45 35.98 190.61 +ombrelle ombrelle nom f s 0.97 4.8 0.86 3.72 +ombrelles ombrelle nom f p 0.97 4.8 0.11 1.08 +ombrer ombrer ver 0.54 2.5 0.13 0.2 inf; +ombres ombre nom p 45.67 233.45 9.7 42.84 +ombreuse ombreux adj f s 0 2.43 0 0.68 +ombreuses ombreux adj f p 0 2.43 0 0.95 +ombreux ombreux adj m 0 2.43 0 0.81 +ombré ombrer ver m s 0.54 2.5 0.01 0.34 par:pas; +ombrée ombrer ver f s 0.54 2.5 0 0.27 par:pas; +ombrées ombrée nom f p 0.54 0.07 0.54 0 +ombrés ombrer ver m p 0.54 2.5 0 0.47 par:pas; +omelette omelette nom f s 6.87 6.42 6.42 5.14 +omelettes omelette nom f p 6.87 6.42 0.45 1.28 +omerta omerta nom f s 0.14 0.14 0.14 0.14 +omet omettre ver 2.73 6.42 0.13 0.2 ind:pre:3s; +omets omettre ver 2.73 6.42 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +omettaient omettre ver 2.73 6.42 0 0.07 ind:imp:3p; +omettais omettre ver 2.73 6.42 0 0.07 ind:imp:1s; +omettait omettre ver 2.73 6.42 0 0.27 ind:imp:3s; +omettant omettre ver 2.73 6.42 0.1 0.54 par:pre; +omette omettre ver 2.73 6.42 0 0.07 sub:pre:3s; +omettent omettre ver 2.73 6.42 0.01 0.2 ind:pre:3p; +omettez omettre ver 2.73 6.42 0.24 0 imp:pre:2p;ind:pre:2p; +omettiez omettre ver 2.73 6.42 0.01 0.07 ind:imp:2p; +omettrai omettre ver 2.73 6.42 0.03 0.07 ind:fut:1s; +omettre omettre ver 2.73 6.42 0.35 0.74 inf; +omettrez omettre ver 2.73 6.42 0.01 0 ind:fut:2p; +omicron omicron nom m s 0.12 0.07 0.12 0.07 +omis omettre ver m 2.73 6.42 1.74 3.58 par:pas; +omise omettre ver f s 2.73 6.42 0.04 0.14 par:pas; +omises omettre ver f p 2.73 6.42 0.03 0.07 par:pas; +omission omission nom f s 1.02 2.09 0.78 1.76 +omissions omission nom f p 1.02 2.09 0.25 0.34 +omit omettre ver 2.73 6.42 0 0.2 ind:pas:3s; +omni omni adv 0.21 0.27 0.21 0.27 +omnibus omnibus nom m 0.37 1.28 0.37 1.28 +omnidirectionnel omnidirectionnel adj m s 0.03 0 0.02 0 +omnidirectionnelle omnidirectionnel adj f s 0.03 0 0.01 0 +omnipotence omnipotence nom f s 0.16 0.74 0.16 0.74 +omnipotent omnipotent adj m s 0.16 1.28 0.14 0.54 +omnipotente omnipotent adj f s 0.16 1.28 0.01 0.74 +omnipotentes omnipotent adj f p 0.16 1.28 0.01 0 +omniprésence omniprésence nom f s 0.11 0.34 0.11 0.34 +omniprésent omniprésent adj m s 0.69 2.16 0.53 0.81 +omniprésente omniprésent adj f s 0.69 2.16 0.08 1.08 +omniprésentes omniprésent adj f p 0.69 2.16 0.03 0.2 +omniprésents omniprésent adj m p 0.69 2.16 0.06 0.07 +omnipuissance omnipuissance nom f s 0 0.07 0 0.07 +omniscience omniscience nom f s 0.09 0 0.09 0 +omniscient omniscient adj m s 0.33 0.47 0.14 0.34 +omnisciente omniscient adj f s 0.33 0.47 0.05 0.07 +omniscients omniscient adj m p 0.33 0.47 0.14 0.07 +omnisports omnisports adj m s 0.01 1.28 0.01 1.28 +omnium omnium nom m s 0 0.2 0 0.2 +omnivore omnivore adj m s 0.16 0.14 0.02 0.07 +omnivores omnivore adj f p 0.16 0.14 0.14 0.07 +omoplate omoplate nom f s 0.66 5.74 0.48 1.55 +omoplates omoplate nom f p 0.66 5.74 0.18 4.19 +omphalos omphalos nom m 0 0.07 0 0.07 +oméga oméga nom m s 0.88 0.88 0.88 0.88 +omît omettre ver 2.73 6.42 0 0.07 sub:imp:3s; +on on pro_per s 8586.4 4838.38 8586.4 4838.38 +on_dit on_dit nom m 0.14 0.81 0.14 0.81 +on_line on_line adv 0.07 0 0.07 0 +onagre onagre nom s 0 0.14 0 0.14 +onanisme onanisme nom m s 0.1 0.47 0.1 0.41 +onanismes onanisme nom m p 0.1 0.47 0 0.07 +onaniste onaniste nom s 0.02 0.14 0.02 0.14 +onc onc adv 0.03 0.14 0.03 0.14 +once once nom f s 4.66 1.89 3.77 1.76 +onces once nom f p 4.66 1.89 0.89 0.14 +oncle oncle nom m s 126.71 127.7 124.11 121.96 +oncles oncle nom m p 126.71 127.7 2.6 5.74 +oncologie oncologie nom f s 0.35 0 0.35 0 +oncologique oncologique adj f s 0.01 0 0.01 0 +oncologue oncologue nom s 0.22 0 0.21 0 +oncologues oncologue nom p 0.22 0 0.01 0 +onction onction nom f s 0.28 1.28 0.28 1.15 +onctions onction nom f p 0.28 1.28 0 0.14 +onctueuse onctueux adj f s 0.24 4.73 0.17 1.96 +onctueusement onctueusement adv 0 0.07 0 0.07 +onctueuses onctueux adj f p 0.24 4.73 0 0.27 +onctueux onctueux adj m 0.24 4.73 0.07 2.5 +onctuosité onctuosité nom f s 0.01 0.61 0.01 0.61 +ondatra ondatra nom m s 0.02 0 0.02 0 +onde onde nom f s 11.91 17.7 4.39 6.01 +onder onder ver 0.01 0 0.01 0 inf; +ondes onde nom f p 11.91 17.7 7.52 11.69 +ondin ondin nom m s 0 0.41 0 0.2 +ondine ondine nom f s 0.21 0.41 0.2 0.34 +ondines ondine nom f p 0.21 0.41 0.01 0.07 +ondins ondin nom m p 0 0.41 0 0.2 +ondoie ondoyer ver 0.01 2.84 0 0.07 ind:pre:1s; +ondoiement ondoiement nom m s 0 0.54 0 0.47 +ondoiements ondoiement nom m p 0 0.54 0 0.07 +ondoient ondoyer ver 0.01 2.84 0 0.14 ind:pre:3p; +ondoyaient ondoyer ver 0.01 2.84 0 0.47 ind:imp:3p; +ondoyait ondoyer ver 0.01 2.84 0 0.54 ind:imp:3s; +ondoyant ondoyer ver 0.01 2.84 0.01 0.95 par:pre; +ondoyante ondoyant adj f s 0.1 1.15 0.1 0.47 +ondoyantes ondoyant adj f p 0.1 1.15 0 0.14 +ondoyants ondoyant adj m p 0.1 1.15 0 0.27 +ondoyer ondoyer ver 0.01 2.84 0 0.47 inf; +ondoyons ondoyer ver 0.01 2.84 0 0.07 imp:pre:1p; +ondoyé ondoyer ver m s 0.01 2.84 0 0.14 par:pas; +ondula onduler ver 1.28 12.03 0 0.47 ind:pas:3s; +ondulaient onduler ver 1.28 12.03 0.14 0.81 ind:imp:3p; +ondulait onduler ver 1.28 12.03 0.11 2.64 ind:imp:3s; +ondulant onduler ver 1.28 12.03 0.24 1.96 par:pre; +ondulante ondulant adj f s 0.2 1.55 0.17 0.95 +ondulantes ondulant adj f p 0.2 1.55 0.01 0.2 +ondulants ondulant adj m p 0.2 1.55 0.01 0.14 +ondulation ondulation nom f s 0.26 6.01 0.05 2.03 +ondulations ondulation nom f p 0.26 6.01 0.21 3.99 +ondulatoire ondulatoire adj s 0.01 0.34 0 0.27 +ondulatoires ondulatoire adj m p 0.01 0.34 0.01 0.07 +ondule onduler ver 1.28 12.03 0.27 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ondulent onduler ver 1.28 12.03 0.23 1.01 ind:pre:3p; +onduler onduler ver 1.28 12.03 0.23 2.09 inf; +ondulerait onduler ver 1.28 12.03 0 0.07 cnd:pre:3s; +onduleuse onduleux adj f s 0 1.62 0 0.68 +onduleuses onduleux adj f p 0 1.62 0 0.34 +onduleux onduleux adj m s 0 1.62 0 0.61 +ondulons onduler ver 1.28 12.03 0 0.07 ind:pre:1p; +ondulèrent onduler ver 1.28 12.03 0 0.07 ind:pas:3p; +ondulé ondulé adj m s 0.73 4.59 0.04 0.95 +ondulée ondulé adj f s 0.73 4.59 0.38 2.03 +ondulées ondulé adj f p 0.73 4.59 0.02 0.41 +ondulés ondulé adj m p 0.73 4.59 0.29 1.22 +ondée ondée adj f s 0.01 0.07 0.01 0 +ondées ondée nom f p 0.16 2.3 0.16 0.47 +ondés ondé adj m p 0 0.14 0 0.14 +one_step one_step nom m s 0 0.2 0 0.2 +ongle ongle nom m s 20.37 45.47 2.35 10.14 +ongles ongle nom m p 20.37 45.47 18.02 35.34 +onglet onglet nom m s 0.67 0.34 0.52 0.14 +onglets onglet nom m p 0.67 0.34 0.14 0.2 +onglon onglon nom m s 0 0.07 0 0.07 +onglée onglée adj f s 0.01 0 0.01 0 +onguent onguent nom m s 0.93 1.82 0.79 0.54 +onguents onguent nom m p 0.93 1.82 0.14 1.28 +ongulé ongulé nom m s 0.09 0 0.08 0 +ongulés ongulé nom m p 0.09 0 0.01 0 +onirique onirique adj s 0.17 0.41 0.04 0.34 +oniriques onirique adj p 0.17 0.41 0.13 0.07 +onirisme onirisme nom m s 0.14 0 0.14 0 +onirologie onirologie nom f s 0 0.07 0 0.07 +onomatopée onomatopée nom f s 0.05 2.03 0.03 0.74 +onomatopées onomatopée nom f p 0.05 2.03 0.02 1.28 +onomatopéique onomatopéique adj s 0.4 0 0.4 0 +onopordons onopordon nom m p 0 0.07 0 0.07 +ont avoir aux 18559.22 12800.81 1063.32 553.31 ind:pre:3p; +onto onto adv 0.05 0.07 0.05 0.07 +ontologie ontologie nom f s 0.02 0.14 0.02 0.14 +ontologique ontologique adj s 0.04 0.34 0.04 0.34 +ontologiquement ontologiquement adv 0.02 0 0.02 0 +onusienne onusien adj f s 0.03 0.07 0.02 0 +onusiennes onusien adj f p 0.03 0.07 0.01 0 +onusiens onusien adj m p 0.03 0.07 0 0.07 +onyx onyx nom m 0.34 0.61 0.34 0.61 +onze onze adj_num 11.27 38.85 11.27 38.85 +onzième onzième adj 0.34 1.49 0.34 1.49 +onéreuse onéreux adj f s 0.84 1.08 0.21 0.14 +onéreuses onéreux adj f p 0.84 1.08 0.04 0.27 +onéreux onéreux adj m 0.84 1.08 0.6 0.68 +opacifiait opacifier ver 0.03 0.54 0 0.07 ind:imp:3s; +opacifiant opacifier ver 0.03 0.54 0 0.07 par:pre; +opacification opacification nom f s 0.01 0 0.01 0 +opacifie opacifier ver 0.03 0.54 0 0.2 ind:pre:1s;ind:pre:3s; +opacifient opacifier ver 0.03 0.54 0.01 0.07 ind:pre:3p; +opacifier opacifier ver 0.03 0.54 0.01 0.07 inf; +opacifié opacifier ver m s 0.03 0.54 0 0.07 par:pas; +opacité opacité nom f s 0.23 2.03 0.21 1.96 +opacités opacité nom f p 0.23 2.03 0.03 0.07 +opale opale nom f s 0.24 0.81 0.16 0.68 +opales opale nom f p 0.24 0.81 0.08 0.14 +opalescence opalescence nom f s 0 0.07 0 0.07 +opalescent opalescent adj m s 0 0.68 0 0.27 +opalescente opalescent adj f s 0 0.68 0 0.27 +opalescentes opalescent adj f p 0 0.68 0 0.14 +opalin opalin adj m s 0.02 0.74 0 0.41 +opaline opalin nom f s 0.02 1.35 0.02 1.28 +opalines opalin nom f p 0.02 1.35 0 0.07 +opalins opalin adj m p 0.02 0.74 0.01 0.14 +opaque opaque adj s 0.5 13.11 0.31 9.59 +opaques opaque adj p 0.5 13.11 0.19 3.51 +ope ope nom s 0.08 0 0.08 0 +open open adj 1.75 0 1.75 0 +opercule opercule nom m s 0.01 0.07 0.01 0.07 +ophidien ophidien nom m s 0.02 0.07 0.01 0 +ophidiens ophidien nom m p 0.02 0.07 0.01 0.07 +ophite ophite nom m s 0 0.07 0 0.07 +ophtalmique ophtalmique adj f s 0.01 0 0.01 0 +ophtalmologie ophtalmologie nom f s 0.09 0.07 0.09 0.07 +ophtalmologique ophtalmologique adj m s 0.02 0 0.02 0 +ophtalmologiste ophtalmologiste nom s 0.09 0.61 0.09 0.54 +ophtalmologistes ophtalmologiste nom p 0.09 0.61 0 0.07 +ophtalmologue ophtalmologue nom s 0.04 0.07 0.04 0.07 +ophtalmoscope ophtalmoscope nom m s 0.02 0 0.02 0 +opiacé opiacé nom m s 0.58 0 0.06 0 +opiacées opiacé adj f p 0.19 0 0.14 0 +opiacés opiacé nom m p 0.58 0 0.52 0 +opiat opiat nom m s 0.03 0.2 0.01 0 +opiats opiat nom m p 0.03 0.2 0.01 0.2 +opimes opimes adj f p 0.01 0 0.01 0 +opina opiner ver 0.38 4.46 0.1 0.95 ind:pas:3s; +opinai opiner ver 0.38 4.46 0 0.2 ind:pas:1s; +opinaient opiner ver 0.38 4.46 0 0.07 ind:imp:3p; +opinais opiner ver 0.38 4.46 0 0.14 ind:imp:1s; +opinait opiner ver 0.38 4.46 0.1 0.47 ind:imp:3s; +opinant opiner ver 0.38 4.46 0 0.14 par:pre; +opine opiner ver 0.38 4.46 0.02 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +opinel opinel nom m s 0 1.22 0 1.15 +opinels opinel nom m p 0 1.22 0 0.07 +opiner opiner ver 0.38 4.46 0.02 0.41 inf; +opines opiner ver 0.38 4.46 0.11 0 ind:pre:2s; +opinion opinion nom f s 33.89 44.66 28.43 33.24 +opinions opinion nom f p 33.89 44.66 5.47 11.42 +opiniâtra opiniâtrer ver 0.02 0.27 0 0.14 ind:pas:3s; +opiniâtre opiniâtre adj s 0.06 2.77 0.06 2.23 +opiniâtrement opiniâtrement adv 0.02 0.27 0.02 0.27 +opiniâtres opiniâtre adj p 0.06 2.77 0 0.54 +opiniâtreté opiniâtreté nom f s 0.01 1.76 0.01 1.76 +opiniâtrez opiniâtrer ver 0.02 0.27 0 0.07 ind:pre:2p; +opinèrent opiner ver 0.38 4.46 0 0.07 ind:pas:3p; +opiné opiner ver m s 0.38 4.46 0.01 0.34 par:pas; +opiomane opiomane adj f s 0.03 0.07 0.03 0.07 +opium opium nom m s 3.95 5.61 3.95 5.61 +opopanax opopanax nom m 0 0.07 0 0.07 +opoponax opoponax nom m 0 0.07 0 0.07 +opossum opossum nom m s 0.52 0.27 0.41 0.27 +opossums opossum nom m p 0.52 0.27 0.12 0 +opothérapiques opothérapique adj f p 0 0.07 0 0.07 +oppidum oppidum nom m s 0 0.27 0 0.27 +opportun opportun adj m s 1.68 2.57 1.45 1.89 +opportune opportun adj f s 1.68 2.57 0.08 0.54 +opportunes opportun adj f p 1.68 2.57 0.02 0 +opportunisme opportunisme nom m s 0.11 0.2 0.11 0.2 +opportuniste opportuniste adj s 0.44 0.47 0.38 0.34 +opportunistes opportuniste nom p 0.62 0.2 0.26 0.2 +opportunité opportunité nom f s 11.84 2.5 9.5 2.36 +opportunités opportunité nom f p 11.84 2.5 2.33 0.14 +opportuns opportun adj m p 1.68 2.57 0.14 0.14 +opportunément opportunément adv 0.07 0.68 0.07 0.68 +opposa opposer ver 18.2 46.01 0.12 2.3 ind:pas:3s; +opposable opposable adj m s 0.14 0.07 0.05 0 +opposables opposable adj p 0.14 0.07 0.09 0.07 +opposai opposer ver 18.2 46.01 0 0.34 ind:pas:1s; +opposaient opposer ver 18.2 46.01 0.07 2.23 ind:imp:3p; +opposais opposer ver 18.2 46.01 0.18 0.41 ind:imp:1s;ind:imp:2s; +opposait opposer ver 18.2 46.01 0.53 7.03 ind:imp:3s; +opposant opposer ver 18.2 46.01 0.35 1.69 par:pre; +opposante opposant nom f s 1.63 1.42 0.01 0 +opposants opposant nom m p 1.63 1.42 1.28 0.95 +oppose opposer ver 18.2 46.01 4.27 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +opposent opposer ver 18.2 46.01 0.85 1.89 ind:pre:3p; +opposer opposer ver 18.2 46.01 6.48 9.93 inf;; +opposera opposer ver 18.2 46.01 0.28 0.54 ind:fut:3s; +opposerai opposer ver 18.2 46.01 0.55 0 ind:fut:1s; +opposeraient opposer ver 18.2 46.01 0.01 0.47 cnd:pre:3p; +opposerais opposer ver 18.2 46.01 0.03 0 cnd:pre:1s;cnd:pre:2s; +opposerait opposer ver 18.2 46.01 0.15 0.34 cnd:pre:3s; +opposerez opposer ver 18.2 46.01 0.11 0.07 ind:fut:2p; +opposerions opposer ver 18.2 46.01 0 0.07 cnd:pre:1p; +opposerons opposer ver 18.2 46.01 0.14 0.07 ind:fut:1p; +opposeront opposer ver 18.2 46.01 0.28 0 ind:fut:3p; +opposes opposer ver 18.2 46.01 0.35 0.07 ind:pre:2s; +opposez opposer ver 18.2 46.01 0.29 0.2 imp:pre:2p;ind:pre:2p; +opposions opposer ver 18.2 46.01 0.02 0.27 ind:imp:1p; +opposition opposition nom f s 5.28 11.49 5.26 10.68 +oppositionnel oppositionnel adj m s 0.01 0.07 0.01 0 +oppositionnelle oppositionnel adj f s 0.01 0.07 0 0.07 +oppositions opposition nom f p 5.28 11.49 0.02 0.81 +opposons opposer ver 18.2 46.01 0.06 0.14 imp:pre:1p;ind:pre:1p; +opposât opposer ver 18.2 46.01 0 0.34 sub:imp:3s; +opposèrent opposer ver 18.2 46.01 0.03 0.61 ind:pas:3p; +opposé opposé nom m s 2.38 5.34 2.13 5.2 +opposée opposé adj f s 3.51 14.46 0.92 3.18 +opposées opposé adj f p 3.51 14.46 0.69 1.89 +opposés opposer ver m p 18.2 46.01 0.6 1.42 par:pas; +oppressa oppresser ver 1.11 4.8 0 0.07 ind:pas:3s; +oppressaient oppresser ver 1.11 4.8 0.1 0.34 ind:imp:3p; +oppressait oppresser ver 1.11 4.8 0.17 1.35 ind:imp:3s; +oppressant oppressant adj m s 1.01 3.38 0.38 1.49 +oppressante oppressant adj f s 1.01 3.38 0.61 1.55 +oppressantes oppressant adj f p 1.01 3.38 0.01 0.2 +oppressants oppressant adj m p 1.01 3.38 0.01 0.14 +oppresse oppresser ver 1.11 4.8 0.38 1.15 ind:pre:1s;ind:pre:3s; +oppressent oppresser ver 1.11 4.8 0.06 0.27 ind:pre:3p; +oppresser oppresser ver 1.11 4.8 0.14 0.07 inf; +oppresseur oppresseur nom m s 1.26 0.74 0.67 0.41 +oppresseurs oppresseur nom m p 1.26 0.74 0.59 0.34 +oppressif oppressif adj m s 0.06 0.14 0.04 0.07 +oppression oppression nom f s 2.25 6.82 2.17 6.69 +oppressions oppression nom f p 2.25 6.82 0.07 0.14 +oppressive oppressif adj f s 0.06 0.14 0.02 0.07 +oppressé oppresser ver m s 1.11 4.8 0.25 0.68 par:pas; +oppressée oppressé adj f s 0.29 1.08 0.2 0.68 +oppressées oppressé adj f p 0.29 1.08 0.02 0 +opprimait opprimer ver 1.69 2.03 0.01 0.2 ind:imp:3s; +opprimant opprimer ver 1.69 2.03 0.01 0.07 par:pre; +opprime opprimer ver 1.69 2.03 0.4 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +oppriment opprimer ver 1.69 2.03 0.06 0.2 ind:pre:3p; +opprimer opprimer ver 1.69 2.03 0.07 0.68 inf; +opprimez opprimer ver 1.69 2.03 0.04 0 ind:pre:2p; +opprimé opprimer ver m s 1.69 2.03 0.35 0.2 par:pas; +opprimée opprimer ver f s 1.69 2.03 0.28 0.27 par:pas; +opprimées opprimé nom f p 1.91 1.89 0.22 0 +opprimés opprimé nom m p 1.91 1.89 1.48 1.28 +opprobre opprobre nom m s 0.33 1.89 0.33 1.82 +opprobres opprobre nom m p 0.33 1.89 0 0.07 +opta opter ver 1.98 5.14 0.01 1.08 ind:pas:3s; +optai opter ver 1.98 5.14 0 0.34 ind:pas:1s; +optaient opter ver 1.98 5.14 0 0.2 ind:imp:3p; +optais opter ver 1.98 5.14 0.03 0.07 ind:imp:1s; +optait opter ver 1.98 5.14 0.01 0.07 ind:imp:3s; +optalidon optalidon nom m s 0.14 0.07 0.14 0.07 +optant optant nom m s 0 0.14 0 0.14 +optatif optatif adj m s 0 0.2 0 0.14 +optatifs optatif adj m p 0 0.2 0 0.07 +opte opter ver 1.98 5.14 0.31 0.54 ind:pre:1s;ind:pre:3s; +optent opter ver 1.98 5.14 0.14 0.14 ind:pre:3p; +opter opter ver 1.98 5.14 0.37 0.88 inf; +opterais opter ver 1.98 5.14 0.04 0.07 cnd:pre:1s; +optes opter ver 1.98 5.14 0.02 0 ind:pre:2s; +opticien opticien nom m s 0.18 0.47 0.13 0.34 +opticienne opticien nom f s 0.18 0.47 0.02 0 +opticiens opticien nom m p 0.18 0.47 0.04 0.14 +optima optimum nom m p 0.15 0.14 0 0.07 +optimal optimal adj m s 0.48 0.34 0.19 0.2 +optimale optimal adj f s 0.48 0.34 0.24 0.14 +optimales optimal adj f p 0.48 0.34 0.04 0 +optimaux optimal adj m p 0.48 0.34 0.02 0 +optime optime adv 0 0.2 0 0.2 +optimisation optimisation nom f s 0.14 0 0.14 0 +optimise optimiser ver 0.23 0.07 0.06 0 ind:pre:1s;ind:pre:3s; +optimiser optimiser ver 0.23 0.07 0.12 0 inf; +optimisez optimiser ver 0.23 0.07 0.01 0 ind:pre:2p; +optimisme optimisme nom m s 1.66 6.55 1.66 6.55 +optimiste optimiste adj s 4.21 4.19 3.52 3.11 +optimistes optimiste adj p 4.21 4.19 0.7 1.08 +optimisé optimiser ver m s 0.23 0.07 0.05 0 par:pas; +optimisées optimiser ver f p 0.23 0.07 0 0.07 par:pas; +optimum optimum nom m s 0.15 0.14 0.15 0.07 +option option nom f s 12.31 2.09 7.37 1.08 +optionnel optionnel adj m s 0.19 0 0.16 0 +optionnelle optionnel adj f s 0.19 0 0.03 0 +options option nom f p 12.31 2.09 4.94 1.01 +optique optique adj s 1.73 1.08 1.36 1.01 +optiques optique adj p 1.73 1.08 0.38 0.07 +optométrie optométrie nom f s 0.01 0 0.01 0 +optométriste optométriste nom s 0.05 0 0.05 0 +optons opter ver 1.98 5.14 0.03 0 imp:pre:1p;ind:pre:1p; +optât opter ver 1.98 5.14 0 0.14 sub:imp:3s; +optèrent opter ver 1.98 5.14 0.01 0.14 ind:pas:3p; +opté opter ver m s 1.98 5.14 0.9 1.49 par:pas; +opulence opulence nom f s 0.54 3.31 0.54 3.24 +opulences opulence nom f p 0.54 3.31 0 0.07 +opulent opulent adj m s 0.47 4.39 0.01 1.08 +opulente opulent adj f s 0.47 4.39 0.32 1.42 +opulentes opulent adj f p 0.47 4.39 0.02 1.08 +opulents opulent adj m p 0.47 4.39 0.11 0.81 +opus opus nom m 0.35 1.01 0.35 1.01 +opuscule opuscule nom m s 0.04 0.88 0.03 0.61 +opuscules opuscule nom m p 0.04 0.88 0.01 0.27 +opère opérer ver 29.59 24.53 4.75 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +opèrent opérer ver 29.59 24.53 1.06 0.47 ind:pre:3p; +opéra opéra nom m s 19.61 20.07 18.93 18.99 +opéra_comique opéra_comique nom m s 0 0.34 0 0.34 +opérable opérable adj f s 0.13 0.07 0.13 0.07 +opéraient opérer ver 29.59 24.53 0.03 1.69 ind:imp:3p; +opérais opérer ver 29.59 24.53 0.05 0.34 ind:imp:1s;ind:imp:2s; +opérait opérer ver 29.59 24.53 0.56 3.11 ind:imp:3s; +opérant opérer ver 29.59 24.53 0.26 1.28 par:pre; +opéras opéra nom m p 19.61 20.07 0.68 1.08 +opérateur opérateur nom m s 6.73 2.84 5.07 2.03 +opérateurs opérateur nom m p 6.73 2.84 0.28 0.74 +opération opération nom f s 61.94 70.2 50.01 41.42 +opération_miracle opération_miracle nom f s 0 0.07 0 0.07 +opérationnel opérationnel adj m s 5.07 0.34 2.21 0.14 +opérationnelle opérationnel adj f s 5.07 0.34 1.19 0.14 +opérationnelles opérationnel adj f p 5.07 0.34 0.26 0.07 +opérationnels opérationnel adj m p 5.07 0.34 1.42 0 +opérations opération nom f p 61.94 70.2 11.94 28.78 +opératique opératique adj f s 0.01 0 0.01 0 +opératoire opératoire adj s 1.54 0.68 1.49 0.68 +opératoires opératoire adj p 1.54 0.68 0.05 0 +opératrice opérateur nom f s 6.73 2.84 1.19 0.07 +opératrices opérateur nom f p 6.73 2.84 0.19 0 +opérer opérer ver 29.59 24.53 14.94 8.58 inf;; +opérera opérer ver 29.59 24.53 0.2 0.27 ind:fut:3s; +opérerai opérer ver 29.59 24.53 0.28 0 ind:fut:1s; +opéreraient opérer ver 29.59 24.53 0 0.27 cnd:pre:3p; +opérerait opérer ver 29.59 24.53 0.04 0.41 cnd:pre:3s; +opéreras opérer ver 29.59 24.53 0.02 0 ind:fut:2s; +opérerez opérer ver 29.59 24.53 0.05 0.07 ind:fut:2p; +opérerons opérer ver 29.59 24.53 0.18 0 ind:fut:1p; +opéreront opérer ver 29.59 24.53 0.08 0.07 ind:fut:3p; +opérette opérette nom f s 0.58 4.19 0.54 3.11 +opérettes opérette nom f p 0.58 4.19 0.04 1.08 +opérez opérer ver 29.59 24.53 0.49 0.14 imp:pre:2p;ind:pre:2p; +opériez opérer ver 29.59 24.53 0.13 0 ind:imp:2p; +opérions opérer ver 29.59 24.53 0 0.27 ind:imp:1p; +opérons opérer ver 29.59 24.53 0.19 0.07 imp:pre:1p;ind:pre:1p; +opérât opérer ver 29.59 24.53 0 0.07 sub:imp:3s; +opérèrent opérer ver 29.59 24.53 0 0.07 ind:pas:3p; +opéré opérer ver m s 29.59 24.53 4.92 2.43 par:pas; +opérée opérer ver f s 29.59 24.53 1 0.88 par:pas; +opérées opérer ver f p 29.59 24.53 0.03 0.14 par:pas; +opérés opérer ver m p 29.59 24.53 0.06 0.54 par:pas; +or or con 17.13 65.27 17.13 65.27 +oracle oracle nom m s 3.21 2.77 2.32 2.16 +oracles oracle nom m p 3.21 2.77 0.89 0.61 +orage orage nom m s 17.14 35.41 14.5 30.61 +orages orage nom m p 17.14 35.41 2.64 4.8 +orageuse orageux adj f s 0.61 4.12 0.11 1.82 +orageuses orageux adj f p 0.61 4.12 0.17 0.74 +orageux orageux adj m 0.61 4.12 0.33 1.55 +oraison oraison nom f s 0.63 3.65 0.2 3.11 +oraisons oraison nom f p 0.63 3.65 0.43 0.54 +oral oral nom m s 1.42 2.7 1.42 2.7 +orale oral adj f s 2.31 1.96 1.31 0.88 +oralement oralement adv 0.2 0.74 0.2 0.74 +orales oral adj f p 2.31 1.96 0.22 0.27 +oralité oralité nom f s 0.01 0.07 0.01 0.07 +oranais oranais adj m s 0 0.41 0 0.34 +oranaise oranais adj f s 0 0.41 0 0.07 +orang_outan orang_outan nom m s 0.28 0.2 0.22 0.07 +orang_outang orang_outang nom m s 0.08 0.74 0.08 0.61 +orange orange nom s 16.29 19.59 11.56 12.03 +orangeade orangeade nom f s 1.91 2.03 1.44 1.76 +orangeades orangeade nom f p 1.91 2.03 0.48 0.27 +oranger oranger nom m s 1.67 5.27 1.03 2.09 +orangeraie orangeraie nom f s 0.31 0.34 0.11 0.2 +orangeraies orangeraie nom f p 0.31 0.34 0.2 0.14 +orangerie orangerie nom f s 0.03 0.41 0.03 0.34 +orangeries orangerie nom f p 0.03 0.41 0 0.07 +orangers oranger nom m p 1.67 5.27 0.64 3.18 +oranges orange nom p 16.29 19.59 4.73 7.57 +orangistes orangiste nom p 0.04 0 0.04 0 +orang_outang orang_outang nom m p 0.08 0.74 0 0.14 +orang_outan orang_outan nom m p 0.28 0.2 0.06 0.14 +orangé orangé adj m s 0.32 4.93 0.17 1.96 +orangée orangé adj f s 0.32 4.93 0.14 1.62 +orangées orangé adj f p 0.32 4.93 0.01 0.61 +orangés orangé adj m p 0.32 4.93 0 0.74 +orant orant nom m s 0 0.47 0 0.07 +orante orant nom f s 0 0.47 0 0.34 +orantes orant adj f p 0.02 0.07 0.02 0 +orants orant nom m p 0 0.47 0 0.07 +orateur orateur nom m s 1.7 5.34 1.42 3.58 +orateurs orateur nom m p 1.7 5.34 0.23 1.76 +oratoire oratoire nom m s 0.42 1.49 0.42 1.28 +oratoires oratoire adj p 0.23 1.76 0.06 0.81 +oratorien oratorien nom m s 0 0.34 0 0.14 +oratoriens oratorien nom m p 0 0.34 0 0.2 +oratorio oratorio nom m s 0.02 0.61 0.02 0.54 +oratorios oratorio nom m p 0.02 0.61 0 0.07 +oratrice orateur nom f s 1.7 5.34 0.05 0 +oraux oral adj m p 2.31 1.96 0.1 0.27 +orbe orbe nom m s 0.59 1.22 0.46 1.01 +orbes orbe nom m p 0.59 1.22 0.14 0.2 +orbiculaire orbiculaire adj m s 0 0.14 0 0.14 +orbitaire orbitaire adj f s 0.04 0.07 0.02 0.07 +orbitaires orbitaire adj f p 0.04 0.07 0.02 0 +orbital orbital adj m s 0.61 0.07 0.17 0 +orbitale orbital adj f s 0.61 0.07 0.29 0.07 +orbitales orbital adj f p 0.61 0.07 0.11 0 +orbitaux orbital adj m p 0.61 0.07 0.04 0 +orbite orbite nom f s 9.81 8.31 8.59 2.64 +orbiter orbiter ver 0.03 0 0.01 0 inf; +orbites orbite nom f p 9.81 8.31 1.22 5.68 +orbitons orbiter ver 0.03 0 0.02 0 ind:pre:1p; +orbitèle orbitèle adj m s 0.05 0 0.03 0 +orbitèles orbitèle adj m p 0.05 0 0.02 0 +orchestra orchestrer ver 4.29 1.08 2.99 0 ind:pas:3s; +orchestraient orchestrer ver 4.29 1.08 0 0.07 ind:imp:3p; +orchestrait orchestrer ver 4.29 1.08 0.03 0.07 ind:imp:3s; +orchestral orchestral adj m s 1.1 0.14 0.02 0 +orchestrale orchestral adj f s 1.1 0.14 1.08 0.07 +orchestration orchestration nom f s 0.23 0.07 0.22 0.07 +orchestrations orchestration nom f p 0.23 0.07 0.01 0 +orchestraux orchestral adj m p 1.1 0.14 0 0.07 +orchestre orchestre nom m s 14.69 19.73 13.71 18.04 +orchestrent orchestrer ver 4.29 1.08 0 0.07 ind:pre:3p; +orchestrer orchestrer ver 4.29 1.08 0.12 0.2 inf; +orchestres orchestre nom m p 14.69 19.73 0.98 1.69 +orchestré orchestrer ver m s 4.29 1.08 0.85 0.27 par:pas; +orchestrée orchestrer ver f s 4.29 1.08 0.18 0.07 par:pas; +orchestrées orchestrer ver f p 4.29 1.08 0.04 0.07 par:pas; +orchestrés orchestrer ver m p 4.29 1.08 0.03 0 par:pas; +orchidée orchidée nom f s 3.88 2.57 1.98 1.42 +orchidées orchidée nom f p 3.88 2.57 1.9 1.15 +orchis orchis nom m 0.14 0.27 0.14 0.27 +ord ord adj m s 0.39 0 0.39 0 +ordalie ordalie nom f s 0.04 0.2 0.04 0.2 +ordinaire ordinaire adj s 20.55 27.97 15.54 19.86 +ordinairement ordinairement adv 0.21 2.7 0.21 2.7 +ordinaires ordinaire adj p 20.55 27.97 5.01 8.11 +ordinal ordinal adj m s 0 0.07 0 0.07 +ordinant ordinant nom m s 0 0.07 0 0.07 +ordinateur ordinateur nom m s 37.15 4.26 30.2 2.3 +ordinateurs ordinateur nom m p 37.15 4.26 6.95 1.96 +ordination ordination nom f s 0.12 0.34 0.12 0.34 +ordo ordo nom m 0.01 0.07 0.01 0.07 +ordonna ordonner ver 36.73 35.68 1.34 9.05 ind:pas:3s; +ordonnai ordonner ver 36.73 35.68 0.1 0.68 ind:pas:1s; +ordonnaient ordonner ver 36.73 35.68 0.02 0.41 ind:imp:3p; +ordonnais ordonner ver 36.73 35.68 0.02 0.27 ind:imp:1s; +ordonnait ordonner ver 36.73 35.68 0.11 3.18 ind:imp:3s; +ordonnance ordonnance nom s 9.71 23.65 7.94 19.66 +ordonnancement ordonnancement nom m s 0.01 0.27 0.01 0.27 +ordonnancer ordonnancer ver 0 0.2 0 0.14 inf; +ordonnances ordonnance nom p 9.71 23.65 1.78 3.99 +ordonnancée ordonnancer ver f s 0 0.2 0 0.07 par:pas; +ordonnant ordonner ver 36.73 35.68 0.11 1.15 par:pre; +ordonnateur ordonnateur nom m s 0.16 0.68 0.16 0.47 +ordonnateurs ordonnateur nom m p 0.16 0.68 0 0.14 +ordonnatrice ordonnateur nom f s 0.16 0.68 0 0.07 +ordonne ordonner ver 36.73 35.68 16.69 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ordonnent ordonner ver 36.73 35.68 0.32 0.88 ind:pre:3p; +ordonner ordonner ver 36.73 35.68 2.36 3.78 inf; +ordonnera ordonner ver 36.73 35.68 0.11 0.2 ind:fut:3s; +ordonnerai ordonner ver 36.73 35.68 0.55 0.14 ind:fut:1s; +ordonnerais ordonner ver 36.73 35.68 0.01 0 cnd:pre:1s; +ordonnerait ordonner ver 36.73 35.68 0.05 0.07 cnd:pre:3s; +ordonneront ordonner ver 36.73 35.68 0.01 0 ind:fut:3p; +ordonnes ordonner ver 36.73 35.68 0.77 0 ind:pre:2s; +ordonnez ordonner ver 36.73 35.68 1.23 0.14 imp:pre:2p;ind:pre:2p; +ordonniez ordonner ver 36.73 35.68 0.01 0 ind:imp:2p; +ordonnons ordonner ver 36.73 35.68 0.97 0.41 imp:pre:1p;ind:pre:1p; +ordonnèrent ordonner ver 36.73 35.68 0.02 0.27 ind:pas:3p; +ordonné ordonner ver m s 36.73 35.68 11.52 6.82 par:pas;par:pas;par:pas; +ordonnée ordonné adj f s 0.99 4.39 0.38 1.76 +ordonnées ordonner ver f p 36.73 35.68 0.02 0.41 par:pas; +ordonnés ordonner ver m p 36.73 35.68 0.18 0.47 par:pas; +ordre ordre nom m s 217.25 235.34 132.5 179.26 +ordres ordre nom m p 217.25 235.34 84.75 56.08 +ordure ordure nom f s 31.07 26.55 16.97 10.41 +ordureries ordurerie nom f p 0 0.07 0 0.07 +ordures ordure nom f p 31.07 26.55 14.1 16.15 +ordurier ordurier adj m s 0.3 2.97 0.16 1.08 +orduriers ordurier adj m p 0.3 2.97 0.08 0.68 +ordurière ordurier adj f s 0.3 2.97 0.04 0.54 +ordurières ordurier adj f p 0.3 2.97 0.03 0.68 +ore ore adv 0.04 0 0.04 0 +oreille oreille nom f s 73.54 194.12 34.46 103.45 +oreiller oreiller nom m s 9.34 33.72 7.93 26.35 +oreillers oreiller nom m p 9.34 33.72 1.41 7.36 +oreilles oreille nom f p 73.54 194.12 39.08 90.68 +oreillette oreillette nom f s 0.83 1.08 0.69 0.14 +oreillettes oreillette nom f p 0.83 1.08 0.14 0.95 +oreillons oreillon nom m p 1.07 0.54 1.07 0.54 +orfraie orfraie nom f s 0.01 0.14 0.01 0.14 +orfèvre orfèvre nom s 0.8 3.24 0.49 1.35 +orfèvrerie orfèvrerie nom f s 0.02 0.74 0.02 0.54 +orfèvreries orfèvrerie nom f p 0.02 0.74 0 0.2 +orfèvres orfèvre nom p 0.8 3.24 0.31 1.89 +orfévrée orfévré adj f s 0 0.07 0 0.07 +organdi organdi nom m s 0.45 1.22 0.45 1.15 +organdis organdi nom m p 0.45 1.22 0 0.07 +organe organe nom m s 13.69 15.68 3.14 6.55 +organes organe nom m p 13.69 15.68 10.55 9.12 +organiciser organiciser adj m s 0.01 0 0.01 0 +organigramme organigramme nom m s 0.13 0.07 0.13 0.07 +organique organique adj s 3.67 2.77 2.56 2.16 +organiquement organiquement adv 0.02 0.74 0.02 0.74 +organiques organique adj p 3.67 2.77 1.11 0.61 +organisa organiser ver 47.9 47.16 0.38 2.09 ind:pas:3s; +organisai organiser ver 47.9 47.16 0.01 0.34 ind:pas:1s; +organisaient organiser ver 47.9 47.16 0.05 1.76 ind:imp:3p; +organisais organiser ver 47.9 47.16 0.31 0.07 ind:imp:1s;ind:imp:2s; +organisait organiser ver 47.9 47.16 1.08 4.46 ind:imp:3s; +organisant organiser ver 47.9 47.16 0.19 0.81 par:pre; +organisateur organisateur nom m s 2.37 3.24 1.31 1.55 +organisateurs organisateur nom m p 2.37 3.24 0.75 1.69 +organisation organisation nom f s 20.97 39.12 18.96 34.32 +organisationnelle organisationnel adj f s 0.2 0 0.2 0 +organisations organisation nom f p 20.97 39.12 2.02 4.8 +organisatrice organisateur nom f s 2.37 3.24 0.3 0 +organise organiser ver 47.9 47.16 10.59 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +organisent organiser ver 47.9 47.16 1.83 0.88 ind:pre:3p; +organiser organiser ver 47.9 47.16 13.93 16.01 inf; +organisera organiser ver 47.9 47.16 0.38 0.27 ind:fut:3s; +organiserai organiser ver 47.9 47.16 0.38 0.07 ind:fut:1s; +organiserais organiser ver 47.9 47.16 0.05 0 cnd:pre:1s;cnd:pre:2s; +organiserait organiser ver 47.9 47.16 0.07 0.41 cnd:pre:3s; +organiserez organiser ver 47.9 47.16 0.05 0 ind:fut:2p; +organiseriez organiser ver 47.9 47.16 0.02 0 cnd:pre:2p; +organiserons organiser ver 47.9 47.16 0.2 0.07 ind:fut:1p; +organiseront organiser ver 47.9 47.16 0.16 0 ind:fut:3p; +organises organiser ver 47.9 47.16 1.29 0.07 ind:pre:2s; +organiseur organiseur nom m s 0.01 0 0.01 0 +organisez organiser ver 47.9 47.16 1.01 0.07 imp:pre:2p;ind:pre:2p; +organisiez organiser ver 47.9 47.16 0.11 0.07 ind:imp:2p; +organisions organiser ver 47.9 47.16 0.13 0.34 ind:imp:1p; +organisme organisme nom m s 6.84 10.81 4.83 8.45 +organismes organisme nom m p 6.84 10.81 2.02 2.36 +organisons organiser ver 47.9 47.16 1.55 0 imp:pre:1p;ind:pre:1p; +organiste organiste nom s 0.52 1.01 0.51 1.01 +organistes organiste nom p 0.52 1.01 0.01 0 +organistique organistique adj m s 0 0.07 0 0.07 +organisâmes organiser ver 47.9 47.16 0 0.07 ind:pas:1p; +organisât organiser ver 47.9 47.16 0 0.14 sub:imp:3s; +organisèrent organiser ver 47.9 47.16 0.11 0.54 ind:pas:3p; +organisé organiser ver m s 47.9 47.16 10.55 7.16 par:pas; +organisée organiser ver f s 47.9 47.16 2.13 3.99 par:pas; +organisées organisé adj f p 5.58 7.5 0.2 0.61 +organisés organisé adj m p 5.58 7.5 1.33 1.76 +organométallique organométallique adj m s 0.01 0 0.01 0 +organon organon nom m s 0.01 0 0.01 0 +orgasme orgasme nom m s 6.37 3.38 4.89 3.18 +orgasmes orgasme nom m p 6.37 3.38 1.48 0.2 +orgasmique orgasmique adj s 0.08 0 0.08 0 +orgastique orgastique adj m s 0 0.14 0 0.14 +orge orge nom s 1.98 3.72 1.96 3.58 +orgeat orgeat nom m s 0.19 0.74 0.19 0.74 +orgelet orgelet nom m s 0.89 0.27 0.78 0.07 +orgelets orgelet nom m p 0.89 0.27 0.11 0.2 +orges orge nom p 1.98 3.72 0.01 0.14 +orgiaque orgiaque adj m s 0.31 0.07 0.31 0.07 +orgiastique orgiastique adj m s 0 0.14 0 0.07 +orgiastiques orgiastique adj p 0 0.14 0 0.07 +orgie orgie nom f s 3.46 3.72 2.09 2.36 +orgies orgie nom f p 3.46 3.72 1.38 1.35 +orgue orgue nom m s 3.12 8.31 3.08 5.41 +orgueil orgueil nom m s 11.56 33.45 11.56 33.24 +orgueilleuse orgueilleux adj f s 1.81 9.19 0.37 4.59 +orgueilleusement orgueilleusement adv 0.14 1.35 0.14 1.35 +orgueilleuses orgueilleux adj f p 1.81 9.19 0.23 0.54 +orgueilleux orgueilleux adj m 1.81 9.19 1.2 4.05 +orgueils orgueil nom m p 11.56 33.45 0 0.2 +orgues orgue nom f p 3.12 8.31 0.04 2.91 +oribus oribus nom m 0 0.07 0 0.07 +orient orient nom m s 0.78 3.78 0.78 3.72 +orienta orienter ver 3.91 11.89 0.1 0.81 ind:pas:3s; +orientable orientable adj s 0.14 0.34 0.14 0.34 +orientai orienter ver 3.91 11.89 0.01 0.07 ind:pas:1s; +orientaient orienter ver 3.91 11.89 0.01 0.41 ind:imp:3p; +orientais orienter ver 3.91 11.89 0.01 0.2 ind:imp:1s; +orientait orienter ver 3.91 11.89 0 0.81 ind:imp:3s; +oriental oriental adj m s 4.16 14.32 0.92 3.51 +orientale oriental adj f s 4.16 14.32 2.52 6.82 +orientales oriental adj f p 4.16 14.32 0.4 2.5 +orientalisme orientalisme nom m s 0 0.14 0 0.14 +orientaliste orientaliste adj f s 0.01 0.07 0.01 0.07 +orientalistes orientaliste nom p 0 0.2 0 0.14 +orientant orienter ver 3.91 11.89 0.01 0.54 par:pre; +orientateurs orientateur nom m p 0 0.07 0 0.07 +orientation orientation nom f s 3.86 6.89 3.76 6.62 +orientations orientation nom f p 3.86 6.89 0.1 0.27 +orientaux oriental adj m p 4.16 14.32 0.32 1.49 +oriente orienter ver 3.91 11.89 0.96 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +orientent orienter ver 3.91 11.89 0.16 0 ind:pre:3p; +orienter orienter ver 3.91 11.89 1.4 3.65 ind:pre:2p;inf; +orienterai orienter ver 3.91 11.89 0.04 0 ind:fut:1s; +orienterait orienter ver 3.91 11.89 0.01 0.07 cnd:pre:3s; +orienterez orienter ver 3.91 11.89 0.01 0 ind:fut:2p; +orienteur orienteur nom m s 0.27 0.14 0.27 0 +orienteurs orienteur nom m p 0.27 0.14 0 0.07 +orienteuse orienteur nom f s 0.27 0.14 0 0.07 +orientez orienter ver 3.91 11.89 0.15 0.07 imp:pre:2p;ind:pre:2p; +orients orient nom m p 0.78 3.78 0 0.07 +orientèrent orienter ver 3.91 11.89 0 0.07 ind:pas:3p; +orienté orienter ver m s 3.91 11.89 0.4 1.55 par:pas; +orientée orienter ver f s 3.91 11.89 0.27 1.08 par:pas; +orientées orienter ver f p 3.91 11.89 0.2 0.47 par:pas; +orientés orienter ver m p 3.91 11.89 0.17 0.74 par:pas; +orifice orifice nom m s 1.85 4.05 1.23 3.24 +orifices orifice nom m p 1.85 4.05 0.61 0.81 +oriflamme oriflamme nom f s 0.22 2.84 0.01 1.08 +oriflammes oriflamme nom f p 0.22 2.84 0.21 1.76 +origami origami nom m s 0.23 0.07 0.23 0.07 +origan origan nom m s 0.32 0.95 0.32 0.95 +originaire originaire adj s 2.58 5.41 2.06 4.19 +originairement originairement adv 0 0.14 0 0.14 +originaires originaire adj p 2.58 5.41 0.51 1.22 +original original nom m s 10.44 4.32 8.48 2.84 +originale original adj f s 14.45 10.54 4.15 3.24 +originalement originalement adv 0.01 0 0.01 0 +originales original adj f p 14.45 10.54 1.03 1.55 +originalité originalité nom f s 1.34 4.53 1.34 4.39 +originalités originalité nom f p 1.34 4.53 0 0.14 +originaux original nom m p 10.44 4.32 1.44 1.08 +origine origine nom f s 28.07 46.82 22.18 34.19 +originel originel adj m s 1.84 6.49 1.03 3.11 +originelle originel adj f s 1.84 6.49 0.58 2.91 +originellement originellement adv 0.09 0.34 0.09 0.34 +originelles originel adj f p 1.84 6.49 0.12 0.2 +originels originel adj m p 1.84 6.49 0.11 0.27 +origines origine nom f p 28.07 46.82 5.88 12.64 +orignal orignal nom m s 0.42 0.47 0.26 0.2 +orignaux orignal nom m p 0.42 0.47 0.16 0.27 +orillon orillon nom m s 0 0.14 0 0.07 +orillons orillon nom m p 0 0.14 0 0.07 +orin orin nom m s 0.21 0 0.21 0 +oriol oriol nom m s 0 0.14 0 0.14 +oripeaux oripeau nom m p 0.38 1.55 0.38 1.55 +orlon orlon nom m s 0.04 0 0.04 0 +orléanais orléanais adj m 0 0.27 0 0.07 +orléanaise orléanais adj f s 0 0.27 0 0.14 +orléanaises orléanais adj f p 0 0.27 0 0.07 +orléanisme orléanisme nom m s 0 0.2 0 0.2 +orléaniste orléaniste adj f s 0.14 0.2 0 0.14 +orléanistes orléaniste adj f p 0.14 0.2 0.14 0.07 +orme orme nom m s 0.39 3.58 0.33 1.28 +ormeau ormeau nom m s 0.03 1.08 0.01 0.47 +ormeaux ormeau nom m p 0.03 1.08 0.02 0.61 +ormes orme nom m p 0.39 3.58 0.06 2.3 +orna orner ver 3.11 31.15 0 0.2 ind:pas:3s; +ornaient orner ver 3.11 31.15 0.1 2.03 ind:imp:3p; +ornait orner ver 3.11 31.15 0.02 3.11 ind:imp:3s; +ornant orner ver 3.11 31.15 0.23 0.88 par:pre; +orne orner ver 3.11 31.15 0.44 1.08 imp:pre:2s;ind:pre:3s; +ornement ornement nom m s 0.96 7.03 0.33 3.24 +ornemental ornemental adj m s 0.17 0.34 0.13 0.14 +ornementale ornemental adj f s 0.17 0.34 0.02 0.2 +ornementales ornemental adj f p 0.17 0.34 0.02 0 +ornementation ornementation nom f s 0.14 0.81 0.14 0.74 +ornementations ornementation nom f p 0.14 0.81 0 0.07 +ornementer ornementer ver 0.01 0.61 0 0.07 inf; +ornements ornement nom m p 0.96 7.03 0.64 3.78 +ornementé ornementer ver m s 0.01 0.61 0 0.27 par:pas; +ornementée ornementer ver f s 0.01 0.61 0.01 0.14 par:pas; +ornementés ornementer ver m p 0.01 0.61 0 0.14 par:pas; +ornent orner ver 3.11 31.15 0.17 0.81 ind:pre:3p; +orner orner ver 3.11 31.15 1.11 1.82 inf; +ornera orner ver 3.11 31.15 0.07 0.07 ind:fut:3s; +ornerait orner ver 3.11 31.15 0 0.07 cnd:pre:3s; +orneront orner ver 3.11 31.15 0.11 0.07 ind:fut:3p; +ornez orner ver 3.11 31.15 0.25 0 imp:pre:2p; +ornithologie ornithologie nom f s 0.2 0.07 0.2 0.07 +ornithologique ornithologique adj s 0.17 0 0.17 0 +ornithologue ornithologue nom s 0.13 0.14 0.12 0.07 +ornithologues ornithologue nom p 0.13 0.14 0.01 0.07 +ornithoptère ornithoptère nom m s 0.01 0 0.01 0 +ornithorynque ornithorynque nom m s 0.26 0.2 0.25 0.07 +ornithorynques ornithorynque nom m p 0.26 0.2 0.01 0.14 +ornière ornière nom f s 0.49 6.42 0.17 1.42 +ornières ornière nom f p 0.49 6.42 0.31 5 +ornât orner ver 3.11 31.15 0 0.14 sub:imp:3s; +ornèrent orner ver 3.11 31.15 0 0.14 ind:pas:3p; +orné orner ver m s 3.11 31.15 0.26 8.38 par:pas; +ornée orner ver f s 3.11 31.15 0.08 6.01 par:pas; +ornées orner ver f p 3.11 31.15 0.26 2.77 par:pas; +ornés orné adj m p 0.04 0.88 0.03 0.27 +orographie orographie nom f s 0.4 0 0.4 0 +oronge oronge nom f s 0 0.2 0 0.07 +oronges oronge nom f p 0 0.2 0 0.14 +oropharynx oropharynx nom m 0.04 0 0.04 0 +orpailleur orpailleur nom m s 0.02 0.07 0.01 0.07 +orpailleurs orpailleur nom m p 0.02 0.07 0.01 0 +orphelin orphelin adj m s 7.57 6.49 3.92 3.78 +orphelinat orphelinat nom m s 6.13 3.18 5.86 2.91 +orphelinats orphelinat nom m p 6.13 3.18 0.28 0.27 +orpheline orphelin adj f s 7.57 6.49 2.11 1.35 +orphelines orphelin nom f p 7.55 9.53 0.79 0.2 +orphelins orphelin nom m p 7.55 9.53 3.91 2.3 +orphie orphie nom f s 0.02 0 0.02 0 +orphique orphique adj m s 0 0.14 0 0.07 +orphiques orphique adj m p 0 0.14 0 0.07 +orphisme orphisme nom m s 0 0.07 0 0.07 +orphée orphée nom f s 0 0.07 0 0.07 +orphéon orphéon nom m s 0.1 0.95 0.1 0.74 +orphéoniste orphéoniste nom s 0 0.14 0 0.07 +orphéonistes orphéoniste nom p 0 0.14 0 0.07 +orphéons orphéon nom m p 0.1 0.95 0 0.2 +orpiment orpiment nom m s 0.1 0 0.1 0 +orpin orpin nom m s 0 0.14 0 0.14 +orque orque nom f s 1.43 0.07 0.61 0.07 +orques orque nom f p 1.43 0.07 0.82 0 +ors or nom m p 110.28 130 0.32 2.77 +orsec orsec nom m 0 0.07 0 0.07 +ort ort adj 0.16 0 0.16 0 +orteil orteil nom m s 9.71 9.12 4.04 1.96 +orteils orteil nom m p 9.71 9.12 5.67 7.16 +ortho ortho adv 0.56 0.27 0.56 0.27 +orthodontie orthodontie nom f s 0.04 0 0.04 0 +orthodontique orthodontique adj m s 0.01 0 0.01 0 +orthodontiste orthodontiste nom s 0.28 0 0.22 0 +orthodontistes orthodontiste nom p 0.28 0 0.05 0 +orthodoxe orthodoxe adj s 2.13 4.73 1.56 3.24 +orthodoxes orthodoxe nom p 0.73 1.22 0.58 0.88 +orthodoxie orthodoxie nom f s 0.15 1.42 0.15 1.42 +orthogonal orthogonal adj m s 0.04 0.07 0.03 0 +orthogonaux orthogonal adj m p 0.04 0.07 0.01 0.07 +orthographe orthographe nom f s 3.34 5.88 3.34 5.88 +orthographiait orthographier ver 0.2 0.47 0 0.14 ind:imp:3s; +orthographie orthographier ver 0.2 0.47 0.02 0.07 ind:pre:3s; +orthographier orthographier ver 0.2 0.47 0.04 0.14 inf; +orthographique orthographique adj s 0.02 0.07 0.02 0 +orthographiques orthographique adj f p 0.02 0.07 0 0.07 +orthographié orthographier ver m s 0.2 0.47 0.13 0.14 par:pas; +orthographiées orthographier ver f p 0.2 0.47 0.01 0 par:pas; +orthophonie orthophonie nom f s 0.07 0 0.07 0 +orthophoniste orthophoniste nom s 0.3 0.14 0.3 0.07 +orthophonistes orthophoniste nom p 0.3 0.14 0 0.07 +orthoptère orthoptère nom m s 0.01 0.14 0.01 0 +orthoptères orthoptère nom m p 0.01 0.14 0 0.14 +orthopédie orthopédie nom f s 0.51 0.14 0.51 0.14 +orthopédique orthopédique adj s 0.28 0.81 0.18 0.54 +orthopédiques orthopédique adj p 0.28 0.81 0.09 0.27 +orthopédiste orthopédiste nom s 0.1 0 0.1 0 +orthostatique orthostatique adj f s 0.01 0 0.01 0 +ortie ortie nom f s 2.04 6.82 0.41 0.74 +orties ortie nom f p 2.04 6.82 1.63 6.08 +ortolan ortolan nom m s 0.41 1.89 0.11 0.27 +ortolans ortolan nom m p 0.41 1.89 0.3 1.62 +ortédrine ortédrine nom f s 0 0.07 0 0.07 +orvet orvet nom m s 0.04 0.14 0.04 0.14 +oryctérope oryctérope nom m s 0.03 0 0.03 0 +oryx oryx nom m 0.08 0 0.08 0 +oréade oréade nom f s 0 0.07 0 0.07 +orée orée nom f s 0.67 4.86 0.67 4.86 +orémus orémus nom m 0 0.14 0 0.14 +os os nom m 40.77 49.73 40.77 49.73 +osa oser ver 90.2 155.54 0.05 11.35 ind:pas:3s; +osai oser ver 90.2 155.54 0.14 2.36 ind:pas:1s; +osaient oser ver 90.2 155.54 0.17 3.38 ind:imp:3p; +osais oser ver 90.2 155.54 2.73 12.77 ind:imp:1s;ind:imp:2s; +osait oser ver 90.2 155.54 1.91 27.3 ind:imp:3s; +osant oser ver 90.2 155.54 0.05 5.68 par:pre; +oscar oscar nom m s 1.71 0.47 0.65 0.14 +oscars oscar nom m p 1.71 0.47 1.07 0.34 +oscilla osciller ver 0.63 13.11 0 0.61 ind:pas:3s; +oscillai osciller ver 0.63 13.11 0 0.07 ind:pas:1s; +oscillaient osciller ver 0.63 13.11 0 0.81 ind:imp:3p; +oscillais osciller ver 0.63 13.11 0.01 0.2 ind:imp:1s; +oscillait osciller ver 0.63 13.11 0.01 3.18 ind:imp:3s; +oscillant oscillant adj m s 0.06 0.81 0.04 0.47 +oscillante oscillant adj f s 0.06 0.81 0.01 0.14 +oscillants oscillant adj m p 0.06 0.81 0 0.2 +oscillateur oscillateur nom m s 0.17 0.07 0.17 0.07 +oscillation oscillation nom f s 0.25 1.96 0.13 0.88 +oscillations oscillation nom f p 0.25 1.96 0.12 1.08 +oscillatoire oscillatoire adj m s 0.01 0.14 0.01 0.07 +oscillatoires oscillatoire adj m p 0.01 0.14 0 0.07 +oscille osciller ver 0.63 13.11 0.46 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +oscillent osciller ver 0.63 13.11 0.09 0.61 ind:pre:3p; +osciller osciller ver 0.63 13.11 0.04 1.76 inf; +oscillez osciller ver 0.63 13.11 0.01 0 imp:pre:2p; +oscillographe oscillographe nom s 0.07 0 0.07 0 +oscillomètre oscillomètre nom m s 0.01 0.07 0.01 0.07 +oscilloscope oscilloscope nom m s 0.08 0 0.08 0 +oscillèrent osciller ver 0.63 13.11 0 0.14 ind:pas:3p; +oscillé osciller ver m s 0.63 13.11 0 0.27 par:pas; +ose oser ver 90.2 155.54 22.97 28.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +oseille oseille nom f s 1.78 4.32 1.78 4.19 +oseilles oseille nom f p 1.78 4.32 0 0.14 +osent oser ver 90.2 155.54 3.23 3.92 ind:pre:3p; +oser oser ver 90.2 155.54 3.28 11.49 inf;;inf;;inf;;inf;;inf;;inf;; +osera oser ver 90.2 155.54 1.5 1.89 ind:fut:3s; +oserai oser ver 90.2 155.54 1.6 2.03 ind:fut:1s; +oseraie oseraie nom f s 0 0.14 0 0.07 +oseraient oseraient adv 0 0.07 0 0.07 +oseraies oseraie nom f p 0 0.14 0 0.07 +oserais oser ver 90.2 155.54 3.86 3.99 cnd:pre:1s;cnd:pre:2s; +oserait oser ver 90.2 155.54 2.71 5.34 cnd:pre:3s; +oseras oser ver 90.2 155.54 1.42 0.14 ind:fut:2s; +oserez oser ver 90.2 155.54 0.33 0.27 ind:fut:2p; +oseriez oser ver 90.2 155.54 0.91 0.07 cnd:pre:2p; +oserions oser ver 90.2 155.54 0.04 0.14 cnd:pre:1p; +oserons oser ver 90.2 155.54 0.04 0 ind:fut:1p; +oseront oser ver 90.2 155.54 0.76 0.47 ind:fut:3p; +oses oser ver 90.2 155.54 18.16 1.89 ind:pre:2s; +osez oser ver 90.2 155.54 10.71 1.49 imp:pre:2p;ind:pre:2p; +osier osier nom m s 0.35 12.64 0.35 12.3 +osiers osier nom m p 0.35 12.64 0 0.34 +osiez oser ver 90.2 155.54 0.34 0.14 ind:imp:2p; +osions oser ver 90.2 155.54 0.16 1.55 ind:imp:1p; +osmium osmium nom m s 0.02 0 0.02 0 +osmonde osmonde nom f s 0.02 0 0.02 0 +osmose osmose nom f s 0.5 1.08 0.5 1.01 +osmoses osmose nom f p 0.5 1.08 0 0.07 +osons oser ver 90.2 155.54 0.23 0.81 imp:pre:1p;ind:pre:1p; +ossature ossature nom f s 0.52 1.62 0.52 1.49 +ossatures ossature nom f p 0.52 1.62 0 0.14 +osselet osselet nom m s 0.39 3.31 0 0.14 +osselets osselet nom m p 0.39 3.31 0.39 3.18 +ossement ossement nom m s 1.33 3.78 0.02 0.14 +ossements ossement nom m p 1.33 3.78 1.3 3.65 +osseuse osseux adj f s 1.73 9.32 1.33 2.64 +osseuses osseux adj f p 1.73 9.32 0.08 1.42 +osseux osseux adj m 1.73 9.32 0.32 5.27 +ossification ossification nom f s 0 0.14 0 0.14 +ossifié ossifier ver m s 0 0.07 0 0.07 par:pas; +osso_buco osso_buco nom m s 0.05 0 0.05 0 +ossuaire ossuaire nom m s 0.43 0.54 0.42 0.41 +ossuaires ossuaire nom m p 0.43 0.54 0.01 0.14 +ossue ossu adj f s 0 0.07 0 0.07 +ost ost nom m s 0.18 0 0.18 0 +ostensible ostensible adj s 0 0.54 0 0.54 +ostensiblement ostensiblement adv 0.04 4.66 0.04 4.66 +ostensoir ostensoir nom m s 0.27 1.62 0.14 1.28 +ostensoirs ostensoir nom m p 0.27 1.62 0.14 0.34 +ostentation ostentation nom f s 0.32 3.38 0.32 3.38 +ostentatoire ostentatoire adj s 0.08 1.42 0.08 1.42 +ostentatoirement ostentatoirement adv 0 0.14 0 0.14 +ostinato ostinato adv 0.02 0 0.02 0 +ostracisme ostracisme nom m s 0.47 1.08 0.47 1.08 +ostrogoth ostrogoth nom m s 0.02 0.2 0.01 0.14 +ostrogoths ostrogoth nom m p 0.02 0.2 0.01 0.07 +ostréiculteur ostréiculteur nom m s 0.01 0.14 0 0.07 +ostréiculteurs ostréiculteur nom m p 0.01 0.14 0.01 0.07 +ostréiculture ostréiculture nom f s 0.01 0 0.01 0 +ostéoarthrite ostéoarthrite nom f s 0.01 0 0.01 0 +ostéogenèse ostéogenèse nom f s 0.02 0 0.02 0 +ostéogéniques ostéogénique adj f p 0.01 0 0.01 0 +ostéologique ostéologique adj f s 0.01 0 0.01 0 +ostéomyélite ostéomyélite nom f s 0.03 0 0.03 0 +ostéopathe ostéopathe nom s 0.36 0 0.33 0 +ostéopathes ostéopathe nom p 0.36 0 0.03 0 +ostéopathie ostéopathie nom f s 0.01 0.07 0.01 0.07 +ostéoporose ostéoporose nom f s 0.07 0 0.07 0 +ostéosarcome ostéosarcome nom m s 0.04 0 0.04 0 +ostéotomie ostéotomie nom f s 0.01 0 0.01 0 +osâmes oser ver 90.2 155.54 0 0.2 ind:pas:1p; +osât oser ver 90.2 155.54 0.1 0.88 sub:imp:3s; +osèrent oser ver 90.2 155.54 0.34 0.54 ind:pas:3p; +osé oser ver m s 90.2 155.54 12.12 26.82 par:pas; +osée oser ver f s 90.2 155.54 0.21 0.07 par:pas; +osées osé adj f p 1.24 0.88 0.39 0.27 +osés osé adj m p 1.24 0.88 0.12 0.14 +otage otage nom m s 26.4 5.74 15.22 2.97 +otages otage nom m p 26.4 5.74 11.17 2.77 +otalgie otalgie nom f s 0.03 0 0.03 0 +otarie otarie nom f s 1.05 1.15 0.13 0.68 +otaries otarie nom f p 1.05 1.15 0.92 0.47 +otite otite nom f s 1.16 0.81 0.84 0.47 +otites otite nom f p 1.16 0.81 0.31 0.34 +oto_rhino oto_rhino nom s 0.49 1.22 0 0.07 +oto_rhino oto_rhino nom s 0.49 1.22 0.48 1.08 +oto_rhino_laryngologique oto_rhino_laryngologique adj f s 0 0.07 0 0.07 +oto_rhino_laryngologiste oto_rhino_laryngologiste nom s 0.02 0 0.02 0 +oto_rhino oto_rhino nom p 0.49 1.22 0.01 0.07 +otoscope otoscope nom m s 0.01 0 0.01 0 +otospongiose otospongiose nom s 0.1 0 0.1 0 +ottoman ottoman adj m s 0.28 1.35 0.18 0.27 +ottomane ottomane nom f s 0.01 0.27 0.01 0.27 +ottomanes ottoman adj f p 0.28 1.35 0 0.07 +ottomans ottoman adj m p 0.28 1.35 0.1 0.14 +ou ou con 1583.95 2429.86 1583.95 2429.86 +ouah ouah ono 9.3 1.28 9.3 1.28 +ouaille ouaille nom f s 0.57 1.15 0.01 0.07 +ouailles ouaille nom f p 0.57 1.15 0.56 1.08 +ouais ouais adv_sup 533.02 39.05 533.02 39.05 +ouananiche ouananiche nom f s 0.06 0.07 0.04 0 +ouananiches ouananiche nom f p 0.06 0.07 0.02 0.07 +ouaouaron ouaouaron nom m s 0.01 0 0.01 0 +ouata ouater ver 0 1.82 0 0.07 ind:pas:3s; +ouatant ouater ver 0 1.82 0 0.07 par:pre; +ouate ouate nom f s 0.27 3.72 0.26 3.58 +ouates ouate nom f p 0.27 3.72 0.01 0.14 +ouateuse ouateux adj f s 0 0.14 0 0.07 +ouateux ouateux adj m s 0 0.14 0 0.07 +ouatiner ouatiner ver 0 0.41 0 0.07 inf; +ouatiné ouatiner ver m s 0 0.41 0 0.07 par:pas; +ouatinée ouatiner ver f s 0 0.41 0 0.14 par:pas; +ouatinées ouatiner ver f p 0 0.41 0 0.14 par:pas; +ouaté ouaté adj m s 0.01 2.23 0.01 0.74 +ouatée ouaté adj f s 0.01 2.23 0 1.01 +ouatées ouaté adj f p 0.01 2.23 0 0.14 +ouatés ouater ver m p 0 1.82 0 0.47 par:pas; +oubli oubli nom m s 8.02 29.93 6.92 28.65 +oublia oublier ver 486.96 286.96 0.58 6.15 ind:pas:3s; +oubliable oubliable adj f s 0.03 0.14 0.03 0.14 +oubliai oublier ver 486.96 286.96 0.42 1.96 ind:pas:1s; +oubliaient oublier ver 486.96 286.96 0.17 2.16 ind:imp:3p; +oubliais oublier ver 486.96 286.96 9.17 9.12 ind:imp:1s;ind:imp:2s; +oubliait oublier ver 486.96 286.96 1.22 14.32 ind:imp:3s; +oubliant oublier ver 486.96 286.96 1.52 8.11 par:pre; +oublias oublier ver 486.96 286.96 0 0.07 ind:pas:2s; +oubliasse oublier ver 486.96 286.96 0 0.07 sub:imp:1s; +oublie oublier ver 486.96 286.96 104.78 34.66 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +oublient oublier ver 486.96 286.96 3.94 3.51 ind:pre:3p; +oublier oublier ver 486.96 286.96 85.96 74.19 inf;; +oubliera oublier ver 486.96 286.96 4.03 1.62 ind:fut:3s; +oublierai oublier ver 486.96 286.96 15.98 6.55 ind:fut:1s; +oublieraient oublier ver 486.96 286.96 0.09 0.2 cnd:pre:3p; +oublierais oublier ver 486.96 286.96 2.42 0.34 cnd:pre:1s;cnd:pre:2s; +oublierait oublier ver 486.96 286.96 0.89 2.97 cnd:pre:3s; +oublieras oublier ver 486.96 286.96 4.74 0.81 ind:fut:2s; +oublierez oublier ver 486.96 286.96 1.89 0.54 ind:fut:2p; +oublierions oublier ver 486.96 286.96 0 0.07 cnd:pre:1p; +oublierons oublier ver 486.96 286.96 1.56 0.27 ind:fut:1p; +oublieront oublier ver 486.96 286.96 1.1 0.34 ind:fut:3p; +oublies oublier ver 486.96 286.96 15.34 4.39 ind:pre:2s;sub:pre:2s; +oubliette oubliette nom f s 1.21 1.62 0.19 0.14 +oubliettes oubliette nom f p 1.21 1.62 1.01 1.49 +oublieuse oublieux adj f s 0.65 2.23 0 0.68 +oublieuses oublieux adj f p 0.65 2.23 0.2 0.27 +oublieux oublieux adj m 0.65 2.23 0.45 1.28 +oubliez oublier ver 486.96 286.96 49.48 11.15 imp:pre:2p;ind:pre:2p; +oubliiez oublier ver 486.96 286.96 0 0.07 ind:imp:2p; +oubliions oublier ver 486.96 286.96 0 0.27 ind:imp:1p; +oublions oublier ver 486.96 286.96 13.28 3.72 imp:pre:1p;ind:pre:1p; +oublis oubli nom m p 8.02 29.93 0.2 1.22 +oubliâmes oublier ver 486.96 286.96 0.14 0.07 ind:pas:1p; +oubliât oublier ver 486.96 286.96 0 0.41 sub:imp:3s; +oublièrent oublier ver 486.96 286.96 0.02 1.08 ind:pas:3p; +oublié oublier ver m s 486.96 286.96 154.09 80.27 par:pas;par:pas;par:pas; +oubliée oublier ver f s 486.96 286.96 8.81 8.92 par:pas; +oubliées oublier ver f p 486.96 286.96 1.65 2.64 par:pas; +oubliés oublier ver m p 486.96 286.96 3.72 5.95 par:pas; +ouche ouche nom f s 0.42 0.07 0.42 0.07 +oued oued nom m s 0.27 0.61 0.27 0.47 +oueds oued nom m p 0.27 0.61 0 0.14 +ouest ouest nom m 27.79 27.77 27.79 27.77 +ouest_allemand ouest_allemand adj m s 0.12 0 0.12 0 +ouf ouf ono 4.57 7.03 4.57 7.03 +ougandais ougandais nom m 0.06 0.07 0.06 0.07 +ougandaise ougandais adj f s 0.04 0 0.04 0 +ouh ouh ono 5.5 1.28 5.5 1.28 +oui oui adv_sup 3207.35 637.57 3207.35 637.57 +oui_da oui_da ono 0.27 0.07 0.27 0.07 +ouiche ouiche ono 0.02 1.96 0.02 1.96 +ouighour ouighour nom m s 0 1.01 0 0.61 +ouighours ouighour nom m p 0 1.01 0 0.41 +ouille ouille ono 0.79 1.69 0.79 1.69 +ouistiti ouistiti nom m s 1.51 0.81 1.46 0.61 +ouistitis ouistiti nom m p 1.51 0.81 0.05 0.2 +oukases oukase nom m p 0 0.07 0 0.07 +ouléma ouléma nom m s 0.01 1.69 0.01 0.14 +oulémas ouléma nom m p 0.01 1.69 0 1.55 +ounce ounce nom f s 0.01 0 0.01 0 +ouragan ouragan nom m s 6.05 4.19 5.09 3.72 +ouragans ouragan nom m p 6.05 4.19 0.96 0.47 +ouralienne ouralien adj f s 0 0.07 0 0.07 +ouraniennes ouranien adj f p 0 0.07 0 0.07 +ourdi ourdir ver m s 0.72 1.55 0.39 0.27 par:pas; +ourdie ourdir ver f s 0.72 1.55 0.1 0.14 par:pas; +ourdies ourdir ver f p 0.72 1.55 0 0.07 par:pas; +ourdir ourdir ver 0.72 1.55 0.01 0.14 inf; +ourdira ourdir ver 0.72 1.55 0 0.07 ind:fut:3s; +ourdis ourdir ver 0.72 1.55 0.01 0.07 ind:pre:1s;ind:pre:2s; +ourdissage ourdissage nom m s 0 0.54 0 0.54 +ourdissait ourdir ver 0.72 1.55 0.1 0.07 ind:imp:3s; +ourdissant ourdir ver 0.72 1.55 0 0.2 par:pre; +ourdissent ourdir ver 0.72 1.55 0 0.14 ind:pre:3p; +ourdisseur ourdisseur nom m s 0 0.41 0 0.07 +ourdisseurs ourdisseur nom m p 0 0.41 0 0.07 +ourdisseuses ourdisseur nom f p 0 0.41 0 0.27 +ourdissoir ourdissoir nom m s 0 0.27 0 0.27 +ourdit ourdir ver 0.72 1.55 0.11 0.41 ind:pre:3s;ind:pas:3s; +ourdou ourdou nom m s 0.42 0 0.42 0 +ourlaient ourler ver 0.02 5.14 0 0.2 ind:imp:3p; +ourlait ourler ver 0.02 5.14 0 0.41 ind:imp:3s; +ourlant ourler ver 0.02 5.14 0 0.34 par:pre; +ourle ourler ver 0.02 5.14 0 0.34 ind:pre:3s; +ourlent ourler ver 0.02 5.14 0 0.2 ind:pre:3p; +ourler ourler ver 0.02 5.14 0 0.34 inf; +ourlet ourlet nom m s 0.93 3.11 0.69 2.36 +ourlets ourlet nom m p 0.93 3.11 0.24 0.74 +ourlé ourler ver m s 0.02 5.14 0 0.74 par:pas; +ourlée ourler ver f s 0.02 5.14 0 0.81 par:pas; +ourlées ourler ver f p 0.02 5.14 0.02 1.42 par:pas; +ourlés ourler ver m p 0.02 5.14 0 0.34 par:pas; +ouroboros ouroboros nom m 0.02 0 0.02 0 +ours ours nom m s 24.57 17.91 23.96 17.36 +ourse ours nom f s 24.57 17.91 0.58 0.47 +ourses ours nom f p 24.57 17.91 0.02 0.07 +oursin oursin nom m s 0.38 2.03 0.04 0.54 +oursins oursin nom m p 0.38 2.03 0.34 1.49 +ourson ourson nom m s 1.63 0.74 1.52 0.41 +oursonne ourson nom f s 1.63 0.74 0.01 0.07 +oursonnes ourson nom f p 1.63 0.74 0.01 0 +oursons ourson nom m p 1.63 0.74 0.09 0.27 +ousque ousque adv 0.01 0.07 0.01 0.07 +oust oust ono 0.25 0.14 0.25 0.14 +oustachi oustachi nom m s 0.28 0.27 0.14 0 +oustachis oustachi nom m p 0.28 0.27 0.14 0.27 +ouste ouste ono 5.24 1.82 5.24 1.82 +out out adj 8.04 0.68 8.04 0.68 +outarde outarde nom f s 0 0.14 0 0.07 +outardes outarde nom f p 0 0.14 0 0.07 +outil outil nom m s 14.18 30.88 3.63 10.14 +outillage outillage nom m s 0.36 2.7 0.25 2.23 +outillages outillage nom m p 0.36 2.7 0.11 0.47 +outiller outiller ver 0.06 0.2 0.01 0 inf; +outilleur outilleur nom m s 0.1 0 0.1 0 +outillé outiller ver m s 0.06 0.2 0.04 0.07 par:pas; +outillée outillé adj f s 0.01 0.41 0 0.07 +outillées outillé adj f p 0.01 0.41 0 0.07 +outillés outiller ver m p 0.06 0.2 0.01 0.07 par:pas; +outils outil nom m p 14.18 30.88 10.56 20.74 +outlaw outlaw nom m s 0 0.14 0 0.07 +outlaws outlaw nom m p 0 0.14 0 0.07 +outrage outrage nom m s 3.89 5.14 3.4 2.97 +outrageant outrageant adj m s 0.36 0.61 0.15 0.27 +outrageante outrageant adj f s 0.36 0.61 0.2 0.2 +outrageantes outrageant adj f p 0.36 0.61 0 0.07 +outrageants outrageant adj m p 0.36 0.61 0.02 0.07 +outragent outrager ver 2.36 4.66 0.01 0.07 ind:pre:3p; +outrager outrager ver 2.36 4.66 0.26 0.27 inf; +outragerais outrager ver 2.36 4.66 0 0.07 cnd:pre:1s; +outrages outrage nom m p 3.89 5.14 0.49 2.16 +outrageuse outrageux adj f s 0.1 0.27 0.05 0 +outrageusement outrageusement adv 0.08 1.35 0.08 1.35 +outrageuses outrageux adj f p 0.1 0.27 0.01 0.07 +outrageux outrageux adj m s 0.1 0.27 0.03 0.2 +outragez outrager ver 2.36 4.66 0.17 0 imp:pre:2p;ind:pre:2p; +outragèrent outrager ver 2.36 4.66 0 0.07 ind:pas:3p; +outragé outrager ver m s 2.36 4.66 0.26 1.42 par:pas; +outragée outrager ver f s 2.36 4.66 0.27 1.55 par:pas; +outragées outrager ver f p 2.36 4.66 0.01 0.2 par:pas; +outragés outrager ver m p 2.36 4.66 0.31 0.54 par:pas; +outrait outrer ver 0.57 3.11 0 0.34 ind:imp:3s; +outrance outrance nom f s 0.17 3.51 0.17 2.77 +outrances outrance nom f p 0.17 3.51 0 0.74 +outrancier outrancier adj m s 0.16 0.68 0.14 0.41 +outrancière outrancier adj f s 0.16 0.68 0.01 0.14 +outrancières outrancier adj f p 0.16 0.68 0.01 0.14 +outrant outrer ver 0.57 3.11 0 0.07 par:pre; +outre outre pre 3.03 15.27 3.03 15.27 +outre_atlantique outre_atlantique adv 0.04 0.68 0.04 0.68 +outre_manche outre_manche adv 0 0.2 0 0.2 +outre_mer outre_mer adv 0.89 4.05 0.89 4.05 +outre_rhin outre_rhin adv 0 0.27 0 0.27 +outre_tombe outre_tombe adj s 0.26 2.16 0.26 2.16 +outrecuidance outrecuidance nom f s 0.01 0.74 0.01 0.74 +outrecuidant outrecuidant adj m s 0.11 0.54 0.11 0.2 +outrecuidante outrecuidant adj f s 0.11 0.54 0 0.14 +outrecuidantes outrecuidant adj f p 0.11 0.54 0 0.14 +outrecuidants outrecuidant adj m p 0.11 0.54 0 0.07 +outremer outremer nom m s 0.21 0.47 0.21 0.47 +outrepassa outrepasser ver 0.83 0.68 0.01 0.07 ind:pas:3s; +outrepassaient outrepasser ver 0.83 0.68 0 0.14 ind:imp:3p; +outrepassait outrepasser ver 0.83 0.68 0.03 0.07 ind:imp:3s; +outrepassant outrepasser ver 0.83 0.68 0.01 0 par:pre; +outrepasse outrepasser ver 0.83 0.68 0.13 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +outrepassent outrepasser ver 0.83 0.68 0.02 0 ind:pre:3p; +outrepasser outrepasser ver 0.83 0.68 0.23 0.07 inf; +outrepasserai outrepasser ver 0.83 0.68 0 0.07 ind:fut:1s; +outrepasses outrepasser ver 0.83 0.68 0.2 0 ind:pre:2s; +outrepassez outrepasser ver 0.83 0.68 0.07 0 ind:pre:2p; +outrepassé outrepasser ver m s 0.83 0.68 0.13 0.07 par:pas; +outrer outrer ver 0.57 3.11 0 0.07 inf; +outres outre nom_sup f p 4.45 24.59 0.02 1.42 +outrigger outrigger nom m s 0.16 0 0.16 0 +outré outrer ver m s 0.57 3.11 0.27 0.61 par:pas; +outrée outré adj f s 0.47 2.23 0.26 0.68 +outrées outrer ver f p 0.57 3.11 0.01 0.07 par:pas; +outrés outré adj m p 0.47 2.23 0.01 0.34 +outsider outsider nom m s 0.54 0.74 0.44 0.54 +outsiders outsider nom m p 0.54 0.74 0.1 0.2 +ouvert ouvrir ver m s 413.32 492.5 56.83 56.35 par:pas; +ouverte ouvrir ver f s 413.32 492.5 22.29 27.97 par:pas; +ouvertement ouvertement adv 2.5 6.96 2.5 6.96 +ouvertes ouvert adj f p 39.97 132.36 2.88 15.14 +ouverts ouvert adj m p 39.97 132.36 7.22 23.31 +ouverture ouverture nom f s 18.31 26.69 16.87 23.04 +ouvertures ouverture nom f p 18.31 26.69 1.44 3.65 +ouvrable ouvrable adj m s 0.31 1.35 0.03 0.47 +ouvrables ouvrable adj p 0.31 1.35 0.28 0.88 +ouvrage ouvrage nom m s 5.5 37.3 4.72 26.15 +ouvrageant ouvrager ver 0.14 0.68 0 0.07 par:pre; +ouvrager ouvrager ver 0.14 0.68 0 0.07 inf; +ouvrages ouvrage nom m p 5.5 37.3 0.78 11.15 +ouvragé ouvragé adj m s 0.15 2.3 0.02 0.88 +ouvragée ouvragé adj f s 0.15 2.3 0.12 0.54 +ouvragées ouvragé adj f p 0.15 2.3 0 0.61 +ouvragés ouvragé adj m p 0.15 2.3 0.01 0.27 +ouvraient ouvrir ver 413.32 492.5 0.52 12.5 ind:imp:3p; +ouvrais ouvrir ver 413.32 492.5 1.39 4.12 ind:imp:1s;ind:imp:2s; +ouvrait ouvrir ver 413.32 492.5 2.4 46.62 ind:imp:3s; +ouvrant ouvrir ver 413.32 492.5 1.86 18.65 par:pre; +ouvrants ouvrant adj m p 0.32 3.18 0 0.07 +ouvre ouvrir ver 413.32 492.5 141.45 80.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ouvre_bouteille ouvre_bouteille nom m s 0.12 0.14 0.08 0 +ouvre_bouteille ouvre_bouteille nom m p 0.12 0.14 0.04 0.14 +ouvre_boîte ouvre_boîte nom m s 0.32 0.2 0.32 0.2 +ouvre_boîtes ouvre_boîtes nom m 0.16 0.34 0.16 0.34 +ouvrent ouvrir ver 413.32 492.5 6.24 10.88 ind:pre:3p;sub:pre:3p; +ouvrer ouvrer ver 0.02 0.14 0 0.07 inf; +ouvres ouvrir ver 413.32 492.5 10.2 1.62 ind:pre:2s;sub:pre:2s; +ouvreur ouvreur nom m s 1.38 2.36 1 0 +ouvreurs ouvreur nom m p 1.38 2.36 0.01 0.14 +ouvreuse ouvreur nom f s 1.38 2.36 0.2 1.62 +ouvreuses ouvreur nom f p 1.38 2.36 0.17 0.61 +ouvrez ouvrir ver 413.32 492.5 64.17 6.22 imp:pre:2p;imp:pre:2p;ind:pre:2p; +ouvrier ouvrier nom m s 23.93 51.35 7.17 12.64 +ouvriers ouvrier nom m p 23.93 51.35 14.56 34.46 +ouvriez ouvrir ver 413.32 492.5 0.41 0 ind:imp:2p; +ouvrions ouvrir ver 413.32 492.5 0.1 0.88 ind:imp:1p; +ouvrir ouvrir ver 413.32 492.5 79.61 88.58 inf; +ouvrira ouvrir ver 413.32 492.5 4.13 1.96 ind:fut:3s; +ouvrirai ouvrir ver 413.32 492.5 2.45 0.95 ind:fut:1s; +ouvriraient ouvrir ver 413.32 492.5 0.09 1.28 cnd:pre:3p; +ouvrirais ouvrir ver 413.32 492.5 0.41 0.61 cnd:pre:1s;cnd:pre:2s; +ouvrirait ouvrir ver 413.32 492.5 0.75 4.26 cnd:pre:3s; +ouvriras ouvrir ver 413.32 492.5 0.85 0.27 ind:fut:2s; +ouvrirent ouvrir ver 413.32 492.5 0.51 3.78 ind:pas:3p; +ouvrirez ouvrir ver 413.32 492.5 0.6 0.07 ind:fut:2p; +ouvririez ouvrir ver 413.32 492.5 0.18 0.07 cnd:pre:2p; +ouvririons ouvrir ver 413.32 492.5 0.15 0 cnd:pre:1p; +ouvrirons ouvrir ver 413.32 492.5 0.77 0 ind:fut:1p; +ouvriront ouvrir ver 413.32 492.5 1.35 0.68 ind:fut:3p; +ouvris ouvrir ver 413.32 492.5 0.36 7.97 ind:pas:1s;ind:pas:2s; +ouvrissent ouvrir ver 413.32 492.5 0 0.2 sub:imp:3p; +ouvrit ouvrir ver 413.32 492.5 2.54 86.62 ind:pas:3s; +ouvrière ouvrier adj f s 6.07 15.88 2.48 6.69 +ouvrières ouvrier nom f p 23.93 51.35 1.56 2.5 +ouvriérisme ouvriérisme nom m s 0 0.07 0 0.07 +ouvriériste ouvriériste adj m s 0 0.2 0 0.2 +ouvroir ouvroir nom m s 0 0.88 0 0.68 +ouvroirs ouvroir nom m p 0 0.88 0 0.2 +ouvrons ouvrir ver 413.32 492.5 3.39 0.95 imp:pre:1p;ind:pre:1p; +ouvré ouvrer ver m s 0.02 0.14 0.02 0.07 par:pas; +ouvrées ouvré adj f p 0.04 0.27 0 0.14 +ouvrés ouvré adj m p 0.04 0.27 0.03 0.07 +ouvrîmes ouvrir ver 413.32 492.5 0 0.34 ind:pas:1p; +ouvrît ouvrir ver 413.32 492.5 0.01 1.28 sub:imp:3s; +ouzbeks ouzbek adj p 0 0.07 0 0.07 +ouzo ouzo nom m s 0.58 2.36 0.48 2.3 +ouzos ouzo nom m p 0.58 2.36 0.1 0.07 +ouï ouïr ver m s 5.72 3.78 0.87 0.68 par:pas; +ouï_dire ouï_dire nom m 0 1.01 0 1.01 +ouïe ouïe nom f s 2.38 4.46 2.21 3.38 +ouïes ouïe nom f p 2.38 4.46 0.16 1.08 +ouïgour ouïgour nom s 0 0.07 0 0.07 +ouïr ouïr ver 5.72 3.78 0.77 1.22 inf; +ouïrais ouïr ver 5.72 3.78 0 0.07 cnd:pre:1s; +ouïs ouïr ver m p 5.72 3.78 0.02 0.47 ind:pas:1s;par:pas; +ouït ouïr ver 5.72 3.78 0 0.41 ind:pas:3s; +ovaire ovaire nom m s 1.2 1.35 0.49 0.14 +ovaires ovaire nom m p 1.2 1.35 0.71 1.22 +ovalaire ovalaire adj f s 0 0.07 0 0.07 +ovale ovale adj s 1.88 10.54 1.83 8.18 +ovales ovale adj p 1.88 10.54 0.06 2.36 +ovalisées ovaliser ver f p 0 0.07 0 0.07 par:pas; +ovariectomie ovariectomie nom f s 0.01 0 0.01 0 +ovarien ovarien adj m s 0.07 0 0.02 0 +ovarienne ovarien adj f s 0.07 0 0.05 0 +ovariotomie ovariotomie nom f s 0 0.07 0 0.07 +ovation ovation nom f s 0.96 2.5 0.91 1.49 +ovationnaient ovationner ver 0.03 0.34 0 0.07 ind:imp:3p; +ovationner ovationner ver 0.03 0.34 0.01 0.14 inf; +ovationné ovationner ver m s 0.03 0.34 0.01 0.07 par:pas; +ovationnés ovationner ver m p 0.03 0.34 0.01 0.07 par:pas; +ovations ovation nom f p 0.96 2.5 0.06 1.01 +ove ove nom m s 0.2 0.07 0.2 0.07 +overdose overdose nom f s 5.11 1.28 4.81 1.28 +overdoses overdose nom f p 5.11 1.28 0.29 0 +overdrive overdrive nom m s 0.05 0.07 0.05 0.07 +ovibos ovibos nom m 0 0.07 0 0.07 +ovin ovin adj m s 0.01 0 0.01 0 +ovins ovin nom m p 0.04 0.07 0.04 0.07 +ovipare ovipare adj s 0.02 0 0.01 0 +ovipares ovipare adj p 0.02 0 0.01 0 +ovni ovni nom m 2.98 0.27 1.07 0.14 +ovnis ovni nom m p 2.98 0.27 1.91 0.14 +ovocyte ovocyte nom m s 0.03 0.41 0 0.14 +ovocytes ovocyte nom m p 0.03 0.41 0.03 0.27 +ovoïdal ovoïdal adj m s 0.01 0.61 0 0.61 +ovoïdale ovoïdal adj f s 0.01 0.61 0.01 0 +ovoïde ovoïde adj s 0 1.08 0 0.95 +ovoïdes ovoïde adj p 0 1.08 0 0.14 +ovulaire ovulaire adj f s 0.01 0 0.01 0 +ovulation ovulation nom f s 0.53 0.07 0.53 0.07 +ovule ovule nom m s 1.16 0.47 0.64 0.27 +ovuler ovuler ver 0.11 0 0.04 0 inf; +ovules ovule nom m p 1.16 0.47 0.52 0.2 +ovée ové adj f s 0.01 0 0.01 0 +oxalate oxalate nom m s 0.01 0 0.01 0 +oxer oxer nom m s 0 0.07 0 0.07 +oxfordien oxfordien adj m s 0 0.14 0 0.07 +oxfordiennes oxfordien adj f p 0 0.14 0 0.07 +oxfords oxford nom m p 0.03 0.14 0.03 0.14 +oxhydrique oxhydrique adj s 0 0.07 0 0.07 +oxo oxo adj 0 0.07 0 0.07 +oxonienne oxonien nom f s 0 0.07 0 0.07 +oxychlorure oxychlorure nom m s 0.01 0 0.01 0 +oxydant oxydant nom m s 0.05 0 0.01 0 +oxydants oxydant nom m p 0.05 0 0.04 0 +oxydation oxydation nom f s 0.16 0.2 0.16 0.2 +oxyde oxyde nom m s 1.03 0.41 0.99 0.34 +oxyder oxyder ver 0.1 0.61 0 0.07 inf; +oxydes oxyde nom m p 1.03 0.41 0.04 0.07 +oxydé oxyder ver m s 0.1 0.61 0.07 0.14 par:pas; +oxydée oxyder ver f s 0.1 0.61 0 0.14 par:pas; +oxydées oxyder ver f p 0.1 0.61 0 0.14 par:pas; +oxygène oxygène nom m s 14.03 4.39 14.03 4.39 +oxygènent oxygéner ver 0.53 0.2 0.01 0.07 ind:pre:3p; +oxygénation oxygénation nom f s 0.15 0.07 0.15 0.07 +oxygéner oxygéner ver 0.53 0.2 0.19 0 inf; +oxygéné oxygéné adj m s 0.49 0.95 0.05 0.07 +oxygénée oxygéné adj f s 0.49 0.95 0.42 0.54 +oxygénées oxygéné adj f p 0.49 0.95 0 0.07 +oxygénés oxygéné adj m p 0.49 0.95 0.02 0.27 +oxymore oxymore nom m s 0.04 0 0.03 0 +oxymores oxymore nom m p 0.04 0 0.01 0 +oxymoron oxymoron nom m s 0.05 0 0.05 0 +oxymétrie oxymétrie nom f s 0.03 0 0.03 0 +oyant oyant adj m s 0.1 0 0.1 0 +oyat oyat nom m s 0.11 0.14 0 0.07 +oyats oyat nom m p 0.11 0.14 0.11 0.07 +oye oye nom f s 0.21 0.95 0.21 0.95 +oyez ouïr ver 5.72 3.78 1.69 0.2 imp:pre:2p;ind:pre:2p; +oyons ouïr ver 5.72 3.78 0.01 0.07 imp:pre:1p; +ozone ozone nom m s 1.35 0.54 1.35 0.54 +oïl oïl nom m 0.01 0 0.01 0 +où où pro_rel 2177.25 2068.11 1546.44 1767.23 +p. p. nom m 3.66 0.34 3.66 0.34 +p.m. p.m. nom m s 0.01 0 0.01 0 +pa pa art_ind m s 0.01 0 0.01 0 +pacage pacage nom m s 0 0.74 0 0.34 +pacages pacage nom m p 0 0.74 0 0.41 +pacas paca adj m p 0.01 0 0.01 0 +pacemaker pacemaker nom m s 0.56 0.34 0.41 0.34 +pacemakers pacemaker nom m p 0.56 0.34 0.15 0 +pacha pacha nom m s 7.28 11.96 7.11 11.15 +pachas pacha nom m p 7.28 11.96 0.17 0.81 +pachinko pachinko nom m s 0 0.07 0 0.07 +pachon pachon nom m s 0 0.07 0 0.07 +pachyderme pachyderme nom m s 0.21 1.01 0.14 0.74 +pachydermes pachyderme nom m p 0.21 1.01 0.07 0.27 +pachydermique pachydermique adj s 0.01 0.74 0.01 0.68 +pachydermiques pachydermique adj p 0.01 0.74 0 0.07 +pacifiait pacifier ver 0.65 2.3 0 0.14 ind:imp:3s; +pacifiant pacifier ver 0.65 2.3 0 0.07 par:pre; +pacifiante pacifiant adj f s 0 0.27 0 0.2 +pacifiantes pacifiant adj f p 0 0.27 0 0.07 +pacificateur pacificateur nom m s 4.01 0.07 1.1 0.07 +pacificateurs pacificateur nom m p 4.01 0.07 2.74 0 +pacification pacification nom f s 0.12 0.41 0.12 0.41 +pacificatrice pacificateur nom f s 4.01 0.07 0.17 0 +pacifie pacifier ver 0.65 2.3 0 0.14 ind:pre:3s; +pacifier pacifier ver 0.65 2.3 0.45 0.61 inf; +pacifique pacifique adj s 4 4.26 2.9 3.11 +pacifiquement pacifiquement adv 0.93 0.27 0.93 0.27 +pacifiques pacifique adj p 4 4.26 1.1 1.15 +pacifisme pacifisme nom m s 0.14 0.54 0.14 0.54 +pacifiste pacifiste adj s 0.98 0.95 0.88 0.61 +pacifistes pacifiste nom p 0.46 0.68 0.17 0.34 +pacifié pacifier ver m s 0.65 2.3 0.17 0.74 par:pas; +pacifiée pacifier ver f s 0.65 2.3 0.03 0.34 par:pas; +pacifiées pacifier ver f p 0.65 2.3 0 0.14 par:pas; +pacifiés pacifier ver m p 0.65 2.3 0 0.14 par:pas; +pack pack nom m s 1.72 0.88 1.5 0.27 +package package nom m s 0.09 0 0.09 0 +packaging packaging nom m s 0.01 0 0.01 0 +packs pack nom m p 1.72 0.88 0.22 0.61 +packson packson nom m s 0.04 0.07 0.04 0.07 +pacotille pacotille nom f s 1.63 3.24 1.61 2.91 +pacotilles pacotille nom f p 1.63 3.24 0.02 0.34 +pacs pacs nom m 0.58 0 0.58 0 +pacsif pacsif nom m s 0 0.34 0 0.2 +pacsifs pacsif nom m p 0 0.34 0 0.14 +pacson pacson nom m s 0.06 0.61 0.04 0.61 +pacsons pacson nom m p 0.06 0.61 0.02 0 +pacsés pacser ver m p 0.37 0 0.37 0 par:pas; +pacte pacte nom m s 8.12 11.89 7.29 11.49 +pactes pacte nom m p 8.12 11.89 0.83 0.41 +pactisaient pactiser ver 0.52 1.42 0 0.07 ind:imp:3p; +pactisait pactiser ver 0.52 1.42 0.01 0.2 ind:imp:3s; +pactisant pactiser ver 0.52 1.42 0 0.07 par:pre; +pactise pactiser ver 0.52 1.42 0.05 0.07 ind:pre:1s;ind:pre:3s; +pactiser pactiser ver 0.52 1.42 0.25 0.74 inf; +pactiseras pactiser ver 0.52 1.42 0 0.07 ind:fut:2s; +pactiseurs pactiseur nom m p 0 0.07 0 0.07 +pactisez pactiser ver 0.52 1.42 0.01 0 imp:pre:2p; +pactisions pactiser ver 0.52 1.42 0 0.07 ind:imp:1p; +pactisé pactiser ver m s 0.52 1.42 0.2 0.14 par:pas; +pactole pactole nom m s 1.14 0.74 1.14 0.61 +pactoles pactole nom m p 1.14 0.74 0 0.14 +pad pad nom m s 0.11 0.27 0.11 0.27 +paddock paddock nom m s 0.28 2.64 0.27 2.36 +paddocker paddocker ver 0 0.07 0 0.07 inf; +paddocks paddock nom m p 0.28 2.64 0.01 0.27 +paddy paddy nom m s 1.52 0.47 1.52 0.47 +padouanes padouan adj f p 0 0.07 0 0.07 +paella paella nom f s 1.98 0.68 1.71 0.54 +paellas paella nom f p 1.98 0.68 0.27 0.14 +paf paf adj 1.31 2.23 1.31 2.23 +pagaie pagaie nom f s 0.72 1.08 0.65 0.47 +pagaient pagayer ver 0.42 1.08 0.02 0 ind:pre:3p; +pagaiera pagayer ver 0.42 1.08 0.01 0 ind:fut:3s; +pagaies pagaie nom f p 0.72 1.08 0.07 0.61 +pagaille pagaille nom f s 5.21 4.8 5.09 4.73 +pagailles pagaille nom f p 5.21 4.8 0.13 0.07 +pagailleux pagailleux adj m 0 0.07 0 0.07 +paganisme paganisme nom m s 0.04 0.47 0.04 0.47 +pagaya pagayer ver 0.42 1.08 0 0.07 ind:pas:3s; +pagayait pagayer ver 0.42 1.08 0 0.07 ind:imp:3s; +pagayant pagayer ver 0.42 1.08 0.02 0.07 par:pre; +pagaye pagaye nom f s 0.02 0.41 0.02 0.41 +pagayer pagayer ver 0.42 1.08 0.13 0.34 inf; +pagayeur pagayeur nom m s 0.03 0.14 0 0.07 +pagayeurs pagayeur nom m p 0.03 0.14 0.03 0.07 +pagayez pagayer ver 0.42 1.08 0.09 0 imp:pre:2p; +pagayèrent pagayer ver 0.42 1.08 0 0.07 ind:pas:3p; +pagayé pagayer ver m s 0.42 1.08 0.05 0.14 par:pas; +pagaïe pagaïe nom f s 0.07 0.74 0.07 0.74 +page page nom s 39.41 115.54 25.16 55.88 +pageais pager ver 1.01 0.61 0 0.07 ind:imp:1s; +pageait pager ver 1.01 0.61 0 0.07 ind:imp:3s; +pageant pager ver 1.01 0.61 0.01 0 par:pre; +pagels pagel nom m p 0.01 0 0.01 0 +pageot pageot nom m s 0.02 2.09 0.02 1.62 +pageots pageot nom m p 0.02 2.09 0 0.47 +pager pager ver 1.01 0.61 0.99 0.27 inf; +pages page nom p 39.41 115.54 14.25 59.66 +pagination pagination nom f s 0.01 0.07 0.01 0.07 +paginer paginer ver 0.01 0 0.01 0 inf; +pagne pagne nom m s 0.4 1.69 0.37 1.42 +pagnes pagne nom m p 0.4 1.69 0.03 0.27 +pagnon pagnon nom m s 0 0.07 0 0.07 +pagnote pagnoter ver 0 0.14 0 0.07 ind:pre:1s; +pagnoter pagnoter ver 0 0.14 0 0.07 inf; +pagode pagode nom f s 0.4 2.84 0.23 2.36 +pagodes pagode nom f p 0.4 2.84 0.16 0.47 +pagodon pagodon nom m s 0 0.07 0 0.07 +pagure pagure nom m s 0 0.14 0 0.07 +pagures pagure nom m p 0 0.14 0 0.07 +pagus pagus nom m 0.01 0.07 0.01 0.07 +pagé pager ver m s 1.01 0.61 0.01 0.07 par:pas; +pagée pager ver f s 1.01 0.61 0 0.07 par:pas; +pagés pager ver m p 1.01 0.61 0 0.07 par:pas; +paie payer ver 416.68 150.2 53.51 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +paiement paiement nom m s 5.56 2.03 4.36 1.62 +paiements paiement nom m p 5.56 2.03 1.2 0.41 +paient payer ver 416.68 150.2 6.98 2.09 ind:pre:3p; +paiera payer ver 416.68 150.2 8.71 1.96 ind:fut:3s; +paierai payer ver 416.68 150.2 14.53 2.57 ind:fut:1s; +paieraient payer ver 416.68 150.2 0.93 0.41 cnd:pre:3p; +paierais payer ver 416.68 150.2 2.84 0.41 cnd:pre:1s;cnd:pre:2s; +paierait payer ver 416.68 150.2 2.2 1.62 cnd:pre:3s; +paieras payer ver 416.68 150.2 6.3 1.22 ind:fut:2s; +paierez payer ver 416.68 150.2 4.7 0.34 ind:fut:2p; +paierie paierie nom f s 0.01 0.2 0.01 0.2 +paieriez payer ver 416.68 150.2 0.11 0 cnd:pre:2p; +paierions payer ver 416.68 150.2 0.01 0.07 cnd:pre:1p; +paierons payer ver 416.68 150.2 1.01 0.27 ind:fut:1p; +paieront payer ver 416.68 150.2 2.84 0.54 ind:fut:3p; +paies payer ver 416.68 150.2 8.97 0.74 ind:pre:2s; +paillard paillard adj m s 0.35 0.95 0.17 0.61 +paillardait paillarder ver 0 0.07 0 0.07 ind:imp:3s; +paillarde paillard adj f s 0.35 0.95 0.01 0.14 +paillardement paillardement adv 0 0.07 0 0.07 +paillardes paillard adj f p 0.35 0.95 0.17 0.14 +paillardise paillardise nom f s 0.16 0.2 0.16 0.2 +paillards paillard adj m p 0.35 0.95 0 0.07 +paillasse paillasse nom s 2.38 8.78 1.98 7.43 +paillasses paillasse nom f p 2.38 8.78 0.4 1.35 +paillasson paillasson nom m s 1.06 4.39 0.93 3.51 +paillassons paillasson nom m p 1.06 4.39 0.14 0.88 +paille paille nom f s 9.43 44.05 8.57 42.97 +pailler pailler ver 0.01 0.27 0.01 0 inf; +pailles paille nom f p 9.43 44.05 0.86 1.08 +pailleter pailleter ver 0.03 1.35 0 0.14 inf; +paillette paillette nom f s 1.71 5.14 0.08 0.41 +paillettes paillette nom f p 1.71 5.14 1.63 4.73 +pailleté pailleter ver m s 0.03 1.35 0.02 0.34 par:pas; +pailletée pailleté adj f s 0.03 1.15 0.01 0.34 +pailletées pailleté adj f p 0.03 1.15 0.01 0.2 +pailletés pailleter ver m p 0.03 1.35 0 0.27 par:pas; +pailleux pailleux adj m 0 0.07 0 0.07 +paillis paillis nom m 0.04 0 0.04 0 +paillon paillon nom m s 0 0.41 0 0.2 +paillons paillon nom m p 0 0.41 0 0.2 +paillot paillot nom m s 0 0.81 0 0.81 +paillote paillote nom f s 0.02 1.22 0.02 0.34 +paillotes paillote nom f p 0.02 1.22 0 0.88 +paillu paillu adj m s 0 0.07 0 0.07 +paillé paillé adj m s 0 1.62 0 0.14 +paillée paillé adj f s 0 1.62 0 0.81 +paillées paillé adj f p 0 1.62 0 0.68 +paimpolaise paimpolais nom f s 0 0.47 0 0.41 +paimpolaises paimpolais nom f p 0 0.47 0 0.07 +pain pain nom m s 67.58 105.41 62.81 99.32 +pains pain nom m p 67.58 105.41 4.77 6.08 +pair pair nom m s 3.54 6.62 2.27 3.92 +paire paire nom f s 21.59 32.84 18.31 26.89 +paires paire nom f p 21.59 32.84 3.28 5.95 +pairesses pairesse nom f p 0 0.07 0 0.07 +pairie pairie nom f s 0.03 0.07 0.03 0.07 +pairs pair nom m p 3.54 6.62 1.27 2.7 +pais paître ver 2.29 4.46 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +paisible paisible adj s 7.55 36.42 6.32 27.84 +paisiblement paisiblement adv 2.1 9.12 2.1 9.12 +paisibles paisible adj p 7.55 36.42 1.23 8.58 +paissaient paître ver 2.29 4.46 0.01 1.49 ind:imp:3p; +paissait paître ver 2.29 4.46 0.14 0.2 ind:imp:3s; +paissant paître ver 2.29 4.46 0.03 0.34 par:pre; +paissent paître ver 2.29 4.46 0.42 0.61 ind:pre:3p; +paiute paiute nom s 0.05 0.07 0.04 0.07 +paiutes paiute nom p 0.05 0.07 0.01 0 +paix paix nom f 144.86 103.72 144.86 103.72 +pakistanais pakistanais nom m 1.56 0.27 1.36 0.2 +pakistanaise pakistanais adj f s 1.22 0.47 0.23 0.2 +pakistanaises pakistanais adj f p 1.22 0.47 0.04 0 +pakistano pakistano adv 0.01 0.07 0.01 0.07 +pal pal nom m s 0.19 0.88 0.14 0.68 +palabra palabrer ver 0.64 2.03 0.09 0.07 ind:pas:3s; +palabraient palabrer ver 0.64 2.03 0 0.34 ind:imp:3p; +palabrait palabrer ver 0.64 2.03 0 0.34 ind:imp:3s; +palabrant palabrer ver 0.64 2.03 0.01 0.2 par:pre; +palabre palabrer ver 0.64 2.03 0.11 0 ind:pre:3s; +palabrent palabrer ver 0.64 2.03 0.02 0.2 ind:pre:3p; +palabrer palabrer ver 0.64 2.03 0.35 0.88 inf; +palabres palabre nom p 0.14 3.51 0.13 3.04 +palabreur palabreur nom m s 0 0.14 0 0.07 +palabreurs palabreur nom m p 0 0.14 0 0.07 +palabré palabrer ver m s 0.64 2.03 0.06 0 par:pas; +palace palace nom m s 4.85 7.77 4.56 5.47 +palaces palace nom m p 4.85 7.77 0.29 2.3 +paladin paladin nom m s 0.18 0.81 0.16 0.54 +paladins paladin nom m p 0.18 0.81 0.03 0.27 +palais palais nom m 29.55 58.72 29.55 58.72 +palan palan nom m s 0.11 0.74 0.07 0.54 +palanche palanche nom f s 0.1 0.14 0 0.14 +palanches palanche nom f p 0.1 0.14 0.1 0 +palangrotte palangrotte nom f s 0 0.14 0 0.14 +palanquer palanquer ver 0.01 0.14 0.01 0 inf; +palanquin palanquin nom m s 0.32 0.41 0.32 0.34 +palanquins palanquin nom m p 0.32 0.41 0 0.07 +palanquée palanquer ver f s 0.01 0.14 0 0.07 par:pas; +palanquées palanquer ver f p 0.01 0.14 0 0.07 par:pas; +palans palan nom m p 0.11 0.74 0.04 0.2 +palastre palastre nom m s 0 0.07 0 0.07 +palatales palatal adj f p 0 0.07 0 0.07 +palatin palatin adj m s 0.03 0.2 0.02 0.14 +palatine palatin adj f s 0.03 0.2 0.01 0.07 +palatines palatine nom f p 0 0.07 0 0.07 +palatisation palatisation nom f s 0 0.07 0 0.07 +palazzo palazzo nom m s 0.56 1.62 0.56 1.62 +pale pale nom f s 1.11 1.62 0.74 0.41 +palefrenier palefrenier nom m s 0.69 1.01 0.64 0.68 +palefreniers palefrenier nom m p 0.69 1.01 0.04 0.34 +palefrenière palefrenier nom f s 0.69 1.01 0.01 0 +palefroi palefroi nom m s 0.01 0.61 0.01 0.2 +palefrois palefroi nom m p 0.01 0.61 0 0.41 +paleron paleron nom m s 0.01 0 0.01 0 +pales pale nom f p 1.11 1.62 0.37 1.22 +palestinien palestinien adj m s 3.22 0.74 1.78 0.2 +palestinienne palestinien adj f s 3.22 0.74 0.49 0.34 +palestiniens palestinien nom m p 3.22 0.47 2.81 0.47 +palestre palestre nom f s 0 0.41 0 0.27 +palestres palestre nom f p 0 0.41 0 0.14 +palet palet nom m s 1.08 0.41 0.93 0.34 +paletot paletot nom m s 0.03 2.03 0.03 1.89 +paletots paletot nom m p 0.03 2.03 0 0.14 +palets palet nom m p 1.08 0.41 0.15 0.07 +palette palette nom f s 0.87 5.68 0.28 4.12 +palettes palette nom f p 0.87 5.68 0.58 1.55 +palier palier nom m s 3.47 29.8 3.24 27.91 +paliers palier nom m p 3.47 29.8 0.23 1.89 +palikare palikare nom m s 0 0.54 0 0.2 +palikares palikare nom m p 0 0.54 0 0.34 +palilalie palilalie nom f s 0.01 0 0.01 0 +palimpseste palimpseste nom m s 0 0.2 0 0.2 +palindrome palindrome nom m s 0.55 0 0.45 0 +palindromes palindrome nom m p 0.55 0 0.1 0 +palinodie palinodie nom f s 0.01 0.54 0 0.27 +palinodier palinodier ver 0 0.07 0 0.07 inf; +palinodies palinodie nom f p 0.01 0.54 0.01 0.27 +palis palis nom m 0 0.07 0 0.07 +palissade palissade nom f s 0.64 5.34 0.59 3.11 +palissades palissade nom f p 0.64 5.34 0.05 2.23 +palissadé palissader ver m s 0 0.34 0 0.2 par:pas; +palissadée palissader ver f s 0 0.34 0 0.07 par:pas; +palissadés palissader ver m p 0 0.34 0 0.07 par:pas; +palissandre palissandre nom m s 0 0.74 0 0.74 +palissant palisser ver 0 0.07 0 0.07 par:pre; +palissonnage palissonnage nom m s 0 0.07 0 0.07 +palière palier adj f s 0 0.68 0 0.68 +palladiennes palladien adj f p 0.01 0.07 0.01 0.07 +palladium palladium nom m s 0.17 0.34 0.17 0.34 +palle palle nom f s 0.91 0 0.91 0 +palliait pallier ver 0.47 1.01 0 0.07 ind:imp:3s; +palliatif palliatif adj m s 0.14 0.07 0.05 0.07 +palliatifs palliatif adj m p 0.14 0.07 0.09 0 +pallient pallier ver 0.47 1.01 0.01 0 ind:pre:3p; +pallier pallier ver 0.47 1.01 0.44 0.88 inf; +palliera pallier ver 0.47 1.01 0.01 0 ind:fut:3s; +pallié pallier ver m s 0.47 1.01 0.01 0.07 par:pas; +palma_christi palma_christi nom m 0 0.07 0 0.07 +palmaient palmer ver 0.02 0.47 0 0.07 ind:imp:3p; +palmaire palmaire adj m s 0.02 0.07 0.02 0.07 +palmarès palmarès nom m 0.41 1.08 0.41 1.08 +palmas palma nom f p 0.04 0.07 0.04 0.07 +palme palme nom f s 2.09 9.53 1.25 2.91 +palmer palmer nom m s 0.17 0.14 0.17 0.14 +palmeraie palmeraie nom f s 0.31 1.28 0.29 0.74 +palmeraies palmeraie nom f p 0.31 1.28 0.01 0.54 +palmes palme nom f p 2.09 9.53 0.84 6.62 +palmette palmette nom f s 0 0.2 0 0.07 +palmettes palmette nom f p 0 0.2 0 0.14 +palmier palmier nom m s 4.57 14.26 1.69 3.04 +palmiers palmier nom m p 4.57 14.26 2.89 11.22 +palmipède palmipède nom m s 0 0.27 0 0.14 +palmipèdes palmipède adj m p 0.27 0.14 0.27 0.14 +palmiste palmiste nom m s 0 0.27 0 0.14 +palmistes palmiste nom m p 0 0.27 0 0.14 +palmure palmure nom f s 0.01 0.07 0.01 0 +palmures palmure nom f p 0.01 0.07 0 0.07 +palmé palmer ver m s 0.02 0.47 0 0.2 par:pas; +palmée palmé adj f s 0.17 0.41 0.01 0.07 +palmées palmé adj f p 0.17 0.41 0 0.27 +palmés palmé adj m p 0.17 0.41 0.16 0.07 +palombe palombe nom f s 0.11 0.61 0.01 0.27 +palombes palombe nom f p 0.11 0.61 0.1 0.34 +palonnier palonnier nom m s 0.01 0.07 0.01 0.07 +palot palot nom m s 0.2 0.14 0.05 0.07 +palots palot nom m p 0.2 0.14 0.15 0.07 +palourde palourde nom f s 1.52 0.54 0.34 0 +palourdes palourde nom f p 1.52 0.54 1.17 0.54 +palpa palper ver 1.81 13.04 0 1.62 ind:pas:3s; +palpable palpable adj s 0.65 2.77 0.52 2.5 +palpables palpable adj p 0.65 2.77 0.13 0.27 +palpaient palper ver 1.81 13.04 0.01 0.74 ind:imp:3p; +palpais palper ver 1.81 13.04 0.01 0.27 ind:imp:1s; +palpait palper ver 1.81 13.04 0.01 1.82 ind:imp:3s; +palpant palper ver 1.81 13.04 0.02 1.08 par:pre; +palpation palpation nom f s 0.04 0.34 0.04 0.27 +palpations palpation nom f p 0.04 0.34 0 0.07 +palpe palper ver 1.81 13.04 0.34 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +palpent palper ver 1.81 13.04 0.01 0.34 ind:pre:3p; +palper palper ver 1.81 13.04 0.97 4.19 inf; +palpera palper ver 1.81 13.04 0.01 0 ind:fut:3s; +palperai palper ver 1.81 13.04 0 0.07 ind:fut:1s; +palpes palper ver 1.81 13.04 0.08 0 ind:pre:2s; +palpeur palpeur nom m s 0.02 0.14 0.01 0.07 +palpeurs palpeur nom m p 0.02 0.14 0.01 0.07 +palpez palper ver 1.81 13.04 0.04 0 imp:pre:2p;ind:pre:2p; +palpita palpiter ver 1.64 10.41 0 0.14 ind:pas:3s; +palpitaient palpiter ver 1.64 10.41 0.01 1.08 ind:imp:3p; +palpitait palpiter ver 1.64 10.41 0.06 2.3 ind:imp:3s; +palpitant palpitant adj m s 2.13 6.82 1.53 3.31 +palpitante palpitant adj f s 2.13 6.82 0.42 1.96 +palpitantes palpitant adj f p 2.13 6.82 0.15 0.61 +palpitants palpitant adj m p 2.13 6.82 0.03 0.95 +palpitation palpitation nom f s 0.86 3.65 0.04 2.3 +palpitations palpitation nom f p 0.86 3.65 0.81 1.35 +palpite palpiter ver 1.64 10.41 1.07 2.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +palpitement palpitement nom m s 0 0.07 0 0.07 +palpitent palpiter ver 1.64 10.41 0.16 1.28 ind:pre:3p; +palpiter palpiter ver 1.64 10.41 0.26 1.62 inf; +palpiterait palpiter ver 1.64 10.41 0 0.07 cnd:pre:3s; +palpites palpiter ver 1.64 10.41 0 0.07 ind:pre:2s; +palpitèrent palpiter ver 1.64 10.41 0 0.2 ind:pas:3p; +palpité palpiter ver m s 1.64 10.41 0 0.07 par:pas; +palpons palper ver 1.81 13.04 0 0.07 imp:pre:1p; +palpèrent palper ver 1.81 13.04 0 0.07 ind:pas:3p; +palpé palper ver m s 1.81 13.04 0.28 0.74 par:pas; +palpées palper ver f p 1.81 13.04 0 0.07 par:pas; +palpés palper ver m p 1.81 13.04 0.02 0.14 par:pas; +pals pal nom m p 0.19 0.88 0.04 0.2 +palsambleu palsambleu ono 0.03 0.2 0.03 0.2 +paltoquet paltoquet nom m s 0.01 0.2 0.01 0.2 +palu palu nom m s 0.8 0.14 0.8 0.14 +paluchait palucher ver 0.2 0.34 0 0.07 ind:imp:3s; +paluche paluche nom f s 0.33 5.47 0.2 3.11 +palucher palucher ver 0.2 0.34 0.2 0.27 inf; +paluches paluche nom f p 0.33 5.47 0.13 2.36 +paludamentum paludamentum nom m s 0 0.07 0 0.07 +paludes palude nom m p 0 0.2 0 0.2 +paludiers paludier nom m p 0 0.14 0 0.14 +paludiques paludique adj p 0 0.07 0 0.07 +paludisme paludisme nom m s 0.25 1.35 0.25 1.35 +paludière paludière nom f s 0 0.07 0 0.07 +paludéenne paludéen adj f s 0 0.34 0 0.07 +paludéennes paludéen adj f p 0 0.34 0 0.2 +paludéens paludéen adj m p 0 0.34 0 0.07 +palus palus nom m 0.01 0.07 0.01 0.07 +palustre palustre adj s 0 0.07 0 0.07 +palynologie palynologie nom f s 0.01 0 0.01 0 +palé palé adj m s 0.01 0.07 0.01 0.07 +paléo paléo adv 0.01 0 0.01 0 +paléographie paléographie nom f s 0 0.14 0 0.14 +paléolithique paléolithique adj s 0.03 0.14 0.03 0.07 +paléolithiques paléolithique adj m p 0.03 0.14 0 0.07 +paléontologie paléontologie nom f s 0.14 0.14 0.14 0.14 +paléontologiques paléontologique adj m p 0 0.07 0 0.07 +paléontologiste paléontologiste nom s 0.05 0 0.04 0 +paléontologistes paléontologiste nom p 0.05 0 0.01 0 +paléontologue paléontologue nom s 0.2 0.07 0.18 0 +paléontologues paléontologue nom p 0.2 0.07 0.02 0.07 +paléozoïque paléozoïque nom m s 0.01 0 0.01 0 +palétuvier palétuvier nom m s 0.04 0.81 0.03 0.14 +palétuviers palétuvier nom m p 0.04 0.81 0.01 0.68 +pampa pampa nom f s 0.61 0.95 0.34 0.81 +pampas pampa nom f p 0.61 0.95 0.28 0.14 +pampero pampero nom m s 0 0.07 0 0.07 +pamphlet pamphlet nom m s 2.84 1.42 1.11 0.68 +pamphlets pamphlet nom m p 2.84 1.42 1.73 0.74 +pamphlétaire pamphlétaire nom s 0 0.41 0 0.34 +pamphlétaires pamphlétaire nom p 0 0.41 0 0.07 +pamplemousse pamplemousse nom s 2.01 1.55 1.56 0.95 +pamplemousses pamplemousse nom p 2.01 1.55 0.45 0.61 +pamplemoussier pamplemoussier nom m s 0 0.14 0 0.07 +pamplemoussiers pamplemoussier nom m p 0 0.14 0 0.07 +pampre pampre nom m s 0.41 1.01 0.27 0.2 +pampres pampre nom m p 0.41 1.01 0.14 0.81 +pan pan ono 3.57 1.76 3.57 1.76 +pan_bagnat pan_bagnat nom m s 0 0.14 0 0.14 +pana paner ver 0.13 0.41 0.02 0 ind:pas:3s; +panachage panachage nom m s 0.01 0 0.01 0 +panachait panacher ver 0.03 0.2 0 0.07 ind:imp:3s; +panache panache nom m s 1.09 7.36 0.95 5.14 +panacher panacher ver 0.03 0.2 0.01 0 inf; +panaches panache nom m p 1.09 7.36 0.14 2.23 +panaché panaché nom m s 0.12 0.47 0.1 0.27 +panachée panacher ver f s 0.03 0.2 0 0.07 par:pas; +panachés panaché nom m p 0.12 0.47 0.02 0.2 +panacée panacée nom f s 0.29 0.81 0.27 0.74 +panacées panacée nom f p 0.29 0.81 0.02 0.07 +panade panade nom f s 0.96 1.22 0.96 0.95 +panades panade nom f p 0.96 1.22 0 0.27 +panais panais nom m 0.01 0.14 0.01 0.14 +panama panama nom m s 0.15 1.35 0.15 1.22 +panamas panama nom m p 0.15 1.35 0 0.14 +panamienne panamien adj f s 0 0.14 0 0.07 +panamiens panamien adj m p 0 0.14 0 0.07 +panaméen panaméen adj m s 0.09 0.34 0.09 0.34 +panaméenne panaméenne adj f s 0.14 0 0.14 0 +panaméricain panaméricain adj m s 0.11 0 0.1 0 +panaméricaine panaméricain adj f s 0.11 0 0.01 0 +panarabisme panarabisme nom m s 0 0.41 0 0.41 +panard panard nom m s 0.26 2.16 0.19 0.74 +panards panard nom m p 0.26 2.16 0.07 1.42 +panaris panaris nom m 0.03 0.34 0.03 0.34 +panatella panatella nom m s 0.01 0 0.01 0 +panathénaïque panathénaïque adj m s 0 0.07 0 0.07 +panathénées panathénées nom f p 0 0.07 0 0.07 +pancake pancake nom m s 2.97 0.2 0.44 0.14 +pancakes pancake nom m p 2.97 0.2 2.54 0.07 +pancarte pancarte nom f s 3.9 8.99 3.28 5.95 +pancartes pancarte nom f p 3.9 8.99 0.61 3.04 +panceltique panceltique adj m s 0 0.07 0 0.07 +pancetta pancetta nom f s 0.03 0 0.03 0 +panclastite panclastite nom f s 0 0.07 0 0.07 +pancrace pancrace nom m s 0 0.47 0 0.34 +pancraces pancrace nom m p 0 0.47 0 0.14 +pancréas pancréas nom m 1.13 2.03 1.13 2.03 +pancréatectomie pancréatectomie nom f s 0.09 0 0.09 0 +pancréatique pancréatique adj s 0.18 0.2 0.06 0.2 +pancréatiques pancréatique adj f p 0.18 0.2 0.12 0 +pancréatite pancréatite nom f s 0.14 0 0.14 0 +panda panda nom m s 1.71 0.14 1.46 0.14 +pandanus pandanus nom m 0 0.14 0 0.14 +pandas panda nom m p 1.71 0.14 0.26 0 +pandit pandit nom m s 0.08 0 0.08 0 +pandore pandore nom s 0.11 1.08 0.11 0.34 +pandores pandore nom p 0.11 1.08 0 0.74 +pandémie pandémie nom f s 0.17 0 0.17 0 +pandémonium pandémonium nom m s 0.03 0.2 0.02 0.2 +pandémoniums pandémonium nom m p 0.03 0.2 0.01 0 +pane paner ver 0.13 0.41 0.02 0 ind:pre:3s; +panel panel nom m s 0.28 0 0.28 0 +paner paner ver 0.13 0.41 0.04 0 inf; +panetier panetier nom m s 0 0.27 0 0.07 +panetière panetier nom f s 0 0.27 0 0.14 +panetières panetier nom f p 0 0.27 0 0.07 +pangermanisme pangermanisme nom m s 0.01 0.2 0.01 0.2 +panic panic nom m s 0.46 0 0.46 0 +panicules panicule nom f p 0 0.14 0 0.14 +panier panier nom m s 15.72 33.18 13.82 24.39 +panier_repas panier_repas nom m 0.21 0.07 0.21 0.07 +paniers panier nom m p 15.72 33.18 1.9 8.78 +panification panification nom f s 0 0.14 0 0.14 +panini panini nom m s 0.02 0 0.02 0 +paniqua paniquer ver 19.76 6.15 0.05 0.2 ind:pas:3s; +paniquaient paniquer ver 19.76 6.15 0.13 0.2 ind:imp:3p; +paniquais paniquer ver 19.76 6.15 0.12 0.2 ind:imp:1s;ind:imp:2s; +paniquait paniquer ver 19.76 6.15 0.22 0.54 ind:imp:3s; +paniquant paniquant adj m s 0.04 0.07 0.04 0.07 +paniquards paniquard nom m p 0 0.2 0 0.2 +panique panique nom f s 16.23 25.61 16.17 24.86 +paniquent paniquer ver 19.76 6.15 0.63 0.07 ind:pre:3p; +paniquer paniquer ver 19.76 6.15 4.25 0.88 inf; +paniquera paniquer ver 19.76 6.15 0.01 0 ind:fut:3s; +paniquerai paniquer ver 19.76 6.15 0.06 0 ind:fut:1s; +paniqueraient paniquer ver 19.76 6.15 0.05 0 cnd:pre:3p; +paniquerais paniquer ver 19.76 6.15 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +paniqueras paniquer ver 19.76 6.15 0.01 0 ind:fut:2s; +paniqueront paniquer ver 19.76 6.15 0.01 0 ind:fut:3p; +paniques paniquer ver 19.76 6.15 1.08 0.14 ind:pre:2s;sub:pre:2s; +paniquez paniquer ver 19.76 6.15 1.66 0 imp:pre:2p;ind:pre:2p; +paniquons paniquer ver 19.76 6.15 0.34 0 imp:pre:1p; +paniquèrent paniquer ver 19.76 6.15 0.02 0 ind:pas:3p; +paniqué paniquer ver m s 19.76 6.15 5.56 0.95 par:pas; +paniquée paniquer ver f s 19.76 6.15 0.68 0.34 par:pas; +paniqués paniqué adj m p 1.52 1.01 0.24 0.2 +panis panis nom m 0.14 0.07 0.14 0.07 +panière panière nom f s 0.16 0.54 0.16 0.34 +panières panière nom f p 0.16 0.54 0 0.2 +panka panka nom m s 0 0.27 0 0.07 +pankas panka nom m p 0 0.27 0 0.2 +panna panner ver 0.14 0.34 0.02 0.07 ind:pas:3s; +pannais panner ver 0.14 0.34 0 0.07 ind:imp:1s; +pannait panner ver 0.14 0.34 0 0.07 ind:imp:3s; +panne panne nom f s 24.59 11.69 23.84 10.81 +panneau panneau nom m s 12.67 26.69 9.87 16.55 +panneau_réclame panneau_réclame nom m s 0 0.68 0 0.68 +panneaux panneau nom m p 12.67 26.69 2.8 10.14 +panner panner ver 0.14 0.34 0 0.14 inf; +pannes panne nom f p 24.59 11.69 0.74 0.88 +panneton panneton nom m s 0.01 0 0.01 0 +panné panner ver m s 0.14 0.34 0.11 0 par:pas; +pano pano adj m s 0.46 0 0.29 0 +panonceau panonceau nom m s 0 0.88 0 0.68 +panonceaux panonceau nom m p 0 0.88 0 0.2 +panoplie panoplie nom f s 1.44 4.73 1.42 3.99 +panoplies panoplie nom f p 1.44 4.73 0.02 0.74 +panorama panorama nom m s 1.24 5.14 1.11 4.26 +panoramas panorama nom m p 1.24 5.14 0.14 0.88 +panoramique panoramique adj s 0.61 1.15 0.6 0.81 +panoramiquer panoramiquer ver 0 0.14 0 0.07 inf; +panoramiques panoramique nom m p 0.36 0.14 0.15 0 +panoramiqué panoramiquer ver m s 0 0.14 0 0.07 par:pas; +panos pano adj m p 0.46 0 0.17 0 +panosse panosse nom f s 0 0.14 0 0.14 +panouille panouille nom s 0.01 0.54 0.01 0.41 +panouilles panouille nom p 0.01 0.54 0 0.14 +pans pan nom m p 3.73 26.01 0.25 12.16 +pansa panser ver 1.34 3.65 0.14 0.2 ind:pas:3s; +pansage pansage nom m s 0 0.14 0 0.14 +pansait panser ver 1.34 3.65 0 0.27 ind:imp:3s; +pansant panser ver 1.34 3.65 0 0.07 par:pre; +pansas panser ver 1.34 3.65 0 0.07 ind:pas:2s; +panse panse nom f s 2.13 3.04 2.02 2.91 +pansement pansement nom m s 6.52 13.45 4.7 8.38 +pansements pansement nom m p 6.52 13.45 1.82 5.07 +pansent panser ver 1.34 3.65 0.01 0 ind:pre:3p; +panser panser ver 1.34 3.65 0.5 1.42 inf; +panserai panser ver 1.34 3.65 0.01 0 ind:fut:1s; +panses panse nom f p 2.13 3.04 0.11 0.14 +pansez panser ver 1.34 3.65 0.07 0.07 imp:pre:2p;ind:pre:2p; +pansiez panser ver 1.34 3.65 0 0.07 ind:imp:2p; +pansions panser ver 1.34 3.65 0.14 0 ind:imp:1p; +panspermie panspermie nom f s 0.01 0 0.01 0 +pansu pansu adj m s 0 1.01 0 0.34 +pansue pansu adj f s 0 1.01 0 0.14 +pansues pansu adj f p 0 1.01 0 0.34 +pansus pansu adj m p 0 1.01 0 0.2 +pansèrent panser ver 1.34 3.65 0 0.07 ind:pas:3p; +pansé panser ver m s 1.34 3.65 0.28 0.54 par:pas; +pansée panser ver f s 1.34 3.65 0 0.14 par:pas; +pansées panser ver f p 1.34 3.65 0.04 0.14 par:pas; +pansés panser ver m p 1.34 3.65 0 0.14 par:pas; +pantagruélique pantagruélique adj m s 0 0.34 0 0.2 +pantagruéliques pantagruélique adj p 0 0.34 0 0.14 +pantalon pantalon nom m s 37.55 71.76 31.49 57.91 +pantalonnade pantalonnade nom f s 0 0.27 0 0.2 +pantalonnades pantalonnade nom f p 0 0.27 0 0.07 +pantalons pantalon nom m p 37.55 71.76 6.06 13.85 +pante pante nom m s 0.01 0.81 0 0.27 +pantela panteler ver 0 1.01 0 0.07 ind:pas:3s; +pantelaient panteler ver 0 1.01 0 0.07 ind:imp:3p; +pantelait panteler ver 0 1.01 0 0.2 ind:imp:3s; +pantelant pantelant adj m s 0.1 3.24 0.03 1.35 +pantelante pantelant adj f s 0.1 3.24 0.07 1.22 +pantelantes pantelant adj f p 0.1 3.24 0 0.27 +pantelants pantelant adj m p 0.1 3.24 0 0.41 +panteler panteler ver 0 1.01 0 0.14 inf; +pantelle panteler ver 0 1.01 0 0.2 ind:pre:3s; +pantelé panteler ver m s 0 1.01 0 0.07 par:pas; +pantes pante nom m p 0.01 0.81 0.01 0.54 +panthère panthère nom f s 2.08 5.41 1.84 3.65 +panthères panthère nom f p 2.08 5.41 0.24 1.76 +panthéisme panthéisme nom m s 0 0.2 0 0.2 +panthéiste panthéiste adj s 0.03 0.2 0.03 0.2 +panthéon panthéon nom m s 0.79 6.42 0.78 6.35 +panthéons panthéon nom m p 0.79 6.42 0.01 0.07 +pantin pantin nom m s 3.96 5.88 3.25 4.19 +pantins pantin nom m p 3.96 5.88 0.72 1.69 +pantière pantière nom f s 0 0.14 0 0.14 +pantocrator pantocrator adj m s 0.14 0 0.14 0 +pantographe pantographe nom m s 0.01 0.07 0.01 0 +pantographes pantographe nom m p 0.01 0.07 0 0.07 +pantois pantois adj m 0.09 2.3 0.06 2.23 +pantoise pantois adj f s 0.09 2.3 0.01 0 +pantoises pantois adj f p 0.09 2.3 0.01 0.07 +pantomime pantomime nom f s 0.41 1.82 0.41 1.42 +pantomimes pantomime nom f p 0.41 1.82 0 0.41 +pantomètres pantomètre nom m p 0 0.07 0 0.07 +pantouflard pantouflard adj m s 0.23 0.07 0.13 0.07 +pantouflarde pantouflard adj f s 0.23 0.07 0.1 0 +pantouflards pantouflard nom m p 0.07 0.2 0.02 0.07 +pantoufle pantoufle nom f s 3.08 8.78 0.57 0.95 +pantoufler pantoufler ver 0.01 0.34 0.01 0 inf; +pantoufles pantoufle nom f p 3.08 8.78 2.51 7.84 +panty panty nom m s 0.05 0.07 0.05 0.07 +panurge panurge nom m s 0.04 0.47 0.04 0.47 +panurgisme panurgisme nom m s 0 0.07 0 0.07 +panzer panzer nom m s 0.71 1.42 0.25 0.68 +panzers panzer nom m p 0.71 1.42 0.46 0.74 +pané pané adj m s 0.19 0.41 0.14 0.14 +panée paner ver f s 0.13 0.41 0.01 0.14 par:pas; +panées pané adj f p 0.19 0.41 0.01 0.2 +panégyrique panégyrique nom m s 0.23 0.34 0.22 0.2 +panégyriques panégyrique nom m p 0.23 0.34 0.01 0.14 +panégyristes panégyriste nom p 0 0.07 0 0.07 +panés pané adj m p 0.19 0.41 0.04 0 +paolistes paoliste adj m p 0 0.14 0 0.14 +paolo paolo nom m s 0.07 0 0.07 0 +paon paon nom m s 1.3 5.34 0.6 3.85 +paonne paon nom f s 1.3 5.34 0.1 0.07 +paons paon nom m p 1.3 5.34 0.6 1.42 +papa papa nom m s 259.01 77.16 259.01 77.16 +papa_cadeau papa_cadeau nom m s 0.01 0 0.01 0 +papable papable adj m s 0 0.07 0 0.07 +papal papal adj m s 0.41 0.68 0.02 0.27 +papale papal adj f s 0.41 0.68 0.37 0.41 +papamobile papamobile nom f s 0.14 0 0.14 0 +paparazzi paparazzi nom m 1.46 0.34 0.67 0.34 +paparazzis paparazzi nom m p 1.46 0.34 0.79 0 +paparazzo paparazzo nom m s 0.03 0.07 0.03 0.07 +papas papas nom m 1.25 1.08 1.25 1.08 +papauté papauté nom f s 0.01 0.81 0.01 0.81 +papaux papal adj m p 0.41 0.68 0.02 0 +papaver papaver nom m s 0.01 0 0.01 0 +papavérine papavérine nom f s 0 0.07 0 0.07 +papaye papaye nom f s 0.59 0.2 0.49 0.14 +papayer papayer nom m s 0 0.14 0 0.07 +papayers papayer nom m p 0 0.14 0 0.07 +papayes papaye nom f p 0.59 0.2 0.1 0.07 +pape pape nom m s 7.17 19.32 6.57 14.59 +papegai papegai nom m s 0 0.14 0 0.07 +papegais papegai nom m p 0 0.14 0 0.07 +papelard papelard nom m s 0.17 2.43 0.16 1.62 +papelarde papelard adj f s 0.01 0.27 0 0.07 +papelards papelard nom m p 0.17 2.43 0.01 0.81 +paperasse paperasse nom f s 4.8 5.74 4.11 0.95 +paperasser paperasser ver 0 0.07 0 0.07 inf; +paperasserie paperasserie nom f s 1.07 0.88 1.05 0.74 +paperasseries paperasserie nom f p 1.07 0.88 0.01 0.14 +paperasses paperasse nom f p 4.8 5.74 0.69 4.8 +paperassier paperassier nom m s 0.01 0.07 0.01 0.07 +papes pape nom m p 7.17 19.32 0.6 4.73 +papesse papesse nom f s 0.39 0.14 0.39 0.14 +papet papet nom m s 4.25 0.27 4.25 0.27 +papeterie papeterie nom f s 0.91 2.84 0.82 1.28 +papeteries papeterie nom f p 0.91 2.84 0.08 1.55 +papetier papetier nom m s 0.44 0.27 0.44 0.07 +papetiers papetier nom m p 0.44 0.27 0 0.2 +papi papi nom m s 7.23 0 7.05 0 +papier papier nom m s 120.51 203.11 56.32 144.59 +papier_cadeau papier_cadeau nom m s 0.07 0.07 0.07 0.07 +papier_monnaie papier_monnaie nom m s 0 0.14 0 0.14 +papiers papier nom m p 120.51 203.11 64.19 58.51 +papier_calque papier_calque nom m p 0 0.07 0 0.07 +papilionacé papilionacé adj m s 0.01 0.14 0.01 0 +papilionacée papilionacé adj f s 0.01 0.14 0 0.07 +papilionacées papilionacé adj f p 0.01 0.14 0 0.07 +papillaire papillaire adj m s 0 0.07 0 0.07 +papille papille nom f s 0.35 1.15 0.01 0.07 +papilles papille nom f p 0.35 1.15 0.34 1.08 +papillomavirus papillomavirus nom m 0.04 0 0.04 0 +papillomes papillome nom m p 0.01 0.14 0.01 0.14 +papillon papillon nom m s 12.28 20.07 8.12 10.68 +papillonna papillonner ver 0.33 0.81 0 0.07 ind:pas:3s; +papillonnage papillonnage nom m s 0.01 0.14 0.01 0.14 +papillonnaient papillonner ver 0.33 0.81 0 0.07 ind:imp:3p; +papillonnais papillonner ver 0.33 0.81 0.15 0 ind:imp:1s; +papillonnait papillonner ver 0.33 0.81 0.03 0.07 ind:imp:3s; +papillonnant papillonnant adj m s 0 0.14 0 0.07 +papillonnante papillonnant adj f s 0 0.14 0 0.07 +papillonne papillonner ver 0.33 0.81 0.04 0.27 ind:pre:1s;ind:pre:3s; +papillonnement papillonnement nom m s 0 0.14 0 0.14 +papillonnent papillonner ver 0.33 0.81 0.01 0.14 ind:pre:3p; +papillonner papillonner ver 0.33 0.81 0.07 0.14 inf; +papillonnes papillonner ver 0.33 0.81 0.02 0 ind:pre:2s; +papillonné papillonner ver m s 0.33 0.81 0 0.07 par:pas; +papillons papillon nom m p 12.28 20.07 4.16 9.39 +papillotaient papilloter ver 0 1.01 0 0.41 ind:imp:3p; +papillotait papilloter ver 0 1.01 0 0.07 ind:imp:3s; +papillotant papillotant adj m s 0 0.47 0 0.14 +papillotantes papillotant adj f p 0 0.47 0 0.14 +papillotants papillotant adj m p 0 0.47 0 0.2 +papillote papillote nom f s 0.33 1.89 0.02 0.07 +papillotent papilloter ver 0 1.01 0 0.14 ind:pre:3p; +papilloter papilloter ver 0 1.01 0 0.2 inf; +papillotes papillote nom f p 0.33 1.89 0.31 1.82 +papillotèrent papilloter ver 0 1.01 0 0.07 ind:pas:3p; +papis papi nom m p 7.23 0 0.17 0 +papisme papisme nom m s 0.04 0.07 0.04 0.07 +papiste papiste adj s 0.55 0.61 0.43 0.47 +papistes papiste adj f p 0.55 0.61 0.12 0.14 +papotage papotage nom m s 0.27 0.61 0.19 0.14 +papotages papotage nom m p 0.27 0.61 0.08 0.47 +papotaient papoter ver 1.77 1.62 0.02 0.2 ind:imp:3p; +papotait papoter ver 1.77 1.62 0.06 0.2 ind:imp:3s; +papotant papoter ver 1.77 1.62 0.03 0.27 par:pre; +papote papoter ver 1.77 1.62 0.28 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +papotent papoter ver 1.77 1.62 0.04 0 ind:pre:3p; +papoter papoter ver 1.77 1.62 1.16 0.61 inf; +papotera papoter ver 1.77 1.62 0.03 0 ind:fut:3s; +papotez papoter ver 1.77 1.62 0.04 0 imp:pre:2p; +papotèrent papoter ver 1.77 1.62 0 0.07 ind:pas:3p; +papoté papoter ver m s 1.77 1.62 0.13 0.07 par:pas; +papou papou nom m s 0.04 0.07 0.02 0 +papouille papouille nom f s 0.08 0.54 0 0.07 +papouillent papouiller ver 0.02 0.14 0.01 0 ind:pre:3p; +papouiller papouiller ver 0.02 0.14 0.01 0 inf; +papouilles papouille nom f p 0.08 0.54 0.08 0.47 +papouillez papouiller ver 0.02 0.14 0 0.07 ind:pre:2p; +papouillé papouiller ver m s 0.02 0.14 0 0.07 par:pas; +papous papou nom m p 0.04 0.07 0.02 0.07 +paprika paprika nom m s 0.75 0.61 0.75 0.61 +papy papy nom m s 6.79 1.08 6.76 1.08 +papyrus papyrus nom m 1.57 0.95 1.57 0.95 +papys papy nom m p 6.79 1.08 0.04 0 +papé papé nom m s 0 0.14 0 0.14 +paqson paqson nom m s 0.01 0 0.01 0 +paquebot paquebot nom m s 1.18 7.43 1.1 5.07 +paquebots paquebot nom m p 1.18 7.43 0.09 2.36 +paquet paquet nom m s 44.96 89.19 36.9 62.77 +paquet_cadeau paquet_cadeau nom m s 0.19 0.2 0.19 0.2 +paqueta paqueter ver 0.04 0.07 0.01 0.07 ind:pas:3s; +paquetage paquetage nom m s 0.6 2.91 0.44 2.16 +paquetages paquetage nom m p 0.6 2.91 0.16 0.74 +paquets paquet nom m p 44.96 89.19 8.06 26.42 +paquets_cadeaux paquets_cadeaux nom m p 0.01 0.54 0.01 0.54 +paquette paqueter ver 0.04 0.07 0.03 0 imp:pre:2s; +paqueté paqueté adj m s 0.02 0 0.02 0 +par par pre 1753.02 3727.09 1753.02 3727.09 +par_mégarde par_mégarde adv 0.61 2.91 0.61 2.91 +par_ci par_ci adv 3.1 9.12 3.1 9.12 +par_dedans par_dedans pre 0 0.07 0 0.07 +par_delà par_delà pre 1.32 9.05 1.32 9.05 +par_derrière par_derrière pre 2.04 6.35 2.04 6.35 +par_dessous par_dessous pre 0.32 2.16 0.32 2.16 +par_dessus par_dessus pre 16.1 69.19 16.1 69.19 +par_devant par_devant pre 0.16 1.96 0.16 1.96 +par_devers par_devers pre 0.01 1.08 0.01 1.08 +para parer ver 30.5 19.66 4.71 0.2 ind:pas:3s; +para_humain para_humain nom m s 0 0.14 0 0.14 +parabellum parabellum nom m s 0.24 0.61 0.23 0.54 +parabellums parabellum nom m p 0.24 0.61 0.01 0.07 +parabole parabole nom f s 1.9 2.57 1.78 1.96 +paraboles parabole nom f p 1.9 2.57 0.12 0.61 +parabolique parabolique adj s 0.42 0.47 0.38 0.2 +paraboliquement paraboliquement adv 0.01 0 0.01 0 +paraboliques parabolique adj p 0.42 0.47 0.04 0.27 +paraboloïde paraboloïde nom m s 0.01 0 0.01 0 +parachevaient parachever ver 0.57 1.28 0.01 0.07 ind:imp:3p; +parachevait parachever ver 0.57 1.28 0 0.14 ind:imp:3s; +parachevant parachever ver 0.57 1.28 0.01 0.14 par:pre; +parachever parachever ver 0.57 1.28 0.28 0.47 inf; +parachevèrent parachever ver 0.57 1.28 0 0.07 ind:pas:3p; +parachevé parachever ver m s 0.57 1.28 0.26 0.2 par:pas; +parachutage parachutage nom m s 0.22 0.95 0.17 0.41 +parachutages parachutage nom m p 0.22 0.95 0.05 0.54 +parachute parachute nom m s 4.79 3.58 4.12 3.04 +parachutent parachuter ver 1.12 1.96 0.01 0.14 ind:pre:3p; +parachuter parachuter ver 1.12 1.96 0.11 0.14 inf; +parachuterais parachuter ver 1.12 1.96 0.01 0 cnd:pre:1s; +parachuterons parachuter ver 1.12 1.96 0.01 0 ind:fut:1p; +parachutes parachute nom m p 4.79 3.58 0.67 0.54 +parachutez parachuter ver 1.12 1.96 0.01 0.07 imp:pre:2p;ind:pre:2p; +parachutisme parachutisme nom m s 0.29 0.07 0.29 0.07 +parachutiste parachutiste nom s 2.5 4.8 0.57 1.49 +parachutistes parachutiste nom p 2.5 4.8 1.93 3.31 +parachutèrent parachuter ver 1.12 1.96 0 0.07 ind:pas:3p; +parachuté parachuter ver m s 1.12 1.96 0.39 0.74 par:pas; +parachutée parachuter ver f s 1.12 1.96 0.02 0.07 par:pas; +parachutées parachuter ver f p 1.12 1.96 0 0.14 par:pas; +parachutés parachuter ver m p 1.12 1.96 0.07 0.41 par:pas; +parachèvement parachèvement nom m s 0.01 0.14 0.01 0.14 +parachèvent parachever ver 0.57 1.28 0 0.14 ind:pre:3p; +parachèvera parachever ver 0.57 1.28 0.01 0 ind:fut:3s; +parachèveraient parachever ver 0.57 1.28 0 0.07 cnd:pre:3p; +paraclet paraclet nom m s 0.04 0.68 0.04 0.68 +paracétamol paracétamol nom m s 0.11 0.14 0.11 0.14 +parada parader ver 1.48 3.58 0.04 0.07 ind:pas:3s; +paradaient parader ver 1.48 3.58 0 0.47 ind:imp:3p; +paradais parader ver 1.48 3.58 0.01 0.14 ind:imp:1s; +paradait parader ver 1.48 3.58 0.14 0.68 ind:imp:3s; +paradant parader ver 1.48 3.58 0.04 0.41 par:pre; +parade parade nom f s 5.1 11.22 4.79 9.93 +paradent parader ver 1.48 3.58 0.1 0.27 ind:pre:3p; +parader parader ver 1.48 3.58 0.72 0.81 inf; +paradera parader ver 1.48 3.58 0 0.07 ind:fut:3s; +parades parade nom f p 5.1 11.22 0.3 1.28 +paradeurs paradeur nom m p 0 0.07 0 0.07 +paradigme paradigme nom m s 0.25 0.2 0.13 0.14 +paradigmes paradigme nom m p 0.25 0.2 0.13 0.07 +paradis paradis nom m 33.23 28.04 33.23 28.04 +paradisiaque paradisiaque adj s 0.61 1.01 0.59 0.95 +paradisiaques paradisiaque adj p 0.61 1.01 0.02 0.07 +paradisiers paradisier nom m p 0 0.07 0 0.07 +paradons parader ver 1.48 3.58 0.01 0 ind:pre:1p; +parador parador nom m s 0.1 0.14 0.1 0.14 +parados parados nom m 0 0.81 0 0.81 +paradoxal paradoxal adj m s 0.78 5.14 0.65 2.16 +paradoxale paradoxal adj f s 0.78 5.14 0.12 1.96 +paradoxalement paradoxalement adv 0.22 3.78 0.22 3.78 +paradoxales paradoxal adj f p 0.78 5.14 0.01 0.68 +paradoxaux paradoxal adj m p 0.78 5.14 0 0.34 +paradoxe paradoxe nom m s 1.9 8.11 1.5 6.01 +paradoxes paradoxe nom m p 1.9 8.11 0.4 2.09 +paradoxie paradoxie nom f s 0 0.07 0 0.07 +paradèrent parader ver 1.48 3.58 0 0.07 ind:pas:3p; +paradé parader ver m s 1.48 3.58 0.01 0.14 par:pas; +paradée parader ver f s 1.48 3.58 0.01 0 par:pas; +parafer parafer ver 0.01 0 0.01 0 inf; +paraffine paraffine nom f s 0.22 0.68 0.22 0.68 +paraffiné paraffiné adj m s 0.01 0.27 0 0.2 +paraffinée paraffiné adj f s 0.01 0.27 0.01 0 +paraffinés paraffiné adj m p 0.01 0.27 0 0.07 +parage parage nom m s 5.99 5.74 0.01 0 +parages parage nom m p 5.99 5.74 5.98 5.74 +paragouvernementales paragouvernemental adj f p 0 0.07 0 0.07 +paragraphe paragraphe nom m s 3.58 3.65 3.21 2.57 +paragraphes paragraphe nom m p 3.58 3.65 0.37 1.08 +paraguayen paraguayen adj m s 0.35 0.47 0 0.34 +paraguayenne paraguayen adj f s 0.35 0.47 0.23 0.07 +paraguayennes paraguayen adj f p 0.35 0.47 0 0.07 +paraguayens paraguayen nom m p 0.14 0.14 0.14 0.07 +parai parer ver 30.5 19.66 0.02 0.14 ind:pas:1s; +paraient parer ver 30.5 19.66 0 0.34 ind:imp:3p; +parais parer ver 30.5 19.66 1.98 0.47 imp:pre:2s;ind:imp:1s;ind:imp:2s; +paraissaient paraître ver 122.14 448.11 0.73 26.96 ind:imp:3p; +paraissais paraître ver 122.14 448.11 0.46 0.61 ind:imp:1s;ind:imp:2s; +paraissait paraître ver 122.14 448.11 4.63 118.31 ind:imp:3s; +paraissant paraître ver 122.14 448.11 0.41 3.51 par:pre; +paraisse paraître ver 122.14 448.11 1.45 2.84 sub:pre:1s;sub:pre:3s; +paraissent paraître ver 122.14 448.11 2.88 13.04 ind:pre:3p; +paraissez paraître ver 122.14 448.11 2.3 0.68 imp:pre:2p;ind:pre:2p; +paraissiez paraître ver 122.14 448.11 0.03 0.41 ind:imp:2p; +paraissions paraître ver 122.14 448.11 0.02 0.14 ind:imp:1p; +paraissons paraître ver 122.14 448.11 0.04 0.27 imp:pre:1p;ind:pre:1p; +parait parer ver 30.5 19.66 12.53 2.09 ind:imp:3s; +parallaxe parallaxe nom f s 0.03 0.07 0.02 0 +parallaxes parallaxe nom f p 0.03 0.07 0.01 0.07 +parallèle parallèle adj s 2.79 13.11 1.36 3.51 +parallèlement parallèlement adv 0.2 3.45 0.2 3.45 +parallèles parallèle adj p 2.79 13.11 1.42 9.59 +parallélisme parallélisme nom m s 0.2 0.41 0.2 0.41 +paralléliste paralléliste adj s 0.01 0 0.01 0 +parallélogramme parallélogramme nom m s 0 0.07 0 0.07 +parallélépipède parallélépipède nom m s 0 0.54 0 0.2 +parallélépipèdes parallélépipède nom m p 0 0.54 0 0.34 +parallélépipédique parallélépipédique adj s 0 0.2 0 0.2 +paralogismes paralogisme nom m p 0 0.07 0 0.07 +paralympiques paralympique nom m p 0.1 0 0.1 0 +paralysa paralyser ver 7.84 13.99 0.05 0.2 ind:pas:3s; +paralysaient paralyser ver 7.84 13.99 0.01 0.47 ind:imp:3p; +paralysais paralyser ver 7.84 13.99 0 0.07 ind:imp:1s; +paralysait paralyser ver 7.84 13.99 0.03 2.16 ind:imp:3s; +paralysant paralysant adj m s 0.86 1.01 0.52 0.41 +paralysante paralysant adj f s 0.86 1.01 0.17 0.54 +paralysantes paralysant adj f p 0.86 1.01 0.11 0.07 +paralysants paralysant adj m p 0.86 1.01 0.06 0 +paralyse paralyser ver 7.84 13.99 0.72 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +paralysent paralyser ver 7.84 13.99 0.07 0.47 ind:pre:3p; +paralyser paralyser ver 7.84 13.99 0.69 1.08 inf; +paralysera paralyser ver 7.84 13.99 0.15 0.07 ind:fut:3s; +paralyserait paralyser ver 7.84 13.99 0.19 0 cnd:pre:3s; +paralyserez paralyser ver 7.84 13.99 0.01 0 ind:fut:2p; +paralysie paralysie nom f s 2.61 4.32 2.6 4.19 +paralysies paralysie nom f p 2.61 4.32 0.01 0.14 +paralysât paralyser ver 7.84 13.99 0 0.14 sub:imp:3s; +paralysèrent paralyser ver 7.84 13.99 0 0.14 ind:pas:3p; +paralysé paralyser ver m s 7.84 13.99 3.69 4.12 par:pas; +paralysée paralyser ver f s 7.84 13.99 1.71 1.96 par:pas; +paralysées paralyser ver f p 7.84 13.99 0.18 0.14 par:pas; +paralysés paralyser ver m p 7.84 13.99 0.27 0.68 par:pas; +paralytique paralytique adj s 0.84 1.76 0.82 1.35 +paralytiques paralytique adj m p 0.84 1.76 0.02 0.41 +paramagnétique paramagnétique adj s 0.01 0 0.01 0 +paramilitaire paramilitaire adj s 0.3 1.01 0.12 0.27 +paramilitaires paramilitaire adj p 0.3 1.01 0.18 0.74 +paramnésie paramnésie nom f s 0.01 0.14 0.01 0.14 +paramètre paramètre nom m s 1.5 0.41 0.07 0 +paramètres paramètre nom m p 1.5 0.41 1.43 0.41 +paramédical paramédical adj m s 0.37 0.14 0.3 0.14 +paramédicale paramédical adj f s 0.37 0.14 0.03 0 +paramédicaux paramédical adj m p 0.37 0.14 0.04 0 +paramétrique paramétrique adj f s 0.01 0 0.01 0 +parangon parangon nom m s 0.13 1.22 0.12 1.08 +parangonnages parangonnage nom m p 0 0.07 0 0.07 +parangons parangon nom m p 0.13 1.22 0.01 0.14 +parano parano adj s 4.23 0.47 3.98 0.47 +paranormal paranormal nom m s 0.61 0.07 0.61 0.07 +paranormale paranormal adj f s 2.04 0.07 1.02 0.07 +paranormales paranormal adj f p 2.04 0.07 0.14 0 +paranormaux paranormal adj m p 2.04 0.07 0.57 0 +paranos parano adj f p 4.23 0.47 0.25 0 +paranoïa paranoïa nom f s 2.03 1.15 2.03 1.15 +paranoïaque paranoïaque adj s 3.33 0.54 2.97 0.41 +paranoïaques paranoïaque adj p 3.33 0.54 0.35 0.14 +paranoïde paranoïde adj s 0.09 0.27 0.09 0.27 +parant parer ver 30.5 19.66 0.01 1.28 par:pre; +paranéoplasique paranéoplasique adj m s 0.07 0 0.07 0 +parapente parapente nom m s 0.31 0 0.31 0 +parapet parapet nom m s 0.88 12.91 0.73 10.88 +parapets parapet nom m p 0.88 12.91 0.16 2.03 +paraphait parapher ver 0.64 0.74 0 0.07 ind:imp:3s; +paraphant parapher ver 0.64 0.74 0 0.14 par:pre; +parapharmacie parapharmacie nom f s 0.03 0.07 0.03 0.07 +paraphe paraphe nom m s 0.1 1.55 0.1 1.01 +parapher parapher ver 0.64 0.74 0.06 0 inf; +paraphes parapher ver 0.64 0.74 0.02 0 ind:pre:2s; +parapheurs parapheur nom m p 0 0.07 0 0.07 +paraphez parapher ver 0.64 0.74 0.24 0 imp:pre:2p;ind:pre:2p; +paraphrasa paraphraser ver 0.24 0.41 0 0.07 ind:pas:3s; +paraphrasait paraphraser ver 0.24 0.41 0 0.14 ind:imp:3s; +paraphrasant paraphraser ver 0.24 0.41 0.01 0 par:pre; +paraphrase paraphrase nom f s 0.12 0.34 0.12 0.27 +paraphraser paraphraser ver 0.24 0.41 0.13 0.14 inf; +paraphrases paraphraser ver 0.24 0.41 0.01 0 ind:pre:2s; +paraphrasé paraphraser ver m s 0.24 0.41 0 0.07 par:pas; +paraphé parapher ver m s 0.64 0.74 0.25 0.34 par:pas; +paraphée parapher ver f s 0.64 0.74 0.03 0.07 par:pas; +paraphés parapher ver m p 0.64 0.74 0.02 0.07 par:pas; +parapluie parapluie nom m s 7.38 16.28 6.37 12.5 +parapluies parapluie nom m p 7.38 16.28 1.01 3.78 +paraplégique paraplégique adj s 0.29 0.14 0.25 0.07 +paraplégiques paraplégique adj m p 0.29 0.14 0.04 0.07 +parapsychique parapsychique adj s 0.04 0 0.04 0 +parapsychologie parapsychologie nom f s 0.61 0.14 0.61 0.14 +parapsychologique parapsychologique adj s 0.03 0.07 0.02 0 +parapsychologiques parapsychologique adj m p 0.03 0.07 0.01 0.07 +parapsychologue parapsychologue nom s 0.09 0 0.06 0 +parapsychologues parapsychologue nom p 0.09 0 0.03 0 +parareligieuse parareligieux adj f s 0.1 0 0.1 0 +paras para nom m p 3.23 1.49 0.9 0.61 +parascolaire parascolaire adj m s 0.04 0.07 0 0.07 +parascolaires parascolaire adj p 0.04 0.07 0.04 0 +parascève parascève nom f s 0 0.47 0 0.47 +parasitaire parasitaire adj s 0.25 0.81 0.23 0.61 +parasitaires parasitaire adj p 0.25 0.81 0.03 0.2 +parasitait parasiter ver 0.39 0.27 0 0.07 ind:imp:3s; +parasite parasite nom m s 8.72 4.53 4.66 1.22 +parasitent parasiter ver 0.39 0.27 0.12 0 ind:pre:3p; +parasiter parasiter ver 0.39 0.27 0.07 0.07 inf; +parasites parasite nom m p 8.72 4.53 4.06 3.31 +parasiticide parasiticide adj m s 0.1 0 0.1 0 +parasitisme parasitisme nom m s 0.01 0.74 0.01 0.74 +parasitologie parasitologie nom f s 0 0.07 0 0.07 +parasitose parasitose nom f s 0.01 0 0.01 0 +parasité parasiter ver m s 0.39 0.27 0.05 0.07 par:pas; +parasitée parasiter ver f s 0.39 0.27 0.01 0.07 par:pas; +parasités parasiter ver m p 0.39 0.27 0.06 0 par:pas; +parasol parasol nom m s 0.8 6.69 0.72 3.72 +parasols parasol nom m p 0.8 6.69 0.08 2.97 +parathyroïdienne parathyroïdien adj f s 0.01 0 0.01 0 +paratonnerre paratonnerre nom m s 0.55 0.61 0.41 0.41 +paratonnerres paratonnerre nom m p 0.55 0.61 0.14 0.2 +paravent paravent nom m s 1.77 4.32 1.51 3.85 +paravents paravent nom m p 1.77 4.32 0.26 0.47 +paraît paraître ver 122.14 448.11 81.22 113.92 ind:pre:3s; +paraîtra paraître ver 122.14 448.11 1.99 3.24 ind:fut:3s; +paraîtrai paraître ver 122.14 448.11 0.02 0.14 ind:fut:1s; +paraîtraient paraître ver 122.14 448.11 0.1 0.81 cnd:pre:3p; +paraîtrais paraître ver 122.14 448.11 0 0.14 cnd:pre:1s; +paraîtrait paraître ver 122.14 448.11 0.43 3.11 cnd:pre:3s; +paraîtras paraître ver 122.14 448.11 0.25 0 ind:fut:2s; +paraître paraître ver 122.14 448.11 15.31 40.27 inf; +paraîtrez paraître ver 122.14 448.11 0.05 0 ind:fut:2p; +paraîtront paraître ver 122.14 448.11 0.47 0.61 ind:fut:3p; +parbleu parbleu ono 1.54 1.96 1.54 1.96 +parc parc nom m s 32.85 43.99 31.02 38.72 +parcage parcage nom m s 0 0.07 0 0.07 +parce parce adv_sup 3.49 0.95 3.49 0.95 +parce_que parce_que con 548.52 327.43 548.52 327.43 +parcellaire parcellaire adj s 0 0.34 0 0.34 +parcelle parcelle nom f s 2.73 11.15 1.99 7.09 +parcelles parcelle nom f p 2.73 11.15 0.74 4.05 +parchemin parchemin nom m s 3.61 4.8 3.47 3.85 +parchemineuse parchemineux adj f s 0 0.07 0 0.07 +parchemins parchemin nom m p 3.61 4.8 0.14 0.95 +parcheminé parcheminé adj m s 0.04 1.49 0.03 0.47 +parcheminée parcheminé adj f s 0.04 1.49 0.01 0.47 +parcheminées parcheminé adj f p 0.04 1.49 0 0.34 +parcheminés parcheminé adj m p 0.04 1.49 0 0.2 +parcimonie parcimonie nom f s 0.22 0.95 0.22 0.95 +parcimonieuse parcimonieux adj f s 0 1.55 0 0.61 +parcimonieusement parcimonieusement adv 0 0.88 0 0.88 +parcimonieuses parcimonieux adj f p 0 1.55 0 0.07 +parcimonieux parcimonieux adj m 0 1.55 0 0.88 +parcmètre parcmètre nom m s 0.38 0 0.22 0 +parcmètres parcmètre nom m p 0.38 0 0.16 0 +parcomètre parcomètre nom m s 0.01 0 0.01 0 +parcouraient parcourir ver 15.46 61.82 0.16 1.89 ind:imp:3p; +parcourais parcourir ver 15.46 61.82 0.32 1.22 ind:imp:1s; +parcourait parcourir ver 15.46 61.82 0.47 6.28 ind:imp:3s; +parcourant parcourir ver 15.46 61.82 0.5 4.12 par:pre; +parcoure parcourir ver 15.46 61.82 0.06 0.07 sub:pre:1s;sub:pre:3s; +parcourent parcourir ver 15.46 61.82 0.57 1.15 ind:pre:3p; +parcourez parcourir ver 15.46 61.82 0.22 0.07 imp:pre:2p;ind:pre:2p; +parcouriez parcourir ver 15.46 61.82 0.05 0.07 ind:imp:2p; +parcourions parcourir ver 15.46 61.82 0.16 0.14 ind:imp:1p; +parcourir parcourir ver 15.46 61.82 3.5 13.65 inf; +parcourons parcourir ver 15.46 61.82 0.11 0.2 imp:pre:1p;ind:pre:1p; +parcourra parcourir ver 15.46 61.82 0.02 0 ind:fut:3s; +parcourrai parcourir ver 15.46 61.82 0.04 0.07 ind:fut:1s; +parcourraient parcourir ver 15.46 61.82 0.01 0 cnd:pre:3p; +parcourrais parcourir ver 15.46 61.82 0.02 0 cnd:pre:1s;cnd:pre:2s; +parcourrait parcourir ver 15.46 61.82 0.01 0.14 cnd:pre:3s; +parcourrez parcourir ver 15.46 61.82 0 0.14 ind:fut:2p; +parcourrions parcourir ver 15.46 61.82 0.1 0 cnd:pre:1p; +parcourront parcourir ver 15.46 61.82 0.01 0 ind:fut:3p; +parcours parcours nom m 7.42 17.64 7.42 17.64 +parcourt parcourir ver 15.46 61.82 2.3 4.59 ind:pre:3s; +parcouru parcourir ver m s 15.46 61.82 4.74 11.08 par:pas; +parcourue parcourir ver f s 15.46 61.82 0.38 2.97 par:pas; +parcourues parcourir ver f p 15.46 61.82 0.03 1.42 par:pas; +parcoururent parcourir ver 15.46 61.82 0.02 1.55 ind:pas:3p; +parcourus parcourir ver m p 15.46 61.82 0.2 2.77 ind:pas:1s;par:pas; +parcourut parcourir ver 15.46 61.82 0.15 6.49 ind:pas:3s; +parcourûmes parcourir ver 15.46 61.82 0 0.47 ind:pas:1p; +parcs parc nom m p 32.85 43.99 1.84 5.27 +pardessus pardessus nom m 1.43 9.05 1.43 9.05 +pardi pardi ono 2.66 6.22 2.66 6.22 +pardieu pardieu ono 0.54 0.2 0.54 0.2 +pardingue pardingue nom m s 0 0.07 0 0.07 +pardon pardon ono 209.13 18.04 209.13 18.04 +pardonna pardonner ver 139.46 44.59 0.04 0.54 ind:pas:3s; +pardonnable pardonnable adj m s 0.03 0.2 0.03 0.2 +pardonnaient pardonner ver 139.46 44.59 0 0.68 ind:imp:3p; +pardonnais pardonner ver 139.46 44.59 0.07 0.07 ind:imp:1s;ind:imp:2s; +pardonnait pardonner ver 139.46 44.59 0.33 2.64 ind:imp:3s; +pardonnant pardonner ver 139.46 44.59 0.05 0.2 par:pre; +pardonne pardonner ver 139.46 44.59 53.11 12.3 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +pardonnent pardonner ver 139.46 44.59 1.09 0.81 ind:pre:3p; +pardonner pardonner ver 139.46 44.59 21.72 11.49 inf;; +pardonnera pardonner ver 139.46 44.59 3.72 0.74 ind:fut:3s; +pardonnerai pardonner ver 139.46 44.59 4.58 0.81 ind:fut:1s; +pardonneraient pardonner ver 139.46 44.59 0.13 0.07 cnd:pre:3p; +pardonnerais pardonner ver 139.46 44.59 1.02 0.2 cnd:pre:1s;cnd:pre:2s; +pardonnerait pardonner ver 139.46 44.59 0.55 1.08 cnd:pre:3s; +pardonneras pardonner ver 139.46 44.59 1.45 0.14 ind:fut:2s; +pardonnerez pardonner ver 139.46 44.59 0.66 0.81 ind:fut:2p; +pardonneriez pardonner ver 139.46 44.59 0.04 0 cnd:pre:2p; +pardonnerons pardonner ver 139.46 44.59 0.02 0.07 ind:fut:1p; +pardonneront pardonner ver 139.46 44.59 0.63 0.27 ind:fut:3p; +pardonnes pardonner ver 139.46 44.59 4.41 0.54 ind:pre:2s;sub:pre:2s; +pardonnez pardonner ver 139.46 44.59 34.31 5.74 imp:pre:2p;ind:pre:2p; +pardonniez pardonner ver 139.46 44.59 0.16 0.07 ind:imp:2p; +pardonnions pardonner ver 139.46 44.59 0.02 0.2 ind:imp:1p; +pardonnons pardonner ver 139.46 44.59 1.02 0.07 imp:pre:1p;ind:pre:1p; +pardonnât pardonner ver 139.46 44.59 0 0.07 sub:imp:3s; +pardonnèrent pardonner ver 139.46 44.59 0.02 0.07 ind:pas:3p; +pardonné pardonner ver m s 139.46 44.59 8.31 4.32 par:pas; +pardonnée pardonner ver f s 139.46 44.59 1.18 0.27 par:pas; +pardonnées pardonner ver f p 139.46 44.59 0.02 0.07 par:pas; +pardonnés pardonner ver m p 139.46 44.59 0.8 0.27 par:pas; +pardons pardon nom m p 55.62 26.89 0.92 0.81 +pare parer ver 30.5 19.66 1.64 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pare_balle pare_balle adj s 0.13 0 0.13 0 +pare_balles pare_balles adj 1.92 0.34 1.92 0.34 +pare_boue pare_boue nom m 0.04 0 0.04 0 +pare_brise pare_brise nom m 4.12 7.16 4.08 7.16 +pare_brise pare_brise nom m p 4.12 7.16 0.04 0 +pare_chocs pare_chocs nom m 1.85 1.82 1.85 1.82 +pare_feu pare_feu nom m 0.24 0.07 0.24 0.07 +pare_feux pare_feux nom m p 0.05 0 0.05 0 +pare_soleil pare_soleil nom m 0.26 0.54 0.26 0.54 +pare_éclats pare_éclats nom m 0 0.07 0 0.07 +pare_étincelles pare_étincelles nom m 0 0.07 0 0.07 +pareil pareil adj m s 133.45 149.66 95.18 70.47 +pareille pareil adj f s 133.45 149.66 21.01 41.22 +pareillement pareillement adv 1.57 3.72 1.57 3.72 +pareilles pareil adj f p 133.45 149.66 6.97 16.82 +pareils pareil adj m p 133.45 149.66 10.29 21.15 +parement parement nom m s 0.03 1.76 0.03 0 +parements parement nom m p 0.03 1.76 0 1.76 +parenchyme parenchyme nom m s 0.01 0 0.01 0 +parent parent nom m s 188.38 146.35 10.03 4.53 +parentage parentage nom m s 0 0.07 0 0.07 +parental parental adj m s 1.65 0.81 0.5 0.07 +parentale parental adj f s 1.65 0.81 0.72 0.61 +parentales parental adj f p 1.65 0.81 0.1 0.07 +parentaux parental adj m p 1.65 0.81 0.32 0.07 +parente parent nom f s 188.38 146.35 1.12 2.3 +parentes parent nom f p 188.38 146.35 0.2 0.81 +parenthèse parenthèse nom f s 1.8 9.32 1 5.47 +parenthèses parenthèse nom f p 1.8 9.32 0.8 3.85 +parents parent nom m p 188.38 146.35 177.04 138.72 +parentèle parentèle nom f s 0.11 0.34 0.11 0.27 +parentèles parentèle nom f p 0.11 0.34 0 0.07 +parenté parenté nom f s 1.42 6.42 1.42 5.68 +parentés parenté nom f p 1.42 6.42 0 0.74 +parer parer ver 30.5 19.66 0.69 5.14 inf; +parerai parer ver 30.5 19.66 0 0.07 ind:fut:1s; +parerait parer ver 30.5 19.66 0 0.07 cnd:pre:3s; +paressaient paresser ver 0.42 0.95 0 0.07 ind:imp:3p; +paressais paresser ver 0.42 0.95 0.02 0.07 ind:imp:1s;ind:imp:2s; +paressait paresser ver 0.42 0.95 0 0.2 ind:imp:3s; +paressant paresser ver 0.42 0.95 0.01 0.07 par:pre; +paresse paresse nom f s 2.65 12.43 2.54 11.89 +paresser paresser ver 0.42 0.95 0.25 0.34 inf; +paresses paresse nom f p 2.65 12.43 0.1 0.54 +paresseuse paresseux adj f s 5.46 10.34 2.08 3.65 +paresseusement paresseusement adv 0.01 2.97 0.01 2.97 +paresseuses paresseux adj f p 5.46 10.34 0.2 0.41 +paresseux paresseux adj m 5.46 10.34 3.19 6.28 +paressions paresser ver 0.42 0.95 0.1 0.07 ind:imp:1p; +paressé paresser ver m s 0.42 0.95 0.02 0.14 par:pas; +paresthésie paresthésie nom f s 0.05 0 0.05 0 +pareur pareur nom m s 0.01 0 0.01 0 +parez parer ver 30.5 19.66 1.44 0.14 imp:pre:2p;ind:pre:2p; +parfaire parfaire ver 60.06 19.86 0.58 2.64 inf; +parfais parfaire ver 60.06 19.86 0.09 0 imp:pre:2s;ind:pre:1s; +parfaisais parfaire ver 60.06 19.86 0 0.07 ind:imp:1s; +parfaisait parfaire ver 60.06 19.86 0 0.07 ind:imp:3s; +parfait parfaire ver m s 60.06 19.86 45.92 11.89 ind:pre:3s;par:pas; +parfaite parfait adj f s 58.77 43.45 19.32 18.45 +parfaitement parfaitement adv 45.48 71.08 45.48 71.08 +parfaites parfait adj f p 58.77 43.45 1.52 2.03 +parfaits parfait adj m p 58.77 43.45 2.36 2.3 +parferont parfaire ver 60.06 19.86 0 0.07 ind:fut:3p; +parfit parfaire ver 60.06 19.86 0 0.07 ind:pas:3s; +parfois parfois adv_sup 152.86 287.36 152.86 287.36 +parfum parfum nom m s 30 65.74 24.44 52.36 +parfuma parfumer ver 1.89 10.27 0 0.41 ind:pas:3s; +parfumaient parfumer ver 1.89 10.27 0 0.07 ind:imp:3p; +parfumait parfumer ver 1.89 10.27 0.01 1.22 ind:imp:3s; +parfume parfumer ver 1.89 10.27 0.14 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +parfument parfumer ver 1.89 10.27 0.06 0.41 ind:pre:3p; +parfumer parfumer ver 1.89 10.27 0.27 0.95 inf; +parfumera parfumer ver 1.89 10.27 0 0.07 ind:fut:3s; +parfumerie parfumerie nom f s 0.47 1.42 0.47 1.22 +parfumeries parfumerie nom f p 0.47 1.42 0 0.2 +parfumeur parfumeur nom m s 0.13 1.15 0.12 0.47 +parfumeurs parfumeur nom m p 0.13 1.15 0 0.41 +parfumeuse parfumeur nom f s 0.13 1.15 0.01 0.27 +parfumez parfumer ver 1.89 10.27 0.11 0 imp:pre:2p;ind:pre:2p; +parfums parfum nom m p 30 65.74 5.55 13.38 +parfumé parfumé adj m s 2.24 10.2 0.64 3.99 +parfumée parfumé adj f s 2.24 10.2 1.12 3.51 +parfumées parfumé adj f p 2.24 10.2 0.23 1.89 +parfumés parfumé adj m p 2.24 10.2 0.25 0.81 +pari pari nom m s 26.61 12.57 13.93 4.59 +paria paria nom m s 1.12 2.09 0.82 1.35 +pariade pariade nom f s 0.01 0.14 0.01 0.14 +pariaient parier ver 81.96 15.61 0.15 0.2 ind:imp:3p; +pariais parier ver 81.96 15.61 0.25 0.07 ind:imp:1s;ind:imp:2s; +pariait parier ver 81.96 15.61 0.48 0.27 ind:imp:3s; +pariant parier ver 81.96 15.61 0.52 0.07 par:pre; +parias paria nom m p 1.12 2.09 0.29 0.74 +parie parier ver 81.96 15.61 52.59 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +parient parier ver 81.96 15.61 0.33 0 ind:pre:3p; +parier parier ver 81.96 15.61 9.93 2.7 inf;; +parierai parier ver 81.96 15.61 0.51 0.07 ind:fut:1s; +parierais parier ver 81.96 15.61 1.81 1.01 cnd:pre:1s;cnd:pre:2s; +parierait parier ver 81.96 15.61 0.02 0.14 cnd:pre:3s; +parieriez parier ver 81.96 15.61 0.05 0 cnd:pre:2p; +paries parier ver 81.96 15.61 3.61 0.54 ind:pre:2s; +parieur parieur nom m s 0.81 0.54 0.39 0.07 +parieurs parieur nom m p 0.81 0.54 0.41 0.47 +parieuse parieur nom f s 0.81 0.54 0.01 0 +pariez parier ver 81.96 15.61 1.69 0.14 imp:pre:2p;ind:pre:2p; +parigot parigot adj m s 0.4 1.22 0.27 0.81 +parigote parigot nom f s 0 1.01 0 0.2 +parigotes parigot adj f p 0.4 1.22 0 0.14 +parigots parigot adj m p 0.4 1.22 0.14 0.14 +parions parier ver 81.96 15.61 0.38 0.2 imp:pre:1p;ind:imp:1p;ind:pre:1p; +paris pari nom m p 26.61 12.57 12.68 7.97 +paris_brest paris_brest nom m 0.19 0.2 0.19 0.2 +parisien parisien adj m s 2.73 30.61 0.94 12.09 +parisienne parisien adj f s 2.73 30.61 1.11 10.07 +parisiennes parisien adj f p 2.73 30.61 0.16 2.3 +parisiens parisien nom m p 2.2 9.12 1.36 6.49 +paritaire paritaire adj s 0 0.07 0 0.07 +parité parité nom f s 0.31 0.14 0.31 0.14 +parié parier ver m s 81.96 15.61 9.61 1.42 par:pas; +pariétal pariétal adj m s 0.26 0.2 0.2 0.14 +pariétale pariétal adj f s 0.26 0.2 0.04 0.07 +pariétaux pariétal adj m p 0.26 0.2 0.02 0 +parjurant parjurer ver 0.79 0.47 0 0.07 par:pre; +parjure parjure nom m s 1.35 0.74 1.16 0.68 +parjurer parjurer ver 0.79 0.47 0.14 0.34 inf;; +parjurera parjurer ver 0.79 0.47 0.01 0 ind:fut:3s; +parjures parjure nom m p 1.35 0.74 0.19 0.07 +parjuré parjurer ver m s 0.79 0.47 0.21 0 par:pas; +parjurée parjurer ver f s 0.79 0.47 0.03 0 par:pas; +parka parka nom m s 0.28 0.41 0.28 0.41 +parking parking nom m s 18.23 9.86 17.38 8.65 +parkings parking nom m p 18.23 9.86 0.84 1.22 +parkinson parkinson nom m 0.03 0.07 0.03 0.07 +parkinsonien parkinsonien adj m s 0.07 0.14 0.04 0.07 +parkinsonienne parkinsonien adj f s 0.07 0.14 0 0.07 +parkinsoniens parkinsonien adj m p 0.07 0.14 0.03 0 +parla parler ver 1970.55 1086.01 2.71 38.99 ind:pas:3s; +parlai parler ver 1970.55 1086.01 0.59 3.78 ind:pas:1s; +parlaient parler ver 1970.55 1086.01 5.94 40.27 ind:imp:3p; +parlais parler ver 1970.55 1086.01 32.98 19.53 ind:imp:1s;ind:imp:2s; +parlait parler ver 1970.55 1086.01 44.37 157.09 ind:imp:3s; +parlant parler ver 1970.55 1086.01 15.7 36.15 par:pre; +parlante parlant adj f s 5.62 5.47 1.01 0.68 +parlantes parlant adj f p 5.62 5.47 0.46 0.14 +parlants parlant adj m p 5.62 5.47 0.12 0.34 +parlas parler ver 1970.55 1086.01 0.01 0.07 ind:pas:2s; +parlassent parler ver 1970.55 1086.01 0 0.2 sub:imp:3p; +parlasses parler ver 1970.55 1086.01 0 0.07 sub:imp:2s; +parle parler ver 1970.55 1086.01 451.68 168.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +parlement parlement nom m s 4.71 5.68 4.71 5.54 +parlementaire parlementaire adj s 0.77 3.72 0.72 2.7 +parlementaires parlementaire nom p 0.27 2.91 0.16 2.7 +parlementait parlementer ver 0.82 1.69 0 0.34 ind:imp:3s; +parlementant parlementer ver 0.82 1.69 0 0.07 par:pre; +parlementarisme parlementarisme nom m s 0 0.2 0 0.2 +parlementariste parlementariste adj s 0 0.07 0 0.07 +parlemente parlementer ver 0.82 1.69 0.15 0.27 ind:pre:1s;ind:pre:3s; +parlementent parlementer ver 0.82 1.69 0.01 0.14 ind:pre:3p; +parlementer parlementer ver 0.82 1.69 0.61 0.74 inf; +parlementons parlementer ver 0.82 1.69 0.01 0.07 imp:pre:1p;ind:pre:1p; +parlements parlement nom m p 4.71 5.68 0 0.14 +parlementèrent parlementer ver 0.82 1.69 0 0.07 ind:pas:3p; +parlementé parlementer ver m s 0.82 1.69 0.04 0 par:pas; +parlent parler ver 1970.55 1086.01 32.08 29.39 ind:pre:3p;sub:pre:3p; +parler parler ver 1970.55 1086.01 728.02 341.82 inf;;inf;;inf;;inf;; +parlera parler ver 1970.55 1086.01 23.7 6.22 ind:fut:3s; +parlerai parler ver 1970.55 1086.01 22.47 8.24 ind:fut:1s; +parleraient parler ver 1970.55 1086.01 0.14 1.42 cnd:pre:3p; +parlerais parler ver 1970.55 1086.01 3.96 2.03 cnd:pre:1s;cnd:pre:2s; +parlerait parler ver 1970.55 1086.01 3.17 6.49 cnd:pre:3s; +parleras parler ver 1970.55 1086.01 3.89 1.28 ind:fut:2s; +parlerez parler ver 1970.55 1086.01 2.71 0.47 ind:fut:2p; +parlerie parlerie nom f s 0 0.07 0 0.07 +parleriez parler ver 1970.55 1086.01 0.5 0.14 cnd:pre:2p; +parlerions parler ver 1970.55 1086.01 0.26 0.47 cnd:pre:1p; +parlerons parler ver 1970.55 1086.01 6.53 2.03 ind:fut:1p; +parleront parler ver 1970.55 1086.01 1.75 1.22 ind:fut:3p; +parlers parler nom m p 11.58 9.05 0 0.14 +parles parler ver 1970.55 1086.01 152.2 35.34 ind:pre:2s;sub:pre:2s; +parleur parleur nom m s 1.36 2.03 1.2 1.76 +parleurs parleur nom m p 1.36 2.03 0.16 0.2 +parleuse parleur nom f s 1.36 2.03 0 0.07 +parlez parler ver 1970.55 1086.01 120.79 22.03 imp:pre:2p;ind:pre:2p; +parliez parler ver 1970.55 1086.01 10.93 3.11 ind:imp:2p;sub:pre:2p; +parlions parler ver 1970.55 1086.01 6.69 12.16 ind:imp:1p; +parloir parloir nom m s 2.64 4.39 2.64 4.19 +parloirs parloir nom m p 2.64 4.39 0 0.2 +parlons parler ver 1970.55 1086.01 46.28 16.22 imp:pre:1p;ind:pre:1p; +parlophone parlophone nom s 0 0.34 0 0.34 +parlotaient parloter ver 0 0.14 0 0.07 ind:imp:3p; +parlote parlote nom f s 0.27 1.35 0.24 0.27 +parloter parloter ver 0 0.14 0 0.07 inf; +parlotes parlote nom f p 0.27 1.35 0.03 1.08 +parlotte parlotte nom f s 0.19 0.47 0.16 0.14 +parlottes parlotte nom f p 0.19 0.47 0.04 0.34 +parlâmes parler ver 1970.55 1086.01 0.02 1.55 ind:pas:1p; +parlât parler ver 1970.55 1086.01 0.1 3.11 sub:imp:3s; +parlèrent parler ver 1970.55 1086.01 0.08 7.77 ind:pas:3p; +parlé parler ver m s 1970.55 1086.01 248.94 118.04 par:pas;par:pas;par:pas;par:pas; +parlée parler ver f s 1970.55 1086.01 0.39 0.27 par:pas; +parlées parler ver f p 1970.55 1086.01 0.3 0.07 par:pas; +parlés parler ver m p 1970.55 1086.01 0.65 0.2 par:pas; +parme parme adj 0.01 0.81 0.01 0.81 +parmentier parmentier nom m s 0.04 0.27 0.04 0.27 +parmentures parmenture nom f p 0 0.07 0 0.07 +parmesan parmesan nom m s 0.66 0.54 0.66 0.47 +parmesane parmesan adj f s 0.18 0.2 0.01 0.07 +parmesans parmesan nom m p 0.66 0.54 0 0.07 +parmi parmi pre 69.17 171.96 69.17 171.96 +parmélies parmélie nom f p 0 0.2 0 0.2 +parménidien parménidien adj m s 0 0.07 0 0.07 +parnassienne parnassien adj f s 0 0.14 0 0.14 +parodiai parodier ver 0.21 1.55 0 0.14 ind:pas:1s; +parodiait parodier ver 0.21 1.55 0 0.2 ind:imp:3s; +parodiant parodier ver 0.21 1.55 0.04 0.34 par:pre; +parodie parodie nom f s 1.13 2.43 1.09 2.16 +parodier parodier ver 0.21 1.55 0.01 0.61 inf; +parodies parodie nom f p 1.13 2.43 0.05 0.27 +parodique parodique adj s 0.06 1.08 0.05 0.95 +parodiquement parodiquement adv 0 0.14 0 0.14 +parodiques parodique adj m p 0.06 1.08 0.01 0.14 +parodontal parodontal adj m s 0.02 0 0.01 0 +parodontale parodontal adj f s 0.02 0 0.01 0 +paroi paroi nom f s 4.88 30 3.01 16.01 +paroir paroir nom m s 0 0.14 0 0.07 +paroirs paroir nom m p 0 0.14 0 0.07 +parois paroi nom f p 4.88 30 1.87 13.99 +paroisse paroisse nom f s 5.75 6.62 5.42 5.88 +paroisses paroisse nom f p 5.75 6.62 0.33 0.74 +paroissial paroissial adj m s 0.67 1.35 0.24 0.27 +paroissiale paroissial adj f s 0.67 1.35 0.38 0.61 +paroissiales paroissial adj f p 0.67 1.35 0 0.2 +paroissiaux paroissial adj m p 0.67 1.35 0.04 0.27 +paroissien paroissien nom m s 1.09 1.76 0.1 0.14 +paroissienne paroissien nom f s 1.09 1.76 0.02 0 +paroissiennes paroissien nom f p 1.09 1.76 0.04 0.2 +paroissiens paroissien nom m p 1.09 1.76 0.94 1.42 +parole parole nom f s 103.48 178.31 71.07 81.82 +paroles parole nom f p 103.48 178.31 32.41 96.49 +paroli paroli nom m s 0 0.07 0 0.07 +parolier parolier nom m s 0.07 0.07 0.06 0.07 +parolière parolier nom f s 0.07 0.07 0.01 0 +paronomasie paronomasie nom f s 0 0.07 0 0.07 +paros paros nom m 0.27 1.08 0.27 1.08 +parotidienne parotidien adj f s 0.01 0 0.01 0 +parousie parousie nom f s 0 0.27 0 0.27 +paroxysme paroxysme nom m s 0.27 3.24 0.27 3.18 +paroxysmes paroxysme nom m p 0.27 3.24 0 0.07 +paroxysmique paroxysmique adj f s 0.01 0.07 0.01 0 +paroxysmiques paroxysmique adj p 0.01 0.07 0 0.07 +paroxystique paroxystique adj s 0.01 0.2 0.01 0.14 +paroxystiques paroxystique adj m p 0.01 0.2 0 0.07 +parpaillot parpaillot nom m s 0 0.27 0 0.14 +parpaillote parpaillot nom f s 0 0.27 0 0.07 +parpaillotes parpaillot nom f p 0 0.27 0 0.07 +parpaing parpaing nom m s 0.64 1.42 0.22 0.2 +parpaings parpaing nom m p 0.64 1.42 0.42 1.22 +parquait parquer ver 0.41 2.36 0 0.14 ind:imp:3s; +parque parquer ver 0.41 2.36 0.06 0.14 imp:pre:2s;ind:pre:3s; +parquent parquer ver 0.41 2.36 0.14 0.14 ind:pre:3p; +parquer parquer ver 0.41 2.36 0.09 0.2 inf; +parquet parquet nom m s 4.43 22.43 4.12 18.51 +parquetage parquetage nom m s 0 0.14 0 0.14 +parqueteur parqueteur nom m s 0 0.14 0 0.07 +parqueteuse parqueteur nom f s 0 0.14 0 0.07 +parquets parquet nom m p 4.43 22.43 0.32 3.92 +parqueté parqueter ver m s 0 0.61 0 0.07 par:pas; +parquetée parqueter ver f s 0 0.61 0 0.47 par:pas; +parquetées parqueter ver f p 0 0.61 0 0.07 par:pas; +parquez parquer ver 0.41 2.36 0.02 0 imp:pre:2p; +parqué parquer ver m s 0.41 2.36 0.05 0.2 par:pas; +parquée parqué adj f s 0.01 0.14 0.01 0 +parquées parquer ver f p 0.41 2.36 0.02 0.2 par:pas; +parqués parquer ver m p 0.41 2.36 0.02 1.28 par:pas; +parr parr nom m s 0.12 0.14 0.12 0.14 +parrain parrain nom m s 10.37 7.64 9.76 7.5 +parrainage parrainage nom m s 0.11 0.14 0.11 0.14 +parrainait parrainer ver 0.96 0.27 0.04 0.14 ind:imp:3s; +parrainant parrainer ver 0.96 0.27 0.01 0.07 par:pre; +parraine parrainer ver 0.96 0.27 0.24 0 ind:pre:1s;ind:pre:3s; +parrainent parrainer ver 0.96 0.27 0.01 0 ind:pre:3p; +parrainer parrainer ver 0.96 0.27 0.26 0.07 inf; +parrainerai parrainer ver 0.96 0.27 0.01 0 ind:fut:1s; +parraineuse parraineur nom f s 0 0.07 0 0.07 +parrains parrain nom m p 10.37 7.64 0.61 0.14 +parrainé parrainer ver m s 0.96 0.27 0.33 0 par:pas; +parrainée parrainer ver f s 0.96 0.27 0.03 0 par:pas; +parrainés parrainer ver m p 0.96 0.27 0.03 0 par:pas; +parricide parricide nom s 0.56 0.2 0.56 0.2 +parricides parricide adj m p 0.01 0.14 0 0.14 +pars partir ver 1111.97 485.68 109.45 14.53 imp:pre:2s;ind:pre:1s;ind:pre:2s; +parsec parsec nom m s 0.27 0.07 0.01 0 +parsecs parsec nom m p 0.27 0.07 0.25 0.07 +parsemaient parsemer ver 0.35 7.36 0 0.68 ind:imp:3p; +parsemant parsemer ver 0.35 7.36 0.01 0.61 par:pre; +parsemer parsemer ver 0.35 7.36 0.01 0.07 inf; +parsemé parsemer ver m s 0.35 7.36 0.1 2.09 par:pas; +parsemée parsemer ver f s 0.35 7.36 0.19 1.76 par:pas; +parsemées parsemer ver f p 0.35 7.36 0 0.54 par:pas; +parsemés parsemer ver m p 0.35 7.36 0.01 0.88 par:pas; +parsi parsi adj m s 0.27 0 0.27 0 +parsis parsi nom m p 0.02 0.14 0 0.14 +parsème parsemer ver 0.35 7.36 0 0.14 ind:pre:3s; +parsèment parsemer ver 0.35 7.36 0.03 0.61 ind:pre:3p; +part part nom s 305.89 320.41 299.31 306.22 +part_time part_time nom f s 0 0.14 0 0.14 +partage partager ver 79.08 78.99 16.43 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +partagea partager ver 79.08 78.99 0.03 1.22 ind:pas:3s; +partageable partageable adj s 0.01 0.07 0.01 0.07 +partageai partager ver 79.08 78.99 0 0.41 ind:pas:1s; +partageaient partager ver 79.08 78.99 0.61 4.32 ind:imp:3p; +partageais partager ver 79.08 78.99 0.8 2.77 ind:imp:1s;ind:imp:2s; +partageait partager ver 79.08 78.99 1.74 11.62 ind:imp:3s; +partageant partager ver 79.08 78.99 0.57 2.03 par:pre; +partagent partager ver 79.08 78.99 3.44 3.11 ind:pre:3p; +partageons partager ver 79.08 78.99 3.48 1.15 imp:pre:1p;ind:pre:1p; +partager partager ver 79.08 78.99 34.05 24.93 inf; +partagera partager ver 79.08 78.99 1.42 0.14 ind:fut:3s; +partagerai partager ver 79.08 78.99 0.66 0.2 ind:fut:1s; +partageraient partager ver 79.08 78.99 0.15 0.41 cnd:pre:3p; +partagerais partager ver 79.08 78.99 0.61 0.47 cnd:pre:1s;cnd:pre:2s; +partagerait partager ver 79.08 78.99 0.33 0.54 cnd:pre:3s; +partageras partager ver 79.08 78.99 0.29 0 ind:fut:2s; +partagerez partager ver 79.08 78.99 0.42 0 ind:fut:2p; +partageriez partager ver 79.08 78.99 0.09 0 cnd:pre:2p; +partagerions partager ver 79.08 78.99 0.04 0.07 cnd:pre:1p; +partagerons partager ver 79.08 78.99 0.69 0.2 ind:fut:1p; +partageront partager ver 79.08 78.99 0.11 0.2 ind:fut:3p; +partages partager ver 79.08 78.99 1.63 0.14 ind:pre:2s; +partageur partageur adj m s 0.02 0.07 0.02 0 +partageurs partageur adj m p 0.02 0.07 0 0.07 +partageuse partageux adj f s 0.01 0.07 0.01 0.07 +partageux partageux nom m 0 0.07 0 0.07 +partagez partager ver 79.08 78.99 2.54 0.2 imp:pre:2p;ind:pre:2p; +partageâmes partager ver 79.08 78.99 0.02 0.07 ind:pas:1p; +partageât partager ver 79.08 78.99 0 0.47 sub:imp:3s; +partagiez partager ver 79.08 78.99 0.21 0 ind:imp:2p; +partagions partager ver 79.08 78.99 0.8 1.28 ind:imp:1p; +partagèrent partager ver 79.08 78.99 0.12 1.01 ind:pas:3p; +partagé partager ver m s 79.08 78.99 5.73 8.51 par:pas; +partagée partager ver f s 79.08 78.99 1.01 3.04 par:pas; +partagées partager ver f p 79.08 78.99 0.21 1.35 par:pas; +partagés partager ver m p 79.08 78.99 0.85 1.49 par:pas; +partaient partir ver 1111.97 485.68 1.58 11.62 ind:imp:3p; +partais partir ver 1111.97 485.68 6.69 5.41 ind:imp:1s;ind:imp:2s; +partait partir ver 1111.97 485.68 8.52 25.81 ind:imp:3s; +partance partance nom f s 0.77 1.76 0.77 1.76 +partant partir ver 1111.97 485.68 6.9 13.04 par:pre; +partante partant adj f s 5.07 1.82 1.25 0.2 +partantes partant adj f p 5.07 1.82 0.19 0.07 +partants partant adj m p 5.07 1.82 0.55 0.2 +parte partir ver 1111.97 485.68 22.87 7.84 sub:pre:1s;sub:pre:3s; +partenaire partenaire nom s 28.54 15 22.22 10.47 +partenaire_robot partenaire_robot nom s 0.01 0 0.01 0 +partenaires partenaire nom p 28.54 15 6.33 4.53 +partenariat partenariat nom m s 1.47 0.07 1.47 0.07 +partent partir ver 1111.97 485.68 14.19 8.45 ind:pre:3p; +parterre parterre nom m s 2.76 6.82 2.31 4.05 +parterres parterre nom m p 2.76 6.82 0.45 2.77 +partes partir ver 1111.97 485.68 7.5 0.95 sub:pre:2s; +partez partir ver 1111.97 485.68 73.82 6.62 imp:pre:2p;ind:pre:2p; +parthe parthe adj s 0 1.15 0 0.95 +parthes parthe adj p 0 1.15 0 0.2 +parthique parthique adj s 0 0.07 0 0.07 +parthénogenèse parthénogenèse nom f s 0.04 0.07 0.04 0.07 +parthénogénèse parthénogénèse nom f s 0 0.07 0 0.07 +parthénogénétique parthénogénétique adj m s 0.15 0 0.15 0 +parti partir ver m s 1111.97 485.68 162.93 58.72 par:pas; +partial partial adj m s 0.51 1.08 0.2 0.81 +partiale partial adj f s 0.51 1.08 0.3 0.2 +partiales partial adj f p 0.51 1.08 0 0.07 +partialité partialité nom f s 0.25 1.22 0.25 1.22 +partiaux partial adj m p 0.51 1.08 0.01 0 +participa participer ver 33.56 40.07 0.34 0.61 ind:pas:3s; +participai participer ver 33.56 40.07 0.1 0.54 ind:pas:1s; +participaient participer ver 33.56 40.07 0.21 2.36 ind:imp:3p; +participais participer ver 33.56 40.07 0.18 1.15 ind:imp:1s;ind:imp:2s; +participait participer ver 33.56 40.07 0.3 4.73 ind:imp:3s; +participant participer ver 33.56 40.07 0.38 1.22 par:pre; +participante participant nom f s 1.5 2.23 0.04 0 +participantes participant nom f p 1.5 2.23 0.04 0 +participants participant nom m p 1.5 2.23 1.23 1.96 +participation participation nom f s 3.17 8.58 3.11 8.51 +participations participation nom f p 3.17 8.58 0.05 0.07 +participative participatif adj f s 0.02 0 0.02 0 +participe participer ver 33.56 40.07 3.29 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +participent participer ver 33.56 40.07 1.47 2.57 ind:pre:3p; +participer participer ver 33.56 40.07 16.02 15.34 inf; +participera participer ver 33.56 40.07 0.49 0.2 ind:fut:3s; +participerai participer ver 33.56 40.07 0.38 0 ind:fut:1s; +participeraient participer ver 33.56 40.07 0.03 0.27 cnd:pre:3p; +participerais participer ver 33.56 40.07 0.09 0.07 cnd:pre:1s; +participerait participer ver 33.56 40.07 0.14 0.2 cnd:pre:3s; +participeras participer ver 33.56 40.07 0.16 0.07 ind:fut:2s; +participerez participer ver 33.56 40.07 0.09 0 ind:fut:2p; +participerons participer ver 33.56 40.07 0.34 0 ind:fut:1p; +participeront participer ver 33.56 40.07 0.13 0.27 ind:fut:3p; +participes participer ver 33.56 40.07 0.67 0 ind:pre:2s; +participez participer ver 33.56 40.07 1.25 0.07 imp:pre:2p;ind:pre:2p; +participiez participer ver 33.56 40.07 0.23 0.14 ind:imp:2p; +participions participer ver 33.56 40.07 0.1 0.27 ind:imp:1p; +participons participer ver 33.56 40.07 0.24 0.34 imp:pre:1p;ind:pre:1p; +participât participer ver 33.56 40.07 0 0.47 sub:imp:3s; +participèrent participer ver 33.56 40.07 0.01 0.2 ind:pas:3p; +participé participer ver m s 33.56 40.07 6.94 5.07 par:pas; +participés participer ver m p 33.56 40.07 0.01 0 par:pas; +particularisme particularisme nom m s 0 0.41 0 0.14 +particularismes particularisme nom m p 0 0.41 0 0.27 +particularisées particulariser ver f p 0 0.07 0 0.07 par:pas; +particularité particularité nom f s 1.16 5 0.82 2.5 +particularités particularité nom f p 1.16 5 0.34 2.5 +particule particule nom f s 3.46 5.27 0.66 2.03 +particules particule nom f p 3.46 5.27 2.8 3.24 +particulier particulier adj m s 24.91 53.99 13.88 23.65 +particuliers particulier adj m p 24.91 53.99 3.07 6.08 +particulière particulier adj f s 24.91 53.99 6.63 20 +particulièrement particulièrement adv 14.78 36.62 14.78 36.62 +particulières particulier adj f p 24.91 53.99 1.33 4.26 +partie partie nom f s 191.19 211.49 177.81 187.97 +partiel partiel adj m s 3.33 2.09 1.19 0.88 +partielle partiel adj f s 3.33 2.09 1.67 0.81 +partiellement partiellement adv 1.03 2.97 1.03 2.97 +partielles partiel adj f p 3.33 2.09 0.41 0.27 +partiels partiel nom m p 1.16 0.27 0.81 0 +parties partie nom f p 191.19 211.49 13.39 23.51 +partiez partir ver 1111.97 485.68 5.93 1.42 ind:imp:2p;sub:pre:2p; +partions partir ver 1111.97 485.68 2.24 4.73 ind:imp:1p; +partir partir ver 1111.97 485.68 388.25 167.77 inf; +partira partir ver 1111.97 485.68 12.15 3.18 ind:fut:3s; +partirai partir ver 1111.97 485.68 11.98 3.99 ind:fut:1s; +partiraient partir ver 1111.97 485.68 0.61 0.81 cnd:pre:3p; +partirais partir ver 1111.97 485.68 3.12 2.3 cnd:pre:1s;cnd:pre:2s; +partirait partir ver 1111.97 485.68 2.37 5.47 cnd:pre:3s; +partiras partir ver 1111.97 485.68 4.25 1.01 ind:fut:2s; +partirent partir ver 1111.97 485.68 1.11 5.2 ind:pas:3p; +partirez partir ver 1111.97 485.68 3.31 0.88 ind:fut:2p; +partiriez partir ver 1111.97 485.68 0.27 0.14 cnd:pre:2p; +partirions partir ver 1111.97 485.68 0.34 0.47 cnd:pre:1p; +partirons partir ver 1111.97 485.68 4.76 1.82 ind:fut:1p; +partiront partir ver 1111.97 485.68 1.84 0.61 ind:fut:3p; +partis partir ver m p 1111.97 485.68 46.29 29.66 ind:pas:1s;ind:pas:2s;par:pas; +partisan partisan nom m s 4.75 12.97 1.04 1.69 +partisane partisan adj f s 1.35 2.77 0.2 0.34 +partisanes partisan adj f p 1.35 2.77 0.1 0.2 +partisans partisan nom m p 4.75 12.97 3.7 11.15 +partisse partir ver 1111.97 485.68 0 0.07 sub:imp:1s; +partissent partir ver 1111.97 485.68 0 0.07 sub:imp:3p; +partit partir ver 1111.97 485.68 4.17 28.78 ind:pas:3s; +partita partita nom f s 0 0.2 0 0.14 +partitas partita nom f p 0 0.2 0 0.07 +partitif partitif adj m s 0 0.07 0 0.07 +partition partition nom f s 3.49 5.95 2.88 3.72 +partitions partition nom f p 3.49 5.95 0.61 2.23 +partner partner nom m s 0.26 0 0.26 0 +partons partir ver 1111.97 485.68 50.52 7.97 imp:pre:1p;ind:pre:1p;;imp:pre:1p;ind:pre:1p; +partouse partouse nom f s 0.11 0.07 0.11 0.07 +partouser partouser ver 0.01 0 0.01 0 inf; +partout partout adv_sup 141.94 179.39 141.94 179.39 +partouzait partouzer ver 0.17 0.34 0 0.14 ind:imp:3s; +partouzarde partouzard adj f s 0 0.2 0 0.07 +partouzardes partouzard adj f p 0 0.2 0 0.07 +partouzards partouzard nom m p 0.01 0 0.01 0 +partouze partouze nom f s 2.33 2.16 1.95 1.28 +partouzent partouzer ver 0.17 0.34 0.14 0.07 ind:pre:3p; +partouzer partouzer ver 0.17 0.34 0.04 0.14 inf; +partouzes partouze nom f p 2.33 2.16 0.38 0.88 +partouzeur partouzeur nom m s 0 0.2 0 0.14 +partouzeurs partouzeur nom m p 0 0.2 0 0.07 +parts part nom f p 305.89 320.41 6.58 14.19 +parturiente parturiente nom f s 0 0.34 0 0.27 +parturientes parturiente nom f p 0 0.34 0 0.07 +parturition parturition nom f s 0.01 0.27 0.01 0.14 +parturitions parturition nom f p 0.01 0.27 0 0.14 +party party nom f s 1.54 0.81 1.54 0.81 +partîmes partir ver 1111.97 485.68 0.26 1.76 ind:pas:1p; +partît partir ver 1111.97 485.68 0 0.47 sub:imp:3s; +paru paraître ver m s 122.14 448.11 5.92 34.12 par:pas; +parue paraître ver f s 122.14 448.11 0.36 0.61 par:pas; +parure parure nom f s 1 4.05 0.48 2.7 +parurent paraître ver 122.14 448.11 0.11 7.36 ind:pas:3p; +parures parure nom f p 1 4.05 0.52 1.35 +parus paraître ver m p 122.14 448.11 0.23 0.54 ind:pas:1s;ind:pas:2s;par:pas; +parussent paraître ver 122.14 448.11 0 0.34 sub:imp:3p; +parut paraître ver 122.14 448.11 1.48 71.28 ind:pas:3s; +parution parution nom f s 0.36 1.15 0.36 1.15 +parvenaient parvenir ver 22.73 156.42 0.04 10.68 ind:imp:3p; +parvenais parvenir ver 22.73 156.42 0.3 5.07 ind:imp:1s; +parvenait parvenir ver 22.73 156.42 0.48 25.88 ind:imp:3s; +parvenant parvenir ver 22.73 156.42 0.04 3.65 par:pre; +parvenez parvenir ver 22.73 156.42 0.48 0.2 ind:pre:2p; +parveniez parvenir ver 22.73 156.42 0.07 0.07 ind:imp:2p; +parvenions parvenir ver 22.73 156.42 0.03 0.61 ind:imp:1p; +parvenir parvenir ver 22.73 156.42 6.45 22.7 inf; +parvenons parvenir ver 22.73 156.42 0.52 0.68 imp:pre:1p;ind:pre:1p; +parvenu parvenir ver m s 22.73 156.42 2.63 14.93 par:pas; +parvenue parvenir ver f s 22.73 156.42 0.98 4.53 par:pas; +parvenues parvenir ver f p 22.73 156.42 0.29 1.22 par:pas; +parvenus parvenir ver m p 22.73 156.42 0.81 5.2 par:pas; +parviendra parvenir ver 22.73 156.42 0.8 1.22 ind:fut:3s; +parviendrai parvenir ver 22.73 156.42 0.41 0.54 ind:fut:1s; +parviendraient parvenir ver 22.73 156.42 0 0.54 cnd:pre:3p; +parviendrais parvenir ver 22.73 156.42 0.01 0.61 cnd:pre:1s; +parviendrait parvenir ver 22.73 156.42 0.27 3.18 cnd:pre:3s; +parviendras parvenir ver 22.73 156.42 0.12 0.14 ind:fut:2s; +parviendrez parvenir ver 22.73 156.42 0.34 0.07 ind:fut:2p; +parviendrions parvenir ver 22.73 156.42 0 0.2 cnd:pre:1p; +parviendrons parvenir ver 22.73 156.42 0.33 0.27 ind:fut:1p; +parviendront parvenir ver 22.73 156.42 0.24 0.54 ind:fut:3p; +parvienne parvenir ver 22.73 156.42 0.62 2.57 sub:pre:1s;sub:pre:3s; +parviennent parvenir ver 22.73 156.42 0.98 6.22 ind:pre:3p; +parviens parvenir ver 22.73 156.42 1.71 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +parvient parvenir ver 22.73 156.42 2.52 12.36 ind:pre:3s; +parvinrent parvenir ver 22.73 156.42 0.04 3.38 ind:pas:3p; +parvins parvenir ver 22.73 156.42 0.24 2.3 ind:pas:1s; +parvinssent parvenir ver 22.73 156.42 0 0.14 sub:imp:3p; +parvint parvenir ver 22.73 156.42 0.98 19.39 ind:pas:3s; +parvis parvis nom m 0.19 6.28 0.19 6.28 +parvînmes parvenir ver 22.73 156.42 0 0.47 ind:pas:1p; +parvînt parvenir ver 22.73 156.42 0.01 1.01 sub:imp:3s; +parâtre parâtre nom m s 0.02 0 0.02 0 +paré parer ver m s 30.5 19.66 3.62 2.57 par:pas; +parée parer ver f s 30.5 19.66 1.21 2.43 par:pas; +parées parer ver f p 30.5 19.66 0.19 1.08 par:pas; +parégorique parégorique adj s 0.04 0.34 0.04 0.34 +paréo paréo nom m s 0.01 0.47 0.01 0.2 +paréos paréo nom m p 0.01 0.47 0 0.27 +parés parer ver m p 30.5 19.66 2.31 1.62 par:pas; +parésie parésie nom f s 0.01 0 0.01 0 +parût paraître ver 122.14 448.11 0 4.46 sub:imp:3s; +pas pas adv_sup 18188.15 8795.14 18188.15 8795.14 +pas_de_porte pas_de_porte nom m 0 0.2 0 0.2 +pas_je pas_je adv 0.01 0 0.01 0 +pascal pascal adj m s 0.79 18.24 0.23 17.64 +pascale pascal adj f s 0.79 18.24 0.56 0.41 +pascales pascal adj f p 0.79 18.24 0 0.2 +pascalien pascalien adj m s 0 0.27 0 0.07 +pascaliennes pascalien adj f p 0 0.27 0 0.14 +pascaliens pascalien adj m p 0 0.27 0 0.07 +paseo paseo nom m s 0 0.88 0 0.88 +pasionaria pasionaria nom f s 0.12 0.27 0.02 0.2 +pasionarias pasionaria nom f p 0.12 0.27 0.1 0.07 +paso paso nom m s 0.23 0.14 0.23 0 +paso_doble paso_doble nom m 0.69 0.81 0.69 0.81 +paso_doble paso_doble nom m s 0 0.07 0 0.07 +pasos paso nom m p 0.23 0.14 0 0.14 +pasque pasque con 0.05 1.69 0.05 1.69 +pasquins pasquin nom m p 0 0.07 0 0.07 +passa passer ver 1495.49 1165.27 3.79 82.5 ind:pas:3s; +passable passable adj s 0.36 1.15 0.34 1.01 +passablement passablement adv 0.51 3.72 0.51 3.72 +passables passable adj f p 0.36 1.15 0.02 0.14 +passade passade nom f s 0.82 1.28 0.72 0.95 +passades passade nom f p 0.82 1.28 0.1 0.34 +passage passage nom m s 44.73 154.39 40.2 136.82 +passager passager nom m s 19.41 13.24 3.75 3.24 +passagers passager nom m p 19.41 13.24 14.23 8.31 +passages passage nom m p 44.73 154.39 4.53 17.57 +passagère passager adj f s 5.09 6.82 1.69 3.31 +passagèrement passagèrement adv 0 0.74 0 0.74 +passagères passager adj f p 5.09 6.82 0.25 0.74 +passai passer ver 1495.49 1165.27 0.25 10.74 ind:pas:1s; +passaient passer ver 1495.49 1165.27 3.44 42.23 ind:imp:3p; +passais passer ver 1495.49 1165.27 13.12 13.92 ind:imp:1s;ind:imp:2s; +passait passer ver 1495.49 1165.27 28.5 131.28 ind:imp:3s; +passant passer ver 1495.49 1165.27 10.91 60.88 par:pre; +passante passant nom f s 2.76 32.57 0.27 1.08 +passantes passant nom f p 2.76 32.57 0.01 0.61 +passants passant nom m p 2.76 32.57 1.82 24.39 +passas passer ver 1495.49 1165.27 0 0.14 ind:pas:2s; +passation passation nom f s 0.29 0.34 0.29 0.34 +passavant passavant nom m s 0.44 0 0.44 0 +passe passer ver 1495.49 1165.27 523.58 185.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +passe_boule passe_boule nom m s 0 0.07 0 0.07 +passe_boules passe_boules nom m 0 0.07 0 0.07 +passe_crassane passe_crassane nom f 0 0.14 0 0.14 +passe_droit passe_droit nom m s 0.25 0.47 0.08 0.27 +passe_droit passe_droit nom m p 0.25 0.47 0.17 0.2 +passe_la_moi passe_la_moi nom f s 0.35 0.07 0.35 0.07 +passe_lacet passe_lacet nom m s 0 0.2 0 0.07 +passe_lacet passe_lacet nom m p 0 0.2 0 0.14 +passe_montagne passe_montagne nom m s 0.41 1.69 0.39 1.35 +passe_montagne passe_montagne nom m p 0.41 1.69 0.02 0.34 +passe_muraille passe_muraille nom m 0.01 0.07 0.01 0.07 +passe_partout passe_partout nom m 0.45 1.22 0.45 1.22 +passe_passe passe_passe nom m 0.97 1.15 0.97 1.15 +passe_pied passe_pied nom m s 0 0.07 0 0.07 +passe_plat passe_plat nom m s 0.04 0.14 0.04 0.14 +passe_rose passe_rose nom f p 0 0.07 0 0.07 +passe_temps passe_temps nom m 4.21 2.77 4.21 2.77 +passement passement nom m s 0.14 0.07 0.14 0.07 +passementaient passementer ver 0.01 0.2 0 0.14 ind:imp:3p; +passementent passementer ver 0.01 0.2 0 0.07 ind:pre:3p; +passementerie passementerie nom f s 0.01 1.01 0.01 0.74 +passementeries passementerie nom f p 0.01 1.01 0 0.27 +passementier passementier nom m s 0.1 0.14 0.1 0.07 +passementière passementier nom f s 0.1 0.14 0 0.07 +passementé passementer ver m s 0.01 0.2 0.01 0 par:pas; +passent passer ver 1495.49 1165.27 27.56 37.91 ind:pre:3p;sub:pre:3p; +passepoil passepoil nom m s 0.01 0.14 0.01 0.14 +passeport passeport nom m s 25.55 10 19.81 7.16 +passeports passeport nom m p 25.55 10 5.75 2.84 +passer passer ver 1495.49 1165.27 345.68 288.78 inf;;inf;;inf;; +passera passer ver 1495.49 1165.27 39.92 13.99 ind:fut:3s; +passerai passer ver 1495.49 1165.27 15.96 4.39 ind:fut:1s; +passeraient passer ver 1495.49 1165.27 1.19 3.51 cnd:pre:3p; +passerais passer ver 1495.49 1165.27 3.77 2.91 cnd:pre:1s;cnd:pre:2s; +passerait passer ver 1495.49 1165.27 7.09 12.36 cnd:pre:3s; +passeras passer ver 1495.49 1165.27 4.39 1.15 ind:fut:2s; +passereau passereau nom m s 0.55 0.95 0.25 0.34 +passereaux passereau nom m p 0.55 0.95 0.3 0.61 +passerelle passerelle nom f s 4.49 11.49 4.41 8.45 +passerelles passerelle nom f p 4.49 11.49 0.09 3.04 +passerez passer ver 1495.49 1165.27 5.1 1.82 ind:fut:2p; +passeriez passer ver 1495.49 1165.27 0.97 0.2 cnd:pre:2p; +passerions passer ver 1495.49 1165.27 0.22 0.34 cnd:pre:1p; +passerons passer ver 1495.49 1165.27 2.32 2.3 ind:fut:1p; +passeront passer ver 1495.49 1165.27 3.58 1.96 ind:fut:3p; +passeroses passerose nom f p 0 0.07 0 0.07 +passes passer ver 1495.49 1165.27 21.65 4.39 ind:pre:2s;sub:pre:2s; +passeur passeur nom m s 2.24 2.77 1.65 1.96 +passeurs passeur nom m p 2.24 2.77 0.56 0.74 +passeuse passeur nom f s 2.24 2.77 0.04 0.07 +passez passer ver 1495.49 1165.27 52.84 6.62 imp:pre:2p;ind:pre:2p; +passible passible adj m s 1.04 0.61 0.82 0.34 +passibles passible adj m p 1.04 0.61 0.22 0.27 +passiez passer ver 1495.49 1165.27 2.19 1.08 ind:imp:2p;sub:pre:2p; +passif passif adj m s 4 7.23 1.89 1.82 +passiflore passiflore nom f s 0.14 0.07 0.14 0.07 +passifs passif adj m p 4 7.23 0.36 0.74 +passim passim adv 0 0.07 0 0.07 +passing passing nom m s 0.04 0 0.04 0 +passion passion nom f s 33.78 87.64 30.71 68.72 +passionna passionner ver 5.75 17.5 0.01 0.2 ind:pas:3s; +passionnai passionner ver 5.75 17.5 0 0.27 ind:pas:1s; +passionnaient passionner ver 5.75 17.5 0.12 0.27 ind:imp:3p; +passionnais passionner ver 5.75 17.5 0 0.34 ind:imp:1s;ind:imp:2s; +passionnait passionner ver 5.75 17.5 0.11 2.57 ind:imp:3s; +passionnant passionnant adj m s 8.93 7.03 6.17 4.19 +passionnante passionnant adj f s 8.93 7.03 2.23 1.42 +passionnantes passionnant adj f p 8.93 7.03 0.3 0.95 +passionnants passionnant adj m p 8.93 7.03 0.23 0.47 +passionne passionner ver 5.75 17.5 1.16 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +passionnel passionnel adj m s 1.43 3.92 1.05 1.89 +passionnelle passionnel adj f s 1.43 3.92 0.13 1.08 +passionnellement passionnellement adv 0 0.07 0 0.07 +passionnelles passionnel adj f p 1.43 3.92 0.02 0.34 +passionnels passionnel adj m p 1.43 3.92 0.22 0.61 +passionnent passionner ver 5.75 17.5 0.34 0.68 ind:pre:3p; +passionner passionner ver 5.75 17.5 0.41 1.76 inf; +passionnera passionner ver 5.75 17.5 0.01 0.14 ind:fut:3s; +passionnerait passionner ver 5.75 17.5 0.03 0.07 cnd:pre:3s; +passionneras passionner ver 5.75 17.5 0.01 0 ind:fut:2s; +passionnons passionner ver 5.75 17.5 0 0.14 ind:pre:1p; +passionnèrent passionner ver 5.75 17.5 0 0.14 ind:pas:3p; +passionné passionner ver m s 5.75 17.5 1.84 3.58 par:pas; +passionnée passionné adj f s 4.14 14.8 1.44 5.74 +passionnées passionné adj f p 4.14 14.8 0.24 2.09 +passionnément passionnément adv 1.38 9.39 1.38 9.39 +passionnés passionné adj m p 4.14 14.8 0.7 2.03 +passions passion nom f p 33.78 87.64 3.07 18.92 +passive passif adj f s 4 7.23 1.73 4.32 +passivement passivement adv 0.29 1.08 0.29 1.08 +passiver passiver ver 0.14 0.27 0.14 0 inf; +passives passif adj f p 4 7.23 0.03 0.34 +passiveté passiveté nom f s 0 0.07 0 0.07 +passivité passivité nom f s 0.46 3.38 0.46 3.38 +passoire passoire nom f s 1.44 2.23 1.27 2.09 +passoires passoire nom f p 1.44 2.23 0.17 0.14 +passons passer ver 1495.49 1165.27 17.85 9.66 imp:pre:1p;ind:pre:1p; +passâmes passer ver 1495.49 1165.27 0.46 3.85 ind:pas:1p; +passât passer ver 1495.49 1165.27 0 1.35 sub:imp:3s; +passâtes passer ver 1495.49 1165.27 0 0.07 ind:pas:2p; +passèrent passer ver 1495.49 1165.27 2.13 20.07 ind:pas:3p; +passé passer ver m s 1495.49 1165.27 297.63 157.09 par:pas;par:pas;par:pas;par:pas; +passée passer ver f s 1495.49 1165.27 32.14 25.68 par:pas; +passées passer ver f p 1495.49 1165.27 7.98 11.89 par:pas; +passéiste passéiste adj f s 0.16 0.07 0.16 0.07 +passés passer ver m p 1495.49 1165.27 18.16 18.18 par:pas; +past past nom m s 0.58 0 0.58 0 +pastaga pastaga nom m s 0 1.69 0 1.35 +pastagas pastaga nom m p 0 1.69 0 0.34 +pastel pastel nom m s 0.55 1.89 0.4 1.01 +pastels pastel nom m p 0.55 1.89 0.14 0.88 +pastenague pastenague nom f s 0.04 0 0.04 0 +pasteur pasteur nom m s 17.74 11.35 16.61 10.07 +pasteurella pasteurella nom f s 0.02 0 0.02 0 +pasteurisation pasteurisation nom f s 0.1 0.14 0.1 0.14 +pasteuriser pasteuriser ver 0 0.07 0 0.07 inf; +pasteurisé pasteurisé adj m s 0.05 0.41 0.05 0.14 +pasteurisée pasteurisé adj f s 0.05 0.41 0 0.2 +pasteurisés pasteurisé adj m p 0.05 0.41 0 0.07 +pasteurs pasteur nom m p 17.74 11.35 1.13 1.28 +pasticha pasticher ver 0 0.41 0 0.07 ind:pas:3s; +pastichai pasticher ver 0 0.41 0 0.07 ind:pas:1s; +pastichait pasticher ver 0 0.41 0 0.07 ind:imp:3s; +pastiche pastiche nom m s 0.03 1.01 0.03 0.68 +pasticher pasticher ver 0 0.41 0 0.14 inf; +pastiches pastiche nom m p 0.03 1.01 0 0.34 +pasticheur pasticheur nom m s 0 0.14 0 0.14 +pastiché pasticher ver m s 0 0.41 0 0.07 par:pas; +pastille pastille nom f s 1.51 5.81 0.56 1.35 +pastiller pastiller ver 0.01 0 0.01 0 inf; +pastilles pastille nom f p 1.51 5.81 0.95 4.46 +pastis pastis nom m 1.43 4.73 1.43 4.73 +pastophore pastophore nom m s 0 0.14 0 0.14 +pastoral pastoral adj m s 0.57 1.08 0.14 0.27 +pastorale pastoral adj f s 0.57 1.08 0.33 0.54 +pastorales pastoral adj f p 0.57 1.08 0.1 0.2 +pastoraux pastoral adj m p 0.57 1.08 0 0.07 +pastour pastour nom m s 0 0.07 0 0.07 +pastoureau pastoureau nom m s 0.02 0.41 0.02 0.14 +pastoureaux pastoureau nom m p 0.02 0.41 0 0.07 +pastourelle pastoureau nom f s 0.02 0.41 0 0.07 +pastourelles pastoureau nom f p 0.02 0.41 0 0.14 +pastèque pastèque nom f s 4.16 2.5 2.39 1.62 +pastèques pastèque nom f p 4.16 2.5 1.77 0.88 +pat pat adj m s 0.46 0.34 0.46 0.34 +patache patache nom f s 0.3 0.2 0.3 0.2 +patachon patachon nom m s 0.16 0.54 0.16 0.54 +patafiole patafioler ver 0.04 0 0.04 0 imp:pre:2s; +patagon patagon adj m s 0.01 0.07 0.01 0.07 +patagonien patagonien adj m s 0.02 0.07 0.02 0.07 +patagons patagon nom m p 0 0.07 0 0.07 +patapouf patapouf ono 0.03 0 0.03 0 +patapoufs patapouf nom m p 0.17 0.34 0 0.07 +pataquès pataquès nom m 0.02 0.34 0.02 0.34 +patarin patarin nom m s 0 0.14 0 0.14 +patata patata ono 0.32 1.15 0.32 1.15 +patate patate nom f s 14.47 10.74 4.59 3.38 +patates patate nom f p 14.47 10.74 9.88 7.36 +patati patati ono 0.33 1.76 0.33 1.76 +patatras patatras ono 0.04 0.54 0.04 0.54 +pataud pataud adj m s 0.03 1.35 0.01 0.34 +pataude pataud adj f s 0.03 1.35 0.01 0.41 +pataudes pataud adj f p 0.03 1.35 0 0.34 +patauds pataud adj m p 0.03 1.35 0.01 0.27 +pataugas pataugas nom m 0 0.68 0 0.68 +patauge patauger ver 1.69 8.99 0.42 1.35 ind:pre:1s;ind:pre:3s; +pataugea patauger ver 1.69 8.99 0 0.41 ind:pas:3s; +pataugeaient patauger ver 1.69 8.99 0.01 0.81 ind:imp:3p; +pataugeais patauger ver 1.69 8.99 0.02 0.07 ind:imp:1s; +pataugeait patauger ver 1.69 8.99 0.18 0.74 ind:imp:3s; +pataugeant patauger ver 1.69 8.99 0.03 1.96 par:pre; +pataugent patauger ver 1.69 8.99 0.32 0.54 ind:pre:3p; +pataugeoire pataugeoire nom f s 0.04 0 0.04 0 +pataugeons patauger ver 1.69 8.99 0.04 0.34 imp:pre:1p;ind:pre:1p; +patauger patauger ver 1.69 8.99 0.48 1.89 inf; +pataugera patauger ver 1.69 8.99 0.01 0 ind:fut:3s; +pataugerais patauger ver 1.69 8.99 0.01 0 cnd:pre:1s; +pataugerons patauger ver 1.69 8.99 0 0.07 ind:fut:1p; +patauges patauger ver 1.69 8.99 0.04 0.07 ind:pre:2s; +pataugez patauger ver 1.69 8.99 0.06 0.14 imp:pre:2p;ind:pre:2p; +pataugis pataugis nom m 0 0.07 0 0.07 +pataugèrent patauger ver 1.69 8.99 0 0.14 ind:pas:3p; +pataugé patauger ver m s 1.69 8.99 0.05 0.47 par:pas; +patch patch nom m s 1.11 0.14 0.88 0.07 +patches patch nom m p 1.11 0.14 0.02 0.07 +patchouli patchouli nom m s 0.31 0.2 0.31 0.2 +patchs patch nom m p 1.11 0.14 0.22 0 +patchwork patchwork nom m s 0 0.61 0 0.61 +patelin patelin nom m s 1.62 3.51 1.56 3.31 +pateline patelin adj f s 0.63 0.47 0.01 0.07 +patelins patelin nom m p 1.62 3.51 0.05 0.2 +patellaire patellaire adj m s 0.01 0 0.01 0 +patelles patelle nom f p 0 0.27 0 0.27 +patent patent adj m s 0.41 1.28 0.14 0.54 +patente patent adj f s 0.41 1.28 0.14 0.54 +patentes patente nom f p 0.16 0.41 0.02 0.14 +patents patent adj m p 0.41 1.28 0.11 0.07 +patenté patenté adj m s 0.2 1.42 0.14 0.61 +patentée patenté adj f s 0.2 1.42 0.01 0 +patentées patenté adj f p 0.2 1.42 0 0.2 +patentés patenté adj m p 0.2 1.42 0.04 0.61 +patenôtres patenôtre nom f p 0 0.41 0 0.41 +pater pater nom m 0.56 1.62 0.56 1.62 +pater_familias pater_familias nom m 0.03 0.07 0.03 0.07 +pater_noster pater_noster nom m s 0.1 0.41 0.1 0.41 +paternalisme paternalisme nom m s 0.12 0.74 0.12 0.74 +paternaliste paternaliste adj s 0.17 0.27 0.16 0.2 +paternalistes paternaliste adj p 0.17 0.27 0.01 0.07 +paterne paterne adj m s 0 0.47 0 0.47 +paternel paternel adj m s 3.29 13.92 1.33 5 +paternelle paternel adj f s 3.29 13.92 1.48 6.82 +paternellement paternellement adv 0.01 0.54 0.01 0.54 +paternelles paternel adj f p 3.29 13.92 0.16 0.88 +paternels paternel adj m p 3.29 13.92 0.32 1.22 +paternité paternité nom f s 1.98 3.11 1.97 3.04 +paternités paternité nom f p 1.98 3.11 0.01 0.07 +pathogène pathogène adj s 0.58 0.14 0.58 0.14 +pathogénique pathogénique adj m s 0.01 0 0.01 0 +pathologie pathologie nom f s 1.58 0.2 1.58 0.2 +pathologique pathologique adj s 1.26 1.22 1.05 1.08 +pathologiquement pathologiquement adv 0.08 0.14 0.08 0.14 +pathologiques pathologique adj m p 1.26 1.22 0.21 0.14 +pathologiste pathologiste nom s 0.29 0.07 0.29 0.07 +pathos pathos nom m 0.38 0.68 0.38 0.68 +pathétique pathétique adj s 9.17 11.08 7.92 8.18 +pathétiquement pathétiquement adv 0.05 0.41 0.05 0.41 +pathétiques pathétique adj p 9.17 11.08 1.25 2.91 +pathétisme pathétisme nom m s 0.01 0.14 0.01 0.14 +patibulaire patibulaire adj s 0.03 1.96 0.01 0.95 +patibulaires patibulaire adj p 0.03 1.96 0.02 1.01 +patiemment patiemment adv 1.75 11.15 1.75 11.15 +patience patience nom f s 30.68 33.58 29.93 32.97 +patiences patience nom f p 30.68 33.58 0.75 0.61 +patient patient nom m s 61.69 10 29.58 4.05 +patienta patienter ver 10.1 8.45 0.01 0.2 ind:pas:3s; +patientai patienter ver 10.1 8.45 0 0.07 ind:pas:1s; +patientaient patienter ver 10.1 8.45 0 0.34 ind:imp:3p; +patientait patienter ver 10.1 8.45 0.03 0.68 ind:imp:3s; +patientant patienter ver 10.1 8.45 0.01 0.07 par:pre; +patiente patient nom f s 61.69 10 7.69 2.16 +patientent patienter ver 10.1 8.45 0.04 0.14 ind:pre:3p; +patienter patienter ver 10.1 8.45 4.71 4.66 inf; +patientera patienter ver 10.1 8.45 0.05 0 ind:fut:3s; +patienteraient patienter ver 10.1 8.45 0 0.07 cnd:pre:3p; +patienterait patienter ver 10.1 8.45 0 0.07 cnd:pre:3s; +patienteras patienter ver 10.1 8.45 0 0.07 ind:fut:2s; +patienterez patienter ver 10.1 8.45 0.23 0.07 ind:fut:2p; +patienterons patienter ver 10.1 8.45 0.01 0 ind:fut:1p; +patientes patient nom f p 61.69 10 1.94 0.27 +patientez patienter ver 10.1 8.45 2.82 0.47 imp:pre:2p;ind:pre:2p; +patientions patienter ver 10.1 8.45 0 0.07 ind:imp:1p; +patientons patienter ver 10.1 8.45 0.14 0.07 imp:pre:1p;ind:pre:1p; +patients patient nom m p 61.69 10 22.49 3.51 +patientèrent patienter ver 10.1 8.45 0.01 0.07 ind:pas:3p; +patienté patienter ver m s 10.1 8.45 0.54 0.27 par:pas; +patin patin nom m s 3.77 5.61 1.12 1.35 +patina patiner ver 2.54 5.27 0.02 0.07 ind:pas:3s; +patinage patinage nom m s 1.25 0.07 1.25 0.07 +patinaient patiner ver 2.54 5.27 0 0.34 ind:imp:3p; +patinais patiner ver 2.54 5.27 0.15 0 ind:imp:1s; +patinait patiner ver 2.54 5.27 0.06 0.74 ind:imp:3s; +patinant patiner ver 2.54 5.27 0.01 0.2 par:pre; +patine patiner ver 2.54 5.27 0.36 0.34 ind:pre:1s;ind:pre:3s; +patinent patiner ver 2.54 5.27 0.16 0.41 ind:pre:3p; +patiner patiner ver 2.54 5.27 1.26 0.27 inf; +patinerais patiner ver 2.54 5.27 0.02 0 cnd:pre:1s;cnd:pre:2s; +patinerons patiner ver 2.54 5.27 0 0.07 ind:fut:1p; +patines patiner ver 2.54 5.27 0.03 0 ind:pre:2s; +patinette patinette nom f s 0.02 0.27 0.01 0.2 +patinettes patinette nom f p 0.02 0.27 0.01 0.07 +patineur patineur nom m s 0.83 1.28 0.11 0.34 +patineurs patineur nom m p 0.83 1.28 0.27 0.74 +patineuse patineur nom f s 0.83 1.28 0.29 0.14 +patineuses patineur nom f p 0.83 1.28 0.16 0.07 +patinez patiner ver 2.54 5.27 0.1 0 imp:pre:2p;ind:pre:2p; +patiniez patiner ver 2.54 5.27 0.02 0 ind:imp:2p; +patinions patiner ver 2.54 5.27 0 0.07 ind:imp:1p; +patinoire patinoire nom f s 1.37 0.41 1.21 0.41 +patinoires patinoire nom f p 1.37 0.41 0.16 0 +patinons patiner ver 2.54 5.27 0.03 0 imp:pre:1p;ind:pre:1p; +patins patin nom m p 3.77 5.61 2.65 4.26 +patiné patiner ver m s 2.54 5.27 0.27 1.01 par:pas; +patinée patiner ver f s 2.54 5.27 0.01 0.54 par:pas; +patinées patiner ver f p 2.54 5.27 0.02 0.68 par:pas; +patinés patiner ver m p 2.54 5.27 0.01 0.54 par:pas; +patio patio nom m s 2.02 6.42 2.02 4.46 +patios patio nom m p 2.02 6.42 0 1.96 +patoche patoche nom f s 0.01 0.14 0.01 0.07 +patoches patoche nom f p 0.01 0.14 0 0.07 +patois patois nom m 0.85 8.58 0.85 8.58 +patoisante patoisant adj f s 0 0.14 0 0.14 +patoise patoiser ver 0 0.07 0 0.07 ind:pre:3s; +patouillard patouillard nom m s 0 0.07 0 0.07 +patouille patouiller ver 0.03 0.14 0.03 0.07 imp:pre:2s;ind:pre:3s; +patouillons patouiller ver 0.03 0.14 0 0.07 ind:pre:1p; +patraque patraque adj s 0.97 0.81 0.97 0.81 +patri patri adv 0.15 0.07 0.15 0.07 +patriarcal patriarcal adj m s 0.34 1.01 0.04 0.41 +patriarcale patriarcal adj f s 0.34 1.01 0.29 0.27 +patriarcales patriarcal adj f p 0.34 1.01 0.01 0.2 +patriarcat patriarcat nom m s 0.15 0.34 0.15 0.27 +patriarcats patriarcat nom m p 0.15 0.34 0 0.07 +patriarcaux patriarcal adj m p 0.34 1.01 0 0.14 +patriarche patriarche nom m s 1.3 4.59 1.04 4.12 +patriarches patriarche nom m p 1.3 4.59 0.26 0.47 +patriarchie patriarchie nom f s 0.02 0 0.02 0 +patriciat patriciat nom m s 0 0.07 0 0.07 +patricien patricien nom m s 0.21 0.54 0.05 0.2 +patricienne patricien nom f s 0.21 0.54 0.1 0 +patriciennes patricien adj f p 0.05 0.88 0.01 0.34 +patriciens patricien nom m p 0.21 0.54 0.06 0.27 +patrie patrie nom f s 23.36 29.19 23.36 28.65 +patries patrie nom f p 23.36 29.19 0 0.54 +patrilinéaire patrilinéaire adj f s 0 0.07 0 0.07 +patrimoine patrimoine nom m s 2.34 2.97 2.19 2.91 +patrimoines patrimoine nom m p 2.34 2.97 0.15 0.07 +patrimonial patrimonial adj m s 0 0.34 0 0.34 +patriotard patriotard adj m s 0 0.34 0 0.27 +patriotardes patriotard adj f p 0 0.34 0 0.07 +patriotards patriotard nom m p 0 0.07 0 0.07 +patriote patriote nom s 3.29 5.47 1.96 1.76 +patriotes patriote nom p 3.29 5.47 1.33 3.72 +patriotique patriotique adj s 1.95 5.34 1.73 3.31 +patriotiquement patriotiquement adv 0 0.07 0 0.07 +patriotiques patriotique adj p 1.95 5.34 0.21 2.03 +patriotisme patriotisme nom m s 2.54 3.65 2.54 3.65 +patron patron nom m s 141.53 132.43 122.44 93.85 +patronage patronage nom m s 0.07 2.43 0.07 1.96 +patronages patronage nom m p 0.07 2.43 0 0.47 +patronal patronal adj m s 0.3 0.61 0.01 0.07 +patronale patronal adj f s 0.3 0.61 0.14 0.2 +patronales patronal adj f p 0.3 0.61 0.14 0.2 +patronat patronat nom m s 0.51 0.47 0.51 0.47 +patronaux patronal adj m p 0.3 0.61 0.02 0.14 +patronna patronner ver 0.07 0.41 0.01 0 ind:pas:3s; +patronne patron nom f s 141.53 132.43 11.32 27.23 +patronner patronner ver 0.07 0.41 0 0.14 inf; +patronnes patron nom f p 141.53 132.43 0.26 0.47 +patronnesse patronnesse adj f s 0.22 0.95 0.14 0.61 +patronnesses patronnesse adj f p 0.22 0.95 0.07 0.34 +patronné patronner ver m s 0.07 0.41 0.03 0.14 par:pas; +patronnée patronner ver f s 0.07 0.41 0.03 0.07 par:pas; +patronnés patronner ver m p 0.07 0.41 0 0.07 par:pas; +patrons patron nom m p 141.53 132.43 7.5 10.88 +patronyme patronyme nom m s 0.28 3.24 0.25 2.5 +patronymes patronyme nom m p 0.28 3.24 0.03 0.74 +patronymique patronymique adj m s 0.2 0.2 0.2 0.07 +patronymiques patronymique adj m p 0.2 0.2 0 0.14 +patrouilla patrouiller ver 2.54 2.97 0 0.14 ind:pas:3s; +patrouillaient patrouiller ver 2.54 2.97 0.14 0.95 ind:imp:3p; +patrouillais patrouiller ver 2.54 2.97 0.08 0 ind:imp:1s; +patrouillait patrouiller ver 2.54 2.97 0.12 0.41 ind:imp:3s; +patrouillant patrouiller ver 2.54 2.97 0.09 0.34 par:pre; +patrouille patrouille nom f s 14.45 10.47 10.83 6.42 +patrouillent patrouiller ver 2.54 2.97 0.28 0.27 ind:pre:3p; +patrouiller patrouiller ver 2.54 2.97 1.02 0.41 inf; +patrouillerai patrouiller ver 2.54 2.97 0.03 0 ind:fut:1s; +patrouilleras patrouiller ver 2.54 2.97 0.01 0 ind:fut:2s; +patrouillerez patrouiller ver 2.54 2.97 0.02 0 ind:fut:2p; +patrouilleront patrouiller ver 2.54 2.97 0.01 0 ind:fut:3p; +patrouilles patrouille nom f p 14.45 10.47 3.61 4.05 +patrouilleur patrouilleur nom m s 1.43 0.47 1.15 0.07 +patrouilleurs patrouilleur nom m p 1.43 0.47 0.28 0.41 +patrouillez patrouiller ver 2.54 2.97 0.12 0 imp:pre:2p;ind:pre:2p; +patrouilliez patrouiller ver 2.54 2.97 0.04 0 ind:imp:2p; +patrouillions patrouiller ver 2.54 2.97 0.01 0 ind:imp:1p; +patrouillé patrouiller ver m s 2.54 2.97 0.12 0.07 par:pas; +patrouillée patrouiller ver f s 2.54 2.97 0.02 0 par:pas; +patrouillées patrouiller ver f p 2.54 2.97 0.02 0.14 par:pas; +patte patte nom f s 34.6 85.14 6.45 21.28 +pattemouille pattemouille nom f s 0.14 0.41 0.14 0.34 +pattemouilles pattemouille nom f p 0.14 0.41 0 0.07 +pattern pattern nom m s 0.06 0 0.06 0 +pattes patte nom f p 34.6 85.14 28.16 63.85 +pattu pattu adj m s 0 0.14 0 0.07 +pattus pattu adj m p 0 0.14 0 0.07 +pattée patté adj f s 0 0.14 0 0.14 +paturon paturon nom m s 0 1.42 0 0.41 +paturons paturon nom m p 0 1.42 0 1.01 +patène patène nom f s 0.1 0.34 0.1 0.27 +patènes patène nom f p 0.1 0.34 0 0.07 +patère patère nom f s 0.08 1.76 0.08 1.08 +patères patère nom f p 0.08 1.76 0 0.68 +pauchouse pauchouse nom f s 0 0.2 0 0.2 +pauline pauline nom f s 0 0.07 0 0.07 +paulinienne paulinien adj f s 0 0.07 0 0.07 +paulownias paulownia nom m p 0 0.07 0 0.07 +pauma paumer ver 4.27 8.92 0 0.14 ind:pas:3s; +paumais paumer ver 4.27 8.92 0 0.2 ind:imp:1s; +paumait paumer ver 4.27 8.92 0 0.2 ind:imp:3s; +paumant paumer ver 4.27 8.92 0 0.34 par:pre; +paume paume nom f s 3.17 35.47 2.18 22.57 +paumelle paumelle nom f s 0 0.14 0 0.07 +paumelles paumelle nom f p 0 0.14 0 0.07 +paument paumer ver 4.27 8.92 0.01 0.2 ind:pre:3p; +paumer paumer ver 4.27 8.92 0.38 1.82 inf; +paumes paume nom f p 3.17 35.47 0.99 12.91 +paumé paumer ver m s 4.27 8.92 2.58 2.97 par:pas; +paumée paumer ver f s 4.27 8.92 0.46 0.61 par:pas; +paumées paumé adj f p 2.46 2.84 0.02 0.27 +paumés paumé nom m p 2.23 5.54 0.9 2.23 +paupiette paupiette nom f s 0.19 0.07 0.02 0 +paupiettes paupiette nom f p 0.19 0.07 0.17 0.07 +paupière paupière nom f s 4.75 63.45 0.97 7.03 +paupières paupière nom f p 4.75 63.45 3.77 56.42 +paupérisation paupérisation nom f s 0 0.27 0 0.27 +paupérise paupériser ver 0 0.07 0 0.07 ind:pre:3s; +paupérisme paupérisme nom m s 0 0.2 0 0.2 +pause pause nom f s 28.24 11.89 27.3 10.14 +pause_café pause_café nom f s 0.29 0.14 0.26 0.07 +pauser pauser ver 0.02 0.07 0.01 0.07 inf; +pauses pause nom f p 28.24 11.89 0.94 1.76 +pause_café pause_café nom f p 0.29 0.14 0.03 0.07 +pause_repas pause_repas nom f p 0.01 0.07 0.01 0.07 +pausez pauser ver 0.02 0.07 0.01 0 imp:pre:2p; +pauvre pauvre adj s 178.03 187.77 148.93 148.78 +pauvrement pauvrement adv 0.31 1.89 0.31 1.89 +pauvres pauvre adj p 178.03 187.77 29.09 38.99 +pauvresse pauvresse nom f s 0.34 0.54 0.23 0.47 +pauvresses pauvresse nom f p 0.34 0.54 0.11 0.07 +pauvret pauvret nom m s 0.05 0.41 0.05 0.14 +pauvrets pauvret nom m p 0.05 0.41 0 0.27 +pauvrette pauvrette nom f s 1.16 0.95 1.16 0.81 +pauvrettes pauvrette nom f p 1.16 0.95 0 0.14 +pauvreté pauvreté nom f s 7.04 10.27 7.04 10.14 +pauvretés pauvreté nom f p 7.04 10.27 0 0.14 +pavage pavage nom m s 0.04 1.42 0.04 1.42 +pavait paver ver 0.33 1.01 0 0.07 ind:imp:3s; +pavana pavaner ver 1.53 2.23 0 0.14 ind:pas:3s; +pavanaient pavaner ver 1.53 2.23 0.03 0.41 ind:imp:3p; +pavanait pavaner ver 1.53 2.23 0.09 0.54 ind:imp:3s; +pavanant pavaner ver 1.53 2.23 0.1 0.27 par:pre; +pavane pavaner ver 1.53 2.23 0.47 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pavanent pavaner ver 1.53 2.23 0.07 0.14 ind:pre:3p; +pavaner pavaner ver 1.53 2.23 0.65 0.34 inf; +pavanera pavaner ver 1.53 2.23 0.01 0 ind:fut:3s; +pavanerez pavaner ver 1.53 2.23 0.01 0.07 ind:fut:2p; +pavanes pavaner ver 1.53 2.23 0.08 0 ind:pre:2s; +pavanons pavaner ver 1.53 2.23 0 0.07 ind:pre:1p; +pavané pavaner ver m s 1.53 2.23 0.03 0 par:pas; +pave paver ver 0.33 1.01 0.14 0.14 ind:pre:1s;ind:pre:3s; +pavement pavement nom m s 0 1.76 0 1.28 +pavements pavement nom m p 0 1.76 0 0.47 +paver paver ver 0.33 1.01 0.06 0.07 inf; +paveton paveton nom m s 0 0.47 0 0.34 +pavetons paveton nom m p 0 0.47 0 0.14 +paveur paveur nom m s 0 0.2 0 0.14 +paveurs paveur nom m p 0 0.2 0 0.07 +pavez paver ver 0.33 1.01 0.02 0.07 imp:pre:2p; +pavillon pavillon nom m s 5.95 25.61 5.39 20.07 +pavillonnaire pavillonnaire adj s 0.03 0.2 0.03 0.14 +pavillonnaires pavillonnaire adj m p 0.03 0.2 0 0.07 +pavillons pavillon nom m p 5.95 25.61 0.56 5.54 +pavlovien pavlovien adj m s 0.08 0.27 0.05 0.27 +pavlovienne pavlovien adj f s 0.08 0.27 0.03 0 +pavois pavois nom m 0.01 1.49 0.01 1.49 +pavoisa pavoiser ver 0.38 3.65 0 0.14 ind:pas:3s; +pavoisaient pavoiser ver 0.38 3.65 0 0.07 ind:imp:3p; +pavoisait pavoiser ver 0.38 3.65 0.14 0.07 ind:imp:3s; +pavoise pavoiser ver 0.38 3.65 0.03 0.34 imp:pre:2s;ind:pre:3s; +pavoisement pavoisement nom m s 0 0.07 0 0.07 +pavoisent pavoiser ver 0.38 3.65 0.03 0.54 ind:pre:3p; +pavoiser pavoiser ver 0.38 3.65 0.17 0.61 inf; +pavoisera pavoiser ver 0.38 3.65 0.01 0 ind:fut:3s; +pavoiseraient pavoiser ver 0.38 3.65 0 0.07 cnd:pre:3p; +pavoisé pavoiser ver m s 0.38 3.65 0 0.54 par:pas; +pavoisée pavoiser ver f s 0.38 3.65 0 0.61 par:pas; +pavoisées pavoiser ver f p 0.38 3.65 0 0.27 par:pas; +pavoisés pavoiser ver m p 0.38 3.65 0 0.41 par:pas; +pavot pavot nom m s 0.85 1.49 0.74 1.15 +pavots pavot nom m p 0.85 1.49 0.11 0.34 +pavé pavé nom m s 3 26.62 2.08 13.24 +pavée pavé adj f s 0.92 5.68 0.33 3.51 +pavées pavé adj f p 0.92 5.68 0.17 0.74 +pavés pavé nom m p 3 26.62 0.92 13.38 +pax_americana pax_americana nom f 0.01 0 0.01 0 +paxon paxon nom m s 0.07 0.07 0.07 0.07 +paya payer ver 416.68 150.2 0.76 5.14 ind:pas:3s; +payable payable adj s 0.74 0.61 0.58 0.34 +payables payable adj m p 0.74 0.61 0.16 0.27 +payai payer ver 416.68 150.2 0.01 0.41 ind:pas:1s; +payaient payer ver 416.68 150.2 0.66 2.5 ind:imp:3p; +payais payer ver 416.68 150.2 1.07 1.08 ind:imp:1s;ind:imp:2s; +payait payer ver 416.68 150.2 5.12 8.85 ind:imp:3s; +payant payant adj m s 2.09 2.03 1.23 0.74 +payante payant adj f s 2.09 2.03 0.39 0.74 +payantes payant adj f p 2.09 2.03 0.19 0.34 +payants payant adj m p 2.09 2.03 0.28 0.2 +payassent payer ver 416.68 150.2 0 0.07 sub:imp:3p; +payassiez payer ver 416.68 150.2 0 0.07 sub:imp:2p; +paye payer ver 416.68 150.2 29.91 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +payement payement nom m s 0.06 0.34 0.03 0.34 +payements payement nom m p 0.06 0.34 0.03 0 +payent payer ver 416.68 150.2 4.3 1.35 ind:pre:3p; +payer payer ver 416.68 150.2 149.1 58.31 inf;;inf;;inf;;inf;; +payera payer ver 416.68 150.2 2.24 0.2 ind:fut:3s; +payerai payer ver 416.68 150.2 2.4 0.34 ind:fut:1s; +payeraient payer ver 416.68 150.2 0.1 0.14 cnd:pre:3p; +payerais payer ver 416.68 150.2 0.33 0.34 cnd:pre:1s;cnd:pre:2s; +payerait payer ver 416.68 150.2 0.2 0.47 cnd:pre:3s; +payeras payer ver 416.68 150.2 0.37 0.34 ind:fut:2s; +payerez payer ver 416.68 150.2 1.49 0.2 ind:fut:2p; +payeriez payer ver 416.68 150.2 0.1 0.07 cnd:pre:2p; +payerons payer ver 416.68 150.2 0.58 0.14 ind:fut:1p; +payeront payer ver 416.68 150.2 0.55 0.14 ind:fut:3p; +payes payer ver 416.68 150.2 4.59 1.15 ind:pre:2s;sub:pre:2s; +payeur payeur nom m s 0.21 0.27 0.07 0.14 +payeurs payeur nom m p 0.21 0.27 0.14 0.14 +payez payer ver 416.68 150.2 13.15 1.01 imp:pre:2p;ind:pre:2p; +payiez payer ver 416.68 150.2 0.55 0 ind:imp:2p; +payions payer ver 416.68 150.2 0.03 0.07 ind:imp:1p; +payons payer ver 416.68 150.2 1.68 0.74 imp:pre:1p;ind:pre:1p; +pays pays nom m 202.57 241.55 202.57 241.55 +paysage paysage nom m s 13.19 64.12 10.57 50.47 +paysager paysager adj m s 0.06 0.07 0.06 0.07 +paysages paysage nom m p 13.19 64.12 2.62 13.65 +paysagiste paysagiste nom s 0.73 0.68 0.66 0.61 +paysagistes paysagiste nom p 0.73 0.68 0.08 0.07 +paysagé paysagé adj m s 0 0.47 0 0.41 +paysagés paysagé adj m p 0 0.47 0 0.07 +paysan paysan nom m s 23.29 57.3 9.06 17.77 +paysanne paysan nom f s 23.29 57.3 2.66 6.82 +paysannerie paysannerie nom f s 0.23 0.54 0.23 0.54 +paysannes paysan nom f p 23.29 57.3 0.95 2.91 +paysans paysan nom m p 23.29 57.3 10.62 29.8 +payse payse nom m 0.01 0.07 0.01 0.07 +payâmes payer ver 416.68 150.2 0 0.07 ind:pas:1p; +payât payer ver 416.68 150.2 0 0.34 sub:imp:3s; +payèrent payer ver 416.68 150.2 0.11 0.41 ind:pas:3p; +payé payer ver m s 416.68 150.2 66.22 23.24 par:pas; +payée payer ver f s 416.68 150.2 9.16 2.91 par:pas; +payées payer ver f p 416.68 150.2 1.53 1.01 par:pas; +payés payer ver m p 416.68 150.2 5.56 3.31 par:pas; +paît paître ver 2.29 4.46 0.2 0 ind:pre:3s; +paître paître ver 2.29 4.46 0.97 1.76 inf; +paîtront paître ver 2.29 4.46 0.12 0 ind:fut:3p; +païen païen adj m s 1.39 3.38 0.51 1.42 +païenne païen adj f s 1.39 3.38 0.39 1.28 +païennes païen adj f p 1.39 3.38 0.29 0.2 +païens païen nom m p 2.22 2.57 1.91 1.28 +pc pc nom m 0.16 0 0.16 0 +pchitt pchitt ono 0 0.2 0 0.2 +peanuts peanuts nom m p 0.07 0.07 0.07 0.07 +peau peau nom f s 87.47 187.77 83.83 174.26 +peau_rouge peau_rouge nom s 0.51 0.54 0.49 0.27 +peaucier peaucier nom m s 0 0.14 0 0.07 +peauciers peaucier nom m p 0 0.14 0 0.07 +peaufina peaufiner ver 0.67 1.08 0 0.14 ind:pas:3s; +peaufinage peaufinage nom m s 0.01 0 0.01 0 +peaufinait peaufiner ver 0.67 1.08 0.03 0.2 ind:imp:3s; +peaufinant peaufiner ver 0.67 1.08 0 0.07 par:pre; +peaufiner peaufiner ver 0.67 1.08 0.44 0.34 inf; +peaufiné peaufiner ver m s 0.67 1.08 0.2 0.2 par:pas; +peaufinée peaufiner ver f s 0.67 1.08 0 0.07 par:pas; +peaufinés peaufiner ver m p 0.67 1.08 0 0.07 par:pas; +peausserie peausserie nom f s 0 0.27 0 0.14 +peausseries peausserie nom f p 0 0.27 0 0.14 +peaussier peaussier nom m s 0.01 0.07 0.01 0.07 +peaux peau nom f p 87.47 187.77 3.63 13.51 +peau_rouge peau_rouge nom p 0.51 0.54 0.02 0.27 +pec pec adj m s 0.01 0 0.01 0 +peccable peccable adj m s 0.01 0 0.01 0 +peccadille peccadille nom f s 0.08 1.08 0.04 0.34 +peccadilles peccadille nom f p 0.08 1.08 0.04 0.74 +peccata peccata nom m s 0.2 0 0.2 0 +peccavi peccavi nom m s 0.1 0.14 0.1 0.14 +pecnots pecnot nom m p 0.03 0 0.03 0 +pecorino pecorino nom m s 0.25 0 0.25 0 +pectoral pectoral adj m s 0.19 1.08 0.07 0 +pectorale pectoral adj f s 0.19 1.08 0.04 0.27 +pectorales pectoral adj f p 0.19 1.08 0.03 0.41 +pectoraux pectoral nom m p 0.7 2.09 0.66 1.76 +pedigree pedigree nom m s 0.67 1.82 0.65 1.76 +pedigrees pedigree nom m p 0.67 1.82 0.02 0.07 +pedzouille pedzouille nom m s 0.04 0.54 0.04 0.41 +pedzouilles pedzouille nom m p 0.04 0.54 0 0.14 +peeling peeling nom m s 0.14 0 0.14 0 +peigna peigner ver 2.25 4.39 0 0.41 ind:pas:3s; +peignaient peindre ver 36.05 80.27 0.16 0.88 ind:imp:3p; +peignais peindre ver 36.05 80.27 0.35 1.42 ind:imp:1s; +peignait peindre ver 36.05 80.27 1.61 4.86 ind:imp:3s; +peignant peindre ver 36.05 80.27 0.51 1.55 par:pre; +peigne peigne nom m s 6.81 10.81 6.07 8.85 +peigne_cul peigne_cul nom m s 0.23 0.34 0.07 0.27 +peigne_cul peigne_cul nom m p 0.23 0.34 0.17 0.07 +peigne_zizi peigne_zizi nom s 0 0.07 0 0.07 +peignent peindre ver 36.05 80.27 0.43 0.81 ind:pre:3p;sub:pre:3p; +peigner peigner ver 2.25 4.39 0.85 1.28 inf; +peignerais peigner ver 2.25 4.39 0 0.07 cnd:pre:2s; +peignerait peigner ver 2.25 4.39 0 0.07 cnd:pre:3s; +peignes peigne nom m p 6.81 10.81 0.74 1.96 +peignez peindre ver 36.05 80.27 0.57 0.2 imp:pre:2p;ind:pre:2p; +peigniez peigner ver 2.25 4.39 0.03 0 ind:imp:2p; +peignions peigner ver 2.25 4.39 0 0.2 ind:imp:1p; +peignis peindre ver 36.05 80.27 0 1.22 ind:pas:1s; +peignit peindre ver 36.05 80.27 0.14 1.82 ind:pas:3s; +peignoir peignoir nom m s 6.65 16.96 5.94 14.73 +peignoirs peignoir nom m p 6.65 16.96 0.72 2.23 +peignons peindre ver 36.05 80.27 0.18 0 imp:pre:1p;ind:pre:1p; +peigné peigner ver m s 2.25 4.39 0.08 0.41 par:pas; +peignée peignée nom f s 0.17 1.49 0.17 1.22 +peignées peignée nom f p 0.17 1.49 0 0.27 +peignés peigné adj m p 0.06 1.89 0.02 1.01 +peignît peindre ver 36.05 80.27 0 0.07 sub:imp:3s; +peina peiner ver 7.65 12.36 0 0.14 ind:pas:3s; +peinaient peiner ver 7.65 12.36 0.01 0.61 ind:imp:3p; +peinais peiner ver 7.65 12.36 0.02 0.07 ind:imp:1s; +peinait peiner ver 7.65 12.36 0.03 2.43 ind:imp:3s; +peinant peiner ver 7.65 12.36 0.15 0.68 par:pre; +peinard peinard adj m s 3.92 9.59 2.91 5.88 +peinarde peinard adj f s 3.92 9.59 0.33 1.35 +peinardement peinardement adv 0 0.2 0 0.2 +peinardes peinard adj f p 3.92 9.59 0.02 0.2 +peinards peinard adj m p 3.92 9.59 0.67 2.16 +peindra peindre ver 36.05 80.27 0.19 0.07 ind:fut:3s; +peindrai peindre ver 36.05 80.27 0.51 0.34 ind:fut:1s; +peindrais peindre ver 36.05 80.27 0.06 0.27 cnd:pre:1s;cnd:pre:2s; +peindrait peindre ver 36.05 80.27 0.16 0.34 cnd:pre:3s; +peindras peindre ver 36.05 80.27 0.17 0.14 ind:fut:2s; +peindre peindre ver 36.05 80.27 12.75 22.64 inf;; +peine peine nom f s 199.75 399.53 193.42 388.24 +peinent peiner ver 7.65 12.36 0.54 0.27 ind:pre:3p; +peiner peiner ver 7.65 12.36 0.45 2.36 inf;; +peinera peiner ver 7.65 12.36 0.14 0.07 ind:fut:3s; +peinerait peiner ver 7.65 12.36 0.18 0 cnd:pre:3s; +peinerez peiner ver 7.65 12.36 0.01 0 ind:fut:2p; +peines peine nom f p 199.75 399.53 6.34 11.28 +peineuse peineuse adj m s 0 0.07 0 0.07 +peinez peiner ver 7.65 12.36 0.54 0.07 imp:pre:2p;ind:pre:2p; +peinions peiner ver 7.65 12.36 0 0.07 ind:imp:1p; +peinons peiner ver 7.65 12.36 0.14 0.07 ind:pre:1p; +peins peindre ver 36.05 80.27 3.77 2.7 imp:pre:2s;ind:pre:1s;ind:pre:2s; +peint peindre ver m s 36.05 80.27 11.95 17.84 ind:pre:3s;par:pas;par:pas; +peinte peindre ver f s 36.05 80.27 0.95 9.53 par:pas; +peintes peindre ver f p 36.05 80.27 0.61 5.95 par:pas; +peintre peintre nom s 17.02 45.07 13.6 31.22 +peintres peintre nom p 17.02 45.07 3.42 13.85 +peints peindre ver m p 36.05 80.27 1 7.64 par:pas; +peinture peinture nom f s 29.53 67.64 25.83 59.39 +peintures peinture nom f p 29.53 67.64 3.7 8.24 +peinturlure peinturlurer ver 0.47 2.23 0.14 0 ind:pre:1s;ind:pre:3s; +peinturlurent peinturlurer ver 0.47 2.23 0 0.07 ind:pre:3p; +peinturlurer peinturlurer ver 0.47 2.23 0.11 0.41 inf; +peinturlures peinturlurer ver 0.47 2.23 0 0.07 ind:pre:2s; +peinturlureur peinturlureur nom m s 0 0.14 0 0.07 +peinturlureurs peinturlureur nom m p 0 0.14 0 0.07 +peinturluré peinturlurer ver m s 0.47 2.23 0.12 0.74 par:pas; +peinturlurée peinturlurer ver f s 0.47 2.23 0.02 0.47 par:pas; +peinturlurées peinturlurer ver f p 0.47 2.23 0.03 0.14 par:pas; +peinturlurés peinturlurer ver m p 0.47 2.23 0.05 0.34 par:pas; +peinturé peinturer ver m s 0.02 0.2 0.02 0.14 par:pas; +peinturée peinturer ver f s 0.02 0.2 0 0.07 par:pas; +peinât peiner ver 7.65 12.36 0 0.07 sub:imp:3s; +peinèrent peiner ver 7.65 12.36 0 0.07 ind:pas:3p; +peiné peiner ver m s 7.65 12.36 1.68 2.5 par:pas; +peinée peiner ver f s 7.65 12.36 0.14 0.74 par:pas; +peinées peiner ver f p 7.65 12.36 0.11 0 par:pas; +peinés peiner ver m p 7.65 12.36 0.22 0.2 par:pas; +pela peler ver 1.78 4.93 0 0.2 ind:pas:3s; +pelade pelade nom f s 0.16 0.47 0.16 0.41 +pelades pelade nom f p 0.16 0.47 0 0.07 +pelage pelage nom m s 0.44 6.01 0.44 5.74 +pelages pelage nom m p 0.44 6.01 0 0.27 +pelaient peler ver 1.78 4.93 0 0.07 ind:imp:3p; +pelait peler ver 1.78 4.93 0.01 0.41 ind:imp:3s; +pelant peler ver 1.78 4.93 0 0.27 par:pre; +peler peler ver 1.78 4.93 0.44 1.22 inf; +pelisse pelisse nom f s 0.11 3.51 0.11 2.84 +pelisses pelisse nom f p 0.11 3.51 0 0.68 +pellagre pellagre nom f s 0.04 0 0.04 0 +pelle pelle nom f s 10.1 15.61 8.75 11.35 +pelle_bêche pelle_bêche nom f s 0 0.14 0 0.07 +pelle_pioche pelle_pioche nom f s 0 0.41 0 0.07 +pelles pelle nom f p 10.1 15.61 1.35 4.26 +pelle_bêche pelle_bêche nom f p 0 0.14 0 0.07 +pelle_pioche pelle_pioche nom f p 0 0.41 0 0.34 +pelletage pelletage nom m s 0.02 0 0.02 0 +pelletaient pelleter ver 0.27 0.95 0 0.14 ind:imp:3p; +pelletait pelleter ver 0.27 0.95 0 0.27 ind:imp:3s; +pelletant pelleter ver 0.27 0.95 0 0.14 par:pre; +pelleter pelleter ver 0.27 0.95 0.27 0.34 inf; +pelleterie pelleterie nom f s 0 0.07 0 0.07 +pelleteur pelleteur nom m s 0.47 0.27 0.04 0 +pelleteuse pelleteur nom f s 0.47 0.27 0.4 0.14 +pelleteuses pelleteur nom f p 0.47 0.27 0.02 0.14 +pelletiers pelletier nom m p 0.02 0.14 0.02 0.14 +pellette pelleter ver 0.27 0.95 0 0.07 ind:pre:3s; +pelletée pelletée nom f s 0.31 2.03 0.29 0.47 +pelletées pelletée nom f p 0.31 2.03 0.02 1.55 +pelliculages pelliculage nom m p 0 0.07 0 0.07 +pelliculaire pelliculaire adj f s 0 0.07 0 0.07 +pellicule pellicule nom f s 7.52 6.82 6.29 5.68 +pellicules pellicule nom f p 7.52 6.82 1.23 1.15 +pelliculé pelliculer ver m s 0 0.14 0 0.07 par:pas; +pelliculée pelliculer ver f s 0 0.14 0 0.07 par:pas; +pelloche pelloche nom f s 0.1 0.2 0.1 0.2 +pelota peloter ver 5.36 3.38 0.1 0.14 ind:pas:3s; +pelotage pelotage nom m s 0.21 0.61 0.19 0.34 +pelotages pelotage nom m p 0.21 0.61 0.02 0.27 +pelotaient peloter ver 5.36 3.38 0.03 0.14 ind:imp:3p; +pelotais peloter ver 5.36 3.38 0.07 0 ind:imp:1s;ind:imp:2s; +pelotait peloter ver 5.36 3.38 0.32 0.61 ind:imp:3s; +pelotant peloter ver 5.36 3.38 0.14 0.34 par:pre; +pelote pelote nom f s 0.98 6.01 0.94 4.19 +pelotent peloter ver 5.36 3.38 0.14 0 ind:pre:3p; +peloter peloter ver 5.36 3.38 2.9 1.22 inf; +peloterai peloter ver 5.36 3.38 0.04 0.07 ind:fut:1s; +peloterait peloter ver 5.36 3.38 0.01 0 cnd:pre:3s; +pelotes peloter ver 5.36 3.38 0.17 0 ind:pre:2s; +peloteur peloteur nom m s 0.03 0.14 0.02 0 +peloteurs peloteur nom m p 0.03 0.14 0.01 0.14 +peloteuse peloteur adj f s 0 0.2 0 0.14 +pelotez peloter ver 5.36 3.38 0.11 0 imp:pre:2p;ind:pre:2p; +peloton peloton nom m s 7.15 10.74 6.83 9.73 +pelotonna pelotonner ver 0.07 4.12 0 0.34 ind:pas:3s; +pelotonnai pelotonner ver 0.07 4.12 0 0.14 ind:pas:1s; +pelotonnaient pelotonner ver 0.07 4.12 0.01 0.07 ind:imp:3p; +pelotonnais pelotonner ver 0.07 4.12 0 0.07 ind:imp:1s; +pelotonnait pelotonner ver 0.07 4.12 0 0.14 ind:imp:3s; +pelotonnant pelotonner ver 0.07 4.12 0 0.07 par:pre; +pelotonne pelotonner ver 0.07 4.12 0 0.34 ind:pre:1s;ind:pre:3s; +pelotonnent pelotonner ver 0.07 4.12 0 0.14 ind:pre:3p; +pelotonner pelotonner ver 0.07 4.12 0.01 0.68 inf; +pelotonné pelotonner ver m s 0.07 4.12 0 1.22 par:pas; +pelotonnée pelotonner ver f s 0.07 4.12 0.02 0.61 par:pas; +pelotonnées pelotonner ver f p 0.07 4.12 0 0.14 par:pas; +pelotonnés pelotonner ver m p 0.07 4.12 0.02 0.2 par:pas; +pelotons peloton nom m p 7.15 10.74 0.32 1.01 +peloté peloter ver m s 5.36 3.38 0.28 0 par:pas; +pelotée peloter ver f s 5.36 3.38 0.38 0.14 par:pas; +pelotés peloter ver m p 5.36 3.38 0.32 0 par:pas; +pelouse pelouse nom f s 4.79 19.39 4.28 12.97 +pelouses pelouse nom f p 4.79 19.39 0.52 6.42 +peluche peluche nom f s 4.21 5.54 3.25 5.34 +peluches peluche nom f p 4.21 5.54 0.96 0.2 +pelucheuse pelucheux adj f s 0.31 1.76 0.03 0.54 +pelucheuses pelucheux adj f p 0.31 1.76 0.01 0.27 +pelucheux pelucheux adj m 0.31 1.76 0.27 0.95 +peluchée peluché adj f s 0 0.2 0 0.2 +pelure pelure nom f s 0.37 3.24 0.1 2.03 +pelures pelure nom f p 0.37 3.24 0.28 1.22 +pelvien pelvien adj m s 0.55 0 0.18 0 +pelvienne pelvien adj f s 0.55 0 0.37 0 +pelvis pelvis nom m 0.34 0.07 0.34 0.07 +pelé peler ver m s 1.78 4.93 0.14 0.95 par:pas; +pelée pelé adj f s 0.44 3.24 0.3 1.08 +pelées peler ver f p 1.78 4.93 0 0.34 par:pas; +pelés peler ver m p 1.78 4.93 0.02 0.41 par:pas; +pembina pembina nom f s 0 0.07 0 0.07 +pemmican pemmican nom m s 0.01 0.14 0.01 0.14 +penalties penalties nom m p 0.29 0.14 0.29 0.14 +penalty penalty nom m s 1.5 0.47 1.5 0.47 +penaud penaud adj m s 0.21 4.86 0.2 3.04 +penaude penaud adj f s 0.21 4.86 0.01 0.81 +penaudes penaud adj f p 0.21 4.86 0 0.07 +penauds penaud adj m p 0.21 4.86 0 0.95 +pence pence nom m p 1.71 0.14 1.71 0.14 +pencha pencher ver 16.9 155.88 0.1 34.05 ind:pas:3s; +penchai pencher ver 16.9 155.88 0 2.36 ind:pas:1s; +penchaient pencher ver 16.9 155.88 0 2.3 ind:imp:3p; +penchais pencher ver 16.9 155.88 0.23 1.22 ind:imp:1s;ind:imp:2s; +penchait pencher ver 16.9 155.88 0.26 13.92 ind:imp:3s; +penchant penchant nom m s 3.26 5.27 2.54 3.45 +penchante penchant adj f s 0.01 0.74 0 0.2 +penchants penchant nom m p 3.26 5.27 0.72 1.82 +penche pencher ver 16.9 155.88 7.3 26.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +penchement penchement nom m s 0 0.2 0 0.2 +penchent pencher ver 16.9 155.88 0.44 2.91 ind:pre:3p; +pencher pencher ver 16.9 155.88 2.08 11.76 inf; +penchera pencher ver 16.9 155.88 0.18 0.27 ind:fut:3s; +pencherai pencher ver 16.9 155.88 0.2 0 ind:fut:1s; +pencheraient pencher ver 16.9 155.88 0.04 0.07 cnd:pre:3p; +pencherais pencher ver 16.9 155.88 0.13 0.34 cnd:pre:1s; +pencherait pencher ver 16.9 155.88 0.04 0.14 cnd:pre:3s; +pencheras pencher ver 16.9 155.88 0.01 0 ind:fut:2s; +pencherez pencher ver 16.9 155.88 0.01 0 ind:fut:2p; +pencheriez pencher ver 16.9 155.88 0.01 0 cnd:pre:2p; +pencherons pencher ver 16.9 155.88 0.01 0 ind:fut:1p; +pencheront pencher ver 16.9 155.88 0.37 0.14 ind:fut:3p; +penches pencher ver 16.9 155.88 0.28 0.14 ind:pre:2s; +penchez pencher ver 16.9 155.88 1.75 0.27 imp:pre:2p;ind:pre:2p; +penchiez pencher ver 16.9 155.88 0.04 0 ind:imp:2p; +penchions pencher ver 16.9 155.88 0.02 0.34 ind:imp:1p; +penchons pencher ver 16.9 155.88 0.11 0.27 imp:pre:1p;ind:pre:1p; +penchâmes pencher ver 16.9 155.88 0.01 0.2 ind:pas:1p; +penchât pencher ver 16.9 155.88 0 0.14 sub:imp:3s; +penchèrent pencher ver 16.9 155.88 0 0.81 ind:pas:3p; +penché pencher ver m s 16.9 155.88 1.61 25.07 par:pas; +penchée pencher ver f s 16.9 155.88 1.32 12.36 par:pas; +penchées pencher ver f p 16.9 155.88 0.01 1.35 par:pas; +penchés penché adj m p 1.3 11.01 0.21 1.55 +pend pendre ver 42.99 58.04 2.5 6.69 ind:pre:3s; +pendable pendable adj s 0.04 0.88 0.02 0.61 +pendables pendable adj m p 0.04 0.88 0.02 0.27 +pendaient pendre ver 42.99 58.04 0.51 7.3 ind:imp:3p; +pendais pendre ver 42.99 58.04 0.02 0 ind:imp:1s; +pendaison pendaison nom f s 3.02 1.08 2.78 1.08 +pendaisons pendaison nom f p 3.02 1.08 0.24 0 +pendait pendre ver 42.99 58.04 0.86 13.38 ind:imp:3s; +pendant pendant pre 312.62 450.14 312.62 450.14 +pendante pendant adj_sup f s 3.56 12.5 0.36 3.24 +pendantes pendant adj_sup f p 3.56 12.5 0.19 3.92 +pendants pendant adj_sup m p 3.56 12.5 0.18 1.49 +pendard pendard nom m s 0.05 0.07 0.03 0.07 +pendarde pendard nom f s 0.05 0.07 0.01 0 +pendards pendard nom m p 0.05 0.07 0.01 0 +pende pendre ver 42.99 58.04 1.15 0.34 sub:pre:1s;sub:pre:3s; +pendeloque pendeloque nom f s 0.01 1.08 0.01 0.14 +pendeloques pendeloque nom f p 0.01 1.08 0 0.95 +pendent pendre ver 42.99 58.04 1.41 4.53 ind:pre:3p; +pendentif pendentif nom m s 1.04 1.22 1 0.74 +pendentifs pendentif nom m p 1.04 1.22 0.03 0.47 +penderie penderie nom f s 1.88 3.11 1.84 2.5 +penderies penderie nom f p 1.88 3.11 0.04 0.61 +pendeur pendeur nom m s 0.01 0 0.01 0 +pendez pendre ver 42.99 58.04 1.6 0.14 imp:pre:2p;ind:pre:2p; +pendillaient pendiller ver 0.01 0.41 0 0.14 ind:imp:3p; +pendillait pendiller ver 0.01 0.41 0 0.07 ind:imp:3s; +pendillant pendiller ver 0.01 0.41 0 0.14 par:pre; +pendille pendiller ver 0.01 0.41 0.01 0.07 ind:pre:3s; +pendirent pendre ver 42.99 58.04 0 0.07 ind:pas:3p; +pendit pendre ver 42.99 58.04 0.09 1.08 ind:pas:3s; +pendjabi pendjabi nom m s 0.04 0 0.04 0 +pendons pendre ver 42.99 58.04 0.63 0 imp:pre:1p;ind:pre:1p; +pendouillaient pendouiller ver 0.47 2.23 0.01 0.27 ind:imp:3p; +pendouillait pendouiller ver 0.47 2.23 0 0.47 ind:imp:3s; +pendouillant pendouiller ver 0.47 2.23 0.02 0.47 par:pre; +pendouille pendouiller ver 0.47 2.23 0.3 0.61 ind:pre:1s;ind:pre:3s; +pendouillent pendouiller ver 0.47 2.23 0.03 0.27 ind:pre:3p; +pendouiller pendouiller ver 0.47 2.23 0.11 0.07 inf; +pendouilles pendouiller ver 0.47 2.23 0 0.07 ind:pre:2s; +pendra pendre ver 42.99 58.04 1.83 0.34 ind:fut:3s; +pendrai pendre ver 42.99 58.04 0.28 0 ind:fut:1s; +pendrais pendre ver 42.99 58.04 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +pendrait pendre ver 42.99 58.04 0.28 0.07 cnd:pre:3s; +pendras pendre ver 42.99 58.04 0.17 0 ind:fut:2s; +pendre pendre ver 42.99 58.04 12.4 8.51 inf; +pendrez pendre ver 42.99 58.04 0.05 0 ind:fut:2p; +pendrons pendre ver 42.99 58.04 0.07 0 ind:fut:1p; +pendront pendre ver 42.99 58.04 0.82 0.07 ind:fut:3p; +pends pendre ver 42.99 58.04 1.13 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +pendu pendre ver m s 42.99 58.04 11.02 5.74 par:pas; +pendue pendre ver f s 42.99 58.04 2.19 2.97 par:pas; +pendues pendu adj f p 2.9 3.78 0.18 0.47 +pendulaire pendulaire adj s 0 0.2 0 0.2 +pendulait penduler ver 0 0.07 0 0.07 ind:imp:3s; +pendule pendule nom s 4.78 11.82 3.37 9.86 +pendules pendule nom f p 4.78 11.82 1.42 1.96 +pendulette pendulette nom f s 0.03 1.15 0.03 0.95 +pendulettes pendulette nom f p 0.03 1.15 0 0.2 +pendus pendre ver m p 42.99 58.04 1.52 2.5 par:pas; +pennage pennage nom m s 0.12 0 0.12 0 +penne penne nom f s 0.39 0.54 0.34 0.34 +pennes penne nom f p 0.39 0.54 0.05 0.2 +pennies pennies nom m p 0.62 0.2 0.62 0.2 +pennon pennon nom m s 0.02 0.07 0.01 0 +pennons pennon nom m p 0.02 0.07 0.01 0.07 +penny penny nom f s 3.49 0.14 3.49 0.14 +pennées penné adj f p 0 0.07 0 0.07 +penon penon nom m s 0 0.07 0 0.07 +pensa penser ver 1485.47 869.8 1.52 78.11 ind:pas:3s; +pensable pensable adj f s 0.19 0.81 0.19 0.81 +pensai penser ver 1485.47 869.8 0.86 16.28 ind:pas:1s; +pensaient penser ver 1485.47 869.8 6.32 10.61 ind:imp:3p; +pensais penser ver 1485.47 869.8 199.51 69.66 ind:imp:1s;ind:imp:2s; +pensait penser ver 1485.47 869.8 32.53 109.05 ind:imp:3s; +pensant penser ver 1485.47 869.8 10.22 32.5 par:pre; +pensante pensant adj f s 1.09 6.08 0.19 1.22 +pensantes pensant adj f p 1.09 6.08 0.06 0.14 +pensants pensant adj m p 1.09 6.08 0.03 0.41 +pense penser ver 1485.47 869.8 517.64 178.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +pense_bête pense_bête nom m s 0.34 0.41 0.17 0.41 +pense_bête pense_bête nom m p 0.34 0.41 0.17 0 +pensent penser ver 1485.47 869.8 37.42 12.3 ind:pre:3p; +penser penser ver 1485.47 869.8 140.24 161.62 imp:pre:2p;inf; +pensera penser ver 1485.47 869.8 3.66 1.62 ind:fut:3s; +penserai penser ver 1485.47 869.8 3.44 1.28 ind:fut:1s; +penseraient penser ver 1485.47 869.8 0.9 0.88 cnd:pre:3p; +penserais penser ver 1485.47 869.8 2.38 1.22 cnd:pre:1s;cnd:pre:2s; +penserait penser ver 1485.47 869.8 3.17 2.16 cnd:pre:3s; +penseras penser ver 1485.47 869.8 1.84 0.95 ind:fut:2s; +penserez penser ver 1485.47 869.8 0.93 0.61 ind:fut:2p; +penseriez penser ver 1485.47 869.8 0.66 0.2 cnd:pre:2p; +penserions penser ver 1485.47 869.8 0.01 0.2 cnd:pre:1p; +penserons penser ver 1485.47 869.8 0.3 0.14 ind:fut:1p; +penseront penser ver 1485.47 869.8 2.19 0.61 ind:fut:3p; +penses penser ver 1485.47 869.8 186.9 38.24 ind:pre:2s;sub:pre:2s; +penseur penseur nom m s 1.64 3.92 0.84 1.96 +penseurs penseur nom m p 1.64 3.92 0.8 1.69 +penseuse penseur nom f s 1.64 3.92 0 0.14 +penseuses penseur nom f p 1.64 3.92 0 0.14 +pensez penser ver 1485.47 869.8 148.7 41.69 imp:pre:2p;ind:pre:2p; +pensiez penser ver 1485.47 869.8 12.33 2.16 ind:imp:2p;sub:pre:2p; +pensif pensif adj m s 0.8 9.8 0.58 5.95 +pensifs pensif adj m p 0.8 9.8 0.01 1.42 +pension pension nom f s 17.75 19.19 16.45 18.18 +pensionna pensionner ver 0.02 0.2 0 0.07 ind:pas:3s; +pensionnaire pensionnaire nom s 2.41 10.54 1.42 4.19 +pensionnaires pensionnaire nom p 2.41 10.54 0.99 6.35 +pensionnat pensionnat nom m s 1.88 2.77 1.87 2.64 +pensionnats pensionnat nom m p 1.88 2.77 0.01 0.14 +pensionner pensionner ver 0.02 0.2 0 0.07 inf; +pensionné pensionner ver m s 0.02 0.2 0.01 0 par:pas; +pensionnés pensionné nom m p 0.21 0.2 0.21 0 +pensions penser ver 1485.47 869.8 5.41 4.26 ind:imp:1p; +pensive pensif adj f s 0.8 9.8 0.21 2.43 +pensivement pensivement adv 0.01 5.2 0.01 5.2 +pensons penser ver 1485.47 869.8 13.89 3.65 imp:pre:1p;ind:pre:1p; +pensum pensum nom m s 0.03 1.22 0.02 0.95 +pensums pensum nom m p 0.03 1.22 0.01 0.27 +pensâmes penser ver 1485.47 869.8 0 0.07 ind:pas:1p; +pensât penser ver 1485.47 869.8 0 0.74 sub:imp:3s; +pensèrent penser ver 1485.47 869.8 0.07 1.01 ind:pas:3p; +pensé penser ver m s 1485.47 869.8 151.67 97.57 imp:pre:2s;par:pas;par:pas;par:pas;par:pas;par:pas; +pensée pensée nom f s 57.87 151.55 26.25 98.92 +pensées pensée nom f p 57.87 151.55 31.61 52.64 +pensés penser ver m p 1485.47 869.8 0.09 0.41 par:pas; +pentacle pentacle nom m s 0.57 0.2 0.54 0.2 +pentacles pentacle nom m p 0.57 0.2 0.04 0 +pentagonal pentagonal adj m s 0.01 0 0.01 0 +pentagone pentagone nom m s 0.26 0.2 0.25 0.14 +pentagones pentagone nom m p 0.26 0.2 0.01 0.07 +pentagramme pentagramme nom m s 0.7 0 0.67 0 +pentagrammes pentagramme nom m p 0.7 0 0.04 0 +pentamètre pentamètre nom s 0.17 0 0.12 0 +pentamètres pentamètre nom p 0.17 0 0.05 0 +pentasyllabe pentasyllabe nom m s 0 0.07 0 0.07 +pentateuque pentateuque nom m s 0 0.07 0 0.07 +pentathlon pentathlon nom m s 0 0.07 0 0.07 +pente pente nom f s 4.82 49.66 4.46 39.19 +pentecôte pentecôte nom f s 0.57 3.85 0.57 3.85 +pentecôtiste pentecôtiste nom s 0.04 0.2 0.02 0.2 +pentecôtistes pentecôtiste nom p 0.04 0.2 0.02 0 +pentes pente nom f p 4.82 49.66 0.36 10.47 +penthiobarbital penthiobarbital nom m s 0.01 0 0.01 0 +penthotal penthotal nom m s 0.06 0.2 0.06 0.2 +penthouse penthouse nom m s 0.9 0 0.9 0 +pentothal pentothal nom m s 0.17 0 0.17 0 +pentu pentu adj m s 0.05 1.22 0.05 0.61 +pentue pentu adj f s 0.05 1.22 0 0.27 +pentues pentu adj f p 0.05 1.22 0 0.07 +penture penture nom f s 0 0.14 0 0.07 +pentures penture nom f p 0 0.14 0 0.07 +pentus pentu adj m p 0.05 1.22 0 0.27 +pentélique pentélique adj m s 0 0.07 0 0.07 +people people adj 3.55 0.2 3.55 0.2 +pep pep nom m s 0.33 0.14 0.15 0.14 +peppermint peppermint nom m s 0.05 0.34 0.05 0.34 +peps pep nom m p 0.33 0.14 0.18 0 +pepsine pepsine nom f s 0.01 0 0.01 0 +peptide peptide nom m s 0.03 0 0.03 0 +peptique peptique adj s 0.03 0 0.03 0 +percale percale nom f s 0.11 0.68 0.11 0.61 +percales percale nom f p 0.11 0.68 0 0.07 +perce percer ver 15.77 42.03 2.09 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +perce_oreille perce_oreille nom m s 0.04 0.2 0.03 0.07 +perce_oreille perce_oreille nom m p 0.04 0.2 0.01 0.14 +perce_pierre perce_pierre nom f s 0 0.07 0 0.07 +percement percement nom m s 0.01 0.41 0.01 0.41 +percent percer ver 15.77 42.03 0.42 1.08 ind:pre:3p; +percepteur percepteur nom m s 1.03 1.42 0.93 1.28 +percepteurs percepteur nom m p 1.03 1.42 0.09 0.14 +perceptible perceptible adj s 0.46 7.43 0.4 6.01 +perceptibles perceptible adj p 0.46 7.43 0.06 1.42 +perceptif perceptif adj m s 0.09 0.14 0.01 0.14 +perception perception nom f s 2.92 3.72 2.62 2.7 +perceptions perception nom f p 2.92 3.72 0.31 1.01 +perceptive perceptif adj f s 0.09 0.14 0.07 0 +perceptives perceptif adj f p 0.09 0.14 0.01 0 +perceptrice percepteur nom f s 1.03 1.42 0.01 0 +perceptuels perceptuel adj m p 0.01 0 0.01 0 +percer percer ver 15.77 42.03 6.19 11.22 inf; +percera percer ver 15.77 42.03 0.26 0.2 ind:fut:3s; +percerai percer ver 15.77 42.03 0.08 0 ind:fut:1s; +percerait percer ver 15.77 42.03 0.03 0 cnd:pre:3s; +percerez percer ver 15.77 42.03 0.11 0.07 ind:fut:2p; +perceur perceur nom m s 1.22 1.01 0.12 0.2 +perceurs perceur nom m p 1.22 1.01 0.12 0.47 +perceuse perceur nom f s 1.22 1.01 0.97 0.2 +perceuses perceur nom f p 1.22 1.01 0.01 0.14 +percevaient percevoir ver 7.41 41.01 0.01 0.81 ind:imp:3p; +percevais percevoir ver 7.41 41.01 0.26 2.3 ind:imp:1s;ind:imp:2s; +percevait percevoir ver 7.41 41.01 0.15 6.62 ind:imp:3s; +percevant percevoir ver 7.41 41.01 0.2 1.15 par:pre; +percevez percevoir ver 7.41 41.01 0.26 0 imp:pre:2p;ind:pre:2p; +perceviez percevoir ver 7.41 41.01 0 0.07 ind:imp:2p; +percevions percevoir ver 7.41 41.01 0.01 0.27 ind:imp:1p; +percevoir percevoir ver 7.41 41.01 1.19 9.19 inf; +percevons percevoir ver 7.41 41.01 0.2 0.2 ind:pre:1p; +percevra percevoir ver 7.41 41.01 0.17 0 ind:fut:3s; +percevrais percevoir ver 7.41 41.01 0.01 0 cnd:pre:1s; +percevrait percevoir ver 7.41 41.01 0.01 0.14 cnd:pre:3s; +percevrez percevoir ver 7.41 41.01 0.01 0 ind:fut:2p; +percez percer ver 15.77 42.03 0.33 0 imp:pre:2p;ind:pre:2p; +percha percher ver 2.37 12.97 0.04 0.2 ind:pas:3s; +perchaient percher ver 2.37 12.97 0.1 0.34 ind:imp:3p; +perchais percher ver 2.37 12.97 0.01 0.14 ind:imp:1s; +perchait percher ver 2.37 12.97 0.11 0.14 ind:imp:3s; +perche perche nom f s 6.11 7.43 5.67 4.93 +perchent percher ver 2.37 12.97 0 0.14 ind:pre:3p; +percher percher ver 2.37 12.97 0.23 0.68 inf;; +percheron percheron nom m s 0.02 2.3 0.02 1.22 +percheronne percheron adj f s 0 0.68 0 0.14 +percheronnes percheron nom f p 0.02 2.3 0 0.07 +percherons percheron nom m p 0.02 2.3 0 1.01 +perches perche nom f p 6.11 7.43 0.45 2.5 +perchettes perchette nom f p 0 0.07 0 0.07 +percheurs percheur adj m p 0.01 0 0.01 0 +perchiste perchiste nom s 0 0.07 0 0.07 +perchlorate perchlorate nom m s 0.04 0 0.04 0 +perchlorique perchlorique adj m s 0.01 0 0.01 0 +perchman perchman nom m s 0.14 0.07 0.14 0 +perchmans perchman nom m p 0.14 0.07 0 0.07 +perchoir perchoir nom m s 0.46 3.78 0.43 3.58 +perchoirs perchoir nom m p 0.46 3.78 0.03 0.2 +perchèrent percher ver 2.37 12.97 0 0.07 ind:pas:3p; +perché percher ver m s 2.37 12.97 1.12 4.59 par:pas; +perchée percher ver f s 2.37 12.97 0.49 2.97 par:pas; +perchées percher ver f p 2.37 12.97 0 0.68 par:pas; +perchés percher ver m p 2.37 12.97 0.1 2.7 par:pas; +percions percer ver 15.77 42.03 0 0.07 ind:imp:1p; +perclus perclus adj m 0.03 1.62 0.03 1.28 +percluse perclus adj f s 0.03 1.62 0 0.27 +percluses perclus adj f p 0.03 1.62 0 0.07 +perco perco nom m s 0.07 0.27 0.07 0.14 +percolateur percolateur nom m s 0.11 1.28 0.09 0.95 +percolateurs percolateur nom m p 0.11 1.28 0.02 0.34 +percolation percolation nom f s 0.01 0 0.01 0 +percoler percoler ver 0.01 0 0.01 0 inf; +percos perco nom m p 0.07 0.27 0 0.14 +percussion percussion nom f s 1.04 1.76 0.16 0.61 +percussionniste percussionniste nom s 0.09 0 0.08 0 +percussionnistes percussionniste nom p 0.09 0 0.01 0 +percussions percussion nom f p 1.04 1.76 0.89 1.15 +percuta percuter ver 3.87 2.77 0.01 0.61 ind:pas:3s; +percutait percuter ver 3.87 2.77 0.02 0.14 ind:imp:3s; +percutant percutant adj m s 0.38 1.01 0.32 0.41 +percutante percutant adj f s 0.38 1.01 0.01 0 +percutantes percutant adj f p 0.38 1.01 0.02 0.07 +percutants percutant adj m p 0.38 1.01 0.03 0.54 +percute percuter ver 3.87 2.77 0.49 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +percutent percuter ver 3.87 2.77 0.04 0.07 ind:pre:3p; +percuter percuter ver 3.87 2.77 0.69 0.74 inf; +percuterait percuter ver 3.87 2.77 0 0.07 cnd:pre:3s; +percutes percuter ver 3.87 2.77 0.26 0 ind:pre:2s; +percuteur percuteur nom m s 0.25 0.07 0.22 0.07 +percuteurs percuteur nom m p 0.25 0.07 0.02 0 +percutez percuter ver 3.87 2.77 0.06 0 imp:pre:2p;ind:pre:2p; +percuté percuter ver m s 3.87 2.77 2.07 0.54 par:pas; +percutée percuter ver f s 3.87 2.77 0.12 0 par:pas; +percutées percuter ver f p 3.87 2.77 0.02 0 par:pas; +percutés percuter ver m p 3.87 2.77 0.06 0 par:pas; +percèrent percer ver 15.77 42.03 0.1 0.47 ind:pas:3p; +percé percer ver m s 15.77 42.03 3.67 7.57 par:pas; +percée percée nom f s 1.37 3.99 1.2 3.58 +percées percer ver f p 15.77 42.03 0.46 2.03 par:pas; +percés percer ver m p 15.77 42.03 0.51 2.77 par:pas; +perd perdre ver 546.08 377.36 39.97 25 ind:pre:3s; +perdaient perdre ver 546.08 377.36 0.53 7.64 ind:imp:3p; +perdais perdre ver 546.08 377.36 2.85 4.8 ind:imp:1s;ind:imp:2s; +perdait perdre ver 546.08 377.36 2.52 24.73 ind:imp:3s; +perdant perdant nom m s 6.71 1.42 4.04 0.74 +perdante perdant nom f s 6.71 1.42 0.68 0.07 +perdants perdant nom m p 6.71 1.42 2 0.61 +perde perdre ver 546.08 377.36 5.62 4.19 sub:pre:1s;sub:pre:3s; +perdent perdre ver 546.08 377.36 8.12 8.72 ind:pre:3p; +perdes perdre ver 546.08 377.36 0.89 0.2 sub:pre:2s; +perdez perdre ver 546.08 377.36 15.04 2.16 imp:pre:2p;ind:pre:2p; +perdiez perdre ver 546.08 377.36 0.59 0.2 ind:imp:2p; +perdions perdre ver 546.08 377.36 0.43 0.88 ind:imp:1p; +perdirent perdre ver 546.08 377.36 0.35 1.82 ind:pas:3p; +perdis perdre ver 546.08 377.36 0.27 2.16 ind:pas:1s; +perdisse perdre ver 546.08 377.36 0 0.07 sub:imp:1s; +perdit perdre ver 546.08 377.36 1.39 11.35 ind:pas:3s; +perdition perdition nom f s 1.18 2.36 1.18 2.36 +perdons perdre ver 546.08 377.36 9.38 2.36 imp:pre:1p;ind:pre:1p; +perdra perdre ver 546.08 377.36 5.23 1.82 ind:fut:3s; +perdrai perdre ver 546.08 377.36 3.1 0.68 ind:fut:1s; +perdraient perdre ver 546.08 377.36 0.17 0.47 cnd:pre:3p; +perdrais perdre ver 546.08 377.36 2.26 1.01 cnd:pre:1s;cnd:pre:2s; +perdrait perdre ver 546.08 377.36 1.94 3.31 cnd:pre:3s; +perdras perdre ver 546.08 377.36 3.79 0.27 ind:fut:2s; +perdre perdre ver 546.08 377.36 131.47 97.7 inf; +perdreau perdreau nom m s 1.45 2.84 0.84 1.15 +perdreaux perdreau nom m p 1.45 2.84 0.61 1.69 +perdrez perdre ver 546.08 377.36 2.66 0.34 ind:fut:2p; +perdriez perdre ver 546.08 377.36 0.57 0.41 cnd:pre:2p; +perdrions perdre ver 546.08 377.36 0.11 0.68 cnd:pre:1p; +perdrix perdrix nom f 2.83 1.49 2.83 1.49 +perdrons perdre ver 546.08 377.36 1.08 0.34 ind:fut:1p; +perdront perdre ver 546.08 377.36 0.5 0.34 ind:fut:3p; +perds perdre ver 546.08 377.36 48.13 11.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +perdu perdre ver m s 546.08 377.36 217.23 115.07 par:pas; +perdue perdre ver f s 546.08 377.36 22.38 22.7 par:pas; +perdues perdu adj f p 36.46 58.45 3.43 6.15 +perdurable perdurable adj m s 0 0.07 0 0.07 +perdurait perdurer ver 0.73 0.74 0.01 0.14 ind:imp:3s; +perdure perdurer ver 0.73 0.74 0.32 0.27 ind:pre:3s; +perdurent perdurer ver 0.73 0.74 0.05 0.2 ind:pre:3p; +perdurer perdurer ver 0.73 0.74 0.27 0.07 inf; +perdurera perdurer ver 0.73 0.74 0.05 0 ind:fut:3s; +perduré perdurer ver m s 0.73 0.74 0.03 0.07 par:pas; +perdus perdre ver m p 546.08 377.36 12.18 13.31 par:pas; +perdîmes perdre ver 546.08 377.36 0.02 0.2 ind:pas:1p; +perdît perdre ver 546.08 377.36 0 0.61 sub:imp:3s; +perestroïka perestroïka nom f s 0 0.07 0 0.07 +perfectibilité perfectibilité nom f s 0 0.07 0 0.07 +perfectible perfectible adj f s 0 0.14 0 0.07 +perfectibles perfectible adj p 0 0.14 0 0.07 +perfection perfection nom f s 7.76 16.82 7.66 16.01 +perfectionna perfectionner ver 2.27 5.61 0 0.14 ind:pas:3s; +perfectionnaient perfectionner ver 2.27 5.61 0 0.07 ind:imp:3p; +perfectionnais perfectionner ver 2.27 5.61 0 0.07 ind:imp:1s; +perfectionnait perfectionner ver 2.27 5.61 0.02 0.14 ind:imp:3s; +perfectionnant perfectionner ver 2.27 5.61 0 0.47 par:pre; +perfectionne perfectionner ver 2.27 5.61 0.09 0.54 ind:pre:1s;ind:pre:3s; +perfectionnement perfectionnement nom m s 0.31 1.35 0.3 0.95 +perfectionnements perfectionnement nom m p 0.31 1.35 0.01 0.41 +perfectionnent perfectionner ver 2.27 5.61 0 0.07 ind:pre:3p; +perfectionner perfectionner ver 2.27 5.61 1.01 1.28 inf; +perfectionnerais perfectionner ver 2.27 5.61 0 0.07 cnd:pre:1s; +perfectionnions perfectionner ver 2.27 5.61 0.01 0 ind:imp:1p; +perfectionnisme perfectionnisme nom m s 0.21 0.14 0.21 0.14 +perfectionniste perfectionniste adj s 0.51 0.14 0.43 0.14 +perfectionnistes perfectionniste adj m p 0.51 0.14 0.09 0 +perfectionnèrent perfectionner ver 2.27 5.61 0.02 0 ind:pas:3p; +perfectionné perfectionner ver m s 2.27 5.61 0.73 1.62 par:pas; +perfectionnée perfectionner ver f s 2.27 5.61 0.06 0.34 par:pas; +perfectionnées perfectionner ver f p 2.27 5.61 0.13 0.34 par:pas; +perfectionnés perfectionner ver m p 2.27 5.61 0.19 0.47 par:pas; +perfections perfection nom f p 7.76 16.82 0.1 0.81 +perfecto perfecto nom m s 0.19 0.27 0.19 0.2 +perfectos perfecto nom m p 0.19 0.27 0 0.07 +perfide perfide adj s 2.48 4.86 1.69 3.18 +perfidement perfidement adv 0.1 0.61 0.1 0.61 +perfides perfide adj p 2.48 4.86 0.79 1.69 +perfidie perfidie nom f s 1.3 3.65 1.17 3.24 +perfidies perfidie nom f p 1.3 3.65 0.14 0.41 +perfora perforer ver 1.45 1.35 0 0.14 ind:pas:3s; +perforage perforage nom m s 0.01 0 0.01 0 +perforait perforer ver 1.45 1.35 0.01 0.14 ind:imp:3s; +perforant perforant adj m s 0.32 0.14 0.04 0 +perforante perforant adj f s 0.32 0.14 0.11 0.07 +perforantes perforant adj f p 0.32 0.14 0.05 0.07 +perforants perforant adj m p 0.32 0.14 0.12 0 +perforateur perforateur nom m s 0.05 0.14 0.05 0.07 +perforation perforation nom f s 0.67 0.88 0.53 0.47 +perforations perforation nom f p 0.67 0.88 0.14 0.41 +perforatrice perforateur nom f s 0.05 0.14 0 0.07 +perfore perforer ver 1.45 1.35 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +perforer perforer ver 1.45 1.35 0.21 0.47 inf; +perforera perforer ver 1.45 1.35 0.01 0 ind:fut:3s; +perforeuse perforeuse nom f s 0.04 0.14 0.04 0.14 +perforez perforer ver 1.45 1.35 0.01 0 imp:pre:2p; +perforions perforer ver 1.45 1.35 0 0.07 ind:imp:1p; +performance performance nom f s 4.71 4.19 3.48 2.23 +performances performance nom f p 4.71 4.19 1.23 1.96 +performant performant adj m s 0.9 0.41 0.48 0.14 +performante performant adj f s 0.9 0.41 0.11 0 +performantes performant adj f p 0.9 0.41 0.04 0.07 +performants performant adj m p 0.9 0.41 0.27 0.2 +performer performer nom m s 0 0.07 0 0.07 +perforé perforer ver m s 1.45 1.35 0.87 0.27 par:pas; +perforée perforer ver f s 1.45 1.35 0.07 0.14 par:pas; +perforées perforé adj f p 0.62 0.81 0.03 0.27 +perforés perforé adj m p 0.62 0.81 0.1 0.14 +perfuse perfuser ver 0.25 0 0.15 0 ind:pre:3s; +perfuser perfuser ver 0.25 0 0.08 0 inf; +perfusion perfusion nom f s 2.14 0.81 1.95 0.54 +perfusions perfusion nom f p 2.14 0.81 0.19 0.27 +perfusé perfuser ver m s 0.25 0 0.02 0 par:pas; +pergola pergola nom f s 0.1 0.68 0.1 0.68 +pergélisol pergélisol nom m s 0.01 0 0.01 0 +perla perler ver 0.38 7.77 0.01 0.14 ind:pas:3s; +perlaient perler ver 0.38 7.77 0 0.81 ind:imp:3p; +perlait perler ver 0.38 7.77 0 1.89 ind:imp:3s; +perlant perler ver 0.38 7.77 0 0.34 par:pre; +perle perle nom f s 10.57 23.85 4.13 7.3 +perlent perler ver 0.38 7.77 0.14 0.41 ind:pre:3p; +perler perler ver 0.38 7.77 0.02 1.42 inf; +perleront perler ver 0.38 7.77 0.01 0 ind:fut:3p; +perles perle nom f p 10.57 23.85 6.44 16.55 +perlimpinpin perlimpinpin nom m s 0.03 0.2 0.03 0.2 +perlière perlière adj f s 0.01 0 0.01 0 +perlières perlier adj f p 0 0.27 0 0.07 +perlot perlot nom m s 0 0.34 0 0.27 +perlots perlot nom m p 0 0.34 0 0.07 +perlouse perlouse nom f s 0 0.74 0 0.2 +perlouses perlouse nom f p 0 0.74 0 0.54 +perlouze perlouze nom f s 0 0.47 0 0.34 +perlouzes perlouze nom f p 0 0.47 0 0.14 +perlèrent perler ver 0.38 7.77 0 0.07 ind:pas:3p; +perlé perler ver m s 0.38 7.77 0.14 0.2 par:pas; +perlée perlé adj f s 0.11 1.01 0.01 0.34 +perlées perlé adj f p 0.11 1.01 0 0.14 +perlés perlé adj m p 0.11 1.01 0.1 0.07 +perm perm nom f s 1.38 1.01 1.38 1.01 +permafrost permafrost nom m s 0.07 0.14 0.07 0.14 +permalloy permalloy nom m s 0.01 0 0.01 0 +permane permaner ver 0 0.14 0 0.14 ind:pre:3s; +permanence permanence nom f s 5.87 12.64 5.85 12.3 +permanences permanence nom f p 5.87 12.64 0.02 0.34 +permanent permanent adj m s 8.86 14.8 3.73 7.97 +permanente permanent adj f s 8.86 14.8 4.03 5.2 +permanenter permanenter ver 0.07 0.14 0.02 0 inf; +permanentes permanent adj f p 8.86 14.8 0.63 0.41 +permanents permanent adj m p 8.86 14.8 0.48 1.22 +permanenté permanenter ver m s 0.07 0.14 0.01 0 par:pas; +permanentée permanenter ver f s 0.07 0.14 0.01 0 par:pas; +permanentés permanenter ver m p 0.07 0.14 0.01 0.14 par:pas; +permanganate permanganate nom m s 0.04 0.2 0.04 0.2 +perme perme nom f s 0.58 1.42 0.57 1.22 +permes perme nom f p 0.58 1.42 0.01 0.2 +permet permettre ver 172.86 184.19 22.88 23.99 ind:pre:3s; +permets permettre ver 172.86 184.19 16.7 6.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +permettaient permettre ver 172.86 184.19 0.17 7.43 ind:imp:3p; +permettais permettre ver 172.86 184.19 0.1 0.61 ind:imp:1s;ind:imp:2s; +permettait permettre ver 172.86 184.19 2.04 26.22 ind:imp:3s; +permettant permettre ver 172.86 184.19 2.23 6.15 par:pre; +permette permettre ver 172.86 184.19 1.68 2.03 sub:pre:1s;sub:pre:3s; +permettent permettre ver 172.86 184.19 4.38 7.23 ind:pre:3p; +permettes permettre ver 172.86 184.19 0.04 0 sub:pre:2s; +permettez permettre ver 172.86 184.19 48.28 10.14 imp:pre:2p;ind:pre:2p; +permettiez permettre ver 172.86 184.19 0.03 0.07 ind:imp:2p; +permettions permettre ver 172.86 184.19 0.02 0.27 ind:imp:1p; +permettons permettre ver 172.86 184.19 0.17 0.14 imp:pre:1p;ind:pre:1p; +permettra permettre ver 172.86 184.19 6.38 3.85 ind:fut:3s; +permettrai permettre ver 172.86 184.19 3.96 0.88 ind:fut:1s; +permettraient permettre ver 172.86 184.19 0.42 2.16 cnd:pre:3p; +permettrais permettre ver 172.86 184.19 1.11 0.54 cnd:pre:1s;cnd:pre:2s; +permettrait permettre ver 172.86 184.19 3.11 8.24 cnd:pre:3s; +permettras permettre ver 172.86 184.19 0.05 0.27 ind:fut:2s; +permettre permettre ver 172.86 184.19 26.32 25.81 inf;; +permettrez permettre ver 172.86 184.19 0.84 0.14 ind:fut:2p; +permettriez permettre ver 172.86 184.19 0.02 0.07 cnd:pre:2p; +permettrions permettre ver 172.86 184.19 0.01 0 cnd:pre:1p; +permettrons permettre ver 172.86 184.19 0.12 0 ind:fut:1p; +permettront permettre ver 172.86 184.19 0.91 1.62 ind:fut:3p; +permirent permettre ver 172.86 184.19 0.24 1.89 ind:pas:3p; +permis permettre ver m 172.86 184.19 28.04 35.54 ind:pas:1s;par:pas;par:pas; +permise permettre ver f s 172.86 184.19 0.94 1.28 par:pas; +permises permettre ver f p 172.86 184.19 0.3 0.47 par:pas; +permissent permettre ver 172.86 184.19 0 0.07 sub:imp:3p; +permissifs permissif adj m p 0.09 0.07 0.01 0.07 +permission permission nom f s 31.18 19.12 30.11 17.7 +permissionnaire permissionnaire nom s 0.16 1.96 0.01 0.47 +permissionnaires permissionnaire nom p 0.16 1.96 0.14 1.49 +permissions permission nom f p 31.18 19.12 1.07 1.42 +permissive permissif adj f s 0.09 0.07 0.08 0 +permissivité permissivité nom f s 0 0.14 0 0.14 +permit permettre ver 172.86 184.19 1.39 8.58 ind:pas:3s; +permutant permutant adj m s 0.01 0.07 0.01 0.07 +permutation permutation nom f s 0.37 0.81 0.26 0.41 +permutations permutation nom f p 0.37 0.81 0.11 0.41 +permute permuter ver 0.41 0.41 0.24 0 ind:pre:1s;ind:pre:3s; +permutent permuter ver 0.41 0.41 0 0.07 ind:pre:3p; +permuter permuter ver 0.41 0.41 0.13 0.2 inf; +permutèrent permuter ver 0.41 0.41 0 0.07 ind:pas:3p; +permuté permuter ver m s 0.41 0.41 0.03 0.07 par:pas; +perméabilité perméabilité nom f s 0.01 0 0.01 0 +perméable perméable adj s 0.23 1.01 0.19 0.88 +perméables perméable adj p 0.23 1.01 0.04 0.14 +permît permettre ver 172.86 184.19 0 2.23 sub:imp:3s; +pernicieuse pernicieux adj f s 0.4 2.16 0.2 0.74 +pernicieuses pernicieux adj f p 0.4 2.16 0.02 0.34 +pernicieux pernicieux adj m 0.4 2.16 0.18 1.08 +pernod pernod nom m s 0.17 4.73 0.17 4.46 +pernods pernod nom m p 0.17 4.73 0 0.27 +peroxydase peroxydase nom f s 0.01 0 0.01 0 +peroxyde peroxyde nom m s 0.17 0 0.17 0 +peroxydé peroxyder ver m s 0.15 0.07 0.15 0.07 par:pas; +perpendiculaire perpendiculaire adj s 0.23 1.89 0.21 1.35 +perpendiculairement perpendiculairement adv 0.02 1.15 0.02 1.15 +perpendiculaires perpendiculaire adj p 0.23 1.89 0.02 0.54 +perpette perpette nom f s 0.21 0.41 0.21 0.41 +perpignan perpignan nom m s 0 0.14 0 0.14 +perplexe perplexe adj s 2.27 10.81 2.03 9.39 +perplexes perplexe adj p 2.27 10.81 0.24 1.42 +perplexité perplexité nom f s 0.21 5.54 0.21 4.66 +perplexités perplexité nom f p 0.21 5.54 0 0.88 +perpète perpète adv 1.46 1.49 1.46 1.49 +perpètrent perpétrer ver 1.86 2.03 0.01 0 ind:pre:3p; +perpètres perpétrer ver 1.86 2.03 0 0.07 ind:pre:2s; +perpétra perpétrer ver 1.86 2.03 0.01 0 ind:pas:3s; +perpétrait perpétrer ver 1.86 2.03 0.01 0.14 ind:imp:3s; +perpétration perpétration nom f s 0.11 0.07 0.11 0.07 +perpétrer perpétrer ver 1.86 2.03 0.35 0.68 inf; +perpétrons perpétrer ver 1.86 2.03 0 0.07 ind:pre:1p; +perpétré perpétrer ver m s 1.86 2.03 0.94 0.41 par:pas; +perpétrée perpétrer ver f s 1.86 2.03 0.09 0.2 par:pas; +perpétrées perpétrer ver f p 1.86 2.03 0.09 0.07 par:pas; +perpétrés perpétrer ver m p 1.86 2.03 0.36 0.41 par:pas; +perpétua perpétuer ver 2.81 3.92 0.32 0 ind:pas:3s; +perpétuaient perpétuer ver 2.81 3.92 0 0.47 ind:imp:3p; +perpétuait perpétuer ver 2.81 3.92 0.01 0.47 ind:imp:3s; +perpétuant perpétuer ver 2.81 3.92 0.03 0.07 par:pre; +perpétuation perpétuation nom f s 0.04 0.54 0.04 0.54 +perpétue perpétuer ver 2.81 3.92 0.18 0.68 ind:pre:1s;ind:pre:3s; +perpétuel perpétuel adj m s 3 18.24 1.87 8.04 +perpétuelle perpétuel adj f s 3 18.24 0.83 7.43 +perpétuellement perpétuellement adv 0.26 4.66 0.26 4.66 +perpétuelles perpétuel adj f p 3 18.24 0.15 1.62 +perpétuels perpétuel adj m p 3 18.24 0.15 1.15 +perpétuent perpétuer ver 2.81 3.92 0.05 0.2 ind:pre:3p; +perpétuer perpétuer ver 2.81 3.92 1.73 1.62 inf; +perpétuera perpétuer ver 2.81 3.92 0.38 0 ind:fut:3s; +perpétuerait perpétuer ver 2.81 3.92 0 0.07 cnd:pre:3s; +perpétuité perpétuité nom f s 3.24 2.09 3.11 2.09 +perpétuités perpétuité nom f p 3.24 2.09 0.13 0 +perpétué perpétuer ver m s 2.81 3.92 0.09 0.27 par:pas; +perpétuée perpétuer ver f s 2.81 3.92 0.03 0 par:pas; +perpétués perpétuer ver m p 2.81 3.92 0 0.07 par:pas; +perquise perquise nom f s 0.14 0.54 0.14 0.54 +perquisition perquisition nom f s 3.75 2.3 3.54 1.82 +perquisitionne perquisitionner ver 1.3 0.74 0.14 0.2 ind:pre:1s;ind:pre:3s; +perquisitionnent perquisitionner ver 1.3 0.74 0.11 0 ind:pre:3p; +perquisitionner perquisitionner ver 1.3 0.74 0.72 0.47 inf; +perquisitionnera perquisitionner ver 1.3 0.74 0.01 0 ind:fut:3s; +perquisitionné perquisitionner ver m s 1.3 0.74 0.31 0.07 par:pas; +perquisitions perquisition nom f p 3.75 2.3 0.21 0.47 +perrier perrier nom m s 0.01 0 0.01 0 +perrières perrière nom f p 0 0.14 0 0.14 +perron perron nom m s 1.27 18.24 1.27 17.91 +perrons perron nom m p 1.27 18.24 0 0.34 +perroquet perroquet nom m s 5.55 8.78 4.39 7.36 +perroquets perroquet nom m p 5.55 8.78 1.17 1.42 +perruche perruche nom f s 0.78 2.84 0.47 0.81 +perruches perruche nom f p 0.78 2.84 0.31 2.03 +perruque perruque nom f s 9.68 9.59 8.03 7.03 +perruques perruque nom f p 9.68 9.59 1.65 2.57 +perruquier perruquier nom m s 0.07 0.27 0.04 0.14 +perruquiers perruquier nom m p 0.07 0.27 0.02 0.07 +perruquière perruquier nom f s 0.07 0.27 0.01 0.07 +perré perré nom m s 0 0.41 0 0.27 +perrés perré nom m p 0 0.41 0 0.14 +pers pers adj m 0.25 0.27 0.25 0.27 +persan persan adj m s 0.53 3.04 0.25 1.08 +persane persan adj f s 0.53 3.04 0.06 0.68 +persanes persan adj f p 0.53 3.04 0 0.54 +persans persan adj m p 0.53 3.04 0.22 0.74 +perse perse adj s 0.92 0.74 0.48 0.47 +perses perse adj p 0.92 0.74 0.44 0.27 +persienne persienne nom f s 0.37 7.16 0.01 0.41 +persiennes persienne nom f p 0.37 7.16 0.36 6.76 +persifla persifler ver 0.17 0.68 0 0.27 ind:pas:3s; +persiflage persiflage nom m s 0.19 0.41 0.19 0.34 +persiflages persiflage nom m p 0.19 0.41 0 0.07 +persiflait persifler ver 0.17 0.68 0 0.27 ind:imp:3s; +persifle persifler ver 0.17 0.68 0.02 0 ind:pre:3s; +persifler persifler ver 0.17 0.68 0.14 0.14 inf; +persifleur persifleur adj m s 0 0.41 0 0.2 +persifleurs persifleur nom m p 0 0.2 0 0.14 +persifleuse persifleur adj f s 0 0.41 0 0.14 +persiflé persifler ver m s 0.17 0.68 0.01 0 par:pas; +persil persil nom m s 1.75 2.36 1.75 2.36 +persillé persillé adj m s 0.01 0.41 0 0.34 +persillée persillé adj f s 0.01 0.41 0.01 0 +persillées persillé adj f p 0.01 0.41 0 0.07 +persique persique adj m s 0.17 0.34 0.17 0.34 +persista persister ver 3.66 15.41 0.02 0.81 ind:pas:3s; +persistai persister ver 3.66 15.41 0.01 0.07 ind:pas:1s; +persistaient persister ver 3.66 15.41 0.02 1.22 ind:imp:3p; +persistais persister ver 3.66 15.41 0.02 0.14 ind:imp:1s; +persistait persister ver 3.66 15.41 0.04 4.32 ind:imp:3s; +persistance persistance nom f s 0.17 1.76 0.17 1.76 +persistant persistant adj m s 0.67 2.64 0.17 1.22 +persistante persistant adj f s 0.67 2.64 0.31 1.08 +persistantes persistant adj f p 0.67 2.64 0.11 0.34 +persistants persistant adj m p 0.67 2.64 0.07 0 +persiste persister ver 3.66 15.41 1.11 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persistent persister ver 3.66 15.41 0.32 0.81 ind:pre:3p; +persister persister ver 3.66 15.41 0.27 0.88 inf; +persistera persister ver 3.66 15.41 0.12 0.07 ind:fut:3s; +persisterai persister ver 3.66 15.41 0.01 0.07 ind:fut:1s; +persisterait persister ver 3.66 15.41 0.01 0.07 cnd:pre:3s; +persisteriez persister ver 3.66 15.41 0 0.07 cnd:pre:2p; +persistes persister ver 3.66 15.41 0.47 0.34 ind:pre:2s; +persistez persister ver 3.66 15.41 1.06 0.74 imp:pre:2p;ind:pre:2p; +persistions persister ver 3.66 15.41 0 0.14 ind:imp:1p; +persistons persister ver 3.66 15.41 0.01 0.07 imp:pre:1p;ind:pre:1p; +persistèrent persister ver 3.66 15.41 0.01 0.07 ind:pas:3p; +persisté persister ver m s 3.66 15.41 0.14 0.54 par:pas; +perso perso adj s 2.38 0.2 2.33 0.2 +persona_grata persona_grata adj 0.01 0 0.01 0 +persona_non_grata persona_non_grata nom f 0.08 0.07 0.08 0.07 +personnage personnage nom m s 31.62 86.96 20.65 49.8 +personnage_clé personnage_clé nom m s 0.02 0 0.02 0 +personnages personnage nom m p 31.62 86.96 10.97 37.16 +personnalisaient personnaliser ver 0.3 0.47 0 0.07 ind:imp:3p; +personnalisation personnalisation nom f s 0.05 0 0.05 0 +personnalise personnaliser ver 0.3 0.47 0 0.07 ind:pre:3s; +personnalisent personnaliser ver 0.3 0.47 0 0.07 ind:pre:3p; +personnaliser personnaliser ver 0.3 0.47 0.1 0.07 inf; +personnalisez personnaliser ver 0.3 0.47 0.01 0 imp:pre:2p; +personnalisme personnalisme nom m s 0 0.2 0 0.2 +personnalisons personnaliser ver 0.3 0.47 0.01 0 imp:pre:1p; +personnalisé personnalisé adj m s 0.64 0.27 0.39 0.07 +personnalisée personnalisé adj f s 0.64 0.27 0.2 0.07 +personnalisées personnalisé adj f p 0.64 0.27 0.05 0.14 +personnalité personnalité nom f s 16.9 19.86 13.85 13.24 +personnalités personnalité nom f p 16.9 19.86 3.04 6.62 +personne personne pro_ind m s 577.6 312.16 577.6 312.16 +personnel personnel adj m s 61.02 50 28.48 18.38 +personnelle personnel adj f s 61.02 50 15.28 17.3 +personnellement personnellement adv 18.39 14.93 18.39 14.93 +personnelles personnel adj f p 61.02 50 7.66 7.36 +personnels personnel adj m p 61.02 50 9.6 6.96 +personnes personne nom_sup f p 296.74 209.8 105.79 63.85 +personnifiaient personnifier ver 0.28 0.74 0 0.07 ind:imp:3p; +personnifiait personnifier ver 0.28 0.74 0.03 0.07 ind:imp:3s; +personnifiant personnifier ver 0.28 0.74 0 0.07 par:pre; +personnification personnification nom f s 0.3 0.2 0.3 0.14 +personnifications personnification nom f p 0.3 0.2 0 0.07 +personnifie personnifier ver 0.28 0.74 0.05 0.14 ind:pre:1s;ind:pre:3s; +personnifier personnifier ver 0.28 0.74 0.04 0.07 inf; +personnifié personnifié adj m s 0.3 0.54 0.17 0.41 +personnifiée personnifié adj f s 0.3 0.54 0.14 0.14 +persos perso adj p 2.38 0.2 0.06 0 +perspective perspective nom f s 7.33 36.76 5.47 27.64 +perspectives perspective nom f p 7.33 36.76 1.86 9.12 +perspicace perspicace adj s 2.31 2.5 2.16 1.69 +perspicaces perspicace adj m p 2.31 2.5 0.15 0.81 +perspicacité perspicacité nom f s 0.95 1.28 0.95 1.28 +perspiration perspiration nom f s 0.03 0 0.03 0 +persuada persuader ver 19.86 36.55 0.24 1.76 ind:pas:3s; +persuadai persuader ver 19.86 36.55 0.01 0.68 ind:pas:1s; +persuadaient persuader ver 19.86 36.55 0.02 0.34 ind:imp:3p; +persuadais persuader ver 19.86 36.55 0.01 0.88 ind:imp:1s; +persuadait persuader ver 19.86 36.55 0.28 1.15 ind:imp:3s; +persuadant persuader ver 19.86 36.55 0.24 1.22 par:pre; +persuade persuader ver 19.86 36.55 1.55 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persuadent persuader ver 19.86 36.55 0.36 0.07 ind:pre:3p; +persuader persuader ver 19.86 36.55 4.5 12.23 inf; +persuadera persuader ver 19.86 36.55 0.29 0.07 ind:fut:3s; +persuaderai persuader ver 19.86 36.55 0.03 0.07 ind:fut:1s; +persuaderais persuader ver 19.86 36.55 0.02 0.07 cnd:pre:1s; +persuaderait persuader ver 19.86 36.55 0 0.14 cnd:pre:3s; +persuaderas persuader ver 19.86 36.55 0.03 0 ind:fut:2s; +persuaderez persuader ver 19.86 36.55 0.05 0 ind:fut:2p; +persuaderons persuader ver 19.86 36.55 0.02 0 ind:fut:1p; +persuadez persuader ver 19.86 36.55 0.83 0 imp:pre:2p;ind:pre:2p; +persuadiez persuader ver 19.86 36.55 0.04 0 ind:imp:2p; +persuadons persuader ver 19.86 36.55 0.04 0.07 imp:pre:1p;ind:pre:1p; +persuadèrent persuader ver 19.86 36.55 0.01 0.2 ind:pas:3p; +persuadé persuader ver m s 19.86 36.55 7.17 10.07 par:pas; +persuadée persuader ver f s 19.86 36.55 2.65 3.78 ind:imp:3s;par:pas; +persuadées persuader ver f p 19.86 36.55 0.01 0 par:pas; +persuadés persuader ver m p 19.86 36.55 1.46 1.62 par:pas; +persuasif persuasif adj m s 1.28 2.5 0.8 1.15 +persuasifs persuasif adj m p 1.28 2.5 0.16 0.27 +persuasion persuasion nom f s 0.81 2.09 0.81 2.09 +persuasive persuasif adj f s 1.28 2.5 0.33 0.81 +persuasives persuasif adj f p 1.28 2.5 0 0.27 +persécutaient persécuter ver 4.52 4.19 0 0.07 ind:imp:3p; +persécutait persécuter ver 4.52 4.19 0.05 0.07 ind:imp:3s; +persécutant persécuter ver 4.52 4.19 0.01 0.34 par:pre; +persécute persécuter ver 4.52 4.19 1.22 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persécutent persécuter ver 4.52 4.19 0.47 0.27 ind:pre:3p; +persécuter persécuter ver 4.52 4.19 0.75 0.47 inf; +persécuteraient persécuter ver 4.52 4.19 0 0.07 cnd:pre:3p; +persécuterez persécuter ver 4.52 4.19 0.14 0 ind:fut:2p; +persécutes persécuter ver 4.52 4.19 0.16 0 ind:pre:2s; +persécuteur persécuteur nom m s 0.25 0.95 0.05 0.2 +persécuteurs persécuteur nom m p 0.25 0.95 0.2 0.68 +persécutez persécuter ver 4.52 4.19 0.08 0 imp:pre:2p;ind:pre:2p; +persécution persécution nom f s 2.4 4.66 1.79 2.09 +persécutions persécution nom f p 2.4 4.66 0.61 2.57 +persécutrices persécuteur nom f p 0.25 0.95 0 0.07 +persécuté persécuter ver m s 4.52 4.19 0.6 1.49 par:pas; +persécutée persécuter ver f s 4.52 4.19 0.37 0.2 par:pas; +persécutées persécuter ver f p 4.52 4.19 0.04 0.2 par:pas; +persécutés persécuter ver m p 4.52 4.19 0.63 0.47 par:pas; +perséides perséides nom f p 0.01 0 0.01 0 +persévère persévérer ver 1.47 3.24 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persévères persévérer ver 1.47 3.24 0.12 0 ind:pre:2s; +persévéra persévérer ver 1.47 3.24 0 0.14 ind:pas:3s; +persévérai persévérer ver 1.47 3.24 0 0.27 ind:pas:1s; +persévéraient persévérer ver 1.47 3.24 0 0.07 ind:imp:3p; +persévérait persévérer ver 1.47 3.24 0.01 0.2 ind:imp:3s; +persévéramment persévéramment adv 0 0.07 0 0.07 +persévérance persévérance nom f s 0.75 2.09 0.75 2.09 +persévérant persévérant adj m s 0.36 0.34 0.3 0.14 +persévérante persévérant adj f s 0.36 0.34 0.04 0 +persévérantes persévérant adj f p 0.36 0.34 0 0.14 +persévérants persévérant adj m p 0.36 0.34 0.02 0.07 +persévérer persévérer ver 1.47 3.24 0.48 1.28 inf; +persévérerai persévérer ver 1.47 3.24 0.02 0 ind:fut:1s; +persévérerait persévérer ver 1.47 3.24 0.01 0 cnd:pre:3s; +persévérez persévérer ver 1.47 3.24 0.24 0.2 imp:pre:2p;ind:pre:2p; +persévériez persévérer ver 1.47 3.24 0 0.07 ind:imp:2p; +persévérions persévérer ver 1.47 3.24 0.01 0 ind:imp:1p; +persévérons persévérer ver 1.47 3.24 0.04 0.2 imp:pre:1p;ind:pre:1p; +persévéré persévérer ver m s 1.47 3.24 0.12 0.27 par:pas; +perte perte nom f s 37.8 36.28 30.2 26.62 +pertes perte nom f p 37.8 36.28 7.6 9.66 +pertinemment pertinemment adv 0.77 1.49 0.77 1.49 +pertinence pertinence nom f s 0.57 0.34 0.57 0.34 +pertinent pertinent adj m s 2.22 1.28 1.1 0.41 +pertinente pertinent adj f s 2.22 1.28 0.58 0.27 +pertinentes pertinent adj f p 2.22 1.28 0.33 0.41 +pertinents pertinent adj m p 2.22 1.28 0.21 0.2 +pertuis pertuis nom m 0 0.34 0 0.34 +pertuisane pertuisane nom f s 0 0.2 0 0.07 +pertuisanes pertuisane nom f p 0 0.2 0 0.14 +perturba perturber ver 11.79 3.58 0.03 0 ind:pas:3s; +perturbaient perturber ver 11.79 3.58 0.01 0.07 ind:imp:3p; +perturbait perturber ver 11.79 3.58 0.28 0.27 ind:imp:3s; +perturbant perturbant adj m s 1 0.14 0.83 0.07 +perturbante perturbant adj f s 1 0.14 0.13 0 +perturbants perturbant adj m p 1 0.14 0.04 0.07 +perturbateur perturbateur adj m s 0.36 0.54 0.27 0.34 +perturbateurs perturbateur nom m p 0.17 0.2 0.06 0 +perturbation perturbation nom f s 1.79 1.55 1.2 0.47 +perturbations perturbation nom f p 1.79 1.55 0.59 1.08 +perturbatrice perturbateur adj f s 0.36 0.54 0.04 0.07 +perturbe perturber ver 11.79 3.58 2.54 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +perturbent perturber ver 11.79 3.58 0.32 0.07 ind:pre:3p; +perturber perturber ver 11.79 3.58 2.66 1.15 inf; +perturbera perturber ver 11.79 3.58 0.1 0 ind:fut:3s; +perturberait perturber ver 11.79 3.58 0.12 0 cnd:pre:3s; +perturberont perturber ver 11.79 3.58 0.02 0 ind:fut:3p; +perturbez perturber ver 11.79 3.58 0.12 0 ind:pre:2p; +perturbé perturber ver m s 11.79 3.58 2.83 1.01 par:pas; +perturbée perturber ver f s 11.79 3.58 2.08 0.34 par:pas; +perturbées perturber ver f p 11.79 3.58 0.2 0 par:pas; +perturbés perturbé adj m p 3.81 0.74 0.52 0.34 +pervenche pervenche adj 0.33 1.08 0.33 1.08 +pervenches pervenche nom f p 0.37 0.81 0.08 0.47 +pervers pervers nom m 8.02 0.88 7.77 0.54 +perverse pervers adj f s 5.83 6.15 1.27 2.23 +perversement perversement adv 0 0.14 0 0.14 +perverses pervers adj f p 5.83 6.15 0.41 0.54 +perversion perversion nom f s 3 1.69 1.61 1.22 +perversions perversion nom f p 3 1.69 1.39 0.47 +perversité perversité nom f s 0.72 1.49 0.72 1.49 +perverti perverti adj m s 0.74 0.61 0.45 0.14 +pervertie pervertir ver f s 1.55 1.49 0.17 0.2 par:pas; +perverties perverti adj f p 0.74 0.61 0.03 0.07 +pervertir pervertir ver 1.55 1.49 0.65 0.74 inf; +pervertis perverti adj m p 0.74 0.61 0.16 0.2 +pervertissaient pervertir ver 1.55 1.49 0 0.07 ind:imp:3p; +pervertissait pervertir ver 1.55 1.49 0 0.07 ind:imp:3s; +pervertissant pervertir ver 1.55 1.49 0.01 0 par:pre; +pervertisse pervertir ver 1.55 1.49 0.02 0 sub:pre:1s;sub:pre:3s; +pervertit pervertir ver 1.55 1.49 0.29 0 ind:pre:3s; +perça percer ver 15.77 42.03 0.04 1.15 ind:pas:3s; +perçage perçage nom m s 0.03 0.07 0.03 0.07 +perçaient percer ver 15.77 42.03 0.23 2.03 ind:imp:3p; +perçais percer ver 15.77 42.03 0.01 0.2 ind:imp:1s; +perçait percer ver 15.77 42.03 0.31 5 ind:imp:3s; +perçant perçant adj m s 0.9 5.74 0.41 2.5 +perçante perçant adj f s 0.9 5.74 0.22 0.81 +perçantes perçant adj f p 0.9 5.74 0 0.14 +perçants perçant adj m p 0.9 5.74 0.27 2.3 +perçois percevoir ver 7.41 41.01 1.5 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +perçoit percevoir ver 7.41 41.01 0.9 4.73 ind:pre:3s; +perçoive percevoir ver 7.41 41.01 0.13 0.47 sub:pre:1s;sub:pre:3s; +perçoivent percevoir ver 7.41 41.01 0.26 0.81 ind:pre:3p; +perçons percer ver 15.77 42.03 0.05 0 imp:pre:1p;ind:pre:1p; +perçu percevoir ver m s 7.41 41.01 1.41 4.53 par:pas; +perçue percevoir ver f s 7.41 41.01 0.4 0.81 par:pas; +perçues perçu adj f p 0.31 1.35 0.06 0.07 +perçurent percevoir ver 7.41 41.01 0.01 0.41 ind:pas:3p; +perçus percevoir ver m p 7.41 41.01 0.24 1.35 ind:pas:1s;par:pas; +perçut percevoir ver 7.41 41.01 0.05 4.32 ind:pas:3s; +perçât percer ver 15.77 42.03 0 0.07 sub:imp:3s; +perçût percevoir ver 7.41 41.01 0 0.14 sub:imp:3s; +pesa peser ver 23.41 70.88 0.01 2.16 ind:pas:3s; +pesage pesage nom m s 0 0.68 0 0.68 +pesai peser ver 23.41 70.88 0 0.07 ind:pas:1s; +pesaient peser ver 23.41 70.88 0.35 3.99 ind:imp:3p; +pesais peser ver 23.41 70.88 0.27 0.81 ind:imp:1s;ind:imp:2s; +pesait peser ver 23.41 70.88 1.95 18.72 ind:imp:3s; +pesamment pesamment adv 0 4.93 0 4.93 +pesant pesant adj m s 2.62 17.64 1.21 6.76 +pesante pesant adj f s 2.62 17.64 0.79 6.69 +pesantes pesant adj f p 2.62 17.64 0.01 2.16 +pesanteur pesanteur nom f s 1.12 6.96 1.12 6.69 +pesanteurs pesanteur nom f p 1.12 6.96 0 0.27 +pesants pesant adj m p 2.62 17.64 0.61 2.03 +peser peser ver 23.41 70.88 3.92 13.72 inf; +peseta peseta nom f s 6.92 0.68 0.11 0.07 +pesetas peseta nom f p 6.92 0.68 6.81 0.61 +peseurs peseur nom m p 0 0.07 0 0.07 +pesez peser ver 23.41 70.88 0.88 0.14 imp:pre:2p;ind:pre:2p; +pesions peser ver 23.41 70.88 0 0.14 ind:imp:1p; +peso peso nom m s 11.02 0.81 0.73 0.2 +peson peson nom m s 0 0.2 0 0.2 +pesons peser ver 23.41 70.88 0.16 0.27 imp:pre:1p;ind:pre:1p; +pesos peso nom m p 11.02 0.81 10.29 0.61 +pessah pessah nom s 0.03 0 0.03 0 +pessaire pessaire nom m s 0.01 0 0.01 0 +pesse pesse nom f s 0.01 0 0.01 0 +pessimisme pessimisme nom m s 0.75 2.3 0.75 2.3 +pessimiste pessimiste adj s 1.45 3.65 1.38 2.5 +pessimistes pessimiste nom p 0.41 0.81 0.07 0.2 +pesta pester ver 0.34 4.59 0 0.54 ind:pas:3s; +pestaient pester ver 0.34 4.59 0 0.07 ind:imp:3p; +pestais pester ver 0.34 4.59 0.03 0.14 ind:imp:1s;ind:imp:2s; +pestait pester ver 0.34 4.59 0.01 1.15 ind:imp:3s; +pestant pester ver 0.34 4.59 0.02 1.08 par:pre; +peste peste ono 0.4 0.2 0.4 0.2 +pestent pester ver 0.34 4.59 0.16 0.2 ind:pre:3p; +pester pester ver 0.34 4.59 0.02 0.61 inf; +pestes peste nom f p 16.95 8.31 0.27 0.07 +pesteuse pesteux adj f s 0 0.07 0 0.07 +pestez pester ver 0.34 4.59 0 0.07 ind:pre:2p; +pesticide pesticide nom m s 1.11 0 0.21 0 +pesticides pesticide nom m p 1.11 0 0.9 0 +pestiféré pestiféré nom m s 0.71 1.01 0.15 0.2 +pestiférée pestiféré nom f s 0.71 1.01 0.21 0.07 +pestiférées pestiféré nom f p 0.71 1.01 0 0.07 +pestiférés pestiféré nom m p 0.71 1.01 0.36 0.68 +pestilence pestilence nom f s 0.08 1.22 0.06 1.15 +pestilences pestilence nom f p 0.08 1.22 0.02 0.07 +pestilentiel pestilentiel adj m s 0.63 1.08 0.27 0.14 +pestilentielle pestilentiel adj f s 0.63 1.08 0.04 0.54 +pestilentielles pestilentiel adj f p 0.63 1.08 0.3 0.27 +pestilentiels pestilentiel adj m p 0.63 1.08 0.01 0.14 +pesté pester ver m s 0.34 4.59 0 0.2 par:pas; +pesât peser ver 23.41 70.88 0 0.07 sub:imp:3s; +pesèrent peser ver 23.41 70.88 0.01 0.07 ind:pas:3p; +pesé peser ver m s 23.41 70.88 0.97 5.27 par:pas; +pesée pesée nom f s 0.61 2.36 0.61 2.09 +pesées peser ver f p 23.41 70.88 0.02 0.14 par:pas; +pesés peser ver m p 23.41 70.88 0.02 0.61 par:pas; +pet pet nom m s 4.3 5.41 3.51 4.53 +pet_de_loup pet_de_loup nom m s 0 0.07 0 0.07 +petiot petiot adj m s 0.69 1.49 0.56 0.81 +petiote petiot adj f s 0.69 1.49 0.11 0.54 +petiots petiot adj m p 0.69 1.49 0.03 0.14 +petit petit adj m s 1106.8 1541.96 573.72 653.78 +petit_beurre petit_beurre nom m s 0 0.95 0 0.14 +petit_bourgeois petit_bourgeois adj m 0.77 1.42 0.77 1.42 +petit_cousin petit_cousin nom m s 0 0.07 0 0.07 +petit_déjeuner petit_déjeuner nom m s 13.51 0.07 13.37 0 +petit_fils petit_fils nom m 12.9 12.7 12.5 11.01 +petit_four petit_four nom m s 0.08 0.07 0.03 0 +petit_gris petit_gris nom m 0.51 0 0.27 0 +petit_lait petit_lait nom m s 0.05 0.54 0.05 0.54 +petit_maître petit_maître nom m s 0.2 0.07 0.2 0.07 +petit_neveu petit_neveu nom m s 0.04 0.95 0.04 0.61 +petit_nègre petit_nègre nom m s 0 0.14 0 0.14 +petit_salé petit_salé nom m s 0 0.07 0 0.07 +petit_suisse petit_suisse nom m s 0.01 0.2 0.01 0 +petite petit adj f s 1106.8 1541.96 355.66 491.82 +petite_bourgeoise petite_bourgeoise adj f s 0.11 0.27 0.11 0.27 +petite_cousine petite_cousine nom f s 0 0.14 0 0.14 +petite_fille petite_fille nom f s 5.3 6.35 4.97 5.74 +petite_nièce petite_nièce nom f s 0.02 0.2 0.02 0.2 +petitement petitement adv 0.14 1.15 0.14 1.15 +petites petit adj f p 1106.8 1541.96 64.5 152.16 +petite_bourgeoise petite_bourgeoise nom f p 0 0.34 0 0.14 +petite_fille petite_fille nom f p 5.3 6.35 0.33 0.61 +petitesse petitesse nom f s 0.09 2.16 0.08 1.82 +petitesses petitesse nom f p 0.09 2.16 0.01 0.34 +petits petit adj m p 1106.8 1541.96 112.92 244.19 +petit_beurre petit_beurre nom m p 0 0.95 0 0.81 +petit_bourgeois petit_bourgeois nom m p 0.71 2.16 0.32 1.42 +petit_déjeuner petit_déjeuner nom m p 13.51 0.07 0.14 0.07 +petit_enfant petit_enfant nom m p 5.76 3.04 5.76 3.04 +petit_fils petit_fils nom m p 12.9 12.7 0.4 1.69 +petit_four petit_four nom m p 0.08 0.07 0.04 0.07 +petit_gris petit_gris nom m p 0.51 0 0.25 0 +petit_neveu petit_neveu nom m p 0.04 0.95 0 0.34 +petit_pois petit_pois nom m p 0.1 0 0.1 0 +petit_suisse petit_suisse nom m p 0.01 0.2 0 0.2 +peton peton nom m s 0.09 0.47 0.01 0.07 +petons peton nom m p 0.09 0.47 0.08 0.41 +petros petro nom m p 0 1.28 0 1.28 +pets pet nom m p 4.3 5.41 0.79 0.88 +pet_de_nonne pet_de_nonne nom m p 0 0.41 0 0.41 +petzouille petzouille nom s 0.01 0.2 0 0.07 +petzouilles petzouille nom p 0.01 0.2 0.01 0.14 +peu peu nom_sup m 894.78 1023.38 894.78 1023.38 +peu_ou_prou peu_ou_prou adv 0.4 0.68 0.4 0.68 +peuchère peuchère ono 0.14 0.41 0.14 0.41 +peuh peuh ono 0.08 1.96 0.08 1.96 +peuhl peuhl adj m s 0 0.14 0 0.14 +peul peul adj m s 0.02 0.07 0.02 0.07 +peulh peulh nom s 0 0.07 0 0.07 +peupla peupler ver 4.58 19.66 0.02 0.34 ind:pas:3s; +peuplade peuplade nom f s 0.16 1.35 0.01 0.61 +peuplades peuplade nom f p 0.16 1.35 0.15 0.74 +peuplaient peupler ver 4.58 19.66 0 1.28 ind:imp:3p; +peuplait peupler ver 4.58 19.66 0.04 1.15 ind:imp:3s; +peuplant peupler ver 4.58 19.66 0.12 0.47 par:pre; +peuple peuple nom m s 111.36 107.3 105.65 89.39 +peuplement peuplement nom m s 0.04 0.88 0.04 0.47 +peuplements peuplement nom m p 0.04 0.88 0 0.41 +peuplent peupler ver 4.58 19.66 0.56 1.62 ind:pre:3p; +peupler peupler ver 4.58 19.66 0.23 1.22 inf; +peuplera peupler ver 4.58 19.66 0.01 0 ind:fut:3s; +peupleraie peupleraie nom f s 0 0.07 0 0.07 +peuplerait peupler ver 4.58 19.66 0 0.14 cnd:pre:3s; +peupleront peupler ver 4.58 19.66 0.11 0.07 ind:fut:3p; +peuples peuple nom m p 111.36 107.3 5.71 17.91 +peuplier peuplier nom m s 1.08 9.93 0.7 3.04 +peupliers peuplier nom m p 1.08 9.93 0.37 6.89 +peuplèrent peupler ver 4.58 19.66 0.01 0.07 ind:pas:3p; +peuplé peupler ver m s 4.58 19.66 1.48 5.27 par:pas; +peuplée peupler ver f s 4.58 19.66 0.8 4.59 par:pas; +peuplées peupler ver f p 4.58 19.66 0.23 1.35 par:pas; +peuplés peupler ver m p 4.58 19.66 0.05 0.74 par:pas; +peur peur nom f s 557.21 311.69 551.83 307.23 +peureuse peureux adj f s 2.37 3.51 0.99 1.15 +peureusement peureusement adv 0 0.88 0 0.88 +peureuses peureux adj f p 2.37 3.51 0.12 0.2 +peureux peureux adj m 2.37 3.51 1.25 2.16 +peurs peur nom f p 557.21 311.69 5.38 4.46 +peut pouvoir ver_sup 5524.47 2659.8 1209.64 508.99 ind:pre:3s; +peut_être peut_être adv_sup 907.68 697.97 907.68 697.97 +peuvent pouvoir ver_sup 5524.47 2659.8 133.3 69.32 ind:pre:3p; +peux pouvoir ver_sup 5524.47 2659.8 1743.78 245.41 ind:pre:1s;ind:pre:2s; +peyotl peyotl nom m s 0.16 0.07 0.16 0.07 +pfennig pfennig nom m s 0.61 0.14 0.01 0.07 +pfennigs pfennig nom m p 0.61 0.14 0.6 0.07 +pff pff ono 1.59 0.41 1.59 0.41 +pfft pfft ono 0.98 0.27 0.98 0.27 +pfutt pfutt ono 0 0.07 0 0.07 +ph ph nom m s 0.3 0.2 0.3 0.2 +phacochère phacochère nom m s 0.5 0.2 0.47 0.14 +phacochères phacochère nom m p 0.5 0.2 0.03 0.07 +phagocyte phagocyte nom m s 0.04 0.07 0.01 0 +phagocyter phagocyter ver 0 0.14 0 0.07 inf; +phagocytes phagocyte nom m p 0.04 0.07 0.03 0.07 +phalange phalange nom f s 1 5.2 0.58 1.69 +phalanges phalange nom f p 1 5.2 0.42 3.51 +phalangettes phalangette nom f p 0 0.14 0 0.14 +phalangine phalangine nom f s 0 0.07 0 0.07 +phalangisme phalangisme nom m s 0 0.07 0 0.07 +phalangiste phalangiste nom s 0.01 0.2 0 0.07 +phalangistes phalangiste nom p 0.01 0.2 0.01 0.14 +phalanstère phalanstère nom m s 0 0.41 0 0.41 +phalarope phalarope nom m s 0.05 0 0.05 0 +phallique phallique adj s 0.43 1.08 0.38 0.95 +phalliques phallique adj p 0.43 1.08 0.05 0.14 +phallo phallo nom m s 0.14 0.07 0.14 0.07 +phallocentrique phallocentrique adj s 0.01 0 0.01 0 +phallocrate phallocrate adj f s 0.03 0.14 0.03 0.14 +phallocratie phallocratie nom f s 0.01 0.14 0.01 0.14 +phallocratique phallocratique adj m s 0 0.14 0 0.07 +phallocratiques phallocratique adj p 0 0.14 0 0.07 +phallologie phallologie nom f s 0 0.14 0 0.14 +phallophore phallophore nom m s 0 0.14 0 0.14 +phalloïdes phalloïde adj p 0 0.07 0 0.07 +phallus phallus nom m 0.44 1.42 0.44 1.42 +phalène phalène nom f s 0.06 0.68 0.05 0.34 +phalènes phalène nom f p 0.06 0.68 0.01 0.34 +phalère phalère nom f s 0.05 0.2 0.05 0.2 +phantasme phantasme nom m s 0.27 2.36 0 0.41 +phantasmes phantasme nom m p 0.27 2.36 0.27 1.96 +phanères phanère nom m p 0 0.07 0 0.07 +phanérogames phanérogame nom f p 0 0.14 0 0.14 +pharamineuses pharamineux adj f p 0.01 0.34 0 0.14 +pharamineux pharamineux adj m s 0.01 0.34 0.01 0.2 +pharaon pharaon nom m s 3.63 2.64 2.5 1.62 +pharaonique pharaonique adj m s 0.02 0.68 0.01 0.61 +pharaoniques pharaonique adj f p 0.02 0.68 0.01 0.07 +pharaonnes pharaon nom f p 3.63 2.64 0 0.07 +pharaons pharaon nom m p 3.63 2.64 1.12 0.95 +phare phare nom m s 11.88 31.49 7.17 10.68 +phares phare nom m p 11.88 31.49 4.7 20.81 +pharisaïque pharisaïque adj s 0.06 0.07 0.04 0 +pharisaïques pharisaïque adj f p 0.06 0.07 0.02 0.07 +pharisaïsme pharisaïsme nom m s 0.01 0.2 0.01 0.14 +pharisaïsmes pharisaïsme nom m p 0.01 0.2 0 0.07 +pharisien pharisien nom m s 1.46 0.74 0.02 0.14 +pharisiens pharisien nom m p 1.46 0.74 1.44 0.61 +pharma pharma nom s 0.04 0.14 0.04 0.14 +pharmaceutique pharmaceutique adj s 2.82 1.42 1.48 0.54 +pharmaceutiques pharmaceutique adj p 2.82 1.42 1.35 0.88 +pharmacie pharmacie nom f s 10.46 10.2 10.08 9.32 +pharmacien pharmacien nom m s 3.71 7.3 3.19 4.86 +pharmacienne pharmacien nom f s 3.71 7.3 0.35 1.76 +pharmaciens pharmacien nom m p 3.71 7.3 0.17 0.68 +pharmacies pharmacie nom f p 10.46 10.2 0.38 0.88 +pharmaco pharmaco nom f s 0.01 0.2 0.01 0.2 +pharmacognosie pharmacognosie nom f s 0.01 0 0.01 0 +pharmacologie pharmacologie nom f s 0.37 0.07 0.37 0.07 +pharmacologique pharmacologique adj m s 0.02 0 0.02 0 +pharmacomanie pharmacomanie nom f s 0 0.14 0 0.14 +pharmacopée pharmacopée nom f s 0.25 0.2 0.25 0.2 +pharmacothérapie pharmacothérapie nom f s 0.03 0.07 0.03 0.07 +pharyngite pharyngite nom f s 0.01 0 0.01 0 +pharynx pharynx nom m 0.01 0.41 0.01 0.41 +phascolome phascolome nom m s 0.01 0 0.01 0 +phase phase nom f s 13.22 9.32 12.42 6.76 +phases phase nom f p 13.22 9.32 0.8 2.57 +phasmes phasme nom m p 0.01 0.07 0.01 0.07 +phaéton phaéton nom m s 0 0.27 0 0.27 +phi phi nom m 0.39 0.2 0.39 0.2 +philanthrope philanthrope nom s 0.87 0.68 0.84 0.54 +philanthropes philanthrope nom p 0.87 0.68 0.03 0.14 +philanthropie philanthropie nom f s 0.17 0.47 0.17 0.47 +philanthropique philanthropique adj s 0.07 0.54 0.03 0.27 +philanthropiques philanthropique adj f p 0.07 0.54 0.04 0.27 +philarète philarète adj s 0 0.07 0 0.07 +philarète philarète nom s 0 0.07 0 0.07 +philatélie philatélie nom f s 0.02 0 0.02 0 +philatéliste philatéliste nom s 0.12 0.27 0.11 0.14 +philatélistes philatéliste nom p 0.12 0.27 0.01 0.14 +philharmonie philharmonie nom f s 0.21 0 0.21 0 +philharmonique philharmonique adj m s 0.59 0.34 0.59 0.34 +philhellène philhellène nom m s 0 0.14 0 0.07 +philhellènes philhellène nom m p 0 0.14 0 0.07 +philippin philippin nom m s 0.25 0.41 0.03 0.41 +philippine philippin adj f s 0.41 1.15 0.23 0.2 +philippines philippin adj f p 0.41 1.15 0.13 0.54 +philippins philippin nom m p 0.25 0.41 0.22 0 +philistin philistin nom m s 0.12 0.07 0.05 0.07 +philistins philistin nom m p 0.12 0.07 0.06 0 +philo philo nom f s 2.35 3.24 2.35 3.18 +philodendron philodendron nom m s 0.03 0.74 0.03 0.34 +philodendrons philodendron nom m p 0.03 0.74 0 0.41 +philologie philologie nom f s 0.21 0.74 0.21 0.74 +philologique philologique adj f s 0 0.14 0 0.07 +philologiques philologique adj f p 0 0.14 0 0.07 +philologue philologue nom s 0.26 1.35 0.26 0.88 +philologues philologue nom p 0.26 1.35 0 0.47 +philos philo nom f p 2.35 3.24 0 0.07 +philosophaient philosopher ver 0.64 2.09 0 0.14 ind:imp:3p; +philosophaillerie philosophaillerie nom f s 0 0.14 0 0.14 +philosophait philosopher ver 0.64 2.09 0 0.27 ind:imp:3s; +philosophal philosophal adj m s 0.07 0.68 0 0.07 +philosophale philosophal adj f s 0.07 0.68 0.07 0.54 +philosophales philosophal adj f p 0.07 0.68 0 0.07 +philosophant philosopher ver 0.64 2.09 0 0.07 par:pre; +philosophard philosophard adj m s 0 0.07 0 0.07 +philosophe philosophe nom s 6.02 19.39 4.11 11.62 +philosopher philosopher ver 0.64 2.09 0.37 0.81 inf; +philosophes philosophe nom p 6.02 19.39 1.91 7.77 +philosophie philosophie nom f s 10.32 24.73 9.82 24.32 +philosophies philosophie nom f p 10.32 24.73 0.5 0.41 +philosophique philosophique adj s 1.48 4.19 1.06 2.5 +philosophiquement philosophiquement adv 0.09 0.68 0.09 0.68 +philosophiques philosophique adj p 1.48 4.19 0.42 1.69 +philosophons philosopher ver 0.64 2.09 0.01 0 imp:pre:1p; +philosophé philosopher ver m s 0.64 2.09 0.1 0.14 par:pas; +philosémites philosémite nom m p 0 0.07 0 0.07 +philosémitisme philosémitisme nom m s 0 0.07 0 0.07 +philotechnique philotechnique adj f s 0 0.07 0 0.07 +philtre philtre nom m s 0.96 1.69 0.84 1.01 +philtres philtre nom m p 0.96 1.69 0.11 0.68 +phimosis phimosis nom m 0 0.2 0 0.2 +phlox phlox nom m 0 0.34 0 0.34 +phlébite phlébite nom f s 0.08 0.34 0.08 0.27 +phlébites phlébite nom f p 0.08 0.34 0 0.07 +phlébographie phlébographie nom f s 0.01 0 0.01 0 +phlébologue phlébologue nom s 0.01 0 0.01 0 +phlébotomie phlébotomie nom f s 0.01 0 0.01 0 +phobie phobie nom f s 2.62 1.08 1.43 0.47 +phobies phobie nom f p 2.62 1.08 1.2 0.61 +phobique phobique adj f s 0.04 0.14 0.04 0.14 +phobiques phobique adj p 0.04 0.14 0.01 0 +phocéenne phocéen adj f s 0 0.07 0 0.07 +phoenix phoenix nom m 0.48 0.07 0.48 0.07 +phonatoire phonatoire adj s 0 0.07 0 0.07 +phone phone nom m s 0.67 0.14 0.64 0.07 +phones phone nom m p 0.67 0.14 0.04 0.07 +phonique phonique adj s 0.18 0 0.17 0 +phoniques phonique adj p 0.18 0 0.01 0 +phono phono nom m s 0.75 5.47 0.75 5.2 +phonographe phonographe nom m s 0.87 6.01 0.86 5.41 +phonographes phonographe nom m p 0.87 6.01 0.01 0.61 +phonographiques phonographique adj f p 0 0.14 0 0.14 +phonologie phonologie nom f s 0 0.14 0 0.14 +phonos phono nom m p 0.75 5.47 0 0.27 +phonèmes phonème nom m p 0 0.41 0 0.41 +phonéticien phonéticien nom m s 0 0.07 0 0.07 +phonétique phonétique adj s 0.2 0.41 0.19 0.27 +phonétiquement phonétiquement adv 0.03 0.07 0.03 0.07 +phonétiques phonétique adj m p 0.2 0.41 0.01 0.14 +phoque phoque nom m s 2.81 4.19 2.24 2.77 +phoques phoque nom m p 2.81 4.19 0.57 1.42 +phosgène phosgène nom m s 0.23 0 0.23 0 +phosphatase phosphatase nom f s 0.02 0 0.02 0 +phosphate phosphate nom m s 0.43 0.68 0.38 0.41 +phosphates phosphate nom m p 0.43 0.68 0.05 0.27 +phosphatine phosphatine nom f s 0.1 0.07 0.1 0.07 +phospholipide phospholipide nom m s 0.01 0 0.01 0 +phosphore phosphore nom m s 1.46 2.16 1.46 2.16 +phosphorescence phosphorescence nom f s 0.02 0.88 0.02 0.68 +phosphorescences phosphorescence nom f p 0.02 0.88 0 0.2 +phosphorescent phosphorescent adj m s 0.38 5.47 0.08 1.42 +phosphorescente phosphorescent adj f s 0.38 5.47 0.23 2.03 +phosphorescentes phosphorescent adj f p 0.38 5.47 0.01 1.01 +phosphorescents phosphorescent adj m p 0.38 5.47 0.06 1.01 +phosphorylation phosphorylation nom f s 0.03 0 0.03 0 +phosphoré phosphorer ver m s 0.14 0.07 0.01 0 par:pas; +phosphène phosphène nom m s 0 0.27 0 0.07 +phosphènes phosphène nom m p 0 0.27 0 0.2 +phot phot nom m s 1 0 1 0 +photique photique adj f s 0.01 0 0.01 0 +photo photo nom f s 209.1 94.59 122.47 54.66 +photo_finish photo_finish nom f s 0.01 0 0.01 0 +photo_robot photo_robot nom f s 0.01 0.14 0.01 0.14 +photo_électrique photo_électrique adj f s 0 0.14 0 0.14 +photochimique photochimique adj m s 0.01 0 0.01 0 +photocomposition photocomposition nom f s 0.14 0.07 0.14 0.07 +photoconducteur photoconducteur adj m s 0.01 0 0.01 0 +photocopie photocopie nom f s 3.89 0.88 1.5 0.41 +photocopient photocopier ver 1.83 0.41 0.01 0 ind:pre:3p; +photocopier photocopier ver 1.83 0.41 0.72 0.07 inf; +photocopiera photocopier ver 1.83 0.41 0.01 0 ind:fut:3s; +photocopierai photocopier ver 1.83 0.41 0.01 0 ind:fut:1s; +photocopies photocopie nom f p 3.89 0.88 2.39 0.47 +photocopieur photocopieur nom m s 2.61 0.2 0.11 0 +photocopieurs photocopieur nom m p 2.61 0.2 0.07 0 +photocopieuse photocopieur nom f s 2.61 0.2 2.28 0 +photocopieuses photocopieur nom f p 2.61 0.2 0.14 0.2 +photocopié photocopier ver m s 1.83 0.41 0.5 0.07 par:pas; +photocopiée photocopier ver f s 1.83 0.41 0.13 0.07 par:pas; +photocopiées photocopier ver f p 1.83 0.41 0 0.07 par:pas; +photocopiés photocopier ver m p 1.83 0.41 0.04 0.07 par:pas; +photogramme photogramme nom m s 0.01 0 0.01 0 +photographe photographe nom s 15.82 17.64 12.51 11.96 +photographes photographe nom p 15.82 17.64 3.31 5.68 +photographia photographier ver 10.35 13.65 0.03 0.68 ind:pas:3s; +photographiable photographiable nom f s 0.01 0 0.01 0 +photographiaient photographier ver 10.35 13.65 0.28 0.27 ind:imp:3p; +photographiais photographier ver 10.35 13.65 0.2 0.14 ind:imp:1s;ind:imp:2s; +photographiait photographier ver 10.35 13.65 0.34 0.34 ind:imp:3s; +photographiant photographier ver 10.35 13.65 0.03 0.47 par:pre; +photographie photographie nom f s 8.36 41.08 7.42 23.78 +photographient photographier ver 10.35 13.65 0.19 0.07 ind:pre:3p; +photographier photographier ver 10.35 13.65 4.42 5.54 inf; +photographierai photographier ver 10.35 13.65 0.02 0.07 ind:fut:1s; +photographierait photographier ver 10.35 13.65 0.01 0.27 cnd:pre:3s; +photographierions photographier ver 10.35 13.65 0 0.07 cnd:pre:1p; +photographierons photographier ver 10.35 13.65 0.01 0 ind:fut:1p; +photographieront photographier ver 10.35 13.65 0.01 0 ind:fut:3p; +photographies photographie nom f p 8.36 41.08 0.94 17.3 +photographiez photographier ver 10.35 13.65 0.35 0 imp:pre:2p;ind:pre:2p; +photographique photographique adj s 1.3 3.78 1.25 3.24 +photographiques photographique adj p 1.3 3.78 0.05 0.54 +photographiât photographier ver 10.35 13.65 0 0.07 sub:imp:3s; +photographièrent photographier ver 10.35 13.65 0.1 0.14 ind:pas:3p; +photographié photographier ver m s 10.35 13.65 1.73 2.57 par:pas; +photographiée photographier ver f s 10.35 13.65 0.23 0.88 par:pas; +photographiées photographier ver f p 10.35 13.65 0.11 0.14 par:pas; +photographiés photographier ver m p 10.35 13.65 0.48 0.95 par:pas; +photograveur photograveur nom m s 0 0.07 0 0.07 +photogravure photogravure nom f s 0.04 0.07 0.04 0.07 +photogénie photogénie nom f s 0.34 0.07 0.34 0.07 +photogénique photogénique adj s 2.01 0.41 1.97 0.34 +photogéniques photogénique adj p 2.01 0.41 0.04 0.07 +photojournalisme photojournalisme nom m s 0.02 0 0.02 0 +photojournaliste photojournaliste nom s 0.01 0 0.01 0 +photomaton photomaton adj m s 0.92 1.01 0.37 0.81 +photomatons photomaton adj m p 0.92 1.01 0.55 0.2 +photomicrographie photomicrographie nom f s 0.01 0 0.01 0 +photomontage photomontage nom m s 0 0.14 0 0.07 +photomontages photomontage nom m p 0 0.14 0 0.07 +photon photon nom m s 0.24 0 0.09 0 +photonique photonique adj f s 0.15 0 0.15 0 +photons photon nom m p 0.24 0 0.16 0 +photophobie photophobie nom f s 0.04 0 0.04 0 +photopile photopile nom f s 0.12 0 0.12 0 +photopériodique photopériodique adj f s 0.01 0 0.01 0 +photos photo nom f p 209.1 94.59 86.63 39.93 +photosensibilité photosensibilité nom f s 0.04 0 0.04 0 +photosensible photosensible adj m s 0.08 0.07 0.06 0.07 +photosensibles photosensible adj p 0.08 0.07 0.02 0 +photostat photostat nom m s 0.06 0 0.06 0 +photosynthèse photosynthèse nom f s 0.25 0 0.25 0 +phototaxie phototaxie nom f s 0.02 0 0.02 0 +phototype phototype nom m s 0.01 0 0.01 0 +photovoltaïque photovoltaïque adj m s 0.01 0 0.01 0 +photoélectrique photoélectrique adj s 0.02 0 0.02 0 +phragmites phragmite nom m p 0 0.07 0 0.07 +phrase phrase nom f s 22.01 140.47 15.4 86.76 +phrase_clé phrase_clé nom f s 0.02 0.07 0.02 0 +phrase_robot phrase_robot nom f s 0 0.07 0 0.07 +phraser phraser ver 0.19 0.74 0.01 0 inf; +phrases phrase nom f p 22.01 140.47 6.61 53.72 +phrase_clé phrase_clé nom f p 0.02 0.07 0 0.07 +phraseur phraseur nom m s 0.02 0.14 0.01 0.07 +phraseurs phraseur nom m p 0.02 0.14 0.01 0.07 +phrasé phrasé nom m s 0.05 0.2 0.05 0.2 +phrasée phraser ver f s 0.19 0.74 0 0.07 par:pas; +phraséologie phraséologie nom f s 0.02 0.27 0.02 0.2 +phraséologies phraséologie nom f p 0.02 0.27 0 0.07 +phraséologique phraséologique adj f s 0 0.07 0 0.07 +phrygien phrygien adj m s 0 0.74 0 0.54 +phrygiens phrygien adj m p 0 0.74 0 0.2 +phréatique phréatique adj f s 0.17 0.27 0.16 0.2 +phréatiques phréatique adj f p 0.17 0.27 0.01 0.07 +phrénique phrénique adj m s 0.01 0 0.01 0 +phrénologie phrénologie nom f s 0.03 0 0.03 0 +phrénologiste phrénologiste nom s 0.01 0.07 0.01 0 +phrénologistes phrénologiste nom p 0.01 0.07 0 0.07 +phrénologues phrénologue nom p 0 0.07 0 0.07 +phtaléine phtaléine nom f s 0.03 0 0.03 0 +phtiriasis phtiriasis nom m 0 0.07 0 0.07 +phtisie phtisie nom f s 0.05 0.81 0.05 0.81 +phtisiologie phtisiologie nom f s 0 0.14 0 0.14 +phtisique phtisique adj s 0.01 1.22 0 0.88 +phtisiques phtisique adj f p 0.01 1.22 0.01 0.34 +phylactère phylactère nom m s 0 0.34 0 0.34 +phylloxera phylloxera nom m s 0.1 0 0.1 0 +phylloxéra phylloxéra nom m s 0.1 0.47 0.1 0.47 +phylogenèse phylogenèse nom f s 0.14 0 0.14 0 +phylum phylum nom m s 0.03 0 0.03 0 +phynances phynances nom f p 0 0.07 0 0.07 +physicien physicien nom m s 1.19 1.55 0.75 0.95 +physicienne physicien nom f s 1.19 1.55 0.15 0.07 +physiciennes physicien nom f p 1.19 1.55 0.01 0 +physiciens physicien nom m p 1.19 1.55 0.29 0.54 +physico_chimique physico_chimique adj f p 0 0.07 0 0.07 +physio physio adv 0.94 0 0.94 0 +physiologie physiologie nom f s 0.76 1.42 0.75 1.35 +physiologies physiologie nom f p 0.76 1.42 0.01 0.07 +physiologique physiologique adj s 1.59 2.09 0.84 1.49 +physiologiquement physiologiquement adv 0.24 0.27 0.24 0.27 +physiologiques physiologique adj p 1.59 2.09 0.75 0.61 +physiologiste physiologiste adj s 0.1 0 0.1 0 +physionomie physionomie nom f s 0.48 5.27 0.48 4.93 +physionomies physionomie nom f p 0.48 5.27 0 0.34 +physionomique physionomique adj s 0.01 0.14 0.01 0.14 +physionomiste physionomiste nom s 0.12 0.07 0.11 0.07 +physionomistes physionomiste adj p 0.11 0.14 0.02 0 +physiothérapie physiothérapie nom f s 0.24 0 0.24 0 +physique physique adj s 19.42 33.18 14.76 27.5 +physiquement physiquement adv 8.72 8.72 8.72 8.72 +physiques physique adj p 19.42 33.18 4.66 5.68 +phytoplancton phytoplancton nom m s 0.01 0 0.01 0 +phénate phénate nom m s 0.01 0 0.01 0 +phénicien phénicien nom m s 0.57 0.07 0.04 0 +phénicienne phénicien adj f s 0.77 0.41 0.44 0.14 +phéniciennes phénicien adj f p 0.77 0.41 0.01 0.14 +phéniciens phénicien nom m p 0.57 0.07 0.54 0.07 +phénique phénique adj m s 0 0.07 0 0.07 +phéniqués phéniqué adj m p 0 0.07 0 0.07 +phénix phénix nom m 0.28 0.68 0.28 0.68 +phénobarbital phénobarbital nom m s 0.1 0 0.1 0 +phénol phénol nom m s 0.07 0.14 0.07 0.14 +phénomène phénomène nom m s 10.77 13.72 8.62 10.81 +phénomènes phénomène nom m p 10.77 13.72 2.15 2.91 +phénoménal phénoménal adj m s 1.36 1.62 0.77 0.74 +phénoménale phénoménal adj f s 1.36 1.62 0.46 0.68 +phénoménalement phénoménalement adv 0.05 0 0.05 0 +phénoménales phénoménal adj f p 1.36 1.62 0.05 0.07 +phénoménaux phénoménal adj m p 1.36 1.62 0.08 0.14 +phénoménologie phénoménologie nom f s 0.04 0.34 0.04 0.34 +phénoménologique phénoménologique adj s 0.02 0 0.02 0 +phénoménologues phénoménologue nom p 0 0.07 0 0.07 +phénothiazine phénothiazine nom f s 0.01 0 0.01 0 +phénotype phénotype nom m s 0.01 0 0.01 0 +phéochromocytome phéochromocytome nom m s 0.07 0 0.07 0 +phéromone phéromone nom f s 0.69 0 0.1 0 +phéromones phéromone nom f p 0.69 0 0.59 0 +pi pi nom m 0.69 1.28 0.69 1.28 +piaf piaf nom m s 2 5.14 1.75 1.82 +piaffa piaffer ver 0.14 2.57 0 0.14 ind:pas:3s; +piaffaient piaffer ver 0.14 2.57 0 0.14 ind:imp:3p; +piaffait piaffer ver 0.14 2.57 0 0.68 ind:imp:3s; +piaffant piaffer ver 0.14 2.57 0 0.54 par:pre; +piaffante piaffant adj f s 0.01 0.74 0 0.14 +piaffantes piaffant adj f p 0.01 0.74 0.01 0.14 +piaffants piaffant adj m p 0.01 0.74 0 0.2 +piaffe piaffer ver 0.14 2.57 0.12 0.34 ind:pre:1s;ind:pre:3s; +piaffement piaffement nom m s 0 0.2 0 0.14 +piaffements piaffement nom m p 0 0.2 0 0.07 +piaffent piaffer ver 0.14 2.57 0.02 0.34 ind:pre:3p; +piaffer piaffer ver 0.14 2.57 0 0.2 inf; +piaffes piaffer ver 0.14 2.57 0 0.14 ind:pre:2s; +piaffé piaffer ver m s 0.14 2.57 0 0.07 par:pas; +piafs piaf nom m p 2 5.14 0.25 3.31 +piailla piailler ver 0.84 4.73 0 0.14 ind:pas:3s; +piaillaient piailler ver 0.84 4.73 0.02 0.74 ind:imp:3p; +piaillais piailler ver 0.84 4.73 0 0.07 ind:imp:2s; +piaillait piailler ver 0.84 4.73 0.22 0.74 ind:imp:3s; +piaillant piailler ver 0.84 4.73 0 1.08 par:pre; +piaillante piaillant adj f s 0 0.68 0 0.27 +piaillantes piaillant adj f p 0 0.68 0 0.07 +piaillarde piaillard adj f s 0 0.14 0 0.07 +piaillards piaillard adj m p 0 0.14 0 0.07 +piaille piailler ver 0.84 4.73 0.26 0.54 ind:pre:1s;ind:pre:3s; +piaillement piaillement nom m s 5.37 2.57 0.7 0.68 +piaillements piaillement nom m p 5.37 2.57 4.67 1.89 +piaillent piailler ver 0.84 4.73 0.13 0.61 ind:pre:3p; +piailler piailler ver 0.84 4.73 0.21 0.68 inf; +piaillerie piaillerie nom f s 0 0.2 0 0.07 +piailleries piaillerie nom f p 0 0.2 0 0.14 +piailleurs piailleur adj m p 0 0.2 0 0.14 +piailleuse piailleur adj f s 0 0.2 0 0.07 +piaillèrent piailler ver 0.84 4.73 0 0.14 ind:pas:3p; +pian pian nom m s 0.03 0 0.03 0 +pianissimo pianissimo adv_sup 0.12 0.2 0.12 0.2 +pianissimos pianissimo nom_sup m p 0.1 0.14 0 0.07 +pianiste pianiste nom s 5.75 5.2 5.52 4.8 +pianistes pianiste nom p 5.75 5.2 0.23 0.41 +piano piano nom m s 22.22 31.28 21.5 28.51 +piano_bar piano_bar nom m s 0.05 0 0.05 0 +pianola pianola nom m s 0.35 0.14 0.35 0.14 +pianos piano nom m p 22.22 31.28 0.71 2.77 +pianota pianoter ver 0.41 2.36 0.1 0.34 ind:pas:3s; +pianotage pianotage nom m s 0.1 0.07 0.1 0.07 +pianotaient pianoter ver 0.41 2.36 0 0.14 ind:imp:3p; +pianotait pianoter ver 0.41 2.36 0 0.68 ind:imp:3s; +pianotant pianoter ver 0.41 2.36 0 0.27 par:pre; +pianote pianoter ver 0.41 2.36 0.04 0.34 ind:pre:1s;ind:pre:3s; +pianoter pianoter ver 0.41 2.36 0.27 0.41 inf; +pianotèrent pianoter ver 0.41 2.36 0 0.07 ind:pas:3p; +pianoté pianoter ver m s 0.41 2.36 0 0.07 par:pas; +pianotée pianoter ver f s 0.41 2.36 0 0.07 par:pas; +piastre piastre nom f s 1.36 0.54 0.14 0.14 +piastres piastre nom f p 1.36 0.54 1.23 0.41 +piaula piauler ver 0.02 1.49 0 0.27 ind:pas:3s; +piaulaient piauler ver 0.02 1.49 0.01 0.27 ind:imp:3p; +piaulait piauler ver 0.02 1.49 0 0.2 ind:imp:3s; +piaulant piauler ver 0.02 1.49 0 0.2 par:pre; +piaulante piaulant adj f s 0 0.14 0 0.07 +piaule piaule nom f s 3.36 12.16 3.02 11.42 +piaulement piaulement nom m s 0 0.54 0 0.14 +piaulements piaulement nom m p 0 0.54 0 0.41 +piaulent piauler ver 0.02 1.49 0 0.07 ind:pre:3p; +piauler piauler ver 0.02 1.49 0 0.14 inf; +piaulera piauler ver 0.02 1.49 0 0.07 ind:fut:3s; +piaules piaule nom f p 3.36 12.16 0.34 0.74 +piauleur piauleur nom m s 0 0.07 0 0.07 +piaulèrent piauler ver 0.02 1.49 0 0.14 ind:pas:3p; +piaye piaye nom m s 0 0.07 0 0.07 +piazza piazza nom f s 1.89 3.18 1.89 3.18 +piazzetta piazzetta nom f 0 0.2 0 0.2 +pibloque pibloque nom m s 0 0.34 0 0.34 +pic pic nom m s 5.3 12.43 4.61 10.34 +pic_vert pic_vert nom m s 0.28 0.27 0.27 0.27 +pica pica nom m s 0.01 0.07 0.01 0.07 +picador picador nom m s 0.01 0.34 0 0.27 +picadors picador nom m p 0.01 0.34 0.01 0.07 +picaillon picaillon nom m s 0.02 0.2 0.01 0.07 +picaillons picaillon nom m p 0.02 0.2 0.01 0.14 +picard picard adj m s 0 0.61 0 0.14 +picarde picard adj f s 0 0.61 0 0.07 +picardes picard adj f p 0 0.61 0 0.2 +picards picard adj m p 0 0.61 0 0.2 +picaresque picaresque adj s 0.03 0.54 0.03 0.34 +picaresques picaresque adj p 0.03 0.54 0 0.2 +picaro picaro nom m s 0.4 0.07 0.4 0.07 +picassien picassien adj m s 0 0.07 0 0.07 +piccolo piccolo nom m s 0.41 0.07 0.4 0.07 +piccolos piccolo nom m p 0.41 0.07 0.01 0 +pichenette pichenette nom f s 0.27 2.3 0.27 2.09 +pichenettes pichenette nom f p 0.27 2.3 0 0.2 +pichet pichet nom m s 1.29 1.42 1.21 0.95 +pichets pichet nom m p 1.29 1.42 0.09 0.47 +pick_up pick_up nom m 1.98 2.64 1.98 2.64 +picker picker nom m s 0.19 0 0.19 0 +pickles pickle nom m p 0.47 0.2 0.47 0.2 +pickpocket pickpocket nom m s 0.87 0.74 0.63 0.47 +pickpockets pickpocket nom m p 0.87 0.74 0.24 0.27 +pico pico adv 0.31 0.2 0.31 0.2 +picolaient picoler ver 5.89 4.66 0 0.07 ind:imp:3p; +picolais picoler ver 5.89 4.66 0.09 0.14 ind:imp:1s; +picolait picoler ver 5.89 4.66 0.21 0.14 ind:imp:3s; +picolant picoler ver 5.89 4.66 0.03 0.07 par:pre; +picole picoler ver 5.89 4.66 1.64 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +picolent picoler ver 5.89 4.66 0.08 0 ind:pre:3p; +picoler picoler ver 5.89 4.66 2.32 1.76 inf; +picolerait picoler ver 5.89 4.66 0 0.07 cnd:pre:3s; +picoles picoler ver 5.89 4.66 0.69 0.14 ind:pre:2s; +picoleur picoleur nom m s 0 0.27 0 0.2 +picoleurs picoleur nom m p 0 0.27 0 0.07 +picolez picoler ver 5.89 4.66 0.04 0 ind:pre:2p; +picoliez picoler ver 5.89 4.66 0.01 0 ind:imp:2p; +picolo picolo nom m s 0 0.14 0 0.14 +picolé picoler ver m s 5.89 4.66 0.77 1.22 par:pas; +picora picorer ver 0.74 3.58 0 0.07 ind:pas:3s; +picoraient picorer ver 0.74 3.58 0.02 0.47 ind:imp:3p; +picorait picorer ver 0.74 3.58 0 0.47 ind:imp:3s; +picorant picorer ver 0.74 3.58 0.02 0.14 par:pre; +picore picorer ver 0.74 3.58 0.18 0.34 ind:pre:1s;ind:pre:3s; +picorent picorer ver 0.74 3.58 0.02 0.41 ind:pre:3p; +picorer picorer ver 0.74 3.58 0.33 1.28 inf; +picoreur picoreur nom m s 0 0.07 0 0.07 +picorez picorer ver 0.74 3.58 0.14 0 ind:pre:2p; +picoré picorer ver m s 0.74 3.58 0.02 0.14 par:pas; +picorée picorer ver f s 0.74 3.58 0 0.07 par:pas; +picorées picorer ver f p 0.74 3.58 0 0.07 par:pas; +picorés picorer ver m p 0.74 3.58 0.01 0.14 par:pas; +picot picot nom m s 0.26 1.35 0.03 1.22 +picota picoter ver 0.74 1.62 0.04 0.14 ind:pas:3s; +picotaient picoter ver 0.74 1.62 0 0.27 ind:imp:3p; +picotait picoter ver 0.74 1.62 0 0.47 ind:imp:3s; +picotant picoter ver 0.74 1.62 0.02 0 par:pre; +picote picoter ver 0.74 1.62 0.63 0.27 ind:pre:1s;ind:pre:3s; +picotement picotement nom m s 0.5 1.62 0.22 0.95 +picotements picotement nom m p 0.5 1.62 0.28 0.68 +picotent picoter ver 0.74 1.62 0.03 0.27 ind:pre:3p; +picoter picoter ver 0.74 1.62 0.01 0.07 inf; +picotin picotin nom m s 0.24 0.61 0.24 0.61 +picotis picotis nom m 0 0.07 0 0.07 +picots picot nom m p 0.26 1.35 0.23 0.14 +picoté picoter ver m s 0.74 1.62 0.01 0.07 par:pas; +picotées picoter ver f p 0.74 1.62 0 0.07 par:pas; +picrate picrate nom m s 0.01 1.35 0.01 1.35 +picrique picrique adj s 0 0.27 0 0.27 +pics pic nom m p 5.3 12.43 0.69 2.09 +pic_vert pic_vert nom m p 0.28 0.27 0.01 0 +picsou picsou nom m s 0.43 0 0.43 0 +pictogramme pictogramme nom m s 0.14 0 0.03 0 +pictogrammes pictogramme nom m p 0.14 0 0.11 0 +picton picton nom s 0 0.41 0 0.41 +pictural pictural adj m s 0.15 0.95 0.01 0.47 +picturale pictural adj f s 0.15 0.95 0.14 0.2 +picturalement picturalement adv 0 0.07 0 0.07 +picturales pictural adj f p 0.15 0.95 0 0.27 +picté picter ver m s 0 0.07 0 0.07 par:pas; +pidgin pidgin nom m s 0 0.14 0 0.14 +pie pie nom f s 1.59 4.32 1.06 3.18 +pie_grièche pie_grièche nom f s 0 0.07 0 0.07 +pie_mère pie_mère nom f s 0.01 0.07 0.01 0.07 +pied pied nom m s 214.08 486.42 105.51 248.18 +pied_bot pied_bot nom m s 0.28 0.61 0.28 0.61 +pied_d_alouette pied_d_alouette nom m s 0.01 0 0.01 0 +pied_d_oeuvre pied_d_oeuvre nom m s 0 0.07 0 0.07 +pied_de_biche pied_de_biche nom m s 0.32 0.27 0.28 0.2 +pied_de_poule pied_de_poule adj 0.02 0.54 0.02 0.54 +pied_noir pied_noir nom m s 0.28 3.78 0.09 0.54 +pied_plat pied_plat nom m s 0.05 0 0.05 0 +piedmont piedmont nom m s 0.23 0 0.23 0 +pieds pied nom m p 214.08 486.42 108.57 238.24 +pied_de_biche pied_de_biche nom m p 0.32 0.27 0.04 0.07 +pied_de_coq pied_de_coq nom m p 0 0.07 0 0.07 +pied_droit pied_droit nom m p 0 0.07 0 0.07 +pied_noir pied_noir nom m p 0.28 3.78 0.19 3.24 +pier pier nom m s 0.01 0 0.01 0 +piercing piercing nom m s 1.69 0 1.29 0 +piercings piercing nom m p 1.69 0 0.4 0 +pierraille pierraille nom f s 0.12 3.85 0.12 2.23 +pierrailles pierraille nom f p 0.12 3.85 0 1.62 +pierre pierre nom f s 67.17 189.86 40.58 119.39 +pierreries pierreries nom f p 0.28 1.89 0.28 1.89 +pierres pierre nom f p 67.17 189.86 26.6 70.47 +pierreuse pierreux adj f s 0.11 2.64 0.11 0.54 +pierreuses pierreux adj f p 0.11 2.64 0 0.47 +pierreux pierreux adj m 0.11 2.64 0 1.62 +pierrier pierrier nom m s 0 0.2 0 0.14 +pierriers pierrier nom m p 0 0.2 0 0.07 +pierrière pierrière nom f s 0 0.07 0 0.07 +pierrot pierrot nom m s 0.14 1.35 0.14 0.88 +pierrots pierrot nom m p 0.14 1.35 0.01 0.47 +pierrures pierrure nom f p 0 0.07 0 0.07 +pies pie nom f p 1.59 4.32 0.53 1.15 +pietà pietà nom f s 0.18 0.88 0.18 0.88 +pieu pieu nom m s 5.45 5.34 5.45 5.34 +pieuse pieux adj f s 5 12.43 2.4 4.12 +pieusement pieusement adv 0.41 3.11 0.41 3.11 +pieuses pieux adj f p 5 12.43 0.75 2.77 +pieutait pieuter ver 1.24 2.03 0 0.07 ind:imp:3s; +pieute pieuter ver 1.24 2.03 0.2 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pieuter pieuter ver 1.24 2.03 0.85 1.22 inf; +pieuterez pieuter ver 1.24 2.03 0.01 0 ind:fut:2p; +pieutes pieuter ver 1.24 2.03 0.03 0.14 ind:pre:2s; +pieutez pieuter ver 1.24 2.03 0.1 0 imp:pre:2p; +pieuté pieuter ver m s 1.24 2.03 0.04 0.2 par:pas; +pieutée pieuter ver f s 1.24 2.03 0 0.07 par:pas; +pieutés pieuter ver m p 1.24 2.03 0.01 0.07 par:pas; +pieuvre pieuvre nom f s 1.73 2.97 1.65 1.82 +pieuvres pieuvre nom f p 1.73 2.97 0.08 1.15 +pieux pieux adj m 5 12.43 1.86 5.54 +pif pif nom m s 1.58 7.23 1.58 7.23 +pifer pifer ver 0.01 0 0.01 0 inf; +piffait piffer ver 0.16 0.68 0 0.14 ind:imp:3s; +piffer piffer ver 0.16 0.68 0.16 0.47 inf; +piffre piffre nom s 0 0.07 0 0.07 +piffrer piffrer adj m s 0.16 0 0.16 0 +piffé piffer ver m s 0.16 0.68 0 0.07 par:pas; +pifomètre pifomètre nom m s 0.02 0.61 0.02 0.61 +pige piger ver 41.77 11.96 6.4 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pigeais piger ver 41.77 11.96 0.17 0.54 ind:imp:1s;ind:imp:2s; +pigeait piger ver 41.77 11.96 0.09 0.88 ind:imp:3s; +pigent piger ver 41.77 11.96 0.5 0.14 ind:pre:3p; +pigeon pigeon nom m s 15.05 19.26 8.56 7.97 +pigeon_voyageur pigeon_voyageur nom m s 0.14 0 0.14 0 +pigeonnant pigeonnant adj m s 0.07 0.34 0.07 0.2 +pigeonnante pigeonnant adj f s 0.07 0.34 0 0.07 +pigeonnants pigeonnant adj m p 0.07 0.34 0 0.07 +pigeonne pigeon nom f s 15.05 19.26 0.03 0.68 +pigeonneau pigeonneau nom m s 0.29 0.34 0.06 0.27 +pigeonneaux pigeonneau nom m p 0.29 0.34 0.23 0.07 +pigeonner pigeonner ver 0.24 0.34 0.05 0.14 inf; +pigeonnier pigeonnier nom m s 0.27 3.45 0.27 3.18 +pigeonniers pigeonnier nom m p 0.27 3.45 0 0.27 +pigeonné pigeonner ver m s 0.24 0.34 0.17 0.07 par:pas; +pigeons pigeon nom m p 15.05 19.26 6.46 10.61 +piger piger ver 41.77 11.96 1.78 1.96 inf; +pigera piger ver 41.77 11.96 0.04 0.07 ind:fut:3s; +pigerai piger ver 41.77 11.96 0.01 0 ind:fut:1s; +pigeraient piger ver 41.77 11.96 0.01 0 cnd:pre:3p; +pigerait piger ver 41.77 11.96 0.02 0 cnd:pre:3s; +pigeras piger ver 41.77 11.96 0.06 0.07 ind:fut:2s; +pigerez piger ver 41.77 11.96 0.02 0 ind:fut:2p; +piges piger ver 41.77 11.96 10.99 2.03 ind:pre:2s;sub:pre:2s; +pigez piger ver 41.77 11.96 2.08 0.47 imp:pre:2p;ind:pre:2p; +pigiste pigiste nom s 0.24 0.54 0.21 0.27 +pigistes pigiste nom p 0.24 0.54 0.03 0.27 +pigment pigment nom m s 0.35 0.61 0.07 0.34 +pigmentaire pigmentaire adj f s 0.04 0.07 0.04 0.07 +pigmentation pigmentation nom f s 0.51 0.14 0.51 0.14 +pigments pigment nom m p 0.35 0.61 0.28 0.27 +pigne pigne nom f s 0.07 0.47 0.02 0.27 +pigner pigner ver 0.01 0 0.01 0 inf; +pignes pigne nom f p 0.07 0.47 0.04 0.2 +pignochait pignocher ver 0 0.07 0 0.07 ind:imp:3s; +pignole pignole nom f s 0.01 0.07 0.01 0.07 +pignon pignon nom m s 4.94 8.31 4.79 6.55 +pignons pignon nom m p 4.94 8.31 0.15 1.76 +pignouf pignouf nom m s 0.27 0.54 0.25 0.34 +pignoufs pignouf nom m p 0.27 0.54 0.02 0.2 +pigé piger ver m s 41.77 11.96 19.46 3.51 par:pas; +pila piler ver 3.34 6.15 0 0.34 ind:pas:3s; +pilaf pilaf nom m s 0.26 0.27 0.26 0.27 +pilaient piler ver 3.34 6.15 0 0.14 ind:imp:3p; +pilait piler ver 3.34 6.15 0 0.54 ind:imp:3s; +pilant piler ver 3.34 6.15 0.07 0.07 par:pre; +pilastre pilastre nom m s 0.03 1.15 0.02 0.2 +pilastres pilastre nom m p 0.03 1.15 0.01 0.95 +pilchards pilchard nom m p 0 0.27 0 0.27 +pile pile nom f s 21.3 32.43 16.22 21.55 +pile_poil pile_poil nom f s 0.07 0 0.07 0 +pilent piler ver 3.34 6.15 0 0.07 ind:pre:3p; +piler piler ver 3.34 6.15 0.35 0.27 inf; +piles pile nom f p 21.3 32.43 5.08 10.88 +pileuse pileux adj f s 0.06 0.61 0 0.2 +pileuses pileux adj f p 0.06 0.61 0 0.07 +pileux pileux adj m 0.06 0.61 0.06 0.34 +pilier pilier nom m s 3.82 16.15 2.43 7.23 +piliers pilier nom m p 3.82 16.15 1.39 8.92 +pilifère pilifère adj s 0 0.07 0 0.07 +pilla piller ver 7.66 8.38 0.01 0.27 ind:pas:3s; +pillage pillage nom m s 1.76 3.38 1.21 2.64 +pillages pillage nom m p 1.76 3.38 0.56 0.74 +pillaient piller ver 7.66 8.38 0.06 0.41 ind:imp:3p; +pillais piller ver 7.66 8.38 0.01 0 ind:imp:1s; +pillait piller ver 7.66 8.38 0.16 0.34 ind:imp:3s; +pillant piller ver 7.66 8.38 0.17 0.68 par:pre; +pillard pillard nom m s 1 1.89 0.15 0.47 +pillarde pillard nom f s 1 1.89 0 0.07 +pillards pillard nom m p 1 1.89 0.85 1.35 +pille piller ver 7.66 8.38 1.02 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pillent piller ver 7.66 8.38 0.78 0.07 ind:pre:3p; +piller piller ver 7.66 8.38 2.12 2.7 inf; +pillera piller ver 7.66 8.38 0.02 0 ind:fut:3s; +pillerait piller ver 7.66 8.38 0.02 0 cnd:pre:3s; +pillerons piller ver 7.66 8.38 0.02 0.07 ind:fut:1p; +pilleront piller ver 7.66 8.38 0.16 0 ind:fut:3p; +pilles piller ver 7.66 8.38 0.04 0.07 ind:pre:2s; +pilleur pilleur nom m s 1.05 1.35 0.44 0.34 +pilleurs pilleur nom m p 1.05 1.35 0.47 0.95 +pilleuse pilleur nom f s 1.05 1.35 0.14 0.07 +pillez piller ver 7.66 8.38 0.35 0.07 imp:pre:2p;ind:pre:2p; +pilliez piller ver 7.66 8.38 0.02 0 ind:imp:2p; +pillons piller ver 7.66 8.38 0.03 0 imp:pre:1p;ind:pre:1p; +pillèrent piller ver 7.66 8.38 0.02 0.07 ind:pas:3p; +pillé piller ver m s 7.66 8.38 1.87 1.62 par:pas; +pillée piller ver f s 7.66 8.38 0.58 0.47 par:pas; +pillées piller ver f p 7.66 8.38 0.04 0.47 par:pas; +pillés piller ver m p 7.66 8.38 0.18 0.61 par:pas; +piloches piloche nom f p 0 0.07 0 0.07 +pilon pilon nom m s 0.62 1.69 0.47 1.28 +pilonnage pilonnage nom m s 0.16 0.61 0.12 0.54 +pilonnages pilonnage nom m p 0.16 0.61 0.04 0.07 +pilonnaient pilonner ver 0.6 1.35 0.01 0.2 ind:imp:3p; +pilonnait pilonner ver 0.6 1.35 0.01 0.2 ind:imp:3s; +pilonnant pilonner ver 0.6 1.35 0.01 0.07 par:pre; +pilonnent pilonner ver 0.6 1.35 0.13 0.14 ind:pre:3p; +pilonner pilonner ver 0.6 1.35 0.1 0.27 inf; +pilonnera pilonner ver 0.6 1.35 0 0.07 ind:fut:3s; +pilonneurs pilonneur nom m p 0 0.07 0 0.07 +pilonnez pilonner ver 0.6 1.35 0.02 0 imp:pre:2p;ind:pre:2p; +pilonné pilonner ver m s 0.6 1.35 0.28 0.14 par:pas; +pilonnée pilonner ver f s 0.6 1.35 0.02 0.07 par:pas; +pilonnées pilonner ver f p 0.6 1.35 0 0.07 par:pas; +pilonnés pilonner ver m p 0.6 1.35 0.02 0.14 par:pas; +pilons pilon nom m p 0.62 1.69 0.14 0.41 +pilori pilori nom m s 0.79 2.5 0.78 2.36 +piloris pilori nom m p 0.79 2.5 0.01 0.14 +pilosité pilosité nom f s 0.09 0.27 0.09 0.27 +pilot pilot nom m s 1.1 0 1.1 0 +pilota piloter ver 13.18 4.12 0 0.07 ind:pas:3s; +pilotage pilotage nom m s 2.44 1.35 2.44 1.35 +pilotaient piloter ver 13.18 4.12 0.01 0 ind:imp:3p; +pilotais piloter ver 13.18 4.12 0.28 0.14 ind:imp:1s;ind:imp:2s; +pilotait piloter ver 13.18 4.12 0.79 0.61 ind:imp:3s; +pilotant piloter ver 13.18 4.12 0.06 0.27 par:pre; +pilote pilote nom s 37.69 8.72 29.1 5.61 +pilotent piloter ver 13.18 4.12 0.06 0.07 ind:pre:3p; +piloter piloter ver 13.18 4.12 6.12 1.82 inf; +pilotera piloter ver 13.18 4.12 0.13 0 ind:fut:3s; +piloterai piloter ver 13.18 4.12 0.17 0 ind:fut:1s; +piloterait piloter ver 13.18 4.12 0.03 0.14 cnd:pre:3s; +piloteras piloter ver 13.18 4.12 0.02 0 ind:fut:2s; +piloteront piloter ver 13.18 4.12 0.01 0 ind:fut:3p; +pilotes pilote nom p 37.69 8.72 8.59 3.11 +pilotez piloter ver 13.18 4.12 0.36 0 imp:pre:2p;ind:pre:2p; +pilotiez piloter ver 13.18 4.12 0.08 0 ind:imp:2p; +pilotin pilotin nom m s 0.1 0 0.1 0 +pilotis pilotis nom m 0.33 2.3 0.33 2.3 +pilotèrent piloter ver 13.18 4.12 0 0.07 ind:pas:3p; +piloté piloter ver m s 13.18 4.12 1.65 0.41 par:pas; +pilotée piloter ver f s 13.18 4.12 0.19 0 par:pas; +pilotées piloter ver f p 13.18 4.12 0.01 0.07 par:pas; +pilotés piloter ver m p 13.18 4.12 0.06 0.14 par:pas; +pilou pilou nom m s 0 0.95 0 0.95 +pilsen pilsen nom f s 0 0.07 0 0.07 +pilule pilule nom f s 22.64 12.91 6.1 4.86 +pilules pilule nom f p 22.64 12.91 16.54 8.04 +pilum pilum nom m s 0 0.07 0 0.07 +pilé piler ver m s 3.34 6.15 0.3 1.15 par:pas; +pilée piler ver f s 3.34 6.15 0.19 1.01 par:pas; +pilées piler ver f p 3.34 6.15 0 0.27 par:pas; +pilés piler ver m p 3.34 6.15 0.04 0.41 par:pas; +pimbêche pimbêche nom f s 0.45 0.47 0.42 0.34 +pimbêches pimbêche nom f p 0.45 0.47 0.03 0.14 +piment piment nom m s 4.76 4.66 2.94 2.77 +pimenta pimenter ver 0.82 0.88 0 0.07 ind:pas:3s; +pimentait pimenter ver 0.82 0.88 0 0.2 ind:imp:3s; +pimentant pimenter ver 0.82 0.88 0 0.07 par:pre; +pimente pimenter ver 0.82 0.88 0.17 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pimentent pimenter ver 0.82 0.88 0.01 0 ind:pre:3p; +pimenter pimenter ver 0.82 0.88 0.56 0.27 inf; +piments piment nom m p 4.76 4.66 1.82 1.89 +pimenté pimenté adj m s 0.13 0.27 0.06 0.2 +pimentée pimenter ver f s 0.82 0.88 0.04 0.07 par:pas; +pimentées pimenté adj f p 0.13 0.27 0.01 0 +pimentés pimenté adj m p 0.13 0.27 0.03 0 +pimpant pimpant adj m s 0.81 4.05 0.34 0.54 +pimpante pimpant adj f s 0.81 4.05 0.12 2.09 +pimpantes pimpant adj f p 0.81 4.05 0.34 1.22 +pimpants pimpant adj m p 0.81 4.05 0.01 0.2 +pimpon pimpon nom m s 0.01 0.41 0 0.14 +pimpons pimpon nom m p 0.01 0.41 0.01 0.27 +pimprenelle pimprenelle nom f s 0.08 0.14 0.08 0.07 +pimprenelles pimprenelle nom f p 0.08 0.14 0 0.07 +pin pin nom m s 5.06 26.62 2.79 9.53 +pin_s pin_s nom m 0.3 0 0.3 0 +pin_pon pin_pon ono 0 0.34 0 0.34 +pin_up pin_up nom f 0.71 0.54 0.71 0.54 +pina piner ver 0.81 0.2 0.44 0 ind:pas:3s; +pinacle pinacle nom m s 0.02 0.61 0.02 0.54 +pinacles pinacle nom m p 0.02 0.61 0 0.07 +pinacothèque pinacothèque nom f s 0 0.2 0 0.2 +pinaillage pinaillage nom m s 0.02 0 0.02 0 +pinaillait pinailler ver 0.5 0.34 0 0.07 ind:imp:3s; +pinaille pinailler ver 0.5 0.34 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pinailler pinailler ver 0.5 0.34 0.41 0.14 inf; +pinailles pinailler ver 0.5 0.34 0.05 0 ind:pre:2s; +pinailleur pinailleur nom m s 0.02 0 0.02 0 +pinaillé pinailler ver m s 0.5 0.34 0.02 0 par:pas; +pinard pinard nom m s 0.39 6.89 0.39 6.76 +pinardiers pinardier nom m p 0 0.14 0 0.07 +pinardière pinardier nom f s 0 0.14 0 0.07 +pinards pinard nom m p 0.39 6.89 0 0.14 +pinasse pinasse nom f s 0 0.54 0 0.14 +pinasses pinasse nom f p 0 0.54 0 0.41 +pince pince nom f s 9 14.73 5.62 7.64 +pince_fesse pince_fesse nom m p 0.05 0.14 0.05 0.14 +pince_maille pince_maille nom m p 0 0.07 0 0.07 +pince_monseigneur pince_monseigneur nom f s 0.03 0.54 0.03 0.54 +pince_nez pince_nez nom m 0.07 1.35 0.07 1.35 +pince_sans_rire pince_sans_rire adj s 0.05 0.47 0.05 0.47 +pinceau pinceau nom m s 4.59 17.91 2.96 10.27 +pinceaux pinceau nom m p 4.59 17.91 1.63 7.64 +pincement pincement nom m s 0.19 3.92 0.18 3.65 +pincements pincement nom m p 0.19 3.92 0.01 0.27 +pincent pincer ver 10.84 23.65 0.14 0.54 ind:pre:3p; +pincer pincer ver 10.84 23.65 4.06 3.72 inf; +pincera pincer ver 10.84 23.65 0.2 0.07 ind:fut:3s; +pincerai pincer ver 10.84 23.65 0.02 0 ind:fut:1s; +pinceras pincer ver 10.84 23.65 0.01 0 ind:fut:2s; +pincerez pincer ver 10.84 23.65 0.01 0 ind:fut:2p; +pincerons pincer ver 10.84 23.65 0.01 0 ind:fut:1p; +pinces pince nom f p 9 14.73 3.38 7.09 +pincette pincette nom f s 0.29 1.49 0.05 0.34 +pincettes pincette nom f p 0.29 1.49 0.25 1.15 +pinceur pinceur nom m s 0 0.07 0 0.07 +pincez pincer ver 10.84 23.65 0.82 0 imp:pre:2p;ind:pre:2p; +pinchart pinchart nom m s 0 0.07 0 0.07 +pinciez pincer ver 10.84 23.65 0.16 0 ind:imp:2p; +pincions pincer ver 10.84 23.65 0.01 0.2 ind:imp:1p; +pincèrent pincer ver 10.84 23.65 0 0.07 ind:pas:3p; +pincé pincer ver m s 10.84 23.65 1.27 2.03 par:pas; +pincée pincée nom f s 1.37 3.31 1.3 2.91 +pincées pincer ver f p 10.84 23.65 0.1 3.04 par:pas; +pincés pincer ver m p 10.84 23.65 0.1 0.47 par:pas; +pine pine nom f s 1.59 0.88 1.48 0.68 +pineau pineau nom m s 0 0.14 0 0.14 +piner piner ver 0.81 0.2 0.16 0.07 inf; +pines pine nom f p 1.59 0.88 0.11 0.2 +ping_pong ping_pong nom m s 2.67 2.36 2.67 2.36 +pinglot pinglot nom m s 0 0.14 0 0.07 +pinglots pinglot nom m p 0 0.14 0 0.07 +pingouin pingouin nom m s 3.51 2.64 2.29 1.35 +pingouins pingouin nom m p 3.51 2.64 1.23 1.28 +pingre pingre adj s 0.58 0.74 0.56 0.54 +pingrerie pingrerie nom f s 0.02 0.2 0.02 0.2 +pingres pingre nom p 0.19 0.34 0.15 0.07 +pink pink nom f s 1 0.34 1 0.34 +pinot pinot nom m s 0.47 0.14 0.46 0.07 +pinots pinot nom m p 0.47 0.14 0.01 0.07 +pins pin nom m p 5.06 26.62 2.27 17.09 +pinson pinson nom m s 2.86 1.82 2.68 1.08 +pinsons pinson nom m p 2.86 1.82 0.18 0.74 +pinta pinter ver 0.33 0.68 0.05 0.2 ind:pas:3s;;ind:pas:3s; +pintade pintade nom f s 0.44 2.16 0.44 0.54 +pintades pintade nom f p 0.44 2.16 0 1.62 +pintait pinter ver 0.33 0.68 0 0.07 ind:imp:3s; +pinte pinte nom f s 1.34 0.61 0.9 0.34 +pinter pinter ver 0.33 0.68 0.12 0.14 inf; +pintes pinte nom f p 1.34 0.61 0.44 0.27 +pinté pinter ver m s 0.33 0.68 0.04 0 par:pas; +pintée pinter ver f s 0.33 0.68 0.01 0.14 par:pas; +pintés pinter ver m p 0.33 0.68 0 0.07 par:pas; +pinça pincer ver 10.84 23.65 0 2.43 ind:pas:3s; +pinçage pinçage nom m s 0.1 0 0.1 0 +pinçai pincer ver 10.84 23.65 0 0.07 ind:pas:1s; +pinçaient pincer ver 10.84 23.65 0.05 0.61 ind:imp:3p; +pinçais pincer ver 10.84 23.65 0.07 0.34 ind:imp:1s; +pinçait pincer ver 10.84 23.65 0.52 2.23 ind:imp:3s; +pinçant pincer ver 10.84 23.65 0.08 2.09 par:pre; +pinçard pinçard adj m s 0 0.07 0 0.07 +pinçon pinçon nom m s 0.04 0.2 0.04 0.07 +pinçons pincer ver 10.84 23.65 0.01 0 imp:pre:1p; +pinçotait pinçoter ver 0 0.2 0 0.07 ind:imp:3s; +pinçotant pinçoter ver 0 0.2 0 0.07 par:pre; +pinçote pinçoter ver 0 0.2 0 0.07 ind:pre:3s; +pinçure pinçure nom f s 0 0.07 0 0.07 +pinède pinède nom f s 0.72 3.72 0.58 2.7 +pinèdes pinède nom f p 0.72 3.72 0.15 1.01 +piné piner ver m s 0.81 0.2 0.1 0 par:pas; +pinéal pinéal adj m s 0.23 0.07 0.02 0.07 +pinéale pinéal adj f s 0.23 0.07 0.19 0 +pinéales pinéal adj f p 0.23 0.07 0.02 0 +piochaient piocher ver 1.11 2.91 0 0.14 ind:imp:3p; +piochais piocher ver 1.11 2.91 0 0.14 ind:imp:1s; +piochait piocher ver 1.11 2.91 0 0.54 ind:imp:3s; +piochant piocher ver 1.11 2.91 0.01 0.14 par:pre; +pioche pioche nom f s 4.36 6.42 4.18 4.39 +piochent piocher ver 1.11 2.91 0.01 0.07 ind:pre:3p; +piocher piocher ver 1.11 2.91 0.5 1.42 inf; +pioches pioche nom f p 4.36 6.42 0.18 2.03 +piocheur piocheur nom m s 0 0.07 0 0.07 +piochez piocher ver 1.11 2.91 0.25 0 imp:pre:2p;ind:pre:2p; +pioché piocher ver m s 1.11 2.91 0.18 0 par:pas; +piochée piocher ver f s 1.11 2.91 0 0.07 par:pas; +piochées piocher ver f p 1.11 2.91 0 0.07 par:pas; +piolet piolet nom m s 0.31 0.14 0.31 0.14 +pion pion nom m s 4.91 6.49 2.98 3.58 +pionce pioncer ver 1.63 2.64 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pioncent pioncer ver 1.63 2.64 0 0.2 ind:pre:3p; +pioncer pioncer ver 1.63 2.64 0.62 0.81 inf; +pioncera pioncer ver 1.63 2.64 0.01 0 ind:fut:3s; +pionces pioncer ver 1.63 2.64 0.15 0.14 ind:pre:2s; +pioncez pioncer ver 1.63 2.64 0.16 0 imp:pre:2p;ind:pre:2p; +pioncé pioncer ver m s 1.63 2.64 0.05 0.14 par:pas; +pionne pion nom f s 4.91 6.49 0.01 0.14 +pionner pionner ver 0.01 0 0.01 0 inf; +pionnier pionnier nom m s 4.21 9.73 1.27 2.5 +pionniers pionnier nom m p 4.21 9.73 2.62 7.03 +pionnière pionnier nom f s 4.21 9.73 0.28 0.07 +pionnières pionnier nom f p 4.21 9.73 0.03 0.14 +pions pion nom m p 4.91 6.49 1.92 2.77 +pionçais pioncer ver 1.63 2.64 0.33 0.07 ind:imp:1s;ind:imp:2s; +pionçait pioncer ver 1.63 2.64 0.03 0.41 ind:imp:3s; +pionçant pioncer ver 1.63 2.64 0 0.07 par:pre; +piot piot nom m s 0 0.34 0 0.14 +piots piot nom m p 0 0.34 0 0.2 +pioupiou pioupiou nom m s 0.05 0.34 0.05 0.27 +pioupious pioupiou nom m p 0.05 0.34 0 0.07 +pipa pipa nom m s 0.02 0.07 0.02 0.07 +pipai piper ver 20.6 2.57 0 0.07 ind:pas:1s; +pipais piper ver 20.6 2.57 0.01 0.07 ind:imp:1s; +pipait piper ver 20.6 2.57 0.01 0.14 ind:imp:3s; +pipant piper ver 20.6 2.57 0.1 0 par:pre; +pipasse piper ver 20.6 2.57 0 0.07 sub:imp:1s; +pipe pipe nom f s 16.38 32.84 12.74 25.74 +pipe_line pipe_line nom m s 0.11 0.34 0.09 0.34 +pipe_line pipe_line nom m p 0.11 0.34 0.02 0 +pipeau pipeau nom m s 2.09 1.22 1.84 0.95 +pipeaux pipeau nom m p 2.09 1.22 0.25 0.27 +pipelet pipelet nom m s 0 0.47 0 0.34 +pipelets pipelet nom m p 0 0.47 0 0.14 +pipelette pipelette nom f s 0.35 1.82 0.27 1.62 +pipelettes pipelette nom f p 0.35 1.82 0.09 0.2 +pipeline pipeline nom m s 0.51 0.14 0.42 0.07 +pipelines pipeline nom m p 0.51 0.14 0.08 0.07 +piper piper ver 20.6 2.57 19.96 0.88 imp:pre:2p;inf; +pipera piper ver 20.6 2.57 0.01 0 ind:fut:3s; +piperade piperade nom f s 0 0.07 0 0.07 +piperie piperie nom f s 0 0.07 0 0.07 +pipes pipe nom f p 16.38 32.84 3.64 7.09 +pipette pipette nom f s 0.55 0.68 0.54 0.54 +pipettes pipette nom f p 0.55 0.68 0.01 0.14 +pipeur pipeur nom m s 0.14 0.47 0 0.14 +pipeuse pipeur nom f s 0.14 0.47 0 0.14 +pipeuses pipeur nom f p 0.14 0.47 0.14 0.2 +pipi pipi nom m s 15.36 10.07 15.33 9.19 +pipi_room pipi_room nom m s 0.05 0 0.05 0 +pipiers pipier nom m p 0 0.07 0 0.07 +pipis pipi nom m p 15.36 10.07 0.03 0.88 +pipistrelle pipistrelle nom f s 0.13 0 0.13 0 +pipo pipo nom m s 0.18 0 0.18 0 +pipé piper ver m s 20.6 2.57 0.16 0.2 par:pas; +pipée pipée nom f s 0.02 0.07 0.02 0 +pipées pipée nom f p 0.02 0.07 0 0.07 +pipés piper ver m p 20.6 2.57 0.24 0.41 par:pas; +piqua piquer ver 50.06 64.86 0.03 3.72 ind:pas:3s; +piquage piquage nom m s 0.02 0.07 0.02 0 +piquages piquage nom m p 0.02 0.07 0 0.07 +piquai piquer ver 50.06 64.86 0.01 0.34 ind:pas:1s; +piquaient piquer ver 50.06 64.86 0.11 2.36 ind:imp:3p; +piquais piquer ver 50.06 64.86 0.91 0.88 ind:imp:1s;ind:imp:2s; +piquait piquer ver 50.06 64.86 0.9 6.55 ind:imp:3s; +piquant piquant nom m s 1.17 1.76 0.74 1.15 +piquante piquant adj f s 2.59 6.82 1.6 2.57 +piquantes piquant adj f p 2.59 6.82 0.31 1.22 +piquants piquant nom m p 1.17 1.76 0.43 0.61 +pique piquer ver 50.06 64.86 7.74 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +pique_assiette pique_assiette nom s 0.39 0.34 0.27 0.27 +pique_assiette pique_assiette nom p 0.39 0.34 0.12 0.07 +pique_boeuf pique_boeuf nom m p 0 0.07 0 0.07 +pique_feu pique_feu nom m 0.03 0.81 0.03 0.81 +pique_niquer pique_niquer ver 1.03 0.74 0.01 0 ind:imp:3p; +pique_nique pique_nique nom m s 6.05 4.12 5.57 3.18 +pique_niquer pique_niquer ver 1.03 0.74 0.03 0.07 ind:pre:3p; +pique_niquer pique_niquer ver 1.03 0.74 0.83 0.47 inf;; +pique_niquer pique_niquer ver 1.03 0.74 0.01 0 cnd:pre:3p; +pique_niquer pique_niquer ver 1.03 0.74 0.01 0 ind:fut:1p; +pique_nique pique_nique nom m p 6.05 4.12 0.48 0.95 +pique_niqueur pique_niqueur nom m p 0.02 0.27 0.02 0.27 +pique_niquer pique_niquer ver 1.03 0.74 0.01 0.07 ind:pre:2p; +pique_niquer pique_niquer ver m s 1.03 0.74 0.05 0.07 par:pas; +piquent piquer ver 50.06 64.86 1.54 2.57 ind:pre:3p; +piquer piquer ver 50.06 64.86 15.36 14.26 ind:imp:3s;inf; +piquera piquer ver 50.06 64.86 0.55 0.2 ind:fut:3s; +piquerai piquer ver 50.06 64.86 0.16 0.07 ind:fut:1s; +piqueraient piquer ver 50.06 64.86 0.02 0.07 cnd:pre:3p; +piquerais piquer ver 50.06 64.86 0.04 0 cnd:pre:1s;cnd:pre:2s; +piquerait piquer ver 50.06 64.86 0.08 0.27 cnd:pre:3s; +piqueras piquer ver 50.06 64.86 0.17 0.14 ind:fut:2s; +piquerez piquer ver 50.06 64.86 0.01 0 ind:fut:2p; +piquerons piqueron nom m p 0.14 0 0.14 0 +piqueront piquer ver 50.06 64.86 0.04 0.14 ind:fut:3p; +piques piquer ver 50.06 64.86 1.92 0.61 ind:pre:2s; +piquet piquet nom m s 3.64 9.39 1.48 4.73 +piquetage piquetage nom m s 0 0.07 0 0.07 +piquetaient piqueter ver 0 3.18 0 0.41 ind:imp:3p; +piquetait piqueter ver 0 3.18 0 0.07 ind:imp:3s; +piqueter piqueter ver 0 3.18 0 0.14 inf; +piquetis piquetis nom m 0 0.14 0 0.14 +piquets piquet nom m p 3.64 9.39 2.16 4.66 +piquette piquette nom f s 0.99 1.15 0.99 1.08 +piquettes piquette nom f p 0.99 1.15 0 0.07 +piqueté piqueter ver m s 0 3.18 0 0.95 par:pas; +piquetée piqueter ver f s 0 3.18 0 0.88 par:pas; +piquetées piqueter ver f p 0 3.18 0 0.47 par:pas; +piquetés piqueter ver m p 0 3.18 0 0.27 par:pas; +piqueur piqueur adj m s 0.76 0.61 0.61 0.54 +piqueurs piqueur nom m p 0.32 1.35 0.14 0.34 +piqueuse piqueur nom f s 0.32 1.35 0 0.27 +piqueuses piqueur nom f p 0.32 1.35 0 0.41 +piqueux piqueux nom m 0.01 0.2 0.01 0.2 +piquez piquer ver 50.06 64.86 1.15 0.2 imp:pre:2p;ind:pre:2p; +piquier piquier nom m s 0.01 0.07 0.01 0.07 +piquiez piquer ver 50.06 64.86 0.13 0.07 ind:imp:2p; +piquions piquer ver 50.06 64.86 0 0.07 ind:imp:1p; +piquons piquer ver 50.06 64.86 0.04 0.27 imp:pre:1p;ind:pre:1p; +piquouse piquouse nom f s 0.04 0.95 0.02 0.54 +piquouser piquouser ver 0.01 0 0.01 0 inf; +piquouses piquouse nom f p 0.04 0.95 0.02 0.41 +piquouze piquouze nom f s 0.05 0.34 0.02 0.2 +piquouzes piquouze nom f p 0.05 0.34 0.03 0.14 +piquèrent piquer ver 50.06 64.86 0 0.47 ind:pas:3p; +piqué piquer ver m s 50.06 64.86 15.18 11.55 par:pas; +piquée piquer ver f s 50.06 64.86 2.79 3.78 par:pas; +piquées piquer ver f p 50.06 64.86 0.38 1.15 par:pas; +piqués piquer ver m p 50.06 64.86 0.58 2.57 par:pas; +piqûre piqûre nom f s 11.41 10.95 7.59 6.08 +piqûres piqûre nom f p 11.41 10.95 3.82 4.86 +pirandellienne pirandellien adj f s 0 0.07 0 0.07 +piranha piranha nom m s 1.32 0.14 0.26 0 +piranhas piranha nom m p 1.32 0.14 1.06 0.14 +piratage piratage nom m s 0.56 0.07 0.53 0.07 +piratages piratage nom m p 0.56 0.07 0.03 0 +pirataient pirater ver 2.84 0.47 0 0.07 ind:imp:3p; +piratant pirater ver 2.84 0.47 0.02 0.07 par:pre; +pirate pirate nom m s 8.14 5.47 3.88 1.69 +piratent pirater ver 2.84 0.47 0.06 0 ind:pre:3p; +pirater pirater ver 2.84 0.47 0.9 0.14 inf; +piraterie piraterie nom f s 0.51 0.61 0.49 0.41 +pirateries piraterie nom f p 0.51 0.61 0.02 0.2 +pirates pirate nom m p 8.14 5.47 4.26 3.78 +piratez pirater ver 2.84 0.47 0.06 0 imp:pre:2p;ind:pre:2p; +piraté pirater ver m s 2.84 0.47 1.14 0.14 par:pas; +piratée pirater ver f s 2.84 0.47 0.07 0 par:pas; +piratés pirater ver m p 2.84 0.47 0.25 0.07 par:pas; +pire pire adj s 98.83 57.7 83.22 39.8 +pires pire adj p 98.83 57.7 15.61 17.91 +piriforme piriforme adj m s 0 0.47 0 0.34 +piriformes piriforme adj f p 0 0.47 0 0.14 +pirogue pirogue nom f s 0.76 4.73 0.65 2.5 +pirogues pirogue nom f p 0.76 4.73 0.11 2.23 +pirojki pirojki nom m 0.28 0.2 0 0.14 +pirojkis pirojki nom m p 0.28 0.2 0.28 0.07 +pirolle pirolle nom f s 0 0.2 0 0.2 +pirouetta pirouetter ver 0.1 0.81 0 0.2 ind:pas:3s; +pirouettais pirouetter ver 0.1 0.81 0 0.07 ind:imp:1s; +pirouettait pirouetter ver 0.1 0.81 0 0.07 ind:imp:3s; +pirouettant pirouetter ver 0.1 0.81 0 0.07 par:pre; +pirouette pirouette nom f s 1.39 3.51 0.42 3.04 +pirouetter pirouetter ver 0.1 0.81 0.07 0.2 inf; +pirouettes pirouette nom f p 1.39 3.51 0.96 0.47 +pis pis adv_sup 30.15 37.16 30.15 37.16 +pis_aller pis_aller nom m 0.14 0.81 0.14 0.81 +pisa piser ver 0.5 0 0.5 0 ind:pas:3s; +pisan pisan adj m s 0.1 0.07 0.1 0 +pisans pisan adj m p 0.1 0.07 0 0.07 +pisans pisan nom m p 0 0.07 0 0.07 +piscicole piscicole adj s 0.07 0.07 0.06 0 +piscicoles piscicole adj p 0.07 0.07 0.01 0.07 +pisciculteur pisciculteur nom m s 0.01 0.07 0.01 0.07 +pisciculture pisciculture nom f s 0.04 0.14 0.04 0.14 +pisciforme pisciforme adj f s 0 0.07 0 0.07 +piscine piscine nom f s 23.62 17.09 22.19 15.74 +piscines piscine nom f p 23.62 17.09 1.43 1.35 +pisiforme pisiforme nom m s 0.03 0 0.03 0 +pissa pisser ver 39.03 26.49 0.01 0.54 ind:pas:3s; +pissaient pisser ver 39.03 26.49 0.04 0.68 ind:imp:3p; +pissais pisser ver 39.03 26.49 0.67 0.27 ind:imp:1s;ind:imp:2s; +pissait pisser ver 39.03 26.49 0.78 1.96 ind:imp:3s; +pissaladière pissaladière nom f s 0 0.07 0 0.07 +pissant pisser ver 39.03 26.49 0.45 0.68 par:pre; +pissat pissat nom m s 0.1 0.41 0.1 0.41 +pisse pisser ver 39.03 26.49 6.84 5.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pisse_copie pisse_copie nom s 0.01 0.27 0.01 0.2 +pisse_copie pisse_copie nom p 0.01 0.27 0 0.07 +pisse_froid pisse_froid nom m 0.1 0.34 0.1 0.34 +pisse_vinaigre pisse_vinaigre nom m 0.04 0.07 0.04 0.07 +pissenlit pissenlit nom m s 1.32 3.24 0.68 1.28 +pissenlits pissenlit nom m p 1.32 3.24 0.65 1.96 +pissent pisser ver 39.03 26.49 0.6 0.68 ind:pre:3p; +pisser pisser ver 39.03 26.49 20.83 13.65 inf; +pissera pisser ver 39.03 26.49 0.25 0 ind:fut:3s; +pisserai pisser ver 39.03 26.49 0.43 0 ind:fut:1s; +pisseraient pisser ver 39.03 26.49 0.01 0.14 cnd:pre:3p; +pisserais pisser ver 39.03 26.49 0.14 0 cnd:pre:1s;cnd:pre:2s; +pisserait pisser ver 39.03 26.49 0.07 0.14 cnd:pre:3s; +pisseras pisser ver 39.03 26.49 0.06 0.27 ind:fut:2s; +pisses pisser ver 39.03 26.49 1.05 0.07 ind:pre:2s; +pissette pissette nom f s 0.14 0.2 0.14 0.2 +pisseur pisseur nom m s 0.66 0.88 0.25 0.14 +pisseurs pisseur nom m p 0.66 0.88 0.03 0.07 +pisseuse pisseur adj f s 0.31 0.95 0.3 0.68 +pisseuses pisseur nom f p 0.66 0.88 0.14 0.14 +pisseux pisseux adj m 0.4 1.89 0.4 1.89 +pissez pisser ver 39.03 26.49 1.07 0.2 imp:pre:2p;ind:pre:2p; +pissoir pissoir nom m s 0.02 0 0.02 0 +pissons pisser ver 39.03 26.49 0.14 0 imp:pre:1p;ind:pre:1p; +pissotière pissotière nom f s 0.61 3.45 0.41 2.03 +pissotières pissotière nom f p 0.61 3.45 0.2 1.42 +pissou pissou nom m s 5.28 0.07 5.28 0.07 +pissât pisser ver 39.03 26.49 0 0.07 sub:imp:3s; +pissèrent pisser ver 39.03 26.49 0 0.07 ind:pas:3p; +pissé pisser ver m s 39.03 26.49 5.46 1.89 par:pas; +pissée pisser ver f s 39.03 26.49 0.13 0 par:pas; +pista pister ver 1.9 1.28 0 0.07 ind:pas:3s; +pistache pistache nom f s 0.69 1.69 0.41 0.74 +pistaches pistache nom f p 0.69 1.69 0.27 0.95 +pistachier pistachier nom m s 0 0.14 0 0.07 +pistachiers pistachier nom m p 0 0.14 0 0.07 +pistage pistage nom m s 0.3 0 0.3 0 +pistais pister ver 1.9 1.28 0 0.07 ind:imp:1s; +pistait pister ver 1.9 1.28 0.06 0.07 ind:imp:3s; +pistant pister ver 1.9 1.28 0 0.2 par:pre; +pistard pistard nom m s 0.01 0.47 0.01 0.2 +pistards pistard nom m p 0.01 0.47 0 0.27 +piste piste nom f s 51.77 41.15 43.01 34.86 +pistent pister ver 1.9 1.28 0.08 0.14 ind:pre:3p; +pister pister ver 1.9 1.28 0.76 0.47 inf; +pistera pister ver 1.9 1.28 0.01 0 ind:fut:3s; +pisterai pister ver 1.9 1.28 0.02 0 ind:fut:1s; +pistes piste nom f p 51.77 41.15 8.77 6.28 +pisteur pisteur nom m s 0.54 0.95 0.47 0.81 +pisteurs pisteur nom m p 0.54 0.95 0.06 0.14 +pistez pister ver 1.9 1.28 0.15 0 imp:pre:2p;ind:pre:2p; +pistil pistil nom m s 0.02 0.81 0.02 0.47 +pistils pistil nom m p 0.02 0.81 0 0.34 +pistole pistole nom f s 1.09 0.34 0.16 0.27 +pistolero pistolero nom m s 0.24 0.14 0.08 0.07 +pistoleros pistolero nom m p 0.24 0.14 0.16 0.07 +pistoles pistole nom f p 1.09 0.34 0.93 0.07 +pistolet pistolet nom m s 34.92 18.78 31.63 14.8 +pistolet_mitrailleur pistolet_mitrailleur nom m s 0.02 0 0.02 0 +pistolets pistolet nom m p 34.92 18.78 3.29 3.99 +pistoleurs pistoleur nom m p 0 0.07 0 0.07 +pistolétade pistolétade nom f s 0 0.14 0 0.14 +piston piston nom m s 2.46 3.18 1.79 2.5 +pistonnais pistonner ver 1.03 0.47 0 0.07 ind:imp:2s; +pistonner pistonner ver 1.03 0.47 0.29 0.2 inf; +pistonnera pistonner ver 1.03 0.47 0.01 0 ind:fut:3s; +pistonnerai pistonner ver 1.03 0.47 0.01 0 ind:fut:1s; +pistonnions pistonner ver 1.03 0.47 0.01 0 ind:imp:1p; +pistonné pistonner ver m s 1.03 0.47 0.67 0.14 par:pas; +pistonnée pistonner ver f s 1.03 0.47 0.04 0 par:pas; +pistonnés pistonné nom m p 0.35 0.07 0.1 0.07 +pistons piston nom m p 2.46 3.18 0.68 0.68 +pistou pistou nom m s 0.38 0 0.38 0 +pisté pister ver m s 1.9 1.28 0.17 0.14 par:pas; +pistée pister ver f s 1.9 1.28 0.03 0 par:pas; +pistées pister ver f p 1.9 1.28 0 0.07 par:pas; +pistés pister ver m p 1.9 1.28 0.08 0 par:pas; +pisé pisé nom m s 0.02 0.47 0.02 0.47 +pit_bull pit_bull nom m s 0.63 0 0.31 0 +pit_bull pit_bull nom m s 0.63 0 0.26 0 +pit_bull pit_bull nom m p 0.63 0 0.06 0 +pita pita nom m s 0.73 0 0.7 0 +pitaine pitaine nom m s 0 2.09 0 2.09 +pitance pitance nom f s 0.35 2.7 0.35 2.57 +pitances pitance nom f p 0.35 2.7 0 0.14 +pitancher pitancher ver 0 0.14 0 0.07 inf; +pitancherai pitancher ver 0 0.14 0 0.07 ind:fut:1s; +pitancier pitancier nom m s 0 0.07 0 0.07 +pitas pita nom m p 0.73 0 0.03 0 +pitbull pitbull nom m s 1.02 0 0.82 0 +pitbulls pitbull nom m p 1.02 0 0.2 0 +pitch pitch nom m s 0.29 0 0.29 0 +pitcher pitcher ver 0.03 0 0.03 0 inf; +pitchoun pitchoun nom m s 0.03 0.07 0.02 0 +pitchoune pitchoun adj f s 0.03 0 0.03 0 +pitchounet pitchounet nom m s 0.14 0 0.14 0 +pitchounette pitchounette nom f s 0.14 0 0.14 0 +pitchpin pitchpin nom m s 0 0.47 0 0.47 +piteuse piteux adj f s 0.82 4.46 0.12 1.69 +piteusement piteusement adv 0.14 1.42 0.14 1.42 +piteuses piteux adj f p 0.82 4.46 0 0.07 +piteux piteux adj m 0.82 4.46 0.7 2.7 +pithiviers pithiviers nom m 0 0.07 0 0.07 +pithécanthrope pithécanthrope nom m s 0 0.34 0 0.2 +pithécanthropes pithécanthrope nom m p 0 0.34 0 0.14 +pitié pitié nom f s 76.38 58.11 76.38 57.91 +pitiés pitié nom f p 76.38 58.11 0 0.2 +piton piton nom m s 0.46 7.3 0.4 6.42 +pitonnant pitonner ver 0 0.14 0 0.07 par:pre; +pitonner pitonner ver 0 0.14 0 0.07 inf; +pitons piton nom m p 0.46 7.3 0.06 0.88 +pitoyable pitoyable adj s 6.26 9.19 5.63 6.96 +pitoyablement pitoyablement adv 0.17 0.47 0.17 0.47 +pitoyables pitoyable adj p 6.26 9.19 0.63 2.23 +pitre pitre nom m s 1.7 1.96 1.55 1.69 +pitrerie pitrerie nom f s 0.99 1.28 0.16 0.34 +pitreries pitrerie nom f p 0.99 1.28 0.83 0.95 +pitres pitre nom m p 1.7 1.96 0.15 0.27 +pittoresque pittoresque adj s 1.71 6.49 1.47 4.53 +pittoresques pittoresque adj p 1.71 6.49 0.25 1.96 +pituitaire pituitaire adj s 0.15 0.2 0.12 0.14 +pituitaires pituitaire adj p 0.15 0.2 0.03 0.07 +pituite pituite nom f s 0.01 0.07 0.01 0.07 +pityriasis pityriasis nom m 0.01 0.07 0.01 0.07 +piu piu adv 0.02 0.07 0.02 0.07 +pive pive nom f s 0 0.07 0 0.07 +pivert pivert nom m s 0.22 0.88 0.16 0.81 +piverts pivert nom m p 0.22 0.88 0.06 0.07 +pivoine pivoine nom f s 0.73 1.96 0.19 0.74 +pivoines pivoine nom f p 0.73 1.96 0.54 1.22 +pivot pivot nom m s 0.68 1.69 0.61 1.55 +pivota pivoter ver 1.19 9.39 0 2.09 ind:pas:3s; +pivotai pivoter ver 1.19 9.39 0 0.07 ind:pas:1s; +pivotaient pivoter ver 1.19 9.39 0.01 0.14 ind:imp:3p; +pivotait pivoter ver 1.19 9.39 0.04 0.54 ind:imp:3s; +pivotant pivotant adj m s 0.08 0.81 0.04 0.47 +pivotante pivotant adj f s 0.08 0.81 0.03 0.2 +pivotantes pivotant adj f p 0.08 0.81 0 0.07 +pivotants pivotant adj m p 0.08 0.81 0 0.07 +pivote pivoter ver 1.19 9.39 0.36 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pivotement pivotement nom m s 0.01 0.07 0.01 0.07 +pivotent pivoter ver 1.19 9.39 0.01 0.14 ind:pre:3p; +pivoter pivoter ver 1.19 9.39 0.33 2.91 inf; +pivotes pivoter ver 1.19 9.39 0.01 0 ind:pre:2s; +pivotez pivoter ver 1.19 9.39 0.29 0 imp:pre:2p; +pivots pivot nom m p 0.68 1.69 0.07 0.14 +pivotèrent pivoter ver 1.19 9.39 0 0.14 ind:pas:3p; +pivoté pivoter ver m s 1.19 9.39 0.13 0.27 par:pas; +pixel pixel nom m s 0.36 0 0.03 0 +pixellisés pixelliser ver m p 0.03 0 0.03 0 par:pas; +pixels pixel nom m p 0.36 0 0.34 0 +pizza pizza nom f s 23.09 3.24 18.6 2.09 +pizzaiolo pizzaiolo nom m s 0.02 0 0.02 0 +pizzas pizza nom f p 23.09 3.24 4.49 1.15 +pizzeria pizzeria nom f s 2.12 1.42 2.01 1.35 +pizzerias pizzeria nom f p 2.12 1.42 0.1 0.07 +pizzicato pizzicato nom m s 0.29 0.14 0.29 0.14 +pièce pièce nom f s 151.1 276.35 110.66 193.78 +pièces pièce nom f p 151.1 276.35 40.44 82.57 +piège piège nom m s 33.12 30.2 27.53 19.93 +piègent piéger ver 21.77 7.09 0.2 0.14 ind:pre:3p; +pièges piège nom m p 33.12 30.2 5.59 10.27 +piète piéter ver 0.01 0.54 0 0.07 ind:pre:3s; +piètement piètement nom m s 0 0.07 0 0.07 +piètre piètre adj s 2.65 4.19 2.47 3.45 +piètrement piètrement adv 0.03 0 0.03 0 +piètres piètre adj p 2.65 4.19 0.18 0.74 +piécette piécette nom f s 0.09 1.89 0.07 0.68 +piécettes piécette nom f p 0.09 1.89 0.02 1.22 +piédestal piédestal nom m s 0.8 2.09 0.79 2.09 +piédestaux piédestal nom m p 0.8 2.09 0.01 0 +piédroit piédroit nom m s 0 0.2 0 0.14 +piédroits piédroit nom m p 0 0.2 0 0.07 +piégeage piégeage nom m s 0.01 0.27 0.01 0.14 +piégeages piégeage nom m p 0.01 0.27 0 0.14 +piégeais piéger ver 21.77 7.09 0.02 0.07 ind:imp:1s; +piégeait piéger ver 21.77 7.09 0.04 0.41 ind:imp:3s; +piégeant piéger ver 21.77 7.09 0.04 0 par:pre; +piéger piéger ver 21.77 7.09 6.33 2.36 inf; +piégerai piéger ver 21.77 7.09 0.04 0.07 ind:fut:1s; +piégerais piéger ver 21.77 7.09 0.02 0 cnd:pre:1s;cnd:pre:2s; +piégerait piéger ver 21.77 7.09 0.01 0.07 cnd:pre:3s; +piégerez piéger ver 21.77 7.09 0.03 0 ind:fut:2p; +piégeront piéger ver 21.77 7.09 0.01 0.07 ind:fut:3p; +piégeur piégeur nom m s 0.23 0.34 0.08 0.2 +piégeurs piégeur nom m p 0.23 0.34 0 0.07 +piégeuse piégeur nom f s 0.23 0.34 0.15 0 +piégeuses piégeur nom f p 0.23 0.34 0 0.07 +piégez piéger ver 21.77 7.09 0.07 0 imp:pre:2p;ind:pre:2p; +piégé piéger ver m s 21.77 7.09 9.12 1.69 par:pas; +piégée piéger ver f s 21.77 7.09 2.34 0.61 par:pas; +piégées piéger ver f p 21.77 7.09 0.43 0.54 par:pas; +piégés piéger ver m p 21.77 7.09 2.53 0.68 par:pas; +piémont piémont nom m s 0.01 0.14 0.01 0.14 +piémontais piémontais nom m 0.6 0.34 0.6 0.34 +piémontaise piémontais adj f s 0.34 0.34 0.01 0.07 +piéride piéride nom f s 0 0.14 0 0.07 +piérides piéride nom f p 0 0.14 0 0.07 +piéta piéta nom f s 0.15 0.07 0.15 0.07 +piétaille piétaille nom f s 0.2 1.28 0.2 1.28 +piétait piéter ver 0.01 0.54 0 0.07 ind:imp:3s; +piétant piéter ver 0.01 0.54 0 0.07 par:pre; +piétement piétement nom m s 0 0.47 0 0.47 +piéter piéter ver 0.01 0.54 0 0.07 inf; +piétin piétin nom m s 0 0.07 0 0.07 +piétina piétiner ver 6.78 20.61 0.1 0.74 ind:pas:3s; +piétinai piétiner ver 6.78 20.61 0 0.07 ind:pas:1s; +piétinaient piétiner ver 6.78 20.61 0.11 1.62 ind:imp:3p; +piétinais piétiner ver 6.78 20.61 0.29 0.14 ind:imp:1s;ind:imp:2s; +piétinait piétiner ver 6.78 20.61 0.03 1.89 ind:imp:3s; +piétinant piétiner ver 6.78 20.61 0.01 2.43 par:pre; +piétinante piétinant adj f s 0 0.34 0 0.07 +piétine piétiner ver 6.78 20.61 1.66 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +piétinement piétinement nom m s 0.11 5.34 0.09 4.53 +piétinements piétinement nom m p 0.11 5.34 0.01 0.81 +piétinent piétiner ver 6.78 20.61 0.39 1.28 ind:pre:3p; +piétiner piétiner ver 6.78 20.61 1.39 3.45 inf; +piétinera piétiner ver 6.78 20.61 0.26 0.14 ind:fut:3s; +piétinerai piétiner ver 6.78 20.61 0.14 0 ind:fut:1s; +piétinerais piétiner ver 6.78 20.61 0.03 0 cnd:pre:2s; +piétinerait piétiner ver 6.78 20.61 0.02 0 cnd:pre:3s; +piétineront piétiner ver 6.78 20.61 0.01 0 ind:fut:3p; +piétinez piétiner ver 6.78 20.61 0.2 0.07 imp:pre:2p;ind:pre:2p; +piétinons piétiner ver 6.78 20.61 0.02 0.14 ind:pre:1p; +piétinèrent piétiner ver 6.78 20.61 0 0.2 ind:pas:3p; +piétiné piétiner ver m s 6.78 20.61 1.35 2.57 par:pas; +piétinée piétiner ver f s 6.78 20.61 0.34 1.55 par:pas; +piétinées piétiner ver f p 6.78 20.61 0.05 0.74 par:pas; +piétinés piétiner ver m p 6.78 20.61 0.37 1.15 par:pas; +piétiste piétiste adj f s 0 0.07 0 0.07 +piéton piéton nom m s 0.75 3.72 0.54 1.28 +piétonne piéton adj f s 0.85 1.82 0.04 0.14 +piétonnes piéton adj f p 0.85 1.82 0.01 0 +piétonnier piétonnier adj m s 0.14 0.2 0.02 0.07 +piétonnière piétonnier adj f s 0.14 0.2 0.02 0.07 +piétonnières piétonnier adj f p 0.14 0.2 0.1 0.07 +piétons piéton adj m p 0.85 1.82 0.26 1.62 +piété piété nom f s 1.47 7.7 1.47 7.7 +più più adv 0.01 0.07 0.01 0.07 +placage placage nom m s 0.22 0.34 0.22 0.2 +placages placage nom m p 0.22 0.34 0 0.14 +placard placard nom m s 21.47 34.39 19.26 25.74 +placardait placarder ver 0.56 3.18 0 0.2 ind:imp:3s; +placarde placarder ver 0.56 3.18 0.11 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +placarder placarder ver 0.56 3.18 0.04 0.54 inf; +placardes placarder ver 0.56 3.18 0 0.07 ind:pre:2s; +placardier placardier nom m s 0 0.14 0 0.14 +placards placard nom m p 21.47 34.39 2.2 8.65 +placardé placarder ver m s 0.56 3.18 0.16 0.41 par:pas; +placardée placarder ver f s 0.56 3.18 0.07 0.41 par:pas; +placardées placarder ver f p 0.56 3.18 0.02 0.34 par:pas; +placardés placarder ver m p 0.56 3.18 0.16 0.14 par:pas; +place place nom f s 301.3 468.58 280.54 437.97 +placebo placebo nom m s 0.52 0.14 0.47 0.14 +placebos placebo nom m p 0.52 0.14 0.05 0 +placement placement nom m s 3.12 3.11 2.13 2.03 +placements placement nom m p 3.12 3.11 0.99 1.08 +placent placer ver 52.94 101.76 0.58 0.74 ind:pre:3p; +placenta placenta nom m s 0.7 0.61 0.69 0.54 +placentaire placentaire adj s 0.04 0 0.04 0 +placentas placenta nom m p 0.7 0.61 0.02 0.07 +placer placer ver 52.94 101.76 10.24 21.69 inf; +placera placer ver 52.94 101.76 0.35 0.34 ind:fut:3s; +placerai placer ver 52.94 101.76 0.55 0.27 ind:fut:1s; +placeraient placer ver 52.94 101.76 0 0.07 cnd:pre:3p; +placerais placer ver 52.94 101.76 0.05 0.27 cnd:pre:1s; +placerait placer ver 52.94 101.76 0.17 0.68 cnd:pre:3s; +placeras placer ver 52.94 101.76 0.08 0 ind:fut:2s; +placerez placer ver 52.94 101.76 0.2 0.2 ind:fut:2p; +placerons placer ver 52.94 101.76 0.06 0.2 ind:fut:1p; +placeront placer ver 52.94 101.76 0.25 0 ind:fut:3p; +places place nom f p 301.3 468.58 20.76 30.61 +placet placet nom m s 0.01 0.27 0 0.2 +placets placet nom m p 0.01 0.27 0.01 0.07 +placette placette nom f s 0 1.82 0 1.49 +placettes placette nom f p 0 1.82 0 0.34 +placeur placeur nom m s 0.06 0.34 0.03 0.07 +placeurs placeur nom m p 0.06 0.34 0.03 0 +placeuse placeur nom f s 0.06 0.34 0 0.2 +placeuses placeur nom f p 0.06 0.34 0 0.07 +placez placer ver 52.94 101.76 4.01 1.15 imp:pre:2p;ind:pre:2p; +placide placide adj s 0.29 5.95 0.19 5.2 +placidement placidement adv 0 1.35 0 1.35 +placides placide adj p 0.29 5.95 0.11 0.74 +placidité placidité nom f s 0 2.03 0 2.03 +placier placier nom m s 0.03 0.14 0.03 0.07 +placiers placier nom m p 0.03 0.14 0 0.07 +placiez placer ver 52.94 101.76 0.03 0 ind:imp:2p; +placions placer ver 52.94 101.76 0.04 0.07 ind:imp:1p; +placoplâtre placoplâtre nom m s 0.06 0 0.06 0 +placèrent placer ver 52.94 101.76 0.14 0.68 ind:pas:3p; +placé placer ver m s 52.94 101.76 11.81 22.91 par:pas; +placée placer ver f s 52.94 101.76 4.51 8.18 par:pas; +placées placer ver f p 52.94 101.76 1.09 2.84 par:pas; +placés placer ver m p 52.94 101.76 2.19 6.96 par:pas; +plafond plafond nom m s 10.34 50.34 9.44 46.35 +plafonds plafond nom m p 10.34 50.34 0.9 3.99 +plafonnant plafonner ver 0.17 0.34 0 0.07 par:pre; +plafonne plafonner ver 0.17 0.34 0.07 0.07 imp:pre:2s;ind:pre:3s; +plafonnement plafonnement nom m s 0.04 0.07 0.04 0.07 +plafonner plafonner ver 0.17 0.34 0.05 0.07 inf; +plafonnier plafonnier nom m s 0.13 1.42 0.13 1.15 +plafonniers plafonnier nom m p 0.13 1.42 0 0.2 +plafonnière plafonnier nom f s 0.13 1.42 0 0.07 +plafonnons plafonner ver 0.17 0.34 0 0.07 ind:pre:1p; +plafonné plafonner ver m s 0.17 0.34 0.04 0.07 par:pas; +plafonnée plafonner ver f s 0.17 0.34 0.01 0 par:pas; +plafonnées plafonné adj f p 0.01 0.14 0 0.14 +plage plage nom f s 48.19 86.89 44.99 72.03 +plages plage nom f p 48.19 86.89 3.2 14.86 +plagiaire plagiaire nom m s 0.19 0.07 0.17 0 +plagiaires plagiaire nom m p 0.19 0.07 0.02 0.07 +plagiant plagier ver 0.4 0.47 0 0.14 par:pre; +plagiat plagiat nom m s 0.38 0.41 0.35 0.2 +plagiats plagiat nom m p 0.38 0.41 0.02 0.2 +plagie plagier ver 0.4 0.47 0.03 0.07 ind:pre:1s;ind:pre:3s; +plagier plagier ver 0.4 0.47 0.11 0.07 inf; +plagies plagier ver 0.4 0.47 0.01 0 ind:pre:2s; +plagioclase plagioclase nom m s 0.01 0 0.01 0 +plagié plagier ver m s 0.4 0.47 0.25 0.2 par:pas; +plaid plaid nom m s 0.34 1.15 0.28 0.95 +plaida plaider ver 11.46 12.7 0.14 0.81 ind:pas:3s; +plaidable plaidable adj f s 0.02 0 0.02 0 +plaidai plaider ver 11.46 12.7 0 0.07 ind:pas:1s; +plaidaient plaider ver 11.46 12.7 0 0.41 ind:imp:3p; +plaidais plaider ver 11.46 12.7 0.01 0.2 ind:imp:1s;ind:imp:2s; +plaidait plaider ver 11.46 12.7 0.06 0.88 ind:imp:3s; +plaidant plaider ver 11.46 12.7 0.21 0.41 par:pre; +plaidants plaidant adj m p 0 0.07 0 0.07 +plaide plaider ver 11.46 12.7 2.75 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +plaident plaider ver 11.46 12.7 0.13 0.2 ind:pre:3p; +plaider plaider ver 11.46 12.7 4.07 5.61 inf; +plaidera plaider ver 11.46 12.7 0.42 0 ind:fut:3s; +plaiderai plaider ver 11.46 12.7 0.61 0.14 ind:fut:1s; +plaiderait plaider ver 11.46 12.7 0.12 0.27 cnd:pre:3s; +plaideras plaider ver 11.46 12.7 0.13 0.07 ind:fut:2s; +plaiderez plaider ver 11.46 12.7 0.24 0.07 ind:fut:2p; +plaiderons plaider ver 11.46 12.7 0.08 0.14 ind:fut:1p; +plaideront plaider ver 11.46 12.7 0.01 0 ind:fut:3p; +plaides plaider ver 11.46 12.7 0.24 0.14 ind:pre:2s; +plaideur plaideur nom m s 0.05 0.47 0.04 0.14 +plaideurs plaideur nom m p 0.05 0.47 0.01 0.34 +plaidez plaider ver 11.46 12.7 1.03 0.2 imp:pre:2p;ind:pre:2p; +plaidiez plaider ver 11.46 12.7 0.03 0.07 ind:imp:2p; +plaidions plaider ver 11.46 12.7 0 0.07 ind:imp:1p; +plaidoirie plaidoirie nom f s 1.27 2.36 1.14 1.22 +plaidoiries plaidoirie nom f p 1.27 2.36 0.13 1.15 +plaidons plaider ver 11.46 12.7 0.09 0.14 imp:pre:1p;ind:pre:1p; +plaidoyer plaidoyer nom m s 0.64 1.28 0.6 0.88 +plaidoyers plaidoyer nom m p 0.64 1.28 0.04 0.41 +plaids plaid nom m p 0.34 1.15 0.05 0.2 +plaidèrent plaider ver 11.46 12.7 0 0.14 ind:pas:3p; +plaidé plaider ver m s 11.46 12.7 1.03 0.81 par:pas; +plaidée plaider ver f s 11.46 12.7 0.05 0.14 par:pas; +plaie plaie nom f s 15.02 24.26 10.42 14.32 +plaies plaie nom f p 15.02 24.26 4.59 9.93 +plaignaient plaindre ver 61.25 67.84 0.28 2.3 ind:imp:3p; +plaignais plaindre ver 61.25 67.84 0.7 1.49 ind:imp:1s;ind:imp:2s; +plaignait plaindre ver 61.25 67.84 0.94 8.92 ind:imp:3s; +plaignant plaignant nom m s 1.56 0.74 0.86 0.34 +plaignante plaignant nom f s 1.56 0.74 0.33 0.14 +plaignantes plaignant nom f p 1.56 0.74 0.03 0.07 +plaignants plaignant nom m p 1.56 0.74 0.34 0.2 +plaigne plaindre ver 61.25 67.84 0.34 0.81 sub:pre:1s;sub:pre:3s; +plaignent plaindre ver 61.25 67.84 2.71 1.49 ind:pre:3p; +plaignes plaindre ver 61.25 67.84 0.04 0 sub:pre:2s; +plaignez plaindre ver 61.25 67.84 1.6 0.74 imp:pre:2p;ind:pre:2p; +plaigniez plaindre ver 61.25 67.84 0.05 0 ind:imp:2p; +plaignions plaindre ver 61.25 67.84 0.02 0.2 ind:imp:1p; +plaignirent plaindre ver 61.25 67.84 0.01 0.27 ind:pas:3p; +plaignis plaindre ver 61.25 67.84 0 0.2 ind:pas:1s; +plaignit plaindre ver 61.25 67.84 0.14 2.84 ind:pas:3s; +plaignons plaindre ver 61.25 67.84 0.34 0.47 imp:pre:1p;ind:pre:1p; +plaignît plaindre ver 61.25 67.84 0 0.2 sub:imp:3s; +plain plain adj m s 0.6 0.27 0.31 0.14 +plain_chant plain_chant nom m s 0.1 0.27 0.1 0.27 +plain_pied plain_pied nom m s 0.12 3.65 0.12 3.65 +plaindra plaindre ver 61.25 67.84 0.41 0.07 ind:fut:3s; +plaindrai plaindre ver 61.25 67.84 0.82 0.07 ind:fut:1s; +plaindraient plaindre ver 61.25 67.84 0.16 0.07 cnd:pre:3p; +plaindrais plaindre ver 61.25 67.84 0.4 0.2 cnd:pre:1s;cnd:pre:2s; +plaindrait plaindre ver 61.25 67.84 0.12 0.81 cnd:pre:3s; +plaindras plaindre ver 61.25 67.84 0.05 0 ind:fut:2s; +plaindre plaindre ver 61.25 67.84 17.27 24.53 inf;;inf;;inf;;inf;; +plaindrez plaindre ver 61.25 67.84 0.03 0 ind:fut:2p; +plaindriez plaindre ver 61.25 67.84 0.01 0.07 cnd:pre:2p; +plaindrions plaindre ver 61.25 67.84 0 0.07 cnd:pre:1p; +plaindront plaindre ver 61.25 67.84 0.11 0.14 ind:fut:3p; +plaine plaine nom f s 3.52 39.86 3.52 39.86 +plaines plain nom f p 1.63 7.43 1.63 7.43 +plains plaindre ver 61.25 67.84 12.84 5.61 imp:pre:2s;ind:pre:1s;ind:pre:2s; +plaint plaindre ver m s 61.25 67.84 7.28 7.84 ind:pre:3s;par:pas; +plainte plaindre ver f s 61.25 67.84 13.79 6.35 par:pas; +plaintes plainte nom f p 15.07 26.69 5.46 9.59 +plaintif plaintif adj m s 1.12 6.82 0.81 3.31 +plaintifs plaintif adj m p 1.12 6.82 0.06 1.01 +plaintive plaintif adj f s 1.12 6.82 0.26 2.09 +plaintivement plaintivement adv 0 0.81 0 0.81 +plaintives plaintif adj f p 1.12 6.82 0 0.41 +plaints plaindre ver m p 61.25 67.84 0.44 0.47 par:pas; +plaira plaire ver 607.21 139.8 12.63 3.45 ind:fut:3s; +plairai plaire ver 607.21 139.8 0.16 0.14 ind:fut:1s; +plairaient plaire ver 607.21 139.8 0.21 0.41 cnd:pre:3p; +plairais plaire ver 607.21 139.8 0.61 0.27 cnd:pre:1s;cnd:pre:2s; +plairait plaire ver 607.21 139.8 14.6 4.46 cnd:pre:3s; +plairas plaire ver 607.21 139.8 0.7 0.14 ind:fut:2s; +plaire plaire ver 607.21 139.8 19 19.66 inf;; +plairez plaire ver 607.21 139.8 1.07 0.34 ind:fut:2p; +plairiez plaire ver 607.21 139.8 0.3 0 cnd:pre:2p; +plairont plaire ver 607.21 139.8 0.81 0.2 ind:fut:3p; +plais plaire ver 607.21 139.8 21.48 4.66 imp:pre:2s;ind:pre:1s;ind:pre:2s; +plaisaient plaire ver 607.21 139.8 0.55 2.97 ind:imp:3p; +plaisais plaire ver 607.21 139.8 1.75 2.7 ind:imp:1s;ind:imp:2s; +plaisait plaire ver 607.21 139.8 8.75 27.5 ind:imp:3s; +plaisamment plaisamment adv 0.02 2.03 0.02 2.03 +plaisance plaisance nom f s 0.35 2.03 0.35 2.03 +plaisancier plaisancier nom m s 0.19 0.2 0 0.07 +plaisanciers plaisancier nom m p 0.19 0.2 0.19 0.14 +plaisant plaisant adj m s 4.88 9.73 2.11 4.32 +plaisanta plaisanter ver 87.13 27.43 0 2.03 ind:pas:3s; +plaisantai plaisanter ver 87.13 27.43 0.1 0.14 ind:pas:1s; +plaisantaient plaisanter ver 87.13 27.43 0.13 0.68 ind:imp:3p; +plaisantais plaisanter ver 87.13 27.43 7.92 1.22 ind:imp:1s;ind:imp:2s; +plaisantait plaisanter ver 87.13 27.43 2.08 5.95 ind:imp:3s; +plaisantant plaisanter ver 87.13 27.43 0.62 2.64 par:pre; +plaisante plaisanter ver 87.13 27.43 28.5 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +plaisantent plaisanter ver 87.13 27.43 0.61 0.27 ind:pre:3p; +plaisanter plaisanter ver 87.13 27.43 6.24 6.01 inf; +plaisantera plaisanter ver 87.13 27.43 0 0.07 ind:fut:3s; +plaisanterai plaisanter ver 87.13 27.43 0.03 0.07 ind:fut:1s; +plaisanteraient plaisanter ver 87.13 27.43 0 0.07 cnd:pre:3p; +plaisanterais plaisanter ver 87.13 27.43 0.15 0 cnd:pre:1s; +plaisanteras plaisanter ver 87.13 27.43 0 0.07 ind:fut:2s; +plaisanterie plaisanterie nom f s 17.75 26.49 13.41 14.05 +plaisanteries plaisanterie nom f p 17.75 26.49 4.33 12.43 +plaisanterons plaisanter ver 87.13 27.43 0.02 0.07 ind:fut:1p; +plaisantes plaisanter ver 87.13 27.43 24.29 0.95 ind:pre:2s; +plaisantez plaisanter ver 87.13 27.43 14.96 1.55 imp:pre:2p;ind:pre:2p; +plaisantiez plaisanter ver 87.13 27.43 0.32 0 ind:imp:2p; +plaisantin plaisantin nom m s 0.86 0.95 0.68 0.68 +plaisantins plaisantin nom m p 0.86 0.95 0.19 0.27 +plaisantions plaisanter ver 87.13 27.43 0.04 0.14 ind:imp:1p; +plaisantons plaisanter ver 87.13 27.43 0.28 0.2 imp:pre:1p;ind:pre:1p; +plaisants plaisant adj m p 4.88 9.73 0.22 0.61 +plaisantèrent plaisanter ver 87.13 27.43 0 0.07 ind:pas:3p; +plaisanté plaisanter ver m s 87.13 27.43 0.84 1.35 par:pas; +plaise plaire ver 607.21 139.8 6.49 3.65 sub:pre:1s;sub:pre:3s; +plaisent plaire ver 607.21 139.8 6.92 3.45 ind:pre:3p; +plaises plaire ver 607.21 139.8 0.35 0.2 sub:pre:2s; +plaisez plaire ver 607.21 139.8 3.83 1.42 ind:pre:2p; +plaisiez plaire ver 607.21 139.8 0.27 0.2 ind:imp:2p; +plaisions plaire ver 607.21 139.8 0 0.27 ind:imp:1p; +plaisir plaisir nom m s 186.37 233.85 177.4 208.78 +plaisirs plaisir nom m p 186.37 233.85 8.97 25.07 +plaisons plaire ver 607.21 139.8 0.04 0.2 ind:pre:1p; +plan plan nom m s 147.54 88.99 119.54 67.84 +plan_séquence plan_séquence nom m s 0.1 0 0.1 0 +plana planer ver 7.86 16.55 0 0.34 ind:pas:3s; +planaient planer ver 7.86 16.55 0.13 0.95 ind:imp:3p; +planais planer ver 7.86 16.55 0.24 0.41 ind:imp:1s;ind:imp:2s; +planait planer ver 7.86 16.55 0.7 3.99 ind:imp:3s; +planant planant adj m s 0.56 1.22 0.25 0.68 +planante planant adj f s 0.56 1.22 0.27 0.2 +planantes planant adj f p 0.56 1.22 0.02 0.34 +planants planant adj m p 0.56 1.22 0.03 0 +planas planer ver 7.86 16.55 0 0.07 ind:pas:2s; +planchais plancher ver 1.37 1.35 0.02 0.07 ind:imp:1s; +planche planche nom f s 13.37 41.55 10.01 14.53 +planchent plancher ver 1.37 1.35 0.04 0 ind:pre:3p; +plancher plancher nom m s 7.5 31.15 6.67 29.39 +planchers plancher nom m p 7.5 31.15 0.84 1.76 +planches planche nom f p 13.37 41.55 3.36 27.03 +planche_contact planche_contact nom f p 0 0.07 0 0.07 +planchette planchette nom f s 0.01 2.5 0.01 1.82 +planchettes planchette nom f p 0.01 2.5 0 0.68 +planchiste planchiste nom s 0.2 0 0.2 0 +planché plancher ver m s 1.37 1.35 0.24 0.07 par:pas; +plancton plancton nom m s 0.65 0.47 0.52 0.47 +planctons plancton nom m p 0.65 0.47 0.14 0 +plane planer ver 7.86 16.55 2.48 2.57 ind:pre:1s;ind:pre:3s;sub:pre:3s; +planelle planelle nom f s 0.01 0 0.01 0 +planement planement nom m s 0 0.07 0 0.07 +planent planer ver 7.86 16.55 0.45 0.88 ind:pre:3p; +planer planer ver 7.86 16.55 2.25 3.99 inf;; +planera planer ver 7.86 16.55 0.02 0 ind:fut:3s; +planerait planer ver 7.86 16.55 0 0.07 cnd:pre:3s; +planerions planer ver 7.86 16.55 0 0.07 cnd:pre:1p; +planeront planer ver 7.86 16.55 0 0.07 ind:fut:3p; +planes planer ver 7.86 16.55 0.58 0.14 ind:pre:2s; +planeur planeur nom m s 1.31 0.61 0.66 0.27 +planeurs planeur nom m p 1.31 0.61 0.65 0.34 +planez planer ver 7.86 16.55 0.12 0.07 imp:pre:2p;ind:pre:2p; +planiez planer ver 7.86 16.55 0.02 0 ind:imp:2p; +planifiable planifiable adj s 0.01 0 0.01 0 +planifiaient planifier ver 8.15 0.68 0.01 0 ind:imp:3p; +planifiait planifier ver 8.15 0.68 0.18 0 ind:imp:3s; +planifiant planifier ver 8.15 0.68 0.05 0.07 par:pre; +planificateur planificateur nom m s 0.06 0 0.04 0 +planification planification nom f s 0.42 0.34 0.42 0.34 +planificatrice planificateur nom f s 0.06 0 0.01 0 +planifie planifier ver 8.15 0.68 0.87 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +planifient planifier ver 8.15 0.68 0.09 0 ind:pre:3p; +planifier planifier ver 8.15 0.68 1.94 0.07 inf; +planifierais planifier ver 8.15 0.68 0.01 0.07 cnd:pre:1s; +planifiez planifier ver 8.15 0.68 0.11 0 imp:pre:2p;ind:pre:2p; +planifions planifier ver 8.15 0.68 0.08 0 imp:pre:1p;ind:pre:1p; +planifié planifier ver m s 8.15 0.68 4.42 0.27 par:pas; +planifiée planifier ver f s 8.15 0.68 0.31 0.07 par:pas; +planifiés planifier ver m p 8.15 0.68 0.08 0.07 par:pas; +planisphère planisphère nom m s 0.01 1.15 0.01 1.01 +planisphères planisphère nom m p 0.01 1.15 0 0.14 +planitude planitude nom f s 0 0.14 0 0.14 +planning planning nom m s 4.77 0.81 4.55 0.81 +plannings planning nom m p 4.77 0.81 0.22 0 +planqua planquer ver 18.79 21.76 0 0.07 ind:pas:3s; +planquaient planquer ver 18.79 21.76 0.12 0.41 ind:imp:3p; +planquais planquer ver 18.79 21.76 0.26 0.2 ind:imp:1s;ind:imp:2s; +planquait planquer ver 18.79 21.76 0.21 1.35 ind:imp:3s; +planquant planquer ver 18.79 21.76 0.01 0.27 par:pre; +planque planque nom f s 9.1 7.3 8.21 6.42 +planquent planquer ver 18.79 21.76 0.68 0.74 ind:pre:3p; +planquer planquer ver 18.79 21.76 3.81 6.49 inf; +planquera planquer ver 18.79 21.76 0.05 0.07 ind:fut:3s; +planquerai planquer ver 18.79 21.76 0.02 0.07 ind:fut:1s; +planquerais planquer ver 18.79 21.76 0.04 0 cnd:pre:1s; +planquerait planquer ver 18.79 21.76 0.04 0.07 cnd:pre:3s; +planqueras planquer ver 18.79 21.76 0.03 0 ind:fut:2s; +planques planque nom f p 9.1 7.3 0.9 0.88 +planquez planquer ver 18.79 21.76 1.77 0.34 imp:pre:2p;ind:pre:2p; +planquiez planquer ver 18.79 21.76 0 0.07 ind:imp:2p; +planquions planquer ver 18.79 21.76 0 0.07 ind:imp:1p; +planquons planquer ver 18.79 21.76 0.22 0.14 imp:pre:1p;ind:pre:1p; +planquèrent planquer ver 18.79 21.76 0 0.07 ind:pas:3p; +planqué planquer ver m s 18.79 21.76 3.87 4.66 par:pas; +planquée planquer ver f s 18.79 21.76 0.94 1.28 par:pas; +planquées planqué adj f p 1.67 1.69 0.14 0.14 +planqués planqué adj m p 1.67 1.69 0.74 0.88 +plans plan nom m p 147.54 88.99 28 21.15 +plant plant nom m s 2.54 4.53 1.07 1.62 +planta planter ver 38.29 75.88 0.19 7.84 ind:pas:3s; +plantage plantage nom m s 0.04 0 0.04 0 +plantai planter ver 38.29 75.88 0.01 0.54 ind:pas:1s; +plantaient planter ver 38.29 75.88 0.14 0.74 ind:imp:3p; +plantain plantain nom m s 0.04 0.14 0.01 0 +plantains plantain nom m p 0.04 0.14 0.04 0.14 +plantaire plantaire adj s 0.14 0.2 0.1 0.14 +plantaires plantaire adj f p 0.14 0.2 0.04 0.07 +plantais planter ver 38.29 75.88 0.33 1.01 ind:imp:1s;ind:imp:2s; +plantait planter ver 38.29 75.88 0.43 3.24 ind:imp:3s; +plantant planter ver 38.29 75.88 0.43 2.03 par:pre; +plantation plantation nom f s 5.73 6.35 2.25 3.72 +plantations plantation nom f p 5.73 6.35 3.48 2.64 +plante plante nom f s 21.86 35 9 11.49 +plantent planter ver 38.29 75.88 0.43 0.61 ind:pre:3p; +planter planter ver 38.29 75.88 10.58 12.16 inf;; +plantera planter ver 38.29 75.88 0.3 0.07 ind:fut:3s; +planterai planter ver 38.29 75.88 0.81 0.07 ind:fut:1s; +planterais planter ver 38.29 75.88 0.17 0 cnd:pre:1s;cnd:pre:2s; +planterait planter ver 38.29 75.88 0.06 0.2 cnd:pre:3s; +planteras planter ver 38.29 75.88 0.17 0 ind:fut:2s; +planterez planter ver 38.29 75.88 0.02 0 ind:fut:2p; +planterons planter ver 38.29 75.88 0.05 0.14 ind:fut:1p; +planteront planter ver 38.29 75.88 0.13 0 ind:fut:3p; +plantes plante nom f p 21.86 35 12.85 23.51 +planteur planteur nom m s 0.64 2.23 0.42 1.15 +planteurs planteur nom m p 0.64 2.23 0.22 1.08 +plantez planter ver 38.29 75.88 0.68 0.14 imp:pre:2p;ind:pre:2p; +plantier plantier nom m s 0.7 0.14 0.7 0.14 +plantiez planter ver 38.29 75.88 0.04 0.07 ind:imp:2p; +plantigrade plantigrade nom m s 0.13 0.2 0.13 0.2 +plantions planter ver 38.29 75.88 0.02 0.14 ind:imp:1p; +plantoir plantoir nom m s 0.14 0.07 0.14 0.07 +planton planton nom m s 0.53 2.91 0.5 2.5 +plantons planter ver 38.29 75.88 0.25 0.14 imp:pre:1p;ind:pre:1p; +plants plant nom m p 2.54 4.53 1.47 2.91 +plantureuse plantureux adj f s 0.11 1.42 0.07 0.68 +plantureuses plantureux adj f p 0.11 1.42 0.04 0.27 +plantureux plantureux adj m s 0.11 1.42 0.01 0.47 +plantèrent planter ver 38.29 75.88 0.01 0.68 ind:pas:3p; +planté planter ver m s 38.29 75.88 11.2 20.07 par:pas; +plantée planter ver f s 38.29 75.88 2.68 10.47 par:pas; +plantées planter ver f p 38.29 75.88 0.89 3.31 par:pas; +plantés planter ver m p 38.29 75.88 2.31 7.09 par:pas; +planète planète nom f s 61.11 22.91 55.29 19.86 +planètes planète nom f p 61.11 22.91 5.82 3.04 +plané planer ver m s 7.86 16.55 0.76 1.76 par:pas; +planétaire planétaire adj s 2.27 1.35 1.93 0.95 +planétaires planétaire adj p 2.27 1.35 0.34 0.41 +planétarium planétarium nom m s 0.31 0.27 0.31 0.2 +planétariums planétarium nom m p 0.31 0.27 0 0.07 +planétoïde planétoïde nom m s 0.04 0 0.04 0 +plaqua plaquer ver 12.46 27.7 0.01 2.64 ind:pas:3s; +plaquage plaquage nom m s 0.26 0.2 0.22 0.07 +plaquages plaquage nom m p 0.26 0.2 0.04 0.14 +plaquai plaquer ver 12.46 27.7 0 0.34 ind:pas:1s; +plaquaient plaquer ver 12.46 27.7 0.01 0.27 ind:imp:3p; +plaquais plaquer ver 12.46 27.7 0.14 0.14 ind:imp:1s;ind:imp:2s; +plaquait plaquer ver 12.46 27.7 0.13 2.23 ind:imp:3s; +plaquant plaquer ver 12.46 27.7 0.02 1.49 par:pre; +plaque plaque nom f s 20.48 46.15 13.87 26.01 +plaqueminiers plaqueminier nom m p 0 0.14 0 0.14 +plaquent plaquer ver 12.46 27.7 0.14 0.34 ind:pre:3p; +plaquer plaquer ver 12.46 27.7 2.48 3.92 inf; +plaquera plaquer ver 12.46 27.7 0.03 0 ind:fut:3s; +plaquerai plaquer ver 12.46 27.7 0.05 0 ind:fut:1s; +plaquerais plaquer ver 12.46 27.7 0.17 0 cnd:pre:1s;cnd:pre:2s; +plaquerait plaquer ver 12.46 27.7 0.03 0.07 cnd:pre:3s; +plaqueras plaquer ver 12.46 27.7 0.01 0 ind:fut:2s; +plaques plaque nom f p 20.48 46.15 6.62 20.14 +plaquettaire plaquettaire adj f s 0.01 0 0.01 0 +plaquette plaquette nom f s 1.02 4.26 0.28 1.55 +plaquettes plaquette nom f p 1.02 4.26 0.74 2.7 +plaqueur plaqueur nom m s 0.07 0.07 0.07 0.07 +plaquez plaquer ver 12.46 27.7 0.2 0.2 imp:pre:2p;ind:pre:2p; +plaquèrent plaquer ver 12.46 27.7 0 0.27 ind:pas:3p; +plaqué plaquer ver m s 12.46 27.7 4.37 5 par:pas; +plaquée plaquer ver f s 12.46 27.7 2.07 4.32 par:pas; +plaquées plaquer ver f p 12.46 27.7 0.04 1.76 par:pas; +plaqués plaquer ver m p 12.46 27.7 0.42 1.76 par:pas; +plasma plasma nom m s 2.85 0.34 2.85 0.34 +plasmagène plasmagène adj m s 0.01 0 0.01 0 +plasmaphérèse plasmaphérèse nom f s 0.08 0 0.08 0 +plasmique plasmique adj m s 0.01 0 0.01 0 +plaste plaste nom m s 0.01 0 0.01 0 +plastic plastic nom m s 0.81 1.15 0.81 1.15 +plasticage plasticage nom m s 0.01 0.34 0.01 0 +plasticages plasticage nom m p 0.01 0.34 0 0.34 +plasticien plasticien nom m s 0.4 0 0.38 0 +plasticienne plasticien nom f s 0.4 0 0.01 0 +plasticité plasticité nom f s 0.04 0.27 0.04 0.27 +plastie plastie nom f s 0.03 0 0.03 0 +plastifiant plastifiant nom m s 0.01 0 0.01 0 +plastification plastification nom f s 0.01 0 0.01 0 +plastifier plastifier ver 0.23 0.95 0.06 0 inf; +plastifié plastifier ver m s 0.23 0.95 0.09 0.61 par:pas; +plastifiée plastifier ver f s 0.23 0.95 0.07 0.14 par:pas; +plastifiées plastifier ver f p 0.23 0.95 0.01 0.07 par:pas; +plastifiés plastifier ver m p 0.23 0.95 0 0.14 par:pas; +plastiquage plastiquage nom m s 0.16 0 0.16 0 +plastiquais plastiquer ver 0.41 0.41 0.01 0 ind:imp:1s; +plastique plastique nom s 13.44 16.96 12.89 16.82 +plastiquer plastiquer ver 0.41 0.41 0.16 0.07 inf; +plastiques plastique adj p 4.67 6.96 0.72 1.42 +plastiqueur plastiqueur nom m s 0.22 0.14 0.22 0.14 +plastiqué plastiquer ver m s 0.41 0.41 0.18 0.07 par:pas; +plastisol plastisol nom m s 0.01 0 0.01 0 +plastoc plastoc nom m s 0.09 0.2 0.09 0.2 +plastron plastron nom m s 0.11 2.57 0.09 2.3 +plastronnaient plastronner ver 0.02 1.35 0 0.07 ind:imp:3p; +plastronnait plastronner ver 0.02 1.35 0 0.2 ind:imp:3s; +plastronnant plastronner ver 0.02 1.35 0 0.2 par:pre; +plastronne plastronner ver 0.02 1.35 0 0.07 ind:pre:3s; +plastronnent plastronner ver 0.02 1.35 0 0.14 ind:pre:3p; +plastronner plastronner ver 0.02 1.35 0.02 0.61 inf; +plastronnes plastronner ver 0.02 1.35 0 0.07 ind:pre:2s; +plastronneur plastronneur nom m s 0 0.07 0 0.07 +plastrons plastron nom m p 0.11 2.57 0.02 0.27 +plat plat nom s 30.24 61.35 21.87 44.26 +plat_bord plat_bord nom m s 0.01 0.61 0 0.54 +plat_ventre plat_ventre nom m s 0.11 0.07 0.11 0.07 +platane platane nom m s 0.44 13.99 0.31 4.26 +platanes platane nom m p 0.44 13.99 0.14 9.73 +plate plat adj f s 14.66 61.76 3.09 17.5 +plate_bande plate_bande nom f s 0.82 2.77 0.12 0.54 +plate_forme plate_forme nom f s 3.06 11.15 2.49 8.45 +plateau plateau nom m s 17.17 54.53 15.73 45.74 +plateau_repas plateau_repas nom m 0.04 0.14 0.04 0.14 +plateaux plateau nom m p 17.17 54.53 1.44 8.78 +plateaux_repas plateaux_repas nom m p 0.04 0.07 0.04 0.07 +platebandes platebande nom f p 0.06 0 0.06 0 +plateforme plateforme nom f s 0.59 0.34 0.59 0.34 +platelage platelage nom m s 0 0.07 0 0.07 +platement platement adv 0.14 1.08 0.14 1.08 +plateresque plateresque adj m s 0 0.2 0 0.14 +plateresques plateresque adj f p 0 0.2 0 0.07 +plates plat adj f p 14.66 61.76 0.92 7.23 +plate_bande plate_bande nom f p 0.82 2.77 0.7 2.23 +plate_forme plate_forme nom f p 3.06 11.15 0.57 2.7 +platine platine nom s 2.06 3.31 1.73 3.18 +platines platine nom p 2.06 3.31 0.32 0.14 +platiné platiné adj m s 0.01 1.15 0 0.07 +platinée platiné adj f s 0.01 1.15 0 0.61 +platinées platiné adj f p 0.01 1.15 0.01 0.34 +platinés platiné adj m p 0.01 1.15 0 0.14 +platitude platitude nom f s 0.29 2.3 0.18 1.55 +platitudes platitude nom f p 0.29 2.3 0.12 0.74 +platière platière nom f s 0 0.07 0 0.07 +platonicien platonicien adj m s 0.14 0.41 0 0.27 +platonicienne platonicien adj f s 0.14 0.41 0.14 0.07 +platoniciens platonicien adj m p 0.14 0.41 0 0.07 +platonique platonique adj s 0.76 1.55 0.66 0.88 +platoniquement platoniquement adv 0.05 0.27 0.05 0.27 +platoniques platonique adj p 0.76 1.55 0.1 0.68 +platonisant platonisant adj m s 0 0.07 0 0.07 +plats plat nom m p 30.24 61.35 8.37 17.09 +plat_bord plat_bord nom m p 0.01 0.61 0.01 0.07 +platures plature nom m p 0 0.14 0 0.14 +platyrrhiniens platyrrhinien adj m p 0 0.07 0 0.07 +platée platée nom f s 0.04 0.61 0.04 0.47 +platées platée nom f p 0.04 0.61 0 0.14 +plausibilité plausibilité nom f s 0.04 0 0.04 0 +plausible plausible adj s 2.68 3.92 2.48 3.24 +plausiblement plausiblement adv 0 0.07 0 0.07 +plausibles plausible adj p 2.68 3.92 0.2 0.68 +play play adv 0.01 0 0.01 0 +play_back play_back nom m 0.59 0.14 0.02 0 +play_back play_back nom m 0.59 0.14 0.57 0.14 +play_boy play_boy nom m s 0.69 1.08 0.58 0.95 +play_boy play_boy nom m p 0.69 1.08 0.11 0.14 +playboy playboy nom m s 0.38 0 0.38 0 +playmate playmate nom f s 0.36 0.34 0.3 0.27 +playmates playmate nom f p 0.36 0.34 0.06 0.07 +playon playon nom m s 0.02 0 0.02 0 +plaza plaza nom f s 1.53 2.91 1.53 2.91 +plazza plazza nom f s 0.05 0.14 0.05 0.14 +plaça placer ver 52.94 101.76 0.58 6.76 ind:pas:3s; +plaçai placer ver 52.94 101.76 0.02 0.74 ind:pas:1s; +plaçaient placer ver 52.94 101.76 0.03 1.55 ind:imp:3p; +plaçais placer ver 52.94 101.76 0.07 0.61 ind:imp:1s;ind:imp:2s; +plaçait placer ver 52.94 101.76 0.46 6.01 ind:imp:3s; +plaçant placer ver 52.94 101.76 0.79 3.38 par:pre; +plaçons placer ver 52.94 101.76 0.6 0.14 imp:pre:1p;ind:pre:1p; +plaçât placer ver 52.94 101.76 0 0.07 sub:imp:3s; +plaît plaire ver 607.21 139.8 499.91 55 ind:pre:3s; +please please adv 3.18 0.88 3.18 0.88 +plectre plectre nom m s 0 0.07 0 0.07 +plein plein pre 89.11 52.77 89.11 52.77 +plein_air plein_air adj m s 0 0.07 0 0.07 +plein_air plein_air nom m s 0 0.2 0 0.2 +plein_cintre plein_cintre nom m s 0 0.07 0 0.07 +plein_emploi plein_emploi nom m s 0.01 0 0.01 0 +plein_temps plein_temps nom m 0.12 0 0.12 0 +pleine plein adj f s 208.75 370.41 82.13 139.19 +pleinement pleinement adv 3.44 7.77 3.44 7.77 +pleines plein adj f p 208.75 370.41 8.6 32.43 +pleins plein adj m p 208.75 370.41 13.46 40.95 +plessis plessis nom m 0 0.07 0 0.07 +plet plet nom m s 0 0.07 0 0.07 +pleur pleur nom m s 9.52 12.5 0.2 0.81 +pleura pleurer ver 191.64 163.31 0.81 5.88 ind:pas:3s; +pleurai pleurer ver 191.64 163.31 0 1.22 ind:pas:1s; +pleuraient pleurer ver 191.64 163.31 1.16 3.72 ind:imp:3p; +pleurais pleurer ver 191.64 163.31 4.01 5.07 ind:imp:1s;ind:imp:2s; +pleurait pleurer ver 191.64 163.31 7.54 26.49 ind:imp:3s; +pleural pleural adj m s 0.32 0 0.12 0 +pleurale pleural adj f s 0.32 0 0.2 0 +pleurant pleurer ver 191.64 163.31 3.26 7.16 par:pre; +pleurante pleurant adj f s 0.2 2.09 0 0.95 +pleurantes pleurant adj f p 0.2 2.09 0 0.07 +pleurants pleurant adj m p 0.2 2.09 0.01 0.2 +pleurard pleurard adj m s 0.01 0.54 0.01 0.14 +pleurarde pleurard adj f s 0.01 0.54 0 0.2 +pleurards pleurard adj m p 0.01 0.54 0 0.2 +pleure pleurer ver 191.64 163.31 60.17 24.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +pleurement pleurement nom m s 0 0.2 0 0.14 +pleurements pleurement nom m p 0 0.2 0 0.07 +pleurent pleurer ver 191.64 163.31 5.41 4.19 ind:pre:3p;sub:pre:3p; +pleurer pleurer ver 191.64 163.31 61.6 63.51 inf; +pleurera pleurer ver 191.64 163.31 1.25 0.61 ind:fut:3s; +pleurerai pleurer ver 191.64 163.31 1.34 0.14 ind:fut:1s; +pleureraient pleurer ver 191.64 163.31 0.12 0 cnd:pre:3p; +pleurerais pleurer ver 191.64 163.31 1.19 0.47 cnd:pre:1s;cnd:pre:2s; +pleurerait pleurer ver 191.64 163.31 0.38 0.68 cnd:pre:3s; +pleureras pleurer ver 191.64 163.31 0.55 0.14 ind:fut:2s; +pleurerez pleurer ver 191.64 163.31 0.2 0.14 ind:fut:2p; +pleurerons pleurer ver 191.64 163.31 0.02 0 ind:fut:1p; +pleureront pleurer ver 191.64 163.31 0.16 0 ind:fut:3p; +pleures pleurer ver 191.64 163.31 17 2.84 ind:pre:2s; +pleureur pleureur adj m s 0.12 1.15 0.06 0.47 +pleureurs pleureur nom m p 0.47 1.22 0.14 0.14 +pleureuse pleureur nom f s 0.47 1.22 0.17 0.2 +pleureuses pleureur nom f p 0.47 1.22 0.14 0.88 +pleureux pleureur adj m 0.12 1.15 0.01 0 +pleurez pleurer ver 191.64 163.31 7.26 1.08 imp:pre:2p;ind:pre:2p; +pleuriez pleurer ver 191.64 163.31 0.31 0.14 ind:imp:2p; +pleurions pleurer ver 191.64 163.31 0.13 0.34 ind:imp:1p;sub:pre:1p; +pleurite pleurite nom f s 0.1 0.07 0.1 0.07 +pleurnicha pleurnicher ver 5.75 6.08 0 0.95 ind:pas:3s; +pleurnichage pleurnichage nom m s 0.03 0 0.01 0 +pleurnichages pleurnichage nom m p 0.03 0 0.01 0 +pleurnichais pleurnicher ver 5.75 6.08 0.11 0.07 ind:imp:1s;ind:imp:2s; +pleurnichait pleurnicher ver 5.75 6.08 0.02 0.81 ind:imp:3s; +pleurnichant pleurnicher ver 5.75 6.08 0.05 0.68 par:pre; +pleurnichard pleurnichard nom m s 0.55 0.07 0.47 0.07 +pleurnicharde pleurnichard adj f s 0.34 0.74 0.05 0.2 +pleurnichardes pleurnichard adj f p 0.34 0.74 0.01 0 +pleurnichards pleurnichard nom m p 0.55 0.07 0.08 0 +pleurniche pleurnicher ver 5.75 6.08 1.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pleurnichement pleurnichement nom m s 0.01 0.34 0 0.14 +pleurnichements pleurnichement nom m p 0.01 0.34 0.01 0.2 +pleurnichent pleurnicher ver 5.75 6.08 0.07 0.27 ind:pre:3p; +pleurnicher pleurnicher ver 5.75 6.08 3.35 1.62 inf; +pleurnicherais pleurnicher ver 5.75 6.08 0.01 0 cnd:pre:2s; +pleurnicherait pleurnicher ver 5.75 6.08 0 0.07 cnd:pre:3s; +pleurnicheras pleurnicher ver 5.75 6.08 0.03 0 ind:fut:2s; +pleurnicherie pleurnicherie nom f s 0.2 0.54 0.02 0.07 +pleurnicheries pleurnicherie nom f p 0.2 0.54 0.17 0.47 +pleurniches pleurnicher ver 5.75 6.08 0.54 0 ind:pre:2s; +pleurnicheur pleurnicheur adj m s 0.28 0.34 0.22 0.14 +pleurnicheurs pleurnicheur nom m p 0.28 0.14 0.04 0 +pleurnicheuse pleurnicheur nom f s 0.28 0.14 0.06 0.07 +pleurnicheuses pleurnicheur nom f p 0.28 0.14 0.03 0.07 +pleurnichez pleurnicher ver 5.75 6.08 0.14 0.07 imp:pre:2p;ind:pre:2p; +pleurniché pleurnicher ver m s 5.75 6.08 0.08 0.74 par:pas; +pleurons pleurer ver 191.64 163.31 0.73 0.61 imp:pre:1p;ind:pre:1p; +pleurotes pleurote nom m p 0 0.07 0 0.07 +pleurs pleur nom m p 9.52 12.5 9.32 11.69 +pleurât pleurer ver 191.64 163.31 0 0.14 sub:imp:3s; +pleurèrent pleurer ver 191.64 163.31 0.01 0.41 ind:pas:3p; +pleuré pleurer ver m s 191.64 163.31 16.91 13.04 par:pas; +pleurée pleurer ver f s 191.64 163.31 0.07 0.14 par:pas; +pleurées pleurer ver f p 191.64 163.31 0 0.2 par:pas; +pleurés pleurer ver m p 191.64 163.31 0.03 0.07 par:pas; +pleurésie pleurésie nom f s 0.17 0.54 0.17 0.54 +pleurétique pleurétique adj f s 0.01 0 0.01 0 +pleut pleuvoir ver 67.17 47.09 20.5 10.41 ind:pre:3s; +pleutre pleutre nom m s 0.18 0.61 0.16 0.41 +pleutrerie pleutrerie nom f s 0 0.14 0 0.14 +pleutres pleutre nom m p 0.18 0.61 0.02 0.2 +pleuvaient pleuvoir ver 67.17 47.09 0.13 2.23 ind:imp:3p; +pleuvait pleuvoir ver 67.17 47.09 4.43 11.62 ind:imp:3s; +pleuvant pleuvoir ver 67.17 47.09 0.01 0.2 par:pre; +pleuve pleuvoir ver 67.17 47.09 3.29 0.95 sub:pre:3s; +pleuvent pleuvoir ver 67.17 47.09 0.38 0.88 ind:pre:3p; +pleuvinait pleuviner ver 0.02 0.14 0 0.07 ind:imp:3s; +pleuvine pleuviner ver 0.02 0.14 0.02 0 ind:pre:3s; +pleuviner pleuviner ver 0.02 0.14 0 0.07 inf; +pleuvioter pleuvioter ver 0 0.07 0 0.07 inf; +pleuvoir pleuvoir ver 67.17 47.09 7.98 6.69 inf; +pleuvra pleuvoir ver 67.17 47.09 0.87 0.68 ind:fut:3s; +pleuvrait pleuvoir ver 67.17 47.09 0.05 0.34 cnd:pre:3s; +plexi plexi nom m s 0.01 0 0.01 0 +plexiglas plexiglas nom m 0.13 0.47 0.13 0.47 +plexus plexus nom m 0.43 0.88 0.43 0.88 +pleyel pleyel nom m s 0.02 0.07 0.02 0.07 +pli pli nom m s 6 41.42 4.42 16.76 +plia plier ver 14.37 50.2 0 3.99 ind:pas:3s; +pliable pliable adj s 0.19 0 0.19 0 +pliage pliage nom m s 0.12 0.54 0.11 0.47 +pliages pliage nom m p 0.12 0.54 0.01 0.07 +pliai plier ver 14.37 50.2 0 0.27 ind:pas:1s; +pliaient plier ver 14.37 50.2 0.02 1.08 ind:imp:3p; +pliais plier ver 14.37 50.2 0.01 0.34 ind:imp:1s; +pliait plier ver 14.37 50.2 0.13 3.18 ind:imp:3s; +pliant pliant adj m s 0.54 3.92 0.34 2.09 +pliante pliant adj f s 0.54 3.92 0.06 1.15 +pliantes pliant adj f p 0.54 3.92 0.12 0.27 +pliants pliant adj m p 0.54 3.92 0.03 0.41 +plie plier ver 14.37 50.2 3.54 5 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +plient plier ver 14.37 50.2 0.22 0.74 ind:pre:3p; +plier plier ver 14.37 50.2 5.02 10.68 inf; +pliera plier ver 14.37 50.2 0.08 0.07 ind:fut:3s; +plierai plier ver 14.37 50.2 0.28 0.14 ind:fut:1s; +plieraient plier ver 14.37 50.2 0.02 0 cnd:pre:3p; +plierait plier ver 14.37 50.2 0.04 0.27 cnd:pre:3s; +plieras plier ver 14.37 50.2 0.03 0 ind:fut:2s; +plierez plier ver 14.37 50.2 0.03 0.07 ind:fut:2p; +plierons plier ver 14.37 50.2 0.17 0 ind:fut:1p; +plies plier ver 14.37 50.2 0.28 0.14 ind:pre:2s; +plieur plieur nom m s 0.02 0 0.01 0 +plieuse plieur nom f s 0.02 0 0.01 0 +pliez plier ver 14.37 50.2 1.32 0.07 imp:pre:2p;ind:pre:2p; +plinthe plinthe nom f s 0.26 2.43 0.1 1.01 +plinthes plinthe nom f p 0.26 2.43 0.16 1.42 +pliocène pliocène nom m s 0.01 0 0.01 0 +plioir plioir nom m s 0 0.14 0 0.14 +plions plier ver 14.37 50.2 0.22 0 imp:pre:1p;ind:pre:1p; +plique plique nom f s 0.03 0 0.03 0 +plis pli nom m p 6 41.42 1.58 24.66 +plissa plisser ver 0.59 16.49 0 3.31 ind:pas:3s; +plissai plisser ver 0.59 16.49 0 0.14 ind:pas:1s; +plissaient plisser ver 0.59 16.49 0 0.54 ind:imp:3p; +plissais plisser ver 0.59 16.49 0 0.07 ind:imp:1s; +plissait plisser ver 0.59 16.49 0 1.69 ind:imp:3s; +plissant plisser ver 0.59 16.49 0.02 3.38 par:pre; +plisse plisser ver 0.59 16.49 0.1 2.5 imp:pre:2s;ind:pre:3s; +plissement plissement nom m s 0.03 1.08 0.02 0.68 +plissements plissement nom m p 0.03 1.08 0.01 0.41 +plissent plisser ver 0.59 16.49 0.02 0.41 ind:pre:3p; +plisser plisser ver 0.59 16.49 0.15 1.08 inf; +plisseront plisser ver 0.59 16.49 0 0.07 ind:fut:3p; +plisseur plisseur nom m s 0 0.07 0 0.07 +plissure plissure nom f s 0 0.2 0 0.07 +plissures plissure nom f p 0 0.2 0 0.14 +plissèrent plisser ver 0.59 16.49 0 0.27 ind:pas:3p; +plissé plisser ver m s 0.59 16.49 0.12 1.42 par:pas; +plissée plissé adj f s 0.33 8.72 0.08 3.18 +plissées plissé adj f p 0.33 8.72 0.02 1.01 +plissés plissé adj m p 0.33 8.72 0.17 1.76 +pliure pliure nom f s 0.03 0.95 0.03 0.41 +pliures pliure nom f p 0.03 0.95 0 0.54 +pliât plier ver 14.37 50.2 0 0.07 sub:imp:3s; +plièrent plier ver 14.37 50.2 0 0.2 ind:pas:3p; +plié plier ver m s 14.37 50.2 1.43 10.27 par:pas; +pliée plier ver f s 14.37 50.2 0.68 5.34 par:pas; +pliées plier ver f p 14.37 50.2 0.37 1.62 par:pas; +pliés plier ver m p 14.37 50.2 0.32 3.92 par:pas; +ploc ploc ono 0.65 0.61 0.65 0.61 +ploie ployer ver 0.44 7.36 0.03 0.95 ind:pre:1s;ind:pre:3s; +ploiement ploiement nom m s 0 0.27 0 0.27 +ploient ployer ver 0.44 7.36 0.01 0.34 ind:pre:3p; +plomb plomb nom m s 20.24 22.64 10.62 20.27 +plombage plombage nom m s 0.99 0.41 0.43 0.14 +plombages plombage nom m p 0.99 0.41 0.56 0.27 +plombaient plomber ver 1.77 2.7 0 0.14 ind:imp:3p; +plombait plomber ver 1.77 2.7 0 0.41 ind:imp:3s; +plombant plomber ver 1.77 2.7 0.01 0.14 par:pre; +plombe plombe nom f s 1 7.09 0.45 1.55 +plombent plomber ver 1.77 2.7 0.01 0.07 ind:pre:3p; +plomber plomber ver 1.77 2.7 0.78 0.54 inf; +plomberie plomberie nom f s 2.32 0.81 2.31 0.74 +plomberies plomberie nom f p 2.32 0.81 0.01 0.07 +plombes plombe nom f p 1 7.09 0.55 5.54 +plombez plomber ver 1.77 2.7 0.03 0 imp:pre:2p;ind:pre:2p; +plombier plombier nom m s 5.85 3.99 5.22 3.31 +plombiers plombier nom m p 5.85 3.99 0.63 0.68 +plombières plombières nom f 0 0.2 0 0.2 +plombs plomb nom m p 20.24 22.64 9.62 2.36 +plombure plombure nom f s 0 0.07 0 0.07 +plombé plomber ver m s 1.77 2.7 0.32 0.61 par:pas; +plombée plomber ver f s 1.77 2.7 0.16 0.07 par:pas; +plombées plombé adj f p 0.2 3.85 0.01 0.47 +plombés plombé adj m p 0.2 3.85 0.01 0.54 +plonge plonger ver 31.96 86.22 5.37 12.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +plongea plonger ver 31.96 86.22 0.49 10.88 ind:pas:3s; +plongeai plonger ver 31.96 86.22 0.13 1.22 ind:pas:1s; +plongeaient plonger ver 31.96 86.22 0.16 2.64 ind:imp:3p; +plongeais plonger ver 31.96 86.22 0.29 2.43 ind:imp:1s;ind:imp:2s; +plongeait plonger ver 31.96 86.22 0.41 10.27 ind:imp:3s; +plongeant plonger ver 31.96 86.22 1.41 5.41 par:pre; +plongeante plongeant adj f s 0.2 1.28 0.04 0.47 +plongeantes plongeant adj f p 0.2 1.28 0 0.07 +plongeants plongeant adj m p 0.2 1.28 0 0.07 +plongement plongement nom m s 0 0.07 0 0.07 +plongent plonger ver 31.96 86.22 1.04 2.09 ind:pre:3p; +plongeoir plongeoir nom m s 0.44 1.08 0.44 1.01 +plongeoirs plongeoir nom m p 0.44 1.08 0 0.07 +plongeon plongeon nom m s 2.98 4.05 2.71 3.18 +plongeons plongeon nom m p 2.98 4.05 0.27 0.88 +plonger plonger ver 31.96 86.22 9.36 14.66 inf; +plongera plonger ver 31.96 86.22 0.36 0.27 ind:fut:3s; +plongerai plonger ver 31.96 86.22 0.3 0 ind:fut:1s; +plongeraient plonger ver 31.96 86.22 0.02 0 cnd:pre:3p; +plongerais plonger ver 31.96 86.22 0.02 0.2 cnd:pre:1s; +plongerait plonger ver 31.96 86.22 0.21 0.47 cnd:pre:3s; +plongeras plonger ver 31.96 86.22 0.15 0 ind:fut:2s; +plongerez plonger ver 31.96 86.22 0.44 0 ind:fut:2p; +plongeriez plonger ver 31.96 86.22 0.01 0 cnd:pre:2p; +plongerons plonger ver 31.96 86.22 0.06 0 ind:fut:1p; +plongeront plonger ver 31.96 86.22 0.16 0.07 ind:fut:3p; +plonges plonger ver 31.96 86.22 0.61 0.2 ind:pre:2s; +plongeur plongeur nom m s 3.89 3.11 2.06 1.69 +plongeurs plongeur nom m p 3.89 3.11 1.7 0.68 +plongeuse plongeur nom f s 3.89 3.11 0.13 0.68 +plongeuses plongeur nom f p 3.89 3.11 0.01 0.07 +plongez plonger ver 31.96 86.22 2.13 0.14 imp:pre:2p;ind:pre:2p; +plongeâmes plonger ver 31.96 86.22 0.01 0.07 ind:pas:1p; +plongeât plonger ver 31.96 86.22 0 0.14 sub:imp:3s; +plongiez plonger ver 31.96 86.22 0.37 0 ind:imp:2p; +plongions plonger ver 31.96 86.22 0.04 0.41 ind:imp:1p; +plongèrent plonger ver 31.96 86.22 0.16 0.95 ind:pas:3p; +plongé plonger ver m s 31.96 86.22 5.87 14.19 par:pas; +plongée plongée nom f s 6.74 6.55 6.63 5.34 +plongées plonger ver f p 31.96 86.22 0.13 0.68 par:pas; +plongés plonger ver m p 31.96 86.22 0.72 2.5 par:pas; +plot plot nom m s 0.32 0.61 0.26 0.54 +plots plot nom m p 0.32 0.61 0.06 0.07 +plouc plouc nom m s 3.9 1.82 2.35 0.47 +ploucs plouc nom m p 3.9 1.82 1.55 1.35 +plouf plouf ono 1.31 1.55 1.31 1.55 +plouk plouk nom m s 0.01 0.68 0.01 0.68 +ploutocrate ploutocrate nom m s 0.02 0.07 0.01 0 +ploutocrates ploutocrate nom m p 0.02 0.07 0.01 0.07 +ploutocratie ploutocratie nom f s 0.2 0 0.2 0 +ploya ployer ver 0.44 7.36 0 0.14 ind:pas:3s; +ployaient ployer ver 0.44 7.36 0.01 0.34 ind:imp:3p; +ployait ployer ver 0.44 7.36 0.1 0.74 ind:imp:3s; +ployant ployant adj m s 0.01 0.2 0.01 0.07 +ployante ployant adj f s 0.01 0.2 0 0.14 +ployer ployer ver 0.44 7.36 0.14 1.42 inf; +ployé ployer ver m s 0.44 7.36 0.14 1.01 par:pas; +ployée ployer ver f s 0.44 7.36 0 0.95 par:pas; +ployées ployer ver f p 0.44 7.36 0 0.2 par:pas; +ployés ployer ver m p 0.44 7.36 0 0.27 par:pas; +plu pleuvoir ver m s 67.17 47.09 29.54 13.11 par:pas; +pluche plucher ver 0.01 1.01 0.01 0.95 imp:pre:2s;ind:pre:3s; +plucher plucher ver 0.01 1.01 0 0.07 inf; +pluches pluches nom f p 0.01 0.54 0.01 0.54 +plue plue adv 0.26 0 0.26 0 +pluie pluie nom f s 46.1 122.57 42.91 111.76 +pluies pluie nom f p 46.1 122.57 3.19 10.81 +plum plume nom m s 15.29 60 0.11 0.61 +plum_pudding plum_pudding nom m s 0.02 0.07 0.02 0.07 +pluma plumer ver 2.44 3.78 0 0.07 ind:pas:3s; +plumage plumage nom m s 0.41 2.64 0.41 2.3 +plumages plumage nom m p 0.41 2.64 0 0.34 +plumaient plumer ver 2.44 3.78 0 0.27 ind:imp:3p; +plumait plumer ver 2.44 3.78 0.03 0.47 ind:imp:3s; +plumant plumer ver 2.44 3.78 0.04 0.2 par:pre; +plumard plumard nom m s 0.84 5.95 0.7 5.68 +plumards plumard nom m p 0.84 5.95 0.14 0.27 +plumassière plumassier nom f s 0 0.07 0 0.07 +plume plume nom f s 15.29 60 6.49 33.38 +plumeau plumeau nom m s 0.59 2.7 0.48 2.3 +plumeaux plumeau nom m p 0.59 2.7 0.11 0.41 +plument plumer ver 2.44 3.78 0.01 0.07 ind:pre:3p; +plumer plumer ver 2.44 3.78 1.06 1.01 inf; +plumes plume nom f p 15.29 60 8.69 26.01 +plumet plumet nom m s 0.23 2.03 0.23 0.74 +plumetis plumetis nom m 0 0.2 0 0.2 +plumets plumet nom m p 0.23 2.03 0 1.28 +plumeuse plumeux adj f s 0 0.74 0 0.2 +plumeuses plumeux adj f p 0 0.74 0 0.2 +plumeux plumeux adj m 0 0.74 0 0.34 +plumez plumer ver 2.44 3.78 0.04 0 imp:pre:2p;ind:pre:2p; +plumier plumier nom m s 0.03 1.35 0.03 0.95 +plumiers plumier nom m p 0.03 1.35 0 0.41 +plumitif plumitif nom m s 0.32 1.15 0.31 0.41 +plumitifs plumitif nom m p 0.32 1.15 0.01 0.74 +plumitives plumitive nom f p 0 0.07 0 0.07 +plumules plumule nom f p 0 0.07 0 0.07 +plumé plumer ver m s 2.44 3.78 0.37 0.47 par:pas; +plumée plumer ver f s 2.44 3.78 0.26 0.27 par:pas; +plumées plumer ver f p 2.44 3.78 0 0.14 par:pas; +plumés plumer ver m p 2.44 3.78 0.08 0.14 par:pas; +plupart plupart adv_sup 0.01 0.07 0.01 0.07 +pluralisme pluralisme nom m s 0.16 0.07 0.16 0.07 +pluraliste pluraliste adj f s 0.22 0.14 0.22 0.14 +pluralité pluralité nom f s 0 0.27 0 0.27 +plurent plaire ver 607.21 139.8 0.11 0.54 ind:pas:3p; +pluriannuel pluriannuel adj m s 0.01 0 0.01 0 +pluridisciplinaire pluridisciplinaire adj s 0.01 0 0.01 0 +pluriel pluriel nom m s 0.82 3.11 0.81 2.97 +plurielle pluriel adj f s 0.27 0.41 0 0.2 +pluriels pluriel nom m p 0.82 3.11 0.01 0.14 +plurinational plurinational adj m s 0.1 0 0.1 0 +plus plus adv_sup 4062.45 5014.53 4062.45 5014.53 +plus_que_parfait plus_que_parfait nom m s 0.02 0.14 0.02 0.07 +plus_que_parfait plus_que_parfait nom m p 0.02 0.14 0 0.07 +plus_value plus_value nom f s 0.72 0.68 0.48 0.54 +plus_value plus_value nom f p 0.72 0.68 0.25 0.14 +plusieurs plusieurs adj_ind p 66.98 203.58 66.98 203.58 +plusse plaire ver 607.21 139.8 0 0.07 sub:imp:1s; +plut plaire ver 607.21 139.8 0.76 4.86 ind:pas:3p;ind:pas:3s;ind:pas:3s; +pluton pluton nom m s 0.14 0 0.14 0 +plutonien plutonien adj m s 0.04 0 0.02 0 +plutonienne plutonien adj f s 0.04 0 0.02 0 +plutonique plutonique adj s 0.01 0 0.01 0 +plutonium plutonium nom m s 1.48 0.07 1.48 0.07 +plutôt plutôt adv 210.4 280.74 210.4 280.74 +pluvial pluvial adj m s 0.1 0 0.06 0 +pluviale pluvial adj f s 0.1 0 0.01 0 +pluviales pluvial adj f p 0.1 0 0.02 0 +pluviaux pluvial adj m p 0.1 0 0.01 0 +pluvier pluvier nom m s 0.04 0.27 0.03 0.07 +pluviers pluvier nom m p 0.04 0.27 0.01 0.2 +pluvieuse pluvieux adj f s 0.79 4.46 0.2 1.89 +pluvieuses pluvieux adj f p 0.79 4.46 0.17 0.27 +pluvieux pluvieux adj m 0.79 4.46 0.42 2.3 +pluviomètre pluviomètre nom m s 0 0.14 0 0.07 +pluviomètres pluviomètre nom m p 0 0.14 0 0.07 +pluviométrie pluviométrie nom f s 0.02 0 0.02 0 +pluviométrique pluviométrique adj s 0 0.07 0 0.07 +pluviosité pluviosité nom f s 0.01 0.07 0.01 0.07 +pluviôse pluviôse nom m s 0 0.14 0 0.14 +plâtra plâtrer ver 0.6 0.88 0 0.07 ind:pas:3s; +plâtrait plâtrer ver 0.6 0.88 0 0.07 ind:imp:3s; +plâtras plâtras nom m 0 0.95 0 0.95 +plâtre plâtre nom m s 5.42 15.81 5.06 14.59 +plâtrent plâtrer ver 0.6 0.88 0 0.07 ind:pre:3p; +plâtrer plâtrer ver 0.6 0.88 0.29 0 inf; +plâtres plâtre nom m p 5.42 15.81 0.36 1.22 +plâtreuse plâtreux adj f s 0 0.95 0 0.2 +plâtreuses plâtreux adj f p 0 0.95 0 0.07 +plâtreux plâtreux adj m 0 0.95 0 0.68 +plâtrier plâtrier nom m s 0.1 1.01 0.1 0.88 +plâtriers plâtrier nom m p 0.1 1.01 0 0.14 +plâtré plâtré adj m s 0.25 0.47 0.13 0.2 +plâtrée plâtrer ver f s 0.6 0.88 0.05 0.34 par:pas; +plâtrées plâtrer ver f p 0.6 0.88 0.01 0.07 par:pas; +plâtrés plâtré adj m p 0.25 0.47 0.11 0 +plèbe plèbe nom f s 0.7 0.41 0.7 0.41 +plèvre plèvre nom f s 0.31 0.14 0.31 0.07 +plèvres plèvre nom f p 0.31 0.14 0 0.07 +plébiscite plébiscite nom m s 0.43 0.95 0.42 0.95 +plébisciter plébisciter ver 0.02 0.14 0.01 0 inf; +plébiscites plébiscite nom m p 0.43 0.95 0.01 0 +plébiscité plébisciter ver m s 0.02 0.14 0.01 0 par:pas; +plébiscités plébisciter ver m p 0.02 0.14 0 0.07 par:pas; +plébéien plébéien adj m s 0.06 0.68 0.04 0.34 +plébéienne plébéien adj f s 0.06 0.68 0.01 0.14 +plébéiennes plébéien nom f p 0.14 0.07 0.01 0 +plébéiens plébéien nom m p 0.14 0.07 0.09 0 +pléiade pléiade nom f s 0.16 1.82 0.16 1.69 +pléiades pléiade nom f p 0.16 1.82 0 0.14 +pléistocène pléistocène nom m s 0.02 0 0.02 0 +plénier plénier adj m s 0 1.42 0 0.2 +pléniers plénier adj m p 0 1.42 0 0.07 +plénipotentiaire plénipotentiaire adj m s 0.01 1.15 0.01 1.08 +plénipotentiaires plénipotentiaire nom p 0 1.28 0 0.41 +plénitude plénitude nom f s 1.27 6.96 1.27 6.76 +plénitudes plénitude nom f p 1.27 6.96 0 0.2 +plénière plénier adj f s 0 1.42 0 0.88 +plénières plénier adj f p 0 1.42 0 0.27 +plénum plénum nom m s 0.11 0 0.11 0 +pléonasme pléonasme nom m s 0.17 0.47 0.17 0.27 +pléonasmes pléonasme nom m p 0.17 0.47 0 0.2 +pléonastiques pléonastique adj p 0.01 0 0.01 0 +plésiosaure plésiosaure nom m s 0.02 0.14 0.02 0.14 +pléthore pléthore nom f s 0.32 0.27 0.32 0.27 +pléthorique pléthorique adj m s 0 0.41 0 0.34 +pléthoriques pléthorique adj f p 0 0.41 0 0.07 +plût plaire ver 607.21 139.8 0.22 1.69 sub:imp:3s; +pneu pneu nom m s 13.44 17.03 5.64 4.93 +pneumatique pneumatique adj s 0.47 2.16 0.31 1.49 +pneumatiques pneumatique adj p 0.47 2.16 0.17 0.68 +pneumatophore pneumatophore nom m s 0 0.07 0 0.07 +pneumo pneumo nom m s 0.26 0.34 0.26 0.07 +pneumoconiose pneumoconiose nom f s 0.01 0 0.01 0 +pneumocoque pneumocoque nom m s 0.01 0.07 0.01 0 +pneumocoques pneumocoque nom m p 0.01 0.07 0 0.07 +pneumocystose pneumocystose nom f s 0.01 0.34 0.01 0.34 +pneumologue pneumologue nom s 0.01 0 0.01 0 +pneumonectomie pneumonectomie nom f s 0.01 0 0.01 0 +pneumonie pneumonie nom f s 4.96 0.81 4.67 0.81 +pneumonies pneumonie nom f p 4.96 0.81 0.29 0 +pneumonique pneumonique adj f s 0.09 0 0.09 0 +pneumopathie pneumopathie nom f s 0 0.07 0 0.07 +pneumos pneumo nom m p 0.26 0.34 0 0.27 +pneumothorax pneumothorax nom m 0.45 0.27 0.45 0.27 +pneus pneu nom m p 13.44 17.03 7.79 12.09 +pneus_neige pneus_neige nom m p 0.02 0 0.02 0 +pochade pochade nom f s 0.02 0.41 0.02 0.2 +pochades pochade nom f p 0.02 0.41 0 0.2 +pochage pochage nom m s 0 0.07 0 0.07 +pochard pochard nom m s 0.73 1.01 0.49 0.54 +pocharde pochard nom f s 0.73 1.01 0.11 0.34 +pochards pochard nom m p 0.73 1.01 0.13 0.14 +poche poche nom s 49.65 146.28 36.23 101.82 +poche_revolver poche_revolver nom s 0 0.27 0 0.27 +pocher pocher ver 0.36 0.61 0.07 0.14 inf; +poches poche nom p 49.65 146.28 13.42 44.46 +pochetron pochetron nom m s 0.14 0.14 0.14 0.07 +pochetrons pochetron nom m p 0.14 0.14 0.01 0.07 +pochette pochette nom f s 2.34 8.85 1.89 6.69 +pochette_surprise pochette_surprise nom f s 0.2 0.34 0.2 0.2 +pochettes pochette nom f p 2.34 8.85 0.44 2.16 +pochette_surprise pochette_surprise nom f p 0.2 0.34 0 0.14 +pocheté pocheté adj m s 0 0.07 0 0.07 +pochetée pocheté nom f s 0 0.14 0 0.07 +pochetées pocheté nom f p 0 0.14 0 0.07 +pochoir pochoir nom m s 0.08 0.95 0.08 0.95 +pochon pochon nom m s 0.01 0.47 0.01 0.27 +pochons pochon nom m p 0.01 0.47 0 0.2 +pochtron pochtron nom m s 0.12 0 0.11 0 +pochtrons pochtron nom m p 0.12 0 0.01 0 +poché poché adj m s 0.61 0.81 0.28 0.41 +pochée poché adj f s 0.61 0.81 0.01 0.14 +pochées poché adj f p 0.61 0.81 0.03 0 +pochés poché adj m p 0.61 0.81 0.28 0.27 +podagre podagre adj s 0 0.2 0 0.2 +podestat podestat nom m s 0 0.27 0 0.07 +podestats podestat nom m p 0 0.27 0 0.2 +podium podium nom m s 2.16 1.08 2.12 0.95 +podiums podium nom m p 2.16 1.08 0.04 0.14 +podologue podologue nom s 0.05 0.07 0.05 0.07 +podomètre podomètre nom m s 0.01 0 0.01 0 +poecile poecile nom m s 0 0.07 0 0.07 +pogne pogne nom f s 0.76 13.38 0.69 8.31 +pognes pogne nom f p 0.76 13.38 0.07 5.07 +pognon pognon nom m s 13.85 11.96 13.85 11.96 +pogo pogo nom m s 0.16 0 0.16 0 +pogrom pogrom nom m s 0.05 1.08 0.04 0.41 +pogrome pogrome nom m s 0.01 0.47 0.01 0.07 +pogromes pogrome nom m p 0.01 0.47 0 0.41 +pogroms pogrom nom m p 0.05 1.08 0.01 0.68 +poids poids nom m 34.42 89.05 34.42 89.05 +poids_lourds poids_lourds nom m 0.02 0.07 0.02 0.07 +poignaient poigner ver 0.17 1.08 0 0.14 ind:imp:3p; +poignait poigner ver 0.17 1.08 0 0.47 ind:imp:3s; +poignant poignant adj m s 0.78 6.22 0.38 2.23 +poignante poignant adj f s 0.78 6.22 0.22 2.84 +poignantes poignant adj f p 0.78 6.22 0.02 0.47 +poignants poignant adj m p 0.78 6.22 0.16 0.68 +poignard poignard nom m s 9.89 10.14 9.38 8.11 +poignarda poignarder ver 14.32 3.31 0.02 0.07 ind:pas:3s; +poignardaient poignarder ver 14.32 3.31 0.01 0.27 ind:imp:3p; +poignardais poignarder ver 14.32 3.31 0.07 0 ind:imp:1s;ind:imp:2s; +poignardait poignarder ver 14.32 3.31 0.07 0.14 ind:imp:3s; +poignardant poignarder ver 14.32 3.31 0.05 0.07 par:pre; +poignarde poignarder ver 14.32 3.31 1.61 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +poignardent poignarder ver 14.32 3.31 0.36 0 ind:pre:3p; +poignarder poignarder ver 14.32 3.31 3.25 0.81 inf; +poignardera poignarder ver 14.32 3.31 0.03 0 ind:fut:3s; +poignarderai poignarder ver 14.32 3.31 0.07 0.07 ind:fut:1s; +poignarderais poignarder ver 14.32 3.31 0.05 0 cnd:pre:1s; +poignarderait poignarder ver 14.32 3.31 0.03 0 cnd:pre:3s; +poignarderont poignarder ver 14.32 3.31 0 0.07 ind:fut:3p; +poignardez poignarder ver 14.32 3.31 0.07 0 imp:pre:2p;ind:pre:2p; +poignards poignard nom m p 9.89 10.14 0.51 2.03 +poignardé poignarder ver m s 14.32 3.31 5.91 0.95 par:pas; +poignardée poignarder ver f s 14.32 3.31 2.39 0.34 par:pas; +poignardées poignarder ver f p 14.32 3.31 0.05 0 par:pas; +poignardés poignarder ver m p 14.32 3.31 0.28 0.14 par:pas; +poigne poigne nom f s 1.96 5.41 1.95 5 +poignent poigner ver 0.17 1.08 0 0.07 ind:pre:3p; +poigner poigner ver 0.17 1.08 0.14 0 inf; +poignerait poigner ver 0.17 1.08 0 0.07 cnd:pre:3s; +poignes poigne nom f p 1.96 5.41 0.01 0.41 +poignet poignet nom m s 10 42.84 6.38 27.7 +poignets poignet nom m p 10 42.84 3.62 15.14 +poignons poigner ver 0.17 1.08 0 0.07 imp:pre:1p; +poignée poignée nom f s 13.61 46.08 11.65 36.35 +poignées poignée nom f p 13.61 46.08 1.95 9.73 +poil poil nom m s 39.33 76.01 27.09 42.91 +poil_de_carotte poil_de_carotte nom m s 0 0.07 0 0.07 +poilaient poiler ver 0.06 1.28 0 0.07 ind:imp:3p; +poilais poiler ver 0.06 1.28 0 0.2 ind:imp:1s; +poilait poiler ver 0.06 1.28 0 0.34 ind:imp:3s; +poilant poilant adj m s 0.1 0.14 0.1 0.14 +poile poiler ver 0.06 1.28 0.03 0.07 ind:pre:1s;ind:pre:3s; +poiler poiler ver 0.06 1.28 0.03 0.14 inf; +poileux poileux adj m 0 0.07 0 0.07 +poils poil nom m p 39.33 76.01 12.24 33.11 +poilu poilu adj m s 4.3 9.05 1.94 3.04 +poilue poilu adj f s 4.3 9.05 0.75 1.42 +poilues poilu adj f p 4.3 9.05 0.7 1.42 +poilus poilu adj m p 4.3 9.05 0.92 3.18 +poilé poiler ver m s 0.06 1.28 0 0.07 par:pas; +poilés poiler ver m p 0.06 1.28 0 0.14 par:pas; +poindra poindre ver 5.28 5.61 0.11 0.07 ind:fut:3s; +poindre poindre ver 5.28 5.61 0.06 2.7 inf; +poing poing nom m s 17.52 76.08 13.25 47.97 +poings poing nom m p 17.52 76.08 4.27 28.11 +poinsettia poinsettia nom f s 0.04 0 0.04 0 +point point nom_sup m s 225.32 323.58 186.7 272.57 +point_clé point_clé nom m s 0.02 0 0.02 0 +point_virgule point_virgule nom m s 0.04 0.07 0.04 0 +pointa pointer ver 25.45 38.51 0.03 1.89 ind:pas:3s; +pointage pointage nom m s 0.31 0.41 0.3 0.41 +pointages pointage nom m p 0.31 0.41 0.01 0 +pointai pointer ver 25.45 38.51 0 0.07 ind:pas:1s; +pointaient pointer ver 25.45 38.51 0.17 2.3 ind:imp:3p; +pointais pointer ver 25.45 38.51 0.11 0.27 ind:imp:1s;ind:imp:2s; +pointait pointer ver 25.45 38.51 0.61 5 ind:imp:3s; +pointant pointer ver 25.45 38.51 0.27 3.72 par:pre; +pointe pointe nom f s 13.32 83.85 11.37 69.05 +pointeau pointeau nom m s 0.01 0.14 0.01 0.14 +pointement pointement nom m s 0 0.07 0 0.07 +pointent pointer ver 25.45 38.51 1.37 1.62 ind:pre:3p; +pointer pointer ver 25.45 38.51 4.63 5.14 inf; +pointera pointer ver 25.45 38.51 0.47 0.27 ind:fut:3s; +pointerai pointer ver 25.45 38.51 0.17 0 ind:fut:1s; +pointeraient pointer ver 25.45 38.51 0.01 0.14 cnd:pre:3p; +pointerais pointer ver 25.45 38.51 0.07 0 cnd:pre:1s;cnd:pre:2s; +pointerait pointer ver 25.45 38.51 0.07 0.2 cnd:pre:3s; +pointeras pointer ver 25.45 38.51 0.02 0 ind:fut:2s; +pointerez pointer ver 25.45 38.51 0.04 0 ind:fut:2p; +pointeront pointer ver 25.45 38.51 0.06 0 ind:fut:3p; +pointers pointer nom m p 0.12 0 0.01 0 +pointes pointe nom f p 13.32 83.85 1.96 14.8 +pointeur pointeur nom m s 0.35 0.61 0.03 0.41 +pointeurs pointeur nom m p 0.35 0.61 0 0.14 +pointeuse pointeur nom f s 0.35 0.61 0.33 0.07 +pointeuses pointeur adj f p 0.01 0.2 0 0.07 +pointez pointer ver 25.45 38.51 2.06 0.2 imp:pre:2p;ind:pre:2p; +pointiez pointer ver 25.45 38.51 0.1 0 ind:imp:2p; +pointillaient pointiller ver 0.03 1.62 0 0.07 ind:imp:3p; +pointillant pointiller ver 0.03 1.62 0 0.27 par:pre; +pointille pointiller ver 0.03 1.62 0 0.07 ind:pre:3s; +pointilleuse pointilleux adj f s 1.01 1.76 0.06 0.74 +pointilleuses pointilleux adj f p 1.01 1.76 0.02 0.14 +pointilleux pointilleux adj m 1.01 1.76 0.92 0.88 +pointillisme pointillisme nom m s 0.01 0 0.01 0 +pointilliste pointilliste adj m s 0 0.34 0 0.14 +pointillistes pointilliste adj p 0 0.34 0 0.2 +pointillé pointillé nom m s 0.36 2.97 0.16 1.62 +pointillée pointiller ver f s 0.03 1.62 0.02 0.47 par:pas; +pointillées pointiller ver f p 0.03 1.62 0 0.27 par:pas; +pointillés pointillé nom m p 0.36 2.97 0.2 1.35 +pointons pointer ver 25.45 38.51 0.04 0 imp:pre:1p;ind:pre:1p; +points point nom_sup m p 225.32 323.58 38.62 51.01 +point_virgule point_virgule nom m p 0.04 0.07 0 0.07 +pointu pointu adj m s 4.38 21.62 2.17 9.19 +pointue pointu adj f s 4.38 21.62 0.48 3.65 +pointues pointu adj f p 4.38 21.62 0.78 3.72 +pointure pointure nom f s 3.27 1.49 2.67 1.01 +pointures pointure nom f p 3.27 1.49 0.6 0.47 +pointus pointu adj m p 4.38 21.62 0.95 5.07 +pointâmes pointer ver 25.45 38.51 0 0.07 ind:pas:1p; +pointèrent pointer ver 25.45 38.51 0 0.34 ind:pas:3p; +pointé pointer ver m s 25.45 38.51 3.17 6.28 par:pas; +pointée pointer ver f s 25.45 38.51 0.97 1.89 par:pas; +pointées pointer ver f p 25.45 38.51 0.32 0.2 par:pas; +pointés pointer ver m p 25.45 38.51 0.4 0.88 par:pas; +poinçon poinçon nom m s 0.37 1.89 0.35 1.55 +poinçonnait poinçonner ver 0.06 0.54 0 0.07 ind:imp:3s; +poinçonner poinçonner ver 0.06 0.54 0.04 0.14 inf; +poinçonneraient poinçonner ver 0.06 0.54 0 0.07 cnd:pre:3p; +poinçonneur poinçonneur nom m s 0.16 0.2 0.16 0.14 +poinçonneurs poinçonneur nom m p 0.16 0.2 0 0.07 +poinçonné poinçonner ver m s 0.06 0.54 0.01 0.07 par:pas; +poinçonnée poinçonner ver f s 0.06 0.54 0.01 0.07 par:pas; +poinçonnés poinçonner ver m p 0.06 0.54 0 0.14 par:pas; +poinçons poinçon nom m p 0.37 1.89 0.02 0.34 +poire poire nom f s 7.58 15.07 5.67 10.81 +poire_vérité poire_vérité nom f s 0 0.07 0 0.07 +poireau poireau nom m s 1.31 2.84 0.61 0.88 +poireautai poireauter ver 1.87 2.3 0 0.07 ind:pas:1s; +poireautaient poireauter ver 1.87 2.3 0 0.07 ind:imp:3p; +poireautais poireauter ver 1.87 2.3 0.02 0.2 ind:imp:1s; +poireautait poireauter ver 1.87 2.3 0 0.2 ind:imp:3s; +poireaute poireauter ver 1.87 2.3 0.58 0.2 ind:pre:1s;ind:pre:3s; +poireauter poireauter ver 1.87 2.3 1.18 1.28 inf; +poireautes poireauter ver 1.87 2.3 0.01 0.07 ind:pre:2s; +poireautions poireauter ver 1.87 2.3 0 0.07 ind:imp:1p; +poireauté poireauter ver m s 1.87 2.3 0.08 0.14 par:pas; +poireaux poireau nom m p 1.31 2.84 0.7 1.96 +poirer poirer ver 0 0.14 0 0.14 inf; +poires poire nom f p 7.58 15.07 1.91 4.26 +poirier poirier nom m s 0.56 3.65 0.42 2.57 +poiriers poirier nom m p 0.56 3.65 0.15 1.08 +poirota poiroter ver 0.02 0.27 0 0.14 ind:pas:3s; +poirotait poiroter ver 0.02 0.27 0 0.14 ind:imp:3s; +poiroter poiroter ver 0.02 0.27 0.02 0 inf; +poiré poiré nom m s 0 0.27 0 0.14 +poirée poiré nom f s 0 0.27 0 0.14 +pois pois nom m 8.09 13.72 8.09 13.72 +poiscaille poiscaille nom f s 0.23 0.81 0.21 0.41 +poiscailles poiscaille nom f p 0.23 0.81 0.03 0.41 +poison poison nom m s 19.76 12.23 18.59 9.86 +poisons poison nom m p 19.76 12.23 1.18 2.36 +poissaient poisser ver 0.33 2.64 0 0.27 ind:imp:3p; +poissait poisser ver 0.33 2.64 0 0.41 ind:imp:3s; +poissard poissard nom m s 0 0.14 0 0.07 +poissardes poissard nom f p 0 0.14 0 0.07 +poisse poisse nom f s 5.62 1.42 5.61 1.35 +poissent poisser ver 0.33 2.64 0 0.07 ind:pre:3p; +poisser poisser ver 0.33 2.64 0.11 0.61 inf; +poisses poisse nom f p 5.62 1.42 0.01 0.07 +poisseuse poisseux adj f s 0.72 8.99 0.12 3.11 +poisseuses poisseux adj f p 0.72 8.99 0.06 1.89 +poisseux poisseux adj m 0.72 8.99 0.54 3.99 +poisson poisson nom m s 81.51 54.46 53.61 30.14 +poisson_chat poisson_chat nom m s 0.64 0.54 0.54 0.34 +poisson_globe poisson_globe nom m s 0.02 0 0.02 0 +poisson_lune poisson_lune nom m s 0.15 0.07 0.15 0.07 +poisson_pilote poisson_pilote nom m s 0 0.07 0 0.07 +poisson_épée poisson_épée nom m s 0.09 0 0.09 0 +poissonnerie poissonnerie nom f s 0.22 0.47 0.22 0.47 +poissonneuse poissonneux adj f s 0.32 0.47 0.01 0.07 +poissonneuses poissonneux adj f p 0.32 0.47 0.1 0.07 +poissonneux poissonneux adj m 0.32 0.47 0.21 0.34 +poissonnier poissonnier nom m s 0.71 0.88 0.69 0.41 +poissonniers poissonnier nom m p 0.71 0.88 0.01 0.27 +poissonnière poissonnière nom f s 0.07 3.92 0.07 3.92 +poissonnières poissonnier nom f p 0.71 0.88 0.02 0.2 +poissons poisson nom m p 81.51 54.46 27.9 24.32 +poisson_chat poisson_chat nom m p 0.64 0.54 0.11 0.2 +poissé poisser ver m s 0.33 2.64 0 0.34 par:pas; +poissée poisser ver f s 0.33 2.64 0 0.2 par:pas; +poissées poisser ver f p 0.33 2.64 0 0.14 par:pas; +poissés poisser ver m p 0.33 2.64 0 0.07 par:pas; +poitevin poitevin adj m s 0 0.41 0 0.2 +poitevins poitevin adj m p 0 0.41 0 0.2 +poitrail poitrail nom m s 0.2 5.07 0.2 4.73 +poitrails poitrail nom m p 0.2 5.07 0 0.34 +poitrinaire poitrinaire adj s 0.02 1.08 0.02 0.88 +poitrinaires poitrinaire adj m p 0.02 1.08 0 0.2 +poitrinant poitriner ver 0 0.07 0 0.07 par:pre; +poitrine poitrine nom f s 26.45 104.46 25.31 99.59 +poitrines poitrine nom f p 26.45 104.46 1.14 4.86 +poitrinières poitrinière nom f p 0 0.14 0 0.14 +poivra poivrer ver 0.17 2.3 0 0.07 ind:pas:3s; +poivrade poivrade nom f s 0.14 0.68 0.14 0.27 +poivrades poivrade nom f p 0.14 0.68 0 0.41 +poivrais poivrer ver 0.17 2.3 0.01 0.07 ind:imp:1s; +poivrait poivrer ver 0.17 2.3 0 0.14 ind:imp:3s; +poivre poivre nom m s 3.8 6.89 3.79 6.69 +poivrent poivrer ver 0.17 2.3 0 0.14 ind:pre:3p; +poivrer poivrer ver 0.17 2.3 0.03 0.2 inf; +poivres poivre nom m p 3.8 6.89 0.01 0.2 +poivrez poivrer ver 0.17 2.3 0.01 0.07 imp:pre:2p;ind:pre:2p; +poivrier poivrier nom m s 0.08 0.88 0.08 0.34 +poivriers poivrier nom m p 0.08 0.88 0 0.54 +poivrière poivrière nom f s 0.08 0.34 0.05 0.07 +poivrières poivrière nom f p 0.08 0.34 0.03 0.27 +poivron poivron nom m s 2.35 1.15 0.51 0.27 +poivrons poivron nom m p 2.35 1.15 1.85 0.88 +poivrot poivrot nom m s 3.53 3.51 2.16 2.03 +poivrote poivrot nom f s 3.53 3.51 0.38 0.2 +poivrotes poivrot nom f p 3.53 3.51 0 0.2 +poivrots poivrot nom m p 3.53 3.51 0.99 1.08 +poivré poivrer ver m s 0.17 2.3 0.04 0.2 par:pas; +poivrée poivré adj f s 0.11 1.22 0.09 0.68 +poivrées poivré adj f p 0.11 1.22 0 0.14 +poivrés poivrer ver m p 0.17 2.3 0.01 0.2 par:pas; +poix poix nom f 0.14 1.22 0.14 1.22 +poker poker nom m s 10.76 3.92 10.62 3.78 +pokers poker nom m p 10.76 3.92 0.14 0.14 +polack polack nom s 1.48 0 1.37 0 +polacks polack nom p 1.48 0 0.11 0 +polaire polaire adj s 2 2.5 1.71 1.55 +polaires polaire adj p 2 2.5 0.28 0.95 +polak polak nom m s 0.17 0.41 0.12 0.34 +polaks polak nom m p 0.17 0.41 0.05 0.07 +polaque polaque nom m s 0.05 0.47 0.05 0.07 +polaques polaque nom m p 0.05 0.47 0 0.41 +polar polar nom m s 0.86 1.49 0.23 1.08 +polarde polard adj f s 0.01 0.27 0.01 0.07 +polardes polard adj f p 0.01 0.27 0 0.14 +polards polard adj m p 0.01 0.27 0 0.07 +polarisaient polariser ver 0.41 0.34 0 0.07 ind:imp:3p; +polarisait polariser ver 0.41 0.34 0.01 0.07 ind:imp:3s; +polarisant polariser ver 0.41 0.34 0.01 0 par:pre; +polarisants polarisant adj m p 0.01 0.07 0 0.07 +polarisation polarisation nom f s 0.06 0 0.06 0 +polarise polariser ver 0.41 0.34 0.01 0 imp:pre:2s; +polarisent polariser ver 0.41 0.34 0.01 0 ind:pre:3p; +polariser polariser ver 0.41 0.34 0.04 0.07 inf; +polarisé polariser ver m s 0.41 0.34 0.16 0 par:pas; +polarisée polariser ver f s 0.41 0.34 0.17 0.14 par:pas; +polarité polarité nom f s 0.54 0 0.54 0 +polaroid polaroid nom m s 0.39 0 0.39 0 +polaroïd polaroïd nom m s 0.74 0.95 0.47 0.88 +polaroïds polaroïd nom m p 0.74 0.95 0.28 0.07 +polars polar nom m p 0.86 1.49 0.63 0.41 +polder polder nom m s 0 0.2 0 0.07 +polders polder nom m p 0 0.2 0 0.14 +pole pole nom m s 0.22 0 0.22 0 +polenta polenta nom f s 0.88 0.27 0.88 0.27 +poli polir ver m s 9.45 11.01 6.04 5.07 par:pas; +police police nom f s 276.21 83.72 274.31 81.69 +police_secours police_secours nom f s 0.16 0.47 0.16 0.47 +policeman policeman nom m s 0.04 0.41 0.03 0.34 +policemen policeman nom m p 0.04 0.41 0.01 0.07 +policer policer ver 1.27 0.61 0.04 0 inf; +polices police nom f p 276.21 83.72 1.9 2.03 +polichinelle polichinelle nom m s 0.5 2.09 0.49 1.76 +polichinelles polichinelle nom m p 0.5 2.09 0.01 0.34 +policier policier nom m s 34.15 21.62 19.94 10 +policiers policier nom m p 34.15 21.62 14.02 11.62 +policière policier adj f s 9.29 6.82 2.31 1.76 +policières policier adj f p 9.29 6.82 0.58 1.01 +policlinique policlinique nom f s 0.1 0 0.1 0 +policé policer ver m s 1.27 0.61 0.01 0.07 par:pas; +policée policé adj f s 0.02 1.82 0.01 0.54 +policées policer ver f p 1.27 0.61 0.01 0.14 par:pas; +policés policé adj m p 0.02 1.82 0.01 0.27 +polie polir ver f s 9.45 11.01 2.23 2.03 par:pas; +polies poli adj f p 4.68 16.69 0.08 1.28 +poliment poliment adv 3.29 10 3.29 10 +polio polio nom f s 1.1 0.34 1.08 0.27 +poliomyélite poliomyélite nom f s 0.28 0.27 0.28 0.27 +poliomyélitique poliomyélitique adj m s 0.01 0.27 0 0.14 +poliomyélitiques poliomyélitique adj p 0.01 0.27 0.01 0.14 +poliorcétique poliorcétique adj m s 0 0.07 0 0.07 +polios polio nom f p 1.1 0.34 0.02 0.07 +polir polir ver 9.45 11.01 0.38 1.42 inf; +poliras polir ver 9.45 11.01 0.01 0 ind:fut:2s; +polis poli adj m p 4.68 16.69 0.8 2.64 +polish polish nom m s 0.06 0.07 0.06 0.07 +polissage polissage nom m s 0.11 0.41 0.11 0.34 +polissages polissage nom m p 0.11 0.41 0 0.07 +polissaient polir ver 9.45 11.01 0 0.07 ind:imp:3p; +polissais polir ver 9.45 11.01 0.01 0.07 ind:imp:1s; +polissait polir ver 9.45 11.01 0.02 0.14 ind:imp:3s; +polissant polir ver 9.45 11.01 0.04 0.34 par:pre; +polissent polir ver 9.45 11.01 0.01 0.14 ind:pre:3p; +polisseur polisseur nom m s 0.01 0.14 0.01 0 +polisseurs polisseur nom m p 0.01 0.14 0 0.07 +polisseuse polisseur nom f s 0.01 0.14 0 0.07 +polissoir polissoir nom m s 0.02 0.07 0.02 0.07 +polisson polisson nom m s 1.14 0.54 0.83 0.27 +polissonnait polissonner ver 0.11 0 0.1 0 ind:imp:3s; +polissonne polisson adj f s 1.06 0.68 0.16 0.07 +polissonner polissonner ver 0.11 0 0.01 0 inf; +polissonnerie polissonnerie nom f s 0 0.2 0 0.14 +polissonneries polissonnerie nom f p 0 0.2 0 0.07 +polissonnes polisson adj f p 1.06 0.68 0.23 0.14 +polissons polisson nom m p 1.14 0.54 0.28 0.14 +polissure polissure nom f s 0 0.07 0 0.07 +polit polir ver 9.45 11.01 0.03 0.2 ind:pre:3s;ind:pas:3s; +politburo politburo nom m s 0.03 0.47 0.03 0.47 +politesse politesse nom f s 5 20.54 4.29 17.97 +politesses politesse nom f p 5 20.54 0.7 2.57 +politicard politicard nom m s 0.41 0.34 0.08 0.14 +politicards politicard nom m p 0.41 0.34 0.33 0.2 +politicien politicien nom m s 7.67 2.43 2.34 0.61 +politicienne politicien nom f s 7.67 2.43 0.1 0 +politiciennes politicien adj f p 0.83 0.68 0.12 0.14 +politiciens politicien nom m p 7.67 2.43 5.23 1.82 +politico politico adv 0.17 0.27 0.17 0.27 +politico_religieux politico_religieux adj f s 0 0.07 0 0.07 +politique politique nom s 38.38 70.34 34.84 65.88 +politique_fiction politique_fiction nom f s 0 0.07 0 0.07 +politiquement politiquement adv 2.73 2.77 2.73 2.77 +politiques politique adj p 38.09 70.81 13.2 26.42 +politisation politisation nom f s 0.01 0 0.01 0 +politiser politiser ver 0.29 0.34 0.07 0 inf; +politisé politiser ver m s 0.29 0.34 0.06 0.07 par:pas; +politisée politiser ver f s 0.29 0.34 0.14 0.07 par:pas; +politisés politiser ver m p 0.29 0.34 0.02 0.2 par:pas; +polka polka nom f s 1.98 7.64 1.9 7.5 +polkas polka nom f p 1.98 7.64 0.08 0.14 +pollen pollen nom m s 1.37 1.89 1.2 1.82 +pollens pollen nom m p 1.37 1.89 0.17 0.07 +pollinies pollinie nom f p 0 0.07 0 0.07 +pollinique pollinique adj f s 0 0.07 0 0.07 +pollinisateur pollinisateur adj m s 0.03 0 0.03 0 +pollinisation pollinisation nom f s 0.09 0 0.09 0 +polliniser polliniser ver 0.02 0 0.01 0 inf; +pollinisé polliniser ver m s 0.02 0 0.01 0 par:pas; +pollope pollope ono 0 0.07 0 0.07 +polluait polluer ver 3.38 2.09 0.12 0.07 ind:imp:3s; +polluant polluer ver 3.38 2.09 0.04 0 par:pre; +polluante polluant adj f s 0.21 0.14 0.02 0 +polluants polluant adj m p 0.21 0.14 0.16 0.07 +pollue polluer ver 3.38 2.09 0.45 0.07 ind:pre:1s;ind:pre:3s; +polluent polluer ver 3.38 2.09 0.22 0.14 ind:pre:3p; +polluer polluer ver 3.38 2.09 0.65 0.34 inf; +pollueront polluer ver 3.38 2.09 0.01 0 ind:fut:3p; +pollues polluer ver 3.38 2.09 0.12 0.07 ind:pre:2s; +pollueur pollueur nom m s 0.25 0.14 0.04 0 +pollueurs pollueur nom m p 0.25 0.14 0.18 0.14 +pollueuse pollueur nom f s 0.25 0.14 0.02 0 +polluez polluer ver 3.38 2.09 0.04 0 imp:pre:2p;ind:pre:2p; +pollution pollution nom f s 2.38 1.28 2.35 1.15 +pollutions pollution nom f p 2.38 1.28 0.04 0.14 +pollué polluer ver m s 3.38 2.09 0.57 0.68 par:pas; +polluée polluer ver f s 3.38 2.09 0.86 0.2 par:pas; +polluées polluer ver f p 3.38 2.09 0.17 0.47 par:pas; +pollués polluer ver m p 3.38 2.09 0.14 0.07 par:pas; +polo polo nom m s 1.51 2.03 1.46 1.96 +poloche poloche nom f s 0 0.34 0 0.34 +polochon polochon nom m s 0.19 0.81 0.06 0.41 +polochons polochon nom m p 0.19 0.81 0.12 0.41 +polonais polonais nom m 8.26 9.32 7.06 8.18 +polonaise polonais adj f s 8.41 14.73 1.87 4.39 +polonaises polonais adj f p 8.41 14.73 0.27 0.95 +polope polope ono 0 0.41 0 0.41 +polos polo nom m p 1.51 2.03 0.05 0.07 +polski polski nom m s 0.14 0.14 0.14 0.14 +poltron poltron nom m s 0.74 0.41 0.58 0.27 +poltronne poltron adj f s 0.32 0.34 0.03 0.07 +poltronnerie poltronnerie nom f s 0.55 0 0.55 0 +poltrons poltron nom m p 0.74 0.41 0.16 0.14 +poly poly nom m s 0.3 0.14 0.3 0.14 +poly_sexuel poly_sexuel adj f s 0.01 0 0.01 0 +polyacrylate polyacrylate nom m s 0.03 0 0.03 0 +polyamide polyamide nom m s 0 0.2 0 0.14 +polyamides polyamide nom m p 0 0.2 0 0.07 +polyandre polyandre adj f s 0 0.07 0 0.07 +polyarthrite polyarthrite nom f s 0.03 0 0.03 0 +polycarbonate polycarbonate nom m s 0.03 0 0.03 0 +polychlorure polychlorure nom m s 0.01 0 0.01 0 +polychrome polychrome adj s 0 1.08 0 0.74 +polychromes polychrome adj m p 0 1.08 0 0.34 +polychromie polychromie nom f s 0 0.27 0 0.27 +polychromé polychromé adj m s 0 0.27 0 0.14 +polychromées polychromé adj f p 0 0.27 0 0.14 +polyclinique polyclinique nom f s 0.23 0.14 0.23 0.14 +polycopiait polycopier ver 0.12 0.54 0 0.07 ind:imp:3s; +polycopie polycopie nom f s 0.01 0.07 0.01 0.07 +polycopier polycopier ver 0.12 0.54 0.01 0.34 inf; +polycopié polycopié nom m s 0 0.2 0 0.07 +polycopiée polycopier ver f s 0.12 0.54 0 0.14 par:pas; +polycopiés polycopier ver m p 0.12 0.54 0.11 0 par:pas; +polyculture polyculture nom f s 0 0.07 0 0.07 +polycéphale polycéphale adj m s 0.01 0 0.01 0 +polydactylie polydactylie nom f s 0.01 0 0.01 0 +polyester polyester nom m s 0.46 0.34 0.46 0.34 +polygame polygame adj s 0.15 0 0.15 0 +polygamie polygamie nom f s 0.49 0.27 0.49 0.27 +polyglotte polyglotte adj s 0.08 1.01 0.08 0.61 +polyglottes polyglotte nom p 0.03 0.14 0.01 0 +polygonal polygonal adj m s 0.01 0.2 0.01 0 +polygonales polygonal adj f p 0.01 0.2 0 0.14 +polygonaux polygonal adj m p 0.01 0.2 0 0.07 +polygone polygone nom m s 0.13 0.88 0.12 0.47 +polygones polygone nom m p 0.13 0.88 0.01 0.41 +polygraphe polygraphe nom s 0.37 0.14 0.34 0.07 +polygraphes polygraphe nom p 0.37 0.14 0.04 0.07 +polygénique polygénique adj f s 0.01 0 0.01 0 +polykystique polykystique adj m s 0.04 0 0.04 0 +polymorphe polymorphe adj s 0.06 0.07 0.05 0.07 +polymorphes polymorphe adj p 0.06 0.07 0.01 0 +polymorphie polymorphie nom f s 0.02 0 0.02 0 +polymorphismes polymorphisme nom m p 0.03 0 0.03 0 +polymère polymère nom m s 0.16 0 0.16 0 +polymérase polymérase nom f s 0.05 0 0.05 0 +polymérique polymérique adj m s 0.02 0 0.01 0 +polymériques polymérique adj m p 0.02 0 0.01 0 +polynésien polynésien adj m s 0.11 0.47 0.03 0.07 +polynésienne polynésien adj f s 0.11 0.47 0.04 0.07 +polynésiennes polynésien adj f p 0.11 0.47 0.03 0.14 +polynésiens polynésien nom m p 0.04 0.07 0.02 0 +polype polype nom m s 0.32 0.74 0.23 0.54 +polypes polype nom m p 0.32 0.74 0.09 0.2 +polyphone polyphone adj s 0 0.07 0 0.07 +polyphonie polyphonie nom f s 0.02 0.14 0.02 0.14 +polyphonique polyphonique adj m s 0.23 0.14 0.23 0.14 +polypier polypier nom m s 0 0.14 0 0.07 +polypiers polypier nom m p 0 0.14 0 0.07 +polypropylène polypropylène nom m s 0.01 0.14 0.01 0.14 +polysaccharides polysaccharide nom m p 0.01 0 0.01 0 +polystyrène polystyrène nom m s 0.38 0.14 0.38 0.14 +polysyllabe polysyllabe adj s 0.01 0 0.01 0 +polysyllabique polysyllabique adj m s 0.01 0.07 0.01 0.07 +polytechnicien polytechnicien nom m s 0.25 1.35 0.14 0.81 +polytechnicienne polytechnicien nom f s 0.25 1.35 0.01 0 +polytechniciens polytechnicien nom m p 0.25 1.35 0.1 0.54 +polytechnique polytechnique nom f s 0.44 0.47 0.44 0.47 +polythène polythène nom m s 0.01 0 0.01 0 +polythéiste polythéiste adj s 0.01 0 0.01 0 +polytonal polytonal adj m s 0 0.07 0 0.07 +polytonalité polytonalité nom f s 0 0.07 0 0.07 +polyuréthane polyuréthane nom m s 0.05 0 0.05 0 +polyvalence polyvalence nom f s 0.01 0.14 0.01 0.14 +polyvalent polyvalent adj m s 0.15 0.14 0.02 0.14 +polyvalente polyvalent adj f s 0.15 0.14 0.12 0 +polyvalents polyvalent adj m p 0.15 0.14 0.01 0 +polyvinyle polyvinyle nom m s 0.01 0.07 0.01 0.07 +polyvinylique polyvinylique adj m s 0.03 0 0.03 0 +polyèdre polyèdre nom m s 0 0.2 0 0.14 +polyèdres polyèdre nom m p 0 0.2 0 0.07 +polyéthylène polyéthylène nom m s 0.13 0.14 0.13 0.14 +polémique polémique nom f s 0.73 1.35 0.46 1.22 +polémiquer polémiquer ver 0.07 0.14 0.03 0.14 inf; +polémiques polémique nom f p 0.73 1.35 0.27 0.14 +polémiste polémiste nom s 0.14 0.47 0.14 0.41 +polémistes polémiste nom p 0.14 0.47 0 0.07 +pom_pom_girl pom_pom_girl nom f s 2.06 0 0.95 0 +pom_pom_girl pom_pom_girl nom f p 2.06 0 1.11 0 +pomelo pomelo nom m s 0.01 0 0.01 0 +pomerols pomerol nom m p 0 0.07 0 0.07 +pommade pommade nom f s 2.35 3.04 2.21 2.16 +pommader pommader ver 0.02 0.54 0 0.41 inf; +pommades pommade nom f p 2.35 3.04 0.14 0.88 +pommadin pommadin nom m s 0 0.07 0 0.07 +pommadé pommadé adj m s 0 0.74 0 0.47 +pommadées pommadé adj f p 0 0.74 0 0.07 +pommadés pommadé adj m p 0 0.74 0 0.2 +pommaient pommer ver 0.38 1.96 0 0.07 ind:imp:3p; +pommard pommard nom m s 0 0.2 0 0.07 +pommards pommard nom m p 0 0.2 0 0.14 +pomme pomme nom f s 42.35 82.36 19.77 46.08 +pommeau pommeau nom m s 0.22 4.26 0.22 3.92 +pommeaux pommeau nom m p 0.22 4.26 0 0.34 +pommeler pommeler ver 0 0.27 0 0.07 inf; +pommelé pommelé adj m s 0.28 1.49 0.26 0.95 +pommelées pommelé adj f p 0.28 1.49 0 0.07 +pommelés pommelé adj m p 0.28 1.49 0.02 0.47 +pommer pommer ver 0.38 1.96 0.04 0 inf; +pommeraie pommeraie nom f s 0.01 0.14 0.01 0.14 +pommes pomme nom f p 42.35 82.36 22.57 36.28 +pommette pommette nom f s 0.9 16.35 0.21 2.7 +pommettes pommette nom f p 0.9 16.35 0.69 13.65 +pommier pommier nom m s 1.93 8.78 1.55 5.88 +pommiers pommier nom m p 1.93 8.78 0.38 2.91 +pommé pommer ver m s 0.38 1.96 0.04 0.07 par:pas; +pommée pommé adj f s 0.01 0.27 0.01 0.07 +pommées pommé adj f p 0.01 0.27 0 0.14 +pommés pommé adj m p 0.01 0.27 0 0.07 +pompadour pompadour adj 0.03 0 0.03 0 +pompage pompage nom m s 0.35 0.14 0.35 0.14 +pompai pomper ver 5.24 4.59 0 0.07 ind:pas:1s; +pompaient pomper ver 5.24 4.59 0.01 0.14 ind:imp:3p; +pompais pomper ver 5.24 4.59 0.02 0.07 ind:imp:1s; +pompait pomper ver 5.24 4.59 0.15 0.61 ind:imp:3s; +pompant pomper ver 5.24 4.59 0.03 0.47 par:pre; +pompe pompe nom f s 22.92 35.14 10.51 18.45 +pompent pomper ver 5.24 4.59 0.24 0.34 ind:pre:3p; +pomper pomper ver 5.24 4.59 1.72 1.15 inf; +pompera pomper ver 5.24 4.59 0.02 0.07 ind:fut:3s; +pomperais pomper ver 5.24 4.59 0.02 0 cnd:pre:2s; +pomperait pomper ver 5.24 4.59 0.01 0 cnd:pre:3s; +pompes pompe nom f p 22.92 35.14 12.41 16.69 +pompette pompette adj s 1.21 0.41 1.21 0.41 +pompeur pompeur nom m s 0.04 0.27 0.04 0.27 +pompeuse pompeux adj f s 0.97 4.26 0.09 1.15 +pompeusement pompeusement adv 0.01 1.15 0.01 1.15 +pompeuses pompeux adj f p 0.97 4.26 0.04 0.61 +pompeux pompeux adj m 0.97 4.26 0.85 2.5 +pompez pomper ver 5.24 4.59 0.66 0.07 imp:pre:2p;ind:pre:2p; +pompidoliens pompidolien adj m p 0 0.07 0 0.07 +pompier pompier nom m s 13.01 10.07 2.67 1.01 +pompiers pompier nom m p 13.01 10.07 10.35 9.05 +pompions pomper ver 5.24 4.59 0 0.07 ind:imp:1p; +pompiste pompiste nom s 2.1 4.05 2.05 3.51 +pompistes pompiste nom p 2.1 4.05 0.05 0.54 +pompiérisme pompiérisme nom m s 0 0.07 0 0.07 +pompon pompon nom m s 1.56 3.92 1.22 1.35 +pomponna pomponner ver 0.94 1.69 0 0.07 ind:pas:3s; +pomponnaient pomponner ver 0.94 1.69 0 0.07 ind:imp:3p; +pomponnait pomponner ver 0.94 1.69 0 0.2 ind:imp:3s; +pomponnant pomponner ver 0.94 1.69 0 0.07 par:pre; +pomponne pomponner ver 0.94 1.69 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pomponnent pomponner ver 0.94 1.69 0.01 0 ind:pre:3p; +pomponner pomponner ver 0.94 1.69 0.32 0.14 inf; +pomponniez pomponner ver 0.94 1.69 0 0.07 ind:imp:2p; +pomponné pomponner ver m s 0.94 1.69 0.1 0.34 par:pas; +pomponnée pomponner ver f s 0.94 1.69 0.41 0.34 par:pas; +pomponnées pomponner ver f p 0.94 1.69 0.01 0.27 par:pas; +pomponnés pomponner ver m p 0.94 1.69 0.01 0.07 par:pas; +pompons pompon nom m p 1.56 3.92 0.34 2.57 +pompé pomper ver m s 5.24 4.59 0.4 0.54 par:pas; +pompée pomper ver f s 5.24 4.59 0.25 0 par:pas; +pompéien pompéien adj m s 0.17 0.54 0.01 0.2 +pompéienne pompéien adj f s 0.17 0.54 0.01 0.2 +pompéiennes pompéien adj f p 0.17 0.54 0 0.07 +pompéiens pompéien adj m p 0.17 0.54 0.15 0.07 +pompés pomper ver m p 5.24 4.59 0.01 0.07 par:pas; +pomélo pomélo nom m s 0.01 0 0.01 0 +poméranien poméranien adj m s 0.01 0.14 0.01 0.07 +poméranienne poméranien nom f s 0 0.47 0 0.07 +poméraniennes poméranien nom f p 0 0.47 0 0.34 +poméraniens poméranien nom m p 0 0.47 0 0.07 +ponant ponant nom m s 0.04 0.34 0.04 0.34 +ponce poncer ver 0.42 2.43 0.18 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ponceau ponceau nom m s 0 0.41 0 0.34 +ponceaux ponceau nom m p 0 0.41 0 0.07 +poncer poncer ver 0.42 2.43 0.16 0.07 inf; +ponces poncer ver 0.42 2.43 0 0.27 sub:pre:2s; +ponceuse ponceur nom f s 0.31 0.41 0.31 0.41 +poncho poncho nom m s 1.04 0.2 1 0.2 +ponchos poncho nom m p 1.04 0.2 0.04 0 +poncif poncif nom m s 0.01 0.95 0 0.47 +poncifs poncif nom m p 0.01 0.95 0.01 0.47 +ponction ponction nom f s 1.72 1.08 1.68 0.74 +ponctionna ponctionner ver 0.02 0.27 0 0.07 ind:pas:3s; +ponctionnait ponctionner ver 0.02 0.27 0 0.07 ind:imp:3s; +ponctionne ponctionner ver 0.02 0.27 0.01 0.07 ind:pre:3s; +ponctionner ponctionner ver 0.02 0.27 0.01 0.07 inf; +ponctions ponction nom f p 1.72 1.08 0.04 0.34 +ponctua ponctuer ver 0.12 9.32 0 0.27 ind:pas:3s; +ponctuaient ponctuer ver 0.12 9.32 0 0.47 ind:imp:3p; +ponctuait ponctuer ver 0.12 9.32 0.01 1.69 ind:imp:3s; +ponctualité ponctualité nom f s 1.01 1.42 1.01 1.42 +ponctuant ponctuer ver 0.12 9.32 0.01 0.88 par:pre; +ponctuation ponctuation nom f s 0.3 1.55 0.3 1.35 +ponctuations ponctuation nom f p 0.3 1.55 0 0.2 +ponctue ponctuer ver 0.12 9.32 0.01 0.88 ind:pre:1s;ind:pre:3s; +ponctuel ponctuel adj m s 3.55 1.82 1.82 0.81 +ponctuelle ponctuel adj f s 3.55 1.82 1.13 0.27 +ponctuellement ponctuellement adv 0.26 1.01 0.26 1.01 +ponctuelles ponctuel adj f p 3.55 1.82 0.06 0.41 +ponctuels ponctuel adj m p 3.55 1.82 0.54 0.34 +ponctuent ponctuer ver 0.12 9.32 0.01 0.27 ind:pre:3p; +ponctuer ponctuer ver 0.12 9.32 0.02 0.61 inf; +ponctuèrent ponctuer ver 0.12 9.32 0 0.07 ind:pas:3p; +ponctué ponctuer ver m s 0.12 9.32 0.02 2.16 par:pas; +ponctuée ponctuer ver f s 0.12 9.32 0 1.08 par:pas; +ponctuées ponctuer ver f p 0.12 9.32 0 0.47 par:pas; +ponctués ponctuer ver m p 0.12 9.32 0.03 0.47 par:pas; +poncé poncer ver m s 0.42 2.43 0.07 0.2 par:pas; +poncée poncer ver f s 0.42 2.43 0 0.27 par:pas; +poncées poncer ver f p 0.42 2.43 0 0.14 par:pas; +poncés poncer ver m p 0.42 2.43 0 0.07 par:pas; +pond pondre ver 5.41 6.82 1.18 0.74 ind:pre:3s; +pondaient pondre ver 5.41 6.82 0.01 0.2 ind:imp:3p; +pondait pondre ver 5.41 6.82 0.15 0.41 ind:imp:3s; +pondant pondre ver 5.41 6.82 0.02 0.07 par:pre; +ponde pondre ver 5.41 6.82 0.1 0 sub:pre:1s;sub:pre:3s; +pondent pondre ver 5.41 6.82 0.55 0.34 ind:pre:3p; +pondes pondre ver 5.41 6.82 0 0.07 sub:pre:2s; +pondeur pondeur nom m s 0.11 0.2 0 0.07 +pondeuse pondeur nom f s 0.11 0.2 0.08 0 +pondeuses pondeur nom f p 0.11 0.2 0.03 0.14 +pondez pondre ver 5.41 6.82 0.06 0 imp:pre:2p;ind:pre:2p; +pondiez pondre ver 5.41 6.82 0 0.07 ind:imp:2p; +pondoir pondoir nom m s 0 0.2 0 0.14 +pondoirs pondoir nom m p 0 0.2 0 0.07 +pondra pondre ver 5.41 6.82 0.04 0.07 ind:fut:3s; +pondrai pondre ver 5.41 6.82 0.16 0.07 ind:fut:1s; +pondraient pondre ver 5.41 6.82 0.01 0.14 cnd:pre:3p; +pondrais pondre ver 5.41 6.82 0 0.07 cnd:pre:2s; +pondras pondre ver 5.41 6.82 0.02 0.07 ind:fut:2s; +pondre pondre ver 5.41 6.82 1.64 1.69 inf; +pondront pondre ver 5.41 6.82 0.01 0 ind:fut:3p; +ponds pondre ver 5.41 6.82 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +pondu pondre ver m s 5.41 6.82 1.39 1.76 par:pas; +pondue pondre ver f s 5.41 6.82 0.01 0.27 par:pas; +pondus pondre ver m p 5.41 6.82 0.02 0.74 par:pas; +pondérable pondérable adj f s 0 0.2 0 0.14 +pondérables pondérable adj p 0 0.2 0 0.07 +pondérale pondéral adj f s 0.05 0 0.05 0 +pondération pondération nom f s 0.12 0.47 0.12 0.47 +pondérer pondérer ver 0.04 0.14 0.01 0 inf; +pondéré pondéré adj m s 0.18 1.15 0.03 0.68 +pondérée pondéré adj f s 0.18 1.15 0.13 0.14 +pondérées pondéré adj f p 0.18 1.15 0 0.07 +pondérés pondéré adj m p 0.18 1.15 0.02 0.27 +ponette ponette nom f s 0 0.47 0 0.27 +ponettes ponette nom f p 0 0.47 0 0.2 +poney poney nom m s 4.8 1.01 3.7 0.47 +poneys poney nom m p 4.8 1.01 1.1 0.54 +pongiste pongiste nom s 0.3 0 0.1 0 +pongistes pongiste nom p 0.3 0 0.2 0 +pongo pongo nom m s 1.72 0 1.72 0 +pongé pongé nom m s 0 0.2 0 0.2 +pont pont nom m s 56.43 90.81 50.45 74.59 +pont_l_évêque pont_l_évêque nom m s 0 0.07 0 0.07 +pont_levis pont_levis nom m 0.46 1.42 0.46 1.42 +pont_neuf pont_neuf nom m s 0.14 2.43 0.14 2.43 +pont_promenade pont_promenade nom m s 0 0.07 0 0.07 +pontage pontage nom m s 0.65 0.07 0.6 0.07 +pontages pontage nom m p 0.65 0.07 0.04 0 +ponte ponte nom s 2.35 2.3 1.46 1.62 +ponter ponter ver 0.52 0.2 0.21 0 inf; +pontes ponte nom p 2.35 2.3 0.89 0.68 +pontet pontet nom m s 0.01 0.2 0.01 0.14 +pontets pontet nom m p 0.01 0.2 0 0.07 +pontife pontife nom m s 0.26 1.28 0.23 0.88 +pontifes pontife nom m p 0.26 1.28 0.03 0.41 +pontifia pontifier ver 0.04 0.54 0 0.07 ind:pas:3s; +pontifiait pontifier ver 0.04 0.54 0 0.14 ind:imp:3s; +pontifiant pontifiant adj m s 0.04 0.41 0.02 0.27 +pontifiante pontifiant adj f s 0.04 0.41 0.02 0.07 +pontifiants pontifiant adj m p 0.04 0.41 0 0.07 +pontifical pontifical adj m s 0.3 1.35 0.16 0.47 +pontificale pontifical adj f s 0.3 1.35 0.14 0.47 +pontificales pontifical adj f p 0.3 1.35 0 0.27 +pontificat pontificat nom m s 0.01 0.14 0.01 0.14 +pontificaux pontifical adj m p 0.3 1.35 0 0.14 +pontifie pontifier ver 0.04 0.54 0 0.14 ind:pre:3s; +pontifier pontifier ver 0.04 0.54 0.04 0.07 inf; +pontifièrent pontifier ver 0.04 0.54 0 0.07 ind:pas:3p; +pontil pontil nom m s 0 0.07 0 0.07 +pontin pontin adj m s 0.11 0.2 0.1 0.07 +pontins pontin adj m p 0.11 0.2 0.01 0.14 +ponton ponton nom m s 1.01 3.99 0.98 2.16 +pontonnier pontonnier nom m s 0 0.81 0 0.14 +pontonniers pontonnier nom m p 0 0.81 0 0.68 +pontons ponton nom m p 1.01 3.99 0.03 1.82 +ponts pont nom m p 56.43 90.81 5.97 16.22 +ponts_levis ponts_levis nom m p 0 0.27 0 0.27 +ponté ponter ver m s 0.52 0.2 0.01 0.07 par:pas; +ponçage ponçage nom m s 0.01 0.14 0.01 0.14 +ponçait poncer ver 0.42 2.43 0.01 0.2 ind:imp:3s; +ponçant poncer ver 0.42 2.43 0 0.07 par:pre; +pool pool nom m s 1.19 0.2 1.19 0.2 +pop pop adj s 3.1 1.28 3.1 1.28 +pop_club pop_club nom s 0 0.07 0 0.07 +pop_corn pop_corn nom m 3.79 0.14 3.79 0.14 +popaul popaul nom m s 0.28 0.07 0.28 0.07 +pope pope nom m s 1.07 6.42 0.83 5.2 +popeline popeline nom f s 0 4.66 0 4.66 +popes pope nom m p 1.07 6.42 0.23 1.22 +popistes popiste adj f p 0 0.07 0 0.07 +poplité poplité adj m s 0.05 0 0.01 0 +poplitée poplité adj f s 0.05 0 0.04 0 +popote popote nom f s 0.4 2.57 0.39 2.09 +popotes popote nom f p 0.4 2.57 0.01 0.47 +popotin popotin nom m s 0.79 0.74 0.79 0.74 +populace populace nom f s 1.53 2.36 1.53 2.36 +populacier populacier adj m s 0 0.68 0 0.2 +populacière populacier adj f s 0 0.68 0 0.2 +populacières populacier adj f p 0 0.68 0 0.27 +populaire populaire adj s 19.34 31.28 16.23 23.45 +populairement populairement adv 0.14 0.07 0.14 0.07 +populaires populaire adj p 19.34 31.28 3.11 7.84 +populariser populariser ver 0.12 0.14 0.12 0.07 inf; +popularisé populariser ver m s 0.12 0.14 0 0.07 par:pas; +popularité popularité nom f s 2.03 1.82 2.03 1.76 +popularités popularité nom f p 2.03 1.82 0 0.07 +population population nom f s 15.68 33.65 14.86 23.58 +populations population nom f p 15.68 33.65 0.82 10.07 +populeuse populeux adj f s 0.02 1.15 0.01 0.27 +populeuses populeux adj f p 0.02 1.15 0 0.14 +populeux populeux adj m 0.02 1.15 0.01 0.74 +populisme populisme nom m s 0.02 0.14 0.02 0.07 +populismes populisme nom m p 0.02 0.14 0 0.07 +populiste populiste adj s 0.17 0.41 0.16 0.27 +populistes populiste adj m p 0.17 0.41 0.01 0.14 +populo populo nom m s 0.17 1.55 0.17 1.55 +poquait poquer ver 0 0.07 0 0.07 ind:imp:3s; +poque poque nom f s 0.16 0.07 0.16 0.07 +poquette poquette nom f s 0 0.07 0 0.07 +porc porc nom m s 41.07 14.46 30.18 11.15 +porc_épic porc_épic nom m s 0.55 0.27 0.55 0.27 +porcelaine porcelaine nom f s 3.07 12.43 2.85 10.74 +porcelaines porcelaine nom f p 3.07 12.43 0.22 1.69 +porcelainiers porcelainier nom m p 0 0.07 0 0.07 +porcelet porcelet nom m s 0.57 0.54 0.44 0.27 +porcelets porcelet nom m p 0.57 0.54 0.13 0.27 +porche porche nom m s 3.1 17.03 2.95 15.34 +porcher porcher nom m s 1.48 0 1.46 0 +porcherie porcherie nom f s 2.76 1.22 2.73 1.22 +porcheries porcherie nom f p 2.76 1.22 0.03 0 +porches porche nom m p 3.1 17.03 0.14 1.69 +porchère porcher nom f s 1.48 0 0.01 0 +porchères porcher nom f p 1.48 0 0.01 0 +porcif porcif nom f s 0 0.34 0 0.14 +porcifs porcif nom f p 0 0.34 0 0.2 +porcin porcin adj m s 0.29 0.74 0.19 0.2 +porcine porcin adj f s 0.29 0.74 0.06 0.07 +porcins porcin nom m p 0.12 0 0.1 0 +porcs porc nom m p 41.07 14.46 10.89 3.31 +pore pore nom m s 1.54 3.51 0.57 0.47 +pores pore nom m p 1.54 3.51 0.97 3.04 +poreuse poreux adj f s 0.7 2.84 0.16 1.15 +poreuses poreux adj f p 0.7 2.84 0.04 0.14 +poreux poreux adj m 0.7 2.84 0.49 1.55 +porno porno nom m s 9.77 1.08 8.73 0.47 +pornocrate pornocrate nom s 0 0.14 0 0.07 +pornocrates pornocrate nom p 0 0.14 0 0.07 +pornographe pornographe nom s 0.19 0.47 0.17 0.47 +pornographes pornographe nom p 0.19 0.47 0.02 0 +pornographie pornographie nom f s 1.81 1.22 1.81 1.15 +pornographies pornographie nom f p 1.81 1.22 0 0.07 +pornographique pornographique adj s 1.39 1.82 0.56 0.68 +pornographiques pornographique adj p 1.39 1.82 0.83 1.15 +pornos porno adj p 7.2 2.03 2.07 0.95 +porosité porosité nom f s 0.04 0.34 0.04 0.34 +porphyre porphyre nom m s 0.1 1.49 0.1 1.35 +porphyres porphyre nom m p 0.1 1.49 0 0.14 +porphyrie porphyrie nom f s 0.12 0 0.12 0 +porque porque nom f s 0.32 0 0.32 0 +porridge porridge nom m s 1.13 0.74 1.13 0.74 +port port nom m s 31.68 76.42 29.4 64.86 +port_salut port_salut nom m 0 0.2 0 0.2 +porta porter ver 319.98 474.93 1.41 16.55 ind:pas:3s; +portabilité portabilité nom f s 0.01 0 0.01 0 +portable portable adj s 35.82 0.61 31.7 0.61 +portables portable adj p 35.82 0.61 4.12 0 +portage portage nom m s 0.08 0.74 0.08 0.74 +portager portager ver 0 0.07 0 0.07 inf; +portai porter ver 319.98 474.93 0.12 1.01 ind:pas:1s; +portaient porter ver 319.98 474.93 2.81 28.72 ind:imp:3p; +portail portail nom m s 8.61 22.97 7.97 21.82 +portails portail nom m p 8.61 22.97 0.64 1.15 +portais porter ver 319.98 474.93 7.96 9.19 ind:imp:1s;ind:imp:2s; +portait porter ver 319.98 474.93 25.75 113.85 ind:imp:3s; +portal portal adj m s 0.05 0.14 0.05 0.14 +portance portance nom f s 0.29 0 0.29 0 +portant portant adj m s 5.46 9.73 5 8.72 +portante portant adj f s 5.46 9.73 0.2 0.34 +portants portant adj m p 5.46 9.73 0.26 0.68 +portassent porter ver 319.98 474.93 0 0.07 sub:imp:3p; +portatif portatif adj m s 0.65 2.64 0.4 1.08 +portatifs portatif adj m p 0.65 2.64 0.1 0.41 +portative portatif adj f s 0.65 2.64 0.14 0.88 +portatives portatif adj f p 0.65 2.64 0.01 0.27 +porte porte nom f s 333.85 617.43 288.39 536.96 +porte_aiguille porte_aiguille nom m s 0.07 0 0.07 0 +porte_avion porte_avion nom m s 0.04 0.07 0.04 0.07 +porte_avions porte_avions nom m 1.21 1.22 1.21 1.22 +porte_bagages porte_bagages nom m 0.02 3.11 0.02 3.11 +porte_bannière porte_bannière nom m s 0 0.07 0 0.07 +porte_billets porte_billets nom m 0 0.14 0 0.14 +porte_bois porte_bois nom m 0 0.07 0 0.07 +porte_bonheur porte_bonheur nom m 4.58 1.08 4.58 1.08 +porte_bouteilles porte_bouteilles nom m 0 0.27 0 0.27 +porte_bébé porte_bébé nom m s 0.02 0 0.02 0 +porte_cannes porte_cannes nom m 0 0.07 0 0.07 +porte_carte porte_carte nom m s 0 0.07 0 0.07 +porte_cartes porte_cartes nom m 0 0.34 0 0.34 +porte_chance porte_chance nom m 0.17 0.07 0.17 0.07 +porte_chapeaux porte_chapeaux nom m 0.04 0 0.04 0 +porte_cigarette porte_cigarette nom m s 0 0.2 0 0.2 +porte_cigarettes porte_cigarettes nom m 0.65 0.74 0.65 0.74 +porte_clef porte_clef nom m s 0.02 0.14 0.02 0.14 +porte_clefs porte_clefs nom m 0.27 0.34 0.27 0.34 +porte_clé porte_clé nom m s 0.1 0 0.1 0 +porte_clés porte_clés nom m 1.44 0.54 1.44 0.54 +porte_conteneurs porte_conteneurs nom m 0.01 0 0.01 0 +porte_coton porte_coton nom m s 0 0.07 0 0.07 +porte_couilles porte_couilles nom m 0 0.07 0 0.07 +porte_couteau porte_couteau nom m s 0 0.07 0 0.07 +porte_couteaux porte_couteaux nom m p 0 0.07 0 0.07 +porte_cravate porte_cravate nom m s 0 0.07 0 0.07 +porte_crayon porte_crayon nom m s 0.01 0 0.01 0 +porte_document porte_document nom m s 0.01 0 0.01 0 +porte_documents porte_documents nom m 0.86 0.68 0.86 0.68 +porte_drapeau porte_drapeau nom m s 0.19 0.68 0.19 0.68 +porte_drapeaux porte_drapeaux nom m p 0.01 0.07 0.01 0.07 +porte_fanion porte_fanion nom m s 0 0.14 0 0.14 +porte_fenêtre porte_fenêtre nom f s 0.14 4.46 0.03 3.11 +porte_flingue porte_flingue nom m s 0.08 0.07 0.08 0 +porte_flingue porte_flingue nom m p 0.08 0.07 0 0.07 +porte_foret porte_foret nom m p 0 0.07 0 0.07 +porte_glaive porte_glaive nom m 0.1 1.01 0.1 1.01 +porte_jarretelles porte_jarretelles nom m 0.59 1.89 0.59 1.89 +porte_malheur porte_malheur nom m 0.19 0.07 0.19 0.07 +porte_mine porte_mine nom m s 0 0.14 0 0.14 +porte_monnaie porte_monnaie nom m 2.24 6.01 2.24 6.01 +porte_musique porte_musique nom m s 0 0.07 0 0.07 +porte_objet porte_objet nom m s 0.01 0 0.01 0 +porte_papier porte_papier nom m 0.01 0.07 0.01 0.07 +porte_parapluie porte_parapluie nom m s 0 0.07 0 0.07 +porte_parapluies porte_parapluies nom m 0.14 0.47 0.14 0.47 +porte_plume porte_plume nom m 0.29 3.78 0.29 3.72 +porte_plume porte_plume nom m p 0.29 3.78 0 0.07 +porte_queue porte_queue nom m 0.01 0 0.01 0 +porte_savon porte_savon nom m s 0.09 0.27 0.09 0.27 +porte_serviette porte_serviette nom m s 0 0.2 0 0.2 +porte_serviettes porte_serviettes nom m 0.12 0.2 0.12 0.2 +porte_tambour porte_tambour nom m 0.01 0.34 0.01 0.34 +porte_voix porte_voix nom m 0.55 2.64 0.55 2.64 +porte_à_faux porte_à_faux nom m 0 0.61 0 0.61 +porte_à_porte porte_à_porte nom m 0 0.41 0 0.41 +porte_épée porte_épée nom m s 0 0.14 0 0.14 +porte_étendard porte_étendard nom m s 0.01 0.34 0.01 0.27 +porte_étendard porte_étendard nom m p 0.01 0.34 0 0.07 +porte_étrier porte_étrier nom m s 0 0.07 0 0.07 +portefaix portefaix nom m 0.01 1.15 0.01 1.15 +portefeuille portefeuille nom m s 17.91 21.15 16.53 19.66 +portefeuilles portefeuille nom m p 17.91 21.15 1.38 1.49 +portemanteau portemanteau nom m s 0.36 4.05 0.3 2.97 +portemanteaux portemanteau nom m p 0.36 4.05 0.07 1.08 +portement portement nom m s 0 0.07 0 0.07 +portent porter ver 319.98 474.93 11.9 19.39 ind:pre:3p;sub:pre:3p; +porter porter ver 319.98 474.93 79.04 79.93 ind:pre:2p;inf; +portera porter ver 319.98 474.93 7.54 3.11 ind:fut:3s; +porterai porter ver 319.98 474.93 5.49 1.62 ind:fut:1s; +porteraient porter ver 319.98 474.93 0.2 1.15 cnd:pre:3p; +porterais porter ver 319.98 474.93 1.14 0.81 cnd:pre:1s;cnd:pre:2s; +porterait porter ver 319.98 474.93 2.16 3.65 cnd:pre:3s; +porteras porter ver 319.98 474.93 2.1 0.47 ind:fut:2s; +porterez porter ver 319.98 474.93 1.53 0.54 ind:fut:2p; +porterie porterie nom f s 0.01 0.14 0.01 0.14 +porteriez porter ver 319.98 474.93 0.3 0.07 cnd:pre:2p; +porterons porter ver 319.98 474.93 0.46 0.27 ind:fut:1p; +porteront porter ver 319.98 474.93 1.73 0.74 ind:fut:3p; +portes porte nom f p 333.85 617.43 45.46 80.47 +porte_fenêtre porte_fenêtre nom f p 0.14 4.46 0.1 1.35 +porteur porteur nom m s 6.2 13.31 4.01 5.54 +porteurs porteur nom m p 6.2 13.31 1.89 6.49 +porteuse porteur adj f s 4.31 11.15 0.98 1.82 +porteuses porteur adj f p 4.31 11.15 0.44 0.88 +portez porter ver 319.98 474.93 16.22 2.84 imp:pre:2p;ind:pre:2p; +portfolio portfolio nom m s 0.68 0 0.68 0 +portier portier nom m s 8.23 45 3.07 6.89 +portiers portier nom m p 8.23 45 0.21 0.68 +portiez porter ver 319.98 474.93 2.56 1.15 ind:imp:2p; +portillon portillon nom m s 0.36 3.24 0.35 3.04 +portillons portillon nom m p 0.36 3.24 0.01 0.2 +portion portion nom f s 3.13 7.57 2.3 5.61 +portions portion nom f p 3.13 7.57 0.83 1.96 +portique portique nom m s 0.4 4.53 0.35 3.11 +portiques portique nom m p 0.4 4.53 0.04 1.42 +portière portier nom f s 8.23 45 4.12 29.19 +portières portier nom f p 8.23 45 0.84 8.24 +portland portland nom m s 0.05 0.07 0.05 0.07 +porto porto nom m s 2.3 5 2.27 4.46 +portons porter ver 319.98 474.93 4.34 2.43 imp:pre:1p;ind:pre:1p; +portor portor nom m s 0 0.07 0 0.07 +portoricain portoricain adj m s 1.09 0.07 0.53 0 +portoricaine portoricain adj f s 1.09 0.07 0.48 0 +portoricaines portoricain adj f p 1.09 0.07 0.03 0.07 +portoricains portoricain nom m p 1.27 0.07 0.8 0.07 +portos porto nom m p 2.3 5 0.03 0.54 +portraire portraire ver 0.36 1.01 0 0.07 inf; +portrait portrait nom m s 25.73 54.59 22.64 39.19 +portrait_robot portrait_robot nom m s 1.17 0.54 0.77 0.47 +portraitiste portraitiste nom s 0.28 0.47 0.26 0.27 +portraitistes portraitiste nom p 0.28 0.47 0.03 0.2 +portraits portrait nom m p 25.73 54.59 3.09 15.41 +portrait_robot portrait_robot nom m p 1.17 0.54 0.4 0.07 +portraiturant portraiturer ver 0 0.54 0 0.07 par:pre; +portraiture portraiturer ver 0 0.54 0 0.14 ind:pre:3s; +portraiturer portraiturer ver 0 0.54 0 0.2 inf; +portraituré portraiturer ver m s 0 0.54 0 0.07 par:pas; +portraiturés portraiturer ver m p 0 0.54 0 0.07 par:pas; +ports port nom m p 31.68 76.42 2.28 11.55 +portuaire portuaire adj f s 0.56 0.81 0.29 0.54 +portuaires portuaire adj f p 0.56 0.81 0.26 0.27 +portugais portugais nom m 7.89 3.45 7.58 2.7 +portugaise portugais adj f s 3.88 3.51 0.55 1.49 +portugaises portugais adj f p 3.88 3.51 0.3 0.41 +portulan portulan nom m s 0 0.61 0 0.34 +portulans portulan nom m p 0 0.61 0 0.27 +portus portus nom m 0 0.07 0 0.07 +portâmes porter ver 319.98 474.93 0 0.14 ind:pas:1p; +portât porter ver 319.98 474.93 0.01 0.95 sub:imp:3s; +portèrent porter ver 319.98 474.93 0.29 2.5 ind:pas:3p; +porté porter ver m s 319.98 474.93 20.56 38.65 par:pas;par:pas;par:pas; +portée portée nom f s 13.38 33.85 13.05 33.18 +portées porter ver f p 319.98 474.93 1 3.38 par:pas; +portés porter ver m p 319.98 474.93 2.7 7.64 par:pas; +posa poser ver 217.2 409.05 1.77 65.68 ind:pas:3s; +posada posada nom f s 0.12 0.81 0.12 0.74 +posadas posada nom f p 0.12 0.81 0 0.07 +posai poser ver 217.2 409.05 0.03 5.2 ind:pas:1s; +posaient poser ver 217.2 409.05 0.73 7.3 ind:imp:3p; +posais poser ver 217.2 409.05 1.77 5.41 ind:imp:1s;ind:imp:2s; +posait poser ver 217.2 409.05 3.38 32.43 ind:imp:3s; +posant poser ver 217.2 409.05 1.47 16.28 par:pre; +posas poser ver 217.2 409.05 0 0.07 ind:pas:2s; +pose poser ver 217.2 409.05 57.41 48.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +pose_la_moi pose_la_moi nom f s 0.01 0 0.01 0 +posemètre posemètre nom m s 0.02 0 0.02 0 +posent poser ver 217.2 409.05 3.54 7.5 ind:pre:3p; +poser poser ver 217.2 409.05 73.73 73.85 inf;;inf;;inf;;inf;; +posera poser ver 217.2 409.05 3.04 1.08 ind:fut:3s; +poserai poser ver 217.2 409.05 1.73 0.74 ind:fut:1s; +poseraient poser ver 217.2 409.05 0.06 0.34 cnd:pre:3p; +poserais poser ver 217.2 409.05 0.4 0.14 cnd:pre:1s;cnd:pre:2s; +poserait poser ver 217.2 409.05 0.74 1.76 cnd:pre:3s; +poseras poser ver 217.2 409.05 0.41 0.07 ind:fut:2s; +poserez poser ver 217.2 409.05 0.35 0.07 ind:fut:2p; +poseriez poser ver 217.2 409.05 0.24 0 cnd:pre:2p; +poserions poser ver 217.2 409.05 0.01 0 cnd:pre:1p; +poserons poser ver 217.2 409.05 0.43 0.07 ind:fut:1p; +poseront poser ver 217.2 409.05 1.02 0.95 ind:fut:3p; +poses poser ver 217.2 409.05 6.12 0.95 ind:pre:2s;sub:pre:2s; +poseur poseur nom m s 0.96 0.95 0.67 0.74 +poseurs poseur nom m p 0.96 0.95 0.23 0.2 +poseuse poseur nom f s 0.96 0.95 0.07 0 +posez poser ver 217.2 409.05 23.7 2.77 imp:pre:2p;ind:pre:2p; +posiez poser ver 217.2 409.05 0.47 0.27 ind:imp:2p; +posions poser ver 217.2 409.05 0.06 0.14 ind:imp:1p; +positif positif adj m s 17.27 7.7 9.69 3.99 +positifs positif adj m p 17.27 7.7 1.69 0.54 +position position nom f s 61.74 63.38 55.24 53.85 +position_clé position_clé nom f s 0.01 0 0.01 0 +positionne positionner ver 1.11 0.14 0.22 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +positionnel positionnel adj m s 0.01 0 0.01 0 +positionnement positionnement nom m s 0.23 0.07 0.23 0.07 +positionnent positionner ver 1.11 0.14 0.03 0 ind:pre:3p; +positionner positionner ver 1.11 0.14 0.57 0.07 inf; +positionnera positionner ver 1.11 0.14 0.02 0 ind:fut:3s; +positionneur positionneur nom m s 0.01 0 0.01 0 +positionné positionner ver m s 1.11 0.14 0.16 0.07 par:pas; +positionnée positionner ver f s 1.11 0.14 0.11 0 par:pas; +positions position nom f p 61.74 63.38 6.49 9.53 +positive positif adj f s 17.27 7.7 4.63 2.57 +positivement positivement adv 1.58 3.11 1.58 3.11 +positiver positiver ver 0.23 0 0.23 0 inf; +positives positif adj f p 17.27 7.7 1.25 0.61 +positivisme positivisme nom m s 0.04 0.14 0.04 0.14 +positiviste positiviste adj s 0.2 0.2 0.2 0.14 +positivistes positiviste adj m p 0.2 0.2 0 0.07 +positivité positivité nom f s 0.17 0.07 0.17 0.07 +positon positon nom m s 0.01 0 0.01 0 +positron positron nom m s 0.04 0.14 0.01 0.07 +positrons positron nom m p 0.04 0.14 0.02 0.07 +posologie posologie nom f s 0.26 0.34 0.15 0.27 +posologies posologie nom f p 0.26 0.34 0.11 0.07 +posons poser ver 217.2 409.05 1.38 0.34 imp:pre:1p;ind:pre:1p; +possesseur possesseur nom m s 0.53 3.78 0.5 2.57 +possesseurs possesseur nom m p 0.53 3.78 0.04 1.22 +possessif possessif adj m s 1.04 1.76 0.41 0.81 +possessifs possessif adj m p 1.04 1.76 0.09 0.07 +possession possession nom f s 12.76 27.64 11.56 24.19 +possessions possession nom f p 12.76 27.64 1.2 3.45 +possessive possessif adj f s 1.04 1.76 0.53 0.81 +possessives possessif adj f p 1.04 1.76 0.02 0.07 +possessivité possessivité nom f s 0.03 0.2 0.03 0.2 +possibilité possibilité nom f s 25.87 30.54 16.79 19.46 +possibilités possibilité nom f p 25.87 30.54 9.08 11.08 +possible possible adj s 201.41 211.96 193.91 197.16 +possiblement possiblement adv 0.21 0.2 0.21 0.2 +possibles possible adj p 201.41 211.96 7.5 14.8 +possède posséder ver 42.76 82.23 17.8 20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +possèdent posséder ver 42.76 82.23 3.27 4.59 ind:pre:3p; +possèdes posséder ver 42.76 82.23 1.44 0.47 ind:pre:2s; +posséda posséder ver 42.76 82.23 0.12 0.61 ind:pas:3s; +possédaient posséder ver 42.76 82.23 0.38 5.14 ind:imp:3p; +possédais posséder ver 42.76 82.23 0.72 3.11 ind:imp:1s;ind:imp:2s; +possédait posséder ver 42.76 82.23 2.84 21.42 ind:imp:3s; +possédant posséder ver 42.76 82.23 0.59 1.55 par:pre; +possédante possédant adj f s 0.27 0.34 0.21 0.2 +possédants possédant nom m p 0.09 0.68 0.01 0.34 +possédasse posséder ver 42.76 82.23 0 0.07 sub:imp:1s; +posséder posséder ver 42.76 82.23 6.36 13.24 inf; +possédera posséder ver 42.76 82.23 0.39 0.27 ind:fut:3s; +posséderai posséder ver 42.76 82.23 0.27 0.2 ind:fut:1s; +posséderaient posséder ver 42.76 82.23 0.04 0.07 cnd:pre:3p; +posséderais posséder ver 42.76 82.23 0 0.07 cnd:pre:1s; +posséderait posséder ver 42.76 82.23 0.05 0.27 cnd:pre:3s; +posséderas posséder ver 42.76 82.23 0.01 0.07 ind:fut:2s; +posséderez posséder ver 42.76 82.23 0.05 0 ind:fut:2p; +posséderont posséder ver 42.76 82.23 0.2 0.07 ind:fut:3p; +possédez posséder ver 42.76 82.23 2.18 0.81 imp:pre:2p;ind:pre:2p; +possédiez posséder ver 42.76 82.23 0.29 0.07 ind:imp:2p; +possédions posséder ver 42.76 82.23 0.13 0.81 ind:imp:1p; +possédons posséder ver 42.76 82.23 1.09 1.01 imp:pre:1p;ind:pre:1p; +possédât posséder ver 42.76 82.23 0.01 0.74 sub:imp:3s; +possédé posséder ver m s 42.76 82.23 2.67 4.93 par:pas; +possédée posséder ver f s 42.76 82.23 1.44 1.55 par:pas; +possédées posséder ver f p 42.76 82.23 0.14 0.14 par:pas; +possédés posséder ver m p 42.76 82.23 0.29 0.95 par:pas; +post post adv 0.69 0.41 0.69 0.41 +post_it post_it nom m 1.85 0 0.01 0 +post_mortem post_mortem adv 0.28 0.2 0.28 0.2 +post_apocalyptique post_apocalyptique adj s 0.04 0 0.04 0 +post_empire post_empire nom m s 0 0.07 0 0.07 +post_hypnotique post_hypnotique adj f s 0.02 0 0.02 0 +post_impressionnisme post_impressionnisme nom m s 0.01 0 0.01 0 +post_it post_it nom m 1.85 0 1.84 0 +post_moderne post_moderne adj s 0.14 0 0.14 0 +post_natal post_natal adj m s 0.18 0.07 0.03 0.07 +post_natal post_natal adj f s 0.18 0.07 0.16 0 +post_opératoire post_opératoire adj s 0.19 0 0.17 0 +post_opératoire post_opératoire adj m p 0.19 0 0.02 0 +post_partum post_partum nom m 0.04 0 0.04 0 +post_production post_production nom f s 0.14 0 0.14 0 +post_punk post_punk nom s 0 0.14 0 0.14 +post_romantique post_romantique adj m s 0 0.07 0 0.07 +post_rupture post_rupture nom f s 0.01 0 0.01 0 +post_scriptum post_scriptum nom m 0.29 1.96 0.29 1.96 +post_surréaliste post_surréaliste adj p 0 0.07 0 0.07 +post_synchro post_synchro adj s 0.05 0 0.05 0 +post_traumatique post_traumatique adj s 0.82 0.07 0.79 0 +post_traumatique post_traumatique adj p 0.82 0.07 0.03 0.07 +post_victorien post_victorien adj m s 0.01 0 0.01 0 +post_zoo post_zoo nom m s 0.01 0 0.01 0 +posta poster ver 9.54 10.47 0.07 0.95 ind:pas:3s; +postage postage nom m s 0.01 0 0.01 0 +postai poster ver 9.54 10.47 0.01 0.14 ind:pas:1s; +postaient poster ver 9.54 10.47 0 0.07 ind:imp:3p; +postais poster ver 9.54 10.47 0.02 0.14 ind:imp:1s; +postait poster ver 9.54 10.47 0.01 0.2 ind:imp:3s; +postal postal adj m s 9.04 16.76 1.69 1.35 +postale postal adj f s 9.04 16.76 5.18 6.89 +postales postal adj f p 9.04 16.76 1.94 8.11 +postant poster ver 9.54 10.47 0.05 0.14 par:pre; +postaux postal adj m p 9.04 16.76 0.22 0.41 +postcombustion postcombustion nom f s 0.12 0 0.12 0 +postcure postcure nom f s 0.04 0.27 0.04 0.27 +postdater postdater ver 0.04 0 0.01 0 inf; +postdaté postdater ver m s 0.04 0 0.02 0 par:pas; +postdoctoral postdoctoral adj m s 0.01 0 0.01 0 +poste poste nom s 82.87 90.68 72.64 73.58 +poste_clé poste_clé nom s 0.02 0 0.02 0 +postent poster ver 9.54 10.47 0.15 0.07 ind:pre:3p; +poster poster ver 9.54 10.47 2.51 2.16 inf; +postera poster ver 9.54 10.47 0.09 0 ind:fut:3s; +posterai poster ver 9.54 10.47 0.4 0.27 ind:fut:1s; +posterait poster ver 9.54 10.47 0.01 0.07 cnd:pre:3s; +posteras poster ver 9.54 10.47 0.02 0.07 ind:fut:2s; +posterons poster ver 9.54 10.47 0.12 0.07 ind:fut:1p; +posters poster nom m p 2.41 2.03 0.81 1.01 +postes poste nom p 82.87 90.68 10.23 17.09 +postes_clé postes_clé nom p 0.01 0 0.01 0 +postez poster ver 9.54 10.47 0.8 0 imp:pre:2p;ind:pre:2p; +postface postface nom f s 0 0.27 0 0.2 +postfaces postface nom f p 0 0.27 0 0.07 +posthume posthume adj s 0.83 4.32 0.81 3.78 +posthumes posthume adj p 0.83 4.32 0.02 0.54 +postiche postiche nom m s 0.48 0.74 0.33 0.34 +postiches postiche adj p 0.44 1.28 0.17 0.61 +postier postier nom m s 0.66 2.03 0.58 0.54 +postiers postier nom m p 0.66 2.03 0.04 1.08 +postillon postillon nom m s 0.22 1.42 0.03 0.68 +postillonna postillonner ver 0.2 2.3 0 0.14 ind:pas:3s; +postillonnait postillonner ver 0.2 2.3 0 0.34 ind:imp:3s; +postillonnant postillonner ver 0.2 2.3 0.01 0.88 par:pre; +postillonne postillonner ver 0.2 2.3 0.05 0.47 ind:pre:1s;ind:pre:3s; +postillonnent postillonner ver 0.2 2.3 0.02 0.07 ind:pre:3p; +postillonner postillonner ver 0.2 2.3 0 0.34 inf; +postillonnes postillonner ver 0.2 2.3 0.04 0 ind:pre:2s; +postillonneur postillonneur nom m s 0.01 0.14 0.01 0 +postillonneurs postillonneur nom m p 0.01 0.14 0 0.14 +postillonnez postillonner ver 0.2 2.3 0.03 0 ind:pre:2p; +postillonné postillonner ver m s 0.2 2.3 0.04 0.07 par:pas; +postillons postillon nom m p 0.22 1.42 0.19 0.74 +postière postier nom f s 0.66 2.03 0.04 0.41 +postmoderne postmoderne adj s 0.08 0.07 0.08 0.07 +postmodernisme postmodernisme nom m s 0.01 0.07 0.01 0.07 +postmoderniste postmoderniste adj s 0.01 0 0.01 0 +postnatal postnatal adj m s 0.02 0 0.01 0 +postnatale postnatal adj f s 0.02 0 0.01 0 +postopératoire postopératoire adj s 0.18 0.07 0.13 0 +postopératoires postopératoire adj m p 0.18 0.07 0.05 0.07 +postproduction postproduction nom f s 0.02 0 0.02 0 +postsynchronisation postsynchronisation nom f s 0 0.07 0 0.07 +postulai postuler ver 2.44 1.49 0 0.07 ind:pas:1s; +postulaient postuler ver 2.44 1.49 0 0.07 ind:imp:3p; +postulait postuler ver 2.44 1.49 0.07 0.2 ind:imp:3s; +postulant postulant nom m s 0.78 1.28 0.05 0.27 +postulante postulant nom f s 0.78 1.28 0.01 0.14 +postulantes postulant nom f p 0.78 1.28 0.04 0.27 +postulants postulant nom m p 0.78 1.28 0.68 0.61 +postulat postulat nom m s 0.17 0.95 0.14 0.61 +postulations postulation nom f p 0 0.07 0 0.07 +postulats postulat nom m p 0.17 0.95 0.03 0.34 +postule postuler ver 2.44 1.49 0.36 0.14 ind:pre:1s;ind:pre:3s; +postulent postuler ver 2.44 1.49 0.19 0.07 ind:pre:3p; +postuler postuler ver 2.44 1.49 0.88 0.54 inf; +postuleras postuler ver 2.44 1.49 0.01 0 ind:fut:2s; +postules postuler ver 2.44 1.49 0.04 0 ind:pre:2s; +postulé postuler ver m s 2.44 1.49 0.87 0.2 par:pas; +posturaux postural adj m p 0.01 0 0.01 0 +posture posture nom f s 1.3 9.46 1.26 7.84 +postures posture nom f p 1.3 9.46 0.04 1.62 +posté poster ver m s 9.54 10.47 1.94 2.23 par:pas; +postée poster ver f s 9.54 10.47 0.68 0.74 par:pas; +postées poster ver f p 9.54 10.47 0.14 0.54 par:pas; +postérieur postérieur nom m s 0.9 1.35 0.73 1.01 +postérieure postérieur adj f s 0.68 1.76 0.37 0.74 +postérieurement postérieurement adv 0.03 0.27 0.03 0.27 +postérieures postérieur adj f p 0.68 1.76 0.06 0.27 +postérieurs postérieur nom m p 0.9 1.35 0.16 0.34 +postérité postérité nom f s 1.54 2.3 1.54 2.23 +postérités postérité nom f p 1.54 2.3 0 0.07 +postés poster ver m p 9.54 10.47 0.7 0.95 par:pas; +posâmes poser ver 217.2 409.05 0 0.27 ind:pas:1p; +posât poser ver 217.2 409.05 0 0.81 sub:imp:3s; +posèrent poser ver 217.2 409.05 0.02 2.91 ind:pas:3p; +posé poser ver m s 217.2 409.05 28.09 69.26 par:pas; +posée poser ver f s 217.2 409.05 2.67 34.8 par:pas; +posées poser ver f p 217.2 409.05 1.13 14.39 par:pas; +posément posément adv 0.1 8.38 0.1 8.38 +posés poser ver m p 217.2 409.05 1.33 14.39 par:pas; +pot pot nom m s 29.89 48.04 25.72 32.3 +pot_au_feu pot_au_feu nom m 0.9 0.88 0.9 0.88 +pot_bouille pot_bouille nom m 0.01 0 0.01 0 +pot_de_vin pot_de_vin nom m s 1.22 0.41 1.22 0.41 +pot_pourri pot_pourri nom m s 0.49 0.68 0.34 0.68 +potable potable adj s 2.26 1.28 2.15 1.08 +potables potable adj p 2.26 1.28 0.11 0.2 +potache potache nom m s 0.09 0.54 0.08 0.47 +potaches potache nom m p 0.09 0.54 0.01 0.07 +potage potage nom m s 3.28 6.22 3.07 6.01 +potager potager nom m s 2.21 3.24 1.93 3.04 +potagers potager nom m p 2.21 3.24 0.29 0.2 +potages potage nom m p 3.28 6.22 0.21 0.2 +potagère potager adj f s 0.41 1.35 0 0.07 +potagères potager adj f p 0.41 1.35 0.14 0.14 +potard potard nom m s 0 0.68 0 0.68 +potassa potasser ver 0.83 0.81 0 0.07 ind:pas:3s; +potassait potasser ver 0.83 0.81 0.02 0.14 ind:imp:3s; +potasse potasse nom f s 0.21 0.27 0.21 0.27 +potassent potasser ver 0.83 0.81 0 0.07 ind:pre:3p; +potasser potasser ver 0.83 0.81 0.17 0.14 inf; +potasserai potasser ver 0.83 0.81 0 0.07 ind:fut:1s; +potasses potasser ver 0.83 0.81 0.11 0 ind:pre:2s; +potassez potasser ver 0.83 0.81 0.01 0.07 imp:pre:2p; +potassium potassium nom m s 1.68 0.47 1.68 0.47 +potassé potasser ver m s 0.83 0.81 0.37 0.14 par:pas; +pote pote nom m s 84.92 36.35 65.03 22.97 +poteau poteau nom m s 5.17 13.04 3.88 7.7 +poteaux poteau nom m p 5.17 13.04 1.28 5.34 +potelé potelé adj m s 0.79 3.38 0.33 0.54 +potelée potelé adj f s 0.79 3.38 0.38 1.22 +potelées potelé adj f p 0.79 3.38 0.06 1.15 +potelés potelé adj m p 0.79 3.38 0.02 0.47 +potence potence nom f s 3.4 2.03 3.04 1.35 +potences potence nom f p 3.4 2.03 0.35 0.68 +potencée potencé adj f s 0 0.07 0 0.07 +potentat potentat nom m s 0.12 0.41 0.1 0.34 +potentats potentat nom m p 0.12 0.41 0.02 0.07 +potentialisation potentialisation nom f s 0.01 0 0.01 0 +potentialiser potentialiser ver 0.01 0 0.01 0 inf; +potentialité potentialité nom f s 0.38 0.07 0.38 0.07 +potentiel potentiel nom m s 6.04 1.01 5.94 0.95 +potentielle potentiel adj f s 5.69 0.95 0.88 0.2 +potentiellement potentiellement adv 1.12 0.14 1.12 0.14 +potentielles potentiel adj f p 5.69 0.95 0.54 0.07 +potentiels potentiel adj m p 5.69 0.95 1.96 0.41 +potentiomètre potentiomètre nom m s 0.14 0.2 0.14 0.2 +poter poter ver 0.02 0 0.02 0 inf; +poterie poterie nom f s 0.95 4.32 0.78 1.89 +poteries poterie nom f p 0.95 4.32 0.17 2.43 +poterne poterne nom f s 0.02 2.03 0.02 1.76 +poternes poterne nom f p 0.02 2.03 0 0.27 +potes pote nom m p 84.92 36.35 19.89 13.38 +potiche potiche nom f s 0.64 1.15 0.55 0.61 +potiches potiche nom f p 0.64 1.15 0.09 0.54 +potier potier nom m s 0.47 0.68 0.26 0.61 +potiers potier nom m p 0.47 0.68 0.2 0.07 +potimarron potimarron nom m s 0.01 0 0.01 0 +potin potin nom m s 2.02 3.85 0.61 1.55 +potinais potiner ver 0.01 0.81 0 0.07 ind:imp:1s; +potine potiner ver 0.01 0.81 0.01 0.2 ind:pre:3s; +potines potiner ver 0.01 0.81 0 0.54 ind:pre:2s; +potins potin nom m p 2.02 3.85 1.41 2.3 +potion potion nom f s 11.59 2.97 10.01 2.3 +potions potion nom f p 11.59 2.97 1.58 0.68 +potiron potiron nom m s 1.08 0.95 0.99 0.61 +potirons potiron nom m p 1.08 0.95 0.09 0.34 +potière potier nom f s 0.47 0.68 0.01 0 +potlatch potlatch nom m s 0 0.2 0 0.2 +poto_poto poto_poto nom m s 0 0.14 0 0.14 +potos potos nom m 0 0.07 0 0.07 +potron_minet potron_minet nom m s 0.03 0.27 0.03 0.27 +pots pot nom m p 29.89 48.04 4.17 15.74 +pots_de_vin pots_de_vin nom m p 1.98 0.34 1.98 0.34 +pot_pourri pot_pourri nom m p 0.49 0.68 0.15 0 +potée potée nom f s 0.04 1.35 0.04 0.95 +potées potée nom f p 0.04 1.35 0 0.41 +pou pou nom m s 10.41 8.51 1.92 1.42 +pouacre pouacre nom m s 0.01 0.07 0.01 0.07 +pouah pouah ono 0.89 1.82 0.89 1.82 +poubelle poubelle nom f s 21.34 22.91 14.85 10.27 +poubelles poubelle nom f p 21.34 22.91 6.49 12.64 +pouce pouce ono 0.5 0.54 0.5 0.54 +pouce_pied pouce_pied nom m s 0.01 0 0.01 0 +pouces pouce nom m p 15.72 35.34 3.83 5.47 +poucet poucet nom m s 0.84 1.08 0.84 0.95 +poucets poucet nom m p 0.84 1.08 0 0.14 +poucette poucette nom f s 1.18 0 0.76 0 +poucettes poucette nom f p 1.18 0 0.41 0 +pouding pouding nom m s 0.16 0.07 0.16 0.07 +poudingue poudingue nom m s 0 0.07 0 0.07 +poudra poudrer ver 0.95 4.32 0 0.14 ind:pas:3s; +poudrage poudrage nom m s 0.01 0.07 0.01 0.07 +poudraient poudrer ver 0.95 4.32 0 0.07 ind:imp:3p; +poudrait poudrer ver 0.95 4.32 0 0.34 ind:imp:3s; +poudrant poudrer ver 0.95 4.32 0.01 0.34 par:pre; +poudre poudre nom f s 23.11 30.27 22.09 27.57 +poudrent poudrer ver 0.95 4.32 0.14 0 ind:pre:3p; +poudrer poudrer ver 0.95 4.32 0.42 0.41 inf; +poudres poudre nom f p 23.11 30.27 1.02 2.7 +poudrette poudrette nom f s 0 0.07 0 0.07 +poudreuse poudreux nom f s 0.26 0 0.26 0 +poudreuses poudreux adj f p 0.07 3.18 0 0.47 +poudreux poudreux adj m 0.07 3.18 0.02 1.62 +poudrier poudrier nom m s 0.25 1.42 0.25 1.35 +poudriers poudrier nom m p 0.25 1.42 0 0.07 +poudrière poudrière nom f s 0.25 0.61 0.25 0.61 +poudroie poudroyer ver 0 0.34 0 0.2 ind:pre:3s; +poudroiement poudroiement nom m s 0 1.15 0 1.08 +poudroiements poudroiement nom m p 0 1.15 0 0.07 +poudroyaient poudroyer ver 0 0.34 0 0.07 ind:imp:3p; +poudroyait poudroyer ver 0 0.34 0 0.07 ind:imp:3s; +poudroyante poudroyant adj f s 0 0.27 0 0.2 +poudroyantes poudroyant adj f p 0 0.27 0 0.07 +poudré poudrer ver m s 0.95 4.32 0.19 0.81 par:pas; +poudrée poudré adj f s 0.09 2.3 0.02 0.74 +poudrées poudré adj f p 0.09 2.3 0.02 0.47 +poudrés poudré adj m p 0.09 2.3 0.02 0.47 +pouf pouf ono 0.53 0.2 0.53 0.2 +pouffa pouffer ver 0.98 9.12 0 1.69 ind:pas:3s; +pouffaient pouffer ver 0.98 9.12 0 0.74 ind:imp:3p; +pouffait pouffer ver 0.98 9.12 0.11 0.74 ind:imp:3s; +pouffant pouffer ver 0.98 9.12 0 1.22 par:pre; +pouffante pouffant adj f s 0 0.27 0 0.14 +pouffantes pouffant adj f p 0 0.27 0 0.07 +pouffe pouffer ver 0.98 9.12 0.41 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pouffement pouffement nom m s 0 0.14 0 0.07 +pouffements pouffement nom m p 0 0.14 0 0.07 +pouffent pouffer ver 0.98 9.12 0.27 0.27 ind:pre:3p; +pouffer pouffer ver 0.98 9.12 0.05 1.35 inf; +poufferais pouffer ver 0.98 9.12 0 0.14 cnd:pre:1s; +poufferait pouffer ver 0.98 9.12 0 0.07 cnd:pre:3s; +pouffes pouffer ver 0.98 9.12 0.14 0 ind:pre:2s; +pouffiasse pouffiasse nom f s 3.09 2.09 2.73 1.35 +pouffiasses pouffiasse nom f p 3.09 2.09 0.36 0.74 +pouffions pouffer ver 0.98 9.12 0 0.07 ind:imp:1p; +pouffons pouffer ver 0.98 9.12 0 0.14 ind:pre:1p; +pouffèrent pouffer ver 0.98 9.12 0 0.41 ind:pas:3p; +pouffé pouffer ver m s 0.98 9.12 0 0.34 par:pas; +poufiasse poufiasse nom f s 1.64 0.34 1.5 0.2 +poufiasses poufiasse nom f p 1.64 0.34 0.14 0.14 +poufs pouf nom m p 0.83 5.07 0.07 1.15 +pouh pouh ono 0.28 0.14 0.28 0.14 +pouic pouic ono 0.04 0.41 0.04 0.41 +pouille pouille nom f s 0.01 0.07 0.01 0 +pouillerie pouillerie nom f s 0 0.54 0 0.41 +pouilleries pouillerie nom f p 0 0.54 0 0.14 +pouilles pouille nom f p 0.01 0.07 0 0.07 +pouilleuse pouilleux adj f s 0.61 1.22 0.14 0.27 +pouilleuses pouilleux adj f p 0.61 1.22 0 0.07 +pouilleux pouilleux nom m 1.27 0.27 1.25 0.27 +pouillot pouillot nom m s 0.01 0.07 0.01 0 +pouillots pouillot nom m p 0.01 0.07 0 0.07 +pouilly pouilly nom m s 0.01 0.34 0.01 0.34 +pouillés pouillé nom m p 0.01 0 0.01 0 +poujadisme poujadisme nom m s 0 0.07 0 0.07 +poujadiste poujadiste nom s 0.1 0.2 0.1 0.14 +poujadistes poujadiste nom p 0.1 0.2 0 0.07 +poulaga poulaga nom m s 0.14 2.43 0.14 1.22 +poulagas poulaga nom m p 0.14 2.43 0 1.22 +poulaille poulaille nom f s 0.26 0.41 0.26 0.41 +poulailler poulailler nom m s 2.45 3.51 2.43 3.04 +poulaillers poulailler nom m p 2.45 3.51 0.02 0.47 +poulain poulain nom m s 3.46 3.78 3.2 3.04 +poulaine poulain nom f s 3.46 3.78 0 0.07 +poulaines poulain nom f p 3.46 3.78 0 0.07 +poulains poulain nom m p 3.46 3.78 0.26 0.61 +poularde poulard nom f s 0.16 0.54 0.16 0.27 +poulardes poulard nom f p 0.16 0.54 0 0.27 +poulardin poulardin nom m s 0 0.34 0 0.2 +poulardins poulardin nom m p 0 0.34 0 0.14 +poulbot poulbot nom m s 0 0.54 0 0.2 +poulbots poulbot nom m p 0 0.54 0 0.34 +poule poule nom f s 36.7 31.82 23.5 16.69 +poules poule nom f p 36.7 31.82 13.21 15.14 +poulet poulet nom m s 41.25 25.34 32.33 14.53 +poulets poulet nom m p 41.25 25.34 8.93 10.81 +poulette poulette nom f s 3.41 1.15 2.71 0.95 +poulettes poulette nom f p 3.41 1.15 0.7 0.2 +pouliche pouliche nom f s 1.1 2.09 0.9 1.55 +pouliches pouliche nom f p 1.1 2.09 0.2 0.54 +poulie poulie nom f s 0.83 3.11 0.57 1.49 +poulies poulie nom f p 0.83 3.11 0.27 1.62 +poulinière poulinière adj f s 0.14 0.07 0.14 0.07 +poulot poulot nom m s 0 0.2 0 0.07 +poulots poulot nom m p 0 0.2 0 0.14 +poulottant poulotter ver 0 0.14 0 0.07 par:pre; +poulotter poulotter ver 0 0.14 0 0.07 inf; +poulpe poulpe nom m s 1.77 3.11 1.48 1.22 +poulpes poulpe nom m p 1.77 3.11 0.29 1.89 +pouls pouls nom m 15.64 5.54 15.64 5.54 +poumon poumon nom m s 16.65 21.55 4.55 3.58 +poumons poumon nom m p 16.65 21.55 12.09 17.97 +pound pound nom m s 0.2 0.07 0.03 0 +pounds pound nom m p 0.2 0.07 0.16 0.07 +poupard poupard nom m s 0 0.68 0 0.47 +poupards poupard nom m p 0 0.68 0 0.2 +poupe poupe nom f s 1.3 2.97 1.3 2.97 +poupin poupin adj m s 0 1.55 0 1.35 +poupine poupin adj f s 0 1.55 0 0.2 +poupon poupon nom m s 0.33 2.77 0.33 2.3 +pouponnage pouponnage nom m s 0.04 0.07 0.04 0.07 +pouponne pouponner ver 0.21 0.54 0.03 0 ind:pre:3s; +pouponnent pouponner ver 0.21 0.54 0 0.07 ind:pre:3p; +pouponner pouponner ver 0.21 0.54 0.14 0.47 inf; +pouponnière pouponnière nom f s 0.23 0.2 0.2 0.14 +pouponnières pouponnière nom f p 0.23 0.2 0.03 0.07 +pouponné pouponner ver m s 0.21 0.54 0.04 0 par:pas; +poupons poupon nom m p 0.33 2.77 0 0.47 +poupoule poupoule nom f s 0.1 0.74 0.1 0.74 +poupée poupée nom f s 27.59 27.57 22.05 18.58 +poupées poupée nom f p 27.59 27.57 5.54 8.99 +pour pour pre 7078.55 6198.24 7078.55 6198.24 +pour_cent pour_cent nom m 0.56 0 0.56 0 +pourboire pourboire nom m s 8.77 8.24 6 5.2 +pourboires pourboire nom m p 8.77 8.24 2.77 3.04 +pourceau pourceau nom m s 0.74 0.95 0.3 0.34 +pourceaux pourceau nom m p 0.74 0.95 0.44 0.61 +pourcent pourcent nom m s 0.45 0 0.35 0 +pourcentage pourcentage nom m s 4.75 2.43 3.83 1.76 +pourcentages pourcentage nom m p 4.75 2.43 0.93 0.68 +pourcents pourcent nom m p 0.45 0 0.1 0 +pourchas pourchas nom m 0 0.27 0 0.27 +pourchassa pourchasser ver 4.66 4.93 0.01 0.34 ind:pas:3s; +pourchassaient pourchasser ver 4.66 4.93 0.08 0.47 ind:imp:3p; +pourchassais pourchasser ver 4.66 4.93 0.07 0.07 ind:imp:1s;ind:imp:2s; +pourchassait pourchasser ver 4.66 4.93 0.14 0.81 ind:imp:3s; +pourchassant pourchasser ver 4.66 4.93 0.14 0.41 par:pre; +pourchasse pourchasser ver 4.66 4.93 0.65 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pourchassent pourchasser ver 4.66 4.93 0.34 0.27 ind:pre:3p; +pourchasser pourchasser ver 4.66 4.93 0.82 0.27 inf; +pourchassera pourchasser ver 4.66 4.93 0.16 0 ind:fut:3s; +pourchasserai pourchasser ver 4.66 4.93 0.02 0 ind:fut:1s; +pourchasseraient pourchasser ver 4.66 4.93 0.02 0 cnd:pre:3p; +pourchasserait pourchasser ver 4.66 4.93 0.03 0 cnd:pre:3s; +pourchasserons pourchasser ver 4.66 4.93 0.02 0 ind:fut:1p; +pourchasseront pourchasser ver 4.66 4.93 0.09 0 ind:fut:3p; +pourchasseur pourchasseur nom m s 0 0.07 0 0.07 +pourchassez pourchasser ver 4.66 4.93 0.31 0 imp:pre:2p;ind:pre:2p; +pourchassons pourchasser ver 4.66 4.93 0.07 0 imp:pre:1p;ind:pre:1p; +pourchassèrent pourchasser ver 4.66 4.93 0 0.07 ind:pas:3p; +pourchassé pourchasser ver m s 4.66 4.93 1.23 0.81 par:pas; +pourchassée pourchasser ver f s 4.66 4.93 0.26 0.2 par:pas; +pourchassées pourchasser ver f p 4.66 4.93 0.01 0.14 par:pas; +pourchassés pourchasser ver m p 4.66 4.93 0.17 0.81 par:pas; +pourcif pourcif nom m s 0 0.07 0 0.07 +pourfendait pourfendre ver 0.1 1.01 0 0.07 ind:imp:3s; +pourfendant pourfendre ver 0.1 1.01 0 0.2 par:pre; +pourfende pourfendre ver 0.1 1.01 0 0.07 sub:pre:3s; +pourfendeur pourfendeur nom m s 0.16 0.14 0.16 0.14 +pourfendions pourfendre ver 0.1 1.01 0 0.07 ind:imp:1p; +pourfendre pourfendre ver 0.1 1.01 0.04 0.54 inf; +pourfends pourfendre ver 0.1 1.01 0.02 0 imp:pre:2s;ind:pre:1s; +pourfendu pourfendre ver m s 0.1 1.01 0.04 0.07 par:pas; +pourim pourim nom m s 0.68 0.27 0.68 0.27 +pourliche pourliche nom m s 0.07 1.76 0.06 0.81 +pourliches pourliche nom m p 0.07 1.76 0.01 0.95 +pourlèche pourlécher ver 0.1 1.35 0.1 0.27 imp:pre:2s;ind:pre:3s; +pourlèchent pourlécher ver 0.1 1.35 0 0.2 ind:pre:3p; +pourléchaient pourlécher ver 0.1 1.35 0 0.2 ind:imp:3p; +pourléchait pourlécher ver 0.1 1.35 0 0.2 ind:imp:3s; +pourléchant pourlécher ver 0.1 1.35 0 0.27 par:pre; +pourlécher pourlécher ver 0.1 1.35 0 0.14 inf; +pourléchée pourlécher ver f s 0.1 1.35 0 0.07 par:pas; +pourparler pourparler nom m s 0.15 0.07 0.15 0.07 +pourparlers pourparlers nom m p 0.96 2.23 0.96 2.23 +pourpier pourpier nom m s 0 0.2 0 0.14 +pourpiers pourpier nom m p 0 0.2 0 0.07 +pourpoint pourpoint nom m s 0.59 1.49 0.59 1.15 +pourpoints pourpoint nom m p 0.59 1.49 0 0.34 +pourpre pourpre adj s 2.25 6.82 1.35 4.73 +pourpres pourpre adj p 2.25 6.82 0.9 2.09 +pourpré pourpré adj m s 0.01 0.14 0.01 0 +pourprée pourpré adj f s 0.01 0.14 0 0.14 +pourprées pourprer ver f p 0 0.14 0 0.07 par:pas; +pourquoi pourquoi con 655.75 297.64 655.75 297.64 +pourra pouvoir ver_sup 5524.47 2659.8 85.18 37.36 ind:fut:3s; +pourrai pouvoir ver_sup 5524.47 2659.8 46.71 23.11 ind:fut:1s; +pourraient pouvoir ver_sup 5524.47 2659.8 32.66 26.62 cnd:pre:3p; +pourrais pouvoir ver_sup 5524.47 2659.8 247.9 64.93 cnd:pre:1s;cnd:pre:2s; +pourrait pouvoir ver_sup 5524.47 2659.8 313.54 159.32 cnd:pre:3s; +pourras pouvoir ver_sup 5524.47 2659.8 44.35 10 ind:fut:2s; +pourrez pouvoir ver_sup 5524.47 2659.8 38.28 11.08 ind:fut:2p; +pourri pourri adj m s 18.09 22.84 9.23 8.18 +pourrie pourri adj f s 18.09 22.84 4.95 6.89 +pourries pourri adj f p 18.09 22.84 1.49 4.39 +pourriez pouvoir ver_sup 5524.47 2659.8 82.51 12.09 cnd:pre:2p; +pourrions pouvoir ver_sup 5524.47 2659.8 24.56 12.23 cnd:pre:1p; +pourrir pourrir ver 22.86 21.89 5.79 5.95 inf; +pourrira pourrir ver 22.86 21.89 0.25 0.27 ind:fut:3s; +pourrirai pourrir ver 22.86 21.89 0.3 0.07 ind:fut:1s; +pourrirait pourrir ver 22.86 21.89 0.03 0.07 cnd:pre:3s; +pourriras pourrir ver 22.86 21.89 0.31 0.07 ind:fut:2s; +pourrirent pourrir ver 22.86 21.89 0 0.2 ind:pas:3p; +pourrirez pourrir ver 22.86 21.89 0.22 0 ind:fut:2p; +pourririez pourrir ver 22.86 21.89 0.14 0 cnd:pre:2p; +pourrirons pourrir ver 22.86 21.89 0.02 0 ind:fut:1p; +pourriront pourrir ver 22.86 21.89 0.17 0.27 ind:fut:3p; +pourris pourri adj m p 18.09 22.84 2.42 3.38 +pourrissaient pourrir ver 22.86 21.89 0 1.49 ind:imp:3p; +pourrissais pourrir ver 22.86 21.89 0.02 0.07 ind:imp:1s; +pourrissait pourrir ver 22.86 21.89 0.18 1.22 ind:imp:3s; +pourrissant pourrissant adj m s 0.26 2.3 0.06 0.81 +pourrissante pourrissant adj f s 0.26 2.3 0.14 0.34 +pourrissantes pourrissant adj f p 0.26 2.3 0.04 0.47 +pourrissants pourrissant adj m p 0.26 2.3 0.02 0.68 +pourrisse pourrir ver 22.86 21.89 1.23 0.2 sub:pre:1s;sub:pre:3s; +pourrissement pourrissement nom m s 0.46 0.88 0.46 0.88 +pourrissent pourrir ver 22.86 21.89 0.84 1.42 ind:pre:3p; +pourrisseur pourrisseur adj m s 0 0.07 0 0.07 +pourrissez pourrir ver 22.86 21.89 0.2 0 imp:pre:2p;ind:pre:2p; +pourrissoir pourrissoir nom m s 0 0.41 0 0.41 +pourrissons pourrir ver 22.86 21.89 0.03 0 imp:pre:1p;ind:pre:1p; +pourrit pourrir ver 22.86 21.89 2.13 1.62 ind:pre:3s;ind:pas:3s; +pourriture pourriture nom f s 4.36 6.89 3.93 6.55 +pourritures pourriture nom f p 4.36 6.89 0.43 0.34 +pourrons pouvoir ver_sup 5524.47 2659.8 15.15 6.08 ind:fut:1p; +pourront pouvoir ver_sup 5524.47 2659.8 12.79 11.35 ind:fut:3p; +poursuis poursuivre ver 64.83 106.42 4.58 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +poursuit poursuivre ver 64.83 106.42 10.56 13.45 ind:pre:3s; +poursuite poursuite nom f s 11.03 15.47 6.92 12.36 +poursuites poursuite nom f p 11.03 15.47 4.11 3.11 +poursuivaient poursuivre ver 64.83 106.42 0.68 5.81 ind:imp:3p; +poursuivais poursuivre ver 64.83 106.42 0.34 0.95 ind:imp:1s;ind:imp:2s; +poursuivait poursuivre ver 64.83 106.42 2.43 15.41 ind:imp:3s; +poursuivant poursuivre ver 64.83 106.42 0.9 5.14 par:pre; +poursuivante poursuivant nom f s 0.74 2.43 0.01 0.07 +poursuivants poursuivant nom m p 0.74 2.43 0.41 1.82 +poursuive poursuivre ver 64.83 106.42 0.63 0.68 sub:pre:1s;sub:pre:3s; +poursuivent poursuivre ver 64.83 106.42 2.77 3.11 ind:pre:3p; +poursuives poursuivre ver 64.83 106.42 0.04 0 sub:pre:2s; +poursuiveurs poursuiveur nom m p 0.01 0 0.01 0 +poursuivez poursuivre ver 64.83 106.42 4.81 0.2 imp:pre:2p;ind:pre:2p; +poursuivi poursuivre ver m s 64.83 106.42 6.88 9.59 par:pas; +poursuivie poursuivre ver f s 64.83 106.42 2.4 2.91 par:pas; +poursuivies poursuivre ver f p 64.83 106.42 0.01 0.47 par:pas; +poursuiviez poursuivre ver 64.83 106.42 0.32 0.07 ind:imp:2p; +poursuivions poursuivre ver 64.83 106.42 0.11 0.68 ind:imp:1p; +poursuivirent poursuivre ver 64.83 106.42 0.26 1.35 ind:pas:3p; +poursuivis poursuivre ver m p 64.83 106.42 1.62 3.65 ind:pas:1s;par:pas; +poursuivit poursuivre ver 64.83 106.42 0.72 15.14 ind:pas:3s; +poursuivons poursuivre ver 64.83 106.42 2.5 0.88 imp:pre:1p;ind:pre:1p; +poursuivra poursuivre ver 64.83 106.42 1.45 0.68 ind:fut:3s; +poursuivrai poursuivre ver 64.83 106.42 1.08 0.2 ind:fut:1s; +poursuivraient poursuivre ver 64.83 106.42 0.17 0.2 cnd:pre:3p; +poursuivrais poursuivre ver 64.83 106.42 0.31 0.34 cnd:pre:1s;cnd:pre:2s; +poursuivrait poursuivre ver 64.83 106.42 0.43 1.08 cnd:pre:3s; +poursuivras poursuivre ver 64.83 106.42 0.07 0 ind:fut:2s; +poursuivre poursuivre ver 64.83 106.42 17.35 22.23 inf;;inf;;inf;; +poursuivrez poursuivre ver 64.83 106.42 0.05 0.07 ind:fut:2p; +poursuivrions poursuivre ver 64.83 106.42 0.01 0.14 cnd:pre:1p; +poursuivrons poursuivre ver 64.83 106.42 0.96 0.14 ind:fut:1p; +poursuivront poursuivre ver 64.83 106.42 0.36 0.07 ind:fut:3p; +poursuivîmes poursuivre ver 64.83 106.42 0.01 0.07 ind:pas:1p; +poursuivît poursuivre ver 64.83 106.42 0 0.14 sub:imp:3s; +pourtant pourtant adv_sup 95.8 375.68 95.8 375.68 +pourtour pourtour nom m s 0.09 2.84 0.09 2.57 +pourtours pourtour nom m p 0.09 2.84 0 0.27 +pourvoi pourvoi nom m s 0.31 0.07 0.31 0 +pourvoie pourvoir ver 21.48 33.78 0.02 0 sub:pre:3s; +pourvoient pourvoir ver 21.48 33.78 0.15 0.07 ind:pre:3p; +pourvoir pourvoir ver 21.48 33.78 1.25 2.57 inf; +pourvoira pourvoir ver 21.48 33.78 0.32 0.14 ind:fut:3s; +pourvoirai pourvoir ver 21.48 33.78 0.14 0 ind:fut:1s; +pourvoiraient pourvoir ver 21.48 33.78 0 0.07 cnd:pre:3p; +pourvoirait pourvoir ver 21.48 33.78 0.04 0.07 cnd:pre:3s; +pourvoirons pourvoir ver 21.48 33.78 0 0.07 ind:fut:1p; +pourvoiront pourvoir ver 21.48 33.78 0.01 0.07 ind:fut:3p; +pourvois pourvoir ver 21.48 33.78 0.04 0 ind:pre:1s;ind:pre:2s; +pourvoit pourvoir ver 21.48 33.78 0.45 0.14 ind:pre:3s; +pourvoyaient pourvoir ver 21.48 33.78 0.1 0.14 ind:imp:3p; +pourvoyait pourvoir ver 21.48 33.78 0.01 0.34 ind:imp:3s; +pourvoyant pourvoir ver 21.48 33.78 0.01 0.07 par:pre; +pourvoyeur pourvoyeur nom m s 0.52 1.35 0.47 0.74 +pourvoyeurs pourvoyeur nom m p 0.52 1.35 0.04 0.41 +pourvoyeuse pourvoyeur nom f s 0.52 1.35 0.01 0.2 +pourvoyons pourvoir ver 21.48 33.78 0.01 0 ind:pre:1p; +pourvu pourvoir ver m s 21.48 33.78 18.5 24.59 par:pas; +pourvue pourvoir ver f s 21.48 33.78 0.24 1.89 par:pas; +pourvues pourvoir ver f p 21.48 33.78 0.02 1.15 par:pas; +pourvus pourvoir ver m p 21.48 33.78 0.18 2.3 par:pas; +pourvut pourvoir ver 21.48 33.78 0 0.14 ind:pas:3s; +poussa pousser ver 125.61 288.92 0.98 37.64 ind:pas:3s; +poussah poussah nom m s 0 0.27 0 0.27 +poussai pousser ver 125.61 288.92 0.02 4.26 ind:pas:1s; +poussaient pousser ver 125.61 288.92 0.45 12.91 ind:imp:3p; +poussais pousser ver 125.61 288.92 0.46 2.3 ind:imp:1s;ind:imp:2s; +poussait pousser ver 125.61 288.92 2.59 33.78 ind:imp:3s; +poussant pousser ver 125.61 288.92 1.83 30.61 par:pre; +poussas pousser ver 125.61 288.92 0 0.07 ind:pas:2s; +pousse pousser ver 125.61 288.92 29.6 41.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +pousse_au_crime pousse_au_crime nom m 0.02 0.07 0.02 0.07 +pousse_café pousse_café nom m 0.13 0.68 0.13 0.68 +pousse_cailloux pousse_cailloux nom m s 0 0.07 0 0.07 +pousse_pousse pousse_pousse nom m 1.43 0.41 1.43 0.41 +poussent pousser ver 125.61 288.92 5.17 10 ind:pre:3p;sub:pre:3p; +pousser pousser ver 125.61 288.92 27.51 45.68 inf; +poussera pousser ver 125.61 288.92 1.25 1.01 ind:fut:3s; +pousserai pousser ver 125.61 288.92 0.5 0.2 ind:fut:1s; +pousseraient pousser ver 125.61 288.92 0.19 0.68 cnd:pre:3p; +pousserais pousser ver 125.61 288.92 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +pousserait pousser ver 125.61 288.92 0.35 2.09 cnd:pre:3s; +pousseras pousser ver 125.61 288.92 0.04 0.14 ind:fut:2s; +pousserez pousser ver 125.61 288.92 0.04 0.07 ind:fut:2p; +pousseriez pousser ver 125.61 288.92 0.02 0 cnd:pre:2p; +pousserions pousser ver 125.61 288.92 0.01 0.07 cnd:pre:1p; +pousserons pousser ver 125.61 288.92 0.09 0 ind:fut:1p; +pousseront pousser ver 125.61 288.92 0.36 0.14 ind:fut:3p; +pousses pousser ver 125.61 288.92 5.63 1.35 ind:pre:2s; +poussette poussette nom f s 1.96 2.43 1.83 1.96 +poussettes poussette nom f p 1.96 2.43 0.13 0.47 +pousseur pousseur nom m s 0.04 0.34 0.02 0.2 +pousseurs pousseur nom m p 0.04 0.34 0.02 0.14 +poussez pousser ver 125.61 288.92 21.6 1.69 imp:pre:2p;ind:pre:2p; +poussier poussier nom m s 0 0.81 0 0.81 +poussiez pousser ver 125.61 288.92 0.1 0.07 ind:imp:2p; +poussif poussif adj m s 0.13 3.58 0.02 1.55 +poussifs poussif adj m p 0.13 3.58 0 0.95 +poussin poussin nom m s 7.5 3.04 5.81 1.55 +poussine poussine nom f s 0 0.07 0 0.07 +poussinière poussinière nom f s 0 0.07 0 0.07 +poussins poussin nom m p 7.5 3.04 1.69 1.49 +poussions pousser ver 125.61 288.92 0.19 0.61 ind:imp:1p; +poussive poussif adj f s 0.13 3.58 0.1 0.88 +poussivement poussivement adv 0 0.14 0 0.14 +poussives poussif adj f p 0.13 3.58 0.01 0.2 +poussière poussière nom f s 24.4 78.45 22.77 73.38 +poussières poussière nom f p 24.4 78.45 1.63 5.07 +poussiéreuse poussiéreux adj f s 2.02 16.55 0.76 4.53 +poussiéreuses poussiéreux adj f p 2.02 16.55 0.14 3.24 +poussiéreux poussiéreux adj m 2.02 16.55 1.12 8.78 +poussoir poussoir nom m s 0.02 0.07 0.02 0.07 +poussons pousser ver 125.61 288.92 0.67 0.41 imp:pre:1p;ind:pre:1p; +poussâmes pousser ver 125.61 288.92 0 0.41 ind:pas:1p; +poussât pousser ver 125.61 288.92 0 0.68 sub:imp:3s; +poussèrent pousser ver 125.61 288.92 0.24 3.85 ind:pas:3p; +poussé pousser ver m s 125.61 288.92 18.46 42.03 par:pas; +poussée pousser ver f s 125.61 288.92 4.63 8.24 par:pas; +poussées pousser ver f p 125.61 288.92 0.43 1.15 par:pas; +poussés pousser ver m p 125.61 288.92 1.92 4.93 par:pas; +poutargue poutargue nom f s 0 0.07 0 0.07 +poutine poutine adj f s 0.06 0 0.06 0 +poutou poutou nom m s 0.06 0.34 0.06 0.34 +poutrages poutrage nom m p 0 0.07 0 0.07 +poutraison poutraison nom f s 0 0.14 0 0.14 +poutre poutre nom f s 2.04 15.74 1.38 5.34 +poutrelle poutrelle nom f s 0.3 2.03 0.06 0.41 +poutrelles poutrelle nom f p 0.3 2.03 0.24 1.62 +poutres poutre nom f p 2.04 15.74 0.66 10.41 +pouvaient pouvoir ver_sup 5524.47 2659.8 15.5 67.16 ind:imp:3p; +pouvais pouvoir ver_sup 5524.47 2659.8 122.61 113.24 ind:imp:1s;ind:imp:2s; +pouvait pouvoir ver_sup 5524.47 2659.8 108.02 445 ind:imp:3s; +pouvant pouvoir ver_sup 5524.47 2659.8 4.43 18.65 par:pre; +pouvez pouvoir ver_sup 5524.47 2659.8 353.43 53.11 ind:pre:2p; +pouviez pouvoir ver_sup 5524.47 2659.8 17.64 4.59 ind:imp:2p; +pouvions pouvoir ver_sup 5524.47 2659.8 6.86 14.73 ind:imp:1p; +pouvoir pouvoir ver_sup 5524.47 2659.8 134.56 114.39 inf; +pouvoirs pouvoir nom_sup m p 117.87 107.91 28.36 21.42 +pouvons pouvoir ver_sup 5524.47 2659.8 82.09 21.01 ind:pre:1p; +poux pou nom m p 10.41 8.51 8.49 7.09 +pouzzolane pouzzolane nom f s 0 0.14 0 0.14 +poème poème nom m s 27.03 31.22 15.98 15.95 +poèmes poème nom m p 27.03 31.22 11.05 15.27 +poète poète nom m s 22.65 35.95 16.98 23.45 +poètes poète nom m p 22.65 35.95 5.17 11.55 +poésie poésie nom f s 19.07 21.89 17.56 19.86 +poésies poésie nom f p 19.07 21.89 1.52 2.03 +poétesse poète nom f s 22.65 35.95 0.48 0.95 +poétesses poète nom f p 22.65 35.95 0.02 0 +poéticien poéticien nom m s 0 0.07 0 0.07 +poétique poétique adj s 2.6 8.11 2.34 6.15 +poétiquement poétiquement adv 0.04 0.47 0.04 0.47 +poétiques poétique adj p 2.6 8.11 0.26 1.96 +poétisait poétiser ver 0 0.41 0 0.07 ind:imp:3s; +poétisant poétiser ver 0 0.41 0 0.07 par:pre; +poétise poétiser ver 0 0.41 0 0.14 imp:pre:2s;ind:pre:3s; +poétiser poétiser ver 0 0.41 0 0.07 inf; +poétisez poétiser ver 0 0.41 0 0.07 imp:pre:2p; +poêle poêle nom s 5.12 19.93 4.58 17.84 +poêles poêle nom p 5.12 19.93 0.55 2.09 +poêlon poêlon nom m s 0.16 0.41 0.16 0.41 +poêlées poêler ver f p 0.1 0.14 0.1 0.07 par:pas; +practice practice nom m s 0.15 0 0.15 0 +pradelle pradelle nom f s 0 6.08 0 6.08 +praesidium praesidium nom m s 0.1 0.14 0.1 0.14 +pragmatique pragmatique adj s 0.51 0.41 0.43 0.34 +pragmatiquement pragmatiquement adv 0.01 0 0.01 0 +pragmatiques pragmatique adj f p 0.51 0.41 0.08 0.07 +pragmatisme pragmatisme nom m s 0.24 0.27 0.24 0.27 +pragmatiste pragmatiste nom s 0.01 0.07 0.01 0.07 +praire praire nom f s 0.13 0.2 0.01 0.07 +praires praire nom f p 0.13 0.2 0.12 0.14 +prairial prairial nom m s 0 0.2 0 0.2 +prairie prairie nom f s 3.44 19.66 2.38 9.8 +prairies prairie nom f p 3.44 19.66 1.06 9.86 +praline praline nom f s 0.87 1.76 0.41 0.47 +pralines praline nom f p 0.87 1.76 0.46 1.28 +praliné praliné adj m s 0.05 0.2 0.05 0.07 +pralinés praliné adj m p 0.05 0.2 0 0.14 +prang prang nom m s 0.11 0.07 0.11 0.07 +praticable praticable adj s 0.48 1.28 0.3 1.01 +praticables praticable adj p 0.48 1.28 0.18 0.27 +praticien praticien nom m s 0.57 1.76 0.3 1.35 +praticienne praticien nom f s 0.57 1.76 0 0.14 +praticiens praticien nom m p 0.57 1.76 0.26 0.27 +pratiqua pratiquer ver 13.87 24.59 0.02 0.34 ind:pas:3s; +pratiquai pratiquer ver 13.87 24.59 0 0.07 ind:pas:1s; +pratiquaient pratiquer ver 13.87 24.59 0.64 1.42 ind:imp:3p; +pratiquais pratiquer ver 13.87 24.59 0.11 0.61 ind:imp:1s; +pratiquait pratiquer ver 13.87 24.59 0.34 3.65 ind:imp:3s; +pratiquant pratiquant adj m s 0.75 0.88 0.56 0.54 +pratiquante pratiquant adj f s 0.75 0.88 0.13 0.34 +pratiquants pratiquant nom m p 0.22 0.34 0.09 0.07 +pratique pratique adj s 13.18 16.69 11 10.54 +pratiquement pratiquement adv 14.68 17.03 14.68 17.03 +pratiquent pratiquer ver 13.87 24.59 1.22 0.95 ind:pre:3p; +pratiquer pratiquer ver 13.87 24.59 3.65 4.53 inf; +pratiquera pratiquer ver 13.87 24.59 0.02 0.07 ind:fut:3s; +pratiquerai pratiquer ver 13.87 24.59 0.04 0 ind:fut:1s; +pratiquerais pratiquer ver 13.87 24.59 0 0.07 cnd:pre:1s; +pratiquerait pratiquer ver 13.87 24.59 0 0.07 cnd:pre:3s; +pratiquerons pratiquer ver 13.87 24.59 0.03 0 ind:fut:1p; +pratiques pratique nom p 10.15 15 2.55 3.58 +pratiquez pratiquer ver 13.87 24.59 0.89 0.47 imp:pre:2p;ind:pre:2p; +pratiquiez pratiquer ver 13.87 24.59 0.03 0.14 ind:imp:2p; +pratiquions pratiquer ver 13.87 24.59 0.02 0.14 ind:imp:1p; +pratiquons pratiquer ver 13.87 24.59 0.25 0.14 imp:pre:1p;ind:pre:1p; +pratiquât pratiquer ver 13.87 24.59 0 0.07 sub:imp:3s; +pratiquèrent pratiquer ver 13.87 24.59 0 0.07 ind:pas:3p; +pratiqué pratiquer ver m s 13.87 24.59 1.87 3.31 par:pas; +pratiquée pratiquer ver f s 13.87 24.59 0.54 1.76 par:pas; +pratiquées pratiquer ver f p 13.87 24.59 0.19 0.88 par:pas; +pratiqués pratiquer ver m p 13.87 24.59 0.12 0.81 par:pas; +praxie praxie nom f s 0.1 0 0.1 0 +premier premier adj m s 376.98 672.57 146.12 237.91 +premier_maître premier_maître nom m s 0.16 0 0.16 0 +premier_né premier_né nom m s 0.91 0.2 0.77 0.14 +premiers premier adj m p 376.98 672.57 19.36 77.7 +premier_né premier_né nom m p 0.91 0.2 0.14 0.07 +premium premium nom m s 0.05 0 0.05 0 +première premier adj f s 376.98 672.57 197.34 296.76 +première_née première_née nom f s 0.11 0 0.11 0 +premièrement premièrement adv 5.51 1.76 5.51 1.76 +premières premier adj f p 376.98 672.57 14.16 60.2 +prenable prenable adj m s 0.01 0.14 0.01 0 +prenables prenable adj f p 0.01 0.14 0 0.14 +prenaient prendre ver 1913.83 1466.42 3.31 30.68 ind:imp:3p; +prenais prendre ver 1913.83 1466.42 10.15 19.53 ind:imp:1s;ind:imp:2s; +prenait prendre ver 1913.83 1466.42 18.66 113.92 ind:imp:3s; +prenant prendre ver 1913.83 1466.42 6.62 48.04 par:pre; +prenante prenant adj f s 1.59 3.18 0.41 0.88 +prenantes prenant adj f p 1.59 3.18 0.02 0.34 +prenants prenant adj m p 1.59 3.18 0.02 0.07 +prend prendre ver 1913.83 1466.42 179.02 129.05 ind:pre:3s; +prendra prendre ver 1913.83 1466.42 37.82 9.66 ind:fut:3s; +prendrai prendre ver 1913.83 1466.42 27.68 5.14 ind:fut:1s; +prendraient prendre ver 1913.83 1466.42 1.24 2.57 cnd:pre:3p; +prendrais prendre ver 1913.83 1466.42 11.04 3.58 cnd:pre:1s;cnd:pre:2s; +prendrait prendre ver 1913.83 1466.42 7.91 14.8 cnd:pre:3s; +prendras prendre ver 1913.83 1466.42 7.86 2.5 ind:fut:2s; +prendre prendre ver 1913.83 1466.42 465.77 344.05 inf;;inf;;inf;; +prendrez prendre ver 1913.83 1466.42 8.49 2.64 ind:fut:2p; +prendriez prendre ver 1913.83 1466.42 1.36 0.74 cnd:pre:2p; +prendrions prendre ver 1913.83 1466.42 0.16 0.27 cnd:pre:1p; +prendrons prendre ver 1913.83 1466.42 6.12 1.49 ind:fut:1p; +prendront prendre ver 1913.83 1466.42 4.47 3.72 ind:fut:3p; +prends prendre ver 1913.83 1466.42 431.5 70.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +preneur preneur nom m s 2.21 1.62 1.97 1.42 +preneurs preneur nom m p 2.21 1.62 0.22 0.14 +preneuse preneur nom f s 2.21 1.62 0.03 0.07 +prenez prendre ver 1913.83 1466.42 175.12 25.47 imp:pre:2p;ind:pre:2p; +preniez prendre ver 1913.83 1466.42 3.58 1.62 ind:imp:2p; +prenions prendre ver 1913.83 1466.42 1.4 4.66 ind:imp:1p; +prenne prendre ver 1913.83 1466.42 21.02 16.08 sub:pre:1s;sub:pre:3s; +prennent prendre ver 1913.83 1466.42 27.9 29.12 ind:pre:3p; +prennes prendre ver 1913.83 1466.42 5.01 2.03 sub:pre:2s; +prenons prendre ver 1913.83 1466.42 20.8 7.03 imp:pre:1p;ind:pre:1p; +presbyte presbyte adj s 0.19 0.14 0.19 0.14 +presbyterium presbyterium nom m s 0 0.07 0 0.07 +presbytie presbytie nom f s 0 0.34 0 0.34 +presbytère presbytère nom m s 1.07 3.51 1.07 3.51 +presbytérien presbytérien adj m s 0.23 0.2 0.12 0.07 +presbytérienne presbytérien adj f s 0.23 0.2 0.11 0.07 +presbytériennes presbytérien adj f p 0.23 0.2 0 0.07 +prescience prescience nom f s 0.04 1.01 0.04 1.01 +presciente prescient adj f s 0.01 0 0.01 0 +prescription prescription nom f s 2.24 2.5 1.77 1.28 +prescriptions prescription nom f p 2.24 2.5 0.47 1.22 +prescrirait prescrire ver 8.7 12.3 0.01 0.07 cnd:pre:3s; +prescrire prescrire ver 8.7 12.3 1.72 1.62 inf; +prescris prescrire ver 8.7 12.3 0.84 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prescrit prescrire ver m s 8.7 12.3 4.49 4.12 ind:pre:3s;par:pas; +prescrite prescrire ver f s 8.7 12.3 0.34 1.01 par:pas; +prescrites prescrire ver f p 8.7 12.3 0.58 0.68 par:pas; +prescrits prescrire ver m p 8.7 12.3 0.38 0.41 par:pas; +prescrivaient prescrire ver 8.7 12.3 0 0.2 ind:imp:3p; +prescrivais prescrire ver 8.7 12.3 0 0.34 ind:imp:1s; +prescrivait prescrire ver 8.7 12.3 0.01 1.01 ind:imp:3s; +prescrivant prescrire ver 8.7 12.3 0.01 0.54 par:pre; +prescrive prescrire ver 8.7 12.3 0.17 0.07 sub:pre:1s;sub:pre:3s; +prescrivent prescrire ver 8.7 12.3 0.07 0.2 ind:pre:3p; +prescrivez prescrire ver 8.7 12.3 0.09 0 imp:pre:2p;ind:pre:2p; +prescrivis prescrire ver 8.7 12.3 0 0.41 ind:pas:1s; +prescrivit prescrire ver 8.7 12.3 0 0.74 ind:pas:3s; +presqu_île presqu_île nom f s 0.16 1.49 0.16 1.35 +presqu_île presqu_île nom f p 0.16 1.49 0 0.14 +presque presque adv_sup 181.81 465.54 181.81 465.54 +press_book press_book nom m s 0.03 0 0.03 0 +pressa presser ver 52.28 71.01 0.03 6.35 ind:pas:3s; +pressage pressage nom m s 0.07 0 0.07 0 +pressai presser ver 52.28 71.01 0.02 0.74 ind:pas:1s; +pressaient presser ver 52.28 71.01 0.06 5.68 ind:imp:3p; +pressais presser ver 52.28 71.01 0.13 1.22 ind:imp:1s;ind:imp:2s; +pressait presser ver 52.28 71.01 0.47 10.61 ind:imp:3s; +pressant pressant adj m s 2.09 7.7 0.97 2.5 +pressante pressant adj f s 2.09 7.7 0.72 3.72 +pressantes pressant adj f p 2.09 7.7 0.04 1.22 +pressants pressant adj m p 2.09 7.7 0.36 0.27 +presse presse nom f s 45.77 41.82 45.1 40.68 +presse_agrumes presse_agrumes nom m 0.04 0 0.04 0 +presse_bouton presse_bouton adj f s 0.04 0.07 0.04 0.07 +presse_citron presse_citron nom m s 0.02 0 0.02 0 +presse_fruits presse_fruits nom m 0.07 0 0.07 0 +presse_papier presse_papier nom m s 0.16 0.27 0.16 0.27 +presse_papiers presse_papiers nom m 0.24 0.47 0.24 0.47 +presse_purée presse_purée nom m 0.04 0.41 0.04 0.41 +presse_raquette presse_raquette nom m s 0 0.07 0 0.07 +pressement pressement nom m s 0.01 0.34 0.01 0.2 +pressements pressement nom m p 0.01 0.34 0 0.14 +pressens pressentir ver 2.18 19.12 0.28 1.15 ind:pre:1s;ind:pre:2s; +pressent pressentir ver 2.18 19.12 0.63 3.45 ind:pre:3s; +pressentaient pressentir ver 2.18 19.12 0 0.34 ind:imp:3p; +pressentais pressentir ver 2.18 19.12 0.12 2.43 ind:imp:1s;ind:imp:2s; +pressentait pressentir ver 2.18 19.12 0.15 3.18 ind:imp:3s; +pressentant pressentir ver 2.18 19.12 0 1.96 par:pre; +pressentent pressentir ver 2.18 19.12 0.04 0.2 ind:pre:3p; +pressentez pressentir ver 2.18 19.12 0.06 0 ind:pre:2p; +pressenti pressentir ver m s 2.18 19.12 0.68 2.09 par:pas; +pressentie pressentir ver f s 2.18 19.12 0.01 0.41 par:pas; +pressenties pressenti adj f p 0.01 1.01 0 0.07 +pressentiez pressentir ver 2.18 19.12 0.04 0 ind:imp:2p; +pressentiment pressentiment nom m s 8.34 8.72 7.17 6.76 +pressentiments pressentiment nom m p 8.34 8.72 1.17 1.96 +pressentions pressentir ver 2.18 19.12 0 0.2 ind:imp:1p; +pressentir pressentir ver 2.18 19.12 0.14 2.7 inf; +pressentirez pressentir ver 2.18 19.12 0 0.07 ind:fut:2p; +pressentis pressentir ver m p 2.18 19.12 0.03 0.27 ind:pas:1s;par:pas; +pressentit pressentir ver 2.18 19.12 0 0.47 ind:pas:3s; +pressentons pressentir ver 2.18 19.12 0.01 0 imp:pre:1p; +pressentîmes pressentir ver 2.18 19.12 0 0.14 ind:pas:1p; +pressentît pressentir ver 2.18 19.12 0 0.07 sub:imp:3s; +presser presser ver 52.28 71.01 5.64 12.43 inf; +pressera presser ver 52.28 71.01 0.03 0.07 ind:fut:3s; +presserai presser ver 52.28 71.01 0.16 0 ind:fut:1s; +presseraient presser ver 52.28 71.01 0 0.07 cnd:pre:3p; +presserait presser ver 52.28 71.01 0.11 0.07 cnd:pre:3s; +presseront presser ver 52.28 71.01 0 0.07 ind:fut:3p; +presses presse nom f p 45.77 41.82 0.67 1.15 +presseur presseur adj m s 0.01 0.14 0.01 0.14 +pressez presser ver 52.28 71.01 2.46 0.54 imp:pre:2p;ind:pre:2p; +pressiez presser ver 52.28 71.01 0.01 0 ind:imp:2p; +pressing pressing nom m s 2.63 0.81 2.52 0.74 +pressings pressing nom m p 2.63 0.81 0.1 0.07 +pression pression nom f s 37.28 21.76 35.33 19.05 +pressionnée pressionné adj f s 0 0.07 0 0.07 +pressions pression nom f p 37.28 21.76 1.96 2.7 +pressoir pressoir nom m s 0.19 1.15 0.17 0.95 +pressoirs pressoir nom m p 0.19 1.15 0.01 0.2 +pressons presser ver 52.28 71.01 2.02 1.89 imp:pre:1p;ind:pre:1p; +pressurant pressurer ver 0.28 0.61 0 0.07 par:pre; +pressure pressurer ver 0.28 0.61 0.17 0.2 imp:pre:2s;ind:pre:3s; +pressurer pressurer ver 0.28 0.61 0.06 0.2 inf; +pressures pressurer ver 0.28 0.61 0.03 0 ind:pre:2s; +pressurisation pressurisation nom f s 0.38 0 0.38 0 +pressuriser pressuriser ver 0.17 0.07 0.02 0 inf; +pressurisez pressuriser ver 0.17 0.07 0.02 0 imp:pre:2p; +pressurisé pressurisé adj m s 0.6 0 0.14 0 +pressurisée pressurisé adj f s 0.6 0 0.27 0 +pressurisées pressuriser ver f p 0.17 0.07 0 0.07 par:pas; +pressurisés pressurisé adj m p 0.6 0 0.19 0 +pressurée pressurer ver f s 0.28 0.61 0 0.07 par:pas; +pressurés pressurer ver m p 0.28 0.61 0.02 0.07 par:pas; +pressât presser ver 52.28 71.01 0 0.14 sub:imp:3s; +pressèrent presser ver 52.28 71.01 0.01 0.54 ind:pas:3p; +pressé presser ver m s 52.28 71.01 17.12 12.23 par:pas; +pressée pressé adj f s 25.09 31.42 11.26 8.58 +pressées pressé adj f p 25.09 31.42 0.62 3.18 +pressés presser ver m p 52.28 71.01 4.45 4.32 par:pas; +prestance prestance nom f s 0.27 2.3 0.27 2.3 +prestataire prestataire nom s 0.34 0.07 0.12 0 +prestataires prestataire nom p 0.34 0.07 0.22 0.07 +prestation prestation nom f s 1.95 2.3 1.58 1.28 +prestations prestation nom f p 1.95 2.3 0.37 1.01 +preste preste adj s 0.04 2.5 0.04 1.55 +prestement prestement adv 0.09 4.05 0.09 4.05 +prestes preste adj p 0.04 2.5 0 0.95 +prestesse prestesse nom f s 0 0.61 0 0.61 +prestidigitateur prestidigitateur nom m s 0.51 1.89 0.48 1.55 +prestidigitateurs prestidigitateur nom m p 0.51 1.89 0 0.27 +prestidigitation prestidigitation nom f s 0.1 0.41 0.1 0.34 +prestidigitations prestidigitation nom f p 0.1 0.41 0 0.07 +prestidigitatrice prestidigitateur nom f s 0.51 1.89 0.02 0.07 +prestige prestige nom m s 2.54 16.96 2.54 14.73 +prestiges prestige nom m p 2.54 16.96 0 2.23 +prestigieuse prestigieux adj f s 2.03 6.35 0.65 1.22 +prestigieuses prestigieux adj f p 2.03 6.35 0.11 0.41 +prestigieux prestigieux adj m 2.03 6.35 1.27 4.73 +presto presto adv 1.18 1.22 1.18 1.22 +preuve preuve nom f s 107.54 65.34 60.79 50.54 +preuves preuve nom f p 107.54 65.34 46.75 14.8 +preux preux adj m 0.88 0.54 0.88 0.54 +pria prier ver 313.12 105.74 0.52 6.15 ind:pas:3s; +priai prier ver 313.12 105.74 0.2 1.76 ind:pas:1s; +priaient prier ver 313.12 105.74 0.34 1.01 ind:imp:3p; +priais prier ver 313.12 105.74 1.16 1.08 ind:imp:1s;ind:imp:2s; +priait prier ver 313.12 105.74 1.34 7.36 ind:imp:3s; +priant prier ver 313.12 105.74 1.61 3.31 par:pre; +priapique priapique adj m s 0 0.61 0 0.41 +priapiques priapique adj f p 0 0.61 0 0.2 +priapisme priapisme nom m s 0.17 0.14 0.17 0.14 +priasse prier ver 313.12 105.74 0 0.07 sub:imp:1s; +prie prier ver 313.12 105.74 247.29 44.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +prie_dieu prie_dieu nom m 0.01 2.64 0.01 2.64 +prient prier ver 313.12 105.74 1.52 1.55 ind:pre:3p; +prier prier ver 313.12 105.74 25.46 21.62 inf; +priera prier ver 313.12 105.74 0.29 0.07 ind:fut:3s; +prierai prier ver 313.12 105.74 2.83 1.22 ind:fut:1s; +prieraient prier ver 313.12 105.74 0 0.07 cnd:pre:3p; +prierais prier ver 313.12 105.74 0.38 0.2 cnd:pre:1s; +prierait prier ver 313.12 105.74 0.16 0.41 cnd:pre:3s; +prieras prier ver 313.12 105.74 0.51 0.34 ind:fut:2s; +prierez prier ver 313.12 105.74 0.07 0.07 ind:fut:2p; +prierons prier ver 313.12 105.74 0.42 0.14 ind:fut:1p; +prieront prier ver 313.12 105.74 0.14 0.07 ind:fut:3p; +pries prier ver 313.12 105.74 2.06 0.74 ind:pre:2s; +prieur prieur adj m s 0.38 0.95 0.38 0.95 +prieure prieur nom f s 0.29 8.85 0 0.14 +prieurs prieur nom m p 0.29 8.85 0 0.07 +prieuré prieuré nom m s 0.22 0.68 0.22 0.61 +prieurés prieuré nom m p 0.22 0.68 0 0.07 +priez prier ver 313.12 105.74 9.13 1.76 imp:pre:2p;ind:pre:2p; +priions prier ver 313.12 105.74 0 0.27 ind:imp:1p; +prima primer ver 2.01 2.09 0.83 0.74 ind:pas:3s; +primaire primaire adj s 4.95 5.54 3.98 4.26 +primaires primaire adj p 4.95 5.54 0.97 1.28 +primait primer ver 2.01 2.09 0.02 0.41 ind:imp:3s; +primal primal adj m s 0.29 0.07 0.11 0 +primale primal adj f s 0.29 0.07 0.18 0.07 +primant primer ver 2.01 2.09 0.01 0.07 par:pre; +primat primat nom m s 0.09 0.34 0.09 0.34 +primate primate nom m s 1.29 1.62 0.72 0.61 +primates primate nom m p 1.29 1.62 0.57 1.01 +primatologue primatologue nom s 0.01 0 0.01 0 +primauté primauté nom f s 0.01 0.95 0.01 0.95 +prime prime nom f s 17.79 8.11 10.63 7.09 +prime_time prime_time nom m 0.41 0 0.41 0 +prime_saut prime_saut nom s 0 0.07 0 0.07 +priment primer ver 2.01 2.09 0.16 0.2 ind:pre:3p; +primer primer ver 2.01 2.09 0.15 0.07 inf; +primerait primer ver 2.01 2.09 0 0.07 cnd:pre:3s; +primerose primerose nom f s 0.01 0.07 0.01 0.07 +primes prime nom f p 17.79 8.11 7.17 1.01 +primesautier primesautier adj m s 0 0.95 0 0.27 +primesautiers primesautier adj m p 0 0.95 0 0.07 +primesautière primesautier adj f s 0 0.95 0 0.61 +primeur primeur nom f s 0.2 1.96 0.16 1.01 +primeurs primeur nom f p 0.2 1.96 0.04 0.95 +primevère primevère nom f s 0.06 1.01 0.01 0.14 +primevères primevère nom f p 0.06 1.01 0.05 0.88 +primidi primidi nom m s 0 0.07 0 0.07 +primitif primitif adj m s 7 10.2 2.84 3.31 +primitifs primitif adj m p 7 10.2 0.87 1.28 +primitive primitif adj f s 7 10.2 2.08 4.59 +primitivement primitivement adv 0.02 0.54 0.02 0.54 +primitives primitif adj f p 7 10.2 1.22 1.01 +primitivisme primitivisme nom m s 0.1 0.14 0.1 0.14 +primo primo adv_sup 4.1 2.16 4.1 2.16 +primo_infection primo_infection nom f s 0 0.07 0 0.07 +primordial primordial adj m s 2.39 2.97 1.52 0.88 +primordiale primordial adj f s 2.39 2.97 0.63 1.82 +primordialement primordialement adv 0 0.41 0 0.41 +primordiales primordial adj f p 2.39 2.97 0.18 0 +primordiaux primordial adj m p 2.39 2.97 0.06 0.27 +primé primé adj m s 0.14 0.07 0.09 0 +primée primer ver f s 2.01 2.09 0.05 0.07 par:pas; +primées primer ver f p 2.01 2.09 0.02 0 par:pas; +primés primé adj m p 0.14 0.07 0.03 0 +prin prin nom m s 0.1 0.14 0.1 0.14 +prince prince nom m s 98.9 101.22 44.83 65.61 +prince_de_galles prince_de_galles nom m 0 0.27 0 0.27 +prince_évêque prince_évêque nom m s 0 0.14 0 0.14 +princeps princeps adj f p 0 0.07 0 0.07 +princes prince nom m p 98.9 101.22 5.29 11.08 +princesse prince nom f s 98.9 101.22 46.31 21.01 +princesses prince nom f p 98.9 101.22 2.48 3.51 +princier princier adj m s 0.59 3.65 0.22 1.08 +princiers princier adj m p 0.59 3.65 0.02 0.74 +principal principal adj m s 36.68 38.92 17.53 15.81 +principale principal adj f s 36.68 38.92 10.68 12.3 +principalement principalement adv 3.6 6.08 3.6 6.08 +principales principal adj f p 36.68 38.92 3.35 3.65 +principat principat nom m s 0 0.34 0 0.34 +principauté principauté nom f s 0.25 1.01 0.2 0.81 +principautés principauté nom f p 0.25 1.01 0.05 0.2 +principaux principal adj m p 36.68 38.92 5.12 7.16 +principe principe nom m s 26.36 47.57 15.62 30.88 +principes principe nom m p 26.36 47.57 10.75 16.69 +princière princier adj f s 0.59 3.65 0.35 1.28 +princièrement princièrement adv 0.11 0.2 0.11 0.2 +princières princier adj f p 0.59 3.65 0 0.54 +printanier printanier adj m s 0.66 4.32 0.33 1.89 +printaniers printanier adj m p 0.66 4.32 0.11 0.81 +printanière printanier adj f s 0.66 4.32 0.21 1.35 +printanières printanier adj f p 0.66 4.32 0.02 0.27 +printemps printemps nom m 27.85 60.88 27.85 60.88 +prion prion nom m s 3.11 0.54 0.43 0 +prions prier ver 313.12 105.74 6.14 1.49 imp:pre:1p;ind:pre:1p; +prioritaire prioritaire adj s 3.07 0.54 2.43 0.34 +prioritaires prioritaire adj p 3.07 0.54 0.64 0.2 +priorité priorité nom f s 12.15 4.8 8.84 4.53 +priorités priorité nom f p 12.15 4.8 3.31 0.27 +prirent prendre ver 1913.83 1466.42 0.8 15.2 ind:pas:3p; +pris prendre ver m 1913.83 1466.42 374.6 333.04 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +prisa priser ver 2.59 5.2 0.02 0.07 ind:pas:3s; +prisaient priser ver 2.59 5.2 0 0.14 ind:imp:3p; +prisait priser ver 2.59 5.2 0.1 0.61 ind:imp:3s; +prisant priser ver 2.59 5.2 0 0.07 par:pre; +prise prendre ver f s 1913.83 1466.42 38.26 42.64 par:pas; +prisent priser ver 2.59 5.2 0.14 0.14 ind:pre:3p; +priser priser ver 2.59 5.2 0.06 0.81 inf; +prises prendre ver f p 1913.83 1466.42 8.42 12.16 par:pas; +priseur priseur nom m s 0.01 0.14 0.01 0.07 +priseurs priseur nom m p 0.01 0.14 0 0.07 +prisez priser ver 2.59 5.2 0 0.07 imp:pre:2p; +prismatique prismatique adj m s 0.02 0.07 0.02 0 +prismatiques prismatique adj f p 0.02 0.07 0 0.07 +prisme prisme nom m s 0.11 1.42 0.1 0.88 +prismes prisme nom m p 0.11 1.42 0.01 0.54 +prison prison nom f s 147.49 72.43 142.97 64.66 +prisonnier prisonnier nom m s 38.06 40 16.97 11.69 +prisonniers prisonnier nom m p 38.06 40 19.55 26.42 +prisonnière prisonnier adj f s 19.64 29.46 3.4 4.73 +prisonnières prisonnier adj f p 19.64 29.46 0.65 1.22 +prisons prison nom f p 147.49 72.43 4.52 7.77 +prisons_école prisons_école nom f p 0 0.07 0 0.07 +prisse prendre ver 1913.83 1466.42 0.01 0.14 sub:imp:1s; +prissent prendre ver 1913.83 1466.42 0 0.61 sub:imp:3p; +prissions prendre ver 1913.83 1466.42 0 0.07 sub:imp:1p; +pristi pristi ono 0 0.2 0 0.2 +prisunic prisunic nom m s 0.03 3.11 0.03 3.11 +prisé priser ver m s 2.59 5.2 0.3 0.54 par:pas; +prisée priser ver f s 2.59 5.2 0.06 0.41 par:pas; +prisées priser ver f p 2.59 5.2 0.21 0.68 par:pas; +prisés priser ver m p 2.59 5.2 0.28 0.07 par:pas; +prit prendre ver 1913.83 1466.42 7.27 164.8 ind:pas:3s; +priva priver ver 24.06 42.7 0.16 0.74 ind:pas:3s; +privai priver ver 24.06 42.7 0 0.07 ind:pas:1s; +privaient priver ver 24.06 42.7 0.02 0.88 ind:imp:3p; +privais priver ver 24.06 42.7 0.02 0.61 ind:imp:1s;ind:imp:2s; +privait priver ver 24.06 42.7 0.09 3.65 ind:imp:3s; +privant priver ver 24.06 42.7 0.33 1.69 par:pre; +privasse priver ver 24.06 42.7 0 0.07 sub:imp:1s; +privatif privatif adj m s 0.06 0.47 0.02 0.27 +privatifs privatif adj m p 0.06 0.47 0 0.07 +privation privation nom f s 1.55 4.53 0.7 1.49 +privations privation nom f p 1.55 4.53 0.85 3.04 +privatisation privatisation nom f s 0.41 0.07 0.41 0.07 +privatiser privatiser ver 0.36 0 0.31 0 inf; +privatisé privatiser ver m s 0.36 0 0.03 0 par:pas; +privatisée privatiser ver f s 0.36 0 0.01 0 par:pas; +privatisés privatiser ver m p 0.36 0 0.01 0 par:pas; +privative privatif adj f s 0.06 0.47 0.02 0 +privatives privatif adj f p 0.06 0.47 0.01 0.14 +privauté privauté nom f s 0.02 0.54 0 0.07 +privautés privauté nom f p 0.02 0.54 0.02 0.47 +prive priver ver 24.06 42.7 1.49 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +privent priver ver 24.06 42.7 0.46 0.47 ind:pre:3p; +priver priver ver 24.06 42.7 4.19 6.15 inf; +privera priver ver 24.06 42.7 0.44 0.27 ind:fut:3s; +priverai priver ver 24.06 42.7 0.27 0 ind:fut:1s; +priveraient priver ver 24.06 42.7 0.01 0.07 cnd:pre:3p; +priverais priver ver 24.06 42.7 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +priverait priver ver 24.06 42.7 0.17 0.27 cnd:pre:3s; +priveras priver ver 24.06 42.7 0.02 0 ind:fut:2s; +priveriez priver ver 24.06 42.7 0.12 0 cnd:pre:2p; +prives priver ver 24.06 42.7 0.47 0.14 ind:pre:2s; +privez priver ver 24.06 42.7 0.54 0.41 imp:pre:2p;ind:pre:2p; +priviez priver ver 24.06 42.7 0.02 0 ind:imp:2p; +privilège privilège nom m s 10.41 17.7 7.06 11.96 +privilèges privilège nom m p 10.41 17.7 3.35 5.74 +privilégiait privilégier ver 2.92 3.11 0.01 0.14 ind:imp:3s; +privilégiant privilégier ver 2.92 3.11 0 0.07 par:pre; +privilégie privilégier ver 2.92 3.11 0.42 0.27 ind:pre:1s;ind:pre:3s; +privilégient privilégier ver 2.92 3.11 0.04 0 ind:pre:3p; +privilégier privilégier ver 2.92 3.11 0.84 0.2 inf; +privilégions privilégier ver 2.92 3.11 0.02 0 ind:pre:1p; +privilégié privilégié adj m s 2.15 9.46 1.01 4.05 +privilégiée privilégié adj f s 2.15 9.46 0.56 2.84 +privilégiées privilégié adj f p 2.15 9.46 0.23 0.68 +privilégiés privilégié nom m p 0.87 5.07 0.65 3.31 +privions priver ver 24.06 42.7 0 0.14 ind:imp:1p; +privons priver ver 24.06 42.7 0.03 0 ind:pre:1p; +privât priver ver 24.06 42.7 0 0.14 sub:imp:3s; +privèrent priver ver 24.06 42.7 0 0.07 ind:pas:3p; +privé privé adj m s 36.44 21.89 11.99 7.09 +privée privé adj f s 36.44 21.89 18.8 9.39 +privées privé adj f p 36.44 21.89 2.61 2.3 +privément privément adv 0.01 0 0.01 0 +privés privé adj m p 36.44 21.89 3.04 3.11 +prix prix nom m 126.55 107.5 126.55 107.5 +prix_choc prix_choc nom m 0 0.07 0 0.07 +priâmes prier ver 313.12 105.74 0 0.14 ind:pas:1p; +priât prier ver 313.12 105.74 0 0.27 sub:imp:3s; +prière prière nom f s 32.73 45.95 19.15 30 +prièrent prier ver 313.12 105.74 0.03 0.34 ind:pas:3p; +prières prière nom f p 32.73 45.95 13.58 15.95 +prié prier ver m s 313.12 105.74 9.03 7.84 par:pas; +priée prier ver f s 313.12 105.74 0.52 1.15 par:pas; +priées prier ver f p 313.12 105.74 0.05 0.14 par:pas; +priés prier ver m p 313.12 105.74 1.91 0.95 par:pas; +pro pro nom s 19.45 2.03 14.45 1.62 +pro_occidental pro_occidental adj m s 0.01 0 0.01 0 +proactif proactif adj m s 0.07 0 0.07 0 +probabilité probabilité nom f s 3.66 2.23 1.68 1.28 +probabilités probabilité nom f p 3.66 2.23 1.99 0.95 +probable probable adj s 10.98 18.18 10.61 17.36 +probablement probablement adv 69.41 37.64 69.41 37.64 +probables probable adj p 10.98 18.18 0.38 0.81 +probant probant adj m s 0.47 1.08 0.31 0.54 +probante probant adj f s 0.47 1.08 0.06 0.27 +probantes probant adj f p 0.47 1.08 0.04 0 +probants probant adj m p 0.47 1.08 0.06 0.27 +probation probation nom f s 1.39 0.14 1.39 0.14 +probatoire probatoire adj s 0.12 0.27 0.12 0.27 +probe probe adj f s 0.38 0.2 0.36 0.14 +probes probe adj p 0.38 0.2 0.01 0.07 +probité probité nom f s 0.1 1.89 0.1 1.89 +probloc probloc nom m s 0 0.54 0 0.47 +problocs probloc nom m p 0 0.54 0 0.07 +probloque probloque nom m s 0 1.01 0 0.61 +probloques probloque nom m p 0 1.01 0 0.41 +problème problème nom m s 520.07 95 391.2 55.2 +problèmes problème nom m p 520.07 95 128.87 39.8 +problématique problématique adj s 1.39 1.22 1.22 0.95 +problématiques problématique adj p 1.39 1.22 0.17 0.27 +proc proc nom m s 0.27 0.68 0.27 0.61 +procalmadiol procalmadiol nom m s 0 0.07 0 0.07 +procaïne procaïne nom f s 0.02 0 0.02 0 +process process nom m 0.07 0.07 0.07 0.07 +processeur processeur nom m s 0.69 0 0.54 0 +processeurs processeur nom m p 0.69 0 0.15 0 +procession procession nom f s 3.81 10.2 3.21 7.91 +processionnaient processionner ver 0 0.14 0 0.07 ind:imp:3p; +processionnaire processionnaire adj f s 0 0.2 0 0.2 +processionnaires processionnaire nom m p 0 0.2 0 0.2 +processionnant processionner ver 0 0.14 0 0.07 par:pre; +processionnelle processionnel adj f s 0.01 0.2 0.01 0.07 +processionnelles processionnel adj f p 0.01 0.2 0 0.14 +processions procession nom f p 3.81 10.2 0.59 2.3 +processus processus nom m 10.86 5.47 10.86 5.47 +prochain prochain adj m s 160.27 59.32 51.95 21.96 +prochaine prochain adj f s 160.27 59.32 100.44 32.5 +prochainement prochainement adv 0.86 2.77 0.86 2.77 +prochaines prochain adj f p 160.27 59.32 4.27 2.7 +prochains prochain adj m p 160.27 59.32 3.62 2.16 +proche proche adj s 55.34 82.91 38.29 63.04 +proche_oriental proche_oriental adj m s 0.01 0 0.01 0 +proches proche adj p 55.34 82.91 17.05 19.86 +prochinois prochinois adj m 0 0.14 0 0.07 +prochinoise prochinois adj f s 0 0.14 0 0.07 +proclama proclamer ver 6.5 16.42 0.02 1.08 ind:pas:3s; +proclamai proclamer ver 6.5 16.42 0 0.14 ind:pas:1s; +proclamaient proclamer ver 6.5 16.42 0 0.61 ind:imp:3p; +proclamais proclamer ver 6.5 16.42 0.23 0.07 ind:imp:1s;ind:imp:2s; +proclamait proclamer ver 6.5 16.42 0.03 3.38 ind:imp:3s; +proclamant proclamer ver 6.5 16.42 0.41 1.01 par:pre; +proclamation proclamation nom f s 0.6 4.19 0.6 3.45 +proclamations proclamation nom f p 0.6 4.19 0 0.74 +proclamatrices proclamateur nom f p 0.01 0 0.01 0 +proclame proclamer ver 6.5 16.42 2.37 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +proclament proclamer ver 6.5 16.42 0.17 0.68 ind:pre:3p; +proclamer proclamer ver 6.5 16.42 0.81 3.18 inf; +proclamera proclamer ver 6.5 16.42 0.03 0 ind:fut:3s; +proclamerai proclamer ver 6.5 16.42 0.01 0.07 ind:fut:1s; +proclameraient proclamer ver 6.5 16.42 0 0.07 cnd:pre:3p; +proclamerait proclamer ver 6.5 16.42 0 0.27 cnd:pre:3s; +proclamerons proclamer ver 6.5 16.42 0.02 0.07 ind:fut:1p; +proclamez proclamer ver 6.5 16.42 0.27 0.2 imp:pre:2p;ind:pre:2p; +proclamiez proclamer ver 6.5 16.42 0 0.07 ind:imp:2p; +proclamions proclamer ver 6.5 16.42 0 0.14 ind:imp:1p; +proclamons proclamer ver 6.5 16.42 0.24 0.07 imp:pre:1p;ind:pre:1p; +proclamât proclamer ver 6.5 16.42 0 0.14 sub:imp:3s; +proclamèrent proclamer ver 6.5 16.42 0 0.14 ind:pas:3p; +proclamé proclamer ver m s 6.5 16.42 1.38 1.96 par:pas; +proclamée proclamer ver f s 6.5 16.42 0.49 0.68 par:pas; +proclamées proclamer ver f p 6.5 16.42 0.03 0.07 par:pas; +proclamés proclamer ver m p 6.5 16.42 0.01 0.14 par:pas; +procommuniste procommuniste adj s 0 0.07 0 0.07 +proconsul proconsul nom m s 0.51 1.35 0.51 0.41 +proconsuls proconsul nom m p 0.51 1.35 0 0.95 +procrastination procrastination nom f s 0.01 0 0.01 0 +procréa procréer ver 1.13 1.55 0 0.07 ind:pas:3s; +procréant procréer ver 1.13 1.55 0.01 0.14 par:pre; +procréateur procréateur nom m s 0.01 0.14 0.01 0.07 +procréateurs procréateur nom m p 0.01 0.14 0 0.07 +procréation procréation nom f s 0.4 1.22 0.4 1.08 +procréations procréation nom f p 0.4 1.22 0 0.14 +procréative procréatif adj f s 0 0.07 0 0.07 +procréatrice procréateur adj f s 0.05 0.07 0.03 0 +procréatrices procréateur adj f p 0.05 0.07 0.02 0 +procrée procréer ver 1.13 1.55 0.03 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procréent procréer ver 1.13 1.55 0.01 0.07 ind:pre:3p; +procréer procréer ver 1.13 1.55 1.01 0.61 inf; +procréerons procréer ver 1.13 1.55 0.02 0 ind:fut:1p; +procréé procréer ver m s 1.13 1.55 0.04 0.34 par:pas; +procs proc nom m p 0.27 0.68 0 0.07 +proctologie proctologie nom f s 0.01 0 0.01 0 +proctologue proctologue nom s 0.28 0 0.22 0 +proctologues proctologue nom p 0.28 0 0.07 0 +procura procurer ver 12.77 27.97 0.16 1.01 ind:pas:3s; +procurai procurer ver 12.77 27.97 0 0.07 ind:pas:1s; +procuraient procurer ver 12.77 27.97 0.03 1.35 ind:imp:3p; +procurais procurer ver 12.77 27.97 0.01 0.14 ind:imp:1s; +procurait procurer ver 12.77 27.97 0.39 3.72 ind:imp:3s; +procurant procurer ver 12.77 27.97 0.04 0.61 par:pre; +procurateur procurateur nom m s 0.03 0.88 0.03 0.2 +procurateurs procurateur nom m p 0.03 0.88 0 0.07 +procuraties procuratie nom f p 0 0.14 0 0.14 +procuration procuration nom f s 1.69 2.5 1.69 2.5 +procuratrice procurateur nom f s 0.03 0.88 0 0.61 +procure procurer ver 12.77 27.97 1.67 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procurent procurer ver 12.77 27.97 0.34 0.88 ind:pre:3p; +procurer procurer ver 12.77 27.97 7.29 9.66 inf;; +procurera procurer ver 12.77 27.97 0.21 0.07 ind:fut:3s; +procurerai procurer ver 12.77 27.97 0.19 0.14 ind:fut:1s; +procureraient procurer ver 12.77 27.97 0.01 0.2 cnd:pre:3p; +procurerais procurer ver 12.77 27.97 0.01 0 cnd:pre:1s; +procurerait procurer ver 12.77 27.97 0.14 0.61 cnd:pre:3s; +procureras procurer ver 12.77 27.97 0.03 0 ind:fut:2s; +procureriez procurer ver 12.77 27.97 0.01 0 cnd:pre:2p; +procurerons procurer ver 12.77 27.97 0.04 0 ind:fut:1p; +procureront procurer ver 12.77 27.97 0.02 0.07 ind:fut:3p; +procures procurer ver 12.77 27.97 0.09 0 ind:pre:2s; +procureur procureur nom m s 29.45 6.15 28.68 5.54 +procureurs procureur nom m p 29.45 6.15 0.78 0.41 +procureuse procureur nom f s 29.45 6.15 0 0.14 +procureuses procureur nom f p 29.45 6.15 0 0.07 +procurez procurer ver 12.77 27.97 0.2 0 imp:pre:2p;ind:pre:2p; +procuriez procurer ver 12.77 27.97 0.01 0.07 ind:imp:2p; +procurions procurer ver 12.77 27.97 0 0.14 ind:imp:1p;sub:pre:1p; +procurât procurer ver 12.77 27.97 0 0.07 sub:imp:3s; +procurèrent procurer ver 12.77 27.97 0 0.14 ind:pas:3p; +procuré procurer ver m s 12.77 27.97 1.78 4.26 par:pas; +procurée procurer ver f s 12.77 27.97 0.03 0.41 par:pas; +procurées procurer ver f p 12.77 27.97 0 0.14 par:pas; +procurés procurer ver m p 12.77 27.97 0.08 0.07 par:pas; +procède procéder ver 12.91 25.88 1.75 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procèdent procéder ver 12.91 25.88 0.38 0.81 ind:pre:3p; +procès procès nom m 45.41 24.32 45.41 24.32 +procès_test procès_test nom m 0.02 0 0.02 0 +procès_verbal procès_verbal nom m s 3.86 2.3 3.55 1.76 +procès_verbal procès_verbal nom m p 3.86 2.3 0.31 0.54 +procéda procéder ver 12.91 25.88 0.02 0.34 ind:pas:3s; +procédaient procéder ver 12.91 25.88 0 0.54 ind:imp:3p; +procédais procéder ver 12.91 25.88 0.01 0.14 ind:imp:1s; +procédait procéder ver 12.91 25.88 0.04 2.97 ind:imp:3s; +procédant procéder ver 12.91 25.88 0.07 0.81 par:pre; +procéder procéder ver 12.91 25.88 6.75 10.14 inf; +procédera procéder ver 12.91 25.88 0.27 0.54 ind:fut:3s; +procéderaient procéder ver 12.91 25.88 0 0.2 cnd:pre:3p; +procéderais procéder ver 12.91 25.88 0.03 0 cnd:pre:1s; +procéderait procéder ver 12.91 25.88 0 0.54 cnd:pre:3s; +procéderez procéder ver 12.91 25.88 0.08 0 ind:fut:2p; +procéderiez procéder ver 12.91 25.88 0.01 0 cnd:pre:2p; +procéderons procéder ver 12.91 25.88 0.45 0.14 ind:fut:1p; +procéderont procéder ver 12.91 25.88 0 0.27 ind:fut:3p; +procédez procéder ver 12.91 25.88 0.76 0.14 imp:pre:2p;ind:pre:2p; +procédiez procéder ver 12.91 25.88 0.01 0.07 ind:imp:2p; +procédions procéder ver 12.91 25.88 0.04 0.14 ind:imp:1p; +procédons procéder ver 12.91 25.88 1.15 0.61 imp:pre:1p;ind:pre:1p; +procédural procédural adj m s 0.03 0 0.01 0 +procédurale procédural adj f s 0.03 0 0.01 0 +procédure procédure nom f s 16.16 3.58 13.26 3.38 +procédures procédure nom f p 16.16 3.58 2.91 0.2 +procédurier procédurier adj m s 0.04 0.14 0.03 0.07 +procédurière procédurier adj f s 0.04 0.14 0.01 0 +procédurières procédurier adj f p 0.04 0.14 0 0.07 +procédâmes procéder ver 12.91 25.88 0 0.07 ind:pas:1p; +procédât procéder ver 12.91 25.88 0 0.14 sub:imp:3s; +procédé procédé nom m s 4.17 8.85 3.28 4.46 +procédés procédé nom m p 4.17 8.85 0.89 4.39 +prodigalité prodigalité nom f s 0.04 1.01 0.03 0.95 +prodigalités prodigalité nom f p 0.04 1.01 0.01 0.07 +prodige prodige nom m s 5.83 8.78 4.62 5.61 +prodiges prodige nom m p 5.83 8.78 1.21 3.18 +prodigieuse prodigieux adj f s 3.66 13.24 1.29 5.47 +prodigieusement prodigieusement adv 0.67 3.65 0.67 3.65 +prodigieuses prodigieux adj f p 3.66 13.24 0.17 1.22 +prodigieux prodigieux adj m 3.66 13.24 2.19 6.55 +prodigua prodiguer ver 0.89 11.42 0.02 0.41 ind:pas:3s; +prodiguaient prodiguer ver 0.89 11.42 0 0.81 ind:imp:3p; +prodiguais prodiguer ver 0.89 11.42 0.01 0.14 ind:imp:1s;ind:imp:2s; +prodiguait prodiguer ver 0.89 11.42 0.01 1.82 ind:imp:3s; +prodiguant prodiguer ver 0.89 11.42 0.06 0.47 par:pre; +prodigue prodigue adj s 1.9 3.65 1.88 3.04 +prodiguent prodiguer ver 0.89 11.42 0 0.61 ind:pre:3p; +prodiguer prodiguer ver 0.89 11.42 0.09 1.76 inf; +prodiguera prodiguer ver 0.89 11.42 0.01 0.07 ind:fut:3s; +prodiguerais prodiguer ver 0.89 11.42 0 0.07 cnd:pre:2s; +prodigueras prodiguer ver 0.89 11.42 0.01 0 ind:fut:2s; +prodigueront prodiguer ver 0.89 11.42 0 0.07 ind:fut:3p; +prodigues prodiguer ver 0.89 11.42 0.04 0.07 ind:pre:2s; +prodiguions prodiguer ver 0.89 11.42 0.14 0.07 ind:imp:1p; +prodiguèrent prodiguer ver 0.89 11.42 0 0.27 ind:pas:3p; +prodigué prodiguer ver m s 0.89 11.42 0.31 1.49 par:pas; +prodiguée prodiguer ver f s 0.89 11.42 0.01 0.2 par:pas; +prodiguées prodiguer ver f p 0.89 11.42 0.11 0.81 par:pas; +prodigués prodiguer ver m p 0.89 11.42 0.03 0.88 par:pas; +prodrome prodrome nom m s 0 0.47 0 0.07 +prodromes prodrome nom m p 0 0.47 0 0.41 +producteur producteur nom m s 12.83 5.74 9.01 3.45 +producteurs producteur nom m p 12.83 5.74 3.19 2.03 +productif productif adj m s 1.66 0.81 0.89 0.34 +productifs productif adj m p 1.66 0.81 0.14 0.27 +production production nom f s 18.73 14.59 17.1 12.3 +productions production nom f p 18.73 14.59 1.63 2.3 +productive productif adj f s 1.66 0.81 0.46 0.07 +productives productif adj f p 1.66 0.81 0.17 0.14 +productivité productivité nom f s 0.75 0.34 0.75 0.34 +productrice producteur nom f s 12.83 5.74 0.63 0.27 +productrices producteur adj f p 1.34 1.01 0.07 0.07 +produira produire ver 49.81 68.92 1.71 0.61 ind:fut:3s; +produiraient produire ver 49.81 68.92 0.12 0.27 cnd:pre:3p; +produirais produire ver 49.81 68.92 0.05 0 cnd:pre:1s; +produirait produire ver 49.81 68.92 0.49 1.49 cnd:pre:3s; +produiras produire ver 49.81 68.92 0 0.07 ind:fut:2s; +produire produire ver 49.81 68.92 11.84 16.76 inf; +produirez produire ver 49.81 68.92 0.03 0 ind:fut:2p; +produiriez produire ver 49.81 68.92 0.01 0 cnd:pre:2p; +produirons produire ver 49.81 68.92 0.06 0 ind:fut:1p; +produiront produire ver 49.81 68.92 0.22 0.07 ind:fut:3p; +produis produire ver 49.81 68.92 1.05 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +produisaient produire ver 49.81 68.92 0.09 1.69 ind:imp:3p; +produisais produire ver 49.81 68.92 0.07 0.07 ind:imp:1s;ind:imp:2s; +produisait produire ver 49.81 68.92 1.5 6.28 ind:imp:3s; +produisant produire ver 49.81 68.92 0.53 2.03 par:pre; +produise produire ver 49.81 68.92 2.15 1.08 sub:pre:1s;sub:pre:3s; +produisent produire ver 49.81 68.92 3.91 2.7 ind:pre:3p; +produises produire ver 49.81 68.92 0.01 0 sub:pre:2s; +produisez produire ver 49.81 68.92 0.27 0.07 imp:pre:2p;ind:pre:2p; +produisions produire ver 49.81 68.92 0.02 0 ind:imp:1p; +produisirent produire ver 49.81 68.92 0.01 0.27 ind:pas:3p; +produisis produire ver 49.81 68.92 0 0.07 ind:pas:1s; +produisit produire ver 49.81 68.92 0.74 5.88 ind:pas:3s; +produisons produire ver 49.81 68.92 0.84 0.07 imp:pre:1p;ind:pre:1p; +produisît produire ver 49.81 68.92 0.01 0.61 sub:imp:3s; +produit produire ver m s 49.81 68.92 20.16 22.57 ind:pre:3s;par:pas; +produite produire ver f s 49.81 68.92 1.34 3.31 par:pas; +produites produire ver f p 49.81 68.92 0.82 0.47 par:pas; +produits produit nom m p 28.8 23.99 14.17 11.28 +prof prof nom s 37.82 20.2 30.36 15.07 +profana profaner ver 3.12 2.5 0.23 0.07 ind:pas:3s; +profanaient profaner ver 3.12 2.5 0 0.07 ind:imp:3p; +profanait profaner ver 3.12 2.5 0 0.14 ind:imp:3s; +profanant profaner ver 3.12 2.5 0.01 0.14 par:pre; +profanateur profanateur nom m s 0.28 0.14 0.07 0.14 +profanateurs profanateur nom m p 0.28 0.14 0.21 0 +profanation profanation nom f s 1.21 1.08 1.04 0.95 +profanations profanation nom f p 1.21 1.08 0.16 0.14 +profanatoire profanatoire adj f s 0 0.07 0 0.07 +profane profane adj s 1.11 2.84 0.88 1.89 +profanent profaner ver 3.12 2.5 0.4 0 ind:pre:3p; +profaner profaner ver 3.12 2.5 0.7 0.41 inf; +profanera profaner ver 3.12 2.5 0.12 0.07 ind:fut:3s; +profanes profane adj p 1.11 2.84 0.23 0.95 +profanez profaner ver 3.12 2.5 0.15 0.07 imp:pre:2p;ind:pre:2p; +profanèrent profaner ver 3.12 2.5 0 0.07 ind:pas:3p; +profané profaner ver m s 3.12 2.5 0.89 0.47 par:pas; +profanée profaner ver f s 3.12 2.5 0.19 0.47 par:pas; +profanées profaner ver f p 3.12 2.5 0.11 0.2 par:pas; +profanés profaner ver m p 3.12 2.5 0.01 0.14 par:pas; +professa professer ver 0.47 3.51 0 0.07 ind:pas:3s; +professaient professer ver 0.47 3.51 0 0.34 ind:imp:3p; +professait professer ver 0.47 3.51 0 1.42 ind:imp:3s; +professant professer ver 0.47 3.51 0 0.2 par:pre; +professe professer ver 0.47 3.51 0.22 0.41 ind:pre:1s;ind:pre:3s; +professent professer ver 0.47 3.51 0 0.2 ind:pre:3p; +professer professer ver 0.47 3.51 0.11 0.07 inf; +professeur professeur nom s 98.55 63.92 90.02 49.53 +professeure professeur nom f s 98.55 63.92 0.17 0 +professeurs professeur nom p 98.55 63.92 8.35 14.39 +professiez professer ver 0.47 3.51 0.01 0.07 ind:imp:2p; +profession profession nom f s 9.93 15.81 9.46 13.99 +professionnalisme professionnalisme nom m s 1.03 0.34 1.03 0.34 +professionnel professionnel adj m s 23.09 20.61 11.75 7.23 +professionnelle professionnel adj f s 23.09 20.61 7.13 6.96 +professionnellement professionnellement adv 1.13 0.74 1.13 0.74 +professionnelles professionnel adj f p 23.09 20.61 1.24 3.51 +professionnels professionnel nom m p 13.3 6.82 4.29 3.24 +professions profession nom f p 9.93 15.81 0.46 1.82 +professons professer ver 0.47 3.51 0 0.07 ind:pre:1p; +professoral professoral adj m s 0.06 0.41 0.06 0.41 +professorat professorat nom m s 0.02 0.34 0.02 0.34 +professé professer ver m s 0.47 3.51 0.12 0.27 par:pas; +professées professer ver f p 0.47 3.51 0 0.2 par:pas; +profil profil nom m s 14.44 29.12 13.38 26.69 +profila profiler ver 1.67 6.62 0 0.68 ind:pas:3s; +profilage profilage nom m s 0.12 0.07 0.12 0.07 +profilaient profiler ver 1.67 6.62 0 0.74 ind:imp:3p; +profilait profiler ver 1.67 6.62 0.02 0.88 ind:imp:3s; +profilant profiler ver 1.67 6.62 0 0.61 par:pre; +profile profiler ver 1.67 6.62 1.16 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +profilent profiler ver 1.67 6.62 0.04 0.61 ind:pre:3p; +profiler profiler ver 1.67 6.62 0.35 1.15 inf; +profileur profileur nom m s 0.13 0 0.11 0 +profileuse profileur nom f s 0.13 0 0.01 0 +profils profil nom m p 14.44 29.12 1.06 2.43 +profilèrent profiler ver 1.67 6.62 0 0.07 ind:pas:3p; +profilé profiler ver m s 1.67 6.62 0.06 0.07 par:pas; +profilée profiler ver f s 1.67 6.62 0.02 0.47 par:pas; +profilées profiler ver f p 1.67 6.62 0 0.2 par:pas; +profilés profiler ver m p 1.67 6.62 0.02 0.07 par:pas; +profit profit nom m s 14.29 25 12.26 22.77 +profita profiter ver 67.2 91.22 0.13 7.84 ind:pas:3s; +profitabilité profitabilité nom f s 0.01 0 0.01 0 +profitable profitable adj s 1.64 1.96 1.32 1.42 +profitables profitable adj p 1.64 1.96 0.32 0.54 +profitai profiter ver 67.2 91.22 0.01 1.35 ind:pas:1s; +profitaient profiter ver 67.2 91.22 0.09 3.04 ind:imp:3p; +profitais profiter ver 67.2 91.22 0.6 1.28 ind:imp:1s;ind:imp:2s; +profitait profiter ver 67.2 91.22 0.52 5.95 ind:imp:3s; +profitant profiter ver 67.2 91.22 0.59 10.2 par:pre; +profite profiter ver 67.2 91.22 13.06 12.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +profitent profiter ver 67.2 91.22 1.67 3.24 ind:pre:3p; +profiter profiter ver 67.2 91.22 22.5 25.14 inf; +profitera profiter ver 67.2 91.22 0.76 0.74 ind:fut:3s; +profiterai profiter ver 67.2 91.22 1 0.47 ind:fut:1s; +profiteraient profiter ver 67.2 91.22 0.05 0.47 cnd:pre:3p; +profiterais profiter ver 67.2 91.22 0.31 0.27 cnd:pre:1s;cnd:pre:2s; +profiterait profiter ver 67.2 91.22 0.27 1.22 cnd:pre:3s; +profiteras profiter ver 67.2 91.22 0.23 0.07 ind:fut:2s; +profiterez profiter ver 67.2 91.22 0.18 0.07 ind:fut:2p; +profiteriez profiter ver 67.2 91.22 0.04 0 cnd:pre:2p; +profiterole profiterole nom f s 0.06 0.07 0 0.07 +profiteroles profiterole nom f p 0.06 0.07 0.06 0 +profiterons profiter ver 67.2 91.22 0.54 0.14 ind:fut:1p; +profiteront profiter ver 67.2 91.22 0.27 0.14 ind:fut:3p; +profites profiter ver 67.2 91.22 6.34 0.61 ind:pre:2s;sub:pre:2s; +profiteur profiteur nom m s 1 1.35 0.5 0.54 +profiteurs profiteur nom m p 1 1.35 0.47 0.74 +profiteuse profiteur nom f s 1 1.35 0.03 0.07 +profitez profiter ver 67.2 91.22 8.51 1.49 imp:pre:2p;ind:pre:2p; +profitiez profiter ver 67.2 91.22 0.19 0.07 ind:imp:2p; +profitions profiter ver 67.2 91.22 0.04 0.47 ind:imp:1p; +profitons profiter ver 67.2 91.22 2.41 0.41 imp:pre:1p;ind:pre:1p; +profits profit nom m p 14.29 25 2.04 2.23 +profitâmes profiter ver 67.2 91.22 0 0.14 ind:pas:1p; +profitât profiter ver 67.2 91.22 0 0.34 sub:imp:3s; +profitèrent profiter ver 67.2 91.22 0 0.95 ind:pas:3p; +profité profiter ver m s 67.2 91.22 6.89 12.16 par:pas; +profitée profiter ver f s 67.2 91.22 0 0.07 par:pas; +profond profond adj m s 42.41 105.74 24.72 47.77 +profonde profond adj f s 42.41 105.74 11.71 37.97 +profondes profond adj f p 42.41 105.74 3.8 11.55 +profondeur profondeur nom f s 13.3 32.64 8.84 17.84 +profondeurs profondeur nom f p 13.3 32.64 4.46 14.8 +profonds profond adj m p 42.41 105.74 2.19 8.45 +profondément profondément adv 19 34.59 19 34.59 +profs prof nom p 37.82 20.2 7.46 5.14 +profus profus adj m s 0.01 0.47 0 0.14 +profuse profus adj f s 0.01 0.47 0.01 0.27 +profuses profus adj f p 0.01 0.47 0 0.07 +profusion profusion nom f s 0.24 4.73 0.24 4.66 +profusions profusion nom f p 0.24 4.73 0 0.07 +profère proférer ver 0.88 8.24 0.22 1.01 ind:pre:3s; +profèrent proférer ver 0.88 8.24 0.01 0.14 ind:pre:3p; +proféra proférer ver 0.88 8.24 0.02 1.62 ind:pas:3s; +proféraient proférer ver 0.88 8.24 0 0.07 ind:imp:3p; +proférait proférer ver 0.88 8.24 0.01 0.95 ind:imp:3s; +proférant proférer ver 0.88 8.24 0.05 0.54 par:pre; +proférations profération nom f p 0 0.07 0 0.07 +proférer proférer ver 0.88 8.24 0.36 1.89 inf; +proféreraient proférer ver 0.88 8.24 0 0.07 cnd:pre:3p; +proférez proférer ver 0.88 8.24 0.02 0 ind:pre:2p; +proférions proférer ver 0.88 8.24 0 0.07 ind:imp:1p; +proférât proférer ver 0.88 8.24 0 0.07 sub:imp:3s; +proféré proférer ver m s 0.88 8.24 0.16 0.88 par:pas; +proférée proférer ver f s 0.88 8.24 0.02 0.34 par:pas; +proférées proférer ver f p 0.88 8.24 0.01 0.27 par:pas; +proférés proférer ver m p 0.88 8.24 0 0.34 par:pas; +progestérone progestérone nom f s 0.07 0.07 0.07 0.07 +prognathe prognathe adj s 0 0.47 0 0.47 +prognathisme prognathisme nom m s 0.01 0 0.01 0 +programma programmer ver 7.14 2.3 0.01 0.14 ind:pas:3s; +programmable programmable adj f s 0.06 0 0.04 0 +programmables programmable adj p 0.06 0 0.01 0 +programmaient programmer ver 7.14 2.3 0.01 0.07 ind:imp:3p; +programmait programmer ver 7.14 2.3 0.01 0.14 ind:imp:3s; +programmateur programmateur nom m s 0.19 0.14 0.04 0.07 +programmateurs programmateur nom m p 0.19 0.14 0.14 0.07 +programmation programmation nom f s 1.09 0.41 1.09 0.41 +programmatrice programmateur adj f s 0.14 0 0.1 0 +programme programme nom m s 49.11 26.49 44.16 21.89 +programment programmer ver 7.14 2.3 0.06 0.14 ind:pre:3p; +programmer programmer ver 7.14 2.3 1.36 0.14 inf; +programmerai programmer ver 7.14 2.3 0.04 0 ind:fut:1s; +programmes programme nom m p 49.11 26.49 4.95 4.59 +programmeur programmeur nom m s 0.64 0 0.38 0 +programmeurs programmeur nom m p 0.64 0 0.21 0 +programmeuse programmeur nom f s 0.64 0 0.05 0 +programmez programmer ver 7.14 2.3 0.33 0.07 imp:pre:2p;ind:pre:2p; +programmons programmer ver 7.14 2.3 0.01 0 imp:pre:1p; +programmé programmer ver m s 7.14 2.3 3.1 0.68 par:pas; +programmée programmer ver f s 7.14 2.3 0.78 0.27 par:pas; +programmées programmer ver f p 7.14 2.3 0.32 0.27 par:pas; +programmés programmer ver m p 7.14 2.3 0.45 0.27 par:pas; +progressa progresser ver 9.92 15.81 0.01 0.47 ind:pas:3s; +progressai progresser ver 9.92 15.81 0 0.14 ind:pas:1s; +progressaient progresser ver 9.92 15.81 0.01 0.95 ind:imp:3p; +progressais progresser ver 9.92 15.81 0.13 0.27 ind:imp:1s; +progressait progresser ver 9.92 15.81 0.22 2.91 ind:imp:3s; +progressant progresser ver 9.92 15.81 0.04 1.82 par:pre; +progresse progresser ver 9.92 15.81 3.74 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +progressent progresser ver 9.92 15.81 0.52 1.08 ind:pre:3p; +progresser progresser ver 9.92 15.81 2.23 3.04 inf; +progressera progresser ver 9.92 15.81 0.22 0 ind:fut:3s; +progresseraient progresser ver 9.92 15.81 0 0.07 cnd:pre:3p; +progresserais progresser ver 9.92 15.81 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +progresserait progresser ver 9.92 15.81 0.01 0.07 cnd:pre:3s; +progresserez progresser ver 9.92 15.81 0.04 0 ind:fut:2p; +progresserons progresser ver 9.92 15.81 0.16 0 ind:fut:1p; +progresseront progresser ver 9.92 15.81 0.03 0.07 ind:fut:3p; +progresses progresser ver 9.92 15.81 0.63 0 ind:pre:2s; +progressez progresser ver 9.92 15.81 0.36 0 imp:pre:2p;ind:pre:2p; +progressif progressif adj m s 1.01 5.27 0.42 2.09 +progression progression nom f s 1.73 6.62 1.61 6.62 +progressions progression nom f p 1.73 6.62 0.13 0 +progressisme progressisme nom m s 0.01 0.34 0.01 0.34 +progressiste progressiste adj s 1.08 1.08 0.81 0.68 +progressistes progressiste adj p 1.08 1.08 0.28 0.41 +progressive progressif adj f s 1.01 5.27 0.57 2.97 +progressivement progressivement adv 1.44 8.24 1.44 8.24 +progressives progressif adj f p 1.01 5.27 0.02 0.2 +progressons progresser ver 9.92 15.81 0.55 0.27 imp:pre:1p;ind:pre:1p; +progressèrent progresser ver 9.92 15.81 0 0.07 ind:pas:3p; +progressé progresser ver m s 9.92 15.81 0.98 1.15 par:pas; +progressée progresser ver f s 9.92 15.81 0.01 0 par:pas; +progrès progrès nom m 18.52 29.73 18.52 29.73 +progéniteur progéniteur nom m s 0 0.07 0 0.07 +progéniture progéniture nom f s 1.64 2.64 1.6 2.57 +progénitures progéniture nom f p 1.64 2.64 0.04 0.07 +prohibait prohiber ver 0.41 1.01 0.01 0.27 ind:imp:3s; +prohibe prohiber ver 0.41 1.01 0.02 0.14 ind:pre:3s; +prohibent prohiber ver 0.41 1.01 0.01 0 ind:pre:3p; +prohibition prohibition nom f s 0.79 0.54 0.79 0.54 +prohibitive prohibitif adj f s 0.02 0 0.02 0 +prohibé prohiber ver m s 0.41 1.01 0.19 0.27 par:pas; +prohibée prohibé adj f s 0.41 0.61 0.18 0.2 +prohibées prohibé adj f p 0.41 0.61 0.04 0.07 +prohibés prohibé adj m p 0.41 0.61 0.15 0.07 +proie proie nom f s 10.61 32.5 9.19 29.59 +proies proie nom f p 10.61 32.5 1.42 2.91 +projecteur projecteur nom m s 5.02 12.91 3.09 5.14 +projecteurs projecteur nom m p 5.02 12.91 1.93 7.77 +projectif projectif adj m s 0.01 0 0.01 0 +projectile projectile nom m s 1.4 4.46 0.82 1.69 +projectiles projectile nom m p 1.4 4.46 0.58 2.77 +projection projection nom f s 4.66 6.69 3.75 5.41 +projectionniste projectionniste nom s 0.52 0.14 0.5 0.14 +projectionnistes projectionniste nom p 0.52 0.14 0.02 0 +projections projection nom f p 4.66 6.69 0.91 1.28 +projet projet nom m s 69.59 70 44.18 39.86 +projeta projeter ver 9.75 32.77 0.03 1.28 ind:pas:3s; +projetai projeter ver 9.75 32.77 0 0.41 ind:pas:1s; +projetaient projeter ver 9.75 32.77 0.19 1.76 ind:imp:3p; +projetais projeter ver 9.75 32.77 0.24 0.74 ind:imp:1s;ind:imp:2s; +projetait projeter ver 9.75 32.77 0 6.69 ind:imp:3s; +projetant projeter ver 9.75 32.77 0.25 2.16 par:pre; +projeter projeter ver 9.75 32.77 1.59 3.11 inf; +projetez projeter ver 9.75 32.77 0.28 0 imp:pre:2p;ind:pre:2p; +projetiez projeter ver 9.75 32.77 0.05 0 ind:imp:2p; +projetions projeter ver 9.75 32.77 0.05 0.2 ind:imp:1p; +projetons projeter ver 9.75 32.77 0.38 0.07 imp:pre:1p;ind:pre:1p; +projets projet nom m p 69.59 70 25.41 30.14 +projette projeter ver 9.75 32.77 2.34 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +projettent projeter ver 9.75 32.77 0.39 0.81 ind:pre:3p; +projettera projeter ver 9.75 32.77 0.05 0.07 ind:fut:3s; +projetterait projeter ver 9.75 32.77 0 0.07 cnd:pre:3s; +projetteriez projeter ver 9.75 32.77 0 0.07 cnd:pre:2p; +projetterons projeter ver 9.75 32.77 0.02 0 ind:fut:1p; +projettes projeter ver 9.75 32.77 0.33 0 ind:pre:2s; +projetâmes projeter ver 9.75 32.77 0.01 0.07 ind:pas:1p; +projetât projeter ver 9.75 32.77 0 0.14 sub:imp:3s; +projetèrent projeter ver 9.75 32.77 0.01 0.07 ind:pas:3p; +projeté projeter ver m s 9.75 32.77 2.31 5.54 par:pas; +projetée projeter ver f s 9.75 32.77 0.47 2.57 par:pas; +projetées projeter ver f p 9.75 32.77 0.14 0.41 par:pas; +projetés projeter ver m p 9.75 32.77 0.62 1.82 par:pas; +projo projo nom m s 0.66 0.14 0.36 0 +projos projo nom m p 0.66 0.14 0.3 0.14 +prolapsus prolapsus nom m 0.15 0 0.15 0 +prolifique prolifique adj s 0.2 1.62 0.17 0.95 +prolifiques prolifique adj p 0.2 1.62 0.03 0.68 +prolifère proliférer ver 0.73 2.09 0.16 0.61 ind:pre:1s;ind:pre:3s; +prolifèrent proliférer ver 0.73 2.09 0.21 0.27 ind:pre:3p; +proliféraient proliférer ver 0.73 2.09 0 0.27 ind:imp:3p; +proliférait proliférer ver 0.73 2.09 0.01 0.14 ind:imp:3s; +proliférant proliférer ver 0.73 2.09 0.01 0 par:pre; +proliférante proliférant adj f s 0 0.54 0 0.14 +proliférantes proliférant adj f p 0 0.54 0 0.27 +proliférants proliférant adj m p 0 0.54 0 0.07 +prolifération prolifération nom f s 0.37 1.08 0.37 1.08 +proliférer proliférer ver 0.73 2.09 0.3 0.54 inf; +proliférera proliférer ver 0.73 2.09 0.01 0 ind:fut:3s; +proliféré proliférer ver m s 0.73 2.09 0.03 0.27 par:pas; +proline proline nom f s 0.03 0 0.03 0 +prolixe prolixe adj s 0.18 1.62 0.18 1.28 +prolixes prolixe adj p 0.18 1.62 0 0.34 +prolixité prolixité nom f s 0 0.2 0 0.2 +prolo prolo nom s 0.9 3.04 0.58 1.35 +prologue prologue nom m s 1.38 1.42 1.38 1.42 +prolongateur prolongateur nom m s 0.01 0 0.01 0 +prolongation prolongation nom f s 0.97 0.81 0.74 0.54 +prolongations prolongation nom f p 0.97 0.81 0.23 0.27 +prolonge prolonger ver 5.27 35 0.99 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prolongea prolonger ver 5.27 35 0.13 1.89 ind:pas:3s; +prolongeaient prolonger ver 5.27 35 0 2.09 ind:imp:3p; +prolongeais prolonger ver 5.27 35 0 0.27 ind:imp:1s; +prolongeait prolonger ver 5.27 35 0.11 4.46 ind:imp:3s; +prolongeant prolonger ver 5.27 35 0.16 2.57 par:pre; +prolongement prolongement nom m s 0.36 4.66 0.35 3.65 +prolongements prolongement nom m p 0.36 4.66 0.01 1.01 +prolongent prolonger ver 5.27 35 0.19 0.95 ind:pre:3p; +prolonger prolonger ver 5.27 35 2.42 9.39 inf; +prolongera prolonger ver 5.27 35 0.11 0.14 ind:fut:3s; +prolongeraient prolonger ver 5.27 35 0 0.27 cnd:pre:3p; +prolongerait prolonger ver 5.27 35 0 0.74 cnd:pre:3s; +prolongerons prolonger ver 5.27 35 0.01 0.07 ind:fut:1p; +prolonges prolonger ver 5.27 35 0.04 0.07 ind:pre:2s; +prolongez prolonger ver 5.27 35 0 0.07 ind:pre:2p; +prolongeât prolonger ver 5.27 35 0 0.34 sub:imp:3s; +prolongèrent prolonger ver 5.27 35 0.01 0.41 ind:pas:3p; +prolongé prolonger ver m s 5.27 35 0.41 2.97 par:pas; +prolongée prolongé adj f s 1.14 6.49 0.59 2.23 +prolongées prolongé adj f p 1.14 6.49 0.06 0.74 +prolongés prolongé adj m p 1.14 6.49 0.17 0.81 +prolos prolo nom p 0.9 3.04 0.32 1.69 +prolégomènes prolégomènes nom m p 0 0.68 0 0.68 +prolétaire prolétaire nom s 1.79 3.78 0.83 1.35 +prolétaires prolétaire nom p 1.79 3.78 0.96 2.43 +prolétariat prolétariat nom m s 1.12 3.65 1.12 3.58 +prolétariats prolétariat nom m p 1.12 3.65 0 0.07 +prolétarien prolétarien adj m s 0.56 2.36 0.14 0.47 +prolétarienne prolétarien adj f s 0.56 2.36 0.42 1.55 +prolétariennes prolétarien adj f p 0.56 2.36 0 0.2 +prolétariens prolétarien adj m p 0.56 2.36 0 0.14 +prolétarisation prolétarisation nom f s 0 0.14 0 0.14 +prolétariser prolétariser ver 0 0.14 0 0.14 inf; +promazine promazine nom f s 0.01 0 0.01 0 +promena promener ver 37.8 97.77 0.01 4.26 ind:pas:3s; +promenade promenade nom f s 15.34 58.11 13.45 42.43 +promenades promenade nom f p 15.34 58.11 1.88 15.68 +promenai promener ver 37.8 97.77 0.01 1.42 ind:pas:1s; +promenaient promener ver 37.8 97.77 0.23 5.68 ind:imp:3p; +promenais promener ver 37.8 97.77 1.84 2.84 ind:imp:1s;ind:imp:2s; +promenait promener ver 37.8 97.77 1.33 12.5 ind:imp:3s; +promenant promener ver 37.8 97.77 0.68 6.82 par:pre; +promener promener ver 37.8 97.77 20.02 32.43 inf;;inf;;inf;; +promeneur promeneur nom m s 0.57 8.92 0.22 2.77 +promeneurs promeneur nom m p 0.57 8.92 0.33 5.47 +promeneuse promeneur nom f s 0.57 8.92 0.02 0.27 +promeneuses promeneur nom f p 0.57 8.92 0 0.41 +promenez promener ver 37.8 97.77 0.91 0.61 imp:pre:2p;ind:pre:2p; +promeniez promener ver 37.8 97.77 0.03 0.2 ind:imp:2p; +promenions promener ver 37.8 97.77 0.21 1.89 ind:imp:1p; +promenoir promenoir nom m s 0 0.54 0 0.54 +promenons promener ver 37.8 97.77 0.15 0.74 imp:pre:1p;ind:pre:1p; +promenâmes promener ver 37.8 97.77 0.01 0.2 ind:pas:1p; +promenât promener ver 37.8 97.77 0 0.07 sub:imp:3s; +promenèrent promener ver 37.8 97.77 0 1.35 ind:pas:3p; +promené promener ver m s 37.8 97.77 0.85 4.26 par:pas; +promenée promener ver f s 37.8 97.77 0.39 2.09 par:pas; +promenées promener ver f p 37.8 97.77 0.02 0.34 par:pas; +promenés promener ver m p 37.8 97.77 0.75 2.57 par:pas; +promesse promesse nom f s 32.2 40.2 20.45 21.76 +promesses promesse nom f p 32.2 40.2 11.75 18.45 +promet promettre ver 185.26 101.42 8.16 6.35 ind:pre:3s; +promets promettre ver 185.26 101.42 68.81 12.3 imp:pre:2s;ind:pre:1s;ind:pre:2s; +promettaient promettre ver 185.26 101.42 0.17 1.82 ind:imp:3p; +promettais promettre ver 185.26 101.42 0.39 1.69 ind:imp:1s;ind:imp:2s; +promettait promettre ver 185.26 101.42 0.82 8.72 ind:imp:3s; +promettant promettre ver 185.26 101.42 0.77 3.38 par:pre; +promette promettre ver 185.26 101.42 0.67 0.34 sub:pre:1s;sub:pre:3s; +promettent promettre ver 185.26 101.42 0.77 1.28 ind:pre:3p; +promettes promettre ver 185.26 101.42 0.67 0.07 sub:pre:2s; +prometteur prometteur adj m s 3.96 2.57 2.75 1.15 +prometteurs prometteur adj m p 3.96 2.57 0.29 0.61 +prometteuse prometteur adj f s 3.96 2.57 0.76 0.54 +prometteuses prometteur adj f p 3.96 2.57 0.16 0.27 +promettez promettre ver 185.26 101.42 7.25 1.42 imp:pre:2p;ind:pre:2p; +promettiez promettre ver 185.26 101.42 0.19 0.14 ind:imp:2p; +promettons promettre ver 185.26 101.42 0.76 0.2 imp:pre:1p;ind:pre:1p; +promettra promettre ver 185.26 101.42 0.03 0 ind:fut:3s; +promettrai promettre ver 185.26 101.42 0.28 0 ind:fut:1s; +promettraient promettre ver 185.26 101.42 0 0.07 cnd:pre:3p; +promettrais promettre ver 185.26 101.42 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +promettrait promettre ver 185.26 101.42 0 0.14 cnd:pre:3s; +promettras promettre ver 185.26 101.42 0 0.07 ind:fut:2s; +promettre promettre ver 185.26 101.42 10.05 7.16 inf; +promettriez promettre ver 185.26 101.42 0.01 0 cnd:pre:2p; +promettront promettre ver 185.26 101.42 0.01 0.14 ind:fut:3p; +promeut promouvoir ver 6.08 3.11 0.04 0 ind:pre:3s; +promirent promettre ver 185.26 101.42 0.01 0.34 ind:pas:3p; +promis promettre ver m 185.26 101.42 82.83 42.43 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +promiscuité promiscuité nom f s 0.57 4.26 0.57 3.85 +promiscuités promiscuité nom f p 0.57 4.26 0 0.41 +promise promis adj f s 10.21 6.62 2.26 4.12 +promises promettre ver f p 185.26 101.42 0.34 0.81 par:pas; +promit promettre ver 185.26 101.42 0.52 10.61 ind:pas:3s; +promo promo nom f s 4.86 0.34 4.74 0.34 +promontoire promontoire nom m s 0.18 3.24 0.18 2.77 +promontoires promontoire nom m p 0.18 3.24 0 0.47 +promos promo nom f p 4.86 0.34 0.12 0 +promoteur promoteur nom m s 1.41 1.82 1.12 0.81 +promoteurs promoteur nom m p 1.41 1.82 0.28 1.01 +promotion promotion nom f s 14.81 7.64 14.12 6.55 +promotionnait promotionner ver 0 0.07 0 0.07 ind:imp:3s; +promotionnel promotionnel adj m s 0.23 0.14 0.1 0.07 +promotionnelle promotionnel adj f s 0.23 0.14 0.08 0 +promotionnelles promotionnel adj f p 0.23 0.14 0.05 0.07 +promotions promotion nom f p 14.81 7.64 0.7 1.08 +promotrice promoteur nom f s 1.41 1.82 0.01 0 +promouvaient promouvoir ver 6.08 3.11 0.01 0.07 ind:imp:3p; +promouvez promouvoir ver 6.08 3.11 0.01 0 ind:pre:2p; +promouvoir promouvoir ver 6.08 3.11 1.56 0.74 inf; +prompt prompt adj m s 2.06 8.65 1.7 3.72 +prompte prompt adj f s 2.06 8.65 0.22 2.57 +promptement promptement adv 0.35 2.7 0.35 2.7 +promptes prompt adj f p 2.06 8.65 0.03 0.61 +prompteur prompteur nom m s 0.24 0.07 0.21 0 +prompteurs prompteur nom m p 0.24 0.07 0.03 0.07 +promptitude promptitude nom f s 0.21 2.23 0.21 2.23 +prompto prompto adv 0 0.07 0 0.07 +prompts prompt adj m p 2.06 8.65 0.12 1.76 +promu promouvoir ver m s 6.08 3.11 3.56 1.62 par:pas; +promue promouvoir ver f s 6.08 3.11 0.65 0.34 par:pas; +promues promouvoir ver f p 6.08 3.11 0 0.07 par:pas; +promulgation promulgation nom f s 0.04 0.34 0.04 0.34 +promulguait promulguer ver 0.24 1.82 0 0.2 ind:imp:3s; +promulguant promulguer ver 0.24 1.82 0.1 0.07 par:pre; +promulguer promulguer ver 0.24 1.82 0.06 0.41 inf; +promulguera promulguer ver 0.24 1.82 0 0.07 ind:fut:3s; +promulgué promulguer ver m s 0.24 1.82 0.04 0.2 par:pas; +promulguée promulguer ver f s 0.24 1.82 0.01 0.34 par:pas; +promulguées promulguer ver f p 0.24 1.82 0.03 0.41 par:pas; +promulgués promulguer ver m p 0.24 1.82 0 0.14 par:pas; +promus promouvoir ver m p 6.08 3.11 0.23 0.2 ind:pas:1s;par:pas; +promut promouvoir ver 6.08 3.11 0.01 0.07 ind:pas:3s; +promène promener ver 37.8 97.77 6.97 11.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +promènent promener ver 37.8 97.77 1.58 3.11 ind:pre:3p; +promènera promener ver 37.8 97.77 0.3 0.14 ind:fut:3s; +promènerai promener ver 37.8 97.77 0.06 0.81 ind:fut:1s; +promèneraient promener ver 37.8 97.77 0.12 0.2 cnd:pre:3p; +promènerais promener ver 37.8 97.77 0.01 0.27 cnd:pre:1s; +promènerait promener ver 37.8 97.77 0.16 0.34 cnd:pre:3s; +promèneras promener ver 37.8 97.77 0.03 0.14 ind:fut:2s; +promènerez promener ver 37.8 97.77 0.04 0.07 ind:fut:2p; +promènerions promener ver 37.8 97.77 0 0.07 cnd:pre:1p; +promènerons promener ver 37.8 97.77 0.01 0.14 ind:fut:1p; +promènes promener ver 37.8 97.77 1.08 0.68 ind:pre:2s; +prométhéen prométhéen adj m s 0.04 0 0.03 0 +prométhéenne prométhéen adj f s 0.04 0 0.01 0 +promîmes promettre ver 185.26 101.42 0.01 0.07 ind:pas:1p; +promît promettre ver 185.26 101.42 0 0.14 sub:imp:3s; +pronateurs pronateur adj m p 0.01 0 0.01 0 +pronation pronation nom f s 0.04 0.14 0.04 0.14 +pronom pronom nom m s 0.22 0.74 0.12 0.68 +pronominal pronominal adj m s 0 0.2 0 0.07 +pronominale pronominal adj f s 0 0.2 0 0.07 +pronominaux pronominal adj m p 0 0.2 0 0.07 +pronoms pronom nom m p 0.22 0.74 0.1 0.07 +prononce prononcer ver 24.99 86.08 5.82 9.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +prononcent prononcer ver 24.99 86.08 0.51 0.74 ind:pre:3p; +prononcer prononcer ver 24.99 86.08 7.56 21.76 inf; +prononcera prononcer ver 24.99 86.08 0.1 0.54 ind:fut:3s; +prononcerai prononcer ver 24.99 86.08 0.2 0 ind:fut:1s; +prononceraient prononcer ver 24.99 86.08 0 0.14 cnd:pre:3p; +prononcerais prononcer ver 24.99 86.08 0.02 0 cnd:pre:1s;cnd:pre:2s; +prononcerait prononcer ver 24.99 86.08 0.03 0.47 cnd:pre:3s; +prononceras prononcer ver 24.99 86.08 0.03 0 ind:fut:2s; +prononcerez prononcer ver 24.99 86.08 0.02 0.14 ind:fut:2p; +prononceriez prononcer ver 24.99 86.08 0 0.07 cnd:pre:2p; +prononcerons prononcer ver 24.99 86.08 0.12 0 ind:fut:1p; +prononceront prononcer ver 24.99 86.08 0.02 0.14 ind:fut:3p; +prononces prononcer ver 24.99 86.08 0.85 0 ind:pre:2s; +prononcez prononcer ver 24.99 86.08 0.91 0.41 imp:pre:2p;ind:pre:2p; +prononciation prononciation nom f s 0.68 1.69 0.67 1.55 +prononciations prononciation nom f p 0.68 1.69 0.01 0.14 +prononciez prononcer ver 24.99 86.08 0.18 0 ind:imp:2p; +prononcions prononcer ver 24.99 86.08 0.04 0.14 ind:imp:1p; +prononcèrent prononcer ver 24.99 86.08 0 0.41 ind:pas:3p; +prononcé prononcer ver m s 24.99 86.08 4.99 16.69 par:pas; +prononcée prononcer ver f s 24.99 86.08 0.57 4.59 par:pas; +prononcées prononcer ver f p 24.99 86.08 0.18 1.69 par:pas; +prononcés prononcer ver m p 24.99 86.08 0.68 4.12 par:pas; +prononça prononcer ver 24.99 86.08 0.58 8.78 ind:pas:3s; +prononçable prononçable adj s 0 0.27 0 0.27 +prononçai prononcer ver 24.99 86.08 0.01 1.28 ind:pas:1s; +prononçaient prononcer ver 24.99 86.08 0.01 1.15 ind:imp:3p; +prononçais prononcer ver 24.99 86.08 0.05 0.47 ind:imp:1s; +prononçait prononcer ver 24.99 86.08 0.38 8.58 ind:imp:3s; +prononçant prononcer ver 24.99 86.08 0.95 3.85 par:pre; +prononças prononcer ver 24.99 86.08 0.1 0 ind:pas:2s; +prononçons prononcer ver 24.99 86.08 0.07 0.2 imp:pre:1p;ind:pre:1p; +prononçât prononcer ver 24.99 86.08 0 0.54 sub:imp:3s; +pronostic pronostic nom m s 1.78 2.7 0.9 1.01 +pronostics pronostic nom m p 1.78 2.7 0.89 1.69 +pronostiquait pronostiquer ver 0.12 0.47 0.01 0.2 ind:imp:3s; +pronostique pronostiquer ver 0.12 0.47 0.06 0.14 ind:pre:1s;ind:pre:3s; +pronostiquer pronostiquer ver 0.12 0.47 0.04 0.14 inf; +pronostiqueur pronostiqueur nom m s 0.06 0 0.06 0 +pronostiquiez pronostiquer ver 0.12 0.47 0.01 0 ind:imp:2p; +pronunciamiento pronunciamiento nom m s 0 0.14 0 0.14 +propagande propagande nom f s 4.98 10.07 4.98 9.86 +propagandes propagande nom f p 4.98 10.07 0 0.2 +propagandiste propagandiste nom s 0.02 0.54 0.01 0.2 +propagandistes propagandiste nom p 0.02 0.54 0.01 0.34 +propagateur propagateur nom m s 0.03 0.41 0.02 0.14 +propagateurs propagateur nom m p 0.03 0.41 0.01 0.27 +propagation propagation nom f s 0.59 0.95 0.59 0.88 +propagations propagation nom f p 0.59 0.95 0 0.07 +propage propager ver 6.42 6.01 1.98 0.81 ind:pre:1s;ind:pre:3s; +propagea propager ver 6.42 6.01 0.01 0.61 ind:pas:3s; +propageaient propager ver 6.42 6.01 0 0.61 ind:imp:3p; +propageait propager ver 6.42 6.01 0.2 1.01 ind:imp:3s; +propageant propager ver 6.42 6.01 0.08 0.27 par:pre; +propagent propager ver 6.42 6.01 0.3 0.68 ind:pre:3p; +propager propager ver 6.42 6.01 1.99 0.88 inf; +propagera propager ver 6.42 6.01 0.41 0 ind:fut:3s; +propageraient propager ver 6.42 6.01 0 0.07 cnd:pre:3p; +propagerait propager ver 6.42 6.01 0.08 0 cnd:pre:3s; +propagez propager ver 6.42 6.01 0.05 0.14 imp:pre:2p;ind:pre:2p; +propageât propager ver 6.42 6.01 0 0.07 sub:imp:3s; +propagèrent propager ver 6.42 6.01 0.01 0.2 ind:pas:3p; +propagé propager ver m s 6.42 6.01 0.96 0.34 par:pas; +propagée propager ver f s 6.42 6.01 0.3 0.14 par:pas; +propagées propager ver f p 6.42 6.01 0.02 0.14 par:pas; +propagés propager ver m p 6.42 6.01 0.02 0.07 par:pas; +propane propane nom m s 0.39 0 0.39 0 +propension propension nom f s 0.41 1.96 0.41 1.96 +propergol propergol nom m s 0.01 0 0.01 0 +prophase prophase nom f s 0.02 0 0.02 0 +prophylactique prophylactique adj s 0.17 0.41 0.14 0.14 +prophylactiques prophylactique adj m p 0.17 0.41 0.03 0.27 +prophylaxie prophylaxie nom f s 0.04 0.14 0.04 0.14 +prophète prophète nom m s 12.36 10.61 8.49 6.42 +prophètes prophète nom m p 12.36 10.61 2.83 4.05 +prophétesse prophète nom f s 12.36 10.61 1.04 0.14 +prophétie prophétie nom f s 5.36 3.51 3.69 1.89 +prophéties prophétie nom f p 5.36 3.51 1.66 1.62 +prophétique prophétique adj s 0.84 1.55 0.55 1.01 +prophétiquement prophétiquement adv 0 0.07 0 0.07 +prophétiques prophétique adj p 0.84 1.55 0.29 0.54 +prophétisaient prophétiser ver 0.43 1.35 0 0.2 ind:imp:3p; +prophétisait prophétiser ver 0.43 1.35 0 0.47 ind:imp:3s; +prophétisant prophétiser ver 0.43 1.35 0.02 0 par:pre; +prophétise prophétiser ver 0.43 1.35 0.02 0.27 imp:pre:2s;ind:pre:3s; +prophétisent prophétiser ver 0.43 1.35 0.02 0.07 ind:pre:3p; +prophétiser prophétiser ver 0.43 1.35 0.14 0.14 inf; +prophétisez prophétiser ver 0.43 1.35 0 0.07 ind:pre:2p; +prophétisé prophétiser ver m s 0.43 1.35 0.22 0.14 par:pas; +propice propice adj s 2.86 9.8 2.13 7.77 +propices propice adj p 2.86 9.8 0.73 2.03 +propionate propionate nom m s 0.01 0.07 0.01 0.07 +propitiatoire propitiatoire adj s 0 0.68 0 0.47 +propitiatoires propitiatoire adj f p 0 0.68 0 0.2 +propolis propolis nom m 0.1 0 0.1 0 +proportion proportion nom f s 3.17 12.7 1.3 4.26 +proportionnalité proportionnalité nom f s 0.12 0 0.12 0 +proportionnel proportionnel adj m s 0.86 1.08 0.2 0.34 +proportionnelle proportionnel adj f s 0.86 1.08 0.51 0.74 +proportionnellement proportionnellement adv 0.08 0.34 0.08 0.34 +proportionnelles proportionnel adj f p 0.86 1.08 0.15 0 +proportionner proportionner ver 0.07 1.22 0 0.14 inf; +proportionné proportionné adj m s 0.46 0.74 0.16 0.41 +proportionnée proportionné adj f s 0.46 0.74 0.26 0.2 +proportionnées proportionner ver f p 0.07 1.22 0.02 0 par:pas; +proportionnés proportionné adj m p 0.46 0.74 0.04 0.07 +proportions proportion nom f p 3.17 12.7 1.87 8.45 +propos propos nom m 115.21 106.28 115.21 106.28 +proposa proposer ver 70.02 119.66 0.52 22.91 ind:pas:3s; +proposai proposer ver 70.02 119.66 0.01 2.5 ind:pas:1s; +proposaient proposer ver 70.02 119.66 0.1 3.11 ind:imp:3p; +proposais proposer ver 70.02 119.66 0.8 3.11 ind:imp:1s;ind:imp:2s; +proposait proposer ver 70.02 119.66 0.48 15.61 ind:imp:3s; +proposant proposer ver 70.02 119.66 0.64 3.38 par:pre; +propose proposer ver 70.02 119.66 23.57 21.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +proposent proposer ver 70.02 119.66 1.21 2.16 ind:pre:3p; +proposer proposer ver 70.02 119.66 13.46 15.54 inf;; +proposera proposer ver 70.02 119.66 0.28 0.34 ind:fut:3s; +proposerai proposer ver 70.02 119.66 0.48 0.14 ind:fut:1s; +proposeraient proposer ver 70.02 119.66 0.03 0.14 cnd:pre:3p; +proposerais proposer ver 70.02 119.66 0.28 0.41 cnd:pre:1s;cnd:pre:2s; +proposerait proposer ver 70.02 119.66 0.01 0.74 cnd:pre:3s; +proposeras proposer ver 70.02 119.66 0.05 0.07 ind:fut:2s; +proposerez proposer ver 70.02 119.66 0.04 0.14 ind:fut:2p; +proposeriez proposer ver 70.02 119.66 0.01 0 cnd:pre:2p; +proposerions proposer ver 70.02 119.66 0 0.07 cnd:pre:1p; +proposerons proposer ver 70.02 119.66 0.19 0 ind:fut:1p; +proposeront proposer ver 70.02 119.66 0.13 0.14 ind:fut:3p; +proposes proposer ver 70.02 119.66 5.2 0.61 ind:pre:2s; +proposez proposer ver 70.02 119.66 3.3 1.82 imp:pre:2p;ind:pre:2p; +proposiez proposer ver 70.02 119.66 0.09 0 ind:imp:2p; +proposions proposer ver 70.02 119.66 0.04 0.41 ind:imp:1p; +proposition proposition nom f s 22.43 20.14 19.28 12.64 +propositions proposition nom f p 22.43 20.14 3.15 7.5 +proposons proposer ver 70.02 119.66 1.13 0.27 imp:pre:1p;ind:pre:1p; +proposâmes proposer ver 70.02 119.66 0 0.07 ind:pas:1p; +proposât proposer ver 70.02 119.66 0 0.41 sub:imp:3s; +proposèrent proposer ver 70.02 119.66 0.01 1.08 ind:pas:3p; +proposé proposer ver m s 70.02 119.66 16.86 18.92 imp:pre:2s;par:pas; +proposée proposer ver f s 70.02 119.66 0.44 1.96 par:pas; +proposées proposé adj f p 0.54 1.15 0.14 0.27 +proposés proposer ver m p 70.02 119.66 0.63 1.22 par:pas; +propre propre adj s 163.24 207.5 120.61 149.8 +propre_à_rien propre_à_rien nom m s 0 0.07 0 0.07 +proprement proprement adv 4.54 16.22 4.54 16.22 +propres propre adj p 163.24 207.5 42.63 57.7 +propret propret adj m s 0.18 2.03 0.02 0.81 +proprets propret adj m p 0.18 2.03 0.03 0.07 +proprette propret adj f s 0.18 2.03 0.1 0.54 +proprettes propret adj f p 0.18 2.03 0.02 0.61 +propreté propreté nom f s 2.17 7.97 2.17 7.97 +proprio proprio nom m s 3.55 4.12 3.08 3.78 +proprios proprio nom m p 3.55 4.12 0.47 0.34 +propriétaire propriétaire nom s 37.27 32.77 29.77 23.51 +propriétaires propriétaire nom p 37.27 32.77 7.5 9.26 +propriété propriété nom f s 22.7 20.61 19.18 17.43 +propriétés propriété nom f p 22.7 20.61 3.52 3.18 +propulsa propulser ver 1.37 5.95 0.01 0.61 ind:pas:3s; +propulsaient propulser ver 1.37 5.95 0 0.14 ind:imp:3p; +propulsais propulser ver 1.37 5.95 0 0.07 ind:imp:1s; +propulsait propulser ver 1.37 5.95 0.01 0.47 ind:imp:3s; +propulsant propulser ver 1.37 5.95 0.04 0.27 par:pre; +propulse propulser ver 1.37 5.95 0.32 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +propulsent propulser ver 1.37 5.95 0.02 0.2 ind:pre:3p; +propulser propulser ver 1.37 5.95 0.22 0.74 inf; +propulsera propulser ver 1.37 5.95 0.07 0 ind:fut:3s; +propulserait propulser ver 1.37 5.95 0.01 0 cnd:pre:3s; +propulseur propulseur nom m s 1.88 0.07 0.69 0.07 +propulseurs propulseur nom m p 1.88 0.07 1.18 0 +propulsif propulsif adj m s 0.01 0 0.01 0 +propulsion propulsion nom f s 2.07 0.34 2.05 0.34 +propulsions propulsion nom f p 2.07 0.34 0.02 0 +propulsât propulser ver 1.37 5.95 0 0.07 sub:imp:3s; +propulsé propulser ver m s 1.37 5.95 0.36 1.35 par:pas; +propulsée propulser ver f s 1.37 5.95 0.19 0.88 par:pas; +propulsées propulser ver f p 1.37 5.95 0.02 0.07 par:pas; +propulsés propulser ver m p 1.37 5.95 0.1 0.2 par:pas; +propylène propylène nom m s 0.05 0 0.05 0 +propylées propylée nom m p 0 0.14 0 0.14 +propédeute propédeute nom s 0 0.07 0 0.07 +prorata prorata nom m 0.15 0.2 0.15 0.2 +prorogation prorogation nom f s 0.04 0.07 0.04 0.07 +proroger proroger ver 0.1 0.14 0.1 0 inf; +prorogé proroger ver m s 0.1 0.14 0 0.14 par:pas; +pros pro nom p 19.45 2.03 5 0.41 +prosateur prosateur nom m s 0 0.2 0 0.14 +prosateurs prosateur nom m p 0 0.2 0 0.07 +prosaïque prosaïque adj s 0.3 1.55 0.28 0.88 +prosaïquement prosaïquement adv 0 0.47 0 0.47 +prosaïques prosaïque adj p 0.3 1.55 0.03 0.68 +prosaïsme prosaïsme nom m s 0 0.14 0 0.14 +proscenium proscenium nom m s 0.01 0.14 0.01 0.14 +proscription proscription nom f s 0.01 0.27 0.01 0.2 +proscriptions proscription nom f p 0.01 0.27 0 0.07 +proscrire proscrire ver 1.19 1.28 0.35 0.14 inf; +proscrit proscrire ver m s 1.19 1.28 0.53 0.27 ind:pre:3s;par:pas; +proscrite proscrire ver f s 1.19 1.28 0.02 0.07 par:pas; +proscrites proscrire ver f p 1.19 1.28 0.11 0.07 par:pas; +proscrits proscrit nom m p 0.55 0.54 0.33 0.41 +proscrivait proscrire ver 1.19 1.28 0 0.14 ind:imp:3s; +proscrivant proscrire ver 1.19 1.28 0 0.14 par:pre; +proscrivit proscrire ver 1.19 1.28 0 0.14 ind:pas:3s; +prose prose nom f s 0.81 3.31 0.81 3.31 +prosit prosit ono 0.38 0.41 0.38 0.41 +prosodie prosodie nom f s 0 0.27 0 0.27 +prosodique prosodique adj f s 0 0.07 0 0.07 +prosopopées prosopopée nom f p 0 0.07 0 0.07 +prosoviétique prosoviétique adj s 0 0.07 0 0.07 +prospect prospect nom m s 0.18 0 0.18 0 +prospectais prospecter ver 0.82 1.49 0.01 0.07 ind:imp:1s; +prospectait prospecter ver 0.82 1.49 0.01 0.2 ind:imp:3s; +prospectant prospecter ver 0.82 1.49 0 0.2 par:pre; +prospecte prospecter ver 0.82 1.49 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prospecter prospecter ver 0.82 1.49 0.66 0.68 inf; +prospecteur prospecteur nom m s 0.94 0.27 0.34 0.07 +prospecteurs prospecteur nom m p 0.94 0.27 0.6 0.2 +prospectif prospectif adj m s 0 0.34 0 0.2 +prospection prospection nom f s 0.17 2.7 0.17 2.3 +prospections prospection nom f p 0.17 2.7 0 0.41 +prospective prospective nom f s 0.02 0.14 0.02 0.14 +prospectus prospectus nom m 2.06 6.49 2.06 6.49 +prospecté prospecter ver m s 0.82 1.49 0.11 0.14 par:pas; +prospère prospère adj s 3.54 3.18 3.19 2.23 +prospèrent prospérer ver 1.31 2.03 0.16 0.41 ind:pre:3p; +prospères prospère adj p 3.54 3.18 0.35 0.95 +prospéra prospérer ver 1.31 2.03 0.05 0.14 ind:pas:3s; +prospéraient prospérer ver 1.31 2.03 0 0.41 ind:imp:3p; +prospérait prospérer ver 1.31 2.03 0.04 0.41 ind:imp:3s; +prospérer prospérer ver 1.31 2.03 0.44 0.47 inf; +prospérera prospérer ver 1.31 2.03 0.05 0 ind:fut:3s; +prospéreraient prospérer ver 1.31 2.03 0.01 0 cnd:pre:3p; +prospérité prospérité nom f s 3.09 5.14 3.08 4.93 +prospérités prospérité nom f p 3.09 5.14 0.01 0.2 +prospérons prospérer ver 1.31 2.03 0.01 0 ind:pre:1p; +prospérèrent prospérer ver 1.31 2.03 0 0.07 ind:pas:3p; +prospéré prospérer ver m s 1.31 2.03 0.34 0 par:pas; +prostate prostate nom f s 1.59 1.42 1.59 1.42 +prostatectomie prostatectomie nom f s 0.01 0 0.01 0 +prostatique prostatique adj s 0.04 0.2 0.04 0.2 +prostatite prostatite nom f s 0.11 0 0.11 0 +prosterna prosterner ver 1.75 4.73 0.01 0.68 ind:pas:3s; +prosternaient prosterner ver 1.75 4.73 0.04 0.07 ind:imp:3p; +prosternais prosterner ver 1.75 4.73 0.14 0.07 ind:imp:1s; +prosternait prosterner ver 1.75 4.73 0 0.2 ind:imp:3s; +prosternant prosterner ver 1.75 4.73 0.18 0.14 par:pre; +prosternation prosternation nom f s 0.11 0.27 0.09 0.07 +prosternations prosternation nom f p 0.11 0.27 0.02 0.2 +prosterne prosterner ver 1.75 4.73 0.52 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prosternent prosterner ver 1.75 4.73 0.12 0.07 ind:pre:3p; +prosterner prosterner ver 1.75 4.73 0.12 0.95 inf; +prosternera prosterner ver 1.75 4.73 0.07 0 ind:fut:3s; +prosternerait prosterner ver 1.75 4.73 0 0.07 cnd:pre:3s; +prosterneras prosterner ver 1.75 4.73 0 0.14 ind:fut:2s; +prosternerons prosterner ver 1.75 4.73 0.03 0 ind:fut:1p; +prosterneront prosterner ver 1.75 4.73 0.01 0 ind:fut:3p; +prosternez prosterner ver 1.75 4.73 0.49 0.14 imp:pre:2p;ind:pre:2p; +prosternons prosterner ver 1.75 4.73 0.01 0 imp:pre:1p; +prosternèrent prosterner ver 1.75 4.73 0.01 0.14 ind:pas:3p; +prosterné prosterner ver m s 1.75 4.73 0.01 1.15 par:pas; +prosternée prosterner ver f s 1.75 4.73 0 0.27 par:pas; +prosternées prosterner ver f p 1.75 4.73 0 0.14 par:pas; +prosternés prosterner ver m p 1.75 4.73 0.01 0.27 par:pas; +prosthétique prosthétique adj m s 0.01 0 0.01 0 +prostitua prostituer ver 3.24 1.49 0 0.07 ind:pas:3s; +prostituais prostituer ver 3.24 1.49 0.03 0 ind:imp:1s; +prostituait prostituer ver 3.24 1.49 0.16 0.2 ind:imp:3s; +prostituant prostituer ver 3.24 1.49 0.01 0.07 par:pre; +prostitue prostituer ver 3.24 1.49 0.92 0.07 ind:pre:1s;ind:pre:3s; +prostituent prostituer ver 3.24 1.49 0.13 0.07 ind:pre:3p; +prostituer prostituer ver 3.24 1.49 0.77 0.47 inf; +prostituerais prostituer ver 3.24 1.49 0.14 0 cnd:pre:2s; +prostitution prostitution nom f s 6.72 2.97 6.72 2.77 +prostitutionnel prostitutionnel adj m s 0 0.07 0 0.07 +prostitutions prostitution nom f p 6.72 2.97 0 0.2 +prostitué prostituer ver m s 3.24 1.49 0.44 0 par:pas; +prostituée prostitué nom f s 14.21 9.46 7.53 5.68 +prostituées prostitué nom f p 14.21 9.46 5.63 3.58 +prostitués prostitué nom m p 14.21 9.46 0.61 0.14 +prostrant prostrer ver 0 0.07 0 0.07 par:pre; +prostration prostration nom f s 0.14 1.01 0.14 0.95 +prostrations prostration nom f p 0.14 1.01 0 0.07 +prostré prostré adj m s 0.42 4.93 0.25 2.03 +prostrée prostré adj f s 0.42 4.93 0.15 2.36 +prostrées prostré adj f p 0.42 4.93 0 0.07 +prostrés prostré adj m p 0.42 4.93 0.02 0.47 +prosélyte prosélyte nom s 0.14 0.2 0.14 0 +prosélytes prosélyte nom p 0.14 0.2 0 0.2 +prosélytique prosélytique adj m s 0 0.07 0 0.07 +prosélytisme prosélytisme nom m s 0.2 0.47 0.2 0.47 +protagoniste protagoniste nom s 0.72 2.03 0.42 0.54 +protagonistes protagoniste nom p 0.72 2.03 0.3 1.49 +protal protal nom m s 0.01 0.2 0.01 0.2 +prote prote nom m s 0 1.35 0 1.22 +protecteur protecteur nom m s 3.83 5.61 2.71 4.26 +protecteurs protecteur nom m p 3.83 5.61 0.79 0.68 +protection protection nom f s 24.78 17.64 23.88 17.09 +protectionnisme protectionnisme nom m s 0.02 0.14 0.02 0.14 +protections protection nom f p 24.78 17.64 0.91 0.54 +protectorat protectorat nom m s 0.18 1.01 0.18 0.88 +protectorats protectorat nom m p 0.18 1.01 0 0.14 +protectrice protecteur adj f s 3.98 10.68 0.92 3.58 +protectrices protecteur adj f p 3.98 10.68 0.21 0.74 +protes prote nom m p 0 1.35 0 0.14 +protesta protester ver 10.13 38.58 0.04 8.99 ind:pas:3s; +protestai protester ver 10.13 38.58 0 2.43 ind:pas:1s; +protestaient protester ver 10.13 38.58 0.05 0.61 ind:imp:3p; +protestais protester ver 10.13 38.58 0.03 1.01 ind:imp:1s; +protestait protester ver 10.13 38.58 0.08 4.12 ind:imp:3s; +protestant protestant adj m s 2.66 3.99 0.91 1.42 +protestante protestant adj f s 2.66 3.99 0.91 1.15 +protestantes protestant adj f p 2.66 3.99 0.14 0.61 +protestantisme protestantisme nom m s 0.31 0.81 0.31 0.81 +protestants protestant nom m p 2.43 4.12 1.79 1.76 +protestataires protestataire nom p 0.07 0.07 0.07 0.07 +protestation protestation nom f s 3.14 13.45 1.69 6.49 +protestations protestation nom f p 3.14 13.45 1.45 6.96 +proteste protester ver 10.13 38.58 3.06 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +protestent protester ver 10.13 38.58 1.06 0.61 ind:pre:3p; +protester protester ver 10.13 38.58 3.44 8.65 inf; +protestera protester ver 10.13 38.58 0.31 0.14 ind:fut:3s; +protesterai protester ver 10.13 38.58 0.05 0.14 ind:fut:1s; +protesterais protester ver 10.13 38.58 0.01 0.2 cnd:pre:1s;cnd:pre:2s; +protesterait protester ver 10.13 38.58 0.02 0.07 cnd:pre:3s; +protesterons protester ver 10.13 38.58 0.02 0 ind:fut:1p; +protestes protester ver 10.13 38.58 0.04 0.14 ind:pre:2s; +protestez protester ver 10.13 38.58 0.52 0.61 imp:pre:2p;ind:pre:2p; +protestions protester ver 10.13 38.58 0 0.14 ind:imp:1p; +protestons protester ver 10.13 38.58 0.36 0 imp:pre:1p;ind:pre:1p; +protestâmes protester ver 10.13 38.58 0 0.07 ind:pas:1p; +protestât protester ver 10.13 38.58 0 0.07 sub:imp:3s; +protestèrent protester ver 10.13 38.58 0.01 0.2 ind:pas:3p; +protesté protester ver m s 10.13 38.58 0.88 2.64 par:pas; +protestés protester ver m p 10.13 38.58 0.01 0 par:pas; +proteus proteus nom m 0.62 0 0.62 0 +prothrombine prothrombine nom f s 0.04 0 0.04 0 +prothèse prothèse nom f s 2.11 1.69 1.73 0.68 +prothèses prothèse nom f p 2.11 1.69 0.39 1.01 +prothésiste prothésiste nom s 0.23 0 0.1 0 +prothésistes prothésiste nom p 0.23 0 0.14 0 +prothétique prothétique adj f s 0.01 0 0.01 0 +protide protide nom m s 0.14 0.07 0 0.07 +protides protide nom m p 0.14 0.07 0.14 0 +protidique protidique adj m s 0.01 0 0.01 0 +protistes protiste nom m p 0.01 0 0.01 0 +protococcus protococcus nom m 0.01 0 0.01 0 +protocolaire protocolaire adj s 0.06 1.22 0.06 0.95 +protocolaires protocolaire adj p 0.06 1.22 0 0.27 +protocole protocole nom m s 6.01 5.61 4.36 5.34 +protocoles protocole nom m p 6.01 5.61 1.66 0.27 +protocoques protocoque nom m p 0.01 0 0.01 0 +protohistoire protohistoire nom f s 0 0.14 0 0.14 +proton proton nom m s 0.53 0.14 0.21 0.07 +protonique protonique adj s 0.09 0 0.09 0 +protonotaire protonotaire nom m s 0 0.34 0 0.34 +protons proton nom m p 0.53 0.14 0.32 0.07 +protoplasme protoplasme nom m s 0.09 0 0.08 0 +protoplasmes protoplasme nom m p 0.09 0 0.01 0 +protoplasmique protoplasmique adj f s 0 0.07 0 0.07 +protoplaste protoplaste nom m s 0.01 0 0.01 0 +prototype prototype nom m s 2.81 1.08 2.29 0.74 +prototypes prototype nom m p 2.81 1.08 0.53 0.34 +protoxyde protoxyde nom m s 0.11 0 0.11 0 +protozoaire protozoaire nom m s 0.04 0 0.04 0 +protrusion protrusion nom f s 0.01 0 0.01 0 +protubérance protubérance nom f s 0.42 0.74 0.33 0.47 +protubérances protubérance nom f p 0.42 0.74 0.09 0.27 +protubérant protubérant adj m s 0.04 0.34 0.04 0.07 +protubérante protubérant adj f s 0.04 0.34 0 0.07 +protubérantes protubérant adj f p 0.04 0.34 0 0.14 +protubérants protubérant adj m p 0.04 0.34 0 0.07 +protège protéger ver 130.71 72.23 27.45 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +protège_cahier protège_cahier nom m s 0.01 0.07 0.01 0.07 +protège_dents protège_dents nom m 0.1 0.27 0.1 0.27 +protège_slip protège_slip nom m s 0.03 0 0.03 0 +protège_tibia protège_tibia nom m s 0.02 0 0.02 0 +protègent protéger ver 130.71 72.23 3.87 2.43 ind:pre:3p;sub:pre:3p; +protèges protéger ver 130.71 72.23 2.37 0.27 ind:pre:2s;sub:pre:2s; +protéase protéase nom f s 0.01 0 0.01 0 +protégea protéger ver 130.71 72.23 0.03 0.41 ind:pas:3s; +protégeai protéger ver 130.71 72.23 0 0.14 ind:pas:1s; +protégeaient protéger ver 130.71 72.23 0.81 2.97 ind:imp:3p; +protégeais protéger ver 130.71 72.23 1.1 0.47 ind:imp:1s;ind:imp:2s; +protégeait protéger ver 130.71 72.23 2.42 8.45 ind:imp:3s; +protégeant protéger ver 130.71 72.23 1.15 3.65 par:pre; +protégeons protéger ver 130.71 72.23 0.81 0 imp:pre:1p;ind:pre:1p; +protéger protéger ver 130.71 72.23 62.53 26.82 inf;;inf;;inf;;inf;; +protégera protéger ver 130.71 72.23 4.26 0.34 ind:fut:3s; +protégerai protéger ver 130.71 72.23 1.9 0.07 ind:fut:1s; +protégeraient protéger ver 130.71 72.23 0.09 0.27 cnd:pre:3p; +protégerais protéger ver 130.71 72.23 0.21 0.07 cnd:pre:1s;cnd:pre:2s; +protégerait protéger ver 130.71 72.23 0.4 0.95 cnd:pre:3s; +protégeras protéger ver 130.71 72.23 0.31 0 ind:fut:2s; +protégerez protéger ver 130.71 72.23 0.29 0 ind:fut:2p; +protégeriez protéger ver 130.71 72.23 0.06 0 cnd:pre:2p; +protégerons protéger ver 130.71 72.23 0.18 0 ind:fut:1p; +protégeront protéger ver 130.71 72.23 0.49 0.14 ind:fut:3p; +protégez protéger ver 130.71 72.23 5.38 0.34 imp:pre:2p;ind:pre:2p; +protégeât protéger ver 130.71 72.23 0 0.07 sub:imp:3s; +protégiez protéger ver 130.71 72.23 0.27 0 ind:imp:2p; +protégions protéger ver 130.71 72.23 0.14 0.2 ind:imp:1p; +protégé protéger ver m s 130.71 72.23 7.76 6.69 par:pas; +protégée protéger ver f s 130.71 72.23 3.68 3.85 par:pas; +protégées protéger ver f p 130.71 72.23 0.73 1.15 par:pas; +protégés protéger ver m p 130.71 72.23 2.03 2.97 par:pas; +protéiforme protéiforme adj s 0.01 0.14 0.01 0.14 +protéine protéine nom f s 3.59 0.47 0.89 0.07 +protéines protéine nom f p 3.59 0.47 2.71 0.41 +protéinique protéinique adj m s 0.01 0 0.01 0 +protéinurie protéinurie nom f s 0.04 0 0.04 0 +protéiné protéiné adj m s 0.2 0 0.08 0 +protéinée protéiné adj f s 0.2 0 0.12 0 +protéique protéique adj s 0.11 0 0.11 0 +protéolytique protéolytique adj f s 0 0.07 0 0.07 +protêt protêt nom m s 0 0.14 0 0.07 +protêts protêt nom m p 0 0.14 0 0.07 +proudhonisme proudhonisme nom m s 0 0.07 0 0.07 +proue proue nom f s 1.3 5.47 1.3 5.34 +proues proue nom f p 1.3 5.47 0 0.14 +prouesse prouesse nom f s 1.15 5.14 0.27 1.42 +prouesses prouesse nom f p 1.15 5.14 0.88 3.72 +proustien proustien adj m s 0.02 0.14 0.02 0 +proustienne proustien adj f s 0.02 0.14 0 0.14 +prout prout ono 0.04 0.27 0.04 0.27 +prouts prout nom m p 0.32 0 0.07 0 +prouva prouver ver 88.83 52.43 0.04 0.88 ind:pas:3s; +prouvable prouvable adj s 0.02 0.07 0.02 0.07 +prouvai prouver ver 88.83 52.43 0 0.07 ind:pas:1s; +prouvaient prouver ver 88.83 52.43 0.14 1.22 ind:imp:3p; +prouvais prouver ver 88.83 52.43 0.08 0.07 ind:imp:1s; +prouvait prouver ver 88.83 52.43 0.53 5.14 ind:imp:3s; +prouvant prouver ver 88.83 52.43 1.09 1.42 par:pre; +prouve prouver ver 88.83 52.43 23.25 13.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +prouvent prouver ver 88.83 52.43 2.71 1.35 ind:pre:3p; +prouver prouver ver 88.83 52.43 41.06 21.15 ind:pre:2p;inf; +prouvera prouver ver 88.83 52.43 2.18 0.27 ind:fut:3s; +prouverai prouver ver 88.83 52.43 2.82 0.34 ind:fut:1s; +prouveraient prouver ver 88.83 52.43 0.01 0.07 cnd:pre:3p; +prouverait prouver ver 88.83 52.43 0.91 0.54 cnd:pre:3s; +prouveras prouver ver 88.83 52.43 0.34 0.07 ind:fut:2s; +prouverez prouver ver 88.83 52.43 0.26 0.14 ind:fut:2p; +prouverons prouver ver 88.83 52.43 0.29 0 ind:fut:1p; +prouveront prouver ver 88.83 52.43 0.62 0.2 ind:fut:3p; +prouves prouver ver 88.83 52.43 0.45 0 ind:pre:2s; +prouvez prouver ver 88.83 52.43 2.44 0.07 imp:pre:2p;ind:pre:2p; +prouviez prouver ver 88.83 52.43 0.33 0 ind:imp:2p; +prouvons prouver ver 88.83 52.43 0.27 0.07 imp:pre:1p;ind:pre:1p; +prouvèrent prouver ver 88.83 52.43 0.01 0.2 ind:pas:3p; +prouvé prouver ver m s 88.83 52.43 8.53 5.41 par:pas; +prouvée prouver ver f s 88.83 52.43 0.24 0.34 par:pas; +prouvées prouver ver f p 88.83 52.43 0.05 0 par:pas; +prouvés prouver ver m p 88.83 52.43 0.2 0 par:pas; +provenaient provenir ver 13.66 15.34 0.41 1.55 ind:imp:3p; +provenait provenir ver 13.66 15.34 0.98 3.04 ind:imp:3s; +provenance provenance nom f s 3.73 5.27 3.73 4.8 +provenances provenance nom f p 3.73 5.27 0 0.47 +provenant provenir ver 13.66 15.34 3.74 6.15 par:pre; +provende provende nom f s 0 0.95 0 0.95 +provenir provenir ver 13.66 15.34 1.36 1.89 inf; +provenu provenir ver m s 13.66 15.34 0.01 0 par:pas; +provençal provençal adj m s 0.05 3.58 0.01 1.28 +provençale provençal adj f s 0.05 3.58 0.03 1.69 +provençales provençal adj f p 0.05 3.58 0.01 0.2 +provençaux provençal adj m p 0.05 3.58 0 0.41 +proverbe proverbe nom m s 4.9 4.19 3.9 2.64 +proverbes proverbe nom m p 4.9 4.19 1 1.55 +proverbial proverbial adj m s 0.04 0.81 0.01 0.14 +proverbiale proverbial adj f s 0.04 0.81 0.02 0.68 +providence providence nom f s 2.04 2.5 2.04 2.5 +providentiel providentiel adj m s 0.54 3.38 0.48 1.49 +providentielle providentiel adj f s 0.54 3.38 0.04 1.55 +providentiellement providentiellement adv 0 0.61 0 0.61 +providentielles providentiel adj f p 0.54 3.38 0.01 0.07 +providentiels providentiel adj m p 0.54 3.38 0.01 0.27 +provider provider nom m s 0.03 0 0.03 0 +proviendrait provenir ver 13.66 15.34 0.03 0.07 cnd:pre:3s; +provienne provenir ver 13.66 15.34 0.16 0.07 sub:pre:3s; +proviennent provenir ver 13.66 15.34 1.77 0.61 ind:pre:3p; +provient provenir ver 13.66 15.34 5.19 1.96 ind:pre:3s; +provietnamien provietnamien adj m s 0 0.07 0 0.07 +province province nom f s 12.01 30.68 10.21 24.73 +provinces province nom f p 12.01 30.68 1.79 5.95 +provincial provincial adj m s 1.26 5.74 0.28 1.55 +provinciale provincial adj f s 1.26 5.74 0.96 3.11 +provincialement provincialement adv 0 0.07 0 0.07 +provinciales provincial adj f p 1.26 5.74 0 0.88 +provinciaux provincial nom m p 0.78 2.09 0.51 0.81 +proviseur proviseur nom m s 4.45 3.58 4.43 3.45 +proviseurs proviseur nom m p 4.45 3.58 0.02 0.14 +provision provision nom f s 7.46 18.04 1.01 5.34 +provisionnel provisionnel adj m s 0.01 0.2 0.01 0.2 +provisionner provisionner ver 0 0.14 0 0.07 inf; +provisionnons provisionner ver 0 0.14 0 0.07 imp:pre:1p; +provisions provision nom f p 7.46 18.04 6.45 12.7 +provisoire provisoire adj s 5.8 16.28 5.44 13.85 +provisoirement provisoirement adv 1.52 7.84 1.52 7.84 +provisoires provisoire adj p 5.8 16.28 0.36 2.43 +provo provo nom m s 0.17 0.14 0.12 0 +provoc provoc nom f s 0.21 0.14 0.21 0.14 +provocant provocant adj m s 1.23 5.68 0.17 1.76 +provocante provocant adj f s 1.23 5.68 0.73 2.91 +provocantes provocant adj f p 1.23 5.68 0.15 0.47 +provocants provocant adj m p 1.23 5.68 0.17 0.54 +provocateur provocateur nom m s 0.56 1.01 0.53 0.61 +provocateurs provocateur adj m p 0.32 1.15 0.04 0.47 +provocation provocation nom f s 4.19 11.01 3.32 8.99 +provocations provocation nom f p 4.19 11.01 0.87 2.03 +provocatrice provocateur adj f s 0.32 1.15 0.02 0.07 +provolone provolone nom m s 0.18 0 0.18 0 +provoqua provoquer ver 34.19 48.85 0.44 3.38 ind:pas:3s; +provoquai provoquer ver 34.19 48.85 0 0.07 ind:pas:1s; +provoquaient provoquer ver 34.19 48.85 0.08 2.3 ind:imp:3p; +provoquais provoquer ver 34.19 48.85 0.37 0.34 ind:imp:1s;ind:imp:2s; +provoquait provoquer ver 34.19 48.85 1.06 6.89 ind:imp:3s; +provoquant provoquer ver 34.19 48.85 0.95 2.97 par:pre; +provoque provoquer ver 34.19 48.85 7.12 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +provoquent provoquer ver 34.19 48.85 1.2 1.22 ind:pre:3p; +provoquer provoquer ver 34.19 48.85 9.3 12.23 inf; +provoquera provoquer ver 34.19 48.85 0.65 0.27 ind:fut:3s; +provoquerai provoquer ver 34.19 48.85 0.04 0 ind:fut:1s; +provoqueraient provoquer ver 34.19 48.85 0.01 0.14 cnd:pre:3p; +provoquerais provoquer ver 34.19 48.85 0.14 0 cnd:pre:1s;cnd:pre:2s; +provoquerait provoquer ver 34.19 48.85 0.39 0.68 cnd:pre:3s; +provoquerez provoquer ver 34.19 48.85 0.04 0.07 ind:fut:2p; +provoqueriez provoquer ver 34.19 48.85 0.11 0.07 cnd:pre:2p; +provoquerions provoquer ver 34.19 48.85 0.01 0.07 cnd:pre:1p; +provoquerons provoquer ver 34.19 48.85 0.03 0 ind:fut:1p; +provoqueront provoquer ver 34.19 48.85 0.02 0.07 ind:fut:3p; +provoques provoquer ver 34.19 48.85 1.19 0 ind:pre:2s; +provoquez provoquer ver 34.19 48.85 0.5 0 imp:pre:2p;ind:pre:2p; +provoquions provoquer ver 34.19 48.85 0 0.07 ind:imp:1p; +provoquons provoquer ver 34.19 48.85 0.23 0 imp:pre:1p;ind:pre:1p; +provoquât provoquer ver 34.19 48.85 0.01 0.34 sub:imp:3s; +provoquèrent provoquer ver 34.19 48.85 0.01 0.27 ind:pas:3p; +provoqué provoquer ver m s 34.19 48.85 8.07 7.36 par:pas; +provoquée provoquer ver f s 34.19 48.85 1.27 2.5 par:pas; +provoquées provoquer ver f p 34.19 48.85 0.34 1.42 par:pas; +provoqués provoquer ver m p 34.19 48.85 0.59 0.88 par:pas; +provos provo nom m p 0.17 0.14 0.05 0.14 +provéditeur provéditeur nom m s 0 0.14 0 0.07 +provéditeurs provéditeur nom m p 0 0.14 0 0.07 +proximal proximal adj m s 0.11 0.27 0.07 0.27 +proximale proximal adj f s 0.11 0.27 0.04 0 +proximité proximité nom f s 3.99 14.46 3.99 14.46 +proxo proxo nom m s 0.06 0.41 0.06 0.34 +proxos proxo nom m p 0.06 0.41 0 0.07 +proxénète proxénète nom s 0.71 1.01 0.52 0.74 +proxénètes proxénète nom p 0.71 1.01 0.2 0.27 +proxénétisme proxénétisme nom m s 0.42 0.41 0.42 0.41 +proze proze nom m s 0 0.41 0 0.41 +proèdre proèdre nom m s 0 0.07 0 0.07 +proéminait proéminer ver 0 0.14 0 0.07 ind:imp:3s; +proémine proéminer ver 0 0.14 0 0.07 ind:pre:3s; +proéminence proéminence nom f s 0.01 0.14 0.01 0 +proéminences proéminence nom f p 0.01 0.14 0 0.14 +proéminent proéminent adj m s 0.46 2.36 0.04 1.15 +proéminente proéminent adj f s 0.46 2.36 0.03 0.68 +proéminentes proéminent adj f p 0.46 2.36 0.15 0.2 +proéminents proéminent adj m p 0.46 2.36 0.25 0.34 +prud_homme prud_homme nom m s 0.21 0.07 0.01 0 +prud_homme prud_homme nom m p 0.21 0.07 0.2 0.07 +prude prude adj s 0.52 0.81 0.5 0.61 +prudemment prudemment adv 2.76 9.86 2.76 9.86 +prudence prudence nom f s 5.04 20.07 5.04 19.32 +prudences prudence nom f p 5.04 20.07 0 0.74 +prudent prudent adj m s 37.6 20.41 23.79 12.43 +prudente prudent adj f s 37.6 20.41 6.15 4.53 +prudentes prudent adj f p 37.6 20.41 0.54 0.68 +prudents prudent adj m p 37.6 20.41 7.13 2.77 +pruderie pruderie nom f s 0.01 0.68 0.01 0.54 +pruderies pruderie nom f p 0.01 0.68 0 0.14 +prudes prude nom p 0.51 0.47 0.2 0.14 +prudhommesque prudhommesque adj m s 0.14 0.07 0.14 0 +prudhommesques prudhommesque adj f p 0.14 0.07 0 0.07 +prune prune nom f s 2.94 5.68 1.07 1.55 +pruneau pruneau nom m s 1.59 3.65 0.92 1.35 +pruneaux pruneau nom m p 1.59 3.65 0.67 2.3 +prunelle prunelle nom f s 1.1 15.74 0.94 3.11 +prunelles prunelle nom f p 1.1 15.74 0.16 12.64 +prunellier prunellier nom m s 0 0.47 0 0.07 +prunelliers prunellier nom m p 0 0.47 0 0.41 +prunes prune nom f p 2.94 5.68 1.87 4.12 +prunier prunier nom m s 0.96 2.57 0.49 1.28 +pruniers prunier nom m p 0.96 2.57 0.47 1.28 +prunus prunus nom m 0 0.07 0 0.07 +prurigo prurigo nom m s 0 0.07 0 0.07 +prurit prurit nom m s 2.15 0.88 2.15 0.88 +prussianisé prussianiser ver m s 0 0.07 0 0.07 par:pas; +prussien prussien adj m s 0.41 3.38 0.16 1.01 +prussienne prussien adj f s 0.41 3.38 0.04 1.42 +prussiennes prussien adj f p 0.41 3.38 0.03 0.41 +prussiens prussien nom m p 0.47 2.97 0.38 2.03 +prussik prussik nom m s 0.02 0 0.02 0 +prussique prussique adj m s 0.41 0.2 0.41 0.2 +prytanée prytanée nom m s 0 0.27 0 0.27 +prèle prèle nom f s 0.02 0 0.02 0 +près près pre 134.13 285.41 134.13 285.41 +près_de près_de adv 4.1 16.35 4.1 16.35 +pré pré nom m s 21.59 32.5 5.03 19.8 +pré_salé pré_salé nom m s 0 0.2 0 0.2 +pré_établi pré_établi adj m s 0 0.07 0 0.07 +préadolescence préadolescence nom f s 0.01 0 0.01 0 +préadolescente préadolescent nom f s 0.01 0 0.01 0 +préalable préalable nom m s 0.91 2.03 0.91 1.96 +préalablement préalablement adv 0.08 2.03 0.08 2.03 +préalables préalable adj p 0.59 2.7 0.04 0.34 +préambule préambule nom m s 0.29 2.77 0.25 2.57 +préambules préambule nom m p 0.29 2.77 0.05 0.2 +préau préau nom m s 0.1 4.59 0.1 3.51 +préaux préau nom m p 0.1 4.59 0 1.08 +préavis préavis nom m 2 1.08 2 1.08 +prébendes prébende nom f p 0 0.2 0 0.2 +précaire précaire adj s 0.98 6.35 0.86 5.41 +précairement précairement adv 0 0.47 0 0.47 +précaires précaire adj p 0.98 6.35 0.13 0.95 +précambrien précambrien adj m s 0.02 0 0.01 0 +précambrienne précambrien adj f s 0.02 0 0.01 0 +précarité précarité nom f s 0.19 1.35 0.19 1.35 +précaution précaution nom f s 10.26 36.01 4.8 19.39 +précautionneuse précautionneux adj f s 0.06 3.24 0.03 0.47 +précautionneusement précautionneusement adv 0.01 3.72 0.01 3.72 +précautionneuses précautionneux adj f p 0.06 3.24 0 0.27 +précautionneux précautionneux adj m 0.06 3.24 0.04 2.5 +précautions précaution nom f p 10.26 36.01 5.45 16.62 +précellence précellence nom f s 0 0.07 0 0.07 +précelles précelles nom f p 0 0.07 0 0.07 +précepte précepte nom m s 1.55 2.23 0.17 1.08 +préceptes précepte nom m p 1.55 2.23 1.38 1.15 +précepteur précepteur nom m s 0.8 2.91 0.32 2.16 +précepteurs précepteur nom m p 0.8 2.91 0.04 0.68 +préceptrice précepteur nom f s 0.8 2.91 0.44 0.07 +précession précession nom f s 0 0.2 0 0.2 +préchauffage préchauffage nom m s 0.02 0 0.02 0 +préchauffer préchauffer ver 0.01 0 0.01 0 inf; +précieuse précieux adj f s 24.66 39.19 6.96 8.85 +précieusement précieusement adv 0.44 1.76 0.44 1.76 +précieuses précieux adj f p 24.66 39.19 1.58 7.43 +précieux précieux adj m 24.66 39.19 16.13 22.91 +préciosité préciosité nom f s 0.02 1.28 0.02 1.08 +préciosités préciosité nom f p 0.02 1.28 0 0.2 +précipice précipice nom m s 1.67 3.38 1.44 1.62 +précipices précipice nom m p 1.67 3.38 0.24 1.76 +précipita précipiter ver 11.89 66.96 0.19 14.05 ind:pas:3s; +précipitai précipiter ver 11.89 66.96 0.01 2.09 ind:pas:1s; +précipitaient précipiter ver 11.89 66.96 0.02 2.91 ind:imp:3p; +précipitais précipiter ver 11.89 66.96 0.04 0.88 ind:imp:1s;ind:imp:2s; +précipitait précipiter ver 11.89 66.96 0.08 5.95 ind:imp:3s; +précipitamment précipitamment adv 0.99 10.14 0.99 10.14 +précipitant précipiter ver 11.89 66.96 0.31 2.23 par:pre; +précipitation précipitation nom f s 2.35 6.35 1.9 6.15 +précipitations précipitation nom f p 2.35 6.35 0.45 0.2 +précipite précipiter ver 11.89 66.96 2.1 11.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +précipitent précipiter ver 11.89 66.96 0.51 2.84 ind:pre:3p; +précipiter précipiter ver 11.89 66.96 2.53 9.46 inf;; +précipitera précipiter ver 11.89 66.96 0.05 0 ind:fut:3s; +précipiterai précipiter ver 11.89 66.96 0.04 0.14 ind:fut:1s; +précipiteraient précipiter ver 11.89 66.96 0.05 0.2 cnd:pre:3p; +précipiterais précipiter ver 11.89 66.96 0.2 0 cnd:pre:1s;cnd:pre:2s; +précipiterait précipiter ver 11.89 66.96 0.02 0.74 cnd:pre:3s; +précipiteras précipiter ver 11.89 66.96 0.01 0.07 ind:fut:2s; +précipiterez précipiter ver 11.89 66.96 0 0.07 ind:fut:2p; +précipiterions précipiter ver 11.89 66.96 0 0.14 cnd:pre:1p; +précipiteront précipiter ver 11.89 66.96 0.02 0.14 ind:fut:3p; +précipites précipiter ver 11.89 66.96 0.37 0.2 ind:pre:2s;sub:pre:2s; +précipitez précipiter ver 11.89 66.96 0.44 0.14 imp:pre:2p;ind:pre:2p; +précipitiez précipiter ver 11.89 66.96 0.03 0 ind:imp:2p; +précipitions précipiter ver 11.89 66.96 0 0.14 ind:imp:1p; +précipitons précipiter ver 11.89 66.96 0.36 0.47 imp:pre:1p;ind:pre:1p; +précipitâmes précipiter ver 11.89 66.96 0 0.34 ind:pas:1p; +précipitât précipiter ver 11.89 66.96 0 0.27 sub:imp:3s; +précipitèrent précipiter ver 11.89 66.96 0.2 1.82 ind:pas:3p; +précipité précipiter ver m s 11.89 66.96 2.67 6.55 par:pas; +précipitée précipiter ver f s 11.89 66.96 1.36 2.09 par:pas; +précipitées précipité adj f p 1.83 8.45 0.1 0.95 +précipités précipiter ver m p 11.89 66.96 0.23 1.55 par:pas; +préciputs préciput nom m p 0 0.07 0 0.07 +précis précis adj m 31.59 61.82 20.18 38.24 +précisa préciser ver 9.29 48.31 0 8.65 ind:pas:3s; +précisai préciser ver 9.29 48.31 0 0.74 ind:pas:1s; +précisaient préciser ver 9.29 48.31 0.02 0.95 ind:imp:3p; +précisais préciser ver 9.29 48.31 0.01 0.47 ind:imp:1s;ind:imp:2s; +précisait préciser ver 9.29 48.31 0.06 4.26 ind:imp:3s; +précisant préciser ver 9.29 48.31 0.12 2.77 par:pre; +précise précis adj f s 31.59 61.82 6.97 15.68 +précisent préciser ver 9.29 48.31 0.39 0.81 ind:pre:3p; +préciser préciser ver 9.29 48.31 3.77 13.04 inf; +précisera préciser ver 9.29 48.31 0 0.2 ind:fut:3s; +préciserai préciser ver 9.29 48.31 0.02 0.2 ind:fut:1s; +préciserais préciser ver 9.29 48.31 0.01 0.07 cnd:pre:1s; +préciserait préciser ver 9.29 48.31 0 0.14 cnd:pre:3s; +préciserez préciser ver 9.29 48.31 0 0.07 ind:fut:2p; +préciseront préciser ver 9.29 48.31 0 0.07 ind:fut:3p; +précises précis adj f p 31.59 61.82 4.43 7.91 +précisez préciser ver 9.29 48.31 0.38 0.14 imp:pre:2p; +précision précision nom f s 6.86 24.26 5.5 18.99 +précisions précision nom f p 6.86 24.26 1.35 5.27 +précisons préciser ver 9.29 48.31 0.02 0 imp:pre:1p;ind:pre:1p; +précisât préciser ver 9.29 48.31 0 0.34 sub:imp:3s; +précisèrent préciser ver 9.29 48.31 0 0.47 ind:pas:3p; +précisé préciser ver m s 9.29 48.31 2.48 5.34 par:pas; +précisée préciser ver f s 9.29 48.31 0.14 0.74 par:pas; +précisées préciser ver f p 9.29 48.31 0.01 0.68 par:pas; +précisément précisément adv 12.8 34.8 12.8 34.8 +précisés préciser ver m p 9.29 48.31 0.01 0.07 par:pas; +précité précité adj m s 0.04 0.41 0.01 0.14 +précitée précité adj f s 0.04 0.41 0.01 0 +précitées précité adj f p 0.04 0.41 0.01 0.2 +précités précité adj m p 0.04 0.41 0.01 0.07 +précoce précoce adj s 2.66 5.61 2.31 4.39 +précocement précocement adv 0.01 1.15 0.01 1.15 +précoces précoce adj p 2.66 5.61 0.35 1.22 +précocité précocité nom f s 0.12 1.35 0.12 1.35 +précognition précognition nom f s 0.03 0 0.03 0 +précolombien précolombien adj m s 0.06 0.07 0.02 0 +précolombienne précolombien adj f s 0.06 0.07 0.04 0 +précolombiennes précolombien adj f p 0.06 0.07 0 0.07 +préconisa préconiser ver 1.8 1.96 0 0.14 ind:pas:3s; +préconisaient préconiser ver 1.8 1.96 0 0.2 ind:imp:3p; +préconisais préconiser ver 1.8 1.96 0.03 0 ind:imp:1s;ind:imp:2s; +préconisait préconiser ver 1.8 1.96 0.02 0.41 ind:imp:3s; +préconisant préconiser ver 1.8 1.96 0.01 0 par:pre; +préconisation préconisation nom f s 0.01 0 0.01 0 +préconise préconiser ver 1.8 1.96 0.82 0.41 ind:pre:1s;ind:pre:3s; +préconisent préconiser ver 1.8 1.96 0.17 0.14 ind:pre:3p; +préconiser préconiser ver 1.8 1.96 0.15 0.2 inf; +préconiserais préconiser ver 1.8 1.96 0.11 0 cnd:pre:1s; +préconises préconiser ver 1.8 1.96 0.01 0.07 ind:pre:2s; +préconisez préconiser ver 1.8 1.96 0.14 0 imp:pre:2p;ind:pre:2p; +préconisiez préconiser ver 1.8 1.96 0.02 0 ind:imp:2p; +préconisât préconiser ver 1.8 1.96 0 0.07 sub:imp:3s; +préconisé préconiser ver m s 1.8 1.96 0.19 0.2 par:pas; +préconisée préconiser ver f s 1.8 1.96 0.11 0.07 par:pas; +préconisées préconiser ver f p 1.8 1.96 0 0.07 par:pas; +préconisés préconiser ver m p 1.8 1.96 0.01 0 par:pas; +préconçu préconçu adj m s 0.06 0.81 0 0.07 +préconçue préconçu adj f s 0.06 0.81 0.04 0.2 +préconçues préconcevoir ver f p 0.04 0 0.04 0 par:pas; +précuit précuit adj m s 0.12 0 0.01 0 +précuites précuit adj f p 0.12 0 0.11 0 +précurseur précurseur nom m s 0.34 1.49 0.14 1.01 +précurseurs précurseur nom m p 0.34 1.49 0.2 0.47 +précède précéder ver 6.09 41.22 1.3 7.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +précèdent précéder ver 6.09 41.22 0.3 2.16 ind:pre:3p; +précéda précéder ver 6.09 41.22 0.01 2.09 ind:pas:3s; +précédai précéder ver 6.09 41.22 0 0.07 ind:pas:1s; +précédaient précéder ver 6.09 41.22 0.04 1.76 ind:imp:3p; +précédais précéder ver 6.09 41.22 0 0.14 ind:imp:1s; +précédait précéder ver 6.09 41.22 0.2 5.54 ind:imp:3s; +précédant précéder ver 6.09 41.22 0.87 3.78 par:pre; +précédassent précéder ver 6.09 41.22 0 0.07 sub:imp:3p; +précédemment précédemment adv 11.48 2.16 11.48 2.16 +précédent précédent nom m s 5.08 10.07 3.36 4.66 +précédente précédent adj f s 7.63 24.12 2.21 8.99 +précédentes précédent adj f p 7.63 24.12 0.94 3.38 +précédents précédent adj m p 7.63 24.12 2.16 5.61 +précéder précéder ver 6.09 41.22 0.09 2.23 inf; +précédera précéder ver 6.09 41.22 0.13 0.14 ind:fut:3s; +précéderai précéder ver 6.09 41.22 0.14 0 ind:fut:1s; +précéderaient précéder ver 6.09 41.22 0 0.14 cnd:pre:3p; +précéderait précéder ver 6.09 41.22 0.01 0.2 cnd:pre:3s; +précéderions précéder ver 6.09 41.22 0 0.07 cnd:pre:1p; +précédez précéder ver 6.09 41.22 0.5 0.07 imp:pre:2p;ind:pre:2p; +précédons précéder ver 6.09 41.22 0.02 0 ind:pre:1p; +précédèrent précéder ver 6.09 41.22 0.02 1.76 ind:pas:3p; +précédé précéder ver m s 6.09 41.22 1.27 7.77 par:pas; +précédée précéder ver f s 6.09 41.22 0.56 2.97 par:pas; +précédées précéder ver f p 6.09 41.22 0.18 0.41 par:pas; +précédés précéder ver m p 6.09 41.22 0.45 2.84 par:pas; +prédateur prédateur nom m s 2.38 0.68 1.54 0.34 +prédateurs prédateur nom m p 2.38 0.68 0.84 0.34 +prédation prédation nom f s 0.04 0 0.04 0 +prédatrice prédateur adj f s 0.4 0.54 0.11 0.07 +prédelle prédelle nom f s 0 0.14 0 0.14 +prédestinaient prédestiner ver 0.65 0.74 0 0.14 ind:imp:3p; +prédestination prédestination nom f s 0.04 1.01 0.04 0.95 +prédestinations prédestination nom f p 0.04 1.01 0 0.07 +prédestiné prédestiner ver m s 0.65 0.74 0.41 0.27 par:pas; +prédestinée prédestiner ver f s 0.65 0.74 0.2 0.07 par:pas; +prédestinées prédestiné adj f p 0.08 0.81 0 0.07 +prédestinés prédestiner ver m p 0.65 0.74 0.04 0.27 par:pas; +prédicant prédicant nom m s 0 0.54 0 0.27 +prédicants prédicant nom m p 0 0.54 0 0.27 +prédicat prédicat nom m s 0.01 0 0.01 0 +prédicateur prédicateur nom m s 0.84 1.69 0.66 1.01 +prédicateurs prédicateur nom m p 0.84 1.69 0.19 0.68 +prédication prédication nom f s 0.29 0.61 0.25 0.41 +prédications prédication nom f p 0.29 0.61 0.05 0.2 +prédictible prédictible adj s 0.01 0 0.01 0 +prédictif prédictif adj m s 0.05 0 0.01 0 +prédiction prédiction nom f s 2.06 3.24 1.08 1.89 +prédictions prédiction nom f p 2.06 3.24 0.98 1.35 +prédictive prédictif adj f s 0.05 0 0.04 0 +prédigestion prédigestion nom f s 0 0.07 0 0.07 +prédigéré prédigéré adj m s 0.01 0 0.01 0 +prédilection prédilection nom f s 0.35 3.18 0.34 3.11 +prédilections prédilection nom f p 0.35 3.18 0.01 0.07 +prédira prédire ver 9.05 6.82 0.01 0 ind:fut:3s; +prédire prédire ver 9.05 6.82 2.52 1.28 inf; +prédirent prédire ver 9.05 6.82 0 0.07 ind:pas:3p; +prédirez prédire ver 9.05 6.82 0.01 0 ind:fut:2p; +prédis prédire ver 9.05 6.82 1.02 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prédisaient prédire ver 9.05 6.82 0.03 0.14 ind:imp:3p; +prédisait prédire ver 9.05 6.82 0.12 0.61 ind:imp:3s; +prédisant prédire ver 9.05 6.82 0.12 0.2 par:pre; +prédise prédire ver 9.05 6.82 0.16 0 sub:pre:1s;sub:pre:3s; +prédisent prédire ver 9.05 6.82 0.25 0.2 ind:pre:3p; +prédisez prédire ver 9.05 6.82 0.04 0 ind:pre:2p; +prédisiez prédire ver 9.05 6.82 0 0.07 ind:imp:2p; +prédisposait prédisposer ver 0.27 0.68 0 0.07 ind:imp:3s; +prédisposant prédisposer ver 0.27 0.68 0 0.07 par:pre; +prédispose prédisposer ver 0.27 0.68 0.03 0.27 imp:pre:2s;ind:pre:3s; +prédisposition prédisposition nom f s 0.46 0.41 0.21 0.27 +prédispositions prédisposition nom f p 0.46 0.41 0.25 0.14 +prédisposé prédisposer ver m s 0.27 0.68 0.09 0.14 par:pas; +prédisposée prédisposer ver f s 0.27 0.68 0.13 0.07 par:pas; +prédisposées prédisposer ver f p 0.27 0.68 0.01 0.07 par:pas; +prédisposés prédisposer ver m p 0.27 0.68 0.01 0 par:pas; +prédit prédire ver m s 9.05 6.82 4.46 3.38 ind:pre:3s;par:pas; +prédite prédire ver f s 9.05 6.82 0.32 0.07 par:pas; +prédominaient prédominer ver 0.12 0.27 0 0.07 ind:imp:3p; +prédominait prédominer ver 0.12 0.27 0 0.14 ind:imp:3s; +prédominance prédominance nom f s 0.01 0.47 0.01 0.47 +prédominant prédominant adj m s 0.11 0.34 0.04 0.14 +prédominante prédominant adj f s 0.11 0.34 0.07 0.2 +prédomine prédominer ver 0.12 0.27 0.08 0 ind:pre:3s; +prédominer prédominer ver 0.12 0.27 0.01 0 inf; +prédécesseur prédécesseur nom m s 2.27 3.18 1.6 1.96 +prédécesseurs prédécesseur nom m p 2.27 3.18 0.67 1.22 +prédécoupée prédécoupé adj f s 0.01 0 0.01 0 +prédéfini prédéfinir ver m s 0.03 0 0.01 0 par:pas; +prédéfinies prédéfinir ver f p 0.03 0 0.01 0 par:pas; +prédéterminer prédéterminer ver 0.55 0.07 0 0.07 inf; +prédéterminé prédéterminer ver m s 0.55 0.07 0.24 0 par:pas; +prédéterminée prédéterminer ver f s 0.55 0.07 0.26 0 par:pas; +prédéterminées prédéterminer ver f p 0.55 0.07 0.02 0 par:pas; +prédéterminés prédéterminer ver m p 0.55 0.07 0.02 0 par:pas; +préemption préemption nom f s 0.05 0.07 0.05 0.07 +préemptive préemptif adj f s 0.01 0 0.01 0 +préencollé préencollé adj m s 0.01 0 0.01 0 +préexistaient préexister ver 0.01 0.27 0 0.07 ind:imp:3p; +préexistait préexister ver 0.01 0.27 0 0.07 ind:imp:3s; +préexistant préexistant adj m s 0.04 0 0.01 0 +préexistante préexistant adj f s 0.04 0 0.03 0 +préexistants préexistant adj m p 0.04 0 0.01 0 +préexiste préexister ver 0.01 0.27 0 0.14 ind:pre:3s; +préexisté préexister ver m s 0.01 0.27 0.01 0 par:pas; +préfabriqué préfabriqué adj m s 0.62 1.42 0.19 0.88 +préfabriquée préfabriqué adj f s 0.62 1.42 0.23 0.14 +préfabriquées préfabriqué adj f p 0.62 1.42 0 0.2 +préfabriqués préfabriqué adj m p 0.62 1.42 0.2 0.2 +préface préface nom f s 0.42 2.97 0.42 2.64 +préfacent préfacer ver 0.04 0.34 0 0.07 ind:pre:3p; +préfacer préfacer ver 0.04 0.34 0.04 0 inf; +préfaces préface nom f p 0.42 2.97 0 0.34 +préfacier préfacier nom m s 0 0.07 0 0.07 +préfacé préfacer ver m s 0.04 0.34 0 0.14 par:pas; +préfacées préfacer ver f p 0.04 0.34 0 0.07 par:pas; +préfectance préfectance nom f s 0 0.14 0 0.14 +préfectorale préfectoral adj f s 0 0.07 0 0.07 +préfecture préfecture nom f s 3.98 7.91 3.97 7.36 +préfectures préfecture nom f p 3.98 7.91 0.01 0.54 +préfet préfet nom m s 7.56 8.45 7.42 7.09 +préfets préfet nom m p 7.56 8.45 0.14 1.35 +préfiguraient préfigurer ver 0.02 1.69 0 0.34 ind:imp:3p; +préfigurait préfigurer ver 0.02 1.69 0 0.34 ind:imp:3s; +préfigurant préfigurer ver 0.02 1.69 0 0.07 par:pre; +préfiguration préfiguration nom f s 0 0.61 0 0.61 +préfigure préfigurer ver 0.02 1.69 0.01 0.41 ind:pre:3s; +préfigurent préfigurer ver 0.02 1.69 0 0.14 ind:pre:3p; +préfigurer préfigurer ver 0.02 1.69 0.01 0.07 inf; +préfiguré préfigurer ver m s 0.02 1.69 0 0.07 par:pas; +préfigurée préfigurer ver f s 0.02 1.69 0 0.27 par:pas; +préfix préfix adj m 0.01 0 0.01 0 +préfixation préfixation nom f s 0.01 0 0.01 0 +préfixe préfixe nom m s 0.35 0.34 0.23 0.14 +préfixes préfixe nom m p 0.35 0.34 0.12 0.2 +préformait préformer ver 0 0.14 0 0.07 ind:imp:3s; +préformation préformation nom f s 0 0.07 0 0.07 +préformer préformer ver 0 0.14 0 0.07 inf; +préfrontal préfrontal adj m s 0.06 0.07 0.05 0 +préfrontale préfrontal adj f s 0.06 0.07 0.01 0.07 +préfère préférer ver 179.44 133.38 90.34 36.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +préfèrent préférer ver 179.44 133.38 5.94 3.85 ind:pre:3p;sub:pre:3p; +préfères préférer ver 179.44 133.38 21.62 5.68 ind:pre:2s; +préféra préférer ver 179.44 133.38 0.32 4.66 ind:pas:3s; +préférable préférable adj s 4.56 7.7 4.39 7.3 +préférablement préférablement adv 0.01 0 0.01 0 +préférables préférable adj p 4.56 7.7 0.17 0.41 +préférai préférer ver 179.44 133.38 0.13 0.95 ind:pas:1s; +préféraient préférer ver 179.44 133.38 0.67 3.72 ind:imp:3p; +préférais préférer ver 179.44 133.38 3.66 9.19 ind:imp:1s;ind:imp:2s; +préférait préférer ver 179.44 133.38 2.85 21.55 ind:imp:3s; +préférant préférer ver 179.44 133.38 0.21 3.65 par:pre; +préférence préférence nom f s 5.73 13.92 4.65 12.16 +préférences préférence nom f p 5.73 13.92 1.09 1.76 +préférentiel préférentiel adj m s 0.16 0.14 0.06 0.07 +préférentielle préférentiel adj f s 0.16 0.14 0.1 0.07 +préférer préférer ver 179.44 133.38 1.68 5.95 inf; +préférera préférer ver 179.44 133.38 0.66 0.27 ind:fut:3s; +préférerai préférer ver 179.44 133.38 0.4 0.07 ind:fut:1s; +préféreraient préférer ver 179.44 133.38 0.43 0.47 cnd:pre:3p; +préférerais préférer ver 179.44 133.38 14.52 5.14 cnd:pre:1s;cnd:pre:2s; +préférerait préférer ver 179.44 133.38 1.73 1.22 cnd:pre:3s; +préféreras préférer ver 179.44 133.38 0.2 0 ind:fut:2s; +préférerez préférer ver 179.44 133.38 0.09 0.07 ind:fut:2p; +préféreriez préférer ver 179.44 133.38 1.17 0.68 cnd:pre:2p; +préférerions préférer ver 179.44 133.38 0.28 0.07 cnd:pre:1p; +préféreront préférer ver 179.44 133.38 0.03 0 ind:fut:3p; +préférez préférer ver 179.44 133.38 12.19 5.81 imp:pre:2p;ind:pre:2p; +préfériez préférer ver 179.44 133.38 0.39 0.2 ind:imp:2p; +préférions préférer ver 179.44 133.38 0.02 1.35 ind:imp:1p; +préférons préférer ver 179.44 133.38 1.67 0.95 imp:pre:1p;ind:pre:1p; +préférâmes préférer ver 179.44 133.38 0 0.07 ind:pas:1p; +préférât préférer ver 179.44 133.38 0 0.47 sub:imp:3s; +préférèrent préférer ver 179.44 133.38 0 0.47 ind:pas:3p; +préféré préférer ver m s 179.44 133.38 17.57 19.73 par:pas; +préférée préféré adj f s 27.42 11.01 9.82 3.45 +préférées préféré adj f p 27.42 11.01 1.8 1.15 +préférés préféré adj m p 27.42 11.01 2.04 1.96 +prégnance prégnance nom f s 0 0.14 0 0.14 +prégnante prégnant adj f s 0.01 0 0.01 0 +préhenseur préhenseur adj m s 1 0 1 0 +préhensile préhensile adj m s 0.01 0.07 0.01 0.07 +préhension préhension nom f s 0.1 0.07 0.1 0.07 +préhensives préhensif adj f p 0 0.07 0 0.07 +préhistoire préhistoire nom f s 0.73 2.84 0.73 2.84 +préhistorien préhistorien nom m s 0 0.07 0 0.07 +préhistorique préhistorique adj s 1.28 2.91 0.83 1.55 +préhistoriques préhistorique adj p 1.28 2.91 0.45 1.35 +préhominien préhominien nom m s 0 0.07 0 0.07 +préindustriel préindustriel adj m s 0.01 0 0.01 0 +préjudice préjudice nom m s 1.8 2.03 1.56 1.96 +préjudices préjudice nom m p 1.8 2.03 0.25 0.07 +préjudiciable préjudiciable adj s 0.34 0.88 0.3 0.47 +préjudiciables préjudiciable adj m p 0.34 0.88 0.03 0.41 +préjuge préjuger ver 0.16 1.69 0 0.2 ind:pre:3s; +préjugeait préjuger ver 0.16 1.69 0 0.07 ind:imp:3s; +préjugeant préjuger ver 0.16 1.69 0 0.2 par:pre; +préjuger préjuger ver 0.16 1.69 0.02 0.88 inf; +préjugé préjugé nom m s 4.79 10.61 0.93 2.43 +préjugée préjuger ver f s 0.16 1.69 0 0.07 par:pas; +préjugés préjugé nom m p 4.79 10.61 3.86 8.18 +prélassaient prélasser ver 0.73 2.57 0 0.2 ind:imp:3p; +prélassais prélasser ver 0.73 2.57 0.02 0.07 ind:imp:1s; +prélassait prélasser ver 0.73 2.57 0.01 0.34 ind:imp:3s; +prélassant prélasser ver 0.73 2.57 0.01 0.14 par:pre; +prélasse prélasser ver 0.73 2.57 0.33 0.41 ind:pre:1s;ind:pre:3s; +prélassent prélasser ver 0.73 2.57 0.02 0.27 ind:pre:3p; +prélasser prélasser ver 0.73 2.57 0.33 0.88 inf; +prélassera prélasser ver 0.73 2.57 0 0.07 ind:fut:3s; +prélasseront prélasser ver 0.73 2.57 0 0.07 ind:fut:3p; +prélassez prélasser ver 0.73 2.57 0 0.07 ind:pre:2p; +prélassiez prélasser ver 0.73 2.57 0.01 0 ind:imp:2p; +prélassèrent prélasser ver 0.73 2.57 0 0.07 ind:pas:3p; +prélat prélat nom m s 0.14 2.77 0.04 1.76 +prélats prélat nom m p 0.14 2.77 0.1 1.01 +prélavage prélavage nom m s 0.01 0 0.01 0 +prélaver prélaver ver 0.01 0 0.01 0 inf; +prélegs prélegs nom m 0 0.07 0 0.07 +préleva prélever ver 6.07 5.81 0 0.27 ind:pas:3s; +prélevaient prélever ver 6.07 5.81 0.11 0.14 ind:imp:3p; +prélevais prélever ver 6.07 5.81 0.11 0.07 ind:imp:1s; +prélevait prélever ver 6.07 5.81 0.01 0.47 ind:imp:3s; +prélevant prélever ver 6.07 5.81 0.16 0.14 par:pre; +prélever prélever ver 6.07 5.81 1.75 1.35 inf; +prélevez prélever ver 6.07 5.81 0.18 0 imp:pre:2p;ind:pre:2p; +prélevons prélever ver 6.07 5.81 0.07 0 imp:pre:1p;ind:pre:1p; +prélevèrent prélever ver 6.07 5.81 0.01 0.07 ind:pas:3p; +prélevé prélever ver m s 6.07 5.81 1.87 0.81 par:pas; +prélevée prélever ver f s 6.07 5.81 0.4 0.74 par:pas; +prélevées prélever ver f p 6.07 5.81 0.39 0.54 par:pas; +prélevés prélever ver m p 6.07 5.81 0.32 0.54 par:pas; +préliminaire préliminaire adj s 3.12 1.69 2.21 0.74 +préliminaires préliminaire nom m p 1.67 1.08 1.56 0.88 +préluda préluder ver 0 2.57 0 0.2 ind:pas:3s; +préludaient préluder ver 0 2.57 0 0.07 ind:imp:3p; +préludait préluder ver 0 2.57 0 0.34 ind:imp:3s; +préludant préluder ver 0 2.57 0 0.14 par:pre; +prélude prélude nom m s 1.23 2.91 0.89 2.36 +préludent préluder ver 0 2.57 0 0.14 ind:pre:3p; +préluder préluder ver 0 2.57 0 0.27 inf; +préluderait préluder ver 0 2.57 0 0.07 cnd:pre:3s; +préludes prélude nom m p 1.23 2.91 0.34 0.54 +préludât préluder ver 0 2.57 0 0.07 sub:imp:3s; +préludèrent préluder ver 0 2.57 0 0.07 ind:pas:3p; +préludé préluder ver m s 0 2.57 0 0.27 par:pas; +prélève prélever ver 6.07 5.81 0.59 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prélèvement prélèvement nom m s 4.33 1.28 2.43 0.54 +prélèvements prélèvement nom m p 4.33 1.28 1.89 0.74 +prélèvent prélever ver 6.07 5.81 0.05 0.14 ind:pre:3p; +prélèveraient prélever ver 6.07 5.81 0 0.07 cnd:pre:3p; +prélèverait prélever ver 6.07 5.81 0 0.07 cnd:pre:3s; +prélèverez prélever ver 6.07 5.81 0.03 0 ind:fut:2p; +prélèverions prélever ver 6.07 5.81 0.02 0 cnd:pre:1p; +prématurité prématurité nom f s 0.01 0 0.01 0 +prématuré prématuré adj m s 2.39 3.18 1.51 1.22 +prématurée prématuré adj f s 2.39 3.18 0.68 1.28 +prématurées prématuré adj f p 2.39 3.18 0.14 0.61 +prématurément prématurément adv 1.22 2.03 1.22 2.03 +prématurés prématuré nom m p 1 0.2 0.2 0 +prémenstruel prémenstruel adj m s 0.26 0 0.21 0 +prémenstruelle prémenstruel adj f s 0.26 0 0.05 0 +prémices prémices nom f p 0.34 1.35 0.34 1.35 +prémisse prémisse nom f s 0.11 0.68 0.05 0.07 +prémisses prémisse nom f p 0.11 0.68 0.05 0.61 +prémolaire prémolaire nom f s 0.23 0.14 0.19 0.07 +prémolaires prémolaire nom f p 0.23 0.14 0.04 0.07 +prémonition prémonition nom f s 3.54 2.64 2.46 2.03 +prémonitions prémonition nom f p 3.54 2.64 1.08 0.61 +prémonitoire prémonitoire adj s 0.43 1.62 0.24 1.22 +prémonitoires prémonitoire adj p 0.43 1.62 0.19 0.41 +prémontrés prémontré adj m p 0 0.07 0 0.07 +prémuni prémunir ver m s 0.07 0.95 0.02 0.14 par:pas; +prémunie prémunir ver f s 0.07 0.95 0 0.07 par:pas; +prémunir prémunir ver 0.07 0.95 0.04 0.54 inf; +prémuniraient prémunir ver 0.07 0.95 0 0.07 cnd:pre:3p; +prémunis prémunir ver m p 0.07 0.95 0 0.07 par:pas; +prémunissent prémunir ver 0.07 0.95 0 0.07 ind:pre:3p; +préméditait préméditer ver 0.66 1.89 0 0.14 ind:imp:3s; +préméditation préméditation nom f s 1.3 1.82 1.3 1.69 +préméditations préméditation nom f p 1.3 1.82 0 0.14 +prémédite préméditer ver 0.66 1.89 0.01 0.14 ind:pre:3s; +préméditer préméditer ver 0.66 1.89 0.02 0 inf; +préméditera préméditer ver 0.66 1.89 0 0.07 ind:fut:3s; +préméditons préméditer ver 0.66 1.89 0 0.07 ind:pre:1p; +prémédité prémédité adj m s 1.46 0.95 1.25 0.27 +préméditée prémédité adj f s 1.46 0.95 0.11 0.41 +préméditées préméditer ver f p 0.66 1.89 0 0.07 par:pas; +prémédités prémédité adj m p 1.46 0.95 0.11 0.2 +prénatal prénatal adj m s 0.46 0.54 0.27 0.14 +prénatale prénatal adj f s 0.46 0.54 0.12 0.41 +prénatales prénatal adj f p 0.46 0.54 0.05 0 +prénataux prénatal adj m p 0.46 0.54 0.02 0 +prénom prénom nom m s 25.88 30.47 23.18 24.19 +prénom_type prénom_type nom m s 0 0.07 0 0.07 +prénomma prénommer ver 0.83 2.36 0 0.07 ind:pas:3s; +prénommaient prénommer ver 0.83 2.36 0 0.07 ind:imp:3p; +prénommais prénommer ver 0.83 2.36 0.03 0 ind:imp:1s; +prénommait prénommer ver 0.83 2.36 0.02 0.81 ind:imp:3s; +prénommant prénommer ver 0.83 2.36 0 0.14 par:pre; +prénomme prénommer ver 0.83 2.36 0.06 0.47 imp:pre:2s;ind:pre:3s; +prénomment prénommer ver 0.83 2.36 0.14 0.07 ind:pre:3p; +prénommer prénommer ver 0.83 2.36 0 0.27 inf; +prénommez prénommer ver 0.83 2.36 0.02 0 ind:pre:2p; +prénommât prénommer ver 0.83 2.36 0 0.07 sub:imp:3s; +prénommèrent prénommer ver 0.83 2.36 0.01 0 ind:pas:3p; +prénommé prénommer ver m s 0.83 2.36 0.38 0.41 par:pas; +prénommée prénommé nom f s 0.26 0.47 0.17 0.2 +prénoms prénom nom m p 25.88 30.47 2.7 6.28 +prénuptial prénuptial adj m s 0.47 0.2 0.3 0.07 +prénuptiale prénuptial adj f s 0.47 0.2 0.17 0.14 +préoccupa préoccuper ver 17.43 18.92 0.01 0.07 ind:pas:3s; +préoccupai préoccuper ver 17.43 18.92 0 0.14 ind:pas:1s; +préoccupaient préoccuper ver 17.43 18.92 0.02 0.68 ind:imp:3p; +préoccupais préoccuper ver 17.43 18.92 0.23 0.27 ind:imp:1s;ind:imp:2s; +préoccupait préoccuper ver 17.43 18.92 0.52 3.78 ind:imp:3s; +préoccupant préoccupant adj m s 0.35 0.88 0.27 0.27 +préoccupante préoccupant adj f s 0.35 0.88 0.06 0.41 +préoccupantes préoccupant adj f p 0.35 0.88 0.02 0.2 +préoccupation préoccupation nom f s 3.23 11.82 1.53 3.99 +préoccupations préoccupation nom f p 3.23 11.82 1.69 7.84 +préoccupe préoccuper ver 17.43 18.92 7.48 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +préoccupent préoccuper ver 17.43 18.92 0.34 0.41 ind:pre:3p; +préoccuper préoccuper ver 17.43 18.92 2.68 3.45 inf; +préoccupera préoccuper ver 17.43 18.92 0.04 0.07 ind:fut:3s; +préoccuperai préoccuper ver 17.43 18.92 0.03 0 ind:fut:1s; +préoccuperaient préoccuper ver 17.43 18.92 0.01 0 cnd:pre:3p; +préoccuperais préoccuper ver 17.43 18.92 0.03 0 cnd:pre:1s; +préoccuperait préoccuper ver 17.43 18.92 0.06 0 cnd:pre:3s; +préoccupes préoccuper ver 17.43 18.92 0.81 0.14 ind:pre:2s; +préoccupez préoccuper ver 17.43 18.92 0.85 0.07 imp:pre:2p;ind:pre:2p; +préoccupiez préoccuper ver 17.43 18.92 0.02 0 ind:imp:2p; +préoccupions préoccuper ver 17.43 18.92 0 0.07 ind:imp:1p; +préoccupons préoccuper ver 17.43 18.92 0.02 0.2 imp:pre:1p;ind:pre:1p; +préoccupât préoccuper ver 17.43 18.92 0 0.2 sub:imp:3s; +préoccupâtes préoccuper ver 17.43 18.92 0.01 0 ind:pas:2p; +préoccupèrent préoccuper ver 17.43 18.92 0 0.07 ind:pas:3p; +préoccupé préoccuper ver m s 17.43 18.92 2.84 3.85 par:pas; +préoccupée préoccuper ver f s 17.43 18.92 0.71 1.35 par:pas; +préoccupées préoccupé adj f p 1.44 4.86 0.01 0.2 +préoccupés préoccuper ver m p 17.43 18.92 0.68 1.22 par:pas; +préopératoire préopératoire adj s 0.05 0 0.05 0 +prépa prépa nom f s 0.78 0 0.78 0 +prépara préparer ver 174.33 154.12 0.3 5 ind:pas:3s; +préparai préparer ver 174.33 154.12 0.02 1.22 ind:pas:1s; +préparaient préparer ver 174.33 154.12 0.9 5.41 ind:imp:3p; +préparais préparer ver 174.33 154.12 1.68 2.43 ind:imp:1s;ind:imp:2s; +préparait préparer ver 174.33 154.12 3.38 25 ind:imp:3s; +préparant préparer ver 174.33 154.12 1 5.14 par:pre; +préparateur préparateur nom m s 0.05 1.15 0.04 0.88 +préparateurs préparateur nom m p 0.05 1.15 0 0.14 +préparatif préparatif nom m s 3.09 7.36 0 0.07 +préparatifs préparatif nom m p 3.09 7.36 3.09 7.3 +préparation préparation nom f s 6.13 10.54 5.17 9.73 +préparations préparation nom f p 6.13 10.54 0.95 0.81 +préparatoire préparatoire adj s 0.52 2.64 0.43 1.55 +préparatoires préparatoire adj p 0.52 2.64 0.09 1.08 +préparatrice préparateur nom f s 0.05 1.15 0.01 0.07 +préparatrices préparateur nom f p 0.05 1.15 0 0.07 +prépare préparer ver 174.33 154.12 45.54 19.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +préparent préparer ver 174.33 154.12 6.09 3.72 ind:pre:3p; +préparer préparer ver 174.33 154.12 46.71 43.24 inf;;inf;;inf;; +préparera préparer ver 174.33 154.12 0.85 0.41 ind:fut:3s; +préparerai préparer ver 174.33 154.12 1.65 0.47 ind:fut:1s; +prépareraient préparer ver 174.33 154.12 0.15 0.14 cnd:pre:3p; +préparerais préparer ver 174.33 154.12 0.24 0.14 cnd:pre:1s;cnd:pre:2s; +préparerait préparer ver 174.33 154.12 0.03 0.68 cnd:pre:3s; +prépareras préparer ver 174.33 154.12 0.05 0 ind:fut:2s; +préparerez préparer ver 174.33 154.12 0.04 0 ind:fut:2p; +préparerons préparer ver 174.33 154.12 0.3 0.07 ind:fut:1p; +prépareront préparer ver 174.33 154.12 0.04 0.07 ind:fut:3p; +prépares préparer ver 174.33 154.12 3.35 0.61 ind:pre:2s;sub:pre:2s; +préparez préparer ver 174.33 154.12 26.72 2.03 imp:pre:2p;ind:pre:2p; +prépariez préparer ver 174.33 154.12 0.38 0.07 ind:imp:2p; +préparions préparer ver 174.33 154.12 0.12 0.61 ind:imp:1p; +préparons préparer ver 174.33 154.12 2.92 0.74 imp:pre:1p;ind:pre:1p; +préparât préparer ver 174.33 154.12 0 0.54 sub:imp:3s; +préparèrent préparer ver 174.33 154.12 0.11 0.34 ind:pas:3p; +préparé préparer ver m s 174.33 154.12 25.19 21.96 par:pas; +préparée préparer ver f s 174.33 154.12 2.97 6.82 par:pas; +préparées préparer ver f p 174.33 154.12 0.75 2.77 par:pas; +préparés préparer ver m p 174.33 154.12 2.86 4.93 par:pas; +prépayée prépayer ver f s 0.01 0 0.01 0 par:pas; +prépondérance prépondérance nom f s 0.07 0.61 0.07 0.61 +prépondérant prépondérant adj m s 0.15 1.35 0.12 0.27 +prépondérante prépondérant adj f s 0.15 1.35 0.03 0.88 +prépondérants prépondérant adj m p 0.15 1.35 0 0.2 +préposition préposition nom f s 0.23 0.2 0.2 0.07 +prépositions préposition nom f p 0.23 0.2 0.03 0.14 +préposé préposé nom m s 0.91 3.99 0.77 2.84 +préposée préposé nom f s 0.91 3.99 0.1 0.41 +préposées préposé nom f p 0.91 3.99 0 0.07 +préposés préposé nom m p 0.91 3.99 0.04 0.68 +prépotence prépotence nom f s 0 0.07 0 0.07 +préprogrammé préprogrammé adj m s 0.09 0 0.07 0 +préprogrammée préprogrammé adj f s 0.09 0 0.03 0 +prépubère prépubère adj s 0.08 0 0.08 0 +prépuce prépuce nom m s 0.89 0.47 0.88 0.41 +prépuces prépuce nom m p 0.89 0.47 0.01 0.07 +préraphaélite préraphaélite adj s 0 0.07 0 0.07 +prérentrée prérentrée nom f s 0.01 0 0.01 0 +préretraite préretraite nom f s 0.04 0 0.04 0 +prérogative prérogative nom f s 0.59 1.35 0.28 0.27 +prérogatives prérogative nom f p 0.59 1.35 0.31 1.08 +préroman préroman adj m s 0 0.07 0 0.07 +préréglé prérégler ver m s 0.03 0 0.03 0 par:pas; +prérévolutionnaire prérévolutionnaire adj f s 0 0.07 0 0.07 +prés pré nom m p 21.59 32.5 16.56 12.7 +présage présage nom m s 2.99 4.59 1.95 2.77 +présagea présager ver 0.79 3.31 0 0.14 ind:pas:3s; +présageaient présager ver 0.79 3.31 0.01 0.27 ind:imp:3p; +présageait présager ver 0.79 3.31 0.13 0.95 ind:imp:3s; +présagent présager ver 0.79 3.31 0.01 0 ind:pre:3p; +présager présager ver 0.79 3.31 0.14 1.49 inf; +présagerait présager ver 0.79 3.31 0.01 0.07 cnd:pre:3s; +présages présage nom m p 2.99 4.59 1.04 1.82 +présagé présager ver m s 0.79 3.31 0.01 0 par:pas; +préscolaire préscolaire adj f s 0.07 0 0.05 0 +préscolaires préscolaire adj p 0.07 0 0.02 0 +présence présence nom f s 45.03 135.54 44.95 133.11 +présences présence nom f p 45.03 135.54 0.07 2.43 +présent présent nom m s 66.72 141.01 65.14 137.23 +présenta présenter ver 165.88 135.14 0.93 13.18 ind:pas:3s; +présentable présentable adj s 3.17 2.09 2.65 1.82 +présentables présentable adj p 3.17 2.09 0.52 0.27 +présentai présenter ver 165.88 135.14 0.17 1.28 ind:pas:1s; +présentaient présenter ver 165.88 135.14 0.21 4.32 ind:imp:3p; +présentais présenter ver 165.88 135.14 0.4 0.74 ind:imp:1s;ind:imp:2s; +présentait présenter ver 165.88 135.14 1.59 20.14 ind:imp:3s; +présentant présenter ver 165.88 135.14 1.09 5.54 par:pre; +présentassent présenter ver 165.88 135.14 0 0.07 sub:imp:3p; +présentateur présentateur nom m s 3.11 1.49 1.76 1.08 +présentateurs présentateur nom m p 3.11 1.49 0.2 0.14 +présentation présentation nom f s 7.88 8.38 5.52 4.8 +présentations présentation nom f p 7.88 8.38 2.37 3.58 +présentatrice présentateur nom f s 3.11 1.49 0.95 0.2 +présentatrices présentateur nom f p 3.11 1.49 0.2 0.07 +présente présenter ver 165.88 135.14 61.59 27.5 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +présentement présentement adv 1.27 3.78 1.27 3.78 +présentent présenter ver 165.88 135.14 3.81 4.73 ind:pre:3p; +présenter présenter ver 165.88 135.14 56.16 28.99 inf;;inf;;inf;; +présentera présenter ver 165.88 135.14 1.91 0.61 ind:fut:3s; +présenterai présenter ver 165.88 135.14 2.89 0.88 ind:fut:1s; +présenteraient présenter ver 165.88 135.14 0 0.61 cnd:pre:3p; +présenterais présenter ver 165.88 135.14 0.43 0.07 cnd:pre:1s;cnd:pre:2s; +présenterait présenter ver 165.88 135.14 0.36 2.03 cnd:pre:3s; +présenteras présenter ver 165.88 135.14 0.24 0.2 ind:fut:2s; +présenterez présenter ver 165.88 135.14 0.82 0.41 ind:fut:2p; +présenteriez présenter ver 165.88 135.14 0.03 0 cnd:pre:2p; +présenterons présenter ver 165.88 135.14 0.36 0 ind:fut:1p; +présenteront présenter ver 165.88 135.14 0.51 0.41 ind:fut:3p; +présentes présenter ver 165.88 135.14 3.44 0.41 ind:pre:2s; +présentez présenter ver 165.88 135.14 5.83 0.81 imp:pre:2p;ind:pre:2p; +présentiez présenter ver 165.88 135.14 0.4 0.14 ind:imp:2p; +présentions présenter ver 165.88 135.14 0.02 0.2 ind:imp:1p; +présentoir présentoir nom m s 0.38 1.35 0.38 0.88 +présentoirs présentoir nom m p 0.38 1.35 0 0.47 +présentons présenter ver 165.88 135.14 0.79 0.54 imp:pre:1p;ind:pre:1p; +présents présent adj m p 53.7 80.74 5.38 8.85 +présentât présenter ver 165.88 135.14 0 0.27 sub:imp:3s; +présentèrent présenter ver 165.88 135.14 0.15 1.28 ind:pas:3p; +présenté présenter ver m s 165.88 135.14 12.58 11.42 par:pas; +présentée présenter ver f s 165.88 135.14 3.86 3.99 par:pas; +présentées présenter ver f p 165.88 135.14 0.73 1.76 par:pas; +présentés présenter ver m p 165.88 135.14 4.57 2.64 par:pas; +préserva préserver ver 14.61 21.15 0.01 0.2 ind:pas:3s; +préservaient préserver ver 14.61 21.15 0 0.47 ind:imp:3p; +préservais préserver ver 14.61 21.15 0.11 0.07 ind:imp:1s; +préservait préserver ver 14.61 21.15 0.17 1.01 ind:imp:3s; +préservant préserver ver 14.61 21.15 0.45 0.41 par:pre; +préservateur préservateur nom m s 0.01 0 0.01 0 +préservatif préservatif nom m s 5.19 0.47 2.16 0.07 +préservatifs préservatif nom m p 5.19 0.47 3.03 0.41 +préservation préservation nom f s 1 0.47 1 0.47 +préserve préserver ver 14.61 21.15 2.99 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +préservent préserver ver 14.61 21.15 0.1 0.34 ind:pre:3p; +préserver préserver ver 14.61 21.15 7.26 9.66 inf;; +préservera préserver ver 14.61 21.15 0.23 0.07 ind:fut:3s; +préserverai préserver ver 14.61 21.15 0.03 0 ind:fut:1s; +préserverait préserver ver 14.61 21.15 0 0.2 cnd:pre:3s; +préservez préserver ver 14.61 21.15 0.54 0.2 imp:pre:2p;ind:pre:2p; +préservons préserver ver 14.61 21.15 0.21 0 imp:pre:1p;ind:pre:1p; +préservé préserver ver m s 14.61 21.15 1.49 3.65 par:pas; +préservée préserver ver f s 14.61 21.15 0.59 2.36 par:pas; +préservées préserver ver f p 14.61 21.15 0.32 0.41 par:pas; +préservés préserver ver m p 14.61 21.15 0.12 0.47 par:pas; +présida présider ver 4.72 10.61 0.14 0.27 ind:pas:3s; +présidai présider ver 4.72 10.61 0 0.2 ind:pas:1s; +présidaient présider ver 4.72 10.61 0 0.41 ind:imp:3p; +présidais présider ver 4.72 10.61 0.17 0 ind:imp:1s; +présidait présider ver 4.72 10.61 0.46 2.16 ind:imp:3s; +présidant présider ver 4.72 10.61 0 0.47 par:pre; +préside présider ver 4.72 10.61 1.2 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +présidence présidence nom f s 4.27 5.95 4.26 5.88 +présidences présidence nom f p 4.27 5.95 0.01 0.07 +président président nom m s 143.39 79.66 131.53 76.22 +président_directeur président_directeur nom m s 0.02 0.41 0.02 0.27 +présidente président nom f s 143.39 79.66 9.21 1.08 +présidentes président nom f p 143.39 79.66 0.17 0.07 +présidentiable présidentiable adj s 0.04 0.34 0.04 0.27 +présidentiables présidentiable adj p 0.04 0.34 0 0.07 +présidentiel présidentiel adj m s 4.42 1.96 1.86 0.68 +présidentielle présidentiel adj f s 4.42 1.96 1.85 0.95 +présidentielles présidentiel adj f p 4.42 1.96 0.62 0.27 +présidentiels présidentiel adj m p 4.42 1.96 0.09 0.07 +présidents président nom m p 143.39 79.66 2.48 2.3 +président_directeur président_directeur nom m p 0.02 0.41 0 0.14 +présider présider ver 4.72 10.61 1.01 1.89 inf; +présidera présider ver 4.72 10.61 0.38 0.07 ind:fut:3s; +présiderai présider ver 4.72 10.61 0.07 0 ind:fut:1s; +présiderais présider ver 4.72 10.61 0 0.07 cnd:pre:1s; +présiderait présider ver 4.72 10.61 0.03 0.14 cnd:pre:3s; +présideras présider ver 4.72 10.61 0 0.14 ind:fut:2s; +présiderez présider ver 4.72 10.61 0.01 0.07 ind:fut:2p; +présides présider ver 4.72 10.61 0.01 0 ind:pre:2s; +présidiez présider ver 4.72 10.61 0.02 0 ind:imp:2p; +présidium présidium nom m s 0.02 0.14 0.02 0.14 +présidons présider ver 4.72 10.61 0.01 0.07 ind:pre:1p; +présidât présider ver 4.72 10.61 0 0.07 sub:imp:3s; +présidèrent présider ver 4.72 10.61 0 0.07 ind:pas:3p; +présidé présider ver m s 4.72 10.61 0.41 1.96 par:pas; +présidée présider ver f s 4.72 10.61 0.38 0.41 par:pas; +présidés présider ver m p 4.72 10.61 0.01 0.2 par:pas; +présocratique présocratique adj s 0 0.2 0 0.14 +présocratiques présocratique adj p 0 0.2 0 0.07 +présomptif présomptif adj m s 0.23 0.2 0.23 0.14 +présomption présomption nom f s 1.46 1.76 1.06 1.08 +présomptions présomption nom f p 1.46 1.76 0.39 0.68 +présomptive présomptif adj f s 0.23 0.2 0 0.07 +présomptueuse présomptueux nom f s 0.42 0.2 0.14 0 +présomptueuses présomptueux adj f p 1 1.22 0.01 0.14 +présomptueux présomptueux adj m s 1 1.22 0.91 0.88 +présumables présumable adj m p 0 0.07 0 0.07 +présumai présumer ver 9.29 3.65 0 0.2 ind:pas:1s; +présumais présumer ver 9.29 3.65 0.16 0 ind:imp:1s;ind:imp:2s; +présumait présumer ver 9.29 3.65 0.01 0.47 ind:imp:3s; +présumant présumer ver 9.29 3.65 0.08 0.14 par:pre; +présume présumer ver 9.29 3.65 6.36 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +présumer présumer ver 9.29 3.65 0.82 0.61 inf; +présumerai présumer ver 9.29 3.65 0.02 0 ind:fut:1s; +présumez présumer ver 9.29 3.65 0.11 0 imp:pre:2p;ind:pre:2p; +présumons présumer ver 9.29 3.65 0.11 0 imp:pre:1p;ind:pre:1p; +présumé présumé adj m s 1.62 0.88 1.22 0.47 +présumée présumer ver f s 9.29 3.65 0.38 0.2 par:pas; +présumées présumé adj f p 1.62 0.88 0.02 0.07 +présumés présumer ver m p 9.29 3.65 0.21 0 par:pas; +présupposant présupposer ver 0.15 0.2 0 0.14 par:pre; +présuppose présupposer ver 0.15 0.2 0.14 0 ind:pre:3s; +présupposent présupposer ver 0.15 0.2 0.01 0 ind:pre:3p; +présupposée présupposer ver f s 0.15 0.2 0 0.07 par:pas; +préséance préséance nom f s 0.06 0.81 0.05 0.47 +préséances préséance nom f p 0.06 0.81 0.01 0.34 +présélection présélection nom f s 0.06 0 0.04 0 +présélectionné présélectionner ver m s 0.04 0 0.03 0 par:pas; +présélectionnée présélectionner ver f s 0.04 0 0.02 0 par:pas; +présélections présélection nom f p 0.06 0 0.02 0 +préséniles présénile adj p 0.1 0 0.1 0 +prétend prétendre ver 35.63 67.43 11.42 13.24 ind:pre:3s; +prétendaient prétendre ver 35.63 67.43 0.42 3.65 ind:imp:3p; +prétendais prétendre ver 35.63 67.43 0.55 1.49 ind:imp:1s;ind:imp:2s; +prétendait prétendre ver 35.63 67.43 1.24 16.49 ind:imp:3s; +prétendant prétendant nom m s 3.16 2.16 1.96 1.01 +prétendante prétendant nom f s 3.16 2.16 0.01 0 +prétendants prétendant nom m p 3.16 2.16 1.2 1.15 +prétende prétendre ver 35.63 67.43 0.26 0.41 sub:pre:1s;sub:pre:3s; +prétendent prétendre ver 35.63 67.43 2.67 4.32 ind:pre:3p; +prétendez prétendre ver 35.63 67.43 3.1 1.22 imp:pre:2p;ind:pre:2p; +prétendiez prétendre ver 35.63 67.43 0.16 0.07 ind:imp:2p; +prétendions prétendre ver 35.63 67.43 0.02 0.34 ind:imp:1p; +prétendirent prétendre ver 35.63 67.43 0.02 0.54 ind:pas:3p; +prétendis prétendre ver 35.63 67.43 0 0.74 ind:pas:1s; +prétendissent prétendre ver 35.63 67.43 0 0.07 sub:imp:3p; +prétendit prétendre ver 35.63 67.43 0.17 1.82 ind:pas:3s; +prétendons prétendre ver 35.63 67.43 0.19 0.81 imp:pre:1p;ind:pre:1p; +prétendra prétendre ver 35.63 67.43 0.21 0.27 ind:fut:3s; +prétendrai prétendre ver 35.63 67.43 0.09 0.07 ind:fut:1s; +prétendraient prétendre ver 35.63 67.43 0 0.14 cnd:pre:3p; +prétendrais prétendre ver 35.63 67.43 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +prétendrait prétendre ver 35.63 67.43 0.13 0.34 cnd:pre:3s; +prétendras prétendre ver 35.63 67.43 0.29 0 ind:fut:2s; +prétendre prétendre ver 35.63 67.43 6 10.54 inf; +prétendront prétendre ver 35.63 67.43 0.03 0.2 ind:fut:3p; +prétends prétendre ver 35.63 67.43 4.84 3.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prétendu prétendre ver m s 35.63 67.43 2.41 3.65 par:pas; +prétendue prétendu adj f s 2.82 7.64 0.75 2.43 +prétendues prétendu adj f p 2.82 7.64 0.14 0.88 +prétendument prétendument adv 0.37 1.76 0.37 1.76 +prétendus prétendu adj m p 2.82 7.64 0.61 1.82 +prétendît prétendre ver 35.63 67.43 0 0.34 sub:imp:3s; +prétentaine prétentaine nom f s 0.02 0.07 0.02 0.07 +prétentiard prétentiard adj m s 0.14 0 0.14 0 +prétentiarde prétentiard nom f s 0.01 0.2 0 0.07 +prétentiards prétentiard nom m p 0.01 0.2 0 0.07 +prétentieuse prétentieux adj f s 4.51 5.95 1.05 2.03 +prétentieuses prétentieux adj f p 4.51 5.95 0.1 0.68 +prétentieux prétentieux adj m 4.51 5.95 3.37 3.24 +prétention prétention nom f s 2.63 10.68 1.51 6.28 +prétentions prétention nom f p 2.63 10.68 1.12 4.39 +préternaturel préternaturel adj m s 0.03 0 0.03 0 +préteur préteur nom m s 0.02 0.2 0.02 0.14 +préteurs préteur nom m p 0.02 0.2 0 0.07 +prétexta prétexter ver 0.87 5.61 0.01 0.61 ind:pas:3s; +prétextai prétexter ver 0.87 5.61 0 0.2 ind:pas:1s; +prétextait prétexter ver 0.87 5.61 0.01 0.41 ind:imp:3s; +prétextant prétexter ver 0.87 5.61 0.34 3.11 par:pre; +prétexte prétexte nom m s 14.04 42.91 12.1 36.82 +prétextent prétexter ver 0.87 5.61 0.01 0 ind:pre:3p; +prétexter prétexter ver 0.87 5.61 0.19 0.07 inf; +prétextes prétexte nom m p 14.04 42.91 1.94 6.08 +prétexté prétexter ver m s 0.87 5.61 0.19 0.54 par:pas; +prétoire prétoire nom m s 0.24 2.3 0.09 2.16 +prétoires prétoire nom m p 0.24 2.3 0.16 0.14 +prétorien prétorien nom m s 0.18 0.07 0.03 0 +prétorienne prétorien adj f s 0.36 0.34 0.35 0.14 +prétoriennes prétorien adj f p 0.36 0.34 0 0.07 +prétoriens prétorien nom m p 0.18 0.07 0.15 0.07 +préture préture nom f s 0.01 0 0.01 0 +prévalaient prévaloir ver 1.44 2.64 0.01 0.27 ind:imp:3p; +prévalait prévaloir ver 1.44 2.64 0.14 0.27 ind:imp:3s; +prévalant prévaloir ver 1.44 2.64 0.1 0.07 par:pre; +prévalence prévalence nom f s 0.11 0 0.11 0 +prévalent prévalent adj m s 0.14 0 0.14 0 +prévalez prévaloir ver 1.44 2.64 0 0.07 ind:pre:2p; +prévaloir prévaloir ver 1.44 2.64 0.42 1.15 inf; +prévalu prévaloir ver m s 1.44 2.64 0.08 0.2 par:pas; +prévalut prévaloir ver 1.44 2.64 0.01 0.2 ind:pas:3s; +prévaricateur prévaricateur nom m s 0 0.14 0 0.14 +prévaudra prévaloir ver 1.44 2.64 0.36 0 ind:fut:3s; +prévaudrait prévaloir ver 1.44 2.64 0.03 0.14 cnd:pre:3s; +prévaudront prévaloir ver 1.44 2.64 0.01 0 ind:fut:3p; +prévaut prévaloir ver 1.44 2.64 0.26 0.27 ind:pre:3s; +prévenaient prévenir ver 129.28 73.72 0 0.2 ind:imp:3p; +prévenais prévenir ver 129.28 73.72 0.06 0.07 ind:imp:1s;ind:imp:2s; +prévenait prévenir ver 129.28 73.72 0.32 2.23 ind:imp:3s; +prévenance prévenance nom f s 0.43 2.5 0.23 0.41 +prévenances prévenance nom f p 0.43 2.5 0.2 2.09 +prévenant prévenant adj m s 1.12 1.35 0.74 0.74 +prévenante prévenant adj f s 1.12 1.35 0.29 0.47 +prévenants prévenant adj m p 1.12 1.35 0.09 0.14 +prévenez prévenir ver 129.28 73.72 10.22 1.42 imp:pre:2p;ind:pre:2p; +préveniez prévenir ver 129.28 73.72 0.07 0.07 ind:imp:2p; +prévenions prévenir ver 129.28 73.72 0.11 0.07 ind:imp:1p; +prévenir prévenir ver 129.28 73.72 42.51 31.49 ind:imp:3s;inf; +prévenons prévenir ver 129.28 73.72 0.67 0 imp:pre:1p;ind:pre:1p; +préventif préventif adj m s 1.85 1.22 0.26 0.41 +prévention prévention nom f s 1.4 2.57 1.33 1.35 +préventions prévention nom f p 1.4 2.57 0.07 1.22 +préventive préventif adj f s 1.85 1.22 1.5 0.61 +préventivement préventivement adv 0 0.34 0 0.34 +préventives préventif adj f p 1.85 1.22 0.09 0.2 +préventorium préventorium nom m s 0 0.41 0 0.41 +prévenu prévenir ver m s 129.28 73.72 24.25 14.53 par:pas; +prévenue prévenir ver f s 129.28 73.72 7.24 3.65 par:pas; +prévenues prévenir ver f p 129.28 73.72 0.33 0.2 par:pas; +prévenus prévenir ver m p 129.28 73.72 4.64 3.58 par:pas; +préviendra prévenir ver 129.28 73.72 1.06 0.2 ind:fut:3s; +préviendrai prévenir ver 129.28 73.72 1.96 0.41 ind:fut:1s; +préviendrais prévenir ver 129.28 73.72 0.07 0.07 cnd:pre:1s; +préviendrait prévenir ver 129.28 73.72 0.08 0.47 cnd:pre:3s; +préviendras prévenir ver 129.28 73.72 0.12 0.2 ind:fut:2s; +préviendrez prévenir ver 129.28 73.72 0.14 0.14 ind:fut:2p; +préviendrons prévenir ver 129.28 73.72 0.18 0 ind:fut:1p; +préviendront prévenir ver 129.28 73.72 0.1 0.07 ind:fut:3p; +prévienne prévenir ver 129.28 73.72 1.37 1.69 sub:pre:1s;sub:pre:3s; +préviennent prévenir ver 129.28 73.72 0.63 0.47 ind:pre:3p; +préviennes prévenir ver 129.28 73.72 0.23 0 sub:pre:2s; +préviens prévenir ver 129.28 73.72 29.86 6.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prévient prévenir ver 129.28 73.72 2.5 2.03 ind:pre:3s; +prévins prévenir ver 129.28 73.72 0 0.54 ind:pas:1s; +prévint prévenir ver 129.28 73.72 0 2.3 ind:pas:3s; +prévis prévis nom f 0 0.14 0 0.14 +prévisibilité prévisibilité nom f s 0.04 0 0.04 0 +prévisible prévisible adj s 2.79 3.45 2.4 2.77 +prévisibles prévisible adj p 2.79 3.45 0.39 0.68 +prévision prévision nom f s 3.29 7.03 1.28 3.58 +prévisionnel prévisionnel adj m s 0.12 0.07 0.08 0 +prévisionnelles prévisionnel adj f p 0.12 0.07 0.01 0 +prévisionnels prévisionnel adj m p 0.12 0.07 0.03 0.07 +prévisions prévision nom f p 3.29 7.03 2 3.45 +prévit prévoir ver 78.22 77.09 0 0.07 ind:pas:3s; +prévoie prévoir ver 78.22 77.09 0.44 0 sub:pre:1s;sub:pre:3s; +prévoient prévoir ver 78.22 77.09 0.54 0.34 ind:pre:3p; +prévoies prévoir ver 78.22 77.09 0.09 0 sub:pre:2s; +prévoir prévoir ver 78.22 77.09 8.23 17.7 inf; +prévoira prévoir ver 78.22 77.09 0.01 0 ind:fut:3s; +prévoirait prévoir ver 78.22 77.09 0.01 0.07 cnd:pre:3s; +prévois prévoir ver 78.22 77.09 1.86 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prévoit prévoir ver 78.22 77.09 3.05 1.96 ind:pre:3s; +prévoyaient prévoir ver 78.22 77.09 0.19 0.54 ind:imp:3p; +prévoyais prévoir ver 78.22 77.09 0.4 1.62 ind:imp:1s;ind:imp:2s; +prévoyait prévoir ver 78.22 77.09 0.55 4.05 ind:imp:3s; +prévoyance prévoyance nom f s 0.43 1.28 0.43 1.22 +prévoyances prévoyance nom f p 0.43 1.28 0 0.07 +prévoyant prévoyant adj m s 0.78 1.89 0.58 0.88 +prévoyante prévoyant adj f s 0.78 1.89 0.06 0.47 +prévoyantes prévoyant adj f p 0.78 1.89 0 0.14 +prévoyants prévoyant adj m p 0.78 1.89 0.14 0.41 +prévoyez prévoir ver 78.22 77.09 0.96 0.14 imp:pre:2p;ind:pre:2p; +prévoyions prévoir ver 78.22 77.09 0.01 0.07 ind:imp:1p; +prévoyons prévoir ver 78.22 77.09 0.49 0.2 imp:pre:1p;ind:pre:1p; +prévu prévoir ver m s 78.22 77.09 55.54 33.45 par:pas; +prévue prévoir ver f s 78.22 77.09 4.35 7.7 par:pas; +prévues prévoir ver f p 78.22 77.09 0.65 3.51 par:pas; +prévus prévoir ver m p 78.22 77.09 0.76 2.43 par:pas; +prévînt prévenir ver 129.28 73.72 0 0.07 sub:imp:3s; +prévôt prévôt nom m s 0.47 1.42 0.39 1.35 +prévôts prévôt nom m p 0.47 1.42 0.08 0.07 +prévôté prévôté nom f s 0.01 0.2 0.01 0.2 +préélectoral préélectoral adj m s 0.02 0 0.01 0 +préélectorale préélectoral adj f s 0.02 0 0.01 0 +prééminence prééminence nom f s 0.01 0.41 0.01 0.41 +prééminente prééminent adj f s 0 0.07 0 0.07 +préétabli préétabli adj m s 0.28 0.41 0.25 0.14 +préétablie préétabli adj f s 0.28 0.41 0.01 0.2 +préétablies préétabli adj f p 0.28 0.41 0.01 0 +préétablis préétabli adj m p 0.28 0.41 0.01 0.07 +prêcha prêcher ver 7.82 7.43 0.12 0.2 ind:pas:3s; +prêchaient prêcher ver 7.82 7.43 0.03 0.61 ind:imp:3p; +prêchais prêcher ver 7.82 7.43 0.04 0.07 ind:imp:1s;ind:imp:2s; +prêchait prêcher ver 7.82 7.43 0.49 1.55 ind:imp:3s; +prêchant prêcher ver 7.82 7.43 0.34 0.27 par:pre; +prêche prêcher ver 7.82 7.43 1.7 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prêchent prêcher ver 7.82 7.43 0.77 0.41 ind:pre:3p; +prêcher prêcher ver 7.82 7.43 3.06 2.36 inf; +prêches prêcher ver 7.82 7.43 0.2 0.14 ind:pre:2s; +prêcheur prêcheur nom m s 0.82 4.59 0.58 0.74 +prêcheurs prêcheur nom m p 0.82 4.59 0.2 3.78 +prêcheuse prêcheur nom f s 0.82 4.59 0.03 0.07 +prêchez prêcher ver 7.82 7.43 0.25 0.07 imp:pre:2p;ind:pre:2p; +prêchi_prêcha prêchi_prêcha nom m 0.11 0.14 0.11 0.14 +prêché prêcher ver m s 7.82 7.43 0.63 0.88 par:pas; +prêchée prêcher ver f s 7.82 7.43 0.2 0.14 par:pas; +prêles prêle nom f p 0 0.14 0 0.14 +prêt prêt adj m s 314.64 121.28 170.23 60.41 +prêt_bail prêt_bail nom m s 0 0.27 0 0.27 +prêt_à_porter prêt_à_porter nom m s 0 0.95 0 0.95 +prêta prêter ver 62 87.09 0.21 4.59 ind:pas:3s; +prêtai prêter ver 62 87.09 0 0.41 ind:pas:1s; +prêtaient prêter ver 62 87.09 0.28 2.77 ind:imp:3p; +prêtais prêter ver 62 87.09 0.38 1.42 ind:imp:1s;ind:imp:2s; +prêtait prêter ver 62 87.09 0.29 13.24 ind:imp:3s; +prêtant prêter ver 62 87.09 0.33 2.91 par:pre; +prêtassent prêter ver 62 87.09 0 0.14 sub:imp:3p; +prête prêt adj f s 314.64 121.28 66.25 28.31 +prête_nom prête_nom nom m s 0 0.27 0 0.27 +prêtent prêter ver 62 87.09 0.42 2.5 ind:pre:3p; +prêter prêter ver 62 87.09 14.4 21.22 inf;; +prêtera prêter ver 62 87.09 1.37 0.41 ind:fut:3s; +prêterai prêter ver 62 87.09 1.56 0.88 ind:fut:1s; +prêteraient prêter ver 62 87.09 0.03 0.41 cnd:pre:3p; +prêterais prêter ver 62 87.09 0.55 0.41 cnd:pre:1s;cnd:pre:2s; +prêterait prêter ver 62 87.09 0.48 1.08 cnd:pre:3s; +prêteras prêter ver 62 87.09 0.22 0.07 ind:fut:2s; +prêterez prêter ver 62 87.09 0.09 0.07 ind:fut:2p; +prêteriez prêter ver 62 87.09 0.16 0.27 cnd:pre:2p; +prêterions prêter ver 62 87.09 0.01 0.14 cnd:pre:1p; +prêterons prêter ver 62 87.09 0.02 0.2 ind:fut:1p; +prêteront prêter ver 62 87.09 0.41 0.2 ind:fut:3p; +prêtes prêt adj f p 314.64 121.28 10.78 7.64 +prêteur prêteur nom m s 1.56 0.61 1.13 0.27 +prêteurs prêteur nom m p 1.56 0.61 0.43 0.27 +prêteuse prêteur adj f s 0.27 0.41 0.01 0.07 +prêtez prêter ver 62 87.09 4.16 0.74 imp:pre:2p;ind:pre:2p; +prêtiez prêter ver 62 87.09 0.22 0.07 ind:imp:2p; +prêtions prêter ver 62 87.09 0.02 0.2 ind:imp:1p; +prêtons prêter ver 62 87.09 0.26 0.41 imp:pre:1p;ind:pre:1p; +prêtraille prêtraille nom f s 0 0.07 0 0.07 +prêtre prêtre nom m s 51.69 45.27 38.37 29.39 +prêtre_ouvrier prêtre_ouvrier nom m s 0 0.07 0 0.07 +prêtres prêtre nom m p 51.69 45.27 11.31 14.66 +prêtresse prêtre nom f s 51.69 45.27 1.52 0.88 +prêtresses prêtre nom f p 51.69 45.27 0.49 0.34 +prêtrise prêtrise nom f s 0.28 0.41 0.28 0.41 +prêts prêt adj 314.64 121.28 67.39 24.93 +prêtâmes prêter ver 62 87.09 0 0.07 ind:pas:1p; +prêtât prêter ver 62 87.09 0 0.34 sub:imp:3s; +prêtèrent prêter ver 62 87.09 0.3 0.14 ind:pas:3p; +prêté prêter ver m s 62 87.09 10.73 11.08 par:pas; +prêtée prêter ver f s 62 87.09 1.28 2.57 par:pas; +prêtées prêter ver f p 62 87.09 0.12 0.54 par:pas; +prêtés prêter ver m p 62 87.09 0.37 1.15 par:pas; +prîmes prendre ver 1913.83 1466.42 0.22 2.77 ind:pas:1p; +prît prendre ver 1913.83 1466.42 0.24 6.42 sub:imp:3s; +prônais prôner ver 1.34 1.49 0.01 0 ind:imp:2s; +prônait prôner ver 1.34 1.49 0.15 0.61 ind:imp:3s; +prônant prôner ver 1.34 1.49 0.13 0.2 par:pre; +prône prôner ver 1.34 1.49 0.46 0.27 ind:pre:1s;ind:pre:3s; +prônent prôner ver 1.34 1.49 0.18 0.07 ind:pre:3p; +prôner prôner ver 1.34 1.49 0.1 0 inf; +prônera prôner ver 1.34 1.49 0.01 0 ind:fut:3s; +prônerez prôner ver 1.34 1.49 0.01 0 ind:fut:2p; +prônes prôner ver 1.34 1.49 0.05 0 ind:pre:2s; +prôneur prôneur nom m s 0 0.07 0 0.07 +prônez prôner ver 1.34 1.49 0.05 0 ind:pre:2p; +prônons prôner ver 1.34 1.49 0.02 0 imp:pre:1p;ind:pre:1p; +prôné prôner ver m s 1.34 1.49 0.03 0.07 par:pas; +prônée prôner ver f s 1.34 1.49 0.14 0.14 par:pas; +prônées prôner ver f p 1.34 1.49 0 0.07 par:pas; +prônés prôner ver m p 1.34 1.49 0 0.07 par:pas; +psalliotes psalliote nom f p 0 0.2 0 0.2 +psalmiste psalmiste nom s 0 0.14 0 0.14 +psalmodia psalmodier ver 0.33 3.24 0 0.2 ind:pas:3s; +psalmodiaient psalmodier ver 0.33 3.24 0 0.14 ind:imp:3p; +psalmodiais psalmodier ver 0.33 3.24 0.03 0.14 ind:imp:1s;ind:imp:2s; +psalmodiait psalmodier ver 0.33 3.24 0.01 0.81 ind:imp:3s; +psalmodiant psalmodier ver 0.33 3.24 0.01 0.81 par:pre; +psalmodie psalmodier ver 0.33 3.24 0.06 0.41 ind:pre:1s;ind:pre:3s; +psalmodient psalmodier ver 0.33 3.24 0 0.14 ind:pre:3p; +psalmodier psalmodier ver 0.33 3.24 0.16 0.47 inf; +psalmodies psalmodie nom f p 0.15 0.74 0.12 0.41 +psalmodié psalmodier ver m s 0.33 3.24 0.01 0.14 par:pas; +psalmodiés psalmodier ver m p 0.33 3.24 0.01 0 par:pas; +psaume psaume nom m s 1.73 4.39 0.83 1.96 +psaumes psaume nom m p 1.73 4.39 0.9 2.43 +psautier psautier nom m s 0 0.14 0 0.14 +pschent pschent nom m s 0 0.07 0 0.07 +pschitt pschitt ono 0.02 0.95 0.02 0.95 +pseudo pseudo nom_sup m s 1.62 1.08 1.37 1.01 +pseudo_gouvernement pseudo_gouvernement nom m s 0 0.14 0 0.14 +pseudobulbaire pseudobulbaire adj f s 0.01 0 0.01 0 +pseudomonas pseudomonas nom m 0.05 0 0.05 0 +pseudonyme pseudonyme nom m s 1.62 4.05 1.46 3.38 +pseudonymes pseudonyme nom m p 1.62 4.05 0.16 0.68 +pseudopodes pseudopode nom m p 0 0.14 0 0.14 +pseudos pseudo nom_sup m p 1.62 1.08 0.25 0.07 +psi psi nom m 0.04 0 0.04 0 +psilocybine psilocybine nom f s 0.05 0 0.05 0 +psitt psitt ono 0.01 0.2 0.01 0.2 +psittacose psittacose nom f s 0.05 0 0.05 0 +psoriasis psoriasis nom m 0.14 0 0.14 0 +pst pst ono 0.43 0 0.43 0 +psy psy nom s 17.22 3.85 15.94 3.85 +psychanalyse psychanalyse nom f s 1.35 4.73 1.35 4.66 +psychanalyser psychanalyser ver 0.22 1.42 0.14 1.01 inf; +psychanalyserai psychanalyser ver 0.22 1.42 0 0.2 ind:fut:1s; +psychanalyses psychanalyser ver 0.22 1.42 0.01 0 ind:pre:2s; +psychanalyste psychanalyste nom s 0.91 3.38 0.83 2.77 +psychanalystes psychanalyste nom p 0.91 3.38 0.08 0.61 +psychanalysé psychanalyser ver m s 0.22 1.42 0.04 0.07 par:pas; +psychanalytique psychanalytique adj s 0.15 0.54 0.13 0.41 +psychanalytiques psychanalytique adj p 0.15 0.54 0.02 0.14 +psychasthéniques psychasthénique adj p 0 0.07 0 0.07 +psychiatre psychiatre nom s 13.52 8.11 11.39 6.82 +psychiatre_conseil psychiatre_conseil nom s 0.02 0 0.02 0 +psychiatres psychiatre nom p 13.52 8.11 2.13 1.28 +psychiatrie psychiatrie nom f s 3.59 1.22 3.59 1.22 +psychiatrique psychiatrique adj s 9.16 3.65 7.68 3.04 +psychiatriques psychiatrique adj p 9.16 3.65 1.48 0.61 +psychique psychique adj s 3.34 2.84 1.75 1.76 +psychiquement psychiquement adv 0.13 0 0.13 0 +psychiques psychique adj p 3.34 2.84 1.59 1.08 +psychisme psychisme nom m s 0.38 1.15 0.38 1.08 +psychismes psychisme nom m p 0.38 1.15 0 0.07 +psycho psycho adv 2.11 0.27 2.11 0.27 +psychochirurgie psychochirurgie nom f s 0.02 0 0.02 0 +psychodrame psychodrame nom m s 0.33 0.2 0.33 0.2 +psychodysleptique psychodysleptique adj s 0.01 0 0.01 0 +psychogène psychogène adj f s 0.01 1.08 0.01 0.2 +psychogènes psychogène adj p 0.01 1.08 0 0.88 +psychokinésie psychokinésie nom f s 0.2 0 0.2 0 +psycholinguistes psycholinguiste nom p 0 0.07 0 0.07 +psycholinguistique psycholinguistique adj s 0.01 0 0.01 0 +psychologie psychologie nom f s 5.64 8.24 5.64 8.11 +psychologie_fiction psychologie_fiction nom f s 0 0.07 0 0.07 +psychologies psychologie nom f p 5.64 8.24 0 0.14 +psychologique psychologique adj s 8.07 6.69 6.79 4.93 +psychologiquement psychologiquement adv 1.68 0.34 1.68 0.34 +psychologiques psychologique adj p 8.07 6.69 1.28 1.76 +psychologisation psychologisation nom f s 0 0.07 0 0.07 +psychologue psychologue nom s 6.67 3.72 5.98 2.64 +psychologues psychologue nom p 6.67 3.72 0.69 1.08 +psychomotrice psychomoteur adj f s 0.14 0 0.14 0 +psychométrique psychométrique adj s 0.02 0 0.02 0 +psychonévrose psychonévrose nom f s 0.01 0 0.01 0 +psychopathe psychopathe nom s 9.38 0.14 8.01 0.14 +psychopathes psychopathe nom p 9.38 0.14 1.38 0 +psychopathie psychopathie nom f s 0.02 0 0.02 0 +psychopathique psychopathique adj f s 0.13 0 0.13 0 +psychopathologie psychopathologie nom f s 0.05 0.07 0.05 0.07 +psychopathologique psychopathologique adj f s 0.01 0.07 0.01 0.07 +psychopharmacologie psychopharmacologie nom f s 0.03 0 0.03 0 +psychophysiologie psychophysiologie nom f s 0.01 0 0.01 0 +psychophysiologique psychophysiologique adj f s 0.01 0 0.01 0 +psychorigide psychorigide adj m s 0.02 0 0.02 0 +psychose psychose nom f s 1.79 0.95 1.79 0.95 +psychosexuel psychosexuel adj m s 0.01 0 0.01 0 +psychosociologie psychosociologie nom f s 0 0.07 0 0.07 +psychosociologue psychosociologue nom s 0.1 0 0.1 0 +psychosomaticien psychosomaticien nom m s 0 0.2 0 0.2 +psychosomatique psychosomatique adj s 0.66 0.47 0.55 0.41 +psychosomatiques psychosomatique adj p 0.66 0.47 0.11 0.07 +psychotechnicien psychotechnicien nom m s 0 0.2 0 0.14 +psychotechniciens psychotechnicien nom m p 0 0.2 0 0.07 +psychotechnique psychotechnique adj m s 0.2 0 0.2 0 +psychothérapeute psychothérapeute nom s 0.23 0.14 0.23 0.14 +psychothérapie psychothérapie nom f s 0.69 0.2 0.69 0.2 +psychotique psychotique adj s 2.66 0.27 2.25 0 +psychotiques psychotique adj p 2.66 0.27 0.42 0.27 +psychotoniques psychotonique nom p 0.01 0 0.01 0 +psychotrope psychotrope nom s 0.34 0 0.07 0 +psychotropes psychotrope nom p 0.34 0 0.26 0 +psyché psyché nom f s 0.73 1.08 0.7 1.01 +psychédélique psychédélique adj s 0.89 0.61 0.79 0.41 +psychédéliques psychédélique adj p 0.89 0.61 0.11 0.2 +psychés psyché nom f p 0.73 1.08 0.03 0.07 +psyllium psyllium nom m s 0.01 0 0.01 0 +psys psy nom p 17.22 3.85 1.28 0 +ptosis ptosis nom m 0.01 0 0.01 0 +ptyx ptyx nom m 0 0.07 0 0.07 +ptérodactyle ptérodactyle nom m s 0.21 0.2 0.19 0.07 +ptérodactyles ptérodactyle nom m p 0.21 0.2 0.02 0.14 +pu pouvoir ver_sup m s 5524.47 2659.8 366.22 349.32 par:pas; +pua puer ver 36.29 18.65 0.01 0.07 ind:pas:3s; +puaient puer ver 36.29 18.65 0.04 0.47 ind:imp:3p; +puais puer ver 36.29 18.65 0.37 0.2 ind:imp:1s;ind:imp:2s; +puait puer ver 36.29 18.65 1.19 3.51 ind:imp:3s; +puant puant adj m s 7.02 11.49 2.74 4.59 +puante puant adj f s 7.02 11.49 1.91 3.11 +puantes puant adj f p 7.02 11.49 0.77 2.3 +puanteur puanteur nom f s 3.44 9.05 3.32 7.91 +puanteurs puanteur nom f p 3.44 9.05 0.12 1.15 +puants puant adj m p 7.02 11.49 1.6 1.49 +pub pub nom s 25.65 4.53 21.39 3.99 +pubertaire pubertaire adj s 0.14 0.2 0.14 0.07 +pubertaires pubertaire adj f p 0.14 0.2 0 0.14 +puberté puberté nom f s 1.32 2.36 1.32 2.36 +pubescentes pubescent adj f p 0.01 0 0.01 0 +pubien pubien adj m s 1.51 0.41 0.57 0.07 +pubienne pubien adj f s 1.51 0.41 0.2 0.2 +pubiennes pubien adj f p 1.51 0.41 0.01 0.07 +pubiens pubien adj m p 1.51 0.41 0.72 0.07 +pubis pubis nom m 0.59 1.15 0.59 1.15 +publia publier ver 21.07 33.92 0.03 1.35 ind:pas:3s; +publiable publiable adj s 0.03 0.07 0.01 0.07 +publiables publiable adj m p 0.03 0.07 0.02 0 +publiai publier ver 21.07 33.92 0.01 0.27 ind:pas:1s; +publiaient publier ver 21.07 33.92 0.02 1.01 ind:imp:3p; +publiais publier ver 21.07 33.92 0 0.14 ind:imp:1s; +publiait publier ver 21.07 33.92 0.27 1.89 ind:imp:3s; +publiant publier ver 21.07 33.92 0.07 0.61 par:pre; +public public nom m s 46.97 38.04 46.72 37.91 +public_school public_school nom f p 0 0.07 0 0.07 +public_relations public_relations nom f p 0.01 0.2 0.01 0.2 +publicain publicain nom m s 0.39 0.34 0.01 0.14 +publicains publicain nom m p 0.39 0.34 0.38 0.2 +publication publication nom f s 1.85 7.23 1.4 5 +publications publication nom f p 1.85 7.23 0.45 2.23 +publiciste publiciste nom s 0.18 0.74 0.12 0.47 +publicistes publiciste nom p 0.18 0.74 0.06 0.27 +publicitaire publicitaire adj s 3.26 6.49 1.93 3.72 +publicitairement publicitairement adv 0 0.07 0 0.07 +publicitaires publicitaire adj p 3.26 6.49 1.34 2.77 +publicité publicité nom f s 13.3 14.66 12.12 12.57 +publicités publicité nom f p 13.3 14.66 1.18 2.09 +publico publico adv 0.01 0.07 0.01 0.07 +publics public adj m p 44.81 65.27 4.84 14.46 +publie publier ver 21.07 33.92 1.71 2.7 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +publient publier ver 21.07 33.92 0.41 0.34 ind:pre:3p; +publier publier ver 21.07 33.92 6.85 8.92 inf; +publiera publier ver 21.07 33.92 0.47 0.27 ind:fut:3s; +publierai publier ver 21.07 33.92 0.12 0.07 ind:fut:1s; +publieraient publier ver 21.07 33.92 0.01 0 cnd:pre:3p; +publierais publier ver 21.07 33.92 0.02 0.14 cnd:pre:1s; +publierait publier ver 21.07 33.92 0.01 0.34 cnd:pre:3s; +publierez publier ver 21.07 33.92 0.05 0.14 ind:fut:2p; +publierions publier ver 21.07 33.92 0 0.07 cnd:pre:1p; +publierons publier ver 21.07 33.92 0.05 0.07 ind:fut:1p; +publieront publier ver 21.07 33.92 0.08 0.14 ind:fut:3p; +publies publier ver 21.07 33.92 0.31 0.2 ind:pre:2s; +publieur publieur nom m s 0.01 0 0.01 0 +publiez publier ver 21.07 33.92 1.06 0.07 imp:pre:2p;ind:pre:2p; +publions publier ver 21.07 33.92 0.31 0.34 imp:pre:1p;ind:pre:1p; +publiphone publiphone nom m s 0.01 0 0.01 0 +publique public adj f s 44.81 65.27 16.5 24.93 +publiquement publiquement adv 2.47 7.57 2.47 7.57 +publiques public adj f p 44.81 65.27 5.56 7.84 +publireportage publireportage nom m s 0.03 0 0.03 0 +publiât publier ver 21.07 33.92 0 0.07 sub:imp:3s; +publièrent publier ver 21.07 33.92 0 0.34 ind:pas:3p; +publié publier ver m s 21.07 33.92 6.54 8.85 par:pas; +publiée publier ver f s 21.07 33.92 1.09 2.97 par:pas; +publiées publier ver f p 21.07 33.92 0.56 1.08 par:pas; +publiés publier ver m p 21.07 33.92 1.01 1.55 par:pas; +pubs pub nom p 25.65 4.53 4.26 0.54 +pubère pubère adj s 0.28 0.41 0.2 0.2 +pubères pubère adj p 0.28 0.41 0.09 0.2 +puce puce nom f s 27.65 12.43 22.15 3.58 +puceau puceau adj m s 2.92 1.96 2.15 1.01 +puceaux puceau nom m p 2.3 2.84 0.3 0.27 +pucelage pucelage nom m s 0.38 1.15 0.38 0.95 +pucelages pucelage nom m p 0.38 1.15 0 0.2 +pucelle puceau nom f s 2.3 2.84 1.09 1.35 +pucelles puceau nom f p 2.3 2.84 0.31 0.61 +puceron puceron nom m s 0.17 0.47 0.06 0.2 +pucerons puceron nom m p 0.17 0.47 0.11 0.27 +puces puce nom f p 27.65 12.43 5.5 8.85 +pucher pucher ver 0.02 0 0.02 0 inf; +pucheux pucheux nom m 0 0.07 0 0.07 +pucier pucier nom m s 0.05 0.41 0.05 0.34 +puciers pucier nom m p 0.05 0.41 0 0.07 +pudding pudding nom m s 2.86 0.68 2.8 0.54 +puddings pudding nom m p 2.86 0.68 0.06 0.14 +puddle puddler ver 0.16 0 0.16 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pudeur pudeur nom f s 5.08 20.07 4.98 19.32 +pudeurs pudeur nom f p 5.08 20.07 0.1 0.74 +pudibond pudibond adj m s 0.06 0.41 0.02 0.14 +pudibonde pudibond adj f s 0.06 0.41 0.04 0.14 +pudibonderie pudibonderie nom f s 0.01 0.47 0.01 0.34 +pudibonderies pudibonderie nom f p 0.01 0.47 0 0.14 +pudibondes pudibond adj f p 0.06 0.41 0 0.07 +pudibonds pudibond adj m p 0.06 0.41 0 0.07 +pudicité pudicité nom f s 0 0.07 0 0.07 +pudique pudique adj s 1.12 5.27 0.98 4.39 +pudiquement pudiquement adv 0.02 2.03 0.02 2.03 +pudiques pudique adj p 1.12 5.27 0.14 0.88 +pue puer ver 36.29 18.65 23.8 8.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pueblo pueblo adj m s 0.05 0.95 0.05 0.95 +puent puer ver 36.29 18.65 2.29 1.89 ind:pre:3p; +puer puer ver 36.29 18.65 1.44 1.49 inf; +puera puer ver 36.29 18.65 0.05 0 ind:fut:3s; +puerait puer ver 36.29 18.65 0.01 0 cnd:pre:3s; +pueras puer ver 36.29 18.65 0.23 0 ind:fut:2s; +puerez puer ver 36.29 18.65 0.01 0 ind:fut:2p; +puerpérale puerpéral adj f s 0.12 0.07 0.12 0.07 +pues puer ver 36.29 18.65 5.66 0.54 ind:pre:2s; +puez puer ver 36.29 18.65 0.67 0.14 imp:pre:2p;ind:pre:2p; +puff puff nom m s 0.57 0.14 0.57 0.14 +puffin puffin nom m s 0.54 0 0.54 0 +pugilat pugilat nom m s 0.12 1.08 0.11 0.74 +pugilats pugilat nom m p 0.12 1.08 0.01 0.34 +pugiler pugiler ver 0 0.07 0 0.07 inf; +pugiliste pugiliste nom s 0.2 0.41 0.2 0.2 +pugilistes pugiliste nom p 0.2 0.41 0 0.2 +pugilistique pugilistique adj f s 0 0.07 0 0.07 +pugnace pugnace adj s 0.06 0.14 0.06 0.14 +pugnacité pugnacité nom f s 0.04 0.2 0.04 0.2 +puis puis con 256.19 836.42 256.19 836.42 +puisa puiser ver 2.97 14.46 0.02 0.68 ind:pas:3s; +puisai puiser ver 2.97 14.46 0.14 0.2 ind:pas:1s; +puisaient puiser ver 2.97 14.46 0 0.81 ind:imp:3p; +puisais puiser ver 2.97 14.46 0 0.61 ind:imp:1s; +puisait puiser ver 2.97 14.46 0.16 3.11 ind:imp:3s; +puisant puiser ver 2.97 14.46 0.17 1.01 par:pre; +puisard puisard nom m s 0.29 0.2 0.29 0.14 +puisards puisard nom m p 0.29 0.2 0 0.07 +puisatier puisatier nom m s 0 0.07 0 0.07 +puise puiser ver 2.97 14.46 0.82 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +puisent puiser ver 2.97 14.46 0.02 0.2 ind:pre:3p; +puiser puiser ver 2.97 14.46 1.08 3.51 inf; +puisera puiser ver 2.97 14.46 0.01 0.07 ind:fut:3s; +puiserai puiser ver 2.97 14.46 0 0.07 ind:fut:1s; +puiserait puiser ver 2.97 14.46 0 0.07 cnd:pre:3s; +puiserez puiser ver 2.97 14.46 0.02 0 ind:fut:2p; +puiseront puiser ver 2.97 14.46 0 0.14 ind:fut:3p; +puises puiser ver 2.97 14.46 0.08 0.07 ind:pre:2s; +puisette puisette nom f s 0 0.14 0 0.14 +puisez puiser ver 2.97 14.46 0.04 0 imp:pre:2p;ind:pre:2p; +puisions puiser ver 2.97 14.46 0 0.07 ind:imp:1p; +puisons puiser ver 2.97 14.46 0.03 0.27 imp:pre:1p;ind:pre:1p; +puisqu puisqu con 0.03 0 0.03 0 +puisque puisque con 59.09 131.82 59.09 131.82 +puissamment puissamment con 0.12 0.95 0.12 0.95 +puissance puissance nom f s 33.69 55.2 30.37 44.12 +puissances puissance nom f p 33.69 55.2 3.33 11.08 +puissant puissant adj m s 39.99 47.7 22.65 19.86 +puissante puissant adj f s 39.99 47.7 9.16 14.26 +puissantes puissant adj f p 39.99 47.7 2.85 5.2 +puissants puissant adj m p 39.99 47.7 5.34 8.38 +puisse pouvoir ver_sup 5524.47 2659.8 90.37 74.8 sub:pre:1s;sub:pre:3s; +puissent pouvoir ver_sup 5524.47 2659.8 10.18 14.05 sub:pre:3p; +puisses pouvoir ver_sup 5524.47 2659.8 13.79 2.5 sub:pre:2s; +puissiez pouvoir ver_sup 5524.47 2659.8 8.59 2.97 sub:pre:2p; +puissions pouvoir ver_sup 5524.47 2659.8 6.2 3.58 sub:pre:1p; +puisé puiser ver m s 2.97 14.46 0.35 1.35 par:pas; +puisée puiser ver f s 2.97 14.46 0.01 0.54 par:pas; +puisées puiser ver f p 2.97 14.46 0.02 0.34 par:pas; +puisés puiser ver m p 2.97 14.46 0 0.2 par:pas; +puits puits nom m 19.52 21.69 19.52 21.69 +pull pull nom m s 13.43 8.65 11.41 7.03 +pull_over pull_over nom m s 0.8 6.35 0.78 5.27 +pull_over pull_over nom m p 0.8 6.35 0.02 1.08 +pullman pullman nom m s 0.06 0.54 0.05 0.47 +pullmans pullman nom m p 0.06 0.54 0.01 0.07 +pulls pull nom m p 13.43 8.65 2.02 1.62 +pullula pulluler ver 0.78 2.91 0 0.07 ind:pas:3s; +pullulaient pulluler ver 0.78 2.91 0.01 0.74 ind:imp:3p; +pullulait pulluler ver 0.78 2.91 0 0.34 ind:imp:3s; +pullulant pulluler ver 0.78 2.91 0 0.14 par:pre; +pullulantes pullulant adj f p 0 0.2 0 0.07 +pullulants pullulant adj m p 0 0.2 0 0.14 +pullule pulluler ver 0.78 2.91 0.41 0.61 ind:pre:3s; +pullulement pullulement nom m s 0 0.74 0 0.74 +pullulent pulluler ver 0.78 2.91 0.19 0.74 ind:pre:3p; +pulluler pulluler ver 0.78 2.91 0.16 0.27 inf; +pulluleront pulluler ver 0.78 2.91 0.01 0 ind:fut:3p; +pulmonaire pulmonaire adj s 2.31 1.35 2 0.95 +pulmonaires pulmonaire adj p 2.31 1.35 0.32 0.41 +pulmonie pulmonie nom f s 0 0.07 0 0.07 +pulmonique pulmonique adj s 0 0.07 0 0.07 +pulpe pulpe nom f s 0.72 2.36 0.62 2.16 +pulpes pulpe nom f p 0.72 2.36 0.1 0.2 +pulpeuse pulpeux adj f s 0.22 2.23 0.11 1.28 +pulpeuses pulpeux adj f p 0.22 2.23 0.09 0.41 +pulpeux pulpeux adj m 0.22 2.23 0.02 0.54 +pulque pulque nom m s 0.6 0 0.6 0 +pulsait pulser ver 0.51 0.61 0.01 0.2 ind:imp:3s; +pulsant pulser ver 0.51 0.61 0 0.14 par:pre; +pulsar pulsar nom m s 0.46 0 0.46 0 +pulsatile pulsatile adj f s 0.01 0 0.01 0 +pulsation pulsation nom f s 1.24 4.19 0.54 2.09 +pulsations pulsation nom f p 1.24 4.19 0.7 2.09 +pulsative pulsatif adj f s 0.01 0 0.01 0 +pulse pulser ver 0.51 0.61 0.21 0.2 imp:pre:2s;ind:pre:3s; +pulser pulser ver 0.51 0.61 0.11 0.07 inf; +pulseur pulseur nom m s 0.15 0.07 0.15 0.07 +pulsion pulsion nom f s 4.15 1.69 1.19 0.74 +pulsions pulsion nom f p 4.15 1.69 2.96 0.95 +pulso_réacteur pulso_réacteur nom m p 0.01 0 0.01 0 +pulsoréacteurs pulsoréacteur nom m p 0.01 0 0.01 0 +pulsé pulser ver m s 0.51 0.61 0.17 0 par:pas; +pulvérin pulvérin nom m s 0 0.07 0 0.07 +pulvérisa pulvériser ver 3.11 6.69 0 0.47 ind:pas:3s; +pulvérisaient pulvériser ver 3.11 6.69 0 0.07 ind:imp:3p; +pulvérisais pulvériser ver 3.11 6.69 0.01 0 ind:imp:2s; +pulvérisait pulvériser ver 3.11 6.69 0.12 0.61 ind:imp:3s; +pulvérisant pulvériser ver 3.11 6.69 0.08 0.61 par:pre; +pulvérisateur pulvérisateur nom m s 0.22 0.14 0.18 0.07 +pulvérisateurs pulvérisateur nom m p 0.22 0.14 0.03 0.07 +pulvérisation pulvérisation nom f s 0.09 0.27 0.06 0.14 +pulvérisations pulvérisation nom f p 0.09 0.27 0.02 0.14 +pulvérise pulvériser ver 3.11 6.69 0.42 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pulvérisent pulvériser ver 3.11 6.69 0.01 0.2 ind:pre:3p; +pulvériser pulvériser ver 3.11 6.69 1.14 1.15 inf; +pulvériserai pulvériser ver 3.11 6.69 0.02 0.07 ind:fut:1s; +pulvériserait pulvériser ver 3.11 6.69 0.01 0.07 cnd:pre:3s; +pulvériserons pulvériser ver 3.11 6.69 0.01 0 ind:fut:1p; +pulvériseront pulvériser ver 3.11 6.69 0.14 0 ind:fut:3p; +pulvérises pulvériser ver 3.11 6.69 0 0.07 ind:pre:2s; +pulvérisez pulvériser ver 3.11 6.69 0.06 0 imp:pre:2p;ind:pre:2p; +pulvérisé pulvériser ver m s 3.11 6.69 0.74 1.22 par:pas; +pulvérisée pulvériser ver f s 3.11 6.69 0.1 1.08 par:pas; +pulvérisées pulvériser ver f p 3.11 6.69 0.06 0.14 par:pas; +pulvérisés pulvériser ver m p 3.11 6.69 0.17 0.54 par:pas; +pulvérulence pulvérulence nom f s 0 0.07 0 0.07 +pulvérulentes pulvérulent adj f p 0 0.07 0 0.07 +puma puma nom m s 1.34 2.03 0.42 1.89 +pumas puma nom m p 1.34 2.03 0.92 0.14 +punais punais adj m s 0 0.2 0 0.2 +punaisait punaiser ver 0.12 0.81 0 0.07 ind:imp:3s; +punaise punaise nom f s 2.46 7.84 1.41 1.76 +punaises punaise nom f p 2.46 7.84 1.05 6.08 +punaisé punaiser ver m s 0.12 0.81 0.01 0.27 par:pas; +punaisée punaiser ver f s 0.12 0.81 0.01 0.34 par:pas; +punaisées punaiser ver f p 0.12 0.81 0 0.14 par:pas; +punaisés punaiser ver m p 0.12 0.81 0.1 0 par:pas; +punch punch nom m s 3.67 3.11 3.65 2.97 +puncheur puncheur nom m s 0.02 0 0.02 0 +punching_ball punching_ball nom m s 0.71 0.61 0.08 0 +punching_ball punching_ball nom m s 0.71 0.61 0.64 0.61 +punchs punch nom m p 3.67 3.11 0.02 0.14 +punctiforme punctiforme adj f s 0.01 0 0.01 0 +puncture puncture nom f s 0.1 0 0.1 0 +puni punir ver m s 41.7 20.14 10.09 3.99 par:pas; +punie punir ver f s 41.7 20.14 2.79 1.42 par:pas; +punies punir ver f p 41.7 20.14 0.2 0.14 par:pas; +punique punique adj m s 0 0.2 0 0.14 +puniques punique adj p 0 0.2 0 0.07 +punir punir ver 41.7 20.14 13.82 8.45 inf; +punira punir ver 41.7 20.14 1.89 0.27 ind:fut:3s; +punirai punir ver 41.7 20.14 0.91 0 ind:fut:1s; +punirais punir ver 41.7 20.14 0.04 0.07 cnd:pre:1s; +punirait punir ver 41.7 20.14 0.06 0.07 cnd:pre:3s; +puniras punir ver 41.7 20.14 0.02 0.07 ind:fut:2s; +punirez punir ver 41.7 20.14 0.03 0 ind:fut:2p; +punirons punir ver 41.7 20.14 0.17 0 ind:fut:1p; +puniront punir ver 41.7 20.14 0.03 0 ind:fut:3p; +punis punir ver m p 41.7 20.14 6.09 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +punissable punissable adj m s 0.21 0.14 0.21 0.07 +punissables punissable adj m p 0.21 0.14 0 0.07 +punissaient punir ver 41.7 20.14 0.02 0.2 ind:imp:3p; +punissais punir ver 41.7 20.14 0.26 0.14 ind:imp:1s;ind:imp:2s; +punissait punir ver 41.7 20.14 0.29 1.01 ind:imp:3s; +punissant punir ver 41.7 20.14 0.71 0.47 par:pre; +punisse punir ver 41.7 20.14 0.61 0.27 sub:pre:1s;sub:pre:3s; +punissent punir ver 41.7 20.14 0.26 0.2 ind:pre:3p; +punisses punir ver 41.7 20.14 0.3 0 sub:pre:2s; +punisseur punisseur nom m s 0.11 0 0.11 0 +punissez punir ver 41.7 20.14 0.99 0.07 imp:pre:2p;ind:pre:2p; +punissions punir ver 41.7 20.14 0.01 0.07 ind:imp:1p; +punissons punir ver 41.7 20.14 0.15 0 imp:pre:1p;ind:pre:1p; +punit punir ver 41.7 20.14 1.98 1.55 ind:pre:3s;ind:pas:3s; +punitif punitif adj m s 0.42 1.08 0.27 0.14 +punition punition nom f s 13.16 9.46 11.97 7.64 +punitions punition nom f p 13.16 9.46 1.19 1.82 +punitive punitif adj f s 0.42 1.08 0.12 0.61 +punitives punitif adj f p 0.42 1.08 0.03 0.34 +punk punk nom s 6.39 4.12 5.45 2.5 +punkette punkette nom f s 0 0.14 0 0.14 +punks punk nom p 6.39 4.12 0.94 1.62 +punt punt nom m s 0.23 0 0.23 0 +pupazzo pupazzo nom m s 0 0.14 0 0.14 +pupe pupe nom f s 0.01 0 0.01 0 +pupillaire pupillaire adj s 0.07 0 0.06 0 +pupillaires pupillaire adj m p 0.07 0 0.01 0 +pupille pupille nom s 3.92 5.54 2.04 2.43 +pupilles pupille nom p 3.92 5.54 1.88 3.11 +pupitre pupitre nom m s 0.8 6.89 0.73 5.74 +pupitres pupitre nom m p 0.8 6.89 0.07 1.15 +pupitreur pupitreur nom m s 0.01 0 0.01 0 +pur pur adj m s 58.46 90.34 26.48 44.59 +pur_sang pur_sang nom m 1.01 2.23 1.01 2.23 +pure pur adj f s 58.46 90.34 26.97 34.19 +pureau pureau nom m s 0 0.07 0 0.07 +purement purement adv 3.99 9.32 3.99 9.32 +purent pouvoir ver_sup 5524.47 2659.8 0.24 6.89 ind:pas:3p; +pures pur adj f p 58.46 90.34 1.35 4.66 +pureté pureté nom f s 6.77 13.99 6.77 13.92 +puretés pureté nom f p 6.77 13.99 0 0.07 +purgatif purgatif adj m s 0.4 0.14 0.3 0.07 +purgation purgation nom f s 0.02 0.2 0.02 0.07 +purgations purgation nom f p 0.02 0.2 0 0.14 +purgative purgatif adj f s 0.4 0.14 0.1 0.07 +purgatoire purgatoire nom m s 1.92 2.84 1.92 2.77 +purgatoires purgatoire nom m p 1.92 2.84 0 0.07 +purge purger ver 5.46 3.24 1.3 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +purgea purger ver 5.46 3.24 0.02 0.07 ind:pas:3s; +purgeaient purger ver 5.46 3.24 0.01 0.14 ind:imp:3p; +purgeais purger ver 5.46 3.24 0.02 0 ind:imp:1s;ind:imp:2s; +purgeait purger ver 5.46 3.24 0.28 0.41 ind:imp:3s; +purgeant purger ver 5.46 3.24 0.03 0.07 par:pre; +purgent purger ver 5.46 3.24 0.15 0.14 ind:pre:3p; +purger purger ver 5.46 3.24 1.59 1.08 inf; +purgera purger ver 5.46 3.24 0.11 0 ind:fut:3s; +purgerai purger ver 5.46 3.24 0.05 0 ind:fut:1s; +purgerais purger ver 5.46 3.24 0.02 0 cnd:pre:1s;cnd:pre:2s; +purgeras purger ver 5.46 3.24 0.07 0 ind:fut:2s; +purgerez purger ver 5.46 3.24 0.07 0 ind:fut:2p; +purgeriez purger ver 5.46 3.24 0.01 0 cnd:pre:2p; +purges purge nom f p 1.34 1.89 0.84 0.54 +purgez purger ver 5.46 3.24 0.23 0 imp:pre:2p;ind:pre:2p; +purgiez purger ver 5.46 3.24 0.02 0 ind:imp:2p; +purgé purger ver m s 5.46 3.24 0.93 0.81 par:pas; +purgée purger ver f s 5.46 3.24 0.21 0 par:pas; +purgées purger ver f p 5.46 3.24 0.01 0.07 par:pas; +purgés purger ver m p 5.46 3.24 0.23 0.14 par:pas; +purifiaient purifier ver 7.92 4.86 0 0.14 ind:imp:3p; +purifiais purifier ver 7.92 4.86 0.1 0 ind:imp:2s; +purifiait purifier ver 7.92 4.86 0.14 0.2 ind:imp:3s; +purifiant purifier ver 7.92 4.86 0.2 0.27 par:pre; +purificateur purificateur adj m s 0.75 0.68 0.47 0.54 +purificateurs purificateur nom m p 0.22 0.07 0.07 0 +purification purification nom f s 1.31 1.08 1.31 0.95 +purifications purification nom f p 1.31 1.08 0 0.14 +purificatoire purificatoire adj m s 0 0.07 0 0.07 +purificatrice purificateur adj f s 0.75 0.68 0.02 0.07 +purificatrices purificateur adj f p 0.75 0.68 0.27 0 +purifie purifier ver 7.92 4.86 2.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +purifient purifier ver 7.92 4.86 0.3 0.07 ind:pre:3p; +purifier purifier ver 7.92 4.86 2.59 1.15 inf; +purifiera purifier ver 7.92 4.86 0.14 0 ind:fut:3s; +purifiez purifier ver 7.92 4.86 0.34 0.14 imp:pre:2p;ind:pre:2p; +purifions purifier ver 7.92 4.86 0.02 0.07 imp:pre:1p;ind:pre:1p; +purifiât purifier ver 7.92 4.86 0 0.07 sub:imp:3s; +purifié purifier ver m s 7.92 4.86 1.05 1.35 par:pas; +purifiée purifier ver f s 7.92 4.86 0.68 0.68 par:pas; +purifiées purifier ver f p 7.92 4.86 0 0.07 par:pas; +purifiés purifier ver m p 7.92 4.86 0.32 0.34 par:pas; +purin purin nom m s 0.38 2.23 0.38 2.23 +puriste puriste nom s 0.13 0 0.11 0 +puristes puriste nom p 0.13 0 0.02 0 +puritain puritain nom m s 0.53 0.81 0.28 0.07 +puritaine puritain adj f s 1.16 2.03 0.67 0.54 +puritaines puritain adj f p 1.16 2.03 0.2 0.2 +puritains puritain nom m p 0.53 0.81 0.2 0.61 +puritanisme puritanisme nom m s 0.05 1.22 0.05 1.22 +purotin purotin nom m s 0 0.41 0 0.14 +purotins purotin nom m p 0 0.41 0 0.27 +purpura purpura nom m s 0.09 0 0.09 0 +purpurin purpurin adj m s 0.01 0.61 0 0.27 +purpurine purpurin adj f s 0.01 0.61 0.01 0.14 +purpurines purpurin adj f p 0.01 0.61 0 0.07 +purpurins purpurin adj m p 0.01 0.61 0 0.14 +purs pur adj m p 58.46 90.34 3.67 6.89 +purulence purulence nom f s 0.02 0.41 0.02 0.2 +purulences purulence nom f p 0.02 0.41 0 0.2 +purulent purulent adj m s 0.26 0.74 0.06 0.2 +purulente purulent adj f s 0.26 0.74 0.1 0.2 +purulentes purulent adj f p 0.26 0.74 0.04 0.34 +purulents purulent adj m p 0.26 0.74 0.06 0 +purée purée nom f s 5.75 6.28 5.74 6.08 +purées purée nom f p 5.75 6.28 0.01 0.2 +pus pus adj m s 1.9 5 1.9 5 +pusillanime pusillanime adj s 0.05 0.95 0.03 0.81 +pusillanimes pusillanime adj p 0.05 0.95 0.02 0.14 +pusillanimité pusillanimité nom f s 0 0.34 0 0.34 +pusse pouvoir ver_sup 5524.47 2659.8 0 1.28 sub:imp:1s; +pussent pouvoir ver_sup 5524.47 2659.8 0 2.77 sub:imp:3p; +pusses pouvoir ver_sup 5524.47 2659.8 0 0.07 sub:imp:2s; +pussiez pouvoir ver_sup 5524.47 2659.8 0 0.07 sub:imp:2p; +pustule pustule nom f s 0.69 1.35 0.28 0.14 +pustules pustule nom f p 0.69 1.35 0.41 1.22 +pustuleuse pustuleux adj f s 0.02 0.61 0 0.27 +pustuleux pustuleux adj m p 0.02 0.61 0.02 0.34 +put pouvoir ver_sup 5524.47 2659.8 5.1 49.66 ind:pas:3s; +putain putain nom f s 306.74 40.41 287.83 33.58 +putains putain nom f p 306.74 40.41 18.91 6.82 +putanat putanat nom m s 0 0.2 0 0.2 +putasse putasser ver 0.17 0.34 0.17 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +putasserie putasserie nom f s 0.34 0.41 0.1 0.41 +putasseries putasserie nom f p 0.34 0.41 0.23 0 +putasses putasser ver 0.17 0.34 0.01 0.07 ind:pre:2s; +putassier putassier adj m s 0.02 0.41 0.01 0.07 +putassiers putassier adj m p 0.02 0.41 0 0.14 +putassière putassier adj f s 0.02 0.41 0.01 0.14 +putassières putassier adj f p 0.02 0.41 0 0.07 +putatif putatif adj m s 0 0.74 0 0.47 +putatifs putatif adj m p 0 0.74 0 0.14 +putative putatif adj f s 0 0.74 0 0.14 +pute pute nom f s 105.25 20.27 87.91 13.65 +putes pute nom f p 105.25 20.27 17.34 6.62 +putier putier nom m s 0 0.14 0 0.14 +putois putois nom m 1.06 1.28 1.06 1.28 +putrescence putrescence nom f s 0.01 0.14 0.01 0.07 +putrescences putrescence nom f p 0.01 0.14 0 0.07 +putrescent putrescent adj m s 0.2 0.07 0.2 0 +putrescents putrescent adj m p 0.2 0.07 0 0.07 +putrescible putrescible adj f s 0 0.2 0 0.2 +putrescine putrescine nom f s 0.01 0 0.01 0 +putride putride adj s 1.04 0.95 0.74 0.54 +putrides putride adj p 1.04 0.95 0.3 0.41 +putréfaction putréfaction nom f s 0.49 1.15 0.49 1.15 +putréfiaient putréfier ver 0.32 0.68 0 0.07 ind:imp:3p; +putréfiait putréfier ver 0.32 0.68 0 0.14 ind:imp:3s; +putréfiant putréfier ver 0.32 0.68 0 0.07 par:pre; +putréfient putréfier ver 0.32 0.68 0 0.07 ind:pre:3p; +putréfier putréfier ver 0.32 0.68 0.02 0.07 inf; +putréfié putréfier ver m s 0.32 0.68 0.09 0 par:pas; +putréfiée putréfier ver f s 0.32 0.68 0.17 0.07 par:pas; +putréfiées putréfier ver f p 0.32 0.68 0.01 0.14 par:pas; +putréfiés putréfier ver m p 0.32 0.68 0.02 0.07 par:pas; +putsch putsch nom m s 1.46 1.55 1.46 1.55 +putschiste putschiste adj f s 0.27 0 0.27 0 +putt putt nom m s 0.21 0 0.21 0 +putter putter ver 0.35 0 0.35 0 inf; +putti putto nom m p 0.02 0 0.02 0 +putting putting nom m s 0.17 0 0.17 0 +puy puy nom m s 0 0.14 0 0.14 +puzzle puzzle nom m s 4.81 11.82 4.38 7.77 +puzzles puzzle nom m p 4.81 11.82 0.43 4.05 +puéricultrice puériculteur nom f s 0.03 0.2 0.03 0.07 +puéricultrices puériculteur nom f p 0.03 0.2 0 0.14 +puériculture puériculture nom f s 0.01 0.47 0.01 0.47 +puéril puéril adj m s 3.73 9.59 2.08 3.18 +puérile puéril adj f s 3.73 9.59 1.01 3.92 +puérilement puérilement adv 0.01 0.2 0.01 0.2 +puériles puéril adj f p 3.73 9.59 0.22 1.28 +puérilité puérilité nom f s 0.47 1.28 0.32 1.08 +puérilités puérilité nom f p 0.47 1.28 0.15 0.2 +puérils puéril adj m p 3.73 9.59 0.43 1.22 +puîné puîné nom m s 0 0.27 0 0.14 +puînée puîné adj f s 0 0.07 0 0.07 +puînés puîné nom m p 0 0.27 0 0.14 +pygmée pygmée nom s 0.58 0.47 0.28 0 +pygmées pygmée nom p 0.58 0.47 0.3 0.47 +pyjama pyjama nom m s 8.11 17.57 7.1 15.07 +pyjamas pyjama nom m p 8.11 17.57 1.01 2.5 +pylore pylore nom m s 0.02 0.07 0.02 0.07 +pylorique pylorique adj s 0.03 0 0.03 0 +pylône pylône nom m s 0.36 1.96 0.31 0.88 +pylônes pylône nom m p 0.36 1.96 0.05 1.08 +pyogène pyogène adj m s 0.01 0 0.01 0 +pyralène pyralène nom m s 0.01 0 0.01 0 +pyrame pyrame nom m s 0.01 0.14 0.01 0.14 +pyramidal pyramidal adj m s 0.36 1.15 0.26 0.34 +pyramidale pyramidal adj f s 0.36 1.15 0.07 0.47 +pyramidalement pyramidalement adv 0 0.07 0 0.07 +pyramidales pyramidal adj f p 0.36 1.15 0.02 0.2 +pyramidaux pyramidal adj m p 0.36 1.15 0.01 0.14 +pyramide pyramide nom f s 7.02 10.14 5.25 4.8 +pyramides pyramide nom f p 7.02 10.14 1.77 5.34 +pyramidé pyramidé adj m s 0 0.07 0 0.07 +pyrex pyrex nom m 0.01 0.07 0.01 0.07 +pyrexie pyrexie nom f s 0.01 0 0.01 0 +pyridoxine pyridoxine nom f s 0.01 0 0.01 0 +pyrite pyrite nom f s 0.06 0 0.04 0 +pyrites pyrite nom f p 0.06 0 0.02 0 +pyroclastique pyroclastique adj s 0.03 0 0.02 0 +pyroclastiques pyroclastique adj p 0.03 0 0.01 0 +pyrogravées pyrograver ver f p 0 0.07 0 0.07 par:pas; +pyrogène pyrogène adj s 0 0.14 0 0.14 +pyrolyse pyrolyse nom f s 0.01 0 0.01 0 +pyromane pyromane nom s 1.69 0.88 1.29 0.74 +pyromanes pyromane nom p 1.69 0.88 0.4 0.14 +pyromanie pyromanie nom f s 0.03 0.07 0.03 0.07 +pyromètre pyromètre nom m s 0 0.27 0 0.27 +pyrosphère pyrosphère nom f s 0 0.07 0 0.07 +pyrotechnicien pyrotechnicien nom s 0.02 0 0.02 0 +pyrotechnie pyrotechnie nom f s 0.15 0.41 0.15 0.41 +pyrotechnique pyrotechnique adj s 0.06 0.41 0.06 0.41 +pyroxène pyroxène nom m s 0.01 0 0.01 0 +pyrrhique pyrrhique nom f s 0.14 0.07 0.14 0.07 +pyrrhonien pyrrhonien nom m s 0 0.14 0 0.14 +pyrrhonisme pyrrhonisme nom m s 0 0.14 0 0.14 +pyrèthre pyrèthre nom m s 0 0.07 0 0.07 +pyrénéen pyrénéen adj m s 0 0.07 0 0.07 +pyrénéenne pyrénéenne adj f s 0 0.07 0 0.07 +pyréthrine pyréthrine nom f s 0.03 0 0.03 0 +pythagoricien pythagoricien adj m s 0 0.07 0 0.07 +pythagoriques pythagorique adj m p 0.01 0 0.01 0 +pythie pythie nom f s 0.02 0.54 0.02 0.47 +pythies pythie nom f p 0.02 0.54 0 0.07 +python python nom m s 2.33 0.54 2.21 0.47 +pythonisse pythonisse nom f s 0 0.2 0 0.2 +pythons python nom m p 2.33 0.54 0.12 0.07 +pyxides pyxide nom f p 0 0.07 0 0.07 +pâle pâle adj s 16.5 83.58 14.52 67.23 +pâlement pâlement adv 0 0.54 0 0.54 +pâles pâle adj p 16.5 83.58 1.98 16.35 +pâleur pâleur nom f s 1.38 10.41 1.38 10 +pâleurs pâleur nom f p 1.38 10.41 0 0.41 +pâli pâlir ver m s 1.19 15.14 0.31 2.5 par:pas; +pâlichon pâlichon adj m s 0.06 0.81 0.06 0.47 +pâlichonne pâlichon adj f s 0.06 0.81 0 0.2 +pâlichons pâlichon adj m p 0.06 0.81 0 0.14 +pâlie pâlir ver f s 1.19 15.14 0.1 0.68 par:pas; +pâlies pâlir ver f p 1.19 15.14 0 0.54 par:pas; +pâlir pâlir ver 1.19 15.14 0.54 4.39 inf; +pâlirait pâlir ver 1.19 15.14 0 0.07 cnd:pre:3s; +pâlirent pâlir ver 1.19 15.14 0 0.07 ind:pas:3p; +pâlis pâlir ver m p 1.19 15.14 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +pâlissaient pâlir ver 1.19 15.14 0 0.68 ind:imp:3p; +pâlissait pâlir ver 1.19 15.14 0 1.22 ind:imp:3s; +pâlissant pâlissant adj m s 0.1 0.74 0.1 0.61 +pâlissante pâlissant adj f s 0.1 0.74 0 0.07 +pâlissantes pâlissant adj f p 0.1 0.74 0 0.07 +pâlissent pâlir ver 1.19 15.14 0.03 0.61 ind:pre:3p; +pâlissions pâlir ver 1.19 15.14 0 0.14 ind:imp:1p; +pâlit pâlir ver 1.19 15.14 0.15 3.18 ind:pre:3s;ind:pas:3s; +pâlot pâlot adj m s 0.6 1.22 0.44 0.34 +pâlots pâlot adj m p 0.6 1.22 0.01 0.2 +pâlotte pâlot adj f s 0.6 1.22 0.15 0.61 +pâlottes pâlot adj f p 0.6 1.22 0 0.07 +pâma pâmer ver 0.47 3.18 0.01 0.07 ind:pas:3s; +pâmaient pâmer ver 0.47 3.18 0.01 0.2 ind:imp:3p; +pâmait pâmer ver 0.47 3.18 0.02 0.27 ind:imp:3s; +pâmant pâmer ver 0.47 3.18 0 0.27 par:pre; +pâme pâmer ver 0.47 3.18 0.07 0.27 ind:pre:1s;ind:pre:3s; +pâment pâmer ver 0.47 3.18 0.04 0 ind:pre:3p; +pâmer pâmer ver 0.47 3.18 0.06 0.61 inf; +pâmerais pâmer ver 0.47 3.18 0 0.07 cnd:pre:1s; +pâmerait pâmer ver 0.47 3.18 0.01 0 cnd:pre:3s; +pâmeront pâmer ver 0.47 3.18 0.03 0 ind:fut:3p; +pâmez pâmer ver 0.47 3.18 0.1 0.07 imp:pre:2p;ind:pre:2p; +pâmoison pâmoison nom f s 0 1.22 0 0.74 +pâmoisons pâmoison nom f p 0 1.22 0 0.47 +pâmèrent pâmer ver 0.47 3.18 0.01 0.07 ind:pas:3p; +pâmé pâmer ver m s 0.47 3.18 0.1 0.41 par:pas; +pâmée pâmer ver f s 0.47 3.18 0.01 0.54 par:pas; +pâmées pâmer ver f p 0.47 3.18 0.01 0.2 par:pas; +pâmés pâmer ver m p 0.47 3.18 0 0.14 par:pas; +pâque pâque nom f s 0.51 0.95 0.51 0.95 +pâquerette pâquerette nom f s 0.69 2.09 0.27 0.2 +pâquerettes pâquerette nom f p 0.69 2.09 0.43 1.89 +pâques pâques nom m s 0.26 1.01 0.26 1.01 +pâquis pâquis nom m 0 0.07 0 0.07 +pât pâte nom m s 16.48 24.73 0.1 0.07 +pâte pâte nom f s 16.48 24.73 7.04 18.45 +pâtes pâte nom f p 16.48 24.73 9.35 6.22 +pâteuse pâteux adj f s 0.08 5.07 0.06 2.84 +pâteusement pâteusement adv 0 0.2 0 0.2 +pâteuses pâteux adj f p 0.08 5.07 0 0.27 +pâteux pâteux adj m 0.08 5.07 0.02 1.96 +pâti pâtir ver m s 1.41 2.64 0.18 0.61 par:pas; +pâtir pâtir ver 1.41 2.64 0.56 1.08 inf; +pâtira pâtir ver 1.41 2.64 0.28 0.14 ind:fut:3s; +pâtiraient pâtir ver 1.41 2.64 0.01 0.07 cnd:pre:3p; +pâtirait pâtir ver 1.41 2.64 0.16 0.07 cnd:pre:3s; +pâtirent pâtir ver 1.41 2.64 0.01 0.07 ind:pas:3p; +pâtiront pâtir ver 1.41 2.64 0.04 0 ind:fut:3p; +pâtis pâtis nom m 0.01 0.54 0.01 0.54 +pâtissaient pâtisser ver 0.38 0.88 0 0.07 ind:imp:3p; +pâtissais pâtisser ver 0.38 0.88 0 0.14 ind:imp:1s; +pâtissait pâtisser ver 0.38 0.88 0 0.14 ind:imp:3s; +pâtisse pâtisser ver 0.38 0.88 0.07 0.14 imp:pre:2s;ind:pre:3s; +pâtissent pâtisser ver 0.38 0.88 0.29 0.27 ind:pre:3p; +pâtisserie pâtisserie nom f s 5.1 13.11 4.2 9.32 +pâtisseries pâtisserie nom f p 5.1 13.11 0.9 3.78 +pâtisses pâtisser ver 0.38 0.88 0.01 0.07 ind:pre:2s; +pâtissez pâtisser ver 0.38 0.88 0 0.07 ind:pre:2p; +pâtissier pâtissier nom m s 2.37 8.51 1.81 6.49 +pâtissiers pâtissier nom m p 2.37 8.51 0.16 1.15 +pâtissière pâtissier nom f s 2.37 8.51 0.41 0.88 +pâtissons pâtir ver 1.41 2.64 0 0.14 ind:pre:1p; +pâtit pâtir ver 1.41 2.64 0.17 0.34 ind:pre:3s;ind:pas:3s; +pâton pâton nom m s 0 0.2 0 0.07 +pâtons pâton nom m p 0 0.2 0 0.14 +pâtour pâtour nom m s 0 0.07 0 0.07 +pâtre pâtre nom m s 0.11 1.62 0.11 1.15 +pâtres pâtre nom m p 0.11 1.62 0 0.47 +pâturage pâturage nom m s 1.98 4.53 0.69 0.81 +pâturages pâturage nom m p 1.98 4.53 1.29 3.72 +pâturaient pâturer ver 0.03 0.74 0 0.2 ind:imp:3p; +pâture pâture nom f s 1.94 3.31 1.73 2.77 +pâturent pâturer ver 0.03 0.74 0 0.2 ind:pre:3p; +pâturer pâturer ver 0.03 0.74 0.01 0.34 inf; +pâtures pâture nom f p 1.94 3.31 0.22 0.54 +pâturin pâturin nom m s 0.02 0.07 0.02 0.07 +pâturé pâturer ver m s 0.03 0.74 0.01 0 par:pas; +pâté pâté nom m s 7.18 16.55 5.22 11.01 +pâtée pâtée nom f s 1.78 2.97 1.78 2.77 +pâtées pâtée nom f p 1.78 2.97 0 0.2 +pâtés pâté nom m p 7.18 16.55 1.96 5.54 +pâtît pâtir ver 1.41 2.64 0 0.07 sub:imp:3s; +pèche pécher ver 9.87 4.59 0.96 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèchent pécher ver 9.87 4.59 0.01 0.07 ind:pre:3p; +pègre pègre nom f s 1.34 1.42 1.34 1.42 +pèle peler ver 1.78 4.93 0.88 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèlent peler ver 1.78 4.93 0.27 0.2 ind:pre:3p; +pèlerai peler ver 1.78 4.93 0.02 0 ind:fut:1s; +pèlerin pèlerin nom m s 4.04 12.7 1.31 1.89 +pèlerinage pèlerinage nom m s 2.32 8.58 2.02 7.23 +pèlerinages pèlerinage nom m p 2.32 8.58 0.3 1.35 +pèlerine pèlerin nom f s 4.04 12.7 0.27 4.8 +pèlerines pèlerin nom f p 4.04 12.7 0.01 0.95 +pèlerins pèlerin nom m p 4.04 12.7 2.45 5.07 +pèles peler ver 1.78 4.93 0 0.14 ind:pre:2s; +père père nom m s 895.55 723.51 879.31 708.11 +pères père nom m p 895.55 723.51 16.25 15.41 +pèse peser ver 23.41 70.88 10.47 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèse_acide pèse_acide nom m s 0 0.07 0 0.07 +pèse_bébé pèse_bébé nom m s 0 0.14 0 0.14 +pèse_lettre pèse_lettre nom m s 0 0.07 0 0.07 +pèse_personne pèse_personne nom m s 0.02 0.07 0.02 0 +pèse_personne pèse_personne nom m p 0.02 0.07 0 0.07 +pèsent peser ver 23.41 70.88 2.02 4.32 ind:pre:3p; +pèsera peser ver 23.41 70.88 0.3 0.54 ind:fut:3s; +pèserai peser ver 23.41 70.88 0.02 0.2 ind:fut:1s; +pèseraient peser ver 23.41 70.88 0.04 0.07 cnd:pre:3p; +pèserais peser ver 23.41 70.88 0.12 0.14 cnd:pre:1s;cnd:pre:2s; +pèserait peser ver 23.41 70.88 0.05 0.74 cnd:pre:3s; +pèseras peser ver 23.41 70.88 0.01 0 ind:fut:2s; +pèseront peser ver 23.41 70.88 0.13 0.07 ind:fut:3p; +pèses peser ver 23.41 70.88 0.61 0.14 ind:pre:2s; +pète péter ver 31.66 16.28 8.16 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pète_sec pète_sec adj 0.03 0.41 0.03 0.41 +pètent péter ver 31.66 16.28 0.79 0.68 ind:pre:3p; +pètes péter ver 31.66 16.28 0.85 0.27 ind:pre:2s; +pètesec pètesec adj f s 0 0.07 0 0.07 +pèze pèze nom m s 0.82 0.95 0.82 0.95 +péage péage nom m s 1.08 1.01 0.9 0.88 +péages péage nom m p 1.08 1.01 0.18 0.14 +péagiste péagiste nom s 0 0.07 0 0.07 +péan péan nom m s 0 0.07 0 0.07 +pébroc pébroc nom m s 0 0.07 0 0.07 +pébroque pébroque nom m s 0 1.62 0 1.49 +pébroques pébroque nom m p 0 1.62 0 0.14 +pécan pécan nom m s 0.32 0 0.32 0 +pécari pécari nom m s 0 0.81 0 0.61 +pécaris pécari nom m p 0 0.81 0 0.2 +péchais pécher ver 9.87 4.59 0.02 0.07 ind:imp:1s; +péchait pécher ver 9.87 4.59 0.02 0.27 ind:imp:3s; +péchant pécher ver 9.87 4.59 0.01 0.07 par:pre; +pécher pécher ver 9.87 4.59 1.88 0.95 inf; +pécherai pécher ver 9.87 4.59 0.04 0 ind:fut:1s; +pécherais pécher ver 9.87 4.59 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +pécherait pécher ver 9.87 4.59 0 0.07 cnd:pre:3s; +pécheresse pécheur nom f s 8.07 4.53 0.77 0.54 +pécheresses pécheur adj f p 1.75 1.55 0.07 0.07 +pécheur pécheur nom m s 8.07 4.53 3.54 1.82 +pécheurs pécheur nom m p 8.07 4.53 3.7 2.03 +péchez pécher ver 9.87 4.59 0.01 0.14 imp:pre:2p;ind:pre:2p; +péchons péchon nom m p 0.03 0 0.03 0 +péché péché nom m s 41.22 30.27 26.14 22.57 +péchés péché nom m p 41.22 30.27 15.08 7.7 +pécore pécore nom s 0.62 1.01 0.49 0.61 +pécores pécore nom p 0.62 1.01 0.14 0.41 +pécule pécule nom m s 0.64 2.3 0.64 2.09 +pécules pécule nom m p 0.64 2.3 0 0.2 +pécune pécune nom f s 0 0.07 0 0.07 +pécuniaire pécuniaire adj s 0.13 0.41 0.11 0.14 +pécuniairement pécuniairement adv 0 0.07 0 0.07 +pécuniaires pécuniaire adj p 0.13 0.41 0.02 0.27 +pécunieux pécunieux adj m 0 0.07 0 0.07 +pédagogie pédagogie nom f s 0.45 1.22 0.45 1.22 +pédagogique pédagogique adj s 0.74 2.36 0.69 1.55 +pédagogiques pédagogique adj p 0.74 2.36 0.05 0.81 +pédagogue pédagogue nom s 0.86 1.49 0.76 1.08 +pédagogues pédagogue nom p 0.86 1.49 0.1 0.41 +pédala pédaler ver 1.58 7.03 0.01 0.27 ind:pas:3s; +pédalage pédalage nom m s 0 0.14 0 0.14 +pédalai pédaler ver 1.58 7.03 0 0.14 ind:pas:1s; +pédalaient pédaler ver 1.58 7.03 0 0.2 ind:imp:3p; +pédalais pédaler ver 1.58 7.03 0.16 0.14 ind:imp:1s; +pédalait pédaler ver 1.58 7.03 0.19 1.55 ind:imp:3s; +pédalant pédaler ver 1.58 7.03 0.08 1.35 par:pre; +pédale pédal nom f s 3.38 11.96 3.38 5 +pédalent pédaler ver 1.58 7.03 0 0.07 ind:pre:3p; +pédaler pédaler ver 1.58 7.03 0.37 2.57 inf; +pédalerait pédaler ver 1.58 7.03 0 0.07 cnd:pre:3s; +pédalerons pédaler ver 1.58 7.03 0 0.07 ind:fut:1p; +pédales pédale nom f p 6.62 0.27 4.92 0.07 +pédaleur pédaleur nom m s 0 0.14 0 0.07 +pédaleuses pédaleur nom f p 0 0.14 0 0.07 +pédalier pédalier nom m s 0.11 1.01 0.01 0.81 +pédaliers pédalier nom m p 0.11 1.01 0.1 0.2 +pédalo pédalo nom m s 0.05 0.41 0.03 0.2 +pédalos pédalo nom m p 0.05 0.41 0.02 0.2 +pédalèrent pédaler ver 1.58 7.03 0 0.07 ind:pas:3p; +pédalé pédaler ver m s 1.58 7.03 0.14 0.07 par:pas; +pédalées pédaler ver f p 1.58 7.03 0 0.07 par:pas; +pédant pédant adj m s 0.43 1.55 0.18 0.68 +pédante pédant adj f s 0.43 1.55 0.11 0.34 +pédanterie pédanterie nom f s 0 0.47 0 0.41 +pédanteries pédanterie nom f p 0 0.47 0 0.07 +pédantes pédant adj f p 0.43 1.55 0.01 0.27 +pédantesque pédantesque adj s 0 0.07 0 0.07 +pédantisme pédantisme nom m s 0 0.61 0 0.61 +pédants pédant adj m p 0.43 1.55 0.14 0.27 +pédestre pédestre adj s 0.01 0.54 0.01 0.34 +pédestrement pédestrement adv 0 0.14 0 0.14 +pédestres pédestre adj f p 0.01 0.54 0 0.2 +pédezouille pédezouille nom s 0 0.07 0 0.07 +pédiatre pédiatre nom s 2.55 0.95 2.03 0.81 +pédiatres pédiatre nom p 2.55 0.95 0.52 0.14 +pédiatrie pédiatrie nom f s 1.08 0.14 1.08 0.14 +pédiatrique pédiatrique adj s 0.48 0 0.48 0 +pédibus pédibus adv 0 0.2 0 0.2 +pédicule pédicule nom m s 0.03 0.07 0.03 0.07 +pédicure pédicure nom s 0.76 0.41 0.71 0.34 +pédicures pédicure nom p 0.76 0.41 0.05 0.07 +pédicurie pédicurie nom f s 0.01 0 0.01 0 +pédieuse pédieux adj f s 0.03 0 0.01 0 +pédieux pédieux adj m 0.03 0 0.01 0 +pédologue pédologue nom s 0.03 0 0.03 0 +pédomètre pédomètre nom m s 0.01 0 0.01 0 +pédoncule pédoncule nom m s 0.06 0.2 0.06 0.14 +pédoncules pédoncule nom m p 0.06 0.2 0 0.07 +pédonculé pédonculé adj m s 0 0.07 0 0.07 +pédophile pédophile nom m s 1.34 0.34 0.95 0.2 +pédophiles pédophile nom m p 1.34 0.34 0.39 0.14 +pédophilie pédophilie nom f s 0.58 0.14 0.58 0.14 +pédophiliques pédophilique adj m p 0 0.07 0 0.07 +pédopsychiatre pédopsychiatre nom s 0.32 0 0.32 0 +pédoque pédoque nom m s 0 0.54 0 0.54 +pédé pédé nom m s 33.12 8.18 25.64 4.86 +pédégé pédégé nom m s 0 0.07 0 0.07 +pédéraste pédéraste nom m s 0.48 3.38 0.36 1.96 +pédérastes pédéraste nom m p 0.48 3.38 0.13 1.42 +pédérastie pédérastie nom f s 0.29 0.61 0.29 0.61 +pédérastique pédérastique adj s 0 0.27 0 0.27 +pédés pédé nom m p 33.12 8.18 7.48 3.31 +pégamoïd pégamoïd nom m s 0 0.07 0 0.07 +pégriot pégriot nom m s 0 0.41 0 0.2 +pégriots pégriot nom m p 0 0.41 0 0.2 +péjoratif péjoratif adj m s 0.09 1.28 0.07 1.01 +péjoratifs péjoratif adj m p 0.09 1.28 0 0.14 +péjorative péjoratif adj f s 0.09 1.28 0.01 0.07 +péjorativement péjorativement adv 0.01 0.07 0.01 0.07 +péjoratives péjoratif adj f p 0.09 1.28 0.01 0.07 +pékan pékan nom m s 0.03 0 0.03 0 +pékin pékin nom m s 0.32 1.28 0.27 0.47 +pékinois pékinois nom m 1.68 0.47 1.68 0.47 +pékinoise pékinois adj f s 0.07 0.2 0.03 0 +pékins pékin nom m p 0.32 1.28 0.05 0.81 +pélagique pélagique adj m s 0.29 0 0.29 0 +pélasgiques pélasgique adj p 0 0.07 0 0.07 +pélican pélican nom m s 0.43 1.28 0.28 0.81 +pélicans pélican nom m p 0.43 1.28 0.16 0.47 +pélot pélot nom m s 0 0.07 0 0.07 +pénal pénal adj m s 4.64 3.38 3.78 2.91 +pénale pénal adj f s 4.64 3.38 0.54 0.2 +pénalement pénalement adv 0.03 0.07 0.03 0.07 +pénales pénal adj f p 4.64 3.38 0.2 0.27 +pénalisaient pénaliser ver 0.46 0.34 0.01 0 ind:imp:3p; +pénalisation pénalisation nom f s 0.01 0 0.01 0 +pénalise pénaliser ver 0.46 0.34 0.03 0 imp:pre:2s;ind:pre:1s; +pénaliser pénaliser ver 0.46 0.34 0.12 0.07 inf; +pénalisera pénaliser ver 0.46 0.34 0.01 0.07 ind:fut:3s; +pénaliserai pénaliser ver 0.46 0.34 0.03 0 ind:fut:1s; +pénaliste pénaliste nom s 0.04 0 0.04 0 +pénalistes pénaliste nom p 0.04 0 0.01 0 +pénalisé pénaliser ver m s 0.46 0.34 0.15 0.07 par:pas; +pénalisée pénaliser ver f s 0.46 0.34 0.04 0 par:pas; +pénalisés pénaliser ver m p 0.46 0.34 0.08 0.14 par:pas; +pénalité pénalité nom f s 1.11 0.07 0.6 0 +pénalités pénalité nom f p 1.11 0.07 0.51 0.07 +pénard pénard adj m s 0.02 1.08 0.01 0.54 +pénarde pénard adj f s 0.02 1.08 0 0.27 +pénardement pénardement adv 0 0.07 0 0.07 +pénardes pénard adj f p 0.02 1.08 0 0.07 +pénards pénard adj m p 0.02 1.08 0.01 0.2 +pénates pénates nom m p 0.15 0.88 0.15 0.88 +pénaux pénal adj m p 4.64 3.38 0.14 0 +pénible pénible adj s 13.75 27.43 12.07 21.96 +péniblement péniblement adv 0.74 11.01 0.74 11.01 +pénibles pénible adj p 13.75 27.43 1.69 5.47 +péniche péniche nom f s 1.55 7.97 1.47 5.27 +péniches péniche nom f p 1.55 7.97 0.08 2.7 +pénicilline pénicilline nom f s 1.44 0.95 1.44 0.95 +pénien pénien adj m s 0.04 0 0.02 0 +pénienne pénien adj f s 0.04 0 0.01 0 +pénil pénil nom m s 0.01 0 0.01 0 +péninsulaire péninsulaire adj s 0 0.14 0 0.07 +péninsulaires péninsulaire adj p 0 0.14 0 0.07 +péninsule péninsule nom f s 0.89 3.31 0.88 3.18 +péninsules péninsule nom f p 0.89 3.31 0.01 0.14 +pénis pénis nom m 8.11 1.96 8.11 1.96 +pénitence pénitence nom f s 2.96 5.95 2.96 5 +pénitences pénitence nom f p 2.96 5.95 0 0.95 +pénitencier pénitencier nom m s 2.09 1.15 2.04 1.15 +pénitenciers pénitencier nom m p 2.09 1.15 0.06 0 +pénitent pénitent nom m s 0.9 2.84 0.27 0.61 +pénitente pénitent nom f s 0.9 2.84 0.14 0.14 +pénitentes pénitent nom f p 0.9 2.84 0 0.2 +pénitentiaire pénitentiaire adj s 3.21 2.77 2.79 2.23 +pénitentiaires pénitentiaire adj p 3.21 2.77 0.42 0.54 +pénitentielle pénitentiel adj f s 0 0.07 0 0.07 +pénitents pénitent nom m p 0.9 2.84 0.49 1.89 +pénologie pénologie nom f s 0.02 0 0.02 0 +pénombre pénombre nom f s 1.23 28.24 1.22 28.04 +pénombres pénombre nom f p 1.23 28.24 0.01 0.2 +pénultième pénultième nom f s 0.03 0.07 0.03 0.07 +pénurie pénurie nom f s 2.15 2.84 2.12 2.7 +pénuries pénurie nom f p 2.15 2.84 0.04 0.14 +pénètre pénétrer ver 19 87.23 4.64 12.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +pénètrent pénétrer ver 19 87.23 0.84 2.77 ind:pre:3p; +pénètres pénétrer ver 19 87.23 0.11 0.2 ind:pre:2s; +pénéplaines pénéplaine nom f p 0 0.07 0 0.07 +pénétra pénétrer ver 19 87.23 0.32 9.66 ind:pas:3s; +pénétrable pénétrable adj f s 0.14 0.07 0.14 0 +pénétrables pénétrable adj p 0.14 0.07 0 0.07 +pénétrai pénétrer ver 19 87.23 0 1.42 ind:pas:1s; +pénétraient pénétrer ver 19 87.23 0.14 3.04 ind:imp:3p; +pénétrais pénétrer ver 19 87.23 0 1.08 ind:imp:1s;ind:imp:2s; +pénétrait pénétrer ver 19 87.23 0.26 9.66 ind:imp:3s; +pénétrant pénétrer ver 19 87.23 0.41 4.86 par:pre; +pénétrante pénétrant adj f s 0.89 4.53 0.2 2.23 +pénétrantes pénétrant adj f p 0.89 4.53 0.1 0.2 +pénétrants pénétrant adj m p 0.89 4.53 0.18 0.2 +pénétration pénétration nom f s 2.2 3.38 1.91 3.18 +pénétrations pénétration nom f p 2.2 3.38 0.29 0.2 +pénétrer pénétrer ver 19 87.23 6.94 24.19 inf; +pénétrera pénétrer ver 19 87.23 0.14 0.2 ind:fut:3s; +pénétrerai pénétrer ver 19 87.23 0.02 0.07 ind:fut:1s; +pénétreraient pénétrer ver 19 87.23 0 0.27 cnd:pre:3p; +pénétrerait pénétrer ver 19 87.23 0.01 0.54 cnd:pre:3s; +pénétrerons pénétrer ver 19 87.23 0.04 0.07 ind:fut:1p; +pénétreront pénétrer ver 19 87.23 0.01 0.07 ind:fut:3p; +pénétrez pénétrer ver 19 87.23 0.41 0.34 imp:pre:2p;ind:pre:2p; +pénétrions pénétrer ver 19 87.23 0 0.27 ind:imp:1p; +pénétrons pénétrer ver 19 87.23 0.07 0.95 imp:pre:1p;ind:pre:1p; +pénétrâmes pénétrer ver 19 87.23 0 0.61 ind:pas:1p; +pénétrât pénétrer ver 19 87.23 0 0.34 sub:imp:3s; +pénétrèrent pénétrer ver 19 87.23 0.02 3.24 ind:pas:3p; +pénétré pénétrer ver m s 19 87.23 4.07 8.72 par:pas; +pénétrée pénétrer ver f s 19 87.23 0.49 1.28 par:pas; +pénétrées pénétrer ver f p 19 87.23 0 0.07 par:pas; +pénétrés pénétrer ver m p 19 87.23 0.04 0.95 par:pas; +péon péon nom m s 0.02 0.14 0.01 0 +péons péon nom m p 0.02 0.14 0.01 0.14 +péottes péotte nom f p 0 0.14 0 0.14 +pépettes pépettes nom f p 0.03 0.2 0.03 0.2 +pépia pépier ver 0.35 1.28 0 0.07 ind:pas:3s; +pépiaient pépier ver 0.35 1.28 0 0.47 ind:imp:3p; +pépiait pépier ver 0.35 1.28 0 0.14 ind:imp:3s; +pépiant pépiant adj m s 0.14 0.2 0.14 0.2 +pépie pépier ver 0.35 1.28 0.2 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pépiement pépiement nom m s 1.16 2.77 0.09 1.49 +pépiements pépiement nom m p 1.16 2.77 1.07 1.28 +pépient pépier ver 0.35 1.28 0.04 0.34 ind:pre:3p; +pépier pépier ver 0.35 1.28 0.11 0.14 inf; +pépin pépin nom m s 5.15 3.51 4.31 1.96 +pépinière pépinière nom f s 0.51 0.95 0.45 0.68 +pépinières pépinière nom f p 0.51 0.95 0.06 0.27 +pépiniériste pépiniériste nom s 0.04 0.41 0.03 0.27 +pépiniéristes pépiniériste nom p 0.04 0.41 0.01 0.14 +pépins pépin nom m p 5.15 3.51 0.84 1.55 +pépite pépite nom f s 2.04 0.61 0.77 0.2 +pépites pépite nom f p 2.04 0.61 1.27 0.41 +pépiés pépier ver m p 0.35 1.28 0 0.07 par:pas; +péplum péplum nom m s 0.1 0.54 0 0.14 +péplums péplum nom m p 0.1 0.54 0.1 0.41 +pépère pépère adj s 1.21 3.18 1 2.5 +pépères pépère adj p 1.21 3.18 0.2 0.68 +pépètes pépètes nom f p 0.08 0.34 0.08 0.34 +pépé pépé nom m s 4.95 16.96 4.81 16.76 +pépée pépée nom f s 0.69 0.54 0.49 0.2 +pépées pépée nom f p 0.69 0.54 0.2 0.34 +pépés pépé nom m p 4.95 16.96 0.13 0.2 +péquenaud péquenaud nom m s 1.6 0.27 1 0.07 +péquenaude péquenaud nom f s 1.6 0.27 0.2 0 +péquenaudes péquenaud nom f p 1.6 0.27 0 0.07 +péquenauds péquenaud nom m p 1.6 0.27 0.41 0.14 +péquenot péquenot nom m s 1.8 1.82 0.97 1.01 +péquenots péquenot nom m p 1.8 1.82 0.83 0.81 +péquin péquin nom m s 0 0.2 0 0.14 +péquins péquin nom m p 0 0.2 0 0.07 +péremptoire péremptoire adj s 0 5.07 0 3.85 +péremptoirement péremptoirement adv 0 0.61 0 0.61 +péremptoires péremptoire adj p 0 5.07 0 1.22 +pérenne pérenne adj s 0 0.14 0 0.07 +pérennes pérenne adj p 0 0.14 0 0.07 +pérennise pérenniser ver 0 0.07 0 0.07 ind:pre:3s; +pérennité pérennité nom f s 0 0.74 0 0.74 +péri périr ver m s 11.2 10.34 2.56 1.89 par:pas; +péricarde péricarde nom m s 0.33 0 0.33 0 +péricardique péricardique adj s 0.12 0 0.12 0 +péricardite péricardite nom f s 0.05 0 0.05 0 +péricarpe péricarpe nom m s 0.01 0 0.01 0 +périclita péricliter ver 0.1 1.01 0 0.07 ind:pas:3s; +périclitait péricliter ver 0.1 1.01 0.02 0.2 ind:imp:3s; +périclitant péricliter ver 0.1 1.01 0 0.07 par:pre; +périclitent péricliter ver 0.1 1.01 0.01 0.07 ind:pre:3p; +péricliter péricliter ver 0.1 1.01 0.03 0.27 inf; +périclitèrent péricliter ver 0.1 1.01 0.01 0.07 ind:pas:3p; +périclité péricliter ver m s 0.1 1.01 0.04 0.27 par:pas; +péridurale péridural nom f s 0.37 0.07 0.37 0.07 +périe périr ver f s 11.2 10.34 0.01 0 par:pas; +périf périf nom m s 0.14 0.27 0.14 0.27 +périgourdin périgourdin adj m s 0.02 0.27 0 0.07 +périgourdine périgourdin adj f s 0.02 0.27 0.01 0.2 +périgourdins périgourdin adj m p 0.02 0.27 0.01 0 +périgée périgée nom m s 0.02 0.07 0.02 0.07 +péril péril nom m s 7.76 13.78 6.32 10 +périlleuse périlleux adj f s 1.43 6.76 0.35 2.3 +périlleusement périlleusement adv 0 0.2 0 0.2 +périlleuses périlleux adj f p 1.43 6.76 0.21 0.88 +périlleux périlleux adj m 1.43 6.76 0.87 3.58 +périls péril nom m p 7.76 13.78 1.45 3.78 +périme périmer ver 1.68 0.54 0.02 0 ind:pre:3s; +périment périmer ver 1.68 0.54 0.01 0 ind:pre:3p; +périmer périmer ver 1.68 0.54 0.01 0 inf; +périmètre périmètre nom m s 6.81 2.84 6.71 2.64 +périmètres périmètre nom m p 6.81 2.84 0.1 0.2 +périmé périmer ver m s 1.68 0.54 0.69 0.27 par:pas; +périmée périmer ver f s 1.68 0.54 0.59 0.2 par:pas; +périmées périmé adj f p 0.79 2.36 0.09 0.47 +périmés périmer ver m p 1.68 0.54 0.28 0 par:pas; +périnée périnée nom m s 0.16 0.47 0.16 0.47 +période période nom f s 25.65 41.89 23.72 32.09 +périodes période nom f p 25.65 41.89 1.94 9.8 +périodicité périodicité nom f s 0.01 0.07 0.01 0.07 +périodique périodique adj s 0.23 1.89 0.15 1.28 +périodiquement périodiquement adv 0.17 3.18 0.17 3.18 +périodiques périodique adj p 0.23 1.89 0.09 0.61 +péripatéticiennes péripatéticienne nom f p 0.14 0 0.14 0 +périph périph nom m s 0.16 0.2 0.16 0.2 +périphrase périphrase nom f s 0.11 0.27 0.11 0.14 +périphrases périphrase nom f p 0.11 0.27 0 0.14 +périphérie périphérie nom f s 1.3 3.04 1.21 2.91 +périphéries périphérie nom f p 1.3 3.04 0.1 0.14 +périphérique périphérique nom m s 0.53 1.15 0.52 1.15 +périphériques périphérique adj p 0.5 1.55 0.19 0.95 +périple périple nom m s 1.14 2.64 0.98 2.09 +périples périple nom m p 1.14 2.64 0.15 0.54 +péripétie péripétie nom f s 0.85 6.69 0.59 1.35 +péripéties péripétie nom f p 0.85 6.69 0.26 5.34 +périr périr ver 11.2 10.34 3.83 4.93 inf; +périra périr ver 11.2 10.34 1.01 0.2 ind:fut:3s; +périrais périr ver 11.2 10.34 0.01 0.14 cnd:pre:1s; +périrait périr ver 11.2 10.34 0.31 0.14 cnd:pre:3s; +périras périr ver 11.2 10.34 0.06 0 ind:fut:2s; +périrent périr ver 11.2 10.34 0.49 0.61 ind:pas:3p; +périrez périr ver 11.2 10.34 0.06 0.07 ind:fut:2p; +péririez périr ver 11.2 10.34 0.01 0 cnd:pre:2p; +périrons périr ver 11.2 10.34 0.14 0.07 ind:fut:1p; +périront périr ver 11.2 10.34 0.75 0.2 ind:fut:3p; +péris périr ver m p 11.2 10.34 0.05 0.07 ind:pre:1s;ind:pre:2s;par:pas; +périscolaire périscolaire adj f s 0.01 0 0.01 0 +périscope périscope nom m s 1.28 0.88 1.24 0.68 +périscopes périscope nom m p 1.28 0.88 0.04 0.2 +périscopique périscopique adj f s 0.31 0 0.31 0 +périssable périssable adj s 0.38 1.82 0.12 1.35 +périssables périssable adj p 0.38 1.82 0.27 0.47 +périssaient périr ver 11.2 10.34 0.01 0.27 ind:imp:3p; +périssait périr ver 11.2 10.34 0 0.34 ind:imp:3s; +périssant périr ver 11.2 10.34 0.01 0.07 par:pre; +périsse périr ver 11.2 10.34 0.34 0.47 sub:pre:3s; +périssent périr ver 11.2 10.34 0.54 0.27 ind:pre:3p; +périssez périr ver 11.2 10.34 0.1 0 imp:pre:2p; +périssodactyle périssodactyle nom m s 0.14 0 0.14 0 +périssoire périssoire nom f s 0 0.2 0 0.14 +périssoires périssoire nom f p 0 0.2 0 0.07 +périssons périr ver 11.2 10.34 0.14 0.07 imp:pre:1p;ind:pre:1p; +péristaltique péristaltique adj f s 0.01 0.14 0.01 0.07 +péristaltiques péristaltique adj f p 0.01 0.14 0 0.07 +péristaltisme péristaltisme nom m s 0.01 0 0.01 0 +péristyle péristyle nom m s 0 1.49 0 1.49 +périt périr ver 11.2 10.34 0.76 0.47 ind:pre:3s;ind:pas:3s; +péritoine péritoine nom m s 0.13 0.14 0.13 0.14 +péritonite péritonite nom f s 0.32 0.47 0.32 0.47 +péritonéal péritonéal adj m s 0.32 0.07 0.18 0 +péritonéale péritonéal adj f s 0.32 0.07 0.14 0.07 +périurbaines périurbain adj f p 0.01 0 0.01 0 +pérodictique pérodictique nom m s 0.01 0 0.01 0 +péroniste péroniste adj m s 0.17 0 0.17 0 +péronnelle péronnelle nom f s 0.04 0.07 0.04 0.07 +péroné péroné nom m s 0.27 0.14 0.27 0 +péronés péroné nom m p 0.27 0.14 0 0.14 +pérorais pérorer ver 0.22 3.24 0 0.07 ind:imp:1s; +péroraison péroraison nom f s 0 1.08 0 0.95 +péroraisons péroraison nom f p 0 1.08 0 0.14 +pérorait pérorer ver 0.22 3.24 0 1.49 ind:imp:3s; +pérorant pérorer ver 0.22 3.24 0 0.54 par:pre; +pérore pérorer ver 0.22 3.24 0.15 0.61 ind:pre:1s;ind:pre:3s; +pérorer pérorer ver 0.22 3.24 0.07 0.47 inf; +péroreur péroreur nom m s 0 0.07 0 0.07 +pérorons pérorer ver 0.22 3.24 0 0.07 ind:pre:1p; +pérot pérot nom m s 0.11 0 0.11 0 +pérou pérou nom s 0.01 0 0.01 0 +péruvien péruvien adj m s 1.52 0.68 1.15 0.34 +péruvienne péruvien adj f s 1.52 0.68 0.19 0.27 +péruviens péruvien adj m p 1.52 0.68 0.19 0.07 +pérégrinant pérégriner ver 0 0.47 0 0.07 par:pre; +pérégrination pérégrination nom f s 0.06 1.62 0 0.2 +pérégrinations pérégrination nom f p 0.06 1.62 0.06 1.42 +pérégrine pérégriner ver 0 0.47 0 0.14 ind:pre:3s; +pérégriner pérégriner ver 0 0.47 0 0.2 inf; +pérégrines pérégriner ver 0 0.47 0 0.07 ind:pre:2s; +péréquation péréquation nom f s 0 0.2 0 0.14 +péréquations péréquation nom f p 0 0.2 0 0.07 +pérît périr ver 11.2 10.34 0 0.07 sub:imp:3s; +pétaient péter ver 31.66 16.28 0.03 0.81 ind:imp:3p; +pétainiste pétainiste adj m s 0 0.54 0 0.34 +pétainistes pétainiste adj f p 0 0.54 0 0.2 +pétais péter ver 31.66 16.28 0.13 0.07 ind:imp:1s;ind:imp:2s; +pétait péter ver 31.66 16.28 0.38 1.28 ind:imp:3s; +pétale pétale nom m s 3.47 8.24 1.17 1.42 +pétales pétale nom m p 3.47 8.24 2.31 6.82 +pétaloïdes pétaloïde adj m p 0.01 0 0.01 0 +pétanque pétanque nom f s 0.17 1.49 0.17 1.49 +pétant péter ver 31.66 16.28 0.25 0.34 par:pre; +pétante pétant adj f s 0.33 0.68 0.02 0 +pétantes pétant adj f p 0.33 0.68 0.13 0.41 +pétants pétant adj m p 0.33 0.68 0 0.07 +pétaradaient pétarader ver 0.1 1.55 0 0.07 ind:imp:3p; +pétaradait pétarader ver 0.1 1.55 0.01 0.2 ind:imp:3s; +pétaradant pétarader ver 0.1 1.55 0.01 0.34 par:pre; +pétaradante pétaradant adj f s 0.01 0.88 0 0.14 +pétaradantes pétaradant adj f p 0.01 0.88 0 0.2 +pétaradants pétaradant adj m p 0.01 0.88 0 0.2 +pétarade pétarade nom f s 0.3 2.36 0.16 1.55 +pétarader pétarader ver 0.1 1.55 0.04 0.47 inf; +pétarades pétarade nom f p 0.3 2.36 0.14 0.81 +pétaradé pétarader ver m s 0.1 1.55 0 0.07 par:pas; +pétard pétard nom m s 7.19 9.93 4.77 5.47 +pétarde pétarder ver 0 0.07 0 0.07 ind:pre:3s; +pétardier pétardier nom m s 0 0.47 0 0.34 +pétardière pétardier nom f s 0 0.47 0 0.14 +pétards pétard nom m p 7.19 9.93 2.42 4.46 +pétase pétase nom m s 0 0.14 0 0.14 +pétasse pétasse nom f s 8.03 0.95 6.91 0.61 +pétassent pétasser ver 0 0.07 0 0.07 ind:pre:3p; +pétasses pétasse nom f p 8.03 0.95 1.12 0.34 +pétaudière pétaudière nom f s 0.01 0.07 0.01 0.07 +péter péter ver 31.66 16.28 11.08 5.34 inf; +pétera péter ver 31.66 16.28 0.34 0.14 ind:fut:3s; +péterai péter ver 31.66 16.28 0.05 0 ind:fut:1s; +péterais péter ver 31.66 16.28 0.04 0 cnd:pre:1s;cnd:pre:2s; +péterait péter ver 31.66 16.28 0.1 0.07 cnd:pre:3s; +péteras péter ver 31.66 16.28 0.01 0 ind:fut:2s; +péteur péteur nom m s 0.11 0.07 0.11 0.07 +péteuse péteuse nom f s 0.06 0.54 0.06 0.54 +péteux péteux nom m 0.3 0.61 0.3 0.61 +pétez péter ver 31.66 16.28 0.21 0 imp:pre:2p;ind:pre:2p; +pétiez péter ver 31.66 16.28 0.02 0 ind:imp:2p; +pétilla pétiller ver 0.32 4.39 0 0.14 ind:pas:3s; +pétillaient pétiller ver 0.32 4.39 0 0.54 ind:imp:3p; +pétillait pétiller ver 0.32 4.39 0 0.95 ind:imp:3s; +pétillant pétillant adj m s 1.27 3.24 0.55 1.55 +pétillante pétillant adj f s 1.27 3.24 0.44 0.81 +pétillantes pétillant adj f p 1.27 3.24 0.15 0.27 +pétillants pétillant adj m p 1.27 3.24 0.14 0.61 +pétille pétiller ver 0.32 4.39 0.21 1.01 ind:pre:1s;ind:pre:3s; +pétillement pétillement nom m s 0.01 1.15 0.01 1.01 +pétillements pétillement nom m p 0.01 1.15 0 0.14 +pétillent pétiller ver 0.32 4.39 0.03 0.47 ind:pre:3p; +pétiller pétiller ver 0.32 4.39 0.05 0.54 inf; +pétilles pétiller ver 0.32 4.39 0.01 0 ind:pre:2s; +pétillèrent pétiller ver 0.32 4.39 0 0.07 ind:pas:3p; +pétillé pétiller ver m s 0.32 4.39 0 0.07 par:pas; +pétiole pétiole nom m s 0 0.07 0 0.07 +pétition pétition nom f s 3.54 1.76 3 0.95 +pétitionnaires pétitionnaire nom p 0.01 0.07 0.01 0.07 +pétitionnent pétitionner ver 0.01 0.07 0 0.07 ind:pre:3p; +pétitionner pétitionner ver 0.01 0.07 0.01 0 inf; +pétitions pétition nom f p 3.54 1.76 0.55 0.81 +pétochais pétocher ver 0.01 0.07 0 0.07 ind:imp:1s; +pétochait pétocher ver 0.01 0.07 0.01 0 ind:imp:3s; +pétochard pétochard adj m s 0.02 0.14 0.02 0.14 +pétoche pétoche nom f s 0.52 2.77 0.5 2.57 +pétoches pétoche nom f p 0.52 2.77 0.02 0.2 +pétoire pétoire nom f s 0.42 1.62 0.41 1.08 +pétoires pétoire nom f p 0.42 1.62 0.01 0.54 +pétomane pétomane nom s 0.05 0.47 0.03 0.34 +pétomanes pétomane nom p 0.05 0.47 0.03 0.14 +pétoncle pétoncle nom m s 0.08 0 0.05 0 +pétoncles pétoncle nom m p 0.08 0 0.03 0 +pétons péter ver 31.66 16.28 0.01 0 imp:pre:1p; +pétouille pétouiller ver 0 0.07 0 0.07 ind:pre:3s; +pétoulet pétoulet nom m s 0 0.41 0 0.41 +pétrarquistes pétrarquiste nom p 0 0.07 0 0.07 +pétrel pétrel nom m s 0.02 0.07 0.02 0.07 +pétreux pétreux adj m 0.01 0 0.01 0 +pétri pétrir ver m s 1.48 11.01 0.42 1.76 par:pas; +pétrie pétrir ver f s 1.48 11.01 0.17 1.15 par:pas; +pétries pétrir ver f p 1.48 11.01 0.01 0.34 par:pas; +pétrifia pétrifier ver 2.17 8.38 0.01 0.14 ind:pas:3s; +pétrifiaient pétrifier ver 2.17 8.38 0 0.14 ind:imp:3p; +pétrifiais pétrifier ver 2.17 8.38 0 0.07 ind:imp:1s; +pétrifiait pétrifier ver 2.17 8.38 0.1 0.74 ind:imp:3s; +pétrifiant pétrifier ver 2.17 8.38 0 0.14 par:pre; +pétrifiante pétrifiant adj f s 0 0.27 0 0.2 +pétrifiantes pétrifiant adj f p 0 0.27 0 0.07 +pétrification pétrification nom f s 0.01 0.27 0.01 0.27 +pétrifie pétrifier ver 2.17 8.38 0.11 0.27 ind:pre:3s; +pétrifient pétrifier ver 2.17 8.38 0.01 0.07 ind:pre:3p; +pétrifier pétrifier ver 2.17 8.38 0.04 0.54 inf; +pétrifieront pétrifier ver 2.17 8.38 0 0.07 ind:fut:3p; +pétrifiez pétrifier ver 2.17 8.38 0 0.07 ind:pre:2p; +pétrifiât pétrifier ver 2.17 8.38 0 0.07 sub:imp:3s; +pétrifièrent pétrifier ver 2.17 8.38 0 0.07 ind:pas:3p; +pétrifié pétrifier ver m s 2.17 8.38 1.14 2.57 par:pas; +pétrifiée pétrifier ver f s 2.17 8.38 0.56 1.82 par:pas; +pétrifiées pétrifier ver f p 2.17 8.38 0.15 0.2 par:pas; +pétrifiés pétrifier ver m p 2.17 8.38 0.07 1.42 par:pas; +pétrin pétrin nom m s 10.89 3.31 10.82 3.18 +pétrins pétrin nom m p 10.89 3.31 0.07 0.14 +pétrir pétrir ver 1.48 11.01 0.68 3.31 inf; +pétrirai pétrir ver 1.48 11.01 0 0.07 ind:fut:1s; +pétrirent pétrir ver 1.48 11.01 0 0.07 ind:pas:3p; +pétris pétri adj m p 0.27 0.34 0.14 0.14 +pétrissage pétrissage nom m s 0 0.14 0 0.14 +pétrissaient pétrir ver 1.48 11.01 0 0.34 ind:imp:3p; +pétrissait pétrir ver 1.48 11.01 0.1 1.42 ind:imp:3s; +pétrissant pétrir ver 1.48 11.01 0 0.68 par:pre; +pétrisse pétrir ver 1.48 11.01 0 0.14 sub:pre:3s; +pétrissent pétrir ver 1.48 11.01 0.01 0.07 ind:pre:3p; +pétrisseur pétrisseur nom m s 0 0.07 0 0.07 +pétrissez pétrir ver 1.48 11.01 0 0.07 ind:pre:2p; +pétrit pétrir ver 1.48 11.01 0.03 1.15 ind:pre:3s;ind:pas:3s; +pétrochimie pétrochimie nom f s 0 0.14 0 0.14 +pétrochimique pétrochimique adj s 0.04 0 0.04 0 +pétrodollars pétrodollar nom m p 0.3 0 0.3 0 +pétrole pétrole nom m s 13.84 15.41 13.71 14.73 +pétroles pétrole nom m p 13.84 15.41 0.13 0.68 +pétrolette pétrolette nom f s 0.02 0.2 0.02 0.2 +pétroleuse pétroleur nom f s 0.04 0.2 0.03 0.14 +pétroleuses pétroleur nom f p 0.04 0.2 0.01 0.07 +pétrolier pétrolier adj m s 1.75 1.22 0.38 0.27 +pétroliers pétrolier nom m p 0.73 2.23 0.36 0.61 +pétrolifère pétrolifère adj s 0.11 0.27 0.04 0.14 +pétrolifères pétrolifère adj p 0.11 0.27 0.06 0.14 +pétrolière pétrolier adj f s 1.75 1.22 0.79 0.14 +pétrolières pétrolier adj f p 1.75 1.22 0.37 0.61 +pétrousquin pétrousquin nom m s 0 0.14 0 0.14 +pétrus pétrus nom m 0.03 0.34 0.03 0.34 +pétrée pétré adj f s 0 0.07 0 0.07 +pétulance pétulance nom f s 0.02 0.34 0.02 0.34 +pétulant pétulant adj m s 0.05 0.54 0.01 0.2 +pétulante pétulant adj f s 0.05 0.54 0.03 0.07 +pétulantes pétulant adj f p 0.05 0.54 0 0.07 +pétulants pétulant adj m p 0.05 0.54 0.01 0.2 +pétunant pétuner ver 0.01 0.2 0 0.07 par:pre; +pétuner pétuner ver 0.01 0.2 0 0.07 inf; +pétunez pétuner ver 0.01 0.2 0.01 0 ind:pre:2p; +pétunia pétunia nom m s 0.63 1.01 0.5 0.07 +pétunias pétunia nom m p 0.63 1.01 0.13 0.95 +pétuné pétuner ver m s 0.01 0.2 0 0.07 par:pas; +pété péter ver m s 31.66 16.28 8.47 1.01 par:pas; +pétéchiale pétéchial adj f s 0.1 0 0.1 0 +pétéchie pétéchie nom f s 0.22 0 0.04 0 +pétéchies pétéchie nom f p 0.22 0 0.17 0 +pétée péter ver f s 31.66 16.28 0.57 0.14 par:pas; +pétées pété adj f p 1.66 0.81 0.11 0.2 +pétés péter ver m p 31.66 16.28 0.17 0.34 par:pas; +pêcha pêcher ver 16.52 12.84 0 0.27 ind:pas:3s; +pêchaient pêcher ver 16.52 12.84 0.05 0.74 ind:imp:3p; +pêchais pêcher ver 16.52 12.84 0.44 0.34 ind:imp:1s;ind:imp:2s; +pêchait pêcher ver 16.52 12.84 0.76 0.95 ind:imp:3s; +pêchant pêcher ver 16.52 12.84 0.14 0.54 par:pre; +pêche pêche nom f s 24.39 30.41 21.13 26.76 +pêchent pêcher ver 16.52 12.84 0.16 0.47 ind:pre:3p; +pêcher pêcher ver 16.52 12.84 9.04 5.47 inf; +pêchera pêcher ver 16.52 12.84 0.09 0.14 ind:fut:3s; +pêcherais pêcher ver 16.52 12.84 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +pêcheras pêcher ver 16.52 12.84 0.01 0.07 ind:fut:2s; +pêcherie pêcherie nom f s 0.23 0.88 0.14 0.14 +pêcheries pêcherie nom f p 0.23 0.88 0.1 0.74 +pêcherons pêcher ver 16.52 12.84 0.01 0 ind:fut:1p; +pêchers pêcher nom m p 0.58 1.55 0.34 0.68 +pêches pêche nom f p 24.39 30.41 3.25 3.65 +pêcheur pêcheur nom m s 10.34 27.43 5.08 13.11 +pêcheurs pêcheur nom m p 10.34 27.43 5.21 14.19 +pêcheuse pêcheur nom f s 10.34 27.43 0.04 0.14 +pêcheuses pêcheur nom f p 10.34 27.43 0.01 0 +pêchez pêcher ver 16.52 12.84 0.45 0.07 imp:pre:2p;ind:pre:2p; +pêchions pêcher ver 16.52 12.84 0.04 0.2 ind:imp:1p; +pêché pêcher ver m s 16.52 12.84 3.03 1.01 par:pas; +pêchée pêcher ver f s 16.52 12.84 0.04 0.27 par:pas; +pêchées pêcher ver f p 16.52 12.84 0.01 0.14 par:pas; +pêchés pêché adj m p 1.77 0.2 0.83 0 +pêle_mêle pêle_mêle adv 0 8.24 0 8.24 +pêne pêne nom m s 0.15 0.81 0.15 0.81 +pôle pôle nom m s 3.59 3.99 3.12 2.77 +pôles pôle nom m p 3.59 3.99 0.47 1.22 +pûmes pouvoir ver_sup 5524.47 2659.8 0.16 1.62 ind:pas:1p; +pût pouvoir ver_sup 5524.47 2659.8 0.5 42.7 sub:imp:3s; +pûtes pouvoir ver_sup 5524.47 2659.8 0.04 0 ind:pas:2p; +q q nom m 3.49 0.61 3.49 0.61 +qu qu con 22.07 1.55 22.07 1.55 +qu_en_dira_t_on qu_en_dira_t_on nom m 0.1 0.41 0.1 0.41 +quadra quadra nom s 0.05 0 0.03 0 +quadragénaire quadragénaire nom s 0.4 1.01 0.19 0.74 +quadragénaires quadragénaire nom p 0.4 1.01 0.21 0.27 +quadrangle quadrangle nom m s 0.03 0 0.03 0 +quadrangulaire quadrangulaire adj f s 0.02 0.41 0.02 0.34 +quadrangulaires quadrangulaire adj m p 0.02 0.41 0 0.07 +quadrant quadrant nom m s 0.73 0 0.64 0 +quadrants quadrant nom m p 0.73 0 0.09 0 +quadras quadra nom p 0.05 0 0.02 0 +quadratique quadratique adj s 0.01 0 0.01 0 +quadrature quadrature nom f s 0.11 1.15 0.11 1.15 +quadri quadri nom f s 0.02 0.07 0.02 0.07 +quadriceps quadriceps nom m 0.11 0.07 0.11 0.07 +quadrichromie quadrichromie nom f s 0 0.47 0 0.34 +quadrichromies quadrichromie nom f p 0 0.47 0 0.14 +quadridimensionnel quadridimensionnel adj m s 0.01 0 0.01 0 +quadriennal quadriennal adj m s 0.09 0 0.09 0 +quadrige quadrige nom m s 0.01 0.07 0.01 0.07 +quadrilatère quadrilatère nom m s 0.16 1.76 0.16 1.62 +quadrilatères quadrilatère nom m p 0.16 1.76 0 0.14 +quadrillage quadrillage nom m s 0.51 1.01 0.49 0.88 +quadrillages quadrillage nom m p 0.51 1.01 0.01 0.14 +quadrillaient quadriller ver 1.32 3.85 0 0.07 ind:imp:3p; +quadrillais quadriller ver 1.32 3.85 0.01 0 ind:imp:1s; +quadrillait quadriller ver 1.32 3.85 0 0.07 ind:imp:3s; +quadrille quadrille nom s 0.23 0.88 0.2 0.88 +quadrillent quadriller ver 1.32 3.85 0.19 0 ind:pre:3p; +quadriller quadriller ver 1.32 3.85 0.38 0.2 inf; +quadrillerez quadriller ver 1.32 3.85 0.01 0 ind:fut:2p; +quadrilles quadrille nom p 0.23 0.88 0.03 0 +quadrillez quadriller ver 1.32 3.85 0.19 0 imp:pre:2p;ind:pre:2p; +quadrillion quadrillion nom m s 0.04 0 0.04 0 +quadrillons quadriller ver 1.32 3.85 0.02 0 imp:pre:1p;ind:pre:1p; +quadrillé quadriller ver m s 1.32 3.85 0.19 2.03 par:pas; +quadrillée quadriller ver f s 1.32 3.85 0.28 0.74 par:pas; +quadrillées quadriller ver f p 1.32 3.85 0.01 0.34 par:pas; +quadrillés quadriller ver m p 1.32 3.85 0 0.34 par:pas; +quadrilobé quadrilobé adj m s 0 0.07 0 0.07 +quadrimestre quadrimestre nom m s 0.01 0 0.01 0 +quadrimoteur quadrimoteur adj m s 0.02 0 0.02 0 +quadripartite quadripartite adj s 0.02 0.07 0.02 0 +quadripartites quadripartite adj p 0.02 0.07 0 0.07 +quadriphonie quadriphonie nom f s 0.02 0.14 0.02 0.14 +quadriphonique quadriphonique adj s 0.11 0 0.11 0 +quadriplégique quadriplégique adj s 0.03 0 0.03 0 +quadriréacteur quadriréacteur nom m s 0 0.07 0 0.07 +quadrivium quadrivium nom m s 0 0.07 0 0.07 +quadrumane quadrumane nom m s 0 0.07 0 0.07 +quadrupla quadrupler ver 0.21 0.68 0 0.07 ind:pas:3s; +quadruplait quadrupler ver 0.21 0.68 0 0.14 ind:imp:3s; +quadruple quadruple adj 0.42 0.54 0.42 0.54 +quadrupler quadrupler ver 0.21 0.68 0.07 0.14 inf; +quadruples quadruple nom m p 0.19 0.47 0.01 0.27 +quadruplé quadrupler ver m s 0.21 0.68 0.06 0.14 par:pas; +quadruplées quadruplée nom f p 0 0.07 0 0.07 +quadruplés quadruplé nom m p 0.06 0 0.06 0 +quadrupède quadrupède nom m s 0.36 1.01 0.34 0.81 +quadrupèdes quadrupède nom m p 0.36 1.01 0.01 0.2 +quai quai nom m s 14.01 73.99 10.37 55.14 +quais quai nom m p 14.01 73.99 3.64 18.85 +quaker quaker nom m s 0.67 0.74 0.49 0.47 +quakeresse quakeresse nom f s 0.02 0.14 0.02 0.14 +quakers quaker nom m p 0.67 0.74 0.19 0.27 +qualifia qualifier ver 6.18 11.62 0.04 0.41 ind:pas:3s; +qualifiable qualifiable adj m s 0 0.07 0 0.07 +qualifiaient qualifier ver 6.18 11.62 0 0.27 ind:imp:3p; +qualifiais qualifier ver 6.18 11.62 0 0.14 ind:imp:1s; +qualifiait qualifier ver 6.18 11.62 0.06 0.88 ind:imp:3s; +qualifiant qualifier ver 6.18 11.62 0.03 0.34 par:pre; +qualifiassent qualifier ver 6.18 11.62 0 0.07 sub:imp:3p; +qualificatif qualificatif nom m s 0.11 0.74 0.05 0.34 +qualificatifs qualificatif nom m p 0.11 0.74 0.05 0.41 +qualification qualification nom f s 2.45 0.81 0.68 0.68 +qualifications qualification nom f p 2.45 0.81 1.78 0.14 +qualifie qualifier ver 6.18 11.62 0.63 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +qualifient qualifier ver 6.18 11.62 0.38 0.14 ind:pre:3p; +qualifier qualifier ver 6.18 11.62 0.96 3.04 inf; +qualifiera qualifier ver 6.18 11.62 0.01 0.2 ind:fut:3s; +qualifierai qualifier ver 6.18 11.62 0.16 0.07 ind:fut:1s; +qualifierais qualifier ver 6.18 11.62 0.26 0.2 cnd:pre:1s;cnd:pre:2s; +qualifierait qualifier ver 6.18 11.62 0.03 0 cnd:pre:3s; +qualifieriez qualifier ver 6.18 11.62 0.07 0 cnd:pre:2p; +qualifiez qualifier ver 6.18 11.62 0.06 0.07 ind:pre:2p; +qualifiât qualifier ver 6.18 11.62 0 0.07 sub:imp:3s; +qualifié qualifié adj m s 4.62 3.78 2.25 1.76 +qualifiée qualifié adj f s 4.62 3.78 1.13 0.68 +qualifiées qualifier ver f p 6.18 11.62 0.1 0.27 par:pas; +qualifiés qualifié adj m p 4.62 3.78 1.18 1.28 +qualitatif qualitatif adj m s 0.03 0.14 0.01 0 +qualitatifs qualitatif adj m p 0.03 0.14 0 0.07 +qualitative qualitatif adj f s 0.03 0.14 0.02 0.07 +qualité qualité nom f s 29.13 59.12 20.84 42.7 +qualités qualité nom f p 29.13 59.12 8.28 16.42 +quand quand con 1827.92 1480.07 1827.92 1480.07 +quant quant nom_sup f s 7.94 32.3 7.94 32.3 +quant_à_moi quant_à_moi nom m 0 0.14 0 0.14 +quant_à_soi quant_à_soi nom m 0 1.22 0 1.22 +quanta quantum nom m p 0.48 0.2 0.04 0.14 +quantifiable quantifiable adj s 0.15 0 0.15 0 +quantifier quantifier ver 0.23 0.07 0.2 0.07 inf; +quantifiée quantifier ver f s 0.23 0.07 0.03 0 par:pas; +quantique quantique adj s 1.36 0.07 1.16 0.07 +quantiques quantique adj p 1.36 0.07 0.2 0 +quantitatif quantitatif adj m s 0.05 0.14 0.03 0 +quantitative quantitatif adj f s 0.05 0.14 0.01 0.07 +quantitativement quantitativement adv 0.1 0 0.1 0 +quantitatives quantitatif adj f p 0.05 0.14 0.01 0.07 +quantité quantité nom f s 10.3 18.99 8.67 15.27 +quantités quantité nom f p 10.3 18.99 1.63 3.72 +quantième quantième nom m s 0.02 0.07 0.02 0 +quantièmes quantième nom m p 0.02 0.07 0 0.07 +quanto quanto adv 0.01 0.07 0.01 0.07 +quantum quantum nom m s 0.48 0.2 0.45 0.07 +quarantaine quarantaine nom f s 7.57 10.14 7.56 10.07 +quarantaines quarantaine nom f p 7.57 10.14 0.01 0.07 +quarante quarante adj_num 8.16 43.78 8.16 43.78 +quarante_cinq quarante_cinq adj_num 1.16 8.85 1.16 8.85 +quarante_cinquième quarante_cinquième adj 0.1 0.07 0.1 0.07 +quarante_deux quarante_deux adj_num 0.29 2.09 0.29 2.09 +quarante_deuxième quarante_deuxième adj 0.03 0.07 0.03 0.07 +quarante_huit quarante_huit adj_num 1.11 6.76 1.11 6.76 +quarante_huitard quarante_huitard nom m p 0 0.07 0 0.07 +quarante_huitième quarante_huitième adj 0.02 0.07 0.02 0.07 +quarante_neuf quarante_neuf adj_num 0.28 0.47 0.28 0.47 +quarante_quatre quarante_quatre adj_num 0.1 0.88 0.1 0.88 +quarante_sept quarante_sept adj_num 0.4 0.74 0.4 0.74 +quarante_septième quarante_septième adj 0.03 0.2 0.03 0.2 +quarante_six quarante_six adj_num 0.23 0.47 0.23 0.47 +quarante_trois quarante_trois adj_num 0.68 1.28 0.68 1.28 +quarante_troisième quarante_troisième adj 0 0.07 0 0.07 +quarantenaire quarantenaire adj m s 0.05 0.07 0.01 0.07 +quarantenaires quarantenaire adj p 0.05 0.07 0.04 0 +quarantième quarantième adj 0.03 0.27 0.03 0.27 +quarantièmes quarantième nom p 0.04 0.14 0.01 0.07 +quark quark nom m s 0.22 0.14 0.13 0.07 +quarks quark nom m p 0.22 0.14 0.09 0.07 +quarre quarre nom f s 0.04 0 0.04 0 +quarrez quarrer ver 0 0.07 0 0.07 imp:pre:2p; +quart quart nom m s 23.02 77.3 20.58 57.36 +quart_monde quart_monde nom m s 0.02 0 0.02 0 +quartaut quartaut nom m s 0 0.2 0 0.2 +quarte quarte nom f s 0.04 0.14 0.04 0.14 +quartenier quartenier nom m s 0 0.07 0 0.07 +quarter quarter ver 0.44 0 0.44 0 inf;; +quarteron quarteron nom m s 0.03 0.81 0.01 0.61 +quarteronnes quarteron nom f p 0.03 0.81 0 0.07 +quarterons quarteron nom m p 0.03 0.81 0.02 0.14 +quartet quartet nom m s 0.2 0 0.2 0 +quartette quartette nom m s 0 0.14 0 0.07 +quartettes quartette nom m p 0 0.14 0 0.07 +quartidi quartidi nom m s 0 0.07 0 0.07 +quartier quartier nom m s 65.7 112.16 55.23 89.86 +quartier_maître quartier_maître nom m s 0.84 0.27 0.83 0.27 +quartiers quartier nom m p 65.7 112.16 10.48 22.3 +quartier_maître quartier_maître nom m p 0.84 0.27 0.01 0 +quarto quarto adv 0.02 0.14 0.02 0.14 +quarts quart nom m p 23.02 77.3 2.43 19.93 +quartz quartz nom m 0.45 1.69 0.45 1.69 +quarté quarté nom m s 0.01 0.07 0.01 0.07 +quasar quasar nom m s 0.09 0 0.09 0 +quasi quasi adv_sup 2.69 17.36 2.69 17.36 +quasi_agonie quasi_agonie nom f s 0 0.07 0 0.07 +quasi_blasphème quasi_blasphème nom m s 0 0.07 0 0.07 +quasi_bonheur quasi_bonheur nom m s 0 0.07 0 0.07 +quasi_certitude quasi_certitude nom f s 0.04 0.41 0.04 0.41 +quasi_chômage quasi_chômage nom m s 0.02 0 0.02 0 +quasi_débutant quasi_débutant adv 0.01 0 0.01 0 +quasi_décapitation quasi_décapitation nom f s 0.01 0 0.01 0 +quasi_désertification quasi_désertification nom f s 0 0.07 0 0.07 +quasi_facétieux quasi_facétieux adj m 0.01 0 0.01 0 +quasi_fiancé quasi_fiancé nom f s 0 0.07 0 0.07 +quasi_futuriste quasi_futuriste adj m p 0.01 0 0.01 0 +quasi_génocide quasi_génocide nom m s 0.01 0 0.01 0 +quasi_hérétique quasi_hérétique nom s 0 0.07 0 0.07 +quasi_ignare quasi_ignare nom s 0 0.07 0 0.07 +quasi_impossibilité quasi_impossibilité nom f s 0 0.14 0 0.14 +quasi_impunité quasi_impunité nom f s 0 0.07 0 0.07 +quasi_inconnu quasi_inconnu adv 0.02 0.07 0.02 0.07 +quasi_indifférence quasi_indifférence nom f s 0 0.07 0 0.07 +quasi_infirme quasi_infirme nom s 0 0.07 0 0.07 +quasi_instantanée quasi_instantanée adv 0.02 0 0.02 0 +quasi_jungienne quasi_jungienne nom f s 0.01 0 0.01 0 +quasi_mariage quasi_mariage nom m s 0 0.07 0 0.07 +quasi_maximum quasi_maximum adv 0.01 0 0.01 0 +quasi_mendiant quasi_mendiant nom m s 0.14 0 0.14 0 +quasi_miracle quasi_miracle nom m s 0 0.07 0 0.07 +quasi_monopole quasi_monopole nom m s 0.1 0 0.1 0 +quasi_morceau quasi_morceau nom m s 0 0.07 0 0.07 +quasi_noyade quasi_noyade nom f s 0.01 0 0.01 0 +quasi_nudité quasi_nudité nom f s 0 0.14 0 0.14 +quasi_permanence quasi_permanence nom f s 0 0.07 0 0.07 +quasi_protection quasi_protection nom f s 0 0.07 0 0.07 +quasi_religieux quasi_religieux adj m s 0.01 0.07 0.01 0.07 +quasi_respect quasi_respect nom m s 0 0.07 0 0.07 +quasi_totalité quasi_totalité nom f s 0.16 0.88 0.16 0.88 +quasi_unanime quasi_unanime adj s 0 0.14 0 0.14 +quasi_unanimité quasi_unanimité nom f s 0 0.07 0 0.07 +quasi_veuvage quasi_veuvage nom m s 0 0.07 0 0.07 +quasi_ville quasi_ville nom f s 0 0.07 0 0.07 +quasi_voisines quasi_voisines adv 0 0.07 0 0.07 +quasi_émeute quasi_émeute nom f s 0.02 0 0.02 0 +quasi_équitable quasi_équitable adj m s 0.01 0 0.01 0 +quasiment quasiment adv 7.66 6.62 7.66 6.62 +quasimodo quasimodo nom f s 0.04 0.07 0.04 0 +quasimodos quasimodo nom f p 0.04 0.07 0 0.07 +quat_zarts quat_zarts nom m p 0 0.07 0 0.07 +quater quater adv 0.01 0 0.01 0 +quaternaire quaternaire nom m s 0.27 0.14 0.27 0.14 +quatorze quatorze adj_num 6.7 22.09 6.7 22.09 +quatorzième quatorzième nom s 0.07 0.54 0.07 0.54 +quatrain quatrain nom m s 0.23 0.68 0.22 0.14 +quatrains quatrain nom m p 0.23 0.68 0.01 0.54 +quatre quatre adj_num 150.93 282.64 150.93 282.64 +quatre_feuilles quatre_feuilles nom m 0.01 0.07 0.01 0.07 +quatre_heures quatre_heures nom m 0.04 0.41 0.04 0.41 +quatre_mâts quatre_mâts nom m 0.27 0.14 0.27 0.14 +quatre_quarts quatre_quarts nom m 0.26 0.14 0.26 0.14 +quatre_saisons quatre_saisons nom f 0.47 1.15 0.47 1.15 +quatre_vingt quatre_vingt adj_num 0.93 1.01 0.93 1.01 +quatre_vingt_cinq quatre_vingt_cinq adj_num 0.07 0.88 0.07 0.88 +quatre_vingt_deux quatre_vingt_deux adj_num 0 0.27 0 0.27 +quatre_vingt_dix quatre_vingt_dix nom m 0.33 0.61 0.33 0.61 +quatre_vingt_dix_huit quatre_vingt_dix_huit adj_num 0.02 0.34 0.02 0.34 +quatre_vingt_dix_neuf quatre_vingt_dix_neuf adj_num 0.21 0.47 0.21 0.47 +quatre_vingt_dix_sept quatre_vingt_dix_sept adj_num 0 0.27 0 0.27 +quatre_vingt_dixième quatre_vingt_dixième adj 0.01 0.14 0.01 0.14 +quatre_vingt_douze quatre_vingt_douze adj_num 0.11 0.54 0.11 0.54 +quatre_vingt_douzième quatre_vingt_douzième adj 0 0.07 0 0.07 +quatre_vingt_huit quatre_vingt_huit adj_num 0.02 0.2 0.02 0.2 +quatre_vingt_neuf quatre_vingt_neuf adj_num 0.14 0.61 0.14 0.61 +quatre_vingt_onze quatre_vingt_onze adj_num 0.1 0.34 0.1 0.34 +quatre_vingt_quatorze quatre_vingt_quatorze adj_num 0.1 0.07 0.1 0.07 +quatre_vingt_quatre quatre_vingt_quatre adj_num 0.03 0.74 0.03 0.74 +quatre_vingt_quinze quatre_vingt_quinze adj_num 0.14 2.16 0.14 2.16 +quatre_vingt_seize quatre_vingt_seize adj_num 0.1 0.07 0.1 0.07 +quatre_vingt_sept quatre_vingt_sept adj_num 0.07 0.27 0.07 0.27 +quatre_vingt_six quatre_vingt_six adj_num 0.19 0.34 0.19 0.34 +quatre_vingt_treize quatre_vingt_treize adj_num 0.11 0.95 0.11 0.95 +quatre_vingt_treizième quatre_vingt_treizième adj 0 0.07 0 0.07 +quatre_vingt_trois quatre_vingt_trois adj_num 0.06 0.41 0.06 0.41 +quatre_vingt_un quatre_vingt_un adj_num 0.02 0.14 0.02 0.14 +quatre_vingtième quatre_vingtième adj 0 0.14 0 0.14 +quatre_vingtième quatre_vingtième nom s 0 0.14 0 0.14 +quatre_vingts quatre_vingts adj_num 0.36 9.05 0.36 9.05 +quatrillion quatrillion nom m s 0.01 0 0.01 0 +quatrième quatrième adj 8.65 15.74 8.65 15.74 +quatrièmement quatrièmement adv 0.41 0.14 0.41 0.14 +quatrièmes quatrième nom p 7.14 13.04 0.05 0.27 +quattrocento quattrocento nom m s 0.1 0.27 0.1 0.27 +quatuor quatuor nom m s 1.07 3.45 1.04 3.04 +quatuors quatuor nom m p 1.07 3.45 0.03 0.41 +que que pro_rel 4100.9 3315.95 3330.88 2975.34 +quechua quechua nom m s 0.05 0 0.05 0 +quel quel adj_int m s 657.71 265.34 657.71 265.34 +quelconque quelconque adj_sup s 10.08 28.85 9.79 27.57 +quelconques quelconque adj_sup p 10.08 28.85 0.29 1.28 +quelle quelle adj_int f s 512.55 244.39 512.55 244.39 +quelles quelles adj_int f p 46.92 35.95 46.92 35.95 +quelqu_un quelqu_un pro_ind s 629 128.92 629 128.92 +quelqu_une quelqu_un pro_ind f s 0.08 0.61 0.08 0.61 +quelque quelque adj_ind s 884.61 557.77 884.61 557.77 +quelquefois quelquefois adv_sup 11.87 60.47 11.87 60.47 +quelques quelques adj_ind p 337.35 732.57 337.35 732.57 +quelques_unes quelques_unes pro_ind f p 3.5 8.51 3.5 8.51 +quelques_uns quelques_uns pro_ind m p 8.33 22.09 8.33 22.09 +quels quels adj_int m p 56.44 37.23 56.44 37.23 +quenelle quenelle nom f s 0.35 0.74 0.19 0 +quenelles quenelle nom f p 0.35 0.74 0.16 0.74 +quenotte quenotte nom f s 0.18 0.74 0 0.2 +quenottes quenotte nom f p 0.18 0.74 0.18 0.54 +quenouille quenouille nom f s 0.23 0.74 0.22 0.47 +quenouilles quenouille nom f p 0.23 0.74 0.01 0.27 +querella quereller ver 2.15 2.16 0 0.07 ind:pas:3s; +querellaient quereller ver 2.15 2.16 0.14 0.54 ind:imp:3p; +querellais quereller ver 2.15 2.16 0 0.07 ind:imp:1s; +querellait quereller ver 2.15 2.16 0.03 0.14 ind:imp:3s; +querellant quereller ver 2.15 2.16 0.01 0 par:pre; +querelle querelle nom f s 12.84 12.77 10.63 6.42 +querellent quereller ver 2.15 2.16 0.14 0.2 ind:pre:3p; +quereller quereller ver 2.15 2.16 0.91 0.27 inf; +querelles querelle nom f p 12.84 12.77 2.21 6.35 +querelleur querelleur adj m s 0.33 0.14 0.14 0.07 +querelleurs querelleur adj m p 0.33 0.14 0.19 0.07 +querelleuse querelleux adj f s 0.02 0 0.02 0 +querellez quereller ver 2.15 2.16 0.13 0 imp:pre:2p;ind:pre:2p; +querellons quereller ver 2.15 2.16 0.14 0 imp:pre:1p;ind:pre:1p; +querellèrent quereller ver 2.15 2.16 0 0.07 ind:pas:3p; +querellé quereller ver m s 2.15 2.16 0.05 0.07 par:pas; +querellée quereller ver f s 2.15 2.16 0.02 0.14 par:pas; +querellées quereller ver f p 2.15 2.16 0.11 0 par:pas; +querellés quereller ver m p 2.15 2.16 0.07 0.34 par:pas; +questeur questeur nom m s 0.13 0.07 0.1 0 +questeurs questeur nom m p 0.13 0.07 0.03 0.07 +question question nom f s 411.82 328.45 293.63 232.5 +question_clé question_clé nom f s 0.02 0 0.02 0 +question_réponse question_réponse nom f s 0.09 0.07 0.02 0 +questionna questionner ver 6.29 15.88 0.01 2.84 ind:pas:3s; +questionnai questionner ver 6.29 15.88 0.01 0.47 ind:pas:1s; +questionnaient questionner ver 6.29 15.88 0.02 0.47 ind:imp:3p; +questionnaire questionnaire nom m s 2.05 1.82 1.69 1.15 +questionnaires questionnaire nom m p 2.05 1.82 0.36 0.68 +questionnais questionner ver 6.29 15.88 0.04 0.34 ind:imp:1s; +questionnait questionner ver 6.29 15.88 0.23 1.35 ind:imp:3s; +questionnant questionner ver 6.29 15.88 0.04 0.27 par:pre; +questionne questionner ver 6.29 15.88 1.48 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +questionnement questionnement nom m s 0.36 0.14 0.32 0.07 +questionnements questionnement nom m p 0.36 0.14 0.04 0.07 +questionnent questionner ver 6.29 15.88 0.08 0.41 ind:pre:3p; +questionner questionner ver 6.29 15.88 2.66 3.51 inf;; +questionnera questionner ver 6.29 15.88 0.08 0.07 ind:fut:3s; +questionnerai questionner ver 6.29 15.88 0.02 0 ind:fut:1s; +questionnerait questionner ver 6.29 15.88 0 0.14 cnd:pre:3s; +questionnerons questionner ver 6.29 15.88 0.01 0.07 ind:fut:1p; +questionneront questionner ver 6.29 15.88 0.01 0 ind:fut:3p; +questionneur questionneur nom m s 0.03 0.81 0.03 0.34 +questionneurs questionneur nom m p 0.03 0.81 0 0.27 +questionneuse questionneur nom f s 0.03 0.81 0 0.2 +questionnez questionner ver 6.29 15.88 0.34 0.14 imp:pre:2p;ind:pre:2p; +questionnions questionner ver 6.29 15.88 0 0.14 ind:imp:1p; +questionnons questionner ver 6.29 15.88 0.01 0.07 ind:pre:1p; +questionnât questionner ver 6.29 15.88 0 0.07 sub:imp:3s; +questionnèrent questionner ver 6.29 15.88 0 0.14 ind:pas:3p; +questionné questionner ver m s 6.29 15.88 0.98 1.42 par:pas; +questionnée questionner ver f s 6.29 15.88 0.16 0.41 par:pas; +questionnés questionner ver m p 6.29 15.88 0.12 0.47 par:pas; +questions question nom f p 411.82 328.45 118.19 95.95 +question_réponse question_réponse nom f p 0.09 0.07 0.07 0.07 +questure questure nom f s 0.1 0 0.1 0 +quetsche quetsche nom f s 0 0.74 0 0.34 +quetsches quetsche nom f p 0 0.74 0 0.41 +quette quette nom f s 0.01 0 0.01 0 +quetzal quetzal nom m s 0.01 0 0.01 0 +queue queue nom f s 41.59 57.84 38.93 51.49 +queue_d_aronde queue_d_aronde nom f s 0 0.14 0 0.07 +queue_de_cheval queue_de_cheval nom f s 0.14 0 0.14 0 +queue_de_pie queue_de_pie nom f s 0.05 0.27 0.05 0.27 +queues queue nom f p 41.59 57.84 2.66 6.35 +queue_d_aronde queue_d_aronde nom f p 0 0.14 0 0.07 +queue_de_rat queue_de_rat nom f p 0 0.07 0 0.07 +queursoir queursoir nom m s 0 0.07 0 0.07 +queutard queutard nom m s 0.19 0 0.19 0 +queuté queuter ver m s 0 0.14 0 0.07 par:pas; +queutée queuter ver f s 0 0.14 0 0.07 par:pas; +qui qui pro_rel 5516.52 7923.24 5344.98 7897.91 +qui_vive qui_vive ono 0 0.14 0 0.14 +quibus quibus nom m 0 0.2 0 0.2 +quiche quiche nom f s 1.21 0.68 1.1 0.41 +quiches quiche nom f p 1.21 0.68 0.11 0.27 +quichotte quichotte nom m s 0 0.07 0 0.07 +quick quick nom m s 0.27 0.2 0.27 0.2 +quiconque quiconque pro_rel s 22.81 9.12 15.43 6.08 +quidam quidam nom m s 0.7 2.23 0.66 1.89 +quidams quidam nom m p 0.7 2.23 0.04 0.34 +quiet quiet adj m s 0.39 0.74 0.28 0.07 +quiets quiet adj m p 0.39 0.74 0 0.2 +quignon quignon nom m s 0.25 2.43 0.11 2.16 +quignons quignon nom m p 0.25 2.43 0.14 0.27 +quillai quiller ver 0.05 0.27 0 0.2 ind:pas:1s; +quillards quillard nom m p 0 0.34 0 0.34 +quille quille nom f s 2.89 5.81 1.49 2.57 +quiller quiller ver 0.05 0.27 0.05 0 inf; +quilles quille nom f p 2.89 5.81 1.4 3.24 +quillon quillon nom m s 0 0.2 0 0.07 +quillons quillon nom m p 0 0.2 0 0.14 +quillée quiller ver f s 0.05 0.27 0 0.07 par:pas; +quimpe quimper ver 0 1.15 0 0.27 ind:pre:1s;ind:pre:3s; +quimpent quimper ver 0 1.15 0 0.07 ind:pre:3p; +quimper quimper ver 0 1.15 0 0.68 inf; +quimpé quimper ver m s 0 1.15 0 0.14 par:pas; +quincaille quincaille nom f s 0 0.34 0 0.34 +quincaillerie quincaillerie nom f s 1.97 2.91 1.89 2.7 +quincailleries quincaillerie nom f p 1.97 2.91 0.08 0.2 +quincaillier quincaillier nom m s 0.3 1.49 0.21 1.28 +quincailliers quincaillier nom m p 0.3 1.49 0.09 0.07 +quincaillière quincaillier nom f s 0.3 1.49 0 0.14 +quinconce quinconce nom m s 0.01 1.42 0 1.22 +quinconces quinconce nom m p 0.01 1.42 0.01 0.2 +quine quine nom m s 0.23 0.34 0.23 0.34 +quinine quinine nom f s 0.54 0.95 0.54 0.95 +quinium quinium nom m s 0 0.07 0 0.07 +quinoa quinoa nom m s 0.01 0 0.01 0 +quinqua quinqua nom m s 0 0.2 0 0.2 +quinquagénaire quinquagénaire adj s 0.16 0.68 0.16 0.54 +quinquagénaires quinquagénaire nom p 0.15 1.35 0.02 0.27 +quinquagésime quinquagésime nom f s 0 0.07 0 0.07 +quinquennal quinquennal adj m s 0.26 0.34 0.26 0.34 +quinquennat quinquennat nom m s 0.1 0 0.1 0 +quinquet quinquet nom m s 0.25 2.3 0.04 0.34 +quinquets quinquet nom m p 0.25 2.3 0.21 1.96 +quinquina quinquina nom m s 0 0.54 0 0.54 +quint quint adj 0.2 0.2 0.2 0.2 +quintaine quintaine nom f s 0 0.07 0 0.07 +quintal quintal nom m s 0.56 1.01 0.19 0.68 +quintaux quintal nom m p 0.56 1.01 0.38 0.34 +quinte quinte nom f s 1.42 4.86 1.25 3.85 +quintes quinte nom f p 1.42 4.86 0.16 1.01 +quintessence quintessence nom f s 0.43 1.22 0.43 1.22 +quintessencié quintessencié adj m s 0 0.41 0 0.27 +quintessenciée quintessencié adj f s 0 0.41 0 0.07 +quintessenciées quintessencié adj f p 0 0.41 0 0.07 +quintet quintet nom m s 0.05 0 0.05 0 +quintette quintette nom m s 0.09 1.22 0.09 1.15 +quintettes quintette nom m p 0.09 1.22 0 0.07 +quinteux quinteux adj m s 0 0.2 0 0.2 +quintidi quintidi nom m s 0 0.07 0 0.07 +quinto quinto adv 0.22 0 0.22 0 +quintolet quintolet nom m s 0.02 0 0.02 0 +quinton quinton nom m s 0.01 0 0.01 0 +quintupla quintupler ver 0.19 0.14 0 0.07 ind:pas:3s; +quintuple quintuple adj s 0.03 0.2 0.03 0.07 +quintuples quintuple adj f p 0.03 0.2 0 0.14 +quintuplé quintupler ver m s 0.19 0.14 0.15 0 par:pas; +quintuplées quintuplée nom f p 0.08 0.14 0.08 0.14 +quintuplés quintuplé nom m p 0.35 0.07 0.35 0.07 +quinté quinté nom m s 0.14 0 0.14 0 +quinzaine quinzaine nom f s 2.02 11.89 2.01 11.69 +quinzaines quinzaine nom f p 2.02 11.89 0.01 0.2 +quinze quinze adj_num 21.92 94.8 21.92 94.8 +quinzième quinzième nom s 0.28 0.74 0.28 0.74 +quipos quipo nom m p 0 0.07 0 0.07 +quiproquo quiproquo nom m s 0.38 0.88 0.37 0.61 +quiproquos quiproquo nom m p 0.38 0.88 0.01 0.27 +quipu quipu nom m s 0 0.07 0 0.07 +quiquette quiquette nom f s 0 0.07 0 0.07 +quiqui quiqui nom m s 0 0.41 0 0.41 +quiscale quiscale nom m s 0.11 0 0.11 0 +quite quite nom m s 0.47 0.07 0.47 0.07 +quitta quitter ver 276.23 318.72 1.82 27.3 ind:pas:3s; +quittai quitter ver 276.23 318.72 0.23 6.62 ind:pas:1s; +quittaient quitter ver 276.23 318.72 0.36 7.36 ind:imp:3p; +quittais quitter ver 276.23 318.72 1.37 3.85 ind:imp:1s;ind:imp:2s; +quittait quitter ver 276.23 318.72 2.88 24.93 ind:imp:3s; +quittance quittance nom f s 0.55 1.15 0.4 0.54 +quittances quittance nom f p 0.55 1.15 0.14 0.61 +quittant quitter ver 276.23 318.72 3.6 18.38 par:pre; +quittas quitter ver 276.23 318.72 0 0.07 ind:pas:2s; +quittassent quitter ver 276.23 318.72 0 0.07 sub:imp:3p; +quitte quitter ver 276.23 318.72 49.07 32.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +quittent quitter ver 276.23 318.72 4.39 5.47 ind:pre:3p; +quitter quitter ver 276.23 318.72 88.02 85.95 inf;; +quittera quitter ver 276.23 318.72 4.62 2.09 ind:fut:3s; +quitterai quitter ver 276.23 318.72 6.18 1.89 ind:fut:1s; +quitteraient quitter ver 276.23 318.72 0.02 1.08 cnd:pre:3p; +quitterais quitter ver 276.23 318.72 1.73 1.01 cnd:pre:1s;cnd:pre:2s; +quitterait quitter ver 276.23 318.72 0.78 2.57 cnd:pre:3s; +quitteras quitter ver 276.23 318.72 1.75 0.47 ind:fut:2s; +quitterez quitter ver 276.23 318.72 1.11 0.41 ind:fut:2p; +quitteriez quitter ver 276.23 318.72 0.34 0.07 cnd:pre:2p; +quitterions quitter ver 276.23 318.72 0.02 0.07 cnd:pre:1p; +quitterons quitter ver 276.23 318.72 0.63 0.47 ind:fut:1p; +quitteront quitter ver 276.23 318.72 0.4 0.41 ind:fut:3p; +quittes quitter ver 276.23 318.72 6.03 1.42 ind:pre:2s;sub:pre:2s; +quittez quitter ver 276.23 318.72 19.72 1.96 imp:pre:2p;ind:pre:2p; +quittiez quitter ver 276.23 318.72 1.19 0.27 ind:imp:2p;sub:pre:2p; +quittions quitter ver 276.23 318.72 0.39 2.77 ind:imp:1p;sub:pre:1p; +quittons quitter ver 276.23 318.72 3.44 1.96 imp:pre:1p;ind:pre:1p; +quittâmes quitter ver 276.23 318.72 0.16 2.16 ind:pas:1p; +quittât quitter ver 276.23 318.72 0.01 1.01 sub:imp:3s; +quittèrent quitter ver 276.23 318.72 0.38 6.69 ind:pas:3p; +quitté quitter ver m s 276.23 318.72 62.92 60.14 par:pas; +quittée quitter ver f s 276.23 318.72 7.4 8.85 par:pas; +quittées quitter ver f p 276.23 318.72 0.36 0.95 par:pas; +quittés quitter ver m p 276.23 318.72 4.95 7.97 par:pas; +quitus quitus nom m 0.14 0.07 0.14 0.07 +quiz quiz nom m 0.53 0 0.53 0 +quiète quiet adj f s 0.39 0.74 0 0.41 +quiètement quiètement adv 0 0.14 0 0.14 +quiètes quiet adj f p 0.39 0.74 0.1 0.07 +quiétisme quiétisme nom m s 0 0.34 0 0.34 +quiétiste quiétiste nom s 0 0.07 0 0.07 +quiétude quiétude nom f s 0.64 5.14 0.64 5.07 +quiétudes quiétude nom f p 0.64 5.14 0 0.07 +quoaillant quoailler ver 0 0.07 0 0.07 par:pre; +quoi quoi pro_rel 923.03 380.07 904.12 376.89 +quoique quoique con 11.68 19.05 11.68 19.05 +quolibet quolibet nom m s 0.04 2.91 0 0.14 +quolibets quolibet nom m p 0.04 2.91 0.04 2.77 +quorum quorum nom m s 0.67 0.2 0.67 0.2 +quota quota nom m s 2.12 0.47 1.39 0.27 +quotas quota nom m p 2.12 0.47 0.73 0.2 +quote_part quote_part nom f s 0.03 0.47 0.03 0.47 +quotidien quotidien adj m s 10.15 37.43 3.66 10.47 +quotidienne quotidien adj f s 10.15 37.43 3.91 17.3 +quotidiennement quotidiennement adv 0.97 4.8 0.97 4.8 +quotidiennes quotidien adj f p 10.15 37.43 1.29 4.8 +quotidienneté quotidienneté nom f s 0 0.14 0 0.14 +quotidiens quotidien adj m p 10.15 37.43 1.3 4.86 +quotient quotient nom m s 0.42 0.61 0.42 0.47 +quotients quotient nom m p 0.42 0.61 0 0.14 +quotité quotité nom f s 0 0.07 0 0.07 +québécois québécois adj m s 0.25 0.07 0.11 0 +québécoise québécois adj f s 0.25 0.07 0.14 0.07 +quémanda quémander ver 0.6 2.7 0 0.07 ind:pas:3s; +quémandaient quémander ver 0.6 2.7 0 0.27 ind:imp:3p; +quémandait quémander ver 0.6 2.7 0.01 0.2 ind:imp:3s; +quémandant quémander ver 0.6 2.7 0 0.47 par:pre; +quémande quémander ver 0.6 2.7 0.03 0.14 ind:pre:3s; +quémandent quémander ver 0.6 2.7 0.12 0.07 ind:pre:3p; +quémander quémander ver 0.6 2.7 0.41 1.42 inf; +quémandeur quémandeur nom m s 0.32 0.88 0.02 0.41 +quémandeurs quémandeur nom m p 0.32 0.88 0.3 0.27 +quémandeuse quémandeur nom f s 0.32 0.88 0 0.07 +quémandeuses quémandeur nom f p 0.32 0.88 0 0.14 +quémandons quémander ver 0.6 2.7 0.01 0 ind:pre:1p; +quémandé quémander ver m s 0.6 2.7 0.02 0.07 par:pas; +quéquette quéquette nom f s 1.3 2.36 1.27 2.09 +quéquettes quéquette nom f p 1.3 2.36 0.03 0.27 +quérir quérir ver 0.65 1.76 0.65 1.76 inf; +quêta quêter ver 0.21 3.38 0 0.2 ind:pas:3s; +quêtai quêter ver 0.21 3.38 0 0.07 ind:pas:1s; +quêtaient quêter ver 0.21 3.38 0 0.27 ind:imp:3p; +quêtais quêter ver 0.21 3.38 0.01 0.2 ind:imp:1s;ind:imp:2s; +quêtait quêter ver 0.21 3.38 0 0.41 ind:imp:3s; +quêtant quêter ver 0.21 3.38 0.01 0.88 par:pre; +quête quête nom f s 10.24 14.53 9.97 13.92 +quêtent quêter ver 0.21 3.38 0 0.14 ind:pre:3p; +quêter quêter ver 0.21 3.38 0.13 0.88 inf; +quêtes quête nom f p 10.24 14.53 0.28 0.61 +quêteur quêteur nom m s 0.04 0.81 0.04 0.2 +quêteurs quêteur nom m p 0.04 0.81 0 0.34 +quêteuse quêteur nom f s 0.04 0.81 0 0.27 +quêtez quêter ver 0.21 3.38 0 0.07 imp:pre:2p; +quêté quêter ver m s 0.21 3.38 0 0.07 par:pas; +quêtées quêter ver f p 0.21 3.38 0 0.07 par:pas; +ra ra nom m 3.63 3.45 3.63 3.45 +rab rab nom m s 1.92 1.76 1.92 1.69 +rabais rabais nom m 1.57 1.55 1.57 1.55 +rabaissa rabaisser ver 3.79 3.38 0 0.2 ind:pas:3s; +rabaissaient rabaisser ver 3.79 3.38 0 0.07 ind:imp:3p; +rabaissais rabaisser ver 3.79 3.38 0.04 0.07 ind:imp:1s; +rabaissait rabaisser ver 3.79 3.38 0.1 0.34 ind:imp:3s; +rabaissant rabaisser ver 3.79 3.38 0.04 0.34 par:pre; +rabaisse rabaisser ver 3.79 3.38 0.69 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rabaissement rabaissement nom m s 0.01 0.07 0.01 0.07 +rabaissent rabaisser ver 3.79 3.38 0.15 0.14 ind:pre:3p; +rabaisser rabaisser ver 3.79 3.38 1.65 1.22 inf; +rabaissera rabaisser ver 3.79 3.38 0.02 0 ind:fut:3s; +rabaisserait rabaisser ver 3.79 3.38 0.12 0 cnd:pre:3s; +rabaisses rabaisser ver 3.79 3.38 0.17 0 ind:pre:2s; +rabaissez rabaisser ver 3.79 3.38 0.26 0.07 imp:pre:2p;ind:pre:2p; +rabaissé rabaisser ver m s 3.79 3.38 0.32 0.27 par:pas; +rabaissée rabaisser ver f s 3.79 3.38 0.23 0.14 par:pas; +rabaissées rabaisser ver f p 3.79 3.38 0 0.07 par:pas; +raban raban nom m s 0.32 0 0.09 0 +rabane rabane nom f s 0 0.14 0 0.07 +rabanes rabane nom f p 0 0.14 0 0.07 +rabans raban nom m p 0.32 0 0.24 0 +rabat rabattre ver 2.21 21.76 0.32 2.97 ind:pre:3s; +rabat_joie rabat_joie adj 0.91 0.14 0.91 0.14 +rabats rabattre ver 2.21 21.76 0.21 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rabattable rabattable adj s 0.01 0 0.01 0 +rabattaient rabattre ver 2.21 21.76 0 0.68 ind:imp:3p; +rabattais rabattre ver 2.21 21.76 0.01 0.07 ind:imp:1s; +rabattait rabattre ver 2.21 21.76 0.01 2.16 ind:imp:3s; +rabattant rabattre ver 2.21 21.76 0 0.68 par:pre; +rabatte rabattre ver 2.21 21.76 0.04 0.27 sub:pre:1s;sub:pre:3s; +rabattent rabattre ver 2.21 21.76 0.04 0.81 ind:pre:3p; +rabatteur rabatteur nom m s 0.69 1.82 0.22 0.47 +rabatteurs rabatteur nom m p 0.69 1.82 0.45 0.95 +rabatteuse rabatteur nom f s 0.69 1.82 0.01 0.41 +rabatteuses rabatteur nom f p 0.69 1.82 0.01 0 +rabattez rabattre ver 2.21 21.76 0.11 0.07 imp:pre:2p;ind:pre:2p; +rabattions rabattre ver 2.21 21.76 0 0.07 ind:imp:1p; +rabattirent rabattre ver 2.21 21.76 0 0.34 ind:pas:3p; +rabattis rabattre ver 2.21 21.76 0 0.27 ind:pas:1s; +rabattit rabattre ver 2.21 21.76 0.01 2.91 ind:pas:3s; +rabattra rabattre ver 2.21 21.76 0.04 0.14 ind:fut:3s; +rabattraient rabattre ver 2.21 21.76 0 0.07 cnd:pre:3p; +rabattrait rabattre ver 2.21 21.76 0 0.14 cnd:pre:3s; +rabattras rabattre ver 2.21 21.76 0 0.07 ind:fut:2s; +rabattre rabattre ver 2.21 21.76 1.01 4.46 inf; +rabattrons rabattre ver 2.21 21.76 0 0.07 ind:fut:1p; +rabattu rabattre ver m s 2.21 21.76 0.28 3.11 par:pas; +rabattue rabattu adj f s 0.14 2.03 0.12 0.07 +rabattues rabattre ver f p 2.21 21.76 0.03 0.34 par:pas; +rabattus rabattre ver m p 2.21 21.76 0.07 0.41 par:pas; +rabbi rabbi nom m s 4.83 0.74 4.83 0.74 +rabbin rabbin nom m s 9.36 7.57 9.04 6.35 +rabbinat rabbinat nom m s 0 0.2 0 0.2 +rabbinique rabbinique adj s 0.01 0.41 0.01 0.34 +rabbiniques rabbinique adj m p 0.01 0.41 0 0.07 +rabbins rabbin nom m p 9.36 7.57 0.32 1.22 +rabe rabe nom m s 0.05 0.14 0.05 0.07 +rabelaisien rabelaisien adj m s 0 0.68 0 0.27 +rabelaisienne rabelaisien adj f s 0 0.68 0 0.27 +rabelaisiennes rabelaisien adj f p 0 0.68 0 0.07 +rabelaisiens rabelaisien adj m p 0 0.68 0 0.07 +rabes rabe nom m p 0.05 0.14 0 0.07 +rabibochage rabibochage nom m s 0 0.14 0 0.14 +rabiboche rabibocher ver 0.84 0.54 0.06 0 ind:pre:1s;ind:pre:3s; +rabibochent rabibocher ver 0.84 0.54 0.01 0 ind:pre:3p; +rabibocher rabibocher ver 0.84 0.54 0.17 0.41 inf; +rabibocherez rabibocher ver 0.84 0.54 0 0.07 ind:fut:2p; +rabiboché rabibocher ver m s 0.84 0.54 0.4 0 par:pas; +rabibochées rabibocher ver f p 0.84 0.54 0.01 0 par:pas; +rabibochés rabibocher ver m p 0.84 0.54 0.19 0.07 par:pas; +rabiot rabiot nom m s 0.06 0.88 0.06 0.88 +rabiotait rabioter ver 0 0.27 0 0.07 ind:imp:3s; +rabioter rabioter ver 0 0.27 0 0.2 inf; +rabique rabique adj f s 0 0.14 0 0.14 +rabonnir rabonnir ver 0 0.07 0 0.07 inf; +rabot rabot nom m s 0.01 1.28 0.01 0.95 +rabotage rabotage nom m s 0 0.14 0 0.14 +rabotais raboter ver 0.15 2.91 0 0.07 ind:imp:1s; +rabotait raboter ver 0.15 2.91 0 0.47 ind:imp:3s; +rabotant raboter ver 0.15 2.91 0 0.2 par:pre; +rabotent raboter ver 0.15 2.91 0.1 0.2 ind:pre:3p; +raboter raboter ver 0.15 2.91 0.03 0.41 inf; +raboteur raboteur nom m s 0.01 0.07 0.01 0.07 +raboteuse raboteux adj f s 0.1 0.88 0 0.34 +raboteuses raboteux adj f p 0.1 0.88 0 0.07 +raboteux raboteux adj m 0.1 0.88 0.1 0.47 +rabotin rabotin nom m s 0 0.34 0 0.34 +rabots rabot nom m p 0.01 1.28 0 0.34 +raboté raboter ver m s 0.15 2.91 0.01 0.34 par:pas; +rabotée raboter ver f s 0.15 2.91 0 0.34 par:pas; +rabotées raboter ver f p 0.15 2.91 0 0.41 par:pas; +rabotés raboter ver m p 0.15 2.91 0.01 0.47 par:pas; +rabougri rabougri adj m s 0.25 3.38 0.19 1.55 +rabougrie rabougri adj f s 0.25 3.38 0.02 0.27 +rabougries rabougri adj f p 0.25 3.38 0.01 0.2 +rabougrir rabougrir ver 0.19 0.95 0.16 0.07 inf; +rabougris rabougri adj m p 0.25 3.38 0.03 1.35 +rabougrissent rabougrir ver 0.19 0.95 0 0.07 ind:pre:3p; +rabougrit rabougrir ver 0.19 0.95 0 0.2 ind:pre:3s; +rabouillères rabouiller nom f p 0 0.07 0 0.07 +rabouin rabouin nom m s 0 0.07 0 0.07 +rabouler rabouler ver 0.01 0 0.01 0 inf; +rabouter rabouter ver 0 0.14 0 0.07 inf; +rabouté rabouter ver m s 0 0.14 0 0.07 par:pas; +rabroua rabrouer ver 0.4 2.84 0 0.2 ind:pas:3s; +rabrouai rabrouer ver 0.4 2.84 0 0.07 ind:pas:1s; +rabrouaient rabrouer ver 0.4 2.84 0 0.14 ind:imp:3p; +rabrouait rabrouer ver 0.4 2.84 0.03 0.34 ind:imp:3s; +rabrouant rabrouer ver 0.4 2.84 0 0.14 par:pre; +rabroue rabrouer ver 0.4 2.84 0.05 0.2 ind:pre:1s;ind:pre:3s; +rabrouer rabrouer ver 0.4 2.84 0.04 0.68 inf; +rabrouât rabrouer ver 0.4 2.84 0 0.07 sub:imp:3s; +rabrouèrent rabrouer ver 0.4 2.84 0 0.07 ind:pas:3p; +rabroué rabrouer ver m s 0.4 2.84 0.05 0.41 par:pas; +rabrouée rabrouer ver f s 0.4 2.84 0.23 0.54 par:pas; +rabs rab nom m p 1.92 1.76 0 0.07 +rabâcha rabâcher ver 1.46 4.32 0 0.14 ind:pas:3s; +rabâchage rabâchage nom m s 0.1 0.34 0.1 0.2 +rabâchages rabâchage nom m p 0.1 0.34 0 0.14 +rabâchaient rabâcher ver 1.46 4.32 0 0.2 ind:imp:3p; +rabâchais rabâcher ver 1.46 4.32 0.01 0 ind:imp:2s; +rabâchait rabâcher ver 1.46 4.32 0.01 0.61 ind:imp:3s; +rabâchant rabâcher ver 1.46 4.32 0.15 0.14 par:pre; +rabâche rabâcher ver 1.46 4.32 0.32 0.81 ind:pre:1s;ind:pre:3s; +rabâchent rabâcher ver 1.46 4.32 0.04 0 ind:pre:3p; +rabâcher rabâcher ver 1.46 4.32 0.68 1.01 inf; +rabâcherait rabâcher ver 1.46 4.32 0 0.07 cnd:pre:3s; +rabâches rabâcher ver 1.46 4.32 0.15 0.54 ind:pre:2s; +rabâcheur rabâcheur adj m s 0.01 0 0.01 0 +rabâché rabâcher ver m s 1.46 4.32 0.12 0.34 par:pas; +rabâchée rabâcher ver f s 1.46 4.32 0 0.07 par:pas; +rabâchées rabâcher ver f p 1.46 4.32 0 0.41 par:pas; +rac rac adj 0 0.95 0 0.95 +racaille racaille nom f s 6.3 2.97 5.67 2.97 +racailles racaille nom f p 6.3 2.97 0.62 0 +raccommoda raccommoder ver 0.68 3.04 0 0.14 ind:pas:3s; +raccommodage raccommodage nom m s 0.04 0.61 0.04 0.47 +raccommodages raccommodage nom m p 0.04 0.61 0 0.14 +raccommodaient raccommoder ver 0.68 3.04 0 0.07 ind:imp:3p; +raccommodait raccommoder ver 0.68 3.04 0.01 0.41 ind:imp:3s; +raccommodant raccommoder ver 0.68 3.04 0.01 0.07 par:pre; +raccommode raccommoder ver 0.68 3.04 0.18 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccommodements raccommodement nom m p 0 0.07 0 0.07 +raccommodent raccommoder ver 0.68 3.04 0.14 0 ind:pre:3p; +raccommoder raccommoder ver 0.68 3.04 0.25 1.22 inf; +raccommodera raccommoder ver 0.68 3.04 0 0.07 ind:fut:3s; +raccommoderai raccommoder ver 0.68 3.04 0.02 0 ind:fut:1s; +raccommodeurs raccommodeur nom m p 0 0.07 0 0.07 +raccommodez raccommoder ver 0.68 3.04 0 0.07 ind:pre:2p; +raccommodions raccommoder ver 0.68 3.04 0.01 0 ind:imp:1p; +raccommodé raccommoder ver m s 0.68 3.04 0.04 0.54 par:pas; +raccommodée raccommoder ver f s 0.68 3.04 0.01 0.14 par:pas; +raccommodées raccommoder ver f p 0.68 3.04 0 0.07 par:pas; +raccommodés raccommoder ver m p 0.68 3.04 0.02 0.07 par:pas; +raccompagna raccompagner ver 25.9 14.39 0.01 2.09 ind:pas:3s; +raccompagnai raccompagner ver 25.9 14.39 0 0.34 ind:pas:1s; +raccompagnaient raccompagner ver 25.9 14.39 0 0.2 ind:imp:3p; +raccompagnais raccompagner ver 25.9 14.39 0.34 0.41 ind:imp:1s;ind:imp:2s; +raccompagnait raccompagner ver 25.9 14.39 0.3 1.42 ind:imp:3s; +raccompagnant raccompagner ver 25.9 14.39 0.16 0.74 par:pre; +raccompagne raccompagner ver 25.9 14.39 11.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccompagnent raccompagner ver 25.9 14.39 0.04 0.14 ind:pre:3p; +raccompagner raccompagner ver 25.9 14.39 6.6 3.65 inf; +raccompagnera raccompagner ver 25.9 14.39 0.51 0.07 ind:fut:3s; +raccompagnerai raccompagner ver 25.9 14.39 0.6 0 ind:fut:1s; +raccompagnerais raccompagner ver 25.9 14.39 0.17 0 cnd:pre:1s;cnd:pre:2s; +raccompagnerait raccompagner ver 25.9 14.39 0.01 0.34 cnd:pre:3s; +raccompagneras raccompagner ver 25.9 14.39 0.02 0.07 ind:fut:2s; +raccompagnerez raccompagner ver 25.9 14.39 0 0.07 ind:fut:2p; +raccompagnes raccompagner ver 25.9 14.39 0.71 0.14 ind:pre:2s; +raccompagnez raccompagner ver 25.9 14.39 1.52 0.14 imp:pre:2p;ind:pre:2p; +raccompagnons raccompagner ver 25.9 14.39 0.23 0 imp:pre:1p;ind:pre:1p; +raccompagnèrent raccompagner ver 25.9 14.39 0 0.2 ind:pas:3p; +raccompagné raccompagner ver m s 25.9 14.39 1.16 1.08 par:pas; +raccompagnée raccompagner ver f s 25.9 14.39 1.65 0.61 par:pas; +raccompagnés raccompagner ver m p 25.9 14.39 0 0.14 par:pas; +raccord raccord nom m s 1.02 1.28 0.81 0.68 +raccordaient raccorder ver 0.73 2.64 0.02 0.14 ind:imp:3p; +raccordait raccorder ver 0.73 2.64 0 0.41 ind:imp:3s; +raccordant raccorder ver 0.73 2.64 0.03 0.14 par:pre; +raccorde raccorder ver 0.73 2.64 0.13 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccordement raccordement nom m s 0.2 0.27 0.09 0.14 +raccordements raccordement nom m p 0.2 0.27 0.11 0.14 +raccordent raccorder ver 0.73 2.64 0 0.14 ind:pre:3p; +raccorder raccorder ver 0.73 2.64 0.21 0.61 inf; +raccorderait raccorder ver 0.73 2.64 0 0.07 cnd:pre:3s; +raccordez raccorder ver 0.73 2.64 0.02 0 imp:pre:2p;ind:pre:2p; +raccords raccord nom m p 1.02 1.28 0.21 0.61 +raccordé raccorder ver m s 0.73 2.64 0.23 0.41 par:pas; +raccordée raccorder ver f s 0.73 2.64 0.01 0.07 par:pas; +raccordées raccorder ver f p 0.73 2.64 0.01 0 par:pas; +raccordés raccorder ver m p 0.73 2.64 0.06 0.14 par:pas; +raccourci raccourci nom m s 5.78 4.32 4.57 3.24 +raccourcie raccourcir ver f s 2.46 5.95 0.16 0.54 par:pas; +raccourcies raccourcir ver f p 2.46 5.95 0.01 0.07 par:pas; +raccourcir raccourcir ver 2.46 5.95 1.09 1.62 inf; +raccourcira raccourcir ver 2.46 5.95 0.04 0.07 ind:fut:3s; +raccourciras raccourcir ver 2.46 5.95 0.01 0 ind:fut:2s; +raccourcirons raccourcir ver 2.46 5.95 0 0.07 ind:fut:1p; +raccourcis raccourci nom m p 5.78 4.32 1.21 1.08 +raccourcissaient raccourcir ver 2.46 5.95 0 0.2 ind:imp:3p; +raccourcissait raccourcir ver 2.46 5.95 0.01 0.2 ind:imp:3s; +raccourcissant raccourcir ver 2.46 5.95 0.1 0.61 par:pre; +raccourcisse raccourcir ver 2.46 5.95 0.01 0.07 sub:pre:1s;sub:pre:3s; +raccourcissement raccourcissement nom m s 0.01 0.27 0.01 0.27 +raccourcissent raccourcir ver 2.46 5.95 0.14 0.54 ind:pre:3p; +raccourcit raccourcir ver 2.46 5.95 0.23 0.68 ind:pre:3s;ind:pas:3s; +raccroc raccroc nom m s 0 0.47 0 0.34 +raccrocha raccrocher ver 28.09 26.08 0.02 5.07 ind:pas:3s; +raccrochage raccrochage nom m s 0.01 0.14 0.01 0.07 +raccrochages raccrochage nom m p 0.01 0.14 0 0.07 +raccrochai raccrocher ver 28.09 26.08 0.01 1.42 ind:pas:1s; +raccrochaient raccrocher ver 28.09 26.08 0.01 0.2 ind:imp:3p; +raccrochais raccrocher ver 28.09 26.08 0.12 0.27 ind:imp:1s;ind:imp:2s; +raccrochait raccrocher ver 28.09 26.08 0.29 0.95 ind:imp:3s; +raccrochant raccrocher ver 28.09 26.08 0.04 1.22 par:pre; +raccroche raccrocher ver 28.09 26.08 10.58 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +raccrochent raccrocher ver 28.09 26.08 0.49 0.14 ind:pre:3p; +raccrocher raccrocher ver 28.09 26.08 5.41 5.27 inf; +raccrochera raccrocher ver 28.09 26.08 0.04 0 ind:fut:3s; +raccrocherai raccrocher ver 28.09 26.08 0.13 0 ind:fut:1s; +raccrocheraient raccrocher ver 28.09 26.08 0 0.07 cnd:pre:3p; +raccrocherais raccrocher ver 28.09 26.08 0.02 0 cnd:pre:1s; +raccrocherait raccrocher ver 28.09 26.08 0.11 0.07 cnd:pre:3s; +raccrocheras raccrocher ver 28.09 26.08 0.04 0 ind:fut:2s; +raccroches raccrocher ver 28.09 26.08 0.53 0.2 ind:pre:2s; +raccrocheur raccrocheur adj m s 0 0.2 0 0.14 +raccrocheurs raccrocheur adj m p 0 0.2 0 0.07 +raccrochez raccrocher ver 28.09 26.08 3.49 0.2 imp:pre:2p;ind:pre:2p; +raccrochons raccrocher ver 28.09 26.08 0.03 0 imp:pre:1p;ind:pre:1p; +raccrochèrent raccrocher ver 28.09 26.08 0 0.07 ind:pas:3p; +raccroché raccrocher ver m s 28.09 26.08 6.67 5 par:pas; +raccrochée raccrocher ver f s 28.09 26.08 0.04 0.2 par:pas; +raccrochées raccrocher ver f p 28.09 26.08 0 0.07 par:pas; +raccrochés raccrocher ver m p 28.09 26.08 0.03 0.07 par:pas; +raccrocs raccroc nom m p 0 0.47 0 0.14 +raccusa raccuser ver 0 0.07 0 0.07 ind:pas:3s; +race race nom f s 30.56 34.93 27.09 28.72 +races race nom f p 30.56 34.93 3.46 6.22 +rachat rachat nom m s 1.79 1.01 1.75 0.95 +rachats rachat nom m p 1.79 1.01 0.04 0.07 +racheta racheter ver 17.33 12.91 0 0.2 ind:pas:3s; +rachetai racheter ver 17.33 12.91 0 0.07 ind:pas:1s; +rachetaient racheter ver 17.33 12.91 0.01 0.2 ind:imp:3p; +rachetait racheter ver 17.33 12.91 0 0.68 ind:imp:3s; +rachetant racheter ver 17.33 12.91 0.19 0.2 par:pre; +racheter racheter ver 17.33 12.91 9.3 6.08 inf;; +rachetez racheter ver 17.33 12.91 0.09 0.07 imp:pre:2p;ind:pre:2p; +rachetiez racheter ver 17.33 12.91 0.03 0.07 ind:imp:2p; +rachetât racheter ver 17.33 12.91 0 0.07 sub:imp:3s; +rachetèrent racheter ver 17.33 12.91 0 0.07 ind:pas:3p; +racheté racheter ver m s 17.33 12.91 3.77 1.22 par:pas; +rachetée racheter ver f s 17.33 12.91 0.6 0.41 par:pas; +rachetées racheter ver f p 17.33 12.91 0 0.14 par:pas; +rachetés racheter ver m p 17.33 12.91 0.32 0.47 par:pas; +rachianesthésie rachianesthésie nom f s 0.1 0 0.1 0 +rachidien rachidien adj m s 0.23 0.14 0.18 0.14 +rachidienne rachidien adj f s 0.23 0.14 0.04 0 +rachis rachis nom m 0.04 0.07 0.04 0.07 +rachitique rachitique adj s 0.14 0.61 0.11 0.47 +rachitiques rachitique adj p 0.14 0.61 0.03 0.14 +rachitisme rachitisme nom m s 0.05 0.14 0.05 0.14 +racho racho adj s 0.03 0.07 0.03 0.07 +rachète racheter ver 17.33 12.91 1.48 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rachètent racheter ver 17.33 12.91 0.2 0.41 ind:pre:3p; +rachètera racheter ver 17.33 12.91 0.64 0.41 ind:fut:3s; +rachèterai racheter ver 17.33 12.91 0.47 0.34 ind:fut:1s; +rachèterais racheter ver 17.33 12.91 0.06 0 cnd:pre:1s;cnd:pre:2s; +rachèterait racheter ver 17.33 12.91 0.03 0.34 cnd:pre:3s; +rachèterez racheter ver 17.33 12.91 0.14 0 ind:fut:2p; +rachèteront racheter ver 17.33 12.91 0.01 0 ind:fut:3p; +racial racial adj m s 3.08 1.35 0.66 0.07 +raciale racial adj f s 3.08 1.35 1.5 0.61 +racialement racialement adv 0.02 0.14 0.02 0.14 +raciales racial adj f p 3.08 1.35 0.71 0.47 +raciaux racial adj m p 3.08 1.35 0.22 0.2 +racinait raciner ver 0 0.34 0 0.07 ind:imp:3s; +racine racine nom f s 12.53 31.96 5.17 11.01 +raciner raciner ver 0 0.34 0 0.07 inf; +racines racine nom f p 12.53 31.96 7.36 20.95 +racingman racingman nom m s 0 0.07 0 0.07 +racinienne racinien adj f s 0 0.2 0 0.07 +raciniennes racinien adj f p 0 0.2 0 0.07 +raciniens racinien adj m p 0 0.2 0 0.07 +racinée raciner ver f s 0 0.34 0 0.07 par:pas; +racinées raciner ver f p 0 0.34 0 0.07 par:pas; +racinés raciner ver m p 0 0.34 0 0.07 par:pas; +racisme racisme nom m s 2.09 2.97 2.09 2.77 +racismes racisme nom m p 2.09 2.97 0 0.2 +raciste raciste adj s 4.97 3.45 3.89 2.03 +racistes raciste nom p 3.54 2.7 1.18 1.28 +rack rack nom m s 0.25 0.07 0.25 0.07 +racket racket nom m s 2.33 0.68 2.07 0.68 +rackets racket nom m p 2.33 0.68 0.27 0 +rackette racketter ver 0.23 0 0.05 0 ind:pre:3s; +racketter racketter ver 0.23 0 0.16 0 inf; +racketteur racketteur nom m s 0.22 0 0.22 0 +rackettez racketter ver 0.23 0 0.01 0 ind:pre:2p; +rackettons racketter ver 0.23 0 0.01 0 ind:pre:1p; +racketté racketter ver m s 0.23 0 0.01 0 par:pas; +racla racler ver 1.36 12.5 0 1.89 ind:pas:3s; +raclages raclage nom m p 0 0.07 0 0.07 +raclaient racler ver 1.36 12.5 0 0.54 ind:imp:3p; +raclais racler ver 1.36 12.5 0.01 0.2 ind:imp:1s; +raclait racler ver 1.36 12.5 0.04 2.09 ind:imp:3s; +raclant racler ver 1.36 12.5 0.06 1.49 par:pre; +raclante raclant adj f s 0 0.27 0 0.07 +racle racler ver 1.36 12.5 0.26 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raclement raclement nom m s 0.07 2.09 0.07 1.15 +raclements raclement nom m p 0.07 2.09 0 0.95 +raclent racler ver 1.36 12.5 0.02 0.61 ind:pre:3p; +racler racler ver 1.36 12.5 0.51 2.03 inf; +raclerai racler ver 1.36 12.5 0.01 0 ind:fut:1s; +racleras racler ver 1.36 12.5 0.01 0 ind:fut:2s; +racles racler ver 1.36 12.5 0.01 0.07 ind:pre:2s; +raclette raclette nom f s 1.13 0.81 1.13 0.81 +racleur racleur nom m s 0.04 0 0.03 0 +racleuse racleur nom f s 0.04 0 0.01 0 +racloir racloir nom m s 0.25 0.07 0.25 0.07 +raclons raclon nom m p 0.01 0.07 0.01 0.07 +raclure raclure nom f s 1.73 1.49 1.48 0.88 +raclures raclure nom f p 1.73 1.49 0.25 0.61 +raclèrent racler ver 1.36 12.5 0 0.2 ind:pas:3p; +raclé racler ver m s 1.36 12.5 0.43 0.95 par:pas; +raclée raclée nom f s 6.88 3.24 6.43 2.57 +raclées raclée nom f p 6.88 3.24 0.45 0.68 +raclés racler ver m p 1.36 12.5 0 0.2 par:pas; +racolage racolage nom m s 0.57 0.61 0.57 0.54 +racolages racolage nom m p 0.57 0.61 0 0.07 +racolaient racoler ver 0.59 1.42 0 0.07 ind:imp:3p; +racolais racoler ver 0.59 1.42 0 0.07 ind:imp:1s; +racolait racoler ver 0.59 1.42 0.07 0.2 ind:imp:3s; +racolant racoler ver 0.59 1.42 0.01 0.07 par:pre; +racole racoler ver 0.59 1.42 0.12 0.14 ind:pre:1s;ind:pre:3s; +racolent racoler ver 0.59 1.42 0.02 0.14 ind:pre:3p; +racoler racoler ver 0.59 1.42 0.16 0.54 inf; +racoles racoler ver 0.59 1.42 0.06 0.07 ind:pre:2s; +racoleur racoleur adj m s 0.33 0.41 0.15 0.2 +racoleurs racoleur nom m p 0.14 0.14 0.03 0.07 +racoleuse racoleur adj f s 0.33 0.41 0.05 0.07 +racoleuses racoleur adj f p 0.33 0.41 0.12 0.14 +racolé racoler ver m s 0.59 1.42 0.16 0.14 par:pas; +raconta raconter ver 253.84 261.89 1.08 18.04 ind:pas:3s; +racontable racontable adj f s 0.12 0.2 0.1 0.14 +racontables racontable adj f p 0.12 0.2 0.02 0.07 +racontai raconter ver 253.84 261.89 0.26 3.11 ind:pas:1s; +racontaient raconter ver 253.84 261.89 1.05 4.05 ind:imp:3p; +racontais raconter ver 253.84 261.89 2.41 5 ind:imp:1s;ind:imp:2s; +racontait raconter ver 253.84 261.89 4.5 29.46 ind:imp:3s; +racontant raconter ver 253.84 261.89 0.93 6.15 par:pre; +racontar racontar nom m s 1.11 2.23 0.02 0.47 +racontars racontar nom m p 1.11 2.23 1.08 1.76 +racontas raconter ver 253.84 261.89 0 0.07 ind:pas:2s; +raconte raconter ver 253.84 261.89 78.06 54.12 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +racontent raconter ver 253.84 261.89 4.32 6.35 ind:pre:3p;sub:pre:3p; +raconter raconter ver 253.84 261.89 57.79 64.86 inf;; +racontera raconter ver 253.84 261.89 2.02 1.82 ind:fut:3s; +raconterai raconter ver 253.84 261.89 6.8 5.07 ind:fut:1s; +raconteraient raconter ver 253.84 261.89 0.03 0.2 cnd:pre:3p; +raconterais raconter ver 253.84 261.89 0.63 0.54 cnd:pre:1s;cnd:pre:2s; +raconterait raconter ver 253.84 261.89 0.08 2.09 cnd:pre:3s; +raconteras raconter ver 253.84 261.89 3.19 1.28 ind:fut:2s; +raconterez raconter ver 253.84 261.89 0.96 0.95 ind:fut:2p; +raconterons raconter ver 253.84 261.89 0.14 0.14 ind:fut:1p; +raconteront raconter ver 253.84 261.89 0.13 0.07 ind:fut:3p; +racontes raconter ver 253.84 261.89 34.95 7.23 ind:pre:1p;ind:pre:2s;sub:pre:2s; +raconteur raconteur nom m s 0.18 0.14 0.17 0 +raconteuse raconteur nom f s 0.18 0.14 0.01 0.14 +racontez raconter ver 253.84 261.89 17.02 5.74 imp:pre:2p;ind:pre:2p; +racontiez raconter ver 253.84 261.89 0.45 0.61 ind:imp:2p; +racontions raconter ver 253.84 261.89 0.04 0.47 ind:imp:1p; +racontons raconter ver 253.84 261.89 0.47 0.27 imp:pre:1p;ind:pre:1p; +racontât raconter ver 253.84 261.89 0 0.07 sub:imp:3s; +racontèrent raconter ver 253.84 261.89 0.03 1.22 ind:pas:3p; +raconté raconter ver m s 253.84 261.89 33.87 38.18 par:pas; +racontée raconter ver f s 253.84 261.89 1.93 2.91 par:pas; +racontées raconter ver f p 253.84 261.89 0.49 1.22 par:pas; +racontés raconter ver m p 253.84 261.89 0.24 0.61 par:pas; +racorni racornir ver m s 0.59 3.45 0.4 1.15 par:pas; +racornie racornir ver f s 0.59 3.45 0.02 0.95 par:pas; +racornies racornir ver f p 0.59 3.45 0 0.54 par:pas; +racornir racornir ver 0.59 3.45 0.02 0.07 inf; +racornis racornir ver m p 0.59 3.45 0 0.41 par:pas; +racornissait racornir ver 0.59 3.45 0 0.14 ind:imp:3s; +racornissent racornir ver 0.59 3.45 0.14 0.07 ind:pre:3p; +racornit racornir ver 0.59 3.45 0.01 0.14 ind:pre:3s;ind:pas:3s; +racé racé adj m s 0.07 1.69 0.03 0.81 +racée racé adj f s 0.07 1.69 0.01 0.68 +racés racé adj m p 0.07 1.69 0.03 0.2 +rad rad nom m s 0.2 0.07 0.18 0.07 +rada rader ver 0.47 0.61 0.02 0 ind:pas:3s; +radada radada nom m s 0 0.07 0 0.07 +radar radar nom m s 10.36 2.7 8.05 1.96 +radars radar nom m p 10.36 2.7 2.31 0.74 +radasse rader ver 0.47 0.61 0.3 0.54 sub:imp:1s; +radasses rader ver 0.47 0.61 0.01 0.07 sub:imp:2s; +rade rade nom f s 2.33 10.88 2.18 9.26 +radeau radeau nom m s 3.27 5.2 2.97 4.32 +radeau_radar radeau_radar nom m s 0 0.07 0 0.07 +radeaux radeau nom m p 3.27 5.2 0.3 0.88 +rader rader ver 0.47 0.61 0.14 0 inf; +rades rade nom f p 2.33 10.88 0.16 1.62 +radeuse radeuse nom f s 0 0.34 0 0.27 +radeuses radeuse nom f p 0 0.34 0 0.07 +radial radial adj m s 0.34 0.34 0.12 0 +radiale radial adj f s 0.34 0.34 0.19 0.27 +radiales radial adj f p 0.34 0.34 0.01 0.07 +radiant radiant nom m s 0.02 0 0.02 0 +radiante radiant adj f s 0.02 0.14 0.01 0.07 +radiateur radiateur nom m s 3.65 7.43 3.02 6.35 +radiateurs radiateur nom m p 3.65 7.43 0.63 1.08 +radiation radiation nom f s 6.89 0.74 2.71 0.34 +radiations radiation nom f p 6.89 0.74 4.17 0.41 +radiative radiatif adj f s 0.01 0 0.01 0 +radiaux radial adj m p 0.34 0.34 0.02 0 +radical radical adj m s 6.25 8.11 2.96 3.51 +radical_socialisme radical_socialisme nom m s 0 0.27 0 0.27 +radical_socialiste radical_socialiste adj m s 0 0.34 0 0.34 +radicale radical adj f s 6.25 8.11 1.75 2.57 +radicale_socialiste radicale_socialiste nom f s 0 0.2 0 0.2 +radicalement radicalement adv 0.99 3.65 0.99 3.65 +radicales radical adj f p 6.25 8.11 0.33 0.27 +radicalisation radicalisation nom f s 0.1 0.14 0.1 0.14 +radicaliser radicaliser ver 0.02 0 0.01 0 inf; +radicalisme radicalisme nom m s 0.02 0.47 0.02 0.47 +radicalisé radicaliser ver m s 0.02 0 0.01 0 par:pas; +radicaux radical adj m p 6.25 8.11 1.22 1.76 +radical_socialiste radical_socialiste nom m p 0 0.34 0 0.27 +radicelles radicelle nom f p 0 0.74 0 0.74 +radiculaire radiculaire adj s 0.16 0.07 0.16 0.07 +radicule radicule nom f s 0.01 0.07 0.01 0 +radicules radicule nom f p 0.01 0.07 0 0.07 +radier radier ver 1.33 0.27 0.2 0.07 inf; +radiers radier nom m p 0.03 0.14 0 0.14 +radiesthésiste radiesthésiste nom s 0.14 0 0.14 0 +radieuse radieux adj f s 3.88 12.09 1.47 4.39 +radieusement radieusement adv 0.01 0.2 0.01 0.2 +radieuses radieux adj f p 3.88 12.09 0.22 1.15 +radieux radieux adj m 3.88 12.09 2.19 6.55 +radin radin adj m s 3.51 1.55 2.69 1.28 +radinait radiner ver 0.29 2.03 0 0.2 ind:imp:3s; +radine radin adj f s 3.51 1.55 0.5 0.2 +radinent radiner ver 0.29 2.03 0.01 0.47 ind:pre:3p; +radiner radiner ver 0.29 2.03 0.09 0.2 inf; +radinerie radinerie nom f s 0.02 0.07 0.02 0.07 +radines radin nom f p 1.1 0.34 0.1 0 +radinez radiner ver 0.29 2.03 0 0.07 imp:pre:2p; +radins radin adj m p 3.51 1.55 0.31 0.07 +radiné radiner ver m s 0.29 2.03 0.14 0.41 par:pas; +radinée radiner ver f s 0.29 2.03 0.02 0.07 par:pas; +radio radio nom s 78.23 55 71.31 50.54 +radio_isotope radio_isotope nom m s 0.04 0 0.04 0 +radio_réveil radio_réveil nom m s 0.1 0.14 0.1 0.14 +radio_taxi radio_taxi nom m s 0.14 0.07 0.14 0.07 +radioactif radioactif adj m s 2.65 0.68 1.11 0.47 +radioactifs radioactif adj m p 2.65 0.68 0.54 0.07 +radioactive radioactif adj f s 2.65 0.68 0.65 0.07 +radioactives radioactif adj f p 2.65 0.68 0.35 0.07 +radioactivité radioactivité nom f s 0.86 0.07 0.86 0.07 +radioamateur radioamateur nom m s 0.01 0 0.01 0 +radioastronome radioastronome nom s 0.01 0 0.01 0 +radiobalisage radiobalisage nom m s 0.01 0 0.01 0 +radiobalise radiobalise nom f s 0.07 0 0.07 0 +radiocassette radiocassette nom f s 0.02 0 0.02 0 +radiodiffusion radiodiffusion nom f s 0.01 0.14 0.01 0.14 +radiodiffusé radiodiffuser ver m s 0.03 0.68 0.03 0.47 par:pas; +radiodiffusée radiodiffuser ver f s 0.03 0.68 0 0.14 par:pas; +radiodiffusées radiodiffuser ver f p 0.03 0.68 0 0.07 par:pas; +radiogoniomètre radiogoniomètre nom m s 0.01 0 0.01 0 +radiogoniométrique radiogoniométrique adj s 0.1 0 0.1 0 +radiogramme radiogramme nom m s 0.11 0.07 0.11 0 +radiogrammes radiogramme nom m p 0.11 0.07 0 0.07 +radiographiant radiographier ver 0.1 0.34 0 0.07 par:pre; +radiographie radiographie nom f s 0.93 0.88 0.79 0.34 +radiographient radiographier ver 0.1 0.34 0 0.07 ind:pre:3p; +radiographier radiographier ver 0.1 0.34 0.04 0.07 inf; +radiographies radiographie nom f p 0.93 0.88 0.14 0.54 +radiographique radiographique adj f s 0.01 0 0.01 0 +radiographié radiographier ver m s 0.1 0.34 0.03 0.07 par:pas; +radiographiée radiographier ver f s 0.1 0.34 0.01 0 par:pas; +radiographiés radiographier ver m p 0.1 0.34 0 0.07 par:pas; +radioguidage radioguidage nom m s 0.02 0.07 0.02 0.07 +radioguidera radioguider ver 0.01 0 0.01 0 ind:fut:3s; +radiologie radiologie nom f s 1.16 0.07 1.16 0.07 +radiologique radiologique adj f s 0.09 0.07 0.09 0 +radiologiques radiologique adj f p 0.09 0.07 0 0.07 +radiologiste radiologiste nom s 0.05 0 0.05 0 +radiologue radiologue nom s 0.55 0.27 0.51 0.2 +radiologues radiologue nom p 0.55 0.27 0.04 0.07 +radiomètre radiomètre nom m s 0.01 0.07 0.01 0 +radiomètres radiomètre nom m p 0.01 0.07 0 0.07 +radiométrie radiométrie nom f s 0.01 0 0.01 0 +radiophare radiophare nom m s 0.01 0.07 0.01 0.07 +radiophonie radiophonie nom f s 0 0.27 0 0.27 +radiophonique radiophonique adj s 0.78 1.49 0.76 0.68 +radiophoniques radiophonique adj p 0.78 1.49 0.02 0.81 +radioréveil radioréveil nom m s 0.01 0 0.01 0 +radios radio nom p 78.23 55 6.92 4.46 +radioscopie radioscopie nom f s 0.03 0.14 0.03 0.14 +radioscopique radioscopique adj f s 0.01 0.07 0.01 0 +radioscopiques radioscopique adj p 0.01 0.07 0 0.07 +radiosonde radiosonde nom f s 0.01 0 0.01 0 +radiothérapie radiothérapie nom f s 0.21 0 0.21 0 +radiotélescope radiotélescope nom m s 0.1 0 0.09 0 +radiotélescopes radiotélescope nom m p 0.1 0 0.01 0 +radiotélégraphie radiotélégraphie nom f s 0 0.07 0 0.07 +radiotélégraphiste radiotélégraphiste nom s 0 0.14 0 0.14 +radiotéléphone radiotéléphone nom m s 0.03 0 0.02 0 +radiotéléphones radiotéléphone nom m p 0.03 0 0.01 0 +radiotéléphonie radiotéléphonie nom f s 0.1 0 0.1 0 +radiotéléphonique radiotéléphonique adj s 0.01 0 0.01 0 +radioélectrique radioélectrique adj s 0.01 0 0.01 0 +radioélément radioélément nom m s 0.01 0 0.01 0 +radis radis nom m 1.81 3.11 1.81 3.11 +radium radium nom m s 0.32 0.07 0.32 0.07 +radius radius nom m 0.15 0.07 0.15 0.07 +radié radier ver m s 1.33 0.27 0.98 0.14 par:pas; +radiée radier ver f s 1.33 0.27 0.09 0.07 par:pas; +radiés radié adj m p 0.18 0.07 0.14 0 +radja radja nom m s 0 0.07 0 0.07 +radjah radjah nom m s 0 0.14 0 0.07 +radjahs radjah nom m p 0 0.14 0 0.07 +radon radon nom m s 0.07 0 0.07 0 +radotage radotage nom m s 0.36 0.81 0.28 0.34 +radotages radotage nom m p 0.36 0.81 0.09 0.47 +radotait radoter ver 2.04 2.3 0 0.41 ind:imp:3s; +radotant radoter ver 2.04 2.3 0.03 0.27 par:pre; +radote radoter ver 2.04 2.3 0.69 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +radotent radoter ver 2.04 2.3 0.04 0.34 ind:pre:3p; +radoter radoter ver 2.04 2.3 0.59 0.41 inf; +radotes radoter ver 2.04 2.3 0.6 0.07 ind:pre:2s; +radoteur radoteur nom m s 0.22 0.27 0.21 0.07 +radoteurs radoteur nom m p 0.22 0.27 0.01 0.07 +radoteuses radoteur nom f p 0.22 0.27 0 0.14 +radotez radoter ver 2.04 2.3 0.1 0 ind:pre:2p; +radoté radoter ver m s 2.04 2.3 0 0.14 par:pas; +radoub radoub nom m s 0.03 0.41 0.03 0.41 +radoubait radouber ver 0.11 0.14 0 0.07 ind:imp:3s; +radouber radouber ver 0.11 0.14 0.11 0.07 inf; +radoubeur radoubeur nom m s 0 0.07 0 0.07 +radouci radoucir ver m s 0.29 2.09 0.12 0.54 par:pas; +radoucie radoucir ver f s 0.29 2.09 0.03 0.61 par:pas; +radoucir radoucir ver 0.29 2.09 0.07 0 inf; +radouciraient radoucir ver 0.29 2.09 0 0.07 cnd:pre:3p; +radoucis radoucir ver m p 0.29 2.09 0.04 0.14 ind:pre:1s;ind:pre:2s;par:pas; +radoucissais radoucir ver 0.29 2.09 0 0.07 ind:imp:1s; +radoucissait radoucir ver 0.29 2.09 0 0.07 ind:imp:3s; +radoucissement radoucissement nom m s 0 0.07 0 0.07 +radoucit radoucir ver 0.29 2.09 0.03 0.61 ind:pre:3s;ind:pas:3s; +rads rad nom m p 0.2 0.07 0.02 0 +radôme radôme nom m s 0.01 0 0.01 0 +rafa rafer ver 2.44 0 2.11 0 ind:pas:3s; +rafale rafale nom f s 1.59 19.46 0.79 8.85 +rafales rafale nom f p 1.59 19.46 0.81 10.61 +rafe rafer ver 2.44 0 0.33 0 imp:pre:2s; +raff raff nom m s 0.09 0 0.09 0 +raffermi raffermir ver m s 0.23 1.82 0.01 0.14 par:pas; +raffermie raffermir ver f s 0.23 1.82 0.01 0.27 par:pas; +raffermir raffermir ver 0.23 1.82 0.18 0.68 inf; +raffermira raffermir ver 0.23 1.82 0.03 0 ind:fut:3s; +raffermis raffermir ver m p 0.23 1.82 0 0.07 par:pas; +raffermissait raffermir ver 0.23 1.82 0 0.2 ind:imp:3s; +raffermissent raffermir ver 0.23 1.82 0 0.07 ind:pre:3p; +raffermit raffermir ver 0.23 1.82 0 0.41 ind:pre:3s;ind:pas:3s; +raffinage raffinage nom m s 0.01 0.07 0.01 0.07 +raffinait raffiner ver 1.06 2.03 0 0.14 ind:imp:3s; +raffinant raffiner ver 1.06 2.03 0 0.2 par:pre; +raffine raffiner ver 1.06 2.03 0.05 0.2 imp:pre:2s;ind:pre:3s; +raffinement raffinement nom m s 0.89 7.36 0.73 5.07 +raffinements raffinement nom m p 0.89 7.36 0.16 2.3 +raffiner raffiner ver 1.06 2.03 0.06 0.2 inf; +raffinerie raffinerie nom f s 0.85 1.01 0.73 0.88 +raffineries raffinerie nom f p 0.85 1.01 0.12 0.14 +raffineur raffineur nom m s 0.03 0 0.03 0 +raffiné raffiné adj m s 4.34 6.15 1.8 2.7 +raffinée raffiné adj f s 4.34 6.15 1.23 1.55 +raffinées raffiné adj f p 4.34 6.15 0.33 0.61 +raffinés raffiné adj m p 4.34 6.15 0.97 1.28 +raffolaient raffoler ver 3.16 3.85 0.01 0.14 ind:imp:3p; +raffolais raffoler ver 3.16 3.85 0.02 0.2 ind:imp:1s; +raffolait raffoler ver 3.16 3.85 0.19 1.62 ind:imp:3s; +raffolant raffoler ver 3.16 3.85 0.01 0 par:pre; +raffole raffoler ver 3.16 3.85 1.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raffolent raffoler ver 3.16 3.85 0.94 0.68 ind:pre:3p; +raffoler raffoler ver 3.16 3.85 0.05 0.27 inf; +raffoleront raffoler ver 3.16 3.85 0.01 0.07 ind:fut:3p; +raffoles raffoler ver 3.16 3.85 0.23 0.07 ind:pre:2s; +raffolez raffoler ver 3.16 3.85 0.04 0 ind:pre:2p; +raffoliez raffoler ver 3.16 3.85 0 0.07 ind:imp:2p; +raffolé raffoler ver m s 3.16 3.85 0.02 0 par:pas; +raffut raffut nom m s 1.56 1.69 1.56 1.49 +raffuts raffut nom m p 1.56 1.69 0.01 0.2 +rafiau rafiau nom m s 0 0.07 0 0.07 +rafiot rafiot nom m s 1.08 1.42 0.91 1.22 +rafiots rafiot nom m p 1.08 1.42 0.17 0.2 +rafistola rafistoler ver 0.61 3.31 0 0.2 ind:pas:3s; +rafistolage rafistolage nom m s 0.05 0.27 0.04 0.14 +rafistolages rafistolage nom m p 0.05 0.27 0.01 0.14 +rafistolaient rafistoler ver 0.61 3.31 0 0.27 ind:imp:3p; +rafistolais rafistoler ver 0.61 3.31 0.01 0.07 ind:imp:1s; +rafistolait rafistoler ver 0.61 3.31 0.01 0.27 ind:imp:3s; +rafistole rafistoler ver 0.61 3.31 0.19 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rafistoler rafistoler ver 0.61 3.31 0.12 0.34 inf; +rafistolez rafistoler ver 0.61 3.31 0.05 0 imp:pre:2p;ind:pre:2p; +rafistolé rafistoler ver m s 0.61 3.31 0.13 0.74 par:pas; +rafistolée rafistoler ver f s 0.61 3.31 0.04 0.54 par:pas; +rafistolées rafistoler ver f p 0.61 3.31 0.04 0.2 par:pas; +rafistolés rafistoler ver m p 0.61 3.31 0.01 0.41 par:pas; +rafla rafler ver 3.56 5.2 0.01 0.41 ind:pas:3s; +raflais rafler ver 3.56 5.2 0.01 0.14 ind:imp:1s; +raflait rafler ver 3.56 5.2 0.05 0.27 ind:imp:3s; +raflant rafler ver 3.56 5.2 0.01 0.2 par:pre; +rafle rafle nom f s 1.23 3.11 0.78 1.96 +raflent rafler ver 3.56 5.2 0.41 0.07 ind:pre:3p; +rafler rafler ver 3.56 5.2 0.81 1.42 inf; +raflera rafler ver 3.56 5.2 0.06 0.07 ind:fut:3s; +raflerai rafler ver 3.56 5.2 0.02 0 ind:fut:1s; +raflerait rafler ver 3.56 5.2 0.02 0.07 cnd:pre:3s; +rafles rafle nom f p 1.23 3.11 0.46 1.15 +raflez rafler ver 3.56 5.2 0.04 0 imp:pre:2p;ind:pre:2p; +raflé rafler ver m s 3.56 5.2 1.09 1.49 par:pas; +raflée rafler ver f s 3.56 5.2 0.16 0.07 par:pas; +raflées rafler ver f p 3.56 5.2 0.03 0.14 par:pas; +raflés rafler ver m p 3.56 5.2 0 0.27 par:pas; +rafraîchi rafraîchir ver m s 8.94 10.41 0.44 1.01 par:pas; +rafraîchie rafraîchir ver f s 8.94 10.41 0.04 0.47 par:pas; +rafraîchies rafraîchir ver f p 8.94 10.41 0 0.27 par:pas; +rafraîchir rafraîchir ver 8.94 10.41 4.61 4.19 inf; +rafraîchira rafraîchir ver 8.94 10.41 0.25 0.14 ind:fut:3s; +rafraîchirais rafraîchir ver 8.94 10.41 0.01 0 cnd:pre:1s; +rafraîchirait rafraîchir ver 8.94 10.41 0.06 0.07 cnd:pre:3s; +rafraîchirent rafraîchir ver 8.94 10.41 0 0.07 ind:pas:3p; +rafraîchiront rafraîchir ver 8.94 10.41 0.04 0 ind:fut:3p; +rafraîchis rafraîchir ver m p 8.94 10.41 0.9 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rafraîchissaient rafraîchir ver 8.94 10.41 0 0.34 ind:imp:3p; +rafraîchissais rafraîchir ver 8.94 10.41 0.14 0.14 ind:imp:1s;ind:imp:2s; +rafraîchissait rafraîchir ver 8.94 10.41 0.02 1.08 ind:imp:3s; +rafraîchissant rafraîchissant adj m s 0.72 2.16 0.5 1.08 +rafraîchissante rafraîchissant adj f s 0.72 2.16 0.16 0.47 +rafraîchissantes rafraîchissant adj f p 0.72 2.16 0.03 0.34 +rafraîchissants rafraîchissant adj m p 0.72 2.16 0.02 0.27 +rafraîchisse rafraîchir ver 8.94 10.41 0.49 0.14 sub:pre:1s;sub:pre:3s; +rafraîchissement rafraîchissement nom m s 2.48 1.62 1.39 0.54 +rafraîchissements rafraîchissement nom m p 2.48 1.62 1.09 1.08 +rafraîchissent rafraîchir ver 8.94 10.41 0.01 0.14 ind:pre:3p; +rafraîchisseur rafraîchisseur nom m s 0 0.07 0 0.07 +rafraîchissez rafraîchir ver 8.94 10.41 0.19 0 imp:pre:2p;ind:pre:2p; +rafraîchissoir rafraîchissoir nom m s 0 1.28 0 1.01 +rafraîchissoirs rafraîchissoir nom m p 0 1.28 0 0.27 +rafraîchissons rafraîchir ver 8.94 10.41 0.12 0 imp:pre:1p; +rafraîchit rafraîchir ver 8.94 10.41 1.5 1.35 ind:pre:3s;ind:pas:3s; +raft raft nom m s 0.1 0.07 0.1 0.07 +rafting rafting nom m s 0.22 0 0.22 0 +rag rag nom m s 0.01 0 0.01 0 +raga raga nom m s 0.1 0 0.1 0 +ragaillardi ragaillardir ver m s 0.06 2.57 0.01 1.35 par:pas; +ragaillardie ragaillardir ver f s 0.06 2.57 0 0.27 par:pas; +ragaillardir ragaillardir ver 0.06 2.57 0.02 0.07 inf; +ragaillardira ragaillardir ver 0.06 2.57 0 0.07 ind:fut:3s; +ragaillardirait ragaillardir ver 0.06 2.57 0 0.07 cnd:pre:3s; +ragaillardis ragaillardir ver m p 0.06 2.57 0.02 0.2 ind:pas:2s;par:pas; +ragaillardissaient ragaillardir ver 0.06 2.57 0 0.07 ind:imp:3p; +ragaillardisse ragaillardir ver 0.06 2.57 0 0.07 sub:pre:1s; +ragaillardit ragaillardir ver 0.06 2.57 0 0.41 ind:pre:3s;ind:pas:3s; +rage rage nom f s 15.97 45.34 15.54 44.12 +ragea rager ver 0.71 2.64 0 0.81 ind:pas:3s; +rageaient rager ver 0.71 2.64 0 0.14 ind:imp:3p; +rageais rager ver 0.71 2.64 0.01 0.2 ind:imp:1s; +rageait rager ver 0.71 2.64 0.02 0.54 ind:imp:3s; +rageant rageant adj m s 0.25 0.2 0.25 0.2 +ragent rager ver 0.71 2.64 0.02 0 ind:pre:3p; +rager rager ver 0.71 2.64 0.09 0.27 inf; +rages rage nom f p 15.97 45.34 0.44 1.22 +rageur rageur adj m s 0.07 9.26 0.05 4.46 +rageurs rageur adj m p 0.07 9.26 0.01 1.62 +rageuse rageur adj f s 0.07 9.26 0.01 2.57 +rageusement rageusement adv 0.03 5.61 0.03 5.61 +rageuses rageur adj f p 0.07 9.26 0 0.61 +ragez rager ver 0.71 2.64 0.02 0 imp:pre:2p;ind:pre:2p; +raglan raglan nom m s 0 0.54 0 0.47 +raglans raglan nom m p 0 0.54 0 0.07 +ragnagnas ragnagnas nom m p 0.21 0.07 0.21 0.07 +ragondins ragondin nom m p 0.28 0.14 0.28 0.14 +ragot ragot nom m s 5.67 4.32 0.07 0.54 +ragota ragoter ver 0.04 0.27 0 0.07 ind:pas:3s; +ragotait ragoter ver 0.04 0.27 0 0.07 ind:imp:3s; +ragote ragoter ver 0.04 0.27 0.01 0 ind:pre:3s; +ragoter ragoter ver 0.04 0.27 0.03 0.14 inf; +ragots ragot nom m p 5.67 4.32 5.6 3.78 +ragougnasse ragougnasse nom f s 0.23 0.14 0.23 0.07 +ragougnasses ragougnasse nom f p 0.23 0.14 0 0.07 +ragoût ragoût nom m s 3.44 4.46 3.37 3.65 +ragoûtant ragoûtant adj m s 0.08 1.22 0.04 0.61 +ragoûtante ragoûtant adj f s 0.08 1.22 0.01 0.14 +ragoûtantes ragoûtant adj f p 0.08 1.22 0.01 0.2 +ragoûtants ragoûtant adj m p 0.08 1.22 0.01 0.27 +ragoûts ragoût nom m p 3.44 4.46 0.07 0.81 +ragrafait ragrafer ver 0 0.2 0 0.07 ind:imp:3s; +ragrafant ragrafer ver 0 0.2 0 0.07 par:pre; +ragrafe ragrafer ver 0 0.2 0 0.07 ind:pre:1s; +ragtime ragtime nom m s 0.13 0 0.13 0 +rahat_lokoum rahat_lokoum nom m s 0 0.47 0 0.41 +rahat_lokoum rahat_lokoum nom m p 0 0.47 0 0.07 +rahat_loukoum rahat_loukoum nom m p 0 0.07 0 0.07 +rai rai nom m s 2.5 5.41 1.57 3.31 +raid raid nom m s 3.98 2.84 2.82 1.62 +raide raide adj s 7.76 39.39 6.61 24.53 +raidement raidement adv 0 0.14 0 0.14 +raider raider nom m s 1.57 0.41 0.9 0 +raiders raider nom m p 1.57 0.41 0.67 0.41 +raides raide adj p 7.76 39.39 1.15 14.86 +raideur raideur nom f s 0.62 7.03 0.62 7.03 +raidi raidir ver m s 0.57 19.59 0.03 3.04 par:pas; +raidie raidir ver f s 0.57 19.59 0 2.09 par:pas; +raidies raidir ver f p 0.57 19.59 0.01 1.49 par:pas; +raidillon raidillon nom m s 0 4.12 0 3.31 +raidillons raidillon nom m p 0 4.12 0 0.81 +raidir raidir ver 0.57 19.59 0.17 1.55 inf; +raidirent raidir ver 0.57 19.59 0 0.2 ind:pas:3p; +raidis raidir ver m p 0.57 19.59 0.03 2.23 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +raidissaient raidir ver 0.57 19.59 0 0.27 ind:imp:3p; +raidissais raidir ver 0.57 19.59 0 0.2 ind:imp:1s; +raidissait raidir ver 0.57 19.59 0 1.49 ind:imp:3s; +raidissant raidir ver 0.57 19.59 0 0.68 par:pre; +raidisse raidir ver 0.57 19.59 0.01 0.34 sub:pre:1s;sub:pre:3s; +raidissement raidissement nom m s 0 0.61 0 0.47 +raidissements raidissement nom m p 0 0.61 0 0.14 +raidissent raidir ver 0.57 19.59 0.04 0.41 ind:pre:3p; +raidissez raidir ver 0.57 19.59 0.02 0.07 imp:pre:2p;ind:pre:2p; +raidit raidir ver 0.57 19.59 0.27 5.54 ind:pre:3s;ind:pas:3s; +raids raid nom m p 3.98 2.84 1.16 1.22 +raie raie nom f s 2.49 11.01 1.71 7.5 +raient rayer ver 7.42 11.22 0 0.27 ind:pre:3p; +raies raie nom f p 2.49 11.01 0.78 3.51 +raifort raifort nom m s 0.21 0.27 0.21 0.27 +rail rail nom m s 9.31 16.22 1.7 2.5 +railla railler ver 2.77 3.31 0 0.61 ind:pas:3s; +raillaient railler ver 2.77 3.31 0 0.27 ind:imp:3p; +raillait railler ver 2.77 3.31 0.03 0.2 ind:imp:3s; +raillant railler ver 2.77 3.31 0.34 0.07 par:pre; +raille railler ver 2.77 3.31 0.38 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +railler railler ver 2.77 3.31 0.7 0.88 inf; +raillera railler ver 2.77 3.31 0.01 0 ind:fut:3s; +raillerai railler ver 2.77 3.31 0.01 0 ind:fut:1s; +raillerie raillerie nom f s 0.9 3.04 0.54 1.15 +railleries raillerie nom f p 0.9 3.04 0.36 1.89 +railleur railleur nom m s 0.17 0.14 0.16 0.07 +railleurs railleur nom m p 0.17 0.14 0.01 0.07 +railleuse railleur adj f s 0.04 1.89 0.01 0.54 +railleuses railleur adj f p 0.04 1.89 0 0.07 +raillez railler ver 2.77 3.31 0.47 0.2 imp:pre:2p;ind:pre:2p; +raillèrent railler ver 2.77 3.31 0 0.14 ind:pas:3p; +raillé railler ver m s 2.77 3.31 0.81 0.61 par:pas; +raillée railler ver f s 2.77 3.31 0.02 0 par:pas; +raillés railler ver m p 2.77 3.31 0 0.14 par:pas; +rails rail nom m p 9.31 16.22 7.61 13.72 +railway railway nom m s 0 0.07 0 0.07 +rain rain nom m s 1.03 0 1.03 0 +raine rainer ver 0.82 0.27 0 0.14 ind:pre:3s; +rainer rainer ver 0.82 0.27 0 0.07 inf; +raines rainer ver 0.82 0.27 0.82 0.07 ind:pre:2s; +rainette rainette nom f s 0.04 0.88 0.04 0.41 +rainettes rainette nom f p 0.04 0.88 0 0.47 +raineuse raineuse nom f s 0 0.07 0 0.07 +rainure rainure nom f s 0.43 3.51 0.2 1.42 +rainurer rainurer ver 0.01 0.2 0 0.07 inf; +rainures rainure nom f p 0.43 3.51 0.23 2.09 +rainuré rainurer ver m s 0.01 0.2 0.01 0 par:pas; +rainurés rainurer ver m p 0.01 0.2 0 0.14 par:pas; +raiponce raiponce nom f s 0.03 0 0.03 0 +raire raire ver 0.31 2.09 0.01 0.07 inf; +rais rai nom m p 2.5 5.41 0.93 2.09 +raisin raisin nom m s 9.4 9.53 5.88 4.86 +raisinets raisinet nom m p 0.02 0 0.02 0 +raisins raisin nom m p 9.4 9.53 3.52 4.66 +raisiné raisiné nom m s 0.01 1.35 0.01 1.35 +raison raison nom f s 467.94 308.78 424.28 247.5 +raisonna raisonner ver 8.72 10.27 0 0.47 ind:pas:3s; +raisonnable raisonnable adj s 28.25 23.51 25.04 19.39 +raisonnablement raisonnablement adv 1.03 2.36 1.03 2.36 +raisonnables raisonnable adj p 28.25 23.51 3.21 4.12 +raisonnai raisonner ver 8.72 10.27 0 0.07 ind:pas:1s; +raisonnaient raisonner ver 8.72 10.27 0 0.14 ind:imp:3p; +raisonnais raisonner ver 8.72 10.27 0.07 0.47 ind:imp:1s; +raisonnait raisonner ver 8.72 10.27 0.01 0.81 ind:imp:3s; +raisonnant raisonner ver 8.72 10.27 0.16 0.2 par:pre; +raisonnante raisonnant adj f s 0 0.07 0 0.07 +raisonnassent raisonner ver 8.72 10.27 0 0.07 sub:imp:3p; +raisonne raisonner ver 8.72 10.27 1.5 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raisonnement raisonnement nom m s 4.16 11.35 3.69 7.91 +raisonnements raisonnement nom m p 4.16 11.35 0.47 3.45 +raisonnent raisonner ver 8.72 10.27 0.31 0.2 ind:pre:3p; +raisonner raisonner ver 8.72 10.27 4.66 5.27 inf; +raisonnes raisonner ver 8.72 10.27 0.35 0.27 ind:pre:2s; +raisonneur raisonneur nom m s 0.17 0.34 0.17 0.07 +raisonneurs raisonneur nom m p 0.17 0.34 0 0.2 +raisonneuse raisonneur adj f s 0 0.54 0 0.14 +raisonnez raisonner ver 8.72 10.27 0.77 0.14 imp:pre:2p;ind:pre:2p; +raisonniez raisonner ver 8.72 10.27 0 0.14 ind:imp:2p; +raisonnons raisonner ver 8.72 10.27 0.47 0.2 imp:pre:1p;ind:pre:1p; +raisonné raisonné adj m s 0.51 0.68 0.5 0.27 +raisonnée raisonner ver f s 8.72 10.27 0.02 0.14 par:pas; +raisons raison nom f p 467.94 308.78 43.67 61.28 +rait raire ver m s 0.31 2.09 0.29 2.03 ind:pre:3s;par:pas; +raites raire ver f p 0.31 2.09 0.01 0 par:pas; +raja raja nom m s 0.03 0 0.03 0 +rajah rajah nom m s 0.06 0.2 0.04 0.07 +rajahs rajah nom m p 0.06 0.2 0.01 0.14 +rajeuni rajeunir ver m s 5.2 7.91 1.1 2.16 par:pas; +rajeunie rajeunir ver f s 5.2 7.91 0.2 0.88 par:pas; +rajeunies rajeunir ver f p 5.2 7.91 0 0.07 par:pas; +rajeunir rajeunir ver 5.2 7.91 1.26 0.88 inf; +rajeunira rajeunir ver 5.2 7.91 0.03 0 ind:fut:3s; +rajeunirai rajeunir ver 5.2 7.91 0.01 0 ind:fut:1s; +rajeunirait rajeunir ver 5.2 7.91 0.02 0.07 cnd:pre:3s; +rajeunirez rajeunir ver 5.2 7.91 0.01 0.07 ind:fut:2p; +rajeunis rajeunir ver m p 5.2 7.91 1.11 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rajeunissaient rajeunir ver 5.2 7.91 0 0.14 ind:imp:3p; +rajeunissais rajeunir ver 5.2 7.91 0.01 0.07 ind:imp:1s; +rajeunissait rajeunir ver 5.2 7.91 0.04 1.22 ind:imp:3s; +rajeunissant rajeunissant adj m s 0.04 0 0.02 0 +rajeunissante rajeunissant adj f s 0.04 0 0.02 0 +rajeunisse rajeunir ver 5.2 7.91 0 0.07 sub:pre:3s; +rajeunissement rajeunissement nom m s 0.26 0.68 0.26 0.68 +rajeunissent rajeunir ver 5.2 7.91 0.03 0.14 ind:pre:3p; +rajeunisseurs rajeunisseur nom m p 0 0.07 0 0.07 +rajeunissez rajeunir ver 5.2 7.91 0.17 0 ind:pre:2p; +rajeunissons rajeunir ver 5.2 7.91 0 0.07 ind:pre:1p; +rajeunit rajeunir ver 5.2 7.91 1.2 1.49 ind:pre:3s;ind:pas:3s; +rajout rajout nom m s 0.27 0.2 0.23 0.07 +rajouta rajouter ver 13.09 9.32 0.01 0.54 ind:pas:3s; +rajoutaient rajouter ver 13.09 9.32 0.12 0.14 ind:imp:3p; +rajoutais rajouter ver 13.09 9.32 0.01 0.41 ind:imp:1s;ind:imp:2s; +rajoutait rajouter ver 13.09 9.32 0.05 1.01 ind:imp:3s; +rajoutant rajouter ver 13.09 9.32 0.16 0.2 par:pre; +rajoute rajouter ver 13.09 9.32 4.11 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rajoutent rajouter ver 13.09 9.32 0.19 0.14 ind:pre:3p; +rajouter rajouter ver 13.09 9.32 3.73 2.3 inf; +rajoutera rajouter ver 13.09 9.32 0.15 0 ind:fut:3s; +rajouterais rajouter ver 13.09 9.32 0.15 0.07 cnd:pre:1s; +rajouterait rajouter ver 13.09 9.32 0.01 0.07 cnd:pre:3s; +rajouteras rajouter ver 13.09 9.32 0.1 0.07 ind:fut:2s; +rajouterez rajouter ver 13.09 9.32 0 0.07 ind:fut:2p; +rajoutes rajouter ver 13.09 9.32 1.04 0.07 ind:pre:2s; +rajoutez rajouter ver 13.09 9.32 0.75 0.2 imp:pre:2p;ind:pre:2p; +rajoutons rajouter ver 13.09 9.32 0.07 0 imp:pre:1p; +rajouts rajout nom m p 0.27 0.2 0.04 0.14 +rajouté rajouter ver m s 13.09 9.32 2.13 1.35 par:pas; +rajoutée rajouter ver f s 13.09 9.32 0.12 0.07 par:pas; +rajoutées rajouter ver f p 13.09 9.32 0.01 0.2 par:pas; +rajoutés rajouter ver m p 13.09 9.32 0.15 0.07 par:pas; +rajusta rajuster ver 0.41 6.08 0 0.95 ind:pas:3s; +rajustaient rajuster ver 0.41 6.08 0 0.2 ind:imp:3p; +rajustais rajuster ver 0.41 6.08 0 0.07 ind:imp:1s; +rajustait rajuster ver 0.41 6.08 0 0.47 ind:imp:3s; +rajustant rajuster ver 0.41 6.08 0.1 1.15 par:pre; +rajuste rajuster ver 0.41 6.08 0.02 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rajustement rajustement nom m s 0 0.2 0 0.2 +rajustent rajuster ver 0.41 6.08 0.27 0.14 ind:pre:3p; +rajuster rajuster ver 0.41 6.08 0.02 1.01 inf; +rajusteront rajuster ver 0.41 6.08 0 0.07 ind:fut:3p; +rajusté rajuster ver m s 0.41 6.08 0 0.54 par:pas; +rajustée rajuster ver f s 0.41 6.08 0 0.07 par:pas; +rajustées rajuster ver f p 0.41 6.08 0 0.14 par:pas; +raki raki nom m s 0.28 1.15 0.28 1.15 +ralbol ralbol nom m s 0 0.2 0 0.2 +ralenti ralenti nom m s 9.2 10.61 3.08 10.2 +ralentie ralentir ver f s 17.42 30.95 0.22 1.49 par:pas; +ralenties ralentir ver f p 17.42 30.95 0.17 0.07 par:pas; +ralentir ralentir ver 17.42 30.95 5.25 5.2 inf; +ralentira ralentir ver 17.42 30.95 0.31 0.2 ind:fut:3s; +ralentirai ralentir ver 17.42 30.95 0.24 0 ind:fut:1s; +ralentiraient ralentir ver 17.42 30.95 0.03 0 cnd:pre:3p; +ralentirais ralentir ver 17.42 30.95 0.04 0 cnd:pre:1s;cnd:pre:2s; +ralentirait ralentir ver 17.42 30.95 0.3 0.2 cnd:pre:3s; +ralentirent ralentir ver 17.42 30.95 0.02 0.61 ind:pas:3p; +ralentirez ralentir ver 17.42 30.95 0.02 0.07 ind:fut:2p; +ralentiriez ralentir ver 17.42 30.95 0.01 0 cnd:pre:2p; +ralentiront ralentir ver 17.42 30.95 0.07 0 ind:fut:3p; +ralentis ralenti nom m p 9.2 10.61 6.12 0.41 +ralentissaient ralentir ver 17.42 30.95 0.04 1.22 ind:imp:3p; +ralentissais ralentir ver 17.42 30.95 0.17 0.34 ind:imp:1s;ind:imp:2s; +ralentissait ralentir ver 17.42 30.95 0.2 2.23 ind:imp:3s; +ralentissant ralentir ver 17.42 30.95 0.04 1.82 par:pre; +ralentisse ralentir ver 17.42 30.95 0.29 0.34 sub:pre:1s;sub:pre:3s; +ralentissement ralentissement nom m s 0.38 1.89 0.34 1.55 +ralentissements ralentissement nom m p 0.38 1.89 0.03 0.34 +ralentissent ralentir ver 17.42 30.95 0.83 0.68 ind:pre:3p; +ralentisseur ralentisseur nom m s 0.09 0 0.04 0 +ralentisseurs ralentisseur nom m p 0.09 0 0.04 0 +ralentissez ralentir ver 17.42 30.95 1.94 0.14 imp:pre:2p;ind:pre:2p; +ralentissiez ralentir ver 17.42 30.95 0.04 0 ind:imp:2p; +ralentissions ralentir ver 17.42 30.95 0.02 0 ind:imp:1p; +ralentissons ralentir ver 17.42 30.95 0.27 0.07 imp:pre:1p;ind:pre:1p; +ralentit ralentir ver 17.42 30.95 3.23 10.68 ind:pre:3s;ind:pas:3s; +ralentît ralentir ver 17.42 30.95 0 0.07 sub:imp:3s; +ralingue ralingue nom f s 0 0.14 0 0.07 +ralingues ralingue nom f p 0 0.14 0 0.07 +raller raller ver 0.01 0.27 0.01 0.07 inf; +rallia rallier ver 2.35 13.78 0.1 0.41 ind:pas:3s; +ralliai rallier ver 2.35 13.78 0 0.2 ind:pas:1s; +ralliaient rallier ver 2.35 13.78 0 0.41 ind:imp:3p; +ralliais rallier ver 2.35 13.78 0 0.2 ind:imp:1s; +ralliait rallier ver 2.35 13.78 0.03 1.01 ind:imp:3s; +ralliant rallier ver 2.35 13.78 0.11 0.34 par:pre; +ralliassent rallier ver 2.35 13.78 0 0.07 sub:imp:3p; +rallie rallier ver 2.35 13.78 0.37 0.54 ind:pre:1s;ind:pre:3s; +ralliement ralliement nom m s 1.16 8.18 1.16 7.5 +ralliements ralliement nom m p 1.16 8.18 0 0.68 +rallient rallier ver 2.35 13.78 0.07 0.74 ind:pre:3p; +rallier rallier ver 2.35 13.78 0.89 4.86 inf; +ralliera rallier ver 2.35 13.78 0.06 0.14 ind:fut:3s; +rallierai rallier ver 2.35 13.78 0.02 0 ind:fut:1s; +rallieraient rallier ver 2.35 13.78 0.01 0.2 cnd:pre:3p; +rallierait rallier ver 2.35 13.78 0.02 0.07 cnd:pre:3s; +rallieriez rallier ver 2.35 13.78 0 0.07 cnd:pre:2p; +rallierons rallier ver 2.35 13.78 0.04 0 ind:fut:1p; +rallieront rallier ver 2.35 13.78 0.01 0.07 ind:fut:3p; +rallies rallier ver 2.35 13.78 0.03 0.07 ind:pre:2s; +ralliez rallier ver 2.35 13.78 0.08 0.07 imp:pre:2p;ind:pre:2p; +rallions raller ver 0.01 0.27 0 0.2 ind:imp:1p; +rallièrent rallier ver 2.35 13.78 0.01 0.14 ind:pas:3p; +rallié rallier ver m s 2.35 13.78 0.17 2.5 par:pas; +ralliée rallier ver f s 2.35 13.78 0.14 0.27 par:pas; +ralliées rallier ver f p 2.35 13.78 0.14 0.2 par:pas; +ralliés rallié adj m p 0.11 0.81 0.1 0.54 +rallonge rallonge nom f s 0.91 2.09 0.72 1.22 +rallongea rallonger ver 1.45 1.35 0 0.14 ind:pas:3s; +rallongeaient rallonger ver 1.45 1.35 0.1 0 ind:imp:3p; +rallongeait rallonger ver 1.45 1.35 0.01 0.14 ind:imp:3s; +rallongement rallongement nom m s 0.01 0 0.01 0 +rallongent rallonger ver 1.45 1.35 0.03 0.14 ind:pre:3p; +rallonger rallonger ver 1.45 1.35 0.56 0.27 inf; +rallongerait rallonger ver 1.45 1.35 0.01 0 cnd:pre:3s; +rallonges rallonge nom f p 0.91 2.09 0.2 0.88 +rallongez rallonger ver 1.45 1.35 0.17 0 imp:pre:2p; +rallongé rallonger ver m s 1.45 1.35 0.07 0.27 par:pas; +rallongée rallonger ver f s 1.45 1.35 0.01 0.2 par:pas; +ralluma rallumer ver 4.85 8.99 0 2.03 ind:pas:3s; +rallumage rallumage nom m s 0.01 0.07 0.01 0.07 +rallumai rallumer ver 4.85 8.99 0 0.07 ind:pas:1s; +rallumaient rallumer ver 4.85 8.99 0.11 0.2 ind:imp:3p; +rallumais rallumer ver 4.85 8.99 0 0.07 ind:imp:1s; +rallumait rallumer ver 4.85 8.99 0.01 0.88 ind:imp:3s; +rallumant rallumer ver 4.85 8.99 0.01 0.54 par:pre; +rallume rallumer ver 4.85 8.99 1.88 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rallument rallumer ver 4.85 8.99 0.12 0.2 ind:pre:3p; +rallumer rallumer ver 4.85 8.99 1.5 2.36 inf; +rallumerai rallumer ver 4.85 8.99 0.01 0 ind:fut:1s; +rallumeront rallumer ver 4.85 8.99 0.02 0 ind:fut:3p; +rallumes rallumer ver 4.85 8.99 0.17 0 ind:pre:2s; +rallumez rallumer ver 4.85 8.99 0.42 0 imp:pre:2p;ind:pre:2p; +rallumons rallumer ver 4.85 8.99 0.2 0.07 imp:pre:1p;ind:pre:1p; +rallumèrent rallumer ver 4.85 8.99 0 0.14 ind:pas:3p; +rallumé rallumer ver m s 4.85 8.99 0.22 0.74 par:pas; +rallumée rallumer ver f s 4.85 8.99 0.12 0.27 par:pas; +rallumées rallumer ver f p 4.85 8.99 0.04 0.07 par:pas; +rallumés rallumer ver m p 4.85 8.99 0.01 0.14 par:pas; +rallye rallye nom m s 1.74 0.54 1.68 0.41 +rallyes rallye nom m p 1.74 0.54 0.06 0.14 +rallège ralléger ver 0 0.27 0 0.07 ind:pre:3s; +ralléger ralléger ver 0 0.27 0 0.14 inf; +rallégé ralléger ver m s 0 0.27 0 0.07 par:pas; +ram ram nom m s 0.11 0.07 0.11 0.07 +rama ramer ver 5.37 6.42 0.03 0.27 ind:pas:3s; +ramadan ramadan nom m s 1.07 0.95 1.07 0.95 +ramage ramage nom m s 0.16 2.57 0.16 0.61 +ramageait ramager ver 0 0.14 0 0.07 ind:imp:3s; +ramager ramager ver 0 0.14 0 0.07 inf; +ramages ramage nom m p 0.16 2.57 0 1.96 +ramai ramer ver 5.37 6.42 0 0.07 ind:pas:1s; +ramaient ramer ver 5.37 6.42 0.01 0.27 ind:imp:3p; +ramais ramer ver 5.37 6.42 0.04 0.27 ind:imp:1s; +ramait ramer ver 5.37 6.42 0.03 0.81 ind:imp:3s; +ramant ramer ver 5.37 6.42 0.02 0.41 par:pre; +ramarraient ramarrer ver 0 0.14 0 0.07 ind:imp:3p; +ramarrer ramarrer ver 0 0.14 0 0.07 inf; +ramas ramer ver 5.37 6.42 0.1 0 ind:pas:2s; +ramassa ramasser ver 43.76 74.8 0.26 11.82 ind:pas:3s; +ramassage ramassage nom m s 0.91 1.35 0.9 1.35 +ramassages ramassage nom m p 0.91 1.35 0.01 0 +ramassai ramasser ver 43.76 74.8 0.01 0.88 ind:pas:1s; +ramassaient ramasser ver 43.76 74.8 0.18 1.55 ind:imp:3p; +ramassais ramasser ver 43.76 74.8 0.81 1.08 ind:imp:1s;ind:imp:2s; +ramassait ramasser ver 43.76 74.8 0.66 4.93 ind:imp:3s; +ramassant ramasser ver 43.76 74.8 0.3 3.92 par:pre; +ramasse ramasser ver 43.76 74.8 13.87 10.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ramasse_miettes ramasse_miettes nom m 0.02 0.27 0.02 0.27 +ramasse_poussière ramasse_poussière nom m 0.02 0 0.02 0 +ramassent ramasser ver 43.76 74.8 0.86 1.76 ind:pre:3p; +ramasser ramasser ver 43.76 74.8 13.15 17.91 inf; +ramassera ramasser ver 43.76 74.8 0.25 0.27 ind:fut:3s; +ramasserai ramasser ver 43.76 74.8 0.14 0 ind:fut:1s; +ramasseraient ramasser ver 43.76 74.8 0 0.14 cnd:pre:3p; +ramasserais ramasser ver 43.76 74.8 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +ramasserait ramasser ver 43.76 74.8 0.04 0.41 cnd:pre:3s; +ramasseras ramasser ver 43.76 74.8 0.04 0.07 ind:fut:2s; +ramasseront ramasser ver 43.76 74.8 0.07 0.2 ind:fut:3p; +ramasses ramasser ver 43.76 74.8 1.61 0.2 ind:pre:2s; +ramasseur ramasseur nom m s 0.73 2.7 0.56 1.15 +ramasseurs ramasseur nom m p 0.73 2.7 0.17 1.42 +ramasseuse ramasseur nom f s 0.73 2.7 0 0.14 +ramassez ramasser ver 43.76 74.8 3.37 0.68 imp:pre:2p;ind:pre:2p; +ramassiez ramasser ver 43.76 74.8 0.05 0 ind:imp:2p; +ramassions ramasser ver 43.76 74.8 0 0.2 ind:imp:1p; +ramassis ramassis nom m 1.5 1.62 1.5 1.62 +ramassons ramasser ver 43.76 74.8 0.3 0.14 imp:pre:1p;ind:pre:1p; +ramassât ramasser ver 43.76 74.8 0 0.07 sub:imp:3s; +ramassèrent ramasser ver 43.76 74.8 0.01 1.35 ind:pas:3p; +ramassé ramasser ver m s 43.76 74.8 5.62 10.34 par:pas; +ramassée ramasser ver f s 43.76 74.8 1.07 2.91 par:pas; +ramassées ramasser ver f p 43.76 74.8 0.42 0.68 par:pas; +ramassés ramasser ver m p 43.76 74.8 0.59 2.57 par:pas; +rambarde rambarde nom f s 0.45 3.04 0.45 2.64 +rambardes rambarde nom f p 0.45 3.04 0 0.41 +rambin rambin nom m s 0 0.34 0 0.34 +rambinait rambiner ver 0 0.88 0 0.07 ind:imp:3s; +rambine rambiner ver 0 0.88 0 0.27 ind:pre:3s; +rambinent rambiner ver 0 0.88 0 0.07 ind:pre:3p; +rambiner rambiner ver 0 0.88 0 0.27 inf; +rambineur rambineur nom m s 0 0.07 0 0.07 +rambiné rambiner ver m s 0 0.88 0 0.2 par:pas; +rambla rambla nom f s 0 0.07 0 0.07 +rambot rambot nom m s 0.01 0.07 0.01 0.07 +rambour rambour nom m s 0 0.34 0 0.34 +ramdam ramdam nom m s 0.21 1.01 0.21 0.95 +ramdams ramdam nom m p 0.21 1.01 0 0.07 +rame rame nom f s 4.38 11.55 2.47 5.74 +rameau rameau nom m s 1.92 6.22 1.29 2.57 +rameaux rameau nom m p 1.92 6.22 0.63 3.65 +ramena ramener ver 172.7 109.26 0.7 9.86 ind:pas:3s; +ramenai ramener ver 172.7 109.26 0 0.61 ind:pas:1s; +ramenaient ramener ver 172.7 109.26 0.13 3.72 ind:imp:3p; +ramenais ramener ver 172.7 109.26 0.88 1.28 ind:imp:1s;ind:imp:2s; +ramenait ramener ver 172.7 109.26 1.76 12.57 ind:imp:3s; +ramenant ramener ver 172.7 109.26 0.66 4.59 par:pre; +ramenard ramenard adj m s 0.02 0.2 0.01 0.2 +ramenards ramenard adj m p 0.02 0.2 0.01 0 +ramendé ramender ver m s 0.01 0 0.01 0 par:pas; +ramener ramener ver 172.7 109.26 51.43 24.93 inf;;inf;;inf;;inf;; +ramenez ramener ver 172.7 109.26 13.02 1.08 imp:pre:2p;ind:pre:2p; +rameniez ramener ver 172.7 109.26 0.59 0 ind:imp:2p;sub:pre:2p; +ramenions ramener ver 172.7 109.26 0.05 0.2 ind:imp:1p; +ramenons ramener ver 172.7 109.26 1.6 0.27 imp:pre:1p;ind:pre:1p; +rament ramer ver 5.37 6.42 0.17 0.27 ind:pre:3p; +ramenâmes ramener ver 172.7 109.26 0.15 0.2 ind:pas:1p; +ramenât ramener ver 172.7 109.26 0 0.41 sub:imp:3s; +ramenèrent ramener ver 172.7 109.26 0.5 1.08 ind:pas:3p; +ramené ramener ver m s 172.7 109.26 23.84 13.31 par:pas; +ramenée ramener ver f s 172.7 109.26 5.25 4.93 par:pas; +ramenées ramener ver f p 172.7 109.26 0.5 1.01 par:pas; +ramenés ramener ver m p 172.7 109.26 1.27 3.78 par:pas; +ramer ramer ver 5.37 6.42 1.73 1.82 inf; +ramera ramer ver 5.37 6.42 0 0.07 ind:fut:3s; +rameras ramer ver 5.37 6.42 0.01 0 ind:fut:2s; +ramerons ramer ver 5.37 6.42 0.01 0.2 ind:fut:1p; +rameront ramer ver 5.37 6.42 0.01 0 ind:fut:3p; +rames rame nom f p 4.38 11.55 1.91 5.81 +ramette ramette nom f s 0 0.14 0 0.14 +rameur rameur nom m s 1 2.43 0.4 0.47 +rameurs rameur nom m p 1 2.43 0.6 1.96 +rameutais rameuter ver 0.72 2.43 0.01 0.07 ind:imp:1s; +rameutait rameuter ver 0.72 2.43 0 0.47 ind:imp:3s; +rameutant rameuter ver 0.72 2.43 0 0.07 par:pre; +rameute rameuter ver 0.72 2.43 0.23 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rameutent rameuter ver 0.72 2.43 0 0.07 ind:pre:3p; +rameuter rameuter ver 0.72 2.43 0.32 0.68 inf; +rameutez rameuter ver 0.72 2.43 0.06 0.14 imp:pre:2p;ind:pre:2p; +rameutons rameuter ver 0.72 2.43 0.02 0 imp:pre:1p;ind:pre:1p; +rameuté rameuter ver m s 0.72 2.43 0.07 0.14 par:pas; +rameutées rameuter ver f p 0.72 2.43 0 0.2 par:pas; +rameutés rameuter ver m p 0.72 2.43 0.01 0.34 par:pas; +ramez ramer ver 5.37 6.42 1.17 0 imp:pre:2p;ind:pre:2p; +rami rami nom m s 0.48 0.2 0.47 0.14 +ramier ramier adj m s 0.01 0.27 0.01 0 +ramiers ramier nom m p 0 1.01 0 0.47 +ramies ramie nom f p 0 0.07 0 0.07 +ramifia ramifier ver 0.06 0.74 0 0.07 ind:pas:3s; +ramifiaient ramifier ver 0.06 0.74 0 0.07 ind:imp:3p; +ramifiait ramifier ver 0.06 0.74 0 0.07 ind:imp:3s; +ramifiant ramifiant adj m s 0 0.54 0 0.54 +ramification ramification nom f s 0.5 1.42 0.05 0.07 +ramifications ramification nom f p 0.5 1.42 0.45 1.35 +ramifie ramifier ver 0.06 0.74 0.04 0 ind:pre:3s; +ramifient ramifier ver 0.06 0.74 0 0.07 ind:pre:3p; +ramifier ramifier ver 0.06 0.74 0 0.07 inf; +ramifié ramifier ver m s 0.06 0.74 0.02 0.2 par:pas; +ramifiée ramifié adj f s 0.04 0.61 0.02 0.27 +ramifiées ramifié adj f p 0.04 0.61 0.01 0.2 +ramifiés ramifié adj m p 0.04 0.61 0.01 0.07 +ramille ramille nom f s 0 0.54 0 0.07 +ramilles ramille nom f p 0 0.54 0 0.47 +raminagrobis raminagrobis nom m 0 0.14 0 0.14 +ramions ramer ver 5.37 6.42 0.01 0 ind:imp:1p; +ramis rami nom m p 0.48 0.2 0.01 0.07 +ramolli ramollir ver m s 2.3 1.49 0.26 0.27 par:pas; +ramollie ramolli adj f s 0.44 1.08 0.05 0.27 +ramollies ramollir ver f p 2.3 1.49 0.04 0.07 par:pas; +ramollir ramollir ver 2.3 1.49 0.53 0.27 inf; +ramollirent ramollir ver 2.3 1.49 0 0.07 ind:pas:3p; +ramollis ramollir ver m p 2.3 1.49 0.49 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +ramollissait ramollir ver 2.3 1.49 0.04 0.2 ind:imp:3s; +ramollisse ramollir ver 2.3 1.49 0.16 0 sub:pre:3s; +ramollissement ramollissement nom m s 0.12 0.2 0.12 0.2 +ramollissent ramollir ver 2.3 1.49 0.28 0 ind:pre:3p; +ramollit ramollir ver 2.3 1.49 0.47 0.41 ind:pre:3s;ind:pas:3s; +ramollo ramollo adj m s 0.32 0.27 0.23 0.2 +ramollos ramollo adj m p 0.32 0.27 0.09 0.07 +ramon ramon nom m s 0 0.14 0 0.14 +ramonage ramonage nom m s 0.02 0.34 0.02 0.27 +ramonages ramonage nom m p 0.02 0.34 0 0.07 +ramonait ramoner ver 0.6 1.55 0 0.14 ind:imp:3s; +ramonant ramoner ver 0.6 1.55 0 0.07 par:pre; +ramone ramoner ver 0.6 1.55 0.26 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ramonent ramoner ver 0.6 1.55 0 0.07 ind:pre:3p; +ramoner ramoner ver 0.6 1.55 0.17 0.61 inf; +ramones ramoner ver 0.6 1.55 0.02 0 ind:pre:2s; +ramoneur ramoneur nom m s 0.12 0.88 0.08 0.74 +ramoneurs ramoneur nom m p 0.12 0.88 0.03 0.14 +ramons ramer ver 5.37 6.42 0.04 0.07 imp:pre:1p;ind:pre:1p; +ramoné ramoner ver m s 0.6 1.55 0.03 0.07 par:pas; +ramonée ramoner ver f s 0.6 1.55 0.03 0.07 par:pas; +ramonées ramoner ver f p 0.6 1.55 0.1 0.07 par:pas; +rampa ramper ver 11.55 19.39 0.02 1.08 ind:pas:3s; +rampai ramper ver 11.55 19.39 0.01 0.2 ind:pas:1s; +rampaient ramper ver 11.55 19.39 0.27 0.95 ind:imp:3p; +rampais ramper ver 11.55 19.39 0.16 0.27 ind:imp:1s;ind:imp:2s; +rampait ramper ver 11.55 19.39 0.23 2.09 ind:imp:3s; +rampant ramper ver 11.55 19.39 1.51 3.51 par:pre; +rampante rampant adj f s 0.68 2.84 0.15 0.68 +rampantes rampant adj f p 0.68 2.84 0.2 0.68 +rampants rampant adj m p 0.68 2.84 0.19 0.68 +rampe rampe nom f s 5.76 20.81 5.32 18.18 +rampement rampement nom m s 0 0.2 0 0.07 +rampements rampement nom m p 0 0.2 0 0.14 +rampent ramper ver 11.55 19.39 0.68 1.42 ind:pre:3p; +ramper ramper ver 11.55 19.39 3.32 5.2 inf; +rampera ramper ver 11.55 19.39 0.05 0.07 ind:fut:3s; +ramperai ramper ver 11.55 19.39 0.04 0 ind:fut:1s; +ramperaient ramper ver 11.55 19.39 0 0.07 cnd:pre:3p; +ramperais ramper ver 11.55 19.39 0.19 0 cnd:pre:1s;cnd:pre:2s; +ramperas ramper ver 11.55 19.39 0.13 0 ind:fut:2s; +ramperez ramper ver 11.55 19.39 0.02 0.07 ind:fut:2p; +rampes ramper ver 11.55 19.39 0.95 0 ind:pre:2s; +rampez ramper ver 11.55 19.39 1.32 0.07 imp:pre:2p;ind:pre:2p; +rampiez ramper ver 11.55 19.39 0.03 0 ind:imp:2p; +rampions ramper ver 11.55 19.39 0.02 0.07 ind:imp:1p; +ramponneau ramponneau nom m s 0 0.34 0 0.34 +rampons ramper ver 11.55 19.39 0.01 0.07 ind:pre:1p; +rampèrent ramper ver 11.55 19.39 0 0.14 ind:pas:3p; +rampé ramper ver m s 11.55 19.39 0.64 0.74 par:pas; +rampée ramper ver f s 11.55 19.39 0.01 0 par:pas; +rams rams nom m 0.35 0 0.35 0 +ramser ramser ver 0.01 0 0.01 0 inf; +ramure ramure nom f s 0.12 4.12 0.01 1.55 +ramures ramure nom f p 0.12 4.12 0.11 2.57 +ramène ramener ver 172.7 109.26 49.52 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +ramènent ramener ver 172.7 109.26 2.04 2.16 ind:pre:3p;sub:pre:3p; +ramènera ramener ver 172.7 109.26 3.95 1.15 ind:fut:3s; +ramènerai ramener ver 172.7 109.26 3.52 0.68 ind:fut:1s; +ramèneraient ramener ver 172.7 109.26 0.14 0.2 cnd:pre:3p; +ramènerais ramener ver 172.7 109.26 0.44 0.47 cnd:pre:1s;cnd:pre:2s; +ramènerait ramener ver 172.7 109.26 0.73 2.03 cnd:pre:3s; +ramèneras ramener ver 172.7 109.26 0.42 0.14 ind:fut:2s; +ramènerez ramener ver 172.7 109.26 0.48 0.14 ind:fut:2p; +ramèneriez ramener ver 172.7 109.26 0.17 0.14 cnd:pre:2p; +ramènerions ramener ver 172.7 109.26 0.03 0.07 cnd:pre:1p; +ramènerons ramener ver 172.7 109.26 0.76 0.2 ind:fut:1p; +ramèneront ramener ver 172.7 109.26 0.94 0.27 ind:fut:3p; +ramènes ramener ver 172.7 109.26 7.23 0.74 ind:pre:2s;sub:pre:2s; +ramèrent ramer ver 5.37 6.42 0.02 0.07 ind:pas:3p; +ramé ramer ver m s 5.37 6.42 0.28 0.27 par:pas; +ramée ramée nom f s 0 0.34 0 0.14 +ramées ramée nom f p 0 0.34 0 0.2 +ramés ramer ver m p 5.37 6.42 0 0.07 par:pas; +ran ran nom m s 0.34 0.74 0.34 0.74 +ranatres ranatre nom f p 0 0.07 0 0.07 +rancard rancard nom m s 2.8 1.22 2.6 1.15 +rancardait rancarder ver 0.35 0.61 0 0.07 ind:imp:3s; +rancarde rancarder ver 0.35 0.61 0.1 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rancarder rancarder ver 0.35 0.61 0.07 0.34 inf; +rancardez rancarder ver 0.35 0.61 0.01 0 ind:pre:2p; +rancards rancard nom m p 2.8 1.22 0.2 0.07 +rancardé rancarder ver m s 0.35 0.61 0.11 0 par:pas; +rancardée rancarder ver f s 0.35 0.61 0.01 0.07 par:pas; +rancardés rancarder ver m p 0.35 0.61 0.04 0 par:pas; +rancart rancart nom m s 0.82 1.76 0.76 1.62 +rancarts rancart nom m p 0.82 1.76 0.06 0.14 +rance rance adj s 1.34 4.26 1.18 3.65 +rances rance adj p 1.34 4.26 0.16 0.61 +ranch ranch nom m s 7.21 0.61 6.95 0.61 +ranche ranche nom f s 0.2 0.2 0.1 0 +rancher rancher nom m s 0.15 0 0.15 0 +ranches ranche nom f p 0.2 0.2 0.1 0.2 +rancho rancho nom m s 0.87 0 0.87 0 +ranchs ranch nom m p 7.21 0.61 0.26 0 +ranci ranci adj m s 0.04 0.27 0.02 0.07 +rancie ranci adj f s 0.04 0.27 0.01 0.07 +rancies rancir ver f p 0.01 0.54 0 0.07 par:pas; +rancio rancio nom m s 0 0.2 0 0.2 +rancir rancir ver 0.01 0.54 0 0.2 inf; +rancis rancir ver 0.01 0.54 0.01 0 ind:pre:2s; +rancissait rancir ver 0.01 0.54 0 0.14 ind:imp:3s; +rancissure rancissure nom f s 0 0.07 0 0.07 +rancit rancir ver 0.01 0.54 0 0.07 ind:pas:3s; +rancoeur rancoeur nom f s 1.31 6.15 1.09 4.46 +rancoeurs rancoeur nom f p 1.31 6.15 0.22 1.69 +rancune rancune nom f s 7.2 17.23 6.76 14.86 +rancunes rancune nom f p 7.2 17.23 0.44 2.36 +rancuneuses rancuneux adj f p 0 0.07 0 0.07 +rancunier rancunier adj m s 1.46 1.69 1.09 1.01 +rancuniers rancunier adj m p 1.46 1.69 0.17 0.14 +rancunière rancunier adj f s 1.46 1.69 0.17 0.54 +rancunières rancunier adj f p 1.46 1.69 0.02 0 +randonnait randonner ver 0.13 0.2 0 0.07 ind:imp:3s; +randonne randonner ver 0.13 0.2 0.01 0.07 imp:pre:2s;ind:pre:3s; +randonner randonner ver 0.13 0.2 0.04 0 inf; +randonneur randonneur nom m s 0.4 0.2 0.17 0 +randonneurs randonneur nom m p 0.4 0.2 0.2 0.2 +randonneuse randonneur nom f s 0.4 0.2 0.03 0 +randonnez randonner ver 0.13 0.2 0.01 0 ind:pre:2p; +randonnée randonnée nom f s 2.22 4.66 1.74 2.64 +randonnées randonnée nom f p 2.22 4.66 0.48 2.03 +rang rang nom m s 28.21 58.24 19.4 37.16 +range ranger ver 47.67 67.91 17.59 7.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rangea ranger ver 47.67 67.91 0.02 8.78 ind:pas:3s; +rangeai ranger ver 47.67 67.91 0 0.74 ind:pas:1s; +rangeaient ranger ver 47.67 67.91 0.03 1.82 ind:imp:3p; +rangeais ranger ver 47.67 67.91 0.5 1.08 ind:imp:1s;ind:imp:2s; +rangeait ranger ver 47.67 67.91 0.18 6.69 ind:imp:3s; +rangeant ranger ver 47.67 67.91 0.2 2.7 par:pre; +rangement rangement nom m s 1.21 2.16 1.14 1.49 +rangements rangement nom m p 1.21 2.16 0.07 0.68 +rangent ranger ver 47.67 67.91 0.47 1.08 ind:pre:3p; +rangeons ranger ver 47.67 67.91 0.2 0.14 imp:pre:1p;ind:pre:1p; +ranger ranger ver 47.67 67.91 14.95 14.53 inf; +rangera ranger ver 47.67 67.91 0.31 0.2 ind:fut:3s; +rangerai ranger ver 47.67 67.91 0.58 0.07 ind:fut:1s; +rangerais ranger ver 47.67 67.91 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +rangerait ranger ver 47.67 67.91 0.02 0.07 cnd:pre:3s; +rangeras ranger ver 47.67 67.91 0.1 0.14 ind:fut:2s; +rangerez ranger ver 47.67 67.91 0.16 0 ind:fut:2p; +rangerons ranger ver 47.67 67.91 0 0.07 ind:fut:1p; +rangeront ranger ver 47.67 67.91 0.06 0.07 ind:fut:3p; +rangers ranger nom m p 4.6 3.38 2.36 2.36 +ranges ranger ver 47.67 67.91 1.21 0.14 ind:pre:2s;sub:pre:2s; +rangez ranger ver 47.67 67.91 4.54 0.68 imp:pre:2p;ind:pre:2p; +rangeâmes ranger ver 47.67 67.91 0 0.07 ind:pas:1p; +rangeât ranger ver 47.67 67.91 0 0.07 sub:imp:3s; +rangions ranger ver 47.67 67.91 0.01 0.2 ind:imp:1p; +rangs rang nom m p 28.21 58.24 8.81 21.08 +rangèrent ranger ver 47.67 67.91 0 0.47 ind:pas:3p; +rangé ranger ver m s 47.67 67.91 4.09 8.78 par:pas; +rangée rangée nom f s 3.29 20.47 2.54 10.88 +rangées rangée nom f p 3.29 20.47 0.74 9.59 +rangés ranger ver m p 47.67 67.91 1.03 6.35 par:pas; +rani rani nom f s 0 1.08 0 1.08 +ranima ranimer ver 2.92 9.19 0.14 0.74 ind:pas:3s; +ranimaient ranimer ver 2.92 9.19 0 0.34 ind:imp:3p; +ranimait ranimer ver 2.92 9.19 0.01 0.74 ind:imp:3s; +ranimant ranimer ver 2.92 9.19 0.02 0.2 par:pre; +ranimation ranimation nom f s 0 0.07 0 0.07 +ranime ranimer ver 2.92 9.19 0.77 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raniment ranimer ver 2.92 9.19 0.04 0.2 ind:pre:3p; +ranimer ranimer ver 2.92 9.19 1.26 3.45 inf; +ranimera ranimer ver 2.92 9.19 0.05 0 ind:fut:3s; +ranimez ranimer ver 2.92 9.19 0.03 0 imp:pre:2p; +ranimions ranimer ver 2.92 9.19 0 0.07 ind:imp:1p; +ranimât ranimer ver 2.92 9.19 0 0.07 sub:imp:3s; +ranimèrent ranimer ver 2.92 9.19 0 0.27 ind:pas:3p; +ranimé ranimer ver m s 2.92 9.19 0.22 1.22 par:pas; +ranimée ranimer ver f s 2.92 9.19 0.22 0.54 par:pas; +ranimées ranimer ver f p 2.92 9.19 0 0.14 par:pas; +ranimés ranimer ver m p 2.92 9.19 0.17 0.41 par:pas; +rantanplan rantanplan ono 0.03 0.07 0.03 0.07 +ranz ranz nom m 0 0.14 0 0.14 +rançon rançon nom f s 10.6 2.84 10.49 2.7 +rançonnage rançonnage nom m s 0.01 0 0.01 0 +rançonnaient rançonner ver 0.13 0.95 0 0.14 ind:imp:3p; +rançonnait rançonner ver 0.13 0.95 0 0.27 ind:imp:3s; +rançonne rançonner ver 0.13 0.95 0.04 0 ind:pre:1s;ind:pre:3s; +rançonnement rançonnement nom m s 0 0.07 0 0.07 +rançonner rançonner ver 0.13 0.95 0.04 0.2 inf; +rançonneurs rançonneur nom m p 0.01 0 0.01 0 +rançonné rançonner ver m s 0.13 0.95 0.02 0.14 par:pas; +rançonnée rançonner ver f s 0.13 0.95 0.02 0 par:pas; +rançonnées rançonner ver f p 0.13 0.95 0 0.14 par:pas; +rançonnés rançonner ver m p 0.13 0.95 0 0.07 par:pas; +rançons rançon nom f p 10.6 2.84 0.1 0.14 +raout raout nom m s 0.1 0.74 0.08 0.41 +raouts raout nom m p 0.1 0.74 0.02 0.34 +rap rap nom m s 3.17 0.07 3.17 0.07 +rapace rapace adj s 0.95 1.28 0.86 0.47 +rapaces rapace nom m p 0.92 2.7 0.39 1.22 +rapacité rapacité nom f s 0.05 0.81 0.05 0.81 +rapatria rapatrier ver 2.48 3.11 0 0.07 ind:pas:3s; +rapatriait rapatrier ver 2.48 3.11 0.01 0.14 ind:imp:3s; +rapatriant rapatrier ver 2.48 3.11 0.01 0.07 par:pre; +rapatrie rapatrier ver 2.48 3.11 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rapatriement rapatriement nom m s 0.29 1.96 0.29 1.89 +rapatriements rapatriement nom m p 0.29 1.96 0 0.07 +rapatrient rapatrier ver 2.48 3.11 0.02 0 ind:pre:3p; +rapatrier rapatrier ver 2.48 3.11 1.36 0.88 inf; +rapatriera rapatrier ver 2.48 3.11 0.16 0 ind:fut:3s; +rapatriez rapatrier ver 2.48 3.11 0.13 0 imp:pre:2p;ind:pre:2p; +rapatrié rapatrier ver m s 2.48 3.11 0.33 0.81 par:pas; +rapatriée rapatrier ver f s 2.48 3.11 0.01 0.2 par:pas; +rapatriées rapatrier ver f p 2.48 3.11 0.01 0.14 par:pas; +rapatriés rapatrier ver m p 2.48 3.11 0.35 0.74 par:pas; +rapetassage rapetassage nom m s 0 0.14 0 0.07 +rapetassages rapetassage nom m p 0 0.14 0 0.07 +rapetasser rapetasser ver 0 0.61 0 0.14 inf; +rapetasseur rapetasseur nom m s 0 0.07 0 0.07 +rapetassions rapetasser ver 0 0.61 0 0.07 ind:imp:1p; +rapetassé rapetasser ver m s 0 0.61 0 0.2 par:pas; +rapetassées rapetasser ver f p 0 0.61 0 0.07 par:pas; +rapetassés rapetasser ver m p 0 0.61 0 0.14 par:pas; +rapetissaient rapetisser ver 0.76 4.86 0 0.27 ind:imp:3p; +rapetissais rapetisser ver 0.76 4.86 0 0.07 ind:imp:1s; +rapetissait rapetisser ver 0.76 4.86 0.03 1.08 ind:imp:3s; +rapetissant rapetisser ver 0.76 4.86 0 0.47 par:pre; +rapetisse rapetisser ver 0.76 4.86 0.26 0.54 ind:pre:1s;ind:pre:3s; +rapetissement rapetissement nom m s 0.01 0.27 0.01 0.27 +rapetissent rapetisser ver 0.76 4.86 0.04 0.47 ind:pre:3p; +rapetisser rapetisser ver 0.76 4.86 0.19 0.47 inf; +rapetissera rapetisser ver 0.76 4.86 0 0.07 ind:fut:3s; +rapetissez rapetisser ver 0.76 4.86 0.01 0 ind:pre:2p; +rapetissons rapetisser ver 0.76 4.86 0.01 0.07 ind:pre:1p; +rapetissèrent rapetisser ver 0.76 4.86 0 0.07 ind:pas:3p; +rapetissé rapetisser ver m s 0.76 4.86 0.2 0.61 par:pas; +rapetissée rapetisser ver f s 0.76 4.86 0.03 0.14 par:pas; +rapetissées rapetisser ver f p 0.76 4.86 0 0.27 par:pas; +rapetissés rapetisser ver m p 0.76 4.86 0 0.27 par:pas; +raphaélesque raphaélesque adj f s 0 0.07 0 0.07 +raphia raphia nom m s 0.16 1.28 0.16 1.28 +raphé raphé nom m s 0 0.07 0 0.07 +rapiat rapiat nom m s 0.2 0.14 0.05 0.07 +rapiater rapiater ver 0 0.07 0 0.07 inf; +rapiaterie rapiaterie nom f s 0 0.07 0 0.07 +rapiats rapiat nom m p 0.2 0.14 0.15 0.07 +rapide rapide adj s 48.73 71.82 42.28 53.99 +rapidement rapidement adv 26.49 62.64 26.49 62.64 +rapides rapide adj p 48.73 71.82 6.45 17.84 +rapidité rapidité nom f s 2.36 10.54 2.36 10.41 +rapidités rapidité nom f p 2.36 10.54 0 0.14 +rapidos rapidos adv 0.53 1.89 0.53 1.89 +rapin rapin nom m s 0 1.22 0 0.74 +rapine rapine nom f s 0.13 1.69 0.08 1.15 +rapinent rapiner ver 0 0.14 0 0.07 ind:pre:3p; +rapines rapine nom f p 0.13 1.69 0.05 0.54 +rapins rapin nom m p 0 1.22 0 0.47 +rapinés rapiner ver m p 0 0.14 0 0.07 par:pas; +rapière rapière nom f s 0.17 0.74 0.17 0.74 +rapiécer rapiécer ver 0.18 4.53 0.14 0 inf; +rapiécerait rapiécer ver 0.18 4.53 0 0.07 cnd:pre:3s; +rapiécé rapiécer ver m s 0.18 4.53 0.02 0.88 par:pas; +rapiécée rapiécer ver f s 0.18 4.53 0.02 1.62 par:pas; +rapiécées rapiécer ver f p 0.18 4.53 0 0.74 par:pas; +rapiécés rapiécer ver m p 0.18 4.53 0 1.22 par:pas; +rapiéçage rapiéçage nom m s 0.01 0.2 0.01 0 +rapiéçages rapiéçage nom m p 0.01 0.2 0 0.2 +raplapla raplapla adj 0.11 0 0.11 0 +rapointir rapointir ver 0 0.14 0 0.14 inf; +rappel rappel nom m s 4.24 10.34 3.77 8.31 +rappela rappeler ver 281.75 202.23 0.36 14.53 ind:pas:3s; +rappelai rappeler ver 281.75 202.23 0.04 5.14 ind:pas:1s; +rappelaient rappeler ver 281.75 202.23 0.37 7.5 ind:imp:3p; +rappelais rappeler ver 281.75 202.23 1.94 7.43 ind:imp:1s;ind:imp:2s; +rappelait rappeler ver 281.75 202.23 2.22 29.73 ind:imp:3s; +rappelant rappeler ver 281.75 202.23 0.54 6.69 par:pre; +rappeler rappeler ver 281.75 202.23 46.03 33.11 inf;; +rappelez rappeler ver 281.75 202.23 36.35 8.04 imp:pre:2p;ind:pre:2p; +rappeliez rappeler ver 281.75 202.23 0.46 0.34 ind:imp:2p; +rappelions rappeler ver 281.75 202.23 0.15 0.07 ind:imp:1p; +rappelle rappeler ver 281.75 202.23 117.92 57.7 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rappellent rappeler ver 281.75 202.23 2.79 3.45 ind:pre:3p; +rappellera rappeler ver 281.75 202.23 4.08 1.28 ind:fut:3s; +rappellerai rappeler ver 281.75 202.23 7.96 0.95 ind:fut:1s; +rappelleraient rappeler ver 281.75 202.23 0.05 0.14 cnd:pre:3p; +rappellerais rappeler ver 281.75 202.23 0.79 0.27 cnd:pre:1s;cnd:pre:2s; +rappellerait rappeler ver 281.75 202.23 0.36 1.42 cnd:pre:3s; +rappelleras rappeler ver 281.75 202.23 1 0.34 ind:fut:2s; +rappellerez rappeler ver 281.75 202.23 0.62 0.14 ind:fut:2p; +rappelleriez rappeler ver 281.75 202.23 0.19 0.07 cnd:pre:2p; +rappellerons rappeler ver 281.75 202.23 0.37 0.07 ind:fut:1p; +rappelleront rappeler ver 281.75 202.23 0.45 0 ind:fut:3p; +rappelles rappeler ver 281.75 202.23 37.34 8.38 ind:pre:1p;ind:pre:2s;sub:pre:2s; +rappelons rappeler ver 281.75 202.23 1.9 0.41 imp:pre:1p;ind:pre:1p; +rappels rappel nom m p 4.24 10.34 0.47 2.03 +rappelâmes rappeler ver 281.75 202.23 0.1 0 ind:pas:1p; +rappelât rappeler ver 281.75 202.23 0 0.47 sub:imp:3s; +rappelèrent rappeler ver 281.75 202.23 0.01 1.01 ind:pas:3p; +rappelé rappeler ver m s 281.75 202.23 14.6 11.49 par:pas; +rappelée rappeler ver f s 281.75 202.23 1.82 1.15 par:pas; +rappelés rappeler ver m p 281.75 202.23 0.94 0.95 par:pas; +rapper rapper ver 0.4 0 0.4 0 inf; +rappeur rappeur nom m s 1.01 0 0.65 0 +rappeurs rappeur nom m p 1.01 0 0.34 0 +rappeuse rappeur nom f s 1.01 0 0.02 0 +rappliqua rappliquer ver 4.22 5.74 0 0.2 ind:pas:3s; +rappliquaient rappliquer ver 4.22 5.74 0.01 0.41 ind:imp:3p; +rappliquais rappliquer ver 4.22 5.74 0 0.07 ind:imp:2s; +rappliquait rappliquer ver 4.22 5.74 0 0.47 ind:imp:3s; +rapplique rappliquer ver 4.22 5.74 1.38 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rappliquent rappliquer ver 4.22 5.74 0.5 1.01 ind:pre:3p; +rappliquer rappliquer ver 4.22 5.74 1.31 1.76 inf; +rappliquera rappliquer ver 4.22 5.74 0.04 0 ind:fut:3s; +rappliquerais rappliquer ver 4.22 5.74 0.05 0 cnd:pre:1s;cnd:pre:2s; +rappliquerait rappliquer ver 4.22 5.74 0.01 0 cnd:pre:3s; +rappliqueriez rappliquer ver 4.22 5.74 0 0.07 cnd:pre:2p; +rappliqueront rappliquer ver 4.22 5.74 0.15 0.14 ind:fut:3p; +rappliques rappliquer ver 4.22 5.74 0.07 0.2 ind:pre:2s; +rappliquez rappliquer ver 4.22 5.74 0.28 0.14 imp:pre:2p;ind:pre:2p; +rappliquèrent rappliquer ver 4.22 5.74 0 0.07 ind:pas:3p; +rappliqué rappliquer ver m s 4.22 5.74 0.43 0.47 par:pas; +rapport rapport nom m s 140.08 130.95 115.57 87.23 +rapporta rapporter ver 56.99 62.43 0.43 3.45 ind:pas:3s; +rapportage rapportage nom m s 0.01 0 0.01 0 +rapportai rapporter ver 56.99 62.43 0 1.01 ind:pas:1s; +rapportaient rapporter ver 56.99 62.43 0.26 2.03 ind:imp:3p; +rapportais rapporter ver 56.99 62.43 0.35 0.95 ind:imp:1s;ind:imp:2s; +rapportait rapporter ver 56.99 62.43 1.12 7.64 ind:imp:3s; +rapportant rapporter ver 56.99 62.43 0.28 1.76 par:pre; +rapporte rapporter ver 56.99 62.43 21.03 10.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rapportent rapporter ver 56.99 62.43 1.98 2.03 ind:pre:3p; +rapporter rapporter ver 56.99 62.43 12.12 11.96 inf; +rapportera rapporter ver 56.99 62.43 2.13 0.68 ind:fut:3s; +rapporterai rapporter ver 56.99 62.43 1.94 0.54 ind:fut:1s; +rapporteraient rapporter ver 56.99 62.43 0.08 0 cnd:pre:3p; +rapporterais rapporter ver 56.99 62.43 0.09 0 cnd:pre:1s;cnd:pre:2s; +rapporterait rapporter ver 56.99 62.43 0.52 0.95 cnd:pre:3s; +rapporteras rapporter ver 56.99 62.43 0.4 0.27 ind:fut:2s; +rapporterez rapporter ver 56.99 62.43 0.46 0.27 ind:fut:2p; +rapporteriez rapporter ver 56.99 62.43 0.02 0 cnd:pre:2p; +rapporterons rapporter ver 56.99 62.43 0.03 0 ind:fut:1p; +rapporteront rapporter ver 56.99 62.43 0.11 0.07 ind:fut:3p; +rapportes rapporter ver 56.99 62.43 0.94 0.41 ind:pre:2s; +rapporteur rapporteur nom m s 0.57 0.61 0.1 0.41 +rapporteurs rapporteur nom m p 0.57 0.61 0.01 0.14 +rapporteuse rapporteur nom f s 0.57 0.61 0.43 0.07 +rapporteuses rapporteur nom f p 0.57 0.61 0.03 0 +rapportez rapporter ver 56.99 62.43 2.19 0.47 imp:pre:2p;ind:pre:2p; +rapportiez rapporter ver 56.99 62.43 0.19 0 ind:imp:2p; +rapportions rapporter ver 56.99 62.43 0.01 0.14 ind:imp:1p; +rapportons rapporter ver 56.99 62.43 0.09 0.2 imp:pre:1p;ind:pre:1p; +rapports rapport nom m p 140.08 130.95 24.51 43.72 +rapportât rapporter ver 56.99 62.43 0 0.14 sub:imp:3s; +rapportèrent rapporter ver 56.99 62.43 0.02 0.34 ind:pas:3p; +rapporté rapporter ver m s 56.99 62.43 8.58 11.89 par:pas; +rapportée rapporter ver f s 56.99 62.43 1 1.69 par:pas; +rapportées rapporter ver f p 56.99 62.43 0.42 1.55 par:pas; +rapportés rapporter ver m p 56.99 62.43 0.21 1.28 par:pas; +rapprendre rapprendre ver 0.02 0.27 0.02 0.2 inf; +rappris rapprendre ver 0.02 0.27 0 0.07 ind:pas:2s; +rapprocha rapprocher ver 25.18 54.66 0.15 6.62 ind:pas:3s; +rapprochai rapprocher ver 25.18 54.66 0.01 0.34 ind:pas:1s; +rapprochaient rapprocher ver 25.18 54.66 0.3 3.65 ind:imp:3p; +rapprochais rapprocher ver 25.18 54.66 0.05 0.27 ind:imp:1s;ind:imp:2s; +rapprochait rapprocher ver 25.18 54.66 0.69 7.57 ind:imp:3s; +rapprochant rapprocher ver 25.18 54.66 0.5 2.7 par:pre; +rapproche rapprocher ver 25.18 54.66 9.74 8.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rapprochement rapprochement nom m s 1.69 7.23 1.66 6.55 +rapprochements rapprochement nom m p 1.69 7.23 0.02 0.68 +rapprochent rapprocher ver 25.18 54.66 1.44 3.11 ind:pre:3p; +rapprocher rapprocher ver 25.18 54.66 6.53 9.93 inf; +rapprochera rapprocher ver 25.18 54.66 0.34 0.41 ind:fut:3s; +rapprocherais rapprocher ver 25.18 54.66 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +rapprocherait rapprocher ver 25.18 54.66 0.14 0.41 cnd:pre:3s; +rapprocheront rapprocher ver 25.18 54.66 0 0.07 ind:fut:3p; +rapprocheur rapprocheur nom m s 0 0.14 0 0.14 +rapprochez rapprocher ver 25.18 54.66 2.65 0.34 imp:pre:2p;ind:pre:2p; +rapprochiez rapprocher ver 25.18 54.66 0.03 0.07 ind:imp:2p; +rapprochions rapprocher ver 25.18 54.66 0.01 0.14 ind:imp:1p; +rapprochons rapprocher ver 25.18 54.66 0.54 0.34 imp:pre:1p;ind:pre:1p; +rapprochât rapprocher ver 25.18 54.66 0 0.07 sub:imp:3s; +rapprochèrent rapprocher ver 25.18 54.66 0.04 1.96 ind:pas:3p; +rapproché rapprocher ver m s 25.18 54.66 0.86 3.51 par:pas; +rapprochée rapproché adj f s 1.7 3.72 0.78 0.41 +rapprochées rapproché adj f p 1.7 3.72 0.22 1.08 +rapprochés rapprocher ver m p 25.18 54.66 0.54 2.3 par:pas; +rappropriait rapproprier ver 0 0.07 0 0.07 ind:imp:3s; +rapsodie rapsodie nom f s 0.02 0 0.02 0 +rapt rapt nom m s 1.31 1.62 1.13 1.62 +rapts rapt nom m p 1.31 1.62 0.18 0 +raquaient raquer ver 0.93 2.36 0 0.14 ind:imp:3p; +raquait raquer ver 0.93 2.36 0 0.07 ind:imp:3s; +raque raquer ver 0.93 2.36 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raquent raquer ver 0.93 2.36 0.04 0.07 ind:pre:3p; +raquer raquer ver 0.93 2.36 0.4 0.88 inf; +raques raquer ver 0.93 2.36 0.07 0 ind:pre:2s; +raquette raquette nom f s 2.05 3.51 1.77 1.69 +raquettes raquette nom f p 2.05 3.51 0.28 1.82 +raquez raquer ver 0.93 2.36 0.02 0 imp:pre:2p;ind:pre:2p; +raquons raquer ver 0.93 2.36 0 0.07 ind:pre:1p; +raqué raquer ver m s 0.93 2.36 0.05 0.41 par:pas; +raquée raquer ver f s 0.93 2.36 0.01 0.07 par:pas; +raquées raquer ver f p 0.93 2.36 0 0.07 par:pas; +rare rare adj s 33.27 87.23 22.58 37.23 +rarement rarement adv 14.05 31.62 14.05 31.62 +rares rare adj p 33.27 87.23 10.7 50 +rareté rareté nom f s 0.63 2.43 0.51 2.3 +raretés rareté nom f p 0.63 2.43 0.13 0.14 +rarissime rarissime adj s 0.54 1.96 0.38 1.35 +rarissimement rarissimement adv 0 0.07 0 0.07 +rarissimes rarissime adj p 0.54 1.96 0.16 0.61 +raréfaction raréfaction nom f s 0.01 0.27 0.01 0.27 +raréfia raréfier ver 0.35 1.89 0 0.14 ind:pas:3s; +raréfiaient raréfier ver 0.35 1.89 0 0.07 ind:imp:3p; +raréfiait raréfier ver 0.35 1.89 0 0.2 ind:imp:3s; +raréfiant raréfier ver 0.35 1.89 0 0.14 par:pre; +raréfie raréfier ver 0.35 1.89 0.06 0 ind:pre:3s; +raréfient raréfier ver 0.35 1.89 0.01 0.14 ind:pre:3p; +raréfier raréfier ver 0.35 1.89 0.1 0.27 inf; +raréfièrent raréfier ver 0.35 1.89 0.1 0.2 ind:pas:3p; +raréfié raréfier ver m s 0.35 1.89 0.06 0.34 par:pas; +raréfiée raréfié adj f s 0.06 0.34 0.04 0.07 +raréfiées raréfié adj f p 0.06 0.34 0 0.07 +raréfiés raréfier ver m p 0.35 1.89 0 0.2 par:pas; +ras ras adj m 7.51 16.89 5.92 9.32 +ras_le_bol ras_le_bol nom m 1.62 0.47 1.62 0.47 +rasa raser ver 28.54 43.78 0.06 1.49 ind:pas:3s; +rasade rasade nom f s 0.47 4.86 0.46 3.11 +rasades rasade nom f p 0.47 4.86 0.01 1.76 +rasage rasage nom m s 0.95 0.41 0.83 0.41 +rasages rasage nom m p 0.95 0.41 0.12 0 +rasai raser ver 28.54 43.78 0 0.07 ind:pas:1s; +rasaient raser ver 28.54 43.78 0.01 0.68 ind:imp:3p; +rasais raser ver 28.54 43.78 0.51 0.47 ind:imp:1s;ind:imp:2s; +rasait raser ver 28.54 43.78 0.44 2.77 ind:imp:3s; +rasant raser ver 28.54 43.78 0.64 3.92 par:pre; +rasante rasant adj f s 0.33 1.89 0.15 0.74 +rasantes rasant adj f p 0.33 1.89 0.01 0.07 +rasants rasant adj m p 0.33 1.89 0 0.07 +rascasse rascasse nom f s 0.41 0.41 0.4 0 +rascasses rascasse nom f p 0.41 0.41 0.01 0.41 +rase raser ver 28.54 43.78 4.75 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rase_mottes rase_mottes nom m 0.3 0.47 0.3 0.47 +rase_pet rase_pet nom m s 0.02 0.2 0 0.2 +rase_pet rase_pet nom m p 0.02 0.2 0.02 0 +rasent raser ver 28.54 43.78 0.5 0.68 ind:pre:3p; +raser raser ver 28.54 43.78 10.27 7.5 inf;; +rasera raser ver 28.54 43.78 0.32 0.14 ind:fut:3s; +raserai raser ver 28.54 43.78 0.55 0.14 ind:fut:1s; +raserais raser ver 28.54 43.78 0.08 0.07 cnd:pre:1s;cnd:pre:2s; +raserait raser ver 28.54 43.78 0.05 0.27 cnd:pre:3s; +raseras raser ver 28.54 43.78 0.02 0.14 ind:fut:2s; +raserez raser ver 28.54 43.78 0.01 0 ind:fut:2p; +raseront raser ver 28.54 43.78 0.16 0 ind:fut:3p; +rases raser ver 28.54 43.78 1.13 0.34 ind:pre:2s; +raseur raseur nom m s 0.65 1.15 0.46 0.47 +raseurs raseur nom m p 0.65 1.15 0.16 0.14 +raseuse raseur nom f s 0.65 1.15 0.03 0.47 +raseuses raseur nom f p 0.65 1.15 0 0.07 +rasez raser ver 28.54 43.78 0.64 0.2 imp:pre:2p;ind:pre:2p; +rash rash nom m s 0.03 0.07 0.03 0.07 +rasibus rasibus adv_sup 0.01 0.34 0.01 0.34 +rasiez raser ver 28.54 43.78 0.04 0 ind:imp:2p; +rasif rasif nom m s 0 0.54 0 0.47 +rasifs rasif nom m p 0 0.54 0 0.07 +rasoir rasoir nom m s 8.92 16.82 8.18 15.61 +rasoirs rasoir nom m p 8.92 16.82 0.74 1.22 +rasons raser ver 28.54 43.78 0.29 0 imp:pre:1p;ind:pre:1p; +rassasiaient rassasier ver 1.48 3.58 0 0.27 ind:imp:3p; +rassasiais rassasier ver 1.48 3.58 0 0.07 ind:imp:1s; +rassasiait rassasier ver 1.48 3.58 0 0.2 ind:imp:3s; +rassasiant rassasiant adj m s 0.01 0.07 0.01 0 +rassasiantes rassasiant adj f p 0.01 0.07 0 0.07 +rassasie rassasier ver 1.48 3.58 0.14 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassasient rassasier ver 1.48 3.58 0.02 0 ind:pre:3p; +rassasier rassasier ver 1.48 3.58 0.39 0.88 inf; +rassasieraient rassasier ver 1.48 3.58 0 0.07 cnd:pre:3p; +rassasiez rassasier ver 1.48 3.58 0.11 0 imp:pre:2p; +rassasiât rassasier ver 1.48 3.58 0 0.07 sub:imp:3s; +rassasié rassasier ver m s 1.48 3.58 0.5 1.08 par:pas; +rassasiée rassasier ver f s 1.48 3.58 0.18 0.41 par:pas; +rassasiées rassasié adj f p 0.53 1.35 0.01 0.07 +rassasiés rassasier ver m p 1.48 3.58 0.14 0.2 par:pas; +rasse rasse nom f s 0 0.07 0 0.07 +rassembla rassembler ver 25.99 52.7 0.14 2.97 ind:pas:3s; +rassemblai rassembler ver 25.99 52.7 0.01 0.54 ind:pas:1s; +rassemblaient rassembler ver 25.99 52.7 0.18 2.5 ind:imp:3p; +rassemblais rassembler ver 25.99 52.7 0.07 0.81 ind:imp:1s; +rassemblait rassembler ver 25.99 52.7 0.18 2.97 ind:imp:3s; +rassemblant rassembler ver 25.99 52.7 0.45 2.97 par:pre; +rassemble rassembler ver 25.99 52.7 5.75 5.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassemblement rassemblement nom m s 4.96 8.24 4.39 7.3 +rassemblements rassemblement nom m p 4.96 8.24 0.57 0.95 +rassemblent rassembler ver 25.99 52.7 1.59 1.35 ind:pre:3p; +rassembler rassembler ver 25.99 52.7 6.89 11.76 inf; +rassemblera rassembler ver 25.99 52.7 0.26 0.27 ind:fut:3s; +rassemblerai rassembler ver 25.99 52.7 0.05 0.07 ind:fut:1s; +rassembleraient rassembler ver 25.99 52.7 0 0.07 cnd:pre:3p; +rassemblerais rassembler ver 25.99 52.7 0 0.07 cnd:pre:1s; +rassemblerait rassembler ver 25.99 52.7 0.01 0.2 cnd:pre:3s; +rassembleras rassembler ver 25.99 52.7 0.14 0 ind:fut:2s; +rassemblerez rassembler ver 25.99 52.7 0.02 0 ind:fut:2p; +rassemblerons rassembler ver 25.99 52.7 0.05 0 ind:fut:1p; +rassembleront rassembler ver 25.99 52.7 0.1 0.14 ind:fut:3p; +rassembles rassembler ver 25.99 52.7 0.09 0.07 ind:pre:2s; +rassembleur rassembleur nom m s 0 0.14 0 0.14 +rassemblez rassembler ver 25.99 52.7 4.35 0.07 imp:pre:2p;ind:pre:2p; +rassemblons rassembler ver 25.99 52.7 1.06 0 imp:pre:1p;ind:pre:1p; +rassemblèrent rassembler ver 25.99 52.7 0.02 0.81 ind:pas:3p; +rassemblé rassembler ver m s 25.99 52.7 2.09 5.54 par:pas; +rassemblée rassembler ver f s 25.99 52.7 0.2 2.77 par:pas; +rassemblées rassembler ver f p 25.99 52.7 0.45 3.45 par:pas; +rassemblés rassembler ver m p 25.99 52.7 1.84 8.18 par:pas; +rasseoir rasseoir ver 1.97 14.05 0.52 2.91 inf; +rasseyaient rasseoir ver 1.97 14.05 0 0.07 ind:imp:3p; +rasseyais rasseoir ver 1.97 14.05 0.01 0.14 ind:imp:1s; +rasseyait rasseoir ver 1.97 14.05 0 0.41 ind:imp:3s; +rasseyant rasseoir ver 1.97 14.05 0 0.61 par:pre; +rasseyent rasseoir ver 1.97 14.05 0 0.07 ind:pre:3p; +rasseyez rasseoir ver 1.97 14.05 0.45 0 imp:pre:2p;ind:pre:2p; +rasseyons rasseoir ver 1.97 14.05 0 0.14 ind:pre:1p; +rassied rasseoir ver 1.97 14.05 0.01 0.74 ind:pre:3s; +rassieds rasseoir ver 1.97 14.05 0.22 0 imp:pre:2s;ind:pre:1s; +rassir rassir ver 0.01 0 0.01 0 inf; +rassirent rasseoir ver 1.97 14.05 0 0.14 ind:pas:3p; +rassis rasseoir ver m 1.97 14.05 0.47 3.24 ind:pas:1s;par:pas;par:pas; +rassise rasseoir ver f s 1.97 14.05 0 0.61 par:pas; +rassit rasseoir ver 1.97 14.05 0.01 4.12 ind:pas:3s; +rassoie rasseoir ver 1.97 14.05 0.01 0 sub:pre:3s; +rassoient rasseoir ver 1.97 14.05 0 0.07 ind:pre:3p; +rassoies rasseoir ver 1.97 14.05 0.01 0 sub:pre:2s; +rassois rasseoir ver 1.97 14.05 0.01 0.2 ind:pre:1s; +rassoit rasseoir ver 1.97 14.05 0.25 0.54 ind:pre:3s; +rassortiment rassortiment nom m s 0 0.07 0 0.07 +rassortir rassortir ver 0.01 0.07 0.01 0.07 inf; +rassoté rassoter ver m s 0 0.07 0 0.07 par:pas; +rassoyait rasseoir ver 1.97 14.05 0 0.07 ind:imp:3s; +rassura rassurer ver 29.25 68.04 0 3.65 ind:pas:3s; +rassurai rassurer ver 29.25 68.04 0.01 0.88 ind:pas:1s; +rassuraient rassurer ver 29.25 68.04 0.01 1.42 ind:imp:3p; +rassurais rassurer ver 29.25 68.04 0 0.41 ind:imp:1s; +rassurait rassurer ver 29.25 68.04 0.46 5.07 ind:imp:3s; +rassurant rassurant adj m s 3.16 16.69 2.81 7.64 +rassurante rassurant adj f s 3.16 16.69 0.21 5.34 +rassurantes rassurant adj f p 3.16 16.69 0.09 2.5 +rassurants rassurant adj m p 3.16 16.69 0.05 1.22 +rassure rassurer ver 29.25 68.04 9.62 9.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassurement rassurement nom m s 0 0.07 0 0.07 +rassurent rassurer ver 29.25 68.04 0.42 0.54 ind:pre:3p; +rassurer rassurer ver 29.25 68.04 6.06 17.57 inf; +rassurera rassurer ver 29.25 68.04 0.34 0.2 ind:fut:3s; +rassurerait rassurer ver 29.25 68.04 0.34 0.54 cnd:pre:3s; +rassureront rassurer ver 29.25 68.04 0.14 0.07 ind:fut:3p; +rassures rassurer ver 29.25 68.04 0.58 0.14 ind:pre:2s; +rassurez rassurer ver 29.25 68.04 5.42 3.51 imp:pre:2p;ind:pre:2p; +rassuriez rassurer ver 29.25 68.04 0 0.07 ind:imp:2p; +rassurons rassurer ver 29.25 68.04 0.02 0.2 imp:pre:1p;ind:pre:1p; +rassurâmes rassurer ver 29.25 68.04 0 0.07 ind:pas:1p; +rassurât rassurer ver 29.25 68.04 0 0.14 sub:imp:3s; +rassurèrent rassurer ver 29.25 68.04 0 0.34 ind:pas:3p; +rassuré rassurer ver m s 29.25 68.04 2.56 12.5 par:pas; +rassurée rassurer ver f s 29.25 68.04 2.44 5.88 par:pas; +rassurées rassurer ver f p 29.25 68.04 0.19 0.27 par:pas; +rassurés rassurer ver m p 29.25 68.04 0.55 2.64 par:pas; +rassérène rasséréner ver 0.02 4.39 0 0.41 ind:pre:1s;ind:pre:3s; +rasséréna rasséréner ver 0.02 4.39 0 0.54 ind:pas:3s; +rassérénai rasséréner ver 0.02 4.39 0 0.27 ind:pas:1s; +rassérénait rasséréner ver 0.02 4.39 0.01 0.34 ind:imp:3s; +rassérénant rasséréner ver 0.02 4.39 0 0.07 par:pre; +rasséréner rasséréner ver 0.02 4.39 0 0.2 inf; +rassérénera rasséréner ver 0.02 4.39 0 0.07 ind:fut:3s; +rasséréné rasséréner ver m s 0.02 4.39 0 1.82 par:pas; +rassérénée rasséréner ver f s 0.02 4.39 0 0.54 par:pas; +rassérénées rasséréner ver f p 0.02 4.39 0 0.07 par:pas; +rassérénés rasséréner ver m p 0.02 4.39 0.01 0.07 par:pas; +rasta rasta nom m s 0.43 0.34 0.32 0.2 +rastafari rastafari adj m s 0.03 0 0.03 0 +rastafari rastafari nom m s 0.03 0 0.03 0 +rastaquouère rastaquouère nom m s 0.05 0.41 0.01 0.2 +rastaquouères rastaquouère nom m p 0.05 0.41 0.04 0.2 +rastas rasta nom m p 0.43 0.34 0.12 0.14 +rasèrent raser ver 28.54 43.78 0 0.14 ind:pas:3p; +rasé raser ver m s 28.54 43.78 5.35 13.92 par:pas; +rasée raser ver f s 28.54 43.78 1.83 3.51 par:pas; +rasées raser ver f p 28.54 43.78 0.16 1.82 par:pas; +rasés raser ver m p 28.54 43.78 0.76 2.91 par:pas; +rat rat nom m s 45.6 37.64 24.21 20.81 +rat_de_cave rat_de_cave nom m s 0 0.07 0 0.07 +rata rata nom m s 0.53 0.27 0.53 0.27 +ratafia ratafia nom m s 0.02 0.54 0.02 0.54 +ratage ratage nom m s 0.63 1.01 0.16 0.68 +ratages ratage nom m p 0.63 1.01 0.47 0.34 +ratai rater ver 80.45 22.7 0 0.27 ind:pas:1s; +rataient rater ver 80.45 22.7 0.03 0.14 ind:imp:3p; +ratais rater ver 80.45 22.7 0.31 0.34 ind:imp:1s;ind:imp:2s; +ratait rater ver 80.45 22.7 0.23 1.22 ind:imp:3s; +ratant rater ver 80.45 22.7 0.09 0.07 par:pre; +rataplan rataplan ono 0 0.07 0 0.07 +ratatinai ratatiner ver 0.69 3.65 0 0.07 ind:pas:1s; +ratatinaient ratatiner ver 0.69 3.65 0 0.14 ind:imp:3p; +ratatinais ratatiner ver 0.69 3.65 0.01 0 ind:imp:1s; +ratatinait ratatiner ver 0.69 3.65 0 0.47 ind:imp:3s; +ratatine ratatiner ver 0.69 3.65 0.13 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ratatinent ratatiner ver 0.69 3.65 0.01 0 ind:pre:3p; +ratatiner ratatiner ver 0.69 3.65 0.21 0.54 inf; +ratatinerait ratatiner ver 0.69 3.65 0.01 0.07 cnd:pre:3s; +ratatineront ratatiner ver 0.69 3.65 0.01 0.07 ind:fut:3p; +ratatiné ratatiner ver m s 0.69 3.65 0.24 1.08 par:pas; +ratatinée ratatiner ver f s 0.69 3.65 0.04 0.61 par:pas; +ratatinées ratatiné adj f p 0.4 2.09 0.11 0.27 +ratatinés ratatiner ver m p 0.69 3.65 0.03 0.27 par:pas; +ratatouille ratatouille nom f s 0.54 0.74 0.54 0.61 +ratatouilles ratatouille nom f p 0.54 0.74 0 0.14 +rate rater ver 80.45 22.7 8.32 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +ratent rater ver 80.45 22.7 0.54 0.61 ind:pre:3p; +rater rater ver 80.45 22.7 24.71 6.28 inf; +ratera rater ver 80.45 22.7 0.42 0 ind:fut:3s; +raterai rater ver 80.45 22.7 0.64 0 ind:fut:1s; +raterais rater ver 80.45 22.7 0.63 0.14 cnd:pre:1s;cnd:pre:2s; +raterait rater ver 80.45 22.7 0.4 0.07 cnd:pre:3s; +rateras rater ver 80.45 22.7 0.21 0.07 ind:fut:2s; +raterez rater ver 80.45 22.7 0.34 0 ind:fut:2p; +rateriez rater ver 80.45 22.7 0.03 0 cnd:pre:2p; +raterons rater ver 80.45 22.7 0.14 0 ind:fut:1p; +rateront rater ver 80.45 22.7 0.27 0.07 ind:fut:3p; +rates rater ver 80.45 22.7 3.75 0.27 ind:pre:2s;sub:pre:2s; +ratez rater ver 80.45 22.7 2.1 0.14 imp:pre:2p;ind:pre:2p; +ratiboisaient ratiboiser ver 0.09 0.81 0 0.07 ind:imp:3p; +ratiboisait ratiboiser ver 0.09 0.81 0 0.14 ind:imp:3s; +ratiboiser ratiboiser ver 0.09 0.81 0.06 0.07 inf; +ratiboises ratiboiser ver 0.09 0.81 0 0.07 ind:pre:2s; +ratiboisé ratiboiser ver m s 0.09 0.81 0.01 0.47 par:pas; +ratiboisés ratiboiser ver m p 0.09 0.81 0.02 0 par:pas; +ratiche ratiche nom f s 0.04 1.76 0 0.47 +ratiches ratiche nom f p 0.04 1.76 0.04 1.28 +ratichon ratichon nom m s 0 0.61 0 0.41 +ratichons ratichon nom m p 0 0.61 0 0.2 +raticide raticide nom m s 0.04 0 0.04 0 +ratier ratier nom m s 0 0.88 0 0.88 +ratiez rater ver 80.45 22.7 0.2 0.07 ind:imp:2p;sub:pre:2p; +ratifia ratifier ver 0.8 1.22 0 0.07 ind:pas:3s; +ratifiant ratifier ver 0.8 1.22 0 0.07 par:pre; +ratification ratification nom f s 0.28 1.08 0.28 1.08 +ratifie ratifier ver 0.8 1.22 0.04 0.07 ind:pre:3s; +ratifient ratifier ver 0.8 1.22 0 0.07 ind:pre:3p; +ratifier ratifier ver 0.8 1.22 0.3 0.27 inf; +ratifieront ratifier ver 0.8 1.22 0.02 0 ind:fut:3p; +ratifié ratifier ver m s 0.8 1.22 0.34 0.27 par:pas; +ratifiée ratifier ver f s 0.8 1.22 0.1 0.27 par:pas; +ratifiés ratifier ver m p 0.8 1.22 0 0.14 par:pas; +ratine ratine nom f s 0 0.47 0 0.47 +ratio ratio nom m s 0.4 0 0.4 0 +ratiocinait ratiociner ver 0 0.14 0 0.07 ind:imp:3s; +ratiocinant ratiociner ver 0 0.14 0 0.07 par:pre; +ratiocination ratiocination nom f s 0.02 0.54 0.02 0 +ratiocinations ratiocination nom f p 0.02 0.54 0 0.54 +ratiocineur ratiocineur nom m s 0.01 0.14 0.01 0.14 +ration ration nom f s 3.54 8.18 2.24 5.95 +rational rational nom m s 0.02 0 0.02 0 +rationalisation rationalisation nom f s 0.08 0.2 0.08 0.2 +rationalise rationaliser ver 0.58 0 0.22 0 ind:pre:1s;ind:pre:3s; +rationaliser rationaliser ver 0.58 0 0.34 0 inf; +rationalisez rationaliser ver 0.58 0 0.01 0 ind:pre:2p; +rationalisme rationalisme nom m s 0.34 0.41 0.34 0.41 +rationaliste rationaliste nom s 0.14 0.27 0.14 0.2 +rationalistes rationaliste adj f p 0.01 0.47 0 0.07 +rationalisé rationaliser ver m s 0.58 0 0.01 0 par:pas; +rationalisée rationalisé adj f s 0.01 0.2 0.01 0.2 +rationalité rationalité nom f s 0.11 0.27 0.11 0.27 +rationne rationner ver 0.66 1.01 0.06 0.07 ind:pre:1s;ind:pre:3s; +rationnel rationnel adj m s 3.5 3.04 1.26 1.08 +rationnelle rationnel adj f s 3.5 3.04 1.73 1.42 +rationnellement rationnellement adv 0.41 0.41 0.41 0.41 +rationnelles rationnel adj f p 3.5 3.04 0.14 0.34 +rationnels rationnel adj m p 3.5 3.04 0.35 0.2 +rationnement rationnement nom m s 1.12 1.55 1.12 1.55 +rationner rationner ver 0.66 1.01 0.19 0.2 inf; +rationnez rationner ver 0.66 1.01 0.01 0 ind:pre:2p; +rationné rationner ver m s 0.66 1.01 0.2 0.41 par:pas; +rationnée rationner ver f s 0.66 1.01 0.02 0.14 par:pas; +rationnées rationner ver f p 0.66 1.01 0.02 0 par:pas; +rationnés rationner ver m p 0.66 1.01 0.17 0.2 par:pas; +rations ration nom f p 3.54 8.18 1.3 2.23 +ratissa ratisser ver 3.45 5.27 0 0.2 ind:pas:3s; +ratissage ratissage nom m s 0.4 0.2 0.4 0.2 +ratissaient ratisser ver 3.45 5.27 0.01 0.2 ind:imp:3p; +ratissais ratisser ver 3.45 5.27 0.01 0.07 ind:imp:1s; +ratissait ratisser ver 3.45 5.27 0.03 0.47 ind:imp:3s; +ratissant ratisser ver 3.45 5.27 0.01 0.27 par:pre; +ratisse ratisser ver 3.45 5.27 0.81 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ratissent ratisser ver 3.45 5.27 0.58 0 ind:pre:3p; +ratisser ratisser ver 3.45 5.27 1.13 1.28 inf; +ratisserai ratisser ver 3.45 5.27 0.01 0 ind:fut:1s; +ratisseront ratisser ver 3.45 5.27 0.02 0 ind:fut:3p; +ratisseur ratisseur adj m s 0 0.07 0 0.07 +ratissez ratisser ver 3.45 5.27 0.27 0 imp:pre:2p; +ratissons ratisser ver 3.45 5.27 0.13 0 imp:pre:1p;ind:pre:1p; +ratissé ratisser ver m s 3.45 5.27 0.4 1.49 par:pas; +ratissée ratisser ver f s 3.45 5.27 0.01 0.41 par:pas; +ratissées ratisser ver f p 3.45 5.27 0 0.27 par:pas; +ratissés ratisser ver m p 3.45 5.27 0.01 0.07 par:pas; +ratite ratite nom m s 0.05 0 0.03 0 +ratites ratite nom m p 0.05 0 0.02 0 +ratière ratière nom f s 0.12 1.49 0.12 1.42 +ratières ratière nom f p 0.12 1.49 0 0.07 +raton raton nom m s 1.7 5.41 1.37 3.11 +ratonnade ratonnade nom f s 0.01 0.34 0 0.14 +ratonnades ratonnade nom f p 0.01 0.34 0.01 0.2 +ratonnent ratonner ver 0 0.2 0 0.07 ind:pre:3p; +ratonner ratonner ver 0 0.2 0 0.14 inf; +ratons raton nom m p 1.7 5.41 0.33 2.3 +rats rat nom m p 45.6 37.64 21.39 16.82 +rattacha rattacher ver 2.13 12.03 0 0.07 ind:pas:3s; +rattachaient rattacher ver 2.13 12.03 0 0.68 ind:imp:3p; +rattachais rattacher ver 2.13 12.03 0 0.14 ind:imp:1s; +rattachait rattacher ver 2.13 12.03 0.05 2.43 ind:imp:3s; +rattachant rattacher ver 2.13 12.03 0.11 0.27 par:pre; +rattache rattacher ver 2.13 12.03 0.7 1.08 imp:pre:2s;ind:pre:3s; +rattachement rattachement nom m s 0.13 0.68 0.13 0.68 +rattachent rattacher ver 2.13 12.03 0.07 0.68 ind:pre:3p; +rattacher rattacher ver 2.13 12.03 0.37 2.3 inf;; +rattachera rattacher ver 2.13 12.03 0.03 0.07 ind:fut:3s; +rattacherait rattacher ver 2.13 12.03 0 0.07 cnd:pre:3s; +rattachez rattacher ver 2.13 12.03 0.03 0.07 imp:pre:2p;ind:pre:2p; +rattachions rattacher ver 2.13 12.03 0 0.07 ind:imp:1p; +rattachons rattacher ver 2.13 12.03 0 0.07 ind:pre:1p; +rattachât rattacher ver 2.13 12.03 0 0.07 sub:imp:3s; +rattaché rattacher ver m s 2.13 12.03 0.45 1.35 par:pas; +rattachée rattacher ver f s 2.13 12.03 0.08 1.08 par:pas; +rattachées rattacher ver f p 2.13 12.03 0.06 0.34 par:pas; +rattachés rattacher ver m p 2.13 12.03 0.17 1.22 par:pas; +ratte ratte nom f s 0.01 0 0.01 0 +rattrapa rattraper ver 38.32 39.39 0.05 3.99 ind:pas:3s; +rattrapage rattrapage nom m s 0.88 0.68 0.84 0.61 +rattrapages rattrapage nom m p 0.88 0.68 0.04 0.07 +rattrapai rattraper ver 38.32 39.39 0 0.41 ind:pas:1s; +rattrapaient rattraper ver 38.32 39.39 0.03 0.34 ind:imp:3p; +rattrapais rattraper ver 38.32 39.39 0.06 0.41 ind:imp:1s; +rattrapait rattraper ver 38.32 39.39 0.19 1.82 ind:imp:3s; +rattrapant rattraper ver 38.32 39.39 0.05 1.42 par:pre; +rattrape rattraper ver 38.32 39.39 7.35 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rattrapent rattraper ver 38.32 39.39 0.91 0.47 ind:pre:3p; +rattraper rattraper ver 38.32 39.39 16.35 16.49 inf; +rattrapera rattraper ver 38.32 39.39 1.67 0.54 ind:fut:3s; +rattraperai rattraper ver 38.32 39.39 1.41 0.34 ind:fut:1s; +rattraperaient rattraper ver 38.32 39.39 0.04 0 cnd:pre:3p; +rattraperais rattraper ver 38.32 39.39 0.23 0.2 cnd:pre:1s;cnd:pre:2s; +rattraperait rattraper ver 38.32 39.39 0.15 0.54 cnd:pre:3s; +rattraperas rattraper ver 38.32 39.39 0.53 0.27 ind:fut:2s; +rattraperez rattraper ver 38.32 39.39 0.34 0.14 ind:fut:2p; +rattraperons rattraper ver 38.32 39.39 0.42 0.14 ind:fut:1p; +rattraperont rattraper ver 38.32 39.39 0.5 0.07 ind:fut:3p; +rattrapes rattraper ver 38.32 39.39 0.37 0.07 ind:pre:2s; +rattrapez rattraper ver 38.32 39.39 3.11 0.07 imp:pre:2p;ind:pre:2p; +rattrapiez rattraper ver 38.32 39.39 0.01 0 ind:imp:2p; +rattrapions rattraper ver 38.32 39.39 0 0.41 ind:imp:1p; +rattrapons rattraper ver 38.32 39.39 0.82 0.07 imp:pre:1p;ind:pre:1p; +rattrapât rattraper ver 38.32 39.39 0 0.07 sub:imp:3s; +rattrapèrent rattraper ver 38.32 39.39 0.02 0.41 ind:pas:3p; +rattrapé rattraper ver m s 38.32 39.39 2.3 3.85 par:pas; +rattrapée rattraper ver f s 38.32 39.39 0.92 1.55 par:pas; +rattrapées rattraper ver f p 38.32 39.39 0 0.27 par:pas; +rattrapés rattraper ver m p 38.32 39.39 0.49 0.74 par:pas; +ratura raturer ver 0.04 2.09 0 0.14 ind:pas:3s; +raturai raturer ver 0.04 2.09 0 0.07 ind:pas:1s; +raturais raturer ver 0.04 2.09 0 0.07 ind:imp:1s; +raturait raturer ver 0.04 2.09 0 0.14 ind:imp:3s; +rature raturer ver 0.04 2.09 0.02 0.07 ind:pre:3s; +raturer raturer ver 0.04 2.09 0 0.41 inf; +ratures rature nom f p 0.13 1.96 0.11 1.49 +raturé raturer ver m s 0.04 2.09 0.02 0.54 par:pas; +raturée raturer ver f s 0.04 2.09 0 0.41 par:pas; +raturées raturer ver f p 0.04 2.09 0 0.14 par:pas; +raturés raturer ver m p 0.04 2.09 0 0.14 par:pas; +ratèrent rater ver 80.45 22.7 0 0.14 ind:pas:3p; +raté rater ver m s 80.45 22.7 34.33 7.7 par:pas; +ratée rater ver f s 80.45 22.7 1.59 1.08 par:pas; +ratées raté adj f p 4.52 4.05 0.44 0.34 +ratés raté nom m p 8.45 4.93 1.27 1.96 +raucité raucité nom f s 0 0.61 0 0.61 +rauqua rauquer ver 0 0.2 0 0.07 ind:pas:3s; +rauque rauque adj s 0.44 18.85 0.3 14.8 +rauquement rauquement nom m s 0 0.2 0 0.2 +rauques rauque adj p 0.44 18.85 0.14 4.05 +ravage ravager ver 3.65 9.26 0.34 0.54 ind:pre:3s; +ravagea ravager ver 3.65 9.26 0.14 0.34 ind:pas:3s; +ravageaient ravager ver 3.65 9.26 0.16 0.68 ind:imp:3p; +ravageais ravager ver 3.65 9.26 0.01 0 ind:imp:2s; +ravageait ravager ver 3.65 9.26 0.02 1.22 ind:imp:3s; +ravageant ravageant adj m s 0.05 0.27 0.05 0.2 +ravageante ravageant adj f s 0.05 0.27 0 0.07 +ravagent ravager ver 3.65 9.26 0.76 0.41 ind:pre:3p; +ravager ravager ver 3.65 9.26 0.28 1.22 inf; +ravagera ravager ver 3.65 9.26 0.02 0 ind:fut:3s; +ravagerai ravager ver 3.65 9.26 0 0.07 ind:fut:1s; +ravageraient ravager ver 3.65 9.26 0 0.07 cnd:pre:3p; +ravages ravage nom m p 2.16 5.54 2.04 5.14 +ravageur ravageur adj m s 0.12 1.42 0.07 1.01 +ravageurs ravageur adj m p 0.12 1.42 0.02 0.14 +ravageuse ravageur nom f s 0.04 0.34 0.04 0.14 +ravageuses ravageur adj f p 0.12 1.42 0.01 0 +ravagez ravager ver 3.65 9.26 0.14 0 ind:pre:2p; +ravagèrent ravager ver 3.65 9.26 0 0.14 ind:pas:3p; +ravagé ravager ver m s 3.65 9.26 1.03 2.64 par:pas; +ravagée ravager ver f s 3.65 9.26 0.21 0.74 par:pas; +ravagées ravager ver f p 3.65 9.26 0.06 0.27 par:pas; +ravagés ravager ver m p 3.65 9.26 0.36 0.95 par:pas; +raval raval nom m s 0.2 0 0.2 0 +ravala ravaler ver 1.42 8.99 0 0.88 ind:pas:3s; +ravalai ravaler ver 1.42 8.99 0.01 0.2 ind:pas:1s; +ravalaient ravaler ver 1.42 8.99 0 0.14 ind:imp:3p; +ravalais ravaler ver 1.42 8.99 0 0.14 ind:imp:1s; +ravalait ravaler ver 1.42 8.99 0 0.81 ind:imp:3s; +ravalant ravaler ver 1.42 8.99 0.11 0.95 par:pre; +ravale ravaler ver 1.42 8.99 0.46 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ravalement ravalement nom m s 0.19 0.41 0.19 0.41 +ravalent ravaler ver 1.42 8.99 0.1 0.14 ind:pre:3p; +ravaler ravaler ver 1.42 8.99 0.47 2.09 inf; +ravalera ravaler ver 1.42 8.99 0.01 0 ind:fut:3s; +ravaleront ravaler ver 1.42 8.99 0 0.07 ind:fut:3p; +ravales ravaler ver 1.42 8.99 0.04 0.07 ind:pre:2s; +ravaleur ravaleur nom m s 0 0.07 0 0.07 +ravalez ravaler ver 1.42 8.99 0.01 0 imp:pre:2p; +ravalons ravaler ver 1.42 8.99 0.02 0 imp:pre:1p; +ravalât ravaler ver 1.42 8.99 0 0.07 sub:imp:3s; +ravalé ravaler ver m s 1.42 8.99 0.07 1.01 par:pas; +ravalée ravaler ver f s 1.42 8.99 0.02 0.34 par:pas; +ravalées ravaler ver f p 1.42 8.99 0.1 0.34 par:pas; +ravalés ravaler ver m p 1.42 8.99 0 0.41 par:pas; +ravaudage ravaudage nom m s 0.01 0.2 0.01 0.2 +ravaudait ravauder ver 0 1.08 0 0.34 ind:imp:3s; +ravaudant ravauder ver 0 1.08 0 0.14 par:pre; +ravaude ravauder ver 0 1.08 0 0.14 ind:pre:3s; +ravauder ravauder ver 0 1.08 0 0.27 inf; +ravaudé ravauder ver m s 0 1.08 0 0.07 par:pas; +ravaudées ravauder ver f p 0 1.08 0 0.07 par:pas; +ravaudés ravauder ver m p 0 1.08 0 0.07 par:pas; +rave rave nom f s 1.57 1.01 1.27 0 +ravenelles ravenelle nom f p 0 0.14 0 0.14 +ravennate ravennate adj s 0 0.07 0 0.07 +raves rave nom f p 1.57 1.01 0.3 1.01 +ravi ravir ver m s 72.67 27.91 40.64 11.42 par:pas; +ravie ravir ver f s 72.67 27.91 23.25 5.2 par:pas; +ravier ravier nom m s 0 1.01 0 0.61 +raviers ravier nom m p 0 1.01 0 0.41 +ravies ravir ver f p 72.67 27.91 0.82 0.47 par:pas; +ravigotait ravigoter ver 0.02 0.07 0 0.07 ind:imp:3s; +ravigotant ravigotant adj m s 0.02 0.14 0.02 0.07 +ravigotants ravigotant adj m p 0.02 0.14 0 0.07 +ravigote ravigote nom f s 0 0.14 0 0.14 +ravigoter ravigoter ver 0.02 0.07 0.02 0 inf; +ravin ravin nom m s 4.93 11.35 4.3 9.12 +ravina raviner ver 0.08 2.57 0.04 0.07 ind:pas:3s; +ravinaient raviner ver 0.08 2.57 0 0.14 ind:imp:3p; +ravinant raviner ver 0.08 2.57 0 0.14 par:pre; +ravine ravine nom f s 0.3 0.95 0.25 0.54 +ravinement ravinement nom m s 0 0.14 0 0.07 +ravinements ravinement nom m p 0 0.14 0 0.07 +ravinent raviner ver 0.08 2.57 0 0.07 ind:pre:3p; +raviner raviner ver 0.08 2.57 0 0.14 inf; +ravines ravine nom f p 0.3 0.95 0.05 0.41 +ravins ravin nom m p 4.93 11.35 0.63 2.23 +raviné raviner ver m s 0.08 2.57 0 0.61 par:pas; +ravinée raviner ver f s 0.08 2.57 0.01 0.54 par:pas; +ravinées raviner ver f p 0.08 2.57 0.01 0.27 par:pas; +ravinés raviner ver m p 0.08 2.57 0.01 0.54 par:pas; +ravioli ravioli nom m 2.71 1.22 0.95 0.88 +raviolis ravioli nom m p 2.71 1.22 1.76 0.34 +ravir ravir ver 72.67 27.91 2.08 3.45 inf; +ravirait ravir ver 72.67 27.91 0.13 0.2 cnd:pre:3s; +ravirent ravir ver 72.67 27.91 0 0.2 ind:pas:3p; +raviront ravir ver 72.67 27.91 0.11 0 ind:fut:3p; +ravis ravir ver m p 72.67 27.91 3.81 2.5 imp:pre:2s;par:pas; +ravisa raviser ver 0.99 5.95 0.02 2.57 ind:pas:3s; +ravisais raviser ver 0.99 5.95 0.04 0 ind:imp:1s;ind:imp:2s; +ravisait raviser ver 0.99 5.95 0.02 0.34 ind:imp:3s; +ravisant raviser ver 0.99 5.95 0.1 1.08 par:pre; +ravise raviser ver 0.99 5.95 0.22 0.81 ind:pre:1s;ind:pre:3s; +ravisent raviser ver 0.99 5.95 0.02 0 ind:pre:3p; +raviser raviser ver 0.99 5.95 0.07 0.61 inf; +ravisera raviser ver 0.99 5.95 0.03 0 ind:fut:3s; +raviserais raviser ver 0.99 5.95 0.04 0 cnd:pre:2s; +ravises raviser ver 0.99 5.95 0.02 0 ind:pre:2s; +ravisez raviser ver 0.99 5.95 0.02 0 imp:pre:2p;ind:pre:2p; +ravissaient ravir ver 72.67 27.91 0.02 0.34 ind:imp:3p; +ravissait ravir ver 72.67 27.91 0.02 2.43 ind:imp:3s; +ravissant ravissant adj m s 15.85 13.51 4.62 4.59 +ravissante ravissant adj f s 15.85 13.51 9.22 5.88 +ravissantes ravissant adj f p 15.85 13.51 1.47 1.62 +ravissants ravissant adj m p 15.85 13.51 0.54 1.42 +ravisse ravir ver 72.67 27.91 0.27 0 sub:pre:3s; +ravissement ravissement nom m s 1.34 6.55 1.34 6.49 +ravissements ravissement nom m p 1.34 6.55 0 0.07 +ravissent ravir ver 72.67 27.91 0.11 0.54 ind:pre:3p; +ravisseur ravisseur nom m s 5.75 1.69 2.21 1.01 +ravisseurs ravisseur nom m p 5.75 1.69 3.52 0.68 +ravisseuse ravisseur nom f s 5.75 1.69 0.03 0 +ravisé raviser ver m s 0.99 5.95 0.32 0.34 par:pas; +ravisée raviser ver f s 0.99 5.95 0.07 0.2 par:pas; +ravit ravir ver 72.67 27.91 1.15 1.01 ind:pre:3s;ind:pas:3s; +ravitaillaient ravitailler ver 1.49 3.85 0 0.34 ind:imp:3p; +ravitaillait ravitailler ver 1.49 3.85 0 0.27 ind:imp:3s; +ravitaille ravitailler ver 1.49 3.85 0.36 0.34 imp:pre:2s;ind:pre:3s; +ravitaillement ravitaillement nom m s 2.83 12.57 2.66 11.42 +ravitaillements ravitaillement nom m p 2.83 12.57 0.17 1.15 +ravitaillent ravitailler ver 1.49 3.85 0.05 0.14 ind:pre:3p; +ravitailler ravitailler ver 1.49 3.85 0.82 1.69 inf; +ravitaillera ravitailler ver 1.49 3.85 0.05 0 ind:fut:3s; +ravitaillerait ravitailler ver 1.49 3.85 0.01 0.14 cnd:pre:3s; +ravitailleras ravitailler ver 1.49 3.85 0 0.07 ind:fut:2s; +ravitaillerez ravitailler ver 1.49 3.85 0.01 0 ind:fut:2p; +ravitailleur ravitailleur nom m s 0.85 0.2 0.75 0.14 +ravitailleurs ravitailleur nom m p 0.85 0.2 0.09 0.07 +ravitailleuse ravitailleur nom f s 0.85 0.2 0.01 0 +ravitaillons ravitailler ver 1.49 3.85 0.01 0 ind:pre:1p; +ravitaillé ravitailler ver m s 1.49 3.85 0.08 0.41 par:pas; +ravitaillée ravitailler ver f s 1.49 3.85 0.01 0.27 par:pas; +ravitaillées ravitailler ver f p 1.49 3.85 0.01 0.2 par:pas; +ravitaillés ravitailler ver m p 1.49 3.85 0.08 0 par:pas; +raviva raviver ver 2.17 4.46 0.01 0.47 ind:pas:3s; +ravivaient raviver ver 2.17 4.46 0 0.07 ind:imp:3p; +ravivait raviver ver 2.17 4.46 0 0.61 ind:imp:3s; +ravivant raviver ver 2.17 4.46 0.11 0.14 par:pre; +ravive raviver ver 2.17 4.46 0.7 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ravivement ravivement nom m s 0 0.07 0 0.07 +ravivent raviver ver 2.17 4.46 0.12 0.27 ind:pre:3p; +raviver raviver ver 2.17 4.46 0.79 1.62 inf; +ravivez raviver ver 2.17 4.46 0.16 0 imp:pre:2p;ind:pre:2p; +ravivât raviver ver 2.17 4.46 0 0.07 sub:imp:3s; +ravivé raviver ver m s 2.17 4.46 0.12 0.47 par:pas; +ravivée raviver ver f s 2.17 4.46 0.14 0.47 par:pas; +ravoir ravoir ver 1.16 1.08 1.16 1.08 inf; +ray_grass ray_grass nom m 0 0.14 0 0.14 +raya rayer ver 7.42 11.22 0.02 0.54 ind:pas:3s; +rayables rayable adj p 0 0.07 0 0.07 +rayaient rayer ver 7.42 11.22 0 0.27 ind:imp:3p; +rayait rayer ver 7.42 11.22 0.02 0.61 ind:imp:3s; +rayant rayer ver 7.42 11.22 0.14 0.41 par:pre; +raye rayer ver 7.42 11.22 0.83 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +rayent rayer ver 7.42 11.22 0.09 0.07 ind:pre:3p; +rayer rayer ver 7.42 11.22 2.26 1.76 inf; +rayera rayer ver 7.42 11.22 0.02 0 ind:fut:3s; +rayerai rayer ver 7.42 11.22 0.02 0 ind:fut:1s; +rayerais rayer ver 7.42 11.22 0 0.07 cnd:pre:1s; +rayeras rayer ver 7.42 11.22 0.1 0 ind:fut:2s; +rayeront rayer ver 7.42 11.22 0.01 0 ind:fut:3p; +rayez rayer ver 7.42 11.22 0.6 0.14 imp:pre:2p;ind:pre:2p; +rayions rayer ver 7.42 11.22 0 0.07 ind:imp:1p; +rayon rayon nom m s 27 55.74 19.32 27.03 +rayon_éclair rayon_éclair nom m s 0 0.07 0 0.07 +rayonna rayonner ver 2.28 10.34 0 0.14 ind:pas:3s; +rayonnage rayonnage nom m s 0.06 4.73 0.01 0.88 +rayonnages rayonnage nom m p 0.06 4.73 0.05 3.85 +rayonnaient rayonner ver 2.28 10.34 0 1.01 ind:imp:3p; +rayonnais rayonner ver 2.28 10.34 0.03 0.07 ind:imp:1s; +rayonnait rayonner ver 2.28 10.34 0.32 3.85 ind:imp:3s; +rayonnant rayonnant adj m s 1.65 4.8 0.5 1.22 +rayonnante rayonnant adj f s 1.65 4.8 1 2.7 +rayonnantes rayonnant adj f p 1.65 4.8 0.03 0.41 +rayonnants rayonnant adj m p 1.65 4.8 0.12 0.47 +rayonne rayonner ver 2.28 10.34 1 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rayonnement rayonnement nom m s 1.07 6.69 1.02 6.55 +rayonnements rayonnement nom m p 1.07 6.69 0.05 0.14 +rayonnent rayonner ver 2.28 10.34 0.05 0.47 ind:pre:3p; +rayonner rayonner ver 2.28 10.34 0.21 0.81 inf; +rayonnera rayonner ver 2.28 10.34 0.01 0.07 ind:fut:3s; +rayonnerait rayonner ver 2.28 10.34 0 0.2 cnd:pre:3s; +rayonnes rayonner ver 2.28 10.34 0.25 0.07 ind:pre:2s; +rayonneur rayonneur nom m s 0.03 0 0.03 0 +rayonnez rayonner ver 2.28 10.34 0.06 0 imp:pre:2p;ind:pre:2p; +rayonné rayonner ver m s 2.28 10.34 0.05 0.07 par:pas; +rayons rayon nom m p 27 55.74 7.62 28.04 +rayure rayure nom f s 2.82 7.36 0.36 0.61 +rayures rayure nom f p 2.82 7.36 2.46 6.76 +rayât rayer ver 7.42 11.22 0 0.07 sub:imp:3s; +rayé rayer ver m s 7.42 11.22 2.09 3.04 par:pas; +rayée rayé adj f s 2.02 6.82 0.98 1.15 +rayées rayer ver f p 7.42 11.22 0.2 0.47 par:pas; +rayés rayer ver m p 7.42 11.22 0.3 1.01 par:pas; +raz raz nom m 0.23 1.28 0.23 1.28 +raz_de_marée raz_de_marée nom m 0.57 0.2 0.57 0.2 +razzia razzia nom f s 0.55 1.28 0.45 0.95 +razziais razzier ver 0 0.27 0 0.07 ind:imp:1s; +razzias razzia nom f p 0.55 1.28 0.1 0.34 +razzier razzier ver 0 0.27 0 0.2 inf; +raïa raïa nom m s 0.1 0 0.1 0 +raïs raïs nom m 0 0.14 0 0.14 +re r adv 21.43 7.5 21.43 7.5 +reaboyer reaboyer ver 0 0.07 0 0.07 ind:pre:3s; +rebalbutiant rebalbutiant adj m s 0 0.07 0 0.07 +rebaptême rebaptême nom m s 0 0.07 0 0.07 +re_belote re_belote ono 0.01 0 0.01 0 +rebiberonner rebiberonner ver 0 0.07 0 0.07 inf; +rebide rebide nom m s 0 0.07 0 0.07 +reblinder reblinder ver 0 0.07 0 0.07 inf; +rebombardon rebombardon nom m p 0.01 0 0.01 0 +reboucler reboucler ver 0.14 1.01 0.01 0 inf; +recabosser recabosser ver m s 0 0.07 0 0.07 par:pas; +recafé recafé adj 0 0.07 0 0.07 +recailloux recailloux nom m p 0 0.07 0 0.07 +recalibrer recalibrer ver 0.01 0 0.01 0 ind:imp:1s; +recasser recasser ver f s 0.24 0.07 0.01 0 par:pas; +rechanteur rechanteur nom m s 0.01 0 0.01 0 +rechiader rechiader ver 0 0.07 0 0.07 inf; +reciseler reciseler ver 0 0.07 0 0.07 ind:pre:3s; +reclasser reclasser ver 0.09 0.2 0 0.07 ind:pre:3s; +reclasser reclasser ver 0.09 0.2 0 0.07 inf; +reconnaître reconnaître ver 140.73 229.19 0 0.07 inf; +recontacter recontacter ver 0.38 0.07 0.03 0 ind:pre:1s; +recontacter recontacter ver 0.38 0.07 0.01 0 ind:pre:3p; +recontacter recontacter ver 0.38 0.07 0.01 0 inf; +recontacter recontacter ver 0.38 0.07 0.06 0 ind:fut:1s; +reconvaincre reconvaincre ver 0 0.07 0 0.07 ind:fut:3s; +recoup recoup nom m s 0 0.07 0 0.07 +recrac recrac nom m s 0 0.07 0 0.07 +recreuser recreuser ver m p 0.14 0.2 0 0.07 par:pas; +recroquis recroquis nom m 0 0.07 0 0.07 +recréation recréation nom f s 0.04 0.27 0.03 0.07 +recréer recréer ver f s 2.23 4.39 0 0.07 par:pas; +recul recul nom m s 3.59 15.61 0 0.07 +rediffuser rediffuser ver 0.2 0.07 0.01 0 ind:pre:2s; +redose redose nom f s 0 0.07 0 0.07 +redrapeau redrapeau nom m s 0 0.07 0 0.07 +redéchirer redéchirer ver 0 0.07 0 0.07 ind:pre:3s; +redéclic redéclic nom m s 0 0.07 0 0.07 +redécorer redécorer ver 0.08 0 0.01 0 ind:pre:1s; +redécorer redécorer ver 0.08 0 0.07 0 inf; +redéménager redéménager ver 0 0.07 0 0.07 inf; +reexpliquer reexpliquer ver 0 0.07 0 0.07 ind:pre:3s; +refaim refaim nom f s 0.14 0 0.14 0 +refrapper refrapper ver 0.07 0.14 0 0.07 ind:pre:3s; +refrapper refrapper ver m s 0.07 0.14 0.01 0.07 par:pas; +refuser refuser ver 143.96 152.77 0 0.07 ind:pre:1s; +regomme regomme nom f s 0 0.07 0 0.07 +rehistoire rehistoire nom f p 0 0.07 0 0.07 +rehygiène rehygiène nom f s 0 0.07 0 0.07 +re_inter re_inter nom m s 0 0.07 0 0.07 +rekidnapper rekidnapper ver 0.01 0 0.01 0 ind:imp:1s; +relettre relettre nom f s 0 0.07 0 0.07 +remain remain nom f s 0 0.07 0 0.07 +rematérialisation rematérialisation nom f s 0.01 0 0.01 0 +remorphine remorphine nom f s 0 0.07 0 0.07 +rené rené adj m p 0.01 0 0.01 0 +repayer repayer ver 0.23 0.41 0 0.07 imp:pre:2s; +repenser repenser ver 9.68 12.16 0.01 0 inf; +repotasser repotasser ver m s 0 0.07 0 0.07 par:pas; +reprogrammation reprogrammation nom f s 0.01 0 0.01 0 +reprogrammer reprogrammer ver f s 1.11 0 0.01 0 par:pas; +reraconter reraconter ver 0 0.14 0 0.07 ind:pre:3s; +reraconter reraconter ver f p 0 0.14 0 0.07 par:pas; +reremplir reremplir ver 0.01 0.07 0.01 0.07 inf; +rerentrer rerentrer ver 0.05 0.07 0.05 0.07 inf; +rerespirer rerespirer ver 0 0.07 0 0.07 inf; +reressortir reressortir ver 0 0.07 0 0.07 ind:imp:3s; +reretirer reretirer ver 0 0.07 0 0.07 ind:pre:3p; +rerigole rerigole nom f s 0 0.07 0 0.07 +rerécurer rerécurer ver 0 0.07 0 0.07 ind:imp:3s; +reréparer reréparer ver 0.01 0 0.01 0 inf; +rerêvé rerêvé adj m s 0 0.07 0 0.07 +resaluer resaluer ver m s 0 0.07 0 0.07 par:pas; +resavater resavater ver m s 0.01 0 0.01 0 par:pas; +resculpter resculpter ver 0 0.07 0 0.07 ind:pre:3s; +resevrage resevrage nom m s 0 0.07 0 0.07 +resigner resigner ver 0.02 0 0.02 0 inf; +resommeil resommeil nom m s 0 0.07 0 0.07 +resonner resonner ver 0 0.07 0 0.07 ind:pre:3s; +restructuration restructuration nom f s 0.91 0.34 0 0.07 +reséparé reséparé adj m p 0 0.07 0 0.07 +retaloche retaloche nom f s 0 0.14 0 0.14 +retitiller retitiller ver 0 0.14 0 0.14 ind:pre:3s; +retraité retraité adj f s 0.68 1.15 0 0.07 +retravail retravail nom m s 0 0.07 0 0.07 +retuage retuage nom m s 0.04 0 0.04 0 +retuer retuer ver 0.08 0.07 0.07 0.07 inf; +retu retu adj f p 0.01 0 0.01 0 +revouloir revouloir ver 0.45 0.41 0.04 0 ind:pre:2s; +revie revie nom f s 0 0.07 0 0.07 +revisiter revisiter ver 0.21 0.61 0 0.07 ind:pre:3s; +revivre revivre ver 10.37 20.68 0 0.07 ind:pre:3s; +revérifier revérifier ver 0.67 0 0.1 0 inf; +revérifié revérifié adj m s 0.34 0.07 0.1 0 +reébranler reébranler ver m p 0 0.07 0 0.07 par:pas; +reéchanger reéchanger ver 0.01 0 0.01 0 inf; +reader reader nom m s 0.11 0.07 0.11 0.07 +ready_made ready_made nom m s 0 0.07 0 0.07 +rebab rebab nom m s 0 0.07 0 0.07 +rebaise rebaiser ver 0.12 0.27 0.12 0 ind:pre:1s;ind:pre:3s; +rebaisent rebaiser ver 0.12 0.27 0 0.07 ind:pre:3p; +rebaiser rebaiser ver 0.12 0.27 0 0.07 inf; +rebaissa rebaisser ver 0.01 0.74 0 0.27 ind:pas:3s; +rebaissait rebaisser ver 0.01 0.74 0 0.07 ind:imp:3s; +rebaisse rebaisser ver 0.01 0.74 0.01 0.27 imp:pre:2s;ind:pre:3s; +rebaissé rebaisser ver m s 0.01 0.74 0 0.14 par:pas; +rebaisé rebaiser ver m s 0.12 0.27 0 0.14 par:pas; +rebander rebander ver 0.01 0.14 0.01 0.14 inf; +rebaptisa rebaptiser ver 0.71 0.88 0.03 0.07 ind:pas:3s; +rebaptise rebaptiser ver 0.71 0.88 0.04 0 ind:pre:1s;ind:pre:3s; +rebaptiser rebaptiser ver 0.71 0.88 0.23 0.14 inf; +rebaptisé rebaptiser ver m s 0.71 0.88 0.18 0.34 par:pas; +rebaptisée rebaptiser ver f s 0.71 0.88 0.22 0.27 par:pas; +rebaptisées rebaptiser ver f p 0.71 0.88 0 0.07 par:pas; +rebarré rebarré adj m s 0 0.2 0 0.2 +rebasculait rebasculer ver 0.01 0.2 0 0.07 ind:imp:3s; +rebascule rebasculer ver 0.01 0.2 0.01 0.07 ind:pre:1s;ind:pre:3s; +rebasculera rebasculer ver 0.01 0.2 0 0.07 ind:fut:3s; +rebat rebattre ver 0.22 1.55 0.11 0.2 ind:pre:3s; +rebats rebattre ver 0.22 1.55 0.02 0 ind:pre:1s;ind:pre:2s; +rebattait rebattre ver 0.22 1.55 0 0.27 ind:imp:3s; +rebattent rebattre ver 0.22 1.55 0.01 0.07 ind:pre:3p; +rebattez rebattre ver 0.22 1.55 0.03 0 imp:pre:2p;ind:pre:2p; +rebattit rebattre ver 0.22 1.55 0 0.07 ind:pas:3s; +rebattre rebattre ver 0.22 1.55 0.04 0.34 inf; +rebattu rebattu adj m s 0.02 0.34 0.02 0 +rebattue rebattu adj f s 0.02 0.34 0 0.2 +rebattues rebattre ver f p 0.22 1.55 0 0.07 par:pas; +rebattus rebattre ver m p 0.22 1.55 0 0.07 par:pas; +rebec rebec nom m s 0.01 0 0.01 0 +rebecter rebecter ver 0 0.41 0 0.2 inf; +rebecté rebecter ver m s 0 0.41 0 0.2 par:pas; +rebella rebeller ver 3.77 1.62 0.02 0.07 ind:pas:3s; +rebellaient rebeller ver 3.77 1.62 0.03 0.07 ind:imp:3p; +rebellais rebeller ver 3.77 1.62 0.04 0.07 ind:imp:1s;ind:imp:2s; +rebellait rebeller ver 3.77 1.62 0.03 0.07 ind:imp:3s; +rebellant rebeller ver 3.77 1.62 0.01 0 par:pre; +rebelle rebelle adj s 5.95 4.32 3.73 2.77 +rebellent rebeller ver 3.77 1.62 0.76 0 ind:pre:3p; +rebeller rebeller ver 3.77 1.62 0.82 0.41 inf; +rebelles rebelle nom p 8.66 6.08 6.41 4.26 +rebellez rebeller ver 3.77 1.62 0.03 0.07 imp:pre:2p;ind:pre:2p; +rebellât rebeller ver 3.77 1.62 0 0.07 sub:imp:3s; +rebellèrent rebeller ver 3.77 1.62 0.04 0 ind:pas:3p; +rebellé rebeller ver m s 3.77 1.62 0.47 0.2 par:pas; +rebellée rebeller ver f s 3.77 1.62 0.15 0.27 par:pas; +rebellés rebeller ver m p 3.77 1.62 0.19 0 par:pas; +rebelote rebelote ono 0.27 0.68 0.27 0.68 +rebiffa rebiffer ver 0.29 3.58 0.01 0.2 ind:pas:3s; +rebiffai rebiffer ver 0.29 3.58 0 0.07 ind:pas:1s; +rebiffaient rebiffer ver 0.29 3.58 0 0.2 ind:imp:3p; +rebiffais rebiffer ver 0.29 3.58 0.01 0 ind:imp:2s; +rebiffait rebiffer ver 0.29 3.58 0 0.2 ind:imp:3s; +rebiffant rebiffer ver 0.29 3.58 0 0.07 par:pre; +rebiffe rebiffer ver 0.29 3.58 0.14 1.49 ind:pre:1s;ind:pre:3s; +rebiffent rebiffer ver 0.29 3.58 0.03 0.2 ind:pre:3p; +rebiffer rebiffer ver 0.29 3.58 0.04 0.88 inf; +rebifferai rebiffer ver 0.29 3.58 0.01 0 ind:fut:1s; +rebiffes rebiffer ver 0.29 3.58 0.03 0 ind:pre:2s; +rebiffèrent rebiffer ver 0.29 3.58 0 0.07 ind:pas:3p; +rebiffé rebiffer ver m s 0.29 3.58 0.02 0 par:pas; +rebiffée rebiffer ver f s 0.29 3.58 0.01 0.2 par:pas; +rebiquaient rebiquer ver 0 0.74 0 0.34 ind:imp:3p; +rebiquait rebiquer ver 0 0.74 0 0.07 ind:imp:3s; +rebique rebiquer ver 0 0.74 0 0.2 imp:pre:2s;ind:pre:3s; +rebiquer rebiquer ver 0 0.74 0 0.07 inf; +rebiquée rebiquer ver f s 0 0.74 0 0.07 par:pas; +reblanchir reblanchir ver 0 0.07 0 0.07 inf; +reblochon reblochon nom m s 0.02 0.41 0.02 0.14 +reblochons reblochon nom m p 0.02 0.41 0 0.27 +rebloquer rebloquer ver 0.14 0 0.14 0 inf; +rebobiner rebobiner ver 0.01 0 0.01 0 inf; +reboire reboire ver 0.4 0.47 0.17 0.14 inf; +rebois reboire ver 0.4 0.47 0 0.07 ind:pre:1s; +reboise reboiser ver 0 0.14 0 0.07 ind:pre:3s; +reboisement reboisement nom m s 0.1 0.14 0.1 0.14 +reboisées reboiser ver f p 0 0.14 0 0.07 par:pas; +reboit reboire ver 0.4 0.47 0.04 0 ind:pre:3s; +rebond rebond nom m s 0.62 0.74 0.55 0.68 +rebondi rebondir ver m s 3.42 10.68 0.47 0.81 par:pas; +rebondie rebondi adj f s 0.25 2.3 0.03 0.47 +rebondies rebondi adj f p 0.25 2.3 0.04 0.81 +rebondir rebondir ver 3.42 10.68 1.56 2.84 inf; +rebondira rebondir ver 3.42 10.68 0.05 0 ind:fut:3s; +rebondiraient rebondir ver 3.42 10.68 0 0.07 cnd:pre:3p; +rebondirait rebondir ver 3.42 10.68 0.01 0.07 cnd:pre:3s; +rebondirent rebondir ver 3.42 10.68 0 0.27 ind:pas:3p; +rebondis rebondi adj m p 0.25 2.3 0.14 0.34 +rebondissaient rebondir ver 3.42 10.68 0.27 0.74 ind:imp:3p; +rebondissais rebondir ver 3.42 10.68 0 0.14 ind:imp:1s; +rebondissait rebondir ver 3.42 10.68 0.03 1.55 ind:imp:3s; +rebondissant rebondissant adj m s 0.06 2.09 0.04 1.82 +rebondissante rebondissant adj f s 0.06 2.09 0.01 0.07 +rebondissantes rebondissant adj f p 0.06 2.09 0.01 0.07 +rebondissants rebondissant adj m p 0.06 2.09 0 0.14 +rebondisse rebondir ver 3.42 10.68 0.11 0 sub:pre:3s; +rebondissement rebondissement nom m s 0.5 1.89 0.27 0.68 +rebondissements rebondissement nom m p 0.5 1.89 0.22 1.22 +rebondissent rebondir ver 3.42 10.68 0.17 0.54 ind:pre:3p; +rebondit rebondir ver 3.42 10.68 0.65 3.31 ind:pre:3s;ind:pas:3s; +rebonds rebond nom m p 0.62 0.74 0.07 0.07 +rebonjour rebonjour nom m s 0.02 0 0.02 0 +rebooter rebooter ver 0.04 0 0.04 0 inf; +rebord rebord nom m s 2.69 18.65 2.66 17.3 +reborder reborder ver 0.01 0.07 0.01 0 inf; +rebords rebord nom m p 2.69 18.65 0.04 1.35 +rebordée reborder ver f s 0.01 0.07 0 0.07 par:pas; +reboucha reboucher ver 0.8 1.42 0 0.2 ind:pas:3s; +rebouchait reboucher ver 0.8 1.42 0 0.07 ind:imp:3s; +rebouchant reboucher ver 0.8 1.42 0 0.07 par:pre; +rebouche reboucher ver 0.8 1.42 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebouchent reboucher ver 0.8 1.42 0.01 0.07 ind:pre:3p; +reboucher reboucher ver 0.8 1.42 0.36 0.47 inf; +reboucheront reboucher ver 0.8 1.42 0.1 0 ind:fut:3p; +rebouchez reboucher ver 0.8 1.42 0.04 0 imp:pre:2p; +rebouchèrent reboucher ver 0.8 1.42 0 0.07 ind:pas:3p; +rebouché reboucher ver m s 0.8 1.42 0.18 0.14 par:pas; +rebouchée reboucher ver f s 0.8 1.42 0.02 0.07 par:pas; +rebouchées reboucher ver f p 0.8 1.42 0 0.07 par:pas; +rebouchés reboucher ver m p 0.8 1.42 0.01 0.14 par:pas; +reboucla reboucler ver 0.14 1.01 0 0.07 ind:pas:3s; +reboucle reboucler ver 0.14 1.01 0.12 0.27 imp:pre:2s;ind:pre:3s; +reboucler reboucler ver 0.14 1.01 0.01 0.47 inf; +rebouclé reboucler ver m s 0.14 1.01 0 0.14 par:pas; +rebouclée reboucler ver f s 0.14 1.01 0 0.07 par:pas; +reboule reboule nom f s 0.27 0 0.27 0 +rebourrer rebourrer ver 0 0.07 0 0.07 inf; +rebours rebours adv 3.52 2.91 3.52 2.91 +reboute rebouter ver 0.14 0.34 0 0.2 ind:pre:1s; +rebouter rebouter ver 0.14 0.34 0.14 0.07 inf; +rebouteuse rebouteur nom f s 0.14 0 0.14 0 +rebouteux rebouteux nom m 0.26 0.54 0.26 0.54 +reboutez rebouter ver 0.14 0.34 0 0.07 ind:pre:2p; +reboutonna reboutonner ver 0.38 1.49 0 0.34 ind:pas:3s; +reboutonnaient reboutonner ver 0.38 1.49 0 0.07 ind:imp:3p; +reboutonnais reboutonner ver 0.38 1.49 0 0.07 ind:imp:1s; +reboutonnant reboutonner ver 0.38 1.49 0 0.2 par:pre; +reboutonne reboutonner ver 0.38 1.49 0.06 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reboutonner reboutonner ver 0.38 1.49 0.01 0.2 inf; +reboutonnerait reboutonner ver 0.38 1.49 0 0.07 cnd:pre:3s; +reboutonnez reboutonner ver 0.38 1.49 0.17 0 imp:pre:2p;ind:pre:2p; +reboutonnèrent reboutonner ver 0.38 1.49 0 0.07 ind:pas:3p; +reboutonné reboutonner ver m s 0.38 1.49 0 0.2 par:pas; +reboutonnée reboutonner ver f s 0.38 1.49 0.14 0 par:pas; +reboutonnés reboutonner ver m p 0.38 1.49 0 0.07 par:pas; +rebraguetter rebraguetter ver 0 0.14 0 0.07 inf; +rebraguetté rebraguetter ver m s 0 0.14 0 0.07 par:pas; +rebrancha rebrancher ver 0.73 0.81 0 0.07 ind:pas:3s; +rebranche rebrancher ver 0.73 0.81 0.22 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebrancher rebrancher ver 0.73 0.81 0.23 0.07 inf; +rebranchez rebrancher ver 0.73 0.81 0.12 0 imp:pre:2p; +rebranché rebrancher ver m s 0.73 0.81 0.16 0.34 par:pas; +rebranchée rebrancher ver f s 0.73 0.81 0.01 0 par:pas; +rebrodait rebroder ver 0 0.2 0 0.07 ind:imp:3s; +rebrodée rebroder ver f s 0 0.2 0 0.07 par:pas; +rebrodés rebroder ver m p 0 0.2 0 0.07 par:pas; +rebrosser rebrosser ver 0.02 0 0.02 0 inf; +rebroussa rebrousser ver 1.52 6.76 0.01 1.08 ind:pas:3s; +rebroussai rebrousser ver 1.52 6.76 0.01 0.07 ind:pas:1s; +rebroussaient rebrousser ver 1.52 6.76 0.01 0.14 ind:imp:3p; +rebroussait rebrousser ver 1.52 6.76 0 0.2 ind:imp:3s; +rebroussant rebrousser ver 1.52 6.76 0.14 0.27 par:pre; +rebrousse rebrousser ver 1.52 6.76 0.17 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebroussement rebroussement nom m s 0 0.07 0 0.07 +rebroussent rebrousser ver 1.52 6.76 0.03 0.2 ind:pre:3p; +rebrousser rebrousser ver 1.52 6.76 0.69 1.89 inf; +rebrousserai rebrousser ver 1.52 6.76 0.01 0 ind:fut:1s; +rebrousserez rebrousser ver 1.52 6.76 0 0.07 ind:fut:2p; +rebroussez rebrousser ver 1.52 6.76 0.14 0 imp:pre:2p;ind:pre:2p; +rebroussons rebrousser ver 1.52 6.76 0.11 0.14 imp:pre:1p;ind:pre:1p; +rebroussâmes rebrousser ver 1.52 6.76 0 0.07 ind:pas:1p; +rebroussât rebrousser ver 1.52 6.76 0 0.07 sub:imp:3s; +rebroussèrent rebrousser ver 1.52 6.76 0 0.27 ind:pas:3p; +rebroussé rebrousser ver m s 1.52 6.76 0.2 0.88 par:pas; +rebroussée rebrousser ver f s 1.52 6.76 0 0.07 par:pas; +rebroussées rebrousser ver f p 1.52 6.76 0 0.07 par:pas; +rebroussés rebrousser ver m p 1.52 6.76 0 0.14 par:pas; +rebrûlé rebrûler ver m s 0 0.07 0 0.07 par:pas; +rebu reboire ver m s 0.4 0.47 0 0.14 par:pas; +rebuffade rebuffade nom f s 0.07 1.35 0.03 0.27 +rebuffades rebuffade nom f p 0.07 1.35 0.04 1.08 +rebus reboire ver m p 0.4 0.47 0.16 0 par:pas; +rebut rebut nom m s 2.15 4.26 1.43 2.97 +rebuta rebuter ver 0.71 5.34 0 0.07 ind:pas:3s; +rebutaient rebuter ver 0.71 5.34 0.01 0.2 ind:imp:3p; +rebutait rebuter ver 0.71 5.34 0 1.08 ind:imp:3s; +rebutant rebutant adj m s 0.17 1.62 0.02 0.68 +rebutante rebutant adj f s 0.17 1.62 0 0.41 +rebutantes rebutant adj f p 0.17 1.62 0.01 0.27 +rebutants rebutant adj m p 0.17 1.62 0.14 0.27 +rebute rebuter ver 0.71 5.34 0.45 0.95 ind:pre:3s; +rebutent rebuter ver 0.71 5.34 0.01 0.27 ind:pre:3p; +rebuter rebuter ver 0.71 5.34 0.02 0.61 inf; +rebutera rebuter ver 0.71 5.34 0 0.07 ind:fut:3s; +rebuterait rebuter ver 0.71 5.34 0 0.07 cnd:pre:3s; +rebuts rebut nom m p 2.15 4.26 0.72 1.28 +rebutèrent rebuter ver 0.71 5.34 0 0.07 ind:pas:3p; +rebuté rebuter ver m s 0.71 5.34 0.06 1.01 par:pas; +rebutée rebuter ver f s 0.71 5.34 0.03 0.47 par:pas; +rebutées rebuter ver f p 0.71 5.34 0.01 0.07 par:pas; +rebutés rebuter ver m p 0.71 5.34 0.12 0.2 par:pas; +rebuvait reboire ver 0.4 0.47 0 0.07 ind:imp:3s; +rebâti rebâtir ver m s 0.97 2.36 0.04 0.41 par:pas; +rebâtie rebâtir ver f s 0.97 2.36 0.01 0.14 par:pas; +rebâties rebâtir ver f p 0.97 2.36 0.01 0.27 par:pas; +rebâtir rebâtir ver 0.97 2.36 0.82 0.88 inf; +rebâtirai rebâtir ver 0.97 2.36 0.01 0 ind:fut:1s; +rebâtirent rebâtir ver 0.97 2.36 0 0.07 ind:pas:3p; +rebâtirons rebâtir ver 0.97 2.36 0.01 0 ind:fut:1p; +rebâtis rebâtir ver m p 0.97 2.36 0.01 0.2 ind:pre:1s;par:pas; +rebâtissaient rebâtir ver 0.97 2.36 0 0.07 ind:imp:3p; +rebâtissant rebâtir ver 0.97 2.36 0 0.07 par:pre; +rebâtissent rebâtir ver 0.97 2.36 0.02 0 ind:pre:3p; +rebâtissons rebâtir ver 0.97 2.36 0 0.07 imp:pre:1p; +rebâtit rebâtir ver 0.97 2.36 0.05 0.2 ind:pre:3s;ind:pas:3s; +rebéquer rebéquer ver 0 0.07 0 0.07 inf; +recache recacher ver 0.02 0.07 0.01 0 ind:pre:1s; +recacher recacher ver 0.02 0.07 0.01 0.07 inf; +recacheter recacheter ver 0 0.14 0 0.07 inf; +recachetée recacheter ver f s 0 0.14 0 0.07 par:pas; +recadre recadrer ver 0.23 0.14 0.02 0 imp:pre:2s;ind:pre:1s; +recadrer recadrer ver 0.23 0.14 0.2 0.14 inf; +recadrez recadrer ver 0.23 0.14 0.01 0 imp:pre:2p; +recala recaler ver 1.72 1.01 0 0.07 ind:pas:3s; +recalage recalage nom m s 0.01 0 0.01 0 +recalculant recalculer ver 0.1 0.07 0 0.07 par:pre; +recalcule recalculer ver 0.1 0.07 0.01 0 ind:pre:3s; +recalculer recalculer ver 0.1 0.07 0.06 0 inf; +recalculez recalculer ver 0.1 0.07 0.01 0 imp:pre:2p; +recalculé recalculer ver m s 0.1 0.07 0.02 0 par:pas; +recaler recaler ver 1.72 1.01 0.32 0.07 inf; +recalez recaler ver 1.72 1.01 0.03 0 imp:pre:2p;ind:pre:2p; +recalé recaler ver m s 1.72 1.01 1.03 0.41 par:pas; +recalée recaler ver f s 1.72 1.01 0.28 0.34 par:pas; +recalés recaler ver m p 1.72 1.01 0.07 0.14 par:pas; +recarreler recarreler ver 0.01 0 0.01 0 inf; +recasa recaser ver 0.23 0.34 0 0.07 ind:pas:3s; +recasable recasable adj s 0 0.07 0 0.07 +recaser recaser ver 0.23 0.34 0.2 0.14 inf; +recaserai recaser ver 0.23 0.34 0.01 0 ind:fut:1s; +recasser recasser ver 0.24 0.07 0.14 0 inf; +recasses recasser ver 0.24 0.07 0.02 0 ind:pre:2s; +recassé recasser ver m s 0.24 0.07 0.05 0 par:pas; +recassée recasser ver f s 0.24 0.07 0.01 0.07 par:pas; +recasé recaser ver m s 0.23 0.34 0.01 0.14 par:pas; +recel recel nom m s 0.77 1.01 0.77 1.01 +recelaient receler ver 1.02 3.72 0 0.2 ind:imp:3p; +recelait receler ver 1.02 3.72 0.04 0.95 ind:imp:3s; +recelant receler ver 1.02 3.72 0 0.27 par:pre; +receler receler ver 1.02 3.72 0.06 0.47 inf; +receleur receleur nom m s 0.45 1.28 0.34 0.68 +receleur_miracle receleur_miracle nom m s 0 0.07 0 0.07 +receleurs receleur nom m p 0.45 1.28 0.1 0.47 +receleuse receleur nom f s 0.45 1.28 0.01 0.07 +receleuses receleur nom f p 0.45 1.28 0 0.07 +recelons receler ver 1.02 3.72 0.02 0 ind:pre:1p; +recelé receler ver m s 1.02 3.72 0 0.07 par:pas; +recelée receler ver f s 1.02 3.72 0 0.07 par:pas; +recelées receler ver f p 1.02 3.72 0.01 0 par:pas; +recelés receler ver m p 1.02 3.72 0 0.07 par:pas; +recensa recenser ver 1.29 1.96 0 0.2 ind:pas:3s; +recensais recenser ver 1.29 1.96 0 0.07 ind:imp:1s; +recensait recenser ver 1.29 1.96 0 0.07 ind:imp:3s; +recensant recenser ver 1.29 1.96 0.01 0 par:pre; +recense recenser ver 1.29 1.96 0.22 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recensement recensement nom m s 1.17 1.08 1.14 0.95 +recensements recensement nom m p 1.17 1.08 0.03 0.14 +recensent recenser ver 1.29 1.96 0.04 0 ind:pre:3p; +recenser recenser ver 1.29 1.96 0.2 0.54 inf; +recenseur recenseur nom m s 0.03 0 0.03 0 +recension recension nom f s 0 0.27 0 0.27 +recensâmes recenser ver 1.29 1.96 0 0.07 ind:pas:1p; +recensèrent recenser ver 1.29 1.96 0 0.07 ind:pas:3p; +recensé recenser ver m s 1.29 1.96 0.55 0.2 par:pas; +recensées recenser ver f p 1.29 1.96 0.04 0.14 par:pas; +recensés recenser ver m p 1.29 1.96 0.25 0.27 par:pas; +recentrage recentrage nom m s 0.14 0.07 0.14 0.07 +recentre recentrer ver 0.44 0.2 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recentrer recentrer ver 0.44 0.2 0.17 0.07 inf; +recentrons recentrer ver 0.44 0.2 0.01 0 ind:pre:1p; +recentré recentrer ver m s 0.44 0.2 0.03 0 par:pas; +recentrée recentrer ver f s 0.44 0.2 0 0.07 par:pas; +recette recette nom f s 12.56 13.38 9.56 6.89 +recettes recette nom f p 12.56 13.38 3 6.49 +recevabilité recevabilité nom f s 0.01 0 0.01 0 +recevable recevable adj s 0.87 0.27 0.78 0.14 +recevables recevable adj f p 0.87 0.27 0.09 0.14 +recevaient recevoir ver 192.73 224.46 0.32 4.93 ind:imp:3p; +recevais recevoir ver 192.73 224.46 0.87 2.77 ind:imp:1s;ind:imp:2s; +recevait recevoir ver 192.73 224.46 2.16 21.42 ind:imp:3s; +recevant recevoir ver 192.73 224.46 0.55 5.68 par:pre; +receveur receveur nom m s 1.9 1.62 1.61 1.42 +receveurs receveur nom m p 1.9 1.62 0.27 0.07 +receveuse receveur nom f s 1.9 1.62 0.02 0.07 +receveuses receveur nom f p 1.9 1.62 0 0.07 +recevez recevoir ver 192.73 224.46 11.2 1.15 imp:pre:2p;ind:pre:2p; +receviez recevoir ver 192.73 224.46 0.41 0.34 ind:imp:2p; +recevions recevoir ver 192.73 224.46 0.38 0.81 ind:imp:1p; +recevoir recevoir ver 192.73 224.46 37.2 49.12 inf; +recevons recevoir ver 192.73 224.46 3.02 1.15 imp:pre:1p;ind:pre:1p; +recevra recevoir ver 192.73 224.46 4.69 1.22 ind:fut:3s; +recevrai recevoir ver 192.73 224.46 1.29 0.54 ind:fut:1s; +recevraient recevoir ver 192.73 224.46 0.07 0.47 cnd:pre:3p; +recevrais recevoir ver 192.73 224.46 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +recevrait recevoir ver 192.73 224.46 0.39 2.7 cnd:pre:3s; +recevras recevoir ver 192.73 224.46 1.77 0.61 ind:fut:2s; +recevrez recevoir ver 192.73 224.46 2.5 0.47 ind:fut:2p; +recevriez recevoir ver 192.73 224.46 0.06 0.07 cnd:pre:2p; +recevrions recevoir ver 192.73 224.46 0.11 0.07 cnd:pre:1p; +recevrons recevoir ver 192.73 224.46 0.41 0.27 ind:fut:1p; +recevront recevoir ver 192.73 224.46 1.03 0.47 ind:fut:3p; +rechampi rechampi nom m s 0 0.07 0 0.07 +rechampis rechampir ver m p 0 0.14 0 0.07 par:pas; +rechampit rechampir ver 0 0.14 0 0.07 ind:pre:3s; +rechange rechange nom m s 4.73 2.77 4.71 2.7 +rechanger rechanger ver 0.17 0.07 0.1 0 inf; +rechanges rechange nom m p 4.73 2.77 0.02 0.07 +rechangé rechanger ver m s 0.17 0.07 0.07 0.07 par:pas; +rechanta rechanter ver 0.05 0.14 0 0.07 ind:pas:3s; +rechanter rechanter ver 0.05 0.14 0.04 0 inf; +rechanté rechanter ver m s 0.05 0.14 0.01 0.07 par:pas; +rechaper rechaper ver 0.12 0.07 0.12 0.07 inf; +recharge recharger ver 4.07 3.99 0.81 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rechargea recharger ver 4.07 3.99 0 0.07 ind:pas:3s; +rechargeable rechargeable adj m s 0.02 0 0.02 0 +rechargeaient recharger ver 4.07 3.99 0.01 0.2 ind:imp:3p; +rechargeais recharger ver 4.07 3.99 0.01 0 ind:imp:1s; +rechargeait recharger ver 4.07 3.99 0.01 0.41 ind:imp:3s; +rechargeant recharger ver 4.07 3.99 0 0.2 par:pre; +rechargement rechargement nom m s 0.04 0 0.04 0 +rechargent recharger ver 4.07 3.99 0.02 0.07 ind:pre:3p; +recharger recharger ver 4.07 3.99 1.76 1.89 inf; +rechargerai recharger ver 4.07 3.99 0.01 0.07 ind:fut:1s; +rechargerait recharger ver 4.07 3.99 0 0.07 cnd:pre:3s; +rechargerons recharger ver 4.07 3.99 0.01 0 ind:fut:1p; +recharges recharge nom f p 0.83 0.34 0.27 0.07 +rechargez recharger ver 4.07 3.99 0.95 0.07 imp:pre:2p;ind:pre:2p; +rechargé recharger ver m s 4.07 3.99 0.32 0.41 par:pas; +rechargée recharger ver f s 4.07 3.99 0.03 0 par:pas; +rechargées recharger ver f p 4.07 3.99 0.05 0.07 par:pas; +rechargés recharger ver m p 4.07 3.99 0.04 0 par:pas; +rechasser rechasser ver 0.02 0 0.02 0 inf; +rechaussaient rechausser ver 0.01 0.68 0 0.07 ind:imp:3p; +rechaussant rechausser ver 0.01 0.68 0 0.07 par:pre; +rechausser rechausser ver 0.01 0.68 0.01 0.41 inf; +rechausserait rechausser ver 0.01 0.68 0 0.07 cnd:pre:3s; +rechaussée rechausser ver f s 0.01 0.68 0 0.07 par:pas; +rechercha rechercher ver 45.51 22.43 0.16 0.34 ind:pas:3s; +recherchai rechercher ver 45.51 22.43 0.01 0.07 ind:pas:1s; +recherchaient rechercher ver 45.51 22.43 0.36 1.01 ind:imp:3p; +recherchais rechercher ver 45.51 22.43 0.8 0.88 ind:imp:1s;ind:imp:2s; +recherchait rechercher ver 45.51 22.43 1.59 2.77 ind:imp:3s; +recherchant rechercher ver 45.51 22.43 0.39 0.47 par:pre; +recherche recherche nom f s 77.3 54.8 48.7 39.93 +recherchent rechercher ver 45.51 22.43 4.25 1.35 ind:pre:3p; +rechercher rechercher ver 45.51 22.43 5.88 7.23 inf; +recherchera rechercher ver 45.51 22.43 0.05 0.07 ind:fut:3s; +rechercherai rechercher ver 45.51 22.43 0.03 0.14 ind:fut:1s; +rechercherais rechercher ver 45.51 22.43 0.02 0 cnd:pre:1s;cnd:pre:2s; +rechercherait rechercher ver 45.51 22.43 0.15 0.14 cnd:pre:3s; +rechercherions rechercher ver 45.51 22.43 0.01 0 cnd:pre:1p; +rechercherons rechercher ver 45.51 22.43 0.04 0 ind:fut:1p; +rechercheront rechercher ver 45.51 22.43 0.07 0 ind:fut:3p; +recherches recherche nom f p 77.3 54.8 28.6 14.86 +recherchez rechercher ver 45.51 22.43 2.86 0.27 imp:pre:2p;ind:pre:2p; +recherchiez rechercher ver 45.51 22.43 0.6 0 ind:imp:2p; +recherchions rechercher ver 45.51 22.43 0.12 0.14 ind:imp:1p; +recherchiste recherchiste nom s 0.01 0 0.01 0 +recherchons rechercher ver 45.51 22.43 3.89 0.27 imp:pre:1p;ind:pre:1p; +recherché rechercher ver m s 45.51 22.43 5.39 2.77 par:pas; +recherchée rechercher ver f s 45.51 22.43 1.62 0.61 par:pas; +recherchées recherché adj f p 3.54 2.09 0.38 0.27 +recherchés recherché adj m p 3.54 2.09 0.97 0.41 +rechigna rechigner ver 0.71 3.92 0 0.14 ind:pas:3s; +rechignaient rechigner ver 0.71 3.92 0.01 0.14 ind:imp:3p; +rechignais rechigner ver 0.71 3.92 0.01 0.14 ind:imp:1s;ind:imp:2s; +rechignait rechigner ver 0.71 3.92 0 0.61 ind:imp:3s; +rechignant rechigner ver 0.71 3.92 0 0.41 par:pre; +rechigne rechigner ver 0.71 3.92 0.49 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rechignent rechigner ver 0.71 3.92 0.06 0.07 ind:pre:3p; +rechigner rechigner ver 0.71 3.92 0.08 1.49 inf; +rechignerais rechigner ver 0.71 3.92 0.01 0 cnd:pre:1s; +rechignes rechigner ver 0.71 3.92 0.03 0 ind:pre:2s; +rechigné rechigner ver m s 0.71 3.92 0.01 0.34 par:pas; +rechignée rechigner ver f s 0.71 3.92 0 0.07 par:pas; +rechignées rechigner ver f p 0.71 3.92 0 0.07 par:pas; +rechuta rechuter ver 0.69 0.74 0 0.07 ind:pas:3s; +rechutant rechuter ver 0.69 0.74 0 0.07 par:pre; +rechute rechute nom f s 1.26 1.89 1.19 1.28 +rechuter rechuter ver 0.69 0.74 0.36 0.14 inf; +rechutera rechuter ver 0.69 0.74 0.01 0 ind:fut:3s; +rechuterait rechuter ver 0.69 0.74 0 0.07 cnd:pre:3s; +rechuteront rechuter ver 0.69 0.74 0.01 0 ind:fut:3p; +rechutes rechute nom f p 1.26 1.89 0.07 0.61 +rechuté rechuter ver m s 0.69 0.74 0.1 0.34 par:pas; +reclassement reclassement nom m s 0.14 0.27 0.14 0.27 +reclasser reclasser ver 0.09 0.2 0.04 0.07 inf; +reclassé reclasser ver m s 0.09 0.2 0.03 0 par:pas; +reclassée reclasser ver f s 0.09 0.2 0.02 0 par:pas; +reclouer reclouer ver 0.01 0 0.01 0 inf; +reclure reclure ver 0 0.07 0 0.07 inf; +reclus reclus adj m 0.56 1.76 0.37 0.81 +recluse reclus nom f s 0.7 0.95 0.35 0.14 +recluses reclus nom f p 0.7 0.95 0.01 0.14 +recodage recodage nom m s 0.01 0 0.01 0 +recogner recogner ver 0 0.07 0 0.07 inf; +recognition recognition nom f s 0 0.07 0 0.07 +recoiffa recoiffer ver 0.25 2.09 0 0.07 ind:pas:3s; +recoiffai recoiffer ver 0.25 2.09 0 0.07 ind:pas:1s; +recoiffaient recoiffer ver 0.25 2.09 0 0.07 ind:imp:3p; +recoiffait recoiffer ver 0.25 2.09 0.01 0.2 ind:imp:3s; +recoiffant recoiffer ver 0.25 2.09 0.01 0.14 par:pre; +recoiffe recoiffer ver 0.25 2.09 0.07 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoiffent recoiffer ver 0.25 2.09 0.01 0.07 ind:pre:3p; +recoiffer recoiffer ver 0.25 2.09 0.12 0.54 inf; +recoiffez recoiffer ver 0.25 2.09 0.02 0 imp:pre:2p;ind:pre:2p; +recoiffèrent recoiffer ver 0.25 2.09 0 0.07 ind:pas:3p; +recoiffé recoiffer ver m s 0.25 2.09 0 0.2 par:pas; +recoiffée recoiffer ver f s 0.25 2.09 0 0.41 par:pas; +recoiffés recoiffer ver m p 0.25 2.09 0 0.07 par:pas; +recoin recoin nom m s 2.27 12.36 0.83 5.14 +recoins recoin nom m p 2.27 12.36 1.44 7.23 +recolla recoller ver 2.84 2.7 0 0.2 ind:pas:3s; +recollage recollage nom m s 0 0.14 0 0.14 +recollait recoller ver 2.84 2.7 0 0.34 ind:imp:3s; +recolle recoller ver 2.84 2.7 0.53 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recollent recoller ver 2.84 2.7 0.03 0 ind:pre:3p; +recoller recoller ver 2.84 2.7 1.94 1.15 inf; +recollera recoller ver 2.84 2.7 0.05 0 ind:fut:3s; +recollé recoller ver m s 2.84 2.7 0.13 0.27 par:pas; +recollée recoller ver f s 2.84 2.7 0.16 0.2 par:pas; +recollés recoller ver m p 2.84 2.7 0 0.2 par:pas; +recoloration recoloration nom f s 0.08 0 0.08 0 +recombinaison recombinaison nom f s 0.06 0 0.06 0 +recombinant recombinant adj m s 0.01 0 0.01 0 +recombinant recombiner ver 0.1 0 0.01 0 par:pre; +recombiner recombiner ver 0.1 0 0.04 0 inf; +recombiné recombiner ver m s 0.1 0 0.05 0 par:pas; +recommanda recommander ver 16.86 21.35 0 2.3 ind:pas:3s; +recommandable recommandable adj s 0.42 0.68 0.32 0.68 +recommandables recommandable adj p 0.42 0.68 0.11 0 +recommandai recommander ver 16.86 21.35 0 0.14 ind:pas:1s; +recommandaient recommander ver 16.86 21.35 0.04 0.34 ind:imp:3p; +recommandais recommander ver 16.86 21.35 0.01 0.27 ind:imp:1s; +recommandait recommander ver 16.86 21.35 0.19 2.03 ind:imp:3s; +recommandant recommander ver 16.86 21.35 0.21 1.82 par:pre; +recommandation recommandation nom f s 5.2 8.85 2.89 3.92 +recommandations recommandation nom f p 5.2 8.85 2.3 4.93 +recommande recommander ver 16.86 21.35 6.13 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recommandent recommander ver 16.86 21.35 0.31 0.27 ind:pre:3p; +recommander recommander ver 16.86 21.35 2.58 2.91 inf; +recommandera recommander ver 16.86 21.35 0.1 0.14 ind:fut:3s; +recommanderai recommander ver 16.86 21.35 0.32 0.14 ind:fut:1s; +recommanderais recommander ver 16.86 21.35 0.25 0 cnd:pre:1s;cnd:pre:2s; +recommanderait recommander ver 16.86 21.35 0.12 0.07 cnd:pre:3s; +recommanderiez recommander ver 16.86 21.35 0.09 0 cnd:pre:2p; +recommandes recommander ver 16.86 21.35 0.24 0.07 ind:pre:2s;sub:pre:2s; +recommandez recommander ver 16.86 21.35 0.73 0.27 imp:pre:2p;ind:pre:2p; +recommandiez recommander ver 16.86 21.35 0.07 0.07 ind:imp:2p; +recommandons recommander ver 16.86 21.35 0.28 0.07 imp:pre:1p;ind:pre:1p; +recommandât recommander ver 16.86 21.35 0 0.07 sub:imp:3s; +recommandèrent recommander ver 16.86 21.35 0.11 0.14 ind:pas:3p; +recommandé recommander ver m s 16.86 21.35 4.07 5.68 par:pas; +recommandée recommander ver f s 16.86 21.35 0.8 0.95 par:pas; +recommandées recommander ver f p 16.86 21.35 0.03 0.54 par:pas; +recommandés recommander ver m p 16.86 21.35 0.21 0.27 par:pas; +recommence recommencer ver 84.69 83.31 31.98 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +recommencement recommencement nom m s 0.08 0.81 0.07 0.47 +recommencements recommencement nom m p 0.08 0.81 0.01 0.34 +recommencent recommencer ver 84.69 83.31 1.72 2.36 ind:pre:3p; +recommencer recommencer ver 84.69 83.31 26.9 22.5 inf; +recommencera recommencer ver 84.69 83.31 2.52 1.42 ind:fut:3s; +recommencerai recommencer ver 84.69 83.31 1.65 1.01 ind:fut:1s; +recommenceraient recommencer ver 84.69 83.31 0.02 0.2 cnd:pre:3p; +recommencerais recommencer ver 84.69 83.31 0.25 0.54 cnd:pre:1s;cnd:pre:2s; +recommencerait recommencer ver 84.69 83.31 0.7 1.42 cnd:pre:3s; +recommenceras recommencer ver 84.69 83.31 0.78 0.14 ind:fut:2s; +recommencerez recommencer ver 84.69 83.31 0.21 0.14 ind:fut:2p; +recommenceriez recommencer ver 84.69 83.31 0.06 0 cnd:pre:2p; +recommencerions recommencer ver 84.69 83.31 0.01 0.07 cnd:pre:1p; +recommencerons recommencer ver 84.69 83.31 0.54 0.14 ind:fut:1p; +recommenceront recommencer ver 84.69 83.31 0.42 0.07 ind:fut:3p; +recommences recommencer ver 84.69 83.31 4.02 0.95 ind:pre:2s; +recommencez recommencer ver 84.69 83.31 4.88 0.68 imp:pre:2p;ind:pre:2p; +recommenciez recommencer ver 84.69 83.31 0.19 0.07 ind:imp:2p; +recommencions recommencer ver 84.69 83.31 0.02 0.41 ind:imp:1p; +recommencèrent recommencer ver 84.69 83.31 0 1.55 ind:pas:3p; +recommencé recommencer ver m s 84.69 83.31 3.84 6.82 par:pas; +recommencée recommencer ver f s 84.69 83.31 0.12 0.81 par:pas; +recommencées recommencer ver f p 84.69 83.31 0 0.47 par:pas; +recommencés recommencer ver m p 84.69 83.31 0 0.41 par:pas; +recommença recommencer ver 84.69 83.31 0.06 7.77 ind:pas:3s; +recommençai recommencer ver 84.69 83.31 0 0.74 ind:pas:1s; +recommençaient recommencer ver 84.69 83.31 0.02 1.76 ind:imp:3p; +recommençais recommencer ver 84.69 83.31 0.11 1.22 ind:imp:1s;ind:imp:2s; +recommençait recommencer ver 84.69 83.31 1.22 10.41 ind:imp:3s; +recommençant recommencer ver 84.69 83.31 0.03 0.95 par:pre; +recommençons recommencer ver 84.69 83.31 2.39 0.74 imp:pre:1p;ind:pre:1p; +recommençâmes recommencer ver 84.69 83.31 0.02 0.2 ind:pas:1p; +recommençât recommencer ver 84.69 83.31 0 0.14 sub:imp:3s; +recommercer recommercer ver 0 0.07 0 0.07 inf; +recompléter recompléter ver 0 0.14 0 0.07 inf; +recomplété recompléter ver m s 0 0.14 0 0.07 par:pas; +recomposa recomposer ver 0.52 3.18 0 0.34 ind:pas:3s; +recomposaient recomposer ver 0.52 3.18 0 0.14 ind:imp:3p; +recomposais recomposer ver 0.52 3.18 0 0.07 ind:imp:1s; +recomposait recomposer ver 0.52 3.18 0 0.34 ind:imp:3s; +recompose recomposer ver 0.52 3.18 0.18 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recomposent recomposer ver 0.52 3.18 0 0.14 ind:pre:3p; +recomposer recomposer ver 0.52 3.18 0.28 1.01 inf; +recomposera recomposer ver 0.52 3.18 0 0.07 ind:fut:3s; +recomposition recomposition nom f s 0 0.07 0 0.07 +recomposèrent recomposer ver 0.52 3.18 0 0.14 ind:pas:3p; +recomposé recomposer ver m s 0.52 3.18 0.03 0.2 par:pas; +recomposée recomposer ver f s 0.52 3.18 0.01 0 par:pas; +recomposés recomposer ver m p 0.52 3.18 0.01 0.14 par:pas; +recompta recompter ver 1.67 1.82 0 0.2 ind:pas:3s; +recomptaient recompter ver 1.67 1.82 0 0.07 ind:imp:3p; +recomptais recompter ver 1.67 1.82 0 0.2 ind:imp:1s; +recomptait recompter ver 1.67 1.82 0.01 0.27 ind:imp:3s; +recomptant recompter ver 1.67 1.82 0 0.07 par:pre; +recompte recompter ver 1.67 1.82 0.75 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recompter recompter ver 1.67 1.82 0.55 0.47 inf; +recomptez recompter ver 1.67 1.82 0.05 0 imp:pre:2p;ind:pre:2p; +recomptons recompter ver 1.67 1.82 0.11 0 ind:pre:1p; +recompté recompter ver m s 1.67 1.82 0.2 0.2 par:pas; +recomptées recompter ver f p 1.67 1.82 0 0.07 par:pas; +reconditionne reconditionner ver 0.03 0.07 0.01 0 ind:pre:3s; +reconditionnement reconditionnement nom m s 0.05 0 0.05 0 +reconditionnons reconditionner ver 0.03 0.07 0.01 0 imp:pre:1p; +reconditionné reconditionner ver m s 0.03 0.07 0.01 0 par:pas; +reconditionnée reconditionner ver f s 0.03 0.07 0 0.07 par:pas; +reconductible reconductible adj s 0.01 0.07 0.01 0.07 +reconduction reconduction nom f s 0.01 0 0.01 0 +reconduirai reconduire ver 5.83 7.23 0.03 0.07 ind:fut:1s; +reconduirais reconduire ver 5.83 7.23 0.01 0 cnd:pre:1s; +reconduirait reconduire ver 5.83 7.23 0 0.07 cnd:pre:3s; +reconduire reconduire ver 5.83 7.23 2.97 2.84 inf; +reconduirez reconduire ver 5.83 7.23 0.01 0 ind:fut:2p; +reconduirons reconduire ver 5.83 7.23 0.01 0.07 ind:fut:1p; +reconduis reconduire ver 5.83 7.23 1.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconduisaient reconduire ver 5.83 7.23 0 0.07 ind:imp:3p; +reconduisais reconduire ver 5.83 7.23 0 0.14 ind:imp:1s; +reconduisait reconduire ver 5.83 7.23 0.02 0.27 ind:imp:3s; +reconduisant reconduire ver 5.83 7.23 0 0.14 par:pre; +reconduise reconduire ver 5.83 7.23 0.33 0.07 sub:pre:1s;sub:pre:3s; +reconduisent reconduire ver 5.83 7.23 0.01 0.07 ind:pre:3p; +reconduisez reconduire ver 5.83 7.23 0.76 0.07 imp:pre:2p;ind:pre:2p; +reconduisions reconduire ver 5.83 7.23 0 0.07 ind:imp:1p; +reconduisirent reconduire ver 5.83 7.23 0 0.07 ind:pas:3p; +reconduisit reconduire ver 5.83 7.23 0 1.15 ind:pas:3s; +reconduisît reconduire ver 5.83 7.23 0 0.07 sub:imp:3s; +reconduit reconduire ver m s 5.83 7.23 0.43 1.22 ind:pre:3s;par:pas; +reconduite reconduire ver f s 5.83 7.23 0.16 0.27 par:pas; +reconduits reconduire ver m p 5.83 7.23 0.04 0.2 par:pas; +reconfiguration reconfiguration nom f s 0.02 0 0.02 0 +reconfigure reconfigurer ver 0.39 0 0.05 0 ind:pre:1s;ind:pre:3s; +reconfigurer reconfigurer ver 0.39 0 0.18 0 inf; +reconfigurez reconfigurer ver 0.39 0 0.05 0 imp:pre:2p; +reconfiguré reconfigurer ver m s 0.39 0 0.09 0 par:pas; +reconfigurés reconfigurer ver m p 0.39 0 0.03 0 par:pas; +recongeler recongeler ver 0.01 0 0.01 0 inf; +reconnais reconnaître ver 140.73 229.19 37.36 24.12 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconnaissable reconnaissable adj s 0.56 4.66 0.5 3.45 +reconnaissables reconnaissable adj p 0.56 4.66 0.06 1.22 +reconnaissaient reconnaître ver 140.73 229.19 0.18 2.5 ind:imp:3p; +reconnaissais reconnaître ver 140.73 229.19 1.41 7.3 ind:imp:1s;ind:imp:2s; +reconnaissait reconnaître ver 140.73 229.19 0.65 17.5 ind:imp:3s; +reconnaissance reconnaissance nom f s 15.28 22.77 15.08 21.49 +reconnaissances reconnaissance nom f p 15.28 22.77 0.2 1.28 +reconnaissant reconnaissant adj m s 20.59 9.19 10.32 5.41 +reconnaissante reconnaissant adj f s 20.59 9.19 6.41 2.7 +reconnaissantes reconnaissant adj f p 20.59 9.19 0.17 0.27 +reconnaissants reconnaissant adj m p 20.59 9.19 3.69 0.81 +reconnaisse reconnaître ver 140.73 229.19 2.09 1.15 sub:pre:1s;sub:pre:3s; +reconnaissent reconnaître ver 140.73 229.19 2.1 3.65 ind:pre:3p; +reconnaisses reconnaître ver 140.73 229.19 0.13 0.07 sub:pre:2s; +reconnaissez reconnaître ver 140.73 229.19 13.49 2.97 imp:pre:2p;ind:pre:2p; +reconnaissiez reconnaître ver 140.73 229.19 0.22 0.27 ind:imp:2p; +reconnaissions reconnaître ver 140.73 229.19 0.11 1.08 ind:imp:1p; +reconnaissons reconnaître ver 140.73 229.19 0.69 1.08 imp:pre:1p;ind:pre:1p; +reconnaît reconnaître ver 140.73 229.19 10.73 15.61 ind:pre:3s; +reconnaîtra reconnaître ver 140.73 229.19 2.8 1.49 ind:fut:3s; +reconnaîtrai reconnaître ver 140.73 229.19 0.66 0.68 ind:fut:1s; +reconnaîtraient reconnaître ver 140.73 229.19 0.1 0.41 cnd:pre:3p; +reconnaîtrais reconnaître ver 140.73 229.19 2.06 0.95 cnd:pre:1s;cnd:pre:2s; +reconnaîtrait reconnaître ver 140.73 229.19 0.56 2.09 cnd:pre:3s; +reconnaîtras reconnaître ver 140.73 229.19 1.54 0.54 ind:fut:2s; +reconnaître reconnaître ver 140.73 229.19 25.24 62.3 inf; +reconnaîtrez reconnaître ver 140.73 229.19 0.72 0.81 ind:fut:2p; +reconnaîtriez reconnaître ver 140.73 229.19 0.31 0.14 cnd:pre:2p; +reconnaîtrions reconnaître ver 140.73 229.19 0 0.07 cnd:pre:1p; +reconnaîtrons reconnaître ver 140.73 229.19 0.49 0.07 ind:fut:1p; +reconnaîtront reconnaître ver 140.73 229.19 1.01 0.34 ind:fut:3p; +reconnecte reconnecter ver 0.52 0 0.07 0 imp:pre:2s;ind:pre:3s; +reconnecter reconnecter ver 0.52 0 0.29 0 inf; +reconnectez reconnecter ver 0.52 0 0.03 0 imp:pre:2p; +reconnecté reconnecter ver m s 0.52 0 0.06 0 par:pas; +reconnectés reconnecter ver m p 0.52 0 0.07 0 par:pas; +reconnu reconnaître ver m s 140.73 229.19 25.93 32.09 par:pas; +reconnue reconnaître ver f s 140.73 229.19 6.86 5.95 par:pas; +reconnues reconnaître ver f p 140.73 229.19 0.39 0.61 par:pas; +reconnurent reconnaître ver 140.73 229.19 0.03 1.42 ind:pas:3p; +reconnus reconnaître ver m p 140.73 229.19 1.34 8.72 ind:pas:1s;par:pas; +reconnusse reconnaître ver 140.73 229.19 0 0.07 sub:imp:1s; +reconnussent reconnaître ver 140.73 229.19 0.01 0.07 sub:imp:3p; +reconnut reconnaître ver 140.73 229.19 0.44 25.74 ind:pas:3s; +reconnûmes reconnaître ver 140.73 229.19 0.01 0.34 ind:pas:1p; +reconnût reconnaître ver 140.73 229.19 0 1.22 sub:imp:3s; +reconquerra reconquérir ver 1.54 3.18 0.01 0.07 ind:fut:3s; +reconquerrait reconquérir ver 1.54 3.18 0 0.07 cnd:pre:3s; +reconquerrons reconquérir ver 1.54 3.18 0.01 0.07 ind:fut:1p; +reconquiert reconquérir ver 1.54 3.18 0.01 0.07 ind:pre:3s; +reconquirent reconquérir ver 1.54 3.18 0 0.07 ind:pas:3p; +reconquis reconquérir ver m 1.54 3.18 0.07 0.68 par:pas; +reconquise reconquis adj f s 0.1 0.47 0.1 0.2 +reconquises reconquis adj f p 0.1 0.47 0 0.14 +reconquista reconquista nom f s 0 0.07 0 0.07 +reconquit reconquérir ver 1.54 3.18 0 0.07 ind:pas:3s; +reconquière reconquérir ver 1.54 3.18 0.01 0.07 sub:pre:3s; +reconquérais reconquérir ver 1.54 3.18 0 0.07 ind:imp:1s; +reconquérait reconquérir ver 1.54 3.18 0 0.07 ind:imp:3s; +reconquérir reconquérir ver 1.54 3.18 1.41 1.55 inf; +reconquérons reconquérir ver 1.54 3.18 0.01 0 imp:pre:1p; +reconquête reconquête nom f s 0.06 1.15 0.06 1.15 +reconsidère reconsidérer ver 1.51 1.55 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reconsidèrent reconsidérer ver 1.51 1.55 0.01 0 ind:pre:3p; +reconsidéra reconsidérer ver 1.51 1.55 0 0.27 ind:pas:3s; +reconsidérant reconsidérer ver 1.51 1.55 0.01 0 par:pre; +reconsidérer reconsidérer ver 1.51 1.55 1.06 1.01 inf; +reconsidérez reconsidérer ver 1.51 1.55 0.17 0 imp:pre:2p;ind:pre:2p; +reconsidéré reconsidérer ver m s 1.51 1.55 0.16 0.14 par:pas; +reconsidérée reconsidérer ver f s 1.51 1.55 0.01 0.07 par:pas; +reconstitua reconstituer ver 4.05 16.28 0 0.07 ind:pas:3s; +reconstituaient reconstituer ver 4.05 16.28 0.01 0.34 ind:imp:3p; +reconstituais reconstituer ver 4.05 16.28 0.04 0.14 ind:imp:1s;ind:imp:2s; +reconstituait reconstituer ver 4.05 16.28 0.01 1.01 ind:imp:3s; +reconstituant reconstituant nom m s 0.15 0.27 0.15 0.2 +reconstituante reconstituant adj f s 0.02 0.27 0 0.14 +reconstituantes reconstituant adj f p 0.02 0.27 0.01 0.07 +reconstituants reconstituant adj m p 0.02 0.27 0 0.07 +reconstituants reconstituant nom m p 0.15 0.27 0 0.07 +reconstitue reconstituer ver 4.05 16.28 0.42 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reconstituent reconstituer ver 4.05 16.28 0.03 0.47 ind:pre:3p; +reconstituer reconstituer ver 4.05 16.28 2.12 7.84 inf; +reconstitueraient reconstituer ver 4.05 16.28 0 0.07 cnd:pre:3p; +reconstituerais reconstituer ver 4.05 16.28 0.01 0 cnd:pre:1s; +reconstituerait reconstituer ver 4.05 16.28 0 0.2 cnd:pre:3s; +reconstituerons reconstituer ver 4.05 16.28 0 0.07 ind:fut:1p; +reconstitues reconstituer ver 4.05 16.28 0.02 0.07 ind:pre:2s; +reconstituons reconstituer ver 4.05 16.28 0.08 0 imp:pre:1p;ind:pre:1p; +reconstitution reconstitution nom f s 2.23 2.57 2.12 2.23 +reconstitutions reconstitution nom f p 2.23 2.57 0.11 0.34 +reconstituâmes reconstituer ver 4.05 16.28 0 0.07 ind:pas:1p; +reconstituât reconstituer ver 4.05 16.28 0 0.14 sub:imp:3s; +reconstitué reconstituer ver m s 4.05 16.28 1.05 1.69 par:pas; +reconstituée reconstituer ver f s 4.05 16.28 0.05 1.01 par:pas; +reconstituées reconstituer ver f p 4.05 16.28 0.16 0.14 par:pas; +reconstitués reconstituer ver m p 4.05 16.28 0.02 0.81 par:pas; +reconstructeur reconstructeur nom m s 0.01 0 0.01 0 +reconstruction reconstruction nom f s 2.25 4.19 2.07 4.12 +reconstructions reconstruction nom f p 2.25 4.19 0.17 0.07 +reconstructrice reconstructeur adj f s 0.04 0 0.04 0 +reconstruira reconstruire ver 7.24 7.84 0.02 0.07 ind:fut:3s; +reconstruirai reconstruire ver 7.24 7.84 0.02 0 ind:fut:1s; +reconstruirais reconstruire ver 7.24 7.84 0.01 0 cnd:pre:1s; +reconstruirait reconstruire ver 7.24 7.84 0.02 0.07 cnd:pre:3s; +reconstruiras reconstruire ver 7.24 7.84 0.01 0 ind:fut:2s; +reconstruire reconstruire ver 7.24 7.84 4.59 3.24 inf; +reconstruirons reconstruire ver 7.24 7.84 0.36 0.07 ind:fut:1p; +reconstruiront reconstruire ver 7.24 7.84 0.04 0 ind:fut:3p; +reconstruis reconstruire ver 7.24 7.84 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconstruisaient reconstruire ver 7.24 7.84 0.01 0.27 ind:imp:3p; +reconstruisait reconstruire ver 7.24 7.84 0.01 0.41 ind:imp:3s; +reconstruisant reconstruire ver 7.24 7.84 0 0.14 par:pre; +reconstruisent reconstruire ver 7.24 7.84 0.14 0.07 ind:pre:3p; +reconstruisez reconstruire ver 7.24 7.84 0.04 0 imp:pre:2p;ind:pre:2p; +reconstruisirent reconstruire ver 7.24 7.84 0 0.14 ind:pas:3p; +reconstruisons reconstruire ver 7.24 7.84 0.04 0 imp:pre:1p;ind:pre:1p; +reconstruit reconstruire ver m s 7.24 7.84 1.39 1.76 ind:pre:3s;par:pas; +reconstruite reconstruire ver f s 7.24 7.84 0.29 1.15 par:pas; +reconstruites reconstruire ver f p 7.24 7.84 0.06 0.27 par:pas; +reconstruits reconstruire ver m p 7.24 7.84 0.06 0.14 par:pas; +reconsulter reconsulter ver 0.01 0 0.01 0 inf; +recontacter recontacter ver 0.38 0.07 0.27 0.07 inf; +reconter reconter ver 0 0.07 0 0.07 inf; +recontrer recontrer ver 0.2 0 0.2 0 inf; +reconventionnelle reconventionnel adj f s 0.01 0 0.01 0 +reconversion reconversion nom f s 0.36 0.74 0.36 0.74 +reconverti reconvertir ver m s 0.4 2.3 0.13 0.68 par:pas; +reconvertie reconvertir ver f s 0.4 2.3 0.1 0.2 par:pas; +reconvertir reconvertir ver 0.4 2.3 0.12 0.81 inf; +reconvertirent reconvertir ver 0.4 2.3 0 0.07 ind:pas:3p; +reconvertis reconvertir ver m p 0.4 2.3 0.02 0.27 imp:pre:2s;ind:pre:2s;ind:pas:2s;par:pas; +reconvertissant reconvertir ver 0.4 2.3 0 0.07 par:pre; +reconvertisse reconvertir ver 0.4 2.3 0 0.07 sub:pre:1s; +reconvertit reconvertir ver 0.4 2.3 0.02 0.14 ind:pre:3s;ind:pas:3s; +reconvoquer reconvoquer ver 0.02 0 0.02 0 inf; +recopia recopier ver 2.41 7.3 0 0.27 ind:pas:3s; +recopiage recopiage nom m s 0 0.07 0 0.07 +recopiai recopier ver 2.41 7.3 0 0.14 ind:pas:1s; +recopiaient recopier ver 2.41 7.3 0 0.07 ind:imp:3p; +recopiais recopier ver 2.41 7.3 0 0.41 ind:imp:1s; +recopiait recopier ver 2.41 7.3 0 0.54 ind:imp:3s; +recopiant recopier ver 2.41 7.3 0.16 0.47 par:pre; +recopie recopier ver 2.41 7.3 0.5 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recopient recopier ver 2.41 7.3 0 0.07 ind:pre:3p; +recopier recopier ver 2.41 7.3 0.82 2.23 inf; +recopierai recopier ver 2.41 7.3 0.25 0 ind:fut:1s; +recopierait recopier ver 2.41 7.3 0 0.07 cnd:pre:3s; +recopies recopier ver 2.41 7.3 0.01 0.07 ind:pre:2s; +recopiez recopier ver 2.41 7.3 0.16 0 imp:pre:2p;ind:pre:2p; +recopiât recopier ver 2.41 7.3 0 0.07 sub:imp:3s; +recopié recopier ver m s 2.41 7.3 0.23 1.01 par:pas; +recopiée recopier ver f s 2.41 7.3 0.02 0.2 par:pas; +recopiées recopier ver f p 2.41 7.3 0.23 0.41 par:pas; +recopiés recopier ver m p 2.41 7.3 0.03 0.47 par:pas; +record record nom m s 13.34 5.95 10.14 3.11 +recorder recorder ver 0.03 0 0.03 0 inf; +recordman recordman nom m s 0.04 0.2 0.04 0.14 +recordmen recordman nom m p 0.04 0.2 0 0.07 +records record nom m p 13.34 5.95 3.2 2.84 +recors recors nom m 0.01 0 0.01 0 +recoucha recoucher ver 3.69 8.11 0 1.69 ind:pas:3s; +recouchai recoucher ver 3.69 8.11 0 0.41 ind:pas:1s; +recouchais recoucher ver 3.69 8.11 0 0.07 ind:imp:1s; +recouchait recoucher ver 3.69 8.11 0 0.74 ind:imp:3s; +recouchant recoucher ver 3.69 8.11 0 0.2 par:pre; +recouche recoucher ver 3.69 8.11 1.54 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoucher recoucher ver 3.69 8.11 1.79 2.23 inf; +recoucherais recoucher ver 3.69 8.11 0.04 0 cnd:pre:1s;cnd:pre:2s; +recoucheriez recoucher ver 3.69 8.11 0.01 0 cnd:pre:2p; +recouchez recoucher ver 3.69 8.11 0.08 0.07 imp:pre:2p; +recouchèrent recoucher ver 3.69 8.11 0 0.07 ind:pas:3p; +recouché recoucher ver m s 3.69 8.11 0.2 0.47 par:pas; +recouchée recoucher ver f s 3.69 8.11 0.03 0.61 par:pas; +recouchées recoucher ver f p 3.69 8.11 0.01 0.07 par:pas; +recouchés recoucher ver m p 3.69 8.11 0 0.07 par:pas; +recoud recoudre ver 5.8 3.92 0.11 0.41 ind:pre:3s; +recoudra recoudre ver 5.8 3.92 0.25 0.07 ind:fut:3s; +recoudrai recoudre ver 5.8 3.92 0.16 0.07 ind:fut:1s; +recoudras recoudre ver 5.8 3.92 0.01 0.07 ind:fut:2s; +recoudre recoudre ver 5.8 3.92 2.96 1.28 inf; +recouds recoudre ver 5.8 3.92 0.53 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +recouler recouler ver 0.01 0.07 0.01 0.07 inf; +recoupa recouper ver 0.81 1.96 0 0.07 ind:pas:3s; +recoupaient recouper ver 0.81 1.96 0 0.14 ind:imp:3p; +recoupait recouper ver 0.81 1.96 0.02 0.27 ind:imp:3s; +recoupant recouper ver 0.81 1.96 0.01 0.2 par:pre; +recoupe recouper ver 0.81 1.96 0.25 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoupement recoupement nom m s 0.24 1.42 0.08 0.27 +recoupements recoupement nom m p 0.24 1.42 0.17 1.15 +recoupent recouper ver 0.81 1.96 0.1 0.41 ind:pre:3p; +recouper recouper ver 0.81 1.96 0.25 0.27 inf; +recouperait recouper ver 0.81 1.96 0 0.07 cnd:pre:3s; +recouperont recouper ver 0.81 1.96 0.01 0 ind:fut:3p; +recoupez recouper ver 0.81 1.96 0.04 0 imp:pre:2p; +recoupions recouper ver 0.81 1.96 0 0.07 ind:imp:1p; +recoupé recouper ver m s 0.81 1.96 0.1 0.14 par:pas; +recoupés recouper ver m p 0.81 1.96 0.02 0 par:pas; +recourait recourir ver 1.92 4.73 0.1 0.47 ind:imp:3s; +recourant recourir ver 1.92 4.73 0.04 0.07 par:pre; +recourba recourber ver 0.06 2.09 0 0.07 ind:pas:3s; +recourbaient recourber ver 0.06 2.09 0 0.07 ind:imp:3p; +recourbait recourber ver 0.06 2.09 0 0.14 ind:imp:3s; +recourbant recourber ver 0.06 2.09 0 0.14 par:pre; +recourbe recourber ver 0.06 2.09 0.03 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recourber recourber ver 0.06 2.09 0.01 0.14 inf; +recourbé recourbé adj m s 0.07 2.97 0.03 1.15 +recourbée recourber ver f s 0.06 2.09 0.01 0.47 par:pas; +recourbées recourbé adj f p 0.07 2.97 0.01 0.34 +recourbés recourbé adj m p 0.07 2.97 0.01 1.22 +recoure recourir ver 1.92 4.73 0.01 0 sub:pre:3s; +recourent recourir ver 1.92 4.73 0.1 0.2 ind:pre:3p; +recourez recourir ver 1.92 4.73 0.04 0 imp:pre:2p; +recourir recourir ver 1.92 4.73 1.25 2.77 inf; +recourons recourir ver 1.92 4.73 0.01 0.07 ind:pre:1p; +recourrait recourir ver 1.92 4.73 0 0.07 cnd:pre:3s; +recours recours nom m 6.45 15.34 6.45 15.34 +recourt recourir ver 1.92 4.73 0.08 0.27 ind:pre:3s; +recouru recourir ver m s 1.92 4.73 0.11 0.2 par:pas; +recoururent recourir ver 1.92 4.73 0 0.14 ind:pas:3p; +recourus recourir ver 1.92 4.73 0 0.07 ind:pas:1s; +recourut recourir ver 1.92 4.73 0.01 0.2 ind:pas:3s; +recousais recoudre ver 5.8 3.92 0.02 0 ind:imp:1s; +recousait recoudre ver 5.8 3.92 0.13 0.27 ind:imp:3s; +recousant recoudre ver 5.8 3.92 0.02 0.27 par:pre; +recouse recoudre ver 5.8 3.92 0.07 0.07 sub:pre:1s;sub:pre:3s; +recousez recoudre ver 5.8 3.92 0.13 0 imp:pre:2p; +recousu recoudre ver m s 5.8 3.92 0.78 0.81 par:pas; +recousue recoudre ver f s 5.8 3.92 0.6 0.27 par:pas; +recousus recoudre ver m p 5.8 3.92 0.04 0.2 par:pas; +recouvert recouvrir ver m s 11.04 69.26 2.79 16.82 par:pas; +recouverte recouvrir ver f s 11.04 69.26 0.9 7.77 par:pas; +recouvertes recouvrir ver f p 11.04 69.26 0.14 3.65 par:pas; +recouverts recouvrir ver m p 11.04 69.26 0.88 9.59 par:pas; +recouvra recouvrer ver 2.02 5.27 0.02 0.41 ind:pas:3s; +recouvrables recouvrable adj f p 0 0.07 0 0.07 +recouvrai recouvrer ver 2.02 5.27 0 0.07 ind:pas:1s; +recouvraient recouvrir ver 11.04 69.26 0.23 2.3 ind:imp:3p; +recouvrais recouvrir ver 11.04 69.26 0 0.34 ind:imp:1s; +recouvrait recouvrir ver 11.04 69.26 0.46 7.91 ind:imp:3s; +recouvrance recouvrance nom f s 0 0.27 0 0.27 +recouvrant recouvrir ver 11.04 69.26 0.47 2.91 par:pre; +recouvre recouvrir ver 11.04 69.26 2.28 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recouvrement recouvrement nom m s 0.28 0.14 0.28 0.14 +recouvrent recouvrir ver 11.04 69.26 0.25 1.62 ind:pre:3p;sub:pre:3p; +recouvrer recouvrer ver 2.02 5.27 0.46 2.3 inf; +recouvrerai recouvrer ver 2.02 5.27 0.01 0 ind:fut:1s; +recouvrerait recouvrer ver 2.02 5.27 0.03 0.14 cnd:pre:3s; +recouvrerez recouvrer ver 2.02 5.27 0.02 0 ind:fut:2p; +recouvreront recouvrer ver 2.02 5.27 0 0.07 ind:fut:3p; +recouvrez recouvrir ver 11.04 69.26 0.71 0.07 imp:pre:2p;imp:pre:2p;ind:pre:2p; +recouvriez recouvrir ver 11.04 69.26 0.02 0 ind:imp:2p; +recouvrir recouvrir ver 11.04 69.26 1.74 5.27 inf; +recouvrira recouvrir ver 11.04 69.26 0.06 0.34 ind:fut:3s; +recouvrirai recouvrir ver 11.04 69.26 0.02 0.07 ind:fut:1s; +recouvriraient recouvrir ver 11.04 69.26 0 0.07 cnd:pre:3p; +recouvrirait recouvrir ver 11.04 69.26 0.02 0.27 cnd:pre:3s; +recouvrirent recouvrir ver 11.04 69.26 0 0.34 ind:pas:3p; +recouvris recouvrir ver 11.04 69.26 0.01 0.07 ind:pas:1s; +recouvrissent recouvrir ver 11.04 69.26 0 0.07 sub:imp:3p; +recouvrit recouvrir ver 11.04 69.26 0.04 1.55 ind:pas:3s; +recouvrons recouvrir ver 11.04 69.26 0.03 0.07 imp:pre:1p;ind:pre:1p; +recouvrât recouvrer ver 2.02 5.27 0 0.07 sub:imp:3s; +recouvré recouvrer ver m s 2.02 5.27 0.66 1.62 par:pas; +recouvrée recouvrer ver f s 2.02 5.27 0.02 0.47 par:pas; +recouvrées recouvrer ver f p 2.02 5.27 0.21 0.07 par:pas; +recouvrés recouvrer ver m p 2.02 5.27 0.01 0.07 par:pas; +recouvrît recouvrir ver 11.04 69.26 0 0.14 sub:imp:3s; +recracha recracher ver 2.26 2.36 0 0.74 ind:pas:3s; +recrachaient recracher ver 2.26 2.36 0.01 0.14 ind:imp:3p; +recrachais recracher ver 2.26 2.36 0.01 0.07 ind:imp:1s; +recrachait recracher ver 2.26 2.36 0.03 0.2 ind:imp:3s; +recrachant recracher ver 2.26 2.36 0.01 0 par:pre; +recrache recracher ver 2.26 2.36 0.61 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recrachent recracher ver 2.26 2.36 0.06 0.07 ind:pre:3p; +recracher recracher ver 2.26 2.36 0.66 0.34 inf; +recrachera recracher ver 2.26 2.36 0.02 0.07 ind:fut:3s; +recraches recracher ver 2.26 2.36 0.15 0 ind:pre:2s; +recrachez recracher ver 2.26 2.36 0.17 0 imp:pre:2p;ind:pre:2p; +recraché recracher ver m s 2.26 2.36 0.47 0.27 par:pas; +recrachée recracher ver f s 2.26 2.36 0.05 0.07 par:pas; +recreuse recreuser ver 0.14 0.2 0 0.07 ind:pre:3s; +recreuser recreuser ver 0.14 0.2 0.14 0.07 inf; +recroisait recroiser ver 0.17 0.88 0 0.07 ind:imp:3s; +recroisant recroiser ver 0.17 0.88 0 0.14 par:pre; +recroise recroiser ver 0.17 0.88 0.03 0.34 ind:pre:1s;ind:pre:3s; +recroiser recroiser ver 0.17 0.88 0.05 0.07 inf; +recroiseras recroiser ver 0.17 0.88 0.03 0 ind:fut:2s; +recroiserons recroiser ver 0.17 0.88 0.01 0 ind:fut:1p; +recroisé recroiser ver m s 0.17 0.88 0.04 0.14 par:pas; +recroisés recroiser ver m p 0.17 0.88 0.01 0.14 par:pas; +recroquevilla recroqueviller ver 0.29 14.05 0 0.95 ind:pas:3s; +recroquevillai recroqueviller ver 0.29 14.05 0.01 0.14 ind:pas:1s; +recroquevillaient recroqueviller ver 0.29 14.05 0 0.41 ind:imp:3p; +recroquevillais recroqueviller ver 0.29 14.05 0 0.27 ind:imp:1s; +recroquevillait recroqueviller ver 0.29 14.05 0 0.74 ind:imp:3s; +recroquevillant recroqueviller ver 0.29 14.05 0 0.2 par:pre; +recroqueville recroqueviller ver 0.29 14.05 0.03 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recroquevillement recroquevillement nom m s 0 0.14 0 0.14 +recroquevillent recroqueviller ver 0.29 14.05 0.01 0.61 ind:pre:3p; +recroqueviller recroqueviller ver 0.29 14.05 0.03 1.22 inf; +recroquevillions recroqueviller ver 0.29 14.05 0 0.14 ind:imp:1p; +recroquevillé recroqueviller ver m s 0.29 14.05 0.12 4.59 par:pas; +recroquevillée recroqueviller ver f s 0.29 14.05 0.09 1.96 par:pas; +recroquevillées recroquevillé adj f p 0.12 3.72 0 0.61 +recroquevillés recroquevillé adj m p 0.12 3.72 0.1 0.41 +recru recroître ver m s 0 0.47 0 0.34 par:pas; +recrudescence recrudescence nom f s 0.21 0.81 0.21 0.81 +recrudescente recrudescent adj f s 0.01 0 0.01 0 +recrue recrue nom f s 4.61 3.85 1.73 1.35 +recrues recrue nom f p 4.61 3.85 2.87 2.5 +recrus recroître ver m p 0 0.47 0 0.14 par:pas; +recruta recruter ver 7.45 6.15 0.01 0.2 ind:pas:3s; +recrutaient recruter ver 7.45 6.15 0.03 0.27 ind:imp:3p; +recrutais recruter ver 7.45 6.15 0.02 0 ind:imp:1s;ind:imp:2s; +recrutait recruter ver 7.45 6.15 0.24 0.54 ind:imp:3s; +recrutant recruter ver 7.45 6.15 0.08 0.07 par:pre; +recrute recruter ver 7.45 6.15 1.01 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recrutement recrutement nom m s 1.66 3.51 1.66 3.51 +recrutent recruter ver 7.45 6.15 0.24 0.27 ind:pre:3p; +recruter recruter ver 7.45 6.15 2.59 1.76 inf; +recrutera recruter ver 7.45 6.15 0.04 0 ind:fut:3s; +recruterai recruter ver 7.45 6.15 0.04 0 ind:fut:1s; +recruterez recruter ver 7.45 6.15 0 0.07 ind:fut:2p; +recruteur recruteur nom m s 1.34 0.2 0.87 0.14 +recruteurs recruteur nom m p 1.34 0.2 0.47 0.07 +recrutez recruter ver 7.45 6.15 0.13 0 imp:pre:2p;ind:pre:2p; +recrutiez recruter ver 7.45 6.15 0.02 0 ind:imp:2p; +recrutions recruter ver 7.45 6.15 0.01 0.07 ind:imp:1p; +recrutons recruter ver 7.45 6.15 0.07 0 imp:pre:1p;ind:pre:1p; +recruté recruter ver m s 7.45 6.15 2.27 1.08 par:pas; +recrutée recruter ver f s 7.45 6.15 0.29 0.34 par:pas; +recrutées recruter ver f p 7.45 6.15 0.02 0.2 par:pas; +recrutés recruter ver m p 7.45 6.15 0.34 0.88 par:pas; +recréa recréer ver 2.23 4.39 0 0.14 ind:pas:3s; +recréaient recréer ver 2.23 4.39 0.01 0.14 ind:imp:3p; +recréais recréer ver 2.23 4.39 0.01 0.07 ind:imp:1s; +recréait recréer ver 2.23 4.39 0 0.07 ind:imp:3s; +recréant recréer ver 2.23 4.39 0.04 0.27 par:pre; +recréation recréation nom f s 0.04 0.27 0.01 0.2 +recrée recréer ver 2.23 4.39 0.28 0.34 ind:pre:1s;ind:pre:3s; +recréent recréer ver 2.23 4.39 0 0.14 ind:pre:3p; +recréer recréer ver 2.23 4.39 1.61 2.16 inf; +recréerait recréer ver 2.23 4.39 0.01 0.14 cnd:pre:3s; +recrépi recrépir ver m s 0 0.34 0 0.07 par:pas; +recrépie recrépir ver f s 0 0.34 0 0.07 par:pas; +recrépir recrépir ver 0 0.34 0 0.07 inf; +recrépis recrépir ver m p 0 0.34 0 0.07 par:pas; +recrépit recrépir ver 0 0.34 0 0.07 ind:pre:3s; +recréé recréer ver m s 2.23 4.39 0.16 0.61 par:pas; +recréée recréer ver f s 2.23 4.39 0.02 0.2 par:pas; +recréées recréer ver f p 2.23 4.39 0.01 0.07 par:pas; +recréés recréer ver m p 2.23 4.39 0.07 0 par:pas; +recta recta adv_sup 0.08 1.08 0.08 1.08 +rectal rectal adj m s 0.66 0.14 0.33 0 +rectale rectal adj f s 0.66 0.14 0.29 0.14 +rectangle rectangle nom m s 0.47 16.69 0.38 12.91 +rectangles rectangle nom m p 0.47 16.69 0.09 3.78 +rectangulaire rectangulaire adj s 0.25 8.18 0.09 5.14 +rectangulaires rectangulaire adj p 0.25 8.18 0.16 3.04 +rectaux rectal adj m p 0.66 0.14 0.03 0 +recteur recteur nom m s 2.17 1.55 2.13 1.42 +recteurs recteur nom m p 2.17 1.55 0.04 0.07 +rectifia rectifier ver 2.04 10.68 0 2.64 ind:pas:3s; +rectifiai rectifier ver 2.04 10.68 0 0.2 ind:pas:1s; +rectifiait rectifier ver 2.04 10.68 0.01 0.81 ind:imp:3s; +rectifiant rectifier ver 2.04 10.68 0 0.34 par:pre; +rectificatif rectificatif nom m s 0.05 0.07 0.05 0.07 +rectification rectification nom f s 0.93 0.61 0.91 0.34 +rectifications rectification nom f p 0.93 0.61 0.02 0.27 +rectifie rectifier ver 2.04 10.68 0.26 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rectifient rectifier ver 2.04 10.68 0.01 0.14 ind:pre:3p; +rectifier rectifier ver 2.04 10.68 0.92 2.5 inf; +rectifiera rectifier ver 2.04 10.68 0.02 0 ind:fut:3s; +rectifierai rectifier ver 2.04 10.68 0 0.07 ind:fut:1s; +rectifierez rectifier ver 2.04 10.68 0 0.07 ind:fut:2p; +rectifies rectifier ver 2.04 10.68 0.01 0.07 ind:pre:2s; +rectifiez rectifier ver 2.04 10.68 0.34 0.14 imp:pre:2p;ind:pre:2p; +rectifions rectifier ver 2.04 10.68 0.03 0.07 imp:pre:1p; +rectifièrent rectifier ver 2.04 10.68 0 0.14 ind:pas:3p; +rectifié rectifier ver m s 2.04 10.68 0.36 1.22 par:pas; +rectifiée rectifier ver f s 2.04 10.68 0.06 0.47 par:pas; +rectifiées rectifier ver f p 2.04 10.68 0 0.34 par:pas; +rectifiés rectifier ver m p 2.04 10.68 0.01 0.14 par:pas; +rectiligne rectiligne adj s 0.16 6.08 0.16 4.46 +rectilignes rectiligne adj p 0.16 6.08 0 1.62 +rectilinéaire rectilinéaire adj m s 0.01 0 0.01 0 +rectitude rectitude nom f s 0.05 0.68 0.05 0.68 +recto recto nom m s 0.3 0.95 0.3 0.88 +recto_tono recto_tono adv 0 0.2 0 0.2 +rectorat rectorat nom m s 0.18 0 0.18 0 +rectos recto nom m p 0.3 0.95 0 0.07 +rectrices recteur nom f p 2.17 1.55 0 0.07 +rectum rectum nom m s 0.5 0.81 0.5 0.81 +recueil recueil nom m s 1.52 3.78 1.33 2.97 +recueillaient recueillir ver 8.54 31.42 0.02 0.34 ind:imp:3p; +recueillais recueillir ver 8.54 31.42 0.04 0.2 ind:imp:1s; +recueillait recueillir ver 8.54 31.42 0.05 1.96 ind:imp:3s; +recueillant recueillir ver 8.54 31.42 0.05 1.01 par:pre; +recueille recueillir ver 8.54 31.42 1.12 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recueillement recueillement nom m s 0.2 3.04 0.2 2.97 +recueillements recueillement nom m p 0.2 3.04 0 0.07 +recueillent recueillir ver 8.54 31.42 0.21 0.81 ind:pre:3p; +recueillera recueillir ver 8.54 31.42 0.05 0.47 ind:fut:3s; +recueillerai recueillir ver 8.54 31.42 0.02 0.07 ind:fut:1s; +recueilleraient recueillir ver 8.54 31.42 0 0.07 cnd:pre:3p; +recueillerait recueillir ver 8.54 31.42 0.01 0.27 cnd:pre:3s; +recueilleront recueillir ver 8.54 31.42 0 0.07 ind:fut:3p; +recueillez recueillir ver 8.54 31.42 0.22 0 imp:pre:2p;ind:pre:2p; +recueilli recueillir ver m s 8.54 31.42 2.2 5.88 par:pas; +recueillie recueillir ver f s 8.54 31.42 0.42 1.15 par:pas; +recueillies recueillir ver f p 8.54 31.42 0.29 0.74 par:pas; +recueillions recueillir ver 8.54 31.42 0 0.07 ind:imp:1p; +recueillir recueillir ver 8.54 31.42 2.59 9.46 inf; +recueillirent recueillir ver 8.54 31.42 0.11 0.41 ind:pas:3p; +recueillis recueillir ver m p 8.54 31.42 0.58 2.09 ind:pas:1s;par:pas; +recueillit recueillir ver 8.54 31.42 0.18 2.57 ind:pas:3s; +recueillons recueillir ver 8.54 31.42 0.38 0.07 imp:pre:1p;ind:pre:1p; +recueillît recueillir ver 8.54 31.42 0 0.34 sub:imp:3s; +recueils recueil nom m p 1.52 3.78 0.19 0.81 +recuire recuire ver 0.02 0.68 0.02 0.07 inf; +recuisson recuisson nom f s 0 0.07 0 0.07 +recuit recuit adj m s 0.03 1.55 0.03 0.54 +recuite recuit adj f s 0.03 1.55 0 0.54 +recuites recuire ver f p 0.02 0.68 0 0.27 par:pas; +recuits recuit adj m p 0.03 1.55 0 0.34 +recul recul nom m s 3.59 15.61 3.59 14.73 +recula reculer ver 52.15 69.05 0.02 13.31 ind:pas:3s; +reculade reculade nom f s 0 0.54 0 0.47 +reculades reculade nom f p 0 0.54 0 0.07 +reculai reculer ver 52.15 69.05 0.03 0.68 ind:pas:1s; +reculaient reculer ver 52.15 69.05 0.01 1.62 ind:imp:3p; +reculais reculer ver 52.15 69.05 0.04 0.54 ind:imp:1s;ind:imp:2s; +reculait reculer ver 52.15 69.05 0.2 4.86 ind:imp:3s; +reculant reculer ver 52.15 69.05 0.25 3.78 par:pre; +recule reculer ver 52.15 69.05 15.11 11.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reculent reculer ver 52.15 69.05 1.31 1.49 ind:pre:3p; +reculer reculer ver 52.15 69.05 6.83 15.41 inf; +reculera reculer ver 52.15 69.05 0.14 0.14 ind:fut:3s; +reculerai reculer ver 52.15 69.05 0.24 0 ind:fut:1s; +reculeraient reculer ver 52.15 69.05 0.01 0.07 cnd:pre:3p; +reculerais reculer ver 52.15 69.05 0.05 0 cnd:pre:1s;cnd:pre:2s; +reculerait reculer ver 52.15 69.05 0.01 0.14 cnd:pre:3s; +reculeras reculer ver 52.15 69.05 0.26 0 ind:fut:2s; +reculerons reculer ver 52.15 69.05 0.02 0 ind:fut:1p; +reculeront reculer ver 52.15 69.05 0.2 0 ind:fut:3p; +recules reculer ver 52.15 69.05 1 0.07 ind:pre:2s;sub:pre:2s; +reculez reculer ver 52.15 69.05 22.91 0.2 imp:pre:2p;ind:pre:2p; +reculons reculer ver 52.15 69.05 1.67 6.62 imp:pre:1p;ind:pre:1p; +reculotta reculotter ver 0.02 0.47 0 0.2 ind:pas:3s; +reculotte reculotter ver 0.02 0.47 0.02 0.07 imp:pre:2s;ind:pre:3s; +reculotter reculotter ver 0.02 0.47 0 0.07 inf; +reculotté reculotter ver m s 0.02 0.47 0 0.07 par:pas; +reculottée reculotter ver f s 0.02 0.47 0 0.07 par:pas; +reculs recul nom m p 3.59 15.61 0 0.81 +reculât reculer ver 52.15 69.05 0 0.07 sub:imp:3s; +reculèrent reculer ver 52.15 69.05 0.01 1.22 ind:pas:3p; +reculé reculer ver m s 52.15 69.05 1.71 6.96 par:pas; +reculée reculé adj f s 0.71 3.78 0.14 0.54 +reculées reculer ver f p 52.15 69.05 0.02 0 par:pas; +reculés reculé adj m p 0.71 3.78 0.18 1.15 +recyclable recyclable adj s 0.14 0 0.06 0 +recyclables recyclable adj p 0.14 0 0.09 0 +recyclage recyclage nom m s 0.78 0.47 0.78 0.47 +recyclaient recycler ver 1.77 1.15 0.02 0 ind:imp:3p; +recyclait recycler ver 1.77 1.15 0.01 0 ind:imp:3s; +recycle recycler ver 1.77 1.15 0.46 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recyclent recycler ver 1.77 1.15 0.06 0.07 ind:pre:3p; +recycler recycler ver 1.77 1.15 0.56 0.41 inf; +recyclerai recycler ver 1.77 1.15 0.01 0 ind:fut:1s; +recycleur recycleur nom m s 0.01 0 0.01 0 +recyclez recycler ver 1.77 1.15 0.07 0 imp:pre:2p;ind:pre:2p; +recycliez recycler ver 1.77 1.15 0 0.07 ind:imp:2p; +recyclé recycler ver m s 1.77 1.15 0.39 0.41 par:pas; +recyclée recycler ver f s 1.77 1.15 0.1 0.14 par:pas; +recyclées recycler ver f p 1.77 1.15 0.03 0 par:pas; +recyclés recycler ver m p 1.77 1.15 0.06 0.07 par:pas; +recâbler recâbler ver 0.03 0 0.03 0 inf; +recèle receler ver 1.02 3.72 0.58 0.95 ind:pre:1s;ind:pre:3s; +recèlent receler ver 1.02 3.72 0.31 0.68 ind:pre:3p; +recèles receler ver 1.02 3.72 0.01 0 ind:pre:2s; +recès recès nom m 0 0.07 0 0.07 +recélait recéler ver 0.02 0.54 0.02 0.34 ind:imp:3s; +recélant recéler ver 0.02 0.54 0 0.07 par:pre; +recéler recéler ver 0.02 0.54 0 0.14 inf; +recépages recépage nom m p 0 0.07 0 0.07 +red_river red_river nom s 0 0.14 0 0.14 +redan redan nom m s 0 0.27 0 0.27 +reddition reddition nom f s 2.21 3.24 2.21 3.24 +redemanda redemander ver 3.72 4.19 0 0.61 ind:pas:3s; +redemandai redemander ver 3.72 4.19 0.14 0 ind:pas:1s; +redemandaient redemander ver 3.72 4.19 0 0.27 ind:imp:3p; +redemandais redemander ver 3.72 4.19 0.13 0 ind:imp:1s;ind:imp:2s; +redemandait redemander ver 3.72 4.19 0.16 0.68 ind:imp:3s; +redemandant redemander ver 3.72 4.19 0 0.07 par:pre; +redemande redemander ver 3.72 4.19 1.16 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redemandent redemander ver 3.72 4.19 0.23 0.14 ind:pre:3p; +redemander redemander ver 3.72 4.19 0.54 0.41 inf; +redemanderai redemander ver 3.72 4.19 0.36 0 ind:fut:1s; +redemanderait redemander ver 3.72 4.19 0.01 0 cnd:pre:3s; +redemanderas redemander ver 3.72 4.19 0.2 0 ind:fut:2s; +redemanderez redemander ver 3.72 4.19 0.03 0 ind:fut:2p; +redemanderont redemander ver 3.72 4.19 0 0.07 ind:fut:3p; +redemandes redemander ver 3.72 4.19 0.28 0 ind:pre:2s; +redemandez redemander ver 3.72 4.19 0.2 0 imp:pre:2p;ind:pre:2p; +redemandions redemander ver 3.72 4.19 0 0.07 ind:imp:1p; +redemandé redemander ver m s 3.72 4.19 0.29 0.95 par:pas; +redents redent nom m p 0 0.07 0 0.07 +redescend redescendre ver 11.61 28.38 1.82 2.84 ind:pre:3s; +redescendaient redescendre ver 11.61 28.38 0 0.88 ind:imp:3p; +redescendais redescendre ver 11.61 28.38 0.01 0.41 ind:imp:1s; +redescendait redescendre ver 11.61 28.38 0.12 2.3 ind:imp:3s; +redescendant redescendre ver 11.61 28.38 0.29 1.55 par:pre; +redescende redescendre ver 11.61 28.38 0.5 0.41 sub:pre:1s;sub:pre:3s; +redescendent redescendre ver 11.61 28.38 0.33 0.41 ind:pre:3p; +redescendes redescendre ver 11.61 28.38 0.12 0 sub:pre:2s; +redescendez redescendre ver 11.61 28.38 0.92 0.14 imp:pre:2p;ind:pre:2p; +redescendiez redescendre ver 11.61 28.38 0.01 0 ind:imp:2p; +redescendions redescendre ver 11.61 28.38 0 0.14 ind:imp:1p; +redescendirent redescendre ver 11.61 28.38 0 1.01 ind:pas:3p; +redescendis redescendre ver 11.61 28.38 0 0.47 ind:pas:1s;ind:pas:2s; +redescendit redescendre ver 11.61 28.38 0.01 4.19 ind:pas:3s; +redescendons redescendre ver 11.61 28.38 0.14 0.41 imp:pre:1p;ind:pre:1p; +redescendra redescendre ver 11.61 28.38 0.06 0.14 ind:fut:3s; +redescendrai redescendre ver 11.61 28.38 0.19 0.2 ind:fut:1s; +redescendrais redescendre ver 11.61 28.38 0.01 0 cnd:pre:1s; +redescendrait redescendre ver 11.61 28.38 0 0.2 cnd:pre:3s; +redescendre redescendre ver 11.61 28.38 3.08 5.88 inf; +redescendrons redescendre ver 11.61 28.38 0.01 0.07 ind:fut:1p; +redescendront redescendre ver 11.61 28.38 0.02 0 ind:fut:3p; +redescends redescendre ver 11.61 28.38 3.05 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redescendu redescendre ver m s 11.61 28.38 0.51 3.04 par:pas; +redescendue redescendre ver f s 11.61 28.38 0.25 0.41 par:pas; +redescendues redescendre ver f p 11.61 28.38 0 0.14 par:pas; +redescendus redescendre ver m p 11.61 28.38 0.16 1.42 par:pas; +redescendît redescendre ver 11.61 28.38 0 0.07 sub:imp:3s; +redescente redescente nom f s 0.01 0.14 0.01 0.14 +redessina redessiner ver 0.13 1.08 0 0.14 ind:pas:3s; +redessinaient redessiner ver 0.13 1.08 0 0.07 ind:imp:3p; +redessinait redessiner ver 0.13 1.08 0 0.14 ind:imp:3s; +redessine redessiner ver 0.13 1.08 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redessinent redessiner ver 0.13 1.08 0 0.07 ind:pre:3p; +redessiner redessiner ver 0.13 1.08 0.04 0.34 inf; +redessiné redessiner ver m s 0.13 1.08 0 0.2 par:pas; +redessinée redessiner ver f s 0.13 1.08 0 0.07 par:pas; +redevable redevable adj s 3.76 0.81 3.46 0.74 +redevables redevable adj p 3.76 0.81 0.3 0.07 +redevais redevoir ver 0.03 0.2 0 0.07 ind:imp:1s; +redevait redevoir ver 0.03 0.2 0 0.07 ind:imp:3s; +redevance redevance nom f s 0.04 0.47 0.03 0.27 +redevances redevance nom f p 0.04 0.47 0.01 0.2 +redevenaient redevenir ver 17.88 37.57 0.01 0.74 ind:imp:3p; +redevenais redevenir ver 17.88 37.57 0.17 0.47 ind:imp:1s; +redevenait redevenir ver 17.88 37.57 0.11 4.73 ind:imp:3s; +redevenant redevenir ver 17.88 37.57 0.05 0.47 par:pre; +redevenez redevenir ver 17.88 37.57 0.39 0.14 imp:pre:2p;ind:pre:2p; +redeveniez redevenir ver 17.88 37.57 0.09 0.14 ind:imp:2p; +redevenir redevenir ver 17.88 37.57 5.52 5.88 inf; +redevenons redevenir ver 17.88 37.57 0.04 0.07 imp:pre:1p;ind:pre:1p; +redevenu redevenir ver m s 17.88 37.57 1.65 6.35 par:pas; +redevenue redevenir ver f s 17.88 37.57 0.56 4.53 par:pas; +redevenues redevenir ver f p 17.88 37.57 0.08 0.61 par:pas; +redevenus redevenir ver m p 17.88 37.57 0.4 1.42 par:pas; +redeviendra redevenir ver 17.88 37.57 1.5 0.54 ind:fut:3s; +redeviendrai redevenir ver 17.88 37.57 0.25 0.07 ind:fut:1s; +redeviendraient redevenir ver 17.88 37.57 0.01 0.14 cnd:pre:3p; +redeviendrais redevenir ver 17.88 37.57 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +redeviendrait redevenir ver 17.88 37.57 0.15 0.61 cnd:pre:3s; +redeviendras redevenir ver 17.88 37.57 0.37 0 ind:fut:2s; +redeviendrez redevenir ver 17.88 37.57 0.13 0 ind:fut:2p; +redeviendriez redevenir ver 17.88 37.57 0.14 0 cnd:pre:2p; +redeviendrons redevenir ver 17.88 37.57 0.03 0.07 ind:fut:1p; +redeviendront redevenir ver 17.88 37.57 0.28 0.07 ind:fut:3p; +redevienne redevenir ver 17.88 37.57 1.65 0.34 sub:pre:1s;sub:pre:3s; +redeviennent redevenir ver 17.88 37.57 0.44 0.61 ind:pre:3p; +redeviennes redevenir ver 17.88 37.57 0.17 0 sub:pre:2s; +redeviens redevenir ver 17.88 37.57 1.88 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redevient redevenir ver 17.88 37.57 1.21 4.05 ind:pre:3s; +redevinrent redevenir ver 17.88 37.57 0.01 0.2 ind:pas:3p; +redevins redevenir ver 17.88 37.57 0 0.2 ind:pas:1s; +redevint redevenir ver 17.88 37.57 0.23 3.65 ind:pas:3s; +redevoir redevoir ver 0.03 0.2 0.01 0 inf; +redevra redevoir ver 0.03 0.2 0 0.07 ind:fut:3s; +redevrez redevoir ver 0.03 0.2 0.01 0 ind:fut:2p; +redevînt redevenir ver 17.88 37.57 0 0.2 sub:imp:3s; +rediffusent rediffuser ver 0.2 0.07 0.02 0 ind:pre:3p; +rediffuser rediffuser ver 0.2 0.07 0.05 0 inf; +rediffuserons rediffuser ver 0.2 0.07 0.02 0 ind:fut:1p; +rediffusez rediffuser ver 0.2 0.07 0.01 0 imp:pre:2p; +rediffusion rediffusion nom f s 0.64 0 0.44 0 +rediffusions rediffusion nom f p 0.64 0 0.2 0 +rediffusé rediffuser ver m s 0.2 0.07 0.05 0 par:pas; +rediffusés rediffuser ver m p 0.2 0.07 0.03 0.07 par:pas; +redimensionner redimensionner ver 0.03 0 0.01 0 inf; +redimensionnées redimensionner ver f p 0.03 0 0.01 0 par:pas; +redingote redingote nom f s 0.81 5.07 0.54 4.66 +redingotes redingote nom f p 0.81 5.07 0.27 0.41 +redirai redire ver 8.61 10.2 0.47 0.07 ind:fut:1s; +redirais redire ver 8.61 10.2 0.03 0 cnd:pre:1s; +redirait redire ver 8.61 10.2 0.01 0.07 cnd:pre:3s; +redire redire ver 8.61 10.2 3.04 5.07 inf; +redirez redire ver 8.61 10.2 0.01 0.07 ind:fut:2p; +rediriez redire ver 8.61 10.2 0.01 0 cnd:pre:2p; +redirige rediriger ver 0.37 0 0.08 0 ind:pre:1s;ind:pre:3s; +rediriger rediriger ver 0.37 0 0.15 0 inf; +redirigé rediriger ver m s 0.37 0 0.14 0 par:pas; +redis redire ver 8.61 10.2 3.46 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redisais redire ver 8.61 10.2 0.01 0.2 ind:imp:1s; +redisait redire ver 8.61 10.2 0 0.34 ind:imp:3s; +redisant redire ver 8.61 10.2 0.01 0.2 par:pre; +rediscuter rediscuter ver 0.2 0.07 0.1 0.07 inf; +rediscutera rediscuter ver 0.2 0.07 0.05 0 ind:fut:3s; +rediscuterons rediscuter ver 0.2 0.07 0.05 0 ind:fut:1p; +redise redire ver 8.61 10.2 0.02 0.2 sub:pre:1s;sub:pre:3s; +redisent redire ver 8.61 10.2 0.01 0.07 ind:pre:3p; +redises redire ver 8.61 10.2 0.27 0 sub:pre:2s; +redisposer redisposer ver 0.16 0.14 0.16 0.14 inf; +redistribua redistribuer ver 0.34 0.61 0.01 0 ind:pas:3s; +redistribuais redistribuer ver 0.34 0.61 0.02 0.07 ind:imp:1s;ind:imp:2s; +redistribuait redistribuer ver 0.34 0.61 0 0.2 ind:imp:3s; +redistribue redistribuer ver 0.34 0.61 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redistribuent redistribuer ver 0.34 0.61 0.01 0 ind:pre:3p; +redistribuer redistribuer ver 0.34 0.61 0.13 0.14 inf; +redistribueras redistribuer ver 0.34 0.61 0.01 0 ind:fut:2s; +redistribuons redistribuer ver 0.34 0.61 0.01 0 imp:pre:1p; +redistribution redistribution nom f s 0.1 0.41 0.1 0.34 +redistributions redistribution nom f p 0.1 0.41 0 0.07 +redistribué redistribuer ver m s 0.34 0.61 0.04 0.07 par:pas; +redistribués redistribuer ver m p 0.34 0.61 0.03 0.07 par:pas; +redit redire ver m s 8.61 10.2 0.39 1.96 ind:pre:3s;par:pas; +redite redire ver f s 8.61 10.2 0.01 0 par:pas; +redites redire ver f p 8.61 10.2 0.85 0.2 par:pas; +redits redire ver m p 8.61 10.2 0 0.14 par:pas; +redondance redondance nom f s 0.07 0.34 0.04 0.07 +redondances redondance nom f p 0.07 0.34 0.04 0.27 +redondant redondant adj m s 0.39 0.27 0.32 0.14 +redondante redondant adj f s 0.39 0.27 0.03 0.07 +redondantes redondant adj f p 0.39 0.27 0.01 0.07 +redondants redondant adj m p 0.39 0.27 0.04 0 +redonna redonner ver 9.43 11.49 0.03 0.54 ind:pas:3s; +redonnai redonner ver 9.43 11.49 0 0.07 ind:pas:1s; +redonnaient redonner ver 9.43 11.49 0 0.2 ind:imp:3p; +redonnais redonner ver 9.43 11.49 0.01 0.07 ind:imp:1s; +redonnait redonner ver 9.43 11.49 0.05 1.55 ind:imp:3s; +redonnant redonner ver 9.43 11.49 0.03 0.47 par:pre; +redonne redonner ver 9.43 11.49 2.77 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redonnent redonner ver 9.43 11.49 0.25 0.2 ind:pre:3p; +redonner redonner ver 9.43 11.49 2.87 4.73 inf; +redonnera redonner ver 9.43 11.49 0.27 0.2 ind:fut:3s; +redonnerai redonner ver 9.43 11.49 0.11 0 ind:fut:1s; +redonneraient redonner ver 9.43 11.49 0.01 0.07 cnd:pre:3p; +redonnerais redonner ver 9.43 11.49 0 0.07 cnd:pre:1s; +redonnerait redonner ver 9.43 11.49 0.04 0.14 cnd:pre:3s; +redonneras redonner ver 9.43 11.49 0.14 0 ind:fut:2s; +redonnerons redonner ver 9.43 11.49 0.01 0 ind:fut:1p; +redonneront redonner ver 9.43 11.49 0.02 0 ind:fut:3p; +redonnes redonner ver 9.43 11.49 0.56 0 ind:pre:2s; +redonnez redonner ver 9.43 11.49 0.54 0.07 imp:pre:2p;ind:pre:2p; +redonniez redonner ver 9.43 11.49 0.01 0 ind:imp:2p; +redonnons redonner ver 9.43 11.49 0.42 0 imp:pre:1p;ind:pre:1p; +redonnât redonner ver 9.43 11.49 0 0.07 sub:imp:3s; +redonné redonner ver m s 9.43 11.49 1.28 1.42 par:pas; +redorer redorer ver 0.18 0.41 0.18 0.27 inf; +redormir redormir ver 0.01 0.27 0.01 0.14 inf; +redors redormir ver 0.01 0.27 0 0.07 ind:pre:1s; +redort redormir ver 0.01 0.27 0 0.07 ind:pre:3s; +redoré redorer ver m s 0.18 0.41 0 0.07 par:pas; +redorées redorer ver f p 0.18 0.41 0 0.07 par:pas; +redoubla redoubler ver 2.73 11.01 0 1.08 ind:pas:3s; +redoublai redoubler ver 2.73 11.01 0.01 0.2 ind:pas:1s; +redoublaient redoubler ver 2.73 11.01 0 0.74 ind:imp:3p; +redoublais redoubler ver 2.73 11.01 0.01 0.07 ind:imp:1s; +redoublait redoubler ver 2.73 11.01 0.02 1.96 ind:imp:3s; +redoublant redoubler ver 2.73 11.01 0.01 0.2 par:pre; +redoublants redoublant nom m p 0 0.07 0 0.07 +redouble redoubler ver 2.73 11.01 0.57 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redoublement redoublement nom m s 0.03 0.47 0.03 0.47 +redoublent redoubler ver 2.73 11.01 0.17 0.74 ind:pre:3p; +redoubler redoubler ver 2.73 11.01 1.16 1.96 inf; +redoublera redoubler ver 2.73 11.01 0.11 0.07 ind:fut:3s; +redoublerai redoubler ver 2.73 11.01 0.12 0.07 ind:fut:1s; +redoublerait redoubler ver 2.73 11.01 0 0.14 cnd:pre:3s; +redoubleront redoubler ver 2.73 11.01 0.01 0.07 ind:fut:3p; +redoublez redoubler ver 2.73 11.01 0.04 0 imp:pre:2p;ind:pre:2p; +redoublions redoubler ver 2.73 11.01 0 0.07 ind:imp:1p; +redoublons redoubler ver 2.73 11.01 0 0.07 imp:pre:1p; +redoublèrent redoubler ver 2.73 11.01 0 0.27 ind:pas:3p; +redoublé redoubler ver m s 2.73 11.01 0.35 0.61 par:pas; +redoublée redoubler ver f s 2.73 11.01 0 0.2 par:pas; +redoublées redoublé adj f p 0.05 1.28 0 0.14 +redoublés redoubler ver m p 2.73 11.01 0.14 0.27 par:pas; +redouta redouter ver 6.58 38.58 0 0.54 ind:pas:3s; +redoutable redoutable adj s 6.61 23.18 5.94 17.77 +redoutablement redoutablement adv 0.01 0.41 0.01 0.41 +redoutables redoutable adj p 6.61 23.18 0.67 5.41 +redoutaient redouter ver 6.58 38.58 0.08 0.74 ind:imp:3p; +redoutais redouter ver 6.58 38.58 0.66 3.65 ind:imp:1s;ind:imp:2s; +redoutait redouter ver 6.58 38.58 0.73 11.49 ind:imp:3s; +redoutant redouter ver 6.58 38.58 0.12 3.18 par:pre; +redoutasse redouter ver 6.58 38.58 0 0.07 sub:imp:1s; +redoute redouter ver 6.58 38.58 1.51 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redoutent redouter ver 6.58 38.58 0.4 1.15 ind:pre:3p;sub:pre:3p; +redouter redouter ver 6.58 38.58 1.03 4.8 inf; +redouterait redouter ver 6.58 38.58 0 0.07 cnd:pre:3s; +redouteras redouter ver 6.58 38.58 0 0.07 ind:fut:2s; +redoutes redouter ver 6.58 38.58 0.15 0.07 ind:pre:2s; +redoutez redouter ver 6.58 38.58 0.44 0.07 imp:pre:2p;ind:pre:2p; +redoutiez redouter ver 6.58 38.58 0.37 0 ind:imp:2p; +redoutions redouter ver 6.58 38.58 0.04 0.54 ind:imp:1p;sub:pre:1p; +redoutons redouter ver 6.58 38.58 0.04 0.14 imp:pre:1p;ind:pre:1p; +redoutât redouter ver 6.58 38.58 0 0.2 sub:imp:3s; +redoutèrent redouter ver 6.58 38.58 0 0.07 ind:pas:3p; +redouté redouter ver m s 6.58 38.58 0.79 4.05 par:pas; +redoutée redouter ver f s 6.58 38.58 0.2 1.69 par:pas; +redoutées redouter ver f p 6.58 38.58 0 0.47 par:pas; +redoutés redouter ver m p 6.58 38.58 0.02 0.68 par:pas; +redoux redoux nom m 0.01 0.88 0.01 0.88 +redressa redresser ver 8.93 64.39 0.03 22.16 ind:pas:3s; +redressai redresser ver 8.93 64.39 0 1.08 ind:pas:1s; +redressaient redresser ver 8.93 64.39 0 0.74 ind:imp:3p; +redressais redresser ver 8.93 64.39 0 0.34 ind:imp:1s; +redressait redresser ver 8.93 64.39 0.01 4.26 ind:imp:3s; +redressant redresser ver 8.93 64.39 0.04 5.47 par:pre; +redresse redresser ver 8.93 64.39 3.91 10.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redressement redressement nom m s 1.63 6.62 1.63 6.55 +redressements redressement nom m p 1.63 6.62 0 0.07 +redressent redresser ver 8.93 64.39 0.17 0.68 ind:pre:3p; +redresser redresser ver 8.93 64.39 2.28 8.24 inf; +redressera redresser ver 8.93 64.39 0.12 0.07 ind:fut:3s; +redresserai redresser ver 8.93 64.39 0.13 0 ind:fut:1s; +redresserait redresser ver 8.93 64.39 0.01 0.27 cnd:pre:3s; +redresserons redresser ver 8.93 64.39 0 0.07 ind:fut:1p; +redresses redresser ver 8.93 64.39 0.23 0 ind:pre:2s;sub:pre:2s; +redresseur redresseur nom m s 0.32 0.34 0.27 0.2 +redresseurs redresseur nom m p 0.32 0.34 0.03 0.14 +redresseuse redresseur nom f s 0.32 0.34 0.02 0 +redressez redresser ver 8.93 64.39 1.4 0.14 imp:pre:2p;ind:pre:2p; +redressons redresser ver 8.93 64.39 0.13 0.07 imp:pre:1p;ind:pre:1p; +redressât redresser ver 8.93 64.39 0 0.2 sub:imp:3s; +redressèrent redresser ver 8.93 64.39 0 0.47 ind:pas:3p; +redressé redresser ver m s 8.93 64.39 0.3 5.61 par:pas; +redressée redresser ver f s 8.93 64.39 0.15 2.77 par:pas; +redressées redresser ver f p 8.93 64.39 0 0.34 par:pas; +redressés redresser ver m p 8.93 64.39 0.01 0.54 par:pas; +redéconner redéconner ver 0.01 0 0.01 0 inf; +redécoré redécoré adj m s 0.26 0.14 0.26 0.14 +redécoupage redécoupage nom m s 0.01 0 0.01 0 +redécouvert redécouvrir ver m s 0.7 3.18 0.13 0.41 par:pas; +redécouverte redécouverte nom f s 0.03 0.14 0.03 0.14 +redécouvertes redécouvrir ver f p 0.7 3.18 0 0.07 par:pas; +redécouverts redécouvert adj m p 0 0.07 0 0.07 +redécouvraient redécouvrir ver 0.7 3.18 0.01 0.07 ind:imp:3p; +redécouvrait redécouvrir ver 0.7 3.18 0 0.34 ind:imp:3s; +redécouvrant redécouvrir ver 0.7 3.18 0.1 0.14 par:pre; +redécouvre redécouvrir ver 0.7 3.18 0.01 0.41 ind:pre:1s;ind:pre:3s; +redécouvrent redécouvrir ver 0.7 3.18 0.1 0.07 ind:pre:3p; +redécouvrions redécouvrir ver 0.7 3.18 0 0.14 ind:imp:1p; +redécouvrir redécouvrir ver 0.7 3.18 0.29 1.22 inf; +redécouvrira redécouvrir ver 0.7 3.18 0 0.07 ind:fut:3s; +redécouvriront redécouvrir ver 0.7 3.18 0 0.07 ind:fut:3p; +redécouvris redécouvrir ver 0.7 3.18 0 0.07 ind:pas:1s; +redécouvrit redécouvrir ver 0.7 3.18 0.02 0.07 ind:pas:3s; +redécouvrons redécouvrir ver 0.7 3.18 0.04 0 ind:pre:1p; +redécouvrît redécouvrir ver 0.7 3.18 0 0.07 sub:imp:3s; +redéfini redéfinir ver m s 0.29 0.07 0.03 0 par:pas; +redéfinir redéfinir ver 0.29 0.07 0.13 0 inf; +redéfinis redéfinir ver m p 0.29 0.07 0.03 0.07 ind:pre:1s;par:pas; +redéfinissons redéfinir ver 0.29 0.07 0.11 0 imp:pre:1p;ind:pre:1p; +redéfinition redéfinition nom f s 0.01 0 0.01 0 +redégringoler redégringoler ver 0 0.07 0 0.07 inf; +redémarra redémarrer ver 1.9 2.16 0 0.14 ind:pas:3s; +redémarrage redémarrage nom m s 0.13 0 0.13 0 +redémarraient redémarrer ver 1.9 2.16 0 0.07 ind:imp:3p; +redémarrais redémarrer ver 1.9 2.16 0.01 0.07 ind:imp:1s; +redémarrait redémarrer ver 1.9 2.16 0 0.14 ind:imp:3s; +redémarrant redémarrer ver 1.9 2.16 0.01 0.07 par:pre; +redémarre redémarrer ver 1.9 2.16 0.4 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redémarrent redémarrer ver 1.9 2.16 0 0.07 ind:pre:3p; +redémarrer redémarrer ver 1.9 2.16 1 0.47 inf; +redémarrera redémarrer ver 1.9 2.16 0.01 0.07 ind:fut:3s; +redémarrerait redémarrer ver 1.9 2.16 0.01 0 cnd:pre:3s; +redémarrez redémarrer ver 1.9 2.16 0.18 0 imp:pre:2p;ind:pre:2p; +redémarrons redémarrer ver 1.9 2.16 0.02 0 imp:pre:1p; +redémarré redémarrer ver m s 1.9 2.16 0.25 0.07 par:pas; +redémolir redémolir ver 0.01 0 0.01 0 inf; +redéploie redéployer ver 0.14 0 0.03 0 ind:pre:3s; +redéploiement redéploiement nom m s 0.04 0.07 0.04 0.07 +redéployer redéployer ver 0.14 0 0.09 0 inf; +redéployez redéployer ver 0.14 0 0.04 0 imp:pre:2p;ind:pre:2p; +redéposer redéposer ver 0.08 0.07 0.01 0 inf; +redéposé redéposer ver m s 0.08 0.07 0.07 0.07 par:pas; +refabriquer refabriquer ver 0.01 0 0.01 0 inf; +refaire refaire ver 58.27 40.81 26.29 18.24 inf; +refais refaire ver 58.27 40.81 8.71 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +refaisaient refaire ver 58.27 40.81 0.01 0.41 ind:imp:3p; +refaisais refaire ver 58.27 40.81 0.11 0.41 ind:imp:1s;ind:imp:2s; +refaisait refaire ver 58.27 40.81 0.18 1.89 ind:imp:3s; +refaisant refaire ver 58.27 40.81 0.03 1.28 par:pre; +refaisions refaire ver 58.27 40.81 0.01 0.54 ind:imp:1p; +refaisons refaire ver 58.27 40.81 0.79 0 imp:pre:1p;ind:pre:1p; +refait refaire ver m s 58.27 40.81 11.23 8.58 ind:pre:3s;par:pas;par:pas; +refaite refaire ver f s 58.27 40.81 0.44 0.88 par:pas; +refaites refaire ver f p 58.27 40.81 2.55 0.54 imp:pre:2p;ind:pre:2p;par:pas; +refaits refaire ver m p 58.27 40.81 0.19 0.14 par:pas; +refamiliariser refamiliariser ver 0.01 0 0.01 0 inf; +refasse refaire ver 58.27 40.81 1.18 0.41 sub:pre:1s;sub:pre:3s; +refassent refaire ver 58.27 40.81 0.02 0.07 sub:pre:3p; +refasses refaire ver 58.27 40.81 0.41 0 sub:pre:2s; +refassiez refaire ver 58.27 40.81 0.04 0 sub:pre:2p; +refaufile refaufiler ver 0 0.07 0 0.07 ind:pre:3s; +refaçonner refaçonner ver 0.01 0 0.01 0 inf; +refendre refendre ver 0 0.27 0 0.14 inf; +refendu refendre ver m s 0 0.27 0 0.14 par:pas; +refera refaire ver 58.27 40.81 1.28 0.27 ind:fut:3s; +referai refaire ver 58.27 40.81 1.49 0.34 ind:fut:1s; +referais refaire ver 58.27 40.81 1.56 0.54 cnd:pre:1s;cnd:pre:2s; +referait refaire ver 58.27 40.81 0.21 0.47 cnd:pre:3s; +referas refaire ver 58.27 40.81 0.49 0 ind:fut:2s; +referendum referendum nom m s 0.13 0 0.13 0 +referions refaire ver 58.27 40.81 0.01 0 cnd:pre:1p; +referma refermer ver 11.97 91.76 0.33 20.34 ind:pas:3s; +refermai refermer ver 11.97 91.76 0 1.35 ind:pas:1s; +refermaient refermer ver 11.97 91.76 0.03 1.42 ind:imp:3p; +refermais refermer ver 11.97 91.76 0 0.68 ind:imp:1s; +refermait refermer ver 11.97 91.76 0.05 7.09 ind:imp:3s; +refermant refermer ver 11.97 91.76 0.05 4.8 par:pre; +refermassent refermer ver 11.97 91.76 0 0.07 sub:imp:3p; +referme refermer ver 11.97 91.76 3.5 14.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +referment refermer ver 11.97 91.76 0.35 1.82 ind:pre:3p; +refermer refermer ver 11.97 91.76 3.26 13.11 inf; +refermera refermer ver 11.97 91.76 0.36 0.2 ind:fut:3s; +refermeraient refermer ver 11.97 91.76 0 0.27 cnd:pre:3p; +refermerais refermer ver 11.97 91.76 0.02 0 cnd:pre:1s;cnd:pre:2s; +refermerait refermer ver 11.97 91.76 0.11 0.27 cnd:pre:3s; +refermeront refermer ver 11.97 91.76 0.15 0 ind:fut:3p; +refermes refermer ver 11.97 91.76 0.21 0 ind:pre:2s; +refermez refermer ver 11.97 91.76 0.73 0.2 imp:pre:2p;ind:pre:2p; +refermons refermer ver 11.97 91.76 0.26 0.14 imp:pre:1p;ind:pre:1p; +refermâmes refermer ver 11.97 91.76 0 0.07 ind:pas:1p; +refermât refermer ver 11.97 91.76 0 0.47 sub:imp:3s; +refermèrent refermer ver 11.97 91.76 0 1.08 ind:pas:3p; +refermé refermer ver m s 11.97 91.76 0.98 11.15 par:pas; +refermée refermer ver f s 11.97 91.76 1.19 9.59 par:pas; +refermées refermer ver f p 11.97 91.76 0.17 1.49 par:pas; +refermés refermer ver m p 11.97 91.76 0.2 1.22 par:pas; +referons refaire ver 58.27 40.81 0.14 0.41 ind:fut:1p; +referont refaire ver 58.27 40.81 0.3 0.07 ind:fut:3p; +refeuilleter refeuilleter ver 0 0.07 0 0.07 inf; +reficelai reficeler ver 0 0.14 0 0.07 ind:pas:1s; +reficelle reficeler ver 0 0.14 0 0.07 ind:pre:1s; +refil refil nom m s 0 0.14 0 0.14 +refila refiler ver 9.7 12.09 0.14 0.14 ind:pas:3s; +refilai refiler ver 9.7 12.09 0 0.07 ind:pas:1s; +refilaient refiler ver 9.7 12.09 0.01 0.14 ind:imp:3p; +refilais refiler ver 9.7 12.09 0 0.14 ind:imp:1s; +refilait refiler ver 9.7 12.09 0.33 0.81 ind:imp:3s; +refilant refiler ver 9.7 12.09 0.15 0.47 par:pre; +refile refiler ver 9.7 12.09 2 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refilent refiler ver 9.7 12.09 0.17 0.41 ind:pre:3p; +refiler refiler ver 9.7 12.09 2.58 3.99 inf; +refilera refiler ver 9.7 12.09 0.03 0.14 ind:fut:3s; +refilerait refiler ver 9.7 12.09 0.04 0.07 cnd:pre:3s; +refiles refiler ver 9.7 12.09 0.37 0.07 ind:pre:2s; +refilez refiler ver 9.7 12.09 0.25 0 imp:pre:2p;ind:pre:2p; +refilé refiler ver m s 9.7 12.09 3.13 2.43 par:pas; +refilée refiler ver f s 9.7 12.09 0.37 0.41 par:pas; +refilées refiler ver f p 9.7 12.09 0.02 0.07 par:pas; +refilés refiler ver m p 9.7 12.09 0.13 0.14 par:pas; +refinancement refinancement nom m s 0.04 0 0.04 0 +refinancée refinancer ver f s 0.01 0 0.01 0 par:pas; +refirent refaire ver 58.27 40.81 0.01 0.47 ind:pas:3p; +refis refaire ver 58.27 40.81 0.14 0.34 ind:pas:1s; +refit refaire ver 58.27 40.81 0.03 2.77 ind:pas:3s; +reflet reflet nom m s 6.41 50.74 5.63 27.36 +reflets reflet nom m p 6.41 50.74 0.77 23.38 +refleurir refleurir ver 0.28 0.88 0.14 0.34 inf; +refleurira refleurir ver 0.28 0.88 0.11 0.07 ind:fut:3s; +refleurissaient refleurir ver 0.28 0.88 0 0.14 ind:imp:3p; +refleurissait refleurir ver 0.28 0.88 0 0.14 ind:imp:3s; +refleurissent refleurir ver 0.28 0.88 0.01 0.07 ind:pre:3p; +refleurit refleurir ver 0.28 0.88 0.02 0.14 ind:pre:3s;ind:pas:3s; +reflex reflex nom m 0.14 0 0.14 0 +reflua refluer ver 0.4 8.04 0 0.88 ind:pas:3s; +refluaient refluer ver 0.4 8.04 0.01 0.68 ind:imp:3p; +refluait refluer ver 0.4 8.04 0 1.28 ind:imp:3s; +refluant refluer ver 0.4 8.04 0 0.81 par:pre; +reflue refluer ver 0.4 8.04 0 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refluent refluer ver 0.4 8.04 0.1 0.61 ind:pre:3p; +refluer refluer ver 0.4 8.04 0.13 1.28 inf; +refluera refluer ver 0.4 8.04 0 0.07 ind:fut:3s; +reflux reflux nom m 0.47 3.45 0.47 3.45 +refluèrent refluer ver 0.4 8.04 0 0.54 ind:pas:3p; +reflué refluer ver m s 0.4 8.04 0.16 0.47 par:pas; +refluée refluer ver f s 0.4 8.04 0 0.07 par:pas; +reflète refléter ver 5.57 22.23 2.89 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reflètent refléter ver 5.57 22.23 0.68 2.16 ind:pre:3p; +refléta refléter ver 5.57 22.23 0 0.2 ind:pas:3s; +reflétaient refléter ver 5.57 22.23 0.19 4.26 ind:imp:3p; +reflétait refléter ver 5.57 22.23 0.35 6.15 ind:imp:3s; +reflétant refléter ver 5.57 22.23 0.08 1.22 par:pre; +refléter refléter ver 5.57 22.23 0.8 1.42 inf; +reflétera refléter ver 5.57 22.23 0.08 0.14 ind:fut:3s; +refléteraient refléter ver 5.57 22.23 0 0.07 cnd:pre:3p; +refléterait refléter ver 5.57 22.23 0.02 0.07 cnd:pre:3s; +reflétons refléter ver 5.57 22.23 0 0.07 ind:pre:1p; +reflétèrent refléter ver 5.57 22.23 0 0.07 ind:pas:3p; +reflété refléter ver m s 5.57 22.23 0.22 1.76 par:pas; +reflétée refléter ver f s 5.57 22.23 0.12 1.28 par:pas; +reflétées refléter ver f p 5.57 22.23 0.14 0.34 par:pas; +reflétés refléter ver m p 5.57 22.23 0 0.14 par:pas; +refoncer refoncer ver 0.01 0 0.01 0 inf; +refondant refonder ver 0 0.2 0 0.07 par:pre; +refonde refonder ver 0 0.2 0 0.14 ind:pre:3s; +refondre refondre ver 0.17 0.68 0.14 0.34 inf; +refonds refondre ver 0.17 0.68 0.01 0 imp:pre:2s; +refondu refondre ver m s 0.17 0.68 0.01 0.07 par:pas; +refondus refondre ver m p 0.17 0.68 0 0.27 par:pas; +refont refaire ver 58.27 40.81 0.42 0.41 ind:pre:3p; +refonte refonte nom f s 0.28 0.47 0.28 0.47 +reforger reforger ver 0.54 0.14 0.14 0.14 inf; +reforgé reforger ver m s 0.54 0.14 0.14 0 par:pas; +reforgée reforger ver f s 0.54 0.14 0.27 0 par:pas; +reforma reformer ver 0.71 6.49 0.04 0.61 ind:pas:3s; +reformaient reformer ver 0.71 6.49 0 0.88 ind:imp:3p; +reformait reformer ver 0.71 6.49 0 1.01 ind:imp:3s; +reformant reformer ver 0.71 6.49 0 0.2 par:pre; +reformassent reformer ver 0.71 6.49 0 0.07 sub:imp:3p; +reformater reformater ver 0.01 0 0.01 0 inf; +reformation reformation nom f s 0.02 0.07 0.02 0.07 +reforme reformer ver 0.71 6.49 0.16 1.08 ind:pre:1s;ind:pre:3s; +reforment reformer ver 0.71 6.49 0.03 0.27 ind:pre:3p; +reformer reformer ver 0.71 6.49 0.29 1.01 inf; +reformerons reformer ver 0.71 6.49 0 0.07 ind:fut:1p; +reformeront reformer ver 0.71 6.49 0.02 0.14 ind:fut:3p; +reformez reformer ver 0.71 6.49 0.08 0 imp:pre:2p; +reformulation reformulation nom f s 0.01 0 0.01 0 +reformuler reformuler ver 0.55 0.14 0.5 0 inf; +reformulé reformuler ver m s 0.55 0.14 0.04 0 par:pas; +reformulée reformuler ver f s 0.55 0.14 0 0.14 par:pas; +reformèrent reformer ver 0.71 6.49 0 0.07 ind:pas:3p; +reformé reformer ver m s 0.71 6.49 0.05 0.47 par:pas; +reformée reformer ver f s 0.71 6.49 0.04 0.27 par:pas; +reformés reformer ver m p 0.71 6.49 0.01 0.34 par:pas; +refouiller refouiller ver 0.03 0.07 0.01 0 inf; +refouillé refouiller ver m s 0.03 0.07 0.01 0.07 par:pas; +refoula refouler ver 1.88 7.36 0 0.41 ind:pas:3s; +refoulai refouler ver 1.88 7.36 0 0.07 ind:pas:1s; +refoulaient refouler ver 1.88 7.36 0 0.14 ind:imp:3p; +refoulais refouler ver 1.88 7.36 0.03 0.07 ind:imp:1s;ind:imp:2s; +refoulait refouler ver 1.88 7.36 0.03 0.41 ind:imp:3s; +refoulant refouler ver 1.88 7.36 0.01 0.27 par:pre; +refoulante refoulant adj f s 0 0.27 0 0.2 +refoule refouler ver 1.88 7.36 0.3 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refoulement refoulement nom m s 0.17 1.08 0.15 0.88 +refoulements refoulement nom m p 0.17 1.08 0.02 0.2 +refoulent refouler ver 1.88 7.36 0.03 0.14 ind:pre:3p; +refouler refouler ver 1.88 7.36 0.72 2.3 inf; +refoulerait refouler ver 1.88 7.36 0 0.07 cnd:pre:3s; +refoulez refouler ver 1.88 7.36 0.05 0.07 imp:pre:2p;ind:pre:2p; +refouloir refouloir nom m s 0.01 0 0.01 0 +refoulé refouler ver m s 1.88 7.36 0.53 1.35 par:pas; +refoulée refoulé adj f s 1.24 1.69 0.34 0.47 +refoulées refoulé adj f p 1.24 1.69 0.27 0.27 +refoulés refoulé adj m p 1.24 1.69 0.27 0.47 +refourgua refourguer ver 0.95 1.82 0 0.07 ind:pas:3s; +refourgue refourguer ver 0.95 1.82 0.12 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refourguer refourguer ver 0.95 1.82 0.44 0.88 inf; +refourguera refourguer ver 0.95 1.82 0.01 0 ind:fut:3s; +refourguerait refourguer ver 0.95 1.82 0 0.07 cnd:pre:3s; +refourguions refourguer ver 0.95 1.82 0.01 0 ind:imp:1p; +refourgué refourguer ver m s 0.95 1.82 0.36 0 par:pas; +refourguées refourguer ver f p 0.95 1.82 0 0.07 par:pas; +refourgués refourguer ver m p 0.95 1.82 0.01 0.2 par:pas; +refourrait refourrer ver 0 0.07 0 0.07 ind:imp:3s; +refous refoutre ver 0.11 0.95 0.06 0.07 ind:pre:1s;ind:pre:2s; +refout refoutre ver 0.11 0.95 0 0.14 ind:pre:3s; +refoutait refoutre ver 0.11 0.95 0 0.14 ind:imp:3s; +refoute refoutre ver 0.11 0.95 0.01 0 sub:pre:3s; +refoutent refoutre ver 0.11 0.95 0.01 0 ind:pre:3p; +refoutes refoutre ver 0.11 0.95 0 0.07 sub:pre:2s; +refoutez refoutre ver 0.11 0.95 0 0.07 imp:pre:2p; +refoutre refoutre ver 0.11 0.95 0.03 0.41 inf; +refoutu refoutre ver m s 0.11 0.95 0 0.07 par:pas; +refrain refrain nom m s 2.39 10.68 1.98 8.24 +refrains refrain nom m p 2.39 10.68 0.41 2.43 +refranchies refranchir ver f p 0.01 0.07 0 0.07 par:pas; +refranchir refranchir ver 0.01 0.07 0.01 0 inf; +refrappe refrapper ver 0.07 0.14 0.04 0 imp:pre:2s;ind:pre:3s; +refrapper refrapper ver 0.07 0.14 0.01 0 inf; +refroidi refroidir ver m s 10.57 8.58 1.32 0.88 par:pas; +refroidie refroidir ver f s 10.57 8.58 0.17 0.34 par:pas; +refroidies refroidir ver f p 10.57 8.58 0.17 0.14 par:pas; +refroidir refroidir ver 10.57 8.58 3.17 3.11 inf; +refroidira refroidir ver 10.57 8.58 0.06 0.14 ind:fut:3s; +refroidiraient refroidir ver 10.57 8.58 0 0.14 cnd:pre:3p; +refroidirais refroidir ver 10.57 8.58 0.01 0 cnd:pre:2s; +refroidirait refroidir ver 10.57 8.58 0.05 0.14 cnd:pre:3s; +refroidis refroidir ver m p 10.57 8.58 0.8 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +refroidissaient refroidir ver 10.57 8.58 0.01 0.14 ind:imp:3p; +refroidissais refroidir ver 10.57 8.58 0 0.07 ind:imp:1s; +refroidissait refroidir ver 10.57 8.58 0.06 1.01 ind:imp:3s; +refroidissant refroidir ver 10.57 8.58 0.06 0.07 par:pre; +refroidisse refroidir ver 10.57 8.58 1.43 0.41 sub:pre:1s;sub:pre:3s; +refroidissement refroidissement nom m s 1.56 1.01 1.56 1.01 +refroidissent refroidir ver 10.57 8.58 0.22 0.2 ind:pre:3p; +refroidisseur refroidisseur nom m s 0.1 0 0.1 0 +refroidissiez refroidir ver 10.57 8.58 0 0.07 ind:imp:2p; +refroidit refroidir ver 10.57 8.58 3.03 1.35 ind:pre:3s;ind:pas:3s; +refrène refréner ver 0.01 1.82 0 0.14 ind:pre:3s; +refréna refréner ver 0.01 1.82 0 0.07 ind:pas:3s; +refrénai refréner ver 0.01 1.82 0 0.14 ind:pas:1s; +refrénait refréner ver 0.01 1.82 0 0.07 ind:imp:3s; +refrénant refréner ver 0.01 1.82 0 0.27 par:pre; +refréner refréner ver 0.01 1.82 0.01 0.88 inf; +refrénerait refréner ver 0.01 1.82 0 0.07 cnd:pre:3s; +refréné refréner ver m s 0.01 1.82 0 0.14 par:pas; +refrénés refréner ver m p 0.01 1.82 0 0.07 par:pas; +refuge refuge nom m s 8.38 18.65 8.02 16.89 +refuges refuge nom m p 8.38 18.65 0.36 1.76 +refuites refuite nom f p 0 0.07 0 0.07 +refumer refumer ver 0.03 0.07 0.03 0.07 inf; +refus refus nom m 9.02 27.03 9.02 27.03 +refusa refuser ver 143.96 152.77 1.82 14.59 ind:pas:3s; +refusai refuser ver 143.96 152.77 0.13 3.24 ind:pas:1s; +refusaient refuser ver 143.96 152.77 0.85 4.53 ind:imp:3p; +refusais refuser ver 143.96 152.77 2.15 4.59 ind:imp:1s;ind:imp:2s; +refusait refuser ver 143.96 152.77 4.17 21.82 ind:imp:3s; +refusant refuser ver 143.96 152.77 1.9 6.89 par:pre; +refuse refuser ver 143.96 152.77 49.29 24.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +refusent refuser ver 143.96 152.77 7.76 4.26 ind:pre:3p; +refuser refuser ver 143.96 152.77 21.34 27.84 inf;; +refusera refuser ver 143.96 152.77 2.03 0.81 ind:fut:3s; +refuserai refuser ver 143.96 152.77 0.85 0.47 ind:fut:1s; +refuseraient refuser ver 143.96 152.77 0.09 0.41 cnd:pre:3p; +refuserais refuser ver 143.96 152.77 1.08 0.61 cnd:pre:1s;cnd:pre:2s; +refuserait refuser ver 143.96 152.77 1.43 2.03 cnd:pre:3s; +refuseras refuser ver 143.96 152.77 0.15 0.27 ind:fut:2s; +refuserez refuser ver 143.96 152.77 0.58 0.27 ind:fut:2p; +refuseriez refuser ver 143.96 152.77 0.17 0.2 cnd:pre:2p; +refuserions refuser ver 143.96 152.77 0.02 0.07 cnd:pre:1p; +refuseront refuser ver 143.96 152.77 0.58 0.14 ind:fut:3p; +refuses refuser ver 143.96 152.77 8.6 1.28 ind:pre:2s; +refusez refuser ver 143.96 152.77 8.29 2.43 imp:pre:2p;ind:pre:2p; +refusiez refuser ver 143.96 152.77 0.59 0.2 ind:imp:2p; +refusions refuser ver 143.96 152.77 0.12 0.61 ind:imp:1p; +refusons refuser ver 143.96 152.77 1.29 1.01 imp:pre:1p;ind:pre:1p; +refusât refuser ver 143.96 152.77 0 0.88 sub:imp:3s; +refusèrent refuser ver 143.96 152.77 0.05 1.76 ind:pas:3p; +refusé refuser ver m s 143.96 152.77 26.03 22.7 par:pas; +refusée refuser ver f s 143.96 152.77 2.12 3.31 par:pas; +refusées refuser ver f p 143.96 152.77 0.23 0.54 par:pas; +refusés refuser ver m p 143.96 152.77 0.27 0.74 par:pas; +refîmes refaire ver 58.27 40.81 0 0.07 ind:pas:1p; +refît refaire ver 58.27 40.81 0 0.14 sub:imp:3s; +reg reg nom m s 1.52 0.14 1.52 0.14 +regagna regagner ver 9.54 49.8 0.02 9.05 ind:pas:3s; +regagnai regagner ver 9.54 49.8 0.01 1.96 ind:pas:1s; +regagnaient regagner ver 9.54 49.8 0.02 1.01 ind:imp:3p; +regagnais regagner ver 9.54 49.8 0.03 0.74 ind:imp:1s; +regagnait regagner ver 9.54 49.8 0.13 4.05 ind:imp:3s; +regagnant regagner ver 9.54 49.8 0.06 2.7 par:pre; +regagne regagner ver 9.54 49.8 1.3 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regagnent regagner ver 9.54 49.8 0.22 0.68 ind:pre:3p; +regagner regagner ver 9.54 49.8 3.9 16.49 inf; +regagnera regagner ver 9.54 49.8 0.24 0.07 ind:fut:3s; +regagnerai regagner ver 9.54 49.8 0.15 0 ind:fut:1s; +regagneraient regagner ver 9.54 49.8 0 0.07 cnd:pre:3p; +regagnerais regagner ver 9.54 49.8 0.1 0.07 cnd:pre:1s; +regagnerait regagner ver 9.54 49.8 0 0.34 cnd:pre:3s; +regagneras regagner ver 9.54 49.8 0.06 0 ind:fut:2s; +regagnerez regagner ver 9.54 49.8 0.04 0.07 ind:fut:2p; +regagnerons regagner ver 9.54 49.8 0.02 0.27 ind:fut:1p; +regagneront regagner ver 9.54 49.8 0 0.07 ind:fut:3p; +regagnez regagner ver 9.54 49.8 1.84 0.07 imp:pre:2p;ind:pre:2p; +regagniez regagner ver 9.54 49.8 0.02 0.07 ind:imp:2p; +regagnions regagner ver 9.54 49.8 0.01 0.41 ind:imp:1p; +regagnons regagner ver 9.54 49.8 0.5 0.95 imp:pre:1p;ind:pre:1p; +regagnâmes regagner ver 9.54 49.8 0.14 0.47 ind:pas:1p; +regagnât regagner ver 9.54 49.8 0 0.07 sub:imp:3s; +regagnèrent regagner ver 9.54 49.8 0.01 1.55 ind:pas:3p; +regagné regagner ver m s 9.54 49.8 0.71 5.07 par:pas; +regagnée regagner ver f s 9.54 49.8 0.01 0.2 par:pas; +regagnés regagner ver m p 9.54 49.8 0 0.07 par:pas; +regain regain nom m s 0.14 3.24 0.14 3.18 +regains regain nom m p 0.14 3.24 0 0.07 +regard regard nom m s 61.35 423.18 52.39 354.93 +regarda regarder ver 1197.29 997.91 2.18 149.05 ind:pas:3s; +regardable regardable adj s 0.1 0.74 0.09 0.47 +regardables regardable adj p 0.1 0.74 0.01 0.27 +regardai regarder ver 1197.29 997.91 0.82 14.73 ind:pas:1s; +regardaient regarder ver 1197.29 997.91 3.49 33.51 ind:imp:3p; +regardais regarder ver 1197.29 997.91 16.18 36.01 ind:imp:1s;ind:imp:2s; +regardait regarder ver 1197.29 997.91 16.3 160.81 ind:imp:3s; +regardant regarder ver 1197.29 997.91 13.99 73.78 par:pre; +regardante regardant adj f s 0.65 6.15 0.04 0.41 +regardants regardant adj m p 0.65 6.15 0.04 0.27 +regarde regarder ver 1197.29 997.91 613.45 203.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +regardent regarder ver 1197.29 997.91 14.68 22.3 ind:pre:3p; +regarder regarder ver 1197.29 997.91 138.3 163.51 inf;;inf;;inf;;inf;; +regardera regarder ver 1197.29 997.91 3.55 1.49 ind:fut:3s; +regarderai regarder ver 1197.29 997.91 3.3 1.08 ind:fut:1s; +regarderaient regarder ver 1197.29 997.91 0.09 0.68 cnd:pre:3p; +regarderais regarder ver 1197.29 997.91 0.82 0.68 cnd:pre:1s;cnd:pre:2s; +regarderait regarder ver 1197.29 997.91 0.95 1.76 cnd:pre:3s; +regarderas regarder ver 1197.29 997.91 1.3 0.47 ind:fut:2s; +regarderez regarder ver 1197.29 997.91 0.53 0.34 ind:fut:2p; +regarderiez regarder ver 1197.29 997.91 0.26 0.07 cnd:pre:2p; +regarderions regarder ver 1197.29 997.91 0.01 0.2 cnd:pre:1p; +regarderons regarder ver 1197.29 997.91 0.14 0.61 ind:fut:1p; +regarderont regarder ver 1197.29 997.91 0.87 0.88 ind:fut:3p; +regardes regarder ver 1197.29 997.91 43.64 5.34 ind:pre:2s;sub:pre:2s; +regardeur regardeur nom m s 0.01 0.07 0.01 0.07 +regardez regarder ver 1197.29 997.91 261.81 30.95 imp:pre:2p;ind:pre:2p; +regardiez regarder ver 1197.29 997.91 2.53 0.54 ind:imp:2p; +regardions regarder ver 1197.29 997.91 0.56 4.39 ind:imp:1p; +regardons regarder ver 1197.29 997.91 6.65 4.86 imp:pre:1p;ind:pre:1p; +regards regard nom m p 61.35 423.18 8.96 68.24 +regardâmes regarder ver 1197.29 997.91 0 1.28 ind:pas:1p; +regardât regarder ver 1197.29 997.91 0 0.34 sub:imp:3s; +regardèrent regarder ver 1197.29 997.91 0.32 15.68 ind:pas:3p; +regardé regarder ver m s 1197.29 997.91 41.29 51.55 par:pas; +regardée regarder ver f s 1197.29 997.91 7.61 11.01 ind:imp:3s;par:pas; +regardées regarder ver f p 1197.29 997.91 0.2 1.15 par:pas; +regardés regarder ver m p 1197.29 997.91 1.47 5.2 par:pas; +regarni regarnir ver m s 0.16 0.81 0.01 0 par:pas; +regarnies regarnir ver f p 0.16 0.81 0 0.07 par:pas; +regarnir regarnir ver 0.16 0.81 0.14 0.41 inf; +regarnirez regarnir ver 0.16 0.81 0 0.14 ind:fut:2p; +regarnis regarnir ver 0.16 0.81 0 0.14 ind:pre:1s; +regarnissez regarnir ver 0.16 0.81 0 0.07 imp:pre:2p; +regelés regeler ver m p 0 0.07 0 0.07 par:pas; +regency regency nom m 0.09 0.41 0.09 0.41 +reggae reggae nom m s 1.79 0.2 1.79 0.14 +reggaes reggae nom m p 1.79 0.2 0 0.07 +regimba regimber ver 0.23 0.88 0.01 0.14 ind:pas:3s; +regimbais regimber ver 0.23 0.88 0 0.14 ind:imp:1s; +regimbait regimber ver 0.23 0.88 0 0.14 ind:imp:3s; +regimbe regimber ver 0.23 0.88 0.11 0.27 imp:pre:2s;ind:pre:3s; +regimbements regimbement nom m p 0 0.07 0 0.07 +regimber regimber ver 0.23 0.88 0.11 0.14 inf; +regimbé regimber ver m s 0.23 0.88 0 0.07 par:pas; +registre registre nom m s 8.62 12.84 6.39 8.11 +registres registre nom m p 8.62 12.84 2.23 4.73 +reglissé reglisser ver m s 0.14 0.2 0.14 0.2 par:pas; +regonflage regonflage nom m s 0.01 0 0.01 0 +regonflait regonfler ver 0.39 1.42 0 0.2 ind:imp:3s; +regonfle regonfler ver 0.39 1.42 0.06 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regonfler regonfler ver 0.39 1.42 0.29 0.41 inf; +regonflera regonfler ver 0.39 1.42 0.01 0 ind:fut:3s; +regonflerais regonfler ver 0.39 1.42 0.01 0 cnd:pre:1s; +regonflerait regonfler ver 0.39 1.42 0 0.07 cnd:pre:3s; +regonflé regonfler ver m s 0.39 1.42 0.01 0.47 par:pas; +regonflés regonfler ver m p 0.39 1.42 0.01 0.07 par:pas; +regorge regorger ver 1.75 3.92 1.34 0.68 ind:pre:3s; +regorgea regorger ver 1.75 3.92 0.01 0 ind:pas:3s; +regorgeaient regorger ver 1.75 3.92 0 0.81 ind:imp:3p; +regorgeais regorger ver 1.75 3.92 0 0.07 ind:imp:1s; +regorgeait regorger ver 1.75 3.92 0.11 1.35 ind:imp:3s; +regorgeant regorger ver 1.75 3.92 0.02 0.47 par:pre; +regorgent regorger ver 1.75 3.92 0.23 0.47 ind:pre:3p; +regorger regorger ver 1.75 3.92 0.03 0.07 inf; +regorges regorger ver 1.75 3.92 0.01 0 ind:pre:2s; +regoûter regoûter ver 0.03 0.14 0.03 0.07 inf; +regoûté regoûter ver m s 0.03 0.14 0 0.07 par:pas; +regrattières regrattier nom f p 0 0.07 0 0.07 +regreffe regreffer ver 0 0.07 0 0.07 ind:pre:3s; +regret regret nom m s 13.77 40 7.25 29.32 +regrets regret nom m p 13.77 40 6.53 10.68 +regretta regretter ver 89.11 75.88 0.15 4.53 ind:pas:3s; +regrettable regrettable adj s 3.41 3.51 3.27 3.04 +regrettablement regrettablement adv 0.02 0.07 0.02 0.07 +regrettables regrettable adj p 3.41 3.51 0.14 0.47 +regrettai regretter ver 89.11 75.88 0 1.22 ind:pas:1s; +regrettaient regretter ver 89.11 75.88 0.01 0.81 ind:imp:3p; +regrettais regretter ver 89.11 75.88 0.38 4.86 ind:imp:1s;ind:imp:2s; +regrettait regretter ver 89.11 75.88 0.32 9.12 ind:imp:3s; +regrettant regretter ver 89.11 75.88 0.21 3.11 par:pre; +regrette regretter ver 89.11 75.88 51.99 21.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +regrettent regretter ver 89.11 75.88 0.88 0.88 ind:pre:3p; +regretter regretter ver 89.11 75.88 12.05 12.57 inf; +regrettera regretter ver 89.11 75.88 1.5 0.74 ind:fut:3s; +regretterai regretter ver 89.11 75.88 0.78 1.49 ind:fut:1s; +regretteraient regretter ver 89.11 75.88 0.03 0.34 cnd:pre:3p; +regretterais regretter ver 89.11 75.88 0.65 0.68 cnd:pre:1s;cnd:pre:2s; +regretterait regretter ver 89.11 75.88 0.13 0.68 cnd:pre:3s; +regretteras regretter ver 89.11 75.88 5.58 1.49 ind:fut:2s; +regretterez regretter ver 89.11 75.88 4.47 0.74 ind:fut:2p; +regretteriez regretter ver 89.11 75.88 0.13 0.07 cnd:pre:2p; +regretterons regretter ver 89.11 75.88 0.1 0.07 ind:fut:1p; +regretteront regretter ver 89.11 75.88 0.46 0.14 ind:fut:3p; +regrettes regretter ver 89.11 75.88 4.46 1.28 ind:pre:2s; +regrettez regretter ver 89.11 75.88 1.31 1.28 imp:pre:2p;ind:pre:2p; +regrettiez regretter ver 89.11 75.88 0.14 0.27 ind:imp:2p; +regrettions regretter ver 89.11 75.88 0.02 0.2 ind:imp:1p; +regrettons regretter ver 89.11 75.88 0.76 0.2 imp:pre:1p;ind:pre:1p; +regrettât regretter ver 89.11 75.88 0 0.27 sub:imp:3s; +regrettèrent regretter ver 89.11 75.88 0 0.27 ind:pas:3p; +regretté regretter ver m s 89.11 75.88 2.43 6.22 par:pas; +regrettée regretter ver f s 89.11 75.88 0.15 0.54 par:pas; +regrettées regretter ver f p 89.11 75.88 0.02 0.07 par:pas; +regrettés regretter ver m p 89.11 75.88 0.01 0.2 par:pas; +regrimpa regrimper ver 0.17 1.15 0 0.07 ind:pas:3s; +regrimpaient regrimper ver 0.17 1.15 0 0.07 ind:imp:3p; +regrimpait regrimper ver 0.17 1.15 0 0.07 ind:imp:3s; +regrimpe regrimper ver 0.17 1.15 0.01 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regrimpent regrimper ver 0.17 1.15 0 0.07 ind:pre:3p; +regrimper regrimper ver 0.17 1.15 0.12 0.27 inf; +regrimperas regrimper ver 0.17 1.15 0.01 0 ind:fut:2s; +regrimperons regrimper ver 0.17 1.15 0.01 0 ind:fut:1p; +regrimpez regrimper ver 0.17 1.15 0.01 0 imp:pre:2p; +regrimpé regrimper ver m s 0.17 1.15 0.01 0.34 par:pas; +regrossir regrossir ver 0.01 0 0.01 0 inf; +regroupa regrouper ver 3.09 6.42 0 0.07 ind:pas:3s; +regroupaient regrouper ver 3.09 6.42 0.03 0.54 ind:imp:3p; +regroupait regrouper ver 3.09 6.42 0.26 0.41 ind:imp:3s; +regroupant regrouper ver 3.09 6.42 0.06 0.74 par:pre; +regroupe regrouper ver 3.09 6.42 0.76 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regroupement regroupement nom m s 0.65 1.76 0.52 1.55 +regroupements regroupement nom m p 0.65 1.76 0.14 0.2 +regroupent regrouper ver 3.09 6.42 0.37 0.34 ind:pre:3p; +regrouper regrouper ver 3.09 6.42 0.59 1.69 inf; +regrouperaient regrouper ver 3.09 6.42 0.02 0.07 cnd:pre:3p; +regrouperions regrouper ver 3.09 6.42 0.01 0 cnd:pre:1p; +regroupez regrouper ver 3.09 6.42 0.4 0 imp:pre:2p;ind:pre:2p; +regroupèrent regrouper ver 3.09 6.42 0.02 0.2 ind:pas:3p; +regroupé regrouper ver m s 3.09 6.42 0.12 0.34 par:pas; +regroupée regrouper ver f s 3.09 6.42 0.02 0.2 par:pas; +regroupées regrouper ver f p 3.09 6.42 0.02 0.2 par:pas; +regroupés regrouper ver m p 3.09 6.42 0.41 1.01 par:pas; +regréaient regréer ver 0 0.34 0 0.07 ind:imp:3p; +regréer regréer ver 0 0.34 0 0.07 inf; +regréé regréer ver m s 0 0.34 0 0.2 par:pas; +rehaussaient rehausser ver 0.77 5.81 0 0.2 ind:imp:3p; +rehaussait rehausser ver 0.77 5.81 0.01 1.01 ind:imp:3s; +rehaussant rehausser ver 0.77 5.81 0 0.47 par:pre; +rehausse rehausser ver 0.77 5.81 0.2 0.41 ind:pre:3s; +rehaussement rehaussement nom m s 0.01 0 0.01 0 +rehaussent rehausser ver 0.77 5.81 0 0.34 ind:pre:3p; +rehausser rehausser ver 0.77 5.81 0.34 0.88 inf; +rehaussera rehausser ver 0.77 5.81 0.01 0.14 ind:fut:3s; +rehausses rehausse nom f p 0 0.14 0 0.07 +rehausseur rehausseur nom m s 0.11 0 0.11 0 +rehaussez rehausser ver 0.77 5.81 0.01 0 imp:pre:2p; +rehaussé rehausser ver m s 0.77 5.81 0.03 1.15 par:pas; +rehaussée rehausser ver f s 0.77 5.81 0.03 0.68 par:pas; +rehaussées rehausser ver f p 0.77 5.81 0.14 0.2 par:pas; +rehaussés rehausser ver m p 0.77 5.81 0 0.34 par:pas; +rehaut rehaut nom m s 0 0.2 0 0.07 +rehauts rehaut nom m p 0 0.2 0 0.14 +reich reich nom m s 0.03 4.26 0.03 4.26 +reichsmark reichsmark nom m 0.01 0 0.01 0 +reichstag reichstag nom m s 0.85 0.68 0.85 0.68 +reichswehr reichswehr nom f s 0 0.14 0 0.14 +rein rein nom m s 13.96 34.05 4.53 1.76 +reine reine nom f s 59.05 33.78 56.26 30 +reine_claude reine_claude nom f s 0.01 0.41 0 0.14 +reine_mère reine_mère nom f s 0 0.34 0 0.34 +reines reine nom f p 59.05 33.78 2.79 3.78 +reine_claude reine_claude nom f p 0.01 0.41 0.01 0.27 +reine_marguerite reine_marguerite nom f p 0 0.27 0 0.27 +reinette reinette nom f s 0.3 0.95 0.01 0.34 +reinettes reinette nom f p 0.3 0.95 0.29 0.61 +reins rein nom m p 13.96 34.05 9.43 32.3 +reis reis nom m 0.52 0.2 0.52 0.2 +rejailli rejaillir ver m s 1.05 2.64 0.14 0.27 par:pas; +rejaillir rejaillir ver 1.05 2.64 0.24 0.54 inf; +rejailliraient rejaillir ver 1.05 2.64 0 0.07 cnd:pre:3p; +rejaillirait rejaillir ver 1.05 2.64 0.11 0.2 cnd:pre:3s; +rejaillissaient rejaillir ver 1.05 2.64 0 0.07 ind:imp:3p; +rejaillissait rejaillir ver 1.05 2.64 0 0.61 ind:imp:3s; +rejaillissant rejaillir ver 1.05 2.64 0 0.14 par:pre; +rejaillissements rejaillissement nom m p 0 0.07 0 0.07 +rejaillissent rejaillir ver 1.05 2.64 0.02 0.07 ind:pre:3p; +rejaillit rejaillir ver 1.05 2.64 0.54 0.68 ind:pre:3s;ind:pas:3s; +rejet rejet nom m s 2.94 3.31 2.71 3.04 +rejeta rejeter ver 23.16 47.84 0.18 5.74 ind:pas:3s; +rejetable rejetable adj s 0 0.07 0 0.07 +rejetai rejeter ver 23.16 47.84 0 0.68 ind:pas:1s; +rejetaient rejeter ver 23.16 47.84 0.17 0.95 ind:imp:3p; +rejetais rejeter ver 23.16 47.84 0.22 0.74 ind:imp:1s;ind:imp:2s; +rejetait rejeter ver 23.16 47.84 0 5.74 ind:imp:3s; +rejetant rejeter ver 23.16 47.84 0.44 4.12 par:pre; +rejeter rejeter ver 23.16 47.84 3.94 6.82 inf; +rejetez rejeter ver 23.16 47.84 1.24 0.07 imp:pre:2p;ind:pre:2p; +rejetiez rejeter ver 23.16 47.84 0.11 0.07 ind:imp:2p; +rejetions rejeter ver 23.16 47.84 0.01 0.2 ind:imp:1p; +rejeton rejeton nom m s 1.25 3.92 0.61 2.3 +rejetons rejeton nom m p 1.25 3.92 0.64 1.62 +rejets rejet nom m p 2.94 3.31 0.23 0.27 +rejette rejeter ver 23.16 47.84 4.43 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rejettent rejeter ver 23.16 47.84 0.93 1.22 ind:pre:3p; +rejettera rejeter ver 23.16 47.84 0.57 0.27 ind:fut:3s; +rejetterai rejeter ver 23.16 47.84 0.29 0.07 ind:fut:1s; +rejetteraient rejeter ver 23.16 47.84 0.02 0 cnd:pre:3p; +rejetterais rejeter ver 23.16 47.84 0.17 0 cnd:pre:1s;cnd:pre:2s; +rejetterait rejeter ver 23.16 47.84 0.06 0.2 cnd:pre:3s; +rejetteras rejeter ver 23.16 47.84 0 0.07 ind:fut:2s; +rejetteront rejeter ver 23.16 47.84 0.17 0.14 ind:fut:3p; +rejettes rejeter ver 23.16 47.84 0.77 0 ind:pre:2s;sub:pre:2s; +rejetât rejeter ver 23.16 47.84 0 0.07 sub:imp:3s; +rejetèrent rejeter ver 23.16 47.84 0 0.07 ind:pas:3p; +rejeté rejeter ver m s 23.16 47.84 5.65 7.84 par:pas; +rejetée rejeté adj f s 4.03 1.62 2.18 0.47 +rejetées rejeter ver f p 23.16 47.84 0.37 1.28 par:pas; +rejetés rejeter ver m p 23.16 47.84 0.98 2.16 par:pas; +rejoignaient rejoindre ver 96.98 134.8 0.15 4.8 ind:imp:3p; +rejoignais rejoindre ver 96.98 134.8 0.35 0.34 ind:imp:1s;ind:imp:2s; +rejoignait rejoindre ver 96.98 134.8 0.16 6.35 ind:imp:3s; +rejoignant rejoindre ver 96.98 134.8 0.31 2.91 par:pre; +rejoigne rejoindre ver 96.98 134.8 1.96 1.15 sub:pre:1s;sub:pre:3s; +rejoignent rejoindre ver 96.98 134.8 1.69 5.07 ind:pre:3p; +rejoignes rejoindre ver 96.98 134.8 0.47 0 sub:pre:2s; +rejoignez rejoindre ver 96.98 134.8 6 0.61 imp:pre:2p;ind:pre:2p; +rejoigniez rejoindre ver 96.98 134.8 0.15 0.07 ind:imp:2p;sub:pre:2p; +rejoignions rejoindre ver 96.98 134.8 0.13 0.2 ind:imp:1p; +rejoignirent rejoindre ver 96.98 134.8 0.15 2.84 ind:pas:3p; +rejoignis rejoindre ver 96.98 134.8 0.01 1.69 ind:pas:1s; +rejoignisse rejoindre ver 96.98 134.8 0 0.07 sub:imp:1s; +rejoignissent rejoindre ver 96.98 134.8 0 0.07 sub:imp:3p; +rejoignit rejoindre ver 96.98 134.8 0.37 13.58 ind:pas:3s; +rejoignons rejoindre ver 96.98 134.8 1.52 0.54 imp:pre:1p;ind:pre:1p; +rejoignîmes rejoindre ver 96.98 134.8 0.01 0.41 ind:pas:1p; +rejoignît rejoindre ver 96.98 134.8 0 0.27 sub:imp:3s; +rejoindra rejoindre ver 96.98 134.8 2.42 0.81 ind:fut:3s; +rejoindrai rejoindre ver 96.98 134.8 3.25 0.54 ind:fut:1s; +rejoindraient rejoindre ver 96.98 134.8 0.04 0.47 cnd:pre:3p; +rejoindrais rejoindre ver 96.98 134.8 0.5 0.47 cnd:pre:1s;cnd:pre:2s; +rejoindrait rejoindre ver 96.98 134.8 0.14 1.15 cnd:pre:3s; +rejoindras rejoindre ver 96.98 134.8 0.55 0.07 ind:fut:2s; +rejoindre rejoindre ver 96.98 134.8 41.59 59.66 inf;; +rejoindrez rejoindre ver 96.98 134.8 0.93 0.14 ind:fut:2p; +rejoindrions rejoindre ver 96.98 134.8 0 0.2 cnd:pre:1p; +rejoindrons rejoindre ver 96.98 134.8 0.76 0.34 ind:fut:1p; +rejoindront rejoindre ver 96.98 134.8 0.58 0.41 ind:fut:3p; +rejoins rejoindre ver 96.98 134.8 20.16 3.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rejoint rejoindre ver m s 96.98 134.8 11.16 20.27 ind:pre:3s;par:pas; +rejointe rejoindre ver f s 96.98 134.8 0.31 1.35 par:pas; +rejointes rejoindre ver f p 96.98 134.8 0.01 0.54 par:pas; +rejointoyer rejointoyer ver 0 0.27 0 0.07 inf; +rejointoyé rejointoyer ver m s 0 0.27 0 0.07 par:pas; +rejointoyés rejointoyer ver m p 0 0.27 0 0.14 par:pas; +rejoints rejoindre ver m p 96.98 134.8 1.19 3.78 par:pas; +rejoua rejouer ver 3.51 1.69 0 0.2 ind:pas:3s; +rejouaient rejouer ver 3.51 1.69 0.02 0 ind:imp:3p; +rejouais rejouer ver 3.51 1.69 0.02 0.07 ind:imp:1s; +rejouant rejouer ver 3.51 1.69 0.02 0.14 par:pre; +rejoue rejouer ver 3.51 1.69 1.18 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rejouent rejouer ver 3.51 1.69 0.21 0.07 ind:pre:3p; +rejouer rejouer ver 3.51 1.69 1.48 0.88 inf; +rejouerait rejouer ver 3.51 1.69 0.02 0.07 cnd:pre:3s; +rejoueras rejouer ver 3.51 1.69 0.03 0 ind:fut:2s; +rejouerez rejouer ver 3.51 1.69 0.16 0.07 ind:fut:2p; +rejouerons rejouer ver 3.51 1.69 0 0.07 ind:fut:1p; +rejoues rejouer ver 3.51 1.69 0.04 0 ind:pre:2s; +rejouez rejouer ver 3.51 1.69 0.1 0 imp:pre:2p;ind:pre:2p; +rejouons rejouer ver 3.51 1.69 0.03 0 imp:pre:1p; +rejoué rejouer ver m s 3.51 1.69 0.19 0.14 par:pas; +rejuger rejuger ver 0.34 0.14 0.07 0.07 inf; +rejugez rejuger ver 0.34 0.14 0.02 0 imp:pre:2p; +rejugé rejuger ver m s 0.34 0.14 0.22 0.07 par:pas; +rejugés rejuger ver m p 0.34 0.14 0.02 0 par:pas; +relacent relacer ver 0.01 0.41 0 0.07 ind:pre:3p; +relacer relacer ver 0.01 0.41 0 0.07 inf; +relaie relayer ver 2.63 5.81 0.27 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaient relayer ver 2.63 5.81 0.52 0.27 ind:pre:3p; +relaiera relayer ver 2.63 5.81 0.07 0.14 ind:fut:3s; +relaieraient relayer ver 2.63 5.81 0 0.07 cnd:pre:3p; +relaierait relayer ver 2.63 5.81 0 0.07 cnd:pre:3s; +relaieront relayer ver 2.63 5.81 0.17 0 ind:fut:3p; +relais relais nom m 7.09 8.51 7.09 8.51 +relaisser relaisser ver 0 0.07 0 0.07 inf; +relance relancer ver 4.95 7.43 1.87 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relancement relancement nom m s 0.03 0 0.03 0 +relancent relancer ver 4.95 7.43 0.01 0.07 ind:pre:3p; +relancer relancer ver 4.95 7.43 1.96 2.77 inf; +relancera relancer ver 4.95 7.43 0.02 0 ind:fut:3s; +relancerait relancer ver 4.95 7.43 0.04 0 cnd:pre:3s; +relanceront relancer ver 4.95 7.43 0.01 0 ind:fut:3p; +relances relancer ver 4.95 7.43 0.05 0 ind:pre:2s; +relanceur relanceur nom m s 0.01 0 0.01 0 +relancez relancer ver 4.95 7.43 0.27 0 imp:pre:2p;ind:pre:2p; +relancèrent relancer ver 4.95 7.43 0 0.07 ind:pas:3p; +relancé relancer ver m s 4.95 7.43 0.48 1.22 par:pas; +relancée relancer ver f s 4.95 7.43 0.16 0.2 par:pas; +relancées relancer ver f p 4.95 7.43 0.01 0.07 par:pas; +relancés relancer ver m p 4.95 7.43 0.01 0.07 par:pas; +relança relancer ver 4.95 7.43 0.01 0.41 ind:pas:3s; +relançai relancer ver 4.95 7.43 0 0.07 ind:pas:1s; +relançaient relancer ver 4.95 7.43 0 0.41 ind:imp:3p; +relançais relancer ver 4.95 7.43 0 0.07 ind:imp:1s; +relançait relancer ver 4.95 7.43 0.01 0.81 ind:imp:3s; +relançant relancer ver 4.95 7.43 0 0.41 par:pre; +relançons relancer ver 4.95 7.43 0.05 0 imp:pre:1p; +relançât relancer ver 4.95 7.43 0 0.14 sub:imp:3s; +relaps relaps nom m 0.01 0.34 0 0.34 +relapse relaps adj f s 0 0.34 0 0.07 +relapses relaps nom f p 0.01 0.34 0.01 0 +relargué relargué adj m s 0 0.14 0 0.14 +relata relater ver 1.18 5.61 0.03 0.47 ind:pas:3s; +relatai relater ver 1.18 5.61 0 0.07 ind:pas:1s; +relataient relater ver 1.18 5.61 0.01 0.27 ind:imp:3p; +relatais relater ver 1.18 5.61 0 0.2 ind:imp:1s; +relatait relater ver 1.18 5.61 0.02 0.81 ind:imp:3s; +relatant relater ver 1.18 5.61 0.05 0.95 par:pre; +relate relater ver 1.18 5.61 0.19 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relatent relater ver 1.18 5.61 0.06 0.14 ind:pre:3p; +relater relater ver 1.18 5.61 0.39 0.54 inf; +relateraient relater ver 1.18 5.61 0 0.07 cnd:pre:3p; +relateront relater ver 1.18 5.61 0.01 0 ind:fut:3p; +relatif relatif adj m s 3.12 14.05 1.05 3.78 +relatifs relatif adj m p 3.12 14.05 0.56 1.22 +relation relation nom f s 74.95 52.36 44.03 10.2 +relationnel relationnel adj m s 0.38 0 0.14 0 +relationnelle relationnel adj f s 0.38 0 0.01 0 +relationnelles relationnel adj f p 0.38 0 0.09 0 +relationnels relationnel adj m p 0.38 0 0.14 0 +relations relation nom f p 74.95 52.36 30.92 42.16 +relative relatif adj f s 3.12 14.05 0.93 7.09 +relativement relativement adv 4.48 8.65 4.48 8.65 +relatives relatif adj f p 3.12 14.05 0.57 1.96 +relativisant relativiser ver 0.39 0.2 0 0.07 par:pre; +relativisation relativisation nom f s 0 0.14 0 0.14 +relativise relativiser ver 0.39 0.2 0.14 0 imp:pre:2s;ind:pre:3s; +relativisent relativiser ver 0.39 0.2 0 0.07 ind:pre:3p; +relativiser relativiser ver 0.39 0.2 0.23 0.07 inf; +relativisme relativisme nom m s 0.05 0 0.05 0 +relativiste relativiste adj f s 0.02 0 0.02 0 +relativisé relativiser ver m s 0.39 0.2 0.02 0 par:pas; +relativité relativité nom f s 0.5 1.22 0.5 1.22 +relaté relater ver m s 1.18 5.61 0.13 0.68 par:pas; +relatée relater ver f s 1.18 5.61 0.02 0.07 par:pas; +relatées relater ver f p 1.18 5.61 0.01 0.14 par:pas; +relatés relater ver m p 1.18 5.61 0.25 0.14 par:pas; +relavait relaver ver 0.13 0.47 0 0.07 ind:imp:3s; +relave relaver ver 0.13 0.47 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaver relaver ver 0.13 0.47 0.06 0.27 inf; +relavés relaver ver m p 0.13 0.47 0 0.07 par:pas; +relax relax adj 8.16 0.88 8.16 0.88 +relaxais relaxer ver 5.48 0.74 0 0.07 ind:imp:1s; +relaxant relaxant adj m s 0.72 0.07 0.61 0 +relaxante relaxant adj f s 0.72 0.07 0.08 0 +relaxantes relaxant adj f p 0.72 0.07 0.01 0.07 +relaxants relaxant adj m p 0.72 0.07 0.03 0 +relaxation relaxation nom f s 0.63 0.68 0.63 0.68 +relaxe relaxer ver 5.48 0.74 1.47 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaxer relaxer ver 5.48 0.74 2.65 0.2 inf;;inf;;inf;; +relaxes relaxe nom f p 1.63 0.61 0.21 0.07 +relaxez relaxer ver 5.48 0.74 0.77 0.14 imp:pre:2p;ind:pre:2p; +relaxons relaxer ver 5.48 0.74 0.03 0 imp:pre:1p;ind:pre:1p; +relaxé relaxer ver m s 5.48 0.74 0.27 0.27 par:pas; +relaxée relaxer ver f s 5.48 0.74 0.07 0.07 par:pas; +relaya relayer ver 2.63 5.81 0 0.14 ind:pas:3s; +relayaient relayer ver 2.63 5.81 0.25 1.22 ind:imp:3p; +relayait relayer ver 2.63 5.81 0.01 0.47 ind:imp:3s; +relayant relayer ver 2.63 5.81 0.01 0.54 par:pre; +relaye relayer ver 2.63 5.81 0.01 0.07 ind:pre:1s;ind:pre:3s; +relayent relayer ver 2.63 5.81 0 0.14 ind:pre:3p; +relayer relayer ver 2.63 5.81 0.93 1.01 inf; +relayera relayer ver 2.63 5.81 0.01 0.07 ind:fut:3s; +relayerai relayer ver 2.63 5.81 0.1 0 ind:fut:1s; +relayeur relayeur nom m s 0.02 0 0.02 0 +relayez relayer ver 2.63 5.81 0.05 0 imp:pre:2p; +relayions relayer ver 2.63 5.81 0 0.07 ind:imp:1p; +relayons relayer ver 2.63 5.81 0.02 0.07 imp:pre:1p;ind:pre:1p; +relayâmes relayer ver 2.63 5.81 0 0.14 ind:pas:1p; +relayèrent relayer ver 2.63 5.81 0 0.2 ind:pas:3p; +relayé relayer ver m s 2.63 5.81 0.14 0.61 par:pas; +relayée relayer ver f s 2.63 5.81 0.02 0.14 par:pas; +relayées relayer ver f p 2.63 5.81 0.01 0.07 par:pas; +relayés relayer ver m p 2.63 5.81 0.03 0.2 par:pas; +relaça relacer ver 0.01 0.41 0 0.07 ind:pas:3s; +relaçaient relacer ver 0.01 0.41 0 0.07 ind:imp:3p; +relaçait relacer ver 0.01 0.41 0.01 0.14 ind:imp:3s; +relecture relecture nom f s 0.8 0.47 0.8 0.47 +relent relent nom m s 0.32 9.12 0.1 2.64 +relents relent nom m p 0.32 9.12 0.23 6.49 +releva relever ver 39.49 124.93 0.05 25.74 ind:pas:3s; +relevable relevable adj m s 0 0.07 0 0.07 +relevai relever ver 39.49 124.93 0.14 1.82 ind:pas:1s; +relevaient relever ver 39.49 124.93 0.06 3.51 ind:imp:3p; +relevailles relevailles nom f p 0 0.07 0 0.07 +relevais relever ver 39.49 124.93 0.06 0.95 ind:imp:1s;ind:imp:2s; +relevait relever ver 39.49 124.93 0.53 9.8 ind:imp:3s; +relevant relever ver 39.49 124.93 0.53 10.68 par:pre; +relever relever ver 39.49 124.93 10.46 24.39 inf; +releveur releveur adj m s 0.03 0.07 0.03 0 +releveurs releveur nom m p 0.02 0 0.01 0 +relevez relever ver 39.49 124.93 5.95 0.34 imp:pre:2p;ind:pre:2p; +releviez relever ver 39.49 124.93 0.14 0.07 ind:imp:2p; +relevions relever ver 39.49 124.93 0 0.27 ind:imp:1p; +relevons relever ver 39.49 124.93 0.33 0.27 imp:pre:1p;ind:pre:1p; +relevâmes relever ver 39.49 124.93 0 0.07 ind:pas:1p; +relevât relever ver 39.49 124.93 0 0.54 sub:imp:3s; +relevèrent relever ver 39.49 124.93 0.01 1.28 ind:pas:3p; +relevé relever ver m s 39.49 124.93 6.04 13.72 par:pas; +relevée relevé adj f s 2.3 10.14 0.64 2.03 +relevées relever ver f p 39.49 124.93 0.3 1.35 par:pas; +relevés relevé nom m p 5 2.36 3.12 0.81 +reliage reliage nom m s 0.01 0 0.01 0 +reliaient relier ver 12.83 20.47 0.22 0.88 ind:imp:3p; +reliait relier ver 12.83 20.47 0.2 2.64 ind:imp:3s; +reliant relier ver 12.83 20.47 0.78 1.55 par:pre; +relie relier ver 12.83 20.47 1.95 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relief relief nom m s 1.25 19.32 1.11 13.51 +reliefs relief nom m p 1.25 19.32 0.14 5.81 +relient relier ver 12.83 20.47 0.3 1.01 ind:pre:3p; +relier relier ver 12.83 20.47 2.34 2.64 inf; +reliera relier ver 12.83 20.47 0.29 0.14 ind:fut:3s; +relieur relieur nom m s 0.33 0.41 0.33 0.27 +relieurs relieur nom m p 0.33 0.41 0 0.14 +reliez relier ver 12.83 20.47 0.11 0 imp:pre:2p; +religieuse religieux adj f s 15.52 24.26 4.85 11.42 +religieusement religieusement adv 0.8 3.04 0.8 3.04 +religieuses religieux adj f p 15.52 24.26 2.17 3.78 +religieux religieux adj m 15.52 24.26 8.51 9.05 +religion religion nom f s 24.68 35.07 22.86 30.88 +religionnaires religionnaire nom p 0 0.07 0 0.07 +religions religion nom f p 24.68 35.07 1.81 4.19 +religiosité religiosité nom f s 0.01 0.41 0.01 0.41 +reliquaire reliquaire nom s 0.28 0.95 0.28 0.68 +reliquaires reliquaire nom p 0.28 0.95 0 0.27 +reliquat reliquat nom m s 0.04 1.76 0.04 1.35 +reliquats reliquat nom m p 0.04 1.76 0 0.41 +relique relique nom f s 2.59 5.95 1.41 2.23 +reliques relique nom f p 2.59 5.95 1.19 3.72 +relirai relire ver 6.31 25.81 0.04 0.07 ind:fut:1s; +relirais relire ver 6.31 25.81 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +relirait relire ver 6.31 25.81 0 0.27 cnd:pre:3s; +reliras relire ver 6.31 25.81 0 0.07 ind:fut:2s; +relire relire ver 6.31 25.81 1.84 6.42 inf; +relirez relire ver 6.31 25.81 0.01 0.07 ind:fut:2p; +relirons relire ver 6.31 25.81 0.01 0.07 ind:fut:1p; +relis relire ver 6.31 25.81 1.78 2.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +relisaient relire ver 6.31 25.81 0 0.07 ind:imp:3p; +relisais relire ver 6.31 25.81 0.12 1.55 ind:imp:1s;ind:imp:2s; +relisait relire ver 6.31 25.81 0.01 2.03 ind:imp:3s; +relisant relire ver 6.31 25.81 0.07 1.69 par:pre; +relise relire ver 6.31 25.81 0.07 0.27 sub:pre:1s;sub:pre:3s; +relisez relire ver 6.31 25.81 0.7 0.54 imp:pre:2p;ind:pre:2p; +relisions relire ver 6.31 25.81 0 0.07 ind:imp:1p; +relit relire ver 6.31 25.81 0.22 1.49 ind:pre:3s; +reliure reliure nom f s 0.67 4.12 0.61 2.23 +reliures reliure nom f p 0.67 4.12 0.06 1.89 +reliât relier ver 12.83 20.47 0 0.14 sub:imp:3s; +relié relier ver m s 12.83 20.47 3.03 2.77 par:pas; +reliée relier ver f s 12.83 20.47 0.95 1.08 par:pas; +reliées relier ver f p 12.83 20.47 0.53 2.09 par:pas; +reliés relier ver m p 12.83 20.47 2.12 2.77 par:pas; +reloge reloger ver 0.52 0.34 0.14 0.14 ind:pre:3s; +relogement relogement nom m s 0.08 0.14 0.07 0.07 +relogements relogement nom m p 0.08 0.14 0.01 0.07 +reloger reloger ver 0.52 0.34 0.23 0.14 inf;; +relogerais reloger ver 0.52 0.34 0 0.07 cnd:pre:1s; +relogé reloger ver m s 0.52 0.34 0.15 0 par:pas; +relooker relooker ver 0.18 0 0.07 0 inf; +relookerai relooker ver 0.18 0 0.01 0 ind:fut:1s; +relooké relooker ver m s 0.18 0 0.06 0 par:pas; +relookée relooker ver f s 0.18 0 0.03 0 par:pas; +reloquer reloquer ver 0 0.07 0 0.07 inf; +relouer relouer ver 0.14 0.07 0.04 0 inf; +relouerons relouer ver 0.14 0.07 0 0.07 ind:fut:1p; +relourde relourder ver 0 0.2 0 0.07 ind:pre:3s; +relourder relourder ver 0 0.2 0 0.07 inf; +relourdé relourder ver m s 0 0.2 0 0.07 par:pas; +reloué relouer ver m s 0.14 0.07 0.1 0 par:pas; +relu relire ver m s 6.31 25.81 1.35 3.65 par:pas; +relue relire ver f s 6.31 25.81 0.02 0.2 par:pas; +relues relire ver f p 6.31 25.81 0.01 0.14 par:pas; +relui reluire ver m s 0.54 4.05 0.02 0.07 par:pas; +reluire reluire ver 0.54 4.05 0.34 2.77 inf; +reluiront reluire ver 0.54 4.05 0 0.07 ind:fut:3p; +reluis reluire ver 0.54 4.05 0 0.07 ind:pre:2s; +reluisaient reluire ver 0.54 4.05 0 0.14 ind:imp:3p; +reluisais reluire ver 0.54 4.05 0 0.07 ind:imp:1s; +reluisant reluisant adj m s 0.27 1.96 0.14 0.81 +reluisante reluisant adj f s 0.27 1.96 0.06 0.34 +reluisantes reluisant adj f p 0.27 1.96 0.01 0.34 +reluisants reluisant adj m p 0.27 1.96 0.06 0.47 +reluise reluire ver 0.54 4.05 0.16 0.07 sub:pre:3s; +reluisent reluire ver 0.54 4.05 0.01 0.2 ind:pre:3p; +reluit reluire ver 0.54 4.05 0 0.41 ind:pre:3s; +reluqua reluquer ver 2.16 5.47 0 0.07 ind:pas:3s; +reluquaient reluquer ver 2.16 5.47 0.05 0.47 ind:imp:3p; +reluquais reluquer ver 2.16 5.47 0.12 0.2 ind:imp:1s;ind:imp:2s; +reluquait reluquer ver 2.16 5.47 0.1 0.41 ind:imp:3s; +reluquant reluquer ver 2.16 5.47 0.01 0.68 par:pre; +reluque reluquer ver 2.16 5.47 0.36 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reluquent reluquer ver 2.16 5.47 0.13 0.07 ind:pre:3p; +reluquer reluquer ver 2.16 5.47 1.09 1.49 inf; +reluques reluquer ver 2.16 5.47 0.12 0.07 ind:pre:2s; +reluquiez reluquer ver 2.16 5.47 0.01 0 ind:imp:2p; +reluqué reluquer ver m s 2.16 5.47 0.04 0.14 par:pas; +reluquée reluquer ver f s 2.16 5.47 0.09 0.14 par:pas; +reluqués reluquer ver m p 2.16 5.47 0.04 0.07 par:pas; +relus relire ver m p 6.31 25.81 0.04 0.95 ind:pas:1s;par:pas; +relut relire ver 6.31 25.81 0.01 3.58 ind:pas:3s; +relâcha relâcher ver 21.4 13.45 0.13 1.69 ind:pas:3s; +relâchai relâcher ver 21.4 13.45 0 0.2 ind:pas:1s; +relâchaient relâcher ver 21.4 13.45 0.01 0.41 ind:imp:3p; +relâchais relâcher ver 21.4 13.45 0.01 0.07 ind:imp:1s; +relâchait relâcher ver 21.4 13.45 0.02 1.89 ind:imp:3s; +relâchant relâcher ver 21.4 13.45 0.04 0.68 par:pre; +relâche relâcher ver 21.4 13.45 4.25 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +relâchement relâchement nom m s 0.47 2.7 0.44 2.36 +relâchements relâchement nom m p 0.47 2.7 0.02 0.34 +relâchent relâcher ver 21.4 13.45 0.35 0.61 ind:pre:3p; +relâcher relâcher ver 21.4 13.45 4.09 3.24 inf;; +relâchera relâcher ver 21.4 13.45 0.41 0.07 ind:fut:3s; +relâcherai relâcher ver 21.4 13.45 0.54 0 ind:fut:1s; +relâcheraient relâcher ver 21.4 13.45 0.04 0 cnd:pre:3p; +relâcherait relâcher ver 21.4 13.45 0.02 0.07 cnd:pre:3s; +relâcheras relâcher ver 21.4 13.45 0.01 0 ind:fut:2s; +relâcherez relâcher ver 21.4 13.45 0.06 0 ind:fut:2p; +relâcherons relâcher ver 21.4 13.45 0.04 0 ind:fut:1p; +relâcheront relâcher ver 21.4 13.45 0.44 0.2 ind:fut:3p; +relâchez relâcher ver 21.4 13.45 4.77 0 imp:pre:2p;ind:pre:2p; +relâchiez relâcher ver 21.4 13.45 0.11 0 ind:imp:2p; +relâchons relâcher ver 21.4 13.45 0.27 0.07 imp:pre:1p;ind:pre:1p; +relâchèrent relâcher ver 21.4 13.45 0.01 0.54 ind:pas:3p; +relâché relâcher ver m s 21.4 13.45 4.08 1.76 par:pas; +relâchée relâcher ver f s 21.4 13.45 0.92 0.41 par:pas; +relâchées relâcher ver f p 21.4 13.45 0.07 0.2 par:pas; +relâchés relâcher ver m p 21.4 13.45 0.72 0.07 par:pas; +relègue reléguer ver 0.54 4.53 0.06 0.47 ind:pre:1s;ind:pre:3s; +relèguent reléguer ver 0.54 4.53 0 0.07 ind:pre:3p; +relève relever ver 39.49 124.93 11.74 19.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +relèvement relèvement nom m s 0.45 0.95 0.43 0.88 +relèvements relèvement nom m p 0.45 0.95 0.02 0.07 +relèvent relever ver 39.49 124.93 0.68 2.57 ind:pre:3p; +relèvera relever ver 39.49 124.93 0.51 0.41 ind:fut:3s; +relèverai relever ver 39.49 124.93 0.19 0 ind:fut:1s; +relèveraient relever ver 39.49 124.93 0.04 0.34 cnd:pre:3p; +relèverais relever ver 39.49 124.93 0.16 0 cnd:pre:1s;cnd:pre:2s; +relèverait relever ver 39.49 124.93 0.09 0.81 cnd:pre:3s; +relèveras relever ver 39.49 124.93 0.12 0.07 ind:fut:2s; +relèverez relever ver 39.49 124.93 0.01 0.14 ind:fut:2p; +relèverions relever ver 39.49 124.93 0 0.07 cnd:pre:1p; +relèverons relever ver 39.49 124.93 0.17 0 ind:fut:1p; +relèveront relever ver 39.49 124.93 0.09 0.07 ind:fut:3p; +relèves relever ver 39.49 124.93 0.15 0.2 ind:pre:2s;sub:pre:2s; +relégation relégation nom f s 0.1 0.68 0.1 0.68 +relégua reléguer ver 0.54 4.53 0 0.14 ind:pas:3s; +reléguai reléguer ver 0.54 4.53 0 0.07 ind:pas:1s; +reléguaient reléguer ver 0.54 4.53 0 0.14 ind:imp:3p; +reléguait reléguer ver 0.54 4.53 0 0.34 ind:imp:3s; +reléguant reléguer ver 0.54 4.53 0 0.27 par:pre; +reléguer reléguer ver 0.54 4.53 0.06 0.68 inf; +reléguera reléguer ver 0.54 4.53 0 0.07 ind:fut:3s; +relégueraient reléguer ver 0.54 4.53 0 0.07 cnd:pre:3p; +reléguerait reléguer ver 0.54 4.53 0 0.07 cnd:pre:3s; +reléguons reléguer ver 0.54 4.53 0 0.07 ind:pre:1p; +reléguèrent reléguer ver 0.54 4.53 0 0.07 ind:pas:3p; +relégué reléguer ver m s 0.54 4.53 0.31 0.95 par:pas; +reléguée reléguer ver f s 0.54 4.53 0.05 0.61 par:pas; +reléguées reléguer ver f p 0.54 4.53 0 0.27 par:pas; +relégués relégué adj m p 0.13 0.74 0.1 0.2 +remaigrir remaigrir ver 0.01 0 0.01 0 inf; +remaillage remaillage nom m s 0 0.2 0 0.2 +remaillaient remailler ver 0 0.27 0 0.07 ind:imp:3p; +remaillant remailler ver 0 0.27 0 0.07 par:pre; +remailler remailler ver 0 0.27 0 0.07 inf; +remailleuse mailleur nom f s 0 0.07 0 0.07 +remaillés remailler ver m p 0 0.27 0 0.07 par:pas; +remake remake nom m s 0.66 0.54 0.66 0.54 +remange remanger ver 0.07 0.07 0.03 0 ind:pre:1s; +remanger remanger ver 0.07 0.07 0.04 0 inf; +remangerait remanger ver 0.07 0.07 0 0.07 cnd:pre:3s; +remania remanier ver 0.79 0.88 0 0.07 ind:pas:3s; +remaniait remanier ver 0.79 0.88 0 0.07 ind:imp:3s; +remaniant remanier ver 0.79 0.88 0 0.14 par:pre; +remanie remanier ver 0.79 0.88 0.16 0 ind:pre:1s;ind:pre:3s; +remaniement remaniement nom m s 0.16 1.08 0.09 0.95 +remaniements remaniement nom m p 0.16 1.08 0.07 0.14 +remanier remanier ver 0.79 0.88 0.12 0.27 inf; +remanié remanier ver m s 0.79 0.88 0.48 0.2 par:pas; +remaniée remanier ver f s 0.79 0.88 0.01 0.14 par:pas; +remaniés remanier ver m p 0.79 0.88 0.02 0 par:pas; +remaquilla remaquiller ver 0.28 0.81 0 0.27 ind:pas:3s; +remaquillait remaquiller ver 0.28 0.81 0 0.14 ind:imp:3s; +remaquille remaquiller ver 0.28 0.81 0.02 0 ind:pre:1s;ind:pre:3s; +remaquiller remaquiller ver 0.28 0.81 0.26 0.2 inf; +remaquillé remaquiller ver m s 0.28 0.81 0.01 0 par:pas; +remaquillée remaquiller ver f s 0.28 0.81 0 0.2 par:pas; +remarchait remarcher ver 1.32 0.41 0 0.14 ind:imp:3s; +remarche remarcher ver 1.32 0.41 0.47 0.07 ind:pre:3s; +remarchent remarcher ver 1.32 0.41 0.02 0 ind:pre:3p; +remarcher remarcher ver 1.32 0.41 0.67 0.2 inf; +remarchera remarcher ver 1.32 0.41 0.13 0 ind:fut:3s; +remarcheras remarcher ver 1.32 0.41 0.02 0 ind:fut:2s; +remaria remarier ver 6.25 4.32 0.08 0.14 ind:pas:3s; +remariage remariage nom m s 0.1 0.54 0.1 0.54 +remariaient remarier ver 6.25 4.32 0.01 0 ind:imp:3p; +remariait remarier ver 6.25 4.32 0.05 0.07 ind:imp:3s; +remariant remarier ver 6.25 4.32 0.01 0.07 par:pre; +remarie remarier ver 6.25 4.32 0.72 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remarient remarier ver 6.25 4.32 0.04 0.14 ind:pre:3p; +remarier remarier ver 6.25 4.32 2.58 1.28 inf;;inf;;inf;; +remariera remarier ver 6.25 4.32 0.07 0.2 ind:fut:3s; +remarierai remarier ver 6.25 4.32 0.14 0 ind:fut:1s; +remarierais remarier ver 6.25 4.32 0.05 0 cnd:pre:1s;cnd:pre:2s; +remarierait remarier ver 6.25 4.32 0.02 0.07 cnd:pre:3s; +remarieras remarier ver 6.25 4.32 0.04 0 ind:fut:2s; +remarierez remarier ver 6.25 4.32 0.01 0 ind:fut:2p; +remarieront remarier ver 6.25 4.32 0 0.07 ind:fut:3p; +remaries remarier ver 6.25 4.32 0.06 0.07 ind:pre:2s; +remariez remarier ver 6.25 4.32 0.18 0.07 imp:pre:2p;ind:pre:2p; +remariions remarier ver 6.25 4.32 0 0.07 ind:imp:1p; +remarié remarier ver m s 6.25 4.32 0.81 1.15 par:pas; +remariée remarier ver f s 6.25 4.32 1.2 0.74 par:pas; +remariés remarier ver m p 6.25 4.32 0.17 0 par:pas; +remarqua remarquer ver 80.56 142.16 0.88 22.36 ind:pas:3s; +remarquable remarquable adj s 13.22 13.24 12.2 10.74 +remarquablement remarquablement adv 0.99 1.89 0.99 1.89 +remarquables remarquable adj p 13.22 13.24 1.02 2.5 +remarquai remarquer ver 80.56 142.16 0.31 6.35 ind:pas:1s; +remarquaient remarquer ver 80.56 142.16 0.1 0.54 ind:imp:3p; +remarquais remarquer ver 80.56 142.16 0.07 1.76 ind:imp:1s;ind:imp:2s; +remarquait remarquer ver 80.56 142.16 0.41 5.2 ind:imp:3s; +remarquant remarquer ver 80.56 142.16 0.01 1.42 par:pre; +remarquas remarquer ver 80.56 142.16 0 0.07 ind:pas:2s; +remarque remarquer ver 80.56 142.16 7.76 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +remarquent remarquer ver 80.56 142.16 1.01 1.01 ind:pre:3p; +remarquer remarquer ver 80.56 142.16 11.32 32.7 inf; +remarquera remarquer ver 80.56 142.16 1.05 0.68 ind:fut:3s; +remarquerai remarquer ver 80.56 142.16 0.04 0 ind:fut:1s; +remarqueraient remarquer ver 80.56 142.16 0.08 0 cnd:pre:3p; +remarquerais remarquer ver 80.56 142.16 0.41 0.2 cnd:pre:1s;cnd:pre:2s; +remarquerait remarquer ver 80.56 142.16 0.66 0.68 cnd:pre:3s; +remarqueras remarquer ver 80.56 142.16 0.37 0.2 ind:fut:2s; +remarquerez remarquer ver 80.56 142.16 0.92 0.61 ind:fut:2p; +remarqueriez remarquer ver 80.56 142.16 0.19 0 cnd:pre:2p; +remarqueront remarquer ver 80.56 142.16 0.53 0.07 ind:fut:3p; +remarques remarque nom f p 11.24 21.28 3.59 5.07 +remarquez remarquer ver 80.56 142.16 4.07 6.35 imp:pre:2p;ind:pre:2p; +remarquiez remarquer ver 80.56 142.16 0.14 0.14 ind:imp:2p;sub:pre:2p; +remarquions remarquer ver 80.56 142.16 0.03 0.2 ind:imp:1p; +remarquons remarquer ver 80.56 142.16 0.05 0 imp:pre:1p;ind:pre:1p; +remarquâmes remarquer ver 80.56 142.16 0 0.34 ind:pas:1p; +remarquât remarquer ver 80.56 142.16 0 0.54 sub:imp:3s; +remarquèrent remarquer ver 80.56 142.16 0.01 0.34 ind:pas:3p; +remarqué remarquer ver m s 80.56 142.16 47.2 39.86 par:pas; +remarquée remarquer ver f s 80.56 142.16 1.3 5.47 par:pas; +remarquées remarquer ver f p 80.56 142.16 0.08 0.68 par:pas; +remarqués remarquer ver m p 80.56 142.16 0.36 1.08 par:pas; +remballa remballer ver 3.06 1.96 0 0.2 ind:pas:3s; +remballage remballage nom m s 0.01 0.07 0.01 0.07 +remballaient remballer ver 3.06 1.96 0 0.07 ind:imp:3p; +remballait remballer ver 3.06 1.96 0 0.07 ind:imp:3s; +remballant remballer ver 3.06 1.96 0 0.2 par:pre; +remballe remballer ver 3.06 1.96 1.68 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remballent remballer ver 3.06 1.96 0.01 0.14 ind:pre:3p; +remballer remballer ver 3.06 1.96 0.66 0.34 inf; +remballez remballer ver 3.06 1.96 0.58 0 imp:pre:2p;ind:pre:2p; +remballé remballer ver m s 3.06 1.96 0.13 0.34 par:pas; +remballés remballer ver m p 3.06 1.96 0.01 0.14 par:pas; +rembarqua rembarquer ver 0.21 0.95 0 0.07 ind:pas:3s; +rembarquaient rembarquer ver 0.21 0.95 0 0.07 ind:imp:3p; +rembarque rembarquer ver 0.21 0.95 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembarquement rembarquement nom m s 0 0.47 0 0.41 +rembarquements rembarquement nom m p 0 0.47 0 0.07 +rembarquer rembarquer ver 0.21 0.95 0.04 0.41 inf; +rembarquez rembarquer ver 0.21 0.95 0.12 0 imp:pre:2p;ind:pre:2p; +rembarquèrent rembarquer ver 0.21 0.95 0 0.2 ind:pas:3p; +rembarqué rembarquer ver m s 0.21 0.95 0.01 0 par:pas; +rembarquées rembarquer ver f p 0.21 0.95 0 0.14 par:pas; +rembarra rembarrer ver 0.68 0.88 0 0.07 ind:pas:3s; +rembarrais rembarrer ver 0.68 0.88 0.01 0.14 ind:imp:1s; +rembarrait rembarrer ver 0.68 0.88 0.01 0.07 ind:imp:3s; +rembarre rembarrer ver 0.68 0.88 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembarrer rembarrer ver 0.68 0.88 0.25 0.34 inf; +rembarres rembarrer ver 0.68 0.88 0.05 0 ind:pre:2s; +rembarré rembarrer ver m s 0.68 0.88 0.11 0.07 par:pas; +rembarrée rembarrer ver f s 0.68 0.88 0.03 0.07 par:pas; +rembauche rembaucher ver 0 0.14 0 0.07 ind:pre:3s; +rembauchés rembaucher ver m p 0 0.14 0 0.07 par:pas; +remblai remblai nom m s 0.09 5.34 0.07 4.66 +remblaiement remblaiement nom m s 0 0.14 0 0.14 +remblais remblai nom m p 0.09 5.34 0.02 0.68 +remblaya remblayer ver 0.01 0.34 0 0.07 ind:pas:3s; +remblayer remblayer ver 0.01 0.34 0.01 0.14 inf; +remblayé remblayer ver m s 0.01 0.34 0 0.07 par:pas; +remblayée remblayer ver f s 0.01 0.34 0 0.07 par:pas; +rembobinage rembobinage nom m s 0.23 0 0.23 0 +rembobine rembobiner ver 1.59 0.2 1.1 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembobiner rembobiner ver 1.59 0.2 0.33 0.07 inf; +rembobinez rembobiner ver 1.59 0.2 0.16 0 imp:pre:2p; +rembour rembour nom m s 0 0.07 0 0.07 +rembourrage rembourrage nom m s 0.52 0.47 0.51 0.34 +rembourrages rembourrage nom m p 0.52 0.47 0.01 0.14 +rembourraient rembourrer ver 0.74 2.36 0.01 0.07 ind:imp:3p; +rembourrait rembourrer ver 0.74 2.36 0.01 0.14 ind:imp:3s; +rembourrant rembourrer ver 0.74 2.36 0 0.07 par:pre; +rembourre rembourrer ver 0.74 2.36 0.06 0.07 ind:pre:3s; +rembourrer rembourrer ver 0.74 2.36 0.06 0 inf; +rembourré rembourrer ver m s 0.74 2.36 0.35 0.81 par:pas; +rembourrée rembourrer ver f s 0.74 2.36 0.19 0.27 par:pas; +rembourrées rembourrer ver f p 0.74 2.36 0.03 0.34 par:pas; +rembourrés rembourrer ver m p 0.74 2.36 0.02 0.61 par:pas; +remboursa rembourser ver 27.71 9.26 0.01 0 ind:pas:3s; +remboursable remboursable adj s 0.38 0 0.38 0 +remboursaient rembourser ver 27.71 9.26 0 0.07 ind:imp:3p; +remboursais rembourser ver 27.71 9.26 0.03 0 ind:imp:1s;ind:imp:2s; +remboursait rembourser ver 27.71 9.26 0.17 0.14 ind:imp:3s; +remboursant rembourser ver 27.71 9.26 0.01 0.07 par:pre; +rembourse rembourser ver 27.71 9.26 3.81 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remboursement remboursement nom m s 2.09 1.15 1.89 1.01 +remboursements remboursement nom m p 2.09 1.15 0.2 0.14 +remboursent rembourser ver 27.71 9.26 0.16 0.14 ind:pre:3p; +rembourser rembourser ver 27.71 9.26 11.77 4.39 inf;; +remboursera rembourser ver 27.71 9.26 1.31 0.34 ind:fut:3s; +rembourserai rembourser ver 27.71 9.26 4.24 0.34 ind:fut:1s; +rembourserais rembourser ver 27.71 9.26 0.14 0 cnd:pre:1s;cnd:pre:2s; +rembourserait rembourser ver 27.71 9.26 0.08 0.07 cnd:pre:3s; +rembourseras rembourser ver 27.71 9.26 0.74 0.34 ind:fut:2s; +rembourserez rembourser ver 27.71 9.26 0.12 0.14 ind:fut:2p; +rembourserons rembourser ver 27.71 9.26 0.06 0.14 ind:fut:1p; +rembourseront rembourser ver 27.71 9.26 0.05 0.14 ind:fut:3p; +rembourses rembourser ver 27.71 9.26 0.56 0.07 ind:pre:2s; +remboursez rembourser ver 27.71 9.26 0.72 0.34 imp:pre:2p;ind:pre:2p; +remboursons rembourser ver 27.71 9.26 0.15 0.07 imp:pre:1p;ind:pre:1p; +remboursât rembourser ver 27.71 9.26 0 0.14 sub:imp:3s; +remboursèrent rembourser ver 27.71 9.26 0 0.07 ind:pas:3p; +remboursé rembourser ver m s 27.71 9.26 2.71 0.88 par:pas; +remboursée rembourser ver f s 27.71 9.26 0.48 0.27 par:pas; +remboursées rembourser ver f p 27.71 9.26 0.06 0.14 par:pas; +remboursés rembourser ver m p 27.71 9.26 0.34 0.2 par:pas; +remboîter remboîter ver 0 0.07 0 0.07 inf; +rembruni rembrunir ver m s 0.01 2.36 0 0.14 par:pas; +rembrunir rembrunir ver 0.01 2.36 0 0.2 inf; +rembrunis rembrunir ver m p 0.01 2.36 0 0.07 par:pas; +rembrunissait rembrunir ver 0.01 2.36 0 0.27 ind:imp:3s; +rembrunissent rembrunir ver 0.01 2.36 0 0.07 ind:pre:3p; +rembrunit rembrunir ver 0.01 2.36 0.01 1.62 ind:pre:3s;ind:pas:3s; +remembrance remembrance nom f s 0.01 0.14 0.01 0.14 +remembrement remembrement nom m s 0.01 0.14 0.01 0.14 +remembrés remembrer ver m p 0 0.07 0 0.07 par:pas; +remercia remercier ver 113.7 54.46 0.04 8.31 ind:pas:3s; +remerciai remercier ver 113.7 54.46 0.01 1.15 ind:pas:1s; +remerciaient remercier ver 113.7 54.46 0.11 0.54 ind:imp:3p; +remerciais remercier ver 113.7 54.46 0.14 0.54 ind:imp:1s; +remerciait remercier ver 113.7 54.46 0.06 2.5 ind:imp:3s; +remerciant remercier ver 113.7 54.46 0.4 1.76 par:pre; +remercie remercier ver 113.7 54.46 51.61 17.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +remerciement remerciement nom m s 5.52 6.22 2.53 2.64 +remerciements remerciement nom m p 5.52 6.22 2.99 3.58 +remercient remercier ver 113.7 54.46 0.98 0.27 ind:pre:3p; +remercier remercier ver 113.7 54.46 38.6 15.47 inf;; +remerciera remercier ver 113.7 54.46 0.47 0.14 ind:fut:3s; +remercierai remercier ver 113.7 54.46 0.84 0.2 ind:fut:1s; +remercierais remercier ver 113.7 54.46 0.12 0.07 cnd:pre:1s;cnd:pre:2s; +remercierait remercier ver 113.7 54.46 0.06 0.2 cnd:pre:3s; +remercieras remercier ver 113.7 54.46 1.39 0.2 ind:fut:2s; +remercierez remercier ver 113.7 54.46 1 0.14 ind:fut:2p; +remercierons remercier ver 113.7 54.46 0.02 0 ind:fut:1p; +remercieront remercier ver 113.7 54.46 0.3 0 ind:fut:3p; +remercies remercier ver 113.7 54.46 1.37 0.07 ind:pre:2s; +remerciez remercier ver 113.7 54.46 6.25 0.88 imp:pre:2p;ind:pre:2p; +remercions remercier ver 113.7 54.46 5 0.68 imp:pre:1p;ind:pre:1p; +remerciâmes remercier ver 113.7 54.46 0 0.07 ind:pas:1p; +remercièrent remercier ver 113.7 54.46 0 0.54 ind:pas:3p; +remercié remercier ver m s 113.7 54.46 3.59 2.91 par:pas; +remerciée remercier ver f s 113.7 54.46 0.94 0.54 par:pas; +remerciés remercier ver m p 113.7 54.46 0.38 0.2 par:pas; +remet remettre ver 144.99 202.5 12.56 15.74 ind:pre:3s; +remets remettre ver 144.99 202.5 24.72 6.76 imp:pre:2s;ind:pre:1s;ind:pre:2s; +remettaient remettre ver 144.99 202.5 0.06 2.3 ind:imp:3p; +remettais remettre ver 144.99 202.5 0.56 1.69 ind:imp:1s;ind:imp:2s; +remettait remettre ver 144.99 202.5 0.63 12.84 ind:imp:3s; +remettant remettre ver 144.99 202.5 0.31 5.61 par:pre; +remette remettre ver 144.99 202.5 2.94 2.64 sub:pre:1s;sub:pre:3s; +remettent remettre ver 144.99 202.5 2.26 2.91 ind:pre:3p; +remettes remettre ver 144.99 202.5 0.33 0.07 sub:pre:2s; +remettez remettre ver 144.99 202.5 10.44 2.03 imp:pre:2p;ind:pre:2p; +remettiez remettre ver 144.99 202.5 0.52 0.14 ind:imp:2p; +remettions remettre ver 144.99 202.5 0.07 0.07 ind:imp:1p; +remettons remettre ver 144.99 202.5 2.1 0.47 imp:pre:1p;ind:pre:1p; +remettra remettre ver 144.99 202.5 5.79 2.23 ind:fut:3s; +remettrai remettre ver 144.99 202.5 3.32 0.81 ind:fut:1s; +remettraient remettre ver 144.99 202.5 0.04 0.07 cnd:pre:3p; +remettrais remettre ver 144.99 202.5 0.45 0.34 cnd:pre:1s;cnd:pre:2s; +remettrait remettre ver 144.99 202.5 0.67 2.43 cnd:pre:3s; +remettras remettre ver 144.99 202.5 1.54 0.61 ind:fut:2s; +remettre remettre ver 144.99 202.5 47.05 56.08 ind:pre:2p;inf; +remettrez remettre ver 144.99 202.5 1.09 0.27 ind:fut:2p; +remettriez remettre ver 144.99 202.5 0.07 0.07 cnd:pre:2p; +remettrions remettre ver 144.99 202.5 0 0.07 cnd:pre:1p; +remettrons remettre ver 144.99 202.5 0.25 0 ind:fut:1p; +remettront remettre ver 144.99 202.5 0.27 0.14 ind:fut:3p; +remeublé remeubler ver m s 0.01 0 0.01 0 par:pas; +remirent remettre ver 144.99 202.5 0.04 2.97 ind:pas:3p; +remis remettre ver m 144.99 202.5 20.27 39.12 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas;par:pas; +remisa remiser ver 1.43 4.19 0 0.2 ind:pas:3s; +remisai remiser ver 1.43 4.19 0 0.14 ind:pas:1s; +remisaient remiser ver 1.43 4.19 0.01 0.07 ind:imp:3p; +remisait remiser ver 1.43 4.19 0 0.27 ind:imp:3s; +remise remise nom f s 9.77 12.09 8.81 10.95 +remisent remiser ver 1.43 4.19 0 0.07 ind:pre:3p; +remiser remiser ver 1.43 4.19 0.18 0.47 inf; +remises remise nom f p 9.77 12.09 0.96 1.15 +remisez remiser ver 1.43 4.19 0.11 0 imp:pre:2p; +remisons remiser ver 1.43 4.19 0 0.07 ind:pre:1p; +remisse remettre ver 144.99 202.5 0 0.07 sub:imp:1s; +remisèrent remiser ver 1.43 4.19 0 0.2 ind:pas:3p; +remisé remiser ver m s 1.43 4.19 0.12 0.74 par:pas; +remisée remiser ver f s 1.43 4.19 0 0.27 par:pas; +remisés remiser ver m p 1.43 4.19 0.01 0.34 par:pas; +remit remettre ver 144.99 202.5 0.66 32.16 ind:pas:3s; +remix remix nom m 0.15 0 0.15 0 +remixer remixer ver 0.02 0 0.02 0 inf; +remmailleuses remmailleuse nom f p 0 0.14 0 0.14 +remmenaient remmener ver 0.41 0.14 0 0.07 ind:imp:3p; +remmener remmener ver 0.41 0.14 0.16 0.07 inf; +remmenez remmener ver 0.41 0.14 0.14 0 imp:pre:2p;ind:pre:2p; +remmenée remmener ver f s 0.41 0.14 0.01 0 par:pas; +remmène remmener ver 0.41 0.14 0.09 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remmènes remmener ver 0.41 0.14 0.01 0 ind:pre:2s; +remobilisés remobiliser ver m p 0 0.07 0 0.07 par:pas; +remodela remodeler ver 0.35 0.88 0 0.14 ind:pas:3s; +remodelage remodelage nom m s 0.03 0.14 0.03 0.14 +remodelant remodeler ver 0.35 0.88 0.01 0.07 par:pre; +remodeler remodeler ver 0.35 0.88 0.2 0.07 inf; +remodelé remodeler ver m s 0.35 0.88 0.1 0.27 par:pas; +remodelée remodeler ver f s 0.35 0.88 0.04 0.07 par:pas; +remodelées remodeler ver f p 0.35 0.88 0 0.07 par:pas; +remodèle remodeler ver 0.35 0.88 0 0.14 ind:pre:3s; +remodèles remodeler ver 0.35 0.88 0 0.07 ind:pre:2s; +remonta remonter ver 71.33 160.14 0.32 16.22 ind:pas:3s; +remontage remontage nom m s 0.03 0.07 0.03 0.07 +remontai remonter ver 71.33 160.14 0.01 1.76 ind:pas:1s; +remontaient remonter ver 71.33 160.14 0.38 6.15 ind:imp:3p; +remontais remonter ver 71.33 160.14 0.33 2.36 ind:imp:1s;ind:imp:2s; +remontait remonter ver 71.33 160.14 0.65 17.84 ind:imp:3s; +remontant remontant nom m s 2.61 1.01 2.3 0.81 +remontantes remontant adj f p 0.11 0.61 0 0.07 +remontants remontant nom m p 2.61 1.01 0.31 0.2 +remonte remonter ver 71.33 160.14 25.55 26.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remonte_pente remonte_pente nom m s 0.02 0.07 0.02 0.07 +remonte_pentes remonte_pentes nom m 0 0.07 0 0.07 +remontent remonter ver 71.33 160.14 2.78 5.61 ind:pre:3p; +remonter remonter ver 71.33 160.14 19.13 38.51 inf; +remontera remonter ver 71.33 160.14 1.83 0.88 ind:fut:3s; +remonterai remonter ver 71.33 160.14 0.4 0.14 ind:fut:1s; +remonteraient remonter ver 71.33 160.14 0.04 0.14 cnd:pre:3p; +remonterait remonter ver 71.33 160.14 0.35 0.74 cnd:pre:3s; +remonteras remonter ver 71.33 160.14 0.06 0.2 ind:fut:2s; +remonterez remonter ver 71.33 160.14 0.08 0.07 ind:fut:2p; +remonteriez remonter ver 71.33 160.14 0.01 0 cnd:pre:2p; +remonterons remonter ver 71.33 160.14 0.14 0.27 ind:fut:1p; +remonteront remonter ver 71.33 160.14 0.3 0.14 ind:fut:3p; +remontes remonter ver 71.33 160.14 1.02 0.54 ind:pre:2s; +remontez remonter ver 71.33 160.14 6.73 0.81 imp:pre:2p;ind:pre:2p; +remontiez remonter ver 71.33 160.14 0.06 0.07 ind:imp:2p; +remontions remonter ver 71.33 160.14 0.3 0.74 ind:imp:1p; +remontoir remontoir nom m s 0.12 0.27 0.12 0.27 +remontons remonter ver 71.33 160.14 1.21 2.16 imp:pre:1p;ind:pre:1p; +remontrait remontrer ver 0.55 1.42 0.06 0.2 ind:imp:3s; +remontrance remontrance nom f s 0.87 1.69 0.16 0.2 +remontrances remontrance nom f p 0.87 1.69 0.71 1.49 +remontrassent remontrer ver 0.55 1.42 0 0.07 sub:imp:3p; +remontre remontrer ver 0.55 1.42 0.19 0.14 imp:pre:2s;ind:pre:3s; +remontrer remontrer ver 0.55 1.42 0.19 0.14 inf; +remontrera remontrer ver 0.55 1.42 0 0.07 ind:fut:3s; +remontrerai remontrer ver 0.55 1.42 0.01 0.07 ind:fut:1s; +remontrerais remontrer ver 0.55 1.42 0 0.07 cnd:pre:1s; +remontrerait remontrer ver 0.55 1.42 0 0.27 cnd:pre:3s; +remontreras remontrer ver 0.55 1.42 0 0.07 ind:fut:2s; +remontres remontrer ver 0.55 1.42 0.01 0.07 ind:pre:2s; +remontrez remontrer ver 0.55 1.42 0.08 0 imp:pre:2p; +remontré remontrer ver m s 0.55 1.42 0.01 0.27 par:pas; +remontâmes remonter ver 71.33 160.14 0 0.27 ind:pas:1p; +remontât remonter ver 71.33 160.14 0 0.41 sub:imp:3s; +remontèrent remonter ver 71.33 160.14 0.01 3.85 ind:pas:3p; +remonté remonter ver m s 71.33 160.14 5.83 14.39 par:pas; +remontée remonter ver f s 71.33 160.14 1.25 3.31 par:pas; +remontées remontée nom f p 0.38 1.76 0.16 0.27 +remontés remonter ver m p 71.33 160.14 1.04 3.11 par:pas; +remord remordre ver 0.61 0.41 0.43 0.2 ind:pre:3s; +remordait remordre ver 0.61 0.41 0 0.14 ind:imp:3s; +remords remords nom m 10.67 27.64 10.67 27.64 +remordu remordre ver m s 0.61 0.41 0.01 0 par:pas; +remorqua remorquer ver 1.6 1.35 0 0.2 ind:pas:3s; +remorquage remorquage nom m s 0.49 0.07 0.49 0.07 +remorquaient remorquer ver 1.6 1.35 0 0.07 ind:imp:3p; +remorquait remorquer ver 1.6 1.35 0.01 0.14 ind:imp:3s; +remorquant remorquer ver 1.6 1.35 0.02 0.34 par:pre; +remorque remorque nom f s 1.31 5.54 1.16 5.14 +remorquer remorquer ver 1.6 1.35 0.85 0.41 inf; +remorquera remorquer ver 1.6 1.35 0 0.07 ind:fut:3s; +remorquerai remorquer ver 1.6 1.35 0.02 0 ind:fut:1s; +remorques remorque nom f p 1.31 5.54 0.15 0.41 +remorqueur remorqueur nom m s 0.36 1.55 0.28 0.27 +remorqueurs remorqueur nom m p 0.36 1.55 0.08 1.28 +remorqueuse remorqueur adj f s 0.12 0.34 0.09 0 +remorquez remorquer ver 1.6 1.35 0.02 0 imp:pre:2p; +remorquions remorquer ver 1.6 1.35 0.01 0 ind:imp:1p; +remorquons remorquer ver 1.6 1.35 0.03 0 imp:pre:1p;ind:pre:1p; +remorqué remorquer ver m s 1.6 1.35 0.37 0.14 par:pas; +remorquée remorquer ver f s 1.6 1.35 0.08 0 par:pas; +remoucha remoucher ver 0 0.07 0 0.07 ind:pas:3s; +remouillaient remouiller ver 0.02 0.2 0 0.07 ind:imp:3p; +remouiller remouiller ver 0.02 0.2 0.02 0.14 inf; +remous remous nom m 1.49 14.66 1.49 14.66 +rempaillaient rempailler ver 0.01 0.2 0 0.07 ind:imp:3p; +rempailler rempailler ver 0.01 0.2 0.01 0.07 inf; +rempailleur rempailleur nom m s 0 0.34 0 0.2 +rempailleurs rempailleur nom m p 0 0.34 0 0.07 +rempailleuses rempailleur nom f p 0 0.34 0 0.07 +rempaillée rempailler ver f s 0.01 0.2 0 0.07 par:pas; +rempaquette rempaqueter ver 0 0.14 0 0.07 ind:pre:3s; +rempaqueté rempaqueter ver m s 0 0.14 0 0.07 par:pas; +rempart rempart nom m s 2.95 20 1.56 8.31 +remparts rempart nom m p 2.95 20 1.39 11.69 +rempilait rempiler ver 0.75 1.15 0 0.07 ind:imp:3s; +rempile rempiler ver 0.75 1.15 0.17 0.14 ind:pre:1s;ind:pre:3s; +rempilent rempiler ver 0.75 1.15 0 0.07 ind:pre:3p; +rempiler rempiler ver 0.75 1.15 0.2 0.54 inf; +rempilerai rempiler ver 0.75 1.15 0.01 0.07 ind:fut:1s; +rempilerais rempiler ver 0.75 1.15 0 0.07 cnd:pre:1s; +rempilerez rempiler ver 0.75 1.15 0 0.07 ind:fut:2p; +rempiles rempiler ver 0.75 1.15 0.03 0 ind:pre:2s; +rempilez rempiler ver 0.75 1.15 0.04 0.07 imp:pre:2p;ind:pre:2p; +rempilé rempiler ver m s 0.75 1.15 0.29 0.07 par:pas; +remplace remplacer ver 52.84 60.61 11.59 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remplacement remplacement nom m s 2.03 4.59 1.86 3.92 +remplacements remplacement nom m p 2.03 4.59 0.17 0.68 +remplacent remplacer ver 52.84 60.61 0.84 1.08 ind:pre:3p; +remplacer remplacer ver 52.84 60.61 22.95 18.38 inf;;inf;;inf;; +remplacera remplacer ver 52.84 60.61 2.13 1.22 ind:fut:3s; +remplacerai remplacer ver 52.84 60.61 0.56 0.07 ind:fut:1s; +remplaceraient remplacer ver 52.84 60.61 0.02 0.2 cnd:pre:3p; +remplacerais remplacer ver 52.84 60.61 0.22 0.2 cnd:pre:1s;cnd:pre:2s; +remplacerait remplacer ver 52.84 60.61 0.2 1.22 cnd:pre:3s; +remplaceras remplacer ver 52.84 60.61 0.33 0.07 ind:fut:2s; +remplacerez remplacer ver 52.84 60.61 0.26 0.41 ind:fut:2p; +remplaceriez remplacer ver 52.84 60.61 0.01 0 cnd:pre:2p; +remplacerons remplacer ver 52.84 60.61 0.27 0.14 ind:fut:1p; +remplaceront remplacer ver 52.84 60.61 0.3 0 ind:fut:3p; +remplaces remplacer ver 52.84 60.61 0.84 0.14 ind:pre:2s; +remplacez remplacer ver 52.84 60.61 1.81 0.07 imp:pre:2p;ind:pre:2p; +remplaciez remplacer ver 52.84 60.61 0.3 0 ind:imp:2p; +remplacèrent remplacer ver 52.84 60.61 0.01 0.47 ind:pas:3p; +remplacé remplacer ver m s 52.84 60.61 6.47 11.96 par:pas; +remplacée remplacer ver f s 52.84 60.61 0.92 2.84 par:pas; +remplacées remplacer ver f p 52.84 60.61 0.54 1.42 par:pas; +remplacés remplacer ver m p 52.84 60.61 0.81 3.11 par:pas; +remplaça remplacer ver 52.84 60.61 0.07 1.82 ind:pas:3s; +remplaçable remplaçable adj s 0.41 0.2 0.28 0.07 +remplaçables remplaçable adj m p 0.41 0.2 0.13 0.14 +remplaçai remplacer ver 52.84 60.61 0.02 0.14 ind:pas:1s; +remplaçaient remplacer ver 52.84 60.61 0.05 2.43 ind:imp:3p; +remplaçais remplacer ver 52.84 60.61 0.06 0.47 ind:imp:1s;ind:imp:2s; +remplaçait remplacer ver 52.84 60.61 0.53 5.41 ind:imp:3s; +remplaçant remplaçant nom m s 7.92 2.03 5.2 1.28 +remplaçante remplaçant nom f s 7.92 2.03 1.72 0.47 +remplaçantes remplaçant nom f p 7.92 2.03 0.09 0 +remplaçants remplaçant nom m p 7.92 2.03 0.91 0.27 +remplaçons remplacer ver 52.84 60.61 0.1 0.07 imp:pre:1p;ind:pre:1p; +remplaçât remplacer ver 52.84 60.61 0 0.07 sub:imp:3s; +rempli remplir ver m s 61.21 81.42 16.17 16.82 par:pas; +remplie rempli adj f s 12.74 20.74 6.64 9.93 +remplies rempli adj f p 12.74 20.74 1.82 4.59 +remplir remplir ver 61.21 81.42 18.92 22.5 inf; +remplira remplir ver 61.21 81.42 1 0.74 ind:fut:3s; +remplirai remplir ver 61.21 81.42 0.9 0.27 ind:fut:1s; +rempliraient remplir ver 61.21 81.42 0.01 0.2 cnd:pre:3p; +remplirais remplir ver 61.21 81.42 0.24 0 cnd:pre:1s; +remplirait remplir ver 61.21 81.42 0.2 0.74 cnd:pre:3s; +rempliras remplir ver 61.21 81.42 0.16 0 ind:fut:2s; +remplirent remplir ver 61.21 81.42 0.25 1.69 ind:pas:3p; +remplirez remplir ver 61.21 81.42 0.17 0 ind:fut:2p; +remplirons remplir ver 61.21 81.42 0.28 0.07 ind:fut:1p; +rempliront remplir ver 61.21 81.42 0.21 0.14 ind:fut:3p; +remplis remplir ver m p 61.21 81.42 7.08 3.78 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +remplissage remplissage nom m s 0.37 0.27 0.37 0.27 +remplissaient remplir ver 61.21 81.42 0.07 3.45 ind:imp:3p; +remplissais remplir ver 61.21 81.42 0.28 0.61 ind:imp:1s;ind:imp:2s; +remplissait remplir ver 61.21 81.42 1.15 9.59 ind:imp:3s; +remplissant remplir ver 61.21 81.42 0.48 2.43 par:pre; +remplisse remplir ver 61.21 81.42 1.09 0.61 sub:pre:1s;sub:pre:3s; +remplissent remplir ver 61.21 81.42 2.17 2.5 ind:pre:3p; +remplisses remplir ver 61.21 81.42 0.17 0.2 sub:pre:2s; +remplisseur remplisseur nom m s 0 0.07 0 0.07 +remplissez remplir ver 61.21 81.42 4.65 0.41 imp:pre:2p;ind:pre:2p; +remplissiez remplir ver 61.21 81.42 0.17 0 ind:imp:2p; +remplissions remplir ver 61.21 81.42 0.01 0.07 ind:imp:1p; +remplissons remplir ver 61.21 81.42 0.18 0.14 imp:pre:1p;ind:pre:1p; +remplit remplir ver 61.21 81.42 5.2 14.26 ind:pre:3s;ind:pas:3s; +remploi remploi nom m s 0 0.2 0 0.2 +remployée remployer ver f s 0 0.07 0 0.07 par:pas; +remplumer remplumer ver 0.09 0.34 0.04 0.27 inf; +remplumez remplumer ver 0.09 0.34 0.02 0 imp:pre:2p;ind:pre:2p; +remplumé remplumer ver m s 0.09 0.34 0.03 0.07 par:pas; +remplît remplir ver 61.21 81.42 0 0.2 sub:imp:3s; +rempochait rempocher ver 0 0.2 0 0.07 ind:imp:3s; +rempoche rempocher ver 0 0.2 0 0.14 ind:pre:1s;ind:pre:3s; +remporta remporter ver 9.27 10.61 0.27 0.27 ind:pas:3s; +remportai remporter ver 9.27 10.61 0 0.14 ind:pas:1s; +remportaient remporter ver 9.27 10.61 0.01 0.2 ind:imp:3p; +remportais remporter ver 9.27 10.61 0 0.07 ind:imp:2s; +remportait remporter ver 9.27 10.61 0.17 0.74 ind:imp:3s; +remportant remporter ver 9.27 10.61 0.07 0.41 par:pre; +remportassent remporter ver 9.27 10.61 0 0.07 sub:imp:3p; +remporte remporter ver 9.27 10.61 1.93 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remportent remporter ver 9.27 10.61 0.24 0.2 ind:pre:3p; +remporter remporter ver 9.27 10.61 3.06 2.09 inf; +remportera remporter ver 9.27 10.61 0.22 0.07 ind:fut:3s; +remporterai remporter ver 9.27 10.61 0.04 0 ind:fut:1s; +remporterait remporter ver 9.27 10.61 0.04 0.34 cnd:pre:3s; +remporterez remporter ver 9.27 10.61 0.02 0 ind:fut:2p; +remporterons remporter ver 9.27 10.61 0.1 0 ind:fut:1p; +remportez remporter ver 9.27 10.61 0.71 0.14 imp:pre:2p;ind:pre:2p; +remportiez remporter ver 9.27 10.61 0.01 0 ind:imp:2p; +remportions remporter ver 9.27 10.61 0 0.07 ind:imp:1p; +remportât remporter ver 9.27 10.61 0 0.07 sub:imp:3s; +remportèrent remporter ver 9.27 10.61 0 0.14 ind:pas:3p; +remporté remporter ver m s 9.27 10.61 2.11 2.84 par:pas; +remportée remporter ver f s 9.27 10.61 0.22 1.35 par:pas; +remportées remporter ver f p 9.27 10.61 0.01 0.07 par:pas; +remportés remporter ver m p 9.27 10.61 0.04 0.47 par:pas; +rempoter rempoter ver 0.01 0 0.01 0 inf; +remprunter remprunter ver 0.03 0 0.03 0 inf; +remua remuer ver 24.42 62.84 0.03 3.99 ind:pas:3s; +remuage remuage nom m s 0.01 0 0.01 0 +remuai remuer ver 24.42 62.84 0.02 0.27 ind:pas:1s; +remuaient remuer ver 24.42 62.84 0.08 3.78 ind:imp:3p; +remuais remuer ver 24.42 62.84 0.01 0.41 ind:imp:1s;ind:imp:2s; +remuait remuer ver 24.42 62.84 0.59 9.93 ind:imp:3s; +remuant remuer ver 24.42 62.84 0.42 5.81 par:pre; +remuante remuant adj f s 0.32 3.24 0.05 1.35 +remuantes remuant adj f p 0.32 3.24 0 0.41 +remuants remuant adj m p 0.32 3.24 0.01 0.27 +remue remuer ver 24.42 62.84 8.3 8.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remue_ménage remue_ménage nom m 0.78 4.8 0.78 4.8 +remue_méninges remue_méninges nom m 0.05 0.07 0.05 0.07 +remuement remuement nom m s 0 2.03 0 1.49 +remuements remuement nom m p 0 2.03 0 0.54 +remuent remuer ver 24.42 62.84 0.41 1.96 ind:pre:3p; +remuer remuer ver 24.42 62.84 6.38 15.34 inf; +remuera remuer ver 24.42 62.84 0.32 0.2 ind:fut:3s; +remuerai remuer ver 24.42 62.84 0.19 0.14 ind:fut:1s; +remueraient remuer ver 24.42 62.84 0 0.07 cnd:pre:3p; +remuerais remuer ver 24.42 62.84 0.02 0.14 cnd:pre:1s; +remuerait remuer ver 24.42 62.84 0.04 0.27 cnd:pre:3s; +remueront remuer ver 24.42 62.84 0.02 0 ind:fut:3p; +remues remuer ver 24.42 62.84 1.14 0.27 ind:pre:2s; +remueur remueur nom m s 0.04 0.14 0.04 0 +remueurs remueur nom m p 0.04 0.14 0 0.14 +remuez remuer ver 24.42 62.84 4.06 0.34 imp:pre:2p;ind:pre:2p; +remugle remugle nom m s 0.01 2.36 0 0.81 +remugles remugle nom m p 0.01 2.36 0.01 1.55 +remuions remuer ver 24.42 62.84 0 0.07 ind:imp:1p; +remuons remuer ver 24.42 62.84 0.2 0 imp:pre:1p;ind:pre:1p; +remuscle remuscler ver 0.17 0 0.01 0 imp:pre:2s; +remuscler remuscler ver 0.17 0 0.16 0 inf; +remuâmes remuer ver 24.42 62.84 0 0.07 ind:pas:1p; +remuât remuer ver 24.42 62.84 0 0.2 sub:imp:3s; +remuèrent remuer ver 24.42 62.84 0 1.15 ind:pas:3p; +remué remuer ver m s 24.42 62.84 1.68 5.47 par:pas; +remuée remuer ver f s 24.42 62.84 0.44 2.97 par:pas; +remuées remuer ver f p 24.42 62.84 0.01 0.81 par:pas; +remués remuer ver m p 24.42 62.84 0.06 0.95 par:pas; +remâcha remâcher ver 0.03 2.16 0 0.14 ind:pas:3s; +remâchaient remâcher ver 0.03 2.16 0 0.14 ind:imp:3p; +remâchais remâcher ver 0.03 2.16 0 0.14 ind:imp:1s; +remâchait remâcher ver 0.03 2.16 0 0.27 ind:imp:3s; +remâchant remâcher ver 0.03 2.16 0 0.34 par:pre; +remâche remâcher ver 0.03 2.16 0.01 0.27 ind:pre:1s;ind:pre:3s; +remâchent remâcher ver 0.03 2.16 0 0.14 ind:pre:3p; +remâcher remâcher ver 0.03 2.16 0.01 0.41 inf; +remâchez remâcher ver 0.03 2.16 0 0.07 ind:pre:2p; +remâché remâcher ver m s 0.03 2.16 0 0.07 par:pas; +remâchée remâcher ver f s 0.03 2.16 0.01 0.14 par:pas; +remâchées remâcher ver f p 0.03 2.16 0 0.07 par:pas; +remède remède nom m s 16.14 13.45 14.09 10.07 +remède_miracle remède_miracle nom m s 0.01 0 0.01 0 +remèdes remède nom m p 16.14 13.45 2.05 3.38 +remédia remédier ver 3.8 3.18 0.01 0.07 ind:pas:3s; +remédiable remédiable adj m s 0.01 0 0.01 0 +remédiait remédier ver 3.8 3.18 0.01 0.07 ind:imp:3s; +remédie remédier ver 3.8 3.18 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remédier remédier ver 3.8 3.18 3.21 2.5 inf; +remédiera remédier ver 3.8 3.18 0.05 0.07 ind:fut:3s; +remédierait remédier ver 3.8 3.18 0 0.07 cnd:pre:3s; +remédierons remédier ver 3.8 3.18 0.1 0 ind:fut:1p; +remédiez remédier ver 3.8 3.18 0.04 0 imp:pre:2p;ind:pre:2p; +remédions remédier ver 3.8 3.18 0.1 0 ind:pre:1p; +remédié remédier ver m s 3.8 3.18 0.2 0.34 par:pas; +remémora remémorer ver 1.28 4.12 0 0.47 ind:pas:3s; +remémorais remémorer ver 1.28 4.12 0.03 0.27 ind:imp:1s; +remémorait remémorer ver 1.28 4.12 0 0.27 ind:imp:3s; +remémorant remémorer ver 1.28 4.12 0.02 0.34 par:pre; +remémoration remémoration nom f s 0.02 0 0.02 0 +remémorative remémoratif adj f s 0 0.07 0 0.07 +remémore remémorer ver 1.28 4.12 0.34 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remémorent remémorer ver 1.28 4.12 0.01 0 ind:pre:3p; +remémorer remémorer ver 1.28 4.12 0.74 1.55 inf; +remémoré remémorer ver m s 1.28 4.12 0.14 0.41 par:pas; +remîmes remettre ver 144.99 202.5 0.01 0.2 ind:pas:1p; +remît remettre ver 144.99 202.5 0.01 1.22 sub:imp:3s; +renais renaître ver 7.45 13.04 0.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +renaissaient renaître ver 7.45 13.04 0 0.41 ind:imp:3p; +renaissais renaître ver 7.45 13.04 0.16 0 ind:imp:1s; +renaissait renaître ver 7.45 13.04 0 1.15 ind:imp:3s; +renaissance renaissance nom f s 2.77 10.61 2.75 10.34 +renaissances renaissance nom f p 2.77 10.61 0.02 0.27 +renaissant renaître ver 7.45 13.04 0.04 0.68 par:pre; +renaissante renaissant adj f s 0.39 2.43 0.34 0.74 +renaissantes renaissant adj f p 0.39 2.43 0 0.88 +renaissants renaissant adj m p 0.39 2.43 0 0.27 +renaisse renaître ver 7.45 13.04 0.1 0.54 sub:pre:3s; +renaissent renaître ver 7.45 13.04 0.11 0.41 ind:pre:3p; +renaisses renaître ver 7.45 13.04 0.02 0 sub:pre:2s; +renaissons renaître ver 7.45 13.04 0.03 0 ind:pre:1p; +renaquit renaître ver 7.45 13.04 0.02 0 ind:pas:3s; +renard renard nom m s 6.66 11.96 4.69 8.58 +renarde renard nom f s 6.66 11.96 0.22 0.2 +renardeau renardeau nom m s 0.01 0.54 0.01 0.41 +renardeaux renardeau nom m p 0.01 0.54 0 0.14 +renardes renard nom f p 6.66 11.96 0.01 0 +renards renard nom m p 6.66 11.96 1.74 3.18 +renaud renaud nom s 0 0.68 0 0.68 +renaudais renauder ver 0 2.64 0 0.07 ind:imp:1s; +renaudait renauder ver 0 2.64 0 0.47 ind:imp:3s; +renaudant renauder ver 0 2.64 0 0.2 par:pre; +renaude renauder ver 0 2.64 0 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renaudent renauder ver 0 2.64 0 0.07 ind:pre:3p; +renauder renauder ver 0 2.64 0 1.08 inf; +renaudeur renaudeur nom m s 0 0.07 0 0.07 +renaudé renauder ver m s 0 2.64 0 0.14 par:pas; +renaît renaître ver 7.45 13.04 0.96 1.96 ind:pre:3s; +renaîtra renaître ver 7.45 13.04 0.44 0.74 ind:fut:3s; +renaîtrai renaître ver 7.45 13.04 0.01 0 ind:fut:1s; +renaîtraient renaître ver 7.45 13.04 0 0.07 cnd:pre:3p; +renaîtrais renaître ver 7.45 13.04 0.02 0 cnd:pre:1s;cnd:pre:2s; +renaîtrait renaître ver 7.45 13.04 0.01 0.2 cnd:pre:3s; +renaîtras renaître ver 7.45 13.04 0.29 0 ind:fut:2s; +renaître renaître ver 7.45 13.04 3.07 4.86 inf; +renaîtrez renaître ver 7.45 13.04 0.04 0 ind:fut:2p; +renaîtrons renaître ver 7.45 13.04 0.03 0 ind:fut:1p; +renaîtront renaître ver 7.45 13.04 0.03 0.14 ind:fut:3p; +rencard rencard nom m s 10.76 1.42 9.62 1.08 +rencardaient rencarder ver 1.07 2.3 0 0.14 ind:imp:3p; +rencardait rencarder ver 1.07 2.3 0.01 0.14 ind:imp:3s; +rencarde rencarder ver 1.07 2.3 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rencarder rencarder ver 1.07 2.3 0.17 0.68 inf; +rencards rencard nom m p 10.76 1.42 1.14 0.34 +rencardé rencarder ver m s 1.07 2.3 0.38 0.68 par:pas; +rencardée rencarder ver f s 1.07 2.3 0.04 0.07 par:pas; +rencardées rencarder ver f p 1.07 2.3 0 0.07 par:pas; +rencardés rencarder ver m p 1.07 2.3 0.12 0.27 par:pas; +renchéri renchérir ver m s 0.18 3.58 0.05 0.14 par:pas; +renchérir renchérir ver 0.18 3.58 0.06 0.68 inf; +renchériront renchérir ver 0.18 3.58 0 0.14 ind:fut:3p; +renchéris renchérir ver 0.18 3.58 0.05 0.14 ind:pre:1s;ind:pre:2s; +renchérissais renchérir ver 0.18 3.58 0 0.07 ind:imp:1s; +renchérissait renchérir ver 0.18 3.58 0 0.41 ind:imp:3s; +renchérissant renchérir ver 0.18 3.58 0 0.14 par:pre; +renchérissent renchérir ver 0.18 3.58 0 0.07 ind:pre:3p; +renchérit renchérir ver 0.18 3.58 0.02 1.82 ind:pre:3s;ind:pas:3s; +rencogna rencogner ver 0 1.49 0 0.34 ind:pas:3s; +rencognait rencogner ver 0 1.49 0 0.14 ind:imp:3s; +rencognant rencogner ver 0 1.49 0 0.07 par:pre; +rencogne rencogner ver 0 1.49 0 0.07 ind:pre:3s; +rencogner rencogner ver 0 1.49 0 0.27 inf; +rencognerait rencogner ver 0 1.49 0 0.07 cnd:pre:3s; +rencogné rencogner ver m s 0 1.49 0 0.47 par:pas; +rencognés rencogner ver m p 0 1.49 0 0.07 par:pas; +rencontra rencontrer ver 241.04 188.51 1.64 11.49 ind:pas:3s; +rencontrai rencontrer ver 241.04 188.51 0.25 4.73 ind:pas:1s; +rencontraient rencontrer ver 241.04 188.51 0.49 3.24 ind:imp:3p; +rencontrais rencontrer ver 241.04 188.51 1.12 4.05 ind:imp:1s;ind:imp:2s; +rencontrait rencontrer ver 241.04 188.51 1.11 11.08 ind:imp:3s; +rencontrant rencontrer ver 241.04 188.51 0.82 3.18 par:pre; +rencontrasse rencontrer ver 241.04 188.51 0 0.07 sub:imp:1s; +rencontre rencontre nom f s 35.68 81.76 30.61 63.24 +rencontrent rencontrer ver 241.04 188.51 2.76 3.92 ind:pre:3p; +rencontrer rencontrer ver 241.04 188.51 82.72 43.92 inf;; +rencontrera rencontrer ver 241.04 188.51 1.1 0.95 ind:fut:3s; +rencontrerai rencontrer ver 241.04 188.51 0.67 0.68 ind:fut:1s; +rencontreraient rencontrer ver 241.04 188.51 0.05 0.27 cnd:pre:3p; +rencontrerais rencontrer ver 241.04 188.51 0.97 0.47 cnd:pre:1s;cnd:pre:2s; +rencontrerait rencontrer ver 241.04 188.51 0.48 1.69 cnd:pre:3s; +rencontreras rencontrer ver 241.04 188.51 1.55 0.54 ind:fut:2s; +rencontrerez rencontrer ver 241.04 188.51 1.18 0.54 ind:fut:2p; +rencontreriez rencontrer ver 241.04 188.51 0.05 0 cnd:pre:2p; +rencontrerions rencontrer ver 241.04 188.51 0.04 0.34 cnd:pre:1p; +rencontrerons rencontrer ver 241.04 188.51 0.37 0.34 ind:fut:1p; +rencontreront rencontrer ver 241.04 188.51 0.22 0.34 ind:fut:3p; +rencontres rencontre nom f p 35.68 81.76 5.07 18.51 +rencontrez rencontrer ver 241.04 188.51 1.8 0.88 imp:pre:2p;ind:pre:2p; +rencontriez rencontrer ver 241.04 188.51 0.92 0.27 ind:imp:2p; +rencontrions rencontrer ver 241.04 188.51 0.23 0.95 ind:imp:1p; +rencontrons rencontrer ver 241.04 188.51 1.21 1.42 imp:pre:1p;ind:pre:1p; +rencontrâmes rencontrer ver 241.04 188.51 0.01 0.68 ind:pas:1p; +rencontrât rencontrer ver 241.04 188.51 0 0.47 sub:imp:3s; +rencontrèrent rencontrer ver 241.04 188.51 0.83 4.19 ind:pas:3p; +rencontré rencontrer ver m s 241.04 188.51 77.82 45 par:pas; +rencontrée rencontrer ver f s 241.04 188.51 12.09 7.23 par:pas; +rencontrées rencontrer ver f p 241.04 188.51 2.61 1.35 par:pas; +rencontrés rencontrer ver m p 241.04 188.51 18.45 10.27 par:pas; +rend rendre ver 508.81 468.11 82.91 40 ind:pre:3s; +rendaient rendre ver 508.81 468.11 1.4 14.59 ind:imp:3p; +rendais rendre ver 508.81 468.11 3.25 8.92 ind:imp:1s;ind:imp:2s; +rendait rendre ver 508.81 468.11 9.17 58.24 ind:imp:3s; +rendant rendre ver 508.81 468.11 1.96 9.8 par:pre; +rende rendre ver 508.81 468.11 9.3 5.54 sub:pre:1s;sub:pre:3s; +rendement rendement nom m s 1.37 2.97 1.34 2.84 +rendements rendement nom m p 1.37 2.97 0.02 0.14 +rendent rendre ver 508.81 468.11 13.16 9.73 ind:pre:3p;sub:pre:3p; +rendes rendre ver 508.81 468.11 2.06 0.61 sub:pre:2s; +rendez rendre ver 508.81 468.11 46.77 14.19 imp:pre:2p;ind:pre:2p; +rendez_vous rendez_vous nom m 91.95 53.72 91.95 53.72 +rendiez rendre ver 508.81 468.11 1.12 0.47 ind:imp:2p; +rendions rendre ver 508.81 468.11 0.1 1.35 ind:imp:1p;sub:pre:1p; +rendirent rendre ver 508.81 468.11 0.57 3.92 ind:pas:3p; +rendis rendre ver 508.81 468.11 0.37 9.39 ind:pas:1s; +rendisse rendre ver 508.81 468.11 0 0.14 sub:imp:1s; +rendissent rendre ver 508.81 468.11 0 0.2 sub:imp:3p; +rendit rendre ver 508.81 468.11 2.13 27.23 ind:pas:3s; +rendons rendre ver 508.81 468.11 4.93 0.95 imp:pre:1p;ind:pre:1p; +rendormais rendormir ver 5.36 8.31 0.12 0.14 ind:imp:1s; +rendormait rendormir ver 5.36 8.31 0.01 0.2 ind:imp:3s; +rendormant rendormir ver 5.36 8.31 0 0.07 par:pre; +rendorme rendormir ver 5.36 8.31 0.02 0 sub:pre:3s; +rendorment rendormir ver 5.36 8.31 0.01 0.2 ind:pre:3p; +rendormez rendormir ver 5.36 8.31 0.34 0 imp:pre:2p;ind:pre:2p; +rendormi rendormir ver m s 5.36 8.31 0.64 0.81 par:pas; +rendormiez rendormir ver 5.36 8.31 0 0.07 ind:imp:2p; +rendormir rendormir ver 5.36 8.31 1.62 3.58 inf; +rendormira rendormir ver 5.36 8.31 0.14 0.14 ind:fut:3s; +rendormirai rendormir ver 5.36 8.31 0.22 0 ind:fut:1s; +rendormirait rendormir ver 5.36 8.31 0 0.07 cnd:pre:3s; +rendormis rendormir ver m p 5.36 8.31 0.01 0.54 ind:pas:1s;par:pas; +rendormit rendormir ver 5.36 8.31 0 1.82 ind:pas:3s; +rendormît rendormir ver 5.36 8.31 0 0.07 sub:imp:3s; +rendors rendormir ver 5.36 8.31 2.04 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rendort rendormir ver 5.36 8.31 0.2 0.34 ind:pre:3s; +rendra rendre ver 508.81 468.11 13.01 3.78 ind:fut:3s; +rendrai rendre ver 508.81 468.11 10.69 2.5 ind:fut:1s; +rendraient rendre ver 508.81 468.11 0.59 0.27 cnd:pre:3p; +rendrais rendre ver 508.81 468.11 2.17 1.22 cnd:pre:1s;cnd:pre:2s; +rendrait rendre ver 508.81 468.11 6.09 5.95 cnd:pre:3s; +rendras rendre ver 508.81 468.11 2.54 1.42 ind:fut:2s; +rendre rendre ver 508.81 468.11 141.31 150.07 inf;;inf;;inf;;inf;; +rendrez rendre ver 508.81 468.11 2.68 1.08 ind:fut:2p; +rendriez rendre ver 508.81 468.11 0.85 0.14 cnd:pre:2p; +rendrons rendre ver 508.81 468.11 1.18 0.27 ind:fut:1p; +rendront rendre ver 508.81 468.11 2.16 1.08 ind:fut:3p; +rends rendre ver 508.81 468.11 84.13 27.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rendu rendre ver m s 508.81 468.11 48.31 46.08 par:pas; +rendue rendre ver f s 508.81 468.11 8.88 9.46 par:pas; +rendues rendre ver f p 508.81 468.11 1.01 1.82 par:pas; +rendus rendre ver m p 508.81 468.11 4 7.43 par:pas; +rendîmes rendre ver 508.81 468.11 0 0.68 ind:pas:1p; +rendît rendre ver 508.81 468.11 0 2.43 sub:imp:3s; +reneige reneiger ver 0.01 0.07 0 0.07 ind:pre:3s; +reneiger reneiger ver 0.01 0.07 0.01 0 inf; +renettoyer renettoyer ver 0.01 0 0.01 0 inf; +renferma renfermer ver 3.25 4.59 0.1 0.14 ind:pas:3s; +renfermaient renfermer ver 3.25 4.59 0 0.34 ind:imp:3p; +renfermait renfermer ver 3.25 4.59 0.17 0.88 ind:imp:3s; +renfermant renfermer ver 3.25 4.59 0.16 0.14 par:pre; +renferme renfermer ver 3.25 4.59 1.08 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renfermement renfermement nom m s 0 0.14 0 0.14 +renferment renfermer ver 3.25 4.59 0.23 0.34 ind:pre:3p; +renfermer renfermer ver 3.25 4.59 0.57 0.41 inf; +renfermerait renfermer ver 3.25 4.59 0 0.07 cnd:pre:3s; +renfermez renfermer ver 3.25 4.59 0.03 0.07 imp:pre:2p; +renfermé renfermé adj m s 1.42 1.01 1.22 0.74 +renfermée renfermé adj f s 1.42 1.01 0.19 0.2 +renfermées renfermé nom f p 0.48 2.03 0.01 0 +renfermés renfermer ver m p 3.25 4.59 0.05 0.07 par:pas; +renfila renfiler ver 0.1 0.88 0 0.07 ind:pas:3s; +renfilait renfiler ver 0.1 0.88 0 0.07 ind:imp:3s; +renfilant renfiler ver 0.1 0.88 0 0.07 par:pre; +renfile renfiler ver 0.1 0.88 0.1 0.2 imp:pre:2s;ind:pre:3s; +renfiler renfiler ver 0.1 0.88 0 0.14 inf; +renfilé renfiler ver m s 0.1 0.88 0 0.34 par:pas; +renflait renfler ver 0 1.15 0 0.14 ind:imp:3s; +renflant renfler ver 0 1.15 0 0.07 par:pre; +renflement renflement nom m s 0.17 1.49 0.17 1.22 +renflements renflement nom m p 0.17 1.49 0 0.27 +renflent renfler ver 0 1.15 0 0.07 ind:pre:3p; +renfloua renflouer ver 0.48 1.15 0 0.14 ind:pas:3s; +renflouage renflouage nom m s 0.01 0.14 0.01 0.14 +renflouait renflouer ver 0.48 1.15 0 0.07 ind:imp:3s; +renflouant renflouer ver 0.48 1.15 0 0.07 par:pre; +renfloue renflouer ver 0.48 1.15 0.17 0 ind:pre:1s;ind:pre:3s; +renflouement renflouement nom m s 0.01 0.07 0.01 0.07 +renflouent renflouer ver 0.48 1.15 0.02 0 ind:pre:3p; +renflouer renflouer ver 0.48 1.15 0.23 0.54 inf; +renfloué renflouer ver m s 0.48 1.15 0.03 0.14 par:pas; +renflouée renflouer ver f s 0.48 1.15 0.01 0.07 par:pas; +renfloués renflouer ver m p 0.48 1.15 0.02 0.14 par:pas; +renflé renflé adj m s 0 0.74 0 0.41 +renflée renfler ver f s 0 1.15 0 0.34 par:pas; +renflées renfler ver f p 0 1.15 0 0.07 par:pas; +renflés renfler ver m p 0 1.15 0 0.14 par:pas; +renfonce renfoncer ver 0.07 1.35 0.02 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renfoncement renfoncement nom m s 0.04 3.51 0.03 3.11 +renfoncements renfoncement nom m p 0.04 3.51 0.01 0.41 +renfoncer renfoncer ver 0.07 1.35 0 0.14 inf; +renfoncé renfoncer ver m s 0.07 1.35 0.02 0.54 par:pas; +renfoncée renfoncer ver f s 0.07 1.35 0.02 0.14 par:pas; +renfoncées renfoncer ver f p 0.07 1.35 0.01 0 par:pas; +renfoncés renfoncer ver m p 0.07 1.35 0 0.14 par:pas; +renfonça renfoncer ver 0.07 1.35 0 0.14 ind:pas:3s; +renfonçait renfoncer ver 0.07 1.35 0 0.07 ind:imp:3s; +renforce renforcer ver 10.34 17.84 2.05 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renforcement renforcement nom m s 0.19 0.74 0.16 0.74 +renforcements renforcement nom m p 0.19 0.74 0.03 0 +renforcent renforcer ver 10.34 17.84 0.51 0.74 ind:pre:3p; +renforcer renforcer ver 10.34 17.84 4.29 6.35 inf; +renforcera renforcer ver 10.34 17.84 0.35 0.14 ind:fut:3s; +renforcerai renforcer ver 10.34 17.84 0.04 0 ind:fut:1s; +renforceraient renforcer ver 10.34 17.84 0.01 0.07 cnd:pre:3p; +renforcerait renforcer ver 10.34 17.84 0.14 0.07 cnd:pre:3s; +renforcerez renforcer ver 10.34 17.84 0.15 0 ind:fut:2p; +renforcerons renforcer ver 10.34 17.84 0.01 0.07 ind:fut:1p; +renforcez renforcer ver 10.34 17.84 0.48 0.07 imp:pre:2p;ind:pre:2p; +renforciez renforcer ver 10.34 17.84 0.04 0 ind:imp:2p; +renforcèrent renforcer ver 10.34 17.84 0 0.2 ind:pas:3p; +renforcé renforcer ver m s 10.34 17.84 0.9 1.89 par:pas; +renforcée renforcer ver f s 10.34 17.84 0.76 2.09 par:pas; +renforcées renforcer ver f p 10.34 17.84 0.1 1.01 par:pas; +renforcés renforcer ver m p 10.34 17.84 0.26 0.34 par:pas; +renfort renfort nom m s 21.41 13.45 7.5 7.5 +renforts renfort nom m p 21.41 13.45 13.91 5.95 +renforça renforcer ver 10.34 17.84 0.01 0.47 ind:pas:3s; +renforçaient renforcer ver 10.34 17.84 0 0.47 ind:imp:3p; +renforçait renforcer ver 10.34 17.84 0.17 1.49 ind:imp:3s; +renforçant renforcer ver 10.34 17.84 0.03 0.61 par:pre; +renforçons renforcer ver 10.34 17.84 0.05 0.07 imp:pre:1p;ind:pre:1p; +renforçât renforcer ver 10.34 17.84 0 0.07 sub:imp:3s; +renfourché renfourcher ver m s 0 0.07 0 0.07 par:pas; +renfournait renfourner ver 0 0.07 0 0.07 ind:imp:3s; +renfrogna renfrogner ver 0.27 2.57 0.01 0.74 ind:pas:3s; +renfrognait renfrogner ver 0.27 2.57 0 0.27 ind:imp:3s; +renfrognant renfrogner ver 0.27 2.57 0 0.07 par:pre; +renfrogne renfrogner ver 0.27 2.57 0.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renfrognement renfrognement nom m s 0.01 0.14 0.01 0.14 +renfrogner renfrogner ver 0.27 2.57 0.01 0.14 inf; +renfrognerait renfrogner ver 0.27 2.57 0 0.07 cnd:pre:3s; +renfrogné renfrogner ver m s 0.27 2.57 0.21 0.47 par:pas; +renfrognée renfrogné adj f s 0.3 2.36 0.16 0.54 +renfrognés renfrogner ver m p 0.27 2.57 0.02 0.07 par:pas; +rengageait rengager ver 0.12 0.61 0 0.07 ind:imp:3s; +rengagement rengagement nom m s 0.01 0.07 0.01 0.07 +rengager rengager ver 0.12 0.61 0.09 0.34 inf; +rengagerais rengager ver 0.12 0.61 0.01 0 cnd:pre:1s; +rengagez rengager ver 0.12 0.61 0.02 0.07 imp:pre:2p;ind:pre:2p; +rengagés rengager ver m p 0.12 0.61 0 0.14 par:pas; +rengaina rengainer ver 0.6 1.42 0 0.27 ind:pas:3s; +rengainait rengainer ver 0.6 1.42 0 0.07 ind:imp:3s; +rengainant rengainer ver 0.6 1.42 0.01 0.07 par:pre; +rengaine rengaine nom f s 1.48 4.59 1.41 3.31 +rengainer rengainer ver 0.6 1.42 0.05 0.2 inf; +rengaines rengaine nom f p 1.48 4.59 0.06 1.28 +rengainez rengainer ver 0.6 1.42 0.35 0.07 imp:pre:2p; +rengainèrent rengainer ver 0.6 1.42 0 0.07 ind:pas:3p; +rengainé rengainer ver m s 0.6 1.42 0.01 0.47 par:pas; +rengainés rengainer ver m p 0.6 1.42 0.01 0 par:pas; +rengorge rengorger ver 0.04 2.97 0.03 0.61 ind:pre:3s; +rengorgea rengorger ver 0.04 2.97 0 0.88 ind:pas:3s; +rengorgeai rengorger ver 0.04 2.97 0 0.07 ind:pas:1s; +rengorgeaient rengorger ver 0.04 2.97 0 0.07 ind:imp:3p; +rengorgeais rengorger ver 0.04 2.97 0 0.14 ind:imp:1s; +rengorgeait rengorger ver 0.04 2.97 0 0.27 ind:imp:3s; +rengorgeant rengorger ver 0.04 2.97 0 0.34 par:pre; +rengorgement rengorgement nom m s 0 0.14 0 0.07 +rengorgements rengorgement nom m p 0 0.14 0 0.07 +rengorgent rengorger ver 0.04 2.97 0.01 0.14 ind:pre:3p; +rengorger rengorger ver 0.04 2.97 0 0.27 inf; +rengorges rengorger ver 0.04 2.97 0 0.07 ind:pre:2s; +rengorgé rengorger ver m s 0.04 2.97 0 0.07 par:pas; +rengorgés rengorger ver m p 0.04 2.97 0 0.07 par:pas; +rengracie rengracier ver 0 0.2 0 0.14 ind:pre:3s; +rengracié rengracier ver m s 0 0.2 0 0.07 par:pas; +renia renier ver 6.88 13.85 0.2 0.2 ind:pas:3s; +reniai renier ver 6.88 13.85 0 0.2 ind:pas:1s; +reniaient renier ver 6.88 13.85 0 0.41 ind:imp:3p; +reniais renier ver 6.88 13.85 0.11 0.54 ind:imp:1s;ind:imp:2s; +reniait renier ver 6.88 13.85 0.01 0.95 ind:imp:3s; +reniant renier ver 6.88 13.85 0.18 0.61 par:pre; +renie renier ver 6.88 13.85 1.65 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reniement reniement nom m s 0.02 2.09 0.02 1.42 +reniements reniement nom m p 0.02 2.09 0 0.68 +renient renier ver 6.88 13.85 0.07 0.2 ind:pre:3p; +renier renier ver 6.88 13.85 1.93 4.8 inf; +renierai renier ver 6.88 13.85 0.33 0.14 ind:fut:1s; +renierais renier ver 6.88 13.85 0.02 0.07 cnd:pre:1s; +renierait renier ver 6.88 13.85 0.33 0.27 cnd:pre:3s; +renieras renier ver 6.88 13.85 0.28 0 ind:fut:2s; +renieront renier ver 6.88 13.85 0.1 0 ind:fut:3p; +renies renier ver 6.88 13.85 0.25 0.27 ind:pre:2s; +reniez renier ver 6.88 13.85 0.03 0.14 imp:pre:2p;ind:pre:2p; +renifla renifler ver 5.56 24.39 0 3.31 ind:pas:3s; +reniflage reniflage nom m s 0.05 0 0.05 0 +reniflai renifler ver 5.56 24.39 0 0.2 ind:pas:1s; +reniflaient renifler ver 5.56 24.39 0 0.88 ind:imp:3p; +reniflais renifler ver 5.56 24.39 0.04 0.34 ind:imp:1s;ind:imp:2s; +reniflait renifler ver 5.56 24.39 0.07 3.58 ind:imp:3s; +reniflant renifler ver 5.56 24.39 0.05 3.38 par:pre; +renifle renifler ver 5.56 24.39 2.67 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reniflement reniflement nom m s 0.04 1.28 0.01 0.47 +reniflements reniflement nom m p 0.04 1.28 0.02 0.81 +reniflent renifler ver 5.56 24.39 0.11 0.68 ind:pre:3p; +renifler renifler ver 5.56 24.39 1.64 5.2 inf; +reniflera renifler ver 5.56 24.39 0.02 0 ind:fut:3s; +reniflerait renifler ver 5.56 24.39 0.01 0.07 cnd:pre:3s; +renifleries reniflerie nom f p 0 0.14 0 0.14 +reniflette reniflette nom f s 0 0.07 0 0.07 +renifleur renifleur nom m s 0.25 0.14 0.2 0.07 +renifleurs renifleur nom m p 0.25 0.14 0.05 0.07 +renifleuse renifleur adj f s 0.12 0.07 0.01 0 +reniflez renifler ver 5.56 24.39 0.17 0.27 imp:pre:2p;ind:pre:2p; +reniflé renifler ver m s 5.56 24.39 0.63 1.69 par:pas; +reniflée renifler ver f s 5.56 24.39 0.15 0.41 par:pas; +reniflées renifler ver f p 5.56 24.39 0.01 0 par:pas; +renions renier ver 6.88 13.85 0.03 0 imp:pre:1p;ind:pre:1p; +renièrent renier ver 6.88 13.85 0 0.07 ind:pas:3p; +renié renier ver m s 6.88 13.85 1.01 1.76 par:pas; +reniée renier ver f s 6.88 13.85 0.3 0.81 par:pas; +reniées renier ver f p 6.88 13.85 0 0.14 par:pas; +reniés renier ver m p 6.88 13.85 0.03 0.14 par:pas; +rennais rennais adj m 0 0.2 0 0.07 +rennaises rennais adj f p 0 0.2 0 0.14 +renne renne nom m s 1.79 1.15 0.81 0.47 +rennes renne nom m p 1.79 1.15 0.98 0.68 +renom renom nom m s 1.15 2.43 1.15 2.43 +renommait renommer ver 0.77 1.22 0 0.07 ind:imp:3s; +renommer renommer ver 0.77 1.22 0.22 0 inf; +renommera renommer ver 0.77 1.22 0.01 0 ind:fut:3s; +renommez renommer ver 0.77 1.22 0 0.27 imp:pre:2p;ind:pre:2p; +renommé renommé adj m s 0.97 1.08 0.45 0.47 +renommée renommée nom f s 1.89 3.11 1.89 3.11 +renommées renommé adj f p 0.97 1.08 0.01 0.07 +renommés renommé adj m p 0.97 1.08 0.15 0.27 +renonce renoncer ver 41.65 64.46 9.28 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renoncement renoncement nom m s 0.7 6.82 0.69 5.95 +renoncements renoncement nom m p 0.7 6.82 0.02 0.88 +renoncent renoncer ver 41.65 64.46 0.75 1.28 ind:pre:3p; +renoncer renoncer ver 41.65 64.46 15.23 21.55 inf; +renoncera renoncer ver 41.65 64.46 0.5 0.27 ind:fut:3s; +renoncerai renoncer ver 41.65 64.46 1.06 0.27 ind:fut:1s; +renonceraient renoncer ver 41.65 64.46 0.01 0 cnd:pre:3p; +renoncerais renoncer ver 41.65 64.46 0.99 0.34 cnd:pre:1s;cnd:pre:2s; +renoncerait renoncer ver 41.65 64.46 0.14 0.34 cnd:pre:3s; +renonceras renoncer ver 41.65 64.46 0.06 0 ind:fut:2s; +renoncerez renoncer ver 41.65 64.46 0.07 0.07 ind:fut:2p; +renonceriez renoncer ver 41.65 64.46 0.05 0 cnd:pre:2p; +renoncerions renoncer ver 41.65 64.46 0.14 0 cnd:pre:1p; +renoncerons renoncer ver 41.65 64.46 0.16 0 ind:fut:1p; +renonceront renoncer ver 41.65 64.46 0.19 0.07 ind:fut:3p; +renonces renoncer ver 41.65 64.46 1.5 0.07 ind:pre:2s;sub:pre:2s; +renoncez renoncer ver 41.65 64.46 2.91 0.68 imp:pre:2p;ind:pre:2p; +renonciateur renonciateur nom m s 0 0.07 0 0.07 +renonciation renonciation nom f s 0.38 0.41 0.35 0.34 +renonciations renonciation nom f p 0.38 0.41 0.03 0.07 +renonciez renoncer ver 41.65 64.46 0.23 0.14 ind:imp:2p; +renoncions renoncer ver 41.65 64.46 0.04 0.47 ind:imp:1p; +renonculacées renonculacée nom f p 0.01 0 0.01 0 +renoncule renoncule nom f s 0.07 0.54 0.01 0.07 +renoncules renoncule nom f p 0.07 0.54 0.05 0.47 +renoncèrent renoncer ver 41.65 64.46 0.03 0.47 ind:pas:3p; +renoncé renoncer ver m s 41.65 64.46 6.43 17.3 par:pas; +renoncée renoncer ver f s 41.65 64.46 0 0.07 par:pas; +renonça renoncer ver 41.65 64.46 0.16 4.19 ind:pas:3s; +renonçai renoncer ver 41.65 64.46 0.14 1.69 ind:pas:1s; +renonçaient renoncer ver 41.65 64.46 0 0.68 ind:imp:3p; +renonçais renoncer ver 41.65 64.46 0.2 0.54 ind:imp:1s; +renonçait renoncer ver 41.65 64.46 0.18 3.18 ind:imp:3s; +renonçant renoncer ver 41.65 64.46 0.71 4.46 par:pre; +renonçons renoncer ver 41.65 64.46 0.47 0.47 imp:pre:1p;ind:pre:1p; +renonçât renoncer ver 41.65 64.46 0.01 0.27 sub:imp:3s; +renoter renoter ver 0.01 0 0.01 0 inf; +renoua renouer ver 1.56 7.91 0 0.27 ind:pas:3s; +renouai renouer ver 1.56 7.91 0 0.2 ind:pas:1s; +renouaient renouer ver 1.56 7.91 0 0.2 ind:imp:3p; +renouais renouer ver 1.56 7.91 0.01 0.07 ind:imp:1s; +renouait renouer ver 1.56 7.91 0.01 0.81 ind:imp:3s; +renouant renouer ver 1.56 7.91 0.01 0.47 par:pre; +renoue renouer ver 1.56 7.91 0.4 0.81 ind:pre:1s;ind:pre:3s; +renouent renouer ver 1.56 7.91 0.1 0.07 ind:pre:3p; +renouer renouer ver 1.56 7.91 0.7 3.18 inf; +renouerait renouer ver 1.56 7.91 0 0.07 cnd:pre:3s; +renoueront renouer ver 1.56 7.91 0 0.14 ind:fut:3p; +renouons renouer ver 1.56 7.91 0.01 0.14 imp:pre:1p;ind:pre:1p; +renouveau renouveau nom m s 1.38 3.85 1.38 3.72 +renouveaux renouveau nom m p 1.38 3.85 0 0.14 +renouvela renouveler ver 4.71 19.39 0.12 0.61 ind:pas:3s; +renouvelable renouvelable adj s 0.09 0.07 0.09 0.07 +renouvelai renouveler ver 4.71 19.39 0 0.34 ind:pas:1s; +renouvelaient renouveler ver 4.71 19.39 0 0.2 ind:imp:3p; +renouvelais renouveler ver 4.71 19.39 0 0.14 ind:imp:1s; +renouvelait renouveler ver 4.71 19.39 0.02 1.62 ind:imp:3s; +renouvelant renouveler ver 4.71 19.39 0 0.68 par:pre; +renouveler renouveler ver 4.71 19.39 1.98 5.81 inf; +renouvelez renouveler ver 4.71 19.39 0.08 0 imp:pre:2p;ind:pre:2p; +renouvelions renouveler ver 4.71 19.39 0 0.07 ind:imp:1p; +renouvelle renouveler ver 4.71 19.39 1.06 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renouvellement renouvellement nom m s 0.94 2.43 0.89 2.3 +renouvellements renouvellement nom m p 0.94 2.43 0.05 0.14 +renouvellent renouveler ver 4.71 19.39 0.34 0.27 ind:pre:3p; +renouvellera renouveler ver 4.71 19.39 0.1 0.14 ind:fut:3s; +renouvellerai renouveler ver 4.71 19.39 0.01 0.07 ind:fut:1s; +renouvellerait renouveler ver 4.71 19.39 0 0.41 cnd:pre:3s; +renouvellerons renouveler ver 4.71 19.39 0.01 0 ind:fut:1p; +renouvelleront renouveler ver 4.71 19.39 0.04 0.07 ind:fut:3p; +renouvelles renouveler ver 4.71 19.39 0.03 0 ind:pre:2s; +renouvelons renouveler ver 4.71 19.39 0.04 0.07 imp:pre:1p;ind:pre:1p; +renouvelâmes renouveler ver 4.71 19.39 0 0.07 ind:pas:1p; +renouvelât renouveler ver 4.71 19.39 0 0.14 sub:imp:3s; +renouvelèrent renouveler ver 4.71 19.39 0 0.07 ind:pas:3p; +renouvelé renouveler ver m s 4.71 19.39 0.52 2.7 par:pas; +renouvelée renouveler ver f s 4.71 19.39 0.15 2.36 par:pas; +renouvelées renouveler ver f p 4.71 19.39 0.03 1.15 par:pas; +renouvelés renouveler ver m p 4.71 19.39 0.18 0.81 par:pas; +renouèrent renouer ver 1.56 7.91 0 0.14 ind:pas:3p; +renoué renouer ver m s 1.56 7.91 0.32 1.08 par:pas; +renouée renouée nom f s 0 0.34 0 0.34 +renoués renouer ver m p 1.56 7.91 0 0.07 par:pas; +renquillait renquiller ver 0 0.34 0 0.07 ind:imp:3s; +renquille renquiller ver 0 0.34 0 0.07 ind:pre:3s; +renquillé renquiller ver m s 0 0.34 0 0.2 par:pas; +renseigna renseigner ver 20.47 24.26 0 1.01 ind:pas:3s; +renseignai renseigner ver 20.47 24.26 0 0.2 ind:pas:1s; +renseignaient renseigner ver 20.47 24.26 0 0.34 ind:imp:3p; +renseignais renseigner ver 20.47 24.26 0.26 0 ind:imp:1s;ind:imp:2s; +renseignait renseigner ver 20.47 24.26 0.08 1.01 ind:imp:3s; +renseignant renseigner ver 20.47 24.26 0.02 0.14 par:pre; +renseigne renseigner ver 20.47 24.26 3.44 2.7 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renseignement renseignement nom m s 18.98 22.91 5.07 5.68 +renseignements renseignement nom m p 18.98 22.91 13.91 17.23 +renseignent renseigner ver 20.47 24.26 0.14 0.47 ind:pre:3p; +renseigner renseigner ver 20.47 24.26 9.08 7.03 ind:pre:2p;inf; +renseignera renseigner ver 20.47 24.26 0.59 0.27 ind:fut:3s; +renseignerai renseigner ver 20.47 24.26 0.19 0.2 ind:fut:1s; +renseigneraient renseigner ver 20.47 24.26 0.01 0.14 cnd:pre:3p; +renseignerais renseigner ver 20.47 24.26 0.22 0 cnd:pre:1s;cnd:pre:2s; +renseignerait renseigner ver 20.47 24.26 0.17 0.27 cnd:pre:3s; +renseigneras renseigner ver 20.47 24.26 0.01 0.07 ind:fut:2s; +renseigneriez renseigner ver 20.47 24.26 0.02 0 cnd:pre:2p; +renseignerons renseigner ver 20.47 24.26 0.16 0 ind:fut:1p; +renseigneront renseigner ver 20.47 24.26 0 0.2 ind:fut:3p; +renseignez renseigner ver 20.47 24.26 0.86 0.34 imp:pre:2p;ind:pre:2p; +renseignât renseigner ver 20.47 24.26 0 0.07 sub:imp:3s; +renseignèrent renseigner ver 20.47 24.26 0 0.07 ind:pas:3p; +renseigné renseigner ver m s 20.47 24.26 3.04 5.81 par:pas; +renseignée renseigner ver f s 20.47 24.26 1.23 1.62 par:pas; +renseignées renseigner ver f p 20.47 24.26 0.03 0.14 par:pas; +renseignés renseigner ver m p 20.47 24.26 0.93 2.16 par:pas; +renta renter ver 0.47 0 0.11 0 ind:pas:3s; +rentabilisation rentabilisation nom f s 0 0.07 0 0.07 +rentabilise rentabiliser ver 0.47 0.14 0.07 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rentabiliser rentabiliser ver 0.47 0.14 0.37 0.07 inf; +rentabilisé rentabiliser ver m s 0.47 0.14 0.04 0 par:pas; +rentabilisée rentabiliser ver f s 0.47 0.14 0 0.07 par:pas; +rentabilité rentabilité nom f s 0.27 0.61 0.27 0.61 +rentable rentable adj s 2.58 1.69 2.21 1.42 +rentables rentable adj p 2.58 1.69 0.36 0.27 +rentamer rentamer ver 0.01 0 0.01 0 inf; +rente rente nom f s 1.61 3.78 1.17 1.96 +renter renter ver 0.47 0 0.34 0 inf; +rentes rente nom f p 1.61 3.78 0.44 1.82 +rentier rentier nom m s 0.17 3.11 0.12 1.08 +rentiers rentier nom m p 0.17 3.11 0.05 1.42 +rentière rentier nom f s 0.17 3.11 0 0.47 +rentières rentier nom f p 0.17 3.11 0 0.14 +rentoilages rentoilage nom m p 0 0.07 0 0.07 +rentoilée rentoiler ver f s 0 0.07 0 0.07 par:pas; +rentra rentrer ver 532.51 279.93 1.11 18.51 ind:pas:3s; +rentrai rentrer ver 532.51 279.93 0.39 5.2 ind:pas:1s; +rentraient rentrer ver 532.51 279.93 1.29 6.49 ind:imp:3p;ind:pre:3p; +rentrais rentrer ver 532.51 279.93 5.36 5.95 ind:imp:1s;ind:imp:2s;ind:pre:2s; +rentrait rentrer ver 532.51 279.93 6.21 17.57 ind:imp:3s;ind:pre:3s; +rentrant rentrer ver 532.51 279.93 9.5 21.49 par:pre; +rentrante rentrant adj f s 0.04 1.01 0.01 0 +rentrantes rentrant adj f p 0.04 1.01 0 0.2 +rentrants rentrant adj m p 0.04 1.01 0 0.07 +rentre rentrer ver 532.51 279.93 151.42 41.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rentre_dedans rentre_dedans nom m 0.47 0.07 0.47 0.07 +rentrent rentrer ver 532.51 279.93 6.04 5.07 ind:pre:3p; +rentrer rentrer ver 532.51 279.93 166.36 77.23 inf; +rentrera rentrer ver 532.51 279.93 9.64 2.7 ind:fut:3s; +rentrerai rentrer ver 532.51 279.93 9.91 2.23 ind:fut:1s; +rentreraient rentrer ver 532.51 279.93 0.07 0.88 cnd:pre:3p; +rentrerais rentrer ver 532.51 279.93 1.09 0.74 cnd:pre:1s;cnd:pre:2s; +rentrerait rentrer ver 532.51 279.93 1.45 3.24 cnd:pre:3s; +rentreras rentrer ver 532.51 279.93 3.16 0.74 ind:fut:2s; +rentrerez rentrer ver 532.51 279.93 1.12 0.34 ind:fut:2p; +rentreriez rentrer ver 532.51 279.93 0.23 0.07 cnd:pre:2p; +rentrerions rentrer ver 532.51 279.93 0.07 0.41 cnd:pre:1p; +rentrerons rentrer ver 532.51 279.93 1.05 0.74 ind:fut:1p; +rentreront rentrer ver 532.51 279.93 0.98 0.68 ind:fut:3p; +rentres rentrer ver 532.51 279.93 24.9 2.36 ind:pre:2s;sub:pre:2s; +rentrez rentrer ver 532.51 279.93 31.6 2.57 imp:pre:2p;ind:pre:2p; +rentriez rentrer ver 532.51 279.93 0.61 0.68 ind:imp:2p;sub:pre:2p; +rentrions rentrer ver 532.51 279.93 0.48 2.36 ind:imp:1p; +rentrons rentrer ver 532.51 279.93 19.04 5.54 imp:pre:1p;ind:pre:1p; +rentrâmes rentrer ver 532.51 279.93 0.01 1.01 ind:pas:1p; +rentrât rentrer ver 532.51 279.93 0 0.47 sub:imp:3s; +rentrèrent rentrer ver 532.51 279.93 0.09 2.36 ind:pas:3p; +rentré rentrer ver m s 532.51 279.93 44.27 24.05 par:pas; +rentrée rentrer ver f s 532.51 279.93 25 14.66 par:pas; +rentrées rentrer ver f p 532.51 279.93 0.78 3.11 par:pas; +rentrés rentrer ver m p 532.51 279.93 9.29 8.72 par:pas; +rentée renter ver f s 0.47 0 0.02 0 par:pas; +renverra renvoyer ver 59.22 42.7 1.4 0.14 ind:fut:3s; +renverrai renvoyer ver 59.22 42.7 0.98 0.14 ind:fut:1s; +renverraient renvoyer ver 59.22 42.7 0.1 0.07 cnd:pre:3p; +renverrais renvoyer ver 59.22 42.7 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +renverrait renvoyer ver 59.22 42.7 0.27 0.2 cnd:pre:3s; +renverras renvoyer ver 59.22 42.7 0.16 0 ind:fut:2s; +renverrez renvoyer ver 59.22 42.7 0.09 0 ind:fut:2p; +renverrions renvoyer ver 59.22 42.7 0.01 0.07 cnd:pre:1p; +renverrons renvoyer ver 59.22 42.7 0.12 0.07 ind:fut:1p; +renverront renvoyer ver 59.22 42.7 0.54 0.07 ind:fut:3p; +renversa renverser ver 24.02 39.46 0.27 5.34 ind:pas:3s; +renversai renverser ver 24.02 39.46 0.01 0.07 ind:pas:1s; +renversaient renverser ver 24.02 39.46 0.02 1.01 ind:imp:3p; +renversais renverser ver 24.02 39.46 0.02 0.07 ind:imp:1s; +renversait renverser ver 24.02 39.46 0.12 2.97 ind:imp:3s; +renversant renversant adj m s 1.31 0.95 0.87 0.68 +renversante renversant adj f s 1.31 0.95 0.4 0.07 +renversantes renversant adj f p 1.31 0.95 0.04 0.2 +renverse renverser ver 24.02 39.46 1.93 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renversement renversement nom m s 0.27 2.23 0.25 1.96 +renversements renversement nom m p 0.27 2.23 0.03 0.27 +renversent renverser ver 24.02 39.46 0.1 0.54 ind:pre:3p; +renverser renverser ver 24.02 39.46 7 7.64 inf; +renversera renverser ver 24.02 39.46 0.15 0 ind:fut:3s; +renverserai renverser ver 24.02 39.46 0.16 0 ind:fut:1s; +renverserais renverser ver 24.02 39.46 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +renverserait renverser ver 24.02 39.46 0.07 0.41 cnd:pre:3s; +renverseras renverser ver 24.02 39.46 0.02 0 ind:fut:2s; +renverseront renverser ver 24.02 39.46 0.01 0.14 ind:fut:3p; +renverses renverser ver 24.02 39.46 0.48 0.2 ind:pre:2s; +renverseur renverseur nom m s 0 0.07 0 0.07 +renversez renverser ver 24.02 39.46 0.35 0.07 imp:pre:2p;ind:pre:2p; +renversons renverser ver 24.02 39.46 0.04 0.07 imp:pre:1p;ind:pre:1p; +renversât renverser ver 24.02 39.46 0 0.07 sub:imp:3s; +renversèrent renverser ver 24.02 39.46 0.01 0.2 ind:pas:3p; +renversé renverser ver m s 24.02 39.46 10.41 6.62 par:pas; +renversée renverser ver f s 24.02 39.46 2.04 4.26 par:pas; +renversées renversé adj f p 1.33 10.47 0.08 1.69 +renversés renverser ver m p 24.02 39.46 0.5 1.42 par:pas; +renvoi renvoi nom m s 3.5 4.8 3.19 3.38 +renvoie renvoyer ver 59.22 42.7 11.56 6.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +renvoient renvoyer ver 59.22 42.7 1.62 1.89 ind:pre:3p; +renvoies renvoyer ver 59.22 42.7 0.67 0.14 ind:pre:2s; +renvois renvoi nom m p 3.5 4.8 0.31 1.42 +renvoya renvoyer ver 59.22 42.7 0.17 3.58 ind:pas:3s; +renvoyai renvoyer ver 59.22 42.7 0.01 0.14 ind:pas:1s; +renvoyaient renvoyer ver 59.22 42.7 0.07 1.69 ind:imp:3p; +renvoyais renvoyer ver 59.22 42.7 0.12 0.2 ind:imp:1s;ind:imp:2s; +renvoyait renvoyer ver 59.22 42.7 0.53 5.61 ind:imp:3s; +renvoyant renvoyer ver 59.22 42.7 0.09 1.28 par:pre; +renvoyer renvoyer ver 59.22 42.7 16.45 8.45 inf; +renvoyez renvoyer ver 59.22 42.7 5.48 0.2 imp:pre:2p;ind:pre:2p; +renvoyiez renvoyer ver 59.22 42.7 0.05 0 ind:imp:2p;sub:pre:2p; +renvoyions renvoyer ver 59.22 42.7 0.02 0 ind:imp:1p; +renvoyons renvoyer ver 59.22 42.7 0.22 0 imp:pre:1p;ind:pre:1p; +renvoyât renvoyer ver 59.22 42.7 0 0.2 sub:imp:3s; +renvoyèrent renvoyer ver 59.22 42.7 0.02 0.54 ind:pas:3p; +renvoyé renvoyer ver m s 59.22 42.7 11.06 7.36 par:pas; +renvoyée renvoyer ver f s 59.22 42.7 4.71 1.96 par:pas; +renvoyées renvoyer ver f p 59.22 42.7 0.5 0.81 par:pas; +renvoyés renvoyer ver m p 59.22 42.7 2.04 1.69 par:pas; +renâcla renâcler ver 0.09 2.36 0 0.07 ind:pas:3s; +renâclaient renâcler ver 0.09 2.36 0 0.07 ind:imp:3p; +renâclais renâcler ver 0.09 2.36 0 0.2 ind:imp:1s; +renâclait renâcler ver 0.09 2.36 0.01 0.2 ind:imp:3s; +renâclant renâcler ver 0.09 2.36 0 0.54 par:pre; +renâcle renâcler ver 0.09 2.36 0.06 0.34 ind:pre:1s;ind:pre:3s; +renâclent renâcler ver 0.09 2.36 0 0.07 ind:pre:3p; +renâcler renâcler ver 0.09 2.36 0.01 0.54 inf; +renâcles renâcler ver 0.09 2.36 0 0.07 ind:pre:2s; +renâclez renâcler ver 0.09 2.36 0.01 0 ind:pre:2p; +renâclions renâcler ver 0.09 2.36 0 0.07 ind:imp:1p; +renâclé renâcler ver m s 0.09 2.36 0 0.2 par:pas; +rené renaître ver m s 7.45 13.04 1.46 1.42 par:pas; +renée renaître ver f s 7.45 13.04 0.25 0.14 par:pas; +renégat renégat nom m s 1.6 1.96 0.89 1.15 +renégate renégat nom f s 1.6 1.96 0.15 0.14 +renégats renégat nom m p 1.6 1.96 0.56 0.68 +renégociation renégociation nom f s 0.05 0 0.05 0 +renégocie renégocier ver 0.36 0 0.03 0 ind:pre:1s;ind:pre:3s; +renégocier renégocier ver 0.36 0 0.3 0 inf; +renégociées renégocier ver f p 0.36 0 0.01 0 par:pas; +renégociés renégocier ver m p 0.36 0 0.02 0 par:pas; +rep rep nom m s 0 0.07 0 0.07 +repaie repayer ver 0.23 0.41 0.01 0.07 ind:pre:3s; +repaies repayer ver 0.23 0.41 0.01 0 ind:pre:2s; +repaire repaire nom m s 3.19 3.31 3.02 2.43 +repaires repaire nom m p 3.19 3.31 0.17 0.88 +repais repaître ver 0.48 2.57 0.01 0.41 imp:pre:2s;ind:pre:1s; +repaissaient repaître ver 0.48 2.57 0.01 0.07 ind:imp:3p; +repaissais repaître ver 0.48 2.57 0 0.07 ind:imp:1s; +repaissait repaître ver 0.48 2.57 0 0.47 ind:imp:3s; +repaissant repaître ver 0.48 2.57 0.01 0 par:pre; +repaissent repaître ver 0.48 2.57 0.14 0.07 ind:pre:3p; +reparais reparaître ver 0.8 15.68 0.14 0 ind:pre:2s; +reparaissaient reparaître ver 0.8 15.68 0.01 0.74 ind:imp:3p; +reparaissait reparaître ver 0.8 15.68 0 1.28 ind:imp:3s; +reparaissant reparaître ver 0.8 15.68 0 0.41 par:pre; +reparaisse reparaître ver 0.8 15.68 0.01 0.41 sub:pre:3s; +reparaissent reparaître ver 0.8 15.68 0 0.34 ind:pre:3p; +reparaissez reparaître ver 0.8 15.68 0 0.07 ind:pre:2p; +reparaissons reparaître ver 0.8 15.68 0 0.07 ind:pre:1p; +reparaît reparaître ver 0.8 15.68 0.16 2.23 ind:pre:3s; +reparaîtra reparaître ver 0.8 15.68 0.01 0.27 ind:fut:3s; +reparaîtrait reparaître ver 0.8 15.68 0 0.07 cnd:pre:3s; +reparaître reparaître ver 0.8 15.68 0.06 3.38 inf; +reparcourant reparcourir ver 0.14 0.34 0 0.2 par:pre; +reparcourir reparcourir ver 0.14 0.34 0.13 0.07 inf; +reparcouru reparcourir ver m s 0.14 0.34 0.01 0.07 par:pas; +reparla reparler ver 19.93 8.65 0.03 0.95 ind:pas:3s; +reparlaient reparler ver 19.93 8.65 0 0.14 ind:imp:3p; +reparlais reparler ver 19.93 8.65 0.04 0.07 ind:imp:1s;ind:imp:2s; +reparlait reparler ver 19.93 8.65 0.09 0.2 ind:imp:3s; +reparlant reparler ver 19.93 8.65 0 0.07 par:pre; +reparle reparler ver 19.93 8.65 3.02 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reparlent reparler ver 19.93 8.65 0.03 0.07 ind:pre:3p; +reparler reparler ver 19.93 8.65 2.88 1.28 inf; +reparlera reparler ver 19.93 8.65 8.4 0.88 ind:fut:3s; +reparlerai reparler ver 19.93 8.65 0.33 0.41 ind:fut:1s; +reparlerez reparler ver 19.93 8.65 0.01 0 ind:fut:2p; +reparlerions reparler ver 19.93 8.65 0.03 0.07 cnd:pre:1p; +reparlerons reparler ver 19.93 8.65 2.58 1.96 ind:fut:1p; +reparles reparler ver 19.93 8.65 0.45 0.07 ind:pre:2s; +reparlez reparler ver 19.93 8.65 0.12 0.07 imp:pre:2p;ind:pre:2p; +reparliez reparler ver 19.93 8.65 0.03 0.07 ind:imp:2p; +reparlons reparler ver 19.93 8.65 0.56 0.14 imp:pre:1p;ind:pre:1p; +reparlâmes reparler ver 19.93 8.65 0 0.2 ind:pas:1p; +reparlé reparler ver m s 19.93 8.65 1.36 1.42 par:pas; +repars repartir ver 58.84 87.57 6.61 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repart repartir ver 58.84 87.57 8.08 8.11 ind:pre:3s; +repartaient repartir ver 58.84 87.57 0.16 2.57 ind:imp:3p; +repartais repartir ver 58.84 87.57 0.46 1.22 ind:imp:1s;ind:imp:2s; +repartait repartir ver 58.84 87.57 0.83 10.2 ind:imp:3s; +repartant repartir ver 58.84 87.57 0.16 1.62 par:pre; +reparte repartir ver 58.84 87.57 1.09 0.81 sub:pre:1s;sub:pre:3s; +repartent repartir ver 58.84 87.57 1.53 1.89 ind:pre:3p; +repartes repartir ver 58.84 87.57 0.24 0.2 sub:pre:2s; +repartez repartir ver 58.84 87.57 1.58 0.68 imp:pre:2p;ind:pre:2p; +reparti repartir ver m s 58.84 87.57 9.19 9.05 par:pas; +repartie repartir ver f s 58.84 87.57 2.54 3.72 par:pas; +reparties repartir ver f p 58.84 87.57 0.07 0.41 par:pas; +repartiez repartir ver 58.84 87.57 0.13 0.07 ind:imp:2p; +repartions repartir ver 58.84 87.57 0.05 0.74 ind:imp:1p; +repartir repartir ver 58.84 87.57 19.56 22.91 inf; +repartira repartir ver 58.84 87.57 0.89 0.54 ind:fut:3s; +repartirai repartir ver 58.84 87.57 0.66 0.41 ind:fut:1s; +repartiraient repartir ver 58.84 87.57 0.03 0.07 cnd:pre:3p; +repartirais repartir ver 58.84 87.57 0.19 0.41 cnd:pre:1s;cnd:pre:2s; +repartirait repartir ver 58.84 87.57 0.06 0.41 cnd:pre:3s; +repartiras repartir ver 58.84 87.57 0.55 0.47 ind:fut:2s; +repartirent repartir ver 58.84 87.57 0.01 1.55 ind:pas:3p; +repartirez repartir ver 58.84 87.57 0.46 0.2 ind:fut:2p; +repartirons repartir ver 58.84 87.57 0.21 0.41 ind:fut:1p; +repartiront repartir ver 58.84 87.57 0.2 0.14 ind:fut:3p; +repartis repartir ver m p 58.84 87.57 1.52 3.65 ind:pas:1s;par:pas; +repartisse repartir ver 58.84 87.57 0 0.07 sub:imp:1s; +repartit repartir ver 58.84 87.57 0.36 10.14 ind:pas:3s; +repartons repartir ver 58.84 87.57 1.4 1.89 imp:pre:1p;ind:pre:1p; +repartîmes repartir ver 58.84 87.57 0.01 0.41 ind:pas:1p; +repartît repartir ver 58.84 87.57 0.01 0.2 sub:imp:3s; +reparu reparaître ver m s 0.8 15.68 0.32 2.64 par:pas; +reparue reparaître ver f s 0.8 15.68 0 0.14 par:pas; +reparurent reparaître ver 0.8 15.68 0 0.27 ind:pas:3p; +reparut reparaître ver 0.8 15.68 0.1 3.18 ind:pas:3s; +reparût reparaître ver 0.8 15.68 0 0.2 sub:imp:3s; +repas repas nom m 48.53 76.62 48.53 76.62 +repassa repasser ver 26.91 34.19 0 1.49 ind:pas:3s; +repassage repassage nom m s 1.06 2.03 1.05 1.82 +repassages repassage nom m p 1.06 2.03 0.01 0.2 +repassai repasser ver 26.91 34.19 0 0.61 ind:pas:1s; +repassaient repasser ver 26.91 34.19 0.02 1.15 ind:imp:3p; +repassais repasser ver 26.91 34.19 0.13 0.47 ind:imp:1s;ind:imp:2s; +repassait repasser ver 26.91 34.19 0.21 3.45 ind:imp:3s; +repassant repasser ver 26.91 34.19 0.31 1.96 par:pre; +repasse repasser ver 26.91 34.19 6.34 4.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repassent repasser ver 26.91 34.19 0.37 1.15 ind:pre:3p; +repasser repasser ver 26.91 34.19 7.27 9.39 inf; +repassera repasser ver 26.91 34.19 0.73 0.81 ind:fut:3s; +repasserai repasser ver 26.91 34.19 4.89 1.01 ind:fut:1s; +repasseraient repasser ver 26.91 34.19 0.01 0.14 cnd:pre:3p; +repasserais repasser ver 26.91 34.19 0.18 0 cnd:pre:1s;cnd:pre:2s; +repasserait repasser ver 26.91 34.19 0.03 0.47 cnd:pre:3s; +repasseras repasser ver 26.91 34.19 0.11 0.41 ind:fut:2s; +repasserez repasser ver 26.91 34.19 0.25 0.47 ind:fut:2p; +repasserons repasser ver 26.91 34.19 0.07 0 ind:fut:1p; +repasseront repasser ver 26.91 34.19 0.12 0.14 ind:fut:3p; +repasses repasser ver 26.91 34.19 0.6 0.07 ind:pre:2s; +repasseur repasseur nom m s 0 0.68 0 0.41 +repasseuse repasseur nom f s 0 0.68 0 0.2 +repasseuses repasseur nom f p 0 0.68 0 0.07 +repassez repasser ver 26.91 34.19 1.85 0.41 imp:pre:2p;ind:pre:2p; +repassiez repasser ver 26.91 34.19 0.03 0 ind:imp:2p; +repassions repasser ver 26.91 34.19 0.03 0.14 ind:imp:1p; +repassons repasser ver 26.91 34.19 0.22 0.07 imp:pre:1p;ind:pre:1p; +repassé repasser ver m s 26.91 34.19 1.79 3.51 par:pas; +repassée repasser ver f s 26.91 34.19 0.52 1.15 par:pas; +repassées repasser ver f p 26.91 34.19 0.14 0.34 par:pas; +repassés repasser ver m p 26.91 34.19 0.7 0.95 par:pas; +repavage repavage nom m s 0.04 0 0.04 0 +repaver repaver ver 0.01 0.07 0.01 0 inf; +repavé repaver ver m s 0.01 0.07 0 0.07 par:pas; +repayais repayer ver 0.23 0.41 0 0.07 ind:imp:1s; +repayait repayer ver 0.23 0.41 0 0.07 ind:imp:3s; +repaye repayer ver 0.23 0.41 0 0.07 ind:pre:1s; +repayer repayer ver 0.23 0.41 0.21 0 inf;; +repayé repayer ver m s 0.23 0.41 0 0.07 par:pas; +repaît repaître ver 0.48 2.57 0.12 0.07 ind:pre:3s; +repaître repaître ver 0.48 2.57 0.2 1.42 inf; +repeigna repeigner ver 0.35 1.35 0 0.07 ind:pas:3s; +repeignais repeigner ver 0.35 1.35 0.01 0.14 ind:imp:1s; +repeignait repeigner ver 0.35 1.35 0.01 0.41 ind:imp:3s; +repeignant repeigner ver 0.35 1.35 0.02 0 par:pre; +repeigne repeigner ver 0.35 1.35 0.06 0.14 ind:pre:1s;ind:pre:3s; +repeignent repeigner ver 0.35 1.35 0.19 0.27 ind:pre:3p; +repeignez repeigner ver 0.35 1.35 0.06 0 imp:pre:2p;ind:pre:2p; +repeignit repeindre ver 5.05 6.96 0 0.07 ind:pas:3s; +repeigné repeigner ver m s 0.35 1.35 0 0.07 par:pas; +repeignée repeigner ver f s 0.35 1.35 0 0.2 par:pas; +repeignées repeigner ver f p 0.35 1.35 0 0.07 par:pas; +repeindra repeindre ver 5.05 6.96 0.03 0 ind:fut:3s; +repeindrai repeindre ver 5.05 6.96 0.01 0 ind:fut:1s; +repeindrait repeindre ver 5.05 6.96 0.25 0 cnd:pre:3s; +repeindre repeindre ver 5.05 6.96 2.79 2.7 inf; +repeins repeindre ver 5.05 6.96 0.29 0 imp:pre:2s;ind:pre:1s; +repeint repeindre ver m s 5.05 6.96 1.46 1.35 ind:pre:3s;par:pas; +repeinte repeindre ver f s 5.05 6.96 0.2 1.69 par:pas; +repeintes repeindre ver f p 5.05 6.96 0.02 0.61 par:pas; +repeints repeindre ver m p 5.05 6.96 0.01 0.54 par:pas; +rependra rependre ver 0.38 0.14 0 0.07 ind:fut:3s; +rependre rependre ver 0.38 0.14 0.22 0 inf; +repends rependre ver 0.38 0.14 0.15 0 imp:pre:2s;ind:pre:1s; +rependu rependre ver m s 0.38 0.14 0.01 0 par:pas; +rependus rependre ver m p 0.38 0.14 0 0.07 par:pas; +repens repentir ver 9.49 6.28 1.47 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repensa repenser ver 9.68 12.16 0.01 0.95 ind:pas:3s; +repensai repenser ver 9.68 12.16 0.02 0.74 ind:pas:1s; +repensais repenser ver 9.68 12.16 0.56 0.81 ind:imp:1s; +repensait repenser ver 9.68 12.16 0.26 0.88 ind:imp:3s; +repensant repenser ver 9.68 12.16 0.98 1.01 par:pre; +repense repenser ver 9.68 12.16 2.91 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +repensent repenser ver 9.68 12.16 0.01 0.07 ind:pre:3p; +repenser repenser ver 9.68 12.16 1.74 2.36 inf; +repensera repenser ver 9.68 12.16 0.13 0.07 ind:fut:3s; +repenserai repenser ver 9.68 12.16 0.02 0 ind:fut:1s; +repenserais repenser ver 9.68 12.16 0.08 0 cnd:pre:1s;cnd:pre:2s; +repenserez repenser ver 9.68 12.16 0.03 0.14 ind:fut:2p; +repenses repenser ver 9.68 12.16 0.55 0.07 ind:pre:2s;sub:pre:2s; +repensez repenser ver 9.68 12.16 0.22 0 imp:pre:2p;ind:pre:2p; +repensons repenser ver 9.68 12.16 0.02 0 imp:pre:1p; +repensé repenser ver m s 9.68 12.16 2.12 1.55 par:pas; +repensée repenser ver f s 9.68 12.16 0.01 0 par:pas; +repent repentir ver 9.49 6.28 0.96 0.34 ind:pre:3s; +repentaient repentir ver 9.49 6.28 0 0.07 ind:imp:3p; +repentait repentir ver 9.49 6.28 0 0.61 ind:imp:3s; +repentance repentance nom f s 0.15 0.2 0.15 0.2 +repentant repentir ver 9.49 6.28 0.13 0.07 par:pre; +repentante repentant adj f s 0.17 0.74 0.02 0.41 +repentantes repentant adj f p 0.17 0.74 0 0.07 +repentants repentant adj m p 0.17 0.74 0.12 0.07 +repentent repentir ver 9.49 6.28 0.02 0.14 ind:pre:3p; +repentez repentir ver 9.49 6.28 0.8 0.34 imp:pre:2p;ind:pre:2p; +repenti repenti adj m s 0.84 1.15 0.76 0.61 +repentie repentir ver f s 9.49 6.28 0.05 0.2 par:pas; +repenties repenti adj f p 0.84 1.15 0 0.14 +repentir repentir ver 9.49 6.28 3.59 2.5 inf; +repentira repentir ver 9.49 6.28 0.34 0.07 ind:fut:3s; +repentirai repentir ver 9.49 6.28 0.25 0.14 ind:fut:1s; +repentirais repentir ver 9.49 6.28 0 0.07 cnd:pre:2s; +repentiras repentir ver 9.49 6.28 0.76 0 ind:fut:2s; +repentirez repentir ver 9.49 6.28 0.56 0.14 ind:fut:2p; +repentirs repentir nom m p 2.59 5.2 0 0.61 +repentis repenti adj m p 0.84 1.15 0.07 0.27 +repentisse repentir ver 9.49 6.28 0.01 0 sub:imp:1s; +repentissent repentir ver 9.49 6.28 0.01 0.07 sub:imp:3p; +repentit repentir ver 9.49 6.28 0.02 0.2 ind:pas:3s; +repentons repentir ver 9.49 6.28 0.02 0 imp:pre:1p;ind:pre:1p; +reperdaient reperdre ver 0.32 0.88 0 0.07 ind:imp:3p; +reperdais reperdre ver 0.32 0.88 0 0.07 ind:imp:1s; +reperdons reperdre ver 0.32 0.88 0 0.07 imp:pre:1p; +reperdre reperdre ver 0.32 0.88 0.16 0.14 inf; +reperds reperdre ver 0.32 0.88 0.01 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reperdu reperdre ver m s 0.32 0.88 0.15 0.2 par:pas; +reperdue reperdre ver f s 0.32 0.88 0 0.14 par:pas; +reperdues reperdre ver f p 0.32 0.88 0 0.07 par:pas; +repeuplaient repeupler ver 0.62 0.74 0 0.07 ind:imp:3p; +repeuplait repeupler ver 0.62 0.74 0 0.07 ind:imp:3s; +repeuple repeupler ver 0.62 0.74 0.28 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repeuplement repeuplement nom m s 0.01 0 0.01 0 +repeupler repeupler ver 0.62 0.74 0.32 0.07 inf; +repeuplée repeupler ver f s 0.62 0.74 0.01 0.27 par:pas; +repeuplées repeupler ver f p 0.62 0.74 0 0.07 par:pas; +repincer repincer ver 0.15 0.27 0.15 0.07 inf; +repincé repincer ver m s 0.15 0.27 0 0.2 par:pas; +repiqua repiquer ver 0.53 2.09 0 0.27 ind:pas:3s; +repiquage repiquage nom m s 0.1 0.61 0.1 0.61 +repiquaient repiquer ver 0.53 2.09 0 0.07 ind:imp:3p; +repiquait repiquer ver 0.53 2.09 0 0.2 ind:imp:3s; +repique repiquer ver 0.53 2.09 0.16 0.68 ind:pre:1s;ind:pre:3s; +repiquer repiquer ver 0.53 2.09 0.07 0.47 inf; +repiquerai repiquer ver 0.53 2.09 0 0.07 ind:fut:1s; +repiqué repiquer ver m s 0.53 2.09 0.3 0.27 par:pas; +repiquées repiquer ver f p 0.53 2.09 0 0.07 par:pas; +replace replacer ver 1.54 7.7 0.32 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +replacement replacement nom m s 0.02 0 0.02 0 +replacent replacer ver 1.54 7.7 0.02 0 ind:pre:3p; +replacer replacer ver 1.54 7.7 0.41 2.36 inf; +replacerai replacer ver 1.54 7.7 0.02 0 ind:fut:1s; +replacerez replacer ver 1.54 7.7 0.01 0 ind:fut:2p; +replacez replacer ver 1.54 7.7 0.26 0.07 imp:pre:2p; +replacèrent replacer ver 1.54 7.7 0 0.07 ind:pas:3p; +replacé replacer ver m s 1.54 7.7 0.39 1.01 par:pas; +replacée replacer ver f s 1.54 7.7 0.05 0.07 par:pas; +replacés replacer ver m p 1.54 7.7 0.02 0.2 par:pas; +replanta replanter ver 0.25 1.69 0 0.07 ind:pas:3s; +replantait replanter ver 0.25 1.69 0 0.2 ind:imp:3s; +replantation replantation nom f s 0 0.07 0 0.07 +replante replanter ver 0.25 1.69 0 0.14 ind:pre:3s; +replantent replanter ver 0.25 1.69 0 0.07 ind:pre:3p; +replanter replanter ver 0.25 1.69 0.21 0.47 inf; +replantez replanter ver 0.25 1.69 0 0.07 imp:pre:2p; +replanté replanter ver m s 0.25 1.69 0 0.14 par:pas; +replantée replanter ver f s 0.25 1.69 0.01 0.27 par:pas; +replantées replanter ver f p 0.25 1.69 0.01 0.2 par:pas; +replantés replanter ver m p 0.25 1.69 0.02 0.07 par:pas; +replat replat nom m s 0.16 0.61 0.16 0.54 +replats replat nom m p 0.16 0.61 0 0.07 +replaça replacer ver 1.54 7.7 0.01 1.22 ind:pas:3s; +replaçaient replacer ver 1.54 7.7 0 0.14 ind:imp:3p; +replaçais replacer ver 1.54 7.7 0 0.14 ind:imp:1s; +replaçait replacer ver 1.54 7.7 0.02 0.61 ind:imp:3s; +replaçant replacer ver 1.54 7.7 0 0.74 par:pre; +replaçons replacer ver 1.54 7.7 0.01 0.14 imp:pre:1p;ind:pre:1p; +replet replet adj m s 0.14 1.62 0.03 0.74 +replets replet adj m p 0.14 1.62 0 0.14 +repli repli nom m s 1.4 10.14 1.12 5.88 +replia replier ver 6.78 33.18 0 3.31 ind:pas:3s; +repliai replier ver 6.78 33.18 0 0.14 ind:pas:1s; +repliaient replier ver 6.78 33.18 0.01 0.47 ind:imp:3p; +repliais replier ver 6.78 33.18 0.1 0.14 ind:imp:1s; +repliait replier ver 6.78 33.18 0.12 2.23 ind:imp:3s; +repliant replier ver 6.78 33.18 0.11 0.95 par:pre; +replie replier ver 6.78 33.18 1.42 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repliement repliement nom m s 0.01 0.54 0.01 0.54 +replient replier ver 6.78 33.18 0.28 0.47 ind:pre:3p; +replier replier ver 6.78 33.18 1.56 3.31 inf; +repliera replier ver 6.78 33.18 0.02 0 ind:fut:3s; +replierai replier ver 6.78 33.18 0.02 0 ind:fut:1s; +replierez replier ver 6.78 33.18 0 0.07 ind:fut:2p; +replierons replier ver 6.78 33.18 0.04 0 ind:fut:1p; +replieront replier ver 6.78 33.18 0.01 0 ind:fut:3p; +replies replier ver 6.78 33.18 0.02 0.14 ind:pre:2s; +repliez replier ver 6.78 33.18 1.81 0.07 imp:pre:2p;ind:pre:2p; +replions replier ver 6.78 33.18 0.13 0.14 imp:pre:1p;ind:pre:1p; +replis repli nom m p 1.4 10.14 0.28 4.26 +repliât replier ver 6.78 33.18 0 0.14 sub:imp:3s; +replièrent replier ver 6.78 33.18 0.01 0.34 ind:pas:3p; +replié replier ver m s 6.78 33.18 0.37 7.91 par:pas; +repliée replier ver f s 6.78 33.18 0.23 3.04 par:pas; +repliées replier ver f p 6.78 33.18 0.21 3.65 par:pas; +repliés replier ver m p 6.78 33.18 0.29 4.12 par:pas; +replonge replonger ver 2.14 11.08 0.5 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +replongea replonger ver 2.14 11.08 0.01 1.42 ind:pas:3s; +replongeai replonger ver 2.14 11.08 0.01 0.2 ind:pas:1s; +replongeaient replonger ver 2.14 11.08 0 0.07 ind:imp:3p; +replongeais replonger ver 2.14 11.08 0.16 0.68 ind:imp:1s;ind:imp:2s; +replongeait replonger ver 2.14 11.08 0.02 0.81 ind:imp:3s; +replongeant replonger ver 2.14 11.08 0 0.68 par:pre; +replongent replonger ver 2.14 11.08 0.02 0.41 ind:pre:3p; +replonger replonger ver 2.14 11.08 0.86 2.97 inf; +replongera replonger ver 2.14 11.08 0.01 0.07 ind:fut:3s; +replongerai replonger ver 2.14 11.08 0.02 0.07 ind:fut:1s; +replongerais replonger ver 2.14 11.08 0.01 0 cnd:pre:2s; +replongerait replonger ver 2.14 11.08 0.02 0.2 cnd:pre:3s; +replonges replonger ver 2.14 11.08 0.06 0.2 ind:pre:2s;sub:pre:2s; +replongiez replonger ver 2.14 11.08 0.01 0 ind:imp:2p; +replongé replonger ver m s 2.14 11.08 0.42 1.35 par:pas; +replongée replonger ver f s 2.14 11.08 0 0.54 par:pas; +replongées replonger ver f p 2.14 11.08 0 0.07 par:pas; +replongés replonger ver m p 2.14 11.08 0 0.07 par:pas; +reployait reployer ver 0 0.07 0 0.07 ind:imp:3s; +replâtra replâtrer ver 0.03 0.81 0 0.14 ind:pas:3s; +replâtrage replâtrage nom m s 0 0.34 0 0.34 +replâtraient replâtrer ver 0.03 0.81 0 0.07 ind:imp:3p; +replâtrer replâtrer ver 0.03 0.81 0.01 0.14 inf; +replâtrerait replâtrer ver 0.03 0.81 0 0.07 cnd:pre:3s; +replâtré replâtrer ver m s 0.03 0.81 0 0.14 par:pas; +replâtrée replâtrer ver f s 0.03 0.81 0.01 0.2 par:pas; +replâtrées replâtrer ver f p 0.03 0.81 0 0.07 par:pas; +replète replet adj f s 0.14 1.62 0.11 0.68 +replètes replet adj f p 0.14 1.62 0 0.07 +report report nom m s 1.03 0.27 0.61 0.14 +reporta reporter ver 5.32 7.7 0.03 0.88 ind:pas:3s; +reportage reportage nom m s 11.16 7.16 10.07 5.07 +reportage_vérité reportage_vérité nom m s 0 0.14 0 0.14 +reportages reportage nom m p 11.16 7.16 1.09 2.09 +reportait reporter ver 5.32 7.7 0.03 0.81 ind:imp:3s; +reportant reporter ver 5.32 7.7 0.01 0.61 par:pre; +reporte reporter ver 5.32 7.7 0.57 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reportent reporter ver 5.32 7.7 0.09 0.07 ind:pre:3p; +reporter reporter nom m s 5.12 3.04 3.01 1.49 +reportera reporter ver 5.32 7.7 0.04 0 ind:fut:3s; +reporterai reporter ver 5.32 7.7 0.02 0 ind:fut:1s; +reporterait reporter ver 5.32 7.7 0.01 0.07 cnd:pre:3s; +reporters reporter nom m p 5.12 3.04 2.11 1.55 +reportez reporter ver 5.32 7.7 0.38 0.07 imp:pre:2p;ind:pre:2p; +reportons reporter ver 5.32 7.7 0.07 0.07 imp:pre:1p;ind:pre:1p; +reports report nom m p 1.03 0.27 0.43 0.14 +reportèrent reporter ver 5.32 7.7 0 0.14 ind:pas:3p; +reporté reporter ver m s 5.32 7.7 0.9 1.69 par:pas; +reportée reporter ver f s 5.32 7.7 0.74 0.47 par:pas; +reportées reporter ver f p 5.32 7.7 0.03 0.14 par:pas; +reportés reporter ver m p 5.32 7.7 0.05 0.14 par:pas; +repos repos nom m 42.29 43.58 42.29 43.58 +reposa reposer ver 95.2 83.92 0.03 7.16 ind:pas:3s; +reposai reposer ver 95.2 83.92 0 0.41 ind:pas:1s; +reposaient reposer ver 95.2 83.92 0.07 5 ind:imp:3p; +reposais reposer ver 95.2 83.92 0.58 0.41 ind:imp:1s;ind:imp:2s; +reposait reposer ver 95.2 83.92 1.05 15.41 ind:imp:3s; +reposant reposant adj m s 1.14 3.58 0.84 1.96 +reposante reposant adj f s 1.14 3.58 0.25 1.28 +reposantes reposant adj f p 1.14 3.58 0.04 0.27 +reposants reposant adj m p 1.14 3.58 0.02 0.07 +repose reposer ver 95.2 83.92 33.27 14.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +repose_pied repose_pied nom m s 0.02 0.07 0.01 0 +repose_pied repose_pied nom m p 0.02 0.07 0.01 0.07 +reposent reposer ver 95.2 83.92 3.26 4.39 ind:pre:3p; +reposer reposer ver 95.2 83.92 39.81 20.95 inf;;inf;;inf;; +reposera reposer ver 95.2 83.92 1.06 0.47 ind:fut:3s; +reposerai reposer ver 95.2 83.92 0.24 0.14 ind:fut:1s; +reposeraient reposer ver 95.2 83.92 0 0.07 cnd:pre:3p; +reposerais reposer ver 95.2 83.92 0.07 0 cnd:pre:1s;cnd:pre:2s; +reposerait reposer ver 95.2 83.92 0.01 0.54 cnd:pre:3s; +reposeras reposer ver 95.2 83.92 0.55 0.27 ind:fut:2s; +reposerez reposer ver 95.2 83.92 0.28 0 ind:fut:2p; +reposerions reposer ver 95.2 83.92 0 0.07 cnd:pre:1p; +reposerons reposer ver 95.2 83.92 0.37 0.14 ind:fut:1p; +reposeront reposer ver 95.2 83.92 0.18 0.07 ind:fut:3p; +reposes reposer ver 95.2 83.92 2.45 0.34 ind:pre:2s;sub:pre:2s; +reposez reposer ver 95.2 83.92 7.81 0.74 imp:pre:2p;ind:pre:2p; +reposiez reposer ver 95.2 83.92 0.39 0 ind:imp:2p; +reposions reposer ver 95.2 83.92 0.05 0.2 ind:imp:1p; +repositionnent repositionner ver 0.2 0 0.03 0 ind:pre:3p; +repositionner repositionner ver 0.2 0 0.17 0 inf; +repositionnez repositionner ver 0.2 0 0.01 0 imp:pre:2p; +reposoir reposoir nom m s 0.17 1.01 0.17 0.81 +reposoirs reposoir nom m p 0.17 1.01 0 0.2 +reposons reposer ver 95.2 83.92 1.04 0.27 imp:pre:1p;ind:pre:1p; +reposséder reposséder ver 0.03 0 0.03 0 inf; +repostait reposter ver 0 0.07 0 0.07 ind:imp:3s; +reposât reposer ver 95.2 83.92 0 0.14 sub:imp:3s; +reposèrent reposer ver 95.2 83.92 0 0.41 ind:pas:3p; +reposé reposer ver m s 95.2 83.92 0.76 3.38 par:pas; +reposée reposer ver f s 95.2 83.92 1.16 1.62 par:pas; +reposées reposer ver f p 95.2 83.92 0.03 0.27 par:pas; +reposés reposer ver m p 95.2 83.92 0.29 0.61 par:pas; +repoudraient repoudrer ver 0.43 0.41 0 0.07 ind:imp:3p; +repoudrait repoudrer ver 0.43 0.41 0 0.14 ind:imp:3s; +repoudrant repoudrer ver 0.43 0.41 0 0.14 par:pre; +repoudre repoudrer ver 0.43 0.41 0.04 0 imp:pre:2s;ind:pre:1s; +repoudrer repoudrer ver 0.43 0.41 0.37 0 inf; +repoudré repoudrer ver m s 0.43 0.41 0.02 0 par:pas; +repoudrée repoudrer ver f s 0.43 0.41 0 0.07 par:pas; +repoussa repousser ver 22.62 63.45 0.03 11.15 ind:pas:3s; +repoussage repoussage nom m s 0.02 0 0.02 0 +repoussai repousser ver 22.62 63.45 0.01 1.01 ind:pas:1s; +repoussaient repousser ver 22.62 63.45 0.06 1.49 ind:imp:3p; +repoussais repousser ver 22.62 63.45 0.13 0.74 ind:imp:1s;ind:imp:2s; +repoussait repousser ver 22.62 63.45 0.22 6.22 ind:imp:3s; +repoussant repoussant adj m s 2.29 2.57 1.33 1.22 +repoussante repoussant adj f s 2.29 2.57 0.87 0.81 +repoussantes repoussant adj f p 2.29 2.57 0.03 0.14 +repoussants repoussant adj m p 2.29 2.57 0.07 0.41 +repousse repousser ver 22.62 63.45 6.53 9.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repoussent repousser ver 22.62 63.45 0.59 0.95 ind:pre:3p; +repousser repousser ver 22.62 63.45 6.14 12.03 inf; +repoussera repousser ver 22.62 63.45 0.79 0.07 ind:fut:3s; +repousserai repousser ver 22.62 63.45 0.04 0.07 ind:fut:1s; +repousseraient repousser ver 22.62 63.45 0.01 0.41 cnd:pre:3p; +repousserais repousser ver 22.62 63.45 0.18 0 cnd:pre:1s;cnd:pre:2s; +repousserait repousser ver 22.62 63.45 0.17 0.14 cnd:pre:3s; +repousserons repousser ver 22.62 63.45 0.14 0.07 ind:fut:1p; +repousseront repousser ver 22.62 63.45 0.42 0.27 ind:fut:3p; +repousses repousser ver 22.62 63.45 0.51 0.07 ind:pre:2s; +repoussez repousser ver 22.62 63.45 0.96 0.07 imp:pre:2p;ind:pre:2p; +repoussions repousser ver 22.62 63.45 0.03 0.07 ind:imp:1p; +repoussoir repoussoir nom m s 0.01 0.68 0 0.47 +repoussoirs repoussoir nom m p 0.01 0.68 0.01 0.2 +repoussons repousser ver 22.62 63.45 0.15 0.07 imp:pre:1p;ind:pre:1p; +repoussâmes repousser ver 22.62 63.45 0 0.14 ind:pas:1p; +repoussât repousser ver 22.62 63.45 0 0.07 sub:imp:3s; +repoussèrent repousser ver 22.62 63.45 0.05 0.41 ind:pas:3p; +repoussé repousser ver m s 22.62 63.45 3.31 7.36 par:pas; +repoussée repousser ver f s 22.62 63.45 1.01 2.3 par:pas; +repoussées repousser ver f p 22.62 63.45 0.13 0.68 par:pas; +repoussés repousser ver m p 22.62 63.45 0.62 1.42 par:pas; +reprenaient reprendre ver 126.92 340.14 0.14 5.88 ind:imp:3p; +reprenais reprendre ver 126.92 340.14 0.4 3.18 ind:imp:1s;ind:imp:2s; +reprenait reprendre ver 126.92 340.14 0.75 27.36 ind:imp:3s; +reprenant reprendre ver 126.92 340.14 0.35 13.92 par:pre; +reprend reprendre ver 126.92 340.14 14.24 31.35 ind:pre:3s; +reprendra reprendre ver 126.92 340.14 4.04 2.03 ind:fut:3s; +reprendrai reprendre ver 126.92 340.14 1.86 1.01 ind:fut:1s; +reprendraient reprendre ver 126.92 340.14 0.32 0.68 cnd:pre:3p; +reprendrais reprendre ver 126.92 340.14 0.67 0.47 cnd:pre:1s;cnd:pre:2s; +reprendrait reprendre ver 126.92 340.14 0.17 2.36 cnd:pre:3s; +reprendras reprendre ver 126.92 340.14 0.49 0.07 ind:fut:2s; +reprendre reprendre ver 126.92 340.14 36.98 67.7 inf; +reprendrez reprendre ver 126.92 340.14 0.72 0.47 ind:fut:2p; +reprendriez reprendre ver 126.92 340.14 0.02 0.07 cnd:pre:2p; +reprendrions reprendre ver 126.92 340.14 0.01 0.14 cnd:pre:1p; +reprendrons reprendre ver 126.92 340.14 1.88 0.88 ind:fut:1p; +reprendront reprendre ver 126.92 340.14 0.89 0.34 ind:fut:3p; +reprends reprendre ver 126.92 340.14 20.08 7.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repreneur repreneur nom m s 0.04 0.07 0.03 0 +repreneurs repreneur nom m p 0.04 0.07 0.01 0.07 +reprenez reprendre ver 126.92 340.14 9.97 1.15 imp:pre:2p;ind:pre:2p; +repreniez reprendre ver 126.92 340.14 0.53 0.14 ind:imp:2p; +reprenions reprendre ver 126.92 340.14 0.2 0.68 ind:imp:1p; +reprenne reprendre ver 126.92 340.14 3.42 4.12 sub:pre:1s;sub:pre:3s; +reprennent reprendre ver 126.92 340.14 3.13 5.54 ind:pre:3p; +reprennes reprendre ver 126.92 340.14 0.93 0.27 sub:pre:2s; +reprenons reprendre ver 126.92 340.14 5.6 2.09 imp:pre:1p;ind:pre:1p;inf; +reprirent reprendre ver 126.92 340.14 0.12 6.49 ind:pas:3p; +repris reprendre ver m 126.92 340.14 16.65 51.55 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +reprisaient repriser ver 0.64 4.66 0 0.07 ind:imp:3p; +reprisait repriser ver 0.64 4.66 0.01 0.74 ind:imp:3s; +reprisant repriser ver 0.64 4.66 0.01 0.14 par:pre; +reprise reprise nom f s 6.23 36.42 2.27 8.38 +reprisent repriser ver 0.64 4.66 0.01 0.07 ind:pre:3p; +repriser repriser ver 0.64 4.66 0.25 1.76 inf; +reprises reprise nom f p 6.23 36.42 3.96 28.04 +reprisse reprendre ver 126.92 340.14 0 0.07 sub:imp:1s; +reprissent reprendre ver 126.92 340.14 0 0.14 sub:imp:3p; +reprisé repriser ver m s 0.64 4.66 0.01 0.74 par:pas; +reprisée repriser ver f s 0.64 4.66 0.01 0.2 par:pas; +reprisées repriser ver f p 0.64 4.66 0 0.27 par:pas; +reprisés repriser ver m p 0.64 4.66 0 0.41 par:pas; +reprit reprendre ver 126.92 340.14 0.52 96.01 ind:pas:3s; +reprocha reprocher ver 19.85 44.73 0.04 2.3 ind:pas:3s; +reprochai reprocher ver 19.85 44.73 0 0.61 ind:pas:1s; +reprochaient reprocher ver 19.85 44.73 0.01 1.01 ind:imp:3p; +reprochais reprocher ver 19.85 44.73 0.17 1.69 ind:imp:1s;ind:imp:2s; +reprochait reprocher ver 19.85 44.73 0.54 10.27 ind:imp:3s; +reprochant reprocher ver 19.85 44.73 0.01 1.01 par:pre; +reproche reprocher ver 19.85 44.73 5.05 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +reprochent reprocher ver 19.85 44.73 0.2 0.54 ind:pre:3p; +reprocher reprocher ver 19.85 44.73 7.53 11.76 inf; +reprochera reprocher ver 19.85 44.73 0.48 0.34 ind:fut:3s; +reprocherai reprocher ver 19.85 44.73 0.39 0 ind:fut:1s; +reprocherais reprocher ver 19.85 44.73 0.05 0.27 cnd:pre:1s; +reprocherait reprocher ver 19.85 44.73 0.2 0.47 cnd:pre:3s; +reprocheras reprocher ver 19.85 44.73 0.13 0.14 ind:fut:2s; +reprocheriez reprocher ver 19.85 44.73 0.01 0.14 cnd:pre:2p; +reprocherons reprocher ver 19.85 44.73 0 0.07 ind:fut:1p; +reprocheront reprocher ver 19.85 44.73 0.03 0.07 ind:fut:3p; +reproches reproche nom m p 6.01 30.68 3.13 13.31 +reprochez reprocher ver 19.85 44.73 1.21 1.08 imp:pre:2p;ind:pre:2p; +reprochiez reprocher ver 19.85 44.73 0.05 0 ind:imp:2p; +reprochions reprocher ver 19.85 44.73 0 0.34 ind:imp:1p; +reprochons reprocher ver 19.85 44.73 0.1 0.07 ind:pre:1p; +reprochât reprocher ver 19.85 44.73 0 0.2 sub:imp:3s; +reprochèrent reprocher ver 19.85 44.73 0 0.07 ind:pas:3p; +reproché reprocher ver m s 19.85 44.73 1.26 3.58 par:pas; +reprochée reprocher ver f s 19.85 44.73 0.07 0.2 par:pas; +reprochées reprocher ver f p 19.85 44.73 0.01 0.2 par:pas; +reprochés reprocher ver m p 19.85 44.73 0.24 0.68 par:pas; +reproducteur reproducteur nom m s 0.63 0.27 0.29 0.14 +reproducteurs reproducteur nom m p 0.63 0.27 0.23 0 +reproductible reproductible adj m s 0 0.07 0 0.07 +reproductif reproductif adj m s 0.15 0.2 0.12 0.2 +reproductifs reproductif adj m p 0.15 0.2 0.02 0 +reproduction reproduction nom f s 4.24 7.97 4.08 5.34 +reproductions reproduction nom f p 4.24 7.97 0.16 2.64 +reproductive reproductif adj f s 0.15 0.2 0.01 0 +reproductrice reproducteur adj f s 0.2 0.27 0.03 0.07 +reproductrices reproducteur nom f p 0.63 0.27 0.1 0 +reproduira reproduire ver 16.3 16.01 4.27 0.41 ind:fut:3s; +reproduirai reproduire ver 16.3 16.01 0.05 0.14 ind:fut:1s; +reproduiraient reproduire ver 16.3 16.01 0 0.07 cnd:pre:3p; +reproduirait reproduire ver 16.3 16.01 0.23 0.14 cnd:pre:3s; +reproduire reproduire ver 16.3 16.01 4.68 4.73 inf; +reproduirons reproduire ver 16.3 16.01 0.02 0 ind:fut:1p; +reproduiront reproduire ver 16.3 16.01 0.2 0.14 ind:fut:3p; +reproduis reproduire ver 16.3 16.01 0.39 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reproduisaient reproduire ver 16.3 16.01 0.04 0.34 ind:imp:3p; +reproduisait reproduire ver 16.3 16.01 0.11 1.55 ind:imp:3s; +reproduisant reproduire ver 16.3 16.01 0.13 1.49 par:pre; +reproduise reproduire ver 16.3 16.01 1.7 0.27 sub:pre:1s;sub:pre:3s; +reproduisent reproduire ver 16.3 16.01 1.03 0.95 ind:pre:3p; +reproduisez reproduire ver 16.3 16.01 0.02 0 imp:pre:2p; +reproduisirent reproduire ver 16.3 16.01 0 0.07 ind:pas:3p; +reproduisit reproduire ver 16.3 16.01 0.01 0.2 ind:pas:3s; +reproduisons reproduire ver 16.3 16.01 0.02 0.07 ind:pre:1p; +reproduisît reproduire ver 16.3 16.01 0 0.14 sub:imp:3s; +reproduit reproduire ver m s 16.3 16.01 2.98 3.11 ind:pre:3s;par:pas; +reproduite reproduire ver f s 16.3 16.01 0.12 0.68 par:pas; +reproduites reproduire ver f p 16.3 16.01 0.15 0.61 par:pas; +reproduits reproduire ver m p 16.3 16.01 0.15 0.61 par:pas; +reprogrammant reprogrammer ver 1.11 0 0.01 0 par:pre; +reprogramme reprogrammer ver 1.11 0 0.14 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reprogramment reprogrammer ver 1.11 0 0.03 0 ind:pre:3p; +reprogrammer reprogrammer ver 1.11 0 0.7 0 inf; +reprogrammera reprogrammer ver 1.11 0 0.02 0 ind:fut:3s; +reprogrammé reprogrammer ver m s 1.11 0 0.15 0 par:pas; +reprogrammée reprogrammer ver f s 1.11 0 0.04 0 par:pas; +reprogrammés reprogrammer ver m p 1.11 0 0.01 0 par:pas; +reprographie reprographie nom f s 0.08 0.07 0.08 0.07 +reproposer reproposer ver 0.01 0 0.01 0 inf; +représailles représaille nom f p 3.07 4.86 3.07 4.86 +représenta représenter ver 48.78 85.54 0.16 0.95 ind:pas:3s; +représentai représenter ver 48.78 85.54 0 0.27 ind:pas:1s; +représentaient représenter ver 48.78 85.54 0.56 5.47 ind:imp:3p; +représentais représenter ver 48.78 85.54 0.32 1.15 ind:imp:1s;ind:imp:2s; +représentait représenter ver 48.78 85.54 2.57 19.12 ind:imp:3s; +représentant représentant nom m s 10.81 25.88 6.28 12.3 +représentante représentant nom f s 10.81 25.88 0.8 0.41 +représentantes représentant nom f p 10.81 25.88 0.13 0.07 +représentants représentant nom m p 10.81 25.88 3.59 13.11 +représentatif représentatif adj m s 1.06 2.16 0.46 0.61 +représentatifs représentatif adj m p 1.06 2.16 0.09 0.61 +représentation représentation nom f s 8.67 18.99 7.61 16.08 +représentations représentation nom f p 8.67 18.99 1.07 2.91 +représentative représentatif adj f s 1.06 2.16 0.48 0.54 +représentatives représentatif adj f p 1.06 2.16 0.04 0.41 +représente représenter ver 48.78 85.54 23.52 17.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +représentent représenter ver 48.78 85.54 3.63 3.78 ind:pre:3p;sub:pre:3p; +représenter représenter ver 48.78 85.54 5.38 11.08 inf; +représentera représenter ver 48.78 85.54 0.71 0.61 ind:fut:3s; +représenterai représenter ver 48.78 85.54 0.1 0 ind:fut:1s; +représenteraient représenter ver 48.78 85.54 0.02 0.07 cnd:pre:3p; +représenterais représenter ver 48.78 85.54 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +représenterait représenter ver 48.78 85.54 0.14 0.41 cnd:pre:3s; +représenteras représenter ver 48.78 85.54 0.05 0 ind:fut:2s; +représenterez représenter ver 48.78 85.54 0.06 0 ind:fut:2p; +représenteront représenter ver 48.78 85.54 0.11 0.07 ind:fut:3p; +représentes représenter ver 48.78 85.54 1.76 0.34 ind:pre:2s; +représentez représenter ver 48.78 85.54 2.12 0.34 imp:pre:2p;ind:pre:2p; +représentiez représenter ver 48.78 85.54 0.11 0.07 ind:imp:2p; +représentions représenter ver 48.78 85.54 0.04 0.2 ind:imp:1p; +représentons représenter ver 48.78 85.54 1.09 0.47 imp:pre:1p;ind:pre:1p; +représentât représenter ver 48.78 85.54 0 0.14 sub:imp:3s; +représentèrent représenter ver 48.78 85.54 0 0.07 ind:pas:3p; +représenté représenter ver m s 48.78 85.54 1.58 3.38 par:pas; +représentée représenter ver f s 48.78 85.54 1.42 1.49 par:pas; +représentées représenter ver f p 48.78 85.54 0.18 0.47 par:pas; +représentés représenter ver m p 48.78 85.54 0.81 1.49 par:pas; +reprîmes reprendre ver 126.92 340.14 0 0.61 ind:pas:1p; +reprît reprendre ver 126.92 340.14 0 0.81 sub:imp:3s; +reps reps nom m 0.01 1.49 0.01 1.49 +reptation reptation nom f s 0 0.88 0 0.74 +reptations reptation nom f p 0 0.88 0 0.14 +reptile reptile nom m s 3.46 2.36 1.9 1.01 +reptiles reptile nom m p 3.46 2.36 1.56 1.35 +reptilien reptilien adj m s 0.16 0.47 0.07 0.07 +reptilienne reptilien adj f s 0.16 0.47 0.07 0.2 +reptiliennes reptilien adj f p 0.16 0.47 0.01 0.07 +reptiliens reptilien adj m p 0.16 0.47 0 0.14 +repu repu adj m s 1.1 3.18 0.54 1.49 +republication republication nom f s 0.01 0 0.01 0 +republier republier ver 0.01 0.07 0 0.07 inf; +republions republier ver 0.01 0.07 0.01 0 imp:pre:1p; +repue repu adj f s 1.1 3.18 0.17 0.47 +repues repu adj f p 1.1 3.18 0.14 0.27 +repuiser repuiser ver 0 0.07 0 0.07 inf; +repus repu adj m p 1.1 3.18 0.25 0.95 +repère repère nom m s 3.52 9.59 2.44 5.34 +repèrent repérer ver 27.23 31.15 0.71 0.27 ind:pre:3p; +repères repère nom m p 3.52 9.59 1.09 4.26 +repéra repérer ver 27.23 31.15 0.02 1.35 ind:pas:3s; +repérable repérable adj s 0.21 1.22 0.16 0.95 +repérables repérable adj f p 0.21 1.22 0.05 0.27 +repérage repérage nom m s 1.75 1.15 1.62 0.88 +repérages repérage nom m p 1.75 1.15 0.14 0.27 +repéraient repérer ver 27.23 31.15 0 0.2 ind:imp:3p; +repérais repérer ver 27.23 31.15 0.05 0.14 ind:imp:1s; +repérait repérer ver 27.23 31.15 0.08 1.22 ind:imp:3s; +repérant repérer ver 27.23 31.15 0.02 0.47 par:pre; +repérer repérer ver 27.23 31.15 7.92 9.93 inf; +repérera repérer ver 27.23 31.15 0.14 0 ind:fut:3s; +repérerai repérer ver 27.23 31.15 0.02 0 ind:fut:1s; +repéreraient repérer ver 27.23 31.15 0.01 0.07 cnd:pre:3p; +repérerais repérer ver 27.23 31.15 0.01 0 cnd:pre:2s; +repérerait repérer ver 27.23 31.15 0.01 0.07 cnd:pre:3s; +repérerons repérer ver 27.23 31.15 0.01 0 ind:fut:1p; +repéreront repérer ver 27.23 31.15 0.07 0.07 ind:fut:3p; +repéreur repéreur nom m s 0.05 0 0.05 0 +repérez repérer ver 27.23 31.15 0.75 0 imp:pre:2p;ind:pre:2p; +repériez repérer ver 27.23 31.15 0.03 0 ind:imp:2p; +repérions repérer ver 27.23 31.15 0 0.2 ind:imp:1p; +repérèrent repérer ver 27.23 31.15 0 0.2 ind:pas:3p; +repéré repérer ver m s 27.23 31.15 9.98 10.27 par:pas; +repérée repérer ver f s 27.23 31.15 1.44 1.49 par:pas; +repérées repérer ver f p 27.23 31.15 0.11 0.34 par:pas; +repérés repérer ver m p 27.23 31.15 3.52 2.3 par:pas; +repétrir repétrir ver 0 0.2 0 0.07 inf; +repétrissait repétrir ver 0 0.2 0 0.07 ind:imp:3s; +repétrit repétrir ver 0 0.2 0 0.07 ind:pas:3s; +repêcha repêcher ver 3.27 4.05 0 0.2 ind:pas:3s; +repêchage repêchage nom m s 0.16 0.27 0.15 0.2 +repêchages repêchage nom m p 0.16 0.27 0.01 0.07 +repêchai repêcher ver 3.27 4.05 0 0.14 ind:pas:1s; +repêchait repêcher ver 3.27 4.05 0.01 0.34 ind:imp:3s; +repêchant repêcher ver 3.27 4.05 0.01 0 par:pre; +repêche repêcher ver 3.27 4.05 0.39 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repêcher repêcher ver 3.27 4.05 0.91 1.08 inf; +repêchera repêcher ver 3.27 4.05 0.11 0.07 ind:fut:3s; +repêcherait repêcher ver 3.27 4.05 0.02 0.07 cnd:pre:3s; +repêches repêcher ver 3.27 4.05 0 0.07 ind:pre:2s; +repêchèrent repêcher ver 3.27 4.05 0 0.07 ind:pas:3p; +repêché repêcher ver m s 3.27 4.05 1.27 0.81 par:pas; +repêchée repêcher ver f s 3.27 4.05 0.36 0.27 par:pas; +repêchées repêcher ver f p 3.27 4.05 0 0.07 par:pas; +repêchés repêcher ver m p 3.27 4.05 0.2 0.07 par:pas; +requalifier requalifier ver 0.01 0 0.01 0 inf; +requiem requiem nom m s 2.76 0.68 2.76 0.61 +requiems requiem nom m p 2.76 0.68 0 0.07 +requiers requérir ver 6.24 6.35 0.76 0 ind:pre:1s; +requiert requérir ver 6.24 6.35 2.33 0.95 ind:pre:3s; +requiescat_in_pace requiescat_in_pace nom m s 0 0.07 0 0.07 +requin requin nom m s 12.24 4.8 8.15 1.62 +requin_baleine requin_baleine nom m s 0.01 0 0.01 0 +requin_tigre requin_tigre nom m s 0.04 0 0.04 0 +requinqua requinquer ver 1.3 1.89 0 0.2 ind:pas:3s; +requinquait requinquer ver 1.3 1.89 0 0.07 ind:imp:3s; +requinque requinquer ver 1.3 1.89 0.2 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +requinquent requinquer ver 1.3 1.89 0.01 0.07 ind:pre:3p; +requinquer requinquer ver 1.3 1.89 0.66 0.27 inf; +requinquera requinquer ver 1.3 1.89 0.19 0 ind:fut:3s; +requinquerait requinquer ver 1.3 1.89 0.02 0 cnd:pre:3s; +requinqué requinquer ver m s 1.3 1.89 0.04 0.81 par:pas; +requinquée requinquer ver f s 1.3 1.89 0.03 0.2 par:pas; +requinqués requinquer ver m p 1.3 1.89 0.14 0 par:pas; +requins requin nom m p 12.24 4.8 4.09 3.18 +requin_marteau requin_marteau nom m p 0 0.07 0 0.07 +requis requérir ver m 6.24 6.35 1.63 2.57 par:pas; +requise requis adj f s 1.17 0.68 0.61 0.2 +requises requis adj f p 1.17 0.68 0.45 0.27 +requière requérir ver 6.24 6.35 0.1 0 sub:pre:3s; +requièrent requérir ver 6.24 6.35 0.2 0.41 ind:pre:3p; +requéraient requérir ver 6.24 6.35 0 0.14 ind:imp:3p; +requérais requérir ver 6.24 6.35 0 0.07 ind:imp:1s; +requérait requérir ver 6.24 6.35 0.03 0.47 ind:imp:3s; +requérant requérir ver 6.24 6.35 0.13 0.2 par:pre; +requérante requérant nom f s 0.16 0 0.02 0 +requérants requérant nom m p 0.16 0 0.01 0 +requérir requérir ver 6.24 6.35 0.14 0.41 inf; +requérons requérir ver 6.24 6.35 0.04 0.07 imp:pre:1p;ind:pre:1p; +requête requête nom f s 8.82 1.96 7.75 1.69 +requêtes requête nom f p 8.82 1.96 1.07 0.27 +resalir resalir ver 0.01 0 0.01 0 inf; +resape resaper ver 0 0.34 0 0.07 ind:pre:1s; +resapent resaper ver 0 0.34 0 0.07 ind:pre:3p; +resapée resaper ver f s 0 0.34 0 0.14 par:pas; +resapés resaper ver m p 0 0.34 0 0.07 par:pas; +rescaper rescaper ver 0.34 1.82 0 0.07 inf; +rescapes rescaper ver 0.34 1.82 0.03 0 ind:pre:2s; +rescapé rescapé nom m s 1.7 4.93 0.89 1.69 +rescapée rescapé nom f s 1.7 4.93 0.18 0.47 +rescapées rescapé adj f p 0.12 1.89 0 0.27 +rescapés rescapé nom m p 1.7 4.93 0.63 2.7 +rescision rescision nom f s 0 0.07 0 0.07 +rescousse rescousse nom f s 1.43 3.18 1.43 3.18 +rescrit rescrit nom m s 0 0.14 0 0.14 +reservir reservir ver 0.04 0 0.04 0 inf; +reset reset nom m s 0.05 0 0.05 0 +resocialisation resocialisation nom f s 0.01 0 0.01 0 +resongeait resonger ver 0 0.27 0 0.14 ind:imp:3s; +resonger resonger ver 0 0.27 0 0.14 inf; +respect respect nom m s 54.78 43.85 50.47 42.43 +respecta respecter ver 65.41 33.58 0.01 0.2 ind:pas:3s; +respectabilité respectabilité nom f s 1.22 2.3 1.22 2.3 +respectable respectable adj s 7.03 6.82 5.73 5.2 +respectables respectable adj p 7.03 6.82 1.3 1.62 +respectai respecter ver 65.41 33.58 0 0.07 ind:pas:1s; +respectaient respecter ver 65.41 33.58 0.34 1.49 ind:imp:3p; +respectais respecter ver 65.41 33.58 0.75 0.88 ind:imp:1s;ind:imp:2s; +respectait respecter ver 65.41 33.58 1.49 3.45 ind:imp:3s; +respectant respecter ver 65.41 33.58 0.66 1.89 par:pre; +respecte respecter ver 65.41 33.58 21.8 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +respectent respecter ver 65.41 33.58 4.49 1.69 ind:pre:3p; +respecter respecter ver 65.41 33.58 17.54 10.14 inf; +respectera respecter ver 65.41 33.58 0.67 0.41 ind:fut:3s; +respecterai respecter ver 65.41 33.58 0.58 0 ind:fut:1s; +respecteraient respecter ver 65.41 33.58 0.01 0.07 cnd:pre:3p; +respecterais respecter ver 65.41 33.58 0.18 0 cnd:pre:1s;cnd:pre:2s; +respecterait respecter ver 65.41 33.58 0.14 0.2 cnd:pre:3s; +respecteras respecter ver 65.41 33.58 0.68 0 ind:fut:2s; +respecterez respecter ver 65.41 33.58 0.16 0 ind:fut:2p; +respecterons respecter ver 65.41 33.58 0.31 0.07 ind:fut:1p; +respecteront respecter ver 65.41 33.58 0.53 0.07 ind:fut:3p; +respectes respecter ver 65.41 33.58 2.68 0.27 ind:pre:2s; +respectez respecter ver 65.41 33.58 3.22 0.95 imp:pre:2p;ind:pre:2p; +respectiez respecter ver 65.41 33.58 0.33 0.07 ind:imp:2p; +respectif respectif adj m s 1.17 7.7 0.02 0.41 +respectifs respectif adj m p 1.17 7.7 0.63 3.92 +respections respecter ver 65.41 33.58 0.06 0.34 ind:imp:1p; +respective respectif adj f s 1.17 7.7 0.03 0.54 +respectivement respectivement adv 0.16 4.26 0.16 4.26 +respectives respectif adj f p 1.17 7.7 0.49 2.84 +respectons respecter ver 65.41 33.58 1.75 0.34 imp:pre:1p;ind:pre:1p; +respects respect nom m p 54.78 43.85 4.32 1.42 +respectueuse respectueux adj f s 4.17 8.92 0.52 3.18 +respectueusement respectueusement adv 0.79 3.85 0.79 3.85 +respectueuses respectueux adj f p 4.17 8.92 0.17 0.34 +respectueux respectueux adj m 4.17 8.92 3.47 5.41 +respectât respecter ver 65.41 33.58 0 0.2 sub:imp:3s; +respecté respecter ver m s 65.41 33.58 4.79 2.84 par:pas; +respectée respecter ver f s 65.41 33.58 1.1 0.81 par:pas; +respectées respecter ver f p 65.41 33.58 0.68 0.41 par:pas; +respectés respecté adj m p 3.58 3.45 0.65 0.74 +respir respir nom m s 0 0.14 0 0.14 +respira respirer ver 76.08 102.43 0.11 8.78 ind:pas:3s; +respirable respirable adj s 0.45 0.88 0.44 0.81 +respirables respirable adj m p 0.45 0.88 0.01 0.07 +respirai respirer ver 76.08 102.43 0.02 1.01 ind:pas:1s; +respiraient respirer ver 76.08 102.43 0.03 1.28 ind:imp:3p; +respirais respirer ver 76.08 102.43 0.86 4.32 ind:imp:1s;ind:imp:2s; +respirait respirer ver 76.08 102.43 2.4 17.43 ind:imp:3s; +respirant respirer ver 76.08 102.43 0.69 7.57 par:pre; +respirateur respirateur nom m s 1.68 0.34 1.64 0.34 +respirateurs respirateur nom m p 1.68 0.34 0.04 0 +respiration respiration nom f s 9.56 31.82 9.19 28.65 +respirations respiration nom f p 9.56 31.82 0.38 3.18 +respiratoire respiratoire adj s 3.73 1.49 2.26 0.88 +respiratoires respiratoire adj p 3.73 1.49 1.48 0.61 +respire respirer ver 76.08 102.43 29.2 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +respirent respirer ver 76.08 102.43 1.17 2.09 ind:pre:3p; +respirer respirer ver 76.08 102.43 27.58 33.51 inf; +respirera respirer ver 76.08 102.43 0.11 0.2 ind:fut:3s; +respirerai respirer ver 76.08 102.43 0.08 0.34 ind:fut:1s; +respirerais respirer ver 76.08 102.43 0.04 0.14 cnd:pre:1s; +respirerait respirer ver 76.08 102.43 0.11 0.27 cnd:pre:3s; +respireras respirer ver 76.08 102.43 0.16 0 ind:fut:2s; +respirerez respirer ver 76.08 102.43 0.02 0 ind:fut:2p; +respirerons respirer ver 76.08 102.43 0 0.07 ind:fut:1p; +respireront respirer ver 76.08 102.43 0.05 0.07 ind:fut:3p; +respires respirer ver 76.08 102.43 1.88 0.54 ind:pre:2s; +respirez respirer ver 76.08 102.43 9.23 0.68 imp:pre:2p;ind:pre:2p; +respiriez respirer ver 76.08 102.43 0.11 0 ind:imp:2p; +respirions respirer ver 76.08 102.43 0.14 0.34 ind:imp:1p; +respirons respirer ver 76.08 102.43 0.96 1.15 imp:pre:1p;ind:pre:1p; +respirât respirer ver 76.08 102.43 0 0.07 sub:imp:3s; +respirèrent respirer ver 76.08 102.43 0.01 0.07 ind:pas:3p; +respiré respirer ver m s 76.08 102.43 1.07 4.12 par:pas; +respirée respirer ver f s 76.08 102.43 0.02 0.41 par:pas; +respirées respirer ver f p 76.08 102.43 0.01 0.07 par:pas; +respirés respirer ver m p 76.08 102.43 0.03 0.14 par:pas; +resplendi resplendir ver m s 2.42 4.66 0 0.14 par:pas; +resplendir resplendir ver 2.42 4.66 0.32 0.61 inf; +resplendira resplendir ver 2.42 4.66 0.58 0 ind:fut:3s; +resplendiraient resplendir ver 2.42 4.66 0 0.07 cnd:pre:3p; +resplendirent resplendir ver 2.42 4.66 0 0.07 ind:pas:3p; +resplendis resplendir ver 2.42 4.66 0.11 0.07 ind:pre:1s;ind:pre:2s; +resplendissaient resplendir ver 2.42 4.66 0 0.27 ind:imp:3p; +resplendissait resplendir ver 2.42 4.66 0.49 1.49 ind:imp:3s; +resplendissant resplendissant adj m s 1.85 1.89 0.3 0.41 +resplendissante resplendissant adj f s 1.85 1.89 1.12 0.95 +resplendissantes resplendissant adj f p 1.85 1.89 0.07 0.27 +resplendissants resplendissant adj m p 1.85 1.89 0.35 0.27 +resplendisse resplendir ver 2.42 4.66 0.16 0.07 sub:pre:3s; +resplendissement resplendissement nom m s 0 0.07 0 0.07 +resplendissent resplendir ver 2.42 4.66 0 0.27 ind:pre:3p; +resplendissez resplendir ver 2.42 4.66 0.21 0 ind:pre:2p; +resplendit resplendir ver 2.42 4.66 0.52 1.22 ind:pre:3s;ind:pas:3s; +responsabilisation responsabilisation nom f s 0.01 0 0.01 0 +responsabilise responsabiliser ver 0.3 0.07 0 0.07 ind:pre:1s; +responsabiliser responsabiliser ver 0.3 0.07 0.3 0 inf; +responsabilité responsabilité nom f s 37.46 28.72 26.04 18.11 +responsabilités responsabilité nom f p 37.46 28.72 11.42 10.61 +responsable responsable adj s 46.01 21.82 40.66 17.43 +responsables responsable adj p 46.01 21.82 5.35 4.39 +resquillaient resquiller ver 0.45 0.68 0 0.07 ind:imp:3p; +resquillant resquiller ver 0.45 0.68 0.03 0.14 par:pre; +resquille resquiller ver 0.45 0.68 0.23 0.14 ind:pre:1s;ind:pre:3s; +resquiller resquiller ver 0.45 0.68 0.14 0.34 inf; +resquillera resquiller ver 0.45 0.68 0.01 0 ind:fut:3s; +resquilles resquiller ver 0.45 0.68 0.01 0 ind:pre:2s; +resquilleur resquilleur adj m s 0.1 0.07 0.1 0.07 +resquilleurs resquilleur nom m p 0.24 0.61 0.17 0.41 +resquilleuse resquilleur nom f s 0.24 0.61 0.01 0 +resquilleuses resquilleur nom f p 0.24 0.61 0 0.07 +resquillé resquiller ver m s 0.45 0.68 0.03 0 par:pas; +ressac ressac nom m s 0.14 4.39 0.14 4.32 +ressacs ressac nom m p 0.14 4.39 0 0.07 +ressaie ressayer ver 0.17 0 0.05 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressaisi ressaisir ver m s 5.87 7.77 0.22 0.81 par:pas; +ressaisie ressaisir ver f s 5.87 7.77 0.06 0.47 par:pas; +ressaisir ressaisir ver 5.87 7.77 1.26 2.57 inf; +ressaisira ressaisir ver 5.87 7.77 0.1 0.14 ind:fut:3s; +ressaisirais ressaisir ver 5.87 7.77 0.01 0 cnd:pre:1s; +ressaisis ressaisir ver m p 5.87 7.77 3.06 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +ressaisissaient ressaisir ver 5.87 7.77 0 0.07 ind:imp:3p; +ressaisissais ressaisir ver 5.87 7.77 0.01 0.07 ind:imp:1s; +ressaisissait ressaisir ver 5.87 7.77 0.01 0.14 ind:imp:3s; +ressaisissant ressaisir ver 5.87 7.77 0 0.2 par:pre; +ressaisisse ressaisir ver 5.87 7.77 0.02 0.34 sub:pre:1s;sub:pre:3s; +ressaisissement ressaisissement nom m s 0 0.07 0 0.07 +ressaisisses ressaisir ver 5.87 7.77 0.05 0 sub:pre:2s; +ressaisissez ressaisir ver 5.87 7.77 0.86 0.2 imp:pre:2p;ind:pre:2p; +ressaisissions ressaisir ver 5.87 7.77 0 0.07 ind:imp:1p; +ressaisissons ressaisir ver 5.87 7.77 0.03 0.07 imp:pre:1p; +ressaisit ressaisir ver 5.87 7.77 0.17 1.96 ind:pre:3s;ind:pas:3s; +ressaisît ressaisir ver 5.87 7.77 0 0.07 sub:imp:3s; +ressassaient ressasser ver 1.31 5.27 0 0.14 ind:imp:3p; +ressassais ressasser ver 1.31 5.27 0.01 0.14 ind:imp:1s;ind:imp:2s; +ressassait ressasser ver 1.31 5.27 0.01 1.28 ind:imp:3s; +ressassant ressasser ver 1.31 5.27 0.05 0.54 par:pre; +ressasse ressasser ver 1.31 5.27 0.27 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressassement ressassement nom m s 0 0.47 0 0.47 +ressassent ressasser ver 1.31 5.27 0.01 0.2 ind:pre:3p; +ressasser ressasser ver 1.31 5.27 0.77 1.28 inf; +ressasseur ressasseur nom m s 0 0.07 0 0.07 +ressassez ressasser ver 1.31 5.27 0 0.07 ind:pre:2p; +ressassions ressasser ver 1.31 5.27 0 0.07 ind:imp:1p; +ressassèrent ressasser ver 1.31 5.27 0.01 0 ind:pas:3p; +ressassé ressasser ver m s 1.31 5.27 0.16 0.41 par:pas; +ressassée ressasser ver f s 1.31 5.27 0 0.14 par:pas; +ressassées ressasser ver f p 1.31 5.27 0.01 0.14 par:pas; +ressassés ressasser ver m p 1.31 5.27 0.02 0.54 par:pas; +ressaut ressaut nom m s 0.01 1.15 0.01 0.74 +ressauter ressauter ver 0.09 0 0.07 0 inf; +ressauts ressaut nom m p 0.01 1.15 0 0.41 +ressauté ressauter ver m s 0.09 0 0.01 0 par:pas; +ressayer ressayer ver 0.17 0 0.12 0 inf; +ressembla ressembler ver 148.62 157.5 0 1.01 ind:pas:3s; +ressemblaient ressembler ver 148.62 157.5 2.17 15.54 ind:imp:3p; +ressemblais ressembler ver 148.62 157.5 2.23 1.15 ind:imp:1s;ind:imp:2s; +ressemblait ressembler ver 148.62 157.5 13.41 54.26 ind:imp:3s; +ressemblance ressemblance nom f s 5.02 10.54 4.46 9.26 +ressemblances ressemblance nom f p 5.02 10.54 0.56 1.28 +ressemblant ressemblant adj m s 2.07 2.77 1.57 1.49 +ressemblante ressemblant adj f s 2.07 2.77 0.29 0.61 +ressemblantes ressemblant adj f p 2.07 2.77 0.14 0.2 +ressemblants ressemblant adj m p 2.07 2.77 0.06 0.47 +ressemblassent ressembler ver 148.62 157.5 0 0.14 sub:imp:3p; +ressemble ressembler ver 148.62 157.5 83.47 40.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +ressemblent ressembler ver 148.62 157.5 11.21 13.18 ind:pre:3p; +ressembler ressembler ver 148.62 157.5 11.45 18.72 ind:pre:2p;inf; +ressemblera ressembler ver 148.62 157.5 1.14 0.68 ind:fut:3s; +ressemblerai ressembler ver 148.62 157.5 0.09 0.14 ind:fut:1s; +ressembleraient ressembler ver 148.62 157.5 0.05 0.27 cnd:pre:3p; +ressemblerais ressembler ver 148.62 157.5 0.53 0 cnd:pre:1s;cnd:pre:2s; +ressemblerait ressembler ver 148.62 157.5 1.12 2.16 cnd:pre:3s; +ressembleras ressembler ver 148.62 157.5 0.21 0.07 ind:fut:2s; +ressemblerez ressembler ver 148.62 157.5 0.05 0.07 ind:fut:2p; +ressembleront ressembler ver 148.62 157.5 0.28 0.14 ind:fut:3p; +ressembles ressembler ver 148.62 157.5 11.93 1.01 ind:pre:2s;sub:pre:2s; +ressemblez ressembler ver 148.62 157.5 6.92 1.35 imp:pre:2p;ind:pre:2p; +ressembliez ressembler ver 148.62 157.5 0.26 0.14 ind:imp:2p; +ressemblions ressembler ver 148.62 157.5 0.03 0.61 ind:imp:1p; +ressemblons ressembler ver 148.62 157.5 0.89 0.74 ind:pre:1p; +ressemblât ressembler ver 148.62 157.5 0.01 1.28 sub:imp:3s; +ressemblèrent ressembler ver 148.62 157.5 0 0.2 ind:pas:3p; +ressemblé ressembler ver m s 148.62 157.5 0.17 1.49 par:pas; +ressemelage ressemelage nom m s 0 0.41 0 0.27 +ressemelages ressemelage nom m p 0 0.41 0 0.14 +ressemelait ressemeler ver 0.02 0.34 0 0.07 ind:imp:3s; +ressemeler ressemeler ver 0.02 0.34 0.02 0.14 inf; +ressemellent ressemeler ver 0.02 0.34 0 0.07 ind:pre:3p; +ressemelée ressemeler ver f s 0.02 0.34 0 0.07 par:pas; +ressemer ressemer ver 0.01 0 0.01 0 inf; +ressens ressentir ver 78.78 70.14 27.91 5.68 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressent ressentir ver 78.78 70.14 10.23 7.23 ind:pre:3s; +ressentaient ressentir ver 78.78 70.14 0.12 1.28 ind:imp:3p; +ressentais ressentir ver 78.78 70.14 2.72 5.81 ind:imp:1s;ind:imp:2s; +ressentait ressentir ver 78.78 70.14 1.66 12.77 ind:imp:3s; +ressentant ressentir ver 78.78 70.14 0.08 0.61 par:pre; +ressente ressentir ver 78.78 70.14 0.72 0.47 sub:pre:1s;sub:pre:3s; +ressentent ressentir ver 78.78 70.14 2.49 1.28 ind:pre:3p; +ressentes ressentir ver 78.78 70.14 0.41 0 sub:pre:2s; +ressentez ressentir ver 78.78 70.14 6.7 0.27 imp:pre:2p;ind:pre:2p; +ressenti ressentir ver m s 78.78 70.14 11.36 10.68 par:pas; +ressentie ressentir ver f s 78.78 70.14 0.6 2.64 par:pas; +ressenties ressentir ver f p 78.78 70.14 0.07 0.34 par:pas; +ressentiez ressentir ver 78.78 70.14 0.5 0 ind:imp:2p; +ressentiment ressentiment nom m s 1.83 5 1.56 4.59 +ressentiments ressentiment nom m p 1.83 5 0.27 0.41 +ressentions ressentir ver 78.78 70.14 0.04 0.34 ind:imp:1p; +ressentir ressentir ver 78.78 70.14 9.76 10.54 inf; +ressentira ressentir ver 78.78 70.14 0.26 0 ind:fut:3s; +ressentirai ressentir ver 78.78 70.14 0.11 0 ind:fut:1s; +ressentirais ressentir ver 78.78 70.14 0.42 0.14 cnd:pre:1s;cnd:pre:2s; +ressentirait ressentir ver 78.78 70.14 0.16 0.14 cnd:pre:3s; +ressentiras ressentir ver 78.78 70.14 0.06 0.07 ind:fut:2s; +ressentirent ressentir ver 78.78 70.14 0 0.27 ind:pas:3p; +ressentirez ressentir ver 78.78 70.14 0.16 0 ind:fut:2p; +ressentiriez ressentir ver 78.78 70.14 0.17 0 cnd:pre:2p; +ressentirions ressentir ver 78.78 70.14 0.01 0 cnd:pre:1p; +ressentiront ressentir ver 78.78 70.14 0.04 0.07 ind:fut:3p; +ressentis ressentir ver m p 78.78 70.14 0.66 3.24 ind:pas:1s;par:pas; +ressentit ressentir ver 78.78 70.14 0.45 5.74 ind:pas:3s; +ressentons ressentir ver 78.78 70.14 0.9 0.14 imp:pre:1p;ind:pre:1p; +ressentîmes ressentir ver 78.78 70.14 0 0.07 ind:pas:1p; +ressentît ressentir ver 78.78 70.14 0 0.34 sub:imp:3s; +resserra resserrer ver 3.74 11.08 0 1.01 ind:pas:3s; +resserrage resserrage nom m s 0.1 0 0.1 0 +resserraient resserrer ver 3.74 11.08 0.02 0.34 ind:imp:3p; +resserrait resserrer ver 3.74 11.08 0.02 1.82 ind:imp:3s; +resserrant resserrer ver 3.74 11.08 0 0.61 par:pre; +resserre resserrer ver 3.74 11.08 1.15 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +resserrement resserrement nom m s 0 1.15 0 1.15 +resserrent resserrer ver 3.74 11.08 0.35 0.95 ind:pre:3p; +resserrer resserrer ver 3.74 11.08 1.19 2.23 inf; +resserrera resserrer ver 3.74 11.08 0.04 0.07 ind:fut:3s; +resserrerai resserrer ver 3.74 11.08 0.01 0.14 ind:fut:1s; +resserrerait resserrer ver 3.74 11.08 0.02 0.07 cnd:pre:3s; +resserres resserrer ver 3.74 11.08 0.02 0 ind:pre:2s; +resserrez resserrer ver 3.74 11.08 0.45 0 imp:pre:2p;ind:pre:2p; +resserrions resserrer ver 3.74 11.08 0 0.07 ind:imp:1p; +resserrons resserrer ver 3.74 11.08 0.02 0.07 imp:pre:1p;ind:pre:1p; +resserrèrent resserrer ver 3.74 11.08 0 0.2 ind:pas:3p; +resserré resserrer ver m s 3.74 11.08 0.42 0.95 par:pas; +resserrée resserrer ver f s 3.74 11.08 0.01 0.34 par:pas; +resserrées resserrer ver f p 3.74 11.08 0.01 0.41 par:pas; +resserrés resserré adj m p 0.06 1.69 0.04 0.54 +ressers resservir ver 2.25 3.04 1.13 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressert resservir ver 2.25 3.04 0.07 0.27 ind:pre:3s; +resservais resservir ver 2.25 3.04 0.01 0 ind:imp:2s; +resservait resservir ver 2.25 3.04 0.01 0.47 ind:imp:3s; +resservez resservir ver 2.25 3.04 0.17 0 imp:pre:2p;ind:pre:2p; +resservi resservir ver m s 2.25 3.04 0.06 0.68 par:pas; +resservir resservir ver 2.25 3.04 0.58 0.81 inf; +resservirai resservir ver 2.25 3.04 0.02 0 ind:fut:1s; +resservirais resservir ver 2.25 3.04 0.1 0 cnd:pre:1s; +resservirait resservir ver 2.25 3.04 0 0.14 cnd:pre:3s; +resservis resservir ver m p 2.25 3.04 0.1 0.07 par:pas; +resservit resservir ver 2.25 3.04 0 0.34 ind:pas:3s; +ressors ressortir ver 15.23 31.69 1.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressort ressort nom m s 6.95 20.54 5.69 13.65 +ressortaient ressortir ver 15.23 31.69 0.05 1.35 ind:imp:3p; +ressortais ressortir ver 15.23 31.69 0.04 0.2 ind:imp:1s;ind:imp:2s; +ressortait ressortir ver 15.23 31.69 0.12 4.19 ind:imp:3s; +ressortant ressortir ver 15.23 31.69 0.08 0.95 par:pre; +ressorte ressortir ver 15.23 31.69 0.41 0.2 sub:pre:1s;sub:pre:3s; +ressortent ressortir ver 15.23 31.69 0.79 1.22 ind:pre:3p; +ressortes ressortir ver 15.23 31.69 0.03 0 sub:pre:2s; +ressortez ressortir ver 15.23 31.69 0.22 0.2 imp:pre:2p;ind:pre:2p; +ressorti ressortir ver m s 15.23 31.69 1.91 2.84 par:pas; +ressortie ressortir ver f s 15.23 31.69 1.27 1.22 par:pas; +ressorties ressortir ver f p 15.23 31.69 0.04 0.14 par:pas; +ressortions ressortir ver 15.23 31.69 0.02 0.2 ind:imp:1p; +ressortir ressortir ver 15.23 31.69 4.64 7.91 inf; +ressortira ressortir ver 15.23 31.69 0.26 0.41 ind:fut:3s; +ressortirai ressortir ver 15.23 31.69 0.37 0 ind:fut:1s; +ressortiraient ressortir ver 15.23 31.69 0 0.07 cnd:pre:3p; +ressortirais ressortir ver 15.23 31.69 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +ressortirait ressortir ver 15.23 31.69 0.09 0.14 cnd:pre:3s; +ressortiras ressortir ver 15.23 31.69 0.17 0.14 ind:fut:2s; +ressortirent ressortir ver 15.23 31.69 0.01 0.54 ind:pas:3p; +ressortirez ressortir ver 15.23 31.69 0.03 0 ind:fut:2p; +ressortiront ressortir ver 15.23 31.69 0.05 0.07 ind:fut:3p; +ressortis ressortir ver m p 15.23 31.69 0.43 1.01 ind:pas:1s;par:pas; +ressortissant ressortissant nom m s 0.46 1.49 0.11 0.47 +ressortissante ressortissant nom f s 0.46 1.49 0.01 0.14 +ressortissants ressortissant nom m p 0.46 1.49 0.34 0.88 +ressortit ressortir ver 15.23 31.69 0.26 4.05 ind:pas:3s; +ressortons ressortir ver 15.23 31.69 0.04 0 imp:pre:1p;ind:pre:1p; +ressorts ressort nom m p 6.95 20.54 1.27 6.89 +ressortîmes ressortir ver 15.23 31.69 0 0.14 ind:pas:1p; +ressoudant ressouder ver 0.39 1.01 0 0.07 par:pre; +ressoude ressouder ver 0.39 1.01 0.01 0.07 ind:pre:3s; +ressouder ressouder ver 0.39 1.01 0.2 0.41 inf; +ressoudé ressouder ver m s 0.39 1.01 0.01 0.27 par:pas; +ressoudée ressouder ver f s 0.39 1.01 0.12 0.14 par:pas; +ressoudés ressouder ver m p 0.39 1.01 0.04 0.07 par:pas; +ressource ressource nom f s 8.81 22.5 1.13 5.95 +ressourcement ressourcement nom m s 0.01 0.07 0.01 0.07 +ressourcer ressourcer ver 0.4 0.47 0.4 0.27 inf;; +ressources ressource nom f p 8.81 22.5 7.68 16.55 +ressourcé ressourcer ver m s 0.4 0.47 0 0.07 par:pas; +ressourçais ressourcer ver 0.4 0.47 0 0.07 ind:imp:1s; +ressourçait ressourcer ver 0.4 0.47 0 0.07 ind:imp:3s; +ressouvenait ressouvenir ver 0.68 0.88 0 0.14 ind:imp:3s; +ressouvenant ressouvenir ver 0.68 0.88 0 0.07 par:pre; +ressouvenir ressouvenir ver 0.68 0.88 0.68 0.47 inf; +ressouvenue ressouvenir ver f s 0.68 0.88 0 0.07 par:pas; +ressouviens ressouvenir ver 0.68 0.88 0 0.07 ind:pre:1s; +ressouvint ressouvenir ver 0.68 0.88 0 0.07 ind:pas:3s; +ressui ressui nom m s 0 0.07 0 0.07 +ressuiement ressuiement nom m s 0 0.07 0 0.07 +ressurgi ressurgir ver m s 0.7 1.55 0.04 0.34 par:pas; +ressurgie ressurgir ver f s 0.7 1.55 0 0.14 par:pas; +ressurgir ressurgir ver 0.7 1.55 0.36 0.41 inf; +ressurgirait ressurgir ver 0.7 1.55 0 0.07 cnd:pre:3s; +ressurgirent ressurgir ver 0.7 1.55 0 0.07 ind:pas:3p; +ressurgiront ressurgir ver 0.7 1.55 0.02 0 ind:fut:3p; +ressurgissait ressurgir ver 0.7 1.55 0.01 0.14 ind:imp:3s; +ressurgissant ressurgir ver 0.7 1.55 0 0.2 par:pre; +ressurgissent ressurgir ver 0.7 1.55 0.09 0 ind:pre:3p; +ressurgit ressurgir ver 0.7 1.55 0.18 0.2 ind:pre:3s; +ressuscita ressusciter ver 11.44 17.91 0.06 0.27 ind:pas:3s; +ressuscitai ressusciter ver 11.44 17.91 0 0.14 ind:pas:1s; +ressuscitaient ressusciter ver 11.44 17.91 0.02 0.95 ind:imp:3p; +ressuscitais ressusciter ver 11.44 17.91 0.01 0.2 ind:imp:1s; +ressuscitait ressusciter ver 11.44 17.91 0.11 1.35 ind:imp:3s; +ressuscitant ressusciter ver 11.44 17.91 0.03 0.68 par:pre; +ressuscite ressusciter ver 11.44 17.91 0.82 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressuscitent ressusciter ver 11.44 17.91 0.51 1.08 ind:pre:3p; +ressusciter ressusciter ver 11.44 17.91 2.94 4.8 inf; +ressuscitera ressusciter ver 11.44 17.91 1.03 0.27 ind:fut:3s; +ressusciterai ressusciter ver 11.44 17.91 0.11 0.07 ind:fut:1s; +ressusciteraient ressusciter ver 11.44 17.91 0.01 0.2 cnd:pre:3p; +ressusciterait ressusciter ver 11.44 17.91 0.29 0.47 cnd:pre:3s; +ressusciteras ressusciter ver 11.44 17.91 0 0.07 ind:fut:2s; +ressusciterez ressusciter ver 11.44 17.91 0.01 0.07 ind:fut:2p; +ressusciterons ressusciter ver 11.44 17.91 0.27 0.14 ind:fut:1p; +ressusciteront ressusciter ver 11.44 17.91 0.06 0.14 ind:fut:3p; +ressuscites ressusciter ver 11.44 17.91 0.22 0.07 ind:pre:2s; +ressuscitez ressusciter ver 11.44 17.91 0.27 0 imp:pre:2p;ind:pre:2p; +ressuscitons ressusciter ver 11.44 17.91 0.01 0 imp:pre:1p; +ressuscitât ressusciter ver 11.44 17.91 0 0.07 sub:imp:3s; +ressuscité ressusciter ver m s 11.44 17.91 3.86 3.72 par:pas; +ressuscitée ressusciter ver f s 11.44 17.91 0.56 0.81 par:pas; +ressuscitées ressusciter ver f p 11.44 17.91 0.01 0.2 par:pas; +ressuscités ressusciter ver m p 11.44 17.91 0.23 0.74 par:pas; +ressuyé ressuyer ver m s 0 0.34 0 0.2 par:pas; +ressuyée ressuyer ver f s 0 0.34 0 0.14 par:pas; +ressué ressuer ver m s 0 0.07 0 0.07 par:pas; +resta rester ver 1003.56 793.78 3.53 52.7 ind:pas:3s; +restai rester ver 1003.56 793.78 1.27 13.92 ind:pas:1s; +restaient rester ver 1003.56 793.78 2.81 32.23 ind:imp:3p; +restais rester ver 1003.56 793.78 4.84 13.58 ind:imp:1s;ind:imp:2s; +restait rester ver 1003.56 793.78 18.34 152.64 ind:imp:3s; +restant restant nom m s 5.74 5.68 5.54 5.41 +restante restant adj f s 2.42 3.24 0.83 1.35 +restantes restant adj f p 2.42 3.24 0.28 0.47 +restants restant adj m p 2.42 3.24 0.81 0.14 +restassent rester ver 1003.56 793.78 0 0.27 sub:imp:3p; +restau restau nom m s 3.65 2.5 3.31 2.09 +restaura restaurer ver 6.31 9.26 0 0.07 ind:pas:3s; +restaurait restaurer ver 6.31 9.26 0.04 0.34 ind:imp:3s; +restaurant restaurant nom m s 50.04 48.99 44.29 38.85 +restaurants restaurant nom m p 50.04 48.99 5.75 10.14 +restaurateur restaurateur nom m s 1.25 2.57 1.09 1.62 +restaurateurs restaurateur nom m p 1.25 2.57 0.09 0.61 +restauration restauration nom f s 2.96 5.27 2.9 5.07 +restaurations restauration nom f p 2.96 5.27 0.06 0.2 +restauratrice restaurateur nom f s 1.25 2.57 0.07 0.34 +restaure restaurer ver 6.31 9.26 1.24 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +restaurent restaurer ver 6.31 9.26 0.23 0.14 ind:pre:3p; +restaurer restaurer ver 6.31 9.26 2.2 4.32 inf;; +restaurera restaurer ver 6.31 9.26 0.01 0 ind:fut:3s; +restaurerai restaurer ver 6.31 9.26 0.01 0 ind:fut:1s; +restaureraient restaurer ver 6.31 9.26 0 0.07 cnd:pre:3p; +restaurerait restaurer ver 6.31 9.26 0.01 0.07 cnd:pre:3s; +restaurez restaurer ver 6.31 9.26 0.22 0 imp:pre:2p;ind:pre:2p; +restaurons restaurer ver 6.31 9.26 0.03 0 imp:pre:1p; +restauroute restauroute nom m s 0 0.41 0 0.41 +restauré restaurer ver m s 6.31 9.26 0.93 1.49 par:pas; +restaurée restaurer ver f s 6.31 9.26 0.49 0.81 par:pas; +restaurées restaurer ver f p 6.31 9.26 0.14 0.47 par:pas; +restaurés restaurer ver m p 6.31 9.26 0.05 0.14 par:pas; +restaus restau nom m p 3.65 2.5 0.34 0.41 +reste rester ver 1003.56 793.78 320.44 153.99 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +restent rester ver 1003.56 793.78 21.75 25.2 ind:pre:3p; +rester rester ver 1003.56 793.78 310.38 123.78 inf;;inf;;inf;;inf;; +restera rester ver 1003.56 793.78 25.73 15.68 ind:fut:3s; +resterai rester ver 1003.56 793.78 11.8 3.85 ind:fut:1s; +resteraient rester ver 1003.56 793.78 0.43 3.04 cnd:pre:3p; +resterais rester ver 1003.56 793.78 4.68 2.5 cnd:pre:1s;cnd:pre:2s; +resterait rester ver 1003.56 793.78 5.3 12.09 cnd:pre:3s; +resteras rester ver 1003.56 793.78 6.32 1.82 ind:fut:2s; +resterez rester ver 1003.56 793.78 5.75 1.35 ind:fut:2p; +resteriez rester ver 1003.56 793.78 1 0.2 cnd:pre:2p; +resterions rester ver 1003.56 793.78 0.05 0.61 cnd:pre:1p; +resterons rester ver 1003.56 793.78 3.63 1.49 ind:fut:1p; +resteront rester ver 1003.56 793.78 3.98 2.23 ind:fut:3p; +restes rester ver 1003.56 793.78 44.15 6.28 ind:pre:2s;sub:pre:2s; +restez rester ver 1003.56 793.78 105.52 10.81 imp:pre:2p;ind:pre:2p; +restiez rester ver 1003.56 793.78 4.42 1.01 ind:imp:2p; +restions rester ver 1003.56 793.78 0.94 4.86 ind:imp:1p; +restituaient restituer ver 2.44 9.39 0 0.14 ind:imp:3p; +restituait restituer ver 2.44 9.39 0 1.49 ind:imp:3s; +restituant restituer ver 2.44 9.39 0 0.61 par:pre; +restitue restituer ver 2.44 9.39 0.43 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +restituent restituer ver 2.44 9.39 0.02 0.27 ind:pre:3p; +restituer restituer ver 2.44 9.39 1.1 2.84 inf; +restituera restituer ver 2.44 9.39 0.02 0.14 ind:fut:3s; +restituerai restituer ver 2.44 9.39 0.03 0 ind:fut:1s; +restituerait restituer ver 2.44 9.39 0 0.2 cnd:pre:3s; +restituerons restituer ver 2.44 9.39 0.14 0.07 ind:fut:1p; +restituez restituer ver 2.44 9.39 0.04 0 imp:pre:2p; +restituiez restituer ver 2.44 9.39 0 0.07 ind:imp:2p; +restitution restitution nom f s 0.28 0.88 0.28 0.88 +restitué restituer ver m s 2.44 9.39 0.38 0.81 par:pas; +restituée restituer ver f s 2.44 9.39 0.2 0.61 par:pas; +restituées restituer ver f p 2.44 9.39 0.04 0.27 par:pas; +restitués restituer ver m p 2.44 9.39 0.03 0.34 par:pas; +resto resto nom m s 10.47 1.62 9.36 1.42 +restons rester ver 1003.56 793.78 16.36 6.82 imp:pre:1p;ind:pre:1p; +restoroute restoroute nom m s 0.16 0.14 0.16 0.14 +restos resto nom m p 10.47 1.62 1.1 0.2 +restreignait restreindre ver 1.14 2.3 0 0.07 ind:imp:3s; +restreignant restreindre ver 1.14 2.3 0.02 0.07 par:pre; +restreignent restreindre ver 1.14 2.3 0 0.07 ind:pre:3p; +restreignez restreindre ver 1.14 2.3 0.01 0 ind:pre:2p; +restreignit restreindre ver 1.14 2.3 0 0.07 ind:pas:3s; +restreindre restreindre ver 1.14 2.3 0.3 0.41 inf; +restreins restreindre ver 1.14 2.3 0.04 0 imp:pre:2s;ind:pre:1s; +restreint restreindre ver m s 1.14 2.3 0.58 0.68 ind:pre:3s;par:pas; +restreinte restreint adj f s 0.54 5.41 0.2 1.42 +restreintes restreint adj f p 0.54 5.41 0.03 0.34 +restreints restreint adj m p 0.54 5.41 0.01 0.74 +restrictif restrictif adj m s 0.8 0.2 0.2 0.07 +restriction restriction nom f s 1.94 6.69 1.07 2.36 +restrictions restriction nom f p 1.94 6.69 0.88 4.32 +restrictive restrictif adj f s 0.8 0.2 0.58 0.07 +restrictives restrictif adj f p 0.8 0.2 0.02 0.07 +restructurant restructurer ver 0.94 0.07 0.01 0 par:pre; +restructuration restructuration nom f s 0.91 0.34 0.91 0.2 +restructurations restructuration nom f p 0.91 0.34 0 0.07 +restructurer restructurer ver 0.94 0.07 0.45 0 inf; +restructureront restructurer ver 0.94 0.07 0.01 0 ind:fut:3p; +restructurons restructurer ver 0.94 0.07 0 0.07 ind:pre:1p; +restructuré restructurer ver m s 0.94 0.07 0.34 0 par:pas; +restructurée restructurer ver f s 0.94 0.07 0.13 0 par:pas; +restâmes rester ver 1003.56 793.78 0.04 3.04 ind:pas:1p; +restât rester ver 1003.56 793.78 0.03 4.19 sub:imp:3s; +restèrent rester ver 1003.56 793.78 0.45 14.19 ind:pas:3p; +resté rester ver m s 1003.56 793.78 43.45 62.09 par:pas; +restée rester ver f s 1003.56 793.78 19.08 31.08 ind:imp:3p;par:pas; +restées rester ver f p 1003.56 793.78 1.62 6.01 par:pas; +restés rester ver m p 1003.56 793.78 10.74 21.08 par:pas; +resucée resucée nom f s 0.03 0.14 0.03 0.14 +resurgi resurgir ver m s 0.85 3.92 0.04 0.2 par:pas; +resurgies resurgir ver f p 0.85 3.92 0 0.14 par:pas; +resurgir resurgir ver 0.85 3.92 0.39 1.42 inf; +resurgira resurgir ver 0.85 3.92 0.05 0.07 ind:fut:3s; +resurgirai resurgir ver 0.85 3.92 0.01 0 ind:fut:1s; +resurgirait resurgir ver 0.85 3.92 0.01 0.07 cnd:pre:3s; +resurgirent resurgir ver 0.85 3.92 0 0.07 ind:pas:3p; +resurgiront resurgir ver 0.85 3.92 0 0.07 ind:fut:3p; +resurgis resurgir ver m p 0.85 3.92 0 0.07 par:pas; +resurgissaient resurgir ver 0.85 3.92 0 0.2 ind:imp:3p; +resurgissait resurgir ver 0.85 3.92 0.01 0.41 ind:imp:3s; +resurgissant resurgir ver 0.85 3.92 0.01 0.14 par:pre; +resurgisse resurgir ver 0.85 3.92 0.03 0.07 sub:pre:3s; +resurgissent resurgir ver 0.85 3.92 0.02 0.34 ind:pre:3p; +resurgit resurgir ver 0.85 3.92 0.28 0.61 ind:pre:3s;ind:pas:3s; +resurgît resurgir ver 0.85 3.92 0 0.07 sub:imp:3s; +retable retable nom m s 0.34 1.15 0.24 0.81 +retables retable nom m p 0.34 1.15 0.1 0.34 +retaillaient retailler ver 0.05 1.01 0 0.07 ind:imp:3p; +retaillait retailler ver 0.05 1.01 0 0.07 ind:imp:3s; +retaille retailler ver 0.05 1.01 0 0.14 ind:pre:1s;ind:pre:3s; +retailler retailler ver 0.05 1.01 0.02 0.27 inf; +retaillé retailler ver m s 0.05 1.01 0.01 0.27 par:pas; +retaillée retailler ver f s 0.05 1.01 0 0.07 par:pas; +retaillées retailler ver f p 0.05 1.01 0.01 0.07 par:pas; +retaillés retailler ver m p 0.05 1.01 0 0.07 par:pas; +retapa retaper ver 3.5 4.05 0 0.14 ind:pas:3s; +retapaient retaper ver 3.5 4.05 0 0.07 ind:imp:3p; +retapait retaper ver 3.5 4.05 0.01 0.14 ind:imp:3s; +retapant retaper ver 3.5 4.05 0 0.14 par:pre; +retape retaper ver 3.5 4.05 0.36 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retapent retaper ver 3.5 4.05 0.01 0.07 ind:pre:3p; +retaper retaper ver 3.5 4.05 1.6 1.28 inf; +retaperait retaper ver 3.5 4.05 0 0.07 cnd:pre:3s; +retapeur retapeur nom m s 0.01 0 0.01 0 +retapez retaper ver 3.5 4.05 0.08 0 imp:pre:2p;ind:pre:2p; +retapissant retapisser ver 0.32 3.31 0 0.07 par:pre; +retapisse retapisser ver 0.32 3.31 0.25 0.95 ind:pre:1s;ind:pre:3s; +retapissent retapisser ver 0.32 3.31 0 0.27 ind:pre:3p; +retapisser retapisser ver 0.32 3.31 0.05 0.88 inf; +retapisserait retapisser ver 0.32 3.31 0 0.07 cnd:pre:3s; +retapisses retapisser ver 0.32 3.31 0 0.07 ind:pre:2s; +retapissé retapisser ver m s 0.32 3.31 0.03 0.61 par:pas; +retapissée retapisser ver f s 0.32 3.31 0 0.34 par:pas; +retapissées retapisser ver f p 0.32 3.31 0 0.07 par:pas; +retapé retaper ver m s 3.5 4.05 1.14 1.01 par:pas; +retapée retaper ver f s 3.5 4.05 0.28 0.47 par:pas; +retapées retaper ver f p 3.5 4.05 0 0.14 par:pas; +retapés retaper ver m p 3.5 4.05 0.01 0.07 par:pas; +retard retard nom m s 126.45 46.62 125.65 43.45 +retarda retarder ver 11.89 14.53 0 0.47 ind:pas:3s; +retardaient retarder ver 11.89 14.53 0.01 0.54 ind:imp:3p; +retardais retarder ver 11.89 14.53 0.17 0.27 ind:imp:1s;ind:imp:2s; +retardait retarder ver 11.89 14.53 0.21 1.08 ind:imp:3s; +retardant retarder ver 11.89 14.53 0.03 0.88 par:pre; +retardataire retardataire adj s 0.33 0.68 0.32 0.47 +retardataires retardataire nom p 0.7 1.01 0.52 0.88 +retardateur retardateur nom m s 0.14 0 0.14 0 +retarde retarder ver 11.89 14.53 1.95 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retardement retardement nom m s 1.61 2.03 1.61 2.03 +retardent retarder ver 11.89 14.53 0.36 0.47 ind:pre:3p; +retarder retarder ver 11.89 14.53 3.09 4.46 inf;; +retardera retarder ver 11.89 14.53 0.24 0 ind:fut:3s; +retarderai retarder ver 11.89 14.53 0.04 0.14 ind:fut:1s; +retarderaient retarder ver 11.89 14.53 0.02 0.07 cnd:pre:3p; +retarderait retarder ver 11.89 14.53 0.1 0.41 cnd:pre:3s; +retarderez retarder ver 11.89 14.53 0.01 0 ind:fut:2p; +retarderiez retarder ver 11.89 14.53 0.01 0 cnd:pre:2p; +retardes retarder ver 11.89 14.53 0.87 0.14 ind:pre:2s; +retardez retarder ver 11.89 14.53 0.56 0.2 imp:pre:2p;ind:pre:2p; +retardions retarder ver 11.89 14.53 0 0.07 ind:imp:1p; +retardons retarder ver 11.89 14.53 0.2 0.14 imp:pre:1p;ind:pre:1p; +retards retard nom m p 126.45 46.62 0.81 3.18 +retardât retarder ver 11.89 14.53 0 0.07 sub:imp:3s; +retardèrent retarder ver 11.89 14.53 0 0.07 ind:pas:3p; +retardé retarder ver m s 11.89 14.53 2.9 2.36 par:pas; +retardée retarder ver f s 11.89 14.53 0.67 1.01 par:pas; +retardées retarder ver f p 11.89 14.53 0.06 0.07 par:pas; +retardés retarder ver m p 11.89 14.53 0.39 0.07 par:pas; +reteindre reteindre ver 0.12 0.2 0.11 0.07 inf; +reteints reteindre ver m p 0.12 0.2 0.01 0.14 par:pas; +retenaient retenir ver 71.58 143.92 0.42 4.66 ind:imp:3p; +retenais retenir ver 71.58 143.92 0.34 2.23 ind:imp:1s;ind:imp:2s; +retenait retenir ver 71.58 143.92 1.1 15.34 ind:imp:3s; +retenant retenir ver 71.58 143.92 0.7 8.78 par:pre; +retendait retendre ver 0.16 0.61 0 0.2 ind:imp:3s; +retendre retendre ver 0.16 0.61 0.01 0.2 inf; +retends retendre ver 0.16 0.61 0 0.07 ind:pre:2s; +retendu retendre ver m s 0.16 0.61 0.15 0.07 par:pas; +retendues retendre ver f p 0.16 0.61 0 0.07 par:pas; +retenez retenir ver 71.58 143.92 6.15 0.88 imp:pre:2p;ind:pre:2p; +reteniez retenir ver 71.58 143.92 0.05 0.07 ind:imp:2p; +retenions retenir ver 71.58 143.92 0.02 0.34 ind:imp:1p; +retenir retenir ver 71.58 143.92 19.63 38.65 inf; +retenons retenir ver 71.58 143.92 0.19 0.14 imp:pre:1p;ind:pre:1p; +retente retenter ver 0.7 0 0.23 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retenter retenter ver 0.7 0 0.44 0 inf; +retentes retenter ver 0.7 0 0.04 0 ind:pre:2s; +retenti retentir ver m s 2.86 25.34 0.48 2.16 par:pas; +retentir retentir ver 2.86 25.34 0.27 3.58 inf; +retentira retentir ver 2.86 25.34 0.15 0.2 ind:fut:3s; +retentirait retentir ver 2.86 25.34 0 0.34 cnd:pre:3s; +retentirent retentir ver 2.86 25.34 0 1.62 ind:pas:3p; +retentiront retentir ver 2.86 25.34 0.04 0.07 ind:fut:3p; +retentissaient retentir ver 2.86 25.34 0 1.76 ind:imp:3p; +retentissait retentir ver 2.86 25.34 0.04 2.43 ind:imp:3s; +retentissant retentissant adj m s 0.2 2.5 0.14 1.01 +retentissante retentissant adj f s 0.2 2.5 0.03 0.68 +retentissantes retentissant adj f p 0.2 2.5 0 0.2 +retentissants retentissant adj m p 0.2 2.5 0.03 0.61 +retentisse retentir ver 2.86 25.34 0.03 0.14 sub:pre:3s; +retentissement retentissement nom m s 0.02 1.55 0.02 1.55 +retentissent retentir ver 2.86 25.34 0.19 1.22 ind:pre:3p; +retentit retentir ver 2.86 25.34 1.62 11.01 ind:pre:3s;ind:pas:3s; +retenu retenir ver m s 71.58 143.92 10.2 21.22 par:pas; +retenue retenue nom f s 3.74 8.04 3.47 7.64 +retenues retenir ver f p 71.58 143.92 0.59 1.55 par:pas; +retenus retenir ver m p 71.58 143.92 0.98 4.12 par:pas; +retiendra retenir ver 71.58 143.92 0.68 0.54 ind:fut:3s; +retiendrai retenir ver 71.58 143.92 1.05 0.54 ind:fut:1s; +retiendraient retenir ver 71.58 143.92 0.01 0.2 cnd:pre:3p; +retiendrais retenir ver 71.58 143.92 0.2 0.14 cnd:pre:1s;cnd:pre:2s; +retiendrait retenir ver 71.58 143.92 0.11 1.08 cnd:pre:3s; +retiendras retenir ver 71.58 143.92 0.2 0 ind:fut:2s; +retiendrez retenir ver 71.58 143.92 0.14 0 ind:fut:2p; +retiendrions retenir ver 71.58 143.92 0 0.07 cnd:pre:1p; +retiendrons retenir ver 71.58 143.92 0.08 0.07 ind:fut:1p; +retiendront retenir ver 71.58 143.92 0.14 0.07 ind:fut:3p; +retienne retenir ver 71.58 143.92 0.89 0.61 sub:pre:1s;sub:pre:3s; +retiennent retenir ver 71.58 143.92 1.69 3.58 ind:pre:3p; +retiennes retenir ver 71.58 143.92 0.22 0 sub:pre:2s; +retiens retenir ver 71.58 143.92 12.91 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +retient retenir ver 71.58 143.92 9.17 13.11 ind:pre:3s; +retinrent retenir ver 71.58 143.92 0.14 1.01 ind:pas:3p; +retins retenir ver 71.58 143.92 0.02 1.82 ind:pas:1s; +retint retenir ver 71.58 143.92 0.35 11.22 ind:pas:3s; +retira retirer ver 80.26 98.31 0.45 15.81 ind:pas:3s; +retirable retirable adj f s 0.01 0 0.01 0 +retirai retirer ver 80.26 98.31 0.01 1.76 ind:pas:1s; +retiraient retirer ver 80.26 98.31 0.14 1.69 ind:imp:3p; +retirais retirer ver 80.26 98.31 0.23 0.68 ind:imp:1s;ind:imp:2s; +retirait retirer ver 80.26 98.31 0.45 7.16 ind:imp:3s; +retirant retirer ver 80.26 98.31 0.38 3.58 par:pre; +retire retirer ver 80.26 98.31 21.56 14.8 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +retirement retirement nom m s 0.14 0 0.14 0 +retirent retirer ver 80.26 98.31 1.19 1.42 ind:pre:3p; +retirer retirer ver 80.26 98.31 27.39 21.96 inf;; +retirera retirer ver 80.26 98.31 0.72 0.68 ind:fut:3s; +retirerai retirer ver 80.26 98.31 0.38 0.54 ind:fut:1s; +retireraient retirer ver 80.26 98.31 0.28 0.34 cnd:pre:3p; +retirerais retirer ver 80.26 98.31 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +retirerait retirer ver 80.26 98.31 0.32 0.61 cnd:pre:3s; +retireras retirer ver 80.26 98.31 0.14 0.07 ind:fut:2s; +retirerez retirer ver 80.26 98.31 0.09 0 ind:fut:2p; +retireriez retirer ver 80.26 98.31 0 0.07 cnd:pre:2p; +retirerions retirer ver 80.26 98.31 0 0.07 cnd:pre:1p; +retirerons retirer ver 80.26 98.31 0.23 0.07 ind:fut:1p; +retireront retirer ver 80.26 98.31 0.32 0.14 ind:fut:3p; +retires retirer ver 80.26 98.31 1.45 0.27 ind:pre:2s; +retirez retirer ver 80.26 98.31 6.2 0.95 imp:pre:2p;ind:pre:2p; +retiriez retirer ver 80.26 98.31 0.24 0.07 ind:imp:2p; +retirions retirer ver 80.26 98.31 0.15 0.27 ind:imp:1p; +retiro retiro nom m s 0.1 0.07 0.1 0.07 +retirons retirer ver 80.26 98.31 0.83 0.14 imp:pre:1p;ind:pre:1p; +retirâmes retirer ver 80.26 98.31 0.01 0.07 ind:pas:1p; +retirât retirer ver 80.26 98.31 0 0.2 sub:imp:3s; +retirèrent retirer ver 80.26 98.31 0.21 1.55 ind:pas:3p; +retiré retirer ver m s 80.26 98.31 12.7 15.07 par:pas; +retirée retirer ver f s 80.26 98.31 2.02 4.73 par:pas; +retirées retirer ver f p 80.26 98.31 0.68 0.74 par:pas; +retirés retirer ver m p 80.26 98.31 1.36 2.77 par:pas; +retissaient retisser ver 0 0.34 0 0.07 ind:imp:3p; +retissait retisser ver 0 0.34 0 0.07 ind:imp:3s; +retisser retisser ver 0 0.34 0 0.2 inf; +retomba retomber ver 11.04 58.58 0.28 7.23 ind:pas:3s; +retombai retomber ver 11.04 58.58 0 0.27 ind:pas:1s; +retombaient retomber ver 11.04 58.58 0.15 3.45 ind:imp:3p; +retombais retomber ver 11.04 58.58 0.26 0.68 ind:imp:1s;ind:imp:2s; +retombait retomber ver 11.04 58.58 0.15 6.35 ind:imp:3s; +retombant retomber ver 11.04 58.58 0.02 2.84 par:pre; +retombante retombant adj f s 0.02 0.61 0 0.14 +retombantes retombant adj f p 0.02 0.61 0 0.14 +retombe retomber ver 11.04 58.58 3.89 9.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retombement retombement nom m s 0 0.14 0 0.14 +retombent retomber ver 11.04 58.58 0.7 2.7 ind:pre:3p; +retomber retomber ver 11.04 58.58 2.74 15.95 inf; +retombera retomber ver 11.04 58.58 0.69 0.68 ind:fut:3s; +retomberai retomber ver 11.04 58.58 0.06 0 ind:fut:1s; +retomberaient retomber ver 11.04 58.58 0.01 0.27 cnd:pre:3p; +retomberais retomber ver 11.04 58.58 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +retomberait retomber ver 11.04 58.58 0.27 0.47 cnd:pre:3s; +retomberas retomber ver 11.04 58.58 0.05 0.07 ind:fut:2s; +retomberez retomber ver 11.04 58.58 0.03 0 ind:fut:2p; +retomberont retomber ver 11.04 58.58 0 0.07 ind:fut:3p; +retombes retomber ver 11.04 58.58 0.25 0.14 ind:pre:2s; +retombez retomber ver 11.04 58.58 0.17 0.07 imp:pre:2p;ind:pre:2p; +retombions retomber ver 11.04 58.58 0 0.27 ind:imp:1p; +retombons retomber ver 11.04 58.58 0.12 0.41 imp:pre:1p;ind:pre:1p; +retombâmes retomber ver 11.04 58.58 0 0.14 ind:pas:1p; +retombât retomber ver 11.04 58.58 0 0.14 sub:imp:3s; +retombèrent retomber ver 11.04 58.58 0 0.81 ind:pas:3p; +retombé retomber ver m s 11.04 58.58 0.71 3.65 par:pas; +retombée retomber ver f s 11.04 58.58 0.28 1.96 par:pas; +retombées retombée nom f p 0.79 2.36 0.73 1.01 +retombés retomber ver m p 11.04 58.58 0.19 0.34 par:pas; +retordre retordre ver 1.29 0.61 1.29 0.61 inf; +retors retors adj m 0.53 1.69 0.48 1.28 +retorse retors adj f s 0.53 1.69 0.03 0.41 +retorses retors adj f p 0.53 1.69 0.02 0 +retoucha retoucher ver 1.98 2.09 0 0.14 ind:pas:3s; +retouchai retoucher ver 1.98 2.09 0 0.14 ind:pas:1s; +retouchait retoucher ver 1.98 2.09 0.01 0.2 ind:imp:3s; +retouchant retoucher ver 1.98 2.09 0 0.14 par:pre; +retouche retouche nom f s 1.3 2.3 0.61 0.74 +retouchent retoucher ver 1.98 2.09 0.01 0.07 ind:pre:3p; +retoucher retoucher ver 1.98 2.09 1.1 0.54 inf; +retouchera retoucher ver 1.98 2.09 0.03 0 ind:fut:3s; +retoucherais retoucher ver 1.98 2.09 0 0.07 cnd:pre:1s; +retoucherait retoucher ver 1.98 2.09 0 0.14 cnd:pre:3s; +retouches retouche nom f p 1.3 2.3 0.69 1.55 +retoucheur retoucheur nom m s 0.01 0 0.01 0 +retouchez retoucher ver 1.98 2.09 0.07 0 imp:pre:2p;ind:pre:2p; +retouché retoucher ver m s 1.98 2.09 0.2 0.2 par:pas; +retouchée retoucher ver f s 1.98 2.09 0.22 0.14 par:pas; +retouchées retoucher ver f p 1.98 2.09 0.02 0.07 par:pas; +retouchés retoucher ver m p 1.98 2.09 0.02 0.2 par:pas; +retour retour nom m s 138.94 158.65 138.02 153.31 +retourna retourner ver 245.35 290.88 1.14 61.62 ind:pas:3s; +retournai retourner ver 245.35 290.88 0.22 6.55 ind:pas:1s; +retournaient retourner ver 245.35 290.88 0.15 4.8 ind:imp:3p; +retournais retourner ver 245.35 290.88 0.96 3.85 ind:imp:1s;ind:imp:2s; +retournait retourner ver 245.35 290.88 0.93 18.51 ind:imp:3s; +retournant retourner ver 245.35 290.88 0.69 16.89 par:pre; +retourne retourner ver 245.35 290.88 77.27 50.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +retournement retournement nom m s 0.86 2.91 0.82 2.3 +retournements retournement nom m p 0.86 2.91 0.04 0.61 +retournent retourner ver 245.35 290.88 2.29 5 ind:pre:3p; +retourner retourner ver 245.35 290.88 76.96 57.16 inf;;inf;;inf;;inf;; +retournera retourner ver 245.35 290.88 3.56 1.08 ind:fut:3s; +retournerai retourner ver 245.35 290.88 5.58 1.89 ind:fut:1s; +retourneraient retourner ver 245.35 290.88 0.14 0.68 cnd:pre:3p; +retournerais retourner ver 245.35 290.88 0.6 1.01 cnd:pre:1s;cnd:pre:2s; +retournerait retourner ver 245.35 290.88 0.77 1.96 cnd:pre:3s; +retourneras retourner ver 245.35 290.88 1.86 0.2 ind:fut:2s; +retournerez retourner ver 245.35 290.88 0.79 0.34 ind:fut:2p; +retourneriez retourner ver 245.35 290.88 0.13 0 cnd:pre:2p; +retournerions retourner ver 245.35 290.88 0.02 0.14 cnd:pre:1p; +retournerons retourner ver 245.35 290.88 0.98 0.68 ind:fut:1p; +retourneront retourner ver 245.35 290.88 0.73 0.41 ind:fut:3p; +retournes retourner ver 245.35 290.88 10.4 1.42 ind:pre:2s;sub:pre:2s; +retournez retourner ver 245.35 290.88 23.55 2.36 imp:pre:2p;ind:pre:2p; +retourniez retourner ver 245.35 290.88 0.8 0.2 ind:imp:2p; +retournions retourner ver 245.35 290.88 0.13 0.95 ind:imp:1p; +retournons retourner ver 245.35 290.88 9.53 1.22 imp:pre:1p;ind:pre:1p; +retournâmes retourner ver 245.35 290.88 0 0.81 ind:pas:1p; +retournât retourner ver 245.35 290.88 0 0.54 sub:imp:3s; +retournèrent retourner ver 245.35 290.88 0.17 4.39 ind:pas:3p; +retourné retourner ver m s 245.35 290.88 15.05 26.69 par:pas; +retournée retourner ver f s 245.35 290.88 7.81 11.82 par:pas; +retournées retourner ver f p 245.35 290.88 0.34 1.89 par:pas; +retournés retourner ver m p 245.35 290.88 1.79 5.27 par:pas; +retours retour nom m p 138.94 158.65 0.92 5.34 +retrace retracer ver 1.5 3.58 0.16 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retracent retracer ver 1.5 3.58 0.04 0.14 ind:pre:3p; +retracer retracer ver 1.5 3.58 1.03 1.55 inf; +retracera retracer ver 1.5 3.58 0.01 0.07 ind:fut:3s; +retracerais retracer ver 1.5 3.58 0 0.07 cnd:pre:1s; +retracerait retracer ver 1.5 3.58 0.01 0.07 cnd:pre:3s; +retraceront retracer ver 1.5 3.58 0.01 0 ind:fut:3p; +retracez retracer ver 1.5 3.58 0.05 0 imp:pre:2p; +retracions retracer ver 1.5 3.58 0.01 0.07 ind:imp:1p; +retracé retracer ver m s 1.5 3.58 0.13 0.14 par:pas; +retracée retracer ver f s 1.5 3.58 0 0.07 par:pas; +retraduction retraduction nom f s 0.01 0 0.01 0 +retraduit retraduire ver m s 0.01 0.14 0.01 0.14 ind:pre:3s;par:pas; +retraire retraire ver 0.12 0.07 0.01 0 inf; +retrait retrait nom m s 4.87 13.72 4.63 13.04 +retraitait retraiter ver 0.79 0.61 0 0.14 ind:imp:3s; +retraite retraite nom f s 39.45 40.14 38.3 38.78 +retraitement retraitement nom m s 0.06 0.07 0.06 0.07 +retraites retraite nom f p 39.45 40.14 1.16 1.35 +retraitions retraiter ver 0.79 0.61 0 0.07 ind:imp:1p; +retraits retrait nom m p 4.87 13.72 0.24 0.68 +retraité retraité nom m s 2.25 5.95 1.17 3.31 +retraitée retraité nom f s 2.25 5.95 0.11 0.14 +retraitées retraité nom f p 2.25 5.95 0.1 0.07 +retraités retraité nom m p 2.25 5.95 0.86 2.43 +retranchai retrancher ver 1 7.64 0 0.07 ind:pas:1s; +retranchaient retrancher ver 1 7.64 0.01 0.14 ind:imp:3p; +retranchait retrancher ver 1 7.64 0 0.68 ind:imp:3s; +retranchant retrancher ver 1 7.64 0.02 0.14 par:pre; +retranche retrancher ver 1 7.64 0.04 0.47 ind:pre:3s; +retranchement retranchement nom m s 0.2 1.69 0.03 0.41 +retranchements retranchement nom m p 0.2 1.69 0.17 1.28 +retranchent retrancher ver 1 7.64 0.04 0.34 ind:pre:3p; +retrancher retrancher ver 1 7.64 0.29 1.01 inf; +retranchera retrancher ver 1 7.64 0.01 0.07 ind:fut:3s; +retranchez retrancher ver 1 7.64 0.01 0.07 imp:pre:2p;ind:pre:2p; +retranchions retrancher ver 1 7.64 0 0.07 ind:imp:1p; +retranché retrancher ver m s 1 7.64 0.47 2.23 par:pas; +retranchée retrancher ver f s 1 7.64 0.02 1.08 par:pas; +retranchées retrancher ver f p 1 7.64 0 0.14 par:pas; +retranchés retrancher ver m p 1 7.64 0.09 1.15 par:pas; +retranscription retranscription nom f s 0.03 0 0.03 0 +retranscrire retranscrire ver 0.26 0.34 0.21 0.07 inf; +retranscris retranscrire ver 0.26 0.34 0.01 0.14 ind:pre:1s; +retranscrit retranscrire ver m s 0.26 0.34 0.04 0.07 ind:pre:3s;par:pas; +retranscrits retranscrire ver m p 0.26 0.34 0 0.07 par:pas; +retransforme retransformer ver 0.2 0.07 0.02 0.07 ind:pre:1s; +retransformer retransformer ver 0.2 0.07 0.16 0 inf; +retransformera retransformer ver 0.2 0.07 0.02 0 ind:fut:3s; +retransférer retransférer ver 0.01 0 0.01 0 inf; +retransmet retransmettre ver 1.03 0.74 0.05 0.07 ind:pre:3s; +retransmettait retransmettre ver 1.03 0.74 0.01 0 ind:imp:3s; +retransmettant retransmettre ver 1.03 0.74 0.01 0 par:pre; +retransmettez retransmettre ver 1.03 0.74 0.02 0 imp:pre:2p;ind:pre:2p; +retransmettra retransmettre ver 1.03 0.74 0.02 0 ind:fut:3s; +retransmettre retransmettre ver 1.03 0.74 0.25 0 inf; +retransmettrons retransmettre ver 1.03 0.74 0.11 0 ind:fut:1p; +retransmis retransmettre ver m 1.03 0.74 0.39 0.34 ind:pas:1s;par:pas;par:pas; +retransmise retransmettre ver f s 1.03 0.74 0.16 0.27 par:pas; +retransmission retransmission nom f s 0.47 0.47 0.36 0.34 +retransmissions retransmission nom f p 0.47 0.47 0.11 0.14 +retransmit retransmettre ver 1.03 0.74 0.01 0.07 ind:pas:3s; +retravaillait retravailler ver 3.12 0.2 0.03 0 ind:imp:3s; +retravaille retravailler ver 3.12 0.2 0.65 0 ind:pre:1s;ind:pre:3s; +retravaillent retravailler ver 3.12 0.2 0.01 0 ind:pre:3p; +retravailler retravailler ver 3.12 0.2 1.89 0.14 inf; +retravaillera retravailler ver 3.12 0.2 0.05 0 ind:fut:3s; +retravaillerai retravailler ver 3.12 0.2 0.04 0 ind:fut:1s; +retravaillerait retravailler ver 3.12 0.2 0.03 0 cnd:pre:3s; +retravaillerez retravailler ver 3.12 0.2 0.01 0 ind:fut:2p; +retravailles retravailler ver 3.12 0.2 0.17 0 ind:pre:2s; +retravaillez retravailler ver 3.12 0.2 0.13 0 imp:pre:2p;ind:pre:2p; +retravaillé retravailler ver m s 3.12 0.2 0.09 0.07 par:pas; +retravaillée retravailler ver f s 3.12 0.2 0.02 0 par:pas; +retraversa retraverser ver 0.17 3.04 0 0.41 ind:pas:3s; +retraversai retraverser ver 0.17 3.04 0 0.2 ind:pas:1s; +retraversaient retraverser ver 0.17 3.04 0 0.07 ind:imp:3p; +retraversais retraverser ver 0.17 3.04 0 0.07 ind:imp:1s; +retraversait retraverser ver 0.17 3.04 0 0.07 ind:imp:3s; +retraversant retraverser ver 0.17 3.04 0 0.27 par:pre; +retraverse retraverser ver 0.17 3.04 0.03 0.27 ind:pre:1s;ind:pre:3s; +retraversent retraverser ver 0.17 3.04 0 0.07 ind:pre:3p; +retraverser retraverser ver 0.17 3.04 0.12 0.81 inf; +retraverserait retraverser ver 0.17 3.04 0 0.07 cnd:pre:3s; +retraversions retraverser ver 0.17 3.04 0 0.07 ind:imp:1p; +retraversons retraverser ver 0.17 3.04 0.01 0.2 imp:pre:1p;ind:pre:1p; +retraversé retraverser ver m s 0.17 3.04 0.01 0.27 par:pas; +retraversée retraverser ver f s 0.17 3.04 0 0.2 par:pas; +retraçaient retracer ver 1.5 3.58 0 0.2 ind:imp:3p; +retraçais retracer ver 1.5 3.58 0 0.07 ind:imp:1s; +retraçait retracer ver 1.5 3.58 0.01 0.68 ind:imp:3s; +retraçant retracer ver 1.5 3.58 0.04 0.27 par:pre; +retreinte retreinte nom f s 0.01 0 0.01 0 +retrempai retremper ver 0.01 0.95 0 0.07 ind:pas:1s; +retrempaient retremper ver 0.01 0.95 0.01 0.14 ind:imp:3p; +retrempait retremper ver 0.01 0.95 0 0.07 ind:imp:3s; +retremper retremper ver 0.01 0.95 0 0.54 inf; +retrempé retremper ver m s 0.01 0.95 0 0.14 par:pas; +retriever retriever nom m s 0.17 0 0.17 0 +retroussa retrousser ver 0.92 9.46 0.01 0.54 ind:pas:3s; +retroussage retroussage nom m s 0 0.07 0 0.07 +retroussaient retrousser ver 0.92 9.46 0 0.2 ind:imp:3p; +retroussais retrousser ver 0.92 9.46 0 0.07 ind:imp:1s; +retroussait retrousser ver 0.92 9.46 0 1.28 ind:imp:3s; +retroussant retrousser ver 0.92 9.46 0 1.55 par:pre; +retrousse retrousser ver 0.92 9.46 0.39 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retroussent retrousser ver 0.92 9.46 0 0.27 ind:pre:3p; +retrousser retrousser ver 0.92 9.46 0.21 0.95 inf; +retroussette retroussette nom f s 0 0.27 0 0.27 +retroussez retrousser ver 0.92 9.46 0.14 0 imp:pre:2p; +retroussis retroussis nom m 0 0.41 0 0.41 +retroussé retroussé adj m s 0.35 6.49 0.2 1.89 +retroussée retroussé adj f s 0.35 6.49 0.01 1.08 +retroussées retroussé adj f p 0.35 6.49 0.03 3.11 +retroussés retroussé adj m p 0.35 6.49 0.11 0.41 +retrouva retrouver ver 295.17 416.22 1.6 28.24 ind:pas:3s; +retrouvai retrouver ver 295.17 416.22 0.32 13.85 ind:pas:1s; +retrouvaient retrouver ver 295.17 416.22 0.48 9.05 ind:imp:3p; +retrouvaille retrouvaille nom f s 2.46 6.82 0.03 0.47 +retrouvailles retrouvaille nom f p 2.46 6.82 2.43 6.35 +retrouvais retrouver ver 295.17 416.22 1.42 12.77 ind:imp:1s;ind:imp:2s; +retrouvait retrouver ver 295.17 416.22 1.89 31.01 ind:imp:3s; +retrouvant retrouver ver 295.17 416.22 0.47 9.86 par:pre; +retrouvas retrouver ver 295.17 416.22 0 0.07 ind:pas:2s; +retrouve retrouver ver 295.17 416.22 61.54 47.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +retrouvent retrouver ver 295.17 416.22 4.47 7.23 ind:pre:3p; +retrouver retrouver ver 295.17 416.22 100.9 125.2 inf;;inf;;inf;; +retrouvera retrouver ver 295.17 416.22 11.55 5.07 ind:fut:3s; +retrouverai retrouver ver 295.17 416.22 8.23 3.04 ind:fut:1s; +retrouveraient retrouver ver 295.17 416.22 0.26 2.43 cnd:pre:3p; +retrouverais retrouver ver 295.17 416.22 1.24 3.11 cnd:pre:1s;cnd:pre:2s; +retrouverait retrouver ver 295.17 416.22 1.17 6.62 cnd:pre:3s; +retrouveras retrouver ver 295.17 416.22 3.36 0.95 ind:fut:2s; +retrouverez retrouver ver 295.17 416.22 3.13 0.95 ind:fut:2p; +retrouveriez retrouver ver 295.17 416.22 0.09 0.27 cnd:pre:2p; +retrouverions retrouver ver 295.17 416.22 0.06 0.81 cnd:pre:1p; +retrouverons retrouver ver 295.17 416.22 2.52 2.3 ind:fut:1p; +retrouveront retrouver ver 295.17 416.22 2.21 1.42 ind:fut:3p; +retrouves retrouver ver 295.17 416.22 5.05 1.28 ind:pre:2s;sub:pre:2s; +retrouvez retrouver ver 295.17 416.22 5.79 0.81 imp:pre:2p;ind:pre:2p; +retrouviez retrouver ver 295.17 416.22 0.72 0.34 ind:imp:2p;sub:pre:2p; +retrouvions retrouver ver 295.17 416.22 0.47 5.41 ind:imp:1p; +retrouvons retrouver ver 295.17 416.22 3.6 3.85 imp:pre:1p;ind:pre:1p; +retrouvâmes retrouver ver 295.17 416.22 0.04 2.16 ind:pas:1p; +retrouvât retrouver ver 295.17 416.22 0 0.68 sub:imp:3s; +retrouvèrent retrouver ver 295.17 416.22 0.36 6.42 ind:pas:3p; +retrouvé retrouver ver m s 295.17 416.22 50.38 55 par:pas;par:pas;par:pas; +retrouvée retrouver ver f s 295.17 416.22 13.51 15.2 par:pas; +retrouvées retrouver ver f p 295.17 416.22 1.9 2.64 par:pas; +retrouvés retrouver ver m p 295.17 416.22 6.44 10.61 par:pas; +rets rets nom m 0.12 0.27 0.12 0.27 +retsina retsina nom m s 0.13 0 0.13 0 +retuber retuber ver 0.03 0 0.03 0 inf; +retuer retuer ver 0.08 0.07 0.01 0 inf; +retâté retâter ver m s 0 0.07 0 0.07 par:pas; +retéléphone retéléphoner ver 0.29 0.07 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retéléphoner retéléphoner ver 0.29 0.07 0.15 0 inf; +retînmes retenir ver 71.58 143.92 0 0.14 ind:pas:1p; +retînt retenir ver 71.58 143.92 0 0.34 sub:imp:3s; +reubeu reubeu nom m s 0.01 0.61 0.01 0.47 +reubeus reubeu nom m p 0.01 0.61 0 0.14 +revalidation revalidation nom f s 0.01 0 0.01 0 +revalider revalider ver 0.02 0 0.02 0 inf; +revaloir revaloir ver 3.46 0.74 0.11 0.07 inf; +revalorisait revaloriser ver 0.03 0.34 0 0.14 ind:imp:3s; +revalorisation revalorisation nom f s 0 0.14 0 0.14 +revalorisent revaloriser ver 0.03 0.34 0 0.07 ind:pre:3p; +revaloriser revaloriser ver 0.03 0.34 0.02 0 inf; +revalorisé revaloriser ver m s 0.03 0.34 0.01 0.14 par:pas; +revancha revancher ver 0 0.34 0 0.07 ind:pas:3s; +revanchaient revancher ver 0 0.34 0 0.07 ind:imp:3p; +revanchard revanchard adj m s 0.06 0.34 0.04 0.14 +revancharde revanchard adj f s 0.06 0.34 0.02 0.07 +revanchardes revanchard adj f p 0.06 0.34 0 0.14 +revanchards revanchard nom m p 0.03 0.27 0 0.27 +revanche revanche nom f s 13.81 41.62 13.73 41.01 +revanchent revancher ver 0 0.34 0 0.07 ind:pre:3p; +revancher revancher ver 0 0.34 0 0.14 inf; +revanches revanche nom f p 13.81 41.62 0.08 0.61 +revaudra revaloir ver 3.46 0.74 0.25 0.07 ind:fut:3s; +revaudrai revaloir ver 3.46 0.74 2.8 0.54 ind:fut:1s; +revaudraient revaloir ver 3.46 0.74 0.01 0 cnd:pre:3p; +revaudrais revaloir ver 3.46 0.74 0.13 0 cnd:pre:1s;cnd:pre:2s; +revaudrait revaloir ver 3.46 0.74 0.02 0.07 cnd:pre:3s; +revaudras revaloir ver 3.46 0.74 0.13 0 ind:fut:2s; +revenaient revenir ver 618.62 490.54 1.27 17.64 ind:imp:3p; +revenais revenir ver 618.62 490.54 3.95 8.24 ind:imp:1s;ind:imp:2s; +revenait revenir ver 618.62 490.54 7.47 56.76 ind:imp:3s; +revenant revenir ver 618.62 490.54 4.49 17.23 par:pre; +revenante revenant adj f s 0.35 1.69 0.23 0.27 +revenants revenant nom m p 1.82 3.99 0.95 1.55 +revend revendre ver 6.75 6.89 0.51 0.14 ind:pre:3s; +revendable revendable adj s 0.01 0.07 0.01 0.07 +revendaient revendre ver 6.75 6.89 0.01 0.34 ind:imp:3p; +revendais revendre ver 6.75 6.89 0.02 0 ind:imp:1s; +revendait revendre ver 6.75 6.89 0.39 0.54 ind:imp:3s; +revendant revendre ver 6.75 6.89 0.09 0.07 par:pre; +revendent revendre ver 6.75 6.89 0.29 0.34 ind:pre:3p; +revendes revendre ver 6.75 6.89 0 0.07 sub:pre:2s; +revendeur revendeur nom m s 1.23 0.88 0.86 0.47 +revendeurs revendeur nom m p 1.23 0.88 0.34 0.34 +revendeuse revendeur nom f s 1.23 0.88 0.03 0.07 +revendez revendre ver 6.75 6.89 0.14 0 imp:pre:2p;ind:pre:2p; +revendicateur revendicateur adj m s 0 0.27 0 0.07 +revendicateurs revendicateur nom m p 0 0.07 0 0.07 +revendicatif revendicatif adj m s 0 0.27 0 0.07 +revendicatifs revendicatif adj m p 0 0.27 0 0.07 +revendication revendication nom f s 1.98 3.78 0.94 1.42 +revendications revendication nom f p 1.98 3.78 1.04 2.36 +revendicative revendicatif adj f s 0 0.27 0 0.07 +revendicatives revendicatif adj f p 0 0.27 0 0.07 +revendicatrice revendicateur adj f s 0 0.27 0 0.14 +revendicatrices revendicateur adj f p 0 0.27 0 0.07 +revendiqua revendiquer ver 2.89 5.07 0.01 0.07 ind:pas:3s; +revendiquai revendiquer ver 2.89 5.07 0 0.07 ind:pas:1s; +revendiquaient revendiquer ver 2.89 5.07 0 0.34 ind:imp:3p; +revendiquais revendiquer ver 2.89 5.07 0.02 0.2 ind:imp:1s;ind:imp:2s; +revendiquait revendiquer ver 2.89 5.07 0.03 0.61 ind:imp:3s; +revendiquant revendiquer ver 2.89 5.07 0.17 0.47 par:pre; +revendique revendiquer ver 2.89 5.07 0.73 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +revendiquent revendiquer ver 2.89 5.07 0.12 0.34 ind:pre:3p; +revendiquer revendiquer ver 2.89 5.07 0.82 1.42 inf; +revendiquera revendiquer ver 2.89 5.07 0.04 0.07 ind:fut:3s; +revendiquerais revendiquer ver 2.89 5.07 0.01 0 cnd:pre:2s; +revendiquerait revendiquer ver 2.89 5.07 0 0.07 cnd:pre:3s; +revendiquez revendiquer ver 2.89 5.07 0.02 0.14 imp:pre:2p;ind:pre:2p; +revendiquons revendiquer ver 2.89 5.07 0.02 0.14 imp:pre:1p;ind:pre:1p; +revendiquât revendiquer ver 2.89 5.07 0 0.07 sub:imp:3s; +revendiqué revendiquer ver m s 2.89 5.07 0.69 0.27 par:pas; +revendiquée revendiquer ver f s 2.89 5.07 0.2 0.07 par:pas; +revendis revendre ver 6.75 6.89 0 0.07 ind:pas:1s; +revendit revendre ver 6.75 6.89 0 0.47 ind:pas:3s; +revendra revendre ver 6.75 6.89 0.13 0 ind:fut:3s; +revendrai revendre ver 6.75 6.89 0.29 0.14 ind:fut:1s; +revendraient revendre ver 6.75 6.89 0 0.07 cnd:pre:3p; +revendrais revendre ver 6.75 6.89 0.13 0 cnd:pre:1s; +revendrait revendre ver 6.75 6.89 0.01 0.14 cnd:pre:3s; +revendre revendre ver 6.75 6.89 3.25 2.91 inf; +revendrons revendre ver 6.75 6.89 0.03 0 ind:fut:1p; +revendront revendre ver 6.75 6.89 0.03 0 ind:fut:3p; +revends revendre ver 6.75 6.89 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revendu revendre ver m s 6.75 6.89 0.55 0.95 par:pas; +revendue revendre ver f s 6.75 6.89 0.12 0.14 par:pas; +revendues revendre ver f p 6.75 6.89 0.28 0 par:pas; +revendus revendre ver m p 6.75 6.89 0.14 0.27 par:pas; +revenez revenir ver 618.62 490.54 33.64 6.49 imp:pre:2p;ind:pre:2p; +reveniez revenir ver 618.62 490.54 1.13 0.54 ind:imp:2p;sub:pre:2p; +revenions revenir ver 618.62 490.54 0.8 2.03 ind:imp:1p; +revenir revenir ver 618.62 490.54 105.46 76.28 inf; +revenons revenir ver 618.62 490.54 8.01 4.59 imp:pre:1p;ind:pre:1p; +revente revente nom f s 0.28 0.34 0.27 0.2 +reventes revente nom f p 0.28 0.34 0.01 0.14 +revenu revenir ver m s 618.62 490.54 57.3 42.43 par:pas; +revenue revenir ver f s 618.62 490.54 23.46 19.32 par:pas; +revenues revenir ver f p 618.62 490.54 1.5 2.03 par:pas; +revenus revenir ver m p 618.62 490.54 8.69 9.46 par:pas; +reverdi reverdir ver m s 0.17 1.08 0.14 0.2 par:pas; +reverdie reverdir ver f s 0.17 1.08 0 0.2 par:pas; +reverdies reverdir ver f p 0.17 1.08 0 0.14 par:pas; +reverdir reverdir ver 0.17 1.08 0.02 0.2 inf; +reverdiront reverdir ver 0.17 1.08 0 0.07 ind:fut:3p; +reverdissaient reverdir ver 0.17 1.08 0 0.14 ind:imp:3p; +reverdit reverdir ver 0.17 1.08 0.02 0.14 ind:pre:3s; +reverni revernir ver m s 0.04 0.07 0.01 0 par:pas; +revernie revernir ver f s 0.04 0.07 0.01 0.07 par:pas; +revernir revernir ver 0.04 0.07 0.01 0 inf; +reverra revoir ver 162.84 139.46 14.31 3.24 ind:fut:3s; +reverrai revoir ver 162.84 139.46 9.07 4.05 ind:fut:1s; +reverraient revoir ver 162.84 139.46 0.03 0.88 cnd:pre:3p; +reverrais revoir ver 162.84 139.46 1.15 1.76 cnd:pre:1s;cnd:pre:2s; +reverrait revoir ver 162.84 139.46 1.09 3.38 cnd:pre:3s; +reverras revoir ver 162.84 139.46 5.3 0.95 ind:fut:2s; +reverrez revoir ver 162.84 139.46 2.74 0.47 ind:fut:2p; +reverrions revoir ver 162.84 139.46 0.4 0.27 cnd:pre:1p; +reverrons revoir ver 162.84 139.46 5.41 2.77 ind:fut:1p; +reverront revoir ver 162.84 139.46 0.55 0.74 ind:fut:3p; +revers revers nom m 3.6 25 3.6 25 +reversa reverser ver 0.48 1.22 0 0.27 ind:pas:3s; +reversaient reverser ver 0.48 1.22 0.01 0 ind:imp:3p; +reversait reverser ver 0.48 1.22 0.02 0.07 ind:imp:3s; +reversant reverser ver 0.48 1.22 0 0.07 par:pre; +reverse reverser ver 0.48 1.22 0.08 0.34 imp:pre:2s;ind:pre:3s; +reverser reverser ver 0.48 1.22 0.09 0.14 inf; +reverserait reverser ver 0.48 1.22 0 0.07 cnd:pre:3s; +reversez reverser ver 0.48 1.22 0.11 0 imp:pre:2p; +reversé reverser ver m s 0.48 1.22 0.17 0.27 par:pas; +reveuille revouloir ver 0.45 0.41 0 0.07 sub:pre:1s; +reveulent revouloir ver 0.45 0.41 0.02 0.07 ind:pre:3p; +reveux revouloir ver 0.45 0.41 0.24 0.07 ind:pre:1s;ind:pre:2s; +revida revider ver 0 0.14 0 0.07 ind:pas:3s; +revidèrent revider ver 0 0.14 0 0.07 ind:pas:3p; +reviendra revenir ver 618.62 490.54 34.49 11.62 ind:fut:3s;inf; +reviendrai revenir ver 618.62 490.54 29.57 8.65 ind:fut:1s; +reviendraient revenir ver 618.62 490.54 0.99 1.96 cnd:pre:3p; +reviendrais revenir ver 618.62 490.54 5.8 1.76 cnd:pre:1s;cnd:pre:2s; +reviendrait revenir ver 618.62 490.54 5.18 11.76 cnd:pre:3s; +reviendras revenir ver 618.62 490.54 7.64 2.09 ind:fut:2s; +reviendrez revenir ver 618.62 490.54 4.05 2.64 ind:fut:2p; +reviendriez revenir ver 618.62 490.54 0.7 0.34 cnd:pre:2p; +reviendrions revenir ver 618.62 490.54 0.11 0.27 cnd:pre:1p; +reviendrons revenir ver 618.62 490.54 4.21 1.82 ind:fut:1p; +reviendront revenir ver 618.62 490.54 5.4 3.45 ind:fut:3p; +revienne revenir ver 618.62 490.54 14.99 7.57 sub:pre:1s;sub:pre:3s; +reviennent revenir ver 618.62 490.54 15.5 14.86 ind:pre:3p;sub:pre:3p; +reviennes revenir ver 618.62 490.54 3.25 0.95 sub:pre:2s; +reviens revenir ver 618.62 490.54 163.19 22.36 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revient revenir ver 618.62 490.54 63.17 51.49 ind:pre:3s; +revigoraient revigorer ver 0.29 0.54 0 0.07 ind:imp:3p; +revigorant revigorant adj m s 0.28 0.74 0.28 0.2 +revigorante revigorant adj f s 0.28 0.74 0.01 0.41 +revigorantes revigorant adj f p 0.28 0.74 0 0.14 +revigore revigorer ver 0.29 0.54 0.04 0.07 ind:pre:3s; +revigorent revigorer ver 0.29 0.54 0 0.07 ind:pre:3p; +revigorer revigorer ver 0.29 0.54 0.11 0.07 inf; +revigoré revigorer ver m s 0.29 0.54 0.07 0.07 par:pas; +revigorée revigorer ver f s 0.29 0.54 0.01 0.07 par:pas; +revigorées revigorer ver f p 0.29 0.54 0.01 0 par:pas; +revinrent revenir ver 618.62 490.54 0.47 7.64 ind:pas:3p; +revins revenir ver 618.62 490.54 0.5 4.12 ind:pas:1s;ind:pas:2s; +revinssent revenir ver 618.62 490.54 0 0.07 sub:imp:3p; +revint revenir ver 618.62 490.54 2.24 70.41 ind:pas:3s; +revirement revirement nom m s 0.66 1.62 0.57 1.35 +revirements revirement nom m p 0.66 1.62 0.09 0.27 +revirent revoir ver 162.84 139.46 0.01 0.34 ind:pas:3p; +revirer revirer ver 0.01 0.34 0.01 0 inf; +revis revivre ver 10.37 20.68 1.16 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revisita revisiter ver 0.21 0.61 0 0.07 ind:pas:3s; +revisite revisiter ver 0.21 0.61 0.02 0 ind:pre:3s; +revisitent revisiter ver 0.21 0.61 0 0.07 ind:pre:3p; +revisiter revisiter ver 0.21 0.61 0.16 0.14 inf; +revisité revisiter ver m s 0.21 0.61 0.02 0.14 par:pas; +revisitée revisiter ver f s 0.21 0.61 0.01 0.14 par:pas; +revissa revisser ver 0.15 0.27 0 0.07 ind:pas:3s; +revisse revisser ver 0.15 0.27 0.01 0.07 ind:pre:1s; +revisser revisser ver 0.15 0.27 0 0.07 inf; +revissé revisser ver m s 0.15 0.27 0.14 0 par:pas; +revissées revisser ver f p 0.15 0.27 0 0.07 par:pas; +revit revivre ver 10.37 20.68 0.7 1.01 ind:pre:3s; +revitalisant revitalisant adj m s 0.04 0 0.04 0 +revitalisation revitalisation nom f s 0.04 0.07 0.04 0.07 +revitalise revitaliser ver 0.19 0 0.03 0 imp:pre:2s;ind:pre:3s; +revitaliser revitaliser ver 0.19 0 0.15 0 inf; +revitalisera revitaliser ver 0.19 0 0.01 0 ind:fut:3s; +revivaient revivre ver 10.37 20.68 0.01 0.47 ind:imp:3p; +revivais revivre ver 10.37 20.68 0.03 0.47 ind:imp:1s;ind:imp:2s; +revivait revivre ver 10.37 20.68 0.28 2.23 ind:imp:3s; +revival revival nom m s 0.14 0 0.14 0 +revivant revivre ver 10.37 20.68 0.12 0.95 par:pre; +revive revivre ver 10.37 20.68 0.47 0.07 sub:pre:1s;sub:pre:3s; +revivent revivre ver 10.37 20.68 0.57 0.34 ind:pre:3p; +revivez revivre ver 10.37 20.68 0.14 0 imp:pre:2p;ind:pre:2p; +revivifiant revivifier ver 0.06 0.2 0.04 0 par:pre; +revivifie revivifier ver 0.06 0.2 0.01 0.07 ind:pre:1s;ind:pre:3s; +revivifier revivifier ver 0.06 0.2 0.01 0 inf; +revivifié revivifié adj m s 0 0.07 0 0.07 +revivifiée revivifier ver f s 0.06 0.2 0 0.07 par:pas; +revivifiées revivifier ver f p 0.06 0.2 0 0.07 par:pas; +revivions revivre ver 10.37 20.68 0.01 0.07 ind:imp:1p; +reviviscence reviviscence nom f s 0 0.07 0 0.07 +revivons revivre ver 10.37 20.68 0.02 0 ind:pre:1p; +revivra revivre ver 10.37 20.68 0.13 0.2 ind:fut:3s; +revivrai revivre ver 10.37 20.68 0.14 0.14 ind:fut:1s; +revivraient revivre ver 10.37 20.68 0.01 0.14 cnd:pre:3p; +revivrais revivre ver 10.37 20.68 0.04 0 cnd:pre:1s;cnd:pre:2s; +revivrait revivre ver 10.37 20.68 0.02 0.34 cnd:pre:3s; +revivras revivre ver 10.37 20.68 0.03 0 ind:fut:2s; +revivre revivre ver 10.37 20.68 6.04 8.45 inf; +revivrez revivre ver 10.37 20.68 0.05 0 ind:fut:2p; +revivrons revivre ver 10.37 20.68 0.14 0.07 ind:fut:1p; +revoici revoici pre 0.67 1.62 0.67 1.62 +revoie revoir ver 162.84 139.46 3.92 2.16 sub:pre:1s;sub:pre:3s; +revoient revoir ver 162.84 139.46 0.1 0.41 ind:pre:3p;sub:pre:3p; +revoies revoir ver 162.84 139.46 0.15 0 sub:pre:2s; +revoilà revoilà pre 7.56 3.04 7.56 3.04 +revoir revoir nom m s 262.05 36.01 262.05 36.01 +revois revoir ver 162.84 139.46 10.32 17.77 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revoit revoir ver 162.84 139.46 5.92 5.81 ind:pre:3s; +revolait revoler ver 0.08 0.2 0 0.07 ind:imp:3s; +revole revoler ver 0.08 0.2 0.01 0.07 ind:pre:3s; +revolent revoler ver 0.08 0.2 0 0.07 ind:pre:3p; +revoler revoler ver 0.08 0.2 0.03 0 inf; +revolera revoler ver 0.08 0.2 0.02 0 ind:fut:3s; +revolver revolver nom m s 30.74 25.2 28.05 23.31 +revolvers revolver nom m p 30.74 25.2 2.69 1.89 +revolé revoler ver m s 0.08 0.2 0.02 0 par:pas; +revomir revomir ver 0.01 0.07 0.01 0 inf; +revomissant revomir ver 0.01 0.07 0 0.07 par:pre; +revoter revoter ver 0.03 0 0.03 0 inf; +revoulait revouloir ver 0.45 0.41 0.01 0.14 ind:imp:3s; +revoulez revouloir ver 0.45 0.41 0.14 0 ind:pre:2p; +revouloir revouloir ver 0.45 0.41 0 0.07 inf; +revoyaient revoir ver 162.84 139.46 0 0.34 ind:imp:3p; +revoyais revoir ver 162.84 139.46 0.96 4.73 ind:imp:1s;ind:imp:2s; +revoyait revoir ver 162.84 139.46 0.4 9.73 ind:imp:3s; +revoyant revoir ver 162.84 139.46 0.39 1.82 par:pre; +revoyez revoir ver 162.84 139.46 0.95 0.14 imp:pre:2p;ind:pre:2p; +revoyiez revoir ver 162.84 139.46 0.11 0 ind:imp:2p;sub:pre:2p; +revoyions revoir ver 162.84 139.46 0.18 0.14 ind:imp:1p; +revoyons revoir ver 162.84 139.46 1.44 0.41 imp:pre:1p;ind:pre:1p; +revoyure revoyure nom f s 0.28 0.47 0.28 0.47 +revu revoir ver m s 162.84 139.46 14.38 14.8 par:pas; +revue revue nom f s 10.1 33.92 7.79 25.14 +revues revue nom f p 10.1 33.92 2.31 8.78 +revuistes revuiste nom p 0.01 0 0.01 0 +revus revoir ver m p 162.84 139.46 2.02 3.31 par:pas; +revécu revivre ver m s 10.37 20.68 0.27 0.27 par:pas; +revécue revivre ver f s 10.37 20.68 0 0.07 par:pas; +revécues revécu adj f p 0 0.07 0 0.07 +revécurent revivre ver 10.37 20.68 0 0.07 ind:pas:3p; +revécut revivre ver 10.37 20.68 0 0.41 ind:pas:3s; +revérifier revérifier ver 0.67 0 0.57 0 inf; +revérifié revérifié adj m s 0.34 0.07 0.25 0.07 +revêche revêche adj s 0.28 1.76 0.23 1.35 +revêches revêche adj p 0.28 1.76 0.05 0.41 +revêt revêtir ver 2.68 26.08 0.25 2.09 ind:pre:3s; +revêtaient revêtir ver 2.68 26.08 0.04 0.68 ind:imp:3p; +revêtais revêtir ver 2.68 26.08 0 0.2 ind:imp:1s; +revêtait revêtir ver 2.68 26.08 0.02 2.97 ind:imp:3s; +revêtant revêtir ver 2.68 26.08 0.01 0.88 par:pre; +revêtement revêtement nom m s 1.11 0.74 0.99 0.68 +revêtements revêtement nom m p 1.11 0.74 0.12 0.07 +revêtent revêtir ver 2.68 26.08 0.11 0.61 ind:pre:3p; +revêtez revêtir ver 2.68 26.08 0.32 0.07 imp:pre:2p; +revêtir revêtir ver 2.68 26.08 0.6 3.11 inf; +revêtira revêtir ver 2.68 26.08 0.02 0.14 ind:fut:3s; +revêtirait revêtir ver 2.68 26.08 0 0.41 cnd:pre:3s; +revêtirent revêtir ver 2.68 26.08 0 0.14 ind:pas:3p; +revêtiront revêtir ver 2.68 26.08 0 0.07 ind:fut:3p; +revêtis revêtir ver 2.68 26.08 0.01 0.2 ind:pas:1s; +revêtit revêtir ver 2.68 26.08 0.01 1.15 ind:pas:3s; +revêts revêtir ver 2.68 26.08 0.03 0.07 ind:pre:1s;ind:pre:2s; +revêtu revêtir ver m s 2.68 26.08 1.16 8.45 par:pas; +revêtue revêtir ver f s 2.68 26.08 0.02 2.36 par:pas; +revêtues revêtir ver f p 2.68 26.08 0 0.41 par:pas; +revêtus revêtir ver m p 2.68 26.08 0.07 2.03 par:pas; +revêtît revêtir ver 2.68 26.08 0 0.07 sub:imp:3s; +revîmes revoir ver 162.84 139.46 0.1 0.2 ind:pas:1p; +revînt revenir ver 618.62 490.54 0 1.69 sub:imp:3s; +rewrité rewriter ver m s 0 0.07 0 0.07 par:pas; +rex rex nom m 10.57 1.28 10.57 1.28 +rexiste rexiste adj f s 0.01 0 0.01 0 +rexistes rexiste nom p 0 0.07 0 0.07 +rez rez pre 0.36 0.34 0.36 0.34 +rez_de_chaussée rez_de_chaussée nom m 2.34 16.96 2.34 16.96 +rez_de_jardin rez_de_jardin nom m 0.01 0 0.01 0 +rezzou rezzou nom m s 0 0.2 0 0.07 +rezzous rezzou nom m p 0 0.2 0 0.14 +reçois recevoir ver 192.73 224.46 17.48 7.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reçoit recevoir ver 192.73 224.46 14.9 14.19 ind:pre:3s; +reçoive recevoir ver 192.73 224.46 2.11 1.55 sub:pre:1s;sub:pre:3s; +reçoivent recevoir ver 192.73 224.46 3.08 4.19 ind:pre:3p;sub:pre:3p; +reçoives recevoir ver 192.73 224.46 0.2 0 sub:pre:2s; +reçu recevoir ver m s 192.73 224.46 76.46 56.15 par:pas; +reçue recevoir ver f s 192.73 224.46 4.55 7.03 par:pas; +reçues recevoir ver f p 192.73 224.46 1.29 3.18 par:pas; +reçurent recevoir ver 192.73 224.46 0.23 2.64 ind:pas:3p; +reçus recevoir ver m p 192.73 224.46 1.85 10.88 ind:pas:1s;ind:pas:2s;par:pas; +reçut recevoir ver 192.73 224.46 1.87 21.82 ind:pas:3s; +reçûmes recevoir ver 192.73 224.46 0.01 0.54 ind:pas:1p; +reçût recevoir ver 192.73 224.46 0.01 0.54 sub:imp:3s; +reître reître nom m s 0 1.62 0 0.68 +reîtres reître nom m p 0 1.62 0 0.95 +rhabilla rhabiller ver 5.5 9.53 0 0.95 ind:pas:3s; +rhabillage rhabillage nom m s 0.01 0 0.01 0 +rhabillaient rhabiller ver 5.5 9.53 0 0.14 ind:imp:3p; +rhabillais rhabiller ver 5.5 9.53 0.03 0 ind:imp:1s;ind:imp:2s; +rhabillait rhabiller ver 5.5 9.53 0.01 0.2 ind:imp:3s; +rhabillant rhabiller ver 5.5 9.53 0.14 0.68 par:pre; +rhabille rhabiller ver 5.5 9.53 0.79 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +rhabillent rhabiller ver 5.5 9.53 0 0.2 ind:pre:3p; +rhabiller rhabiller ver 5.5 9.53 2.22 3.45 inf; +rhabilles rhabiller ver 5.5 9.53 0.28 0.14 ind:pre:2s; +rhabilleur rhabilleur nom m s 0 0.07 0 0.07 +rhabillez rhabiller ver 5.5 9.53 1.42 0.14 imp:pre:2p;ind:pre:2p; +rhabilliez rhabiller ver 5.5 9.53 0.01 0 ind:imp:2p; +rhabillons rhabiller ver 5.5 9.53 0.02 0 imp:pre:1p; +rhabillèrent rhabiller ver 5.5 9.53 0 0.2 ind:pas:3p; +rhabillé rhabiller ver m s 5.5 9.53 0.41 0.68 par:pas; +rhabillée rhabiller ver f s 5.5 9.53 0.17 0.74 par:pas; +rhabillées rhabiller ver f p 5.5 9.53 0.01 0.07 par:pas; +rhabillés rhabiller ver m p 5.5 9.53 0 0.54 par:pas; +rhapsodie rhapsodie nom f s 0.07 0.41 0.07 0.34 +rhapsodies rhapsodie nom f p 0.07 0.41 0 0.07 +rhingraves rhingrave nom m p 0 0.07 0 0.07 +rhinite rhinite nom f s 0.03 0.14 0.03 0.07 +rhinites rhinite nom f p 0.03 0.14 0 0.07 +rhino rhino nom m s 0.9 0.61 0.83 0.54 +rhinocéros rhinocéros nom m 2.51 2.5 2.51 2.5 +rhinoplastie rhinoplastie nom f s 0.23 0 0.23 0 +rhinos rhino nom m p 0.9 0.61 0.07 0.07 +rhinoscopie rhinoscopie nom f s 0.1 0 0.1 0 +rhizome rhizome nom m s 0.01 0 0.01 0 +rhizopus rhizopus nom m 0.04 0 0.04 0 +rho rho nom m s 0.06 0 0.06 0 +rhodamine rhodamine nom f s 0.01 0 0.01 0 +rhodanien rhodanien adj m s 0 0.14 0 0.14 +rhodia rhodia nom m s 0 0.07 0 0.07 +rhodium rhodium nom m s 0.04 0 0.04 0 +rhodo rhodo nom m s 0 0.07 0 0.07 +rhododendron rhododendron nom m s 0.06 0.81 0.02 0.07 +rhododendrons rhododendron nom m p 0.06 0.81 0.04 0.74 +rhodoïd rhodoïd nom m s 0 0.14 0 0.14 +rhombe rhombe nom m s 0 0.07 0 0.07 +rhomboïdal rhomboïdal adj m s 0 0.14 0 0.14 +rhomboïdes rhomboïde nom m p 0 0.07 0 0.07 +rhovyl rhovyl nom m s 0 0.07 0 0.07 +rhubarbe rhubarbe nom f s 0.26 6.55 0.26 6.49 +rhubarbes rhubarbe nom f p 0.26 6.55 0 0.07 +rhum rhum nom m s 6.29 12.7 6.29 12.7 +rhumatisant rhumatisant adj m s 0.14 0.61 0 0.34 +rhumatisante rhumatisant adj f s 0.14 0.61 0.14 0.07 +rhumatisants rhumatisant adj m p 0.14 0.61 0 0.2 +rhumatismal rhumatismal adj m s 0.03 0.2 0 0.07 +rhumatismale rhumatismal adj f s 0.03 0.2 0.03 0.07 +rhumatismales rhumatismal adj f p 0.03 0.2 0 0.07 +rhumatisme rhumatisme nom m s 2.31 3.78 0.96 0.95 +rhumatismes rhumatisme nom m p 2.31 3.78 1.35 2.84 +rhumatologie rhumatologie nom f s 0.16 0 0.16 0 +rhumatologue rhumatologue nom s 0.04 0 0.04 0 +rhumatoïde rhumatoïde adj f s 0.01 0 0.01 0 +rhumbs rhumb nom m p 0 0.14 0 0.14 +rhume rhume nom m s 8.17 5.61 7.72 4.93 +rhumerie rhumerie nom f s 0.03 0.14 0.03 0.14 +rhumes rhume nom m p 8.17 5.61 0.45 0.68 +rhynchites rhynchite nom m p 0 0.07 0 0.07 +rhyolite rhyolite nom f s 0.02 0 0.02 0 +rhythm_and_blues rhythm_and_blues nom m 0.08 0 0.08 0 +rhythm_n_blues rhythm_n_blues nom m 0.02 0 0.02 0 +rhénan rhénan adj m s 0 1.69 0 0.2 +rhénane rhénan adj f s 0 1.69 0 0.41 +rhénans rhénan adj m p 0 1.69 0 1.08 +rhéostat rhéostat nom m s 0 0.34 0 0.34 +rhésus rhésus nom m 0.37 0.14 0.37 0.14 +rhéteur rhéteur nom m s 0 0.47 0 0.2 +rhéteurs rhéteur nom m p 0 0.47 0 0.27 +rhétoricien rhétoricien adj m s 0.01 0 0.01 0 +rhétorique rhétorique nom f s 0.89 2.03 0.88 2.03 +rhétoriques rhétorique adj f p 0.48 0.47 0.04 0.2 +rhô rhô nom m 0.01 0 0.01 0 +ri rire ver m s 140.24 320.54 8.22 15 par:pas; +ria ria nom f s 2.21 0 2.21 0 +riaient rire ver 140.24 320.54 1.6 12.7 ind:imp:3p; +riais rire ver 140.24 320.54 1.32 3.85 ind:imp:1s;ind:imp:2s; +riait rire ver 140.24 320.54 3.34 37.97 ind:imp:3s; +rial rial nom m s 0.04 0 0.01 0 +rials rial nom m p 0.04 0 0.03 0 +riant rire ver 140.24 320.54 1.89 41.96 par:pre; +riante riant adj f s 0.53 3.04 0.28 1.01 +riantes riant adj f p 0.53 3.04 0.1 0.34 +riants riant adj m p 0.53 3.04 0 0.34 +ribambelle ribambelle nom f s 0.82 2.36 0.81 1.82 +ribambelles ribambelle nom f p 0.82 2.36 0.01 0.54 +ribaud ribaud nom m s 0.15 0.47 0.14 0.07 +ribaude ribaud adj f s 1.06 0.27 0.68 0.14 +ribaudes ribaud adj f p 1.06 0.27 0.38 0.14 +ribauds ribaud nom m p 0.15 0.47 0.01 0.41 +ribes ribes nom m 0.14 0 0.14 0 +rible ribler ver 0 0.07 0 0.07 ind:pre:3s; +ribleur ribleur nom m s 0 0.07 0 0.07 +riboflavine riboflavine nom f s 0.05 0 0.05 0 +ribosomes ribosome nom m p 0.19 0 0.19 0 +ribot ribot nom m s 0 0.2 0 0.07 +ribote ribot nom f s 0 0.2 0 0.14 +riboter riboter ver 0 0.07 0 0.07 inf; +riboteur riboteur nom m s 0.01 0 0.01 0 +ribouis ribouis nom m 0 0.2 0 0.2 +riboulait ribouler ver 0.01 0.27 0.01 0.07 ind:imp:3s; +riboulant ribouler ver 0.01 0.27 0 0.14 par:pre; +riboulants riboulant adj m p 0 0.07 0 0.07 +ribouldingue ribouldingue nom f s 0.02 0.41 0.02 0.41 +ribouler ribouler ver 0.01 0.27 0 0.07 inf; +ric_et_rac ric_et_rac adv 0 0.61 0 0.61 +ric_rac ric_rac adv 0.04 0.47 0.04 0.47 +ric_à_rac ric_à_rac adv 0 0.2 0 0.2 +ricain ricain nom m s 2.55 1.08 0.33 0.14 +ricaine ricain adj f s 0.36 0.41 0.14 0 +ricaines ricain adj f p 0.36 0.41 0.01 0 +ricains ricain nom m p 2.55 1.08 2.22 0.88 +ricana ricaner ver 2.04 30.61 0.02 7.5 ind:pas:3s; +ricanai ricaner ver 2.04 30.61 0 0.14 ind:pas:1s; +ricanaient ricaner ver 2.04 30.61 0.02 0.68 ind:imp:3p; +ricanais ricaner ver 2.04 30.61 0.02 0.61 ind:imp:1s;ind:imp:2s; +ricanait ricaner ver 2.04 30.61 0.04 3.85 ind:imp:3s; +ricanant ricaner ver 2.04 30.61 0.03 4.12 par:pre; +ricanante ricanant adj f s 0.11 1.89 0 0.54 +ricanantes ricanant adj f p 0.11 1.89 0.1 0.47 +ricanants ricanant adj m p 0.11 1.89 0 0.27 +ricane ricaner ver 2.04 30.61 1.17 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ricanement ricanement nom m s 0.39 10.14 0.27 6.96 +ricanements ricanement nom m p 0.39 10.14 0.12 3.18 +ricanent ricaner ver 2.04 30.61 0.08 0.81 ind:pre:3p; +ricaner ricaner ver 2.04 30.61 0.33 4.59 inf; +ricaneraient ricaner ver 2.04 30.61 0 0.07 cnd:pre:3p; +ricaneront ricaner ver 2.04 30.61 0.01 0 ind:fut:3p; +ricanes ricaner ver 2.04 30.61 0.2 0.2 ind:pre:2s; +ricaneur ricaneur nom m s 0.03 0.27 0.03 0.14 +ricaneurs ricaneur adj m p 0 0.68 0 0.34 +ricaneuse ricaneur adj f s 0 0.68 0 0.14 +ricanions ricaner ver 2.04 30.61 0 0.14 ind:imp:1p; +ricanèrent ricaner ver 2.04 30.61 0 0.47 ind:pas:3p; +ricané ricaner ver m s 2.04 30.61 0.12 2.09 par:pas;par:pas;par:pas; +ricassant ricasser ver 0 0.14 0 0.07 par:pre; +ricasser ricasser ver 0 0.14 0 0.07 inf; +richard richard adj m s 3.57 0.81 2.01 0.2 +richarde richard nom f s 2.05 1.08 0.01 0 +richards richard adj m p 3.57 0.81 1.56 0.61 +riche riche adj s 73.85 65.47 54.28 42.57 +richelieu richelieu nom m s 0.05 0.14 0.02 0 +richelieus richelieu nom m p 0.05 0.14 0.03 0.14 +richement richement adv 0.22 1.76 0.22 1.76 +riches riche adj p 73.85 65.47 19.57 22.91 +richesse richesse nom f s 13.21 22.16 8.44 14.66 +richesses richesse nom f p 13.21 22.16 4.76 7.5 +richissime richissime adj s 0.39 1.08 0.35 0.74 +richissimes richissime adj f p 0.39 1.08 0.04 0.34 +richomme richomme nom m s 0 0.74 0 0.74 +ricin ricin nom m s 0.28 0.47 0.28 0.47 +ricocha ricocher ver 0.7 2.16 0 0.27 ind:pas:3s; +ricochaient ricocher ver 0.7 2.16 0.2 0.14 ind:imp:3p; +ricochait ricocher ver 0.7 2.16 0 0.14 ind:imp:3s; +ricochant ricocher ver 0.7 2.16 0 0.41 par:pre; +ricoche ricocher ver 0.7 2.16 0.1 0.14 ind:pre:3s; +ricochent ricocher ver 0.7 2.16 0.04 0.41 ind:pre:3p; +ricocher ricocher ver 0.7 2.16 0.08 0.54 inf; +ricochet ricochet nom m s 1.03 2.09 0.44 0.74 +ricochets ricochet nom m p 1.03 2.09 0.59 1.35 +ricoché ricocher ver m s 0.7 2.16 0.27 0.14 par:pas; +ricotta ricotta nom f s 0.45 0 0.45 0 +rictus rictus nom m 0.25 6.35 0.25 6.35 +rida rider ver 2.06 3.99 0 0.34 ind:pas:3s; +ridaient rider ver 2.06 3.99 0 0.07 ind:imp:3p; +ridait rider ver 2.06 3.99 0.01 0.41 ind:imp:3s; +ridant rider ver 2.06 3.99 0.01 0.14 par:pre; +ride ride nom f s 4.2 24.26 1.18 3.51 +rideau rideau nom m s 19.11 84.53 10.81 43.65 +rideaux rideau nom m p 19.11 84.53 8.29 37.97 +ridelle rideau nom f s 19.11 84.53 0.01 0.81 +ridelles rideau nom f p 19.11 84.53 0 2.09 +rident rider ver 2.06 3.99 0.01 0 ind:pre:3p; +rider rider ver 2.06 3.99 1.05 0.47 inf; +rides ride nom f p 4.2 24.26 3.02 20.74 +ridicule ridicule adj s 61.57 45.54 57.05 36.49 +ridiculement ridiculement adv 0.3 2.57 0.3 2.57 +ridicules ridicule adj p 61.57 45.54 4.53 9.05 +ridiculisa ridiculiser ver 7.54 4.32 0 0.07 ind:pas:3s; +ridiculisaient ridiculiser ver 7.54 4.32 0 0.2 ind:imp:3p; +ridiculisais ridiculiser ver 7.54 4.32 0.01 0.14 ind:imp:1s; +ridiculisait ridiculiser ver 7.54 4.32 0.03 0.34 ind:imp:3s; +ridiculisant ridiculiser ver 7.54 4.32 0.02 0.34 par:pre; +ridiculisation ridiculisation nom f s 0.01 0 0.01 0 +ridiculise ridiculiser ver 7.54 4.32 1.16 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ridiculisent ridiculiser ver 7.54 4.32 0.33 0.14 ind:pre:3p; +ridiculiser ridiculiser ver 7.54 4.32 3.02 1.69 inf; +ridiculisera ridiculiser ver 7.54 4.32 0.03 0.07 ind:fut:3s; +ridiculiserai ridiculiser ver 7.54 4.32 0.16 0 ind:fut:1s; +ridiculiserais ridiculiser ver 7.54 4.32 0.02 0 cnd:pre:1s; +ridiculiserait ridiculiser ver 7.54 4.32 0.01 0.07 cnd:pre:3s; +ridiculiseras ridiculiser ver 7.54 4.32 0.03 0 ind:fut:2s; +ridiculises ridiculiser ver 7.54 4.32 0.54 0.07 ind:pre:2s;sub:pre:2s; +ridiculisez ridiculiser ver 7.54 4.32 0.38 0 imp:pre:2p;ind:pre:2p; +ridiculisiez ridiculiser ver 7.54 4.32 0.01 0 ind:imp:2p; +ridiculisé ridiculiser ver m s 7.54 4.32 1.09 0.61 par:pas; +ridiculisée ridiculiser ver f s 7.54 4.32 0.51 0.07 par:pas; +ridiculisées ridiculiser ver f p 7.54 4.32 0.1 0.07 par:pas; +ridiculisés ridiculiser ver m p 7.54 4.32 0.1 0.14 par:pas; +ridiculités ridiculité nom f p 0.14 0 0.14 0 +ridule ridule nom f s 0.16 0.07 0.01 0 +ridules ridule nom f p 0.16 0.07 0.15 0.07 +ridé ridé adj m s 1.04 7.16 0.45 2.77 +ridée ridé adj f s 1.04 7.16 0.3 2.16 +ridées ridé adj f p 1.04 7.16 0.14 1.49 +ridés ridé adj m p 1.04 7.16 0.16 0.74 +rie rire ver 140.24 320.54 1.09 0.81 sub:pre:1s;sub:pre:3s; +riel riel nom m s 0.16 0 0.16 0 +rien rien pro_ind s 2374.91 1522.91 2374.91 1522.91 +riens rien nom_sup m p 7.26 24.19 0.62 3.38 +rient rire ver 140.24 320.54 5.17 5.54 ind:pre:3p; +ries rire ver 140.24 320.54 0.1 0.2 sub:pre:2s; +riesling riesling nom m s 0.71 0.2 0.71 0.2 +rieur rieur adj m s 0.45 4.93 0.41 2.84 +rieurs rieur adj m p 0.45 4.93 0.04 2.09 +rieuse rieux adj f s 0.07 4.12 0.06 3.24 +rieuses rieux adj f p 0.07 4.12 0.01 0.88 +riez rire ver 140.24 320.54 8.51 3.04 imp:pre:2p;ind:pre:2p; +rif rif nom m s 0.07 1.42 0.07 1.42 +rifain rifain nom m s 0.03 0 0.01 0 +rifains rifain nom m p 0.03 0 0.02 0 +riff riff nom m s 0.53 0.27 0.43 0.2 +riffaude riffauder ver 0 0.2 0 0.07 ind:pre:1s; +riffauder riffauder ver 0 0.2 0 0.07 inf; +riffaudé riffauder ver m s 0 0.2 0 0.07 par:pas; +riffs riff nom m p 0.53 0.27 0.1 0.07 +rififi rififi nom m s 0.09 0.47 0.09 0.47 +riflard riflard nom m s 0.01 0.41 0.01 0.41 +rifle rifle nom m s 0.12 0.74 0.02 0.74 +rifles rifle nom m p 0.12 0.74 0.1 0 +riflette riflette nom f s 0 0.61 0 0.61 +rift rift nom m s 0.03 0.2 0.03 0.2 +rigaudon rigaudon nom m s 0.01 0.07 0.01 0 +rigaudons rigaudon nom m p 0.01 0.07 0 0.07 +rigide rigide adj s 3.27 9.93 2.96 6.42 +rigidement rigidement adv 0 0.14 0 0.14 +rigides rigide adj p 3.27 9.93 0.32 3.51 +rigidifier rigidifier ver 0.01 0 0.01 0 inf; +rigidité rigidité nom f s 0.88 1.89 0.88 1.82 +rigidités rigidité nom f p 0.88 1.89 0 0.07 +rigodon rigodon nom m s 0 0.61 0 0.61 +rigola rigoler ver 47.56 33.85 0.02 1.42 ind:pas:3s; +rigolade rigolade nom f s 2.43 9.19 2.41 8.38 +rigolades rigolade nom f p 2.43 9.19 0.02 0.81 +rigolage rigolage nom m s 0 0.07 0 0.07 +rigolaient rigoler ver 47.56 33.85 0.47 0.74 ind:imp:3p; +rigolais rigoler ver 47.56 33.85 1.32 0.47 ind:imp:1s;ind:imp:2s; +rigolait rigoler ver 47.56 33.85 1 3.11 ind:imp:3s; +rigolant rigoler ver 47.56 33.85 0.23 2.64 par:pre; +rigolard rigolard adj m s 0.01 2.7 0.01 1.69 +rigolarde rigolard nom f s 0.01 0.34 0.01 0 +rigolardes rigolard adj f p 0.01 2.7 0 0.2 +rigolards rigolard adj m p 0.01 2.7 0 0.41 +rigole rigoler ver 47.56 33.85 12.08 6.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rigolent rigoler ver 47.56 33.85 1.46 0.95 ind:pre:3p; +rigoler rigoler ver 47.56 33.85 10.48 9.8 inf; +rigolera rigoler ver 47.56 33.85 0.19 0.54 ind:fut:3s; +rigolerai rigoler ver 47.56 33.85 0.17 0 ind:fut:1s; +rigoleraient rigoler ver 47.56 33.85 0.03 0.07 cnd:pre:3p; +rigolerais rigoler ver 47.56 33.85 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +rigolerait rigoler ver 47.56 33.85 0.07 0.27 cnd:pre:3s; +rigoleras rigoler ver 47.56 33.85 0.24 0.07 ind:fut:2s; +rigolerez rigoler ver 47.56 33.85 0.03 0 ind:fut:2p; +rigoleront rigoler ver 47.56 33.85 0.02 0 ind:fut:3p; +rigoles rigoler ver 47.56 33.85 13.56 3.31 ind:pre:2s;sub:pre:2s; +rigoleur rigoleur adj m s 0 0.07 0 0.07 +rigolez rigoler ver 47.56 33.85 3.9 0.68 imp:pre:2p;ind:pre:2p; +rigoliez rigoler ver 47.56 33.85 0.07 0.07 ind:imp:2p; +rigolions rigoler ver 47.56 33.85 0.01 0.07 ind:imp:1p; +rigollot rigollot nom m s 0 0.07 0 0.07 +rigolo rigolo adj m s 6.25 3.85 5 2.64 +rigolons rigoler ver 47.56 33.85 0.11 0.07 imp:pre:1p;ind:pre:1p; +rigolos rigolo nom m p 3.99 2.3 1.17 0.88 +rigolote rigolo adj f s 6.25 3.85 0.73 0.27 +rigolotes rigolo adj f p 6.25 3.85 0.23 0.14 +rigolèrent rigoler ver 47.56 33.85 0 0.34 ind:pas:3p; +rigolé rigoler ver m s 47.56 33.85 1.82 2.77 par:pas; +rigorisme rigorisme nom m s 0 0.2 0 0.2 +rigoriste rigoriste adj f s 0.14 0.2 0.14 0.2 +rigoristes rigoriste nom p 0 0.07 0 0.07 +rigoureuse rigoureux adj f s 1.94 8.31 0.27 3.38 +rigoureusement rigoureusement adv 0.23 4.73 0.23 4.73 +rigoureuses rigoureux adj f p 1.94 8.31 0.17 1.55 +rigoureux rigoureux adj m 1.94 8.31 1.5 3.38 +rigueur rigueur nom f s 4.87 40.34 4.72 37.77 +rigueurs rigueur nom f p 4.87 40.34 0.15 2.57 +riiez rire ver 140.24 320.54 0 0.14 ind:imp:2p; +riions rire ver 140.24 320.54 0 1.15 ind:imp:1p; +rikiki rikiki adj m s 0.09 2.97 0.09 2.97 +rillettes rillettes nom f p 0.17 2.43 0.17 2.43 +rillons rillons nom m p 0 0.41 0 0.41 +rima rimer ver 6.89 5.27 0 0.34 ind:pas:3s; +rimaient rimer ver 6.89 5.27 0.02 0.2 ind:imp:3p; +rimaillerie rimaillerie nom f s 0 0.07 0 0.07 +rimailles rimailler ver 0.01 0.07 0.01 0.07 ind:pre:2s; +rimailleur rimailleur nom m s 0.01 0.07 0.01 0 +rimailleurs rimailleur nom m p 0.01 0.07 0 0.07 +rimait rimer ver 6.89 5.27 0.28 1.08 ind:imp:3s; +rimante rimant adj f s 0 0.07 0 0.07 +rimaye rimaye nom f s 0.01 0 0.01 0 +rimbaldien rimbaldien adj m s 0 0.07 0 0.07 +rime rimer ver 6.89 5.27 5.66 2.36 imp:pre:2s;ind:pre:3s; +riment rimer ver 6.89 5.27 0.5 0.2 ind:pre:3p; +rimer rimer ver 6.89 5.27 0.15 0.27 inf; +rimes rime nom f p 3.08 2.16 1.75 1.22 +rimeur rimeur nom m s 0.04 0 0.02 0 +rimeurs rimeur nom m p 0.04 0 0.01 0 +rimeuse rimeur nom f s 0.04 0 0.01 0 +rimez rimer ver 6.89 5.27 0.03 0.07 imp:pre:2p;ind:pre:2p; +rimions rimer ver 6.89 5.27 0 0.07 ind:imp:1p; +rimmel rimmel nom m s 0.16 3.04 0.16 3.04 +rimé rimer ver m s 6.89 5.27 0.22 0.27 par:pas; +rimée rimer ver f s 6.89 5.27 0 0.2 par:pas; +rimés rimer ver m p 6.89 5.27 0.01 0.2 par:pas; +rince rincer ver 4.46 11.15 1.29 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rince_bouche rince_bouche nom m 0.03 0 0.03 0 +rince_doigts rince_doigts nom m 0.08 0.27 0.08 0.27 +rinceau rinceau nom m s 0 0.68 0 0.07 +rinceaux rinceau nom m p 0 0.68 0 0.61 +rincent rincer ver 4.46 11.15 0.16 0.34 ind:pre:3p; +rincer rincer ver 4.46 11.15 1.86 3.18 inf; +rincera rincer ver 4.46 11.15 0.01 0 ind:fut:3s; +rincerai rincer ver 4.46 11.15 0.1 0.07 ind:fut:1s; +rinceraient rincer ver 4.46 11.15 0 0.07 cnd:pre:3p; +rinces rincer ver 4.46 11.15 0.28 0.07 ind:pre:2s; +rincette rincette nom f s 0 0.27 0 0.27 +rinceur rinceur nom m s 0 0.07 0 0.07 +rincez rincer ver 4.46 11.15 0.27 0.07 imp:pre:2p;ind:pre:2p; +rincèrent rincer ver 4.46 11.15 0 0.07 ind:pas:3p; +rincé rincer ver m s 4.46 11.15 0.18 1.28 par:pas; +rincée rincer ver f s 4.46 11.15 0.02 0.2 par:pas; +rincées rincer ver f p 4.46 11.15 0.02 0.07 par:pas; +rincés rincer ver m p 4.46 11.15 0.14 0.68 par:pas; +rinforzando rinforzando adv 0 0.07 0 0.07 +ring ring nom m s 6.49 4.66 6.19 4.39 +ringard ringard adj m s 2.94 1.42 1.99 0.88 +ringarde ringard adj f s 2.94 1.42 0.27 0.27 +ringardes ringard adj f p 2.94 1.42 0.39 0 +ringardise ringardise nom f s 0.06 0.14 0.04 0.14 +ringardises ringardise nom f p 0.06 0.14 0.01 0 +ringards ringard nom m p 2.54 0.95 0.64 0.2 +rings ring nom m p 6.49 4.66 0.29 0.27 +rink rink nom m s 0.14 2.84 0.14 2.84 +rinker rinker ver 0.02 0 0.02 0 inf; +rinça rincer ver 4.46 11.15 0 1.15 ind:pas:3s; +rinçage rinçage nom m s 0.43 0.74 0.28 0.68 +rinçages rinçage nom m p 0.43 0.74 0.14 0.07 +rinçaient rincer ver 4.46 11.15 0 0.07 ind:imp:3p; +rinçais rincer ver 4.46 11.15 0.01 0.14 ind:imp:1s;ind:imp:2s; +rinçait rincer ver 4.46 11.15 0.01 1.42 ind:imp:3s; +rinçant rincer ver 4.46 11.15 0.11 0.27 par:pre; +rioja rioja nom m s 0.01 0 0.01 0 +rions rire ver 140.24 320.54 0.63 1.49 imp:pre:1p;ind:pre:1p; +ripa riper ver 0.35 0.81 0 0.07 ind:pas:3s; +ripaillait ripailler ver 0.14 0.81 0 0.07 ind:imp:3s; +ripaille ripailler ver 0.14 0.81 0.14 0.2 ind:pre:3s; +ripailler ripailler ver 0.14 0.81 0 0.2 inf; +ripailles ripaille nom f p 0.2 1.62 0.14 0.54 +ripaillons ripailler ver 0.14 0.81 0 0.07 ind:pre:1p; +ripaillé ripailler ver m s 0.14 0.81 0 0.27 par:pas; +ripant riper ver 0.35 0.81 0 0.14 par:pre; +ripaton ripaton nom m s 0.01 0.2 0 0.07 +ripatons ripaton nom m p 0.01 0.2 0.01 0.14 +ripe rip nom f s 0.18 0.27 0.18 0.27 +riper riper ver 0.35 0.81 0.03 0.34 inf; +ripes riper ver 0.35 0.81 0.14 0 ind:pre:2s; +ripeur ripeur nom m s 0 0.07 0 0.07 +ripolin ripolin nom m s 0 0.41 0 0.41 +ripoliner ripoliner ver 0 1.55 0 0.07 inf; +ripolines ripoliner ver 0 1.55 0 0.07 ind:pre:2s; +ripoliné ripoliner ver m s 0 1.55 0 0.41 par:pas; +ripolinée ripoliner ver f s 0 1.55 0 0.54 par:pas; +ripolinées ripoliner ver f p 0 1.55 0 0.27 par:pas; +ripolinés ripoliner ver m p 0 1.55 0 0.2 par:pas; +riposta riposter ver 3.61 5.34 0.01 1.55 ind:pas:3s; +ripostai riposter ver 3.61 5.34 0 0.2 ind:pas:1s; +ripostaient riposter ver 3.61 5.34 0.01 0.07 ind:imp:3p; +ripostais riposter ver 3.61 5.34 0.01 0.07 ind:imp:1s; +ripostait riposter ver 3.61 5.34 0 0.41 ind:imp:3s; +ripostant riposter ver 3.61 5.34 0.03 0.14 par:pre; +riposte riposte nom f s 1.75 2.97 1.7 2.64 +ripostent riposter ver 3.61 5.34 0.21 0.07 ind:pre:3p; +riposter riposter ver 3.61 5.34 1.41 1.28 inf; +ripostera riposter ver 3.61 5.34 0.05 0 ind:fut:3s; +riposterai riposter ver 3.61 5.34 0.19 0 ind:fut:1s; +riposterez riposter ver 3.61 5.34 0.02 0 ind:fut:2p; +riposterons riposter ver 3.61 5.34 0.05 0 ind:fut:1p; +riposteront riposter ver 3.61 5.34 0.08 0 ind:fut:3p; +ripostes riposte nom f p 1.75 2.97 0.05 0.34 +ripostez riposter ver 3.61 5.34 0.14 0 imp:pre:2p;ind:pre:2p; +ripostions riposter ver 3.61 5.34 0.01 0 ind:imp:1p; +ripostons riposter ver 3.61 5.34 0.05 0 imp:pre:1p;ind:pre:1p; +riposté riposter ver m s 3.61 5.34 0.6 1.01 par:pas; +ripou ripou adj s 0.66 0.27 0.66 0.27 +ripoux ripoux nom m p 1.54 0 1.54 0 +ripper ripper nom m s 0.31 0 0.31 0 +ripuaire ripuaire adj s 0 0.07 0 0.07 +ripé riper ver m s 0.35 0.81 0.19 0.27 par:pas; +riquiqui riquiqui adj 0.5 0.68 0.5 0.68 +rira rire ver 140.24 320.54 2.99 0.74 ind:fut:3s; +rirai rire ver 140.24 320.54 0.88 0.47 ind:fut:1s; +riraient rire ver 140.24 320.54 0.07 0.27 cnd:pre:3p; +rirais rire ver 140.24 320.54 0.66 0.34 cnd:pre:1s;cnd:pre:2s; +rirait rire ver 140.24 320.54 0.2 0.81 cnd:pre:3s; +riras rire ver 140.24 320.54 0.8 0.07 ind:fut:2s; +rire rire ver 140.24 320.54 63.29 144.19 inf; +rirent rire ver 140.24 320.54 0.01 2.57 ind:pas:3p; +rires rire nom m p 38.88 155.47 16.09 42.91 +rirez rire ver 140.24 320.54 0.6 0.14 ind:fut:2p; +rirons rire ver 140.24 320.54 0.23 0.34 ind:fut:1p; +riront rire ver 140.24 320.54 0.3 0.14 ind:fut:3p; +ris rire ver 140.24 320.54 20.86 8.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rise rise nom f s 0.32 0 0.32 0 +riser riser nom m s 0.06 0 0.06 0 +risette risette nom f s 0.75 1.08 0.7 0.81 +risettes risette nom f p 0.75 1.08 0.05 0.27 +risibilité risibilité nom f s 0.01 0.14 0.01 0.14 +risible risible adj s 1.05 3.45 0.88 2.7 +risiblement risiblement adv 0 0.07 0 0.07 +risibles risible adj p 1.05 3.45 0.17 0.74 +risorius risorius nom m 0.01 0.14 0.01 0.14 +risotto risotto nom m s 0.54 0.07 0.54 0.07 +risqua risquer ver 100.4 99.32 0.45 3.58 ind:pas:3s; +risquai risquer ver 100.4 99.32 0 0.81 ind:pas:1s; +risquaient risquer ver 100.4 99.32 0.68 4.66 ind:imp:3p; +risquais risquer ver 100.4 99.32 0.92 3.51 ind:imp:1s;ind:imp:2s; +risquait risquer ver 100.4 99.32 2.59 21.62 ind:imp:3s; +risquant risquer ver 100.4 99.32 0.99 1.82 par:pre; +risque risque nom m s 69.33 50.27 45.98 30.27 +risque_tout risque_tout adj 0 0.07 0 0.07 +risquent risquer ver 100.4 99.32 4.59 3.85 ind:pre:3p; +risquer risquer ver 100.4 99.32 13.06 14.19 inf; +risquera risquer ver 100.4 99.32 0.38 0.54 ind:fut:3s; +risquerai risquer ver 100.4 99.32 0.3 0.14 ind:fut:1s; +risqueraient risquer ver 100.4 99.32 0.45 0.81 cnd:pre:3p; +risquerais risquer ver 100.4 99.32 1.47 0.88 cnd:pre:1s;cnd:pre:2s; +risquerait risquer ver 100.4 99.32 1.59 3.11 cnd:pre:3s; +risqueras risquer ver 100.4 99.32 0.03 0.07 ind:fut:2s; +risquerez risquer ver 100.4 99.32 0.17 0.07 ind:fut:2p; +risqueriez risquer ver 100.4 99.32 0.32 0.41 cnd:pre:2p; +risquerions risquer ver 100.4 99.32 0.09 0.14 cnd:pre:1p; +risquerons risquer ver 100.4 99.32 0 0.07 ind:fut:1p; +risqueront risquer ver 100.4 99.32 0.12 0.2 ind:fut:3p; +risques risque nom m p 69.33 50.27 23.36 20 +risquez risquer ver 100.4 99.32 7.54 1.96 imp:pre:2p;ind:pre:2p; +risquiez risquer ver 100.4 99.32 0.2 0.61 ind:imp:2p; +risquions risquer ver 100.4 99.32 0.06 0.74 ind:imp:1p; +risquons risquer ver 100.4 99.32 1.8 0.95 imp:pre:1p;ind:pre:1p; +risquât risquer ver 100.4 99.32 0 0.54 sub:imp:3s; +risqué risquer ver m s 100.4 99.32 10.77 5 par:pas; +risquée risqué adj f s 8.29 2.7 0.47 0.68 +risquées risqué adj f p 8.29 2.7 0.13 0.27 +risqués risqué adj m p 8.29 2.7 0.08 0.2 +rissolaient rissoler ver 0.01 0.74 0 0.14 ind:imp:3p; +rissolait rissoler ver 0.01 0.74 0 0.07 ind:imp:3s; +rissole rissole nom f s 0.02 0.34 0 0.14 +rissolent rissoler ver 0.01 0.74 0 0.14 ind:pre:3p; +rissoler rissoler ver 0.01 0.74 0.01 0.27 inf; +rissoles rissole nom f p 0.02 0.34 0.02 0.2 +rissolé rissoler ver m s 0.01 0.74 0 0.07 par:pas; +rissolée rissolé adj f s 0.03 0.34 0 0.07 +rissolées rissolé adj f p 0.03 0.34 0.03 0.2 +rissolés rissolé adj m p 0.03 0.34 0 0.07 +ristournait ristourner ver 0.14 0.07 0 0.07 ind:imp:3s; +ristourne ristourne nom f s 0.54 0.54 0.5 0.54 +ristournes ristourne nom f p 0.54 0.54 0.04 0 +risée risée nom f s 2.22 2.5 2.12 1.76 +risées risée nom f p 2.22 2.5 0.1 0.74 +rit rire ver 140.24 320.54 17.47 37.7 ind:pre:3s;ind:pas:3s; +rital rital nom m s 2.66 3.51 1.36 2.09 +ritale rital nom f s 2.66 3.51 0.14 0.34 +ritales rital nom f p 2.66 3.51 0 0.14 +ritals rital nom m p 2.66 3.51 1.16 0.95 +rite rite nom m s 5.43 17.84 3.77 8.45 +rites rite nom m p 5.43 17.84 1.66 9.39 +ritournelle ritournelle nom f s 0.03 2.03 0.01 1.28 +ritournelles ritournelle nom f p 0.03 2.03 0.02 0.74 +rittes ritt nom f p 0 0.07 0 0.07 +ritualisa ritualiser ver 0.01 0.14 0 0.07 ind:pas:3s; +ritualisation ritualisation nom f s 0 0.07 0 0.07 +ritualiste ritualiste adj m s 0.16 0 0.01 0 +ritualistes ritualiste adj m p 0.16 0 0.15 0 +ritualisé ritualiser ver m s 0.01 0.14 0.01 0 par:pas; +ritualisés ritualiser ver m p 0.01 0.14 0 0.07 par:pas; +rituel rituel nom m s 8.82 6.22 7.03 5.54 +rituelle rituel adj f s 3.29 12.97 0.45 4.73 +rituellement rituellement adv 0.14 1.76 0.14 1.76 +rituelles rituel adj f p 3.29 12.97 0.39 2.23 +rituels rituel nom m p 8.82 6.22 1.79 0.68 +riva river ver 3.47 10.88 0.02 0.47 ind:pas:3s; +rivage rivage nom m s 5.46 17.23 4.38 12.36 +rivages rivage nom m p 5.46 17.23 1.08 4.86 +rivaient river ver 3.47 10.88 0 0.2 ind:imp:3p; +rivais river ver 3.47 10.88 0 0.07 ind:imp:1s; +rivait river ver 3.47 10.88 0 0.61 ind:imp:3s; +rival rival nom m s 4.75 10.2 2.68 4.8 +rivale rival nom f s 4.75 10.2 1.23 2.97 +rivales rival adj f p 1.34 4.05 0.44 1.96 +rivalisaient rivaliser ver 1.99 4.39 0.04 1.15 ind:imp:3p; +rivalisait rivaliser ver 1.99 4.39 0.12 0.54 ind:imp:3s; +rivalisant rivaliser ver 1.99 4.39 0.08 0.2 par:pre; +rivalise rivaliser ver 1.99 4.39 0.2 0.2 ind:pre:1s;ind:pre:3s; +rivalisent rivaliser ver 1.99 4.39 0.1 0.41 ind:pre:3p; +rivaliser rivaliser ver 1.99 4.39 1.4 1.55 inf; +rivalisera rivaliser ver 1.99 4.39 0.03 0 ind:fut:3s; +rivaliserait rivaliser ver 1.99 4.39 0.01 0 cnd:pre:3s; +rivalisèrent rivaliser ver 1.99 4.39 0 0.27 ind:pas:3p; +rivalisé rivaliser ver m s 1.99 4.39 0.01 0.07 par:pas; +rivalité rivalité nom f s 2.25 4.93 1.58 2.97 +rivalités rivalité nom f p 2.25 4.93 0.67 1.96 +rivant river ver 3.47 10.88 0 0.2 par:pre; +rivaux rival nom m p 4.75 10.2 0.69 1.76 +rive rive nom f s 7.92 46.15 6.03 35.14 +river river ver 3.47 10.88 2.7 1.15 inf; +riverain riverain nom m s 0.36 0.81 0 0.07 +riveraines riverain adj f p 0 0.47 0 0.27 +riverains riverain nom m p 0.36 0.81 0.36 0.74 +riverait river ver 3.47 10.88 0 0.07 cnd:pre:3s; +rives rive nom f p 7.92 46.15 1.89 11.01 +rivet rivet nom m s 0.56 1.08 0.35 0.14 +rivetage rivetage nom m s 0.01 0.2 0.01 0.2 +riveteuse riveteur nom f s 0.01 0 0.01 0 +riveteuse riveteuse nom f s 0.01 0 0.01 0 +rivets rivet nom m p 0.56 1.08 0.22 0.95 +rivette riveter ver 0.16 0.27 0.14 0 imp:pre:2s; +riveté riveter ver m s 0.16 0.27 0 0.07 par:pas; +rivetées riveter ver f p 0.16 0.27 0.03 0.2 par:pas; +riviera riviera nom f s 0 0.14 0 0.07 +rivieras riviera nom f p 0 0.14 0 0.07 +rivière rivière nom f s 32.73 43.72 28.17 36.49 +rivières rivière nom f p 32.73 43.72 4.56 7.23 +rivoir rivoir nom m s 0.01 0.27 0.01 0.27 +rivé river ver m s 3.47 10.88 0.22 3.24 par:pas; +rivée river ver f s 3.47 10.88 0.02 1.08 par:pas; +rivées river ver f p 3.47 10.88 0 0.47 par:pas; +rivés river ver m p 3.47 10.88 0.49 2.64 par:pas; +rixdales rixdale nom f p 0 0.07 0 0.07 +rixe rixe nom f s 0.84 2.16 0.8 1.28 +rixes rixe nom f p 0.84 2.16 0.04 0.88 +riz riz nom m 18.49 17.7 18.49 17.7 +riz_minute riz_minute nom m 0 0.07 0 0.07 +riz_pain_sel riz_pain_sel nom m s 0 0.07 0 0.07 +rizière rizière nom f s 6.45 3.78 5.3 1.15 +rizières rizière nom f p 6.45 3.78 1.15 2.64 +roadster roadster nom m s 0.03 0.27 0.03 0.27 +roast_beef roast_beef nom m s 0.16 0 0.02 0 +roast_beef roast_beef nom m s 0.16 0 0.14 0 +robe robe nom f s 84.43 148.18 72.72 111.96 +rober rober ver 0.02 0 0.02 0 inf; +robert robert nom m s 1.51 1.49 1.44 0.27 +roberts robert nom m p 1.51 1.49 0.07 1.22 +robes robe nom f p 84.43 148.18 11.71 36.22 +robette robette nom f s 0 0.07 0 0.07 +robin robin nom m s 0.41 0.34 0.03 0.07 +robinet robinet nom m s 5.89 18.24 5.12 13.65 +robinets robinet nom m p 5.89 18.24 0.77 4.59 +robinetterie robinetterie nom f s 0.03 0.27 0.03 0.27 +robiniers robinier nom m p 0 0.07 0 0.07 +robins robin nom m p 0.41 0.34 0.38 0.27 +robinsonnade robinsonnade nom m s 0 0.07 0 0.07 +robinsons robinson nom m p 0 0.2 0 0.2 +roblot roblot nom m s 0 1.15 0 1.15 +roboratif roboratif adj m s 0 0.54 0 0.34 +roborative roboratif adj f s 0 0.54 0 0.07 +roboratives roboratif adj f p 0 0.54 0 0.14 +robot robot nom m s 22.89 3.18 14.97 1.69 +robotique robotique nom f s 0.72 0 0.69 0 +robotiques robotique nom f p 0.72 0 0.04 0 +robotisé robotiser ver m s 0.1 0.2 0.07 0.07 par:pas; +robotisée robotiser ver f s 0.1 0.2 0.01 0.07 par:pas; +robotisées robotiser ver f p 0.1 0.2 0.01 0.07 par:pas; +robots robot nom m p 22.89 3.18 7.92 1.49 +roburite roburite nom f s 0 0.07 0 0.07 +robuste robuste adj s 2.9 10.07 2.14 7.03 +robustement robustement adv 0 0.14 0 0.14 +robustes robuste adj p 2.9 10.07 0.76 3.04 +robustesse robustesse nom f s 0.17 0.81 0.17 0.81 +roc roc nom m s 3.58 11.76 3.37 7.5 +rocade rocade nom f s 0.27 0.27 0.27 0.2 +rocades rocade nom f p 0.27 0.27 0 0.07 +rocaille rocaille nom f s 0.16 2.16 0.16 1.28 +rocailles rocaille nom f p 0.16 2.16 0 0.88 +rocailleuse rocailleux adj f s 0.17 3.18 0.07 1.22 +rocailleuses rocailleux adj f p 0.17 3.18 0 0.07 +rocailleux rocailleux adj m 0.17 3.18 0.1 1.89 +rocaillé rocailler ver m s 0 0.07 0 0.07 par:pas; +rocambole rocambole nom f s 0 0.41 0 0.41 +rocambolesque rocambolesque adj s 0.18 0.41 0.18 0.27 +rocambolesques rocambolesque adj p 0.18 0.41 0 0.14 +rochas rocher ver 0.08 0.47 0 0.34 ind:pas:2s; +rochassier rochassier nom m s 0 0.07 0 0.07 +roche roche nom f s 5.81 23.38 3.68 14.12 +rochelle rochelle nom f s 0.74 0 0.74 0 +rocher rocher nom m s 16.97 39.53 10.37 17.5 +rochers rocher nom m p 16.97 39.53 6.61 22.03 +roches roche nom f p 5.81 23.38 2.13 9.26 +rochet rochet nom m s 0.01 0.14 0.01 0.14 +rocheuse rocheux adj f s 1.06 10 0.17 2.64 +rocheuses rocheux adj f p 1.06 10 0.73 2.7 +rocheux rocheux adj m 1.06 10 0.16 4.66 +rochiers rochier nom m p 0 0.07 0 0.07 +roché rocher ver m s 0.08 0.47 0.01 0 par:pas; +rock rock nom m s 22.11 19.93 21.47 19.53 +rock_n_roll rock_n_roll nom m 0.19 0.14 0.19 0.14 +rock_n_roll rock_n_roll nom m s 0.01 0 0.01 0 +rocker rocker nom s 1.52 2.91 0.86 1.15 +rockers rocker nom p 1.52 2.91 0.66 1.76 +rocket rocket nom m s 1.4 0.07 1.04 0.07 +rockets rocket nom m p 1.4 0.07 0.35 0 +rockeur rockeur nom m s 0.3 0.14 0.11 0.07 +rockeurs rockeur nom m p 0.3 0.14 0.05 0 +rockeuse rockeur nom f s 0.3 0.14 0.14 0.07 +rocking_chair rocking_chair nom m s 0.36 1.15 0.06 0 +rocking_chair rocking_chair nom m s 0.36 1.15 0.28 0.95 +rocking_chair rocking_chair nom m p 0.36 1.15 0.01 0.2 +rocks rock nom m p 22.11 19.93 0.64 0.41 +rococo rococo nom m s 0.14 0.2 0.13 0.07 +rococos rococo nom m p 0.14 0.2 0.01 0.14 +rocs roc nom m p 3.58 11.76 0.21 4.26 +rodage rodage nom m s 0.32 0.41 0.32 0.34 +rodages rodage nom m p 0.32 0.41 0 0.07 +rodait roder ver 1.35 1.76 0.17 0.07 ind:imp:3s; +rode roder ver 1.35 1.76 0.4 0 ind:pre:1s;ind:pre:3s; +rodeo rodeo nom m s 0.23 0 0.23 0 +roder roder ver 1.35 1.76 0.3 0.34 inf; +roderait roder ver 1.35 1.76 0 0.07 cnd:pre:3s; +rodomontades rodomontade nom f p 0.01 0.47 0.01 0.47 +rodé roder ver m s 1.35 1.76 0.13 0.47 par:pas; +rodée roder ver f s 1.35 1.76 0.05 0.61 par:pas; +rodées roder ver f p 1.35 1.76 0 0.14 par:pas; +rodéo rodéo nom m s 2.01 0.74 1.92 0.74 +rodéos rodéo nom m p 2.01 0.74 0.09 0 +rodés roder ver m p 1.35 1.76 0.3 0.07 par:pas; +roentgens roentgen nom m p 0.02 0 0.02 0 +rogations rogation nom f p 0 0.34 0 0.34 +rogatoire rogatoire adj f s 0.16 0.81 0.16 0.47 +rogatoires rogatoire adj f p 0.16 0.81 0 0.34 +rogaton rogaton nom m s 0.11 1.15 0.11 0.14 +rogatons rogaton nom m p 0.11 1.15 0 1.01 +rogna rogner ver 0.39 2.97 0 0.07 ind:pas:3s; +rognais rogner ver 0.39 2.97 0 0.07 ind:imp:1s; +rognait rogner ver 0.39 2.97 0 0.07 ind:imp:3s; +rognant rogner ver 0.39 2.97 0 0.14 par:pre; +rogne rogne nom f s 3.68 2.43 3.67 2.23 +rogne_pied rogne_pied nom m s 0 0.07 0 0.07 +rognent rogner ver 0.39 2.97 0 0.07 ind:pre:3p; +rogner rogner ver 0.39 2.97 0.09 0.74 inf; +rognes rogne nom f p 3.68 2.43 0.01 0.2 +rogneux rogneux adj m p 0 0.14 0 0.14 +rognez rogner ver 0.39 2.97 0.01 0 imp:pre:2p; +rognon rognon nom m s 1.12 1.28 0.06 0.74 +rognonnait rognonner ver 0 0.07 0 0.07 ind:imp:3s; +rognons rognon nom m p 1.12 1.28 1.06 0.54 +rognure rognure nom f s 0.35 0.74 0.16 0.2 +rognures rognure nom f p 0.35 0.74 0.2 0.54 +rogné rogner ver m s 0.39 2.97 0.04 0.47 par:pas; +rognée rogner ver f s 0.39 2.97 0 0.27 par:pas; +rognées rogner ver f p 0.39 2.97 0.16 0.41 par:pas; +rognés rogner ver m p 0.39 2.97 0 0.47 par:pas; +rogomme rogomme nom m s 0 0.54 0 0.41 +rogommes rogomme nom m p 0 0.54 0 0.14 +rogue rogue adj s 0.66 1.96 0.65 1.69 +rogues rogue adj m p 0.66 1.96 0.01 0.27 +roi roi nom m s 177.53 98.92 166.34 85.95 +roi_roi roi_roi nom m s 0.01 0 0.01 0 +roi_soleil roi_soleil nom m s 0 0.14 0 0.14 +roide roide adj s 0.04 2.57 0.03 1.49 +roidement roidement adv 0 0.34 0 0.34 +roides roide adj p 0.04 2.57 0.01 1.08 +roideur roideur nom f s 0 0.2 0 0.2 +roidi roidir ver m s 0.02 0.27 0.01 0.14 par:pas; +roidie roidir ver f s 0.02 0.27 0 0.07 par:pas; +roidir roidir ver 0.02 0.27 0.01 0 inf; +roidissait roidir ver 0.02 0.27 0 0.07 ind:imp:3s; +rois roi nom m p 177.53 98.92 11.19 12.97 +roitelet roitelet nom m s 0.22 0.41 0.19 0.27 +roitelets roitelet nom m p 0.22 0.41 0.03 0.14 +roll roll nom m s 5.67 1.35 5.67 1.35 +rolle rolle nom m s 0.01 0 0.01 0 +roller roller nom m s 1.41 0 0.88 0 +rollers roller nom m p 1.41 0 0.53 0 +rollmops rollmops nom m 0.03 0.2 0.03 0.2 +rom rom nom s 0.16 0.14 0.01 0.07 +romain romain adj m s 11.02 21.55 5.28 8.04 +romaine romain adj f s 11.02 21.55 3.77 6.55 +romaines romain adj f p 11.02 21.55 0.75 3.58 +romains romain adj m p 11.02 21.55 1.23 3.38 +roman roman nom m s 23.73 74.8 17.79 51.28 +roman_feuilleton roman_feuilleton nom m s 0.13 0.41 0.03 0.27 +roman_fleuve roman_fleuve nom m s 0 0.07 0 0.07 +roman_photo roman_photo nom m s 0.28 0.41 0.14 0.2 +romance romance nom s 3.12 3.99 2.98 2.91 +romancer romancer ver 0.17 0.27 0.08 0.07 inf; +romancero romancero nom m s 0 0.07 0 0.07 +romances romance nom p 3.12 3.99 0.14 1.08 +romanche romanche nom m s 0 0.07 0 0.07 +romancier romancier nom m s 0.93 11.89 0.68 8.18 +romanciers romancier nom m p 0.93 11.89 0.09 2.97 +romancière romancier nom f s 0.93 11.89 0.16 0.61 +romancières romancier nom f p 0.93 11.89 0 0.14 +romancé romancé adj m s 0.07 0.34 0.03 0 +romancée romancé adj f s 0.07 0.34 0.04 0.2 +romancées romancé adj f p 0.07 0.34 0.01 0.14 +romande romand adj f s 0 0.07 0 0.07 +romane roman adj f s 2.09 13.11 0.02 1.76 +romanes roman adj f p 2.09 13.11 0.02 1.69 +romanesque romanesque adj s 1.03 10.07 0.95 8.11 +romanesques romanesque adj p 1.03 10.07 0.09 1.96 +romani romani nom m s 0.11 0.07 0.11 0.07 +romanichel romanichel nom m s 0.17 1.35 0.01 0.34 +romanichelle romanichel nom f s 0.17 1.35 0.14 0.14 +romanichelles romanichel nom f p 0.17 1.35 0 0.07 +romanichels romanichel nom m p 0.17 1.35 0.02 0.81 +romanisation romanisation nom f s 0 0.07 0 0.07 +romanistes romaniste nom p 0.01 0.07 0.01 0.07 +romanité romanité nom f s 0 0.14 0 0.14 +romano romano nom s 0.28 0.54 0.22 0.2 +romanos romano nom p 0.28 0.54 0.06 0.34 +romans roman nom m p 23.73 74.8 5.94 23.51 +roman_feuilleton roman_feuilleton nom m p 0.13 0.41 0.1 0.14 +roman_photo roman_photo nom m p 0.28 0.41 0.14 0.2 +romanticisme romanticisme nom m s 0.01 0 0.01 0 +romantique romantique adj s 22.48 10.27 20.58 7.64 +romantiquement romantiquement adv 0.09 0.27 0.09 0.27 +romantiques romantique adj p 22.48 10.27 1.89 2.64 +romantisme romantisme nom m s 1.48 3.85 1.48 3.72 +romantismes romantisme nom m p 1.48 3.85 0 0.14 +romarin romarin nom m s 1.47 1.01 1.47 1.01 +rombière rombier nom f s 0.05 2.7 0.05 1.96 +rombières rombière nom f p 0.13 0 0.13 0 +rompaient rompre ver 41.37 52.64 0.13 0.61 ind:imp:3p; +rompais rompre ver 41.37 52.64 0.18 0.14 ind:imp:1s;ind:imp:2s; +rompait rompre ver 41.37 52.64 0.06 1.82 ind:imp:3s; +rompant rompre ver 41.37 52.64 0.2 2.36 par:pre; +rompe rompre ver 41.37 52.64 0.72 0.61 sub:pre:1s;sub:pre:3s; +rompent rompre ver 41.37 52.64 0.29 0.47 ind:pre:3p; +rompez rompre ver 41.37 52.64 6.2 1.15 imp:pre:2p;ind:pre:2p; +rompiez rompre ver 41.37 52.64 0.01 0 ind:imp:2p; +rompirent rompre ver 41.37 52.64 0 0.34 ind:pas:3p; +rompis rompre ver 41.37 52.64 0 0.14 ind:pas:1s; +rompissent rompre ver 41.37 52.64 0 0.07 sub:imp:3p; +rompit rompre ver 41.37 52.64 0.28 3.24 ind:pas:3s; +rompons rompre ver 41.37 52.64 0.02 0.14 imp:pre:1p;ind:pre:1p; +rompra rompre ver 41.37 52.64 0.2 0.27 ind:fut:3s; +romprai rompre ver 41.37 52.64 0.15 0 ind:fut:1s; +rompraient rompre ver 41.37 52.64 0 0.14 cnd:pre:3p; +romprais rompre ver 41.37 52.64 0.06 0 cnd:pre:1s;cnd:pre:2s; +romprait rompre ver 41.37 52.64 0.05 0.27 cnd:pre:3s; +rompre rompre ver 41.37 52.64 12.61 21.82 inf; +romprez rompre ver 41.37 52.64 0.04 0.07 ind:fut:2p; +romprions rompre ver 41.37 52.64 0 0.07 cnd:pre:1p; +romprons rompre ver 41.37 52.64 0.01 0 ind:fut:1p; +romps rompre ver 41.37 52.64 2.01 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rompt rompre ver 41.37 52.64 1.66 2.57 ind:pre:3s; +rompu rompre ver m s 41.37 52.64 15.16 10.68 par:pas; +rompue rompre ver f s 41.37 52.64 0.84 2.03 par:pas; +rompues rompre ver f p 41.37 52.64 0.15 0.61 par:pas; +rompus rompu adj m p 1.13 5.07 0.33 1.62 +rompît rompre ver 41.37 52.64 0.01 0.61 sub:imp:3s; +roms rom nom p 0.16 0.14 0.14 0.07 +ron ron nom m s 0.23 0.34 0.23 0.34 +ronce ronce nom f s 1.1 13.78 0.14 1.28 +ronces ronce nom f p 1.1 13.78 0.95 12.5 +roncet roncet nom m s 0 0.07 0 0.07 +ronceux ronceux adj m 0 0.07 0 0.07 +ronchon ronchon adj m s 0.45 0.14 0.41 0.14 +ronchonna ronchonner ver 0.41 4.32 0 0.95 ind:pas:3s; +ronchonnaient ronchonner ver 0.41 4.32 0 0.07 ind:imp:3p; +ronchonnais ronchonner ver 0.41 4.32 0 0.14 ind:imp:1s; +ronchonnait ronchonner ver 0.41 4.32 0 0.74 ind:imp:3s; +ronchonnant ronchonner ver 0.41 4.32 0.11 0.47 par:pre; +ronchonne ronchonner ver 0.41 4.32 0.09 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronchonnent ronchonner ver 0.41 4.32 0.01 0.14 ind:pre:3p; +ronchonner ronchonner ver 0.41 4.32 0.16 0.95 inf; +ronchonnes ronchonner ver 0.41 4.32 0.02 0 ind:pre:2s; +ronchonneur ronchonneur nom m s 0.02 0.2 0.02 0.07 +ronchonneuse ronchonneur nom f s 0.02 0.2 0 0.14 +ronchonnot ronchonnot nom m s 0 0.14 0 0.14 +ronchonné ronchonner ver m s 0.41 4.32 0.02 0.14 par:pas; +roncier roncier nom m s 0 2.64 0 1.76 +ronciers roncier nom m p 0 2.64 0 0.88 +rond rond nom m s 16.84 33.65 15.11 24.46 +rond_de_cuir rond_de_cuir nom m s 0.26 0.34 0.23 0.27 +rond_point rond_point nom m s 0.44 2.5 0.44 2.43 +rondache rondache nom f s 0.02 0.07 0.02 0.07 +ronde ronde nom f s 9.54 20.81 7.93 17.97 +ronde_bosse ronde_bosse nom f s 0 0.61 0 0.61 +rondeau rondeau nom m s 0.02 0.07 0.02 0.07 +rondelet rondelet adj m s 0.34 1.22 0.06 0.54 +rondelette rondelet adj f s 0.34 1.22 0.28 0.54 +rondelettes rondelet adj f p 0.34 1.22 0 0.14 +rondelle rondelle nom f s 1.16 5.34 0.42 2.23 +rondelles rondelle nom f p 1.16 5.34 0.73 3.11 +rondement rondement adv 0.22 1.28 0.22 1.28 +rondes ronde nom f p 9.54 20.81 1.61 2.84 +rondeur rondeur nom f s 0.41 6.49 0.19 3.99 +rondeurs rondeur nom f p 0.41 6.49 0.23 2.5 +rondin rondin nom m s 0.76 8.78 0.23 1.08 +rondins rondin nom m p 0.76 8.78 0.53 7.7 +rondo rondo nom m s 0.34 0.68 0.34 0.61 +rondos rondo nom m p 0.34 0.68 0 0.07 +rondouillard rondouillard adj m s 0.04 1.55 0.03 1.01 +rondouillarde rondouillard adj f s 0.04 1.55 0.01 0.41 +rondouillards rondouillard adj m p 0.04 1.55 0 0.14 +ronds rond nom m p 16.84 33.65 1.73 9.19 +rond_de_cuir rond_de_cuir nom m p 0.26 0.34 0.03 0.07 +rond_point rond_point nom m p 0.44 2.5 0 0.07 +ronfla ronfler ver 6.62 18.24 0 0.47 ind:pas:3s; +ronflaient ronfler ver 6.62 18.24 0.01 0.81 ind:imp:3p; +ronflais ronfler ver 6.62 18.24 0.25 0.2 ind:imp:1s;ind:imp:2s; +ronflait ronfler ver 6.62 18.24 0.19 4.8 ind:imp:3s; +ronflant ronflant adj m s 0.33 2.16 0.27 0.68 +ronflante ronflant adj f s 0.33 2.16 0 0.47 +ronflantes ronflant adj f p 0.33 2.16 0.01 0.27 +ronflants ronflant adj m p 0.33 2.16 0.05 0.74 +ronfle ronfler ver 6.62 18.24 2.52 3.65 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronflement ronflement nom m s 1.39 10.41 0.67 6.49 +ronflements ronflement nom m p 1.39 10.41 0.72 3.92 +ronflent ronfler ver 6.62 18.24 0.3 1.22 ind:pre:3p; +ronfler ronfler ver 6.62 18.24 1.14 5.47 inf; +ronflerais ronfler ver 6.62 18.24 0.1 0.07 cnd:pre:1s;cnd:pre:2s; +ronfleras ronfler ver 6.62 18.24 0.11 0 ind:fut:2s; +ronfles ronfler ver 6.62 18.24 0.78 0.14 ind:pre:2s; +ronflette ronflette nom f s 0.14 0.81 0.14 0.81 +ronfleur ronfleur nom m s 0 0.68 0 0.54 +ronfleurs ronfleur nom m p 0 0.68 0 0.07 +ronfleuse ronfleur nom f s 0 0.68 0 0.07 +ronflez ronfler ver 6.62 18.24 0.32 0 imp:pre:2p;ind:pre:2p; +ronfliez ronfler ver 6.62 18.24 0.01 0 ind:imp:2p; +ronflotait ronfloter ver 0 0.2 0 0.07 ind:imp:3s; +ronflotant ronfloter ver 0 0.2 0 0.07 par:pre; +ronflote ronfloter ver 0 0.2 0 0.07 ind:pre:3s; +ronflèrent ronfler ver 6.62 18.24 0 0.07 ind:pas:3p; +ronflé ronfler ver m s 6.62 18.24 0.9 0.27 par:pas; +ronge ronger ver 11.68 28.38 4.23 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rongea ronger ver 11.68 28.38 0 0.14 ind:pas:3s; +rongeai ronger ver 11.68 28.38 0 0.2 ind:pas:1s; +rongeaient ronger ver 11.68 28.38 0.18 0.88 ind:imp:3p; +rongeais ronger ver 11.68 28.38 0.02 0.27 ind:imp:1s;ind:imp:2s; +rongeait ronger ver 11.68 28.38 0.88 3.85 ind:imp:3s; +rongeant ronger ver 11.68 28.38 0.16 1.01 par:pre; +rongeante rongeant adj f s 0 0.27 0 0.14 +rongeantes rongeant adj f p 0 0.27 0 0.07 +rongement rongement nom m s 0 0.14 0 0.14 +rongent ronger ver 11.68 28.38 0.53 1.08 ind:pre:3p; +ronger ronger ver 11.68 28.38 1.54 2.84 inf; +rongera ronger ver 11.68 28.38 0.36 0.07 ind:fut:3s; +rongerait ronger ver 11.68 28.38 0.05 0.07 cnd:pre:3s; +ronges ronger ver 11.68 28.38 0.38 0.14 ind:pre:2s; +rongeur rongeur nom m s 1.43 2.91 0.52 1.01 +rongeurs rongeur nom m p 1.43 2.91 0.91 1.89 +rongeuse rongeur adj f s 0.28 0.95 0.01 0.14 +rongeuses rongeur adj f p 0.28 0.95 0.1 0.07 +rongez ronger ver 11.68 28.38 0.21 0 imp:pre:2p;ind:pre:2p; +rongeât ronger ver 11.68 28.38 0 0.14 sub:imp:3s; +rongicide rongicide adj s 0 0.07 0 0.07 +rongèrent ronger ver 11.68 28.38 0 0.07 ind:pas:3p; +rongé ronger ver m s 11.68 28.38 2.1 4.66 par:pas; +rongée ronger ver f s 11.68 28.38 0.68 3.38 par:pas; +rongées ronger ver f p 11.68 28.38 0.17 1.96 par:pas; +rongés ronger ver m p 11.68 28.38 0.19 3.51 par:pas; +ronin ronin nom m s 0.3 0.07 0.3 0.07 +ronron ronron nom m s 0.16 3.51 0.16 2.7 +ronronna ronronner ver 0.76 11.08 0 0.47 ind:pas:3s; +ronronnaient ronronner ver 0.76 11.08 0 0.68 ind:imp:3p; +ronronnais ronronner ver 0.76 11.08 0.01 0.2 ind:imp:1s;ind:imp:2s; +ronronnait ronronner ver 0.76 11.08 0.03 2.5 ind:imp:3s; +ronronnant ronronner ver 0.76 11.08 0.02 1.42 par:pre; +ronronnante ronronnant adj f s 0.01 0.81 0.01 0.34 +ronronnantes ronronnant adj f p 0.01 0.81 0 0.14 +ronronnants ronronnant adj m p 0.01 0.81 0 0.07 +ronronne ronronner ver 0.76 11.08 0.48 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronronnement ronronnement nom m s 0.04 5.27 0.04 4.93 +ronronnements ronronnement nom m p 0.04 5.27 0 0.34 +ronronnent ronronner ver 0.76 11.08 0 0.41 ind:pre:3p; +ronronner ronronner ver 0.76 11.08 0.17 2.03 inf; +ronronnerait ronronner ver 0.76 11.08 0 0.07 cnd:pre:3s; +ronronnons ronronner ver 0.76 11.08 0 0.07 imp:pre:1p; +ronronnèrent ronronner ver 0.76 11.08 0 0.07 ind:pas:3p; +ronronné ronronner ver m s 0.76 11.08 0.04 0.41 par:pas; +ronrons ronron nom m p 0.16 3.51 0 0.81 +ronéo ronéo nom f s 0.02 0.14 0.02 0.14 +ronéotions ronéoter ver 0 0.14 0 0.07 ind:imp:1p; +ronéotyper ronéotyper ver 0 0.34 0 0.07 inf; +ronéotypé ronéotyper ver m s 0 0.34 0 0.14 par:pas; +ronéotypés ronéotyper ver m p 0 0.34 0 0.14 par:pas; +ronéoté ronéoter ver m s 0 0.14 0 0.07 par:pas; +roof roof nom m s 0.03 0.2 0.03 0.2 +roploplos roploplo nom m p 0.01 0.07 0.01 0.07 +roque roque nom m s 1.14 0.74 1.14 0.34 +roquefort roquefort nom m s 0.07 0.61 0.07 0.61 +roquentin roquentin nom m s 0 0.14 0 0.14 +roquer roquer ver 0.2 0.07 0 0.07 inf; +roques roque nom m p 1.14 0.74 0 0.41 +roquet roquet nom m s 0.25 1.89 0.23 1.35 +roquets roquet nom m p 0.25 1.89 0.02 0.54 +roquette roquette nom f s 1.68 1.01 0.91 0.74 +roquettes roquette nom f p 1.68 1.01 0.76 0.27 +rorqual rorqual nom m s 0 0.2 0 0.14 +rorquals rorqual nom m p 0 0.2 0 0.07 +rosa roser ver 0.51 3.31 0.01 0.14 ind:pas:3s; +rosace rosace nom f s 0 2.16 0 1.08 +rosaces rosace nom f p 0 2.16 0 1.08 +rosages rosage nom m p 0 0.07 0 0.07 +rosaire rosaire nom m s 1.54 0.74 1.33 0.61 +rosaires rosaire nom m p 1.54 0.74 0.21 0.14 +rosales rosales nom f p 0.36 0 0.36 0 +rosat rosat adj f s 0 0.2 0 0.2 +rosbif rosbif nom m s 1.81 0.54 1.38 0.47 +rosbifs rosbif nom m p 1.81 0.54 0.43 0.07 +rose rose adj s 23.72 96.08 18.43 66.62 +rose_croix rose_croix nom m 0 0.07 0 0.07 +rose_thé rose_thé adj m s 0 0.07 0 0.07 +rose_thé rose_thé nom s 0 0.07 0 0.07 +roseau roseau nom m s 1.13 16.55 0.63 2.97 +roseaux roseau nom m p 1.13 16.55 0.5 13.58 +roselière roselier nom f s 0 0.61 0 0.14 +roselières roselier nom f p 0 0.61 0 0.47 +roser roser ver 0.51 3.31 0 0.07 inf; +roseraie roseraie nom f s 0.31 0.2 0.3 0.14 +roseraies roseraie nom f p 0.31 0.2 0.01 0.07 +roses rose nom p 24.67 57.3 13.56 26.96 +rosette rosette nom f s 0.1 2.03 0.07 1.76 +rosettes rosette nom f p 0.1 2.03 0.03 0.27 +roseur roseur nom f s 0 0.68 0 0.54 +roseurs roseur nom f p 0 0.68 0 0.14 +rosi rosir ver m s 1.44 3.51 0.1 0.2 par:pas; +rosicrucien rosicrucien adj m s 0.01 0.07 0.01 0 +rosicrucienne rosicrucien nom f s 0.02 0 0.01 0 +rosicrucienne rosicrucienne adj f s 0.01 0 0.01 0 +rosicruciens rosicrucien nom m p 0.02 0 0.01 0 +rosie rosir ver f s 1.44 3.51 1.24 0 par:pas; +rosier rosier nom m s 0.85 5.41 0.24 1.22 +rosiers rosier nom m p 0.85 5.41 0.61 4.19 +rosies rosir ver f p 1.44 3.51 0 0.14 par:pas; +rosir rosir ver 1.44 3.51 0.04 0.74 inf; +rosis rosir ver m p 1.44 3.51 0 0.14 ind:pas:1s;par:pas; +rosissaient rosir ver 1.44 3.51 0 0.27 ind:imp:3p; +rosissait rosir ver 1.44 3.51 0 0.54 ind:imp:3s; +rosissant rosir ver 1.44 3.51 0 0.34 par:pre; +rosissent rosir ver 1.44 3.51 0 0.14 ind:pre:3p; +rosit rosir ver 1.44 3.51 0.06 1.01 ind:pre:3s;ind:pas:3s; +rosière rosière nom f s 0 0.14 0 0.14 +rossa rosser ver 2.49 2.43 0.02 0.07 ind:pas:3s; +rossaient rosser ver 2.49 2.43 0.01 0.07 ind:imp:3p; +rossait rosser ver 2.49 2.43 0.01 0.07 ind:imp:3s; +rossant rosser ver 2.49 2.43 0 0.07 par:pre; +rossard rossard nom m s 0 0.2 0 0.07 +rossards rossard nom m p 0 0.2 0 0.14 +rosse rosser ver 2.49 2.43 0.45 0.14 ind:pre:1s;ind:pre:3s; +rossent rosser ver 2.49 2.43 0.01 0.07 ind:pre:3p; +rosser rosser ver 2.49 2.43 0.79 0.74 inf; +rosserai rosser ver 2.49 2.43 0.12 0.07 ind:fut:1s; +rosserie rosserie nom f s 0.02 0.47 0 0.14 +rosseries rosserie nom f p 0.02 0.47 0.02 0.34 +rosses rosse adj f p 0.61 0.41 0.2 0.14 +rossez rosser ver 2.49 2.43 0.16 0 imp:pre:2p;ind:pre:2p; +rossignol rossignol nom m s 2.56 3.51 2.06 1.76 +rossignols rossignol nom m p 2.56 3.51 0.5 1.76 +rossinante rossinante nom f s 0.09 0.07 0.09 0 +rossinantes rossinante nom f p 0.09 0.07 0 0.07 +rossé rosser ver m s 2.49 2.43 0.52 0.81 par:pas; +rossée rosser ver f s 2.49 2.43 0.14 0.2 par:pas; +rossés rosser ver m p 2.49 2.43 0.26 0.14 par:pas; +rostre rostre nom m s 0.03 0.14 0.02 0 +rostres rostre nom m p 0.03 0.14 0.01 0.14 +rosâtre rosâtre adj s 0.04 2.16 0.04 1.55 +rosâtres rosâtre adj p 0.04 2.16 0 0.61 +rosé rosé nom m s 0.86 2.7 0.86 2.43 +rosée rosée nom f s 3.19 9.46 3.19 9.26 +rosées roser ver f p 0.51 3.31 0.02 0.41 par:pas; +roséole roséole nom f s 0.01 0.07 0.01 0.07 +rosés rosé adj m p 0.5 2.64 0.27 0.34 +rot rot nom m s 1.85 1.69 1.76 1.08 +rota roter ver 1.3 3.45 0.23 0.47 ind:pas:3s; +rotaient roter ver 1.3 3.45 0.01 0.27 ind:imp:3p; +rotais roter ver 1.3 3.45 0 0.07 ind:imp:1s; +rotait roter ver 1.3 3.45 0.01 0.41 ind:imp:3s; +rotant roter ver 1.3 3.45 0.04 0 par:pre; +rotariens rotarien adj m p 0.01 0 0.01 0 +rotary rotary nom m s 0.76 0.34 0.76 0.34 +rotateur rotateur adj m s 0.02 0 0.02 0 +rotatif rotatif adj m s 0.17 0.81 0.07 0.47 +rotatifs rotatif adj m p 0.17 0.81 0.04 0 +rotation rotation nom f s 2.3 3.58 2.08 3.38 +rotationnel rotationnel adj m s 0.01 0 0.01 0 +rotations rotation nom f p 2.3 3.58 0.22 0.2 +rotative rotatif adj f s 0.17 0.81 0.03 0.27 +rotatives rotative nom f p 0.07 1.08 0.07 0.95 +rotativistes rotativiste nom p 0 0.07 0 0.07 +rotatoire rotatoire adj m s 0.01 0.07 0.01 0.07 +rote roter ver 1.3 3.45 0.43 0.88 ind:pre:1s;ind:pre:3s; +rotengles rotengle nom m p 0 0.07 0 0.07 +rotent roter ver 1.3 3.45 0.04 0.14 ind:pre:3p; +roter roter ver 1.3 3.45 0.45 0.81 inf; +rotera roter ver 1.3 3.45 0 0.07 ind:fut:3s; +rotes roter ver 1.3 3.45 0.02 0 ind:pre:2s; +roteur roteur nom m s 0.02 0.68 0.01 0 +roteuse roteur nom f s 0.02 0.68 0.01 0.61 +roteuses roteur nom f p 0.02 0.68 0 0.07 +rotez roter ver 1.3 3.45 0 0.07 ind:pre:2p; +rotin rotin nom m s 0.13 3.38 0.13 3.38 +roto roto nom f s 0.04 0.07 0.03 0.07 +rotonde rotond nom f s 0.11 1.22 0.11 1.15 +rotondes rotond nom f p 0.11 1.22 0 0.07 +rotondité rotondité nom f s 0.01 0.54 0.01 0.27 +rotondités rotondité nom f p 0.01 0.54 0 0.27 +rotoplos rotoplos nom m p 0.01 0.27 0.01 0.27 +rotoplots rotoplots nom m p 0.01 0.07 0.01 0.07 +rotor rotor nom m s 0.37 0.41 0.31 0.41 +rotors rotor nom m p 0.37 0.41 0.06 0 +rotos roto nom f p 0.04 0.07 0.01 0 +rototo rototo nom m s 0.03 0.07 0.02 0 +rototos rototo nom m p 0.03 0.07 0.01 0.07 +rots rot nom m p 1.85 1.69 0.09 0.61 +rotule rotule nom f s 1.29 1.76 0.57 0.61 +rotules rotule nom f p 1.29 1.76 0.72 1.15 +rotulien rotulien adj m s 0.03 0 0.03 0 +roture roture nom f s 0.14 0.47 0.14 0.47 +roturier roturier nom m s 0.17 0.54 0.06 0.27 +roturiers roturier nom m p 0.17 0.54 0.05 0.14 +roturière roturier nom f s 0.17 0.54 0.06 0.14 +roté roter ver m s 1.3 3.45 0.06 0.2 par:pas; +rotées roter ver f p 1.3 3.45 0 0.07 par:pas; +roténone roténone nom f s 0.09 0 0.09 0 +roua rouer ver 2.2 2.57 0 0.07 ind:pas:3s; +rouage rouage nom m s 1.18 4.05 0.3 0.47 +rouages rouage nom m p 1.18 4.05 0.88 3.58 +rouaient rouer ver 2.2 2.57 0.01 0.07 ind:imp:3p; +rouais rouer ver 2.2 2.57 0.02 0 ind:imp:2s; +rouait rouer ver 2.2 2.57 0.13 0.14 ind:imp:3s; +rouan rouan nom m s 0.16 0.2 0.16 0.2 +rouant rouer ver 2.2 2.57 0.01 0.14 par:pre; +roubaisienne roubaisien nom f s 0 0.07 0 0.07 +roubignoles roubignoles nom f p 0.06 0.27 0.06 0.27 +roublard roublard nom m s 0.33 0.27 0.32 0.27 +roublarde roublard adj f s 0.1 0.74 0.01 0.14 +roublarder roublarder ver 0 0.07 0 0.07 inf; +roublardes roublard adj f p 0.1 0.74 0.01 0.07 +roublardise roublardise nom f s 0 0.2 0 0.14 +roublardises roublardise nom f p 0 0.2 0 0.07 +rouble rouble nom m s 7.88 0.68 1.22 0.14 +roubles rouble nom m p 7.88 0.68 6.66 0.54 +roucoula roucouler ver 0.7 3.45 0 0.47 ind:pas:3s; +roucoulade roucoulade nom f s 0.16 0.68 0.16 0.14 +roucoulades roucoulade nom f p 0.16 0.68 0 0.54 +roucoulaient roucouler ver 0.7 3.45 0 0.2 ind:imp:3p; +roucoulais roucouler ver 0.7 3.45 0.01 0 ind:imp:2s; +roucoulait roucouler ver 0.7 3.45 0.03 0.68 ind:imp:3s; +roucoulant roucouler ver 0.7 3.45 0 0.47 par:pre; +roucoulante roucoulant adj f s 0.02 0.61 0.02 0.27 +roucoulantes roucoulant adj f p 0.02 0.61 0 0.14 +roucoulants roucoulant adj m p 0.02 0.61 0 0.14 +roucoule roucouler ver 0.7 3.45 0.38 0.34 ind:pre:1s;ind:pre:3s; +roucoulement roucoulement nom m s 0.33 1.42 0.16 0.61 +roucoulements roucoulement nom m p 0.33 1.42 0.16 0.81 +roucoulent roucouler ver 0.7 3.45 0.03 0.2 ind:pre:3p; +roucouler roucouler ver 0.7 3.45 0.23 0.81 inf; +roucoulerez roucouler ver 0.7 3.45 0.01 0 ind:fut:2p; +roucouleur roucouleur nom m s 0.02 0.07 0.02 0.07 +roucoulé roucouler ver m s 0.7 3.45 0.01 0.2 par:pas; +roucoulés roucouler ver m p 0.7 3.45 0 0.07 par:pas; +roudoudou roudoudou nom m s 0.28 0.68 0.28 0.54 +roudoudous roudoudou nom m p 0.28 0.68 0 0.14 +roue roue nom f s 21.87 42.43 13.49 17.77 +rouelle rouelle nom f s 0 0.14 0 0.14 +rouennaise rouennais nom f s 0.27 0 0.27 0 +rouenneries rouennerie nom f p 0 0.07 0 0.07 +rouent rouer ver 2.2 2.57 0.12 0 ind:pre:3p; +rouer rouer ver 2.2 2.57 0.46 0.34 inf; +rouerai rouer ver 2.2 2.57 0.2 0 ind:fut:1s; +rouergat rouergat adj m s 0 0.07 0 0.07 +rouerie rouerie nom f s 0.01 0.95 0.01 0.74 +roueries rouerie nom f p 0.01 0.95 0 0.2 +roueront rouer ver 2.2 2.57 0.14 0 ind:fut:3p; +roues roue nom f p 21.87 42.43 8.38 24.66 +rouet rouet nom m s 0.15 0.54 0.15 0.54 +rouf rouf nom m s 0 0.27 0 0.27 +rouflaquettes rouflaquette nom f p 0.13 0.81 0.13 0.81 +rouge rouge adj s 102.93 273.24 79.7 195.27 +rouge_brun rouge_brun adj m s 0 0.2 0 0.2 +rouge_feu rouge_feu adj m s 0 0.07 0 0.07 +rouge_gorge rouge_gorge nom m s 0.44 1.08 0.3 0.68 +rouge_queue rouge_queue nom m s 0 0.07 0 0.07 +rouge_sang rouge_sang nom s 0 0.07 0 0.07 +rougeaud rougeaud nom m s 0.1 0.74 0.1 0.68 +rougeaude rougeaud adj f s 0.04 3.78 0 0.61 +rougeaudes rougeaud adj f p 0.04 3.78 0 0.27 +rougeauds rougeaud adj m p 0.04 3.78 0 0.81 +rougeoie rougeoyer ver 0.38 3.51 0.14 0.68 imp:pre:2s;ind:pre:3s; +rougeoiement rougeoiement nom m s 0.03 1.42 0.03 1.15 +rougeoiements rougeoiement nom m p 0.03 1.42 0 0.27 +rougeoient rougeoyer ver 0.38 3.51 0 0.27 ind:pre:3p; +rougeole rougeole nom f s 1.27 1.69 1.27 1.69 +rougeoya rougeoyer ver 0.38 3.51 0 0.07 ind:pas:3s; +rougeoyaient rougeoyer ver 0.38 3.51 0 0.41 ind:imp:3p; +rougeoyait rougeoyer ver 0.38 3.51 0 1.35 ind:imp:3s; +rougeoyant rougeoyant adj m s 0.28 2.03 0.15 0.54 +rougeoyante rougeoyant adj f s 0.28 2.03 0.11 0.61 +rougeoyantes rougeoyant adj f p 0.28 2.03 0 0.54 +rougeoyants rougeoyant adj m p 0.28 2.03 0.01 0.34 +rougeoyer rougeoyer ver 0.38 3.51 0.22 0.61 inf; +rougeoyé rougeoyer ver m s 0.38 3.51 0 0.07 par:pas; +rouges rouge adj p 102.93 273.24 23.23 77.97 +rouge_gorge rouge_gorge nom m p 0.44 1.08 0.13 0.41 +rouget rouget nom m s 0.35 1.49 0.35 0.54 +rougets rouget nom m p 0.35 1.49 0 0.95 +rougeur rougeur nom f s 1.16 3.04 0.63 1.89 +rougeurs rougeur nom f p 1.16 3.04 0.53 1.15 +rougeâtre rougeâtre adj s 0.17 6.08 0.15 3.85 +rougeâtres rougeâtre adj p 0.17 6.08 0.02 2.23 +rough rough nom m s 0.2 0 0.2 0 +rougi rougir ver m s 9.01 42.09 0.72 4.19 par:pas; +rougie rougir ver f s 9.01 42.09 0.17 1.62 par:pas; +rougies rougir ver f p 9.01 42.09 0.1 1.22 par:pas; +rougir rougir ver 9.01 42.09 2.51 10.68 inf; +rougira rougir ver 9.01 42.09 0.01 0.07 ind:fut:3s; +rougiraient rougir ver 9.01 42.09 0 0.07 cnd:pre:3p; +rougirais rougir ver 9.01 42.09 0.13 0.14 cnd:pre:1s; +rougirait rougir ver 9.01 42.09 0.29 0 cnd:pre:3s; +rougirent rougir ver 9.01 42.09 0 0.2 ind:pas:3p; +rougirez rougir ver 9.01 42.09 0.27 0 ind:fut:2p; +rougis rougir ver m p 9.01 42.09 1.75 4.32 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rougissaient rougir ver 9.01 42.09 0.02 0.54 ind:imp:3p; +rougissais rougir ver 9.01 42.09 0.19 0.68 ind:imp:1s;ind:imp:2s; +rougissait rougir ver 9.01 42.09 0.03 2.36 ind:imp:3s; +rougissant rougir ver 9.01 42.09 0.02 3.78 par:pre; +rougissante rougissant adj f s 0.2 2.16 0.15 1.28 +rougissantes rougissant adj f p 0.2 2.16 0.02 0.14 +rougissants rougissant adj m p 0.2 2.16 0.01 0.07 +rougisse rougir ver 9.01 42.09 0.01 0.07 sub:pre:1s;sub:pre:3s; +rougissement rougissement nom m s 0.06 0.07 0.03 0.07 +rougissements rougissement nom m p 0.06 0.07 0.04 0 +rougissent rougir ver 9.01 42.09 0.68 0.27 ind:pre:3p; +rougissez rougir ver 9.01 42.09 0.46 0.34 imp:pre:2p;ind:pre:2p; +rougit rougir ver 9.01 42.09 1.65 11.49 ind:pre:3s;ind:pas:3s; +rougît rougir ver 9.01 42.09 0 0.07 sub:imp:3s; +roui rouir ver m s 0 0.27 0 0.07 par:pas; +rouies rouir ver f p 0 0.27 0 0.07 par:pas; +rouillaient rouiller ver 6.75 19.46 0 0.47 ind:imp:3p; +rouillait rouiller ver 6.75 19.46 0 0.54 ind:imp:3s; +rouillant rouiller ver 6.75 19.46 0 0.14 par:pre; +rouillarde rouillarde nom f s 0 0.07 0 0.07 +rouille rouille nom f s 1.97 8.85 1.96 8.72 +rouillent rouiller ver 6.75 19.46 0.75 0.2 ind:pre:3p; +rouiller rouiller ver 6.75 19.46 0.9 0.54 inf; +rouillerait rouiller ver 6.75 19.46 0.02 0.14 cnd:pre:3s; +rouilleront rouiller ver 6.75 19.46 0.01 0 ind:fut:3p; +rouilles rouille nom f p 1.97 8.85 0.01 0.14 +rouilleux rouilleux adj m 0 0.14 0 0.14 +rouillures rouillure nom f p 0 0.07 0 0.07 +rouillé rouiller ver m s 6.75 19.46 2.26 5.41 par:pas; +rouillée rouiller ver f s 6.75 19.46 1.46 2.91 par:pas; +rouillées rouiller ver f p 6.75 19.46 0.49 3.65 par:pas; +rouillés rouiller ver m p 6.75 19.46 0.42 4.26 par:pas; +rouissant rouir ver 0 0.27 0 0.07 par:pre; +rouissent rouir ver 0 0.27 0 0.07 ind:pre:3p; +roula rouler ver 61.82 163.45 0.16 12.43 ind:pas:3s; +roulade roulade nom f s 0.2 1.28 0.14 0.47 +roulades roulade nom f p 0.2 1.28 0.06 0.81 +roulage roulage nom m s 0.02 0.2 0.02 0.14 +roulages roulage nom m p 0.02 0.2 0 0.07 +roulai rouler ver 61.82 163.45 0.02 0.41 ind:pas:1s; +roulaient rouler ver 61.82 163.45 0.34 10.41 ind:imp:3p; +roulais rouler ver 61.82 163.45 1.21 2.43 ind:imp:1s;ind:imp:2s; +roulait rouler ver 61.82 163.45 2.43 22.91 ind:imp:3s; +roulant roulant adj m s 7.03 10.54 4.84 6.69 +roulante roulant adj f s 7.03 10.54 1.75 2.16 +roulantes roulant adj f p 7.03 10.54 0.17 0.88 +roulants roulant adj m p 7.03 10.54 0.27 0.81 +roule rouler ver 61.82 163.45 22.86 24.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rouleau rouleau nom m s 5.93 19.19 3.87 10.88 +rouleaux rouleau nom m p 5.93 19.19 2.06 8.31 +roulement roulement nom m s 2.94 10.41 2.17 7.97 +roulements roulement nom m p 2.94 10.41 0.77 2.43 +roulent rouler ver 61.82 163.45 2.02 6.28 ind:pre:3p; +rouler rouler ver 61.82 163.45 14.41 33.78 inf;; +roulera rouler ver 61.82 163.45 0.62 0.34 ind:fut:3s; +roulerai rouler ver 61.82 163.45 0.09 0.14 ind:fut:1s; +rouleraient rouler ver 61.82 163.45 0.01 0.34 cnd:pre:3p; +roulerais rouler ver 61.82 163.45 0.24 0 cnd:pre:1s;cnd:pre:2s; +roulerait rouler ver 61.82 163.45 0.27 0.81 cnd:pre:3s; +rouleras rouler ver 61.82 163.45 0.07 0 ind:fut:2s; +roulerez rouler ver 61.82 163.45 0.29 0 ind:fut:2p; +rouleriez rouler ver 61.82 163.45 0.02 0 cnd:pre:2p; +roulerons rouler ver 61.82 163.45 0.08 0.07 ind:fut:1p; +rouleront rouler ver 61.82 163.45 0.17 0.27 ind:fut:3p; +roules rouler ver 61.82 163.45 1.89 0.61 ind:pre:2s; +roulette roulette nom f s 5.55 8.78 2.5 2.77 +roulettes roulette nom f p 5.55 8.78 3.05 6.01 +rouleur rouleur adj m s 0.03 0.41 0.03 0.2 +rouleurs rouleur nom m p 0.06 0.41 0.03 0.27 +rouleuse rouleur adj f s 0.03 0.41 0 0.14 +rouleuses rouleur adj f p 0.03 0.41 0 0.07 +roulez rouler ver 61.82 163.45 3.83 0.95 imp:pre:2p;ind:pre:2p; +roulier roulier nom m s 0.3 1.01 0.16 0.61 +rouliers roulier nom m p 0.3 1.01 0.14 0.41 +rouliez rouler ver 61.82 163.45 0.75 0.07 ind:imp:2p; +roulions rouler ver 61.82 163.45 0.09 2.09 ind:imp:1p; +roulis roulis nom m 0.56 3.04 0.56 3.04 +roulons rouler ver 61.82 163.45 0.44 2.91 imp:pre:1p;ind:pre:1p;;imp:pre:1p;ind:pre:1p; +roulottait roulotter ver 0 0.2 0 0.07 ind:imp:3s; +roulotte roulotte nom f s 1.59 4.8 1.32 3.58 +roulottent roulotter ver 0 0.2 0 0.14 ind:pre:3p; +roulottes roulotte nom f p 1.59 4.8 0.27 1.22 +roulottiers roulottier nom m p 0 0.2 0 0.14 +roulottière roulottier nom f s 0 0.2 0 0.07 +roulure roulure nom f s 0.86 0.88 0.71 0.68 +roulures roulure nom f p 0.86 0.88 0.14 0.2 +roulâmes rouler ver 61.82 163.45 0 0.54 ind:pas:1p; +roulât rouler ver 61.82 163.45 0 0.07 sub:imp:3s; +roulèrent rouler ver 61.82 163.45 0.28 4.26 ind:pas:3p; +roulé rouler ver m s 61.82 163.45 6.25 16.28 par:pas; +roulé_boulé roulé_boulé nom m s 0 0.27 0 0.14 +roulée roulé adj f s 2.15 8.99 1.18 2.23 +roulées rouler ver f p 61.82 163.45 0.17 1.08 par:pas; +roulés rouler ver m p 61.82 163.45 1 3.65 par:pas; +roulé_boulé roulé_boulé nom m p 0 0.27 0 0.14 +roumain roumain adj m s 3.11 1.42 2.23 0.41 +roumaine roumain adj f s 3.11 1.42 0.78 0.68 +roumaines roumain nom f p 2.58 1.76 0.14 0 +roumains roumain nom m p 2.58 1.76 0.87 0.88 +roumi roumi nom m s 0.14 0.47 0.14 0 +roumis roumi nom m p 0.14 0.47 0 0.47 +round round nom m s 7.59 2.84 5.75 2.3 +rounds round nom m p 7.59 2.84 1.84 0.54 +roupane roupane nom f s 0 0.27 0 0.27 +roupette roupette nom f s 0.15 0 0.15 0 +roupettes roupettes nom f p 0.56 0.2 0.56 0.2 +roupie roupie nom f s 1.3 0.95 0.29 0.41 +roupies roupie nom f p 1.3 0.95 1.01 0.54 +roupillaient roupiller ver 2.47 6.82 0 0.07 ind:imp:3p; +roupillais roupiller ver 2.47 6.82 0.06 0.14 ind:imp:1s;ind:imp:2s; +roupillait roupiller ver 2.47 6.82 0.04 0.54 ind:imp:3s; +roupille roupiller ver 2.47 6.82 0.64 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +roupillent roupiller ver 2.47 6.82 0.12 0.81 ind:pre:3p; +roupiller roupiller ver 2.47 6.82 1.22 2.43 inf; +roupillerai roupiller ver 2.47 6.82 0 0.07 ind:fut:1s; +roupillerais roupiller ver 2.47 6.82 0.01 0 cnd:pre:1s; +roupillerait roupiller ver 2.47 6.82 0 0.07 cnd:pre:3s; +roupilles roupiller ver 2.47 6.82 0.06 0.27 ind:pre:2s; +roupillez roupiller ver 2.47 6.82 0.19 0.07 imp:pre:2p;ind:pre:2p; +roupillon roupillon nom m s 0.56 1.08 0.42 1.01 +roupillons roupillon nom m p 0.56 1.08 0.14 0.07 +roupillé roupiller ver m s 2.47 6.82 0.14 0.68 par:pas; +rouquemoute rouquemoute nom s 0 3.85 0 3.85 +rouquette rouquette nom f s 0 0.07 0 0.07 +rouquin rouquin nom m s 2.84 10.07 1.33 8.31 +rouquine rouquin nom f s 2.84 10.07 1.06 1.35 +rouquines rouquin nom f p 2.84 10.07 0.05 0.07 +rouquins rouquin nom m p 2.84 10.07 0.39 0.34 +rouscaillait rouscailler ver 0.04 0.54 0 0.07 ind:imp:3s; +rouscaillant rouscailler ver 0.04 0.54 0 0.07 par:pre; +rouscaille rouscailler ver 0.04 0.54 0.04 0.14 imp:pre:2s;ind:pre:3s; +rouscaillent rouscailler ver 0.04 0.54 0 0.07 ind:pre:3p; +rouscailler rouscailler ver 0.04 0.54 0 0.2 inf; +rouspète rouspéter ver 1.02 1.69 0.16 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rouspètent rouspéter ver 1.02 1.69 0.05 0.07 ind:pre:3p; +rouspètes rouspéter ver 1.02 1.69 0.13 0 ind:pre:2s; +rouspéta rouspéter ver 1.02 1.69 0.01 0.2 ind:pas:3s; +rouspétage rouspétage nom m s 0 0.07 0 0.07 +rouspétaient rouspéter ver 1.02 1.69 0 0.07 ind:imp:3p; +rouspétais rouspéter ver 1.02 1.69 0.01 0 ind:imp:1s; +rouspétait rouspéter ver 1.02 1.69 0.03 0.34 ind:imp:3s; +rouspétance rouspétance nom f s 0.01 0.27 0.01 0.27 +rouspétant rouspéter ver 1.02 1.69 0.17 0.14 par:pre; +rouspéter rouspéter ver 1.02 1.69 0.46 0.27 inf; +rouspétera rouspéter ver 1.02 1.69 0 0.07 ind:fut:3s; +rouspéteur rouspéteur nom m s 0.04 0 0.01 0 +rouspéteurs rouspéteur nom m p 0.04 0 0.02 0 +rouspétez rouspéter ver 1.02 1.69 0.01 0.14 imp:pre:2p;ind:pre:2p; +rousse roux nom f s 5.03 11.08 3.69 5.61 +rousseau rousseau nom m s 0 0.2 0 0.14 +rousseauiste rousseauiste adj f s 0.01 0.07 0.01 0.07 +rousseaux rousseau nom m p 0 0.2 0 0.07 +rousselée rousseler ver f s 0.1 0 0.1 0 par:pas; +rousserolle rousserolle nom f s 0 0.07 0 0.07 +rousses roux nom f p 5.03 11.08 0.53 0.41 +roussette roussette nom f s 0.01 1.69 0.01 1.55 +roussettes roussette nom f p 0.01 1.69 0 0.14 +rousseur rousseur nom f s 1.45 5.54 1.4 5.14 +rousseurs rousseur nom f p 1.45 5.54 0.05 0.41 +roussi roussi nom m s 1 1.22 1 1.15 +roussie roussi adj f s 0.04 2.23 0.01 0.61 +roussies roussir ver f p 0.23 1.76 0.1 0.14 par:pas; +roussin roussin nom m s 0 0.68 0 0.34 +roussins roussin nom m p 0 0.68 0 0.34 +roussir roussir ver 0.23 1.76 0.02 0.27 inf; +roussis roussi adj m p 0.04 2.23 0.01 0.61 +roussissaient roussir ver 0.23 1.76 0 0.07 ind:imp:3p; +roussissait roussir ver 0.23 1.76 0 0.14 ind:imp:3s; +roussissant roussir ver 0.23 1.76 0 0.07 par:pre; +roussissures roussissure nom f p 0 0.07 0 0.07 +roussit roussir ver 0.23 1.76 0.01 0.2 ind:pre:3s;ind:pas:3s; +roussâtre roussâtre adj s 0 1.22 0 0.81 +roussâtres roussâtre adj p 0 1.22 0 0.41 +roussé rousser ver m s 0 0.07 0 0.07 par:pas; +rouste rouste nom f s 0.34 0.41 0.32 0.34 +roustes rouste nom f p 0.34 0.41 0.02 0.07 +rousti roustir ver m s 0.01 0.34 0.01 0.14 par:pas; +rousties roustir ver f p 0.01 0.34 0 0.07 par:pas; +roustis roustir ver m p 0.01 0.34 0 0.14 par:pas; +rouston rouston nom m s 0.01 0 0.01 0 +roustons roustons nom m p 0.24 0.2 0.24 0.2 +routage routage nom m s 0.16 0.07 0.16 0.07 +routard routard nom m s 0.32 0.07 0.26 0 +routarde routard adj f s 0.01 0.07 0 0.07 +routards routard nom m p 0.32 0.07 0.06 0.07 +route route nom f s 166.72 288.04 152.83 251.35 +router router ver 0.05 0 0.03 0 inf; +routes route nom f p 166.72 288.04 13.89 36.69 +routeur routeur nom m s 0.17 0 0.11 0 +routeurs routeur nom m p 0.17 0 0.06 0 +routier routier adj m s 4.63 4.26 1.41 0.74 +routiers routier nom m p 2.04 5.61 0.98 2.97 +routin routin nom m s 0 0.47 0 0.47 +routine routine nom f s 12.14 12.77 11.67 9.53 +routines routine nom f p 12.14 12.77 0.47 3.24 +routinier routinier adj m s 0.15 1.62 0.09 0.41 +routiniers routinier adj m p 0.15 1.62 0 0.47 +routinière routinier adj f s 0.15 1.62 0.05 0.47 +routinières routinier adj f p 0.15 1.62 0.01 0.27 +routière routier adj f s 4.63 4.26 2.34 2.3 +routières routier adj f p 4.63 4.26 0.39 0.54 +routé router ver m s 0.05 0 0.02 0 par:pas; +rouvert rouvrir ver m s 6.76 18.45 0.62 1.89 par:pas; +rouverte rouvrir ver f s 6.76 18.45 0.19 0.81 par:pas; +rouvertes rouvrir ver f p 6.76 18.45 0.14 0.41 par:pas; +rouverts rouvrir ver m p 6.76 18.45 0.02 0.27 par:pas; +rouvraient rouvrir ver 6.76 18.45 0.01 0.2 ind:imp:3p; +rouvrais rouvrir ver 6.76 18.45 0.02 0.47 ind:imp:1s;ind:imp:2s; +rouvrait rouvrir ver 6.76 18.45 0.01 1.01 ind:imp:3s; +rouvrant rouvrir ver 6.76 18.45 0.01 0.61 par:pre; +rouvre rouvrir ver 6.76 18.45 0.94 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rouvrent rouvrir ver 6.76 18.45 0.35 0.41 ind:pre:3p; +rouvres rouvrir ver 6.76 18.45 0.02 0.27 ind:pre:2s;sub:pre:2s; +rouvrez rouvrir ver 6.76 18.45 0.25 0 imp:pre:2p;ind:pre:2p; +rouvriez rouvrir ver 6.76 18.45 0.01 0 ind:imp:2p; +rouvrir rouvrir ver 6.76 18.45 3.46 3.65 inf; +rouvrira rouvrir ver 6.76 18.45 0.28 0.07 ind:fut:3s; +rouvrirai rouvrir ver 6.76 18.45 0.09 0.2 ind:fut:1s; +rouvriraient rouvrir ver 6.76 18.45 0 0.14 cnd:pre:3p; +rouvrirais rouvrir ver 6.76 18.45 0 0.14 cnd:pre:1s;cnd:pre:2s; +rouvrirait rouvrir ver 6.76 18.45 0.01 0.14 cnd:pre:3s; +rouvrirent rouvrir ver 6.76 18.45 0 0.41 ind:pas:3p; +rouvrirez rouvrir ver 6.76 18.45 0.04 0.07 ind:fut:2p; +rouvriront rouvrir ver 6.76 18.45 0.14 0 ind:fut:3p; +rouvris rouvrir ver 6.76 18.45 0.01 0.34 ind:pas:1s; +rouvrit rouvrir ver 6.76 18.45 0.12 3.92 ind:pas:3s; +rouvrons rouvrir ver 6.76 18.45 0.03 0 imp:pre:1p;ind:pre:1p; +rouvrît rouvrir ver 6.76 18.45 0 0.14 sub:imp:3s; +roux roux adj m 5.52 40.41 3.66 20.68 +roué rouer ver m s 2.2 2.57 0.53 1.22 par:pas; +rouée rouer ver f s 2.2 2.57 0.36 0.41 par:pas; +roués roué adj m p 0.02 0.54 0.01 0.2 +roy roy nom m s 0.17 0.27 0.17 0.27 +royal royal adj m s 22.65 29.26 10.51 16.49 +royale royal adj f s 22.65 29.26 9.64 9.59 +royalement royalement adv 0.83 1.82 0.83 1.82 +royales royal adj f p 22.65 29.26 1.5 1.69 +royaliste royaliste adj s 0.35 0.68 0.2 0.47 +royalistes royaliste nom p 0.28 0.34 0.16 0.27 +royalties royalties nom f p 0.54 0.14 0.54 0.14 +royalty royalty nom f s 0.01 0.07 0.01 0.07 +royaume royaume nom m s 27.79 20.68 24.16 18.78 +royaumes royaume nom m p 27.79 20.68 3.62 1.89 +royauté royauté nom f s 0.59 1.28 0.58 1.15 +royautés royauté nom f p 0.59 1.28 0.01 0.14 +royaux royal adj m p 22.65 29.26 1 1.49 +ru ru nom m s 0.26 0.88 0.14 0.61 +rua ruer ver 3.27 20.81 0.03 3.11 ind:pas:3s; +ruade ruade nom f s 0.28 2.09 0.28 0.95 +ruades ruade nom f p 0.28 2.09 0.01 1.15 +ruai ruer ver 3.27 20.81 0.01 0.47 ind:pas:1s; +ruaient ruer ver 3.27 20.81 0.01 0.74 ind:imp:3p; +ruais ruer ver 3.27 20.81 0.01 0.34 ind:imp:1s; +ruait ruer ver 3.27 20.81 0.13 1.42 ind:imp:3s; +ruant ruer ver 3.27 20.81 0.05 1.49 par:pre; +ruban ruban nom m s 8.49 23.18 6.56 15.2 +rubans ruban nom m p 8.49 23.18 1.93 7.97 +rubato rubato adv 0 0.07 0 0.07 +rubia rubia nom m s 0.01 0 0.01 0 +rubican rubican adj m s 0 0.07 0 0.07 +rubicond rubicond adj m s 0 1.49 0 0.88 +rubiconde rubicond adj f s 0 1.49 0 0.34 +rubicondes rubicond adj f p 0 1.49 0 0.14 +rubiconds rubicond adj m p 0 1.49 0 0.14 +rubis rubis nom m 2.22 3.11 2.22 3.11 +rubricard rubricard nom m s 0 0.07 0 0.07 +rubrique rubrique nom f s 3.06 6.69 2.9 5 +rubriques rubrique nom f p 3.06 6.69 0.16 1.69 +rubénienne rubénien adj f s 0 0.07 0 0.07 +rubéole rubéole nom f s 0.14 0.14 0.14 0.14 +ruche ruche nom f s 3.57 3.51 2.64 2.03 +rucher rucher nom m s 0.11 0.2 0.11 0.14 +ruchers rucher nom m p 0.11 0.2 0 0.07 +ruches ruche nom f p 3.57 3.51 0.93 1.49 +ruché ruché nom m s 0 0.14 0 0.07 +ruchée ruché nom f s 0 0.14 0 0.07 +rucksack rucksack nom m s 0 0.07 0 0.07 +rude rude adj s 6.85 29.8 5.68 22.64 +rudement rudement adv 2.42 10.07 2.42 10.07 +rudes rude adj p 6.85 29.8 1.17 7.16 +rudesse rudesse nom f s 0.42 3.65 0.42 3.38 +rudesses rudesse nom f p 0.42 3.65 0 0.27 +rudiment rudiment nom m s 0.24 1.89 0.01 0.27 +rudimentaire rudimentaire adj s 0.87 3.11 0.73 2.09 +rudimentaires rudimentaire adj p 0.87 3.11 0.14 1.01 +rudiments rudiment nom m p 0.24 1.89 0.23 1.62 +rudoie rudoyer ver 0.45 1.22 0.01 0 ind:pre:3s; +rudoiement rudoiement nom m s 0 0.14 0 0.07 +rudoiements rudoiement nom m p 0 0.14 0 0.07 +rudoient rudoyer ver 0.45 1.22 0 0.07 ind:pre:3p; +rudoies rudoyer ver 0.45 1.22 0.01 0 ind:pre:2s; +rudoya rudoyer ver 0.45 1.22 0 0.07 ind:pas:3s; +rudoyais rudoyer ver 0.45 1.22 0 0.07 ind:imp:1s; +rudoyait rudoyer ver 0.45 1.22 0.02 0.41 ind:imp:3s; +rudoyant rudoyer ver 0.45 1.22 0 0.07 par:pre; +rudoyer rudoyer ver 0.45 1.22 0.32 0.2 inf; +rudoyèrent rudoyer ver 0.45 1.22 0 0.07 ind:pas:3p; +rudoyé rudoyer ver m s 0.45 1.22 0.08 0.2 par:pas; +rudoyés rudoyer ver m p 0.45 1.22 0.01 0.07 par:pas; +rue rue nom f s 157.81 562.97 127.35 449.53 +ruelle ruelle nom f s 6.25 30.47 4.04 13.51 +ruelles ruelle nom f p 6.25 30.47 2.21 16.96 +ruent ruer ver 3.27 20.81 0.38 1.08 ind:pre:3p; +ruer ruer ver 3.27 20.81 0.59 3.18 inf; +rueront ruer ver 3.27 20.81 0 0.07 ind:fut:3p; +rues rue nom p 157.81 562.97 30.46 113.45 +ruffian ruffian nom m s 0.55 0.81 0.48 0.41 +ruffians ruffian nom m p 0.55 0.81 0.07 0.41 +rufian rufian nom m s 0.01 0 0.01 0 +rugby rugby nom m s 1.14 3.11 1.14 3.11 +rugbyman rugbyman nom m s 0.03 1.28 0.03 0.34 +rugbymen rugbyman nom m p 0.03 1.28 0 0.95 +rugi rugir ver m s 1.73 7.5 0 0.61 par:pas; +rugir rugir ver 1.73 7.5 0.52 0.88 inf; +rugiraient rugir ver 1.73 7.5 0 0.07 cnd:pre:3p; +rugirent rugir ver 1.73 7.5 0 0.07 ind:pas:3p; +rugiront rugir ver 1.73 7.5 0.01 0 ind:fut:3p; +rugis rugir ver m p 1.73 7.5 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rugissaient rugir ver 1.73 7.5 0.02 0.34 ind:imp:3p; +rugissait rugir ver 1.73 7.5 0.05 1.22 ind:imp:3s; +rugissant rugissant adj m s 0.12 1.22 0.09 0.61 +rugissante rugissant adj f s 0.12 1.22 0.01 0.27 +rugissantes rugissant adj f p 0.12 1.22 0 0.07 +rugissants rugissant adj m p 0.12 1.22 0.02 0.27 +rugisse rugir ver 1.73 7.5 0.02 0 sub:pre:3s; +rugissement rugissement nom m s 0.66 4.93 0.61 2.91 +rugissements rugissement nom m p 0.66 4.93 0.05 2.03 +rugissent rugir ver 1.73 7.5 0.05 0.07 ind:pre:3p; +rugissez rugir ver 1.73 7.5 0.03 0 imp:pre:2p; +rugit rugir ver 1.73 7.5 0.95 3.51 ind:pre:3s;ind:pas:3s; +rugosité rugosité nom f s 0 0.81 0 0.47 +rugosités rugosité nom f p 0 0.81 0 0.34 +rugueuse rugueux adj f s 1.08 8.78 0.45 3.31 +rugueuses rugueux adj f p 1.08 8.78 0.13 0.88 +rugueux rugueux adj m 1.08 8.78 0.5 4.59 +ruina ruiner ver 20.39 12.09 0.03 0.2 ind:pas:3s; +ruinaient ruiner ver 20.39 12.09 0.01 0.47 ind:imp:3p; +ruinais ruiner ver 20.39 12.09 0.02 0 ind:imp:1s;ind:imp:2s; +ruinait ruiner ver 20.39 12.09 0.37 0.47 ind:imp:3s; +ruinant ruiner ver 20.39 12.09 0.11 0.27 par:pre; +ruine ruine nom f s 17.93 39.39 9.23 15.47 +ruinent ruiner ver 20.39 12.09 0.67 0.47 ind:pre:3p; +ruiner ruiner ver 20.39 12.09 7.21 2.91 inf; +ruinera ruiner ver 20.39 12.09 0.54 0.2 ind:fut:3s; +ruinerai ruiner ver 20.39 12.09 0.26 0 ind:fut:1s; +ruinerais ruiner ver 20.39 12.09 0.27 0.07 cnd:pre:1s;cnd:pre:2s; +ruinerait ruiner ver 20.39 12.09 0.4 0 cnd:pre:3s; +ruineras ruiner ver 20.39 12.09 0.03 0.14 ind:fut:2s; +ruinerez ruiner ver 20.39 12.09 0.03 0 ind:fut:2p; +ruinerons ruiner ver 20.39 12.09 0.02 0 ind:fut:1p; +ruineront ruiner ver 20.39 12.09 0.01 0.07 ind:fut:3p; +ruines ruine nom f p 17.93 39.39 8.7 23.92 +ruineuse ruineux adj f s 0.3 1.82 0.06 0.61 +ruineuses ruineux adj f p 0.3 1.82 0.02 0.41 +ruineux ruineux adj m 0.3 1.82 0.22 0.81 +ruinez ruiner ver 20.39 12.09 0.35 0.07 imp:pre:2p;ind:pre:2p; +ruiniez ruiner ver 20.39 12.09 0.02 0 ind:imp:2p; +ruinât ruiner ver 20.39 12.09 0 0.14 sub:imp:3s; +ruiné ruiner ver m s 20.39 12.09 5.81 3.92 par:pas; +ruinée ruiner ver f s 20.39 12.09 1.09 0.68 par:pas; +ruinées ruiner ver f p 20.39 12.09 0.15 0.14 par:pas; +ruinés ruiner ver m p 20.39 12.09 1.02 1.01 par:pas; +ruisseau ruisseau nom m s 7.5 24.59 6.1 18.72 +ruisseaux ruisseau nom m p 7.5 24.59 1.4 5.88 +ruissela ruisseler ver 0.81 19.12 0 0.27 ind:pas:3s; +ruisselaient ruisseler ver 0.81 19.12 0 1.96 ind:imp:3p; +ruisselait ruisseler ver 0.81 19.12 0.02 4.8 ind:imp:3s; +ruisselant ruisseler ver 0.81 19.12 0.16 4.05 par:pre; +ruisselante ruisselant adj f s 0.33 6.82 0.03 3.11 +ruisselantes ruisselant adj f p 0.33 6.82 0.02 0.68 +ruisselants ruisselant adj m p 0.33 6.82 0.14 1.69 +ruisseler ruisseler ver 0.81 19.12 0.03 2.3 inf; +ruisselet ruisselet nom m s 0.01 1.01 0.01 0.54 +ruisselets ruisselet nom m p 0.01 1.01 0 0.47 +ruisselle ruisseler ver 0.81 19.12 0.5 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ruissellement ruissellement nom m s 0.01 4.53 0.01 4.12 +ruissellements ruissellement nom m p 0.01 4.53 0 0.41 +ruissellent ruisseler ver 0.81 19.12 0.1 1.22 ind:pre:3p; +ruissellerait ruisseler ver 0.81 19.12 0 0.07 cnd:pre:3s; +ruisselât ruisseler ver 0.81 19.12 0 0.07 sub:imp:3s; +ruisselèrent ruisseler ver 0.81 19.12 0 0.14 ind:pas:3p; +ruisselé ruisseler ver m s 0.81 19.12 0 0.47 par:pas; +ruisson ruisson nom m s 0 0.07 0 0.07 +rumba rumba nom f s 0.68 0.68 0.68 0.61 +rumbas rumba nom f p 0.68 0.68 0 0.07 +rumeur rumeur nom f s 22.11 37.97 10.15 27.03 +rumeurs rumeur nom f p 22.11 37.97 11.96 10.95 +rumina ruminer ver 1.66 8.85 0.01 0.34 ind:pas:3s; +ruminaient ruminer ver 1.66 8.85 0 0.27 ind:imp:3p; +ruminais ruminer ver 1.66 8.85 0.2 0.2 ind:imp:1s; +ruminait ruminer ver 1.66 8.85 0.16 1.62 ind:imp:3s; +ruminant ruminant nom m s 0.11 1.08 0.01 0.47 +ruminante ruminant adj f s 0.03 0.27 0.01 0.07 +ruminants ruminant nom m p 0.11 1.08 0.1 0.61 +rumination rumination nom f s 0.14 2.16 0 1.35 +ruminations rumination nom f p 0.14 2.16 0.14 0.81 +rumine ruminer ver 1.66 8.85 0.36 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ruminement ruminement nom m s 0 0.27 0 0.2 +ruminements ruminement nom m p 0 0.27 0 0.07 +ruminent ruminer ver 1.66 8.85 0.03 0.41 ind:pre:3p; +ruminer ruminer ver 1.66 8.85 0.84 2.77 imp:pre:2p;inf; +ruminerez ruminer ver 1.66 8.85 0 0.07 ind:fut:2p; +rumineront ruminer ver 1.66 8.85 0.01 0 ind:fut:3p; +ruminé ruminer ver m s 1.66 8.85 0.04 0.61 par:pas; +ruminée ruminer ver f s 1.66 8.85 0 0.14 par:pas; +ruminées ruminer ver f p 1.66 8.85 0 0.07 par:pas; +ruminés ruminer ver m p 1.66 8.85 0.01 0.14 par:pas; +rumsteck rumsteck nom m s 0.03 0.07 0.03 0.07 +rune rune nom f s 2.4 0.14 1.08 0 +runes rune nom f p 2.4 0.14 1.32 0.14 +runique runique adj f s 0.2 0 0.16 0 +runiques runique adj m p 0.2 0 0.04 0 +running running nom m s 0.66 0 0.66 0 +ruons ruer ver 3.27 20.81 0.01 0.07 imp:pre:1p;ind:pre:1p; +rupestre rupestre adj s 0.2 0.47 0.14 0.2 +rupestres rupestre adj p 0.2 0.47 0.06 0.27 +rupin rupin adj m s 0.34 1.28 0.32 0.54 +rupinasse rupiner ver 0 0.14 0 0.07 sub:imp:1s; +rupine rupin adj f s 0.34 1.28 0 0.27 +rupines rupin nom f p 0.68 1.69 0 0.07 +rupiniez rupiner ver 0 0.14 0 0.07 ind:imp:2p; +rupins rupin nom m p 0.68 1.69 0.43 1.22 +rupteur rupteur nom m s 0.02 0 0.02 0 +rupture rupture nom f s 8.39 21.49 7.87 19.73 +ruptures rupture nom f p 8.39 21.49 0.52 1.76 +rural rural adj m s 1.19 3.51 0.66 1.15 +rurale rural adj f s 1.19 3.51 0.23 0.88 +rurales rural adj f p 1.19 3.51 0.25 0.34 +ruraux rural adj m p 1.19 3.51 0.05 1.15 +rus ru nom m p 0.26 0.88 0.11 0.27 +rusa ruser ver 3.12 4.66 0.03 0.14 ind:pas:3s; +rusais ruser ver 3.12 4.66 0.01 0.07 ind:imp:1s; +rusait ruser ver 3.12 4.66 0.02 0.14 ind:imp:3s; +rusant ruser ver 3.12 4.66 0.02 0.07 par:pre; +ruse ruse nom f s 9.98 19.93 8.09 13.31 +rusent ruser ver 3.12 4.66 0.01 0.07 ind:pre:3p; +ruser ruser ver 3.12 4.66 0.61 2.03 inf; +rusera ruser ver 3.12 4.66 0 0.07 ind:fut:3s; +ruserai ruser ver 3.12 4.66 0 0.14 ind:fut:1s; +ruserais ruser ver 3.12 4.66 0 0.07 cnd:pre:1s; +ruses ruse nom f p 9.98 19.93 1.89 6.62 +rush rush nom m s 2.02 0.88 1.04 0.54 +rushes rush nom m p 2.02 0.88 0.98 0.34 +russe russe adj s 32.27 48.51 24.85 35.34 +russes russe nom p 35.44 40.27 19.76 24.73 +russifiant russifier ver 0 0.27 0 0.07 par:pre; +russification russification nom f s 0 0.14 0 0.14 +russifié russifier ver m s 0 0.27 0 0.14 par:pas; +russifiée russifier ver f s 0 0.27 0 0.07 par:pas; +russo_allemand russo_allemand adj m s 0 0.14 0 0.07 +russo_allemand russo_allemand adj f s 0 0.14 0 0.07 +russo_américain russo_américain adj m s 0 0.07 0 0.07 +russo_japonais russo_japonais adj f s 0 0.2 0 0.2 +russo_polonais russo_polonais adj m 0 0.14 0 0.07 +russo_polonais russo_polonais adj f s 0 0.14 0 0.07 +russo_turque russo_turque adj f s 0 0.14 0 0.14 +russophone russophone adj m s 0.01 0 0.01 0 +russules russule nom f p 0 0.14 0 0.14 +rustaud rustaud nom m s 0.39 0.2 0.33 0.14 +rustaude rustaud adj f s 0.12 0.68 0.02 0.27 +rustaudes rustaud nom f p 0.39 0.2 0.01 0 +rustauds rustaud nom m p 0.39 0.2 0.05 0.07 +rusticité rusticité nom f s 0.02 1.08 0.02 1.08 +rustine rustine nom f s 0.1 1.69 0.08 0.95 +rustines rustine nom f p 0.1 1.69 0.02 0.74 +rustique rustique adj s 1.29 6.22 0.95 4.26 +rustiques rustique adj p 1.29 6.22 0.34 1.96 +rustre rustre nom s 2.26 1.28 1.63 0.74 +rustres rustre nom p 2.26 1.28 0.63 0.54 +rusâmes ruser ver 3.12 4.66 0 0.07 ind:pas:1p; +rusé rusé adj m s 3.27 4.8 2.46 2.77 +rusée rusé adj f s 3.27 4.8 0.52 0.95 +rusées ruser ver f p 3.12 4.66 0.13 0 par:pas; +rusés ruser ver m p 3.12 4.66 0.24 0.14 par:pas; +rut rut nom m s 2 2.09 2 2.09 +rutabaga rutabaga nom m s 0.26 1.49 0.24 0.74 +rutabagas rutabaga nom m p 0.26 1.49 0.03 0.74 +rutherford rutherford nom m s 0.04 0 0.04 0 +rutilaient rutiler ver 0.02 1.76 0 0.14 ind:imp:3p; +rutilait rutiler ver 0.02 1.76 0 0.47 ind:imp:3s; +rutilances rutilance nom f p 0 0.07 0 0.07 +rutilant rutilant adj m s 0.42 3.11 0.15 0.95 +rutilante rutilant adj f s 0.42 3.11 0.23 0.81 +rutilantes rutilant adj f p 0.42 3.11 0.04 0.61 +rutilants rutilant adj m p 0.42 3.11 0.01 0.74 +rutile rutiler ver 0.02 1.76 0.01 0.54 ind:pre:3s; +rutilent rutiler ver 0.02 1.76 0 0.14 ind:pre:3p; +rutiler rutiler ver 0.02 1.76 0 0.14 inf; +ruâmes ruer ver 3.27 20.81 0 0.07 ind:pas:1p; +ruât ruer ver 3.27 20.81 0 0.14 sub:imp:3s; +ruèrent ruer ver 3.27 20.81 0.03 1.15 ind:pas:3p; +rué ruer ver m s 3.27 20.81 0.67 1.69 par:pas; +ruée ruée nom f s 0.86 4.73 0.85 4.66 +ruées ruer ver f p 3.27 20.81 0.01 0.14 par:pas; +rués ruer ver m p 3.27 20.81 0.06 0.54 par:pas; +rythmaient rythmer ver 0.47 6.76 0 0.34 ind:imp:3p; +rythmait rythmer ver 0.47 6.76 0 0.88 ind:imp:3s; +rythmant rythmer ver 0.47 6.76 0 0.34 par:pre; +rythme rythme nom m s 20.43 45.95 19.15 42.57 +rythment rythmer ver 0.47 6.76 0 0.41 ind:pre:3p; +rythmer rythmer ver 0.47 6.76 0.11 0.81 inf; +rythmera rythmer ver 0.47 6.76 0 0.07 ind:fut:3s; +rythmes rythme nom m p 20.43 45.95 1.28 3.38 +rythmique rythmique nom f s 0.26 0.54 0.25 0.47 +rythmiquement rythmiquement adv 0.02 0.2 0.02 0.2 +rythmiques rythmique adj p 0.52 1.15 0.31 0.41 +rythmé rythmé adj m s 0.91 1.96 0.3 0.68 +rythmée rythmé adj f s 0.91 1.96 0.57 0.68 +rythmées rythmé adj f p 0.91 1.96 0.01 0.2 +rythmés rythmé adj m p 0.91 1.96 0.03 0.41 +râble râble nom m s 0.01 1.96 0.01 1.96 +râblé râblé adj m s 0.01 1.82 0.01 1.28 +râblée râblé adj f s 0.01 1.82 0 0.07 +râblés râblé adj m p 0.01 1.82 0 0.47 +râla râler ver 6.61 10.41 0 0.54 ind:pas:3s; +râlai râler ver 6.61 10.41 0 0.07 ind:pas:1s; +râlaient râler ver 6.61 10.41 0 0.47 ind:imp:3p; +râlais râler ver 6.61 10.41 0.19 0.07 ind:imp:1s;ind:imp:2s; +râlait râler ver 6.61 10.41 0.15 2.36 ind:imp:3s; +râlant râler ver 6.61 10.41 0.16 0.54 par:pre; +râlante râlant adj f s 0.02 0.47 0.02 0.14 +râle râler ver 6.61 10.41 1.7 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +râlement râlement nom m s 0 0.07 0 0.07 +râlent râler ver 6.61 10.41 0.37 0.2 ind:pre:3p; +râler râler ver 6.61 10.41 3.05 2.77 inf; +râlera râler ver 6.61 10.41 0.01 0.14 ind:fut:3s; +râlerai râler ver 6.61 10.41 0.02 0 ind:fut:1s; +râlerait râler ver 6.61 10.41 0.01 0.34 cnd:pre:3s; +râles râle nom m p 1.89 9.46 0.84 3.58 +râleur râleur nom m s 0.48 0.47 0.34 0.14 +râleurs râleur adj m p 0.33 0.47 0.21 0.27 +râleuse râleur nom f s 0.48 0.47 0.03 0.14 +râleuses râleur nom f p 0.48 0.47 0 0.07 +râleux râleux nom m 0 0.14 0 0.14 +râlez râler ver 6.61 10.41 0.21 0.14 imp:pre:2p;ind:pre:2p; +râlé râler ver m s 6.61 10.41 0.15 0.54 par:pas; +râpa râper ver 1.22 4.46 0 0.07 ind:pas:3s; +râpaient râper ver 1.22 4.46 0 0.27 ind:imp:3p; +râpait râper ver 1.22 4.46 0 0.34 ind:imp:3s; +râpant râper ver 1.22 4.46 0 0.14 par:pre; +râpe râpe nom f s 1.25 1.55 1.02 1.35 +râpent râper ver 1.22 4.46 0 0.2 ind:pre:3p; +râper râper ver 1.22 4.46 0.07 0.47 inf; +râperait râper ver 1.22 4.46 0 0.07 cnd:pre:3s; +râperas râper ver 1.22 4.46 0 0.07 ind:fut:2s; +râpes râpe nom f p 1.25 1.55 0.23 0.2 +râpeuse râpeux adj f s 0.3 3.85 0.01 1.69 +râpeuses râpeux adj f p 0.3 3.85 0 0.68 +râpeux râpeux adj m 0.3 3.85 0.29 1.49 +râpé râper ver m s 1.22 4.46 0.96 1.76 par:pas; +râpée râpé adj f s 0.49 3.51 0.3 0.54 +râpées râpé adj f p 0.49 3.51 0.03 0.88 +râpés râpé adj m p 0.49 3.51 0.02 0.47 +râteau râteau nom m s 0.83 2.5 0.77 1.62 +râteaux râteau nom m p 0.83 2.5 0.07 0.88 +râtelait râteler ver 0.01 0.14 0 0.07 ind:imp:3s; +râteler râteler ver 0.01 0.14 0.01 0 inf; +râtelier râtelier nom m s 0.39 2.77 0.36 2.43 +râteliers râtelier nom m p 0.39 2.77 0.03 0.34 +râtelées râteler ver f p 0.01 0.14 0 0.07 par:pas; +règle règle nom f s 79.51 49.93 33.17 27.91 +règlement règlement nom m s 21.27 17.16 19.4 12.16 +règlements règlement nom m p 21.27 17.16 1.87 5 +règlent régler ver 85.81 54.19 0.76 0.47 ind:pre:3p; +règles règle nom f p 79.51 49.93 46.34 22.03 +règne régner ver 22.75 47.43 8.06 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +règnent régner ver 22.75 47.43 1.52 1.89 ind:pre:3p; +règnes régner ver 22.75 47.43 0.16 0.07 ind:pre:2s; +ré ré nom m 3.06 0.54 3.06 0.54 +réa réa nom m s 0.88 0 0.88 0 +réabonnement réabonnement nom m s 0.03 0.07 0.03 0.07 +réabonner réabonner ver 0.03 0 0.03 0 inf; +réabsorption réabsorption nom f s 0.03 0 0.03 0 +réac réac adj m s 0.59 0.47 0.42 0.41 +réaccoutumer réaccoutumer ver 0 0.2 0 0.14 inf; +réaccoutumerait réaccoutumer ver 0 0.2 0 0.07 cnd:pre:3s; +réacheminer réacheminer ver 0.01 0 0.01 0 inf; +réacs réac adj m p 0.59 0.47 0.17 0.07 +réactant réactant nom m s 0.01 0 0.01 0 +réacteur réacteur nom m s 5.24 0.81 3.62 0.14 +réacteurs réacteur nom m p 5.24 0.81 1.62 0.68 +réactif réactif nom m s 0.38 0.2 0.27 0.2 +réactifs réactif nom m p 0.38 0.2 0.11 0 +réaction réaction nom f s 26.41 30.68 21.23 20 +réactionnaire réactionnaire adj s 1.55 2.43 0.54 1.76 +réactionnaires réactionnaire adj p 1.55 2.43 1.01 0.68 +réactionnel réactionnel adj m s 0.01 0 0.01 0 +réactions réaction nom f p 26.41 30.68 5.17 10.68 +réactiva réactiver ver 1.21 0.34 0 0.07 ind:pas:3s; +réactivait réactiver ver 1.21 0.34 0 0.07 ind:imp:3s; +réactivation réactivation nom f s 0.03 0.07 0.03 0.07 +réactive réactiver ver 1.21 0.34 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réactiver réactiver ver 1.21 0.34 0.49 0 inf; +réactiveront réactiver ver 1.21 0.34 0.01 0 ind:fut:3p; +réactives réactif adj f p 0.63 0.07 0.24 0 +réactivez réactiver ver 1.21 0.34 0.13 0 imp:pre:2p; +réactiviez réactiver ver 1.21 0.34 0.01 0 ind:imp:2p; +réactivité réactivité nom f s 0.2 0 0.2 0 +réactivé réactiver ver m s 1.21 0.34 0.37 0.14 par:pas; +réactivée réactiver ver f s 1.21 0.34 0.09 0 par:pas; +réactivées réactiver ver f p 1.21 0.34 0.01 0 par:pas; +réactualisation réactualisation nom f s 0.01 0 0.01 0 +réactualise réactualiser ver 0.05 0.14 0 0.07 ind:pre:3s; +réactualiser réactualiser ver 0.05 0.14 0.03 0.07 inf; +réactualisé réactualiser ver m s 0.05 0.14 0.03 0 par:pas; +réadaptait réadapter ver 0.09 0.27 0 0.07 ind:imp:3s; +réadaptant réadapter ver 0.09 0.27 0 0.07 par:pre; +réadaptation réadaptation nom f s 0.24 0.14 0.24 0.14 +réadapte réadapter ver 0.09 0.27 0.01 0 ind:pre:3s; +réadapter réadapter ver 0.09 0.27 0.08 0.14 inf; +réadmis réadmettre ver m s 0.06 0 0.04 0 par:pas; +réadmise réadmettre ver f s 0.06 0 0.01 0 par:pas; +réadmission réadmission nom f s 0.04 0 0.04 0 +réadopter réadopter ver 0 0.07 0 0.07 inf; +réaffectait réaffecter ver 0.51 0 0.01 0 ind:imp:3s; +réaffectation réaffectation nom f s 0.16 0 0.16 0 +réaffecter réaffecter ver 0.51 0 0.11 0 inf; +réaffectons réaffecter ver 0.51 0 0.01 0 imp:pre:1p; +réaffecté réaffecter ver m s 0.51 0 0.28 0 par:pas; +réaffectée réaffecter ver f s 0.51 0 0.07 0 par:pas; +réaffectés réaffecter ver m p 0.51 0 0.03 0 par:pas; +réaffichées réafficher ver f p 0 0.07 0 0.07 par:pas; +réaffirmai réaffirmer ver 0.46 0.47 0 0.07 ind:pas:1s; +réaffirmaient réaffirmer ver 0.46 0.47 0 0.07 ind:imp:3p; +réaffirmait réaffirmer ver 0.46 0.47 0.01 0 ind:imp:3s; +réaffirmation réaffirmation nom f s 0.01 0 0.01 0 +réaffirme réaffirmer ver 0.46 0.47 0.22 0 ind:pre:1s;ind:pre:3s; +réaffirmer réaffirmer ver 0.46 0.47 0.13 0.27 inf; +réaffirmé réaffirmer ver m s 0.46 0.47 0.07 0 par:pas; +réaffirmée réaffirmer ver f s 0.46 0.47 0.03 0.07 par:pas; +réaffûtée réaffûter ver f s 0 0.07 0 0.07 par:pas; +réagencement réagencement nom m s 0 0.07 0 0.07 +réagi réagir ver m s 33.19 23.45 5.95 3.85 par:pas; +réagir réagir ver 33.19 23.45 9.92 7.97 inf; +réagira réagir ver 33.19 23.45 0.93 0 ind:fut:3s; +réagirai réagir ver 33.19 23.45 0.06 0.07 ind:fut:1s; +réagiraient réagir ver 33.19 23.45 0.34 0 cnd:pre:3p; +réagirais réagir ver 33.19 23.45 1.19 0 cnd:pre:1s;cnd:pre:2s; +réagirait réagir ver 33.19 23.45 0.4 0.47 cnd:pre:3s; +réagiras réagir ver 33.19 23.45 0.02 0 ind:fut:2s; +réagirent réagir ver 33.19 23.45 0 0.34 ind:pas:3p; +réagirez réagir ver 33.19 23.45 0.08 0 ind:fut:2p; +réagiriez réagir ver 33.19 23.45 0.12 0.07 cnd:pre:2p; +réagirons réagir ver 33.19 23.45 0.15 0 ind:fut:1p; +réagiront réagir ver 33.19 23.45 0.15 0 ind:fut:3p; +réagis réagir ver m p 33.19 23.45 4.01 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réagissaient réagir ver 33.19 23.45 0.03 0.41 ind:imp:3p; +réagissais réagir ver 33.19 23.45 0.01 0.61 ind:imp:1s; +réagissait réagir ver 33.19 23.45 0.17 1.49 ind:imp:3s; +réagissant réagir ver 33.19 23.45 0.07 0.2 par:pre; +réagissante réagissant adj f s 0 0.07 0 0.07 +réagisse réagir ver 33.19 23.45 0.84 0.41 sub:pre:1s;sub:pre:3s; +réagissent réagir ver 33.19 23.45 2.06 0.81 ind:pre:3p; +réagisses réagir ver 33.19 23.45 0.07 0 sub:pre:2s; +réagissez réagir ver 33.19 23.45 1.39 0.27 imp:pre:2p;ind:pre:2p; +réagissiez réagir ver 33.19 23.45 0.12 0.07 ind:imp:2p; +réagissions réagir ver 33.19 23.45 0 0.2 ind:imp:1p; +réagissons réagir ver 33.19 23.45 0.04 0.07 imp:pre:1p;ind:pre:1p; +réagit réagir ver 33.19 23.45 5.09 4.39 ind:pre:3s;ind:pas:3s; +réagît réagir ver 33.19 23.45 0 0.2 sub:imp:3s; +réait réer ver 0.09 0.07 0 0.07 ind:imp:3s; +réajusta réajuster ver 0.38 1.22 0 0.14 ind:pas:3s; +réajustaient réajuster ver 0.38 1.22 0 0.07 ind:imp:3p; +réajustait réajuster ver 0.38 1.22 0 0.07 ind:imp:3s; +réajustant réajuster ver 0.38 1.22 0 0.34 par:pre; +réajuste réajuster ver 0.38 1.22 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réajustement réajustement nom m s 0.18 0.07 0.15 0 +réajustements réajustement nom m p 0.18 0.07 0.03 0.07 +réajuster réajuster ver 0.38 1.22 0.26 0.41 inf; +réajusté réajuster ver m s 0.38 1.22 0.03 0.07 par:pas; +réajustées réajuster ver f p 0.38 1.22 0 0.07 par:pas; +réajustés réajuster ver m p 0.38 1.22 0.02 0 par:pas; +réal réal nom m s 0.16 0 0.16 0 +réaligne réaligner ver 0.11 0 0.06 0 ind:pre:1s;ind:pre:3s; +réalignement réalignement nom m s 0.07 0 0.07 0 +réaligner réaligner ver 0.11 0 0.05 0 inf; +réalimenter réalimenter ver 0.01 0 0.01 0 inf; +réalisa réaliser ver 71.27 35.95 1.44 2.03 ind:pas:3s; +réalisable réalisable adj s 0.63 0.68 0.61 0.68 +réalisables réalisable adj p 0.63 0.68 0.02 0 +réalisai réaliser ver 71.27 35.95 0.13 1.82 ind:pas:1s; +réalisaient réaliser ver 71.27 35.95 0.47 0.68 ind:imp:3p; +réalisais réaliser ver 71.27 35.95 0.69 0.41 ind:imp:1s;ind:imp:2s; +réalisait réaliser ver 71.27 35.95 0.59 1.28 ind:imp:3s; +réalisant réaliser ver 71.27 35.95 0.72 1.08 par:pre; +réalisateur réalisateur nom m s 17.07 1.08 13.96 0.74 +réalisateurs réalisateur nom m p 17.07 1.08 2.5 0.27 +réalisation réalisation nom f s 3.31 4.19 2.86 3.24 +réalisations réalisation nom f p 3.31 4.19 0.45 0.95 +réalisatrice réalisateur nom f s 17.07 1.08 0.6 0 +réalisatrices réalisateur nom f p 17.07 1.08 0.02 0.07 +réalise réaliser ver 71.27 35.95 9.95 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +réalisent réaliser ver 71.27 35.95 2.74 1.15 ind:pre:3p; +réaliser réaliser ver 71.27 35.95 16.95 12.97 inf; +réalisera réaliser ver 71.27 35.95 1.39 0.14 ind:fut:3s; +réaliserai réaliser ver 71.27 35.95 0.12 0 ind:fut:1s; +réaliseraient réaliser ver 71.27 35.95 0.03 0.07 cnd:pre:3p; +réaliserais réaliser ver 71.27 35.95 0.2 0.07 cnd:pre:1s;cnd:pre:2s; +réaliserait réaliser ver 71.27 35.95 0.17 0.27 cnd:pre:3s; +réaliseras réaliser ver 71.27 35.95 0.35 0 ind:fut:2s; +réaliserez réaliser ver 71.27 35.95 0.19 0 ind:fut:2p; +réaliserions réaliser ver 71.27 35.95 0 0.07 cnd:pre:1p; +réaliseront réaliser ver 71.27 35.95 0.81 0.2 ind:fut:3p; +réalises réaliser ver 71.27 35.95 5.29 0.34 ind:pre:2p;ind:pre:2s; +réalisez réaliser ver 71.27 35.95 4.33 0.07 imp:pre:2p;ind:pre:2p; +réalisiez réaliser ver 71.27 35.95 0.14 0.07 ind:imp:2p; +réalisions réaliser ver 71.27 35.95 0.04 0.07 ind:imp:1p; +réalisme réalisme nom m s 1.19 5.41 1.19 5.41 +réalisons réaliser ver 71.27 35.95 0.39 0.07 imp:pre:1p;ind:pre:1p; +réaliste réaliste adj s 7.05 5.81 5.54 3.92 +réalistes réaliste adj p 7.05 5.81 1.52 1.89 +réalisâmes réaliser ver 71.27 35.95 0.14 0.07 ind:pas:1p; +réalisât réaliser ver 71.27 35.95 0 0.07 sub:imp:3s; +réalisèrent réaliser ver 71.27 35.95 0.14 0.07 ind:pas:3p; +réalisé réaliser ver m s 71.27 35.95 21.23 6.22 par:pas; +réalisée réaliser ver f s 71.27 35.95 0.71 1.69 par:pas; +réalisées réaliser ver f p 71.27 35.95 0.74 0.81 par:pas; +réalisés réaliser ver m p 71.27 35.95 1.23 0.68 par:pas; +réalité réalité nom f s 53.77 82.77 52.15 75.95 +réalités réalité nom f p 53.77 82.77 1.62 6.82 +réamorce réamorcer ver 0.07 0.27 0.01 0.07 ind:pre:1s;ind:pre:3s; +réamorcent réamorcer ver 0.07 0.27 0 0.07 ind:pre:3p; +réamorcer réamorcer ver 0.07 0.27 0.06 0.07 inf; +réamorçage réamorçage nom m s 0.01 0 0.01 0 +réamorçait réamorcer ver 0.07 0.27 0 0.07 ind:imp:3s; +réaménageait réaménager ver 0.19 0.27 0 0.07 ind:imp:3s; +réaménagement réaménagement nom m s 0.19 0.14 0.19 0.07 +réaménagements réaménagement nom m p 0.19 0.14 0 0.07 +réaménager réaménager ver 0.19 0.27 0.12 0.07 inf; +réaménagé réaménager ver m s 0.19 0.27 0.06 0.14 par:pas; +réanimait réanimer ver 1.65 0.2 0.01 0 ind:imp:3s; +réanimateur réanimateur nom m s 0.04 0 0.04 0 +réanimation réanimation nom f s 2.16 1.35 2.16 1.35 +réanime réanimer ver 1.65 0.2 0.09 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réanimer réanimer ver 1.65 0.2 1.08 0 inf; +réanimeraient réanimer ver 1.65 0.2 0 0.07 cnd:pre:3p; +réanimez réanimer ver 1.65 0.2 0.04 0 imp:pre:2p; +réanimions réanimer ver 1.65 0.2 0.01 0 ind:imp:1p; +réanimé réanimer ver m s 1.65 0.2 0.35 0 par:pas; +réanimée réanimer ver f s 1.65 0.2 0.07 0 par:pas; +réapercevoir réapercevoir ver 0 0.07 0 0.07 inf; +réapparais réapparaître ver 4.81 12.23 0.21 0.07 ind:pre:1s;ind:pre:2s; +réapparaissaient réapparaître ver 4.81 12.23 0.01 0.34 ind:imp:3p; +réapparaissais réapparaître ver 4.81 12.23 0.01 0.14 ind:imp:1s;ind:imp:2s; +réapparaissait réapparaître ver 4.81 12.23 0.05 1.76 ind:imp:3s; +réapparaissant réapparaître ver 4.81 12.23 0.01 0.27 par:pre; +réapparaisse réapparaître ver 4.81 12.23 0.26 0.2 sub:pre:1s;sub:pre:3s; +réapparaissent réapparaître ver 4.81 12.23 0.58 0.54 ind:pre:3p; +réapparaisses réapparaître ver 4.81 12.23 0.02 0 sub:pre:2s; +réapparaît réapparaître ver 4.81 12.23 0.52 1.35 ind:pre:3s; +réapparaîtra réapparaître ver 4.81 12.23 0.47 0.14 ind:fut:3s; +réapparaîtrai réapparaître ver 4.81 12.23 0 0.14 ind:fut:1s; +réapparaîtraient réapparaître ver 4.81 12.23 0.01 0.07 cnd:pre:3p; +réapparaîtrait réapparaître ver 4.81 12.23 0.07 0.2 cnd:pre:3s; +réapparaître réapparaître ver 4.81 12.23 0.83 1.96 inf; +réapparaîtront réapparaître ver 4.81 12.23 0.01 0 ind:fut:3p; +réapparition réapparition nom f s 0.17 1.69 0.16 1.55 +réapparitions réapparition nom f p 0.17 1.69 0.01 0.14 +réapparu réapparaître ver m s 4.81 12.23 1.19 0.74 par:pas; +réapparue réapparaître ver f s 4.81 12.23 0.11 0.54 par:pas; +réapparues réapparaître ver f p 4.81 12.23 0.01 0 par:pas; +réapparurent réapparaître ver 4.81 12.23 0.04 0.41 ind:pas:3p; +réapparus réapparaître ver m p 4.81 12.23 0.32 0.27 par:pas; +réapparut réapparaître ver 4.81 12.23 0.07 3.04 ind:pas:3s; +réapparût réapparaître ver 4.81 12.23 0 0.07 sub:imp:3s; +réappeler réappeler ver 0.01 0 0.01 0 inf; +réapprenaient réapprendre ver 0.91 1.89 0 0.14 ind:imp:3p; +réapprenais réapprendre ver 0.91 1.89 0 0.07 ind:imp:1s; +réapprenait réapprendre ver 0.91 1.89 0.01 0.27 ind:imp:3s; +réapprend réapprendre ver 0.91 1.89 0.01 0.14 ind:pre:3s; +réapprendraient réapprendre ver 0.91 1.89 0 0.07 cnd:pre:3p; +réapprendre réapprendre ver 0.91 1.89 0.7 0.81 inf; +réapprendrez réapprendre ver 0.91 1.89 0.01 0 ind:fut:2p; +réapprends réapprendre ver 0.91 1.89 0.01 0.07 ind:pre:1s; +réapprenne réapprendre ver 0.91 1.89 0.01 0.2 sub:pre:1s; +réappris réapprendre ver m s 0.91 1.89 0.14 0 par:pas; +réapprises réapprendre ver f p 0.91 1.89 0 0.07 par:pas; +réapprit réapprendre ver 0.91 1.89 0.01 0.07 ind:pas:3s; +réapprovisionne réapprovisionner ver 0.47 0.47 0.04 0 ind:pre:3s; +réapprovisionnement réapprovisionnement nom m s 0.21 0.14 0.21 0.14 +réapprovisionner réapprovisionner ver 0.47 0.47 0.38 0.34 inf; +réapprovisionnerait réapprovisionner ver 0.47 0.47 0 0.07 cnd:pre:3s; +réapprovisionné réapprovisionner ver m s 0.47 0.47 0.04 0 par:pas; +réapprovisionnée réapprovisionner ver f s 0.47 0.47 0.01 0.07 par:pas; +réargenter réargenter ver 0.01 0 0.01 0 inf; +réarma réarmer ver 0.1 0.47 0 0.07 ind:pas:3s; +réarmant réarmer ver 0.1 0.47 0.01 0 par:pre; +réarme réarmer ver 0.1 0.47 0 0.07 ind:pre:3s; +réarmement réarmement nom m s 0.09 0.34 0.09 0.34 +réarmer réarmer ver 0.1 0.47 0.05 0.14 inf; +réarmé réarmer ver m s 0.1 0.47 0.03 0.07 par:pas; +réarmées réarmer ver f p 0.1 0.47 0 0.14 par:pas; +réarrange réarranger ver 0.24 0.27 0.06 0 ind:pre:1s;ind:pre:3s; +réarrangeait réarranger ver 0.24 0.27 0 0.07 ind:imp:3s; +réarrangeant réarranger ver 0.24 0.27 0.01 0 par:pre; +réarrangement réarrangement nom m s 0.03 0 0.03 0 +réarrangent réarranger ver 0.24 0.27 0.01 0.07 ind:pre:3p; +réarranger réarranger ver 0.24 0.27 0.15 0.14 ind:pre:2p;inf; +réarrangé réarranger ver m s 0.24 0.27 0.01 0 par:pas; +réassembler réassembler ver 0.14 0 0.14 0 inf; +réassignation réassignation nom f s 0.03 0 0.03 0 +réassigner réassigner ver 0.14 0.07 0.07 0 inf; +réassigneront réassigner ver 0.14 0.07 0 0.07 ind:fut:3p; +réassigné réassigner ver m s 0.14 0.07 0.07 0 par:pas; +réassimilé réassimiler ver m s 0.02 0 0.02 0 par:pas; +réassorties réassortir ver f p 0 0.2 0 0.07 par:pas; +réassortir réassortir ver 0 0.2 0 0.14 inf; +réassumer réassumer ver 0 0.14 0 0.14 inf; +réassurer réassurer ver 0.02 0.07 0.02 0.07 inf; +réattaquai réattaquer ver 0.03 0.41 0 0.07 ind:pas:1s; +réattaquait réattaquer ver 0.03 0.41 0 0.14 ind:imp:3s; +réattaque réattaquer ver 0.03 0.41 0.02 0.07 ind:pre:3s; +réattaquer réattaquer ver 0.03 0.41 0.01 0 inf; +réattaqué réattaquer ver m s 0.03 0.41 0 0.14 par:pas; +réaux réal adj m p 0.4 0.54 0.4 0.54 +rébarbatif rébarbatif adj m s 0.17 1.35 0.16 0.61 +rébarbatifs rébarbatif adj m p 0.17 1.35 0 0.27 +rébarbative rébarbatif adj f s 0.17 1.35 0 0.27 +rébarbatives rébarbatif adj f p 0.17 1.35 0.01 0.2 +rébecca rébecca nom f s 0 0.07 0 0.07 +rébellion rébellion nom f s 4.04 3.85 4 3.65 +rébellions rébellion nom f p 4.04 3.85 0.04 0.2 +rébus rébus nom m p 0.1 1.28 0.1 1.28 +récalcitrant récalcitrant adj m s 0.48 1.08 0.21 0.61 +récalcitrante récalcitrant adj f s 0.48 1.08 0.03 0.07 +récalcitrantes récalcitrant adj f p 0.48 1.08 0.1 0 +récalcitrants récalcitrant adj m p 0.48 1.08 0.14 0.41 +récapitula récapituler ver 2.65 1.62 0 0.07 ind:pas:3s; +récapitulai récapituler ver 2.65 1.62 0 0.07 ind:pas:1s; +récapitulais récapituler ver 2.65 1.62 0.02 0.07 ind:imp:1s; +récapitulait récapituler ver 2.65 1.62 0 0.27 ind:imp:3s; +récapitulant récapituler ver 2.65 1.62 0.01 0.2 par:pre; +récapitulatif récapitulatif nom m s 0.06 0.2 0.06 0.2 +récapitulation récapitulation nom f s 0.2 0.47 0.2 0.47 +récapitule récapituler ver 2.65 1.62 0.61 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récapitulent récapituler ver 2.65 1.62 0 0.07 ind:pre:3p; +récapituler récapituler ver 2.65 1.62 0.4 0.34 inf; +récapitulez récapituler ver 2.65 1.62 0.04 0 imp:pre:2p; +récapitulions récapituler ver 2.65 1.62 0.01 0 ind:imp:1p; +récapitulons récapituler ver 2.65 1.62 1.51 0.07 imp:pre:1p; +récapitulé récapituler ver m s 2.65 1.62 0.04 0.14 par:pas; +récapitulée récapituler ver f s 2.65 1.62 0 0.07 par:pas; +récemment récemment adv 21.07 15.07 21.07 15.07 +récent récent adj m s 12.42 23.45 3.96 5.61 +récente récent adj f s 12.42 23.45 3.72 8.72 +récentes récent adj f p 12.42 23.45 2.09 4.39 +récents récent adj m p 12.42 23.45 2.65 4.73 +réceptacle réceptacle nom m s 0.7 0.54 0.64 0.47 +réceptacles réceptacle nom m p 0.7 0.54 0.06 0.07 +récepteur récepteur nom m s 0.85 3.58 0.56 3.24 +récepteurs récepteur nom m p 0.85 3.58 0.29 0.34 +réceptif réceptif adj m s 1.44 0.68 0.88 0.41 +réceptifs réceptif adj m p 1.44 0.68 0.14 0.07 +réception réception nom f s 17.47 16.82 16.6 12.7 +réceptionna réceptionner ver 0.69 0.88 0 0.07 ind:pas:3s; +réceptionnant réceptionner ver 0.69 0.88 0 0.07 par:pre; +réceptionne réceptionner ver 0.69 0.88 0.32 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réceptionnent réceptionner ver 0.69 0.88 0.01 0 ind:pre:3p; +réceptionner réceptionner ver 0.69 0.88 0.13 0.14 inf; +réceptionnera réceptionner ver 0.69 0.88 0.01 0 ind:fut:3s; +réceptionniste réceptionniste nom s 1.69 1.96 1.64 1.76 +réceptionnistes réceptionniste nom p 1.69 1.96 0.04 0.2 +réceptionné réceptionner ver m s 0.69 0.88 0.23 0.2 par:pas; +réceptionnées réceptionner ver f p 0.69 0.88 0 0.07 par:pas; +réceptions réception nom f p 17.47 16.82 0.86 4.12 +réceptive réceptif adj f s 1.44 0.68 0.38 0.14 +réceptives réceptif adj f p 1.44 0.68 0.04 0.07 +réceptivité réceptivité nom f s 0.04 0.2 0.04 0.2 +réceptrice récepteur adj f s 0.27 0.27 0.02 0.14 +récessif récessif adj m s 0.12 0 0.09 0 +récessifs récessif adj m p 0.12 0 0.02 0 +récession récession nom f s 0.96 0.2 0.96 0.2 +récessive récessif adj f s 0.12 0 0.01 0 +réchappai réchapper ver 2.42 1.55 0.01 0 ind:pas:1s; +réchappais réchapper ver 2.42 1.55 0.03 0.07 ind:imp:1s;ind:imp:2s; +réchappait réchapper ver 2.42 1.55 0 0.07 ind:imp:3s; +réchappe réchapper ver 2.42 1.55 0.92 0.27 ind:pre:1s;ind:pre:3s; +réchappent réchapper ver 2.42 1.55 0.02 0.07 ind:pre:3p; +réchapper réchapper ver 2.42 1.55 0.64 0.14 inf; +réchappera réchapper ver 2.42 1.55 0.05 0 ind:fut:3s; +réchapperaient réchapper ver 2.42 1.55 0 0.07 cnd:pre:3p; +réchapperais réchapper ver 2.42 1.55 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +réchapperait réchapper ver 2.42 1.55 0 0.27 cnd:pre:3s; +réchappes réchapper ver 2.42 1.55 0.12 0.07 ind:pre:2s; +réchappez réchapper ver 2.42 1.55 0.01 0 ind:pre:2p; +réchappons réchapper ver 2.42 1.55 0.11 0 ind:pre:1p; +réchappé réchapper ver m s 2.42 1.55 0.5 0.47 par:pas; +réchappés réchapper ver m p 2.42 1.55 0.01 0 par:pas; +réchaud réchaud nom m s 1 6.82 0.83 6.22 +réchauds réchaud nom m p 1 6.82 0.17 0.61 +réchauffa réchauffer ver 16.27 22.16 0.01 0.95 ind:pas:3s; +réchauffage réchauffage nom m s 0.01 0 0.01 0 +réchauffai réchauffer ver 16.27 22.16 0 0.14 ind:pas:1s; +réchauffaient réchauffer ver 16.27 22.16 0.03 0.34 ind:imp:3p; +réchauffais réchauffer ver 16.27 22.16 0.03 0 ind:imp:1s;ind:imp:2s; +réchauffait réchauffer ver 16.27 22.16 0.08 2.23 ind:imp:3s; +réchauffant réchauffer ver 16.27 22.16 0.03 0.41 par:pre; +réchauffante réchauffant adj f s 0 0.27 0 0.07 +réchauffantes réchauffant adj f p 0 0.27 0 0.14 +réchauffants réchauffant adj m p 0 0.27 0 0.07 +réchauffe réchauffer ver 16.27 22.16 5.06 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réchauffement réchauffement nom m s 1.02 0.07 1.02 0.07 +réchauffent réchauffer ver 16.27 22.16 0.34 0.68 ind:pre:3p; +réchauffer réchauffer ver 16.27 22.16 7.64 11.62 inf; +réchauffera réchauffer ver 16.27 22.16 0.79 0.47 ind:fut:3s; +réchaufferai réchauffer ver 16.27 22.16 0.07 0.07 ind:fut:1s; +réchaufferait réchauffer ver 16.27 22.16 0.04 0.07 cnd:pre:3s; +réchaufferas réchauffer ver 16.27 22.16 0.1 0 ind:fut:2s; +réchaufferez réchauffer ver 16.27 22.16 0.12 0 ind:fut:2p; +réchaufferont réchauffer ver 16.27 22.16 0.02 0.07 ind:fut:3p; +réchauffeur réchauffeur nom m s 0.03 0 0.03 0 +réchauffez réchauffer ver 16.27 22.16 0.81 0 imp:pre:2p;ind:pre:2p; +réchauffions réchauffer ver 16.27 22.16 0 0.07 ind:imp:1p; +réchauffons réchauffer ver 16.27 22.16 0.03 0 imp:pre:1p;ind:pre:1p; +réchauffât réchauffer ver 16.27 22.16 0 0.07 sub:imp:3s; +réchauffèrent réchauffer ver 16.27 22.16 0 0.07 ind:pas:3p; +réchauffé réchauffer ver m s 16.27 22.16 0.79 0.81 par:pas; +réchauffée réchauffer ver f s 16.27 22.16 0.28 0.47 par:pas; +réchauffées réchauffé adj f p 1.04 1.15 0.01 0.07 +réchauffés réchauffé adj m p 1.04 1.15 0.15 0.14 +récidivai récidiver ver 0.48 0.68 0 0.07 ind:pas:1s; +récidivaient récidiver ver 0.48 0.68 0 0.07 ind:imp:3p; +récidivant récidivant adj m s 0.03 0 0.01 0 +récidivante récidivant adj f s 0.03 0 0.01 0 +récidive récidive nom f s 0.61 0.81 0.57 0.61 +récidiver récidiver ver 0.48 0.68 0.12 0.14 inf; +récidiveras récidiver ver 0.48 0.68 0.01 0 ind:fut:2s; +récidives récidive nom f p 0.61 0.81 0.04 0.2 +récidivez récidiver ver 0.48 0.68 0.01 0 ind:pre:2p; +récidiviste récidiviste nom s 0.79 0.27 0.65 0.2 +récidivistes récidiviste nom p 0.79 0.27 0.14 0.07 +récidivé récidiver ver m s 0.48 0.68 0.07 0.07 par:pas; +récif récif nom m s 1.44 2.03 0.75 0.54 +récifale récifal adj f s 0.01 0 0.01 0 +récifs récif nom m p 1.44 2.03 0.69 1.49 +récipiendaire récipiendaire nom s 0.03 0.41 0.01 0.2 +récipiendaires récipiendaire nom p 0.03 0.41 0.02 0.2 +récipient récipient nom m s 1.64 4.12 1.36 2.77 +récipients récipient nom m p 1.64 4.12 0.27 1.35 +réciprocité réciprocité nom f s 0.28 1.55 0.28 1.55 +réciproque réciproque adj s 3.91 8.24 3.59 5.68 +réciproquement réciproquement adv 0.26 3.45 0.26 3.45 +réciproques réciproque adj p 3.91 8.24 0.32 2.57 +récit récit nom m s 9.89 56.15 7.12 37.84 +récita réciter ver 11.89 28.51 0.01 3.24 ind:pas:3s; +récitai réciter ver 11.89 28.51 0 0.41 ind:pas:1s; +récitaient réciter ver 11.89 28.51 0 1.08 ind:imp:3p; +récitais réciter ver 11.89 28.51 0.12 1.15 ind:imp:1s;ind:imp:2s; +récitait réciter ver 11.89 28.51 0.39 4.86 ind:imp:3s; +récital récital nom m s 1.41 1.89 1.33 1.28 +récitals récital nom m p 1.41 1.89 0.08 0.61 +récitant réciter ver 11.89 28.51 0.04 1.89 par:pre; +récitante récitant nom f s 0.02 1.28 0 0.07 +récitants récitant nom m p 0.02 1.28 0 0.2 +récitassent réciter ver 11.89 28.51 0 0.07 sub:imp:3p; +récitatif récitatif adj m s 0.01 0 0.01 0 +récitatifs récitatif nom m p 0 0.2 0 0.07 +récitation récitation nom f s 0.19 2.91 0.17 2.03 +récitations récitation nom f p 0.19 2.91 0.02 0.88 +récite réciter ver 11.89 28.51 3.44 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récitent réciter ver 11.89 28.51 0.47 0.27 ind:pre:3p; +réciter réciter ver 11.89 28.51 4.21 7.97 inf; +récitera réciter ver 11.89 28.51 0.23 0.07 ind:fut:3s; +réciterai réciter ver 11.89 28.51 0.27 0.07 ind:fut:1s; +réciteraient réciter ver 11.89 28.51 0 0.07 cnd:pre:3p; +réciterait réciter ver 11.89 28.51 0.01 0.34 cnd:pre:3s; +réciteras réciter ver 11.89 28.51 0.04 0 ind:fut:2s; +réciterez réciter ver 11.89 28.51 0.16 0 ind:fut:2p; +réciterons réciter ver 11.89 28.51 0.14 0.07 ind:fut:1p; +réciteront réciter ver 11.89 28.51 0 0.07 ind:fut:3p; +récites réciter ver 11.89 28.51 0.45 0.14 ind:pre:2s; +récitez réciter ver 11.89 28.51 0.83 0.27 imp:pre:2p;ind:pre:2p; +récitions réciter ver 11.89 28.51 0.01 0.27 ind:imp:1p; +récitons réciter ver 11.89 28.51 0.28 0.2 imp:pre:1p;ind:pre:1p; +récits récit nom m p 9.89 56.15 2.77 18.31 +récitèrent réciter ver 11.89 28.51 0 0.14 ind:pas:3p; +récité réciter ver m s 11.89 28.51 0.69 1.35 par:pas; +récitée réciter ver f s 11.89 28.51 0 0.41 par:pas; +récitées réciter ver f p 11.89 28.51 0 0.2 par:pas; +récités réciter ver m p 11.89 28.51 0.12 0.2 par:pas; +réclama réclamer ver 21 49.26 0.12 4.32 ind:pas:3s; +réclamai réclamer ver 21 49.26 0 0.2 ind:pas:1s; +réclamaient réclamer ver 21 49.26 0.26 4.05 ind:imp:3p; +réclamais réclamer ver 21 49.26 0.07 0.68 ind:imp:1s;ind:imp:2s; +réclamait réclamer ver 21 49.26 0.91 8.51 ind:imp:3s; +réclamant réclamer ver 21 49.26 0.52 2.43 par:pre; +réclamantes réclamant nom f p 0 0.07 0 0.07 +réclamation réclamation nom f s 2.15 1.42 1.02 0.68 +réclamations réclamation nom f p 2.15 1.42 1.13 0.74 +réclame réclamer ver 21 49.26 8.98 7.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réclament réclamer ver 21 49.26 2.2 2.5 ind:pre:3p; +réclamer réclamer ver 21 49.26 3.18 11.76 inf; +réclamera réclamer ver 21 49.26 0.31 0.14 ind:fut:3s; +réclamerai réclamer ver 21 49.26 0.04 0.07 ind:fut:1s; +réclameraient réclamer ver 21 49.26 0.04 0 cnd:pre:3p; +réclamerais réclamer ver 21 49.26 0 0.14 cnd:pre:1s; +réclamerait réclamer ver 21 49.26 0.06 0.41 cnd:pre:3s; +réclameras réclamer ver 21 49.26 0.02 0.07 ind:fut:2s; +réclamerez réclamer ver 21 49.26 0.05 0.14 ind:fut:2p; +réclameriez réclamer ver 21 49.26 0.01 0 cnd:pre:2p; +réclamerons réclamer ver 21 49.26 0.01 0.07 ind:fut:1p; +réclameront réclamer ver 21 49.26 0.08 0.07 ind:fut:3p; +réclames réclame nom f p 1.43 6.15 0.28 2.91 +réclamez réclamer ver 21 49.26 0.55 0.2 imp:pre:2p;ind:pre:2p; +réclamiez réclamer ver 21 49.26 0.04 0.2 ind:imp:2p; +réclamions réclamer ver 21 49.26 0.01 0.14 ind:imp:1p; +réclamons réclamer ver 21 49.26 0.4 0.41 imp:pre:1p;ind:pre:1p; +réclamèrent réclamer ver 21 49.26 0.01 0.61 ind:pas:3p; +réclamé réclamer ver m s 21 49.26 1.85 2.64 par:pas; +réclamée réclamer ver f s 21 49.26 0.6 1.15 par:pas; +réclamées réclamer ver f p 21 49.26 0.39 0.14 par:pas; +réclamés réclamer ver m p 21 49.26 0.13 0.27 par:pas; +réclusion réclusion nom f s 1.1 3.04 1.09 3.04 +réclusionnaires réclusionnaire nom p 0 0.07 0 0.07 +réclusions réclusion nom f p 1.1 3.04 0.01 0 +récollet récollet nom m s 0 0.81 0 0.07 +récollets récollet nom m p 0 0.81 0 0.74 +récolta récolter ver 10.65 7.36 0 0.07 ind:pas:3s; +récoltable récoltable adj s 0.01 0 0.01 0 +récoltai récolter ver 10.65 7.36 0 0.07 ind:pas:1s; +récoltaient récolter ver 10.65 7.36 0.06 0.07 ind:imp:3p; +récoltais récolter ver 10.65 7.36 0.05 0.14 ind:imp:1s;ind:imp:2s; +récoltait récolter ver 10.65 7.36 0.07 0.81 ind:imp:3s; +récoltant récolter ver 10.65 7.36 0.08 0.14 par:pre; +récolte récolte nom f s 9.83 8.99 7.93 5.54 +récoltent récolter ver 10.65 7.36 0.45 0.34 ind:pre:3p; +récolter récolter ver 10.65 7.36 3.66 2.43 inf; +récoltera récolter ver 10.65 7.36 0.07 0 ind:fut:3s; +récolterai récolter ver 10.65 7.36 0.03 0 ind:fut:1s; +récolteraient récolter ver 10.65 7.36 0.01 0.07 cnd:pre:3p; +récolterais récolter ver 10.65 7.36 0.1 0 cnd:pre:2s; +récolterait récolter ver 10.65 7.36 0.02 0.14 cnd:pre:3s; +récolteras récolter ver 10.65 7.36 0.07 0 ind:fut:2s; +récolterons récolter ver 10.65 7.36 0.16 0.07 ind:fut:1p; +récolteront récolter ver 10.65 7.36 0.02 0 ind:fut:3p; +récoltes récolte nom f p 9.83 8.99 1.9 3.45 +récolteurs récolteur nom m p 0.03 0.07 0.02 0.07 +récolteuse récolteur nom f s 0.03 0.07 0.01 0 +récoltez récolter ver 10.65 7.36 0.14 0 imp:pre:2p;ind:pre:2p; +récoltions récolter ver 10.65 7.36 0 0.14 ind:imp:1p; +récoltons récolter ver 10.65 7.36 0.29 0 imp:pre:1p;ind:pre:1p; +récolté récolter ver m s 10.65 7.36 1.42 1.42 par:pas; +récoltée récolter ver f s 10.65 7.36 0.09 0.07 par:pas; +récoltées récolter ver f p 10.65 7.36 0.2 0.2 par:pas; +récoltés récolter ver m p 10.65 7.36 0.22 0.41 par:pas; +récompensa récompenser ver 9.96 8.38 0.01 0.14 ind:pas:3s; +récompensaient récompenser ver 9.96 8.38 0 0.2 ind:imp:3p; +récompensait récompenser ver 9.96 8.38 0.17 1.22 ind:imp:3s; +récompensant récompenser ver 9.96 8.38 0.04 0.14 par:pre; +récompense récompense nom f s 19.66 9.73 18.39 8.31 +récompensent récompenser ver 9.96 8.38 0.23 0 ind:pre:3p; +récompenser récompenser ver 9.96 8.38 2.29 2.77 inf;;inf;;inf;; +récompensera récompenser ver 9.96 8.38 0.76 0 ind:fut:3s; +récompenserai récompenser ver 9.96 8.38 0.37 0.14 ind:fut:1s; +récompenserais récompenser ver 9.96 8.38 0 0.07 cnd:pre:1s; +récompenserons récompenser ver 9.96 8.38 0.06 0 ind:fut:1p; +récompenseront récompenser ver 9.96 8.38 0.04 0 ind:fut:3p; +récompenses récompense nom f p 19.66 9.73 1.27 1.42 +récompensez récompenser ver 9.96 8.38 0.13 0.14 imp:pre:2p;ind:pre:2p; +récompensons récompenser ver 9.96 8.38 0.03 0 imp:pre:1p;ind:pre:1p; +récompensèrent récompenser ver 9.96 8.38 0 0.07 ind:pas:3p; +récompensé récompenser ver m s 9.96 8.38 2.39 1.28 par:pas; +récompensée récompenser ver f s 9.96 8.38 1.15 0.47 par:pas; +récompensées récompenser ver f p 9.96 8.38 0.21 0.14 par:pas; +récompensés récompenser ver m p 9.96 8.38 0.69 0.61 par:pas; +réconcilia réconcilier ver 9.04 10.61 0.01 0.07 ind:pas:3s; +réconciliaient réconcilier ver 9.04 10.61 0.01 0.34 ind:imp:3p; +réconciliait réconcilier ver 9.04 10.61 0.04 0.74 ind:imp:3s; +réconciliant réconcilier ver 9.04 10.61 0.03 0.14 par:pre; +réconciliateur réconciliateur nom m s 0.02 0.07 0.02 0.07 +réconciliation réconciliation nom f s 2.62 5.47 2.38 4.73 +réconciliations réconciliation nom f p 2.62 5.47 0.23 0.74 +réconciliatrice réconciliateur adj f s 0 0.07 0 0.07 +réconcilie réconcilier ver 9.04 10.61 0.9 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réconcilient réconcilier ver 9.04 10.61 0.25 0.2 ind:pre:3p; +réconcilier réconcilier ver 9.04 10.61 3.61 3.38 inf; +réconciliera réconcilier ver 9.04 10.61 0.15 0 ind:fut:3s; +réconcilierai réconcilier ver 9.04 10.61 0.02 0.07 ind:fut:1s; +réconcilieraient réconcilier ver 9.04 10.61 0 0.07 cnd:pre:3p; +réconcilierait réconcilier ver 9.04 10.61 0 0.2 cnd:pre:3s; +réconcilierez réconcilier ver 9.04 10.61 0.04 0 ind:fut:2p; +réconciliez réconcilier ver 9.04 10.61 0.23 0 imp:pre:2p;ind:pre:2p; +réconciliions réconcilier ver 9.04 10.61 0 0.14 ind:imp:1p; +réconcilions réconcilier ver 9.04 10.61 0.3 0.07 imp:pre:1p;ind:pre:1p; +réconciliâmes réconcilier ver 9.04 10.61 0 0.07 ind:pas:1p; +réconcilié réconcilier ver m s 9.04 10.61 0.59 2.03 par:pas; +réconciliée réconcilier ver f s 9.04 10.61 0.42 0.61 par:pas; +réconciliées réconcilier ver f p 9.04 10.61 0.65 0.07 par:pas; +réconciliés réconcilier ver m p 9.04 10.61 1.78 1.76 par:pas; +réconfort réconfort nom m s 4.75 6.42 4.71 6.35 +réconforta réconforter ver 6.86 9.19 0.02 0.95 ind:pas:3s; +réconfortaient réconforter ver 6.86 9.19 0.01 0.27 ind:imp:3p; +réconfortait réconforter ver 6.86 9.19 0.02 1.08 ind:imp:3s; +réconfortant réconfortant adj m s 2 6.08 1.62 2.91 +réconfortante réconfortant adj f s 2 6.08 0.2 2.36 +réconfortantes réconfortant adj f p 2 6.08 0.11 0.68 +réconfortants réconfortant adj m p 2 6.08 0.07 0.14 +réconforte réconforter ver 6.86 9.19 1.73 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réconfortent réconforter ver 6.86 9.19 0.41 0.41 ind:pre:3p; +réconforter réconforter ver 6.86 9.19 3.21 2.77 inf;; +réconfortera réconforter ver 6.86 9.19 0.16 0 ind:fut:3s; +réconforterai réconforter ver 6.86 9.19 0.01 0 ind:fut:1s; +réconforterait réconforter ver 6.86 9.19 0.02 0.07 cnd:pre:3s; +réconforteras réconforter ver 6.86 9.19 0.01 0 ind:fut:2s; +réconforterez réconforter ver 6.86 9.19 0.01 0 ind:fut:2p; +réconfortez réconforter ver 6.86 9.19 0.3 0 imp:pre:2p; +réconforts réconfort nom m p 4.75 6.42 0.04 0.07 +réconforté réconforter ver m s 6.86 9.19 0.48 1.62 par:pas; +réconfortée réconforter ver f s 6.86 9.19 0.19 0.34 par:pas; +réconfortés réconforter ver m p 6.86 9.19 0.18 0.27 par:pas; +récri récri nom m s 0.02 0.14 0 0.14 +récria récrier ver 0 2.91 0 0.68 ind:pas:3s; +récriai récrier ver 0 2.91 0 0.14 ind:pas:1s; +récriaient récrier ver 0 2.91 0 0.14 ind:imp:3p; +récriait récrier ver 0 2.91 0 0.34 ind:imp:3s; +récrie récrier ver 0 2.91 0 0.54 ind:pre:1s;ind:pre:3s; +récrient récrier ver 0 2.91 0 0.07 ind:pre:3p; +récrier récrier ver 0 2.91 0 0.14 inf; +récriminait récriminer ver 0.16 0.68 0 0.27 ind:imp:3s; +récrimination récrimination nom f s 0.64 3.11 0.03 0.61 +récriminations récrimination nom f p 0.64 3.11 0.61 2.5 +récriminer récriminer ver 0.16 0.68 0.16 0.41 inf; +récrirai récrire ver 0.46 0.95 0.03 0.07 ind:fut:1s; +récrire récrire ver 0.46 0.95 0.29 0.61 inf; +récris récrire ver 0.46 0.95 0.02 0 imp:pre:2s; +récrit récrire ver m s 0.46 0.95 0.11 0.14 ind:pre:3s;par:pas; +récrites récrire ver f p 0.46 0.95 0 0.07 par:pas; +récrivent récrire ver 0.46 0.95 0.01 0 ind:pre:3p; +récrivit récrire ver 0.46 0.95 0 0.07 ind:pas:3s; +récrièrent récrier ver 0 2.91 0 0.27 ind:pas:3p; +récrié récrier ver m s 0 2.91 0 0.2 par:pas; +récriée récrier ver f s 0 2.91 0 0.2 par:pas; +récriées récrier ver f p 0 2.91 0 0.07 par:pas; +récriés récrier ver m p 0 2.91 0 0.14 par:pas; +récré récré nom f s 2.29 2.7 2.25 2.16 +récréatif récréatif adj m s 0.38 0.47 0.06 0 +récréation récréation nom f s 2.88 11.28 2.43 9.26 +récréations récréation nom f p 2.88 11.28 0.45 2.03 +récréative récréatif adj f s 0.38 0.47 0.24 0.41 +récréatives récréatif adj f p 0.38 0.47 0.07 0.07 +récrée récréer ver 0.06 0 0.04 0 ind:pre:3s; +récréer récréer ver 0.06 0 0.01 0 inf; +récrés récré nom f p 2.29 2.7 0.05 0.54 +récréé récréer ver m s 0.06 0 0.01 0 par:pas; +récup récup nom m s 0.13 0.14 0.13 0 +récupe récup nom f s 0.13 0.14 0 0.14 +récupère récupérer ver 75.92 31.82 9.77 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +récupèrent récupérer ver 75.92 31.82 0.61 0.2 ind:pre:3p; +récupères récupérer ver 75.92 31.82 1.28 0.2 ind:pre:2s; +récupéra récupérer ver 75.92 31.82 0.06 1.82 ind:pas:3s; +récupérable récupérable adj m s 0.43 0.88 0.14 0.61 +récupérables récupérable adj p 0.43 0.88 0.28 0.27 +récupérai récupérer ver 75.92 31.82 0 0.54 ind:pas:1s; +récupéraient récupérer ver 75.92 31.82 0.01 0.14 ind:imp:3p; +récupérais récupérer ver 75.92 31.82 0.16 0.2 ind:imp:1s;ind:imp:2s; +récupérait récupérer ver 75.92 31.82 0.32 1.49 ind:imp:3s; +récupérant récupérer ver 75.92 31.82 0.19 1.22 par:pre; +récupérateur récupérateur nom m s 0.27 0.07 0.12 0.07 +récupérateurs récupérateur nom m p 0.27 0.07 0.15 0 +récupération récupération nom f s 2.04 1.89 2.01 1.82 +récupérations récupération nom f p 2.04 1.89 0.04 0.07 +récupérer récupérer ver 75.92 31.82 44.59 14.19 inf; +récupérera récupérer ver 75.92 31.82 0.72 0.07 ind:fut:3s; +récupérerai récupérer ver 75.92 31.82 0.84 0.07 ind:fut:1s; +récupérerais récupérer ver 75.92 31.82 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +récupérerait récupérer ver 75.92 31.82 0.09 0.2 cnd:pre:3s; +récupéreras récupérer ver 75.92 31.82 0.45 0.07 ind:fut:2s; +récupérerez récupérer ver 75.92 31.82 0.49 0 ind:fut:2p; +récupérerons récupérer ver 75.92 31.82 0.32 0 ind:fut:1p; +récupéreront récupérer ver 75.92 31.82 0.06 0 ind:fut:3p; +récupérez récupérer ver 75.92 31.82 1.8 0.2 imp:pre:2p;ind:pre:2p; +récupériez récupérer ver 75.92 31.82 0.04 0 ind:imp:2p; +récupérions récupérer ver 75.92 31.82 0.07 0.07 ind:imp:1p; +récupérons récupérer ver 75.92 31.82 0.65 0.07 imp:pre:1p;ind:pre:1p; +récupérâmes récupérer ver 75.92 31.82 0.02 0.07 ind:pas:1p; +récupérèrent récupérer ver 75.92 31.82 0 0.14 ind:pas:3p; +récupéré récupérer ver m s 75.92 31.82 10.33 5.41 par:pas; +récupérée récupérer ver f s 75.92 31.82 1.26 0.95 par:pas; +récupérées récupérer ver f p 75.92 31.82 0.8 0.74 par:pas; +récupérés récupérer ver m p 75.92 31.82 0.9 0.95 par:pas; +récurage récurage nom m s 0.03 0.27 0.03 0.27 +récuraient récurer ver 0.54 2.84 0 0.14 ind:imp:3p; +récurais récurer ver 0.54 2.84 0 0.14 ind:imp:1s; +récurait récurer ver 0.54 2.84 0.01 0.14 ind:imp:3s; +récurant récurer ver 0.54 2.84 0 0.2 par:pre; +récure récurer ver 0.54 2.84 0.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récurent récurer ver 0.54 2.84 0.01 0.2 ind:pre:3p; +récurer récurer ver 0.54 2.84 0.35 0.74 inf; +récurerai récurer ver 0.54 2.84 0 0.07 ind:fut:1s; +récurrence récurrence nom f s 0.19 0.14 0.17 0.14 +récurrences récurrence nom f p 0.19 0.14 0.01 0 +récurrent récurrent adj m s 1.38 0.41 0.56 0.07 +récurrente récurrent adj f s 1.38 0.41 0.28 0.14 +récurrentes récurrent adj f p 1.38 0.41 0.21 0.07 +récurrents récurrent adj m p 1.38 0.41 0.33 0.14 +récursif récursif adj m s 0.03 0 0.03 0 +récuré récurer ver m s 0.54 2.84 0.08 0.34 par:pas; +récurée récurer ver f s 0.54 2.84 0 0.2 par:pas; +récurées récurer ver f p 0.54 2.84 0.01 0.14 par:pas; +récurés récurer ver m p 0.54 2.84 0.01 0.27 par:pas; +récusa récuser ver 0.78 3.04 0 0.14 ind:pas:3s; +récusable récusable adj m s 0 0.14 0 0.07 +récusables récusable adj p 0 0.14 0 0.07 +récusaient récuser ver 0.78 3.04 0 0.14 ind:imp:3p; +récusais récuser ver 0.78 3.04 0 0.27 ind:imp:1s; +récusait récuser ver 0.78 3.04 0.01 0.41 ind:imp:3s; +récusant récuser ver 0.78 3.04 0.03 0.14 par:pre; +récusation récusation nom f s 0.09 0.07 0.07 0.07 +récusations récusation nom f p 0.09 0.07 0.02 0 +récuse récuser ver 0.78 3.04 0.19 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récuser récuser ver 0.78 3.04 0.31 1.08 inf; +récuserait récuser ver 0.78 3.04 0 0.07 cnd:pre:3s; +récuserons récuser ver 0.78 3.04 0.01 0 ind:fut:1p; +récusons récuser ver 0.78 3.04 0.07 0 imp:pre:1p;ind:pre:1p; +récusèrent récuser ver 0.78 3.04 0 0.14 ind:pas:3p; +récusé récuser ver m s 0.78 3.04 0.14 0.34 par:pas; +récusée récuser ver f s 0.78 3.04 0.01 0.2 par:pas; +récépissé récépissé nom m s 0.09 0.34 0.09 0.34 +rédacteur rédacteur nom m s 4.95 5.68 3.32 3.85 +rédacteurs rédacteur nom m p 4.95 5.68 0.67 1.35 +rédaction rédaction nom f s 2.93 12.23 2.82 11.22 +rédactionnel rédactionnel adj m s 0.02 0.07 0.01 0 +rédactionnelle rédactionnel adj f s 0.02 0.07 0.01 0.07 +rédactions rédaction nom f p 2.93 12.23 0.11 1.01 +rédactrice rédacteur nom f s 4.95 5.68 0.94 0.27 +rédactrices rédacteur nom f p 4.95 5.68 0.02 0.2 +rédempteur rédempteur nom m s 0.78 0.27 0.78 0.2 +rédemption rédemption nom f s 2.35 1.35 2.35 1.22 +rédemptions rédemption nom f p 2.35 1.35 0 0.14 +rédemptoriste rédemptoriste nom s 0.1 0 0.1 0 +rédemptrice rédempteur adj f s 0.4 0.34 0 0.07 +rédhibition rédhibition nom f s 0 0.07 0 0.07 +rédhibitoire rédhibitoire adj s 0.06 0.47 0.06 0.34 +rédhibitoires rédhibitoire adj p 0.06 0.47 0 0.14 +rédige rédiger ver 8.49 22.16 0.72 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rédigea rédiger ver 8.49 22.16 0.02 1.35 ind:pas:3s; +rédigeai rédiger ver 8.49 22.16 0 0.47 ind:pas:1s; +rédigeaient rédiger ver 8.49 22.16 0.01 0.27 ind:imp:3p; +rédigeais rédiger ver 8.49 22.16 0.05 0.2 ind:imp:1s; +rédigeait rédiger ver 8.49 22.16 0.05 1.01 ind:imp:3s; +rédigeant rédiger ver 8.49 22.16 0.04 0.41 par:pre; +rédigent rédiger ver 8.49 22.16 0.06 0.07 ind:pre:3p; +rédigeons rédiger ver 8.49 22.16 0.05 0.34 imp:pre:1p;ind:pre:1p; +rédiger rédiger ver 8.49 22.16 2.27 6.96 inf; +rédigera rédiger ver 8.49 22.16 0.02 0 ind:fut:3s; +rédigerai rédiger ver 8.49 22.16 0.05 0.14 ind:fut:1s; +rédigerais rédiger ver 8.49 22.16 0.01 0 cnd:pre:1s; +rédigeras rédiger ver 8.49 22.16 0.03 0.07 ind:fut:2s; +rédigerez rédiger ver 8.49 22.16 0.03 0.14 ind:fut:2p; +rédiges rédiger ver 8.49 22.16 0.06 0.2 ind:pre:2s; +rédigez rédiger ver 8.49 22.16 0.83 0 imp:pre:2p;ind:pre:2p; +rédigiez rédiger ver 8.49 22.16 0.04 0.07 ind:imp:2p; +rédigions rédiger ver 8.49 22.16 0 0.14 ind:imp:1p; +rédigèrent rédiger ver 8.49 22.16 0 0.14 ind:pas:3p; +rédigé rédiger ver m s 8.49 22.16 2.55 4.19 par:pas; +rédigée rédiger ver f s 8.49 22.16 1.31 2.16 par:pas; +rédigées rédiger ver f p 8.49 22.16 0.03 1.08 par:pas; +rédigés rédiger ver m p 8.49 22.16 0.26 1.28 par:pas; +rédimaient rédimer ver 0 0.07 0 0.07 ind:imp:3p; +réducteur réducteur adj m s 0.12 0.07 0.12 0.07 +réducteurs réducteur nom m p 0.26 0.14 0.23 0.07 +réduction réduction nom f s 4.51 3.18 3.37 2.91 +réductionnisme réductionnisme nom m s 0.03 0 0.03 0 +réductionniste réductionniste adj s 0.01 0 0.01 0 +réductions réduction nom f p 4.51 3.18 1.14 0.27 +réduira réduire ver 27.88 50.61 0.53 0.34 ind:fut:3s; +réduirai réduire ver 27.88 50.61 0.26 0.2 ind:fut:1s; +réduiraient réduire ver 27.88 50.61 0.02 0.07 cnd:pre:3p; +réduirait réduire ver 27.88 50.61 0.44 0.34 cnd:pre:3s; +réduire réduire ver 27.88 50.61 8.85 13.04 inf;; +réduirons réduire ver 27.88 50.61 0.05 0.07 ind:fut:1p; +réduiront réduire ver 27.88 50.61 0.22 0.07 ind:fut:3p; +réduis réduire ver 27.88 50.61 1.35 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +réduisaient réduire ver 27.88 50.61 0.01 0.88 ind:imp:3p; +réduisais réduire ver 27.88 50.61 0.04 0.2 ind:imp:1s;ind:imp:2s; +réduisait réduire ver 27.88 50.61 0.13 4.46 ind:imp:3s; +réduisant réduire ver 27.88 50.61 0.24 1.55 par:pre; +réduise réduire ver 27.88 50.61 0.32 0.68 sub:pre:1s;sub:pre:3s; +réduisent réduire ver 27.88 50.61 1.03 1.01 ind:pre:3p; +réduises réduire ver 27.88 50.61 0.04 0 sub:pre:2s; +réduisez réduire ver 27.88 50.61 0.56 0.14 imp:pre:2p;ind:pre:2p; +réduisions réduire ver 27.88 50.61 0.01 0.07 ind:imp:1p; +réduisirent réduire ver 27.88 50.61 0 0.27 ind:pas:3p; +réduisis réduire ver 27.88 50.61 0 0.07 ind:pas:1s; +réduisit réduire ver 27.88 50.61 0.01 0.74 ind:pas:3s; +réduisons réduire ver 27.88 50.61 0.27 0.14 imp:pre:1p;ind:pre:1p; +réduisît réduire ver 27.88 50.61 0 0.14 sub:imp:3s; +réduit réduire ver m s 27.88 50.61 8.48 13.51 ind:pre:3s;par:pas; +réduite réduire ver f s 27.88 50.61 2.82 6.55 par:pas; +réduites réduire ver f p 27.88 50.61 0.43 2.03 par:pas; +réduits réduire ver m p 27.88 50.61 1.78 3.85 par:pas; +réduplication réduplication nom f s 0 0.07 0 0.07 +réel réel adj m s 38.7 40.95 23.97 15.2 +réelle réel adj f s 38.7 40.95 8.88 17.5 +réellement réellement adv 18.27 26.62 18.27 26.62 +réelles réel adj f p 38.7 40.95 2.35 4.12 +réels réel adj m p 38.7 40.95 3.5 4.12 +réemballer réemballer ver 0.01 0 0.01 0 inf; +réembarque réembarquer ver 0 0.27 0 0.07 ind:pre:3s; +réembarquement réembarquement nom m s 0 0.07 0 0.07 +réembarquer réembarquer ver 0 0.27 0 0.2 inf; +réembauche réembaucher ver 0.22 0 0.09 0 ind:pre:1s;ind:pre:3s; +réembaucher réembaucher ver 0.22 0 0.08 0 inf; +réembauché réembaucher ver m s 0.22 0 0.05 0 par:pas; +réemploi réemploi nom m s 0 0.14 0 0.14 +réemployant réemployer ver 0 0.2 0 0.07 par:pre; +réemployer réemployer ver 0 0.2 0 0.14 inf; +réemprunter réemprunter ver 0 0.07 0 0.07 inf; +réencadrer réencadrer ver 0 0.07 0 0.07 inf; +réenclenches réenclencher ver 0.01 0 0.01 0 ind:pre:2s; +réendossant réendosser ver 0.02 0.14 0 0.07 par:pre; +réendosser réendosser ver 0.02 0.14 0.02 0.07 inf; +réengage réengager ver 0.24 0.07 0.04 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réengagement réengagement nom m s 0 0.07 0 0.07 +réengager réengager ver 0.24 0.07 0.1 0 inf; +réengagé réengager ver m s 0.24 0.07 0.1 0 par:pas; +réengagées réengager ver f p 0.24 0.07 0 0.07 par:pas; +réenregistrer réenregistrer ver 0.12 0 0.11 0 inf; +réenregistré réenregistrer ver m s 0.12 0 0.01 0 par:pas; +réentendaient réentendre ver 0.26 1.01 0 0.07 ind:imp:3p; +réentendais réentendre ver 0.26 1.01 0 0.07 ind:imp:1s; +réentendons réentendre ver 0.26 1.01 0 0.07 ind:pre:1p; +réentendre réentendre ver 0.26 1.01 0.25 0.61 inf; +réentends réentendre ver 0.26 1.01 0 0.2 ind:pre:1s; +réentendu réentendre ver m s 0.26 1.01 0.01 0 par:pas; +réenterrer réenterrer ver 0.01 0 0.01 0 inf; +réentraîner réentraîner ver 0.01 0 0.01 0 inf; +réenvahir réenvahir ver 0.01 0 0.01 0 inf; +réenvisager réenvisager ver 0.15 0 0.15 0 inf; +réessaie réessayer ver 5.3 0.14 0.75 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réessaient réessayer ver 5.3 0.14 0.07 0 ind:pre:3p; +réessaiera réessayer ver 5.3 0.14 0.22 0 ind:fut:3s; +réessaierai réessayer ver 5.3 0.14 0.33 0 ind:fut:1s; +réessaieras réessayer ver 5.3 0.14 0.03 0 ind:fut:2s; +réessaieront réessayer ver 5.3 0.14 0.03 0 ind:fut:3p; +réessayant réessayer ver 5.3 0.14 0 0.07 par:pre; +réessaye réessayer ver 5.3 0.14 0.37 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réessayer réessayer ver 5.3 0.14 2.4 0.07 inf; +réessayez réessayer ver 5.3 0.14 0.61 0 imp:pre:2p;ind:pre:2p; +réessayiez réessayer ver 5.3 0.14 0.01 0 ind:imp:2p; +réessayons réessayer ver 5.3 0.14 0.31 0 imp:pre:1p;ind:pre:1p; +réessayé réessayer ver m s 5.3 0.14 0.16 0 par:pas; +réexamen réexamen nom m s 0.07 0 0.07 0 +réexaminant réexaminer ver 0.89 0.2 0 0.07 par:pre; +réexamine réexaminer ver 0.89 0.2 0.08 0 ind:pre:1s;ind:pre:3s; +réexaminer réexaminer ver 0.89 0.2 0.44 0 inf; +réexaminerons réexaminer ver 0.89 0.2 0.03 0 ind:fut:1p; +réexamines réexaminer ver 0.89 0.2 0.02 0 ind:pre:2s; +réexaminez réexaminer ver 0.89 0.2 0.04 0 imp:pre:2p;ind:pre:2p; +réexaminiez réexaminer ver 0.89 0.2 0.04 0 ind:imp:2p; +réexaminions réexaminer ver 0.89 0.2 0.01 0.07 ind:imp:1p; +réexaminé réexaminer ver m s 0.89 0.2 0.21 0 par:pas; +réexaminée réexaminer ver f s 0.89 0.2 0.01 0 par:pas; +réexaminées réexaminer ver f p 0.89 0.2 0 0.07 par:pas; +réexpédia réexpédier ver 0.37 0.68 0 0.07 ind:pas:3s; +réexpédiait réexpédier ver 0.37 0.68 0.01 0.14 ind:imp:3s; +réexpédiant réexpédier ver 0.37 0.68 0.01 0 par:pre; +réexpédier réexpédier ver 0.37 0.68 0.07 0.07 inf; +réexpédiez réexpédier ver 0.37 0.68 0.02 0 imp:pre:2p; +réexpédions réexpédier ver 0.37 0.68 0.01 0 imp:pre:1p; +réexpédition réexpédition nom f s 0.05 0 0.05 0 +réexpédié réexpédier ver m s 0.37 0.68 0.24 0.27 par:pas; +réexpédiés réexpédier ver m p 0.37 0.68 0.01 0.14 par:pas; +réf réf nom f s 0.02 0 0.02 0 +réfection réfection nom f s 0.23 1.96 0.23 1.69 +réfections réfection nom f p 0.23 1.96 0 0.27 +réfectoire réfectoire nom m s 1.13 9.66 1.11 9.59 +réfectoires réfectoire nom m p 1.13 9.66 0.01 0.07 +réflecteur réflecteur nom m s 0.32 0.54 0.2 0.27 +réflecteurs réflecteur nom m p 0.32 0.54 0.13 0.27 +réflexe réflexe nom m s 6.13 18.85 2.55 11.89 +réflexes réflexe nom m p 6.13 18.85 3.57 6.96 +réflexif réflexif adj m s 0.1 0.14 0 0.07 +réflexion réflexion nom f s 7.47 37.03 6.29 23.38 +réflexions réflexion nom f p 7.47 37.03 1.18 13.65 +réflexive réflexif adj f s 0.1 0.14 0.1 0.07 +réflexologie réflexologie nom f s 0.02 0 0.02 0 +réfléchi réfléchir ver m s 116.71 89.05 27.23 11.01 par:pas; +réfléchie réfléchi adj f s 20.28 6.69 0.36 1.22 +réfléchies réfléchi adj f p 20.28 6.69 0.01 0.07 +réfléchir réfléchir ver 116.71 89.05 47.59 36.55 inf; +réfléchira réfléchir ver 116.71 89.05 0.31 0.27 ind:fut:3s; +réfléchirai réfléchir ver 116.71 89.05 1.3 0.34 ind:fut:1s; +réfléchirais réfléchir ver 116.71 89.05 0.31 0.07 cnd:pre:1s;cnd:pre:2s; +réfléchirait réfléchir ver 116.71 89.05 0.09 0.14 cnd:pre:3s; +réfléchiras réfléchir ver 116.71 89.05 0.13 0.27 ind:fut:2s; +réfléchirent réfléchir ver 116.71 89.05 0.01 0.34 ind:pas:3p; +réfléchirez réfléchir ver 116.71 89.05 0.14 0.07 ind:fut:2p; +réfléchiriez réfléchir ver 116.71 89.05 0.03 0 cnd:pre:2p; +réfléchirons réfléchir ver 116.71 89.05 0.28 0.07 ind:fut:1p; +réfléchiront réfléchir ver 116.71 89.05 0.07 0 ind:fut:3p; +réfléchis réfléchi adj m p 20.28 6.69 18.86 2.77 +réfléchissaient réfléchir ver 116.71 89.05 0.16 0.27 ind:imp:3p; +réfléchissais réfléchir ver 116.71 89.05 2.1 1.96 ind:imp:1s;ind:imp:2s; +réfléchissait réfléchir ver 116.71 89.05 0.48 5.14 ind:imp:3s; +réfléchissant réfléchir ver 116.71 89.05 1.09 2.64 par:pre; +réfléchissante réfléchissant adj f s 0.73 0.68 0.04 0.07 +réfléchissantes réfléchissant adj f p 0.73 0.68 0.06 0 +réfléchissants réfléchissant adj m p 0.73 0.68 0 0.07 +réfléchisse réfléchir ver 116.71 89.05 2.28 0.95 sub:pre:1s;sub:pre:3s; +réfléchissent réfléchir ver 116.71 89.05 0.54 0.54 ind:pre:3p; +réfléchisses réfléchir ver 116.71 89.05 0.63 0.07 sub:pre:2s; +réfléchissez réfléchir ver 116.71 89.05 10.1 2.5 imp:pre:2p;ind:pre:2p; +réfléchissiez réfléchir ver 116.71 89.05 0.35 0.07 ind:imp:2p;sub:pre:2p; +réfléchissons réfléchir ver 116.71 89.05 1.71 0.34 imp:pre:1p;ind:pre:1p; +réfléchit réfléchir ver 116.71 89.05 3.81 19.39 ind:pre:3s;ind:pas:3s; +réfléchît réfléchir ver 116.71 89.05 0 0.14 sub:imp:3s; +réforma réformer ver 1.52 2.7 0 0.07 ind:pas:3s; +réformateur réformateur nom m s 0.16 1.49 0.09 0.61 +réformateurs réformateur nom m p 0.16 1.49 0.08 0.88 +réformation réformation nom f s 0 0.07 0 0.07 +réforme réforme nom f s 3.1 11.35 2.24 4.93 +réformer réformer ver 1.52 2.7 0.75 1.35 inf; +réformera réformer ver 1.52 2.7 0.14 0 ind:fut:3s; +réformes réforme nom f p 3.1 11.35 0.86 6.42 +réformisme réformisme nom m s 0.01 0 0.01 0 +réformiste réformiste adj m s 0.44 0.41 0.38 0.14 +réformistes réformiste adj m p 0.44 0.41 0.06 0.27 +réformons réformer ver 1.52 2.7 0.01 0 ind:pre:1p; +réformé réformer ver m s 1.52 2.7 0.4 1.01 par:pas; +réformée réformé adj f s 0.26 1.28 0.03 0.41 +réformées réformé adj f p 0.26 1.28 0 0.07 +réformés réformé nom m p 0.14 0.54 0.07 0.27 +réfractaire réfractaire adj s 0.17 1.89 0.15 1.28 +réfractaires réfractaire nom p 0.07 1.22 0.05 0.95 +réfractant réfracter ver 0.01 0.27 0 0.07 par:pre; +réfractera réfracter ver 0.01 0.27 0 0.07 ind:fut:3s; +réfracterait réfracter ver 0.01 0.27 0 0.07 cnd:pre:3s; +réfraction réfraction nom f s 0.27 0.41 0.27 0.41 +réfractionniste réfractionniste nom s 0.01 0 0.01 0 +réfracté réfracter ver m s 0.01 0.27 0.01 0.07 par:pas; +réfrigèrent réfrigérer ver 0.2 0.34 0.01 0 ind:pre:3p; +réfrigérant réfrigérant adj m s 0.18 0.27 0.09 0.14 +réfrigérante réfrigérant adj f s 0.18 0.27 0.04 0.07 +réfrigérantes réfrigérant adj f p 0.18 0.27 0.01 0.07 +réfrigérants réfrigérant adj m p 0.18 0.27 0.04 0 +réfrigérateur réfrigérateur nom m s 3.58 2.77 2.94 2.43 +réfrigérateurs réfrigérateur nom m p 3.58 2.77 0.64 0.34 +réfrigération réfrigération nom f s 0.23 0 0.23 0 +réfrigérer réfrigérer ver 0.2 0.34 0.06 0 inf; +réfrigéré réfrigérer ver m s 0.2 0.34 0.09 0.14 par:pas; +réfrigérée réfrigéré adj f s 0.16 0.34 0.09 0.07 +réfrigérées réfrigérer ver f p 0.2 0.34 0 0.14 par:pas; +réfrigérés réfrigérer ver m p 0.2 0.34 0.02 0 par:pas; +réfrène réfréner ver 0.45 0.27 0.22 0 imp:pre:2s;ind:pre:1s; +réfréna réfréner ver 0.45 0.27 0 0.07 ind:pas:3s; +réfréner réfréner ver 0.45 0.27 0.2 0.07 inf; +réfrénez réfréner ver 0.45 0.27 0.02 0 imp:pre:2p; +réfrénée réfréner ver f s 0.45 0.27 0.01 0.14 par:pas; +réfugia réfugier ver 6.72 25.2 0.05 1.01 ind:pas:3s; +réfugiai réfugier ver 6.72 25.2 0.01 0.68 ind:pas:1s; +réfugiaient réfugier ver 6.72 25.2 0.05 0.74 ind:imp:3p; +réfugiais réfugier ver 6.72 25.2 0.3 0.74 ind:imp:1s;ind:imp:2s; +réfugiait réfugier ver 6.72 25.2 0.16 1.49 ind:imp:3s; +réfugiant réfugier ver 6.72 25.2 0.01 0.47 par:pre; +réfugie réfugier ver 6.72 25.2 1.31 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +réfugient réfugier ver 6.72 25.2 0.11 0.74 ind:pre:3p; +réfugier réfugier ver 6.72 25.2 1.86 6.49 inf; +réfugiera réfugier ver 6.72 25.2 0.03 0.14 ind:fut:3s; +réfugierais réfugier ver 6.72 25.2 0.01 0.07 cnd:pre:1s; +réfugies réfugier ver 6.72 25.2 0.04 0.14 ind:pre:2s; +réfugiez réfugier ver 6.72 25.2 0.05 0 imp:pre:2p;ind:pre:2p; +réfugiions réfugier ver 6.72 25.2 0 0.41 ind:imp:1p; +réfugions réfugier ver 6.72 25.2 0.03 0.14 imp:pre:1p;ind:pre:1p; +réfugièrent réfugier ver 6.72 25.2 0.04 0.34 ind:pas:3p; +réfugié réfugier ver m s 6.72 25.2 1.49 4.12 par:pas; +réfugiée réfugier ver f s 6.72 25.2 0.34 2.16 par:pas; +réfugiées réfugier ver f p 6.72 25.2 0.02 0.61 par:pas; +réfugiés réfugié nom m p 6.02 10.2 4.96 8.18 +réfuta réfuter ver 1.46 1.69 0.1 0.07 ind:pas:3s; +réfutable réfutable adj s 0.01 0 0.01 0 +réfutaient réfuter ver 1.46 1.69 0 0.07 ind:imp:3p; +réfutant réfuter ver 1.46 1.69 0.01 0 par:pre; +réfutation réfutation nom f s 0.22 0.41 0.22 0.34 +réfutations réfutation nom f p 0.22 0.41 0 0.07 +réfute réfuter ver 1.46 1.69 0.2 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réfutent réfuter ver 1.46 1.69 0.01 0.07 ind:pre:3p; +réfuter réfuter ver 1.46 1.69 0.89 0.81 inf; +réfutons réfuter ver 1.46 1.69 0.14 0 ind:pre:1p; +réfutèrent réfuter ver 1.46 1.69 0 0.07 ind:pas:3p; +réfuté réfuter ver m s 1.46 1.69 0.05 0.2 par:pas; +réfutée réfuter ver f s 1.46 1.69 0.03 0.07 par:pas; +réfutées réfuter ver f p 1.46 1.69 0.02 0.07 par:pas; +réfère référer ver 3.02 3.78 1 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réfèrent référer ver 3.02 3.78 0.09 0.07 ind:pre:3p; +référaient référer ver 3.02 3.78 0.01 0.14 ind:imp:3p; +référait référer ver 3.02 3.78 0.32 0.34 ind:imp:3s; +référant référer ver 3.02 3.78 0.11 0.68 par:pre; +référence référence nom f s 10.45 7.23 6.54 3.58 +référencement référencement nom m s 0.01 0 0.01 0 +référencer référencer ver 0.17 0 0.05 0 inf; +références référence nom f p 10.45 7.23 3.91 3.65 +référencé référencer ver m s 0.17 0 0.09 0 par:pas; +référencée référencer ver f s 0.17 0 0.04 0 par:pas; +référendaire référendaire adj m s 0 0.2 0 0.2 +référendum référendum nom m s 0.65 2.57 0.65 2.5 +référendums référendum nom m p 0.65 2.57 0 0.07 +référent référent nom m s 0.02 0 0.02 0 +référer référer ver 3.02 3.78 0.88 1.42 inf; +référera référer ver 3.02 3.78 0.01 0 ind:fut:3s; +référerai référer ver 3.02 3.78 0.29 0 ind:fut:1s; +référerez référer ver 3.02 3.78 0.01 0.14 ind:fut:2p; +référez référer ver 3.02 3.78 0.19 0.07 imp:pre:2p;ind:pre:2p; +référiez référer ver 3.02 3.78 0 0.07 ind:imp:2p; +référèrent référer ver 3.02 3.78 0 0.07 ind:pas:3p; +référé référé nom m s 0.14 0.07 0.13 0.07 +référée référer ver f s 3.02 3.78 0.04 0 par:pas; +référés référé nom m p 0.14 0.07 0.01 0 +régal régal nom m s 2.19 2.97 2.18 2.91 +régala régaler ver 7.54 11.76 0 0.2 ind:pas:3s; +régalade régalade nom f s 0 0.81 0 0.81 +régalai régaler ver 7.54 11.76 0 0.07 ind:pas:1s; +régalaient régaler ver 7.54 11.76 0.02 0.47 ind:imp:3p; +régalais régaler ver 7.54 11.76 0.06 0.41 ind:imp:1s;ind:imp:2s; +régalait régaler ver 7.54 11.76 0.19 1.96 ind:imp:3s; +régalant régaler ver 7.54 11.76 0.02 0.47 par:pre; +régale régaler ver 7.54 11.76 3.02 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +régalent régaler ver 7.54 11.76 0.14 0.41 ind:pre:3p; +régaler régaler ver 7.54 11.76 2.57 2.91 inf;; +régalera régaler ver 7.54 11.76 0.02 0.14 ind:fut:3s; +régaleraient régaler ver 7.54 11.76 0 0.14 cnd:pre:3p; +régalerais régaler ver 7.54 11.76 0.01 0.07 cnd:pre:1s; +régalerait régaler ver 7.54 11.76 0 0.2 cnd:pre:3s; +régaleras régaler ver 7.54 11.76 0.12 0.07 ind:fut:2s; +régalerez régaler ver 7.54 11.76 0.02 0 ind:fut:2p; +régaleront régaler ver 7.54 11.76 0.16 0.2 ind:fut:3p; +régaleur régaleur nom m s 0 0.07 0 0.07 +régalez régaler ver 7.54 11.76 0.6 0.07 imp:pre:2p;ind:pre:2p; +régalien régalien adj m s 0.01 0.07 0.01 0.07 +régalions régaler ver 7.54 11.76 0 0.07 ind:imp:1p; +régals régal nom m p 2.19 2.97 0.01 0.07 +régalât régaler ver 7.54 11.76 0 0.07 sub:imp:3s; +régalèrent régaler ver 7.54 11.76 0 0.27 ind:pas:3p; +régalé régaler ver m s 7.54 11.76 0.24 0.95 par:pas; +régalée régaler ver f s 7.54 11.76 0.06 0.27 par:pas; +régalés régaler ver m p 7.54 11.76 0.28 0.47 par:pas; +régate régate nom f s 1.13 0.81 0.93 0.41 +régates régate nom f p 1.13 0.81 0.19 0.41 +régence régence nom f s 0.07 1.69 0.07 1.69 +régent régent nom m s 1.14 2.3 0.77 1.08 +régentaient régenter ver 0.32 1.22 0 0.07 ind:imp:3p; +régentait régenter ver 0.32 1.22 0 0.27 ind:imp:3s; +régentant régenter ver 0.32 1.22 0.1 0.07 par:pre; +régente régent nom f s 1.14 2.3 0.37 1.15 +régentent régenter ver 0.32 1.22 0.01 0 ind:pre:3p; +régenter régenter ver 0.32 1.22 0.16 0.47 inf; +régenteraient régenter ver 0.32 1.22 0 0.07 cnd:pre:3p; +régentes régenter ver 0.32 1.22 0.01 0 ind:pre:2s; +régenté régenter ver m s 0.32 1.22 0.01 0.07 par:pas; +régentée régenter ver f s 0.32 1.22 0 0.14 par:pas; +régi régir ver m s 3.1 8.45 0.5 0.68 par:pas; +régicide régicide nom s 0.2 1.01 0.2 0.88 +régicides régicide nom p 0.2 1.01 0 0.14 +régie régie nom f s 0.92 0.54 0.92 0.47 +régies régir ver f p 3.1 8.45 0 0.07 par:pas; +régime régime nom m s 19.43 39.73 18.52 36.69 +régiment régiment nom m s 12.3 25.54 11.48 19.86 +régimentaire régimentaire adj s 0.1 0.41 0.1 0.2 +régimentaires régimentaire adj f p 0.1 0.41 0 0.2 +régiments régiment nom m p 12.3 25.54 0.82 5.68 +régimes régime nom m p 19.43 39.73 0.92 3.04 +région région nom f s 28.16 53.31 25.8 39.05 +régional régional adj m s 2.63 2.7 1.23 1.69 +régionale régional adj f s 2.63 2.7 1.01 0.54 +régionales régional adj f p 2.63 2.7 0.39 0.47 +régionaliser régionaliser ver 0 0.07 0 0.07 inf; +régionalisme régionalisme nom m s 0 0.14 0 0.14 +régionaliste régionaliste adj m s 0 0.14 0 0.07 +régionalistes régionaliste adj p 0 0.14 0 0.07 +régionaux régional nom m p 0.45 1.22 0.2 1.08 +régions région nom f p 28.16 53.31 2.36 14.26 +régir régir ver 3.1 8.45 0.36 0.07 inf; +régira régir ver 3.1 8.45 0.05 0 ind:fut:3s; +régiraient régir ver 3.1 8.45 0 0.07 cnd:pre:3p; +régirait régir ver 3.1 8.45 0.01 0 cnd:pre:3s; +régiront régir ver 3.1 8.45 0.14 0 ind:fut:3p; +régis régir ver m p 3.1 8.45 0.5 6.08 imp:pre:2s;par:pas; +régissaient régir ver 3.1 8.45 0.02 0.07 ind:imp:3p; +régissait régir ver 3.1 8.45 0 0.41 ind:imp:3s; +régissant régir ver 3.1 8.45 0.05 0.14 par:pre; +régissent régir ver 3.1 8.45 0.39 0.41 ind:pre:3p; +régisseur régisseur nom m s 1.4 4.26 1.28 3.65 +régisseurs régisseur nom m p 1.4 4.26 0.11 0.61 +régisseuse régisseur nom f s 1.4 4.26 0.01 0 +régit régir ver 3.1 8.45 0.72 0.41 ind:pre:3s;ind:pas:3s; +régla régler ver 85.81 54.19 0.25 1.42 ind:pas:3s; +réglable réglable adj s 0.2 0.54 0.18 0.41 +réglables réglable adj m p 0.2 0.54 0.02 0.14 +réglage réglage nom m s 0.9 1.15 0.59 1.01 +réglages réglage nom m p 0.9 1.15 0.3 0.14 +réglai régler ver 85.81 54.19 0 0.41 ind:pas:1s; +réglaient régler ver 85.81 54.19 0.2 0.74 ind:imp:3p; +réglais régler ver 85.81 54.19 0.19 0 ind:imp:1s;ind:imp:2s; +réglait régler ver 85.81 54.19 0.41 3.31 ind:imp:3s; +réglant régler ver 85.81 54.19 0.14 1.15 par:pre; +réglasse régler ver 85.81 54.19 0 0.07 sub:imp:1s; +réglementaire réglementaire adj s 0.9 6.96 0.73 4.46 +réglementairement réglementairement adv 0.15 0.61 0.15 0.61 +réglementaires réglementaire adj p 0.9 6.96 0.17 2.5 +réglementait réglementer ver 0.22 0.81 0 0.07 ind:imp:3s; +réglementant réglementer ver 0.22 0.81 0.02 0.27 par:pre; +réglementation réglementation nom f s 0.56 0.47 0.31 0.41 +réglementations réglementation nom f p 0.56 0.47 0.25 0.07 +réglemente réglementer ver 0.22 0.81 0 0.07 ind:pre:3s; +réglementer réglementer ver 0.22 0.81 0.04 0.07 inf; +réglementé réglementer ver m s 0.22 0.81 0.05 0.07 par:pas; +réglementée réglementer ver f s 0.22 0.81 0.07 0.07 par:pas; +réglementées réglementer ver f p 0.22 0.81 0 0.2 par:pas; +réglementés réglementer ver m p 0.22 0.81 0.04 0 par:pas; +régler régler ver 85.81 54.19 42.27 22.36 inf;; +réglera régler ver 85.81 54.19 2.02 0.74 ind:fut:3s; +réglerai régler ver 85.81 54.19 0.73 0.07 ind:fut:1s; +réglerais régler ver 85.81 54.19 0.06 0 cnd:pre:1s;cnd:pre:2s; +réglerait régler ver 85.81 54.19 0.16 0.68 cnd:pre:3s; +régleras régler ver 85.81 54.19 0.26 0.07 ind:fut:2s; +réglerez régler ver 85.81 54.19 0.37 0.14 ind:fut:2p; +réglerions régler ver 85.81 54.19 0.01 0 cnd:pre:1p; +réglerons régler ver 85.81 54.19 0.56 0.27 ind:fut:1p; +régleront régler ver 85.81 54.19 0.04 0.34 ind:fut:3p; +réglette réglette nom f s 0.01 0.2 0.01 0.2 +régleur régleur nom m s 0.1 1.82 0.1 1.82 +réglez régler ver 85.81 54.19 3.06 0 imp:pre:2p;ind:pre:2p; +régliez régler ver 85.81 54.19 0.06 0 ind:imp:2p; +réglions régler ver 85.81 54.19 0 0.07 ind:imp:1p; +réglisse réglisse nom f s 0.77 2.57 0.71 2.43 +réglisses réglisse nom f p 0.77 2.57 0.06 0.14 +réglo réglo adj s 6.61 1.22 5.99 1.08 +réglons régler ver 85.81 54.19 1.19 0.41 imp:pre:1p;ind:pre:1p; +réglos réglo adj m p 6.61 1.22 0.62 0.14 +réglure réglure nom f s 0 0.2 0 0.2 +réglât régler ver 85.81 54.19 0 0.14 sub:imp:3s; +réglèrent régler ver 85.81 54.19 0 0.34 ind:pas:3p; +réglé régler ver m s 85.81 54.19 21.02 10.47 par:pas; +réglée régler ver f s 85.81 54.19 2.37 4.26 par:pas; +réglées régler ver f p 85.81 54.19 0.88 1.49 par:pas; +réglés régler ver m p 85.81 54.19 0.39 0.88 par:pas; +régna régner ver 22.75 47.43 0.08 0.74 ind:pas:3s; +régnaient régner ver 22.75 47.43 0.29 2.3 ind:imp:3p; +régnais régner ver 22.75 47.43 0.02 0.47 ind:imp:1s;ind:imp:2s; +régnait régner ver 22.75 47.43 2.63 20.47 ind:imp:3s; +régnant régner ver 22.75 47.43 0.28 1.01 par:pre; +régnante régnant adj f s 0.17 1.15 0.05 0.41 +régnants régnant adj m p 0.17 1.15 0.1 0.14 +régnas régner ver 22.75 47.43 0 0.07 ind:pas:2s; +régner régner ver 22.75 47.43 5.52 7.64 inf; +régnera régner ver 22.75 47.43 1.33 0.61 ind:fut:3s; +régnerai régner ver 22.75 47.43 0.13 0.07 ind:fut:1s; +régneraient régner ver 22.75 47.43 0.11 0.14 cnd:pre:3p; +régnerais régner ver 22.75 47.43 0.01 0 cnd:pre:2s; +régnerait régner ver 22.75 47.43 0.18 0.27 cnd:pre:3s; +régneras régner ver 22.75 47.43 0.14 0.07 ind:fut:2s; +régnerez régner ver 22.75 47.43 0.03 0 ind:fut:2p; +régnerons régner ver 22.75 47.43 0.32 0 ind:fut:1p; +régneront régner ver 22.75 47.43 0.27 0.07 ind:fut:3p; +régnez régner ver 22.75 47.43 1.04 0.07 imp:pre:2p;ind:pre:2p; +régnions régner ver 22.75 47.43 0 0.07 ind:imp:1p; +régnons régner ver 22.75 47.43 0.2 0 ind:pre:1p; +régnèrent régner ver 22.75 47.43 0.02 0 ind:pas:3p; +régné régner ver m s 22.75 47.43 0.4 1.28 par:pas; +régressait régresser ver 0.85 0.88 0 0.07 ind:imp:3s; +régressant régresser ver 0.85 0.88 0 0.07 par:pre; +régresse régresser ver 0.85 0.88 0.23 0.14 ind:pre:1s;ind:pre:3s; +régresser régresser ver 0.85 0.88 0.39 0.34 inf; +régressera régresser ver 0.85 0.88 0.05 0 ind:fut:3s; +régressif régressif adj m s 0.07 0 0.03 0 +régression régression nom f s 0.52 1.55 0.51 1.35 +régressions régression nom f p 0.52 1.55 0.01 0.2 +régressive régressif adj f s 0.07 0 0.04 0 +régressé régresser ver m s 0.85 0.88 0.19 0.27 par:pas; +régul régul adj m s 0.04 0.34 0.04 0.34 +régulant réguler ver 0.61 0.14 0.03 0 par:pre; +régularisa régulariser ver 0.38 0.88 0 0.07 ind:pas:3s; +régularisation régularisation nom f s 0.11 0.14 0.01 0.14 +régularisations régularisation nom f p 0.11 0.14 0.1 0 +régulariser régulariser ver 0.38 0.88 0.33 0.61 inf; +régularisera régulariser ver 0.38 0.88 0.02 0 ind:fut:3s; +régularisé régulariser ver m s 0.38 0.88 0.03 0.2 par:pas; +régularité régularité nom f s 0.55 6.96 0.55 6.96 +régulateur régulateur nom m s 1.05 0.27 0.65 0.07 +régulateurs régulateur nom m p 1.05 0.27 0.41 0.2 +régulation régulation nom f s 0.46 0.34 0.46 0.34 +régulatrice régulateur adj f s 0.14 0.27 0.01 0 +régulatrices régulateur adj f p 0.14 0.27 0.01 0 +régule régule nom m s 0.28 0.2 0.28 0.2 +régulent réguler ver 0.61 0.14 0.2 0 ind:pre:3p; +réguler réguler ver 0.61 0.14 0.28 0.14 inf; +régulera réguler ver 0.61 0.14 0.01 0 ind:fut:3s; +régulier régulier adj m s 8.29 41.35 4.48 16.42 +réguliers régulier adj m p 8.29 41.35 1.48 9.59 +régulière régulier adj f s 8.29 41.35 1.55 9.66 +régulièrement régulièrement adv 5.72 27.77 5.72 27.77 +régulières régulier adj f p 8.29 41.35 0.79 5.68 +régulé réguler ver m s 0.61 0.14 0.03 0 par:pas; +régulée réguler ver f s 0.61 0.14 0.04 0 par:pas; +régulées réguler ver f p 0.61 0.14 0.01 0 par:pas; +régulés réguler ver m p 0.61 0.14 0.02 0 par:pas; +régurgitaient régurgiter ver 0.21 0.2 0 0.07 ind:imp:3p; +régurgitant régurgiter ver 0.21 0.2 0.01 0.07 par:pre; +régurgitation régurgitation nom f s 0.09 0.07 0.04 0.07 +régurgitations régurgitation nom f p 0.09 0.07 0.05 0 +régurgite régurgiter ver 0.21 0.2 0.07 0 ind:pre:3s; +régurgiter régurgiter ver 0.21 0.2 0.09 0.07 inf; +régurgiteras régurgiter ver 0.21 0.2 0.01 0 ind:fut:2s; +régurgité régurgiter ver m s 0.21 0.2 0.02 0 par:pas; +régénère régénérer ver 1.84 1.55 0.6 0.07 ind:pre:3s; +régénèrent régénérer ver 1.84 1.55 0.06 0 ind:pre:3p; +régénérait régénérer ver 1.84 1.55 0 0.07 ind:imp:3s; +régénérant régénérer ver 1.84 1.55 0.07 0.14 par:pre; +régénérateur régénérateur nom m s 0.19 0.07 0.17 0.07 +régénérateurs régénérateur adj m p 0.05 0.41 0.01 0 +régénération régénération nom f s 0.67 0.14 0.67 0.14 +régénératrice régénérateur adj f s 0.05 0.41 0.01 0.27 +régénérer régénérer ver 1.84 1.55 0.72 0.68 inf; +régénérera régénérer ver 1.84 1.55 0.02 0 ind:fut:3s; +régénérerait régénérer ver 1.84 1.55 0 0.07 cnd:pre:3s; +régénérescence régénérescence nom f s 0.02 0.27 0.02 0.27 +régénéré régénérer ver m s 1.84 1.55 0.17 0.27 par:pas; +régénérée régénérer ver f s 1.84 1.55 0.04 0.14 par:pas; +régénérées régénéré adj f p 0.15 0.41 0.01 0 +régénérés régénérer ver m p 1.84 1.55 0.17 0.14 par:pas; +réhabilitaient réhabiliter ver 1.14 2.23 0 0.07 ind:imp:3p; +réhabilitait réhabiliter ver 1.14 2.23 0 0.14 ind:imp:3s; +réhabilitant réhabiliter ver 1.14 2.23 0.14 0 par:pre; +réhabilitation réhabilitation nom f s 1.55 0.68 1.55 0.68 +réhabilite réhabiliter ver 1.14 2.23 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réhabilitent réhabiliter ver 1.14 2.23 0.02 0.07 ind:pre:3p; +réhabiliter réhabiliter ver 1.14 2.23 0.28 1.01 inf; +réhabilitera réhabiliter ver 1.14 2.23 0.01 0 ind:fut:3s; +réhabiliterait réhabiliter ver 1.14 2.23 0.02 0.07 cnd:pre:3s; +réhabilité réhabiliter ver m s 1.14 2.23 0.46 0.47 par:pas; +réhabilitée réhabiliter ver f s 1.14 2.23 0.03 0.14 par:pas; +réhabilitées réhabiliter ver f p 1.14 2.23 0.01 0 par:pas; +réhabilités réhabiliter ver m p 1.14 2.23 0.12 0.14 par:pas; +réhabituais réhabituer ver 0.2 0.81 0 0.14 ind:imp:1s; +réhabituait réhabituer ver 0.2 0.81 0 0.07 ind:imp:3s; +réhabitue réhabituer ver 0.2 0.81 0.14 0.2 ind:pre:1s;ind:pre:3s; +réhabituer réhabituer ver 0.2 0.81 0.07 0.41 inf; +réhydratation réhydratation nom f s 0.03 0 0.03 0 +réhydrater réhydrater ver 0.09 0.07 0.08 0.07 inf; +réhydraté réhydrater ver m s 0.09 0.07 0.01 0 par:pas; +réifiés réifier ver m p 0 0.07 0 0.07 par:pas; +réimplantation réimplantation nom f s 0.09 0 0.09 0 +réimplanter réimplanter ver 0.11 0 0.06 0 inf; +réimplanté réimplanter ver m s 0.11 0 0.02 0 par:pas; +réimplantée réimplanter ver f s 0.11 0 0.02 0 par:pas; +réimpression réimpression nom f s 0.02 0.14 0.02 0.14 +réimprima réimprimer ver 0.04 0.27 0 0.07 ind:pas:3s; +réimprimer réimprimer ver 0.04 0.27 0.04 0.14 inf; +réimprimé réimprimer ver m s 0.04 0.27 0 0.07 par:pas; +réincarcérer réincarcérer ver 0.01 0 0.01 0 inf; +réincarnait réincarner ver 1.25 0.88 0 0.07 ind:imp:3s; +réincarnation réincarnation nom f s 1.75 1.55 1.68 1.49 +réincarnations réincarnation nom f p 1.75 1.55 0.07 0.07 +réincarne réincarner ver 1.25 0.88 0.12 0.07 ind:pre:1s;ind:pre:3s; +réincarnent réincarner ver 1.25 0.88 0.1 0.07 ind:pre:3p; +réincarner réincarner ver 1.25 0.88 0.3 0.07 inf; +réincarnera réincarner ver 1.25 0.88 0.01 0 ind:fut:3s; +réincarnerait réincarner ver 1.25 0.88 0 0.07 cnd:pre:3s; +réincarneront réincarner ver 1.25 0.88 0.01 0 ind:fut:3p; +réincarnons réincarner ver 1.25 0.88 0.01 0 ind:pre:1p; +réincarnèrent réincarner ver 1.25 0.88 0.01 0 ind:pas:3p; +réincarné réincarner ver m s 1.25 0.88 0.47 0.27 par:pas; +réincarnée réincarner ver f s 1.25 0.88 0.15 0.14 par:pas; +réincarnés réincarner ver m p 1.25 0.88 0.06 0.14 par:pas; +réincorpora réincorporer ver 0.04 0.07 0 0.07 ind:pas:3s; +réincorporé réincorporer ver m s 0.04 0.07 0.02 0 par:pas; +réincorporés réincorporer ver m p 0.04 0.07 0.02 0 par:pas; +réinfecter réinfecter ver 0.05 0 0.01 0 inf; +réinfecté réinfecter ver m s 0.05 0 0.04 0 par:pas; +réinitialisation réinitialisation nom f s 0.13 0 0.13 0 +réinitialiser réinitialiser ver 0.23 0 0.17 0 inf; +réinitialisez réinitialiser ver 0.23 0 0.03 0 imp:pre:2p; +réinitialisé réinitialiser ver m s 0.23 0 0.03 0 par:pas; +réinjecter réinjecter ver 0.02 0 0.02 0 inf; +réinjection réinjection nom f s 0 0.14 0 0.14 +réinscrire réinscrire ver 0.08 0 0.04 0 inf; +réinscrit réinscrire ver m s 0.08 0 0.04 0 par:pas; +réinsertion réinsertion nom f s 1.51 0.88 1.51 0.88 +réinstalla réinstaller ver 0.28 1.89 0.01 0.07 ind:pas:3s; +réinstallaient réinstaller ver 0.28 1.89 0 0.07 ind:imp:3p; +réinstallait réinstaller ver 0.28 1.89 0 0.27 ind:imp:3s; +réinstallant réinstaller ver 0.28 1.89 0 0.14 par:pre; +réinstallation réinstallation nom f s 0.03 0.14 0.03 0.14 +réinstalle réinstaller ver 0.28 1.89 0.04 0.14 ind:pre:1s;ind:pre:3s; +réinstallent réinstaller ver 0.28 1.89 0.01 0.07 ind:pre:3p; +réinstaller réinstaller ver 0.28 1.89 0.13 0.54 inf; +réinstallez réinstaller ver 0.28 1.89 0.01 0 imp:pre:2p; +réinstallons réinstaller ver 0.28 1.89 0 0.07 ind:pre:1p; +réinstallé réinstaller ver m s 0.28 1.89 0.04 0.27 par:pas; +réinstallée réinstaller ver f s 0.28 1.89 0.02 0.14 par:pas; +réinstallées réinstaller ver f p 0.28 1.89 0 0.07 par:pas; +réinstallés réinstaller ver m p 0.28 1.89 0.01 0.07 par:pas; +réinstaurer réinstaurer ver 0.02 0 0.02 0 inf; +réinsérer réinsérer ver 0.41 0.47 0.23 0.41 inf; +réinséré réinsérer ver m s 0.41 0.47 0.17 0.07 par:pas; +réinterprète réinterpréter ver 0.03 0.14 0 0.07 ind:pre:3s; +réinterprétation réinterprétation nom f s 0.1 0.07 0.1 0.07 +réinterpréter réinterpréter ver 0.03 0.14 0.03 0.07 inf; +réinterroge réinterroger ver 0.22 0 0.05 0 ind:pre:3s; +réinterroger réinterroger ver 0.22 0 0.17 0 inf; +réintroduire réintroduire ver 0.23 0.27 0.18 0.07 inf; +réintroduisait réintroduire ver 0.23 0.27 0 0.07 ind:imp:3s; +réintroduisit réintroduire ver 0.23 0.27 0 0.07 ind:pas:3s; +réintroduit réintroduire ver m s 0.23 0.27 0.05 0 ind:pre:3s;par:pas; +réintroduite réintroduire ver f s 0.23 0.27 0 0.07 par:pas; +réintègre réintégrer ver 2.94 5.2 0.32 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réintègrent réintégrer ver 2.94 5.2 0 0.14 ind:pre:3p; +réintégra réintégrer ver 2.94 5.2 0 0.41 ind:pas:3s; +réintégrai réintégrer ver 2.94 5.2 0 0.14 ind:pas:1s; +réintégraient réintégrer ver 2.94 5.2 0 0.2 ind:imp:3p; +réintégrais réintégrer ver 2.94 5.2 0 0.07 ind:imp:1s; +réintégrait réintégrer ver 2.94 5.2 0.01 0.34 ind:imp:3s; +réintégrant réintégrer ver 2.94 5.2 0.01 0.2 par:pre; +réintégration réintégration nom f s 0.26 0.34 0.26 0.27 +réintégrations réintégration nom f p 0.26 0.34 0 0.07 +réintégrer réintégrer ver 2.94 5.2 1.38 2.16 inf; +réintégrerait réintégrer ver 2.94 5.2 0 0.07 cnd:pre:3s; +réintégrez réintégrer ver 2.94 5.2 0.22 0 imp:pre:2p;ind:pre:2p; +réintégrions réintégrer ver 2.94 5.2 0 0.07 ind:imp:1p; +réintégrons réintégrer ver 2.94 5.2 0.02 0 imp:pre:1p;ind:pre:1p; +réintégrèrent réintégrer ver 2.94 5.2 0 0.2 ind:pas:3p; +réintégré réintégrer ver m s 2.94 5.2 0.53 1.01 par:pas; +réintégrée réintégrer ver f s 2.94 5.2 0.21 0 par:pas; +réintégrés réintégrer ver m p 2.94 5.2 0.24 0.07 par:pas; +réinventa réinventer ver 0.73 2.43 0.01 0.07 ind:pas:3s; +réinventaient réinventer ver 0.73 2.43 0.01 0.14 ind:imp:3p; +réinventait réinventer ver 0.73 2.43 0 0.2 ind:imp:3s; +réinventant réinventer ver 0.73 2.43 0 0.14 par:pre; +réinvente réinventer ver 0.73 2.43 0.19 0.41 imp:pre:2s;ind:pre:3s; +réinventent réinventer ver 0.73 2.43 0 0.07 ind:pre:3p; +réinventer réinventer ver 0.73 2.43 0.41 1.01 inf; +réinventeraient réinventer ver 0.73 2.43 0 0.14 cnd:pre:3p; +réinvention réinvention nom f s 0.01 0.07 0.01 0.07 +réinventé réinventer ver m s 0.73 2.43 0.11 0.2 par:pas; +réinventées réinventer ver f p 0.73 2.43 0 0.07 par:pas; +réinvesti réinvestir ver m s 0.33 0.81 0.04 0.34 par:pas; +réinvestir réinvestir ver 0.33 0.81 0.1 0.14 inf; +réinvestirent réinvestir ver 0.33 0.81 0 0.07 ind:pas:3p; +réinvestis réinvestir ver 0.33 0.81 0.16 0 imp:pre:2s;ind:pre:1s; +réinvestissait réinvestir ver 0.33 0.81 0 0.14 ind:imp:3s; +réinvestissement réinvestissement nom m s 0.01 0 0.01 0 +réinvestissent réinvestir ver 0.33 0.81 0 0.14 ind:pre:3p; +réinvestit réinvestir ver 0.33 0.81 0.03 0 ind:pre:3s; +réinvita réinviter ver 0.05 0.07 0 0.07 ind:pas:3s; +réinvite réinviter ver 0.05 0.07 0.02 0 ind:pre:1s; +réinviter réinviter ver 0.05 0.07 0.01 0 inf; +réinviterai réinviter ver 0.05 0.07 0.02 0 ind:fut:1s; +réitère réitérer ver 1.13 2.77 0.34 0.41 ind:pre:1s;ind:pre:3s; +réitéra réitérer ver 1.13 2.77 0 0.54 ind:pas:3s; +réitérait réitérer ver 1.13 2.77 0 0.07 ind:imp:3s; +réitérant réitérer ver 1.13 2.77 0 0.07 par:pre; +réitération réitération nom f s 0 0.14 0 0.07 +réitérations réitération nom f p 0 0.14 0 0.07 +réitérer réitérer ver 1.13 2.77 0.35 0.41 inf; +réitérera réitérer ver 1.13 2.77 0.01 0 ind:fut:3s; +réitérèrent réitérer ver 1.13 2.77 0 0.07 ind:pas:3p; +réitéré réitérer ver m s 1.13 2.77 0.15 0.27 par:pas; +réitérée réitérer ver f s 1.13 2.77 0.14 0.27 par:pas; +réitérées réitérer ver f p 1.13 2.77 0.01 0.47 par:pas; +réitérés réitérer ver m p 1.13 2.77 0.14 0.2 par:pas; +réjoui réjouir ver m s 21.02 25.61 0.5 1.89 par:pas; +réjouie réjouir ver f s 21.02 25.61 0.33 1.08 par:pas; +réjouies réjoui adj f p 0.45 2.43 0.02 0.2 +réjouir réjouir ver 21.02 25.61 3.96 6.15 inf; +réjouira réjouir ver 21.02 25.61 0.38 0.07 ind:fut:3s; +réjouirai réjouir ver 21.02 25.61 0.05 0 ind:fut:1s; +réjouirais réjouir ver 21.02 25.61 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +réjouirait réjouir ver 21.02 25.61 0.1 0.34 cnd:pre:3s; +réjouirent réjouir ver 21.02 25.61 0.01 0.14 ind:pas:3p; +réjouirez réjouir ver 21.02 25.61 0 0.07 ind:fut:2p; +réjouirons réjouir ver 21.02 25.61 0.04 0 ind:fut:1p; +réjouiront réjouir ver 21.02 25.61 0.64 0.14 ind:fut:3p; +réjouis réjouir ver m p 21.02 25.61 8.42 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réjouissaient réjouir ver 21.02 25.61 0.01 0.61 ind:imp:3p; +réjouissais réjouir ver 21.02 25.61 0.33 1.28 ind:imp:1s;ind:imp:2s; +réjouissait réjouir ver 21.02 25.61 0.44 4.73 ind:imp:3s; +réjouissance réjouissance nom f s 0.72 2.91 0.22 1.22 +réjouissances réjouissance nom f p 0.72 2.91 0.5 1.69 +réjouissant réjouissant adj m s 1.06 1.76 0.95 0.81 +réjouissante réjouissant adj f s 1.06 1.76 0.11 0.54 +réjouissantes réjouissant adj f p 1.06 1.76 0 0.27 +réjouissants réjouissant adj m p 1.06 1.76 0 0.14 +réjouisse réjouir ver 21.02 25.61 0.37 0.41 sub:pre:1s;sub:pre:3s; +réjouissent réjouir ver 21.02 25.61 0.74 0.61 ind:pre:3p; +réjouissez réjouir ver 21.02 25.61 1.15 0.27 imp:pre:2p;ind:pre:2p; +réjouissiez réjouir ver 21.02 25.61 0.01 0 ind:imp:2p; +réjouissions réjouir ver 21.02 25.61 0.01 0.07 ind:imp:1p; +réjouissons réjouir ver 21.02 25.61 0.65 0.27 imp:pre:1p;ind:pre:1p; +réjouit réjouir ver 21.02 25.61 2.75 4.32 ind:pre:3s;ind:pas:3s; +réjouît réjouir ver 21.02 25.61 0 0.07 sub:imp:3s; +rémanence rémanence nom f s 0.01 0.2 0.01 0.2 +rémanent rémanent adj m s 0.02 0.14 0.02 0 +rémanente rémanent adj f s 0.02 0.14 0 0.14 +rémiges rémige nom f p 0 0.68 0 0.68 +réminiscence réminiscence nom f s 0.12 3.92 0.04 1.49 +réminiscences réminiscence nom f p 0.12 3.92 0.07 2.43 +rémission rémission nom f s 1.71 2.77 1.69 2.36 +rémissions rémission nom f p 1.71 2.77 0.02 0.41 +rémiz rémiz nom f 0 0.07 0 0.07 +rémora rémora nom m s 0.02 0 0.02 0 +rémoulade rémoulade nom f s 0.02 0.2 0.02 0.2 +rémouleur rémouleur nom m s 0.02 0.95 0.02 0.68 +rémouleurs rémouleur nom m p 0.02 0.95 0 0.27 +rémunère rémunérer ver 1.2 0.54 0.12 0 ind:pre:1s;ind:pre:3s; +rémunéraient rémunérer ver 1.2 0.54 0 0.07 ind:imp:3p; +rémunérateur rémunérateur adj m s 0.18 0.34 0.07 0.27 +rémunérateurs rémunérateur adj m p 0.18 0.34 0.01 0.07 +rémunération rémunération nom f s 0.22 0.81 0.22 0.61 +rémunérations rémunération nom f p 0.22 0.81 0 0.2 +rémunératoires rémunératoire adj p 0 0.07 0 0.07 +rémunératrice rémunérateur adj f s 0.18 0.34 0.1 0 +rémunérer rémunérer ver 1.2 0.54 0.04 0 inf; +rémunéré rémunérer ver m s 1.2 0.54 0.68 0.27 par:pas; +rémunérées rémunérer ver f p 1.2 0.54 0.01 0.07 par:pas; +rémunérés rémunérer ver m p 1.2 0.54 0.36 0.14 par:pas; +rénal rénal adj m s 1.57 0.47 0.32 0.14 +rénale rénal adj f s 1.57 0.47 0.82 0.27 +rénales rénal adj f p 1.57 0.47 0.12 0.07 +rénaux rénal adj m p 1.57 0.47 0.32 0 +rénettes rénette nom f p 0 0.07 0 0.07 +rénine rénine nom f s 0.01 0 0.01 0 +rénovait rénover ver 2.33 2.5 0.01 0.07 ind:imp:3s; +rénovant rénover ver 2.33 2.5 0.1 0.07 par:pre; +rénovateur rénovateur nom m s 0.01 0.2 0.01 0.07 +rénovateurs rénovateur adj m p 0.02 0.07 0.01 0.07 +rénovation rénovation nom f s 1.11 3.65 0.51 3.58 +rénovations rénovation nom f p 1.11 3.65 0.6 0.07 +rénovatrice rénovateur adj f s 0.02 0.07 0.01 0 +rénove rénover ver 2.33 2.5 0.24 0.27 ind:pre:1s;ind:pre:3s; +rénover rénover ver 2.33 2.5 1.12 1.08 inf; +rénové rénover ver m s 2.33 2.5 0.53 0.54 par:pas; +rénovée rénover ver f s 2.33 2.5 0.31 0.2 par:pas; +rénovées rénover ver f p 2.33 2.5 0.02 0.14 par:pas; +rénovés rénover ver m p 2.33 2.5 0 0.14 par:pas; +réoccupait réoccuper ver 0.01 0.41 0 0.07 ind:imp:3s; +réoccuper réoccuper ver 0.01 0.41 0.01 0.27 inf; +réoccupons réoccuper ver 0.01 0.41 0 0.07 ind:pre:1p; +réopère réopérer ver 0.2 0.2 0.04 0 ind:pre:3s; +réopérer réopérer ver 0.2 0.2 0.16 0.2 inf; +réordonnant réordonner ver 0 0.2 0 0.07 par:pre; +réordonner réordonner ver 0 0.2 0 0.14 inf; +réorganisa réorganiser ver 1.29 1.42 0.01 0.07 ind:pas:3s; +réorganisait réorganiser ver 1.29 1.42 0.01 0.14 ind:imp:3s; +réorganisant réorganiser ver 1.29 1.42 0.01 0 par:pre; +réorganisation réorganisation nom f s 0.36 1.42 0.36 1.35 +réorganisations réorganisation nom f p 0.36 1.42 0 0.07 +réorganise réorganiser ver 1.29 1.42 0.42 0.2 ind:pre:1s;ind:pre:3s; +réorganiser réorganiser ver 1.29 1.42 0.7 0.68 inf; +réorganisez réorganiser ver 1.29 1.42 0.02 0 imp:pre:2p;ind:pre:2p; +réorganisé réorganiser ver m s 1.29 1.42 0.12 0.2 par:pas; +réorganisées réorganiser ver f p 1.29 1.42 0 0.07 par:pas; +réorganisés réorganiser ver m p 1.29 1.42 0 0.07 par:pas; +réorientation réorientation nom f s 0.08 0 0.08 0 +réorienter réorienter ver 0.09 0 0.07 0 inf; +réorienté réorienter ver m s 0.09 0 0.01 0 par:pas; +réouverture réouverture nom f s 0.48 0.61 0.48 0.54 +réouvertures réouverture nom f p 0.48 0.61 0 0.07 +répand répandre ver 20.39 44.32 4.14 4.73 ind:pre:3s; +répandaient répandre ver 20.39 44.32 0.15 3.38 ind:imp:3p; +répandais répandre ver 20.39 44.32 0.01 0.07 ind:imp:1s; +répandait répandre ver 20.39 44.32 0.13 8.04 ind:imp:3s; +répandant répandre ver 20.39 44.32 0.41 2.23 par:pre; +répande répandre ver 20.39 44.32 0.59 0.2 sub:pre:1s;sub:pre:3s; +répandent répandre ver 20.39 44.32 1.75 1.42 ind:pre:3p; +répandeur répandeur nom m s 0 0.07 0 0.07 +répandez répandre ver 20.39 44.32 0.23 0.2 imp:pre:2p;ind:pre:2p; +répandirent répandre ver 20.39 44.32 0.15 0.68 ind:pas:3p; +répandit répandre ver 20.39 44.32 0.54 4.32 ind:pas:3s; +répandons répandre ver 20.39 44.32 0.06 0 imp:pre:1p;ind:pre:1p; +répandra répandre ver 20.39 44.32 0.35 0 ind:fut:3s; +répandrai répandre ver 20.39 44.32 0.19 0.14 ind:fut:1s; +répandraient répandre ver 20.39 44.32 0.01 0.2 cnd:pre:3p; +répandrait répandre ver 20.39 44.32 0.04 0.2 cnd:pre:3s; +répandras répandre ver 20.39 44.32 0.14 0 ind:fut:2s; +répandre répandre ver 20.39 44.32 5.53 6.82 inf; +répandrez répandre ver 20.39 44.32 0.04 0 ind:fut:2p; +répandrons répandre ver 20.39 44.32 0.15 0 ind:fut:1p; +répandront répandre ver 20.39 44.32 0.07 0.07 ind:fut:3p; +répands répandre ver 20.39 44.32 1.24 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +répandu répandre ver m s 20.39 44.32 2.67 4.53 par:pas; +répandue répandre ver f s 20.39 44.32 1.38 3.38 par:pas; +répandues répandre ver f p 20.39 44.32 0.16 1.49 par:pas; +répandus répandre ver m p 20.39 44.32 0.14 1.76 par:pas; +répandît répandre ver 20.39 44.32 0.14 0.14 sub:imp:3s; +répara réparer ver 67.7 25.14 0.01 0.41 ind:pas:3s; +réparable réparable adj s 0.85 0.41 0.8 0.07 +réparables réparable adj f p 0.85 0.41 0.05 0.34 +réparaient réparer ver 67.7 25.14 0.08 0.41 ind:imp:3p; +réparais réparer ver 67.7 25.14 0.52 0.27 ind:imp:1s;ind:imp:2s; +réparait réparer ver 67.7 25.14 0.41 1.49 ind:imp:3s; +réparant réparer ver 67.7 25.14 0.14 0.54 par:pre; +réparateur réparateur nom m s 1.04 0.54 0.95 0.34 +réparateurs réparateur nom m p 1.04 0.54 0.06 0.2 +réparation réparation nom f s 8.35 7.97 5.07 4.8 +réparations réparation nom f p 8.35 7.97 3.28 3.18 +réparatrice réparateur adj f s 0.76 1.69 0.09 0.2 +réparatrices réparateur adj f p 0.76 1.69 0.02 0 +répare réparer ver 67.7 25.14 7.29 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réparent réparer ver 67.7 25.14 2.34 0.68 ind:pre:3p;sub:pre:3p; +réparer réparer ver 67.7 25.14 39.13 13.92 inf; +réparera réparer ver 67.7 25.14 0.64 0.07 ind:fut:3s; +réparerai réparer ver 67.7 25.14 1.26 0.14 ind:fut:1s; +répareraient réparer ver 67.7 25.14 0 0.07 cnd:pre:3p; +réparerait réparer ver 67.7 25.14 0.07 0.07 cnd:pre:3s; +répareras réparer ver 67.7 25.14 0.16 0 ind:fut:2s; +réparerez réparer ver 67.7 25.14 0.01 0 ind:fut:2p; +réparerons réparer ver 67.7 25.14 0.04 0.07 ind:fut:1p; +répareront réparer ver 67.7 25.14 0.02 0 ind:fut:3p; +réparez réparer ver 67.7 25.14 2.71 0 imp:pre:2p;ind:pre:2p; +répariez réparer ver 67.7 25.14 0.17 0 ind:imp:2p; +réparions réparer ver 67.7 25.14 0 0.07 ind:imp:1p; +réparons réparer ver 67.7 25.14 0.21 0.07 imp:pre:1p;ind:pre:1p; +réparti répartir ver m s 2.87 9.93 0.39 0.88 par:pas; +répartie répartie nom f s 0.88 0.14 0.79 0.07 +réparties répartie nom f p 0.88 0.14 0.09 0.07 +répartir répartir ver 2.87 9.93 1.23 1.82 inf; +répartirent répartir ver 2.87 9.93 0.01 0.07 ind:pas:3p; +répartiront répartir ver 2.87 9.93 0.02 0 ind:fut:3p; +répartis répartir ver m p 2.87 9.93 0.59 2.3 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +répartissaient répartir ver 2.87 9.93 0 0.54 ind:imp:3p; +répartissait répartir ver 2.87 9.93 0.01 0.41 ind:imp:3s; +répartissant répartir ver 2.87 9.93 0.04 0.27 par:pre; +répartissent répartir ver 2.87 9.93 0.01 0.41 ind:pre:3p; +répartissez répartir ver 2.87 9.93 0.1 0 imp:pre:2p; +répartissons répartir ver 2.87 9.93 0.01 0 imp:pre:1p; +répartit répartir ver 2.87 9.93 0.22 0.95 ind:pre:3s;ind:pas:3s; +répartiteur répartiteur nom m s 0.07 0 0.07 0 +répartition répartition nom f s 1.65 3.11 1.62 2.97 +répartitions répartition nom f p 1.65 3.11 0.03 0.14 +répartîmes répartir ver 2.87 9.93 0 0.07 ind:pas:1p; +réparèrent réparer ver 67.7 25.14 0 0.07 ind:pas:3p; +réparé réparer ver m s 67.7 25.14 9.35 2.97 par:pas; +réparée réparer ver f s 67.7 25.14 2.38 1.08 par:pas; +réparées réparer ver f p 67.7 25.14 0.42 0.88 par:pas; +réparés réparer ver m p 67.7 25.14 0.34 0.34 par:pas; +répercussion répercussion nom f s 1.05 1.69 0.11 0.68 +répercussions répercussion nom f p 1.05 1.69 0.94 1.01 +répercuta répercuter ver 0.35 7.91 0 0.34 ind:pas:3s; +répercutaient répercuter ver 0.35 7.91 0 0.74 ind:imp:3p; +répercutait répercuter ver 0.35 7.91 0.01 1.08 ind:imp:3s; +répercutant répercuter ver 0.35 7.91 0 0.74 par:pre; +répercute répercuter ver 0.35 7.91 0.25 1.22 ind:pre:3s; +répercutent répercuter ver 0.35 7.91 0.03 0.47 ind:pre:3p; +répercuter répercuter ver 0.35 7.91 0.04 0.74 inf; +répercuterait répercuter ver 0.35 7.91 0 0.14 cnd:pre:3s; +répercuteront répercuter ver 0.35 7.91 0.01 0 ind:fut:3p; +répercutons répercuter ver 0.35 7.91 0 0.07 ind:pre:1p; +répercutèrent répercuter ver 0.35 7.91 0 0.07 ind:pas:3p; +répercuté répercuter ver m s 0.35 7.91 0 1.42 par:pas; +répercutée répercuter ver f s 0.35 7.91 0 0.41 par:pas; +répercutées répercuter ver f p 0.35 7.91 0 0.2 par:pas; +répercutés répercuter ver m p 0.35 7.91 0 0.27 par:pas; +répertoire répertoire nom m s 2.17 5.68 2.04 5.34 +répertoires répertoire nom m p 2.17 5.68 0.14 0.34 +répertoriant répertorier ver 1.73 2.43 0.03 0 par:pre; +répertorier répertorier ver 1.73 2.43 0.14 0.34 inf; +répertorié répertorier ver m s 1.73 2.43 0.5 0.41 par:pas; +répertoriée répertorier ver f s 1.73 2.43 0.21 0.41 par:pas; +répertoriées répertorier ver f p 1.73 2.43 0.52 0.41 par:pas; +répertoriés répertorier ver m p 1.73 2.43 0.34 0.88 par:pas; +répit répit nom m s 3.87 11.76 3.86 11.01 +répits répit nom m p 3.87 11.76 0.01 0.74 +réplication réplication nom f s 0.23 0 0.23 0 +répliqua répliquer ver 1.53 17.91 0.19 7.5 ind:pas:3s; +répliquai répliquer ver 1.53 17.91 0 1.42 ind:pas:1s; +répliquaient répliquer ver 1.53 17.91 0 0.41 ind:imp:3p; +répliquais répliquer ver 1.53 17.91 0.01 0.14 ind:imp:1s;ind:imp:2s; +répliquait répliquer ver 1.53 17.91 0.02 1.62 ind:imp:3s; +répliquant répliquer ver 1.53 17.91 0.04 0.07 par:pre; +réplique réplique nom f s 8.94 16.82 6.16 12.77 +répliquent répliquer ver 1.53 17.91 0.07 0.07 ind:pre:3p; +répliquer répliquer ver 1.53 17.91 0.42 1.15 inf; +répliquera répliquer ver 1.53 17.91 0.01 0.07 ind:fut:3s; +répliquerons répliquer ver 1.53 17.91 0.02 0 ind:fut:1p; +répliqueront répliquer ver 1.53 17.91 0.01 0 ind:fut:3p; +répliques réplique nom f p 8.94 16.82 2.78 4.05 +répliquât répliquer ver 1.53 17.91 0 0.14 sub:imp:3s; +répliquèrent répliquer ver 1.53 17.91 0.01 0.07 ind:pas:3p; +répliqué répliquer ver m s 1.53 17.91 0.37 3.38 par:pas; +répond répondre ver 251.57 466.76 27.42 51.55 ind:pre:3s; +répondaient répondre ver 251.57 466.76 0.65 5.95 ind:imp:3p; +répondais répondre ver 251.57 466.76 1.93 7.7 ind:imp:1s;ind:imp:2s; +répondait répondre ver 251.57 466.76 4.18 45.14 ind:imp:3s; +répondant répondre ver 251.57 466.76 0.99 9.59 par:pre; +répondants répondant nom m p 0.25 1.82 0.03 0.27 +réponde répondre ver 251.57 466.76 2.96 4.39 sub:pre:1s;sub:pre:3s; +répondent répondre ver 251.57 466.76 5.96 6.82 ind:pre:3p; +répondes répondre ver 251.57 466.76 1.2 0.34 sub:pre:2s; +répondeur répondeur nom m s 7.95 1.55 7.76 1.49 +répondeurs répondeur nom m p 7.95 1.55 0.18 0.07 +répondeuse répondeur adj f s 0.2 0.07 0.01 0 +répondez répondre ver 251.57 466.76 31.77 3.65 imp:pre:2p;ind:pre:2p; +répondiez répondre ver 251.57 466.76 0.93 0.41 ind:imp:2p; +répondions répondre ver 251.57 466.76 0.04 0.41 ind:imp:1p;sub:pre:1p; +répondirent répondre ver 251.57 466.76 0.16 2.91 ind:pas:3p; +répondis répondre ver 251.57 466.76 0.73 20.74 ind:pas:1s; +répondit répondre ver 251.57 466.76 2.94 107.3 ind:pas:3s; +répondons répondre ver 251.57 466.76 0.51 0.95 imp:pre:1p;ind:pre:1p; +répondra répondre ver 251.57 466.76 3.42 2.23 ind:fut:3s; +répondrai répondre ver 251.57 466.76 4.3 2.23 ind:fut:1s; +répondraient répondre ver 251.57 466.76 0.28 0.27 cnd:pre:3p; +répondrais répondre ver 251.57 466.76 1.06 0.95 cnd:pre:1s;cnd:pre:2s; +répondrait répondre ver 251.57 466.76 0.77 3.04 cnd:pre:3s; +répondras répondre ver 251.57 466.76 0.67 0.27 ind:fut:2s; +répondre répondre ver 251.57 466.76 57.76 98.58 inf;; +répondrez répondre ver 251.57 466.76 0.94 0.61 ind:fut:2p; +répondriez répondre ver 251.57 466.76 0.24 0.34 cnd:pre:2p; +répondrons répondre ver 251.57 466.76 0.77 0.07 ind:fut:1p; +répondront répondre ver 251.57 466.76 0.37 0.27 ind:fut:3p; +réponds répondre ver 251.57 466.76 63.59 28.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +répondu répondre ver m s 251.57 466.76 34.9 60.14 par:pas; +répondues répondre ver f p 251.57 466.76 0.02 0.07 par:pas; +répondîmes répondre ver 251.57 466.76 0.1 0.07 ind:pas:1p; +répondît répondre ver 251.57 466.76 0 1.15 sub:imp:3s; +répons répons nom m 0.04 0.68 0.04 0.68 +réponse réponse nom f s 97.06 99.93 79.19 83.72 +réponses réponse nom f p 97.06 99.93 17.87 16.22 +répresseur répresseur nom m s 0.01 0 0.01 0 +répressif répressif adj m s 0.6 0.47 0.32 0.2 +répression répression nom f s 2.49 4.05 2.49 3.72 +répressions répression nom f p 2.49 4.05 0 0.34 +répressive répressif adj f s 0.6 0.47 0.24 0.27 +répressives répressif adj f p 0.6 0.47 0.05 0 +réprima réprimer ver 2.72 11.08 0 1.69 ind:pas:3s; +réprimai réprimer ver 2.72 11.08 0 0.07 ind:pas:1s; +réprimaient réprimer ver 2.72 11.08 0.01 0.07 ind:imp:3p; +réprimais réprimer ver 2.72 11.08 0 0.14 ind:imp:1s; +réprimait réprimer ver 2.72 11.08 0.01 0.2 ind:imp:3s; +réprimanda réprimander ver 1.08 1.49 0 0.14 ind:pas:3s; +réprimandait réprimander ver 1.08 1.49 0 0.14 ind:imp:3s; +réprimande réprimande nom f s 0.34 1.96 0.23 0.81 +réprimander réprimander ver 1.08 1.49 0.55 0.68 inf; +réprimandes réprimande nom f p 0.34 1.96 0.11 1.15 +réprimandiez réprimander ver 1.08 1.49 0.01 0 ind:imp:2p; +réprimandé réprimander ver m s 1.08 1.49 0.35 0.14 par:pas; +réprimandée réprimander ver f s 1.08 1.49 0.02 0.07 par:pas; +réprimant réprimer ver 2.72 11.08 0.03 0.88 par:pre; +réprime réprimer ver 2.72 11.08 0.39 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réprimer réprimer ver 2.72 11.08 0.94 4.26 inf; +réprimerai réprimer ver 2.72 11.08 0.01 0 ind:fut:1s; +réprimerait réprimer ver 2.72 11.08 0 0.07 cnd:pre:3s; +réprimerez réprimer ver 2.72 11.08 0.01 0 ind:fut:2p; +réprimâmes réprimer ver 2.72 11.08 0 0.14 ind:pas:1p; +réprimèrent réprimer ver 2.72 11.08 0 0.14 ind:pas:3p; +réprimé réprimer ver m s 2.72 11.08 0.28 1.35 par:pas; +réprimée réprimer ver f s 2.72 11.08 0.47 0.47 par:pas; +réprimées réprimer ver f p 2.72 11.08 0.38 0.2 par:pas; +réprimés réprimer ver m p 2.72 11.08 0.19 0.41 inf;par:pas; +réprobateur réprobateur adj m s 0.01 2.43 0 1.82 +réprobateurs réprobateur adj m p 0.01 2.43 0 0.27 +réprobation réprobation nom f s 0.04 5.27 0.04 5.27 +réprobatrice réprobateur adj f s 0.01 2.43 0.01 0.34 +réprouvais réprouver ver 1.25 2.64 0 0.07 ind:imp:1s; +réprouvait réprouver ver 1.25 2.64 0.12 0.74 ind:imp:3s; +réprouvant réprouver ver 1.25 2.64 0 0.14 par:pre; +réprouve réprouver ver 1.25 2.64 0.49 0.54 ind:pre:1s;ind:pre:3s; +réprouvent réprouver ver 1.25 2.64 0.23 0.07 ind:pre:3p; +réprouver réprouver ver 1.25 2.64 0.05 0.27 inf; +réprouverait réprouver ver 1.25 2.64 0 0.07 cnd:pre:3s; +réprouveront réprouver ver 1.25 2.64 0.01 0 ind:fut:3p; +réprouves réprouver ver 1.25 2.64 0.01 0.2 ind:pre:2s; +réprouvez réprouver ver 1.25 2.64 0.19 0.07 imp:pre:2p;ind:pre:2p; +réprouvons réprouver ver 1.25 2.64 0.02 0 ind:pre:1p; +réprouvât réprouver ver 1.25 2.64 0 0.14 sub:imp:3s; +réprouvé réprouvé nom m s 0 1.42 0 0.41 +réprouvées réprouver ver f p 1.25 2.64 0.14 0.07 par:pas; +réprouvés réprouvé nom m p 0 1.42 0 0.95 +répréhensible répréhensible adj s 0.69 1.55 0.65 1.22 +répréhensibles répréhensible adj p 0.69 1.55 0.04 0.34 +républicain républicain adj m s 4.14 8.85 1.92 2.84 +républicaine républicain adj f s 4.14 8.85 1.22 3.18 +républicaines républicain adj f p 4.14 8.85 0.09 1.42 +républicains républicain nom m p 4.19 3.38 3.67 2.77 +république république nom f s 3.69 21.96 3.44 20.41 +républiques république nom f p 3.69 21.96 0.25 1.55 +répudiant répudier ver 1.33 1.82 0 0.07 par:pre; +répudiation répudiation nom f s 0.02 0.34 0.02 0.34 +répudie répudier ver 1.33 1.82 0.33 0.34 ind:pre:1s;ind:pre:3s; +répudier répudier ver 1.33 1.82 0.05 0.47 inf; +répudiera répudier ver 1.33 1.82 0.14 0 ind:fut:3s; +répudierai répudier ver 1.33 1.82 0.14 0 ind:fut:1s; +répudies répudier ver 1.33 1.82 0 0.07 ind:pre:2s; +répudié répudier ver m s 1.33 1.82 0.14 0.27 par:pas; +répudiée répudier ver f s 1.33 1.82 0.54 0.47 par:pas; +répudiées répudier ver f p 1.33 1.82 0 0.07 par:pas; +répudiés répudier ver m p 1.33 1.82 0 0.07 par:pas; +répugna répugner ver 4.55 10.34 0 0.07 ind:pas:3s; +répugnai répugner ver 4.55 10.34 0 0.07 ind:pas:1s; +répugnaient répugner ver 4.55 10.34 0.01 0.88 ind:imp:3p; +répugnais répugner ver 4.55 10.34 0.1 0.74 ind:imp:1s; +répugnait répugner ver 4.55 10.34 0.24 3.51 ind:imp:3s; +répugnance répugnance nom f s 0.56 7.91 0.56 6.96 +répugnances répugnance nom f p 0.56 7.91 0 0.95 +répugnant répugnant adj m s 11.59 8.58 7.47 3.04 +répugnante répugnant adj f s 11.59 8.58 2.46 3.31 +répugnantes répugnant adj f p 11.59 8.58 0.57 1.35 +répugnants répugnant adj m p 11.59 8.58 1.09 0.88 +répugne répugner ver 4.55 10.34 2.59 2.7 ind:pre:1s;ind:pre:3s; +répugnent répugner ver 4.55 10.34 0.3 0.34 ind:pre:3p; +répugner répugner ver 4.55 10.34 0.01 0.2 inf; +répugnerait répugner ver 4.55 10.34 0.01 0.07 cnd:pre:3s; +répugneront répugner ver 4.55 10.34 0 0.07 ind:fut:3p; +répugnes répugner ver 4.55 10.34 0.22 0 ind:pre:2s; +répugnez répugner ver 4.55 10.34 0.32 0.07 imp:pre:2p;ind:pre:2p; +répugniez répugner ver 4.55 10.34 0.02 0.07 ind:imp:2p; +répugnons répugner ver 4.55 10.34 0.1 0.07 ind:pre:1p; +répugnât répugner ver 4.55 10.34 0 0.27 sub:imp:3s; +répugné répugner ver m s 4.55 10.34 0.01 0.47 par:pas; +répugnée répugner ver f s 4.55 10.34 0.01 0.07 par:pas; +répulsif répulsif adj m s 0.08 0 0.03 0 +répulsion répulsion nom f s 0.56 5.27 0.56 4.66 +répulsions répulsion nom f p 0.56 5.27 0 0.61 +répulsive répulsif adj f s 0.08 0 0.04 0 +réputaient réputer ver 2.1 3.65 0 0.07 ind:imp:3p; +réputait réputer ver 2.1 3.65 0 0.14 ind:imp:3s; +réputation réputation nom f s 21.4 22.5 21.14 22.16 +réputations réputation nom f p 21.4 22.5 0.26 0.34 +répute réputer ver 2.1 3.65 0 0.07 ind:pre:3s; +réputent réputer ver 2.1 3.65 0 0.14 ind:pre:3p; +réputer réputer ver 2.1 3.65 0 0.14 inf; +réputé réputer ver m s 2.1 3.65 1.21 1.42 par:pas; +réputée réputer ver f s 2.1 3.65 0.54 0.95 par:pas; +réputées réputer ver f p 2.1 3.65 0.08 0.2 par:pas; +réputés réputer ver m p 2.1 3.65 0.27 0.54 par:pas; +répète répéter ver 98.31 200.14 45.14 37.3 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +répètent répéter ver 98.31 200.14 1.58 3.51 ind:pre:3p; +répètes répéter ver 98.31 200.14 2.91 0.81 ind:pre:2s;sub:pre:2s; +répéta répéter ver 98.31 200.14 0.15 41.62 ind:pas:3s; +répétai répéter ver 98.31 200.14 0.02 2.91 ind:pas:1s; +répétaient répéter ver 98.31 200.14 0.47 4.46 ind:imp:3p; +répétais répéter ver 98.31 200.14 1.02 4.12 ind:imp:1s;ind:imp:2s; +répétait répéter ver 98.31 200.14 3.01 33.18 ind:imp:3s; +répétant répéter ver 98.31 200.14 0.85 16.55 par:pre; +répéter répéter ver 98.31 200.14 22.22 30.88 inf;;inf;;inf;; +répétera répéter ver 98.31 200.14 0.59 0.74 ind:fut:3s; +répéterai répéter ver 98.31 200.14 2.63 0.95 ind:fut:1s; +répéteraient répéter ver 98.31 200.14 0 0.34 cnd:pre:3p; +répéterais répéter ver 98.31 200.14 0.16 0.34 cnd:pre:1s;cnd:pre:2s; +répéterait répéter ver 98.31 200.14 0.02 0.34 cnd:pre:3s; +répéteras répéter ver 98.31 200.14 0.36 0.2 ind:fut:2s; +répéterez répéter ver 98.31 200.14 0.11 0.2 ind:fut:2p; +répéteriez répéter ver 98.31 200.14 0.03 0 cnd:pre:2p; +répétez répéter ver 98.31 200.14 7.95 1.01 imp:pre:2p;ind:pre:2p; +répétiez répéter ver 98.31 200.14 0.67 0.2 ind:imp:2p; +répétions répéter ver 98.31 200.14 0.16 0.81 ind:imp:1p; +répétiteur répétiteur nom m s 0.07 1.15 0.05 0.88 +répétiteurs répétiteur nom m p 0.07 1.15 0 0.14 +répétitif répétitif adj m s 0.9 0.88 0.52 0.27 +répétitifs répétitif adj m p 0.9 0.88 0.03 0.14 +répétition répétition nom f s 15.06 12.97 11.31 9.8 +répétitions répétition nom f p 15.06 12.97 3.75 3.18 +répétitive répétitif adj f s 0.9 0.88 0.27 0.14 +répétitives répétitif adj f p 0.9 0.88 0.08 0.34 +répétitrice répétiteur nom f s 0.07 1.15 0.03 0.14 +répétons répéter ver 98.31 200.14 1.78 0.34 imp:pre:1p;ind:pre:1p; +répétât répéter ver 98.31 200.14 0 0.27 sub:imp:3s; +répétèrent répéter ver 98.31 200.14 0 0.81 ind:pas:3p; +répété répéter ver m s 98.31 200.14 5.35 13.45 par:pas; +répétée répéter ver f s 98.31 200.14 0.44 1.62 par:pas; +répétées répéter ver f p 98.31 200.14 0.33 1.55 par:pas; +répétés répéter ver m p 98.31 200.14 0.36 1.62 par:pas; +réquisition réquisition nom f s 0.52 2.77 0.48 1.82 +réquisitionnais réquisitionner ver 2.12 4.59 0 0.07 ind:imp:1s; +réquisitionnait réquisitionner ver 2.12 4.59 0 0.34 ind:imp:3s; +réquisitionnant réquisitionner ver 2.12 4.59 0 0.27 par:pre; +réquisitionne réquisitionner ver 2.12 4.59 0.38 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réquisitionner réquisitionner ver 2.12 4.59 0.53 0.68 inf; +réquisitionnez réquisitionner ver 2.12 4.59 0.17 0.07 imp:pre:2p; +réquisitionnons réquisitionner ver 2.12 4.59 0.03 0 imp:pre:1p;ind:pre:1p; +réquisitionné réquisitionner ver m s 2.12 4.59 0.8 1.42 par:pas; +réquisitionnée réquisitionner ver f s 2.12 4.59 0.04 0.34 par:pas; +réquisitionnées réquisitionner ver f p 2.12 4.59 0.01 0.61 par:pas; +réquisitionnés réquisitionner ver m p 2.12 4.59 0.16 0.61 par:pas; +réquisitions réquisition nom f p 0.52 2.77 0.04 0.95 +réquisitoire réquisitoire nom m s 0.4 2.5 0.39 2.03 +réquisitoires réquisitoire nom m p 0.4 2.5 0.01 0.47 +réseau réseau nom m s 14.41 18.92 13.23 14.66 +réseaux réseau nom m p 14.41 18.92 1.18 4.26 +résection résection nom f s 0.18 0.14 0.18 0.14 +réserva réserver ver 34.31 47.57 0.01 0.88 ind:pas:3s; +réservai réserver ver 34.31 47.57 0 0.14 ind:pas:1s; +réservaient réserver ver 34.31 47.57 0.04 1.42 ind:imp:3p; +réservais réserver ver 34.31 47.57 0.32 0.61 ind:imp:1s;ind:imp:2s; +réservait réserver ver 34.31 47.57 0.37 5.95 ind:imp:3s; +réservant réserver ver 34.31 47.57 0.01 2.03 par:pre; +réservataire réservataire adj s 0 0.07 0 0.07 +réservation réservation nom f s 4.99 0.41 3.69 0.27 +réservations réservation nom f p 4.99 0.41 1.29 0.14 +réserve réserve nom f s 21.11 51.55 14.47 38.99 +réservent réserver ver 34.31 47.57 0.32 0.95 ind:pre:3p; +réserver réserver ver 34.31 47.57 4.4 4.26 inf; +réservera réserver ver 34.31 47.57 0.07 0.07 ind:fut:3s; +réserverai réserver ver 34.31 47.57 0.12 0.07 ind:fut:1s; +réserverait réserver ver 34.31 47.57 0.02 0.2 cnd:pre:3s; +réserveriez réserver ver 34.31 47.57 0.01 0 cnd:pre:2p; +réserveront réserver ver 34.31 47.57 0 0.07 ind:fut:3p; +réserves réserve nom f p 21.11 51.55 6.64 12.57 +réservez réserver ver 34.31 47.57 1.05 0.2 imp:pre:2p;ind:pre:2p; +réserviez réserver ver 34.31 47.57 0.05 0 ind:imp:2p; +réservions réserver ver 34.31 47.57 0 0.27 ind:imp:1p; +réserviste réserviste nom s 0.48 1.42 0.16 0.54 +réservistes réserviste nom p 0.48 1.42 0.33 0.88 +réservoir réservoir nom m s 8.53 5.95 6.83 4.59 +réservoirs réservoir nom m p 8.53 5.95 1.7 1.35 +réservons réserver ver 34.31 47.57 0.47 0.34 imp:pre:1p;ind:pre:1p; +réservât réserver ver 34.31 47.57 0 0.07 sub:imp:3s; +réservèrent réserver ver 34.31 47.57 0 0.07 ind:pas:3p; +réservé réserver ver m s 34.31 47.57 14.65 11.55 par:pas; +réservée réserver ver f s 34.31 47.57 2.69 6.96 par:pas; +réservées réserver ver f p 34.31 47.57 0.85 2.77 par:pas; +réservés réserver ver m p 34.31 47.57 0.95 3.45 par:pas; +résidaient résider ver 4.95 6.82 0.04 0.41 ind:imp:3p; +résidais résider ver 4.95 6.82 0.06 0.07 ind:imp:1s;ind:imp:2s; +résidait résider ver 4.95 6.82 0.29 1.96 ind:imp:3s; +résidant résider ver 4.95 6.82 0.15 0.95 par:pre; +réside résider ver 4.95 6.82 3.51 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résidence résidence nom f s 8.04 10.95 7.56 8.85 +résidences résidence nom f p 8.04 10.95 0.48 2.09 +résident résident nom m s 1.66 1.49 0.48 0.54 +résidente résident nom f s 1.66 1.49 0.11 0 +résidentiel résidentiel adj m s 1.91 1.35 0.7 0.61 +résidentielle résidentiel adj f s 1.91 1.35 0.33 0.34 +résidentielles résidentiel adj f p 1.91 1.35 0.69 0.2 +résidentiels résidentiel adj m p 1.91 1.35 0.19 0.2 +résidents résident nom m p 1.66 1.49 1.08 0.95 +résider résider ver 4.95 6.82 0.35 1.08 inf; +résidera résider ver 4.95 6.82 0.02 0 ind:fut:3s; +résiderez résider ver 4.95 6.82 0.01 0 ind:fut:2p; +résides résider ver 4.95 6.82 0.05 0 ind:pre:2s; +résidez résider ver 4.95 6.82 0.11 0 ind:pre:2p; +résidons résider ver 4.95 6.82 0 0.07 ind:pre:1p; +résidu résidu nom m s 2.72 2.7 0.89 1.76 +résiduel résiduel adj m s 0.55 0.27 0.11 0.07 +résiduelle résiduel adj f s 0.55 0.27 0.26 0.14 +résiduelles résiduel adj f p 0.55 0.27 0.07 0 +résiduels résiduel adj m p 0.55 0.27 0.12 0.07 +résidus résidu nom m p 2.72 2.7 1.83 0.95 +résidé résider ver m s 4.95 6.82 0.04 0.2 par:pas; +résigna résigner ver 3.84 20.34 0 1.28 ind:pas:3s; +résignai résigner ver 3.84 20.34 0 0.81 ind:pas:1s; +résignaient résigner ver 3.84 20.34 0 0.41 ind:imp:3p; +résignais résigner ver 3.84 20.34 0 0.74 ind:imp:1s; +résignait résigner ver 3.84 20.34 0.01 1.76 ind:imp:3s; +résignant résigner ver 3.84 20.34 0 0.41 par:pre; +résignassent résigner ver 3.84 20.34 0 0.07 sub:imp:3p; +résignation résignation nom f s 0.98 9.93 0.98 9.86 +résignations résignation nom f p 0.98 9.93 0 0.07 +résigne résigner ver 3.84 20.34 1.07 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résignent résigner ver 3.84 20.34 0.03 0.27 ind:pre:3p; +résigner résigner ver 3.84 20.34 1.5 5.68 inf; +résignera résigner ver 3.84 20.34 0 0.07 ind:fut:3s; +résignerais résigner ver 3.84 20.34 0 0.07 cnd:pre:1s; +résignerait résigner ver 3.84 20.34 0 0.2 cnd:pre:3s; +résigneront résigner ver 3.84 20.34 0.01 0 ind:fut:3p; +résignez résigner ver 3.84 20.34 0.22 0.07 imp:pre:2p;ind:pre:2p; +résignions résigner ver 3.84 20.34 0 0.14 ind:imp:1p; +résignâmes résigner ver 3.84 20.34 0 0.14 ind:pas:1p; +résignât résigner ver 3.84 20.34 0 0.2 sub:imp:3s; +résignèrent résigner ver 3.84 20.34 0 0.14 ind:pas:3p; +résigné résigner ver m s 3.84 20.34 0.67 3.31 par:pas; +résignée résigner ver f s 3.84 20.34 0.16 1.89 par:pas; +résignées résigner ver f p 3.84 20.34 0.01 0.34 par:pas; +résignés résigner ver m p 3.84 20.34 0.15 0.74 par:pas; +résilia résilier ver 0.72 0.27 0 0.07 ind:pas:3s; +résiliable résiliable adj s 0.01 0.07 0.01 0.07 +résiliation résiliation nom f s 0.07 0 0.07 0 +résilie résilier ver 0.72 0.27 0.06 0 ind:pre:1s;ind:pre:3s; +résilience résilience nom f s 0.02 0 0.02 0 +résilier résilier ver 0.72 0.27 0.2 0.07 inf; +résilierait résilier ver 0.72 0.27 0.01 0 cnd:pre:3s; +résilié résilier ver m s 0.72 0.27 0.4 0.07 par:pas; +résiliée résilier ver f s 0.72 0.27 0.04 0 par:pas; +résiliées résilier ver f p 0.72 0.27 0.01 0.07 par:pas; +résille résille nom f s 0.36 1.96 0.27 1.89 +résilles résille nom f p 0.36 1.96 0.09 0.07 +résine résine nom f s 0.84 5.54 0.83 5.2 +résines résine nom f p 0.84 5.54 0.01 0.34 +résineuse résineux adj f s 0.13 1.01 0.01 0.61 +résineuses résineux adj f p 0.13 1.01 0 0.27 +résineux résineux adj m s 0.13 1.01 0.11 0.14 +résiné résiné nom m s 0 2.43 0 2.43 +résinée résiner ver f s 0 0.07 0 0.07 par:pas; +résipiscence résipiscence nom f s 0 0.47 0 0.47 +résista résister ver 38.91 52.16 0.17 2.16 ind:pas:3s; +résistai résister ver 38.91 52.16 0 0.47 ind:pas:1s; +résistaient résister ver 38.91 52.16 0.07 1.15 ind:imp:3p; +résistais résister ver 38.91 52.16 0.23 0.2 ind:imp:1s;ind:imp:2s; +résistait résister ver 38.91 52.16 0.38 5.68 ind:imp:3s; +résistance résistance nom f s 13.23 56.49 12.99 54.32 +résistances résistance nom f p 13.23 56.49 0.23 2.16 +résistant résistant adj m s 3.63 3.58 1.77 1.15 +résistante résistant adj f s 3.63 3.58 0.78 0.81 +résistantes résistant adj f p 3.63 3.58 0.42 0.2 +résistants résistant nom m p 1.38 6.15 0.86 4.59 +résiste résister ver 38.91 52.16 8.18 9.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résistent résister ver 38.91 52.16 1.35 1.89 ind:pre:3p;sub:pre:3p; +résister résister ver 38.91 52.16 17.54 19.93 inf; +résistera résister ver 38.91 52.16 1.93 0.54 ind:fut:3s; +résisterai résister ver 38.91 52.16 0.28 0.47 ind:fut:1s; +résisteraient résister ver 38.91 52.16 0.18 0.61 cnd:pre:3p; +résisterais résister ver 38.91 52.16 0.08 0.14 cnd:pre:1s;cnd:pre:2s; +résisterait résister ver 38.91 52.16 0.23 1.22 cnd:pre:3s; +résisteras résister ver 38.91 52.16 0.05 0 ind:fut:2s; +résisterez résister ver 38.91 52.16 0.06 0 ind:fut:2p; +résisteriez résister ver 38.91 52.16 0.04 0 cnd:pre:2p; +résisterions résister ver 38.91 52.16 0.01 0 cnd:pre:1p; +résisterons résister ver 38.91 52.16 0.16 0 ind:fut:1p; +résisteront résister ver 38.91 52.16 0.22 0.2 ind:fut:3p; +résistes résister ver 38.91 52.16 0.83 0.07 ind:pre:2s;sub:pre:2s; +résistez résister ver 38.91 52.16 1.43 0.2 imp:pre:2p;ind:pre:2p; +résistible résistible adj s 0.01 0 0.01 0 +résistiez résister ver 38.91 52.16 0 0.07 ind:imp:2p; +résistions résister ver 38.91 52.16 0.02 0.07 ind:imp:1p; +résistons résister ver 38.91 52.16 0.04 0.07 ind:pre:1p; +résistât résister ver 38.91 52.16 0 0.41 sub:imp:3s; +résistèrent résister ver 38.91 52.16 0.01 0.47 ind:pas:3p; +résisté résister ver m s 38.91 52.16 5.16 5.74 par:pas; +résolu résoudre ver m s 40.95 36.96 9.28 11.82 par:pas; +résoluble résoluble adj m s 0.03 0 0.03 0 +résolue résolu adj f s 6.05 11.28 2.63 4.59 +résolues résolu adj f p 6.05 11.28 0.9 0.61 +résolument résolument adv 0.39 5.34 0.39 5.34 +résolurent résoudre ver 40.95 36.96 0 0.07 ind:pas:3p; +résolus résoudre ver m p 40.95 36.96 1.23 3.04 ind:pas:1s;ind:pas:2s;par:pas; +résolut résoudre ver 40.95 36.96 0.13 3.11 ind:pas:3s; +résolution résolution nom f s 4.51 14.39 3.24 10.47 +résolutions résolution nom f p 4.51 14.39 1.27 3.92 +résolvaient résoudre ver 40.95 36.96 0.03 0.34 ind:imp:3p; +résolvais résoudre ver 40.95 36.96 0.02 0.07 ind:imp:1s;ind:imp:2s; +résolvait résoudre ver 40.95 36.96 0.13 1.15 ind:imp:3s; +résolvant résoudre ver 40.95 36.96 0.01 0.2 par:pre; +résolve résoudre ver 40.95 36.96 0.58 0.14 sub:pre:1s;sub:pre:3s; +résolvent résoudre ver 40.95 36.96 0.55 0.27 ind:pre:3p; +résolves résoudre ver 40.95 36.96 0.05 0 sub:pre:2s; +résolvez résoudre ver 40.95 36.96 0.36 0 imp:pre:2p;ind:pre:2p; +résolviez résoudre ver 40.95 36.96 0.04 0.07 ind:imp:2p; +résolvons résoudre ver 40.95 36.96 0.08 0 imp:pre:1p;ind:pre:1p; +résonance résonance nom f s 0.71 5.27 0.69 3.72 +résonances résonance nom f p 0.71 5.27 0.03 1.55 +résonateur résonateur nom m s 0.13 0 0.13 0 +résonna résonner ver 5.07 31.96 0.24 4.26 ind:pas:3s; +résonnaient résonner ver 5.07 31.96 0.16 4.53 ind:imp:3p; +résonnait résonner ver 5.07 31.96 0.64 7.09 ind:imp:3s; +résonnant résonner ver 5.07 31.96 0.14 0.74 par:pre; +résonnante résonnant adj f s 0.12 0.47 0.03 0.07 +résonnants résonnant adj m p 0.12 0.47 0 0.07 +résonne résonner ver 5.07 31.96 1.38 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résonnent résonner ver 5.07 31.96 1.11 2.7 ind:pre:3p; +résonner résonner ver 5.07 31.96 0.81 5.47 inf; +résonnera résonner ver 5.07 31.96 0.17 0.07 ind:fut:3s; +résonneraient résonner ver 5.07 31.96 0.02 0.07 cnd:pre:3p; +résonneront résonner ver 5.07 31.96 0.11 0.07 ind:fut:3p; +résonnez résonner ver 5.07 31.96 0.02 0.2 imp:pre:2p; +résonnèrent résonner ver 5.07 31.96 0.01 1.28 ind:pas:3p; +résonné résonner ver m s 5.07 31.96 0.27 0.88 par:pas; +résorba résorber ver 0.26 2.97 0 0.07 ind:pas:3s; +résorbable résorbable adj s 0.01 0 0.01 0 +résorbaient résorber ver 0.26 2.97 0 0.2 ind:imp:3p; +résorbait résorber ver 0.26 2.97 0 0.14 ind:imp:3s; +résorbant résorber ver 0.26 2.97 0 0.07 par:pre; +résorbe résorber ver 0.26 2.97 0.04 0.74 ind:pre:3s; +résorbent résorber ver 0.26 2.97 0 0.14 ind:pre:3p; +résorber résorber ver 0.26 2.97 0.06 0.54 inf; +résorberait résorber ver 0.26 2.97 0 0.07 cnd:pre:3s; +résorberons résorber ver 0.26 2.97 0.01 0 ind:fut:1p; +résorbé résorber ver m s 0.26 2.97 0.14 0.54 par:pas; +résorbée résorber ver f s 0.26 2.97 0.01 0.34 par:pas; +résorbés résorber ver m p 0.26 2.97 0 0.14 par:pas; +résorption résorption nom f s 0 0.2 0 0.14 +résorptions résorption nom f p 0 0.2 0 0.07 +résoudra résoudre ver 40.95 36.96 1.67 0.41 ind:fut:3s; +résoudrai résoudre ver 40.95 36.96 0.12 0 ind:fut:1s; +résoudraient résoudre ver 40.95 36.96 0 0.07 cnd:pre:3p; +résoudrais résoudre ver 40.95 36.96 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +résoudrait résoudre ver 40.95 36.96 0.32 0.41 cnd:pre:3s; +résoudras résoudre ver 40.95 36.96 0.05 0 ind:fut:2s; +résoudre résoudre ver 40.95 36.96 20.89 13.58 inf; +résoudrez résoudre ver 40.95 36.96 0.1 0 ind:fut:2p; +résoudrons résoudre ver 40.95 36.96 0.07 0 ind:fut:1p; +résoudront résoudre ver 40.95 36.96 0.47 0 ind:fut:3p; +résous résoudre ver 40.95 36.96 1.04 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +résout résoudre ver 40.95 36.96 3.38 1.82 ind:pre:3s; +résulta résulter ver 2.58 9.46 0.11 0.47 ind:pas:3s; +résultaient résulter ver 2.58 9.46 0 0.27 ind:imp:3p; +résultais résulter ver 2.58 9.46 0 0.07 ind:imp:1s; +résultait résulter ver 2.58 9.46 0.15 1.62 ind:imp:3s; +résultant résulter ver 2.58 9.46 0.42 0.74 par:pre; +résultante résultant adj f s 0.07 0.07 0.06 0 +résultantes résultante nom f p 0.01 0.54 0 0.14 +résultat résultat nom m s 59.47 38.38 25.15 27.43 +résultats résultat nom m p 59.47 38.38 34.31 10.95 +résulte résulter ver 2.58 9.46 1.19 3.38 imp:pre:2s;ind:pre:3s; +résultent résulter ver 2.58 9.46 0.23 0.54 ind:pre:3p; +résulter résulter ver 2.58 9.46 0.26 0.81 inf; +résulteraient résulter ver 2.58 9.46 0 0.34 cnd:pre:3p; +résulterait résulter ver 2.58 9.46 0.13 0.47 cnd:pre:3s; +résulteront résulter ver 2.58 9.46 0 0.07 ind:fut:3p; +résulté résulter ver m s 2.58 9.46 0.09 0.54 par:pas; +résultées résulter ver f p 2.58 9.46 0 0.14 par:pas; +résuma résumer ver 7.48 14.53 0.01 0.68 ind:pas:3s; +résumai résumer ver 7.48 14.53 0 0.07 ind:pas:1s; +résumaient résumer ver 7.48 14.53 0.04 0.61 ind:imp:3p; +résumais résumer ver 7.48 14.53 0 0.27 ind:imp:1s; +résumait résumer ver 7.48 14.53 0.26 2.03 ind:imp:3s; +résumant résumer ver 7.48 14.53 0 0.68 par:pre; +résume résumer ver 7.48 14.53 3.5 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résument résumer ver 7.48 14.53 0.18 0.68 ind:pre:3p; +résumer résumer ver 7.48 14.53 2.31 3.31 inf; +résumera résumer ver 7.48 14.53 0.04 0.14 ind:fut:3s; +résumerai résumer ver 7.48 14.53 0.02 0.27 ind:fut:1s; +résumerait résumer ver 7.48 14.53 0.04 0.07 cnd:pre:3s; +résumeriez résumer ver 7.48 14.53 0 0.07 cnd:pre:2p; +résumez résumer ver 7.48 14.53 0.08 0 imp:pre:2p;ind:pre:2p; +résumons résumer ver 7.48 14.53 0.38 0.54 imp:pre:1p;ind:pre:1p; +résumé résumé nom m s 3.95 3.72 3.86 3.24 +résumée résumer ver f s 7.48 14.53 0.07 0.61 par:pas; +résumées résumer ver f p 7.48 14.53 0.02 0.27 par:pas; +résumés résumé nom m p 3.95 3.72 0.09 0.47 +résurgence résurgence nom f s 0.46 1.08 0.46 0.88 +résurgences résurgence nom f p 0.46 1.08 0 0.2 +résurgente résurgent adj f s 0 0.07 0 0.07 +résurrection résurrection nom f s 4.29 8.11 4.15 7.5 +résurrections résurrection nom f p 4.29 8.11 0.14 0.61 +réséda réséda nom m s 0.1 0.41 0.1 0.34 +résédas réséda nom m p 0.1 0.41 0 0.07 +réséquer réséquer ver 0.01 0.07 0.01 0.07 inf; +rétabli rétablir ver m s 12.38 22.36 2.78 3.65 par:pas; +rétablie rétablir ver f s 12.38 22.36 1.55 1.42 par:pas; +rétablies rétablir ver f p 12.38 22.36 0.18 0.41 par:pas; +rétablir rétablir ver 12.38 22.36 5.19 11.15 inf; +rétablira rétablir ver 12.38 22.36 0.49 0.2 ind:fut:3s; +rétablirai rétablir ver 12.38 22.36 0.01 0.07 ind:fut:1s; +rétablirait rétablir ver 12.38 22.36 0.04 0.34 cnd:pre:3s; +rétabliras rétablir ver 12.38 22.36 0.15 0 ind:fut:2s; +rétablirent rétablir ver 12.38 22.36 0 0.07 ind:pas:3p; +rétablirez rétablir ver 12.38 22.36 0.02 0 ind:fut:2p; +rétablirons rétablir ver 12.38 22.36 0.06 0.07 ind:fut:1p; +rétabliront rétablir ver 12.38 22.36 0.01 0.07 ind:fut:3p; +rétablis rétablir ver m p 12.38 22.36 0.52 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rétablissaient rétablir ver 12.38 22.36 0 0.34 ind:imp:3p; +rétablissais rétablir ver 12.38 22.36 0 0.07 ind:imp:1s; +rétablissait rétablir ver 12.38 22.36 0.01 0.88 ind:imp:3s; +rétablissant rétablir ver 12.38 22.36 0.03 0.54 par:pre; +rétablisse rétablir ver 12.38 22.36 0.26 0.07 sub:pre:1s;sub:pre:3s; +rétablissement rétablissement nom m s 2.08 3.85 2.08 3.65 +rétablissements rétablissement nom m p 2.08 3.85 0 0.2 +rétablissent rétablir ver 12.38 22.36 0.06 0.14 ind:pre:3p; +rétablisses rétablir ver 12.38 22.36 0.01 0 sub:pre:2s; +rétablissez rétablir ver 12.38 22.36 0.26 0 imp:pre:2p;ind:pre:2p; +rétablissons rétablir ver 12.38 22.36 0.16 0.34 imp:pre:1p;ind:pre:1p; +rétablit rétablir ver 12.38 22.36 0.6 1.82 ind:pre:3s;ind:pas:3s; +rétamai rétamer ver 0.56 1.55 0 0.07 ind:pas:1s; +rétamait rétamer ver 0.56 1.55 0 0.07 ind:imp:3s; +rétame rétamer ver 0.56 1.55 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétamer rétamer ver 0.56 1.55 0.23 0.47 inf; +rétameras rétamer ver 0.56 1.55 0.01 0 ind:fut:2s; +rétameur rétameur nom m s 0.05 0.14 0.05 0.14 +rétamé rétamer ver m s 0.56 1.55 0.25 0.68 par:pas; +rétamées rétamer ver f p 0.56 1.55 0 0.07 par:pas; +rétamés rétamer ver m p 0.56 1.55 0.03 0.07 par:pas; +rétention rétention nom f s 0.48 0.47 0.48 0.47 +réticence réticence nom f s 1.1 7.64 0.69 3.24 +réticences réticence nom f p 1.1 7.64 0.41 4.39 +réticent réticent adj m s 1.49 3.92 0.9 1.62 +réticente réticent adj f s 1.49 3.92 0.17 1.35 +réticentes réticent adj f p 1.49 3.92 0.12 0.14 +réticents réticent adj m p 1.49 3.92 0.29 0.81 +réticulaire réticulaire adj m s 0.06 0 0.02 0 +réticulaires réticulaire adj p 0.06 0 0.03 0 +réticulation réticulation nom f s 0 0.07 0 0.07 +réticule réticule nom m s 0.02 0.81 0.02 0.81 +réticulum réticulum nom m s 0.04 0 0.04 0 +réticulé réticulé adj m s 0.04 0 0.01 0 +réticulée réticuler ver f s 0.03 0 0.03 0 par:pas; +réticulée réticulé adj f s 0.04 0 0.03 0 +rétif rétif adj m s 0.21 4.26 0.04 1.62 +rétifs rétif adj m p 0.21 4.26 0.14 0.41 +rétinal rétinal nom m s 0.01 0 0.01 0 +rétine rétine nom f s 0.8 2.97 0.69 2.36 +rétines rétine nom f p 0.8 2.97 0.11 0.61 +rétinien rétinien adj m s 0.26 0.14 0.1 0 +rétinienne rétinien adj f s 0.26 0.14 0.14 0.07 +rétiniennes rétinien adj f p 0.26 0.14 0.02 0.07 +rétinite rétinite nom f s 0.02 0.07 0.02 0.07 +rétinopathie rétinopathie nom f s 0.02 0 0.02 0 +rétive rétif adj f s 0.21 4.26 0.02 2.03 +rétives rétif adj f p 0.21 4.26 0.01 0.2 +rétorqua rétorquer ver 0.2 9.32 0.02 2.77 ind:pas:3s; +rétorquai rétorquer ver 0.2 9.32 0 0.81 ind:pas:1s; +rétorquais rétorquer ver 0.2 9.32 0 0.27 ind:imp:1s; +rétorquait rétorquer ver 0.2 9.32 0.01 1.35 ind:imp:3s; +rétorquant rétorquer ver 0.2 9.32 0 0.07 par:pre; +rétorque rétorquer ver 0.2 9.32 0.11 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétorquer rétorquer ver 0.2 9.32 0.01 0.74 inf; +rétorquera rétorquer ver 0.2 9.32 0.01 0.07 ind:fut:3s; +rétorquèrent rétorquer ver 0.2 9.32 0 0.07 ind:pas:3p; +rétorqué rétorquer ver m s 0.2 9.32 0.04 0.81 par:pas; +rétorsion rétorsion nom f s 0.03 0.07 0.03 0.07 +rétracta rétracter ver 1.71 5.14 0.01 0.34 ind:pas:3s; +rétractable rétractable adj s 0.07 0.07 0.07 0.07 +rétractais rétracter ver 1.71 5.14 0 0.07 ind:imp:1s; +rétractait rétracter ver 1.71 5.14 0.01 0.47 ind:imp:3s; +rétractant rétracter ver 1.71 5.14 0.01 0.47 par:pre; +rétractation rétractation nom f s 0.18 0.34 0.17 0.27 +rétractations rétractation nom f p 0.18 0.34 0.01 0.07 +rétracte rétracter ver 1.71 5.14 0.36 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétractent rétracter ver 1.71 5.14 0.04 0.14 ind:pre:3p; +rétracter rétracter ver 1.71 5.14 0.5 1.15 inf; +rétractera rétracter ver 1.71 5.14 0.04 0 ind:fut:3s; +rétracterait rétracter ver 1.71 5.14 0.1 0 cnd:pre:3s; +rétracteur rétracteur nom m s 0.08 0 0.07 0 +rétracteurs rétracteur nom m p 0.08 0 0.01 0 +rétractez rétracter ver 1.71 5.14 0.06 0.14 imp:pre:2p;ind:pre:2p; +rétractile rétractile adj f s 0.02 0.2 0.01 0.07 +rétractiles rétractile adj f p 0.02 0.2 0.01 0.14 +rétraction rétraction nom f s 0.06 0.2 0.06 0.2 +rétractèrent rétracter ver 1.71 5.14 0 0.14 ind:pas:3p; +rétracté rétracter ver m s 1.71 5.14 0.39 0.54 par:pas; +rétractée rétracter ver f s 1.71 5.14 0.13 0.2 par:pas; +rétractées rétracter ver f p 1.71 5.14 0.02 0 par:pas; +rétractés rétracter ver m p 1.71 5.14 0.04 0.14 par:pas; +rétreint rétreindre ver 0.01 0 0.01 0 ind:pre:3s; +rétribuant rétribuer ver 0.35 0.68 0 0.14 par:pre; +rétribue rétribuer ver 0.35 0.68 0.02 0.07 ind:pre:1s;ind:pre:3s; +rétribuer rétribuer ver 0.35 0.68 0.14 0.14 inf; +rétribution rétribution nom f s 0.6 0.41 0.6 0.34 +rétributions rétribution nom f p 0.6 0.41 0 0.07 +rétribué rétribué adj m s 0.12 0.2 0.12 0.07 +rétribuée rétribuer ver f s 0.35 0.68 0.15 0.14 par:pas; +rétribués rétribuer ver m p 0.35 0.68 0.01 0.07 par:pas; +rétro rétro adj 1.12 0.81 1.12 0.81 +rétroactif rétroactif adj m s 0.29 0.14 0.22 0.14 +rétroaction rétroaction nom f s 0.13 0.07 0.13 0.07 +rétroactive rétroactif adj f s 0.29 0.14 0.07 0 +rétroactivement rétroactivement adv 0.05 0.14 0.05 0.14 +rétrocession rétrocession nom f s 0 0.07 0 0.07 +rétrocède rétrocéder ver 0.01 0.27 0.01 0.07 ind:pre:3s; +rétrocédait rétrocéder ver 0.01 0.27 0 0.07 ind:imp:3s; +rétrocéder rétrocéder ver 0.01 0.27 0 0.14 inf; +rétrofusée rétrofusée nom f s 0.25 0 0.02 0 +rétrofusées rétrofusée nom f p 0.25 0 0.23 0 +rétrograda rétrograder ver 0.97 0.74 0 0.07 ind:pas:3s; +rétrogradation rétrogradation nom f s 0.09 0.2 0.07 0.14 +rétrogradations rétrogradation nom f p 0.09 0.2 0.01 0.07 +rétrograde rétrograde adj s 0.57 0.95 0.5 0.81 +rétrogradent rétrograder ver 0.97 0.74 0 0.07 ind:pre:3p; +rétrograder rétrograder ver 0.97 0.74 0.16 0.34 inf; +rétrogrades rétrograde adj p 0.57 0.95 0.07 0.14 +rétrogradez rétrograder ver 0.97 0.74 0.03 0 imp:pre:2p;ind:pre:2p; +rétrogradé rétrograder ver m s 0.97 0.74 0.55 0.07 par:pas; +rétrogradée rétrograder ver f s 0.97 0.74 0.06 0 par:pas; +rétrogradés rétrograder ver m p 0.97 0.74 0.01 0.07 par:pas; +rétrogression rétrogression nom f s 0.01 0 0.01 0 +rétroprojecteur rétroprojecteur nom m s 0.11 0.07 0.11 0.07 +rétropropulsion rétropropulsion nom f s 0.03 0 0.03 0 +rétros rétro nom m p 0.92 3.65 0.12 0.27 +rétrospectif rétrospectif adj m s 0.15 2.91 0 0.88 +rétrospectifs rétrospectif adj m p 0.15 2.91 0 0.14 +rétrospection rétrospection nom f s 0.03 0 0.03 0 +rétrospective rétrospective nom f s 0.36 0.61 0.36 0.54 +rétrospectivement rétrospectivement adv 0.36 1.08 0.36 1.08 +rétrospectives rétrospectif adj f p 0.15 2.91 0 0.27 +rétroversion rétroversion nom f s 0 0.07 0 0.07 +rétrovirale rétroviral adj f s 0.01 0 0.01 0 +rétrovirus rétrovirus nom m 1.11 0.14 1.11 0.14 +rétroviseur rétroviseur nom m s 0.93 5.2 0.86 5.07 +rétroviseurs rétroviseur nom m p 0.93 5.2 0.07 0.14 +rétréci rétrécir ver m s 3.51 7.57 1.06 1.22 par:pas; +rétrécie rétrécir ver f s 3.51 7.57 0.13 0.47 par:pas; +rétrécies rétrécir ver f p 3.51 7.57 0.01 0.07 par:pas; +rétrécir rétrécir ver 3.51 7.57 0.53 1.42 inf; +rétrécirent rétrécir ver 3.51 7.57 0 0.27 ind:pas:3p; +rétrécis rétrécir ver m p 3.51 7.57 0.06 0 imp:pre:2s;par:pas; +rétrécissaient rétrécir ver 3.51 7.57 0 0.27 ind:imp:3p; +rétrécissait rétrécir ver 3.51 7.57 0.02 1.08 ind:imp:3s; +rétrécissant rétrécir ver 3.51 7.57 0.02 0.81 par:pre; +rétrécisse rétrécir ver 3.51 7.57 0.04 0 sub:pre:3s; +rétrécissement rétrécissement nom m s 0.15 0.88 0.14 0.81 +rétrécissements rétrécissement nom m p 0.15 0.88 0.01 0.07 +rétrécissent rétrécir ver 3.51 7.57 0.31 0.34 ind:pre:3p; +rétrécissez rétrécir ver 3.51 7.57 0.03 0 imp:pre:2p; +rétrécit rétrécir ver 3.51 7.57 1.31 1.62 ind:pre:3s;ind:pas:3s; +réuni réunir ver m s 41.93 56.69 3.95 4.32 par:pas; +réunie réunir ver f s 41.93 56.69 1.61 3.18 par:pas; +réunies réunir ver f p 41.93 56.69 2.35 4.93 par:pas; +réunification réunification nom f s 1.3 0.14 1.3 0.14 +réunifier réunifier ver 0.17 0.27 0.04 0 inf; +réunifié réunifier ver m s 0.17 0.27 0.03 0 par:pas; +réunifiée réunifier ver f s 0.17 0.27 0.1 0.2 par:pas; +réunifiées réunifier ver f p 0.17 0.27 0 0.07 par:pas; +réunion réunion nom f s 56.82 28.18 49.17 19.12 +réunionnais réunionnais nom m 0 0.07 0 0.07 +réunionnite réunionnite nom f s 0.01 0 0.01 0 +réunions réunion nom f p 56.82 28.18 7.66 9.05 +réunir réunir ver 41.93 56.69 9.11 8.45 inf; +réunira réunir ver 41.93 56.69 0.52 0.47 ind:fut:3s; +réunirai réunir ver 41.93 56.69 0.06 0 ind:fut:1s; +réuniraient réunir ver 41.93 56.69 0.05 0.27 cnd:pre:3p; +réunirais réunir ver 41.93 56.69 0.12 0 cnd:pre:1s;cnd:pre:2s; +réunirait réunir ver 41.93 56.69 0.09 0.41 cnd:pre:3s; +réuniras réunir ver 41.93 56.69 0 0.07 ind:fut:2s; +réunirent réunir ver 41.93 56.69 0.06 0.88 ind:pas:3p; +réunirons réunir ver 41.93 56.69 0.14 0.07 ind:fut:1p; +réuniront réunir ver 41.93 56.69 0.15 0.07 ind:fut:3p; +réunis réunir ver m p 41.93 56.69 15.85 18.18 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réunissaient réunir ver 41.93 56.69 0.24 2.91 ind:imp:3p; +réunissais réunir ver 41.93 56.69 0.14 0.07 ind:imp:1s; +réunissait réunir ver 41.93 56.69 0.69 3.72 ind:imp:3s; +réunissant réunir ver 41.93 56.69 0.34 1.62 par:pre; +réunisse réunir ver 41.93 56.69 0.81 0.14 sub:pre:1s;sub:pre:3s; +réunissent réunir ver 41.93 56.69 1.26 1.42 ind:pre:3p; +réunisses réunir ver 41.93 56.69 0.02 0 sub:pre:2s; +réunissez réunir ver 41.93 56.69 0.37 0.2 imp:pre:2p;ind:pre:2p; +réunissions réunir ver 41.93 56.69 0.19 0.2 ind:imp:1p; +réunissons réunir ver 41.93 56.69 0.42 0.07 imp:pre:1p;ind:pre:1p; +réunit réunir ver 41.93 56.69 3.39 5 ind:pre:3s;ind:pas:3s; +réunîmes réunir ver 41.93 56.69 0 0.07 ind:pas:1p; +réussi réussir ver m s 131.88 122.16 78.63 55.74 par:pas; +réussie réussi adj f s 6.11 7.7 2.17 2.77 +réussies réussi adj f p 6.11 7.7 0.61 0.81 +réussir réussir ver 131.88 122.16 20.99 16.55 inf; +réussira réussir ver 131.88 122.16 2.27 0.81 ind:fut:3s; +réussirai réussir ver 131.88 122.16 1.5 0.34 ind:fut:1s; +réussiraient réussir ver 131.88 122.16 0.02 0.14 cnd:pre:3p; +réussirais réussir ver 131.88 122.16 0.64 0.95 cnd:pre:1s;cnd:pre:2s; +réussirait réussir ver 131.88 122.16 0.5 0.74 cnd:pre:3s; +réussiras réussir ver 131.88 122.16 1.51 0.41 ind:fut:2s; +réussirent réussir ver 131.88 122.16 0.04 1.55 ind:pas:3p; +réussirez réussir ver 131.88 122.16 1.37 0.2 ind:fut:2p; +réussiriez réussir ver 131.88 122.16 0.22 0 cnd:pre:2p; +réussirions réussir ver 131.88 122.16 0.04 0.14 cnd:pre:1p; +réussirons réussir ver 131.88 122.16 0.93 0.34 ind:fut:1p; +réussiront réussir ver 131.88 122.16 0.57 0.27 ind:fut:3p; +réussis réussir ver m p 131.88 122.16 4.48 5 ind:pre:1s;ind:pre:2s;par:pas; +réussissaient réussir ver 131.88 122.16 0.12 1.76 ind:imp:3p; +réussissais réussir ver 131.88 122.16 0.24 2.3 ind:imp:1s;ind:imp:2s; +réussissait réussir ver 131.88 122.16 0.41 6.69 ind:imp:3s; +réussissant réussir ver 131.88 122.16 0.1 1.89 par:pre; +réussisse réussir ver 131.88 122.16 1.88 1.55 sub:pre:1s;sub:pre:3s; +réussissent réussir ver 131.88 122.16 1.85 1.82 ind:pre:3p; +réussisses réussir ver 131.88 122.16 0.47 0 sub:pre:2s; +réussissez réussir ver 131.88 122.16 1.25 0.47 imp:pre:2p;ind:pre:2p; +réussissiez réussir ver 131.88 122.16 0.39 0.27 ind:imp:2p; +réussissions réussir ver 131.88 122.16 0.05 0.34 ind:imp:1p; +réussissons réussir ver 131.88 122.16 0.59 0.2 imp:pre:1p;ind:pre:1p; +réussit réussir ver 131.88 122.16 9.7 19.39 ind:pre:3s;ind:pas:3s; +réussite réussite nom f s 9.46 20.74 8.8 18.18 +réussites réussite nom f p 9.46 20.74 0.66 2.57 +réussîmes réussir ver 131.88 122.16 0 0.2 ind:pas:1p; +réussît réussir ver 131.88 122.16 0.01 0.34 sub:imp:3s; +réutilisables réutilisable adj p 0.03 0 0.03 0 +réutilisait réutiliser ver 0.38 0.27 0.02 0.14 ind:imp:3s; +réutilisation réutilisation nom f s 0.15 0 0.15 0 +réutilise réutiliser ver 0.38 0.27 0.1 0 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réutiliser réutiliser ver 0.38 0.27 0.2 0.07 inf; +réutilisé réutiliser ver m s 0.38 0.27 0.04 0 par:pas; +réutilisés réutiliser ver m p 0.38 0.27 0.01 0.07 par:pas; +réveil réveil nom m s 18.43 28.58 18.16 26.22 +réveilla réveiller ver 175.94 125.41 0.46 11.89 ind:pas:3s; +réveillai réveiller ver 175.94 125.41 0.27 2.7 ind:pas:1s; +réveillaient réveiller ver 175.94 125.41 0.07 2.09 ind:imp:3p; +réveillais réveiller ver 175.94 125.41 0.96 1.89 ind:imp:1s;ind:imp:2s; +réveillait réveiller ver 175.94 125.41 1.21 10.74 ind:imp:3s; +réveillant réveiller ver 175.94 125.41 0.89 3.85 par:pre; +réveille réveiller ver 175.94 125.41 59.67 17.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +réveille_matin réveille_matin nom m 0.19 0.88 0.19 0.88 +réveillent réveiller ver 175.94 125.41 1.75 2.3 ind:pre:3p; +réveiller réveiller ver 175.94 125.41 36.66 28.92 inf;; +réveillera réveiller ver 175.94 125.41 4.42 1.35 ind:fut:3s; +réveillerai réveiller ver 175.94 125.41 1.54 0.41 ind:fut:1s; +réveilleraient réveiller ver 175.94 125.41 0.17 0.2 cnd:pre:3p; +réveillerais réveiller ver 175.94 125.41 0.61 0.41 cnd:pre:1s;cnd:pre:2s; +réveillerait réveiller ver 175.94 125.41 0.56 1.22 cnd:pre:3s; +réveilleras réveiller ver 175.94 125.41 1.44 0.47 ind:fut:2s; +réveillerez réveiller ver 175.94 125.41 0.33 0.14 ind:fut:2p; +réveilleriez réveiller ver 175.94 125.41 0.07 0 cnd:pre:2p; +réveillerons réveiller ver 175.94 125.41 0.2 0.07 ind:fut:1p; +réveilleront réveiller ver 175.94 125.41 0.38 0.27 ind:fut:3p; +réveilles réveiller ver 175.94 125.41 4.27 0.68 ind:pre:2s;sub:pre:2s; +réveilleurs réveilleur nom m p 0 0.07 0 0.07 +réveillez réveiller ver 175.94 125.41 11.33 0.95 imp:pre:2p;ind:pre:2p; +réveilliez réveiller ver 175.94 125.41 0.07 0 ind:imp:2p; +réveillions réveiller ver 175.94 125.41 0.03 0.27 ind:imp:1p; +réveillon réveillon nom m s 4.64 5.07 4.46 4.73 +réveillonnaient réveillonner ver 0.34 1.22 0 0.07 ind:imp:3p; +réveillonnait réveillonner ver 0.34 1.22 0 0.14 ind:imp:3s; +réveillonne réveillonner ver 0.34 1.22 0.3 0.07 ind:pre:3s; +réveillonner réveillonner ver 0.34 1.22 0.03 0.68 inf; +réveillonnerons réveillonner ver 0.34 1.22 0 0.07 ind:fut:1p; +réveillonneurs réveillonneur nom m p 0 0.2 0 0.2 +réveillonnons réveillonner ver 0.34 1.22 0 0.07 imp:pre:1p; +réveillonnâmes réveillonner ver 0.34 1.22 0 0.07 ind:pas:1p; +réveillonnèrent réveillonner ver 0.34 1.22 0 0.07 ind:pas:3p; +réveillonné réveillonner ver m s 0.34 1.22 0.01 0 par:pas; +réveillons réveiller ver 175.94 125.41 0.38 0.47 imp:pre:1p;ind:pre:1p; +réveillâmes réveiller ver 175.94 125.41 0 0.07 ind:pas:1p; +réveillât réveiller ver 175.94 125.41 0 0.27 sub:imp:3s; +réveillèrent réveiller ver 175.94 125.41 0.17 1.62 ind:pas:3p; +réveillé réveiller ver m s 175.94 125.41 30.63 18.78 par:pas; +réveillée réveiller ver f s 175.94 125.41 15.63 10.88 par:pas; +réveillées réveiller ver f p 175.94 125.41 0.18 0.68 par:pas; +réveillés réveiller ver m p 175.94 125.41 1.61 4.26 par:pas; +réveils réveil nom m p 18.43 28.58 0.27 2.36 +réverbère réverbère nom m s 0.53 10.81 0.42 4.86 +réverbèrent réverbérer ver 0.02 1.28 0 0.07 ind:pre:3p; +réverbères réverbère nom m p 0.53 10.81 0.11 5.95 +réverbéra réverbérer ver 0.02 1.28 0 0.07 ind:pas:3s; +réverbéraient réverbérer ver 0.02 1.28 0 0.27 ind:imp:3p; +réverbérait réverbérer ver 0.02 1.28 0.01 0.2 ind:imp:3s; +réverbérant réverbérer ver 0.02 1.28 0 0.14 par:pre; +réverbération réverbération nom f s 0.06 1.69 0.05 1.55 +réverbérations réverbération nom f p 0.06 1.69 0.01 0.14 +réverbérer réverbérer ver 0.02 1.28 0 0.2 inf; +réverbéré réverbérer ver m s 0.02 1.28 0 0.07 par:pas; +réverbérée réverbérer ver f s 0.02 1.28 0 0.2 par:pas; +réversibilité réversibilité nom f s 0.01 0.61 0.01 0.61 +réversible réversible adj s 0.21 0.54 0.17 0.47 +réversibles réversible adj f p 0.21 0.54 0.04 0.07 +réversion réversion nom f s 0.07 0.14 0.07 0.14 +révisa réviser ver 8.21 3.72 0 0.07 ind:pas:3s; +révisai réviser ver 8.21 3.72 0 0.14 ind:pas:1s; +révisaient réviser ver 8.21 3.72 0 0.14 ind:imp:3p; +révisais réviser ver 8.21 3.72 0.12 0.34 ind:imp:1s;ind:imp:2s; +révisait réviser ver 8.21 3.72 0.06 0.2 ind:imp:3s; +révisant réviser ver 8.21 3.72 0.03 0.14 par:pre; +révise réviser ver 8.21 3.72 1.65 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révisent réviser ver 8.21 3.72 0.02 0 ind:pre:3p; +réviser réviser ver 8.21 3.72 4.35 2.03 inf; +réviserais réviser ver 8.21 3.72 0.01 0 cnd:pre:1s; +réviserait réviser ver 8.21 3.72 0.01 0 cnd:pre:3s; +révises réviser ver 8.21 3.72 0.21 0.07 ind:pre:2s; +réviseur réviseur nom m s 0.01 0 0.01 0 +révisez réviser ver 8.21 3.72 0.08 0 imp:pre:2p; +révisiez réviser ver 8.21 3.72 0.01 0 ind:imp:2p; +révision révision nom f s 3.99 3.78 3.09 3.11 +révisionnisme révisionnisme nom m s 0 0.07 0 0.07 +révisionniste révisionniste adj s 0.09 0.34 0.07 0.27 +révisionnistes révisionniste nom p 0.29 0.2 0.28 0.2 +révisions révision nom f p 3.99 3.78 0.9 0.68 +réviso réviso nom s 0 0.07 0 0.07 +révisons réviser ver 8.21 3.72 0.19 0 imp:pre:1p;ind:pre:1p; +révisé réviser ver m s 8.21 3.72 1.1 0.14 par:pas; +révisée réviser ver f s 8.21 3.72 0.29 0.07 par:pas; +révisées réviser ver f p 8.21 3.72 0.02 0.14 par:pas; +révisés réviser ver m p 8.21 3.72 0.06 0.07 par:pas; +révocable révocable adj f s 0.03 0.41 0.03 0.2 +révocables révocable adj m p 0.03 0.41 0 0.2 +révocation révocation nom f s 0.32 0.61 0.32 0.54 +révocations révocation nom f p 0.32 0.61 0 0.07 +révolta révolter ver 4.65 10.81 0.1 1.08 ind:pas:3s; +révoltai révolter ver 4.65 10.81 0 0.07 ind:pas:1s; +révoltaient révolter ver 4.65 10.81 0.03 0.41 ind:imp:3p; +révoltais révolter ver 4.65 10.81 0 0.2 ind:imp:1s; +révoltait révolter ver 4.65 10.81 0.02 2.36 ind:imp:3s; +révoltant révoltant adj m s 0.92 1.96 0.6 0.88 +révoltante révoltant adj f s 0.92 1.96 0.14 0.61 +révoltantes révoltant adj f p 0.92 1.96 0.16 0.34 +révoltants révoltant adj m p 0.92 1.96 0.02 0.14 +révolte révolte nom f s 6.66 25.07 6.35 21.82 +révoltent révolter ver 4.65 10.81 0.44 0.54 ind:pre:3p; +révolter révolter ver 4.65 10.81 1.19 1.08 inf; +révolteront révolter ver 4.65 10.81 0.15 0 ind:fut:3p; +révoltes révolte nom f p 6.66 25.07 0.31 3.24 +révoltez révolter ver 4.65 10.81 0.04 0 imp:pre:2p;ind:pre:2p; +révoltions révolter ver 4.65 10.81 0 0.07 ind:imp:1p; +révoltons révolter ver 4.65 10.81 0.14 0.07 imp:pre:1p;ind:pre:1p; +révoltât révolter ver 4.65 10.81 0 0.14 sub:imp:3s; +révoltèrent révolter ver 4.65 10.81 0.24 0.27 ind:pas:3p; +révolté révolter ver m s 4.65 10.81 0.36 1.01 par:pas; +révoltée révolter ver f s 4.65 10.81 0.05 0.88 par:pas; +révoltées révolté adj f p 0.17 2.97 0.01 0.2 +révoltés révolté nom m p 1.08 2.43 0.87 1.35 +révolu révolu adj m s 2.25 5.34 0.6 2.09 +révolue révolu adj f s 2.25 5.34 1.2 1.35 +révolues révolu adj f p 2.25 5.34 0.06 0.27 +révolus révolu adj m p 2.25 5.34 0.4 1.62 +révolution révolution nom f s 25 46.08 23.07 41.08 +révolutionna révolutionner ver 0.97 0.88 0.01 0.14 ind:pas:3s; +révolutionnaient révolutionner ver 0.97 0.88 0 0.07 ind:imp:3p; +révolutionnaire révolutionnaire adj s 7.3 12.09 4.76 8.78 +révolutionnairement révolutionnairement adv 0.01 0 0.01 0 +révolutionnaires révolutionnaire adj p 7.3 12.09 2.54 3.31 +révolutionnait révolutionner ver 0.97 0.88 0 0.07 ind:imp:3s; +révolutionner révolutionner ver 0.97 0.88 0.55 0.2 inf; +révolutionnera révolutionner ver 0.97 0.88 0.12 0 ind:fut:3s; +révolutionnerait révolutionner ver 0.97 0.88 0.02 0 cnd:pre:3s; +révolutionneront révolutionner ver 0.97 0.88 0.01 0 ind:fut:3p; +révolutionné révolutionner ver m s 0.97 0.88 0.27 0.34 par:pas; +révolutionnées révolutionner ver f p 0.97 0.88 0 0.07 par:pas; +révolutions révolution nom f p 25 46.08 1.94 5 +révoquais révoquer ver 0.82 0.88 0.01 0 ind:imp:1s; +révoque révoquer ver 0.82 0.88 0.2 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révoquer révoquer ver 0.82 0.88 0.25 0.14 inf; +révoqué révoquer ver m s 0.82 0.88 0.23 0.2 par:pas; +révoquée révoquer ver f s 0.82 0.88 0.05 0.07 par:pas; +révoquées révoquer ver f p 0.82 0.88 0 0.07 par:pas; +révoqués révoquer ver m p 0.82 0.88 0.08 0.27 par:pas; +révulsaient révulser ver 0.44 2.57 0 0.27 ind:imp:3p; +révulsait révulser ver 0.44 2.57 0.01 0.41 ind:imp:3s; +révulsant révulser ver 0.44 2.57 0 0.07 par:pre; +révulse révulser ver 0.44 2.57 0.35 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révulser révulser ver 0.44 2.57 0.02 0 inf; +révulserait révulser ver 0.44 2.57 0 0.07 cnd:pre:3s; +révulsif révulsif nom m s 0 0.34 0 0.34 +révulsifs révulsif adj m p 0 0.27 0 0.07 +révulsion révulsion nom f s 0.02 0.2 0.02 0.2 +révulsive révulsif adj f s 0 0.27 0 0.07 +révulsèrent révulser ver 0.44 2.57 0 0.14 ind:pas:3p; +révulsé révulser ver m s 0.44 2.57 0.02 0.41 par:pas; +révulsée révulser ver f s 0.44 2.57 0.02 0.2 par:pas; +révulsés révulsé adj m p 0.01 1.08 0.01 0.74 +révèle révéler ver 32.7 60.34 6.32 8.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révèlent révéler ver 32.7 60.34 1.62 2.5 ind:pre:3p; +révèles révéler ver 32.7 60.34 0.14 0.07 ind:pre:2s; +révère révérer ver 0.96 0.95 0.21 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révèrent révérer ver 0.96 0.95 0.33 0.07 ind:pre:3p; +révéla révéler ver 32.7 60.34 0.66 5.14 ind:pas:3s; +révélai révéler ver 32.7 60.34 0.01 0.41 ind:pas:1s; +révélaient révéler ver 32.7 60.34 0.2 3.18 ind:imp:3p; +révélais révéler ver 32.7 60.34 0.11 0.2 ind:imp:1s;ind:imp:2s; +révélait révéler ver 32.7 60.34 0.65 9.39 ind:imp:3s; +révélant révéler ver 32.7 60.34 0.38 3.11 par:pre; +révélateur révélateur adj m s 1.04 2.91 0.66 1.15 +révélateurs révélateur adj m p 1.04 2.91 0.28 0.41 +révélation révélation nom f s 7.33 20.61 4.66 14.86 +révélations révélation nom f p 7.33 20.61 2.67 5.74 +révélatrice révélateur adj f s 1.04 2.91 0.06 0.95 +révélatrices révélateur adj f p 1.04 2.91 0.04 0.41 +révéler révéler ver 32.7 60.34 10.33 13.31 inf;; +révélera révéler ver 32.7 60.34 0.46 0.34 ind:fut:3s; +révélerai révéler ver 32.7 60.34 0.37 0.07 ind:fut:1s; +révéleraient révéler ver 32.7 60.34 0.06 0.2 cnd:pre:3p; +révélerais révéler ver 32.7 60.34 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +révélerait révéler ver 32.7 60.34 0.14 0.95 cnd:pre:3s; +révéleras révéler ver 32.7 60.34 0.1 0 ind:fut:2s; +révélerez révéler ver 32.7 60.34 0.05 0.14 ind:fut:2p; +révélerons révéler ver 32.7 60.34 0.17 0 ind:fut:1p; +révéleront révéler ver 32.7 60.34 0.34 0.14 ind:fut:3p; +révélez révéler ver 32.7 60.34 0.38 0.07 imp:pre:2p;ind:pre:2p; +révéliez révéler ver 32.7 60.34 0.06 0 ind:imp:2p; +révélons révéler ver 32.7 60.34 0.05 0 ind:pre:1p; +révélât révéler ver 32.7 60.34 0 0.2 sub:imp:3s; +révélèrent révéler ver 32.7 60.34 0.23 1.22 ind:pas:3p; +révélé révéler ver m s 32.7 60.34 7.86 8.45 par:pas; +révélée révéler ver f s 32.7 60.34 1.22 1.69 par:pas; +révélées révéler ver f p 32.7 60.34 0.38 0.74 par:pas; +révélés révéler ver m p 32.7 60.34 0.36 0.47 par:pas; +révérait révérer ver 0.96 0.95 0.01 0.14 ind:imp:3s; +révérant révérer ver 0.96 0.95 0.09 0 par:pre; +révérence révérence nom f s 2.69 6.49 2.45 6.01 +révérences révérence nom f p 2.69 6.49 0.23 0.47 +révérenciel révérenciel adj m s 0.01 0 0.01 0 +révérencieuse révérencieux adj f s 0 0.41 0 0.34 +révérencieusement révérencieusement adv 0 0.27 0 0.27 +révérencieux révérencieux adj m p 0 0.41 0 0.07 +révérend révérend nom m s 7.64 1.01 7.51 0.95 +révérende révérend adj f s 5.24 0.74 0.9 0.14 +révérendissime révérendissime adj m s 0 0.41 0 0.41 +révérends révérend nom m p 7.64 1.01 0.14 0.07 +révérer révérer ver 0.96 0.95 0.12 0.07 inf; +révérerait révérer ver 0.96 0.95 0 0.07 cnd:pre:3s; +révérons révérer ver 0.96 0.95 0 0.07 ind:pre:1p; +révéré révérer ver m s 0.96 0.95 0.07 0.34 par:pas; +révérée révérer ver f s 0.96 0.95 0.14 0.07 par:pas; +rééchelonnement rééchelonnement nom m s 0 0.07 0 0.07 +réécoutais réécouter ver 0.63 0.68 0 0.14 ind:imp:1s; +réécoutait réécouter ver 0.63 0.68 0 0.07 ind:imp:3s; +réécoute réécouter ver 0.63 0.68 0.03 0.07 imp:pre:2s;ind:pre:1s; +réécoutent réécouter ver 0.63 0.68 0 0.07 ind:pre:3p; +réécouter réécouter ver 0.63 0.68 0.57 0.34 inf; +réécouterez réécouter ver 0.63 0.68 0.01 0 ind:fut:2p; +réécouté réécouter ver m s 0.63 0.68 0.02 0 par:pas; +réécrira réécrire ver 2.64 0.81 0.04 0 ind:fut:3s; +réécrirai réécrire ver 2.64 0.81 0.01 0 ind:fut:1s; +réécrire réécrire ver 2.64 0.81 1.27 0.07 inf; +réécris réécrire ver 2.64 0.81 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +réécrit réécrire ver m s 2.64 0.81 0.67 0.47 ind:pre:3s;par:pas; +réécrite réécrire ver f s 2.64 0.81 0.11 0.07 par:pas; +réécrits réécrire ver m p 2.64 0.81 0.08 0.07 par:pas; +réécriture réécriture nom f s 0.13 0 0.11 0 +réécritures réécriture nom f p 0.13 0 0.02 0 +réécrivaient réécrire ver 2.64 0.81 0.01 0 ind:imp:3p; +réécrive réécrire ver 2.64 0.81 0.02 0.07 sub:pre:1s;sub:pre:3s; +réécrivez réécrire ver 2.64 0.81 0.05 0 imp:pre:2p;ind:pre:2p; +réédifier réédifier ver 0.01 0.14 0.01 0.07 inf; +réédifieras réédifier ver 0.01 0.14 0 0.07 ind:fut:2s; +rééditait rééditer ver 0.05 0.95 0 0.2 ind:imp:3s; +rééditant rééditer ver 0.05 0.95 0 0.07 par:pre; +rééditer rééditer ver 0.05 0.95 0.01 0.34 inf; +réédition réédition nom f s 0.19 0.68 0.18 0.47 +rééditions réédition nom f p 0.19 0.68 0.01 0.2 +réédité rééditer ver m s 0.05 0.95 0.04 0.2 par:pas; +rééditées rééditer ver f p 0.05 0.95 0 0.07 par:pas; +réédités rééditer ver m p 0.05 0.95 0 0.07 par:pas; +rééducateur rééducateur nom m s 0 0.07 0 0.07 +rééducation rééducation nom f s 2.48 0.68 2.48 0.68 +rééduquais rééduquer ver 1.66 0.68 0 0.07 ind:imp:1s; +rééduquait rééduquer ver 1.66 0.68 0 0.07 ind:imp:3s; +rééduque rééduquer ver 1.66 0.68 0.01 0.07 ind:pre:3s; +rééduquer rééduquer ver 1.66 0.68 0.42 0.34 inf;; +rééduqué rééduquer ver m s 1.66 0.68 0.41 0.07 par:pas; +rééduqués rééduquer ver m p 1.66 0.68 0.81 0.07 par:pas; +réélection réélection nom f s 0.56 0.07 0.56 0.07 +rééligible rééligible adj s 0.03 0 0.03 0 +réélira réélire ver 0.94 0.27 0.1 0 ind:fut:3s; +réélire réélire ver 0.94 0.27 0.17 0 inf; +réélisent réélire ver 0.94 0.27 0.02 0 ind:pre:3p; +réélisez réélire ver 0.94 0.27 0.06 0 imp:pre:2p; +réélu réélire ver m s 0.94 0.27 0.56 0.2 par:pas; +réélus réélire ver m p 0.94 0.27 0.03 0 par:pas; +réélut réélire ver 0.94 0.27 0 0.07 ind:pas:3s; +rééquilibrage rééquilibrage nom m s 0.01 0.07 0.01 0.07 +rééquilibrait rééquilibrer ver 0.13 0.2 0 0.07 ind:imp:3s; +rééquilibrant rééquilibrer ver 0.13 0.2 0.01 0 par:pre; +rééquilibre rééquilibrer ver 0.13 0.2 0.04 0 ind:pre:3s; +rééquilibrer rééquilibrer ver 0.13 0.2 0.08 0.07 inf; +rééquilibrera rééquilibrer ver 0.13 0.2 0 0.07 ind:fut:3s; +rééquipent rééquiper ver 0.02 0.27 0.01 0.07 ind:pre:3p; +rééquiper rééquiper ver 0.02 0.27 0.01 0 inf; +rééquipé rééquiper ver m s 0.02 0.27 0 0.07 par:pas; +rééquipée rééquiper ver f s 0.02 0.27 0 0.14 par:pas; +réétudier réétudier ver 0.02 0.07 0.02 0 inf; +réétudiez réétudier ver 0.02 0.07 0 0.07 ind:pre:2p; +réévaluation réévaluation nom f s 0.07 0.07 0.07 0.07 +réévalue réévaluer ver 0.72 0.34 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réévaluer réévaluer ver 0.72 0.34 0.31 0.14 inf; +réévaluera réévaluer ver 0.72 0.34 0.06 0 ind:fut:3s; +réévaluez réévaluer ver 0.72 0.34 0.01 0 imp:pre:2p; +réévalué réévaluer ver m s 0.72 0.34 0.02 0 par:pas; +réévaluée réévaluer ver f s 0.72 0.34 0.01 0 par:pas; +réévaluées réévaluer ver f p 0.72 0.34 0.02 0 par:pas; +réévalués réévaluer ver m p 0.72 0.34 0 0.07 par:pas; +rêche rêche adj s 0.51 8.11 0.47 6.08 +rêches rêche adj p 0.51 8.11 0.04 2.03 +rêne rêne nom f s 2.23 5.74 0.02 0.14 +rênes rêne nom f p 2.23 5.74 2.21 5.61 +rêva rêver ver 122.95 128.18 0.03 3.04 ind:pas:3s; +rêvai rêver ver 122.95 128.18 0.31 0.54 ind:pas:1s; +rêvaient rêver ver 122.95 128.18 0.52 4.53 ind:imp:3p; +rêvais rêver ver 122.95 128.18 11 11.28 ind:imp:1s;ind:imp:2s; +rêvait rêver ver 122.95 128.18 3.59 18.65 ind:imp:3s; +rêvant rêver ver 122.95 128.18 1.26 6.28 par:pre; +rêvassa rêvasser ver 0.92 6.01 0 0.27 ind:pas:3s; +rêvassai rêvasser ver 0.92 6.01 0 0.07 ind:pas:1s; +rêvassaient rêvasser ver 0.92 6.01 0 0.2 ind:imp:3p; +rêvassais rêvasser ver 0.92 6.01 0.2 0.61 ind:imp:1s;ind:imp:2s; +rêvassait rêvasser ver 0.92 6.01 0.02 1.22 ind:imp:3s; +rêvassant rêvasser ver 0.92 6.01 0.04 0.54 par:pre; +rêvasse rêvasser ver 0.92 6.01 0.14 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rêvassent rêvasser ver 0.92 6.01 0 0.14 ind:pre:3p; +rêvasser rêvasser ver 0.92 6.01 0.51 1.89 inf; +rêvasserie rêvasserie nom f s 0.02 0.41 0.01 0.07 +rêvasseries rêvasserie nom f p 0.02 0.41 0.01 0.34 +rêvassé rêvasser ver m s 0.92 6.01 0.01 0 par:pas; +rêve rêve nom m s 158.75 128.58 99.39 80.2 +rêvent rêver ver 122.95 128.18 3.63 4.19 ind:pre:3p; +rêver rêver ver 122.95 128.18 20.8 29.39 inf; +rêvera rêver ver 122.95 128.18 0.08 0.2 ind:fut:3s; +rêverai rêver ver 122.95 128.18 0.12 0.41 ind:fut:1s; +rêveraient rêver ver 122.95 128.18 0.05 0.14 cnd:pre:3p; +rêverait rêver ver 122.95 128.18 0.07 0.2 cnd:pre:3s; +rêverie rêverie nom f s 0.65 19.46 0.26 12.36 +rêveries rêverie nom f p 0.65 19.46 0.4 7.09 +rêveront rêver ver 122.95 128.18 0 0.27 ind:fut:3p; +rêves rêve nom m p 158.75 128.58 59.35 48.38 +rêveur rêveur nom m s 2.5 4.66 1.48 3.31 +rêveurs rêveur nom m p 2.5 4.66 0.9 0.88 +rêveuse rêveur adj f s 1.77 15.34 0.61 4.66 +rêveusement rêveusement adv 0.1 3.45 0.1 3.45 +rêveuses rêveur adj f p 1.77 15.34 0.03 0.81 +rêvez rêver ver 122.95 128.18 4.31 0.81 imp:pre:2p;ind:pre:2p; +rêviez rêver ver 122.95 128.18 0.58 0.34 ind:imp:2p; +rêvions rêver ver 122.95 128.18 0.28 1.01 ind:imp:1p; +rêvons rêver ver 122.95 128.18 0.68 0.68 imp:pre:1p;ind:pre:1p; +rêvât rêver ver 122.95 128.18 0 0.14 sub:imp:3s; +rêvèrent rêver ver 122.95 128.18 0 0.34 ind:pas:3p; +rêvé rêver ver m s 122.95 128.18 32.08 20.88 par:pas; +rêvée rêvé adj f s 2.61 3.38 1.62 1.55 +rêvées rêver ver f p 122.95 128.18 0.05 0.07 par:pas; +rêvés rêver ver m p 122.95 128.18 0.17 0.2 par:pas; +rîmes rire ver 140.24 320.54 0.01 0.2 ind:pas:1p; +rît rire ver 140.24 320.54 0 0.07 sub:imp:3s; +rôda rôder ver 5.76 20.07 0 0.07 ind:pas:3s; +rôdai rôder ver 5.76 20.07 0 0.2 ind:pas:1s; +rôdaient rôder ver 5.76 20.07 0.06 2.36 ind:imp:3p; +rôdailler rôdailler ver 0 0.2 0 0.2 inf; +rôdais rôder ver 5.76 20.07 0.07 0.47 ind:imp:1s;ind:imp:2s; +rôdait rôder ver 5.76 20.07 0.35 3.51 ind:imp:3s; +rôdant rôder ver 5.76 20.07 0.44 1.28 par:pre; +rôde rôder ver 5.76 20.07 1.93 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rôdent rôder ver 5.76 20.07 0.61 1.49 ind:pre:3p; +rôder rôder ver 5.76 20.07 1.63 5.41 inf; +rôdera rôder ver 5.76 20.07 0.01 0.07 ind:fut:3s; +rôderai rôder ver 5.76 20.07 0 0.07 ind:fut:1s; +rôderait rôder ver 5.76 20.07 0 0.07 cnd:pre:3s; +rôdes rôder ver 5.76 20.07 0.23 0.2 ind:pre:2s; +rôdeur rôdeur nom m s 1.37 2.57 0.94 1.28 +rôdeurs rôdeur nom m p 1.37 2.57 0.4 1.08 +rôdeuse rôdeur nom f s 1.37 2.57 0.03 0.14 +rôdeuses rôdeur nom f p 1.37 2.57 0 0.07 +rôdez rôder ver 5.76 20.07 0.04 0 imp:pre:2p;ind:pre:2p; +rôdiez rôder ver 5.76 20.07 0.01 0 ind:imp:2p; +rôdions rôder ver 5.76 20.07 0.14 0.14 ind:imp:1p; +rôdâmes rôder ver 5.76 20.07 0 0.07 ind:pas:1p; +rôdèrent rôder ver 5.76 20.07 0 0.14 ind:pas:3p; +rôdé rôder ver m s 5.76 20.07 0.2 0.68 par:pas; +rôdée rôder ver f s 5.76 20.07 0.01 0.14 par:pas; +rôdés rôder ver m p 5.76 20.07 0.01 0 par:pas; +rôle rôle nom m s 69.38 96.96 61.2 88.51 +rôle_titre rôle_titre nom m s 0.01 0 0.01 0 +rôles rôle nom m p 69.38 96.96 8.18 8.45 +rônier rônier nom m s 0.01 0.07 0.01 0 +rôniers rônier nom m p 0.01 0.07 0 0.07 +rônin rônin nom m s 0.1 0 0.07 0 +rônins rônin nom m p 0.1 0 0.03 0 +rôt rôt nom m s 0.05 0.07 0.04 0 +rôti rôti nom m s 4.33 3.24 4.02 2.3 +rôtie rôti adj f s 2.13 3.78 0.33 0.41 +rôties rôti adj f p 2.13 3.78 0.15 0.34 +rôtir rôtir ver 2.9 5.27 1.73 2.16 inf; +rôtiront rôtir ver 2.9 5.27 0 0.07 ind:fut:3p; +rôtis rôti nom m p 4.33 3.24 0.3 0.95 +rôtissaient rôtir ver 2.9 5.27 0.03 0 ind:imp:3p; +rôtissait rôtir ver 2.9 5.27 0 0.34 ind:imp:3s; +rôtissant rôtir ver 2.9 5.27 0.01 0.07 par:pre; +rôtissent rôtir ver 2.9 5.27 0.2 0.14 ind:pre:3p; +rôtisserie rôtisserie nom f s 0.35 0.27 0.35 0.27 +rôtisseur rôtisseur nom m s 0.07 0.2 0.05 0.14 +rôtisseurs rôtisseur nom m p 0.07 0.2 0.01 0 +rôtisseuse rôtisseur nom f s 0.07 0.2 0.01 0 +rôtisseuses rôtisseur nom f p 0.07 0.2 0 0.07 +rôtissez rôtir ver 2.9 5.27 0.01 0 imp:pre:2p; +rôtissions rôtir ver 2.9 5.27 0.01 0 ind:imp:1p; +rôtissoire rôtissoire nom f s 0.04 0.41 0.04 0.27 +rôtissoires rôtissoire nom f p 0.04 0.41 0 0.14 +rôtit rôtir ver 2.9 5.27 0.2 0.07 ind:pre:3s;ind:pas:3s; +rôts rôt nom m p 0.05 0.07 0.01 0.07 +röntgens röntgen nom m p 0.02 0 0.02 0 +s s pro_per 40.59 13.99 40.59 13.99 +s_ s_ pro_per 2418.95 5391.62 2418.95 5391.62 +sa sa adj_pos 1276.29 3732.43 1276.29 3732.43 +sabayon sabayon nom m s 0.3 0.27 0.3 0.07 +sabayons sabayon nom m p 0.3 0.27 0 0.2 +sabbat sabbat nom m s 3.28 2.77 3.14 2.77 +sabbatique sabbatique adj s 0.78 0.47 0.76 0.41 +sabbatiques sabbatique adj f p 0.78 0.47 0.02 0.07 +sabbats sabbat nom m p 3.28 2.77 0.14 0 +sabelles sabelle nom f p 0 0.07 0 0.07 +sabin sabin adj s 0 0.41 0 0.27 +sabines sabine nom f p 0 0.14 0 0.14 +sabins sabin adj m p 0 0.41 0 0.14 +sabir sabir nom m s 0 0.74 0 0.74 +sabla sabler ver 0.28 1.42 0 0.2 ind:pas:3s; +sablaient sabler ver 0.28 1.42 0 0.07 ind:imp:3p; +sablait sabler ver 0.28 1.42 0 0.14 ind:imp:3s; +sablant sabler ver 0.28 1.42 0.01 0.14 par:pre; +sable sable nom m s 25.23 96.55 23.14 87.91 +sabler sabler ver 0.28 1.42 0.16 0.27 inf; +sablera sabler ver 0.28 1.42 0.01 0.07 ind:fut:3s; +sablerais sabler ver 0.28 1.42 0 0.07 cnd:pre:1s; +sables sable nom m p 25.23 96.55 2.09 8.65 +sableuse sableux adj f s 0.23 1.01 0.21 0.41 +sableuses sableux adj f p 0.23 1.01 0 0.14 +sableux sableux adj m 0.23 1.01 0.03 0.47 +sablez sabler ver 0.28 1.42 0.02 0.07 imp:pre:2p;ind:pre:2p; +sablier sablier nom m s 1.18 3.11 1.03 2.64 +sabliers sablier nom m p 1.18 3.11 0.14 0.47 +sablière sablière nom f s 0.01 0.47 0.01 0.27 +sablières sablière nom f p 0.01 0.47 0 0.2 +sablonneuse sablonneux adj f s 0.06 3.92 0 1.76 +sablonneuses sablonneux adj f p 0.06 3.92 0.03 0.41 +sablonneux sablonneux adj m 0.06 3.92 0.03 1.76 +sablons sablon nom m p 0 0.2 0 0.2 +sablé sablé adj m s 0.4 0.68 0.14 0.14 +sablée sabler ver f s 0.28 1.42 0.01 0.14 par:pas; +sablées sablé adj f p 0.4 0.68 0 0.07 +sablés sablé adj m p 0.4 0.68 0.25 0.34 +sabord sabord nom m s 0.17 1.89 0.03 1.28 +sabordage sabordage nom m s 0.02 0.2 0.02 0.2 +sabordait saborder ver 0.74 1.42 0.01 0.07 ind:imp:3s; +saborde saborder ver 0.74 1.42 0.07 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sabordent saborder ver 0.74 1.42 0.02 0 ind:pre:3p; +saborder saborder ver 0.74 1.42 0.45 0.47 inf; +sabordez saborder ver 0.74 1.42 0.04 0 imp:pre:2p;ind:pre:2p; +sabords sabord nom m p 0.17 1.89 0.14 0.61 +sabordé saborder ver m s 0.74 1.42 0.14 0.34 par:pas; +sabordée saborder ver f s 0.74 1.42 0.01 0.07 par:pas; +sabordés saborder ver m p 0.74 1.42 0.01 0.27 par:pas; +sabot sabot nom m s 4.95 24.66 1.79 5.74 +sabotage sabotage nom m s 4.69 2.97 4.32 2.3 +sabotages sabotage nom m p 4.69 2.97 0.37 0.68 +sabotais saboter ver 6.25 2.77 0.02 0.07 ind:imp:1s; +sabotait saboter ver 6.25 2.77 0.04 0.34 ind:imp:3s; +sabotant saboter ver 6.25 2.77 0.03 0 par:pre; +sabote saboter ver 6.25 2.77 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sabotent saboter ver 6.25 2.77 0.14 0.14 ind:pre:3p; +saboter saboter ver 6.25 2.77 2.84 1.22 inf; +saboterai saboter ver 6.25 2.77 0.02 0 ind:fut:1s; +saboterait saboter ver 6.25 2.77 0.01 0.07 cnd:pre:3s; +saboterie saboterie nom f s 0 0.07 0 0.07 +saboteront saboter ver 6.25 2.77 0.01 0 ind:fut:3p; +saboteur saboteur nom m s 1.15 0.54 0.66 0.14 +saboteurs saboteur nom m p 1.15 0.54 0.48 0.41 +saboteuse saboteur nom f s 1.15 0.54 0.01 0 +sabotez saboter ver 6.25 2.77 0.38 0 ind:pre:2p; +sabotier sabotier nom m s 0 0.61 0 0.41 +sabotiers sabotier nom m p 0 0.61 0 0.2 +sabotons saboter ver 6.25 2.77 0.02 0.07 imp:pre:1p;ind:pre:1p; +sabots sabot nom m p 4.95 24.66 3.16 18.92 +saboté saboter ver m s 6.25 2.77 2.05 0.41 par:pas; +sabotée saboter ver f s 6.25 2.77 0.13 0.14 par:pas; +sabotées saboter ver f p 6.25 2.77 0.01 0.14 par:pas; +sabotés saboter ver m p 6.25 2.77 0.22 0.07 par:pas; +saboule sabouler ver 0 0.41 0 0.07 ind:pre:3s; +saboulent sabouler ver 0 0.41 0 0.07 ind:pre:3p; +sabouler sabouler ver 0 0.41 0 0.07 inf; +saboulé sabouler ver m s 0 0.41 0 0.07 par:pas; +saboulés sabouler ver m p 0 0.41 0 0.14 par:pas; +sabra sabra nom m s 0.12 0 0.12 0 +sabrait sabrer ver 0.39 3.04 0 0.54 ind:imp:3s; +sabrant sabrer ver 0.39 3.04 0.01 0.14 par:pre; +sabre sabre nom m s 6.95 17.03 5.44 13.85 +sabrent sabrer ver 0.39 3.04 0 0.07 ind:pre:3p; +sabrer sabrer ver 0.39 3.04 0.11 0.41 inf; +sabrerai sabrer ver 0.39 3.04 0 0.07 ind:fut:1s; +sabreraient sabrer ver 0.39 3.04 0 0.07 cnd:pre:3p; +sabrerais sabrer ver 0.39 3.04 0.01 0 cnd:pre:2s; +sabreras sabrer ver 0.39 3.04 0 0.07 ind:fut:2s; +sabrerons sabrer ver 0.39 3.04 0 0.07 ind:fut:1p; +sabres sabre nom m p 6.95 17.03 1.5 3.18 +sabretache sabretache nom f s 0 0.27 0 0.2 +sabretaches sabretache nom f p 0 0.27 0 0.07 +sabreur sabreur nom m s 0.14 0.47 0 0.27 +sabreurs sabreur nom m p 0.14 0.47 0.14 0.2 +sabrez sabrer ver 0.39 3.04 0.03 0 imp:pre:2p; +sabré sabrer ver m s 0.39 3.04 0.17 0.34 par:pas; +sabrée sabrer ver f s 0.39 3.04 0 0.07 par:pas; +sabrées sabrer ver f p 0.39 3.04 0 0.2 par:pas; +sabrés sabrer ver m p 0.39 3.04 0.01 0.07 par:pas; +sabéen sabéen adj m s 0.01 0 0.01 0 +sabéenne sabéenne adj f s 0.05 0 0.05 0 +sac sac nom m s 124.6 174.26 105.96 125.47 +sac_poubelle sac_poubelle nom m s 0.24 0.41 0.19 0.34 +saccade saccader ver 0.04 1.96 0.01 0.07 ind:pre:3s; +saccader saccader ver 0.04 1.96 0 0.07 inf; +saccades saccade nom f p 0.01 6.15 0.01 5.68 +saccadé saccadé adj m s 1.17 5.2 0.21 1.69 +saccadée saccadé adj f s 1.17 5.2 0.44 1.82 +saccadées saccadé adj f p 1.17 5.2 0.01 0.47 +saccadés saccadé adj m p 1.17 5.2 0.51 1.22 +saccage saccager ver 4 6.69 0.29 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saccagea saccager ver 4 6.69 0.1 0.27 ind:pas:3s; +saccageaient saccager ver 4 6.69 0 0.14 ind:imp:3p; +saccageais saccager ver 4 6.69 0 0.07 ind:imp:1s; +saccageait saccager ver 4 6.69 0.01 0.27 ind:imp:3s; +saccageant saccager ver 4 6.69 0.13 0.27 par:pre; +saccagent saccager ver 4 6.69 0.15 0.07 ind:pre:3p; +saccageons saccager ver 4 6.69 0.02 0 imp:pre:1p; +saccager saccager ver 4 6.69 0.82 1.69 inf; +saccageraient saccager ver 4 6.69 0.01 0 cnd:pre:3p; +saccages saccager ver 4 6.69 0.02 0 ind:pre:2s; +saccageurs saccageur nom m p 0 0.07 0 0.07 +saccagez saccager ver 4 6.69 0.04 0 imp:pre:2p;ind:pre:2p; +saccagiez saccager ver 4 6.69 0.01 0.07 ind:imp:2p; +saccagne saccagne nom f s 0 0.68 0 0.68 +saccagèrent saccager ver 4 6.69 0 0.14 ind:pas:3p; +saccagé saccager ver m s 4 6.69 1.81 1.96 par:pas; +saccagée saccager ver f s 4 6.69 0.58 0.68 par:pas; +saccagées saccager ver f p 4 6.69 0 0.27 par:pas; +saccagés saccager ver m p 4 6.69 0 0.61 par:pas; +saccharine saccharine nom f s 0.09 0.54 0.09 0.54 +saccharomyces saccharomyces nom m p 0.01 0 0.01 0 +saccharose saccharose nom m s 0.04 0 0.04 0 +sacculine sacculine nom f s 0.03 0 0.02 0 +sacculines sacculine nom f p 0.03 0 0.01 0 +sacerdoce sacerdoce nom m s 0.77 0.74 0.76 0.74 +sacerdoces sacerdoce nom m p 0.77 0.74 0.01 0 +sacerdotal sacerdotal adj m s 0.31 0.81 0.03 0.27 +sacerdotale sacerdotal adj f s 0.31 0.81 0.01 0.27 +sacerdotales sacerdotal adj f p 0.31 0.81 0.14 0.2 +sacerdotaux sacerdotal adj m p 0.31 0.81 0.14 0.07 +sachant savoir ver_sup 4516.71 2003.58 14.39 34.59 par:pre; +sache savoir ver_sup 4516.71 2003.58 54.06 27.09 imp:pre:2s;sub:pre:1s;sub:pre:3s; +sachem sachem nom m s 0.05 0.07 0.05 0.07 +sachent savoir ver_sup 4516.71 2003.58 6.46 3.04 sub:pre:3p; +saches savoir ver_sup 4516.71 2003.58 17.03 3.04 sub:pre:2s; +sachet sachet nom m s 4.38 5.41 2.84 2.09 +sachets sachet nom m p 4.38 5.41 1.53 3.31 +sachez savoir ver_sup 4516.71 2003.58 13.07 5.2 imp:pre:2p; +sachiez savoir ver_sup 4516.71 2003.58 8.97 2.3 sub:pre:2p; +sachions savoir ver_sup 4516.71 2003.58 0.94 0.88 sub:pre:1p; +sachons savoir ver_sup 4516.71 2003.58 0.14 0.27 imp:pre:1p; +sacoche sacoche nom f s 3.16 6.82 2.79 4.8 +sacoches sacoche nom f p 3.16 6.82 0.37 2.03 +sacqua sacquer ver 0.2 0.34 0 0.07 ind:pas:3s; +sacquais sacquer ver 0.2 0.34 0 0.07 ind:imp:1s; +sacquant sacquer ver 0.2 0.34 0 0.07 par:pre; +sacque sacquer ver 0.2 0.34 0.03 0 imp:pre:2s;ind:pre:3s; +sacquer sacquer ver 0.2 0.34 0.12 0.14 inf; +sacqué sacquer ver m s 0.2 0.34 0.05 0 par:pas; +sacra sacrer ver 25.16 16.82 0.14 0.34 ind:pas:3s; +sacrait sacrer ver 25.16 16.82 0 0.2 ind:imp:3s; +sacralisation sacralisation nom f s 0 0.07 0 0.07 +sacralisés sacraliser ver m p 0 0.07 0 0.07 par:pas; +sacramentel sacramentel adj m s 0 0.47 0 0.2 +sacramentelle sacramentel adj f s 0 0.47 0 0.2 +sacramentelles sacramentel adj f p 0 0.47 0 0.07 +sacrant sacrer ver 25.16 16.82 0 0.41 par:pre; +sacre sacre nom m s 0.75 0.74 0.73 0.61 +sacrebleu sacrebleu ono 0.94 0.61 0.94 0.61 +sacredieu sacredieu ono 0.33 0 0.33 0 +sacrement sacrement nom m s 2.45 4.93 1.58 2.57 +sacrements sacrement nom m p 2.45 4.93 0.88 2.36 +sacrer sacrer ver 25.16 16.82 0.06 0 inf; +sacrera sacrer ver 25.16 16.82 0.01 0 ind:fut:3s; +sacrerai sacrer ver 25.16 16.82 0 0.07 ind:fut:1s; +sacres sacrer ver 25.16 16.82 0.03 0 ind:pre:2s;sub:pre:2s; +sacret sacret nom m s 0.03 0 0.03 0 +sacrifia sacrifier ver 25.67 20.2 0.3 0.47 ind:pas:3s; +sacrifiaient sacrifier ver 25.67 20.2 0.06 0.61 ind:imp:3p; +sacrifiais sacrifier ver 25.67 20.2 0.04 0.07 ind:imp:1s;ind:imp:2s; +sacrifiait sacrifier ver 25.67 20.2 0.28 1.15 ind:imp:3s; +sacrifiant sacrifier ver 25.67 20.2 0.66 1.01 par:pre; +sacrificateur sacrificateur nom m s 0.02 1.22 0 0.88 +sacrificateurs sacrificateur nom m p 0.02 1.22 0.02 0.34 +sacrifice sacrifice nom m s 23.11 26.08 15.9 16.96 +sacrifices sacrifice nom m p 23.11 26.08 7.21 9.12 +sacrificiel sacrificiel adj m s 0.25 0.74 0.21 0.41 +sacrificielle sacrificiel adj f s 0.25 0.74 0.04 0.27 +sacrificiels sacrificiel adj m p 0.25 0.74 0 0.07 +sacrifie sacrifier ver 25.67 20.2 2.49 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sacrifient sacrifier ver 25.67 20.2 0.22 0.14 ind:pre:3p; +sacrifier sacrifier ver 25.67 20.2 9.05 7.36 inf; +sacrifiera sacrifier ver 25.67 20.2 0.17 0.27 ind:fut:3s; +sacrifierai sacrifier ver 25.67 20.2 0.43 0 ind:fut:1s; +sacrifieraient sacrifier ver 25.67 20.2 0.05 0 cnd:pre:3p; +sacrifierais sacrifier ver 25.67 20.2 0.56 0 cnd:pre:1s;cnd:pre:2s; +sacrifierait sacrifier ver 25.67 20.2 0.13 0.07 cnd:pre:3s; +sacrifieras sacrifier ver 25.67 20.2 0.02 0 ind:fut:2s; +sacrifierez sacrifier ver 25.67 20.2 0.04 0 ind:fut:2p; +sacrifieriez sacrifier ver 25.67 20.2 0.07 0.07 cnd:pre:2p; +sacrifierions sacrifier ver 25.67 20.2 0.1 0 cnd:pre:1p; +sacrifierons sacrifier ver 25.67 20.2 0.16 0 ind:fut:1p; +sacrifies sacrifier ver 25.67 20.2 0.55 0.07 ind:pre:2s; +sacrifiez sacrifier ver 25.67 20.2 0.55 0.14 imp:pre:2p;ind:pre:2p; +sacrifiiez sacrifier ver 25.67 20.2 0 0.07 ind:imp:2p; +sacrifions sacrifier ver 25.67 20.2 0.55 0.07 imp:pre:1p;ind:pre:1p; +sacrifiât sacrifier ver 25.67 20.2 0 0.07 sub:imp:3s; +sacrifièrent sacrifier ver 25.67 20.2 0.04 0.14 ind:pas:3p; +sacrifié sacrifier ver m s 25.67 20.2 5.98 4.26 par:pas; +sacrifiée sacrifier ver f s 25.67 20.2 1.94 1.22 par:pas; +sacrifiées sacrifier ver f p 25.67 20.2 0.34 0.34 par:pas; +sacrifiés sacrifier ver m p 25.67 20.2 0.89 0.68 par:pas; +sacrilège sacrilège nom m s 1.93 3.24 1.69 2.64 +sacrilèges sacrilège nom m p 1.93 3.24 0.25 0.61 +sacripant sacripant nom m s 0.47 0.47 0.47 0.27 +sacripants sacripant nom m p 0.47 0.47 0 0.2 +sacristain sacristain nom m s 1.52 3.92 1.25 3.72 +sacristaine sacristain nom f s 1.52 3.92 0 0.07 +sacristaines sacristain nom f p 1.52 3.92 0.14 0 +sacristains sacristain nom m p 1.52 3.92 0.14 0.14 +sacristie sacristie nom f s 1.23 4.39 1.13 3.65 +sacristies sacristie nom f p 1.23 4.39 0.1 0.74 +sacristine sacristine nom f s 0.1 0.07 0.1 0.07 +sacro sacro adv 0.11 0.68 0.11 0.68 +sacro_iliaque sacro_iliaque adj s 0.03 0 0.02 0 +sacro_iliaque sacro_iliaque adj f p 0.03 0 0.01 0 +sacro_saint sacro_saint adj m s 0.65 1.35 0.21 0.68 +sacro_saint sacro_saint adj f s 0.65 1.35 0.41 0.47 +sacro_saint sacro_saint adj f p 0.65 1.35 0 0.14 +sacro_saint sacro_saint adj m p 0.65 1.35 0.02 0.07 +sacrum sacrum nom m s 0.04 0.07 0.04 0.07 +sacré sacré adj m s 56.88 45.2 29.19 20.47 +sacré_coeur sacré_coeur nom m s 0 0.2 0 0.2 +sacrédié sacrédié ono 0 0.07 0 0.07 +sacrée sacré adj f s 56.88 45.2 20.68 16.55 +sacrées sacré adj f p 56.88 45.2 2.11 2.43 +sacrément sacrément adv 6.01 2.16 6.01 2.16 +sacrés sacré adj m p 56.88 45.2 4.9 5.74 +sacs sac nom m p 124.6 174.26 18.64 48.78 +sac_poubelle sac_poubelle nom m p 0.24 0.41 0.06 0.07 +sadducéen sadducéen nom m s 0 0.07 0 0.07 +sadienne sadien adj f s 0 0.07 0 0.07 +sadique sadique nom s 2.89 2.3 2.23 1.49 +sadiquement sadiquement adv 0.01 0.2 0.01 0.2 +sadiques sadique nom p 2.89 2.3 0.66 0.81 +sadisme sadisme nom m s 0.36 1.96 0.36 1.89 +sadismes sadisme nom m p 0.36 1.96 0 0.07 +sado sado adj m s 0.37 0 0.37 0 +sadomasochisme sadomasochisme nom m s 0.02 0 0.02 0 +sadomasochiste sadomasochiste adj s 0.13 0.07 0.13 0.07 +sados sado nom p 0 0.07 0 0.07 +saducéen saducéen nom m s 0.02 0.14 0.02 0.14 +safari safari nom m s 1.77 1.28 1.58 0.88 +safari_photo safari_photo nom m s 0.01 0 0.01 0 +safaris safari nom m p 1.77 1.28 0.2 0.41 +safran safran nom m s 0.38 1.89 0.38 1.89 +safrane safraner ver 0.14 0 0.14 0 ind:pre:3s; +safrané safrané adj m s 0 0.14 0 0.14 +saga saga nom f s 0.95 1.01 0.73 0.81 +sagace sagace adj s 0.11 1.55 0.09 0.95 +sagaces sagace adj p 0.11 1.55 0.02 0.61 +sagacité sagacité nom f s 0.09 1.42 0.09 1.42 +sagaie sagaie nom f s 0.14 0.41 0.01 0.07 +sagaies sagaie nom f p 0.14 0.41 0.13 0.34 +sagard sagard nom m s 0 0.07 0 0.07 +sagas saga nom f p 0.95 1.01 0.22 0.2 +sage sage adj s 39.09 31.15 31.93 23.45 +sage_femme sage_femme nom f s 1.52 1.22 1.35 1.22 +sagement sagement adv 2.39 9.46 2.39 9.46 +sages sage adj p 39.09 31.15 7.17 7.7 +sage_femme sage_femme nom f p 1.52 1.22 0.17 0 +sagesse sagesse nom f s 13.58 21.55 13.56 21.42 +sagesses sagesse nom f p 13.58 21.55 0.02 0.14 +sagettes sagette nom f p 0 0.07 0 0.07 +sagittaire sagittaire nom s 0.16 0.14 0.14 0 +sagittaires sagittaire nom p 0.16 0.14 0.02 0.14 +sagittal sagittal adj m s 0.07 0 0.04 0 +sagittale sagittal adj f s 0.07 0 0.03 0 +sagouin sagouin nom m s 0.35 1.22 0.34 1.08 +sagouins sagouin nom m p 0.35 1.22 0.01 0.14 +sagoutier sagoutier nom m s 0 0.14 0 0.14 +sagum sagum nom m s 0 0.07 0 0.07 +saharien saharien adj m s 0.02 1.55 0.01 0.41 +saharienne saharien nom f s 0.62 0.74 0.61 0.41 +sahariennes saharien adj f p 0.02 1.55 0.01 0.41 +sahariens saharien adj m p 0.02 1.55 0 0.34 +sahib sahib nom m s 1.63 0.07 1.61 0.07 +sahibs sahib nom m p 1.63 0.07 0.02 0 +saie saie nom f s 0.04 0 0.04 0 +saigna saigner ver 34.86 21.82 0 0.27 ind:pas:3s; +saignaient saigner ver 34.86 21.82 0.16 1.08 ind:imp:3p; +saignais saigner ver 34.86 21.82 0.45 0.2 ind:imp:1s;ind:imp:2s; +saignait saigner ver 34.86 21.82 1.66 3.31 ind:imp:3s; +saignant saignant adj m s 1.94 4.32 1.25 1.55 +saignante saignant adj f s 1.94 4.32 0.26 1.08 +saignantes saignant adj f p 1.94 4.32 0.04 0.81 +saignants saignant adj m p 1.94 4.32 0.39 0.88 +saignasse saigner ver 34.86 21.82 0 0.07 sub:imp:1s; +saigne saigner ver 34.86 21.82 14.3 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saignement saignement nom m s 2.67 0.54 1.81 0.34 +saignements saignement nom m p 2.67 0.54 0.86 0.2 +saignent saigner ver 34.86 21.82 1.3 0.74 ind:pre:3p; +saigner saigner ver 34.86 21.82 7.63 6.01 inf; +saignera saigner ver 34.86 21.82 0.28 0.14 ind:fut:3s; +saignerai saigner ver 34.86 21.82 0.09 0 ind:fut:1s; +saignerais saigner ver 34.86 21.82 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +saignerait saigner ver 34.86 21.82 0.02 0.2 cnd:pre:3s; +saigneras saigner ver 34.86 21.82 0.03 0 ind:fut:2s; +saignerez saigner ver 34.86 21.82 0.02 0 ind:fut:2p; +saigneront saigner ver 34.86 21.82 0.03 0.07 ind:fut:3p; +saignes saigner ver 34.86 21.82 3.23 0.34 ind:pre:2s; +saigneur saigneur nom m s 0.02 0.07 0.02 0.07 +saignez saigner ver 34.86 21.82 1.5 0.07 imp:pre:2p;ind:pre:2p; +saigniez saigner ver 34.86 21.82 0.07 0 ind:imp:2p; +saignons saigner ver 34.86 21.82 0.07 0 imp:pre:1p;ind:pre:1p; +saigné saigner ver m s 34.86 21.82 2.87 2.09 par:pas; +saignée saignée nom f s 0.59 2.84 0.56 2.36 +saignées saigner ver f p 34.86 21.82 0.14 0 par:pas; +saignés saigner ver m p 34.86 21.82 0.35 0.41 par:pas; +saillaient sailler ver 0.01 3.31 0 1.35 ind:imp:3p; +saillait sailler ver 0.01 3.31 0 0.81 ind:imp:3s; +saillant saillant adj m s 0.18 10.07 0.07 1.76 +saillante saillant adj f s 0.18 10.07 0.02 0.95 +saillantes saillant adj f p 0.18 10.07 0.05 4.59 +saillants saillant adj m p 0.18 10.07 0.04 2.77 +saille sailler ver 0.01 3.31 0 0.14 ind:pre:3s; +saillent sailler ver 0.01 3.31 0.01 0.27 ind:pre:3p; +sailli saillir ver m s 0.03 3.51 0 0.27 par:pas; +saillie saillie nom f s 0.68 5.54 0.61 3.24 +saillies saillie nom f p 0.68 5.54 0.06 2.3 +saillir saillir ver 0.03 3.51 0.01 2.64 inf; +saillissent saillir ver 0.03 3.51 0.02 0.07 sub:imp:3p; +saillit saillir ver 0.03 3.51 0 0.07 ind:pas:3s; +sain sain adj m s 26.63 18.65 13.89 8.58 +saindoux saindoux nom m 0.68 9.8 0.68 9.8 +saine sain adj 26.63 18.65 6.97 6.15 +sainement sainement adv 0.47 0.47 0.47 0.47 +saines sain adj f p 26.63 18.65 1.35 2.09 +sainfoin sainfoin nom m s 0 0.81 0 0.74 +sainfoins sainfoin nom m p 0 0.81 0 0.07 +sains sain adj m p 26.63 18.65 4.42 1.82 +saint saint nom s 39.85 63.31 12.37 35.88 +saint_bernard saint_bernard nom m 0.17 0.68 0.17 0.68 +saint_crépin saint_crépin nom m 0.05 0 0.05 0 +saint_cyrien saint_cyrien nom m s 0 1.01 0 0.68 +saint_cyrien saint_cyrien nom m p 0 1.01 0 0.34 +saint_esprit saint_esprit nom m 0.2 0.47 0.2 0.47 +saint_frusquin saint_frusquin nom m 0.17 0.74 0.17 0.74 +saint_germain saint_germain nom m 0 0.34 0 0.34 +saint_glinglin saint_glinglin nom f s 0.01 0.07 0.01 0.07 +saint_guy saint_guy nom m 0.03 0 0.03 0 +saint_honoré saint_honoré nom m 0.14 0.2 0.14 0.2 +saint_hubert saint_hubert nom f s 0 0.07 0 0.07 +saint_michel saint_michel nom s 0 0.07 0 0.07 +saint_nectaire saint_nectaire nom m 0 0.14 0 0.14 +saint_paulin saint_paulin nom m 0 0.34 0 0.34 +saint_pierre saint_pierre nom m 0.16 0.2 0.16 0.2 +saint_père saint_père nom m s 0.14 2.16 0.14 0.2 +saint_siège saint_siège nom m s 0.3 1.28 0.3 1.28 +saint_synode saint_synode nom m s 0 0.07 0 0.07 +saint_émilion saint_émilion nom m 0 0.41 0 0.41 +sainte saint nom f s 39.85 63.31 17.17 11.89 +sainte_nitouche sainte_nitouche nom f s 0.51 0.14 0.51 0.14 +sainte_nitouche sainte_nitouche nom f s 0.46 0.2 0.35 0.2 +saintement saintement adv 0 0.2 0 0.2 +saintes saint adj f p 23.22 42.77 2.3 4.39 +sainte_nitouche sainte_nitouche nom f p 0.46 0.2 0.11 0 +sainteté sainteté nom f s 4.74 5.54 4.64 5.41 +saintetés sainteté nom f p 4.74 5.54 0.1 0.14 +saints saint nom m p 39.85 63.31 9.69 14.46 +saint_père saint_père nom m p 0.14 2.16 0 1.96 +sais savoir ver_sup 4516.71 2003.58 2492.92 615.27 ind:pre:1s;ind:pre:2s; +saisi saisir ver m s 36.81 135.74 10.15 25.54 par:pas; +saisie saisie nom f s 2.75 1.62 1.73 1.42 +saisie_arrêt saisie_arrêt nom f s 0 0.2 0 0.2 +saisies saisie nom f p 2.75 1.62 1.02 0.2 +saisir saisir ver 36.81 135.74 9.4 33.78 inf; +saisira saisir ver 36.81 135.74 0.4 0.34 ind:fut:3s; +saisirai saisir ver 36.81 135.74 0.17 0.07 ind:fut:1s; +saisirais saisir ver 36.81 135.74 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +saisirait saisir ver 36.81 135.74 0.03 0.47 cnd:pre:3s; +saisiras saisir ver 36.81 135.74 0.03 0.2 ind:fut:2s; +saisirent saisir ver 36.81 135.74 0.14 1.15 ind:pas:3p; +saisirez saisir ver 36.81 135.74 0.03 0 ind:fut:2p; +saisirions saisir ver 36.81 135.74 0 0.07 cnd:pre:1p; +saisirons saisir ver 36.81 135.74 0.04 0.2 ind:fut:1p; +saisiront saisir ver 36.81 135.74 0.04 0.07 ind:fut:3p; +saisis saisir ver m p 36.81 135.74 8.34 10.2 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +saisissable saisissable adj s 0 0.2 0 0.14 +saisissables saisissable adj p 0 0.2 0 0.07 +saisissaient saisir ver 36.81 135.74 0.01 1.42 ind:imp:3p; +saisissais saisir ver 36.81 135.74 0.16 0.81 ind:imp:1s;ind:imp:2s; +saisissait saisir ver 36.81 135.74 0.05 7.09 ind:imp:3s; +saisissant saisissant adj m s 0.61 5 0.33 2.23 +saisissante saisissant adj f s 0.61 5 0.11 2.43 +saisissantes saisissant adj f p 0.61 5 0.04 0.2 +saisissants saisissant adj m p 0.61 5 0.13 0.14 +saisisse saisir ver 36.81 135.74 0.19 0.47 sub:pre:1s;sub:pre:3s; +saisissement saisissement nom m s 0.14 1.96 0.14 1.89 +saisissements saisissement nom m p 0.14 1.96 0 0.07 +saisissent saisir ver 36.81 135.74 0.2 1.49 ind:pre:3p; +saisisses saisir ver 36.81 135.74 0.09 0.07 sub:pre:2s; +saisissez saisir ver 36.81 135.74 2.84 0.47 imp:pre:2p;ind:pre:2p; +saisissiez saisir ver 36.81 135.74 0.13 0 ind:imp:2p; +saisissions saisir ver 36.81 135.74 0.01 0.2 ind:imp:1p; +saisissons saisir ver 36.81 135.74 0.25 0.14 imp:pre:1p;ind:pre:1p; +saisit saisir ver 36.81 135.74 2.39 36.69 ind:pre:3s;ind:pas:3s; +saison saison nom f s 31.95 49.59 28.72 35.54 +saisonnier saisonnier adj m s 0.55 1.42 0.17 0.54 +saisonniers saisonnier nom m p 0.44 0.27 0.43 0.07 +saisonnière saisonnier adj f s 0.55 1.42 0.16 0.07 +saisonnières saisonnier adj f p 0.55 1.42 0.04 0.41 +saisons saison nom f p 31.95 49.59 3.23 14.05 +saisît saisir ver 36.81 135.74 0 0.41 sub:imp:3s; +sait savoir ver_sup 4516.71 2003.58 401.46 245 ind:pre:3s; +saki saki nom m s 0.05 0 0.05 0 +saké saké nom m s 2.55 0.61 2.55 0.54 +sakés saké nom m p 2.55 0.61 0 0.07 +sala saler ver 7.6 6.35 0.1 0.2 ind:pas:3s; +salace salace adj s 0.55 1.28 0.33 0.47 +salaces salace adj p 0.55 1.28 0.21 0.81 +salacité salacité nom f s 0 0.2 0 0.14 +salacités salacité nom f p 0 0.2 0 0.07 +salade salade nom f s 21.8 24.26 15.88 15.41 +salader salader ver 0 0.07 0 0.07 inf; +salades salade nom f p 21.8 24.26 5.92 8.85 +saladier saladier nom m s 0.77 2.43 0.68 2.3 +saladiers saladier nom m p 0.77 2.43 0.09 0.14 +salaient saler ver 7.6 6.35 0.01 0.07 ind:imp:3p; +salaire salaire nom m s 26.43 12.5 22.99 8.92 +salaires salaire nom m p 26.43 12.5 3.44 3.58 +salaison salaison nom f s 0.14 1.22 0.14 0.27 +salaisons salaison nom f p 0.14 1.22 0 0.95 +salait saler ver 7.6 6.35 0.01 0.14 ind:imp:3s; +salam salam nom m s 0.03 0 0.03 0 +salamalec salamalec nom m s 0.32 1.49 0 0.41 +salamalecs salamalec nom m p 0.32 1.49 0.32 1.08 +salamandre salamandre nom f s 0.5 1.62 0.48 1.35 +salamandres salamandre nom f p 0.5 1.62 0.01 0.27 +salami salami nom m s 2.06 0.47 2.04 0.34 +salamis salami nom m p 2.06 0.47 0.02 0.14 +salanque salanque nom f s 0 0.07 0 0.07 +salant salant adj m s 0.07 1.01 0.02 0.2 +salants salant adj m p 0.07 1.01 0.05 0.81 +salariait salarier ver 0.38 0.07 0 0.07 ind:imp:3s; +salariale salarial adj f s 0.18 0 0.17 0 +salariat salariat nom m s 0 0.27 0 0.27 +salariaux salarial adj m p 0.18 0 0.01 0 +salarier salarier ver 0.38 0.07 0.14 0 inf; +salarié salarié adj m s 0.39 0.2 0.2 0.14 +salariée salarié nom f s 0.52 0.95 0.12 0.07 +salariés salarié nom m p 0.52 0.95 0.28 0.2 +salas saler ver 7.6 6.35 1.37 0 ind:pas:2s; +salat salat nom f s 0.03 0 0.03 0 +salaud salaud nom m s 87.4 37.84 66.74 24.86 +salauds salaud nom m p 87.4 37.84 20.66 12.97 +salazariste salazariste adj s 0 0.07 0 0.07 +sale sale adj s 146.86 102.03 120.13 74.86 +salement salement adv 2.28 6.01 2.28 6.01 +saler saler ver 7.6 6.35 0.3 0.41 inf; +salera saler ver 7.6 6.35 0 0.07 ind:fut:3s; +sales sale adj p 146.86 102.03 26.73 27.16 +saleté saleté nom f s 17.55 12.91 11.96 9.66 +saletés saleté nom f p 17.55 12.91 5.59 3.24 +saleur saleur nom m s 0 0.07 0 0.07 +salez saler ver 7.6 6.35 0.11 0.14 imp:pre:2p;ind:pre:2p; +sali salir ver m s 17.51 15.95 2.66 2.36 par:pas; +salicaires salicaire nom f p 0 0.07 0 0.07 +salicine salicine nom f s 0.1 0 0.1 0 +salicole salicole adj s 0 0.07 0 0.07 +salicorne salicorne nom f s 0 0.07 0 0.07 +salie salir ver f s 17.51 15.95 2.12 1.42 par:pas; +salies salir ver f p 17.51 15.95 0.1 0.74 par:pas; +saligaud saligaud nom m s 3.36 1.01 2.46 0.95 +saligauds saligaud nom m p 3.36 1.01 0.9 0.07 +salin salin adj m s 0.31 1.01 0.01 0.61 +saline salin adj f s 0.31 1.01 0.28 0.14 +salines salin nom f p 0.02 2.16 0.02 2.09 +salingue salingue adj m s 0 2.03 0 1.55 +salingues salingue adj p 0 2.03 0 0.47 +salinité salinité nom f s 0.06 0.07 0.06 0.07 +salins salin nom m p 0.02 2.16 0 0.07 +salique salique adj f s 0.06 0.14 0.06 0.14 +salir salir ver 17.51 15.95 6.81 6.08 inf; +salira salir ver 17.51 15.95 0.06 0 ind:fut:3s; +salirai salir ver 17.51 15.95 0.09 0.07 ind:fut:1s; +saliraient salir ver 17.51 15.95 0.14 0 cnd:pre:3p; +salirais salir ver 17.51 15.95 0.07 0 cnd:pre:1s;cnd:pre:2s; +salirait salir ver 17.51 15.95 0.05 0.07 cnd:pre:3s; +salirez salir ver 17.51 15.95 0.02 0 ind:fut:2p; +salis salir ver m p 17.51 15.95 2.59 1.89 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +salissaient salir ver 17.51 15.95 0.03 0.54 ind:imp:3p; +salissait salir ver 17.51 15.95 0.26 0.68 ind:imp:3s; +salissant salissant adj m s 0.65 0.81 0.62 0.54 +salissante salissant adj f s 0.65 0.81 0.03 0 +salissantes salissant adj f p 0.65 0.81 0 0.14 +salissants salissant adj m p 0.65 0.81 0 0.14 +salisse salir ver 17.51 15.95 0.23 0.27 sub:pre:1s;sub:pre:3s; +salissent salir ver 17.51 15.95 0.56 0.41 ind:pre:3p; +salisses salir ver 17.51 15.95 0.01 0 sub:pre:2s; +salisseur salisseur adj m s 0.01 0 0.01 0 +salissez salir ver 17.51 15.95 0.44 0 imp:pre:2p;ind:pre:2p; +salissiez salir ver 17.51 15.95 0.1 0 ind:imp:2p; +salissure salissure nom f s 0.02 0.74 0.02 0.61 +salissures salissure nom f p 0.02 0.74 0 0.14 +salit salir ver 17.51 15.95 1.1 1.01 ind:pre:3s;ind:pas:3s; +saliva saliver ver 0.61 2.7 0 0.14 ind:pas:3s; +salivaient saliver ver 0.61 2.7 0 0.14 ind:imp:3p; +salivaire salivaire adj s 0.22 0.07 0.04 0 +salivaires salivaire adj f p 0.22 0.07 0.19 0.07 +salivais saliver ver 0.61 2.7 0 0.07 ind:imp:1s; +salivait saliver ver 0.61 2.7 0.01 0.47 ind:imp:3s; +salivant saliver ver 0.61 2.7 0.01 0.34 par:pre; +salivation salivation nom f s 0.01 0.07 0.01 0.07 +salive salive nom f s 4.94 18.65 4.91 18.51 +salivent saliver ver 0.61 2.7 0.02 0.07 ind:pre:3p; +saliver saliver ver 0.61 2.7 0.36 1.49 inf; +salives salive nom f p 4.94 18.65 0.03 0.14 +saliveur saliveur nom m s 0 0.07 0 0.07 +saliveuse saliveux adj f s 0 0.34 0 0.27 +saliveuses saliveux adj f p 0 0.34 0 0.07 +salivez saliver ver 0.61 2.7 0.01 0 ind:pre:2p; +salivé saliver ver m s 0.61 2.7 0.01 0 par:pas; +salière salière nom f s 0.28 2.03 0.2 1.28 +salières salière nom f p 0.28 2.03 0.09 0.74 +salle salle nom f s 116.91 215.81 111.1 197.64 +salles salle nom f p 116.91 215.81 5.81 18.18 +salmigondis salmigondis nom m 0 0.34 0 0.34 +salmis salmis nom m 0 0.47 0 0.47 +salmonelle salmonelle nom f s 0.45 0 0.45 0 +salmonellose salmonellose nom f s 0.02 0 0.02 0 +salmonidé salmonidé nom m s 0.01 0 0.01 0 +saloir saloir nom m s 0.1 0.74 0.1 0.68 +saloirs saloir nom m p 0.1 0.74 0 0.07 +salon salon nom m s 39.24 101.22 37.06 84.12 +salonnard salonnard nom m s 0 0.07 0 0.07 +salonniers salonnier nom m p 0 0.07 0 0.07 +salonnières salonnière nom f p 0.14 0 0.14 0 +salons salon nom m p 39.24 101.22 2.19 17.09 +saloon saloon nom m s 5.08 0.47 4.65 0.34 +saloons saloon nom m p 5.08 0.47 0.42 0.14 +salop salop nom m s 0.82 0.54 0.73 0.41 +salopard salopard nom m s 21.8 4.8 16.41 2.77 +salopards salopard nom m p 21.8 4.8 5.38 2.03 +salope salope nom f s 66.97 20.54 62.54 17.97 +salopent saloper ver 0.66 1.01 0.01 0.14 ind:pre:3p; +saloper saloper ver 0.66 1.01 0.16 0.47 inf; +saloperie saloperie nom f s 25.27 19.46 19.38 13.04 +saloperies saloperie nom f p 25.27 19.46 5.89 6.42 +salopes salope nom f p 66.97 20.54 4.42 2.57 +salopette salopette nom f s 0.59 5.61 0.53 4.73 +salopettes salopette nom f p 0.59 5.61 0.07 0.88 +salopez saloper ver 0.66 1.01 0.01 0 ind:pre:2p; +salopiaud salopiaud nom m s 0.16 0.14 0.16 0 +salopiauds salopiaud nom m p 0.16 0.14 0 0.14 +salopiaux salopiau nom m p 0 0.07 0 0.07 +salopiot salopiot nom m s 0.11 0.74 0.09 0.2 +salopiots salopiot nom m p 0.11 0.74 0.02 0.54 +salops salop nom m p 0.82 0.54 0.09 0.14 +salopé saloper ver m s 0.66 1.01 0.45 0.2 par:pas; +salopée saloper ver f s 0.66 1.01 0 0.14 par:pas; +salopées saloper ver f p 0.66 1.01 0.01 0.07 par:pas; +salopés saloper ver m p 0.66 1.01 0.02 0 par:pas; +salpicon salpicon nom m s 0 0.14 0 0.14 +salpingite salpingite nom f s 0.01 0 0.01 0 +salpêtre salpêtre nom m s 0.72 2.16 0.72 2.16 +salpêtreux salpêtreux adj m p 0 0.07 0 0.07 +salpêtrière salpêtrière nom f s 0 0.07 0 0.07 +salpêtrées salpêtrer ver f p 0 0.14 0 0.07 par:pas; +salpêtrés salpêtrer ver m p 0 0.14 0 0.07 par:pas; +sals sal nom m p 0.06 0 0.06 0 +salsa salsa nom f s 1.43 0.14 1.43 0.14 +salsepareille salsepareille nom f s 0.19 0 0.19 0 +salsifis salsifis nom m 0 1.01 0 1.01 +saltimbanque saltimbanque nom s 0.51 2.16 0.33 1.96 +saltimbanques saltimbanque nom p 0.51 2.16 0.17 0.2 +salto salto nom m s 0.08 0 0.08 0 +salua saluer ver 45.09 67.64 0.48 10.27 ind:pas:3s; +saluai saluer ver 45.09 67.64 0.1 1.08 ind:pas:1s; +saluaient saluer ver 45.09 67.64 0.13 3.24 ind:imp:3p; +saluais saluer ver 45.09 67.64 0.08 0.41 ind:imp:1s;ind:imp:2s; +saluait saluer ver 45.09 67.64 0.69 5.34 ind:imp:3s; +saluant saluer ver 45.09 67.64 0.41 3.72 par:pre; +salubre salubre adj s 0.29 1.22 0.01 1.22 +salubres salubre adj p 0.29 1.22 0.28 0 +salubrité salubrité nom f s 0.04 0.34 0.04 0.34 +salue saluer ver 45.09 67.64 17.53 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saluent saluer ver 45.09 67.64 1.56 2.43 ind:pre:3p; +saluer saluer ver 45.09 67.64 11.85 16.49 inf;; +saluera saluer ver 45.09 67.64 0.57 0.2 ind:fut:3s; +saluerai saluer ver 45.09 67.64 0.23 0.07 ind:fut:1s; +salueraient saluer ver 45.09 67.64 0 0.07 cnd:pre:3p; +saluerais saluer ver 45.09 67.64 0.03 0 cnd:pre:1s; +saluerait saluer ver 45.09 67.64 0.03 0.07 cnd:pre:3s; +salueras saluer ver 45.09 67.64 0.3 0.07 ind:fut:2s; +saluerons saluer ver 45.09 67.64 0.02 0.07 ind:fut:1p; +salueront saluer ver 45.09 67.64 0.06 0.07 ind:fut:3p; +salues saluer ver 45.09 67.64 0.99 0.07 ind:pre:2s; +salueur salueur nom m s 0.01 0 0.01 0 +saluez saluer ver 45.09 67.64 4.48 0.68 imp:pre:2p;ind:pre:2p; +saluiez saluer ver 45.09 67.64 0.01 0.07 ind:imp:2p; +saluions saluer ver 45.09 67.64 0 0.14 ind:imp:1p; +saluons saluer ver 45.09 67.64 2.09 0.61 imp:pre:1p;ind:pre:1p; +salut salut ono 203.1 6.55 203.1 6.55 +salutaire salutaire adj s 1.29 2.5 1.28 2.16 +salutairement salutairement adv 0 0.07 0 0.07 +salutaires salutaire adj p 1.29 2.5 0.01 0.34 +salutation salutation nom f s 5.79 2.36 0.24 0.81 +salutations salutation nom f p 5.79 2.36 5.55 1.55 +salutiste salutiste nom s 0.01 0.34 0 0.07 +salutistes salutiste nom p 0.01 0.34 0.01 0.27 +saluts salut nom m p 277.42 61.82 0.07 2.84 +saluâmes saluer ver 45.09 67.64 0 0.2 ind:pas:1p; +saluât saluer ver 45.09 67.64 0 0.14 sub:imp:3s; +saluèrent saluer ver 45.09 67.64 0 2.84 ind:pas:3p; +salué saluer ver m s 45.09 67.64 2.36 5.61 par:pas; +saluée saluer ver f s 45.09 67.64 0.69 1.76 par:pas; +saluées saluer ver f p 45.09 67.64 0.14 0.07 par:pas; +salués saluer ver m p 45.09 67.64 0.25 0.88 par:pas; +salvadorien salvadorien nom m s 0.78 0 0.14 0 +salvadorienne salvadorien adj f s 0.2 0 0.03 0 +salvadoriens salvadorien nom m p 0.78 0 0.64 0 +salvateur salvateur adj m s 0.19 0.95 0.02 0.74 +salvateurs salvateur adj m p 0.19 0.95 0.01 0 +salvation salvation nom f s 0.04 0 0.04 0 +salvatrice salvateur adj f s 0.19 0.95 0.16 0.2 +salve salve nom f s 1.69 7.43 1.29 4.53 +salves salve nom f p 1.69 7.43 0.4 2.91 +salvifique salvifique adj s 0 0.07 0 0.07 +salzbourgeoises salzbourgeois adj f p 0 0.07 0 0.07 +salé saler ver m s 7.6 6.35 1.33 0.95 par:pas; +salée salé adj f s 4.47 11.01 2.3 4.26 +salées salé adj f p 4.47 11.01 0.4 1.55 +salés salé adj m p 4.47 11.01 0.49 1.82 +salésienne salésien adj f s 0 0.07 0 0.07 +samaras samara nom m p 0 0.07 0 0.07 +samaritain samaritain nom m s 0.5 0.41 0.28 0.07 +samaritaine samaritaine nom f s 0.27 1.08 0.27 1.08 +samaritains samaritain nom m p 0.5 0.41 0.22 0.34 +samba samba nom f s 2.91 7.5 2.91 7.5 +sambenito sambenito nom m s 0 0.14 0 0.14 +sambo sambo nom m s 0.2 0 0.2 0 +samedi samedi nom m s 46.53 37.43 44.51 34.26 +samedis samedi nom m p 46.53 37.43 2.03 3.18 +samizdats samizdat nom m p 0 0.07 0 0.07 +sammy sammy nom m s 0.13 0 0.13 0 +samoan samoan adj m s 0.15 0 0.13 0 +samoans samoan adj m p 0.15 0 0.02 0 +samouraï samouraï nom m s 1.66 2.77 1.3 1.69 +samouraïs samouraï nom m p 1.66 2.77 0.36 1.08 +samovar samovar nom m s 0.45 3.78 0.45 2.23 +samovars samovar nom m p 0.45 3.78 0 1.55 +samoyède samoyède nom m s 0 0.07 0 0.07 +sampan sampan nom m s 0.09 0.07 0.09 0.07 +sampang sampang nom m s 0.14 0.34 0.14 0.27 +sampangs sampang nom m p 0.14 0.34 0 0.07 +sample sample nom m s 0.07 0 0.07 0 +sampler sampler nom m s 0.1 0 0.1 0 +samurai samurai nom m s 0.68 0 0.68 0 +san_francisco san_francisco nom s 0.02 0.07 0.02 0.07 +sana sana nom m s 0.53 2.43 0.53 2.3 +sanas sana nom m p 0.53 2.43 0 0.14 +sanatorium sanatorium nom m s 1.69 4.39 1.59 4.19 +sanatoriums sanatorium nom m p 1.69 4.39 0.1 0.2 +sancerre sancerre nom m s 0 0.2 0 0.2 +sanctifiai sanctifier ver 3.82 1.69 0 0.07 ind:pas:1s; +sanctifiait sanctifier ver 3.82 1.69 0 0.07 ind:imp:3s; +sanctifiante sanctifiant adj f s 0 0.14 0 0.14 +sanctification sanctification nom f s 0.01 0.07 0.01 0.07 +sanctificatrice sanctificateur adj f s 0 0.07 0 0.07 +sanctifie sanctifier ver 3.82 1.69 0.25 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +sanctifier sanctifier ver 3.82 1.69 0.48 0.2 inf; +sanctifiez sanctifier ver 3.82 1.69 0 0.07 imp:pre:2p; +sanctifié sanctifier ver m s 3.82 1.69 2.87 0.81 par:pas; +sanctifiée sanctifier ver f s 3.82 1.69 0.06 0.14 par:pas; +sanctifiées sanctifier ver f p 3.82 1.69 0.01 0.07 par:pas; +sanctifiés sanctifier ver m p 3.82 1.69 0.14 0.07 par:pas; +sanction sanction nom f s 2.35 4.86 1.23 2.3 +sanctionnaient sanctionner ver 1.01 2.91 0 0.14 ind:imp:3p; +sanctionnait sanctionner ver 1.01 2.91 0 0.14 ind:imp:3s; +sanctionnant sanctionner ver 1.01 2.91 0.01 0.07 par:pre; +sanctionne sanctionner ver 1.01 2.91 0.13 0.14 ind:pre:3s; +sanctionner sanctionner ver 1.01 2.91 0.15 0.74 inf; +sanctionnera sanctionner ver 1.01 2.91 0.03 0 ind:fut:3s; +sanctionnerait sanctionner ver 1.01 2.91 0 0.14 cnd:pre:3s; +sanctionnez sanctionner ver 1.01 2.91 0.01 0 ind:pre:2p; +sanctionnions sanctionner ver 1.01 2.91 0 0.07 ind:imp:1p; +sanctionnèrent sanctionner ver 1.01 2.91 0 0.07 ind:pas:3p; +sanctionné sanctionner ver m s 1.01 2.91 0.35 0.34 par:pas; +sanctionnée sanctionner ver f s 1.01 2.91 0.15 0.68 par:pas; +sanctionnées sanctionner ver f p 1.01 2.91 0.15 0.2 par:pas; +sanctionnés sanctionner ver m p 1.01 2.91 0.04 0.2 par:pas; +sanctions sanction nom f p 2.35 4.86 1.12 2.57 +sanctuaire sanctuaire nom m s 4.34 6.42 4.26 5.2 +sanctuaires sanctuaire nom m p 4.34 6.42 0.08 1.22 +sanctus sanctus nom m 0.23 0.68 0.23 0.68 +sandale sandal nom f s 0.22 8.51 0.22 0.74 +sandales sandale nom f p 2.99 0.2 2.99 0.2 +sandalettes sandalette nom f p 0.01 0.61 0.01 0.61 +sandalier sandalier nom m s 0 0.07 0 0.07 +sanderling sanderling nom m s 0.03 0 0.03 0 +sandiniste sandiniste adj m s 0.02 0 0.02 0 +sandinistes sandiniste nom p 0.11 0 0.11 0 +sandjak sandjak nom m s 0 0.2 0 0.2 +sandow sandow nom m s 0 0.27 0 0.07 +sandows sandow nom m p 0 0.27 0 0.2 +sandre sandre nom m s 0.02 0.07 0.01 0 +sandres sandre nom m p 0.02 0.07 0.01 0.07 +sandwich sandwich nom m s 0 9.93 0 8.18 +sandwiches sandwiche nom m p 0 4.93 0 4.93 +sandwichs sandwich nom m p 0 9.93 0 1.76 +sang sang nom m s 304.75 207.3 304.3 205.2 +sang_froid sang_froid nom m 5.41 9.26 5.41 9.26 +sangla sangler ver 0.86 6.49 0 0.07 ind:pas:3s; +sanglai sangler ver 0.86 6.49 0 0.07 ind:pas:1s; +sanglait sangler ver 0.86 6.49 0 0.2 ind:imp:3s; +sanglant sanglant adj m s 6.69 20 3.23 6.01 +sanglante sanglant adj f s 6.69 20 1.69 6.22 +sanglantes sanglant adj f p 6.69 20 0.86 3.58 +sanglants sanglant adj m p 6.69 20 0.91 4.19 +sangle sangle nom f s 1.68 3.78 1.08 1.55 +sanglent sangler ver 0.86 6.49 0 0.07 ind:pre:3p; +sangler sangler ver 0.86 6.49 0.07 0.07 inf; +sangles sangle nom f p 1.68 3.78 0.59 2.23 +sanglez sangler ver 0.86 6.49 0.04 0 imp:pre:2p; +sanglier sanglier nom m s 6.05 8.78 4.59 5.34 +sangliers sanglier nom m p 6.05 8.78 1.47 3.45 +sanglot sanglot nom m s 3.79 29.12 0.3 9.59 +sanglota sangloter ver 2.27 14.66 0.04 1.69 ind:pas:3s; +sanglotai sangloter ver 2.27 14.66 0 0.34 ind:pas:1s; +sanglotaient sangloter ver 2.27 14.66 0 0.14 ind:imp:3p; +sanglotais sangloter ver 2.27 14.66 0.05 0.27 ind:imp:1s;ind:imp:2s; +sanglotait sangloter ver 2.27 14.66 0.28 3.45 ind:imp:3s; +sanglotant sangloter ver 2.27 14.66 0.05 2.03 par:pre; +sanglotante sanglotant adj f s 0.01 0.95 0 0.47 +sanglotants sanglotant adj m p 0.01 0.95 0 0.07 +sanglote sangloter ver 2.27 14.66 1.06 2.09 ind:pre:1s;ind:pre:3s; +sanglotent sangloter ver 2.27 14.66 0.32 0.27 ind:pre:3p; +sangloter sangloter ver 2.27 14.66 0.31 3.45 inf; +sanglotez sangloter ver 2.27 14.66 0.05 0 imp:pre:2p;ind:pre:2p; +sanglots sanglot nom m p 3.79 29.12 3.49 19.53 +sanglotâmes sangloter ver 2.27 14.66 0 0.07 ind:pas:1p; +sangloté sangloter ver m s 2.27 14.66 0.11 0.81 par:pas; +sanglotés sangloter ver m p 2.27 14.66 0 0.07 par:pas; +sanglé sangler ver m s 0.86 6.49 0.04 2.43 par:pas; +sanglée sangler ver f s 0.86 6.49 0.04 0.81 par:pas; +sanglées sangler ver f p 0.86 6.49 0 0.2 par:pas; +sanglés sangler ver m p 0.86 6.49 0 1.35 par:pas; +sangria sangria nom f s 0.72 0.34 0.72 0.34 +sangs sang nom m p 304.75 207.3 0.45 2.09 +sangsue sangsue nom f s 2.9 1.28 1.05 0.54 +sangsues sangsue nom f p 2.9 1.28 1.85 0.74 +sanguin sanguin adj m s 8.84 3.78 4.33 2.3 +sanguinaire sanguinaire adj s 3.06 2.3 2.14 1.82 +sanguinaires sanguinaire adj p 3.06 2.3 0.91 0.47 +sanguine sanguin adj f s 8.84 3.78 1.81 0.95 +sanguines sanguin adj f p 8.84 3.78 0.27 0 +sanguinolent sanguinolent adj m s 0.28 3.18 0.05 0.95 +sanguinolente sanguinolent adj f s 0.28 3.18 0.07 1.22 +sanguinolentes sanguinolent adj f p 0.28 3.18 0.01 0.54 +sanguinolents sanguinolent adj m p 0.28 3.18 0.15 0.47 +sanguins sanguin adj m p 8.84 3.78 2.44 0.54 +sanhédrin sanhédrin nom m s 0 0.41 0 0.41 +sanie sanie nom f s 0.01 1.08 0 0.61 +sanies sanie nom f p 0.01 1.08 0.01 0.47 +sanieuses sanieux adj f p 0 0.14 0 0.07 +sanieux sanieux adj m 0 0.14 0 0.07 +sanitaire sanitaire adj s 3.52 1.55 2.42 1.08 +sanitaires sanitaire adj p 3.52 1.55 1.11 0.47 +sans sans pre 1003.44 2224.12 1003.44 2224.12 +sans_coeur sans_coeur adj 0.01 0.07 0.01 0.07 +sans_culotte sans_culotte nom m s 0.16 0.41 0.16 0 +sans_culotte sans_culotte nom m p 0.16 0.41 0 0.41 +sans_culottide sans_culottide nom f p 0 0.07 0 0.07 +sans_faute sans_faute nom m 0.05 0 0.05 0 +sans_façon sans_façon nom m 0.1 0.14 0.1 0.14 +sans_fil sans_fil nom m 0.21 0.2 0.21 0.2 +sans_filiste sans_filiste nom m s 0 0.74 0 0.61 +sans_filiste sans_filiste nom m p 0 0.74 0 0.14 +sans_grade sans_grade nom m 0.05 0.14 0.05 0.14 +sans_pareil sans_pareil nom m 0 5.2 0 5.2 +sanscrit sanscrit adj m s 0.05 0.2 0.04 0.14 +sanscrite sanscrit adj f s 0.05 0.2 0.01 0 +sanscrits sanscrit adj m p 0.05 0.2 0 0.07 +sanskrit sanskrit nom m s 0.11 0.14 0.11 0.14 +sansonnet sansonnet nom m s 0.32 0.47 0.32 0.41 +sansonnets sansonnet nom m p 0.32 0.47 0 0.07 +santal santal nom m s 0.15 1.08 0.15 0.81 +santals santal nom m p 0.15 1.08 0 0.27 +santiag santiag nom f s 0.08 1.49 0.01 0.07 +santiags santiag nom m p 0.08 1.49 0.07 1.42 +santoche santoche nom f s 0 0.07 0 0.07 +santon santon nom m s 0.03 0.34 0.03 0 +santons santon nom m p 0.03 0.34 0 0.34 +santé santé nom f s 88.69 52.7 88.58 52.43 +santés santé nom f p 88.69 52.7 0.11 0.27 +saoudien saoudien adj m s 0.6 0.14 0.37 0 +saoudienne saoudien adj f s 0.6 0.14 0.07 0 +saoudiennes saoudienne nom f p 0.05 0 0.03 0 +saoudiens saoudien nom m p 0.47 0 0.45 0 +saoudite saoudite adj f s 0.05 0.07 0.05 0.07 +saoul saoul adj m s 11.97 13.18 7.81 9.46 +saoula saouler ver 6.84 8.38 0.01 0.07 ind:pas:3s; +saoulaient saouler ver 6.84 8.38 0.01 0.27 ind:imp:3p; +saoulais saouler ver 6.84 8.38 0.01 0.14 ind:imp:1s; +saoulait saouler ver 6.84 8.38 0.11 0.88 ind:imp:3s; +saoulant saouler ver 6.84 8.38 0.04 0.07 par:pre; +saoulard saoulard nom m s 0.17 0.07 0.17 0.07 +saoule saoul adj f s 11.97 13.18 2.87 2.09 +saoulent saouler ver 6.84 8.38 0.3 0.07 ind:pre:3p; +saouler saouler ver 6.84 8.38 2.21 1.82 inf; +saoulerait saouler ver 6.84 8.38 0.01 0.14 cnd:pre:3s; +saouleras saouler ver 6.84 8.38 0 0.07 ind:fut:2s; +saoulerez saouler ver 6.84 8.38 0.02 0 ind:fut:2p; +saoulerie saoulerie nom f s 0.03 0.47 0.03 0.27 +saouleries saoulerie nom f p 0.03 0.47 0 0.2 +saoules saouler ver 6.84 8.38 0.83 0.07 ind:pre:2s; +saoulez saouler ver 6.84 8.38 0.14 0.2 imp:pre:2p;ind:pre:2p; +saoulions saouler ver 6.84 8.38 0 0.07 ind:imp:1p; +saouls saoul adj m p 11.97 13.18 1.24 1.55 +saoulé saouler ver m s 6.84 8.38 0.89 1.89 par:pas; +saoulée saouler ver f s 6.84 8.38 0.3 0.41 par:pas; +saoulées saouler ver f p 6.84 8.38 0.01 0 par:pas; +saoulés saouler ver m p 6.84 8.38 0.07 0.68 par:pas; +sapaient saper ver 3.23 7.91 0 0.2 ind:imp:3p; +sapait saper ver 3.23 7.91 0.03 0.41 ind:imp:3s; +sapajou sapajou nom m s 0.01 0.47 0.01 0.41 +sapajous sapajou nom m p 0.01 0.47 0 0.07 +sape saper ver 3.23 7.91 0.35 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sapement sapement nom m s 0 0.95 0 0.61 +sapements sapement nom m p 0 0.95 0 0.34 +sapent saper ver 3.23 7.91 0.08 0.27 ind:pre:3p; +saper saper ver 3.23 7.91 1.13 1.22 inf; +saperai saper ver 3.23 7.91 0.02 0 ind:fut:1s; +saperlipopette saperlipopette ono 0.62 0.07 0.62 0.07 +saperlotte saperlotte nom m s 0.07 0.14 0.07 0.14 +sapes sape nom f p 0.59 5.95 0.48 1.82 +sapeur sapeur nom m s 0.78 4.8 0.56 1.69 +sapeur_pompier sapeur_pompier nom m s 0.11 0.61 0.07 0 +sapeurs sapeur nom m p 0.78 4.8 0.21 3.11 +sapeur_pompier sapeur_pompier nom m p 0.11 0.61 0.04 0.61 +sapez saper ver 3.23 7.91 0.08 0 ind:pre:2p; +saphir saphir nom m s 0.64 1.96 0.34 1.22 +saphirs saphir nom m p 0.64 1.96 0.3 0.74 +saphisme saphisme nom m s 0 0.07 0 0.07 +saphène saphène adj f s 0.07 0 0.07 0 +sapide sapide adj m s 0 0.2 0 0.14 +sapides sapide adj p 0 0.2 0 0.07 +sapidité sapidité nom f s 0 0.07 0 0.07 +sapien sapiens adj m s 0.64 0.68 0.09 0 +sapience sapience nom f s 0 0.07 0 0.07 +sapiens sapiens adj m p 0.64 0.68 0.56 0.68 +sapin sapin nom m s 6.91 26.28 5.95 9.86 +sapines sapine nom f p 0 0.27 0 0.27 +sapinette sapinette nom f s 0 0.2 0 0.07 +sapinettes sapinette nom f p 0 0.2 0 0.14 +sapinière sapinière nom f s 0 1.42 0 0.81 +sapinières sapinière nom f p 0 1.42 0 0.61 +sapins sapin nom m p 6.91 26.28 0.95 16.42 +saponaires saponaire nom f p 0 0.07 0 0.07 +saponification saponification nom f s 0.03 0.14 0.03 0.14 +saponifiées saponifier ver f p 0 0.07 0 0.07 par:pas; +saponite saponite nom f s 0.02 0.27 0.02 0.27 +sapotille sapotille nom f s 0.1 0 0.1 0 +sapotillier sapotillier nom m s 0 0.27 0 0.27 +sapristi sapristi ono 1.69 0.68 1.69 0.68 +sapé saper ver m s 3.23 7.91 0.99 2.84 par:pas; +sapée saper ver f s 3.23 7.91 0.2 1.55 par:pas; +sapées saper ver f p 3.23 7.91 0.02 0.14 par:pas; +sapés saper ver m p 3.23 7.91 0.1 0.61 par:pas; +saque saquer ver 1.37 1.08 0.03 0.07 ind:pre:1s; +saquent saquer ver 1.37 1.08 0.14 0 ind:pre:3p; +saquer saquer ver 1.37 1.08 0.87 0.68 inf; +saqué saquer ver m s 1.37 1.08 0.2 0.14 par:pas; +saquée saquer ver f s 1.37 1.08 0.01 0.07 par:pas; +saqués saquer ver m p 1.37 1.08 0.12 0.14 par:pas; +sar sar nom m s 0 0.07 0 0.07 +sara sara nom f s 0.1 0 0.1 0 +sarabande sarabande nom f s 0.31 1.89 0.21 1.69 +sarabandes sarabande nom f p 0.31 1.89 0.1 0.2 +sarbacane sarbacane nom f s 0.21 0.95 0.14 0.47 +sarbacanes sarbacane nom f p 0.21 0.95 0.07 0.47 +sarcasme sarcasme nom m s 2.37 4.66 1.13 1.35 +sarcasmes sarcasme nom m p 2.37 4.66 1.24 3.31 +sarcastique sarcastique adj s 2.23 2.84 2.05 2.43 +sarcastiquement sarcastiquement adv 0 0.2 0 0.2 +sarcastiques sarcastique adj p 2.23 2.84 0.18 0.41 +sarcelle sarcelle nom f s 0.16 0.81 0.16 0.27 +sarcelles sarcelle nom f p 0.16 0.81 0 0.54 +sarcine sarcine nom f s 0.01 0 0.01 0 +sarclage sarclage nom m s 0 0.07 0 0.07 +sarclait sarcler ver 0.13 1.89 0.01 0.47 ind:imp:3s; +sarclant sarcler ver 0.13 1.89 0 0.27 par:pre; +sarcle sarcler ver 0.13 1.89 0.01 0.07 ind:pre:3s; +sarclent sarcler ver 0.13 1.89 0 0.07 ind:pre:3p; +sarcler sarcler ver 0.13 1.89 0.1 0.95 inf; +sarclette sarclette nom f s 0.01 0 0.01 0 +sarcleuse sarcleur nom f s 0.06 0 0.06 0 +sarcloir sarcloir nom m s 0 0.14 0 0.14 +sarclées sarcler ver f p 0.13 1.89 0.01 0.07 par:pas; +sarcome sarcome nom m s 0.34 0 0.34 0 +sarcophage sarcophage nom m s 2.43 1.28 2.34 0.95 +sarcophages sarcophage nom m p 2.43 1.28 0.09 0.34 +sarcoïdose sarcoïdose nom f s 0.1 0 0.1 0 +sardanapalesques sardanapalesque adj m p 0 0.07 0 0.07 +sardanes sardane nom f p 0 0.07 0 0.07 +sarde sarde adj m s 0.31 0 0.31 0 +sardinaient sardiner ver 0 0.07 0 0.07 ind:imp:3p; +sardine sardine nom f s 3.88 8.38 0.84 1.28 +sardines sardine nom f p 3.88 8.38 3.04 7.09 +sardiniers sardinier nom m p 0.01 0.07 0.01 0.07 +sardoine sardoine nom f s 0 0.07 0 0.07 +sardonique sardonique adj s 0.1 1.01 0.1 0.95 +sardoniquement sardoniquement adv 0 0.07 0 0.07 +sardoniques sardonique adj m p 0.1 1.01 0 0.07 +sargasse sargasse nom f s 0 0.14 0 0.07 +sargasses sargasse nom f p 0 0.14 0 0.07 +sari sari nom m s 0.98 0.2 0.72 0.14 +sarigue sarigue nom f s 0 0.07 0 0.07 +sarin sarin adj f s 0.25 0 0.25 0 +saris sari nom m p 0.98 0.2 0.26 0.07 +sarment sarment nom m s 0.11 1.28 0.11 0.27 +sarments sarment nom m p 0.11 1.28 0 1.01 +sarong sarong nom m s 0.19 0 0.19 0 +saroual saroual nom m s 0.01 0.07 0.01 0.07 +sarouel sarouel nom m s 0 0.14 0 0.14 +sarracénie sarracénie nom f s 0.01 0 0.01 0 +sarrasin sarrasin nom m s 0.2 0.68 0.2 0.41 +sarrasine sarrasin adj f s 0.3 0.74 0.16 0.2 +sarrasines sarrasin adj f p 0.3 0.74 0 0.07 +sarrasins sarrasin adj m p 0.3 0.74 0 0.2 +sarrau sarrau nom m s 0.14 1.42 0.04 1.28 +sarraus sarrau nom m p 0.14 1.42 0.1 0.14 +sarreau sarreau nom m s 0 0.2 0 0.2 +sarriette sarriette nom f s 0.01 0.07 0.01 0.07 +sarrois sarrois adj m 0 0.2 0 0.14 +sarroise sarrois adj f s 0 0.2 0 0.07 +sarrussophone sarrussophone nom m s 0 0.07 0 0.07 +sas sas nom m 3.26 0.74 3.26 0.74 +sashimi sashimi nom m s 0.23 0 0.23 0 +sassafras sassafras nom m 0.07 0 0.07 0 +sassanide sassanide adj f s 0 0.2 0 0.14 +sassanides sassanide adj p 0 0.2 0 0.07 +sasse sasser ver 0.14 0.07 0.14 0.07 ind:pre:3s; +sasseur sasseur nom m s 0.54 0 0.54 0 +satan satan nom m s 0.42 0.14 0.42 0.14 +satana sataner ver 1.12 0.81 0.01 0.34 ind:pas:3s; +satanaient sataner ver 1.12 0.81 0 0.07 ind:imp:3p; +satanas sataner ver 1.12 0.81 0.64 0.14 ind:pas:2s; +sataner sataner ver 1.12 0.81 0 0.2 inf; +satanique satanique adj s 3.11 1.49 1.8 0.95 +sataniques satanique adj p 3.11 1.49 1.31 0.54 +sataniser sataniser ver 0.12 0 0.12 0 inf; +satanisme satanisme nom m s 0.31 0.34 0.31 0.34 +sataniste sataniste adj s 0.21 0.07 0.21 0.07 +satané satané adj m s 6.89 2.36 3.16 0.81 +satanée satané adj f s 6.89 2.36 2.08 0.74 +satanées satané adj f p 6.89 2.36 0.53 0.41 +satanés satané adj m p 6.89 2.36 1.12 0.41 +satelliser satelliser ver 0.02 0.07 0.02 0 inf; +satellisée satelliser ver f s 0.02 0.07 0 0.07 par:pas; +satellitaire satellitaire adj s 0.02 0 0.02 0 +satellite satellite nom m s 13.41 1.96 10.63 0.81 +satellites satellite nom m p 13.41 1.96 2.79 1.15 +satellites_espion satellites_espion nom m p 0.02 0 0.02 0 +sati sati nom m s 0.02 0 0.02 0 +satiation satiation nom f s 0 0.07 0 0.07 +satin satin nom m s 2.65 8.58 2.65 8.11 +satinait satiner ver 0.07 0.41 0 0.07 ind:imp:3s; +satine satiner ver 0.07 0.41 0.06 0 imp:pre:2s; +satinette satinette nom f s 0 0.41 0 0.41 +satins satin nom m p 2.65 8.58 0 0.47 +satiné satiné adj m s 0.11 1.35 0.03 0.2 +satinée satiné adj f s 0.11 1.35 0.05 0.68 +satinées satiné adj f p 0.11 1.35 0.02 0.27 +satinés satiné adj m p 0.11 1.35 0.01 0.2 +satire satire nom f s 0.35 0.47 0.27 0.41 +satires satire nom f p 0.35 0.47 0.08 0.07 +satirique satirique adj s 0.24 0.68 0.22 0.41 +satiriques satirique adj p 0.24 0.68 0.02 0.27 +satirisaient satiriser ver 0 0.07 0 0.07 ind:imp:3p; +satiriste satiriste nom s 0.12 0.07 0.12 0.07 +satisfaction satisfaction nom f s 7.37 41.22 7.03 37.09 +satisfactions satisfaction nom f p 7.37 41.22 0.34 4.12 +satisfaire satisfaire ver 25.1 38.11 9.6 12.36 inf;; +satisfais satisfaire ver 25.1 38.11 0.33 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +satisfaisaient satisfaire ver 25.1 38.11 0.04 0.07 ind:imp:3p; +satisfaisais satisfaire ver 25.1 38.11 0.18 0.2 ind:imp:1s;ind:imp:2s; +satisfaisait satisfaire ver 25.1 38.11 0.13 2.43 ind:imp:3s; +satisfaisant satisfaisant adj m s 2.64 8.18 1.35 2.64 +satisfaisante satisfaisant adj f s 2.64 8.18 0.78 3.92 +satisfaisantes satisfaisant adj f p 2.64 8.18 0.23 1.15 +satisfaisants satisfaisant adj m p 2.64 8.18 0.29 0.47 +satisfait satisfaire ver m s 25.1 38.11 7.89 13.45 ind:pre:3s;par:pas;par:pas; +satisfaite satisfaire ver f s 25.1 38.11 2.29 4.53 par:pas; +satisfaites satisfaire ver f p 25.1 38.11 0.29 0.27 ind:pre:2p;par:pas; +satisfaits satisfaire ver m p 25.1 38.11 2.3 1.96 par:pas; +satisfasse satisfaire ver 25.1 38.11 0.07 0.14 sub:pre:3s; +satisfassent satisfaire ver 25.1 38.11 0.01 0.07 sub:pre:3p; +satisfecit satisfecit nom m 0.02 0.34 0.02 0.34 +satisfera satisfaire ver 25.1 38.11 0.52 0.07 ind:fut:3s; +satisferai satisfaire ver 25.1 38.11 0.15 0 ind:fut:1s; +satisferaient satisfaire ver 25.1 38.11 0.04 0 cnd:pre:3p; +satisferais satisfaire ver 25.1 38.11 0.14 0 cnd:pre:1s; +satisferait satisfaire ver 25.1 38.11 0.28 0.2 cnd:pre:3s; +satisferiez satisfaire ver 25.1 38.11 0.03 0 cnd:pre:2p; +satisferons satisfaire ver 25.1 38.11 0.23 0 ind:fut:1p; +satisferont satisfaire ver 25.1 38.11 0.02 0.07 ind:fut:3p; +satisfirent satisfaire ver 25.1 38.11 0 0.14 ind:pas:3p; +satisfis satisfaire ver 25.1 38.11 0 0.07 ind:pas:1s; +satisfit satisfaire ver 25.1 38.11 0.01 0.47 ind:pas:3s; +satisfont satisfaire ver 25.1 38.11 0.43 0.2 ind:pre:3p; +satiété satiété nom f s 0.43 1.42 0.43 1.42 +satonne satonner ver 0 0.54 0 0.07 ind:pre:3s; +satonner satonner ver 0 0.54 0 0.34 inf; +satonné satonner ver m s 0 0.54 0 0.14 par:pas; +satrape satrape nom m s 0.02 0.88 0.02 0.34 +satrapes satrape nom m p 0.02 0.88 0 0.54 +satrapie satrapie nom f s 0.01 0 0.01 0 +saturait saturer ver 1.81 4.32 0.01 0.27 ind:imp:3s; +saturant saturer ver 1.81 4.32 0 0.14 par:pre; +saturation saturation nom f s 1.08 1.08 1.08 1.08 +sature saturer ver 1.81 4.32 0.47 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saturent saturer ver 1.81 4.32 0.01 0 ind:pre:3p; +saturer saturer ver 1.81 4.32 0.29 0.27 inf; +saturnales saturnales nom f p 0.14 0.34 0.14 0.34 +saturnien saturnien adj m s 0 0.2 0 0.07 +saturniennes saturnienne nom f p 0 0.07 0 0.07 +saturniens saturnien adj m p 0 0.2 0 0.14 +saturnisme saturnisme nom m s 0 0.07 0 0.07 +saturons saturer ver 1.81 4.32 0.01 0 ind:pre:1p; +saturé saturer ver m s 1.81 4.32 0.5 1.82 par:pas; +saturée saturer ver f s 1.81 4.32 0.06 1.42 par:pas; +saturées saturer ver f p 1.81 4.32 0.3 0.14 par:pas; +saturés saturer ver m p 1.81 4.32 0.16 0.2 par:pas; +satyre satyre nom m s 0.99 5.54 0.42 3.85 +satyres satyre nom m p 0.99 5.54 0.57 1.69 +satyrique satyrique adj s 0.01 0 0.01 0 +sauce sauce nom f s 19.24 13.72 18.33 11.76 +saucent saucer ver 0.69 2.3 0 0.07 ind:pre:3p; +saucer saucer ver 0.69 2.3 0.06 0.34 inf; +sauces sauce nom f p 19.24 13.72 0.91 1.96 +saucier saucier nom m s 0.14 0 0.14 0 +sauciflard sauciflard nom m s 0 0.34 0 0.34 +saucisse saucisse nom f s 15.89 8.78 7.37 3.18 +saucisses saucisse nom f p 15.89 8.78 8.53 5.61 +saucisson saucisson nom m s 2.09 8.04 2.08 6.08 +saucissonnage saucissonnage nom m s 0 0.14 0 0.07 +saucissonnages saucissonnage nom m p 0 0.14 0 0.07 +saucissonnant saucissonner ver 0.03 0.95 0 0.07 par:pre; +saucissonne saucissonner ver 0.03 0.95 0 0.14 ind:pre:3s; +saucissonner saucissonner ver 0.03 0.95 0.01 0.2 inf; +saucissonné saucissonner ver m s 0.03 0.95 0.01 0.2 par:pas; +saucissonnée saucissonner ver f s 0.03 0.95 0 0.2 par:pas; +saucissonnés saucissonner ver m p 0.03 0.95 0.01 0.14 par:pas; +saucissons saucisson nom m p 2.09 8.04 0.01 1.96 +saucière saucière nom f s 0.27 0.47 0.24 0.34 +saucières saucière nom f p 0.27 0.47 0.03 0.14 +saucée saucée nom f s 0.13 0 0.13 0 +sauf sauf pre 108.54 83.99 108.54 83.99 +sauf_conduit sauf_conduit nom m s 1.14 1.01 0.77 0.88 +sauf_conduit sauf_conduit nom m p 1.14 1.01 0.37 0.14 +saufs sauf adj_sup m p 12.52 6.69 2.38 0.74 +sauge sauge nom f s 0.81 0.74 0.81 0.74 +saugrenu saugrenu adj m s 0.62 7.23 0.2 2.09 +saugrenue saugrenu adj f s 0.62 7.23 0.32 2.84 +saugrenues saugrenu adj f p 0.62 7.23 0.09 1.42 +saugrenus saugrenu adj m p 0.62 7.23 0.01 0.88 +saulaie saulaie nom f s 0 0.2 0 0.07 +saulaies saulaie nom f p 0 0.2 0 0.14 +saule saule nom m s 1.9 8.65 1.27 1.96 +saules saule nom m p 1.9 8.65 0.63 6.69 +saulnier saulnier nom m s 0 0.07 0 0.07 +saumon saumon nom m s 5.92 4.73 5.28 3.65 +saumoneau saumoneau nom m s 0 0.07 0 0.07 +saumonette saumonette nom f s 0 0.14 0 0.14 +saumons saumon nom m p 5.92 4.73 0.64 1.08 +saumoné saumoné adj m s 0 0.47 0 0.07 +saumonée saumoné adj f s 0 0.47 0 0.2 +saumonées saumoné adj f p 0 0.47 0 0.2 +saumurage saumurage nom m s 0.01 0 0.01 0 +saumure saumure nom f s 0.42 1.76 0.42 1.76 +saumurer saumurer ver 0.01 0 0.01 0 inf; +saumurées saumuré adj f p 0.14 0 0.14 0 +saumâtre saumâtre adj s 0.41 2.03 0.2 1.49 +saumâtres saumâtre adj p 0.41 2.03 0.21 0.54 +sauna sauna nom m s 3.85 1.08 3.45 0.61 +saunas sauna nom m p 3.85 1.08 0.4 0.47 +saunier saunier nom m s 0 0.68 0 0.34 +sauniers saunier nom m p 0 0.68 0 0.34 +saunières saunière nom f p 0 0.07 0 0.07 +saupoudra saupoudrer ver 0.57 4.8 0 0.41 ind:pas:3s; +saupoudrage saupoudrage nom m s 0.02 0 0.02 0 +saupoudrai saupoudrer ver 0.57 4.8 0 0.07 ind:pas:1s; +saupoudraient saupoudrer ver 0.57 4.8 0 0.14 ind:imp:3p; +saupoudrait saupoudrer ver 0.57 4.8 0 0.34 ind:imp:3s; +saupoudrant saupoudrer ver 0.57 4.8 0.03 0.47 par:pre; +saupoudre saupoudrer ver 0.57 4.8 0.16 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saupoudrer saupoudrer ver 0.57 4.8 0.1 0.27 inf; +saupoudreur saupoudreur nom m s 0.02 0 0.02 0 +saupoudrez saupoudrer ver 0.57 4.8 0.03 0.14 imp:pre:2p;ind:pre:2p; +saupoudriez saupoudrer ver 0.57 4.8 0 0.07 ind:imp:2p; +saupoudrons saupoudrer ver 0.57 4.8 0.02 0 imp:pre:1p; +saupoudré saupoudrer ver m s 0.57 4.8 0.12 0.74 par:pas; +saupoudrée saupoudrer ver f s 0.57 4.8 0.04 0.81 par:pas; +saupoudrées saupoudrer ver f p 0.57 4.8 0.01 0.34 par:pas; +saupoudrés saupoudrer ver m p 0.57 4.8 0.06 0.61 par:pas; +saur saur adj m s 0.09 0.88 0.08 0.34 +saura savoir ver_sup 4516.71 2003.58 34.23 14.93 ind:fut:3s;ind:pas:3s; +saurai savoir ver_sup 4516.71 2003.58 18.4 8.85 ind:fut:1s; +sauraient savoir ver_sup 4516.71 2003.58 1.48 5.47 cnd:pre:3p; +saurais savoir ver_sup 4516.71 2003.58 13.01 10.14 cnd:pre:1s;cnd:pre:2s; +saurait savoir ver_sup 4516.71 2003.58 11.9 33.92 cnd:pre:3s; +sauras savoir ver_sup 4516.71 2003.58 15.22 4.59 ind:fut:2s;ind:pas:2s; +saurer saurer ver 22.06 10.27 0 0.41 inf; +sauret sauret adj m s 0 0.47 0 0.27 +saurets sauret adj m p 0 0.47 0 0.2 +saurez saurer ver 22.06 10.27 4.76 2.23 ind:pre:2p; +sauri saurir ver m s 0.01 0 0.01 0 par:pas; +saurien saurien nom m s 0.01 0.47 0.01 0.2 +sauriens saurien nom m p 0.01 0.47 0 0.27 +sauriez saurer ver 22.06 10.27 3.29 0.74 ind:imp:2p;sub:pre:2p; +saurin saurin nom m s 0 0.07 0 0.07 +saurions saurer ver 22.06 10.27 0.56 0.74 ind:imp:1p; +saurons saurer ver 22.06 10.27 3.17 1.76 imp:pre:1p;ind:pre:1p; +sauront savoir ver_sup 4516.71 2003.58 7.72 2.77 ind:fut:3p; +saurs saur adj m p 0.09 0.88 0.01 0.54 +saussaies saussaie nom f p 0 1.22 0 1.22 +saut saut nom m s 14.77 17.03 13.53 14.26 +saut_de_lit saut_de_lit nom m s 0 0.2 0 0.14 +sauta sauter ver 123.03 134.59 0.84 15.27 ind:pas:3s; +sautai sauter ver 123.03 134.59 0.04 2.5 ind:pas:1s; +sautaient sauter ver 123.03 134.59 0.15 4.12 ind:imp:3p; +sautais sauter ver 123.03 134.59 1 0.88 ind:imp:1s;ind:imp:2s; +sautait sauter ver 123.03 134.59 1.81 9.39 ind:imp:3s; +sautant sauter ver 123.03 134.59 1.6 8.92 par:pre; +sautante sautant adj f s 0.04 0.14 0.01 0.14 +saute sauter ver 123.03 134.59 22.66 19.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +saute_mouton saute_mouton nom m 0.14 0.54 0.14 0.54 +saute_ruisseau saute_ruisseau nom m s 0 0.07 0 0.07 +sautelant sauteler ver 0 0.07 0 0.07 par:pre; +sautelle sautelle nom f s 0.01 0 0.01 0 +sautent sauter ver 123.03 134.59 2.09 4.59 ind:pre:3p; +sauter sauter ver 123.03 134.59 57.89 43.31 inf; +sautera sauter ver 123.03 134.59 0.9 0.41 ind:fut:3s; +sauterai sauter ver 123.03 134.59 1.05 0.2 ind:fut:1s; +sauteraient sauter ver 123.03 134.59 0.06 0.14 cnd:pre:3p; +sauterais sauter ver 123.03 134.59 0.59 0.14 cnd:pre:1s;cnd:pre:2s; +sauterait sauter ver 123.03 134.59 0.39 0.74 cnd:pre:3s; +sauteras sauter ver 123.03 134.59 0.6 0 ind:fut:2s; +sauterelle sauterelle nom f s 3.29 1.62 1.63 1.62 +sauterelles sauterelle nom f p 3.29 1.62 1.67 0 +sauterez sauter ver 123.03 134.59 0.23 0 ind:fut:2p; +sauterie sauterie nom f s 0.63 0.41 0.51 0.14 +sauteries sauterie nom f p 0.63 0.41 0.12 0.27 +sauteriez sauter ver 123.03 134.59 0.04 0 cnd:pre:2p; +sauternes sauternes nom m 0.67 1.08 0.67 1.08 +sauterons sauter ver 123.03 134.59 0.19 0.07 ind:fut:1p; +sauteront sauter ver 123.03 134.59 0.33 0.47 ind:fut:3p; +sautes sauter ver 123.03 134.59 3.25 0.61 ind:pre:2s; +sauteur sauteur nom m s 1.12 1.89 0.66 0.61 +sauteurs sauteur nom m p 1.12 1.89 0.1 0.2 +sauteuse sauteur nom f s 1.12 1.89 0.33 0.95 +sauteuses sauteur nom f p 1.12 1.89 0.03 0.14 +sautez sauter ver 123.03 134.59 5.62 0.54 imp:pre:2p;ind:pre:2p; +sautiez sauter ver 123.03 134.59 0.36 0 ind:imp:2p; +sautilla sautiller ver 1.48 7.97 0 0.41 ind:pas:3s; +sautillaient sautiller ver 1.48 7.97 0.11 0.54 ind:imp:3p; +sautillais sautiller ver 1.48 7.97 0.04 0.07 ind:imp:1s; +sautillait sautiller ver 1.48 7.97 0.01 1.69 ind:imp:3s; +sautillant sautiller ver 1.48 7.97 0.16 2.64 par:pre; +sautillante sautillant adj f s 0.11 2.57 0.06 1.15 +sautillantes sautillant adj f p 0.11 2.57 0 0.41 +sautillants sautillant adj m p 0.11 2.57 0.02 0.2 +sautille sautiller ver 1.48 7.97 0.73 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sautillement sautillement nom m s 0.03 0.74 0 0.34 +sautillements sautillement nom m p 0.03 0.74 0.03 0.41 +sautillent sautiller ver 1.48 7.97 0.02 0.34 ind:pre:3p; +sautiller sautiller ver 1.48 7.97 0.3 0.81 inf; +sautilles sautiller ver 1.48 7.97 0.05 0 ind:pre:2s; +sautillez sautiller ver 1.48 7.97 0.04 0 imp:pre:2p;ind:pre:2p; +sautillèrent sautiller ver 1.48 7.97 0.01 0.14 ind:pas:3p; +sautillé sautiller ver m s 1.48 7.97 0.01 0.07 par:pas; +sautions sauter ver 123.03 134.59 0.13 0.27 ind:imp:1p; +sautoir sautoir nom m s 0.18 2.7 0.18 2.5 +sautoirs sautoir nom m p 0.18 2.7 0 0.2 +sauton sauton nom m s 0.14 0.2 0.09 0 +sautons sauter ver 123.03 134.59 0.54 0.47 imp:pre:1p;ind:pre:1p; +sauts saut nom m p 14.77 17.03 1.23 2.77 +saut_de_lit saut_de_lit nom m p 0 0.2 0 0.07 +sautâmes sauter ver 123.03 134.59 0 0.14 ind:pas:1p; +sautât sauter ver 123.03 134.59 0 0.07 sub:imp:3s; +sautèrent sauter ver 123.03 134.59 0.01 2.43 ind:pas:3p; +sauté sauter ver m s 123.03 134.59 18.77 18.78 par:pas; +sautée sauter ver f s 123.03 134.59 1.46 0.41 par:pas; +sautées sauté adj f p 0.8 0.95 0.46 0.27 +sautés sauter ver m p 123.03 134.59 0.22 0.34 par:pas; +sauva sauver ver 246.54 99.05 0.61 2.97 ind:pas:3s; +sauvage sauvage adj s 24.68 54.66 16.67 34.46 +sauvagement sauvagement adv 1.48 6.28 1.48 6.28 +sauvageon sauvageon nom m s 0.65 0.41 0.01 0 +sauvageonne sauvageon nom f s 0.65 0.41 0.6 0.27 +sauvageonnes sauvageon nom f p 0.65 0.41 0 0.07 +sauvageons sauvageon nom m p 0.65 0.41 0.03 0.07 +sauvagerie sauvagerie nom f s 0.95 7.7 0.95 7.36 +sauvageries sauvagerie nom f p 0.95 7.7 0 0.34 +sauvages sauvage adj p 24.68 54.66 8.01 20.2 +sauvagesse sauvagesse nom f s 0.02 0.14 0.02 0.07 +sauvagesses sauvagesse nom f p 0.02 0.14 0 0.07 +sauvagin sauvagin nom m s 0 1.28 0 0.2 +sauvagine sauvagin nom f s 0 1.28 0 0.68 +sauvagines sauvagin nom f p 0 1.28 0 0.41 +sauvai sauver ver 246.54 99.05 0.01 0.27 ind:pas:1s; +sauvaient sauver ver 246.54 99.05 0.04 0.88 ind:imp:3p; +sauvais sauver ver 246.54 99.05 0.58 0.54 ind:imp:1s;ind:imp:2s; +sauvait sauver ver 246.54 99.05 0.57 2.43 ind:imp:3s; +sauvant sauver ver 246.54 99.05 1.62 1.15 par:pre; +sauve sauver ver 246.54 99.05 24.34 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sauve_qui_peut sauve_qui_peut nom m 0.1 0.68 0.1 0.68 +sauvegardaient sauvegarder ver 2.77 3.65 0 0.07 ind:imp:3p; +sauvegardait sauvegarder ver 2.77 3.65 0 0.14 ind:imp:3s; +sauvegardant sauvegarder ver 2.77 3.65 0 0.2 par:pre; +sauvegarde sauvegarde nom f s 1.19 2.57 1.03 2.5 +sauvegarder sauvegarder ver 2.77 3.65 1.36 2.03 inf; +sauvegarderaient sauvegarder ver 2.77 3.65 0 0.07 cnd:pre:3p; +sauvegarderait sauvegarder ver 2.77 3.65 0 0.07 cnd:pre:3s; +sauvegardes sauvegarde nom f p 1.19 2.57 0.16 0.07 +sauvegardât sauvegarder ver 2.77 3.65 0 0.07 sub:imp:3s; +sauvegardé sauvegarder ver m s 2.77 3.65 0.94 0.41 par:pas; +sauvegardée sauvegarder ver f s 2.77 3.65 0.14 0.07 par:pas; +sauvegardées sauvegarder ver f p 2.77 3.65 0.07 0.14 par:pas; +sauvegardés sauvegarder ver m p 2.77 3.65 0.07 0.2 par:pas; +sauvent sauver ver 246.54 99.05 1.02 1.28 ind:pre:3p; +sauver sauver ver 246.54 99.05 103.1 36.89 inf;;inf;;inf;;inf;; +sauvera sauver ver 246.54 99.05 4.17 1.49 ind:fut:3s; +sauverai sauver ver 246.54 99.05 2.21 0.2 ind:fut:1s; +sauveraient sauver ver 246.54 99.05 0.07 0.2 cnd:pre:3p; +sauverais sauver ver 246.54 99.05 1.21 0.14 cnd:pre:1s;cnd:pre:2s; +sauverait sauver ver 246.54 99.05 1.31 1.55 cnd:pre:3s; +sauveras sauver ver 246.54 99.05 1.18 0 ind:fut:2s; +sauverez sauver ver 246.54 99.05 0.68 0.07 ind:fut:2p; +sauverons sauver ver 246.54 99.05 0.42 0.14 ind:fut:1p; +sauveront sauver ver 246.54 99.05 0.39 0.14 ind:fut:3p; +sauves sauver ver 246.54 99.05 3.51 0.47 ind:pre:2s; +sauvetage sauvetage nom m s 8.32 3.72 8.2 3.45 +sauvetages sauvetage nom m p 8.32 3.72 0.12 0.27 +sauveteur sauveteur nom m s 1.38 1.35 0.75 0.27 +sauveteurs sauveteur nom m p 1.38 1.35 0.64 1.08 +sauvette sauveter ver 0.25 3.38 0.25 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sauveté sauveté nom f s 0 0.27 0 0.27 +sauveur sauveur nom m s 6.93 3.31 5.87 2.77 +sauveurs sauveur nom m p 6.93 3.31 0.82 0.47 +sauveuse sauveur nom f s 6.93 3.31 0.12 0.07 +sauvez sauver ver 246.54 99.05 12.63 1.08 imp:pre:2p;ind:pre:2p; +sauviez sauver ver 246.54 99.05 0.23 0 ind:imp:2p; +sauvignon sauvignon nom m s 0.04 0.2 0.04 0.2 +sauvions sauver ver 246.54 99.05 0.17 0.07 ind:imp:1p; +sauvons sauver ver 246.54 99.05 1.48 0.27 imp:pre:1p;ind:pre:1p; +sauvâmes sauver ver 246.54 99.05 0 0.07 ind:pas:1p; +sauvât sauver ver 246.54 99.05 0 0.2 sub:imp:3s; +sauvèrent sauver ver 246.54 99.05 0.18 0.41 ind:pas:3p; +sauvé sauver ver m s 246.54 99.05 61.62 23.18 par:pas;par:pas;par:pas; +sauvée sauver ver f s 246.54 99.05 12.58 6.35 par:pas; +sauvées sauver ver f p 246.54 99.05 1.35 1.22 par:pas; +sauvés sauver ver m p 246.54 99.05 9.28 5 par:pas; +sauça saucer ver 0.69 2.3 0 0.2 ind:pas:3s; +sauçant saucer ver 0.69 2.3 0 0.14 par:pre; +sauçons saucer ver 0.69 2.3 0 0.07 ind:pre:1p; +savaient savoir ver_sup 4516.71 2003.58 14.72 30.2 ind:imp:3p; +savais savoir ver_sup 4516.71 2003.58 236.66 132.09 ind:imp:1s;ind:imp:2s; +savait savoir ver_sup 4516.71 2003.58 80.85 237.84 ind:imp:3s; +savamment savamment adv 0.03 4.8 0.03 4.8 +savane savane nom f s 0.34 2.57 0.34 1.76 +savanes savane nom f p 0.34 2.57 0 0.81 +savant savant nom m s 5.66 12.03 3.16 5.54 +savantasses savantasse nom m p 0 0.07 0 0.07 +savante savant adj f s 3.99 17.3 0.44 3.72 +savantes savant adj f p 3.99 17.3 0.24 3.18 +savantissimes savantissime adj p 0 0.07 0 0.07 +savants savant nom m p 5.66 12.03 2.42 6.42 +savarin savarin nom m s 0.2 0.07 0.2 0.07 +savata savater ver 0.05 0.27 0 0.07 ind:pas:3s; +savatait savater ver 0.05 0.27 0 0.07 ind:imp:3s; +savate savate nom f s 0.44 3.99 0.3 1.76 +savater savater ver 0.05 0.27 0.02 0.07 inf; +savates savate nom f p 0.44 3.99 0.13 2.23 +savent savoir ver_sup 4516.71 2003.58 64.32 44.53 ind:pre:3p; +savetier savetier nom m s 0.39 0.34 0.39 0.2 +savetiers savetier nom m p 0.39 0.34 0 0.14 +saveur saveur nom f s 3.52 12.36 3.11 10.41 +saveurs saveur nom f p 3.52 12.36 0.42 1.96 +savez savoir ver_sup 4516.71 2003.58 407.94 132.91 ind:pre:2p; +saviez savoir ver_sup 4516.71 2003.58 32.68 8.24 ind:imp:2p; +savions savoir ver_sup 4516.71 2003.58 5.3 12.3 ind:imp:1p; +savoir savoir ver_sup 4516.71 2003.58 421.1 250 inf; +savoir_faire savoir_faire nom m 1.23 2.03 1.23 2.03 +savoir_vivre savoir_vivre nom m 1.67 1.76 1.67 1.76 +savoirs savoir nom_sup m p 37.32 41.42 0.05 0.47 +savon savon nom m s 16.68 18.04 15.65 16.55 +savonna savonner ver 0.79 4.19 0 0.41 ind:pas:3s; +savonnage savonnage nom m s 0.1 0.07 0.1 0 +savonnages savonnage nom m p 0.1 0.07 0 0.07 +savonnai savonner ver 0.79 4.19 0 0.07 ind:pas:1s; +savonnaient savonner ver 0.79 4.19 0 0.07 ind:imp:3p; +savonnais savonner ver 0.79 4.19 0.02 0.14 ind:imp:1s;ind:imp:2s; +savonnait savonner ver 0.79 4.19 0.01 0.54 ind:imp:3s; +savonnant savonner ver 0.79 4.19 0.03 0.41 par:pre; +savonne savonner ver 0.79 4.19 0.38 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +savonnent savonner ver 0.79 4.19 0.02 0.14 ind:pre:3p; +savonner savonner ver 0.79 4.19 0.26 1.22 inf; +savonnera savonner ver 0.79 4.19 0.01 0 ind:fut:3s; +savonneries savonnerie nom f p 0 0.14 0 0.14 +savonnette savonnette nom f s 0.72 3.92 0.62 2.84 +savonnettes savonnette nom f p 0.72 3.92 0.1 1.08 +savonneuse savonneux adj f s 0.29 2.23 0.27 1.76 +savonneuses savonneux adj f p 0.29 2.23 0 0.34 +savonneux savonneux adj m 0.29 2.23 0.02 0.14 +savonnier savonnier adj m s 0 0.07 0 0.07 +savonné savonner ver m s 0.79 4.19 0.02 0.47 par:pas; +savonnée savonner ver f s 0.79 4.19 0.04 0.2 par:pas; +savonnées savonner ver f p 0.79 4.19 0 0.14 par:pas; +savons savoir ver_sup 4516.71 2003.58 47.84 19.05 ind:pre:1p; +savoura savourer ver 4.24 14.26 0.01 0.47 ind:pas:3s; +savourai savourer ver 4.24 14.26 0 0.27 ind:pas:1s; +savouraient savourer ver 4.24 14.26 0.01 0.54 ind:imp:3p; +savourais savourer ver 4.24 14.26 0.14 0.61 ind:imp:1s; +savourait savourer ver 4.24 14.26 0.06 1.69 ind:imp:3s; +savourant savourer ver 4.24 14.26 0.03 2.36 par:pre; +savoure savourer ver 4.24 14.26 1.28 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +savourent savourer ver 4.24 14.26 0.03 0.41 ind:pre:3p; +savourer savourer ver 4.24 14.26 1.71 4.12 inf; +savourera savourer ver 4.24 14.26 0.15 0.07 ind:fut:3s; +savourerai savourer ver 4.24 14.26 0.03 0 ind:fut:1s; +savourerait savourer ver 4.24 14.26 0.01 0.07 cnd:pre:3s; +savourerons savourer ver 4.24 14.26 0.01 0 ind:fut:1p; +savoureuse savoureux adj f s 1.34 6.89 0.15 1.82 +savoureusement savoureusement adv 0 0.14 0 0.14 +savoureuses savoureux adj f p 1.34 6.89 0.11 0.68 +savoureux savoureux adj m 1.34 6.89 1.08 4.39 +savourez savourer ver 4.24 14.26 0.46 0.07 imp:pre:2p;ind:pre:2p; +savourions savourer ver 4.24 14.26 0.01 0.14 ind:imp:1p; +savourons savourer ver 4.24 14.26 0.19 0 imp:pre:1p;ind:pre:1p; +savourèrent savourer ver 4.24 14.26 0 0.07 ind:pas:3p; +savouré savourer ver m s 4.24 14.26 0.1 0.68 par:pas; +savourée savourer ver f s 4.24 14.26 0.01 0.41 par:pas; +savourés savourer ver m p 4.24 14.26 0.01 0.2 par:pas; +savoyard savoyard nom m s 0.5 3.24 0.1 2.91 +savoyarde savoyard nom f s 0.5 3.24 0.14 0.27 +savoyardes savoyard adj f p 0 1.42 0 0.07 +savoyards savoyard nom m p 0.5 3.24 0.27 0.07 +sax sax nom m 0.36 0.14 0.36 0.14 +saxes saxe nom m p 0 0.14 0 0.14 +saxhorn saxhorn nom m s 0.4 0 0.4 0 +saxifragacées saxifragacée nom f p 0 0.07 0 0.07 +saxifrage saxifrage nom f s 0 0.14 0 0.07 +saxifrages saxifrage nom f p 0 0.14 0 0.07 +saxo saxo nom m s 0.73 1.01 0.72 0.81 +saxon saxon adj m s 0.39 0.81 0.19 0.27 +saxonne saxon adj f s 0.39 0.81 0.11 0.2 +saxonnes saxonne nom f p 0.1 0 0.1 0 +saxons saxon adj m p 0.39 0.81 0.04 0.27 +saxophone saxophone nom m s 1.32 1.28 1.3 1.22 +saxophones saxophone nom m p 1.32 1.28 0.02 0.07 +saxophoniste saxophoniste nom s 0.45 0.14 0.41 0.14 +saxophonistes saxophoniste nom p 0.45 0.14 0.04 0 +saxos saxo nom m p 0.73 1.01 0.01 0.2 +saynète saynète nom f s 0.1 0.74 0.06 0.47 +saynètes saynète nom f p 0.1 0.74 0.04 0.27 +sayon sayon nom m s 0 0.14 0 0.14 +saï saï nom m s 0.01 0.47 0.01 0.47 +sbire sbire nom m s 1.35 1.62 0.43 0.07 +sbires sbire nom m p 1.35 1.62 0.92 1.55 +scabieuse scabieux adj f s 0 0.14 0 0.14 +scabreuse scabreux adj f s 0.55 1.49 0.03 0.27 +scabreuses scabreux adj f p 0.55 1.49 0.24 0.14 +scabreux scabreux adj m 0.55 1.49 0.28 1.08 +scaferlati scaferlati nom m s 0 0.14 0 0.14 +scalaire scalaire nom m s 0.03 0 0.03 0 +scalp scalp nom m s 1.44 0.74 1.02 0.54 +scalpa scalper ver 1.45 0.47 0.01 0.07 ind:pas:3s; +scalpaient scalper ver 1.45 0.47 0.02 0.07 ind:imp:3p; +scalpait scalper ver 1.45 0.47 0.01 0 ind:imp:3s; +scalpe scalper ver 1.45 0.47 0.43 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scalpel scalpel nom m s 2.45 1.01 2.26 0.88 +scalpels scalpel nom m p 2.45 1.01 0.19 0.14 +scalpent scalper ver 1.45 0.47 0.12 0 ind:pre:3p; +scalper scalper ver 1.45 0.47 0.35 0.14 inf; +scalpera scalper ver 1.45 0.47 0.01 0.07 ind:fut:3s; +scalpeur scalpeur nom m s 0.01 0 0.01 0 +scalpez scalper ver 1.45 0.47 0.03 0 imp:pre:2p; +scalps scalp nom m p 1.44 0.74 0.42 0.2 +scalpé scalper ver m s 1.45 0.47 0.33 0.14 par:pas; +scalpés scalper ver m p 1.45 0.47 0.14 0 par:pas; +scalène scalène adj m s 0.04 0 0.04 0 +scampi scampi nom m p 0.09 0.07 0.09 0.07 +scanda scander ver 0.36 7.3 0 0.34 ind:pas:3s; +scandaient scander ver 0.36 7.3 0 0.61 ind:imp:3p; +scandait scander ver 0.36 7.3 0 1.01 ind:imp:3s; +scandale scandale nom m s 20.92 24.05 19.09 21.49 +scandales scandale nom m p 20.92 24.05 1.84 2.57 +scandaleuse scandaleux adj f s 4.83 8.31 1.1 3.04 +scandaleusement scandaleusement adv 0.26 0.41 0.26 0.41 +scandaleuses scandaleux adj f p 4.83 8.31 0.28 0.74 +scandaleux scandaleux adj m 4.83 8.31 3.45 4.53 +scandalisa scandaliser ver 1.28 7.3 0 0.61 ind:pas:3s; +scandalisai scandaliser ver 1.28 7.3 0 0.14 ind:pas:1s; +scandalisaient scandaliser ver 1.28 7.3 0 0.34 ind:imp:3p; +scandalisais scandaliser ver 1.28 7.3 0 0.2 ind:imp:1s; +scandalisait scandaliser ver 1.28 7.3 0.01 1.08 ind:imp:3s; +scandalisant scandaliser ver 1.28 7.3 0 0.2 par:pre; +scandalise scandaliser ver 1.28 7.3 0.18 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scandalisent scandaliser ver 1.28 7.3 0 0.34 ind:pre:3p; +scandaliser scandaliser ver 1.28 7.3 0.05 0.74 inf; +scandalisera scandaliser ver 1.28 7.3 0.14 0 ind:fut:3s; +scandaliserait scandaliser ver 1.28 7.3 0 0.07 cnd:pre:3s; +scandalisons scandaliser ver 1.28 7.3 0 0.07 imp:pre:1p; +scandalisèrent scandaliser ver 1.28 7.3 0 0.07 ind:pas:3p; +scandalisé scandaliser ver m s 1.28 7.3 0.56 1.69 par:pas; +scandalisée scandaliser ver f s 1.28 7.3 0.29 0.74 par:pas; +scandalisées scandalisé adj f p 0.39 3.04 0 0.2 +scandalisés scandalisé adj m p 0.39 3.04 0.32 0.47 +scandant scander ver 0.36 7.3 0.03 1.28 par:pre; +scande scander ver 0.36 7.3 0.01 0.41 imp:pre:2s;ind:pre:3s; +scandent scander ver 0.36 7.3 0.16 0.61 ind:pre:3p; +scander scander ver 0.36 7.3 0.05 0.61 inf; +scandera scander ver 0.36 7.3 0 0.07 ind:fut:3s; +scandinave scandinave adj s 0.39 2.43 0.29 1.49 +scandinaves scandinave nom p 0.37 1.28 0.36 0.95 +scandé scander ver m s 0.36 7.3 0.01 0.81 par:pas; +scandée scander ver f s 0.36 7.3 0 0.61 par:pas; +scandées scander ver f p 0.36 7.3 0 0.34 par:pas; +scandés scander ver m p 0.36 7.3 0.1 0.61 par:pas; +scannage scannage nom m s 0.1 0 0.1 0 +scannais scanner ver 2.9 0 0.01 0 ind:imp:1s; +scanne scanner ver 2.9 0 0.58 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scannent scanner ver 2.9 0 0.13 0 ind:pre:3p; +scanner scanner nom m s 8.56 0.14 6.9 0.14 +scannera scanner ver 2.9 0 0.02 0 ind:fut:3s; +scanneront scanner ver 2.9 0 0.01 0 ind:fut:3p; +scanners scanner nom m p 8.56 0.14 1.66 0 +scannes scanner ver 2.9 0 0.06 0 ind:pre:2s; +scanneur scanneur nom m s 0.04 0 0.04 0 +scannez scanner ver 2.9 0 0.16 0 imp:pre:2p;ind:pre:2p; +scanning scanning nom m s 0.17 0 0.17 0 +scannons scanner ver 2.9 0 0.02 0 imp:pre:1p;ind:pre:1p; +scanné scanner ver m s 2.9 0 0.54 0 par:pas; +scannée scanner ver f s 2.9 0 0.1 0 par:pas; +scannés scanner ver m p 2.9 0 0.11 0 par:pas; +scanographie scanographie nom f s 0.08 0 0.08 0 +scansion scansion nom f s 0 0.34 0 0.27 +scansions scansion nom f p 0 0.34 0 0.07 +scaphandre scaphandre nom m s 0.79 0.61 0.49 0.61 +scaphandres scaphandre nom m p 0.79 0.61 0.3 0 +scaphandrier scaphandrier nom m s 0.04 0.34 0.03 0.27 +scaphandriers scaphandrier nom m p 0.04 0.34 0.01 0.07 +scaphoïde scaphoïde adj s 0.08 0 0.08 0 +scapin scapin nom m s 0 0.07 0 0.07 +scapulaire scapulaire nom m s 0.04 0.68 0.03 0.54 +scapulaires scapulaire nom m p 0.04 0.68 0.01 0.14 +scarabée scarabée nom m s 1.33 1.42 0.6 0.95 +scarabées scarabée nom m p 1.33 1.42 0.73 0.47 +scare scare nom m s 0.06 0 0.06 0 +scarifiant scarifier ver 0.02 0.14 0 0.14 par:pre; +scarification scarification nom f s 0.14 0.07 0.14 0 +scarifications scarification nom f p 0.14 0.07 0 0.07 +scarifié scarifier ver m s 0.02 0.14 0.02 0 par:pas; +scarlatin scarlatine adj m s 0.01 0 0.01 0 +scarlatine scarlatin nom f s 0.35 1.01 0.35 0.95 +scarlatines scarlatin nom f p 0.35 1.01 0 0.07 +scarole scarole nom f s 0.12 0.14 0.12 0.07 +scaroles scarole nom f p 0.12 0.14 0 0.07 +scat scat nom m s 0.06 0 0.06 0 +scato scato adj f s 0.04 0.07 0.04 0 +scatologie scatologie nom f s 0.01 0 0.01 0 +scatologique scatologique adj s 0.03 0.54 0.01 0.2 +scatologiques scatologique adj p 0.03 0.54 0.01 0.34 +scatologue scatologue nom m s 0 0.07 0 0.07 +scatophiles scatophile adj m p 0.01 0.07 0.01 0.07 +scatos scato adj f p 0.04 0.07 0 0.07 +scatter scatter nom m s 0.14 0 0.14 0 +scazons scazon nom m p 0 0.14 0 0.14 +sceau sceau nom m s 3.72 4.93 3.54 3.45 +sceaux sceau nom m p 3.72 4.93 0.18 1.49 +scella sceller ver 5.62 7.3 0.02 0.14 ind:pas:3s; +scellage scellage nom m s 0.01 0 0.01 0 +scellaient sceller ver 5.62 7.3 0.23 0 ind:imp:3p; +scellait sceller ver 5.62 7.3 0.11 0.47 ind:imp:3s; +scellant sceller ver 5.62 7.3 0.18 0.41 par:pre; +scelle sceller ver 5.62 7.3 0.63 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scellement scellement nom m s 0.01 0.27 0.01 0.14 +scellements scellement nom m p 0.01 0.27 0 0.14 +scellent sceller ver 5.62 7.3 0.23 0 ind:pre:3p; +sceller sceller ver 5.62 7.3 0.9 1.08 inf; +scellera sceller ver 5.62 7.3 0.03 0 ind:fut:3s; +scellerait sceller ver 5.62 7.3 0 0.07 cnd:pre:3s; +scelleront sceller ver 5.62 7.3 0.01 0.14 ind:fut:3p; +scellez sceller ver 5.62 7.3 0.53 0 imp:pre:2p; +scellons sceller ver 5.62 7.3 0.16 0 imp:pre:1p;ind:pre:1p; +scellèrent sceller ver 5.62 7.3 0.01 0 ind:pas:3p; +scellé sceller ver m s 5.62 7.3 1.23 2.16 par:pas; +scellée sceller ver f s 5.62 7.3 0.69 1.42 par:pas; +scellées sceller ver f p 5.62 7.3 0.44 0.61 par:pas; +scellés scellé nom m p 1.91 1.62 1.58 1.55 +scenarii scenarii nom m p 0 0.07 0 0.07 +scenic_railway scenic_railway nom m s 0 0.2 0 0.2 +scepticisme scepticisme nom m s 0.62 5 0.62 5 +sceptique sceptique adj s 2.52 5.81 2.21 4.59 +sceptiques sceptique nom p 0.87 1.22 0.43 0.68 +sceptre sceptre nom m s 1.62 1.69 1.61 1.42 +sceptres sceptre nom m p 1.62 1.69 0.01 0.27 +schah schah nom m s 0.02 0 0.02 0 +schako schako nom m s 0 0.07 0 0.07 +schampooing schampooing nom m s 0 0.07 0 0.07 +schbeb schbeb nom m s 0 0.41 0 0.41 +scheik scheik nom m s 0.01 0 0.01 0 +schilling schilling nom m s 1.42 0 0.13 0 +schillings schilling nom m p 1.42 0 1.29 0 +schismatique schismatique adj m s 0 0.2 0 0.14 +schismatiques schismatique adj p 0 0.2 0 0.07 +schisme schisme nom m s 0.32 0.81 0.09 0.61 +schismes schisme nom m p 0.32 0.81 0.23 0.2 +schiste schiste nom m s 0.07 1.28 0.05 1.01 +schistes schiste nom m p 0.07 1.28 0.02 0.27 +schisteuses schisteux adj f p 0 0.07 0 0.07 +schizophasie schizophasie nom f s 0.01 0 0.01 0 +schizophrène schizophrène adj s 1.09 0.41 1.03 0.27 +schizophrènes schizophrène nom p 0.93 0.88 0.49 0.34 +schizophrénie schizophrénie nom f s 1.83 0.95 1.83 0.95 +schizophrénique schizophrénique adj s 0.14 0.14 0.13 0.07 +schizophréniques schizophrénique adj p 0.14 0.14 0.01 0.07 +schizoïde schizoïde adj s 0.14 0.14 0.14 0.07 +schizoïdes schizoïde adj m p 0.14 0.14 0 0.07 +schlague schlague nom f s 0 0.2 0 0.2 +schlass schlass nom m 0.14 0.07 0.14 0.07 +schlem schlem nom m s 0.06 0.07 0.06 0.07 +schleu schleu adj m s 0.03 0.07 0.03 0.07 +schlinguait schlinguer ver 0.32 1.01 0.02 0.2 ind:imp:3s; +schlinguant schlinguer ver 0.32 1.01 0 0.07 par:pre; +schlingue schlinguer ver 0.32 1.01 0.23 0.54 imp:pre:2s;ind:pre:3s; +schlinguer schlinguer ver 0.32 1.01 0.02 0.14 inf; +schlingues schlinguer ver 0.32 1.01 0.05 0.07 ind:pre:2s; +schlitte schlitte nom f s 0 0.07 0 0.07 +schmecte schmecter ver 0 0.07 0 0.07 ind:pre:3s; +schnaps schnaps nom m 1.86 1.08 1.86 1.08 +schnauzer schnauzer nom m s 0.04 0 0.04 0 +schnick schnick nom m s 0 0.14 0 0.14 +schnitzel schnitzel nom m s 0.46 0 0.46 0 +schnock schnock nom s 1.06 0.81 0.93 0.81 +schnocks schnock nom p 1.06 0.81 0.14 0 +schnoque schnoque nom s 0.26 0.47 0.25 0.34 +schnoques schnoque nom p 0.26 0.47 0.01 0.14 +schnouf schnouf nom f s 0.01 0 0.01 0 +schnouff schnouff nom f s 0.01 0 0.01 0 +schnouffe schnouffer ver 0.01 0.07 0.01 0.07 ind:pre:3s; +schooner schooner nom m s 0.04 0 0.03 0 +schooners schooner nom m p 0.04 0 0.01 0 +schpile schpile nom m s 0 1.28 0 1.28 +schproum schproum nom m s 0 0.41 0 0.41 +schtroumf schtroumf nom m s 0.02 0 0.02 0 +schtroumpf schtroumpf nom m s 0.55 0.14 0.19 0.07 +schtroumpfs schtroumpf nom m p 0.55 0.14 0.37 0.07 +schupo schupo nom m s 0 0.54 0 0.41 +schupos schupo nom m p 0 0.54 0 0.14 +schuss schuss nom m 0.14 0.41 0.14 0.41 +schème schème nom m s 0 0.14 0 0.07 +schèmes schème nom m p 0 0.14 0 0.07 +schéma schéma nom m s 4.03 2.64 3.02 1.82 +schémas schéma nom m p 4.03 2.64 1.01 0.81 +schématique schématique adj s 0.12 0.68 0.12 0.41 +schématiquement schématiquement adv 0.01 0.61 0.01 0.61 +schématiques schématique adj f p 0.12 0.68 0 0.27 +schématise schématiser ver 0.05 0.14 0.02 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +schématiser schématiser ver 0.05 0.14 0.03 0 inf; +schématisme schématisme nom m s 0 0.07 0 0.07 +schématisée schématiser ver f s 0.05 0.14 0 0.07 par:pas; +scia scier ver 5.01 9.86 0.01 0.14 ind:pas:3s; +sciage sciage nom m s 0.06 0.14 0.06 0.14 +sciaient scier ver 5.01 9.86 0 0.2 ind:imp:3p; +sciais scier ver 5.01 9.86 0.02 0.07 ind:imp:1s;ind:imp:2s; +sciait scier ver 5.01 9.86 0.01 1.69 ind:imp:3s; +scialytique scialytique adj m s 0 0.27 0 0.27 +sciant scier ver 5.01 9.86 0.01 0.2 par:pre; +sciatique sciatique nom s 0.57 0.2 0.57 0.2 +scie scie nom f s 5.36 10.07 5.21 8.11 +sciemment sciemment adv 0.48 1.49 0.48 1.49 +science science nom f s 32.97 31.08 25.28 24.93 +science_fiction science_fiction nom f s 2.36 1.22 2.36 1.22 +sciences science nom f p 32.97 31.08 7.69 6.15 +scient scier ver 5.01 9.86 0.05 0.14 ind:pre:3p; +scientificité scientificité nom f s 0.01 0 0.01 0 +scientifique scientifique adj s 17.07 6.55 13.62 4.46 +scientifiquement scientifiquement adv 2.22 1.08 2.22 1.08 +scientifiques scientifique nom p 14.59 1.42 6.4 0.74 +scientisme scientisme nom m s 0.02 0 0.02 0 +scientiste scientiste adj s 0.15 0.14 0.15 0.14 +scientologie scientologie nom f s 0.3 0 0.3 0 +scientologue scientologue nom s 0.2 0 0.07 0 +scientologues scientologue nom p 0.2 0 0.13 0 +scier scier ver 5.01 9.86 1.12 2.43 inf; +sciera scier ver 5.01 9.86 0.01 0.07 ind:fut:3s; +scierait scier ver 5.01 9.86 0.02 0 cnd:pre:3s; +scierie scierie nom f s 0.92 2.3 0.76 1.96 +scieries scierie nom f p 0.92 2.3 0.16 0.34 +scieront scier ver 5.01 9.86 0.01 0 ind:fut:3p; +scies scier ver 5.01 9.86 0.28 0.07 ind:pre:2s; +scieur scieur nom m s 0.01 0.54 0 0.47 +scieurs scieur nom m p 0.01 0.54 0.01 0.07 +sciez scier ver 5.01 9.86 0.12 0.07 imp:pre:2p;ind:pre:2p; +scindaient scinder ver 0.52 1.49 0 0.07 ind:imp:3p; +scindait scinder ver 0.52 1.49 0 0.34 ind:imp:3s; +scindant scinder ver 0.52 1.49 0 0.07 par:pre; +scinde scinder ver 0.52 1.49 0.41 0.34 ind:pre:3s; +scinder scinder ver 0.52 1.49 0.05 0.14 inf; +scinderas scinder ver 0.52 1.49 0.01 0 ind:fut:2s; +scindez scinder ver 0.52 1.49 0.01 0 imp:pre:2p; +scindèrent scinder ver 0.52 1.49 0 0.07 ind:pas:3p; +scindé scinder ver m s 0.52 1.49 0.02 0.2 par:pas; +scindée scinder ver f s 0.52 1.49 0.01 0.2 par:pas; +scindés scinder ver m p 0.52 1.49 0 0.07 par:pas; +scintigraphie scintigraphie nom f s 0.36 0 0.36 0 +scintillaient scintiller ver 1.77 12.36 0.01 2.64 ind:imp:3p; +scintillait scintiller ver 1.77 12.36 0.19 2.84 ind:imp:3s; +scintillant scintillant adj m s 1.1 6.01 0.35 1.28 +scintillante scintillant adj f s 1.1 6.01 0.24 2.91 +scintillantes scintillant adj f p 1.1 6.01 0.4 1.15 +scintillants scintillant adj m p 1.1 6.01 0.11 0.68 +scintillation scintillation nom f s 0 0.41 0 0.07 +scintillations scintillation nom f p 0 0.41 0 0.34 +scintille scintiller ver 1.77 12.36 0.88 1.89 imp:pre:2s;ind:pre:3s; +scintillement scintillement nom m s 0.23 4.53 0.17 3.24 +scintillements scintillement nom m p 0.23 4.53 0.05 1.28 +scintillent scintiller ver 1.77 12.36 0.32 1.35 ind:pre:3p; +scintiller scintiller ver 1.77 12.36 0.24 1.49 inf; +scintilleraient scintiller ver 1.77 12.36 0.01 0.07 cnd:pre:3p; +scintillerais scintiller ver 1.77 12.36 0 0.07 cnd:pre:1s; +scintilleront scintiller ver 1.77 12.36 0 0.07 ind:fut:3p; +scintilles scintiller ver 1.77 12.36 0.02 0.07 ind:pre:2s; +scintillons scintiller ver 1.77 12.36 0.02 0 ind:pre:1p; +scintillèrent scintiller ver 1.77 12.36 0 0.14 ind:pas:3p; +scintillé scintiller ver m s 1.77 12.36 0 0.14 par:pas; +scion scion nom m s 0.28 0.61 0.27 0.47 +scions scion nom m p 0.28 0.61 0.01 0.14 +scirpe scirpe nom m s 0.01 0.07 0.01 0 +scirpes scirpe nom m p 0.01 0.07 0 0.07 +scission scission nom f s 0.03 0.68 0.03 0.68 +scissionniste scissionniste adj m s 0 0.07 0 0.07 +scissiparité scissiparité nom f s 0.01 0 0.01 0 +scissures scissure nom f p 0 0.07 0 0.07 +sciure sciure nom f s 0.69 6.08 0.69 6.01 +sciures sciure nom f p 0.69 6.08 0 0.07 +sciène sciène nom f s 0.14 0 0.14 0 +scièrent scier ver 5.01 9.86 0.01 0 ind:pas:3p; +scié scier ver m s 5.01 9.86 1.25 2.3 par:pas; +sciée scier ver f s 5.01 9.86 0.45 0.54 par:pas; +sciées scier ver f p 5.01 9.86 0.01 0.41 par:pas; +sciés scier ver m p 5.01 9.86 0.5 0.47 par:pas; +scléreux scléreux adj m 0.01 0 0.01 0 +sclérodermie sclérodermie nom f s 0.03 0 0.03 0 +sclérosante sclérosant adj f s 0.01 0 0.01 0 +sclérose sclérose nom f s 0.79 0.88 0.79 0.81 +scléroserai scléroser ver 0.16 0.34 0.01 0 ind:fut:1s; +scléroses sclérose nom f p 0.79 0.88 0 0.07 +sclérosé scléroser ver m s 0.16 0.34 0.14 0.2 par:pas; +sclérosée scléroser ver f s 0.16 0.34 0 0.14 par:pas; +sclérosés sclérosé adj m p 0.02 0.2 0 0.07 +sclérotique sclérotique nom f s 0 0.54 0 0.41 +sclérotiques sclérotique nom f p 0 0.54 0 0.14 +scolaire scolaire adj s 7 14.12 5.61 9.66 +scolairement scolairement adv 0.01 0.07 0.01 0.07 +scolaires scolaire adj p 7 14.12 1.39 4.46 +scolarisation scolarisation nom f s 0.01 0.07 0.01 0.07 +scolariser scolariser ver 0.01 0 0.01 0 inf; +scolarité scolarité nom f s 1.63 0.81 1.61 0.81 +scolarités scolarité nom f p 1.63 0.81 0.02 0 +scolastique scolastique adj m s 0.01 0.2 0.01 0.14 +scolastiques scolastique adj f p 0.01 0.2 0 0.07 +scolie scolie nom s 0 0.47 0 0.47 +scoliose scoliose nom f s 0.24 0.34 0.23 0.27 +scolioses scoliose nom f p 0.24 0.34 0.01 0.07 +scolopendre scolopendre nom f s 0 0.34 0 0.07 +scolopendres scolopendre nom f p 0 0.34 0 0.27 +scolyte scolyte nom m s 0.01 0 0.01 0 +scone scone nom m s 0.45 0.2 0.11 0 +scones scone nom m p 0.45 0.2 0.34 0.2 +sconse sconse nom m s 0.04 0 0.04 0 +scoop scoop nom m s 5.29 1.22 5.12 1.08 +scoops scoop nom m p 5.29 1.22 0.17 0.14 +scooter scooter nom m s 3.62 2.77 3.41 2.3 +scooters scooter nom m p 3.62 2.77 0.2 0.47 +scope scope nom m s 0.41 0.07 0.36 0.07 +scopes scope nom m p 0.41 0.07 0.04 0 +scopie scopie nom f s 0.01 0 0.01 0 +scopitones scopitone nom m p 0 0.07 0 0.07 +scopolamine scopolamine nom f s 0.02 0 0.02 0 +scorbut scorbut nom m s 0.46 0.95 0.46 0.95 +score score nom m s 5.92 0.74 5.29 0.61 +scores score nom m p 5.92 0.74 0.64 0.14 +scories scorie nom f p 0.17 0.74 0.17 0.74 +scorpion scorpion nom m s 3.54 2.64 1.78 0.88 +scorpions scorpion nom m p 3.54 2.64 1.75 1.76 +scotch scotch nom m s 9.45 6.35 9.3 6.28 +scotch_terrier scotch_terrier nom m s 0.01 0 0.01 0 +scotchais scotcher ver 1.63 0.74 0.01 0 ind:imp:1s; +scotcher scotcher ver 1.63 0.74 0.17 0 inf; +scotches scotcher ver 1.63 0.74 0.1 0.2 ind:pre:2s; +scotchons scotcher ver 1.63 0.74 0 0.07 ind:pre:1p; +scotchs scotch nom m p 9.45 6.35 0.15 0.07 +scotché scotcher ver m s 1.63 0.74 0.85 0.2 par:pas; +scotchée scotcher ver f s 1.63 0.74 0.26 0.07 par:pas; +scotchées scotcher ver f p 1.63 0.74 0.04 0 par:pas; +scotchés scotcher ver m p 1.63 0.74 0.2 0.2 par:pas; +scotomisant scotomiser ver 0 0.14 0 0.07 par:pre; +scotomiser scotomiser ver 0 0.14 0 0.07 inf; +scottish scottish nom f s 0.14 0.14 0.14 0.14 +scoubidou scoubidou nom m s 0.23 0.34 0.2 0.27 +scoubidous scoubidou nom m p 0.23 0.34 0.03 0.07 +scoumoune scoumoune nom f s 0.1 0.2 0.1 0.2 +scout scout adj m s 1.94 2.5 1.63 1.62 +scoute scout adj f s 1.94 2.5 0.07 0.41 +scoutisme scoutisme nom m s 0.05 0.54 0.05 0.54 +scouts scout nom m p 3.73 2.09 2.48 1.08 +scrabble scrabble nom m s 1.39 0.2 1.39 0.2 +scratch scratch nom m s 0.41 0.07 0.41 0.07 +scratcher scratcher ver 0.02 0 0.02 0 inf; +scratching scratching nom m s 0.17 0 0.17 0 +scriban scriban nom m s 0 0.07 0 0.07 +scribe scribe nom m s 2.05 3.18 0.65 1.55 +scribes scribe nom m p 2.05 3.18 1.4 1.62 +scribouillages scribouillage nom m p 0 0.07 0 0.07 +scribouillard scribouillard nom m s 0.17 1.01 0.06 0.88 +scribouillards scribouillard nom m p 0.17 1.01 0.11 0.14 +scribouille scribouiller ver 0.03 0.2 0.02 0.07 ind:pre:1s;ind:pre:3s; +scribouiller scribouiller ver 0.03 0.2 0.01 0.14 inf; +script script nom m s 6.45 0.41 5.73 0.41 +script_girl script_girl nom f s 0 0.2 0 0.2 +scripte scripte nom s 1.23 0 1.23 0 +scripteur scripteur nom m s 0 0.14 0 0.07 +scripteurs scripteur nom m p 0 0.14 0 0.07 +scripts script nom m p 6.45 0.41 0.72 0 +scrofulaire scrofulaire nom f s 0.01 0 0.01 0 +scrofule scrofule nom f s 0.03 0.14 0.02 0.07 +scrofules scrofule nom f p 0.03 0.14 0.01 0.07 +scrofuleux scrofuleux adj m s 0.02 0.34 0.02 0.34 +scrogneugneu scrogneugneu ono 0 0.2 0 0.2 +scrotal scrotal adj m s 0.01 0 0.01 0 +scrotum scrotum nom m s 0.77 0.07 0.77 0.07 +scrub scrub nom m s 2.72 0.07 0.07 0 +scrubs scrub nom m p 2.72 0.07 2.66 0.07 +scrupule scrupule nom m s 6.66 16.42 0.94 6.28 +scrupules scrupule nom m p 6.66 16.42 5.71 10.14 +scrupuleuse scrupuleux adj f s 0.76 3.78 0.11 1.28 +scrupuleusement scrupuleusement adv 0.56 3.04 0.56 3.04 +scrupuleuses scrupuleux adj f p 0.76 3.78 0.01 0.07 +scrupuleux scrupuleux adj m 0.76 3.78 0.64 2.43 +scrupulosité scrupulosité nom f s 0.01 0 0.01 0 +scruta scruter ver 2.3 15.54 0 1.89 ind:pas:3s; +scrutai scruter ver 2.3 15.54 0 0.2 ind:pas:1s; +scrutaient scruter ver 2.3 15.54 0.1 0.41 ind:imp:3p; +scrutais scruter ver 2.3 15.54 0.03 0.41 ind:imp:1s; +scrutait scruter ver 2.3 15.54 0.16 2.36 ind:imp:3s; +scrutant scruter ver 2.3 15.54 0.26 2.7 par:pre; +scrutateur scrutateur adj m s 0.39 0.41 0.39 0.2 +scrutateurs scrutateur adj m p 0.39 0.41 0 0.14 +scrutation scrutation nom f s 0.04 0 0.04 0 +scrutatrices scrutateur adj f p 0.39 0.41 0 0.07 +scrute scruter ver 2.3 15.54 0.59 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scrutent scruter ver 2.3 15.54 0.17 0.47 ind:pre:3p; +scruter scruter ver 2.3 15.54 0.47 2.91 inf; +scrutera scruter ver 2.3 15.54 0.01 0.07 ind:fut:3s; +scruterai scruter ver 2.3 15.54 0.01 0 ind:fut:1s; +scruterait scruter ver 2.3 15.54 0 0.07 cnd:pre:3s; +scruteront scruter ver 2.3 15.54 0.01 0 ind:fut:3p; +scrutez scruter ver 2.3 15.54 0.06 0 imp:pre:2p;ind:pre:2p; +scrutin scrutin nom m s 0.71 1.49 0.62 1.28 +scrutins scrutin nom m p 0.71 1.49 0.09 0.2 +scrutions scruter ver 2.3 15.54 0 0.2 ind:imp:1p; +scrutons scruter ver 2.3 15.54 0.02 0 imp:pre:1p;ind:pre:1p; +scrutâmes scruter ver 2.3 15.54 0 0.14 ind:pas:1p; +scrutèrent scruter ver 2.3 15.54 0 0.07 ind:pas:3p; +scruté scruter ver m s 2.3 15.54 0.38 0.74 par:pas; +scrutée scruter ver f s 2.3 15.54 0.02 0.07 par:pas; +scrutés scruter ver m p 2.3 15.54 0.01 0.2 par:pas; +sculpta sculpter ver 2.92 13.72 0.04 0.34 ind:pas:3s; +sculptaient sculpter ver 2.92 13.72 0 0.07 ind:imp:3p; +sculptais sculpter ver 2.92 13.72 0.11 0.07 ind:imp:1s; +sculptait sculpter ver 2.92 13.72 0.02 1.15 ind:imp:3s; +sculptant sculpter ver 2.92 13.72 0.1 0.41 par:pre; +sculpte sculpter ver 2.92 13.72 0.63 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sculptent sculpter ver 2.92 13.72 0.03 0.14 ind:pre:3p; +sculpter sculpter ver 2.92 13.72 0.87 2.16 inf; +sculptera sculpter ver 2.92 13.72 0.01 0.14 ind:fut:3s; +sculpterai sculpter ver 2.92 13.72 0.02 0 ind:fut:1s; +sculpterait sculpter ver 2.92 13.72 0 0.07 cnd:pre:3s; +sculpteras sculpter ver 2.92 13.72 0.01 0.07 ind:fut:2s; +sculpterez sculpter ver 2.92 13.72 0.01 0.07 ind:fut:2p; +sculptes sculpter ver 2.92 13.72 0.14 0.2 ind:pre:2s; +sculpteur sculpteur nom m s 3.63 7.5 3.31 4.93 +sculpteurs sculpteur nom m p 3.63 7.5 0.29 2.57 +sculptez sculpter ver 2.92 13.72 0.04 0.07 imp:pre:2p;ind:pre:2p; +sculptiez sculpter ver 2.92 13.72 0 0.07 ind:imp:2p; +sculptrice sculpteur nom f s 3.63 7.5 0.02 0 +sculptural sculptural adj m s 0.02 0.68 0 0.2 +sculpturale sculptural adj f s 0.02 0.68 0.02 0.34 +sculpturales sculptural adj f p 0.02 0.68 0 0.07 +sculpturaux sculptural adj m p 0.02 0.68 0 0.07 +sculpture sculpture nom f s 7.12 7.91 5.48 3.78 +sculptures sculpture nom f p 7.12 7.91 1.64 4.12 +sculptâtes sculpter ver 2.92 13.72 0 0.07 ind:pas:2p; +sculpté sculpter ver m s 2.92 13.72 0.56 3.38 par:pas; +sculptée sculpté adj f s 0.5 7.23 0.15 1.28 +sculptées sculpter ver f p 2.92 13.72 0.17 0.74 par:pas; +sculptés sculpter ver m p 2.92 13.72 0.06 1.76 par:pas; +scutigère scutigère nom f s 0 0.61 0 0.54 +scutigères scutigère nom f p 0 0.61 0 0.07 +scythe scythe adj s 0.04 0.34 0.04 0.2 +scythes scythe adj m p 0.04 0.34 0 0.14 +scène scène nom f s 107.96 114.93 96.66 95.27 +scène_clé scène_clé nom f s 0.01 0 0.01 0 +scènes scène nom f p 107.96 114.93 11.3 19.66 +scènes_clé scènes_clé nom f p 0.01 0 0.01 0 +scélérat scélérat nom m s 2.87 0.74 2.19 0.27 +scélérate scélérat adj f s 1.05 0.27 0.12 0 +scélérates scélérat adj f p 1.05 0.27 0.01 0.07 +scélératesse scélératesse nom f s 0 0.14 0 0.07 +scélératesses scélératesse nom f p 0 0.14 0 0.07 +scélérats scélérat nom m p 2.87 0.74 0.66 0.47 +scénar scénar nom m s 0.51 0.34 0.46 0.34 +scénarii scénario nom m p 19.14 9.26 0 0.07 +scénarimage scénarimage nom m s 0.01 0 0.01 0 +scénario scénario nom m s 19.14 9.26 16.7 8.18 +scénarios scénario nom m p 19.14 9.26 2.44 1.01 +scénariste scénariste nom s 2.7 0.68 1.98 0.41 +scénaristes scénariste nom p 2.7 0.68 0.72 0.27 +scénaristique scénaristique adj f s 0.01 0.14 0.01 0.14 +scénars scénar nom m p 0.51 0.34 0.04 0 +scénique scénique adj f s 0.12 0.2 0.11 0 +scéniques scénique adj p 0.12 0.2 0.01 0.2 +scénographe scénographe nom s 0.03 0 0.03 0 +scénographie scénographie nom f s 0.35 0.07 0.35 0.07 +scénographique scénographique adj m s 0.01 0 0.01 0 +se se pro_per 2813.77 6587.77 2813.77 6587.77 +seaborgium seaborgium nom m s 0.1 0 0.1 0 +seau seau nom m s 9.01 24.05 7.02 14.73 +seaux seau nom m p 9.01 24.05 2 9.32 +sec sec adj m s 43.02 142.84 27.4 72.3 +secco secco nom m s 0 0.61 0 0.34 +seccos secco nom m p 0 0.61 0 0.27 +seccotine seccotine nom f s 0 0.34 0 0.34 +second second adj m s 52.5 88.58 15.32 32.3 +second_maître second_maître nom m s 0.05 0.07 0.05 0.07 +secondaient seconder ver 1.76 5 0 0.07 ind:imp:3p; +secondaire secondaire adj s 8.06 8.65 4.16 5.07 +secondairement secondairement adv 0 0.27 0 0.27 +secondaires secondaire adj p 8.06 8.65 3.91 3.58 +secondais seconder ver 1.76 5 0.03 0 ind:imp:1s; +secondait seconder ver 1.76 5 0.1 0.41 ind:imp:3s; +secondant seconder ver 1.76 5 0 0.07 par:pre; +seconde seconde nom f s 124.54 121.49 72.34 66.22 +secondement secondement adv 0 0.14 0 0.14 +secondent seconder ver 1.76 5 0.01 0.27 ind:pre:3p; +seconder seconder ver 1.76 5 0.37 1.96 inf; +secondera seconder ver 1.76 5 0.07 0 ind:fut:3s; +seconderai seconder ver 1.76 5 0.03 0 ind:fut:1s; +seconderas seconder ver 1.76 5 0.02 0 ind:fut:2s; +seconderez seconder ver 1.76 5 0.02 0 ind:fut:2p; +seconderont seconder ver 1.76 5 0.02 0 ind:fut:3p; +secondes seconde nom f p 124.54 121.49 52.2 55.27 +secondo secondo nom m s 0.2 0.07 0.2 0.07 +seconds second adj m p 52.5 88.58 0.28 0.34 +secondé seconder ver m s 1.76 5 0.24 1.01 par:pas; +secondée seconder ver f s 1.76 5 0.01 0.34 par:pas; +secondés seconder ver m p 1.76 5 0.04 0.2 par:pas; +secoua secouer ver 19 116.35 0.26 25.68 ind:pas:3s; +secouai secouer ver 19 116.35 0.01 1.82 ind:pas:1s; +secouaient secouer ver 19 116.35 0.01 3.24 ind:imp:3p; +secouais secouer ver 19 116.35 0.04 0.47 ind:imp:1s;ind:imp:2s; +secouait secouer ver 19 116.35 0.67 12.84 ind:imp:3s; +secouant secouer ver 19 116.35 0.39 11.49 par:pre; +secouassent secouer ver 19 116.35 0 0.07 sub:imp:3p; +secoue secouer ver 19 116.35 4.77 17.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +secouement secouement nom m s 0 0.07 0 0.07 +secouent secouer ver 19 116.35 0.29 1.76 ind:pre:3p; +secouer secouer ver 19 116.35 4.5 14.19 inf;; +secouera secouer ver 19 116.35 0.04 0.14 ind:fut:3s; +secouerai secouer ver 19 116.35 0.02 0.14 ind:fut:1s; +secoueraient secouer ver 19 116.35 0.01 0.14 cnd:pre:3p; +secouerais secouer ver 19 116.35 0.01 0.14 cnd:pre:1s; +secouerait secouer ver 19 116.35 0.04 0.41 cnd:pre:3s; +secouerez secouer ver 19 116.35 0.01 0 ind:fut:2p; +secoueront secouer ver 19 116.35 0.01 0.07 ind:fut:3p; +secoues secouer ver 19 116.35 0.56 0.2 ind:pre:2s; +secoueur secoueur nom m s 0.09 0.07 0.02 0.07 +secoueurs secoueur nom m p 0.09 0.07 0.06 0 +secouez secouer ver 19 116.35 1.24 0.61 imp:pre:2p;ind:pre:2p; +secouions secouer ver 19 116.35 0 0.14 ind:imp:1p; +secouons secouer ver 19 116.35 0.04 0.14 imp:pre:1p;ind:pre:1p; +secourable secourable adj s 0.69 1.42 0.66 1.22 +secourables secourable adj p 0.69 1.42 0.03 0.2 +secouraient secourir ver 6.05 4.93 0 0.07 ind:imp:3p; +secourait secourir ver 6.05 4.93 0.02 0.07 ind:imp:3s; +secourant secourir ver 6.05 4.93 0.12 0 par:pre; +secoures secourir ver 6.05 4.93 0.11 0 sub:pre:2s; +secourez secourir ver 6.05 4.93 0.74 0 imp:pre:2p;ind:pre:2p; +secourions secourir ver 6.05 4.93 0.03 0.07 ind:imp:1p; +secourir secourir ver 6.05 4.93 2.97 2.64 inf; +secourisme secourisme nom m s 0.26 0.07 0.26 0.07 +secouriste secouriste nom s 0.94 0.34 0.43 0.2 +secouristes secouriste nom p 0.94 0.34 0.51 0.14 +secourra secourir ver 6.05 4.93 0.01 0 ind:fut:3s; +secours secours nom m 70.36 40.47 70.36 40.47 +secourt secourir ver 6.05 4.93 0.06 0 ind:pre:3s; +secouru secourir ver m s 6.05 4.93 1.1 0.88 par:pas; +secourue secourir ver f s 6.05 4.93 0.3 0.54 par:pas; +secourues secourir ver f p 6.05 4.93 0.02 0.14 par:pas; +secourus secourir ver m p 6.05 4.93 0.31 0 par:pas; +secourut secourir ver 6.05 4.93 0 0.2 ind:pas:3s; +secourût secourir ver 6.05 4.93 0 0.14 sub:imp:3s; +secousse secousse nom f s 2.59 16.28 1.44 8.72 +secousses secousse nom f p 2.59 16.28 1.15 7.57 +secouâmes secouer ver 19 116.35 0 0.27 ind:pas:1p; +secouèrent secouer ver 19 116.35 0.01 0.81 ind:pas:3p; +secoué secouer ver m s 19 116.35 3.96 13.99 par:pas; +secouée secouer ver f s 19 116.35 1.49 6.35 par:pas; +secouées secouer ver f p 19 116.35 0.04 0.81 par:pas; +secoués secouer ver m p 19 116.35 0.59 2.84 par:pas; +secret secret nom m s 103.49 96.01 81.34 70.81 +secrets secret nom m p 103.49 96.01 22.15 25.2 +secrète secret adj f s 62.68 83.11 14.43 28.51 +secrètement secrètement adv 3.2 13.04 3.2 13.04 +secrètent secréter ver 0.52 0.74 0.04 0 ind:pre:3p; +secrètes secret adj f p 62.68 83.11 3.79 10.47 +secrétaient secréter ver 0.52 0.74 0 0.07 ind:imp:3p; +secrétaire secrétaire nom s 31.22 43.78 29.43 38.58 +secrétairerie secrétairerie nom f s 0 0.07 0 0.07 +secrétaires secrétaire nom p 31.22 43.78 1.79 5.2 +secrétariat secrétariat nom m s 1.43 3.31 1.43 3.24 +secrétariats secrétariat nom m p 1.43 3.31 0 0.07 +secréter secréter ver 0.52 0.74 0.01 0.07 inf; +secrété secréter ver m s 0.52 0.74 0.01 0.14 par:pas; +secrétée secréter ver f s 0.52 0.74 0.01 0.07 par:pas; +secs sec adj m p 43.02 142.84 4.91 17.09 +sectaire sectaire adj s 0.35 0.68 0.22 0.34 +sectaires sectaire adj p 0.35 0.68 0.13 0.34 +sectarisme sectarisme nom m s 0.06 0.34 0.06 0.34 +sectateur sectateur nom m s 0.01 0.34 0 0.14 +sectateurs sectateur nom m p 0.01 0.34 0.01 0.2 +secte secte nom f s 5.02 4.19 4.15 3.11 +sectes secte nom f p 5.02 4.19 0.87 1.08 +secteur secteur nom m s 26.5 20.34 24.57 18.45 +secteurs secteur nom m p 26.5 20.34 1.93 1.89 +section section nom f s 20.34 22.23 18.03 16.35 +sectionna sectionner ver 1.75 1.89 0 0.14 ind:pas:3s; +sectionnaient sectionner ver 1.75 1.89 0 0.07 ind:imp:3p; +sectionnant sectionner ver 1.75 1.89 0.04 0 par:pre; +sectionne sectionner ver 1.75 1.89 0.27 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sectionnement sectionnement nom m s 0.01 0.07 0.01 0.07 +sectionnent sectionner ver 1.75 1.89 0 0.14 ind:pre:3p; +sectionner sectionner ver 1.75 1.89 0.33 0.07 inf; +sectionnera sectionner ver 1.75 1.89 0.02 0 ind:fut:3s; +sectionnez sectionner ver 1.75 1.89 0.06 0 imp:pre:2p; +sectionné sectionner ver m s 1.75 1.89 0.53 0.54 par:pas; +sectionnée sectionner ver f s 1.75 1.89 0.34 0.41 par:pas; +sectionnées sectionner ver f p 1.75 1.89 0.06 0.2 par:pas; +sectionnés sectionner ver m p 1.75 1.89 0.09 0.14 par:pas; +sections section nom f p 20.34 22.23 2.31 5.88 +sectorielles sectoriel adj f p 0 0.14 0 0.07 +sectoriels sectoriel adj m p 0 0.14 0 0.07 +sectorisation sectorisation nom f s 0.01 0 0.01 0 +secundo secundo adv_sup 1.64 0.88 1.64 0.88 +sedan sedan nom m s 0.04 0.07 0.04 0.07 +sedia_gestatoria sedia_gestatoria nom f 0 0.2 0 0.2 +sedums sedum nom m p 0 0.07 0 0.07 +seersucker seersucker nom m s 0.02 0 0.02 0 +segment segment nom m s 0.69 1.42 0.36 0.88 +segmentaire segmentaire adj s 0.03 0 0.03 0 +segmentale segmental adj f s 0.01 0 0.01 0 +segmentez segmenter ver 0.03 0 0.01 0 imp:pre:2p; +segments segment nom m p 0.69 1.42 0.33 0.54 +segmenté segmenter ver m s 0.03 0 0.01 0 par:pas; +seguedilla seguedilla nom f s 0 0.2 0 0.07 +seguedillas seguedilla nom f p 0 0.2 0 0.14 +seiche seiche nom f s 0.23 0.88 0.23 0.61 +seiches seiche nom f p 0.23 0.88 0 0.27 +seigle seigle nom m s 0.69 2.36 0.69 2.09 +seigles seigle nom m p 0.69 2.36 0 0.27 +seigneur seigneur nom m s 153.82 60.14 147.72 51.82 +seigneurial seigneurial adj m s 0.02 1.01 0.01 0.34 +seigneuriale seigneurial adj f s 0.02 1.01 0 0.41 +seigneuriales seigneurial adj f p 0.02 1.01 0.01 0.2 +seigneuriaux seigneurial adj m p 0.02 1.01 0 0.07 +seigneurie seigneurie nom f s 3 4.86 2.81 4.59 +seigneuries seigneurie nom f p 3 4.86 0.19 0.27 +seigneurs seigneur nom m p 153.82 60.14 6.1 8.31 +seille seille nom f s 0 0.27 0 0.07 +seilles seille nom f p 0 0.27 0 0.2 +seillon seillon nom m s 0 0.07 0 0.07 +sein sein nom m s 44.9 84.05 16.93 32.23 +seine seine nom f s 0.14 0.47 0.14 0.27 +seing seing nom m s 0.01 0.07 0.01 0.07 +seins sein nom m p 44.9 84.05 27.97 51.82 +seize seize adj_num 7.71 31.42 7.71 31.42 +seizième seizième nom s 0.68 1.08 0.68 1.08 +sel sel nom m s 21.83 33.24 20.93 31.01 +seldjoukide seldjoukide adj m s 0 0.14 0 0.14 +seldjoukides seldjoukide nom p 0 0.07 0 0.07 +select select adj m s 0.14 0.34 0.12 0.27 +selects select adj m p 0.14 0.34 0.02 0.07 +self self nom m s 0.67 0.34 0.67 0.27 +self_control self_control nom m s 0.16 0.34 0.16 0.34 +self_contrôle self_contrôle nom m s 0.19 0.07 0.19 0.07 +self_défense self_défense nom f s 0.18 0 0.18 0 +self_made_man self_made_man nom m s 0.14 0.07 0.14 0.07 +self_made_man self_made_man nom m s 0.02 0.07 0.02 0.07 +self_made_men self_made_men nom m p 0.01 0.07 0.01 0.07 +self_service self_service nom m s 0.37 0.47 0.36 0.47 +self_service self_service nom m p 0.37 0.47 0.01 0 +selfs self nom m p 0.67 0.34 0 0.07 +sellait seller ver 1.81 1.96 0 0.07 ind:imp:3s; +selle selle nom f s 10.26 19.05 8.9 16.08 +seller seller ver 1.81 1.96 0.52 0.68 inf; +sellerie sellerie nom f s 0.05 0.27 0.05 0.2 +selleries sellerie nom f p 0.05 0.27 0 0.07 +selles selle nom f p 10.26 19.05 1.36 2.97 +sellette sellette nom f s 0.36 0.88 0.36 0.88 +sellez seller ver 1.81 1.96 0.42 0 imp:pre:2p;ind:pre:2p; +sellier sellier nom m s 0.02 0.47 0.02 0.47 +sellé seller ver m s 1.81 1.96 0.28 0.54 par:pas; +sellée seller ver f s 1.81 1.96 0.02 0 par:pas; +sellées seller ver f p 1.81 1.96 0 0.14 par:pas; +sellés seller ver m p 1.81 1.96 0.05 0.41 par:pas; +selon selon pre 81.4 110.88 81.4 110.88 +sels sel nom m p 21.83 33.24 0.9 2.23 +seltz seltz nom m 0.17 0 0.17 0 +selva selva nom f s 0.44 0 0.44 0 +sema semer ver 19.8 25.41 0.2 0.34 ind:pas:3s; +semaient semer ver 19.8 25.41 0.03 0.54 ind:imp:3p; +semailles semaille nom f p 0.19 0.81 0.19 0.81 +semaine semaine nom f s 290.85 197.5 186.01 111.89 +semaines semaine nom f p 290.85 197.5 104.84 85.61 +semainier semainier nom m s 0 0.34 0 0.34 +semait semer ver 19.8 25.41 0.03 1.49 ind:imp:3s; +semant semer ver 19.8 25.41 0.62 1.35 par:pre; +sembla sembler ver 229.25 572.84 0.87 32.43 ind:pas:3s; +semblable semblable adj s 8.93 52.91 5.99 31.42 +semblablement semblablement adv 0.01 0.81 0.01 0.81 +semblables semblable nom p 5.35 13.31 3.17 9.53 +semblaient sembler ver 229.25 572.84 2.99 55.81 ind:imp:3p; +semblais sembler ver 229.25 572.84 1.31 0.88 ind:imp:1s;ind:imp:2s; +semblait sembler ver 229.25 572.84 26.84 260.54 ind:imp:3s; +semblance semblance nom f s 0.02 0.27 0.02 0.27 +semblant semblant nom m s 25.63 32.09 25.55 31.89 +semblants semblant nom m p 25.63 32.09 0.08 0.2 +semble sembler ver 229.25 572.84 128.91 154.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +semblent sembler ver 229.25 572.84 14.09 22.23 ind:pre:3p;sub:pre:3p; +sembler sembler ver 229.25 572.84 6.01 4.53 inf;; +semblera sembler ver 229.25 572.84 2.15 1.42 ind:fut:3s; +sembleraient sembler ver 229.25 572.84 0.05 0.2 cnd:pre:3p; +semblerait sembler ver 229.25 572.84 10.04 2.57 cnd:pre:3s; +sembleront sembler ver 229.25 572.84 0.2 0.2 ind:fut:3p; +sembles sembler ver 229.25 572.84 5.11 1.22 ind:pre:2s; +semblez sembler ver 229.25 572.84 14.02 1.96 imp:pre:2p;ind:pre:2p; +sembliez sembler ver 229.25 572.84 0.94 0.34 ind:imp:2p; +semblions sembler ver 229.25 572.84 0.05 0.34 ind:imp:1p; +semblons sembler ver 229.25 572.84 0.53 0 imp:pre:1p;ind:pre:1p; +semblât sembler ver 229.25 572.84 0 0.74 sub:imp:3s; +semblèrent sembler ver 229.25 572.84 0.01 1.69 ind:pas:3p; +semblé sembler ver m s 229.25 572.84 7.21 16.96 par:pas; +semelle semelle nom f s 4.1 21.96 2.83 7.43 +semelles semelle nom f p 4.1 21.96 1.27 14.53 +semen_contra semen_contra nom m s 0 0.07 0 0.07 +semence semence nom f s 4.8 5.27 4.2 4.05 +semences semence nom f p 4.8 5.27 0.6 1.22 +semer semer ver 19.8 25.41 6.09 5.07 inf; +semestre semestre nom m s 3.53 1.49 3.24 1.49 +semestres semestre nom m p 3.53 1.49 0.29 0 +semestriel semestriel adj m s 0.05 0.07 0.01 0.07 +semestrielle semestriel adj f s 0.05 0.07 0.04 0 +semestriellement semestriellement adv 0.01 0 0.01 0 +semeur semeur nom m s 0.44 0.74 0.4 0.34 +semeurs semeur nom m p 0.44 0.74 0.04 0.27 +semeuse semeuse nom f s 0.11 0.47 0.11 0.47 +semeuses semeur nom f p 0.44 0.74 0 0.14 +semez semer ver 19.8 25.41 0.46 0.07 imp:pre:2p;ind:pre:2p; +semi semi nom m s 0.52 1.28 0.52 1.28 +semi_aride semi_aride adj f p 0.01 0 0.01 0 +semi_automatique semi_automatique adj s 0.71 0.07 0.59 0.07 +semi_automatique semi_automatique adj f p 0.71 0.07 0.12 0 +semi_circulaire semi_circulaire adj s 0.01 0.14 0.01 0.14 +semi_conducteur semi_conducteur nom m s 0.08 0 0.02 0 +semi_conducteur semi_conducteur nom m p 0.08 0 0.06 0 +semi_liberté semi_liberté nom f s 0.26 0.07 0.26 0.07 +semi_lunaire semi_lunaire adj f s 0.02 0 0.02 0 +semi_nomade semi_nomade adj m p 0 0.07 0 0.07 +semi_officiel semi_officiel adj m s 0.01 0.14 0.01 0.07 +semi_officiel semi_officiel adj f s 0.01 0.14 0 0.07 +semi_ouvert semi_ouvert adj m s 0.01 0 0.01 0 +semi_perméable semi_perméable adj f s 0.01 0 0.01 0 +semi_phonétique semi_phonétique adj f s 0 0.07 0 0.07 +semi_précieuse semi_précieuse adj f s 0.01 0 0.01 0 +semi_précieux semi_précieux adj f p 0 0.14 0 0.07 +semi_public semi_public adj m s 0.01 0 0.01 0 +semi_remorque semi_remorque nom m s 0.48 0.61 0.45 0.54 +semi_remorque semi_remorque nom m p 0.48 0.61 0.04 0.07 +semi_rigide semi_rigide adj f s 0.01 0.07 0.01 0.07 +semis semis nom m 0.04 2.84 0.04 2.84 +semoir semoir nom m s 0.04 0.34 0.04 0.2 +semoirs semoir nom m p 0.04 0.34 0 0.14 +semonce semonce nom f s 0.3 1.49 0.29 1.35 +semoncer semoncer ver 0 0.41 0 0.14 inf; +semonces semonce nom f p 0.3 1.49 0.01 0.14 +semoncé semoncer ver m s 0 0.41 0 0.07 par:pas; +semons semer ver 19.8 25.41 0.34 0 imp:pre:1p;ind:pre:1p; +semonça semoncer ver 0 0.41 0 0.07 ind:pas:3s; +semonçait semoncer ver 0 0.41 0 0.07 ind:imp:3s; +semonçant semoncer ver 0 0.41 0 0.07 par:pre; +semoule semoule nom f s 0.89 1.35 0.89 1.35 +sempiternel sempiternel adj m s 0.07 2.77 0 0.88 +sempiternelle sempiternel adj f s 0.07 2.77 0.03 0.47 +sempiternellement sempiternellement adv 0.01 0.07 0.01 0.07 +sempiternelles sempiternel adj f p 0.07 2.77 0.01 0.88 +sempiternels sempiternel adj m p 0.07 2.77 0.03 0.54 +semtex semtex nom m 0.1 0 0.1 0 +semât semer ver 19.8 25.41 0 0.07 sub:imp:3s; +semé semer ver m s 19.8 25.41 4.1 6.08 par:pas; +semée semer ver f s 19.8 25.41 0.4 3.99 par:pas; +semées semer ver f p 19.8 25.41 0.17 1.76 par:pas; +semés semer ver m p 19.8 25.41 1.44 1.69 par:pas; +sen sen nom m s 0.48 0.07 0.48 0.07 +senestre senestre adj f s 0 0.27 0 0.27 +senior senior adj m s 0.99 0.2 0.71 0.14 +seniors senior nom m p 0.64 0.07 0.3 0.07 +senne seine nom f s 0.14 0.47 0 0.2 +sens sentir ver 535.4 718.78 240.85 82.91 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sensas sensas adj s 0.44 0 0.44 0 +sensass sensass adj s 2.05 0.2 2.05 0.2 +sensation sensation nom f s 17.26 46.89 13.2 37.09 +sensationnalisme sensationnalisme nom m s 0.07 0 0.07 0 +sensationnel sensationnel adj m s 4.36 3.45 2.69 1.55 +sensationnelle sensationnel adj f s 4.36 3.45 1.37 1.35 +sensationnellement sensationnellement adv 0 0.07 0 0.07 +sensationnelles sensationnel adj f p 4.36 3.45 0.18 0.27 +sensationnels sensationnel adj m p 4.36 3.45 0.12 0.27 +sensations sensation nom f p 17.26 46.89 4.06 9.8 +senseur senseur nom m s 0.42 0.07 0.04 0.07 +senseurs senseur nom m p 0.42 0.07 0.38 0 +sensibilisait sensibiliser ver 0.27 0.68 0 0.07 ind:imp:3s; +sensibilisation sensibilisation nom f s 0.09 0.07 0.09 0.07 +sensibilise sensibiliser ver 0.27 0.68 0.02 0.14 imp:pre:2s;ind:pre:3s; +sensibiliser sensibiliser ver 0.27 0.68 0.16 0.07 inf; +sensibilisé sensibiliser ver m s 0.27 0.68 0.05 0.07 par:pas; +sensibilisée sensibiliser ver f s 0.27 0.68 0.01 0.27 par:pas; +sensibilisés sensibiliser ver m p 0.27 0.68 0.02 0.07 par:pas; +sensibilité sensibilité nom f s 5.95 12.36 5.72 12.03 +sensibilités sensibilité nom f p 5.95 12.36 0.23 0.34 +sensible sensible adj s 26.79 38.85 21.11 30.88 +sensiblement sensiblement adv 0.13 3.58 0.13 3.58 +sensiblerie sensiblerie nom f s 0.5 1.15 0.48 1.08 +sensibleries sensiblerie nom f p 0.5 1.15 0.02 0.07 +sensibles sensible adj p 26.79 38.85 5.67 7.97 +sensitif sensitif adj m s 0.21 0.54 0 0.2 +sensitifs sensitif adj m p 0.21 0.54 0.03 0 +sensitive sensitif adj f s 0.21 0.54 0.19 0.27 +sensitives sensitif adj f p 0.21 0.54 0 0.07 +sensorialité sensorialité nom f s 0 0.07 0 0.07 +sensoriel sensoriel adj m s 0.86 0.54 0.22 0.07 +sensorielle sensoriel adj f s 0.86 0.54 0.23 0.34 +sensorielles sensoriel adj f p 0.86 0.54 0.1 0.14 +sensoriels sensoriel adj m p 0.86 0.54 0.32 0 +sensualiste sensualiste nom s 0 0.07 0 0.07 +sensualité sensualité nom f s 1.14 6.76 1.14 6.69 +sensualités sensualité nom f p 1.14 6.76 0 0.07 +sensuel sensuel adj m s 4.1 10.68 1.28 4.05 +sensuelle sensuel adj f s 4.1 10.68 1.82 5.07 +sensuellement sensuellement adv 0.28 0.54 0.28 0.54 +sensuelles sensuel adj f p 4.1 10.68 0.33 0.95 +sensuels sensuel adj m p 4.1 10.68 0.67 0.61 +sensé sensé adj m s 10.5 2.64 6.47 1.28 +sensée sensé adj f s 10.5 2.64 2.86 0.88 +sensées sensé adj f p 10.5 2.64 0.37 0.07 +sensément sensément adv 0 0.07 0 0.07 +sensés sensé adj m p 10.5 2.64 0.8 0.41 +sent sentir ver 535.4 718.78 74.27 84.73 ind:pre:3s; +sent_bon sent_bon nom m s 0 0.54 0 0.54 +sentaient sentir ver 535.4 718.78 0.8 13.99 ind:imp:3p; +sentais sentir ver 535.4 718.78 23.21 84.59 ind:imp:1s;ind:imp:2s; +sentait sentir ver 535.4 718.78 13.37 170.47 ind:imp:3s; +sentant sentir ver 535.4 718.78 1.93 14.39 par:pre; +sente sentir ver 535.4 718.78 4.89 4.46 sub:pre:1s;sub:pre:3s; +sentence sentence nom f s 7.7 5.68 7.17 4.19 +sentences sentence nom f p 7.7 5.68 0.52 1.49 +sentencieuse sentencieux adj f s 0.06 2.7 0.01 0.54 +sentencieusement sentencieusement adv 0 1.22 0 1.22 +sentencieuses sentencieux adj f p 0.06 2.7 0 0.2 +sentencieux sentencieux adj m 0.06 2.7 0.05 1.96 +sentent sentir ver 535.4 718.78 11.21 11.08 ind:pre:3p;sub:pre:3p; +sentes sentir ver 535.4 718.78 2.6 0.41 sub:pre:2s; +senteur senteur nom f s 0.71 11.69 0.51 6.01 +senteurs senteur nom f p 0.71 11.69 0.2 5.68 +sentez sentir ver 535.4 718.78 32.56 5.34 imp:pre:2p;ind:pre:2p; +senti sentir ver m s 535.4 718.78 34.33 49.05 par:pas; +sentie sentir ver f s 535.4 718.78 7.3 7.91 par:pas; +sentier sentier nom m s 5.72 36.62 3.88 28.45 +sentiers sentier nom m p 5.72 36.62 1.85 8.18 +senties sentir ver f p 535.4 718.78 0.06 0.61 par:pas; +sentiez sentir ver 535.4 718.78 1.86 1.01 ind:imp:2p;sub:pre:2p; +sentiment sentiment nom m s 75.72 157.3 36.87 106.42 +sentimental sentimental adj m s 8.69 17.16 4.4 6.01 +sentimentale sentimental adj f s 8.69 17.16 2.3 5.81 +sentimentalement sentimentalement adv 0.82 0.54 0.82 0.54 +sentimentales sentimental adj f p 8.69 17.16 1.35 3.24 +sentimentaliser sentimentaliser ver 0.01 0 0.01 0 inf; +sentimentalisme sentimentalisme nom m s 0.75 0.27 0.75 0.27 +sentimentalité sentimentalité nom f s 0.18 1.22 0.18 1.15 +sentimentalités sentimentalité nom f p 0.18 1.22 0 0.07 +sentimentaux sentimental adj m p 8.69 17.16 0.64 2.09 +sentiments sentiment nom m p 75.72 157.3 38.86 50.88 +sentine sentine nom f s 0 0.54 0 0.34 +sentinelle sentinelle nom f s 4.5 12.57 2.91 7.64 +sentinelles sentinelle nom f p 4.5 12.57 1.59 4.93 +sentines sentine nom f p 0 0.54 0 0.2 +sentions sentir ver 535.4 718.78 0.59 3.11 ind:imp:1p;sub:pre:1p; +sentir sentir ver 535.4 718.78 58.48 74.19 inf; +sentira sentir ver 535.4 718.78 2.5 1.08 ind:fut:3s; +sentirai sentir ver 535.4 718.78 2.08 1.42 ind:fut:1s; +sentiraient sentir ver 535.4 718.78 0.09 0.47 cnd:pre:3p; +sentirais sentir ver 535.4 718.78 3.82 1.28 cnd:pre:1s;cnd:pre:2s; +sentirait sentir ver 535.4 718.78 1.2 2.91 cnd:pre:3s; +sentiras sentir ver 535.4 718.78 7.07 0.47 ind:fut:2s; +sentirent sentir ver 535.4 718.78 0.05 2.09 ind:pas:3p; +sentirez sentir ver 535.4 718.78 3.74 0.74 ind:fut:2p; +sentiriez sentir ver 535.4 718.78 0.37 0.14 cnd:pre:2p; +sentirons sentir ver 535.4 718.78 0.08 0.07 ind:fut:1p; +sentiront sentir ver 535.4 718.78 0.51 0.61 ind:fut:3p; +sentis sentir ver m p 535.4 718.78 2.6 24.12 ind:pas:1s;par:pas; +sentisse sentir ver 535.4 718.78 0 0.34 sub:imp:1s; +sentissent sentir ver 535.4 718.78 0 0.2 sub:imp:3p; +sentit sentir ver 535.4 718.78 1.98 69.66 ind:pas:3s; +sentons sentir ver 535.4 718.78 1.03 2.77 imp:pre:1p;ind:pre:1p; +sentîmes sentir ver 535.4 718.78 0 0.41 ind:pas:1p; +sentît sentir ver 535.4 718.78 0 1.76 sub:imp:3s; +seppuku seppuku nom m s 0.07 0 0.07 0 +seps seps nom m 0 0.07 0 0.07 +sept sept adj_num 66.07 75.61 66.07 75.61 +septale septal adj f s 0.04 0 0.03 0 +septante septante adj_num 0.11 0.07 0.11 0.07 +septante_cinq septante_cinq adj_num 0 0.07 0 0.07 +septante_sept septante_sept adj_num 0.2 0.07 0.2 0.07 +septaux septal adj m p 0.04 0 0.01 0 +septembre septembre nom m 16.01 43.58 16.01 43.58 +septembriseur septembriseur nom m s 0 0.07 0 0.07 +septennat septennat nom m s 0 0.14 0 0.14 +septentrion septentrion nom m s 0.16 0.07 0.16 0.07 +septentrional septentrional adj m s 0.02 0.74 0.01 0.14 +septentrionale septentrional adj f s 0.02 0.74 0.01 0.41 +septentrionales septentrional adj f p 0.02 0.74 0 0.2 +septicité septicité nom f s 0.03 0 0.03 0 +septicémie septicémie nom f s 0.23 0.2 0.23 0.2 +septicémique septicémique adj f s 0.04 0 0.04 0 +septidi septidi nom m s 0 0.07 0 0.07 +septime septime nom f s 0.81 0 0.81 0 +septique septique adj s 0.58 0.41 0.58 0.41 +septième septième adj 4.25 5.61 4.25 5.61 +septièmes septième nom p 2.81 3.18 0.01 0 +septuagénaire septuagénaire nom s 0.05 0.88 0.04 0.74 +septuagénaires septuagénaire nom p 0.05 0.88 0.01 0.14 +septum septum nom m s 0.09 0 0.09 0 +septuor septuor nom m s 0.01 0 0.01 0 +septuple septuple nom m s 0.03 0 0.03 0 +sepuku sepuku nom m s 0 0.07 0 0.07 +sequin sequin nom m s 0.29 0.27 0.01 0.07 +sequins sequin nom m p 0.29 0.27 0.28 0.2 +sera être aux 8074.24 6501.82 159.41 66.69 ind:fut:3s; +serai être aux 8074.24 6501.82 28.15 10.2 ind:fut:1s; +seraient être aux 8074.24 6501.82 10.47 30.81 cnd:pre:3p; +serais être aux 8074.24 6501.82 45.02 36.42 cnd:pre:2s; +serait être aux 8074.24 6501.82 59.74 111.35 cnd:pre:3s; +seras être aux 8074.24 6501.82 25.57 4.39 ind:fut:2s; +serbe serbe adj s 3.48 0.88 2.44 0.54 +serbes serbe nom p 2.85 0.95 2.31 0.74 +serbo_croate serbo_croate nom s 0.14 0.2 0.14 0.2 +serein serein adj m s 5.22 10.61 3.38 3.72 +sereine serein adj f s 5.22 10.61 1.04 5.81 +sereinement sereinement adv 0.43 0.74 0.43 0.74 +sereines serein adj f p 5.22 10.61 0.31 0.41 +sereins serein adj m p 5.22 10.61 0.5 0.68 +serez être aux 8074.24 6501.82 26.65 6.76 ind:fut:2p; +serf serf nom m s 0.56 1.08 0.23 0.27 +serfouette serfouette nom f s 0 0.07 0 0.07 +serfs serf nom m p 0.56 1.08 0.33 0.81 +serge serge nom f s 1.1 2.64 1.1 2.5 +sergent sergent nom m s 27.36 23.65 26.48 20.88 +sergent_chef sergent_chef nom m s 1.52 1.49 1.38 1.42 +sergent_major sergent_major nom m s 0.71 1.35 0.71 1.28 +sergent_pilote sergent_pilote nom m s 0 0.07 0 0.07 +sergents sergent nom m p 27.36 23.65 0.88 2.77 +sergent_chef sergent_chef nom m p 1.52 1.49 0.14 0.07 +sergent_major sergent_major nom m p 0.71 1.35 0 0.07 +serges serge nom f p 1.1 2.64 0 0.14 +sergot sergot nom m s 0.01 0.14 0.01 0.07 +sergots sergot nom m p 0.01 0.14 0 0.07 +sergé sergé nom m s 0 0.2 0 0.2 +serial serial nom m s 0.69 0.07 0.69 0.07 +seriez être aux 8074.24 6501.82 6.69 3.24 cnd:pre:2p; +serin serin nom m s 0.07 3.24 0.05 1.49 +serinais seriner ver 0.25 2.03 0.01 0.07 ind:imp:1s;ind:imp:2s; +serinait seriner ver 0.25 2.03 0.01 0.54 ind:imp:3s; +serine seriner ver 0.25 2.03 0.01 0.47 ind:pre:1s;ind:pre:3s; +seriner seriner ver 0.25 2.03 0.19 0.47 inf; +serinera seriner ver 0.25 2.03 0 0.07 ind:fut:3s; +serines seriner ver 0.25 2.03 0.03 0.07 ind:pre:2s; +seringa seringa nom m s 0.14 0.81 0.14 0.54 +seringas seringa nom m p 0.14 0.81 0 0.27 +seringuaient seringuer ver 0 0.34 0 0.07 ind:imp:3p; +seringuait seringuer ver 0 0.34 0 0.07 ind:imp:3s; +seringue seringue nom f s 6.15 5 4.39 4.39 +seringueiros seringueiro nom m p 0 0.07 0 0.07 +seringuer seringuer ver 0 0.34 0 0.14 inf; +seringues seringue nom f p 6.15 5 1.76 0.61 +seringuée seringuer ver f s 0 0.34 0 0.07 par:pas; +serinions seriner ver 0.25 2.03 0 0.07 ind:imp:1p; +serins serin nom m p 0.07 3.24 0.01 1.49 +seriné seriner ver m s 0.25 2.03 0 0.2 par:pas; +serinées seriner ver f p 0.25 2.03 0 0.07 par:pas; +serions être aux 8074.24 6501.82 2.56 3.99 cnd:pre:1p; +serment serment nom m s 21.19 12.23 18.18 8.85 +serments serment nom m p 21.19 12.23 3.01 3.38 +sermon sermon nom m s 7.61 6.42 4.38 3.85 +sermonna sermonner ver 1.39 1.89 0 0.34 ind:pas:3s; +sermonnaient sermonner ver 1.39 1.89 0 0.14 ind:imp:3p; +sermonnait sermonner ver 1.39 1.89 0 0.2 ind:imp:3s; +sermonnant sermonner ver 1.39 1.89 0.04 0.07 par:pre; +sermonne sermonner ver 1.39 1.89 0.14 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sermonner sermonner ver 1.39 1.89 0.78 0.47 inf; +sermonnerai sermonner ver 1.39 1.89 0.01 0 ind:fut:1s; +sermonnes sermonner ver 1.39 1.89 0.02 0 ind:pre:2s; +sermonneur sermonneur nom m s 0.28 0 0.27 0 +sermonneurs sermonneur nom m p 0.28 0 0.01 0 +sermonnez sermonner ver 1.39 1.89 0.33 0 imp:pre:2p;ind:pre:2p; +sermonné sermonner ver m s 1.39 1.89 0.05 0.34 par:pas; +sermonnée sermonner ver f s 1.39 1.89 0.03 0.07 par:pas; +sermons sermon nom m p 7.61 6.42 3.22 2.57 +serons être aux 8074.24 6501.82 8.5 5.41 ind:fut:1p; +seront être aux 8074.24 6501.82 39.61 23.65 ind:fut:3p; +serpe serpe nom f s 0.01 4.32 0.01 4.12 +serpent serpent nom m s 32.2 21.08 20.91 13.24 +serpentaient serpenter ver 0.09 5.88 0 0.61 ind:imp:3p; +serpentaire serpentaire nom s 0 0.07 0 0.07 +serpentait serpenter ver 0.09 5.88 0.02 1.89 ind:imp:3s; +serpentant serpenter ver 0.09 5.88 0.04 0.74 par:pre; +serpente serpenter ver 0.09 5.88 0.01 1.62 ind:pre:1s;ind:pre:3s; +serpenteau serpenteau nom m s 0.01 0 0.01 0 +serpentement serpentement nom m s 0 0.14 0 0.07 +serpentements serpentement nom m p 0 0.14 0 0.07 +serpentent serpenter ver 0.09 5.88 0.01 0.27 ind:pre:3p; +serpenter serpenter ver 0.09 5.88 0 0.61 inf; +serpentiforme serpentiforme adj m s 0 0.07 0 0.07 +serpentin serpentin adj m s 0.22 0.47 0.03 0.07 +serpentine serpentin adj f s 0.22 0.47 0.04 0.2 +serpentines serpentin adj f p 0.22 0.47 0.15 0.14 +serpentins serpentin nom m p 0.23 1.49 0.2 1.08 +serpentons serpenter ver 0.09 5.88 0 0.07 ind:pre:1p; +serpents serpent nom m p 32.2 21.08 11.29 7.84 +serpenté serpenter ver m s 0.09 5.88 0 0.07 par:pas; +serpes serpe nom f p 0.01 4.32 0 0.2 +serpette serpette nom f s 0 0.47 0 0.47 +serpillière serpillière nom f s 1.85 4.46 1.65 3.11 +serpillières serpillière nom f p 1.85 4.46 0.21 1.35 +serpolet serpolet nom m s 0 0.14 0 0.14 +serra serra nom f s 0.82 2.09 0.82 2.09 +serrage serrage nom m s 0.01 0.47 0.01 0.47 +serrai serrer ver 50.99 207.5 0.01 2.84 ind:pas:1s; +serraient serrer ver 50.99 207.5 0.04 5.81 ind:imp:3p; +serrais serrer ver 50.99 207.5 0.68 2.77 ind:imp:1s;ind:imp:2s; +serrait serrer ver 50.99 207.5 1.29 26.96 ind:imp:3s; +serrant serrer ver 50.99 207.5 1.08 22.84 par:pre; +serrante serrante nom f s 0 0.2 0 0.2 +serre serrer ver 50.99 207.5 11.84 27.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +serre_file serre_file nom m s 0.04 0.34 0.04 0.34 +serre_joint serre_joint nom m s 0.04 0.14 0.01 0 +serre_joint serre_joint nom m p 0.04 0.14 0.03 0.14 +serre_livres serre_livres nom m 0.03 0.07 0.03 0.07 +serre_tête serre_tête nom m s 0.22 0.74 0.21 0.74 +serre_tête serre_tête nom m p 0.22 0.74 0.01 0 +serrement serrement nom m s 0.03 1.76 0.03 1.55 +serrements serrement nom m p 0.03 1.76 0 0.2 +serrent serrer ver 50.99 207.5 1.78 3.38 ind:pre:3p;sub:pre:3p; +serrer serrer ver 50.99 207.5 13.68 23.24 inf; +serrera serrer ver 50.99 207.5 0.69 0.2 ind:fut:3s; +serrerai serrer ver 50.99 207.5 0.32 0.34 ind:fut:1s; +serreraient serrer ver 50.99 207.5 0 0.34 cnd:pre:3p; +serrerais serrer ver 50.99 207.5 0.12 0.41 cnd:pre:1s; +serrerait serrer ver 50.99 207.5 0.13 0.47 cnd:pre:3s; +serrerez serrer ver 50.99 207.5 0.06 0.07 ind:fut:2p; +serrerons serrer ver 50.99 207.5 0 0.07 ind:fut:1p; +serreront serrer ver 50.99 207.5 0.01 0.2 ind:fut:3p; +serres serrer ver 50.99 207.5 1.6 0.34 ind:pre:2s;sub:pre:2s; +serrez serrer ver 50.99 207.5 5.34 1.28 imp:pre:2p;ind:pre:2p; +serriez serrer ver 50.99 207.5 0.06 0.07 ind:imp:2p; +serrions serrer ver 50.99 207.5 0.12 0.47 ind:imp:1p; +serrons serrer ver 50.99 207.5 0.97 1.22 imp:pre:1p;ind:pre:1p; +serrure serrure nom f s 10.07 19.26 7.4 16.08 +serrurerie serrurerie nom f s 0.22 0.54 0.22 0.54 +serrures serrure nom f p 10.07 19.26 2.67 3.18 +serrurier serrurier nom m s 2.25 2.23 2.2 1.96 +serruriers serrurier nom m p 2.25 2.23 0.04 0.27 +serrurière serrurier nom f s 2.25 2.23 0.01 0 +serrâmes serrer ver 50.99 207.5 0 0.41 ind:pas:1p; +serrât serrer ver 50.99 207.5 0 0.07 sub:imp:3s; +serrèrent serrer ver 50.99 207.5 0 3.78 ind:pas:3p; +serré serré adj m s 12 41.28 7.31 9.53 +serrée serré adj f s 12 41.28 1.68 8.72 +serrées serré adj f p 12 41.28 0.78 13.31 +serrés serré adj m p 12 41.28 2.23 9.73 +sers servir ver 309.81 286.22 44.58 5.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sert servir ver 309.81 286.22 73.13 45.47 ind:pre:3s; +sertao sertao nom m s 0.1 0.07 0.1 0.07 +serti sertir ver m s 0.52 3.04 0.19 0.95 par:pas; +sertie sertir ver f s 0.52 3.04 0.17 0.95 par:pas; +serties sertir ver f p 0.52 3.04 0.01 0.34 par:pas; +sertir sertir ver 0.52 3.04 0.01 0.07 inf; +sertirait sertir ver 0.52 3.04 0 0.07 cnd:pre:3s; +sertis sertir ver m p 0.52 3.04 0.14 0.41 par:pas; +sertissage sertissage nom m s 0 0.07 0 0.07 +sertissaient sertir ver 0.52 3.04 0 0.07 ind:imp:3p; +sertissait sertir ver 0.52 3.04 0 0.07 ind:imp:3s; +sertissant sertir ver 0.52 3.04 0 0.07 par:pre; +sertissent sertir ver 0.52 3.04 0 0.07 ind:pre:3p; +sertisseur sertisseur nom m s 0 0.07 0 0.07 +sertão sertão nom m s 2 0 2 0 +servage servage nom m s 0.03 0.54 0.03 0.54 +servaient servir ver 309.81 286.22 1.98 12.3 ind:imp:3p; +servais servir ver 309.81 286.22 1.19 1.69 ind:imp:1s;ind:imp:2s; +servait servir ver 309.81 286.22 6.41 42.43 ind:imp:3s; +serval serval nom m s 0.01 0 0.01 0 +servant servir ver 309.81 286.22 2.2 7.64 par:pre; +servante servant nom f s 7.41 18.65 6.36 12.3 +servantes servant nom f p 7.41 18.65 0.77 4.46 +servants servant adj m p 1.09 1.15 0.26 0.27 +serve servir ver 309.81 286.22 5.83 4.12 sub:pre:1s;sub:pre:3s; +servent servir ver 309.81 286.22 14.43 11.82 ind:pre:3p; +serves servir ver 309.81 286.22 0.62 0 sub:pre:2s; +serveur serveur nom m s 23.21 16.42 9.21 5.27 +serveurs serveur nom m p 23.21 16.42 2.41 2.84 +serveuse serveur nom f s 23.21 16.42 9.96 6.62 +serveuses serveur nom f p 23.21 16.42 1.64 1.69 +servez servir ver 309.81 286.22 13.39 1.89 imp:pre:2p;ind:pre:2p; +servi servir ver m s 309.81 286.22 36.58 38.72 par:pas; +serviabilité serviabilité nom f s 0.01 0 0.01 0 +serviable serviable adj s 1.88 2.23 1.48 2.03 +serviables serviable adj m p 1.88 2.23 0.39 0.2 +service service nom m s 187.67 142.77 156 106.28 +services service nom m p 187.67 142.77 31.67 36.49 +servie servir ver f s 309.81 286.22 3.04 3.45 par:pas; +servies servir ver f p 309.81 286.22 0.44 0.88 par:pas; +serviette serviette nom f s 25.64 35.07 17.16 26.62 +serviette_éponge serviette_éponge nom f s 0 1.49 0 1.22 +serviettes serviette nom f p 25.64 35.07 8.48 8.45 +serviette_éponge serviette_éponge nom f p 0 1.49 0 0.27 +serviez servir ver 309.81 286.22 0.19 0.34 ind:imp:2p; +servile servile adj s 1.14 3.65 0.89 2.77 +servilement servilement adv 0.02 0.47 0.02 0.47 +serviles servile adj p 1.14 3.65 0.25 0.88 +servilité servilité nom f s 0.01 1.22 0.01 1.15 +servilités servilité nom f p 0.01 1.22 0 0.07 +servions servir ver 309.81 286.22 0.19 0.61 ind:imp:1p; +servir servir ver 309.81 286.22 73.55 74.59 inf; +servira servir ver 309.81 286.22 12.2 3.58 ind:fut:3s; +servirai servir ver 309.81 286.22 3.13 0.68 ind:fut:1s; +serviraient servir ver 309.81 286.22 0.23 1.49 cnd:pre:3p; +servirais servir ver 309.81 286.22 0.77 0.41 cnd:pre:1s;cnd:pre:2s; +servirait servir ver 309.81 286.22 6.4 7.09 cnd:pre:3s; +serviras servir ver 309.81 286.22 0.88 0.27 ind:fut:2s; +servirent servir ver 309.81 286.22 0.04 1.15 ind:pas:3p; +servirez servir ver 309.81 286.22 1.14 0.07 ind:fut:2p; +serviriez servir ver 309.81 286.22 0.07 0.07 cnd:pre:2p; +servirions servir ver 309.81 286.22 0.02 0.07 cnd:pre:1p; +servirons servir ver 309.81 286.22 0.64 0.14 ind:fut:1p; +serviront servir ver 309.81 286.22 2.02 2.03 ind:fut:3p; +servis servir ver m p 309.81 286.22 2.71 4.05 ind:pas:1s;par:pas; +servissent servir ver 309.81 286.22 0 0.27 sub:imp:3p; +servit servir ver 309.81 286.22 0.46 12.23 ind:pas:3s; +serviteur serviteur nom m s 16.43 17.77 10.63 7.16 +serviteurs serviteur nom m p 16.43 17.77 5.8 10.61 +servitude servitude nom f s 0.57 7.43 0.42 4.73 +servitudes servitude nom f p 0.57 7.43 0.16 2.7 +servofrein servofrein nom m s 0.03 0 0.03 0 +servomoteur servomoteur nom m s 0.02 0 0.01 0 +servomoteurs servomoteur nom m p 0.02 0 0.01 0 +servomécanisme servomécanisme nom m s 0.01 0 0.01 0 +servons servir ver 309.81 286.22 1.36 0.47 imp:pre:1p;ind:pre:1p; +servîmes servir ver 309.81 286.22 0 0.07 ind:pas:1p; +servît servir ver 309.81 286.22 0 0.74 sub:imp:3s; +ses ses adj_pos 757.68 3105.41 757.68 3105.41 +session session nom f s 3.29 2.3 2.36 1.89 +sessions session nom f p 3.29 2.3 0.93 0.41 +sesterces sesterce nom m p 0.85 0.34 0.85 0.34 +set set nom m s 3.76 0.61 3.05 0.34 +sets set nom m p 3.76 0.61 0.71 0.27 +setter setter nom m s 0.07 0.61 0.07 0.41 +setters setter nom m p 0.07 0.61 0 0.2 +seuil seuil nom m s 5.49 49.86 5.45 48.85 +seuils seuil nom m p 5.49 49.86 0.04 1.01 +seul seul adj m s 891.45 915.27 461.2 478.58 +seulabre seulabre adj m s 0 0.88 0 0.81 +seulabres seulabre adj p 0 0.88 0 0.07 +seule seul adj f s 891.45 915.27 349.74 318.85 +seulement seulement adv 279.25 397.97 279.25 397.97 +seules seul adj f p 891.45 915.27 17.22 30.27 +seulet seulet adj m s 0.51 1.22 0.2 0 +seulette seulet adj f s 0.51 1.22 0.31 1.15 +seulettes seulet adj f p 0.51 1.22 0 0.07 +seuls seul adj m p 891.45 915.27 63.29 87.57 +seventies seventies nom p 0.07 0.07 0.07 0.07 +sevrage sevrage nom m s 0.51 1.08 0.51 1.01 +sevrages sevrage nom m p 0.51 1.08 0 0.07 +sevrait sevrer ver 0.42 2.36 0 0.07 ind:imp:3s; +sevrer sevrer ver 0.42 2.36 0.12 0.27 inf; +sevré sevrer ver m s 0.42 2.36 0.07 0.95 par:pas; +sevrée sevrer ver f s 0.42 2.36 0.05 0.81 par:pas; +sevrées sevrer ver f p 0.42 2.36 0.01 0 par:pas; +sevrés sevrer ver m p 0.42 2.36 0.17 0.27 par:pas; +sex_appeal sex_appeal nom m s 0.44 0.74 0.06 0.07 +sex_shop sex_shop nom m s 0.57 0.54 0.08 0 +sex_shop sex_shop nom m p 0.57 0.54 0.01 0 +sex_appeal sex_appeal nom m s 0.44 0.74 0.38 0.68 +sex_shop sex_shop nom m s 0.57 0.54 0.41 0.34 +sex_shop sex_shop nom m p 0.57 0.54 0.07 0.2 +sex_symbol sex_symbol nom m s 0.08 0.07 0.08 0.07 +sexagénaire sexagénaire nom s 0.17 0.74 0.15 0.61 +sexagénaires sexagénaire nom p 0.17 0.74 0.02 0.14 +sexe sexe nom m s 52.09 52.7 50.44 46.49 +sexes sexe nom m p 52.09 52.7 1.65 6.22 +sexisme sexisme nom m s 0.39 0.2 0.39 0.2 +sexiste sexiste adj s 1.09 0.07 0.96 0.07 +sexistes sexiste adj p 1.09 0.07 0.13 0 +sexologie sexologie nom f s 0.21 0.27 0.21 0.27 +sexologique sexologique adj s 0 0.07 0 0.07 +sexologue sexologue nom s 0.07 0.2 0.07 0 +sexologues sexologue nom p 0.07 0.2 0 0.2 +sextant sextant nom m s 0.22 0.54 0.22 0.54 +sextidi sextidi nom m s 0 0.07 0 0.07 +sextile sextil adj f s 0 0.07 0 0.07 +sexto sexto adv 0.01 0 0.01 0 +sextuor sextuor nom m s 0.07 0.14 0.07 0.14 +sextuple sextuple adj m s 0.01 0.07 0.01 0.07 +sexualiser sexualiser ver 0.02 0 0.01 0 inf; +sexualisé sexualiser ver m s 0.02 0 0.01 0 par:pas; +sexualité sexualité nom f s 6.02 5.14 6.02 5.14 +sexuel sexuel adj m s 46.15 20.54 15.97 6.62 +sexuelle sexuel adj f s 46.15 20.54 14.74 8.31 +sexuellement sexuellement adv 4.61 0.88 4.61 0.88 +sexuelles sexuel adj f p 46.15 20.54 6.37 2.57 +sexuels sexuel adj m p 46.15 20.54 9.07 3.04 +sexué sexué adj m s 0.01 0.2 0 0.14 +sexués sexué adj m p 0.01 0.2 0.01 0.07 +sexy sexy adj 26.83 1.49 26.83 1.49 +seyait seoir ver 1.75 3.78 0 0.74 ind:imp:3s; +seyant seyant adj m s 0.67 1.15 0.54 0.88 +seyante seyant adj f s 0.67 1.15 0.07 0 +seyantes seyant adj f p 0.67 1.15 0.02 0.14 +seyants seyant adj m p 0.67 1.15 0.03 0.14 +señor señor nom m s 9.75 0 9.75 0 +shabbat shabbat nom m s 4.25 0.74 4.25 0.74 +shah shah nom m s 1.13 0.61 1.13 0.54 +shahs shah nom m p 1.13 0.61 0 0.07 +shake_hand shake_hand nom m s 0 0.14 0 0.14 +shaker shaker nom m s 0.5 0.81 0.5 0.81 +shakespearien shakespearien adj m s 0.21 0.41 0.15 0.27 +shakespearienne shakespearien adj f s 0.21 0.41 0.05 0.14 +shakespeariens shakespearien adj m p 0.21 0.41 0.01 0 +shako shako nom m s 0.01 1.22 0.01 0.81 +shakos shako nom m p 0.01 1.22 0 0.41 +shale shale nom m s 0.17 0 0.17 0 +shaman shaman nom m s 0.92 0.07 0.81 0.07 +shamans shaman nom m p 0.92 0.07 0.11 0 +shamisen shamisen nom m s 0.01 0.07 0.01 0.07 +shampoing shampoing nom m s 1.57 0.07 1.38 0.07 +shampoings shampoing nom m p 1.57 0.07 0.19 0 +shampooiner shampooiner ver 0.03 0 0.03 0 inf; +shampooing shampooing nom m s 2.61 2.3 2.35 1.69 +shampooings shampooing nom m p 2.61 2.3 0.25 0.61 +shampouine shampouiner ver 0.14 0.14 0.01 0.07 ind:pre:3s; +shampouiner shampouiner ver 0.14 0.14 0.12 0 inf; +shampouineur shampouineur nom m s 0.24 1.62 0.11 0 +shampouineuse shampouineur nom f s 0.24 1.62 0.13 1.42 +shampouineuses shampouineur nom f p 0.24 1.62 0 0.2 +shampouiné shampouiner ver m s 0.14 0.14 0 0.07 par:pas; +shanghaien shanghaien adj m s 0.01 0 0.01 0 +shanghaien shanghaien nom m s 0.02 0 0.01 0 +shanghaiens shanghaien nom m p 0.02 0 0.01 0 +shantung shantung nom m s 0 1.08 0 1.08 +shed shed nom m s 0.17 0 0.17 0 +shekels shekel nom m p 1.03 0 1.03 0 +sheriff sheriff nom m s 2.61 0.14 2.61 0.14 +sherpa sherpa nom m s 0.18 0.07 0.14 0 +sherpas sherpa nom m p 0.18 0.07 0.04 0.07 +sherry sherry nom m s 2.75 0.27 2.75 0.27 +shetland shetland nom m s 0 0.74 0 0.61 +shetlands shetland nom m p 0 0.74 0 0.14 +shiatsu shiatsu nom m s 0.28 0 0.28 0 +shift shift adj s 0.19 0 0.19 0 +shilling shilling nom m s 2.28 0.2 0.55 0 +shillings shilling nom m p 2.28 0.2 1.73 0.2 +shilom shilom nom m s 0.01 0 0.01 0 +shimmy shimmy nom m s 0.11 0.2 0.11 0.2 +shingle shingle nom m s 0.01 0 0.01 0 +shintoïsme shintoïsme nom m s 0 0.07 0 0.07 +shintoïste shintoïste adj m s 0.02 0.07 0.02 0.07 +shintô shintô nom m s 0.01 0 0.01 0 +shipchandler shipchandler nom m s 0 0.07 0 0.07 +shipping shipping nom m s 0.04 0.07 0.04 0.07 +shirting shirting nom m s 0 0.07 0 0.07 +shit shit nom m s 3 1.35 3 1.35 +shocking shocking adj m s 0.03 0.07 0.03 0.07 +shogoun shogoun nom m s 0.1 0 0.1 0 +shogun shogun nom m s 0.32 0 0.32 0 +shogunal shogunal adj m s 0.03 0 0.01 0 +shogunale shogunal adj f s 0.03 0 0.02 0 +shogunat shogunat nom m s 0.06 0 0.06 0 +shoot shoot nom m s 1.29 2.5 1.21 2.23 +shoota shooter ver 6.84 5.14 0 0.14 ind:pas:3s; +shootai shooter ver 6.84 5.14 0 0.07 ind:pas:1s; +shootais shooter ver 6.84 5.14 0.05 0.14 ind:imp:1s;ind:imp:2s; +shootait shooter ver 6.84 5.14 0.16 0.27 ind:imp:3s; +shootant shooter ver 6.84 5.14 0.04 0.14 par:pre; +shoote shooter ver 6.84 5.14 2.67 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +shootent shooter ver 6.84 5.14 0.14 0.2 ind:pre:3p; +shooter shooter ver 6.84 5.14 1.88 1.22 inf;; +shootera shooter ver 6.84 5.14 0.04 0 ind:fut:3s; +shooterai shooter ver 6.84 5.14 0.02 0.07 ind:fut:1s; +shooteraient shooter ver 6.84 5.14 0.01 0 cnd:pre:3p; +shooteras shooter ver 6.84 5.14 0.01 0.07 ind:fut:2s; +shootes shooter ver 6.84 5.14 0.22 0.2 ind:pre:2s; +shooteuse shooteur nom f s 0.03 0.27 0.03 0.27 +shootiez shooter ver 6.84 5.14 0.01 0 ind:imp:2p; +shootions shooter ver 6.84 5.14 0 0.07 ind:imp:1p; +shootons shooter ver 6.84 5.14 0.01 0 imp:pre:1p; +shoots shoot nom m p 1.29 2.5 0.08 0.27 +shooté shooter ver m s 6.84 5.14 0.96 1.01 par:pas; +shootée shooter ver f s 6.84 5.14 0.45 0.14 par:pas; +shootés shooter ver m p 6.84 5.14 0.19 0 par:pas; +shopping shopping nom m s 5.75 0.54 5.64 0.47 +shoppings shopping nom m p 5.75 0.54 0.1 0.07 +short short nom m s 4.42 8.24 3.79 6.55 +shorts short nom m p 4.42 8.24 0.62 1.69 +shoshones shoshone nom p 0.07 0 0.07 0 +show show nom m s 0.09 2.64 0.09 2.57 +show_business show_business nom m 0 0.27 0 0.27 +showbiz showbiz nom m 0 0.68 0 0.68 +shows show nom m p 0.09 2.64 0 0.07 +shrapnel shrapnel nom m s 0.1 0.34 0.09 0 +shrapnell shrapnell nom m s 0.01 1.42 0.01 0.54 +shrapnells shrapnell nom m p 0.01 1.42 0 0.88 +shrapnels shrapnel nom m p 0.1 0.34 0.01 0.34 +shunt shunt nom m s 0.16 0 0.16 0 +shunte shunter ver 0.03 0.07 0.01 0.07 ind:pre:1s;ind:pre:3s; +shunter shunter ver 0.03 0.07 0.02 0 inf; +shéol shéol nom m s 0 0.07 0 0.07 +shérif shérif nom m s 46.65 1.28 45.75 1.08 +shérifs shérif nom m p 46.65 1.28 0.9 0.2 +shôgun shôgun nom m s 0 0.07 0 0.07 +si si con 1374.43 933.99 1374.43 933.99 +siam siam nom m s 0.01 0 0.01 0 +siamois siamois nom m 1.57 2.36 1.48 2.23 +siamoise siamois adj f s 0.85 1.62 0.01 0.2 +siamoises siamois nom f p 1.57 2.36 0.08 0 +sibilant sibilant adj m s 0 0.07 0 0.07 +sibylle sibylle nom f s 0.37 0.61 0.34 0.34 +sibylles sibylle nom f p 0.37 0.61 0.04 0.27 +sibyllin sibyllin adj m s 0.07 2.36 0.02 0.95 +sibylline sibyllin adj f s 0.07 2.36 0.03 0.68 +sibyllines sibyllin adj f p 0.07 2.36 0.01 0.47 +sibyllins sibyllin adj m p 0.07 2.36 0.01 0.27 +sibérien sibérien adj m s 0.71 3.99 0.22 0.74 +sibérienne sibérien adj f s 0.71 3.99 0.05 2.77 +sibériennes sibérien adj f p 0.71 3.99 0.2 0.34 +sibériens sibérien adj m p 0.71 3.99 0.24 0.14 +sic sic adv_sup 0.2 1.35 0.2 1.35 +sic_transit_gloria_mundi sic_transit_gloria_mundi adv 0.03 0.07 0.03 0.07 +sicaire sicaire nom m s 0 0.14 0 0.07 +sicaires sicaire nom m p 0 0.14 0 0.07 +sicilien sicilien nom m s 3.6 1.96 1.03 1.69 +sicilienne sicilien adj f s 2.61 1.22 0.84 0.2 +siciliennes sicilien adj f p 2.61 1.22 0.25 0.34 +siciliens sicilien nom m p 3.6 1.96 2.21 0.27 +sicle sicle nom m s 0.02 0 0.02 0 +sida sida nom m s 5.02 5.2 5.02 5.14 +sidas sida nom m p 5.02 5.2 0 0.07 +sidaïque sidaïque adj m s 0.02 0 0.02 0 +side_car side_car nom m s 0.23 1.08 0.23 0.81 +side_car side_car nom m p 0.23 1.08 0 0.27 +sidi sidi nom m s 0 0.81 0 0.68 +sidis sidi nom m p 0 0.81 0 0.14 +sidère sidérer ver 1.03 2.16 0.29 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sidéenne sidéen adj f s 0.03 0 0.01 0 +sidéens sidéen nom m p 0.18 0 0.18 0 +sidérais sidérer ver 1.03 2.16 0 0.07 ind:imp:1s; +sidérait sidérer ver 1.03 2.16 0.01 0.2 ind:imp:3s; +sidéral sidéral adj m s 0.11 0.88 0.04 0.41 +sidérale sidéral adj f s 0.11 0.88 0.07 0.27 +sidérales sidéral adj f p 0.11 0.88 0 0.14 +sidérant sidérant adj m s 0.2 0.27 0.17 0.14 +sidérante sidérant adj f s 0.2 0.27 0.03 0.14 +sidération sidération nom f s 0.03 0 0.03 0 +sidéraux sidéral adj m p 0.11 0.88 0 0.07 +sidérer sidérer ver 1.03 2.16 0.02 0 inf; +sidérite sidérite nom f s 0.01 0 0.01 0 +sidérurgie sidérurgie nom f s 0.12 0.27 0.12 0.27 +sidérurgique sidérurgique adj f s 0.03 0.27 0.03 0.2 +sidérurgiques sidérurgique adj p 0.03 0.27 0 0.07 +sidérurgistes sidérurgiste nom p 0.02 0 0.02 0 +sidéré sidérer ver m s 1.03 2.16 0.42 1.15 par:pas; +sidérée sidérer ver f s 1.03 2.16 0.22 0.34 par:pas; +sidérées sidérer ver f p 1.03 2.16 0 0.07 par:pas; +sidérés sidérer ver m p 1.03 2.16 0.06 0.27 par:pas; +sied seoir ver 1.75 3.78 1.67 2.84 ind:pre:3s; +sien sien pro_pos m s 13.4 36.08 13.4 36.08 +sienne sienne pro_pos f s 14.21 40.68 14.21 40.68 +siennes siennes pro_pos f p 2.74 9.73 2.74 9.73 +siennois siennois nom m 0 0.2 0 0.2 +siennoise siennois adj f s 0 0.41 0 0.2 +siennoises siennois adj f p 0 0.41 0 0.14 +siens siens pro_pos m p 7.54 29.8 7.54 29.8 +sierra sierra nom f s 4.27 3.51 4 2.77 +sierras sierra nom f p 4.27 3.51 0.27 0.74 +siesta siester ver 0.06 0.07 0.06 0 ind:pas:3s; +siestant siester ver 0.06 0.07 0 0.07 par:pre; +sieste sieste nom f s 9.58 14.86 9.23 13.38 +siestes sieste nom f p 9.58 14.86 0.34 1.49 +sieur sieur nom m s 8.06 21.35 7.66 20.81 +sieurs sieur nom m p 8.06 21.35 0.41 0.54 +siffla siffler ver 13.04 40.2 0.06 5.47 ind:pas:3s; +sifflai siffler ver 13.04 40.2 0 0.14 ind:pas:1s; +sifflaient siffler ver 13.04 40.2 0.22 2.57 ind:imp:3p; +sifflais siffler ver 13.04 40.2 0.19 0.14 ind:imp:1s;ind:imp:2s; +sifflait siffler ver 13.04 40.2 0.65 5.88 ind:imp:3s; +sifflant siffler ver 13.04 40.2 0.41 3.45 par:pre; +sifflante sifflante adj f s 0.06 3.11 0.06 3.11 +sifflantes sifflant adj f p 0.22 2.23 0.17 0.47 +sifflants sifflant adj m p 0.22 2.23 0.01 0.47 +sifflard sifflard nom m s 0 0.34 0 0.34 +siffle siffler ver 13.04 40.2 4.62 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sifflement sifflement nom m s 4.83 13.78 4.45 10.47 +sifflements sifflement nom m p 4.83 13.78 0.38 3.31 +sifflent siffler ver 13.04 40.2 0.96 2.64 ind:pre:3p; +siffler siffler ver 13.04 40.2 3.02 8.24 inf; +sifflera siffler ver 13.04 40.2 0.63 0.14 ind:fut:3s; +sifflerai siffler ver 13.04 40.2 0.12 0 ind:fut:1s; +siffleraient siffler ver 13.04 40.2 0 0.14 cnd:pre:3p; +sifflerait siffler ver 13.04 40.2 0.16 0.07 cnd:pre:3s; +siffleras siffler ver 13.04 40.2 0.03 0 ind:fut:2s; +siffles siffler ver 13.04 40.2 0.65 0.07 ind:pre:2s; +sifflet sifflet nom m s 4.61 17.91 3.76 13.31 +sifflets sifflet nom m p 4.61 17.91 0.84 4.59 +siffleur siffleur adj m s 0.05 0.07 0.05 0.07 +sifflez siffler ver 13.04 40.2 0.38 0.14 imp:pre:2p;ind:pre:2p; +siffliez siffler ver 13.04 40.2 0.04 0 ind:imp:2p; +sifflota siffloter ver 0.28 10.81 0 1.15 ind:pas:3s; +sifflotais siffloter ver 0.28 10.81 0 0.14 ind:imp:1s; +sifflotait siffloter ver 0.28 10.81 0 1.82 ind:imp:3s; +sifflotant siffloter ver 0.28 10.81 0.06 3.85 par:pre; +sifflote siffloter ver 0.28 10.81 0.16 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sifflotement sifflotement nom m s 0.01 0.34 0.01 0.34 +siffloter siffloter ver 0.28 10.81 0.05 2.16 inf; +siffloterai siffloter ver 0.28 10.81 0.01 0 ind:fut:1s; +sifflotiez siffloter ver 0.28 10.81 0 0.07 ind:imp:2p; +sifflotis sifflotis nom m 0 0.14 0 0.14 +sifflotèrent siffloter ver 0.28 10.81 0 0.07 ind:pas:3p; +siffloté siffloter ver m s 0.28 10.81 0 0.27 par:pas; +sifflèrent siffler ver 13.04 40.2 0 0.61 ind:pas:3p; +sifflé siffler ver m s 13.04 40.2 0.86 2.97 par:pas; +sifflée siffler ver f s 13.04 40.2 0.06 0.2 par:pas; +sifflées siffler ver f p 13.04 40.2 0 0.07 par:pas; +sifflés siffler ver m p 13.04 40.2 0 0.07 par:pas; +sigillaire sigillaire adj m s 0.04 0.07 0.04 0.07 +sigillé sigillé adj m s 0 0.27 0 0.07 +sigillée sigillé adj f s 0 0.27 0 0.2 +sigisbée sigisbée nom m s 0 0.2 0 0.14 +sigisbées sigisbée nom m p 0 0.2 0 0.07 +sigle sigle nom m s 0.7 1.62 0.56 1.01 +sigles sigle nom m p 0.7 1.62 0.14 0.61 +sigmoïde sigmoïde adj s 0.01 0.07 0.01 0.07 +signa signer ver 98.19 55.81 0.29 3.38 ind:pas:3s; +signai signer ver 98.19 55.81 0.42 0.34 ind:pas:1s; +signaient signer ver 98.19 55.81 0.04 0.68 ind:imp:3p; +signais signer ver 98.19 55.81 0.25 0.47 ind:imp:1s;ind:imp:2s; +signait signer ver 98.19 55.81 0.44 3.31 ind:imp:3s; +signal signal nom m s 39.61 23.11 33.98 18.72 +signala signaler ver 27.92 27.5 0 1.42 ind:pas:3s; +signalai signaler ver 27.92 27.5 0 0.14 ind:pas:1s; +signalaient signaler ver 27.92 27.5 0.02 0.74 ind:imp:3p; +signalais signaler ver 27.92 27.5 0.01 0.07 ind:imp:1s; +signalait signaler ver 27.92 27.5 0.08 3.04 ind:imp:3s; +signalant signaler ver 27.92 27.5 0.18 1.82 par:pre; +signale signaler ver 27.92 27.5 7.26 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +signalement signalement nom m s 3.43 2.7 3.38 2.3 +signalements signalement nom m p 3.43 2.7 0.05 0.41 +signalent signaler ver 27.92 27.5 0.81 1.01 ind:pre:3p; +signaler signaler ver 27.92 27.5 9.51 6.62 inf; +signalera signaler ver 27.92 27.5 0.38 0.07 ind:fut:3s; +signalerai signaler ver 27.92 27.5 0.26 0.07 ind:fut:1s; +signalerait signaler ver 27.92 27.5 0.01 0.34 cnd:pre:3s; +signaleront signaler ver 27.92 27.5 0.04 0 ind:fut:3p; +signales signaler ver 27.92 27.5 0.24 0 ind:pre:2s; +signaleur signaleur nom m s 0.83 0.2 0.83 0.07 +signaleurs signaleur nom m p 0.83 0.2 0 0.14 +signalez signaler ver 27.92 27.5 1.2 0.14 imp:pre:2p;ind:pre:2p; +signalisation signalisation nom f s 0.52 1.08 0.41 1.08 +signalisations signalisation nom f p 0.52 1.08 0.11 0 +signaliser signaliser ver 0.01 0 0.01 0 inf; +signalons signaler ver 27.92 27.5 0.22 0.27 imp:pre:1p;ind:pre:1p; +signalât signaler ver 27.92 27.5 0 0.14 sub:imp:3s; +signalé signaler ver m s 27.92 27.5 6.82 3.78 par:pas; +signalée signaler ver f s 27.92 27.5 0.57 0.95 par:pas; +signalées signaler ver f p 27.92 27.5 0.1 0.41 par:pas; +signalés signaler ver m p 27.92 27.5 0.23 0.61 par:pas; +signalétique signalétique adj s 0.15 0.41 0.04 0.34 +signalétiques signalétique adj m p 0.15 0.41 0.11 0.07 +signant signer ver 98.19 55.81 0.39 1.35 par:pre; +signasse signer ver 98.19 55.81 0 0.07 sub:imp:1s; +signataire signataire nom s 0.26 0.95 0.17 0.68 +signataires signataire nom p 0.26 0.95 0.09 0.27 +signature signature nom f s 18.47 15.2 16.55 13.45 +signatures signature nom f p 18.47 15.2 1.92 1.76 +signaux signal nom m p 39.61 23.11 5.63 4.39 +signe signe nom m s 82.73 161.28 67.74 119.19 +signent signer ver 98.19 55.81 0.62 0.54 ind:pre:3p; +signer signer ver 98.19 55.81 29.25 13.51 inf;; +signera signer ver 98.19 55.81 1.2 0.41 ind:fut:3s; +signerai signer ver 98.19 55.81 1.64 0.27 ind:fut:1s; +signeraient signer ver 98.19 55.81 0.11 0.14 cnd:pre:3p; +signerais signer ver 98.19 55.81 0.27 0.27 cnd:pre:1s;cnd:pre:2s; +signerait signer ver 98.19 55.81 0.06 0.34 cnd:pre:3s; +signeras signer ver 98.19 55.81 0.13 0 ind:fut:2s; +signerez signer ver 98.19 55.81 0.39 0.14 ind:fut:2p; +signeriez signer ver 98.19 55.81 0.17 0 cnd:pre:2p; +signerions signer ver 98.19 55.81 0 0.07 cnd:pre:1p; +signerons signer ver 98.19 55.81 0.04 0.07 ind:fut:1p; +signeront signer ver 98.19 55.81 0.33 0.14 ind:fut:3p; +signes signe nom m p 82.73 161.28 15 42.09 +signet signet nom m s 0.16 0.74 0.13 0.47 +signets signet nom m p 0.16 0.74 0.02 0.27 +signez signer ver 98.19 55.81 13.62 0.68 imp:pre:2p;ind:pre:2p; +signiez signer ver 98.19 55.81 0.34 0.14 ind:imp:2p; +signifia signifier ver 67.72 47.23 0.12 1.08 ind:pas:3s; +signifiaient signifier ver 67.72 47.23 0.08 2.7 ind:imp:3p; +signifiais signifier ver 67.72 47.23 0.04 0.07 ind:imp:1s;ind:imp:2s; +signifiait signifier ver 67.72 47.23 3.59 15.34 ind:imp:3s; +signifiance signifiance nom f s 0.14 0.07 0.14 0.07 +signifiant signifiant adj m s 0.31 0.81 0.27 0.61 +signifiante signifiant adj f s 0.31 0.81 0.04 0.07 +signifiantes signifiant adj f p 0.31 0.81 0 0.07 +signifiants signifiant adj m p 0.31 0.81 0 0.07 +significatif significatif adj m s 1.81 4.46 1.02 2.16 +significatifs significatif adj m p 1.81 4.46 0.17 0.81 +signification signification nom f s 5.77 16.76 5.62 15.61 +significations signification nom f p 5.77 16.76 0.16 1.15 +significative significatif adj f s 1.81 4.46 0.46 1.15 +significativement significativement adv 0.14 0.07 0.14 0.07 +significatives significatif adj f p 1.81 4.46 0.16 0.34 +signifie signifier ver 67.72 47.23 56.66 15.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +signifient signifier ver 67.72 47.23 2.62 2.23 ind:pre:3p; +signifier signifier ver 67.72 47.23 2.08 6.62 inf; +signifiera signifier ver 67.72 47.23 0.27 0.41 ind:fut:3s; +signifierai signifier ver 67.72 47.23 0.07 0 ind:fut:1s; +signifierait signifier ver 67.72 47.23 1.36 0.54 cnd:pre:3s; +signifiât signifier ver 67.72 47.23 0 0.14 sub:imp:3s; +signifièrent signifier ver 67.72 47.23 0 0.07 ind:pas:3p; +signifié signifier ver m s 67.72 47.23 0.64 1.28 par:pas; +signifiée signifier ver f s 67.72 47.23 0 0.27 par:pas; +signifiées signifier ver f p 67.72 47.23 0 0.07 par:pas; +signons signer ver 98.19 55.81 0.48 0.41 imp:pre:1p;ind:pre:1p; +signor signor nom m s 5.36 2.64 3.39 0.88 +signora signor nom f s 5.36 2.64 1.96 1.76 +signorina signorina nom f s 0.64 0.34 0.64 0.34 +signâmes signer ver 98.19 55.81 0 0.07 ind:pas:1p; +signât signer ver 98.19 55.81 0 0.07 sub:imp:3s; +signèrent signer ver 98.19 55.81 0 0.41 ind:pas:3p; +signé signer ver m s 98.19 55.81 24.19 14.66 par:pas; +signée signer ver f s 98.19 55.81 3.58 3.92 par:pas; +signées signer ver f p 98.19 55.81 0.48 0.68 par:pas; +signés signer ver m p 98.19 55.81 1.28 1.42 par:pas; +sikh sikh nom s 0.17 1.49 0.03 0.2 +sikhs sikh nom p 0.17 1.49 0.14 1.28 +sil sil nom m s 2.65 0 2.29 0 +silence silence nom m s 106.43 325.54 105.53 313.24 +silences silence nom m p 106.43 325.54 0.9 12.3 +silencieuse silencieux adj f s 12.01 74.05 2.88 25.68 +silencieusement silencieusement adv 0.99 17.16 0.99 17.16 +silencieuses silencieux adj f p 12.01 74.05 0.82 5.74 +silencieux silencieux adj m 12.01 74.05 8.3 42.64 +silex silex nom m 0.33 5.14 0.33 5.14 +silhouettait silhouetter ver 0 1.08 0 0.2 ind:imp:3s; +silhouettant silhouetter ver 0 1.08 0 0.07 par:pre; +silhouette silhouette nom f s 4.11 73.31 3.44 52.57 +silhouettent silhouetter ver 0 1.08 0 0.14 ind:pre:3p; +silhouetter silhouetter ver 0 1.08 0 0.07 inf; +silhouettes silhouette nom f p 4.11 73.31 0.67 20.74 +silhouetté silhouetter ver m s 0 1.08 0 0.14 par:pas; +silhouettée silhouetter ver f s 0 1.08 0 0.14 par:pas; +silicate silicate nom m s 0.07 0 0.07 0 +silice silice nom f s 0.18 0.34 0.18 0.2 +silices silice nom f p 0.18 0.34 0 0.14 +siliceuse siliceux adj f s 0.01 0.07 0.01 0 +siliceux siliceux adj m 0.01 0.07 0 0.07 +silicium silicium nom m s 0.24 0 0.24 0 +silicone silicone nom f s 2.42 0 2.42 0 +siliconer siliconer ver 0.2 0.07 0.01 0 inf; +siliconé siliconer ver m s 0.2 0.07 0.02 0 par:pas; +siliconée siliconer ver f s 0.2 0.07 0.03 0 par:pas; +siliconées siliconer ver f p 0.2 0.07 0.14 0.07 par:pas; +silicose silicose nom f s 0.19 0.34 0.19 0.34 +silicosé silicosé adj m s 0 0.27 0 0.2 +silicosée silicosé adj f s 0 0.27 0 0.07 +silionne silionne nom f s 0.01 0 0.01 0 +sillage sillage nom m s 1.43 10.88 1.27 10.07 +sillages sillage nom m p 1.43 10.88 0.16 0.81 +sillet sillet nom m s 0.01 0 0.01 0 +sillon sillon nom m s 0.72 12.3 0.46 7.3 +sillonna sillonner ver 2 8.58 0 0.14 ind:pas:3s; +sillonnaient sillonner ver 2 8.58 0.05 0.95 ind:imp:3p; +sillonnais sillonner ver 2 8.58 0.03 0.07 ind:imp:1s;ind:imp:2s; +sillonnait sillonner ver 2 8.58 0.04 0.95 ind:imp:3s; +sillonnant sillonner ver 2 8.58 0.17 0.54 par:pre; +sillonne sillonner ver 2 8.58 0.2 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sillonnent sillonner ver 2 8.58 0.29 1.22 ind:pre:3p; +sillonner sillonner ver 2 8.58 0.58 1.15 inf; +sillonnes sillonner ver 2 8.58 0 0.07 ind:pre:2s; +sillonnez sillonner ver 2 8.58 0.02 0 ind:pre:2p; +sillonnons sillonner ver 2 8.58 0 0.07 ind:pre:1p; +sillonnèrent sillonner ver 2 8.58 0 0.07 ind:pas:3p; +sillonné sillonner ver m s 2 8.58 0.61 1.49 par:pas; +sillonnée sillonner ver f s 2 8.58 0.01 0.81 par:pas; +sillonnées sillonner ver f p 2 8.58 0 0.61 par:pas; +sillonnés sillonner ver m p 2 8.58 0 0.07 par:pas; +sillons sillon nom m p 0.72 12.3 0.27 5 +silo silo nom m s 1.23 1.69 0.66 0.27 +silos silo nom m p 1.23 1.69 0.56 1.42 +sils sil nom m p 2.65 0 0.37 0 +silvaner silvaner nom m s 0 0.14 0 0.14 +silène silène nom m s 0 0.14 0 0.07 +silènes silène nom m p 0 0.14 0 0.07 +silésien silésien adj m s 0 0.07 0 0.07 +sima sima nom m s 0.37 0 0.37 0 +simagrée simagrée nom f s 1.03 3.18 0.14 0.2 +simagrées simagrée nom f p 1.03 3.18 0.9 2.97 +simarre simarre nom f s 0 0.14 0 0.14 +simien simien adj m s 0.08 0 0.02 0 +simienne simien adj f s 0.08 0 0.03 0 +simiens simien nom m p 0.05 0.07 0.04 0.07 +simiesque simiesque adj s 0.17 1.15 0.15 0.88 +simiesques simiesque adj p 0.17 1.15 0.02 0.27 +similaire similaire adj s 6.03 1.35 2.43 0.95 +similairement similairement adv 0 0.07 0 0.07 +similaires similaire adj p 6.03 1.35 3.6 0.41 +similarité similarité nom f s 0.31 0 0.15 0 +similarités similarité nom f p 0.31 0 0.16 0 +simili simili nom m s 0.04 1.01 0.04 1.01 +similicuir similicuir nom m s 0.01 0 0.01 0 +similitude similitude nom f s 0.87 1.55 0.34 0.95 +similitudes similitude nom f p 0.87 1.55 0.54 0.61 +similor similor nom m s 0.01 0.07 0.01 0 +similors similor nom m p 0.01 0.07 0 0.07 +simoniaque simoniaque adj s 0 0.07 0 0.07 +simoun simoun nom m s 0.01 0.54 0.01 0.54 +simple simple adj s 137.69 148.58 124.57 124.26 +simplement simplement adv 84.76 134.32 84.76 134.32 +simples simple adj p 137.69 148.58 13.12 24.32 +simplesse simplesse nom f s 0 0.2 0 0.2 +simplet simplet nom m s 0.78 0.34 0.63 0.2 +simplets simplet nom m p 0.78 0.34 0.15 0.14 +simplette simplette nom f s 0.17 0.14 0.17 0.14 +simplettes simplet adj f p 0.44 1.35 0 0.2 +simplicité simplicité nom f s 2.75 21.69 2.75 21.69 +simplifiaient simplifier ver 2.8 7.84 0 0.41 ind:imp:3p; +simplifiais simplifier ver 2.8 7.84 0.01 0 ind:imp:1s; +simplifiait simplifier ver 2.8 7.84 0.02 0.61 ind:imp:3s; +simplifiant simplifier ver 2.8 7.84 0 0.14 par:pre; +simplification simplification nom f s 0.15 0.61 0.15 0.54 +simplifications simplification nom f p 0.15 0.61 0 0.07 +simplifie simplifier ver 2.8 7.84 0.6 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +simplifient simplifier ver 2.8 7.84 0.01 0.2 ind:pre:3p; +simplifier simplifier ver 2.8 7.84 1.32 1.89 inf; +simplifiera simplifier ver 2.8 7.84 0.14 0.14 ind:fut:3s; +simplifierait simplifier ver 2.8 7.84 0.1 0.14 cnd:pre:3s; +simplifiez simplifier ver 2.8 7.84 0.19 0.07 imp:pre:2p;ind:pre:2p; +simplifions simplifier ver 2.8 7.84 0.08 0.27 imp:pre:1p;ind:pre:1p; +simplifié simplifier ver m s 2.8 7.84 0.15 1.35 par:pas; +simplifiée simplifier ver f s 2.8 7.84 0.18 0.74 par:pas; +simplifiées simplifier ver f p 2.8 7.84 0 0.41 par:pas; +simplifiés simplifier ver m p 2.8 7.84 0 0.2 par:pas; +simplissime simplissime adj f s 0.04 0.07 0.04 0.07 +simpliste simpliste adj s 0.58 1.28 0.45 0.95 +simplistes simpliste adj p 0.58 1.28 0.13 0.34 +simula simuler ver 5.46 6.22 0.14 0.34 ind:pas:3s; +simulacre simulacre nom m s 0.84 6.22 0.69 4.59 +simulacres simulacre nom m p 0.84 6.22 0.16 1.62 +simulaient simuler ver 5.46 6.22 0.14 0.14 ind:imp:3p; +simulais simuler ver 5.46 6.22 0.12 0.07 ind:imp:1s;ind:imp:2s; +simulait simuler ver 5.46 6.22 0.26 0.68 ind:imp:3s; +simulant simuler ver 5.46 6.22 0.07 1.55 par:pre; +simulateur simulateur nom m s 1.05 0.68 0.8 0.2 +simulateurs simulateur nom m p 1.05 0.68 0.2 0.07 +simulation simulation nom f s 3.69 0.61 3.11 0.54 +simulations simulation nom f p 3.69 0.61 0.58 0.07 +simulatrice simulateur nom f s 1.05 0.68 0.04 0.41 +simule simuler ver 5.46 6.22 1.08 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +simulent simuler ver 5.46 6.22 0.12 0.14 ind:pre:3p; +simuler simuler ver 5.46 6.22 1.76 1.89 inf; +simulera simuler ver 5.46 6.22 0.02 0 ind:fut:3s; +simulerai simuler ver 5.46 6.22 0.01 0 ind:fut:1s; +simulerez simuler ver 5.46 6.22 0.01 0 ind:fut:2p; +simules simuler ver 5.46 6.22 0.28 0.07 ind:pre:2s; +simulez simuler ver 5.46 6.22 0.15 0 imp:pre:2p;ind:pre:2p; +simuliez simuler ver 5.46 6.22 0.01 0 ind:imp:2p; +simulons simuler ver 5.46 6.22 0.09 0.07 imp:pre:1p;ind:pre:1p; +simultané simultané adj m s 0.57 3.11 0.25 0.61 +simultanée simultané adj f s 0.57 3.11 0.19 1.15 +simultanées simultané adj f p 0.57 3.11 0.09 0.68 +simultanéité simultanéité nom f s 0 1.15 0 1.15 +simultanément simultanément adv 1.29 5.81 1.29 5.81 +simultanés simultané adj m p 0.57 3.11 0.05 0.68 +simulèrent simuler ver 5.46 6.22 0 0.07 ind:pas:3p; +simulé simuler ver m s 5.46 6.22 0.86 0.27 par:pas; +simulée simulé adj f s 0.62 0.61 0.18 0.34 +simulées simuler ver f p 5.46 6.22 0.16 0 par:pas; +simulés simulé adj m p 0.62 0.61 0.11 0.07 +sinapisme sinapisme nom m s 0 0.2 0 0.14 +sinapismes sinapisme nom m p 0 0.2 0 0.07 +sinciput sinciput nom m s 0 0.2 0 0.2 +sincère sincère adj s 19.51 22.5 15.2 18.65 +sincèrement sincèrement adv 13.58 13.11 13.58 13.11 +sincères sincère adj p 19.51 22.5 4.31 3.85 +sincérité sincérité nom f s 3.77 9.66 3.77 9.66 +sindon sindon nom m s 0 0.27 0 0.27 +sine_die sine_die adv 0 0.34 0 0.34 +sine_qua_non sine_qua_non adv 0.16 0.47 0.16 0.47 +singe singe nom m s 35.48 22.57 21.59 15 +singe_araignée singe_araignée nom m s 0.01 0 0.01 0 +singea singer ver 0.45 3.92 0 0.61 ind:pas:3s; +singeaient singer ver 0.45 3.92 0.01 0.34 ind:imp:3p; +singeait singer ver 0.45 3.92 0 0.61 ind:imp:3s; +singeant singer ver 0.45 3.92 0.05 0.54 par:pre; +singent singer ver 0.45 3.92 0 0.14 ind:pre:3p; +singer singer ver 0.45 3.92 0.15 1.28 inf; +singerie singerie nom f s 0.9 2.23 0.01 0.41 +singeries singerie nom f p 0.9 2.23 0.89 1.82 +singes singe nom m p 35.48 22.57 13.9 7.57 +singiez singer ver 0.45 3.92 0.01 0 ind:imp:2p; +single single nom m s 1.1 0.14 0.67 0.14 +singles single nom m p 1.1 0.14 0.43 0 +singleton singleton nom m s 0.17 0 0.17 0 +singularisait singulariser ver 0.05 1.08 0 0.07 ind:imp:3s; +singularise singulariser ver 0.05 1.08 0.01 0.27 imp:pre:2s;ind:pre:3s; +singulariser singulariser ver 0.05 1.08 0.04 0.68 inf; +singularises singulariser ver 0.05 1.08 0 0.07 ind:pre:2s; +singularité singularité nom f s 0.89 3.11 0.86 2.43 +singularités singularité nom f p 0.89 3.11 0.03 0.68 +singulier singulier adj m s 2.31 21.42 1.2 9.8 +singuliers singulier adj m p 2.31 21.42 0.05 2.03 +singulière singulier adj f s 2.31 21.42 1 8.31 +singulièrement singulièrement adv 0.13 8.58 0.13 8.58 +singulières singulier adj f p 2.31 21.42 0.07 1.28 +singé singer ver m s 0.45 3.92 0 0.2 par:pas; +singées singer ver f p 0.45 3.92 0 0.07 par:pas; +sinistre sinistre adj s 8.27 25.88 7.39 19.86 +sinistrement sinistrement adv 0.01 1.28 0.01 1.28 +sinistres sinistre adj p 8.27 25.88 0.88 6.01 +sinistrose sinistrose nom f s 0 0.07 0 0.07 +sinistré sinistré adj m s 0.28 0.81 0.02 0.2 +sinistrée sinistré adj f s 0.28 0.81 0.25 0.27 +sinistrées sinistré adj f p 0.28 0.81 0.02 0.2 +sinistrés sinistré nom m p 0.26 0.61 0.25 0.54 +sino sino adv 0.12 0 0.12 0 +sino_américain sino_américain nom m s 0.02 0 0.02 0 +sino_arabe sino_arabe adj f s 0.01 0 0.01 0 +sino_japonais sino_japonais adj f s 0 0.14 0 0.14 +sinologie sinologie nom f s 0 0.07 0 0.07 +sinon sinon con 164.85 89.26 164.85 89.26 +sinople sinople nom m s 0 0.14 0 0.14 +sinoque sinoque adj s 0.01 0.34 0 0.27 +sinoques sinoque adj p 0.01 0.34 0.01 0.07 +sinoquet sinoquet nom m s 0 0.88 0 0.88 +sinuaient sinuer ver 0.01 1.76 0 0.2 ind:imp:3p; +sinuait sinuer ver 0.01 1.76 0 0.74 ind:imp:3s; +sinuant sinuer ver 0.01 1.76 0.01 0.07 par:pre; +sinue sinuer ver 0.01 1.76 0 0.34 ind:pre:3s; +sinuent sinuer ver 0.01 1.76 0 0.2 ind:pre:3p; +sinuer sinuer ver 0.01 1.76 0 0.14 inf; +sinueuse sinueux adj f s 0.97 5.61 0.07 2.23 +sinueusement sinueusement adv 0 0.07 0 0.07 +sinueuses sinueux adj f p 0.97 5.61 0.32 0.95 +sinueux sinueux adj m 0.97 5.61 0.58 2.43 +sinuosité sinuosité nom f s 0 0.68 0 0.14 +sinuosités sinuosité nom f p 0 0.68 0 0.54 +sinus sinus nom m 1.3 1.01 1.3 1.01 +sinusal sinusal adj m s 0.46 0 0.29 0 +sinusale sinusal adj f s 0.46 0 0.17 0 +sinusite sinusite nom f s 0.33 0.14 0.32 0.14 +sinusites sinusite nom f p 0.33 0.14 0.01 0 +sinusoïdal sinusoïdal adj m s 0.07 0.14 0.04 0.07 +sinusoïdale sinusoïdal adj f s 0.07 0.14 0.03 0 +sinusoïdaux sinusoïdal adj m p 0.07 0.14 0 0.07 +sinusoïdes sinusoïde nom f p 0 0.14 0 0.14 +sinué sinuer ver m s 0.01 1.76 0 0.07 par:pas; +sinécure sinécure nom f s 0.52 0.88 0.52 0.81 +sinécures sinécure nom f p 0.52 0.88 0 0.07 +sionisme sionisme nom m s 0.04 0.27 0.04 0.27 +sioniste sioniste adj s 0.49 0.14 0.39 0.14 +sionistes sioniste nom p 0.32 0.07 0.28 0.07 +sioux sioux adj 0.36 0.34 0.36 0.34 +siphon siphon nom m s 0.83 2.23 0.43 1.96 +siphonnage siphonnage nom m s 0 0.07 0 0.07 +siphonnait siphonner ver 0.35 0.68 0.04 0.07 ind:imp:3s; +siphonne siphonner ver 0.35 0.68 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +siphonner siphonner ver 0.35 0.68 0.1 0.2 inf; +siphonné siphonné adj m s 0.18 0.2 0.17 0.14 +siphonnée siphonner ver f s 0.35 0.68 0.01 0.14 par:pas; +siphonnés siphonné adj m p 0.18 0.2 0.01 0 +siphons siphon nom m p 0.83 2.23 0.4 0.27 +sipo sipo nom m s 0.03 0 0.03 0 +sir sir nom m s 10.48 2.57 10.48 2.57 +sirdar sirdar nom m s 0 0.41 0 0.41 +sire sire nom m s 3.37 0.74 3.37 0.47 +sires sire nom m p 3.37 0.74 0 0.27 +sirocco sirocco nom m s 1.52 0.68 1.52 0.68 +sirop sirop nom m s 5.75 8.18 5.7 7.64 +sirops sirop nom m p 5.75 8.18 0.05 0.54 +sirota siroter ver 1.59 5.74 0 0.14 ind:pas:3s; +sirotaient siroter ver 1.59 5.74 0.01 0.27 ind:imp:3p; +sirotais siroter ver 1.59 5.74 0.05 0.14 ind:imp:1s;ind:imp:2s; +sirotait siroter ver 1.59 5.74 0.04 1.01 ind:imp:3s; +sirotant siroter ver 1.59 5.74 0.28 1.08 par:pre; +sirote siroter ver 1.59 5.74 0.12 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sirotent siroter ver 1.59 5.74 0.06 0.2 ind:pre:3p; +siroter siroter ver 1.59 5.74 0.99 1.35 inf; +siroterais siroter ver 1.59 5.74 0.01 0 cnd:pre:1s; +sirotiez siroter ver 1.59 5.74 0.01 0 ind:imp:2p; +sirotions siroter ver 1.59 5.74 0 0.07 ind:imp:1p; +siroté siroter ver m s 1.59 5.74 0.02 0.61 par:pas; +sirupeuse sirupeux adj f s 0.19 1.55 0.13 0.54 +sirupeuses sirupeux adj f p 0.19 1.55 0.01 0.2 +sirupeux sirupeux adj m 0.19 1.55 0.06 0.81 +sirventès sirventès nom m 0 0.14 0 0.14 +sirène sirène nom f s 11.35 17.5 8.06 10.34 +sirènes sirène nom f p 11.35 17.5 3.28 7.16 +sis sis adj m s 1.77 1.55 1.77 0.74 +sisal sisal nom m s 0.03 0.34 0.03 0.34 +sise sis adj f s 1.77 1.55 0 0.74 +sises sis adj f p 1.77 1.55 0 0.07 +sismique sismique adj s 0.75 0.41 0.56 0.34 +sismiques sismique adj p 0.75 0.41 0.19 0.07 +sismographe sismographe nom s 0.1 0.14 0.04 0 +sismographes sismographe nom p 0.1 0.14 0.07 0.14 +sismologie sismologie nom f s 0.02 0 0.02 0 +sismologique sismologique adj f s 0.01 0 0.01 0 +sismologue sismologue nom s 0.14 0.07 0.07 0 +sismologues sismologue nom p 0.14 0.07 0.06 0.07 +sismomètre sismomètre nom m s 0.01 0 0.01 0 +sismothérapie sismothérapie nom f s 0.01 0 0.01 0 +sisymbre sisymbre nom m s 0 0.07 0 0.07 +sit_in sit_in nom m 0.3 0 0.3 0 +sitar sitar nom m s 0.16 0 0.16 0 +sitariste sitariste nom s 0.01 0 0.01 0 +sitcom sitcom nom f s 0.85 0 0.63 0 +sitcoms sitcom nom f p 0.85 0 0.23 0 +site site nom m s 17.17 4.46 13.91 3.58 +sites site nom m p 17.17 4.46 3.26 0.88 +sittelle sittelle nom f s 0.03 0 0.03 0 +situ situ nom m s 0.95 0 0.95 0 +situa situer ver 10.44 37.84 0 0.47 ind:pas:3s; +situable situable adj f s 0 0.14 0 0.14 +situaient situer ver 10.44 37.84 0.01 1.15 ind:imp:3p; +situais situer ver 10.44 37.84 0.02 0.07 ind:imp:1s; +situait situer ver 10.44 37.84 0.26 3.72 ind:imp:3s; +situant situer ver 10.44 37.84 0.01 0.41 par:pre; +situasse situer ver 10.44 37.84 0 0.95 sub:imp:1s; +situation situation nom f s 108.99 104.86 101.39 96.62 +situationnel situationnel adj m s 0.01 0 0.01 0 +situationnisme situationnisme nom m s 0.01 0 0.01 0 +situationnistes situationniste adj p 0 0.14 0 0.14 +situations situation nom f p 108.99 104.86 7.6 8.24 +situe situer ver 10.44 37.84 2.34 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +situent situer ver 10.44 37.84 0.44 0.54 ind:pre:3p; +situer situer ver 10.44 37.84 1.16 6.55 inf; +situera situer ver 10.44 37.84 0.03 0.14 ind:fut:3s; +situerai situer ver 10.44 37.84 0.01 0 ind:fut:1s; +situeraient situer ver 10.44 37.84 0.01 0 cnd:pre:3p; +situerais situer ver 10.44 37.84 0.01 0.14 cnd:pre:1s; +situerait situer ver 10.44 37.84 0.22 0.07 cnd:pre:3s; +situes situer ver 10.44 37.84 0.04 0.07 ind:pre:2s;sub:pre:2s; +situez situer ver 10.44 37.84 0.1 0.27 ind:pre:2p; +situions situer ver 10.44 37.84 0 0.14 ind:imp:1p; +situons situer ver 10.44 37.84 0.13 0.2 imp:pre:1p;ind:pre:1p; +situât situer ver 10.44 37.84 0 0.07 sub:imp:3s; +situèrent situer ver 10.44 37.84 0 0.07 ind:pas:3p; +situé situer ver m s 10.44 37.84 2.7 7.84 par:pas; +située situer ver f s 10.44 37.84 2.15 7.23 par:pas; +situées situer ver f p 10.44 37.84 0.14 1.49 par:pas; +situés situer ver m p 10.44 37.84 0.64 1.42 par:pas; +sitôt sitôt adv 3.59 19.12 3.59 19.12 +six six adj_num 117.37 156.22 117.37 156.22 +six_quatre six_quatre nom m 0 0.07 0 0.07 +sixain sixain nom m s 0 0.2 0 0.2 +sixième sixième adj m 3.77 7.23 3.76 7.16 +sixièmement sixièmement adv 0.01 0 0.01 0 +sixièmes sixième nom p 2.11 6.01 0.23 0.27 +sixte sixte nom f s 0.02 0.14 0.02 0.14 +sixties sixties nom p 0.4 0.2 0.4 0.2 +sixtus sixtus nom m 0.01 0 0.01 0 +sizain sizain nom m s 0 0.14 0 0.14 +siècle siècle nom m s 45.77 132.91 27.29 79.05 +siècles siècle nom m p 45.77 132.91 18.48 53.85 +siège siège nom m s 29.44 57.91 23.69 46.08 +siègent siéger ver 2.87 5.34 0.31 0.27 ind:pre:3p; +sièges siège nom m p 29.44 57.91 5.75 11.82 +siéent seoir ver 1.75 3.78 0.01 0.14 ind:pre:3p; +siégeaient siéger ver 2.87 5.34 0 0.61 ind:imp:3p; +siégeais siéger ver 2.87 5.34 0.01 0.07 ind:imp:1s; +siégeait siéger ver 2.87 5.34 0.11 1.35 ind:imp:3s; +siégeant siéger ver 2.87 5.34 0.03 0.54 par:pre; +siégeons siéger ver 2.87 5.34 0.06 0.07 imp:pre:1p;ind:pre:1p; +siéger siéger ver 2.87 5.34 0.6 0.68 inf; +siégera siéger ver 2.87 5.34 0.41 0 ind:fut:3s; +siégerai siéger ver 2.87 5.34 0.02 0.07 ind:fut:1s; +siégeraient siéger ver 2.87 5.34 0 0.14 cnd:pre:3p; +siégerait siéger ver 2.87 5.34 0 0.14 cnd:pre:3s; +siégeras siéger ver 2.87 5.34 0.03 0 ind:fut:2s; +siégerons siéger ver 2.87 5.34 0.01 0 ind:fut:1p; +siégeront siéger ver 2.87 5.34 0 0.07 ind:fut:3p; +siégez siéger ver 2.87 5.34 0.03 0 ind:pre:2p; +siégiez siéger ver 2.87 5.34 0.02 0 ind:imp:2p; +siégions siéger ver 2.87 5.34 0 0.14 ind:imp:1p; +siégé siéger ver m s 2.87 5.34 0.13 0.27 par:pas; +siéra seoir ver 1.75 3.78 0.05 0 ind:fut:3s; +siérait seoir ver 1.75 3.78 0.02 0.07 cnd:pre:3s; +ska ska nom m s 0.35 0 0.35 0 +skaal skaal ono 0 0.07 0 0.07 +skate skate nom m s 2.5 0.07 2.14 0.07 +skate_board skate_board nom m s 0.57 0.07 0.57 0.07 +skateboard skateboard nom m s 1.13 0 1.06 0 +skateboards skateboard nom m p 1.13 0 0.07 0 +skates skate nom m p 2.5 0.07 0.36 0 +skating skating nom m s 0 0.07 0 0.07 +skaï skaï nom m s 0.12 1.82 0.12 1.82 +skeet skeet nom m s 0.04 0 0.02 0 +skeets skeet nom m p 0.04 0 0.02 0 +sketch sketch nom m s 2.54 1.28 1.5 0.74 +sketches sketch nom m p 2.54 1.28 0.69 0.54 +sketchs sketch nom m p 2.54 1.28 0.34 0 +ski ski nom m s 16.57 6.49 13.84 5 +skiable skiable adj m s 0.01 0 0.01 0 +skiais skier ver 3.81 0.81 0.12 0.07 ind:imp:1s;ind:imp:2s; +skiait skier ver 3.81 0.81 0.14 0.14 ind:imp:3s; +skiant skier ver 3.81 0.81 0.06 0 par:pre; +skie skier ver 3.81 0.81 0.3 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +skient skier ver 3.81 0.81 0.04 0 ind:pre:3p; +skier skier ver 3.81 0.81 2.52 0.27 inf; +skierai skier ver 3.81 0.81 0.01 0 ind:fut:1s; +skierait skier ver 3.81 0.81 0 0.07 cnd:pre:3s; +skies skier ver 3.81 0.81 0.22 0 ind:pre:2s; +skieur skieur nom m s 1.13 1.28 0.2 0.61 +skieurs skieur nom m p 1.13 1.28 0.74 0.2 +skieuse skieur nom f s 1.13 1.28 0.17 0.41 +skieuses skieur nom f p 1.13 1.28 0.02 0.07 +skiez skier ver 3.81 0.81 0.05 0.07 imp:pre:2p;ind:pre:2p; +skiff skiff nom m s 0.14 0.27 0.14 0.2 +skiffs skiff nom m p 0.14 0.27 0 0.07 +skin skin nom m s 0.93 0.14 0.44 0.14 +skinhead skinhead nom m s 1.59 0.2 0.38 0.14 +skinheads skinhead nom m p 1.59 0.2 1.22 0.07 +skins skin nom m p 0.93 0.14 0.48 0 +skip skip nom m s 2.27 0.14 2.27 0.14 +skipper skipper nom m s 1.32 0.07 1.32 0.07 +skis ski nom m p 16.57 6.49 2.73 1.49 +skié skier ver m s 3.81 0.81 0.37 0.14 par:pas; +skunks skunks nom m 0 1.55 0 1.55 +skydome skydome nom m s 0.01 0 0.01 0 +slalom slalom nom m s 0.2 0.95 0.2 0.81 +slalomant slalomer ver 0.07 0.41 0 0.14 par:pre; +slalomer slalomer ver 0.07 0.41 0.05 0.2 inf; +slaloms slalom nom m p 0.2 0.95 0 0.14 +slalomé slalomer ver m s 0.07 0.41 0.03 0.07 par:pas; +slang slang nom m 0 0.07 0 0.07 +slash slash nom m s 0.07 0 0.07 0 +slave slave adj s 0.22 3.38 0.19 2.36 +slaves slave adj p 0.22 3.38 0.03 1.01 +slavisant slaviser ver 0 0.07 0 0.07 par:pre; +slavisme slavisme nom m s 0 0.07 0 0.07 +slavon slavon adj m s 0 0.07 0 0.07 +slavon slavon nom m s 0 0.07 0 0.07 +slavophiles slavophile adj p 0 0.07 0 0.07 +sleeping sleeping nom m s 0.37 0.34 0.37 0.27 +sleepings sleeping nom m p 0.37 0.34 0 0.07 +slibard slibard nom m s 0.11 0.47 0.11 0.47 +slice slice nom m s 0.19 0 0.19 0 +slip slip nom m s 11.35 12.77 9.29 10.07 +slips slip nom m p 11.35 12.77 2.06 2.7 +slogan slogan nom m s 4.96 6.96 3.96 2.36 +slogans slogan nom m p 4.96 6.96 1 4.59 +sloop sloop nom m s 0.06 0.07 0.06 0.07 +sloughi sloughi nom m s 0 0.07 0 0.07 +slovaque slovaque adj s 0.01 0 0.01 0 +slovaques slovaque nom p 0.03 0.07 0.03 0.07 +slovène slovène adj f s 0 0.2 0 0.2 +slow slow nom m s 0.1 2.16 0.1 1.82 +slows slow nom m p 0.1 2.16 0 0.34 +slug slug nom m s 0.1 0 0.1 0 +slush slush nom s 0.01 0.07 0.01 0.07 +smack smack nom m s 0.15 0.14 0.14 0.14 +smacks smack nom m p 0.15 0.14 0.01 0 +smala smala nom f s 0.2 0.61 0.2 0.61 +smalah smalah nom f s 0 0.2 0 0.2 +smaragdin smaragdin adj m s 0 0.07 0 0.07 +smart smart adj s 0.2 0.27 0.2 0.27 +smash smash nom m s 0.4 0.2 0.4 0.2 +smashe smasher ver 0.41 0 0.25 0 imp:pre:2s;ind:pre:3s; +smasher smasher ver 0.41 0 0.15 0 inf; +smegma smegma nom m s 0.04 0 0.04 0 +smicard smicard nom m s 0.03 0.14 0.03 0.07 +smicards smicard nom m p 0.03 0.14 0 0.07 +smigard smigard nom m s 0 0.07 0 0.07 +smiley smiley nom m s 0.78 0 0.78 0 +smocks smocks nom m p 0.01 0.34 0.01 0.34 +smog smog nom m s 0.29 0.07 0.29 0.07 +smoking smoking nom m s 4.9 4.53 4.74 3.92 +smokings smoking nom m p 4.9 4.53 0.16 0.61 +smorrebrod smorrebrod nom m s 0 0.07 0 0.07 +smurf smurf nom m s 0.03 0 0.03 0 +smyrniote smyrniote nom s 0 0.07 0 0.07 +snack snack nom m s 1.21 0.95 1.06 0.74 +snack_bar snack_bar nom m s 0.23 0.61 0.23 0.54 +snack_bar snack_bar nom m p 0.23 0.61 0 0.07 +snacks snack nom m p 1.21 0.95 0.15 0.2 +snif snif ono 0.26 0.2 0.26 0.2 +snifer snifer ver 0.03 0 0.03 0 inf; +sniff sniff ono 0.12 0.34 0.12 0.34 +sniffaient sniffer ver 3.28 2.7 0 0.07 ind:imp:3p; +sniffais sniffer ver 3.28 2.7 0.08 0.07 ind:imp:1s;ind:imp:2s; +sniffait sniffer ver 3.28 2.7 0.14 0.2 ind:imp:3s; +sniffant sniffer ver 3.28 2.7 0.02 0.14 par:pre; +sniffe sniffer ver 3.28 2.7 0.77 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sniffent sniffer ver 3.28 2.7 0.03 0.07 ind:pre:3p; +sniffer sniffer ver 3.28 2.7 1.25 0.74 inf; +snifferai sniffer ver 3.28 2.7 0.01 0.07 ind:fut:1s; +sniffes sniffer ver 3.28 2.7 0.24 0.07 ind:pre:2s; +sniffette sniffette nom f s 0 0.07 0 0.07 +sniffez sniffer ver 3.28 2.7 0.08 0 imp:pre:2p;ind:pre:2p; +sniffé sniffer ver m s 3.28 2.7 0.66 0.14 par:pas; +sniffée sniffer ver f s 3.28 2.7 0.01 0.14 par:pas; +sniffées sniffer ver f p 3.28 2.7 0 0.07 par:pas; +snipe snipe nom m s 0.07 0 0.07 0 +sniper sniper nom m s 4.5 0 2.46 0 +snipers sniper nom m p 4.5 0 2.03 0 +snob snob adj s 1.75 3.31 1.61 2.64 +snobaient snober ver 0.67 0.68 0 0.2 ind:imp:3p; +snobais snober ver 0.67 0.68 0.01 0 ind:imp:2s; +snobe snober ver 0.67 0.68 0.1 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +snobent snober ver 0.67 0.68 0.02 0 ind:pre:3p; +snober snober ver 0.67 0.68 0.21 0.2 inf; +snoberez snober ver 0.67 0.68 0.01 0 ind:fut:2p; +snobez snober ver 0.67 0.68 0.07 0 imp:pre:2p;ind:pre:2p; +snobinard snobinard nom m s 0.46 0.07 0.22 0 +snobinarde snobinard nom f s 0.46 0.07 0.02 0 +snobinardes snobinard nom f p 0.46 0.07 0.01 0 +snobinards snobinard nom m p 0.46 0.07 0.22 0.07 +snobisme snobisme nom m s 0.79 3.45 0.79 3.38 +snobismes snobisme nom m p 0.79 3.45 0 0.07 +snobs snob nom p 1.35 1.82 0.39 0.68 +snobé snober ver m s 0.67 0.68 0.23 0.14 par:pas; +snobée snober ver f s 0.67 0.68 0 0.07 par:pas; +snobés snober ver m p 0.67 0.68 0.03 0.07 par:pas; +snow_boot snow_boot nom m p 0 0.07 0 0.07 +soap_opéra soap_opéra nom m s 0.17 0 0.02 0 +soap_opéra soap_opéra nom m s 0.17 0 0.15 0 +sobre sobre adj s 6.18 4.66 5.8 3.24 +sobrement sobrement adv 0.06 1.28 0.06 1.28 +sobres sobre adj p 6.18 4.66 0.37 1.42 +sobriquet sobriquet nom m s 0.52 4.86 0.48 3.45 +sobriquets sobriquet nom m p 0.52 4.86 0.04 1.42 +sobriété sobriété nom f s 0.7 1.62 0.7 1.62 +soc soc nom m s 0.57 1.89 0.31 1.62 +soccer soccer nom m s 0.64 0 0.64 0 +sociabiliser sociabiliser ver 0.01 0 0.01 0 inf; +sociabilité sociabilité nom f s 0.09 0.41 0.09 0.41 +sociable sociable adj s 2.08 0.81 1.79 0.54 +sociables sociable adj p 2.08 0.81 0.29 0.27 +social social adj m s 34.4 49.8 9.16 12.3 +social_démocrate social_démocrate adj m s 0.21 0.14 0.21 0.14 +social_démocratie social_démocratie nom f s 0.02 0.34 0.02 0.34 +social_traître social_traître nom m s 0 0.27 0 0.27 +sociale social adj f s 34.4 49.8 16.06 24.8 +socialement socialement adv 1.04 0.95 1.04 0.95 +sociales social adj f p 34.4 49.8 4.59 8.85 +socialisation socialisation nom f s 0.1 0 0.1 0 +socialise socialiser ver 0.16 0 0.02 0 ind:pre:1s;ind:pre:3s; +socialiser socialiser ver 0.16 0 0.13 0 inf; +socialisez socialiser ver 0.16 0 0.01 0 ind:pre:2p; +socialisme socialisme nom m s 4.9 6.76 4.9 6.69 +socialismes socialisme nom m p 4.9 6.76 0 0.07 +socialiste socialiste adj s 6.68 10.41 5 7.97 +socialistes socialiste adj p 6.68 10.41 1.68 2.43 +socialo socialo nom s 0.03 0.14 0.01 0 +socialos socialo nom p 0.03 0.14 0.02 0.14 +sociaux social adj m p 34.4 49.8 4.59 3.85 +sociaux_démocrates sociaux_démocrates adj m 0.23 0 0.23 0 +sociniens socinien nom m p 0 0.07 0 0.07 +socio socio adv 0.09 0.14 0.09 0.14 +socio_culturel socio_culturel adj f p 0.01 0.14 0 0.07 +socio_culturel socio_culturel adj m p 0.01 0.14 0.01 0.07 +socio_économique socio_économique adj m s 0.08 0.07 0.06 0 +socio_économique socio_économique adj m p 0.08 0.07 0.02 0.07 +sociobiologie sociobiologie nom f s 0.01 0 0.01 0 +socioculturel socioculturel adj m s 0.01 0.14 0 0.07 +socioculturelles socioculturel adj f p 0.01 0.14 0.01 0.07 +sociologie sociologie nom f s 1.09 1.28 1.09 1.28 +sociologique sociologique adj s 0.64 0.68 0.39 0.47 +sociologiquement sociologiquement adv 0 0.07 0 0.07 +sociologiques sociologique adj f p 0.64 0.68 0.25 0.2 +sociologue sociologue nom s 0.93 1.55 0.48 0.54 +sociologues sociologue nom p 0.93 1.55 0.45 1.01 +sociopathe sociopathe adj s 0.88 0 0.67 0 +sociopathes sociopathe adj p 0.88 0 0.21 0 +sociopathie sociopathie nom f s 0.04 0 0.04 0 +sociopolitique sociopolitique adj f s 0.01 0 0.01 0 +socius socius nom m 0 0.07 0 0.07 +sociétaire sociétaire adj f s 0.01 0.07 0.01 0.07 +sociétaires sociétaire nom p 0 0.34 0 0.2 +sociétal sociétal adj m s 0.05 0 0.03 0 +sociétale sociétal adj f s 0.05 0 0.03 0 +société société nom f s 75.46 62.23 69.38 56.55 +sociétés société nom f p 75.46 62.23 6.08 5.68 +socket socket nom m s 0.03 0 0.03 0 +socle socle nom m s 0.72 8.45 0.7 7.91 +socles socle nom m p 0.72 8.45 0.02 0.54 +socque socque nom m s 0 0.47 0 0.07 +socques socque nom m p 0 0.47 0 0.41 +socquette socquette nom f s 0.38 2.16 0.02 0.41 +socquettes socquette nom f p 0.38 2.16 0.36 1.76 +socratique socratique adj s 0.07 0.2 0.07 0.14 +socratiques socratique adj p 0.07 0.2 0 0.07 +socs soc nom m p 0.57 1.89 0.27 0.27 +soda soda nom m s 10.23 1.55 9.12 1.01 +sodas soda nom m p 10.23 1.55 1.11 0.54 +sodique sodique adj s 0.02 0 0.02 0 +sodium sodium nom m s 1.13 0 1.13 0 +sodomie sodomie nom f s 1.44 0.47 1.44 0.47 +sodomisa sodomiser ver 1.33 1.49 0 0.07 ind:pas:3s; +sodomisait sodomiser ver 1.33 1.49 0 0.14 ind:imp:3s; +sodomisant sodomiser ver 1.33 1.49 0.1 0.14 par:pre; +sodomisation sodomisation nom f s 0 0.34 0 0.34 +sodomise sodomiser ver 1.33 1.49 0.17 0.41 ind:pre:1s;ind:pre:3s; +sodomiser sodomiser ver 1.33 1.49 0.59 0.27 inf; +sodomiseront sodomiser ver 1.33 1.49 0.14 0 ind:fut:3p; +sodomisez sodomiser ver 1.33 1.49 0 0.07 ind:pre:2p; +sodomisé sodomiser ver m s 1.33 1.49 0.23 0.27 par:pas; +sodomisée sodomiser ver f s 1.33 1.49 0.1 0.07 par:pas; +sodomisés sodomiser ver m p 1.33 1.49 0 0.07 par:pas; +sodomite sodomite nom m s 0.86 0.47 0.68 0.27 +sodomites sodomite nom m p 0.86 0.47 0.19 0.2 +sodomitiques sodomitique adj p 0 0.07 0 0.07 +soeur soeur nom f s 184.99 161.01 155.22 116.55 +soeurette soeurette nom f s 2.12 0.95 2.12 0.95 +soeurs soeur nom f p 184.99 161.01 29.76 44.46 +sofa sofa nom m s 4.77 5.68 4.43 4.73 +sofas sofa nom m p 4.77 5.68 0.33 0.95 +soft soft adj s 0.79 0.2 0.79 0.2 +softball softball nom m s 0.69 0 0.69 0 +soi soi pro_per s 28.23 83.65 28.23 83.65 +soi_disant soi_disant adj 9.46 13.11 9.46 13.11 +soi_même soi_même pro_per s 6.86 24.86 6.86 24.86 +soie soie nom f s 10.38 51.62 9.95 50 +soient être aux 8074.24 6501.82 17.35 21.89 sub:pre:3p; +soierie soierie nom f s 0.32 1.96 0.27 0.54 +soieries soierie nom f p 0.32 1.96 0.05 1.42 +soies soie nom f p 10.38 51.62 0.42 1.62 +soif soif nom f s 31.82 35.54 31.28 35.27 +soiffard soiffard adj m s 0.03 0.27 0.03 0.14 +soiffarde soiffard nom f s 0.33 0.54 0.02 0.07 +soiffards soiffard nom m p 0.33 0.54 0.29 0.41 +soifs soif nom f p 31.82 35.54 0.54 0.27 +soigna soigner ver 48.04 42.84 0.26 0.81 ind:pas:3s; +soignable soignable adj f s 0.16 0 0.16 0 +soignai soigner ver 48.04 42.84 0 0.07 ind:pas:1s; +soignaient soigner ver 48.04 42.84 0.02 0.68 ind:imp:3p; +soignais soigner ver 48.04 42.84 0.4 0.41 ind:imp:1s;ind:imp:2s; +soignait soigner ver 48.04 42.84 0.57 4.66 ind:imp:3s; +soignant soignant adj m s 0.17 0.07 0.12 0.07 +soignante soignant adj f s 0.17 0.07 0.03 0 +soignantes soignant adj f p 0.17 0.07 0.01 0 +soignants soignant nom m p 0.1 0.27 0.06 0 +soigne soigner ver 48.04 42.84 9.23 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soignent soigner ver 48.04 42.84 1.01 0.88 ind:pre:3p; +soigner soigner ver 48.04 42.84 22.82 17.64 inf;; +soignera soigner ver 48.04 42.84 1.19 0.54 ind:fut:3s; +soignerai soigner ver 48.04 42.84 0.5 0.61 ind:fut:1s; +soigneraient soigner ver 48.04 42.84 0.17 0 cnd:pre:3p; +soignerais soigner ver 48.04 42.84 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +soignerait soigner ver 48.04 42.84 0.08 0.47 cnd:pre:3s; +soigneras soigner ver 48.04 42.84 0.04 0 ind:fut:2s; +soignerez soigner ver 48.04 42.84 0.17 0 ind:fut:2p; +soignerons soigner ver 48.04 42.84 0.17 0 ind:fut:1p; +soigneront soigner ver 48.04 42.84 0.34 0.14 ind:fut:3p; +soignes soigner ver 48.04 42.84 1.06 0.54 ind:pre:2s; +soigneur soigneur nom m s 0.16 0.95 0.09 0.34 +soigneurs soigneur nom m p 0.16 0.95 0.07 0.61 +soigneuse soigneux adj f s 0.78 3.78 0.22 1.28 +soigneusement soigneusement adv 3.52 34.39 3.52 34.39 +soigneuses soigneux adj f p 0.78 3.78 0 0.2 +soigneux soigneux adj m 0.78 3.78 0.56 2.3 +soignez soigner ver 48.04 42.84 2.04 0.41 imp:pre:2p;ind:pre:2p; +soigniez soigner ver 48.04 42.84 0.08 0 ind:imp:2p;sub:pre:2p; +soignons soigner ver 48.04 42.84 0.18 0 imp:pre:1p;ind:pre:1p; +soignèrent soigner ver 48.04 42.84 0 0.27 ind:pas:3p; +soigné soigner ver m s 48.04 42.84 5.42 6.35 par:pas; +soignée soigner ver f s 48.04 42.84 1.1 1.76 par:pas; +soignées soigné adj f p 1.91 9.8 0.19 1.35 +soignés soigner ver m p 48.04 42.84 0.74 0.81 par:pas; +soin soin nom m s 71.99 68.24 54.45 45.41 +soins soin nom m p 71.99 68.24 17.55 22.84 +soir soir nom m s 575.7 562.64 555.85 527.23 +soirs soir nom m p 575.7 562.64 19.86 35.41 +soirée soirée nom f s 102.37 76.69 94.36 58.24 +soirées soirée nom f p 102.37 76.69 8.02 18.45 +sois être aux 8074.24 6501.82 49.52 14.19 sub:pre:2s; +soissonnais soissonnais nom m 0 0.14 0 0.14 +soit être aux 8074.24 6501.82 100.79 76.01 sub:pre:3s; +soixantaine soixantaine nom f s 0.42 4.53 0.42 4.53 +soixante soixante adj_num 3.92 22.7 3.92 22.7 +soixante_cinq soixante_cinq adj_num 0.12 3.58 0.12 3.58 +soixante_deux soixante_deux adj_num 0.15 0.34 0.15 0.34 +soixante_deuxième soixante_deuxième adj 0 0.07 0 0.07 +soixante_dix soixante_dix adj_num 1.12 8.85 1.12 8.85 +soixante_dix_huit soixante_dix_huit adj_num 0.16 0.47 0.16 0.47 +soixante_dix_neuf soixante_dix_neuf adj_num 0.01 0.2 0.01 0.2 +soixante_dix_neuvième soixante_dix_neuvième adj 0 0.07 0 0.07 +soixante_dix_sept soixante_dix_sept adj_num 0.21 0.74 0.21 0.74 +soixante_dixième soixante_dixième nom s 0 0.47 0 0.47 +soixante_douze soixante_douze adj_num 0.23 1.15 0.23 1.15 +soixante_huit soixante_huit adj_num 0.16 0.81 0.16 0.81 +soixante_huitard soixante_huitard nom m s 0.01 0.14 0.01 0 +soixante_huitard soixante_huitard adj f s 0 0.07 0 0.07 +soixante_huitard soixante_huitard nom m p 0.01 0.14 0 0.14 +soixante_neuf soixante_neuf adj_num 0.16 0.41 0.16 0.41 +soixante_quatorze soixante_quatorze adj_num 0.03 0.61 0.03 0.61 +soixante_quatre soixante_quatre adj_num 0.04 0.61 0.04 0.61 +soixante_quinze soixante_quinze adj_num 0.27 3.85 0.27 3.85 +soixante_seize soixante_seize adj_num 0.07 0.68 0.07 0.68 +soixante_sept soixante_sept adj_num 0.2 0.81 0.2 0.81 +soixante_six soixante_six adj_num 0.08 0.81 0.08 0.81 +soixante_treize soixante_treize adj_num 0.01 1.08 0.01 1.08 +soixante_trois soixante_trois adj_num 0.15 0.2 0.15 0.2 +soixantième soixantième nom s 0.01 0.2 0.01 0.2 +soja soja nom m s 2.28 0.61 2.28 0.61 +sol sol nom m s 47.17 150.34 45.83 148.31 +sol_air sol_air adj 0.32 0 0.32 0 +solaire solaire adj s 8.53 7.43 7.04 6.49 +solaires solaire adj p 8.53 7.43 1.49 0.95 +solanacée solanacée nom f s 0.03 0.07 0.01 0.07 +solanacées solanacée nom f p 0.03 0.07 0.02 0 +solarium solarium nom m s 0.36 0.74 0.36 0.68 +solariums solarium nom m p 0.36 0.74 0 0.07 +solda solder ver 1.52 3.72 0.01 0.07 ind:pas:3s; +soldaient solder ver 1.52 3.72 0 0.07 ind:imp:3p; +soldait solder ver 1.52 3.72 0.01 0.2 ind:imp:3s; +soldat soldat nom m s 107.92 128.92 52.78 46.22 +soldate soldat nom f s 107.92 128.92 0.18 0.2 +soldatesque soldatesque nom f s 0 0.81 0 0.81 +soldats soldat nom m p 107.92 128.92 54.96 82.5 +solde solde nom s 6.76 9.05 5.09 6.89 +soldent solder ver 1.52 3.72 0.01 0.2 ind:pre:3p; +solder solder ver 1.52 3.72 0.33 0.74 inf; +soldera solder ver 1.52 3.72 0.15 0.07 ind:fut:3s; +solderais solder ver 1.52 3.72 0.01 0 cnd:pre:1s; +solderait solder ver 1.52 3.72 0 0.27 cnd:pre:3s; +solderie solderie nom f s 0.05 0 0.05 0 +soldes solde nom p 6.76 9.05 1.67 2.16 +soldeur soldeur nom m s 0.01 0.2 0.01 0.07 +soldeurs soldeur nom m p 0.01 0.2 0 0.14 +soldez solder ver 1.52 3.72 0.02 0 imp:pre:2p;ind:pre:2p; +soldât solder ver 1.52 3.72 0 0.14 sub:imp:3s; +soldèrent solder ver 1.52 3.72 0.01 0.07 ind:pas:3p; +soldé solder ver m s 1.52 3.72 0.28 0.47 par:pas; +soldée solder ver f s 1.52 3.72 0.19 0.47 par:pas; +soldées solder ver f p 1.52 3.72 0.05 0.14 par:pas; +soldés solder ver m p 1.52 3.72 0.17 0.41 par:pas; +sole sole nom f s 1.35 2.5 1.29 1.89 +soleil soleil nom m s 123.34 334.39 120.72 328.78 +soleil_roi soleil_roi nom m s 0 0.07 0 0.07 +soleilleux soleilleux adj m s 0 0.07 0 0.07 +soleils soleil nom m p 123.34 334.39 2.61 5.61 +solen solen nom m s 0.03 0.07 0.03 0.07 +solennel solennel adj m s 4.58 19.66 2.3 8.11 +solennelle solennel adj f s 4.58 19.66 1.85 8.24 +solennellement solennellement adv 1.77 6.15 1.77 6.15 +solennelles solennel adj f p 4.58 19.66 0.19 1.35 +solennels solennel adj m p 4.58 19.66 0.25 1.96 +solenniser solenniser ver 0.01 0.07 0.01 0 inf; +solennisèrent solenniser ver 0.01 0.07 0 0.07 ind:pas:3p; +solennité solennité nom f s 0.15 8.11 0.15 7.77 +solennités solennité nom f p 0.15 8.11 0 0.34 +soles sole nom f p 1.35 2.5 0.06 0.61 +solex solex nom m 0.25 3.38 0.25 3.38 +solfatares solfatare nom f p 0 0.14 0 0.14 +solfège solfège nom m s 0.16 0.95 0.16 0.95 +soli solo nom m p 5.22 3.38 0 0.2 +solicitor solicitor nom m s 0 0.14 0 0.07 +solicitors solicitor nom m p 0 0.14 0 0.07 +solidaire solidaire adj s 2.17 4.8 0.91 2.5 +solidairement solidairement adv 0 0.2 0 0.2 +solidaires solidaire adj p 2.17 4.8 1.26 2.3 +solidariser solidariser ver 0 0.27 0 0.2 inf; +solidarisez solidariser ver 0 0.27 0 0.07 ind:pre:2p; +solidarité solidarité nom f s 2.87 9.05 2.87 8.99 +solidarités solidarité nom f p 2.87 9.05 0 0.07 +solide solide adj s 21.71 42.77 17.31 31.49 +solidement solidement adv 0.81 10 0.81 10 +solides solide adj p 21.71 42.77 4.4 11.28 +solidifia solidifier ver 0.45 1.42 0 0.27 ind:pas:3s; +solidifiait solidifier ver 0.45 1.42 0 0.07 ind:imp:3s; +solidification solidification nom f s 0.01 0 0.01 0 +solidifie solidifier ver 0.45 1.42 0.17 0.14 ind:pre:1s;ind:pre:3s; +solidifient solidifier ver 0.45 1.42 0.1 0 ind:pre:3p; +solidifier solidifier ver 0.45 1.42 0.08 0.2 inf; +solidifié solidifier ver m s 0.45 1.42 0.06 0.27 par:pas; +solidifiée solidifier ver f s 0.45 1.42 0.02 0.27 par:pas; +solidifiées solidifier ver f p 0.45 1.42 0 0.14 par:pas; +solidifiés solidifier ver m p 0.45 1.42 0.01 0.07 par:pas; +solidité solidité nom f s 0.65 4.66 0.65 4.66 +solidus solidus nom m 0 0.07 0 0.07 +soliflore soliflore nom m s 0 0.2 0 0.2 +soliloqua soliloquer ver 0.01 0.95 0 0.14 ind:pas:3s; +soliloquait soliloquer ver 0.01 0.95 0 0.34 ind:imp:3s; +soliloque soliloque nom m s 0.02 1.22 0.01 0.81 +soliloquer soliloquer ver 0.01 0.95 0 0.14 inf; +soliloques soliloque nom m p 0.02 1.22 0.01 0.41 +solipsisme solipsisme nom m s 0.01 0 0.01 0 +solipsiste solipsiste adj s 0.04 0 0.04 0 +soliste soliste nom s 0.95 1.08 0.94 0.61 +solistes soliste nom p 0.95 1.08 0.01 0.47 +solitaire solitaire adj s 13.19 26.96 11.04 20.88 +solitairement solitairement adv 0.01 1.22 0.01 1.22 +solitaires solitaire adj p 13.19 26.96 2.15 6.08 +solitude solitude nom f s 19.64 69.73 19.48 66.96 +solitudes solitude nom f p 19.64 69.73 0.16 2.77 +solive solive nom f s 0.22 0.95 0.04 0.27 +soliveau soliveau nom m s 0 0.14 0 0.14 +solives solive nom f p 0.22 0.95 0.18 0.68 +sollicita solliciter ver 4.44 11.82 0.01 0.47 ind:pas:3s; +sollicitai solliciter ver 4.44 11.82 0 0.34 ind:pas:1s; +sollicitaient solliciter ver 4.44 11.82 0 0.54 ind:imp:3p; +sollicitais solliciter ver 4.44 11.82 0 0.27 ind:imp:1s; +sollicitait solliciter ver 4.44 11.82 0.01 0.88 ind:imp:3s; +sollicitant solliciter ver 4.44 11.82 0.06 0.47 par:pre; +sollicitation sollicitation nom f s 0.24 2.3 0.23 0.61 +sollicitations sollicitation nom f p 0.24 2.3 0.01 1.69 +sollicite solliciter ver 4.44 11.82 1 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sollicitent solliciter ver 4.44 11.82 0.09 0.34 ind:pre:3p;sub:pre:3p; +solliciter solliciter ver 4.44 11.82 0.74 3.11 inf; +sollicitera solliciter ver 4.44 11.82 0.17 0 ind:fut:3s; +solliciteraient solliciter ver 4.44 11.82 0 0.07 cnd:pre:3p; +solliciteur solliciteur nom m s 0.4 0.68 0.13 0.14 +solliciteurs solliciteur nom m p 0.4 0.68 0.27 0.47 +solliciteuse solliciteur nom f s 0.4 0.68 0 0.07 +sollicitez solliciter ver 4.44 11.82 0.43 0.07 imp:pre:2p;ind:pre:2p; +sollicitons solliciter ver 4.44 11.82 0.12 0 imp:pre:1p;ind:pre:1p; +sollicitude sollicitude nom f s 1.85 9.46 1.84 8.99 +sollicitudes sollicitude nom f p 1.85 9.46 0.01 0.47 +sollicitât solliciter ver 4.44 11.82 0 0.14 sub:imp:3s; +sollicitèrent solliciter ver 4.44 11.82 0 0.07 ind:pas:3p; +sollicité solliciter ver m s 4.44 11.82 1.28 2.3 par:pas; +sollicitée solliciter ver f s 4.44 11.82 0.22 0.61 par:pas; +sollicitées solliciter ver f p 4.44 11.82 0.11 0.27 par:pas; +sollicités solliciter ver m p 4.44 11.82 0.22 0.54 par:pas; +solo solo nom m s 5.22 3.38 4.81 2.57 +solognot solognot adj m s 0 0.54 0 0.27 +solognote solognot adj f s 0 0.54 0 0.07 +solognots solognot adj m p 0 0.54 0 0.2 +solos solo nom m p 5.22 3.38 0.41 0.61 +sols sol nom m p 47.17 150.34 1.34 2.03 +solstice solstice nom m s 0.54 1.42 0.54 1.28 +solstices solstice nom m p 0.54 1.42 0 0.14 +solubilité solubilité nom f s 0.01 0 0.01 0 +soluble soluble adj s 0.41 0.34 0.39 0.2 +solubles soluble adj p 0.41 0.34 0.02 0.14 +solucamphre solucamphre nom m s 0 0.07 0 0.07 +solution solution nom f s 61.96 43.51 56.46 36.89 +solutionnait solutionner ver 0.13 0.14 0 0.07 ind:imp:3s; +solutionner solutionner ver 0.13 0.14 0.12 0.07 inf; +solutionneur solutionneur nom m s 0.03 0 0.03 0 +solutionnons solutionner ver 0.13 0.14 0.01 0 imp:pre:1p; +solutions solution nom f p 61.96 43.51 5.5 6.62 +soluté soluté nom m s 0.17 0.07 0.15 0.07 +solutés soluté nom m p 0.17 0.07 0.01 0 +solvabilité solvabilité nom f s 0.15 0.14 0.15 0.14 +solvable solvable adj m s 0.36 0 0.36 0 +solvant solvant nom m s 0.24 0.27 0.18 0.2 +solvants solvant nom m p 0.24 0.27 0.06 0.07 +solécismes solécisme nom m p 0 0.14 0 0.14 +solénoïde solénoïde nom m s 0.11 0 0.09 0 +solénoïdes solénoïde nom m p 0.11 0 0.02 0 +soma soma nom m s 0.48 0 0.48 0 +somalien somalien adj m s 0.07 0 0.04 0 +somalienne somalien adj f s 0.07 0 0.01 0 +somaliens somalien nom m p 0.32 0.14 0.32 0.14 +somalis somali adj m p 0 0.07 0 0.07 +somatique somatique adj m s 0.2 0.14 0.04 0.14 +somatiques somatique adj p 0.2 0.14 0.16 0 +somatisant somatiser ver 0.01 0.47 0 0.07 par:pre; +somatise somatiser ver 0.01 0.47 0.01 0.14 ind:pre:3s; +somatiser somatiser ver 0.01 0.47 0 0.14 inf; +somatiserez somatiser ver 0.01 0.47 0 0.07 ind:fut:2p; +somatisée somatiser ver f s 0.01 0.47 0 0.07 par:pas; +sombra sombrer ver 5.51 19.32 0.53 1.62 ind:pas:3s; +sombrai sombrer ver 5.51 19.32 0.01 0.41 ind:pas:1s; +sombraient sombrer ver 5.51 19.32 0.01 0.88 ind:imp:3p; +sombrais sombrer ver 5.51 19.32 0.01 0.68 ind:imp:1s;ind:imp:2s; +sombrait sombrer ver 5.51 19.32 0.19 1.76 ind:imp:3s; +sombrant sombrer ver 5.51 19.32 0.04 0.41 par:pre; +sombre sombre adj s 31.86 125.74 24.66 93.72 +sombrement sombrement adv 0.12 2.03 0.12 2.03 +sombrent sombrer ver 5.51 19.32 0.33 0.41 ind:pre:3p; +sombrer sombrer ver 5.51 19.32 2.22 6.49 inf; +sombrera sombrer ver 5.51 19.32 0.21 0.41 ind:fut:3s; +sombreraient sombrer ver 5.51 19.32 0 0.07 cnd:pre:3p; +sombrerais sombrer ver 5.51 19.32 0.01 0 cnd:pre:2s; +sombrerait sombrer ver 5.51 19.32 0.03 0.07 cnd:pre:3s; +sombrerez sombrer ver 5.51 19.32 0.01 0 ind:fut:2p; +sombrero sombrero nom m s 0.57 0.68 0.44 0.34 +sombrerons sombrer ver 5.51 19.32 0.02 0.07 ind:fut:1p; +sombreros sombrero nom m p 0.57 0.68 0.13 0.34 +sombres sombre adj p 31.86 125.74 7.21 32.03 +sombrez sombrer ver 5.51 19.32 0.03 0 ind:pre:2p; +sombrions sombrer ver 5.51 19.32 0 0.27 ind:imp:1p; +sombrons sombrer ver 5.51 19.32 0.02 0.14 imp:pre:1p;ind:pre:1p; +sombrèrent sombrer ver 5.51 19.32 0 0.14 ind:pas:3p; +sombré sombrer ver m s 5.51 19.32 1.22 2.7 par:pas; +sombrée sombrer ver f s 5.51 19.32 0 0.2 par:pas; +sombrées sombrer ver f p 5.51 19.32 0 0.14 par:pas; +sombrés sombrer ver m p 5.51 19.32 0.01 0.07 par:pas; +somma sommer ver 3.17 6.01 0 0.47 ind:pas:3s; +sommai sommer ver 3.17 6.01 0 0.2 ind:pas:1s; +sommaire sommaire adj s 0.56 4.8 0.46 3.45 +sommairement sommairement adv 0.13 2.16 0.13 2.16 +sommaires sommaire adj p 0.56 4.8 0.1 1.35 +sommais sommer ver 3.17 6.01 0 0.07 ind:imp:1s; +sommait sommer ver 3.17 6.01 0.01 0.47 ind:imp:3s; +sommant sommer ver 3.17 6.01 0 0.27 par:pre; +sommation sommation nom f s 1 3.24 0.94 1.69 +sommations sommation nom f p 1 3.24 0.07 1.55 +somme somme nom s 35.25 79.26 28.27 72.7 +sommeil sommeil nom m s 44.53 114.8 44.51 112.03 +sommeilla sommeiller ver 1.67 6.89 0 0.14 ind:pas:3s; +sommeillaient sommeiller ver 1.67 6.89 0.02 0.81 ind:imp:3p; +sommeillais sommeiller ver 1.67 6.89 0.03 0.07 ind:imp:1s; +sommeillait sommeiller ver 1.67 6.89 0.05 1.89 ind:imp:3s; +sommeillant sommeillant adj m s 0 1.08 0 0.61 +sommeillante sommeillant adj f s 0 1.08 0 0.27 +sommeillants sommeillant adj m p 0 1.08 0 0.2 +sommeille sommeiller ver 1.67 6.89 0.89 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sommeillent sommeiller ver 1.67 6.89 0.17 0.61 ind:pre:3p; +sommeiller sommeiller ver 1.67 6.89 0.5 1.08 inf; +sommeilleux sommeilleux adj m p 0 0.34 0 0.34 +sommeillèrent sommeiller ver 1.67 6.89 0 0.07 ind:pas:3p; +sommeillé sommeiller ver m s 1.67 6.89 0.01 0.41 par:pas; +sommeils sommeil nom m p 44.53 114.8 0.02 2.77 +sommelier sommelier nom m s 0.34 1.15 0.34 1.15 +somment sommer ver 3.17 6.01 0.14 0.07 ind:pre:3p; +sommer sommer ver 3.17 6.01 0.36 0.27 inf; +sommes être aux 8074.24 6501.82 109.26 99.46 ind:pre:1p; +sommet sommet nom m s 17.44 47.5 15.15 38.85 +sommets sommet nom m p 17.44 47.5 2.29 8.65 +sommier sommier nom m s 0.3 7.97 0.28 6.82 +sommiers sommier nom m p 0.3 7.97 0.02 1.15 +sommiez sommer ver 3.17 6.01 0.01 0 ind:imp:2p; +sommitales sommital adj f p 0 0.07 0 0.07 +sommité sommité nom f s 0.5 2.64 0.24 2.03 +sommités sommité nom f p 0.5 2.64 0.26 0.61 +sommons sommer ver 3.17 6.01 0.02 0.07 ind:pre:1p; +sommèrent sommer ver 3.17 6.01 0 0.07 ind:pas:3p; +sommé sommer ver m s 3.17 6.01 0.14 1.42 par:pas; +sommée sommer ver f s 3.17 6.01 0.01 0.68 par:pas; +sommés sommer ver m p 3.17 6.01 0.02 0.27 par:pas; +somnambulant somnambuler ver 0 0.14 0 0.14 par:pre; +somnambule somnambule nom s 2.71 4.73 2.33 4.05 +somnambules somnambule nom p 2.71 4.73 0.38 0.68 +somnambulique somnambulique adj s 0.02 1.62 0.02 1.28 +somnambuliquement somnambuliquement adv 0 0.07 0 0.07 +somnambuliques somnambulique adj p 0.02 1.62 0 0.34 +somnambulisme somnambulisme nom m s 0.27 0.74 0.27 0.74 +somnifère somnifère nom m s 5.73 2.97 2.01 1.55 +somnifères somnifère nom m p 5.73 2.97 3.72 1.42 +somno somno nom m s 0 0.07 0 0.07 +somnola somnoler ver 0.5 10.47 0 0.14 ind:pas:3s; +somnolai somnoler ver 0.5 10.47 0 0.07 ind:pas:1s; +somnolaient somnoler ver 0.5 10.47 0 0.88 ind:imp:3p; +somnolais somnoler ver 0.5 10.47 0.05 0.54 ind:imp:1s; +somnolait somnoler ver 0.5 10.47 0.02 3.45 ind:imp:3s; +somnolant somnoler ver 0.5 10.47 0.03 1.01 par:pre; +somnole somnoler ver 0.5 10.47 0.17 1.89 ind:pre:1s;ind:pre:3s; +somnolence somnolence nom f s 0.37 3.58 0.36 3.18 +somnolences somnolence nom f p 0.37 3.58 0.01 0.41 +somnolent somnolent adj m s 0.18 4.05 0.08 1.69 +somnolente somnolent adj f s 0.18 4.05 0.08 1.01 +somnolentes somnolent adj f p 0.18 4.05 0.01 0.54 +somnolents somnolent adj m p 0.18 4.05 0.01 0.81 +somnoler somnoler ver 0.5 10.47 0.11 1.35 inf; +somnolerais somnoler ver 0.5 10.47 0 0.07 cnd:pre:1s; +somnolez somnoler ver 0.5 10.47 0 0.07 ind:pre:2p; +somnolé somnoler ver m s 0.5 10.47 0.11 0.34 par:pas; +somozistes somoziste nom p 0.01 0 0.01 0 +somptuaire somptuaire adj s 0.02 0.41 0 0.14 +somptuaires somptuaire adj f p 0.02 0.41 0.02 0.27 +somptueuse somptueux adj f s 3.06 13.18 0.68 3.78 +somptueusement somptueusement adv 0.5 0.95 0.5 0.95 +somptueuses somptueux adj f p 3.06 13.18 0.19 1.96 +somptueux somptueux adj m 3.06 13.18 2.2 7.43 +somptuosité somptuosité nom f s 0.03 1.08 0.03 0.81 +somptuosités somptuosité nom f p 0.03 1.08 0 0.27 +son son adj_pos 1740.43 4696.15 1740.43 4696.15 +sonagramme sonagramme nom m s 0.01 0 0.01 0 +sonar sonar nom m s 1.71 0.07 1.54 0.07 +sonars sonar nom m p 1.71 0.07 0.17 0 +sonate sonate nom f s 2.98 1.69 2.95 1.15 +sonates sonate nom f p 2.98 1.69 0.03 0.54 +sonatine sonatine nom f s 0.14 1.62 0.14 1.62 +sonda sonder ver 3.31 5.07 0 0.61 ind:pas:3s; +sondage sondage nom m s 4.64 2.16 2.33 0.74 +sondages sondage nom m p 4.64 2.16 2.32 1.42 +sondaient sonder ver 3.31 5.07 0 0.07 ind:imp:3p; +sondait sonder ver 3.31 5.07 0.01 0.27 ind:imp:3s; +sondant sonder ver 3.31 5.07 0.19 0.34 par:pre; +sondas sonder ver 3.31 5.07 0 0.07 ind:pas:2s; +sonde sonde nom f s 6.31 0.95 5.3 0.81 +sondent sonder ver 3.31 5.07 0.08 0.14 ind:pre:3p; +sonder sonder ver 3.31 5.07 1.69 2.23 inf; +sonderai sonder ver 3.31 5.07 0 0.07 ind:fut:1s; +sondes sonde nom f p 6.31 0.95 1.01 0.14 +sondeur sondeur nom m s 0.13 0.2 0.07 0.07 +sondeurs sondeur nom m p 0.13 0.2 0.04 0.14 +sondeuse sondeur nom f s 0.13 0.2 0.01 0 +sondez sonder ver 3.31 5.07 0.2 0.07 imp:pre:2p;ind:pre:2p; +sondions sonder ver 3.31 5.07 0.01 0 ind:imp:1p; +sondons sonder ver 3.31 5.07 0.04 0 imp:pre:1p;ind:pre:1p; +sondèrent sonder ver 3.31 5.07 0 0.14 ind:pas:3p; +sondé sonder ver m s 3.31 5.07 0.46 0.41 par:pas; +sondée sonder ver f s 3.31 5.07 0.05 0 par:pas; +sondés sonder ver m p 3.31 5.07 0.03 0 par:pas; +song song nom m 0.4 0.14 0.4 0.14 +songe songer ver 24.59 104.86 4.28 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +songe_creux songe_creux nom m 0.01 0.41 0.01 0.41 +songea songer ver 24.59 104.86 0.24 14.8 ind:pas:3s; +songeai songer ver 24.59 104.86 0.15 2.77 ind:pas:1s; +songeaient songer ver 24.59 104.86 0.01 1.69 ind:imp:3p; +songeais songer ver 24.59 104.86 0.92 6.08 ind:imp:1s;ind:imp:2s; +songeait songer ver 24.59 104.86 0.34 17.3 ind:imp:3s; +songeant songer ver 24.59 104.86 0.61 8.11 par:pre; +songeasse songer ver 24.59 104.86 0 0.14 sub:imp:1s; +songent songer ver 24.59 104.86 0.58 0.74 ind:pre:3p; +songeons songer ver 24.59 104.86 0.35 0.34 imp:pre:1p;ind:pre:1p; +songer songer ver 24.59 104.86 5.56 18.31 inf; +songera songer ver 24.59 104.86 0.03 0.41 ind:fut:3s; +songerai songer ver 24.59 104.86 0.26 0.27 ind:fut:1s; +songeraient songer ver 24.59 104.86 0.02 0.07 cnd:pre:3p; +songerais songer ver 24.59 104.86 0.19 0.27 cnd:pre:1s;cnd:pre:2s; +songerait songer ver 24.59 104.86 0.05 0.61 cnd:pre:3s; +songerie songerie nom f s 0.16 1.69 0.14 0.81 +songeries songerie nom f p 0.16 1.69 0.02 0.88 +songeriez songer ver 24.59 104.86 0.04 0.07 cnd:pre:2p; +songerons songer ver 24.59 104.86 0.28 0.07 ind:fut:1p; +songes songer ver 24.59 104.86 0.86 0.68 ind:pre:2s;sub:pre:2s; +songeur songeur adj m s 0.26 6.08 0.25 3.45 +songeurs songeur adj m p 0.26 6.08 0 0.34 +songeuse songeur adj f s 0.26 6.08 0.01 1.96 +songeusement songeusement adv 0 0.2 0 0.2 +songeuses songeur adj f p 0.26 6.08 0 0.34 +songez songer ver 24.59 104.86 5 3.45 imp:pre:2p;ind:pre:2p; +songeât songer ver 24.59 104.86 0 0.41 sub:imp:3s; +songiez songer ver 24.59 104.86 0.14 0 ind:imp:2p; +songions songer ver 24.59 104.86 0 0.14 ind:imp:1p; +songèrent songer ver 24.59 104.86 0 0.27 ind:pas:3p; +songé songer ver m s 24.59 104.86 4.69 10.88 par:pas; +sonique sonique adj s 0.45 0.07 0.35 0.07 +soniques sonique adj p 0.45 0.07 0.09 0 +sonna sonner ver 73.67 92.57 0.67 12.23 ind:pas:3s; +sonnai sonner ver 73.67 92.57 0.01 0.81 ind:pas:1s; +sonnaient sonner ver 73.67 92.57 0.59 6.22 ind:imp:3p; +sonnaillaient sonnailler ver 0 0.2 0 0.14 ind:imp:3p; +sonnaille sonnaille nom f s 0 1.15 0 0.2 +sonnailler sonnailler ver 0 0.2 0 0.07 inf; +sonnailles sonnaille nom f p 0 1.15 0 0.95 +sonnais sonner ver 73.67 92.57 0.33 0.41 ind:imp:1s;ind:imp:2s; +sonnait sonner ver 73.67 92.57 2.78 12.84 ind:imp:3s; +sonnant sonner ver 73.67 92.57 0.32 1.96 par:pre; +sonnante sonnant adj f s 0.2 6.89 0 0.34 +sonnantes sonnant adj f p 0.2 6.89 0.14 5.54 +sonnants sonnant adj m p 0.2 6.89 0.01 0.14 +sonne sonner ver 73.67 92.57 31.69 16.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sonnent sonner ver 73.67 92.57 2.92 3.85 ind:pre:3p;sub:pre:3p; +sonner sonner ver 73.67 92.57 11.77 18.04 inf; +sonnera sonner ver 73.67 92.57 1.69 1.15 ind:fut:3s; +sonnerai sonner ver 73.67 92.57 0.25 0.27 ind:fut:1s; +sonnerais sonner ver 73.67 92.57 0.13 0.2 cnd:pre:1s;cnd:pre:2s; +sonnerait sonner ver 73.67 92.57 0.5 1.08 cnd:pre:3s; +sonneras sonner ver 73.67 92.57 0.02 0.07 ind:fut:2s; +sonnerez sonner ver 73.67 92.57 0.01 0.14 ind:fut:2p; +sonnerie sonnerie nom f s 6.65 18.31 6.03 15.68 +sonneries sonnerie nom f p 6.65 18.31 0.63 2.64 +sonneront sonner ver 73.67 92.57 0.37 0.2 ind:fut:3p; +sonnes sonner ver 73.67 92.57 0.48 0.14 ind:pre:2s; +sonnet sonnet nom m s 1.21 2.09 0.72 1.35 +sonnets sonnet nom m p 1.21 2.09 0.49 0.74 +sonnette sonnette nom f s 9.55 16.15 8.47 14.12 +sonnettes sonnette nom f p 9.55 16.15 1.08 2.03 +sonneur sonneur nom m s 1.34 0.61 1.31 0.34 +sonneurs sonneur nom m p 1.34 0.61 0.03 0.27 +sonnez sonner ver 73.67 92.57 2.09 0.14 imp:pre:2p;ind:pre:2p; +sonniez sonner ver 73.67 92.57 0.04 0 ind:imp:2p; +sonnons sonner ver 73.67 92.57 0.04 0.14 imp:pre:1p;ind:pre:1p; +sonnât sonner ver 73.67 92.57 0.01 0.34 sub:imp:3s; +sonnèrent sonner ver 73.67 92.57 0.13 1.76 ind:pas:3p; +sonné sonner ver m s 73.67 92.57 16.04 12.23 par:pas; +sonnée sonner ver f s 73.67 92.57 0.71 0.81 par:pas; +sonnées sonné adj f p 0.66 3.58 0.01 0.14 +sonnés sonner ver m p 73.67 92.57 0.07 0.54 par:pas; +sono sono nom f s 1.23 1.89 1.18 1.89 +sonoluminescence sonoluminescence nom f s 0.01 0 0.01 0 +sonomètres sonomètre nom m p 0.01 0 0.01 0 +sonore sonore adj s 4.17 27.3 3.26 19.8 +sonorement sonorement adv 0 0.07 0 0.07 +sonores sonore adj p 4.17 27.3 0.91 7.5 +sonorisateurs sonorisateur nom m p 0 0.07 0 0.07 +sonorisation sonorisation nom f s 0.03 0.27 0.03 0.27 +sonorise sonoriser ver 0.06 0.27 0.01 0.07 ind:pre:3s; +sonoriser sonoriser ver 0.06 0.27 0.03 0.14 inf; +sonorisé sonoriser ver m s 0.06 0.27 0.02 0 par:pas; +sonorisées sonoriser ver f p 0.06 0.27 0 0.07 par:pas; +sonorité sonorité nom f s 0.29 6.15 0.26 4.53 +sonorités sonorité nom f p 0.29 6.15 0.04 1.62 +sonos sono nom f p 1.23 1.89 0.05 0 +sonothèque sonothèque nom f s 0.01 0 0.01 0 +sonotone sonotone nom m s 0.17 0.07 0.16 0 +sonotones sonotone nom m p 0.17 0.07 0.01 0.07 +sons son nom_sup m p 47.51 67.84 7.83 18.51 +sont être aux 8074.24 6501.82 511.66 386.35 ind:pre:3p; +sopha sopha nom m s 0 0.27 0 0.27 +sophie sophie nom f s 1.23 0 1.23 0 +sophisme sophisme nom m s 0.29 0.54 0.29 0.2 +sophismes sophisme nom m p 0.29 0.54 0 0.34 +sophiste sophiste nom s 0.1 0.47 0.1 0.27 +sophistes sophiste nom p 0.1 0.47 0 0.2 +sophistication sophistication nom f s 0.22 0.68 0.22 0.61 +sophistications sophistication nom f p 0.22 0.68 0 0.07 +sophistique sophistique adj s 0.11 0 0.11 0 +sophistiqué sophistiqué adj m s 3.57 2.23 1.79 0.34 +sophistiquée sophistiqué adj f s 3.57 2.23 0.94 0.95 +sophistiquées sophistiqué adj f p 3.57 2.23 0.32 0.41 +sophistiqués sophistiqué adj m p 3.57 2.23 0.53 0.54 +sophora sophora nom m s 0.14 0 0.14 0 +sopor sopor nom m s 0 0.07 0 0.07 +soporifique soporifique adj s 0.62 0.2 0.59 0.2 +soporifiques soporifique adj f p 0.62 0.2 0.04 0 +soprano soprano nom s 5.21 2.03 4.8 1.76 +sopranos soprano nom p 5.21 2.03 0.41 0.27 +sorbes sorbe nom f p 0 0.07 0 0.07 +sorbet sorbet nom m s 0.55 1.55 0.37 0.81 +sorbetière sorbetière nom f s 0.09 0.27 0.09 0.07 +sorbetières sorbetière nom f p 0.09 0.27 0 0.2 +sorbets sorbet nom m p 0.55 1.55 0.19 0.74 +sorbier sorbier nom m s 1.18 0.47 1.18 0.34 +sorbiers sorbier nom m p 1.18 0.47 0 0.14 +sorbitol sorbitol nom m s 0.03 0 0.03 0 +sorbonnarde sorbonnard nom f s 0 0.07 0 0.07 +sorbonne sorbon nom f s 0 0.2 0 0.2 +sorcellerie sorcellerie nom f s 5.24 1.35 5.21 1.22 +sorcelleries sorcellerie nom f p 5.24 1.35 0.04 0.14 +sorcier sorcier nom m s 54.09 14.66 4.49 4.32 +sorciers sorcier nom m p 54.09 14.66 2.42 1.62 +sorcière sorcier nom f s 54.09 14.66 33.84 6.42 +sorcières sorcier nom f p 54.09 14.66 13.34 2.3 +sordide sordide adj s 6.37 10.95 4.39 7.57 +sordidement sordidement adv 0.14 0.2 0.14 0.2 +sordides sordide adj p 6.37 10.95 1.98 3.38 +sordidité sordidité nom f s 0.03 0.14 0.03 0.14 +sorgho sorgho nom m s 0.03 0.07 0.03 0.07 +sorite sorite nom m s 0.01 0 0.01 0 +sornette sornette nom f s 1.83 1.69 0.11 0.07 +sornettes sornette nom f p 1.83 1.69 1.72 1.62 +sororal sororal adj m s 0.01 0.27 0.01 0.07 +sororale sororal adj f s 0.01 0.27 0 0.14 +sororales sororal adj f p 0.01 0.27 0 0.07 +sororité sororité nom f s 0.11 0.14 0.11 0.14 +sors sortir ver 884.26 627.57 156.13 25.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sort sortir ver 884.26 627.57 82.41 58.51 ind:pre:3s; +sortable sortable adj s 0.29 0.07 0.28 0.07 +sortables sortable adj p 0.29 0.07 0.01 0 +sortaient sortir ver 884.26 627.57 2.76 21.42 ind:imp:3p; +sortais sortir ver 884.26 627.57 6.38 6.28 ind:imp:1s;ind:imp:2s; +sortait sortir ver 884.26 627.57 12.62 50.81 ind:imp:3s; +sortant sortir ver 884.26 627.57 10.57 34.66 par:pre; +sortante sortant adj f s 1.17 1.49 0.09 0 +sortantes sortant adj f p 1.17 1.49 0.02 0.07 +sortants sortant adj m p 1.17 1.49 0.27 0.14 +sorte sorte nom f s 114.73 307.16 98.33 273.38 +sortent sortir ver 884.26 627.57 18.97 17.43 ind:pre:3p; +sortes sorte nom f p 114.73 307.16 16.41 33.78 +sortez sortir ver 884.26 627.57 87.79 5.27 imp:pre:2p;ind:pre:2p; +sorti sortir ver m s 884.26 627.57 81.08 67.97 par:pas; +sortie sortie nom f s 47.81 75.27 42.58 66.01 +sorties sortie nom f p 47.81 75.27 5.23 9.26 +sortiez sortir ver 884.26 627.57 2.87 0.54 ind:imp:2p; +sortilège sortilège nom m s 3.19 3.18 2.46 1.62 +sortilèges sortilège nom m p 3.19 3.18 0.72 1.55 +sortions sortir ver 884.26 627.57 0.67 3.38 ind:imp:1p; +sortir sortir ver 884.26 627.57 285.45 145.34 inf; +sortira sortir ver 884.26 627.57 18.31 6.55 ind:fut:3s; +sortirai sortir ver 884.26 627.57 7.69 1.89 ind:fut:1s; +sortiraient sortir ver 884.26 627.57 0.38 2.03 cnd:pre:3p; +sortirais sortir ver 884.26 627.57 3.06 0.81 cnd:pre:1s;cnd:pre:2s; +sortirait sortir ver 884.26 627.57 3.02 5.47 cnd:pre:3s; +sortiras sortir ver 884.26 627.57 9.37 1.42 ind:fut:2s; +sortirent sortir ver 884.26 627.57 0.39 12.91 ind:pas:3p; +sortirez sortir ver 884.26 627.57 3.12 0.61 ind:fut:2p; +sortiriez sortir ver 884.26 627.57 0.4 0.07 cnd:pre:2p; +sortirions sortir ver 884.26 627.57 0.21 0.14 cnd:pre:1p; +sortirons sortir ver 884.26 627.57 2.5 0.88 ind:fut:1p; +sortiront sortir ver 884.26 627.57 2.61 0.95 ind:fut:3p; +sortis sortir ver m p 884.26 627.57 15.65 26.76 ind:pas:1s;ind:pas:2s;par:pas; +sortit sortir ver 884.26 627.57 2.31 86.96 ind:pas:3s; +sortons sortir ver 884.26 627.57 13.57 4.19 imp:pre:1p;ind:pre:1p; +sorts sort nom m p 44.8 58.92 1.88 1.42 +sortîmes sortir ver 884.26 627.57 0.16 1.35 ind:pas:1p; +sortît sortir ver 884.26 627.57 0 0.61 sub:imp:3s; +sosie sosie nom m s 1.89 1.22 1.54 0.88 +sosies sosie nom m p 1.89 1.22 0.34 0.34 +sostenuto sostenuto adv 0 0.07 0 0.07 +sot sot nom m s 5.84 3.99 2.38 1.01 +sotie sotie nom f s 0 0.07 0 0.07 +sots sot nom m p 5.84 3.99 1.27 0.88 +sotte sot adj f s 6.34 8.11 2.73 3.78 +sottement sottement adv 0.33 2.3 0.33 2.3 +sottes sot adj f p 6.34 8.11 0.99 0.88 +sottise sottise nom f s 6.97 11.82 2.44 6.96 +sottises sottise nom f p 6.97 11.82 4.54 4.86 +sou sou nom m s 35.98 41.22 14.43 12.57 +souabe souabe adj s 0.14 0.07 0.14 0 +souabes souabe nom p 0.2 0.34 0.2 0.34 +soubassement soubassement nom m s 0.13 2.23 0.02 1.82 +soubassements soubassement nom m p 0.13 2.23 0.11 0.41 +soubise soubise nom f s 0 0.07 0 0.07 +soubresaut soubresaut nom m s 0.53 6.96 0.26 1.49 +soubresautaient soubresauter ver 0 0.14 0 0.07 ind:imp:3p; +soubresautait soubresauter ver 0 0.14 0 0.07 ind:imp:3s; +soubresauts soubresaut nom m p 0.53 6.96 0.27 5.47 +soubrette soubrette nom f s 1.11 3.11 0.95 2.36 +soubrettes soubrette nom f p 1.11 3.11 0.16 0.74 +souche souche nom f s 4.93 10.54 3.45 7.36 +souches souche nom f p 4.93 10.54 1.48 3.18 +souchet souchet nom m s 0.01 0.07 0.01 0.07 +souchette souchette nom f s 0 0.07 0 0.07 +souci souci nom m s 49.47 61.22 26.73 39.8 +soucia soucier ver 22.45 26.62 0 0.41 ind:pas:3s; +souciai soucier ver 22.45 26.62 0.01 0.2 ind:pas:1s; +souciaient soucier ver 22.45 26.62 0.28 1.22 ind:imp:3p; +souciais soucier ver 22.45 26.62 0.63 1.49 ind:imp:1s;ind:imp:2s; +souciait soucier ver 22.45 26.62 0.88 5.54 ind:imp:3s; +souciant soucier ver 22.45 26.62 0.05 0.41 par:pre; +soucie soucier ver 22.45 26.62 7.01 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soucient soucier ver 22.45 26.62 0.95 0.47 ind:pre:3p; +soucier soucier ver 22.45 26.62 5.62 8.92 inf; +souciera soucier ver 22.45 26.62 0.27 0.14 ind:fut:3s; +soucierai soucier ver 22.45 26.62 0.12 0.14 ind:fut:1s; +soucieraient soucier ver 22.45 26.62 0.04 0.14 cnd:pre:3p; +soucierais soucier ver 22.45 26.62 0.13 0 cnd:pre:1s;cnd:pre:2s; +soucierait soucier ver 22.45 26.62 0.22 0.27 cnd:pre:3s; +soucierez soucier ver 22.45 26.62 0.02 0 ind:fut:2p; +soucies soucier ver 22.45 26.62 2.19 0.2 ind:pre:2s; +soucieuse soucieux adj f s 2.28 16.62 0.37 3.45 +soucieuses soucieux adj f p 2.28 16.62 0.11 0.34 +soucieux soucieux adj m 2.28 16.62 1.79 12.84 +souciez soucier ver 22.45 26.62 1.86 0.41 imp:pre:2p;ind:pre:2p; +soucions soucier ver 22.45 26.62 0.16 0.07 imp:pre:1p;ind:pre:1p; +soucis souci nom m p 49.47 61.22 22.73 21.42 +souciât soucier ver 22.45 26.62 0 0.34 sub:imp:3s; +soucièrent soucier ver 22.45 26.62 0 0.07 ind:pas:3p; +soucié soucier ver m s 22.45 26.62 1.39 1.62 par:pas; +souciée soucier ver f s 22.45 26.62 0.36 0.2 par:pas; +souciées soucier ver f p 22.45 26.62 0 0.07 par:pas; +souciés soucier ver m p 22.45 26.62 0.28 0.2 par:pas; +soucoupe soucoupe nom f s 4.14 8.85 2.92 5.95 +soucoupes soucoupe nom f p 4.14 8.85 1.23 2.91 +soudage soudage nom m s 0.04 0 0.04 0 +soudaient souder ver 3.2 8.04 0 0.68 ind:imp:3p; +soudain soudain adv_sup 21.16 207.3 21.16 207.3 +soudaine soudain adj_sup f s 13.62 65.27 3.42 17.16 +soudainement soudainement adv 6.98 5.54 6.98 5.54 +soudaines soudain adj_sup f p 13.62 65.27 0.28 1.69 +soudaineté soudaineté nom f s 0.05 1.28 0.05 1.28 +soudains soudain adj_sup m p 13.62 65.27 0.15 1.62 +soudait souder ver 3.2 8.04 0.01 0.47 ind:imp:3s; +soudanais soudanais nom m 0.24 0.07 0.24 0.07 +soudanaise soudanais adj f s 0.2 0.2 0 0.07 +soudant souder ver 3.2 8.04 0 0.2 par:pre; +soudard soudard nom m s 0.16 2.23 0.01 1.08 +soudards soudard nom m p 0.16 2.23 0.15 1.15 +soude soude nom f s 0.88 0.88 0.88 0.88 +soudent souder ver 3.2 8.04 0.04 0.34 ind:pre:3p; +souder souder ver 3.2 8.04 1.1 1.08 inf; +souderait souder ver 3.2 8.04 0.01 0.07 cnd:pre:3s; +soudeur soudeur nom m s 1.42 0.27 1.29 0.2 +soudeurs soudeur nom m p 1.42 0.27 0.08 0.07 +soudeuse soudeur nom f s 1.42 0.27 0.05 0 +soudez souder ver 3.2 8.04 0.03 0 imp:pre:2p;ind:pre:2p; +soudoie soudoyer ver 1.92 1.01 0.04 0 ind:pre:1s;ind:pre:3s; +soudoya soudoyer ver 1.92 1.01 0 0.07 ind:pas:3s; +soudoyaient soudoyer ver 1.92 1.01 0.01 0.07 ind:imp:3p; +soudoyait soudoyer ver 1.92 1.01 0.02 0.07 ind:imp:3s; +soudoyant soudoyer ver 1.92 1.01 0.21 0.14 par:pre; +soudoyer soudoyer ver 1.92 1.01 0.6 0.34 inf; +soudoyez soudoyer ver 1.92 1.01 0.09 0 imp:pre:2p;ind:pre:2p; +soudoyé soudoyer ver m s 1.92 1.01 0.75 0.2 par:pas; +soudoyée soudoyer ver f s 1.92 1.01 0.04 0.07 par:pas; +soudoyés soudoyer ver m p 1.92 1.01 0.16 0.07 par:pas; +soudure soudure nom f s 1.35 1.08 1.09 0.95 +soudures soudure nom f p 1.35 1.08 0.26 0.14 +soudèrent souder ver 3.2 8.04 0 0.07 ind:pas:3p; +soudé souder ver m s 3.2 8.04 0.57 1.35 par:pas; +soudée souder ver f s 3.2 8.04 0.19 0.95 par:pas; +soudées souder ver f p 3.2 8.04 0.17 1.22 par:pas; +soudés souder ver m p 3.2 8.04 0.92 1.35 par:pas; +soue soue nom f s 0.11 0.34 0.11 0.34 +souffert souffrir ver m s 113.83 119.26 18.45 18.78 par:pas; +soufferte souffrir ver f s 113.83 119.26 0 0.07 par:pas; +souffertes souffrir ver f p 113.83 119.26 0 0.14 par:pas; +soufferts souffrir ver m p 113.83 119.26 0.03 0 par:pas; +souffla souffler ver 28.33 83.65 0.3 14.8 ind:pas:3s; +soufflages soufflage nom m p 0 0.07 0 0.07 +soufflai souffler ver 28.33 83.65 0 0.54 ind:pas:1s; +soufflaient souffler ver 28.33 83.65 0.06 1.49 ind:imp:3p; +soufflais souffler ver 28.33 83.65 0.05 0.54 ind:imp:1s;ind:imp:2s; +soufflait souffler ver 28.33 83.65 0.86 15.34 ind:imp:3s; +soufflant souffler ver 28.33 83.65 0.38 8.72 par:pre; +soufflante soufflant adj f s 0.03 1.08 0.01 0.34 +soufflants soufflant nom m p 0.02 0.34 0 0.14 +souffle souffle nom m s 26.98 100.2 26.55 93.18 +soufflement soufflement nom m s 0.01 0.27 0.01 0.2 +soufflements soufflement nom m p 0.01 0.27 0 0.07 +soufflent souffler ver 28.33 83.65 0.81 1.49 ind:pre:3p; +souffler souffler ver 28.33 83.65 6.26 13.65 inf; +soufflera souffler ver 28.33 83.65 0.39 0.14 ind:fut:3s; +soufflerai souffler ver 28.33 83.65 0.28 0.07 ind:fut:1s; +soufflerais souffler ver 28.33 83.65 0.02 0.07 cnd:pre:1s; +soufflerait souffler ver 28.33 83.65 0.14 0.54 cnd:pre:3s; +soufflerez souffler ver 28.33 83.65 0.01 0 ind:fut:2p; +soufflerie soufflerie nom f s 0.98 0.88 0.98 0.88 +souffleront souffler ver 28.33 83.65 0.02 0 ind:fut:3p; +souffles souffler ver 28.33 83.65 0.6 0.27 ind:pre:2s; +soufflet soufflet nom m s 0.47 6.22 0.43 4.26 +souffletai souffleter ver 0.02 2.09 0 0.07 ind:pas:1s; +souffletaient souffleter ver 0.02 2.09 0 0.07 ind:imp:3p; +souffletait souffleter ver 0.02 2.09 0 0.2 ind:imp:3s; +souffletant souffleter ver 0.02 2.09 0 0.07 par:pre; +souffleter souffleter ver 0.02 2.09 0 0.41 inf; +soufflets soufflet nom m p 0.47 6.22 0.04 1.96 +soufflette souffleter ver 0.02 2.09 0.02 0.14 imp:pre:2s;ind:pre:3s; +soufflettent souffleter ver 0.02 2.09 0 0.14 ind:pre:3p; +soufflettes souffleter ver 0.02 2.09 0 0.07 ind:pre:2s; +souffleté souffleter ver m s 0.02 2.09 0 0.47 par:pas; +souffletée souffleter ver f s 0.02 2.09 0 0.2 par:pas; +souffletés souffleter ver m p 0.02 2.09 0 0.27 par:pas; +souffleur souffleur nom m s 1.35 1.22 0.92 1.01 +souffleurs souffleur nom m p 1.35 1.22 0.32 0.2 +souffleuse souffleur nom f s 1.35 1.22 0.11 0 +soufflez souffler ver 28.33 83.65 2.6 0.07 imp:pre:2p;ind:pre:2p; +soufflons souffler ver 28.33 83.65 0.26 0.34 imp:pre:1p;ind:pre:1p; +soufflure soufflure nom f s 0 0.2 0 0.14 +soufflures soufflure nom f p 0 0.2 0 0.07 +soufflât souffler ver 28.33 83.65 0 0.2 sub:imp:3s; +soufflèrent souffler ver 28.33 83.65 0 0.47 ind:pas:3p; +soufflé souffler ver m s 28.33 83.65 3.4 7.64 par:pas; +soufflée souffler ver f s 28.33 83.65 0.43 0.95 par:pas; +soufflées souffler ver f p 28.33 83.65 0.11 0.54 par:pas; +soufflés soufflé nom m p 1.33 1.22 0.47 0 +souffraient souffrir ver 113.83 119.26 0.25 2.43 ind:imp:3p; +souffrais souffrir ver 113.83 119.26 0.86 4.26 ind:imp:1s;ind:imp:2s; +souffrait souffrir ver 113.83 119.26 4.14 18.18 ind:imp:3s; +souffrance souffrance nom f s 30.02 47.16 20.05 33.58 +souffrances souffrance nom f p 30.02 47.16 9.97 13.58 +souffrant souffrant adj m s 6.47 5.14 2.88 1.96 +souffrante souffrant adj f s 6.47 5.14 3.12 2.84 +souffrantes souffrant adj f p 6.47 5.14 0.03 0 +souffrants souffrant adj m p 6.47 5.14 0.44 0.34 +souffre souffrir ver 113.83 119.26 31.52 16.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +souffre_douleur souffre_douleur nom m 0.27 1.22 0.27 1.22 +souffrent souffrir ver 113.83 119.26 5.25 4.86 ind:pre:3p; +souffres souffrir ver 113.83 119.26 5.27 1.15 ind:pre:2s; +souffreteuse souffreteux adj f s 0.24 2.5 0.22 0.68 +souffreteuses souffreteux adj f p 0.24 2.5 0 0.14 +souffreteux souffreteux adj m 0.24 2.5 0.02 1.69 +souffrez souffrir ver 113.83 119.26 4.97 1.01 imp:pre:2p;ind:pre:2p; +souffriez souffrir ver 113.83 119.26 0.37 0.07 ind:imp:2p; +souffrions souffrir ver 113.83 119.26 0.12 0.2 ind:imp:1p; +souffrir souffrir ver 113.83 119.26 34.26 40.41 inf; +souffrira souffrir ver 113.83 119.26 1.77 0.74 ind:fut:3s; +souffrirai souffrir ver 113.83 119.26 0.79 0.47 ind:fut:1s; +souffriraient souffrir ver 113.83 119.26 0.04 0.14 cnd:pre:3p; +souffrirais souffrir ver 113.83 119.26 0.41 0.68 cnd:pre:1s;cnd:pre:2s; +souffrirait souffrir ver 113.83 119.26 0.34 1.42 cnd:pre:3s; +souffriras souffrir ver 113.83 119.26 1.56 0.41 ind:fut:2s; +souffrirent souffrir ver 113.83 119.26 0.04 0.61 ind:pas:3p; +souffrirez souffrir ver 113.83 119.26 0.25 0.14 ind:fut:2p; +souffririez souffrir ver 113.83 119.26 0.03 0.07 cnd:pre:2p; +souffririons souffrir ver 113.83 119.26 0 0.14 cnd:pre:1p; +souffrirons souffrir ver 113.83 119.26 0.44 0.07 ind:fut:1p; +souffriront souffrir ver 113.83 119.26 0.27 0.07 ind:fut:3p; +souffris souffrir ver 113.83 119.26 0.03 0.68 ind:pas:1s;ind:pas:2s; +souffrisse souffrir ver 113.83 119.26 0 0.14 sub:imp:1s; +souffrissent souffrir ver 113.83 119.26 0 0.14 sub:imp:3p; +souffrit souffrir ver 113.83 119.26 0.29 1.49 ind:pas:3s; +souffrons souffrir ver 113.83 119.26 1.06 0.74 imp:pre:1p;ind:pre:1p; +souffrît souffrir ver 113.83 119.26 0 0.74 sub:imp:3s; +soufi soufi adj m s 0.02 0.07 0.02 0 +soufis soufi nom m p 0.44 0 0.44 0 +soufrages soufrage nom m p 0 0.07 0 0.07 +soufre soufre nom m s 2.37 4.53 2.37 4.53 +soufré soufré adj m s 0.01 0.47 0.01 0.07 +soufrée soufré adj f s 0.01 0.47 0 0.2 +soufrées soufré adj f p 0.01 0.47 0 0.14 +soufrés soufré adj m p 0.01 0.47 0 0.07 +souhait souhait nom m s 10.41 8.65 5.69 6.22 +souhaita souhaiter ver 85.59 82.16 0.16 2.84 ind:pas:3s; +souhaitable souhaitable adj s 1.4 3.72 1.23 3.24 +souhaitables souhaitable adj p 1.4 3.72 0.17 0.47 +souhaitai souhaiter ver 85.59 82.16 0.02 0.74 ind:pas:1s; +souhaitaient souhaiter ver 85.59 82.16 0.63 2.03 ind:imp:3p; +souhaitais souhaiter ver 85.59 82.16 1.72 6.76 ind:imp:1s;ind:imp:2s; +souhaitait souhaiter ver 85.59 82.16 1.96 13.72 ind:imp:3s; +souhaitant souhaiter ver 85.59 82.16 0.72 2.84 par:pre; +souhaite souhaiter ver 85.59 82.16 39.98 17.3 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +souhaitent souhaiter ver 85.59 82.16 2.87 0.95 ind:pre:3p; +souhaiter souhaiter ver 85.59 82.16 8.87 10.41 inf;; +souhaitera souhaiter ver 85.59 82.16 0.1 0.14 ind:fut:3s; +souhaiterai souhaiter ver 85.59 82.16 0.4 0 ind:fut:1s; +souhaiteraient souhaiter ver 85.59 82.16 0.27 0.14 cnd:pre:3p; +souhaiterais souhaiter ver 85.59 82.16 3.11 1.55 cnd:pre:1s;cnd:pre:2s; +souhaiterait souhaiter ver 85.59 82.16 1.49 1.28 cnd:pre:3s; +souhaiteras souhaiter ver 85.59 82.16 0.11 0 ind:fut:2s; +souhaiterez souhaiter ver 85.59 82.16 0.22 0.2 ind:fut:2p; +souhaiteriez souhaiter ver 85.59 82.16 0.57 0.14 cnd:pre:2p; +souhaiterions souhaiter ver 85.59 82.16 0.34 0.07 cnd:pre:1p; +souhaiterons souhaiter ver 85.59 82.16 0.16 0 ind:fut:1p; +souhaiteront souhaiter ver 85.59 82.16 0 0.14 ind:fut:3p; +souhaites souhaiter ver 85.59 82.16 3.14 0.81 ind:pre:2s; +souhaitez souhaiter ver 85.59 82.16 7.19 1.55 imp:pre:2p;ind:pre:2p; +souhaitiez souhaiter ver 85.59 82.16 0.85 0.47 ind:imp:2p;sub:pre:2p; +souhaitions souhaiter ver 85.59 82.16 0.1 0.74 ind:imp:1p; +souhaitons souhaiter ver 85.59 82.16 4.28 1.96 imp:pre:1p;ind:pre:1p; +souhaits souhait nom m p 10.41 8.65 4.72 2.43 +souhaitâmes souhaiter ver 85.59 82.16 0 0.14 ind:pas:1p; +souhaitât souhaiter ver 85.59 82.16 0 0.2 sub:imp:3s; +souhaitèrent souhaiter ver 85.59 82.16 0.02 0.27 ind:pas:3p; +souhaité souhaiter ver m s 85.59 82.16 5.91 12.5 par:pas; +souhaitée souhaiter ver f s 85.59 82.16 0.07 1.55 par:pas; +souhaitées souhaiter ver f p 85.59 82.16 0.04 0.27 par:pas; +souhaités souhaiter ver m p 85.59 82.16 0.31 0.47 par:pas; +souilla souiller ver 6.52 15.81 0.1 0.07 ind:pas:3s; +souillage souillage nom m s 0 0.07 0 0.07 +souillaient souiller ver 6.52 15.81 0.01 0.2 ind:imp:3p; +souillait souiller ver 6.52 15.81 0.02 1.01 ind:imp:3s; +souillant souiller ver 6.52 15.81 0.04 0.2 par:pre; +souillarde souillard nom f s 0 2.03 0 2.03 +souille souiller ver 6.52 15.81 0.38 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +souillent souiller ver 6.52 15.81 0.07 0.54 ind:pre:3p; +souiller souiller ver 6.52 15.81 1.57 1.62 inf; +souillerai souiller ver 6.52 15.81 0.05 0.07 ind:fut:1s; +souilleraient souiller ver 6.52 15.81 0.01 0 cnd:pre:3p; +souillerait souiller ver 6.52 15.81 0.03 0.07 cnd:pre:3s; +souilleras souiller ver 6.52 15.81 0.16 0 ind:fut:2s; +souilleront souiller ver 6.52 15.81 0 0.07 ind:fut:3p; +souilles souiller ver 6.52 15.81 0.02 0 ind:pre:2s; +souillez souiller ver 6.52 15.81 0.16 0 imp:pre:2p;ind:pre:2p; +souillon souillon nom s 0.99 1.08 0.82 0.88 +souillonnes souillonner ver 0 0.07 0 0.07 ind:pre:2s; +souillons souillon nom p 0.99 1.08 0.17 0.2 +souillure souillure nom f s 0.79 2.91 0.45 1.49 +souillures souillure nom f p 0.79 2.91 0.35 1.42 +souillé souiller ver m s 6.52 15.81 2.29 4.19 par:pas; +souillée souiller ver f s 6.52 15.81 1.1 3.45 par:pas; +souillées souiller ver f p 6.52 15.81 0.06 1.76 par:pas; +souillés souiller ver m p 6.52 15.81 0.45 1.76 par:pas; +souk souk nom m s 0.81 2.64 0.81 1.49 +souks souk nom m p 0.81 2.64 0 1.15 +soul soul nom f s 1.71 0.2 1.71 0.2 +soulage soulager ver 21.57 29.12 4.1 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +soulagea soulager ver 21.57 29.12 0.01 0.68 ind:pas:3s; +soulageai soulager ver 21.57 29.12 0 0.14 ind:pas:1s; +soulageaient soulager ver 21.57 29.12 0.03 0.14 ind:imp:3p; +soulageait soulager ver 21.57 29.12 0.17 1.28 ind:imp:3s; +soulageant soulager ver 21.57 29.12 0.11 0.2 par:pre; +soulagement soulagement nom m s 4.94 21.22 4.84 21.22 +soulagements soulagement nom m p 4.94 21.22 0.1 0 +soulagent soulager ver 21.57 29.12 0.34 0.34 ind:pre:3p; +soulageons soulager ver 21.57 29.12 0.01 0.07 ind:pre:1p; +soulager soulager ver 21.57 29.12 6.62 6.49 inf; +soulagera soulager ver 21.57 29.12 0.59 0.41 ind:fut:3s; +soulagerai soulager ver 21.57 29.12 0.06 0 ind:fut:1s; +soulageraient soulager ver 21.57 29.12 0 0.07 cnd:pre:3p; +soulagerait soulager ver 21.57 29.12 0.78 0.54 cnd:pre:3s; +soulagerez soulager ver 21.57 29.12 0.15 0 ind:fut:2p; +soulages soulager ver 21.57 29.12 0.24 0 ind:pre:2s; +soulagez soulager ver 21.57 29.12 0.15 0 imp:pre:2p;ind:pre:2p; +soulageâmes soulager ver 21.57 29.12 0 0.07 ind:pas:1p; +soulagèrent soulager ver 21.57 29.12 0 0.2 ind:pas:3p; +soulagé soulager ver m s 21.57 29.12 4.67 10 par:pas; +soulagée soulager ver f s 21.57 29.12 2.98 4.53 par:pas; +soulagées soulager ver f p 21.57 29.12 0.04 0.14 par:pas; +soulagés soulager ver m p 21.57 29.12 0.53 1.22 par:pas; +soule soule adj m s 0.3 0 0.3 0 +souleva soulever ver 24.26 113.38 0.6 19.39 ind:pas:3s; +soulevai soulever ver 24.26 113.38 0 1.15 ind:pas:1s; +soulevaient soulever ver 24.26 113.38 0.23 4.8 ind:imp:3p; +soulevais soulever ver 24.26 113.38 0.1 0.34 ind:imp:1s;ind:imp:2s; +soulevait soulever ver 24.26 113.38 0.26 14.8 ind:imp:3s; +soulevant soulever ver 24.26 113.38 0.5 10.2 par:pre; +soulever soulever ver 24.26 113.38 5.92 17.16 inf; +soulevez soulever ver 24.26 113.38 2.44 0.54 imp:pre:2p;ind:pre:2p; +soulevions soulever ver 24.26 113.38 0 0.07 ind:imp:1p; +soulevons soulever ver 24.26 113.38 0.35 0.14 imp:pre:1p;ind:pre:1p; +soulevât soulever ver 24.26 113.38 0 0.14 sub:imp:3s; +soulevèrent soulever ver 24.26 113.38 0.02 1.96 ind:pas:3p; +soulevé soulever ver m s 24.26 113.38 3.04 11.08 par:pas; +soulevée soulever ver f s 24.26 113.38 0.56 5.54 par:pas; +soulevées soulever ver f p 24.26 113.38 0.02 1.08 par:pas; +soulevés soulever ver m p 24.26 113.38 0.54 2.16 par:pas; +soulier soulier nom m s 9.76 35.68 2.53 4.8 +souliers soulier nom m p 9.76 35.68 7.23 30.88 +souligna souligner ver 4.72 22.57 0 0.95 ind:pas:3s; +soulignai souligner ver 4.72 22.57 0 0.41 ind:pas:1s; +soulignaient souligner ver 4.72 22.57 0.1 1.28 ind:imp:3p; +soulignais souligner ver 4.72 22.57 0 0.2 ind:imp:1s; +soulignait souligner ver 4.72 22.57 0.04 2.84 ind:imp:3s; +soulignant souligner ver 4.72 22.57 0.27 2.3 par:pre; +souligne souligner ver 4.72 22.57 0.73 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soulignent souligner ver 4.72 22.57 0.14 0.74 ind:pre:3p; +souligner souligner ver 4.72 22.57 1.65 4.86 inf; +soulignera souligner ver 4.72 22.57 0 0.07 ind:fut:3s; +souligneraient souligner ver 4.72 22.57 0 0.07 cnd:pre:3p; +soulignerait souligner ver 4.72 22.57 0 0.07 cnd:pre:3s; +soulignez souligner ver 4.72 22.57 0.04 0.07 imp:pre:2p; +souligniez souligner ver 4.72 22.57 0.01 0 ind:imp:2p; +soulignions souligner ver 4.72 22.57 0 0.07 ind:imp:1p; +souligné souligner ver m s 4.72 22.57 1.41 2.91 par:pas; +soulignée souligner ver f s 4.72 22.57 0.01 1.08 par:pas; +soulignées souligner ver f p 4.72 22.57 0.02 0.81 par:pas; +soulignés souligner ver m p 4.72 22.57 0.29 1.22 par:pas; +soulève soulever ver 24.26 113.38 7.72 17.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soulèvement soulèvement nom m s 1.04 2.36 0.77 2.23 +soulèvements soulèvement nom m p 1.04 2.36 0.28 0.14 +soulèvent soulever ver 24.26 113.38 0.47 4.26 ind:pre:3p; +soulèvera soulever ver 24.26 113.38 0.22 0.2 ind:fut:3s; +soulèverai soulever ver 24.26 113.38 0.27 0.14 ind:fut:1s; +soulèveraient soulever ver 24.26 113.38 0 0.27 cnd:pre:3p; +soulèverais soulever ver 24.26 113.38 0.03 0.07 cnd:pre:1s; +soulèverait soulever ver 24.26 113.38 0.04 0.34 cnd:pre:3s; +soulèverez soulever ver 24.26 113.38 0.01 0 ind:fut:2p; +soulèveriez soulever ver 24.26 113.38 0.01 0 cnd:pre:2p; +soulèverons soulever ver 24.26 113.38 0.04 0 ind:fut:1p; +soulèveront soulever ver 24.26 113.38 0.28 0 ind:fut:3p; +soulèves soulever ver 24.26 113.38 0.57 0.07 ind:pre:2s; +soumet soumettre ver 17.51 37.57 0.88 1.49 ind:pre:3s; +soumets soumettre ver 17.51 37.57 1.89 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +soumettaient soumettre ver 17.51 37.57 0 0.41 ind:imp:3p; +soumettais soumettre ver 17.51 37.57 0.01 0.41 ind:imp:1s; +soumettait soumettre ver 17.51 37.57 0 1.96 ind:imp:3s; +soumettant soumettre ver 17.51 37.57 0.07 0.34 par:pre; +soumette soumettre ver 17.51 37.57 0.23 0.41 sub:pre:1s;sub:pre:3s; +soumettent soumettre ver 17.51 37.57 0.06 0.54 ind:pre:3p; +soumettez soumettre ver 17.51 37.57 0.25 0.2 imp:pre:2p;ind:pre:2p; +soumettions soumettre ver 17.51 37.57 0.01 0.14 ind:imp:1p; +soumettons soumettre ver 17.51 37.57 0.12 0 imp:pre:1p;ind:pre:1p; +soumettra soumettre ver 17.51 37.57 0.27 0.2 ind:fut:3s; +soumettrai soumettre ver 17.51 37.57 0.47 0.14 ind:fut:1s; +soumettraient soumettre ver 17.51 37.57 0 0.07 cnd:pre:3p; +soumettrais soumettre ver 17.51 37.57 0.02 0.2 cnd:pre:1s; +soumettrait soumettre ver 17.51 37.57 0.01 0.2 cnd:pre:3s; +soumettras soumettre ver 17.51 37.57 0.03 0 ind:fut:2s; +soumettre soumettre ver 17.51 37.57 5.84 9.26 inf; +soumettrez soumettre ver 17.51 37.57 0.05 0.07 ind:fut:2p; +soumettront soumettre ver 17.51 37.57 0.04 0.07 ind:fut:3p; +soumirent soumettre ver 17.51 37.57 0.21 0.2 ind:pas:3p; +soumis soumettre ver m 17.51 37.57 5.22 13.65 ind:pas:1s;par:pas;par:pas; +soumise soumettre ver f s 17.51 37.57 1.21 3.78 par:pas; +soumises soumettre ver f p 17.51 37.57 0.58 1.69 par:pas; +soumission soumission nom f s 1.63 10.95 1.63 10.27 +soumissionner soumissionner ver 0.01 0 0.01 0 inf; +soumissions soumission nom f p 1.63 10.95 0 0.68 +soumit soumettre ver 17.51 37.57 0.02 1.55 ind:pas:3s; +soumît soumettre ver 17.51 37.57 0 0.07 sub:imp:3s; +soupa souper ver 8.81 6.96 0 0.2 ind:pas:3s; +soupaient souper ver 8.81 6.96 0 0.2 ind:imp:3p; +soupais souper ver 8.81 6.96 0.11 0.14 ind:imp:1s; +soupait souper ver 8.81 6.96 0.23 0.2 ind:imp:3s; +soupant souper ver 8.81 6.96 0 0.14 par:pre; +soupape soupape nom f s 0.92 1.28 0.39 0.61 +soupapes soupape nom f p 0.92 1.28 0.54 0.68 +soupasse souper ver 8.81 6.96 0.1 0.07 sub:imp:1s; +soupe soupe nom f s 32.26 38.04 31.72 35.74 +soupent souper ver 8.81 6.96 0 0.07 ind:pre:3p; +soupente soupente nom f s 0.19 3.11 0.19 2.7 +soupentes soupente nom f p 0.19 3.11 0 0.41 +souper souper nom m s 6.48 7.7 6.39 6.82 +soupera souper ver 8.81 6.96 0.03 0.2 ind:fut:3s; +souperaient souper ver 8.81 6.96 0 0.07 cnd:pre:3p; +souperait souper ver 8.81 6.96 0 0.07 cnd:pre:3s; +souperons souper ver 8.81 6.96 0.04 0.07 ind:fut:1p; +soupers souper nom m p 6.48 7.7 0.09 0.88 +soupes soupe nom f p 32.26 38.04 0.54 2.3 +soupesa soupeser ver 0.34 5.14 0 0.81 ind:pas:3s; +soupesait soupeser ver 0.34 5.14 0 0.88 ind:imp:3s; +soupesant soupeser ver 0.34 5.14 0.02 0.34 par:pre; +soupeser soupeser ver 0.34 5.14 0.05 1.55 inf; +soupesez soupeser ver 0.34 5.14 0.06 0.07 imp:pre:2p;ind:pre:2p; +soupesé soupeser ver m s 0.34 5.14 0.02 0.07 par:pas; +soupesée soupeser ver f s 0.34 5.14 0 0.14 par:pas; +soupesés soupeser ver m p 0.34 5.14 0 0.07 par:pas; +soupeur soupeur nom m s 0 0.2 0 0.07 +soupeurs soupeur nom m p 0 0.2 0 0.14 +soupez souper ver 8.81 6.96 0.06 0 imp:pre:2p;ind:pre:2p; +soupier soupier adj m s 0 2.57 0 2.57 +soupir soupir nom m s 7.85 35.95 4.75 26.82 +soupira soupirer ver 9.81 65.47 0.03 30.74 ind:pas:3s; +soupirai soupirer ver 9.81 65.47 0 1.15 ind:pas:1s; +soupiraient soupirer ver 9.81 65.47 0 0.41 ind:imp:3p; +soupirail soupirail nom m s 0.16 3.24 0.16 2.84 +soupirais soupirer ver 9.81 65.47 0.01 0.47 ind:imp:1s;ind:imp:2s; +soupirait soupirer ver 9.81 65.47 0.13 6.96 ind:imp:3s; +soupirant soupirant nom m s 0.96 2.23 0.61 1.55 +soupirants soupirant nom m p 0.96 2.23 0.35 0.68 +soupiraux soupirail nom m p 0.16 3.24 0 0.41 +soupire soupirer ver 9.81 65.47 6.71 10.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupirent soupirer ver 9.81 65.47 0.19 0.27 ind:pre:3p; +soupirer soupirer ver 9.81 65.47 0.99 2.91 inf; +soupirerait soupirer ver 9.81 65.47 0 0.07 cnd:pre:3s; +soupires soupirer ver 9.81 65.47 0.36 0.34 ind:pre:2s; +soupirez soupirer ver 9.81 65.47 0.38 0.2 imp:pre:2p;ind:pre:2p; +soupirions soupirer ver 9.81 65.47 0 0.07 ind:imp:1p; +soupirons soupirer ver 9.81 65.47 0 0.14 ind:pre:1p; +soupirs soupir nom m p 7.85 35.95 3.1 9.12 +soupirât soupirer ver 9.81 65.47 0 0.2 sub:imp:3s; +soupirèrent soupirer ver 9.81 65.47 0 0.2 ind:pas:3p; +soupiré soupirer ver m s 9.81 65.47 0.69 5.47 par:pas; +soupière soupière nom f s 0.1 2.43 0.07 2.23 +soupières soupière nom f p 0.1 2.43 0.02 0.2 +souple souple adj s 4.22 27.23 3.21 20 +souplement souplement adv 0 1.55 0 1.55 +souples souple adj p 4.22 27.23 1.02 7.23 +souplesse souplesse nom f s 1.28 9.86 1.28 9.73 +souplesses souplesse nom f p 1.28 9.86 0 0.14 +soupons souper ver 8.81 6.96 0.13 0.14 imp:pre:1p;ind:pre:1p; +soupâmes souper ver 8.81 6.96 0 0.07 ind:pas:1p; +soupçon soupçon nom m s 15.53 23.58 5.75 15.61 +soupçonna soupçonner ver 19.88 34.59 0.04 0.54 ind:pas:3s; +soupçonnable soupçonnable adj s 0 0.07 0 0.07 +soupçonnai soupçonner ver 19.88 34.59 0 0.27 ind:pas:1s; +soupçonnaient soupçonner ver 19.88 34.59 0.34 1.08 ind:imp:3p; +soupçonnais soupçonner ver 19.88 34.59 0.83 3.11 ind:imp:1s;ind:imp:2s; +soupçonnait soupçonner ver 19.88 34.59 0.65 5.14 ind:imp:3s; +soupçonnant soupçonner ver 19.88 34.59 0.12 0.74 par:pre; +soupçonne soupçonner ver 19.88 34.59 6.25 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupçonnent soupçonner ver 19.88 34.59 0.79 0.61 ind:pre:3p; +soupçonner soupçonner ver 19.88 34.59 2.82 7.84 inf; +soupçonnera soupçonner ver 19.88 34.59 0.58 0.14 ind:fut:3s; +soupçonnerais soupçonner ver 19.88 34.59 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +soupçonnerait soupçonner ver 19.88 34.59 0.32 0.41 cnd:pre:3s; +soupçonneriez soupçonner ver 19.88 34.59 0.01 0.07 cnd:pre:2p; +soupçonneront soupçonner ver 19.88 34.59 0.19 0.07 ind:fut:3p; +soupçonnes soupçonner ver 19.88 34.59 0.48 0.34 ind:pre:2s; +soupçonneuse soupçonneux adj f s 1.25 6.22 0.3 1.08 +soupçonneuses soupçonneux adj f p 1.25 6.22 0 0.2 +soupçonneux soupçonneux adj m 1.25 6.22 0.95 4.93 +soupçonnez soupçonner ver 19.88 34.59 1.32 0.2 imp:pre:2p;ind:pre:2p; +soupçonniez soupçonner ver 19.88 34.59 0.41 0.2 ind:imp:2p; +soupçonnions soupçonner ver 19.88 34.59 0.16 0.14 ind:imp:1p; +soupçonnons soupçonner ver 19.88 34.59 0.15 0.27 ind:pre:1p; +soupçonnât soupçonner ver 19.88 34.59 0 0.2 sub:imp:3s; +soupçonnèrent soupçonner ver 19.88 34.59 0.01 0.14 ind:pas:3p; +soupçonné soupçonner ver m s 19.88 34.59 3.49 4.86 par:pas; +soupçonnée soupçonner ver f s 19.88 34.59 0.64 1.28 par:pas; +soupçonnées soupçonner ver f p 19.88 34.59 0.03 0.27 par:pas; +soupçonnés soupçonner ver m p 19.88 34.59 0.22 0.47 par:pas; +soupçons soupçon nom m p 15.53 23.58 9.78 7.97 +soupèrent souper ver 8.81 6.96 0.01 0.2 ind:pas:3p; +soupèse soupeser ver 0.34 5.14 0.19 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupèserait soupeser ver 0.34 5.14 0 0.07 cnd:pre:3s; +soupé souper ver m s 8.81 6.96 1.73 0.95 par:pas; +souquaient souquer ver 0.43 0.2 0 0.07 ind:imp:3p; +souque souquer ver 0.43 0.2 0.01 0.07 imp:pre:2s;ind:pre:3s; +souquenille souquenille nom f s 0 0.41 0 0.27 +souquenilles souquenille nom f p 0 0.41 0 0.14 +souquer souquer ver 0.43 0.2 0.01 0 inf; +souquez souquer ver 0.43 0.2 0.4 0 imp:pre:2p; +souqué souquer ver m s 0.43 0.2 0.01 0.07 par:pas; +sourate sourate nom f s 0.14 0.2 0.14 0.14 +sourates sourate nom f p 0.14 0.2 0 0.07 +source source nom f s 46.44 49.19 37.34 35.41 +sources source nom f p 46.44 49.19 9.11 13.78 +sourcier sourcier nom m s 0.4 0.81 0.4 0.74 +sourciers sourcier nom m p 0.4 0.81 0 0.07 +sourcil sourcil nom m s 5.85 47.64 1.42 8.65 +sourcilière sourcilier adj f s 0.2 1.62 0.2 0.95 +sourcilières sourcilier adj f p 0.2 1.62 0 0.68 +sourcilla sourciller ver 0.61 2.09 0 0.34 ind:pas:3s; +sourcillai sourciller ver 0.61 2.09 0 0.07 ind:pas:1s; +sourcille sourciller ver 0.61 2.09 0 0.07 ind:pre:3s; +sourciller sourciller ver 0.61 2.09 0.54 1.49 inf; +sourcilleuse sourcilleux adj f s 0.01 1.96 0 0.61 +sourcilleuses sourcilleux adj f p 0.01 1.96 0 0.2 +sourcilleux sourcilleux adj m 0.01 1.96 0.01 1.15 +sourcillé sourciller ver m s 0.61 2.09 0.07 0.14 par:pas; +sourcils sourcil nom m p 5.85 47.64 4.43 38.99 +sourd sourd adj m s 25.69 50.68 16.96 19.73 +sourd_muet sourd_muet adj m s 0.78 0.2 0.77 0.2 +sourdaient sourdaient ver 0 0.2 0 0.2 inf; +sourdait sourdait ver 0 1.08 0 1.08 inf; +sourdant sourdre ver 0.42 5.47 0 0.2 par:pre; +sourde sourd adj f s 25.69 50.68 5.58 21.76 +sourde_muette sourde_muette nom f s 0.24 0.07 0.24 0.07 +sourdement sourdement adv 0 6.55 0 6.55 +sourdes sourd adj f p 25.69 50.68 0.48 2.91 +sourdine sourdine nom f s 0.73 6.49 0.73 6.49 +sourdingue sourdingue adj s 0.1 1.42 0.1 1.28 +sourdingues sourdingue adj m p 0.1 1.42 0 0.14 +sourdre sourdre ver 0.42 5.47 0 3.45 inf; +sourdront sourdre ver 0.42 5.47 0 0.07 ind:fut:3p; +sourds sourd adj m p 25.69 50.68 2.66 6.28 +sourd_muet sourd_muet nom m p 1.48 1.01 0.88 0.68 +souri sourire ver m s 53.97 262.91 3.19 12.97 par:pas; +souriaient sourire ver 53.97 262.91 0.39 5.34 ind:imp:3p; +souriais sourire ver 53.97 262.91 0.67 3.31 ind:imp:1s;ind:imp:2s; +souriait sourire ver 53.97 262.91 2 44.26 ind:imp:3s; +souriant souriant adj m s 4.02 23.45 2.22 9.46 +souriante souriant adj f s 4.02 23.45 1.07 10.95 +souriantes souriant adj f p 4.02 23.45 0.25 1.28 +souriants souriant adj m p 4.02 23.45 0.47 1.76 +souriceau souriceau nom m s 0.35 0.41 0.35 0.34 +souriceaux souriceau nom m p 0.35 0.41 0 0.07 +souricière souricière nom f s 0.41 1.35 0.38 1.28 +souricières souricière nom f p 0.41 1.35 0.04 0.07 +sourie sourire ver 53.97 262.91 0.5 0.14 sub:pre:1s;sub:pre:3s; +sourient sourire ver 53.97 262.91 1.49 3.38 ind:pre:3p; +souries sourire ver 53.97 262.91 0.09 0 sub:pre:2s; +souriez sourire ver 53.97 262.91 10 0.88 imp:pre:2p;ind:pre:2p; +souriions sourire ver 53.97 262.91 0 0.2 ind:imp:1p; +sourions sourire ver 53.97 262.91 0.08 0.34 imp:pre:1p;ind:pre:1p; +sourira sourire ver 53.97 262.91 0.46 0.41 ind:fut:3s; +sourirai sourire ver 53.97 262.91 0.35 0.07 ind:fut:1s; +souriraient sourire ver 53.97 262.91 0.01 0.14 cnd:pre:3p; +sourirais sourire ver 53.97 262.91 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +sourirait sourire ver 53.97 262.91 0.04 0.88 cnd:pre:3s; +souriras sourire ver 53.97 262.91 0.2 0 ind:fut:2s; +sourire sourire nom m s 36.08 215.34 33.79 196.55 +sourirent sourire ver 53.97 262.91 0 2.03 ind:pas:3p; +sourires sourire nom m p 36.08 215.34 2.29 18.78 +sourirons sourire ver 53.97 262.91 0.02 0 ind:fut:1p; +souriront sourire ver 53.97 262.91 0.02 0 ind:fut:3p; +souris souris nom 21.94 22.57 21.94 22.57 +sourit sourire ver 53.97 262.91 11.7 95.74 ind:pre:3s;ind:pas:3s; +sournois sournois adj m 2.64 16.89 1.87 8.92 +sournoise sournois adj f s 2.64 16.89 0.72 6.28 +sournoisement sournoisement adv 0.12 4.8 0.12 4.8 +sournoiserie sournoiserie nom f s 0.04 0.95 0.04 0.61 +sournoiseries sournoiserie nom f p 0.04 0.95 0 0.34 +sournoises sournois adj f p 2.64 16.89 0.04 1.69 +sourîmes sourire ver 53.97 262.91 0 0.07 ind:pas:1p; +sourît sourire ver 53.97 262.91 0 0.2 sub:imp:3s; +sous sous pre 315.49 1032.7 315.49 1032.7 +sous_alimentation sous_alimentation nom f s 0.03 0.27 0.03 0.27 +sous_alimenter sous_alimenter ver m s 0.04 0 0.02 0 par:pas; +sous_alimenté sous_alimenté adj f s 0.04 0.2 0.04 0.07 +sous_alimenté sous_alimenté nom m p 0.01 0.27 0.01 0.14 +sous_bibliothécaire sous_bibliothécaire nom s 0 0.47 0 0.47 +sous_bois sous_bois nom m 0.49 7.57 0.49 7.57 +sous_chef sous_chef nom m s 0.73 0.88 0.69 0.74 +sous_chef sous_chef nom m p 0.73 0.88 0.04 0.14 +sous_classe sous_classe nom f s 0.01 0 0.01 0 +sous_clavier sous_clavier adj f s 0.28 0 0.28 0 +sous_comité sous_comité nom m s 0.26 0.07 0.26 0.07 +sous_commission sous_commission nom f s 0.18 0.07 0.18 0.07 +sous_continent sous_continent nom m s 0.06 0.07 0.05 0.07 +sous_continent sous_continent nom m p 0.06 0.07 0.01 0 +sous_couche sous_couche nom f s 0.03 0 0.03 0 +sous_cul sous_cul nom m s 0 0.07 0 0.07 +sous_cutané sous_cutané adj m s 0.28 0.07 0.1 0 +sous_cutané sous_cutané adj f s 0.28 0.07 0.1 0 +sous_cutané sous_cutané adj f p 0.28 0.07 0.05 0.07 +sous_cutané sous_cutané adj m p 0.28 0.07 0.03 0 +sous_diacre sous_diacre nom m s 0 0.07 0 0.07 +sous_directeur sous_directeur nom m s 0.66 1.96 0.63 1.82 +sous_directeur sous_directeur nom m p 0.66 1.96 0 0.07 +sous_directeur sous_directeur nom f s 0.66 1.96 0.03 0.07 +sous_division sous_division nom f s 0.04 0 0.04 0 +sous_dominante sous_dominante nom f s 0.01 0.07 0.01 0.07 +sous_développement sous_développement nom m s 0.3 0.27 0.3 0.27 +sous_développé sous_développé adj m s 0.31 0.68 0.09 0.27 +sous_développé sous_développé adj f s 0.31 0.68 0.02 0 +sous_développé sous_développé adj f p 0.31 0.68 0.02 0.07 +sous_développé sous_développé adj m p 0.31 0.68 0.19 0.34 +sous_effectif sous_effectif nom m s 0.11 0 0.1 0 +sous_effectif sous_effectif nom m p 0.11 0 0.01 0 +sous_emploi sous_emploi nom m s 0 0.07 0 0.07 +sous_ensemble sous_ensemble nom m s 0.08 0.14 0.08 0.14 +sous_entendre sous_entendre ver 2.03 1.82 0.39 0.2 ind:pre:3s; +sous_entendre sous_entendre ver 2.03 1.82 0.17 0 ind:imp:1s; +sous_entendre sous_entendre ver 2.03 1.82 0.03 0.54 ind:imp:3s; +sous_entendre sous_entendre ver 2.03 1.82 0.01 0.47 par:pre; +sous_entendre sous_entendre ver 2.03 1.82 0.01 0 ind:pre:3p; +sous_entendre sous_entendre ver 2.03 1.82 0.42 0 ind:pre:2p; +sous_entendre sous_entendre ver 2.03 1.82 0.1 0 ind:imp:2p; +sous_entendre sous_entendre ver 2.03 1.82 0.01 0 cnd:pre:3s; +sous_entendre sous_entendre ver 2.03 1.82 0.11 0.27 inf; +sous_entendre sous_entendre ver 2.03 1.82 0.39 0 ind:pre:1s;ind:pre:2s; +sous_entendre sous_entendre ver m s 2.03 1.82 0.38 0.14 par:pas; +sous_entendu sous_entendu adj f s 0.06 0.68 0.01 0.07 +sous_entendu sous_entendu nom m p 0.77 5.34 0.45 3.38 +sous_espace sous_espace nom m s 0.22 0 0.22 0 +sous_espèce sous_espèce nom f s 0.11 0 0.11 0 +sous_estimer sous_estimer ver 7.27 1.08 0.05 0 ind:imp:1s; +sous_estimer sous_estimer ver 7.27 1.08 0.03 0.34 ind:imp:3s; +sous_estimation sous_estimation nom f s 0.06 0.07 0.06 0.07 +sous_estimer sous_estimer ver 7.27 1.08 1.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sous_estimer sous_estimer ver 7.27 1.08 0.22 0 ind:pre:3p; +sous_estimer sous_estimer ver 7.27 1.08 1.05 0.54 inf; +sous_estimer sous_estimer ver 7.27 1.08 0.03 0 ind:fut:1s; +sous_estimer sous_estimer ver 7.27 1.08 0.72 0 ind:pre:2s; +sous_estimer sous_estimer ver 7.27 1.08 1.53 0 imp:pre:2p;ind:pre:2p; +sous_estimer sous_estimer ver 7.27 1.08 0.11 0 imp:pre:1p;ind:pre:1p; +sous_estimer sous_estimer ver m s 7.27 1.08 1.71 0.14 par:pas; +sous_estimer sous_estimer ver f s 7.27 1.08 0.14 0 par:pas; +sous_estimer sous_estimer ver f p 7.27 1.08 0.07 0 par:pas; +sous_estimer sous_estimer ver m p 7.27 1.08 0.09 0 par:pas; +sous_exposer sous_exposer ver m s 0.02 0 0.01 0 par:pas; +sous_exposer sous_exposer ver f p 0.02 0 0.01 0 par:pas; +sous_fifre sous_fifre nom m s 0.72 0.41 0.45 0.2 +sous_fifre sous_fifre nom m p 0.72 0.41 0.27 0.2 +sous_garde sous_garde nom f s 0.01 0.07 0.01 0.07 +sous_genre sous_genre nom m s 0.02 0 0.02 0 +sous_gorge sous_gorge nom f 0 0.07 0 0.07 +sous_groupe sous_groupe nom m s 0.01 0 0.01 0 +sous_homme sous_homme nom m s 0.2 0.61 0.16 0 +sous_homme sous_homme nom m p 0.2 0.61 0.05 0.61 +sous_humanité sous_humanité nom f s 0.01 0.2 0.01 0.2 +sous_intendant sous_intendant nom m s 0.3 0 0.1 0 +sous_intendant sous_intendant nom m p 0.3 0 0.2 0 +sous_jacent sous_jacent adj m s 0.81 0.34 0.19 0.2 +sous_jacent sous_jacent adj f s 0.81 0.34 0.22 0.07 +sous_jacent sous_jacent adj f p 0.81 0.34 0.01 0.07 +sous_jacent sous_jacent adj m p 0.81 0.34 0.39 0 +sous_lieutenant sous_lieutenant nom m s 0.81 5.61 0.76 4.93 +sous_lieutenant sous_lieutenant nom m p 0.81 5.61 0.05 0.68 +sous_locataire sous_locataire nom s 0.02 0.14 0.02 0 +sous_locataire sous_locataire nom p 0.02 0.14 0 0.14 +sous_location sous_location nom f s 0.09 0.07 0.06 0.07 +sous_location sous_location nom f p 0.09 0.07 0.03 0 +sous_louer sous_louer ver 0.63 0.47 0 0.07 ind:pas:3s; +sous_louer sous_louer ver 0.63 0.47 0.03 0 ind:imp:3s; +sous_louer sous_louer ver 0.63 0.47 0.21 0 ind:pre:1s;ind:pre:3s; +sous_louer sous_louer ver 0.63 0.47 0.17 0.14 inf; +sous_louer sous_louer ver 0.63 0.47 0.11 0 ind:fut:1s; +sous_louer sous_louer ver 0.63 0.47 0.02 0 ind:pre:2p; +sous_louer sous_louer ver 0.63 0.47 0 0.07 ind:pas:3p; +sous_louer sous_louer ver m s 0.63 0.47 0.08 0.2 par:pas; +sous_main sous_main nom m s 0.28 1.96 0.28 1.96 +sous_marin sous_marin nom m s 11.14 6.42 9.07 2.7 +sous_marin sous_marin adj f s 4.47 5 1.06 1.89 +sous_marin sous_marin adj f p 4.47 5 0.41 0.88 +sous_marinier sous_marinier nom m s 0.26 0 0.04 0 +sous_marinier sous_marinier nom m p 0.26 0 0.22 0 +sous_marin sous_marin nom m p 11.14 6.42 2.07 3.72 +sous_marque sous_marque nom f s 0.01 0.14 0.01 0.07 +sous_marque sous_marque nom f p 0.01 0.14 0 0.07 +sous_maîtresse sous_maîtresse nom f s 0.07 0.2 0.07 0.2 +sous_merde sous_merde nom f s 0.59 0.14 0.54 0.14 +sous_merde sous_merde nom f p 0.59 0.14 0.05 0 +sous_ministre sous_ministre nom m s 0.17 0.07 0.17 0.07 +sous_off sous_off nom m s 0.14 4.26 0.11 2.16 +sous_officier sous_officier nom m s 0.65 9.53 0.28 4.8 +sous_officier sous_officier nom m p 0.65 9.53 0.36 4.73 +sous_off sous_off nom m p 0.14 4.26 0.03 2.09 +sous_ordre sous_ordre nom m s 0.01 0.61 0.01 0.54 +sous_ordre sous_ordre nom m p 0.01 0.61 0 0.07 +sous_payer sous_payer ver 0.28 0.07 0.04 0 inf; +sous_payer sous_payer ver m s 0.28 0.07 0.14 0.07 par:pas; +sous_payer sous_payer ver m p 0.28 0.07 0.1 0 par:pas; +sous_pied sous_pied nom m s 0 0.2 0 0.07 +sous_pied sous_pied nom m p 0 0.2 0 0.14 +sous_plat sous_plat nom m s 0 0.07 0 0.07 +sous_prieur sous_prieur pre 0 0.47 0 0.47 +sous_produit sous_produit nom m s 0.48 0.54 0.42 0.27 +sous_produit sous_produit nom m p 0.48 0.54 0.06 0.27 +sous_programme sous_programme nom m s 0.12 0 0.09 0 +sous_programme sous_programme nom m p 0.12 0 0.03 0 +sous_prolétaire sous_prolétaire nom s 0.11 0.07 0.11 0.07 +sous_prolétariat sous_prolétariat nom m s 0.34 0.27 0.34 0.27 +sous_préfecture sous_préfecture nom f s 0.17 1.62 0.03 1.35 +sous_préfecture sous_préfecture nom f p 0.17 1.62 0.14 0.27 +sous_préfet sous_préfet nom m s 0.02 1.01 0.02 0.95 +sous_préfet sous_préfet nom m p 0.02 1.01 0 0.07 +sous_pull sous_pull nom m p 0.01 0 0.01 0 +sous_qualifié sous_qualifié adj m s 0.04 0 0.03 0 +sous_qualifié sous_qualifié adj f s 0.04 0 0.01 0 +sous_secrétaire sous_secrétaire nom m s 0.65 1.15 0.65 0.74 +sous_secrétaire sous_secrétaire nom m p 0.65 1.15 0 0.41 +sous_secrétariat sous_secrétariat nom m s 0.1 0 0.1 0 +sous_secteur sous_secteur nom m s 0.02 0.27 0.02 0.27 +sous_section sous_section nom f s 0.09 0 0.09 0 +sous_sol sous_sol nom m s 13.5 10.54 12.8 8.31 +sous_sol sous_sol nom m p 13.5 10.54 0.7 2.23 +sous_station sous_station nom f s 0.17 0.07 0.17 0.07 +sous_système sous_système nom m s 0.04 0 0.04 0 +sous_tasse sous_tasse nom f s 0.11 0.2 0.11 0.14 +sous_tasse sous_tasse nom f p 0.11 0.2 0 0.07 +sous_tendre sous_tendre ver 0.07 0.54 0.02 0 ind:pre:3s; +sous_tendre sous_tendre ver 0.07 0.54 0 0.07 ind:imp:3p; +sous_tendre sous_tendre ver 0.07 0.54 0.01 0.2 ind:imp:3s; +sous_tendre sous_tendre ver 0.07 0.54 0.01 0.14 ind:pre:3p; +sous_tendre sous_tendre ver m s 0.07 0.54 0.03 0.07 par:pas; +sous_tendre sous_tendre ver f s 0.07 0.54 0 0.07 par:pas; +sous_tension sous_tension nom f s 0.03 0 0.03 0 +sous_titrage sous_titrage nom m s 54.64 0 54.64 0 +sous_titre sous_titre nom m s 23.09 0.95 0.83 0.68 +sous_titrer sous_titrer ver 5.81 0.14 0.01 0 inf; +sous_titre sous_titre nom m p 23.09 0.95 22.26 0.27 +sous_titrer sous_titrer ver m s 5.81 0.14 5.72 0 par:pas; +sous_titrer sous_titrer ver f s 5.81 0.14 0 0.07 par:pas; +sous_titrer sous_titrer ver m p 5.81 0.14 0.09 0.07 par:pas; +sous_traitance sous_traitance nom f s 0.04 0 0.04 0 +sous_traitant sous_traitant nom m s 0.23 0 0.1 0 +sous_traitant sous_traitant nom m p 0.23 0 0.13 0 +sous_traiter sous_traiter ver 0.13 0.14 0.04 0 ind:pre:3s; +sous_traiter sous_traiter ver 0.13 0.14 0.01 0 ind:pre:3p; +sous_traiter sous_traiter ver 0.13 0.14 0.06 0.07 inf; +sous_traiter sous_traiter ver m p 0.13 0.14 0 0.07 par:pas; +sous_ventrière sous_ventrière nom f s 0.03 0.47 0.03 0.47 +sous_verge sous_verge nom m 0 0.54 0 0.54 +sous_verre sous_verre nom m 0.06 0.2 0.06 0.2 +sous_vêtement sous_vêtement nom m s 6.57 2.77 0.33 0.41 +sous_vêtement sous_vêtement nom m p 6.57 2.77 6.24 2.36 +sous_équipé sous_équipé adj m p 0.07 0 0.07 0 +sous_évaluer sous_évaluer ver 0.1 0 0.01 0 ind:imp:3s; +sous_évaluer sous_évaluer ver m s 0.1 0 0.06 0 par:pas; +sous_évaluer sous_évaluer ver f p 0.1 0 0.02 0 par:pas; +souscripteur souscripteur nom m s 0.02 0.2 0.01 0 +souscripteurs souscripteur nom m p 0.02 0.2 0.01 0.2 +souscription souscription nom f s 0.16 0.41 0.14 0.27 +souscriptions souscription nom f p 0.16 0.41 0.03 0.14 +souscrira souscrire ver 0.95 3.11 0.04 0 ind:fut:3s; +souscrirai souscrire ver 0.95 3.11 0 0.07 ind:fut:1s; +souscrirait souscrire ver 0.95 3.11 0 0.07 cnd:pre:3s; +souscrire souscrire ver 0.95 3.11 0.2 0.88 inf; +souscris souscrire ver 0.95 3.11 0.27 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +souscrit souscrire ver m s 0.95 3.11 0.22 1.15 ind:pre:3s;par:pas; +souscrite souscrire ver f s 0.95 3.11 0.03 0.14 par:pas; +souscrites souscrire ver f p 0.95 3.11 0.01 0.14 par:pas; +souscrits souscrire ver m p 0.95 3.11 0 0.2 par:pas; +souscrivais souscrire ver 0.95 3.11 0.01 0.07 ind:imp:1s; +souscrivait souscrire ver 0.95 3.11 0 0.14 ind:imp:3s; +souscrivez souscrire ver 0.95 3.11 0.17 0 imp:pre:2p;ind:pre:2p; +souscrivons souscrire ver 0.95 3.11 0 0.07 ind:pre:1p; +soussigner sous-signer ver 0 0.07 0 0.07 inf; +soussigné soussigné adj m s 1.83 0.61 1.44 0.61 +soussignée soussigné adj f s 1.83 0.61 0.03 0 +soussignés soussigné adj m p 1.83 0.61 0.36 0 +soussou soussou nom s 0 0.54 0 0.47 +soussous soussou nom p 0 0.54 0 0.07 +soustraction soustraction nom f s 0.15 1.08 0.11 0.68 +soustractions soustraction nom f p 0.15 1.08 0.04 0.41 +soustrairait soustraire ver 2.17 7.84 0 0.07 cnd:pre:3s; +soustraire soustraire ver 2.17 7.84 1.72 4.73 inf; +soustrais soustraire ver 2.17 7.84 0.02 0 imp:pre:2s;ind:pre:1s; +soustrait soustraire ver m s 2.17 7.84 0.36 1.15 ind:pre:3s;par:pas; +soustraite soustraire ver f s 2.17 7.84 0 0.2 par:pas; +soustraites soustraire ver f p 2.17 7.84 0 0.07 par:pas; +soustraits soustraire ver m p 2.17 7.84 0.04 1.08 par:pas; +soustrayaient soustraire ver 2.17 7.84 0 0.07 ind:imp:3p; +soustrayait soustraire ver 2.17 7.84 0 0.27 ind:imp:3s; +soustrayant soustraire ver 2.17 7.84 0 0.2 par:pre; +soustrayez soustraire ver 2.17 7.84 0.03 0 imp:pre:2p; +soutachait soutacher ver 0 0.81 0 0.07 ind:imp:3s; +soutache soutache nom f s 0 0.14 0 0.07 +soutaches soutache nom f p 0 0.14 0 0.07 +soutaché soutacher ver m s 0 0.81 0 0.2 par:pas; +soutachée soutacher ver f s 0 0.81 0 0.27 par:pas; +soutachées soutacher ver f p 0 0.81 0 0.07 par:pas; +soutachés soutacher ver m p 0 0.81 0 0.2 par:pas; +soutane soutane nom f s 1.75 6.89 1.49 6.08 +soutanelle soutanelle nom f s 0 0.07 0 0.07 +soutanes soutane nom f p 1.75 6.89 0.26 0.81 +soute soute nom f s 2.62 2.16 2.33 0.95 +soutenable soutenable adj s 0 0.14 0 0.14 +soutenaient soutenir ver 35.56 61.22 0.34 2.77 ind:imp:3p; +soutenais soutenir ver 35.56 61.22 0.34 0.68 ind:imp:1s;ind:imp:2s; +soutenait soutenir ver 35.56 61.22 0.96 7.23 ind:imp:3s; +soutenance soutenance nom f s 0.03 0.14 0.03 0.14 +soutenant soutenir ver 35.56 61.22 0.27 3.31 par:pre; +souteneur souteneur nom m s 1.36 1.89 0.75 1.08 +souteneurs souteneur nom m p 1.36 1.89 0.61 0.81 +soutenez soutenir ver 35.56 61.22 1.7 0.27 imp:pre:2p;ind:pre:2p; +souteniez soutenir ver 35.56 61.22 0.14 0.07 ind:imp:2p; +soutenions soutenir ver 35.56 61.22 0.14 0.34 ind:imp:1p; +soutenir soutenir ver 35.56 61.22 10.17 18.45 inf; +soutenons soutenir ver 35.56 61.22 0.92 0 imp:pre:1p;ind:pre:1p; +soutenu soutenir ver m s 35.56 61.22 5.46 8.92 par:pas; +soutenue soutenir ver f s 35.56 61.22 1.36 3.45 par:pas; +soutenues soutenir ver f p 35.56 61.22 0.07 0.95 par:pas; +soutenus soutenir ver m p 35.56 61.22 0.45 1.69 par:pas; +souter souter ver 0.03 0 0.03 0 inf; +souterrain souterrain adj m s 4.88 13.04 2.63 4.86 +souterraine souterrain adj f s 4.88 13.04 0.98 3.72 +souterrainement souterrainement adv 0 0.27 0 0.27 +souterraines souterrain adj f p 4.88 13.04 0.4 2.23 +souterrains souterrain nom m p 2.9 5.07 1.6 1.82 +soutes soute nom f p 2.62 2.16 0.29 1.22 +soutien soutien nom m s 18.87 9.53 18.21 8.92 +soutien_gorge soutien_gorge nom m s 5.86 8.65 4.89 7.91 +soutiendra soutenir ver 35.56 61.22 0.58 0.34 ind:fut:3s; +soutiendrai soutenir ver 35.56 61.22 0.7 0.07 ind:fut:1s; +soutiendraient soutenir ver 35.56 61.22 0.07 0.2 cnd:pre:3p; +soutiendrais soutenir ver 35.56 61.22 0.09 0.27 cnd:pre:1s;cnd:pre:2s; +soutiendrait soutenir ver 35.56 61.22 0.1 0.54 cnd:pre:3s; +soutiendras soutenir ver 35.56 61.22 0.05 0 ind:fut:2s; +soutiendrez soutenir ver 35.56 61.22 0.07 0 ind:fut:2p; +soutiendriez soutenir ver 35.56 61.22 0.02 0 cnd:pre:2p; +soutiendrons soutenir ver 35.56 61.22 0.08 0.07 ind:fut:1p; +soutiendront soutenir ver 35.56 61.22 0.39 0.34 ind:fut:3p; +soutienne soutenir ver 35.56 61.22 0.43 0.41 sub:pre:1s;sub:pre:3s; +soutiennent soutenir ver 35.56 61.22 1.85 2.84 ind:pre:3p; +soutiennes soutenir ver 35.56 61.22 0.16 0 sub:pre:2s; +soutiens soutenir ver 35.56 61.22 3.34 1.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +soutien_gorge soutien_gorge nom m p 5.86 8.65 0.96 0.74 +soutient soutenir ver 35.56 61.22 5.14 4.59 ind:pre:3s; +soutier soutier nom m s 0.03 0.54 0.03 0.47 +soutiers soutier nom m p 0.03 0.54 0 0.07 +soutif soutif nom m s 2.11 0.2 1.81 0.14 +soutifs soutif nom m p 2.11 0.2 0.29 0.07 +soutinrent soutenir ver 35.56 61.22 0.14 0.27 ind:pas:3p; +soutins soutenir ver 35.56 61.22 0 0.07 ind:pas:1s; +soutint soutenir ver 35.56 61.22 0.02 1.76 ind:pas:3s; +soutirage soutirage nom m s 0 0.07 0 0.07 +soutiraient soutirer ver 2.32 1.82 0 0.07 ind:imp:3p; +soutire soutirer ver 2.32 1.82 0.14 0.14 ind:pre:1s;ind:pre:3s; +soutirent soutirer ver 2.32 1.82 0.03 0 ind:pre:3p; +soutirer soutirer ver 2.32 1.82 1.88 1.42 inf; +soutirerai soutirer ver 2.32 1.82 0.03 0 ind:fut:1s; +soutirez soutirer ver 2.32 1.82 0.02 0 ind:pre:2p; +soutiré soutirer ver m s 2.32 1.82 0.21 0.14 par:pas; +soutirée soutirer ver f s 2.32 1.82 0.01 0 par:pas; +soutirées soutirer ver f p 2.32 1.82 0 0.07 par:pas; +soutra soutra nom m s 0.2 0 0.2 0 +soutènement soutènement nom m s 0.04 0.54 0.04 0.54 +soutînt soutenir ver 35.56 61.22 0.01 0.07 sub:imp:3s; +souvenaient souvenir ver 315.05 215.41 0.1 2.16 ind:imp:3p; +souvenais souvenir ver 315.05 215.41 1.76 8.99 ind:imp:1s;ind:imp:2s; +souvenait souvenir ver 315.05 215.41 1.23 24.12 ind:imp:3s; +souvenance souvenance nom f s 0.03 0.81 0.03 0.47 +souvenances souvenance nom f p 0.03 0.81 0 0.34 +souvenant souvenir ver 315.05 215.41 0.26 3.72 par:pre; +souvenez souvenir ver 315.05 215.41 36.7 10.88 imp:pre:2p;ind:pre:2p; +souveniez souvenir ver 315.05 215.41 0.54 0.54 ind:imp:2p;sub:pre:2p; +souvenions souvenir ver 315.05 215.41 0.01 0.27 ind:imp:1p; +souvenir souvenir ver 315.05 215.41 31.36 38.65 inf; +souvenirs souvenir nom m p 63.24 197.03 32.79 90.34 +souvenons souvenir ver 315.05 215.41 0.97 0.27 imp:pre:1p;ind:pre:1p; +souvent souvent adv_sup 135.54 286.96 135.54 286.96 +souventefois souventefois adv 0 0.14 0 0.14 +souventes_fois souventes_fois adv 0 0.27 0 0.27 +souvenu souvenir ver m s 315.05 215.41 3.71 3.38 par:pas; +souvenue souvenir ver f s 315.05 215.41 0.89 1.35 par:pas; +souvenus souvenir ver m p 315.05 215.41 0.2 0 par:pas; +souverain souverain nom m s 5.33 8.18 3.97 4.19 +souveraine souverain adj f s 3.36 10 1.54 5.14 +souverainement souverainement adv 0.16 2.09 0.16 2.09 +souveraines souverain adj f p 3.36 10 0.02 0.27 +souveraineté souveraineté nom f s 0.63 10.81 0.63 10.74 +souverainetés souveraineté nom f p 0.63 10.81 0 0.07 +souverains souverain nom m p 5.33 8.18 0.43 2.03 +souviendra souvenir ver 315.05 215.41 3.56 1.76 ind:fut:3s; +souviendrai souvenir ver 315.05 215.41 5.67 1.69 ind:fut:1s; +souviendraient souvenir ver 315.05 215.41 0.05 0.54 cnd:pre:3p; +souviendrais souvenir ver 315.05 215.41 1.44 0.68 cnd:pre:1s;cnd:pre:2s; +souviendrait souvenir ver 315.05 215.41 0.6 1.76 cnd:pre:3s; +souviendras souvenir ver 315.05 215.41 2.79 0.68 ind:fut:2s; +souviendrez souvenir ver 315.05 215.41 0.73 0.34 ind:fut:2p; +souviendriez souvenir ver 315.05 215.41 0.14 0 cnd:pre:2p; +souviendrons souvenir ver 315.05 215.41 0.22 0.07 ind:fut:1p; +souviendront souvenir ver 315.05 215.41 0.73 0.68 ind:fut:3p; +souvienne souvenir ver 315.05 215.41 5.55 3.38 sub:pre:1s;sub:pre:3s; +souviennent souvenir ver 315.05 215.41 2.83 3.04 ind:pre:3p; +souviennes souvenir ver 315.05 215.41 1.58 0.27 sub:pre:2s; +souviens souvenir ver 315.05 215.41 198.3 72.84 imp:pre:2s;ind:pre:1s;ind:pre:2s; +souvient souvenir ver 315.05 215.41 12.6 15.68 ind:pre:3s; +souvinrent souvenir ver 315.05 215.41 0.01 0.2 ind:pas:3p; +souvins souvenir ver 315.05 215.41 0.31 2.91 ind:pas:1s; +souvinssent souvenir ver 315.05 215.41 0 0.07 sub:imp:3p; +souvint souvenir ver 315.05 215.41 0.23 13.72 ind:pas:3s; +souvlaki souvlaki nom m s 0.02 0.14 0.02 0.14 +souvînt souvenir ver 315.05 215.41 0 0.81 sub:imp:3s; +soviet soviet nom m s 2.54 7.7 0.73 2.43 +soviets soviet nom m p 2.54 7.7 1.81 5.27 +soviétique soviétique adj s 10.68 24.59 8.89 20.47 +soviétiques soviétique adj p 10.68 24.59 1.79 4.12 +soviétisation soviétisation nom f s 0 0.14 0 0.14 +soviétisme soviétisme nom m s 0 0.34 0 0.34 +soviétologues soviétologue nom p 0 0.07 0 0.07 +sovkhoze sovkhoze nom m s 0.01 0.07 0.01 0 +sovkhozes sovkhoze nom m p 0.01 0.07 0 0.07 +soya soya nom m s 0.09 0 0.09 0 +soyeuse soyeux adj f s 0.61 13.04 0.1 4.12 +soyeusement soyeusement adv 0 0.07 0 0.07 +soyeuses soyeux adj f p 0.61 13.04 0.04 1.76 +soyeux soyeux adj m 0.61 13.04 0.47 7.16 +soyez être aux 8074.24 6501.82 24.16 5.34 sub:pre:2p; +soyons être aux 8074.24 6501.82 4.79 3.11 sub:pre:1p; +soûl soûl adj m s 12.96 2.77 10.22 2.03 +soûlait soûler ver 6.13 2.43 0.14 0.14 ind:imp:3s; +soûlant soûler ver 6.13 2.43 0.02 0 par:pre; +soûlante soûlant adj f s 0.01 0.07 0 0.07 +soûlard soûlard nom m s 1.19 0.14 0.82 0.14 +soûlarde soûlard nom f s 1.19 0.14 0.23 0 +soûlards soûlard nom m p 1.19 0.14 0.14 0 +soûlaud soûlaud adj m s 0.01 0.2 0.01 0.14 +soûlauds soûlaud adj m p 0.01 0.2 0 0.07 +soûle soûl adj f s 12.96 2.77 1.96 0.68 +soûlent soûler ver 6.13 2.43 0.3 0.27 ind:pre:3p; +soûler soûler ver 6.13 2.43 2.54 0.81 inf; +soûlerais soûler ver 6.13 2.43 0.16 0 cnd:pre:1s; +soûlerait soûler ver 6.13 2.43 0 0.07 cnd:pre:3s; +soûlerie soûlerie nom f s 0.08 0.2 0.08 0.2 +soûlez soûler ver 6.13 2.43 0.22 0 imp:pre:2p;ind:pre:2p; +soûlographe soûlographe nom s 0 0.14 0 0.14 +soûlographie soûlographie nom f s 0 0.14 0 0.14 +soûlons soûler ver 6.13 2.43 0.01 0 imp:pre:1p; +soûlot soûlot nom m s 0.29 0.27 0.28 0.2 +soûlots soûlot nom m p 0.29 0.27 0.01 0.07 +soûls soûl adj m p 12.96 2.77 0.78 0.07 +soûlèrent soûler ver 6.13 2.43 0.01 0 ind:pas:3p; +soûlé soûler ver m s 6.13 2.43 0.85 0.27 par:pas; +soûlée soûler ver f s 6.13 2.43 0.43 0.07 par:pas; +soûlées soûler ver f p 6.13 2.43 0.03 0 par:pas; +soûlés soûler ver m p 6.13 2.43 0.14 0.34 par:pas; +spa spa nom m s 1.05 0 0.79 0 +spacieuse spacieux adj f s 2 4.26 0.68 1.62 +spacieuses spacieux adj f p 2 4.26 0.2 0.54 +spacieux spacieux adj m 2 4.26 1.12 2.09 +spadassin spadassin nom m s 0.02 1.15 0.02 0.68 +spadassins spadassin nom m p 0.02 1.15 0 0.47 +spadille spadille nom m s 0 0.07 0 0.07 +spaghetti spaghetti nom m s 7.02 2.97 3.73 1.89 +spaghettis spaghetti nom m p 7.02 2.97 3.29 1.08 +spahi spahi nom m s 0 2.3 0 0.41 +spahis spahi nom m p 0 2.3 0 1.89 +spamming spamming nom m s 0.01 0 0.01 0 +sparadrap sparadrap nom m s 1.78 1.96 1.66 1.89 +sparadraps sparadrap nom m p 1.78 1.96 0.12 0.07 +sparring_partner sparring_partner nom m s 0 0.07 0 0.07 +spartakistes spartakiste adj p 0.01 0 0.01 0 +sparte sparte nom f s 0 0.14 0 0.14 +sparterie sparterie nom f s 0 0.34 0 0.34 +spartiate spartiate adj s 0.6 0.41 0.5 0.34 +spartiates spartiate nom p 0.36 0.34 0.26 0.14 +spartéine spartéine nom f s 0.01 0 0.01 0 +spas spa nom m p 1.05 0 0.26 0 +spasme spasme nom m s 2.13 6.76 0.47 3.38 +spasmes spasme nom m p 2.13 6.76 1.66 3.38 +spasmodique spasmodique adj s 0.34 0.81 0.15 0.41 +spasmodiquement spasmodiquement adv 0.01 0.88 0.01 0.88 +spasmodiques spasmodique adj p 0.34 0.81 0.2 0.41 +spasmophile spasmophile adj m s 0.02 0.07 0.02 0.07 +spasmophilie spasmophilie nom f s 0.01 0.2 0.01 0.2 +spasticité spasticité nom f s 0.03 0 0.03 0 +spastique spastique adj f s 0.01 0 0.01 0 +spath spath nom m s 0.07 0 0.07 0 +spatial spatial adj m s 10.94 1.35 5.9 0.61 +spatiale spatial adj f s 10.94 1.35 3.42 0.41 +spatialement spatialement adv 0.01 0 0.01 0 +spatiales spatial adj f p 10.94 1.35 0.57 0.14 +spatiaux spatial adj m p 10.94 1.35 1.05 0.2 +spatio_temporel spatio_temporel adj m s 0.21 0.2 0.09 0.07 +spatio_temporel spatio_temporel adj f s 0.21 0.2 0.13 0.14 +spationaute spationaute nom s 0.09 0 0.09 0 +spatiotemporel spatiotemporel adj m s 0.05 0 0.05 0 +spatule spatule nom f s 0.45 1.82 0.44 1.62 +spatuler spatuler ver 0.01 0 0.01 0 inf; +spatules spatule nom f p 0.45 1.82 0.01 0.2 +spatulée spatulé adj f s 0.15 0.14 0.01 0 +spatulées spatulé adj f p 0.15 0.14 0.14 0.07 +spatulés spatulé adj m p 0.15 0.14 0 0.07 +speakeasy speakeasy nom m s 0.05 0.07 0.05 0.07 +speaker speaker nom m s 1.25 3.99 0.95 2.7 +speakerine speaker nom f s 1.25 3.99 0.15 0.34 +speakerines speaker nom f p 1.25 3.99 0.14 0.27 +speakers speaker nom m p 1.25 3.99 0.02 0.68 +species species nom m 0.1 0.07 0.1 0.07 +spectacle spectacle nom m s 55.19 73.78 51.14 66.76 +spectacles spectacle nom m p 55.19 73.78 4.05 7.03 +spectaculaire spectaculaire adj s 3.88 6.22 3.5 4.59 +spectaculairement spectaculairement adv 0.04 0.34 0.04 0.34 +spectaculaires spectaculaire adj p 3.88 6.22 0.37 1.62 +spectateur spectateur nom m s 8.42 21.69 2.5 6.49 +spectateurs spectateur nom m p 8.42 21.69 5.48 13.45 +spectatrice spectateur nom f s 8.42 21.69 0.43 1.08 +spectatrices spectateur nom f p 8.42 21.69 0.01 0.68 +spectral spectral adj m s 0.94 0.81 0.17 0.34 +spectrale spectral adj f s 0.94 0.81 0.58 0.14 +spectrales spectral adj f p 0.94 0.81 0.13 0.34 +spectraux spectral adj m p 0.94 0.81 0.05 0 +spectre spectre nom m s 4.25 6.96 3.87 4.73 +spectres spectre nom m p 4.25 6.96 0.37 2.23 +spectrogramme spectrogramme nom m s 0.03 0 0.03 0 +spectrographe spectrographe nom m s 0.05 0 0.05 0 +spectrographie spectrographie nom f s 0.14 0 0.14 0 +spectrographique spectrographique adj s 0.09 0 0.09 0 +spectrohéliographe spectrohéliographe nom m s 0.01 0 0.01 0 +spectromètre spectromètre nom m s 0.34 0 0.34 0 +spectrométrie spectrométrie nom f s 0.09 0 0.09 0 +spectrométrique spectrométrique adj f s 0.01 0 0.01 0 +spectrophotomètre spectrophotomètre nom m s 0.01 0 0.01 0 +spectroscope spectroscope nom m s 0.07 0 0.07 0 +spectroscopie spectroscopie nom f s 0.01 0 0.01 0 +speech speech nom m s 1.88 0.74 1.88 0.74 +speed speed nom m s 3.45 1.49 3.45 1.49 +speede speeder ver 0.33 0.54 0.01 0.07 ind:pre:1s;ind:pre:3s; +speeder speeder ver 0.33 0.54 0.2 0.07 inf; +speedes speeder ver 0.33 0.54 0.1 0.07 ind:pre:2s; +speedé speedé adj m s 0.21 0.61 0.04 0.07 +speedée speedé adj f s 0.21 0.61 0.01 0.14 +speedés speedé adj m p 0.21 0.61 0.16 0.41 +spencer spencer nom m s 0.04 0.27 0.03 0.2 +spencers spencer nom m p 0.04 0.27 0.02 0.07 +spenglérienne spenglérienne nom f s 0 0.07 0 0.07 +spermaceti spermaceti nom m s 0.08 0 0.08 0 +spermatique spermatique adj s 0.01 0.27 0.01 0.27 +spermato spermato nom m s 0.03 0.41 0.01 0.14 +spermatogenèse spermatogenèse nom f s 0.04 0 0.04 0 +spermatos spermato nom m p 0.03 0.41 0.02 0.27 +spermatozoïde spermatozoïde nom m s 0.51 0.74 0.23 0.14 +spermatozoïdes spermatozoïde nom m p 0.51 0.74 0.28 0.61 +sperme sperme nom m s 8.47 5.07 8.31 4.93 +spermes sperme nom m p 8.47 5.07 0.15 0.14 +spermicide spermicide nom m s 0.07 0.07 0.07 0.07 +spermogramme spermogramme nom m s 0.01 0 0.01 0 +spermophiles spermophile nom m p 0.01 0 0.01 0 +spetsnaz spetsnaz nom f p 0.02 0 0.02 0 +sphaigne sphaigne nom f s 0.01 0.07 0.01 0 +sphaignes sphaigne nom f p 0.01 0.07 0 0.07 +sphincter sphincter nom m s 0.34 1.01 0.31 0.14 +sphincters sphincter nom m p 0.34 1.01 0.02 0.88 +sphinge sphinge nom f s 0 0.2 0 0.07 +sphinges sphinge nom f p 0 0.2 0 0.14 +sphinx sphinx nom m 1.27 3.04 1.27 3.04 +sphygmomanomètre sphygmomanomètre nom m s 0.02 0 0.02 0 +sphère sphère nom f s 3.9 9.19 2.48 5.74 +sphères sphère nom f p 3.9 9.19 1.42 3.45 +sphénoïde sphénoïde adj s 0.01 0 0.01 0 +sphéricité sphéricité nom f s 0 0.07 0 0.07 +sphérique sphérique adj s 0.26 1.62 0.23 1.01 +sphériquement sphériquement adv 0.01 0 0.01 0 +sphériques sphérique adj p 0.26 1.62 0.02 0.61 +sphéroïde sphéroïde nom m s 0.01 0.14 0 0.14 +sphéroïdes sphéroïde nom m p 0.01 0.14 0.01 0 +spi spi nom m s 0.01 0 0.01 0 +spic spic nom m s 0.14 0 0.05 0 +spica spica nom m s 0.08 0.14 0.08 0.14 +spics spic nom m p 0.14 0 0.09 0 +spicules spicule nom m p 0.01 0 0.01 0 +spider spider nom m s 3.27 0.41 3.27 0.41 +spin spin nom m s 0.14 0 0.14 0 +spina spina nom f s 0.05 0 0.05 0 +spina_bifida spina_bifida nom m s 0.04 0 0.04 0 +spina_ventosa spina_ventosa nom m s 0 0.07 0 0.07 +spinal spinal adj m s 0.64 0 0.5 0 +spinale spinal adj f s 0.64 0 0.13 0 +spinaux spinal adj m p 0.64 0 0.01 0 +spinnaker spinnaker nom m s 0.02 0.14 0.02 0.07 +spinnakers spinnaker nom m p 0.02 0.14 0 0.07 +spinozisme spinozisme nom m s 0 0.07 0 0.07 +spirale spirale nom f s 1.31 6.08 1.2 3.45 +spiraler spiraler ver 0 0.07 0 0.07 inf; +spirales spirale nom f p 1.31 6.08 0.11 2.64 +spiralé spiralé adj m s 0.01 0.2 0.01 0.07 +spiralées spiralé adj f p 0.01 0.2 0 0.07 +spiralés spiralé adj m p 0.01 0.2 0 0.07 +spire spire nom f s 0.23 0.81 0.06 0.14 +spires spire nom f p 0.23 0.81 0.17 0.68 +spirite spirite adj f s 0.03 0.07 0.02 0 +spirites spirite nom p 0.04 0.07 0.04 0 +spiritisme spiritisme nom m s 1.81 0.2 1.81 0.2 +spiritualisaient spiritualiser ver 0.1 0.74 0 0.07 ind:imp:3p; +spiritualise spiritualiser ver 0.1 0.74 0 0.2 ind:pre:3s; +spiritualiser spiritualiser ver 0.1 0.74 0 0.07 inf; +spiritualisme spiritualisme nom m s 0.14 0 0.14 0 +spiritualiste spiritualiste adj s 0.02 0.41 0.01 0.34 +spiritualistes spiritualiste nom p 0.02 0 0.02 0 +spiritualisé spiritualiser ver m s 0.1 0.74 0.1 0.41 par:pas; +spiritualité spiritualité nom f s 0.79 1.15 0.79 1.08 +spiritualités spiritualité nom f p 0.79 1.15 0 0.07 +spirituel spirituel adj m s 12.1 14.53 6.83 4.93 +spirituelle spirituel adj f s 12.1 14.53 3.89 6.15 +spirituellement spirituellement adv 0.78 0.81 0.78 0.81 +spirituelles spirituel adj f p 12.1 14.53 0.58 1.76 +spirituels spirituel adj m p 12.1 14.53 0.8 1.69 +spiritueux spiritueux nom m 0.41 0.61 0.41 0.61 +spirochète spirochète nom m s 0.02 0 0.02 0 +spirographe spirographe nom m s 0.03 0 0.03 0 +spiromètres spiromètre nom m p 0 0.07 0 0.07 +spiruline spiruline nom f s 0.01 0 0.01 0 +spirées spirée nom f p 0 0.07 0 0.07 +spitz spitz nom m s 0.01 0 0.01 0 +splash splash ono 0.27 0.27 0.27 0.27 +spleen spleen nom m s 0.11 1.55 0.11 1.35 +spleens spleen nom m p 0.11 1.55 0 0.2 +splendeur splendeur nom f s 5.02 14.59 4.67 10.95 +splendeurs splendeur nom f p 5.02 14.59 0.35 3.65 +splendide splendide adj s 16.73 10.14 15.45 7.3 +splendidement splendidement adv 0.21 0.07 0.21 0.07 +splendides splendide adj p 16.73 10.14 1.28 2.84 +splittaient splitter ver 0.01 0.07 0 0.07 ind:imp:3p; +splitter splitter ver 0.01 0.07 0.01 0 inf; +splénectomie splénectomie nom f s 0.09 0 0.09 0 +splénique splénique nom m s 0.05 0 0.05 0 +spoiler spoiler nom m s 0.01 0 0.01 0 +spoliait spolier ver 0.59 0.54 0 0.07 ind:imp:3s; +spoliation spoliation nom f s 0 0.61 0 0.47 +spoliations spoliation nom f p 0 0.61 0 0.14 +spolie spolier ver 0.59 0.54 0.14 0 ind:pre:3s; +spolier spolier ver 0.59 0.54 0.04 0 inf; +spolié spolier ver m s 0.59 0.54 0.29 0.14 par:pas; +spoliée spolier ver f s 0.59 0.54 0 0.07 par:pas; +spoliées spolié nom f p 0.01 0.07 0 0.07 +spoliés spolier ver m p 0.59 0.54 0.11 0.27 par:pas; +spondylarthrose spondylarthrose nom f s 0.01 0 0.01 0 +spondylite spondylite nom f s 0.01 0 0.01 0 +spondées spondée nom m p 0 0.07 0 0.07 +spongieuse spongieux adj f s 0.2 4.26 0.04 1.82 +spongieuses spongieux adj f p 0.2 4.26 0 0.34 +spongieux spongieux adj m 0.2 4.26 0.16 2.09 +spongiforme spongiforme adj f s 0.03 0 0.03 0 +sponsor sponsor nom m s 2.72 0.2 1.72 0.14 +sponsoring sponsoring nom m s 0.09 0.07 0.09 0.07 +sponsorisait sponsoriser ver 1.19 0 0.04 0 ind:imp:3s; +sponsorise sponsoriser ver 1.19 0 0.16 0 ind:pre:1s;ind:pre:3s; +sponsoriser sponsoriser ver 1.19 0 0.33 0 inf; +sponsorisera sponsoriser ver 1.19 0 0.03 0 ind:fut:3s; +sponsorisé sponsoriser ver m s 1.19 0 0.22 0 par:pas; +sponsorisée sponsoriser ver f s 1.19 0 0.37 0 par:pas; +sponsorisés sponsoriser ver m p 1.19 0 0.04 0 par:pas; +sponsors sponsor nom m p 2.72 0.2 1 0.07 +spontané spontané adj m s 4.14 7.97 2.02 2.77 +spontanée spontané adj f s 4.14 7.97 1.67 3.51 +spontanées spontané adj f p 4.14 7.97 0.31 0.81 +spontanéistes spontanéiste adj p 0 0.07 0 0.07 +spontanéité spontanéité nom f s 0.91 2.5 0.91 2.5 +spontanément spontanément adv 1.35 8.11 1.35 8.11 +spontanés spontané adj m p 4.14 7.97 0.15 0.88 +spoon spoon nom m s 0.31 0 0.31 0 +sporadique sporadique adj s 0.31 1.62 0.11 0.54 +sporadiquement sporadiquement adv 0.17 0.54 0.17 0.54 +sporadiques sporadique adj p 0.31 1.62 0.2 1.08 +spore spore nom f s 0.91 0.14 0.01 0 +spores spore nom f p 0.91 0.14 0.9 0.14 +sport sport nom m s 30.04 20.81 24.61 15.54 +sportif sportif adj m s 7.72 9.39 4.58 3.45 +sportifs sportif nom m p 3.11 4.8 1.46 2.16 +sportive sportif adj f s 7.72 9.39 1.4 2.91 +sportivement sportivement adv 0 0.2 0 0.2 +sportives sportif adj f p 7.72 9.39 0.49 0.88 +sportivité sportivité nom f s 0.02 0 0.02 0 +sports sport nom m p 30.04 20.81 5.42 5.27 +sportsman sportsman nom m s 0 0.61 0 0.41 +sportsmen sportsman nom m p 0 0.61 0 0.2 +sportswear sportswear nom m s 0 0.07 0 0.07 +spot spot nom m s 3.5 1.49 2.5 0.47 +spots spot nom m p 3.5 1.49 1 1.01 +spoutnik spoutnik nom m s 0.24 0.07 0.13 0.07 +spoutniks spoutnik nom m p 0.24 0.07 0.11 0 +sprat sprat nom m s 0.4 0.14 0.18 0 +sprats sprat nom m p 0.4 0.14 0.22 0.14 +spray spray nom m s 2.71 0.27 2.65 0.27 +sprays spray nom m p 2.71 0.27 0.06 0 +sprechgesang sprechgesang nom m s 0 0.07 0 0.07 +spring spring nom m s 0.83 0.68 0.83 0.68 +springer springer nom m s 0.59 0 0.59 0 +sprinkler sprinkler nom m s 0.05 0 0.02 0 +sprinklers sprinkler nom m p 0.05 0 0.03 0 +sprint sprint nom m s 0.89 2.23 0.85 1.82 +sprinta sprinter ver 0.41 0.68 0 0.07 ind:pas:3s; +sprintait sprinter ver 0.41 0.68 0 0.07 ind:imp:3s; +sprintant sprinter ver 0.41 0.68 0.06 0.07 par:pre; +sprinte sprinter ver 0.41 0.68 0.14 0.2 ind:pre:1s;ind:pre:3s; +sprinter sprinter nom m s 0.34 0.27 0.23 0.14 +sprinters sprinter nom m p 0.34 0.27 0.11 0.14 +sprinteur sprinteur nom m s 0.03 0 0.01 0 +sprinteurs sprinteur nom m p 0.03 0 0.02 0 +sprints sprint nom m p 0.89 2.23 0.04 0.41 +spruce spruce nom m s 0.04 0 0.04 0 +spumescent spumescent adj m s 0 0.07 0 0.07 +spumosité spumosité nom f s 0 0.07 0 0.07 +spécial spécial adj m s 83.73 31.22 48.12 14.46 +spéciale spécial adj f s 83.73 31.22 22.77 7.09 +spécialement spécialement adv 9.6 14.8 9.6 14.8 +spéciales spécial adj f p 83.73 31.22 6.48 5 +spécialisa spécialiser ver 4.05 5.68 0 0.14 ind:pas:3s; +spécialisaient spécialiser ver 4.05 5.68 0.1 0 ind:imp:3p; +spécialisait spécialiser ver 4.05 5.68 0 0.14 ind:imp:3s; +spécialisant spécialiser ver 4.05 5.68 0.02 0.07 par:pre; +spécialisation spécialisation nom f s 0.43 0.41 0.43 0.41 +spécialise spécialiser ver 4.05 5.68 0.44 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +spécialiser spécialiser ver 4.05 5.68 0.21 0.27 inf; +spécialiste spécialiste nom s 16.69 16.96 11.91 10.07 +spécialistes spécialiste nom p 16.69 16.96 4.79 6.89 +spécialisé spécialiser ver m s 4.05 5.68 1.8 2.43 par:pas; +spécialisée spécialiser ver f s 4.05 5.68 0.89 1.22 par:pas; +spécialisées spécialisé adj f p 1.6 5.41 0.14 1.08 +spécialisés spécialiser ver m p 4.05 5.68 0.51 0.95 par:pas; +spécialité spécialité nom f s 10.06 9.73 8.7 7.91 +spécialités spécialité nom f p 10.06 9.73 1.36 1.82 +spéciaux spécial adj m p 83.73 31.22 6.36 4.66 +spécieuse spécieux adj f s 0.11 0.41 0.04 0.07 +spécieusement spécieusement adv 0 0.07 0 0.07 +spécieuses spécieux adj f p 0.11 0.41 0.01 0.2 +spécieux spécieux adj m 0.11 0.41 0.06 0.14 +spécifiais spécifier ver 1.19 2.16 0 0.07 ind:imp:1s; +spécifiait spécifier ver 1.19 2.16 0.04 0.41 ind:imp:3s; +spécifiant spécifier ver 1.19 2.16 0 0.2 par:pre; +spécification spécification nom f s 0.48 0.07 0.02 0 +spécifications spécification nom f p 0.48 0.07 0.46 0.07 +spécificité spécificité nom f s 0.25 0.34 0.07 0.34 +spécificités spécificité nom f p 0.25 0.34 0.17 0 +spécifie spécifier ver 1.19 2.16 0.37 0.27 imp:pre:2s;ind:pre:3s; +spécifient spécifier ver 1.19 2.16 0 0.07 ind:pre:3p; +spécifier spécifier ver 1.19 2.16 0.19 0.27 inf; +spécifiera spécifier ver 1.19 2.16 0.03 0 ind:fut:3s; +spécifiez spécifier ver 1.19 2.16 0.02 0 imp:pre:2p; +spécifique spécifique adj s 4.8 1.96 3.59 1.42 +spécifiquement spécifiquement adv 1.18 1.22 1.18 1.22 +spécifiques spécifique adj p 4.8 1.96 1.22 0.54 +spécifié spécifier ver m s 1.19 2.16 0.53 0.88 par:pas; +spécifiée spécifié adj f s 0.15 0.07 0.03 0 +spécifiées spécifié adj f p 0.15 0.07 0.04 0 +spécifiés spécifié adj m p 0.15 0.07 0.02 0 +spécimen spécimen nom m s 5.26 3.31 3.46 1.49 +spécimens spécimen nom m p 5.26 3.31 1.8 1.82 +spéculaient spéculer ver 1.86 1.62 0.01 0.07 ind:imp:3p; +spéculaire spéculaire adj s 0 0.14 0 0.14 +spéculait spéculer ver 1.86 1.62 0 0.07 ind:imp:3s; +spéculant spéculer ver 1.86 1.62 0.03 0.34 par:pre; +spéculateur spéculateur nom m s 0.88 0.68 0.13 0.54 +spéculateurs spéculateur nom m p 0.88 0.68 0.64 0.07 +spéculatif spéculatif adj m s 0.08 0.61 0.02 0.14 +spéculatifs spéculatif adj m p 0.08 0.61 0.04 0.14 +spéculation spéculation nom f s 2.13 3.92 1.08 1.35 +spéculations spéculation nom f p 2.13 3.92 1.04 2.57 +spéculative spéculatif adj f s 0.08 0.61 0.02 0.27 +spéculatives spéculatif adj f p 0.08 0.61 0 0.07 +spéculatrice spéculateur nom f s 0.88 0.68 0.1 0 +spéculatrices spéculateur nom f p 0.88 0.68 0 0.07 +spécule spéculer ver 1.86 1.62 0.51 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +spéculent spéculer ver 1.86 1.62 0.15 0.14 ind:pre:3p; +spéculer spéculer ver 1.86 1.62 0.77 0.47 inf; +spéculeraient spéculer ver 1.86 1.62 0 0.07 cnd:pre:3p; +spéculez spéculer ver 1.86 1.62 0.34 0 imp:pre:2p;ind:pre:2p; +spéculoos spéculoos nom m 0.14 0 0.14 0 +spéculum spéculum nom m s 0.13 0.14 0.13 0.14 +spéculé spéculer ver m s 1.86 1.62 0.05 0.07 par:pas; +spéléo spéléo nom f s 0.27 0 0.27 0 +spéléologie spéléologie nom f s 0.02 0.07 0.02 0.07 +spéléologue spéléologue nom s 0.29 0.27 0.12 0.07 +spéléologues spéléologue nom p 0.29 0.27 0.17 0.2 +spéléotomie spéléotomie nom f s 0 0.14 0 0.14 +squale squale nom m s 0.47 0.2 0.23 0 +squales squale nom m p 0.47 0.2 0.24 0.2 +squames squame nom f p 0.01 0.14 0.01 0.14 +squameuse squameux adj f s 0.05 0.41 0.01 0.34 +squameux squameux adj m s 0.05 0.41 0.04 0.07 +square square nom m s 5.89 16.69 5.51 14.39 +squares square nom m p 5.89 16.69 0.38 2.3 +squash squash nom m s 0.73 0.07 0.73 0.07 +squat squat nom m s 1.23 0 1.2 0 +squats squat nom m p 1.23 0 0.03 0 +squattait squatter ver 1.28 0.41 0.04 0 ind:imp:3s; +squatte squatter ver 1.28 0.41 0.5 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +squatter squatter ver 1.28 0.41 0.43 0.07 inf; +squatteras squatter ver 1.28 0.41 0.01 0 ind:fut:2s; +squatters squatter nom m p 0.46 0.27 0.3 0.14 +squatteur squatteur nom m s 0.17 0 0.05 0 +squatteurs squatteur nom m p 0.17 0 0.12 0 +squattez squatter ver 1.28 0.41 0.03 0 ind:pre:2p; +squatté squatter ver m s 1.28 0.41 0.28 0 par:pas; +squattée squatter ver f s 1.28 0.41 0 0.07 par:pas; +squattées squatter ver f p 1.28 0.41 0 0.07 par:pas; +squattérisé squattériser ver m s 0 0.07 0 0.07 par:pas; +squattés squatter ver m p 1.28 0.41 0 0.07 par:pas; +squaw squaw nom f s 0 6.08 0 6.01 +squaws squaw nom f p 0 6.08 0 0.07 +squeeze squeeze nom m s 0.1 0.07 0.1 0.07 +squeezent squeezer ver 0.02 0 0.01 0 ind:pre:3p; +squeezer squeezer ver 0.02 0 0.01 0 inf; +squelette squelette nom m s 6.75 11.69 5.09 8.58 +squelettes squelette nom m p 6.75 11.69 1.65 3.11 +squelettique squelettique adj s 0.39 3.45 0.29 2.09 +squelettiques squelettique adj p 0.39 3.45 0.1 1.35 +squire squire nom m s 0.04 0.07 0.01 0.07 +squires squire nom m p 0.04 0.07 0.03 0 +sri_lankais sri_lankais adj m 0.01 0 0.01 0 +sri_lankais sri_lankais nom m 0.01 0 0.01 0 +stabat_mater stabat_mater nom m 0 0.07 0 0.07 +stabilisa stabiliser ver 4.84 1.42 0.01 0 ind:pas:3s; +stabilisait stabiliser ver 4.84 1.42 0 0.14 ind:imp:3s; +stabilisant stabilisant nom m s 0.02 0 0.02 0 +stabilisante stabilisant adj f s 0.03 0 0.03 0 +stabilisateur stabilisateur nom m s 0.84 0 0.41 0 +stabilisateurs stabilisateur nom m p 0.84 0 0.43 0 +stabilisation stabilisation nom f s 0.36 0.41 0.36 0.41 +stabilisatrice stabilisateur adj f s 0.35 0 0.03 0 +stabilise stabiliser ver 4.84 1.42 1.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stabilisent stabiliser ver 4.84 1.42 0.09 0.07 ind:pre:3p; +stabiliser stabiliser ver 4.84 1.42 1.65 0.61 inf; +stabilisez stabiliser ver 4.84 1.42 0.37 0 imp:pre:2p; +stabilisons stabiliser ver 4.84 1.42 0.02 0 imp:pre:1p;ind:pre:1p; +stabilisèrent stabiliser ver 4.84 1.42 0 0.07 ind:pas:3p; +stabilisé stabiliser ver m s 4.84 1.42 1.2 0.2 par:pas; +stabilisée stabiliser ver f s 4.84 1.42 0.45 0 par:pas; +stabilisées stabilisé adj f p 0.56 0.41 0.01 0.14 +stabilisés stabiliser ver m p 4.84 1.42 0.04 0 par:pas; +stabilité stabilité nom f s 1.81 3.18 1.81 3.18 +stable stable adj s 10.09 4.53 8.67 3.78 +stablement stablement adv 0 0.07 0 0.07 +stables stable adj p 10.09 4.53 1.42 0.74 +stabulation stabulation nom f s 0 0.14 0 0.14 +staccato staccato nom m s 0.02 0.41 0.02 0.41 +stade stade nom m s 15.14 14.8 14.34 13.18 +stades stade nom m p 15.14 14.8 0.8 1.62 +stadium stadium nom m s 0.22 0.07 0.22 0.07 +staff staff nom m s 1.39 0.54 1.36 0.47 +staffs staff nom m p 1.39 0.54 0.03 0.07 +stage stage nom m s 6.16 5.54 4.87 4.8 +stages stage nom m p 6.16 5.54 1.28 0.74 +stagflation stagflation nom f s 0.01 0 0.01 0 +stagiaire stagiaire nom s 2.47 1.55 1.79 1.22 +stagiaires stagiaire nom p 2.47 1.55 0.69 0.34 +stagna stagner ver 0.59 5.41 0 0.2 ind:pas:3s; +stagnaient stagner ver 0.59 5.41 0 0.27 ind:imp:3p; +stagnait stagner ver 0.59 5.41 0.04 1.69 ind:imp:3s; +stagnant stagnant adj m s 0.41 2.97 0.04 0.61 +stagnante stagnant adj f s 0.41 2.97 0.26 1.69 +stagnantes stagnant adj f p 0.41 2.97 0.11 0.68 +stagnation stagnation nom f s 0.19 0.61 0.19 0.61 +stagne stagner ver 0.59 5.41 0.24 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stagnent stagner ver 0.59 5.41 0.06 0.2 ind:pre:3p; +stagner stagner ver 0.59 5.41 0.21 0.74 inf; +stagnez stagner ver 0.59 5.41 0.02 0 ind:pre:2p; +stagné stagner ver m s 0.59 5.41 0.02 0.27 par:pas; +stakhanoviste stakhanoviste nom s 0.27 0.07 0.27 0.07 +stalactite stalactite nom f s 0.15 0.61 0.11 0.07 +stalactites stalactite nom f p 0.15 0.61 0.04 0.54 +stalag stalag nom m s 0.37 0.74 0.37 0.61 +stalagmite stalagmite nom f s 0.12 0.34 0.11 0.07 +stalagmites stalagmite nom f p 0.12 0.34 0.01 0.27 +stalags stalag nom m p 0.37 0.74 0 0.14 +stalinien stalinien adj m s 0.48 3.72 0.02 1.42 +stalinienne stalinien adj f s 0.48 3.72 0.42 1.35 +staliniennes stalinien adj f p 0.48 3.72 0.03 0.54 +staliniens stalinien nom m p 0.05 1.69 0.04 1.28 +stalinisme stalinisme nom m s 0.14 1.01 0.14 1.01 +stalinisée staliniser ver f s 0 0.07 0 0.07 par:pas; +stalino stalino adv 0 0.07 0 0.07 +stalle stalle nom f s 0.32 2.43 0.19 0.74 +stalles stalle nom f p 0.32 2.43 0.13 1.69 +stals stal nom p 0 0.2 0 0.2 +stance stance nom f s 0.25 0.41 0.25 0 +stances stance nom f p 0.25 0.41 0 0.41 +stand stand nom m s 7.02 3.72 5.66 2.64 +stand_by stand_by nom m 0.83 0.07 0.83 0.07 +standard standard adj 4.17 1.01 4.17 1.01 +standardisation standardisation nom f s 0 0.07 0 0.07 +standardiste standardiste nom s 0.56 1.55 0.53 1.28 +standardistes standardiste nom p 0.56 1.55 0.03 0.27 +standardisé standardiser ver m s 0.03 0 0.01 0 par:pas; +standardisée standardisé adj f s 0.13 0.14 0.11 0 +standardisées standardiser ver f p 0.03 0 0.01 0 par:pas; +standardisés standardisé adj m p 0.13 0.14 0.01 0 +standards standard nom m p 3.24 2.3 0.72 0.27 +standing standing nom m s 1 2.03 1 2.03 +stands stand nom m p 7.02 3.72 1.36 1.08 +staphylococcie staphylococcie nom f s 0.01 0 0.01 0 +staphylococcique staphylococcique adj m s 0.01 0 0.01 0 +staphylocoque staphylocoque nom m s 0.11 0 0.09 0 +staphylocoques staphylocoque nom m p 0.11 0 0.02 0 +star star nom f s 39.34 9.86 28.91 6.35 +star_system star_system nom m s 0.01 0 0.01 0 +starking starking nom f s 0 0.14 0 0.14 +starlette starlette nom f s 0.39 1.22 0.21 0.54 +starlettes starlette nom f p 0.39 1.22 0.18 0.68 +staroste staroste nom m s 0.6 0.14 0.6 0.14 +stars star nom f p 39.34 9.86 10.44 3.51 +start_up start_up nom f 0.35 0 0.35 0 +starter starter nom m s 1 0.34 1 0.34 +starting_gate starting_gate nom f s 0.04 0.14 0.04 0.14 +stase stase nom f s 1.23 0.07 1.23 0.07 +stat stat nom s 0.05 0 0.05 0 +state stater ver 0.58 1.69 0.57 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stater stater ver 0.58 1.69 0.01 0 inf; +statices statice nom m p 0 0.07 0 0.07 +station station nom f s 29.71 24.26 26.73 17.97 +station_service station_service nom f s 4.22 3.58 3.95 3.24 +station_éclair station_éclair nom f s 0 0.07 0 0.07 +stationna stationner ver 1.67 8.85 0 0.07 ind:pas:3s; +stationnaient stationner ver 1.67 8.85 0 2.03 ind:imp:3p; +stationnaire stationnaire adj s 0.64 0.41 0.64 0.41 +stationnait stationner ver 1.67 8.85 0 1.89 ind:imp:3s; +stationnant stationner ver 1.67 8.85 0.01 0.41 par:pre; +stationne stationner ver 1.67 8.85 0.3 0.61 imp:pre:2s;ind:pre:3s; +stationnement stationnement nom m s 1.83 2.64 1.79 2.64 +stationnements stationnement nom m p 1.83 2.64 0.04 0 +stationnent stationner ver 1.67 8.85 0.1 0.41 ind:pre:3p; +stationner stationner ver 1.67 8.85 0.47 0.81 inf; +stationnera stationner ver 1.67 8.85 0.01 0.07 ind:fut:3s; +stationnez stationner ver 1.67 8.85 0.07 0 imp:pre:2p;ind:pre:2p; +stationnions stationner ver 1.67 8.85 0 0.07 ind:imp:1p; +stationnèrent stationner ver 1.67 8.85 0 0.07 ind:pas:3p; +stationné stationner ver m s 1.67 8.85 0.41 0.68 par:pas; +stationnée stationner ver f s 1.67 8.85 0.09 0.81 par:pas; +stationnées stationner ver f p 1.67 8.85 0.14 0.61 par:pas; +stationnés stationner ver m p 1.67 8.85 0.06 0.34 par:pas; +stations station nom f p 29.71 24.26 2.98 6.28 +station_service station_service nom f p 4.22 3.58 0.27 0.34 +statique statique adj s 0.65 1.42 0.61 1.28 +statiques statique adj p 0.65 1.42 0.03 0.14 +statisticien statisticien nom m s 0.1 0 0.09 0 +statisticienne statisticien nom f s 0.1 0 0.01 0 +statistique statistique adj s 1.13 0.88 0.61 0.47 +statistiquement statistiquement adv 0.91 0.07 0.91 0.07 +statistiquer statistiquer ver 0 0.07 0 0.07 inf; +statistiques statistique nom f p 5.11 3.45 4.59 3.31 +statu_quo statu_quo nom m s 0.94 1.08 0.94 1.08 +statuaient statuer ver 0.71 1.01 0 0.07 ind:imp:3p; +statuaire statuaire nom s 0 0.88 0 0.88 +statuant statuer ver 0.71 1.01 0.01 0.07 par:pre; +statue statue nom f s 19.5 42.84 15.42 25.54 +statuer statuer ver 0.71 1.01 0.27 0.34 inf; +statuera statuer ver 0.71 1.01 0.02 0.07 ind:fut:3s; +statuerai statuer ver 0.71 1.01 0.01 0 ind:fut:1s; +statuerait statuer ver 0.71 1.01 0 0.07 cnd:pre:3s; +statues statue nom f p 19.5 42.84 4.08 17.3 +statuette statuette nom f s 0.54 4.93 0.37 3.45 +statuettes statuette nom f p 0.54 4.93 0.17 1.49 +statufia statufier ver 0.06 1.28 0 0.07 ind:pas:3s; +statufiais statufier ver 0.06 1.28 0 0.07 ind:imp:1s; +statufiait statufier ver 0.06 1.28 0 0.07 ind:imp:3s; +statufiant statufier ver 0.06 1.28 0 0.14 par:pre; +statufier statufier ver 0.06 1.28 0.01 0.14 inf; +statufièrent statufier ver 0.06 1.28 0.01 0 ind:pas:3p; +statufié statufier ver m s 0.06 1.28 0.03 0.27 par:pas; +statufiée statufier ver f s 0.06 1.28 0 0.41 par:pas; +statufiées statufier ver f p 0.06 1.28 0 0.07 par:pas; +statufiés statufier ver m p 0.06 1.28 0.01 0.07 par:pas; +stature stature nom f s 0.75 4.05 0.75 3.92 +statures stature nom f p 0.75 4.05 0 0.14 +staturo_pondéral staturo_pondéral adj m s 0.01 0 0.01 0 +status status nom m 0.22 0.14 0.22 0.14 +statut statut nom m s 6.13 5.74 5.66 4.66 +statutaire statutaire adj f s 0.11 0 0.11 0 +statuts statut nom m p 6.13 5.74 0.48 1.08 +statué statuer ver m s 0.71 1.01 0.19 0 par:pas; +statère statère nom m s 0 0.74 0 0.68 +statères statère nom m p 0 0.74 0 0.07 +stayer stayer nom m s 0 0.47 0 0.47 +steak steak nom m s 10.76 2.57 8.15 1.69 +steaks steak nom m p 10.76 2.57 2.61 0.88 +steamboat steamboat nom m s 0.04 0 0.04 0 +steamer steamer nom m s 0.06 0.27 0.05 0.2 +steamers steamer nom m p 0.06 0.27 0.01 0.07 +steeple steeple nom m s 0.09 0.07 0.08 0.07 +steeple_chase steeple_chase nom m s 0.02 0.07 0.02 0.07 +steeples steeple nom m p 0.09 0.07 0.01 0 +stegomya stegomya nom f s 0 0.07 0 0.07 +stellaire stellaire adj s 1.76 0.88 1.55 0.54 +stellaires stellaire adj p 1.76 0.88 0.21 0.34 +stem stem nom m s 0 0.07 0 0.07 +stencil stencil nom m s 0.01 0.07 0.01 0.07 +stendhalien stendhalien adj m s 0 0.07 0 0.07 +stendhalien stendhalien nom m s 0 0.07 0 0.07 +stentor stentor nom m s 0.04 0.88 0.04 0.81 +stentors stentor nom m p 0.04 0.88 0 0.07 +steppe steppe nom f s 2.78 18.65 1.57 12.97 +stepper stepper nom m s 0.09 0 0.07 0 +steppers stepper nom m p 0.09 0 0.01 0 +steppes steppe nom f p 2.78 18.65 1.21 5.68 +stercoraire stercoraire adj m s 0 0.07 0 0.07 +stercoraires stercoraire nom m p 0 0.07 0 0.07 +sterling sterling adj 0.93 0.61 0.93 0.61 +sternal sternal adj m s 0.26 0.14 0.04 0.14 +sternale sternal adj f s 0.26 0.14 0.22 0 +sterne sterne nom f s 0.01 0.14 0 0.07 +sternes sterne nom f p 0.01 0.14 0.01 0.07 +sterno_cléido_mastoïdien sterno_cléido_mastoïdien adj m s 0.01 0 0.01 0 +sternum sternum nom m s 0.97 0.81 0.97 0.81 +stetson stetson nom m s 0.21 0.07 0.21 0.07 +steward steward nom m s 0 1.35 0 1.35 +stick stick nom m s 0.78 0.95 0.54 0.95 +sticker sticker nom m s 0.04 0 0.04 0 +sticks stick nom m p 0.78 0.95 0.23 0 +stigma stigma nom m s 0 0.07 0 0.07 +stigmate stigmate nom m s 0.99 3.11 0.16 0.27 +stigmates stigmate nom m p 0.99 3.11 0.83 2.84 +stigmatisaient stigmatiser ver 0.18 0.74 0 0.07 ind:imp:3p; +stigmatisait stigmatiser ver 0.18 0.74 0 0.14 ind:imp:3s; +stigmatisant stigmatiser ver 0.18 0.74 0.01 0.2 par:pre; +stigmatiser stigmatiser ver 0.18 0.74 0.01 0.14 inf; +stigmatisé stigmatiser ver m s 0.18 0.74 0.02 0 par:pas; +stigmatisée stigmatiser ver f s 0.18 0.74 0.14 0.14 par:pas; +stigmatisés stigmatisé adj m p 0.06 0.07 0.05 0 +stilton stilton nom m s 0.04 0.2 0.04 0.2 +stimula stimuler ver 4.6 4.05 0 0.14 ind:pas:3s; +stimulaient stimuler ver 4.6 4.05 0.01 0.07 ind:imp:3p; +stimulait stimuler ver 4.6 4.05 0.03 0.41 ind:imp:3s; +stimulant stimulant nom m s 1.81 0.47 1.47 0.27 +stimulante stimulant adj f s 1.97 1.55 0.33 0.41 +stimulantes stimulant adj f p 1.97 1.55 0.04 0.07 +stimulants stimulant nom m p 1.81 0.47 0.35 0.2 +stimulateur stimulateur nom m s 0.42 0 0.42 0 +stimulation stimulation nom f s 1.29 0.27 1.23 0.27 +stimulations stimulation nom f p 1.29 0.27 0.05 0 +stimule stimuler ver 4.6 4.05 1.58 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stimulent stimuler ver 4.6 4.05 0.08 0.2 ind:pre:3p; +stimuler stimuler ver 4.6 4.05 1.45 1.22 inf; +stimulera stimuler ver 4.6 4.05 0.09 0 ind:fut:3s; +stimulerait stimuler ver 4.6 4.05 0.12 0.07 cnd:pre:3s; +stimuleront stimuler ver 4.6 4.05 0.02 0 ind:fut:3p; +stimulez stimuler ver 4.6 4.05 0.01 0 imp:pre:2p; +stimuli stimulus nom m p 0.84 0.14 0.45 0 +stimulons stimuler ver 4.6 4.05 0.02 0 imp:pre:1p;ind:pre:1p; +stimulus stimulus nom m 0.84 0.14 0.39 0.14 +stimulus_réponse stimulus_réponse nom m 0 0.14 0 0.14 +stimulé stimuler ver m s 4.6 4.05 0.66 0.41 par:pas; +stimulée stimuler ver f s 4.6 4.05 0.09 0.27 par:pas; +stimulées stimuler ver f p 4.6 4.05 0.03 0.07 par:pas; +stimulés stimuler ver m p 4.6 4.05 0.16 0.2 par:pas; +stipendiés stipendier ver m p 0 0.14 0 0.14 par:pas; +stipes stipe nom m p 0.01 0.07 0.01 0.07 +stipulait stipuler ver 1.81 0.54 0.21 0 ind:imp:3s; +stipulant stipuler ver 1.81 0.54 0.1 0.27 par:pre; +stipulation stipulation nom f s 0.02 0.2 0.01 0 +stipulations stipulation nom f p 0.02 0.2 0.01 0.2 +stipule stipuler ver 1.81 0.54 0.98 0.2 imp:pre:2s;ind:pre:3s; +stipulent stipuler ver 1.81 0.54 0.14 0 ind:pre:3p; +stipuler stipuler ver 1.81 0.54 0.03 0 inf; +stipulé stipuler ver m s 1.81 0.54 0.29 0.07 par:pas; +stipulée stipuler ver f s 1.81 0.54 0.01 0 par:pas; +stipulées stipuler ver f p 1.81 0.54 0.03 0 par:pas; +stipulés stipuler ver m p 1.81 0.54 0.01 0 par:pas; +stochastique stochastique adj m s 0.01 0 0.01 0 +stock stock nom m s 5.66 7.91 4.23 4.8 +stock_car stock_car nom m s 0.19 0.14 0.16 0.14 +stock_car stock_car nom m p 0.19 0.14 0.03 0 +stock_option stock_option nom f p 0.18 0 0.18 0 +stockage stockage nom m s 1.33 0.47 1.32 0.41 +stockages stockage nom m p 1.33 0.47 0.01 0.07 +stockaient stocker ver 3.54 1.15 0.07 0.07 ind:imp:3p; +stockait stocker ver 3.54 1.15 0.06 0.2 ind:imp:3s; +stocke stocker ver 3.54 1.15 0.48 0 ind:pre:1s;ind:pre:3s; +stockent stocker ver 3.54 1.15 0.2 0.14 ind:pre:3p; +stocker stocker ver 3.54 1.15 1.22 0.14 inf; +stockez stocker ver 3.54 1.15 0.17 0 imp:pre:2p;ind:pre:2p; +stockons stocker ver 3.54 1.15 0.04 0 imp:pre:1p;ind:pre:1p; +stocks stock nom m p 5.66 7.91 1.44 3.11 +stocké stocker ver m s 3.54 1.15 0.31 0.27 par:pas; +stockée stocker ver f s 3.54 1.15 0.24 0 par:pas; +stockées stocker ver f p 3.54 1.15 0.5 0.14 par:pas; +stockés stocker ver m p 3.54 1.15 0.24 0.2 par:pas; +stoker stoker nom m s 0.65 0 0.65 0 +stokes stokes nom m 0.1 0 0.1 0 +stomacal stomacal adj m s 0.06 0.61 0.03 0.27 +stomacale stomacal adj f s 0.06 0.61 0.03 0.14 +stomacales stomacal adj f p 0.06 0.61 0 0.14 +stomacaux stomacal adj m p 0.06 0.61 0 0.07 +stomates stomate nom m p 0.01 0 0.01 0 +stomie stomie nom f s 0.02 0 0.02 0 +stomoxys stomoxys nom m 0.27 0 0.27 0 +stone stone adj s 2.06 2.16 1.11 0.34 +stones stone adj p 2.06 2.16 0.94 1.82 +stop stop nom m s 44.5 6.76 44.36 6.49 +stoppa stopper ver 9.46 15.61 0.11 2.36 ind:pas:3s; +stoppage stoppage nom m s 0 0.14 0 0.14 +stoppai stopper ver 9.46 15.61 0 0.07 ind:pas:1s; +stoppaient stopper ver 9.46 15.61 0 0.2 ind:imp:3p; +stoppais stopper ver 9.46 15.61 0 0.07 ind:imp:1s; +stoppait stopper ver 9.46 15.61 0.01 0.68 ind:imp:3s; +stoppant stopper ver 9.46 15.61 0.01 0.34 par:pre; +stoppe stopper ver 9.46 15.61 0.54 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stoppent stopper ver 9.46 15.61 0.06 0.14 ind:pre:3p; +stopper stopper ver 9.46 15.61 4.88 3.11 inf; +stoppera stopper ver 9.46 15.61 0.09 0 ind:fut:3s; +stopperai stopper ver 9.46 15.61 0.02 0 ind:fut:1s; +stopperiez stopper ver 9.46 15.61 0.01 0 cnd:pre:2p; +stoppes stopper ver 9.46 15.61 0.01 0.14 ind:pre:2s; +stoppeur stoppeur nom m s 0.07 0.14 0.04 0.07 +stoppeurs stoppeur nom m p 0.07 0.14 0.02 0 +stoppeuse stoppeur nom f s 0.07 0.14 0 0.07 +stoppez stopper ver 9.46 15.61 1.33 0 imp:pre:2p;ind:pre:2p; +stoppions stopper ver 9.46 15.61 0.01 0.07 ind:imp:1p; +stoppons stopper ver 9.46 15.61 0.08 0 imp:pre:1p;ind:pre:1p; +stoppât stopper ver 9.46 15.61 0 0.07 sub:imp:3s; +stoppèrent stopper ver 9.46 15.61 0.1 0.61 ind:pas:3p; +stoppé stopper ver m s 9.46 15.61 1.6 3.38 par:pas; +stoppée stopper ver f s 9.46 15.61 0.44 0.74 par:pas; +stoppées stopper ver f p 9.46 15.61 0.03 0.2 par:pas; +stoppés stopper ver m p 9.46 15.61 0.13 0.54 par:pas; +stops stop nom m p 44.5 6.76 0.14 0.27 +storage storage nom m s 0.01 0 0.01 0 +store store nom m s 3.59 7.09 1.35 4.12 +stores store nom m p 3.59 7.09 2.23 2.97 +story_board story_board nom m s 0.28 0.07 0.03 0.07 +story_board story_board nom m s 0.28 0.07 0.23 0 +story_board story_board nom m p 0.28 0.07 0.03 0 +stout stout nom m s 0.45 0.14 0.45 0.14 +stoïcien stoïcien adj m s 0.01 0.34 0.01 0.34 +stoïciens stoïcien nom m p 0.01 0.61 0.01 0.41 +stoïcisme stoïcisme nom m s 0.07 0.61 0.07 0.61 +stoïque stoïque adj s 0.39 0.95 0.35 0.88 +stoïquement stoïquement adv 0 0.27 0 0.27 +stoïques stoïque adj p 0.39 0.95 0.03 0.07 +strabisme strabisme nom m s 0.02 0.95 0.02 0.88 +strabismes strabisme nom m p 0.02 0.95 0 0.07 +stradivarius stradivarius nom m 0.04 0.07 0.04 0.07 +straight straight adj s 0.4 0.14 0.4 0.14 +stramoine stramoine nom f s 0.01 0 0.01 0 +stramonium stramonium nom m s 0.04 0 0.04 0 +strangula stranguler ver 0.02 0.47 0.01 0.07 ind:pas:3s; +strangulant stranguler ver 0.02 0.47 0 0.14 par:pre; +strangulation strangulation nom f s 1.28 0.68 1.28 0.68 +stranguler stranguler ver 0.02 0.47 0 0.07 inf; +strangulé stranguler ver m s 0.02 0.47 0 0.2 par:pas; +strangulées stranguler ver f p 0.02 0.47 0.01 0 par:pas; +strapontin strapontin nom m s 0.18 1.89 0.16 1.35 +strapontins strapontin nom m p 0.18 1.89 0.03 0.54 +strasbourgeois strasbourgeois adj m s 0.14 0.54 0.14 0.47 +strasbourgeoise strasbourgeois adj f s 0.14 0.54 0 0.07 +strass strass nom m 0.21 1.69 0.21 1.69 +strasse strasse nom f s 0.39 0.2 0.39 0.2 +stratagème stratagème nom m s 1.89 1.76 1.54 1.35 +stratagèmes stratagème nom m p 1.89 1.76 0.34 0.41 +strate strate nom f s 0.34 0.47 0.17 0 +strates strate nom f p 0.34 0.47 0.17 0.47 +stratification stratification nom f s 0.01 0.41 0.01 0.14 +stratifications stratification nom f p 0.01 0.41 0 0.27 +stratifié stratifié adj m s 0.04 0.54 0.04 0.41 +stratifiée stratifier ver f s 0.01 0 0.01 0 par:pas; +stratifiées stratifié adj f p 0.04 0.54 0 0.07 +stratigraphique stratigraphique adj s 0 0.07 0 0.07 +stratosphère stratosphère nom f s 0.62 0.68 0.62 0.68 +stratosphérique stratosphérique adj m s 0.02 0.14 0.02 0.07 +stratosphériques stratosphérique adj f p 0.02 0.14 0 0.07 +stratus stratus nom m 0.01 0 0.01 0 +stratège stratège nom m s 1.31 1.62 1.11 1.01 +stratèges stratège nom m p 1.31 1.62 0.2 0.61 +stratégie stratégie nom f s 9.8 7.23 8.96 6.89 +stratégies stratégie nom f p 9.8 7.23 0.84 0.34 +stratégique stratégique adj s 3.21 10.14 2.26 6.96 +stratégiquement stratégiquement adv 0.3 0.54 0.3 0.54 +stratégiques stratégique adj p 3.21 10.14 0.95 3.18 +stratégiste stratégiste nom s 0.01 0 0.01 0 +strelitzia strelitzia nom m s 0.01 0 0.01 0 +streptococcie streptococcie nom f s 0.01 0 0.01 0 +streptococcique streptococcique adj f s 0.01 0 0.01 0 +streptocoque streptocoque nom m s 0.18 0.07 0.18 0.07 +streptokinase streptokinase nom f s 0.01 0 0.01 0 +streptomycine streptomycine nom f s 0.04 0.14 0.04 0.14 +stress stress nom m 10.85 0.41 10.85 0.41 +stressais stresser ver 7.34 0.34 0.11 0 ind:imp:1s; +stressait stresser ver 7.34 0.34 0.02 0 ind:imp:3s; +stressant stressant adj m s 1.81 0 1.16 0 +stressante stressant adj f s 1.81 0 0.45 0 +stressantes stressant adj f p 1.81 0 0.13 0 +stressants stressant adj m p 1.81 0 0.07 0 +stresse stresser ver 7.34 0.34 1.13 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stressent stresser ver 7.34 0.34 0.13 0 ind:pre:3p; +stresser stresser ver 7.34 0.34 0.75 0 inf; +stressera stresser ver 7.34 0.34 0.01 0 ind:fut:3s; +stresserai stresser ver 7.34 0.34 0.01 0 ind:fut:1s; +stressé stresser ver m s 7.34 0.34 2.94 0.14 par:pas; +stressée stresser ver f s 7.34 0.34 1.81 0.14 par:pas; +stressées stresser ver f p 7.34 0.34 0.07 0 par:pas; +stressés stresser ver m p 7.34 0.34 0.35 0.07 par:pas; +stretch stretch nom m s 0.29 0.2 0.29 0.2 +stretching stretching nom m s 0.28 0 0.28 0 +striaient strier ver 0.03 4.26 0.01 0.2 ind:imp:3p; +striait strier ver 0.03 4.26 0 0.27 ind:imp:3s; +striations striation nom f p 0.09 0 0.09 0 +strict strict adj m s 7.66 14.39 3.36 7.03 +stricte strict adj f s 7.66 14.39 2.58 5.27 +strictement strictement adv 4.95 7.91 4.95 7.91 +strictes strict adj f p 7.66 14.39 1.18 1.22 +stricto_sensu stricto_sensu adv 0.01 0 0.01 0 +stricts strict adj m p 7.66 14.39 0.54 0.88 +stridence stridence nom f s 0.01 1.96 0.01 0.95 +stridences stridence nom f p 0.01 1.96 0 1.01 +strident strident adj m s 0.74 7.3 0.4 3.04 +stridente strident adj f s 0.74 7.3 0.14 1.15 +stridentes strident adj f p 0.74 7.3 0.02 1.01 +stridents strident adj m p 0.74 7.3 0.19 2.09 +strider strider ver 0.12 0 0.12 0 inf; +stridor stridor nom m s 0.04 0 0.04 0 +stridulait striduler ver 0 0.2 0 0.07 ind:imp:3s; +stridulation stridulation nom f s 0.16 0.27 0.02 0.14 +stridulations stridulation nom f p 0.16 0.27 0.14 0.14 +stridule striduler ver 0 0.2 0 0.07 ind:pre:3s; +striduler striduler ver 0 0.2 0 0.07 inf; +striduleuse striduleux adj f s 0 0.07 0 0.07 +strie strie nom f s 0.73 1.82 0.05 0.07 +strient strier ver 0.03 4.26 0 0.07 ind:pre:3p; +strier strier ver 0.03 4.26 0 0.14 inf; +stries strie nom f p 0.73 1.82 0.68 1.76 +string string nom m s 3.9 0.34 2.59 0.34 +strings string nom m p 3.9 0.34 1.31 0 +strip strip nom m s 2.44 0.27 2.44 0.27 +strip_poker strip_poker nom m s 0.08 0.07 0.08 0.07 +strip_tease strip_tease nom m s 4.04 1.01 3.63 0.95 +strip_tease strip_tease nom m p 4.04 1.01 0.41 0.07 +strip_teaseur strip_teaseur nom m s 4.02 0.47 0.11 0 +strip_teaseur strip_teaseur nom m p 4.02 0.47 0.14 0 +strip_teaseur strip_teaseur nom f s 4.02 0.47 2.98 0.27 +strip_teaseur strip_teaseur nom f p 4.02 0.47 0.79 0.2 +stripper stripper ver 0.01 0 0.01 0 inf; +striptease striptease nom m s 0.6 0 0.6 0 +stripteaseuse stripteaseur nom f s 0.44 0.2 0.26 0.14 +stripteaseuses stripteaseur nom f p 0.44 0.2 0.19 0.07 +striures striure nom f p 0.05 0.41 0.05 0.41 +strié strié adj m s 0.06 0.74 0.03 0.14 +striée strier ver f s 0.03 4.26 0.01 0.81 par:pas; +striées strié adj f p 0.06 0.74 0.01 0.14 +striés strié adj m p 0.06 0.74 0.01 0.2 +stroboscope stroboscope nom m s 0.05 0 0.05 0 +stroboscopique stroboscopique adj m s 0.1 0 0.1 0 +strontiane strontiane nom f s 0 0.07 0 0.07 +strontium strontium nom m s 0.06 0.07 0.06 0.07 +strophe strophe nom f s 0.3 2.16 0.26 0.81 +strophes strophe nom f p 0.3 2.16 0.04 1.35 +stropiats stropiat nom m p 0 0.68 0 0.68 +structura structurer ver 0.51 1.22 0 0.47 ind:pas:3s; +structuraient structurer ver 0.51 1.22 0 0.07 ind:imp:3p; +structurait structurer ver 0.51 1.22 0 0.14 ind:imp:3s; +structural structural adj m s 0.06 0.27 0 0.2 +structurale structural adj f s 0.06 0.27 0.04 0.07 +structuralement structuralement adv 0 0.07 0 0.07 +structurales structural adj f p 0.06 0.27 0.01 0 +structuralisme structuralisme nom m s 0 0.14 0 0.14 +structuraliste structuraliste adj s 0.01 0.07 0.01 0 +structuralistes structuraliste adj m p 0.01 0.07 0 0.07 +structurant structurer ver 0.51 1.22 0.01 0 par:pre; +structurations structuration nom f p 0 0.07 0 0.07 +structuraux structural adj m p 0.06 0.27 0.01 0 +structure structure nom f s 8.74 7.7 7.81 5.88 +structurel structurel adj m s 0.59 0 0.12 0 +structurelle structurel adj f s 0.59 0 0.27 0 +structurellement structurellement adv 0.05 0 0.05 0 +structurels structurel adj m p 0.59 0 0.2 0 +structurent structurer ver 0.51 1.22 0 0.14 ind:pre:3p; +structurer structurer ver 0.51 1.22 0.14 0 inf; +structures structure nom f p 8.74 7.7 0.93 1.82 +structuré structurer ver m s 0.51 1.22 0.29 0.27 par:pas; +structurée structuré adj f s 0.25 0.54 0.07 0.07 +structurés structuré adj m p 0.25 0.54 0.14 0 +strudel strudel nom m s 0.46 0.41 0.37 0.07 +strudels strudel nom m p 0.46 0.41 0.09 0.34 +struggle_for_life struggle_for_life nom m 0 0.07 0 0.07 +strychnine strychnine nom f s 0.74 0.2 0.74 0.2 +strychnos strychnos nom m 0.01 0 0.01 0 +stryges stryge nom f p 0 0.07 0 0.07 +stuc stuc nom m s 0.16 1.89 0.15 1.55 +stucs stuc nom m p 0.16 1.89 0.01 0.34 +studette studette nom f s 0 0.07 0 0.07 +studieuse studieux adj f s 0.67 4.05 0.09 1.42 +studieusement studieusement adv 0 0.27 0 0.27 +studieuses studieux adj f p 0.67 4.05 0.04 0.81 +studieux studieux adj m 0.67 4.05 0.54 1.82 +studio studio nom m s 27.77 22.09 20.95 18.85 +studiolo studiolo nom m s 0.01 0 0.01 0 +studios studio nom m p 27.77 22.09 6.82 3.24 +stuka stuka nom m s 0.05 1.15 0.02 0.34 +stukas stuka nom m p 0.05 1.15 0.03 0.81 +stup stups nom m s 0.2 0 0.2 0 +stupas stupa nom m p 0 0.07 0 0.07 +stupeur stupeur nom f s 1.57 24.05 1.57 24.05 +stupide stupide adj s 71.75 27.5 60.06 21.76 +stupidement stupidement adv 0.82 5.07 0.82 5.07 +stupides stupide adj p 71.75 27.5 11.7 5.74 +stupidité stupidité nom f s 3.63 3.31 2.98 2.77 +stupidités stupidité nom f p 3.63 3.31 0.65 0.54 +stuporeuse stuporeux adj f s 0 0.07 0 0.07 +stupre stupre nom m s 0.14 0.81 0.14 0.81 +stups stup nom m p 2.26 0.2 2.26 0.2 +stupéfaction stupéfaction nom f s 0.36 8.04 0.36 8.04 +stupéfait stupéfait adj m s 2.25 14.73 1.43 8.24 +stupéfaite stupéfait adj f s 2.25 14.73 0.48 4.05 +stupéfaites stupéfait adj f p 2.25 14.73 0 0.14 +stupéfaits stupéfait adj m p 2.25 14.73 0.34 2.3 +stupéfia stupéfier ver 0.98 5.07 0.02 0.54 ind:pas:3s; +stupéfiaient stupéfier ver 0.98 5.07 0 0.07 ind:imp:3p; +stupéfiait stupéfier ver 0.98 5.07 0 1.08 ind:imp:3s; +stupéfiant stupéfiant adj m s 2.8 6.49 1.77 2.36 +stupéfiante stupéfiant adj f s 2.8 6.49 0.6 3.58 +stupéfiantes stupéfiant adj f p 2.8 6.49 0.09 0.34 +stupéfiants stupéfiant nom m p 2.69 0.88 1.54 0.47 +stupéfie stupéfier ver 0.98 5.07 0.22 0.68 ind:pre:3s; +stupéfient stupéfier ver 0.98 5.07 0.04 0.14 ind:pre:3p; +stupéfier stupéfier ver 0.98 5.07 0.15 0.2 inf; +stupéfierait stupéfier ver 0.98 5.07 0 0.07 cnd:pre:3s; +stupéfiez stupéfier ver 0.98 5.07 0.04 0 ind:pre:2p; +stupéfié stupéfier ver m s 0.98 5.07 0.26 1.55 par:pas; +stupéfiée stupéfier ver f s 0.98 5.07 0.11 0.54 par:pas; +stupéfiées stupéfier ver f p 0.98 5.07 0.1 0.07 par:pas; +stupéfiés stupéfier ver m p 0.98 5.07 0.01 0.07 par:pas; +stygien stygien adj m s 0.01 0 0.01 0 +style style nom m s 32.34 46.62 31.08 45.14 +styler styler ver 0.29 1.55 0.04 0 inf; +styles style nom m p 32.34 46.62 1.26 1.49 +stylet stylet nom m s 0.07 0.74 0.07 0.61 +stylets stylet nom m p 0.07 0.74 0 0.14 +stylisa styliser ver 0.44 1.96 0 0.07 ind:pas:3s; +stylisation stylisation nom f s 0.01 0 0.01 0 +stylise styliser ver 0.44 1.96 0.02 0.07 ind:pre:1s;ind:pre:3s; +stylisme stylisme nom m s 0.23 0.07 0.23 0.07 +styliste styliste nom s 1.34 0.54 1.17 0.34 +stylistes styliste nom p 1.34 0.54 0.17 0.2 +stylistique stylistique adj m s 0.11 0.2 0.11 0.14 +stylistiques stylistique adj p 0.11 0.2 0 0.07 +stylisé styliser ver m s 0.44 1.96 0.3 0.74 par:pas; +stylisée styliser ver f s 0.44 1.96 0.12 0.41 par:pas; +stylisées styliser ver f p 0.44 1.96 0 0.34 par:pas; +stylisés styliser ver m p 0.44 1.96 0 0.34 par:pas; +stylite stylite nom m s 0 0.27 0 0.27 +stylo stylo nom m s 17.73 12.77 15.34 10.61 +stylo_bille stylo_bille nom m s 0.17 0.14 0.17 0.14 +stylo_feutre stylo_feutre nom m s 0 0.27 0 0.14 +stylobille stylobille nom m s 0 0.27 0 0.27 +stylographe stylographe nom m s 0.01 0.47 0.01 0.41 +stylographes stylographe nom m p 0.01 0.47 0 0.07 +stylomine stylomine nom m s 0 0.54 0 0.54 +stylos stylo nom m p 17.73 12.77 2.39 2.16 +stylo_feutre stylo_feutre nom m p 0 0.27 0 0.14 +styloïde styloïde adj s 0.01 0 0.01 0 +stylé stylé adj m s 0.2 0.88 0.11 0.54 +stylée stylé adj f s 0.2 0.88 0.05 0.27 +stylées stylé adj f p 0.2 0.88 0.01 0.07 +stylés stylé adj m p 0.2 0.88 0.03 0 +styrax styrax nom m 0 0.07 0 0.07 +styrène styrène nom m s 0.04 0 0.04 0 +stèle stèle nom f s 0.35 2.57 0.31 1.49 +stèles stèle nom f p 0.35 2.57 0.04 1.08 +stère stère nom m s 0.04 0.61 0.01 0.14 +stères stère nom m p 0.04 0.61 0.03 0.47 +stéarate stéarate nom m s 0.01 0 0.01 0 +stéarique stéarique adj s 0.01 0 0.01 0 +stéatopyges stéatopyge adj m p 0 0.07 0 0.07 +stégosaure stégosaure nom m s 0.06 0 0.06 0 +sténo sténo nom s 0.86 0.61 0.8 0.54 +sténodactylo sténodactylo nom s 0.02 0.14 0.02 0.14 +sténodactylographie sténodactylographie nom f s 0 0.07 0 0.07 +sténographe sténographe nom s 0.08 0 0.08 0 +sténographiai sténographier ver 0 0.07 0 0.07 ind:pas:1s; +sténographie sténographie nom f s 0.32 0.14 0.32 0.14 +sténographique sténographique adj m s 0.02 0.07 0.02 0 +sténographiques sténographique adj m p 0.02 0.07 0 0.07 +sténopé sténopé nom m s 0.07 0.14 0.07 0.07 +sténopés sténopé nom m p 0.07 0.14 0 0.07 +sténos sténo nom p 0.86 0.61 0.06 0.07 +sténose sténose nom f s 0.07 0 0.07 0 +sténotype sténotype nom f s 0.01 0 0.01 0 +sténotypiste sténotypiste nom s 0.02 0.07 0.02 0 +sténotypistes sténotypiste nom p 0.02 0.07 0 0.07 +stéphanois stéphanois nom m 0.27 0.14 0.27 0.14 +stérile stérile adj s 7.07 11.69 5.59 9.59 +stérilement stérilement adv 0 0.2 0 0.2 +stériles stérile adj p 7.07 11.69 1.48 2.09 +stérilet stérilet nom m s 0.11 0.61 0.11 0.61 +stérilisa stériliser ver 1.5 0.81 0 0.07 ind:pas:3s; +stérilisait stériliser ver 1.5 0.81 0 0.07 ind:imp:3s; +stérilisant stériliser ver 1.5 0.81 0.02 0 par:pre; +stérilisante stérilisant adj f s 0.01 0.14 0 0.07 +stérilisantes stérilisant adj f p 0.01 0.14 0 0.07 +stérilisateur stérilisateur nom m s 0.18 0 0.18 0 +stérilisation stérilisation nom f s 0.37 0.07 0.37 0 +stérilisations stérilisation nom f p 0.37 0.07 0 0.07 +stérilise stériliser ver 1.5 0.81 0.22 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stérilisent stériliser ver 1.5 0.81 0.04 0 ind:pre:3p; +stériliser stériliser ver 1.5 0.81 0.76 0.27 inf; +stérilisez stériliser ver 1.5 0.81 0.17 0 imp:pre:2p;ind:pre:2p; +stérilisé stériliser ver m s 1.5 0.81 0.17 0.2 par:pas; +stérilisée stérilisé adj f s 0.23 0.41 0.06 0.34 +stérilisées stériliser ver f p 1.5 0.81 0.02 0.07 par:pas; +stérilisés stériliser ver m p 1.5 0.81 0.07 0 par:pas; +stérilité stérilité nom f s 1.09 2.91 1.09 2.91 +stéroïde stéroïde adj m s 2 0 0.13 0 +stéroïdes stéroïde adj p 2 0 1.88 0 +stéréo stéréo nom f s 2.51 1.15 2.47 1.15 +stéréophonie stéréophonie nom f s 0.01 0.27 0.01 0.27 +stéréophonique stéréophonique adj m s 0.04 0.14 0.04 0.14 +stéréos stéréo nom f p 2.51 1.15 0.04 0 +stéréoscope stéréoscope nom m s 0.01 0.27 0.01 0.27 +stéréoscopie stéréoscopie nom f s 0 0.07 0 0.07 +stéréoscopique stéréoscopique adj s 0.02 0.2 0.02 0.2 +stéréotype stéréotype nom m s 0.54 1.22 0.23 0.54 +stéréotyper stéréotyper ver 0.05 0.61 0.01 0 inf; +stéréotypes stéréotype nom m p 0.54 1.22 0.31 0.68 +stéréotypie stéréotypie nom f s 0 0.07 0 0.07 +stéréotypé stéréotypé adj m s 0.16 0.68 0.03 0.2 +stéréotypée stéréotypé adj f s 0.16 0.68 0.01 0.2 +stéréotypées stéréotyper ver f p 0.05 0.61 0.02 0.07 par:pas; +stéréotypés stéréotypé adj m p 0.16 0.68 0.11 0.14 +stéthoscope stéthoscope nom m s 0.5 0.68 0.48 0.54 +stéthoscopes stéthoscope nom m p 0.5 0.68 0.02 0.14 +su savoir ver_sup m s 4516.71 2003.58 83.37 77.64 par:pas; +sua suer ver 7.28 10.34 0 0.47 ind:pas:3s; +suaient suer ver 7.28 10.34 0 0.41 ind:imp:3p; +suaire suaire nom m s 0.3 2.64 0.28 1.82 +suaires suaire nom m p 0.3 2.64 0.02 0.81 +suais suer ver 7.28 10.34 0.07 0.54 ind:imp:1s; +suait suer ver 7.28 10.34 0.04 2.09 ind:imp:3s; +suant suant adj m s 0.25 2.43 0.2 1.15 +suante suant adj f s 0.25 2.43 0.02 0.34 +suantes suant adj f p 0.25 2.43 0.01 0.2 +suants suant adj m p 0.25 2.43 0.02 0.74 +suave suave adj s 1.11 7.43 0.94 5.47 +suavement suavement adv 0.01 0.61 0.01 0.61 +suaves suave adj p 1.11 7.43 0.17 1.96 +suavité suavité nom f s 0.02 1.55 0.02 1.55 +sub sub adv 0.22 0.2 0.22 0.2 +sub_aquatique sub_aquatique adj f s 0 0.07 0 0.07 +sub_atomique sub_atomique adj s 0.07 0 0.04 0 +sub_atomique sub_atomique adj p 0.07 0 0.04 0 +sub_claquant sub_claquant adj m s 0.01 0 0.01 0 +sub_espace sub_espace nom m s 0.08 0 0.08 0 +sub_normaux sub_normaux adj m p 0.14 0 0.14 0 +sub_nucléaire sub_nucléaire adj f p 0.01 0 0.01 0 +sub_vocal sub_vocal adj m s 0.01 0.07 0.01 0.07 +sub_véhiculaire sub_véhiculaire adj s 0.01 0 0.01 0 +sub_zéro sub_zéro nom m s 0.01 0 0.01 0 +subaiguë subaigu adj f s 0.01 0 0.01 0 +subalterne subalterne nom s 0.42 1.49 0.28 0.47 +subalternes subalterne adj p 0.58 2.36 0.46 1.42 +subaquatique subaquatique adj s 0.03 0 0.03 0 +subatomique subatomique adj s 0.33 0 0.13 0 +subatomiques subatomique adj p 0.33 0 0.19 0 +subcarpatique subcarpatique adj f s 0 0.07 0 0.07 +subcellulaire subcellulaire adj s 0.02 0 0.02 0 +subconsciemment subconsciemment adv 0.04 0 0.04 0 +subconscient subconscient nom m s 2.17 1.28 2.16 1.28 +subconsciente subconscient adj f s 0.27 0.34 0.04 0 +subconscientes subconscient adj f p 0.27 0.34 0 0.14 +subconscients subconscient nom m p 2.17 1.28 0.01 0 +subculture subculture nom f s 0.02 0 0.02 0 +subdivisa subdiviser ver 0.02 0.41 0 0.07 ind:pas:3s; +subdivisaient subdiviser ver 0.02 0.41 0 0.07 ind:imp:3p; +subdivisait subdiviser ver 0.02 0.41 0 0.14 ind:imp:3s; +subdivisent subdiviser ver 0.02 0.41 0 0.07 ind:pre:3p; +subdivision subdivision nom f s 0.16 0.47 0.06 0.34 +subdivisions subdivision nom f p 0.16 0.47 0.1 0.14 +subdivisé subdiviser ver m s 0.02 0.41 0.01 0 par:pas; +subdivisée subdiviser ver f s 0.02 0.41 0.01 0 par:pas; +subdivisés subdiviser ver m p 0.02 0.41 0 0.07 par:pas; +subduction subduction nom f s 0.04 0 0.04 0 +suber suber nom m s 0.01 0 0.01 0 +subi subir ver m s 30.13 53.72 10.22 10.81 par:pas; +subie subir ver f s 30.13 53.72 0.1 1.28 par:pas; +subies subir ver f p 30.13 53.72 0.4 2.5 par:pas; +subir subir ver 30.13 53.72 10.64 21.28 inf; +subira subir ver 30.13 53.72 0.68 0.34 ind:fut:3s; +subirai subir ver 30.13 53.72 0.12 0.07 ind:fut:1s; +subiraient subir ver 30.13 53.72 0.04 0.14 cnd:pre:3p; +subirais subir ver 30.13 53.72 0.02 0.07 cnd:pre:1s; +subirait subir ver 30.13 53.72 0.04 0.14 cnd:pre:3s; +subiras subir ver 30.13 53.72 0.17 0 ind:fut:2s; +subirent subir ver 30.13 53.72 0.12 0.2 ind:pas:3p; +subirez subir ver 30.13 53.72 0.67 0.14 ind:fut:2p; +subirions subir ver 30.13 53.72 0 0.07 cnd:pre:1p; +subirons subir ver 30.13 53.72 0.16 0.2 ind:fut:1p; +subiront subir ver 30.13 53.72 0.26 0.27 ind:fut:3p; +subis subir ver m p 30.13 53.72 1.59 2.09 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +subissaient subir ver 30.13 53.72 0.01 1.35 ind:imp:3p; +subissais subir ver 30.13 53.72 0.04 1.01 ind:imp:1s;ind:imp:2s; +subissait subir ver 30.13 53.72 0.54 4.46 ind:imp:3s; +subissant subir ver 30.13 53.72 0.1 1.01 par:pre; +subisse subir ver 30.13 53.72 0.31 0.41 sub:pre:1s;sub:pre:3s; +subissent subir ver 30.13 53.72 1.13 1.82 ind:pre:3p; +subisses subir ver 30.13 53.72 0.05 0 sub:pre:2s; +subissez subir ver 30.13 53.72 0.25 0.2 imp:pre:2p;ind:pre:2p; +subissiez subir ver 30.13 53.72 0.04 0 ind:imp:2p; +subissions subir ver 30.13 53.72 0.1 0.07 ind:imp:1p; +subissons subir ver 30.13 53.72 0.26 0.27 imp:pre:1p;ind:pre:1p; +subit subir ver 30.13 53.72 2.07 3.38 ind:pre:3s; +subite subit adj f s 3.06 16.49 1.45 9.19 +subitement subitement adv 4.39 15.54 4.39 15.54 +subites subit adj f p 3.06 16.49 0.15 1.28 +subito subito adv_sup 0.05 1.15 0.05 1.15 +subits subit adj m p 3.06 16.49 0.12 1.01 +subjectif subjectif adj m s 1.25 1.49 0.65 0.54 +subjectifs subjectif adj m p 1.25 1.49 0.03 0.07 +subjective subjectif adj f s 1.25 1.49 0.43 0.61 +subjectivement subjectivement adv 0.01 0 0.01 0 +subjectives subjectif adj f p 1.25 1.49 0.14 0.27 +subjectivisme subjectivisme nom m s 0 0.2 0 0.2 +subjectiviste subjectiviste adj m s 0 0.07 0 0.07 +subjectivité subjectivité nom f s 0.44 0.2 0.44 0.2 +subjonctif subjonctif nom m s 0.22 1.55 0.22 1.35 +subjonctifs subjonctif nom m p 0.22 1.55 0 0.2 +subjugation subjugation nom f s 0.01 0 0.01 0 +subjugua subjuguer ver 0.88 5.27 0.01 0.34 ind:pas:3s; +subjuguaient subjuguer ver 0.88 5.27 0 0.07 ind:imp:3p; +subjuguait subjuguer ver 0.88 5.27 0 0.27 ind:imp:3s; +subjuguant subjuguer ver 0.88 5.27 0 0.07 par:pre; +subjugue subjuguer ver 0.88 5.27 0.04 0.47 imp:pre:2s;ind:pre:3s; +subjuguer subjuguer ver 0.88 5.27 0.28 0.81 inf; +subjuguerais subjuguer ver 0.88 5.27 0 0.07 cnd:pre:1s; +subjuguerait subjuguer ver 0.88 5.27 0 0.07 cnd:pre:3s; +subjugues subjuguer ver 0.88 5.27 0.01 0.07 ind:pre:2s; +subjugué subjuguer ver m s 0.88 5.27 0.35 1.55 par:pas; +subjuguée subjuguer ver f s 0.88 5.27 0.17 1.01 par:pas; +subjuguées subjuguer ver f p 0.88 5.27 0 0.2 par:pas; +subjugués subjuguer ver m p 0.88 5.27 0.03 0.27 par:pas; +sublimable sublimable adj f s 0 0.07 0 0.07 +sublimais sublimer ver 0.67 1.42 0.02 0.07 ind:imp:1s; +sublimait sublimer ver 0.67 1.42 0 0.14 ind:imp:3s; +sublimant sublimer ver 0.67 1.42 0.01 0.07 par:pre; +sublimation sublimation nom f s 0.04 0.41 0.03 0.27 +sublimations sublimation nom f p 0.04 0.41 0.01 0.14 +sublime sublime adj s 11.74 12.91 9.51 9.39 +sublimement sublimement adv 0.02 0.14 0.02 0.14 +subliment sublimer ver 0.67 1.42 0 0.07 ind:pre:3p; +sublimer sublimer ver 0.67 1.42 0.11 0.14 inf; +sublimes sublime adj p 11.74 12.91 2.23 3.51 +subliminal subliminal adj m s 0.53 0.07 0.14 0 +subliminale subliminal adj f s 0.53 0.07 0.05 0.07 +subliminales subliminal adj f p 0.53 0.07 0.06 0 +subliminaux subliminal adj m p 0.53 0.07 0.27 0 +sublimissime sublimissime adj f s 0 0.07 0 0.07 +sublimité sublimité nom f s 0.01 0.2 0.01 0.07 +sublimités sublimité nom f p 0.01 0.2 0 0.14 +sublimé sublimer ver m s 0.67 1.42 0.03 0 par:pas; +sublimée sublimer ver f s 0.67 1.42 0.03 0.27 par:pas; +sublimées sublimer ver f p 0.67 1.42 0.01 0.07 par:pas; +sublimés sublimer ver m p 0.67 1.42 0.01 0.07 par:pas; +sublingual sublingual adj m s 0.04 0.07 0.04 0 +sublinguaux sublingual adj m p 0.04 0.07 0 0.07 +sublunaire sublunaire adj s 0 0.2 0 0.14 +sublunaires sublunaire adj p 0 0.2 0 0.07 +submerge submerger ver 3.57 12.91 0.44 2.03 ind:pre:1s;ind:pre:3s; +submergea submerger ver 3.57 12.91 0.02 1.01 ind:pas:3s; +submergeaient submerger ver 3.57 12.91 0.01 0.14 ind:imp:3p; +submergeait submerger ver 3.57 12.91 0.14 1.15 ind:imp:3s; +submergeant submerger ver 3.57 12.91 0.01 0.34 par:pre; +submergent submerger ver 3.57 12.91 0.16 0.54 ind:pre:3p; +submerger submerger ver 3.57 12.91 0.53 1.22 inf; +submergera submerger ver 3.57 12.91 0.04 0.07 ind:fut:3s; +submergerait submerger ver 3.57 12.91 0 0.2 cnd:pre:3s; +submergeât submerger ver 3.57 12.91 0 0.14 sub:imp:3s; +submergèrent submerger ver 3.57 12.91 0.01 0 ind:pas:3p; +submergé submerger ver m s 3.57 12.91 1.23 2.97 par:pas; +submergée submerger ver f s 3.57 12.91 0.39 1.49 par:pas; +submergées submerger ver f p 3.57 12.91 0.14 0.47 par:pas; +submergés submerger ver m p 3.57 12.91 0.46 1.15 par:pas; +submersible submersible nom m s 0.19 0.27 0.17 0 +submersibles submersible nom m p 0.19 0.27 0.02 0.27 +submersion submersion nom f s 0.05 0 0.05 0 +subodora subodorer ver 0.3 2.5 0 0.07 ind:pas:3s; +subodorais subodorer ver 0.3 2.5 0 0.27 ind:imp:1s; +subodorait subodorer ver 0.3 2.5 0.01 0.41 ind:imp:3s; +subodorant subodorer ver 0.3 2.5 0.01 0.07 par:pre; +subodore subodorer ver 0.3 2.5 0.16 0.88 ind:pre:1s;ind:pre:3s; +subodorent subodorer ver 0.3 2.5 0 0.07 ind:pre:3p; +subodorer subodorer ver 0.3 2.5 0.11 0.14 inf; +subodorèrent subodorer ver 0.3 2.5 0 0.07 ind:pas:3p; +subodoré subodorer ver m s 0.3 2.5 0.01 0.47 par:pas; +subodorés subodorer ver m p 0.3 2.5 0 0.07 par:pas; +suborbitale suborbital adj f s 0.01 0 0.01 0 +subordination subordination nom f s 0.01 1.55 0.01 1.55 +subordonnaient subordonner ver 0.31 2.23 0 0.07 ind:imp:3p; +subordonnais subordonner ver 0.31 2.23 0 0.07 ind:imp:1s; +subordonnant subordonner ver 0.31 2.23 0 0.07 par:pre; +subordonne subordonner ver 0.31 2.23 0 0.14 ind:pre:3s;sub:pre:1s; +subordonner subordonner ver 0.31 2.23 0.14 0.68 inf; +subordonné subordonné nom m s 0.81 2.77 0.14 1.01 +subordonnée subordonné adj f s 0.24 0.47 0.16 0 +subordonnées subordonner ver f p 0.31 2.23 0 0.34 par:pas; +subordonnés subordonné nom m p 0.81 2.77 0.67 1.76 +subornation subornation nom f s 0.09 0.07 0.09 0.07 +suborner suborner ver 0.21 0.07 0.04 0 inf; +suborneur suborneur nom m s 0.01 0.41 0.01 0.34 +suborneurs suborneur nom m p 0.01 0.41 0 0.07 +suborné suborner ver m s 0.21 0.07 0.03 0 par:pas; +subornée suborner ver f s 0.21 0.07 0 0.07 par:pas; +subornés suborner ver m p 0.21 0.07 0.14 0 par:pas; +subreptice subreptice adj s 0.02 0.61 0.02 0.41 +subrepticement subrepticement adv 0.15 2.64 0.15 2.64 +subreptices subreptice adj m p 0.02 0.61 0 0.2 +subrogation subrogation nom f s 0.02 0 0.02 0 +subrogé subroger ver m s 0 0.07 0 0.07 par:pas; +subrécargue subrécargue nom m s 0.01 0.07 0.01 0.07 +subsaharienne subsaharien adj f s 0 0.07 0 0.07 +subside subside nom m s 0.51 0.88 0.28 0 +subsides subside nom m p 0.51 0.88 0.23 0.88 +subsidiaire subsidiaire adj s 0.11 0.2 0.06 0.14 +subsidiairement subsidiairement adv 0 0.07 0 0.07 +subsidiaires subsidiaire adj p 0.11 0.2 0.04 0.07 +subsista subsister ver 2.08 17.09 0.01 0.34 ind:pas:3s; +subsistaient subsister ver 2.08 17.09 0.12 1.62 ind:imp:3p; +subsistait subsister ver 2.08 17.09 0.04 3.78 ind:imp:3s; +subsistance subsistance nom f s 0.67 1.55 0.64 1.42 +subsistances subsistance nom f p 0.67 1.55 0.02 0.14 +subsistant subsistant adj m s 0.01 0.2 0.01 0.07 +subsistantes subsistant adj f p 0.01 0.2 0 0.07 +subsistants subsistant adj m p 0.01 0.2 0 0.07 +subsiste subsister ver 2.08 17.09 1.17 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +subsistent subsister ver 2.08 17.09 0.05 1.82 ind:pre:3p; +subsister subsister ver 2.08 17.09 0.45 3.92 inf; +subsistera subsister ver 2.08 17.09 0.04 0.07 ind:fut:3s; +subsisteraient subsister ver 2.08 17.09 0 0.07 cnd:pre:3p; +subsisterait subsister ver 2.08 17.09 0 0.34 cnd:pre:3s; +subsisteront subsister ver 2.08 17.09 0.03 0.07 ind:fut:3p; +subsistions subsister ver 2.08 17.09 0 0.07 ind:imp:1p; +subsistons subsister ver 2.08 17.09 0.01 0 ind:pre:1p; +subsistâmes subsister ver 2.08 17.09 0.01 0 ind:pas:1p; +subsistât subsister ver 2.08 17.09 0 0.2 sub:imp:3s; +subsistèrent subsister ver 2.08 17.09 0 0.07 ind:pas:3p; +subsisté subsister ver m s 2.08 17.09 0.14 0.2 par:pas; +subsonique subsonique adj s 0.19 0 0.19 0 +substance substance nom f s 8.87 14.39 6.6 12.84 +substances substance nom f p 8.87 14.39 2.27 1.55 +substantiel substantiel adj m s 1.08 2.43 0.46 0.41 +substantielle substantiel adj f s 1.08 2.43 0.45 0.81 +substantiellement substantiellement adv 0.04 0.27 0.04 0.27 +substantielles substantiel adj f p 1.08 2.43 0.08 0.68 +substantiels substantiel adj m p 1.08 2.43 0.1 0.54 +substantif substantif nom m s 0.01 0.34 0.01 0.2 +substantifique substantifique adj f s 0 0.2 0 0.2 +substantifs substantif nom m p 0.01 0.34 0 0.14 +substitua substituer ver 1.23 8.11 0 0.61 ind:pas:3s; +substituai substituer ver 1.23 8.11 0.01 0.07 ind:pas:1s; +substituaient substituer ver 1.23 8.11 0.01 0.41 ind:imp:3p; +substituait substituer ver 1.23 8.11 0.11 0.81 ind:imp:3s; +substituant substituer ver 1.23 8.11 0.05 0.41 par:pre; +substitue substituer ver 1.23 8.11 0.03 0.88 ind:pre:3s; +substituent substituer ver 1.23 8.11 0.01 0.07 ind:pre:3p; +substituer substituer ver 1.23 8.11 0.58 3.45 inf; +substituerait substituer ver 1.23 8.11 0 0.07 cnd:pre:3s; +substituerez substituer ver 1.23 8.11 0.01 0 ind:fut:2p; +substituez substituer ver 1.23 8.11 0.06 0.07 imp:pre:2p;ind:pre:2p; +substituons substituer ver 1.23 8.11 0 0.14 imp:pre:1p; +substitut substitut nom m s 2.37 2.7 2.05 2.09 +substitution substitution nom f s 0.69 2.3 0.67 2.03 +substitutions substitution nom f p 0.69 2.3 0.02 0.27 +substituts substitut nom m p 2.37 2.7 0.32 0.61 +substitué substituer ver m s 1.23 8.11 0.34 0.68 par:pas; +substituées substituer ver f p 1.23 8.11 0 0.14 par:pas; +substitués substituer ver m p 1.23 8.11 0 0.34 par:pas; +substrat substrat nom m s 0.09 0 0.09 0 +substratum substratum nom m s 0 0.27 0 0.27 +substruction substruction nom f s 0 0.07 0 0.07 +subséquemment subséquemment adv 0.23 0.2 0.23 0.2 +subséquent subséquent adj m s 0.09 0.34 0.02 0 +subséquente subséquent adj f s 0.09 0.34 0.04 0.14 +subséquentes subséquent adj f p 0.09 0.34 0.01 0.14 +subséquents subséquent adj m p 0.09 0.34 0.02 0.07 +subterfuge subterfuge nom m s 0.8 1.35 0.48 0.88 +subterfuges subterfuge nom m p 0.8 1.35 0.32 0.47 +subtil subtil adj m s 7.54 22.91 4.54 10.88 +subtile subtil adj f s 7.54 22.91 2.12 5.68 +subtilement subtilement adv 0.44 2.3 0.44 2.3 +subtiles subtil adj f p 7.54 22.91 0.37 3.11 +subtilisa subtiliser ver 0.52 2.16 0 0.27 ind:pas:3s; +subtilisait subtiliser ver 0.52 2.16 0 0.07 ind:imp:3s; +subtilisant subtiliser ver 0.52 2.16 0.02 0.07 par:pre; +subtilisassent subtiliser ver 0.52 2.16 0 0.07 sub:imp:3p; +subtilise subtiliser ver 0.52 2.16 0 0.14 ind:pre:1s;ind:pre:3s; +subtiliser subtiliser ver 0.52 2.16 0.16 0.41 inf; +subtilisera subtiliser ver 0.52 2.16 0 0.07 ind:fut:3s; +subtilisé subtiliser ver m s 0.52 2.16 0.28 0.54 par:pas; +subtilisée subtiliser ver f s 0.52 2.16 0.02 0.2 par:pas; +subtilisées subtiliser ver f p 0.52 2.16 0.04 0.07 par:pas; +subtilisés subtiliser ver m p 0.52 2.16 0 0.27 par:pas; +subtilité subtilité nom f s 0.97 5.2 0.55 3.45 +subtilités subtilité nom f p 0.97 5.2 0.41 1.76 +subtils subtil adj m p 7.54 22.91 0.52 3.24 +subtropical subtropical adj m s 0.04 0.14 0 0.07 +subtropicale subtropical adj f s 0.04 0.14 0.03 0 +subtropicales subtropical adj f p 0.04 0.14 0.01 0.07 +suburbain suburbain adj m s 0.05 0.34 0.01 0.07 +suburbaine suburbain adj f s 0.05 0.34 0.01 0 +suburbaines suburbain adj f p 0.05 0.34 0.02 0.14 +suburbains suburbain adj m p 0.05 0.34 0 0.14 +subvenant subvenir ver 1.52 1.08 0.03 0 par:pre; +subvenez subvenir ver 1.52 1.08 0.02 0 ind:pre:2p; +subvenir subvenir ver 1.52 1.08 1.3 1.01 inf; +subvention subvention nom f s 3 0.88 1.66 0.54 +subventionnant subventionner ver 0.79 0.68 0.01 0.07 par:pre; +subventionne subventionner ver 0.79 0.68 0.3 0 imp:pre:2s;ind:pre:3s; +subventionnent subventionner ver 0.79 0.68 0.05 0 ind:pre:3p; +subventionner subventionner ver 0.79 0.68 0.24 0.2 inf; +subventionnera subventionner ver 0.79 0.68 0 0.07 ind:fut:3s; +subventionné subventionner ver m s 0.79 0.68 0.11 0.2 par:pas; +subventionnée subventionné adj f s 0.1 0.14 0.07 0 +subventionnées subventionné adj f p 0.1 0.14 0 0.07 +subventionnés subventionner ver m p 0.79 0.68 0.04 0.14 par:pas; +subventions subvention nom f p 3 0.88 1.34 0.34 +subvenu subvenir ver m s 1.52 1.08 0.07 0 par:pas; +subversif subversif adj m s 3.61 2.43 1.3 0.54 +subversifs subversif adj m p 3.61 2.43 0.97 0.47 +subversion subversion nom f s 0.66 0.95 0.56 0.95 +subversions subversion nom f p 0.66 0.95 0.1 0 +subversive subversif adj f s 3.61 2.43 0.41 0.54 +subversives subversif adj f p 3.61 2.43 0.94 0.88 +subvertir subvertir ver 0 0.07 0 0.07 inf; +subviendra subvenir ver 1.52 1.08 0 0.07 ind:fut:3s; +subviendrait subvenir ver 1.52 1.08 0.01 0 cnd:pre:3s; +subviens subvenir ver 1.52 1.08 0.03 0 ind:pre:1s; +subvient subvenir ver 1.52 1.08 0.06 0 ind:pre:3s; +subît subir ver 30.13 53.72 0 0.07 sub:imp:3s; +subîtes subir ver 30.13 53.72 0 0.07 ind:pas:2p; +suc suc nom m s 0.61 3.18 0.53 1.89 +successeur successeur nom m s 2.8 6.96 2.59 5.47 +successeurs successeur nom m p 2.8 6.96 0.21 1.49 +successibles successible adj p 0 0.07 0 0.07 +successif successif adj m s 0.69 18.99 0 0.2 +successifs successif adj m p 0.69 18.99 0.26 8.78 +succession succession nom f s 2.92 11.35 2.72 11.01 +successions succession nom f p 2.92 11.35 0.2 0.34 +successive successif adj f s 0.69 18.99 0 0.41 +successivement successivement adv 0.32 12.57 0.32 12.57 +successives successif adj f p 0.69 18.99 0.43 9.59 +successoral successoral adj m s 0.03 0 0.02 0 +successorale successoral adj f s 0.03 0 0.01 0 +succinct succinct adj m s 0.2 0.88 0.12 0.54 +succincte succinct adj f s 0.2 0.88 0.06 0.14 +succinctement succinctement adv 0.07 0.41 0.07 0.41 +succinctes succinct adj f p 0.2 0.88 0.02 0.2 +succion succion nom f s 0.33 1.69 0.33 1.49 +succions succion nom f p 0.33 1.69 0 0.2 +succomba succomber ver 4.79 9.66 0.14 0.88 ind:pas:3s; +succombai succomber ver 4.79 9.66 0 0.2 ind:pas:1s; +succombaient succomber ver 4.79 9.66 0 0.34 ind:imp:3p; +succombais succomber ver 4.79 9.66 0 0.14 ind:imp:1s; +succombait succomber ver 4.79 9.66 0.02 0.61 ind:imp:3s; +succombant succomber ver 4.79 9.66 0.17 0.34 par:pre; +succombe succomber ver 4.79 9.66 1.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +succombent succomber ver 4.79 9.66 0.32 0.68 ind:pre:3p; +succomber succomber ver 4.79 9.66 1.15 2.43 inf; +succombera succomber ver 4.79 9.66 0.13 0.2 ind:fut:3s; +succomberai succomber ver 4.79 9.66 0.01 0.07 ind:fut:1s; +succomberaient succomber ver 4.79 9.66 0 0.07 cnd:pre:3p; +succomberais succomber ver 4.79 9.66 0.01 0 cnd:pre:1s; +succomberait succomber ver 4.79 9.66 0.03 0.07 cnd:pre:3s; +succomberont succomber ver 4.79 9.66 0.31 0.07 ind:fut:3p; +succombes succomber ver 4.79 9.66 0.01 0 ind:pre:2s; +succombez succomber ver 4.79 9.66 0.03 0 imp:pre:2p;ind:pre:2p; +succombions succomber ver 4.79 9.66 0 0.07 ind:imp:1p; +succombèrent succomber ver 4.79 9.66 0 0.14 ind:pas:3p; +succombé succomber ver m s 4.79 9.66 1.24 2.43 par:pas; +succube succube nom m s 0.46 0.34 0.39 0.27 +succubes succube nom m p 0.46 0.34 0.07 0.07 +succulence succulence nom f s 0.01 0.68 0.01 0.68 +succulent succulent adj m s 1.46 2.77 0.71 1.15 +succulente succulent adj f s 1.46 2.77 0.51 0.61 +succulentes succulent adj f p 1.46 2.77 0.14 0.47 +succulents succulent adj m p 1.46 2.77 0.09 0.54 +succursale succursale nom f s 1.17 1.42 1.05 1.15 +succursales succursale nom f p 1.17 1.42 0.12 0.27 +succède succéder ver 4.25 33.78 0.6 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +succèdent succéder ver 4.25 33.78 0.32 5.07 ind:pre:3p; +succès succès nom m 39.58 53.72 39.58 53.72 +succéda succéder ver 4.25 33.78 0.16 1.82 ind:pas:3s; +succédaient succéder ver 4.25 33.78 0.06 5.74 ind:imp:3p; +succédait succéder ver 4.25 33.78 0.1 2.64 ind:imp:3s; +succédant succéder ver 4.25 33.78 0 2.77 par:pre; +succédané succédané nom m s 0.04 0.95 0.03 0.68 +succédanés succédané nom m p 0.04 0.95 0.01 0.27 +succédassent succéder ver 4.25 33.78 0 0.07 sub:imp:3p; +succéder succéder ver 4.25 33.78 1.78 4.53 inf; +succédera succéder ver 4.25 33.78 0.36 0.54 ind:fut:3s; +succéderai succéder ver 4.25 33.78 0.01 0 ind:fut:1s; +succéderaient succéder ver 4.25 33.78 0 0.07 cnd:pre:3p; +succéderait succéder ver 4.25 33.78 0.16 0.47 cnd:pre:3s; +succéderas succéder ver 4.25 33.78 0.01 0 ind:fut:2s; +succéderez succéder ver 4.25 33.78 0.02 0 ind:fut:2p; +succéderiez succéder ver 4.25 33.78 0.01 0 cnd:pre:2p; +succéderont succéder ver 4.25 33.78 0.21 0.2 ind:fut:3p; +succédions succéder ver 4.25 33.78 0 0.07 ind:imp:1p; +succédâmes succéder ver 4.25 33.78 0 0.07 ind:pas:1p; +succédât succéder ver 4.25 33.78 0 0.07 sub:imp:3s; +succédèrent succéder ver 4.25 33.78 0.02 2.5 ind:pas:3p; +succédé succéder ver m s 4.25 33.78 0.41 4.73 par:pas; +succédées succéder ver f p 4.25 33.78 0.02 0.07 par:pas; +suce sucer ver 23.45 18.51 7.84 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +sucent sucer ver 23.45 18.51 0.51 0.27 ind:pre:3p; +sucer sucer ver 23.45 18.51 9.68 4.86 inf;;inf;;inf;; +sucera sucer ver 23.45 18.51 0.22 0.07 ind:fut:3s; +sucerai sucer ver 23.45 18.51 0.1 0.27 ind:fut:1s; +suceraient sucer ver 23.45 18.51 0.02 0.07 cnd:pre:3p; +sucerais sucer ver 23.45 18.51 0.06 0 cnd:pre:1s;cnd:pre:2s; +sucerait sucer ver 23.45 18.51 0.07 0.14 cnd:pre:3s; +suces sucer ver 23.45 18.51 0.94 0.07 ind:pre:2s;sub:pre:2s; +sucette sucette nom f s 2.29 2.64 1.27 1.49 +sucettes sucette nom f p 2.29 2.64 1.02 1.15 +suceur suceur nom m s 2.88 0.54 0.96 0.07 +suceurs suceur nom m p 2.88 0.54 0.65 0.14 +suceuse suceur nom f s 2.88 0.54 0.55 0.34 +suceuses suceur nom f p 2.88 0.54 0.73 0 +sucez sucer ver 23.45 18.51 0.39 0.07 imp:pre:2p;ind:pre:2p; +sucra sucrer ver 1.9 4.73 0 0.14 ind:pas:3s; +sucrait sucrer ver 1.9 4.73 0.05 0.07 ind:imp:3s; +sucrant sucrer ver 1.9 4.73 0 0.07 par:pre; +sucre sucre nom m s 32.01 32.77 30.57 30.54 +sucrent sucrer ver 1.9 4.73 0.05 0.07 ind:pre:3p; +sucrer sucrer ver 1.9 4.73 0.38 0.74 inf; +sucrerait sucrer ver 1.9 4.73 0 0.14 cnd:pre:3s; +sucrerie sucrerie nom f s 2.82 3.58 0.25 0.88 +sucreries sucrerie nom f p 2.82 3.58 2.57 2.7 +sucres sucre nom m p 32.01 32.77 1.44 2.23 +sucrette sucrette nom f s 0.52 0.14 0.04 0 +sucrettes sucrette nom f p 0.52 0.14 0.48 0.14 +sucrier sucrier nom m s 0.58 1.15 0.51 0.95 +sucriers sucrier nom m p 0.58 1.15 0.05 0.14 +sucrins sucrin adj m p 0 0.07 0 0.07 +sucrière sucrier adj f s 1.79 0.2 1.47 0.07 +sucrières sucrier adj f p 1.79 0.2 0.32 0 +sucré sucré adj m s 3.69 9.05 2.19 4.39 +sucrée sucré adj f s 3.69 9.05 0.96 2.77 +sucrées sucré adj f p 3.69 9.05 0.42 0.88 +sucrés sucré adj m p 3.69 9.05 0.13 1.01 +sucs suc nom m p 0.61 3.18 0.08 1.28 +sucèrent sucer ver 23.45 18.51 0 0.07 ind:pas:3p; +sucé sucer ver m s 23.45 18.51 2.34 1.76 par:pas; +sucée sucer ver f s 23.45 18.51 0.12 0.27 par:pas; +sucées sucer ver f p 23.45 18.51 0.04 0.07 par:pas; +sucés sucer ver m p 23.45 18.51 0.06 0.07 par:pas; +sud sud nom m s 23.95 28.38 23.95 28.38 +sud_africain sud_africain nom m s 0.28 0.07 0.15 0 +sud_africain sud_africain adj f s 0.29 0.47 0.07 0.34 +sud_africain sud_africain adj f p 0.29 0.47 0.04 0 +sud_africain sud_africain nom m p 0.28 0.07 0.1 0.07 +sud_américain sud_américain adj m s 0.77 1.55 0.29 0.41 +sud_américain sud_américain adj f s 0.77 1.55 0.35 0.54 +sud_américain sud_américain adj f p 0.77 1.55 0.01 0.2 +sud_américain sud_américain adj m p 0.77 1.55 0.11 0.41 +sud_coréen sud_coréen adj m s 0.21 0 0.01 0 +sud_coréen sud_coréen nom m s 0.01 0 0.01 0 +sud_coréen sud_coréen adj f s 0.21 0 0.15 0 +sud_coréen sud_coréen adj f p 0.21 0 0.02 0 +sud_coréen sud_coréen adj m p 0.21 0 0.02 0 +sud_est sud_est nom m 3.3 2.3 3.3 2.3 +sud_ouest sud_ouest nom m 2.1 3.51 2.1 3.51 +sud_sud_est sud_sud_est nom m s 0.03 0 0.03 0 +sud_vietnamien sud_vietnamien adj m s 0.1 0.07 0.05 0 +sud_vietnamien sud_vietnamien adj f s 0.1 0.07 0.03 0 +sud_vietnamien sud_vietnamien nom m p 0.12 0.2 0.11 0.2 +sudation sudation nom f s 0.14 0.07 0.14 0.07 +sudatoires sudatoire adj f p 0 0.07 0 0.07 +sudiste sudiste nom s 2.82 0.68 1.94 0.47 +sudistes sudiste nom p 2.82 0.68 0.88 0.2 +sudoripare sudoripare adj s 0.14 0.14 0.02 0.07 +sudoripares sudoripare adj f p 0.14 0.14 0.13 0.07 +sudète sudète adj s 0 0.14 0 0.07 +sudètes sudète adj m p 0 0.14 0 0.07 +sue suer ver 7.28 10.34 0.85 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +suent suer ver 7.28 10.34 0.23 0.34 ind:pre:3p; +suer suer ver 7.28 10.34 2.72 2.77 inf; +suerai suer ver 7.28 10.34 0.03 0 ind:fut:1s; +suerais suer ver 7.28 10.34 0.01 0 cnd:pre:2s; +suerait suer ver 7.28 10.34 0 0.07 cnd:pre:3s; +suerte suerte nom f s 0.22 0 0.22 0 +sues suer ver 7.28 10.34 0.41 0.07 ind:pre:2s; +sueur sueur nom f s 11.71 60.34 10.27 57.3 +sueurs sueur nom f p 11.71 60.34 1.45 3.04 +suez suer ver 7.28 10.34 0.35 0.07 imp:pre:2p;ind:pre:2p; +suffi suffire ver m s 232.08 159.39 4.52 17.97 par:pas; +sufficit sufficit adv 0 0.07 0 0.07 +suffira suffire ver 232.08 159.39 13.85 4.39 ind:fut:3s; +suffirai suffire ver 232.08 159.39 0.02 0 ind:fut:1s; +suffiraient suffire ver 232.08 159.39 0.63 1.82 cnd:pre:3p; +suffirais suffire ver 232.08 159.39 0.02 0 cnd:pre:1s; +suffirait suffire ver 232.08 159.39 4.81 11.89 cnd:pre:3s; +suffire suffire ver 232.08 159.39 5.24 4.86 inf; +suffirent suffire ver 232.08 159.39 0.05 0.95 ind:pas:3p; +suffiront suffire ver 232.08 159.39 2.23 0.68 ind:fut:3p; +suffis suffire ver 232.08 159.39 0.53 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +suffisaient suffire ver 232.08 159.39 0.73 4.93 ind:imp:3p; +suffisais suffire ver 232.08 159.39 0.01 0.27 ind:imp:1s; +suffisait suffire ver 232.08 159.39 6.56 44.66 ind:imp:3s; +suffisamment suffisamment adv 18.3 20.07 18.3 20.07 +suffisance suffisance nom f s 0.9 3.99 0.9 3.92 +suffisances suffisance nom f p 0.9 3.99 0 0.07 +suffisant suffisant adj m s 17.56 18.99 12.95 10 +suffisante suffisant adj f s 17.56 18.99 2.98 5.61 +suffisantes suffisant adj f p 17.56 18.99 0.93 2.03 +suffisants suffisant adj m p 17.56 18.99 0.7 1.35 +suffise suffire ver 232.08 159.39 0.8 1.15 sub:pre:3s; +suffisent suffire ver 232.08 159.39 2.91 4.32 ind:pre:3p; +suffisez suffire ver 232.08 159.39 0.01 0.14 ind:pre:2p; +suffisions suffire ver 232.08 159.39 0.11 0.14 ind:imp:1p; +suffisons suffire ver 232.08 159.39 0.02 0 ind:pre:1p; +suffit suffire ver 232.08 159.39 188.1 59.66 ind:pre:3s;ind:pas:3s; +suffixes suffixe nom m p 0 0.14 0 0.14 +suffocant suffocant adj m s 0.33 3.78 0.24 1.28 +suffocante suffocant adj f s 0.33 3.78 0.06 1.76 +suffocantes suffocant adj f p 0.33 3.78 0.01 0.27 +suffocants suffocant adj m p 0.33 3.78 0.01 0.47 +suffocation suffocation nom f s 0.42 1.35 0.42 1.01 +suffocations suffocation nom f p 0.42 1.35 0 0.34 +suffoqua suffoquer ver 2.48 11.76 0 0.47 ind:pas:3s; +suffoquai suffoquer ver 2.48 11.76 0 0.07 ind:pas:1s; +suffoquaient suffoquer ver 2.48 11.76 0 0.27 ind:imp:3p; +suffoquais suffoquer ver 2.48 11.76 0.15 0.47 ind:imp:1s; +suffoquait suffoquer ver 2.48 11.76 0.07 1.89 ind:imp:3s; +suffoquant suffoquer ver 2.48 11.76 0.01 1.55 par:pre; +suffoque suffoquer ver 2.48 11.76 0.93 1.69 ind:pre:1s;ind:pre:3s; +suffoquent suffoquer ver 2.48 11.76 0.02 0.14 ind:pre:3p; +suffoquer suffoquer ver 2.48 11.76 0.91 0.81 inf; +suffoquera suffoquer ver 2.48 11.76 0.03 0 ind:fut:3s; +suffoquerait suffoquer ver 2.48 11.76 0.01 0 cnd:pre:3s; +suffoqueront suffoquer ver 2.48 11.76 0.01 0.07 ind:fut:3p; +suffoquez suffoquer ver 2.48 11.76 0.03 0.07 imp:pre:2p;ind:pre:2p; +suffoquions suffoquer ver 2.48 11.76 0 0.2 ind:imp:1p; +suffoquons suffoquer ver 2.48 11.76 0 0.14 imp:pre:1p;ind:pre:1p; +suffoquèrent suffoquer ver 2.48 11.76 0 0.07 ind:pas:3p; +suffoqué suffoquer ver m s 2.48 11.76 0.13 2.23 par:pas; +suffoquée suffoquer ver f s 2.48 11.76 0.15 1.28 par:pas; +suffoqués suffoquer ver m p 2.48 11.76 0.04 0.34 par:pas; +suffrage suffrage nom m s 0.6 3.99 0.33 2.5 +suffrages suffrage nom m p 0.6 3.99 0.27 1.49 +suffragette suffragette nom f s 0.2 0.27 0.12 0.27 +suffragettes suffragette nom f p 0.2 0.27 0.08 0 +suffète suffète nom m s 0 0.07 0 0.07 +suffît suffire ver 232.08 159.39 0.64 0.14 sub:imp:3s; +suggestibilité suggestibilité nom f s 0.02 0 0.02 0 +suggestif suggestif adj m s 0.58 1.22 0.27 0.27 +suggestifs suggestif adj m p 0.58 1.22 0.01 0.14 +suggestion suggestion nom f s 8.35 7.77 5.63 3.51 +suggestionner suggestionner ver 0.02 0.14 0.01 0.07 inf; +suggestionné suggestionner ver m s 0.02 0.14 0.01 0.07 par:pas; +suggestions suggestion nom f p 8.35 7.77 2.71 4.26 +suggestive suggestif adj f s 0.58 1.22 0.16 0.74 +suggestives suggestif adj f p 0.58 1.22 0.14 0.07 +suggestivité suggestivité nom f s 0.01 0 0.01 0 +suggère suggérer ver 29 25.34 11.47 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +suggèrent suggérer ver 29 25.34 0.82 0.54 ind:pre:3p; +suggères suggérer ver 29 25.34 1.54 0 ind:pre:2s; +suggéra suggérer ver 29 25.34 0.11 4.46 ind:pas:3s; +suggérai suggérer ver 29 25.34 0.01 1.01 ind:pas:1s; +suggéraient suggérer ver 29 25.34 0.04 0.27 ind:imp:3p; +suggérais suggérer ver 29 25.34 0.47 0.54 ind:imp:1s;ind:imp:2s; +suggérait suggérer ver 29 25.34 0.23 3.24 ind:imp:3s; +suggérant suggérer ver 29 25.34 0.89 0.95 par:pre; +suggérer suggérer ver 29 25.34 4.2 3.45 inf;;inf;;inf;; +suggérera suggérer ver 29 25.34 0.01 0.07 ind:fut:3s; +suggérerai suggérer ver 29 25.34 0.01 0.07 ind:fut:1s; +suggérerais suggérer ver 29 25.34 0.32 0 cnd:pre:1s;cnd:pre:2s; +suggérerait suggérer ver 29 25.34 0.16 0.27 cnd:pre:3s; +suggérez suggérer ver 29 25.34 3.29 0.07 imp:pre:2p;ind:pre:2p; +suggériez suggérer ver 29 25.34 0.17 0 ind:imp:2p; +suggérions suggérer ver 29 25.34 0.01 0.07 ind:imp:1p; +suggérons suggérer ver 29 25.34 0.18 0.07 imp:pre:1p;ind:pre:1p; +suggérât suggérer ver 29 25.34 0 0.14 sub:imp:3s; +suggérèrent suggérer ver 29 25.34 0 0.07 ind:pas:3p; +suggéré suggérer ver m s 29 25.34 4.76 3.99 par:pas; +suggérée suggérer ver f s 29 25.34 0.14 0.95 par:pas; +suggérées suggérer ver f p 29 25.34 0.15 0.41 par:pas; +suggérés suggérer ver m p 29 25.34 0.02 0.14 par:pas; +sui sui nom m s 0.55 0.27 0.55 0.27 +sui_generis sui_generis adj m p 0.23 0.07 0.23 0.07 +suicida suicider ver 30.09 11.35 0.3 0.47 ind:pas:3s; +suicidaient suicider ver 30.09 11.35 0.01 0.14 ind:imp:3p; +suicidaire suicidaire adj s 2.63 1.22 2.63 1.22 +suicidaires suicidaire nom p 1.79 1.35 1.23 0.68 +suicidait suicider ver 30.09 11.35 0.09 0.27 ind:imp:3s; +suicidant suicidant nom m s 0.08 0.2 0.08 0.14 +suicidants suicidant nom m p 0.08 0.2 0 0.07 +suicide suicide nom m s 27.33 18.92 25.34 17.5 +suicident suicider ver 30.09 11.35 0.62 0.41 ind:pre:3p; +suicider suicider ver 30.09 11.35 10.49 4.19 inf; +suicidera suicider ver 30.09 11.35 0.09 0.27 ind:fut:3s; +suiciderai suicider ver 30.09 11.35 0.48 0.07 ind:fut:1s; +suiciderais suicider ver 30.09 11.35 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +suiciderait suicider ver 30.09 11.35 0.33 0.14 cnd:pre:3s; +suiciderez suicider ver 30.09 11.35 0 0.14 ind:fut:2p; +suicideriez suicider ver 30.09 11.35 0.01 0 cnd:pre:2p; +suicides suicide nom m p 27.33 18.92 1.98 1.42 +suicidez suicider ver 30.09 11.35 0.27 0 ind:pre:2p; +suicidiez suicider ver 30.09 11.35 0.04 0 ind:imp:2p; +suicidons suicider ver 30.09 11.35 0.11 0.07 imp:pre:1p;ind:pre:1p; +suicidât suicider ver 30.09 11.35 0 0.07 sub:imp:3s; +suicidèrent suicider ver 30.09 11.35 0 0.07 ind:pas:3p; +suicidé suicider ver m s 30.09 11.35 8.38 1.82 par:pas; +suicidée suicider ver f s 30.09 11.35 2.75 1.35 par:pas; +suicidées suicider ver f p 30.09 11.35 0.15 0 par:pas; +suicidés suicider ver m p 30.09 11.35 1.25 0.34 par:pas; +suie suie nom f s 0.72 7.43 0.72 7.3 +suies suie nom f p 0.72 7.43 0 0.14 +suif suif nom m s 0.96 2.03 0.96 2.03 +suifer suifer ver 0 0.14 0 0.07 inf; +suiffard suiffard nom m s 0 0.07 0 0.07 +suiffeuses suiffeux adj f p 0 0.14 0 0.07 +suiffeux suiffeux adj m 0 0.14 0 0.07 +suiffé suiffer ver m s 0 0.27 0 0.14 par:pas; +suiffée suiffer ver f s 0 0.27 0 0.07 par:pas; +suiffés suiffer ver m p 0 0.27 0 0.07 par:pas; +suifés suifer ver m p 0 0.14 0 0.07 par:pas; +suint suint nom m s 0 0.88 0 0.88 +suinta suinter ver 0.96 5.95 0 0.14 ind:pas:3s; +suintaient suinter ver 0.96 5.95 0.02 0.54 ind:imp:3p; +suintait suinter ver 0.96 5.95 0.02 1.96 ind:imp:3s; +suintant suinter ver 0.96 5.95 0.1 0.41 par:pre; +suintante suintant adj f s 0.17 2.7 0.05 0.34 +suintantes suintant adj f p 0.17 2.7 0.01 0.68 +suintants suintant adj m p 0.17 2.7 0.06 0.88 +suinte suinter ver 0.96 5.95 0.43 1.55 imp:pre:2s;ind:pre:3s; +suintement suintement nom m s 0.12 0.81 0.11 0.54 +suintements suintement nom m p 0.12 0.81 0.01 0.27 +suintent suinter ver 0.96 5.95 0.06 0.47 ind:pre:3p; +suinter suinter ver 0.96 5.95 0.2 0.74 inf; +suinté suinter ver m s 0.96 5.95 0.13 0.14 par:pas; +suis être aux 8074.24 6501.82 1272.28 560.47 ind:pre:1s; +suisse suisse adj s 5.01 10.27 3.91 6.62 +suisses suisse adj p 5.01 10.27 1.1 3.58 +suissesse suisse nom f s 1.42 3.38 0.11 0.47 +suissesses suisse nom f p 1.42 3.38 0 0.07 +suit suivre ver 2090.54 949.12 32.57 29.39 ind:pre:3s; +suite suite nom f s 275.9 275.81 274.18 270.88 +suites suite nom f p 275.9 275.81 1.72 4.93 +suitée suitée adj f s 0 0.07 0 0.07 +suiv suiv adj 0.01 0 0.01 0 +suivaient suivre ver 2090.54 949.12 1.11 15.54 ind:imp:3p; +suivais suivre ver 2090.54 949.12 3.46 8.11 ind:imp:1s;ind:imp:2s; +suivait suivre ver 2090.54 949.12 6.09 40.54 ind:imp:3s; +suivant suivant pre 2.61 15.47 2.61 15.47 +suivante suivant adj f s 28.81 51.08 11.2 19.46 +suivantes suivant adj f p 28.81 51.08 2.55 5.61 +suivants suivant adj m p 28.81 51.08 4.26 9.19 +suive suivre ver 2090.54 949.12 4.09 1.62 sub:pre:1s;sub:pre:3s; +suivent suivre ver 2090.54 949.12 11.14 12.64 ind:pre:3p;sub:pre:3p; +suives suivre ver 2090.54 949.12 0.98 0 sub:pre:2s; +suiveur suiveur nom m s 0.27 0.88 0.07 0.27 +suiveurs suiveur nom m p 0.27 0.88 0.17 0.54 +suiveuse suiveur nom f s 0.27 0.88 0.03 0.07 +suiveuses suiveur adj f p 0.02 0.27 0 0.14 +suivez suivre ver 2090.54 949.12 57.03 6.35 imp:pre:2p;ind:pre:2p; +suivez_moi_jeune_homme suivez_moi_jeune_homme nom m s 0 0.07 0 0.07 +suivi suivre ver m s 2090.54 949.12 34.99 48.04 par:pas; +suivie suivre ver f s 2090.54 949.12 9.18 15.54 par:pas; +suivies suivre ver f p 2090.54 949.12 1.21 3.51 par:pas; +suiviez suivre ver 2090.54 949.12 1.27 0.14 ind:imp:2p;sub:pre:2p; +suivions suivre ver 2090.54 949.12 0.24 2.7 ind:imp:1p; +suivirent suivre ver 2090.54 949.12 0.69 15.27 ind:pas:3p; +suivis suivre ver m p 2090.54 949.12 4.8 11.42 ind:pas:1s;par:pas;par:pas; +suivissent suivre ver 2090.54 949.12 0 0.2 sub:imp:3p; +suivistes suiviste nom p 0 0.07 0 0.07 +suivit suivre ver 2090.54 949.12 0.7 35.47 ind:pas:3s; +suivons suivre ver 2090.54 949.12 4.45 3.11 imp:pre:1p;ind:pre:1p; +suivra suivre ver 2090.54 949.12 5.27 2.7 ind:fut:3s; +suivrai suivre ver 2090.54 949.12 4.21 1.15 ind:fut:1s; +suivraient suivre ver 2090.54 949.12 0.58 1.42 cnd:pre:3p; +suivrais suivre ver 2090.54 949.12 1.62 0.95 cnd:pre:1s;cnd:pre:2s; +suivrait suivre ver 2090.54 949.12 0.96 3.18 cnd:pre:3s; +suivras suivre ver 2090.54 949.12 0.64 0.2 ind:fut:2s; +suivre suivre ver 2090.54 949.12 73.92 80.14 inf;; +suivrez suivre ver 2090.54 949.12 1.18 0.2 ind:fut:2p; +suivriez suivre ver 2090.54 949.12 0.06 0 cnd:pre:2p; +suivrions suivre ver 2090.54 949.12 0 0.14 cnd:pre:1p; +suivrons suivre ver 2090.54 949.12 1.94 0.34 ind:fut:1p; +suivront suivre ver 2090.54 949.12 2.46 2.16 ind:fut:3p; +suivîmes suivre ver 2090.54 949.12 0.02 0.74 ind:pas:1p; +suivît suivre ver 2090.54 949.12 0 0.41 sub:imp:3s; +sujet sujet nom m s 120.42 105.74 107.92 88.04 +sujets sujet nom m p 120.42 105.74 12.51 17.7 +sujette sujet adj f s 3.9 6.62 0.7 1.42 +sujettes sujet adj f p 3.9 6.62 0.09 0.2 +sujétion sujétion nom f s 0.03 1.15 0.03 0.81 +sujétions sujétion nom f p 0.03 1.15 0 0.34 +sulfamide sulfamide nom m s 0.19 0.14 0.02 0 +sulfamides sulfamide nom m p 0.19 0.14 0.17 0.14 +sulfatages sulfatage nom m p 0 0.07 0 0.07 +sulfatant sulfater ver 0.04 0.27 0 0.07 par:pre; +sulfate sulfate nom m s 0.46 0.68 0.45 0.47 +sulfater sulfater ver 0.04 0.27 0.01 0.2 inf; +sulfates sulfate nom m p 0.46 0.68 0.01 0.2 +sulfateuse sulfateur nom f s 0.06 0.27 0.06 0.14 +sulfateuses sulfateur nom f p 0.06 0.27 0 0.14 +sulfaté sulfaté adj m s 0.1 0.07 0.1 0 +sulfatées sulfaté adj f p 0.1 0.07 0 0.07 +sulfhydrique sulfhydrique adj m s 0.01 0.07 0.01 0.07 +sulfite sulfite nom m s 0.03 0.07 0.03 0.07 +sulfonate sulfonate nom m s 0.03 0 0.03 0 +sulfonique sulfonique adj s 0.01 0 0.01 0 +sulfonée sulfoner ver f s 0 0.14 0 0.07 par:pas; +sulfonés sulfoner ver m p 0 0.14 0 0.07 par:pas; +sulfure sulfure nom m s 0.15 0.68 0.14 0.34 +sulfures sulfure nom m p 0.15 0.68 0.01 0.34 +sulfureuse sulfureux adj f s 0.5 1.89 0.27 0.95 +sulfureuses sulfureux adj f p 0.5 1.89 0.16 0.47 +sulfureux sulfureux adj m 0.5 1.89 0.07 0.47 +sulfurique sulfurique adj m s 0.82 0.41 0.82 0.41 +sulfurisé sulfurisé adj m s 0.04 0.2 0.04 0.2 +sulfuré sulfuré adj m s 0.03 0 0.02 0 +sulfurée sulfuré adj f s 0.03 0 0.01 0 +sulky sulky nom m s 0.14 0.41 0.14 0.41 +sulpicien sulpicien adj m s 0 0.61 0 0.2 +sulpicienne sulpicien adj f s 0 0.61 0 0.27 +sulpiciennes sulpicien adj f p 0 0.61 0 0.14 +sultan sultan nom m s 1.75 7.09 1.68 4.86 +sultanat sultanat nom m s 0.02 0.2 0.02 0.2 +sultane sultane nom f s 0.05 3.78 0.05 3.78 +sultanes sultan nom f p 1.75 7.09 0 0.07 +sultans sultan nom m p 1.75 7.09 0.07 2.16 +sumac sumac nom m s 0.13 0.14 0.13 0.14 +summum summum nom m s 0.56 0.47 0.56 0.47 +sumo sumo nom m s 0.88 0.07 0.88 0.07 +sumérien sumérien nom m s 0.04 0 0.04 0 +sunlight sunlight nom m s 0.16 0.41 0.16 0 +sunlights sunlight nom m p 0.16 0.41 0 0.41 +sunna sunna nom f s 0.02 0.07 0.02 0.07 +sunnites sunnite nom p 0.02 0 0.02 0 +suons suer ver 7.28 10.34 0.02 0 ind:pre:1p; +super super adj 154.83 7.09 154.83 7.09 +super_espion super_espion nom m s 0.02 0 0.02 0 +super_grand super_grand nom m p 0 0.07 0 0.07 +super_pilote super_pilote adj s 0.01 0 0.01 0 +super_puissance super_puissance nom f p 0.03 0 0.03 0 +superbe superbe adj s 53.42 23.85 45.32 19.05 +superbement superbement adv 0.3 2.64 0.3 2.64 +superbes superbe adj p 53.42 23.85 8.1 4.8 +supercalculateur supercalculateur nom m s 0.06 0 0.06 0 +supercarburant supercarburant nom m s 0.02 0 0.02 0 +superchampion superchampion nom m s 0.01 0.07 0 0.07 +superchampions superchampion nom m p 0.01 0.07 0.01 0 +supercherie supercherie nom f s 1.6 1.76 1.55 1.69 +supercheries supercherie nom f p 1.6 1.76 0.04 0.07 +superfamille superfamille nom f s 0.01 0 0.01 0 +superficialité superficialité nom f s 0.27 0.34 0.26 0.34 +superficialités superficialité nom f p 0.27 0.34 0.01 0 +superficie superficie nom f s 0.35 1.01 0.35 1.01 +superficiel superficiel adj m s 5.71 5.61 2.12 1.96 +superficielle superficiel adj f s 5.71 5.61 1.93 2.23 +superficiellement superficiellement adv 0.06 0.41 0.06 0.41 +superficielles superficiel adj f p 5.71 5.61 1 0.68 +superficiels superficiel adj m p 5.71 5.61 0.67 0.74 +superfin superfin adj m s 0 0.07 0 0.07 +superflu superflu adj m s 2.94 4.46 1.41 2.16 +superflue superflu adj f s 2.94 4.46 0.16 1.08 +superflues superflu adj f p 2.94 4.46 0.35 0.68 +superfluité superfluité nom f s 0 0.2 0 0.07 +superfluités superfluité nom f p 0 0.2 0 0.14 +superflus superflu adj m p 2.94 4.46 1.01 0.54 +superforteresses superforteresse adj f p 0 0.07 0 0.07 +superfétatoire superfétatoire adj s 0.03 0.54 0.03 0.27 +superfétatoires superfétatoire adj f p 0.03 0.54 0 0.27 +supergrand supergrand nom m s 0 0.07 0 0.07 +superintendant superintendant nom m s 0.1 0.14 0.1 0.07 +superintendante superintendante nom f s 0 0.07 0 0.07 +superintendants superintendant nom m p 0.1 0.14 0 0.07 +superlatif superlatif adj m s 0.03 0.07 0.02 0.07 +superlatifs superlatif nom m p 0.02 0.27 0.02 0.27 +superlative superlatif adj f s 0.03 0.07 0.01 0 +superlativement superlativement adv 0 0.07 0 0.07 +superman superman nom m 1.52 0.2 1.12 0.14 +supermarché supermarché nom m s 12.19 5.68 10.68 5.34 +supermarchés supermarché nom m p 12.19 5.68 1.51 0.34 +supermen superman nom m p 1.52 0.2 0.4 0.07 +supernova supernova nom f s 0.58 0.07 0.55 0.07 +supernovas supernova nom f p 0.58 0.07 0.04 0 +superordinateur superordinateur nom m s 0.03 0 0.03 0 +superphosphates superphosphate nom m p 0 0.07 0 0.07 +superposa superposer ver 0.56 7.5 0 0.07 ind:pas:3s; +superposable superposable adj s 0 0.2 0 0.07 +superposables superposable adj m p 0 0.2 0 0.14 +superposaient superposer ver 0.56 7.5 0 1.01 ind:imp:3p; +superposait superposer ver 0.56 7.5 0 0.34 ind:imp:3s; +superposant superposer ver 0.56 7.5 0.02 0.74 par:pre; +superpose superposer ver 0.56 7.5 0.04 0.81 ind:pre:1s;ind:pre:3s; +superposent superposer ver 0.56 7.5 0.26 1.35 ind:pre:3p; +superposer superposer ver 0.56 7.5 0.03 0.88 inf; +superposez superposer ver 0.56 7.5 0.01 0 ind:pre:2p; +superposition superposition nom f s 0.03 0.95 0.02 0.61 +superpositions superposition nom f p 0.03 0.95 0.01 0.34 +superposé superposé adj m s 0.37 5 0.1 0.14 +superposée superposer ver f s 0.56 7.5 0.01 0.27 par:pas; +superposées superposé adj f p 0.37 5 0.04 1.96 +superposés superposé adj m p 0.37 5 0.23 2.84 +superpouvoirs superpouvoir nom m p 0.2 0 0.2 0 +superproduction superproduction nom f s 0.08 0.27 0.06 0.2 +superproductions superproduction nom f p 0.08 0.27 0.02 0.07 +superpuissance superpuissance nom f s 0.34 0 0.22 0 +superpuissances superpuissance nom f p 0.34 0 0.12 0 +superpuissant superpuissant adj m s 0.04 0.07 0.01 0 +superpuissante superpuissant adj f s 0.04 0.07 0.01 0 +superpuissants superpuissant adj m p 0.04 0.07 0.01 0.07 +supers super nom m p 73.26 2.77 1.78 0.07 +supersonique supersonique adj s 0.33 0.2 0.11 0.07 +supersoniques supersonique adj p 0.33 0.2 0.23 0.14 +superstar superstar nom f s 1.82 0.41 1.67 0.34 +superstars superstar nom f p 1.82 0.41 0.15 0.07 +superstitieuse superstitieux adj f s 2.54 3.92 0.3 1.82 +superstitieusement superstitieusement adv 0 0.34 0 0.34 +superstitieuses superstitieux adj f p 2.54 3.92 0.17 0.14 +superstitieux superstitieux adj m 2.54 3.92 2.08 1.96 +superstition superstition nom f s 6.11 5.95 3.61 4.19 +superstitions superstition nom f p 6.11 5.95 2.5 1.76 +superstructure superstructure nom f s 0.11 1.35 0.11 0.2 +superstructures superstructure nom f p 0.11 1.35 0 1.15 +supertanker supertanker nom m s 0.03 0 0.03 0 +supervisa superviser ver 3.61 0.74 0.02 0 ind:pas:3s; +supervisais superviser ver 3.61 0.74 0.03 0 ind:imp:1s; +supervisait superviser ver 3.61 0.74 0.14 0.27 ind:imp:3s; +supervisant superviser ver 3.61 0.74 0.03 0 par:pre; +supervise superviser ver 3.61 0.74 1.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supervisent superviser ver 3.61 0.74 0.05 0 ind:pre:3p; +superviser superviser ver 3.61 0.74 1.03 0.2 inf; +supervisera superviser ver 3.61 0.74 0.11 0 ind:fut:3s; +superviserai superviser ver 3.61 0.74 0.09 0 ind:fut:1s; +superviserais superviser ver 3.61 0.74 0.01 0 cnd:pre:1s; +superviserait superviser ver 3.61 0.74 0.04 0 cnd:pre:3s; +superviseras superviser ver 3.61 0.74 0.02 0 ind:fut:2s; +superviserez superviser ver 3.61 0.74 0.04 0 ind:fut:2p; +superviserons superviser ver 3.61 0.74 0.01 0 ind:fut:1p; +superviseront superviser ver 3.61 0.74 0.01 0.07 ind:fut:3p; +superviseur superviseur nom m s 1.99 0.07 1.66 0 +superviseurs superviseur nom m p 1.99 0.07 0.33 0.07 +supervisez superviser ver 3.61 0.74 0.04 0 ind:pre:2p; +supervisiez superviser ver 3.61 0.74 0.05 0 ind:imp:2p; +supervision supervision nom f s 0.68 0.27 0.68 0.2 +supervisions supervision nom f p 0.68 0.27 0 0.07 +supervisons superviser ver 3.61 0.74 0.05 0 ind:pre:1p; +supervisé superviser ver m s 3.61 0.74 0.62 0.07 par:pas; +supervisée superviser ver f s 3.61 0.74 0.11 0 par:pas; +supervisées superviser ver f p 3.61 0.74 0.04 0 par:pas; +supervisés superviser ver m p 3.61 0.74 0.03 0.07 par:pas; +supin supin nom m s 0 0.07 0 0.07 +supination supination nom f s 0.05 0.14 0.05 0.14 +supplanta supplanter ver 0.6 1.62 0 0.07 ind:pas:3s; +supplantait supplanter ver 0.6 1.62 0.03 0.2 ind:imp:3s; +supplantant supplanter ver 0.6 1.62 0.01 0.07 par:pre; +supplante supplanter ver 0.6 1.62 0.07 0 ind:pre:3s; +supplantent supplanter ver 0.6 1.62 0.04 0.07 ind:pre:3p; +supplanter supplanter ver 0.6 1.62 0.2 0.34 inf; +supplanté supplanter ver m s 0.6 1.62 0.26 0.54 par:pas; +supplantée supplanter ver f s 0.6 1.62 0 0.34 par:pas; +supplia supplier ver 53.66 34.46 0.55 3.65 ind:pas:3s; +suppliai supplier ver 53.66 34.46 0.01 0.81 ind:pas:1s; +suppliaient supplier ver 53.66 34.46 0.08 0.95 ind:imp:3p; +suppliais supplier ver 53.66 34.46 0.27 0.88 ind:imp:1s;ind:imp:2s; +suppliait supplier ver 53.66 34.46 0.95 5.07 ind:imp:3s; +suppliant supplier ver 53.66 34.46 0.57 3.11 par:pre; +suppliante suppliant adj f s 1.2 7.09 0.5 2.7 +suppliantes suppliant adj f p 1.2 7.09 0 0.47 +suppliants suppliant adj m p 1.2 7.09 0.5 1.15 +supplication supplication nom f s 0.33 4.8 0.11 2.03 +supplications supplication nom f p 0.33 4.8 0.22 2.77 +supplice supplice nom m s 3.77 13.38 3.13 11.35 +supplices supplice nom m p 3.77 13.38 0.64 2.03 +supplicia supplicier ver 0.48 0.88 0 0.07 ind:pas:3s; +suppliciant suppliciant adj m s 0 0.27 0 0.14 +suppliciantes suppliciant adj f p 0 0.27 0 0.14 +supplicient supplicier ver 0.48 0.88 0 0.14 ind:pre:3p; +supplicier supplicier ver 0.48 0.88 0.14 0.41 inf; +supplicierez supplicier ver 0.48 0.88 0.14 0 ind:fut:2p; +supplicié supplicier ver m s 0.48 0.88 0.1 0.14 par:pas; +suppliciée supplicié nom f s 0.01 2.64 0.01 0.2 +suppliciées supplicié nom f p 0.01 2.64 0 0.14 +suppliciés supplicier ver m p 0.48 0.88 0.11 0.07 par:pas; +supplie supplier ver 53.66 34.46 37.38 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +supplient supplier ver 53.66 34.46 0.12 0.74 ind:pre:3p; +supplier supplier ver 53.66 34.46 4.96 4.19 ind:pre:2p;inf; +suppliera supplier ver 53.66 34.46 0.1 0 ind:fut:3s; +supplierai supplier ver 53.66 34.46 0.39 0.07 ind:fut:1s; +supplieraient supplier ver 53.66 34.46 0.02 0 cnd:pre:3p; +supplierais supplier ver 53.66 34.46 0.03 0 cnd:pre:1s;cnd:pre:2s; +supplierait supplier ver 53.66 34.46 0.05 0.07 cnd:pre:3s; +supplieras supplier ver 53.66 34.46 0.44 0 ind:fut:2s; +supplierez supplier ver 53.66 34.46 0.06 0 ind:fut:2p; +supplieriez supplier ver 53.66 34.46 0.01 0 cnd:pre:2p; +supplieront supplier ver 53.66 34.46 0.17 0 ind:fut:3p; +supplies supplier ver 53.66 34.46 0.42 0.14 ind:pre:2s; +suppliez supplier ver 53.66 34.46 0.17 0 imp:pre:2p;ind:pre:2p; +supplions supplier ver 53.66 34.46 0.27 0.2 ind:pre:1p; +supplique supplique nom f s 0.28 1.08 0.21 0.68 +suppliques supplique nom f p 0.28 1.08 0.07 0.41 +suppliât supplier ver 53.66 34.46 0 0.07 sub:imp:3s; +supplié supplier ver m s 53.66 34.46 4.33 2.97 par:pas; +suppliée supplier ver f s 53.66 34.46 1.89 0.41 par:pas; +suppliés supplier ver m p 53.66 34.46 0.42 0.14 par:pas; +suppléaient suppléer ver 0.19 2.3 0 0.2 ind:imp:3p; +suppléait suppléer ver 0.19 2.3 0.01 0.34 ind:imp:3s; +suppléance suppléance nom f s 0.14 0 0.14 0 +suppléant suppléant nom m s 0.5 0.54 0.34 0.41 +suppléante suppléant adj f s 0.2 0.2 0.03 0 +suppléants suppléant nom m p 0.5 0.54 0.14 0.14 +supplée suppléer ver 0.19 2.3 0 0.47 ind:pre:3s; +suppléent suppléer ver 0.19 2.3 0 0.07 ind:pre:3p; +suppléer suppléer ver 0.19 2.3 0.14 0.68 inf; +suppléeraient suppléer ver 0.19 2.3 0 0.07 cnd:pre:3p; +suppléerait suppléer ver 0.19 2.3 0 0.14 cnd:pre:3s; +suppléerez suppléer ver 0.19 2.3 0 0.07 ind:fut:2p; +supplément supplément nom m s 2.8 7.5 2.6 6.42 +supplémentaire supplémentaire adj s 8.97 15.68 4.19 10.2 +supplémentaires supplémentaire adj p 8.97 15.68 4.79 5.47 +supplémenter supplémenter ver 0 0.14 0 0.07 inf; +suppléments supplément nom m p 2.8 7.5 0.2 1.08 +supplémentées supplémenter ver f p 0 0.14 0 0.07 par:pas; +supplétifs supplétif nom m p 0 0.14 0 0.14 +supplétive supplétif adj f s 0 0.14 0 0.14 +suppléé suppléer ver m s 0.19 2.3 0 0.07 par:pas; +support support nom m s 2.94 6.42 2.71 5.2 +supporta supporter ver 86.04 81.22 0.05 1.01 ind:pas:3s; +supportable supportable adj s 1.73 6.22 1.6 5 +supportables supportable adj p 1.73 6.22 0.13 1.22 +supportai supporter ver 86.04 81.22 0.01 0.14 ind:pas:1s; +supportaient supporter ver 86.04 81.22 0.14 1.49 ind:imp:3p; +supportais supporter ver 86.04 81.22 2.29 2.3 ind:imp:1s;ind:imp:2s; +supportait supporter ver 86.04 81.22 2.38 10.47 ind:imp:3s; +supportant supporter ver 86.04 81.22 0.14 2.43 par:pre; +supporte supporter ver 86.04 81.22 29.14 12.43 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +supportent supporter ver 86.04 81.22 2.14 2.23 ind:pre:3p;sub:pre:3p; +supporter supporter ver 86.04 81.22 30.04 33.45 inf; +supportera supporter ver 86.04 81.22 1.46 0.47 ind:fut:3s; +supporterai supporter ver 86.04 81.22 2.27 0.95 ind:fut:1s; +supporteraient supporter ver 86.04 81.22 0.23 0.2 cnd:pre:3p; +supporterais supporter ver 86.04 81.22 2.58 1.01 cnd:pre:1s;cnd:pre:2s; +supporterait supporter ver 86.04 81.22 1.18 3.38 cnd:pre:3s; +supporteras supporter ver 86.04 81.22 0.52 0.07 ind:fut:2s; +supporterez supporter ver 86.04 81.22 0.25 0.14 ind:fut:2p; +supporteriez supporter ver 86.04 81.22 0.05 0.2 cnd:pre:2p; +supporterons supporter ver 86.04 81.22 0.22 0.07 ind:fut:1p; +supporteront supporter ver 86.04 81.22 0.13 0.07 ind:fut:3p; +supporters supporter nom m p 6.07 5.54 1.75 2.91 +supportes supporter ver 86.04 81.22 3.86 0.34 ind:pre:2s; +supporteur supporteur nom m s 0.21 0.07 0.02 0 +supportez supporter ver 86.04 81.22 1.37 0.54 imp:pre:2p;ind:pre:2p; +supportiez supporter ver 86.04 81.22 0.18 0 ind:imp:2p; +supportions supporter ver 86.04 81.22 0 0.41 ind:imp:1p; +supportons supporter ver 86.04 81.22 0.44 0.27 imp:pre:1p;ind:pre:1p; +supportrice supporteur nom f s 0.21 0.07 0.06 0 +supportrices supporteur nom f p 0.21 0.07 0.13 0.07 +supports support nom m p 2.94 6.42 0.22 1.22 +support_chaussette support_chaussette nom m p 0 0.07 0 0.07 +supportât supporter ver 86.04 81.22 0 0.27 sub:imp:3s; +supportèrent supporter ver 86.04 81.22 0 0.07 ind:pas:3p; +supporté supporter ver m s 86.04 81.22 4.56 5 par:pas; +supportée supporter ver f s 86.04 81.22 0.2 0.81 par:pas; +supportées supporter ver f p 86.04 81.22 0.01 0.54 par:pas; +supportés supporter ver m p 86.04 81.22 0.21 0.47 par:pas; +supposa supposer ver 120.31 62.5 0.02 0.95 ind:pas:3s; +supposable supposable adj s 0 0.07 0 0.07 +supposai supposer ver 120.31 62.5 0 0.61 ind:pas:1s; +supposaient supposer ver 120.31 62.5 0.03 0.41 ind:imp:3p; +supposais supposer ver 120.31 62.5 0.5 2.3 ind:imp:1s;ind:imp:2s; +supposait supposer ver 120.31 62.5 0.11 3.18 ind:imp:3s; +supposant supposer ver 120.31 62.5 1.62 1.89 par:pre; +suppose supposer ver 120.31 62.5 89.07 29.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supposent supposer ver 120.31 62.5 0.16 0.88 ind:pre:3p; +supposer supposer ver 120.31 62.5 3.92 14.46 inf; +supposera supposer ver 120.31 62.5 0.05 0 ind:fut:3s; +supposerai supposer ver 120.31 62.5 0.14 0 ind:fut:1s; +supposerait supposer ver 120.31 62.5 0.22 0.34 cnd:pre:3s; +supposeront supposer ver 120.31 62.5 0.04 0.07 ind:fut:3p; +supposes supposer ver 120.31 62.5 0.88 0.07 ind:pre:2s; +supposez supposer ver 120.31 62.5 1.43 1.28 imp:pre:2p;ind:pre:2p; +supposiez supposer ver 120.31 62.5 0.07 0.07 ind:imp:2p; +supposions supposer ver 120.31 62.5 0.06 0.07 ind:imp:1p; +supposition supposition nom f s 4.1 5.34 2.74 2.5 +suppositions supposition nom f p 4.1 5.34 1.36 2.84 +suppositoire suppositoire nom m s 0.56 0.88 0.27 0.54 +suppositoires suppositoire nom m p 0.56 0.88 0.29 0.34 +supposons supposer ver 120.31 62.5 4.54 1.62 imp:pre:1p;ind:pre:1p; +supposâmes supposer ver 120.31 62.5 0 0.07 ind:pas:1p; +supposèrent supposer ver 120.31 62.5 0.01 0.07 ind:pas:3p; +supposé supposer ver m s 120.31 62.5 12.07 3.24 par:pas; +supposée supposer ver f s 120.31 62.5 2.71 0.95 par:pas; +supposées supposer ver f p 120.31 62.5 0.36 0.07 par:pas; +supposément supposément adv 0.04 0 0.04 0 +supposés supposer ver m p 120.31 62.5 2.3 0.41 par:pas; +suppresseur suppresseur adj m s 0.03 0 0.03 0 +suppresseur suppresseur nom m s 0.03 0 0.03 0 +suppression suppression nom f s 0.8 2.09 0.74 1.96 +suppressions suppression nom f p 0.8 2.09 0.06 0.14 +supprima supprimer ver 13.45 15.07 0 0.41 ind:pas:3s; +supprimai supprimer ver 13.45 15.07 0 0.07 ind:pas:1s; +supprimaient supprimer ver 13.45 15.07 0.1 0.07 ind:imp:3p; +supprimais supprimer ver 13.45 15.07 0.07 0.07 ind:imp:1s; +supprimait supprimer ver 13.45 15.07 0.17 0.88 ind:imp:3s; +supprimant supprimer ver 13.45 15.07 0.21 1.28 par:pre; +supprime supprimer ver 13.45 15.07 1.99 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +suppriment supprimer ver 13.45 15.07 0.21 0.14 ind:pre:3p; +supprimer supprimer ver 13.45 15.07 5.86 5.74 inf; +supprimera supprimer ver 13.45 15.07 0.05 0.07 ind:fut:3s; +supprimerai supprimer ver 13.45 15.07 0.15 0.07 ind:fut:1s; +supprimeraient supprimer ver 13.45 15.07 0.03 0.07 cnd:pre:3p; +supprimerait supprimer ver 13.45 15.07 0.07 0.14 cnd:pre:3s; +supprimerons supprimer ver 13.45 15.07 0 0.07 ind:fut:1p; +supprimez supprimer ver 13.45 15.07 0.62 0.07 imp:pre:2p;ind:pre:2p; +supprimons supprimer ver 13.45 15.07 0.54 0.14 imp:pre:1p;ind:pre:1p; +supprimât supprimer ver 13.45 15.07 0 0.14 sub:imp:3s; +supprimé supprimer ver m s 13.45 15.07 2.19 2.57 par:pas; +supprimée supprimer ver f s 13.45 15.07 0.35 0.61 par:pas; +supprimées supprimer ver f p 13.45 15.07 0.23 0.34 par:pas; +supprimés supprimer ver m p 13.45 15.07 0.6 0.54 par:pas; +suppuraient suppurer ver 0.23 0.68 0 0.07 ind:imp:3p; +suppurait suppurer ver 0.23 0.68 0 0.14 ind:imp:3s; +suppurant suppurer ver 0.23 0.68 0.01 0.07 par:pre; +suppurante suppurant adj f s 0.03 0.07 0.01 0 +suppurantes suppurant adj f p 0.03 0.07 0.01 0.07 +suppuration suppuration nom f s 0.01 0.14 0.01 0.07 +suppurations suppuration nom f p 0.01 0.14 0 0.07 +suppure suppurer ver 0.23 0.68 0.17 0.2 ind:pre:3s; +suppurent suppurer ver 0.23 0.68 0.02 0 ind:pre:3p; +suppurer suppurer ver 0.23 0.68 0.02 0.14 inf; +suppurerait suppurer ver 0.23 0.68 0 0.07 cnd:pre:3s; +supputa supputer ver 0.16 4.19 0 0.14 ind:pas:3s; +supputai supputer ver 0.16 4.19 0 0.07 ind:pas:1s; +supputaient supputer ver 0.16 4.19 0 0.27 ind:imp:3p; +supputais supputer ver 0.16 4.19 0 0.07 ind:imp:1s; +supputait supputer ver 0.16 4.19 0.01 0.88 ind:imp:3s; +supputant supputer ver 0.16 4.19 0 0.54 par:pre; +supputation supputation nom f s 0.03 0.95 0 0.14 +supputations supputation nom f p 0.03 0.95 0.03 0.81 +suppute supputer ver 0.16 4.19 0.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supputent supputer ver 0.16 4.19 0 0.14 ind:pre:3p; +supputer supputer ver 0.16 4.19 0.01 0.95 inf; +supputé supputer ver m s 0.16 4.19 0 0.2 par:pas; +supputées supputer ver f p 0.16 4.19 0 0.07 par:pas; +suppôt suppôt nom m s 0.39 0.95 0.17 0.54 +suppôts suppôt nom m p 0.39 0.95 0.22 0.41 +supra supra adv 0.26 0.34 0.26 0.34 +supra_humain supra_humain adj m s 0 0.07 0 0.07 +supraconducteur supraconducteur nom m s 0.16 0 0.09 0 +supraconducteurs supraconducteur nom m p 0.16 0 0.07 0 +supraconductivité supraconductivité nom f s 0.01 0 0.01 0 +supraconductrice supraconducteur adj f s 0.01 0 0.01 0 +supranational supranational adj m s 0 0.14 0 0.07 +supranationales supranational adj f p 0 0.14 0 0.07 +supranaturel supranaturel adj m s 0.01 0 0.01 0 +supraterrestre supraterrestre adj s 0.01 0.14 0.01 0.14 +suprématie suprématie nom f s 0.47 1.08 0.47 1.08 +suprême suprême adj s 15.26 22.97 14.98 21.76 +suprêmement suprêmement adv 0.09 0.81 0.09 0.81 +suprêmes suprême adj p 15.26 22.97 0.28 1.22 +supérette supérette nom f s 0.56 0.07 0.56 0.07 +supérieur supérieur adj m s 25.72 46.69 8.74 17.7 +supérieure supérieur adj f s 25.72 46.69 10.7 18.65 +supérieurement supérieurement adv 0.07 1.01 0.07 1.01 +supérieures supérieur adj f p 25.72 46.69 2.82 3.51 +supérieurs supérieur nom m p 13.63 8.11 6.04 2.77 +supériorité supériorité nom f s 2 9.26 2 8.72 +supériorités supériorité nom f p 2 9.26 0 0.54 +sur sur pre 2520.11 5320.47 2520.11 5320.47 +sur_le_champ sur_le_champ adv 6.79 10.95 6.79 10.95 +sur_mesure sur_mesure nom m s 0.03 0 0.03 0 +sur_place sur_place nom m s 0.2 0.27 0.2 0.27 +surabondaient surabonder ver 0 0.14 0 0.07 ind:imp:3p; +surabondamment surabondamment adv 0 0.2 0 0.2 +surabondance surabondance nom f s 0.08 1.35 0.08 1.08 +surabondances surabondance nom f p 0.08 1.35 0 0.27 +surabondant surabondant adj m s 0 0.61 0 0.27 +surabondante surabondant adj f s 0 0.61 0 0.27 +surabondantes surabondant adj f p 0 0.61 0 0.07 +surabondent surabonder ver 0 0.14 0 0.07 ind:pre:3p; +suractiver suractiver ver 0.01 0 0.01 0 inf; +suractivité suractivité nom f s 0 0.07 0 0.07 +suractivé suractivé adj m s 0.03 0.14 0.03 0.07 +suractivée suractivé adj f s 0.03 0.14 0 0.07 +suradaptation suradaptation nom f s 0 0.14 0 0.14 +suradapté suradapté ver m s 0 0.2 0 0.2 par:pas; +surah surah nom m s 0 0.2 0 0.2 +suraigu suraigu adj m s 0.03 3.38 0.01 1.28 +suraigus suraigu adj m p 0.03 3.38 0.01 0.61 +suraiguë suraigu adj f s 0.03 3.38 0.01 1.22 +suraiguës suraigu adj f p 0.03 3.38 0 0.27 +surajoute surajouter ver 0 0.41 0 0.07 ind:pre:3s; +surajouter surajouter ver 0 0.41 0 0.07 inf; +surajouté surajouter ver m s 0 0.41 0 0.07 par:pas; +surajoutée surajouter ver f s 0 0.41 0 0.07 par:pas; +surajoutés surajouter ver m p 0 0.41 0 0.14 par:pas; +suralimentation suralimentation nom f s 0 0.07 0 0.07 +suralimenter suralimenter ver 0.04 0.2 0.02 0.07 inf; +suralimentes suralimenter ver 0.04 0.2 0.01 0.07 ind:pre:2s; +suralimentée suralimenté adj f s 0.14 0.14 0 0.14 +suralimentés suralimenté adj m p 0.14 0.14 0.14 0 +suranné suranné adj m s 0.04 1.96 0.02 0.61 +surannée suranné adj f s 0.04 1.96 0.01 0.47 +surannées suranné adj f p 0.04 1.96 0 0.41 +surannés suranné adj m p 0.04 1.96 0.01 0.47 +surard surard nom m s 0 0.07 0 0.07 +surarmement surarmement nom m s 0.01 0 0.01 0 +surarmé surarmer ver m s 0.07 0 0.02 0 par:pas; +surarmée surarmer ver f s 0.07 0 0.01 0 par:pas; +surarmés surarmer ver m p 0.07 0 0.04 0 par:pas; +surbaissé surbaissé adj m s 0.01 0.68 0 0.14 +surbaissée surbaissé adj f s 0.01 0.68 0.01 0.27 +surbaissées surbaissé adj f p 0.01 0.68 0 0.14 +surbaissés surbaissé adj m p 0.01 0.68 0 0.14 +surbooké surbooké adj m s 0.23 0 0.18 0 +surbookée surbooké adj f s 0.23 0 0.03 0 +surbookées surbooké adj f p 0.23 0 0.02 0 +surboum surboum nom f s 0.23 0.88 0.2 0.41 +surboums surboum nom f p 0.23 0.88 0.03 0.47 +surbrillance surbrillance nom f s 0.01 0 0.01 0 +surbrodé surbrodé adj m s 0 0.07 0 0.07 +surcapacité surcapacité nom f s 0.03 0 0.03 0 +surcharge surcharge nom f s 1.57 0.88 1.55 0.61 +surchargeaient surcharger ver 2.52 7.3 0 0.2 ind:imp:3p; +surchargeait surcharger ver 2.52 7.3 0.12 0 ind:imp:3s; +surchargeant surcharger ver 2.52 7.3 0 0.14 par:pre; +surcharger surcharger ver 2.52 7.3 0.44 0.27 inf; +surcharges surcharge nom f p 1.57 0.88 0.02 0.27 +surchargé surcharger ver m s 2.52 7.3 1.07 1.76 par:pas; +surchargée surcharger ver f s 2.52 7.3 0.28 1.69 par:pas; +surchargées surcharger ver f p 2.52 7.3 0.03 1.15 par:pas; +surchargés surcharger ver m p 2.52 7.3 0.32 1.76 par:pas; +surchauffait surchauffer ver 0.67 3.31 0.01 0.07 ind:imp:3s; +surchauffe surchauffe nom f s 0.48 0.27 0.48 0.27 +surchauffer surchauffer ver 0.67 3.31 0.13 0 inf; +surchauffez surchauffer ver 0.67 3.31 0.01 0 ind:pre:2p; +surchauffé surchauffer ver m s 0.67 3.31 0.29 1.08 par:pas; +surchauffée surchauffer ver f s 0.67 3.31 0.03 1.28 par:pas; +surchauffées surchauffer ver f p 0.67 3.31 0 0.27 par:pas; +surchauffés surchauffer ver m p 0.67 3.31 0 0.54 par:pas; +surchoix surchoix nom m 0.01 0.2 0.01 0.2 +surclassait surclasser ver 0.28 0.47 0.01 0.07 ind:imp:3s; +surclassant surclasser ver 0.28 0.47 0 0.07 par:pre; +surclasse surclasser ver 0.28 0.47 0.08 0 ind:pre:1s;ind:pre:3s; +surclassent surclasser ver 0.28 0.47 0 0.07 ind:pre:3p; +surclasser surclasser ver 0.28 0.47 0.02 0.07 inf; +surclasserais surclasser ver 0.28 0.47 0 0.07 cnd:pre:1s; +surclasserait surclasser ver 0.28 0.47 0.02 0 cnd:pre:3s; +surclasseras surclasser ver 0.28 0.47 0 0.07 ind:fut:2s; +surclassé surclasser ver m s 0.28 0.47 0.11 0 par:pas; +surclassés surclasser ver m p 0.28 0.47 0.04 0.07 par:pas; +surcompensation surcompensation nom f s 0.01 0.07 0.01 0.07 +surcompenser surcompenser ver 0.03 0.07 0 0.07 inf; +surcompensé surcompenser ver m s 0.03 0.07 0.03 0 par:pas; +surcomprimée surcomprimer ver f s 0.01 0 0.01 0 par:pas; +surconsommation surconsommation nom f s 0.02 0 0.02 0 +surconsomme surconsommer ver 0 0.07 0 0.07 ind:pre:3s; +surcontre surcontre nom m s 0.03 0 0.03 0 +surcot surcot nom m s 0 0.14 0 0.07 +surcots surcot nom m p 0 0.14 0 0.07 +surcoupé surcouper ver m s 0.01 0 0.01 0 par:pas; +surcoût surcoût nom m s 0.02 0 0.02 0 +surcroît surcroît nom m s 1.21 17.03 1.21 16.96 +surcroîts surcroît nom m p 1.21 17.03 0 0.07 +surdimensionné surdimensionné adj m s 0.13 0 0.09 0 +surdimensionnée surdimensionné adj f s 0.13 0 0.04 0 +surdité surdité nom f s 0.41 2.16 0.41 2.16 +surdoré surdorer ver m s 0 0.14 0 0.07 par:pas; +surdorée surdorer ver f s 0 0.14 0 0.07 par:pas; +surdosage surdosage nom m s 0.01 0 0.01 0 +surdose surdose nom f s 0.27 0 0.27 0 +surdoué surdoué nom m s 1 1.08 0.23 0.47 +surdouée surdoué nom f s 1 1.08 0.04 0 +surdoués surdoué nom m p 1 1.08 0.72 0.61 +surdéterminé surdéterminer ver m s 0 0.07 0 0.07 par:pas; +surdévelopper surdévelopper ver 0.01 0 0.01 0 inf; +surdéveloppé surdéveloppé adj m s 0.06 0.07 0.04 0 +surdéveloppée surdéveloppé adj f s 0.06 0.07 0.01 0 +surdéveloppées surdéveloppé adj f p 0.06 0.07 0 0.07 +surdéveloppés surdéveloppé adj m p 0.06 0.07 0.01 0 +sure sur adj_sup f s 65.92 16.22 12.38 0.41 +sureau sureau nom m s 0.15 1.89 0.05 1.42 +sureaux sureau nom m p 0.15 1.89 0.1 0.47 +sureffectif sureffectif nom m s 0.1 0 0.1 0 +suremploi suremploi nom m s 0.01 0 0.01 0 +surenchère surenchère nom f s 0.65 2.91 0.64 1.76 +surenchères surenchère nom f p 0.65 2.91 0.01 1.15 +surenchéri surenchérir ver m s 0.3 1.08 0.11 0 par:pas; +surenchérir surenchérir ver 0.3 1.08 0.16 0.34 inf; +surenchérissant surenchérir ver 0.3 1.08 0 0.07 par:pre; +surenchérissent surenchérir ver 0.3 1.08 0 0.07 ind:pre:3p; +surenchérit surenchérir ver 0.3 1.08 0.04 0.61 ind:pre:3s;ind:pas:3s; +surencombrée surencombré adj f s 0 0.07 0 0.07 +surendettés surendetté adj m p 0.04 0 0.04 0 +surent savoir ver_sup 4516.71 2003.58 0.07 1.42 ind:pas:3p; +surentraînement surentraînement nom m s 0.1 0 0.1 0 +surentraîné surentraîné adj m s 0.09 0 0.02 0 +surentraînées surentraîné adj f p 0.09 0 0.02 0 +surentraînés surentraîné adj m p 0.09 0 0.05 0 +sures sur adj_sup f p 65.92 16.22 0.25 0.2 +surestimation surestimation nom f s 0.01 0 0.01 0 +surestime surestimer ver 1.83 0.54 0.34 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surestimer surestimer ver 1.83 0.54 0.16 0.07 inf; +surestimerais surestimer ver 1.83 0.54 0 0.07 cnd:pre:2s; +surestimez surestimer ver 1.83 0.54 0.58 0.07 imp:pre:2p;ind:pre:2p; +surestimé surestimer ver m s 1.83 0.54 0.44 0.07 par:pas; +surestimée surestimer ver f s 1.83 0.54 0.28 0.14 par:pas; +surestimés surestimer ver m p 1.83 0.54 0.04 0.07 par:pas; +suret suret adj m s 0.1 0.27 0 0.07 +surets suret adj m p 0.1 0.27 0.1 0 +surette suret adj f s 0.1 0.27 0 0.2 +surexcitait surexciter ver 1.48 1.69 0 0.07 ind:imp:3s; +surexcitant surexciter ver 1.48 1.69 0.01 0 par:pre; +surexcitation surexcitation nom f s 0.04 0.81 0.04 0.81 +surexcite surexciter ver 1.48 1.69 0.02 0 ind:pre:3s; +surexciter surexciter ver 1.48 1.69 0 0.14 inf; +surexcité surexciter ver m s 1.48 1.69 0.92 0.54 par:pas; +surexcitée surexciter ver f s 1.48 1.69 0.18 0.27 par:pas; +surexcitées surexciter ver f p 1.48 1.69 0.14 0.14 par:pas; +surexcités surexciter ver m p 1.48 1.69 0.2 0.54 par:pas; +surexploité surexploiter ver m s 0.03 0 0.03 0 par:pas; +surexposition surexposition nom f s 0.02 0 0.02 0 +surexposé surexposer ver m s 0.07 0.14 0.02 0.07 par:pas; +surexposée surexposer ver f s 0.07 0.14 0.01 0 par:pas; +surexposées surexposer ver f p 0.07 0.14 0.02 0 par:pas; +surexposés surexposer ver m p 0.07 0.14 0.02 0.07 par:pas; +surf surf nom m s 5.57 0.34 5.57 0.34 +surface surface nom f s 22.7 57.09 21.85 51.49 +surfacer surfacer ver 0.01 0 0.01 0 inf; +surfaces surface nom f p 22.7 57.09 0.84 5.61 +surfactant surfactant nom m s 0.08 0 0.08 0 +surfacturation surfacturation nom f s 0.04 0 0.04 0 +surfacture surfacturer ver 0.15 0 0.04 0 ind:pre:1s;ind:pre:3s; +surfacturer surfacturer ver 0.15 0 0.05 0 inf; +surfacturé surfacturer ver m s 0.15 0 0.03 0 par:pas; +surfacturés surfacturer ver m p 0.15 0 0.02 0 par:pas; +surfaire surfaire ver 0.09 0.2 0 0.07 inf; +surfais surfer ver 9.4 0.34 0.09 0 ind:imp:1s; +surfaisait surfaire ver 0.09 0.2 0 0.07 ind:imp:3s; +surfait surfait adj m s 0.46 0.34 0.38 0.14 +surfaite surfaire ver f s 0.09 0.2 0.07 0.07 par:pas; +surfaites surfait adj f p 0.46 0.34 0.03 0 +surfaits surfaire ver m p 0.09 0.2 0.02 0 par:pas; +surfant surfer ver 9.4 0.34 0.16 0 par:pre; +surfaçage surfaçage nom m s 0 0.07 0 0.07 +surfe surfer ver 9.4 0.34 3.15 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surfent surfer ver 9.4 0.34 0.09 0 ind:pre:3p; +surfer surfer ver 9.4 0.34 5.29 0.2 imp:pre:2p;inf; +surferas surfer ver 9.4 0.34 0.01 0 ind:fut:2s; +surfes surfer ver 9.4 0.34 0.1 0 ind:pre:2s; +surfeur surfeur nom m s 1.96 0 0.65 0 +surfeurs surfeur nom m p 1.96 0 1.06 0 +surfeuse surfeur nom f s 1.96 0 0.24 0 +surfeuses surfeur nom f p 1.96 0 0.01 0 +surfez surfer ver 9.4 0.34 0.09 0 imp:pre:2p;ind:pre:2p; +surfilage surfilage nom m s 0 0.07 0 0.07 +surfin surfin adj m s 0.14 0.07 0.14 0 +surfine surfin adj f s 0.14 0.07 0 0.07 +surfons surfer ver 9.4 0.34 0.02 0 imp:pre:1p; +surfé surfer ver m s 9.4 0.34 0.28 0 par:pas; +surgeler surgeler ver 0.09 0.34 0.01 0 inf; +surgelé surgelé nom m s 1.11 0.47 0.22 0.27 +surgelée surgelé adj f s 0.64 0.54 0.19 0.14 +surgelées surgelé adj f p 0.64 0.54 0.17 0 +surgelés surgelé nom m p 1.11 0.47 0.88 0.2 +surgeon surgeon nom m s 0.02 0.54 0.02 0.34 +surgeonnent surgeonner ver 0 0.07 0 0.07 ind:pre:3p; +surgeons surgeon nom m p 0.02 0.54 0 0.2 +surgi surgir ver m s 10.95 73.18 2.79 7.7 par:pas; +surgie surgir ver f s 10.95 73.18 0.04 2.23 par:pas; +surgies surgir ver f p 10.95 73.18 0.02 0.95 par:pas; +surgir surgir ver 10.95 73.18 2.26 17.84 inf; +surgira surgir ver 10.95 73.18 0.19 0.34 ind:fut:3s; +surgiraient surgir ver 10.95 73.18 0 0.14 cnd:pre:3p; +surgirait surgir ver 10.95 73.18 0.02 0.54 cnd:pre:3s; +surgirent surgir ver 10.95 73.18 0.17 1.55 ind:pas:3p; +surgiront surgir ver 10.95 73.18 0.04 0.41 ind:fut:3p; +surgis surgir ver m p 10.95 73.18 0.09 1.96 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +surgissaient surgir ver 10.95 73.18 0.28 5.2 ind:imp:3p; +surgissais surgir ver 10.95 73.18 0.1 0.07 ind:imp:1s;ind:imp:2s; +surgissait surgir ver 10.95 73.18 0.3 8.04 ind:imp:3s; +surgissant surgir ver 10.95 73.18 0.2 3.85 par:pre; +surgisse surgir ver 10.95 73.18 0.04 0.81 sub:pre:3s; +surgissement surgissement nom m s 0 1.01 0 0.95 +surgissements surgissement nom m p 0 1.01 0 0.07 +surgissent surgir ver 10.95 73.18 1.31 4.39 ind:pre:3p; +surgissez surgir ver 10.95 73.18 0.14 0.14 imp:pre:2p;ind:pre:2p; +surgit surgir ver 10.95 73.18 2.96 16.96 ind:pre:3s;ind:pas:3s; +surgèle surgeler ver 0.09 0.34 0 0.14 ind:pre:3s; +surgé surgé nom s 0.01 1.08 0.01 1.08 +surgénérateur surgénérateur nom m s 0.03 0 0.03 0 +surgît surgir ver 10.95 73.18 0 0.07 sub:imp:3s; +surhomme surhomme nom m s 1.11 1.08 0.86 0.81 +surhommes surhomme nom m p 1.11 1.08 0.25 0.27 +surhumain surhumain adj m s 1.71 4.19 0.4 2.5 +surhumaine surhumain adj f s 1.71 4.19 1 1.15 +surhumaines surhumain adj f p 1.71 4.19 0.04 0.27 +surhumains surhumain adj m p 1.71 4.19 0.28 0.27 +surhumanité surhumanité nom f s 0 0.07 0 0.07 +suri suri adj m s 0.07 0.54 0.06 0.2 +suricate suricate nom m s 0.05 0 0.05 0 +surie suri adj f s 0.07 0.54 0.01 0.27 +suries suri adj f p 0.07 0.54 0 0.07 +surimi surimi nom m s 0.01 0 0.01 0 +surimpression surimpression nom f s 0.05 0.81 0.05 0.68 +surimpressions surimpression nom f p 0.05 0.81 0 0.14 +surin surin nom m s 0.66 3.99 0.66 3.85 +surinait suriner ver 0.15 0.54 0.01 0 ind:imp:3s; +surine suriner ver 0.15 0.54 0 0.07 ind:pre:3s; +surinent suriner ver 0.15 0.54 0 0.07 ind:pre:3p; +suriner suriner ver 0.15 0.54 0.02 0.34 inf; +surinerais suriner ver 0.15 0.54 0 0.07 cnd:pre:2s; +surinfections surinfection nom f p 0 0.07 0 0.07 +surinformation surinformation nom f s 0 0.07 0 0.07 +surinformé surinformer ver m s 0 0.88 0 0.88 par:pas; +surins surin nom m p 0.66 3.99 0 0.14 +surintendance surintendance nom f s 0 0.07 0 0.07 +surintendant surintendant nom m s 0.43 0.27 0.43 0.07 +surintendante surintendant nom f s 0.43 0.27 0 0.2 +surintensité surintensité nom f s 0.04 0 0.04 0 +surinvestissement surinvestissement nom m s 0.01 0.07 0.01 0.07 +suriné suriner ver m s 0.15 0.54 0.12 0 par:pas; +surir surir ver 0.01 0.2 0 0.14 inf; +surit surir ver 0.01 0.2 0 0.07 ind:pre:3s; +surjet surjet nom m s 0.04 0.14 0.04 0.07 +surjeteuse jeteur nom f s 0.23 0.47 0.02 0 +surjets surjet nom m p 0.04 0.14 0 0.07 +surlendemain surlendemain nom m s 0.35 7.57 0.35 7.57 +surligner surligner ver 0.24 0 0.07 0 inf; +surligneur surligneur nom m s 0.03 0 0.03 0 +surligné surligner ver m s 0.24 0 0.17 0 par:pas; +surmenage surmenage nom m s 0.63 0.61 0.63 0.61 +surmenait surmener ver 1.33 0.88 0.01 0.14 ind:imp:3s; +surmenant surmener ver 1.33 0.88 0.01 0 par:pre; +surmener surmener ver 1.33 0.88 0.08 0.07 inf;; +surmenez surmener ver 1.33 0.88 0.15 0 imp:pre:2p;ind:pre:2p; +surmené surmener ver m s 1.33 0.88 0.69 0.2 par:pas; +surmenée surmené adj f s 0.69 1.01 0.2 0.2 +surmenées surmené adj f p 0.69 1.01 0.03 0.14 +surmenés surmener ver m p 1.33 0.88 0.15 0.2 par:pas; +surmoi surmoi nom m 0.12 0.68 0.12 0.68 +surmonta surmonter ver 9.31 28.11 0.1 0.47 ind:pas:3s; +surmontai surmonter ver 9.31 28.11 0 0.14 ind:pas:1s; +surmontaient surmonter ver 9.31 28.11 0.01 0.47 ind:imp:3p; +surmontais surmonter ver 9.31 28.11 0 0.07 ind:imp:1s; +surmontait surmonter ver 9.31 28.11 0 1.62 ind:imp:3s; +surmontant surmonter ver 9.31 28.11 0 1.96 par:pre; +surmonte surmonter ver 9.31 28.11 0.51 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surmontent surmonter ver 9.31 28.11 0.06 0.47 ind:pre:3p; +surmonter surmonter ver 9.31 28.11 5.85 5 inf; +surmontera surmonter ver 9.31 28.11 0.17 0.14 ind:fut:3s; +surmonterai surmonter ver 9.31 28.11 0.04 0 ind:fut:1s; +surmonteraient surmonter ver 9.31 28.11 0 0.07 cnd:pre:3p; +surmonterait surmonter ver 9.31 28.11 0 0.2 cnd:pre:3s; +surmonteras surmonter ver 9.31 28.11 0.32 0 ind:fut:2s; +surmonterez surmonter ver 9.31 28.11 0.03 0.07 ind:fut:2p; +surmonterons surmonter ver 9.31 28.11 0.23 0 ind:fut:1p; +surmontez surmonter ver 9.31 28.11 0.04 0 imp:pre:2p;ind:pre:2p; +surmontions surmonter ver 9.31 28.11 0 0.07 ind:imp:1p; +surmontèrent surmonter ver 9.31 28.11 0.01 0.07 ind:pas:3p; +surmonté surmonter ver m s 9.31 28.11 1.46 6.49 par:pas; +surmontée surmonter ver f s 9.31 28.11 0.28 5.27 par:pas; +surmontées surmonter ver f p 9.31 28.11 0.03 1.82 par:pas; +surmontés surmonter ver m p 9.31 28.11 0.14 2.3 par:pas; +surmulot surmulot nom m s 0 0.34 0 0.07 +surmulots surmulot nom m p 0 0.34 0 0.27 +surmultipliée surmultiplié adj f s 0.04 0.14 0.04 0.07 +surmultipliées surmultiplié adj f p 0.04 0.14 0 0.07 +surmâle surmâle nom m s 0 0.14 0 0.14 +surmène surmener ver 1.33 0.88 0.08 0.07 imp:pre:2s;ind:pre:3s; +surmédicalisation surmédicalisation nom f s 0.01 0 0.01 0 +surnage surnager ver 0.09 2.64 0.05 0.41 imp:pre:2s;ind:pre:3s; +surnagea surnager ver 0.09 2.64 0 0.14 ind:pas:3s; +surnageaient surnager ver 0.09 2.64 0 0.34 ind:imp:3p; +surnageait surnager ver 0.09 2.64 0 0.61 ind:imp:3s; +surnageant surnager ver 0.09 2.64 0 0.14 par:pre; +surnageants surnageant adj m p 0 0.2 0 0.07 +surnagent surnager ver 0.09 2.64 0.01 0.27 ind:pre:3p; +surnageons surnager ver 0.09 2.64 0.01 0 ind:pre:1p; +surnager surnager ver 0.09 2.64 0.01 0.54 inf; +surnagera surnager ver 0.09 2.64 0 0.07 ind:fut:3s; +surnages surnager ver 0.09 2.64 0 0.07 ind:pre:2s; +surnagèrent surnager ver 0.09 2.64 0 0.07 ind:pas:3p; +surnagé surnager ver m s 0.09 2.64 0.01 0 par:pas; +surnaturel surnaturel nom m s 2.71 0.54 2.71 0.54 +surnaturelle surnaturel adj f s 3.38 6.22 0.88 2.3 +surnaturelles surnaturel adj f p 3.38 6.22 0.39 1.01 +surnaturels surnaturel adj m p 3.38 6.22 0.75 0.34 +surnom surnom nom m s 7.79 6.49 6.2 5.61 +surnombre surnombre nom_sup m s 0.3 0.68 0.3 0.68 +surnomma surnommer ver 4.93 6.55 0.03 0.14 ind:pas:3s; +surnommaient surnommer ver 4.93 6.55 0.01 0.14 ind:imp:3p; +surnommais surnommer ver 4.93 6.55 0.02 0 ind:imp:1s;ind:imp:2s; +surnommait surnommer ver 4.93 6.55 0.48 1.08 ind:imp:3s; +surnommant surnommer ver 4.93 6.55 0.01 0.07 par:pre; +surnomme surnommer ver 4.93 6.55 1.27 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surnomment surnommer ver 4.93 6.55 0.44 0.07 ind:pre:3p; +surnommer surnommer ver 4.93 6.55 0.04 0.74 inf;; +surnommera surnommer ver 4.93 6.55 0.01 0 ind:fut:3s; +surnommerais surnommer ver 4.93 6.55 0 0.07 cnd:pre:1s; +surnommions surnommer ver 4.93 6.55 0 0.07 ind:imp:1p; +surnommèrent surnommer ver 4.93 6.55 0.01 0 ind:pas:3p; +surnommé surnommer ver m s 4.93 6.55 2.28 2.77 par:pas; +surnommée surnommé adj f s 0.84 1.69 0.26 0.2 +surnommés surnommer ver m p 4.93 6.55 0.08 0.07 par:pas; +surnoms surnom nom m p 7.79 6.49 1.59 0.88 +surnuméraire surnuméraire nom s 0.07 0.14 0.07 0 +surnuméraires surnuméraire adj m p 0.04 0.14 0.03 0 +suroxygéner suroxygéner ver 0.01 0 0.01 0 inf; +suroxygéné suroxygéné adj m s 0 0.07 0 0.07 +suroît suroît nom m s 0.03 0.61 0.03 0.47 +suroîts suroît nom m p 0.03 0.61 0 0.14 +surpassa surpasser ver 6.64 3.45 0.12 0.27 ind:pas:3s; +surpassaient surpasser ver 6.64 3.45 0.01 0.07 ind:imp:3p; +surpassais surpasser ver 6.64 3.45 0.1 0.2 ind:imp:1s; +surpassait surpasser ver 6.64 3.45 0.05 0.41 ind:imp:3s; +surpassant surpasser ver 6.64 3.45 0.14 0.14 par:pre; +surpasse surpasser ver 6.64 3.45 1.36 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surpassent surpasser ver 6.64 3.45 0.35 0.14 ind:pre:3p; +surpasser surpasser ver 6.64 3.45 1.46 0.74 inf; +surpassera surpasser ver 6.64 3.45 0.54 0 ind:fut:3s; +surpasserai surpasser ver 6.64 3.45 0.02 0 ind:fut:1s; +surpasseraient surpasser ver 6.64 3.45 0.01 0 cnd:pre:3p; +surpasserait surpasser ver 6.64 3.45 0.02 0.14 cnd:pre:3s; +surpasseras surpasser ver 6.64 3.45 0.01 0 ind:fut:2s; +surpasses surpasser ver 6.64 3.45 0.21 0 ind:pre:2s; +surpassez surpasser ver 6.64 3.45 0.04 0 imp:pre:2p;ind:pre:2p; +surpassons surpasser ver 6.64 3.45 0.16 0 imp:pre:1p;ind:pre:1p; +surpassât surpasser ver 6.64 3.45 0.01 0.07 sub:imp:3s; +surpassé surpasser ver m s 6.64 3.45 1.5 0.41 par:pas; +surpassée surpasser ver f s 6.64 3.45 0.36 0.2 par:pas; +surpassées surpasser ver f p 6.64 3.45 0 0.07 par:pas; +surpassés surpasser ver m p 6.64 3.45 0.2 0.2 par:pas; +surpatte surpatte nom f s 0 0.2 0 0.14 +surpattes surpatte nom f p 0 0.2 0 0.07 +surpaye surpayer ver 0.21 0 0.01 0 ind:pre:3s; +surpayé surpayer ver m s 0.21 0 0.13 0 par:pas; +surpayés surpayer ver m p 0.21 0 0.08 0 par:pas; +surpeuplement surpeuplement nom m s 0.03 0.07 0.03 0.07 +surpeupler surpeupler ver 0.01 0 0.01 0 inf; +surpeuplé surpeuplé adj m s 0.8 1.62 0.27 0.74 +surpeuplée surpeuplé adj f s 0.8 1.62 0.33 0.2 +surpeuplées surpeuplé adj f p 0.8 1.62 0.06 0.14 +surpeuplés surpeuplé adj m p 0.8 1.62 0.13 0.54 +surpiqûres surpiqûre nom f p 0 0.07 0 0.07 +surplace surplace nom m s 0.3 0.34 0.3 0.34 +surplis surplis nom m 0.07 1.69 0.07 1.69 +surplomb surplomb nom m s 0.09 2.23 0.09 2.03 +surplomba surplomber ver 0.69 8.85 0 0.07 ind:pas:3s; +surplombaient surplomber ver 0.69 8.85 0 0.88 ind:imp:3p; +surplombait surplomber ver 0.69 8.85 0.03 2.3 ind:imp:3s; +surplombant surplomber ver 0.69 8.85 0.24 1.28 par:pre; +surplombante surplombant adj f s 0.02 0.41 0 0.07 +surplombe surplomber ver 0.69 8.85 0.37 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surplombent surplomber ver 0.69 8.85 0.03 0.54 ind:pre:3p; +surplomber surplomber ver 0.69 8.85 0.01 0.14 inf; +surplomberait surplomber ver 0.69 8.85 0 0.07 cnd:pre:3s; +surplombions surplomber ver 0.69 8.85 0 0.14 ind:imp:1p; +surplombs surplomb nom m p 0.09 2.23 0 0.2 +surplombé surplomber ver m s 0.69 8.85 0.01 0.34 par:pas; +surplombée surplomber ver f s 0.69 8.85 0 0.2 par:pas; +surplombés surplomber ver m p 0.69 8.85 0 0.07 par:pas; +surplus surplus nom m 1.25 10.95 1.25 10.95 +surpoids surpoids nom m 0.23 0 0.23 0 +surpopulation surpopulation nom f s 0.45 0.14 0.45 0.14 +surprenaient surprendre ver 56.8 116.62 0.11 0.74 ind:imp:3p; +surprenais surprendre ver 56.8 116.62 0.07 1.76 ind:imp:1s;ind:imp:2s; +surprenait surprendre ver 56.8 116.62 0.45 7.3 ind:imp:3s; +surprenant surprenant adj m s 8.03 19.73 4.89 8.78 +surprenante surprenant adj f s 8.03 19.73 2.67 7.84 +surprenantes surprenant adj f p 8.03 19.73 0.34 1.76 +surprenants surprenant adj m p 8.03 19.73 0.14 1.35 +surprend surprendre ver 56.8 116.62 5.74 7.09 ind:pre:3s; +surprendra surprendre ver 56.8 116.62 0.75 0.61 ind:fut:3s; +surprendrai surprendre ver 56.8 116.62 0.2 0.14 ind:fut:1s; +surprendraient surprendre ver 56.8 116.62 0.05 0.07 cnd:pre:3p; +surprendrais surprendre ver 56.8 116.62 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +surprendrait surprendre ver 56.8 116.62 0.33 0.88 cnd:pre:3s; +surprendras surprendre ver 56.8 116.62 0.07 0 ind:fut:2s; +surprendre surprendre ver 56.8 116.62 8 17.43 inf; +surprendrez surprendre ver 56.8 116.62 0.02 0 ind:fut:2p; +surprendrons surprendre ver 56.8 116.62 0.01 0.07 ind:fut:1p; +surprendront surprendre ver 56.8 116.62 0.19 0.07 ind:fut:3p; +surprends surprendre ver 56.8 116.62 1.59 2.03 imp:pre:2s;ind:pre:1s;ind:pre:2s; +surprenez surprendre ver 56.8 116.62 1.06 0.27 imp:pre:2p;ind:pre:2p; +surpreniez surprendre ver 56.8 116.62 0.11 0 ind:imp:2p; +surprenions surprendre ver 56.8 116.62 0 0.14 ind:imp:1p; +surprenne surprendre ver 56.8 116.62 0.98 0.61 sub:pre:1s;sub:pre:3s; +surprennent surprendre ver 56.8 116.62 0.33 0.88 ind:pre:3p; +surprenons surprendre ver 56.8 116.62 0.04 0.14 imp:pre:1p;ind:pre:1p; +surpresseur surpresseur nom m s 0.01 0 0.01 0 +surpression surpression nom f s 0.09 0.14 0.09 0.14 +surprime surprime nom f s 0.14 0 0.14 0 +surprirent surprendre ver 56.8 116.62 0.11 0.68 ind:pas:3p; +surpris surprendre ver m 56.8 116.62 24.64 50 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +surprise surprise nom f s 82.94 77.16 75.62 68.51 +surprise_partie surprise_partie nom f s 0.2 0.61 0.18 0.27 +surprise_party surprise_party nom f s 0.1 0.07 0.1 0.07 +surprises surprise nom f p 82.94 77.16 7.32 8.65 +surprise_partie surprise_partie nom f p 0.2 0.61 0.02 0.34 +surprit surprendre ver 56.8 116.62 0.39 10.61 ind:pas:3s; +surproduction surproduction nom f s 0.05 0.14 0.05 0.14 +surprotecteur surprotecteur adj m s 0.06 0 0.06 0 +surprotectrice surprotecteur nom f s 0.1 0 0.1 0 +surprotège surprotéger ver 0.17 0 0.04 0 ind:pre:1s; +surprotégeais surprotéger ver 0.17 0 0.01 0 ind:imp:1s; +surprotéger surprotéger ver 0.17 0 0.1 0 inf; +surprotégé surprotéger ver m s 0.17 0 0.02 0 par:pas; +surprît surprendre ver 56.8 116.62 0.01 0.47 sub:imp:3s; +surpuissance surpuissance nom f s 0.01 0.07 0.01 0.07 +surpuissant surpuissant adj m s 0.16 0.41 0.09 0.27 +surpuissante surpuissant adj f s 0.16 0.41 0.04 0.07 +surpuissants surpuissant adj m p 0.16 0.41 0.03 0.07 +surqualifié surqualifié adj m s 0.11 0 0.08 0 +surqualifiée surqualifié adj f s 0.11 0 0.03 0 +surréalisme surréalisme nom m s 0.1 1.96 0.1 1.96 +surréaliste surréaliste adj s 0.98 2.64 0.95 1.96 +surréalistes surréaliste adj p 0.98 2.64 0.03 0.68 +surréalité surréalité nom f s 0 0.14 0 0.14 +surréel surréel adj m s 0.06 0.41 0.03 0.07 +surréelle surréel adj f s 0.06 0.41 0.02 0.2 +surréelles surréel adj f p 0.06 0.41 0 0.14 +surrégime surrégime nom m s 0.03 0.07 0.03 0.07 +surrénal surrénal adj m s 0.23 0.07 0.01 0 +surrénale surrénal adj f s 0.23 0.07 0.05 0 +surrénales surrénal adj f p 0.23 0.07 0.17 0.07 +surrénalien surrénalien adj m s 0.01 0 0.01 0 +surréservation surréservation nom f s 0.01 0 0.01 0 +surs sur adj_sup m p 65.92 16.22 1.11 0.07 +sursaturé sursaturer ver m s 0.01 0.2 0.01 0.2 par:pas; +sursaturée sursaturé adj f s 0 0.14 0 0.07 +sursaturées sursaturé adj f p 0 0.14 0 0.07 +sursaut sursaut nom m s 0.77 21.28 0.71 17.57 +sursauta sursauter ver 1.66 28.11 0.22 8.78 ind:pas:3s; +sursautai sursauter ver 1.66 28.11 0.1 1.15 ind:pas:1s; +sursautaient sursauter ver 1.66 28.11 0.01 0.54 ind:imp:3p; +sursautais sursauter ver 1.66 28.11 0 0.2 ind:imp:1s;ind:imp:2s; +sursautait sursauter ver 1.66 28.11 0 1.15 ind:imp:3s; +sursautant sursauter ver 1.66 28.11 0 1.89 par:pre; +sursaute sursauter ver 1.66 28.11 0.14 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sursautent sursauter ver 1.66 28.11 0.02 0.34 ind:pre:3p; +sursauter sursauter ver 1.66 28.11 0.69 5.95 inf; +sursauteraient sursauter ver 1.66 28.11 0 0.07 cnd:pre:3p; +sursauterais sursauter ver 1.66 28.11 0 0.07 cnd:pre:1s; +sursautez sursauter ver 1.66 28.11 0.01 0.14 imp:pre:2p;ind:pre:2p; +sursautons sursauter ver 1.66 28.11 0 0.14 ind:pre:1p; +sursauts sursaut nom m p 0.77 21.28 0.06 3.72 +sursautât sursauter ver 1.66 28.11 0 0.07 sub:imp:3s; +sursautèrent sursauter ver 1.66 28.11 0 0.14 ind:pas:3p; +sursauté sursauter ver m s 1.66 28.11 0.47 2.84 par:pas; +surseoir surseoir ver 0.12 0.74 0.1 0.47 inf; +sursis sursis nom m 3.6 7.36 3.6 7.36 +sursitaire sursitaire adj s 0.01 0 0.01 0 +sursitaires sursitaire nom p 0 0.07 0 0.07 +sursum_corda sursum_corda adv 0 0.2 0 0.2 +surtaxe surtaxe nom f s 0.13 0.14 0.13 0.07 +surtaxer surtaxer ver 0.04 0 0.01 0 inf; +surtaxes surtaxe nom f p 0.13 0.14 0 0.07 +surtaxés surtaxer ver m p 0.04 0 0.02 0 par:pas; +surtendu surtendu adj m s 0 0.07 0 0.07 +surtension surtension nom f s 0.37 0 0.37 0 +surtout surtout adv_sup 148.66 291.49 148.66 291.49 +surtouts surtout nom_sup m p 0.54 2.84 0 0.14 +surveilla surveiller ver 84.82 54.39 0.01 0.41 ind:pas:3s; +surveillaient surveiller ver 84.82 54.39 0.46 1.96 ind:imp:3p; +surveillais surveiller ver 84.82 54.39 0.98 1.89 ind:imp:1s;ind:imp:2s; +surveillait surveiller ver 84.82 54.39 1.61 8.92 ind:imp:3s; +surveillance surveillance nom f s 19.16 12.23 19.05 12.16 +surveillances surveillance nom f p 19.16 12.23 0.11 0.07 +surveillant surveillant nom m s 2.58 6.55 1.65 3.58 +surveillante surveillant nom f s 2.58 6.55 0.45 0.74 +surveillantes surveillant nom f p 2.58 6.55 0.03 0.68 +surveillants surveillant nom m p 2.58 6.55 0.45 1.55 +surveille surveiller ver 84.82 54.39 26.27 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +surveillent surveiller ver 84.82 54.39 3.72 1.69 ind:pre:3p; +surveiller surveiller ver 84.82 54.39 26.94 18.11 inf;; +surveillera surveiller ver 84.82 54.39 1.13 0.07 ind:fut:3s; +surveillerai surveiller ver 84.82 54.39 0.9 0.27 ind:fut:1s; +surveilleraient surveiller ver 84.82 54.39 0.02 0.07 cnd:pre:3p; +surveillerais surveiller ver 84.82 54.39 0.23 0 cnd:pre:1s;cnd:pre:2s; +surveillerait surveiller ver 84.82 54.39 0.08 0.41 cnd:pre:3s; +surveilleras surveiller ver 84.82 54.39 0.25 0.14 ind:fut:2s; +surveillerez surveiller ver 84.82 54.39 0.09 0 ind:fut:2p; +surveillerons surveiller ver 84.82 54.39 0.23 0 ind:fut:1p; +surveilleront surveiller ver 84.82 54.39 0.27 0 ind:fut:3p; +surveilles surveiller ver 84.82 54.39 2.09 0.34 ind:pre:2s; +surveillez surveiller ver 84.82 54.39 9.71 0.68 imp:pre:2p;ind:pre:2p; +surveilliez surveiller ver 84.82 54.39 0.41 0 ind:imp:2p; +surveillions surveiller ver 84.82 54.39 0.02 0.14 ind:imp:1p; +surveillons surveiller ver 84.82 54.39 0.9 0.2 imp:pre:1p;ind:pre:1p; +surveillât surveiller ver 84.82 54.39 0 0.07 sub:imp:3s; +surveillé surveiller ver m s 84.82 54.39 3.77 3.11 par:pas; +surveillée surveiller ver f s 84.82 54.39 2.46 2.09 par:pas; +surveillées surveiller ver f p 84.82 54.39 0.58 0.68 par:pas; +surveillés surveiller ver m p 84.82 54.39 1.33 1.49 par:pas; +survenaient survenir ver 4.86 15.54 0 0.41 ind:imp:3p; +survenais survenir ver 4.86 15.54 0 0.07 ind:imp:1s; +survenait survenir ver 4.86 15.54 0.12 1.49 ind:imp:3s; +survenant survenir ver 4.86 15.54 0.02 0.81 par:pre; +survenants survenant nom m p 0 0.14 0 0.14 +survenir survenir ver 4.86 15.54 0.8 1.69 inf; +survenu survenir ver m s 4.86 15.54 0.61 1.96 par:pas; +survenue survenir ver f s 4.86 15.54 0.32 0.95 par:pas; +survenues survenue nom f p 0.17 1.62 0.14 0 +survenus survenir ver m p 4.86 15.54 0.72 0.95 par:pas; +survie survie nom f s 11.64 6.08 11.64 6.08 +surviendra survenir ver 4.86 15.54 0.17 0.14 ind:fut:3s; +surviendraient survenir ver 4.86 15.54 0 0.14 cnd:pre:3p; +surviendrait survenir ver 4.86 15.54 0.01 0.34 cnd:pre:3s; +surviendront survenir ver 4.86 15.54 0 0.2 ind:fut:3p; +survienne survenir ver 4.86 15.54 0.2 0.27 sub:pre:3s; +surviennent survenir ver 4.86 15.54 0.36 0.47 ind:pre:3p; +survient survenir ver 4.86 15.54 1.01 1.96 ind:pre:3s; +survinrent survenir ver 4.86 15.54 0.14 0.34 ind:pas:3p; +survint survenir ver 4.86 15.54 0.3 2.84 ind:pas:3s; +survire survirer ver 0.01 0 0.01 0 ind:pre:3s; +survis survivre ver 63.62 27.77 1.33 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +survit survivre ver 63.62 27.77 3.88 2.23 ind:pre:3s; +survitesse survitesse nom f s 0 0.14 0 0.14 +survivaient survivre ver 63.62 27.77 0.16 0.81 ind:imp:3p; +survivais survivre ver 63.62 27.77 0.04 0.14 ind:imp:1s;ind:imp:2s; +survivait survivre ver 63.62 27.77 0.28 1.76 ind:imp:3s; +survivaliste survivaliste nom s 0.01 0 0.01 0 +survivance survivance nom f s 0.05 1.08 0.04 0.88 +survivances survivance nom f p 0.05 1.08 0.01 0.2 +survivant survivant nom m s 12.8 7.77 3.57 2.03 +survivante survivant nom f s 12.8 7.77 0.39 0.14 +survivantes survivant nom f p 12.8 7.77 0.03 0.2 +survivants survivant nom m p 12.8 7.77 8.81 5.41 +survive survivre ver 63.62 27.77 1.42 0.54 sub:pre:1s;sub:pre:3s; +survivent survivre ver 63.62 27.77 1.79 1.22 ind:pre:3p; +survives survivre ver 63.62 27.77 0.24 0 sub:pre:2s; +survivez survivre ver 63.62 27.77 0.3 0 imp:pre:2p;ind:pre:2p; +surviviez survivre ver 63.62 27.77 0.06 0 ind:imp:2p; +survivions survivre ver 63.62 27.77 0.06 0 ind:imp:1p; +survivons survivre ver 63.62 27.77 0.2 0.14 imp:pre:1p;ind:pre:1p; +survivra survivre ver 63.62 27.77 3.92 0.54 ind:fut:3s; +survivrai survivre ver 63.62 27.77 2.99 0.14 ind:fut:1s; +survivraient survivre ver 63.62 27.77 0.25 0.27 cnd:pre:3p; +survivrais survivre ver 63.62 27.77 0.46 0.07 cnd:pre:1s;cnd:pre:2s; +survivrait survivre ver 63.62 27.77 0.8 1.28 cnd:pre:3s; +survivras survivre ver 63.62 27.77 0.61 0 ind:fut:2s; +survivre survivre ver 63.62 27.77 22.44 11.42 inf; +survivrez survivre ver 63.62 27.77 0.61 0 ind:fut:2p; +survivriez survivre ver 63.62 27.77 0.06 0 cnd:pre:2p; +survivrons survivre ver 63.62 27.77 0.33 0.07 ind:fut:1p; +survivront survivre ver 63.62 27.77 0.94 0.54 ind:fut:3p; +survol survol nom m s 0.83 0.27 0.8 0.27 +survola survoler ver 5.38 6.22 0.01 0.14 ind:pas:3s; +survolaient survoler ver 5.38 6.22 0.04 0.41 ind:imp:3p; +survolais survoler ver 5.38 6.22 0.06 0.07 ind:imp:1s; +survolait survoler ver 5.38 6.22 0.38 0.61 ind:imp:3s; +survolant survoler ver 5.38 6.22 0.19 0.54 par:pre; +survole survoler ver 5.38 6.22 1.04 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +survolent survoler ver 5.38 6.22 0.9 0.27 ind:pre:3p; +survoler survoler ver 5.38 6.22 1.27 1.76 inf; +survolera survoler ver 5.38 6.22 0.1 0 ind:fut:3s; +survolerai survoler ver 5.38 6.22 0.04 0 ind:fut:1s; +survolerez survoler ver 5.38 6.22 0.16 0 ind:fut:2p; +survolerons survoler ver 5.38 6.22 0.07 0 ind:fut:1p; +survolez survoler ver 5.38 6.22 0.22 0 imp:pre:2p;ind:pre:2p; +survolions survoler ver 5.38 6.22 0.01 0.14 ind:imp:1p; +survolons survoler ver 5.38 6.22 0.22 0.07 imp:pre:1p;ind:pre:1p; +survols survol nom m p 0.83 0.27 0.03 0 +survoltage survoltage nom m s 0.05 0.2 0.05 0.2 +survoltait survolter ver 0.25 0.68 0 0.07 ind:imp:3s; +survolteur survolteur nom m s 0.02 0 0.02 0 +survolté survolté adj m s 0.28 1.42 0.1 0.34 +survoltée survolté adj f s 0.28 1.42 0.16 0.54 +survoltées survolté adj f p 0.28 1.42 0.02 0.07 +survoltés survolter ver m p 0.25 0.68 0.05 0.14 par:pas; +survolâmes survoler ver 5.38 6.22 0 0.07 ind:pas:1p; +survolé survoler ver m s 5.38 6.22 0.65 1.08 par:pas; +survolée survoler ver f s 5.38 6.22 0.03 0.27 par:pas; +survolées survoler ver f p 5.38 6.22 0 0.2 par:pas; +survécu survivre ver m s 63.62 27.77 18.74 4.53 par:pas; +survécurent survivre ver 63.62 27.77 0.27 0 ind:pas:3p; +survécus survivre ver 63.62 27.77 0.07 0.14 ind:pas:1s; +survécut survivre ver 63.62 27.77 0.21 0.81 ind:pas:3s; +survécûmes survivre ver 63.62 27.77 0.01 0 ind:pas:1p; +survécût survivre ver 63.62 27.77 0 0.14 sub:imp:3s; +survêt survêt nom m s 0 0.47 0 0.27 +survêtement survêtement nom m s 0.65 2.77 0.63 2.23 +survêtements survêtement nom m p 0.65 2.77 0.02 0.54 +survêts survêt nom m p 0 0.47 0 0.2 +survînt survenir ver 4.86 15.54 0 0.2 sub:imp:3s; +surélevait surélever ver 0.34 2.5 0 0.07 ind:imp:3s; +surélever surélever ver 0.34 2.5 0.06 0.14 inf; +surélevez surélever ver 0.34 2.5 0.02 0 imp:pre:2p; +surélevé surélever ver m s 0.34 2.5 0.1 1.15 par:pas; +surélevée surélever ver f s 0.34 2.5 0.08 0.47 par:pas; +surélevées surélever ver f p 0.34 2.5 0.02 0.41 par:pas; +surélevés surélever ver m p 0.34 2.5 0.04 0.14 par:pas; +surélève surélever ver 0.34 2.5 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surélévation surélévation nom f s 0.03 0 0.03 0 +suréminente suréminent adj f s 0 0.07 0 0.07 +suréquipée suréquiper ver f s 0.01 0.07 0.01 0.07 par:pas; +surévaluation surévaluation nom f s 0.01 0.07 0.01 0.07 +surévalué surévaluer ver m s 0.03 0.07 0.03 0.07 par:pas; +sus sus adv_sup 2.57 3.65 2.57 3.65 +sus_orbitaire sus_orbitaire adj m s 0.01 0 0.01 0 +susceptibilité susceptibilité nom f s 0.09 2.57 0.09 1.49 +susceptibilités susceptibilité nom f p 0.09 2.57 0 1.08 +susceptible susceptible adj s 5.18 11.89 3.87 7.77 +susceptibles susceptible adj p 5.18 11.89 1.3 4.12 +suscita susciter ver 3.94 23.31 0.12 1.15 ind:pas:3s; +suscitaient susciter ver 3.94 23.31 0.01 1.49 ind:imp:3p; +suscitais susciter ver 3.94 23.31 0.1 0.14 ind:imp:1s;ind:imp:2s; +suscitait susciter ver 3.94 23.31 0.1 2.97 ind:imp:3s; +suscitant susciter ver 3.94 23.31 0.14 1.42 par:pre; +suscite susciter ver 3.94 23.31 1.08 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +suscitent susciter ver 3.94 23.31 0.16 1.01 ind:pre:3p; +susciter susciter ver 3.94 23.31 1.23 7.16 inf; +susciteraient susciter ver 3.94 23.31 0.1 0.07 cnd:pre:3p; +susciterait susciter ver 3.94 23.31 0.01 0.2 cnd:pre:3s; +susciteront susciter ver 3.94 23.31 0 0.07 ind:fut:3p; +suscites susciter ver 3.94 23.31 0.02 0.07 ind:pre:2s; +suscité susciter ver m s 3.94 23.31 0.59 2.23 par:pas; +suscitée susciter ver f s 3.94 23.31 0.21 1.42 par:pas; +suscitées susciter ver f p 3.94 23.31 0.02 0.47 par:pas; +suscités susciter ver m p 3.94 23.31 0.04 0.61 par:pas; +suscription suscription nom f s 0 0.14 0 0.14 +susdit susdit adj m s 0.14 0.47 0.12 0.27 +susdite susdit nom f s 0.31 0.07 0.2 0 +susdites susdit adj f p 0.14 0.47 0 0.14 +sushi sushi nom m 2.03 0 2.03 0 +susmentionné susmentionné adj m s 0.3 0.07 0.19 0 +susmentionnée susmentionné adj f s 0.3 0.07 0.11 0.07 +susnommé susnommé adj m s 0.05 0.27 0.04 0.07 +susnommée susnommé adj f s 0.05 0.27 0.01 0.14 +susnommés susnommé adj m p 0.05 0.27 0 0.07 +suspect suspect nom m s 32.45 3.65 22.86 1.55 +suspectaient suspecter ver 6.13 3.38 0 0.14 ind:imp:3p; +suspectais suspecter ver 6.13 3.38 0.1 0.07 ind:imp:1s;ind:imp:2s; +suspectait suspecter ver 6.13 3.38 0.29 0.2 ind:imp:3s; +suspectant suspecter ver 6.13 3.38 0.11 0.07 par:pre; +suspecte suspect adj f s 12.95 16.82 2.34 4.93 +suspectent suspecter ver 6.13 3.38 0.25 0 ind:pre:3p; +suspecter suspecter ver 6.13 3.38 0.95 0.88 inf; +suspectera suspecter ver 6.13 3.38 0.07 0 ind:fut:3s; +suspecteraient suspecter ver 6.13 3.38 0 0.07 cnd:pre:3p; +suspecterait suspecter ver 6.13 3.38 0.05 0 cnd:pre:3s; +suspecteront suspecter ver 6.13 3.38 0.03 0 ind:fut:3p; +suspectes suspect adj f p 12.95 16.82 0.69 1.49 +suspectez suspecter ver 6.13 3.38 0.34 0 imp:pre:2p;ind:pre:2p; +suspectiez suspecter ver 6.13 3.38 0.11 0 ind:imp:2p; +suspectons suspecter ver 6.13 3.38 0.12 0.07 imp:pre:1p;ind:pre:1p; +suspects suspect nom m p 32.45 3.65 8.81 1.76 +suspecté suspecter ver m s 6.13 3.38 1.48 0.88 par:pas; +suspectée suspecter ver f s 6.13 3.38 0.38 0.14 par:pas; +suspectées suspecter ver f p 6.13 3.38 0.04 0 par:pas; +suspectés suspecter ver m p 6.13 3.38 0.16 0.41 par:pas; +suspend suspendre ver 13.99 39.32 0.53 1.55 ind:pre:3s; +suspendaient suspendre ver 13.99 39.32 0.02 0.27 ind:imp:3p; +suspendais suspendre ver 13.99 39.32 0.01 0.07 ind:imp:1s; +suspendait suspendre ver 13.99 39.32 0.03 1.28 ind:imp:3s; +suspendant suspendre ver 13.99 39.32 0.04 0.74 par:pre; +suspende suspendre ver 13.99 39.32 0.13 0 sub:pre:1s;sub:pre:3s; +suspendent suspendre ver 13.99 39.32 0.04 0.27 ind:pre:3p; +suspendez suspendre ver 13.99 39.32 0.54 0.07 imp:pre:2p;ind:pre:2p; +suspendirent suspendre ver 13.99 39.32 0 0.2 ind:pas:3p; +suspendit suspendre ver 13.99 39.32 0.01 1.96 ind:pas:3s; +suspendons suspendre ver 13.99 39.32 0.06 0.2 imp:pre:1p;ind:pre:1p; +suspendra suspendre ver 13.99 39.32 0.08 0.07 ind:fut:3s; +suspendrai suspendre ver 13.99 39.32 0.06 0 ind:fut:1s; +suspendrait suspendre ver 13.99 39.32 0.1 0.27 cnd:pre:3s; +suspendre suspendre ver 13.99 39.32 2.42 4.19 inf;; +suspendrez suspendre ver 13.99 39.32 0.01 0 ind:fut:2p; +suspendrons suspendre ver 13.99 39.32 0.04 0 ind:fut:1p; +suspendront suspendre ver 13.99 39.32 0.03 0.07 ind:fut:3p; +suspends suspendre ver 13.99 39.32 0.98 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +suspendu suspendre ver m s 13.99 39.32 4.41 12.77 par:pas; +suspendue suspendre ver f s 13.99 39.32 2.59 7.5 par:pas; +suspendues suspendre ver f p 13.99 39.32 0.75 3.11 par:pas; +suspendus suspendre ver m p 13.99 39.32 1.13 4.39 par:pas; +suspendît suspendre ver 13.99 39.32 0 0.07 sub:imp:3s; +suspens suspens nom m 1.44 7.43 1.44 7.43 +suspense suspense nom s 4.09 1.76 4.08 1.62 +suspenses suspense nom p 4.09 1.76 0.01 0.14 +suspenseur suspenseur adj m s 0.01 0.07 0.01 0 +suspenseurs suspenseur adj m p 0.01 0.07 0 0.07 +suspensif suspensif adj m s 0.01 0.07 0 0.07 +suspension suspension nom f s 4.06 7.91 3.92 7.23 +suspensions suspension nom f p 4.06 7.91 0.14 0.68 +suspensive suspensif adj f s 0.01 0.07 0.01 0 +suspensoir suspensoir nom m s 0.11 0.14 0.09 0.14 +suspensoirs suspensoir nom m p 0.11 0.14 0.02 0 +suspente suspente nom f s 0.01 0.14 0 0.07 +suspentes suspente nom f p 0.01 0.14 0.01 0.07 +suspicieuse suspicieux adj f s 1.1 0.88 0.33 0.34 +suspicieusement suspicieusement adv 0.04 0.14 0.04 0.14 +suspicieuses suspicieux adj f p 1.1 0.88 0.12 0 +suspicieux suspicieux adj m 1.1 0.88 0.65 0.54 +suspicion suspicion nom f s 1.44 2.57 1.21 2.23 +suspicions suspicion nom f p 1.44 2.57 0.23 0.34 +susse savoir ver_sup 4516.71 2003.58 0 0.2 sub:imp:1s; +sussent savoir ver_sup 4516.71 2003.58 0 0.14 sub:imp:3p; +sustentation sustentation nom f s 0.01 0.14 0.01 0.14 +sustente sustenter ver 0.11 0.68 0.04 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +sustenter sustenter ver 0.11 0.68 0.08 0.54 inf; +sustentés sustenter ver m p 0.11 0.68 0 0.07 par:pas; +susu susu adj s 0 0.07 0 0.07 +susucre susucre nom m s 0 0.2 0 0.2 +susurra susurrer ver 0.22 4.86 0 1.08 ind:pas:3s; +susurrai susurrer ver 0.22 4.86 0 0.07 ind:pas:1s; +susurraient susurrer ver 0.22 4.86 0 0.14 ind:imp:3p; +susurrait susurrer ver 0.22 4.86 0.01 0.74 ind:imp:3s; +susurrant susurrer ver 0.22 4.86 0.13 0.14 par:pre; +susurre susurrer ver 0.22 4.86 0.01 1.01 imp:pre:2s;ind:pre:3s; +susurrement susurrement nom m s 0 0.47 0 0.14 +susurrements susurrement nom m p 0 0.47 0 0.34 +susurrent susurrer ver 0.22 4.86 0.02 0.34 ind:pre:3p; +susurrer susurrer ver 0.22 4.86 0.01 0.54 inf; +susurrerai susurrer ver 0.22 4.86 0.01 0 ind:fut:1s; +susurré susurrer ver m s 0.22 4.86 0.01 0.54 par:pas; +susurrée susurrer ver f s 0.22 4.86 0 0.14 par:pas; +susurrées susurrer ver f p 0.22 4.86 0.01 0.07 par:pas; +susurrés susurrer ver m p 0.22 4.86 0 0.07 par:pas; +susvisée susvisé adj f s 0 0.07 0 0.07 +sut savoir ver_sup 4516.71 2003.58 1.68 20.41 ind:pas:3s; +sutra sutra nom m s 0.2 0.2 0.2 0.2 +suturant suturer ver 0.45 0.27 0 0.07 par:pre; +suture suture nom f s 4.54 0.68 3.77 0.47 +suturer suturer ver 0.45 0.27 0.38 0.07 inf; +sutures suture nom f p 4.54 0.68 0.77 0.2 +suturé suturer ver m s 0.45 0.27 0.06 0.07 par:pas; +suturée suturer ver f s 0.45 0.27 0.01 0.07 par:pas; +sutémi sutémi nom m s 0 0.14 0 0.14 +suzerain suzerain nom m s 0.2 0.68 0.2 0.47 +suzeraine suzerain nom f s 0.2 0.68 0 0.14 +suzeraineté suzeraineté nom f s 0.01 0.14 0.01 0.14 +suzerains suzerain nom m p 0.2 0.68 0 0.07 +suât suer ver 7.28 10.34 0 0.07 sub:imp:3s; +suça sucer ver 23.45 18.51 0.14 0.54 ind:pas:3s; +suçage suçage nom m s 0.01 0.07 0.01 0 +suçages suçage nom m p 0.01 0.07 0 0.07 +suçaient sucer ver 23.45 18.51 0.02 0.81 ind:imp:3p; +suçais sucer ver 23.45 18.51 0.32 0.2 ind:imp:1s;ind:imp:2s; +suçait sucer ver 23.45 18.51 0.21 2.36 ind:imp:3s; +suçant sucer ver 23.45 18.51 0.39 1.96 par:pre; +suçoir suçoir nom m s 0 0.27 0 0.14 +suçoirs suçoir nom m p 0 0.27 0 0.14 +suçon suçon nom m s 1.05 0.14 0.89 0 +suçons suçon nom m p 1.05 0.14 0.17 0.14 +suçota suçoter ver 0.01 1.35 0 0.07 ind:pas:3s; +suçotait suçoter ver 0.01 1.35 0 0.27 ind:imp:3s; +suçotant suçoter ver 0.01 1.35 0 0.07 par:pre; +suçote suçoter ver 0.01 1.35 0 0.34 ind:pre:1s;ind:pre:3s; +suçotements suçotement nom m p 0 0.07 0 0.07 +suçotent suçoter ver 0.01 1.35 0 0.07 ind:pre:3p; +suçoter suçoter ver 0.01 1.35 0.01 0.41 inf; +suçoté suçoter ver m s 0.01 1.35 0 0.14 par:pas; +suède suède nom m s 0 0.07 0 0.07 +sué suer ver m s 7.28 10.34 2.5 0.41 par:pas; +suédine suédine nom f s 0 0.54 0 0.54 +suédois suédois nom m 4.76 2.64 3.21 1.49 +suédoise suédois adj f s 3.67 6.89 1.41 2.77 +suédoises suédois nom f p 4.76 2.64 0.69 0.34 +suée suée nom f s 0.35 1.96 0.33 0.81 +suées suée nom f p 0.35 1.96 0.02 1.15 +svastika svastika nom m s 0.09 0.2 0.09 0.14 +svastikas svastika nom m p 0.09 0.2 0 0.07 +svelte svelte adj s 0.43 2.77 0.39 2.43 +sveltes svelte adj p 0.43 2.77 0.04 0.34 +sveltesse sveltesse nom f s 0 0.61 0 0.61 +svp svp adv 6.36 0.07 6.36 0.07 +swahili swahili nom m s 0 0.54 0 0.54 +sweat_shirt sweat_shirt nom m s 0 0.2 0 0.2 +sweater sweater nom m s 0 1.01 0 0.74 +sweaters sweater nom m p 0 1.01 0 0.27 +sweepstake sweepstake nom m s 0 0.07 0 0.07 +swiftiennes swiftien adj f p 0 0.07 0 0.07 +swing swing nom m s 0 0.88 0 0.74 +swings swing nom m p 0 0.88 0 0.14 +swinguaient swinguer ver 0 0.07 0 0.07 ind:imp:3p; +sybarites sybarite adj p 0.01 0 0.01 0 +sybaritisme sybaritisme nom m s 0 0.07 0 0.07 +sycomore sycomore nom m s 0.14 1.08 0.11 0.34 +sycomores sycomore nom m p 0.14 1.08 0.04 0.74 +sycophante sycophante nom m s 0.03 0.07 0.03 0 +sycophantes sycophante nom m p 0.03 0.07 0 0.07 +syllabe syllabe nom f s 1.52 11.28 0.65 2.3 +syllabes syllabe nom f p 1.52 11.28 0.88 8.99 +syllabus syllabus nom m 0.01 0 0.01 0 +syllepse syllepse nom f s 0 0.07 0 0.07 +syllogisme syllogisme nom m s 0.13 0.54 0.13 0.14 +syllogismes syllogisme nom m p 0.13 0.54 0 0.41 +syllogistique syllogistique adj f s 0.01 0.07 0.01 0 +syllogistiques syllogistique adj p 0.01 0.07 0 0.07 +sylphes sylphe nom m p 0.02 0.07 0.02 0.07 +sylphide sylphide nom f s 0.01 0.27 0 0.07 +sylphides sylphide nom f p 0.01 0.27 0.01 0.2 +sylvain sylvain nom m s 0.2 0.07 0.2 0 +sylvains sylvain nom m p 0.2 0.07 0 0.07 +sylvaner sylvaner nom m s 0 0.14 0 0.14 +sylve sylve nom f s 0 0.14 0 0.14 +sylvestre sylvestre adj s 0.35 1.22 0.23 0.81 +sylvestres sylvestre adj p 0.35 1.22 0.12 0.41 +sylviculture sylviculture nom f s 0.01 0.14 0.01 0.14 +sylvie sylvie nom f s 0 2.09 0 2.09 +symbionte symbionte nom m s 0.01 0 0.01 0 +symbiose symbiose nom f s 0.68 0.41 0.68 0.41 +symbiote symbiote nom m s 4.04 0 3.38 0 +symbiotes symbiote nom m p 4.04 0 0.66 0 +symbiotique symbiotique adj s 0.36 0 0.36 0 +symbole symbole nom m s 14.95 18.92 10.74 12.57 +symboles symbole nom m p 14.95 18.92 4.2 6.35 +symbolique symbolique adj s 2.35 9.53 2.23 7.91 +symboliquement symboliquement adv 0.21 0.88 0.21 0.88 +symboliques symbolique adj p 2.35 9.53 0.12 1.62 +symbolisa symboliser ver 2.65 5.07 0 0.07 ind:pas:3s; +symbolisaient symboliser ver 2.65 5.07 0.04 0.2 ind:imp:3p; +symbolisait symboliser ver 2.65 5.07 0.18 1.28 ind:imp:3s; +symbolisant symboliser ver 2.65 5.07 0.2 0.47 par:pre; +symbolisation symbolisation nom f s 0 0.14 0 0.14 +symbolise symboliser ver 2.65 5.07 1.17 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +symbolisent symboliser ver 2.65 5.07 0.3 0.54 ind:pre:3p; +symboliser symboliser ver 2.65 5.07 0.28 0.61 inf; +symbolisera symboliser ver 2.65 5.07 0.03 0.07 ind:fut:3s; +symboliserai symboliser ver 2.65 5.07 0.01 0 ind:fut:1s; +symboliserait symboliser ver 2.65 5.07 0.01 0 cnd:pre:3s; +symbolisme symbolisme nom m s 0.19 0.81 0.19 0.81 +symboliste symboliste adj s 0.01 0.2 0.01 0.2 +symbolisât symboliser ver 2.65 5.07 0 0.07 sub:imp:3s; +symbolisé symboliser ver m s 2.65 5.07 0.14 0.27 par:pas; +symbolisée symboliser ver f s 2.65 5.07 0.04 0.34 par:pas; +symbolisés symboliser ver m p 2.65 5.07 0.23 0.07 par:pas; +sympa sympa adj s 83.39 7.77 77.46 7.16 +sympas sympa adj p 83.39 7.77 5.92 0.61 +sympathectomie sympathectomie nom f s 0.01 0.07 0.01 0.07 +sympathie sympathie nom f s 7.68 26.15 6.87 24.05 +sympathies sympathie nom f p 7.68 26.15 0.81 2.09 +sympathique sympathique adj s 16.23 15.54 12.79 13.11 +sympathiques sympathique adj p 16.23 15.54 3.45 2.43 +sympathisai sympathiser ver 2.12 1.96 0 0.07 ind:pas:1s; +sympathisaient sympathiser ver 2.12 1.96 0.01 0 ind:imp:3p; +sympathisait sympathiser ver 2.12 1.96 0.02 0.41 ind:imp:3s; +sympathisant sympathisant nom m s 0.75 1.62 0.33 0.2 +sympathisante sympathisant nom f s 0.75 1.62 0.03 0 +sympathisantes sympathisant adj f p 0.41 0.2 0.02 0.07 +sympathisants sympathisant nom m p 0.75 1.62 0.36 1.42 +sympathise sympathiser ver 2.12 1.96 0.4 0.2 ind:pre:1s;ind:pre:3s; +sympathiser sympathiser ver 2.12 1.96 0.42 0.47 inf; +sympathisera sympathiser ver 2.12 1.96 0 0.07 ind:fut:3s; +sympathiserez sympathiser ver 2.12 1.96 0.01 0 ind:fut:2p; +sympathisez sympathiser ver 2.12 1.96 0.04 0 ind:pre:2p; +sympathisions sympathiser ver 2.12 1.96 0 0.07 ind:imp:1p; +sympathisons sympathiser ver 2.12 1.96 0 0.14 ind:pre:1p; +sympathisé sympathiser ver m s 2.12 1.96 1.21 0.54 par:pas; +sympathomimétique sympathomimétique adj s 0.01 0 0.01 0 +symphonie symphonie nom f s 1.63 5.54 1.3 4.86 +symphonies symphonie nom f p 1.63 5.54 0.32 0.68 +symphonique symphonique adj s 1.02 0.14 1.01 0.14 +symphoniques symphonique adj m p 1.02 0.14 0.01 0 +symphorines symphorine nom f p 0 0.07 0 0.07 +symphyse symphyse nom f s 0.05 0 0.05 0 +symposium symposium nom m s 0.15 0.81 0.14 0.68 +symposiums symposium nom m p 0.15 0.81 0.01 0.14 +symptomatique symptomatique adj m s 0.25 0.41 0.11 0.34 +symptomatiques symptomatique adj m p 0.25 0.41 0.14 0.07 +symptomatologie symptomatologie nom f s 0.11 0 0.11 0 +symptôme symptôme nom m s 11.64 4.39 2.03 1.22 +symptômes symptôme nom m p 11.64 4.39 9.61 3.18 +symétrie symétrie nom f s 1.2 2.97 1.2 2.7 +symétries symétrie nom f p 1.2 2.97 0 0.27 +symétrique symétrique adj s 1.03 3.92 0.46 2.16 +symétriquement symétriquement adv 0.03 0.95 0.03 0.95 +symétriques symétrique adj p 1.03 3.92 0.57 1.76 +synagogale synagogal adj f s 0 0.14 0 0.07 +synagogaux synagogal adj m p 0 0.14 0 0.07 +synagogue synagogue nom f s 2.88 3.65 2.31 3.11 +synagogues synagogue nom f p 2.88 3.65 0.57 0.54 +synapse synapse nom f s 0.7 0.34 0.32 0.07 +synapses synapse nom f p 0.7 0.34 0.38 0.27 +synaptique synaptique adj s 0.23 0 0.16 0 +synaptiques synaptique adj m p 0.23 0 0.07 0 +synchro synchro adj s 1.97 0.14 1.93 0.14 +synchrone synchrone adj s 0.16 0.54 0.1 0.07 +synchrones synchrone adj p 0.16 0.54 0.06 0.47 +synchronie synchronie nom f s 0 0.07 0 0.07 +synchronique synchronique adj s 0.02 0.07 0.02 0.07 +synchronisaient synchroniser ver 2.09 0.54 0.01 0 ind:imp:3p; +synchronisation synchronisation nom f s 1.87 0.27 1.87 0.27 +synchronise synchroniser ver 2.09 0.54 0.22 0 imp:pre:2s;ind:pre:3s; +synchroniser synchroniser ver 2.09 0.54 0.27 0.07 inf; +synchronisera synchroniser ver 2.09 0.54 0.04 0 ind:fut:3s; +synchroniseur synchroniseur nom m s 0.05 0 0.05 0 +synchronisez synchroniser ver 2.09 0.54 0.26 0 imp:pre:2p; +synchronisme synchronisme nom m s 0.08 0.54 0.08 0.54 +synchronisons synchroniser ver 2.09 0.54 0.34 0 imp:pre:1p;ind:pre:1p; +synchronisé synchroniser ver m s 2.09 0.54 0.44 0.34 par:pas; +synchronisée synchroniser ver f s 2.09 0.54 0.14 0.07 par:pas; +synchronisées synchroniser ver f p 2.09 0.54 0.08 0.07 par:pas; +synchronisés synchroniser ver m p 2.09 0.54 0.29 0 par:pas; +synchros synchro adj p 1.97 0.14 0.04 0 +synchrotron synchrotron nom m s 0.01 0 0.01 0 +syncopal syncopal adj m s 0.01 0.07 0.01 0.07 +syncope syncope nom f s 0.76 1.76 0.73 1.35 +syncoper syncoper ver 0.02 0.54 0.01 0 inf; +syncopes syncope nom f p 0.76 1.76 0.02 0.41 +syncopé syncopé adj m s 0.05 0.95 0.03 0.34 +syncopée syncopé adj f s 0.05 0.95 0.01 0.14 +syncopées syncopé adj f p 0.05 0.95 0.01 0.14 +syncopés syncoper ver m p 0.02 0.54 0.01 0.07 par:pas; +syncrétisme syncrétisme nom m s 0 0.14 0 0.14 +syncrétiste syncrétiste adj s 0 0.07 0 0.07 +syncytial syncytial adj m s 0.01 0 0.01 0 +syndic syndic nom m s 0.61 1.08 0.48 0.95 +syndical syndical adj m s 1.5 2.23 0.65 0.47 +syndicale syndical adj f s 1.5 2.23 0.38 0.95 +syndicales syndical adj f p 1.5 2.23 0.33 0.41 +syndicalisation syndicalisation nom f s 0.04 0 0.04 0 +syndicaliser syndicaliser ver 0.02 0 0.02 0 inf; +syndicalisme syndicalisme nom m s 0.04 0.95 0.04 0.95 +syndicaliste syndicaliste nom s 0.53 0.74 0.3 0.41 +syndicalistes syndicaliste nom p 0.53 0.74 0.23 0.34 +syndicat syndicat nom m s 14.25 8.45 9.93 5.2 +syndication syndication nom f s 0.05 0 0.05 0 +syndicats syndicat nom m p 14.25 8.45 4.33 3.24 +syndicaux syndical adj m p 1.5 2.23 0.15 0.41 +syndics syndic nom m p 0.61 1.08 0.14 0.14 +syndique syndiquer ver 0.63 0.68 0.03 0.07 ind:pre:1s;ind:pre:3s; +syndiquer syndiquer ver 0.63 0.68 0.23 0.07 inf; +syndiquez syndiquer ver 0.63 0.68 0.05 0 imp:pre:2p; +syndiqué syndiqué adj m s 0.45 0.61 0.24 0.14 +syndiquée syndiquer ver f s 0.63 0.68 0.04 0 par:pas; +syndiquées syndiqué adj f p 0.45 0.61 0.02 0.07 +syndiqués syndiqué adj m p 0.45 0.61 0.15 0.41 +syndrome syndrome nom m s 5.47 0.81 5.26 0.68 +syndromes syndrome nom m p 5.47 0.81 0.21 0.14 +synecdoque synecdoque nom f s 0 0.14 0 0.14 +synergie synergie nom f s 0.15 0 0.14 0 +synergies synergie nom f p 0.15 0 0.01 0 +synergique synergique adj f s 0.02 0 0.02 0 +synergétique synergétique adj m s 0.03 0 0.03 0 +synesthésie synesthésie nom f s 0.01 0 0.01 0 +synode synode nom m s 0.2 0.07 0.2 0.07 +synonyme synonyme adj s 0.97 1.49 0.84 1.08 +synonymes synonyme adj f p 0.97 1.49 0.13 0.41 +synopsie synopsie nom f s 0.01 0 0.01 0 +synopsis synopsis nom m 0.17 0.47 0.17 0.47 +synoptique synoptique adj s 0.01 0.07 0.01 0.07 +synoviales synovial adj f p 0.01 0 0.01 0 +synovite synovite nom f s 0.04 0 0.04 0 +syntagme syntagme nom m s 0 0.07 0 0.07 +syntaxe syntaxe nom f s 0.27 2.03 0.27 1.96 +syntaxes syntaxe nom f p 0.27 2.03 0 0.07 +syntaxique syntaxique adj m s 0.01 0 0.01 0 +synthèse synthèse nom f s 1.63 1.96 1.62 1.82 +synthèses synthèse nom f p 1.63 1.96 0.01 0.14 +synthé synthé nom m s 0.61 0.27 0.6 0.2 +synthés synthé nom m p 0.61 0.27 0.01 0.07 +synthétique synthétique adj s 3.05 2.64 1.58 1.96 +synthétiquement synthétiquement adv 0.01 0 0.01 0 +synthétiques synthétique adj p 3.05 2.64 1.47 0.68 +synthétise synthétiser ver 0.61 0.2 0.04 0.2 ind:pre:1s;ind:pre:3s; +synthétisent synthétiser ver 0.61 0.2 0.01 0 ind:pre:3p; +synthétiser synthétiser ver 0.61 0.2 0.32 0 inf; +synthétisera synthétiser ver 0.61 0.2 0.01 0 ind:fut:3s; +synthétiseur synthétiseur nom m s 0.39 0.41 0.36 0.34 +synthétiseurs synthétiseur nom m p 0.39 0.41 0.03 0.07 +synthétisé synthétiser ver m s 0.61 0.2 0.16 0 par:pas; +synthétisée synthétiser ver f s 0.61 0.2 0.05 0 par:pas; +synthétisés synthétiser ver m p 0.61 0.2 0.02 0 par:pas; +synérèses synérèse nom f p 0 0.07 0 0.07 +syphilis syphilis nom f 1.53 1.01 1.53 1.01 +syphilitique syphilitique adj s 0.86 0.61 0.71 0.41 +syphilitiques syphilitique adj p 0.86 0.61 0.15 0.2 +syrah syrah nom f s 0.09 0 0.09 0 +syriaque syriaque nom s 0 0.07 0 0.07 +syriaques syriaque adj p 0 0.07 0 0.07 +syrien syrien adj m s 1.81 6.82 0.81 2.3 +syrienne syrien adj f s 1.81 6.82 0.58 1.76 +syriennes syrien adj f p 1.81 6.82 0.04 1.49 +syriens syrien nom m p 1.41 1.42 1.38 0.88 +syringomyélie syringomyélie nom f s 0.01 0 0.01 0 +syrinx syrinx nom f 0 0.07 0 0.07 +syro syro adv 0.03 0.2 0.03 0.2 +syrtes syrte nom f p 0 5.47 0 5.47 +systole systole nom f s 0.01 0.2 0.01 0.2 +systolique systolique adj s 0.77 0.07 0.76 0 +systoliques systolique adj p 0.77 0.07 0.01 0.07 +système système nom m s 76.92 46.96 66.12 42.23 +systèmes système nom m p 76.92 46.96 10.8 4.73 +systèmes_clé systèmes_clé nom m p 0.03 0 0.03 0 +systématique systématique adj s 0.86 3.85 0.67 3.45 +systématiquement systématiquement adv 1.25 4.19 1.25 4.19 +systématiques systématique adj p 0.86 3.85 0.19 0.41 +systématisation systématisation nom f s 0 0.07 0 0.07 +systématiser systématiser ver 0 0.07 0 0.07 inf; +systématisé systématisé adj m s 0 0.27 0 0.07 +systématisée systématisé adj f s 0 0.27 0 0.14 +systématisés systématisé adj m p 0 0.27 0 0.07 +systémique systémique adj s 0.14 0 0.14 0 +syzygie syzygie nom m s 0 0.2 0 0.14 +syzygies syzygie nom m p 0 0.2 0 0.07 +syénite syénite nom f s 0.01 0 0.01 0 +sèche sec adj f s 43.02 142.84 8.72 35 +sèche_cheveux sèche_cheveux nom m 0.97 0 0.97 0 +sèche_linge sèche_linge nom m 0.74 0 0.74 0 +sèche_mains sèche_mains nom m 0.04 0 0.04 0 +sèchement sèchement adv 0.35 11.55 0.35 11.55 +sèchent sécher ver 19.49 40.41 0.57 2.57 ind:pre:3p; +sèches sec adj f p 43.02 142.84 2 18.45 +sème semer ver 19.8 25.41 4.35 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sèment semer ver 19.8 25.41 0.94 0.54 ind:pre:3p; +sèmera semer ver 19.8 25.41 0.18 0 ind:fut:3s; +sèmerai semer ver 19.8 25.41 0.01 0.07 ind:fut:1s; +sèmerais semer ver 19.8 25.41 0.01 0 cnd:pre:2s; +sèmerait semer ver 19.8 25.41 0.06 0.14 cnd:pre:3s; +sèmeras semer ver 19.8 25.41 0.01 0 ind:fut:2s; +sèmerez semer ver 19.8 25.41 0.01 0 ind:fut:2p; +sèmerions semer ver 19.8 25.41 0 0.07 cnd:pre:1p; +sèmerons semer ver 19.8 25.41 0.01 0.07 ind:fut:1p; +sèmeront semer ver 19.8 25.41 0.01 0.07 ind:fut:3p; +sèmes semer ver 19.8 25.41 0.32 0.14 ind:pre:2s; +sève sève nom f s 3.19 7.91 3.19 7.03 +sèves sève nom f p 3.19 7.91 0 0.88 +sèvres sèvres nom m 0.01 0.07 0.01 0.07 +séance séance nom f s 22.91 32.36 18.49 22.3 +séances séance nom f p 22.91 32.36 4.43 10.07 +séant séant nom m s 0.04 1.42 0.04 1.42 +séante séant adj f s 0.04 0.27 0.01 0 +sébacé sébacé adj m s 0.1 0.14 0.05 0 +sébacée sébacé adj f s 0.1 0.14 0.01 0 +sébacées sébacé adj f p 0.1 0.14 0.04 0.14 +sébaste sébaste nom m s 0.01 0 0.01 0 +sébile sébile nom f s 0.04 0.47 0.04 0.41 +sébiles sébile nom f p 0.04 0.47 0.01 0.07 +séborrhée séborrhée nom f s 0 0.07 0 0.07 +séborrhéique séborrhéique adj f s 0.01 0 0.01 0 +sébum sébum nom m s 0 0.07 0 0.07 +sécateur sécateur nom m s 0.17 1.49 0.15 1.35 +sécateurs sécateur nom m p 0.17 1.49 0.03 0.14 +sécession sécession nom f s 0.26 0.74 0.26 0.74 +sécessionniste sécessionniste nom s 0.06 0 0.02 0 +sécessionnistes sécessionniste nom p 0.06 0 0.04 0 +sécha sécher ver 19.49 40.41 0.01 0.61 ind:pas:3s; +séchage séchage nom m s 0.17 0.41 0.17 0.41 +séchai sécher ver 19.49 40.41 0 0.14 ind:pas:1s; +séchaient sécher ver 19.49 40.41 0.05 3.24 ind:imp:3p; +séchais sécher ver 19.49 40.41 0.35 0.2 ind:imp:1s;ind:imp:2s; +séchait sécher ver 19.49 40.41 0.54 2.57 ind:imp:3s; +séchant sécher ver 19.49 40.41 0.15 1.42 par:pre; +séchard séchard nom m s 0.01 0.14 0.01 0.14 +sécher sécher ver 19.49 40.41 5.84 10.27 inf; +séchera sécher ver 19.49 40.41 0.05 0.41 ind:fut:3s; +sécherai sécher ver 19.49 40.41 0.13 0 ind:fut:1s; +sécheraient sécher ver 19.49 40.41 0 0.07 cnd:pre:3p; +sécherais sécher ver 19.49 40.41 0.05 0 cnd:pre:1s;cnd:pre:2s; +sécherait sécher ver 19.49 40.41 0.02 0.2 cnd:pre:3s; +sécheresse sécheresse nom f s 2.63 11.15 2.3 10.81 +sécheresses sécheresse nom f p 2.63 11.15 0.33 0.34 +sécherez sécher ver 19.49 40.41 0.01 0 ind:fut:2p; +sécherie sécherie nom f s 0.03 0.2 0.01 0.14 +sécheries sécherie nom f p 0.03 0.2 0.01 0.07 +sécheront sécher ver 19.49 40.41 0.01 0.07 ind:fut:3p; +sécheuse sécheur nom f s 0.05 0 0.05 0 +séchez sécher ver 19.49 40.41 0.79 0.2 imp:pre:2p;ind:pre:2p; +séchiez sécher ver 19.49 40.41 0.03 0 ind:imp:2p; +séchions sécher ver 19.49 40.41 0.01 0.07 ind:imp:1p; +séchoir séchoir nom m s 0.95 1.28 0.91 1.08 +séchoirs séchoir nom m p 0.95 1.28 0.04 0.2 +séchons sécher ver 19.49 40.41 0.11 0 imp:pre:1p;ind:pre:1p; +séchât sécher ver 19.49 40.41 0 0.07 sub:imp:3s; +séchèrent sécher ver 19.49 40.41 0 0.47 ind:pas:3p; +séché sécher ver m s 19.49 40.41 3.68 5.34 par:pas; +séchée sécher ver f s 19.49 40.41 1.09 3.11 par:pas; +séchées sécher ver f p 19.49 40.41 0.56 2.23 par:pas; +séchés sécher ver m p 19.49 40.41 0.16 1.42 par:pas; +sécolle sécolle pro_per 0 0.14 0 0.14 +sécot sécot nom m s 0 0.07 0 0.07 +sécrète sécréter ver 0.85 3.24 0.41 0.68 ind:pre:3s; +sécrètent sécréter ver 0.85 3.24 0.12 0.27 ind:pre:3p; +sécrètes sécréter ver 0.85 3.24 0.01 0 ind:pre:2s; +sécrétaient sécréter ver 0.85 3.24 0 0.07 ind:imp:3p; +sécrétais sécréter ver 0.85 3.24 0 0.07 ind:imp:1s; +sécrétait sécréter ver 0.85 3.24 0 0.47 ind:imp:3s; +sécrétant sécréter ver 0.85 3.24 0 0.27 par:pre; +sécréter sécréter ver 0.85 3.24 0.02 0.47 inf; +sécréteur sécréteur nom m s 0.02 0 0.01 0 +sécréteurs sécréteur nom m p 0.02 0 0.01 0 +sécrétez sécréter ver 0.85 3.24 0 0.07 ind:pre:2p; +sécrétine sécrétine nom f s 0.01 0 0.01 0 +sécrétion sécrétion nom f s 0.83 1.49 0.17 0.41 +sécrétions sécrétion nom f p 0.83 1.49 0.66 1.08 +sécrétât sécréter ver 0.85 3.24 0 0.07 sub:imp:3s; +sécrété sécréter ver m s 0.85 3.24 0.15 0.41 par:pas; +sécrétée sécréter ver f s 0.85 3.24 0.14 0.27 par:pas; +sécrétés sécréter ver m p 0.85 3.24 0 0.14 par:pas; +sécu sécu nom f s 1.5 0.74 1.5 0.74 +séculaire séculaire adj s 0.26 4.73 0.12 3.04 +séculairement séculairement adv 0 0.14 0 0.14 +séculaires séculaire adj p 0.26 4.73 0.14 1.69 +séculariser séculariser ver 0.01 0.07 0.01 0 inf; +sécularisées séculariser ver f p 0.01 0.07 0 0.07 par:pas; +séculier séculier adj m s 0.02 1.49 0 1.15 +séculiers séculier adj m p 0.02 1.49 0 0.07 +séculière séculier adj f s 0.02 1.49 0.02 0.27 +sécurisait sécuriser ver 6.48 0.34 0 0.07 ind:imp:3s; +sécurisant sécurisant adj m s 0.37 0.2 0.34 0 +sécurisante sécurisant adj f s 0.37 0.2 0.04 0.2 +sécurisation sécurisation nom f s 0.01 0 0.01 0 +sécuriser sécuriser ver 6.48 0.34 1.09 0 inf; +sécurisez sécuriser ver 6.48 0.34 0.79 0 imp:pre:2p;ind:pre:2p; +sécurisé sécuriser ver m s 6.48 0.34 2.16 0.07 par:pas; +sécurisée sécuriser ver f s 6.48 0.34 1.94 0.07 par:pas; +sécurisées sécuriser ver f p 6.48 0.34 0.2 0 par:pas; +sécurisés sécuriser ver m p 6.48 0.34 0.28 0.07 par:pas; +sécurit sécurit nom m s 0.15 0.14 0.15 0.14 +sécuritaire sécuritaire adj s 0.23 0 0.23 0 +sécurité sécurité nom f s 113.17 39.12 112.69 38.92 +sécurités sécurité nom f p 113.17 39.12 0.48 0.2 +sédatif sédatif nom m s 3.93 0.27 2.8 0 +sédatifs sédatif nom m p 3.93 0.27 1.13 0.27 +sédation sédation nom f s 0.08 0 0.08 0 +sédative sédatif adj f s 0.27 0.34 0 0.2 +sédatives sédatif adj f p 0.27 0.34 0.02 0.07 +sédentaire sédentaire adj s 0.23 2.3 0.21 1.76 +sédentaires sédentaire nom p 0.05 1.55 0.05 0.81 +sédentarisaient sédentariser ver 0.01 0.14 0 0.07 ind:imp:3p; +sédentarisation sédentarisation nom f s 0 0.07 0 0.07 +sédentarise sédentariser ver 0.01 0.14 0.01 0 ind:pre:3s; +sédentariser sédentariser ver 0.01 0.14 0 0.07 inf; +sédentarisme sédentarisme nom m s 0 0.07 0 0.07 +sédentarité sédentarité nom f s 0 0.27 0 0.27 +sédiment sédiment nom m s 0.14 0.61 0.03 0.14 +sédimentaire sédimentaire adj s 0.05 0.2 0.05 0.07 +sédimentaires sédimentaire adj f p 0.05 0.2 0 0.14 +sédimentation sédimentation nom f s 0.09 0.2 0.09 0.14 +sédimentations sédimentation nom f p 0.09 0.2 0 0.07 +sédimente sédimenter ver 0 0.14 0 0.07 ind:pre:3s; +sédiments sédiment nom m p 0.14 0.61 0.11 0.47 +sédimentée sédimenter ver f s 0 0.14 0 0.07 par:pas; +séditieuse séditieux adj f s 0.35 0.74 0.03 0.14 +séditieuses séditieux adj f p 0.35 0.74 0 0.07 +séditieux séditieux adj m 0.35 0.74 0.32 0.54 +sédition sédition nom f s 1.28 0.54 1.28 0.54 +séducteur séducteur nom m s 2.39 4.86 1.97 3.72 +séducteurs séducteur nom m p 2.39 4.86 0.2 0.68 +séduction séduction nom f s 2.54 9.39 2.5 7.97 +séductions séduction nom f p 2.54 9.39 0.04 1.42 +séductrice séducteur nom f s 2.39 4.86 0.22 0.41 +séductrices séducteur adj f p 0.31 2.36 0.01 0.34 +séduira séduire ver 16.48 22.23 0.16 0.07 ind:fut:3s; +séduirait séduire ver 16.48 22.23 0.16 0 cnd:pre:3s; +séduiras séduire ver 16.48 22.23 0.12 0 ind:fut:2s; +séduire séduire ver 16.48 22.23 7.64 9.59 inf; +séduis séduire ver 16.48 22.23 0.7 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +séduisaient séduire ver 16.48 22.23 0 0.14 ind:imp:3p; +séduisait séduire ver 16.48 22.23 0.19 1.42 ind:imp:3s; +séduisant séduisant adj m s 9.13 8.18 4.68 3.85 +séduisante séduisant adj f s 9.13 8.18 3.71 2.91 +séduisantes séduisant adj f p 9.13 8.18 0.39 0.54 +séduisants séduisant adj m p 9.13 8.18 0.35 0.88 +séduise séduire ver 16.48 22.23 0.17 0.2 sub:pre:1s;sub:pre:3s; +séduisent séduire ver 16.48 22.23 0.1 0.41 ind:pre:3p; +séduises séduire ver 16.48 22.23 0.02 0.07 sub:pre:2s; +séduisez séduire ver 16.48 22.23 0.16 0 imp:pre:2p;ind:pre:2p; +séduisirent séduire ver 16.48 22.23 0.1 0.14 ind:pas:3p; +séduisit séduire ver 16.48 22.23 0.03 0.41 ind:pas:3s; +séduit séduire ver m s 16.48 22.23 5.09 5.95 ind:pre:3s;par:pas; +séduite séduire ver f s 16.48 22.23 1.09 2.3 par:pas; +séduites séduit adj f p 1.08 1.89 0.27 0.14 +séduits séduire ver m p 16.48 22.23 0.08 0.41 par:pas; +séfarade séfarade adj m s 0.01 0 0.01 0 +séfarade séfarade nom s 0.01 0 0.01 0 +ségrégation ségrégation nom f s 0.4 0.74 0.4 0.74 +ségrégationniste ségrégationniste adj m s 0.11 0 0.11 0 +séguedille séguedille nom f s 0 0.14 0 0.14 +séide séide nom m s 0.02 0.2 0.01 0 +séides séide nom m p 0.02 0.2 0.01 0.2 +séisme séisme nom m s 3.31 1.22 2.6 1.01 +séismes séisme nom m p 3.31 1.22 0.71 0.2 +séjour séjour nom m s 16.6 43.58 15.7 36.82 +séjourna séjourner ver 2.48 6.96 0 0.34 ind:pas:3s; +séjournaient séjourner ver 2.48 6.96 0.02 0.34 ind:imp:3p; +séjournais séjourner ver 2.48 6.96 0 0.07 ind:imp:1s; +séjournait séjourner ver 2.48 6.96 0.27 1.22 ind:imp:3s; +séjournant séjourner ver 2.48 6.96 0 0.27 par:pre; +séjourne séjourner ver 2.48 6.96 0.83 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +séjournent séjourner ver 2.48 6.96 0.14 0.07 ind:pre:3p; +séjourner séjourner ver 2.48 6.96 0.39 1.35 inf; +séjourneraient séjourner ver 2.48 6.96 0 0.07 cnd:pre:3p; +séjournerez séjourner ver 2.48 6.96 0.12 0.07 ind:fut:2p; +séjourneriez séjourner ver 2.48 6.96 0.01 0 cnd:pre:2p; +séjournerons séjourner ver 2.48 6.96 0.01 0 ind:fut:1p; +séjournes séjourner ver 2.48 6.96 0.01 0 ind:pre:2s; +séjournez séjourner ver 2.48 6.96 0.1 0 imp:pre:2p;ind:pre:2p; +séjourniez séjourner ver 2.48 6.96 0.01 0.07 ind:imp:2p; +séjournions séjourner ver 2.48 6.96 0 0.2 ind:imp:1p; +séjournâmes séjourner ver 2.48 6.96 0 0.07 ind:pas:1p; +séjourné séjourner ver m s 2.48 6.96 0.56 2.36 par:pas; +séjours séjour nom m p 16.6 43.58 0.9 6.76 +sélect sélect adj m s 0.13 0.54 0.08 0.41 +sélecte sélect adj f s 0.13 0.54 0.02 0 +sélecteur sélecteur nom m s 0.05 0.27 0.03 0.07 +sélecteurs sélecteur nom m p 0.05 0.27 0.03 0.2 +sélectif sélectif adj m s 1.18 1.22 0.21 0.47 +sélectifs sélectif adj m p 1.18 1.22 0.08 0.14 +sélection sélection nom f s 4.69 2.64 4.45 2.36 +sélectionna sélectionner ver 4.08 1.76 0 0.07 ind:pas:3s; +sélectionnaient sélectionner ver 4.08 1.76 0 0.07 ind:imp:3p; +sélectionnait sélectionner ver 4.08 1.76 0.03 0.14 ind:imp:3s; +sélectionnant sélectionner ver 4.08 1.76 0.16 0 par:pre; +sélectionne sélectionner ver 4.08 1.76 0.38 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sélectionner sélectionner ver 4.08 1.76 1.13 0.61 inf; +sélectionnera sélectionner ver 4.08 1.76 0.11 0 ind:fut:3s; +sélectionnerai sélectionner ver 4.08 1.76 0.02 0 ind:fut:1s; +sélectionnerais sélectionner ver 4.08 1.76 0.01 0 cnd:pre:1s; +sélectionneur sélectionneur nom m s 0 0.07 0 0.07 +sélectionneuse sélectionneuse nom f s 0.01 0 0.01 0 +sélectionnez sélectionner ver 4.08 1.76 0.11 0 imp:pre:2p;ind:pre:2p; +sélectionné sélectionner ver m s 4.08 1.76 1.09 0.27 par:pas; +sélectionnée sélectionner ver f s 4.08 1.76 0.13 0.27 par:pas; +sélectionnées sélectionner ver f p 4.08 1.76 0.17 0.07 par:pas; +sélectionnés sélectionner ver m p 4.08 1.76 0.75 0.27 par:pas; +sélections sélection nom f p 4.69 2.64 0.24 0.27 +sélective sélectif adj f s 1.18 1.22 0.83 0.61 +sélectivement sélectivement adv 0.05 0 0.05 0 +sélectives sélectif adj f p 1.18 1.22 0.05 0 +sélectivité sélectivité nom f s 0.01 0.07 0.01 0.07 +sélects sélect adj m p 0.13 0.54 0.02 0.14 +sélénite sélénite nom s 0.2 0 0.02 0 +sélénites sélénite nom p 0.2 0 0.17 0 +sélénium sélénium nom m s 0.19 0 0.19 0 +séléniure séléniure nom m s 0.03 0 0.03 0 +sélénographie sélénographie nom f s 0 0.07 0 0.07 +sémantique sémantique nom f s 0.29 0.34 0.29 0.34 +sémantiques sémantique adj p 0.05 0.14 0 0.07 +sémaphore sémaphore nom m s 0.15 1.01 0.12 0.61 +sémaphores sémaphore nom m p 0.15 1.01 0.03 0.41 +sémaphoriques sémaphorique adj m p 0 0.07 0 0.07 +sémillant sémillant adj m s 0.19 0.61 0.19 0.41 +sémillante sémillant adj f s 0.19 0.61 0 0.2 +sémillon sémillon nom m s 0 0.07 0 0.07 +séminaire séminaire nom m s 3.58 4.59 2.73 3.58 +séminaires séminaire nom m p 3.58 4.59 0.86 1.01 +séminal séminal adj m s 0.21 1.08 0.17 0.07 +séminale séminal adj f s 0.21 1.08 0.03 0.74 +séminales séminal adj f p 0.21 1.08 0.01 0.07 +séminariste séminariste nom s 0.21 3.72 0.2 2.97 +séminaristes séminariste nom p 0.21 3.72 0.01 0.74 +séminaux séminal adj m p 0.21 1.08 0 0.2 +séminole séminole nom s 0.08 0.07 0.03 0 +séminoles séminole nom p 0.08 0.07 0.05 0.07 +séminome séminome nom m s 0.01 0 0.01 0 +sémiologie sémiologie nom f s 0.01 0.07 0.01 0.07 +sémiologue sémiologue nom s 0 0.07 0 0.07 +sémiotique sémiotique nom f s 0.04 0 0.04 0 +sémiotiques sémiotique nom f p 0.04 0 0.01 0 +sémite sémite nom s 0.36 0.34 0.12 0.2 +sémites sémite nom p 0.36 0.34 0.23 0.14 +sémitique sémitique adj s 0.02 0.2 0.02 0.07 +sémitiques sémitique adj f p 0.02 0.2 0 0.14 +sénat sénat nom m s 1.38 1.82 1.38 1.82 +sénateur sénateur nom m s 19.77 3.31 14.85 2.03 +sénateurs sénateur nom m p 19.77 3.31 4.48 1.28 +sénatorial sénatorial adj m s 0.25 0.47 0.07 0.2 +sénatoriale sénatorial adj f s 0.25 0.47 0.17 0.2 +sénatoriales sénatorial nom f p 0.03 0 0.03 0 +sénatrice sénateur nom f s 19.77 3.31 0.44 0 +sénatus_consulte sénatus_consulte nom m s 0 0.07 0 0.07 +sénescence sénescence nom f s 0.01 0.14 0.01 0.14 +sénevé sénevé nom m s 0 0.14 0 0.14 +sénile sénile adj s 2.18 1.82 1.94 1.49 +sénilement sénilement adv 0 0.07 0 0.07 +séniles sénile adj p 2.18 1.82 0.23 0.34 +sénilité sénilité nom f s 0.23 0.81 0.23 0.81 +séné séné nom m s 0.16 0.14 0.16 0.07 +sénéchal sénéchal nom m s 0.01 5.81 0.01 5.2 +sénéchaux sénéchal nom m p 0.01 5.81 0 0.61 +sénégalais sénégalais nom m 0.14 2.09 0.14 1.82 +sénégalaise sénégalais adj f s 0.11 3.24 0.01 0 +sénégalaises sénégalais adj f p 0.11 3.24 0.01 0 +sénés séné nom m p 0.16 0.14 0 0.07 +séoudite séoudite adj f s 0 0.27 0 0.27 +sépale sépale nom m s 0.03 0 0.01 0 +sépales sépale nom m p 0.03 0 0.02 0 +sépara séparer ver 66.22 109.8 0.27 2.77 ind:pas:3s; +séparable séparable adj s 0 0.14 0 0.14 +séparai séparer ver 66.22 109.8 0.01 0.14 ind:pas:1s; +séparaient séparer ver 66.22 109.8 0.3 7.7 ind:imp:3p; +séparais séparer ver 66.22 109.8 0.01 0.34 ind:imp:1s; +séparait séparer ver 66.22 109.8 1.23 18.04 ind:imp:3s; +séparant séparer ver 66.22 109.8 0.56 4.26 par:pre; +séparateur séparateur nom m s 0.07 0 0.07 0 +séparation séparation nom f s 10.15 14.39 9.88 13.45 +séparations séparation nom f p 10.15 14.39 0.27 0.95 +séparatiste séparatiste adj m s 0.45 0.2 0.09 0.2 +séparatistes séparatiste nom p 0.45 0 0.4 0 +séparatrice séparateur adj f s 0.01 0.2 0.01 0 +sépare séparer ver 66.22 109.8 12.77 14.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +séparent séparer ver 66.22 109.8 3.41 6.42 ind:pre:3p; +séparer séparer ver 66.22 109.8 20.34 18.38 inf;; +séparera séparer ver 66.22 109.8 1.39 0.34 ind:fut:3s; +séparerai séparer ver 66.22 109.8 0.32 0.34 ind:fut:1s; +sépareraient séparer ver 66.22 109.8 0.17 0.14 cnd:pre:3p; +séparerais séparer ver 66.22 109.8 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +séparerait séparer ver 66.22 109.8 0.22 0.54 cnd:pre:3s; +sépareras séparer ver 66.22 109.8 0.02 0 ind:fut:2s; +séparerez séparer ver 66.22 109.8 0.16 0.14 ind:fut:2p; +séparerons séparer ver 66.22 109.8 0.25 0.2 ind:fut:1p; +sépareront séparer ver 66.22 109.8 0.09 0 ind:fut:3p; +séparez séparer ver 66.22 109.8 2.59 0.14 imp:pre:2p;ind:pre:2p; +sépariez séparer ver 66.22 109.8 0.32 0.07 ind:imp:2p; +séparions séparer ver 66.22 109.8 0.08 0.68 ind:imp:1p; +séparons séparer ver 66.22 109.8 2.17 0.47 imp:pre:1p;ind:pre:1p; +séparâmes séparer ver 66.22 109.8 0.01 0.34 ind:pas:1p; +séparât séparer ver 66.22 109.8 0 0.27 sub:imp:3s; +séparèrent séparer ver 66.22 109.8 0.3 3.11 ind:pas:3p; +séparé séparer ver m s 66.22 109.8 4.11 8.78 par:pas; +séparée séparer ver f s 66.22 109.8 2.11 6.49 par:pas; +séparées séparé adj f p 5.41 7.3 1.11 1.28 +séparément séparément adv 4.01 3.78 4.01 3.78 +séparés séparer ver m p 66.22 109.8 11.81 12.43 par:pas; +sépharade sépharade adj f s 0.01 0.2 0.01 0.07 +sépharades sépharade nom p 0 0.41 0 0.14 +sépia sépia nom f s 0.02 1.15 0.02 1.08 +sépias sépia nom f p 0.02 1.15 0 0.07 +sépulcral sépulcral adj m s 0.03 1.08 0.01 0.34 +sépulcrale sépulcral adj f s 0.03 1.08 0.01 0.68 +sépulcrales sépulcral adj f p 0.03 1.08 0.01 0.07 +sépulcre sépulcre nom m s 0.48 1.08 0.08 1.01 +sépulcres sépulcre nom m p 0.48 1.08 0.4 0.07 +sépulture sépulture nom f s 1.51 2.97 1.44 2.16 +sépultures sépulture nom f p 1.51 2.97 0.07 0.81 +séquanaise séquanais nom f s 0 0.2 0 0.2 +séquelle séquelle nom f s 1.31 2.36 0.11 0.41 +séquelles séquelle nom f p 1.31 2.36 1.21 1.96 +séquence séquence nom f s 7.61 4.73 6.02 2.97 +séquencer séquencer ver 0.2 0 0.2 0 inf; +séquences séquence nom f p 7.61 4.73 1.59 1.76 +séquenceur séquenceur nom m s 0.11 0 0.11 0 +séquentiel séquentiel adj m s 0.13 0 0.02 0 +séquentielle séquentiel adj f s 0.13 0 0.11 0 +séquentiellement séquentiellement adv 0.01 0 0.01 0 +séquençage séquençage nom m s 0.27 0 0.27 0 +séquestraient séquestrer ver 2.05 2.03 0.01 0.07 ind:imp:3p; +séquestrait séquestrer ver 2.05 2.03 0.14 0.2 ind:imp:3s; +séquestration séquestration nom f s 0.5 0.47 0.3 0.34 +séquestrations séquestration nom f p 0.5 0.47 0.2 0.14 +séquestre séquestre nom m s 0.33 0.95 0.31 0.81 +séquestrer séquestrer ver 2.05 2.03 0.44 0.47 inf; +séquestres séquestre nom m p 0.33 0.95 0.02 0.14 +séquestrez séquestrer ver 2.05 2.03 0.12 0 ind:pre:2p; +séquestré séquestrer ver m s 2.05 2.03 0.37 0.54 par:pas; +séquestrée séquestrer ver f s 2.05 2.03 0.83 0.47 par:pas; +séquestrés séquestrer ver m p 2.05 2.03 0.08 0.14 par:pas; +séquoia séquoia nom m s 0.41 1.49 0.3 1.22 +séquoias séquoia nom m p 0.41 1.49 0.11 0.27 +sérac sérac nom m s 0.21 0.07 0.21 0 +séracs sérac nom m p 0.21 0.07 0 0.07 +sérail sérail nom m s 0.47 13.31 0.47 13.31 +séraphin séraphin nom m s 0.2 0.41 0.06 0.2 +séraphins séraphin nom m p 0.2 0.41 0.14 0.2 +séraphique séraphique adj s 0 0.54 0 0.34 +séraphiques séraphique adj p 0 0.54 0 0.2 +séreux séreux adj m s 0 0.07 0 0.07 +sérial sérial nom m s 0.03 0 0.03 0 +sériant sérier ver 0 0.14 0 0.07 par:pre; +série série nom f s 36.53 39.59 33.34 35.41 +sériel sériel adj m s 0.01 0.41 0.01 0.14 +sérielle sériel adj f s 0.01 0.41 0 0.27 +sérier sérier ver 0 0.14 0 0.07 inf; +séries série nom f p 36.53 39.59 3.19 4.19 +sérieuse sérieux adj f s 110.48 66.01 23.64 13.65 +sérieusement sérieusement adv 39.34 21.76 39.34 21.76 +sérieuses sérieux adj f p 110.48 66.01 5.85 9.53 +sérieux sérieux adj m 110.48 66.01 80.99 42.84 +sérique sérique adj m s 0.01 0 0.01 0 +sérologie sérologie nom f s 0.09 0 0.09 0 +séronégatif séronégatif adj m s 0.23 0.14 0.19 0.14 +séronégatifs séronégatif nom m p 0.03 0.34 0.03 0.27 +séronégative séronégatif adj f s 0.23 0.14 0.03 0 +séropo séropo nom s 0.17 0.14 0.17 0.14 +séropositif séropositif adj m s 2.04 1.15 0.99 0.81 +séropositifs séropositif adj m p 2.04 1.15 0.17 0.27 +séropositive séropositif adj f s 2.04 1.15 0.81 0 +séropositives séropositif adj f p 2.04 1.15 0.09 0.07 +séropositivité séropositivité nom f s 0.09 0.27 0.09 0.27 +sérosité sérosité nom f s 0.02 0.07 0.02 0.07 +sérotonine sérotonine nom f s 0.61 0 0.61 0 +sérum sérum nom m s 4.16 0.81 4 0.74 +sérums sérum nom m p 4.16 0.81 0.15 0.07 +sérénade sérénade nom f s 1.13 1.08 1.02 0.81 +sérénades sérénade nom f p 1.13 1.08 0.11 0.27 +sérénissime sérénissime adj s 0.07 1.62 0.07 1.62 +sérénité sérénité nom f s 4.71 12.91 4.71 12.91 +sésame sésame nom m s 1.26 1.35 1.26 1.35 +sésamoïdes sésamoïde adj p 0.01 0 0.01 0 +séton séton nom m s 0 0.07 0 0.07 +sévi sévir ver m s 3.23 5.61 0.14 0.68 par:pas; +sévice sévices nom m s 1.25 2.5 0.12 0.34 +sévices sévices nom m p 1.25 2.5 1.13 2.16 +sévillan sévillan nom m s 0 0.27 0 0.07 +sévillane sévillan nom f s 0 0.27 0 0.2 +sévir sévir ver 3.23 5.61 0.75 1.62 inf; +sévira sévir ver 3.23 5.61 0.04 0 ind:fut:3s; +sévirai sévir ver 3.23 5.61 0.14 0.07 ind:fut:1s; +sévissaient sévir ver 3.23 5.61 0.1 0.34 ind:imp:3p; +sévissais sévir ver 3.23 5.61 0 0.07 ind:imp:1s; +sévissait sévir ver 3.23 5.61 0.5 1.01 ind:imp:3s; +sévissant sévir ver 3.23 5.61 0.01 0 par:pre; +sévisse sévir ver 3.23 5.61 0.03 0.07 sub:pre:3s; +sévissent sévir ver 3.23 5.61 0.18 0.34 ind:pre:3p; +sévit sévir ver 3.23 5.61 1.33 1.35 ind:pre:3s;ind:pas:3s; +sévrienne sévrienne nom f s 0 0.14 0 0.07 +sévriennes sévrienne nom f p 0 0.14 0 0.07 +sévère sévère adj s 9.47 29.73 8.28 22.91 +sévèrement sévèrement adv 2.46 6.08 2.46 6.08 +sévères sévère adj p 9.47 29.73 1.2 6.82 +sévérité sévérité nom f s 0.96 7.16 0.95 6.89 +sévérités sévérité nom f p 0.96 7.16 0.01 0.27 +sévît sévir ver 3.23 5.61 0 0.07 sub:imp:3s; +sézigue sézigue pro_per s 0 0.27 0 0.27 +sûmes savoir ver_sup 4516.71 2003.58 0 0.61 ind:pas:1p; +sûr sûr adj m s 943.56 412.97 801.64 343.51 +sûre sûr adj f s 943.56 412.97 122.03 56.55 +sûrement sûrement adv 133.67 74.12 133.67 74.12 +sûres sûr adj f p 943.56 412.97 2.47 2.91 +sûreté sûreté nom f s 7.04 10.07 7.01 9.86 +sûretés sûreté nom f p 7.04 10.07 0.03 0.2 +sûrs sûr adj m p 943.56 412.97 17.43 10 +sût savoir ver_sup 4516.71 2003.58 0.08 6.62 sub:imp:3s; +t t pro_per s 88.47 4.53 88.47 4.53 +t_ t_ pro_per s 4344.23 779.93 4344.23 779.93 +t_shirt t_shirt nom m s 10.87 0.54 7.59 0.2 +t_shirt t_shirt nom m p 10.87 0.54 3.28 0.34 +ta ta adj_pos 1265.97 251.69 1265.97 251.69 +tab tab adj m s 0.23 0 0.23 0 +tabac tabac nom m s 16 41.89 15.7 41.28 +tabacs tabac nom m p 16 41.89 0.3 0.61 +tabagie tabagie nom f s 0.15 0.41 0.15 0.27 +tabagies tabagie nom f p 0.15 0.41 0 0.14 +tabagisme tabagisme nom m s 0.26 0 0.26 0 +tabard tabard nom m s 0.13 0 0.13 0 +tabaski tabaski nom f s 0 0.07 0 0.07 +tabassage tabassage nom m s 0.07 0.27 0.07 0.14 +tabassages tabassage nom m p 0.07 0.27 0 0.14 +tabassaient tabasser ver 12.71 2.3 0.04 0 ind:imp:3p; +tabassais tabasser ver 12.71 2.3 0.14 0 ind:imp:1s;ind:imp:2s; +tabassait tabasser ver 12.71 2.3 0.33 0.14 ind:imp:3s; +tabassant tabasser ver 12.71 2.3 0.01 0 par:pre; +tabasse tabasser ver 12.71 2.3 1.96 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tabassent tabasser ver 12.71 2.3 0.38 0.07 ind:pre:3p; +tabasser tabasser ver 12.71 2.3 4.91 1.01 inf; +tabassera tabasser ver 12.71 2.3 0.08 0 ind:fut:3s; +tabasseraient tabasser ver 12.71 2.3 0.01 0 cnd:pre:3p; +tabasserais tabasser ver 12.71 2.3 0.18 0 cnd:pre:1s;cnd:pre:2s; +tabasses tabasser ver 12.71 2.3 0.25 0.07 ind:pre:2s; +tabassez tabasser ver 12.71 2.3 0.09 0 imp:pre:2p;ind:pre:2p; +tabassons tabasser ver 12.71 2.3 0.01 0.07 imp:pre:1p;ind:pre:1p; +tabassèrent tabasser ver 12.71 2.3 0.01 0 ind:pas:3p; +tabassé tabasser ver m s 12.71 2.3 3.59 0.34 par:pas; +tabassée tabasser ver f s 12.71 2.3 0.48 0.14 par:pas; +tabassés tabasser ver m p 12.71 2.3 0.26 0.2 par:pas; +tabatière tabatière nom f s 0.46 2.57 0.35 2.16 +tabatières tabatière nom f p 0.46 2.57 0.11 0.41 +tabellion tabellion nom m s 0 0.2 0 0.14 +tabellions tabellion nom m p 0 0.2 0 0.07 +tabernacle tabernacle nom m s 0.69 2.16 0.69 2.03 +tabernacles tabernacle nom m p 0.69 2.16 0 0.14 +tabla tabler ver 0.95 1.62 0.01 0 ind:pas:3s; +tablais tabler ver 0.95 1.62 0.01 0 ind:imp:2s; +tablant tabler ver 0.95 1.62 0.01 0.14 par:pre; +tablature tablature nom f s 0 0.07 0 0.07 +table table nom f s 118.37 379.8 111.44 341.08 +table_bureau table_bureau nom f s 0 0.07 0 0.07 +table_coiffeuse table_coiffeuse nom f s 0 0.27 0 0.27 +tableau tableau nom m s 50.11 90 37.8 57.84 +tableautin tableautin nom m s 0 0.27 0 0.07 +tableautins tableautin nom m p 0 0.27 0 0.2 +tableaux tableau nom m p 50.11 90 12.31 32.16 +tabler tabler ver 0.95 1.62 0.04 0.54 inf; +tablerez tabler ver 0.95 1.62 0.01 0 ind:fut:2p; +tables table nom f p 118.37 379.8 6.92 38.72 +tablette tablette nom f s 2.7 9.86 2.08 6.76 +tabletterie tabletterie nom f s 0 0.07 0 0.07 +tablettes tablette nom f p 2.7 9.86 0.63 3.11 +tableur tableur nom m s 0.05 0 0.05 0 +tablier tablier nom m s 4.98 30.34 4.13 27.16 +tabliers tablier nom m p 4.98 30.34 0.86 3.18 +tablons tabler ver 0.95 1.62 0.02 0 imp:pre:1p;ind:pre:1p; +tabloïd tabloïd nom m s 0.45 0 0.17 0 +tabloïde tabloïde nom s 0.11 0.07 0.04 0.07 +tabloïdes tabloïde nom p 0.11 0.07 0.07 0 +tabloïds tabloïd nom m p 0.45 0 0.27 0 +tablé tabler ver m s 0.95 1.62 0 0.07 par:pas; +tablée tablée nom f s 0.02 1.49 0.02 1.15 +tablées tablée nom f p 0.02 1.49 0 0.34 +tabor tabor nom m s 0 1.15 0 0.07 +taborites taborite nom m p 0 0.07 0 0.07 +tabors tabor nom m p 0 1.15 0 1.08 +tabou tabou adj m s 1.11 1.35 0.78 0.95 +taboue tabou adj f s 1.11 1.35 0.11 0.07 +taboues tabou adj f p 1.11 1.35 0.01 0 +taboulé taboulé nom m s 0.18 0 0.18 0 +tabouret tabouret nom m s 3.19 18.38 2.79 15.47 +tabourets tabouret nom m p 3.19 18.38 0.41 2.91 +tabous tabou nom m p 1.18 3.11 0.64 1.42 +tabula tabuler ver 0.04 0 0.04 0 ind:pas:3s; +tabulaire tabulaire adj f s 0 0.2 0 0.2 +tabulateur tabulateur nom m s 0.01 0.07 0.01 0.07 +tabulations tabulation nom f p 0.01 0 0.01 0 +tabès tabès nom m 0 0.07 0 0.07 +tac tac nom m s 3.21 4.66 3.16 4.59 +tacatac tacatac ono 0 0.07 0 0.07 +tacatacatac tacatacatac ono 0 0.07 0 0.07 +tacauds tacaud nom m p 0 0.07 0 0.07 +tachaient tacher ver 6.54 16.49 0 0.27 ind:imp:3p; +tachait tacher ver 6.54 16.49 0 0.88 ind:imp:3s; +tachant tacher ver 6.54 16.49 0 0.41 par:pre; +tache tache nom f s 21.04 71.28 12.61 33.92 +tachent tacher ver 6.54 16.49 0.05 0.07 ind:pre:3p; +tacher tacher ver 6.54 16.49 1.11 1.01 ind:pre:2p;inf; +tachera tacher ver 6.54 16.49 0.16 0.07 ind:fut:3s; +tacherai tacher ver 6.54 16.49 0.03 0.14 ind:fut:1s; +tacherais tacher ver 6.54 16.49 0 0.07 cnd:pre:2s; +tacherait tacher ver 6.54 16.49 0.1 0.07 cnd:pre:3s; +taches tache nom f p 21.04 71.28 8.44 37.36 +tachetaient tacheter ver 0.29 3.11 0 0.07 ind:imp:3p; +tachetant tacheter ver 0.29 3.11 0 0.07 par:pre; +tacheter tacheter ver 0.29 3.11 0 0.07 inf; +tachetures tacheture nom f p 0 0.07 0 0.07 +tacheté tacheter ver m s 0.29 3.11 0.16 0.81 par:pas; +tachetée tacheter ver f s 0.29 3.11 0.1 1.08 par:pas; +tachetées tacheter ver f p 0.29 3.11 0.02 0.54 par:pas; +tachetés tacheter ver m p 0.29 3.11 0.01 0.47 par:pas; +tachez tacher ver 6.54 16.49 0.19 0.07 imp:pre:2p;ind:pre:2p; +tachiste tachiste adj f s 0 0.07 0 0.07 +tachons tacher ver 6.54 16.49 0.04 0 imp:pre:1p; +tachyarythmie tachyarythmie nom f s 0.04 0 0.04 0 +tachycarde tachycarder ver 0.53 0.07 0.53 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tachycardie tachycardie nom f s 0.82 0.61 0.82 0.47 +tachycardies tachycardie nom f p 0.82 0.61 0 0.14 +tachymètre tachymètre nom m s 0 0.14 0 0.14 +tachyon tachyon nom m s 0.24 0 0.07 0 +tachyons tachyon nom m p 0.24 0 0.16 0 +taché tacher ver m s 6.54 16.49 1.7 4.32 par:pas; +tachée tacher ver f s 6.54 16.49 1.05 3.92 par:pas; +tachées tacher ver f p 6.54 16.49 0.69 1.42 par:pas; +tachéomètre tachéomètre nom m s 0.02 0 0.02 0 +tachés tacher ver m p 6.54 16.49 0.39 2.36 par:pas; +tacite tacite adj s 0.58 4.66 0.57 4.26 +tacitement tacitement adv 0.01 1.62 0.01 1.62 +tacites tacite adj p 0.58 4.66 0.01 0.41 +taciturne taciturne adj s 1.03 6.55 0.93 5.41 +taciturnes taciturne adj p 1.03 6.55 0.1 1.15 +taciturnité taciturnité nom f s 0 0.2 0 0.2 +tacle tacle nom m s 0.38 0.07 0.38 0.07 +tacler tacler ver 0.04 0 0.04 0 inf; +taco taco nom m s 2 0.27 0.99 0 +tacon tacon nom m s 0 0.14 0 0.14 +taconnet taconnet nom m s 0 0.34 0 0.34 +tacos taco nom m p 2 0.27 1.01 0.27 +tacot tacot nom m s 1.31 0.74 1.25 0.74 +tacots tacot nom m p 1.31 0.74 0.06 0 +tacs tac nom m p 3.21 4.66 0.05 0.07 +tact tact nom m s 2.68 4.8 2.68 4.8 +tacticien tacticien nom m s 0.36 0.41 0.25 0.41 +tacticienne tacticien nom f s 0.36 0.41 0.1 0 +tacticiens tacticien nom m p 0.36 0.41 0.01 0 +tactile tactile adj s 0.21 0.88 0.14 0.61 +tactilement tactilement adv 0 0.14 0 0.14 +tactiles tactile adj p 0.21 0.88 0.07 0.27 +tactique tactique nom f s 5.31 6.69 4.46 6.42 +tactiquement tactiquement adv 0.25 0.07 0.25 0.07 +tactiques tactique nom f p 5.31 6.69 0.85 0.27 +tadjik tadjik nom m s 0 0.14 0 0.14 +tadorne tadorne nom m s 0 0.41 0 0.2 +tadornes tadorne nom m p 0 0.41 0 0.2 +taenia taenia nom m s 0 0.68 0 0.68 +taf taf nom m s 1.05 0.54 1.04 0.54 +tafanard tafanard nom m s 0 0.2 0 0.2 +taffe taffe nom f s 2.06 0.14 2.02 0.14 +taffes taffe nom f p 2.06 0.14 0.03 0 +taffetas taffetas nom m 0.17 1.76 0.17 1.76 +tafia tafia nom m s 0.01 0.07 0.01 0.07 +tafs taf nom m p 1.05 0.54 0.01 0 +tag tag nom m s 0.79 0.41 0.79 0.41 +tagada tagada ono 0.99 0.34 0.99 0.34 +tagalog tagalog nom m s 0.04 0.14 0.04 0.14 +tagger tagger nom m s 0.13 0 0.13 0 +tagliatelle tagliatelle nom f s 0.38 0.47 0.01 0.34 +tagliatelles tagliatelle nom f p 0.38 0.47 0.37 0.14 +taguais taguer ver 0.28 0 0.01 0 ind:imp:2s; +tague taguer ver 0.28 0 0.06 0 imp:pre:2s;ind:pre:3s; +taguer taguer ver 0.28 0 0.21 0 inf; +tagueur tagueur nom m s 0.06 0 0.03 0 +tagueurs tagueur nom m p 0.06 0 0.04 0 +tahitien tahitien nom m s 0.08 0.34 0.04 0 +tahitienne tahitien adj f s 0.16 0 0.11 0 +tahitiennes tahitien nom f p 0.08 0.34 0.02 0.2 +tahitiens tahitien nom m p 0.08 0.34 0 0.07 +tai_chi tai_chi nom m s 0.12 0 0.12 0 +taie taie nom f s 0.51 2.57 0.35 1.96 +taies taie nom f p 0.51 2.57 0.16 0.61 +taifas taifa nom m p 0 0.07 0 0.07 +tailla tailler ver 13.28 37.64 0.01 1.01 ind:pas:3s; +taillable taillable adj m s 0 0.14 0 0.07 +taillables taillable adj p 0 0.14 0 0.07 +taillada taillader ver 1.57 1.82 0 0.07 ind:pas:3s; +tailladait taillader ver 1.57 1.82 0.03 0.2 ind:imp:3s; +tailladant taillader ver 1.57 1.82 0.12 0.2 par:pre; +taillade taillade nom f s 0.3 0 0.3 0 +tailladent taillader ver 1.57 1.82 0.01 0.07 ind:pre:3p; +taillader taillader ver 1.57 1.82 0.47 0.34 inf; +tailladez taillader ver 1.57 1.82 0 0.07 imp:pre:2p; +tailladé taillader ver m s 1.57 1.82 0.48 0.34 par:pas; +tailladée taillader ver f s 1.57 1.82 0.25 0.14 par:pas; +tailladées taillader ver f p 1.57 1.82 0 0.14 par:pas; +tailladés taillader ver m p 1.57 1.82 0.06 0.27 par:pas; +taillaient tailler ver 13.28 37.64 0.03 0.68 ind:imp:3p; +taillais tailler ver 13.28 37.64 0.19 0.41 ind:imp:1s;ind:imp:2s; +taillait tailler ver 13.28 37.64 0.25 3.11 ind:imp:3s; +taillandier taillandier nom m s 0 0.07 0 0.07 +taillant tailler ver 13.28 37.64 0.14 1.42 par:pre; +taillants taillant nom m p 0 0.07 0 0.07 +taille taille nom f s 43.17 76.49 41.32 72.84 +taille_crayon taille_crayon nom m s 0.07 0.68 0.04 0.54 +taille_crayon taille_crayon nom m p 0.07 0.68 0.03 0.14 +taille_douce taille_douce nom f s 0 0.2 0 0.14 +taille_haie taille_haie nom m s 0.07 0.07 0.06 0 +taille_haie taille_haie nom m p 0.07 0.07 0.01 0.07 +taillent tailler ver 13.28 37.64 0.56 1.15 ind:pre:3p; +tailler tailler ver 13.28 37.64 2.93 6.89 inf; +taillera tailler ver 13.28 37.64 0.06 0.14 ind:fut:3s; +taillerai tailler ver 13.28 37.64 0.18 0.27 ind:fut:1s; +taillerais tailler ver 13.28 37.64 0.3 0 cnd:pre:1s;cnd:pre:2s; +taillerait tailler ver 13.28 37.64 0.02 0.27 cnd:pre:3s; +taillerez tailler ver 13.28 37.64 0 0.07 ind:fut:2p; +tailleront tailler ver 13.28 37.64 0.04 0 ind:fut:3p; +tailles taille nom f p 43.17 76.49 1.85 3.65 +taille_douce taille_douce nom f p 0 0.2 0 0.07 +tailleur tailleur nom m s 8.03 25.2 7 22.64 +tailleur_pantalon tailleur_pantalon nom m s 0.01 0.07 0.01 0.07 +tailleurs tailleur nom m p 8.03 25.2 1.03 2.57 +tailleuse tailleuse nom f s 2.29 0.07 2.29 0.07 +taillez tailler ver 13.28 37.64 0.27 0.27 imp:pre:2p;ind:pre:2p; +taillis taillis nom m 0.34 15 0.34 15 +tailloir tailloir nom m s 0 0.2 0 0.14 +tailloirs tailloir nom m p 0 0.2 0 0.07 +taillons taillon nom m p 0.12 0.14 0.12 0.14 +taillèrent tailler ver 13.28 37.64 0.01 0.07 ind:pas:3p; +taillé tailler ver m s 13.28 37.64 2.38 7.7 par:pas; +taillée tailler ver f s 13.28 37.64 0.48 4.32 par:pas; +taillées tailler ver f p 13.28 37.64 0.28 2.3 par:pas; +taillés tailler ver m p 13.28 37.64 0.27 3.85 par:pas; +tain tain nom m s 0.83 1.55 0.83 1.55 +taira taire ver 154.46 139.8 0.22 0.74 ind:fut:3s; +tairai taire ver 154.46 139.8 1.74 0.34 ind:fut:1s; +tairaient taire ver 154.46 139.8 0.01 0.07 cnd:pre:3p; +tairais taire ver 154.46 139.8 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +tairait taire ver 154.46 139.8 0.01 0.88 cnd:pre:3s; +tairas taire ver 154.46 139.8 0.29 0 ind:fut:2s; +taire taire ver 154.46 139.8 31.81 31.69 inf; +tairez taire ver 154.46 139.8 0.06 0.07 ind:fut:2p; +tairions taire ver 154.46 139.8 0 0.14 cnd:pre:1p; +tairons taire ver 154.46 139.8 0.06 0.2 ind:fut:1p; +tairont taire ver 154.46 139.8 0.51 0.14 ind:fut:3p; +tais taire ver 154.46 139.8 77.46 17.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +taisaient taire ver 154.46 139.8 0.3 4.53 ind:imp:3p; +taisais taire ver 154.46 139.8 0.53 2.5 ind:imp:1s;ind:imp:2s; +taisait taire ver 154.46 139.8 0.63 12.36 ind:imp:3s; +taisant taire ver 154.46 139.8 0.24 2.03 par:pre; +taise taire ver 154.46 139.8 1.51 1.49 sub:pre:1s;sub:pre:3s; +taisent taire ver 154.46 139.8 1.28 5 ind:pre:3p; +taises taire ver 154.46 139.8 0.16 0.14 sub:pre:2s; +taiseux taiseux adj m s 0.02 0.14 0.02 0.14 +taisez taire ver 154.46 139.8 24.3 4.39 imp:pre:2p;ind:pre:2p; +taisiez taire ver 154.46 139.8 0.1 0.07 ind:imp:2p; +taisions taire ver 154.46 139.8 0.02 1.08 ind:imp:1p; +taisons taire ver 154.46 139.8 0.23 1.82 imp:pre:1p;ind:pre:1p; +tait taire ver 154.46 139.8 7.42 11.62 ind:pre:3s; +tajine tajine nom m s 0 0.41 0 0.2 +tajines tajine nom m p 0 0.41 0 0.2 +take_off take_off nom m 0.08 0 0.08 0 +tala tala nom m s 0.34 0.27 0.34 0.07 +talait taler ver 0.12 0.54 0 0.14 ind:imp:3s; +talas tala nom m p 0.34 0.27 0 0.2 +talavera_de_la_reina talavera_de_la_reina nom s 0 0.07 0 0.07 +talbin talbin nom m s 0.05 1.49 0.01 0.47 +talbins talbin nom m p 0.05 1.49 0.04 1.01 +talc talc nom m s 1.4 1.49 1.4 1.49 +tale taler ver 0.12 0.54 0.02 0.14 ind:pre:3s; +talent talent nom m s 44.17 38.11 33.28 31.08 +talents talent nom m p 44.17 38.11 10.89 7.03 +talentueuse talentueux adj f s 4.39 0.95 0.93 0.14 +talentueusement talentueusement adv 0 0.07 0 0.07 +talentueuses talentueux adj f p 4.39 0.95 0.12 0 +talentueux talentueux adj m 4.39 0.95 3.35 0.81 +taler taler ver 0.12 0.54 0 0.07 inf; +taleth taleth nom m s 0.03 0.27 0.03 0.2 +taleths taleth nom m p 0.03 0.27 0 0.07 +taliban taliban nom m s 1.81 0 0.23 0 +talibans taliban nom m p 1.81 0 1.58 0 +talion talion nom m s 0.05 3.18 0.05 3.18 +talisman talisman nom m s 1.79 2.97 1.38 2.64 +talismans talisman nom m p 1.79 2.97 0.41 0.34 +talkie talkie nom m s 0.32 0 0.17 0 +talkie_walkie talkie_walkie nom m s 1.37 0.2 0.89 0.07 +talkies talkie nom m p 0.32 0 0.16 0 +talkie_walkie talkie_walkie nom m p 1.37 0.2 0.48 0.14 +talle talle nom f s 0 0.07 0 0.07 +taller taller ver 0.02 0 0.01 0 inf; +tallipot tallipot nom m s 0 0.07 0 0.07 +tallons taller ver 0.02 0 0.01 0 ind:pre:1p; +talmouse talmouse nom f s 0 0.07 0 0.07 +talmudique talmudique adj s 0.94 0.07 0.94 0 +talmudiques talmudique adj p 0.94 0.07 0 0.07 +talmudiste talmudiste nom s 0.14 0.34 0.14 0.27 +talmudistes talmudiste nom p 0.14 0.34 0 0.07 +talochaient talocher ver 0.01 0.27 0 0.07 ind:imp:3p; +talochait talocher ver 0.01 0.27 0 0.07 ind:imp:3s; +taloche taloche nom f s 0.25 1.22 0.14 0.47 +talocher talocher ver 0.01 0.27 0.01 0.07 inf; +taloches taloche nom f p 0.25 1.22 0.11 0.74 +talon talon nom m s 11.72 49.26 4.03 12.36 +talonna talonner ver 0.37 2.57 0 0.14 ind:pas:3s; +talonnades talonnade nom f p 0 0.07 0 0.07 +talonnait talonner ver 0.37 2.57 0.01 0.47 ind:imp:3s; +talonnant talonner ver 0.37 2.57 0.01 0.27 par:pre; +talonne talonner ver 0.37 2.57 0.2 0.41 ind:pre:1s;ind:pre:3s; +talonnent talonner ver 0.37 2.57 0.05 0.07 ind:pre:3p; +talonner talonner ver 0.37 2.57 0.06 0.2 inf; +talonnette talonnette nom f s 0.06 0.74 0 0.27 +talonnettes talonnette nom f p 0.06 0.74 0.06 0.47 +talonneur talonneur nom m s 0 0.07 0 0.07 +talonnons talonner ver 0.37 2.57 0.01 0 ind:pre:1p; +talonné talonner ver m s 0.37 2.57 0.03 0.61 par:pas; +talonnée talonner ver f s 0.37 2.57 0.01 0.2 par:pas; +talonnés talonner ver m p 0.37 2.57 0 0.2 par:pas; +talons talon nom m p 11.72 49.26 7.7 36.89 +talqua talquer ver 0.04 0.54 0 0.07 ind:pas:3s; +talquer talquer ver 0.04 0.54 0.02 0.2 inf; +talquât talquer ver 0.04 0.54 0 0.07 sub:imp:3s; +talqué talquer ver m s 0.04 0.54 0.01 0.14 par:pas; +talquées talquer ver f p 0.04 0.54 0 0.07 par:pas; +talures talure nom f p 0 0.07 0 0.07 +talus talus nom m 0.69 19.53 0.69 19.53 +talée taler ver f s 0.12 0.54 0 0.07 par:pas; +talées talé adj f p 0.14 0.27 0 0.14 +talés talé adj m p 0.14 0.27 0.14 0.07 +tam_tam tam_tam nom m s 1.06 3.45 0.37 2.77 +tam_tam tam_tam nom m p 1.06 3.45 0.69 0.68 +tamagotchi tamagotchi nom m s 0.08 0 0.08 0 +tamanoir tamanoir nom m s 0 0.07 0 0.07 +tamarin tamarin nom m s 0.14 0.07 0.14 0.07 +tamarinier tamarinier nom m s 0.01 0.14 0.01 0 +tamariniers tamarinier nom m p 0.01 0.14 0 0.14 +tamaris tamaris nom m 0.01 0.61 0.01 0.61 +tambouille tambouille nom f s 0.71 1.96 0.71 1.69 +tambouilles tambouille nom f p 0.71 1.96 0 0.27 +tambour tambour nom m s 10.2 19.32 7.8 10.54 +tambour_major tambour_major nom m s 0.26 0.74 0.26 0.74 +tambourin tambourin nom m s 0.56 1.08 0.49 0.47 +tambourina tambouriner ver 0.66 5.54 0 0.47 ind:pas:3s; +tambourinade tambourinade nom f s 0 0.07 0 0.07 +tambourinaient tambouriner ver 0.66 5.54 0 0.2 ind:imp:3p; +tambourinaire tambourinaire nom m s 0 0.27 0 0.07 +tambourinaires tambourinaire nom m p 0 0.27 0 0.2 +tambourinais tambouriner ver 0.66 5.54 0.01 0.07 ind:imp:1s; +tambourinait tambouriner ver 0.66 5.54 0.02 1.08 ind:imp:3s; +tambourinant tambouriner ver 0.66 5.54 0.04 0.74 par:pre; +tambourine tambouriner ver 0.66 5.54 0.08 1.08 ind:pre:1s;ind:pre:3s; +tambourinement tambourinement nom m s 0 0.95 0 0.95 +tambourinent tambouriner ver 0.66 5.54 0.28 0.07 ind:pre:3p; +tambouriner tambouriner ver 0.66 5.54 0.09 1.42 inf; +tambourineur tambourineur nom m s 0 0.07 0 0.07 +tambourins tambourin nom m p 0.56 1.08 0.07 0.61 +tambourinèrent tambouriner ver 0.66 5.54 0 0.07 ind:pas:3p; +tambouriné tambouriner ver m s 0.66 5.54 0.01 0.27 par:pas; +tambourinée tambouriner ver f s 0.66 5.54 0.14 0.07 par:pas; +tambours tambour nom m p 10.2 19.32 2.4 8.78 +tamia tamia nom m s 0.04 0 0.04 0 +tamis tamis nom m 0.53 1.82 0.53 1.82 +tamisage tamisage nom m s 0.01 0 0.01 0 +tamisaient tamiser ver 0.38 2.3 0 0.14 ind:imp:3p; +tamisais tamiser ver 0.38 2.3 0 0.07 ind:imp:1s; +tamisait tamiser ver 0.38 2.3 0 0.2 ind:imp:3s; +tamisant tamiser ver 0.38 2.3 0 0.2 par:pre; +tamise tamiser ver 0.38 2.3 0.16 0.07 imp:pre:2s;ind:pre:3s; +tamisent tamiser ver 0.38 2.3 0 0.07 ind:pre:3p; +tamiser tamiser ver 0.38 2.3 0.17 0.27 inf; +tamiseur tamiseur nom m s 0.14 0 0.14 0 +tamisez tamiser ver 0.38 2.3 0.02 0 imp:pre:2p; +tamisé tamisé adj m s 0.76 1.96 0.02 0.34 +tamisée tamisé adj f s 0.76 1.96 0.68 1.01 +tamisées tamisé adj f p 0.76 1.96 0.07 0.54 +tamisés tamiser ver m p 0.38 2.3 0 0.14 par:pas; +tamoul tamoul nom m s 0 0.14 0 0.14 +tamouré tamouré nom m s 0.02 0.07 0.02 0.07 +tampax tampax nom m 0.29 0.27 0.29 0.27 +tampon tampon nom m s 4.28 8.72 2.96 5.14 +tampon_buvard tampon_buvard nom m s 0 0.2 0 0.2 +tamponna tamponner ver 1.66 6.35 0 0.61 ind:pas:3s; +tamponnade tamponnade nom f s 0.17 0 0.17 0 +tamponnage tamponnage nom m s 0.02 0.07 0.02 0 +tamponnages tamponnage nom m p 0.02 0.07 0 0.07 +tamponnai tamponner ver 1.66 6.35 0 0.07 ind:pas:1s; +tamponnaient tamponner ver 1.66 6.35 0 0.2 ind:imp:3p; +tamponnais tamponner ver 1.66 6.35 0.11 0.07 ind:imp:1s;ind:imp:2s; +tamponnait tamponner ver 1.66 6.35 0.01 0.95 ind:imp:3s; +tamponnant tamponner ver 1.66 6.35 0 0.41 par:pre; +tamponne tamponner ver 1.66 6.35 0.52 2.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tamponnement tamponnement nom m s 0 0.2 0 0.2 +tamponnent tamponner ver 1.66 6.35 0.03 0.14 ind:pre:3p; +tamponner tamponner ver 1.66 6.35 0.27 0.81 inf; +tamponnera tamponner ver 1.66 6.35 0.01 0 ind:fut:3s; +tamponneur tamponneur adj m s 0.26 0.54 0.02 0 +tamponneuse tamponneur adj f s 0.26 0.54 0.1 0 +tamponneuses tamponneur adj f p 0.26 0.54 0.14 0.54 +tamponnez tamponner ver 1.66 6.35 0.15 0.07 imp:pre:2p;ind:pre:2p; +tamponnoir tamponnoir nom m s 0 0.14 0 0.07 +tamponnoirs tamponnoir nom m p 0 0.14 0 0.07 +tamponné tamponner ver m s 1.66 6.35 0.4 0.41 par:pas; +tamponnée tamponner ver f s 1.66 6.35 0.15 0 par:pas; +tamponnés tamponner ver m p 1.66 6.35 0.02 0.14 par:pas; +tampons tampon nom m p 4.28 8.72 1.32 3.58 +tamtam tamtam nom m s 0.13 0.07 0.13 0.07 +tan tan nom m s 0.62 0.2 0.5 0.2 +tan_sad tan_sad nom m s 0 0.2 0 0.2 +tanaisie tanaisie nom f s 0.01 0 0.01 0 +tance tancer ver 0.03 1.01 0 0.14 ind:pre:3s; +tancer tancer ver 0.03 1.01 0.01 0.47 inf; +tanche tanche nom f s 0.06 0.74 0.04 0.41 +tanches tanche nom f p 0.06 0.74 0.01 0.34 +tancé tancer ver m s 0.03 1.01 0 0.07 par:pas; +tancée tancer ver f s 0.03 1.01 0 0.07 par:pas; +tancés tancer ver m p 0.03 1.01 0.01 0.07 par:pas; +tandem tandem nom m s 0.6 2.03 0.6 1.82 +tandems tandem nom m p 0.6 2.03 0 0.2 +tandis_qu tandis_qu con 0.01 0.07 0.01 0.07 +tandis_que tandis_que con 15.04 136.15 15.04 136.15 +tandoori tandoori nom m s 0.06 0 0.06 0 +tangage tangage nom m s 0.24 1.08 0.24 1.08 +tangara tangara nom m s 0.08 0 0.06 0 +tangaras tangara nom m p 0.08 0 0.02 0 +tangence tangence nom f s 0 0.14 0 0.14 +tangent tangent adj m s 0.04 0.61 0.03 0.07 +tangente tangente nom f s 0.35 1.15 0.35 0.88 +tangentes tangente nom f p 0.35 1.15 0 0.27 +tangentiel tangentiel adj m s 0 0.07 0 0.07 +tangents tangent adj m p 0.04 0.61 0 0.14 +tangerine tangerine nom f s 0 0.14 0 0.14 +tangibilité tangibilité nom f s 0.01 0 0.01 0 +tangible tangible adj s 1.53 2.09 0.9 1.55 +tangibles tangible adj p 1.53 2.09 0.63 0.54 +tango tango nom m s 5.74 6.28 5.58 4.53 +tangon tangon nom m s 0.02 0 0.02 0 +tangos tango nom m p 5.74 6.28 0.16 1.76 +tangua tanguer ver 0.69 7.91 0 0.74 ind:pas:3s; +tanguaient tanguer ver 0.69 7.91 0 0.2 ind:imp:3p; +tanguait tanguer ver 0.69 7.91 0.02 2.64 ind:imp:3s; +tanguant tanguer ver 0.69 7.91 0.01 0.54 par:pre; +tangue tanguer ver 0.69 7.91 0.38 1.69 ind:pre:1s;ind:pre:3s; +tanguent tanguer ver 0.69 7.91 0.11 0.27 ind:pre:3p; +tanguer tanguer ver 0.69 7.91 0.17 1.55 inf; +tangueraient tanguer ver 0.69 7.91 0 0.07 cnd:pre:3p; +tangué tanguer ver m s 0.69 7.91 0 0.2 par:pas; +tangérois tangérois adj m s 0 0.07 0 0.07 +tanin tanin nom m s 0.05 0.34 0.05 0.34 +tanière tanière nom f s 2.06 4.8 2 3.92 +tanières tanière nom f p 2.06 4.8 0.06 0.88 +tank tank nom m s 8.41 4.86 3.8 1.89 +tanka tanka nom m s 0 0.54 0 0.54 +tanker tanker nom m s 0.78 0.07 0.49 0.07 +tankers tanker nom m p 0.78 0.07 0.29 0 +tankiste tankiste nom s 0 0.27 0 0.07 +tankistes tankiste nom p 0 0.27 0 0.2 +tanks tank nom m p 8.41 4.86 4.62 2.97 +tanna tanner ver 2.22 2.7 0.45 0 ind:pas:3s; +tannage tannage nom m s 0.01 0 0.01 0 +tannaient tanner ver 2.22 2.7 0 0.07 ind:imp:3p; +tannait tanner ver 2.22 2.7 0.02 0.27 ind:imp:3s; +tannant tanner ver 2.22 2.7 0.01 0 par:pre; +tannante tannant adj f s 0 0.27 0 0.07 +tannantes tannant adj f p 0 0.27 0 0.07 +tanne tanne nom f s 0.54 0 0.48 0 +tannent tanner ver 2.22 2.7 0.06 0.14 ind:pre:3p;sub:pre:3p; +tanner tanner ver 2.22 2.7 0.73 0.41 inf; +tannerai tanner ver 2.22 2.7 0.03 0.07 ind:fut:1s; +tannerie tannerie nom f s 0.04 0.34 0.04 0.34 +tannes tanne nom f p 0.54 0 0.07 0 +tanneur tanneur nom m s 0.31 1.15 0.31 0.27 +tanneurs tanneur nom m p 0.31 1.15 0 0.88 +tannin tannin nom m s 0.01 0 0.01 0 +tanné tanner ver m s 2.22 2.7 0.7 0.74 par:pas; +tannée tanner ver f s 2.22 2.7 0.17 0.61 par:pas; +tannées tannée nom f p 0.18 0.27 0.01 0 +tannés tanner ver m p 2.22 2.7 0.04 0.2 par:pas; +tanrec tanrec nom m s 0 0.07 0 0.07 +tans tan nom m p 0.62 0.2 0.13 0 +tansad tansad nom m s 0 0.07 0 0.07 +tant tant adv_sup 380.34 436.42 380.34 436.42 +tante tante nom f s 76.62 118.38 70.69 110.95 +tantes tante nom f p 76.62 118.38 5.93 7.43 +tantine tantine nom f s 1.08 0.2 1.08 0.14 +tantines tantine nom f p 1.08 0.2 0 0.07 +tantinet tantinet nom m s 1.02 1.55 1.02 1.55 +tantièmes tantième nom m p 0 0.07 0 0.07 +tantouse tantouse nom f s 0.69 0.74 0.63 0.14 +tantouses tantouse nom f p 0.69 0.74 0.06 0.61 +tantouze tantouze nom f s 1.14 0.27 0.85 0.14 +tantouzes tantouze nom f p 1.14 0.27 0.28 0.14 +tantra tantra nom m s 0.11 0 0.11 0 +tantrique tantrique adj m s 0.19 0.14 0.18 0.07 +tantriques tantrique adj m p 0.19 0.14 0.01 0.07 +tantrisme tantrisme nom m s 0.17 0.34 0.17 0.34 +tantôt tantôt adv 5.62 66.76 5.62 66.76 +tançai tancer ver 0.03 1.01 0 0.07 ind:pas:1s; +tançait tancer ver 0.03 1.01 0 0.07 ind:imp:3s; +tançant tancer ver 0.03 1.01 0 0.07 par:pre; +tao tao nom m s 0.05 0.61 0.05 0.61 +taon taon nom m s 0.73 0.61 0.01 0.14 +taons taon nom m p 0.73 0.61 0.72 0.47 +taoïsme taoïsme nom m s 0.06 0.07 0.06 0.07 +taoïste taoïste adj s 0.03 0.47 0.03 0.34 +taoïstes taoïste nom p 0.03 0.61 0.02 0.2 +tap tap ono 0.53 2.5 0.53 2.5 +tapa taper ver 61.07 67.91 0.03 4.93 ind:pas:3s;;ind:pas:3s; +tapage tapage nom m s 1.53 6.08 1.52 6.01 +tapageait tapager ver 0 0.14 0 0.14 ind:imp:3s; +tapages tapage nom m p 1.53 6.08 0.01 0.07 +tapageur tapageur adj m s 0.23 2.97 0.1 1.28 +tapageurs tapageur nom m p 0.11 0.07 0.05 0.07 +tapageuse tapageur adj f s 0.23 2.97 0.1 1.01 +tapageuses tapageur adj f p 0.23 2.97 0.01 0.2 +tapai taper ver 61.07 67.91 0 0.14 ind:pas:1s; +tapaient taper ver 61.07 67.91 0.32 2.57 ind:imp:3p; +tapais taper ver 61.07 67.91 0.68 1.08 ind:imp:1s;ind:imp:2s; +tapait taper ver 61.07 67.91 1.78 9.05 ind:imp:3s; +tapant taper ver 61.07 67.91 0.72 5.81 par:pre; +tapante tapant adj f s 0.57 0.68 0.02 0 +tapantes tapant adj f p 0.57 0.68 0.49 0.27 +tapas tapa nom m p 0.15 0 0.15 0 +tape taper ver 61.07 67.91 18.45 11.89 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tape_cul tape_cul nom m s 0.04 0.41 0.04 0.41 +tape_à_l_oeil tape_à_l_oeil adj 0 0.41 0 0.41 +tapecul tapecul nom m s 0 0.07 0 0.07 +tapement tapement nom m s 0.01 0.14 0.01 0 +tapements tapement nom m p 0.01 0.14 0 0.14 +tapenade tapenade nom f s 0.02 0 0.02 0 +tapent taper ver 61.07 67.91 1.6 1.76 ind:pre:3p; +taper taper ver 61.07 67.91 19.15 20.07 ind:pre:2p;inf; +tapera taper ver 61.07 67.91 0.19 0.34 ind:fut:3s; +taperai taper ver 61.07 67.91 0.59 0.14 ind:fut:1s; +taperaient taper ver 61.07 67.91 0.01 0.07 cnd:pre:3p; +taperais taper ver 61.07 67.91 0.65 0.2 cnd:pre:1s;cnd:pre:2s; +taperait taper ver 61.07 67.91 0.07 0.34 cnd:pre:3s; +taperas taper ver 61.07 67.91 0.13 0 ind:fut:2s; +taperez taper ver 61.07 67.91 0.01 0.14 ind:fut:2p; +taperiez taper ver 61.07 67.91 0.01 0 cnd:pre:2p; +taperont taper ver 61.07 67.91 0.04 0 ind:fut:3p; +tapes taper ver 61.07 67.91 3.17 0.54 ind:pre:2s;sub:pre:2s; +tapette tapette nom f s 7.16 1.15 4.77 0.61 +tapettes tapette nom f p 7.16 1.15 2.39 0.54 +tapeur tapeur nom m s 0.2 0.27 0.19 0.07 +tapeurs tapeur nom m p 0.2 0.27 0.02 0.14 +tapeuses tapeur nom f p 0.2 0.27 0 0.07 +tapez taper ver 61.07 67.91 2.83 0.14 imp:pre:2p;ind:pre:2p; +tapi tapir ver m s 0.92 11.82 0.19 4.39 par:pas; +tapie tapir ver f s 0.92 11.82 0.22 2.84 par:pas; +tapies tapir ver f p 0.92 11.82 0.02 0.61 par:pas; +tapiez taper ver 61.07 67.91 0.06 0.07 ind:imp:2p; +tapin tapin nom m s 2.31 5.41 2.25 3.58 +tapinage tapinage nom m s 0.16 0 0.16 0 +tapinaient tapiner ver 1.76 2.7 0.01 0.07 ind:imp:3p; +tapinais tapiner ver 1.76 2.7 0.02 0.14 ind:imp:1s;ind:imp:2s; +tapinait tapiner ver 1.76 2.7 0.09 0.47 ind:imp:3s; +tapinant tapiner ver 1.76 2.7 0.01 0 par:pre; +tapine tapiner ver 1.76 2.7 0.97 0.68 ind:pre:1s;ind:pre:3s; +tapinent tapiner ver 1.76 2.7 0.14 0.41 ind:pre:3p; +tapiner tapiner ver 1.76 2.7 0.39 0.68 inf; +tapinera tapiner ver 1.76 2.7 0.01 0.07 ind:fut:3s; +tapinerai tapiner ver 1.76 2.7 0 0.07 ind:fut:1s; +tapinerais tapiner ver 1.76 2.7 0.01 0 cnd:pre:1s; +tapines tapiner ver 1.76 2.7 0.11 0 ind:pre:2s; +tapineuse tapineur nom f s 0.08 0.54 0.06 0.2 +tapineuses tapineur nom f p 0.08 0.54 0.02 0.34 +tapins tapin nom m p 2.31 5.41 0.06 1.82 +tapiné tapiner ver m s 1.76 2.7 0 0.07 par:pas; +tapinée tapiner ver f s 1.76 2.7 0 0.07 par:pas; +tapioca tapioca nom m s 0.33 1.69 0.33 1.69 +tapir tapir nom m s 0.16 0.34 0.13 0.34 +tapira tapir ver 0.92 11.82 0.01 0.07 ind:fut:3s; +tapirs tapir nom m p 0.16 0.34 0.02 0 +tapis tapis nom m 20.13 60.88 20.13 60.88 +tapis_brosse tapis_brosse nom m s 0.01 0.14 0.01 0.14 +tapissa tapisser ver 1.12 10.95 0 0.14 ind:pas:3s; +tapissaient tapisser ver 1.12 10.95 0.01 0.88 ind:imp:3p; +tapissais tapisser ver 1.12 10.95 0 0.07 ind:imp:1s; +tapissait tapisser ver 1.12 10.95 0 1.28 ind:imp:3s; +tapissant tapisser ver 1.12 10.95 0.01 0.27 par:pre; +tapisse tapisser ver 1.12 10.95 0.06 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tapissent tapir ver 0.92 11.82 0.1 0 sub:imp:3p; +tapisser tapisser ver 1.12 10.95 0.14 0.54 inf; +tapisserai tapisser ver 1.12 10.95 0.01 0 ind:fut:1s; +tapisserie tapisserie nom f s 1.34 12.57 0.89 9.73 +tapisseries tapisserie nom f p 1.34 12.57 0.45 2.84 +tapissier tapissier nom m s 0.32 1.69 0.17 1.22 +tapissiers tapissier nom m p 0.32 1.69 0.05 0.34 +tapissière tapissier nom f s 0.32 1.69 0.1 0.14 +tapissé tapisser ver m s 1.12 10.95 0.33 1.82 par:pas; +tapissée tapisser ver f s 1.12 10.95 0.27 2.57 par:pas; +tapissées tapisser ver f p 1.12 10.95 0.01 0.81 par:pas; +tapissés tapisser ver m p 1.12 10.95 0.2 1.76 par:pas; +tapit tapir ver 0.92 11.82 0.06 0.54 ind:pre:3s;ind:pas:3s; +tapons taper ver 61.07 67.91 0.06 0.14 imp:pre:1p;ind:pre:1p; +tapota tapoter ver 1.16 16.55 0.11 3.18 ind:pas:3s; +tapotai tapoter ver 1.16 16.55 0 0.07 ind:pas:1s; +tapotaient tapoter ver 1.16 16.55 0 0.27 ind:imp:3p; +tapotais tapoter ver 1.16 16.55 0 0.07 ind:imp:1s; +tapotait tapoter ver 1.16 16.55 0.04 3.38 ind:imp:3s; +tapotant tapoter ver 1.16 16.55 0.04 3.31 par:pre; +tapote tapoter ver 1.16 16.55 0.36 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tapotement tapotement nom m s 0.07 1.22 0.06 0.47 +tapotements tapotement nom m p 0.07 1.22 0.01 0.74 +tapotent tapoter ver 1.16 16.55 0.01 0.47 ind:pre:3p; +tapoter tapoter ver 1.16 16.55 0.29 1.76 inf; +tapotez tapoter ver 1.16 16.55 0.2 0 imp:pre:2p;ind:pre:2p; +tapotis tapotis nom m 0 0.07 0 0.07 +tapotons tapoter ver 1.16 16.55 0 0.07 imp:pre:1p; +tapotèrent tapoter ver 1.16 16.55 0 0.2 ind:pas:3p; +tapoté tapoter ver m s 1.16 16.55 0.11 0.68 par:pas; +tapâmes taper ver 61.07 67.91 0 0.14 ind:pas:1p; +tapèrent taper ver 61.07 67.91 0 0.47 ind:pas:3p; +tapé taper ver m s 61.07 67.91 9.43 6.55 par:pas; +tapée taper ver f s 61.07 67.91 0.92 0.81 par:pas; +tapées tapé adj f p 0.37 0.61 0.16 0.14 +tapés tapé adj m p 0.37 0.61 0.14 0.07 +taquet taquet nom m s 0.14 0.27 0.1 0.27 +taquets taquet nom m p 0.14 0.27 0.04 0 +taquin taquin adj m s 0.46 1.35 0.34 0.88 +taquina taquiner ver 5.24 5.74 0 0.34 ind:pas:3s; +taquinaient taquiner ver 5.24 5.74 0.04 0.2 ind:imp:3p; +taquinais taquiner ver 5.24 5.74 0.28 0.2 ind:imp:1s;ind:imp:2s; +taquinait taquiner ver 5.24 5.74 0.27 1.15 ind:imp:3s; +taquinant taquiner ver 5.24 5.74 0.01 0.2 par:pre; +taquine taquiner ver 5.24 5.74 1.91 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +taquinent taquiner ver 5.24 5.74 0.06 0.27 ind:pre:3p; +taquiner taquiner ver 5.24 5.74 1.48 2.03 inf; +taquinerait taquiner ver 5.24 5.74 0.21 0 cnd:pre:3s; +taquinerie taquinerie nom f s 0.27 0.74 0.03 0.2 +taquineries taquinerie nom f p 0.27 0.74 0.23 0.54 +taquines taquiner ver 5.24 5.74 0.29 0 ind:pre:2s; +taquinez taquiner ver 5.24 5.74 0.16 0 imp:pre:2p;ind:pre:2p; +taquins taquin adj m p 0.46 1.35 0.02 0.07 +taquiné taquiner ver m s 5.24 5.74 0.41 0.27 par:pas; +taquinée taquiner ver f s 5.24 5.74 0.11 0 par:pas; +taquoir taquoir nom m s 0 0.14 0 0.14 +tara tarer ver 6.08 0.54 0.57 0 ind:pas:3s;;ind:pas:3s;;ind:pas:3s; +tarabiscot tarabiscot nom m s 0 0.07 0 0.07 +tarabiscotages tarabiscotage nom m p 0 0.14 0 0.14 +tarabiscoté tarabiscoté adj m s 0.16 1.01 0.01 0.34 +tarabiscotée tarabiscoté adj f s 0.16 1.01 0.14 0.27 +tarabiscotées tarabiscoté adj f p 0.16 1.01 0.01 0.2 +tarabiscotés tarabiscoté adj m p 0.16 1.01 0 0.2 +tarabustait tarabuster ver 0.19 1.55 0 0.54 ind:imp:3s; +tarabuste tarabuster ver 0.19 1.55 0.01 0.47 ind:pre:1s;ind:pre:3s; +tarabustent tarabuster ver 0.19 1.55 0.01 0.07 ind:pre:3p; +tarabuster tarabuster ver 0.19 1.55 0.16 0.14 inf; +tarabustes tarabuster ver 0.19 1.55 0 0.07 ind:pre:2s; +tarabustèrent tarabuster ver 0.19 1.55 0 0.07 ind:pas:3p; +tarabusté tarabuster ver m s 0.19 1.55 0.01 0.14 par:pas; +tarabustés tarabuster ver m p 0.19 1.55 0 0.07 par:pas; +tarama tarama nom m s 0.28 0 0.28 0 +tarare tarare nom m s 0 0.2 0 0.2 +taratata taratata ono 0.29 0.34 0.29 0.34 +taraud taraud nom m s 0 0.34 0 0.2 +taraudaient tarauder ver 0.77 2.64 0 0.07 ind:imp:3p; +taraudait tarauder ver 0.77 2.64 0 0.34 ind:imp:3s; +taraudant taraudant adj m s 0 0.14 0 0.14 +taraude tarauder ver 0.77 2.64 0.73 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +taraudent tarauder ver 0.77 2.64 0.01 0.27 ind:pre:3p; +tarauder tarauder ver 0.77 2.64 0.02 0.41 inf; +tarauds taraud nom m p 0 0.34 0 0.14 +taraudèrent tarauder ver 0.77 2.64 0 0.07 ind:pas:3p; +taraudé tarauder ver m s 0.77 2.64 0 0.34 par:pas; +taraudée tarauder ver f s 0.77 2.64 0 0.14 par:pas; +taraudées tarauder ver f p 0.77 2.64 0 0.07 par:pas; +taraudés tarauder ver m p 0.77 2.64 0 0.14 par:pas; +tarbais tarbais adj m 0 0.2 0 0.2 +tarbouche tarbouche nom m s 0 0.07 0 0.07 +tarbouif tarbouif nom m s 0 0.14 0 0.14 +tard tard adv_sup 350.38 344.26 350.38 344.26 +tard_venu tard_venu adj m s 0 0.07 0 0.07 +tarda tarder ver 28.36 34.46 0.17 3.51 ind:pas:3s; +tardai tarder ver 28.36 34.46 0.01 0.34 ind:pas:1s; +tardaient tarder ver 28.36 34.46 0 0.68 ind:imp:3p; +tardais tarder ver 28.36 34.46 0.47 0.2 ind:imp:1s;ind:imp:2s; +tardait tarder ver 28.36 34.46 0.35 4.46 ind:imp:3s; +tardant tarder ver 28.36 34.46 0.01 0.2 par:pre; +tarde tarder ver 28.36 34.46 4.63 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tardent tarder ver 28.36 34.46 0.52 0.27 ind:pre:3p; +tarder tarder ver 28.36 34.46 15.01 12.09 inf; +tardera tarder ver 28.36 34.46 1.69 0.47 ind:fut:3s; +tarderai tarder ver 28.36 34.46 0.51 0.07 ind:fut:1s; +tarderaient tarder ver 28.36 34.46 0.03 0.54 cnd:pre:3p; +tarderais tarder ver 28.36 34.46 0.11 0.27 cnd:pre:1s; +tarderait tarder ver 28.36 34.46 0.03 1.82 cnd:pre:3s; +tarderas tarder ver 28.36 34.46 0.33 0 ind:fut:2s; +tarderez tarder ver 28.36 34.46 0.05 0 ind:fut:2p; +tarderie tarderie nom f s 0 0.2 0 0.14 +tarderies tarderie nom f p 0 0.2 0 0.07 +tarderiez tarder ver 28.36 34.46 0.01 0 cnd:pre:2p; +tarderions tarder ver 28.36 34.46 0 0.14 cnd:pre:1p; +tarderons tarder ver 28.36 34.46 0.02 0.07 ind:fut:1p; +tarderont tarder ver 28.36 34.46 0.32 0.14 ind:fut:3p; +tardes tarder ver 28.36 34.46 0.65 0 ind:pre:2s; +tardez tarder ver 28.36 34.46 1.14 0.27 imp:pre:2p;ind:pre:2p; +tardiez tarder ver 28.36 34.46 0.01 0.07 ind:imp:2p; +tardif tardif adj m s 2.62 10 0.65 2.23 +tardifs tardif adj m p 2.62 10 0.34 0.68 +tardigrade tardigrade nom m s 0.01 0 0.01 0 +tardillon tardillon nom m s 0 0.14 0 0.14 +tardions tarder ver 28.36 34.46 0 0.07 ind:imp:1p; +tardive tardif adj f s 2.62 10 1.36 5.74 +tardivement tardivement adv 0.46 1.35 0.46 1.35 +tardives tardif adj f p 2.62 10 0.28 1.35 +tardons tarder ver 28.36 34.46 0.07 0.14 imp:pre:1p;ind:pre:1p; +tardâmes tarder ver 28.36 34.46 0 0.07 ind:pas:1p; +tardèrent tarder ver 28.36 34.46 0.15 0.81 ind:pas:3p; +tardé tarder ver m s 28.36 34.46 2.08 3.92 par:pas; +tardée tarder ver f s 28.36 34.46 0 0.07 par:pas; +tare tare nom f s 1.56 5.2 1.06 3.04 +tarentelle tarentelle nom f s 0.12 0.14 0.12 0.07 +tarentelles tarentelle nom f p 0.12 0.14 0 0.07 +tarentule tarentule nom f s 0.32 0.41 0.23 0.34 +tarentules tarentule nom f p 0.32 0.41 0.08 0.07 +tares tare nom f p 1.56 5.2 0.49 2.16 +taret taret nom m s 0 0.2 0 0.14 +tarets taret nom m p 0 0.2 0 0.07 +targe targe nom f s 0.4 0 0.4 0 +targette targette nom f s 0 1.01 0 0.68 +targettes targette nom f p 0 1.01 0 0.34 +targua targuer ver 0.27 1.69 0 0.07 ind:pas:3s; +targuaient targuer ver 0.27 1.69 0 0.14 ind:imp:3p; +targuais targuer ver 0.27 1.69 0 0.07 ind:imp:1s; +targuait targuer ver 0.27 1.69 0 0.41 ind:imp:3s; +targuant targuer ver 0.27 1.69 0 0.14 par:pre; +targue targuer ver 0.27 1.69 0.22 0.27 ind:pre:1s;ind:pre:3s; +targuent targuer ver 0.27 1.69 0 0.14 ind:pre:3p; +targuer targuer ver 0.27 1.69 0.04 0.34 inf; +targuez targuer ver 0.27 1.69 0.01 0 ind:pre:2p; +targui targui adj m s 0 0.07 0 0.07 +targui targui nom m s 0 0.07 0 0.07 +targuât targuer ver 0.27 1.69 0 0.07 sub:imp:3s; +targué targuer ver m s 0.27 1.69 0 0.07 par:pas; +tari tarir ver m s 1.83 4.93 0.28 0.61 par:pas; +taride taride nom f s 0 0.2 0 0.2 +tarie tarir ver f s 1.83 4.93 0.69 0.74 par:pas; +taries tarir ver f p 1.83 4.93 0.01 0.34 par:pas; +tarif tarif nom m s 6.26 4.8 4.58 2.84 +tarification tarification nom f s 0.02 0 0.01 0 +tarifications tarification nom f p 0.02 0 0.01 0 +tarifié tarifier ver m s 0 0.07 0 0.07 par:pas; +tarifs tarif nom m p 6.26 4.8 1.69 1.96 +tarifée tarifer ver f s 0.01 0.27 0 0.14 par:pas; +tarifées tarifer ver f p 0.01 0.27 0.01 0.07 par:pas; +tarifés tarifer ver m p 0.01 0.27 0 0.07 par:pas; +tarin tarin nom m s 0.1 2.91 0.1 2.91 +tarir tarir ver 1.83 4.93 0.05 1.22 inf; +tarira tarir ver 1.83 4.93 0.02 0 ind:fut:3s; +tarirent tarir ver 1.83 4.93 0.14 0.2 ind:pas:3p; +taris tarir ver m p 1.83 4.93 0.01 0.07 ind:pre:2s;par:pas; +tarissaient tarir ver 1.83 4.93 0 0.14 ind:imp:3p; +tarissait tarir ver 1.83 4.93 0 0.27 ind:imp:3s; +tarissant tarir ver 1.83 4.93 0 0.2 par:pre; +tarisse tarir ver 1.83 4.93 0 0.07 sub:pre:1s; +tarissement tarissement nom m s 0 0.27 0 0.27 +tarissent tarir ver 1.83 4.93 0.01 0.14 ind:pre:3p; +tarissez tarir ver 1.83 4.93 0 0.07 imp:pre:2p; +tarit tarir ver 1.83 4.93 0.62 0.88 ind:pre:3s;ind:pas:3s; +tarière tarière nom f s 0 0.2 0 0.07 +tarières tarière nom f p 0 0.2 0 0.14 +tarlatane tarlatane nom f s 0 0.07 0 0.07 +tarmac tarmac nom m s 0.28 0.07 0.28 0.07 +taro taro nom m s 4.21 0 4.21 0 +tarot tarot nom m s 0.65 2.09 0.37 0.74 +tarots tarot nom m p 0.65 2.09 0.28 1.35 +tarpan tarpan nom m s 0 0.2 0 0.14 +tarpans tarpan nom m p 0 0.2 0 0.07 +tarpon tarpon nom m s 0.08 0 0.08 0 +tarpé tarpé nom m s 0.32 0.07 0.32 0.07 +tarpéienne tarpéienne nom s 0.01 0 0.01 0 +tarse tarse nom m s 0.02 0.14 0.02 0.07 +tarses tarse nom m p 0.02 0.14 0 0.07 +tarsienne tarsien adj f s 0.01 0.14 0.01 0 +tarsiens tarsien adj m p 0.01 0.14 0 0.14 +tarsier tarsier nom m s 0.01 0 0.01 0 +tartan tartan nom m s 0.51 0.27 0.07 0.2 +tartane tartan nom f s 0.51 0.27 0.44 0.07 +tartare tartare adj s 0.46 1.15 0.45 0.61 +tartares tartare nom p 0.94 1.76 0.52 1.15 +tartarin tartarin nom m s 0 0.47 0 0.41 +tartarinades tartarinade nom f p 0 0.14 0 0.14 +tartarins tartarin nom m p 0 0.47 0 0.07 +tarte tarte nom f s 13.04 10.34 10.41 8.31 +tarte_minute tarte_minute adj f s 0.01 0 0.01 0 +tartelette tartelette nom f s 0.68 0.81 0.04 0.34 +tartelettes tartelette nom f p 0.68 0.81 0.64 0.47 +tartempion tartempion nom m s 0.04 0 0.04 0 +tartes tarte nom f p 13.04 10.34 2.62 2.03 +tartignolle tartignolle adj s 0 0.2 0 0.14 +tartignolles tartignolle adj p 0 0.2 0 0.07 +tartina tartiner ver 0.65 3.18 0 0.14 ind:pas:3s; +tartinaient tartiner ver 0.65 3.18 0 0.07 ind:imp:3p; +tartinais tartiner ver 0.65 3.18 0 0.07 ind:imp:1s; +tartinait tartiner ver 0.65 3.18 0 0.34 ind:imp:3s; +tartinant tartiner ver 0.65 3.18 0.01 0.14 par:pre; +tartine tartine nom f s 2.23 16.89 1.41 8.38 +tartinent tartiner ver 0.65 3.18 0.02 0.27 ind:pre:3p; +tartiner tartiner ver 0.65 3.18 0.41 0.88 inf;; +tartinerait tartiner ver 0.65 3.18 0 0.07 cnd:pre:3s; +tartines tartine nom f p 2.23 16.89 0.82 8.51 +tartinez tartiner ver 0.65 3.18 0.03 0 imp:pre:2p;ind:pre:2p; +tartiné tartiner ver m s 0.65 3.18 0.03 0.27 par:pas; +tartinée tartiner ver f s 0.65 3.18 0 0.34 par:pas; +tartinées tartiner ver f p 0.65 3.18 0 0.2 par:pas; +tartir tartir ver 0 1.89 0 1.28 inf; +tartiss tartiss nom m 0 0.41 0 0.41 +tartissent tartir ver 0 1.89 0 0.07 ind:pre:3p; +tartisses tartir ver 0 1.89 0 0.54 sub:pre:2s; +tartouille tartouille nom f s 0 0.2 0 0.07 +tartouilles tartouille nom f p 0 0.2 0 0.14 +tartre tartre nom m s 0.03 0.54 0.03 0.54 +tartufe tartufe nom m s 0.01 0.14 0.01 0.14 +tartuferie tartuferie nom f s 0 0.14 0 0.07 +tartuferies tartuferie nom f p 0 0.14 0 0.07 +tartufferie tartufferie nom f s 0 0.07 0 0.07 +tartuffes tartuffe nom m p 0 0.07 0 0.07 +tarzan tarzan nom m s 0.16 0.2 0.14 0.14 +tarzans tarzan nom m p 0.16 0.2 0.01 0.07 +taré taré nom m s 10.48 2.09 6.96 1.01 +tarée taré adj f s 4.44 1.08 1.45 0.2 +tarées tarer ver f p 6.08 0.54 0.17 0 par:pas; +tarés taré nom m p 10.48 2.09 3.53 1.08 +tas tas nom m 65.28 83.78 65.28 83.78 +tasmanien tasmanien adj m s 0.01 0.07 0.01 0.07 +tassa tasser ver 2.21 19.19 0 1.08 ind:pas:3s; +tassai tasser ver 2.21 19.19 0 0.2 ind:pas:1s; +tassaient tasser ver 2.21 19.19 0.01 0.54 ind:imp:3p; +tassais tasser ver 2.21 19.19 0 0.07 ind:imp:1s; +tassait tasser ver 2.21 19.19 0.01 2.03 ind:imp:3s; +tassant tasser ver 2.21 19.19 0 0.88 par:pre; +tasse tasse nom f s 21.89 34.12 18.52 25.07 +tasseau tasseau nom m s 0.01 0 0.01 0 +tassement tassement nom m s 0.06 0.68 0.04 0.61 +tassements tassement nom m p 0.06 0.68 0.01 0.07 +tassent tasser ver 2.21 19.19 0.1 0.81 ind:pre:3p; +tasser tasser ver 2.21 19.19 0.45 1.76 inf; +tassera tasser ver 2.21 19.19 0.25 0.27 ind:fut:3s; +tasserai tasser ver 2.21 19.19 0 0.07 ind:fut:1s; +tasserait tasser ver 2.21 19.19 0.03 0.07 cnd:pre:3s; +tasses tasse nom f p 21.89 34.12 3.37 9.05 +tassez tasser ver 2.21 19.19 0.17 0.07 imp:pre:2p; +tassiez tasser ver 2.21 19.19 0 0.07 ind:imp:2p; +tassili tassili nom m s 0 0.34 0 0.34 +tassons tasser ver 2.21 19.19 0 0.07 ind:pre:1p; +tassèrent tasser ver 2.21 19.19 0 0.34 ind:pas:3p; +tassé tasser ver m s 2.21 19.19 0.41 3.78 par:pas; +tassée tasser ver f s 2.21 19.19 0.06 2.57 par:pas; +tassées tasser ver f p 2.21 19.19 0.04 0.41 par:pas; +tassés tassé adj m p 0.26 4.32 0.06 0.81 +taste_vin taste_vin nom m 0.01 0.14 0.01 0.14 +tata tata nom f s 3 0.68 2.96 0.47 +tatami tatami nom m s 0.02 0.2 0.02 0.14 +tatamis tatami nom m p 0.02 0.2 0 0.07 +tatane tatane nom f s 0.02 2.64 0.01 1.01 +tatanes tatane nom f p 0.02 2.64 0.01 1.62 +tatar tatar nom m s 0.01 0.07 0.01 0.07 +tatars tatar adj m p 0 0.2 0 0.07 +tatas tata nom f p 3 0.68 0.04 0.2 +tatillon tatillon adj m s 0.47 1.76 0.22 1.01 +tatillonne tatillon adj f s 0.47 1.76 0.09 0.34 +tatillonner tatillonner ver 0 0.07 0 0.07 inf; +tatillonnes tatillon adj f p 0.47 1.76 0 0.07 +tatillons tatillon adj m p 0.47 1.76 0.16 0.34 +tatin tatin nom f s 0.03 0.14 0.03 0.14 +tatou tatou nom m s 0.51 0.27 0.46 0.2 +tatouage tatouage nom m s 12.06 3.38 8.28 1.55 +tatouages tatouage nom m p 12.06 3.38 3.77 1.82 +tatouaient tatouer ver 4.22 3.72 0 0.07 ind:imp:3p; +tatouait tatouer ver 4.22 3.72 0.01 0.14 ind:imp:3s; +tatoue tatouer ver 4.22 3.72 0.08 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tatouent tatouer ver 4.22 3.72 0.02 0 ind:pre:3p; +tatouer tatouer ver 4.22 3.72 1.91 0.81 inf; +tatoueur tatoueur nom m s 0.37 1.01 0.14 1.01 +tatoueurs tatoueur nom m p 0.37 1.01 0.09 0 +tatoueuse tatoueur nom f s 0.37 1.01 0.14 0 +tatouez tatouer ver 4.22 3.72 0.02 0 imp:pre:2p;ind:pre:2p; +tatous tatou nom m p 0.51 0.27 0.04 0.07 +tatoué tatouer ver m s 4.22 3.72 1.23 1.15 par:pas; +tatouée tatouer ver f s 4.22 3.72 0.52 0.61 par:pas; +tatouées tatoué adj f p 1.61 2.16 0.11 0.07 +tatoués tatouer ver m p 4.22 3.72 0.36 0.54 par:pas; +tau tau nom m s 0.88 0.07 0.88 0.07 +taube taube nom m s 0.07 0.27 0.07 0.27 +taudis taudis nom m 4.17 3.24 4.17 3.24 +taulard taulard nom m s 1.78 2.03 0.82 0.61 +taularde taulard nom f s 1.78 2.03 0.17 0.14 +taulardes taulard nom f p 1.78 2.03 0.02 0.07 +taulards taulard nom m p 1.78 2.03 0.77 1.22 +taule taule nom f s 27 14.73 26.92 13.85 +taules taule nom f p 27 14.73 0.08 0.88 +taulier taulier nom m s 0.95 5.41 0.67 3.31 +tauliers taulier nom m p 0.95 5.41 0.14 0.54 +taulière taulier nom f s 0.95 5.41 0.15 1.49 +taulières taulier nom f p 0.95 5.41 0 0.07 +taupe taupe nom f s 6.6 4.39 5.42 2.84 +taupes taupe nom f p 6.6 4.39 1.17 1.55 +taupicide taupicide nom m s 0 0.07 0 0.07 +taupin taupin nom m s 0.4 0.07 0.4 0.07 +taupinière taupinière nom f s 0.07 1.22 0.05 0.88 +taupinières taupinière nom f p 0.07 1.22 0.02 0.34 +taupinées taupinée nom f p 0 0.07 0 0.07 +taupé taupé adj m s 0.01 0.14 0.01 0.07 +taupés taupé adj m p 0.01 0.14 0 0.07 +taure taure nom f s 0 0.07 0 0.07 +taureau taureau nom m s 10.82 13.38 8.37 10 +taureaux taureau nom m p 10.82 13.38 2.46 3.38 +taurillon taurillon nom m s 0 0.27 0 0.2 +taurillons taurillon nom m p 0 0.27 0 0.07 +taurin taurin adj m s 0 0.2 0 0.07 +taurine taurin adj f s 0 0.2 0 0.07 +taurins taurin adj m p 0 0.2 0 0.07 +taurobole taurobole nom m s 0 0.14 0 0.14 +tauromachie tauromachie nom f s 0.22 0.34 0.22 0.34 +tauromachique tauromachique adj s 0 0.14 0 0.14 +tautologie tautologie nom f s 0.01 0.14 0.01 0.14 +taux taux nom m 11.22 2.64 11.22 2.64 +tavel tavel nom m s 0.03 0.14 0.03 0.14 +tavelant taveler ver 0 0.74 0 0.14 par:pre; +tavelures tavelure nom f p 0.01 0.34 0.01 0.34 +tavelé taveler ver m s 0 0.74 0 0.14 par:pas; +tavelée taveler ver f s 0 0.74 0 0.27 par:pas; +tavelées taveler ver f p 0 0.74 0 0.2 par:pas; +taverne taverne nom f s 3.02 8.51 2.63 6.01 +tavernes taverne nom f p 3.02 8.51 0.39 2.5 +tavernier tavernier nom m s 0.06 0.88 0.06 0.68 +taverniers tavernier nom m p 0.06 0.88 0 0.2 +taxa taxer ver 2.19 3.04 0 0.14 ind:pas:3s; +taxables taxable adj f p 0.01 0 0.01 0 +taxaient taxer ver 2.19 3.04 0 0.14 ind:imp:3p; +taxait taxer ver 2.19 3.04 0.02 0.14 ind:imp:3s; +taxant taxer ver 2.19 3.04 0.05 0.07 par:pre; +taxation taxation nom f s 0.02 0.07 0.02 0.07 +taxaudier taxaudier nom m s 0 0.2 0 0.2 +taxe taxe nom f s 4.34 1.82 1.86 1.15 +taxent taxer ver 2.19 3.04 0.16 0.2 ind:pre:3p; +taxer taxer ver 2.19 3.04 0.83 1.15 inf; +taxerait taxer ver 2.19 3.04 0.01 0.14 cnd:pre:3s; +taxes taxe nom f p 4.34 1.82 2.49 0.68 +taxez taxer ver 2.19 3.04 0.01 0 ind:pre:2p; +taxi taxi nom m s 63.77 46.82 59.42 41.22 +taxi_auto taxi_auto nom m s 0 0.07 0 0.07 +taxi_brousse taxi_brousse nom m s 0.14 0.14 0.14 0.14 +taxi_girl taxi_girl nom f s 0 0.27 0 0.07 +taxi_girl taxi_girl nom f p 0 0.27 0 0.2 +taxidermie taxidermie nom f s 0.07 0.07 0.07 0.07 +taxidermiste taxidermiste nom s 0.17 0.14 0.16 0.14 +taxidermistes taxidermiste nom p 0.17 0.14 0.01 0 +taximan taximan nom m s 0.34 0.27 0.23 0.14 +taximen taximan nom m p 0.34 0.27 0.1 0.14 +taximètre taximètre nom m s 0.01 0 0.01 0 +taxinomie taxinomie nom f s 0.1 0.14 0.1 0.14 +taxinomique taxinomique adj m s 0 0.07 0 0.07 +taxinomiste taxinomiste nom s 0.01 0 0.01 0 +taxiphone taxiphone nom m s 0.02 0.07 0.01 0.07 +taxiphones taxiphone nom m p 0.02 0.07 0.01 0 +taxis taxi nom m p 63.77 46.82 4.35 5.61 +taxonomie taxonomie nom f s 0.01 0 0.01 0 +taxonomique taxonomique adj m s 0.01 0 0.01 0 +taxé taxer ver m s 2.19 3.04 0.45 0.61 par:pas; +taxée taxer ver f s 2.19 3.04 0.1 0.14 par:pas; +taxés taxé adj m p 0.07 0.14 0.05 0 +taylorisme taylorisme nom m s 0 0.07 0 0.07 +taylorisé tayloriser ver m s 0 0.07 0 0.07 par:pas; +taï_chi taï_chi nom m s 0.16 0 0.16 0 +taïaut taïaut ono 0.2 0.74 0.2 0.74 +taïga taïga nom f s 1.5 0.95 1.5 0.88 +taïgas taïga nom f p 1.5 0.95 0 0.07 +tchadiens tchadien nom m p 0 0.07 0 0.07 +tchador tchador nom m s 0.23 0.07 0.23 0.07 +tchao tchao ono 2.25 2.03 2.25 2.03 +tchatchant tchatcher ver 0.68 0.14 0 0.07 par:pre; +tchatche tchatche nom f s 0.79 0.27 0.79 0.27 +tchatchent tchatcher ver 0.68 0.14 0.14 0.07 ind:pre:3p; +tchatcher tchatcher ver 0.68 0.14 0.47 0 inf; +tchatches tchatcher ver 0.68 0.14 0.01 0 ind:pre:2s; +tchatché tchatcher ver m s 0.68 0.14 0.04 0 par:pas; +tcherkesse tcherkesse nom m s 0 0.07 0 0.07 +tchernoziom tchernoziom nom m s 0 0.14 0 0.14 +tchetnik tchetnik nom m s 0.83 0 0.81 0 +tchetniks tchetnik nom m p 0.83 0 0.02 0 +tchin_tchin tchin_tchin ono 0.01 0.47 0.01 0.47 +tchin_tchin tchin_tchin ono 0.11 0.14 0.11 0.14 +tchèque tchèque adj s 2 1.55 1.83 0.68 +tchèques tchèque nom p 0.81 1.42 0.33 0.68 +tchécoslovaque tchécoslovaque adj s 0.37 1.82 0.35 1.35 +tchécoslovaques tchécoslovaque nom p 0.16 0.2 0.09 0.2 +tchékhoviennes tchékhovien adj f p 0.1 0 0.1 0 +tchékiste tchékiste nom s 0 0.14 0 0.14 +tchétchène tchétchène nom s 1.08 0 0.63 0 +tchétchènes tchétchène nom p 1.08 0 0.45 0 +te te pro_per s 4006.1 774.32 4006.1 774.32 +te_deum te_deum nom m 0 0.14 0 0.14 +tea_room tea_room nom m s 0 0.2 0 0.2 +team team nom m s 13.84 0.27 13.68 0.2 +teams team nom m p 13.84 0.27 0.16 0.07 +teaser teaser nom m s 0.04 0 0.04 0 +tec tec nom m 0.01 0 0.01 0 +technicien technicien nom m s 5.16 4.32 1.99 1.01 +technicienne technicien adj f s 1.73 0.74 0.34 0.07 +techniciens technicien nom m p 5.16 4.32 3.01 3.24 +technicité technicité nom f s 0.14 0.07 0.14 0.07 +technico_commerciaux technico_commerciaux nom m p 0 0.07 0 0.07 +technicolor technicolor nom m s 0.41 0.88 0.41 0.88 +technique technique adj s 14.9 13.04 11.72 8.31 +techniquement techniquement adv 6.42 0.61 6.42 0.61 +techniques technique nom p 11.39 14.05 3.3 3.65 +techno techno adj s 0.52 0 0.52 0 +technocrate technocrate nom s 0.32 0.47 0.31 0.2 +technocrates technocrate nom p 0.32 0.47 0.01 0.27 +technocratique technocratique adj s 0 0.07 0 0.07 +technocratisme technocratisme nom m s 0 0.07 0 0.07 +technologie technologie nom f s 17.57 0.54 14.78 0.54 +technologies technologie nom f p 17.57 0.54 2.79 0 +technologique technologique adj s 1.62 0.27 1.27 0.27 +technologiquement technologiquement adv 0.15 0 0.15 0 +technologiques technologique adj p 1.62 0.27 0.35 0 +technétium technétium nom m s 0.01 0 0.01 0 +teck teck nom m s 0.11 0.34 0.11 0.34 +teckel teckel nom m s 0.23 1.01 0.21 0.81 +teckels teckel nom m p 0.23 1.01 0.02 0.2 +tectonique tectonique adj s 0.1 0.07 0.03 0 +tectoniques tectonique adj f p 0.1 0.07 0.08 0.07 +tee tee nom m s 0.93 0.34 0.9 0.34 +tee_shirt tee_shirt nom m s 3.19 5.27 2.94 3.99 +tee_shirt tee_shirt nom m p 3.19 5.27 0.25 1.28 +teen_ager teen_ager nom p 0 0.2 0 0.2 +teenager teenager nom s 0.06 0.27 0.02 0.14 +teenagers teenager nom p 0.06 0.27 0.03 0.14 +tees tee nom m p 0.93 0.34 0.03 0 +tefillin tefillin nom m s 0.02 0.14 0.02 0.14 +teignais teindre ver 3.71 4.32 0.14 0 ind:imp:1s; +teignait teindre ver 3.71 4.32 0.02 0.74 ind:imp:3s; +teignant teindre ver 3.71 4.32 0 0.07 par:pre; +teigne teigne nom f s 1.22 1.15 1.18 0.95 +teignent teindre ver 3.71 4.32 0.22 0.07 ind:pre:3p; +teignes teigne nom f p 1.22 1.15 0.04 0.2 +teigneuse teigneux adj f s 0.66 2.84 0.04 0.68 +teigneuses teigneux adj f p 0.66 2.84 0 0.14 +teigneux teigneux adj m 0.66 2.84 0.62 2.03 +teignit teindre ver 3.71 4.32 0 0.14 ind:pas:3s; +teille teiller ver 0 0.07 0 0.07 ind:pre:3s; +teindra teindre ver 3.71 4.32 0.02 0 ind:fut:3s; +teindrai teindre ver 3.71 4.32 0.12 0 ind:fut:1s; +teindrait teindre ver 3.71 4.32 0.01 0.07 cnd:pre:3s; +teindre teindre ver 3.71 4.32 1.28 1.22 inf; +teins teindre ver 3.71 4.32 0.74 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +teint teint nom m s 4.87 24.26 4.84 23.58 +teinta teinter ver 1.32 10.14 0 0.27 ind:pas:3s; +teintaient teinter ver 1.32 10.14 0 0.27 ind:imp:3p; +teintait teinter ver 1.32 10.14 0 0.95 ind:imp:3s; +teintant teinter ver 1.32 10.14 0.28 0.47 par:pre; +teinte teinte nom f s 0.77 12.91 0.6 7.43 +teintent teinter ver 1.32 10.14 0.03 0.14 ind:pre:3p; +teinter teinter ver 1.32 10.14 0.01 0.27 inf; +teinteraient teinter ver 1.32 10.14 0 0.07 cnd:pre:3p; +teintes teinte nom f p 0.77 12.91 0.17 5.47 +teints teint adj m p 0.99 3.85 0.25 1.62 +teinture teinture nom f s 2.49 3.38 2.18 3.04 +teinturerie teinturerie nom f s 0.46 0.61 0.43 0.47 +teintureries teinturerie nom f p 0.46 0.61 0.03 0.14 +teintures teinture nom f p 2.49 3.38 0.31 0.34 +teinturier teinturier nom m s 1.06 1.55 0.99 1.08 +teinturiers teinturier nom m p 1.06 1.55 0.06 0.2 +teinturière teinturier nom f s 1.06 1.55 0.01 0.27 +teinté teinter ver m s 1.32 10.14 0.35 2.43 par:pas; +teintée teinter ver f s 1.32 10.14 0.26 2.77 par:pas; +teintées teinter ver f p 1.32 10.14 0.37 1.15 par:pas; +teintés teinter ver m p 1.32 10.14 0.01 1.01 par:pas; +tek tek nom m s 0.12 0 0.12 0 +tel tel adj_ind m s 66.9 115.74 66.9 115.74 +tell tell nom m s 2.92 0.07 2.92 0.07 +telle telle adj_ind f s 48.77 118.58 48.77 118.58 +tellement tellement adv 183.7 168.51 183.7 168.51 +telles telles adj_ind f p 15.12 27.16 15.12 27.16 +tellure tellure nom m s 0.14 0 0.14 0 +tellurique tellurique adj s 0 1.62 0 1.42 +telluriques tellurique adj m p 0 1.62 0 0.2 +tels tels adj_ind m p 13.65 30.14 13.65 30.14 +telson telson nom m s 0.07 0 0.07 0 +tem tem nom m s 0.03 0.07 0.03 0.07 +tempe tempe nom f s 3.38 29.46 2.23 9.66 +tempera tempera nom f s 0.1 0 0.1 0 +tempes tempe nom f p 3.38 29.46 1.15 19.8 +tempi tempo nom m p 1.44 1.35 0 0.14 +temple temple nom m s 15.69 20.2 14.36 13.72 +temples temple nom m p 15.69 20.2 1.33 6.49 +templier templier nom m s 0.35 5.74 0.12 3.65 +templiers templier nom m p 0.35 5.74 0.23 2.09 +templière templier adj f s 0.23 0.14 0.23 0.14 +tempo tempo nom m s 1.44 1.35 1.38 1.22 +temporaire temporaire adj s 7.51 3.38 6.54 2.57 +temporairement temporairement adv 2.64 0.95 2.64 0.95 +temporaires temporaire adj p 7.51 3.38 0.96 0.81 +temporal temporal adj m s 0.76 0.34 0.65 0 +temporale temporal adj f s 0.76 0.34 0.02 0.14 +temporales temporal adj f p 0.76 0.34 0.01 0.14 +temporalité temporalité nom f s 0 0.34 0 0.27 +temporalités temporalité nom f p 0 0.34 0 0.07 +temporaux temporal adj m p 0.76 0.34 0.07 0.07 +temporel temporel adj m s 4.59 1.82 1.36 1.08 +temporelle temporel adj f s 4.59 1.82 2.61 0.54 +temporellement temporellement adv 0 0.14 0 0.14 +temporelles temporel adj f p 4.59 1.82 0.37 0.07 +temporels temporel adj m p 4.59 1.82 0.26 0.14 +temporisaient temporiser ver 0.49 0.74 0 0.07 ind:imp:3p; +temporisait temporiser ver 0.49 0.74 0.01 0.07 ind:imp:3s; +temporisateur temporisateur adj m s 0 0.07 0 0.07 +temporisation temporisation nom f s 0.02 0.2 0.02 0.2 +temporise temporiser ver 0.49 0.74 0.01 0.07 ind:pre:1s;ind:pre:3s; +temporisent temporiser ver 0.49 0.74 0.01 0 ind:pre:3p; +temporiser temporiser ver 0.49 0.74 0.41 0.34 inf; +temporiserai temporiser ver 0.49 0.74 0.01 0 ind:fut:1s; +temporisez temporiser ver 0.49 0.74 0.01 0 imp:pre:2p; +temporisons temporiser ver 0.49 0.74 0 0.07 imp:pre:1p; +temporisé temporiser ver m s 0.49 0.74 0.02 0.07 par:pas; +temporisée temporiser ver f s 0.49 0.74 0.01 0.07 par:pas; +tempos tempo nom m p 1.44 1.35 0.06 0 +temps temps nom m s 1031.05 1289.39 1031.05 1289.39 +tempura tempura nom f s 0.06 0 0.05 0 +tempuras tempura nom f p 0.06 0 0.01 0 +tempère tempérer ver 0.25 3.85 0.03 0.34 imp:pre:2s;ind:pre:3s; +tempéra tempérer ver 0.25 3.85 0 0.34 ind:pas:3s; +tempéraient tempérer ver 0.25 3.85 0 0.14 ind:imp:3p; +tempérait tempérer ver 0.25 3.85 0 0.88 ind:imp:3s; +tempérament tempérament nom m s 4.74 9.93 4.69 9.05 +tempéraments tempérament nom m p 4.74 9.93 0.05 0.88 +tempérance tempérance nom f s 0.32 0.07 0.32 0.07 +température température nom f s 15.68 10.95 14.42 10.41 +températures température nom f p 15.68 10.95 1.26 0.54 +tempérer tempérer ver 0.25 3.85 0.12 0.68 inf; +tempéreraient tempérer ver 0.25 3.85 0 0.07 cnd:pre:3p; +tempérerait tempérer ver 0.25 3.85 0.01 0.07 cnd:pre:3s; +tempéré tempéré adj m s 0.34 1.22 0.22 0.54 +tempérée tempéré adj f s 0.34 1.22 0.11 0.2 +tempérées tempéré adj f p 0.34 1.22 0.01 0.27 +tempérés tempérer ver m p 0.25 3.85 0 0.2 par:pas; +tempétueux tempétueux adj m s 0.02 0.14 0.02 0.14 +tempêta tempêter ver 0.57 3.51 0 0.34 ind:pas:3s; +tempêtaient tempêter ver 0.57 3.51 0.01 0.07 ind:imp:3p; +tempêtais tempêter ver 0.57 3.51 0 0.14 ind:imp:1s; +tempêtait tempêter ver 0.57 3.51 0 0.74 ind:imp:3s; +tempêtant tempêter ver 0.57 3.51 0 0.47 par:pre; +tempête tempête nom f s 19.73 31.28 15.72 24.26 +tempêtent tempêter ver 0.57 3.51 0.01 0.07 ind:pre:3p; +tempêter tempêter ver 0.57 3.51 0.11 0.61 inf; +tempêtes tempête nom f p 19.73 31.28 4.01 7.03 +tempêté tempêter ver m s 0.57 3.51 0.01 0.14 par:pas; +tenable tenable adj f s 0.03 0.68 0.03 0.68 +tenace tenace adj s 1.96 12.43 1.62 10.2 +tenacement tenacement adv 0 0.2 0 0.2 +tenaces tenace adj p 1.96 12.43 0.34 2.23 +tenaient tenir ver 504.69 741.22 3.56 35.68 ind:imp:3p; +tenaillaient tenailler ver 0.48 3.92 0 0.27 ind:imp:3p; +tenaillait tenailler ver 0.48 3.92 0.02 1.42 ind:imp:3s; +tenaillant tenailler ver 0.48 3.92 0 0.27 par:pre; +tenaille tenaille nom f s 1.83 2.43 0.48 1.22 +tenaillent tenailler ver 0.48 3.92 0 0.07 ind:pre:3p; +tenailler tenailler ver 0.48 3.92 0.1 0.14 inf; +tenailles tenaille nom f p 1.83 2.43 1.34 1.22 +tenaillé tenailler ver m s 0.48 3.92 0.01 0.88 par:pas; +tenaillée tenailler ver f s 0.48 3.92 0.02 0.14 par:pas; +tenais tenir ver 504.69 741.22 11.03 24.8 ind:imp:1s;ind:imp:2s; +tenait tenir ver 504.69 741.22 20.65 179.12 ind:imp:3s; +tenancier tenancier nom m s 0.48 2.43 0.18 0.95 +tenanciers tenancier nom m p 0.48 2.43 0.03 0.34 +tenancière tenancier nom f s 0.48 2.43 0.28 1.08 +tenancières tenancier nom f p 0.48 2.43 0 0.07 +tenant tenir ver 504.69 741.22 3.68 46.62 par:pre; +tenante tenant adj f s 0.88 4.73 0.47 1.69 +tenants tenant nom m p 0.69 4.46 0.39 2.16 +tend tendre ver 26.63 218.38 3.72 31.22 ind:pre:3s; +tendaient tendre ver 26.63 218.38 0.1 6.15 ind:imp:3p; +tendais tendre ver 26.63 218.38 0.19 2.03 ind:imp:1s;ind:imp:2s; +tendait tendre ver 26.63 218.38 1.17 24.12 ind:imp:3s; +tendance tendance nom f s 12.98 20.88 10.95 14.26 +tendances tendance nom f p 12.98 20.88 2.03 6.62 +tendancieuse tendancieux adj f s 0.34 0.95 0.05 0.2 +tendancieusement tendancieusement adv 0 0.14 0 0.14 +tendancieuses tendancieux adj f p 0.34 0.95 0.01 0.47 +tendancieux tendancieux adj m p 0.34 0.95 0.28 0.27 +tendant tendre ver 26.63 218.38 0.93 16.01 par:pre; +tende tendre ver 26.63 218.38 0.42 0.54 sub:pre:1s;sub:pre:3s; +tendelet tendelet nom m s 0 0.2 0 0.2 +tendent tendre ver 26.63 218.38 0.54 5.2 ind:pre:3p; +tender tender nom m s 0.36 0.95 0.36 0.88 +tenders tender nom m p 0.36 0.95 0 0.07 +tendeur tendeur nom m s 0.23 0.74 0.19 0.41 +tendeurs tendeur nom m p 0.23 0.74 0.04 0.34 +tendez tendre ver 26.63 218.38 2 0.54 imp:pre:2p;ind:pre:2p; +tendiez tendre ver 26.63 218.38 0.03 0 ind:imp:2p; +tendineuses tendineux adj f p 0 0.07 0 0.07 +tendinite tendinite nom f s 0.24 0 0.24 0 +tendions tendre ver 26.63 218.38 0 0.2 ind:imp:1p; +tendirent tendre ver 26.63 218.38 0 1.49 ind:pas:3p; +tendis tendre ver 26.63 218.38 0.12 2.7 ind:pas:1s; +tendissent tendre ver 26.63 218.38 0 0.07 sub:imp:3p; +tendit tendre ver 26.63 218.38 0.05 51.22 ind:pas:3s; +tendon tendon nom m s 1.38 3.99 0.9 0.61 +tendons tendon nom m p 1.38 3.99 0.48 3.38 +tendra tendre ver 26.63 218.38 0.06 0.68 ind:fut:3s; +tendrai tendre ver 26.63 218.38 0.42 0.07 ind:fut:1s; +tendraient tendre ver 26.63 218.38 0.01 0.07 cnd:pre:3p; +tendrais tendre ver 26.63 218.38 0.08 0.14 cnd:pre:1s;cnd:pre:2s; +tendrait tendre ver 26.63 218.38 0.22 0.74 cnd:pre:3s; +tendre tendre adj s 21.66 61.15 18.34 45.54 +tendrement tendrement adv 3.42 12.84 3.42 12.84 +tendres tendre adj p 21.66 61.15 3.33 15.61 +tendresse tendresse nom f s 15.87 61.69 15.66 59.39 +tendresses tendresse nom f p 15.87 61.69 0.2 2.3 +tendreté tendreté nom f s 0.01 0.14 0.01 0.14 +tendron tendron nom m s 0.35 0.61 0.05 0.34 +tendrons tendron nom m p 0.35 0.61 0.3 0.27 +tendront tendre ver 26.63 218.38 0 0.07 ind:fut:3p; +tends tendre ver 26.63 218.38 3.46 6.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tendu tendre ver m s 26.63 218.38 6.24 25.68 par:pas; +tendue tendu adj f s 9.71 37.57 3.1 13.51 +tendues tendu adj f p 9.71 37.57 0.85 3.45 +tendus tendu adj m p 9.71 37.57 1.26 7.23 +tendît tendre ver 26.63 218.38 0 0.27 sub:imp:3s; +teneur teneur nom s 0.9 1.35 0.9 1.35 +tenez tenir ver 504.69 741.22 99.49 30.61 imp:pre:2p;ind:pre:2p; +teniez tenir ver 504.69 741.22 2.34 0.95 ind:imp:2p; +tenions tenir ver 504.69 741.22 0.57 4.8 ind:imp:1p;sub:pre:1p; +tenir tenir ver 504.69 741.22 82.83 126.82 inf; +tennis tennis nom m 11.37 13.24 11.37 13.24 +tennis_ballon tennis_ballon nom m 0 0.07 0 0.07 +tennis_club tennis_club nom m 0 0.34 0 0.34 +tennisman tennisman nom m s 0.07 0.61 0.06 0.34 +tennismen tennisman nom m p 0.07 0.61 0.01 0.27 +tenon tenon nom m s 0.23 0.34 0.16 0.14 +tenons tenir ver 504.69 741.22 5.94 3.92 imp:pre:1p;ind:pre:1p; +tenseur tenseur nom m s 0.02 0 0.02 0 +tensiomètre tensiomètre nom m s 0.02 0 0.02 0 +tension tension nom f s 21.28 15.61 20.05 14.93 +tensions tension nom f p 21.28 15.61 1.23 0.68 +tenta tenter ver 79.75 126.96 1 14.19 ind:pas:3s; +tentaculaire tentaculaire adj s 0.01 0.61 0.01 0.47 +tentaculaires tentaculaire adj p 0.01 0.61 0 0.14 +tentacule tentacule nom m s 1.11 2.5 0.27 0.2 +tentacules tentacule nom m p 1.11 2.5 0.84 2.3 +tentai tenter ver 79.75 126.96 0.02 3.38 ind:pas:1s; +tentaient tenter ver 79.75 126.96 0.68 4.73 ind:imp:3p; +tentais tenter ver 79.75 126.96 0.42 2.16 ind:imp:1s;ind:imp:2s; +tentait tenter ver 79.75 126.96 1.98 15.41 ind:imp:3s; +tentant tentant adj m s 2.7 3.18 2.1 2.23 +tentante tentant adj f s 2.7 3.18 0.51 0.47 +tentantes tentant adj f p 2.7 3.18 0.01 0.27 +tentants tentant adj m p 2.7 3.18 0.09 0.2 +tentateur tentateur adj m s 0.48 1.01 0.34 0.54 +tentateurs tentateur adj m p 0.48 1.01 0.1 0.07 +tentation tentation nom f s 7.56 20.61 5.82 16.01 +tentations tentation nom f p 7.56 20.61 1.74 4.59 +tentative tentative nom f s 19.04 19.53 16.24 14.12 +tentatives tentative nom f p 19.04 19.53 2.81 5.41 +tentatrice tentateur nom f s 0.2 0.41 0.17 0.07 +tentatrices tentateur nom f p 0.2 0.41 0.01 0.07 +tente tenter ver 79.75 126.96 16.94 13.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tentent tenter ver 79.75 126.96 2.28 1.76 ind:pre:3p; +tenter tenter ver 79.75 126.96 20.41 32.43 ind:pre:2p;inf; +tentera tenter ver 79.75 126.96 1.3 0.34 ind:fut:3s; +tenterai tenter ver 79.75 126.96 0.56 0.14 ind:fut:1s; +tenteraient tenter ver 79.75 126.96 0.1 0.54 cnd:pre:3p; +tenterais tenter ver 79.75 126.96 0.2 0.34 cnd:pre:1s;cnd:pre:2s; +tenterait tenter ver 79.75 126.96 0.33 1.42 cnd:pre:3s; +tenteras tenter ver 79.75 126.96 0.19 0.14 ind:fut:2s; +tenterez tenter ver 79.75 126.96 0.17 0 ind:fut:2p; +tenteriez tenter ver 79.75 126.96 0.01 0 cnd:pre:2p; +tenterons tenter ver 79.75 126.96 0.74 0 ind:fut:1p; +tenteront tenter ver 79.75 126.96 0.48 0.2 ind:fut:3p; +tentes tente nom f p 16.65 26.22 2.25 7.09 +tentez tenter ver 79.75 126.96 3.31 0.54 imp:pre:2p;ind:pre:2p; +tentiaire tentiaire nom f s 0 0.41 0 0.41 +tentiez tenter ver 79.75 126.96 0.45 0.14 ind:imp:2p; +tentions tenter ver 79.75 126.96 0.12 0.68 ind:imp:1p; +tentons tenter ver 79.75 126.96 2.03 0.2 imp:pre:1p;ind:pre:1p; +tenture tenture nom f s 0.66 8.18 0.2 3.24 +tentures tenture nom f p 0.66 8.18 0.45 4.93 +tentâmes tenter ver 79.75 126.96 0 0.14 ind:pas:1p; +tentât tenter ver 79.75 126.96 0 0.61 sub:imp:3s; +tentèrent tenter ver 79.75 126.96 0.22 1.96 ind:pas:3p; +tenté tenter ver m s 79.75 126.96 21.7 25.34 par:pas; +tentée tenter ver f s 79.75 126.96 1.29 2.5 par:pas; +tentées tenter ver f p 79.75 126.96 0.24 0.34 par:pas; +tentés tenter ver m p 79.75 126.96 0.3 1.49 par:pas; +tenu tenir ver m s 504.69 741.22 27.1 54.12 par:pas; +tenue tenue nom f s 21.96 31.89 19.64 27.97 +tenues tenue nom f p 21.96 31.89 2.32 3.92 +tenure tenure nom f s 0.01 0 0.01 0 +tenus tenir ver m p 504.69 741.22 1.39 6.89 par:pas; +tepidarium tepidarium nom m s 0.01 0 0.01 0 +tequila tequila nom f s 3.81 0.2 3.52 0.2 +tequilas tequila nom f p 3.81 0.2 0.29 0 +ter ter adv 0.72 9.46 0.72 9.46 +terce tercer ver 0.1 0.07 0 0.07 ind:pre:3s; +tercer tercer ver 0.1 0.07 0.1 0 inf; +tercets tercet nom m p 0 0.07 0 0.07 +tercio tercio nom m s 0.01 0.14 0.01 0.14 +tergal tergal nom m s 0.16 0.41 0.16 0.41 +tergiversaient tergiverser ver 0.81 1.35 0 0.07 ind:imp:3p; +tergiversais tergiverser ver 0.81 1.35 0 0.07 ind:imp:1s; +tergiversant tergiverser ver 0.81 1.35 0 0.07 par:pre; +tergiversation tergiversation nom f s 0.09 1.28 0.03 0 +tergiversations tergiversation nom f p 0.09 1.28 0.06 1.28 +tergiverse tergiverser ver 0.81 1.35 0.23 0.2 imp:pre:2s;ind:pre:3s; +tergiverser tergiverser ver 0.81 1.35 0.4 0.81 inf; +tergiverses tergiverser ver 0.81 1.35 0.03 0 ind:pre:2s; +tergiversez tergiverser ver 0.81 1.35 0.04 0 imp:pre:2p;ind:pre:2p; +tergiversons tergiverser ver 0.81 1.35 0.03 0.07 imp:pre:1p;ind:pre:1p; +tergiversé tergiverser ver m s 0.81 1.35 0.09 0.07 par:pas; +terme terme nom m s 37.67 59.73 25.72 34.86 +termes terme nom m p 37.67 59.73 11.96 24.86 +termina terminer ver 142.38 100 0.28 5.2 ind:pas:3s; +terminai terminer ver 142.38 100 0.05 0.68 ind:pas:1s; +terminaient terminer ver 142.38 100 0.05 2.09 ind:imp:3p; +terminais terminer ver 142.38 100 0.56 0.27 ind:imp:1s; +terminaison terminaison nom f s 0.36 0.41 0.17 0 +terminaisons terminaison nom f p 0.36 0.41 0.2 0.41 +terminait terminer ver 142.38 100 0.41 7.91 ind:imp:3s; +terminal terminal nom m s 5.61 0.88 2.08 0.14 +terminale terminal nom f s 5.61 0.88 2.94 0.61 +terminales terminal nom f p 5.61 0.88 0.36 0.14 +terminant terminer ver 142.38 100 0.14 2.43 par:pre; +terminateur terminateur nom m s 0.02 0 0.02 0 +terminatrice terminateur adj f s 0.01 0 0.01 0 +terminaux terminal nom m p 5.61 0.88 0.23 0 +termine terminer ver 142.38 100 14.9 9.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +terminent terminer ver 142.38 100 1.14 1.49 ind:pre:3p; +terminer terminer ver 142.38 100 18.04 13.18 inf; +terminera terminer ver 142.38 100 1.35 0.34 ind:fut:3s; +terminerai terminer ver 142.38 100 0.88 0.34 ind:fut:1s; +termineraient terminer ver 142.38 100 0.03 0.2 cnd:pre:3p; +terminerait terminer ver 142.38 100 0.41 1.28 cnd:pre:3s; +termineras terminer ver 142.38 100 0.08 0.07 ind:fut:2s; +terminerez terminer ver 142.38 100 0.15 0.14 ind:fut:2p; +terminerons terminer ver 142.38 100 0.24 0 ind:fut:1p; +termineront terminer ver 142.38 100 0.04 0.14 ind:fut:3p; +termines terminer ver 142.38 100 0.82 0.07 ind:pre:2s; +terminez terminer ver 142.38 100 0.85 0 imp:pre:2p;ind:pre:2p; +terminiez terminer ver 142.38 100 0.03 0 ind:imp:2p; +terminions terminer ver 142.38 100 0.02 0.2 ind:imp:1p; +terminologie terminologie nom f s 0.46 0.27 0.46 0.27 +terminologique terminologique adj s 0 0.07 0 0.07 +terminons terminer ver 142.38 100 0.57 0.14 imp:pre:1p;ind:pre:1p; +terminus terminus nom m 3.3 5 3.3 5 +terminât terminer ver 142.38 100 0 0.34 sub:imp:3s; +terminèrent terminer ver 142.38 100 0.01 0.47 ind:pas:3p; +terminé terminer ver m s 142.38 100 78.47 34.93 par:pas; +terminée terminer ver f s 142.38 100 18.61 12.7 par:pas; +terminées terminer ver f p 142.38 100 2.34 2.91 par:pas; +terminés terminer ver m p 142.38 100 1.92 2.64 par:pas; +termite termite nom m s 2.23 1.96 0.35 0 +termites termite nom m p 2.23 1.96 1.88 1.96 +termitière termitière nom f s 0 0.81 0 0.61 +termitières termitière nom f p 0 0.81 0 0.2 +ternaire ternaire adj s 0 0.14 0 0.14 +terne terne adj s 2 16.15 1.36 9.73 +ternes terne adj p 2 16.15 0.64 6.42 +terni ternir ver m s 1.32 6.28 0.35 1.01 par:pas; +ternie ternir ver f s 1.32 6.28 0.2 0.34 par:pas; +ternies ternir ver f p 1.32 6.28 0.01 0.34 par:pas; +ternir ternir ver 1.32 6.28 0.35 1.49 inf; +ternirai ternir ver 1.32 6.28 0.01 0 ind:fut:1s; +ternirait ternir ver 1.32 6.28 0.06 0.07 cnd:pre:3s; +ternis ternir ver m p 1.32 6.28 0.04 0.34 ind:pre:2s;par:pas; +ternissaient ternir ver 1.32 6.28 0 0.14 ind:imp:3p; +ternissait ternir ver 1.32 6.28 0 1.22 ind:imp:3s; +ternissant ternir ver 1.32 6.28 0 0.07 par:pre; +ternisse ternir ver 1.32 6.28 0.15 0.14 sub:pre:3s; +ternissent ternir ver 1.32 6.28 0.05 0.14 ind:pre:3p; +ternit ternir ver 1.32 6.28 0.1 1.01 ind:pre:3s;ind:pas:3s; +terra terrer ver 2.62 7.7 0.9 0.41 ind:pas:3s;;ind:pas:3s; +terra_incognita terra_incognita nom f s 0.02 0.34 0.02 0.34 +terrage terrage nom m s 0 0.54 0 0.54 +terrai terrer ver 2.62 7.7 0 0.07 ind:pas:1s; +terraient terrer ver 2.62 7.7 0.03 0.2 ind:imp:3p; +terrain terrain nom m s 52.58 74.73 49.12 64.86 +terrains terrain nom m p 52.58 74.73 3.46 9.86 +terrait terrer ver 2.62 7.7 0.05 0.54 ind:imp:3s; +terramycine terramycine nom f s 0.14 0 0.14 0 +terrant terrer ver 2.62 7.7 0 0.2 par:pre; +terraplane terraplane nom m s 0.02 0 0.02 0 +terrarium terrarium nom m s 0.06 0 0.06 0 +terrassa terrasser ver 2.48 5 0.23 0.34 ind:pas:3s; +terrassai terrasser ver 2.48 5 0 0.14 ind:pas:1s; +terrassaient terrasser ver 2.48 5 0 0.14 ind:imp:3p; +terrassait terrasser ver 2.48 5 0 0.27 ind:imp:3s; +terrassant terrasser ver 2.48 5 0 0.27 par:pre; +terrasse terrasse nom f s 10.57 74.05 9.66 61.15 +terrassement terrassement nom m s 0.02 0.95 0.01 0.68 +terrassements terrassement nom m p 0.02 0.95 0.01 0.27 +terrasser terrasser ver 2.48 5 0.37 0.34 inf; +terrasserait terrasser ver 2.48 5 0 0.2 cnd:pre:3s; +terrasses terrasse nom f p 10.57 74.05 0.92 12.91 +terrassier terrassier nom m s 0.36 2.97 0.15 1.15 +terrassiers terrassier nom m p 0.36 2.97 0.22 1.82 +terrasson terrasson nom m s 0 0.14 0 0.14 +terrassât terrasser ver 2.48 5 0 0.07 sub:imp:3s; +terrassèrent terrasser ver 2.48 5 0 0.07 ind:pas:3p; +terrassé terrasser ver m s 2.48 5 1.29 1.76 par:pas; +terrassée terrasser ver f s 2.48 5 0.18 0.81 par:pas; +terrassées terrasser ver f p 2.48 5 0.02 0 par:pas; +terrassés terrasser ver m p 2.48 5 0.07 0.14 par:pas; +terre terre nom f s 294.45 452.91 276.29 420.88 +terre_neuvas terre_neuvas nom m 0 0.34 0 0.34 +terre_neuve terre_neuve nom m 0.03 0.27 0.03 0.27 +terre_neuvien terre_neuvien adj m s 0.01 0 0.01 0 +terre_neuvien terre_neuvien nom m s 0.01 0 0.01 0 +terre_plein terre_plein nom m s 0.2 5.81 0.2 5.74 +terre_plein terre_plein nom m p 0.2 5.81 0 0.07 +terre_à_terre terre_à_terre adj f s 0 0.2 0 0.2 +terreau terreau nom m s 0.19 3.78 0.18 3.72 +terreaux terreau nom m p 0.19 3.78 0.01 0.07 +terrent terrer ver 2.62 7.7 0.26 0.34 ind:pre:3p; +terrer terrer ver 2.62 7.7 0.46 1.96 inf; +terrerait terrer ver 2.62 7.7 0.02 0 cnd:pre:3s; +terreront terrer ver 2.62 7.7 0.01 0.07 ind:fut:3p; +terres terre nom f p 294.45 452.91 18.16 32.03 +terrestre terrestre adj s 6.96 12.57 4.92 7.36 +terrestres terrestre adj p 6.96 12.57 2.04 5.2 +terreur terreur nom f s 15.18 27.09 13.87 23.78 +terreurs terreur nom f p 15.18 27.09 1.3 3.31 +terreuse terreux adj f s 0.53 5.88 0.06 2.36 +terreuses terreux adj f p 0.53 5.88 0.12 1.01 +terreux terreux adj m 0.53 5.88 0.35 2.5 +terrez terrer ver 2.62 7.7 0.02 0 ind:pre:2p; +terri terri nom m s 0.43 0 0.43 0 +terrible terrible adj s 87.66 88.11 76.56 73.24 +terriblement terriblement adv 11.88 14.53 11.88 14.53 +terribles terrible adj p 87.66 88.11 11.1 14.86 +terrien terrien adj m s 4.2 1.82 1.35 0.88 +terrienne terrien adj f s 4.2 1.82 1.59 0.2 +terriennes terrien adj f p 4.2 1.82 0.63 0.34 +terriens terrien nom m p 3.67 1.01 1.85 0.54 +terrier terrier nom m s 1.15 2.91 0.9 2.23 +terriers terrier nom m p 1.15 2.91 0.25 0.68 +terrifia terrifier ver 8.49 4.86 0.02 0.14 ind:pas:3s; +terrifiaient terrifier ver 8.49 4.86 0.25 0.27 ind:imp:3p; +terrifiait terrifier ver 8.49 4.86 0.39 0.54 ind:imp:3s; +terrifiant terrifiant adj m s 8.33 10.34 5.2 4.39 +terrifiante terrifiant adj f s 8.33 10.34 2.19 3.31 +terrifiantes terrifiant adj f p 8.33 10.34 0.45 1.28 +terrifiants terrifiant adj m p 8.33 10.34 0.48 1.35 +terrifie terrifier ver 8.49 4.86 1.15 0.41 ind:pre:1s;ind:pre:3s; +terrifient terrifier ver 8.49 4.86 0.14 0.27 ind:pre:3p; +terrifier terrifier ver 8.49 4.86 0.19 0.14 inf; +terrifierait terrifier ver 8.49 4.86 0.11 0 cnd:pre:3s; +terrifiez terrifier ver 8.49 4.86 0.08 0 imp:pre:2p;ind:pre:2p; +terrifions terrifier ver 8.49 4.86 0.01 0 ind:pre:1p; +terrifique terrifique adj m s 0 0.14 0 0.14 +terrifié terrifier ver m s 8.49 4.86 2.61 1.76 par:pas; +terrifiée terrifier ver f s 8.49 4.86 1.88 0.68 par:pas; +terrifiées terrifier ver f p 8.49 4.86 0.07 0.07 par:pas; +terrifiés terrifier ver m p 8.49 4.86 1.07 0.14 par:pas; +terril terril nom m s 0.03 0.68 0.02 0.27 +terrils terril nom m p 0.03 0.68 0.01 0.41 +terrine terrine nom f s 0.21 3.31 0.2 2.23 +terrines terrine nom f p 0.21 3.31 0.01 1.08 +territoire territoire nom m s 19.09 58.24 15.34 36.08 +territoires territoire nom m p 19.09 58.24 3.75 22.16 +territorial territorial adj m s 0.67 3.24 0.08 0.61 +territoriale territorial adj f s 0.67 3.24 0.15 1.22 +territorialement territorialement adv 0 0.07 0 0.07 +territoriales territorial adj f p 0.67 3.24 0.2 1.08 +territorialité territorialité nom f s 0.05 0 0.05 0 +territoriaux territorial adj m p 0.67 3.24 0.24 0.34 +terroir terroir nom m s 0.17 1.82 0.17 1.82 +terrons terrer ver 2.62 7.7 0 0.07 ind:pre:1p; +terrorisa terroriser ver 7.82 4.59 0.14 0.14 ind:pas:3s; +terrorisaient terroriser ver 7.82 4.59 0.03 0.27 ind:imp:3p; +terrorisait terroriser ver 7.82 4.59 0.3 0.74 ind:imp:3s; +terrorisant terroriser ver 7.82 4.59 0.06 0.34 par:pre; +terrorisante terrorisant adj f s 0.03 0.34 0 0.07 +terrorisants terrorisant adj m p 0.03 0.34 0.01 0.07 +terrorise terroriser ver 7.82 4.59 1.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +terrorisent terroriser ver 7.82 4.59 0.55 0.2 ind:pre:3p; +terroriser terroriser ver 7.82 4.59 1.56 0.88 inf; +terroriseront terroriser ver 7.82 4.59 0.01 0 ind:fut:3p; +terrorises terroriser ver 7.82 4.59 0.16 0.07 ind:pre:2s; +terrorisez terroriser ver 7.82 4.59 0.05 0 ind:pre:2p; +terrorisme terrorisme nom m s 5.59 1.22 5.59 1.15 +terrorismes terrorisme nom m p 5.59 1.22 0 0.07 +terroriste terroriste nom s 16.62 2.5 5.87 0.74 +terroristes terroriste nom p 16.62 2.5 10.75 1.76 +terrorisé terroriser ver m s 7.82 4.59 1.06 0.81 par:pas; +terrorisée terroriser ver f s 7.82 4.59 1.74 0.47 par:pas; +terrorisées terrorisé adj f p 1.43 2.97 0.14 0.2 +terrorisés terroriser ver m p 7.82 4.59 0.69 0.34 par:pas; +terré terrer ver m s 2.62 7.7 0.42 0.74 par:pas; +terrée terrer ver f s 2.62 7.7 0.04 0.88 par:pas; +terrées terrer ver f p 2.62 7.7 0 0.2 par:pas; +terrés terrer ver m p 2.62 7.7 0.12 0.74 par:pas; +tertiaire tertiaire adj s 0.09 0.14 0.06 0.14 +tertiaires tertiaire adj m p 0.09 0.14 0.03 0 +tertio tertio adv_sup 1.08 0.81 1.08 0.81 +tertre tertre nom m s 0.17 2.5 0.16 2.23 +tertres tertre nom m p 0.17 2.5 0.01 0.27 +tes tes adj_pos 690.24 145 690.24 145 +tesla tesla nom m s 0.02 0 0.02 0 +tessiture tessiture nom f s 0 0.41 0 0.41 +tesson tesson nom m s 0.76 2.43 0.48 0.27 +tessons tesson nom m p 0.76 2.43 0.28 2.16 +test test nom m s 55.38 5.61 34.87 2.91 +test_match test_match nom m s 0.01 0 0.01 0 +testa tester ver 20.66 2.43 0.21 0.54 ind:pas:3s; +testais tester ver 20.66 2.43 0.29 0 ind:imp:1s;ind:imp:2s; +testait tester ver 20.66 2.43 0.28 0.14 ind:imp:3s; +testament testament nom m s 10.9 8.24 10.7 7.7 +testamentaire testamentaire adj s 0.47 0.27 0.44 0.07 +testamentaires testamentaire adj f p 0.47 0.27 0.04 0.2 +testaments testament nom m p 10.9 8.24 0.2 0.54 +testant tester ver 20.66 2.43 0.23 0.14 par:pre; +teste tester ver 20.66 2.43 2.76 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +testent tester ver 20.66 2.43 0.53 0 ind:pre:3p; +tester tester ver 20.66 2.43 8.73 0.81 inf; +testera tester ver 20.66 2.43 0.03 0 ind:fut:3s; +testeras tester ver 20.66 2.43 0.01 0 ind:fut:2s; +testerons tester ver 20.66 2.43 0.18 0 ind:fut:1p; +testeront tester ver 20.66 2.43 0.01 0 ind:fut:3p; +testes tester ver 20.66 2.43 0.37 0.07 ind:pre:2s; +testeur testeur nom m s 0.17 0 0.16 0 +testeuse testeur nom f s 0.17 0 0.01 0 +testez tester ver 20.66 2.43 1.18 0 imp:pre:2p;ind:pre:2p; +testiculaire testiculaire adj s 0.07 0.07 0.07 0.07 +testicule testicule nom m s 2.46 1.89 0.44 0.27 +testicules testicule nom m p 2.46 1.89 2.02 1.62 +testiez tester ver 20.66 2.43 0.11 0 ind:imp:2p; +testions tester ver 20.66 2.43 0.03 0.07 ind:imp:1p; +testons tester ver 20.66 2.43 0.39 0 imp:pre:1p;ind:pre:1p; +testostérone testostérone nom f s 1.18 0 1.15 0 +testostérones testostérone nom f p 1.18 0 0.03 0 +tests test nom m p 55.38 5.61 20.5 2.7 +testu testu nom m s 0 0.07 0 0.07 +testèrent tester ver 20.66 2.43 0 0.07 ind:pas:3p; +testé tester ver m s 20.66 2.43 3.88 0.14 par:pas; +testée tester ver f s 20.66 2.43 0.71 0.07 par:pas; +testées tester ver f p 20.66 2.43 0.23 0 par:pas; +testés tester ver m p 20.66 2.43 0.48 0.07 par:pas; +tette tette nom f s 0.14 0 0.14 0 +teuf_teuf teuf_teuf nom m s 0.04 0.41 0.04 0.41 +teuton teuton nom m s 0.14 0.34 0.13 0.14 +teutonique teutonique adj s 0.11 0.88 0 0.34 +teutoniques teutonique adj m p 0.11 0.88 0.11 0.54 +teutonne teuton adj f s 0.25 0.74 0.12 0.54 +teutonnes teuton adj f p 0.25 0.74 0 0.14 +teutons teuton nom m p 0.14 0.34 0.01 0.2 +tex tex nom m 1.7 0.14 1.7 0.14 +texan texan nom m s 0.95 0.61 0.47 0.41 +texane texan adj f s 0.79 0.61 0.21 0.07 +texanes texan adj f p 0.79 0.61 0.03 0.2 +texans texan nom m p 0.95 0.61 0.39 0.2 +texte texte nom m s 20.42 43.24 16.22 31.42 +textes texte nom m p 20.42 43.24 4.2 11.82 +textile textile adj s 0.65 0.88 0.62 0.47 +textiles textile nom m p 0.72 1.22 0.15 0.2 +texto texto adv 0.45 0.61 0.45 0.61 +textologie textologie nom f s 0 0.07 0 0.07 +textuel textuel adj m s 0.03 0.41 0 0.27 +textuelle textuel adj f s 0.03 0.41 0.01 0.07 +textuellement textuellement adv 0.03 1.08 0.03 1.08 +textuelles textuel adj f p 0.03 0.41 0.01 0.07 +texture texture nom f s 1.57 1.69 1.33 1.69 +textures texture nom f p 1.57 1.69 0.25 0 +thalamique thalamique adj f s 0.01 0 0.01 0 +thalamus thalamus nom m 0.13 0 0.13 0 +thalasso thalasso nom f s 0.45 0 0.45 0 +thalassothérapeutes thalassothérapeute nom p 0 0.07 0 0.07 +thalassothérapie thalassothérapie nom f s 0.01 0.2 0.01 0.2 +thalassémie thalassémie nom f s 0.01 0 0.01 0 +thaler thaler nom m s 0.1 0.07 0.05 0 +thalers thaler nom m p 0.1 0.07 0.05 0.07 +thalidomide thalidomide nom f s 0.05 0 0.05 0 +thallium thallium nom m s 0.14 0 0.14 0 +thalweg thalweg nom m s 0 0.07 0 0.07 +thanatologie thanatologie nom f s 0.01 0 0.01 0 +thanatologique thanatologique adj m s 0 0.07 0 0.07 +thanatopraxie thanatopraxie nom f s 0.01 0 0.01 0 +thanatos thanatos nom m 0.04 0 0.04 0 +thanksgiving thanksgiving nom m s 6.89 0 6.89 0 +thatchériennes thatchérien adj f p 0 0.07 0 0.07 +thaumaturge thaumaturge nom s 0 0.47 0 0.34 +thaumaturges thaumaturge nom p 0 0.47 0 0.14 +thaumaturgie thaumaturgie nom f s 0 0.07 0 0.07 +thaï thaï adj m s 0.97 0.34 0.52 0.2 +thaïe thaï adj f s 0.97 0.34 0.16 0.07 +thaïlandais thaïlandais adj m 0.56 0.41 0.4 0.27 +thaïlandaise thaïlandais adj f s 0.56 0.41 0.13 0 +thaïlandaises thaïlandais adj f p 0.56 0.41 0.04 0.14 +thaïs thaï adj m p 0.97 0.34 0.29 0.07 +thermal thermal adj m s 0.83 1.69 0.21 0.54 +thermale thermal adj f s 0.83 1.69 0.38 0.74 +thermales thermal adj f p 0.83 1.69 0.11 0.41 +thermaux thermal adj m p 0.83 1.69 0.14 0 +thermes thermes nom m p 0.55 0.41 0.55 0.41 +thermidor thermidor nom m s 0.07 0.2 0.07 0.2 +thermidorienne thermidorien adj f s 0 0.07 0 0.07 +thermique thermique adj s 2.37 0.47 1.58 0.34 +thermiques thermique adj p 2.37 0.47 0.79 0.14 +thermite thermite nom f s 0.04 0 0.04 0 +thermo thermo nom m s 0.1 0 0.1 0 +thermocollants thermocollant adj m p 0 0.07 0 0.07 +thermodynamique thermodynamique nom f s 0.09 0.2 0.09 0.2 +thermoformage thermoformage nom m s 0 0.07 0 0.07 +thermographe thermographe nom m s 0.04 0 0.04 0 +thermographie thermographie nom f s 0.04 0 0.04 0 +thermogène thermogène adj s 0 0.54 0 0.54 +thermoluminescence thermoluminescence nom f s 0.01 0 0.01 0 +thermomètre thermomètre nom m s 1.43 5.27 1.37 5.07 +thermomètres thermomètre nom m p 1.43 5.27 0.06 0.2 +thermonucléaire thermonucléaire adj s 0.66 0.14 0.42 0.07 +thermonucléaires thermonucléaire adj p 0.66 0.14 0.23 0.07 +thermorégulateur thermorégulateur adj m s 0.01 0 0.01 0 +thermos thermos adj s 0.91 2.36 0.91 2.36 +thermosensible thermosensible adj m s 0.03 0 0.03 0 +thermostat thermostat nom m s 1.31 0.54 1.21 0.54 +thermostats thermostat nom m p 1.31 0.54 0.1 0 +thermoélectriques thermoélectrique adj m p 0.01 0 0.01 0 +thesaurus thesaurus nom m 0.01 0 0.01 0 +thessalien thessalien adj m s 0.03 0 0.02 0 +thessaliens thessalien adj m p 0.03 0 0.01 0 +thiamine thiamine nom f s 0.04 0 0.04 0 +thibaude thibaude nom f s 0 0.14 0 0.14 +thomas thomas nom m 4.83 25.81 4.83 25.81 +thomisme thomisme nom m s 0 0.14 0 0.14 +thomiste thomiste adj m s 0 0.14 0 0.14 +thon thon nom m s 5.88 2.16 5.66 1.89 +thonier thonier nom m s 0.03 0.34 0.03 0.14 +thoniers thonier nom m p 0.03 0.34 0 0.2 +thons thon nom m p 5.88 2.16 0.23 0.27 +thoracentèse thoracentèse nom f s 0.04 0 0.04 0 +thoracique thoracique adj s 2.12 1.82 1.89 1.42 +thoraciques thoracique adj p 2.12 1.82 0.23 0.41 +thoracotomie thoracotomie nom f s 0.31 0 0.31 0 +thorax thorax nom m 3.62 2.03 3.62 2.03 +thorine thorine nom f s 0.13 0 0.13 0 +thoron thoron nom m s 0.01 0 0.01 0 +thrace thrace adj s 0.14 0.41 0.13 0.2 +thraces thrace adj f p 0.14 0.41 0.01 0.2 +thrill thrill nom m s 0.07 0 0.07 0 +thriller thriller nom m s 0.58 0.07 0.55 0 +thrillers thriller nom m p 0.58 0.07 0.03 0.07 +thrombolyse thrombolyse nom f s 0.01 0 0.01 0 +thrombolytique thrombolytique adj f s 0.01 0 0.01 0 +thrombose thrombose nom f s 0.56 0 0.56 0 +thrombosé thrombosé adj m s 0.03 0 0.03 0 +thrombotique thrombotique adj s 0.07 0 0.07 0 +thrène thrène nom m s 0.1 0 0.1 0 +thug thug nom m s 0.33 0.14 0.01 0 +thugs thug nom m p 0.33 0.14 0.32 0.14 +thune thune nom f s 4.63 5.68 3.52 5 +thunes thune nom f p 4.63 5.68 1.11 0.68 +thuriféraire thuriféraire nom m s 0 0.34 0 0.14 +thuriféraires thuriféraire nom m p 0 0.34 0 0.2 +thuya thuya nom m s 0 0.27 0 0.2 +thuyas thuya nom m p 0 0.27 0 0.07 +thym thym nom m s 1.17 2.09 1.17 2.09 +thymectomie thymectomie nom f s 0.03 0 0.03 0 +thymine thymine nom f s 0.04 0 0.04 0 +thymus thymus nom m 0.05 0 0.05 0 +thyroxine thyroxine nom f s 0.02 0 0.02 0 +thyroïde thyroïde nom f s 0.27 0.14 0.27 0.14 +thyroïdectomie thyroïdectomie nom f s 0.03 0 0.03 0 +thyroïdien thyroïdien adj m s 0.04 0 0.03 0 +thyroïdienne thyroïdien adj f s 0.04 0 0.01 0 +thyrses thyrse nom m p 0 0.07 0 0.07 +thyréotoxicose thyréotoxicose nom f s 0.01 0 0.01 0 +thème thème nom m s 17.32 14.26 15.49 10.54 +thèmes thème nom m p 17.32 14.26 1.83 3.72 +thèse thèse nom f s 10.67 9.32 10.22 7.77 +thèses thèse nom f p 10.67 9.32 0.46 1.55 +thé thé nom m s 69.01 44.86 67.84 44.19 +thébaïde thébaïde nom f s 0 0.34 0 0.27 +thébaïdes thébaïde nom f p 0 0.34 0 0.07 +thébaïne thébaïne nom f s 0 0.07 0 0.07 +théier théier nom m s 0.01 0 0.01 0 +théine théine nom f s 0.01 0 0.01 0 +théiste théiste adj f s 0.02 0 0.02 0 +théière théière nom f s 1 2.91 0.8 2.43 +théières théière nom f p 1 2.91 0.2 0.47 +thématique thématique nom f s 0.14 0.07 0.12 0 +thématiquement thématiquement adv 0 0.07 0 0.07 +thématiques thématique adj m p 0.06 0.2 0.03 0 +théo théo nom s 0.14 0 0.14 0 +théocratique théocratique adj f s 0 0.14 0 0.14 +théodolite théodolite nom m s 0.01 0 0.01 0 +théologales théologal adj f p 0 0.2 0 0.2 +théologie théologie nom f s 1.97 4.19 1.96 4.19 +théologien théologien nom m s 0.46 2.09 0.35 0.81 +théologiennes théologien nom f p 0.46 2.09 0 0.07 +théologiens théologien nom m p 0.46 2.09 0.11 1.22 +théologies théologie nom f p 1.97 4.19 0.01 0 +théologique théologique adj s 0.39 1.35 0.29 0.88 +théologiquement théologiquement adv 0.03 0 0.03 0 +théologiques théologique adj f p 0.39 1.35 0.1 0.47 +théophylline théophylline nom f s 0.04 0 0.04 0 +théorbe théorbe nom m s 0 0.34 0 0.2 +théorbes théorbe nom m p 0 0.34 0 0.14 +théoricien théoricien nom m s 0.4 1.15 0.25 0.47 +théoricienne théoricien nom f s 0.4 1.15 0.13 0 +théoriciens théoricien nom m p 0.4 1.15 0.03 0.68 +théorie théorie nom f s 32.38 15.27 27.29 8.04 +théories théorie nom f p 32.38 15.27 5.09 7.23 +théorique théorique adj s 2.11 3.58 1.76 2.43 +théoriquement théoriquement adv 2.58 2.7 2.58 2.7 +théoriques théorique adj p 2.11 3.58 0.35 1.15 +théorise théoriser ver 0.07 0 0.02 0 ind:pre:1s;ind:pre:3s; +théoriser théoriser ver 0.07 0 0.04 0 inf; +théorème théorème nom m s 0.41 0.81 0.36 0.41 +théorèmes théorème nom m p 0.41 0.81 0.05 0.41 +théosophes théosophe nom p 0 0.07 0 0.07 +théosophie théosophie nom f s 0.03 0 0.03 0 +théosophique théosophique adj m s 0 0.07 0 0.07 +thérapeute thérapeute nom s 3.67 0.07 3.44 0.07 +thérapeutes thérapeute nom p 3.67 0.07 0.23 0 +thérapeutique thérapeutique adj s 1.68 0.54 1.3 0.34 +thérapeutiques thérapeutique adj p 1.68 0.54 0.38 0.2 +thérapie thérapie nom f s 13.63 0.07 12.98 0.07 +thérapies thérapie nom f p 13.63 0.07 0.65 0 +thés thé nom m p 69.01 44.86 1.17 0.68 +thésard thésard nom m s 0.08 0 0.04 0 +thésards thésard nom m p 0.08 0 0.04 0 +thésaurise thésauriser ver 0.25 0.41 0.11 0.14 ind:pre:3s; +thésauriser thésauriser ver 0.25 0.41 0.14 0.14 inf; +thésaurisés thésauriser ver m p 0.25 0.41 0 0.14 par:pas; +thésaurus thésaurus nom m 0.01 0 0.01 0 +théurgiques théurgique adj p 0 0.07 0 0.07 +théâtral théâtral adj m s 1.78 7.97 0.8 3.51 +théâtrale théâtral adj f s 1.78 7.97 0.76 3.45 +théâtralement théâtralement adv 0.02 0.47 0.02 0.47 +théâtrales théâtral adj f p 1.78 7.97 0.17 0.88 +théâtralisant théâtraliser ver 0 0.2 0 0.07 par:pre; +théâtralisé théâtraliser ver m s 0 0.2 0 0.07 par:pas; +théâtralisée théâtraliser ver f s 0 0.2 0 0.07 par:pas; +théâtralité théâtralité nom f s 0.04 0.07 0.04 0.07 +théâtraux théâtral adj m p 1.78 7.97 0.05 0.14 +théâtre théâtre nom m s 41.49 68.18 40.51 64.32 +théâtres théâtre nom m p 41.49 68.18 0.98 3.85 +théâtreuse théâtreux nom f s 0.18 0.2 0.02 0.07 +théâtreux théâtreux nom m 0.18 0.2 0.16 0.14 +thêta thêta nom m 0.21 0 0.21 0 +tiama tiama nom m s 0.17 0 0.17 0 +tian tian nom m s 0.18 0.2 0.18 0.2 +tiare tiare nom f s 0.51 0.88 0.5 0.81 +tiares tiare nom f p 0.51 0.88 0.01 0.07 +tiaré tiaré nom m s 0 0.07 0 0.07 +tibia tibia nom m s 2.33 3.04 2.02 1.01 +tibial tibial adj m s 0.09 0.14 0.04 0 +tibiale tibial adj f s 0.09 0.14 0.05 0.14 +tibias tibia nom m p 2.33 3.04 0.3 2.03 +tibétain tibétain adj m s 0.53 0.68 0.29 0.27 +tibétaine tibétain adj f s 0.53 0.68 0.11 0.07 +tibétaines tibétain adj f p 0.53 0.68 0.02 0.07 +tibétains tibétain adj m p 0.53 0.68 0.11 0.27 +tic tic nom m s 3 9.86 2.47 4.86 +tic_tac tic_tac nom m 2.52 2.91 2.52 2.91 +ticheurte ticheurte nom m s 0 0.07 0 0.07 +ticket ticket nom m s 24.25 15.81 13.62 6.15 +tickets ticket nom m p 24.25 15.81 10.63 9.66 +tics tic nom m p 3 9.86 0.53 5 +ticsons ticson nom m p 0 0.14 0 0.14 +tictaquer tictaquer ver 0.03 0 0.03 0 inf; +tie_break tie_break nom m s 0.02 0 0.02 0 +tien tien pro_pos m s 26.21 5.54 26.21 5.54 +tiendra tenir ver 504.69 741.22 12.15 4.59 ind:fut:3s; +tiendrai tenir ver 504.69 741.22 8.61 1.89 ind:fut:1s; +tiendraient tenir ver 504.69 741.22 0.28 1.28 cnd:pre:3p; +tiendrais tenir ver 504.69 741.22 1.36 1.89 cnd:pre:1s;cnd:pre:2s; +tiendrait tenir ver 504.69 741.22 2.39 6.49 cnd:pre:3s; +tiendras tenir ver 504.69 741.22 2.76 0.61 ind:fut:2s; +tiendrez tenir ver 504.69 741.22 1.42 0.74 ind:fut:2p; +tiendriez tenir ver 504.69 741.22 0.28 0.14 cnd:pre:2p; +tiendrons tenir ver 504.69 741.22 1.94 0.74 ind:fut:1p; +tiendront tenir ver 504.69 741.22 1.86 0.68 ind:fut:3p; +tienne tienne pro_pos f s 25.41 5.81 25.41 5.81 +tiennent tenir ver 504.69 741.22 11.43 24.26 ind:pre:3p; +tiennes tiennes pro_pos f p 4.09 0.95 4.09 0.95 +tiens tiens ono 212.99 81.89 212.99 81.89 +tiens_la_moi tiens_la_moi adj_pos m s 0.14 0 0.14 0 +tient tenir ver 504.69 741.22 78.32 96.69 ind:pre:3s; +tierce tiers adj f s 0.78 2.97 0.32 0.41 +tiercefeuille tiercefeuille nom f s 0 0.07 0 0.07 +tiercelet tiercelet nom m s 0 0.14 0 0.07 +tiercelets tiercelet nom m p 0 0.14 0 0.07 +tierces tiers adj f p 0.78 2.97 0 0.14 +tiercé tiercé nom m s 1.32 2.03 1.32 1.89 +tiercés tiercé nom m p 1.32 2.03 0 0.14 +tiers tiers nom m 6.24 14.93 6.18 13.85 +tiers_monde tiers_monde nom m s 1.96 0.2 1.96 0.14 +tiers_monde tiers_monde nom m p 1.96 0.2 0 0.07 +tiers_mondisme tiers_mondisme nom m s 0 0.07 0 0.07 +tiers_mondiste tiers_mondiste adj f s 0.15 0.2 0.15 0 +tiers_mondiste tiers_mondiste adj m p 0.15 0.2 0 0.2 +tiers_ordre tiers_ordre nom m 0 0.07 0 0.07 +tiers_point tiers_point nom m s 0 0.14 0 0.14 +tiers_état tiers_état nom m s 0.03 0 0.03 0 +tif tif nom m s 1.71 6.01 0.84 0.27 +tifs tif nom m p 1.71 6.01 0.86 5.74 +tige tige nom f s 3.73 22.16 2.39 11.15 +tigelles tigelle nom f p 0 0.2 0 0.2 +tiges tige nom f p 3.73 22.16 1.34 11.01 +tignasse tignasse nom f s 0.89 4.8 0.87 4.46 +tignasses tignasse nom f p 0.89 4.8 0.02 0.34 +tigre tigre nom m s 15.19 8.65 11.14 4.86 +tigres tigre nom m p 15.19 8.65 2.66 2.5 +tigresse tigre nom f s 15.19 8.65 1.1 1.08 +tigresses tigre nom f p 15.19 8.65 0.29 0.2 +tigrure tigrure nom f s 0 0.07 0 0.07 +tigré tigrer ver m s 0.02 0.47 0.02 0.27 par:pas; +tigrée tigré adj f s 0.01 1.69 0 0.41 +tigrées tigré adj f p 0.01 1.69 0 0.14 +tigrés tigré adj m p 0.01 1.69 0 0.54 +tiki tiki nom m s 0.16 0 0.16 0 +tilbury tilbury nom m s 0 0.81 0 0.74 +tilburys tilbury nom m p 0 0.81 0 0.07 +till till nom m s 0.35 0 0.35 0 +tillac tillac nom m s 0 0.14 0 0.07 +tillacs tillac nom m p 0 0.14 0 0.07 +tille tille nom f s 0.18 0 0.12 0 +tiller tiller ver 0.01 0 0.01 0 inf; +tilles tille nom f p 0.18 0 0.07 0 +tilleul tilleul nom m s 1.59 11.01 1.03 5 +tilleuls tilleul nom m p 1.59 11.01 0.56 6.01 +tilt tilt nom m s 1.11 1.55 1.11 1.49 +tilts tilt nom m p 1.11 1.55 0 0.07 +timbale timbale nom f s 0.97 2.43 0.6 1.76 +timbales timbale nom f p 0.97 2.43 0.37 0.68 +timbalier timbalier nom m s 0 0.14 0 0.07 +timbaliers timbalier nom m p 0 0.14 0 0.07 +timbrage timbrage nom m s 0 0.07 0 0.07 +timbrait timbrer ver 1.38 1.22 0 0.07 ind:imp:3s; +timbre timbre nom m s 7.86 20.81 1.82 13.18 +timbre_poste timbre_poste nom m s 0.12 1.28 0.11 0.68 +timbrer timbrer ver 1.38 1.22 0.05 0 inf; +timbres timbre nom m p 7.86 20.81 6.04 7.64 +timbre_poste timbre_poste nom m p 0.12 1.28 0.01 0.61 +timbrât timbrer ver 1.38 1.22 0 0.07 sub:imp:3s; +timbré timbrer ver m s 1.38 1.22 1.03 0.27 par:pas; +timbrée timbré adj f s 1.57 2.36 0.25 1.08 +timbrées timbré adj f p 1.57 2.36 0.01 0.14 +timbrés timbré adj m p 1.57 2.36 0.48 0.27 +time_sharing time_sharing nom m s 0.01 0 0.01 0 +timide timide adj s 16.36 25.14 14.18 19.53 +timidement timidement adv 0.1 11.22 0.1 11.22 +timides timide adj p 16.36 25.14 2.18 5.61 +timidité timidité nom f s 1.75 11.55 1.75 11.15 +timidités timidité nom f p 1.75 11.55 0 0.41 +timing timing nom m s 3.59 0.14 3.58 0.07 +timings timing nom m p 3.59 0.14 0.01 0.07 +timon timon nom m s 0.1 2.09 0.1 2.03 +timonerie timonerie nom f s 0.09 0.54 0.09 0.54 +timonier timonier nom m s 1.05 0.68 1.03 0.68 +timoniers timonier nom m p 1.05 0.68 0.02 0 +timons timon nom m p 0.1 2.09 0 0.07 +timoré timoré adj m s 0.7 2.09 0.44 0.68 +timorée timoré adj f s 0.7 2.09 0.05 0.41 +timorées timoré adj f p 0.7 2.09 0 0.07 +timorés timoré adj m p 0.7 2.09 0.21 0.95 +tin tin nom m s 0.52 0.2 0.45 0 +tine tine nom f s 0.16 0 0.16 0 +tinette tinette nom f s 0.12 1.55 0.12 0.68 +tinettes tinette nom f p 0.12 1.55 0 0.88 +tinrent tenir ver 504.69 741.22 0.01 1.55 ind:pas:3p; +tins tenir ver 504.69 741.22 0.16 2.57 ind:pas:1s;ind:pas:2s; +tinssent tenir ver 504.69 741.22 0 0.27 sub:imp:3p; +tint tenir ver 504.69 741.22 0.84 15.2 ind:pas:3s; +tinta tinter ver 0.95 11.76 0 0.88 ind:pas:3s; +tintaient tinter ver 0.95 11.76 0.02 0.47 ind:imp:3p; +tintait tinter ver 0.95 11.76 0.17 1.08 ind:imp:3s; +tintamarre tintamarre nom m s 0.04 3.51 0.04 3.31 +tintamarrent tintamarrer ver 0 0.07 0 0.07 ind:pre:3p; +tintamarres tintamarre nom m p 0.04 3.51 0 0.2 +tintamarresque tintamarresque adj s 0 0.41 0 0.34 +tintamarresques tintamarresque adj p 0 0.41 0 0.07 +tintant tinter ver 0.95 11.76 0 1.15 par:pre; +tinte tinter ver 0.95 11.76 0.39 1.55 imp:pre:2s;ind:pre:3s; +tintement tintement nom m s 0.95 8.78 0.68 6.82 +tintements tintement nom m p 0.95 8.78 0.28 1.96 +tintent tinter ver 0.95 11.76 0.07 1.82 ind:pre:3p; +tinter tinter ver 0.95 11.76 0.31 3.92 inf; +tintin tintin ono 1.08 1.69 1.08 1.69 +tintinnabula tintinnabuler ver 0.01 0.74 0 0.07 ind:pas:3s; +tintinnabulaient tintinnabuler ver 0.01 0.74 0 0.07 ind:imp:3p; +tintinnabulant tintinnabuler ver 0.01 0.74 0.01 0.07 par:pre; +tintinnabulante tintinnabulant adj f s 0 0.41 0 0.14 +tintinnabulantes tintinnabulant adj f p 0 0.41 0 0.07 +tintinnabulants tintinnabulant adj m p 0 0.41 0 0.07 +tintinnabule tintinnabuler ver 0.01 0.74 0 0.14 ind:pre:3s; +tintinnabulement tintinnabulement nom m s 0 0.14 0 0.07 +tintinnabulements tintinnabulement nom m p 0 0.14 0 0.07 +tintinnabulent tintinnabuler ver 0.01 0.74 0 0.34 ind:pre:3p; +tintinnabuler tintinnabuler ver 0.01 0.74 0 0.07 inf; +tintouin tintouin nom m s 0.39 2.09 0.39 1.89 +tintouins tintouin nom m p 0.39 2.09 0 0.2 +tintèrent tinter ver 0.95 11.76 0 0.41 ind:pas:3p; +tinté tinter ver m s 0.95 11.76 0 0.41 par:pas; +tintés tinter ver m p 0.95 11.76 0 0.07 par:pas; +tinée tinée nom f s 0 0.14 0 0.14 +tipe tiper ver 0.02 0 0.02 0 ind:pre:3s; +tipi tipi nom m s 0.36 0 0.32 0 +tipis tipi nom m p 0.36 0 0.04 0 +tipper tipper ver 0.05 0 0.05 0 inf; +tipule tipule nom f s 0 0.07 0 0.07 +tiqua tiquer ver 0.28 2.91 0 0.2 ind:pas:3s; +tiquai tiquer ver 0.28 2.91 0 0.07 ind:pas:1s; +tiquaient tiquer ver 0.28 2.91 0 0.07 ind:imp:3p; +tiquais tiquer ver 0.28 2.91 0 0.14 ind:imp:1s; +tiquait tiquer ver 0.28 2.91 0.01 0.34 ind:imp:3s; +tiquant tiquer ver 0.28 2.91 0 0.14 par:pre; +tique tique nom f s 1.95 0.81 0.72 0.54 +tiquent tiquer ver 0.28 2.91 0.01 0.07 ind:pre:3p; +tiquer tiquer ver 0.28 2.91 0.13 0.47 inf; +tiquerais tiquer ver 0.28 2.91 0.01 0 cnd:pre:2s; +tiques tique nom f p 1.95 0.81 1.23 0.27 +tiqueté tiqueté adj m s 0 0.07 0 0.07 +tiqué tiquer ver m s 0.28 2.91 0.08 0.88 par:pas; +tir tir nom m s 32.11 18.85 24.54 16.01 +tira tirer ver 415.14 383.24 1.39 39.59 ind:pas:3s; +tirade tirade nom f s 1.55 4.05 1.25 3.18 +tirades tirade nom f p 1.55 4.05 0.3 0.88 +tirage tirage nom m s 3.76 6.01 3.01 5.07 +tirages tirage nom m p 3.76 6.01 0.75 0.95 +tirai tirer ver 415.14 383.24 0.23 2.43 ind:pas:1s; +tiraient tirer ver 415.14 383.24 1.76 10.47 ind:imp:3p; +tirailla tirailler ver 0.68 3.85 0 0.2 ind:pas:3s; +tiraillaient tirailler ver 0.68 3.85 0 0.2 ind:imp:3p; +tiraillait tirailler ver 0.68 3.85 0.15 0.68 ind:imp:3s; +tiraillant tirailler ver 0.68 3.85 0.01 0.41 par:pre; +tiraille tirailler ver 0.68 3.85 0 0.2 ind:pre:3s; +tiraillement tiraillement nom m s 0.13 0.95 0.1 0.34 +tiraillements tiraillement nom m p 0.13 0.95 0.03 0.61 +tiraillent tirailler ver 0.68 3.85 0.01 0.07 ind:pre:3p; +tirailler tirailler ver 0.68 3.85 0.16 0.61 inf; +tiraillerait tirailler ver 0.68 3.85 0 0.14 cnd:pre:3s; +tirailleries tiraillerie nom f p 0 0.07 0 0.07 +tirailleur tirailleur nom m s 0.12 6.49 0.04 0.88 +tirailleurs tirailleur nom m p 0.12 6.49 0.08 5.61 +tiraillez tirailler ver 0.68 3.85 0.01 0 imp:pre:2p; +tiraillons tirailler ver 0.68 3.85 0 0.07 ind:pre:1p; +tiraillé tirailler ver m s 0.68 3.85 0.26 0.95 par:pas; +tiraillée tirailler ver f s 0.68 3.85 0.07 0.07 par:pas; +tiraillées tirailler ver f p 0.68 3.85 0 0.07 par:pas; +tiraillés tirailler ver m p 0.68 3.85 0.01 0.2 par:pas; +tirais tirer ver 415.14 383.24 1.71 3.24 ind:imp:1s;ind:imp:2s; +tirait tirer ver 415.14 383.24 3.97 34.86 ind:imp:3s; +tiramisu tiramisu nom m s 0.24 0 0.24 0 +tirant tirer ver 415.14 383.24 2.66 25.95 par:pre; +tirants tirant nom m p 0.33 1.89 0.02 0.2 +tiras tirer ver 415.14 383.24 0 0.07 ind:pas:2s; +tirassent tirasser ver 0 0.07 0 0.07 ind:pre:3p; +tire tirer ver 415.14 383.24 107.25 55.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tire_au_cul tire_au_cul nom m 0.02 0 0.02 0 +tire_au_flanc tire_au_flanc nom m 0.51 0.34 0.51 0.34 +tire_botte tire_botte nom m s 0.01 0.07 0.01 0.07 +tire_bouchon tire_bouchon nom m s 0.93 2.43 0.9 2.16 +tire_bouchonner tire_bouchonner ver 0.02 0.88 0 0.14 ind:imp:3p; +tire_bouchonner tire_bouchonner ver 0.02 0.88 0 0.07 par:pre; +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.01 0.27 ind:pre:3s; +tire_bouchonner tire_bouchonner ver 0.02 0.88 0.01 0.07 ind:pre:3p; +tire_bouchonner tire_bouchonner ver m s 0.02 0.88 0 0.27 par:pas; +tire_bouchonner tire_bouchonner ver m p 0.02 0.88 0 0.07 par:pas; +tire_bouchon tire_bouchon nom m p 0.93 2.43 0.03 0.27 +tire_bouton tire_bouton nom m s 0 0.07 0 0.07 +tire_d_aile tire_d_aile nom f s 0.02 0 0.02 0 +tire_fesse tire_fesse nom f s 0.01 0 0.01 0 +tire_jus tire_jus nom m 0 0.2 0 0.2 +tire_laine tire_laine nom m 0.02 0.07 0.02 0.07 +tire_lait tire_lait nom m 0.07 0 0.07 0 +tire_larigot tire_larigot nom f s 0 0.07 0 0.07 +tire_ligne tire_ligne nom m s 0 0.34 0 0.2 +tire_ligne tire_ligne nom m p 0 0.34 0 0.14 +tire_lire tire_lire nom m 0 0.14 0 0.14 +tirebouchonner tirebouchonner ver 0 0.34 0 0.14 inf; +tirebouchonné tirebouchonner ver m s 0 0.34 0 0.14 par:pas; +tirebouchonnée tirebouchonner ver f s 0 0.34 0 0.07 par:pas; +tirelire tirelire nom f s 1.43 2.16 1.39 2.09 +tirelirent tirelirer ver 0 0.07 0 0.07 ind:pre:3p; +tirelires tirelire nom f p 1.43 2.16 0.03 0.07 +tirent tirer ver 415.14 383.24 10.3 10.95 ind:pre:3p;sub:pre:3p; +tirer tirer ver 415.14 383.24 113.71 99.73 inf;;inf;;inf;;inf;; +tirera tirer ver 415.14 383.24 5.81 2.16 ind:fut:3s; +tirerai tirer ver 415.14 383.24 2.57 1.08 ind:fut:1s; +tireraient tirer ver 415.14 383.24 0.21 0.88 cnd:pre:3p; +tirerais tirer ver 415.14 383.24 1.54 0.61 cnd:pre:1s;cnd:pre:2s; +tirerait tirer ver 415.14 383.24 0.76 3.24 cnd:pre:3s; +tireras tirer ver 415.14 383.24 2.94 0.54 ind:fut:2s; +tirerez tirer ver 415.14 383.24 2.13 0.54 ind:fut:2p; +tireriez tirer ver 415.14 383.24 0.27 0.07 cnd:pre:2p; +tirerions tirer ver 415.14 383.24 0 0.07 cnd:pre:1p; +tirerons tirer ver 415.14 383.24 1.02 0.47 ind:fut:1p; +tireront tirer ver 415.14 383.24 1.75 0.61 ind:fut:3p; +tires tirer ver 415.14 383.24 11.7 2.09 ind:pre:2s;sub:pre:2s; +tiret tiret nom m s 0.2 0.54 0.2 0.27 +tirets tiret nom m p 0.2 0.54 0 0.27 +tirette tirette nom f s 0.04 1.22 0.03 0.41 +tirettes tirette nom f p 0.04 1.22 0.01 0.81 +tireur tireur nom m s 18.09 8.72 12.83 5.41 +tireurs tireur nom m p 18.09 8.72 5.08 2.64 +tireuse tireur nom f s 18.09 8.72 0.16 0.54 +tireuses tireur nom f p 18.09 8.72 0.02 0.14 +tirez tirer ver 415.14 383.24 45.9 3.51 imp:pre:2p;ind:pre:2p; +tiriez tirer ver 415.14 383.24 0.42 0.2 ind:imp:2p; +tirions tirer ver 415.14 383.24 0.05 0.81 ind:imp:1p;sub:pre:1p; +tiroir tiroir nom m s 14.65 37.09 12.18 26.22 +tiroir_caisse tiroir_caisse nom m s 0.49 2.16 0.48 2.03 +tiroirs tiroir nom m p 14.65 37.09 2.47 10.88 +tiroir_caisse tiroir_caisse nom m p 0.49 2.16 0.01 0.14 +tirons tirer ver 415.14 383.24 6.13 1.82 imp:pre:1p;ind:pre:1p; +tirs tir nom m p 32.11 18.85 7.57 2.84 +tirâmes tirer ver 415.14 383.24 0 0.07 ind:pas:1p; +tirât tirer ver 415.14 383.24 0 0.34 sub:imp:3s; +tirèrent tirer ver 415.14 383.24 0.48 2.03 ind:pas:3p; +tiré tirer ver m s 415.14 383.24 76.78 53.04 par:pas; +tirée tirer ver f s 415.14 383.24 6.45 10.2 par:pas; +tirées tirer ver f p 415.14 383.24 1.16 2.77 par:pas; +tirés tirer ver m p 415.14 383.24 4.11 13.65 par:pas; +tisa tiser ver 0.28 0.14 0 0.14 ind:pas:3s; +tisane tisane nom f s 2.86 4.8 2.15 3.78 +tisanes tisane nom f p 2.86 4.8 0.72 1.01 +tisanière tisanière nom f s 0 0.14 0 0.14 +tisané tisaner ver m s 0 0.2 0 0.2 par:pas; +tiser tiser ver 0.28 0.14 0.28 0 inf; +tison tison nom m s 0.23 2.16 0.13 0.74 +tisonna tisonner ver 0.02 1.22 0 0.41 ind:pas:3s; +tisonnait tisonner ver 0.02 1.22 0.01 0.14 ind:imp:3s; +tisonnant tisonner ver 0.02 1.22 0 0.27 par:pre; +tisonne tisonner ver 0.02 1.22 0 0.07 ind:pre:3s; +tisonnent tisonner ver 0.02 1.22 0 0.14 ind:pre:3p; +tisonner tisonner ver 0.02 1.22 0.01 0.14 inf; +tisonnier tisonnier nom m s 1.01 0.95 0.98 0.88 +tisonniers tisonnier nom m p 1.01 0.95 0.04 0.07 +tisonné tisonner ver m s 0.02 1.22 0 0.07 par:pas; +tisonnés tisonné adj m p 0 0.14 0 0.07 +tisons tison nom m p 0.23 2.16 0.1 1.42 +tissa tisser ver 2.97 11.15 0.06 0 ind:pas:3s; +tissage tissage nom m s 0.26 1.55 0.25 1.49 +tissages tissage nom m p 0.26 1.55 0.01 0.07 +tissaient tisser ver 2.97 11.15 0 0.61 ind:imp:3p; +tissais tisser ver 2.97 11.15 0.01 0 ind:imp:2s; +tissait tisser ver 2.97 11.15 0.03 1.22 ind:imp:3s; +tissant tisser ver 2.97 11.15 0.01 0.61 par:pre; +tisse tisser ver 2.97 11.15 0.87 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tissent tisser ver 2.97 11.15 0.14 0.74 ind:pre:3p; +tisser tisser ver 2.97 11.15 0.58 2.36 inf; +tisserai tisser ver 2.97 11.15 0.02 0 ind:fut:1s; +tisserais tisser ver 2.97 11.15 0.01 0 cnd:pre:1s; +tisserait tisser ver 2.97 11.15 0.01 0.07 cnd:pre:3s; +tisserand tisserand nom m s 0.34 1.08 0.11 0.34 +tisserande tisserand nom f s 0.34 1.08 0.21 0.07 +tisserands tisserand nom m p 0.34 1.08 0.02 0.68 +tisserons tisser ver 2.97 11.15 0.01 0.07 ind:fut:1p; +tisseur tisseur nom m s 0.44 0.47 0 0.34 +tisseuse tisseur nom f s 0.44 0.47 0.44 0.14 +tissez tisser ver 2.97 11.15 0.29 0 imp:pre:2p;ind:pre:2p; +tissons tisser ver 2.97 11.15 0.01 0.07 ind:pre:1p; +tissu tissu nom m s 15.69 34.66 9.21 25.95 +tissu_éponge tissu_éponge nom m s 0 0.41 0 0.41 +tissue tissu adj f s 0.98 1.69 0.07 0 +tissues tissu adj f p 0.98 1.69 0 0.14 +tissulaire tissulaire adj s 0.33 0.07 0.28 0 +tissulaires tissulaire adj p 0.33 0.07 0.05 0.07 +tissus tissu nom m p 15.69 34.66 6.48 8.72 +tissuterie tissuterie nom f s 0 0.14 0 0.14 +tissutier tissutier nom m s 0 0.07 0 0.07 +tissât tisser ver 2.97 11.15 0 0.07 sub:imp:3s; +tissèrent tisser ver 2.97 11.15 0 0.07 ind:pas:3p; +tissé tisser ver m s 2.97 11.15 0.73 1.55 par:pas; +tissée tisser ver f s 2.97 11.15 0.13 1.55 par:pas; +tissées tissé adj f p 0.04 0.74 0.01 0 +tissés tisser ver m p 2.97 11.15 0.05 0.88 par:pas; +titan titan nom m s 1.33 0.88 1.06 0.68 +titane titane nom m s 1.69 0.2 1.69 0.2 +titanesque titanesque adj s 0.25 0.88 0.21 0.74 +titanesques titanesque adj p 0.25 0.88 0.03 0.14 +titanique titanique adj m s 0.01 0 0.01 0 +titans titan nom m p 1.33 0.88 0.27 0.2 +titi titi nom m s 4.79 6.28 4.79 6.15 +titilla titiller ver 1.1 1.69 0 0.07 ind:pas:3s; +titillaient titiller ver 1.1 1.69 0.03 0.07 ind:imp:3p; +titillais titiller ver 1.1 1.69 0.02 0.07 ind:imp:1s;ind:imp:2s; +titillait titiller ver 1.1 1.69 0.04 0.41 ind:imp:3s; +titillant titiller ver 1.1 1.69 0.03 0.07 par:pre; +titillation titillation nom f s 0 0.27 0 0.2 +titillations titillation nom f p 0 0.27 0 0.07 +titille titiller ver 1.1 1.69 0.48 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +titillement titillement nom m s 0.02 0.2 0 0.14 +titillements titillement nom m p 0.02 0.2 0.02 0.07 +titillent titiller ver 1.1 1.69 0.04 0 ind:pre:3p; +titiller titiller ver 1.1 1.69 0.36 0.34 inf; +titillera titiller ver 1.1 1.69 0.01 0 ind:fut:3s; +titillé titiller ver m s 1.1 1.69 0.09 0 par:pas; +titillées titiller ver f p 1.1 1.69 0 0.14 par:pas; +titillés titiller ver m p 1.1 1.69 0 0.14 par:pas; +titis titi nom m p 4.79 6.28 0 0.14 +titisme titisme nom m s 0 0.14 0 0.14 +titra titrer ver 1.75 1.08 1.1 0.07 ind:pas:3s; +titrage titrage nom m s 0.31 0 0.31 0 +titrait titrer ver 1.75 1.08 0 0.27 ind:imp:3s; +titre titre nom m s 41.35 71.22 32.4 53.04 +titrer titrer ver 1.75 1.08 0.03 0.34 inf; +titres titre nom m p 41.35 71.22 8.95 18.18 +titré titré adj m s 0.46 0.61 0.28 0.2 +titrée titrer ver f s 1.75 1.08 0.01 0 par:pas; +titrées titré adj f p 0.46 0.61 0.15 0.07 +titrés titré adj m p 0.46 0.61 0.01 0.34 +tituba tituber ver 1.34 13.31 0.01 0.74 ind:pas:3s; +titubai tituber ver 1.34 13.31 0 0.07 ind:pas:1s; +titubaient tituber ver 1.34 13.31 0 0.47 ind:imp:3p; +titubais tituber ver 1.34 13.31 0.13 0.2 ind:imp:1s;ind:imp:2s; +titubait tituber ver 1.34 13.31 0.06 1.96 ind:imp:3s; +titubant tituber ver 1.34 13.31 0.28 5.61 par:pre; +titubante titubant adj f s 0.24 3.78 0.02 1.49 +titubantes titubant adj f p 0.24 3.78 0.01 0.2 +titubants titubant adj m p 0.24 3.78 0.2 0.81 +titubation titubation nom f s 0 0.2 0 0.14 +titubations titubation nom f p 0 0.2 0 0.07 +titube tituber ver 1.34 13.31 0.31 2.3 imp:pre:2s;ind:pre:1s;ind:pre:3s; +titubement titubement nom m s 0 0.07 0 0.07 +titubent tituber ver 1.34 13.31 0.24 0.14 ind:pre:3p; +tituber tituber ver 1.34 13.31 0.13 1.35 inf; +titubez tituber ver 1.34 13.31 0.04 0 imp:pre:2p;ind:pre:2p; +titubiez tituber ver 1.34 13.31 0.02 0 ind:imp:2p; +titubions tituber ver 1.34 13.31 0 0.07 ind:imp:1p; +titubèrent tituber ver 1.34 13.31 0.01 0.07 ind:pas:3p; +titubé tituber ver m s 1.34 13.31 0.11 0.34 par:pas; +titulaire titulaire nom s 1.8 0.95 1.27 0.61 +titulaires titulaire nom p 1.8 0.95 0.53 0.34 +titularisation titularisation nom f s 0.13 0 0.13 0 +titulariser titulariser ver 0.22 0.07 0.03 0 inf; +titularisé titulariser ver m s 0.22 0.07 0.06 0 par:pas; +titularisée titulariser ver f s 0.22 0.07 0.13 0.07 par:pas; +tiède tiède adj s 3.85 44.73 3.35 36.69 +tièdement tièdement adv 0 0.14 0 0.14 +tièdes tiède adj p 3.85 44.73 0.5 8.04 +tiédasse tiédasse adj s 0.01 0.61 0 0.54 +tiédasses tiédasse adj p 0.01 0.61 0.01 0.07 +tiédeur tiédeur nom f s 0.28 10.27 0.28 10 +tiédeurs tiédeur nom f p 0.28 10.27 0 0.27 +tiédi tiédir ver m s 0.17 2.16 0 0.2 par:pas; +tiédie tiédir ver f s 0.17 2.16 0 0.34 par:pas; +tiédies tiédir ver f p 0.17 2.16 0 0.07 par:pas; +tiédir tiédir ver 0.17 2.16 0.01 0.61 inf; +tiédirait tiédir ver 0.17 2.16 0 0.07 cnd:pre:3s; +tiédis tiédir ver m p 0.17 2.16 0 0.07 par:pas; +tiédissaient tiédir ver 0.17 2.16 0 0.14 ind:imp:3p; +tiédissait tiédir ver 0.17 2.16 0 0.27 ind:imp:3s; +tiédissant tiédir ver 0.17 2.16 0 0.14 par:pre; +tiédissent tiédir ver 0.17 2.16 0 0.07 ind:pre:3p; +tiédit tiédir ver 0.17 2.16 0.16 0.2 ind:pre:3s;ind:pas:3s; +to to pro_per f s 0.01 0 0.01 0 +toast toast nom m s 16.3 4.39 13.73 1.96 +toaster toaster nom m s 0.45 0 0.45 0 +toasteur toasteur nom m s 0.17 0 0.17 0 +toasts toast nom m p 16.3 4.39 2.56 2.43 +toasté toaster ver m s 0.09 0 0.07 0 par:pas; +toboggan toboggan nom m s 0.86 1.69 0.59 1.22 +toboggans toboggan nom m p 0.86 1.69 0.28 0.47 +toc toc adj 4.83 7.09 4.83 7.09 +tocade tocade nom f s 0.3 0 0.3 0 +tocante tocante nom f s 0.06 0.54 0.06 0.54 +tocard tocard nom m s 1.27 1.08 0.94 0.74 +tocarde tocard adj f s 0.39 1.15 0.09 0.27 +tocardes tocard adj f p 0.39 1.15 0 0.07 +tocards tocard nom m p 1.27 1.08 0.33 0.34 +toccata toccata nom f s 0.04 0.07 0.04 0.07 +tocs toc nom m p 2.26 4.05 0 0.54 +tocsin tocsin nom m s 0.48 1.42 0.48 1.28 +tocsins tocsin nom m p 0.48 1.42 0 0.14 +toffee toffee nom m s 0.01 0 0.01 0 +tofu tofu nom m s 1.56 0 1.56 0 +toge toge nom f s 0.77 1.55 0.6 1.35 +toges toge nom f p 0.77 1.55 0.16 0.2 +togolais togolais adj m 0 0.41 0 0.14 +togolaise togolais adj f s 0 0.41 0 0.2 +togolaises togolais adj f p 0 0.41 0 0.07 +tohu_bohu tohu_bohu nom m 0.18 1.42 0.18 1.42 +toi toi pro_per s 2519.5 450.34 2519.5 450.34 +toi_même toi_même pro_per s 45.83 11.89 45.83 11.89 +toilasses toiler ver 0 0.27 0 0.07 sub:imp:2s; +toile toile nom f s 17.99 106.62 11.75 81.35 +toiles toile nom f p 17.99 106.62 6.24 25.27 +toiletta toiletter ver 0.03 0.68 0 0.07 ind:pas:3s; +toilettage toilettage nom m s 0.13 0 0.13 0 +toilettait toiletter ver 0.03 0.68 0 0.14 ind:imp:3s; +toilette toilette nom f s 62.84 45.68 9.76 32.3 +toiletter toiletter ver 0.03 0.68 0.01 0.2 inf; +toilettes toilette nom f p 62.84 45.68 53.08 13.38 +toiletteur toiletteur nom m s 0.04 0 0.04 0 +toiletté toiletter ver m s 0.03 0.68 0.02 0.14 par:pas; +toilettées toiletter ver f p 0.03 0.68 0 0.07 par:pas; +toilettés toiletter ver m p 0.03 0.68 0 0.07 par:pas; +toilé toiler ver m s 0 0.27 0 0.07 par:pas; +toilée toiler ver f s 0 0.27 0 0.07 par:pas; +toilés toiler ver m p 0 0.27 0 0.07 par:pas; +toisa toiser ver 0.14 8.38 0.01 3.04 ind:pas:3s; +toisaient toiser ver 0.14 8.38 0.01 0.2 ind:imp:3p; +toisait toiser ver 0.14 8.38 0 0.81 ind:imp:3s; +toisant toiser ver 0.14 8.38 0 0.95 par:pre; +toise toiser ver 0.14 8.38 0.04 1.35 ind:pre:3s; +toisent toiser ver 0.14 8.38 0.02 0.07 ind:pre:3p; +toiser toiser ver 0.14 8.38 0.03 0.81 inf; +toises toise nom f p 0.29 1.01 0.27 0.47 +toisez toiser ver 0.14 8.38 0 0.07 ind:pre:2p; +toison toison nom f s 0.69 6.35 0.68 5.74 +toisons toison nom f p 0.69 6.35 0.01 0.61 +toisèrent toiser ver 0.14 8.38 0 0.54 ind:pas:3p; +toisé toiser ver m s 0.14 8.38 0.01 0.14 par:pas; +toisée toiser ver f s 0.14 8.38 0.03 0.2 par:pas; +toisés toiser ver m p 0.14 8.38 0 0.2 par:pas; +toit toit nom m s 49.01 91.76 42.63 54.59 +toits toit nom m p 49.01 91.76 6.37 37.16 +toiture toiture nom f s 0.5 7.57 0.28 5.95 +toitures toiture nom f p 0.5 7.57 0.22 1.62 +tokamak tokamak nom m s 0.04 0 0.04 0 +tokay tokay nom m s 0 0.07 0 0.07 +tokharien tokharien nom m s 0 0.07 0 0.07 +tolar tolar nom m s 0.08 0 0.08 0 +tolet tolet nom m s 0.02 0.27 0.01 0.07 +tolets tolet nom m p 0.02 0.27 0.01 0.2 +tollé tollé nom m s 0.19 0.47 0.19 0.47 +tolstoïen tolstoïen adj m s 0 0.07 0 0.07 +toltèque toltèque adj s 0.03 0.14 0.02 0.07 +toltèques toltèque adj m p 0.03 0.14 0.01 0.07 +tolu tolu nom m s 0 0.14 0 0.14 +toluidine toluidine nom f s 0.01 0 0.01 0 +toluène toluène nom m s 0.04 0 0.04 0 +tolère tolérer ver 13.05 13.45 2.58 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tolèrent tolérer ver 13.05 13.45 0.28 0.47 ind:pre:3p; +toléra tolérer ver 13.05 13.45 0.02 0 ind:pas:3s; +tolérable tolérable adj s 0.47 1.49 0.29 1.01 +tolérables tolérable adj p 0.47 1.49 0.18 0.47 +toléraient tolérer ver 13.05 13.45 0.11 0.54 ind:imp:3p; +tolérais tolérer ver 13.05 13.45 0.04 0.41 ind:imp:1s; +tolérait tolérer ver 13.05 13.45 0.58 2.3 ind:imp:3s; +tolérance tolérance nom f s 3.03 4.39 3.03 4.39 +tolérant tolérant adj m s 2.44 1.49 1.3 0.74 +tolérante tolérant adj f s 2.44 1.49 0.45 0.34 +tolérantes tolérant adj f p 2.44 1.49 0.16 0.07 +tolérants tolérant adj m p 2.44 1.49 0.54 0.34 +tolérer tolérer ver 13.05 13.45 2.96 2.97 inf; +tolérera tolérer ver 13.05 13.45 0.31 0.14 ind:fut:3s; +tolérerai tolérer ver 13.05 13.45 2.31 0.2 ind:fut:1s; +tolérerais tolérer ver 13.05 13.45 0.15 0.07 cnd:pre:1s; +tolérerait tolérer ver 13.05 13.45 0.07 0.34 cnd:pre:3s; +tolérerions tolérer ver 13.05 13.45 0 0.07 cnd:pre:1p; +tolérerons tolérer ver 13.05 13.45 0.24 0 ind:fut:1p; +toléreront tolérer ver 13.05 13.45 0.14 0 ind:fut:3p; +tolérez tolérer ver 13.05 13.45 0.24 0.07 imp:pre:2p;ind:pre:2p; +tolériez tolérer ver 13.05 13.45 0.01 0 ind:imp:2p; +tolérions tolérer ver 13.05 13.45 0 0.07 ind:imp:1p; +tolérons tolérer ver 13.05 13.45 0.37 0.07 ind:pre:1p; +tolérât tolérer ver 13.05 13.45 0 0.14 sub:imp:3s; +toléré tolérer ver m s 13.05 13.45 1.5 2.3 par:pas; +tolérée tolérer ver f s 13.05 13.45 0.25 0.74 par:pas; +tolérées tolérer ver f p 13.05 13.45 0.06 0.47 par:pas; +tolérés tolérer ver m p 13.05 13.45 0.1 0.2 par:pas; +tom tom nom m s 2.51 0.14 2.51 0.14 +tom_pouce tom_pouce nom m 0 0.54 0 0.54 +tom_tom tom_tom nom m 0.04 0 0.04 0 +toma tomer ver 0.14 0 0.14 0 ind:pas:3s; +tomahawk tomahawk nom m s 0 0.27 0 0.2 +tomahawks tomahawk nom m p 0 0.27 0 0.07 +toman toman nom m s 0.27 0 0.27 0 +tomate tomate nom f s 20.77 13.31 7.88 5.74 +tomates tomate nom f p 20.77 13.31 12.89 7.57 +tomba tomber ver 407.82 441.42 4.17 31.08 ind:pas:3s; +tombai tomber ver 407.82 441.42 0.23 3.58 ind:pas:1s; +tombaient tomber ver 407.82 441.42 1.49 18.65 ind:imp:3p; +tombais tomber ver 407.82 441.42 1.36 2.43 ind:imp:1s;ind:imp:2s; +tombait tomber ver 407.82 441.42 4.01 49.05 ind:imp:3s; +tombal tombal adj m s 2.71 2.7 0.14 0 +tombale tombal adj f s 2.71 2.7 1.99 1.49 +tombales tombal adj f p 2.71 2.7 0.58 1.22 +tombant tomber ver 407.82 441.42 3.26 12.97 par:pre; +tombante tombant adj f s 0.88 9.12 0.34 5 +tombantes tombant adj f p 0.88 9.12 0.1 1.15 +tombants tombant adj m p 0.88 9.12 0.05 0.41 +tombe tomber ver 407.82 441.42 66.39 60.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tombeau tombeau nom m s 10.22 11.96 9.51 8.92 +tombeaux tombeau nom m p 10.22 11.96 0.71 3.04 +tombent tomber ver 407.82 441.42 13.08 17.97 ind:pre:3p; +tomber tomber ver 407.82 441.42 180.25 133.18 inf; +tombera tomber ver 407.82 441.42 6.26 2.16 ind:fut:3s; +tomberai tomber ver 407.82 441.42 0.88 0.74 ind:fut:1s; +tomberaient tomber ver 407.82 441.42 0.28 0.74 cnd:pre:3p; +tomberais tomber ver 407.82 441.42 0.45 0.81 cnd:pre:1s;cnd:pre:2s; +tomberait tomber ver 407.82 441.42 1.56 3.18 cnd:pre:3s; +tomberas tomber ver 407.82 441.42 1.52 0.07 ind:fut:2s; +tombereau tombereau nom m s 0.01 2.5 0.01 1.15 +tombereaux tombereau nom m p 0.01 2.5 0 1.35 +tomberez tomber ver 407.82 441.42 0.9 0.27 ind:fut:2p; +tomberiez tomber ver 407.82 441.42 0.26 0.07 cnd:pre:2p; +tomberions tomber ver 407.82 441.42 0.16 0.07 cnd:pre:1p; +tomberons tomber ver 407.82 441.42 0.16 0.14 ind:fut:1p; +tomberont tomber ver 407.82 441.42 1.54 0.95 ind:fut:3p; +tombes tombe nom f p 49.67 34.86 8.34 10.68 +tombeur tombeur nom m s 2.13 1.01 1.94 0.74 +tombeurs tombeur nom m p 2.13 1.01 0.17 0.2 +tombeuse tombeur nom f s 2.13 1.01 0.01 0.07 +tombeuses tombeur nom f p 2.13 1.01 0.01 0 +tombez tomber ver 407.82 441.42 4.88 1.96 imp:pre:2p;ind:pre:2p; +tombiez tomber ver 407.82 441.42 0.45 0.34 ind:imp:2p; +tombions tomber ver 407.82 441.42 0.17 0.54 ind:imp:1p; +tombola tombola nom f s 1.23 0.68 1.21 0.61 +tombolas tombola nom f p 1.23 0.68 0.02 0.07 +tombons tomber ver 407.82 441.42 0.91 1.08 imp:pre:1p;ind:pre:1p; +tombâmes tomber ver 407.82 441.42 0.01 0.68 ind:pas:1p; +tombât tomber ver 407.82 441.42 0.02 1.55 sub:imp:3s; +tombèrent tomber ver 407.82 441.42 0.27 6.08 ind:pas:3p; +tombé tomber ver m s 407.82 441.42 62.89 47.97 par:pas; +tombée tomber ver f s 407.82 441.42 30.49 25.2 par:pas; +tombées tomber ver f p 407.82 441.42 2.15 3.38 par:pas; +tombés tomber ver m p 407.82 441.42 9.63 12.7 par:pas; +tome tome nom m s 0.88 7.09 0.67 4.66 +tomes tome nom m p 0.88 7.09 0.21 2.43 +tomettes tomette nom f p 0 0.47 0 0.47 +tomme tomme nom f s 0.07 0.14 0.07 0.07 +tommes tomme nom f p 0.07 0.14 0 0.07 +tommette tommette nom f s 0 0.88 0 0.14 +tommettes tommette nom f p 0 0.88 0 0.74 +tommies tommies nom m p 0.12 0.07 0.12 0.07 +tommy tommy nom m s 0.11 0 0.11 0 +tomodensitomètre tomodensitomètre nom m s 0.03 0 0.03 0 +tomodensitométrie tomodensitométrie nom f s 0.04 0 0.04 0 +tomographe tomographe nom m s 0.03 0 0.03 0 +tomographie tomographie nom f s 0.56 0 0.56 0 +ton ton nom_sup m s 53.24 146.35 51.73 138.45 +tonal tonal adj m s 0.12 0.07 0.02 0 +tonale tonal adj f s 0.12 0.07 0.1 0.07 +tonalité tonalité nom f s 1.78 3.04 1.26 2.5 +tonalités tonalité nom f p 1.78 3.04 0.52 0.54 +tond tondre ver 2.77 4.26 0.48 0.2 ind:pre:3s; +tondais tondre ver 2.77 4.26 0.02 0 ind:imp:1s; +tondait tondre ver 2.77 4.26 0.05 0.34 ind:imp:3s; +tondant tondre ver 2.77 4.26 0.04 0 par:pre; +tonde tondre ver 2.77 4.26 0.03 0.07 sub:pre:1s;sub:pre:3s; +tondent tondre ver 2.77 4.26 0.05 0.14 ind:pre:3p; +tondes tondre ver 2.77 4.26 0.01 0 sub:pre:2s; +tondeur tondeur nom m s 2.04 2.3 0.04 0.61 +tondeuse tondeur nom f s 2.04 2.3 1.72 1.49 +tondeuses tondeur nom f p 2.04 2.3 0.28 0.2 +tondit tondre ver 2.77 4.26 0.01 0.07 ind:pas:3s; +tondons tondre ver 2.77 4.26 0.02 0 imp:pre:1p;ind:pre:1p; +tondrai tondre ver 2.77 4.26 0.02 0 ind:fut:1s; +tondrais tondre ver 2.77 4.26 0.16 0 cnd:pre:1s; +tondre tondre ver 2.77 4.26 1.38 1.01 inf; +tonds tondre ver 2.77 4.26 0.13 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tondu tondu adj m s 0.74 3.65 0.51 1.89 +tondue tondre ver f s 2.77 4.26 0.06 0.54 par:pas; +tondues tondu adj f p 0.74 3.65 0 0.41 +tondus tondu adj m p 0.74 3.65 0.2 0.81 +toner toner nom m s 0.07 0 0.07 0 +tong tong nom f s 1.73 0.2 1.12 0.07 +tongs tong nom f p 1.73 0.2 0.61 0.14 +tonic tonic nom m s 2.04 0.2 1.93 0.2 +tonicardiaque tonicardiaque nom m s 0.14 0 0.14 0 +tonicité tonicité nom f s 0.07 0 0.07 0 +tonics tonic nom m p 2.04 0.2 0.11 0 +tonie tonie nom f s 0.02 0 0.02 0 +tonifiaient tonifier ver 0.06 0.34 0 0.07 ind:imp:3p; +tonifiant tonifiant adj m s 0.04 0.14 0.03 0 +tonifiante tonifiant adj f s 0.04 0.14 0 0.07 +tonifiants tonifiant adj m p 0.04 0.14 0.01 0.07 +tonifie tonifier ver 0.06 0.34 0.03 0.07 ind:pre:3s; +tonifient tonifier ver 0.06 0.34 0.01 0.07 ind:pre:3p; +tonifier tonifier ver 0.06 0.34 0.01 0.07 inf; +tonique tonique adj s 0.4 1.82 0.35 1.55 +toniques tonique adj p 0.4 1.82 0.05 0.27 +tonitrua tonitruer ver 0.01 1.89 0 0.68 ind:pas:3s; +tonitruaient tonitruer ver 0.01 1.89 0 0.07 ind:imp:3p; +tonitruais tonitruer ver 0.01 1.89 0 0.07 ind:imp:1s; +tonitruait tonitruer ver 0.01 1.89 0 0.27 ind:imp:3s; +tonitruance tonitruance nom f s 0 0.14 0 0.07 +tonitruances tonitruance nom f p 0 0.14 0 0.07 +tonitruant tonitruant adj m s 0.29 3.04 0.05 0.95 +tonitruante tonitruant adj f s 0.29 3.04 0.24 1.28 +tonitruantes tonitruant adj f p 0.29 3.04 0 0.34 +tonitruants tonitruant adj m p 0.29 3.04 0 0.47 +tonitrue tonitruer ver 0.01 1.89 0.01 0.14 imp:pre:2s;ind:pre:3s; +tonitruent tonitruer ver 0.01 1.89 0 0.07 ind:pre:3p; +tonitruer tonitruer ver 0.01 1.89 0 0.2 inf; +tonitrué tonitruer ver m s 0.01 1.89 0 0.07 par:pas; +tonka tonka nom f s 0.03 0 0.03 0 +tonkinois tonkinois nom m 0.02 0.2 0.01 0.07 +tonkinoise tonkinois nom f s 0.02 0.2 0.01 0.14 +tonna tonner ver 1.94 5.14 0.14 0.74 ind:pas:3s; +tonnage tonnage nom m s 0.07 1.55 0.07 1.42 +tonnages tonnage nom m p 0.07 1.55 0 0.14 +tonnaient tonner ver 1.94 5.14 0.01 0.41 ind:imp:3p; +tonnais tonner ver 1.94 5.14 0.01 0 ind:imp:2s; +tonnait tonner ver 1.94 5.14 0.01 0.68 ind:imp:3s; +tonnant tonnant adj m s 0.14 1.08 0.14 0.14 +tonnante tonnant adj f s 0.14 1.08 0 0.74 +tonnantes tonnant adj f p 0.14 1.08 0 0.07 +tonnants tonnant adj m p 0.14 1.08 0 0.14 +tonne tonne nom f s 16.29 14.19 4.48 2.64 +tonneau tonneau nom m s 4.37 12.16 2.94 6.89 +tonneaux tonneau nom m p 4.37 12.16 1.43 5.27 +tonnelet tonnelet nom m s 0.43 1.55 0.4 1.15 +tonnelets tonnelet nom m p 0.43 1.55 0.03 0.41 +tonnelier tonnelier nom m s 0.06 0.61 0.06 0.47 +tonneliers tonnelier nom m p 0.06 0.61 0 0.14 +tonnelle tonnelle nom f s 0.62 3.51 0.61 2.84 +tonnellerie tonnellerie nom f s 0.07 0.88 0.07 0.81 +tonnelleries tonnellerie nom f p 0.07 0.88 0 0.07 +tonnelles tonnelle nom f p 0.62 3.51 0.01 0.68 +tonnent tonner ver 1.94 5.14 0.02 0.74 ind:pre:3p; +tonner tonner ver 1.94 5.14 0.12 1.28 inf; +tonnerait tonner ver 1.94 5.14 0 0.07 cnd:pre:3s; +tonnerre tonnerre nom m s 11.4 19.39 10.9 18.65 +tonnerres tonnerre nom m p 11.4 19.39 0.5 0.74 +tonnes tonne nom f p 16.29 14.19 11.8 11.55 +tonnez tonner ver 1.94 5.14 0 0.07 imp:pre:2p; +tonné tonner ver m s 1.94 5.14 0.2 0.2 par:pas; +tons ton nom_sup m p 53.24 146.35 1.51 7.91 +tonsure tonsure nom f s 0.85 0.88 0.85 0.81 +tonsures tonsure nom f p 0.85 0.88 0 0.07 +tonsuré tonsurer ver m s 0 0.07 0 0.07 par:pas; +tonte tonte nom f s 0.17 0.74 0.17 0.74 +tonton tonton nom m s 14.02 12.43 13.94 11.89 +tontons tonton nom m p 14.02 12.43 0.08 0.54 +tonus tonus nom m 0.34 0.61 0.34 0.61 +too_much too_much adj m s 0.19 0.47 0.19 0.47 +top top nom m s 19.35 2.09 19.18 2.09 +top_model top_model nom f p 0.12 0.07 0.12 0.07 +top_modèle top_modèle nom f s 0.22 0 0.21 0 +top_modèle top_modèle nom f p 0.22 0 0.01 0 +topa toper ver 2.59 0.68 0 0.07 ind:pas:3s; +topaze topaze nom f s 0.37 0.88 0.36 0.81 +topazes topaze nom f p 0.37 0.88 0.01 0.07 +tope toper ver 2.59 0.68 2.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +toper toper ver 2.59 0.68 0.04 0.07 inf; +topette topette nom f s 0 0.2 0 0.14 +topettes topette nom f p 0 0.2 0 0.07 +topez toper ver 2.59 0.68 0.18 0.07 imp:pre:2p; +tophus tophus nom m 0 0.07 0 0.07 +topinambour topinambour nom m s 0.16 1.35 0.02 0.41 +topinambours topinambour nom m p 0.16 1.35 0.14 0.95 +topions toper ver 2.59 0.68 0.01 0 ind:imp:1p; +topique topique adj m s 0.03 0.07 0.03 0.07 +topless topless adj f 0.26 0 0.26 0 +topo topo nom m s 3.17 2.43 3.16 2.36 +topographie topographie nom f s 0.33 1.35 0.33 1.35 +topographique topographique adj s 0.23 0.54 0.17 0.34 +topographiquement topographiquement adv 0 0.14 0 0.14 +topographiques topographique adj p 0.23 0.54 0.06 0.2 +topologie topologie nom f s 0.04 0.07 0.04 0.07 +topologique topologique adj f s 0.01 0 0.01 0 +topons toper ver 2.59 0.68 0.03 0.14 imp:pre:1p; +toponymie toponymie nom f s 0 0.07 0 0.07 +topos topo nom m p 3.17 2.43 0.01 0.07 +tops top nom m p 19.35 2.09 0.17 0 +topé toper ver m s 2.59 0.68 0.28 0 par:pas; +topés toper ver m p 2.59 0.68 0.01 0 par:pas; +toqua toquer ver 1.33 2.03 0.1 0.34 ind:pas:3s; +toquade toquade nom f s 0.13 0.41 0.13 0.14 +toquades toquade nom f p 0.13 0.41 0 0.27 +toquais toquer ver 1.33 2.03 0 0.07 ind:imp:1s; +toquait toquer ver 1.33 2.03 0 0.14 ind:imp:3s; +toquant toquer ver 1.33 2.03 0 0.07 par:pre; +toquante toquante nom f s 0.03 0.27 0.01 0.2 +toquantes toquante nom f p 0.03 0.27 0.02 0.07 +toquard toquard nom m s 0.11 0.41 0.07 0.27 +toquarde toquard adj f s 0.13 0.41 0.1 0.07 +toquardes toquard adj f p 0.13 0.41 0 0.07 +toquards toquard nom m p 0.11 0.41 0.04 0.14 +toque toque nom f s 0.82 7.57 0.65 6.55 +toquer toquer ver 1.33 2.03 0.07 0.41 inf; +toques toque nom f p 0.82 7.57 0.17 1.01 +toquez toquer ver 1.33 2.03 0.01 0 imp:pre:2p; +toqué toquer ver m s 1.33 2.03 0.72 0.2 par:pas; +toquée toqué adj f s 0.89 0.34 0.36 0.07 +toquées toquer ver f p 1.33 2.03 0.1 0.07 par:pas; +toqués toqué adj m p 0.89 0.34 0.11 0 +torana torana nom m s 0.01 0 0.01 0 +torcha torcher ver 3.2 5.54 0 0.34 ind:pas:3s; +torchaient torcher ver 3.2 5.54 0 0.07 ind:imp:3p; +torchais torcher ver 3.2 5.54 0.01 0.07 ind:imp:1s;ind:imp:2s; +torchait torcher ver 3.2 5.54 0.03 0.2 ind:imp:3s; +torchant torcher ver 3.2 5.54 0.02 0.2 par:pre; +torchassions torcher ver 3.2 5.54 0 0.07 sub:imp:1p; +torche torche nom f s 8.09 11.96 6.71 7.16 +torche_cul torche_cul nom m s 0.06 0 0.06 0 +torchent torcher ver 3.2 5.54 0.01 0.27 ind:pre:3p; +torcher torcher ver 3.2 5.54 1.23 1.89 inf; +torcherais torcher ver 3.2 5.54 0.04 0.07 cnd:pre:1s; +torcheras torcher ver 3.2 5.54 0.01 0.07 ind:fut:2s; +torches torche nom f p 8.09 11.96 1.38 4.8 +torchez torcher ver 3.2 5.54 0.03 0 imp:pre:2p;ind:pre:2p; +torchis torchis nom m 0.03 2.23 0.03 2.23 +torchon torchon nom m s 3.48 10.14 2.95 7.23 +torchonnait torchonner ver 0 0.68 0 0.34 ind:imp:3s; +torchonne torchonner ver 0 0.68 0 0.14 ind:pre:3s; +torchonner torchonner ver 0 0.68 0 0.2 inf; +torchons torchon nom m p 3.48 10.14 0.54 2.91 +torchère torchère nom f s 0.01 1.42 0 0.47 +torchères torchère nom f p 0.01 1.42 0.01 0.95 +torché torcher ver m s 3.2 5.54 0.38 0.41 par:pas; +torchée torcher ver f s 3.2 5.54 0.01 0.14 par:pas; +torchées torchée nom f p 0 0.07 0 0.07 +torchés torcher ver m p 3.2 5.54 0.16 0.07 par:pas; +tord tordre ver 12.24 38.38 2.08 4.8 ind:pre:3s; +tord_boyaux tord_boyaux nom m 0.27 0.47 0.27 0.47 +tord_nez tord_nez nom m s 0 0.14 0 0.14 +tordage tordage nom m s 0.07 0 0.07 0 +tordaient tordre ver 12.24 38.38 0.17 1.89 ind:imp:3p; +tordais tordre ver 12.24 38.38 0.17 0.34 ind:imp:1s;ind:imp:2s; +tordait tordre ver 12.24 38.38 0.14 6.89 ind:imp:3s; +tordant tordant adj m s 1.65 0.88 1.25 0.61 +tordante tordant adj f s 1.65 0.88 0.33 0 +tordantes tordant adj f p 1.65 0.88 0.02 0.07 +tordants tordant adj m p 1.65 0.88 0.05 0.2 +torde tordre ver 12.24 38.38 0.26 0.14 sub:pre:1s;sub:pre:3s; +tordent tordre ver 12.24 38.38 0.36 1.28 ind:pre:3p; +tordeur tordeur nom m s 0.13 0 0.12 0 +tordeurs tordeur nom m p 0.13 0 0.01 0 +tordez tordre ver 12.24 38.38 0.1 0.14 imp:pre:2p;ind:pre:2p; +tordiez tordre ver 12.24 38.38 0.01 0 ind:imp:2p; +tordion tordion nom m s 0 0.14 0 0.07 +tordions tordion nom m p 0 0.14 0 0.07 +tordirent tordre ver 12.24 38.38 0.01 0.34 ind:pas:3p; +tordis tordre ver 12.24 38.38 0 0.14 ind:pas:1s; +tordit tordre ver 12.24 38.38 0.01 2.64 ind:pas:3s; +tordra tordre ver 12.24 38.38 0.01 0.07 ind:fut:3s; +tordrai tordre ver 12.24 38.38 0.18 0.07 ind:fut:1s; +tordraient tordre ver 12.24 38.38 0 0.07 cnd:pre:3p; +tordrais tordre ver 12.24 38.38 0.2 0.07 cnd:pre:1s;cnd:pre:2s; +tordrait tordre ver 12.24 38.38 0.06 0.2 cnd:pre:3s; +tordras tordre ver 12.24 38.38 0.02 0 ind:fut:2s; +tordre tordre ver 12.24 38.38 2.77 5.27 inf; +tordrez tordre ver 12.24 38.38 0.01 0.07 ind:fut:2p; +tordront tordre ver 12.24 38.38 0.01 0.14 ind:fut:3p; +tords tordre ver 12.24 38.38 1.17 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tordu tordu adj m s 7.76 14.8 4.1 4.46 +tordue tordu adj f s 7.76 14.8 1.75 4.12 +tordues tordu adj f p 7.76 14.8 0.66 2.3 +tordus tordu adj m p 7.76 14.8 1.25 3.92 +tordît tordre ver 12.24 38.38 0 0.07 sub:imp:3s; +tore tore nom m s 0.14 0.07 0.04 0 +torera torera nom f s 0.2 0 0.2 0 +torero torero nom m s 1.17 2.43 0.94 1.35 +toreros torero nom m p 1.17 2.43 0.23 1.08 +tores tore nom m p 0.14 0.07 0.1 0.07 +torgnole torgnole nom f s 0.31 1.08 0.14 0.47 +torgnoles torgnole nom f p 0.31 1.08 0.17 0.61 +tories tories nom m p 0.12 0 0.12 0 +toril toril nom m s 0 0.41 0 0.41 +tornade tornade nom f s 2.66 4.12 2.13 3.11 +tornades tornade nom f p 2.66 4.12 0.52 1.01 +toro toro nom m s 0.91 0.74 0.91 0.74 +torons toron nom m p 0 0.07 0 0.07 +torpeur torpeur nom f s 0.78 13.38 0.78 13.24 +torpeurs torpeur nom f p 0.78 13.38 0 0.14 +torpide torpide adj f s 0 0.27 0 0.27 +torpillage torpillage nom m s 0.13 0.2 0.13 0.14 +torpillages torpillage nom m p 0.13 0.2 0 0.07 +torpillaient torpiller ver 1.21 1.08 0 0.07 ind:imp:3p; +torpillait torpiller ver 1.21 1.08 0 0.07 ind:imp:3s; +torpille torpille nom f s 5.28 1.62 2.42 0.61 +torpiller torpiller ver 1.21 1.08 0.28 0.34 inf; +torpillera torpiller ver 1.21 1.08 0.01 0 ind:fut:3s; +torpilles torpille nom f p 5.28 1.62 2.86 1.01 +torpilleur torpilleur nom m s 0.39 1.62 0.28 0.68 +torpilleurs torpilleur nom m p 0.39 1.62 0.11 0.95 +torpillé torpiller ver m s 1.21 1.08 0.32 0.34 par:pas; +torpillée torpiller ver f s 1.21 1.08 0.03 0.07 par:pas; +torpillés torpiller ver m p 1.21 1.08 0.03 0 par:pas; +torpédo torpédo nom f s 0.03 2.91 0.03 2.7 +torpédos torpédo nom f p 0.03 2.91 0 0.2 +torque torque nom m s 0.05 0 0.05 0 +torrent torrent nom m s 2.46 16.35 1.6 11.96 +torrentiel torrentiel adj m s 0.23 1.01 0.02 0.14 +torrentielle torrentiel adj f s 0.23 1.01 0.2 0.27 +torrentielles torrentiel adj f p 0.23 1.01 0.01 0.47 +torrentiels torrentiel adj m p 0.23 1.01 0 0.14 +torrents torrent nom m p 2.46 16.35 0.86 4.39 +torrentueuses torrentueux adj f p 0 0.2 0 0.14 +torrentueux torrentueux adj m s 0 0.2 0 0.07 +torride torride adj s 1.96 4.32 1.7 3.18 +torrides torride adj p 1.96 4.32 0.26 1.15 +torréfaction torréfaction nom f s 0.02 0.07 0.02 0.07 +torréfiait torréfier ver 0.01 0.41 0 0.14 ind:imp:3s; +torréfiant torréfier ver 0.01 0.41 0 0.07 par:pre; +torréfie torréfier ver 0.01 0.41 0 0.07 ind:pre:3s; +torréfient torréfier ver 0.01 0.41 0 0.07 ind:pre:3p; +torréfié torréfié adj m s 0.12 0.47 0.12 0.14 +torréfiée torréfié adj f s 0.12 0.47 0 0.27 +torréfiées torréfié adj f p 0.12 0.47 0 0.07 +tors tors adj m s 0.67 4.73 0.27 0.34 +torsada torsader ver 0.12 2.57 0 0.07 ind:pas:3s; +torsade torsade nom f s 0.17 2.91 0 1.01 +torsades torsade nom f p 0.17 2.91 0.17 1.89 +torsadé torsader ver m s 0.12 2.57 0 0.54 par:pas; +torsadée torsader ver f s 0.12 2.57 0.03 0.61 par:pas; +torsadées torsader ver f p 0.12 2.57 0.01 0.88 par:pas; +torsadés torsader ver m p 0.12 2.57 0.08 0.47 par:pas; +torse torse nom m s 3.82 21.08 3.75 19.39 +torses torse nom m p 3.82 21.08 0.07 1.69 +torsion torsion nom f s 0.37 3.11 0.36 2.23 +torsions torsion nom f p 0.37 3.11 0.01 0.88 +tort tort nom m s 67.97 55 64.89 51.55 +tortellini tortellini nom m s 0.34 0 0.23 0 +tortellinis tortellini nom m p 0.34 0 0.11 0 +torticolis torticolis nom m 0.92 0.74 0.92 0.74 +tortil tortil nom m s 0 0.14 0 0.07 +tortilla tortilla nom f s 1.73 0.41 1.4 0.07 +tortillaient tortiller ver 1.96 9.66 0.02 0.2 ind:imp:3p; +tortillais tortiller ver 1.96 9.66 0.02 0.2 ind:imp:1s; +tortillait tortiller ver 1.96 9.66 0.14 2.09 ind:imp:3s; +tortillant tortiller ver 1.96 9.66 0.06 1.49 par:pre; +tortillard tortillard nom m s 0.16 1.69 0.16 1.62 +tortillards tortillard nom m p 0.16 1.69 0 0.07 +tortillas tortilla nom f p 1.73 0.41 0.34 0.34 +tortille tortiller ver 1.96 9.66 0.72 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tortillement tortillement nom m s 0.03 0.2 0.02 0 +tortillements tortillement nom m p 0.03 0.2 0.01 0.2 +tortillent tortiller ver 1.96 9.66 0.06 0.2 ind:pre:3p; +tortiller tortiller ver 1.96 9.66 0.76 1.82 inf; +tortillez tortiller ver 1.96 9.66 0.12 0 imp:pre:2p;ind:pre:2p; +tortillon tortillon nom m s 0.06 1.28 0.06 0.81 +tortillons tortillon nom m p 0.06 1.28 0 0.47 +tortillé tortiller ver m s 1.96 9.66 0.03 0.41 par:pas; +tortillée tortiller ver f s 1.96 9.66 0.02 0.34 par:pas; +tortillées tortiller ver f p 1.96 9.66 0 0.14 par:pas; +tortillés tortiller ver m p 1.96 9.66 0 0.27 par:pas; +tortils tortil nom m p 0 0.14 0 0.07 +tortionnaire tortionnaire nom s 0.5 2.43 0.24 1.28 +tortionnaires tortionnaire nom p 0.5 2.43 0.26 1.15 +tortora tortorer ver 0 0.81 0 0.14 ind:pas:3s; +tortorait tortorer ver 0 0.81 0 0.14 ind:imp:3s; +tortorant tortorer ver 0 0.81 0 0.07 par:pre; +tortore tortore nom f s 0 1.82 0 1.82 +tortorent tortorer ver 0 0.81 0 0.07 ind:pre:3p; +tortorer tortorer ver 0 0.81 0 0.27 inf; +tortoré tortorer ver m s 0 0.81 0 0.14 par:pas; +torts tort nom m p 67.97 55 3.08 3.45 +tortu tortu adj m s 0.69 0.68 0 0.07 +tortue tortue nom f s 5.34 6.22 4 4.66 +tortues tortue nom f p 5.34 6.22 1.33 1.55 +tortueuse tortueux adj f s 0.86 3.11 0.39 0.68 +tortueuses tortueux adj f p 0.86 3.11 0.04 0.95 +tortueux tortueux adj m 0.86 3.11 0.44 1.49 +tortura torturer ver 25.55 15.41 0.03 0.07 ind:pas:3s; +torturai torturer ver 25.55 15.41 0.01 0.07 ind:pas:1s; +torturaient torturer ver 25.55 15.41 0.25 0.61 ind:imp:3p; +torturais torturer ver 25.55 15.41 0.07 0.14 ind:imp:1s;ind:imp:2s; +torturait torturer ver 25.55 15.41 0.59 2.36 ind:imp:3s; +torturant torturer ver 25.55 15.41 0.13 0.54 par:pre; +torturante torturant adj f s 0.12 1.28 0.1 0.41 +torturantes torturant adj f p 0.12 1.28 0 0.2 +torturants torturant adj m p 0.12 1.28 0.01 0.14 +torture torture nom f s 12.94 17.03 10.13 11.96 +torturent torturer ver 25.55 15.41 0.96 0.68 ind:pre:3p;sub:pre:3p; +torturer torturer ver 25.55 15.41 8.28 3.78 inf;;inf;;inf;; +torturera torturer ver 25.55 15.41 0.1 0.07 ind:fut:3s; +torturerai torturer ver 25.55 15.41 0.06 0 ind:fut:1s; +tortureraient torturer ver 25.55 15.41 0.01 0 cnd:pre:3p; +torturerez torturer ver 25.55 15.41 0 0.07 ind:fut:2p; +tortureront torturer ver 25.55 15.41 0.05 0 ind:fut:3p; +tortures torture nom f p 12.94 17.03 2.81 5.07 +tortureurs tortureur nom m p 0 0.07 0 0.07 +torturez torturer ver 25.55 15.41 1.24 0.2 imp:pre:2p;ind:pre:2p; +torturions torturer ver 25.55 15.41 0 0.07 ind:imp:1p; +torturons torturer ver 25.55 15.41 0.3 0 imp:pre:1p;ind:pre:1p; +torturèrent torturer ver 25.55 15.41 0 0.07 ind:pas:3p; +torturé torturer ver m s 25.55 15.41 5.56 3.11 par:pas; +torturée torturer ver f s 25.55 15.41 1.27 1.01 par:pas; +torturées torturé adj f p 2.44 4.26 0.33 0.41 +torturés torturer ver m p 25.55 15.41 1.44 0.47 par:pas; +tortus tortu adj m p 0.69 0.68 0 0.07 +torve torve adj s 0.12 2.36 0.02 1.96 +torves torve adj p 0.12 2.36 0.1 0.41 +toréador toréador nom m s 0.31 0.61 0.29 0.47 +toréador_vedette toréador_vedette nom m s 0 0.07 0 0.07 +toréadors toréador nom m p 0.31 0.61 0.02 0.14 +torée toréer ver 0.43 0.07 0.01 0 ind:pre:3s; +toréer toréer ver 0.43 0.07 0.42 0.07 inf; +tos to nom m p 55.51 3.78 0.02 0 +toscan toscan adj m s 0.46 1.22 0.21 0.41 +toscane toscan adj f s 0.46 1.22 0.05 0.68 +toscanes toscan adj f p 0.46 1.22 0.2 0.07 +toscans toscan nom m p 0.04 0.2 0.03 0 +toss toss nom m 0.02 0.07 0.02 0.07 +tossé tosser ver m s 0 0.07 0 0.07 par:pas; +total total adj m s 24.59 41.62 9.29 16.35 +totale total adj f s 24.59 41.62 15.26 24.86 +totalement totalement adv 28.62 22.16 28.62 22.16 +totales total adj f p 24.59 41.62 0.02 0.41 +totalisait totaliser ver 0.13 0.95 0.02 0.2 ind:imp:3s; +totalisant totalisant adj m s 0.01 0.27 0.01 0.27 +totalisateur totalisateur nom m s 0.01 0 0.01 0 +totalisation totalisation nom f s 0 0.07 0 0.07 +totalise totaliser ver 0.13 0.95 0.03 0.2 ind:pre:1s;ind:pre:3s; +totalisent totaliser ver 0.13 0.95 0.03 0.07 ind:pre:3p; +totaliser totaliser ver 0.13 0.95 0.03 0.2 inf; +totalisé totaliser ver m s 0.13 0.95 0.01 0.07 par:pas; +totalitaire totalitaire adj s 0.09 1.42 0.05 1.08 +totalitaires totalitaire adj p 0.09 1.42 0.04 0.34 +totalitarisme totalitarisme nom m s 0.03 0.95 0.03 0.88 +totalitarismes totalitarisme nom m p 0.03 0.95 0 0.07 +totalité totalité nom f s 3.11 9.39 3.11 9.26 +totalités totalité nom f p 3.11 9.39 0 0.14 +totaux total nom m p 3.86 9.66 0.2 0.14 +totem totem nom m s 1.42 1.35 1.27 0.81 +totems totem nom m p 1.42 1.35 0.15 0.54 +toto toto nom m s 0.3 0.2 0.26 0 +totoche totoche nom s 0 0.41 0 0.27 +totoches totoche nom p 0 0.41 0 0.14 +toton toton nom m s 0.15 0.41 0.14 0.27 +totons toton nom m p 0.15 0.41 0.01 0.14 +totos toto nom m p 0.3 0.2 0.04 0.2 +totémique totémique adj m s 0.01 0.27 0 0.14 +totémiques totémique adj m p 0.01 0.27 0.01 0.14 +totémisme totémisme nom m s 0.01 0 0.01 0 +touareg touareg adj m s 0.06 0 0.03 0 +touaregs touareg adj m p 0.06 0 0.03 0 +toubab toubab nom m s 0.3 0.61 0.1 0.54 +toubabs toubab nom m p 0.3 0.61 0.2 0.07 +toubib toubib nom m s 6.62 13.72 5.71 11.35 +toubibs toubib nom m p 6.62 13.72 0.91 2.36 +toucan toucan nom m s 0.03 0.14 0.03 0.14 +toucha toucher ver 270.27 190.27 0.32 10.95 ind:pas:3s; +touchai toucher ver 270.27 190.27 0.01 1.82 ind:pas:1s; +touchaient toucher ver 270.27 190.27 0.44 6.15 ind:imp:3p; +touchais toucher ver 270.27 190.27 1.87 3.04 ind:imp:1s;ind:imp:2s; +touchait toucher ver 270.27 190.27 2.99 18.58 ind:imp:3s; +touchant touchant adj m s 7.42 9.73 6.02 5.34 +touchante touchant adj f s 7.42 9.73 1.04 2.7 +touchantes touchant adj f p 7.42 9.73 0.03 1.01 +touchants touchant adj m p 7.42 9.73 0.33 0.68 +touche toucher ver 270.27 190.27 91.91 29.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +touche_pipi touche_pipi nom m 0.35 0.61 0.35 0.61 +touche_touche touche_touche nom f s 0.01 0 0.01 0 +touchent toucher ver 270.27 190.27 4.96 6.69 ind:pre:3p;sub:pre:3p; +toucher toucher ver 270.27 190.27 49.43 56.15 inf;;inf;;inf;;inf;; +touchera toucher ver 270.27 190.27 4.35 1.35 ind:fut:3s; +toucherai toucher ver 270.27 190.27 2.73 0.61 ind:fut:1s; +toucheraient toucher ver 270.27 190.27 0.08 0.27 cnd:pre:3p; +toucherais toucher ver 270.27 190.27 1.12 0.47 cnd:pre:1s;cnd:pre:2s; +toucherait toucher ver 270.27 190.27 1.05 1.62 cnd:pre:3s; +toucheras toucher ver 270.27 190.27 1.27 0.14 ind:fut:2s; +toucherez toucher ver 270.27 190.27 0.98 0.41 ind:fut:2p; +toucherions toucher ver 270.27 190.27 0.02 0.07 cnd:pre:1p; +toucherons toucher ver 270.27 190.27 0.06 0.14 ind:fut:1p; +toucheront toucher ver 270.27 190.27 0.56 0.2 ind:fut:3p; +touchers toucher nom m p 7.41 10.14 0 0.2 +touches toucher ver 270.27 190.27 10.35 1.55 ind:pre:2s; +touchette touchette nom f s 0.01 0 0.01 0 +touchez toucher ver 270.27 190.27 26.76 2.84 imp:pre:2p;ind:pre:2p; +touchiez toucher ver 270.27 190.27 0.27 0.07 ind:imp:2p; +touchions toucher ver 270.27 190.27 0.13 1.08 ind:imp:1p; +touchons toucher ver 270.27 190.27 0.66 0.81 imp:pre:1p;ind:pre:1p; +touchotter touchotter nom m s 0 0.07 0 0.07 +touchât toucher ver 270.27 190.27 0.01 0.74 sub:imp:3s; +touchèrent toucher ver 270.27 190.27 0.26 1.22 ind:pas:3p; +touché toucher ver m s 270.27 190.27 50.97 27.77 par:pas; +touchée toucher ver f s 270.27 190.27 11.29 4.93 par:pas; +touchées toucher ver f p 270.27 190.27 0.74 0.68 par:pas; +touchés toucher ver m p 270.27 190.27 3.34 2.36 par:pas; +toue toue nom f s 0.02 0.68 0.02 0.61 +touer touer ver 0.02 0.14 0.02 0 inf; +toues toue nom f p 0.02 0.68 0 0.07 +touffe touffe nom f s 2.2 16.69 1.6 6.69 +touffes touffe nom f p 2.2 16.69 0.6 10 +touffeur touffeur nom f s 0 1.35 0 1.28 +touffeurs touffeur nom f p 0 1.35 0 0.07 +touffu touffu adj m s 1.01 4.8 0.42 1.49 +touffue touffu adj f s 1.01 4.8 0.14 0.88 +touffues touffu adj f p 1.01 4.8 0.01 0.34 +touffus touffu adj m p 1.01 4.8 0.43 2.09 +touillais touiller ver 0.29 2.3 0 0.07 ind:imp:1s; +touillait touiller ver 0.29 2.3 0.14 0.27 ind:imp:3s; +touillant touiller ver 0.29 2.3 0 0.47 par:pre; +touille touiller ver 0.29 2.3 0.01 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +touillent touiller ver 0.29 2.3 0 0.14 ind:pre:3p; +touiller touiller ver 0.29 2.3 0.1 0.54 inf; +touillé touillé adj m s 0.1 0.2 0.1 0.07 +touillée touillé adj f s 0.1 0.2 0 0.07 +touillées touiller ver f p 0.29 2.3 0 0.07 par:pas; +touillés touiller ver m p 0.29 2.3 0.01 0.07 par:pas; +toujours toujours adv_sup 1072.36 1093.78 1072.36 1093.78 +toulonnais toulonnais nom m 0 0.41 0 0.41 +touloupes touloupe nom f p 0 0.14 0 0.14 +toulousain toulousain nom m s 0 2.57 0 1.01 +toulousaine toulousain adj f s 0 1.49 0 0.14 +toulousaines toulousain adj f p 0 1.49 0 0.14 +toulousains toulousain nom m p 0 2.57 0 1.49 +toundra toundra nom f s 0.29 0.47 0.19 0.41 +toundras toundra nom f p 0.29 0.47 0.1 0.07 +toungouse toungouse adj f s 0 0.14 0 0.14 +toupet toupet nom m s 2.23 2.3 2.08 2.23 +toupets toupet nom m p 2.23 2.3 0.15 0.07 +toupie toupie nom f s 1.79 3.92 1.5 3.04 +toupies toupie nom f p 1.79 3.92 0.29 0.88 +toupilleur toupilleur nom m s 0 0.07 0 0.07 +toupinant toupiner ver 0 0.14 0 0.14 par:pre; +touque touque nom f s 0.02 0.14 0.02 0.07 +touques touque nom f p 0.02 0.14 0 0.07 +tour tour nom s 193.82 308.72 175.56 280.27 +tourangeau tourangeau adj m s 0 0.54 0 0.2 +tourangeaux tourangeau adj m p 0 0.54 0 0.2 +tourangelle tourangeau adj f s 0 0.54 0 0.07 +tourangelles tourangeau adj f p 0 0.54 0 0.07 +tourbe tourbe nom f s 0.44 2.03 0.44 1.96 +tourbes tourbe nom f p 0.44 2.03 0 0.07 +tourbeuse tourbeux adj f s 0 0.2 0 0.14 +tourbeux tourbeux adj m p 0 0.2 0 0.07 +tourbiers tourbier nom m p 0 0.07 0 0.07 +tourbillon tourbillon nom m s 2.88 17.77 2.34 11.01 +tourbillonna tourbillonner ver 1.16 5.88 0 0.2 ind:pas:3s; +tourbillonnaient tourbillonner ver 1.16 5.88 0.04 0.74 ind:imp:3p; +tourbillonnaire tourbillonnaire adj f s 0 0.14 0 0.14 +tourbillonnais tourbillonner ver 1.16 5.88 0 0.07 ind:imp:1s; +tourbillonnait tourbillonner ver 1.16 5.88 0.02 1.08 ind:imp:3s; +tourbillonnant tourbillonner ver 1.16 5.88 0.01 1.15 par:pre; +tourbillonnante tourbillonnant adj f s 0.06 1.62 0.03 0.54 +tourbillonnantes tourbillonnant adj f p 0.06 1.62 0.03 0.34 +tourbillonnants tourbillonnant adj m p 0.06 1.62 0 0.27 +tourbillonne tourbillonner ver 1.16 5.88 0.26 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tourbillonnement tourbillonnement nom m s 0 0.2 0 0.14 +tourbillonnements tourbillonnement nom m p 0 0.2 0 0.07 +tourbillonnent tourbillonner ver 1.16 5.88 0.68 0.81 ind:pre:3p; +tourbillonner tourbillonner ver 1.16 5.88 0.12 0.74 inf; +tourbillonnez tourbillonner ver 1.16 5.88 0.02 0 imp:pre:2p; +tourbillonnèrent tourbillonner ver 1.16 5.88 0 0.07 ind:pas:3p; +tourbillonné tourbillonner ver m s 1.16 5.88 0.02 0 par:pas; +tourbillons tourbillon nom m p 2.88 17.77 0.54 6.76 +tourbière tourbière nom f s 0.1 0.88 0.06 0.2 +tourbières tourbière nom f p 0.1 0.88 0.04 0.68 +tourde tourd nom f s 0.1 0 0.1 0 +tourelle tourelle nom f s 1.71 3.92 1.53 1.69 +tourelles tourelle nom f p 1.71 3.92 0.18 2.23 +touret touret nom m s 0 0.07 0 0.07 +tourillon tourillon nom m s 0 0.07 0 0.07 +tourisme tourisme nom m s 2.98 4.66 2.98 4.66 +touriste touriste nom s 14.36 24.19 4.05 6.28 +touristes touriste nom p 14.36 24.19 10.31 17.91 +touristique touristique adj s 2.54 3.51 1.95 2.16 +touristiques touristique adj p 2.54 3.51 0.59 1.35 +tourière tourier adj f s 0 0.41 0 0.41 +tourlourou tourlourou nom m s 0.01 0.07 0.01 0.07 +tourlousine tourlousine nom f s 0 0.07 0 0.07 +tourmalines tourmaline nom f p 0.01 0.2 0.01 0.2 +tourment tourment nom m s 7.3 12.3 2.94 5.41 +tourmenta tourmenter ver 10.5 16.28 0.01 0.41 ind:pas:3s; +tourmentai tourmenter ver 10.5 16.28 0 0.07 ind:pas:1s; +tourmentaient tourmenter ver 10.5 16.28 0.03 0.95 ind:imp:3p; +tourmentais tourmenter ver 10.5 16.28 0.01 0.41 ind:imp:1s; +tourmentait tourmenter ver 10.5 16.28 0.36 2.64 ind:imp:3s; +tourmentant tourmenter ver 10.5 16.28 0.03 0.14 par:pre; +tourmentante tourmentant adj f s 0 0.2 0 0.07 +tourmentantes tourmentant adj f p 0 0.2 0 0.07 +tourmente tourmenter ver 10.5 16.28 3.48 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tourmentent tourmenter ver 10.5 16.28 0.52 0.54 ind:pre:3p; +tourmenter tourmenter ver 10.5 16.28 2.59 3.58 inf; +tourmentera tourmenter ver 10.5 16.28 0.21 0.07 ind:fut:3s; +tourmenterai tourmenter ver 10.5 16.28 0.01 0.07 ind:fut:1s; +tourmenteraient tourmenter ver 10.5 16.28 0 0.07 cnd:pre:3p; +tourmenteront tourmenter ver 10.5 16.28 0.02 0.07 ind:fut:3p; +tourmentes tourmente nom f p 1.48 2.84 0.28 0.54 +tourmenteur tourmenteur nom m s 0.03 0.47 0.02 0.14 +tourmenteurs tourmenteur nom m p 0.03 0.47 0.01 0.34 +tourmentez tourmenter ver 10.5 16.28 0.49 0.47 imp:pre:2p;ind:pre:2p; +tourmentiez tourmenter ver 10.5 16.28 0 0.07 ind:imp:2p; +tourmentin tourmentin nom m s 0.03 0.07 0.03 0 +tourmentins tourmentin nom m p 0.03 0.07 0 0.07 +tourments tourment nom m p 7.3 12.3 4.36 6.89 +tourmentât tourmenter ver 10.5 16.28 0 0.27 sub:imp:3s; +tourmentèrent tourmenter ver 10.5 16.28 0 0.07 ind:pas:3p; +tourmenté tourmenter ver m s 10.5 16.28 1.48 2.64 par:pas; +tourmentée tourmenter ver f s 10.5 16.28 0.78 1.01 par:pas; +tourmentées tourmenté adj f p 2.31 5.41 0.19 0.2 +tourmentés tourmenté adj m p 2.31 5.41 0.4 0.95 +tourna tourner ver 204.15 377.09 0.43 58.72 ind:pas:3s; +tournage tournage nom m s 16.59 2.7 15.75 2.36 +tournages tournage nom m p 16.59 2.7 0.84 0.34 +tournai tourner ver 204.15 377.09 0.14 5.07 ind:pas:1s; +tournaient tourner ver 204.15 377.09 0.98 16.42 ind:imp:3p; +tournaillaient tournailler ver 0.14 0.2 0 0.07 ind:imp:3p; +tournailler tournailler ver 0.14 0.2 0.14 0.07 inf; +tournaillé tournailler ver m s 0.14 0.2 0 0.07 par:pas; +tournais tourner ver 204.15 377.09 1.23 3.58 ind:imp:1s;ind:imp:2s; +tournait tourner ver 204.15 377.09 5.65 50.41 ind:imp:3s; +tournant tournant nom m s 3.44 20.34 3.38 18.31 +tournante tournant adj f s 1.42 7.09 0.59 1.35 +tournantes tournant adj f p 1.42 7.09 0.2 0.68 +tournants tournant nom m p 3.44 20.34 0.06 2.03 +tournas tourner ver 204.15 377.09 0 0.07 ind:pas:2s; +tourne tourner ver 204.15 377.09 80.72 60.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tourne_disque tourne_disque nom m s 0.74 1.35 0.5 0.95 +tourne_disque tourne_disque nom m p 0.74 1.35 0.24 0.41 +tourneboulant tournebouler ver 0.4 0.88 0 0.07 par:pre; +tourneboule tournebouler ver 0.4 0.88 0.05 0.2 ind:pre:3s; +tourneboulé tournebouler ver m s 0.4 0.88 0.32 0.34 par:pas; +tourneboulée tournebouler ver f s 0.4 0.88 0.03 0.2 par:pas; +tourneboulés tournebouler ver m p 0.4 0.88 0 0.07 par:pas; +tournebroche tournebroche nom m s 0.02 0.07 0.02 0.07 +tournedos tournedos nom m 0.25 0.2 0.25 0.2 +tournelle tournelle nom f s 0 1.15 0 1.15 +tournemain tournemain nom m s 0.06 0.74 0.06 0.74 +tournements tournement nom m p 0 0.07 0 0.07 +tournent tourner ver 204.15 377.09 5.97 11.35 ind:pre:3p;sub:pre:3p; +tourner tourner ver 204.15 377.09 51.05 68.78 ind:pre:2p;ind:pre:2p;inf; +tournera tourner ver 204.15 377.09 1.71 0.68 ind:fut:3s; +tournerai tourner ver 204.15 377.09 0.7 0.34 ind:fut:1s; +tourneraient tourner ver 204.15 377.09 0.06 0.34 cnd:pre:3p; +tournerais tourner ver 204.15 377.09 0.11 0.34 cnd:pre:1s;cnd:pre:2s; +tournerait tourner ver 204.15 377.09 1.08 1.82 cnd:pre:3s; +tourneras tourner ver 204.15 377.09 0.21 0.14 ind:fut:2s; +tournerez tourner ver 204.15 377.09 0.44 0.14 ind:fut:2p; +tourneries tournerie nom f p 0 0.07 0 0.07 +tourneriez tourner ver 204.15 377.09 0.03 0 cnd:pre:2p; +tournerions tourner ver 204.15 377.09 0.01 0 cnd:pre:1p; +tournerons tourner ver 204.15 377.09 0.18 0.07 ind:fut:1p; +tourneront tourner ver 204.15 377.09 0.36 0.2 ind:fut:3p; +tournes tourner ver 204.15 377.09 4.85 0.95 ind:pre:2s; +tournesol tournesol nom m s 1.43 1.22 0.86 0.61 +tournesols tournesol nom m p 1.43 1.22 0.57 0.61 +tournette tournette nom f s 0.01 0 0.01 0 +tourneur tourneur nom m s 0.57 1.08 0.35 0.61 +tourneurs tourneur nom m p 0.57 1.08 0.22 0.41 +tourneuses tourneur nom f p 0.57 1.08 0 0.07 +tournevis tournevis nom m 3.46 3.24 3.46 3.24 +tournez tourner ver 204.15 377.09 15.82 1.55 imp:pre:2p;ind:pre:2p; +tournicota tournicoter ver 0.03 1.01 0.01 0 ind:pas:3s; +tournicotais tournicoter ver 0.03 1.01 0 0.07 ind:imp:1s; +tournicotait tournicoter ver 0.03 1.01 0 0.2 ind:imp:3s; +tournicotant tournicoter ver 0.03 1.01 0 0.07 par:pre; +tournicote tournicoter ver 0.03 1.01 0.01 0.2 imp:pre:2s;ind:pre:3s; +tournicotent tournicoter ver 0.03 1.01 0 0.07 ind:pre:3p; +tournicoter tournicoter ver 0.03 1.01 0.01 0.2 inf; +tournicoterais tournicoter ver 0.03 1.01 0 0.07 cnd:pre:1s; +tournicoté tournicoter ver m s 0.03 1.01 0 0.07 par:pas; +tournicotés tournicoter ver m p 0.03 1.01 0 0.07 par:pas; +tournillant tourniller ver 0 0.07 0 0.07 par:pre; +tournions tourner ver 204.15 377.09 0.06 0.68 ind:imp:1p; +tourniquant tourniquer ver 0.2 0.2 0 0.14 par:pre; +tournique tourniquer ver 0.2 0.2 0 0.07 ind:pre:3s; +tourniquer tourniquer ver 0.2 0.2 0.2 0 inf; +tourniquet tourniquet nom m s 0.68 2.77 0.65 2.3 +tourniquets tourniquet nom m p 0.68 2.77 0.03 0.47 +tournis tournis nom m 0.58 1.62 0.58 1.62 +tournoi tournoi nom m s 6.86 3.38 5.84 2.16 +tournoie tournoyer ver 1.26 14.8 0.19 1.28 ind:pre:3s; +tournoiement tournoiement nom m s 0.04 1.49 0.04 1.15 +tournoiements tournoiement nom m p 0.04 1.49 0 0.34 +tournoient tournoyer ver 1.26 14.8 0.19 2.3 ind:pre:3p; +tournoieraient tournoyer ver 1.26 14.8 0.11 0.07 cnd:pre:3p; +tournoieront tournoyer ver 1.26 14.8 0 0.07 ind:fut:3p; +tournois tournoi nom m p 6.86 3.38 1.02 1.22 +tournons tourner ver 204.15 377.09 1.88 1.82 imp:pre:1p;ind:pre:1p; +tournoya tournoyer ver 1.26 14.8 0 0.47 ind:pas:3s; +tournoyaient tournoyer ver 1.26 14.8 0.03 2.5 ind:imp:3p; +tournoyais tournoyer ver 1.26 14.8 0 0.07 ind:imp:1s; +tournoyait tournoyer ver 1.26 14.8 0.19 1.96 ind:imp:3s; +tournoyant tournoyer ver 1.26 14.8 0.26 2.16 par:pre; +tournoyante tournoyant adj f s 0.04 2.36 0.01 0.68 +tournoyantes tournoyant adj f p 0.04 2.36 0.01 0.34 +tournoyants tournoyant adj m p 0.04 2.36 0 0.54 +tournoyer tournoyer ver 1.26 14.8 0.27 3.65 inf; +tournoyèrent tournoyer ver 1.26 14.8 0 0.14 ind:pas:3p; +tournoyé tournoyer ver m s 1.26 14.8 0.02 0.14 par:pas; +tournure tournure nom f s 3 8.24 2.82 6.42 +tournures tournure nom f p 3 8.24 0.18 1.82 +tournâmes tourner ver 204.15 377.09 0 0.41 ind:pas:1p; +tournât tourner ver 204.15 377.09 0.01 0.54 sub:imp:3s; +tournèrent tourner ver 204.15 377.09 0.08 4.59 ind:pas:3p; +tourné tourner ver m s 204.15 377.09 24.84 38.78 par:pas; +tournée tournée nom f s 20.57 23.85 18.64 18.72 +tournées tournée nom f p 20.57 23.85 1.93 5.14 +tournés tourner ver m p 204.15 377.09 1.17 4.46 par:pas; +tours tour nom p 193.82 308.72 18.26 28.45 +tours_minute tours_minute nom p 0 0.07 0 0.07 +tourte tourte nom f s 1.15 0.74 1.03 0.54 +tourteau tourteau nom m s 0.01 0.81 0 0.27 +tourteaux tourteau nom m p 0.01 0.81 0.01 0.54 +tourtereau tourtereau nom m s 2.38 2.5 0.13 0 +tourtereaux tourtereau nom m p 2.38 2.5 1.59 0.61 +tourterelle tourtereau nom f s 2.38 2.5 0.28 1.01 +tourterelles tourtereau nom f p 2.38 2.5 0.39 0.88 +tourtes tourte nom f p 1.15 0.74 0.12 0.2 +tourtière tourtière nom f s 0.03 0.07 0.02 0 +tourtières tourtière nom f p 0.03 0.07 0.01 0.07 +tous tous pro_ind m p 376.64 238.72 376.64 238.72 +tous_terrains tous_terrains adj m p 0 0.07 0 0.07 +toussa tousser ver 9.28 23.18 0 5.34 ind:pas:3s; +toussai tousser ver 9.28 23.18 0 0.07 ind:pas:1s; +toussaient tousser ver 9.28 23.18 0.11 0.34 ind:imp:3p; +toussaint toussaint nom f s 0.54 0.27 0.54 0.27 +toussais tousser ver 9.28 23.18 0.16 0.07 ind:imp:1s;ind:imp:2s; +toussait tousser ver 9.28 23.18 0.35 3.65 ind:imp:3s; +toussant tousser ver 9.28 23.18 0.08 0.95 par:pre; +tousse tousser ver 9.28 23.18 4.89 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +toussent tousser ver 9.28 23.18 0.33 0.2 ind:pre:3p; +tousser tousser ver 9.28 23.18 1.84 5.81 inf; +toussera tousser ver 9.28 23.18 0.03 0.07 ind:fut:3s; +tousserait tousser ver 9.28 23.18 0 0.27 cnd:pre:3s; +tousses tousser ver 9.28 23.18 0.27 0.14 ind:pre:2s; +tousseur tousseur adj m s 0.01 0.2 0 0.14 +tousseurs tousseur adj m p 0.01 0.2 0.01 0.07 +tousseux tousseux adj m 0 0.07 0 0.07 +toussez tousser ver 9.28 23.18 0.51 0.2 imp:pre:2p;ind:pre:2p; +toussions tousser ver 9.28 23.18 0 0.07 ind:imp:1p; +toussons tousser ver 9.28 23.18 0.01 0.14 imp:pre:1p;ind:pre:1p; +toussota toussoter ver 0.14 5.14 0 2.43 ind:pas:3s; +toussotai toussoter ver 0.14 5.14 0 0.07 ind:pas:1s; +toussotaient toussoter ver 0.14 5.14 0 0.07 ind:imp:3p; +toussotait toussoter ver 0.14 5.14 0 0.54 ind:imp:3s; +toussotant toussoter ver 0.14 5.14 0 0.47 par:pre; +toussote toussoter ver 0.14 5.14 0 0.95 ind:pre:1s;ind:pre:3s; +toussotement toussotement nom m s 0.01 0.68 0.01 0.41 +toussotements toussotement nom m p 0.01 0.68 0 0.27 +toussotent toussoter ver 0.14 5.14 0 0.07 ind:pre:3p; +toussoter toussoter ver 0.14 5.14 0.01 0.34 inf; +toussoteux toussoteux adj m p 0 0.07 0 0.07 +toussotiez toussoter ver 0.14 5.14 0 0.07 ind:imp:2p; +toussoté toussoter ver m s 0.14 5.14 0.14 0.14 par:pas; +toussé tousser ver m s 9.28 23.18 0.7 1.15 par:pas; +tout tout pro_ind m s 1366.45 838.04 1366.45 838.04 +tout_fait tout_fait adj_ind m s 0.14 0 0.11 0 +tout_fou tout_fou adj m s 0.01 0 0.01 0 +tout_paris tout_paris nom m 0.16 1.01 0.16 1.01 +tout_petit tout_petit nom m s 0.2 0.74 0.03 0.34 +tout_petit tout_petit nom m p 0.2 0.74 0.17 0.41 +tout_puissant tout_puissant adj m s 7.23 3.78 5.7 2.09 +tout_puissant tout_puissant adj m p 7.23 3.78 0.17 0.41 +tout_terrain tout_terrain nom m s 0.28 0 0.28 0 +tout_venant tout_venant nom m 0.05 0.74 0.05 0.74 +tout_à_l_égout tout_à_l_égout nom m 0 0.47 0 0.47 +tout_étoile tout_étoile nom m s 0.01 0 0.01 0 +toute toute adj_ind f s 118.32 194.26 118.32 194.26 +toute_puissance toute_puissance nom f 0.08 2.03 0.08 2.03 +tout_puissant tout_puissant adj f s 7.23 3.78 1.35 1.15 +toutefois toutefois adv_sup 5.37 35.47 5.37 35.47 +toutes toutes pro_ind f p 20.86 24.19 20.86 24.19 +tout_puissant tout_puissant adj f p 7.23 3.78 0.01 0.14 +toutim toutim nom m s 0.31 0.88 0.31 0.88 +toutime toutime nom m s 0 0.74 0 0.74 +toutou toutou nom m s 6.06 1.89 5.65 1.55 +toutous toutou nom m p 6.06 1.89 0.41 0.34 +touts tout nom_sup m p 330.7 281.01 0.1 0 +toux toux nom f 4.94 12.23 4.94 12.23 +toué touer ver m s 0.02 0.14 0 0.07 par:pas; +toxicité toxicité nom f s 0.34 0.2 0.34 0.2 +toxico toxico nom s 1.33 0.88 1.14 0.2 +toxicologie toxicologie nom f s 0.61 0 0.61 0 +toxicologique toxicologique adj s 0.93 0 0.93 0 +toxicologue toxicologue nom s 0.06 0 0.04 0 +toxicologues toxicologue nom p 0.06 0 0.01 0 +toxicomane toxicomane nom s 1.67 0.54 1.16 0.07 +toxicomanes toxicomane nom p 1.67 0.54 0.51 0.47 +toxicomanie toxicomanie nom f s 0.21 0 0.21 0 +toxicos toxico nom p 1.33 0.88 0.19 0.68 +toxine toxine nom f s 2.29 0.07 0.9 0 +toxines toxine nom f p 2.29 0.07 1.39 0.07 +toxique toxique adj s 5.2 0.74 3 0.34 +toxiques toxique adj p 5.2 0.74 2.2 0.41 +toxoplasmose toxoplasmose nom f s 0.07 0.2 0.07 0.2 +trabans traban nom m p 0 0.07 0 0.07 +traboules traboule nom f p 0.14 0.07 0.14 0.07 +trabuco trabuco nom m s 0.02 0.14 0.02 0.14 +trac trac nom m s 5.17 8.38 4.91 8.24 +tracas tracas nom m 1.43 4.46 1.43 4.46 +tracassa tracasser ver 10.37 5.88 0 0.07 ind:pas:3s; +tracassaient tracasser ver 10.37 5.88 0.03 0.14 ind:imp:3p; +tracassait tracasser ver 10.37 5.88 0.47 1.42 ind:imp:3s; +tracassant tracasser ver 10.37 5.88 0 0.14 par:pre; +tracasse tracasser ver 10.37 5.88 7.15 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tracassent tracasser ver 10.37 5.88 0.27 0.2 ind:pre:3p; +tracasser tracasser ver 10.37 5.88 0.56 0.68 inf; +tracassera tracasser ver 10.37 5.88 0.02 0 ind:fut:3s; +tracasserais tracasser ver 10.37 5.88 0.02 0 cnd:pre:1s; +tracasserait tracasser ver 10.37 5.88 0.03 0.07 cnd:pre:3s; +tracasserie tracasserie nom f s 0.34 0.95 0.01 0.07 +tracasseries tracasserie nom f p 0.34 0.95 0.33 0.88 +tracasserons tracasser ver 10.37 5.88 0.01 0 ind:fut:1p; +tracasses tracasser ver 10.37 5.88 0.47 0.07 ind:pre:2s; +tracassez tracasser ver 10.37 5.88 0.83 0.61 imp:pre:2p;ind:pre:2p; +tracassier tracassier adj m s 0.1 0.27 0.1 0.2 +tracassin tracassin nom m s 0 0.27 0 0.27 +tracassière tracassier nom f s 0 0.07 0 0.07 +tracassières tracassier adj f p 0.1 0.27 0 0.07 +tracassé tracasser ver m s 10.37 5.88 0.45 0.41 par:pas; +tracassée tracasser ver f s 10.37 5.88 0.06 0.27 par:pas; +tracassées tracasser ver f p 10.37 5.88 0 0.07 par:pas; +trace trace nom f s 60.18 80.27 29.2 39.32 +tracent tracer ver 10.49 42.36 0.3 1.42 ind:pre:3p; +tracer tracer ver 10.49 42.36 2.08 7.23 inf; +tracera tracer ver 10.49 42.36 0.01 0.07 ind:fut:3s; +tracerez tracer ver 10.49 42.36 0.01 0 ind:fut:2p; +tracerons tracer ver 10.49 42.36 0.01 0 ind:fut:1p; +traces trace nom f p 60.18 80.27 30.98 40.95 +traceur traceur nom m s 0.59 0 0.52 0 +traceurs traceur nom m p 0.59 0 0.08 0 +traceuse traceur adj f s 0.11 0.2 0.01 0 +traceuses traceur adj f p 0.11 0.2 0 0.2 +tracez tracer ver 10.49 42.36 0.26 0.14 imp:pre:2p;ind:pre:2p; +trachome trachome nom m s 0.02 0.07 0.02 0.07 +trachéal trachéal adj m s 0.09 0 0.05 0 +trachéale trachéal adj f s 0.09 0 0.04 0 +trachée trachée nom f s 0.97 0.41 0.97 0.34 +trachée_artère trachée_artère nom f s 0.02 0.2 0.02 0.2 +trachées trachée nom f p 0.97 0.41 0 0.07 +trachéite trachéite nom f s 0 0.07 0 0.07 +trachéotomie trachéotomie nom f s 0.35 0.14 0.35 0.14 +tracions tracer ver 10.49 42.36 0 0.07 ind:imp:1p; +tracs trac nom m p 5.17 8.38 0.26 0.14 +tract tract nom m s 3.67 9.39 0.41 2.5 +tractage tractage nom m s 0.01 0 0.01 0 +tractait tracter ver 0.27 0.41 0.01 0.07 ind:imp:3s; +tractant tracter ver 0.27 0.41 0.01 0.07 par:pre; +tractation tractation nom f s 0.12 1.96 0.01 0.27 +tractations tractation nom f p 0.12 1.96 0.11 1.69 +tracter tracter ver 0.27 0.41 0.23 0.14 inf; +tracteur tracteur nom m s 3.86 6.82 2.87 5.27 +tracteurs tracteur nom m p 3.86 6.82 0.99 1.55 +traction traction nom f s 1.19 8.31 1.06 7.43 +traction_avant traction_avant nom f s 0 0.07 0 0.07 +tractions traction nom f p 1.19 8.31 0.13 0.88 +tractopelle tractopelle nom f s 0.24 0 0.24 0 +tractoriste tractoriste nom s 0.1 0.2 0.1 0.07 +tractoristes tractoriste nom p 0.1 0.2 0 0.14 +tracts tract nom m p 3.67 9.39 3.26 6.89 +tractus tractus nom m 0.12 0.2 0.12 0.2 +tracté tracté adj m s 0.04 0.2 0.04 0.14 +tractée tracter ver f s 0.27 0.41 0 0.07 par:pas; +tractés tracté adj m p 0.04 0.2 0 0.07 +tracèrent tracer ver 10.49 42.36 0 0.14 ind:pas:3p; +tracé tracer ver m s 10.49 42.36 2.22 7.3 par:pas; +tracée tracer ver f s 10.49 42.36 1.13 3.24 par:pas; +tracées tracer ver f p 10.49 42.36 0.28 3.31 par:pas; +tracés tracer ver m p 10.49 42.36 0.4 3.51 par:pas; +trader trader nom m s 0.33 0 0.33 0 +tradition tradition nom f s 20.56 33.92 15.68 23.38 +traditionalisme traditionalisme nom m s 0.11 0.54 0.11 0.54 +traditionaliste traditionaliste adj s 0.07 0.41 0.07 0.41 +traditionalistes traditionaliste nom p 0.09 0.61 0.04 0.41 +traditionnel traditionnel adj m s 6.85 15.2 2.66 5.47 +traditionnelle traditionnel adj f s 6.85 15.2 2.72 5.14 +traditionnellement traditionnellement adv 0.34 3.24 0.34 3.24 +traditionnelles traditionnel adj f p 6.85 15.2 0.75 2.43 +traditionnels traditionnel adj m p 6.85 15.2 0.71 2.16 +traditions tradition nom f p 20.56 33.92 4.87 10.54 +traduc traduc nom f s 0.17 0 0.17 0 +traducteur traducteur nom m s 4.42 3.51 2.95 2.09 +traducteurs traducteur nom m p 4.42 3.51 0.85 0.88 +traduction traduction nom f s 5.24 11.15 4.7 8.45 +traductions traduction nom f p 5.24 11.15 0.55 2.7 +traductrice traducteur nom f s 4.42 3.51 0.6 0.41 +traductrices traducteur nom f p 4.42 3.51 0.01 0.14 +traduira traduire ver 15.41 34.32 0.25 0.14 ind:fut:3s; +traduirai traduire ver 15.41 34.32 0.09 0.07 ind:fut:1s; +traduiraient traduire ver 15.41 34.32 0 0.14 cnd:pre:3p; +traduirais traduire ver 15.41 34.32 0.25 0 cnd:pre:1s; +traduirait traduire ver 15.41 34.32 0.01 0.14 cnd:pre:3s; +traduire traduire ver 15.41 34.32 5.27 11.01 inf; +traduirez traduire ver 15.41 34.32 0.23 0.07 ind:fut:2p; +traduis traduire ver 15.41 34.32 2.17 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s; +traduisaient traduire ver 15.41 34.32 0.01 0.74 ind:imp:3p; +traduisais traduire ver 15.41 34.32 0.16 0.47 ind:imp:1s;ind:imp:2s; +traduisait traduire ver 15.41 34.32 0.15 4.86 ind:imp:3s; +traduisant traduire ver 15.41 34.32 0.14 1.08 par:pre; +traduise traduire ver 15.41 34.32 0.21 0.14 sub:pre:1s;sub:pre:3s; +traduisent traduire ver 15.41 34.32 0.23 0.95 ind:pre:3p; +traduises traduire ver 15.41 34.32 0.03 0 sub:pre:2s; +traduisez traduire ver 15.41 34.32 0.99 0.2 imp:pre:2p;ind:pre:2p; +traduisibles traduisible adj f p 0.01 0.14 0.01 0.14 +traduisions traduire ver 15.41 34.32 0.01 0 ind:imp:1p; +traduisis traduire ver 15.41 34.32 0 0.47 ind:pas:1s; +traduisit traduire ver 15.41 34.32 0.01 1.69 ind:pas:3s; +traduisons traduire ver 15.41 34.32 0 0.07 imp:pre:1p; +traduisît traduire ver 15.41 34.32 0 0.07 sub:imp:3s; +traduit traduire ver m s 15.41 34.32 4.3 8.24 ind:pre:3s;par:pas; +traduite traduire ver f s 15.41 34.32 0.25 0.81 par:pas; +traduites traduire ver f p 15.41 34.32 0.06 0.68 par:pas; +traduits traduire ver m p 15.41 34.32 0.59 1.08 par:pas; +trafalgar trafalgar nom s 0 0.2 0 0.2 +trafic trafic nom m s 14.02 10.27 13.24 8.65 +traficotaient traficoter ver 0.49 0.47 0 0.07 ind:imp:3p; +traficotait traficoter ver 0.49 0.47 0.16 0.14 ind:imp:3s; +traficote traficoter ver 0.49 0.47 0.13 0.07 ind:pre:3s; +traficoter traficoter ver 0.49 0.47 0.11 0.14 inf; +traficotes traficoter ver 0.49 0.47 0.06 0 ind:pre:2s; +traficoteurs traficoteur nom m p 0 0.07 0 0.07 +traficotez traficoter ver 0.49 0.47 0.01 0 ind:pre:2p; +traficoté traficoter ver m s 0.49 0.47 0.02 0.07 par:pas; +trafics trafic nom m p 14.02 10.27 0.78 1.62 +trafiquaient trafiquer ver 7.25 3.78 0.07 0.2 ind:imp:3p; +trafiquais trafiquer ver 7.25 3.78 0.31 0 ind:imp:1s;ind:imp:2s; +trafiquait trafiquer ver 7.25 3.78 0.29 0.27 ind:imp:3s; +trafiquant trafiquant nom m s 5.41 3.38 2.65 1.28 +trafiquant_espion trafiquant_espion nom m s 0 0.07 0 0.07 +trafiquante trafiquant nom f s 5.41 3.38 0.04 0 +trafiquants trafiquant nom m p 5.41 3.38 2.72 2.09 +trafique trafiquer ver 7.25 3.78 1.06 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trafiquent trafiquer ver 7.25 3.78 0.13 0.34 ind:pre:3p; +trafiquer trafiquer ver 7.25 3.78 1.08 1.01 inf; +trafiquerais trafiquer ver 7.25 3.78 0.01 0 cnd:pre:1s; +trafiques trafiquer ver 7.25 3.78 0.34 0.07 ind:pre:2s; +trafiquez trafiquer ver 7.25 3.78 0.31 0.07 imp:pre:2p;ind:pre:2p; +trafiquions trafiquer ver 7.25 3.78 0 0.07 ind:imp:1p; +trafiqué trafiquer ver m s 7.25 3.78 1.83 0.54 par:pas; +trafiquée trafiquer ver f s 7.25 3.78 0.46 0.34 par:pas; +trafiquées trafiquer ver f p 7.25 3.78 0.53 0.07 par:pas; +trafiqués trafiquer ver m p 7.25 3.78 0.25 0.07 par:pas; +tragi_comique tragi_comique adj f s 0 0.47 0 0.34 +tragi_comique tragi_comique adj m p 0 0.47 0 0.14 +tragi_comédie tragi_comédie nom f s 0 0.27 0 0.14 +tragi_comédie tragi_comédie nom f p 0 0.27 0 0.14 +tragicomédies tragicomédie nom f p 0.01 0 0.01 0 +tragique tragique adj s 12.13 22.5 10.55 17.97 +tragiquement tragiquement adv 0.58 1.96 0.58 1.96 +tragiques tragique adj p 12.13 22.5 1.59 4.53 +tragédie tragédie nom f s 15.59 14.46 14.23 10.88 +tragédien tragédien nom m s 0.53 1.15 0.07 0.2 +tragédienne tragédien nom f s 0.53 1.15 0.25 0.54 +tragédiennes tragédien nom f p 0.53 1.15 0.01 0.07 +tragédiens tragédien nom m p 0.53 1.15 0.2 0.34 +tragédies tragédie nom f p 15.59 14.46 1.36 3.58 +trahi trahir ver m s 46.83 41.55 16.18 8.11 par:pas; +trahie trahir ver f s 46.83 41.55 2.35 2.97 par:pas; +trahies trahir ver f p 46.83 41.55 0.17 0.14 par:pas; +trahir trahir ver 46.83 41.55 10.16 11.01 inf; +trahira trahir ver 46.83 41.55 1.38 0.34 ind:fut:3s; +trahirai trahir ver 46.83 41.55 0.97 0.07 ind:fut:1s; +trahiraient trahir ver 46.83 41.55 0.07 0.2 cnd:pre:3p; +trahirais trahir ver 46.83 41.55 0.4 0.07 cnd:pre:1s;cnd:pre:2s; +trahirait trahir ver 46.83 41.55 0.77 0.34 cnd:pre:3s; +trahiras trahir ver 46.83 41.55 0.09 0.07 ind:fut:2s; +trahirent trahir ver 46.83 41.55 0 0.2 ind:pas:3p; +trahirez trahir ver 46.83 41.55 0.07 0.14 ind:fut:2p; +trahiriez trahir ver 46.83 41.55 0.05 0 cnd:pre:2p; +trahirons trahir ver 46.83 41.55 0.01 0 ind:fut:1p; +trahiront trahir ver 46.83 41.55 0.1 0.41 ind:fut:3p; +trahis trahir ver m p 46.83 41.55 5.92 2.91 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +trahison trahison nom f s 18.61 18.51 16.74 15.27 +trahisons trahison nom f p 18.61 18.51 1.88 3.24 +trahissaient trahir ver 46.83 41.55 0.26 1.55 ind:imp:3p; +trahissais trahir ver 46.83 41.55 0.06 0.34 ind:imp:1s;ind:imp:2s; +trahissait trahir ver 46.83 41.55 0.16 4.59 ind:imp:3s; +trahissant trahir ver 46.83 41.55 0.5 0.95 par:pre; +trahisse trahir ver 46.83 41.55 0.45 0.74 sub:pre:1s;sub:pre:3s; +trahissent trahir ver 46.83 41.55 1.5 1.62 ind:pre:3p; +trahissez trahir ver 46.83 41.55 1.07 0.27 imp:pre:2p;ind:pre:2p; +trahissiez trahir ver 46.83 41.55 0.28 0 ind:imp:2p; +trahissions trahir ver 46.83 41.55 0.01 0 ind:imp:1p; +trahissons trahir ver 46.83 41.55 0.01 0 imp:pre:1p; +trahit trahir ver 46.83 41.55 3.85 4.53 ind:pre:3s;ind:pas:3s; +traie traire ver 3.69 4.59 0.27 0 sub:pre:1s; +train train nom m s 255.28 288.65 244.4 271.28 +train_train train_train nom m 0.69 1.62 0.69 1.62 +trainglots trainglot nom m p 0 0.07 0 0.07 +training training nom m s 0.02 0.07 0.02 0.07 +trains train nom m p 255.28 288.65 10.88 17.36 +traintrain traintrain nom m 0 0.14 0 0.14 +traira traire ver 3.69 4.59 0.01 0 ind:fut:3s; +trairait traire ver 3.69 4.59 0.01 0.07 cnd:pre:3s; +traire traire ver 3.69 4.59 1.8 1.82 inf; +trais traire ver 3.69 4.59 0.35 0 ind:pre:1s;ind:pre:2s; +trait trait nom m s 15.86 97.3 7.83 37.91 +traita traiter ver 104.04 69.93 0.38 2.43 ind:pas:3s; +traitable traitable adj m s 0.05 0.14 0.05 0.07 +traitables traitable adj p 0.05 0.14 0 0.07 +traitai traiter ver 104.04 69.93 0 0.47 ind:pas:1s; +traitaient traiter ver 104.04 69.93 0.67 2.91 ind:imp:3p; +traitais traiter ver 104.04 69.93 0.81 0.47 ind:imp:1s;ind:imp:2s; +traitait traiter ver 104.04 69.93 2.74 10.34 ind:imp:3s; +traitant traiter ver 104.04 69.93 1.3 3.18 par:pre; +traitante traitant adj f s 0.34 0.41 0 0.07 +traitants traitant adj m p 0.34 0.41 0.01 0.07 +traitassent traiter ver 104.04 69.93 0 0.07 sub:imp:3p; +traite traiter ver 104.04 69.93 24.08 8.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +traitement traitement nom m s 29.23 14.66 25.44 11.08 +traitements traitement nom m p 29.23 14.66 3.79 3.58 +traitent traiter ver 104.04 69.93 3.95 1.15 ind:pre:3p;sub:pre:3p; +traiter traiter ver 104.04 69.93 25.23 20.27 inf;; +traitera traiter ver 104.04 69.93 1.15 0.27 ind:fut:3s; +traiterai traiter ver 104.04 69.93 0.51 0.14 ind:fut:1s; +traiteraient traiter ver 104.04 69.93 0.09 0.14 cnd:pre:3p; +traiterais traiter ver 104.04 69.93 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +traiterait traiter ver 104.04 69.93 0.39 0.81 cnd:pre:3s; +traiteras traiter ver 104.04 69.93 0.25 0 ind:fut:2s; +traiterez traiter ver 104.04 69.93 0.32 0 ind:fut:2p; +traiteriez traiter ver 104.04 69.93 0.1 0 cnd:pre:2p; +traiterons traiter ver 104.04 69.93 0.2 0 ind:fut:1p; +traiteront traiter ver 104.04 69.93 0.49 0.27 ind:fut:3p; +traites traiter ver 104.04 69.93 6.84 0.14 ind:pre:2s;sub:pre:2s; +traiteur traiteur nom m s 4.07 1.62 3.45 1.35 +traiteurs traiteur nom m p 4.07 1.62 0.62 0.27 +traitez traiter ver 104.04 69.93 6.09 0.74 imp:pre:2p;ind:pre:2p; +traitiez traiter ver 104.04 69.93 0.4 0.07 ind:imp:2p;sub:pre:2p; +traitions traiter ver 104.04 69.93 0.05 0.54 ind:imp:1p; +traitons traiter ver 104.04 69.93 1.16 0.14 imp:pre:1p;ind:pre:1p; +traits trait nom m p 15.86 97.3 8.03 59.39 +traitât traiter ver 104.04 69.93 0 0.54 sub:imp:3s; +traitèrent traiter ver 104.04 69.93 0.1 0.2 ind:pas:3p; +traité traiter ver m s 104.04 69.93 15.51 7.84 par:pas; +traitée traiter ver f s 104.04 69.93 6.87 3.99 par:pas; +traitées traiter ver f p 104.04 69.93 0.78 0.74 par:pas; +traités traiter ver m p 104.04 69.93 3.41 3.92 par:pas; +trajectographie trajectographie nom f s 0.02 0 0.02 0 +trajectoire trajectoire nom f s 5.9 6.42 5.53 5.54 +trajectoires trajectoire nom f p 5.9 6.42 0.37 0.88 +trajet trajet nom m s 7.74 16.69 7.23 14.66 +trajets trajet nom m p 7.74 16.69 0.51 2.03 +tralala tralala nom m s 1.1 1.55 1.09 1.28 +tralalas tralala nom m p 1.1 1.55 0.01 0.27 +tram tram nom m s 5.73 2.3 5.51 1.69 +tramaient tramer ver 3.06 3.31 0.01 0.54 ind:imp:3p; +tramail tramail nom m s 0 0.27 0 0.2 +tramails tramail nom m p 0 0.27 0 0.07 +tramait tramer ver 3.06 3.31 0.16 0.88 ind:imp:3s; +tramant tramer ver 3.06 3.31 0 0.27 par:pre; +trame tramer ver 3.06 3.31 2.36 1.08 ind:pre:1s;ind:pre:3s; +trament tramer ver 3.06 3.31 0.1 0 ind:pre:3p; +tramer tramer ver 3.06 3.31 0.32 0.07 inf; +trames trame nom f p 0.75 5.41 0.32 0.14 +tramez tramer ver 3.06 3.31 0.03 0 imp:pre:2p;ind:pre:2p; +tramontane tramontane nom f s 0.14 0.34 0.14 0.27 +tramontanes tramontane nom f p 0.14 0.34 0 0.07 +tramp tramp nom m s 0.04 0 0.04 0 +trampoline trampoline nom s 1.17 0.14 1.17 0.14 +trams tram nom m p 5.73 2.3 0.22 0.61 +tramway tramway nom m s 0.17 7.64 0.17 5.54 +tramways tramway nom m p 0.17 7.64 0 2.09 +tramé tramer ver m s 3.06 3.31 0.06 0.41 par:pas; +tramés tramer ver m p 3.06 3.31 0 0.07 par:pas; +trancha trancher ver 11.97 24.73 0.02 4.39 ind:pas:3s; +tranchage tranchage nom m s 0.01 0.07 0.01 0.07 +tranchai trancher ver 11.97 24.73 0.01 0.07 ind:pas:1s; +tranchaient trancher ver 11.97 24.73 0.01 0.95 ind:imp:3p; +tranchais trancher ver 11.97 24.73 0.23 0 ind:imp:1s; +tranchait trancher ver 11.97 24.73 0.05 2.43 ind:imp:3s; +tranchant tranchant adj m s 2.54 5.27 1.49 2.43 +tranchante tranchant adj f s 2.54 5.27 0.62 1.96 +tranchantes tranchant adj f p 2.54 5.27 0.23 0.41 +tranchants tranchant adj m p 2.54 5.27 0.2 0.47 +tranche tranche nom f s 6.95 21.82 5.28 11.08 +tranche_montagne tranche_montagne nom m s 0.28 0.07 0.28 0.07 +tranchecaille tranchecaille nom f s 0 0.07 0 0.07 +tranchelards tranchelard nom m p 0 0.07 0 0.07 +tranchent trancher ver 11.97 24.73 0.18 0.81 ind:pre:3p; +trancher trancher ver 11.97 24.73 3.88 5.07 inf; +tranchera trancher ver 11.97 24.73 0.26 0.14 ind:fut:3s; +trancherai trancher ver 11.97 24.73 0.23 0.2 ind:fut:1s; +trancherais trancher ver 11.97 24.73 0.11 0 cnd:pre:1s;cnd:pre:2s; +trancherait trancher ver 11.97 24.73 0.17 0.27 cnd:pre:3s; +trancheras trancher ver 11.97 24.73 0.16 0 ind:fut:2s; +trancheront trancher ver 11.97 24.73 0.06 0 ind:fut:3p; +tranches tranche nom f p 6.95 21.82 1.68 10.74 +tranchet tranchet nom m s 0 0.27 0 0.2 +tranchets tranchet nom m p 0 0.27 0 0.07 +trancheur trancheur nom m s 0.19 0 0.15 0 +trancheuse trancheur nom f s 0.19 0 0.04 0 +tranchez trancher ver 11.97 24.73 0.24 0 imp:pre:2p; +tranchiez trancher ver 11.97 24.73 0.01 0 ind:imp:2p; +tranchoir tranchoir nom m s 0.03 0.34 0.01 0.14 +tranchoirs tranchoir nom m p 0.03 0.34 0.01 0.2 +tranchons trancher ver 11.97 24.73 0.06 0.14 imp:pre:1p;ind:pre:1p; +tranchât trancher ver 11.97 24.73 0 0.14 sub:imp:3s; +tranchèrent trancher ver 11.97 24.73 0.03 0 ind:pas:3p; +tranché trancher ver m s 11.97 24.73 2.51 2.91 par:pas; +tranchée tranchée nom f s 6.22 33.72 3.7 21.55 +tranchée_abri tranchée_abri nom f s 0 0.81 0 0.74 +tranchées tranchée nom f p 6.22 33.72 2.52 12.16 +tranchée_abri tranchée_abri nom f p 0 0.81 0 0.07 +tranchés tranché adj m p 2.13 3.72 0.05 0.34 +tranquille tranquille adj s 119.69 91.96 103.28 77.5 +tranquillement tranquillement adv 13.26 26.82 13.26 26.82 +tranquilles tranquille adj p 119.69 91.96 16.41 14.46 +tranquillisa tranquilliser ver 1.22 2.09 0 0.07 ind:pas:3s; +tranquillisai tranquilliser ver 1.22 2.09 0.01 0.07 ind:pas:1s; +tranquillisaient tranquilliser ver 1.22 2.09 0 0.07 ind:imp:3p; +tranquillisait tranquilliser ver 1.22 2.09 0.01 0.34 ind:imp:3s; +tranquillisant tranquillisant nom m s 2.33 1.01 0.86 0.14 +tranquillisante tranquillisant adj f s 0.51 0.2 0.17 0.07 +tranquillisantes tranquillisant adj f p 0.51 0.2 0.06 0 +tranquillisants tranquillisant nom m p 2.33 1.01 1.46 0.88 +tranquillise tranquilliser ver 1.22 2.09 0.31 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tranquillisent tranquilliser ver 1.22 2.09 0.01 0.07 ind:pre:3p; +tranquilliser tranquilliser ver 1.22 2.09 0.65 0.2 inf; +tranquillisera tranquilliser ver 1.22 2.09 0.11 0 ind:fut:3s; +tranquilliserait tranquilliser ver 1.22 2.09 0.01 0.07 cnd:pre:3s; +tranquillises tranquilliser ver 1.22 2.09 0.01 0.07 ind:pre:2s; +tranquillisez tranquilliser ver 1.22 2.09 0.01 0.14 imp:pre:2p;ind:pre:2p; +tranquillisé tranquilliser ver m s 1.22 2.09 0.03 0.14 par:pas; +tranquillisée tranquilliser ver f s 1.22 2.09 0.03 0.47 par:pas; +tranquillisés tranquilliser ver m p 1.22 2.09 0 0.14 par:pas; +tranquillité tranquillité nom f s 4.68 11.01 4.68 10.81 +tranquillités tranquillité nom f p 4.68 11.01 0 0.2 +tranquillos tranquillos adv 0 0.81 0 0.81 +trans trans adv 0.16 0 0.16 0 +transaction transaction nom f s 4.47 1.28 3.26 0.34 +transactionnelle transactionnel adj f s 0 0.07 0 0.07 +transactions transaction nom f p 4.47 1.28 1.21 0.95 +transafricain transafricain adj m s 0 0.07 0 0.07 +transalpines transalpin adj f p 0 0.07 0 0.07 +transamazonienne transamazonien adj f s 0 0.14 0 0.14 +transaminase transaminase nom f s 0.03 0.07 0.01 0 +transaminases transaminase nom f p 0.03 0.07 0.01 0.07 +transat transat nom s 0.31 1.49 0.16 0.88 +transatlantique transatlantique nom m s 0.19 2.5 0.19 2.09 +transatlantiques transatlantique adj p 0.12 1.01 0.05 0.34 +transats transat nom p 0.31 1.49 0.15 0.61 +transbahutaient transbahuter ver 0.04 1.42 0 0.07 ind:imp:3p; +transbahutant transbahuter ver 0.04 1.42 0.01 0.34 par:pre; +transbahute transbahuter ver 0.04 1.42 0 0.14 ind:pre:3s; +transbahutent transbahuter ver 0.04 1.42 0 0.07 ind:pre:3p; +transbahuter transbahuter ver 0.04 1.42 0.03 0.27 inf; +transbahutez transbahuter ver 0.04 1.42 0 0.07 ind:pre:2p; +transbahuté transbahuter ver m s 0.04 1.42 0 0.34 par:pas; +transbahutée transbahuter ver f s 0.04 1.42 0 0.07 par:pas; +transbahutés transbahuter ver m p 0.04 1.42 0 0.07 par:pas; +transbordement transbordement nom m s 0.06 0.61 0.06 0.41 +transbordements transbordement nom m p 0.06 0.61 0 0.2 +transborder transborder ver 0.02 0.14 0.01 0.07 inf; +transbordeur transbordeur nom m s 0.04 0.2 0.04 0.2 +transbordé transborder ver m s 0.02 0.14 0.01 0.07 par:pas; +transcanadienne transcanadienne adj f s 0.03 0 0.03 0 +transcaspien transcaspien adj m s 0 0.07 0 0.07 +transcendance transcendance nom f s 0.04 0.61 0.04 0.61 +transcendant transcendant adj m s 0.33 0.68 0.13 0.41 +transcendantal transcendantal adj m s 0.08 0.95 0 0.54 +transcendantale transcendantal adj f s 0.08 0.95 0.08 0.34 +transcendantales transcendantal adj f p 0.08 0.95 0 0.07 +transcendantalistes transcendantaliste nom p 0.01 0.07 0.01 0.07 +transcendante transcendant adj f s 0.33 0.68 0.15 0.27 +transcendantes transcendant adj f p 0.33 0.68 0.03 0 +transcendants transcendant adj m p 0.33 0.68 0.02 0 +transcende transcender ver 2.83 0.61 0.46 0.14 imp:pre:2s;ind:pre:3s; +transcendent transcender ver 2.83 0.61 1.84 0 ind:pre:3p; +transcender transcender ver 2.83 0.61 0.29 0.2 inf; +transcendons transcender ver 2.83 0.61 0.01 0 imp:pre:1p; +transcendé transcender ver m s 2.83 0.61 0.18 0.14 par:pas; +transcendée transcender ver f s 2.83 0.61 0.01 0.07 par:pas; +transcontinental transcontinental adj m s 0.13 0.07 0.09 0.07 +transcontinentale transcontinental adj f s 0.13 0.07 0.05 0 +transcriptase transcriptase nom f s 0.12 0 0.12 0 +transcripteur transcripteur nom m s 0.01 0 0.01 0 +transcription transcription nom f s 1.24 1.15 0.84 1.08 +transcriptions transcription nom f p 1.24 1.15 0.4 0.07 +transcrire transcrire ver 0.71 3.51 0.35 0.88 inf; +transcris transcrire ver 0.71 3.51 0.01 0.41 imp:pre:2s;ind:pre:1s; +transcrit transcrire ver m s 0.71 3.51 0.24 0.61 ind:pre:3s;par:pas; +transcrite transcrire ver f s 0.71 3.51 0.02 0.2 par:pas; +transcrites transcrire ver f p 0.71 3.51 0.01 0.14 par:pas; +transcrits transcrire ver m p 0.71 3.51 0.01 0.27 par:pas; +transcrivaient transcrire ver 0.71 3.51 0 0.07 ind:imp:3p; +transcrivais transcrire ver 0.71 3.51 0.02 0.07 ind:imp:1s; +transcrivait transcrire ver 0.71 3.51 0 0.47 ind:imp:3s; +transcrivant transcrire ver 0.71 3.51 0 0.2 par:pre; +transcrive transcrire ver 0.71 3.51 0.01 0.07 sub:pre:1s; +transcrivez transcrire ver 0.71 3.51 0.03 0 imp:pre:2p;ind:pre:2p; +transcrivis transcrire ver 0.71 3.51 0 0.07 ind:pas:1s; +transcrivit transcrire ver 0.71 3.51 0 0.07 ind:pas:3s; +transcutané transcutané adj m s 0.03 0 0.03 0 +transdermique transdermique adj f s 0.01 0 0.01 0 +transducteur transducteur nom m s 0.06 0 0.04 0 +transducteurs transducteur nom m p 0.06 0 0.02 0 +transduction transduction nom f s 0.03 0 0.03 0 +transe transe nom f s 2.49 5.14 2.41 3.51 +transept transept nom m s 0.01 1.01 0 0.88 +transepts transept nom m p 0.01 1.01 0.01 0.14 +transes transe nom f p 2.49 5.14 0.08 1.62 +transfert transfert nom m s 11.07 3.85 10.14 3.31 +transferts transfert nom m p 11.07 3.85 0.94 0.54 +transfigura transfigurer ver 0.28 5.07 0 0.14 ind:pas:3s; +transfiguraient transfigurer ver 0.28 5.07 0 0.14 ind:imp:3p; +transfigurait transfigurer ver 0.28 5.07 0 1.01 ind:imp:3s; +transfigurant transfigurer ver 0.28 5.07 0.1 0.14 par:pre; +transfiguration transfiguration nom f s 0.25 0.88 0.25 0.81 +transfigurations transfiguration nom f p 0.25 0.88 0 0.07 +transfiguratrice transfigurateur nom f s 0 0.07 0 0.07 +transfigure transfigurer ver 0.28 5.07 0.01 0.47 imp:pre:2s;ind:pre:3s; +transfigurent transfigurer ver 0.28 5.07 0 0.27 ind:pre:3p; +transfigurer transfigurer ver 0.28 5.07 0 0.47 inf; +transfigurerait transfigurer ver 0.28 5.07 0 0.07 cnd:pre:3s; +transfigurez transfigurer ver 0.28 5.07 0.14 0 imp:pre:2p; +transfiguré transfigurer ver m s 0.28 5.07 0.01 1.35 par:pas; +transfigurée transfigurer ver f s 0.28 5.07 0.01 0.61 par:pas; +transfigurées transfigurer ver f p 0.28 5.07 0 0.14 par:pas; +transfigurés transfigurer ver m p 0.28 5.07 0.02 0.27 par:pas; +transfilaient transfiler ver 0 0.14 0 0.07 ind:imp:3p; +transfilée transfiler ver f s 0 0.14 0 0.07 par:pas; +transfo transfo nom m s 0.34 0 0.24 0 +transforma transformer ver 42.15 60.68 0.5 3.11 ind:pas:3s; +transformable transformable adj s 0.01 0.14 0.01 0.14 +transformai transformer ver 42.15 60.68 0.01 0.34 ind:pas:1s; +transformaient transformer ver 42.15 60.68 0.35 2.77 ind:imp:3p; +transformais transformer ver 42.15 60.68 0.13 0.14 ind:imp:1s;ind:imp:2s; +transformait transformer ver 42.15 60.68 0.67 7.36 ind:imp:3s; +transformant transformer ver 42.15 60.68 0.77 1.89 par:pre; +transformas transformer ver 42.15 60.68 0 0.07 ind:pas:2s; +transformateur transformateur nom m s 0.64 0.47 0.43 0.34 +transformateurs transformateur nom m p 0.64 0.47 0.22 0.14 +transformation transformation nom f s 4.48 6.22 3.12 4.39 +transformations transformation nom f p 4.48 6.22 1.36 1.82 +transformatrice transformateur adj f s 0.11 0.14 0.01 0 +transforme transformer ver 42.15 60.68 9.38 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +transforment transformer ver 42.15 60.68 1.76 1.82 ind:pre:3p; +transformer transformer ver 42.15 60.68 11.81 13.99 ind:imp:3s;inf; +transformera transformer ver 42.15 60.68 0.66 0.34 ind:fut:3s; +transformerai transformer ver 42.15 60.68 0.42 0 ind:fut:1s; +transformeraient transformer ver 42.15 60.68 0.05 0.14 cnd:pre:3p; +transformerais transformer ver 42.15 60.68 0.02 0 cnd:pre:1s;cnd:pre:2s; +transformerait transformer ver 42.15 60.68 0.15 0.54 cnd:pre:3s; +transformeras transformer ver 42.15 60.68 0.05 0.07 ind:fut:2s; +transformeriez transformer ver 42.15 60.68 0.04 0 cnd:pre:2p; +transformerons transformer ver 42.15 60.68 0.04 0 ind:fut:1p; +transformeront transformer ver 42.15 60.68 0.34 0.14 ind:fut:3p; +transformes transformer ver 42.15 60.68 0.7 0.14 ind:pre:2s; +transformez transformer ver 42.15 60.68 0.99 0.14 imp:pre:2p;ind:pre:2p; +transformiez transformer ver 42.15 60.68 0.04 0 ind:imp:2p; +transformiste transformiste nom s 0.19 0 0.19 0 +transformons transformer ver 42.15 60.68 0.23 0.07 imp:pre:1p;ind:pre:1p; +transformât transformer ver 42.15 60.68 0 0.34 sub:imp:3s; +transformèrent transformer ver 42.15 60.68 0.03 0.27 ind:pas:3p; +transformé transformer ver m s 42.15 60.68 8.41 10.2 par:pas; +transformée transformer ver f s 42.15 60.68 2.5 6.69 par:pas; +transformées transformer ver f p 42.15 60.68 0.36 1.49 par:pas; +transformés transformer ver m p 42.15 60.68 1.74 1.89 par:pas; +transfos transfo nom m p 0.34 0 0.1 0 +transfuge transfuge nom m s 0.6 1.15 0.41 0.47 +transfuges transfuge nom m p 0.6 1.15 0.2 0.68 +transfusait transfuser ver 0.33 0.54 0.01 0.14 ind:imp:3s; +transfuse transfuser ver 0.33 0.54 0.06 0 imp:pre:2s;ind:pre:3s; +transfuser transfuser ver 0.33 0.54 0.23 0.34 inf; +transfuseur transfuseur nom m s 0.01 0 0.01 0 +transfusion transfusion nom f s 2.37 1.82 2.02 1.42 +transfusions transfusion nom f p 2.37 1.82 0.35 0.41 +transfusé transfuser ver m s 0.33 0.54 0.03 0 par:pas; +transfusée transfusé nom f s 0.01 0 0.01 0 +transfusés transfuser ver m p 0.33 0.54 0 0.07 par:pas; +transfère transférer ver 18.4 5.2 2.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transfèrement transfèrement nom m s 0 0.27 0 0.14 +transfèrements transfèrement nom m p 0 0.27 0 0.14 +transfèrent transférer ver 18.4 5.2 0.34 0 ind:pre:3p; +transféra transférer ver 18.4 5.2 0.02 0 ind:pas:3s; +transférable transférable adj s 0.02 0 0.02 0 +transféraient transférer ver 18.4 5.2 0.01 0.07 ind:imp:3p; +transférais transférer ver 18.4 5.2 0.01 0.07 ind:imp:1s;ind:imp:2s; +transférait transférer ver 18.4 5.2 0.09 0.27 ind:imp:3s; +transférant transférer ver 18.4 5.2 0.09 0.07 par:pre; +transférer transférer ver 18.4 5.2 4.67 0.88 inf; +transférera transférer ver 18.4 5.2 0.05 0 ind:fut:3s; +transférerai transférer ver 18.4 5.2 0.3 0 ind:fut:1s; +transférerait transférer ver 18.4 5.2 0.02 0 cnd:pre:3s; +transféreras transférer ver 18.4 5.2 0.01 0 ind:fut:2s; +transférerez transférer ver 18.4 5.2 0.01 0 ind:fut:2p; +transférerons transférer ver 18.4 5.2 0.11 0 ind:fut:1p; +transféreront transférer ver 18.4 5.2 0.05 0 ind:fut:3p; +transférez transférer ver 18.4 5.2 0.8 0 imp:pre:2p;ind:pre:2p; +transfériez transférer ver 18.4 5.2 0.03 0 ind:imp:2p; +transférons transférer ver 18.4 5.2 0.2 0 imp:pre:1p;ind:pre:1p; +transférâmes transférer ver 18.4 5.2 0 0.07 ind:pas:1p; +transférèrent transférer ver 18.4 5.2 0.01 0.07 ind:pas:3p; +transféré transférer ver m s 18.4 5.2 6.51 2.09 par:pas; +transférée transférer ver f s 18.4 5.2 1.69 0.88 par:pas; +transférées transférer ver f p 18.4 5.2 0.28 0.07 par:pas; +transférés transférer ver m p 18.4 5.2 1.03 0.41 par:pas; +transgressait transgresser ver 1.58 1.28 0 0.14 ind:imp:3s; +transgresse transgresser ver 1.58 1.28 0.12 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transgressent transgresser ver 1.58 1.28 0.04 0 ind:pre:3p; +transgresser transgresser ver 1.58 1.28 0.87 0.61 inf; +transgresseur transgresseur nom m s 0.04 0 0.04 0 +transgressez transgresser ver 1.58 1.28 0.14 0 ind:pre:2p; +transgression transgression nom f s 0.95 1.28 0.56 1.08 +transgressions transgression nom f p 0.95 1.28 0.39 0.2 +transgressons transgresser ver 1.58 1.28 0.01 0.07 imp:pre:1p;ind:pre:1p; +transgressé transgresser ver m s 1.58 1.28 0.28 0.27 par:pas; +transgressée transgresser ver f s 1.58 1.28 0.04 0.07 par:pas; +transgressées transgresser ver f p 1.58 1.28 0.07 0.07 par:pas; +transgénique transgénique adj s 0.37 0 0.2 0 +transgéniques transgénique adj p 0.37 0 0.17 0 +transhistorique transhistorique adj s 0 0.07 0 0.07 +transhumait transhumer ver 0.01 0.07 0 0.07 ind:imp:3s; +transhumance transhumance nom f s 0.01 0.14 0.01 0.07 +transhumances transhumance nom f p 0.01 0.14 0 0.07 +transhumant transhumant adj m s 0 0.2 0 0.07 +transhumantes transhumant adj f p 0 0.2 0 0.07 +transhumants transhumant adj m p 0 0.2 0 0.07 +transhumés transhumer ver m p 0.01 0.07 0.01 0 par:pas; +transi transi adj m s 0.53 3.85 0.4 2.43 +transie transi adj f s 0.53 3.85 0.1 0.27 +transies transir ver f p 0.17 2.43 0.02 0.27 par:pas; +transige transiger ver 0.64 1.42 0.08 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transigeait transiger ver 0.64 1.42 0 0.2 ind:imp:3s; +transigeant transiger ver 0.64 1.42 0 0.07 par:pre; +transigent transiger ver 0.64 1.42 0 0.07 ind:pre:3p; +transigeons transiger ver 0.64 1.42 0.02 0 imp:pre:1p; +transiger transiger ver 0.64 1.42 0.46 0.74 inf; +transigera transiger ver 0.64 1.42 0.01 0.07 ind:fut:3s; +transigerai transiger ver 0.64 1.42 0 0.07 ind:fut:1s; +transigé transiger ver m s 0.64 1.42 0.07 0.2 par:pas; +transillumination transillumination nom f s 0.01 0 0.01 0 +transir transir ver 0.17 2.43 0 0.14 inf; +transis transi adj m p 0.53 3.85 0.02 1.01 +transistor transistor nom m s 1 5.07 0.62 3.99 +transistorisées transistorisé adj f p 0.01 0.07 0 0.07 +transistorisés transistorisé adj m p 0.01 0.07 0.01 0 +transistors transistor nom m p 1 5.07 0.38 1.08 +transit transit nom m s 1.64 2.64 1.62 2.5 +transitaient transiter ver 0.44 1.35 0 0.14 ind:imp:3p; +transitaire transitaire adj f s 0.04 0.07 0.04 0 +transitaires transitaire adj p 0.04 0.07 0 0.07 +transitaires transitaire nom p 0 0.07 0 0.07 +transitais transiter ver 0.44 1.35 0 0.07 ind:imp:1s; +transitait transiter ver 0.44 1.35 0 0.2 ind:imp:3s; +transitant transiter ver 0.44 1.35 0 0.14 par:pre; +transite transiter ver 0.44 1.35 0.08 0.07 imp:pre:2s;ind:pre:3s; +transitent transiter ver 0.44 1.35 0.04 0 ind:pre:3p; +transiter transiter ver 0.44 1.35 0.22 0.41 inf; +transitif transitif adj m s 0.04 0.14 0.01 0.14 +transitifs transitif adj m p 0.04 0.14 0.02 0 +transition transition nom f s 3.68 8.78 3.45 7.57 +transitionnel transitionnel adj m s 0.04 0 0.03 0 +transitionnelle transitionnel adj f s 0.04 0 0.01 0 +transitions transition nom f p 3.68 8.78 0.23 1.22 +transitoire transitoire adj s 0.41 1.42 0.39 1.01 +transitoirement transitoirement adv 0.01 0 0.01 0 +transitoires transitoire adj f p 0.41 1.42 0.02 0.41 +transits transit nom m p 1.64 2.64 0.03 0.14 +transité transiter ver m s 0.44 1.35 0.1 0.34 par:pas; +translater translater ver 0.01 0.07 0.01 0 inf; +translates translater ver 0.01 0.07 0 0.07 ind:pre:2s; +translation translation nom f s 0.6 0.47 0.6 0.41 +translations translation nom f p 0.6 0.47 0 0.07 +translocation translocation nom f s 0.01 0 0.01 0 +translucide translucide adj s 0.84 5.88 0.81 4.26 +translucides translucide adj p 0.84 5.88 0.03 1.62 +translucidité translucidité nom f s 0 0.14 0 0.14 +transmet transmettre ver 25.09 24.39 3 2.09 ind:pre:3s; +transmets transmettre ver 25.09 24.39 1.75 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +transmettaient transmettre ver 25.09 24.39 0.03 0.95 ind:imp:3p; +transmettais transmettre ver 25.09 24.39 0.03 0.14 ind:imp:1s; +transmettait transmettre ver 25.09 24.39 0.05 1.89 ind:imp:3s; +transmettant transmettre ver 25.09 24.39 0.32 0.54 par:pre; +transmette transmettre ver 25.09 24.39 0.31 0.27 sub:pre:1s;sub:pre:3s; +transmettent transmettre ver 25.09 24.39 0.75 0.88 ind:pre:3p; +transmetteur transmetteur nom m s 1.83 0 1.62 0 +transmetteurs transmetteur nom m p 1.83 0 0.21 0 +transmettez transmettre ver 25.09 24.39 1.61 0.2 imp:pre:2p;ind:pre:2p; +transmettions transmettre ver 25.09 24.39 0 0.07 ind:imp:1p; +transmettons transmettre ver 25.09 24.39 0.43 0 imp:pre:1p;ind:pre:1p; +transmettra transmettre ver 25.09 24.39 0.74 0.07 ind:fut:3s; +transmettrai transmettre ver 25.09 24.39 1.53 0.2 ind:fut:1s; +transmettrait transmettre ver 25.09 24.39 0.04 0.14 cnd:pre:3s; +transmettras transmettre ver 25.09 24.39 0.07 0.07 ind:fut:2s; +transmettre transmettre ver 25.09 24.39 7.79 7.7 inf; +transmettrez transmettre ver 25.09 24.39 0.12 0.07 ind:fut:2p; +transmettrons transmettre ver 25.09 24.39 0.21 0 ind:fut:1p; +transmettront transmettre ver 25.09 24.39 0.08 0.07 ind:fut:3p; +transmigrait transmigrer ver 0 0.14 0 0.07 ind:imp:3s; +transmigration transmigration nom f s 0.05 0.14 0.05 0.14 +transmigrent transmigrer ver 0 0.14 0 0.07 ind:pre:3p; +transmirent transmettre ver 25.09 24.39 0 0.14 ind:pas:3p; +transmis transmettre ver m 25.09 24.39 5.25 5.27 par:pas; +transmise transmettre ver f s 25.09 24.39 0.61 1.49 par:pas; +transmises transmettre ver f p 25.09 24.39 0.34 1.22 par:pas; +transmissible transmissible adj s 0.39 0.41 0.19 0.34 +transmissibles transmissible adj f p 0.39 0.41 0.2 0.07 +transmission transmission nom f s 9.63 6.55 7.63 3.24 +transmissions transmission nom f p 9.63 6.55 1.99 3.31 +transmit transmettre ver 25.09 24.39 0.04 0.88 ind:pas:3s; +transmuait transmuer ver 0.11 0.54 0 0.07 ind:imp:3s; +transmuer transmuer ver 0.11 0.54 0.11 0 inf; +transmutait transmuter ver 0.16 0.41 0.01 0.14 ind:imp:3s; +transmutant transmuter ver 0.16 0.41 0.01 0 par:pre; +transmutation transmutation nom f s 0.15 1.35 0.1 1.22 +transmutations transmutation nom f p 0.15 1.35 0.05 0.14 +transmute transmuter ver 0.16 0.41 0.01 0.14 ind:pre:1s;ind:pre:3s; +transmutent transmuter ver 0.16 0.41 0 0.07 ind:pre:3p; +transmuter transmuter ver 0.16 0.41 0.01 0 inf; +transmuté transmuter ver m s 0.16 0.41 0.11 0.07 par:pas; +transmué transmuer ver m s 0.11 0.54 0 0.07 par:pas; +transmuée transmuer ver f s 0.11 0.54 0 0.2 par:pas; +transmuées transmuer ver f p 0.11 0.54 0 0.07 par:pas; +transmués transmuer ver m p 0.11 0.54 0 0.14 par:pas; +transnational transnational adj m s 0.02 0 0.01 0 +transnationaux transnational adj m p 0.02 0 0.01 0 +transocéanique transocéanique adj s 0.01 0.07 0.01 0 +transocéaniques transocéanique adj m p 0.01 0.07 0 0.07 +transparaissaient transparaître ver 0.44 3.72 0 0.07 ind:imp:3p; +transparaissait transparaître ver 0.44 3.72 0.01 1.42 ind:imp:3s; +transparaisse transparaître ver 0.44 3.72 0.11 0.07 sub:pre:3s; +transparaissent transparaître ver 0.44 3.72 0 0.34 ind:pre:3p; +transparaît transparaître ver 0.44 3.72 0.13 0.68 ind:pre:3s; +transparaître transparaître ver 0.44 3.72 0.19 1.15 inf; +transparence transparence nom f s 1.64 11.35 1.59 10.68 +transparences transparence nom f p 1.64 11.35 0.05 0.68 +transparent transparent adj m s 5.48 30.81 2.66 11.89 +transparente transparent adj f s 5.48 30.81 1.69 12.23 +transparentes transparent adj f p 5.48 30.81 0.69 3.92 +transparents transparent adj m p 5.48 30.81 0.45 2.77 +transperce transpercer ver 4.42 8.11 0.82 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transpercent transpercer ver 4.42 8.11 0.05 0.41 ind:pre:3p; +transpercer transpercer ver 4.42 8.11 0.73 0.95 inf; +transpercerai transpercer ver 4.42 8.11 0.13 0 ind:fut:1s; +transpercerait transpercer ver 4.42 8.11 0.03 0.07 cnd:pre:3s; +transpercez transpercer ver 4.42 8.11 0.15 0 imp:pre:2p;ind:pre:2p; +transpercèrent transpercer ver 4.42 8.11 0 0.07 ind:pas:3p; +transpercé transpercer ver m s 4.42 8.11 1.63 2.09 par:pas; +transpercée transpercer ver f s 4.42 8.11 0.32 1.08 par:pas; +transpercées transpercer ver f p 4.42 8.11 0.01 0.14 par:pas; +transpercés transpercer ver m p 4.42 8.11 0.06 0.27 par:pas; +transperça transpercer ver 4.42 8.11 0.35 0.54 ind:pas:3s; +transperçaient transpercer ver 4.42 8.11 0.01 0.41 ind:imp:3p; +transperçait transpercer ver 4.42 8.11 0.02 0.61 ind:imp:3s; +transperçant transpercer ver 4.42 8.11 0.1 0.07 par:pre; +transpira transpirer ver 7.75 10.74 0 0.27 ind:pas:3s; +transpiraient transpirer ver 7.75 10.74 0.12 0.47 ind:imp:3p; +transpirais transpirer ver 7.75 10.74 0.1 0.34 ind:imp:1s;ind:imp:2s; +transpirait transpirer ver 7.75 10.74 0.1 3.51 ind:imp:3s; +transpirant transpirer ver 7.75 10.74 0.1 1.01 par:pre; +transpirante transpirant adj f s 0.07 0.61 0 0.07 +transpirants transpirant adj m p 0.07 0.61 0.02 0.07 +transpiration transpiration nom f s 0.75 3.24 0.75 3.24 +transpire transpirer ver 7.75 10.74 2.52 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transpirent transpirer ver 7.75 10.74 0.25 0.27 ind:pre:3p; +transpirer transpirer ver 7.75 10.74 1.94 1.96 inf; +transpirera transpirer ver 7.75 10.74 0.18 0 ind:fut:3s; +transpirerait transpirer ver 7.75 10.74 0 0.07 cnd:pre:3s; +transpires transpirer ver 7.75 10.74 0.84 0.14 ind:pre:2s; +transpirez transpirer ver 7.75 10.74 0.8 0.07 imp:pre:2p;ind:pre:2p; +transpiré transpirer ver m s 7.75 10.74 0.79 0.2 par:pas; +transplantable transplantable adj m s 0 0.07 0 0.07 +transplantait transplanter ver 0.2 1.08 0.01 0.07 ind:imp:3s; +transplantation transplantation nom f s 2.85 0.2 2.04 0.14 +transplantations transplantation nom f p 2.85 0.2 0.81 0.07 +transplante transplanter ver 0.2 1.08 0.03 0.07 ind:pre:3s; +transplanter transplanter ver 0.2 1.08 0.05 0.34 inf; +transplantons transplanter ver 0.2 1.08 0.01 0 ind:pre:1p; +transplants transplant nom m p 0.02 0 0.02 0 +transplanté transplanter ver m s 0.2 1.08 0.04 0.27 par:pas; +transplantée transplanter ver f s 0.2 1.08 0.03 0.27 par:pas; +transplantées transplanté adj f p 0.07 0.34 0 0.07 +transplantés transplanter ver m p 0.2 1.08 0.04 0.07 par:pas; +transpondeur transpondeur nom m s 0.97 0 0.97 0 +transport transport nom m s 20.34 22.16 13.06 14.12 +transporta transporter ver 22.07 40.88 0.22 1.96 ind:pas:3s; +transportable transportable adj s 0.52 0.61 0.41 0.47 +transportables transportable adj m p 0.52 0.61 0.11 0.14 +transportai transporter ver 22.07 40.88 0 0.2 ind:pas:1s; +transportaient transporter ver 22.07 40.88 0.43 1.76 ind:imp:3p; +transportais transporter ver 22.07 40.88 0.21 0.68 ind:imp:1s;ind:imp:2s; +transportait transporter ver 22.07 40.88 1.28 4.86 ind:imp:3s; +transportant transporter ver 22.07 40.88 1.18 1.69 par:pre; +transportation transportation nom f s 0.07 0 0.07 0 +transporte transporter ver 22.07 40.88 3.56 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +transportent transporter ver 22.07 40.88 0.59 1.28 ind:pre:3p;sub:pre:3p; +transporter transporter ver 22.07 40.88 7.32 10.34 ind:pre:2p;inf; +transportera transporter ver 22.07 40.88 0.16 0.34 ind:fut:3s; +transporteraient transporter ver 22.07 40.88 0 0.2 cnd:pre:3p; +transporterais transporter ver 22.07 40.88 0.02 0.07 cnd:pre:1s; +transporterait transporter ver 22.07 40.88 0.01 0.2 cnd:pre:3s; +transporterons transporter ver 22.07 40.88 0 0.07 ind:fut:1p; +transporteur transporteur nom m s 2.46 0.74 2.2 0.41 +transporteurs transporteur nom m p 2.46 0.74 0.26 0.34 +transporteuse transporteur adj f s 0.5 0.2 0.01 0 +transportez transporter ver 22.07 40.88 1.43 0.54 imp:pre:2p;ind:pre:2p; +transportiez transporter ver 22.07 40.88 0.06 0.07 ind:imp:2p; +transportions transporter ver 22.07 40.88 0.04 0.2 ind:imp:1p; +transportons transporter ver 22.07 40.88 0.44 0 imp:pre:1p;ind:pre:1p; +transports transport nom m p 20.34 22.16 7.28 8.04 +transportâmes transporter ver 22.07 40.88 0 0.14 ind:pas:1p; +transportât transporter ver 22.07 40.88 0 0.14 sub:imp:3s; +transportèrent transporter ver 22.07 40.88 0 0.47 ind:pas:3p; +transporté transporter ver m s 22.07 40.88 3.59 6.62 par:pas; +transportée transporter ver f s 22.07 40.88 0.91 3.24 par:pas; +transportées transporter ver f p 22.07 40.88 0.24 1.15 par:pas; +transportés transporter ver m p 22.07 40.88 0.37 1.49 par:pas; +transposable transposable adj m s 0 0.14 0 0.07 +transposables transposable adj m p 0 0.14 0 0.07 +transposaient transposer ver 0.36 3.31 0 0.27 ind:imp:3p; +transposait transposer ver 0.36 3.31 0 0.41 ind:imp:3s; +transposant transposer ver 0.36 3.31 0.01 0.2 par:pre; +transpose transposer ver 0.36 3.31 0 0.41 imp:pre:2s;ind:pre:3s; +transposent transposer ver 0.36 3.31 0 0.07 ind:pre:3p; +transposer transposer ver 0.36 3.31 0.1 0.81 inf; +transposez transposer ver 0.36 3.31 0.02 0.07 imp:pre:2p;ind:pre:2p; +transposition transposition nom f s 0.41 0.61 0.31 0.34 +transpositions transposition nom f p 0.41 0.61 0.1 0.27 +transposon transposon nom m s 0.04 0 0.04 0 +transposons transposer ver 0.36 3.31 0.02 0.14 imp:pre:1p;ind:pre:1p;; +transposé transposer ver m s 0.36 3.31 0.08 0.41 par:pas; +transposée transposer ver f s 0.36 3.31 0.12 0.27 par:pas; +transposés transposer ver m p 0.36 3.31 0.01 0.27 par:pas; +transsaharienne transsaharien adj f s 0 0.07 0 0.07 +transsaharienne transsaharien nom f s 0 0.07 0 0.07 +transsexualisme transsexualisme nom m s 0.01 0 0.01 0 +transsexualité transsexualité nom f s 0.01 0 0.01 0 +transsexuel transsexuel adj m s 0.69 0.14 0.32 0.07 +transsexuelle transsexuel adj f s 0.69 0.14 0.12 0 +transsexuels transsexuel adj m p 0.69 0.14 0.26 0.07 +transsibérien transsibérien nom m s 0.11 0.07 0.11 0.07 +transsibérienne transsibérien adj f s 0.02 0.07 0.02 0.07 +transsubstantiation transsubstantiation nom f s 0.03 0.34 0.03 0.34 +transsudait transsuder ver 0 0.14 0 0.07 ind:imp:3s; +transsudant transsuder ver 0 0.14 0 0.07 par:pre; +transsudat transsudat nom m s 0.03 0 0.03 0 +transuranienne transuranien adj f s 0.01 0 0.01 0 +transvasait transvaser ver 0.31 0.61 0 0.2 ind:imp:3s; +transvase transvaser ver 0.31 0.61 0.14 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transvaser transvaser ver 0.31 0.61 0.06 0.14 inf; +transvasons transvaser ver 0.31 0.61 0.1 0 ind:pre:1p; +transvasèrent transvaser ver 0.31 0.61 0 0.07 ind:pas:3p; +transvasées transvaser ver f p 0.31 0.61 0 0.07 par:pas; +transversal transversal adj m s 0.28 2.7 0.06 0.2 +transversale transversal adj f s 0.28 2.7 0.13 1.62 +transversalement transversalement adv 0.01 0.07 0.01 0.07 +transversales transversal adj f p 0.28 2.7 0.08 0.81 +transversaux transversal adj m p 0.28 2.7 0 0.07 +transverse transverse adj f s 0.08 0 0.08 0 +transvestisme transvestisme nom m s 0.02 0 0.02 0 +transylvain transylvain adj m s 0 0.07 0 0.07 +transylvanienne transylvanien adj f s 0.01 0 0.01 0 +trappe trappe nom f s 5.18 6.49 4.86 5.41 +trappes trappe nom f p 5.18 6.49 0.32 1.08 +trappeur trappeur nom m s 1.65 2.03 1 1.35 +trappeurs trappeur nom m p 1.65 2.03 0.65 0.68 +trappiste trappiste nom m s 0.12 0.47 0.05 0.27 +trappistes trappiste nom m p 0.12 0.47 0.07 0.2 +trappon trappon nom m s 0 0.41 0 0.41 +trapu trapu adj m s 0.42 9.05 0.39 4.86 +trapue trapu adj f s 0.42 9.05 0.02 1.76 +trapues trapu adj f p 0.42 9.05 0.01 0.81 +trapus trapu adj m p 0.42 9.05 0 1.62 +trapèze trapèze nom m s 1.14 3.78 1.1 3.04 +trapèzes trapèze nom m p 1.14 3.78 0.04 0.74 +trapéziste trapéziste nom s 1.03 1.01 0.95 0.81 +trapézistes trapéziste nom p 1.03 1.01 0.08 0.2 +trapézoïdal trapézoïdal adj m s 0.02 0.68 0.02 0.14 +trapézoïdale trapézoïdal adj f s 0.02 0.68 0 0.27 +trapézoïdales trapézoïdal adj f p 0.02 0.68 0 0.2 +trapézoïdaux trapézoïdal adj m p 0.02 0.68 0 0.07 +trapézoïde trapézoïde adj s 0.08 0 0.08 0 +traqua traquer ver 13.97 14.39 0.01 0.07 ind:pas:3s; +traquaient traquer ver 13.97 14.39 0.38 0.68 ind:imp:3p; +traquais traquer ver 13.97 14.39 0.19 0.41 ind:imp:1s;ind:imp:2s; +traquait traquer ver 13.97 14.39 0.59 1.22 ind:imp:3s; +traquant traquer ver 13.97 14.39 0.28 0.47 par:pre; +traque traquer ver 13.97 14.39 2.53 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +traquenard traquenard nom m s 1.14 1.89 0.98 1.35 +traquenards traquenard nom m p 1.14 1.89 0.16 0.54 +traquent traquer ver 13.97 14.39 1.22 0.47 ind:pre:3p; +traquer traquer ver 13.97 14.39 3.04 1.96 inf; +traquera traquer ver 13.97 14.39 0.23 0.07 ind:fut:3s; +traquerai traquer ver 13.97 14.39 0.32 0 ind:fut:1s; +traquerais traquer ver 13.97 14.39 0.18 0 cnd:pre:1s;cnd:pre:2s; +traquerait traquer ver 13.97 14.39 0.04 0 cnd:pre:3s; +traquerons traquer ver 13.97 14.39 0.04 0 ind:fut:1p; +traqueront traquer ver 13.97 14.39 0.17 0 ind:fut:3p; +traques traquer ver 13.97 14.39 0.67 0 ind:pre:2s; +traquet traquet nom m s 0.06 0.34 0.06 0.2 +traquets traquet nom m p 0.06 0.34 0 0.14 +traqueur traqueur nom m s 0.78 0.68 0.49 0.34 +traqueurs traqueur nom m p 0.78 0.68 0.29 0.27 +traqueuse traqueur nom f s 0.78 0.68 0 0.07 +traquez traquer ver 13.97 14.39 0.18 0 imp:pre:2p;ind:pre:2p; +traquiez traquer ver 13.97 14.39 0.04 0 ind:imp:2p; +traquions traquer ver 13.97 14.39 0.04 0.07 ind:imp:1p; +traquons traquer ver 13.97 14.39 0.12 0 imp:pre:1p;ind:pre:1p; +traquèrent traquer ver 13.97 14.39 0.02 0 ind:pas:3p; +traqué traquer ver m s 13.97 14.39 2.64 4.53 par:pas; +traquée traquer ver f s 13.97 14.39 0.34 1.49 par:pas; +traquées traquer ver f p 13.97 14.39 0.03 0.07 par:pas; +traqués traquer ver m p 13.97 14.39 0.67 1.82 par:pas; +trattoria trattoria nom f s 0.19 0.41 0.19 0.34 +trattorias trattoria nom f p 0.19 0.41 0 0.07 +trauma trauma nom m s 4.69 0.47 4.44 0.47 +traumas trauma nom m p 4.69 0.47 0.25 0 +traumatique traumatique adj s 0.65 0.07 0.56 0.07 +traumatiques traumatique adj p 0.65 0.07 0.09 0 +traumatisant traumatisant adj m s 1.48 0.14 0.85 0.07 +traumatisante traumatisant adj f s 1.48 0.14 0.42 0 +traumatisantes traumatisant adj f p 1.48 0.14 0.14 0.07 +traumatisants traumatisant adj m p 1.48 0.14 0.07 0 +traumatise traumatiser ver 2.94 1.55 0.2 0.14 ind:pre:3s; +traumatiser traumatiser ver 2.94 1.55 0.24 0.14 inf; +traumatisme traumatisme nom m s 6.69 1.08 6.1 0.88 +traumatismes traumatisme nom m p 6.69 1.08 0.59 0.2 +traumatisé traumatiser ver m s 2.94 1.55 1.2 0.54 par:pas; +traumatisée traumatiser ver f s 2.94 1.55 0.78 0.47 par:pas; +traumatisées traumatiser ver f p 2.94 1.55 0.04 0 par:pas; +traumatisés traumatiser ver m p 2.94 1.55 0.43 0.27 par:pas; +traumatologie traumatologie nom f s 0.09 0 0.09 0 +traumatologique traumatologique adj m s 0.01 0 0.01 0 +traumatologue traumatologue nom s 0.02 0 0.02 0 +travail travail nom m s 389.83 263.45 367.43 223.99 +travailla travailler ver 479.49 202.7 0.56 2.09 ind:pas:3s; +travaillai travailler ver 479.49 202.7 0.08 0.27 ind:pas:1s; +travaillaient travailler ver 479.49 202.7 3.02 9.12 ind:imp:3p; +travaillais travailler ver 479.49 202.7 13.68 7.03 ind:imp:1s;ind:imp:2s; +travaillait travailler ver 479.49 202.7 24.57 27.84 ind:imp:3s; +travaillant travailler ver 479.49 202.7 5.39 6.42 par:pre; +travaillassent travailler ver 479.49 202.7 0 0.14 sub:imp:3p; +travaille travailler ver 479.49 202.7 149.22 35.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +travaillent travailler ver 479.49 202.7 18.51 8.18 ind:pre:3p; +travailler travailler ver 479.49 202.7 147.84 67.77 inf;;inf;;inf;; +travaillera travailler ver 479.49 202.7 2.11 0.74 ind:fut:3s; +travaillerai travailler ver 479.49 202.7 4.07 1.01 ind:fut:1s; +travailleraient travailler ver 479.49 202.7 0.05 0.2 cnd:pre:3p; +travaillerais travailler ver 479.49 202.7 1.06 0.41 cnd:pre:1s;cnd:pre:2s; +travaillerait travailler ver 479.49 202.7 0.64 1.28 cnd:pre:3s; +travailleras travailler ver 479.49 202.7 1.78 0.81 ind:fut:2s; +travaillerez travailler ver 479.49 202.7 1.12 0.14 ind:fut:2p; +travailleriez travailler ver 479.49 202.7 0.24 0.07 cnd:pre:2p; +travaillerions travailler ver 479.49 202.7 0.05 0.07 cnd:pre:1p; +travaillerons travailler ver 479.49 202.7 1.47 0.41 ind:fut:1p; +travailleront travailler ver 479.49 202.7 0.66 0.14 ind:fut:3p; +travailles travailler ver 479.49 202.7 20.96 3.18 ind:pre:2s; +travailleur travailleur nom m s 10.76 12.57 3.34 2.64 +travailleurs travailleur nom m p 10.76 12.57 7.09 9.46 +travailleuse travailleur adj f s 4.19 3.72 0.32 0.81 +travailleuses travailleur adj f p 4.19 3.72 0.26 0.14 +travaillez travailler ver 479.49 202.7 22.73 3.58 imp:pre:2p;ind:pre:2p; +travailliez travailler ver 479.49 202.7 2.68 0.27 ind:imp:2p; +travaillions travailler ver 479.49 202.7 0.93 1.08 ind:imp:1p; +travailliste travailliste adj m s 0.3 0.41 0.28 0.27 +travaillistes travailliste nom p 0.06 0.54 0.05 0.41 +travaillons travailler ver 479.49 202.7 5.99 1.62 imp:pre:1p;ind:pre:1p; +travaillâmes travailler ver 479.49 202.7 0 0.27 ind:pas:1p; +travaillât travailler ver 479.49 202.7 0 0.41 sub:imp:3s; +travaillèrent travailler ver 479.49 202.7 0.07 0.54 ind:pas:3p; +travaillé travailler ver m s 479.49 202.7 49.81 20 par:pas;par:pas;par:pas; +travaillée travailler ver f s 479.49 202.7 0.2 0.88 par:pas; +travaillées travaillé adj f p 0.79 1.82 0.02 0.34 +travaillés travaillé adj m p 0.79 1.82 0.05 0.41 +travaux travail nom m p 389.83 263.45 22.4 39.46 +trave trave nom f s 0.02 0.07 0.02 0.07 +traveller traveller nom m s 0.21 0 0.12 0 +traveller_s_chèque traveller_s_chèque nom m p 0.04 0 0.04 0 +travellers traveller nom m p 0.21 0 0.09 0 +travelling travelling nom m s 0.71 0.81 0.7 0.61 +travellings travelling nom m p 0.71 0.81 0.01 0.2 +travelo travelo nom m s 1.2 1.08 0.96 0.88 +travelos travelo nom m p 1.2 1.08 0.25 0.2 +travers travers nom m 65.6 247.64 65.6 247.64 +traversa traverser ver 72.26 200.81 0.63 25 ind:pas:3s; +traversable traversable adj m s 0.01 0.14 0.01 0.07 +traversables traversable adj p 0.01 0.14 0 0.07 +traversai traverser ver 72.26 200.81 0.13 2.77 ind:pas:1s; +traversaient traverser ver 72.26 200.81 0.34 7.91 ind:imp:3p; +traversais traverser ver 72.26 200.81 0.73 2.43 ind:imp:1s;ind:imp:2s; +traversait traverser ver 72.26 200.81 1.73 19.86 ind:imp:3s; +traversant traverser ver 72.26 200.81 2.39 15.07 par:pre; +traverse traverser ver 72.26 200.81 13.53 25.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +traversent traverser ver 72.26 200.81 3.32 7.57 ind:pre:3p; +traverser traverser ver 72.26 200.81 22.74 37.57 inf; +traversera traverser ver 72.26 200.81 0.89 0.68 ind:fut:3s; +traverserai traverser ver 72.26 200.81 0.22 0.27 ind:fut:1s; +traverseraient traverser ver 72.26 200.81 0.07 0.34 cnd:pre:3p; +traverserais traverser ver 72.26 200.81 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +traverserait traverser ver 72.26 200.81 0.18 0.61 cnd:pre:3s; +traverseras traverser ver 72.26 200.81 0.11 0.07 ind:fut:2s; +traverserez traverser ver 72.26 200.81 0.26 0.14 ind:fut:2p; +traverserons traverser ver 72.26 200.81 0.41 0.14 ind:fut:1p; +traverseront traverser ver 72.26 200.81 0.28 0.2 ind:fut:3p; +traverses traverser ver 72.26 200.81 1.69 0.27 ind:pre:2s; +traversez traverser ver 72.26 200.81 2.08 0.54 imp:pre:2p;ind:pre:2p; +traversier traversier nom m s 0.16 0 0.16 0 +traversiez traverser ver 72.26 200.81 0.16 0 ind:imp:2p; +traversin traversin nom m s 0.44 2.57 0.44 2.3 +traversine traversine nom f s 0 0.07 0 0.07 +traversins traversin nom m p 0.44 2.57 0 0.27 +traversions traverser ver 72.26 200.81 0.11 2.36 ind:imp:1p; +traversière traversier adj f s 0.01 0.2 0.01 0.07 +traversières traversier adj f p 0.01 0.2 0 0.07 +traversons traverser ver 72.26 200.81 1.33 2.84 imp:pre:1p;ind:pre:1p; +traversâmes traverser ver 72.26 200.81 0.14 1.42 ind:pas:1p; +traversèrent traverser ver 72.26 200.81 0.22 7.3 ind:pas:3p; +traversé traverser ver m s 72.26 200.81 17.34 29.93 par:pas; +traversée traversée nom f s 3.82 14.8 3.75 13.58 +traversées traversée nom f p 3.82 14.8 0.07 1.22 +traversés traverser ver m p 72.26 200.81 0.37 1.76 par:pas; +travertin travertin nom m s 0.09 0 0.09 0 +travesti travesti nom m s 2.75 1.89 1.63 1.15 +travestie travesti adj f s 0.26 1.01 0.03 0.27 +travesties travestir ver f p 0.39 2.57 0 0.14 par:pas; +travestir travestir ver 0.39 2.57 0.22 0.88 inf; +travestis travesti nom m p 2.75 1.89 1.12 0.74 +travestisme travestisme nom m s 0.14 0 0.14 0 +travestissais travestir ver 0.39 2.57 0.01 0.07 ind:imp:1s; +travestissant travestir ver 0.39 2.57 0 0.07 par:pre; +travestissement travestissement nom m s 0.13 0.88 0.13 0.68 +travestissements travestissement nom m p 0.13 0.88 0 0.2 +travestissez travestir ver 0.39 2.57 0.01 0.07 ind:pre:2p; +travestit travestir ver 0.39 2.57 0.02 0.14 ind:pre:3s; +travois travois nom m 0.01 0 0.01 0 +travée travée nom f s 0.11 3.65 0.11 1.55 +travées travée nom f p 0.11 3.65 0 2.09 +trax trax nom m 0.01 0 0.01 0 +trayait traire ver 3.69 4.59 0 0.81 ind:imp:3s; +trayant traire ver 3.69 4.59 0 0.07 par:pre; +trayeuse trayeur nom f s 0.23 0.14 0.08 0.07 +trayeuses trayeur nom f p 0.23 0.14 0.15 0.07 +trayon trayon nom m s 0 0.27 0 0.07 +trayons trayon nom m p 0 0.27 0 0.2 +traça tracer ver 10.49 42.36 0 2.36 ind:pas:3s; +traçabilité traçabilité nom f s 0.02 0 0.02 0 +traçage traçage nom m s 0.29 0 0.29 0 +traçai tracer ver 10.49 42.36 0 0.14 ind:pas:1s; +traçaient tracer ver 10.49 42.36 0.02 1.82 ind:imp:3p; +traçais tracer ver 10.49 42.36 0.03 0.41 ind:imp:1s; +traçait tracer ver 10.49 42.36 0.14 3.24 ind:imp:3s; +traçant tracer ver 10.49 42.36 0.15 2.3 par:pre; +traçante traçant adj f s 0.17 0.41 0.02 0.2 +traçantes traçant adj f p 0.17 0.41 0.15 0.2 +traçons tracer ver 10.49 42.36 0.11 0 ind:pre:1p; +traçât tracer ver 10.49 42.36 0 0.14 sub:imp:3s; +traîna traîner ver 65.49 122.77 0.05 4.05 ind:pas:3s; +traînage traînage nom m s 0.01 0 0.01 0 +traînai traîner ver 65.49 122.77 0.01 1.08 ind:pas:1s; +traînaient traîner ver 65.49 122.77 0.45 11.15 ind:imp:3p; +traînaillait traînailler ver 0.03 0.74 0 0.07 ind:imp:3s; +traînaillant traînailler ver 0.03 0.74 0.01 0.14 par:pre; +traînaille traînailler ver 0.03 0.74 0 0.07 ind:pre:3s; +traînailler traînailler ver 0.03 0.74 0.02 0.27 inf; +traînaillons traînailler ver 0.03 0.74 0 0.07 imp:pre:1p; +traînaillé traînailler ver m s 0.03 0.74 0 0.14 par:pas; +traînais traîner ver 65.49 122.77 1.94 2.16 ind:imp:1s;ind:imp:2s; +traînait traîner ver 65.49 122.77 3.66 19.59 ind:imp:3s; +traînant traîner ver 65.49 122.77 1.41 13.18 par:pre; +traînante traînant adj f s 0.05 5.88 0 1.96 +traînantes traînant adj f p 0.05 5.88 0 0.61 +traînants traînant adj m p 0.05 5.88 0.01 0.27 +traînard traînard nom m s 0.35 1.35 0.16 0.27 +traînarde traînard adj f s 0.07 0.88 0.01 0.07 +traînards traînard nom m p 0.35 1.35 0.19 1.01 +traînassaient traînasser ver 0.49 1.28 0.01 0.07 ind:imp:3p; +traînassais traînasser ver 0.49 1.28 0.02 0 ind:imp:1s; +traînassait traînasser ver 0.49 1.28 0 0.07 ind:imp:3s; +traînassant traînasser ver 0.49 1.28 0 0.07 par:pre; +traînasse traînasser ver 0.49 1.28 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +traînassent traînasser ver 0.49 1.28 0 0.14 ind:pre:3p; +traînasser traînasser ver 0.49 1.28 0.34 0.41 inf; +traînasserai traînasser ver 0.49 1.28 0.01 0 ind:fut:1s; +traînasses traînasser ver 0.49 1.28 0.03 0 ind:pre:2s; +traînassez traînasser ver 0.49 1.28 0.01 0 imp:pre:2p; +traînassons traînasser ver 0.49 1.28 0 0.07 ind:pre:1p; +traînassé traînasser ver m s 0.49 1.28 0 0.14 par:pas; +traîne traîner ver 65.49 122.77 14.63 16.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +traîne_misère traîne_misère nom m 0.01 0.07 0.01 0.07 +traîne_patins traîne_patins nom m 0 0.47 0 0.47 +traîne_savate traîne_savate nom m s 0.01 0.07 0.01 0.07 +traîne_savates traîne_savates nom m 0.22 0.54 0.22 0.54 +traîne_semelle traîne_semelle nom s 0 0.07 0 0.07 +traîne_semelles traîne_semelles nom m 0.01 0.07 0.01 0.07 +traîneau traîneau nom m s 2.37 4.53 2.27 3.45 +traîneaux traîneau nom m p 2.37 4.53 0.1 1.08 +traînement traînement nom m s 0.03 0 0.03 0 +traînent traîner ver 65.49 122.77 3.42 7.03 ind:pre:3p; +traîner traîner ver 65.49 122.77 21.48 28.04 inf;; +traînera traîner ver 65.49 122.77 0.31 0.47 ind:fut:3s; +traînerai traîner ver 65.49 122.77 0.54 0.07 ind:fut:1s; +traîneraient traîner ver 65.49 122.77 0.02 0.07 cnd:pre:3p; +traînerais traîner ver 65.49 122.77 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +traînerait traîner ver 65.49 122.77 0.1 0.34 cnd:pre:3s; +traîneras traîner ver 65.49 122.77 0.09 0 ind:fut:2s; +traînerez traîner ver 65.49 122.77 0.19 0 ind:fut:2p; +traînerons traîner ver 65.49 122.77 0.17 0 ind:fut:1p; +traîneront traîner ver 65.49 122.77 0.04 0.2 ind:fut:3p; +traînes traîner ver 65.49 122.77 4.29 0.68 ind:pre:2s; +traîneur traîneur nom m s 0.01 0.41 0 0.27 +traîneurs traîneur nom m p 0.01 0.41 0.01 0.07 +traîneuses traîneuse nom f p 0.01 0 0.01 0 +traînez traîner ver 65.49 122.77 2.95 0.47 imp:pre:2p;ind:pre:2p; +traînier traînier nom m s 0 0.2 0 0.2 +traîniez traîner ver 65.49 122.77 0.12 0.07 ind:imp:2p; +traînions traîner ver 65.49 122.77 0.04 0.41 ind:imp:1p; +traînons traîner ver 65.49 122.77 0.29 0.47 imp:pre:1p;ind:pre:1p; +traînâmes traîner ver 65.49 122.77 0 0.07 ind:pas:1p; +traînât traîner ver 65.49 122.77 0 0.2 sub:imp:3s; +traînèrent traîner ver 65.49 122.77 0.12 0.88 ind:pas:3p; +traîné traîner ver m s 65.49 122.77 6.8 11.89 par:pas; +traînée traînée nom f s 7.35 13.24 6.49 6.28 +traînées traînée nom f p 7.35 13.24 0.86 6.96 +traînés traîner ver m p 65.49 122.77 0.73 1.35 par:pas; +traître traître nom m s 26.36 13.24 19.18 7.3 +traîtres traître nom m p 26.36 13.24 7.18 5.95 +traîtresse traîtresse nom f s 1.54 0.41 1.14 0.34 +traîtresses traîtresse nom f p 1.54 0.41 0.41 0.07 +traîtreusement traîtreusement adv 0.01 1.01 0.01 1.01 +traîtrise traîtrise nom f s 1.27 1.96 1.27 1.82 +traîtrises traîtrise nom f p 1.27 1.96 0 0.14 +trecento trecento nom m s 0.2 0 0.2 0 +treillage treillage nom m s 0.05 1.22 0.05 1.01 +treillages treillage nom m p 0.05 1.22 0 0.2 +treillard treillard nom m s 0.02 0 0.02 0 +treille treille nom f s 1.66 2.7 1.32 2.03 +treilles treille nom f p 1.66 2.7 0.34 0.68 +treillis treillis nom m 0.45 4.12 0.45 4.12 +treillissé treillisser ver m s 0 0.14 0 0.07 par:pas; +treillissée treillisser ver f s 0 0.14 0 0.07 par:pas; +treizaine treizain nom f s 0 0.07 0 0.07 +treize treize adj_num 7 20.95 7 20.95 +treizième treizième adj 0.31 1.01 0.31 1.01 +trek trek nom m s 0.03 0 0.03 0 +trekkeur trekkeur nom m s 0.01 0 0.01 0 +trekking trekking nom m s 0.03 0 0.03 0 +trembla trembler ver 34.13 94.05 0.3 1.55 ind:pas:3s; +tremblai trembler ver 34.13 94.05 0.02 0.2 ind:pas:1s; +tremblaient trembler ver 34.13 94.05 1 12.57 ind:imp:3p; +tremblais trembler ver 34.13 94.05 1.44 2.97 ind:imp:1s;ind:imp:2s; +tremblait trembler ver 34.13 94.05 2 22.64 ind:imp:3s; +tremblant trembler ver 34.13 94.05 1.3 7.57 par:pre; +tremblante tremblant adj f s 2.91 21.08 1.69 10.47 +tremblantes tremblant adj f p 2.91 21.08 0.19 4.53 +tremblants tremblant adj m p 2.91 21.08 0.31 2.23 +tremble trembler ver 34.13 94.05 10.6 14.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tremblement tremblement nom m s 8.24 20.41 6.39 15.95 +tremblements tremblement nom m p 8.24 20.41 1.85 4.46 +tremblent trembler ver 34.13 94.05 2.65 5.68 ind:pre:3p; +trembler trembler ver 34.13 94.05 6.37 21.96 inf; +tremblera trembler ver 34.13 94.05 0.67 0 ind:fut:3s; +tremblerai trembler ver 34.13 94.05 0.01 0.07 ind:fut:1s; +trembleraient trembler ver 34.13 94.05 0.01 0.14 cnd:pre:3p; +tremblerais trembler ver 34.13 94.05 0.1 0.07 cnd:pre:1s;cnd:pre:2s; +tremblerait trembler ver 34.13 94.05 0.05 0 cnd:pre:3s; +tremblerons trembler ver 34.13 94.05 0.02 0 ind:fut:1p; +trembleront trembler ver 34.13 94.05 0.16 0.07 ind:fut:3p; +trembles trembler ver 34.13 94.05 3.66 0.34 ind:pre:2s; +trembleur trembleur nom m s 0.14 0 0.14 0 +trembleurs trembleur adj m p 0.01 0.07 0 0.07 +tremblez trembler ver 34.13 94.05 2.42 0.27 imp:pre:2p;ind:pre:2p; +trembliez trembler ver 34.13 94.05 0.01 0 ind:imp:2p; +tremblions trembler ver 34.13 94.05 0.02 0.07 ind:imp:1p; +tremblochant tremblocher ver 0 0.07 0 0.07 par:pre; +tremblons trembler ver 34.13 94.05 0.05 0.14 imp:pre:1p;ind:pre:1p; +tremblota trembloter ver 0.09 5.61 0 0.14 ind:pas:3s; +tremblotaient trembloter ver 0.09 5.61 0 0.47 ind:imp:3p; +tremblotait trembloter ver 0.09 5.61 0.01 1.55 ind:imp:3s; +tremblotant tremblotant adj m s 0.07 3.11 0.06 0.54 +tremblotante tremblotant adj f s 0.07 3.11 0 1.35 +tremblotantes tremblotant adj f p 0.07 3.11 0.01 0.61 +tremblotants tremblotant adj m p 0.07 3.11 0 0.61 +tremblote tremblote nom f s 0.45 0.95 0.45 0.95 +tremblotement tremblotement nom m s 0 0.2 0 0.07 +tremblotements tremblotement nom m p 0 0.2 0 0.14 +tremblotent trembloter ver 0.09 5.61 0.01 0.41 ind:pre:3p; +trembloter trembloter ver 0.09 5.61 0.02 0.47 inf; +trembloté trembloter ver m s 0.09 5.61 0 0.07 par:pas; +tremblât trembler ver 34.13 94.05 0 0.07 sub:imp:3s; +tremblèrent trembler ver 34.13 94.05 0.1 0.34 ind:pas:3p; +tremblé trembler ver m s 34.13 94.05 1.03 2.3 par:pas; +tremblée tremblé adj f s 0.03 1.49 0 0.61 +tremblées tremblé adj f p 0.03 1.49 0.01 0.14 +tremblés trembler ver m p 34.13 94.05 0.14 0 par:pas; +tremolos tremolo nom m p 0 0.07 0 0.07 +trempa tremper ver 15.88 32.16 0 1.82 ind:pas:3s; +trempage trempage nom m s 0.21 0.07 0.21 0 +trempages trempage nom m p 0.21 0.07 0 0.07 +trempai tremper ver 15.88 32.16 0 0.14 ind:pas:1s; +trempaient tremper ver 15.88 32.16 0.04 1.08 ind:imp:3p; +trempais tremper ver 15.88 32.16 0.06 0.27 ind:imp:1s;ind:imp:2s; +trempait tremper ver 15.88 32.16 0.4 2.09 ind:imp:3s; +trempant tremper ver 15.88 32.16 0.06 1.76 par:pre; +trempe trempe nom f s 2.26 3.31 2.13 2.7 +trempent tremper ver 15.88 32.16 0.11 0.61 ind:pre:3p; +tremper tremper ver 15.88 32.16 2.98 5.07 inf; +trempera tremper ver 15.88 32.16 0.01 0 ind:fut:3s; +tremperaient tremper ver 15.88 32.16 0 0.07 cnd:pre:3p; +tremperais tremper ver 15.88 32.16 0.17 0 cnd:pre:1s;cnd:pre:2s; +tremperait tremper ver 15.88 32.16 0.01 0.14 cnd:pre:3s; +trempes tremper ver 15.88 32.16 0.45 0.14 ind:pre:2s; +trempette trempette nom f s 0.95 0.41 0.95 0.41 +trempeur trempeur nom m s 0.16 0 0.16 0 +trempez tremper ver 15.88 32.16 0.22 0 imp:pre:2p;ind:pre:2p; +trempions tremper ver 15.88 32.16 0 0.07 ind:imp:1p; +tremplin tremplin nom m s 0.36 1.28 0.36 1.28 +trempoline trempoline nom m s 0 0.07 0 0.07 +trempons tremper ver 15.88 32.16 0.04 0.07 imp:pre:1p;ind:pre:1p; +trempèrent tremper ver 15.88 32.16 0.01 0.2 ind:pas:3p; +trempé tremper ver m s 15.88 32.16 5.37 8.11 par:pas; +trempée tremper ver f s 15.88 32.16 2.59 3.18 par:pas; +trempées tremper ver f p 15.88 32.16 0.41 1.22 par:pas; +trempés tremper ver m p 15.88 32.16 1.28 3.11 par:pas; +trench trench nom m s 0.41 0.2 0.41 0.2 +trench_coat trench_coat nom m s 0.04 1.55 0.04 1.49 +trench_coat trench_coat nom m p 0.04 1.55 0 0.07 +trentaine trentaine nom f s 3.23 13.45 3.23 13.45 +trente trente adj_num 18.91 79.12 18.91 79.12 +trente_cinq trente_cinq adj_num 1.33 11.55 1.33 11.55 +trente_cinquième trente_cinquième adj 0 0.14 0 0.14 +trente_deux trente_deux adj_num 0.82 3.58 0.82 3.58 +trente_et_quarante trente_et_quarante nom m 0 0.07 0 0.07 +trente_et_un trente_et_un nom m 0.39 0.07 0.39 0.07 +trente_et_unième trente_et_unième adj 0 0.07 0 0.07 +trente_huit trente_huit adj_num 0.64 2.64 0.64 2.64 +trente_huitième trente_huitième adj 0 0.2 0 0.2 +trente_neuf trente_neuf adj_num 0.55 2.16 0.55 2.16 +trente_neuvième trente_neuvième adj 0.01 0.14 0.01 0.14 +trente_quatre trente_quatre adj_num 0.43 1.08 0.43 1.08 +trente_quatrième trente_quatrième adj 0 0.07 0 0.07 +trente_sept trente_sept adj_num 0.71 2.23 0.71 2.23 +trente_septième trente_septième adj 0.2 0.14 0.2 0.14 +trente_six trente_six adj_num 0.55 6.82 0.55 6.82 +trente_sixième trente_sixième adj 0.02 0.61 0.02 0.61 +trente_trois trente_trois adj_num 0.78 2.36 0.78 2.36 +trente_troisième trente_troisième adj 0 0.2 0 0.2 +trentenaire trentenaire adj s 0.1 0.14 0.08 0.14 +trentenaires trentenaire adj p 0.1 0.14 0.01 0 +trentième trentième adj 0.69 0.88 0.69 0.88 +tressa tresser ver 1.15 8.85 0 0.07 ind:pas:3s; +tressaient tresser ver 1.15 8.85 0 0.41 ind:imp:3p; +tressaillaient tressaillir ver 1.3 13.72 0 0.2 ind:imp:3p; +tressaillais tressaillir ver 1.3 13.72 0 0.07 ind:imp:1s; +tressaillait tressaillir ver 1.3 13.72 0 1.55 ind:imp:3s; +tressaillant tressaillir ver 1.3 13.72 0.01 0.88 par:pre; +tressaille tressaillir ver 1.3 13.72 0.19 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tressaillement tressaillement nom m s 0.36 3.85 0.13 2.36 +tressaillements tressaillement nom m p 0.36 3.85 0.23 1.49 +tressaillent tressaillir ver 1.3 13.72 0.02 0.54 ind:pre:3p; +tressaillez tressaillir ver 1.3 13.72 0.11 0 ind:pre:2p; +tressailli tressaillir ver m s 1.3 13.72 0.23 1.22 par:pas; +tressaillir tressaillir ver 1.3 13.72 0.38 4.12 inf; +tressaillira tressaillir ver 1.3 13.72 0 0.07 ind:fut:3s; +tressaillirait tressaillir ver 1.3 13.72 0 0.07 cnd:pre:3s; +tressaillirent tressaillir ver 1.3 13.72 0.1 0.14 ind:pas:3p; +tressaillis tressaillir ver 1.3 13.72 0.02 0.14 ind:pas:1s;ind:pas:2s; +tressaillit tressaillir ver 1.3 13.72 0.25 3.65 ind:pas:3s; +tressait tresser ver 1.15 8.85 0 0.47 ind:imp:3s; +tressant tresser ver 1.15 8.85 0 0.41 par:pre; +tressauta tressauter ver 0.03 4.53 0 0.27 ind:pas:3s; +tressautaient tressauter ver 0.03 4.53 0 0.27 ind:imp:3p; +tressautait tressauter ver 0.03 4.53 0.01 0.95 ind:imp:3s; +tressautant tressauter ver 0.03 4.53 0 0.41 par:pre; +tressautante tressautant adj f s 0 0.61 0 0.27 +tressaute tressauter ver 0.03 4.53 0.01 0.95 ind:pre:1s;ind:pre:3s; +tressautement tressautement nom m s 0 0.74 0 0.27 +tressautements tressautement nom m p 0 0.74 0 0.47 +tressautent tressauter ver 0.03 4.53 0 0.88 ind:pre:3p; +tressauter tressauter ver 0.03 4.53 0.01 0.68 inf; +tressautera tressauter ver 0.03 4.53 0 0.07 ind:fut:3s; +tressautés tressauter ver m p 0.03 4.53 0 0.07 par:pas; +tresse tresse nom f s 1.83 4.73 0.77 1.08 +tressent tresser ver 1.15 8.85 0.1 0.14 ind:pre:3p; +tresser tresser ver 1.15 8.85 0.34 1.69 inf; +tresseraient tresser ver 1.15 8.85 0 0.07 cnd:pre:3p; +tresseras tresser ver 1.15 8.85 0.01 0 ind:fut:2s; +tresses tresse nom f p 1.83 4.73 1.06 3.65 +tresseurs tresseur nom m p 0 0.07 0 0.07 +tressons tresser ver 1.15 8.85 0.14 0.07 imp:pre:1p;ind:pre:1p; +tressèrent tresser ver 1.15 8.85 0 0.07 ind:pas:3p; +tressé tresser ver m s 1.15 8.85 0.13 1.96 par:pas; +tressée tresser ver f s 1.15 8.85 0.17 1.89 par:pas; +tressées tresser ver f p 1.15 8.85 0 1.01 par:pas; +tressés tresser ver m p 1.15 8.85 0.2 0.47 par:pas; +treuil treuil nom m s 1.48 2.16 1.34 1.69 +treuiller treuiller ver 0.14 0 0.14 0 inf; +treuils treuil nom m p 1.48 2.16 0.14 0.47 +tri tri nom m s 1.6 3.04 1.58 2.84 +tria trier ver 3.68 7.84 0.02 0.27 ind:pas:3s; +triade triade nom f s 1.18 0.14 1.05 0.07 +triades triade nom f p 1.18 0.14 0.14 0.07 +triage triage nom m s 1.42 1.55 1.42 1.55 +triaient trier ver 3.68 7.84 0.03 0.14 ind:imp:3p; +triais trier ver 3.68 7.84 0.07 0.41 ind:imp:1s;ind:imp:2s; +triait trier ver 3.68 7.84 0.04 1.28 ind:imp:3s; +trial trial nom m s 0.04 0.47 0.04 0.47 +triangle triangle nom m s 3.83 13.24 3.42 10.68 +triangles triangle nom m p 3.83 13.24 0.41 2.57 +triangulaire triangulaire adj s 0.17 6.62 0.16 4.73 +triangulairement triangulairement adv 0 0.07 0 0.07 +triangulaires triangulaire adj p 0.17 6.62 0.01 1.89 +triangulation triangulation nom f s 0.2 0.07 0.2 0.07 +trianguler trianguler ver 0.26 0 0.23 0 inf; +triangulez trianguler ver 0.26 0 0.02 0 imp:pre:2p; +trianon trianon nom m s 0 0.07 0 0.07 +triant trier ver 3.68 7.84 0.12 0.07 par:pre; +trias trias nom m 0.01 0 0.01 0 +triasique triasique adj f s 0.02 0 0.02 0 +triathlon triathlon nom m s 0.18 0 0.18 0 +triathlète triathlète nom s 0.03 0 0.03 0 +tribal tribal adj m s 1 1.01 0.28 0.47 +tribale tribal adj f s 1 1.01 0.34 0.27 +tribales tribal adj f p 1 1.01 0.26 0.14 +tribart tribart nom m s 0 0.07 0 0.07 +tribaux tribal adj m p 1 1.01 0.12 0.14 +tribord tribord nom m s 3.79 1.28 3.79 1.28 +tribu tribu nom f s 11.57 18.24 7.96 13.58 +tribulation tribulation nom f s 0.14 1.69 0.01 0.54 +tribulations tribulation nom f p 0.14 1.69 0.13 1.15 +tribun tribun nom m s 0.37 1.96 0.36 1.49 +tribunal tribunal nom m s 37.98 18.04 35.35 15 +tribunat tribunat nom m s 0.34 0 0.34 0 +tribunaux tribunal nom m p 37.98 18.04 2.62 3.04 +tribune tribune nom f s 2.87 8.99 1.75 6.96 +tribunes tribune nom f p 2.87 8.99 1.12 2.03 +tribuns tribun nom m p 0.37 1.96 0.01 0.47 +tribus tribu nom f p 11.57 18.24 3.62 4.66 +tribut tribut nom m s 0.87 2.16 0.69 2.16 +tributaire tributaire adj f s 0.34 0.61 0.32 0.34 +tributaires tributaire adj p 0.34 0.61 0.02 0.27 +tributs tribut nom m p 0.87 2.16 0.19 0 +tric tric nom m s 0.07 0 0.07 0 +tricard tricard adj m s 0.61 0.61 0.46 0.41 +tricarde tricard adj f s 0.61 0.61 0.01 0.14 +tricards tricard adj m p 0.61 0.61 0.14 0.07 +tricentenaire tricentenaire nom m s 0.05 0.07 0.05 0.07 +triceps triceps nom m 0.34 0.07 0.34 0.07 +tricha tricher ver 16.16 9.73 0 0.14 ind:pas:3s; +trichaient tricher ver 16.16 9.73 0.14 0.34 ind:imp:3p; +trichais tricher ver 16.16 9.73 0.2 0.2 ind:imp:1s;ind:imp:2s; +trichait tricher ver 16.16 9.73 0.41 0.81 ind:imp:3s; +trichant tricher ver 16.16 9.73 0.21 0.68 par:pre; +triche tricher ver 16.16 9.73 3.71 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trichent tricher ver 16.16 9.73 0.31 0.14 ind:pre:3p; +tricher tricher ver 16.16 9.73 4.7 4.05 inf; +trichera tricher ver 16.16 9.73 0.16 0.07 ind:fut:3s; +tricherai tricher ver 16.16 9.73 0.18 0 ind:fut:1s; +tricherais tricher ver 16.16 9.73 0.01 0.14 cnd:pre:1s;cnd:pre:2s; +tricherait tricher ver 16.16 9.73 0.03 0 cnd:pre:3s; +tricherie tricherie nom f s 1.13 1.28 0.76 1.15 +tricheries tricherie nom f p 1.13 1.28 0.37 0.14 +tricheront tricher ver 16.16 9.73 0 0.07 ind:fut:3p; +triches tricher ver 16.16 9.73 1.56 0.2 ind:pre:2s; +tricheur tricheur nom m s 3.47 1.01 2.73 0.34 +tricheurs tricheur nom m p 3.47 1.01 0.36 0.61 +tricheuse tricheur nom f s 3.47 1.01 0.35 0 +tricheuses tricheur nom f p 3.47 1.01 0.02 0.07 +trichez tricher ver 16.16 9.73 0.65 0.07 imp:pre:2p;ind:pre:2p; +trichiez tricher ver 16.16 9.73 0.06 0.07 ind:imp:2p; +trichinose trichinose nom f s 0.04 0.07 0.04 0.07 +trichloracétique trichloracétique adj m s 0.01 0 0.01 0 +trichlorure trichlorure nom m s 0.01 0 0.01 0 +trichloréthylène trichloréthylène nom m s 0.02 0 0.02 0 +trichons tricher ver 16.16 9.73 0.02 0.2 ind:pre:1p; +trichophyties trichophytie nom f p 0.01 0 0.01 0 +triché tricher ver m s 16.16 9.73 3.81 0.95 par:pas; +trichée tricher ver f s 16.16 9.73 0 0.07 par:pas; +trichées tricher ver f p 16.16 9.73 0 0.07 par:pas; +trick trick nom m s 0.35 0 0.35 0 +tricoises tricoises nom f p 0 0.07 0 0.07 +tricolore tricolore adj s 0.4 7.5 0.3 6.08 +tricolores tricolore adj p 0.4 7.5 0.1 1.42 +tricorne tricorne nom m s 0.02 0.88 0.01 0.74 +tricornes tricorne nom m p 0.02 0.88 0.01 0.14 +tricot tricot nom m s 1.44 14.19 1.25 11.96 +tricota tricoter ver 3.19 13.04 0 0.27 ind:pas:3s; +tricotage tricotage nom m s 0.04 0.41 0.04 0.34 +tricotages tricotage nom m p 0.04 0.41 0 0.07 +tricotai tricoter ver 3.19 13.04 0 0.07 ind:pas:1s; +tricotaient tricoter ver 3.19 13.04 0.01 0.88 ind:imp:3p; +tricotais tricoter ver 3.19 13.04 0.21 0.07 ind:imp:1s;ind:imp:2s; +tricotait tricoter ver 3.19 13.04 0.23 3.04 ind:imp:3s; +tricotant tricoter ver 3.19 13.04 0 1.15 par:pre; +tricote tricoter ver 3.19 13.04 0.65 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tricotent tricoter ver 3.19 13.04 0.04 0.41 ind:pre:3p; +tricoter tricoter ver 3.19 13.04 1.37 3.11 inf; +tricotera tricoter ver 3.19 13.04 0.11 0 ind:fut:3s; +tricoterai tricoter ver 3.19 13.04 0.03 0.07 ind:fut:1s; +tricoterait tricoter ver 3.19 13.04 0.01 0.07 cnd:pre:3s; +tricoteras tricoter ver 3.19 13.04 0 0.07 ind:fut:2s; +tricoterons tricoter ver 3.19 13.04 0.1 0 ind:fut:1p; +tricoteur tricoteur nom m s 0.14 0.68 0 0.07 +tricoteuse tricoteur nom f s 0.14 0.68 0.14 0.41 +tricoteuses tricoteur nom f p 0.14 0.68 0 0.2 +tricotez tricoter ver 3.19 13.04 0.04 0 imp:pre:2p;ind:pre:2p; +tricots tricot nom m p 1.44 14.19 0.19 2.23 +tricoté tricoter ver m s 3.19 13.04 0.35 1.22 par:pas; +tricotée tricoter ver f s 3.19 13.04 0 0.41 par:pas; +tricotées tricoter ver f p 3.19 13.04 0.02 0.34 par:pas; +tricotés tricoter ver m p 3.19 13.04 0.01 0.47 par:pas; +trictrac trictrac nom m s 0.14 0.14 0.14 0.14 +tricuspide tricuspide adj f s 0.07 0 0.07 0 +tricycle tricycle nom m s 0.52 0.95 0.5 0.61 +tricycles tricycle nom m p 0.52 0.95 0.02 0.34 +tricycliste tricycliste nom s 0 0.2 0 0.2 +tricéphale tricéphale adj f s 0 0.27 0 0.27 +tricératops tricératops nom m 0.02 0 0.02 0 +trident trident nom m s 0.13 0.68 0.12 0.68 +tridents trident nom m p 0.13 0.68 0.01 0 +tridi tridi nom m s 0 0.07 0 0.07 +tridimensionnel tridimensionnel adj m s 0.24 0 0.17 0 +tridimensionnelle tridimensionnel adj f s 0.24 0 0.07 0 +trie trier ver 3.68 7.84 1.01 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +triennale triennal adj f s 0 0.2 0 0.14 +triennales triennal adj f p 0 0.2 0 0.07 +trient trier ver 3.68 7.84 0.05 0.07 ind:pre:3p; +trier trier ver 3.68 7.84 1.08 3.38 inf; +triera trier ver 3.68 7.84 0.01 0.07 ind:fut:3s; +trierait trier ver 3.68 7.84 0 0.07 cnd:pre:3s; +trieur trieur nom m s 0.2 0.14 0.05 0 +trieurs trieur nom m p 0.2 0.14 0.02 0 +trieuse trieur nom f s 0.2 0.14 0.11 0 +trieuses trieur nom f p 0.2 0.14 0.02 0.14 +triez trier ver 3.68 7.84 0.18 0.07 imp:pre:2p;ind:pre:2p; +trifolium trifolium nom m s 0.01 0.07 0.01 0.07 +triforium triforium nom m s 0 0.07 0 0.07 +trifouillaient trifouiller ver 0.3 1.35 0 0.14 ind:imp:3p; +trifouillait trifouiller ver 0.3 1.35 0 0.07 ind:imp:3s; +trifouille trifouiller ver 0.3 1.35 0.02 0.41 imp:pre:2s;ind:pre:3s; +trifouiller trifouiller ver 0.3 1.35 0.13 0.41 inf; +trifouillez trifouiller ver 0.3 1.35 0.01 0 ind:pre:2p; +trifouillé trifouiller ver m s 0.3 1.35 0.14 0.34 par:pas; +trigger trigger nom m s 0.09 0 0.09 0 +trigles trigle nom m p 0 0.07 0 0.07 +triglycéride triglycéride nom m s 0.07 0.07 0.03 0 +triglycérides triglycéride nom m p 0.07 0.07 0.05 0.07 +trigonométrie trigonométrie nom f s 0.28 0.2 0.28 0.2 +trigrammes trigramme nom m p 0.01 0 0.01 0 +trilatérale trilatéral adj f s 0.04 0.07 0.04 0.07 +trilingue trilingue adj s 0.01 0.07 0.01 0 +trilingues trilingue adj f p 0.01 0.07 0 0.07 +trillant triller ver 0.01 0.14 0 0.07 par:pre; +trille trille nom m s 0.3 2.64 0.03 1.01 +trilles trille nom m p 0.3 2.64 0.28 1.62 +trillion trillion nom m s 0.22 0.14 0.06 0 +trillions trillion nom m p 0.22 0.14 0.16 0.14 +trillé triller ver m s 0.01 0.14 0 0.07 par:pas; +trilobite trilobite nom m s 0.02 0 0.02 0 +trilobée trilobé adj f s 0 0.14 0 0.07 +trilobés trilobé adj m p 0 0.14 0 0.07 +trilogie trilogie nom f s 0.36 0.07 0.36 0.07 +trimait trimer ver 4.38 3.31 0.02 0.34 ind:imp:3s; +trimant trimer ver 4.38 3.31 0 0.07 par:pre; +trimard trimard nom m s 0.02 1.76 0 0.61 +trimarde trimarder ver 0 0.14 0 0.07 ind:pre:1s; +trimarder trimarder ver 0 0.14 0 0.07 inf; +trimardeur trimardeur nom m s 0.03 0.81 0.03 0.61 +trimardeurs trimardeur nom m p 0.03 0.81 0 0.2 +trimards trimard nom m p 0.02 1.76 0.02 1.15 +trimbala trimbaler ver 1.62 7.09 0 0.07 ind:pas:3s; +trimbalaient trimbaler ver 1.62 7.09 0 0.07 ind:imp:3p; +trimbalais trimbaler ver 1.62 7.09 0 0.34 ind:imp:1s;ind:imp:2s; +trimbalait trimbaler ver 1.62 7.09 0.06 1.15 ind:imp:3s; +trimbalant trimbaler ver 1.62 7.09 0.11 0.41 par:pre; +trimbale trimbaler ver 1.62 7.09 0.5 1.82 ind:pre:1s;ind:pre:3s;sub:pre:3s; +trimbalent trimbaler ver 1.62 7.09 0.23 0.47 ind:pre:3p; +trimbaler trimbaler ver 1.62 7.09 0.42 1.82 inf; +trimbalerai trimbaler ver 1.62 7.09 0 0.07 ind:fut:1s; +trimbalerait trimbaler ver 1.62 7.09 0.01 0 cnd:pre:3s; +trimbalerez trimbaler ver 1.62 7.09 0.01 0 ind:fut:2p; +trimbales trimbaler ver 1.62 7.09 0.13 0.2 ind:pre:2s; +trimbalez trimbaler ver 1.62 7.09 0.02 0 ind:pre:2p; +trimballage trimballage nom m s 0.01 0 0.01 0 +trimballaient trimballer ver 3.34 3.11 0 0.2 ind:imp:3p; +trimballais trimballer ver 3.34 3.11 0.04 0.34 ind:imp:1s;ind:imp:2s; +trimballait trimballer ver 3.34 3.11 0.09 0.41 ind:imp:3s; +trimballe trimballer ver 3.34 3.11 0.67 0.61 ind:pre:1s;ind:pre:3s; +trimballent trimballer ver 3.34 3.11 0.19 0.14 ind:pre:3p; +trimballer trimballer ver 3.34 3.11 1.16 0.81 inf; +trimballera trimballer ver 3.34 3.11 0 0.07 ind:fut:3s; +trimballes trimballer ver 3.34 3.11 0.64 0 ind:pre:2s; +trimballez trimballer ver 3.34 3.11 0.05 0 ind:pre:2p; +trimballât trimballer ver 3.34 3.11 0 0.07 sub:imp:3s; +trimballé trimballer ver m s 3.34 3.11 0.45 0.27 par:pas; +trimballée trimballer ver f s 3.34 3.11 0.04 0.2 par:pas; +trimballés trimballer ver m p 3.34 3.11 0.01 0 par:pas; +trimbalons trimbaler ver 1.62 7.09 0 0.07 ind:pre:1p; +trimbalé trimbaler ver m s 1.62 7.09 0.12 0.34 par:pas; +trimbalée trimbaler ver f s 1.62 7.09 0 0.14 par:pas; +trimbalés trimbaler ver m p 1.62 7.09 0 0.14 par:pas; +trime trimer ver 4.38 3.31 1.17 0.74 ind:pre:1s;ind:pre:3s; +triment trimer ver 4.38 3.31 0.23 0.27 ind:pre:3p; +trimer trimer ver 4.38 3.31 1.73 1.28 inf; +trimes trimer ver 4.38 3.31 0.21 0 ind:pre:2s; +trimestre trimestre nom m s 2.5 5.54 2.44 4.8 +trimestres trimestre nom m p 2.5 5.54 0.06 0.74 +trimestriel trimestriel adj m s 0.39 0.81 0.26 0.34 +trimestrielle trimestriel adj f s 0.39 0.81 0.02 0.14 +trimestriellement trimestriellement adv 0.04 0 0.04 0 +trimestrielles trimestriel adj f p 0.39 0.81 0.04 0.14 +trimestriels trimestriel adj m p 0.39 0.81 0.08 0.2 +trimeur trimeur nom m s 0.11 0.14 0.11 0.07 +trimeurs trimeur nom m p 0.11 0.14 0 0.07 +trimmer trimmer nom m s 0.02 0 0.02 0 +trimons trimer ver 4.38 3.31 0.02 0.07 imp:pre:1p;ind:pre:1p; +trimé trimer ver m s 4.38 3.31 1 0.54 par:pas; +trinacrie trinacrie nom f s 0 0.07 0 0.07 +trine trin adj f s 0.04 0 0.04 0 +tringlaient tringler ver 0.9 1.62 0 0.07 ind:imp:3p; +tringlais tringler ver 0.9 1.62 0.02 0 ind:imp:1s;ind:imp:2s; +tringlait tringler ver 0.9 1.62 0.02 0.07 ind:imp:3s; +tringle tringle nom f s 0.3 3.18 0.1 1.49 +tringler tringler ver 0.9 1.62 0.66 1.01 inf; +tringlerais tringler ver 0.9 1.62 0.01 0.07 cnd:pre:1s; +tringles tringle nom f p 0.3 3.18 0.2 1.69 +tringlette tringlette nom f s 0.01 0.14 0.01 0.14 +tringlot tringlot nom m s 0 0.34 0 0.27 +tringlots tringlot nom m p 0 0.34 0 0.07 +tringlé tringler ver m s 0.9 1.62 0.04 0.14 par:pas; +tringlée tringler ver f s 0.9 1.62 0.07 0.07 par:pas; +trinidadienne trinidadienne adj f s 0.01 0 0.01 0 +trinidadienne trinidadienne nom f s 0.01 0 0.01 0 +trinitaire trinitaire adj m s 0.03 0.2 0.03 0.2 +trinitrine trinitrine nom f s 0.13 0 0.13 0 +trinité trinité nom f s 0.45 0.41 0.45 0.41 +trinqua trinquer ver 12.21 9.19 0.01 0.74 ind:pas:3s; +trinquaient trinquer ver 12.21 9.19 0.01 0.47 ind:imp:3p; +trinquais trinquer ver 12.21 9.19 0.01 0.14 ind:imp:1s;ind:imp:2s; +trinquait trinquer ver 12.21 9.19 0.11 0.54 ind:imp:3s; +trinquant trinquer ver 12.21 9.19 0 0.47 par:pre; +trinque trinquer ver 12.21 9.19 2.69 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trinquent trinquer ver 12.21 9.19 0.6 0.61 ind:pre:3p; +trinquer trinquer ver 12.21 9.19 2.95 2.5 inf; +trinquera trinquer ver 12.21 9.19 0.11 0.07 ind:fut:3s; +trinquerai trinquer ver 12.21 9.19 0.05 0.07 ind:fut:1s; +trinquerais trinquer ver 12.21 9.19 0 0.07 cnd:pre:1s; +trinquerait trinquer ver 12.21 9.19 0 0.07 cnd:pre:3s; +trinqueras trinquer ver 12.21 9.19 0 0.07 ind:fut:2s; +trinquerez trinquer ver 12.21 9.19 0.01 0 ind:fut:2p; +trinquerons trinquer ver 12.21 9.19 0.16 0 ind:fut:1p; +trinques trinquer ver 12.21 9.19 0.19 0 ind:pre:2s; +trinquette trinquette nom f s 0.03 0.07 0.03 0.07 +trinquez trinquer ver 12.21 9.19 1.97 0 imp:pre:2p;ind:pre:2p; +trinquions trinquer ver 12.21 9.19 0 0.2 ind:imp:1p; +trinquons trinquer ver 12.21 9.19 3.04 0.27 imp:pre:1p;ind:pre:1p; +trinquâmes trinquer ver 12.21 9.19 0 0.07 ind:pas:1p; +trinquèrent trinquer ver 12.21 9.19 0 0.95 ind:pas:3p; +trinqué trinquer ver m s 12.21 9.19 0.3 0.95 par:pas; +trinôme trinôme nom m s 0.01 0 0.01 0 +trio trio nom m s 2.74 5.47 2.3 5.34 +triode triode nom f s 0 0.07 0 0.07 +triolet triolet nom m s 0.25 0.27 0.14 0 +triolets triolet nom m p 0.25 0.27 0.1 0.27 +triolisme triolisme nom m s 0.01 0 0.01 0 +triompha triompher ver 7.67 19.19 0.28 1.28 ind:pas:3s; +triomphai triompher ver 7.67 19.19 0.14 0.14 ind:pas:1s; +triomphaient triompher ver 7.67 19.19 0.05 0.54 ind:imp:3p; +triomphais triompher ver 7.67 19.19 0 0.14 ind:imp:1s; +triomphait triompher ver 7.67 19.19 0.11 3.65 ind:imp:3s; +triomphal triomphal adj m s 0.79 8.58 0.12 3.51 +triomphale triomphal adj f s 0.79 8.58 0.64 4.26 +triomphalement triomphalement adv 0.03 3.38 0.03 3.38 +triomphales triomphal adj f p 0.79 8.58 0.03 0.74 +triomphalisme triomphalisme nom m s 0.01 0 0.01 0 +triomphaliste triomphaliste adj s 0 0.14 0 0.07 +triomphalistes triomphaliste adj p 0 0.14 0 0.07 +triomphant triomphant adj m s 0.64 12.77 0.14 5.47 +triomphante triomphant adj f s 0.64 12.77 0.43 5.41 +triomphantes triomphant adj f p 0.64 12.77 0 0.47 +triomphants triomphant adj m p 0.64 12.77 0.07 1.42 +triomphateur triomphateur nom m s 0.14 0.81 0.13 0.54 +triomphateurs triomphateur nom m p 0.14 0.81 0.01 0.07 +triomphatrice triomphateur nom f s 0.14 0.81 0 0.14 +triomphatrices triomphateur nom f p 0.14 0.81 0 0.07 +triomphaux triomphal adj m p 0.79 8.58 0 0.07 +triomphe triomphe nom m s 9.44 29.19 8.83 27.3 +triomphent triompher ver 7.67 19.19 0.21 0.61 ind:pre:3p; +triompher triompher ver 7.67 19.19 2.75 4.46 inf; +triomphera triompher ver 7.67 19.19 0.2 0.2 ind:fut:3s; +triompherai triompher ver 7.67 19.19 0.04 0.14 ind:fut:1s; +triompherais triompher ver 7.67 19.19 0.01 0.07 cnd:pre:1s; +triompherait triompher ver 7.67 19.19 0.02 0.2 cnd:pre:3s; +triompheras triompher ver 7.67 19.19 0.01 0.07 ind:fut:2s; +triompherez triompher ver 7.67 19.19 0.01 0 ind:fut:2p; +triompherions triompher ver 7.67 19.19 0.14 0 cnd:pre:1p; +triompherons triompher ver 7.67 19.19 0.13 0 ind:fut:1p; +triompheront triompher ver 7.67 19.19 0.03 0 ind:fut:3p; +triomphes triomphe nom m p 9.44 29.19 0.61 1.89 +triomphez triompher ver 7.67 19.19 0.04 0 ind:pre:2p; +triomphions triompher ver 7.67 19.19 0.03 0 ind:imp:1p; +triomphons triompher ver 7.67 19.19 0.25 0.27 ind:pre:1p; +triomphâmes triompher ver 7.67 19.19 0 0.07 ind:pas:1p; +triomphât triompher ver 7.67 19.19 0 0.07 sub:imp:3s; +triomphèrent triompher ver 7.67 19.19 0.01 0.07 ind:pas:3p; +triomphé triompher ver m s 7.67 19.19 1.13 2.43 par:pas; +trional trional nom m s 0.01 0 0.01 0 +trionix trionix nom m 0 0.07 0 0.07 +trios trio nom m p 2.74 5.47 0.44 0.14 +trip trip nom m s 4.62 1.22 4.37 1.22 +tripaille tripaille nom f s 0.17 0.88 0.16 0.68 +tripailles tripaille nom f p 0.17 0.88 0.01 0.2 +tripang tripang nom m s 0.02 0 0.01 0 +tripangs tripang nom m p 0.02 0 0.01 0 +tripant tripant adj m s 0.03 0 0.03 0 +tripartite tripartite adj s 0.01 0.74 0.01 0.61 +tripartites tripartite adj f p 0.01 0.74 0 0.14 +tripatouillage tripatouillage nom m s 0 0.14 0 0.07 +tripatouillages tripatouillage nom m p 0 0.14 0 0.07 +tripatouillant tripatouiller ver 0.07 0.54 0 0.07 par:pre; +tripatouillent tripatouiller ver 0.07 0.54 0 0.07 ind:pre:3p; +tripatouiller tripatouiller ver 0.07 0.54 0.03 0.27 inf; +tripatouillez tripatouiller ver 0.07 0.54 0.01 0.07 imp:pre:2p;ind:pre:2p; +tripatouillé tripatouiller ver m s 0.07 0.54 0.02 0 par:pas; +tripatouillée tripatouiller ver f s 0.07 0.54 0 0.07 par:pas; +tripe tripe nom f s 8.75 13.58 0.36 1.42 +triper triper ver 0.05 0 0.05 0 inf; +triperie triperie nom f s 0 0.2 0 0.14 +triperies triperie nom f p 0 0.2 0 0.07 +tripes tripe nom f p 8.75 13.58 8.39 12.16 +tripette tripette nom f s 0.26 0.54 0.26 0.54 +triphasé triphasé adj m s 0.14 0 0.14 0 +triphosphate triphosphate nom m s 0.01 0 0.01 0 +tripier tripier nom m s 0 0.27 0 0.07 +tripiers tripier nom m p 0 0.27 0 0.07 +tripière tripier nom f s 0 0.27 0 0.14 +tripla tripler ver 2.08 1.76 0 0.2 ind:pas:3s; +triplace triplace adj s 0 0.07 0 0.07 +triplai tripler ver 2.08 1.76 0 0.07 ind:pas:1s; +triplaient tripler ver 2.08 1.76 0 0.07 ind:imp:3p; +triplait tripler ver 2.08 1.76 0.01 0.07 ind:imp:3s; +triplant tripler ver 2.08 1.76 0.01 0.07 par:pre; +triple triple adj s 4.94 9.12 4.81 7.77 +triplement triplement adv 0.01 0 0.01 0 +triplent tripler ver 2.08 1.76 0.01 0.07 ind:pre:3p; +tripler tripler ver 2.08 1.76 0.47 0.27 inf; +triplerais tripler ver 2.08 1.76 0.01 0.07 cnd:pre:1s; +triplerait tripler ver 2.08 1.76 0.03 0 cnd:pre:3s; +triples triple adj p 4.94 9.12 0.12 1.35 +triplets triplet nom m p 0.06 0 0.06 0 +triplette triplette nom f s 0.16 0 0.16 0 +triplex triplex nom m 0.04 0 0.04 0 +triplice triplice nom f s 0.14 0 0.14 0 +triplions tripler ver 2.08 1.76 0.01 0 ind:imp:1p; +triplons tripler ver 2.08 1.76 0.01 0 ind:pre:1p; +triploïde triploïde adj f s 0.01 0 0.01 0 +triplèrent tripler ver 2.08 1.76 0 0.07 ind:pas:3p; +triplé tripler ver m s 2.08 1.76 1.02 0.54 par:pas; +triplée tripler ver f s 2.08 1.76 0.05 0.07 par:pas; +triplées triplé nom f p 1.54 0.47 0.29 0.2 +triplés triplé nom m p 1.54 0.47 1.15 0.2 +tripode tripode nom m s 0.02 0 0.02 0 +tripoli tripoli nom m s 0.14 0.07 0.14 0.07 +triporteur triporteur nom m s 0.12 5.61 0.1 5.27 +triporteurs triporteur nom m p 0.12 5.61 0.02 0.34 +tripot tripot nom m s 1.57 1.22 1.09 0.81 +tripota tripoter ver 7.8 7.97 0 0.27 ind:pas:3s; +tripotage tripotage nom m s 0.16 0.27 0.03 0.27 +tripotages tripotage nom m p 0.16 0.27 0.14 0 +tripotaient tripoter ver 7.8 7.97 0.03 0.34 ind:imp:3p; +tripotais tripoter ver 7.8 7.97 0.04 0.34 ind:imp:1s;ind:imp:2s; +tripotait tripoter ver 7.8 7.97 0.36 0.95 ind:imp:3s; +tripotant tripoter ver 7.8 7.97 0.22 0.74 par:pre; +tripote tripoter ver 7.8 7.97 1.76 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tripotent tripoter ver 7.8 7.97 0.6 0.34 ind:pre:3p;sub:pre:3p; +tripoter tripoter ver 7.8 7.97 3.09 2.3 inf; +tripoterai tripoter ver 7.8 7.97 0.01 0 ind:fut:1s; +tripotes tripoter ver 7.8 7.97 0.33 0.07 ind:pre:2s; +tripoteur tripoteur nom m s 0.04 0 0.02 0 +tripoteuse tripoteur nom f s 0.04 0 0.02 0 +tripotez tripoter ver 7.8 7.97 0.1 0.07 ind:pre:2p; +tripotiez tripoter ver 7.8 7.97 0.15 0.07 ind:imp:2p; +tripots tripot nom m p 1.57 1.22 0.48 0.41 +tripotèrent tripoter ver 7.8 7.97 0 0.07 ind:pas:3p; +tripoté tripoter ver m s 7.8 7.97 0.85 0.54 par:pas; +tripotée tripotée nom f s 0.26 0.27 0.26 0.27 +tripotées tripoter ver f p 7.8 7.97 0 0.07 par:pas; +tripotés tripoter ver m p 7.8 7.97 0.03 0.2 par:pas; +tripoux tripoux nom m p 0 0.2 0 0.2 +trips trip nom m p 4.62 1.22 0.26 0 +triptyque triptyque nom m s 0.06 0.74 0.04 0.61 +triptyques triptyque nom m p 0.06 0.74 0.01 0.14 +triquais triquer ver 0.27 0.68 0 0.14 ind:imp:1s; +triquait triquer ver 0.27 0.68 0 0.07 ind:imp:3s; +trique trique nom f s 2.73 4.46 2.69 4.05 +triqueballe triqueballe nom m s 0 0.14 0 0.14 +triquer triquer ver 0.27 0.68 0.16 0.41 inf; +triques trique nom f p 2.73 4.46 0.03 0.41 +trirème trirème nom f s 0 0.2 0 0.14 +trirèmes trirème nom f p 0 0.2 0 0.07 +tris tri nom m p 1.6 3.04 0.03 0.2 +trisaïeul trisaïeul nom m s 0.14 0.34 0.01 0.2 +trisaïeule trisaïeul nom f s 0.14 0.34 0 0.07 +trisaïeuls trisaïeul nom m p 0.14 0.34 0.14 0.07 +trismique trismique adj f s 0 0.07 0 0.07 +trismus trismus nom m 0 0.07 0 0.07 +trismégiste trismégiste adj s 0.06 0.07 0.06 0.07 +trisomie trisomie nom f s 0.01 0 0.01 0 +trisomique trisomique adj s 0.32 0 0.32 0 +trissait trisser ver 0.02 1.15 0 0.14 ind:imp:3s; +trisse trisser ver 0.02 1.15 0.02 0.41 ind:pre:1s;ind:pre:3s; +trissent trisser ver 0.02 1.15 0 0.14 ind:pre:3p; +trisser trisser ver 0.02 1.15 0 0.41 inf; +trissés trisser ver m p 0.02 1.15 0 0.07 par:pas; +triste triste adj s 103.44 105.61 93.03 86.89 +tristement tristement adv 1.67 11.82 1.67 11.82 +tristes triste adj p 103.44 105.61 10.41 18.72 +tristesse tristesse nom f s 13.39 48.72 12.91 46.96 +tristesses tristesse nom f p 13.39 48.72 0.48 1.76 +tristouillard tristouillard adj m s 0 0.14 0 0.07 +tristouillarde tristouillard adj f s 0 0.14 0 0.07 +tristouille tristouille adj m s 0.16 0.27 0.16 0.2 +tristouilles tristouille adj p 0.16 0.27 0 0.07 +tristounet tristounet adj m s 0.13 0.34 0.09 0.07 +tristounette tristounet adj f s 0.13 0.34 0.02 0.14 +tristounettes tristounet adj f p 0.13 0.34 0.02 0.14 +trithéisme trithéisme nom m s 0 0.07 0 0.07 +trithérapie trithérapie nom f s 0.17 0 0.17 0 +tritium tritium nom m s 0.11 0 0.11 0 +triton triton nom m s 0.81 0.27 0.35 0.07 +tritons triton nom m p 0.81 0.27 0.46 0.2 +tritura triturer ver 0.25 5.07 0 0.27 ind:pas:3s; +trituraient triturer ver 0.25 5.07 0.01 0.27 ind:imp:3p; +triturais triturer ver 0.25 5.07 0.01 0.14 ind:imp:1s; +triturait triturer ver 0.25 5.07 0.01 1.08 ind:imp:3s; +triturant triturer ver 0.25 5.07 0 0.68 par:pre; +trituration trituration nom f s 0 0.2 0 0.14 +triturations trituration nom f p 0 0.2 0 0.07 +triture triturer ver 0.25 5.07 0.02 0.47 ind:pre:1s;ind:pre:3s; +triturent triturer ver 0.25 5.07 0.01 0.2 ind:pre:3p; +triturer triturer ver 0.25 5.07 0.14 1.22 inf; +triturera triturer ver 0.25 5.07 0 0.07 ind:fut:3s; +triturons triturer ver 0.25 5.07 0 0.07 imp:pre:1p; +trituré triturer ver m s 0.25 5.07 0.02 0.2 par:pas; +triturée triturer ver f s 0.25 5.07 0.02 0.14 par:pas; +triturées triturer ver f p 0.25 5.07 0 0.14 par:pas; +triturés triturer ver m p 0.25 5.07 0 0.14 par:pas; +triumvir triumvir nom m s 0.09 0 0.09 0 +triumvirat triumvirat nom m s 0.57 0.14 0.57 0.14 +trivial trivial adj m s 0.61 3.51 0.47 1.28 +triviale trivial adj f s 0.61 3.51 0.09 0.81 +trivialement trivialement adv 0.01 0.07 0.01 0.07 +triviales trivial adj f p 0.61 3.51 0.04 0.81 +trivialiser trivialiser ver 0.03 0 0.03 0 inf; +trivialité trivialité nom f s 0.03 0.34 0.03 0.27 +trivialités trivialité nom f p 0.03 0.34 0 0.07 +triviaux trivial adj m p 0.61 3.51 0.02 0.61 +trivium trivium nom m s 0.04 0.07 0.04 0.07 +trièrent trier ver 3.68 7.84 0 0.07 ind:pas:3p; +trié trier ver m s 3.68 7.84 0.39 0.54 par:pas; +triée trier ver f s 3.68 7.84 0.11 0.27 par:pas; +triées trier ver f p 3.68 7.84 0.23 0.07 par:pas; +triés trier ver m p 3.68 7.84 0.33 0.81 par:pas; +trobriandais trobriandais nom m 0 0.07 0 0.07 +troc troc nom m s 1.08 2.03 1.08 1.76 +trocart trocart nom m s 0.01 0.14 0.01 0.14 +trochanter trochanter nom m s 0.02 0 0.02 0 +trochaïque trochaïque adj m s 0 0.07 0 0.07 +troche troche nom f s 0 0.14 0 0.14 +trochures trochure nom f p 0 0.07 0 0.07 +trochée trochée nom s 0 0.14 0 0.14 +trocs troc nom m p 1.08 2.03 0 0.27 +troglodyte troglodyte nom m s 0.2 0.68 0.1 0.27 +troglodytes troglodyte nom m p 0.2 0.68 0.1 0.41 +troglodytique troglodytique adj m s 0.01 0.07 0.01 0 +troglodytiques troglodytique adj p 0.01 0.07 0 0.07 +trogne trogne nom f s 0.07 3.85 0.07 3.18 +trognes trogne nom f p 0.07 3.85 0 0.68 +trognon trognon nom m s 0.84 3.38 0.75 2.3 +trognons trognon nom m p 0.84 3.38 0.09 1.08 +trois trois adj_num 380.8 660.34 380.8 660.34 +trois_deux trois_deux nom m 0.01 0 0.01 0 +trois_huit trois_huit nom m 0.17 0 0.17 0 +trois_mâts trois_mâts nom m 0.16 0.47 0.16 0.47 +trois_points trois_points nom m 0.01 0 0.01 0 +trois_quarts trois_quarts nom m 0.59 0.34 0.59 0.34 +trois_quatre trois_quatre nom m 0.02 0.47 0.02 0.47 +trois_six trois_six nom m 0.01 0.07 0.01 0.07 +troisième troisième adj 30.5 57.43 30.47 57.23 +troisièmement troisièmement adv 1.38 0.54 1.38 0.54 +troisièmes troisième nom p 14.6 31.55 0.05 0.2 +troll troll nom m s 2.07 0.27 0.96 0.2 +trolle trolle nom f s 0 0.07 0 0.07 +trolley trolley nom m s 0.48 0.61 0.48 0.47 +trolleybus trolleybus nom m 0 1.08 0 1.08 +trolleys trolley nom m p 0.48 0.61 0 0.14 +trolls troll nom m p 2.07 0.27 1.11 0.07 +trombe trombe nom f s 0.82 9.32 0.61 7.23 +trombes trombe nom f p 0.82 9.32 0.2 2.09 +trombine trombine nom f s 0.02 1.28 0.01 1.01 +trombines trombine nom f p 0.02 1.28 0.01 0.27 +trombinoscope trombinoscope nom m s 0.07 0.14 0.07 0.14 +tromblon tromblon nom m s 0.06 0.68 0.05 0.2 +tromblons tromblon nom m p 0.06 0.68 0.01 0.47 +trombone trombone nom m s 2.96 1.42 1.78 0.54 +trombones trombone nom m p 2.96 1.42 1.17 0.88 +tromboniste tromboniste nom s 0.01 0 0.01 0 +trommel trommel nom m s 0 0.14 0 0.14 +trompa tromper ver 149.09 97.3 0.16 0.61 ind:pas:3s; +trompai tromper ver 149.09 97.3 0 0.2 ind:pas:1s; +trompaient tromper ver 149.09 97.3 0.39 1.96 ind:imp:3p; +trompais tromper ver 149.09 97.3 3.19 4.12 ind:imp:1s;ind:imp:2s; +trompait tromper ver 149.09 97.3 3.34 9.39 ind:imp:3s; +trompant tromper ver 149.09 97.3 0.28 1.62 par:pre; +trompe tromper ver 149.09 97.3 27.72 15.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +trompe_l_oeil trompe_l_oeil nom m 0.33 2.43 0.33 2.43 +trompent tromper ver 149.09 97.3 3.43 3.11 ind:pre:3p; +tromper tromper ver 149.09 97.3 27.42 22.16 inf;;inf;;inf;; +trompera tromper ver 149.09 97.3 0.24 0.27 ind:fut:3s; +tromperai tromper ver 149.09 97.3 0.19 0.41 ind:fut:1s; +tromperaient tromper ver 149.09 97.3 0.01 0.14 cnd:pre:3p; +tromperais tromper ver 149.09 97.3 0.36 0.07 cnd:pre:1s;cnd:pre:2s; +tromperait tromper ver 149.09 97.3 0.39 0.61 cnd:pre:3s; +tromperas tromper ver 149.09 97.3 0.39 0.14 ind:fut:2s; +tromperez tromper ver 149.09 97.3 0.06 0.07 ind:fut:2p; +tromperie tromperie nom f s 1.56 2.16 1.17 1.69 +tromperies tromperie nom f p 1.56 2.16 0.39 0.47 +tromperiez tromper ver 149.09 97.3 0.01 0.14 cnd:pre:2p; +tromperons tromper ver 149.09 97.3 0.01 0 ind:fut:1p; +tromperont tromper ver 149.09 97.3 0.21 0.14 ind:fut:3p; +trompes tromper ver 149.09 97.3 17.21 3.45 ind:pre:2s;sub:pre:2s; +trompeter trompeter ver 0.1 0 0.1 0 inf; +trompette trompette nom s 8.02 11.49 5.71 5.61 +trompettes trompette nom p 8.02 11.49 2.31 5.88 +trompettiste trompettiste nom s 0.77 0.68 0.73 0.68 +trompettistes trompettiste nom p 0.77 0.68 0.04 0 +trompeur trompeur adj m s 3.1 5 0.71 1.28 +trompeurs trompeur adj m p 3.1 5 0.59 0.61 +trompeuse trompeur adj f s 3.1 5 0.22 2.43 +trompeusement trompeusement adv 0.01 0.27 0.01 0.27 +trompeuses trompeur adj f p 3.1 5 1.58 0.68 +trompez tromper ver 149.09 97.3 12.82 2.43 imp:pre:2p;ind:pre:2p; +trompiez tromper ver 149.09 97.3 0.52 0.07 ind:imp:2p; +trompions tromper ver 149.09 97.3 0.14 0.34 ind:imp:1p; +trompons tromper ver 149.09 97.3 0.25 0.34 imp:pre:1p;ind:pre:1p; +trompâmes tromper ver 149.09 97.3 0 0.07 ind:pas:1p; +trompât tromper ver 149.09 97.3 0 0.54 sub:imp:3s; +trompèrent tromper ver 149.09 97.3 0 0.27 ind:pas:3p; +trompé tromper ver m s 149.09 97.3 29.98 17.7 par:pas;par:pas;par:pas; +trompée tromper ver f s 149.09 97.3 12.98 8.11 par:pas; +trompées tromper ver f p 149.09 97.3 0.39 0.41 par:pas; +trompés tromper ver m p 149.09 97.3 7.03 3.04 par:pas; +tronc tronc nom m s 5.81 36.62 4.84 20.74 +tronchais troncher ver 0.09 0.14 0.02 0 ind:imp:1s; +tronche tronche nom f s 8.92 25.68 8.25 22.57 +troncher troncher ver 0.09 0.14 0.03 0.07 inf; +tronches tronche nom f p 8.92 25.68 0.67 3.11 +tronché troncher ver m s 0.09 0.14 0.01 0 par:pas; +tronchée troncher ver f s 0.09 0.14 0.03 0.07 par:pas; +tronconique tronconique adj s 0.01 0.27 0.01 0.27 +troncs tronc nom m p 5.81 36.62 0.97 15.88 +tronquer tronquer ver 0.06 0.61 0.01 0.07 inf; +tronqué tronqué adj m s 0.08 1.08 0.04 0.34 +tronquée tronquer ver f s 0.06 0.61 0.03 0.27 par:pas; +tronquées tronqué adj f p 0.08 1.08 0.01 0.47 +tronqués tronqué adj m p 0.08 1.08 0.01 0 +tronçon tronçon nom m s 0.31 3.99 0.17 2.03 +tronçonnaient tronçonner ver 0.17 0.81 0 0.07 ind:imp:3p; +tronçonnait tronçonner ver 0.17 0.81 0 0.07 ind:imp:3s; +tronçonne tronçonner ver 0.17 0.81 0.01 0.14 imp:pre:2s;ind:pre:3s; +tronçonner tronçonner ver 0.17 0.81 0 0.14 inf; +tronçonneuse tronçonneur nom f s 1.85 1.08 1.63 0.95 +tronçonneuses tronçonneur nom f p 1.85 1.08 0.22 0.14 +tronçonné tronçonner ver m s 0.17 0.81 0.16 0.07 par:pas; +tronçonnée tronçonner ver f s 0.17 0.81 0 0.14 par:pas; +tronçonnées tronçonner ver f p 0.17 0.81 0 0.14 par:pas; +tronçonnés tronçonner ver m p 0.17 0.81 0 0.07 par:pas; +tronçons tronçon nom m p 0.31 3.99 0.14 1.96 +trop trop adv_sup 859.54 790 859.54 790 +trop_perçu trop_perçu nom m s 0.01 0 0.01 0 +trop_plein trop_plein nom m s 0.3 2.64 0.3 2.5 +trop_plein trop_plein nom m p 0.3 2.64 0 0.14 +trope trope nom m s 0 0.07 0 0.07 +trophée trophée nom m s 7.02 4.93 4.85 2.57 +trophées trophée nom m p 7.02 4.93 2.17 2.36 +tropical tropical adj m s 3.28 6.62 1.56 1.28 +tropicale tropical adj f s 3.28 6.62 0.96 2.77 +tropicales tropical adj f p 3.28 6.62 0.45 1.42 +tropicaux tropical adj m p 3.28 6.62 0.3 1.15 +tropique tropique nom m s 1.37 2.43 0.38 0.2 +tropiques tropique nom m p 1.37 2.43 0.99 2.23 +tropisme tropisme nom m s 0 0.61 0 0.54 +tropismes tropisme nom m p 0 0.61 0 0.07 +troposphère troposphère nom f s 0.01 0.2 0.01 0.2 +troposphérique troposphérique adj f s 0 0.2 0 0.14 +troposphériques troposphérique adj p 0 0.2 0 0.07 +tropézienne tropézien nom f s 0 0.14 0 0.14 +tropéziens tropézien adj m p 0 0.07 0 0.07 +troqua troquer ver 1.64 4.73 0.03 0.41 ind:pas:3s; +troquaient troquer ver 1.64 4.73 0 0.27 ind:imp:3p; +troquais troquer ver 1.64 4.73 0 0.07 ind:imp:1s; +troquait troquer ver 1.64 4.73 0.01 0.2 ind:imp:3s; +troquant troquer ver 1.64 4.73 0.04 0.07 par:pre; +troquas troquer ver 1.64 4.73 0 0.07 ind:pas:2s; +troque troquer ver 1.64 4.73 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +troquer troquer ver 1.64 4.73 0.56 2.36 inf; +troquera troquer ver 1.64 4.73 0.01 0 ind:fut:3s; +troquerai troquer ver 1.64 4.73 0.11 0.07 ind:fut:1s; +troquerais troquer ver 1.64 4.73 0.02 0 cnd:pre:1s;cnd:pre:2s; +troquet troquet nom m s 0.34 6.82 0.33 4.66 +troquets troquet nom m p 0.34 6.82 0.01 2.16 +troquez troquer ver 1.64 4.73 0.17 0.07 imp:pre:2p;ind:pre:2p; +troquèrent troquer ver 1.64 4.73 0.1 0.07 ind:pas:3p; +troqué troquer ver m s 1.64 4.73 0.35 0.74 par:pas; +troquée troquer ver f s 1.64 4.73 0.06 0.07 par:pas; +troquées troquer ver f p 1.64 4.73 0.04 0.14 par:pas; +troqués troquer ver m p 1.64 4.73 0.01 0.07 par:pas; +trot trot nom m s 1.67 10.47 1.66 10.41 +trots trot nom m p 1.67 10.47 0.01 0.07 +trotskisme trotskisme nom m s 0 0.14 0 0.14 +trotskiste trotskiste adj s 0.51 0.68 0.51 0.41 +trotskistes trotskiste nom p 0.03 0.47 0.02 0.41 +trotskystes trotskyste nom p 0.01 0.2 0.01 0.2 +trotta trotter ver 2.66 10.27 0.14 0.2 ind:pas:3s; +trottaient trotter ver 2.66 10.27 0.04 0.74 ind:imp:3p; +trottais trotter ver 2.66 10.27 0 0.07 ind:imp:1s; +trottait trotter ver 2.66 10.27 0.54 2.16 ind:imp:3s; +trottant trotter ver 2.66 10.27 0 1.08 par:pre; +trotte trotter ver 2.66 10.27 0.75 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trotte_menu trotte_menu adj m s 0 0.41 0 0.41 +trottent trotter ver 2.66 10.27 0.17 0.81 ind:pre:3p; +trotter trotter ver 2.66 10.27 0.9 2.64 inf; +trottera trotter ver 2.66 10.27 0.01 0.07 ind:fut:3s; +trotterions trotter ver 2.66 10.27 0 0.07 cnd:pre:1p; +trottes trotter ver 2.66 10.27 0.01 0 ind:pre:2s; +trotteur trotteur nom m s 0.1 0.88 0.01 0 +trotteurs trotteur nom m p 0.1 0.88 0.02 0.27 +trotteuse trotteur nom f s 0.1 0.88 0.06 0.54 +trotteuses trotteur nom f p 0.1 0.88 0.01 0.07 +trottez trotter ver 2.66 10.27 0.03 0.07 imp:pre:2p;ind:pre:2p; +trottignolles trottignolle nom m p 0 0.07 0 0.07 +trottin trottin nom m s 0 0.14 0 0.07 +trottina trottiner ver 0.22 7.5 0 0.2 ind:pas:3s; +trottinais trottiner ver 0.22 7.5 0 0.07 ind:imp:1s; +trottinait trottiner ver 0.22 7.5 0.01 1.55 ind:imp:3s; +trottinant trottiner ver 0.22 7.5 0.01 2.64 par:pre; +trottine trottiner ver 0.22 7.5 0.01 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trottinement trottinement nom m s 0.01 0.81 0.01 0.74 +trottinements trottinement nom m p 0.01 0.81 0 0.07 +trottinent trottiner ver 0.22 7.5 0 0.2 ind:pre:3p; +trottiner trottiner ver 0.22 7.5 0.03 1.62 inf; +trottinerait trottiner ver 0.22 7.5 0 0.07 cnd:pre:3s; +trottinette trottinette nom f s 0.35 0.81 0.32 0.68 +trottinettes trottinette nom f p 0.35 0.81 0.04 0.14 +trottinez trottiner ver 0.22 7.5 0.14 0 imp:pre:2p;ind:pre:2p; +trottinions trottiner ver 0.22 7.5 0 0.07 ind:imp:1p; +trottins trottin nom m p 0 0.14 0 0.07 +trottiné trottiner ver m s 0.22 7.5 0.01 0.14 par:pas; +trottions trotter ver 2.66 10.27 0 0.14 ind:imp:1p; +trottoir trottoir nom m s 10.87 87.36 9.93 70.54 +trottoirs trottoir nom m p 10.87 87.36 0.94 16.82 +trottons trotter ver 2.66 10.27 0 0.14 ind:pre:1p; +trotté trotter ver m s 2.66 10.27 0.09 0.41 par:pas; +trou trou nom m s 90.72 108.38 75.32 76.08 +trou_du_cul trou_du_cul nom m s 0.43 0.14 0.29 0.14 +trou_trou trou_trou nom m s 0 0.34 0 0.14 +trou_trou trou_trou nom m p 0 0.34 0 0.2 +troua trouer ver 4.27 11.76 0 0.34 ind:pas:3s; +trouai trouer ver 4.27 11.76 0 0.07 ind:pas:1s; +trouaient trouer ver 4.27 11.76 0 0.81 ind:imp:3p; +trouais trouer ver 4.27 11.76 0 0.07 ind:imp:1s; +trouait trouer ver 4.27 11.76 0.01 1.22 ind:imp:3s; +trouant trouer ver 4.27 11.76 0.01 0.74 par:pre; +troubades troubade nom m p 0 0.07 0 0.07 +troubadour troubadour nom m s 0.84 1.62 0.5 0.68 +troubadours troubadour nom m p 0.84 1.62 0.34 0.95 +troubla troubler ver 16.33 37.97 0.03 3.51 ind:pas:3s; +troublai troubler ver 16.33 37.97 0 0.07 ind:pas:1s; +troublaient troubler ver 16.33 37.97 0.01 2.03 ind:imp:3p; +troublais troubler ver 16.33 37.97 0 0.14 ind:imp:1s; +troublait troubler ver 16.33 37.97 0.76 4.59 ind:imp:3s; +troublant troublant adj m s 2.74 8.99 1.25 4.19 +troublante troublant adj f s 2.74 8.99 0.93 2.84 +troublantes troublant adj f p 2.74 8.99 0.42 1.08 +troublants troublant adj m p 2.74 8.99 0.14 0.88 +trouble trouble nom m s 12.84 25.68 5.76 18.31 +trouble_fête trouble_fête nom p 0.28 0 0.28 0 +troublent troubler ver 16.33 37.97 0.53 0.95 ind:pre:3p; +troubler troubler ver 16.33 37.97 2.94 8.45 inf; +troublera troubler ver 16.33 37.97 0.15 0.14 ind:fut:3s; +troublerais troubler ver 16.33 37.97 0 0.07 cnd:pre:2s; +troublerait troubler ver 16.33 37.97 0.42 0.41 cnd:pre:3s; +troubleront troubler ver 16.33 37.97 0.01 0.07 ind:fut:3p; +troubles trouble nom m p 12.84 25.68 7.08 7.36 +troublez troubler ver 16.33 37.97 0.5 0.14 imp:pre:2p;ind:pre:2p; +troublât troubler ver 16.33 37.97 0.01 0.14 sub:imp:3s; +troublèrent troubler ver 16.33 37.97 0 0.61 ind:pas:3p; +troublé troubler ver m s 16.33 37.97 4.58 7.5 par:pas; +troublée troubler ver f s 16.33 37.97 1.72 3.45 par:pas; +troublées troubler ver f p 16.33 37.97 0.04 0.41 par:pas; +troublés troublé adj m p 3.32 7.97 0.57 1.08 +trouduc trouduc nom m s 3.68 0.41 3.68 0.41 +trouducuteries trouducuterie nom f p 0 0.07 0 0.07 +troue trouer ver 4.27 11.76 1.3 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trouent trouer ver 4.27 11.76 0.04 0.95 ind:pre:3p; +trouer trouer ver 4.27 11.76 1.32 1.35 inf; +trouerai trouer ver 4.27 11.76 0.02 0 ind:fut:1s; +trouerais trouer ver 4.27 11.76 0.03 0 cnd:pre:1s; +trouez trouer ver 4.27 11.76 0.3 0 imp:pre:2p;ind:pre:2p; +troufignard troufignard nom m s 0 0.07 0 0.07 +troufignon troufignon nom m s 0.03 0.14 0.02 0.14 +troufignons troufignon nom m p 0.03 0.14 0.01 0 +troufion troufion nom m s 1.13 1.76 0.78 0.68 +troufions troufion nom m p 1.13 1.76 0.34 1.08 +trouillait trouiller ver 0 0.07 0 0.07 ind:imp:3s; +trouillard trouillard nom m s 3.76 1.01 3.34 0.54 +trouillarde trouillard adj f s 1.66 0.54 0.26 0 +trouillards trouillard nom m p 3.76 1.01 0.27 0.47 +trouille trouille nom f s 17.43 15.74 16.9 14.46 +trouilles trouille nom f p 17.43 15.74 0.53 1.28 +trouillomètre trouillomètre nom m s 0.14 0.2 0.14 0.2 +troupe troupe nom f s 30.93 105.41 10.3 32.3 +troupeau troupeau nom m s 11.48 25.54 9.73 16.28 +troupeaux troupeau nom m p 11.48 25.54 1.76 9.26 +troupes troupe nom f p 30.93 105.41 20.64 73.11 +troupier troupier nom m s 0.2 1.22 0.06 0.47 +troupiers troupier nom m p 0.2 1.22 0.14 0.74 +trous trou nom m p 90.72 108.38 15.4 32.3 +trou_du_cul trou_du_cul nom m p 0.43 0.14 0.14 0 +troussa trousser ver 0.39 2.3 0 0.07 ind:pas:3s; +troussaient trousser ver 0.39 2.3 0 0.07 ind:imp:3p; +troussait trousser ver 0.39 2.3 0 0.34 ind:imp:3s; +troussant trousser ver 0.39 2.3 0 0.27 par:pre; +trousse trousse nom f s 8.79 8.92 3.77 4.59 +trousseau trousseau nom m s 2.14 5.95 2.13 5.41 +trousseaux trousseau nom m p 2.14 5.95 0.01 0.54 +troussequin troussequin nom m s 0 0.07 0 0.07 +trousser trousser ver 0.39 2.3 0.01 0.47 inf; +trousses trousse nom f p 8.79 8.92 5.03 4.32 +trousseur trousseur nom m s 0 0.14 0 0.14 +troussèrent trousser ver 0.39 2.3 0 0.07 ind:pas:3p; +troussé trousser ver m s 0.39 2.3 0.14 0.27 par:pas; +troussée trousser ver f s 0.39 2.3 0.11 0.27 par:pas; +troussées troussé adj f p 0 1.01 0 0.34 +troussés troussé adj m p 0 1.01 0 0.14 +trouva trouver ver 1335.49 972.5 4.37 59.53 ind:pas:3s; +trouvable trouvable adj s 0.04 0.07 0.04 0.07 +trouvai trouver ver 1335.49 972.5 1 18.51 ind:pas:1s; +trouvaient trouver ver 1335.49 972.5 3.38 36.35 ind:imp:3p; +trouvaille trouvaille nom f s 1.9 7.84 1.38 5.14 +trouvailles trouvaille nom f p 1.9 7.84 0.52 2.7 +trouvais trouver ver 1335.49 972.5 13.84 37.84 ind:imp:1s;ind:imp:2s; +trouvait trouver ver 1335.49 972.5 17.91 149.19 ind:imp:3s; +trouvant trouver ver 1335.49 972.5 2.57 15.14 par:pre; +trouvas trouver ver 1335.49 972.5 0 0.14 ind:pas:2s; +trouvasse trouver ver 1335.49 972.5 0 0.14 sub:imp:1s; +trouvassent trouver ver 1335.49 972.5 0 0.34 sub:imp:3p; +trouve trouver ver 1335.49 972.5 284.45 163.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +trouvent trouver ver 1335.49 972.5 22.04 22.5 ind:pre:3p;sub:pre:3p; +trouver trouver ver 1335.49 972.5 324.94 192.7 inf;;inf;;inf;;inf;; +trouvera trouver ver 1335.49 972.5 29.3 11.42 ind:fut:3s; +trouverai trouver ver 1335.49 972.5 26.27 4.12 ind:fut:1s; +trouveraient trouver ver 1335.49 972.5 0.75 3.58 cnd:pre:3p; +trouverais trouver ver 1335.49 972.5 6.35 4.93 cnd:pre:1s;cnd:pre:2s; +trouverait trouver ver 1335.49 972.5 4.24 15.34 cnd:pre:3s; +trouveras trouver ver 1335.49 972.5 19.1 3.78 ind:fut:2s; +trouverez trouver ver 1335.49 972.5 18.23 5.61 ind:fut:2p; +trouveriez trouver ver 1335.49 972.5 1.05 0.41 cnd:pre:2p; +trouverions trouver ver 1335.49 972.5 0.28 1.08 cnd:pre:1p; +trouverons trouver ver 1335.49 972.5 8.06 1.55 ind:fut:1p; +trouveront trouver ver 1335.49 972.5 6.99 3.45 ind:fut:3p; +trouves trouver ver 1335.49 972.5 70.05 17.91 ind:pre:2s;sub:pre:1p;sub:pre:2s; +trouveur trouveur nom m s 0.03 0.07 0.02 0 +trouveurs trouveur nom m p 0.03 0.07 0.01 0.07 +trouvez trouver ver 1335.49 972.5 62.69 14.12 imp:pre:2p;ind:pre:2p; +trouviez trouver ver 1335.49 972.5 2.98 1.01 ind:imp:2p; +trouvions trouver ver 1335.49 972.5 1.39 6.28 ind:imp:1p;sub:pre:1p; +trouvons trouver ver 1335.49 972.5 10.25 4.32 imp:pre:1p;ind:pre:1p; +trouvâmes trouver ver 1335.49 972.5 0.28 2.7 ind:pas:1p; +trouvât trouver ver 1335.49 972.5 0 3.85 sub:imp:3s; +trouvère trouvère nom m s 0.2 0.2 0.2 0.07 +trouvèrent trouver ver 1335.49 972.5 0.88 8.31 ind:pas:3p; +trouvères trouvère nom m p 0.2 0.2 0 0.14 +trouvé trouver ver m s 1335.49 972.5 339.29 135.74 par:pas;par:pas;par:pas; +trouvée trouver ver f s 1335.49 972.5 36.28 16.42 par:pas; +trouvées trouver ver f p 1335.49 972.5 5.44 2.77 par:pas; +trouvés trouver ver m p 1335.49 972.5 10.85 7.64 par:pas;par:pas;par:pas; +trouèrent trouer ver 4.27 11.76 0 0.07 ind:pas:3p; +troué trouer ver m s 4.27 11.76 0.89 1.96 imp:pre:2s;par:pas; +trouée trouée nom f s 0.3 5.81 0.27 5 +trouées troué adj f p 0.96 5.27 0.43 1.01 +troués troué adj m p 0.96 5.27 0.2 0.74 +troyen troyen adj m s 0.24 0.14 0.23 0.07 +troyenne troyen adj f s 0.24 0.14 0.01 0.07 +troène troène nom m s 0.02 1.28 0.01 0.07 +troènes troène nom m p 0.02 1.28 0.01 1.22 +troïka troïka nom f s 0 0.81 0 0.54 +troïkas troïka nom f p 0 0.81 0 0.27 +truand truand nom m s 5.82 6.49 2.52 2.57 +truandage truandage nom m s 0 0.68 0 0.54 +truandages truandage nom m p 0 0.68 0 0.14 +truandaille truandaille nom f s 0 0.27 0 0.27 +truande truand nom f s 5.82 6.49 0.03 0.14 +truander truander ver 0.35 0.14 0.13 0 inf; +truanderie truanderie nom f s 0 0.54 0 0.54 +truandes truander ver 0.35 0.14 0.02 0 ind:pre:2s; +truands truand nom m p 5.82 6.49 3.27 3.72 +truandé truander ver m s 0.35 0.14 0.17 0.07 par:pas; +trublion trublion nom m s 0.09 0.34 0.08 0.14 +trublions trublion nom m p 0.09 0.34 0.01 0.2 +truc truc nom m s 381.34 87.77 274.94 51.15 +trucage trucage nom m s 0.69 0.41 0.25 0.41 +trucages trucage nom m p 0.69 0.41 0.44 0 +truchement truchement nom m s 0.14 2.57 0.14 2.43 +truchements truchement nom m p 0.14 2.57 0 0.14 +trucida trucider ver 1.01 1.22 0 0.34 ind:pas:3s; +trucidais trucider ver 1.01 1.22 0 0.07 ind:imp:1s; +trucidant trucider ver 1.01 1.22 0 0.07 par:pre; +trucident trucider ver 1.01 1.22 0.01 0 ind:pre:3p; +trucider trucider ver 1.01 1.22 0.43 0.47 inf; +truciderai trucider ver 1.01 1.22 0.03 0 ind:fut:1s; +trucides trucider ver 1.01 1.22 0.01 0 ind:pre:2s; +trucidons trucider ver 1.01 1.22 0.01 0 imp:pre:1p; +trucidé trucider ver m s 1.01 1.22 0.39 0.14 par:pas; +trucidée trucider ver f s 1.01 1.22 0.01 0.14 par:pas; +trucidés trucider ver m p 1.01 1.22 0.12 0 par:pas; +truck truck nom m s 0.39 0.07 0.35 0 +trucks truck nom m p 0.39 0.07 0.04 0.07 +trucmuche trucmuche nom m s 0.11 0.14 0.11 0.14 +trucs truc nom m p 381.34 87.77 106.41 36.62 +truculence truculence nom f s 0 0.27 0 0.27 +truculent truculent adj m s 0.02 0.54 0.02 0.27 +truculente truculent adj f s 0.02 0.54 0 0.27 +truelle truelle nom f s 0.73 2.43 0.73 2.3 +truelles truelle nom f p 0.73 2.43 0 0.14 +truffaient truffer ver 1.29 3.85 0 0.14 ind:imp:3p; +truffait truffer ver 1.29 3.85 0 0.14 ind:imp:3s; +truffant truffer ver 1.29 3.85 0.03 0.2 par:pre; +truffe truffe nom f s 2.65 4.73 0.82 3.38 +truffer truffer ver 1.29 3.85 0.08 0.14 inf; +truffes truffe nom f p 2.65 4.73 1.83 1.35 +truffier truffier nom m s 0.01 0.34 0 0.14 +truffiers truffier nom m p 0.01 0.34 0.01 0.2 +truffons truffer ver 1.29 3.85 0.01 0 imp:pre:1p; +truffé truffer ver m s 1.29 3.85 0.69 0.74 par:pas; +truffée truffer ver f s 1.29 3.85 0.27 0.81 par:pas; +truffées truffer ver f p 1.29 3.85 0.02 0.41 par:pas; +truffés truffer ver m p 1.29 3.85 0.12 1.15 par:pas; +truie truie nom f s 3.35 2.36 3.16 2.16 +truies truie nom f p 3.35 2.36 0.19 0.2 +truisme truisme nom m s 0.03 0.2 0.02 0.14 +truismes truisme nom m p 0.03 0.2 0.01 0.07 +truite truite nom f s 3.65 7.91 2.35 3.38 +truitelle truitelle nom f s 0 0.07 0 0.07 +truites truite nom f p 3.65 7.91 1.3 4.53 +trumeau trumeau nom m s 0.01 0.61 0.01 0.34 +trumeaux trumeau nom m p 0.01 0.61 0 0.27 +truqua truquer ver 4.62 3.45 0 0.07 ind:pas:3s; +truquage truquage nom m s 0.45 1.15 0.34 0.54 +truquages truquage nom m p 0.45 1.15 0.11 0.61 +truquaient truquer ver 4.62 3.45 0.02 0.07 ind:imp:3p; +truquait truquer ver 4.62 3.45 0.05 0 ind:imp:3s; +truquant truquer ver 4.62 3.45 0.04 0.14 par:pre; +truque truquer ver 4.62 3.45 0.59 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +truquer truquer ver 4.62 3.45 0.85 0.95 inf; +truquerai truquer ver 4.62 3.45 0.03 0.07 ind:fut:1s; +truquerez truquer ver 4.62 3.45 0.02 0 ind:fut:2p; +truqueur truqueur nom m s 0.28 0.34 0.25 0.2 +truqueurs truqueur nom m p 0.28 0.34 0.01 0.07 +truqueuse truqueur nom f s 0.28 0.34 0.02 0.07 +truquez truquer ver 4.62 3.45 0.01 0 imp:pre:2p; +truquions truquer ver 4.62 3.45 0 0.07 ind:imp:1p; +truqué truquer ver m s 4.62 3.45 1.88 0.88 par:pas; +truquée truquer ver f s 4.62 3.45 0.71 0.34 par:pas; +truquées truqué adj f p 1.6 2.03 0.29 0.47 +truqués truquer ver m p 4.62 3.45 0.31 0.2 par:pas; +trusquin trusquin nom m s 0 0.14 0 0.14 +trust trust nom m s 1.16 1.08 1.11 0.54 +trustais truster ver 0.02 0.34 0 0.07 ind:imp:1s; +trustait truster ver 0.02 0.34 0 0.07 ind:imp:3s; +truste truster ver 0.02 0.34 0 0.07 ind:pre:3s; +trustee trustee nom m s 0 0.27 0 0.07 +trustees trustee nom m p 0 0.27 0 0.2 +trusteeship trusteeship nom m s 0 0.41 0 0.34 +trusteeships trusteeship nom m p 0 0.41 0 0.07 +truster truster ver 0.02 0.34 0.02 0.07 inf; +trusterait truster ver 0.02 0.34 0 0.07 cnd:pre:3s; +trusts trust nom m p 1.16 1.08 0.05 0.54 +trypanosome trypanosome nom m s 0 0.14 0 0.07 +trypanosomes trypanosome nom m p 0 0.14 0 0.07 +trypanosomiase trypanosomiase nom f s 0.13 0 0.13 0 +trypsine trypsine nom f s 0.01 0 0.01 0 +tryptophane tryptophane nom m s 0.02 0 0.02 0 +trâlée trâlée nom f s 0 0.07 0 0.07 +trèfle trèfle nom m s 3.52 5 2.75 4.19 +trèfles trèfle nom m p 3.52 5 0.78 0.81 +trèpe trèpe nom m s 0 1.49 0 1.49 +très très adv_sup 1589.92 1120.81 1589.92 1120.81 +trébucha trébucher ver 4.91 12.64 0.01 1.82 ind:pas:3s; +trébuchai trébucher ver 4.91 12.64 0.01 0.27 ind:pas:1s; +trébuchaient trébucher ver 4.91 12.64 0 0.2 ind:imp:3p; +trébuchais trébucher ver 4.91 12.64 0.05 0.27 ind:imp:1s; +trébuchait trébucher ver 4.91 12.64 0.04 1.49 ind:imp:3s; +trébuchant trébucher ver 4.91 12.64 0.23 3.31 par:pre; +trébuchante trébuchant adj f s 0.07 1.55 0 0.47 +trébuchantes trébuchant adj f p 0.07 1.55 0.04 0.34 +trébuchants trébuchant adj m p 0.07 1.55 0 0.2 +trébuche trébucher ver 4.91 12.64 0.88 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trébuchement trébuchement nom m s 0.02 0.2 0.01 0.07 +trébuchements trébuchement nom m p 0.02 0.2 0.01 0.14 +trébuchent trébucher ver 4.91 12.64 0.13 0.47 ind:pre:3p; +trébucher trébucher ver 4.91 12.64 1.14 1.89 inf; +trébuches trébucher ver 4.91 12.64 0.17 0 ind:pre:2s; +trébuchet trébuchet nom m s 0.01 0.27 0.01 0.27 +trébuchez trébucher ver 4.91 12.64 0.05 0 imp:pre:2p;ind:pre:2p; +trébuchons trébucher ver 4.91 12.64 0 0.34 imp:pre:1p;ind:pre:1p; +trébuché trébucher ver m s 4.91 12.64 2.21 0.74 par:pas; +tréfilés tréfiler ver m p 0 0.07 0 0.07 par:pas; +tréflières tréflière nom f p 0 0.07 0 0.07 +tréfonds tréfonds nom m 0.62 2.91 0.62 2.91 +tréma tréma nom m s 0.04 0.14 0.02 0.14 +trémail trémail nom m s 0 0.14 0 0.14 +trémas tréma nom m p 0.04 0.14 0.01 0 +trémie trémie nom f s 0.1 0.41 0.1 0 +trémies trémie nom f p 0.1 0.41 0 0.41 +trémière trémière adj f s 0.01 1.89 0 0.54 +trémières trémière adj f p 0.01 1.89 0.01 1.35 +trémois trémois nom m 0 0.07 0 0.07 +trémolo trémolo nom m s 0.19 1.15 0.16 0.74 +trémolos trémolo nom m p 0.19 1.15 0.02 0.41 +trémoussa trémousser ver 0.93 2.23 0 0.14 ind:pas:3s; +trémoussaient trémousser ver 0.93 2.23 0 0.47 ind:imp:3p; +trémoussait trémousser ver 0.93 2.23 0.03 0.27 ind:imp:3s; +trémoussant trémousser ver 0.93 2.23 0.02 0.34 par:pre; +trémousse trémousser ver 0.93 2.23 0.36 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trémoussement trémoussement nom m s 0 0.34 0 0.14 +trémoussements trémoussement nom m p 0 0.34 0 0.2 +trémoussent trémousser ver 0.93 2.23 0.06 0.07 ind:pre:3p; +trémousser trémousser ver 0.93 2.23 0.45 0.41 inf; +trémousses trémousser ver 0.93 2.23 0.02 0 ind:pre:2s; +trémoussât trémousser ver 0.93 2.23 0 0.07 sub:imp:3s; +trémoussèrent trémousser ver 0.93 2.23 0 0.07 ind:pas:3p; +trémulant trémuler ver 0 0.27 0 0.2 par:pre; +trémulante trémulant adj f s 0 0.14 0 0.07 +trémulation trémulation nom f s 0 0.34 0 0.34 +trémuler trémuler ver 0 0.27 0 0.07 inf; +trépan trépan nom m s 0.05 0.14 0.05 0.14 +trépanation trépanation nom f s 0.2 0 0.2 0 +trépaner trépaner ver 0.17 0.34 0.03 0.34 inf; +trépané trépaner ver m s 0.17 0.34 0.14 0 par:pas; +trépanée trépané nom f s 0 0.2 0 0.14 +trépas trépas nom m 0.38 1.55 0.38 1.55 +trépassaient trépasser ver 0.39 1.08 0 0.07 ind:imp:3p; +trépassait trépasser ver 0.39 1.08 0 0.14 ind:imp:3s; +trépassant trépasser ver 0.39 1.08 0 0.07 par:pre; +trépasse trépasser ver 0.39 1.08 0.23 0.14 ind:pre:3s; +trépassent trépasser ver 0.39 1.08 0.01 0.14 ind:pre:3p; +trépasser trépasser ver 0.39 1.08 0.01 0.34 inf; +trépasserait trépasser ver 0.39 1.08 0 0.07 cnd:pre:3s; +trépasseront trépasser ver 0.39 1.08 0.02 0 ind:fut:3p; +trépassé trépasser ver m s 0.39 1.08 0.12 0.07 par:pas; +trépassée trépassé adj f s 0.02 0.2 0.01 0.07 +trépassées trépassé nom f p 0.16 0.47 0.01 0 +trépassés trépassé nom m p 0.16 0.47 0.03 0.34 +trépidant trépidant adj m s 0.33 1.28 0.03 0.34 +trépidante trépidant adj f s 0.33 1.28 0.18 0.61 +trépidantes trépidant adj f p 0.33 1.28 0.12 0.14 +trépidants trépidant adj m p 0.33 1.28 0 0.2 +trépidation trépidation nom f s 0.1 1.96 0.1 1.22 +trépidations trépidation nom f p 0.1 1.96 0 0.74 +trépide trépider ver 0.01 0.68 0.01 0.2 ind:pre:3s; +trépident trépider ver 0.01 0.68 0 0.07 ind:pre:3p; +trépider trépider ver 0.01 0.68 0 0.27 inf; +trépied trépied nom m s 1.15 2.7 1.14 2.3 +trépieds trépied nom m p 1.15 2.7 0.01 0.41 +trépigna trépigner ver 0.32 3.85 0.01 0.2 ind:pas:3s; +trépignaient trépigner ver 0.32 3.85 0.14 0.2 ind:imp:3p; +trépignais trépigner ver 0.32 3.85 0 0.27 ind:imp:1s; +trépignait trépigner ver 0.32 3.85 0.01 1.15 ind:imp:3s; +trépignant trépignant adj m s 0.01 1.08 0.01 0.95 +trépignante trépignant adj f s 0.01 1.08 0 0.07 +trépignants trépignant adj m p 0.01 1.08 0 0.07 +trépigne trépigner ver 0.32 3.85 0.06 0.74 ind:pre:1s;ind:pre:3s; +trépignement trépignement nom m s 0.02 0.61 0.01 0.07 +trépignements trépignement nom m p 0.02 0.61 0.01 0.54 +trépignent trépigner ver 0.32 3.85 0.05 0.2 ind:pre:3p; +trépigner trépigner ver 0.32 3.85 0.02 0.81 inf; +trépignerai trépigner ver 0.32 3.85 0 0.07 ind:fut:1s; +trépignez trépigner ver 0.32 3.85 0.01 0.07 imp:pre:2p;ind:pre:2p; +trépigné trépigner ver m s 0.32 3.85 0.01 0.07 par:pas; +trépignée trépigner ver f s 0.32 3.85 0 0.07 par:pas; +tréponème tréponème nom m s 0 0.27 0 0.07 +tréponèmes tréponème nom m p 0 0.27 0 0.2 +trésor trésor nom m s 49.92 34.66 44.86 20.14 +trésorerie trésorerie nom f s 0.4 0.81 0.4 0.81 +trésorier trésorier nom m s 1.83 1.82 1.55 1.62 +trésorier_payeur trésorier_payeur nom m s 0.02 0.07 0.02 0.07 +trésoriers trésorier nom m p 1.83 1.82 0.02 0 +trésorière trésorier nom f s 1.83 1.82 0.26 0.2 +trésors trésor nom m p 49.92 34.66 5.07 14.53 +tréteau tréteau nom m s 0.64 3.99 0.37 0.81 +tréteaux tréteau nom m p 0.64 3.99 0.27 3.18 +trêve trêve nom f s 6.69 11.42 6.68 11.15 +trêves trêve nom f p 6.69 11.42 0.01 0.27 +trôler trôler ver 0.01 0 0.01 0 inf; +trôna trôner ver 0.34 10.2 0 0.07 ind:pas:3s; +trônaient trôner ver 0.34 10.2 0 0.81 ind:imp:3p; +trônais trôner ver 0.34 10.2 0 0.07 ind:imp:1s; +trônait trôner ver 0.34 10.2 0.11 5.34 ind:imp:3s; +trônant trôner ver 0.34 10.2 0.11 1.49 par:pre; +trône trône nom m s 14.32 12.03 13.99 11.49 +trônent trôner ver 0.34 10.2 0.01 0.34 ind:pre:3p; +trôner trôner ver 0.34 10.2 0.03 0.34 inf; +trônerait trôner ver 0.34 10.2 0 0.07 cnd:pre:3s; +trônes trône nom m p 14.32 12.03 0.33 0.54 +trôné trôner ver m s 0.34 10.2 0 0.07 par:pas; +tsar tsar nom m s 14.3 8.85 11.65 6.82 +tsarine tsar nom f s 14.3 8.85 2.27 0.88 +tsarisme tsarisme nom m s 0 0.34 0 0.34 +tsariste tsariste adj m s 0.1 0.34 0.1 0.27 +tsaristes tsariste adj m p 0.1 0.34 0 0.07 +tsars tsar nom m p 14.3 8.85 0.38 1.15 +tsarévitch tsarévitch nom m s 2.9 0 2.9 0 +tsigane tsigane adj s 0.27 0.2 0.27 0.14 +tsiganes tsigane nom p 0.14 0.34 0.01 0.27 +tsoin_tsoin tsoin_tsoin nom m s 0.01 0.47 0.01 0.47 +tss_tss tss_tss nom m 0.01 0.14 0 0.07 +tss_tss tss_tss nom m 0.01 0.14 0.01 0.07 +tsuica tsuica nom f s 0.14 0 0.14 0 +tsunami tsunami nom m s 0.53 0 0.53 0 +tsé_tsé tsé_tsé nom f 0 0.07 0 0.07 +tu tu pro_per s 14661.76 2537.03 14661.76 2537.03 +tu_autem tu_autem nom m s 0 0.07 0 0.07 +tua tuer ver 928.06 171.15 2 2.03 ind:pas:3s; +tuai tuer ver 928.06 171.15 0.25 0.07 ind:pas:1s; +tuaient tuer ver 928.06 171.15 0.91 1.28 ind:imp:3p; +tuais tuer ver 928.06 171.15 1.89 0.54 ind:imp:1s;ind:imp:2s; +tuait tuer ver 928.06 171.15 4.77 5.68 ind:imp:3s; +tuant tuer ver 928.06 171.15 6.42 1.96 par:pre; +tuante tuant adj f s 0.76 1.08 0.01 0.27 +tuantes tuant adj f p 0.76 1.08 0 0.14 +tuants tuant adj m p 0.76 1.08 0.01 0 +tuas tuer ver 928.06 171.15 0.18 0 ind:pas:2s; +tub tub nom m s 0.08 1.15 0.07 1.15 +tuba tuba nom m s 1.44 0.54 1.38 0.47 +tubages tubage nom m p 0 0.07 0 0.07 +tubard tubard adj m s 0.2 1.28 0.08 0.88 +tubarde tubard adj f s 0.2 1.28 0.12 0.14 +tubardise tubardise nom f s 0 0.68 0 0.68 +tubards tubard nom m p 0.16 0.95 0.1 0.34 +tubas tuba nom m p 1.44 0.54 0.06 0.07 +tube tube nom m s 17.4 20.47 12.16 11.35 +tuber tuber ver 0.41 0.34 0.01 0.2 inf; +tubercule tubercule nom m s 0.17 0.61 0.02 0.34 +tubercules tubercule nom m p 0.17 0.61 0.15 0.27 +tuberculeuse tuberculeux adj f s 0.44 2.16 0.38 0.81 +tuberculeuses tuberculeux adj f p 0.44 2.16 0.01 0.27 +tuberculeux tuberculeux adj m 0.44 2.16 0.05 1.08 +tuberculine tuberculine nom f s 0 0.14 0 0.14 +tuberculose tuberculose nom f s 2.44 3.04 2.44 3.04 +tubes tube nom m p 17.4 20.47 5.24 9.12 +tubs tub nom m p 0.08 1.15 0.01 0 +tubulaire tubulaire adj s 0.07 0.27 0.06 0.07 +tubulaires tubulaire adj m p 0.07 0.27 0.01 0.2 +tubule tubule nom m s 0.01 0 0.01 0 +tubuleuses tubuleux adj f p 0 0.07 0 0.07 +tubulure tubulure nom f s 0 1.22 0 0.14 +tubulures tubulure nom f p 0 1.22 0 1.08 +tubé tuber ver m s 0.41 0.34 0.14 0.14 par:pas; +tubéreuse tubéreux adj f s 0.06 0.68 0.04 0.27 +tubéreuses tubéreux adj f p 0.06 0.68 0.02 0.34 +tubéreux tubéreux adj m p 0.06 0.68 0 0.07 +tubérosité tubérosité nom f s 0.01 0 0.01 0 +tudesque tudesque adj s 0 0.47 0 0.27 +tudesques tudesque adj m p 0 0.47 0 0.2 +tudieu tudieu ono 1.11 0.27 1.11 0.27 +tue tuer ver 928.06 171.15 116.46 16.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tue_loup tue_loup nom m s 0.06 0 0.05 0 +tue_loup tue_loup nom m p 0.06 0 0.01 0 +tue_mouche tue_mouche adj m s 0.15 0.54 0 0.07 +tue_mouche tue_mouche adj p 0.15 0.54 0.15 0.47 +tuent tuer ver 928.06 171.15 14.08 3.31 ind:pre:3p; +tuer tuer ver 928.06 171.15 346.18 65.54 inf;;inf;;inf;;inf;; +tuera tuer ver 928.06 171.15 19.27 1.42 ind:fut:3s; +tuerai tuer ver 928.06 171.15 18.55 2.97 ind:fut:1s; +tuerais tuer ver 928.06 171.15 6.7 1.15 cnd:pre:1s;cnd:pre:2s; +tuerait tuer ver 928.06 171.15 8.77 2.23 cnd:pre:3s; +tueras tuer ver 928.06 171.15 3.21 0.41 ind:fut:2s; +tuerez tuer ver 928.06 171.15 1.52 0.2 ind:fut:2p; +tuerie tuerie nom f s 3.17 2.77 2.22 1.35 +tueries tuerie nom f p 3.17 2.77 0.95 1.42 +tueriez tuer ver 928.06 171.15 1.11 0.07 cnd:pre:2p; +tuerions tuer ver 928.06 171.15 0.16 0.07 cnd:pre:1p; +tuerons tuer ver 928.06 171.15 1.69 0.07 ind:fut:1p; +tueront tuer ver 928.06 171.15 8.49 0.61 ind:fut:3p; +tues tuer ver 928.06 171.15 11.2 0.2 ind:pre:2s;sub:pre:2s; +tueur tueur nom m s 64.06 12.43 52.42 7.3 +tueurs tueur nom m p 64.06 12.43 10.32 4.93 +tueuse tueuse nom f s 6.26 0.27 6.26 0.27 +tueuses tueur nom f p 64.06 12.43 1.31 0.2 +tuez tuer ver 928.06 171.15 27.32 2.43 imp:pre:2p;ind:pre:2p; +tuf tuf nom m s 0.01 0.54 0.01 0.54 +tuffeau tuffeau nom m s 0 0.34 0 0.27 +tuffeaux tuffeau nom m p 0 0.34 0 0.07 +tuiez tuer ver 928.06 171.15 1.06 0.07 ind:imp:2p;sub:pre:2p; +tuile tuile nom f s 2.71 13.38 1.28 2.84 +tuilerie tuilerie nom f s 0.03 1.15 0.03 0.61 +tuileries tuilerie nom f p 0.03 1.15 0 0.54 +tuiles tuile nom f p 2.71 13.38 1.42 10.54 +tuions tuer ver 928.06 171.15 0.03 0 ind:imp:1p; +tularémie tularémie nom f s 0.18 0 0.18 0 +tulipe tulipe nom f s 2.63 2.91 1.53 0.54 +tulipes tulipe nom f p 2.63 2.91 1.1 2.36 +tulipier tulipier nom m s 0.01 0.14 0.01 0 +tulipiers tulipier nom m p 0.01 0.14 0 0.14 +tulle tulle nom m s 0.29 3.51 0.19 3.31 +tulles tulle nom m p 0.29 3.51 0.1 0.2 +tumescence tumescence nom f s 0.04 0 0.04 0 +tumescent tumescent adj m s 0.01 0 0.01 0 +tumeur tumeur nom f s 7.96 1.89 6.7 1.28 +tumeurs tumeur nom f p 7.96 1.89 1.27 0.61 +tumorale tumoral adj f s 0.05 0 0.04 0 +tumoraux tumoral adj m p 0.05 0 0.01 0 +tumuli tumulus nom m p 0.22 1.49 0 0.14 +tumulte tumulte nom m s 1.19 13.11 1.07 12.09 +tumultes tumulte nom m p 1.19 13.11 0.12 1.01 +tumultuaire tumultuaire adj s 0 0.07 0 0.07 +tumultueuse tumultueux adj f s 1.13 5.95 0.31 2.36 +tumultueusement tumultueusement adv 0.02 0.14 0.02 0.14 +tumultueuses tumultueux adj f p 1.13 5.95 0.04 0.88 +tumultueux tumultueux adj m 1.13 5.95 0.78 2.7 +tumulus tumulus nom m 0.22 1.49 0.22 1.35 +tuméfaction tuméfaction nom f s 0.07 0.07 0.07 0.07 +tuméfie tuméfier ver 0 1.08 0 0.07 ind:pre:3s; +tuméfier tuméfier ver 0 1.08 0 0.07 inf; +tuméfié tuméfié adj m s 0.44 2.36 0.36 1.08 +tuméfiée tuméfié adj f s 0.44 2.36 0.04 0.88 +tuméfiées tuméfié adj f p 0.44 2.36 0.02 0.34 +tuméfiés tuméfié adj m p 0.44 2.36 0.03 0.07 +tune tune nom f s 1.23 2.16 0.85 0.2 +tuner tuner nom m s 0.06 0.07 0.06 0.07 +tunes tune nom f p 1.23 2.16 0.38 1.96 +tungstène tungstène nom m s 0.12 0.47 0.12 0.47 +tunique tunique nom f s 1.32 10.27 1.07 8.04 +tuniques tunique nom f p 1.32 10.27 0.25 2.23 +tunisien tunisien adj m s 0.3 3.51 0.15 1.28 +tunisienne tunisien adj f s 0.3 3.51 0.16 0.61 +tunisiennes tunisien adj f p 0.3 3.51 0 0.2 +tunisiens tunisien adj m p 0.3 3.51 0 1.42 +tunnel tunnel nom m s 19.24 14.59 15.88 12.3 +tunnels tunnel nom m p 19.24 14.59 3.36 2.3 +tuons tuer ver 928.06 171.15 2.27 0.41 imp:pre:1p;ind:pre:1p; +tuque tuque nom f s 0 0.07 0 0.07 +turban turban nom m s 0.72 7.3 0.66 6.08 +turbans turban nom m p 0.72 7.3 0.07 1.22 +turbin turbin nom m s 0.41 4.19 0.41 3.92 +turbina turbiner ver 0.35 1.28 0 0.07 ind:pas:3s; +turbinaient turbiner ver 0.35 1.28 0 0.14 ind:imp:3p; +turbinait turbiner ver 0.35 1.28 0 0.07 ind:imp:3s; +turbine turbine nom f s 1.02 1.28 0.51 1.08 +turbiner turbiner ver 0.35 1.28 0.16 0.47 inf; +turbines turbine nom f p 1.02 1.28 0.51 0.2 +turbinez turbiner ver 0.35 1.28 0 0.07 ind:pre:2p; +turbins turbin nom m p 0.41 4.19 0 0.27 +turbiné turbiner ver m s 0.35 1.28 0.01 0.2 par:pas; +turbo turbo nom s 1.19 0.54 1.03 0.54 +turbocompresseur turbocompresseur nom m s 0.14 0 0.01 0 +turbocompresseurs turbocompresseur nom m p 0.14 0 0.14 0 +turbopropulseur turbopropulseur nom m s 0.28 0 0.28 0 +turboréacteur turboréacteur nom m s 0.01 0 0.01 0 +turbos turbo nom p 1.19 0.54 0.15 0 +turbot turbot nom m s 0.12 0.68 0.12 0.68 +turbotière turbotière nom f s 0.01 0.07 0.01 0 +turbotières turbotière nom f p 0.01 0.07 0 0.07 +turbulence turbulence nom f s 1.46 2.36 0.56 1.15 +turbulences turbulence nom f p 1.46 2.36 0.89 1.22 +turbulent turbulent adj m s 1.49 3.04 0.61 1.49 +turbulente turbulent adj f s 1.49 3.04 0.69 0.68 +turbulentes turbulent adj f p 1.49 3.04 0.01 0.2 +turbulents turbulent adj m p 1.49 3.04 0.19 0.68 +turbé turbé nom m s 0 0.34 0 0.27 +turbés turbé nom m p 0 0.34 0 0.07 +turc turc adj m s 4.25 10.54 2.12 4.26 +turco turco nom m s 0.61 0.07 0.61 0 +turcoman turcoman adj m s 0 0.14 0 0.14 +turcomans turcoman nom m p 0 0.34 0 0.27 +turcos turco nom m p 0.61 0.07 0 0.07 +turcs turc adj m p 4.25 10.54 0.56 2.09 +turdus turdus nom m 0 0.2 0 0.2 +turelure turelure nom f s 0 0.07 0 0.07 +turent taire ver 154.46 139.8 0.2 6.62 ind:pas:3p; +turf turf nom m s 0.43 1.82 0.43 1.76 +turfiste turfiste nom s 0.08 0.47 0.03 0.14 +turfistes turfiste nom p 0.08 0.47 0.05 0.34 +turfs turf nom m p 0.43 1.82 0 0.07 +turgescence turgescence nom f s 0.14 0.07 0.14 0.07 +turgescent turgescent adj m s 0.04 0.41 0.03 0.07 +turgescente turgescent adj f s 0.04 0.41 0.01 0.2 +turgescentes turgescent adj f p 0.04 0.41 0 0.07 +turgescents turgescent adj m p 0.04 0.41 0 0.07 +turgide turgide adj m s 0.04 0 0.04 0 +turgotine turgotine nom f s 0 0.07 0 0.07 +turinois turinois adj m 0.21 0.07 0.2 0 +turinoise turinois adj f s 0.21 0.07 0.01 0.07 +turista turista nom f s 0.06 0.54 0.05 0 +turistas turista nom f p 0.06 0.54 0.01 0.54 +turkmènes turkmène adj m p 0 0.14 0 0.14 +turlu turlu nom m s 0.01 0.34 0.01 0.34 +turlupinade turlupinade nom f s 0 0.14 0 0.07 +turlupinades turlupinade nom f p 0 0.14 0 0.07 +turlupinaient turlupiner ver 0.35 1.28 0 0.07 ind:imp:3p; +turlupinait turlupiner ver 0.35 1.28 0.02 0.47 ind:imp:3s; +turlupine turlupiner ver 0.35 1.28 0.3 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +turlupinent turlupiner ver 0.35 1.28 0.01 0.07 ind:pre:3p; +turlupiner turlupiner ver 0.35 1.28 0.01 0.14 inf; +turlupinera turlupiner ver 0.35 1.28 0.01 0 ind:fut:3s; +turlupins turlupin nom m p 0 0.14 0 0.14 +turlupiné turlupiner ver m s 0.35 1.28 0 0.14 par:pas; +turlupinée turlupiner ver f s 0.35 1.28 0 0.14 par:pas; +turlutaines turlutaine nom f p 0 0.07 0 0.07 +turlute turluter ver 0.25 0.27 0.05 0.07 ind:pre:1s;ind:pre:3s; +turlutent turluter ver 0.25 0.27 0 0.07 ind:pre:3p; +turluter turluter ver 0.25 0.27 0 0.07 inf; +turlutes turluter ver 0.25 0.27 0.2 0.07 ind:pre:2s; +turlutte turlutte nom f s 0.26 0.2 0.26 0.2 +turlututu turlututu ono 0.01 0.14 0.01 0.14 +turne turne nom f s 0.56 1.96 0.56 1.76 +turnes turne nom f p 0.56 1.96 0 0.2 +turnover turnover nom m s 0.03 0 0.03 0 +turpides turpide adj f p 0 0.07 0 0.07 +turpitude turpitude nom f s 0.54 2.36 0.18 0.41 +turpitudes turpitude nom f p 0.54 2.36 0.35 1.96 +turque turc adj f s 4.25 10.54 1.33 2.7 +turquerie turquerie nom f s 0 0.14 0 0.14 +turques turc nom f p 1.75 3.92 0.32 0.07 +turquin turquin adj m s 0 0.14 0 0.14 +turquoise turquoise nom f s 0.65 1.01 0.3 0.61 +turquoises turquoise nom f p 0.65 1.01 0.35 0.41 +tus taire ver m p 154.46 139.8 0.4 4.39 ind:pas:1s;par:pas;par:pas; +tussent taire ver 154.46 139.8 0 0.07 sub:imp:3p; +tussilage tussilage nom m s 0.01 0 0.01 0 +tussor tussor nom m s 0.01 1.69 0.01 1.69 +tut taire ver 154.46 139.8 0.69 28.92 ind:pas:3s; +tutelle tutelle nom f s 2 2.43 2 2.43 +tuteur tuteur nom m s 4.6 2.36 3.28 2.03 +tuteurs tuteur nom m p 4.6 2.36 0.46 0.27 +tutoie tutoyer ver 6.25 10.07 1.25 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tutoiement tutoiement nom m s 0.38 1.89 0.38 1.82 +tutoiements tutoiement nom m p 0.38 1.89 0 0.07 +tutoient tutoyer ver 6.25 10.07 0.13 0.41 ind:pre:3p; +tutoiera tutoyer ver 6.25 10.07 0 0.07 ind:fut:3s; +tutoierai tutoyer ver 6.25 10.07 0 0.07 ind:fut:1s; +tutoies tutoyer ver 6.25 10.07 0.41 0.14 ind:pre:2s; +tutorat tutorat nom m s 0.33 0 0.33 0 +tutorial tutorial adj m s 0.04 0.14 0.03 0.14 +tutoriaux tutorial adj m p 0.04 0.14 0.01 0 +tutoya tutoyer ver 6.25 10.07 0 0.34 ind:pas:3s; +tutoyaient tutoyer ver 6.25 10.07 0 0.41 ind:imp:3p; +tutoyais tutoyer ver 6.25 10.07 0 0.14 ind:imp:1s; +tutoyait tutoyer ver 6.25 10.07 0.37 1.76 ind:imp:3s; +tutoyant tutoyer ver 6.25 10.07 0 0.54 par:pre; +tutoyer tutoyer ver 6.25 10.07 3.05 2.84 inf; +tutoyeuses tutoyeur adj f p 0 0.07 0 0.07 +tutoyez tutoyer ver 6.25 10.07 0.55 0.07 imp:pre:2p;ind:pre:2p; +tutoyions tutoyer ver 6.25 10.07 0 0.07 ind:imp:1p; +tutoyons tutoyer ver 6.25 10.07 0.34 0.14 imp:pre:1p;ind:pre:1p; +tutoyât tutoyer ver 6.25 10.07 0 0.07 sub:imp:3s; +tutoyèrent tutoyer ver 6.25 10.07 0 0.07 ind:pas:3p; +tutoyé tutoyer ver m s 6.25 10.07 0.01 0.41 par:pas; +tutoyée tutoyer ver f s 6.25 10.07 0.14 0.07 par:pas; +tutoyés tutoyer ver m p 6.25 10.07 0.01 0.14 par:pas; +tutrice tuteur nom f s 4.6 2.36 0.86 0.07 +tutti_frutti tutti_frutti adv 0.09 0.41 0.09 0.41 +tutti_quanti tutti_quanti adv 0.15 0.2 0.15 0.2 +tutu tutu nom m s 0.92 3.51 0.83 2.77 +tutus tutu nom m p 0.92 3.51 0.09 0.74 +tutute tutut nom f s 0 0.34 0 0.34 +tutélaire tutélaire adj s 0.01 1.76 0.01 1.55 +tutélaires tutélaire adj p 0.01 1.76 0 0.2 +tuyau tuyau nom m s 26.73 20.61 17.51 11.96 +tuyautages tuyautage nom m p 0 0.07 0 0.07 +tuyautait tuyauter ver 0.54 0.61 0.01 0.07 ind:imp:3s; +tuyautent tuyauter ver 0.54 0.61 0.03 0 ind:pre:3p; +tuyauter tuyauter ver 0.54 0.61 0.07 0.2 inf; +tuyautera tuyauter ver 0.54 0.61 0.02 0 ind:fut:3s; +tuyauterie tuyauterie nom f s 1.11 1.69 1.1 0.68 +tuyauteries tuyauterie nom f p 1.11 1.69 0.01 1.01 +tuyauteur tuyauteur nom m s 0 0.27 0 0.14 +tuyauteurs tuyauteur nom m p 0 0.27 0 0.14 +tuyauté tuyauter ver m s 0.54 0.61 0.17 0.14 par:pas; +tuyautée tuyauter ver f s 0.54 0.61 0.01 0.07 par:pas; +tuyautées tuyauter ver f p 0.54 0.61 0 0.07 par:pas; +tuyautés tuyauter ver m p 0.54 0.61 0.23 0.07 par:pas; +tuyaux tuyau nom m p 26.73 20.61 9.22 8.65 +tuyère tuyère nom f s 0.04 0.07 0.03 0 +tuyères tuyère nom f p 0.04 0.07 0.01 0.07 +tuât tuer ver 928.06 171.15 0 0.34 sub:imp:3s; +tuèrent tuer ver 928.06 171.15 0.41 0.41 ind:pas:3p; +tué tuer ver m s 928.06 171.15 259.79 46.82 par:pas; +tuée tuer ver f s 928.06 171.15 39.56 5.88 par:pas; +tuées tuer ver f p 928.06 171.15 3.15 0.68 par:pas; +tués tuer ver m p 928.06 171.15 20.66 7.36 par:pas; +tweed tweed nom m s 0 5.34 0 5.14 +tweeds tweed nom m p 0 5.34 0 0.2 +twill twill nom m s 0 0.14 0 0.14 +twin_set twin_set nom m s 0 0.14 0 0.14 +twist twist nom m s 0 0.74 0 0.68 +twistant twister ver 0 0.2 0 0.07 par:pre; +twister twister ver 0 0.2 0 0.07 inf; +twists twist nom m p 0 0.74 0 0.07 +twistées twister ver f p 0 0.2 0 0.07 par:pas; +tympan tympan nom m s 1.25 6.01 0.36 2.5 +tympanique tympanique adj s 0.01 0 0.01 0 +tympanon tympanon nom m s 0.03 0.2 0.03 0.2 +tympans tympan nom m p 1.25 6.01 0.89 3.51 +type type nom m s 334.85 184.19 280.62 145.95 +typer typer ver 0.06 0 0.02 0 inf; +types type nom m p 334.85 184.19 54.23 38.24 +typhique typhique adj s 0 0.14 0 0.07 +typhiques typhique adj m p 0 0.14 0 0.07 +typhon typhon nom m s 0.78 1.89 0.72 1.28 +typhons typhon nom m p 0.78 1.89 0.06 0.61 +typhoïde typhoïde nom f s 0.36 1.01 0.36 1.01 +typhus typhus nom m 1.74 1.76 1.74 1.76 +typique typique adj s 9.34 2.84 8.62 2.3 +typiquement typiquement adv 1.86 1.96 1.86 1.96 +typiques typique adj p 9.34 2.84 0.72 0.54 +typo typo nom m s 0.07 1.49 0.04 1.01 +typographe typographe nom s 0.02 1.08 0.01 0.47 +typographes typographe nom p 0.02 1.08 0.01 0.61 +typographie typographie nom f s 0.34 0.47 0.34 0.47 +typographier typographier ver 0 0.07 0 0.07 inf; +typographique typographique adj f s 0.06 0.34 0.05 0.2 +typographiques typographique adj p 0.06 0.34 0.01 0.14 +typologie typologie nom f s 0.1 0.2 0.1 0.2 +typomètre typomètre nom m s 0 0.14 0 0.14 +typos typo nom m p 0.07 1.49 0.02 0.47 +typé typer ver m s 0.06 0 0.03 0 par:pas; +typée typé adj f s 0.01 0.14 0.01 0 +typés typer ver m p 0.06 0 0.01 0 par:pas; +tyran tyran nom m s 7.79 5.2 6.17 4.59 +tyranneau tyranneau nom m s 0.01 0.14 0 0.14 +tyranneaux tyranneau nom m p 0.01 0.14 0.01 0 +tyrannicide tyrannicide nom s 0.01 0.14 0 0.07 +tyrannicides tyrannicide nom p 0.01 0.14 0.01 0.07 +tyrannie tyrannie nom f s 2.63 2.5 2.5 2.43 +tyrannies tyrannie nom f p 2.63 2.5 0.14 0.07 +tyrannique tyrannique adj s 0.65 2.43 0.59 2.03 +tyranniquement tyranniquement adv 0.14 0.14 0.14 0.14 +tyranniques tyrannique adj p 0.65 2.43 0.06 0.41 +tyrannisais tyranniser ver 0.25 0.95 0 0.07 ind:imp:1s; +tyrannisait tyranniser ver 0.25 0.95 0.02 0.2 ind:imp:3s; +tyrannisant tyranniser ver 0.25 0.95 0.01 0.07 par:pre; +tyrannise tyranniser ver 0.25 0.95 0.03 0.14 ind:pre:1s;ind:pre:3s; +tyrannisent tyranniser ver 0.25 0.95 0.11 0 ind:pre:3p; +tyranniser tyranniser ver 0.25 0.95 0.05 0.2 inf; +tyrannisèrent tyranniser ver 0.25 0.95 0 0.07 ind:pas:3p; +tyrannisé tyranniser ver m s 0.25 0.95 0.02 0.2 par:pas; +tyrannisée tyranniser ver f s 0.25 0.95 0.01 0 par:pas; +tyrannosaure tyrannosaure nom m s 0.15 0.07 0.13 0.07 +tyrannosaures tyrannosaure nom m p 0.15 0.07 0.02 0 +tyrans tyran nom m p 7.79 5.2 1.62 0.61 +tyrienne tyrien adj f s 0.02 0 0.02 0 +tyrolien tyrolien adj m s 0.38 1.62 0.16 0.88 +tyrolienne tyrolien adj f s 0.38 1.62 0.08 0.27 +tyroliennes tyrolien adj f p 0.38 1.62 0.03 0.27 +tyroliens tyrolien nom m p 0.13 0.2 0.12 0.07 +tyrrhénienne tyrrhénienne adj f s 0.2 0.27 0.2 0.27 +tzar tzar nom m s 0.03 0.88 0.03 0.68 +tzarevitch tzarevitch nom m s 0 0.07 0 0.07 +tzarine tzar nom f s 0.03 0.88 0 0.14 +tzars tzar nom m p 0.03 0.88 0 0.07 +tzigane tzigane adj s 0.89 1.76 0.78 1.08 +tziganes tzigane nom p 1.49 0.61 1.1 0.54 +tâcha tâcher ver 11.41 27.5 0 1.35 ind:pas:3s; +tâchai tâcher ver 11.41 27.5 0 0.81 ind:pas:1s; +tâchaient tâcher ver 11.41 27.5 0 0.74 ind:imp:3p; +tâchais tâcher ver 11.41 27.5 0.02 1.35 ind:imp:1s; +tâchait tâcher ver 11.41 27.5 0.13 2.77 ind:imp:3s; +tâchant tâcher ver 11.41 27.5 0.15 2.43 par:pre; +tâche tâche nom f s 31.01 44.53 25.2 35.95 +tâchent tâcher ver 11.41 27.5 0 0.61 ind:pre:3p; +tâcher tâcher ver 11.41 27.5 2.31 6.35 inf; +tâchera tâcher ver 11.41 27.5 0.34 0.41 ind:fut:3s; +tâcherai tâcher ver 11.41 27.5 1.1 1.62 ind:fut:1s; +tâcheraient tâcher ver 11.41 27.5 0 0.07 cnd:pre:3p; +tâcherait tâcher ver 11.41 27.5 0 0.54 cnd:pre:3s; +tâcheras tâcher ver 11.41 27.5 0.02 0 ind:fut:2s; +tâcherez tâcher ver 11.41 27.5 0 0.27 ind:fut:2p; +tâcheron tâcheron nom m s 0.05 0.81 0.01 0.2 +tâcherons tâcher ver 11.41 27.5 0.13 0.14 ind:fut:1p; +tâcheront tâcher ver 11.41 27.5 0.01 0.07 ind:fut:3p; +tâches tâche nom f p 31.01 44.53 5.81 8.58 +tâchez tâcher ver 11.41 27.5 4.41 1.96 imp:pre:2p;ind:pre:2p; +tâchions tâcher ver 11.41 27.5 0 0.68 ind:imp:1p; +tâchons tâcher ver 11.41 27.5 1.31 0.47 imp:pre:1p;ind:pre:1p; +tâchât tâcher ver 11.41 27.5 0 0.07 sub:imp:3s; +tâchèrent tâcher ver 11.41 27.5 0 0.07 ind:pas:3p; +tâché tâcher ver m s 11.41 27.5 0.33 1.08 par:pas; +tâchée tâcher ver f s 11.41 27.5 0.08 0.07 par:pas; +tâchés tâcher ver m p 11.41 27.5 0.04 0 par:pas; +tâta tâter ver 3.95 21.55 0 2.91 ind:pas:3s; +tâtai tâter ver 3.95 21.55 0 0.34 ind:pas:1s; +tâtaient tâter ver 3.95 21.55 0 0.68 ind:imp:3p; +tâtais tâter ver 3.95 21.55 0.01 0.54 ind:imp:1s; +tâtait tâter ver 3.95 21.55 0.03 2.03 ind:imp:3s; +tâtant tâter ver 3.95 21.55 0.04 2.03 par:pre; +tâte tâter ver 3.95 21.55 1.02 4.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tâtent tâter ver 3.95 21.55 0.04 0.2 ind:pre:3p; +tâter tâter ver 3.95 21.55 1.94 5.74 inf; +tâtera tâter ver 3.95 21.55 0.01 0.07 ind:fut:3s; +tâterai tâter ver 3.95 21.55 0.06 0 ind:fut:1s; +tâteras tâter ver 3.95 21.55 0.01 0 ind:fut:2s; +tâterez tâter ver 3.95 21.55 0.05 0 ind:fut:2p; +tâtez tâter ver 3.95 21.55 0.41 0.14 imp:pre:2p;ind:pre:2p; +tâtiez tâter ver 3.95 21.55 0 0.14 ind:imp:2p; +tâtonna tâtonner ver 0.7 10.54 0 1.28 ind:pas:3s; +tâtonnai tâtonner ver 0.7 10.54 0 0.14 ind:pas:1s; +tâtonnaient tâtonner ver 0.7 10.54 0 0.27 ind:imp:3p; +tâtonnais tâtonner ver 0.7 10.54 0.01 0.07 ind:imp:1s; +tâtonnait tâtonner ver 0.7 10.54 0.1 0.81 ind:imp:3s; +tâtonnant tâtonner ver 0.7 10.54 0 3.38 par:pre; +tâtonnante tâtonnant adj f s 0 1.28 0 0.41 +tâtonnantes tâtonnant adj f p 0 1.28 0 0.41 +tâtonnants tâtonnant adj m p 0 1.28 0 0.07 +tâtonne tâtonner ver 0.7 10.54 0.47 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tâtonnement tâtonnement nom m s 0.12 2.03 0 0.47 +tâtonnements tâtonnement nom m p 0.12 2.03 0.12 1.55 +tâtonnent tâtonner ver 0.7 10.54 0.01 0.34 ind:pre:3p; +tâtonner tâtonner ver 0.7 10.54 0.08 0.81 inf; +tâtonnera tâtonner ver 0.7 10.54 0.01 0.07 ind:fut:3s; +tâtonnerais tâtonner ver 0.7 10.54 0 0.07 cnd:pre:1s; +tâtonnions tâtonner ver 0.7 10.54 0 0.2 ind:imp:1p; +tâtonnâmes tâtonner ver 0.7 10.54 0 0.07 ind:pas:1p; +tâtonnât tâtonner ver 0.7 10.54 0 0.07 sub:imp:3s; +tâtonnèrent tâtonner ver 0.7 10.54 0 0.14 ind:pas:3p; +tâtonné tâtonner ver m s 0.7 10.54 0.01 0.41 par:pas; +tâtonnée tâtonner ver f s 0.7 10.54 0 0.07 par:pas; +tâtons tâter ver 3.95 21.55 0.03 0.07 imp:pre:1p; +tâtèrent tâter ver 3.95 21.55 0 0.14 ind:pas:3p; +tâté tâter ver m s 3.95 21.55 0.29 2.03 par:pas; +tâtés tâter ver m p 3.95 21.55 0.01 0.07 par:pas; +tète téter ver 1.71 5.88 0.64 1.35 imp:pre:2s;ind:pre:3s; +tètent téter ver 1.71 5.88 0 0.2 ind:pre:3p; +té té ono 0.8 0.47 0.8 0.47 +téflon téflon nom m s 0.17 0 0.17 0 +tégument tégument nom m s 0 0.14 0 0.14 +tégumentaire tégumentaire adj m s 0.01 0 0.01 0 +tégénaires tégénaire nom f p 0 0.07 0 0.07 +tél tél nom m s 0.04 0 0.04 0 +tél. tél. nom m s 0.14 0.14 0.14 0.14 +télencéphale télencéphale nom m s 1.2 0 1.2 0 +télescopage télescopage nom m s 0.02 0.41 0.02 0.41 +télescopait télescoper ver 0.05 1.08 0.01 0.07 ind:imp:3s; +télescope télescope nom m s 2.46 0.95 2.31 0.81 +télescopent télescoper ver 0.05 1.08 0 0.2 ind:pre:3p; +télescoper télescoper ver 0.05 1.08 0.01 0.07 inf; +télescopes télescope nom m p 2.46 0.95 0.14 0.14 +télescopique télescopique adj s 0.23 0.61 0.2 0.54 +télescopiques télescopique adj m p 0.23 0.61 0.03 0.07 +télescopèrent télescoper ver 0.05 1.08 0 0.07 ind:pas:3p; +télescopé télescoper ver m s 0.05 1.08 0 0.2 par:pas; +télescopée télescoper ver f s 0.05 1.08 0 0.07 par:pas; +télescopées télescoper ver f p 0.05 1.08 0.01 0.34 par:pas; +télescripteurs télescripteur nom m p 0 0.07 0 0.07 +télex télex nom m 1.18 1.49 1.18 1.49 +télexa télexer ver 0.02 0.41 0 0.07 ind:pas:3s; +télexer télexer ver 0.02 0.41 0.01 0.27 inf; +télexes télexer ver 0.02 0.41 0 0.07 ind:pre:2s; +télexé télexer ver m s 0.02 0.41 0.01 0 par:pas; +téloche téloche nom f s 0.16 1.62 0.16 1.62 +télègue télègue nom f s 0 1.42 0 1.42 +télé télé nom f s 106.42 26.15 104.35 25.27 +téléachat téléachat nom m s 0.06 0 0.06 0 +téléavertisseur téléavertisseur nom m s 0.02 0 0.02 0 +télécabine télécabine nom f s 0.34 0 0.34 0 +télécartes télécarte nom f p 0.01 0 0.01 0 +télécharge télécharger ver 2.55 0 0.34 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +téléchargeables téléchargeable adj f p 0.01 0 0.01 0 +téléchargement téléchargement nom m s 0.32 0 0.32 0 +téléchargent télécharger ver 2.55 0 0.06 0 ind:pre:3p; +téléchargeons télécharger ver 2.55 0 0.02 0 ind:pre:1p; +télécharger télécharger ver 2.55 0 0.91 0 inf; +téléchargera télécharger ver 2.55 0 0.02 0 ind:fut:3s; +téléchargerai télécharger ver 2.55 0 0.01 0 ind:fut:1s; +téléchargerons télécharger ver 2.55 0 0.01 0 ind:fut:1p; +téléchargez télécharger ver 2.55 0 0.11 0 imp:pre:2p;ind:pre:2p; +téléchargé télécharger ver m s 2.55 0 0.75 0 par:pas; +téléchargée télécharger ver f s 2.55 0 0.15 0 par:pas; +téléchargées télécharger ver f p 2.55 0 0.11 0 par:pas; +téléchargés télécharger ver m p 2.55 0 0.05 0 par:pas; +télécinéma télécinéma nom m s 0.01 0 0.01 0 +télécommande télécommande nom f s 4.37 0.27 4.02 0.27 +télécommander télécommander ver 0.69 0.2 0.06 0 inf; +télécommandes télécommande nom f p 4.37 0.27 0.35 0 +télécommandé télécommander ver m s 0.69 0.2 0.24 0 par:pas; +télécommandée télécommander ver f s 0.69 0.2 0.1 0.07 par:pas; +télécommandées télécommander ver f p 0.69 0.2 0.08 0 par:pas; +télécommandés télécommander ver m p 0.69 0.2 0.05 0.14 par:pas; +télécommunication télécommunication nom f s 0.94 0.2 0.53 0.07 +télécommunications télécommunication nom f p 0.94 0.2 0.41 0.14 +télécoms télécom nom f p 0.3 0 0.3 0 +téléconférence téléconférence nom f s 0.41 0 0.41 0 +télécopieur télécopieur nom m s 0.03 0 0.03 0 +télécran télécran nom m s 0.05 0 0.03 0 +télécrans télécran nom m p 0.05 0 0.02 0 +télédiffuser télédiffuser ver 0.03 0 0.03 0 inf; +télédiffusion télédiffusion nom f s 0.01 0 0.01 0 +téléfax téléfax nom m 0.01 0.07 0.01 0.07 +téléfaxe téléfaxer ver 0.02 0 0.01 0 ind:pre:1s; +téléfaxez téléfaxer ver 0.02 0 0.01 0 ind:pre:2p; +téléfilm téléfilm nom m s 0.5 0 0.45 0 +téléfilms téléfilm nom m p 0.5 0 0.04 0 +téléfériques téléférique nom m p 0 0.07 0 0.07 +télégramme télégramme nom m s 11.44 38.78 10.53 34.59 +télégrammes télégramme nom m p 11.44 38.78 0.9 4.19 +télégraphe télégraphe nom m s 1.66 0.81 1.53 0.68 +télégraphes télégraphe nom m p 1.66 0.81 0.12 0.14 +télégraphia télégraphier ver 1.23 6.15 0 0.47 ind:pas:3s; +télégraphiai télégraphier ver 1.23 6.15 0.01 1.08 ind:pas:1s; +télégraphiait télégraphier ver 1.23 6.15 0 0.47 ind:imp:3s; +télégraphiant télégraphier ver 1.23 6.15 0 0.14 par:pre; +télégraphie télégraphie nom f s 0.06 0.14 0.06 0.14 +télégraphient télégraphier ver 1.23 6.15 0 0.07 ind:pre:3p; +télégraphier télégraphier ver 1.23 6.15 0.21 0.74 inf; +télégraphierai télégraphier ver 1.23 6.15 0.03 0.14 ind:fut:1s; +télégraphierais télégraphier ver 1.23 6.15 0 0.07 cnd:pre:1s; +télégraphierait télégraphier ver 1.23 6.15 0 0.07 cnd:pre:3s; +télégraphiez télégraphier ver 1.23 6.15 0.17 0.07 imp:pre:2p; +télégraphions télégraphier ver 1.23 6.15 0.01 0 imp:pre:1p; +télégraphique télégraphique adj s 0.5 2.97 0.2 1.42 +télégraphiques télégraphique adj p 0.5 2.97 0.29 1.55 +télégraphiste télégraphiste nom s 0.37 0.54 0.36 0.34 +télégraphistes télégraphiste nom p 0.37 0.54 0.01 0.2 +télégraphiâmes télégraphier ver 1.23 6.15 0 0.07 ind:pas:1p; +télégraphié télégraphier ver m s 1.23 6.15 0.75 1.82 par:pas; +télégraphiée télégraphier ver f s 1.23 6.15 0 0.07 par:pas; +télégraphiées télégraphier ver f p 1.23 6.15 0 0.14 par:pas; +télégraphiés télégraphier ver m p 1.23 6.15 0 0.07 par:pas; +téléguidage téléguidage nom m s 0.15 0 0.15 0 +téléguider téléguider ver 0.35 0.47 0.01 0 inf; +téléguidé téléguider ver m s 0.35 0.47 0.2 0.2 par:pas; +téléguidée téléguider ver f s 0.35 0.47 0.13 0.07 par:pas; +téléguidées téléguider ver f p 0.35 0.47 0 0.07 par:pas; +téléguidés téléguider ver m p 0.35 0.47 0.02 0.14 par:pas; +télégénie télégénie nom f s 0.01 0 0.01 0 +télégénique télégénique adj s 0.02 0 0.02 0 +télékinésie télékinésie nom f s 0.6 0 0.6 0 +télémark télémark nom m s 0 0.07 0 0.07 +télémarketing télémarketing nom m s 0.14 0 0.14 0 +télématique télématique adj s 0.01 0.07 0.01 0.07 +télémesure télémesure nom f s 0.07 0 0.03 0 +télémesures télémesure nom f p 0.07 0 0.04 0 +télémètre télémètre nom m s 0.03 0.2 0.02 0.14 +télémètres télémètre nom m p 0.03 0.2 0.01 0.07 +télémétrie télémétrie nom f s 0.85 0 0.85 0 +télémétrique télémétrique adj s 0.16 0 0.08 0 +télémétriques télémétrique adj p 0.16 0 0.07 0 +téléobjectif téléobjectif nom m s 0.72 0.54 0.62 0.27 +téléobjectifs téléobjectif nom m p 0.72 0.54 0.1 0.27 +téléologique téléologique adj s 0.01 0 0.01 0 +télépathe télépathe nom s 1.53 0.07 1.17 0.07 +télépathes télépathe nom p 1.53 0.07 0.36 0 +télépathie télépathie nom f s 1.94 0.47 1.94 0.47 +télépathique télépathique adj s 0.53 0.27 0.41 0.27 +télépathiquement télépathiquement adv 0.01 0 0.01 0 +télépathiques télépathique adj p 0.53 0.27 0.13 0 +téléphona téléphoner ver 60.49 67.03 0.02 4.53 ind:pas:3s; +téléphonage téléphonage nom m s 0 0.07 0 0.07 +téléphonai téléphoner ver 60.49 67.03 0.01 0.74 ind:pas:1s; +téléphonaient téléphoner ver 60.49 67.03 0.02 0.34 ind:imp:3p; +téléphonais téléphoner ver 60.49 67.03 0.63 0.34 ind:imp:1s;ind:imp:2s; +téléphonait téléphoner ver 60.49 67.03 0.87 3.31 ind:imp:3s; +téléphonant téléphoner ver 60.49 67.03 0.2 1.49 par:pre; +téléphone téléphone nom m s 160.8 96.82 155.68 93.99 +téléphonent téléphoner ver 60.49 67.03 0.36 0.61 ind:pre:3p; +téléphoner téléphoner ver 60.49 67.03 20.22 19.73 inf; +téléphonera téléphoner ver 60.49 67.03 0.61 0.68 ind:fut:3s; +téléphonerai téléphoner ver 60.49 67.03 2.07 1.35 ind:fut:1s; +téléphoneraient téléphoner ver 60.49 67.03 0.01 0.07 cnd:pre:3p; +téléphonerais téléphoner ver 60.49 67.03 0.12 0.27 cnd:pre:1s;cnd:pre:2s; +téléphonerait téléphoner ver 60.49 67.03 0.06 1.42 cnd:pre:3s; +téléphoneras téléphoner ver 60.49 67.03 0.17 0.14 ind:fut:2s; +téléphonerez téléphoner ver 60.49 67.03 0.27 0.2 ind:fut:2p; +téléphoneriez téléphoner ver 60.49 67.03 0 0.07 cnd:pre:2p; +téléphonerons téléphoner ver 60.49 67.03 0.03 0.07 ind:fut:1p; +téléphoneront téléphoner ver 60.49 67.03 0.14 0.07 ind:fut:3p; +téléphones téléphone nom m p 160.8 96.82 5.12 2.84 +téléphonez téléphoner ver 60.49 67.03 2.26 1.69 imp:pre:2p;ind:pre:2p; +téléphonie téléphonie nom f s 0.22 0.07 0.22 0.07 +téléphoniez téléphoner ver 60.49 67.03 0.05 0.14 ind:imp:2p; +téléphonions téléphoner ver 60.49 67.03 0 0.07 ind:imp:1p; +téléphonique téléphonique adj s 9.23 10.88 6.03 7.7 +téléphoniquement téléphoniquement adv 0.14 0.07 0.14 0.07 +téléphoniques téléphonique adj p 9.23 10.88 3.2 3.18 +téléphoniste téléphoniste nom s 0.27 1.22 0.1 0.68 +téléphonistes téléphoniste nom p 0.27 1.22 0.17 0.54 +téléphonons téléphoner ver 60.49 67.03 0.05 0 imp:pre:1p;ind:pre:1p; +téléphonât téléphoner ver 60.49 67.03 0 0.07 sub:imp:3s; +téléphoné téléphoner ver m s 60.49 67.03 20.8 18.11 par:pas; +téléphonée téléphoné adj f s 0.21 0.54 0.01 0 +téléphonées téléphoné adj f p 0.21 0.54 0 0.07 +téléphonés téléphoner ver m p 60.49 67.03 0.01 0.07 par:pas; +téléphérique téléphérique nom m s 0.36 0.54 0.36 0.54 +téléport téléport nom m s 0.01 0 0.01 0 +téléportation téléportation nom f s 1 0 1 0 +téléprompteur téléprompteur nom m s 0.08 0 0.08 0 +téléreportage téléreportage nom m s 0.01 0 0.01 0 +téléroman téléroman nom m s 0.05 0 0.05 0 +télés télé nom f p 106.42 26.15 2.06 0.88 +téléscripteur téléscripteur nom m s 0.05 1.08 0.04 0.14 +téléscripteurs téléscripteur nom m p 0.05 1.08 0.01 0.95 +télésiège télésiège nom m s 1.18 0 1.04 0 +télésièges télésiège nom m p 1.18 0 0.14 0 +téléski téléski nom m s 0.02 0 0.02 0 +téléspectateur téléspectateur nom m s 2.19 0.47 0.13 0.14 +téléspectateurs téléspectateur nom m p 2.19 0.47 2.03 0.27 +téléspectatrice téléspectateur nom f s 2.19 0.47 0.03 0 +téléspectatrices téléspectateur nom f p 2.19 0.47 0.01 0.07 +télésurveillance télésurveillance nom f s 0.01 0 0.01 0 +télétexte télétexte nom m s 0.1 0 0.1 0 +télétravail télétravail nom m s 0.01 0 0.01 0 +télétravailleuse télétravailleur nom f s 0.01 0 0.01 0 +télétype télétype nom m s 0.1 0.07 0.08 0 +télétypes télétype nom m p 0.1 0.07 0.02 0.07 +télévangéliste télévangéliste nom s 0.06 0 0.05 0 +télévangélistes télévangéliste nom p 0.06 0 0.01 0 +télévendeur télévendeur nom m s 0.01 0 0.01 0 +télévente télévente nom f s 0.01 0 0.01 0 +télévise téléviser ver 0.37 1.42 0.01 0.47 ind:pre:1s;ind:pre:3s; +télévisera téléviser ver 0.37 1.42 0 0.14 ind:fut:3s; +télévises téléviser ver 0.37 1.42 0 0.2 ind:pre:2s; +téléviseur téléviseur nom m s 2.43 1.01 1.74 0.95 +téléviseurs téléviseur nom m p 2.43 1.01 0.69 0.07 +télévision télévision nom f s 26.38 24.32 25.45 23.51 +télévisions télévision nom f p 26.38 24.32 0.93 0.81 +télévisuel télévisuel adj m s 0.33 0.34 0.27 0.2 +télévisuelle télévisuel adj f s 0.33 0.34 0.05 0.07 +télévisuels télévisuel adj m p 0.33 0.34 0 0.07 +télévisé télévisé adj m s 3.37 2.57 2.11 1.01 +télévisée télévisé adj f s 3.37 2.57 0.48 0.47 +télévisées télévisé adj f p 3.37 2.57 0.14 0.74 +télévisés télévisé adj m p 3.37 2.57 0.64 0.34 +témoigna témoigner ver 24.29 25.68 0.02 0.54 ind:pas:3s; +témoignage témoignage nom m s 16.12 19.73 12.28 10.95 +témoignages témoignage nom m p 16.12 19.73 3.84 8.78 +témoignaient témoigner ver 24.29 25.68 0.02 2.91 ind:imp:3p; +témoignais témoigner ver 24.29 25.68 0.04 0.07 ind:imp:1s;ind:imp:2s; +témoignait témoigner ver 24.29 25.68 0.32 5.27 ind:imp:3s; +témoignant témoigner ver 24.29 25.68 0.2 1.35 par:pre; +témoigne témoigner ver 24.29 25.68 3.1 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +témoignent témoigner ver 24.29 25.68 0.81 1.35 ind:pre:3p; +témoigner témoigner ver 24.29 25.68 13.36 7.64 inf;; +témoignera témoigner ver 24.29 25.68 1.09 0.07 ind:fut:3s; +témoignerai témoigner ver 24.29 25.68 0.88 0.07 ind:fut:1s; +témoigneraient témoigner ver 24.29 25.68 0 0.07 cnd:pre:3p; +témoignerais témoigner ver 24.29 25.68 0.05 0 cnd:pre:1s;cnd:pre:2s; +témoignerait témoigner ver 24.29 25.68 0.13 0.07 cnd:pre:3s; +témoigneras témoigner ver 24.29 25.68 0.08 0 ind:fut:2s; +témoignerez témoigner ver 24.29 25.68 0.28 0 ind:fut:2p; +témoigneront témoigner ver 24.29 25.68 0.18 0.07 ind:fut:3p; +témoignes témoigner ver 24.29 25.68 0.29 0.07 ind:pre:2s; +témoignez témoigner ver 24.29 25.68 0.91 0.14 imp:pre:2p;ind:pre:2p; +témoigniez témoigner ver 24.29 25.68 0.11 0 ind:imp:2p; +témoignât témoigner ver 24.29 25.68 0 0.07 sub:imp:3s; +témoignèrent témoigner ver 24.29 25.68 0 0.27 ind:pas:3p; +témoigné témoigner ver m s 24.29 25.68 1.99 2.09 par:pas; +témoignée témoigner ver f s 24.29 25.68 0.31 0.2 par:pas; +témoignées témoigner ver f p 24.29 25.68 0.01 0.07 par:pas; +témoignés témoigner ver m p 24.29 25.68 0.11 0.07 par:pas; +témoin témoin nom m s 74.78 46.01 49.35 28.38 +témoin_clé témoin_clé nom m s 0.17 0 0.13 0 +témoin_vedette témoin_vedette nom m s 0.01 0 0.01 0 +témoins témoin nom m p 74.78 46.01 25.43 17.64 +témoin_clé témoin_clé nom m p 0.17 0 0.05 0 +téméraire téméraire adj s 2.38 3.04 2.04 2.5 +témérairement témérairement adv 0 0.27 0 0.27 +téméraires téméraire adj p 2.38 3.04 0.34 0.54 +témérité témérité nom f s 0.87 1.35 0.87 1.22 +témérités témérité nom f p 0.87 1.35 0 0.14 +ténacité ténacité nom f s 0.89 2.3 0.89 2.3 +ténia ténia nom m s 0.11 0.68 0.08 0.68 +ténias ténia nom m p 0.11 0.68 0.03 0 +ténor ténor nom m s 1.38 2.7 1.01 2.03 +ténors ténor nom m p 1.38 2.7 0.36 0.68 +ténu ténu adj m s 0.4 5.95 0.3 2.84 +ténue ténu adj f s 0.4 5.95 0.08 1.76 +ténues ténu adj f p 0.4 5.95 0.01 0.61 +ténuité ténuité nom f s 0 0.14 0 0.14 +ténus ténu adj m p 0.4 5.95 0.01 0.74 +ténèbre ténèbre nom f s 0.01 0.61 0.01 0.61 +ténèbres ténèbres nom f p 16.36 26.15 16.36 26.15 +ténébreuse ténébreux adj f s 1.5 7.91 0.24 2.36 +ténébreuses ténébreux adj f p 1.5 7.91 0.15 0.88 +ténébreux ténébreux adj m 1.5 7.91 1.11 4.66 +ténébrionidé ténébrionidé nom m s 0 0.07 0 0.07 +téraoctets téraoctet nom m p 0.01 0 0.01 0 +tératologique tératologique adj f s 0 0.34 0 0.27 +tératologiques tératologique adj f p 0 0.34 0 0.07 +tératome tératome nom m s 0.05 0 0.05 0 +térébenthine térébenthine nom f s 0.55 1.28 0.55 1.28 +térébinthe térébinthe nom m s 0.01 0.2 0.01 0.14 +térébinthes térébinthe nom m p 0.01 0.2 0 0.07 +térébrant térébrant adj m s 0 0.2 0 0.14 +térébrants térébrant adj m p 0 0.2 0 0.07 +tés té nom m p 2.35 1.08 0.19 0 +téta téter ver 1.71 5.88 0.01 0.14 ind:pas:3s; +tétaient téter ver 1.71 5.88 0.01 0.07 ind:imp:3p; +tétais téter ver 1.71 5.88 0.13 0.2 ind:imp:1s;ind:imp:2s; +tétait téter ver 1.71 5.88 0.06 0.34 ind:imp:3s; +tétanie tétanie nom f s 0.15 0.07 0.15 0.07 +tétanique tétanique adj s 0 0.34 0 0.27 +tétaniques tétanique adj f p 0 0.34 0 0.07 +tétanisait tétaniser ver 0.42 1.08 0 0.14 ind:imp:3s; +tétanisant tétaniser ver 0.42 1.08 0 0.07 par:pre; +tétanisation tétanisation nom f s 0 0.07 0 0.07 +tétanisent tétaniser ver 0.42 1.08 0.01 0.07 ind:pre:3p; +tétaniser tétaniser ver 0.42 1.08 0 0.07 inf; +tétanisé tétaniser ver m s 0.42 1.08 0.17 0.54 par:pas; +tétanisée tétaniser ver f s 0.42 1.08 0.25 0.2 par:pas; +tétanisées tétanisé adj f p 0.12 0.88 0 0.07 +tétanisés tétanisé adj m p 0.12 0.88 0 0.34 +tétanos tétanos nom m 0.64 0.95 0.64 0.95 +tétant téter ver 1.71 5.88 0.1 0.54 par:pre; +tétasses téter ver 1.71 5.88 0 0.07 sub:imp:2s; +téter téter ver 1.71 5.88 0.43 2.03 inf; +téteur téteur nom m s 0.05 0 0.05 0 +tétiez téter ver 1.71 5.88 0.01 0 ind:imp:2p; +tétine tétine nom f s 0.81 1.15 0.43 0.68 +tétines tétine nom f p 0.81 1.15 0.38 0.47 +tétins tétin nom m p 0 0.2 0 0.2 +téton téton nom m s 4.59 1.76 1.21 0.47 +tétons téton nom m p 4.59 1.76 3.39 1.28 +tétra tétra nom m s 0.01 0 0.01 0 +tétrachlorure tétrachlorure nom m s 0.04 0.07 0.04 0.07 +tétracycline tétracycline nom f s 0.09 0 0.09 0 +tétradrachme tétradrachme nom m s 0 0.07 0 0.07 +tétragones tétragone nom f p 0 0.07 0 0.07 +tétragramme tétragramme nom m s 0.01 0.07 0 0.07 +tétragrammes tétragramme nom m p 0.01 0.07 0.01 0 +tétralogie tétralogie nom f s 0.01 0.07 0.01 0.07 +tétramère tétramère adj m s 0 0.07 0 0.07 +tétramètre tétramètre nom m s 0.03 0 0.03 0 +tétraplégie tétraplégie nom f s 0.14 0 0.14 0 +tétraplégique tétraplégique adj s 0.44 0 0.44 0 +tétrarque tétrarque nom m s 0.1 0.47 0.1 0 +tétrarques tétrarque nom m p 0.1 0.47 0 0.47 +tétras tétras nom m 0.16 0 0.16 0 +tétrodotoxine tétrodotoxine nom f s 0.02 0 0.02 0 +tétère téter nom f s 0 0.14 0 0.14 +tétèrent téter ver 1.71 5.88 0 0.07 ind:pas:3p; +tété téter ver m s 1.71 5.88 0.29 0.61 par:pas; +tétée tétée nom f s 0.63 1.01 0.51 0.68 +tétées tétée nom f p 0.63 1.01 0.11 0.34 +tévé tévé nom f s 0 0.34 0 0.34 +tézig tézig pro_per s 0 0.07 0 0.07 +tézigue tézigue pro_per s 0 0.34 0 0.34 +têt têt nom m s 0.34 1.08 0.34 1.08 +têtard têtard nom m s 0.86 1.89 0.68 0.34 +têtards têtard nom m p 0.86 1.89 0.17 1.55 +tête tête nom f s 475.87 923.45 453.13 861.49 +tête_bêche tête_bêche nom m 0.03 0.47 0.03 0.47 +tête_de_mort tête_de_mort nom f 0.01 0.41 0.01 0.41 +tête_de_nègre tête_de_nègre adj 0 0.2 0 0.2 +tête_à_queue tête_à_queue nom m 0 0.2 0 0.2 +tête_à_tête tête_à_tête nom m 0 5.95 0 5.95 +têtes tête nom f p 475.87 923.45 22.74 61.96 +tête_de_loup tête_de_loup nom f p 0 0.27 0 0.27 +têtière têtière nom f s 0 0.27 0 0.14 +têtières têtière nom f p 0 0.27 0 0.14 +têtu têtu adj m s 9.78 9.19 6.17 5.14 +têtue têtu adj f s 9.78 9.19 2.97 2.77 +têtues têtu adj f p 9.78 9.19 0.09 0.34 +têtus têtu adj m p 9.78 9.19 0.55 0.95 +tînmes tenir ver 504.69 741.22 0 0.2 ind:pas:1p; +tînt tenir ver 504.69 741.22 0 2.57 sub:imp:3s; +tôlarde tôlard nom f s 0.01 0 0.01 0 +tôle tôle nom f s 3.58 15.41 3.29 12.5 +tôlerie tôlerie nom f s 0 0.2 0 0.2 +tôles tôle nom f p 3.58 15.41 0.29 2.91 +tôlier tôlier nom m s 0.02 0.27 0.01 0.14 +tôliers tôlier nom m p 0.02 0.27 0 0.07 +tôlière tôlier nom f s 0.02 0.27 0.01 0.07 +tôt tôt adv 129.98 126.76 129.98 126.76 +tôt_fait tôt_fait nom m s 0 0.07 0 0.07 +tûmes taire ver 154.46 139.8 0 0.2 ind:pas:1p; +tût taire ver 154.46 139.8 0.03 0.41 sub:imp:3s; +u u nom_sup m 18.4 2.97 18.4 2.97 +ubac ubac nom m s 0 0.14 0 0.14 +ubique ubique adj s 0 0.07 0 0.07 +ubiquiste ubiquiste nom s 0.01 0.27 0.01 0.27 +ubiquitaire ubiquitaire adj m s 0 0.14 0 0.14 +ubiquité ubiquité nom f s 0.04 1.82 0.04 1.82 +ubuesque ubuesque adj f s 0.14 0.07 0.14 0.07 +ufologie ufologie nom f s 0.04 0 0.04 0 +uhlan uhlan nom m s 0.19 1.15 0.14 0.14 +uhlans uhlan nom m p 0.19 1.15 0.05 1.01 +uht uht adj m s 0.01 0 0.01 0 +ukase ukase nom m s 0.2 0.07 0.2 0 +ukases ukase nom m p 0.2 0.07 0 0.07 +ukrainien ukrainien nom m s 0.71 0.61 0.39 0.07 +ukrainienne ukrainien adj f s 0.61 0.88 0.28 0.14 +ukrainiennes ukrainien adj f p 0.61 0.88 0.01 0.14 +ukrainiens ukrainien nom m p 0.71 0.61 0.3 0.41 +ukulélé ukulélé nom m s 0.16 0.07 0.16 0.07 +ulcère ulcère nom m s 4.69 2.5 3.98 1.76 +ulcères ulcère nom m p 4.69 2.5 0.71 0.74 +ulcéra ulcérer ver 0.66 1.49 0 0.07 ind:pas:3s; +ulcérait ulcérer ver 0.66 1.49 0 0.07 ind:imp:3s; +ulcérant ulcérer ver 0.66 1.49 0 0.07 par:pre; +ulcérations ulcération nom f p 0.01 0.2 0.01 0.2 +ulcérative ulcératif adj f s 0.01 0 0.01 0 +ulcéreuse ulcéreux adj f s 0.03 0.2 0.01 0.14 +ulcéreuses ulcéreux adj f p 0.03 0.2 0 0.07 +ulcéreux ulcéreux adj m s 0.03 0.2 0.01 0 +ulcéré ulcérer ver m s 0.66 1.49 0.48 0.68 par:pas; +ulcérée ulcéré adj f s 0.01 1.62 0 0.68 +ulcérées ulcéré adj f p 0.01 1.62 0 0.07 +ulcérés ulcérer ver m p 0.66 1.49 0.15 0 par:pas; +ulna ulna nom f s 0.01 0 0.01 0 +ulnaire ulnaire adj m s 0.01 0 0.01 0 +ultima_ratio ultima_ratio nom f s 0 0.07 0 0.07 +ultimatum ultimatum nom m s 1.32 1.55 1.23 1.55 +ultimatums ultimatum nom m p 1.32 1.55 0.09 0 +ultime ultime adj s 8.56 25.74 8.01 21.49 +ultimement ultimement adv 0.01 0.07 0.01 0.07 +ultimes ultime adj p 8.56 25.74 0.55 4.26 +ultimo ultimo adv 0 0.07 0 0.07 +ultra ultra adj 1.59 1.49 1.59 1.49 +ultra_catholique ultra_catholique adj m s 0.1 0 0.1 0 +ultra_chic ultra_chic adj s 0.03 0.2 0.03 0.14 +ultra_chic ultra_chic adj f p 0.03 0.2 0 0.07 +ultra_court ultra_court adj f p 0.16 0.07 0.02 0 +ultra_court ultra_court adj m p 0.16 0.07 0.14 0.07 +ultra_gauche ultra_gauche nom f s 0 0.07 0 0.07 +ultra_rapide ultra_rapide adj s 0.2 0.27 0.2 0.27 +ultra_secret ultra_secret adj m s 0.2 0.07 0.2 0.07 +ultra_sensible ultra_sensible adj m s 0.01 0.14 0.01 0.14 +ultra_son ultra_son nom m p 0.03 0.14 0.03 0.14 +ultra_violet ultra_violet adj 0.04 0.07 0.01 0 +ultra_violet ultra_violet nom s 0.04 0.07 0.04 0.07 +ultrafin ultrafin adj m s 0 0.07 0 0.07 +ultragauche ultragauche nom f s 0 0.07 0 0.07 +ultraléger ultraléger adj m s 0.01 0 0.01 0 +ultramarine ultramarin adj f s 0 0.14 0 0.14 +ultramoderne ultramoderne adj s 0.49 0.14 0.34 0.07 +ultramodernes ultramoderne adj p 0.49 0.14 0.14 0.07 +ultramontain ultramontain adj m s 0 0.2 0 0.07 +ultramontains ultramontain adj m p 0 0.2 0 0.14 +ultraperformant ultraperformant adj m s 0 0.07 0 0.07 +ultrarapide ultrarapide adj s 0.06 0.07 0.03 0.07 +ultrarapides ultrarapide adj m p 0.06 0.07 0.02 0 +ultras ultra nom p 0.49 0.81 0 0.34 +ultrasecret ultrasecret adj m s 0.1 0.07 0.06 0 +ultrasecrète ultrasecret adj f s 0.1 0.07 0.04 0.07 +ultrasensible ultrasensible adj s 0.25 0.07 0.23 0 +ultrasensibles ultrasensible adj m p 0.25 0.07 0.01 0.07 +ultrason ultrason nom m s 0.87 0 0.34 0 +ultrasonique ultrasonique adj s 0.25 0 0.25 0 +ultrasons ultrason nom m p 0.87 0 0.53 0 +ultraviolet ultraviolet adj m s 0.32 0.07 0.16 0 +ultraviolets ultraviolet nom m p 0.33 0.07 0.27 0.07 +ultraviolette ultraviolet adj f s 0.32 0.07 0.07 0 +ultraviolettes ultraviolet adj f p 0.32 0.07 0.01 0 +ultravirus ultravirus nom m 0.01 0 0.01 0 +ultérieur ultérieur adj m s 0.71 2.36 0.27 0.41 +ultérieure ultérieur adj f s 0.71 2.36 0.28 0.95 +ultérieurement ultérieurement adv 0.37 2.03 0.37 2.03 +ultérieures ultérieur adj f p 0.71 2.36 0.09 0.81 +ultérieurs ultérieur adj m p 0.71 2.36 0.07 0.2 +ulula ululer ver 0.01 0.47 0 0.07 ind:pas:3s; +ululait ululer ver 0.01 0.47 0 0.14 ind:imp:3s; +ululant ululer ver 0.01 0.47 0 0.07 par:pre; +ulule ululer ver 0.01 0.47 0.01 0.07 ind:pre:3s; +ululement ululement nom m s 0 0.47 0 0.41 +ululements ululement nom m p 0 0.47 0 0.07 +ululer ululer ver 0.01 0.47 0 0.14 inf; +umbanda umbanda nom m s 0.1 0 0.1 0 +un un art_ind m s 12087.62 13550.68 12087.62 13550.68 +unanime unanime adj s 2.18 6.08 1.77 4.66 +unanimement unanimement adv 0.06 1.35 0.06 1.35 +unanimes unanime adj p 2.18 6.08 0.41 1.42 +unanimisme unanimisme nom m s 0 0.07 0 0.07 +unanimité unanimité nom f s 2.63 3.78 2.63 3.78 +unau unau nom m s 0.01 0 0.01 0 +underground underground adj 0.89 0.34 0.89 0.34 +une une art_ind f s 7907.85 9587.97 7907.85 9587.97 +unes unes pro_ind f p 3.42 19.59 3.42 19.59 +unetelle unetelle nom m s 0.01 0.61 0.01 0.61 +unguéal unguéal adj m s 0.01 0 0.01 0 +uni unir ver m s 25.15 32.16 1.57 2.77 par:pas; +uniate uniate adj m s 0 0.07 0 0.07 +unicellulaire unicellulaire adj m s 0.05 0 0.05 0 +unicité unicité nom f s 0.19 0.41 0.19 0.41 +unicorne unicorne adj s 0.01 0 0.01 0 +unidimensionnel unidimensionnel adj m s 0.16 0.07 0.14 0.07 +unidimensionnelle unidimensionnel adj f s 0.16 0.07 0.01 0 +unidirectionnel unidirectionnel adj m s 0.06 0.14 0.03 0.14 +unidirectionnelle unidirectionnel adj f s 0.06 0.14 0.02 0 +unidirectionnels unidirectionnel adj m p 0.06 0.14 0.01 0 +unie uni adj f s 10.08 13.78 1.17 2.57 +unies uni adj f p 10.08 13.78 3.46 4.73 +unification unification nom f s 1.5 0.34 1.5 0.34 +unificatrice unificateur adj f s 0.03 0 0.03 0 +unifie unifier ver 1.51 1.42 0 0.14 ind:pre:3s; +unifient unifier ver 1.51 1.42 0.04 0 ind:pre:3p; +unifier unifier ver 1.51 1.42 0.56 0.54 inf; +unifiez unifier ver 1.51 1.42 0.02 0 imp:pre:2p; +unifié unifier ver m s 1.51 1.42 0.4 0.41 par:pas; +unifiée unifier ver f s 1.51 1.42 0.2 0.14 par:pas; +unifiées unifier ver f p 1.51 1.42 0 0.14 par:pas; +unifiés unifier ver m p 1.51 1.42 0.3 0.07 par:pas; +uniforme uniforme nom m s 31.01 50.14 24.92 38.72 +uniformes uniforme nom m p 31.01 50.14 6.09 11.42 +uniformisait uniformiser ver 0.1 0.54 0 0.14 ind:imp:3s; +uniformisation uniformisation nom f s 0.01 0.27 0.01 0.27 +uniformise uniformiser ver 0.1 0.54 0.1 0.2 ind:pre:3s; +uniformiser uniformiser ver 0.1 0.54 0 0.07 inf; +uniformisée uniformiser ver f s 0.1 0.54 0 0.07 par:pas; +uniformisés uniformiser ver m p 0.1 0.54 0 0.07 par:pas; +uniformité uniformité nom f s 0.07 1.35 0.07 1.35 +uniformément uniformément adv 0.06 4.05 0.06 4.05 +unijambiste unijambiste adj s 0.54 0.2 0.53 0.2 +unijambistes unijambiste nom p 0.22 0.2 0.01 0.07 +unilatéral unilatéral adj m s 0.43 0.68 0.22 0.2 +unilatérale unilatéral adj f s 0.43 0.68 0.16 0.27 +unilatéralement unilatéralement adv 0.1 0.41 0.1 0.41 +unilatérales unilatéral adj f p 0.43 0.68 0.04 0.2 +unilatéralité unilatéralité nom f s 0.03 0 0.03 0 +unilatéraux unilatéral adj m p 0.43 0.68 0.01 0 +uniment uniment adv 0 0.47 0 0.47 +uninominal uninominal adj m s 0 0.27 0 0.2 +uninominales uninominal adj f p 0 0.27 0 0.07 +union union nom f s 19.14 30.07 18.1 29.19 +unioniste unioniste adj s 0.07 0.07 0.07 0.07 +unionistes unioniste nom p 0.01 0.07 0 0.07 +unions union nom f p 19.14 30.07 1.04 0.88 +uniprix uniprix nom m 0 0.61 0 0.61 +unique unique adj s 45.43 70.14 43.12 66.76 +uniquement uniquement adv 21.86 24.66 21.86 24.66 +uniques unique adj p 45.43 70.14 2.31 3.38 +unir unir ver 25.15 32.16 5.84 5.14 inf; +unira unir ver 25.15 32.16 0.45 0.2 ind:fut:3s; +unirai unir ver 25.15 32.16 0.16 0 ind:fut:1s; +uniraient unir ver 25.15 32.16 0 0.14 cnd:pre:3p; +unirait unir ver 25.15 32.16 0.06 0.2 cnd:pre:3s; +unirent unir ver 25.15 32.16 0.17 0.34 ind:pas:3p; +unirez unir ver 25.15 32.16 0.01 0 ind:fut:2p; +unirions unir ver 25.15 32.16 0.14 0 cnd:pre:1p; +unirons unir ver 25.15 32.16 0.27 0 ind:fut:1p; +uniront unir ver 25.15 32.16 0.21 0 ind:fut:3p; +unis unir ver m p 25.15 32.16 6.63 4.53 imp:pre:2s;ind:pre:1s;par:pas; +unisexe unisexe adj s 0.12 0.14 0.1 0.14 +unisexes unisexe adj f p 0.12 0.14 0.01 0 +unissaient unir ver 25.15 32.16 0.29 2.57 ind:imp:3p; +unissais unir ver 25.15 32.16 0 0.07 ind:imp:1s; +unissait unir ver 25.15 32.16 0.34 5.2 ind:imp:3s; +unissant unir ver 25.15 32.16 0.14 1.28 par:pre; +unisse unir ver 25.15 32.16 1.04 0.07 sub:pre:1s;sub:pre:3s; +unissent unir ver 25.15 32.16 1.23 2.09 ind:pre:3p; +unisses unir ver 25.15 32.16 0 0.07 sub:pre:2s; +unissez unir ver 25.15 32.16 1.43 0.47 imp:pre:2p;ind:pre:2p; +unissiez unir ver 25.15 32.16 0 0.07 ind:imp:2p; +unissions unir ver 25.15 32.16 0.02 0.14 ind:imp:1p; +unisson unisson nom m s 0.81 4.53 0.81 4.53 +unissons unir ver 25.15 32.16 0.81 0.2 imp:pre:1p;ind:pre:1p; +unit unir ver 25.15 32.16 2.72 3.51 ind:pre:3s;ind:pas:3s; +unitaire unitaire adj s 0.04 0.14 0.04 0.14 +unitarien unitarien adj m s 0.04 0 0.02 0 +unitarienne unitarien adj f s 0.04 0 0.02 0 +unité unité nom f s 43.46 40.41 29.29 25.07 +unités unité nom f p 43.46 40.41 14.18 15.34 +univalves univalve adj p 0 0.07 0 0.07 +univers univers nom m 34.21 58.45 34.21 58.45 +universal universal nom m s 1.24 0 1.24 0 +universalisais universaliser ver 0.01 0.07 0 0.07 ind:imp:1s; +universalise universaliser ver 0.01 0.07 0.01 0 ind:pre:3s; +universalisme universalisme nom m s 0 0.14 0 0.14 +universaliste universaliste nom s 0.01 0 0.01 0 +universalité universalité nom f s 0 0.27 0 0.27 +universel universel adj m s 5.09 15.14 2.51 5.95 +universelle universel adj f s 5.09 15.14 2.34 8.51 +universellement universellement adv 0.26 0.41 0.26 0.41 +universelles universel adj f p 5.09 15.14 0.18 0.54 +universels universel adj m p 5.09 15.14 0.06 0.14 +universitaire universitaire adj s 3.58 3.92 2.72 2.5 +universitaires universitaire adj p 3.58 3.92 0.85 1.42 +université université nom f s 40.64 15 38.22 13.24 +universités université nom f p 40.64 15 2.42 1.76 +univoque univoque adj m s 0.25 0.2 0.25 0.2 +unième unième adj s 0.17 0.81 0.17 0.81 +uns uns pro_ind m p 15.74 62.91 15.74 62.91 +untel untel nom m s 1.03 2.77 1.03 2.77 +unît unir ver 25.15 32.16 0 0.07 sub:imp:3s; +upanisads upanisad nom f p 0 0.07 0 0.07 +upanishad upanishad nom m 0.02 0.07 0.02 0.07 +upas upas adv 0.01 0 0.01 0 +update update nom f s 0.04 0 0.04 0 +updater updater ver 0.01 0 0.01 0 inf; +upgradée upgrader ver f s 0.14 0 0.14 0 par:pas; +uppercut uppercut nom m s 0.33 1.28 0.28 0.95 +uppercuts uppercut nom m p 0.33 1.28 0.04 0.34 +urane urane nom m s 0 0.07 0 0.07 +uraniens uranien adj m p 0.01 0 0.01 0 +uranisme uranisme nom m s 0 0.07 0 0.07 +uraniste uraniste nom m s 0.02 0 0.02 0 +uranium uranium nom m s 1.6 0.47 1.6 0.47 +urbain urbain adj m s 3.06 4.39 0.96 1.89 +urbaine urbain adj f s 3.06 4.39 1.28 1.35 +urbaines urbain adj f p 3.06 4.39 0.42 0.34 +urbains urbain adj m p 3.06 4.39 0.41 0.81 +urbanisation urbanisation nom f s 0.14 0 0.14 0 +urbanisme urbanisme nom m s 1.48 0.14 1.48 0.14 +urbaniste urbaniste adj s 0.01 0.07 0.01 0 +urbanistes urbaniste nom p 0.29 0.41 0.29 0.27 +urbanisé urbaniser ver m s 0.02 0.07 0 0.07 par:pas; +urbanisée urbaniser ver f s 0.02 0.07 0.02 0 par:pas; +urbanité urbanité nom f s 0 0.41 0 0.41 +urbi_et_orbi urbi_et_orbi adv 0.01 0.27 0.01 0.27 +urdu urdu nom m s 0.02 0 0.02 0 +ures ure nom m p 0.01 0.07 0.01 0.07 +uretère uretère nom m s 0.04 0 0.04 0 +urf urf adj m s 0 0.07 0 0.07 +urge urger ver 0.81 1.08 0.77 0.61 imp:pre:2s;ind:pre:3s;sub:pre:3s; +urgeait urger ver 0.81 1.08 0.01 0.34 ind:imp:3s; +urgemment urgemment adv 0.01 0.14 0.01 0.14 +urgence urgence nom f s 53.03 23.11 38.78 21.35 +urgences urgence nom f p 53.03 23.11 14.24 1.76 +urgent urgent adj m s 31.56 16.96 26.75 11.62 +urgente urgent adj f s 31.56 16.96 3.18 2.91 +urgentes urgent adj f p 31.56 16.96 0.84 1.49 +urgentissime urgentissime adj s 0.02 0 0.02 0 +urgentiste urgentiste nom s 0.25 0 0.25 0 +urgents urgent adj m p 31.56 16.96 0.79 0.95 +urger urger ver 0.81 1.08 0.01 0.07 inf; +urina uriner ver 2 2.7 0 0.34 ind:pas:3s; +urinaient uriner ver 2 2.7 0.12 0.07 ind:imp:3p; +urinaire urinaire adj s 1.27 0.34 0.98 0.14 +urinaires urinaire adj p 1.27 0.34 0.28 0.2 +urinais uriner ver 2 2.7 0 0.07 ind:imp:1s; +urinait uriner ver 2 2.7 0.01 0.27 ind:imp:3s; +urinal urinal nom m s 0.03 0.2 0.03 0.2 +urinant uriner ver 2 2.7 0.06 0.07 par:pre; +urine urine nom f s 5.72 6.62 4.63 6.28 +urinent uriner ver 2 2.7 0.08 0.07 ind:pre:3p; +uriner uriner ver 2 2.7 0.86 1.35 inf; +urinera uriner ver 2 2.7 0.01 0 ind:fut:3s; +urines urine nom f p 5.72 6.62 1.08 0.34 +urineuse urineux adj f s 0 0.07 0 0.07 +urinez uriner ver 2 2.7 0.1 0 imp:pre:2p;ind:pre:2p; +urinoir urinoir nom m s 0.69 1.35 0.37 0.61 +urinoirs urinoir nom m p 0.69 1.35 0.32 0.74 +urinons uriner ver 2 2.7 0 0.14 imp:pre:1p; +uriné uriner ver m s 2 2.7 0.25 0.14 par:pas; +urique urique adj m s 0.06 0.07 0.06 0.07 +urne urne nom f s 2.69 3.38 1.94 1.96 +urnes urne nom f p 2.69 3.38 0.74 1.42 +urographie urographie nom f s 0 0.07 0 0.07 +urokinase urokinase nom f s 0.01 0 0.01 0 +urologie urologie nom f s 0.23 0.07 0.23 0.07 +urologique urologique adj m s 0.01 0 0.01 0 +urologue urologue nom s 0.29 0.2 0.29 0.2 +uroscopie uroscopie nom f s 0 0.07 0 0.07 +ursuline ursuline nom f s 0.23 1.01 0 0.07 +ursulines ursuline nom f p 0.23 1.01 0.23 0.95 +urticaire urticaire nom f s 1.22 0.61 1.22 0.61 +urticante urticant adj f s 0.02 0.2 0.01 0 +urticantes urticant adj f p 0.02 0.2 0.01 0.14 +urticants urticant adj m p 0.02 0.2 0 0.07 +urubu urubu nom m s 0 0.34 0 0.07 +urubus urubu nom m p 0 0.34 0 0.27 +uruguayen uruguayen nom m s 0.57 0 0.57 0 +urus urus nom m 0 0.2 0 0.2 +urètre urètre nom m s 0.16 0.47 0.16 0.47 +urée urée nom f s 0.2 0.14 0.2 0.14 +urémie urémie nom f s 0.31 0.27 0.31 0.27 +urémique urémique adj s 0.02 0 0.02 0 +uréthane uréthane nom m s 0.08 0 0.08 0 +urétrite urétrite nom f s 0.04 0 0.04 0 +us us nom m p 9.1 1.55 9.1 1.55 +usa user ver 13.58 45 0.15 0.61 ind:pas:3s; +usage usage nom m s 14.45 47.97 13.26 42.3 +usager usager nom m s 0.07 1.55 0.02 0.54 +usagers usager nom m p 0.07 1.55 0.05 0.95 +usages usage nom m p 14.45 47.97 1.19 5.68 +usagères usager nom f p 0.07 1.55 0 0.07 +usagé usagé adj m s 1.37 3.11 0.22 1.01 +usagée usagé adj f s 1.37 3.11 0.39 0.68 +usagées usagé adj f p 1.37 3.11 0.31 0.74 +usagés usagé adj m p 1.37 3.11 0.45 0.68 +usai user ver 13.58 45 0 0.41 ind:pas:1s; +usaient user ver 13.58 45 0.14 1.49 ind:imp:3p; +usais user ver 13.58 45 0.02 0.61 ind:imp:1s;ind:imp:2s; +usait user ver 13.58 45 0.08 4.26 ind:imp:3s; +usant user ver 13.58 45 0.59 2.36 par:pre; +usante usant adj f s 0.4 0.14 0.01 0 +use user ver 13.58 45 3.19 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +usent user ver 13.58 45 0.17 2.23 ind:pre:3p; +user user ver 13.58 45 3.48 9.73 inf; +usera user ver 13.58 45 0.34 0 ind:fut:3s; +userai user ver 13.58 45 0.22 0.2 ind:fut:1s; +userais user ver 13.58 45 0.16 0 cnd:pre:1s;cnd:pre:2s; +userait user ver 13.58 45 0.04 0.61 cnd:pre:3s; +useriez user ver 13.58 45 0.02 0 cnd:pre:2p; +userons user ver 13.58 45 0.01 0.07 ind:fut:1p; +useront user ver 13.58 45 0.02 0.07 ind:fut:3p; +uses user ver 13.58 45 0.19 0 ind:pre:2s; +usez user ver 13.58 45 0.46 0.27 imp:pre:2p;ind:pre:2p; +usinage usinage nom m s 0.05 0 0.05 0 +usinaient usiner ver 0.05 0.95 0 0.07 ind:imp:3p; +usinant usiner ver 0.05 0.95 0 0.07 par:pre; +usine usine nom f s 51.59 42.97 43.51 28.04 +usine_pilote usine_pilote nom f s 0 0.07 0 0.07 +usiner usiner ver 0.05 0.95 0.01 0 inf; +usines usine nom f p 51.59 42.97 8.08 14.93 +usinier usinier adj m s 0 0.14 0 0.07 +usiniers usinier nom m p 0 0.07 0 0.07 +usinière usinier adj f s 0 0.14 0 0.07 +usiné usiner ver m s 0.05 0.95 0 0.07 par:pas; +usinée usiner ver f s 0.05 0.95 0 0.07 par:pas; +usinées usiner ver f p 0.05 0.95 0 0.07 par:pas; +usinés usiner ver m p 0.05 0.95 0 0.07 par:pas; +usions user ver 13.58 45 0.02 0.2 ind:imp:1p; +usité usité adj m s 0.01 0.27 0 0.2 +usités usité adj m p 0.01 0.27 0.01 0.07 +usons user ver 13.58 45 0.14 0.27 imp:pre:1p;ind:pre:1p; +ustensile ustensile nom m s 1.32 5.27 0.27 1.35 +ustensiles ustensile nom m p 1.32 5.27 1.06 3.92 +ustion ustion nom f s 0 0.14 0 0.14 +usuel usuel adj m s 0.19 1.28 0.04 0.41 +usuelle usuel adj f s 0.19 1.28 0.04 0.2 +usuellement usuellement adv 0.1 0 0.1 0 +usuelles usuel adj f p 0.19 1.28 0 0.2 +usuels usuel adj m p 0.19 1.28 0.1 0.47 +usufruit usufruit nom m s 0.15 0.47 0.15 0.47 +usufruitier usufruitier nom m s 0 0.14 0 0.14 +usuraire usuraire adj m s 0.04 0.14 0.01 0.14 +usuraires usuraire adj m p 0.04 0.14 0.02 0 +usure usure nom f s 1.78 10.2 1.77 10 +usures usure nom f p 1.78 10.2 0.01 0.2 +usurier usurier nom m s 2.17 1.28 1.2 0.61 +usuriers usurier nom m p 2.17 1.28 0.86 0.61 +usurière usurier nom f s 2.17 1.28 0.11 0.07 +usurpaient usurper ver 1.09 2.03 0 0.14 ind:imp:3p; +usurpait usurper ver 1.09 2.03 0 0.07 ind:imp:3s; +usurpant usurper ver 1.09 2.03 0.01 0.2 par:pre; +usurpateur usurpateur nom m s 0.43 1.62 0.21 0.68 +usurpateurs usurpateur nom m p 0.43 1.62 0.05 0.61 +usurpation usurpation nom f s 0.59 1.35 0.59 1.35 +usurpatrice usurpateur nom f s 0.43 1.62 0.17 0.34 +usurpent usurper ver 1.09 2.03 0.01 0.07 ind:pre:3p; +usurper usurper ver 1.09 2.03 0.51 0.34 inf; +usurperont usurper ver 1.09 2.03 0.01 0 ind:fut:3p; +usurpé usurper ver m s 1.09 2.03 0.54 0.74 par:pas; +usurpée usurper ver f s 1.09 2.03 0 0.27 par:pas; +usurpées usurper ver f p 1.09 2.03 0 0.14 par:pas; +usurpés usurper ver m p 1.09 2.03 0.01 0.07 par:pas; +usât user ver 13.58 45 0 0.2 sub:imp:3s; +usèrent user ver 13.58 45 0 0.07 ind:pas:3p; +usé user ver m s 13.58 45 2.02 8.92 par:pas; +usée user ver f s 13.58 45 0.8 3.72 par:pas; +usées usé adj f p 2.49 17.09 0.5 2.7 +usés user ver m p 13.58 45 1.05 2.09 par:pas; +ut ut nom m 1.02 0.54 1.02 0.54 +utile utile adj s 44.99 32.7 36.47 23.99 +utilement utilement adv 0.03 1.49 0.03 1.49 +utiles utile adj p 44.99 32.7 8.52 8.72 +utilisa utiliser ver 182.44 43.51 0.23 0.68 ind:pas:3s; +utilisable utilisable adj s 1.62 1.69 1.3 1.15 +utilisables utilisable adj p 1.62 1.69 0.32 0.54 +utilisai utiliser ver 182.44 43.51 0 0.14 ind:pas:1s; +utilisaient utiliser ver 182.44 43.51 1.68 1.96 ind:imp:3p; +utilisais utiliser ver 182.44 43.51 1.15 0.47 ind:imp:1s;ind:imp:2s; +utilisait utiliser ver 182.44 43.51 3.84 5.41 ind:imp:3s; +utilisant utiliser ver 182.44 43.51 5.73 3.72 par:pre; +utilisateur utilisateur nom m s 1.24 0.2 0.79 0 +utilisateurs utilisateur nom m p 1.24 0.2 0.44 0.2 +utilisation utilisation nom f s 4.67 4.26 4.47 4.12 +utilisations utilisation nom f p 4.67 4.26 0.2 0.14 +utilisatrice utilisateur nom f s 1.24 0.2 0.01 0 +utilise utiliser ver 182.44 43.51 31.68 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +utilisent utiliser ver 182.44 43.51 8 1.49 ind:pre:3p; +utiliser utiliser ver 182.44 43.51 61.97 15.61 inf;; +utilisera utiliser ver 182.44 43.51 1.62 0.14 ind:fut:3s; +utiliserai utiliser ver 182.44 43.51 1.82 0.2 ind:fut:1s; +utiliseraient utiliser ver 182.44 43.51 0.2 0.34 cnd:pre:3p; +utiliserais utiliser ver 182.44 43.51 1.17 0.14 cnd:pre:1s;cnd:pre:2s; +utiliserait utiliser ver 182.44 43.51 0.8 0.34 cnd:pre:3s; +utiliseras utiliser ver 182.44 43.51 0.58 0 ind:fut:2s; +utiliserez utiliser ver 182.44 43.51 0.36 0 ind:fut:2p; +utiliseriez utiliser ver 182.44 43.51 0.17 0 cnd:pre:2p; +utiliserions utiliser ver 182.44 43.51 0.03 0 cnd:pre:1p; +utiliserons utiliser ver 182.44 43.51 1.02 0 ind:fut:1p; +utiliseront utiliser ver 182.44 43.51 0.49 0.07 ind:fut:3p; +utilises utiliser ver 182.44 43.51 3.8 0.2 ind:pre:2s;sub:pre:2s; +utilisez utiliser ver 182.44 43.51 11.86 0.34 imp:pre:2p;ind:pre:2p; +utilisiez utiliser ver 182.44 43.51 0.66 0.41 ind:imp:2p;sub:pre:2p; +utilisions utiliser ver 182.44 43.51 0.37 0.14 ind:imp:1p; +utilisons utiliser ver 182.44 43.51 3.04 0.07 imp:pre:1p;ind:pre:1p; +utilisât utiliser ver 182.44 43.51 0 0.07 sub:imp:3s; +utilisèrent utiliser ver 182.44 43.51 0.06 0.07 ind:pas:3p; +utilisé utiliser ver m s 182.44 43.51 30.65 4.19 par:pas; +utilisée utiliser ver f s 182.44 43.51 5.59 1.62 par:pas; +utilisées utiliser ver f p 182.44 43.51 1.43 0.88 par:pas; +utilisés utiliser ver m p 182.44 43.51 2.44 1.89 par:pas; +utilitaire utilitaire nom s 0.16 0.34 0.15 0.14 +utilitaires utilitaire adj p 0.12 1.35 0.01 0.27 +utilitarisme utilitarisme nom m s 0 0.07 0 0.07 +utilité utilité nom f s 4.28 7.09 4.15 6.49 +utilités utilité nom f p 4.28 7.09 0.13 0.61 +utopie utopie nom f s 1.48 1.28 1.16 0.88 +utopies utopie nom f p 1.48 1.28 0.32 0.41 +utopique utopique adj s 0.49 0.61 0.33 0.41 +utopiques utopique adj f p 0.49 0.61 0.16 0.2 +utopiste utopiste nom s 0.29 0.07 0.11 0.07 +utopistes utopiste nom p 0.29 0.07 0.18 0 +utérin utérin adj m s 0.18 0.81 0.06 0.34 +utérine utérin adj f s 0.18 0.81 0.09 0.34 +utérines utérin adj f p 0.18 0.81 0.02 0.14 +utérins utérin adj m p 0.18 0.81 0.01 0 +utérus utérus nom m 2.88 0.68 2.88 0.68 +uxorilocal uxorilocal adj m s 0 0.07 0 0.07 +v v nom_sup m 26.54 5 26.54 5 +va aller ver 9992.77 2854.93 3382.55 694.59 imp:pre:2s;ind:pre:3s; +va_et_vient va_et_vient nom m 1.3 10.61 1.3 10.61 +va_tout va_tout nom m 0.05 0.41 0.05 0.41 +vacance vacance nom f s 67.9 82.57 0.29 0.88 +vacances vacance nom f p 67.9 82.57 67.6 81.69 +vacancier vacancier nom m s 0.24 2.23 0.02 0.14 +vacanciers vacancier nom m p 0.24 2.23 0.2 1.89 +vacancière vacancier nom f s 0.24 2.23 0.01 0.14 +vacancières vacancier nom f p 0.24 2.23 0.01 0.07 +vacant vacant adj m s 1.68 5.07 0.84 2.57 +vacante vacant adj f s 1.68 5.07 0.6 1.42 +vacantes vacant adj f p 1.68 5.07 0.01 0.41 +vacants vacant adj m p 1.68 5.07 0.22 0.68 +vacarme vacarme nom m s 3.46 15.61 3.46 15.2 +vacarmes vacarme nom m p 3.46 15.61 0 0.41 +vacataire vacataire nom s 0.05 0 0.05 0 +vacation vacation nom f s 0.05 0.54 0.05 0.14 +vacations vacation nom f p 0.05 0.54 0 0.41 +vaccin vaccin nom m s 6.54 4.93 5.01 4.12 +vaccinal vaccinal adj m s 0.01 0 0.01 0 +vaccinant vaccinant adj m s 0 0.07 0 0.07 +vaccination vaccination nom f s 0.5 0.54 0.2 0.47 +vaccinations vaccination nom f p 0.5 0.54 0.3 0.07 +vaccine vacciner ver 1.66 1.62 0.18 0.14 imp:pre:2s;ind:pre:3s; +vaccinent vacciner ver 1.66 1.62 0 0.07 ind:pre:3p; +vacciner vacciner ver 1.66 1.62 0.68 0.47 inf; +vaccins vaccin nom m p 6.54 4.93 1.54 0.81 +vacciné vacciner ver m s 1.66 1.62 0.53 0.47 par:pas; +vaccinée vacciner ver f s 1.66 1.62 0.14 0.2 par:pas; +vaccinées vacciner ver f p 1.66 1.62 0.01 0.07 par:pas; +vaccinés vacciner ver m p 1.66 1.62 0.11 0.2 par:pas; +vachard vachard adj m s 0.08 1.42 0.08 0.74 +vacharde vachard adj f s 0.08 1.42 0 0.34 +vachardes vachard adj f p 0.08 1.42 0 0.14 +vachardise vachardise nom f s 0 0.14 0 0.14 +vachards vachard adj m p 0.08 1.42 0 0.2 +vache vache nom f s 47.71 53.45 36.24 26.08 +vachement vachement adv 15.74 11.82 15.74 11.82 +vacher vacher nom m s 0.91 0.81 0.77 0.61 +vacherie vacherie nom f s 0.69 5.41 0.42 3.18 +vacheries vacherie nom f p 0.69 5.41 0.27 2.23 +vacherin vacherin nom m s 0 0.54 0 0.54 +vachers vacher nom m p 0.91 0.81 0.13 0.2 +vaches vache nom f p 47.71 53.45 11.46 27.36 +vachette vachette nom f s 0.02 0.41 0.02 0.34 +vachettes vachette nom f p 0.02 0.41 0 0.07 +vachère vachère nom f s 0.11 0.61 0 0.41 +vachères vachère nom f p 0.11 0.61 0.11 0.2 +vacilla vaciller ver 1.87 12.84 0.1 1.69 ind:pas:3s; +vacillai vaciller ver 1.87 12.84 0 0.07 ind:pas:1s; +vacillaient vaciller ver 1.87 12.84 0 0.54 ind:imp:3p; +vacillait vaciller ver 1.87 12.84 0.02 2.23 ind:imp:3s; +vacillant vaciller ver 1.87 12.84 0.27 1.28 par:pre; +vacillante vacillant adj f s 0.28 4.8 0.19 1.82 +vacillantes vacillant adj f p 0.28 4.8 0.01 0.81 +vacillants vacillant adj m p 0.28 4.8 0.01 0.41 +vacillations vacillation nom f p 0 0.07 0 0.07 +vacille vaciller ver 1.87 12.84 0.93 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vacillement vacillement nom m s 0.01 0.34 0.01 0.34 +vacillent vaciller ver 1.87 12.84 0.22 0.34 ind:pre:3p; +vaciller vaciller ver 1.87 12.84 0.29 3.45 inf; +vacillât vaciller ver 1.87 12.84 0 0.07 sub:imp:3s; +vacillèrent vaciller ver 1.87 12.84 0 0.27 ind:pas:3p; +vacillé vaciller ver m s 1.87 12.84 0.03 0.34 par:pas; +vacuité vacuité nom f s 0.27 1.42 0.27 1.42 +vacuole vacuole nom f s 0.01 0 0.01 0 +vacuolisation vacuolisation nom f s 0.01 0 0.01 0 +vacuum vacuum nom m s 0.13 0.2 0.13 0.2 +vade_retro vade_retro adv 0.26 0.68 0.26 0.68 +vadrouillais vadrouiller ver 0.35 1.35 0.01 0.07 ind:imp:2s; +vadrouillait vadrouiller ver 0.35 1.35 0.01 0.07 ind:imp:3s; +vadrouille vadrouille nom f s 0.95 1.89 0.8 1.69 +vadrouillent vadrouiller ver 0.35 1.35 0 0.07 ind:pre:3p; +vadrouiller vadrouiller ver 0.35 1.35 0.21 0.81 inf; +vadrouilles vadrouille nom f p 0.95 1.89 0.14 0.2 +vadrouilleur vadrouilleur nom m s 0.11 0.14 0.1 0 +vadrouilleurs vadrouilleur nom m p 0.11 0.14 0.01 0 +vadrouilleuse vadrouilleur nom f s 0.11 0.14 0 0.07 +vadrouilleuses vadrouilleur nom f p 0.11 0.14 0 0.07 +vadrouillez vadrouiller ver 0.35 1.35 0.01 0 ind:pre:2p; +vadrouillé vadrouiller ver m s 0.35 1.35 0.06 0.07 par:pas; +vae_soli vae_soli adv 0 0.07 0 0.07 +vae_victis vae_victis adv 0.02 0.07 0.02 0.07 +vagabond vagabond nom m s 5.72 6.22 3.1 3.38 +vagabonda vagabonder ver 2.42 2.64 0 0.07 ind:pas:3s; +vagabondage vagabondage nom m s 0.7 2.57 0.68 1.76 +vagabondages vagabondage nom m p 0.7 2.57 0.02 0.81 +vagabondaient vagabonder ver 2.42 2.64 0 0.14 ind:imp:3p; +vagabondais vagabonder ver 2.42 2.64 0.28 0 ind:imp:1s;ind:imp:2s; +vagabondait vagabonder ver 2.42 2.64 0.26 0.88 ind:imp:3s; +vagabondant vagabonder ver 2.42 2.64 0.04 0 par:pre; +vagabonde vagabonder ver 2.42 2.64 0.68 0.34 ind:pre:1s;ind:pre:3s; +vagabondent vagabonder ver 2.42 2.64 0.17 0.14 ind:pre:3p; +vagabonder vagabonder ver 2.42 2.64 0.78 0.81 inf; +vagabondes vagabonder ver 2.42 2.64 0.12 0.07 ind:pre:2s; +vagabondiez vagabonder ver 2.42 2.64 0.01 0 ind:imp:2p; +vagabonds vagabond nom m p 5.72 6.22 2.3 2.57 +vagabondèrent vagabonder ver 2.42 2.64 0 0.07 ind:pas:3p; +vagabondé vagabonder ver m s 2.42 2.64 0.08 0.14 par:pas; +vagal vagal adj m s 0.41 0 0.41 0 +vagi vagir ver m s 0.15 1.76 0 0.14 par:pas; +vagin vagin nom m s 4.4 2.16 4.11 2.09 +vaginal vaginal adj m s 1.8 0.54 0.45 0.14 +vaginale vaginal adj f s 1.8 0.54 0.9 0.34 +vaginales vaginal adj f p 1.8 0.54 0.38 0.07 +vaginaux vaginal adj m p 1.8 0.54 0.08 0 +vaginite vaginite nom f s 0.03 0 0.03 0 +vagins vagin nom m p 4.4 2.16 0.29 0.07 +vagir vagir ver 0.15 1.76 0 0.2 inf; +vagis vagir ver 0.15 1.76 0 0.07 ind:pre:1s; +vagissaient vagir ver 0.15 1.76 0 0.07 ind:imp:3p; +vagissais vagir ver 0.15 1.76 0.14 0.07 ind:imp:1s;ind:imp:2s; +vagissait vagir ver 0.15 1.76 0 0.81 ind:imp:3s; +vagissant vagissant adj m s 0.03 0.2 0.03 0.2 +vagissement vagissement nom m s 0.7 0.95 0.43 0.34 +vagissements vagissement nom m p 0.7 0.95 0.27 0.61 +vagissent vagir ver 0.15 1.76 0.01 0.07 ind:pre:3p; +vagissons vagir ver 0.15 1.76 0 0.07 ind:pre:1p; +vagit vagir ver 0.15 1.76 0 0.2 ind:pre:3s;ind:pas:3s; +vagotomie vagotomie nom f s 0.01 0 0.01 0 +vagua vaguer ver 0.21 1.89 0 0.07 ind:pas:3s; +vaguait vaguer ver 0.21 1.89 0 0.27 ind:imp:3s; +vaguant vaguer ver 0.21 1.89 0 0.07 par:pre; +vague vague nom s 21.59 73.58 12.8 38.18 +vaguelette vaguelette nom f s 0.04 2.84 0.02 0.61 +vaguelettes vaguelette nom f p 0.04 2.84 0.02 2.23 +vaguement vaguement adv 4.72 51.76 4.72 51.76 +vaguemestre vaguemestre nom s 0.14 0.68 0.14 0.68 +vaguent vaguer ver 0.21 1.89 0 0.14 ind:pre:3p; +vaguer vaguer ver 0.21 1.89 0.1 0.47 inf; +vagues vague nom p 21.59 73.58 8.79 35.41 +vahiné vahiné nom f s 0.13 0.54 0.09 0.27 +vahinés vahiné nom f p 0.13 0.54 0.03 0.27 +vaillamment vaillamment adv 0.6 2.64 0.6 2.64 +vaillance vaillance nom f s 1.2 2.03 1.2 2.03 +vaillant vaillant adj m s 5.45 8.58 3.75 3.31 +vaillante vaillant adj f s 5.45 8.58 0.65 2.43 +vaillantes vaillant adj f p 5.45 8.58 0.05 0.95 +vaillants vaillant adj m p 5.45 8.58 1 1.89 +vaille valoir ver 236.07 175.74 3.04 5.34 sub:pre:1s;sub:pre:3s; +vaillent valoir ver 236.07 175.74 0.21 0.2 sub:pre:3p; +vain vain adj m s 19.87 57.03 16.02 40.14 +vainc vaincre ver 27.84 25.68 0.14 0.27 ind:pre:3s; +vaincra vaincre ver 27.84 25.68 0.82 0.27 ind:fut:3s; +vaincrai vaincre ver 27.84 25.68 0.42 0.2 ind:fut:1s; +vaincraient vaincre ver 27.84 25.68 0.02 0.07 cnd:pre:3p; +vaincrais vaincre ver 27.84 25.68 0.11 0 cnd:pre:1s;cnd:pre:2s; +vaincrait vaincre ver 27.84 25.68 0.27 0.07 cnd:pre:3s; +vaincras vaincre ver 27.84 25.68 0.19 0 ind:fut:2s; +vaincre vaincre ver 27.84 25.68 13.71 13.31 inf; +vaincrez vaincre ver 27.84 25.68 0.11 0 ind:fut:2p; +vaincrons vaincre ver 27.84 25.68 1.62 0.47 ind:fut:1p; +vaincront vaincre ver 27.84 25.68 0.09 0.14 ind:fut:3p; +vaincs vaincre ver 27.84 25.68 0.06 0.14 imp:pre:2s;ind:pre:2s; +vaincu vaincre ver m s 27.84 25.68 7.28 6.62 par:pas; +vaincue vaincre ver f s 27.84 25.68 1.1 2.23 par:pas; +vaincues vaincre ver f p 27.84 25.68 0.18 0.14 par:pas; +vaincus vaincre ver m p 27.84 25.68 1.42 1.55 par:pas; +vaine vain adj f s 19.87 57.03 1.04 8.18 +vainement vainement adv 0.55 12.09 0.55 12.09 +vaines vain adj f p 19.87 57.03 1.57 5.2 +vainquant vaincre ver 27.84 25.68 0.01 0.07 par:pre; +vainquent vaincre ver 27.84 25.68 0.01 0 ind:pre:3p; +vainqueur vainqueur nom m s 9.1 11.35 6.71 5.74 +vainqueurs vainqueur nom m p 9.1 11.35 2.38 5.61 +vainquez vaincre ver 27.84 25.68 0.03 0 imp:pre:2p; +vainquions vaincre ver 27.84 25.68 0.02 0 ind:imp:1p; +vainquirent vaincre ver 27.84 25.68 0.01 0 ind:pas:3p; +vainquit vaincre ver 27.84 25.68 0.18 0.14 ind:pas:3s; +vainquons vaincre ver 27.84 25.68 0.03 0 ind:pre:1p; +vains vain adj m p 19.87 57.03 1.23 3.51 +vair vair nom m s 0.09 0.27 0.09 0.27 +vairon vairon adj m s 0 0.54 0 0.2 +vairons vairon nom m p 0.04 0.54 0.04 0.41 +vais aller ver 9992.77 2854.93 1644.99 280 ind:pre:1s; +vaisseau vaisseau nom m s 83.39 12.43 67.11 7.23 +vaisseau_amiral vaisseau_amiral nom m s 0.05 0 0.05 0 +vaisseaux vaisseau nom m p 83.39 12.43 16.27 5.2 +vaisselier vaisselier nom m s 0.07 0.68 0.07 0.61 +vaisseliers vaisselier nom m p 0.07 0.68 0 0.07 +vaisselle vaisselle nom f s 12.11 25.95 12.1 24.93 +vaisselles vaisselle nom f p 12.11 25.95 0.01 1.01 +val val nom m s 3.61 4.93 2.12 3.04 +valable valable adj s 9.1 10.41 7.46 8.65 +valablement valablement adv 0 0.27 0 0.27 +valables valable adj p 9.1 10.41 1.63 1.76 +valaient valoir ver 236.07 175.74 1.03 5.27 ind:imp:3p; +valais valoir ver 236.07 175.74 0.46 0.47 ind:imp:1s;ind:imp:2s; +valait valoir ver 236.07 175.74 15.82 41.62 ind:imp:3s; +valant valoir ver 236.07 175.74 1 1.49 par:pre; +valaque valaque nom s 0.01 0 0.01 0 +valdingua valdinguer ver 0.05 1.76 0 0.07 ind:pas:3s; +valdingue valdinguer ver 0.05 1.76 0 1.01 ind:pre:3s; +valdinguer valdinguer ver 0.05 1.76 0.05 0.14 inf; +valdingues valdinguer ver 0.05 1.76 0 0.41 ind:pre:2s; +valdingué valdinguer ver m s 0.05 1.76 0 0.07 par:pas; +valdingués valdinguer ver m p 0.05 1.76 0 0.07 par:pas; +valdôtains valdôtain nom m p 0 0.14 0 0.14 +valence valence nom f s 0.28 0.07 0.28 0.07 +valencien valencien nom m s 0.14 0.14 0 0.07 +valencienne valencien nom f s 0.14 0.14 0.14 0.07 +valent valoir ver 236.07 175.74 9.79 8.58 ind:pre:3p; +valentin valentin nom m s 0.27 0 0.11 0 +valentine valentin nom f s 0.27 0 0.16 0 +valentinien valentinien nom m s 0.02 0 0.02 0 +valet valet nom m s 11.4 19.8 9.23 13.65 +valetaille valetaille nom f s 0.01 1.01 0.01 1.01 +valeter valeter ver 0.14 0 0.14 0 inf; +valets valet nom m p 11.4 19.8 2.17 6.15 +valeur valeur nom f s 45.4 52.3 32.48 40.74 +valeur_refuge valeur_refuge nom f s 0 0.07 0 0.07 +valeureuse valeureux adj f s 2.45 2.36 0 0.07 +valeureusement valeureusement adv 0.01 0 0.01 0 +valeureuses valeureux adj f p 2.45 2.36 0.01 0.07 +valeureux valeureux adj m 2.45 2.36 2.44 2.23 +valeurs valeur nom f p 45.4 52.3 12.91 11.55 +valez valoir ver 236.07 175.74 2.49 0.54 imp:pre:2p;ind:pre:2p; +valgus valgus adj m 0.02 0 0.02 0 +valida valider ver 1.23 0.54 0 0.07 ind:pas:3s; +validait valider ver 1.23 0.54 0 0.07 ind:imp:3s; +validant valider ver 1.23 0.54 0 0.07 par:pre; +validation validation nom f s 0.14 0.07 0.14 0.07 +valide valide adj s 2.31 3.38 1.72 1.55 +valident valider ver 1.23 0.54 0.01 0 ind:pre:3p; +valider valider ver 1.23 0.54 0.72 0.14 inf; +valideront valider ver 1.23 0.54 0.03 0 ind:fut:3p; +valides valide adj p 2.31 3.38 0.59 1.82 +validité validité nom f s 0.35 0.41 0.35 0.41 +validé valider ver m s 1.23 0.54 0.18 0.07 par:pas; +validée validé adj f s 0.07 2.57 0.04 0 +valiez valoir ver 236.07 175.74 0.15 0 ind:imp:2p; +valions valoir ver 236.07 175.74 0.16 0.14 ind:imp:1p; +valise valise nom f s 50.99 70.34 33.21 47.43 +valises valise nom f p 50.99 70.34 17.79 22.91 +valisé valiser ver m s 0 0.14 0 0.14 par:pas; +valkyries valkyrie nom f p 0.02 0 0.02 0 +valleuse valleuse nom f s 0 0.07 0 0.07 +vallon vallon nom m s 2.5 6.89 2.11 5.74 +vallonnaient vallonner ver 0 0.27 0 0.07 ind:imp:3p; +vallonnait vallonner ver 0 0.27 0 0.07 ind:imp:3s; +vallonnement vallonnement nom m s 0 2.09 0 0.88 +vallonnements vallonnement nom m p 0 2.09 0 1.22 +vallonner vallonner ver 0 0.27 0 0.07 inf; +vallonné vallonné adj m s 0.06 0.74 0.03 0.27 +vallonnée vallonné adj f s 0.06 0.74 0.01 0.27 +vallonnées vallonné adj f p 0.06 0.74 0.01 0.14 +vallonnés vallonné adj m p 0.06 0.74 0.01 0.07 +vallons vallon nom m p 2.5 6.89 0.4 1.15 +vallée vallée nom f s 13.54 35.68 12.51 30.14 +vallées vallée nom f p 13.54 35.68 1.03 5.54 +valoche valoche nom f s 0.46 3.38 0.19 2.03 +valoches valoche nom f p 0.46 3.38 0.27 1.35 +valoir valoir ver 236.07 175.74 4.62 9.32 inf; +valons valoir ver 236.07 175.74 0.78 0.41 imp:pre:1p;ind:pre:1p; +valorisait valoriser ver 0.45 0.81 0 0.07 ind:imp:3s; +valorisant valorisant adj m s 0.37 0.14 0.35 0.14 +valorisante valorisant adj f s 0.37 0.14 0.02 0 +valorisation valorisation nom f s 0.01 0 0.01 0 +valorise valoriser ver 0.45 0.81 0.19 0.27 imp:pre:2s;ind:pre:3s; +valoriser valoriser ver 0.45 0.81 0.22 0.2 inf; +valorisez valoriser ver 0.45 0.81 0.01 0 ind:pre:2p; +valorisé valoriser ver m s 0.45 0.81 0 0.07 par:pas; +valorisée valoriser ver f s 0.45 0.81 0.02 0.07 par:pas; +valorisés valoriser ver m p 0.45 0.81 0.01 0.14 par:pas; +valpolicella valpolicella nom m s 0.01 0.14 0.01 0.14 +vals val nom m p 3.61 4.93 0.61 0.54 +valsa valser ver 1.93 5.14 0 0.2 ind:pas:3s; +valsaient valser ver 1.93 5.14 0 0.47 ind:imp:3p; +valsait valser ver 1.93 5.14 0.04 0.34 ind:imp:3s; +valsant valser ver 1.93 5.14 0.05 0.27 par:pre; +valse valse nom f s 5.55 9.32 5.45 7.91 +valse_hésitation valse_hésitation nom f s 0 0.27 0 0.2 +valsent valser ver 1.93 5.14 0.11 0.2 ind:pre:3p; +valser valser ver 1.93 5.14 1.33 2.43 inf; +valsera valser ver 1.93 5.14 0.01 0 ind:fut:3s; +valses valse nom f p 5.55 9.32 0.11 1.42 +valse_hésitation valse_hésitation nom f p 0 0.27 0 0.07 +valseur valseur nom m s 0.27 1.35 0.01 1.08 +valseurs valseur nom m p 0.27 1.35 0 0.14 +valseuse valseur nom f s 0.27 1.35 0.11 0 +valseuses valseur nom f p 0.27 1.35 0.14 0.14 +valsez valser ver 1.93 5.14 0.04 0.07 ind:pre:2p; +valsons valser ver 1.93 5.14 0.02 0 imp:pre:1p;ind:pre:1p; +valsèrent valser ver 1.93 5.14 0.01 0.07 ind:pas:3p; +valsé valser ver m s 1.93 5.14 0.2 0.61 par:pas; +valu valoir ver m s 236.07 175.74 3.82 9.39 par:pas; +value valoir ver f s 236.07 175.74 0.12 0.07 par:pas; +values valoir ver f p 236.07 175.74 0 0.14 par:pas; +valurent valoir ver 236.07 175.74 0.03 0.81 ind:pas:3p; +valut valoir ver 236.07 175.74 0.56 3.45 ind:pas:3s; +valve valve nom f s 2.63 1.01 1.6 0.47 +valves valve nom f p 2.63 1.01 1.03 0.54 +valvulaires valvulaire adj p 0 0.07 0 0.07 +valvule valvule nom f s 0.22 0.07 0.22 0.07 +valériane valériane nom f s 0.3 0.14 0.3 0.14 +valétudinaire valétudinaire adj m s 0.01 0.14 0.01 0.14 +valût valoir ver 236.07 175.74 0 0.61 sub:imp:3s; +vamp vamp nom f s 0.48 1.42 0.33 1.22 +vamp_club vamp_club nom f s 0.01 0 0.01 0 +vampe vamper ver 0.24 0.07 0.01 0 imp:pre:2s; +vamper vamper ver 0.24 0.07 0.2 0.07 inf; +vampire vampire nom m s 27.27 3.24 15.29 1.82 +vampires vampire nom m p 27.27 3.24 11.98 1.42 +vampirique vampirique adj s 0.21 0.2 0.21 0.2 +vampirisant vampiriser ver 0.1 0.2 0.01 0 par:pre; +vampirise vampiriser ver 0.1 0.2 0.04 0.07 ind:pre:1s;ind:pre:3s; +vampirisme vampirisme nom m s 0.32 0.14 0.32 0.14 +vampirisé vampiriser ver m s 0.1 0.2 0 0.07 par:pas; +vampirisée vampiriser ver f s 0.1 0.2 0.05 0 par:pas; +vampirisées vampiriser ver f p 0.1 0.2 0 0.07 par:pas; +vamps vamp nom f p 0.48 1.42 0.16 0.2 +vampé vamper ver m s 0.24 0.07 0.03 0 par:pas; +van van nom_sup m s 8.9 3.24 8.78 3.24 +vanadium vanadium nom m s 0 0.74 0 0.74 +vandale vandale nom s 1.14 0.88 0.33 0.47 +vandales vandale nom p 1.14 0.88 0.81 0.41 +vandalisent vandaliser ver 0.33 0.14 0.01 0.07 ind:pre:3p; +vandaliser vandaliser ver 0.33 0.14 0.09 0.07 inf; +vandalisme vandalisme nom m s 1.53 1.55 1.53 1.55 +vandalisé vandaliser ver m s 0.33 0.14 0.23 0 par:pas; +vandoises vandoise nom f p 0 0.14 0 0.14 +vanille vanille nom f s 2.5 3.38 2.5 3.38 +vanillé vanillé adj m s 0.17 0.2 0.17 0.07 +vanillée vanillé adj f s 0.17 0.2 0 0.07 +vanillées vanillé adj f p 0.17 0.2 0 0.07 +vaniteuse vaniteux adj f s 2.23 2.5 0.49 0.68 +vaniteusement vaniteusement adv 0 0.07 0 0.07 +vaniteuses vaniteux adj f p 2.23 2.5 0.14 0.07 +vaniteux vaniteux adj m 2.23 2.5 1.6 1.76 +vanity_case vanity_case nom m s 0.11 0.14 0.11 0.14 +vanité vanité nom f s 5.75 17.97 5.16 16.49 +vanités vanité nom f p 5.75 17.97 0.59 1.49 +vanna vanner ver 1.32 4.39 0.04 1.96 ind:pas:3s; +vannais vanner ver 1.32 4.39 0 0.07 ind:imp:1s; +vannait vanner ver 1.32 4.39 0 0.07 ind:imp:3s; +vanne vanne nom f s 2.73 7.36 0.94 3.11 +vanneau vanneau nom m s 0 0.74 0 0.34 +vanneaux vanneau nom m p 0 0.74 0 0.41 +vannent vanner ver 1.32 4.39 0.02 0 ind:pre:3p; +vanner vanner ver 1.32 4.39 0.09 0.54 inf; +vannerie vannerie nom f s 0.14 0.74 0.14 0.68 +vanneries vannerie nom f p 0.14 0.74 0 0.07 +vannes vanne nom f p 2.73 7.36 1.79 4.26 +vanneur vanneur nom m s 0 0.2 0 0.14 +vanneurs vanneur nom m p 0 0.2 0 0.07 +vannier vannier nom m s 0 0.27 0 0.2 +vanniers vannier nom m p 0 0.27 0 0.07 +vannières vannière nom f p 0 0.07 0 0.07 +vannèrent vanner ver 1.32 4.39 0 0.07 ind:pas:3p; +vanné vanner ver m s 1.32 4.39 0.56 0.34 par:pas; +vannée vanner ver f s 1.32 4.39 0.36 0.27 par:pas; +vannés vanner ver m p 1.32 4.39 0.16 0 par:pas; +vans van nom_sup m p 8.9 3.24 0.13 0 +vanta vanter ver 10.73 23.24 0.03 0.68 ind:pas:3s; +vantai vanter ver 10.73 23.24 0 0.14 ind:pas:1s; +vantaient vanter ver 10.73 23.24 0.05 1.49 ind:imp:3p; +vantail vantail nom m s 0 3.85 0 2.23 +vantais vanter ver 10.73 23.24 0.25 0.41 ind:imp:1s;ind:imp:2s; +vantait vanter ver 10.73 23.24 0.49 4.46 ind:imp:3s; +vantant vanter ver 10.73 23.24 0.36 1.42 par:pre; +vantard vantard nom m s 1.6 0.14 1.06 0.07 +vantarde vantard adj f s 0.34 0.74 0.01 0 +vantardes vantard adj f p 0.34 0.74 0.01 0.07 +vantardise vantardise nom f s 0.19 1.69 0.16 0.74 +vantardises vantardise nom f p 0.19 1.69 0.03 0.95 +vantards vantard nom m p 1.6 0.14 0.53 0.07 +vantaux vantail nom m p 0 3.85 0 1.62 +vante vanter ver 10.73 23.24 1.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vantent vanter ver 10.73 23.24 0.39 1.15 ind:pre:3p; +vanter vanter ver 10.73 23.24 4.8 7.5 inf; +vantera vanter ver 10.73 23.24 0.01 0.2 ind:fut:3s; +vanterai vanter ver 10.73 23.24 0.16 0.07 ind:fut:1s; +vanterais vanter ver 10.73 23.24 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +vanterait vanter ver 10.73 23.24 0.01 0 cnd:pre:3s; +vanteras vanter ver 10.73 23.24 0.14 0 ind:fut:2s; +vanterie vanterie nom f s 0.01 0.2 0 0.07 +vanteries vanterie nom f p 0.01 0.2 0.01 0.14 +vanteront vanter ver 10.73 23.24 0.02 0.07 ind:fut:3p; +vantes vanter ver 10.73 23.24 0.46 0.2 ind:pre:2s; +vantez vanter ver 10.73 23.24 0.16 0.14 imp:pre:2p;ind:pre:2p; +vantiez vanter ver 10.73 23.24 0.01 0 ind:imp:2p; +vantions vanter ver 10.73 23.24 0.1 0 ind:imp:1p; +vantons vanter ver 10.73 23.24 0.03 0 imp:pre:1p;ind:pre:1p; +vantât vanter ver 10.73 23.24 0 0.07 sub:imp:3s; +vanté vanter ver m s 10.73 23.24 1.12 1.89 par:pas; +vantée vanter ver f s 10.73 23.24 0.22 0.34 par:pas; +vantées vanter ver f p 10.73 23.24 0 0.2 par:pas; +vantés vanter ver m p 10.73 23.24 0.01 0.2 par:pas; +vape vape nom f s 1.26 3.04 0 2.3 +vapes vape nom f p 1.26 3.04 1.26 0.74 +vapeur vapeur nom s 8.02 26.76 6.17 19.12 +vapeurs vapeur nom p 8.02 26.76 1.85 7.64 +vaporetto vaporetto nom m s 0.32 0.41 0.32 0.41 +vaporeuse vaporeux adj f s 0.21 4.53 0.17 1.76 +vaporeuses vaporeux adj f p 0.21 4.53 0 0.47 +vaporeux vaporeux adj m 0.21 4.53 0.04 2.3 +vaporisa vaporiser ver 1.47 1.82 0 0.34 ind:pas:3s; +vaporisais vaporiser ver 1.47 1.82 0.01 0 ind:imp:1s; +vaporisait vaporiser ver 1.47 1.82 0.14 0.41 ind:imp:3s; +vaporisant vaporiser ver 1.47 1.82 0 0.07 par:pre; +vaporisateur vaporisateur nom m s 0.3 1.08 0.28 0.74 +vaporisateurs vaporisateur nom m p 0.3 1.08 0.01 0.34 +vaporisation vaporisation nom f s 0.09 0.14 0.09 0.07 +vaporisations vaporisation nom f p 0.09 0.14 0 0.07 +vaporise vaporiser ver 1.47 1.82 0.2 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vaporiser vaporiser ver 1.47 1.82 0.51 0.34 inf; +vaporiserait vaporiser ver 1.47 1.82 0.03 0.07 cnd:pre:3s; +vaporises vaporiser ver 1.47 1.82 0.02 0 ind:pre:2s; +vaporisez vaporiser ver 1.47 1.82 0.08 0 imp:pre:2p;ind:pre:2p; +vaporisé vaporiser ver m s 1.47 1.82 0.42 0 par:pas; +vaporisée vaporiser ver f s 1.47 1.82 0.07 0.41 par:pas; +vaps vaps nom f p 0.24 0 0.24 0 +vaquai vaquer ver 0.67 3.18 0 0.07 ind:pas:1s; +vaquaient vaquer ver 0.67 3.18 0.04 0.27 ind:imp:3p; +vaquais vaquer ver 0.67 3.18 0.03 0.07 ind:imp:1s; +vaquait vaquer ver 0.67 3.18 0.01 1.28 ind:imp:3s; +vaquant vaquer ver 0.67 3.18 0.02 0.27 par:pre; +vaque vaquer ver 0.67 3.18 0.07 0.27 ind:pre:1s;ind:pre:3s; +vaquent vaquer ver 0.67 3.18 0 0.14 ind:pre:3p; +vaquer vaquer ver 0.67 3.18 0.37 0.61 inf; +vaquerait vaquer ver 0.67 3.18 0 0.07 cnd:pre:3s; +vaquero vaquero nom m s 0.11 0.07 0.06 0.07 +vaqueros vaquero nom m p 0.11 0.07 0.05 0 +vaquions vaquer ver 0.67 3.18 0 0.07 ind:imp:1p; +vaquons vaquer ver 0.67 3.18 0.1 0.07 imp:pre:1p;ind:pre:1p; +vaqué vaquer ver m s 0.67 3.18 0.02 0 par:pas; +var var nom m s 0.01 0 0.01 0 +vara vara adj f s 0 0.07 0 0.07 +varan varan nom m s 0.02 0.07 0.01 0.07 +varans varan nom m p 0.02 0.07 0.01 0 +varappe varappe nom f s 0.06 0.07 0.06 0.07 +varapper varapper ver 0 0.07 0 0.07 inf; +varappeur varappeur nom m s 0 0.07 0 0.07 +varech varech nom m s 0.25 2.7 0.25 2.43 +varechs varech nom m p 0.25 2.7 0 0.27 +varenne varenne nom f s 0 4.53 0 4.12 +varennes varenne nom f p 0 4.53 0 0.41 +vareuse vareuse nom f s 0.81 8.24 0.56 6.82 +vareuses vareuse nom f p 0.81 8.24 0.25 1.42 +varia varia nom m p 0.02 0.07 0.02 0.07 +variabilité variabilité nom f s 0.05 0.14 0.05 0.14 +variable variable adj s 0.98 2.64 0.81 1.76 +variables variable nom f p 1.05 0.14 0.74 0 +variaient varier ver 2.69 8.92 0.01 0.61 ind:imp:3p; +variais varier ver 2.69 8.92 0 0.14 ind:imp:1s; +variait varier ver 2.69 8.92 0.03 1.22 ind:imp:3s; +variance variance nom f s 0.03 0 0.03 0 +variant varier ver 2.69 8.92 0.03 0.81 par:pre; +variante variante nom f s 0.95 3.24 0.77 0.81 +variantes variante nom f p 0.95 3.24 0.18 2.43 +variateur variateur nom m s 0.02 0.14 0.02 0.14 +variation variation nom f s 1.83 6.28 0.5 1.08 +variations variation nom f p 1.83 6.28 1.33 5.2 +varice varice nom f s 0.67 1.76 0.01 0 +varicelle varicelle nom f s 1.03 0.74 1.03 0.74 +varices varice nom f p 0.67 1.76 0.66 1.76 +varie varier ver 2.69 8.92 0.91 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +varient varier ver 2.69 8.92 0.46 0.61 ind:pre:3p; +varier varier ver 2.69 8.92 0.66 1.76 inf; +varierai varier ver 2.69 8.92 0.01 0.07 ind:fut:1s; +varieraient varier ver 2.69 8.92 0 0.07 cnd:pre:3p; +varierait varier ver 2.69 8.92 0 0.14 cnd:pre:3s; +varieront varier ver 2.69 8.92 0 0.07 ind:fut:3p; +variole variole nom f s 2.42 0.34 2.42 0.34 +variorum variorum nom m s 0 0.07 0 0.07 +variqueuses variqueux adj f p 0 0.47 0 0.14 +variqueux variqueux adj m 0 0.47 0 0.34 +variât varier ver 2.69 8.92 0 0.07 sub:imp:3s; +varié varié adj m s 1.53 5.74 0.47 0.61 +variée varier ver f s 2.69 8.92 0.23 0.41 par:pas; +variées varié adj f p 1.53 5.74 0.43 1.69 +variés varié adj m p 1.53 5.74 0.41 2.7 +variétal variétal adj m s 0.01 0 0.01 0 +variété variété nom f s 3.42 9.73 2.17 6.42 +variétés variété nom f p 3.42 9.73 1.25 3.31 +varlet varlet nom m s 0.01 0.07 0.01 0.07 +varlope varlope nom f s 0 0.41 0 0.41 +varon varon nom m s 0.12 0 0.12 0 +varsovien varsovien nom m s 0.1 0 0.1 0 +vas aller ver 9992.77 2854.93 1009.22 136.35 imp:pre:2s;ind:pre:2s; +vasa vaser ver 0.02 0.41 0.02 0.2 ind:pas:3s; +vasais vasais nom m 0 0.2 0 0.2 +vasait vaser ver 0.02 0.41 0 0.07 ind:imp:3s; +vasards vasard adj m p 0 0.14 0 0.14 +vasculaire vasculaire adj s 1.26 0.27 1.01 0.07 +vasculaires vasculaire adj m p 1.26 0.27 0.25 0.2 +vascularisé vascularisé adj m s 0.02 0 0.02 0 +vasculo_nerveux vasculo_nerveux nom m 0.01 0 0.01 0 +vase vase nom s 10.74 32.97 9.83 26.76 +vasectomie vasectomie nom f s 0.38 0 0.38 0 +vaseline vaseline nom f s 0.94 1.28 0.94 1.28 +vaseliner vaseliner ver 0.02 0.07 0.01 0 inf; +vaselinez vaseliner ver 0.02 0.07 0.01 0 imp:pre:2p; +vaseliné vaseliner ver m s 0.02 0.07 0 0.07 par:pas; +vaser vaser ver 0.02 0.41 0 0.14 inf; +vases vase nom p 10.74 32.97 0.91 6.22 +vaseuse vaseux adj f s 0.43 2.43 0.14 0.54 +vaseuses vaseux adj f p 0.43 2.43 0.03 0.2 +vaseux vaseux adj m 0.43 2.43 0.25 1.69 +vasistas vasistas nom m 0.08 3.85 0.08 3.85 +vasière vasière nom f s 0 0.88 0 0.07 +vasières vasière nom f p 0 0.88 0 0.81 +vasoconstricteur vasoconstricteur adj m s 0.14 0 0.14 0 +vasoconstriction vasoconstriction nom f s 0.03 0 0.03 0 +vasodilatateur vasodilatateur adj m s 0.01 0 0.01 0 +vasodilatation vasodilatation nom f s 0.01 0 0.01 0 +vasomoteurs vasomoteur adj m p 0.02 0 0.02 0 +vasopressine vasopressine nom f s 0.01 0 0.01 0 +vasouillard vasouillard adj m s 0 0.34 0 0.27 +vasouillarde vasouillard adj f s 0 0.34 0 0.07 +vasouille vasouiller ver 0.12 0.2 0.01 0.07 ind:pre:3s; +vasouiller vasouiller ver 0.12 0.2 0.1 0.14 inf; +vasouilles vasouiller ver 0.12 0.2 0.01 0 ind:pre:2s; +vasque vasque nom f s 0.25 3.99 0.01 2.91 +vasques vasque nom f p 0.25 3.99 0.24 1.08 +vassal vassal nom m s 2.24 4.39 1.77 1.49 +vassale vassal nom f s 2.24 4.39 0 0.14 +vassalité vassalité nom f s 0 0.2 0 0.2 +vassaux vassal nom m p 2.24 4.39 0.47 2.77 +vaste vaste adj s 10.32 71.76 8.44 55.61 +vastes vaste adj p 10.32 71.76 1.88 16.15 +vastitude vastitude nom f s 0 0.27 0 0.2 +vastitudes vastitude nom f p 0 0.27 0 0.07 +vastité vastité nom f s 0 0.07 0 0.07 +vater vater nom m s 0 0.07 0 0.07 +vaticane vaticane adj f s 0 0.2 0 0.2 +vaticanesque vaticanesque adj s 0 0.07 0 0.07 +vaticinait vaticiner ver 0 0.61 0 0.14 ind:imp:3s; +vaticinant vaticiner ver 0 0.61 0 0.27 par:pre; +vaticination vaticination nom f s 0 0.47 0 0.07 +vaticinations vaticination nom f p 0 0.47 0 0.41 +vaticine vaticiner ver 0 0.61 0 0.07 ind:pre:3s; +vaticiner vaticiner ver 0 0.61 0 0.14 inf; +vatères vatère nom m p 0 0.14 0 0.14 +vau vau nom m s 0.01 0.2 0.01 0.2 +vau_l_eau vau_l_eau nom m s 0 0.14 0 0.14 +vauclusien vauclusien adj m s 0.14 0.07 0.14 0 +vauclusiennes vauclusien adj f p 0.14 0.07 0 0.07 +vaudeville vaudeville nom m s 0.41 1.82 0.35 1.55 +vaudevilles vaudeville nom m p 0.41 1.82 0.05 0.27 +vaudevillesque vaudevillesque adj s 0.03 0.14 0.03 0.07 +vaudevillesques vaudevillesque adj p 0.03 0.14 0 0.07 +vaudois vaudois adj m 0 0.74 0 0.68 +vaudoise vaudois adj f s 0 0.74 0 0.07 +vaudou vaudou nom m s 2.93 0.41 2.92 0.41 +vaudoue vaudou adj f s 1.48 0.68 0.03 0.07 +vaudoues vaudou adj f p 1.48 0.68 0 0.14 +vaudouisme vaudouisme nom m s 0.02 0 0.02 0 +vaudous vaudou adj m p 1.48 0.68 0.12 0.07 +vaudra valoir ver 236.07 175.74 4.34 3.51 ind:fut:3s; +vaudrai valoir ver 236.07 175.74 0.07 0.07 ind:fut:1s; +vaudraient valoir ver 236.07 175.74 0.29 0.14 cnd:pre:3p; +vaudrais valoir ver 236.07 175.74 0.07 0.14 cnd:pre:1s;cnd:pre:2s; +vaudrait valoir ver 236.07 175.74 14.23 11.08 cnd:pre:3s; +vaudras valoir ver 236.07 175.74 0.21 0.07 ind:fut:2s; +vaudrez valoir ver 236.07 175.74 0.03 0 ind:fut:2p; +vaudrions valoir ver 236.07 175.74 0.02 0 cnd:pre:1p; +vaudrons valoir ver 236.07 175.74 0 0.07 ind:fut:1p; +vaudront valoir ver 236.07 175.74 0.42 0.47 ind:fut:3p; +vaurien vaurien nom m s 10.22 2.36 7.06 1.89 +vaurienne vaurien nom f s 10.22 2.36 0.21 0.07 +vauriens vaurien nom m p 10.22 2.36 2.94 0.41 +vaut valoir ver 236.07 175.74 161.53 69.39 ind:pre:3s; +vautour vautour nom m s 5.89 4.39 2.41 2.57 +vautours vautour nom m p 5.89 4.39 3.48 1.82 +vautra vautrer ver 2.73 10.27 0 0.07 ind:pas:3s; +vautraient vautrer ver 2.73 10.27 0 0.27 ind:imp:3p; +vautrais vautrer ver 2.73 10.27 0.02 0.41 ind:imp:1s; +vautrait vautrer ver 2.73 10.27 0.03 0.54 ind:imp:3s; +vautrant vautrer ver 2.73 10.27 0.12 0.14 par:pre; +vautre vautrer ver 2.73 10.27 0.31 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vautrent vautrer ver 2.73 10.27 0.04 0.14 ind:pre:3p; +vautrer vautrer ver 2.73 10.27 1.07 1.62 inf; +vautreraient vautrer ver 2.73 10.27 0 0.14 cnd:pre:3p; +vautrerais vautrer ver 2.73 10.27 0 0.07 cnd:pre:1s; +vautrez vautrer ver 2.73 10.27 0.16 0.07 imp:pre:2p;ind:pre:2p; +vautrèrent vautrer ver 2.73 10.27 0 0.07 ind:pas:3p; +vautré vautrer ver m s 2.73 10.27 0.6 2.16 par:pas; +vautrée vautrer ver f s 2.73 10.27 0.22 1.28 par:pas; +vautrées vautrer ver f p 2.73 10.27 0.01 0.2 par:pas; +vautrés vautrer ver m p 2.73 10.27 0.16 1.96 par:pas; +vauvert vauvert nom s 0 0.14 0 0.14 +vaux valoir ver 236.07 175.74 10.79 2.97 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vauxhall vauxhall nom m s 0.06 0.07 0.06 0.07 +veau veau nom m s 8.66 16.96 7.69 13.92 +veaux veau nom m p 8.66 16.96 0.97 3.04 +vecteur vecteur nom m s 0.92 0.27 0.62 0.2 +vecteurs vecteur nom m p 0.92 0.27 0.3 0.07 +vectoriel vectoriel adj m s 0.24 0.07 0.03 0 +vectorielle vectoriel adj f s 0.24 0.07 0.21 0.07 +vedettariat vedettariat nom m s 0.07 0.14 0.07 0.14 +vedette vedette nom f s 13.55 20.88 11.18 13.92 +vedettes vedette nom f p 13.55 20.88 2.37 6.96 +veilla veiller ver 38.41 41.62 0.01 0.54 ind:pas:3s; +veillai veiller ver 38.41 41.62 0.1 0.07 ind:pas:1s; +veillaient veiller ver 38.41 41.62 0.18 2.7 ind:imp:3p; +veillais veiller ver 38.41 41.62 0.48 0.54 ind:imp:1s;ind:imp:2s; +veillait veiller ver 38.41 41.62 0.79 8.92 ind:imp:3s; +veillant veiller ver 38.41 41.62 0.25 1.76 par:pre; +veille veille nom f s 17.07 89.05 16.84 87.36 +veillent veiller ver 38.41 41.62 1.14 1.96 ind:pre:3p; +veiller veiller ver 38.41 41.62 10.18 12.91 inf; +veillera veiller ver 38.41 41.62 1.66 0.61 ind:fut:3s; +veillerai veiller ver 38.41 41.62 4.61 0.34 ind:fut:1s; +veillerais veiller ver 38.41 41.62 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +veillerait veiller ver 38.41 41.62 0.23 0.34 cnd:pre:3s; +veilleras veiller ver 38.41 41.62 0.27 0.07 ind:fut:2s; +veillerez veiller ver 38.41 41.62 0.27 0.07 ind:fut:2p; +veillerons veiller ver 38.41 41.62 0.3 0.14 ind:fut:1p; +veilleront veiller ver 38.41 41.62 0.23 0.2 ind:fut:3p; +veilles veiller ver 38.41 41.62 1.19 0.27 ind:pre:2s;sub:pre:2s; +veilleur veilleur nom m s 2.15 3.99 2.1 3.31 +veilleurs veilleur nom m p 2.15 3.99 0.05 0.68 +veilleuse veilleuse nom f s 1.7 8.58 1.53 6.89 +veilleuses veilleuse nom f p 1.7 8.58 0.17 1.69 +veillez veiller ver 38.41 41.62 5.11 0.68 imp:pre:2p;ind:pre:2p; +veillions veiller ver 38.41 41.62 0.02 0.07 ind:imp:1p; +veillons veiller ver 38.41 41.62 0.1 0.14 imp:pre:1p;ind:pre:1p; +veillâmes veiller ver 38.41 41.62 0 0.07 ind:pas:1p; +veillât veiller ver 38.41 41.62 0 0.07 sub:imp:3s; +veillèrent veiller ver 38.41 41.62 0.01 0.07 ind:pas:3p; +veillé veiller ver m s 38.41 41.62 2.71 3.18 par:pas; +veillée veillée nom f s 2.56 8.31 2.34 4.73 +veillées veillée nom f p 2.56 8.31 0.22 3.58 +veillés veiller ver m p 38.41 41.62 0 0.2 par:pas; +veinaient veiner ver 0.01 1.55 0 0.14 ind:imp:3p; +veinait veiner ver 0.01 1.55 0.01 0 ind:imp:3s; +veinard veinard nom m s 5.79 1.89 4.33 0.88 +veinarde veinard nom f s 5.79 1.89 0.9 0.14 +veinardes veinard adj f p 1.75 1.22 0.04 0 +veinards veinard nom m p 5.79 1.89 0.53 0.88 +veine veine nom f s 19.74 35.41 10.75 15.27 +veinent veiner ver 0.01 1.55 0 0.07 ind:pre:3p; +veines veine nom f p 19.74 35.41 8.99 20.14 +veineuse veineux adj f s 0.2 0.27 0.06 0.2 +veineux veineux adj m s 0.2 0.27 0.14 0.07 +veinule veinule nom f s 0 1.15 0 0.07 +veinules veinule nom f p 0 1.15 0 1.08 +veinulé veinulé adj m s 0 0.14 0 0.14 +veinures veinure nom f p 0 0.14 0 0.14 +veiné veiné adj m s 0.11 1.01 0 0.88 +veinée veiné adj f s 0.11 1.01 0.11 0 +veinées veiner ver f p 0.01 1.55 0 0.27 par:pas; +veinés veiner ver m p 0.01 1.55 0 0.14 par:pas; +velcro velcro nom m s 0.39 0 0.39 0 +veld veld nom m s 0.01 0 0.01 0 +veldt veldt nom m s 0.04 0 0.04 0 +vellave vellave adj f s 0 0.07 0 0.07 +velléitaire velléitaire adj s 0.04 0.95 0.04 0.95 +velléité velléité nom f s 0.2 3.92 0.1 1.55 +velléités velléité nom f p 0.2 3.92 0.1 2.36 +velours velours nom m 4.31 35.88 4.31 35.88 +veloutaient velouter ver 0.03 1.08 0 0.07 ind:imp:3p; +veloutait velouter ver 0.03 1.08 0 0.07 ind:imp:3s; +veloute velouter ver 0.03 1.08 0 0.14 ind:pre:3s; +veloutent velouter ver 0.03 1.08 0 0.07 ind:pre:3p; +velouter velouter ver 0.03 1.08 0 0.07 inf; +velouteuse velouteux adj f s 0.01 0.07 0.01 0 +velouteux velouteux adj m s 0.01 0.07 0 0.07 +velouté velouté adj m s 0.36 4.93 0.3 2.36 +veloutée velouté adj f s 0.36 4.93 0.05 1.15 +veloutées velouter ver f p 0.03 1.08 0.01 0.2 par:pas; +veloutés velouté nom m p 0.27 1.76 0.14 0.07 +velte velte nom f s 0.01 0 0.01 0 +velu velu adj m s 1.03 7.43 0.47 2.43 +velue velu adj f s 1.03 7.43 0.25 2.5 +velues velu adj f p 1.03 7.43 0.22 1.76 +velum velum nom m s 0.03 0 0.03 0 +velus velu adj m p 1.03 7.43 0.1 0.74 +velux velux nom m s 0.01 0 0.01 0 +velvet velvet nom m s 0.15 0.27 0.15 0.27 +venaient venir ver 2763.82 1514.53 9.96 73.65 ind:imp:3p; +venais venir ver 2763.82 1514.53 23.32 29.86 ind:imp:1s;ind:imp:2s; +venaison venaison nom f s 0.08 0.54 0.08 0.41 +venaisons venaison nom f p 0.08 0.54 0 0.14 +venait venir ver 2763.82 1514.53 50.25 271.89 ind:imp:3s; +venant venir ver 2763.82 1514.53 17.66 32.36 par:pre; +vend vendre ver 206.95 92.64 22.75 8.65 ind:pre:3s; +vendable vendable adj s 0.04 0.14 0.02 0.07 +vendables vendable adj p 0.04 0.14 0.02 0.07 +vendaient vendre ver 206.95 92.64 0.56 2.23 ind:imp:3p; +vendais vendre ver 206.95 92.64 1.96 0.95 ind:imp:1s;ind:imp:2s; +vendait vendre ver 206.95 92.64 4.46 9.93 ind:imp:3s; +vendange vendange nom f s 1.54 3.38 0.17 0.95 +vendangeait vendanger ver 0.74 0.2 0 0.07 ind:imp:3s; +vendanger vendanger ver 0.74 0.2 0.47 0 inf; +vendanges vendange nom f p 1.54 3.38 1.37 2.43 +vendangeur vendangeur nom m s 0 0.54 0 0.14 +vendangeurs vendangeur nom m p 0 0.54 0 0.34 +vendangeuses vendangeur nom f p 0 0.54 0 0.07 +vendangé vendanger ver m s 0.74 0.2 0 0.07 par:pas; +vendant vendre ver 206.95 92.64 2.11 2.3 par:pre; +vende vendre ver 206.95 92.64 1.93 0.61 sub:pre:1s;sub:pre:3s; +vendent vendre ver 206.95 92.64 6.09 3.04 ind:pre:3p; +vendes vendre ver 206.95 92.64 0.29 0 sub:pre:2s; +vendetta vendetta nom f s 1.25 0.81 1.2 0.74 +vendettas vendetta nom f p 1.25 0.81 0.05 0.07 +vendeur vendeur nom m s 16.84 18.65 11.3 4.93 +vendeurs vendeur nom m p 16.84 18.65 2.71 4.59 +vendeuse vendeur nom f s 16.84 18.65 2.04 7.09 +vendeuses vendeur nom f p 16.84 18.65 0.79 2.03 +vendez vendre ver 206.95 92.64 6.11 1.22 imp:pre:2p;ind:pre:2p; +vendiez vendre ver 206.95 92.64 0.34 0.07 ind:imp:2p; +vendions vendre ver 206.95 92.64 0.13 1.01 ind:imp:1p; +vendirent vendre ver 206.95 92.64 0.16 0.07 ind:pas:3p; +vendis vendre ver 206.95 92.64 0.31 0.2 ind:pas:1s; +vendisse vendre ver 206.95 92.64 0 0.07 sub:imp:1s; +vendit vendre ver 206.95 92.64 0.26 1.96 ind:pas:3s; +vendons vendre ver 206.95 92.64 1.34 0.2 imp:pre:1p;ind:pre:1p; +vendra vendre ver 206.95 92.64 3.03 0.61 ind:fut:3s; +vendrai vendre ver 206.95 92.64 3.15 0.54 ind:fut:1s; +vendraient vendre ver 206.95 92.64 0.23 0.27 cnd:pre:3p; +vendrais vendre ver 206.95 92.64 1.68 0.47 cnd:pre:1s;cnd:pre:2s; +vendrait vendre ver 206.95 92.64 1.34 1.08 cnd:pre:3s; +vendras vendre ver 206.95 92.64 0.48 0.07 ind:fut:2s; +vendre vendre ver 206.95 92.64 73.62 30.81 inf;; +vendredi vendredi nom m s 32.49 19.05 31.36 18.31 +vendredis vendredi nom m p 32.49 19.05 1.13 0.74 +vendrez vendre ver 206.95 92.64 0.65 0.41 ind:fut:2p; +vendriez vendre ver 206.95 92.64 0.3 0 cnd:pre:2p; +vendrons vendre ver 206.95 92.64 0.44 0.07 ind:fut:1p; +vendront vendre ver 206.95 92.64 0.53 0.27 ind:fut:3p; +vends vendre ver 206.95 92.64 23.35 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vendu vendre ver m s 206.95 92.64 37.62 14.73 par:pas; +vendue vendre ver f s 206.95 92.64 7.17 2.97 par:pas; +vendues vendre ver f p 206.95 92.64 1.09 1.08 par:pas; +vendus vendre ver m p 206.95 92.64 3.47 1.82 par:pas; +vendéen vendéen adj m s 0 0.34 0 0.14 +vendéenne vendéen adj f s 0 0.34 0 0.07 +vendéennes vendéen adj f p 0 0.34 0 0.07 +vendéens vendéen adj m p 0 0.34 0 0.07 +vendémiaire vendémiaire nom m s 0 0.34 0 0.34 +vendît vendre ver 206.95 92.64 0 0.07 sub:imp:3s; +vendômois vendômois adj m 0 0.07 0 0.07 +venelle venelle nom f s 0.21 3.58 0.21 1.82 +venelles venelle nom f p 0.21 3.58 0 1.76 +venette venette nom f s 0.01 0.07 0.01 0.07 +veneur veneur nom m s 0 2.91 0 2.57 +veneurs veneur nom m p 0 2.91 0 0.34 +venez venir ver 2763.82 1514.53 304.03 41.42 imp:pre:2p;ind:pre:2p; +venge venger ver 37.73 24.46 3.89 2.7 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +vengea venger ver 37.73 24.46 0.17 0.34 ind:pas:3s; +vengeai venger ver 37.73 24.46 0 0.07 ind:pas:1s; +vengeaient venger ver 37.73 24.46 0 0.41 ind:imp:3p; +vengeais venger ver 37.73 24.46 0.03 0.2 ind:imp:1s; +vengeait venger ver 37.73 24.46 0.16 2.3 ind:imp:3s; +vengeance vengeance nom f s 28.27 17.03 27.85 15.88 +vengeances vengeance nom f p 28.27 17.03 0.42 1.15 +vengeant venger ver 37.73 24.46 0.25 0.34 par:pre; +vengent venger ver 37.73 24.46 0.71 0.88 ind:pre:3p; +vengeons venger ver 37.73 24.46 0.32 0.07 imp:pre:1p;ind:pre:1p; +venger venger ver 37.73 24.46 20.93 12.09 inf; +vengera venger ver 37.73 24.46 0.97 0.34 ind:fut:3s; +vengerai venger ver 37.73 24.46 1.88 0.41 ind:fut:1s; +vengerais venger ver 37.73 24.46 0.31 0.14 cnd:pre:1s;cnd:pre:2s; +vengerait venger ver 37.73 24.46 0.21 0.2 cnd:pre:3s; +vengeresse vengeur adj f s 1.54 3.85 0.35 0.81 +vengeresses vengeur adj f p 1.54 3.85 0.01 0.27 +vengerez venger ver 37.73 24.46 0.24 0 ind:fut:2p; +vengerons venger ver 37.73 24.46 0.44 0.07 ind:fut:1p; +vengeront venger ver 37.73 24.46 0.58 0 ind:fut:3p; +venges venger ver 37.73 24.46 0.59 0.14 ind:pre:2s;sub:pre:2s; +vengeur vengeur nom m s 1.27 1.08 1.15 0.68 +vengeurs vengeur adj m p 1.54 3.85 0.23 0.88 +vengez venger ver 37.73 24.46 0.77 0.2 imp:pre:2p;ind:pre:2p; +vengeât venger ver 37.73 24.46 0 0.07 sub:imp:3s; +vengiez venger ver 37.73 24.46 0.11 0 ind:imp:2p; +vengèrent venger ver 37.73 24.46 0 0.2 ind:pas:3p; +vengé venger ver m s 37.73 24.46 3.19 2.03 par:pas; +vengée venger ver f s 37.73 24.46 1.23 0.68 par:pas; +vengées venger ver f p 37.73 24.46 0.15 0.07 par:pas; +vengés venger ver m p 37.73 24.46 0.6 0.54 par:pas; +veniez venir ver 2763.82 1514.53 9.37 3.24 ind:imp:2p; +venimeuse venimeux adj f s 2.67 2.77 0.77 0.74 +venimeusement venimeusement adv 0 0.07 0 0.07 +venimeuses venimeux adj f p 2.67 2.77 0.32 0.34 +venimeux venimeux adj m 2.67 2.77 1.58 1.69 +venin venin nom m s 3.59 3.11 3.57 2.97 +venins venin nom m p 3.59 3.11 0.02 0.14 +venions venir ver 2763.82 1514.53 2.07 5.88 ind:imp:1p; +venir venir ver 2763.82 1514.53 367.13 196.01 inf; +venise venise nom f s 0.03 0.07 0.03 0.07 +venons venir ver 2763.82 1514.53 17.22 8.18 imp:pre:1p;ind:pre:1p; +vent vent nom m s 77.34 220.27 71.5 207.64 +venta venter ver 0.74 0.81 0.26 0.41 ind:pas:3s; +ventail ventail nom m s 0.01 0 0.01 0 +ventas venter ver 0.74 0.81 0 0.14 ind:pas:2s; +vente vente nom f s 27.54 18.99 20.93 12.97 +venter venter ver 0.74 0.81 0.03 0.14 inf; +ventes vente nom f p 27.54 18.99 6.61 6.01 +venteuse venteux adj f s 0.15 0.95 0.04 0.2 +venteuses venteux adj f p 0.15 0.95 0 0.27 +venteux venteux adj m 0.15 0.95 0.11 0.47 +ventilant ventiler ver 0.73 0.68 0 0.14 par:pre; +ventilateur ventilateur nom m s 3.02 2.64 2.43 2.09 +ventilateurs ventilateur nom m p 3.02 2.64 0.59 0.54 +ventilation ventilation nom f s 2.9 0.47 2.84 0.47 +ventilations ventilation nom f p 2.9 0.47 0.05 0 +ventile ventiler ver 0.73 0.68 0.32 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ventiler ventiler ver 0.73 0.68 0.23 0.14 inf; +ventilez ventiler ver 0.73 0.68 0.07 0 imp:pre:2p; +ventilo ventilo nom m s 0.54 0.14 0.32 0.07 +ventilos ventilo nom m p 0.54 0.14 0.22 0.07 +ventilé ventilé adj m s 0.35 0.34 0.17 0.14 +ventilée ventiler ver f s 0.73 0.68 0.01 0.34 par:pas; +ventilées ventilé adj f p 0.35 0.34 0.14 0.2 +ventilés ventilé adj m p 0.35 0.34 0.02 0 +ventis ventis nom m 0.01 0.07 0.01 0.07 +ventouse ventouse nom f s 0.69 4.66 0.44 1.76 +ventousent ventouser ver 0.01 0.14 0 0.07 ind:pre:3p; +ventouses ventouse nom f p 0.69 4.66 0.25 2.91 +ventousé ventouser ver m s 0.01 0.14 0 0.07 par:pas; +ventousée ventouser ver f s 0.01 0.14 0.01 0 par:pas; +ventral ventral adj m s 0.17 1.28 0.09 0.27 +ventrale ventral adj f s 0.17 1.28 0.08 1.01 +ventre ventre nom m s 46.91 141.96 46.07 136.62 +ventre_saint_gris ventre_saint_gris ono 0 0.07 0 0.07 +ventrebleu ventrebleu ono 0.02 0 0.02 0 +ventres ventre nom m p 46.91 141.96 0.84 5.34 +ventriculaire ventriculaire adj s 0.61 0 0.61 0 +ventricule ventricule nom m s 0.78 0.07 0.55 0 +ventricules ventricule nom m p 0.78 0.07 0.23 0.07 +ventriloque ventriloque nom s 1.14 0.47 1.05 0.47 +ventriloques ventriloque nom p 1.14 0.47 0.08 0 +ventriloquie ventriloquie nom f s 0.04 0 0.04 0 +ventripotent ventripotent adj m s 0.01 0.88 0.01 0.74 +ventripotents ventripotent adj m p 0.01 0.88 0 0.14 +ventrière ventrière nom f s 0.01 0.14 0.01 0.14 +ventru ventru adj m s 0.12 3.51 0.08 1.82 +ventrue ventru adj f s 0.12 3.51 0.01 0.47 +ventrues ventru adj f p 0.12 3.51 0 0.34 +ventrus ventru adj m p 0.12 3.51 0.03 0.88 +ventrée ventrée nom f s 0.11 0.54 0.01 0.41 +ventrées ventrée nom f p 0.11 0.54 0.1 0.14 +vents vent nom m p 77.34 220.27 5.84 12.64 +venté venté adj m s 0.04 0.14 0.02 0.07 +ventée venté adj f s 0.04 0.14 0.03 0 +ventées venté adj f p 0.04 0.14 0 0.07 +ventés venter ver m p 0.74 0.81 0 0.07 par:pas; +ventôse ventôse nom m s 0.14 0.88 0.14 0.88 +venu venir ver m s 2763.82 1514.53 244.7 135.14 par:pas; +venue venir ver f s 2763.82 1514.53 93.14 60.47 par:pas; +venues venir ver f p 2763.82 1514.53 5.49 6.96 par:pas; +venus venir ver m p 2763.82 1514.53 53.34 40.41 par:pas; +ver ver nom m s 10.21 5.61 10.21 5.61 +verbal verbal adj m s 2.27 6.76 0.92 1.89 +verbale verbal adj f s 2.27 6.76 0.71 2.57 +verbalement verbalement adv 0.53 0.54 0.53 0.54 +verbales verbal adj f p 2.27 6.76 0.39 1.76 +verbalisation verbalisation nom f s 0.04 0 0.04 0 +verbalise verbaliser ver 0.79 0.14 0.27 0 ind:pre:1s;ind:pre:3s; +verbaliser verbaliser ver 0.79 0.14 0.42 0.14 inf; +verbalisez verbaliser ver 0.79 0.14 0.02 0 imp:pre:2p;ind:pre:2p; +verbalisme verbalisme nom m s 0 0.41 0 0.41 +verbaliste verbaliste nom s 0 0.07 0 0.07 +verbalisé verbaliser ver m s 0.79 0.14 0.08 0 par:pas; +verbalisée verbaliser ver f s 0.79 0.14 0.01 0 par:pas; +verbatim verbatim nom m s 0.01 0 0.01 0 +verbaux verbal adj m p 2.27 6.76 0.25 0.54 +verbe verbe nom m s 2.02 9.93 1.66 8.38 +verbes verbe nom m p 2.02 9.93 0.36 1.55 +verbeuse verbeux adj f s 0.18 0.47 0.01 0.07 +verbeuses verbeux adj f p 0.18 0.47 0 0.14 +verbeux verbeux adj m 0.18 0.47 0.17 0.27 +verbiage verbiage nom m s 0.18 0.74 0.18 0.74 +verbosité verbosité nom f s 0 0.27 0 0.2 +verbosités verbosité nom f p 0 0.27 0 0.07 +verdelet verdelet adj m s 0 0.07 0 0.07 +verdeur verdeur nom f s 0 1.08 0 1.01 +verdeurs verdeur nom f p 0 1.08 0 0.07 +verdi verdi adj m s 0.02 1.01 0.02 0.34 +verdict verdict nom m s 8.63 5.47 8.57 5 +verdicts verdict nom m p 8.63 5.47 0.07 0.47 +verdie verdir ver f s 0.21 2.97 0 0.41 par:pas; +verdier verdier nom m s 0.03 0.14 0 0.07 +verdiers verdier nom m p 0.03 0.14 0.03 0.07 +verdies verdi adj f p 0.02 1.01 0 0.2 +verdine verdin nom f s 0 0.07 0 0.07 +verdir verdir ver 0.21 2.97 0.16 0.2 inf; +verdis verdir ver m p 0.21 2.97 0.01 0.14 par:pas; +verdissaient verdir ver 0.21 2.97 0 0.27 ind:imp:3p; +verdissait verdir ver 0.21 2.97 0 0.41 ind:imp:3s; +verdissant verdissant adj m s 0 0.61 0 0.2 +verdissante verdissant adj f s 0 0.61 0 0.27 +verdissants verdissant adj m p 0 0.61 0 0.14 +verdissent verdir ver 0.21 2.97 0.02 0.2 ind:pre:3p; +verdit verdir ver 0.21 2.97 0.02 0.47 ind:pre:3s;ind:pas:3s; +verdoie verdoyer ver 0.13 0.68 0.11 0.2 ind:pre:3s; +verdoiement verdoiement nom m s 0.14 0.07 0.14 0.07 +verdoient verdoyer ver 0.13 0.68 0.02 0.14 ind:pre:3p; +verdoyant verdoyant adj m s 0.67 2.43 0.13 0.95 +verdoyante verdoyant adj f s 0.67 2.43 0.06 0.68 +verdoyantes verdoyant adj f p 0.67 2.43 0.46 0.47 +verdoyants verdoyant adj m p 0.67 2.43 0.02 0.34 +verdoyer verdoyer ver 0.13 0.68 0 0.2 inf; +verdure verdure nom f s 1.15 10.95 1.05 10.14 +verdures verdure nom f p 1.15 10.95 0.1 0.81 +verdâtre verdâtre adj s 0.11 9.73 0.08 6.62 +verdâtres verdâtre adj p 0.11 9.73 0.03 3.11 +verge verge nom f s 0.81 5.41 0.69 3.65 +vergence vergence nom f s 0.02 0 0.02 0 +verger verger nom m s 3.13 11.69 2.54 5.88 +vergers verger nom m p 3.13 11.69 0.59 5.81 +verges verge nom f p 0.81 5.41 0.13 1.76 +vergeture vergeture nom f s 0.42 0.41 0.01 0 +vergetures vergeture nom f p 0.42 0.41 0.41 0.41 +verglacé verglacer ver m s 0.06 0.14 0.03 0 par:pas; +verglacée verglacé adj f s 0.06 0.41 0.03 0.07 +verglacées verglacé adj f p 0.06 0.41 0.02 0.14 +verglas verglas nom m 0.94 1.62 0.94 1.62 +vergne vergne nom m s 0 0.34 0 0.27 +vergnes vergne nom m p 0 0.34 0 0.07 +vergogne vergogne nom f s 0.51 4.05 0.51 4.05 +vergogneux vergogneux adj m 0 0.27 0 0.27 +vergue vergue nom f s 0.41 0.47 0.38 0.27 +vergues vergue nom f p 0.41 0.47 0.03 0.2 +vergé vergé adj m s 0.01 0.34 0 0.27 +vergés vergé adj m p 0.01 0.34 0.01 0.07 +verjus verjus nom m 0.01 0.27 0.01 0.27 +verlan verlan nom m s 0.07 0.34 0.07 0.34 +vermeil vermeil adj m s 1.66 3.11 1.25 0.88 +vermeille vermeil adj f s 1.66 3.11 0.27 0.81 +vermeilles vermeil adj f p 1.66 3.11 0.03 1.08 +vermeils vermeil adj m p 1.66 3.11 0.1 0.34 +vermicelle vermicelle nom m s 0.29 0.81 0.15 0.54 +vermicelles vermicelle nom m p 0.29 0.81 0.14 0.27 +vermiculaire vermiculaire adj s 0 0.14 0 0.07 +vermiculaires vermiculaire adj p 0 0.14 0 0.07 +vermiculées vermiculé adj f p 0 0.07 0 0.07 +vermifuge vermifuge nom m s 0.03 0.14 0.03 0.14 +vermillon vermillon adj 0.02 1.15 0.02 1.15 +vermillonnait vermillonner ver 0 0.27 0 0.07 ind:imp:3s; +vermillonnée vermillonner ver f s 0 0.27 0 0.14 par:pas; +vermillonnés vermillonner ver m p 0 0.27 0 0.07 par:pas; +vermillons vermillon nom m p 0.02 1.08 0 0.14 +vermine vermine nom f s 7.31 4.93 6.77 4.46 +vermines vermine nom f p 7.31 4.93 0.54 0.47 +vermineux vermineux adj m 0 0.14 0 0.14 +vermisseau vermisseau nom m s 0.49 0.07 0.29 0.07 +vermisseaux vermisseau nom m p 0.49 0.07 0.2 0 +vermoulu vermoulu adj m s 0.17 3.31 0.01 1.15 +vermoulue vermoulu adj f s 0.17 3.31 0.02 1.22 +vermoulues vermoulu adj f p 0.17 3.31 0.01 0.47 +vermoulure vermoulure nom f s 0 0.34 0 0.2 +vermoulures vermoulure nom f p 0 0.34 0 0.14 +vermoulus vermoulu adj m p 0.17 3.31 0.14 0.47 +vermout vermout nom m s 0.01 0 0.01 0 +vermouth vermouth nom m s 1.19 1.49 1.18 1.28 +vermouths vermouth nom m p 1.19 1.49 0.01 0.2 +vernaculaire vernaculaire adj s 0.01 0 0.01 0 +vernal vernal adj m s 0.01 0 0.01 0 +verne verne nom m s 0.14 0 0.14 0 +verni vernir ver m s 1.77 8.51 0.66 1.96 par:pas; +vernie vernir ver f s 1.77 8.51 0.14 0.95 par:pas; +vernier vernier nom m s 0 0.07 0 0.07 +vernies verni adj f p 0.48 6.62 0.15 1.62 +vernir vernir ver 1.77 8.51 0.16 0.61 inf; +vernis vernis nom m 2.81 9.8 2.81 9.8 +vernissage vernissage nom m s 2.21 1.82 1.88 1.35 +vernissages vernissage nom m p 2.21 1.82 0.33 0.47 +vernissaient vernir ver 1.77 8.51 0 0.07 ind:imp:3p; +vernissait vernir ver 1.77 8.51 0.01 0 ind:imp:3s; +vernissant vernir ver 1.77 8.51 0 0.07 par:pre; +vernissent vernir ver 1.77 8.51 0 0.07 ind:pre:3p; +vernisser vernisser ver 0 1.49 0 0.07 inf; +vernisseur vernisseur nom m s 0.1 0 0.1 0 +vernissé vernissé adj m s 0 2.36 0 0.34 +vernissée vernisser ver f s 0 1.49 0 0.47 par:pas; +vernissées vernissé adj f p 0 2.36 0 1.08 +vernissés vernissé adj m p 0 2.36 0 0.54 +vernit vernir ver 1.77 8.51 0.13 0.41 ind:pre:3s;ind:pas:3s; +verra voir ver 4119.43 2401.76 78.66 26.28 ind:fut:3s; +verrai voir ver 4119.43 2401.76 31.76 10.54 ind:fut:1s; +verraient voir ver 4119.43 2401.76 1.01 2.23 cnd:pre:3p; +verrais voir ver 4119.43 2401.76 9.03 6.49 cnd:pre:1s;cnd:pre:2s; +verrait voir ver 4119.43 2401.76 6.58 16.76 cnd:pre:3s; +verras voir ver 4119.43 2401.76 51.34 23.78 ind:fut:2s; +verrat verrat nom m s 0.08 0.74 0.08 0.68 +verrats verrat nom m p 0.08 0.74 0 0.07 +verre verre nom m s 176.57 230.07 154.13 175.2 +verrerie verrerie nom f s 1.14 0.74 0.93 0.47 +verreries verrerie nom f p 1.14 0.74 0.21 0.27 +verres verre nom m p 176.57 230.07 22.45 54.86 +verrez voir ver 4119.43 2401.76 35.5 18.51 ind:fut:2p; +verrier verrier adj m s 0 0.14 0 0.07 +verriers verrier adj m p 0 0.14 0 0.07 +verriez voir ver 4119.43 2401.76 1.84 0.81 cnd:pre:2p; +verrions voir ver 4119.43 2401.76 0.12 1.01 cnd:pre:1p; +verrière verrière nom f s 0.42 5.95 0.42 4.53 +verrières verrière nom f p 0.42 5.95 0 1.42 +verrons voir ver 4119.43 2401.76 13.26 7.57 ind:fut:1p; +verront voir ver 4119.43 2401.76 6.54 2.7 ind:fut:3p; +verroterie verroterie nom f s 0.05 1.42 0.04 1.01 +verroteries verroterie nom f p 0.05 1.42 0.01 0.41 +verrou verrou nom m s 5.28 12.03 3.54 7.64 +verrouilla verrouiller ver 8.77 3.72 0.11 0.61 ind:pas:3s; +verrouillage verrouillage nom m s 1.23 0.54 1.23 0.54 +verrouillai verrouiller ver 8.77 3.72 0 0.07 ind:pas:1s; +verrouillait verrouiller ver 8.77 3.72 0.15 0.34 ind:imp:3s; +verrouillant verrouiller ver 8.77 3.72 0 0.2 par:pre; +verrouille verrouiller ver 8.77 3.72 1.98 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +verrouillent verrouiller ver 8.77 3.72 0.28 0 ind:pre:3p; +verrouiller verrouiller ver 8.77 3.72 1.36 0.47 inf; +verrouilles verrouiller ver 8.77 3.72 0.09 0.14 ind:pre:2s; +verrouillez verrouiller ver 8.77 3.72 1.27 0 imp:pre:2p;ind:pre:2p; +verrouillons verrouiller ver 8.77 3.72 0.02 0 ind:pre:1p; +verrouillèrent verrouiller ver 8.77 3.72 0 0.07 ind:pas:3p; +verrouillé verrouiller ver m s 8.77 3.72 1.85 0.61 par:pas; +verrouillée verrouiller ver f s 8.77 3.72 1.24 0.61 par:pas; +verrouillées verrouiller ver f p 8.77 3.72 0.33 0.14 par:pas; +verrouillés verrouiller ver m p 8.77 3.72 0.09 0.2 par:pas; +verrous verrou nom m p 5.28 12.03 1.74 4.39 +verrue verrue nom f s 1.2 3.11 0.66 1.76 +verrues verrue nom f p 1.2 3.11 0.54 1.35 +verruqueuse verruqueux adj f s 0 0.14 0 0.14 +vers vers pre 227.77 956.15 227.77 956.15 +versa verser ver 31.2 53.99 1.88 10.68 ind:pas:3s; +versai verser ver 31.2 53.99 0.01 1.08 ind:pas:1s; +versaient verser ver 31.2 53.99 0.06 1.55 ind:imp:3p; +versaillais versaillais nom m 0 0.54 0 0.54 +versaillaise versaillais adj f s 0 0.34 0 0.2 +versais verser ver 31.2 53.99 0.21 0.47 ind:imp:1s;ind:imp:2s; +versait verser ver 31.2 53.99 0.64 5.61 ind:imp:3s; +versant versant nom m s 0.59 10.68 0.53 8.92 +versants versant nom m p 0.59 10.68 0.06 1.76 +versatile versatile adj s 0.34 0.34 0.33 0.2 +versatiles versatile adj f p 0.34 0.34 0.01 0.14 +versatilité versatilité nom f s 0.02 0.34 0.02 0.34 +verse verser ver 31.2 53.99 7.5 7.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +verseau verseau nom m s 0.02 0 0.02 0 +versement versement nom m s 2.76 0.88 1.91 0.61 +versements versement nom m p 2.76 0.88 0.85 0.27 +versent verser ver 31.2 53.99 0.29 0.95 ind:pre:3p; +verser verser ver 31.2 53.99 4.62 9.86 inf;; +versera verser ver 31.2 53.99 0.6 0.41 ind:fut:3s; +verserai verser ver 31.2 53.99 0.62 0 ind:fut:1s; +verserais verser ver 31.2 53.99 0.08 0.07 cnd:pre:1s; +verserait verser ver 31.2 53.99 0.14 0.07 cnd:pre:3s; +verseras verser ver 31.2 53.99 0.16 0.07 ind:fut:2s; +verserez verser ver 31.2 53.99 0.04 0.07 ind:fut:2p; +verseriez verser ver 31.2 53.99 0.02 0 cnd:pre:2p; +verserons verser ver 31.2 53.99 0.18 0 ind:fut:1p; +verseront verser ver 31.2 53.99 0.04 0.14 ind:fut:3p; +verses verser ver 31.2 53.99 0.93 0.07 ind:pre:2s; +verset verset nom m s 2.46 4.39 1.43 2.03 +versets verset nom m p 2.46 4.39 1.03 2.36 +verseur verseur adj m s 0.03 0.07 0.03 0 +verseurs verseur adj m p 0.03 0.07 0 0.07 +verseuse verseur nom f s 0.08 0.27 0.04 0.2 +verseuses verseur nom f p 0.08 0.27 0.04 0.07 +versez verser ver 31.2 53.99 3.6 0.27 imp:pre:2p;ind:pre:2p; +versicolores versicolore adj p 0 0.27 0 0.27 +versiculets versiculet nom m p 0 0.07 0 0.07 +versiez verser ver 31.2 53.99 0.02 0 ind:imp:2p; +versificateur versificateur nom m s 0 0.07 0 0.07 +versification versification nom f s 0.01 0 0.01 0 +versifier versifier ver 0 0.07 0 0.07 inf; +versifiées versifié adj f p 0 0.14 0 0.14 +version version nom f s 20.09 12.97 19.1 11.01 +versions version nom f p 20.09 12.97 0.98 1.96 +verso verso nom m s 0.62 1.96 0.61 1.82 +versons verser ver 31.2 53.99 0.22 0.14 imp:pre:1p;ind:pre:1p; +versos verso nom m p 0.62 1.96 0.01 0.14 +verstes verste nom f p 0.47 0.14 0.47 0.14 +versus versus pre 0.07 0.07 0.07 0.07 +versâmes verser ver 31.2 53.99 0 0.07 ind:pas:1p; +versât verser ver 31.2 53.99 0 0.14 sub:imp:3s; +versèrent verser ver 31.2 53.99 0.01 0.47 ind:pas:3p; +versé verser ver m s 31.2 53.99 7.5 7.7 par:pas; +versée verser ver f s 31.2 53.99 0.86 0.81 par:pas; +versées verser ver f p 31.2 53.99 0.36 0.54 par:pas; +versés verser ver m p 31.2 53.99 0.17 0.54 par:pas; +vert vert adj m s 52.59 145.14 24.74 59.12 +vert_de_gris vert_de_gris adj 0.02 0.81 0.02 0.81 +vert_de_grisé vert_de_grisé adj m s 0 0.34 0 0.07 +vert_de_grisé vert_de_grisé adj f s 0 0.34 0 0.07 +vert_de_grisé vert_de_grisé adj f p 0 0.34 0 0.14 +vert_de_grisé vert_de_grisé adj m p 0 0.34 0 0.07 +vert_galant vert_galant nom m s 0 0.2 0 0.2 +vert_jaune vert_jaune adj m s 0.02 0.07 0.02 0.07 +vert_jaune vert_jaune nom m s 0.02 0.07 0.02 0.07 +verte vert adj f s 52.59 145.14 14.24 38.45 +vertement vertement adv 0.14 1.08 0.14 1.08 +vertes vert adj f p 52.59 145.14 4.29 23.72 +vertex vertex nom m 0 1.22 0 1.22 +vertical vertical adj m s 1.54 15.41 0.61 3.85 +verticale verticale nom f s 1.85 5.07 1.44 4.46 +verticalement verticalement adv 0.17 3.31 0.17 3.31 +verticales verticale nom f p 1.85 5.07 0.41 0.61 +verticalité verticalité nom f s 0 0.2 0 0.2 +verticaux vertical adj m p 1.54 15.41 0.08 2.77 +verticille verticille nom m s 0.01 0 0.01 0 +vertige vertige nom m s 9.06 26.62 6.14 24.26 +vertiges vertige nom m p 9.06 26.62 2.91 2.36 +vertigineuse vertigineux adj f s 0.69 10.41 0.14 4.86 +vertigineusement vertigineusement adv 0.1 1.15 0.1 1.15 +vertigineuses vertigineux adj f p 0.69 10.41 0.11 1.35 +vertigineux vertigineux adj m 0.69 10.41 0.45 4.19 +vertigo vertigo nom m s 0.13 0.14 0.13 0.14 +verts vert adj m p 52.59 145.14 9.32 23.85 +vertu vertu nom f s 17.75 38.45 13.49 24.05 +vertubleu vertubleu ono 0.27 0 0.27 0 +vertueuse vertueux adj f s 5.08 3.78 1.92 1.42 +vertueusement vertueusement adv 0 0.27 0 0.27 +vertueuses vertueux adj f p 5.08 3.78 0.3 0.68 +vertueux vertueux adj m 5.08 3.78 2.85 1.69 +vertugadin vertugadin nom m s 0.01 0.14 0.01 0.14 +vertus vertu nom f p 17.75 38.45 4.26 14.39 +vertèbre vertèbre nom f s 1.27 3.38 0.68 0.81 +vertèbres vertèbre nom f p 1.27 3.38 0.59 2.57 +vertébral vertébral adj m s 3.23 2.36 0.06 0 +vertébrale vertébral adj f s 3.23 2.36 3.09 2.36 +vertébrales vertébral adj f p 3.23 2.36 0.06 0 +vertébraux vertébral adj m p 3.23 2.36 0.01 0 +vertébré vertébré nom m s 0.36 0.14 0.13 0.07 +vertébrés vertébré nom m p 0.36 0.14 0.23 0.07 +verve verve nom f s 0.4 3.04 0.4 3.04 +verveine verveine nom f s 0.72 1.76 0.72 1.76 +verveux verveux adj m 0 0.14 0 0.14 +vesce vesce nom f s 0.01 0.2 0.01 0 +vesces vesce nom f p 0.01 0.2 0 0.2 +vespa vespa nom f s 1.19 0.68 1.19 0.61 +vespas vespa nom f p 1.19 0.68 0 0.07 +vespasienne vespasien nom f s 0.12 0.41 0.02 0 +vespasiennes vespasien nom f p 0.12 0.41 0.1 0.41 +vesprée vesprée nom f s 0 0.07 0 0.07 +vespéral vespéral adj m s 0.01 0.88 0 0.07 +vespérale vespéral adj f s 0.01 0.88 0 0.61 +vespérales vespéral adj f p 0.01 0.88 0.01 0.14 +vespéraux vespéral adj m p 0.01 0.88 0 0.07 +vesse_de_loup vesse_de_loup nom f s 0.02 0.2 0 0.14 +vesses vesse nom f p 0 0.14 0 0.14 +vesse_de_loup vesse_de_loup nom f p 0.02 0.2 0.02 0.07 +vessie vessie nom f s 3.34 2.57 3.21 2.23 +vessies vessie nom f p 3.34 2.57 0.13 0.34 +vestalat vestalat nom m s 0 0.07 0 0.07 +vestale vestale nom f s 0.7 0.81 0.54 0.41 +vestales vestale nom f p 0.7 0.81 0.16 0.41 +veste veste nom f s 37.72 61.62 36 55.68 +vestes veste nom f p 37.72 61.62 1.71 5.95 +vestiaire vestiaire nom m s 5.71 12.43 4.04 9.86 +vestiaires vestiaire nom m p 5.71 12.43 1.67 2.57 +vestibule vestibule nom m s 0.96 12.77 0.96 12.43 +vestibules vestibule nom m p 0.96 12.77 0 0.34 +vestige vestige nom m s 1.48 7.77 0.54 1.62 +vestiges vestige nom m p 1.48 7.77 0.94 6.15 +vestimentaire vestimentaire adj s 0.9 2.84 0.63 1.76 +vestimentaires vestimentaire adj p 0.9 2.84 0.27 1.08 +veston veston nom m s 1.68 16.55 1.66 15.27 +vestons veston nom m p 1.68 16.55 0.02 1.28 +veto veto nom m 1.94 0.74 1.94 0.74 +veuf veuf adj m s 8.39 10.14 1.65 3.11 +veufs veuf nom m p 18.41 32.7 0.06 0.2 +veuille vouloir ver_sup 5249.3 1640.14 10.13 8.45 imp:pre:2s;sub:pre:1s;sub:pre:3s; +veuillent vouloir ver_sup 5249.3 1640.14 1.15 1.08 sub:pre:3p; +veuilles vouloir ver_sup 5249.3 1640.14 6.72 1.28 sub:pre:2s; +veuillez vouloir ver_sup 5249.3 1640.14 45.84 8.99 imp:pre:2p; +veule veule adj s 0.18 1.76 0.16 1.42 +veulent vouloir ver_sup 5249.3 1640.14 142.38 39.05 ind:pre:3p; +veulerie veulerie nom f s 0.21 2.5 0.21 2.36 +veuleries veulerie nom f p 0.21 2.5 0 0.14 +veules veule adj m p 0.18 1.76 0.02 0.34 +veut vouloir ver_sup 5249.3 1640.14 701.19 210.61 ind:pre:3s; +veuvage veuvage nom m s 0.78 2.84 0.78 2.5 +veuvages veuvage nom m p 0.78 2.84 0 0.34 +veuve veuf nom f s 18.41 32.7 15.64 26.89 +veuves veuf nom f p 18.41 32.7 1.89 3.99 +veux vouloir ver_sup 5249.3 1640.14 2486.93 377.97 ind:pre:1s;ind:pre:2s; +vexa vexer ver 15.56 11.76 0 0.34 ind:pas:3s; +vexai vexer ver 15.56 11.76 0 0.07 ind:pas:1s; +vexait vexer ver 15.56 11.76 0.02 0.54 ind:imp:3s; +vexant vexant adj m s 0.4 1.01 0.39 0.74 +vexante vexant adj f s 0.4 1.01 0.01 0.14 +vexantes vexant adj f p 0.4 1.01 0 0.07 +vexants vexant adj m p 0.4 1.01 0 0.07 +vexation vexation nom f s 0.17 1.82 0.12 0.68 +vexations vexation nom f p 0.17 1.82 0.05 1.15 +vexatoire vexatoire adj s 0 0.2 0 0.14 +vexatoires vexatoire adj f p 0 0.2 0 0.07 +vexe vexer ver 15.56 11.76 1.65 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vexent vexer ver 15.56 11.76 0.12 0.07 ind:pre:3p; +vexer vexer ver 15.56 11.76 4.3 2.57 inf;; +vexera vexer ver 15.56 11.76 0.26 0 ind:fut:3s; +vexerai vexer ver 15.56 11.76 0.3 0 ind:fut:1s; +vexerait vexer ver 15.56 11.76 0.02 0.41 cnd:pre:3s; +vexeras vexer ver 15.56 11.76 0.14 0.07 ind:fut:2s; +vexerez vexer ver 15.56 11.76 0.01 0 ind:fut:2p; +vexerions vexer ver 15.56 11.76 0 0.07 cnd:pre:1p; +vexes vexer ver 15.56 11.76 0.34 0.14 ind:pre:2s; +vexez vexer ver 15.56 11.76 0.41 0 imp:pre:2p;ind:pre:2p; +vexons vexer ver 15.56 11.76 0.04 0 imp:pre:1p;ind:pre:1p; +vexé vexer ver m s 15.56 11.76 5.21 4.19 par:pas; +vexée vexer ver f s 15.56 11.76 2.34 1.08 par:pas; +vexées vexer ver f p 15.56 11.76 0.01 0 par:pas; +vexés vexer ver m p 15.56 11.76 0.36 0.34 par:pas; +via via pre 6.53 5.41 6.53 5.41 +viabilité viabilité nom f s 0.1 0.07 0.1 0.07 +viable viable adj s 1.57 1.22 1.27 0.95 +viables viable adj p 1.57 1.22 0.29 0.27 +viaduc viaduc nom m s 0.17 0.88 0.17 0.88 +viager viager nom m s 0.14 0.27 0.14 0.27 +viagra viagra nom m s 0.45 0 0.45 0 +viagère viager adj f s 0.03 0.14 0.03 0.14 +viandard viandard nom m s 0 0.07 0 0.07 +viandasse viander ver 0.05 0.41 0 0.2 sub:imp:1s; +viande viande nom f s 44.43 45 43.78 41.35 +viander viander ver 0.05 0.41 0.01 0.14 inf; +viandes viande nom f p 44.43 45 0.65 3.65 +viandeuse viandeux adj f s 0 0.07 0 0.07 +viandox viandox nom m 0.02 0.68 0.02 0.68 +viandé viander ver m s 0.05 0.41 0.04 0.07 par:pas; +viatique viatique nom m s 0.01 1.28 0.01 1.28 +vibra vibrer ver 4.73 24.53 0 0.95 ind:pas:3s; +vibraient vibrer ver 4.73 24.53 0.06 0.68 ind:imp:3p; +vibrais vibrer ver 4.73 24.53 0.01 0.2 ind:imp:1s; +vibrait vibrer ver 4.73 24.53 0.22 6.22 ind:imp:3s; +vibrant vibrant adj m s 0.86 6.89 0.56 1.89 +vibrante vibrant adj f s 0.86 6.89 0.22 3.78 +vibrantes vibrant adj f p 0.86 6.89 0.03 0.88 +vibrants vibrant adj m p 0.86 6.89 0.05 0.34 +vibraphone vibraphone nom m s 0.03 0.14 0.03 0.07 +vibraphones vibraphone nom m p 0.03 0.14 0 0.07 +vibrateur vibrateur nom m s 0.14 0.07 0.14 0 +vibrateurs vibrateur nom m p 0.14 0.07 0.01 0.07 +vibratile vibratile adj f s 0.14 0.34 0.01 0.2 +vibratiles vibratile adj m p 0.14 0.34 0.14 0.14 +vibration vibration nom f s 4.49 12.64 1.28 8.58 +vibrations vibration nom f p 4.49 12.64 3.21 4.05 +vibrato vibrato nom m s 0.12 0.54 0.12 0.34 +vibratoire vibratoire adj s 0.11 0.47 0.1 0.34 +vibratoires vibratoire adj p 0.11 0.47 0.01 0.14 +vibratos vibrato nom m p 0.12 0.54 0 0.2 +vibre vibrer ver 4.73 24.53 1.79 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vibrent vibrer ver 4.73 24.53 0.23 0.68 ind:pre:3p; +vibrer vibrer ver 4.73 24.53 2.06 8.31 inf; +vibrera vibrer ver 4.73 24.53 0.03 0 ind:fut:3s; +vibreur vibreur nom m s 0.25 0 0.25 0 +vibrez vibrer ver 4.73 24.53 0.01 0 imp:pre:2p; +vibrionnaient vibrionner ver 0 0.34 0 0.07 ind:imp:3p; +vibrionnait vibrionner ver 0 0.34 0 0.14 ind:imp:3s; +vibrionnant vibrionner ver 0 0.34 0 0.07 par:pre; +vibrionne vibrionner ver 0 0.34 0 0.07 ind:pre:1s; +vibrions vibrion nom m p 0.14 0.2 0.14 0.2 +vibrisses vibrisse nom f p 0 0.14 0 0.14 +vibro_masseur vibro_masseur nom m s 0.08 0.07 0.08 0.07 +vibromasseur vibromasseur nom m s 0.93 0 0.85 0 +vibromasseurs vibromasseur nom m p 0.93 0 0.08 0 +vibré vibrer ver m s 4.73 24.53 0.04 0.95 par:pas; +vibrée vibrer ver f s 4.73 24.53 0.01 0.07 par:pas; +vibrées vibrer ver f p 4.73 24.53 0 0.07 par:pas; +vibura viburer ver 0 0.81 0 0.07 ind:pas:3s; +viburait viburer ver 0 0.81 0 0.07 ind:imp:3s; +vibure viburer ver 0 0.81 0 0.68 ind:pre:3s; +vicaire vicaire nom m s 0.71 2.57 0.68 2.23 +vicaires vicaire nom m p 0.71 2.57 0.04 0.34 +vice vice nom m s 12.29 18.45 7.78 13.45 +vice_amiral vice_amiral nom m s 0.1 0.61 0.1 0.61 +vice_chancelier vice_chancelier nom m s 0.07 0 0.07 0 +vice_consul vice_consul nom m s 0.18 0.54 0.18 0.54 +vice_ministre vice_ministre nom s 0.27 0.27 0.27 0.2 +vice_ministre vice_ministre nom p 0.27 0.27 0 0.07 +vice_premier vice_premier nom m s 0.01 0 0.01 0 +vice_présidence vice_présidence nom f s 0.57 0 0.57 0 +vice_président vice_président nom m s 8.63 0.61 7.91 0.54 +vice_président vice_président nom f s 8.63 0.61 0.6 0 +vice_président vice_président nom m p 8.63 0.61 0.12 0.07 +vice_recteur vice_recteur nom m s 0.1 0 0.1 0 +vice_roi vice_roi nom m s 0.94 0.54 0.84 0.54 +vice_roi vice_roi nom m p 0.94 0.54 0.1 0 +vice_versa vice_versa adv 0.85 0.27 0.85 0.27 +vicelard vicelard adj m s 0.89 3.38 0.6 1.49 +vicelarde vicelard adj f s 0.89 3.38 0.07 0.81 +vicelardes vicelard adj f p 0.89 3.38 0.01 0.27 +vicelardise vicelardise nom f s 0 0.2 0 0.14 +vicelardises vicelardise nom f p 0 0.2 0 0.07 +vicelards vicelard adj m p 0.89 3.38 0.2 0.81 +vices vice nom m p 12.29 18.45 4.52 5 +vichy vichy nom m s 0.69 1.22 0.69 1.22 +vichysme vichysme nom m s 0 0.07 0 0.07 +vichyssois vichyssois adj m 0.06 0.07 0 0.07 +vichyssois vichyssois nom m 0 0.07 0 0.07 +vichyssoise vichyssois adj f s 0.06 0.07 0.06 0 +vichyste vichyste adj s 0.03 0.27 0.01 0.14 +vichystes vichyste adj p 0.03 0.27 0.02 0.14 +vicier vicier ver 0.22 0.41 0 0.07 inf; +vicieuse vicieux adj f s 5.75 7.03 1.11 1.96 +vicieusement vicieusement adv 0.07 0.27 0.07 0.27 +vicieuses vicieux adj f p 5.75 7.03 0.45 0.27 +vicieux vicieux adj m 5.75 7.03 4.19 4.8 +vicinal vicinal adj m s 0 0.81 0 0.47 +vicinales vicinal adj f p 0 0.81 0 0.07 +vicinalité vicinalité nom f s 0 0.07 0 0.07 +vicinaux vicinal adj m p 0 0.81 0 0.27 +vicissitude vicissitude nom f s 0.06 2.16 0.02 0.14 +vicissitudes vicissitude nom f p 0.06 2.16 0.04 2.03 +vicié vicié adj m s 0.23 0.54 0.23 0.41 +viciée vicier ver f s 0.22 0.41 0 0.14 par:pas; +viciés vicié adj m p 0.23 0.54 0 0.14 +vicomte vicomte nom m s 0.44 6.28 0.41 5.61 +vicomtes vicomte nom m p 0.44 6.28 0 0.2 +vicomtesse vicomte nom f s 0.44 6.28 0.03 0.41 +vicomtesses vicomte nom f p 0.44 6.28 0.01 0.07 +vicomté vicomté nom f s 0 0.41 0 0.41 +victimaire victimaire nom m s 0 0.07 0 0.07 +victime victime nom f s 106.25 46.22 66.47 28.45 +victimes victime nom f p 106.25 46.22 39.78 17.77 +victimologie victimologie nom f s 0.04 0 0.04 0 +victoire victoire nom f s 34.96 63.24 31.31 57.23 +victoires victoire nom f p 34.96 63.24 3.65 6.01 +victoria victoria nom s 0.02 0.47 0.02 0.34 +victorias victoria nom p 0.02 0.47 0 0.14 +victorien victorien adj m s 0.49 1.35 0.12 0.41 +victorienne victorien adj f s 0.49 1.35 0.25 0.81 +victoriennes victorien adj f p 0.49 1.35 0.04 0.14 +victoriens victorien adj m p 0.49 1.35 0.08 0 +victorieuse victorieux adj f s 2.95 9.32 0.22 4.73 +victorieusement victorieusement adv 0 1.82 0 1.82 +victorieuses victorieux adj f p 2.95 9.32 0.19 1.35 +victorieux victorieux adj m 2.95 9.32 2.54 3.24 +victuaille victuaille nom f s 0.42 4.26 0.01 0.07 +victuailles victuaille nom f p 0.42 4.26 0.41 4.19 +vida vider ver 30.68 70.81 1.06 9.32 ind:pas:3s; +vidage vidage nom m s 0.04 0.14 0.04 0.14 +vidai vider ver 30.68 70.81 0 1.22 ind:pas:1s; +vidaient vider ver 30.68 70.81 0.08 1.76 ind:imp:3p; +vidais vider ver 30.68 70.81 0.47 0.34 ind:imp:1s; +vidait vider ver 30.68 70.81 0.43 5.95 ind:imp:3s; +vidame vidame nom m s 0 0.07 0 0.07 +vidange vidange nom f s 1.29 1.55 1.09 1.35 +vidanger vidanger ver 0.3 0.34 0.2 0.14 inf; +vidanges vidange nom f p 1.29 1.55 0.2 0.2 +vidangeur vidangeur nom m s 0.01 0.27 0.01 0.07 +vidangeurs vidangeur nom m p 0.01 0.27 0 0.2 +vidangez vidanger ver 0.3 0.34 0.02 0.07 imp:pre:2p;ind:pre:2p; +vidangé vidanger ver m s 0.3 0.34 0.02 0.07 par:pas; +vidangée vidanger ver f s 0.3 0.34 0.02 0 par:pas; +vidant vider ver 30.68 70.81 0.24 2.84 par:pre; +vidas vider ver 30.68 70.81 0.1 0.07 ind:pas:2s; +vide vide adj s 60.33 147.5 48.53 102.84 +vide_gousset vide_gousset nom m s 0.27 0 0.27 0 +vide_greniers vide_greniers nom m 0.04 0 0.04 0 +vide_ordure vide_ordure nom m s 0.06 0 0.06 0 +vide_ordures vide_ordures nom m 0.55 1.22 0.55 1.22 +vide_poche vide_poche nom m s 0.04 0.14 0.04 0.14 +vide_poches vide_poches nom m 0 0.27 0 0.27 +vident vider ver 30.68 70.81 0.81 1.49 ind:pre:3p; +vider vider ver 30.68 70.81 8.31 16.82 inf; +videra vider ver 30.68 70.81 0.16 0.14 ind:fut:3s; +viderai vider ver 30.68 70.81 0.11 0.14 ind:fut:1s; +viderais vider ver 30.68 70.81 0.15 0.07 cnd:pre:1s; +viderait vider ver 30.68 70.81 0.47 0.47 cnd:pre:3s; +videras vider ver 30.68 70.81 0 0.07 ind:fut:2s; +viderions vider ver 30.68 70.81 0.01 0 cnd:pre:1p; +videront vider ver 30.68 70.81 0.14 0.07 ind:fut:3p; +vides vide adj p 60.33 147.5 11.8 44.66 +videur videur nom m s 1.48 1.22 1.24 0.74 +videurs videur nom m p 1.48 1.22 0.24 0.47 +videz vider ver 30.68 70.81 2.71 0.27 imp:pre:2p;ind:pre:2p; +vidicon vidicon nom m s 0.01 0 0.01 0 +vidiez vider ver 30.68 70.81 0.12 0 ind:imp:2p; +vidons vider ver 30.68 70.81 0.09 0.14 imp:pre:1p;ind:pre:1p; +viduité viduité nom f s 0.01 0 0.01 0 +vidures vidure nom f p 0 0.07 0 0.07 +vidèrent vider ver 30.68 70.81 0.11 1.35 ind:pas:3p; +vidé vider ver m s 30.68 70.81 7.22 11.89 par:pas; +vidéaste vidéaste nom s 0.08 0 0.07 0 +vidéastes vidéaste nom p 0.08 0 0.01 0 +vidée vider ver f s 30.68 70.81 1.42 3.45 par:pas; +vidées vider ver f p 30.68 70.81 0.23 1.28 par:pas; +vidéo vidéo adj 23.61 0.74 23.61 0.74 +vidéo_clip vidéo_clip nom m s 0.19 0.27 0.14 0.2 +vidéo_clip vidéo_clip nom m p 0.19 0.27 0.04 0.07 +vidéo_club vidéo_club nom f s 0.44 0 0.44 0 +vidéo_espion vidéo_espion nom m s 0 0.07 0 0.07 +vidéocassette vidéocassette nom f s 0.1 0 0.06 0 +vidéocassettes vidéocassette nom f p 0.1 0 0.04 0 +vidéoclip vidéoclip nom m s 0.02 0 0.02 0 +vidéoclub vidéoclub nom m s 1.34 0 1.34 0 +vidéoconférence vidéoconférence nom f s 0.05 0 0.05 0 +vidéogramme vidéogramme nom m s 0.01 0 0.01 0 +vidéophone vidéophone nom m s 0.04 0 0.04 0 +vidéophonie vidéophonie nom f s 0.01 0 0.01 0 +vidéos vidéo nom f p 21.34 0.41 6.1 0.2 +vidéosurveillance vidéosurveillance nom f s 0.42 0 0.42 0 +vidéothèque vidéothèque nom f s 0.36 0 0.36 0 +vidés vider ver m p 30.68 70.81 0.46 2.23 par:pas; +vie vie nom f s 1021.22 853.31 986.59 835.47 +vieil vieil adj m s 34.69 51.22 34.69 51.22 +vieillard vieillard nom m s 11.75 55.14 7.62 37.77 +vieillarde vieillard nom f s 11.75 55.14 0.16 0.34 +vieillardes vieillard nom f p 11.75 55.14 0 0.34 +vieillards vieillard nom m p 11.75 55.14 3.96 16.69 +vieille vieux adj f s 282.2 512.91 84.59 184.12 +vieillerie vieillerie nom f s 1.91 2.3 0.54 0.68 +vieilleries vieillerie nom f p 1.91 2.3 1.37 1.62 +vieilles vieux adj f p 282.2 512.91 17.52 55.47 +vieillesse vieillesse nom f s 4.88 14.53 4.75 14.39 +vieillesses vieillesse nom f p 4.88 14.53 0.14 0.14 +vieilli vieillir ver m s 20.47 32.23 4.28 9.39 par:pas; +vieillie vieillir ver f s 20.47 32.23 0.3 0.61 par:pas; +vieillies vieillir ver f p 20.47 32.23 0.01 0 par:pas; +vieillir vieillir ver 20.47 32.23 5.49 8.58 inf; +vieillira vieillir ver 20.47 32.23 0.12 0.41 ind:fut:3s; +vieillirai vieillir ver 20.47 32.23 0.23 0.14 ind:fut:1s; +vieilliraient vieillir ver 20.47 32.23 0.01 0.07 cnd:pre:3p; +vieillirais vieillir ver 20.47 32.23 0.01 0 cnd:pre:1s; +vieillirait vieillir ver 20.47 32.23 0.07 0.41 cnd:pre:3s; +vieilliras vieillir ver 20.47 32.23 0.33 0.14 ind:fut:2s; +vieillirent vieillir ver 20.47 32.23 0.02 0 ind:pas:3p; +vieillirez vieillir ver 20.47 32.23 0.06 0.07 ind:fut:2p; +vieillirons vieillir ver 20.47 32.23 0.07 0.07 ind:fut:1p; +vieilliront vieillir ver 20.47 32.23 0.3 0.07 ind:fut:3p; +vieillis vieillir ver m p 20.47 32.23 2.74 1.89 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +vieillissaient vieillir ver 20.47 32.23 0.01 0.47 ind:imp:3p; +vieillissais vieillir ver 20.47 32.23 0.11 0.34 ind:imp:1s;ind:imp:2s; +vieillissait vieillir ver 20.47 32.23 0.48 2.5 ind:imp:3s; +vieillissant vieillir ver 20.47 32.23 1.38 2.23 par:pre; +vieillissante vieillissant adj f s 0.41 2.3 0.18 0.81 +vieillissantes vieillissant adj f p 0.41 2.3 0.12 0.2 +vieillissants vieillissant adj m p 0.41 2.3 0.04 0.41 +vieillisse vieillir ver 20.47 32.23 0.13 0.27 sub:pre:1s;sub:pre:3s; +vieillissement vieillissement nom m s 1.04 2.5 1.04 2.5 +vieillissent vieillir ver 20.47 32.23 0.76 0.88 ind:pre:3p; +vieillissez vieillir ver 20.47 32.23 0.29 0.14 imp:pre:2p;ind:pre:2p; +vieillissiez vieillir ver 20.47 32.23 0 0.07 ind:imp:2p; +vieillissions vieillir ver 20.47 32.23 0 0.07 ind:imp:1p; +vieillissons vieillir ver 20.47 32.23 0.08 0 imp:pre:1p;ind:pre:1p; +vieillit vieillir ver 20.47 32.23 3.19 3.45 ind:pre:3s;ind:pas:3s; +vieillot vieillot adj m s 0.34 2.57 0.25 1.28 +vieillots vieillot adj m p 0.34 2.57 0.01 0.27 +vieillotte vieillot adj f s 0.34 2.57 0.04 0.74 +vieillottes vieillot adj f p 0.34 2.57 0.03 0.27 +vielle vielle nom f s 2.01 0.68 1.49 0.47 +vielles vielle nom f p 2.01 0.68 0.52 0.2 +vielleux vielleux nom m 0.14 0.07 0.14 0.07 +viendra venir ver 2763.82 1514.53 52.92 23.11 ind:fut:3s; +viendrai venir ver 2763.82 1514.53 21.68 5.95 ind:fut:1s; +viendraient venir ver 2763.82 1514.53 1.68 6.35 cnd:pre:3p; +viendrais venir ver 2763.82 1514.53 11.8 2.7 cnd:pre:1s;cnd:pre:2s; +viendrait venir ver 2763.82 1514.53 9.89 20.27 cnd:pre:3s; +viendras venir ver 2763.82 1514.53 13.72 3.85 ind:fut:2s; +viendrez venir ver 2763.82 1514.53 5.73 4.05 ind:fut:2p; +viendriez venir ver 2763.82 1514.53 3.04 1.15 cnd:pre:2p; +viendrions venir ver 2763.82 1514.53 0.13 0.34 cnd:pre:1p; +viendrons venir ver 2763.82 1514.53 1.67 0.74 ind:fut:1p; +viendront venir ver 2763.82 1514.53 14.25 8.31 ind:fut:3p; +vienne venir ver 2763.82 1514.53 34.52 25 sub:pre:1s;sub:pre:3s; +viennent venir ver 2763.82 1514.53 76.48 62.77 ind:pre:3p;sub:pre:3p; +viennes venir ver 2763.82 1514.53 11.59 3.11 sub:pre:2s; +viennois viennois adj m 0.27 2.23 0.18 0.88 +viennoise viennois adj f s 0.27 2.23 0.08 0.81 +viennoiserie viennoiserie nom f s 0.66 0 0.52 0 +viennoiseries viennoiserie nom f p 0.66 0 0.14 0 +viennoises viennois adj f p 0.27 2.23 0.01 0.54 +viens venir ver 2763.82 1514.53 944.81 126.49 imp:pre:2s;ind:pre:1s;ind:pre:2s;inf; +vient venir ver 2763.82 1514.53 352.24 206.22 ind:pre:3s; +vierge vierge adj s 26.03 25.14 24.22 21.82 +vierges vierge nom f p 23.79 25.61 4.38 2.43 +vies vie nom f p 1021.22 853.31 34.63 17.84 +vietnamien vietnamien adj m s 1.04 0.68 0.45 0.41 +vietnamienne vietnamien adj f s 1.04 0.68 0.28 0.14 +vietnamiennes vietnamien adj f p 1.04 0.68 0.2 0.07 +vietnamiens vietnamien nom m p 1.19 0.74 0.81 0.14 +vieux vieux adj m 282.2 512.91 180.08 273.31 +vieux_rose vieux_rose adj m 0 0.2 0 0.2 +vif vif adj m s 22.95 95.07 9.27 41.62 +vif_argent vif_argent nom m s 0.21 0.2 0.21 0.2 +vifs vif adj m p 22.95 95.07 2.88 10.14 +vigie vigie nom f s 0.68 1.69 0.51 1.35 +vigies vigie nom f p 0.68 1.69 0.17 0.34 +vigil vigil adj m s 0.34 0 0.04 0 +vigilance vigilance nom f s 0.88 8.18 0.88 7.97 +vigilances vigilance nom f p 0.88 8.18 0 0.2 +vigilant vigilant adj m s 4.61 4.66 1.73 1.82 +vigilante vigilant adj f s 4.61 4.66 1.04 1.49 +vigilantes vigilant adj f p 4.61 4.66 0.03 0.41 +vigilants vigilant adj m p 4.61 4.66 1.8 0.95 +vigile vigile nom s 3.44 1.42 2.09 0.68 +vigiler vigiler ver 0.24 0.27 0.01 0 inf; +vigiles vigile nom p 3.44 1.42 1.35 0.74 +vigne vigne nom f s 6.87 20.41 4.97 10.61 +vigneaux vigneau nom m p 0 0.07 0 0.07 +vigneron vigneron nom m s 1.18 1.96 0.36 0.61 +vigneronne vigneron nom f s 1.18 1.96 0.14 0 +vigneronnes vigneron nom f p 1.18 1.96 0 0.07 +vignerons vigneron nom m p 1.18 1.96 0.68 1.28 +vignes vigne nom f p 6.87 20.41 1.9 9.8 +vignette vignette nom f s 0.26 1.76 0.19 0.41 +vignettes vignette nom f p 0.26 1.76 0.07 1.35 +vignoble vignoble nom m s 1.52 1.96 1.1 0.74 +vignobles vignoble nom m p 1.52 1.96 0.43 1.22 +vigogne vigogne nom f s 0.12 0.2 0.12 0.2 +vigoureuse vigoureux adj f s 2.62 10.54 0.56 3.18 +vigoureusement vigoureusement adv 0.55 3.92 0.55 3.92 +vigoureuses vigoureux adj f p 2.62 10.54 0.01 1.01 +vigoureux vigoureux adj m 2.62 10.54 2.05 6.35 +vigousse vigousse adj m s 0 0.07 0 0.07 +vigueur vigueur nom f s 3.61 15.61 3.61 15.54 +vigueurs vigueur nom f p 3.61 15.61 0 0.07 +viguier viguier nom m s 0 0.88 0 0.81 +viguiers viguier nom m p 0 0.88 0 0.07 +viking viking nom m s 0.43 0.2 0.25 0 +vikings viking nom m p 0.43 0.2 0.19 0.2 +vil vil adj m s 6.07 3.18 3.54 2.16 +vilain vilain adj m s 20.67 19.32 11.03 8.72 +vilaine vilain adj f s 20.67 19.32 6.23 6.22 +vilainement vilainement adv 0.04 0.47 0.04 0.47 +vilaines vilain adj f p 20.67 19.32 1.81 2.57 +vilains vilain adj m p 20.67 19.32 1.61 1.82 +vile vil adj f s 6.07 3.18 1.72 0.47 +vilebrequin vilebrequin nom m s 0.13 0.68 0.12 0.68 +vilebrequins vilebrequin nom m p 0.13 0.68 0.01 0 +vilement vilement adv 0.14 0 0.14 0 +vilenie vilenie nom f s 0.58 1.15 0.46 0.74 +vilenies vilenie nom f p 0.58 1.15 0.13 0.41 +viles vil adj f p 6.07 3.18 0.22 0.2 +vilipendaient vilipender ver 0.2 0.61 0.01 0 ind:imp:3p; +vilipendant vilipender ver 0.2 0.61 0.01 0.07 par:pre; +vilipender vilipender ver 0.2 0.61 0.15 0.07 inf; +vilipendé vilipender ver m s 0.2 0.61 0.03 0.27 par:pas; +vilipendées vilipender ver f p 0.2 0.61 0 0.07 par:pas; +vilipendés vilipender ver m p 0.2 0.61 0 0.14 par:pas; +villa villa nom f s 16.61 33.72 15.3 24.8 +village village nom m s 95.82 143.99 87.6 118.24 +villageois villageois nom m 4.83 2.91 4.59 2.36 +villageoise villageois nom f s 4.83 2.91 0.07 0.27 +villageoises villageois nom f p 4.83 2.91 0.17 0.27 +villages village nom m p 95.82 143.99 8.22 25.74 +villas villa nom f p 16.61 33.72 1.31 8.92 +ville ville nom f s 295.14 352.97 277.98 311.69 +ville_champignon ville_champignon nom f s 0.02 0 0.02 0 +ville_dortoir ville_dortoir nom f s 0 0.07 0 0.07 +villes ville nom f p 295.14 352.97 17.17 41.28 +villes_clé villes_clé nom f p 0.01 0 0.01 0 +villette villette nom f s 0.18 0.88 0.18 0.88 +villégiaturait villégiaturer ver 0.01 0.14 0 0.07 ind:imp:3s; +villégiature villégiature nom f s 0.1 2.7 0.1 2.16 +villégiaturer villégiaturer ver 0.01 0.14 0.01 0 inf; +villégiatures villégiature nom f p 0.1 2.7 0 0.54 +villégiaturé villégiaturer ver m s 0.01 0.14 0 0.07 par:pas; +vils vil adj m p 6.07 3.18 0.59 0.34 +vin vin nom m s 86.86 110.47 80.92 99.93 +vina vina nom f 0.11 0 0.11 0 +vinaigre vinaigre nom m s 2.91 5.61 2.91 5.54 +vinaigrer vinaigrer ver 0.01 0.47 0 0.14 inf; +vinaigres vinaigre nom m p 2.91 5.61 0 0.07 +vinaigrette vinaigrette nom f s 0.59 0.68 0.59 0.68 +vinaigré vinaigrer ver m s 0.01 0.47 0.01 0 par:pas; +vinaigrée vinaigrer ver f s 0.01 0.47 0 0.2 par:pas; +vinasse vinasse nom f s 0.21 1.62 0.21 1.62 +vindicatif vindicatif adj m s 1.1 2.23 0.79 1.28 +vindicatifs vindicatif adj m p 1.1 2.23 0.07 0.47 +vindicative vindicatif adj f s 1.1 2.23 0.12 0.41 +vindicativement vindicativement adv 0 0.07 0 0.07 +vindicatives vindicatif adj f p 1.1 2.23 0.12 0.07 +vindicte vindicte nom f s 0.19 1.15 0.19 1.15 +vine viner ver 0.06 0.2 0.04 0 imp:pre:2s; +viner viner ver 0.06 0.2 0.01 0.07 inf; +vines viner ver 0.06 0.2 0 0.07 ind:pre:2s; +vineuse vineux adj f s 0 1.76 0 0.88 +vineuses vineux adj f p 0 1.76 0 0.27 +vineux vineux adj m 0 1.76 0 0.61 +vinez viner ver 0.06 0.2 0.01 0.07 imp:pre:2p; +vingt vingt adj_num 29.47 154.59 29.47 154.59 +vingt_cinq vingt_cinq adj_num 3.53 28.18 3.53 28.18 +vingt_cinquième vingt_cinquième adj 0.01 0.34 0.01 0.34 +vingt_deux vingt_deux adj_num 1.25 8.99 1.25 8.99 +vingt_deuxième vingt_deuxième adj 0.03 0.27 0.03 0.27 +vingt_et_un vingt_et_un nom m 0.28 0.74 0.28 0.68 +vingt_et_un vingt_et_un nom f s 0.28 0.74 0.01 0.07 +vingt_et_unième vingt_et_unième adj 0.01 0.07 0.01 0.07 +vingt_huit vingt_huit adj_num 0.97 5.34 0.97 5.34 +vingt_huitième vingt_huitième adj 0 0.74 0 0.74 +vingt_neuf vingt_neuf adj_num 0.96 2.77 0.96 2.77 +vingt_neuvième vingt_neuvième adj 0.01 0 0.01 0 +vingt_quatre vingt_quatre adj_num 2.13 17.36 2.13 17.36 +vingt_quatrième vingt_quatrième adj 0.01 0.27 0.01 0.27 +vingt_sept vingt_sept adj_num 0.67 4.59 0.67 4.59 +vingt_septième vingt_septième adj 0 0.54 0 0.54 +vingt_six vingt_six adj_num 1.09 7.5 1.09 7.5 +vingt_sixième vingt_sixième adj 0.01 0.2 0.01 0.2 +vingt_trois vingt_trois adj_num 2.08 7.57 2.08 7.57 +vingt_troisième vingt_troisième adj 0.01 0.61 0.01 0.61 +vingtaine vingtaine nom f s 4.11 15.47 4.11 15.34 +vingtaines vingtaine nom f p 4.11 15.47 0 0.14 +vingtième vingtième adj 0.34 3.24 0.34 3.18 +vingtièmes vingtième adj 0.34 3.24 0 0.07 +vinicole vinicole adj s 0.04 0 0.04 0 +vinificatrice vinificateur nom f s 0.01 0 0.01 0 +vinrent venir ver 2763.82 1514.53 1.53 10.54 ind:pas:3p; +vins vin nom m p 86.86 110.47 5.95 10.54 +vinsse venir ver 2763.82 1514.53 0 0.2 sub:imp:1s; +vinssent venir ver 2763.82 1514.53 0 1.08 sub:imp:3p; +vint venir ver 2763.82 1514.53 7.58 88.72 ind:pas:3s; +vintage vintage nom m s 0.17 0.07 0.17 0.07 +vinyle vinyle nom m s 0.7 0.74 0.34 0.74 +vinyles vinyle nom m p 0.7 0.74 0.35 0 +vinylique vinylique adj m s 0 0.07 0 0.07 +vioc vioc nom m s 0.04 0.41 0.03 0.34 +viocard viocard nom m s 0 0.14 0 0.14 +viocque viocque nom s 0 0.07 0 0.07 +viocs vioc nom m p 0.04 0.41 0.01 0.07 +viol viol nom m s 15.33 8.51 13.43 7.23 +viola violer ver 39.43 19.19 1.49 0.54 ind:pas:3s; +violacer violacer ver 0.03 1.62 0 0.07 inf; +violacé violacé adj m s 0.04 5.88 0.01 1.89 +violacée violacé adj f s 0.04 5.88 0.02 1.55 +violacées violacer ver f p 0.03 1.62 0.02 0.47 par:pas; +violacés violacé adj m p 0.04 5.88 0.01 0.74 +violaient violer ver 39.43 19.19 0.19 0.27 ind:imp:3p; +violais violer ver 39.43 19.19 0.04 0 ind:imp:1s;ind:imp:2s; +violait violer ver 39.43 19.19 1.01 0.81 ind:imp:3s; +violant violer ver 39.43 19.19 0.68 0.61 par:pre; +violation violation nom f s 4.54 1.96 4.09 1.62 +violations violation nom f p 4.54 1.96 0.46 0.34 +violaçait violacer ver 0.03 1.62 0 0.07 ind:imp:3s; +viole violer ver 39.43 19.19 3 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +violemment violemment adv 2.8 20.88 2.8 20.88 +violence violence nom f s 41.45 56.49 39.66 53.11 +violences violence nom f p 41.45 56.49 1.79 3.38 +violent violent adj m s 24.99 51.49 12.84 19.39 +violentaient violenter ver 0.62 1.42 0 0.07 ind:imp:3p; +violentait violenter ver 0.62 1.42 0.01 0.2 ind:imp:3s; +violente violent adj f s 24.99 51.49 5.17 18.04 +violenter violenter ver 0.62 1.42 0.16 0.47 inf; +violentes violent adj f p 24.99 51.49 2.44 7.84 +violents violent adj m p 24.99 51.49 4.54 6.22 +violenté violenter ver m s 0.62 1.42 0.2 0.07 par:pas; +violentée violenter ver f s 0.62 1.42 0.07 0.14 par:pas; +violer violer ver 39.43 19.19 8.36 4.93 inf;; +violerai violer ver 39.43 19.19 0.03 0.07 ind:fut:1s; +violerais violer ver 39.43 19.19 0.1 0 cnd:pre:1s;cnd:pre:2s; +violerait violer ver 39.43 19.19 0.21 0.2 cnd:pre:3s; +violeras violer ver 39.43 19.19 0.02 0 ind:fut:2s; +violeront violer ver 39.43 19.19 0.05 0.07 ind:fut:3p; +violes violer ver 39.43 19.19 0.55 0.07 ind:pre:2s; +violet violet adj m s 4.38 26.28 2.29 7.91 +violeta violeter ver 0.44 0 0.44 0 ind:pas:3s; +violets violet adj m p 4.38 26.28 0.39 4.39 +violette violet adj f s 4.38 26.28 1.04 9.12 +violettes violette nom f p 1.94 6.89 1.17 4.39 +violeur violeur nom m s 6.41 2.3 4.52 1.35 +violeurs violeur nom m p 6.41 2.3 1.89 0.88 +violeuses violeur nom f p 6.41 2.3 0 0.07 +violez violer ver 39.43 19.19 0.6 0 imp:pre:2p;ind:pre:2p; +violine violine nom m s 0 0.2 0 0.2 +violines violine adj p 0 0.14 0 0.07 +violon violon nom m s 13.65 13.31 11.56 9.73 +violoncelle violoncelle nom m s 3.28 3.38 3.04 3.31 +violoncelles violoncelle nom m p 3.28 3.38 0.24 0.07 +violoncelliste violoncelliste nom s 0.81 0.14 0.79 0.07 +violoncellistes violoncelliste nom p 0.81 0.14 0.02 0.07 +violone violoner ver 0 0.07 0 0.07 ind:pre:1s; +violoneux violoneux nom m 0 0.41 0 0.41 +violoniste violoniste nom s 3.07 2.43 2.91 1.82 +violonistes violoniste nom p 3.07 2.43 0.16 0.61 +violons violon nom m p 13.65 13.31 2.09 3.58 +viols viol nom m p 15.33 8.51 1.9 1.28 +violâtre violâtre adj s 0 0.88 0 0.47 +violâtres violâtre adj p 0 0.88 0 0.41 +violé violer ver m s 39.43 19.19 9.36 2.97 par:pas; +violée violer ver f s 39.43 19.19 10.97 3.99 ind:imp:3p;par:pas; +violées violer ver f p 39.43 19.19 1.18 1.89 par:pas; +violés violer ver m p 39.43 19.19 0.7 0.41 par:pas; +vioque vioque nom f s 0.77 4.93 0.4 4.32 +vioques vioque nom f p 0.77 4.93 0.38 0.61 +viorne viorne nom f s 0 0.41 0 0.2 +viornes viorne nom f p 0 0.41 0 0.2 +vipère vipère nom f s 4.84 5.41 3.42 3.31 +vipères vipère nom f p 4.84 5.41 1.42 2.09 +vipéreau vipéreau nom m s 0 0.07 0 0.07 +vipérine vipérin adj f s 0.14 0.2 0.14 0.14 +vipérines vipérin adj f p 0.14 0.2 0 0.07 +vira virer ver 86.3 37.84 0.03 1.82 ind:pas:3s; +virage virage nom m s 6.75 12.91 5.98 8.72 +virages virage nom m p 6.75 12.91 0.77 4.19 +virago virago nom f s 0.02 0.2 0.01 0.07 +viragos virago nom f p 0.02 0.2 0.01 0.14 +virai virer ver 86.3 37.84 0 0.07 ind:pas:1s; +viraient virer ver 86.3 37.84 0.05 1.08 ind:imp:3p; +virais virer ver 86.3 37.84 0.19 0.07 ind:imp:1s;ind:imp:2s; +virait virer ver 86.3 37.84 0.21 2.3 ind:imp:3s; +viral viral adj m s 1.19 0.61 0.35 0.07 +virale viral adj f s 1.19 0.61 0.73 0.47 +virales viral adj f p 1.19 0.61 0.1 0.07 +virant virer ver 86.3 37.84 0.15 1.49 par:pre; +viraux viral adj m p 1.19 0.61 0.01 0 +vire virer ver 86.3 37.84 13.27 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +virement virement nom m s 1.75 0.34 1.48 0.14 +virements virement nom m p 1.75 0.34 0.27 0.2 +virent virer ver 86.3 37.84 2.04 11.62 ind:pre:3p; +virer virer ver 86.3 37.84 25.74 6.76 imp:pre:2p;ind:pre:2p;inf; +virera virer ver 86.3 37.84 0.44 0.07 ind:fut:3s; +virerai virer ver 86.3 37.84 0.2 0 ind:fut:1s; +virerais virer ver 86.3 37.84 0.21 0 cnd:pre:1s;cnd:pre:2s; +virerait virer ver 86.3 37.84 0.14 0.2 cnd:pre:3s; +vireras virer ver 86.3 37.84 0.05 0 ind:fut:2s; +virerez virer ver 86.3 37.84 0.09 0 ind:fut:2p; +vireront virer ver 86.3 37.84 0.11 0 ind:fut:3p; +vires virer ver 86.3 37.84 1.39 0.34 ind:pre:2s;sub:pre:2s; +vireuse vireux adj f s 0 0.07 0 0.07 +virevolta virevolter ver 0.48 2.97 0 0.14 ind:pas:3s; +virevoltaient virevolter ver 0.48 2.97 0.11 0.47 ind:imp:3p; +virevoltait virevolter ver 0.48 2.97 0.04 0.34 ind:imp:3s; +virevoltant virevolter ver 0.48 2.97 0.06 0.27 par:pre; +virevoltante virevoltant adj f s 0.01 0.41 0.01 0.2 +virevoltantes virevoltant adj f p 0.01 0.41 0 0.07 +virevolte virevolter ver 0.48 2.97 0.04 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +virevoltent virevolter ver 0.48 2.97 0.04 0.41 ind:pre:3p; +virevolter virevolter ver 0.48 2.97 0.18 0.41 inf; +virevoltes virevolter ver 0.48 2.97 0.01 0 ind:pre:2s; +virevolté virevolter ver m s 0.48 2.97 0 0.07 par:pas; +virez virer ver 86.3 37.84 6.47 0 imp:pre:2p;ind:pre:2p; +virgilien virgilien adj m s 0 0.41 0 0.14 +virgilienne virgilien adj f s 0 0.41 0 0.27 +virginal virginal adj m s 0.58 2.3 0.23 0.95 +virginale virginal adj f s 0.58 2.3 0.35 0.81 +virginalement virginalement adv 0 0.07 0 0.07 +virginales virginal adj f p 0.58 2.3 0 0.2 +virginaux virginal adj m p 0.58 2.3 0 0.34 +virginie virginie nom m s 0.11 31.28 0.11 31.28 +virginien virginien nom m s 0.07 0.34 0.04 0.07 +virginiens virginien nom m p 0.07 0.34 0.04 0.27 +virginité virginité nom f s 4.26 3.58 4.25 3.51 +virginités virginité nom f p 4.26 3.58 0.01 0.07 +virgule virgule nom f s 4.69 4.73 4.44 3.04 +virgules virgule nom f p 4.69 4.73 0.25 1.69 +viriez virer ver 86.3 37.84 0.07 0 ind:imp:2p; +viril viril adj m s 4.82 10.68 2.81 4.53 +virile viril adj f s 4.82 10.68 1.31 3.72 +virilement virilement adv 0.01 0.61 0.01 0.61 +viriles viril adj f p 4.82 10.68 0.25 1.15 +virilise viriliser ver 0.01 0.34 0 0.07 ind:pre:3s; +viriliser viriliser ver 0.01 0.34 0.01 0.07 inf; +virilisé viriliser ver m s 0.01 0.34 0 0.14 par:pas; +virilisés viriliser ver m p 0.01 0.34 0 0.07 par:pas; +virilité virilité nom f s 2.46 6.69 2.46 6.35 +virilités virilité nom f p 2.46 6.69 0 0.34 +virils viril adj m p 4.82 10.68 0.45 1.28 +viroles virole nom f p 0 0.07 0 0.07 +virolet virolet nom m s 0 0.07 0 0.07 +virologie virologie nom f s 0.28 0 0.28 0 +virologiste virologiste nom s 0.12 0 0.12 0 +virologue virologue nom s 0.14 0 0.13 0 +virologues virologue nom p 0.14 0 0.01 0 +virons virer ver 86.3 37.84 0.33 0 imp:pre:1p;ind:pre:1p; +virtualité virtualité nom f s 0.03 0.41 0.03 0.2 +virtualités virtualité nom f p 0.03 0.41 0 0.2 +virtuel virtuel adj m s 2.78 2.16 1.44 0.81 +virtuelle virtuel adj f s 2.78 2.16 1.17 0.54 +virtuellement virtuellement adv 0.6 1.15 0.6 1.15 +virtuelles virtuel adj f p 2.78 2.16 0.09 0.47 +virtuels virtuel adj m p 2.78 2.16 0.09 0.34 +virtuose virtuose nom s 0.8 2.23 0.52 1.55 +virtuoses virtuose nom p 0.8 2.23 0.28 0.68 +virtuosité virtuosité nom f s 0.2 1.82 0.2 1.82 +virulence virulence nom f s 0.12 0.95 0.12 0.95 +virulent virulent adj m s 0.96 1.62 0.23 0.41 +virulente virulent adj f s 0.96 1.62 0.55 0.81 +virulentes virulent adj f p 0.96 1.62 0.14 0.07 +virulents virulent adj m p 0.96 1.62 0.03 0.34 +virus virus nom m 23.98 6.42 23.98 6.42 +virât virer ver 86.3 37.84 0 0.07 sub:imp:3s; +virèrent virer ver 86.3 37.84 0 0.07 ind:pas:3p; +viré virer ver m s 86.3 37.84 25.59 6.28 par:pas;par:pas;par:pas; +virée virer ver f s 86.3 37.84 6.23 0.61 par:pas; +virées virée nom f p 4.13 3.92 0.7 1.28 +virés virer ver m p 86.3 37.84 3.21 0.81 par:pas; +vis voir ver 4119.43 2401.76 54.62 38.24 ind:pas:1s;ind:pas:2s; +vis_à_vis vis_à_vis pre 0 19.39 0 19.39 +visa visa nom m s 7.39 3.38 6.14 2.5 +visage visage nom m s 141.23 565 125.52 490.54 +visages visage nom m p 141.23 565 15.71 74.46 +visagiste visagiste nom s 0.01 0.14 0.01 0.14 +visai viser ver 38.03 27.57 0 0.2 ind:pas:1s; +visaient viser ver 38.03 27.57 0.48 2.03 ind:imp:3p; +visais viser ver 38.03 27.57 1.1 0.61 ind:imp:1s;ind:imp:2s; +visait viser ver 38.03 27.57 1.65 3.18 ind:imp:3s; +visant viser ver 38.03 27.57 1.23 3.38 par:pre; +visas visa nom m p 7.39 3.38 1.25 0.88 +viscose viscose nom f s 0.03 0.14 0.03 0.07 +viscoses viscose nom f p 0.03 0.14 0 0.07 +viscosité viscosité nom f s 0.06 0.74 0.06 0.68 +viscosités viscosité nom f p 0.06 0.74 0 0.07 +viscère viscère nom m s 0.43 2.97 0.03 0.2 +viscères viscère nom m p 0.43 2.97 0.4 2.77 +viscéral viscéral adj m s 0.37 1.96 0.23 0.61 +viscérale viscéral adj f s 0.37 1.96 0.11 1.22 +viscéralement viscéralement adv 0.07 0 0.07 0 +viscérales viscéral adj f p 0.37 1.96 0.01 0.07 +viscéraux viscéral adj m p 0.37 1.96 0.01 0.07 +vise viser ver 38.03 27.57 13.96 7.5 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visent viser ver 38.03 27.57 1.32 0.88 ind:pre:3p; +viser viser ver 38.03 27.57 5.87 4.05 inf; +visera viser ver 38.03 27.57 0.14 0 ind:fut:3s; +viserai viser ver 38.03 27.57 0.07 0.07 ind:fut:1s; +viseraient viser ver 38.03 27.57 0.01 0.14 cnd:pre:3p; +viserais viser ver 38.03 27.57 0.14 0 cnd:pre:1s;cnd:pre:2s; +viserait viser ver 38.03 27.57 0.02 0.2 cnd:pre:3s; +viseront viser ver 38.03 27.57 0.05 0.07 ind:fut:3p; +vises viser ver 38.03 27.57 1.44 0.27 ind:pre:2s; +viseur viseur nom m s 1.93 1.22 1.48 1.08 +viseurs viseur nom m p 1.93 1.22 0.45 0.14 +visez viser ver 38.03 27.57 5.69 1.22 imp:pre:2p;ind:pre:2p; +vishnouisme vishnouisme nom m s 0.02 0 0.02 0 +visibilité visibilité nom f s 1.27 1.55 1.27 1.55 +visible visible adj s 8.98 30.61 7.41 24.05 +visiblement visiblement adv 6.94 23.99 6.94 23.99 +visibles visible adj p 8.98 30.61 1.57 6.55 +visiez viser ver 38.03 27.57 0.17 0 ind:imp:2p; +visioconférence visioconférence nom f s 0.01 0 0.01 0 +vision vision nom f s 35.48 41.82 25.81 33.78 +visionna visionner ver 1.56 0.88 0.01 0 ind:pas:3s; +visionnage visionnage nom m s 0.16 0.07 0.16 0.07 +visionnaire visionnaire nom m s 1.46 1.15 1.08 0.88 +visionnaires visionnaire nom m p 1.46 1.15 0.38 0.27 +visionnant visionner ver 1.56 0.88 0.04 0 par:pre; +visionne visionner ver 1.56 0.88 0.13 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visionnent visionner ver 1.56 0.88 0.01 0 ind:pre:3p; +visionner visionner ver 1.56 0.88 0.56 0.34 inf; +visionnera visionner ver 1.56 0.88 0.04 0 ind:fut:3s; +visionneront visionner ver 1.56 0.88 0.02 0 ind:fut:3p; +visionneuse visionneur nom f s 0.06 0.14 0.06 0.14 +visionnez visionner ver 1.56 0.88 0.2 0 imp:pre:2p;ind:pre:2p; +visionnons visionner ver 1.56 0.88 0.04 0 imp:pre:1p; +visionné visionner ver m s 1.56 0.88 0.51 0 par:pas; +visionnés visionner ver m p 1.56 0.88 0 0.07 par:pas; +visions vision nom f p 35.48 41.82 9.66 8.04 +visiophone visiophone nom m s 0.01 0 0.01 0 +visita visiter ver 34.92 52.16 0.26 2.16 ind:pas:3s; +visitai visiter ver 34.92 52.16 0 1.01 ind:pas:1s; +visitaient visiter ver 34.92 52.16 0.04 0.95 ind:imp:3p; +visitais visiter ver 34.92 52.16 0.46 0.54 ind:imp:1s;ind:imp:2s; +visitait visiter ver 34.92 52.16 0.33 2.77 ind:imp:3s; +visitandines visitandine nom f p 0 0.07 0 0.07 +visitant visiter ver 34.92 52.16 0.24 1.96 par:pre; +visitation visitation nom f s 0.15 0.95 0.15 0.95 +visite visite nom f s 99.95 99.32 86.34 80.61 +visite_éclair visite_éclair nom f s 0 0.07 0 0.07 +visitent visiter ver 34.92 52.16 0.52 0.54 ind:pre:3p; +visiter visiter ver 34.92 52.16 21.23 23.18 inf; +visitera visiter ver 34.92 52.16 0.05 0 ind:fut:3s; +visiterai visiter ver 34.92 52.16 0.33 0.07 ind:fut:1s; +visiteraient visiter ver 34.92 52.16 0 0.07 cnd:pre:3p; +visiterait visiter ver 34.92 52.16 0.02 0.27 cnd:pre:3s; +visiteras visiter ver 34.92 52.16 0.03 0.14 ind:fut:2s; +visiterez visiter ver 34.92 52.16 0.06 0.34 ind:fut:2p; +visiterons visiter ver 34.92 52.16 0.17 0.27 ind:fut:1p; +visites visite nom f p 99.95 99.32 13.6 18.72 +visiteur visiteur nom m s 12.61 35.54 4.74 15.07 +visiteurs visiteur nom m p 12.61 35.54 7.55 16.76 +visiteuse visiteur nom f s 12.61 35.54 0.16 2.97 +visiteuses visiteur nom f p 12.61 35.54 0.16 0.74 +visitez visiter ver 34.92 52.16 1.14 0.74 imp:pre:2p;ind:pre:2p; +visitiez visiter ver 34.92 52.16 0.13 0.07 ind:imp:2p; +visitions visiter ver 34.92 52.16 0.02 0.61 ind:imp:1p; +visitons visiter ver 34.92 52.16 0.4 0.34 imp:pre:1p;ind:pre:1p; +visitâmes visiter ver 34.92 52.16 0 0.47 ind:pas:1p; +visitât visiter ver 34.92 52.16 0 0.27 sub:imp:3s; +visitèrent visiter ver 34.92 52.16 0.01 0.61 ind:pas:3p; +visité visiter ver m s 34.92 52.16 4.15 6.01 par:pas; +visitée visiter ver f s 34.92 52.16 0.32 1.42 par:pas; +visitées visiter ver f p 34.92 52.16 0.3 0.54 par:pas; +visités visiter ver m p 34.92 52.16 0.27 0.95 par:pas; +visière visière nom f s 0.37 10.14 0.33 9.19 +visières visière nom f p 0.37 10.14 0.04 0.95 +vison vison nom m s 1.65 2.97 1.56 2.3 +visons viser ver 38.03 27.57 0.16 0 imp:pre:1p;ind:pre:1p; +visqueuse visqueux adj f s 1.71 7.43 0.53 2.57 +visqueuses visqueux adj f p 1.71 7.43 0.24 0.74 +visqueux visqueux adj m 1.71 7.43 0.94 4.12 +vissa visser ver 2.9 8.24 0 0.61 ind:pas:3s; +vissaient visser ver 2.9 8.24 0 0.07 ind:imp:3p; +vissait visser ver 2.9 8.24 0.01 0.68 ind:imp:3s; +vissant visser ver 2.9 8.24 0.1 0.34 par:pre; +visse visser ver 2.9 8.24 0.33 0.54 ind:pre:1s;ind:pre:3s; +vissent visser ver 2.9 8.24 0.11 0 ind:pre:3p; +visser visser ver 2.9 8.24 1.45 0.88 inf; +visserait visser ver 2.9 8.24 0 0.07 cnd:pre:3s; +visserie visserie nom f s 0.02 0 0.02 0 +vissez visser ver 2.9 8.24 0.17 0 imp:pre:2p;ind:pre:2p; +vissèrent visser ver 2.9 8.24 0 0.07 ind:pas:3p; +vissé visser ver m s 2.9 8.24 0.42 2.84 par:pas; +vissée visser ver f s 2.9 8.24 0.17 0.81 par:pas; +vissées vissé adj f p 0.11 0.2 0.01 0.07 +vissés visser ver m p 2.9 8.24 0.14 0.74 par:pas; +vista vista nom f s 0.86 0.14 0.86 0.14 +visualisaient visualiser ver 1.41 0.34 0 0.07 ind:imp:3p; +visualisais visualiser ver 1.41 0.34 0.05 0 ind:imp:1s;ind:imp:2s; +visualisant visualiser ver 1.41 0.34 0.01 0 par:pre; +visualisation visualisation nom f s 0.21 0 0.21 0 +visualise visualiser ver 1.41 0.34 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visualiser visualiser ver 1.41 0.34 0.48 0 inf; +visualiserai visualiser ver 1.41 0.34 0.01 0 ind:fut:1s; +visualises visualiser ver 1.41 0.34 0.29 0.07 ind:pre:2s; +visualisez visualiser ver 1.41 0.34 0.25 0 imp:pre:2p;ind:pre:2p; +visualisé visualiser ver m s 1.41 0.34 0.04 0 par:pas; +visualisée visualiser ver f s 1.41 0.34 0 0.07 par:pas; +visualisées visualiser ver f p 1.41 0.34 0.01 0 par:pas; +visualisés visualiser ver m p 1.41 0.34 0.01 0 par:pas; +visuel visuel adj m s 6.71 3.24 4.38 1.96 +visuelle visuel adj f s 6.71 3.24 1.34 0.68 +visuellement visuellement adv 0.32 0.14 0.32 0.14 +visuelles visuel adj f p 6.71 3.24 0.26 0.2 +visuels visuel adj m p 6.71 3.24 0.73 0.41 +visé viser ver m s 38.03 27.57 3.7 2.23 par:pas; +visée visée nom f s 0.93 2.57 0.73 1.49 +visées visée nom f p 0.93 2.57 0.2 1.08 +visés visé adj m p 2.05 1.62 0.3 0.34 +vit vivre ver 510.19 460.34 74.42 39.8 ind:pre:3s; +vital vital adj m s 12.24 9.8 4.17 4.86 +vitale vital adj f s 12.24 9.8 4.11 3.11 +vitales vital adj f p 12.24 9.8 1.13 0.95 +vitaliser vitaliser ver 0.01 0 0.01 0 inf; +vitalité vitalité nom f s 1.08 6.49 1.08 6.49 +vitamine vitamine nom f s 5.77 2.3 1.31 0.34 +vitaminer vitaminer ver 0 0.07 0 0.07 inf; +vitamines vitamine nom f p 5.77 2.3 4.46 1.96 +vitaminé vitaminé adj m s 0.12 0.2 0.03 0 +vitaminée vitaminé adj f s 0.12 0.2 0.07 0.14 +vitaminées vitaminé adj f p 0.12 0.2 0.02 0 +vitaminés vitaminé adj m p 0.12 0.2 0 0.07 +vitaux vital adj m p 12.24 9.8 2.84 0.88 +vite vite adv_sup 491.64 351.89 491.64 351.89 +vitellin vitellin adj m s 0.01 0 0.01 0 +vitement vitement adv 0 0.07 0 0.07 +vitesse vitesse nom f s 40.12 57.84 37.89 54.59 +vitesses vitesse nom f p 40.12 57.84 2.23 3.24 +viticole viticole adj s 0.04 0 0.04 0 +viticulteur viticulteur nom m s 0.6 0.68 0.05 0.34 +viticulteurs viticulteur nom m p 0.6 0.68 0.16 0.34 +viticultrice viticulteur nom f s 0.6 0.68 0.4 0 +viticulture viticulture nom f s 0.03 0 0.03 0 +vitiligo vitiligo nom m s 0.01 0 0.01 0 +vitrage vitrage nom m s 0.24 0.81 0.14 0.54 +vitrages vitrage nom m p 0.24 0.81 0.1 0.27 +vitrail vitrail nom m s 1.77 7.77 1.38 3.58 +vitrauphanie vitrauphanie nom f s 0 0.07 0 0.07 +vitraux vitrail nom m p 1.77 7.77 0.4 4.19 +vitre vitre nom f s 16.35 76.22 10.21 41.28 +vitres vitre nom f p 16.35 76.22 6.14 34.93 +vitreuse vitreux adj f s 0.34 4.53 0 0.47 +vitreuses vitreux adj f p 0.34 4.53 0.01 0.14 +vitreux vitreux adj m 0.34 4.53 0.33 3.92 +vitrier vitrier nom m s 0.2 0.74 0.17 0.68 +vitriers vitrier nom m p 0.2 0.74 0.03 0.07 +vitrifia vitrifier ver 0.05 1.69 0 0.07 ind:pas:3s; +vitrifie vitrifier ver 0.05 1.69 0.01 0.07 ind:pre:1s;ind:pre:3s; +vitrifient vitrifier ver 0.05 1.69 0 0.07 ind:pre:3p; +vitrifier vitrifier ver 0.05 1.69 0.01 0.14 inf; +vitrifié vitrifier ver m s 0.05 1.69 0.01 0.88 par:pas; +vitrifiée vitrifier ver f s 0.05 1.69 0.01 0.2 par:pas; +vitrifiées vitrifier ver f p 0.05 1.69 0 0.07 par:pas; +vitrifiés vitrifier ver m p 0.05 1.69 0.01 0.2 par:pas; +vitrine vitrine nom f s 6.84 33.99 5.09 20.68 +vitrines vitrine nom f p 6.84 33.99 1.75 13.31 +vitriol vitriol nom m s 0.43 0.74 0.43 0.68 +vitrioler vitrioler ver 0.01 0.2 0.01 0 inf; +vitrioleurs vitrioleur nom m p 0 0.07 0 0.07 +vitriolique vitriolique adj f s 0 0.07 0 0.07 +vitriols vitriol nom m p 0.43 0.74 0 0.07 +vitriolé vitrioler ver m s 0.01 0.2 0 0.2 par:pas; +vitrophanie vitrophanie nom f s 0 0.07 0 0.07 +vitré vitré adj m s 0.57 15.61 0.06 1.62 +vitrée vitré adj f s 0.57 15.61 0.3 11.22 +vitrées vitré adj f p 0.57 15.61 0.21 2.36 +vitrés vitré adj m p 0.57 15.61 0 0.41 +vits vit nom m p 0 0.14 0 0.14 +vitupère vitupérer ver 0.02 1.08 0 0.07 imp:pre:2s; +vitupéraient vitupérer ver 0.02 1.08 0 0.07 ind:imp:3p; +vitupérait vitupérer ver 0.02 1.08 0 0.41 ind:imp:3s; +vitupérant vitupérer ver 0.02 1.08 0 0.27 par:pre; +vitupérations vitupération nom f p 0 0.07 0 0.07 +vitupérer vitupérer ver 0.02 1.08 0.02 0.27 inf; +vivable vivable adj s 0.41 1.35 0.4 1.08 +vivables vivable adj p 0.41 1.35 0.01 0.27 +vivace vivace adj s 0.52 4.66 0.35 3.58 +vivaces vivace adj p 0.52 4.66 0.17 1.08 +vivacité vivacité nom f s 0.74 8.58 0.74 8.51 +vivacités vivacité nom f p 0.74 8.58 0 0.07 +vivaient vivre ver 510.19 460.34 6.18 15.74 ind:imp:3p; +vivais vivre ver 510.19 460.34 8.91 10.81 ind:imp:1s;ind:imp:2s; +vivait vivre ver 510.19 460.34 20.5 53.18 ind:imp:3s; +vivandier vivandier nom m s 0.11 0.34 0.1 0 +vivandiers vivandier nom m p 0.11 0.34 0 0.14 +vivandière vivandier nom f s 0.11 0.34 0 0.14 +vivandières vivandier nom f p 0.11 0.34 0.01 0.07 +vivant vivant adj m s 124.97 92.23 76.38 41.15 +vivante vivant adj f s 124.97 92.23 28.12 29.32 +vivantes vivant adj f p 124.97 92.23 3.31 6.35 +vivants vivant adj m p 124.97 92.23 17.16 15.41 +vivarium vivarium nom m s 0.03 0.41 0.03 0.41 +vivat vivat nom_sup m s 0.84 0 0.84 0 +vivats vivats nom m p 0.06 1.82 0.06 1.82 +vive vive ono 35.95 12.09 35.95 12.09 +vivement vivement adv 5.85 29.86 5.85 29.86 +vivent vivre ver 510.19 460.34 30.5 19.39 ind:pre:3p;sub:pre:3p; +vives vif adj f p 22.95 95.07 1.71 12.7 +viveur viveur nom m s 0.03 0.41 0.03 0.34 +viveurs viveur nom m p 0.03 0.41 0 0.07 +vivez vivre ver 510.19 460.34 15.09 2.84 imp:pre:2p;ind:pre:2p; +vivier vivier nom m s 0.1 1.42 0.07 1.15 +viviers vivier nom m p 0.1 1.42 0.02 0.27 +viviez vivre ver 510.19 460.34 1.94 0.74 ind:imp:2p; +vivifiait vivifier ver 0.22 1.15 0.02 0.14 ind:imp:3s; +vivifiant vivifiant adj m s 0.58 1.28 0.29 0.81 +vivifiante vivifiant adj f s 0.58 1.28 0.17 0.47 +vivifiantes vivifiant adj f p 0.58 1.28 0.1 0 +vivifiants vivifiant adj m p 0.58 1.28 0.01 0 +vivification vivification nom f s 0.01 0 0.01 0 +vivifie vivifier ver 0.22 1.15 0.01 0.07 ind:pre:3s; +vivifier vivifier ver 0.22 1.15 0.01 0.07 inf; +vivifié vivifier ver m s 0.22 1.15 0.11 0.14 par:pas; +vivifiée vivifier ver f s 0.22 1.15 0.01 0.34 par:pas; +vivifiées vivifier ver f p 0.22 1.15 0.02 0.14 par:pas; +vivions vivre ver 510.19 460.34 2.69 7.64 ind:imp:1p; +vivisecteur vivisecteur nom m s 0.04 0 0.04 0 +vivisection vivisection nom f s 0.34 0.41 0.34 0.14 +vivisections vivisection nom f p 0.34 0.41 0 0.27 +vivons vivre ver 510.19 460.34 12.4 7.64 imp:pre:1p;ind:pre:1p; +vivota vivoter ver 0.47 1.28 0 0.07 ind:pas:3s; +vivotaient vivoter ver 0.47 1.28 0 0.07 ind:imp:3p; +vivotais vivoter ver 0.47 1.28 0.01 0.07 ind:imp:1s; +vivotait vivoter ver 0.47 1.28 0.14 0.47 ind:imp:3s; +vivotant vivoter ver 0.47 1.28 0 0.14 par:pre; +vivote vivoter ver 0.47 1.28 0.27 0.2 ind:pre:1s;ind:pre:3s; +vivotent vivoter ver 0.47 1.28 0 0.07 ind:pre:3p; +vivoter vivoter ver 0.47 1.28 0.02 0.14 inf; +vivotèrent vivoter ver 0.47 1.28 0 0.07 ind:pas:3p; +vivoté vivoter ver m s 0.47 1.28 0.03 0 par:pas; +vivra vivre ver 510.19 460.34 7.86 2.64 ind:fut:3s; +vivrai vivre ver 510.19 460.34 5.25 1.62 ind:fut:1s; +vivraient vivre ver 510.19 460.34 0.65 0.68 cnd:pre:3p; +vivrais vivre ver 510.19 460.34 1.58 1.49 cnd:pre:1s;cnd:pre:2s; +vivrait vivre ver 510.19 460.34 2.56 3.38 cnd:pre:3s; +vivras vivre ver 510.19 460.34 3.84 0.27 ind:fut:2s; +vivre vivre ver 510.19 460.34 218.52 186.82 ind:imp:3s;inf; +vivres vivre nom m p 12.61 10.34 7.37 6.89 +vivrez vivre ver 510.19 460.34 3.24 0.41 ind:fut:2p; +vivriers vivrier adj m p 0 0.07 0 0.07 +vivriez vivre ver 510.19 460.34 0.05 0.07 cnd:pre:2p; +vivrions vivre ver 510.19 460.34 0.32 0 cnd:pre:1p; +vivrons vivre ver 510.19 460.34 3.28 1.42 ind:fut:1p; +vivront vivre ver 510.19 460.34 1.22 0.41 ind:fut:3p; +vizir vizir nom m s 0.15 7.97 0.15 7.03 +vizirs vizir nom m p 0.15 7.97 0 0.95 +vlan vlan ono 1.05 3.18 1.05 3.18 +vlouf vlouf ono 0 0.54 0 0.54 +vocable vocable nom m s 0.22 2.16 0.02 1.08 +vocables vocable nom m p 0.22 2.16 0.2 1.08 +vocabulaire vocabulaire nom m s 3.02 10.41 3.02 10.27 +vocabulaires vocabulaire nom m p 3.02 10.41 0 0.14 +vocal vocal adj m s 4.63 3.72 1.13 0.68 +vocale vocal adj f s 4.63 3.72 2.45 0.68 +vocalement vocalement adv 0.01 0.07 0.01 0.07 +vocales vocal adj f p 4.63 3.72 0.84 2.23 +vocalique vocalique adj f s 0 0.07 0 0.07 +vocalisait vocaliser ver 0.02 0.34 0 0.14 ind:imp:3s; +vocalisant vocaliser ver 0.02 0.34 0.01 0.07 par:pre; +vocalisation vocalisation nom f s 0.02 0.27 0.02 0.14 +vocalisations vocalisation nom f p 0.02 0.27 0 0.14 +vocalise vocalise nom f s 0.05 1.28 0 0.27 +vocaliser vocaliser ver 0.02 0.34 0.01 0 inf; +vocalises vocalise nom f p 0.05 1.28 0.05 1.01 +vocaliste vocaliste nom s 0.02 0.07 0.02 0.07 +vocatif vocatif nom m s 0.01 0.14 0.01 0 +vocatifs vocatif nom m p 0.01 0.14 0 0.14 +vocation vocation nom f s 9.26 22.84 8.87 21.82 +vocations vocation nom f p 9.26 22.84 0.39 1.01 +vocaux vocal adj m p 4.63 3.72 0.21 0.14 +vocifère vociférer ver 0.49 3.92 0.16 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vocifèrent vociférer ver 0.49 3.92 0 0.14 ind:pre:3p; +vociféra vociférer ver 0.49 3.92 0 0.54 ind:pas:3s; +vociférai vociférer ver 0.49 3.92 0 0.07 ind:pas:1s; +vociféraient vociférer ver 0.49 3.92 0 0.14 ind:imp:3p; +vociférais vociférer ver 0.49 3.92 0 0.14 ind:imp:1s; +vociférait vociférer ver 0.49 3.92 0.01 0.68 ind:imp:3s; +vociférant vociférant adj m s 0.14 0.95 0.14 0.34 +vociférante vociférant adj f s 0.14 0.95 0 0.14 +vociférantes vociférant adj f p 0.14 0.95 0 0.34 +vociférants vociférant adj m p 0.14 0.95 0 0.14 +vocifération vocifération nom f s 0.02 2.03 0 0.14 +vociférations vocifération nom f p 0.02 2.03 0.02 1.89 +vociférer vociférer ver 0.49 3.92 0.29 0.54 inf; +vociférés vociférer ver m p 0.49 3.92 0 0.07 par:pas; +vocodeur vocodeur nom m s 0.01 0 0.01 0 +vodka vodka nom f s 17.07 8.31 16.93 8.24 +vodkas vodka nom f p 17.07 8.31 0.14 0.07 +vodou vodou nom m s 0.04 0 0.03 0 +vodous vodou nom m p 0.04 0 0.01 0 +voeu voeu nom m s 28.58 21.28 10.72 10.61 +voeux voeu nom m p 28.58 21.28 17.86 10.68 +vogua voguer ver 2.69 6.35 0.14 0.07 ind:pas:3s; +voguaient voguer ver 2.69 6.35 0 0.14 ind:imp:3p; +voguais voguer ver 2.69 6.35 0.02 0 ind:imp:1s;ind:imp:2s; +voguait voguer ver 2.69 6.35 0.28 1.35 ind:imp:3s; +voguant voguer ver 2.69 6.35 0.13 0.54 par:pre; +vogue vogue nom f s 2.43 3.58 2.43 3.51 +voguent voguer ver 2.69 6.35 0.26 0.61 ind:pre:3p;sub:pre:3p; +voguer voguer ver 2.69 6.35 1.18 1.15 inf; +voguera voguer ver 2.69 6.35 0.03 0.07 ind:fut:3s; +voguerai voguer ver 2.69 6.35 0.04 0 ind:fut:1s; +voguerait voguer ver 2.69 6.35 0 0.07 cnd:pre:3s; +voguerions voguer ver 2.69 6.35 0 0.07 cnd:pre:1p; +voguerons voguer ver 2.69 6.35 0.12 0.07 ind:fut:1p; +vogues voguer ver 2.69 6.35 0.01 0.07 ind:pre:2s; +voguions voguer ver 2.69 6.35 0.01 0.41 ind:imp:1p; +voguons voguer ver 2.69 6.35 0.09 0.14 imp:pre:1p;ind:pre:1p; +vogué voguer ver m s 2.69 6.35 0.02 0.34 par:pas; +voici voici pre 277.59 97.3 277.59 97.3 +voie voie nom f s 56.06 71.01 47.01 53.58 +voient voir ver 4119.43 2401.76 26.16 20.2 ind:pre:3p;sub:pre:3p; +voies voie nom f p 56.06 71.01 9.05 17.43 +voila voiler ver 39.78 14.73 35.54 1.35 ind:pas:3s; +voilage voilage nom m s 0 0.74 0 0.27 +voilages voilage nom m p 0 0.74 0 0.47 +voilaient voiler ver 39.78 14.73 0 0.88 ind:imp:3p; +voilais voiler ver 39.78 14.73 0.02 0.07 ind:imp:1s; +voilait voiler ver 39.78 14.73 0.02 1.69 ind:imp:3s; +voilant voiler ver 39.78 14.73 0 0.74 par:pre; +voile voile nom s 20.51 48.31 15.49 30.27 +voilent voiler ver 39.78 14.73 0.13 0.47 ind:pre:3p; +voiler voiler ver 39.78 14.73 0.82 1.42 ind:pre:2p;inf; +voilera voiler ver 39.78 14.73 0.14 0 ind:fut:3s; +voileront voiler ver 39.78 14.73 0.01 0 ind:fut:3p; +voiles voile nom p 20.51 48.31 5.02 18.04 +voilette voilette nom f s 0.06 2.97 0.05 2.57 +voilettes voilette nom f p 0.06 2.97 0.01 0.41 +voilez voiler ver 39.78 14.73 0.08 0.07 imp:pre:2p;ind:pre:2p; +voilier voilier nom m s 1.94 4.86 1.67 2.77 +voiliers voilier nom m p 1.94 4.86 0.27 2.09 +voilons voiler ver 39.78 14.73 0.06 0.14 imp:pre:1p;ind:pre:1p; +voilure voilure nom f s 0.17 0.74 0.16 0.47 +voilures voilure nom f p 0.17 0.74 0.01 0.27 +voilà voilà pre 726.44 329.12 726.44 329.12 +voilèrent voiler ver 39.78 14.73 0 0.07 ind:pas:3p; +voilé voiler ver m s 39.78 14.73 0.3 2.09 par:pas; +voilée voilé adj f s 1.5 6.08 0.9 2.3 +voilées voilé adj f p 1.5 6.08 0.1 1.28 +voilés voilé adj m p 1.5 6.08 0.31 0.95 +voir voir ver 4119.43 2401.76 1401.1 716.55 inf;; +voire voire adv_sup 7.42 16.89 7.42 16.89 +voirie voirie nom f s 0.77 1.22 0.77 1.22 +vois voir ver 4119.43 2401.76 689.75 253.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +voisin voisin nom m s 56 81.82 19.55 28.85 +voisinage voisinage nom m s 5.17 10.41 5.16 10.34 +voisinages voisinage nom m p 5.17 10.41 0.01 0.07 +voisinaient voisiner ver 0.04 3.31 0 1.08 ind:imp:3p; +voisinait voisiner ver 0.04 3.31 0 0.47 ind:imp:3s; +voisinant voisiner ver 0.04 3.31 0 0.41 par:pre; +voisine voisin nom f s 56 81.82 10.92 15.07 +voisinent voisiner ver 0.04 3.31 0.01 0.61 ind:pre:3p; +voisiner voisiner ver 0.04 3.31 0.01 0.34 inf; +voisines voisin adj f p 14.31 49.73 1.67 5.54 +voisins voisin nom m p 56 81.82 24.33 33.31 +voisiné voisiner ver m s 0.04 3.31 0.01 0 par:pas; +voit voir ver 4119.43 2401.76 181.98 158.78 ind:pre:3s; +voituraient voiturer ver 2.04 0.88 0 0.07 ind:imp:3p; +voiturait voiturer ver 2.04 0.88 0 0.07 ind:imp:3s; +voiture voiture nom s 429.4 283.11 388.87 221.15 +voiture_balai voiture_balai nom f s 0.23 0.07 0.23 0 +voiture_bar voiture_bar nom f s 0.01 0 0.01 0 +voiture_lit voiture_lit nom f s 0.01 0 0.01 0 +voiture_restaurant voiture_restaurant nom f s 0.05 0 0.05 0 +voiturer voiturer ver 2.04 0.88 0.02 0.14 inf; +voitureront voiturer ver 2.04 0.88 0 0.07 ind:fut:3p; +voitures voiture nom f p 429.4 283.11 40.53 61.96 +voiture_balai voiture_balai nom f p 0.23 0.07 0 0.07 +voiturette voiturette nom f s 0.38 0.74 0.35 0.34 +voiturettes voiturette nom f p 0.38 0.74 0.02 0.41 +voiturier voiturier nom m s 0.86 0.47 0.7 0.47 +voituriers voiturier nom m p 0.86 0.47 0.16 0 +voiturin voiturin nom m s 0 0.07 0 0.07 +voituré voiturer ver m s 2.04 0.88 0 0.07 par:pas; +voix voix nom f 130.83 612.7 130.83 612.7 +voix_off voix_off nom f 0.04 0 0.04 0 +vol vol nom m s 82.42 48.31 74.14 41.22 +vol_au_vent vol_au_vent nom m 0.02 0.14 0.02 0.14 +vola voler ver 238.82 88.65 0.93 1.96 ind:pas:3s; +volage volage adj s 1.79 1.62 1.69 1.62 +volages volage adj p 1.79 1.62 0.1 0 +volai voler ver 238.82 88.65 0.14 0.27 ind:pas:1s; +volaient voler ver 238.82 88.65 1.14 5.2 ind:imp:3p; +volaille volaille nom f s 2.61 6.49 2.31 3.45 +volailler volailler nom m s 0.02 0.2 0.02 0.07 +volaillers volailler nom m p 0.02 0.2 0 0.14 +volailles volaille nom f p 2.61 6.49 0.3 3.04 +volais voler ver 238.82 88.65 2.02 1.08 ind:imp:1s;ind:imp:2s; +volait voler ver 238.82 88.65 4.45 5.95 ind:imp:3s; +volant volant nom m s 19.65 37.3 19.23 33.51 +volante volant adj f s 8.78 9.66 2.81 1.62 +volantes volant adj f p 8.78 9.66 1.24 1.96 +volants volant adj m p 8.78 9.66 2.47 2.03 +volanté volanter ver m s 0.05 0.14 0 0.07 par:pas; +volapük volapük nom m s 0 0.07 0 0.07 +volassent voler ver 238.82 88.65 0 0.07 sub:imp:3p; +volatil volatil adj m s 0.64 1.49 0.06 0.34 +volatile volatil adj f s 0.64 1.49 0.49 0.61 +volatiles volatile nom m p 0.47 2.57 0.3 1.22 +volatilisa volatiliser ver 2 2.97 0 0.14 ind:pas:3s; +volatilisaient volatiliser ver 2 2.97 0 0.14 ind:imp:3p; +volatilisait volatiliser ver 2 2.97 0.02 0.14 ind:imp:3s; +volatilisant volatiliser ver 2 2.97 0 0.07 par:pre; +volatilisation volatilisation nom f s 0.01 0 0.01 0 +volatilise volatiliser ver 2 2.97 0.07 0.14 imp:pre:2s;ind:pre:3s; +volatilisent volatiliser ver 2 2.97 0.05 0.14 ind:pre:3p; +volatiliser volatiliser ver 2 2.97 0.13 0.27 inf; +volatilisé volatiliser ver m s 2 2.97 0.95 0.68 par:pas; +volatilisée volatiliser ver f s 2 2.97 0.56 0.54 par:pas; +volatilisées volatiliser ver f p 2 2.97 0.02 0.2 par:pas; +volatilisés volatiliser ver m p 2 2.97 0.2 0.54 par:pas; +volatilité volatilité nom f s 0.04 0 0.04 0 +volatils volatil adj m p 0.64 1.49 0.01 0.2 +volcan volcan nom m s 5.5 5.34 4.52 3.85 +volcanique volcanique adj s 0.91 1.69 0.69 1.15 +volcaniques volcanique adj p 0.91 1.69 0.22 0.54 +volcanologique volcanologique adj m s 0.01 0 0.01 0 +volcanologue volcanologue nom s 0.02 0 0.02 0 +volcans volcan nom m p 5.5 5.34 0.98 1.49 +vole voler ver 238.82 88.65 35.31 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +volent voler ver 238.82 88.65 9.53 5.61 ind:pre:3p; +voler voler ver 238.82 88.65 67.88 26.01 inf; +volera voler ver 238.82 88.65 2.68 0.47 ind:fut:3s; +volerai voler ver 238.82 88.65 1 0.07 ind:fut:1s; +voleraient voler ver 238.82 88.65 0.07 0.07 cnd:pre:3p; +volerais voler ver 238.82 88.65 0.44 0.07 cnd:pre:1s;cnd:pre:2s; +volerait voler ver 238.82 88.65 0.94 0.68 cnd:pre:3s; +voleras voler ver 238.82 88.65 0.57 0 ind:fut:2s; +volerez voler ver 238.82 88.65 0.25 0.07 ind:fut:2p; +volerie volerie nom f s 0.01 0 0.01 0 +voleriez voler ver 238.82 88.65 0.05 0 cnd:pre:2p; +volerons voler ver 238.82 88.65 0.5 0 ind:fut:1p; +voleront voler ver 238.82 88.65 0.89 0.34 ind:fut:3p; +voles voler ver 238.82 88.65 4.82 0.68 ind:pre:2s;sub:pre:2s; +volet volet nom m s 5.93 41.55 2.21 6.89 +voleta voleter ver 0.45 7.23 0 0.2 ind:pas:3s; +voletaient voleter ver 0.45 7.23 0.01 1.82 ind:imp:3p; +voletait voleter ver 0.45 7.23 0 1.22 ind:imp:3s; +voletant voleter ver 0.45 7.23 0.03 1.42 par:pre; +voletante voletant adj f s 0.01 0.81 0 0.27 +voletantes voletant adj f p 0.01 0.81 0 0.2 +voleter voleter ver 0.45 7.23 0.14 1.35 inf; +voletez voleter ver 0.45 7.23 0.02 0 imp:pre:2p; +volets volet nom m p 5.93 41.55 3.72 34.66 +volette voleter ver 0.45 7.23 0.14 0.54 ind:pre:1s;ind:pre:3s; +volettent voleter ver 0.45 7.23 0.1 0.68 ind:pre:3p; +voleur voleur nom m s 68.18 22.7 41.39 11.15 +voleurs voleur nom m p 68.18 22.7 21.91 9.86 +voleuse voleur nom f s 68.18 22.7 4.71 1.55 +voleuses voleur nom f p 68.18 22.7 0.17 0.14 +volez voler ver 238.82 88.65 3.59 0.27 imp:pre:2p;ind:pre:2p; +voliez voler ver 238.82 88.65 0.65 0.07 ind:imp:2p; +volige volige nom f s 0.01 0.54 0 0.14 +voliges volige nom f p 0.01 0.54 0.01 0.41 +volions voler ver 238.82 88.65 0.19 0.14 ind:imp:1p; +volition volition nom f s 0 0.27 0 0.14 +volitions volition nom f p 0 0.27 0 0.14 +volière volière nom f s 0.36 3.24 0.34 2.97 +volières volière nom f p 0.36 3.24 0.02 0.27 +volley volley nom m s 1.51 0.07 1.51 0.07 +volley_ball volley_ball nom m s 0.25 0.68 0.25 0.68 +volleyeur volleyeur nom m s 0.14 0.14 0.14 0.07 +volleyeurs volleyeur nom m p 0.14 0.14 0 0.07 +volons voler ver 238.82 88.65 0.79 0.2 imp:pre:1p;ind:pre:1p; +volontaire volontaire adj s 14.48 13.99 11.54 10.74 +volontairement volontairement adv 3.59 9.12 3.59 9.12 +volontaires volontaire nom p 8.03 6.28 5.05 5.27 +volontariat volontariat nom m s 0.6 0.2 0.6 0.2 +volontarisme volontarisme nom m s 0 0.14 0 0.14 +volontariste volontariste adj s 0 0.2 0 0.14 +volontaristes volontariste adj p 0 0.2 0 0.07 +volontiers volontiers adv_sup 19.41 40.61 19.41 40.61 +volonté volonté nom f s 47.08 74.93 44.41 70.54 +volontés volonté nom f p 47.08 74.93 2.67 4.39 +vols vol nom m p 82.42 48.31 8.28 7.09 +volt volt nom m s 2 0.27 0.4 0 +voltage voltage nom m s 0.41 0.34 0.41 0.34 +voltaient volter ver 0.01 0.14 0 0.07 ind:imp:3p; +voltaire voltaire nom m s 0 0.14 0 0.07 +voltaires voltaire nom m p 0 0.14 0 0.07 +voltairien voltairien adj m s 0.01 0 0.01 0 +voltaïque voltaïque adj f s 0.01 0 0.01 0 +volte volte nom f s 0.67 1.35 0.67 0.74 +volte_face volte_face nom f 0.26 3.31 0.26 3.31 +volter volter ver 0.01 0.14 0.01 0.07 inf; +voltes volte nom f p 0.67 1.35 0 0.61 +voltige voltige nom f s 0.45 2.09 0.45 1.96 +voltigea voltiger ver 1.4 4.46 0 0.27 ind:pas:3s; +voltigeaient voltiger ver 1.4 4.46 0 1.28 ind:imp:3p; +voltigeait voltiger ver 1.4 4.46 0 0.07 ind:imp:3s; +voltigeant voltiger ver 1.4 4.46 0.14 0.68 par:pre; +voltigement voltigement nom m s 0 0.07 0 0.07 +voltigent voltiger ver 1.4 4.46 0.81 0.47 ind:pre:3p; +voltiger voltiger ver 1.4 4.46 0.21 0.95 inf; +voltiges voltige nom f p 0.45 2.09 0 0.14 +voltigeur voltigeur nom m s 0.15 5 0.14 2.09 +voltigeurs voltigeur nom m p 0.15 5 0.01 2.91 +voltigèrent voltiger ver 1.4 4.46 0 0.34 ind:pas:3p; +voltigé voltiger ver m s 1.4 4.46 0.03 0.07 par:pas; +voltmètre voltmètre nom m s 0.23 0.07 0.23 0.07 +volts volt nom m p 2 0.27 1.6 0.27 +volubile volubile adj s 0.07 4.73 0.05 3.72 +volubilement volubilement adv 0 0.74 0 0.74 +volubiles volubile adj p 0.07 4.73 0.02 1.01 +volubilis volubilis nom m 0 1.35 0 1.35 +volubilité volubilité nom f s 0 1.55 0 1.55 +volume volume nom m s 6.48 27.84 5.45 16.35 +volumes volume nom m p 6.48 27.84 1.03 11.49 +volumineuse volumineux adj f s 0.37 5.41 0.04 1.55 +volumineuses volumineux adj f p 0.37 5.41 0.1 0.47 +volumineux volumineux adj m 0.37 5.41 0.22 3.38 +volumique volumique adj f s 0.01 0 0.01 0 +volumétrique volumétrique adj s 0.02 0 0.02 0 +voluptueuse voluptueux adj f s 0.62 7.36 0.41 1.96 +voluptueusement voluptueusement adv 0.01 3.11 0.01 3.11 +voluptueuses voluptueux adj f p 0.62 7.36 0.11 0.95 +voluptueux voluptueux adj m 0.62 7.36 0.1 4.46 +volupté volupté nom f s 3.27 11.42 3.27 10.2 +voluptés volupté nom f p 3.27 11.42 0 1.22 +volute volute nom f s 0.03 6.69 0 0.41 +volutes volute nom f p 0.03 6.69 0.03 6.28 +volvaires volvaire nom f p 0 0.07 0 0.07 +volve volve nom f s 0.01 0.07 0.01 0.07 +volât voler ver 238.82 88.65 0 0.14 sub:imp:3s; +volèrent voler ver 238.82 88.65 0.04 0.68 ind:pas:3p; +volé voler ver m s 238.82 88.65 79.01 19.26 par:pas; +volée voler ver f s 238.82 88.65 10.14 2.23 par:pas; +volées voler ver f p 238.82 88.65 2.24 0.81 par:pas; +volémie volémie nom f s 0.01 0 0.01 0 +volés voler ver m p 238.82 88.65 4.93 2.09 par:pas; +vomi vomir ver m s 26.12 23.31 5.19 2.7 par:pas; +vomie vomir ver f s 26.12 23.31 0.24 0.27 par:pas; +vomies vomir ver f p 26.12 23.31 0.14 0.14 par:pas; +vomique vomique adj m s 0 0.07 0 0.07 +vomir vomir ver 26.12 23.31 13.75 11.62 inf; +vomira vomir ver 26.12 23.31 0.09 0.14 ind:fut:3s; +vomirai vomir ver 26.12 23.31 0.05 0 ind:fut:1s; +vomirais vomir ver 26.12 23.31 0.18 0.07 cnd:pre:1s; +vomirait vomir ver 26.12 23.31 0.03 0.14 cnd:pre:3s; +vomiras vomir ver 26.12 23.31 0.03 0.07 ind:fut:2s; +vomirent vomir ver 26.12 23.31 0 0.07 ind:pas:3p; +vomirez vomir ver 26.12 23.31 0.04 0 ind:fut:2p; +vomiront vomir ver 26.12 23.31 0.01 0.07 ind:fut:3p; +vomis vomir ver m p 26.12 23.31 1.94 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +vomissaient vomir ver 26.12 23.31 0.28 0.41 ind:imp:3p; +vomissais vomir ver 26.12 23.31 0.06 0.27 ind:imp:1s;ind:imp:2s; +vomissait vomir ver 26.12 23.31 0.33 2.3 ind:imp:3s; +vomissant vomir ver 26.12 23.31 0.11 0.81 par:pre; +vomisse vomir ver 26.12 23.31 0.43 0.34 sub:pre:1s;sub:pre:3s; +vomissement vomissement nom m s 1.31 1.55 0.44 0.61 +vomissements vomissement nom m p 1.31 1.55 0.88 0.95 +vomissent vomir ver 26.12 23.31 0.61 0.2 ind:pre:3p; +vomisseur vomisseur adj m s 0.03 0.07 0.03 0.07 +vomissez vomir ver 26.12 23.31 0.16 0.07 imp:pre:2p;ind:pre:2p; +vomissions vomir ver 26.12 23.31 0 0.14 ind:imp:1p; +vomissure vomissure nom f s 0.53 1.15 0.2 0.34 +vomissures vomissure nom f p 0.53 1.15 0.33 0.81 +vomit vomir ver 26.12 23.31 2.45 2.64 ind:pre:3s;ind:pas:3s; +vomitif vomitif adj m s 0.05 0.27 0.05 0.07 +vomitifs vomitif adj m p 0.05 0.27 0 0.07 +vomitifs vomitif nom m p 0.04 0.27 0 0.07 +vomitives vomitif adj f p 0.05 0.27 0 0.14 +vomito_negro vomito_negro nom m s 0.01 0 0.01 0 +vomitoire vomitoire nom m s 0.03 0.07 0.02 0 +vomitoires vomitoire nom m p 0.03 0.07 0.01 0.07 +vont aller ver 9992.77 2854.93 281.35 116.62 ind:pre:3p; +vopo vopo nom m s 0 0.07 0 0.07 +vorace vorace adj s 0.95 4.19 0.56 2.64 +voracement voracement adv 0.03 0.81 0.03 0.81 +voraces vorace adj p 0.95 4.19 0.38 1.55 +voracité voracité nom f s 0.07 1.69 0.07 1.69 +vortex vortex nom m 6.14 0.14 6.14 0.14 +vos vos adj_pos 649.07 180.27 649.07 180.27 +vosgien vosgien nom m s 0 0.14 0 0.14 +vosgienne vosgien adj f s 0 0.14 0 0.14 +vota voter ver 29.61 8.51 0 0.27 ind:pas:3s; +votaient voter ver 29.61 8.51 0.1 0.41 ind:imp:3p; +votais voter ver 29.61 8.51 0.02 0 ind:imp:1s; +votait voter ver 29.61 8.51 0.28 0.34 ind:imp:3s; +votant voter ver 29.61 8.51 0.2 0.07 par:pre; +votants votant nom m p 0.17 0.2 0.15 0.2 +vote vote nom m s 15.04 4.46 11.62 3.72 +votent voter ver 29.61 8.51 1.48 0.41 ind:pre:3p; +voter voter ver 29.61 8.51 7.96 2.64 inf; +votera voter ver 29.61 8.51 0.67 0.14 ind:fut:3s; +voterai voter ver 29.61 8.51 0.43 0 ind:fut:1s; +voterais voter ver 29.61 8.51 0.2 0 cnd:pre:1s;cnd:pre:2s; +voterait voter ver 29.61 8.51 0.21 0 cnd:pre:3s; +voteras voter ver 29.61 8.51 0.02 0 ind:fut:2s; +voterez voter ver 29.61 8.51 0.12 0.14 ind:fut:2p; +voterons voter ver 29.61 8.51 0.17 0.07 ind:fut:1p; +voteront voter ver 29.61 8.51 0.34 0 ind:fut:3p; +votes vote nom m p 15.04 4.46 3.42 0.74 +votez voter ver 29.61 8.51 3.66 0 imp:pre:2p;ind:pre:2p; +votiez voter ver 29.61 8.51 0.02 0 ind:imp:2p; +votif votif adj m s 0.13 0.81 0.01 0 +votifs votif adj m p 0.13 0.81 0 0.07 +votions voter ver 29.61 8.51 0.03 0.07 ind:imp:1p; +votive votif adj f s 0.13 0.81 0.11 0.34 +votives votif adj f p 0.13 0.81 0.01 0.41 +votons voter ver 29.61 8.51 0.95 0 imp:pre:1p;ind:pre:1p; +votre votre adj_pos 1894.09 427.91 1894.09 427.91 +votèrent voter ver 29.61 8.51 0.02 0 ind:pas:3p; +voté voter ver m s 29.61 8.51 7.11 1.76 par:pas; +votée voter ver f s 29.61 8.51 0.9 0.34 par:pas; +votées voter ver f p 29.61 8.51 0.03 0.07 par:pas; +votés voter ver m p 29.61 8.51 0.01 0.2 par:pas; +voua vouer ver 6.88 18.92 0.03 0.41 ind:pas:3s; +vouai vouer ver 6.88 18.92 0 0.07 ind:pas:1s; +vouaient vouer ver 6.88 18.92 0.17 0.41 ind:imp:3p; +vouais vouer ver 6.88 18.92 0.71 0.41 ind:imp:1s;ind:imp:2s; +vouait vouer ver 6.88 18.92 0.15 1.82 ind:imp:3s; +vouant vouer ver 6.88 18.92 0.01 0.14 par:pre; +voudra vouloir ver_sup 5249.3 1640.14 21.62 12.03 ind:fut:3s; +voudrai vouloir ver_sup 5249.3 1640.14 4.06 1.62 ind:fut:1s; +voudraient vouloir ver_sup 5249.3 1640.14 6.02 6.42 cnd:pre:3p; +voudrais vouloir ver_sup 5249.3 1640.14 194.56 92.09 cnd:pre:1s;cnd:pre:2s; +voudrait vouloir ver_sup 5249.3 1640.14 44.48 43.45 cnd:pre:3s; +voudras vouloir ver_sup 5249.3 1640.14 26.03 10.27 ind:fut:2s; +voudrez vouloir ver_sup 5249.3 1640.14 19.77 10.41 ind:fut:2p; +voudriez vouloir ver_sup 5249.3 1640.14 19.29 4.19 cnd:pre:2p; +voudrions vouloir ver_sup 5249.3 1640.14 5.14 1.82 cnd:pre:1p; +voudrons vouloir ver_sup 5249.3 1640.14 0.32 0.27 ind:fut:1p; +voudront vouloir ver_sup 5249.3 1640.14 6.93 3.38 ind:fut:3p; +voue vouer ver 6.88 18.92 0.51 0.95 ind:pre:1s;ind:pre:3s; +vouent vouer ver 6.88 18.92 0.25 0.07 ind:pre:3p; +vouer vouer ver 6.88 18.92 0.42 2.43 inf;;inf;;inf;; +vouera vouer ver 6.88 18.92 0.01 0.07 ind:fut:3s; +vouerait vouer ver 6.88 18.92 0 0.07 cnd:pre:3s; +vouge vouge nom f s 0.01 0.14 0.01 0.14 +vouivre vouivre nom f s 0 3.18 0 3.04 +vouivres vouivre nom f p 0 3.18 0 0.14 +voulaient vouloir ver_sup 5249.3 1640.14 28.88 30.2 ind:imp:3p; +voulais vouloir ver_sup 5249.3 1640.14 415.76 107.3 ind:imp:1s;ind:imp:2s; +voulait vouloir ver_sup 5249.3 1640.14 192.15 225.34 ind:imp:3s; +voulant vouloir ver_sup 5249.3 1640.14 4.28 18.45 par:pre; +voulez vouloir ver_sup 5249.3 1640.14 553.4 113.58 imp:pre:2p;ind:pre:2p; +vouliez vouloir ver_sup 5249.3 1640.14 43.78 5.81 ind:imp:2p;sub:pre:2p; +voulions vouloir ver_sup 5249.3 1640.14 9.07 6.08 ind:imp:1p;sub:pre:1p; +vouloir vouloir ver_sup 5249.3 1640.14 63.87 62.97 inf; +vouloirs vouloir nom_sup m p 1.28 2.57 0 0.14 +voulons vouloir ver_sup 5249.3 1640.14 40.38 9.53 imp:pre:1p;ind:pre:1p; +voulu vouloir ver_sup m s 5249.3 1640.14 151.04 174.19 par:pas; +voulue vouloir ver_sup f s 5249.3 1640.14 0.91 2.7 par:pas; +voulues voulu adj f p 4.42 9.12 0.18 0.68 +voulurent vouloir ver_sup 5249.3 1640.14 0.4 2.3 ind:pas:3p; +voulus vouloir ver_sup m p 5249.3 1640.14 0.36 6.22 ind:pas:1s;par:pas; +voulusse vouloir ver_sup 5249.3 1640.14 0 0.34 sub:imp:1s; +voulussent vouloir ver_sup 5249.3 1640.14 0 0.41 sub:imp:3p; +voulut vouloir ver_sup 5249.3 1640.14 2.42 36.89 ind:pas:3s; +voulûmes vouloir ver_sup 5249.3 1640.14 0 0.07 ind:pas:1p; +voulût vouloir ver_sup 5249.3 1640.14 0 3.72 sub:imp:3s; +vouons vouer ver 6.88 18.92 0.31 0.14 imp:pre:1p;ind:pre:1p; +vous vous pro_per p 13589.7 3507.16 13589.7 3507.16 +vous_même vous_même pro_per p 28.2 17.84 28.2 17.84 +vous_mêmes vous_mêmes pro_per p 4.3 1.55 4.3 1.55 +vousoyait vousoyer ver 0 0.14 0 0.07 ind:imp:3s; +vousoyez vousoyer ver 0 0.14 0 0.07 ind:pre:2p; +voussoie voussoyer ver 0.02 0.47 0 0.07 ind:pre:3s; +voussoiement voussoiement nom m s 0 0.34 0 0.34 +voussoient voussoyer ver 0.02 0.47 0 0.07 ind:pre:3p; +voussoyait voussoyer ver 0.02 0.47 0 0.14 ind:imp:3s; +voussoyer voussoyer ver 0.02 0.47 0 0.2 inf; +voussoyez voussoyer ver 0.02 0.47 0.02 0 imp:pre:2p; +voussure voussure nom f s 0 0.81 0 0.54 +voussures voussure nom f p 0 0.81 0 0.27 +vouvoie vouvoyer ver 0.79 1.35 0.27 0.14 imp:pre:2s;ind:pre:3s; +vouvoiement vouvoiement nom m s 0 0.47 0 0.41 +vouvoiements vouvoiement nom m p 0 0.47 0 0.07 +vouvoient vouvoyer ver 0.79 1.35 0 0.07 ind:pre:3p; +vouvoies vouvoyer ver 0.79 1.35 0.02 0.07 ind:pre:2s; +vouvoya vouvoyer ver 0.79 1.35 0 0.07 ind:pas:3s; +vouvoyait vouvoyer ver 0.79 1.35 0.01 0.81 ind:imp:3s; +vouvoyant vouvoyer ver 0.79 1.35 0 0.14 par:pre; +vouvoyer vouvoyer ver 0.79 1.35 0.49 0.07 inf; +vouvray vouvray nom m s 0 0.07 0 0.07 +vouèrent vouer ver 6.88 18.92 0 0.07 ind:pas:3p; +voué vouer ver m s 6.88 18.92 2.47 5.14 par:pas; +vouée vouer ver f s 6.88 18.92 1.42 4.12 par:pas; +vouées vouer ver f p 6.88 18.92 0.14 0.81 par:pas; +voués vouer ver m p 6.88 18.92 0.27 1.82 par:pas; +vox_populi vox_populi nom f 0.05 0.27 0.05 0.27 +voyage voyage nom m s 123.17 140.07 112.19 110.54 +voyagea voyager ver 45.74 27.5 0.06 0.54 ind:pas:3s; +voyageaient voyager ver 45.74 27.5 0.3 1.49 ind:imp:3p; +voyageais voyager ver 45.74 27.5 0.62 0.47 ind:imp:1s;ind:imp:2s; +voyageait voyager ver 45.74 27.5 1.27 2.91 ind:imp:3s; +voyageant voyager ver 45.74 27.5 0.71 0.54 par:pre; +voyagent voyager ver 45.74 27.5 1.71 1.22 ind:pre:3p; +voyageons voyager ver 45.74 27.5 0.62 0.27 imp:pre:1p;ind:pre:1p; +voyager voyager ver 45.74 27.5 19.45 9.19 inf; +voyagera voyager ver 45.74 27.5 0.41 0 ind:fut:3s; +voyagerai voyager ver 45.74 27.5 0.16 0.07 ind:fut:1s; +voyagerais voyager ver 45.74 27.5 0.08 0.07 cnd:pre:1s; +voyagerait voyager ver 45.74 27.5 0.22 0.27 cnd:pre:3s; +voyageras voyager ver 45.74 27.5 0.28 0.07 ind:fut:2s; +voyagerez voyager ver 45.74 27.5 0.07 0 ind:fut:2p; +voyageriez voyager ver 45.74 27.5 0.02 0 cnd:pre:2p; +voyagerons voyager ver 45.74 27.5 0.24 0.07 ind:fut:1p; +voyageront voyager ver 45.74 27.5 0.02 0 ind:fut:3p; +voyages voyage nom m p 123.17 140.07 10.98 29.53 +voyage_éclair voyage_éclair nom m p 0 0.07 0 0.07 +voyageur voyageur nom m s 8.11 43.38 3.17 20.88 +voyageurs voyageur nom m p 8.11 43.38 4.68 20.74 +voyageuse voyageur nom f s 8.11 43.38 0.26 1.08 +voyageuses voyageur nom f p 8.11 43.38 0 0.68 +voyagez voyager ver 45.74 27.5 1.69 0.14 imp:pre:2p;ind:pre:2p; +voyagiez voyager ver 45.74 27.5 0.28 0 ind:imp:2p; +voyagions voyager ver 45.74 27.5 0.34 0.34 ind:imp:1p; +voyagèrent voyager ver 45.74 27.5 0.01 0.14 ind:pas:3p; +voyagé voyager ver m s 45.74 27.5 5.9 4.93 par:pas; +voyaient voir ver 4119.43 2401.76 3.03 21.35 ind:imp:3p; +voyais voir ver 4119.43 2401.76 31.14 90.27 ind:imp:1s;ind:imp:2s; +voyait voir ver 4119.43 2401.76 25.32 180.95 ind:imp:3s; +voyance voyance nom f s 0.71 0.74 0.71 0.68 +voyances voyance nom f p 0.71 0.74 0 0.07 +voyant voir ver 4119.43 2401.76 17.16 42.64 par:pre; +voyante voyant nom f s 4.25 8.65 1.6 2.57 +voyantes voyant adj f p 3.55 8.58 0.22 0.88 +voyants voyant nom m p 4.25 8.65 0.56 1.89 +voyelle voyelle nom f s 0.71 1.76 0.36 0.47 +voyelles voyelle nom f p 0.71 1.76 0.35 1.28 +voyer voyer nom m s 0.16 0 0.16 0 +voyeur voyeur nom m s 3.71 4.26 2.94 2.77 +voyeurisme voyeurisme nom m s 0.13 0.34 0.13 0.34 +voyeurs voyeur nom m p 3.71 4.26 0.76 1.35 +voyeuse voyeur nom f s 3.71 4.26 0.02 0.14 +voyez voir ver 4119.43 2401.76 191.63 83.65 imp:pre:2p;ind:pre:2p; +voyiez voir ver 4119.43 2401.76 4.47 1.96 ind:imp:2p;sub:pre:2p; +voyions voir ver 4119.43 2401.76 0.88 4.8 ind:imp:1p; +voyons voir ver 4119.43 2401.76 127.93 44.8 imp:pre:1p;ind:pre:1p; +voyou voyou nom m s 21.09 25.14 11.69 14.59 +voyoucratie voyoucratie nom f s 0 0.27 0 0.27 +voyous voyou nom m p 21.09 25.14 9.41 10.47 +voyoute voyou adj f s 0 0.47 0 0.27 +voyouterie voyouterie nom f s 0 0.34 0 0.34 +voyoutes voyou adj f p 0 0.47 0 0.2 +voyoutisme voyoutisme nom m s 0 0.07 0 0.07 +voïvodie voïvodie nom f s 0.4 0 0.27 0 +voïvodies voïvodie nom f p 0.4 0 0.14 0 +voûta voûter ver 0.18 5.54 0 0.2 ind:pas:3s; +voûtaient voûter ver 0.18 5.54 0 0.14 ind:imp:3p; +voûtait voûter ver 0.18 5.54 0 0.54 ind:imp:3s; +voûtant voûter ver 0.18 5.54 0 0.14 par:pre; +voûte voûte nom f s 2.21 27.09 1.71 18.85 +voûtent voûter ver 0.18 5.54 0 0.14 ind:pre:3p; +voûter voûter ver 0.18 5.54 0.01 0.34 inf; +voûtes voûte nom f p 2.21 27.09 0.5 8.24 +voûtât voûter ver 0.18 5.54 0 0.07 sub:imp:3s; +voûtèrent voûter ver 0.18 5.54 0 0.14 ind:pas:3p; +voûté voûté adj m s 0.41 11.82 0.35 6.89 +voûtée voûté adj f s 0.41 11.82 0.01 2.5 +voûtées voûté adj f p 0.41 11.82 0.01 1.42 +voûtés voûté adj m p 0.41 11.82 0.04 1.01 +vrac vrac nom m s 1.17 5.2 1.17 5.2 +vrai vrai adj m s 807.03 430.07 678.47 311.89 +vrai_faux vrai_faux adj m s 0 0.07 0 0.07 +vraie vrai adj f s 807.03 430.07 83.64 77.57 +vraies vrai adj f p 807.03 430.07 13.91 16.76 +vraiment vraiment adv 968.57 274.32 968.57 274.32 +vrais vrai adj m p 807.03 430.07 31.01 23.85 +vraisemblable vraisemblable adj s 0.89 5.74 0.89 5.54 +vraisemblablement vraisemblablement adv 1.39 5.68 1.39 5.68 +vraisemblables vraisemblable adj m p 0.89 5.74 0 0.2 +vraisemblance vraisemblance nom f s 0.12 2.91 0.09 2.77 +vraisemblances vraisemblance nom f p 0.12 2.91 0.03 0.14 +vraquier vraquier nom m s 0 0.07 0 0.07 +vrilla vriller ver 0.13 3.18 0 0.41 ind:pas:3s; +vrillaient vriller ver 0.13 3.18 0 0.14 ind:imp:3p; +vrillait vriller ver 0.13 3.18 0 0.54 ind:imp:3s; +vrillant vriller ver 0.13 3.18 0.01 0.61 par:pre; +vrille vrille nom f s 0.72 2.57 0.65 1.82 +vrillement vrillement nom m s 0 0.07 0 0.07 +vrillent vriller ver 0.13 3.18 0 0.14 ind:pre:3p; +vriller vriller ver 0.13 3.18 0 0.14 inf; +vrilles vrille nom f p 0.72 2.57 0.07 0.74 +vrillette vrillette nom f s 0.01 0.07 0.01 0 +vrillettes vrillette nom f p 0.01 0.07 0 0.07 +vrillèrent vriller ver 0.13 3.18 0 0.07 ind:pas:3p; +vrillé vriller ver m s 0.13 3.18 0.09 0.2 par:pas; +vrillées vriller ver f p 0.13 3.18 0 0.14 par:pas; +vrillés vriller ver m p 0.13 3.18 0 0.14 par:pas; +vrombir vrombir ver 0.26 1.96 0.02 0.27 inf; +vrombis vrombir ver 0.26 1.96 0 0.07 ind:pre:1s; +vrombissaient vrombir ver 0.26 1.96 0.02 0.07 ind:imp:3p; +vrombissait vrombir ver 0.26 1.96 0 0.27 ind:imp:3s; +vrombissant vrombir ver 0.26 1.96 0.01 0.27 par:pre; +vrombissante vrombissant adj f s 0.01 0.68 0 0.27 +vrombissantes vrombissant adj f p 0.01 0.68 0 0.34 +vrombissement vrombissement nom m s 0.47 1.35 0.47 1.15 +vrombissements vrombissement nom m p 0.47 1.35 0 0.2 +vrombissent vrombir ver 0.26 1.96 0 0.14 ind:pre:3p; +vrombissions vrombir ver 0.26 1.96 0 0.07 ind:imp:1p; +vrombit vrombir ver 0.26 1.96 0.21 0.81 ind:pre:3s;ind:pas:3s; +vroom vroom ono 0.07 0.41 0.07 0.41 +vroum vroum ono 0.38 0.34 0.38 0.34 +vu voir ver m s 4119.43 2401.76 905.21 393.45 par:pas; +vue voir ver f s 4119.43 2401.76 109.21 56.35 par:pas; +vues voir ver f p 4119.43 2401.76 9.31 8.11 par:pas; +vulcain vulcain nom m s 0.06 0 0.06 0 +vulcanienne vulcanienne adj f s 0.01 0 0.01 0 +vulcanisait vulcaniser ver 0.01 0.07 0 0.07 ind:imp:3s; +vulcanisation vulcanisation nom f s 0 0.07 0 0.07 +vulcaniser vulcaniser ver 0.01 0.07 0.01 0 inf; +vulcanisé vulcanisé adj m s 0.01 0.14 0.01 0.14 +vulcanologue vulcanologue nom s 0 0.07 0 0.07 +vulgaire vulgaire adj s 10.36 16.76 8.48 12.84 +vulgairement vulgairement adv 0.4 1.22 0.4 1.22 +vulgaires vulgaire adj p 10.36 16.76 1.88 3.92 +vulgarisateurs vulgarisateur nom m p 0 0.07 0 0.07 +vulgarisation vulgarisation nom f s 0.01 0.41 0.01 0.34 +vulgarisations vulgarisation nom f p 0.01 0.41 0 0.07 +vulgariser vulgariser ver 0.01 0.14 0.01 0.14 inf; +vulgarisée vulgarisé adj f s 0 0.07 0 0.07 +vulgarité vulgarité nom f s 1.75 5.68 1.59 5.34 +vulgarités vulgarité nom f p 1.75 5.68 0.17 0.34 +vulgate vulgate nom f s 0 0.2 0 0.2 +vulgum_pecus vulgum_pecus nom m 0.01 0.07 0.01 0.07 +vulnérabilité vulnérabilité nom f s 0.77 1.01 0.77 1.01 +vulnérable vulnérable adj s 7.76 7.97 6 6.35 +vulnérables vulnérable adj p 7.76 7.97 1.77 1.62 +vulnéraire vulnéraire nom s 0 0.2 0 0.14 +vulnéraires vulnéraire nom p 0 0.2 0 0.07 +vulnérant vulnérant adj m s 0 0.07 0 0.07 +vulpin vulpin nom m s 0 0.07 0 0.07 +vulvaire vulvaire nom f s 0.03 0.07 0.03 0 +vulvaires vulvaire nom f p 0.03 0.07 0 0.07 +vulve vulve nom f s 0.32 1.35 0.32 0.95 +vulves vulve nom f p 0.32 1.35 0 0.41 +vus voir ver m p 4119.43 2401.76 47.81 28.72 par:pas; +vécu vivre ver m s 510.19 460.34 51.14 56.62 par:pas; +vécue vivre ver f s 510.19 460.34 2.26 4.26 par:pas; +vécues vivre ver f p 510.19 460.34 0.79 1.62 par:pas; +vécurent vivre ver 510.19 460.34 1.65 1.15 ind:pas:3p; +vécus vivre ver m p 510.19 460.34 1.1 2.43 ind:pas:1s;ind:pas:2s;par:pas; +vécussent vivre ver 510.19 460.34 0 0.14 sub:imp:3p; +vécut vivre ver 510.19 460.34 1.43 4.19 ind:pas:3s; +vécés vécés nom m p 0.01 1.08 0.01 1.08 +vécûmes vivre ver 510.19 460.34 0.04 0.41 ind:pas:1p; +vécût vivre ver 510.19 460.34 0 0.54 sub:imp:3s; +végète végéter ver 0.57 2.91 0.16 0.34 ind:pre:1s;ind:pre:3s; +végètent végéter ver 0.57 2.91 0.1 0.14 ind:pre:3p; +végètes végéter ver 0.57 2.91 0.02 0 ind:pre:2s; +végéta végéter ver 0.57 2.91 0.01 0 ind:pas:3s; +végétaient végéter ver 0.57 2.91 0 0.41 ind:imp:3p; +végétais végéter ver 0.57 2.91 0 0.07 ind:imp:1s; +végétait végéter ver 0.57 2.91 0 0.74 ind:imp:3s; +végétal végétal adj m s 0.78 8.85 0.18 2.97 +végétale végétal adj f s 0.78 8.85 0.51 3.85 +végétales végétal adj f p 0.78 8.85 0.03 0.95 +végétalien végétalien adj m s 0.22 0.07 0.11 0 +végétalienne végétalien adj f s 0.22 0.07 0.11 0.07 +végétalisme végétalisme nom m s 0.01 0 0.01 0 +végétarien végétarien adj m s 3.94 1.82 2.31 0.88 +végétarienne végétarien adj f s 3.94 1.82 1.32 0.68 +végétariennes végétarien adj f p 3.94 1.82 0.07 0 +végétariens végétarien nom m p 0.9 0.27 0.47 0.07 +végétarisme végétarisme nom m s 0.03 0 0.03 0 +végétatif végétatif adj m s 0.47 1.55 0.4 0.41 +végétatifs végétatif adj m p 0.47 1.55 0.01 0.07 +végétation végétation nom f s 1.47 9.53 0.78 8.85 +végétations végétation nom f p 1.47 9.53 0.69 0.68 +végétative végétatif adj f s 0.47 1.55 0.04 1.01 +végétatives végétatif adj f p 0.47 1.55 0.02 0.07 +végétaux végétal nom m p 0.44 1.89 0.26 0.88 +végéter végéter ver 0.57 2.91 0.26 0.88 inf; +végéteras végéter ver 0.57 2.91 0.01 0 ind:fut:2s; +végéterez végéter ver 0.57 2.91 0 0.07 ind:fut:2p; +végétons végéter ver 0.57 2.91 0 0.07 ind:pre:1p; +végétât végéter ver 0.57 2.91 0 0.07 sub:imp:3s; +végété végéter ver m s 0.57 2.91 0.01 0.14 par:pas; +véhiculaient véhiculer ver 0.72 2.3 0.02 0.07 ind:imp:3p; +véhiculait véhiculer ver 0.72 2.3 0.03 0.2 ind:imp:3s; +véhiculant véhiculer ver 0.72 2.3 0.04 0.2 par:pre; +véhicule véhicule nom m s 22.08 22.09 17.04 14.86 +véhiculent véhiculer ver 0.72 2.3 0.14 0.07 ind:pre:3p; +véhiculer véhiculer ver 0.72 2.3 0.12 0.95 inf; +véhicules véhicule nom m p 22.08 22.09 5.04 7.23 +véhiculez véhiculer ver 0.72 2.3 0.01 0 imp:pre:2p; +véhiculé véhiculer ver m s 0.72 2.3 0 0.14 par:pas; +véhiculée véhiculer ver f s 0.72 2.3 0.04 0.2 par:pas; +véhémence véhémence nom f s 0.31 5.07 0.31 5.07 +véhément véhément adj m s 0.29 5.88 0.02 1.49 +véhémente véhément adj f s 0.29 5.88 0.28 1.89 +véhémentement véhémentement adv 0.01 0.34 0.01 0.34 +véhémentes véhément adj f p 0.29 5.88 0 1.22 +véhéments véhément adj m p 0.29 5.88 0 1.28 +vélaires vélaire nom f p 0 0.07 0 0.07 +vélar vélar nom m s 0.04 0 0.04 0 +vélin vélin adj m s 0.02 0.07 0.02 0.07 +vélins vélin nom m p 0 0.68 0 0.07 +véliplanchiste véliplanchiste nom s 0.01 0 0.01 0 +vélique vélique adj f s 0 0.07 0 0.07 +vélo vélo nom m s 35.58 28.45 32.95 24.32 +vélo_cross vélo_cross nom m 0 0.07 0 0.07 +vélo_pousse vélo_pousse nom m s 0.01 0 0.01 0 +véloce véloce adj s 0.06 0.74 0.04 0.54 +vélocement vélocement adv 0.01 0 0.01 0 +véloces véloce adj f p 0.06 0.74 0.02 0.2 +vélocipède vélocipède nom m s 0.13 0.41 0.11 0.27 +vélocipèdes vélocipède nom m p 0.13 0.41 0.02 0.14 +vélocipédique vélocipédique adj s 0 0.2 0 0.14 +vélocipédiques vélocipédique adj f p 0 0.2 0 0.07 +vélocipédistes vélocipédiste nom p 0 0.07 0 0.07 +vélocité vélocité nom f s 0.25 1.08 0.25 1.08 +vélodrome vélodrome nom m s 0 0.88 0 0.68 +vélodromes vélodrome nom m p 0 0.88 0 0.2 +vélomoteur vélomoteur nom m s 0.23 1.49 0.23 1.22 +vélomoteurs vélomoteur nom m p 0.23 1.49 0 0.27 +vélos vélo nom m p 35.58 28.45 2.64 4.12 +vélum vélum nom m s 0.02 0.41 0.02 0.27 +vélums vélum nom m p 0.02 0.41 0 0.14 +vénal vénal adj m s 0.54 1.76 0.45 0.81 +vénale vénal adj f s 0.54 1.76 0.09 0.41 +vénales vénal adj f p 0.54 1.76 0 0.41 +vénalité vénalité nom f s 0.02 0.41 0.02 0.41 +vénaux vénal adj m p 0.54 1.76 0 0.14 +vénerie vénerie nom f s 0 0.61 0 0.61 +véniel véniel adj m s 0.32 0.81 0.3 0.2 +vénielle véniel adj f s 0.32 0.81 0 0.07 +vénielles véniel adj f p 0.32 0.81 0 0.14 +véniels véniel adj m p 0.32 0.81 0.01 0.41 +vénitien vénitien adj m s 0.95 6.96 0.86 2.43 +vénitienne vénitienne nom f s 0.14 0.54 0.14 0.34 +vénitiennes vénitien adj f p 0.95 6.96 0.03 1.28 +vénitiens vénitien nom m p 0.36 1.82 0.24 1.15 +vénus vénus nom f 0.56 0.41 0.56 0.41 +vénusien vénusien adj m s 0.11 0.2 0.01 0.14 +vénusienne vénusien adj f s 0.11 0.2 0.04 0 +vénusiens vénusien adj m p 0.11 0.2 0.06 0.07 +vénusté vénusté nom f s 0 0.34 0 0.34 +vénère vénérer ver 5.86 4.66 1.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vénèrent vénérer ver 5.86 4.66 0.67 0.2 ind:pre:3p; +vénères vénérer ver 5.86 4.66 0.27 0.07 ind:pre:2s; +vénéneuse vénéneux adj f s 0.69 2.36 0.09 0.74 +vénéneuses vénéneux adj f p 0.69 2.36 0.06 0.41 +vénéneux vénéneux adj m 0.69 2.36 0.55 1.22 +vénérable vénérable adj s 2.56 6.35 2.2 4.8 +vénérables vénérable adj p 2.56 6.35 0.36 1.55 +vénérai vénérer ver 5.86 4.66 0 0.07 ind:pas:1s; +vénéraient vénérer ver 5.86 4.66 0.21 0.14 ind:imp:3p; +vénérais vénérer ver 5.86 4.66 0.19 0.27 ind:imp:1s;ind:imp:2s; +vénérait vénérer ver 5.86 4.66 0.47 1.35 ind:imp:3s; +vénérant vénérer ver 5.86 4.66 0.15 0.14 par:pre; +vénéras vénérer ver 5.86 4.66 0.01 0 ind:pas:2s; +vénération vénération nom f s 0.23 2.84 0.23 2.7 +vénérations vénération nom f p 0.23 2.84 0 0.14 +vénérer vénérer ver 5.86 4.66 0.94 0.88 inf; +vénérera vénérer ver 5.86 4.66 0.01 0 ind:fut:3s; +vénéreraient vénérer ver 5.86 4.66 0 0.07 cnd:pre:3p; +vénérerais vénérer ver 5.86 4.66 0.01 0 cnd:pre:1s; +vénérez vénérer ver 5.86 4.66 0.27 0 imp:pre:2p;ind:pre:2p; +vénérien vénérien adj m s 0.61 0.95 0.02 0.14 +vénérienne vénérien adj f s 0.61 0.95 0.28 0.2 +vénériennes vénérien adj f p 0.61 0.95 0.31 0.54 +vénériens vénérien adj m p 0.61 0.95 0 0.07 +vénérions vénérer ver 5.86 4.66 0.03 0.14 ind:imp:1p; +vénérons vénérer ver 5.86 4.66 0.32 0 ind:pre:1p; +vénéré vénéré adj m s 1.1 1.62 0.91 0.81 +vénérée vénéré adj f s 1.1 1.62 0.12 0.14 +vénérées vénérer ver f p 5.86 4.66 0.14 0.07 par:pas; +vénéréologie vénéréologie nom f s 0.01 0 0.01 0 +vénérés vénérer ver m p 5.86 4.66 0.06 0.2 par:pas; +vénézuélien vénézuélien adj m s 0.48 0.27 0.07 0.2 +vénézuélienne vénézuélien adj f s 0.48 0.27 0.26 0 +vénézuéliens vénézuélien adj m p 0.48 0.27 0.16 0.07 +vérace vérace adj f s 0 0.14 0 0.07 +véraces vérace adj p 0 0.14 0 0.07 +véracité véracité nom f s 0.58 0.74 0.58 0.74 +véranda véranda nom f s 1.9 10.2 1.86 9.12 +vérandas véranda nom f p 1.9 10.2 0.03 1.08 +véreuse véreux adj f s 1.67 1.62 0.35 0.14 +véreuses véreux adj f p 1.67 1.62 0.1 0.27 +véreux véreux adj m 1.67 1.62 1.23 1.22 +véridique véridique adj s 0.82 2.23 0.66 1.69 +véridiquement véridiquement adv 0.01 0.14 0.01 0.14 +véridiques véridique adj p 0.82 2.23 0.16 0.54 +vérif vérif nom f s 0.1 0.27 0.1 0.27 +vérifia vérifier ver 110.87 40.27 0.04 2.91 ind:pas:3s; +vérifiable vérifiable adj s 0.21 0.2 0.18 0.14 +vérifiables vérifiable adj f p 0.21 0.2 0.03 0.07 +vérifiai vérifier ver 110.87 40.27 0.01 0.2 ind:pas:1s; +vérifiaient vérifier ver 110.87 40.27 0.05 0.27 ind:imp:3p; +vérifiais vérifier ver 110.87 40.27 1.33 0.68 ind:imp:1s;ind:imp:2s; +vérifiait vérifier ver 110.87 40.27 0.73 2.5 ind:imp:3s; +vérifiant vérifier ver 110.87 40.27 0.2 1.49 par:pre; +vérificateur vérificateur nom m s 0.42 0.07 0.33 0 +vérificateurs vérificateur nom m p 0.42 0.07 0.03 0.07 +vérification vérification nom f s 4.07 3.45 3.4 2.5 +vérifications vérification nom f p 4.07 3.45 0.68 0.95 +vérificatrice vérificateur nom f s 0.42 0.07 0.07 0 +vérifie vérifier ver 110.87 40.27 20.47 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +vérifient vérifier ver 110.87 40.27 1.27 0.27 ind:pre:3p; +vérifier vérifier ver 110.87 40.27 45.69 22.09 inf; +vérifiera vérifier ver 110.87 40.27 0.55 0.2 ind:fut:3s; +vérifierai vérifier ver 110.87 40.27 1.35 0.2 ind:fut:1s; +vérifierais vérifier ver 110.87 40.27 0.1 0.07 cnd:pre:1s;cnd:pre:2s; +vérifierait vérifier ver 110.87 40.27 0.03 0.07 cnd:pre:3s; +vérifieras vérifier ver 110.87 40.27 0.17 0.07 ind:fut:2s; +vérifierons vérifier ver 110.87 40.27 0.32 0.07 ind:fut:1p; +vérifieront vérifier ver 110.87 40.27 0.22 0 ind:fut:3p; +vérifies vérifier ver 110.87 40.27 0.94 0.14 ind:pre:2s; +vérifieur vérifieur nom m s 0.02 0 0.02 0 +vérifiez vérifier ver 110.87 40.27 12.16 0.47 imp:pre:2p;ind:pre:2p; +vérifiions vérifier ver 110.87 40.27 0 0.07 ind:imp:1p; +vérifions vérifier ver 110.87 40.27 2.15 0.14 imp:pre:1p;ind:pre:1p; +vérifièrent vérifier ver 110.87 40.27 0.01 0.14 ind:pas:3p; +vérifié vérifier ver m s 110.87 40.27 21.64 4.19 par:pas; +vérifiée vérifier ver f s 110.87 40.27 0.5 0.14 par:pas; +vérifiées vérifier ver f p 110.87 40.27 0.37 0 par:pas; +vérifiés vérifier ver m p 110.87 40.27 0.57 0 par:pas; +vérin vérin nom m s 0.06 0.34 0.05 0.07 +vérins vérin nom m p 0.06 0.34 0.01 0.27 +vériste vériste adj m s 0 0.07 0 0.07 +véritable véritable adj s 29.36 56.08 26.78 48.51 +véritablement véritablement adv 2.03 5.88 2.03 5.88 +véritables véritable adj p 29.36 56.08 2.58 7.57 +vérité vérité nom f s 193.24 140.88 190.21 133.38 +vérités vérité nom f p 193.24 140.88 3.03 7.5 +vérole vérole nom f s 0.79 3.58 0.79 3.45 +véroles vérole nom f p 0.79 3.58 0 0.14 +vérolé vérolé adj m s 0.33 1.96 0.02 1.42 +vérolée vérolé adj f s 0.33 1.96 0.17 0 +vérolées vérolé adj f p 0.33 1.96 0 0.34 +vérolés vérolé adj m p 0.33 1.96 0.14 0.2 +véronaise véronais adj f s 0 0.07 0 0.07 +véronal véronal nom m s 0.04 0 0.04 0 +véronique véronique nom f s 0.1 0.74 0.1 0.54 +véroniques véronique nom f p 0.1 0.74 0 0.2 +vésanie vésanie nom f s 0 0.27 0 0.2 +vésanies vésanie nom f p 0 0.27 0 0.07 +vésicale vésical adj f s 0.01 0 0.01 0 +vésicante vésicant adj f s 0.1 0 0.1 0 +vésicatoire vésicatoire adj s 0.1 0.07 0.1 0 +vésicatoires vésicatoire adj m p 0.1 0.07 0 0.07 +vésiculaire vésiculaire adj s 0.1 0 0.1 0 +vésicule vésicule nom f s 1.01 0.74 0.9 0.61 +vésicules vésicule nom f p 1.01 0.74 0.11 0.14 +vésuviennes vésuvien adj f p 0 0.07 0 0.07 +vétille vétille nom f s 0.39 1.22 0.22 0.2 +vétilles vétille nom f p 0.39 1.22 0.16 1.01 +vétilleuse vétilleux adj f s 0 0.68 0 0.27 +vétilleuses vétilleux adj f p 0 0.68 0 0.07 +vétilleux vétilleux adj m 0 0.68 0 0.34 +vétiver vétiver nom m s 0 0.27 0 0.27 +vétuste vétuste adj s 0.25 3.18 0.05 2.03 +vétustes vétuste adj p 0.25 3.18 0.2 1.15 +vétusté vétusté nom f s 0.02 0.68 0.02 0.68 +vétyver vétyver nom m s 0 0.07 0 0.07 +vétéran vétéran nom m s 3.84 2.43 1.86 1.28 +vétérans vétéran nom m p 3.84 2.43 1.98 1.15 +vétérinaire vétérinaire nom s 3.93 3.85 3.74 3.72 +vétérinaires vétérinaire nom p 3.93 3.85 0.19 0.14 +vêlage vêlage nom m s 0 0.2 0 0.14 +vêlages vêlage nom m p 0 0.2 0 0.07 +vêler vêler ver 0.02 0.54 0.01 0.47 inf; +vêlé vêler ver m s 0.02 0.54 0.01 0.07 par:pas; +vêpre vêpres nom m s 0 0.07 0 0.07 +vêpres vêpre nom f p 0.64 2.36 0.64 2.36 +vêt vêtir ver 7.67 63.85 0.02 0.14 ind:pre:3s; +vêtaient vêtir ver 7.67 63.85 0 0.07 ind:imp:3p; +vêtait vêtir ver 7.67 63.85 0.14 0.41 ind:imp:3s; +vêtant vêtir ver 7.67 63.85 0 0.14 par:pre; +vête vêtir ver 7.67 63.85 0 0.07 sub:pre:3s; +vêtement vêtement nom m s 61.48 90.14 3.84 15.34 +vêtements vêtement nom m p 61.48 90.14 57.65 74.8 +vêtent vêtir ver 7.67 63.85 0.11 0.34 ind:pre:3p; +vêtez vêtir ver 7.67 63.85 0.01 0.34 imp:pre:2p;ind:pre:2p; +vêtir vêtir ver 7.67 63.85 1.55 3.18 inf; +vêtira vêtir ver 7.67 63.85 0.02 0.07 ind:fut:3s; +vêtirais vêtir ver 7.67 63.85 0 0.07 cnd:pre:1s; +vêtirait vêtir ver 7.67 63.85 0 0.07 cnd:pre:3s; +vêtirons vêtir ver 7.67 63.85 0 0.07 ind:fut:1p; +vêtis vêtir ver 7.67 63.85 0 0.07 ind:pas:1s; +vêtit vêtir ver 7.67 63.85 0 0.2 ind:pas:3s; +vêtons vêtir ver 7.67 63.85 0 0.07 ind:pre:1p; +vêts vêtir ver 7.67 63.85 0 0.54 ind:pre:1s;ind:pre:2s; +vêtu vêtir ver m s 7.67 63.85 3.47 26.96 par:pas; +vêtue vêtir ver f s 7.67 63.85 1.23 15.27 par:pas; +vêtues vêtir ver f p 7.67 63.85 0.28 4.73 par:pas; +vêture vêture nom f s 0 0.61 0 0.54 +vêtures vêture nom f p 0 0.61 0 0.07 +vêtus vêtir ver m p 7.67 63.85 0.83 11.08 par:pas; +vîmes voir ver 4119.43 2401.76 0.66 4.73 ind:pas:1p; +vînt venir ver 2763.82 1514.53 0.3 6.62 sub:imp:3s; +vît voir ver 4119.43 2401.76 0.03 4.05 sub:imp:3s; +vôtre vôtre pro_pos s 33.05 11.69 33.05 11.69 +vôtres vôtres pro_pos p 12.14 4.39 12.14 4.39 +w w nom m 3.54 2.7 3.54 2.7 +wagnérien wagnérien adj m s 0.04 0.47 0.01 0.34 +wagnérienne wagnérien adj f s 0.04 0.47 0.03 0.07 +wagnériennes wagnérien adj f p 0.04 0.47 0 0.07 +wagon wagon nom m s 10.24 32.77 6.53 18.11 +wagon_bar wagon_bar nom m s 0.03 0 0.03 0 +wagon_lit wagon_lit nom m s 1.79 1.89 0.7 0.81 +wagon_lits wagon_lits nom m 0 0.07 0 0.07 +wagon_restaurant wagon_restaurant nom m s 0.35 1.01 0.35 0.81 +wagon_salon wagon_salon nom m s 0.01 0.54 0.01 0.54 +wagonnet wagonnet nom m s 0.26 1.28 0.12 0.2 +wagonnets wagonnet nom m p 0.26 1.28 0.14 1.08 +wagons wagon nom m p 10.24 32.77 3.71 14.66 +wagon_citerne wagon_citerne nom m p 0 0.07 0 0.07 +wagon_lit wagon_lit nom m p 1.79 1.89 1.09 1.08 +wagon_restaurant wagon_restaurant nom m p 0.35 1.01 0 0.2 +wait_and_see wait_and_see nom m s 0.16 0 0.16 0 +wali wali nom m s 0.02 0 0.02 0 +walkie_talkie walkie_talkie nom m s 0.08 0.14 0.05 0.14 +walkie_talkie walkie_talkie nom m p 0.08 0.14 0.03 0 +walkman walkman nom m s 1.18 1.28 1.13 1.22 +walkmans walkman nom m p 1.18 1.28 0.05 0.07 +walkyrie walkyrie nom f s 0 0.27 0 0.27 +wall_street wall_street nom s 0.03 0.07 0.03 0.07 +wallaby wallaby nom m s 0.13 0 0.13 0 +wallace wallace nom f s 0.91 0 0.91 0 +wallon wallon adj m s 0.28 0.07 0.01 0.07 +wallonne wallon adj f s 0.28 0.07 0.27 0 +walter walter nom m s 0.27 0 0.27 0 +wapiti wapiti nom m s 0.03 0.2 0.02 0.07 +wapitis wapiti nom m p 0.03 0.2 0.01 0.14 +warning warning nom m s 0.34 0.07 0.07 0 +warnings warning nom m p 0.34 0.07 0.28 0.07 +warrants warrant nom m p 0 0.07 0 0.07 +wassingue wassingue nom f s 0 0.14 0 0.07 +wassingues wassingue nom f p 0 0.14 0 0.07 +water water nom m s 2.49 1.55 1.03 0.2 +water_closet water_closet nom m s 0 0.14 0 0.14 +water_polo water_polo nom m s 0.23 0 0.23 0 +waterman waterman nom m s 0.12 0.34 0.12 0.34 +waterproof waterproof adj m s 0.07 0.07 0.07 0.07 +waters water nom m p 2.49 1.55 1.46 1.35 +watt watt nom m s 1.78 0.81 0.03 0 +wattman wattman nom m s 0 0.2 0 0.2 +watts watt nom m p 1.78 0.81 1.75 0.81 +wax wax nom m 0.74 0.07 0.74 0.07 +way_of_life way_of_life nom m s 0.02 0.14 0.02 0.14 +web web nom m s 2.34 0 2.34 0 +webcam webcam nom f s 0.31 0 0.31 0 +week_end week_end nom m s 44.51 14.32 1.96 0 +week_end week_end nom m s 44.51 14.32 39.41 12.16 +week_end week_end nom m p 44.51 14.32 3.13 2.16 +weimarienne weimarien adj f s 0 0.07 0 0.07 +weltanschauung weltanschauung nom f s 0.02 0.07 0.02 0.07 +welter welter nom m s 0.14 0 0.1 0 +welters welter nom m p 0.14 0 0.04 0 +western western nom m s 6.35 3.78 5.19 1.96 +western_spaghetti western_spaghetti nom m 0 0.07 0 0.07 +westerns western nom m p 6.35 3.78 1.16 1.82 +westphalien westphalien adj m s 0 0.14 0 0.07 +westphaliennes westphalien adj f p 0 0.14 0 0.07 +wharf wharf nom m s 0.03 1.22 0.03 1.22 +whig whig nom m s 0.21 0.07 0.03 0.07 +whigs whig nom m p 0.21 0.07 0.18 0 +whipcord whipcord nom m s 0 0.07 0 0.07 +whiskey whiskey nom m s 1.2 0.27 1.2 0.27 +whiskies whiskies nom m p 0.53 1.89 0.53 1.89 +whisky whisky nom m s 30.2 25.47 29.89 25.14 +whisky_soda whisky_soda nom m s 0.13 0.07 0.13 0.07 +whiskys whisky nom m p 30.2 25.47 0.32 0.34 +whist whist nom m s 0.19 0.27 0.19 0.27 +white_spirit white_spirit nom m s 0.01 0 0.01 0 +wicket wicket nom m s 0.16 0 0.16 0 +wigwam wigwam nom m s 0 0.27 0 0.14 +wigwams wigwam nom m p 0 0.27 0 0.14 +wildcat wildcat nom m s 0.02 0 0.02 0 +wilhelmien wilhelmien adj m s 0 0.14 0 0.14 +willaya willaya nom f s 0 0.68 0 0.61 +willayas willaya nom f p 0 0.68 0 0.07 +william william nom m s 0.09 0.27 0.09 0.27 +williams williams nom f s 0.46 0 0.46 0 +winchester winchester nom m s 0.05 0.27 0.01 0.27 +winchesters winchester nom m p 0.05 0.27 0.04 0 +windsurf windsurf nom m s 0.05 0 0.05 0 +wintergreen wintergreen nom m s 0.01 0 0.01 0 +wishbone wishbone nom m s 0.01 0 0.01 0 +wisigothe wisigoth nom f s 0 0.14 0 0.07 +wisigothique wisigothique adj f s 0 0.14 0 0.07 +wisigothiques wisigothique adj f p 0 0.14 0 0.07 +wisigoths wisigoth nom m p 0 0.14 0 0.07 +witz witz nom m 0.01 0 0.01 0 +wombat wombat nom m s 0.04 0 0.04 0 +woofer woofer nom m s 0.04 0 0.01 0 +woofers woofer nom m p 0.04 0 0.03 0 +world_music world_music nom f 0.02 0 0.02 0 +wouah wouah ono 1.29 0.07 1.29 0.07 +wurtembergeois wurtembergeois adj m 0 0.14 0 0.07 +wurtembergeoise wurtembergeois adj f s 0 0.14 0 0.07 +x x adj_num 7.48 4.46 7.48 4.46 +xavier xavier nom m s 0.67 0.07 0.67 0.07 +xiang xiang nom m s 0.01 0 0.01 0 +xiphidion xiphidion nom m s 0 0.07 0 0.07 +xiphoïde xiphoïde adj m s 0.14 0 0.14 0 +xième xième adj m s 0.28 0 0.28 0 +xylographie xylographie nom f s 0.2 0 0.2 0 +xylophone xylophone nom m s 0.28 0.34 0.28 0.27 +xylophones xylophone nom m p 0.28 0.34 0 0.07 +xylophoniste xylophoniste nom s 0.04 0 0.04 0 +xylène xylène nom m s 0.03 0 0.03 0 +xénogenèse xénogenèse nom f s 0.01 0 0.01 0 +xénogreffe xénogreffe nom f s 0.01 0 0.01 0 +xénon xénon nom m s 0.34 0 0.34 0 +xénophilie xénophilie nom f s 0 0.14 0 0.14 +xénophobe xénophobe adj s 0.07 0.14 0.04 0 +xénophobes xénophobe adj p 0.07 0.14 0.04 0.14 +xénophobie xénophobie nom f s 0.25 0.88 0.25 0.88 +xérographie xérographie nom f s 0.01 0 0.01 0 +xérographique xérographique adj m s 0.01 0 0.01 0 +xérès xérès nom m 0.41 0.54 0.41 0.54 +y y pro_per 4346.55 3086.76 4346.55 3086.76 +ya ya nom m s 11.45 3.31 11.45 3.31 +yacht yacht nom m s 6.95 4.8 6.51 3.78 +yacht_club yacht_club nom m s 0.04 0.07 0.04 0.07 +yachting yachting nom m s 0.04 0.14 0.04 0.14 +yachtman yachtman nom m s 0.02 0.14 0.02 0.07 +yachtmen yachtman nom m p 0.02 0.14 0 0.07 +yachts yacht nom m p 6.95 4.8 0.44 1.01 +yachtwoman yachtwoman nom f s 0 0.07 0 0.07 +yack yack nom m s 3.15 1.76 0.46 1.42 +yacks yack nom m p 3.15 1.76 2.69 0.34 +yak yak nom m s 0.38 0.41 0.28 0.41 +yakitori yakitori nom m s 0.01 0 0.01 0 +yaks yak nom m p 0.38 0.41 0.1 0 +yakusa yakusa nom m s 0.15 0 0.15 0 +yakuza yakuza nom m s 0.86 0 0.79 0 +yakuzas yakuza nom m p 0.86 0 0.07 0 +yali yali nom m s 0 1.01 0 0.88 +yalis yali nom m p 0 1.01 0 0.14 +yama yama nom m s 0.24 0.07 0.24 0.07 +yang yang nom m s 3.25 0.81 3.25 0.81 +yankee yankee nom s 8.71 1.08 3.71 0.68 +yankees yankee nom p 8.71 1.08 5 0.41 +yanquis yanqui adj p 0.01 0 0.01 0 +yaourt yaourt nom m s 3.58 4.73 2.87 3.18 +yaourtières yaourtière nom f p 0 0.07 0 0.07 +yaourts yaourt nom m p 3.58 4.73 0.71 1.55 +yard yard nom m s 2.1 0.34 0.46 0.27 +yards yard nom m p 2.1 0.34 1.64 0.07 +yatagan yatagan nom m s 0.01 0.88 0.01 0.54 +yatagans yatagan nom m p 0.01 0.88 0 0.34 +yeah yeah ono 14.01 0.27 14.01 0.27 +yearling yearling nom m s 0.01 0.14 0.01 0.14 +yen yen nom m s 3.27 0.61 1.87 0.47 +yens yen nom m p 3.27 0.61 1.4 0.14 +yeshiva yeshiva nom f s 1.13 0.2 1.13 0.2 +yeti yeti nom m s 0.29 0.14 0.29 0.14 +yeuse yeuse nom f s 0.12 0.81 0.02 0.14 +yeuses yeuse nom f p 0.12 0.81 0.1 0.68 +yeux oeil nom m p 413.04 1234.59 315.89 955.68 +oeil_radars oeil_radars nom m p 0 0.07 0 0.07 +yiddish yiddish adj m s 0.7 0.74 0.7 0.74 +yin yin nom m s 2.17 0.81 2.17 0.81 +ylang_ylang ylang_ylang nom m s 0.01 0 0.01 0 +yo_yo yo_yo nom m 1.03 0.47 1.03 0.47 +yodlait yodler ver 0.03 0.07 0 0.07 ind:imp:3s; +yodler yodler ver 0.03 0.07 0.03 0 inf; +yoga yoga nom m s 3.17 1.08 3.17 1.08 +yoghourt yoghourt nom m s 0 0.34 0 0.34 +yogi yogi nom m s 0.57 0.47 0.52 0.41 +yogis yogi nom m p 0.57 0.47 0.05 0.07 +yogourt yogourt nom m s 0.31 0.07 0.31 0.07 +yole yole nom f s 0.04 0.47 0.04 0.47 +yom_kippour yom_kippour nom m 0.45 0.34 0.45 0.34 +yom_kippur yom_kippur nom m s 0.04 0 0.04 0 +york york nom m s 0.48 0.61 0.48 0.61 +yorkshire yorkshire nom m s 0.01 0 0.01 0 +you_you you_you nom m s 0 0.07 0 0.07 +yougoslave yougoslave adj s 0.69 1.42 0.55 0.81 +yougoslaves yougoslave adj p 0.69 1.42 0.14 0.61 +youp youp ono 0.17 0.68 0.17 0.68 +youpi youpi ono 1.12 0.54 1.12 0.54 +youpin youpin nom m s 1.08 1.62 1.05 1.42 +youpine youpin nom f s 1.08 1.62 0.03 0.2 +yourte yourte nom f s 0.56 2.91 0.56 1.28 +yourtes yourte nom f p 0.56 2.91 0 1.62 +youtre youtre nom s 0.01 0 0.01 0 +youyou youyou nom m s 0 1.62 0 1.42 +youyous youyou nom m p 0 1.62 0 0.2 +yoyo yoyo nom m s 0.64 0.54 0.59 0.34 +yoyos yoyo nom m p 0.64 0.54 0.05 0.2 +ypérite ypérite nom f s 0 0.14 0 0.14 +yu y nom_sup m s 33.2 26.62 2.94 0 +yuan yuan nom m s 4.69 0 0.5 0 +yuans yuan nom m p 4.69 0 4.19 0 +yucca yucca nom m s 0.31 0.07 0.24 0 +yuccas yucca nom m p 0.31 0.07 0.07 0.07 +yue yue nom m 0.43 0 0.43 0 +yuppie yuppie nom s 1.04 0.07 0.45 0 +yuppies yuppie nom p 1.04 0.07 0.6 0.07 +yèbles yèble nom f p 0 0.14 0 0.14 +yé_yé yé_yé nom m 0 0.14 0 0.14 +yéménites yéménite nom p 0.01 0.07 0.01 0.07 +yéti yéti nom m s 0.65 0.14 0.65 0.14 +yéyé yéyé nom s 0.41 0.34 0.41 0.2 +yéyés yéyé nom p 0.41 0.34 0 0.14 +z z nom m 5.39 5.07 5.39 5.07 +zadé zader ver m s 0 0.47 0 0.47 par:pas; +zaibatsu zaibatsu nom m 0.01 0 0.01 0 +zain zain adj m s 0 0.07 0 0.07 +zakouski zakouski nom m 0.62 0.34 0.62 0.07 +zakouskis zakouski nom m p 0.62 0.34 0 0.27 +zani zani nom m s 0.04 0 0.04 0 +zanimaux zanimaux nom m p 0 0.07 0 0.07 +zanzi zanzi nom m s 0.02 8.04 0.02 8.04 +zanzibar zanzibar nom m s 0.01 0 0.01 0 +zappant zapper ver 2.73 0.14 0.01 0 par:pre; +zappe zapper ver 2.73 0.14 1.04 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zapper zapper ver 2.73 0.14 0.75 0.07 inf; +zapperai zapper ver 2.73 0.14 0.02 0 ind:fut:1s; +zapperait zapper ver 2.73 0.14 0.01 0 cnd:pre:3s; +zappes zapper ver 2.73 0.14 0.17 0 ind:pre:2s; +zappeur zappeur nom m s 0.14 0 0.14 0 +zappez zapper ver 2.73 0.14 0.09 0 imp:pre:2p;ind:pre:2p; +zapping zapping nom m s 0.02 0 0.02 0 +zappé zapper ver m s 2.73 0.14 0.64 0.07 par:pas; +zarabe zarabe nom s 0.1 0 0.1 0 +zarbi zarbi adj s 0.7 0.14 0.63 0.14 +zarbis zarbi adj m p 0.7 0.14 0.07 0 +zazou zazou adj m s 0.06 1.01 0.04 1.01 +zazous zazou nom m p 0.11 0.88 0.07 0.2 +zaïrois zaïrois nom m 0.01 0 0.01 0 +zaïroise zaïrois adj f s 0.01 0.14 0 0.07 +zaïroises zaïrois adj f p 0.01 0.14 0.01 0.07 +zeb zeb nom m s 0.5 0.07 0.5 0.07 +zef zef nom m s 0.01 4.53 0.01 4.53 +zelle zelle nom m s 0.71 0.74 0.71 0.74 +zemstvo zemstvo nom m s 0 0.07 0 0.07 +zen zen adj m s 2.55 1.76 2.55 1.76 +zens zen nom m p 0.93 0.81 0.01 0.2 +zeppelin zeppelin nom m s 0.07 0.41 0.04 0.14 +zeppelins zeppelin nom m p 0.07 0.41 0.03 0.27 +zest zest nom m s 0.05 0.07 0.05 0.07 +zeste zeste nom m s 0.7 0.88 0.69 0.74 +zester zester ver 0.01 0 0.01 0 inf; +zestes zeste nom m p 0.7 0.88 0.01 0.14 +zibeline zibeline nom f s 1.48 1.08 0.86 0.81 +zibelines zibeline nom f p 1.48 1.08 0.61 0.27 +zicmu zicmu nom f s 0.14 0 0.14 0 +zieute zieuter ver 0.16 0.88 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zieutent zieuter ver 0.16 0.88 0 0.14 ind:pre:3p; +zieuter zieuter ver 0.16 0.88 0.06 0.34 inf; +zieutes zieuter ver 0.16 0.88 0.01 0.07 ind:pre:2s; +zieutez zieuter ver 0.16 0.88 0.02 0 imp:pre:2p; +zig zig nom m s 1.16 0.68 1.16 0.68 +zig_zig zig_zig adv 0.03 0 0.03 0 +ziggourat ziggourat nom f s 0.05 0.07 0.05 0 +ziggourats ziggourat nom f p 0.05 0.07 0 0.07 +zigomar zigomar nom m s 0.02 0.27 0.01 0.2 +zigomars zigomar nom m p 0.02 0.27 0.01 0.07 +zigoto zigoto nom m s 0.3 1.42 0.25 0.68 +zigotos zigoto nom m p 0.3 1.42 0.05 0.74 +zigouillais zigouiller ver 1.59 1.22 0 0.07 ind:imp:1s; +zigouillait zigouiller ver 1.59 1.22 0 0.07 ind:imp:3s; +zigouille zigouiller ver 1.59 1.22 0.45 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zigouillent zigouiller ver 1.59 1.22 0.01 0 ind:pre:3p; +zigouiller zigouiller ver 1.59 1.22 0.54 0.47 inf; +zigouillez zigouiller ver 1.59 1.22 0.03 0.07 imp:pre:2p;ind:pre:2p; +zigouillé zigouiller ver m s 1.59 1.22 0.46 0.27 par:pas; +zigouillées zigouiller ver f p 1.59 1.22 0.01 0 par:pas; +zigouillés zigouiller ver m p 1.59 1.22 0.1 0.07 par:pas; +zigounette zigounette nom f s 0.14 0.07 0.14 0.07 +zigue zigue nom m s 0.34 0.74 0.3 0.54 +zigues zigue nom m p 0.34 0.74 0.03 0.2 +zigzag zigzag nom m s 0.42 2.64 0.36 1.49 +zigzagant zigzagant adj m s 0 0.61 0 0.2 +zigzagante zigzagant adj f s 0 0.61 0 0.34 +zigzagantes zigzagant adj f p 0 0.61 0 0.07 +zigzags zigzag nom m p 0.42 2.64 0.05 1.15 +zigzagua zigzaguer ver 0.82 4.66 0 0.2 ind:pas:3s; +zigzaguai zigzaguer ver 0.82 4.66 0 0.07 ind:pas:1s; +zigzaguaient zigzaguer ver 0.82 4.66 0 0.41 ind:imp:3p; +zigzaguait zigzaguer ver 0.82 4.66 0.04 0.81 ind:imp:3s; +zigzaguant zigzaguer ver 0.82 4.66 0.14 1.42 par:pre; +zigzague zigzaguer ver 0.82 4.66 0.17 0.54 ind:pre:1s;ind:pre:3s; +zigzaguent zigzaguer ver 0.82 4.66 0.01 0.2 ind:pre:3p; +zigzaguer zigzaguer ver 0.82 4.66 0.41 0.68 inf; +zigzaguèrent zigzaguer ver 0.82 4.66 0 0.07 ind:pas:3p; +zigzagué zigzaguer ver m s 0.82 4.66 0.04 0.2 par:pas; +zigzaguée zigzaguer ver f s 0.82 4.66 0 0.07 par:pas; +zinc zinc nom m s 2.12 17.3 1.96 16.49 +zincs zinc nom m p 2.12 17.3 0.16 0.81 +zingage zingage nom m s 0 0.07 0 0.07 +zingaro zingaro nom m s 0.1 17.97 0.1 17.97 +zingué zinguer ver m s 0 0.14 0 0.07 par:pas; +zingués zinguer ver m p 0 0.14 0 0.07 par:pas; +zinnia zinnia nom m s 0.11 0.34 0.01 0.07 +zinnias zinnia nom m p 0.11 0.34 0.1 0.27 +zinzin zinzin adj m s 0.64 0.41 0.64 0.41 +zinzins zinzin nom m p 0.27 0.74 0.08 0.2 +zinzolin zinzolin adj m p 0 0.07 0 0.07 +zip zip nom m s 0.78 0.41 0.78 0.41 +zippa zipper ver 0.25 0.2 0 0.07 ind:pas:3s; +zippait zipper ver 0.25 0.2 0 0.07 ind:imp:3s; +zipper zipper ver 0.25 0.2 0.21 0.07 inf; +zippé zipper ver m s 0.25 0.2 0.04 0 par:pas; +zircon zircon nom m s 0.2 0 0.18 0 +zirconium zirconium nom m s 0.05 0 0.05 0 +zircons zircon nom m p 0.2 0 0.02 0 +zizanie zizanie nom f s 0.56 0.41 0.56 0.34 +zizanies zizanie nom f p 0.56 0.41 0 0.07 +zizi zizi nom m s 2.89 2.84 2.69 2.3 +zizique zizique nom f s 0.17 0.34 0.17 0.34 +zizis zizi nom m p 2.89 2.84 0.2 0.54 +zloty zloty nom m s 1.29 0.07 0.01 0 +zlotys zloty nom m p 1.29 0.07 1.28 0.07 +zob zob nom m s 1.57 1.35 1.54 1.35 +zobs zob nom m p 1.57 1.35 0.03 0 +zodiac zodiac nom m s 0.01 0 0.01 0 +zodiacal zodiacal adj m s 0.14 0.07 0.14 0.07 +zodiacale zodiacal adj f s 0.14 0.07 0.01 0 +zodiaque zodiaque nom m s 0.53 0.68 0.53 0.68 +zombi zombi nom m s 0.65 3.58 0.28 2.97 +zombie zombie nom m s 5.04 1.01 2.33 0.54 +zombies zombie nom m p 5.04 1.01 2.71 0.47 +zombification zombification nom f s 0.02 0 0.02 0 +zombis zombi nom m p 0.65 3.58 0.37 0.61 +zona zona nom m s 0.37 0.61 0.36 0.61 +zonage zonage nom m s 0.1 0 0.1 0 +zonait zoner ver 0.23 0.81 0.04 0.07 ind:imp:3s; +zonal zonal adj m s 0 0.07 0 0.07 +zonant zoner ver 0.23 0.81 0.01 0.07 par:pre; +zonard zonard nom m s 0.18 4.26 0.08 1.76 +zonarde zonard nom f s 0.18 4.26 0 0.27 +zonardes zonard nom f p 0.18 4.26 0 0.14 +zonards zonard nom m p 0.18 4.26 0.1 2.09 +zonas zona nom m p 0.37 0.61 0.01 0 +zone zone nom f s 53.94 42.5 46.97 34.39 +zoner zoner ver 0.23 0.81 0.03 0.54 inf; +zonera zoner ver 0.23 0.81 0.01 0 ind:fut:3s; +zones zone nom f p 53.94 42.5 6.98 8.11 +zone_clé zone_clé nom f p 0 0.07 0 0.07 +zoning zoning nom m s 0.01 0 0.01 0 +zonzon zonzon nom m s 0.33 0.54 0.33 0.54 +zoné zoner ver m s 0.23 0.81 0.13 0.14 par:pas; +zoo zoo nom m s 12.17 6.49 11.45 6.08 +zoologie zoologie nom f s 0.4 0.34 0.4 0.34 +zoologique zoologique adj s 0.36 1.22 0.35 1.01 +zoologiques zoologique adj m p 0.36 1.22 0.01 0.2 +zoologiste zoologiste nom s 0.25 0 0.25 0 +zoologue zoologue nom m s 0.02 0 0.02 0 +zoom zoom nom m s 2.4 0.41 2.27 0.34 +zoome zoomer ver 1.49 0 0.58 0 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zoomer zoomer ver 1.49 0 0.37 0 inf; +zoomes zoomer ver 1.49 0 0.28 0 ind:pre:2s; +zoomez zoomer ver 1.49 0 0.26 0 imp:pre:2p; +zooms zoom nom m p 2.4 0.41 0.12 0.07 +zoophile zoophile adj f s 0.03 0.14 0.01 0.14 +zoophiles zoophile adj f p 0.03 0.14 0.02 0 +zoophilie zoophilie nom f s 0.08 0 0.08 0 +zoos zoo nom m p 12.17 6.49 0.72 0.41 +zoreille zoreille nom m s 0.02 0.07 0.02 0 +zoreilles zoreille nom m p 0.02 0.07 0 0.07 +zorille zorille nom f s 0 0.07 0 0.07 +zoroastrien zoroastrien nom m s 0.02 0 0.01 0 +zoroastriens zoroastrien nom m p 0.02 0 0.01 0 +zoroastrisme zoroastrisme nom m s 0.01 0 0.01 0 +zou zou ono 1.86 0.54 1.86 0.54 +zouave zouave nom m s 0.46 2.7 0.46 1.76 +zouaves zouave nom m p 0.46 2.7 0 0.95 +zouk zouk nom m s 0.01 0 0.01 0 +zoulou zoulou adj m s 0.16 0.07 0.15 0 +zouloue zoulou adj f s 0.16 0.07 0.01 0 +zoulous zoulou nom m p 0.11 0.07 0.05 0.07 +zoziaux zoziaux nom m p 0.01 0.07 0.01 0.07 +zozo zozo nom m s 0.88 0.81 0.7 0.41 +zozos zozo nom m p 0.88 0.81 0.18 0.41 +zozotait zozoter ver 0.06 0.61 0 0.14 ind:imp:3s; +zozotant zozoter ver 0.06 0.61 0 0.34 par:pre; +zozote zozoter ver 0.06 0.61 0.05 0.07 ind:pre:3s; +zozotement zozotement nom m s 0.01 0.14 0.01 0.07 +zozotements zozotement nom m p 0.01 0.14 0 0.07 +zozotes zozoter ver 0.06 0.61 0 0.07 ind:pre:2s; +zozoteuse zozoteur nom f s 0 0.07 0 0.07 +zozotez zozoter ver 0.06 0.61 0.01 0 ind:pre:2p; +zurichois zurichois nom m 0 0.14 0 0.14 +zurichoise zurichois adj f s 0 0.14 0 0.07 +zut zut ono 13.69 7.16 13.69 7.16 +zydeco zydeco nom f s 0.01 0 0.01 0 +zyeuta zyeuter ver 0.16 2.77 0 0.07 ind:pas:3s; +zyeutais zyeuter ver 0.16 2.77 0 0.07 ind:imp:1s; +zyeutait zyeuter ver 0.16 2.77 0 0.14 ind:imp:3s; +zyeutant zyeuter ver 0.16 2.77 0 0.2 par:pre; +zyeute zyeuter ver 0.16 2.77 0.12 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zyeuter zyeuter ver 0.16 2.77 0.02 0.95 inf; +zyeutes zyeuter ver 0.16 2.77 0.01 0 ind:pre:2s; +zyeuté zyeuter ver m s 0.16 2.77 0.01 0.14 par:pas; +zygoma zygoma nom m s 0 0.07 0 0.07 +zygomatique zygomatique adj f s 0.16 0.34 0.11 0.14 +zygomatiques zygomatique adj f p 0.16 0.34 0.05 0.2 +zygote zygote nom m s 0.06 0 0.06 0 +zyklon zyklon nom m s 0.82 0 0.82 0 +zzz zzz ono 0.04 0 0.04 0 +zzzz zzzz ono 0 0.07 0 0.07 +zèbre zèbre nom m s 3.8 5.14 2.65 3.04 +zèbrent zébrer ver 0.2 2.84 0 0.07 ind:pre:3p; +zèbres zèbre nom m p 3.8 5.14 1.15 2.09 +zèle zèle nom m s 4.92 10.68 4.92 10.61 +zèles zèle nom m p 4.92 10.68 0 0.07 +zébra zébrer ver 0.2 2.84 0.16 0.14 ind:pas:3s; +zébraient zébrer ver 0.2 2.84 0 0.54 ind:imp:3p; +zébrait zébrer ver 0.2 2.84 0 0.14 ind:imp:3s; +zébrant zébrer ver 0.2 2.84 0 0.41 par:pre; +zébrer zébrer ver 0.2 2.84 0 0.27 inf; +zébrure zébrure nom f s 0.03 1.49 0 0.47 +zébrures zébrure nom f p 0.03 1.49 0.03 1.01 +zébré zébré adj m s 0.04 0.68 0.03 0.14 +zébrée zébré adj f s 0.04 0.68 0.02 0.27 +zébrées zébrer ver f p 0.2 2.84 0 0.14 par:pas; +zébrés zébrer ver m p 0.2 2.84 0.01 0.14 par:pas; +zébu zébu nom m s 0.06 0.41 0.06 0.2 +zébus zébu nom m p 0.06 0.41 0 0.2 +zélateur zélateur nom m s 0.02 0.41 0 0.07 +zélateurs zélateur nom m p 0.02 0.41 0 0.34 +zélatrice zélateur nom f s 0.02 0.41 0.02 0 +zélote zélote nom m s 0.08 0.81 0.02 0.34 +zélotes zélote nom m p 0.08 0.81 0.06 0.47 +zélé zélé adj m s 1.19 2.97 0.69 1.42 +zélée zélé adj f s 1.19 2.97 0.11 0.47 +zélées zélé adj f p 1.19 2.97 0 0.2 +zélés zélé adj m p 1.19 2.97 0.39 0.88 +zénana zénana nom f s 0 0.07 0 0.07 +zénith zénith nom m s 0.63 3.38 0.63 3.38 +zénithale zénithal adj f s 0 0.14 0 0.07 +zénithales zénithal adj f p 0 0.14 0 0.07 +zéphire zéphire adj s 0.1 0 0.1 0 +zéphyr zéphyr nom m s 0.09 0.61 0.04 0.47 +zéphyrs zéphyr nom m p 0.09 0.61 0.05 0.14 +zéro zéro nom m s 32.85 18.24 30.44 16.49 +zéros zéro nom m p 32.85 18.24 2.41 1.76 +zézaie zézayer ver 0.02 0.74 0.01 0.27 ind:pre:3s; +zézaiement zézaiement nom m s 0.03 0.2 0.03 0.2 +zézaient zézayer ver 0.02 0.74 0 0.07 ind:pre:3p; +zézayaient zézayer ver 0.02 0.74 0 0.07 ind:imp:3p; +zézayant zézayer ver 0.02 0.74 0.01 0.2 par:pre; +zézaye zézayer ver 0.02 0.74 0 0.07 ind:pre:3s; +zézayer zézayer ver 0.02 0.74 0 0.07 inf; +zézette zézette nom f s 0.24 9.32 0.24 9.05 +zézettes zézette nom f p 0.24 9.32 0 0.27 +à à pre 12190.4 19209.05 12190.4 19209.05 +à_brûle_pourpoint à_brûle_pourpoint 0.14 0 0.14 0 +à_cloche_pied à_cloche_pied 0.22 0 0.22 0 +à_cropetons à_cropetons adv 0 0.07 0 0.07 +à_croupetons à_croupetons adv 0.01 0.95 0.01 0.95 +à_fortiori à_fortiori adv 0.16 0.2 0.16 0.2 +à_giorno à_giorno adv 0 0.07 0 0.07 +à_glagla à_glagla adv 0 0.07 0 0.07 +à_jeun à_jeun adv 1.45 3.85 1.27 3.85 +à_l_aveuglette à_l_aveuglette adv 1.11 2.16 1.11 2.16 +à_l_encan à_l_encan adv 0.01 0.14 0.01 0.14 +à_l_encontre à_l_encontre pre 2.67 1.89 2.67 1.89 +à_l_envi à_l_envi adv 0.2 0.61 0.2 0.61 +à_l_improviste à_l_improviste adv 2.67 4.53 2.67 4.53 +à_l_instar à_l_instar pre 0.26 6.42 0.26 6.42 +à_la_daumont à_la_daumont adv 0 0.07 0 0.07 +à_la_saint_glinglin à_la_saint_glinglin adv 0.02 0 0.02 0 +à_leur_encontre à_leur_encontre adv 0.03 0.07 0.03 0.07 +à_lurelure à_lurelure adv 0 0.2 0 0.2 +à_mon_encontre à_mon_encontre adv 0.05 0.14 0.05 0.14 +à_notre_encontre à_notre_encontre adv 0.02 0.07 0.02 0.07 +a_posteriori a_posteriori adv 0.05 0.2 0.04 0.07 +a_priori a_priori adv 1.04 3.85 0.41 1.28 +à_rebrousse_poil à_rebrousse_poil 0.08 0 0.08 0 +à_son_encontre à_son_encontre adv 0.05 0.2 0.05 0.2 +à_tire_larigot à_tire_larigot 0.17 0 0.17 0 +à_ton_encontre à_ton_encontre adv 0.02 0 0.02 0 +à_touche_touche à_touche_touche 0.01 0 0.01 0 +à_tue_tête à_tue_tête 0.54 0 0.54 0 +à_tâtons à_tâtons adv 0.6 8.78 0.6 8.78 +à_votre_encontre à_votre_encontre adv 0.15 0 0.15 0 +à_coup à_coup nom m s 0 4.8 0 0.54 +à_coup à_coup nom m p 0 4.8 0 4.26 +à_côté à_côté nom m s 0 0.68 0 0.34 +à_côté à_côté nom m p 0 0.68 0 0.34 +à_dieu_vat à_dieu_vat ono 0 0.07 0 0.07 +à_peu_près à_peu_près nom m 0 0.74 0 0.74 +à_pic à_pic nom m 0 1.42 0 1.08 +à_pic à_pic nom m p 0 1.42 0 0.34 +à_plat à_plat nom m s 0 0.27 0 0.14 +à_plat à_plat nom m p 0 0.27 0 0.14 +à_propos à_propos nom m 0 0.88 0 0.88 +à_valoir à_valoir nom m 0 0.27 0 0.27 +âcre âcre adj s 0.47 11.49 0.45 10.14 +âcrement âcrement adv 0 0.14 0 0.14 +âcres âcre adj p 0.47 11.49 0.01 1.35 +âcreté âcreté nom f s 0.11 0.95 0.11 0.95 +âge âge nom m s 152.59 217.43 150.45 205.27 +âges âge nom m p 152.59 217.43 2.13 12.16 +âgisme âgisme nom m s 0.02 0 0.02 0 +âgé âgé adj m s 19.81 30.74 7.67 14.39 +âgée âgé adj f s 19.81 30.74 7.75 8.92 +âgées âgé adj f p 19.81 30.74 1.91 1.69 +âgés âgé adj m p 19.81 30.74 2.48 5.74 +âme âme nom f s 141.59 151.62 122.22 129.53 +âme_soeur âme_soeur nom f s 0.04 0.14 0.04 0.14 +âmes âme nom f p 141.59 151.62 19.37 22.09 +âne âne nom m s 14.19 18.58 12.33 14.32 +ânerie ânerie nom f s 1.96 2.7 0.32 0.81 +âneries ânerie nom f p 1.96 2.7 1.64 1.89 +ânes âne nom m p 14.19 18.58 1.86 4.26 +ânesse ânesse nom f s 0.9 0.41 0.9 0.2 +ânesses ânesse nom f p 0.9 0.41 0 0.2 +ânier ânier nom m s 0 0.54 0 0.54 +ânon ânon nom m s 0.17 0.47 0.16 0.41 +ânonna ânonner ver 0.16 2.5 0 0.27 ind:pas:3s; +ânonnaient ânonner ver 0.16 2.5 0 0.14 ind:imp:3p; +ânonnait ânonner ver 0.16 2.5 0.14 0.68 ind:imp:3s; +ânonnant ânonner ver 0.16 2.5 0 0.47 par:pre; +ânonne ânonner ver 0.16 2.5 0 0.27 ind:pre:1s;ind:pre:3s; +ânonnement ânonnement nom m s 0 0.14 0 0.07 +ânonnements ânonnement nom m p 0 0.14 0 0.07 +ânonner ânonner ver 0.16 2.5 0.02 0.54 inf; +ânonnions ânonner ver 0.16 2.5 0 0.07 ind:imp:1p; +ânonnés ânonner ver m p 0.16 2.5 0 0.07 par:pas; +ânons ânon nom m p 0.17 0.47 0.01 0.07 +âpre âpre adj s 1.6 9.86 1.32 7.7 +âprement âprement adv 0.13 3.11 0.13 3.11 +âpres âpre adj p 1.6 9.86 0.27 2.16 +âpreté âpreté nom f s 0.04 2.77 0.04 2.7 +âpretés âpreté nom f p 0.04 2.77 0 0.07 +âtre âtre nom m s 0.1 5.88 0.08 5.61 +âtres âtre nom m p 0.1 5.88 0.01 0.27 +ça ça pro_dem s 8933.66 2477.64 8933.66 2477.64 +çruti çruti nom m s 0 0.07 0 0.07 +çà çà adv 7.78 21.15 7.78 21.15 +ère ère nom f s 13.23 7.84 12.91 7.64 +ères ère nom f p 13.23 7.84 0.32 0.2 +ès ès pre 0 1.08 0 1.08 +ève ève nom f s 0 19.93 0 19.93 +é é adv 0.05 0 0.05 0 +ébahi ébahir ver m s 0.46 1.96 0.16 0.61 par:pas; +ébahie ébahir ver f s 0.46 1.96 0.15 0.27 par:pas; +ébahies ébahi adj f p 0.27 3.18 0.01 0.27 +ébahir ébahir ver 0.46 1.96 0.02 0.07 inf; +ébahirons ébahir ver 0.46 1.96 0.01 0 ind:fut:1p; +ébahis ébahir ver m p 0.46 1.96 0.09 0.41 ind:pre:2s;par:pas; +ébahissait ébahir ver 0.46 1.96 0 0.34 ind:imp:3s; +ébahissant ébahir ver 0.46 1.96 0 0.07 par:pre; +ébahissement ébahissement nom m s 0 1.15 0 1.15 +ébahissent ébahir ver 0.46 1.96 0.01 0.14 ind:pre:3p; +ébahissons ébahir ver 0.46 1.96 0 0.07 ind:pre:1p; +ébahit ébahir ver 0.46 1.96 0.02 0 ind:pre:3s; +ébarbage ébarbage nom m s 0 0.07 0 0.07 +ébarbait ébarber ver 0 0.2 0 0.07 ind:imp:3s; +ébarber ébarber ver 0 0.2 0 0.07 inf; +ébarbé ébarber ver m s 0 0.2 0 0.07 par:pas; +ébat ébattre ver 0.1 3.18 0.01 0.07 ind:pre:3s; +ébats ébat nom m p 0.41 2.3 0.41 2.3 +ébattaient ébattre ver 0.1 3.18 0 0.74 ind:imp:3p; +ébattait ébattre ver 0.1 3.18 0.02 0.41 ind:imp:3s; +ébattant ébattre ver 0.1 3.18 0.01 0.2 par:pre; +ébattements ébattement nom m p 0 0.07 0 0.07 +ébattent ébattre ver 0.1 3.18 0.01 0.2 ind:pre:3p; +ébattit ébattre ver 0.1 3.18 0 0.07 ind:pas:3s; +ébattons ébattre ver 0.1 3.18 0 0.07 ind:pre:1p; +ébattre ébattre ver 0.1 3.18 0.05 1.35 inf; +ébattît ébattre ver 0.1 3.18 0 0.07 sub:imp:3s; +ébaubi ébaubir ver m s 0 0.41 0 0.14 par:pas; +ébaubie ébaubir ver f s 0 0.41 0 0.07 par:pas; +ébaubis ébaubir ver m p 0 0.41 0 0.14 par:pas; +ébaubissaient ébaubir ver 0 0.41 0 0.07 ind:imp:3p; +ébaucha ébaucher ver 0.05 7.97 0 2.36 ind:pas:3s; +ébauchai ébaucher ver 0.05 7.97 0 0.14 ind:pas:1s; +ébauchaient ébaucher ver 0.05 7.97 0 0.34 ind:imp:3p; +ébauchais ébaucher ver 0.05 7.97 0 0.2 ind:imp:1s; +ébauchait ébaucher ver 0.05 7.97 0 0.88 ind:imp:3s; +ébauchant ébaucher ver 0.05 7.97 0 0.68 par:pre; +ébauche ébauche nom f s 1.33 5.47 1.17 4.46 +ébauchent ébaucher ver 0.05 7.97 0 0.34 ind:pre:3p; +ébaucher ébaucher ver 0.05 7.97 0.03 1.15 inf; +ébauches ébauche nom f p 1.33 5.47 0.16 1.01 +ébaucheurs ébaucheur nom m p 0 0.07 0 0.07 +ébauchons ébaucher ver 0.05 7.97 0.01 0 ind:pre:1p; +ébauchât ébaucher ver 0.05 7.97 0 0.07 sub:imp:3s; +ébauchèrent ébaucher ver 0.05 7.97 0 0.27 ind:pas:3p; +ébauché ébauché adj m s 0.14 1.69 0 0.74 +ébauchée ébaucher ver f s 0.05 7.97 0 0.34 par:pas; +ébauchées ébauché adj f p 0.14 1.69 0 0.34 +ébauchés ébauché adj m p 0.14 1.69 0.14 0.34 +ébaudi ébaudir ver m s 0 0.07 0 0.07 par:pas; +éberlua éberluer ver 0.02 1.89 0 0.07 ind:pas:3s; +éberluait éberluer ver 0.02 1.89 0 0.14 ind:imp:3s; +éberlue éberluer ver 0.02 1.89 0 0.07 ind:pre:3s; +éberluer éberluer ver 0.02 1.89 0.01 0.07 inf; +éberlué éberlué adj m s 0.01 2.7 0.01 1.28 +éberluée éberluer ver f s 0.02 1.89 0.01 0.27 par:pas; +éberluées éberlué adj f p 0.01 2.7 0 0.14 +éberlués éberlué adj m p 0.01 2.7 0 0.61 +ébloui éblouir ver m s 3.88 19.73 0.65 5.68 par:pas; +éblouie éblouir ver f s 3.88 19.73 0.28 2.09 par:pas; +éblouies éblouir ver f p 3.88 19.73 0.03 0.2 par:pas; +éblouir éblouir ver 3.88 19.73 0.92 2.3 inf; +éblouira éblouir ver 3.88 19.73 0.03 0.07 ind:fut:3s; +éblouirai éblouir ver 3.88 19.73 0.1 0.07 ind:fut:1s; +éblouirait éblouir ver 3.88 19.73 0 0.14 cnd:pre:3s; +éblouirent éblouir ver 3.88 19.73 0 0.14 ind:pas:3p; +éblouirez éblouir ver 3.88 19.73 0 0.07 ind:fut:2p; +éblouis éblouir ver m p 3.88 19.73 0.65 1.82 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +éblouissaient éblouir ver 3.88 19.73 0 0.54 ind:imp:3p; +éblouissait éblouir ver 3.88 19.73 0.12 1.82 ind:imp:3s; +éblouissant éblouissant adj m s 2.07 13.24 0.65 3.04 +éblouissante éblouissant adj f s 2.07 13.24 1 6.28 +éblouissantes éblouissant adj f p 2.07 13.24 0.14 2.36 +éblouissants éblouissant adj m p 2.07 13.24 0.27 1.55 +éblouisse éblouir ver 3.88 19.73 0.04 0.07 sub:pre:3s; +éblouissement éblouissement nom m s 0.29 5.95 0.29 5.14 +éblouissements éblouissement nom m p 0.29 5.95 0 0.81 +éblouissent éblouir ver 3.88 19.73 0.27 1.01 ind:pre:3p; +éblouisses éblouir ver 3.88 19.73 0 0.07 sub:pre:2s; +éblouissez éblouir ver 3.88 19.73 0.03 0.07 imp:pre:2p;ind:pre:2p; +éblouissions éblouir ver 3.88 19.73 0 0.07 ind:imp:1p; +éblouit éblouir ver 3.88 19.73 0.58 2.57 ind:pre:3s;ind:pas:3s; +ébonite ébonite nom f s 0 0.88 0 0.88 +éborgna éborgner ver 0.47 0.54 0 0.07 ind:pas:3s; +éborgne éborgner ver 0.47 0.54 0.02 0.14 ind:pre:1s;ind:pre:3s; +éborgner éborgner ver 0.47 0.54 0.41 0.2 inf; +éborgné éborgner ver m s 0.47 0.54 0.04 0.14 par:pas; +éboueur éboueur nom m s 1.93 2.7 0.97 0.61 +éboueurs éboueur nom m p 1.93 2.7 0.96 2.09 +ébouillanta ébouillanter ver 0.58 0.61 0.14 0 ind:pas:3s; +ébouillante ébouillanter ver 0.58 0.61 0.05 0.14 ind:pre:1s;ind:pre:3s; +ébouillanter ébouillanter ver 0.58 0.61 0.16 0.2 inf; +ébouillanté ébouillanter ver m s 0.58 0.61 0.22 0.14 par:pas; +ébouillantée ébouillanté adj f s 0.15 0.47 0.14 0.07 +ébouillantées ébouillanté adj f p 0.15 0.47 0.01 0.07 +ébouillantés ébouillanté adj m p 0.15 0.47 0 0.2 +éboula ébouler ver 0.03 1.82 0 0.07 ind:pas:3s; +éboulaient ébouler ver 0.03 1.82 0 0.14 ind:imp:3p; +éboulait ébouler ver 0.03 1.82 0 0.14 ind:imp:3s; +éboulant ébouler ver 0.03 1.82 0 0.14 par:pre; +éboule ébouler ver 0.03 1.82 0 0.41 ind:pre:3s; +éboulement éboulement nom m s 0.54 2.36 0.48 1.49 +éboulements éboulement nom m p 0.54 2.36 0.06 0.88 +éboulent ébouler ver 0.03 1.82 0 0.07 ind:pre:3p; +ébouler ébouler ver 0.03 1.82 0.01 0.07 inf; +ébouleuses ébouleux adj f p 0 0.07 0 0.07 +éboulis éboulis nom m 0.16 3.99 0.16 3.99 +éboulèrent ébouler ver 0.03 1.82 0 0.07 ind:pas:3p; +éboulé ébouler ver m s 0.03 1.82 0.01 0.14 par:pas; +éboulée ébouler ver f s 0.03 1.82 0 0.2 par:pas; +éboulées ébouler ver f p 0.03 1.82 0 0.2 par:pas; +éboulés ébouler ver m p 0.03 1.82 0.01 0.2 par:pas; +ébouriffa ébouriffer ver 0.08 2.97 0 0.74 ind:pas:3s; +ébouriffaient ébouriffer ver 0.08 2.97 0 0.14 ind:imp:3p; +ébouriffait ébouriffer ver 0.08 2.97 0.01 0.41 ind:imp:3s; +ébouriffant ébouriffant adj m s 0.03 0.07 0.01 0.07 +ébouriffante ébouriffant adj f s 0.03 0.07 0.02 0 +ébouriffe ébouriffer ver 0.08 2.97 0.02 0.14 imp:pre:2s;ind:pre:3s; +ébouriffent ébouriffer ver 0.08 2.97 0 0.2 ind:pre:3p; +ébouriffer ébouriffer ver 0.08 2.97 0 0.2 inf; +ébouriffé ébouriffé adj m s 0.22 3.45 0.05 1.01 +ébouriffée ébouriffé adj f s 0.22 3.45 0.12 0.74 +ébouriffées ébouriffé adj f p 0.22 3.45 0 0.2 +ébouriffés ébouriffé adj m p 0.22 3.45 0.05 1.49 +ébouser ébouser ver 0 0.07 0 0.07 inf; +ébouzer ébouzer ver 0 0.14 0 0.07 inf; +ébouzé ébouzer ver m s 0 0.14 0 0.07 par:pas; +éboué ébouer ver m s 0 1.82 0 1.82 par:pas; +ébrancha ébrancher ver 0 0.68 0 0.14 ind:pas:3s; +ébranchait ébrancher ver 0 0.68 0 0.14 ind:imp:3s; +ébranchant ébrancher ver 0 0.68 0 0.07 par:pre; +ébranchement ébranchement nom m s 0 0.07 0 0.07 +ébrancher ébrancher ver 0 0.68 0 0.14 inf; +ébrancherez ébrancher ver 0 0.68 0 0.07 ind:fut:2p; +ébranché ébranché adj m s 0 0.07 0 0.07 +ébranchés ébrancher ver m p 0 0.68 0 0.14 par:pas; +ébranla ébranler ver 3.37 23.45 0.15 3.85 ind:pas:3s; +ébranlaient ébranler ver 3.37 23.45 0 0.95 ind:imp:3p; +ébranlait ébranler ver 3.37 23.45 0.01 2.7 ind:imp:3s; +ébranlant ébranler ver 3.37 23.45 0 0.74 par:pre; +ébranle ébranler ver 3.37 23.45 0.22 2.97 imp:pre:2s;ind:pre:3s; +ébranlement ébranlement nom m s 0.01 1.55 0.01 1.08 +ébranlements ébranlement nom m p 0.01 1.55 0 0.47 +ébranlent ébranler ver 3.37 23.45 0.03 1.08 ind:pre:3p; +ébranler ébranler ver 3.37 23.45 1.35 3.78 inf; +ébranlera ébranler ver 3.37 23.45 0.03 0.07 ind:fut:3s; +ébranlerai ébranler ver 3.37 23.45 0.01 0 ind:fut:1s; +ébranleraient ébranler ver 3.37 23.45 0.01 0.07 cnd:pre:3p; +ébranlerais ébranler ver 3.37 23.45 0 0.07 cnd:pre:1s; +ébranlerait ébranler ver 3.37 23.45 0 0.07 cnd:pre:3s; +ébranlât ébranler ver 3.37 23.45 0 0.14 sub:imp:3s; +ébranlèrent ébranler ver 3.37 23.45 0 0.61 ind:pas:3p; +ébranlé ébranler ver m s 3.37 23.45 0.89 3.51 par:pas; +ébranlée ébranler ver f s 3.37 23.45 0.59 2.03 par:pas; +ébranlées ébranler ver f p 3.37 23.45 0.01 0.2 par:pas; +ébranlés ébranler ver m p 3.37 23.45 0.06 0.61 par:pas; +ébriété ébriété nom f s 0.73 1.15 0.73 1.15 +ébroua ébrouer ver 0.01 8.11 0 1.76 ind:pas:3s; +ébrouaient ébrouer ver 0.01 8.11 0 0.27 ind:imp:3p; +ébrouais ébrouer ver 0.01 8.11 0 0.07 ind:imp:1s; +ébrouait ébrouer ver 0.01 8.11 0 1.55 ind:imp:3s; +ébrouant ébrouer ver 0.01 8.11 0 1.22 par:pre; +ébroue ébrouer ver 0.01 8.11 0 1.35 ind:pre:1s;ind:pre:3s; +ébrouement ébrouement nom m s 0 0.14 0 0.14 +ébrouent ébrouer ver 0.01 8.11 0 0.61 ind:pre:3p; +ébrouer ébrouer ver 0.01 8.11 0.01 0.95 inf; +ébrouèrent ébrouer ver 0.01 8.11 0 0.14 ind:pas:3p; +ébroué ébrouer ver m s 0.01 8.11 0 0.2 par:pas; +ébruita ébruiter ver 1.32 1.22 0 0.07 ind:pas:3s; +ébruite ébruiter ver 1.32 1.22 0.58 0.27 imp:pre:2s;ind:pre:3s; +ébruitent ébruiter ver 1.32 1.22 0.02 0 ind:pre:3p; +ébruiter ébruiter ver 1.32 1.22 0.37 0.54 inf; +ébruitera ébruiter ver 1.32 1.22 0.01 0 ind:fut:3s; +ébruiterait ébruiter ver 1.32 1.22 0.02 0 cnd:pre:3s; +ébruitez ébruiter ver 1.32 1.22 0.22 0.07 imp:pre:2p;ind:pre:2p; +ébruitons ébruiter ver 1.32 1.22 0.05 0 imp:pre:1p;ind:pre:1p; +ébruitât ébruiter ver 1.32 1.22 0 0.07 sub:imp:3s; +ébruité ébruiter ver m s 1.32 1.22 0.03 0 par:pas; +ébruitée ébruiter ver f s 1.32 1.22 0.01 0.2 par:pas; +ébrèche ébrécher ver 0.74 0.95 0.03 0.07 ind:pre:3s; +ébréchaient ébrécher ver 0.74 0.95 0 0.07 ind:imp:3p; +ébrécher ébrécher ver 0.74 0.95 0 0.14 inf; +ébréchure ébréchure nom f s 0 0.2 0 0.07 +ébréchures ébréchure nom f p 0 0.2 0 0.14 +ébréché ébrécher ver m s 0.74 0.95 0.39 0.14 par:pas; +ébréchée ébrécher ver f s 0.74 0.95 0.32 0.27 par:pas; +ébréchées ébréché adj f p 0.37 3.65 0.14 0.61 +ébréchés ébréché adj m p 0.37 3.65 0 0.81 +ébullition ébullition nom f s 0.79 1.35 0.79 1.35 +ébène ébène nom f s 0.51 4.26 0.51 4.26 +ébéniste ébéniste nom s 0.24 1.55 0.11 1.35 +ébénisterie ébénisterie nom f s 0 0.41 0 0.34 +ébénisteries ébénisterie nom f p 0 0.41 0 0.07 +ébénistes ébéniste nom p 0.24 1.55 0.13 0.2 +écaillage écaillage nom m s 0.03 0 0.03 0 +écaillaient écailler ver 0.74 4.66 0 0.34 ind:imp:3p; +écaillait écailler ver 0.74 4.66 0.14 0.61 ind:imp:3s; +écaillant écailler ver 0.74 4.66 0 0.34 par:pre; +écaille écaille nom f s 1.42 11.35 0.57 6.15 +écaillent écailler ver 0.74 4.66 0.01 0.2 ind:pre:3p; +écailler écailler ver 0.74 4.66 0.28 0.61 inf; +écaillera écailler ver 0.74 4.66 0.01 0 ind:fut:3s; +écaillerai écailler ver 0.74 4.66 0 0.07 ind:fut:1s; +écaillers écailler nom m p 0.11 0.27 0 0.07 +écailles écaille nom f p 1.42 11.35 0.84 5.2 +écailleur écailleur nom m s 0 0.07 0 0.07 +écailleuse écailleux adj f s 0 0.74 0 0.34 +écailleuses écailleux adj f p 0 0.74 0 0.07 +écailleux écailleux adj m 0 0.74 0 0.34 +écaillure écaillure nom f s 0 0.14 0 0.07 +écaillures écaillure nom f p 0 0.14 0 0.07 +écaillère écailler nom f s 0.11 0.27 0.01 0 +écaillé écailler ver m s 0.74 4.66 0.04 0.27 par:pas; +écaillée écailler ver f s 0.74 4.66 0.06 0.81 par:pas; +écaillées écaillé adj f p 0.07 2.97 0.03 0.41 +écaillés écaillé adj m p 0.07 2.97 0.01 0.27 +écalait écaler ver 0 0.14 0 0.07 ind:imp:3s; +écale écale nom f s 0.02 0.07 0 0.07 +écaler écaler ver 0 0.14 0 0.07 inf; +écales écale nom f p 0.02 0.07 0.02 0 +écarlate écarlate adj s 0.78 8.58 0.66 5.95 +écarlates écarlate adj p 0.78 8.58 0.12 2.64 +écarquilla écarquiller ver 0.76 8.85 0 0.95 ind:pas:3s; +écarquillai écarquiller ver 0.76 8.85 0 0.14 ind:pas:1s; +écarquillaient écarquiller ver 0.76 8.85 0.01 0.34 ind:imp:3p; +écarquillais écarquiller ver 0.76 8.85 0.1 0.07 ind:imp:1s; +écarquillait écarquiller ver 0.76 8.85 0 0.54 ind:imp:3s; +écarquillant écarquiller ver 0.76 8.85 0 0.95 par:pre; +écarquille écarquiller ver 0.76 8.85 0.11 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écarquillement écarquillement nom m s 0 0.2 0 0.2 +écarquillent écarquiller ver 0.76 8.85 0 0.2 ind:pre:3p; +écarquiller écarquiller ver 0.76 8.85 0 0.41 inf; +écarquillez écarquiller ver 0.76 8.85 0.02 0 imp:pre:2p;ind:pre:2p; +écarquillions écarquiller ver 0.76 8.85 0 0.14 ind:imp:1p; +écarquillèrent écarquiller ver 0.76 8.85 0.1 0.07 ind:pas:3p; +écarquillé écarquiller ver m s 0.76 8.85 0 0.34 par:pas; +écarquillée écarquiller ver f s 0.76 8.85 0 0.07 par:pas; +écarquillées écarquiller ver f p 0.76 8.85 0 0.2 par:pas; +écarquillés écarquiller ver m p 0.76 8.85 0.41 3.24 par:pas; +écart écart nom m s 14.71 34.53 14.36 32.3 +écarta écarter ver 24.83 92.36 0.51 13.72 ind:pas:3s; +écartai écarter ver 24.83 92.36 0 1.89 ind:pas:1s; +écartaient écarter ver 24.83 92.36 0.04 4.66 ind:imp:3p; +écartais écarter ver 24.83 92.36 0.06 0.68 ind:imp:1s;ind:imp:2s; +écartait écarter ver 24.83 92.36 0.51 7.23 ind:imp:3s; +écartant écarter ver 24.83 92.36 0.16 9.86 par:pre; +écarte écarter ver 24.83 92.36 5.95 13.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écartela écarteler ver 0.42 3.18 0 0.07 ind:pas:3s; +écartelaient écarteler ver 0.42 3.18 0 0.14 ind:imp:3p; +écartelait écarteler ver 0.42 3.18 0 0.2 ind:imp:3s; +écartelant écarteler ver 0.42 3.18 0.01 0.07 par:pre; +écarteler écarteler ver 0.42 3.18 0.06 0.34 inf; +écartelé écarteler ver m s 0.42 3.18 0.26 0.95 par:pas; +écartelée écarteler ver f s 0.42 3.18 0.02 0.2 par:pas; +écartelées écartelé adj f p 0.19 1.96 0.14 0.47 +écartelés écartelé adj m p 0.19 1.96 0.01 0.27 +écartement écartement nom m s 0.05 0.47 0.05 0.41 +écartements écartement nom m p 0.05 0.47 0 0.07 +écartent écarter ver 24.83 92.36 0.26 3.78 ind:pre:3p; +écarter écarter ver 24.83 92.36 4.77 16.89 inf;; +écartera écarter ver 24.83 92.36 0.05 0.14 ind:fut:3s; +écarteraient écarter ver 24.83 92.36 0 0.07 cnd:pre:3p; +écarterait écarter ver 24.83 92.36 0.04 0.07 cnd:pre:3s; +écarteras écarter ver 24.83 92.36 0.12 0 ind:fut:2s; +écarterez écarter ver 24.83 92.36 0.01 0 ind:fut:2p; +écarteront écarter ver 24.83 92.36 0.01 0.07 ind:fut:3p; +écartes écarter ver 24.83 92.36 0.72 0.2 ind:pre:2s; +écarteur écarteur nom m s 0.27 0 0.27 0 +écartez écarter ver 24.83 92.36 6.3 1.01 imp:pre:2p;ind:pre:2p; +écartions écarter ver 24.83 92.36 0.02 0.14 ind:imp:1p; +écartons écarter ver 24.83 92.36 0.32 0.14 imp:pre:1p;ind:pre:1p; +écarts écart nom m p 14.71 34.53 0.35 2.23 +écartâmes écarter ver 24.83 92.36 0 0.07 ind:pas:1p; +écartât écarter ver 24.83 92.36 0 0.41 sub:imp:3s; +écartèle écarteler ver 0.42 3.18 0.05 0.47 ind:pre:1s;ind:pre:3s; +écartèlement écartèlement nom m s 0.03 0.34 0.02 0.27 +écartèlements écartèlement nom m p 0.03 0.34 0.01 0.07 +écartèlent écarteler ver 0.42 3.18 0 0.27 ind:pre:3p; +écartèleront écarteler ver 0.42 3.18 0.01 0 ind:fut:3p; +écartèrent écarter ver 24.83 92.36 0.12 2.43 ind:pas:3p; +écarté écarter ver m s 24.83 92.36 2.69 8.04 par:pas; +écartée écarter ver f s 24.83 92.36 0.88 1.89 par:pas; +écartées écarté adj f p 3.36 16.76 1.57 8.85 +écartés écarter ver m p 24.83 92.36 1.1 3.11 par:pas; +écervelé écervelé adj m s 0.81 0.61 0.46 0.14 +écervelée écervelé nom f s 0.91 0.88 0.34 0.27 +écervelées écervelé nom f p 0.91 0.88 0.17 0.07 +écervelés écervelé adj m p 0.81 0.61 0.17 0.14 +échafaud échafaud nom m s 0.85 2.43 0.85 2.23 +échafauda échafauder ver 0.44 3.24 0 0.07 ind:pas:3s; +échafaudage échafaudage nom m s 0.86 6.42 0.7 3.78 +échafaudages échafaudage nom m p 0.86 6.42 0.15 2.64 +échafaudaient échafauder ver 0.44 3.24 0.01 0.2 ind:imp:3p; +échafaudais échafauder ver 0.44 3.24 0 0.14 ind:imp:1s; +échafaudait échafauder ver 0.44 3.24 0 0.74 ind:imp:3s; +échafaudant échafauder ver 0.44 3.24 0.14 0.41 par:pre; +échafaude échafauder ver 0.44 3.24 0.02 0.2 ind:pre:3s; +échafaudent échafauder ver 0.44 3.24 0 0.14 ind:pre:3p; +échafauder échafauder ver 0.44 3.24 0.17 0.54 inf; +échafaudons échafauder ver 0.44 3.24 0 0.07 ind:pre:1p; +échafauds échafaud nom m p 0.85 2.43 0 0.2 +échafaudèrent échafauder ver 0.44 3.24 0 0.07 ind:pas:3p; +échafaudé échafauder ver m s 0.44 3.24 0.09 0.27 par:pas; +échafaudées échafauder ver f p 0.44 3.24 0.01 0.14 par:pas; +échafaudés échafauder ver m p 0.44 3.24 0 0.27 par:pas; +échalas échalas nom m 0.41 1.76 0.41 1.76 +échalier échalier nom m s 0.02 0.2 0.02 0 +échaliers échalier nom m p 0.02 0.2 0 0.2 +échalote échalote nom f s 1.3 1.28 0.8 0.81 +échalotes échalote nom f p 1.3 1.28 0.5 0.47 +échancraient échancrer ver 0.01 0.95 0 0.07 ind:imp:3p; +échancre échancrer ver 0.01 0.95 0 0.14 ind:pre:3s; +échancrer échancrer ver 0.01 0.95 0 0.2 inf; +échancrure échancrure nom f s 0 3.31 0 3.04 +échancrures échancrure nom f p 0 3.31 0 0.27 +échancré échancré adj m s 0.06 1.15 0.03 0.47 +échancrée échancré adj f s 0.06 1.15 0.02 0.27 +échancrées échancré adj f p 0.06 1.15 0 0.2 +échancrés échancré adj m p 0.06 1.15 0.01 0.2 +échange échange nom m s 32.77 32.43 29.97 23.99 +échangea échanger ver 27.38 58.18 0.02 2.03 ind:pas:3s; +échangeables échangeable adj m p 0.01 0.07 0.01 0.07 +échangeai échanger ver 27.38 58.18 0.03 0.61 ind:pas:1s; +échangeaient échanger ver 27.38 58.18 0.07 5.41 ind:imp:3p; +échangeais échanger ver 27.38 58.18 0.06 0.34 ind:imp:1s;ind:imp:2s; +échangeait échanger ver 27.38 58.18 0.27 2.91 ind:imp:3s; +échangeant échanger ver 27.38 58.18 0.16 3.11 par:pre; +échangent échanger ver 27.38 58.18 0.81 3.72 ind:pre:3p; +échangeons échanger ver 27.38 58.18 0.17 0.68 imp:pre:1p;ind:pre:1p; +échanger échanger ver 27.38 58.18 9.86 12.03 inf; +échangera échanger ver 27.38 58.18 0.36 0.07 ind:fut:3s; +échangerai échanger ver 27.38 58.18 0.31 0.07 ind:fut:1s; +échangeraient échanger ver 27.38 58.18 0.04 0.2 cnd:pre:3p; +échangerais échanger ver 27.38 58.18 0.92 0.07 cnd:pre:1s;cnd:pre:2s; +échangerait échanger ver 27.38 58.18 0.25 0.41 cnd:pre:3s; +échangeras échanger ver 27.38 58.18 0.16 0 ind:fut:2s; +échangerez échanger ver 27.38 58.18 0.14 0 ind:fut:2p; +échangeriez échanger ver 27.38 58.18 0.06 0 cnd:pre:2p; +échangerions échanger ver 27.38 58.18 0 0.07 cnd:pre:1p; +échangerons échanger ver 27.38 58.18 0.09 0.07 ind:fut:1p; +échangeront échanger ver 27.38 58.18 0.06 0.07 ind:fut:3p; +échanges échange nom m p 32.77 32.43 2.81 8.45 +échangeur échangeur nom m s 0.3 0.47 0.3 0.2 +échangeurs échangeur nom m p 0.3 0.47 0 0.27 +échangez échanger ver 27.38 58.18 0.44 0.27 imp:pre:2p;ind:pre:2p; +échangeâmes échanger ver 27.38 58.18 0.02 1.49 ind:pas:1p; +échangiez échanger ver 27.38 58.18 0.04 0.07 ind:imp:2p; +échangions échanger ver 27.38 58.18 0.19 1.35 ind:imp:1p; +échangisme échangisme nom m s 0.16 0 0.16 0 +échangiste échangiste nom s 0.29 0.07 0.14 0 +échangistes échangiste nom p 0.29 0.07 0.16 0.07 +échangèrent échanger ver 27.38 58.18 0.02 5.27 ind:pas:3p; +échangé échanger ver m s 27.38 58.18 5.79 8.58 par:pas; +échangée échanger ver f s 27.38 58.18 0.41 0.41 par:pas; +échangées échanger ver f p 27.38 58.18 0.46 2.09 par:pas; +échangés échanger ver m p 27.38 58.18 0.81 3.65 par:pas; +échanson échanson nom m s 0 0.34 0 0.27 +échansons échanson nom m p 0 0.34 0 0.07 +échantillon échantillon nom m s 16.87 6.96 10.36 2.43 +échantillonnage échantillonnage nom m s 0.41 0.74 0.41 0.74 +échantillonne échantillonner ver 0.02 0 0.02 0 ind:pre:1s; +échantillons échantillon nom m p 16.87 6.96 6.51 4.53 +échappa échapper ver 95.07 132.64 0.28 4.05 ind:pas:3s; +échappai échapper ver 95.07 132.64 0.12 0.14 ind:pas:1s; +échappaient échapper ver 95.07 132.64 0.48 6.96 ind:imp:3p; +échappais échapper ver 95.07 132.64 0.28 1.08 ind:imp:1s;ind:imp:2s; +échappait échapper ver 95.07 132.64 0.94 15.41 ind:imp:3s; +échappant échapper ver 95.07 132.64 0.29 3.78 par:pre; +échappatoire échappatoire nom f s 1.96 0.95 1.46 0.61 +échappatoires échappatoire nom f p 1.96 0.95 0.5 0.34 +échappe échapper ver 95.07 132.64 16.76 18.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +échappement échappement nom m s 2.03 1.69 1.93 1.55 +échappements échappement nom m p 2.03 1.69 0.1 0.14 +échappent échapper ver 95.07 132.64 3.84 6.69 ind:pre:3p;sub:pre:3p; +échapper échapper ver 95.07 132.64 39.72 48.04 ind:pre:2p;inf; +échappera échapper ver 95.07 132.64 2.76 1.28 ind:fut:3s; +échapperai échapper ver 95.07 132.64 0.38 0.07 ind:fut:1s; +échapperaient échapper ver 95.07 132.64 0.02 0.41 cnd:pre:3p; +échapperais échapper ver 95.07 132.64 0.17 0.2 cnd:pre:1s;cnd:pre:2s; +échapperait échapper ver 95.07 132.64 0.28 1.96 cnd:pre:3s; +échapperas échapper ver 95.07 132.64 1.81 0.27 ind:fut:2s; +échapperez échapper ver 95.07 132.64 0.81 0.34 ind:fut:2p; +échapperiez échapper ver 95.07 132.64 0.02 0 cnd:pre:2p; +échapperions échapper ver 95.07 132.64 0.01 0.07 cnd:pre:1p; +échapperons échapper ver 95.07 132.64 0.05 0.07 ind:fut:1p; +échapperont échapper ver 95.07 132.64 0.14 0.27 ind:fut:3p; +échappes échapper ver 95.07 132.64 0.51 0.2 ind:pre:2s; +échappez échapper ver 95.07 132.64 0.13 0.14 imp:pre:2p;ind:pre:2p; +échappiez échapper ver 95.07 132.64 0.09 0.07 ind:imp:2p;sub:pre:2p; +échappions échapper ver 95.07 132.64 0.13 0.34 ind:imp:1p; +échappons échapper ver 95.07 132.64 0.26 0.27 imp:pre:1p;ind:pre:1p; +échappâmes échapper ver 95.07 132.64 0 0.07 ind:pas:1p; +échappât échapper ver 95.07 132.64 0 0.61 sub:imp:3s; +échappèrent échapper ver 95.07 132.64 0.05 1.15 ind:pas:3p; +échappé échapper ver m s 95.07 132.64 19.84 17.64 par:pas; +échappée échapper ver f s 95.07 132.64 2.17 1.08 par:pas; +échappées échapper ver f p 95.07 132.64 0.22 0.34 par:pas; +échappés échapper ver m p 95.07 132.64 2.5 1.01 par:pas; +écharde écharde nom f s 0.62 2.91 0.37 1.42 +échardes écharde nom f p 0.62 2.91 0.25 1.49 +écharnait écharner ver 0 0.27 0 0.07 ind:imp:3s; +écharner écharner ver 0 0.27 0 0.2 inf; +écharpe écharpe nom f s 5.14 13.92 4.68 11.22 +écharpent écharper ver 0.07 1.08 0.01 0 ind:pre:3p; +écharper écharper ver 0.07 1.08 0.04 0.47 inf; +écharperaient écharper ver 0.07 1.08 0 0.07 cnd:pre:3p; +écharpes écharpe nom f p 5.14 13.92 0.46 2.7 +écharpé écharper ver m s 0.07 1.08 0 0.07 par:pas; +écharpée écharper ver f s 0.07 1.08 0 0.2 par:pas; +échasse échasse nom f s 0.42 1.15 0.04 0 +échasses échasse nom f p 0.42 1.15 0.38 1.15 +échassier échassier nom m s 0.02 3.51 0.01 2.57 +échassiers échassier nom m p 0.02 3.51 0.01 0.95 +échassière échassier adj f s 0 0.61 0 0.2 +échassières échassier adj f p 0 0.61 0 0.41 +échauder échauder ver 0.05 0.34 0 0.07 inf; +échauderont échauder ver 0.05 0.34 0 0.07 ind:fut:3p; +échaudé échaudé adj m s 0.05 0.34 0.05 0.27 +échaudée échaudé adj f s 0.05 0.34 0 0.07 +échaudés échauder ver m p 0.05 0.34 0.04 0 par:pas; +échauffa échauffer ver 3.27 6.76 0.01 0.2 ind:pas:3s; +échauffaient échauffer ver 3.27 6.76 0 0.27 ind:imp:3p; +échauffais échauffer ver 3.27 6.76 0.04 0.2 ind:imp:1s; +échauffait échauffer ver 3.27 6.76 0.06 0.81 ind:imp:3s; +échauffant échauffer ver 3.27 6.76 0.02 0.27 par:pre; +échauffe échauffer ver 3.27 6.76 0.59 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +échauffement échauffement nom m s 0.66 0.88 0.62 0.74 +échauffements échauffement nom m p 0.66 0.88 0.04 0.14 +échauffent échauffer ver 3.27 6.76 0.11 0.27 ind:pre:3p;sub:pre:3p; +échauffer échauffer ver 3.27 6.76 1.4 0.88 ind:pre:2p;inf; +échauffez échauffer ver 3.27 6.76 0.26 0.14 imp:pre:2p;ind:pre:2p; +échauffons échauffer ver 3.27 6.76 0.11 0 imp:pre:1p;ind:pre:1p; +échauffourée échauffourée nom f s 0.32 1.35 0.08 0.95 +échauffourées échauffourée nom f p 0.32 1.35 0.24 0.41 +échauffé échauffer ver m s 3.27 6.76 0.43 1.62 par:pas; +échauffée échauffer ver f s 3.27 6.76 0.17 0.61 par:pas; +échauffées échauffer ver f p 3.27 6.76 0.01 0.2 par:pas; +échauffés échauffer ver m p 3.27 6.76 0.06 0.41 par:pas; +échauguette échauguette nom f s 0 0.27 0 0.07 +échauguettes échauguette nom f p 0 0.27 0 0.2 +échec échec nom m s 24.31 33.72 15.47 21.76 +échecs échec nom m p 24.31 33.72 8.84 11.96 +échelle échelle nom f s 14.09 31.76 13.46 28.04 +échelles échelle nom f p 14.09 31.76 0.64 3.72 +échelon échelon nom m s 1.48 6.08 0.77 2.91 +échelonnaient échelonner ver 0.13 1.49 0 0.14 ind:imp:3p; +échelonnait échelonner ver 0.13 1.49 0 0.07 ind:imp:3s; +échelonnant échelonner ver 0.13 1.49 0 0.2 par:pre; +échelonne échelonner ver 0.13 1.49 0 0.07 ind:pre:3s; +échelonnent échelonner ver 0.13 1.49 0.01 0.14 ind:pre:3p; +échelonner échelonner ver 0.13 1.49 0.04 0.2 inf; +échelonnerons échelonner ver 0.13 1.49 0 0.07 ind:fut:1p; +échelonné échelonner ver m s 0.13 1.49 0.07 0.07 par:pas; +échelonnée échelonner ver f s 0.13 1.49 0 0.07 par:pas; +échelonnées échelonner ver f p 0.13 1.49 0.01 0.14 par:pas; +échelonnés échelonner ver m p 0.13 1.49 0.01 0.34 par:pas; +échelons échelon nom m p 1.48 6.08 0.71 3.18 +écher écher ver 0.01 0 0.01 0 inf; +écheveau écheveau nom m s 0.17 3.72 0.15 2.64 +écheveaux écheveau nom m p 0.17 3.72 0.02 1.08 +échevelait écheveler ver 0.03 1.42 0 0.27 ind:imp:3s; +échevelant écheveler ver 0.03 1.42 0 0.07 par:pre; +écheveler écheveler ver 0.03 1.42 0 0.07 inf; +échevellement échevellement nom m s 0 0.07 0 0.07 +échevelé échevelé adj m s 0.03 3.65 0.01 0.74 +échevelée échevelé adj f s 0.03 3.65 0.01 2.09 +échevelées échevelé adj f p 0.03 3.65 0 0.34 +échevelés échevelé adj m p 0.03 3.65 0.01 0.47 +échevin échevin nom m s 0.48 0.34 0.48 0.27 +échevins échevin nom m p 0.48 0.34 0 0.07 +échina échiner ver 0.61 1.22 0.01 0 ind:pas:3s; +échinaient échiner ver 0.61 1.22 0.01 0.07 ind:imp:3p; +échinais échiner ver 0.61 1.22 0.01 0.07 ind:imp:1s; +échinait échiner ver 0.61 1.22 0.1 0.2 ind:imp:3s; +échinant échiner ver 0.61 1.22 0 0.14 par:pre; +échine échine nom f s 1.18 8.85 1.18 8.18 +échinent échiner ver 0.61 1.22 0.02 0.07 ind:pre:3p; +échiner échiner ver 0.61 1.22 0.05 0.27 inf; +échines échiner ver 0.61 1.22 0.01 0 ind:pre:2s; +échinodermes échinoderme nom m p 0.01 0 0.01 0 +échiné échiner ver m s 0.61 1.22 0.16 0.07 par:pas; +échinée échiner ver f s 0.61 1.22 0.02 0 par:pas; +échiquier échiquier nom m s 0.75 2.84 0.7 2.77 +échiquiers échiquier nom m p 0.75 2.84 0.05 0.07 +écho écho nom m s 6.65 45.95 5.83 32.5 +échocardiogramme échocardiogramme nom m s 0.07 0 0.07 0 +échocardiographie échocardiographie nom f s 0.01 0 0.01 0 +échographie échographie nom f s 1.39 0.07 1.39 0.07 +échographier échographier ver 0.01 0 0.01 0 inf; +échographiste échographiste nom s 0.01 0 0.01 0 +échoir échoir ver 0.86 2.16 0.2 0.14 inf; +échoirait échoir ver 0.86 2.16 0 0.07 cnd:pre:3s; +échoit échoir ver 0.86 2.16 0.23 0.47 ind:pre:3s; +écholocalisation écholocalisation nom f s 0.05 0 0.05 0 +écholocation écholocation nom f s 0.01 0 0.01 0 +échoppe échoppe nom f s 0.2 3.31 0.19 2.03 +échoppes échoppe nom f p 0.2 3.31 0.01 1.28 +échos écho nom m p 6.65 45.95 0.82 13.45 +échos_radar échos_radar nom m p 0.01 0 0.01 0 +échotier échotier nom m s 0.04 0.61 0 0.07 +échotiers échotier nom m p 0.04 0.61 0.03 0.47 +échotière échotier nom f s 0.04 0.61 0.01 0.07 +échoua échouer ver 30.62 20.61 0.19 0.88 ind:pas:3s; +échouage échouage nom m s 0.02 0.34 0.01 0.2 +échouages échouage nom m p 0.02 0.34 0.01 0.14 +échouai échouer ver 30.62 20.61 0.02 0.27 ind:pas:1s; +échouaient échouer ver 30.62 20.61 0.02 0.41 ind:imp:3p; +échouais échouer ver 30.62 20.61 0.07 0.54 ind:imp:1s;ind:imp:2s; +échouait échouer ver 30.62 20.61 0.31 0.68 ind:imp:3s; +échouant échouer ver 30.62 20.61 0.14 0.07 par:pre; +échoue échouer ver 30.62 20.61 4.62 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +échouement échouement nom m s 0 0.07 0 0.07 +échouent échouer ver 30.62 20.61 0.86 0.47 ind:pre:3p; +échouer échouer ver 30.62 20.61 5.41 3.99 inf; +échouera échouer ver 30.62 20.61 0.51 0.2 ind:fut:3s; +échouerai échouer ver 30.62 20.61 0.33 0 ind:fut:1s; +échoueraient échouer ver 30.62 20.61 0.1 0 cnd:pre:3p; +échouerais échouer ver 30.62 20.61 0.08 0 cnd:pre:1s;cnd:pre:2s; +échouerait échouer ver 30.62 20.61 0.13 0.2 cnd:pre:3s; +échoueras échouer ver 30.62 20.61 0.22 0 ind:fut:2s; +échouerez échouer ver 30.62 20.61 0.21 0 ind:fut:2p; +échouerons échouer ver 30.62 20.61 0.17 0 ind:fut:1p; +échoueront échouer ver 30.62 20.61 0.13 0.07 ind:fut:3p; +échouez échouer ver 30.62 20.61 0.48 0 imp:pre:2p;ind:pre:2p; +échouiez échouer ver 30.62 20.61 0.02 0 ind:imp:2p; +échouions échouer ver 30.62 20.61 0.02 0.07 ind:imp:1p; +échouons échouer ver 30.62 20.61 0.38 0.27 ind:pre:1p; +échouâmes échouer ver 30.62 20.61 0 0.14 ind:pas:1p; +échouât échouer ver 30.62 20.61 0 0.07 sub:imp:3s; +échouèrent échouer ver 30.62 20.61 0.02 0.34 ind:pas:3p; +échoué échouer ver m s 30.62 20.61 15.44 7.5 par:pas; +échouée échouer ver f s 30.62 20.61 0.41 1.01 par:pas; +échouées échouer ver f p 30.62 20.61 0.04 0.95 par:pas; +échoués échouer ver m p 30.62 20.61 0.29 1.01 par:pas; +échu échoir ver m s 0.86 2.16 0.29 0.54 par:pas; +échue échoir ver f s 0.86 2.16 0 0.47 par:pas; +échues échoir ver f p 0.86 2.16 0.02 0.14 par:pas; +échut échoir ver 0.86 2.16 0.11 0.2 ind:pas:3s; +échéance échéance nom f s 2.47 6.69 2.13 5.68 +échéances échéance nom f p 2.47 6.69 0.34 1.01 +échéancier échéancier nom m s 0.03 0.14 0.03 0.14 +échéant échéant adj m s 0.47 3.85 0.47 3.85 +échût échoir ver 0.86 2.16 0 0.14 sub:imp:3s; +éclaboussa éclabousser ver 1.98 9.8 0 0.34 ind:pas:3s; +éclaboussaient éclabousser ver 1.98 9.8 0 0.81 ind:imp:3p; +éclaboussait éclabousser ver 1.98 9.8 0.02 1.76 ind:imp:3s; +éclaboussant éclabousser ver 1.98 9.8 0.02 1.01 par:pre; +éclaboussante éclaboussant adj f s 0.01 0.54 0 0.14 +éclaboussantes éclaboussant adj f p 0.01 0.54 0.01 0.07 +éclaboussants éclaboussant adj m p 0.01 0.54 0 0.07 +éclabousse éclabousser ver 1.98 9.8 0.54 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éclaboussement éclaboussement nom m s 0.04 1.01 0.01 0.61 +éclaboussements éclaboussement nom m p 0.04 1.01 0.03 0.41 +éclaboussent éclabousser ver 1.98 9.8 0.05 0.61 ind:pre:3p; +éclabousser éclabousser ver 1.98 9.8 0.48 0.74 inf; +éclaboussera éclabousser ver 1.98 9.8 0.04 0 ind:fut:3s; +éclabousses éclabousser ver 1.98 9.8 0.03 0.07 ind:pre:2s; +éclaboussez éclabousser ver 1.98 9.8 0.02 0 imp:pre:2p;ind:pre:2p; +éclaboussure éclaboussure nom f s 1.98 3.51 0.59 0.54 +éclaboussures éclaboussure nom f p 1.98 3.51 1.39 2.97 +éclaboussèrent éclabousser ver 1.98 9.8 0 0.14 ind:pas:3p; +éclaboussé éclabousser ver m s 1.98 9.8 0.61 1.49 par:pas; +éclaboussée éclabousser ver f s 1.98 9.8 0.12 1.01 par:pas; +éclaboussées éclabousser ver f p 1.98 9.8 0.03 0.14 par:pas; +éclaboussés éclabousser ver m p 1.98 9.8 0.02 0.88 par:pas; +éclair éclair nom m s 11.25 35 7.86 21.08 +éclaira éclairer ver 18.03 85.95 0.19 6.62 ind:pas:3s; +éclairage éclairage nom m s 4.34 12.77 3.71 10.74 +éclairages éclairage nom m p 4.34 12.77 0.62 2.03 +éclairagiste éclairagiste nom s 0.14 0.14 0.13 0.07 +éclairagistes éclairagiste nom p 0.14 0.14 0.01 0.07 +éclairai éclairer ver 18.03 85.95 0 0.14 ind:pas:1s; +éclairaient éclairer ver 18.03 85.95 0.16 4.39 ind:imp:3p; +éclairais éclairer ver 18.03 85.95 0 0.07 ind:imp:1s; +éclairait éclairer ver 18.03 85.95 0.7 14.59 ind:imp:3s; +éclairant éclairer ver 18.03 85.95 0.15 3.24 par:pre; +éclairante éclairant adj f s 0.55 1.08 0.25 0.2 +éclairantes éclairant adj f p 0.55 1.08 0.21 0.47 +éclairants éclairant adj m p 0.55 1.08 0.04 0 +éclairci éclaircir ver m s 8.53 13.18 1.14 1.76 par:pas; +éclaircie éclaircir ver f s 8.53 13.18 0.14 1.15 par:pas; +éclaircies éclaircie nom f p 0.11 3.31 0.03 1.35 +éclaircir éclaircir ver 8.53 13.18 4.75 5.34 inf; +éclaircira éclaircir ver 8.53 13.18 0.38 0.34 ind:fut:3s; +éclaircirai éclaircir ver 8.53 13.18 0.19 0 ind:fut:1s; +éclaircirait éclaircir ver 8.53 13.18 0.08 0.14 cnd:pre:3s; +éclairciras éclaircir ver 8.53 13.18 0.01 0 ind:fut:2s; +éclaircirez éclaircir ver 8.53 13.18 0.01 0 ind:fut:2p; +éclaircirons éclaircir ver 8.53 13.18 0.04 0 ind:fut:1p; +éclairciront éclaircir ver 8.53 13.18 0.03 0.07 ind:fut:3p; +éclaircis éclaircir ver m p 8.53 13.18 0.14 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +éclaircissage éclaircissage nom m s 0.01 0 0.01 0 +éclaircissaient éclaircir ver 8.53 13.18 0 0.47 ind:imp:3p; +éclaircissait éclaircir ver 8.53 13.18 0.03 0.74 ind:imp:3s; +éclaircissant éclaircir ver 8.53 13.18 0 0.47 par:pre; +éclaircisse éclaircir ver 8.53 13.18 0.27 0.2 sub:pre:1s;sub:pre:3s; +éclaircissement éclaircissement nom m s 0.94 1.96 0.19 1.15 +éclaircissements éclaircissement nom m p 0.94 1.96 0.75 0.81 +éclaircissent éclaircir ver 8.53 13.18 0.12 0.07 ind:pre:3p; +éclaircissez éclaircir ver 8.53 13.18 0.07 0 imp:pre:2p;ind:pre:2p; +éclaircissons éclaircir ver 8.53 13.18 0.02 0 imp:pre:1p; +éclaircit éclaircir ver 8.53 13.18 1.1 1.76 ind:pre:3s;ind:pas:3s; +éclaire éclairer ver 18.03 85.95 6.53 12.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éclairement éclairement nom m s 0.14 0.2 0.14 0.2 +éclairent éclairer ver 18.03 85.95 0.23 2.36 ind:pre:3p; +éclairer éclairer ver 18.03 85.95 5.91 12.97 inf;;inf;;inf;; +éclairera éclairer ver 18.03 85.95 0.51 0.34 ind:fut:3s; +éclaireraient éclairer ver 18.03 85.95 0.01 0.07 cnd:pre:3p; +éclairerait éclairer ver 18.03 85.95 0.16 0.2 cnd:pre:3s; +éclaireront éclairer ver 18.03 85.95 0.16 0.2 ind:fut:3p; +éclaires éclairer ver 18.03 85.95 0.21 0 ind:pre:2s;sub:pre:2s; +éclaireur éclaireur nom m s 3.67 2.5 1.96 1.42 +éclaireurs éclaireur nom m p 3.67 2.5 1.54 1.01 +éclaireuse éclaireur nom f s 3.67 2.5 0.07 0 +éclaireuses éclaireur nom f p 3.67 2.5 0.1 0.07 +éclairez éclairer ver 18.03 85.95 0.63 0.2 imp:pre:2p;ind:pre:2p; +éclairiez éclairer ver 18.03 85.95 0.01 0.14 ind:imp:2p; +éclairons éclairer ver 18.03 85.95 0.01 0.14 ind:pre:1p; +éclairs éclair nom m p 11.25 35 3.39 13.92 +éclairât éclairer ver 18.03 85.95 0 0.14 sub:imp:3s; +éclairèrent éclairer ver 18.03 85.95 0.01 0.54 ind:pas:3p; +éclairé éclairé adj m s 3.34 17.64 1.62 6.08 +éclairée éclairé adj f s 3.34 17.64 1.17 6.49 +éclairées éclairé adj f p 3.34 17.64 0.28 3.18 +éclairés éclairer ver m p 18.03 85.95 0.27 3.38 par:pas; +éclampsie éclampsie nom f s 0.1 0 0.1 0 +éclamptique éclamptique adj s 0.03 0 0.03 0 +éclat éclat nom m s 14.28 82.77 9.73 50.95 +éclata éclater ver 41.33 100.47 0.55 20.07 ind:pas:3s; +éclatage éclatage nom m s 0 0.07 0 0.07 +éclatai éclater ver 41.33 100.47 0 1.49 ind:pas:1s; +éclataient éclater ver 41.33 100.47 0.14 5.47 ind:imp:3p; +éclatais éclater ver 41.33 100.47 0.12 0.2 ind:imp:1s;ind:imp:2s; +éclatait éclater ver 41.33 100.47 0.39 8.24 ind:imp:3s; +éclatant éclatant adj m s 3.62 20.14 1.42 6.35 +éclatante éclatant adj f s 3.62 20.14 1.88 7.64 +éclatantes éclatant adj f p 3.62 20.14 0.12 3.72 +éclatants éclatant adj m p 3.62 20.14 0.2 2.43 +éclate éclater ver 41.33 100.47 11.69 16.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éclatement éclatement nom m s 0.41 7.03 0.4 4.19 +éclatements éclatement nom m p 0.41 7.03 0.01 2.84 +éclatent éclater ver 41.33 100.47 1.38 6.55 ind:pre:3p; +éclater éclater ver 41.33 100.47 15.52 19.59 inf;; +éclatera éclater ver 41.33 100.47 0.76 0.34 ind:fut:3s; +éclaterai éclater ver 41.33 100.47 0.18 0.07 ind:fut:1s; +éclateraient éclater ver 41.33 100.47 0 0.27 cnd:pre:3p; +éclaterais éclater ver 41.33 100.47 0.27 0 cnd:pre:1s;cnd:pre:2s; +éclaterait éclater ver 41.33 100.47 0.18 0.54 cnd:pre:3s; +éclateras éclater ver 41.33 100.47 0.03 0.07 ind:fut:2s; +éclateriez éclater ver 41.33 100.47 0.01 0 cnd:pre:2p; +éclateront éclater ver 41.33 100.47 0.07 0.14 ind:fut:3p; +éclates éclater ver 41.33 100.47 0.68 0.07 ind:pre:2s; +éclateurs éclateur nom m p 0 0.07 0 0.07 +éclatez éclater ver 41.33 100.47 0.9 0 imp:pre:2p;ind:pre:2p; +éclatiez éclater ver 41.33 100.47 0.05 0 ind:imp:2p; +éclatons éclater ver 41.33 100.47 0.05 0.2 imp:pre:1p;ind:pre:1p; +éclats éclat nom m p 14.28 82.77 4.55 31.82 +éclatât éclater ver 41.33 100.47 0 0.54 sub:imp:3s; +éclatèrent éclater ver 41.33 100.47 0.02 3.58 ind:pas:3p; +éclaté éclater ver m s 41.33 100.47 7.19 9.26 par:pas; +éclatée éclater ver f s 41.33 100.47 0.56 0.68 par:pas; +éclatées éclaté adj f p 1.13 3.99 0.02 1.08 +éclatés éclater ver m p 41.33 100.47 0.49 0.34 par:pas; +éclectique éclectique adj s 0.41 0.74 0.36 0.34 +éclectiques éclectique adj p 0.41 0.74 0.04 0.41 +éclectisme éclectisme nom m s 0.05 0.2 0.05 0.2 +éclipsa éclipser ver 2.92 10.07 0.02 1.08 ind:pas:3s; +éclipsai éclipser ver 2.92 10.07 0 0.07 ind:pas:1s; +éclipsaient éclipser ver 2.92 10.07 0.01 0.2 ind:imp:3p; +éclipsait éclipser ver 2.92 10.07 0.04 0.74 ind:imp:3s; +éclipsant éclipser ver 2.92 10.07 0.05 0.2 par:pre; +éclipse éclipse nom f s 1.7 2.64 1.6 1.89 +éclipsent éclipser ver 2.92 10.07 0.04 0.14 ind:pre:3p; +éclipser éclipser ver 2.92 10.07 1.5 2.23 inf; +éclipsera éclipser ver 2.92 10.07 0.1 0.07 ind:fut:3s; +éclipserais éclipser ver 2.92 10.07 0.01 0.07 cnd:pre:1s; +éclipserait éclipser ver 2.92 10.07 0 0.07 cnd:pre:3s; +éclipses éclipse nom f p 1.7 2.64 0.1 0.74 +éclipsez éclipser ver 2.92 10.07 0.07 0 imp:pre:2p;ind:pre:2p; +éclipsions éclipser ver 2.92 10.07 0.01 0 ind:imp:1p; +éclipsèrent éclipser ver 2.92 10.07 0 0.27 ind:pas:3p; +éclipsé éclipser ver m s 2.92 10.07 0.32 1.28 par:pas; +éclipsée éclipser ver f s 2.92 10.07 0.09 1.01 par:pas; +éclipsées éclipser ver f p 2.92 10.07 0.02 0.07 par:pas; +éclipsés éclipser ver m p 2.92 10.07 0.05 1.01 par:pas; +écliptique écliptique nom m s 0.01 0.14 0.01 0.14 +éclisse éclisse nom f s 0.02 0.47 0.02 0.07 +éclisses éclisse nom f p 0.02 0.47 0 0.41 +éclopait écloper ver 0.04 0.27 0 0.07 ind:imp:3s; +écloper écloper ver 0.04 0.27 0.03 0 inf; +éclopé éclopé nom m s 0.46 1.42 0.17 0.2 +éclopée éclopé adj f s 0.19 0.34 0.14 0.07 +éclopés éclopé nom m p 0.46 1.42 0.26 1.22 +éclore éclore ver 0.83 2.84 0.82 2.84 inf; +éclos éclos adj m 1.03 2.09 0.63 0.74 +éclose éclos adj f s 1.03 2.09 0.28 0.41 +écloses éclos adj f p 1.03 2.09 0.12 0.95 +éclosion éclosion nom f s 0.13 2.16 0.1 1.89 +éclosions éclosion nom f p 0.13 2.16 0.03 0.27 +éclusa écluser ver 0.09 3.11 0 0.07 ind:pas:3s; +éclusaient écluser ver 0.09 3.11 0 0.2 ind:imp:3p; +éclusais écluser ver 0.09 3.11 0 0.14 ind:imp:1s; +éclusait écluser ver 0.09 3.11 0 0.27 ind:imp:3s; +éclusant écluser ver 0.09 3.11 0 0.2 par:pre; +écluse écluse nom f s 0.6 3.31 0.39 1.69 +éclusent écluser ver 0.09 3.11 0 0.14 ind:pre:3p; +écluser écluser ver 0.09 3.11 0.07 0.88 inf; +écluses écluse nom f p 0.6 3.31 0.21 1.62 +éclusier éclusier nom m s 0.01 0.2 0 0.14 +éclusiers éclusier nom m p 0.01 0.2 0.01 0.07 +éclusé écluser ver m s 0.09 3.11 0 0.54 par:pas; +éclusée écluser ver f s 0.09 3.11 0 0.07 par:pas; +éclusées écluser ver f p 0.09 3.11 0 0.07 par:pas; +écoeura écoeurer ver 1.56 9.66 0 0.14 ind:pas:3s; +écoeuraient écoeurer ver 1.56 9.66 0 0.41 ind:imp:3p; +écoeurais écoeurer ver 1.56 9.66 0 0.14 ind:imp:1s; +écoeurait écoeurer ver 1.56 9.66 0.01 1.28 ind:imp:3s; +écoeurant écoeurant adj m s 2.02 7.23 1.64 2.3 +écoeurante écoeurant adj f s 2.02 7.23 0.16 3.99 +écoeurantes écoeurant adj f p 2.02 7.23 0.05 0.47 +écoeurants écoeurant adj m p 2.02 7.23 0.18 0.47 +écoeure écoeurer ver 1.56 9.66 0.66 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écoeurement écoeurement nom m s 0.14 3.18 0.14 3.11 +écoeurements écoeurement nom m p 0.14 3.18 0 0.07 +écoeurent écoeurer ver 1.56 9.66 0.04 0.2 ind:pre:3p; +écoeurer écoeurer ver 1.56 9.66 0.17 0.81 inf; +écoeurerais écoeurer ver 1.56 9.66 0 0.07 cnd:pre:1s; +écoeurez écoeurer ver 1.56 9.66 0.24 0 imp:pre:2p;ind:pre:2p; +écoeurèrent écoeurer ver 1.56 9.66 0 0.14 ind:pas:3p; +écoeuré écoeuré adj m s 0.33 3.72 0.3 2.64 +écoeurée écoeurer ver f s 1.56 9.66 0.13 1.22 par:pas; +écoeurées écoeurer ver f p 1.56 9.66 0 0.07 par:pas; +écoeurés écoeuré adj m p 0.33 3.72 0.01 0.27 +écoinçon écoinçon nom m s 0 0.07 0 0.07 +école école nom f s 206.88 143.99 197.04 128.51 +écoles école nom f p 206.88 143.99 9.84 15.47 +écolier écolier nom m s 3.32 21.22 0.79 10.54 +écoliers écolier nom m p 3.32 21.22 1.11 5.81 +écolière écolier nom f s 3.32 21.22 1.11 3.85 +écolières écolier nom f p 3.32 21.22 0.32 1.01 +écolo écolo nom s 0.8 0.74 0.4 0.47 +écologie écologie nom f s 0.41 0.2 0.41 0.2 +écologique écologique adj s 1.79 0.88 1.59 0.74 +écologiquement écologiquement adv 0.01 0 0.01 0 +écologiques écologique adj p 1.79 0.88 0.2 0.14 +écologiste écologiste adj s 0.61 0.2 0.49 0.07 +écologistes écologiste nom p 0.5 0.2 0.25 0.2 +écolos écolo nom p 0.8 0.74 0.4 0.27 +éconduira éconduire ver 0.66 1.82 0.01 0 ind:fut:3s; +éconduire éconduire ver 0.66 1.82 0.03 0.61 inf; +éconduis éconduire ver 0.66 1.82 0.01 0 imp:pre:2s; +éconduisirent éconduire ver 0.66 1.82 0 0.07 ind:pas:3p; +éconduisit éconduire ver 0.66 1.82 0 0.07 ind:pas:3s; +éconduit éconduire ver m s 0.66 1.82 0.54 0.88 ind:pre:3s;par:pas; +éconduite éconduire ver f s 0.66 1.82 0.03 0.14 par:pas; +éconduits éconduire ver m p 0.66 1.82 0.04 0.07 par:pas; +éconocroques éconocroques nom f p 0 0.74 0 0.74 +économat économat nom m s 0.03 0.54 0.03 0.54 +économe économe nom s 0.51 0.74 0.47 0.61 +économes économe adj p 0.52 2.3 0.21 0.54 +économie économie nom f s 16.97 23.78 9.2 15.74 +économies économie nom f p 16.97 23.78 7.77 8.04 +économique économique adj s 8.27 20.81 6.09 14.53 +économiquement économiquement adv 0.72 0.95 0.72 0.95 +économiques économique adj p 8.27 20.81 2.19 6.28 +économisaient économiser ver 12.5 6.62 0.02 0.14 ind:imp:3p; +économisais économiser ver 12.5 6.62 0.13 0.07 ind:imp:1s;ind:imp:2s; +économisait économiser ver 12.5 6.62 0.07 0.34 ind:imp:3s; +économisant économiser ver 12.5 6.62 0.1 0.41 par:pre; +économise économiser ver 12.5 6.62 3.15 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +économisent économiser ver 12.5 6.62 0.18 0.07 ind:pre:3p; +économiser économiser ver 12.5 6.62 5.73 3.58 inf; +économisera économiser ver 12.5 6.62 0.36 0.14 ind:fut:3s; +économiserai économiser ver 12.5 6.62 0.12 0 ind:fut:1s; +économiserais économiser ver 12.5 6.62 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +économiserait économiser ver 12.5 6.62 0.31 0.14 cnd:pre:3s; +économiserez économiser ver 12.5 6.62 0.07 0.07 ind:fut:2p; +économiserons économiser ver 12.5 6.62 0.02 0 ind:fut:1p; +économiseront économiser ver 12.5 6.62 0.01 0 ind:fut:3p; +économiseur économiseur nom m s 0.06 0.07 0.06 0 +économiseurs économiseur nom m p 0.06 0.07 0 0.07 +économisez économiser ver 12.5 6.62 0.37 0.14 imp:pre:2p;ind:pre:2p; +économisme économisme nom m s 0 0.07 0 0.07 +économisons économiser ver 12.5 6.62 0.06 0 imp:pre:1p;ind:pre:1p; +économiste économiste nom s 0.55 0.47 0.41 0.34 +économistes économiste nom p 0.55 0.47 0.14 0.14 +économisé économiser ver m s 12.5 6.62 1.62 0.41 par:pas; +économisée économiser ver f s 12.5 6.62 0.01 0.14 par:pas; +économisées économiser ver f p 12.5 6.62 0 0.2 par:pas; +économisés économiser ver m p 12.5 6.62 0.04 0.27 par:pas; +écopa écoper ver 2.47 2.57 0.02 0.2 ind:pas:3s; +écopai écoper ver 2.47 2.57 0 0.07 ind:pas:1s; +écopais écoper ver 2.47 2.57 0.01 0.07 ind:imp:1s; +écopait écoper ver 2.47 2.57 0.01 0.27 ind:imp:3s; +écope écoper ver 2.47 2.57 0.34 0.14 ind:pre:1s;ind:pre:3s; +écopent écoper ver 2.47 2.57 0.03 0 ind:pre:3p; +écoper écoper ver 2.47 2.57 0.72 0.61 inf; +écopera écoper ver 2.47 2.57 0.23 0 ind:fut:3s; +écoperai écoper ver 2.47 2.57 0.03 0.07 ind:fut:1s; +écoperait écoper ver 2.47 2.57 0 0.07 cnd:pre:3s; +écoperas écoper ver 2.47 2.57 0.14 0 ind:fut:2s; +écoperches écoperche nom f p 0 0.07 0 0.07 +écoperez écoper ver 2.47 2.57 0.04 0 ind:fut:2p; +écoperont écoper ver 2.47 2.57 0.01 0.07 ind:fut:3p; +écopes écoper ver 2.47 2.57 0.04 0 ind:pre:2s; +écopez écoper ver 2.47 2.57 0.04 0.07 imp:pre:2p;ind:pre:2p; +écopiez écoper ver 2.47 2.57 0.01 0.07 ind:imp:2p; +écopons écoper ver 2.47 2.57 0 0.07 ind:pre:1p; +écopé écoper ver m s 2.47 2.57 0.79 0.74 par:pas; +écopée écoper ver f s 2.47 2.57 0 0.07 par:pas; +écorce écorce nom f s 1.9 11.76 1.83 9.39 +écorcer écorcer ver 0.17 0.2 0.01 0.07 inf; +écorces écorce nom f p 1.9 11.76 0.07 2.36 +écorcha écorcher ver 4.02 7.03 0 0.41 ind:pas:3s; +écorchage écorchage nom m s 0.01 0 0.01 0 +écorchaient écorcher ver 4.02 7.03 0.02 0.47 ind:imp:3p; +écorchais écorcher ver 4.02 7.03 0.01 0.14 ind:imp:1s; +écorchait écorcher ver 4.02 7.03 0.11 0.95 ind:imp:3s; +écorchant écorcher ver 4.02 7.03 0.11 0.54 par:pre; +écorche écorcher ver 4.02 7.03 0.53 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écorchement écorchement nom m s 0.04 0.07 0.04 0.07 +écorchent écorcher ver 4.02 7.03 0.16 0.34 ind:pre:3p; +écorcher écorcher ver 4.02 7.03 1.2 1.28 inf; +écorchera écorcher ver 4.02 7.03 0.16 0 ind:fut:3s; +écorcherai écorcher ver 4.02 7.03 0.17 0 ind:fut:1s; +écorcherais écorcher ver 4.02 7.03 0.11 0 cnd:pre:1s; +écorcherait écorcher ver 4.02 7.03 0.07 0.14 cnd:pre:3s; +écorcherie écorcherie nom f s 0.1 0.07 0.1 0.07 +écorcheront écorcher ver 4.02 7.03 0.01 0 ind:fut:3p; +écorcheur écorcheur nom m s 0.06 0.27 0.03 0.07 +écorcheurs écorcheur nom m p 0.06 0.27 0.03 0.2 +écorchez écorcher ver 4.02 7.03 0.02 0.14 imp:pre:2p;ind:pre:2p; +écorchiez écorcher ver 4.02 7.03 0 0.07 ind:imp:2p; +écorchions écorcher ver 4.02 7.03 0 0.07 ind:imp:1p; +écorchure écorchure nom f s 1.02 1.55 0.61 0.81 +écorchures écorchure nom f p 1.02 1.55 0.41 0.74 +écorché écorcher ver m s 4.02 7.03 1.07 0.74 par:pas; +écorchée écorcher ver f s 4.02 7.03 0.25 0.27 par:pas; +écorchées écorché adj f p 0.61 3.58 0.11 0.27 +écorchés écorché adj m p 0.61 3.58 0.11 1.35 +écorcé écorcé adj m s 0 0.54 0 0.2 +écorcés écorcé adj m p 0 0.54 0 0.34 +écornait écorner ver 0.03 0.81 0 0.07 ind:imp:3s; +écornent écorner ver 0.03 0.81 0 0.07 ind:pre:3p; +écorner écorner ver 0.03 0.81 0 0.2 inf; +écornifler écornifler ver 0 0.07 0 0.07 inf; +écorné écorné adj m s 0.19 0.74 0.03 0.34 +écornée écorné adj f s 0.19 0.74 0.14 0.07 +écornées écorné adj f p 0.19 0.74 0.01 0.2 +écornés écorné adj m p 0.19 0.74 0.02 0.14 +écosphère écosphère nom f s 0.01 0 0.01 0 +écossa écosser ver 0.7 5.95 0 0.07 ind:pas:3s; +écossaient écosser ver 0.7 5.95 0 0.2 ind:imp:3p; +écossais écossais adj m 2.57 6.55 1.53 2.57 +écossaise écossais adj f s 2.57 6.55 0.89 3.18 +écossaises écossais adj f p 2.57 6.55 0.16 0.81 +écossait écosser ver 0.7 5.95 0 0.2 ind:imp:3s; +écossant écosser ver 0.7 5.95 0 0.07 par:pre; +écosse écosser ver 0.7 5.95 0.67 4.19 imp:pre:2s;ind:pre:3s; +écossent écosser ver 0.7 5.95 0.03 0.07 ind:pre:3p; +écosser écosser ver 0.7 5.95 0 0.95 inf; +écossé écosser ver m s 0.7 5.95 0 0.07 par:pas; +écossés écosser ver m p 0.7 5.95 0 0.07 par:pas; +écosystème écosystème nom m s 0.63 0 0.59 0 +écosystèmes écosystème nom m p 0.63 0 0.04 0 +écot écot nom m s 0.48 0.95 0.48 0.95 +écotone écotone nom m s 0.01 0 0.01 0 +écoula écouler ver 9.01 26.62 0.23 2.16 ind:pas:3s; +écoulaient écouler ver 9.01 26.62 0.08 1.35 ind:imp:3p; +écoulait écouler ver 9.01 26.62 0.3 3.18 ind:imp:3s; +écoulant écouler ver 9.01 26.62 0.15 0.47 par:pre; +écoule écouler ver 9.01 26.62 1.92 3.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +écoulement écoulement nom m s 0.79 4.46 0.77 4.12 +écoulements écoulement nom m p 0.79 4.46 0.02 0.34 +écoulent écouler ver 9.01 26.62 0.52 1.42 ind:pre:3p; +écouler écouler ver 9.01 26.62 1.09 4.93 inf; +écoulera écouler ver 9.01 26.62 0.22 0.07 ind:fut:3s; +écouleraient écouler ver 9.01 26.62 0.03 0.2 cnd:pre:3p; +écoulerait écouler ver 9.01 26.62 0.01 0.47 cnd:pre:3s; +écouleront écouler ver 9.01 26.62 0.01 0 ind:fut:3p; +écoulât écouler ver 9.01 26.62 0 0.14 sub:imp:3s; +écoulèrent écouler ver 9.01 26.62 0.04 1.89 ind:pas:3p; +écoulé écouler ver m s 9.01 26.62 3.06 2.16 par:pas; +écoulée écoulé adj f s 1.1 2.97 0.27 1.08 +écoulées écouler ver f p 9.01 26.62 0.69 1.62 par:pas; +écoulés écouler ver m p 9.01 26.62 0.44 1.82 par:pas; +écourta écourter ver 1.54 2.09 0 0.2 ind:pas:3s; +écourtaient écourter ver 1.54 2.09 0 0.07 ind:imp:3p; +écourtais écourter ver 1.54 2.09 0.01 0.14 ind:imp:1s; +écourtant écourter ver 1.54 2.09 0 0.07 par:pre; +écourte écourter ver 1.54 2.09 0.06 0.2 ind:pre:1s;ind:pre:3s; +écourter écourter ver 1.54 2.09 0.91 0.81 inf; +écourtera écourter ver 1.54 2.09 0.03 0 ind:fut:3s; +écourteraient écourter ver 1.54 2.09 0 0.07 cnd:pre:3p; +écourté écourter ver m s 1.54 2.09 0.38 0.27 par:pas; +écourtée écourter ver f s 1.54 2.09 0.05 0.14 par:pas; +écourtées écourté adj f p 0.04 0.34 0.01 0.07 +écourtés écourter ver m p 1.54 2.09 0.11 0.07 par:pas; +écouta écouter ver 470.93 314.05 0.06 14.53 ind:pas:3s; +écoutai écouter ver 470.93 314.05 0.17 2.36 ind:pas:1s; +écoutaient écouter ver 470.93 314.05 1.21 7.3 ind:imp:3p; +écoutais écouter ver 470.93 314.05 5.74 16.62 ind:imp:1s;ind:imp:2s; +écoutait écouter ver 470.93 314.05 4.65 45.61 ind:imp:3s; +écoutant écouter ver 470.93 314.05 3 22.16 par:pre; +écoute écouter ver 470.93 314.05 214.67 83.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +écoutent écouter ver 470.93 314.05 6.05 5 ind:pre:3p; +écouter écouter ver 470.93 314.05 73.13 56.15 inf;; +écoutera écouter ver 470.93 314.05 4.14 0.81 ind:fut:3s; +écouterai écouter ver 470.93 314.05 1.89 0.54 ind:fut:1s; +écouteraient écouter ver 470.93 314.05 0.14 0.14 cnd:pre:3p; +écouterais écouter ver 470.93 314.05 0.55 0.41 cnd:pre:1s;cnd:pre:2s; +écouterait écouter ver 470.93 314.05 0.96 0.47 cnd:pre:3s; +écouteras écouter ver 470.93 314.05 1.06 0.27 ind:fut:2s; +écouterez écouter ver 470.93 314.05 0.24 0.07 ind:fut:2p; +écouteriez écouter ver 470.93 314.05 0.15 0 cnd:pre:2p; +écouterons écouter ver 470.93 314.05 0.69 0.2 ind:fut:1p; +écouteront écouter ver 470.93 314.05 1.36 0.34 ind:fut:3p; +écoutes écouter ver 470.93 314.05 26.59 4.19 ind:pre:2s;sub:pre:2s; +écouteur écouteur nom m s 1.34 4.19 0.37 3.65 +écouteurs écouteur nom m p 1.34 4.19 0.97 0.47 +écouteuse écouteur nom f s 1.34 4.19 0 0.07 +écoutez écouter ver 470.93 314.05 92.46 24.8 imp:pre:2p;ind:pre:2p; +écoutiez écouter ver 470.93 314.05 2.2 0.2 ind:imp:2p;sub:pre:2p; +écoutille écoutille nom f s 2.22 0.88 1.79 0.47 +écoutilles écoutille nom f p 2.22 0.88 0.43 0.41 +écoutions écouter ver 470.93 314.05 0.18 2.84 ind:imp:1p; +écoutons écouter ver 470.93 314.05 3.95 2.3 imp:pre:1p;ind:pre:1p; +écoutâmes écouter ver 470.93 314.05 0 0.14 ind:pas:1p; +écoutât écouter ver 470.93 314.05 0 0.54 sub:imp:3s; +écoutèrent écouter ver 470.93 314.05 0.03 1.76 ind:pas:3p; +écouté écouter ver m s 470.93 314.05 21.06 16.01 par:pas; +écoutée écouter ver f s 470.93 314.05 3.45 3.11 par:pas; +écoutées écouter ver f p 470.93 314.05 0.27 0.68 par:pas; +écoutés écouter ver m p 470.93 314.05 0.88 0.95 par:pas; +écouvillon écouvillon nom m s 0.26 0.2 0.01 0.2 +écouvillonne écouvillonner ver 0 0.07 0 0.07 ind:pre:3s; +écouvillons écouvillon nom m p 0.26 0.2 0.25 0 +écrabouilla écrabouiller ver 2.22 2.91 0 0.07 ind:pas:3s; +écrabouillage écrabouillage nom m s 0.01 0.14 0.01 0.14 +écrabouillait écrabouiller ver 2.22 2.91 0 0.07 ind:imp:3s; +écrabouillant écrabouiller ver 2.22 2.91 0 0.14 par:pre; +écrabouille écrabouiller ver 2.22 2.91 0.3 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écrabouillement écrabouillement nom m s 0 0.27 0 0.2 +écrabouillements écrabouillement nom m p 0 0.27 0 0.07 +écrabouiller écrabouiller ver 2.22 2.91 0.86 0.74 inf; +écrabouillera écrabouiller ver 2.22 2.91 0.03 0 ind:fut:3s; +écrabouillons écrabouiller ver 2.22 2.91 0 0.07 ind:pre:1p; +écrabouillèrent écrabouiller ver 2.22 2.91 0 0.07 ind:pas:3p; +écrabouillé écrabouiller ver m s 2.22 2.91 0.72 0.68 par:pas; +écrabouillée écrabouiller ver f s 2.22 2.91 0.24 0.41 par:pas; +écrabouillées écrabouiller ver f p 2.22 2.91 0.01 0.07 par:pas; +écrabouillés écrabouiller ver m p 2.22 2.91 0.07 0.34 par:pas; +écran écran nom m s 23.68 23.31 19.78 21.15 +écrans écran nom m p 23.68 23.31 3.91 2.16 +écrasa écraser ver 54.42 90.81 0.07 5.74 ind:pas:3s; +écrasage écrasage nom m s 0 0.07 0 0.07 +écrasai écraser ver 54.42 90.81 0 0.68 ind:pas:1s; +écrasaient écraser ver 54.42 90.81 0.06 3.65 ind:imp:3p; +écrasais écraser ver 54.42 90.81 0.23 1.01 ind:imp:1s;ind:imp:2s; +écrasait écraser ver 54.42 90.81 0.46 8.51 ind:imp:3s; +écrasant écraser ver 54.42 90.81 0.47 5.34 par:pre; +écrasante écrasant adj f s 0.96 7.03 0.52 3.24 +écrasantes écrasant adj f p 0.96 7.03 0.04 0.47 +écrasants écrasant adj m p 0.96 7.03 0 0.34 +écrase écraser ver 54.42 90.81 11.11 13.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +écrase_merde écrase_merde nom m s 0 0.41 0 0.2 +écrase_merde écrase_merde nom m p 0 0.41 0 0.2 +écrasement écrasement nom m s 0.19 3.72 0.14 3.51 +écrasements écrasement nom m p 0.19 3.72 0.04 0.2 +écrasent écraser ver 54.42 90.81 0.78 2.16 ind:pre:3p; +écraser écraser ver 54.42 90.81 16.75 20.47 inf; +écrasera écraser ver 54.42 90.81 0.73 0.74 ind:fut:3s; +écraserai écraser ver 54.42 90.81 1.17 0.2 ind:fut:1s; +écraseraient écraser ver 54.42 90.81 0.16 0.34 cnd:pre:3p; +écraserais écraser ver 54.42 90.81 0.39 0.2 cnd:pre:1s;cnd:pre:2s; +écraserait écraser ver 54.42 90.81 0.53 0.47 cnd:pre:3s; +écraseras écraser ver 54.42 90.81 0.02 0.14 ind:fut:2s; +écraserez écraser ver 54.42 90.81 0.05 0 ind:fut:2p; +écraserons écraser ver 54.42 90.81 0.47 0 ind:fut:1p; +écraseront écraser ver 54.42 90.81 0.33 0.14 ind:fut:3p; +écrases écraser ver 54.42 90.81 1.79 0.2 ind:pre:2s; +écraseur écraseur nom m s 0.19 0.07 0.19 0.07 +écrasez écraser ver 54.42 90.81 2.15 0.2 imp:pre:2p;ind:pre:2p; +écrasiez écraser ver 54.42 90.81 0.03 0.07 ind:imp:2p; +écrasions écraser ver 54.42 90.81 0 0.34 ind:imp:1p; +écrasons écraser ver 54.42 90.81 0.26 0.07 imp:pre:1p;ind:pre:1p; +écrasure écrasure nom f s 0 0.07 0 0.07 +écrasât écraser ver 54.42 90.81 0 0.14 sub:imp:3s; +écrasèrent écraser ver 54.42 90.81 0.02 0.61 ind:pas:3p; +écrasé écraser ver m s 54.42 90.81 10.97 13.24 par:pas; +écrasée écraser ver f s 54.42 90.81 2.48 6.22 par:pas; +écrasées écraser ver f p 54.42 90.81 0.31 1.96 par:pas; +écrasés écraser ver m p 54.42 90.81 2.66 4.39 par:pas; +écrevisse écrevisse nom f s 1.06 5.47 0.54 1.62 +écrevisses écrevisse nom f p 1.06 5.47 0.52 3.85 +écria écrier ver 1.75 47.43 0.35 25.68 ind:pas:3s; +écriai écrier ver 1.75 47.43 0 2.7 ind:pas:1s; +écriaient écrier ver 1.75 47.43 0.01 0.07 ind:imp:3p; +écriais écrier ver 1.75 47.43 0.01 0.14 ind:imp:1s; +écriait écrier ver 1.75 47.43 0.02 2.97 ind:imp:3s; +écriant écrier ver 1.75 47.43 0 0.95 par:pre; +écrie écrier ver 1.75 47.43 0.47 8.24 ind:pre:1s;ind:pre:3s; +écrient écrier ver 1.75 47.43 0.06 0.61 ind:pre:3p; +écrier écrier ver 1.75 47.43 0.3 1.76 inf; +écriera écrier ver 1.75 47.43 0 0.14 ind:fut:3s; +écrierait écrier ver 1.75 47.43 0.01 0.07 cnd:pre:3s; +écries écrier ver 1.75 47.43 0 0.07 ind:pre:2s; +écrin écrin nom m s 0.37 3.78 0.36 3.38 +écrins écrin nom m p 0.37 3.78 0.01 0.41 +écrions écrier ver 1.75 47.43 0 0.07 ind:pre:1p; +écrira écrire ver 305.92 341.82 1.77 1.69 ind:fut:3s; +écrirai écrire ver 305.92 341.82 6.4 4.05 ind:fut:1s; +écriraient écrire ver 305.92 341.82 0.11 0.34 cnd:pre:3p; +écrirais écrire ver 305.92 341.82 0.83 1.82 cnd:pre:1s;cnd:pre:2s; +écrirait écrire ver 305.92 341.82 0.83 2.43 cnd:pre:3s; +écriras écrire ver 305.92 341.82 1.67 1.01 ind:fut:2s; +écrire écrire ver 305.92 341.82 84.14 116.15 inf; +écrirez écrire ver 305.92 341.82 0.42 0.41 ind:fut:2p; +écririez écrire ver 305.92 341.82 0.04 0 cnd:pre:2p; +écrirons écrire ver 305.92 341.82 0.21 0 ind:fut:1p; +écriront écrire ver 305.92 341.82 0.09 0.2 ind:fut:3p; +écris écrire ver 305.92 341.82 38.24 24.8 imp:pre:2s;ind:pre:1s;ind:pre:2s; +écrit écrire ver m s 305.92 341.82 128.35 95.07 ind:pre:3s;par:pas; +écrite écrire ver f s 305.92 341.82 7.51 6.35 par:pas; +écriteau écriteau nom m s 2.25 3.65 2.2 3.04 +écriteaux écriteau nom m p 2.25 3.65 0.06 0.61 +écrites écrire ver f p 305.92 341.82 2 4.53 par:pas; +écritoire écritoire nom f s 0.41 2.09 0.4 1.82 +écritoires écritoire nom f p 0.41 2.09 0.01 0.27 +écrits écrire ver m p 305.92 341.82 2.96 5.07 par:pas; +écriture écriture nom f s 13.65 36.35 11.99 32.03 +écritures écriture nom f p 13.65 36.35 1.66 4.32 +écrivaient écrire ver 305.92 341.82 0.26 2.36 ind:imp:3p; +écrivailler écrivailler ver 0 0.14 0 0.07 inf; +écrivailleur écrivailleur nom m s 0.01 0 0.01 0 +écrivaillon écrivaillon nom m s 0.03 0.27 0.03 0.14 +écrivaillons écrivaillon nom m p 0.03 0.27 0 0.14 +écrivaillé écrivailler ver m s 0 0.14 0 0.07 par:pas; +écrivain écrivain nom m s 24.57 48.99 20.7 32.43 +écrivaine écrivain nom f s 24.57 48.99 0.06 0.2 +écrivaines écrivain nom f p 24.57 48.99 0 0.14 +écrivains écrivain nom m p 24.57 48.99 3.81 16.22 +écrivais écrire ver 305.92 341.82 5.2 9.12 ind:imp:1s;ind:imp:2s; +écrivait écrire ver 305.92 341.82 6.04 25.68 ind:imp:3s; +écrivant écrire ver 305.92 341.82 1.34 6.42 par:pre; +écrivassiers écrivassier nom m p 0 0.14 0 0.14 +écrive écrire ver 305.92 341.82 2.67 3.11 sub:pre:1s;sub:pre:3s; +écrivent écrire ver 305.92 341.82 2.46 6.01 ind:pre:3p; +écrives écrire ver 305.92 341.82 0.82 0.27 sub:pre:2s; +écriveur écriveur nom m s 0.14 0 0.14 0 +écrivez écrire ver 305.92 341.82 9.04 5.2 imp:pre:2p;ind:pre:2p; +écriviez écrire ver 305.92 341.82 0.97 0.41 ind:imp:2p; +écrivions écrire ver 305.92 341.82 0.1 0.61 ind:imp:1p; +écrivirent écrire ver 305.92 341.82 0.02 0.2 ind:pas:3p; +écrivis écrire ver 305.92 341.82 0.07 4.66 ind:pas:1s; +écrivisse écrire ver 305.92 341.82 0 0.2 sub:imp:1s; +écrivit écrire ver 305.92 341.82 1 12.36 ind:pas:3s; +écrivons écrire ver 305.92 341.82 0.37 0.88 imp:pre:1p;ind:pre:1p; +écrivîmes écrire ver 305.92 341.82 0 0.07 ind:pas:1p; +écrivît écrire ver 305.92 341.82 0 0.34 sub:imp:3s; +écriât écrier ver 1.75 47.43 0 0.2 sub:imp:3s; +écrièrent écrier ver 1.75 47.43 0.12 0.41 ind:pas:3p; +écrié écrier ver m s 1.75 47.43 0.36 2.5 par:pas; +écriée écrier ver f s 1.75 47.43 0.03 0.74 par:pas; +écriés écrier ver m p 1.75 47.43 0 0.14 par:pas; +écrou écrou nom m s 0.72 3.24 0.34 2.43 +écrouelles écrouelles nom f p 0 0.07 0 0.07 +écrouer écrouer ver 0.54 0.34 0.19 0.14 inf; +écroueront écrouer ver 0.54 0.34 0 0.07 ind:fut:3p; +écroula écrouler ver 13.98 36.08 0.19 4.32 ind:pas:3s; +écroulai écrouler ver 13.98 36.08 0 0.34 ind:pas:1s; +écroulaient écrouler ver 13.98 36.08 0.22 1.49 ind:imp:3p; +écroulais écrouler ver 13.98 36.08 0.01 0.41 ind:imp:1s; +écroulait écrouler ver 13.98 36.08 0.33 3.65 ind:imp:3s; +écroulant écrouler ver 13.98 36.08 0.02 0.81 par:pre; +écroule écrouler ver 13.98 36.08 4.47 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écroulement écroulement nom m s 0.32 5.07 0.32 4.39 +écroulements écroulement nom m p 0.32 5.07 0 0.68 +écroulent écrouler ver 13.98 36.08 0.6 1.49 ind:pre:3p; +écrouler écrouler ver 13.98 36.08 3.42 6.49 inf; +écroulera écrouler ver 13.98 36.08 0.53 0.2 ind:fut:3s; +écroulerai écrouler ver 13.98 36.08 0.02 0 ind:fut:1s; +écrouleraient écrouler ver 13.98 36.08 0.01 0.14 cnd:pre:3p; +écroulerais écrouler ver 13.98 36.08 0.05 0.07 cnd:pre:1s; +écroulerait écrouler ver 13.98 36.08 0.28 0.34 cnd:pre:3s; +écrouleras écrouler ver 13.98 36.08 0.13 0.07 ind:fut:2s; +écroulerions écrouler ver 13.98 36.08 0.01 0 cnd:pre:1p; +écrouleront écrouler ver 13.98 36.08 0.05 0.07 ind:fut:3p; +écroulions écrouler ver 13.98 36.08 0 0.07 ind:imp:1p; +écroulons écrouler ver 13.98 36.08 0.02 0.07 ind:pre:1p; +écroulât écrouler ver 13.98 36.08 0 0.27 sub:imp:3s; +écroulèrent écrouler ver 13.98 36.08 0.01 0.34 ind:pas:3p; +écroulé écrouler ver m s 13.98 36.08 2.47 5 par:pas; +écroulée écrouler ver f s 13.98 36.08 0.7 1.82 par:pas; +écroulées écrouler ver f p 13.98 36.08 0.12 0.74 par:pas; +écroulés écrouler ver m p 13.98 36.08 0.29 1.55 par:pas; +écrous écrou nom m p 0.72 3.24 0.39 0.81 +écroué écrouer ver m s 0.54 0.34 0.32 0.07 par:pas; +écrouée écrouer ver f s 0.54 0.34 0.03 0.07 par:pas; +écru écru adj m s 0.07 1.08 0.06 0.34 +écrue écru adj f s 0.07 1.08 0.01 0.74 +écrème écrémer ver 0.7 0.34 0.04 0.14 ind:pre:1s;ind:pre:3s; +écrémage écrémage nom m s 0.03 0.07 0.03 0.07 +écrémer écrémer ver 0.7 0.34 0.08 0.07 inf; +écrémeuse écrémeur nom f s 0 0.07 0 0.07 +écrémé écrémer ver m s 0.7 0.34 0.58 0.07 par:pas; +écrémées écrémer ver f p 0.7 0.34 0 0.07 par:pas; +écrêtait écrêter ver 0 0.2 0 0.07 ind:imp:3s; +écrêter écrêter ver 0 0.2 0 0.07 inf; +écrêtée écrêter ver f s 0 0.2 0 0.07 par:pas; +écu écu nom m s 1.75 4.59 0.65 1.49 +écubier écubier nom m s 0 0.2 0 0.2 +écueil écueil nom m s 0.26 2.09 0.18 0.88 +écueils écueil nom m p 0.26 2.09 0.08 1.22 +écuelle écuelle nom f s 1.09 2.97 0.98 2.36 +écuelles écuelle nom f p 1.09 2.97 0.11 0.61 +écuellée écuellée nom f s 0 0.14 0 0.07 +écuellées écuellée nom f p 0 0.14 0 0.07 +écuissé écuisser ver m s 0 0.14 0 0.07 par:pas; +écuissées écuisser ver f p 0 0.14 0 0.07 par:pas; +éculer éculer ver 0.23 0.54 0 0.07 inf; +éculé éculé adj m s 0.19 1.55 0.14 0.14 +éculée éculé adj f s 0.19 1.55 0.01 0.2 +éculées éculé adj f p 0.19 1.55 0.01 0.81 +éculés éculer ver m p 0.23 0.54 0.1 0.27 par:pas; +écuma écumer ver 0.94 3.92 0 0.07 ind:pas:3s; +écumai écumer ver 0.94 3.92 0 0.07 ind:pas:1s; +écumaient écumer ver 0.94 3.92 0.02 0.34 ind:imp:3p; +écumais écumer ver 0.94 3.92 0.02 0.14 ind:imp:1s; +écumait écumer ver 0.94 3.92 0.01 0.61 ind:imp:3s; +écumant écumer ver 0.94 3.92 0.01 0.68 par:pre; +écumante écumant adj f s 0.03 0.95 0.01 0.34 +écumantes écumant adj f p 0.03 0.95 0 0.2 +écumants écumant adj m p 0.03 0.95 0.01 0.2 +écume écume nom f s 2.31 16.15 2.31 16.08 +écument écumer ver 0.94 3.92 0.04 0.2 ind:pre:3p; +écumer écumer ver 0.94 3.92 0.31 0.61 inf; +écumera écumer ver 0.94 3.92 0.01 0 ind:fut:3s; +écumeront écumer ver 0.94 3.92 0.01 0 ind:fut:3p; +écumes écume nom f p 2.31 16.15 0 0.07 +écumeur écumeur nom m s 0.27 0.47 0.27 0.2 +écumeurs écumeur nom m p 0.27 0.47 0 0.2 +écumeuse écumeux adj f s 0 1.22 0 0.54 +écumeuses écumeux adj f p 0 1.22 0 0.07 +écumeux écumeux adj m 0 1.22 0 0.61 +écumez écumer ver 0.94 3.92 0.01 0 ind:pre:2p; +écumiez écumer ver 0.94 3.92 0.02 0 ind:imp:2p; +écumoire écumoire nom f s 0.3 0.88 0.3 0.68 +écumoires écumoire nom f p 0.3 0.88 0 0.2 +écumâmes écumer ver 0.94 3.92 0 0.07 ind:pas:1p; +écumèrent écumer ver 0.94 3.92 0.01 0 ind:pas:3p; +écumé écumer ver m s 0.94 3.92 0.33 0.41 par:pas; +écumée écumer ver f s 0.94 3.92 0 0.07 par:pas; +écureuil écureuil nom m s 7.22 10.41 5.71 8.85 +écureuils écureuil nom m p 7.22 10.41 1.51 1.55 +écurie écurie nom f s 6.88 12.84 5.08 8.85 +écuries écurie nom f p 6.88 12.84 1.8 3.99 +écus écu nom m p 1.75 4.59 1.11 3.11 +écusson écusson nom m s 0.37 3.78 0.32 2.23 +écussonné écussonner ver m s 0 0.61 0 0.27 par:pas; +écussonnées écussonner ver f p 0 0.61 0 0.07 par:pas; +écussonnés écussonner ver m p 0 0.61 0 0.27 par:pas; +écussons écusson nom m p 0.37 3.78 0.05 1.55 +écuyer écuyer nom m s 1.56 5.27 1.18 3.04 +écuyers écuyer nom m p 1.56 5.27 0.12 1.49 +écuyère écuyer nom f s 1.56 5.27 0.26 0.54 +écuyères écuyer nom f p 1.56 5.27 0 0.2 +édam édam nom m s 0.03 0.34 0.03 0.34 +éden éden nom s 0.42 2.36 0.42 2.3 +édens éden nom m p 0.42 2.36 0 0.07 +édenté édenté adj m s 0.43 3.58 0.23 0.74 +édentée édenté adj f s 0.43 3.58 0.15 1.69 +édentées édenté adj f p 0.43 3.58 0.01 0.81 +édentés édenté adj m p 0.43 3.58 0.04 0.34 +édicte édicter ver 0.28 0.61 0.1 0.07 imp:pre:2s;ind:pre:3s; +édicter édicter ver 0.28 0.61 0.01 0.14 inf; +édicté édicter ver m s 0.28 0.61 0.15 0.07 par:pas; +édictée édicter ver f s 0.28 0.61 0 0.2 par:pas; +édictées édicter ver f p 0.28 0.61 0.02 0.14 par:pas; +édicule édicule nom m s 0.4 0.2 0.4 0.14 +édicules édicule nom m p 0.4 0.2 0 0.07 +édifia édifier ver 0.9 11.96 0.12 0.27 ind:pas:3s; +édifiaient édifier ver 0.9 11.96 0.02 0.61 ind:imp:3p; +édifiait édifier ver 0.9 11.96 0.14 0.88 ind:imp:3s; +édifiant édifiant adj m s 0.76 4.12 0.51 1.28 +édifiante édifiant adj f s 0.76 4.12 0.16 1.28 +édifiantes édifiant adj f p 0.76 4.12 0.03 1.08 +édifiants édifiant adj m p 0.76 4.12 0.05 0.47 +édification édification nom f s 0.38 1.28 0.38 1.28 +édifice édifice nom m s 3.25 13.99 2.71 10.95 +édifices édifice nom m p 3.25 13.99 0.53 3.04 +édifie édifier ver 0.9 11.96 0.02 1.08 ind:pre:1s;ind:pre:3s; +édifient édifier ver 0.9 11.96 0.01 0.27 ind:pre:3p; +édifier édifier ver 0.9 11.96 0.31 3.04 inf; +édifierait édifier ver 0.9 11.96 0 0.07 cnd:pre:3s; +édifierons édifier ver 0.9 11.96 0.01 0 ind:fut:1p; +édifions édifier ver 0.9 11.96 0.16 0.07 ind:pre:1p; +édifièrent édifier ver 0.9 11.96 0 0.14 ind:pas:3p; +édifié édifier ver m s 0.9 11.96 0.06 2.84 par:pas; +édifiée édifier ver f s 0.9 11.96 0.03 1.35 par:pas; +édifiées édifier ver f p 0.9 11.96 0 0.34 par:pas; +édifiés édifier ver m p 0.9 11.96 0.01 0.68 par:pas; +édiles édile nom m p 0.08 0.14 0.08 0.14 +édilitaire édilitaire adj f s 0 0.2 0 0.07 +édilitaires édilitaire adj m p 0 0.2 0 0.14 +édit édit nom m s 0.35 0.74 0.32 0.61 +éditait éditer ver 0.69 2.36 0.01 0.14 ind:imp:3s; +édite éditer ver 0.69 2.36 0.08 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éditer éditer ver 0.69 2.36 0.31 0.54 inf; +éditera éditer ver 0.69 2.36 0.02 0.07 ind:fut:3s; +éditerais éditer ver 0.69 2.36 0 0.07 cnd:pre:1s; +éditeur éditeur nom m s 8.5 12.3 6.84 8.78 +éditeurs éditeur nom m p 8.5 12.3 1.37 3.45 +édition édition nom f s 9.61 16.62 7.83 10.61 +éditions édition nom f p 9.61 16.62 1.78 6.01 +édito édito nom m s 0.16 0.14 0.12 0.07 +éditons éditer ver 0.69 2.36 0.01 0.07 ind:pre:1p; +éditorial éditorial nom m s 0.57 2.16 0.4 1.42 +éditoriale éditorial adj f s 0.19 0.34 0.08 0.14 +éditorialiste éditorialiste nom s 0.06 0.68 0.03 0.34 +éditorialistes éditorialiste nom p 0.06 0.68 0.02 0.34 +éditoriaux éditorial nom m p 0.57 2.16 0.17 0.74 +éditos édito nom m p 0.16 0.14 0.04 0.07 +éditrice éditeur nom f s 8.5 12.3 0.26 0.07 +éditrices éditeur nom f p 8.5 12.3 0.04 0 +édits édit nom m p 0.35 0.74 0.04 0.14 +édité éditer ver m s 0.69 2.36 0.16 0.54 par:pas; +éditée éditer ver f s 0.69 2.36 0.05 0.2 par:pas; +éditées éditer ver f p 0.69 2.36 0.01 0.07 par:pas; +édités éditer ver m p 0.69 2.36 0.01 0.54 par:pas; +édouardienne édouardien adj f s 0.02 0.07 0.02 0.07 +édredon édredon nom m s 0.59 6.22 0.39 5 +édredons édredon nom m p 0.59 6.22 0.2 1.22 +éducable éducable adj s 0.01 0.2 0 0.14 +éducables éducable adj p 0.01 0.2 0.01 0.07 +éducateur éducateur nom m s 1.05 2.84 0.52 0.81 +éducateurs éducateur nom m p 1.05 2.84 0.27 0.74 +éducatif éducatif adj m s 2.04 1.08 1.18 0.34 +éducatifs éducatif adj m p 2.04 1.08 0.27 0.2 +éducation éducation nom f s 20.48 27.23 20.45 27.09 +éducationnel éducationnel adj m s 0.02 0 0.01 0 +éducationnelle éducationnel adj f s 0.02 0 0.01 0 +éducations éducation nom f p 20.48 27.23 0.04 0.14 +éducative éducatif adj f s 2.04 1.08 0.34 0.14 +éducatives éducatif adj f p 2.04 1.08 0.25 0.41 +éducatrice éducateur nom f s 1.05 2.84 0.27 0.88 +éducatrices éducateur nom f p 1.05 2.84 0 0.41 +éduen éduen adj m s 0 0.41 0 0.07 +éduennes éduen adj f p 0 0.41 0 0.07 +éduens éduen adj m p 0 0.41 0 0.27 +édulcorais édulcorer ver 0.12 0.54 0 0.07 ind:imp:1s; +édulcorant édulcorant nom m s 0.08 0 0.08 0 +édulcorer édulcorer ver 0.12 0.54 0.02 0 inf; +édulcoré édulcorer ver m s 0.12 0.54 0.05 0.07 par:pas; +édulcorée édulcorer ver f s 0.12 0.54 0.05 0.2 par:pas; +édulcorées édulcorer ver f p 0.12 0.54 0 0.2 par:pas; +éduquais éduquer ver 8.07 3.78 0 0.07 ind:imp:1s; +éduquant éduquer ver 8.07 3.78 0.11 0 par:pre; +éduque éduquer ver 8.07 3.78 0.41 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éduquer éduquer ver 8.07 3.78 3.96 1.69 inf; +éduquera éduquer ver 8.07 3.78 0.03 0.07 ind:fut:3s; +éduquez éduquer ver 8.07 3.78 0.03 0 imp:pre:2p;ind:pre:2p; +éduquons éduquer ver 8.07 3.78 0.02 0 ind:pre:1p; +éduqué éduquer ver m s 8.07 3.78 1.95 0.68 par:pas; +éduquée éduquer ver f s 8.07 3.78 0.48 0.27 par:pas; +éduquées éduquer ver f p 8.07 3.78 0.29 0 par:pas; +éduqués éduquer ver m p 8.07 3.78 0.79 0.74 par:pas; +édénique édénique adj s 0.11 0.34 0.01 0.2 +édéniques édénique adj m p 0.11 0.34 0.1 0.14 +égaie égayer ver 1.39 5.68 0.02 0.2 ind:pre:3s; +égaieraient égayer ver 1.39 5.68 0.01 0.14 cnd:pre:3p; +égaierait égayer ver 1.39 5.68 0 0.07 cnd:pre:3s; +égaieront égayer ver 1.39 5.68 0.2 0 ind:fut:3p; +égailla égailler ver 0 2.16 0 0.14 ind:pas:3s; +égaillaient égailler ver 0 2.16 0 0.27 ind:imp:3p; +égaillait égailler ver 0 2.16 0 0.07 ind:imp:3s; +égaillant égailler ver 0 2.16 0 0.2 par:pre; +égaillent égailler ver 0 2.16 0 0.41 ind:pre:3p; +égailler égailler ver 0 2.16 0 0.47 inf; +égaillèrent égailler ver 0 2.16 0 0.27 ind:pas:3p; +égaillée égailler ver f s 0 2.16 0 0.14 par:pas; +égaillées égailler ver f p 0 2.16 0 0.07 par:pas; +égaillés égailler ver m p 0 2.16 0 0.14 par:pas; +égal égal adj m s 38.08 39.32 27.4 20.27 +égala égaler ver 4.96 4.39 0.02 0.07 ind:pas:3s; +égalable égalable adj f s 0.01 0 0.01 0 +égalaient égaler ver 4.96 4.39 0 0.07 ind:imp:3p; +égalais égaler ver 4.96 4.39 0 0.07 ind:imp:1s; +égalait égaler ver 4.96 4.39 0.06 0.54 ind:imp:3s; +égalant égaler ver 4.96 4.39 0.01 0.2 par:pre; +égale égal adj f s 38.08 39.32 4.51 12.91 +également également adv 32.19 71.01 32.19 71.01 +égalent égaler ver 4.96 4.39 0.79 0.34 ind:pre:3p; +égaler égaler ver 4.96 4.39 1.12 1.35 inf; +égalera égaler ver 4.96 4.39 0.09 0.07 ind:fut:3s; +égalerai égaler ver 4.96 4.39 0.01 0 ind:fut:1s; +égalerais égaler ver 4.96 4.39 0.01 0 cnd:pre:1s; +égalerait égaler ver 4.96 4.39 0.02 0.14 cnd:pre:3s; +égaleras égaler ver 4.96 4.39 0.01 0 ind:fut:2s; +égaleront égaler ver 4.96 4.39 0.01 0.07 ind:fut:3p; +égales égal adj f p 38.08 39.32 2.98 3.31 +égalisa égaliser ver 1.76 3.04 0 0.2 ind:pas:3s; +égalisais égaliser ver 1.76 3.04 0 0.07 ind:imp:1s; +égalisait égaliser ver 1.76 3.04 0.01 0.88 ind:imp:3s; +égalisant égaliser ver 1.76 3.04 0 0.14 par:pre; +égalisateur égalisateur adj m s 0.02 0.2 0.01 0.14 +égalisateurs égalisateur adj m p 0.02 0.2 0 0.07 +égalisation égalisation nom f s 0.04 0.27 0.04 0.27 +égalisatrice égalisateur adj f s 0.02 0.2 0.01 0 +égalise égaliser ver 1.76 3.04 0.19 0.54 ind:pre:1s;ind:pre:3s; +égalisent égaliser ver 1.76 3.04 0.02 0.07 ind:pre:3p; +égaliser égaliser ver 1.76 3.04 0.87 0.74 inf; +égaliseur égaliseur nom m s 0.05 0 0.05 0 +égalisez égaliser ver 1.76 3.04 0.03 0 imp:pre:2p;ind:pre:2p; +égalisèrent égaliser ver 1.76 3.04 0 0.07 ind:pas:3p; +égalisé égaliser ver m s 1.76 3.04 0.62 0.27 par:pas; +égalisées égaliser ver f p 1.76 3.04 0.01 0 par:pas; +égalisés égaliser ver m p 1.76 3.04 0.01 0.07 par:pas; +égalitaire égalitaire adj s 0.09 0.34 0.09 0.34 +égalitarisme égalitarisme nom m s 0 0.07 0 0.07 +égalité égalité nom f s 6.99 8.18 6.96 8.11 +égalités égalité nom f p 6.99 8.18 0.02 0.07 +égalât égaler ver 4.96 4.39 0.14 0.07 sub:imp:3s; +égalé égaler ver m s 4.96 4.39 0.33 0.14 par:pas; +égalée égaler ver f s 4.96 4.39 0.07 0 par:pas; +égalées égaler ver f p 4.96 4.39 0 0.07 par:pas; +égara égarer ver 10.55 22.77 0 0.14 ind:pas:3s; +égarai égarer ver 10.55 22.77 0 0.14 ind:pas:1s; +égaraient égarer ver 10.55 22.77 0 0.61 ind:imp:3p; +égarais égarer ver 10.55 22.77 0 0.2 ind:imp:1s; +égarait égarer ver 10.55 22.77 0.04 1.42 ind:imp:3s; +égarant égarer ver 10.55 22.77 0.02 0.34 par:pre; +égard égard nom m s 9.19 65.61 6.77 58.31 +égards égard nom m p 9.19 65.61 2.42 7.3 +égare égarer ver 10.55 22.77 2.25 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +égarement égarement nom m s 1.04 3.65 0.44 2.5 +égarements égarement nom m p 1.04 3.65 0.61 1.15 +égarent égarer ver 10.55 22.77 0.34 0.81 ind:pre:3p; +égarer égarer ver 10.55 22.77 1.51 3.11 inf; +égareraient égarer ver 10.55 22.77 0 0.07 cnd:pre:3p; +égarerais égarer ver 10.55 22.77 0 0.07 cnd:pre:1s; +égarerait égarer ver 10.55 22.77 0.01 0.2 cnd:pre:3s; +égarerions égarer ver 10.55 22.77 0 0.07 cnd:pre:1p; +égares égarer ver 10.55 22.77 0.27 0.07 ind:pre:2s; +égarez égarer ver 10.55 22.77 0.34 0.07 imp:pre:2p;ind:pre:2p; +égarons égarer ver 10.55 22.77 0.18 0.14 imp:pre:1p;ind:pre:1p; +égarât égarer ver 10.55 22.77 0 0.07 sub:imp:3s; +égarèrent égarer ver 10.55 22.77 0 0.2 ind:pas:3p; +égaré égarer ver m s 10.55 22.77 3.27 5.81 par:pas; +égarée égaré adj f s 3.43 11.89 0.91 2.77 +égarées égaré adj f p 3.43 11.89 0.37 0.68 +égarés égarer ver m p 10.55 22.77 1.21 2.91 par:pas; +égaux égal adj m p 38.08 39.32 3.18 2.84 +égaya égayer ver 1.39 5.68 0 0.27 ind:pas:3s; +égayaient égayer ver 1.39 5.68 0 0.2 ind:imp:3p; +égayait égayer ver 1.39 5.68 0 0.88 ind:imp:3s; +égayant égayer ver 1.39 5.68 0 0.14 par:pre; +égayante égayant adj f s 0 0.07 0 0.07 +égaye égayer ver 1.39 5.68 0.07 0.54 imp:pre:2s;ind:pre:3s; +égayer égayer ver 1.39 5.68 1 1.42 inf; +égayerais égayer ver 1.39 5.68 0.01 0 cnd:pre:1s; +égayez égayer ver 1.39 5.68 0.01 0 imp:pre:2p; +égayât égayer ver 1.39 5.68 0 0.07 sub:imp:3s; +égayèrent égayer ver 1.39 5.68 0 0.07 ind:pas:3p; +égayé égayer ver m s 1.39 5.68 0.06 0.95 par:pas; +égayée égayer ver f s 1.39 5.68 0.01 0.54 par:pas; +égayées égayer ver f p 1.39 5.68 0 0.07 par:pas; +égayés égayer ver m p 1.39 5.68 0 0.14 par:pas; +égide égide nom f s 0.2 0.95 0.2 0.95 +égipan égipan nom m s 0 0.14 0 0.07 +égipans égipan nom m p 0 0.14 0 0.07 +églantier églantier nom m s 0 0.61 0 0.07 +églantiers églantier nom m p 0 0.61 0 0.54 +églantine églantine nom f s 0.96 2.03 0.95 1.76 +églantines églantine nom f p 0.96 2.03 0.01 0.27 +église église nom f s 64.75 145.07 60.2 123.58 +églises église nom f p 64.75 145.07 4.55 21.49 +églogue églogue nom f s 0.1 0.34 0 0.27 +églogues églogue nom f p 0.1 0.34 0.1 0.07 +égocentrique égocentrique adj s 1.49 0.34 1.21 0.34 +égocentriques égocentrique adj p 1.49 0.34 0.28 0 +égocentrisme égocentrisme nom m s 0.23 0.27 0.23 0.2 +égocentrismes égocentrisme nom m p 0.23 0.27 0 0.07 +égocentriste égocentriste nom s 0.03 0.07 0.03 0 +égocentristes égocentriste nom p 0.03 0.07 0 0.07 +égorge égorger ver 9.04 9.66 2.74 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égorgea égorger ver 9.04 9.66 0.14 0.07 ind:pas:3s; +égorgeaient égorger ver 9.04 9.66 0 0.14 ind:imp:3p; +égorgeais égorger ver 9.04 9.66 0.01 0 ind:imp:1s; +égorgeait égorger ver 9.04 9.66 0.16 0.74 ind:imp:3s; +égorgeant égorger ver 9.04 9.66 0.14 0.14 par:pre; +égorgement égorgement nom m s 0.05 0.74 0.05 0.34 +égorgements égorgement nom m p 0.05 0.74 0 0.41 +égorgent égorger ver 9.04 9.66 0.35 0.34 ind:pre:3p; +égorgeoir égorgeoir nom m s 0 0.14 0 0.14 +égorger égorger ver 9.04 9.66 2.96 2.84 inf;; +égorgerai égorger ver 9.04 9.66 0.04 0 ind:fut:1s; +égorgeraient égorger ver 9.04 9.66 0.02 0 cnd:pre:3p; +égorgerais égorger ver 9.04 9.66 0.15 0 cnd:pre:1s; +égorgeras égorger ver 9.04 9.66 0.01 0 ind:fut:2s; +égorgeront égorger ver 9.04 9.66 0.04 0 ind:fut:3p; +égorgeur égorgeur nom m s 0.2 0.95 0.19 0.34 +égorgeurs égorgeur nom m p 0.2 0.95 0.01 0.54 +égorgeuses égorgeur nom f p 0.2 0.95 0 0.07 +égorgez égorger ver 9.04 9.66 0 0.07 imp:pre:2p; +égorgèrent égorger ver 9.04 9.66 0 0.07 ind:pas:3p; +égorgé égorger ver m s 9.04 9.66 1.14 1.89 par:pas; +égorgée égorger ver f s 9.04 9.66 0.65 0.54 par:pas; +égorgées égorger ver f p 9.04 9.66 0.16 0.27 par:pas; +égorgés égorger ver m p 9.04 9.66 0.35 1.22 par:pas; +égosilla égosiller ver 0.2 2.03 0 0.14 ind:pas:3s; +égosillaient égosiller ver 0.2 2.03 0 0.14 ind:imp:3p; +égosillait égosiller ver 0.2 2.03 0.1 0.54 ind:imp:3s; +égosillant égosiller ver 0.2 2.03 0 0.2 par:pre; +égosille égosiller ver 0.2 2.03 0.02 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égosillent égosiller ver 0.2 2.03 0.01 0.14 ind:pre:3p; +égosiller égosiller ver 0.2 2.03 0.07 0.47 inf; +égotisme égotisme nom m s 0.16 0.2 0.16 0.2 +égotiste égotiste adj s 0.05 0.07 0.05 0 +égotistes égotiste nom p 0.03 0.07 0.02 0 +égout égout nom m s 7.01 8.45 3.23 6.22 +égoutier égoutier nom m s 0.06 1.76 0.01 1.62 +égoutiers égoutier nom m p 0.06 1.76 0.05 0.14 +égouts égout nom m p 7.01 8.45 3.78 2.23 +égoutta égoutter ver 0.34 4.39 0 0.34 ind:pas:3s; +égouttaient égoutter ver 0.34 4.39 0.01 0.54 ind:imp:3p; +égouttait égoutter ver 0.34 4.39 0.1 1.28 ind:imp:3s; +égouttant égoutter ver 0.34 4.39 0 0.54 par:pre; +égoutte égoutter ver 0.34 4.39 0.01 0.14 ind:pre:3s; +égouttement égouttement nom m s 0 0.34 0 0.34 +égouttent égoutter ver 0.34 4.39 0.01 0.34 ind:pre:3p; +égoutter égoutter ver 0.34 4.39 0.18 0.68 inf; +égoutterait égoutter ver 0.34 4.39 0 0.07 cnd:pre:3s; +égouttez égoutter ver 0.34 4.39 0 0.14 imp:pre:2p; +égouttis égouttis nom m 0 0.07 0 0.07 +égouttoir égouttoir nom m s 0.14 0.54 0.14 0.54 +égouttèrent égoutter ver 0.34 4.39 0 0.07 ind:pas:3p; +égoutté égoutter ver m s 0.34 4.39 0.02 0.27 par:pas; +égoïne égoïne nom f s 0 0.47 0 0.47 +égoïsme égoïsme nom m s 2.15 9.53 2.15 9.39 +égoïsmes égoïsme nom m p 2.15 9.53 0 0.14 +égoïste égoïste adj s 8.13 7.91 7.27 6.82 +égoïstement égoïstement adv 0.24 0.41 0.24 0.41 +égoïstes égoïste adj p 8.13 7.91 0.86 1.08 +égrainer égrainer ver 0 0.07 0 0.07 inf; +égrappait égrapper ver 0 0.07 0 0.07 ind:imp:3s; +égratigna égratigner ver 0.57 1.62 0 0.14 ind:pas:3s; +égratignaient égratigner ver 0.57 1.62 0 0.14 ind:imp:3p; +égratignait égratigner ver 0.57 1.62 0 0.14 ind:imp:3s; +égratignant égratigner ver 0.57 1.62 0 0.14 par:pre; +égratigne égratigner ver 0.57 1.62 0.07 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égratignent égratigner ver 0.57 1.62 0.03 0.07 ind:pre:3p; +égratigner égratigner ver 0.57 1.62 0.15 0.14 inf; +égratignes égratigner ver 0.57 1.62 0.01 0.07 ind:pre:2s; +égratignure égratignure nom f s 4.86 2.23 3.97 1.35 +égratignures égratignure nom f p 4.86 2.23 0.89 0.88 +égratigné égratigner ver m s 0.57 1.62 0.25 0.34 par:pas; +égratignée égratigner ver f s 0.57 1.62 0.05 0.27 par:pas; +égratignés égratigner ver m p 0.57 1.62 0.02 0.07 par:pas; +égrena égrener ver 0.32 7.7 0.01 0.2 ind:pas:3s; +égrenage égrenage nom m s 0.01 0 0.01 0 +égrenaient égrener ver 0.32 7.7 0.01 0.74 ind:imp:3p; +égrenais égrener ver 0.32 7.7 0 0.27 ind:imp:1s;ind:imp:2s; +égrenait égrener ver 0.32 7.7 0 0.61 ind:imp:3s; +égrenant égrener ver 0.32 7.7 0 1.22 par:pre; +égrener égrener ver 0.32 7.7 0.02 1.35 inf; +égreneuse égreneur nom f s 0.44 0 0.44 0 +égrenèrent égrener ver 0.32 7.7 0 0.27 ind:pas:3p; +égrené égrener ver m s 0.32 7.7 0.1 0.34 par:pas; +égrenée égrener ver f s 0.32 7.7 0 0.14 par:pas; +égrenées égrener ver f p 0.32 7.7 0 0.54 par:pas; +égrenés égrener ver m p 0.32 7.7 0.01 0.34 par:pas; +égrillard égrillard adj m s 0 1.55 0 0.74 +égrillarde égrillard adj f s 0 1.55 0 0.27 +égrillardes égrillard adj f p 0 1.55 0 0.27 +égrillards égrillard adj m p 0 1.55 0 0.27 +égrotant égrotant adj m s 0 0.34 0 0.2 +égrotantes égrotant adj f p 0 0.34 0 0.07 +égrotants égrotant adj m p 0 0.34 0 0.07 +égrène égrener ver 0.32 7.7 0.16 1.22 imp:pre:2s;ind:pre:3s; +égrènements égrènement nom m p 0 0.07 0 0.07 +égrènent égrener ver 0.32 7.7 0.01 0.47 ind:pre:3p; +égyptien égyptien adj m s 7.48 4.73 2.6 1.96 +égyptienne égyptien adj f s 7.48 4.73 1.31 1.15 +égyptiennes égyptien adj f p 7.48 4.73 0.41 0.54 +égyptiens égyptien adj m p 7.48 4.73 3.16 1.08 +égyptologie égyptologie nom f s 0.06 0.14 0.06 0.14 +égyptologue égyptologue nom s 0.17 0.14 0.04 0 +égyptologues égyptologue nom p 0.17 0.14 0.14 0.14 +égéenne égéen adj f s 0 0.07 0 0.07 +égérie égérie nom f s 0.46 0.27 0.46 0.27 +éhonté éhonté adj m s 1.07 1.28 0.4 0.2 +éhontée éhonté adj f s 1.07 1.28 0.6 0.61 +éhontées éhonté adj f p 1.07 1.28 0.01 0.07 +éhontés éhonté adj m p 1.07 1.28 0.06 0.41 +éjacula éjaculer ver 1.98 1.42 0.27 0.14 ind:pas:3s; +éjaculait éjaculer ver 1.98 1.42 0.01 0.07 ind:imp:3s; +éjaculant éjaculer ver 1.98 1.42 0.16 0.07 par:pre; +éjaculat éjaculat nom m s 0.01 0.2 0.01 0.2 +éjaculateur éjaculateur nom m s 0.16 0.14 0.15 0.14 +éjaculateurs éjaculateur nom m p 0.16 0.14 0.01 0 +éjaculation éjaculation nom f s 1.4 1.42 1.11 1.22 +éjaculations éjaculation nom f p 1.4 1.42 0.29 0.2 +éjacule éjaculer ver 1.98 1.42 0.44 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éjaculent éjaculer ver 1.98 1.42 0.04 0.14 ind:pre:3p; +éjaculer éjaculer ver 1.98 1.42 0.33 0.34 inf; +éjaculé éjaculer ver m s 1.98 1.42 0.73 0.27 par:pas; +éjaculés éjaculer ver m p 1.98 1.42 0 0.07 par:pas; +éjecta éjecter ver 4.46 3.18 0.02 0.07 ind:pas:3s; +éjectable éjectable adj m s 0.38 0.07 0.38 0 +éjectables éjectable adj f p 0.38 0.07 0 0.07 +éjectaient éjecter ver 4.46 3.18 0 0.2 ind:imp:3p; +éjectait éjecter ver 4.46 3.18 0.02 0.2 ind:imp:3s; +éjectant éjecter ver 4.46 3.18 0.06 0.14 par:pre; +éjectas éjecter ver 4.46 3.18 0.01 0 ind:pas:2s; +éjecte éjecter ver 4.46 3.18 0.56 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éjectent éjecter ver 4.46 3.18 0.02 0 ind:pre:3p; +éjecter éjecter ver 4.46 3.18 1.18 0.54 inf; +éjectera éjecter ver 4.46 3.18 0.03 0 ind:fut:3s; +éjecterais éjecter ver 4.46 3.18 0.12 0 cnd:pre:1s;cnd:pre:2s; +éjecteur éjecteur nom m s 0.1 0 0.05 0 +éjecteurs éjecteur nom m p 0.1 0 0.05 0 +éjectez éjecter ver 4.46 3.18 0.08 0 imp:pre:2p;ind:pre:2p; +éjection éjection nom f s 0.44 0.14 0.42 0.14 +éjections éjection nom f p 0.44 0.14 0.02 0 +éjectons éjecter ver 4.46 3.18 0.02 0 imp:pre:1p;ind:pre:1p; +éjectèrent éjecter ver 4.46 3.18 0 0.07 ind:pas:3p; +éjecté éjecter ver m s 4.46 3.18 1.4 0.74 par:pas; +éjectée éjecter ver f s 4.46 3.18 0.61 0.41 par:pas; +éjectées éjecter ver f p 4.46 3.18 0.09 0.2 par:pas; +éjectés éjecter ver m p 4.46 3.18 0.23 0.2 par:pas; +élabora élaborer ver 2.08 5.2 0 0.07 ind:pas:3s; +élaborai élaborer ver 2.08 5.2 0.01 0.07 ind:pas:1s; +élaboraient élaborer ver 2.08 5.2 0 0.2 ind:imp:3p; +élaborait élaborer ver 2.08 5.2 0.06 0.68 ind:imp:3s; +élaborant élaborer ver 2.08 5.2 0 0.2 par:pre; +élaboration élaboration nom f s 0.23 1.76 0.23 1.62 +élaborations élaboration nom f p 0.23 1.76 0 0.14 +élabore élaborer ver 2.08 5.2 0.25 0.14 ind:pre:1s;ind:pre:3s; +élaborent élaborer ver 2.08 5.2 0.1 0.14 ind:pre:3p; +élaborer élaborer ver 2.08 5.2 0.63 1.55 inf; +élaboreraient élaborer ver 2.08 5.2 0 0.07 cnd:pre:3p; +élaboriez élaborer ver 2.08 5.2 0.01 0 ind:imp:2p; +élaborions élaborer ver 2.08 5.2 0 0.07 ind:imp:1p; +élaborons élaborer ver 2.08 5.2 0.01 0 ind:pre:1p; +élaborèrent élaborer ver 2.08 5.2 0.02 0.07 ind:pas:3p; +élaboré élaborer ver m s 2.08 5.2 0.68 0.61 par:pas; +élaborée élaboré adj f s 1.22 0.68 0.27 0.34 +élaborées élaboré adj f p 1.22 0.68 0.18 0 +élaborés élaboré adj m p 1.22 0.68 0.36 0.07 +élagage élagage nom m s 0.03 0.34 0.03 0.34 +élaguais élaguer ver 0.18 0.88 0.01 0 ind:imp:1s; +élaguait élaguer ver 0.18 0.88 0 0.14 ind:imp:3s; +élague élaguer ver 0.18 0.88 0.01 0.07 imp:pre:2s;ind:pre:1s; +élaguer élaguer ver 0.18 0.88 0.09 0.34 inf; +élagueur élagueur nom m s 0.04 0.14 0.03 0 +élagueurs élagueur nom m p 0.04 0.14 0.01 0.14 +élaguez élaguer ver 0.18 0.88 0.01 0.07 imp:pre:2p;ind:pre:2p; +élaguons élaguer ver 0.18 0.88 0.01 0 ind:pre:1p; +élagué élaguer ver m s 0.18 0.88 0.05 0.07 par:pas; +élagués élaguer ver m p 0.18 0.88 0 0.2 par:pas; +élan élan nom m s 5.66 44.73 4.61 37.57 +élance élancer ver 2.25 20.27 0.94 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +élancement élancement nom m s 0.13 2.3 0.04 1.22 +élancements élancement nom m p 0.13 2.3 0.08 1.08 +élancent élancer ver 2.25 20.27 0.2 1.15 ind:pre:3p; +élancer élancer ver 2.25 20.27 0.61 3.85 inf; +élancera élancer ver 2.25 20.27 0.01 0.14 ind:fut:3s; +élanceraient élancer ver 2.25 20.27 0 0.07 cnd:pre:3p; +élancerait élancer ver 2.25 20.27 0.01 0.07 cnd:pre:3s; +élancerions élancer ver 2.25 20.27 0 0.07 cnd:pre:1p; +élanceront élancer ver 2.25 20.27 0 0.07 ind:fut:3p; +élancions élancer ver 2.25 20.27 0 0.27 ind:imp:1p; +élancèrent élancer ver 2.25 20.27 0 0.47 ind:pas:3p; +élancé élancer ver m s 2.25 20.27 0.21 0.68 par:pas; +élancée élancé adj f s 0.13 3.51 0.03 1.49 +élancées élancé adj f p 0.13 3.51 0 0.47 +élancés élancer ver m p 2.25 20.27 0.02 0.27 par:pas; +élans élan nom m p 5.66 44.73 1.05 7.16 +élança élancer ver 2.25 20.27 0.03 4.46 ind:pas:3s; +élançai élancer ver 2.25 20.27 0.14 0.34 ind:pas:1s; +élançaient élancer ver 2.25 20.27 0.03 0.74 ind:imp:3p; +élançais élancer ver 2.25 20.27 0 0.41 ind:imp:1s; +élançait élancer ver 2.25 20.27 0.02 1.55 ind:imp:3s; +élançant élancer ver 2.25 20.27 0 1.28 par:pre; +élargi élargir ver m s 4.85 19.32 0.72 2.36 par:pas; +élargie élargir ver f s 4.85 19.32 0.31 1.55 par:pas; +élargies élargir ver f p 4.85 19.32 0.04 0.61 par:pas; +élargir élargir ver 4.85 19.32 2.07 4.12 inf; +élargira élargir ver 4.85 19.32 0.12 0.07 ind:fut:3s; +élargirait élargir ver 4.85 19.32 0.01 0.14 cnd:pre:3s; +élargirent élargir ver 4.85 19.32 0 0.34 ind:pas:3p; +élargirez élargir ver 4.85 19.32 0 0.07 ind:fut:2p; +élargirons élargir ver 4.85 19.32 0.01 0 ind:fut:1p; +élargis élargir ver m p 4.85 19.32 0.26 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +élargissaient élargir ver 4.85 19.32 0.01 1.01 ind:imp:3p; +élargissait élargir ver 4.85 19.32 0.1 3.18 ind:imp:3s; +élargissant élargir ver 4.85 19.32 0.17 1.89 par:pre; +élargissement élargissement nom m s 0.17 1.22 0.17 1.22 +élargissent élargir ver 4.85 19.32 0.09 0.47 ind:pre:3p; +élargissez élargir ver 4.85 19.32 0.07 0 imp:pre:2p; +élargissions élargir ver 4.85 19.32 0 0.07 ind:imp:1p; +élargit élargir ver 4.85 19.32 0.86 2.57 ind:pre:3s;ind:pas:3s; +élargît élargir ver 4.85 19.32 0 0.07 sub:imp:3s; +élasticimétrie élasticimétrie nom f s 0.01 0 0.01 0 +élasticité élasticité nom f s 0.3 1.76 0.3 1.76 +élastique élastique nom m s 2.12 6.35 1.73 4.26 +élastiques élastique nom m p 2.12 6.35 0.39 2.09 +élastomère élastomère nom m s 0.01 0.14 0.01 0.14 +électeur électeur nom m s 3.54 3.11 0.48 0.47 +électeurs électeur nom m p 3.54 3.11 2.96 2.23 +électif électif adj m s 0.03 0.27 0.01 0.2 +élection élection nom f s 17.17 14.12 5.95 4.32 +élections élection nom f p 17.17 14.12 11.22 9.8 +élective électif adj f s 0.03 0.27 0.01 0 +électivement électivement adv 0 0.14 0 0.14 +électives électif adj f p 0.03 0.27 0 0.07 +électoral électoral adj m s 3.01 4.39 0.32 1.55 +électorale électoral adj f s 3.01 4.39 2.23 1.55 +électoralement électoralement adv 0 0.07 0 0.07 +électorales électoral adj f p 3.01 4.39 0.28 0.88 +électorat électorat nom m s 0.24 0.07 0.24 0.07 +électoraux électoral adj m p 3.01 4.39 0.19 0.41 +électrice électeur nom f s 3.54 3.11 0.02 0.2 +électrices électeur nom f p 3.54 3.11 0.07 0.2 +électricien électricien nom m s 2.79 2.64 2.62 1.82 +électricienne électricien nom f s 2.79 2.64 0 0.07 +électriciennes électricien nom f p 2.79 2.64 0 0.07 +électriciens électricien nom m p 2.79 2.64 0.17 0.68 +électricité électricité nom f s 15.76 12.97 15.76 12.97 +électrifia électrifier ver 1.22 0.54 0.01 0 ind:pas:3s; +électrifiait électrifier ver 1.22 0.54 0 0.07 ind:imp:3s; +électrifiant électrifier ver 1.22 0.54 0.02 0 par:pre; +électrification électrification nom f s 0.02 0.27 0.02 0.27 +électrifier électrifier ver 1.22 0.54 0.03 0 inf; +électrifié électrifier ver m s 1.22 0.54 0.29 0.27 par:pas; +électrifiée électrifier ver f s 1.22 0.54 0.37 0.14 par:pas; +électrifiées électrifier ver f p 1.22 0.54 0.04 0 par:pas; +électrifiés électrifier ver m p 1.22 0.54 0.44 0.07 par:pas; +électrique électrique adj s 20.36 35.81 15.95 27.5 +électriquement électriquement adv 0.21 0.47 0.21 0.47 +électriques électrique adj p 20.36 35.81 4.41 8.31 +électrisa électriser ver 0.25 2.03 0 0.2 ind:pas:3s; +électrisaient électriser ver 0.25 2.03 0 0.07 ind:imp:3p; +électrisais électriser ver 0.25 2.03 0.01 0 ind:imp:1s; +électrisait électriser ver 0.25 2.03 0.02 0.14 ind:imp:3s; +électrisant électrisant adj m s 0.23 0.27 0.18 0.14 +électrisante électrisant adj f s 0.23 0.27 0.05 0.14 +électrisation électrisation nom f s 0 0.07 0 0.07 +électrise électriser ver 0.25 2.03 0.07 0.34 ind:pre:1s;ind:pre:3s; +électrisent électriser ver 0.25 2.03 0.01 0.07 ind:pre:3p; +électriser électriser ver 0.25 2.03 0.03 0.07 inf; +électrisèrent électriser ver 0.25 2.03 0 0.07 ind:pas:3p; +électrisé électriser ver m s 0.25 2.03 0.04 0.68 par:pas; +électrisée électriser ver f s 0.25 2.03 0.01 0.07 par:pas; +électrisées électriser ver f p 0.25 2.03 0 0.14 par:pas; +électro_acoustique électro_acoustique nom f s 0 0.14 0 0.14 +électro_aimant électro_aimant nom m s 0.02 0 0.02 0 +électro_encéphalogramme électro_encéphalogramme nom m s 0.16 0.07 0.16 0.07 +électroacoustique électroacoustique nom f s 0.01 0 0.01 0 +électroaimant électroaimant nom m s 0.06 0 0.03 0 +électroaimants électroaimant nom m p 0.06 0 0.03 0 +électrobiologie électrobiologie nom f s 0.01 0 0.01 0 +électrocardiogramme électrocardiogramme nom m s 0.25 0.34 0.25 0.34 +électrochimie électrochimie nom f s 0.02 0 0.02 0 +électrochimique électrochimique adj f s 0.07 0 0.02 0 +électrochimiques électrochimique adj p 0.07 0 0.05 0 +électrochoc électrochoc nom m s 3.14 0.74 0.28 0.54 +électrochocs électrochoc nom m p 3.14 0.74 2.86 0.2 +électrocutant électrocuter ver 2.08 0.54 0.03 0 par:pre; +électrocute électrocuter ver 2.08 0.54 0.11 0.07 ind:pre:1s;ind:pre:3s; +électrocutent électrocuter ver 2.08 0.54 0.02 0 ind:pre:3p; +électrocuter électrocuter ver 2.08 0.54 0.47 0.07 inf; +électrocutera électrocuter ver 2.08 0.54 0.11 0 ind:fut:3s; +électrocutes électrocuter ver 2.08 0.54 0.02 0 ind:pre:2s; +électrocutez électrocuter ver 2.08 0.54 0.01 0 imp:pre:2p; +électrocution électrocution nom f s 0.4 0.2 0.4 0.2 +électrocuté électrocuter ver m s 2.08 0.54 1.16 0.27 par:pas; +électrocutée électrocuter ver f s 2.08 0.54 0.14 0.14 par:pas; +électrocutés électrocuter ver m p 2.08 0.54 0.01 0 par:pas; +électrode électrode nom f s 0.87 0.07 0.25 0 +électrodes électrode nom f p 0.87 0.07 0.62 0.07 +électrodynamique électrodynamique nom f s 0 0.07 0 0.07 +électroencéphalogramme électroencéphalogramme nom m s 0.09 0 0.09 0 +électroencéphalographie électroencéphalographie nom f s 0.02 0 0.02 0 +électrogène électrogène adj m s 1.1 0.34 1.1 0.34 +électrologie électrologie nom f s 0.01 0 0.01 0 +électrolyse électrolyse nom f s 0.05 0.2 0.05 0.2 +électrolyte électrolyte nom m s 0.35 0 0.1 0 +électrolytes électrolyte nom m p 0.35 0 0.25 0 +électrolytique électrolytique adj m s 0.05 0.07 0.05 0.07 +électromagnétique électromagnétique adj s 1.92 0.07 1.29 0 +électromagnétiques électromagnétique adj p 1.92 0.07 0.62 0.07 +électromagnétisme électromagnétisme nom m s 0.11 0 0.11 0 +électromètre électromètre nom m s 0.07 0 0.07 0 +électroménager électroménager nom m s 0.26 0.34 0.26 0.34 +électron électron nom m s 1.28 0.2 0.45 0.07 +électronicien électronicien nom m s 0.06 0.07 0.04 0 +électroniciens électronicien nom m p 0.06 0.07 0.02 0.07 +électronique électronique adj s 6.7 3.51 5 1.96 +électroniquement électroniquement adv 0.21 0 0.21 0 +électroniques électronique adj p 6.7 3.51 1.69 1.55 +électrons électron nom m p 1.28 0.2 0.83 0.14 +électronucléaire électronucléaire adj f s 0.01 0 0.01 0 +électronvolts électronvolt nom m p 0.02 0 0.02 0 +électrophone électrophone nom m s 0.28 3.04 0.28 2.97 +électrophones électrophone nom m p 0.28 3.04 0 0.07 +électrophorèse électrophorèse nom f s 0.01 0 0.01 0 +électrostatique électrostatique adj s 0.28 0.07 0.25 0.07 +électrostatiques électrostatique adj p 0.28 0.07 0.04 0 +électrum électrum nom m s 0.27 0.07 0.27 0.07 +électuaires électuaire nom m p 0 0.14 0 0.14 +éleusinienne éleusinien adj f s 0 0.07 0 0.07 +éleva élever ver 52.03 103.85 0.28 12.91 ind:pas:3s; +élevage élevage nom m s 3.15 3.38 2.88 2.91 +élevages élevage nom m p 3.15 3.38 0.28 0.47 +élevai élever ver 52.03 103.85 0.23 0.41 ind:pas:1s; +élevaient élever ver 52.03 103.85 0.17 4.73 ind:imp:3p; +élevais élever ver 52.03 103.85 0.26 0.61 ind:imp:1s;ind:imp:2s; +élevait élever ver 52.03 103.85 1 15.34 ind:imp:3s; +élevant élever ver 52.03 103.85 0.36 8.38 par:pre; +élever élever ver 52.03 103.85 15.57 20.2 inf;; +éleveur éleveur nom m s 1.82 1.76 0.98 1.01 +éleveurs éleveur nom m p 1.82 1.76 0.8 0.74 +éleveuse éleveur nom f s 1.82 1.76 0.04 0 +élevez élever ver 52.03 103.85 0.69 0.27 imp:pre:2p;ind:pre:2p; +éleviez élever ver 52.03 103.85 0.23 0 ind:imp:2p; +élevions élever ver 52.03 103.85 0.02 0.07 ind:imp:1p; +élevons élever ver 52.03 103.85 0.34 0.14 imp:pre:1p;ind:pre:1p; +élevures élevure nom f p 0 0.07 0 0.07 +élevât élever ver 52.03 103.85 0 0.2 sub:imp:3s; +élevèrent élever ver 52.03 103.85 0.07 1.76 ind:pas:3p; +élevé élevé adj m s 25.02 30.68 14.37 15.2 +élevée élevé adj f s 25.02 30.68 5.82 7.5 +élevées élevé adj f p 25.02 30.68 1.06 1.76 +élevés élevé adj m p 25.02 30.68 3.78 6.22 +élia élier ver 0.05 8.99 0 1.35 ind:pas:3s; +élias élier ver 0.05 8.99 0.04 0 ind:pas:2s; +éliciter éliciter ver 0.01 0 0.01 0 inf; +élie élier ver 0.05 8.99 0.01 7.64 imp:pre:2s;ind:pre:3s; +éligibilité éligibilité nom f s 0.04 0.14 0.04 0.14 +éligible éligible adj s 0.11 0.2 0.1 0.07 +éligibles éligible adj p 0.11 0.2 0.01 0.14 +élime élimer ver 0.04 1.01 0 0.07 ind:pre:3s; +élimer élimer ver 0.04 1.01 0.01 0 inf; +élimina éliminer ver 30.28 8.04 0.01 0.2 ind:pas:3s; +éliminais éliminer ver 30.28 8.04 0.02 0 ind:imp:1s; +éliminait éliminer ver 30.28 8.04 0.17 0.61 ind:imp:3s; +éliminant éliminer ver 30.28 8.04 0.67 0.14 par:pre; +éliminateur éliminateur adj m s 0.03 0 0.01 0 +éliminateurs éliminateur adj m p 0.03 0 0.02 0 +élimination élimination nom f s 1.55 1.96 1.47 1.89 +éliminations élimination nom f p 1.55 1.96 0.08 0.07 +éliminatoire éliminatoire adj s 0.12 0.2 0.08 0.2 +éliminatoires éliminatoire nom f p 0.32 0.34 0.29 0.34 +élimine éliminer ver 30.28 8.04 4 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éliminent éliminer ver 30.28 8.04 0.3 0.14 ind:pre:3p; +éliminer éliminer ver 30.28 8.04 14.66 3.58 inf; +éliminera éliminer ver 30.28 8.04 0.4 0 ind:fut:3s; +éliminerai éliminer ver 30.28 8.04 0.11 0.07 ind:fut:1s; +élimineraient éliminer ver 30.28 8.04 0.06 0 cnd:pre:3p; +éliminerais éliminer ver 30.28 8.04 0.04 0.07 cnd:pre:1s; +éliminerait éliminer ver 30.28 8.04 0.13 0.07 cnd:pre:3s; +élimineras éliminer ver 30.28 8.04 0.01 0 ind:fut:2s; +éliminerez éliminer ver 30.28 8.04 0.34 0 ind:fut:2p; +éliminerons éliminer ver 30.28 8.04 0.11 0.2 ind:fut:1p; +élimineront éliminer ver 30.28 8.04 0.06 0.07 ind:fut:3p; +élimines éliminer ver 30.28 8.04 0.47 0.07 ind:pre:2s; +éliminez éliminer ver 30.28 8.04 0.47 0 imp:pre:2p;ind:pre:2p; +éliminiez éliminer ver 30.28 8.04 0.03 0 ind:imp:2p; +éliminons éliminer ver 30.28 8.04 0.19 0 imp:pre:1p;ind:pre:1p; +éliminèrent éliminer ver 30.28 8.04 0 0.07 ind:pas:3p; +éliminé éliminer ver m s 30.28 8.04 5.47 0.95 par:pas; +éliminée éliminer ver f s 30.28 8.04 0.65 0.2 par:pas; +éliminées éliminer ver f p 30.28 8.04 0.25 0.14 par:pas; +éliminés éliminer ver m p 30.28 8.04 1.67 0.47 par:pas; +élimâmes élimer ver 0.04 1.01 0 0.07 ind:pas:1p; +élimé élimé adj m s 0.04 2.64 0.01 1.01 +élimée élimé adj f s 0.04 2.64 0.03 0.27 +élimées élimer ver f p 0.04 1.01 0.01 0.07 par:pas; +élimés élimer ver m p 0.04 1.01 0.02 0.14 par:pas; +élingue élingue nom f s 0.02 0 0.02 0 +élirait élire ver 11.23 13.51 0.01 0.07 cnd:pre:3s; +élire élire ver 11.23 13.51 2.15 2.03 inf; +élirez élire ver 11.23 13.51 0.02 0.07 ind:fut:2p; +éliront élire ver 11.23 13.51 0.03 0.14 ind:fut:3p; +élis élire ver 11.23 13.51 2 0.07 imp:pre:2s;ind:pre:1s; +élisabéthain élisabéthain adj m s 0.05 0.27 0.02 0.07 +élisabéthaine élisabéthain adj f s 0.05 0.27 0.03 0.2 +élisaient élire ver 11.23 13.51 0 0.14 ind:imp:3p; +élisais élire ver 11.23 13.51 0 0.07 ind:imp:1s; +élisait élire ver 11.23 13.51 0.01 0.07 ind:imp:3s; +élisant élire ver 11.23 13.51 0.12 0.14 par:pre; +élise élire ver 11.23 13.51 0.27 4.86 sub:pre:1s;sub:pre:3s; +élisent élire ver 11.23 13.51 0.16 0.27 ind:pre:3p; +élisez élire ver 11.23 13.51 0.08 0.07 imp:pre:2p;ind:pre:2p; +élit élire ver 11.23 13.51 0.12 0.14 ind:pre:3s; +élite élite nom f s 7.38 10.27 7.24 8.65 +élites élite nom f p 7.38 10.27 0.14 1.62 +élitisme élitisme nom m s 0.16 0 0.16 0 +élitiste élitiste adj s 0.28 0.34 0.25 0.2 +élitistes élitiste adj f p 0.28 0.34 0.03 0.14 +élixir élixir nom m s 1.56 1.42 1.52 1.28 +élixirs élixir nom m p 1.56 1.42 0.04 0.14 +élocution élocution nom f s 0.84 1.62 0.84 1.62 +éloge éloge nom m s 2.62 8.85 1.31 5.47 +éloges éloge nom m p 2.62 8.85 1.31 3.38 +élogieuse élogieux adj f s 0.42 0.81 0.06 0.34 +élogieuses élogieux adj f p 0.42 0.81 0.05 0.14 +élogieux élogieux adj m 0.42 0.81 0.3 0.34 +éloigna éloigner ver 41.15 133.11 0.1 19.19 ind:pas:3s; +éloignai éloigner ver 41.15 133.11 0.02 0.74 ind:pas:1s; +éloignaient éloigner ver 41.15 133.11 0.16 4.73 ind:imp:3p; +éloignais éloigner ver 41.15 133.11 0.28 0.41 ind:imp:1s;ind:imp:2s; +éloignait éloigner ver 41.15 133.11 0.45 16.82 ind:imp:3s; +éloignant éloigner ver 41.15 133.11 0.65 7.64 par:pre; +éloigne éloigner ver 41.15 133.11 9.77 19.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éloignement éloignement nom m s 1.12 7.5 1.12 7.5 +éloignent éloigner ver 41.15 133.11 1.64 5.54 ind:pre:3p; +éloigner éloigner ver 41.15 133.11 14.51 28.45 inf;; +éloignera éloigner ver 41.15 133.11 0.43 0.47 ind:fut:3s; +éloignerai éloigner ver 41.15 133.11 0.11 0.07 ind:fut:1s; +éloigneraient éloigner ver 41.15 133.11 0.15 0.27 cnd:pre:3p; +éloignerais éloigner ver 41.15 133.11 0.09 0 cnd:pre:1s; +éloignerait éloigner ver 41.15 133.11 0.11 0.41 cnd:pre:3s; +éloigneras éloigner ver 41.15 133.11 0.14 0.07 ind:fut:2s; +éloignerez éloigner ver 41.15 133.11 0.04 0 ind:fut:2p; +éloignerons éloigner ver 41.15 133.11 0.04 0.14 ind:fut:1p; +éloigneront éloigner ver 41.15 133.11 0.04 0 ind:fut:3p; +éloignes éloigner ver 41.15 133.11 1 0.27 ind:pre:2s;sub:pre:2s; +éloignez éloigner ver 41.15 133.11 3.36 0.68 imp:pre:2p;ind:pre:2p; +éloignions éloigner ver 41.15 133.11 0.2 0.68 ind:imp:1p; +éloignons éloigner ver 41.15 133.11 0.43 0.54 imp:pre:1p;ind:pre:1p; +éloignâmes éloigner ver 41.15 133.11 0 0.2 ind:pas:1p; +éloignât éloigner ver 41.15 133.11 0.1 0.41 sub:imp:3s; +éloignèrent éloigner ver 41.15 133.11 0.01 3.51 ind:pas:3p; +éloigné éloigner ver m s 41.15 133.11 4.25 11.82 par:pas; +éloignée éloigner ver f s 41.15 133.11 1.48 5.07 par:pas; +éloignées éloigné adj f p 4.14 12.16 0.37 1.82 +éloignés éloigner ver m p 41.15 133.11 1.38 3.99 par:pas; +élongation élongation nom f s 0.08 0.34 0.08 0.27 +élongations élongation nom f p 0.08 0.34 0 0.07 +éloquemment éloquemment adv 0.05 0.34 0.05 0.34 +éloquence éloquence nom f s 1.3 4.46 1.3 4.46 +éloquent éloquent adj m s 0.98 5.34 0.81 2.3 +éloquente éloquent adj f s 0.98 5.34 0.08 1.62 +éloquentes éloquent adj f p 0.98 5.34 0.02 0.54 +éloquents éloquent adj m p 0.98 5.34 0.07 0.88 +élu élire ver m s 11.23 13.51 5.85 4.46 par:pas; +élucida élucider ver 2.43 2.64 0 0.07 ind:pas:3s; +élucidai élucider ver 2.43 2.64 0 0.07 ind:pas:1s; +élucidation élucidation nom f s 0.05 0.61 0.05 0.61 +élucide élucider ver 2.43 2.64 0.1 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +élucider élucider ver 2.43 2.64 1.31 1.69 inf; +élucideraient élucider ver 2.43 2.64 0 0.07 cnd:pre:3p; +éluciderait élucider ver 2.43 2.64 0.01 0 cnd:pre:3s; +élucidé élucider ver m s 2.43 2.64 0.6 0.2 par:pas; +élucidée élucider ver f s 2.43 2.64 0.09 0.07 par:pas; +élucidées élucider ver f p 2.43 2.64 0.2 0.2 par:pas; +élucidés élucider ver m p 2.43 2.64 0.13 0.07 par:pas; +élucubration élucubration nom f s 0.18 1.15 0 0.07 +élucubrations élucubration nom f p 0.18 1.15 0.18 1.08 +élucubre élucubrer ver 0.01 0.27 0 0.07 ind:pre:3s; +élucubrent élucubrer ver 0.01 0.27 0 0.07 ind:pre:3p; +élucubrer élucubrer ver 0.01 0.27 0.01 0.14 inf; +éluda éluder ver 0.69 5 0 0.74 ind:pas:3s; +éludai éluder ver 0.69 5 0 0.07 ind:pas:1s; +éludaient éluder ver 0.69 5 0 0.14 ind:imp:3p; +éludais éluder ver 0.69 5 0.01 0.07 ind:imp:1s; +éludait éluder ver 0.69 5 0 0.41 ind:imp:3s; +éludant éluder ver 0.69 5 0 0.07 par:pre; +élude éluder ver 0.69 5 0.07 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éludent éluder ver 0.69 5 0.01 0.07 ind:pre:3p; +éluder éluder ver 0.69 5 0.33 1.89 inf; +éludes éluder ver 0.69 5 0.04 0.07 ind:pre:2s; +éludez éluder ver 0.69 5 0.13 0 imp:pre:2p;ind:pre:2p; +éludât éluder ver 0.69 5 0 0.14 sub:imp:3s; +éludé éluder ver m s 0.69 5 0.07 0.61 par:pas; +éludée éluder ver f s 0.69 5 0.01 0.07 par:pas; +éludées éluder ver f p 0.69 5 0.02 0.2 par:pas; +élue élu adj f s 5.49 4.73 3.62 2.16 +élues élu adj f p 5.49 4.73 0.14 0.68 +élus élu nom m p 4.41 5.81 1.59 4.12 +élusifs élusif adj m p 0.01 0.07 0 0.07 +élusive élusif adj f s 0.01 0.07 0.01 0 +élut élire ver 11.23 13.51 0 0.14 ind:pas:3s; +élysée élysée nom m s 0.16 3.72 0.16 3.72 +élyséen élyséen adj m s 0 0.14 0 0.07 +élyséenne élyséen adj f s 0 0.14 0 0.07 +élytre élytre nom m s 0.01 1.76 0.01 0 +élytres élytre nom m p 0.01 1.76 0 1.76 +élève élève nom s 36.84 57.77 15.83 21.69 +élèvent élever ver 52.03 103.85 1.87 5.27 ind:pre:3p; +élèvera élever ver 52.03 103.85 1.23 0.34 ind:fut:3s; +élèverai élever ver 52.03 103.85 0.55 0.41 ind:fut:1s; +élèveraient élever ver 52.03 103.85 0.11 0.07 cnd:pre:3p; +élèverais élever ver 52.03 103.85 0.16 0 cnd:pre:1s;cnd:pre:2s; +élèverait élever ver 52.03 103.85 0.21 0.81 cnd:pre:3s; +élèveras élever ver 52.03 103.85 0.2 0 ind:fut:2s; +élèveriez élever ver 52.03 103.85 0 0.07 cnd:pre:2p; +élèverons élever ver 52.03 103.85 0.22 0.07 ind:fut:1p; +élèveront élever ver 52.03 103.85 0.19 0.14 ind:fut:3p; +élèves élève nom p 36.84 57.77 21.01 36.08 +éléates éléate nom p 0 0.07 0 0.07 +élégamment élégamment adv 0.23 1.89 0.23 1.89 +élégance élégance nom f s 4.17 23.51 4.12 22.77 +élégances élégance nom f p 4.17 23.51 0.06 0.74 +élégant élégant adj m s 10.13 28.85 4.74 11.35 +élégante élégant adj f s 10.13 28.85 3.86 9.46 +élégantes élégant adj f p 10.13 28.85 0.86 3.38 +élégants élégant adj m p 10.13 28.85 0.68 4.66 +élégiaque élégiaque adj s 0.1 0.27 0.1 0.2 +élégiaques élégiaque nom p 0 0.34 0 0.2 +élégie élégie nom f s 0.15 0.41 0.11 0.27 +élégies élégie nom f p 0.15 0.41 0.04 0.14 +élément élément nom m s 24.03 63.04 10.2 16.15 +élément_clé élément_clé nom m s 0.09 0 0.09 0 +élémentaire élémentaire adj s 3.09 14.05 2.26 10.2 +élémentaires élémentaire adj p 3.09 14.05 0.82 3.85 +élémentarité élémentarité nom f s 0 0.07 0 0.07 +éléments élément nom m p 24.03 63.04 13.83 46.89 +éléments_clé éléments_clé nom m p 0.02 0 0.02 0 +éléphant éléphant nom m s 15.36 15.2 10.17 8.92 +éléphante éléphant nom f s 15.36 15.2 0.02 0.2 +éléphanteau éléphanteau nom m s 0.02 0.2 0.02 0.2 +éléphantes éléphant nom f p 15.36 15.2 0 0.07 +éléphantesque éléphantesque adj s 0.02 0.27 0.02 0.07 +éléphantesques éléphantesque adj p 0.02 0.27 0 0.2 +éléphantiasique éléphantiasique adj s 0.01 0 0.01 0 +éléphantiasis éléphantiasis nom m 0.04 0.27 0.04 0.27 +éléphantine éléphantin adj f s 0.01 0.34 0.01 0.07 +éléphantines éléphantin adj f p 0.01 0.34 0 0.27 +éléphants éléphant nom m p 15.36 15.2 5.17 6.01 +élévateur élévateur nom m s 0.28 0 0.25 0 +élévateurs élévateur nom m p 0.28 0 0.03 0 +élévation élévation nom f s 0.33 3.11 0.3 2.97 +élévations élévation nom f p 0.33 3.11 0.04 0.14 +élévatrice élévateur adj f s 0.23 0.27 0.01 0 +élévatrices élévateur adj f p 0.23 0.27 0.01 0 +émaciait émacier ver 0.17 1.01 0 0.14 ind:imp:3s; +émacie émacier ver 0.17 1.01 0 0.14 ind:pre:3s; +émacié émacier ver m s 0.17 1.01 0.14 0.41 par:pas; +émaciée émacié adj f s 0.05 2.57 0 0.34 +émaciées émacier ver f p 0.17 1.01 0.01 0 par:pas; +émaciés émacié adj m p 0.05 2.57 0.02 0.07 +émail émail nom m s 0.57 6.42 0.56 5.74 +émailla émailler ver 0.24 2.84 0 0.07 ind:pas:3s; +émaillaient émailler ver 0.24 2.84 0 0.47 ind:imp:3p; +émaillait émailler ver 0.24 2.84 0 0.07 ind:imp:3s; +émaillant émailler ver 0.24 2.84 0.01 0 par:pre; +émaille émailler ver 0.24 2.84 0.01 0.07 ind:pre:1s;ind:pre:3s; +émaillent émailler ver 0.24 2.84 0 0.2 ind:pre:3p; +émailler émailler ver 0.24 2.84 0.01 0.34 inf; +émaillé émailler ver m s 0.24 2.84 0.03 0.74 par:pas; +émaillée émailler ver f s 0.24 2.84 0.17 0.47 par:pas; +émaillées émailler ver f p 0.24 2.84 0.01 0.27 par:pas; +émaillés émaillé adj m p 0.01 2.64 0 0.27 +émanaient émaner ver 2.77 9.93 0.06 0.54 ind:imp:3p; +émanait émaner ver 2.77 9.93 0.15 4.66 ind:imp:3s; +émanant émaner ver 2.77 9.93 0.72 1.22 par:pre; +émanation émanation nom f s 0.78 3.11 0.07 1.08 +émanations émanation nom f p 0.78 3.11 0.7 2.03 +émancipait émanciper ver 0.41 0.74 0 0.07 ind:imp:3s; +émancipateur émancipateur adj m s 0.02 0.07 0.02 0 +émancipation émancipation nom f s 1.12 1.15 1.12 1.15 +émancipatrice émancipateur adj f s 0.02 0.07 0 0.07 +émancipe émanciper ver 0.41 0.74 0.05 0 ind:pre:3s; +émancipent émanciper ver 0.41 0.74 0 0.14 ind:pre:3p; +émanciper émanciper ver 0.41 0.74 0.11 0.27 inf; +émancipé émanciper ver m s 0.41 0.74 0.14 0.07 par:pas; +émancipée émancipé adj f s 0.25 0.41 0.12 0.2 +émancipées émanciper ver f p 0.41 0.74 0 0.14 par:pas; +émancipés émanciper ver m p 0.41 0.74 0.02 0 par:pas; +émane émaner ver 2.77 9.93 1.31 2.09 imp:pre:2s;ind:pre:3s; +émanent émaner ver 2.77 9.93 0.34 0.47 ind:pre:3p; +émaner émaner ver 2.77 9.93 0.1 0.54 inf; +émanera émaner ver 2.77 9.93 0.01 0 ind:fut:3s; +émanerait émaner ver 2.77 9.93 0.02 0.07 cnd:pre:3s; +émané émaner ver m s 2.77 9.93 0.04 0 par:pas; +émanée émaner ver f s 2.77 9.93 0 0.2 par:pas; +émanées émaner ver f p 2.77 9.93 0 0.07 par:pas; +émanés émaner ver m p 2.77 9.93 0 0.07 par:pas; +émarge émarger ver 0.02 0.41 0.02 0.07 ind:pre:1s;ind:pre:3s; +émargeaient émarger ver 0.02 0.41 0 0.07 ind:imp:3p; +émargeait émarger ver 0.02 0.41 0 0.07 ind:imp:3s; +émargeant émarger ver 0.02 0.41 0 0.07 par:pre; +émargement émargement nom m s 0.01 0 0.01 0 +émarger émarger ver 0.02 0.41 0 0.14 inf; +émasculaient émasculer ver 0.31 0.68 0 0.07 ind:imp:3p; +émasculation émasculation nom f s 0.02 0.14 0.02 0.14 +émascule émasculer ver 0.31 0.68 0.03 0.14 ind:pre:1s;ind:pre:3s; +émasculer émasculer ver 0.31 0.68 0.22 0.14 inf; +émasculé émasculer ver m s 0.31 0.68 0.04 0.07 par:pas; +émasculée émasculer ver f s 0.31 0.68 0 0.07 par:pas; +émasculées émasculer ver f p 0.31 0.68 0 0.07 par:pas; +émasculés émasculer ver m p 0.31 0.68 0.03 0.14 par:pas; +émaux émail nom m p 0.57 6.42 0.01 0.68 +émeraude émeraude nom f s 2.77 6.42 0.88 3.58 +émeraudes émeraude nom p 2.77 6.42 1.88 2.84 +émerge émerger ver 3.73 30.2 1.14 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émergea émerger ver 3.73 30.2 0.04 2.64 ind:pas:3s; +émergeai émerger ver 3.73 30.2 0.04 0.2 ind:pas:1s; +émergeaient émerger ver 3.73 30.2 0.1 2.5 ind:imp:3p; +émergeais émerger ver 3.73 30.2 0.21 0.27 ind:imp:1s; +émergeait émerger ver 3.73 30.2 0.03 5.41 ind:imp:3s; +émergeant émerger ver 3.73 30.2 0.28 4.53 par:pre; +émergence émergence nom f s 0.49 0.54 0.49 0.41 +émergences émergence nom f p 0.49 0.54 0 0.14 +émergent émerger ver 3.73 30.2 0.22 2.64 ind:pre:3p;sub:pre:3p; +émergente émergent adj f s 0.11 0.41 0.01 0 +émergeons émerger ver 3.73 30.2 0 0.27 ind:pre:1p; +émerger émerger ver 3.73 30.2 0.7 4.46 inf; +émergera émerger ver 3.73 30.2 0.34 0.07 ind:fut:3s; +émergerait émerger ver 3.73 30.2 0 0.14 cnd:pre:3s; +émergeras émerger ver 3.73 30.2 0 0.07 ind:fut:2s; +émergerons émerger ver 3.73 30.2 0.03 0 ind:fut:1p; +émergeront émerger ver 3.73 30.2 0.01 0 ind:fut:3p; +émerges émerger ver 3.73 30.2 0.06 0.14 ind:pre:2s; +émergeât émerger ver 3.73 30.2 0 0.07 sub:imp:3s; +émergions émerger ver 3.73 30.2 0 0.2 ind:imp:1p; +émergèrent émerger ver 3.73 30.2 0.11 0.27 ind:pas:3p; +émergé émerger ver m s 3.73 30.2 0.38 1.01 par:pas; +émergée émerger ver f s 3.73 30.2 0.05 0.2 par:pas; +émergées émergé adj f p 0 0.34 0 0.07 +émergés émerger ver m p 3.73 30.2 0 0.07 par:pas; +émeri émeri nom m s 0.16 0.95 0.16 0.95 +émerillon émerillon nom m s 0 0.2 0 0.2 +émerillonné émerillonné adj m s 0 0.07 0 0.07 +émerisé émeriser ver m s 0 0.14 0 0.07 par:pas; +émerisées émeriser ver f p 0 0.14 0 0.07 par:pas; +émersion émersion nom f s 0 0.07 0 0.07 +émerveilla émerveiller ver 1.4 20.81 0 0.47 ind:pas:3s; +émerveillai émerveiller ver 1.4 20.81 0 0.14 ind:pas:1s; +émerveillaient émerveiller ver 1.4 20.81 0 0.88 ind:imp:3p; +émerveillais émerveiller ver 1.4 20.81 0.01 0.34 ind:imp:1s; +émerveillait émerveiller ver 1.4 20.81 0.01 3.38 ind:imp:3s; +émerveillant émerveiller ver 1.4 20.81 0.01 0.81 par:pre; +émerveille émerveiller ver 1.4 20.81 0.43 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émerveillement émerveillement nom m s 0.58 8.24 0.56 7.36 +émerveillements émerveillement nom m p 0.58 8.24 0.02 0.88 +émerveillent émerveiller ver 1.4 20.81 0 0.74 ind:pre:3p; +émerveiller émerveiller ver 1.4 20.81 0.12 1.15 inf; +émerveillerait émerveiller ver 1.4 20.81 0 0.07 cnd:pre:3s; +émerveillèrent émerveiller ver 1.4 20.81 0 0.07 ind:pas:3p; +émerveillé émerveiller ver m s 1.4 20.81 0.36 5.81 par:pas; +émerveillée émerveiller ver f s 1.4 20.81 0.38 3.11 par:pas; +émerveillées émerveiller ver f p 1.4 20.81 0.01 0.34 par:pas; +émerveillés émerveiller ver m p 1.4 20.81 0.08 1.89 par:pas; +émet émettre ver 9.45 17.23 1.85 2.57 ind:pre:3s; +émets émettre ver 9.45 17.23 0.48 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +émettaient émettre ver 9.45 17.23 0.01 0.74 ind:imp:3p; +émettait émettre ver 9.45 17.23 0.09 1.55 ind:imp:3s; +émettant émettre ver 9.45 17.23 0.14 1.08 par:pre; +émette émettre ver 9.45 17.23 0.2 0 sub:pre:1s;sub:pre:3s; +émettent émettre ver 9.45 17.23 0.91 0.34 ind:pre:3p; +émetteur émetteur nom m s 3.35 0.54 3.06 0.34 +émetteur_récepteur émetteur_récepteur nom m s 0.05 0 0.05 0 +émetteurs émetteur nom m p 3.35 0.54 0.29 0.2 +émettez émettre ver 9.45 17.23 0.1 0.07 imp:pre:2p;ind:pre:2p; +émettons émettre ver 9.45 17.23 0.14 0.07 imp:pre:1p;ind:pre:1p; +émettra émettre ver 9.45 17.23 0.28 0.07 ind:fut:3s; +émettrai émettre ver 9.45 17.23 0.04 0 ind:fut:1s; +émettre émettre ver 9.45 17.23 2.96 3.04 inf; +émettrice émetteur adj f s 1.01 0.47 0.01 0.07 +émettrons émettre ver 9.45 17.23 0.05 0 ind:fut:1p; +émettront émettre ver 9.45 17.23 0 0.07 ind:fut:3p; +émeu émeu nom m s 0.09 0.07 0.09 0 +émeus émouvoir ver 9.46 37.43 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +émeut émouvoir ver 9.46 37.43 1.22 4.73 ind:pre:3s; +émeute émeute nom f s 6.75 5.81 4.03 3.65 +émeutes émeute nom f p 6.75 5.81 2.71 2.16 +émeutier émeutier nom m s 0.26 0.81 0.01 0 +émeutiers émeutier nom m p 0.26 0.81 0.25 0.81 +émeuve émouvoir ver 9.46 37.43 0.01 0.54 sub:pre:1s;sub:pre:3s; +émeuvent émouvoir ver 9.46 37.43 0.14 1.01 ind:pre:3p;sub:pre:3p; +émietta émietter ver 0.09 3.31 0 0.47 ind:pas:3s; +émiettaient émietter ver 0.09 3.31 0 0.41 ind:imp:3p; +émiettait émietter ver 0.09 3.31 0 0.54 ind:imp:3s; +émiette émietter ver 0.09 3.31 0.02 0.47 ind:pre:1s;ind:pre:3s; +émiettement émiettement nom m s 0 0.47 0 0.27 +émiettements émiettement nom m p 0 0.47 0 0.2 +émiettent émietter ver 0.09 3.31 0.01 0.07 ind:pre:3p; +émietter émietter ver 0.09 3.31 0.05 0.47 inf; +émietterait émietter ver 0.09 3.31 0 0.07 cnd:pre:3s; +émiettez émietter ver 0.09 3.31 0.01 0 ind:pre:2p; +émiettèrent émietter ver 0.09 3.31 0 0.07 ind:pas:3p; +émietté émietter ver m s 0.09 3.31 0 0.61 par:pas; +émiettée émietter ver f s 0.09 3.31 0 0.07 par:pas; +émiettés émietter ver m p 0.09 3.31 0 0.07 par:pas; +émigra émigrer ver 3.15 3.31 0.02 0.07 ind:pas:3s; +émigrai émigrer ver 3.15 3.31 0.01 0.07 ind:pas:1s; +émigraient émigrer ver 3.15 3.31 0.01 0 ind:imp:3p; +émigrais émigrer ver 3.15 3.31 0.01 0.07 ind:imp:1s; +émigrait émigrer ver 3.15 3.31 0 0.07 ind:imp:3s; +émigrant émigrant nom m s 0.5 0.81 0.2 0.2 +émigrante émigrant nom f s 0.5 0.81 0.1 0 +émigrants émigrant nom m p 0.5 0.81 0.2 0.61 +émigration émigration nom f s 0.6 1.15 0.6 1.15 +émigre émigrer ver 3.15 3.31 0.28 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émigrent émigrer ver 3.15 3.31 0.14 0 ind:pre:3p; +émigrer émigrer ver 3.15 3.31 1.02 0.47 inf; +émigrèrent émigrer ver 3.15 3.31 0.01 0.07 ind:pas:3p; +émigré émigrer ver m s 3.15 3.31 1.63 1.55 par:pas; +émigrée émigrer ver f s 3.15 3.31 0.01 0.27 par:pas; +émigrés émigré nom m p 0.91 3.45 0.62 2.3 +émilien émilien nom m s 0 3.38 0 0.07 +émilienne émilien nom f s 0 3.38 0 3.31 +émincer émincer ver 0.38 0.47 0.12 0.07 inf; +émincez émincer ver 0.38 0.47 0.12 0 imp:pre:2p;ind:pre:2p; +émincé émincer ver m s 0.38 0.47 0.11 0.2 par:pas; +émincée émincer ver f s 0.38 0.47 0.01 0 par:pas; +émincées émincer ver f p 0.38 0.47 0.01 0.14 par:pas; +émincés émincé nom m p 0.15 0.14 0.11 0 +éminemment éminemment adv 0.13 1.49 0.13 1.49 +éminence éminence nom f s 1.19 3.85 1.18 3.04 +éminences éminence nom f p 1.19 3.85 0.01 0.81 +éminent éminent adj m s 2.37 5 1.66 2.03 +éminente éminent adj f s 2.37 5 0.07 1.15 +éminentes éminent adj f p 2.37 5 0.03 0.47 +éminentissimes éminentissime adj m p 0 0.07 0 0.07 +éminents éminent adj m p 2.37 5 0.61 1.35 +émir émir nom m s 0.86 0.81 0.75 0.68 +émirat émirat nom m s 0.01 0.27 0 0.07 +émirats émirat nom m p 0.01 0.27 0.01 0.2 +émirs émir nom m p 0.86 0.81 0.11 0.14 +émis émettre ver m 9.45 17.23 1.57 2.3 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +émise émettre ver f s 9.45 17.23 0.23 0.2 par:pas; +émises émettre ver f p 9.45 17.23 0.32 0.47 par:pas; +émissaire émissaire adj m s 2.02 1.22 1.87 1.01 +émissaires émissaire nom m p 2.03 3.72 0.33 2.57 +émission émission nom f s 32.31 10.95 27.75 7.36 +émissions émission nom f p 32.31 10.95 4.56 3.58 +émit émettre ver 9.45 17.23 0.1 4.19 ind:pas:3s; +émoi émoi nom m s 1.71 7.77 1.41 5.88 +émois émoi nom m p 1.71 7.77 0.3 1.89 +émollient émollient adj m s 0 0.41 0 0.07 +émolliente émollient adj f s 0 0.41 0 0.34 +émoluments émolument nom m p 0.01 0.2 0.01 0.2 +émondait émonder ver 0.02 0.68 0 0.07 ind:imp:3s; +émonder émonder ver 0.02 0.68 0.01 0.27 inf; +émondera émonder ver 0.02 0.68 0 0.07 ind:fut:3s; +émondeur émondeur nom m s 0 0.14 0 0.14 +émondons émonder ver 0.02 0.68 0 0.07 imp:pre:1p; +émondé émonder ver m s 0.02 0.68 0.01 0.07 par:pas; +émondée émonder ver f s 0.02 0.68 0 0.07 par:pas; +émondées émonder ver f p 0.02 0.68 0 0.07 par:pas; +émotif émotif adj m s 2.65 1.15 1.16 0.61 +émotifs émotif adj m p 2.65 1.15 0.1 0.27 +émotion émotion nom f s 26.33 59.59 14.03 47.97 +émotionnante émotionnant adj f s 0 0.07 0 0.07 +émotionne émotionner ver 0.54 0.14 0.14 0.07 ind:pre:3s; +émotionnel émotionnel adj m s 5.57 0.41 3.14 0.27 +émotionnelle émotionnel adj f s 5.57 0.41 1.58 0.07 +émotionnellement émotionnellement adv 1.53 0 1.53 0 +émotionnelles émotionnel adj f p 5.57 0.41 0.17 0 +émotionnels émotionnel adj m p 5.57 0.41 0.68 0.07 +émotionné émotionner ver m s 0.54 0.14 0.4 0.07 par:pas; +émotions émotion nom f p 26.33 59.59 12.3 11.62 +émotive émotif adj f s 2.65 1.15 1.22 0.27 +émotives émotif adj f p 2.65 1.15 0.16 0 +émotivité émotivité nom f s 0.15 0.47 0.15 0.47 +émouchets émouchet nom m p 0 0.07 0 0.07 +émoulu émoudre ver m s 0.02 0.61 0.02 0.47 par:pas; +émoulue émoulu adj f s 0.02 0.14 0.01 0 +émoulus émoudre ver m p 0.02 0.61 0 0.07 par:pas; +émoussa émousser ver 0.61 2.64 0 0.07 ind:pas:3s; +émoussai émousser ver 0.61 2.64 0 0.07 ind:pas:1s; +émoussaient émousser ver 0.61 2.64 0 0.07 ind:imp:3p; +émoussait émousser ver 0.61 2.64 0.01 0.07 ind:imp:3s; +émoussant émousser ver 0.61 2.64 0.13 0.07 par:pre; +émousse émousser ver 0.61 2.64 0.17 0.41 imp:pre:2s;ind:pre:3s; +émoussement émoussement nom m s 0 0.07 0 0.07 +émoussent émousser ver 0.61 2.64 0.01 0.2 ind:pre:3p; +émousser émousser ver 0.61 2.64 0.05 0.47 inf; +émousseront émousser ver 0.61 2.64 0 0.07 ind:fut:3p; +émoussèrent émousser ver 0.61 2.64 0 0.07 ind:pas:3p; +émoussé émousser ver m s 0.61 2.64 0.19 0.07 par:pas; +émoussée émoussé adj f s 0.59 0.81 0.34 0.14 +émoussées émoussé adj f p 0.59 0.81 0.04 0.27 +émoussés émoussé adj m p 0.59 0.81 0.14 0.14 +émoustilla émoustiller ver 0.38 2.36 0 0.14 ind:pas:3s; +émoustillait émoustiller ver 0.38 2.36 0.01 0.27 ind:imp:3s; +émoustillant émoustillant adj m s 0.23 0.14 0.11 0 +émoustillante émoustillant adj f s 0.23 0.14 0.12 0.14 +émoustiller émoustiller ver 0.38 2.36 0.16 0.41 inf; +émoustillera émoustiller ver 0.38 2.36 0 0.07 ind:fut:3s; +émoustillé émoustiller ver m s 0.38 2.36 0.07 0.68 par:pas; +émoustillée émoustiller ver f s 0.38 2.36 0.06 0.41 par:pas; +émoustillées émoustiller ver f p 0.38 2.36 0 0.07 par:pas; +émoustillés émoustiller ver m p 0.38 2.36 0.04 0.34 par:pas; +émouvaient émouvoir ver 9.46 37.43 0.01 0.27 ind:imp:3p; +émouvais émouvoir ver 9.46 37.43 0.1 0.34 ind:imp:1s;ind:imp:2s; +émouvait émouvoir ver 9.46 37.43 0.03 2.64 ind:imp:3s; +émouvant émouvant adj m s 5.21 14.05 3.51 4.8 +émouvante émouvant adj f s 5.21 14.05 1.16 6.08 +émouvantes émouvant adj f p 5.21 14.05 0.28 1.55 +émouvants émouvant adj m p 5.21 14.05 0.26 1.62 +émouvez émouvoir ver 9.46 37.43 0 0.07 imp:pre:2p; +émouvoir émouvoir ver 9.46 37.43 1.29 6.08 inf; +émouvrait émouvoir ver 9.46 37.43 0.01 0.14 cnd:pre:3s; +ému émouvoir ver m s 9.46 37.43 3.69 10.47 par:pas; +émue ému adj f s 4.89 12.09 1.92 3.78 +émues ému adj f p 4.89 12.09 0.14 0.54 +émulation émulation nom f s 0.07 2.3 0.07 2.23 +émulations émulation nom f p 0.07 2.3 0 0.07 +émule émule nom s 0.24 0.95 0.17 0.88 +émuler émuler ver 0.01 0 0.01 0 inf; +émules émule nom p 0.24 0.95 0.07 0.07 +émulsifiant émulsifiant adj m s 0.01 0 0.01 0 +émulsifier émulsifier ver 0.01 0 0.01 0 inf; +émulsion émulsion nom f s 0.24 0.07 0.24 0.07 +émulsionné émulsionner ver m s 0 0.07 0 0.07 par:pas; +émulsive émulsif adj f s 0.01 0 0.01 0 +émurent émouvoir ver 9.46 37.43 0 0.34 ind:pas:3p; +émus ému adj m p 4.89 12.09 0.52 0.88 +émussent émouvoir ver 9.46 37.43 0 0.07 sub:imp:3p; +émut émouvoir ver 9.46 37.43 0.4 3.24 ind:pas:3s; +émèchent émécher ver 0.4 0.27 0 0.07 ind:pre:3p; +éméché émécher ver m s 0.4 0.27 0.26 0 par:pas; +éméchée émécher ver f s 0.4 0.27 0.05 0.07 par:pas; +éméchées émécher ver f p 0.4 0.27 0.02 0.07 par:pas; +éméchés éméché adj m p 0.27 1.82 0.09 0.95 +émérite émérite adj s 0.92 0.2 0.8 0.14 +émérites émérite adj p 0.92 0.2 0.12 0.07 +émétine émétine nom f s 0.01 0 0.01 0 +émétique émétique adj m s 0.27 0 0.27 0 +émût émouvoir ver 9.46 37.43 0 0.07 sub:imp:3s; +énamourant énamourer ver 0 0.41 0 0.07 par:pre; +énamouré énamouré adj m s 0.06 0.54 0.04 0.14 +énamourée énamouré adj f s 0.06 0.54 0 0.14 +énamourées énamouré adj f p 0.06 0.54 0.01 0 +énamourés énamouré adj m p 0.06 0.54 0.01 0.27 +énarque énarque nom s 0.15 0.34 0.15 0.2 +énarques énarque nom p 0.15 0.34 0 0.14 +énergie énergie nom f s 43.06 29.66 42.18 27.64 +énergies énergie nom f p 43.06 29.66 0.88 2.03 +énergique énergique adj s 1.77 5.47 1.37 3.99 +énergiquement énergiquement adv 0.35 3.65 0.35 3.65 +énergiques énergique adj p 1.77 5.47 0.4 1.49 +énergisant énergisant adj m s 0.08 0 0.01 0 +énergisant énergisant nom m s 0.01 0 0.01 0 +énergisante énergisant adj f s 0.08 0 0.07 0 +énergisée énergisé adj f s 0.01 0 0.01 0 +énergumène énergumène nom s 0.68 1.49 0.51 0.95 +énergumènes énergumène nom p 0.68 1.49 0.18 0.54 +énergétique énergétique adj s 2.5 0.61 1.75 0.27 +énergétiques énergétique adj p 2.5 0.61 0.74 0.34 +énerva énerver ver 53.83 23.72 0.1 2.16 ind:pas:3s; +énervai énerver ver 53.83 23.72 0 0.07 ind:pas:1s; +énervaient énerver ver 53.83 23.72 0.03 0.81 ind:imp:3p; +énervais énerver ver 53.83 23.72 0.16 0.14 ind:imp:1s;ind:imp:2s; +énervait énerver ver 53.83 23.72 0.98 4.53 ind:imp:3s; +énervant énervant adj m s 1.98 1.89 1.27 0.74 +énervante énervant adj f s 1.98 1.89 0.57 0.88 +énervantes énervant adj f p 1.98 1.89 0.04 0.2 +énervants énervant adj m p 1.98 1.89 0.11 0.07 +énerve énerver ver 53.83 23.72 21.7 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +énervement énervement nom m s 0.34 3.58 0.34 3.38 +énervements énervement nom m p 0.34 3.58 0 0.2 +énervent énerver ver 53.83 23.72 1.27 0.61 ind:pre:3p; +énerver énerver ver 53.83 23.72 10.36 3.38 inf; +énervera énerver ver 53.83 23.72 0.09 0 ind:fut:3s; +énerverai énerver ver 53.83 23.72 0.05 0 ind:fut:1s; +énerveraient énerver ver 53.83 23.72 0.01 0 cnd:pre:3p; +énerverait énerver ver 53.83 23.72 0.7 0 cnd:pre:3s; +énerveront énerver ver 53.83 23.72 0.01 0 ind:fut:3p; +énerves énerver ver 53.83 23.72 4.36 0.74 ind:pre:2s; +énervez énerver ver 53.83 23.72 2.83 0.68 imp:pre:2p;ind:pre:2p; +énerviez énerver ver 53.83 23.72 0.07 0 ind:imp:2p; +énervions énerver ver 53.83 23.72 0.01 0 ind:imp:1p; +énervons énerver ver 53.83 23.72 0.17 0 imp:pre:1p;ind:pre:1p; +énervâmes énerver ver 53.83 23.72 0 0.07 ind:pas:1p; +énervé énerver ver m s 53.83 23.72 7.03 1.69 par:pas; +énervée énerver ver f s 53.83 23.72 3 1.08 par:pas; +énervées énerver ver f p 53.83 23.72 0.1 0.14 par:pas; +énervés énerver ver m p 53.83 23.72 0.55 0.68 par:pas; +énigmatique énigmatique adj s 0.82 8.11 0.8 5.88 +énigmatiquement énigmatiquement adv 0 0.47 0 0.47 +énigmatiques énigmatique adj p 0.82 8.11 0.02 2.23 +énigme énigme nom f s 7.29 10.88 5.45 8.58 +énigmes énigme nom f p 7.29 10.88 1.85 2.3 +énième énième adj s 0.56 1.55 0.56 1.55 +énonce énoncer ver 1.52 4.86 0.48 0.34 ind:pre:1s;ind:pre:3s; +énoncent énoncer ver 1.52 4.86 0.01 0.14 ind:pre:3p; +énoncer énoncer ver 1.52 4.86 0.3 1.49 inf; +énonceront énoncer ver 1.52 4.86 0.34 0 ind:fut:3p; +énonciateurs énonciateur nom m p 0 0.07 0 0.07 +énonciation énonciation nom f s 0.04 0.07 0.04 0.07 +énoncé énoncé nom m s 0.64 1.76 0.49 1.55 +énoncée énoncer ver f s 1.52 4.86 0.12 0.14 par:pas; +énoncées énoncer ver f p 1.52 4.86 0.14 0.14 par:pas; +énoncés énoncé nom m p 0.64 1.76 0.14 0.2 +énonça énoncer ver 1.52 4.86 0 0.74 ind:pas:3s; +énonçai énoncer ver 1.52 4.86 0 0.2 ind:pas:1s; +énonçaient énoncer ver 1.52 4.86 0 0.07 ind:imp:3p; +énonçais énoncer ver 1.52 4.86 0 0.07 ind:imp:1s; +énonçait énoncer ver 1.52 4.86 0.01 0.74 ind:imp:3s; +énonçant énoncer ver 1.52 4.86 0 0.34 par:pre; +énorme énorme adj s 49.27 120 39.73 81.22 +énormes énorme adj p 49.27 120 9.55 38.78 +énormité énormité nom f s 0.38 3.04 0.16 2.43 +énormités énormité nom f p 0.38 3.04 0.22 0.61 +énormément énormément adv 12.27 8.38 12.27 8.38 +énucléation énucléation nom f s 0.01 0.07 0.01 0.07 +énucléer énucléer ver 0.16 0.07 0.11 0 inf; +énucléé énucléer ver m s 0.16 0.07 0.03 0 par:pas; +énucléés énucléer ver m p 0.16 0.07 0.02 0.07 par:pas; +énumère énumérer ver 1.32 7.3 0.51 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +énumèrent énumérer ver 1.32 7.3 0.04 0.14 ind:pre:3p; +énumères énumérer ver 1.32 7.3 0.14 0.07 ind:pre:2s; +énuméra énumérer ver 1.32 7.3 0.01 0.81 ind:pas:3s; +énumérai énumérer ver 1.32 7.3 0 0.14 ind:pas:1s; +énuméraient énumérer ver 1.32 7.3 0 0.14 ind:imp:3p; +énumérais énumérer ver 1.32 7.3 0 0.27 ind:imp:1s; +énumérait énumérer ver 1.32 7.3 0.03 1.08 ind:imp:3s; +énumérant énumérer ver 1.32 7.3 0.02 0.68 par:pre; +énumération énumération nom f s 0.2 2.16 0.2 1.96 +énumérations énumération nom f p 0.2 2.16 0 0.2 +énumérative énumératif adj f s 0 0.07 0 0.07 +énumérer énumérer ver 1.32 7.3 0.46 2.43 inf; +énumérerai énumérer ver 1.32 7.3 0 0.07 ind:fut:1s; +énumérerais énumérer ver 1.32 7.3 0 0.07 cnd:pre:1s; +énumérez énumérer ver 1.32 7.3 0.01 0.07 imp:pre:2p;ind:pre:2p; +énumérons énumérer ver 1.32 7.3 0.01 0 ind:pre:1p; +énuméré énumérer ver m s 1.32 7.3 0.07 0.41 par:pas; +énumérées énumérer ver f p 1.32 7.3 0.02 0.27 par:pas; +énurésie énurésie nom f s 0.02 0.07 0.02 0.07 +énurétique énurétique nom s 0.01 0 0.01 0 +éocène éocène nom m s 0.01 0 0.01 0 +éolien éolien nom m s 0.14 1.76 0 1.15 +éolienne éolien nom f s 0.14 1.76 0.04 0.47 +éoliennes éolien nom f p 0.14 1.76 0.1 0.14 +éoliens éolien adj m p 0.03 1.15 0 0.07 +éon éon nom m s 0.07 0 0.07 0 +éonisme éonisme nom m s 0 0.07 0 0.07 +éosine éosine nom f s 0.01 0 0.01 0 +épagneul épagneul nom m s 0.27 1.55 0.26 1.49 +épagneule épagneul nom f s 0.27 1.55 0.01 0.07 +épagomènes épagomène adj m p 0 0.14 0 0.14 +épais épais adj m 10.19 90.61 6.08 41.01 +épaisse épais adj f s 10.19 90.61 3.28 35.88 +épaissement épaissement adv 0 0.61 0 0.61 +épaisses épais adj f p 10.19 90.61 0.82 13.72 +épaisseur épaisseur nom f s 2.16 25.34 1.89 21.89 +épaisseurs épaisseur nom f p 2.16 25.34 0.27 3.45 +épaissi épaissir ver m s 1.13 9.53 0.16 1.35 par:pas; +épaissie épaissir ver f s 1.13 9.53 0.04 1.15 par:pas; +épaissies épaissir ver f p 1.13 9.53 0 0.14 par:pas; +épaissir épaissir ver 1.13 9.53 0.28 1.49 inf; +épaissirais épaissir ver 1.13 9.53 0 0.07 cnd:pre:1s; +épaissirent épaissir ver 1.13 9.53 0 0.07 ind:pas:3p; +épaissis épaissir ver m p 1.13 9.53 0.02 0.27 imp:pre:2s;par:pas; +épaississaient épaissir ver 1.13 9.53 0 0.54 ind:imp:3p; +épaississait épaissir ver 1.13 9.53 0.02 2.09 ind:imp:3s; +épaississant épaissir ver 1.13 9.53 0 0.47 par:pre; +épaississe épaissir ver 1.13 9.53 0 0.07 sub:pre:3s; +épaississement épaississement nom m s 0 0.2 0 0.2 +épaississent épaissir ver 1.13 9.53 0.02 0.41 ind:pre:3p; +épaissit épaissir ver 1.13 9.53 0.59 1.42 ind:pre:3s;ind:pas:3s; +épancha épancher ver 0.49 1.89 0 0.14 ind:pas:3s; +épanchaient épancher ver 0.49 1.89 0 0.07 ind:imp:3p; +épanchais épancher ver 0.49 1.89 0.01 0.07 ind:imp:1s; +épanchait épancher ver 0.49 1.89 0 0.2 ind:imp:3s; +épanchant épancher ver 0.49 1.89 0 0.14 par:pre; +épanche épancher ver 0.49 1.89 0.02 0.2 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épanchement épanchement nom m s 0.14 1.82 0.1 1.08 +épanchements épanchement nom m p 0.14 1.82 0.04 0.74 +épanchent épancher ver 0.49 1.89 0.01 0.2 ind:pre:3p; +épancher épancher ver 0.49 1.89 0.37 0.68 inf; +épancherait épancher ver 0.49 1.89 0 0.07 cnd:pre:3s; +épanché épancher ver m s 0.49 1.89 0.07 0.14 par:pas; +épand épandre ver 0.01 1.96 0 0.54 ind:pre:3s; +épandage épandage nom m s 0.11 0.47 0.11 0.27 +épandages épandage nom m p 0.11 0.47 0 0.2 +épandaient épandre ver 0.01 1.96 0 0.07 ind:imp:3p; +épandait épandre ver 0.01 1.96 0 0.27 ind:imp:3s; +épandant épandre ver 0.01 1.96 0 0.2 par:pre; +épandent épandre ver 0.01 1.96 0 0.07 ind:pre:3p; +épandeur épandeur nom m s 0.02 0 0.02 0 +épandez épandre ver 0.01 1.96 0.01 0 imp:pre:2p; +épandre épandre ver 0.01 1.96 0 0.41 inf; +épands épandre ver 0.01 1.96 0 0.07 imp:pre:2s; +épandu épandre ver m s 0.01 1.96 0 0.14 par:pas; +épandue épandre ver f s 0.01 1.96 0 0.07 par:pas; +épandues épandre ver f p 0.01 1.96 0 0.14 par:pas; +épanoui épanouir ver m s 4.51 14.66 0.26 1.28 par:pas; +épanouie épanouir ver f s 4.51 14.66 0.65 1.42 par:pas; +épanouies épanoui adj f p 0.86 5.54 0.03 1.01 +épanouir épanouir ver 4.51 14.66 1.48 3.72 inf; +épanouira épanouir ver 4.51 14.66 0.41 0.07 ind:fut:3s; +épanouirait épanouir ver 4.51 14.66 0.03 0.14 cnd:pre:3s; +épanouirent épanouir ver 4.51 14.66 0.12 0.2 ind:pas:3p; +épanouis épanoui adj m p 0.86 5.54 0.18 0.41 +épanouissaient épanouir ver 4.51 14.66 0 1.01 ind:imp:3p; +épanouissais épanouir ver 4.51 14.66 0.01 0.07 ind:imp:1s; +épanouissait épanouir ver 4.51 14.66 0.03 1.69 ind:imp:3s; +épanouissant épanouir ver 4.51 14.66 0.14 0.41 par:pre; +épanouissante épanouissant adj f s 0.38 0.07 0.35 0 +épanouissantes épanouissant adj f p 0.38 0.07 0 0.07 +épanouisse épanouir ver 4.51 14.66 0.04 0 sub:pre:3s; +épanouissement épanouissement nom m s 0.62 3.72 0.62 3.65 +épanouissements épanouissement nom m p 0.62 3.72 0 0.07 +épanouissent épanouir ver 4.51 14.66 0.28 1.01 ind:pre:3p; +épanouisses épanouir ver 4.51 14.66 0.15 0 sub:pre:2s; +épanouit épanouir ver 4.51 14.66 0.75 3.11 ind:pre:3s;ind:pas:3s; +épanouît épanouir ver 4.51 14.66 0 0.07 sub:imp:3s; +épargna épargner ver 26.39 25.95 0.12 1.35 ind:pas:3s; +épargnaient épargner ver 26.39 25.95 0.01 0.74 ind:imp:3p; +épargnais épargner ver 26.39 25.95 0.04 0.2 ind:imp:1s;ind:imp:2s; +épargnait épargner ver 26.39 25.95 0.17 0.81 ind:imp:3s; +épargnant épargner ver 26.39 25.95 0.1 0.95 par:pre; +épargnantes épargnant adj f p 0.02 0 0.01 0 +épargnants épargnant nom m p 0.17 0.61 0.14 0.14 +épargne épargner ver 26.39 25.95 6.17 2.7 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épargnent épargner ver 26.39 25.95 0.09 0.27 ind:pre:3p; +épargner épargner ver 26.39 25.95 6.9 7.64 inf;; +épargnera épargner ver 26.39 25.95 1.07 0.41 ind:fut:3s; +épargnerai épargner ver 26.39 25.95 0.55 0 ind:fut:1s; +épargnerais épargner ver 26.39 25.95 0.09 0 cnd:pre:1s;cnd:pre:2s; +épargnerait épargner ver 26.39 25.95 0.16 0.41 cnd:pre:3s; +épargneras épargner ver 26.39 25.95 0.04 0 ind:fut:2s; +épargnerez épargner ver 26.39 25.95 0.19 0.07 ind:fut:2p; +épargneriez épargner ver 26.39 25.95 0.02 0 cnd:pre:2p; +épargnerons épargner ver 26.39 25.95 0.07 0.07 ind:fut:1p; +épargneront épargner ver 26.39 25.95 0.23 0 ind:fut:3p; +épargnes épargner ver 26.39 25.95 0.1 0.07 ind:pre:2s; +épargnez épargner ver 26.39 25.95 2.78 0.74 imp:pre:2p;ind:pre:2p; +épargniez épargner ver 26.39 25.95 0.04 0 ind:imp:2p; +épargnions épargner ver 26.39 25.95 0 0.14 ind:imp:1p; +épargnons épargner ver 26.39 25.95 0.02 0 imp:pre:1p; +épargnât épargner ver 26.39 25.95 0 0.27 sub:imp:3s; +épargnèrent épargner ver 26.39 25.95 0.02 0.14 ind:pas:3p; +épargné épargner ver m s 26.39 25.95 5.04 5.34 par:pas; +épargnée épargner ver f s 26.39 25.95 1.63 1.76 par:pas; +épargnées épargner ver f p 26.39 25.95 0.11 0.81 par:pas; +épargnés épargner ver m p 26.39 25.95 0.63 1.08 par:pas; +éparpilla éparpiller ver 2.16 13.51 0 0.68 ind:pas:3s; +éparpillaient éparpiller ver 2.16 13.51 0 0.68 ind:imp:3p; +éparpillait éparpiller ver 2.16 13.51 0.01 1.08 ind:imp:3s; +éparpillant éparpiller ver 2.16 13.51 0.11 0.81 par:pre; +éparpille éparpiller ver 2.16 13.51 0.25 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éparpillement éparpillement nom m s 0.01 0.88 0.01 0.88 +éparpillent éparpiller ver 2.16 13.51 0.01 0.74 ind:pre:3p; +éparpiller éparpiller ver 2.16 13.51 0.34 1.55 inf; +éparpillera éparpiller ver 2.16 13.51 0.02 0 ind:fut:3s; +éparpilleraient éparpiller ver 2.16 13.51 0 0.07 cnd:pre:3p; +éparpillez éparpiller ver 2.16 13.51 0.06 0 imp:pre:2p;ind:pre:2p; +éparpillons éparpiller ver 2.16 13.51 0.03 0 ind:pre:1p; +éparpillèrent éparpiller ver 2.16 13.51 0 0.74 ind:pas:3p; +éparpillé éparpiller ver m s 2.16 13.51 0.4 0.81 par:pas; +éparpillée éparpillé adj f s 0.4 2.77 0.14 0.41 +éparpillées éparpiller ver f p 2.16 13.51 0.26 1.42 par:pas; +éparpillés éparpiller ver m p 2.16 13.51 0.57 2.57 par:pas; +épars épars adj m 0.46 11.15 0.32 7.23 +éparse épars adj f s 0.46 11.15 0 0.95 +éparses épars adj f p 0.46 11.15 0.14 2.97 +épart épart nom m s 0.01 0 0.01 0 +épastrouillant épastrouillant adj m s 0 0.07 0 0.07 +épastrouillera épastrouiller ver 0 0.07 0 0.07 ind:fut:3s; +épata épater ver 4.96 8.78 0 0.34 ind:pas:3s; +épataient épater ver 4.96 8.78 0.01 0.07 ind:imp:3p; +épatais épater ver 4.96 8.78 0.01 0.14 ind:imp:1s; +épatait épater ver 4.96 8.78 0 0.95 ind:imp:3s; +épatamment épatamment adv 0 0.27 0 0.27 +épatant épatant adj m s 5.99 6.82 4.11 4.86 +épatante épatant adj f s 5.99 6.82 1.31 1.28 +épatantes épatant adj f p 5.99 6.82 0.04 0.34 +épatants épatant adj m p 5.99 6.82 0.53 0.34 +épate épater ver 4.96 8.78 1.49 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épatement épatement nom m s 0 0.07 0 0.07 +épatent épater ver 4.96 8.78 0.02 0 ind:pre:3p; +épater épater ver 4.96 8.78 1.48 3.58 inf; +épatera épater ver 4.96 8.78 0.04 0.07 ind:fut:3s; +épaterait épater ver 4.96 8.78 0 0.34 cnd:pre:3s; +épateras épater ver 4.96 8.78 0.02 0 ind:fut:2s; +épates épater ver 4.96 8.78 0.27 0 ind:pre:2s; +épateur épateur adj m s 0 0.2 0 0.14 +épateurs épateur adj m p 0 0.2 0 0.07 +épatez épater ver 4.96 8.78 0.19 0 imp:pre:2p;ind:pre:2p; +épaté épater ver m s 4.96 8.78 0.43 1.01 par:pas; +épatée épater ver f s 4.96 8.78 0.23 0.41 par:pas; +épatés épater ver m p 4.96 8.78 0.13 0.14 par:pas; +épaula épauler ver 1.92 3.85 0.01 0.61 ind:pas:3s; +épaulaient épauler ver 1.92 3.85 0.01 0.07 ind:imp:3p; +épaulait épauler ver 1.92 3.85 0 0.61 ind:imp:3s; +épaulant épauler ver 1.92 3.85 0 0.07 par:pre; +épaulard épaulard nom m s 0.28 0 0.25 0 +épaulards épaulard nom m p 0.28 0 0.03 0 +épaule épaule nom f s 32.41 288.72 17.91 116.96 +épaulement épaulement nom m s 0 0.47 0 0.34 +épaulements épaulement nom m p 0 0.47 0 0.14 +épaulent épauler ver 1.92 3.85 0.11 0.14 ind:pre:3p; +épauler épauler ver 1.92 3.85 0.48 0.95 inf; +épauleras épauler ver 1.92 3.85 0.02 0 ind:fut:2s; +épaules épaule nom f p 32.41 288.72 14.5 171.76 +épaulette épaulette nom f s 0.81 2.97 0.02 0.61 +épaulettes épaulette nom f p 0.81 2.97 0.79 2.36 +épaulez épauler ver 1.92 3.85 0.31 0 imp:pre:2p;ind:pre:2p; +épaulière épaulière nom f s 0.01 0.2 0 0.07 +épaulières épaulière nom f p 0.01 0.2 0.01 0.14 +épaulèrent épauler ver 1.92 3.85 0 0.07 ind:pas:3p; +épaulé épauler ver m s 1.92 3.85 0.11 0.14 par:pas; +épaulée épauler ver f s 1.92 3.85 0 0.2 par:pas; +épaulées épauler ver f p 1.92 3.85 0 0.07 par:pas; +épaulés épauler ver m p 1.92 3.85 0.13 0 par:pas; +épave épave nom f s 7.5 12.23 6.52 6.28 +épaves épave nom f p 7.5 12.23 0.97 5.95 +épeautre épeautre nom m s 0 0.07 0 0.07 +épectase épectase nom f s 0 0.07 0 0.07 +épeichette épeichette nom f s 0 0.07 0 0.07 +épeire épeire nom f s 0 0.07 0 0.07 +épela épeler ver 3 2.23 0 0.27 ind:pas:3s; +épelais épeler ver 3 2.23 0.01 0 ind:imp:1s; +épelait épeler ver 3 2.23 0.04 0.27 ind:imp:3s; +épelant épeler ver 3 2.23 0.03 0.27 par:pre; +épeler épeler ver 3 2.23 1.75 0.88 inf; +épelez épeler ver 3 2.23 0.17 0 imp:pre:2p;ind:pre:2p; +épeliez épeler ver 3 2.23 0.01 0 ind:imp:2p; +épelions épeler ver 3 2.23 0 0.07 ind:imp:1p; +épellation épellation nom f s 0.04 0 0.04 0 +épelle épeler ver 3 2.23 0.45 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épellent épeler ver 3 2.23 0.02 0.14 ind:pre:3p; +épellerais épeler ver 3 2.23 0.03 0 cnd:pre:1s; +épelles épeler ver 3 2.23 0.16 0 ind:pre:2s; +épelé épeler ver m s 3 2.23 0.32 0.14 par:pas; +épelés épeler ver m p 3 2.23 0.01 0.07 par:pas; +épendyme épendyme nom m s 0.01 0 0.01 0 +éperdu éperdre ver m s 0.2 3.92 0.16 2.09 par:pas; +éperdue éperdu adj f s 0.37 7.57 0.13 2.57 +éperdues éperdu adj f p 0.37 7.57 0 0.61 +éperdument éperdument adv 1.01 5.68 1.01 5.68 +éperdus éperdu adj m p 0.37 7.57 0.16 0.95 +éperlan éperlan nom m s 0.03 0 0.02 0 +éperlans éperlan nom m p 0.03 0 0.01 0 +éperon éperon nom m s 1.07 8.18 0.2 3.04 +éperonna éperonner ver 0.36 1.35 0 0.14 ind:pas:3s; +éperonnant éperonner ver 0.36 1.35 0 0.14 par:pre; +éperonne éperonner ver 0.36 1.35 0.12 0.07 ind:pre:3s; +éperonner éperonner ver 0.36 1.35 0.04 0.27 inf; +éperonnera éperonner ver 0.36 1.35 0.01 0 ind:fut:3s; +éperonnez éperonner ver 0.36 1.35 0.01 0 ind:pre:2p; +éperonnèrent éperonner ver 0.36 1.35 0 0.07 ind:pas:3p; +éperonné éperonner ver m s 0.36 1.35 0.16 0.47 par:pas; +éperonnée éperonner ver f s 0.36 1.35 0 0.07 par:pas; +éperonnés éperonner ver m p 0.36 1.35 0.02 0.14 par:pas; +éperons éperon nom m p 1.07 8.18 0.87 5.14 +épervier épervier nom m s 0.27 1.49 0.27 1.15 +éperviers épervier nom m p 0.27 1.49 0 0.34 +épervière épervière nom f s 0 0.14 0 0.07 +épervières épervière nom f p 0 0.14 0 0.07 +épeurant épeurer ver 0.02 0.47 0.02 0 par:pre; +épeurer épeurer ver 0.02 0.47 0 0.07 inf; +épeuré épeurer ver m s 0.02 0.47 0 0.2 par:pas; +épeurée épeurer ver f s 0.02 0.47 0 0.2 par:pas; +éphèbe éphèbe nom m s 0.21 2.23 0.06 1.82 +éphèbes éphèbe nom m p 0.21 2.23 0.14 0.41 +éphébie éphébie nom f s 0 0.07 0 0.07 +éphédrine éphédrine nom f s 0.08 0 0.08 0 +éphélides éphélide nom f p 0 0.27 0 0.27 +éphémère éphémère adj s 1.73 9.19 1.33 5.74 +éphémèrement éphémèrement adv 0 0.2 0 0.2 +éphémères éphémère adj p 1.73 9.19 0.41 3.45 +éphéméride éphéméride nom f s 0.01 0.81 0.01 0.54 +éphémérides éphéméride nom f p 0.01 0.81 0 0.27 +éphésiens éphésien adj m p 0.01 0.07 0.01 0.07 +épi épi nom m s 1.61 5.81 1.09 1.82 +épia épier ver 4.93 15.88 0 0.2 ind:pas:3s; +épiai épier ver 4.93 15.88 0 0.07 ind:pas:1s; +épiaient épier ver 4.93 15.88 0.21 1.22 ind:imp:3p; +épiais épier ver 4.93 15.88 0.47 1.08 ind:imp:1s;ind:imp:2s; +épiait épier ver 4.93 15.88 0.2 2.5 ind:imp:3s; +épiant épier ver 4.93 15.88 0.14 1.96 par:pre; +épicanthus épicanthus nom m 0.01 0 0.01 0 +épice épice nom f s 3.06 6.76 1.46 1.69 +épicemard épicemard nom m s 0 0.41 0 0.14 +épicemards épicemard nom m p 0 0.41 0 0.27 +épicentre épicentre nom m s 0.53 0.34 0.53 0.34 +épicer épicer ver 1.04 1.01 0.27 0.14 inf; +épicerie épicerie nom f s 6.79 9.46 6.52 8.31 +épiceries épicerie nom f p 6.79 9.46 0.27 1.15 +épices épice nom f p 3.06 6.76 1.61 5.07 +épicier épicier nom m s 2.81 10.27 2.73 7.7 +épiciers épicier nom m p 2.81 10.27 0.08 0.61 +épicière épicier nom f s 2.81 10.27 0.01 1.89 +épicières épicier nom f p 2.81 10.27 0 0.07 +épicondyle épicondyle nom m s 0.01 0 0.01 0 +épicrânienne épicrânien adj f s 0.02 0 0.02 0 +épicurien épicurien adj m s 0.14 0.47 0.14 0.34 +épicurienne épicurien adj f s 0.14 0.47 0 0.14 +épicuriens épicurien adj m p 0.14 0.47 0.01 0 +épicurisme épicurisme nom m s 0 0.27 0 0.27 +épicé épicé adj m s 1.75 0.95 0.81 0.14 +épicéa épicéa nom m s 0.05 0.07 0.05 0.07 +épicée épicé adj f s 1.75 0.95 0.57 0.41 +épicées épicé adj f p 1.75 0.95 0.09 0.2 +épicés épicé adj m p 1.75 0.95 0.27 0.2 +épiderme épiderme nom m s 0.46 2.97 0.45 2.7 +épidermes épiderme nom m p 0.46 2.97 0.01 0.27 +épidermique épidermique adj s 0.2 0.54 0.17 0.41 +épidermiques épidermique adj p 0.2 0.54 0.03 0.14 +épidiascopes épidiascope nom m p 0 0.07 0 0.07 +épididyme épididyme nom m s 0.02 0.14 0.02 0.07 +épididymes épididyme nom m p 0.02 0.14 0 0.07 +épidural épidural adj m s 0.15 0 0.03 0 +épidurale épidural adj f s 0.15 0 0.13 0 +épidémie épidémie nom f s 9.05 5.07 7.91 3.24 +épidémies épidémie nom f p 9.05 5.07 1.14 1.82 +épidémiologie épidémiologie nom f s 0.14 0.14 0.14 0.14 +épidémiologique épidémiologique adj m s 0.04 0 0.04 0 +épidémiologiste épidémiologiste nom s 0.01 0.07 0.01 0.07 +épidémique épidémique adj s 0.44 0.14 0.4 0.07 +épidémiques épidémique adj p 0.44 0.14 0.03 0.07 +épie épier ver 4.93 15.88 1.3 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +épient épier ver 4.93 15.88 0.16 0.47 ind:pre:3p; +épier épier ver 4.93 15.88 1.53 3.85 imp:pre:2p;inf; +épierais épier ver 4.93 15.88 0 0.2 cnd:pre:1s; +épierait épier ver 4.93 15.88 0 0.07 cnd:pre:3s; +épierrer épierrer ver 0 0.07 0 0.07 inf; +épies épier ver 4.93 15.88 0.03 0.07 ind:pre:2s; +épieu épieu nom m s 0.44 0.2 0.44 0.2 +épieux épieux nom m p 0.02 0.27 0.02 0.27 +épiez épier ver 4.93 15.88 0.08 0 imp:pre:2p;ind:pre:2p; +épigastre épigastre nom m s 0 0.2 0 0.2 +épigastrique épigastrique adj f s 0.01 0 0.01 0 +épiglotte épiglotte nom f s 0.06 0 0.06 0 +épigone épigone nom m s 0.2 0.41 0.2 0.2 +épigones épigone nom m p 0.2 0.41 0 0.2 +épigramme épigramme nom f s 0.01 0.41 0.01 0.2 +épigrammes épigramme nom f p 0.01 0.41 0 0.2 +épigraphe épigraphe nom f s 0.01 0.61 0.01 0.61 +épigraphie épigraphie nom f s 0 0.14 0 0.14 +épigraphistes épigraphiste nom p 0 0.07 0 0.07 +épilais épiler ver 2.04 2.77 0 0.07 ind:imp:1s; +épilait épiler ver 2.04 2.77 0.02 0.07 ind:imp:3s; +épilant épiler ver 2.04 2.77 0.02 0.07 par:pre; +épilateur épilateur nom m s 0.04 0 0.04 0 +épilation épilation nom f s 0.53 0.2 0.53 0.2 +épilatoire épilatoire adj s 0.03 0 0.03 0 +épile épiler ver 2.04 2.77 0.18 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épilent épiler ver 2.04 2.77 0.02 0.07 ind:pre:3p; +épilepsie épilepsie nom f s 1.89 1.55 1.89 1.55 +épileptiforme épileptiforme adj f s 0.01 0 0.01 0 +épileptique épileptique adj s 1.8 0.61 1.63 0.47 +épileptiques épileptique adj p 1.8 0.61 0.17 0.14 +épiler épiler ver 2.04 2.77 1.13 1.22 inf;; +épileuse épileur nom f s 0 0.07 0 0.07 +épilez épiler ver 2.04 2.77 0.05 0 ind:pre:2p; +épiloguaient épiloguer ver 0.06 1.15 0 0.07 ind:imp:3p; +épilogue épilogue nom m s 0.29 1.76 0.29 1.62 +épiloguer épiloguer ver 0.06 1.15 0.06 0.74 inf; +épilogues épilogue nom m p 0.29 1.76 0 0.14 +épiloguions épiloguer ver 0.06 1.15 0 0.14 ind:imp:1p; +épiloguèrent épiloguer ver 0.06 1.15 0 0.07 ind:pas:3p; +épilogué épiloguer ver m s 0.06 1.15 0 0.14 par:pas; +épilé épiler ver m s 2.04 2.77 0.2 0.27 par:pas; +épilée épiler ver f s 2.04 2.77 0.36 0.07 par:pas; +épilées épiler ver f p 2.04 2.77 0.03 0.27 par:pas; +épilés épiler ver m p 2.04 2.77 0.03 0.27 par:pas; +épinaie épinaie nom f s 0.01 0 0.01 0 +épinard épinard nom m s 1.91 2.23 0.12 0.41 +épinards épinard nom m p 1.91 2.23 1.79 1.82 +épine épine nom f s 5.81 12.43 2.52 3.92 +épine_vinette épine_vinette nom f s 0 0.07 0 0.07 +épines épine nom f p 5.81 12.43 3.29 8.51 +épinette épinette nom f s 0.01 0.2 0.01 0.14 +épinettes épinette nom f p 0.01 0.2 0 0.07 +épineuse épineux adj f s 1.01 4.39 0.5 1.28 +épineuses épineux adj f p 1.01 4.39 0.02 0.81 +épineux épineux adj m 1.01 4.39 0.5 2.3 +épingla épingler ver 2.76 6.82 0 0.41 ind:pas:3s; +épinglage épinglage nom m s 0.01 0.07 0.01 0.07 +épinglai épingler ver 2.76 6.82 0 0.07 ind:pas:1s; +épinglaient épingler ver 2.76 6.82 0.01 0 ind:imp:3p; +épinglait épingler ver 2.76 6.82 0 0.27 ind:imp:3s; +épingle épingle nom f s 5.57 18.24 3.29 8.92 +épinglent épingler ver 2.76 6.82 0.04 0.07 ind:pre:3p; +épingler épingler ver 2.76 6.82 1.35 0.88 inf; +épinglera épingler ver 2.76 6.82 0.07 0.07 ind:fut:3s; +épinglerai épingler ver 2.76 6.82 0.04 0 ind:fut:1s; +épingleront épingler ver 2.76 6.82 0 0.07 ind:fut:3p; +épingles épingle nom f p 5.57 18.24 2.28 9.32 +épinglette épinglette nom f s 0.01 0 0.01 0 +épinglez épingler ver 2.76 6.82 0.03 0.07 imp:pre:2p; +épinglons épingler ver 2.76 6.82 0.01 0 ind:pre:1p; +épinglèrent épingler ver 2.76 6.82 0 0.07 ind:pas:3p; +épinglé épingler ver m s 2.76 6.82 0.65 1.96 par:pas; +épinglée épingler ver f s 2.76 6.82 0.04 1.62 par:pas; +épinglées épingler ver f p 2.76 6.82 0.04 0.54 par:pas; +épinglés épingler ver m p 2.76 6.82 0.04 0.47 par:pas; +épiniers épinier nom m p 0 0.07 0 0.07 +épinière épinier adj f s 1.39 1.49 1.39 1.49 +épinoches épinoche nom f p 0 0.07 0 0.07 +épions épier ver 4.93 15.88 0.01 0.07 ind:pre:1p; +épiphane épiphane adj m s 0 0.07 0 0.07 +épiphanie épiphanie nom f s 0.23 0.74 0.23 0.74 +épiphylle épiphylle nom m s 0 0.14 0 0.07 +épiphylles épiphylle nom m p 0 0.14 0 0.07 +épiphysaire épiphysaire adj f s 0.01 0 0.01 0 +épiphyse épiphyse nom f s 0.16 0 0.16 0 +épiphyte épiphyte nom m s 0.05 0 0.01 0 +épiphytes épiphyte nom m p 0.05 0 0.04 0 +épiphénomène épiphénomène nom m s 0 0.07 0 0.07 +épiploon épiploon nom m s 0 0.14 0 0.07 +épiploons épiploon nom m p 0 0.14 0 0.07 +épique épique adj s 0.75 2.5 0.68 1.76 +épiques épique adj p 0.75 2.5 0.06 0.74 +épis épi nom m p 1.61 5.81 0.52 3.99 +épiscopal épiscopal adj m s 0.1 1.15 0.01 0.54 +épiscopale épiscopal adj f s 0.1 1.15 0.07 0.47 +épiscopales épiscopal adj f p 0.1 1.15 0 0.07 +épiscopalien épiscopalien adj m s 0.11 0 0.05 0 +épiscopalienne épiscopalien adj f s 0.11 0 0.06 0 +épiscopat épiscopat nom m s 0 0.27 0 0.27 +épiscopaux épiscopal adj m p 0.1 1.15 0.01 0.07 +épisiotomie épisiotomie nom f s 0.05 0 0.05 0 +épisode épisode nom m s 17.32 18.51 13.63 12.5 +épisodes épisode nom m p 17.32 18.51 3.69 6.01 +épisodique épisodique adj s 0.01 2.16 0.01 1.15 +épisodiquement épisodiquement adv 0.01 1.01 0.01 1.01 +épisodiques épisodique adj p 0.01 2.16 0 1.01 +épisser épisser ver 0.03 0.07 0.02 0 inf; +épissoirs épissoir nom m p 0.02 0.07 0.02 0.07 +épissures épissure nom f p 0.01 0.14 0.01 0.14 +épissé épisser ver m s 0.03 0.07 0.01 0.07 par:pas; +épistolaire épistolaire adj s 0 0.95 0 0.54 +épistolaires épistolaire adj p 0 0.95 0 0.41 +épistolier épistolier nom m s 0.01 0.27 0.01 0.2 +épistolière épistolier nom f s 0.01 0.27 0 0.07 +épistémologie épistémologie nom f s 0.04 0.07 0.04 0.07 +épistémologique épistémologique adj m s 0 0.07 0 0.07 +épistémologues épistémologue nom p 0 0.07 0 0.07 +épitaphe épitaphe nom f s 0.72 1.69 0.72 1.35 +épitaphes épitaphe nom f p 0.72 1.69 0 0.34 +épithalame épithalame nom m s 0 0.2 0 0.07 +épithalames épithalame nom m p 0 0.2 0 0.14 +épithète épithète nom f s 0.17 1.96 0.04 1.08 +épithètes épithète nom f p 0.17 1.96 0.12 0.88 +épithélial épithélial adj m s 0.04 0 0.04 0 +épithéliale épithélial adj f s 0.04 0 0.01 0 +épithélioma épithélioma nom m s 0.01 0 0.01 0 +épithélium épithélium nom m s 0.19 0 0.19 0 +épitoge épitoge nom f s 0 0.14 0 0.14 +épitomé épitomé nom m s 0 0.07 0 0.07 +épièrent épier ver 4.93 15.88 0 0.2 ind:pas:3p; +épié épier ver m s 4.93 15.88 0.37 1.69 par:pas; +épiée épier ver f s 4.93 15.88 0.37 0.54 par:pas; +épiées épier ver f p 4.93 15.88 0 0.14 par:pas; +épiés épier ver m p 4.93 15.88 0.05 0.27 par:pas; +éploie éployer ver 0 1.01 0 0.41 ind:pre:3s; +éploient éployer ver 0 1.01 0 0.07 ind:pre:3p; +éploré éploré adj m s 0.67 2.23 0.2 0.54 +éplorée éploré adj f s 0.67 2.23 0.39 0.88 +éplorées éploré adj f p 0.67 2.23 0.05 0.41 +éplorés éploré adj m p 0.67 2.23 0.03 0.41 +éployai éployer ver 0 1.01 0 0.07 ind:pas:1s; +éployait éployer ver 0 1.01 0 0.14 ind:imp:3s; +éployer éployer ver 0 1.01 0 0.07 inf; +éployé éployer ver m s 0 1.01 0 0.07 par:pas; +éployée éployer ver f s 0 1.01 0 0.07 par:pas; +éployées éployer ver f p 0 1.01 0 0.07 par:pas; +éployés éployer ver m p 0 1.01 0 0.07 par:pas; +éplucha éplucher ver 3.27 9.19 0 0.34 ind:pas:3s; +épluchage épluchage nom m s 0.04 0.68 0.04 0.41 +épluchages épluchage nom m p 0.04 0.68 0 0.27 +épluchaient éplucher ver 3.27 9.19 0.01 0.34 ind:imp:3p; +épluchais éplucher ver 3.27 9.19 0.02 0.14 ind:imp:1s; +épluchait éplucher ver 3.27 9.19 0.01 1.55 ind:imp:3s; +épluchant éplucher ver 3.27 9.19 0.05 0.81 par:pre; +épluche éplucher ver 3.27 9.19 0.7 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épluche_légumes épluche_légumes nom m 0.01 0 0.01 0 +épluchent éplucher ver 3.27 9.19 0.09 0.14 ind:pre:3p; +éplucher éplucher ver 3.27 9.19 1.32 3.04 inf; +épluchera éplucher ver 3.27 9.19 0.14 0 ind:fut:3s; +éplucherai éplucher ver 3.27 9.19 0.02 0.07 ind:fut:1s; +éplucherons éplucher ver 3.27 9.19 0 0.07 ind:fut:1p; +épluches éplucher ver 3.27 9.19 0.26 0.07 ind:pre:2s; +éplucheur éplucheur nom m s 0.09 0.2 0.09 0.07 +éplucheurs éplucheur nom m p 0.09 0.2 0 0.07 +éplucheuses éplucheur nom f p 0.09 0.2 0 0.07 +épluchez éplucher ver 3.27 9.19 0.03 0.07 imp:pre:2p;ind:pre:2p; +épluchions éplucher ver 3.27 9.19 0 0.07 ind:imp:1p; +épluchons éplucher ver 3.27 9.19 0.04 0.14 imp:pre:1p;ind:pre:1p; +épluchure épluchure nom f s 0.23 3.18 0.12 0.41 +épluchures épluchure nom f p 0.23 3.18 0.1 2.77 +épluchât éplucher ver 3.27 9.19 0 0.07 sub:imp:3s; +épluché éplucher ver m s 3.27 9.19 0.45 0.81 par:pas; +épluchée éplucher ver f s 3.27 9.19 0.01 0.14 par:pas; +épluchées éplucher ver f p 3.27 9.19 0.11 0.14 par:pas; +épluchés éplucher ver m p 3.27 9.19 0.01 0.34 par:pas; +épointé épointer ver m s 0.11 0.2 0.1 0.07 par:pas; +épointées épointer ver f p 0.11 0.2 0 0.07 par:pas; +épointés épointer ver m p 0.11 0.2 0.01 0.07 par:pas; +éponge éponge nom f s 7.11 14.53 6.14 10.14 +épongea éponger ver 0.97 10.2 0 1.62 ind:pas:3s; +épongeage épongeage nom m s 0 0.07 0 0.07 +épongeaient éponger ver 0.97 10.2 0 0.14 ind:imp:3p; +épongeais éponger ver 0.97 10.2 0 0.07 ind:imp:1s; +épongeait éponger ver 0.97 10.2 0 1.35 ind:imp:3s; +épongeant éponger ver 0.97 10.2 0 1.01 par:pre; +épongent éponger ver 0.97 10.2 0 0.14 ind:pre:3p; +épongeons éponger ver 0.97 10.2 0 0.07 imp:pre:1p; +éponger éponger ver 0.97 10.2 0.51 2.97 inf; +éponges éponge nom f p 7.11 14.53 0.97 4.39 +épongez éponger ver 0.97 10.2 0.01 0 ind:pre:2p; +épongiez éponger ver 0.97 10.2 0 0.07 ind:imp:2p; +épongèrent éponger ver 0.97 10.2 0 0.07 ind:pas:3p; +épongé éponger ver m s 0.97 10.2 0.07 0.34 par:pas; +épongée éponger ver f s 0.97 10.2 0.02 0.27 par:pas; +épongés éponger ver m p 0.97 10.2 0 0.14 par:pas; +éponyme éponyme adj s 0 0.07 0 0.07 +épopée épopée nom f s 1.2 4.73 1.13 4.19 +épopées épopée nom f p 1.2 4.73 0.07 0.54 +époque époque nom f s 68.44 138.51 67.23 132.7 +époques époque nom f p 68.44 138.51 1.21 5.81 +épouillage épouillage nom m s 0.01 0.07 0.01 0.07 +épouillaient épouiller ver 0.5 1.08 0 0.14 ind:imp:3p; +épouillait épouiller ver 0.5 1.08 0.03 0.34 ind:imp:3s; +épouille épouiller ver 0.5 1.08 0.14 0.07 ind:pre:1s;ind:pre:3s; +épouillent épouiller ver 0.5 1.08 0.03 0 ind:pre:3p; +épouiller épouiller ver 0.5 1.08 0.29 0.41 inf; +épouillé épouiller ver m s 0.5 1.08 0 0.07 par:pas; +épouillés épouiller ver m p 0.5 1.08 0.02 0.07 par:pas; +époumonaient époumoner ver 0.09 0.88 0.01 0 ind:imp:3p; +époumonait époumoner ver 0.09 0.88 0 0.2 ind:imp:3s; +époumonant époumoner ver 0.09 0.88 0.02 0.14 par:pre; +époumone époumoner ver 0.09 0.88 0.02 0.2 imp:pre:2s;ind:pre:3s; +époumoner époumoner ver 0.09 0.88 0.04 0.14 inf; +époumonèrent époumoner ver 0.09 0.88 0 0.07 ind:pas:3p; +époumonés époumoner ver m p 0.09 0.88 0 0.14 par:pas; +épousa épouser ver 118.78 59.26 0.88 2.09 ind:pas:3s; +épousable épousable adj s 0 0.07 0 0.07 +épousai épouser ver 118.78 59.26 0.02 0.14 ind:pas:1s; +épousaient épouser ver 118.78 59.26 0.14 0.68 ind:imp:3p; +épousailles épousailles nom f p 0.29 0.61 0.29 0.61 +épousais épouser ver 118.78 59.26 1.01 0.2 ind:imp:1s;ind:imp:2s; +épousait épouser ver 118.78 59.26 0.65 4.46 ind:imp:3s; +épousant épouser ver 118.78 59.26 0.87 3.18 par:pre; +épouse époux nom f s 65.34 46.62 41.98 24.26 +épousent épouser ver 118.78 59.26 0.52 0.47 ind:pre:3p; +épouser épouser ver 118.78 59.26 57.87 20.2 inf;; +épousera épouser ver 118.78 59.26 1.75 1.01 ind:fut:3s; +épouserai épouser ver 118.78 59.26 4.25 0.68 ind:fut:1s; +épouseraient épouser ver 118.78 59.26 0.01 0.34 cnd:pre:3p; +épouserais épouser ver 118.78 59.26 1.81 0.74 cnd:pre:1s;cnd:pre:2s; +épouserait épouser ver 118.78 59.26 1.78 0.88 cnd:pre:3s; +épouseras épouser ver 118.78 59.26 1.75 0.34 ind:fut:2s; +épouserez épouser ver 118.78 59.26 0.54 0.07 ind:fut:2p; +épouseriez épouser ver 118.78 59.26 0.17 0.14 cnd:pre:2p; +épouserons épouser ver 118.78 59.26 0.12 0 ind:fut:1p; +épouseront épouser ver 118.78 59.26 0.03 0.14 ind:fut:3p; +épouses époux nom f p 65.34 46.62 3.8 5.95 +épouseur épouseur nom m s 0.4 0.07 0.4 0 +épouseurs épouseur nom m p 0.4 0.07 0 0.07 +épousez épouser ver 118.78 59.26 1.31 0.27 imp:pre:2p;ind:pre:2p; +épousiez épouser ver 118.78 59.26 0.25 0.14 ind:imp:2p; +épousions épouser ver 118.78 59.26 0 0.34 ind:imp:1p; +épousons épouser ver 118.78 59.26 0.03 0.07 ind:pre:1p; +épousseta épousseter ver 0.54 4.32 0 0.74 ind:pas:3s; +époussetage époussetage nom m s 0 0.07 0 0.07 +époussetaient épousseter ver 0.54 4.32 0 0.2 ind:imp:3p; +époussetais épousseter ver 0.54 4.32 0.03 0.07 ind:imp:1s; +époussetait épousseter ver 0.54 4.32 0 0.41 ind:imp:3s; +époussetant épousseter ver 0.54 4.32 0.02 0.34 par:pre; +épousseter épousseter ver 0.54 4.32 0.26 0.54 inf; +époussetez épousseter ver 0.54 4.32 0.03 0 imp:pre:2p; +époussette épousseter ver 0.54 4.32 0.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +époussettent épousseter ver 0.54 4.32 0.01 0.07 ind:pre:3p; +époussetèrent épousseter ver 0.54 4.32 0 0.07 ind:pas:3p; +épousseté épousseter ver m s 0.54 4.32 0.09 0.81 par:pas; +époussetée épousseter ver f s 0.54 4.32 0.02 0.14 par:pas; +époussetés épousseter ver m p 0.54 4.32 0 0.2 par:pas; +époustouflait époustoufler ver 0.27 0.41 0.02 0 ind:imp:3s; +époustouflant époustouflant adj m s 0.9 1.35 0.67 0.14 +époustouflante époustouflant adj f s 0.9 1.35 0.2 0.74 +époustouflantes époustouflant adj f p 0.9 1.35 0.02 0.34 +époustouflants époustouflant adj m p 0.9 1.35 0.01 0.14 +époustoufle époustoufler ver 0.27 0.41 0 0.14 ind:pre:1s;ind:pre:3s; +époustoufler époustoufler ver 0.27 0.41 0.05 0 inf; +époustouflé époustoufler ver m s 0.27 0.41 0.07 0.14 par:pas; +époustouflée époustoufler ver f s 0.27 0.41 0.04 0.07 par:pas; +époustouflés époustoufler ver m p 0.27 0.41 0.04 0.07 par:pas; +épousât épouser ver 118.78 59.26 0 0.54 sub:imp:3s; +épousèrent épouser ver 118.78 59.26 0.16 0.14 ind:pas:3p; +épousé épouser ver m s 118.78 59.26 18.09 10.88 par:pas; +épousée épouser ver f s 118.78 59.26 5.85 2.84 par:pas; +épousées épouser ver f p 118.78 59.26 0.27 0.14 par:pas; +épousés épouser ver m p 118.78 59.26 0.06 0.2 par:pas; +épouvanta épouvanter ver 1.81 7.97 0 0.68 ind:pas:3s; +épouvantable épouvantable adj s 10.82 9.53 9.53 7.43 +épouvantablement épouvantablement adv 0.34 0.95 0.34 0.95 +épouvantables épouvantable adj p 10.82 9.53 1.29 2.09 +épouvantaient épouvanter ver 1.81 7.97 0 0.68 ind:imp:3p; +épouvantail épouvantail nom m s 2.31 3.51 2 2.77 +épouvantails épouvantail nom m p 2.31 3.51 0.32 0.74 +épouvantait épouvanter ver 1.81 7.97 0.34 1.08 ind:imp:3s; +épouvante épouvante nom f s 1.93 9.8 1.79 9.59 +épouvantement épouvantement nom m s 0 0.27 0 0.2 +épouvantements épouvantement nom m p 0 0.27 0 0.07 +épouvantent épouvanter ver 1.81 7.97 0.02 0.41 ind:pre:3p; +épouvanter épouvanter ver 1.81 7.97 0.16 0.47 inf; +épouvanteraient épouvanter ver 1.81 7.97 0 0.07 cnd:pre:3p; +épouvantes épouvanter ver 1.81 7.97 0.17 0 ind:pre:2s; +épouvantez épouvanter ver 1.81 7.97 0.01 0 ind:pre:2p; +épouvantèrent épouvanter ver 1.81 7.97 0 0.07 ind:pas:3p; +épouvanté épouvanter ver m s 1.81 7.97 0.2 1.96 par:pas; +épouvantée épouvanté adj f s 0.29 3.85 0.11 1.01 +épouvantées épouvanter ver f p 1.81 7.97 0.01 0.14 par:pas; +épouvantés épouvanté adj m p 0.29 3.85 0.01 1.01 +époux époux nom m 65.34 46.62 19.57 16.42 +époxy époxy adj f s 0.04 0 0.04 0 +époxyde époxyde nom m s 0.01 0 0.01 0 +éprenait éprendre ver 2.95 5.95 0 0.14 ind:imp:3s; +éprenant éprendre ver 2.95 5.95 0 0.14 par:pre; +éprend éprendre ver 2.95 5.95 0.04 0.27 ind:pre:3s; +éprendre éprendre ver 2.95 5.95 0.32 0.68 inf; +éprends éprendre ver 2.95 5.95 0.05 0 imp:pre:2s;ind:pre:1s;ind:pre:2s; +éprenne éprendre ver 2.95 5.95 0 0.07 sub:pre:3s; +éprennent éprendre ver 2.95 5.95 0.03 0.07 ind:pre:3p; +épreuve épreuve nom f s 23.43 46.28 16.88 27.91 +épreuves épreuve nom f p 23.43 46.28 6.55 18.38 +épris éprendre ver m 2.95 5.95 1.56 3.04 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +éprise éprendre ver f s 2.95 5.95 0.83 1.01 par:pas; +éprises éprendre ver f p 2.95 5.95 0.01 0.14 par:pas; +éprit éprendre ver 2.95 5.95 0.13 0.41 ind:pas:3s; +éprouva éprouver ver 23.35 127.09 0.01 9.39 ind:pas:3s; +éprouvai éprouver ver 23.35 127.09 0.03 5.27 ind:pas:1s; +éprouvaient éprouver ver 23.35 127.09 0.03 3.51 ind:imp:3p; +éprouvais éprouver ver 23.35 127.09 1.18 13.04 ind:imp:1s;ind:imp:2s; +éprouvait éprouver ver 23.35 127.09 0.88 26.35 ind:imp:3s; +éprouvant éprouvant adj m s 1.42 2.77 0.61 1.01 +éprouvante éprouvant adj f s 1.42 2.77 0.46 1.08 +éprouvantes éprouvant adj f p 1.42 2.77 0.16 0.54 +éprouvants éprouvant adj m p 1.42 2.77 0.19 0.14 +éprouve éprouver ver 23.35 127.09 6.74 19.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éprouvent éprouver ver 23.35 127.09 0.87 1.96 ind:pre:3p; +éprouver éprouver ver 23.35 127.09 3.97 19.05 inf; +éprouvera éprouver ver 23.35 127.09 0.06 0.07 ind:fut:3s; +éprouverai éprouver ver 23.35 127.09 0.42 0.07 ind:fut:1s; +éprouveraient éprouver ver 23.35 127.09 0.01 0.07 cnd:pre:3p; +éprouverais éprouver ver 23.35 127.09 0.03 0.27 cnd:pre:1s;cnd:pre:2s; +éprouverait éprouver ver 23.35 127.09 0.16 0.74 cnd:pre:3s; +éprouveras éprouver ver 23.35 127.09 0.36 0 ind:fut:2s; +éprouverez éprouver ver 23.35 127.09 0.05 0.34 ind:fut:2p; +éprouveront éprouver ver 23.35 127.09 0.03 0.14 ind:fut:3p; +éprouves éprouver ver 23.35 127.09 1.91 0.34 ind:pre:2s; +éprouvette éprouvette nom f s 0.59 1.22 0.44 0.88 +éprouvettes éprouvette nom f p 0.59 1.22 0.16 0.34 +éprouvez éprouver ver 23.35 127.09 1.2 0.34 imp:pre:2p;ind:pre:2p; +éprouviez éprouver ver 23.35 127.09 0.21 0.07 ind:imp:2p; +éprouvions éprouver ver 23.35 127.09 0.02 0.74 ind:imp:1p; +éprouvons éprouver ver 23.35 127.09 0.28 1.01 ind:pre:1p; +éprouvâmes éprouver ver 23.35 127.09 0 0.07 ind:pas:1p; +éprouvât éprouver ver 23.35 127.09 0 0.54 sub:imp:3s; +éprouvèrent éprouver ver 23.35 127.09 0.02 0.41 ind:pas:3p; +éprouvé éprouver ver m s 23.35 127.09 3.96 16.22 par:pas; +éprouvée éprouver ver f s 23.35 127.09 0.37 2.64 par:pas; +éprouvées éprouvé adj f p 0.59 4.19 0.11 0.47 +éprouvés éprouvé adj m p 0.59 4.19 0.25 1.22 +épucer épucer ver 0.01 0.07 0.01 0 inf; +épuisa épuiser ver 25.41 33.11 0 0.47 ind:pas:3s; +épuisai épuiser ver 25.41 33.11 0 0.14 ind:pas:1s; +épuisaient épuiser ver 25.41 33.11 0.05 1.08 ind:imp:3p; +épuisais épuiser ver 25.41 33.11 0.01 0.34 ind:imp:1s; +épuisait épuiser ver 25.41 33.11 0.03 1.89 ind:imp:3s; +épuisant épuisant adj m s 2.24 5.81 1.4 2.3 +épuisante épuisant adj f s 2.24 5.81 0.59 2.03 +épuisantes épuisant adj f p 2.24 5.81 0.17 0.68 +épuisants épuisant adj m p 2.24 5.81 0.09 0.81 +épuise épuiser ver 25.41 33.11 1.79 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épuisement épuisement nom m s 1.94 7.91 1.93 7.84 +épuisements épuisement nom m p 1.94 7.91 0.01 0.07 +épuisent épuiser ver 25.41 33.11 0.78 1.08 ind:pre:3p; +épuiser épuiser ver 25.41 33.11 1.91 4.53 inf; +épuisera épuiser ver 25.41 33.11 0.17 0.14 ind:fut:3s; +épuiseraient épuiser ver 25.41 33.11 0.01 0.07 cnd:pre:3p; +épuiserait épuiser ver 25.41 33.11 0.14 0.14 cnd:pre:3s; +épuiseras épuiser ver 25.41 33.11 0.04 0 ind:fut:2s; +épuiserons épuiser ver 25.41 33.11 0.01 0.07 ind:fut:1p; +épuiseront épuiser ver 25.41 33.11 0.02 0 ind:fut:3p; +épuises épuiser ver 25.41 33.11 0.26 0.14 ind:pre:2s; +épuisette épuisette nom f s 0.51 1.49 0.51 1.15 +épuisettes épuisette nom f p 0.51 1.49 0 0.34 +épuisez épuiser ver 25.41 33.11 0.41 0 imp:pre:2p;ind:pre:2p; +épuisiez épuiser ver 25.41 33.11 0 0.07 ind:imp:2p; +épuisons épuiser ver 25.41 33.11 0.16 0.14 ind:pre:1p; +épuisât épuiser ver 25.41 33.11 0 0.07 sub:imp:3s; +épuisèrent épuiser ver 25.41 33.11 0 0.2 ind:pas:3p; +épuisé épuiser ver m s 25.41 33.11 11.11 10.47 par:pas; +épuisée épuiser ver f s 25.41 33.11 6.04 4.93 par:pas; +épuisées épuiser ver f p 25.41 33.11 0.67 0.27 par:pas; +épuisés épuiser ver m p 25.41 33.11 1.77 2.7 par:pas; +épulie épulie nom f s 0 0.07 0 0.07 +épurait épurer ver 0.62 1.96 0 0.2 ind:imp:3s; +épurant épurer ver 0.62 1.96 0 0.14 par:pre; +épurateur épurateur nom m s 0.15 0.07 0.15 0.07 +épuration épuration nom f s 0.46 1.69 0.44 1.49 +épurations épuration nom f p 0.46 1.69 0.01 0.2 +épurative épuratif adj f s 0.01 0 0.01 0 +épure épure nom f s 0.28 1.28 0.14 0.74 +épurer épurer ver 0.62 1.96 0.03 0.34 inf; +épures épure nom f p 0.28 1.28 0.14 0.54 +épuré épurer ver m s 0.62 1.96 0.05 0.41 par:pas; +épurée épurer ver f s 0.62 1.96 0.5 0.34 par:pas; +épurées épurer ver f p 0.62 1.96 0.01 0.14 par:pas; +épurés épurer ver m p 0.62 1.96 0.01 0.2 par:pas; +épuçât épucer ver 0.01 0.07 0 0.07 sub:imp:3s; +épée épée nom f s 32.81 25.2 29.34 19.12 +épées épée nom f p 32.81 25.2 3.48 6.08 +épéiste épéiste nom s 0.08 0 0.06 0 +épéistes épéiste nom p 0.08 0 0.02 0 +épépine épépiner ver 0 0.07 0 0.07 ind:pre:3s; +épître épître nom f s 0.4 1.22 0.18 0.88 +épîtres épître nom f p 0.4 1.22 0.21 0.34 +équanimité équanimité nom f s 0 0.14 0 0.14 +équarisseur équarisseur nom m s 0.01 0.27 0 0.14 +équarisseurs équarisseur nom m p 0.01 0.27 0.01 0.14 +équarri équarri adj m s 0.01 0.95 0.01 0.2 +équarrie équarri adj f s 0.01 0.95 0 0.07 +équarries équarri adj f p 0.01 0.95 0 0.54 +équarrir équarrir ver 0.01 0.54 0.01 0.14 inf; +équarris équarri adj m p 0.01 0.95 0 0.14 +équarrissage équarrissage nom m s 0.03 0.14 0.03 0.14 +équarrissait équarrir ver 0.01 0.54 0 0.14 ind:imp:3s; +équarrisseur équarrisseur nom m s 0 0.47 0 0.41 +équarrisseurs équarrisseur nom m p 0 0.47 0 0.07 +équateur équateur nom m s 0.38 1.55 0.38 1.55 +équation équation nom f s 3.5 2.84 2.49 1.35 +équations équation nom f p 3.5 2.84 1 1.49 +équatorial équatorial adj m s 0.38 4.59 0.01 0.74 +équatoriale équatorial adj f s 0.38 4.59 0.37 3.45 +équatoriaux équatorial adj m p 0.38 4.59 0 0.41 +équatorien équatorien nom m s 0.01 0.07 0.01 0.07 +équatoriennes équatorien adj f p 0.01 0 0.01 0 +équerrage équerrage nom m s 0 0.07 0 0.07 +équerre équerre nom f s 0.2 1.55 0.19 1.49 +équerres équerre nom f p 0.2 1.55 0.01 0.07 +équestre équestre adj s 0.29 2.09 0.28 1.35 +équestres équestre adj p 0.29 2.09 0.01 0.74 +équeuter équeuter ver 0.01 0 0.01 0 inf; +équeutées équeuté adj f p 0 0.07 0 0.07 +équidistance équidistance nom f s 0.11 0 0.11 0 +équidistant équidistant adj m s 0.15 0.54 0.14 0.14 +équidistante équidistant adj f s 0.15 0.54 0 0.14 +équidistantes équidistant adj f p 0.15 0.54 0 0.07 +équidistants équidistant adj m p 0.15 0.54 0.01 0.2 +équidés équidé nom m p 0.01 0 0.01 0 +équilatéral équilatéral adj m s 0.04 0.34 0.04 0.27 +équilatéraux équilatéral adj m p 0.04 0.34 0 0.07 +équilibra équilibrer ver 1.97 5.34 0 0.14 ind:pas:3s; +équilibrage équilibrage nom m s 0.17 0 0.17 0 +équilibraient équilibrer ver 1.97 5.34 0 0.47 ind:imp:3p; +équilibrais équilibrer ver 1.97 5.34 0 0.07 ind:imp:1s; +équilibrait équilibrer ver 1.97 5.34 0.01 0.34 ind:imp:3s; +équilibrant équilibrer ver 1.97 5.34 0 0.2 par:pre; +équilibrante équilibrant adj f s 0 0.14 0 0.14 +équilibre équilibre nom m s 10.66 39.73 10.53 39.05 +équilibrent équilibrer ver 1.97 5.34 0.04 0.41 ind:pre:3p; +équilibrer équilibrer ver 1.97 5.34 0.84 1.69 inf; +équilibres équilibre nom m p 10.66 39.73 0.13 0.68 +équilibreur équilibreur nom m s 0.03 0 0.03 0 +équilibrisme équilibrisme nom m s 0 0.07 0 0.07 +équilibriste équilibriste nom s 0.7 0.88 0.45 0.54 +équilibristes équilibriste nom p 0.7 0.88 0.26 0.34 +équilibrèrent équilibrer ver 1.97 5.34 0 0.14 ind:pas:3p; +équilibré équilibré adj m s 2.23 2.57 1.37 1.28 +équilibrée équilibré adj f s 2.23 2.57 0.64 0.74 +équilibrées équilibré adj f p 2.23 2.57 0.02 0.34 +équilibrés équilibré adj m p 2.23 2.57 0.21 0.2 +équin équin adj m s 0.05 0.07 0 0.07 +équine équin adj f s 0.05 0.07 0.05 0 +équinoxe équinoxe nom m s 0.44 3.18 0.44 2.5 +équinoxes équinoxe nom m p 0.44 3.18 0 0.68 +équipa équiper ver 6.27 9.46 0.01 0.07 ind:pas:3s; +équipage équipage nom m s 19.91 17.16 18.48 11.28 +équipages équipage nom m p 19.91 17.16 1.42 5.88 +équipai équiper ver 6.27 9.46 0.01 0 ind:pas:1s; +équipait équiper ver 6.27 9.46 0 0.2 ind:imp:3s; +équipant équiper ver 6.27 9.46 0.01 0.27 par:pre; +équipe équipe nom f s 129.97 34.32 118 26.28 +équipement équipement nom m s 12.82 8.51 10.71 6.42 +équipements équipement nom m p 12.82 8.51 2.11 2.09 +équipent équiper ver 6.27 9.46 0.15 0.14 ind:pre:3p; +équiper équiper ver 6.27 9.46 0.89 1.89 inf; +équipera équiper ver 6.27 9.46 0.05 0 ind:fut:3s; +équiperai équiper ver 6.27 9.46 0.01 0 ind:fut:1s; +équiperais équiper ver 6.27 9.46 0.02 0 cnd:pre:1s; +équipes équipe nom f p 129.97 34.32 11.97 8.04 +équipez équiper ver 6.27 9.46 0.01 0.07 imp:pre:2p;ind:pre:2p; +équipier équipier nom m s 4.34 1.08 3.07 0.81 +équipiers équipier nom m p 4.34 1.08 0.71 0.27 +équipière équipier nom f s 4.34 1.08 0.56 0 +équipons équiper ver 6.27 9.46 0.02 0 imp:pre:1p;ind:pre:1p; +équipèrent équiper ver 6.27 9.46 0 0.07 ind:pas:3p; +équipé équiper ver m s 6.27 9.46 1.65 2.09 par:pas; +équipée équiper ver f s 6.27 9.46 1.46 1.69 par:pas; +équipées équiper ver f p 6.27 9.46 0.2 0.81 par:pas; +équipés équiper ver m p 6.27 9.46 0.93 1.35 par:pas; +équitable équitable adj s 3.41 2.97 3.3 2.77 +équitablement équitablement adv 0.46 1.35 0.46 1.35 +équitables équitable adj p 3.41 2.97 0.1 0.2 +équitation équitation nom f s 1.14 1.42 1.14 1.42 +équité équité nom f s 0.79 1.49 0.79 1.49 +équivalaient équivaloir ver 2.23 3.72 0.01 0.07 ind:imp:3p; +équivalait équivaloir ver 2.23 3.72 0.16 1.42 ind:imp:3s; +équivalant équivaloir ver 2.23 3.72 0.12 0.41 par:pre; +équivalence équivalence nom f s 0.22 0.81 0.19 0.61 +équivalences équivalence nom f p 0.22 0.81 0.04 0.2 +équivalent équivalent nom m s 2.45 5.74 2.43 4.93 +équivalente équivalent adj f s 0.99 1.69 0.25 0.27 +équivalentes équivalent adj f p 0.99 1.69 0.03 0.2 +équivalents équivalent adj m p 0.99 1.69 0.12 0.34 +équivaloir équivaloir ver 2.23 3.72 0 0.07 inf; +équivalu équivaloir ver m s 2.23 3.72 0 0.14 par:pas; +équivalût équivaloir ver 2.23 3.72 0 0.07 sub:imp:3s; +équivaudra équivaloir ver 2.23 3.72 0.16 0.07 ind:fut:3s; +équivaudrait équivaloir ver 2.23 3.72 0.1 0.27 cnd:pre:3s; +équivaut équivaloir ver 2.23 3.72 1.41 1.08 ind:pre:3s; +équivoque équivoque nom f s 0.78 3.78 0.64 3.38 +équivoquer équivoquer ver 0.01 0 0.01 0 inf; +équivoques équivoque adj p 0.88 5.14 0.34 1.22 +érable érable nom m s 1.15 2.03 1.11 1.15 +érables érable nom m p 1.15 2.03 0.04 0.88 +érablières érablière nom f p 0 0.07 0 0.07 +éradicateur éradicateur nom m s 0.02 0 0.02 0 +éradication éradication nom f s 0.31 0 0.31 0 +éradiquer éradiquer ver 1.34 0.07 0.97 0.07 inf; +éradiquerai éradiquer ver 1.34 0.07 0.02 0 ind:fut:1s; +éradiqueront éradiquer ver 1.34 0.07 0.02 0 ind:fut:3p; +éradiquons éradiquer ver 1.34 0.07 0.03 0 imp:pre:1p;ind:pre:1p; +éradiqué éradiquer ver m s 1.34 0.07 0.22 0 par:pas; +éradiquée éradiquer ver f s 1.34 0.07 0.08 0 par:pas; +érafla érafler ver 0.91 2.03 0 0.2 ind:pas:3s; +éraflait érafler ver 0.91 2.03 0 0.14 ind:imp:3s; +érafle érafler ver 0.91 2.03 0.05 0.2 ind:pre:1s;ind:pre:3s; +érafler érafler ver 0.91 2.03 0.15 0.2 inf; +éraflez érafler ver 0.91 2.03 0.02 0 imp:pre:2p;ind:pre:2p; +éraflure éraflure nom f s 1.75 1.76 1 0.81 +éraflures éraflure nom f p 1.75 1.76 0.75 0.95 +éraflé érafler ver m s 0.91 2.03 0.55 0.81 par:pas; +éraflée érafler ver f s 0.91 2.03 0.05 0.34 par:pas; +éraflées érafler ver f p 0.91 2.03 0.06 0.07 par:pas; +éraflés érafler ver m p 0.91 2.03 0.04 0.07 par:pas; +érailla érailler ver 0.04 1.42 0 0.07 ind:pas:3s; +éraillaient érailler ver 0.04 1.42 0 0.07 ind:imp:3p; +éraillait érailler ver 0.04 1.42 0 0.07 ind:imp:3s; +éraillant érailler ver 0.04 1.42 0 0.07 par:pre; +éraille érailler ver 0.04 1.42 0 0.14 ind:pre:3s; +éraillent érailler ver 0.04 1.42 0 0.07 ind:pre:3p; +érailler érailler ver 0.04 1.42 0.02 0 inf; +éraillures éraillure nom f p 0 0.07 0 0.07 +éraillé éraillé adj m s 0.03 2.16 0 0.27 +éraillée éraillé adj f s 0.03 2.16 0.03 1.69 +éraillées érailler ver f p 0.04 1.42 0 0.27 par:pas; +éraillés éraillé adj m p 0.03 2.16 0 0.14 +érectile érectile adj s 0.13 0.14 0.02 0.14 +érectiles érectile adj m p 0.13 0.14 0.11 0 +érection érection nom f s 3.56 4.05 3.27 3.31 +érections érection nom f p 3.56 4.05 0.3 0.74 +éreintait éreinter ver 0.88 0.95 0 0.07 ind:imp:3s; +éreintant éreintant adj m s 0.54 0.14 0.21 0.14 +éreintante éreintant adj f s 0.54 0.14 0.31 0 +éreintants éreintant adj m p 0.54 0.14 0.02 0 +éreinte éreinter ver 0.88 0.95 0.09 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +éreintement éreintement nom m s 0 0.27 0 0.27 +éreintent éreinter ver 0.88 0.95 0.07 0 ind:pre:3p; +éreinter éreinter ver 0.88 0.95 0.14 0.2 inf; +éreinteur éreinteur nom m s 0.01 0 0.01 0 +éreinté éreinter ver m s 0.88 0.95 0.23 0.41 par:pas; +éreintée éreinter ver f s 0.88 0.95 0.23 0 par:pas; +éreintées éreinter ver f p 0.88 0.95 0.01 0.07 par:pas; +éreintés éreinter ver m p 0.88 0.95 0.09 0.07 par:pas; +érige ériger ver 1.91 5.2 0.1 0.88 ind:pre:1s;ind:pre:3s;sub:pre:1s; +érigea ériger ver 1.91 5.2 0.02 0.07 ind:pas:3s; +érigeaient ériger ver 1.91 5.2 0.14 0.27 ind:imp:3p; +érigeait ériger ver 1.91 5.2 0 0.14 ind:imp:3s; +érigeant ériger ver 1.91 5.2 0.02 0.34 par:pre; +érigent ériger ver 1.91 5.2 0.01 0.27 ind:pre:3p; +ériger ériger ver 1.91 5.2 0.79 1.15 inf; +érigeât ériger ver 1.91 5.2 0 0.07 sub:imp:3s; +érigé ériger ver m s 1.91 5.2 0.45 0.95 par:pas; +érigée ériger ver f s 1.91 5.2 0.23 0.68 par:pas; +érigées ériger ver f p 1.91 5.2 0.14 0.2 par:pas; +érigés ériger ver m p 1.91 5.2 0.01 0.2 par:pas; +érode éroder ver 0.16 0.68 0.1 0.2 ind:pre:3s; +érodent éroder ver 0.16 0.68 0.01 0 ind:pre:3p; +éroder éroder ver 0.16 0.68 0 0.07 inf; +érodé éroder ver m s 0.16 0.68 0.03 0.14 par:pas; +érodée érodé adj f s 0.03 0.27 0.02 0.07 +érodées éroder ver f p 0.16 0.68 0 0.07 par:pas; +érodés éroder ver m p 0.16 0.68 0 0.14 par:pas; +érogène érogène adj f s 0.14 0.61 0.04 0.2 +érogènes érogène adj p 0.14 0.61 0.1 0.41 +éros éros nom m 0.33 0.54 0.33 0.54 +érosion érosion nom f s 0.34 1.49 0.32 1.28 +érosions érosion nom f p 0.34 1.49 0.02 0.2 +érotique érotique adj s 5.06 8.85 3.04 5.95 +érotiquement érotiquement adj s 0.01 0.34 0.01 0.34 +érotiques érotique adj p 5.06 8.85 2.02 2.91 +érotise érotiser ver 0.01 0.2 0 0.07 ind:pre:3s; +érotiser érotiser ver 0.01 0.2 0.01 0 inf; +érotisme érotisme nom m s 1.64 3.38 1.64 3.38 +érotisé érotiser ver m s 0.01 0.2 0 0.07 par:pas; +érotisée érotiser ver f s 0.01 0.2 0 0.07 par:pas; +érotomane érotomane adj m s 0 0.14 0 0.14 +érotomane érotomane nom s 0 0.14 0 0.14 +érotomanie érotomanie nom f s 0.04 0.14 0.04 0.14 +éructa éructer ver 0.21 2.5 0 0.27 ind:pas:3s; +éructait éructer ver 0.21 2.5 0 0.41 ind:imp:3s; +éructant éructer ver 0.21 2.5 0.02 0.27 par:pre; +éructation éructation nom f s 0.02 0.2 0.01 0 +éructations éructation nom f p 0.02 0.2 0.01 0.2 +éructe éructer ver 0.21 2.5 0.14 1.01 ind:pre:1s;ind:pre:3s; +éructer éructer ver 0.21 2.5 0.04 0.27 inf; +éructes éructer ver 0.21 2.5 0.01 0 ind:pre:2s; +éructé éructer ver m s 0.21 2.5 0 0.2 par:pas; +éructées éructer ver f p 0.21 2.5 0 0.07 par:pas; +érudit érudit nom m s 1.43 1.69 1.09 0.61 +érudite érudit adj f s 0.56 1.01 0.11 0 +érudites érudit adj f p 0.56 1.01 0.01 0.14 +érudition érudition nom f s 0.4 2.84 0.4 2.84 +érudits érudit nom m p 1.43 1.69 0.3 1.08 +éruption éruption nom f s 3.73 2.09 3.32 1.55 +éruptions éruption nom f p 3.73 2.09 0.41 0.54 +éruptive éruptif adj f s 0.01 0.07 0.01 0 +éruptives éruptif adj f p 0.01 0.07 0 0.07 +érythromycine érythromycine nom f s 0.04 0 0.04 0 +érythrophobie érythrophobie nom f s 0.05 0 0.05 0 +érythréenne érythréen nom f s 0.01 0 0.01 0 +érythème érythème nom m s 0.17 0.14 0.16 0 +érythèmes érythème nom m p 0.17 0.14 0.01 0.14 +érythémateux érythémateux adj m 0.03 0 0.03 0 +ésotérique ésotérique adj s 0.53 1.08 0.18 0.68 +ésotériques ésotérique adj p 0.53 1.08 0.35 0.41 +ésotérisme ésotérisme nom m s 0.23 0.54 0.23 0.54 +ésotéristes ésotériste nom p 0 0.07 0 0.07 +étable étable nom f s 5.37 9.46 4.85 7.5 +étables étable nom f p 5.37 9.46 0.52 1.96 +établi établir ver m s 26.38 57.77 7.41 11.01 par:pas; +établie établir ver f s 26.38 57.77 1.89 4.66 par:pas; +établies établir ver f p 26.38 57.77 0.58 1.96 par:pas; +établir établir ver 26.38 57.77 10.52 20.68 inf; +établira établir ver 26.38 57.77 0.34 0.27 ind:fut:3s; +établirai établir ver 26.38 57.77 0.07 0.14 ind:fut:1s; +établiraient établir ver 26.38 57.77 0.01 0.07 cnd:pre:3p; +établirais établir ver 26.38 57.77 0.14 0.07 cnd:pre:1s; +établirait établir ver 26.38 57.77 0.04 0.88 cnd:pre:3s; +établirent établir ver 26.38 57.77 0.04 1.01 ind:pas:3p; +établirez établir ver 26.38 57.77 0.01 0.14 ind:fut:2p; +établirions établir ver 26.38 57.77 0.01 0 cnd:pre:1p; +établirons établir ver 26.38 57.77 0.07 0.07 ind:fut:1p; +établiront établir ver 26.38 57.77 0.05 0.14 ind:fut:3p; +établis établir ver m p 26.38 57.77 1.29 2.7 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +établissaient établir ver 26.38 57.77 0.02 1.08 ind:imp:3p; +établissais établir ver 26.38 57.77 0.03 0.27 ind:imp:1s;ind:imp:2s; +établissait établir ver 26.38 57.77 0.17 3.78 ind:imp:3s; +établissant établir ver 26.38 57.77 0.55 1.01 par:pre; +établisse établir ver 26.38 57.77 0.26 0.81 sub:pre:1s;sub:pre:3s; +établissement établissement nom m s 7.59 22.23 6.11 17.36 +établissements établissement nom m p 7.59 22.23 1.48 4.86 +établissent établir ver 26.38 57.77 0.28 1.22 ind:pre:3p; +établisses établir ver 26.38 57.77 0.01 0 sub:pre:2s; +établissez établir ver 26.38 57.77 0.5 0.14 imp:pre:2p;ind:pre:2p; +établissions établir ver 26.38 57.77 0.05 0.14 ind:imp:1p; +établissons établir ver 26.38 57.77 0.29 0.2 imp:pre:1p;ind:pre:1p; +établit établir ver 26.38 57.77 1.74 5.07 ind:pre:3s;ind:pas:3s; +établît établir ver 26.38 57.77 0 0.27 sub:imp:3s; +étage étage nom m s 46.45 96.55 39.47 69.19 +étagea étager ver 0.73 3.58 0 0.07 ind:pas:3s; +étageaient étager ver 0.73 3.58 0 0.81 ind:imp:3p; +étageait étager ver 0.73 3.58 0 0.27 ind:imp:3s; +étageant étager ver 0.73 3.58 0 0.41 par:pre; +étagent étager ver 0.73 3.58 0 0.74 ind:pre:3p; +étages étage nom m p 46.45 96.55 6.98 27.36 +étagère étagère nom f s 5.06 16.69 3.29 9.59 +étagères étagère nom f p 5.06 16.69 1.77 7.09 +étagé étagé adj m s 0 0.54 0 0.07 +étagée étager ver f s 0.73 3.58 0 0.2 par:pas; +étagées étager ver f p 0.73 3.58 0 0.41 par:pas; +étagés étager ver m p 0.73 3.58 0 0.27 par:pas; +étai étai nom m s 0.28 0.88 0.19 0.54 +étaie étayer ver 0.72 4.05 0.04 0.14 ind:pre:1s;ind:pre:3s; +étaient être aux 8074.24 6501.82 55.3 393.85 ind:imp:3p; +étain étain nom m s 1.19 4.66 1.08 4.39 +étains étain nom m p 1.19 4.66 0.11 0.27 +étais être aux 8074.24 6501.82 184.97 224.66 ind:imp:2s; +était être aux 8074.24 6501.82 350.91 1497.84 ind:imp:3s; +étal étal nom m s 0.56 5.54 0.33 3.38 +étala étaler ver 6.36 63.11 0 4.05 ind:pas:3s; +étalage étalage nom m s 2.22 11.42 1.95 7.64 +étalages étalage nom m p 2.22 11.42 0.27 3.78 +étalagiste étalagiste nom s 0 0.2 0 0.2 +étalai étaler ver 6.36 63.11 0 0.27 ind:pas:1s; +étalaient étaler ver 6.36 63.11 0.03 6.15 ind:imp:3p; +étalais étaler ver 6.36 63.11 0.18 0.2 ind:imp:1s; +étalait étaler ver 6.36 63.11 0.08 10 ind:imp:3s; +étalant étaler ver 6.36 63.11 0.13 2.3 par:pre; +étale étaler ver 6.36 63.11 0.93 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +étalement étalement nom m s 0.14 0.47 0.14 0.41 +étalements étalement nom m p 0.14 0.47 0 0.07 +étalent étaler ver 6.36 63.11 0.32 2.57 ind:pre:3p; +étaler étaler ver 6.36 63.11 2.42 7.16 inf; +étalera étaler ver 6.36 63.11 0 0.14 ind:fut:3s; +étalerai étaler ver 6.36 63.11 0.01 0 ind:fut:1s; +étaleraient étaler ver 6.36 63.11 0 0.14 cnd:pre:3p; +étalerait étaler ver 6.36 63.11 0.01 0.14 cnd:pre:3s; +étaleras étaler ver 6.36 63.11 0 0.07 ind:fut:2s; +étaleront étaler ver 6.36 63.11 0.01 0.07 ind:fut:3p; +étales étaler ver 6.36 63.11 0.28 0 ind:pre:2s; +étalez étaler ver 6.36 63.11 0.04 0.14 imp:pre:2p;ind:pre:2p; +étalions étaler ver 6.36 63.11 0 0.14 ind:imp:1p; +étalon étalon nom m s 6.2 5.41 5.13 4.39 +étalonnage étalonnage nom m s 0.45 0.07 0.45 0 +étalonnages étalonnage nom m p 0.45 0.07 0 0.07 +étalonne étalonner ver 0.02 0.14 0 0.07 ind:pre:1s; +étalonner étalonner ver 0.02 0.14 0.01 0.07 inf; +étalonné étalonner ver m s 0.02 0.14 0.01 0 par:pas; +étalonnés étalonné adj m p 0.01 0 0.01 0 +étalons étalon nom m p 6.2 5.41 1.07 1.01 +étals étal nom m p 0.56 5.54 0.23 2.16 +étalât étaler ver 6.36 63.11 0 0.14 sub:imp:3s; +étalèrent étaler ver 6.36 63.11 0 0.54 ind:pas:3p; +étalé étaler ver m s 6.36 63.11 0.94 6.55 par:pas; +étalée étaler ver f s 6.36 63.11 0.41 4.73 par:pas; +étalées étaler ver f p 6.36 63.11 0.14 3.18 par:pas; +étalés étaler ver m p 6.36 63.11 0.3 3.99 par:pas; +étamaient étamer ver 0 0.14 0 0.07 ind:imp:3p; +étambot étambot nom m s 0.01 0.14 0.01 0.14 +étameur étameur nom m s 0.03 0.07 0.03 0 +étameurs étameur nom m p 0.03 0.07 0 0.07 +étamine étamine nom f s 0.06 1.22 0.05 0.61 +étamines étamine nom f p 0.06 1.22 0.01 0.61 +étampes étampe nom f p 0 1.01 0 1.01 +étampures étampure nom f p 0 0.07 0 0.07 +étamé étamé adj m s 0 0.27 0 0.27 +étanchaient étancher ver 0.48 1.89 0 0.07 ind:imp:3p; +étanchait étancher ver 0.48 1.89 0 0.2 ind:imp:3s; +étanche étanche adj s 1.87 1.96 1.4 1.15 +étanchement étanchement nom m s 0.2 0 0.2 0 +étanchent étancher ver 0.48 1.89 0 0.07 ind:pre:3p; +étancher étancher ver 0.48 1.89 0.16 1.35 inf; +étancherait étancher ver 0.48 1.89 0 0.07 cnd:pre:3s; +étanches étanche adj p 1.87 1.96 0.47 0.81 +étanché étancher ver m s 0.48 1.89 0.26 0.07 par:pas; +étanchée étancher ver f s 0.48 1.89 0.02 0 par:pas; +étanchéité étanchéité nom f s 0.13 0.34 0.13 0.34 +étang étang nom m s 7.1 15.47 6.57 10.47 +étangs étang nom m p 7.1 15.47 0.53 5 +étant être aux 8074.24 6501.82 30.94 76.82 par:pre; +étançon étançon nom m s 0 0.2 0 0.2 +étape étape nom f s 15.77 23.65 12.44 14.46 +étapes étape nom f p 15.77 23.65 3.34 9.19 +état état nom m s 145.72 218.18 136.81 192.03 +état_civil état_civil nom m s 0.03 0.54 0.03 0.47 +état_major état_major nom m s 5.24 22.43 5.16 18.31 +étatique étatique adj s 0.07 0.2 0.07 0.07 +étatiques étatique adj p 0.07 0.2 0 0.14 +étatisation étatisation nom f s 0.03 0 0.03 0 +étatisme étatisme nom m s 0.01 0.07 0.01 0.07 +états état nom m p 145.72 218.18 8.91 26.15 +état_civil état_civil nom m p 0.03 0.54 0 0.07 +état_major état_major nom m p 5.24 22.43 0.09 4.12 +étau étau nom m s 0.75 4.86 0.61 4.39 +étaux étau nom m p 0.75 4.86 0.14 0.47 +étayage étayage nom m s 0.01 0.07 0.01 0.07 +étayaient étayer ver 0.72 4.05 0 0.2 ind:imp:3p; +étayait étayer ver 0.72 4.05 0 0.41 ind:imp:3s; +étayant étayer ver 0.72 4.05 0.01 0.34 par:pre; +étaye étayer ver 0.72 4.05 0.08 0 ind:pre:3s; +étayer étayer ver 0.72 4.05 0.47 1.15 inf; +étayez étayer ver 0.72 4.05 0.03 0.07 imp:pre:2p;ind:pre:2p; +étayé étayer ver m s 0.72 4.05 0.02 0.54 par:pas; +étayée étayer ver f s 0.72 4.05 0.02 0.47 par:pas; +étayées étayer ver f p 0.72 4.05 0.05 0.14 par:pas; +étayés étayer ver m p 0.72 4.05 0 0.61 par:pas; +éteignaient éteindre ver 57.32 76.82 0.18 2.23 ind:imp:3p; +éteignais éteindre ver 57.32 76.82 0.1 0.34 ind:imp:1s;ind:imp:2s; +éteignait éteindre ver 57.32 76.82 0.22 4.46 ind:imp:3s; +éteignant éteindre ver 57.32 76.82 0.34 2.84 par:pre; +éteigne éteindre ver 57.32 76.82 1.16 0.81 sub:pre:1s;sub:pre:3s; +éteignent éteindre ver 57.32 76.82 1.36 2.64 ind:pre:3p; +éteignes éteindre ver 57.32 76.82 0.08 0 sub:pre:2s; +éteignez éteindre ver 57.32 76.82 3.98 0.54 imp:pre:2p;ind:pre:2p; +éteignions éteindre ver 57.32 76.82 0 0.07 ind:imp:1p; +éteignirent éteindre ver 57.32 76.82 0.04 1.69 ind:pas:3p; +éteignis éteindre ver 57.32 76.82 0.1 0.47 ind:pas:1s; +éteignit éteindre ver 57.32 76.82 0.39 11.15 ind:pas:3s; +éteignoir éteignoir nom m s 0.16 0.14 0.16 0.14 +éteignons éteindre ver 57.32 76.82 0.1 0 imp:pre:1p;ind:pre:1p; +éteignît éteindre ver 57.32 76.82 0 0.54 sub:imp:3s; +éteindra éteindre ver 57.32 76.82 1.69 0.54 ind:fut:3s; +éteindrai éteindre ver 57.32 76.82 0.92 0 ind:fut:1s; +éteindraient éteindre ver 57.32 76.82 0.01 0.07 cnd:pre:3p; +éteindrais éteindre ver 57.32 76.82 0.04 0.07 cnd:pre:1s; +éteindrait éteindre ver 57.32 76.82 0.19 0.47 cnd:pre:3s; +éteindras éteindre ver 57.32 76.82 0.18 0 ind:fut:2s; +éteindre éteindre ver 57.32 76.82 14.48 16.62 inf; +éteindrez éteindre ver 57.32 76.82 0.14 0.14 ind:fut:2p; +éteindrons éteindre ver 57.32 76.82 0.23 0.41 ind:fut:1p; +éteindront éteindre ver 57.32 76.82 0.21 0.34 ind:fut:3p; +éteins éteindre ver 57.32 76.82 10.44 2.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +éteint éteindre ver m s 57.32 76.82 16.42 19.12 ind:pre:3s;par:pas; +éteinte éteindre ver f s 57.32 76.82 2.98 4.53 par:pas; +éteintes éteindre ver f p 57.32 76.82 0.77 1.69 par:pas; +éteints éteint adj m p 2.79 17.91 0.8 4.32 +étend étendre ver 21.9 111.89 4.98 11.28 ind:pre:3s; +étendage étendage nom m s 0.02 0.2 0.02 0.2 +étendaient étendre ver 21.9 111.89 0.14 3.45 ind:imp:3p; +étendais étendre ver 21.9 111.89 0.03 0.88 ind:imp:1s; +étendait étendre ver 21.9 111.89 1.01 13.99 ind:imp:3s; +étendant étendre ver 21.9 111.89 0.07 3.24 par:pre; +étendard étendard nom m s 0.77 4.8 0.65 2.23 +étendards étendard nom m p 0.77 4.8 0.12 2.57 +étende étendre ver 21.9 111.89 0.27 0.47 sub:pre:1s;sub:pre:3s; +étendent étendre ver 21.9 111.89 0.81 2.3 ind:pre:3p; +étendez étendre ver 21.9 111.89 0.27 0.2 imp:pre:2p;ind:pre:2p; +étendions étendre ver 21.9 111.89 0 0.14 ind:imp:1p; +étendirent étendre ver 21.9 111.89 0 1.01 ind:pas:3p; +étendis étendre ver 21.9 111.89 0.02 1.22 ind:pas:1s; +étendit étendre ver 21.9 111.89 0.28 12.09 ind:pas:3s; +étendoir étendoir nom m s 0.02 0.14 0.02 0.14 +étendons étendre ver 21.9 111.89 0.04 0.2 imp:pre:1p;ind:pre:1p; +étendra étendre ver 21.9 111.89 0.21 0.14 ind:fut:3s; +étendrai étendre ver 21.9 111.89 0.08 0.27 ind:fut:1s; +étendraient étendre ver 21.9 111.89 0 0.07 cnd:pre:3p; +étendrais étendre ver 21.9 111.89 0.01 0.14 cnd:pre:1s; +étendrait étendre ver 21.9 111.89 0.06 0.61 cnd:pre:3s; +étendre étendre ver 21.9 111.89 5.87 19.59 inf;; +étendrez étendre ver 21.9 111.89 0 0.07 ind:fut:2p; +étendrions étendre ver 21.9 111.89 0 0.07 cnd:pre:1p; +étendrons étendre ver 21.9 111.89 0.05 0 ind:fut:1p; +étendront étendre ver 21.9 111.89 0.05 0 ind:fut:3p; +étends étendre ver 21.9 111.89 1.42 2.23 imp:pre:2s;ind:pre:1s;ind:pre:2s; +étendu étendre ver m s 21.9 111.89 3.56 20.54 par:pas; +étendue étendue nom f s 3.96 24.46 3.52 18.85 +étendues étendue nom f p 3.96 24.46 0.45 5.61 +étendus étendre ver m p 21.9 111.89 0.51 3.38 par:pas; +étendîmes étendre ver 21.9 111.89 0 0.07 ind:pas:1p; +étendît étendre ver 21.9 111.89 0 0.34 sub:imp:3s; +éternel éternel adj m s 30.53 45.88 14.06 19.86 +éternelle éternel adj f s 30.53 45.88 12.85 18.18 +éternellement éternellement adv 8.01 9.93 8.01 9.93 +éternelles éternel adj f p 30.53 45.88 1.52 3.78 +éternels éternel adj m p 30.53 45.88 2.1 4.05 +éternisa éterniser ver 1.31 4.32 0 0.34 ind:pas:3s; +éternisaient éterniser ver 1.31 4.32 0 0.14 ind:imp:3p; +éternisais éterniser ver 1.31 4.32 0 0.07 ind:imp:1s; +éternisait éterniser ver 1.31 4.32 0 0.95 ind:imp:3s; +éternise éterniser ver 1.31 4.32 0.41 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éternisent éterniser ver 1.31 4.32 0.02 0.2 ind:pre:3p; +éterniser éterniser ver 1.31 4.32 0.65 1.35 inf; +éterniserai éterniser ver 1.31 4.32 0.02 0 ind:fut:1s; +éterniserait éterniser ver 1.31 4.32 0 0.07 cnd:pre:3s; +éterniserons éterniser ver 1.31 4.32 0.01 0 ind:fut:1p; +éternisez éterniser ver 1.31 4.32 0.13 0 imp:pre:2p;ind:pre:2p; +éternisons éterniser ver 1.31 4.32 0 0.07 imp:pre:1p; +éternisât éterniser ver 1.31 4.32 0 0.07 sub:imp:3s; +éternisé éterniser ver m s 1.31 4.32 0.04 0.2 par:pas; +éternisée éterniser ver f s 1.31 4.32 0.02 0 par:pas; +éternisés éterniser ver m p 1.31 4.32 0.01 0.14 par:pas; +éternité éternité nom f s 18.2 31.62 18 30.95 +éternités éternité nom f p 18.2 31.62 0.2 0.68 +éternua éternuer ver 3.48 4.26 0 1.28 ind:pas:3s; +éternuaient éternuer ver 3.48 4.26 0 0.07 ind:imp:3p; +éternuais éternuer ver 3.48 4.26 0.03 0.07 ind:imp:1s; +éternuait éternuer ver 3.48 4.26 0.02 0.2 ind:imp:3s; +éternuant éternuer ver 3.48 4.26 0.2 0.2 par:pre; +éternue éternuer ver 3.48 4.26 1.25 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éternuement éternuement nom m s 1 1.55 0.65 1.01 +éternuements éternuement nom m p 1 1.55 0.36 0.54 +éternuent éternuer ver 3.48 4.26 0.04 0 ind:pre:3p; +éternuer éternuer ver 3.48 4.26 1.02 1.62 inf; +éternuerait éternuer ver 3.48 4.26 0 0.07 cnd:pre:3s; +éternues éternuer ver 3.48 4.26 0.23 0 ind:pre:2s; +éternuez éternuer ver 3.48 4.26 0.06 0.07 imp:pre:2p;ind:pre:2p; +éternué éternuer ver m s 3.48 4.26 0.63 0.27 par:pas; +éteule éteule nom f s 0 0.54 0 0.07 +éteules éteule nom f p 0 0.54 0 0.47 +éthane éthane nom m s 0.01 0 0.01 0 +éthanol éthanol nom m s 0.29 0 0.29 0 +éther éther nom m s 1.43 4.05 1.43 3.92 +éthers éther nom m p 1.43 4.05 0 0.14 +éthiopien éthiopien adj m s 0.59 0.47 0.31 0.07 +éthiopienne éthiopien adj f s 0.59 0.47 0.14 0.27 +éthiopiennes éthiopien adj f p 0.59 0.47 0.01 0 +éthiopiens éthiopien adj m p 0.59 0.47 0.14 0.14 +éthique éthique nom f s 4.56 1.08 4.55 1.01 +éthiquement éthiquement adv 0.09 0 0.09 0 +éthiques éthique adj p 1.22 0.41 0.28 0.27 +éthologie éthologie nom f s 0.11 0.07 0.11 0.07 +éthologue éthologue nom s 0.01 0 0.01 0 +éthyle éthyle nom m s 0.07 0 0.07 0 +éthylique éthylique adj s 0.26 0.61 0.26 0.34 +éthyliques éthylique adj p 0.26 0.61 0 0.27 +éthylisme éthylisme nom m s 0.1 0.2 0.1 0.2 +éthylotest éthylotest nom m s 0.05 0 0.05 0 +éthylène éthylène nom m s 0.09 0 0.09 0 +éthérique éthérique adj f s 0.01 0 0.01 0 +éthéré éthéré adj m s 0.4 0.95 0.23 0.27 +éthérée éthéré adj f s 0.4 0.95 0 0.41 +éthérées éthéré adj f p 0.4 0.95 0.16 0.2 +éthérés éthéré adj m p 0.4 0.95 0.01 0.07 +étiage étiage nom m s 0 0.34 0 0.34 +étier étier nom m s 0 0.34 0 0.07 +étiers étier nom m p 0 0.34 0 0.27 +étiez être aux 8074.24 6501.82 23.15 7.3 ind:imp:2p; +étincela étinceler ver 1.29 10.81 0 0.41 ind:pas:3s; +étincelaient étinceler ver 1.29 10.81 0.05 2.36 ind:imp:3p; +étincelait étinceler ver 1.29 10.81 0.02 3.11 ind:imp:3s; +étincelant étincelant adj m s 1.29 13.18 0.34 3.24 +étincelante étincelant adj f s 1.29 13.18 0.58 4.53 +étincelantes étincelant adj f p 1.29 13.18 0.25 2.7 +étincelants étincelant adj m p 1.29 13.18 0.12 2.7 +étinceler étinceler ver 1.29 10.81 0.07 0.88 inf; +étincelle étincelle nom f s 6.3 12.97 3.59 5.07 +étincellement étincellement nom m s 0.14 0.81 0.14 0.74 +étincellements étincellement nom m p 0.14 0.81 0 0.07 +étincellent étinceler ver 1.29 10.81 0.16 0.61 ind:pre:3p; +étincellera étinceler ver 1.29 10.81 0.03 0 ind:fut:3s; +étincelles étincelle nom f p 6.3 12.97 2.71 7.91 +étincelèrent étinceler ver 1.29 10.81 0 0.34 ind:pas:3p; +étincelé étinceler ver m s 1.29 10.81 0 0.2 par:pas; +étiolaient étioler ver 0.45 2.09 0 0.07 ind:imp:3p; +étiolais étioler ver 0.45 2.09 0 0.07 ind:imp:1s; +étiolait étioler ver 0.45 2.09 0 0.14 ind:imp:3s; +étiolant étioler ver 0.45 2.09 0 0.07 par:pre; +étiole étioler ver 0.45 2.09 0.16 0.41 ind:pre:1s;ind:pre:3s; +étiolement étiolement nom m s 0 0.07 0 0.07 +étiolent étioler ver 0.45 2.09 0.01 0.54 ind:pre:3p; +étioler étioler ver 0.45 2.09 0.26 0.54 inf; +étiologie étiologie nom f s 0.03 0 0.03 0 +étiologique étiologique adj m s 0.02 0.07 0.01 0 +étiologiques étiologique adj p 0.02 0.07 0.01 0.07 +étiolé étioler ver m s 0.45 2.09 0 0.07 par:pas; +étiolée étioler ver f s 0.45 2.09 0.03 0.14 par:pas; +étiolées étioler ver f p 0.45 2.09 0 0.07 par:pas; +étions être aux 8074.24 6501.82 9.63 47.77 ind:imp:1p; +étique étique adj s 0.11 0.68 0.09 0.34 +étiques étique adj p 0.11 0.68 0.02 0.34 +étiquetage étiquetage nom m s 0.12 0 0.12 0 +étiquetaient étiqueter ver 1.13 2.03 0 0.07 ind:imp:3p; +étiqueter étiqueter ver 1.13 2.03 0.35 0.27 inf; +étiqueteuse étiqueteur nom f s 0.04 0 0.04 0 +étiquetez étiqueter ver 1.13 2.03 0.09 0 imp:pre:2p;ind:pre:2p; +étiquette étiquette nom f s 7.38 15.74 5.44 8.65 +étiquettent étiqueter ver 1.13 2.03 0.01 0.07 ind:pre:3p; +étiquettes étiquette nom f p 7.38 15.74 1.94 7.09 +étiqueté étiqueter ver m s 1.13 2.03 0.31 0.47 par:pas; +étiquetée étiqueter ver f s 1.13 2.03 0.09 0.14 par:pas; +étiquetées étiqueter ver f p 1.13 2.03 0.05 0.34 par:pas; +étiquetés étiqueter ver m p 1.13 2.03 0.15 0.54 par:pas; +étira étirer ver 3.28 40.27 0 7.09 ind:pas:3s; +étirable étirable adj m s 0.01 0 0.01 0 +étirage étirage nom m s 0.14 0 0.14 0 +étirai étirer ver 3.28 40.27 0 0.34 ind:pas:1s; +étiraient étirer ver 3.28 40.27 0.02 2.5 ind:imp:3p; +étirais étirer ver 3.28 40.27 0.11 0.27 ind:imp:1s;ind:imp:2s; +étirait étirer ver 3.28 40.27 0.06 5.07 ind:imp:3s; +étirant étirer ver 3.28 40.27 0.06 4.39 par:pre; +étire étirer ver 3.28 40.27 0.99 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +étirement étirement nom m s 0.33 1.01 0.09 0.54 +étirements étirement nom m p 0.33 1.01 0.24 0.47 +étirent étirer ver 3.28 40.27 0.35 1.96 ind:pre:3p; +étirer étirer ver 3.28 40.27 0.93 3.11 inf; +étirerait étirer ver 3.28 40.27 0.02 0 cnd:pre:3s; +étirez étirer ver 3.28 40.27 0.09 0 imp:pre:2p;ind:pre:2p; +étirèrent étirer ver 3.28 40.27 0.01 0.54 ind:pas:3p; +étiré étirer ver m s 3.28 40.27 0.29 2.03 par:pas; +étirée étirer ver f s 3.28 40.27 0.06 1.49 par:pas; +étirées étirer ver f p 3.28 40.27 0.12 1.69 par:pas; +étirés étirer ver m p 3.28 40.27 0.15 1.76 par:pas; +étisie étisie nom f s 0 0.07 0 0.07 +étoffaient étoffer ver 0.33 0.81 0 0.07 ind:imp:3p; +étoffait étoffer ver 0.33 0.81 0 0.14 ind:imp:3s; +étoffe étoffe nom f s 3.1 28.24 2.9 19.26 +étoffer étoffer ver 0.33 0.81 0.14 0.14 inf; +étoffes étoffe nom f p 3.1 28.24 0.2 8.99 +étoffé étoffer ver m s 0.33 0.81 0.11 0.27 par:pas; +étoffée étoffer ver f s 0.33 0.81 0.04 0.07 par:pas; +étoffées étoffé adj f p 0.07 0.34 0 0.07 +étoffés étoffer ver m p 0.33 0.81 0 0.07 par:pas; +étoila étoiler ver 0.95 3.78 0 0.07 ind:pas:3s; +étoilaient étoiler ver 0.95 3.78 0 0.2 ind:imp:3p; +étoilait étoiler ver 0.95 3.78 0.01 0.47 ind:imp:3s; +étoile étoile nom f s 54.63 81.82 21.65 29.8 +étoilent étoiler ver 0.95 3.78 0 0.07 ind:pre:3p; +étoiles étoile nom f p 54.63 81.82 32.98 52.03 +étoilé étoilé adj m s 1.35 3.18 0.59 1.28 +étoilée étoilé adj f s 1.35 3.18 0.71 0.88 +étoilées étoilé adj f p 1.35 3.18 0.03 0.68 +étoilés étoilé adj m p 1.35 3.18 0.02 0.34 +étole étole nom f s 0.29 2.09 0.29 1.69 +étoles étole nom f p 0.29 2.09 0 0.41 +étonna étonner ver 53.63 116.55 0.23 14.19 ind:pas:3s; +étonnai étonner ver 53.63 116.55 0 1.49 ind:pas:1s; +étonnaient étonner ver 53.63 116.55 0.02 2.64 ind:imp:3p; +étonnais étonner ver 53.63 116.55 0.23 3.58 ind:imp:1s;ind:imp:2s; +étonnait étonner ver 53.63 116.55 0.91 15.47 ind:imp:3s; +étonnamment étonnamment adv 1.01 3.99 1.01 3.99 +étonnant étonnant adj m s 19.85 30 15.52 16.15 +étonnante étonnant adj f s 19.85 30 2.95 10.47 +étonnantes étonnant adj f p 19.85 30 0.72 1.89 +étonnants étonnant adj m p 19.85 30 0.66 1.49 +étonne étonner ver 53.63 116.55 21.18 21.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +étonnement étonnement nom m s 1.28 31.96 1.28 30.74 +étonnements étonnement nom m p 1.28 31.96 0 1.22 +étonnent étonner ver 53.63 116.55 0.49 1.96 ind:pre:3p; +étonner étonner ver 53.63 116.55 3.4 12.23 inf; +étonnera étonner ver 53.63 116.55 0.62 1.08 ind:fut:3s; +étonnerai étonner ver 53.63 116.55 0.18 0.07 ind:fut:1s; +étonneraient étonner ver 53.63 116.55 0.03 0.41 cnd:pre:3p; +étonnerais étonner ver 53.63 116.55 0.02 0.14 cnd:pre:1s; +étonnerait étonner ver 53.63 116.55 10.62 7.84 cnd:pre:3s; +étonneras étonner ver 53.63 116.55 0.1 0.14 ind:fut:2s; +étonnerez étonner ver 53.63 116.55 0.06 0.07 ind:fut:2p; +étonneriez étonner ver 53.63 116.55 0 0.07 cnd:pre:2p; +étonnerons étonner ver 53.63 116.55 0 0.07 ind:fut:1p; +étonneront étonner ver 53.63 116.55 0.04 0.27 ind:fut:3p; +étonnes étonner ver 53.63 116.55 4.3 1.15 ind:pre:2s; +étonnez étonner ver 53.63 116.55 1.46 1.62 imp:pre:2p;ind:pre:2p; +étonniez étonner ver 53.63 116.55 0.02 0.07 ind:imp:2p; +étonnions étonner ver 53.63 116.55 0 0.27 ind:imp:1p; +étonnons étonner ver 53.63 116.55 0.01 0.2 imp:pre:1p;ind:pre:1p; +étonnâmes étonner ver 53.63 116.55 0 0.14 ind:pas:1p; +étonnât étonner ver 53.63 116.55 0 0.07 sub:imp:3s; +étonnèrent étonner ver 53.63 116.55 0 1.15 ind:pas:3p; +étonné étonner ver m s 53.63 116.55 3.21 15.07 par:pas; +étonnée étonner ver f s 53.63 116.55 2.39 6.76 par:pas; +étonnées étonné adj f p 3.37 23.31 0.1 0.61 +étonnés étonner ver m p 53.63 116.55 0.52 2.03 par:pas; +étouffa étouffer ver 28.5 59.46 0.11 2.5 ind:pas:3s; +étouffai étouffer ver 28.5 59.46 0 0.14 ind:pas:1s; +étouffaient étouffer ver 28.5 59.46 0.03 2.84 ind:imp:3p; +étouffais étouffer ver 28.5 59.46 0.32 1.96 ind:imp:1s;ind:imp:2s; +étouffait étouffer ver 28.5 59.46 0.34 8.92 ind:imp:3s; +étouffant étouffant adj m s 1.36 7.97 0.83 2.7 +étouffante étouffant adj f s 1.36 7.97 0.51 4.19 +étouffantes étouffant adj f p 1.36 7.97 0.01 0.54 +étouffants étouffant adj m p 1.36 7.97 0.01 0.54 +étouffassent étouffer ver 28.5 59.46 0 0.07 sub:imp:3p; +étouffe étouffer ver 28.5 59.46 11.88 8.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +étouffe_chrétien étouffe_chrétien nom m 0.01 0 0.01 0 +étouffement étouffement nom m s 0.64 3.92 0.64 3.45 +étouffements étouffement nom m p 0.64 3.92 0 0.47 +étouffent étouffer ver 28.5 59.46 0.98 1.49 ind:pre:3p; +étouffer étouffer ver 28.5 59.46 7.45 12.3 inf;; +étouffera étouffer ver 28.5 59.46 0.22 0.2 ind:fut:3s; +étoufferai étouffer ver 28.5 59.46 0.26 0 ind:fut:1s; +étoufferaient étouffer ver 28.5 59.46 0.1 0.07 cnd:pre:3p; +étoufferais étouffer ver 28.5 59.46 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +étoufferait étouffer ver 28.5 59.46 0.29 0.47 cnd:pre:3s; +étoufferez étouffer ver 28.5 59.46 0.04 0 ind:fut:2p; +étoufferiez étouffer ver 28.5 59.46 0.01 0 cnd:pre:2p; +étoufferons étouffer ver 28.5 59.46 0.03 0.07 ind:fut:1p; +étoufferont étouffer ver 28.5 59.46 0.03 0.07 ind:fut:3p; +étouffes étouffer ver 28.5 59.46 1.32 0.95 ind:pre:2s; +étouffeur étouffeur nom m s 0.03 0.07 0.03 0 +étouffeuses étouffeur nom f p 0.03 0.07 0 0.07 +étouffez étouffer ver 28.5 59.46 0.32 0.07 imp:pre:2p;ind:pre:2p; +étouffiez étouffer ver 28.5 59.46 0.02 0 ind:imp:2p; +étouffions étouffer ver 28.5 59.46 0 0.14 ind:imp:1p; +étouffoir étouffoir nom m s 0 0.2 0 0.14 +étouffoirs étouffoir nom m p 0 0.2 0 0.07 +étouffons étouffer ver 28.5 59.46 0.02 0.07 imp:pre:1p;ind:pre:1p; +étouffât étouffer ver 28.5 59.46 0 0.34 sub:imp:3s; +étouffèrent étouffer ver 28.5 59.46 0.2 0.34 ind:pas:3p; +étouffé étouffer ver m s 28.5 59.46 2.48 5.2 par:pas; +étouffée étouffer ver f s 28.5 59.46 1.36 5.27 par:pas; +étouffées étouffer ver f p 28.5 59.46 0.17 1.82 par:pas; +étouffés étouffé adj m p 0.74 8.11 0.46 3.78 +étoupe étoupe nom f s 0.07 1.28 0.07 1.28 +étourderie étourderie nom f s 0.3 1.69 0.3 1.49 +étourderies étourderie nom f p 0.3 1.69 0 0.2 +étourdi étourdi adj m s 1 3.58 0.56 2.3 +étourdie étourdi adj f s 1 3.58 0.44 0.88 +étourdies étourdi nom f p 0.73 2.16 0.01 0 +étourdiment étourdiment adv 0.01 0.95 0.01 0.95 +étourdir étourdir ver 1.13 7.64 0.17 1.22 inf; +étourdira étourdir ver 1.13 7.64 0.01 0 ind:fut:3s; +étourdirait étourdir ver 1.13 7.64 0 0.07 cnd:pre:3s; +étourdirent étourdir ver 1.13 7.64 0 0.07 ind:pas:3p; +étourdis étourdir ver m p 1.13 7.64 0.06 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +étourdissaient étourdir ver 1.13 7.64 0 0.41 ind:imp:3p; +étourdissait étourdir ver 1.13 7.64 0 1.22 ind:imp:3s; +étourdissant étourdissant adj m s 0.4 2.03 0.23 0.88 +étourdissante étourdissant adj f s 0.4 2.03 0.14 0.95 +étourdissantes étourdissant adj f p 0.4 2.03 0.03 0.14 +étourdissants étourdissant adj m p 0.4 2.03 0 0.07 +étourdissement étourdissement nom m s 0.81 1.82 0.62 1.42 +étourdissements étourdissement nom m p 0.81 1.82 0.2 0.41 +étourdissent étourdir ver 1.13 7.64 0.03 0.14 ind:pre:3p; +étourdissez étourdir ver 1.13 7.64 0.11 0 ind:pre:2p; +étourdissons étourdir ver 1.13 7.64 0 0.07 ind:pre:1p; +étourdit étourdir ver 1.13 7.64 0.2 0.88 ind:pre:3s;ind:pas:3s; +étourneau étourneau nom m s 0.41 1.22 0.33 0.27 +étourneaux étourneau nom m p 0.41 1.22 0.09 0.95 +étrange étrange adj s 85.61 103.58 70.99 83.65 +étrangement étrangement adv 3.85 14.86 3.85 14.86 +étranger étranger nom m s 59.32 66.62 35.72 33.85 +étrangers étranger nom m p 59.32 66.62 19.67 23.85 +étranges étrange adj p 85.61 103.58 14.61 19.93 +étrangeté étrangeté nom f s 0.39 5.68 0.35 4.93 +étrangetés étrangeté nom f p 0.39 5.68 0.04 0.74 +étrangla étrangler ver 18.53 22.09 0 2.3 ind:pas:3s; +étranglai étrangler ver 18.53 22.09 0 0.2 ind:pas:1s; +étranglaient étrangler ver 18.53 22.09 0.04 0.41 ind:imp:3p; +étranglais étrangler ver 18.53 22.09 0.04 0.14 ind:imp:1s;ind:imp:2s; +étranglait étrangler ver 18.53 22.09 0.21 2.7 ind:imp:3s; +étranglant étrangler ver 18.53 22.09 0.1 1.15 par:pre; +étrangle étrangler ver 18.53 22.09 4.04 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +étranglement étranglement nom m s 0.62 1.42 0.61 1.08 +étranglements étranglement nom m p 0.62 1.42 0.01 0.34 +étranglent étrangler ver 18.53 22.09 0.36 0.27 ind:pre:3p; +étrangler étrangler ver 18.53 22.09 6.87 6.49 inf;; +étranglera étrangler ver 18.53 22.09 0.16 0.14 ind:fut:3s; +étranglerai étrangler ver 18.53 22.09 0.16 0.2 ind:fut:1s; +étrangleraient étrangler ver 18.53 22.09 0.01 0.07 cnd:pre:3p; +étranglerais étrangler ver 18.53 22.09 0.46 0 cnd:pre:1s;cnd:pre:2s; +étranglerait étrangler ver 18.53 22.09 0.15 0 cnd:pre:3s; +étrangleront étrangler ver 18.53 22.09 0.17 0 ind:fut:3p; +étrangles étrangler ver 18.53 22.09 0.36 0.07 ind:pre:2s; +étrangleur étrangleur nom m s 0.66 0.88 0.62 0.74 +étrangleurs étrangleur nom m p 0.66 0.88 0.03 0.14 +étrangleuse étrangleur nom f s 0.66 0.88 0.01 0 +étrangleuses étrangleur adj f p 0.04 0.27 0 0.07 +étranglez étrangler ver 18.53 22.09 0.11 0.07 imp:pre:2p;ind:pre:2p; +étranglât étrangler ver 18.53 22.09 0 0.07 sub:imp:3s; +étranglé étrangler ver m s 18.53 22.09 3.44 2.23 par:pas; +étranglée étrangler ver f s 18.53 22.09 1.5 1.96 par:pas; +étranglées étrangler ver f p 18.53 22.09 0.14 0.14 par:pas; +étranglés étrangler ver m p 18.53 22.09 0.22 0.14 par:pas; +étrangère étranger adj f s 31.39 75 7.25 20.47 +étrangères étranger adj f p 31.39 75 4.46 16.82 +étrangéité étrangéité nom f s 0 0.07 0 0.07 +étrave étrave nom f s 0.07 3.31 0.07 3.11 +étraves étrave nom f p 0.07 3.31 0 0.2 +étreignaient étreindre ver 3.05 16.96 0.11 0.81 ind:imp:3p; +étreignais étreindre ver 3.05 16.96 0.02 0.07 ind:imp:1s; +étreignait étreindre ver 3.05 16.96 0.14 3.45 ind:imp:3s; +étreignant étreindre ver 3.05 16.96 0.26 1.22 par:pre; +étreigne étreindre ver 3.05 16.96 0.14 0.07 sub:pre:1s;sub:pre:3s; +étreignent étreindre ver 3.05 16.96 0.06 1.08 ind:pre:3p;sub:pre:3p; +étreignions étreindre ver 3.05 16.96 0 0.27 ind:imp:1p; +étreignirent étreindre ver 3.05 16.96 0 0.41 ind:pas:3p; +étreignit étreindre ver 3.05 16.96 0.16 1.76 ind:pas:3s; +étreignons étreindre ver 3.05 16.96 0.01 0.07 imp:pre:1p;ind:pre:1p; +étreignîmes étreindre ver 3.05 16.96 0 0.07 ind:pas:1p; +étreindrait étreindre ver 3.05 16.96 0 0.07 cnd:pre:3s; +étreindre étreindre ver 3.05 16.96 0.69 2.97 inf;; +étreindrons étreindre ver 3.05 16.96 0 0.07 ind:fut:1p; +étreindront étreindre ver 3.05 16.96 0.14 0.07 ind:fut:3p; +étreins étreindre ver 3.05 16.96 0.3 0.2 imp:pre:2s;ind:pre:1s;ind:pre:2s; +étreint étreindre ver m s 3.05 16.96 0.95 3.38 ind:pre:3s;par:pas; +étreinte étreinte nom f s 2.75 16.42 2.06 12.36 +étreintes étreinte nom f p 2.75 16.42 0.7 4.05 +étreints étreindre ver m p 3.05 16.96 0.01 0.68 par:pas; +étrenna étrenner ver 0.37 1.28 0 0.07 ind:pas:3s; +étrennait étrenner ver 0.37 1.28 0.01 0.2 ind:imp:3s; +étrennant étrenner ver 0.37 1.28 0 0.07 par:pre; +étrenne étrenner ver 0.37 1.28 0.14 0.07 ind:pre:3s; +étrennent étrenner ver 0.37 1.28 0 0.07 ind:pre:3p; +étrenner étrenner ver 0.37 1.28 0.07 0.47 inf; +étrennera étrenner ver 0.37 1.28 0.01 0.07 ind:fut:3s; +étrennerais étrenner ver 0.37 1.28 0 0.07 cnd:pre:1s; +étrennes étrenne nom f p 0.17 1.22 0.17 1.08 +étrenné étrenner ver m s 0.37 1.28 0.02 0.07 par:pas; +étrennée étrenner ver f s 0.37 1.28 0.01 0.14 par:pas; +étrier étrier nom m s 0.83 5 0.33 2.43 +étriers étrier nom m p 0.83 5 0.5 2.57 +étrilla étriller ver 0.11 1.15 0 0.14 ind:pas:3s; +étrillage étrillage nom m s 0 0.14 0 0.14 +étrillaient étriller ver 0.11 1.15 0 0.07 ind:imp:3p; +étrillait étriller ver 0.11 1.15 0 0.07 ind:imp:3s; +étrille étrille nom f s 0.01 0.41 0.01 0.2 +étriller étriller ver 0.11 1.15 0.06 0.41 inf; +étrillerez étriller ver 0.11 1.15 0.01 0 ind:fut:2p; +étrilles étrille nom f p 0.01 0.41 0 0.2 +étrillé étriller ver m s 0.11 1.15 0.02 0.27 par:pas; +étrillée étriller ver f s 0.11 1.15 0.01 0.07 par:pas; +étrillés étriller ver m p 0.11 1.15 0 0.14 par:pas; +étripage étripage nom m s 0.01 0.07 0.01 0 +étripages étripage nom m p 0.01 0.07 0 0.07 +étripaient étriper ver 3.07 1.76 0 0.07 ind:imp:3p; +étripe étriper ver 3.07 1.76 1.3 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +étripent étriper ver 3.07 1.76 0.06 0.07 ind:pre:3p; +étriper étriper ver 3.07 1.76 1.35 0.74 inf; +étripera étriper ver 3.07 1.76 0.03 0 ind:fut:3s; +étriperai étriper ver 3.07 1.76 0.03 0 ind:fut:1s; +étriperaient étriper ver 3.07 1.76 0.01 0 cnd:pre:3p; +étriperais étriper ver 3.07 1.76 0.01 0 cnd:pre:1s; +étripèrent étriper ver 3.07 1.76 0 0.07 ind:pas:3p; +étripé étriper ver m s 3.07 1.76 0.19 0.14 par:pas; +étripée étriper ver f s 3.07 1.76 0.01 0.07 par:pas; +étripés étriper ver m p 3.07 1.76 0.06 0.14 par:pas; +étriqua étriquer ver 0.19 1.15 0 0.07 ind:pas:3s; +étriquaient étriquer ver 0.19 1.15 0 0.07 ind:imp:3p; +étriquant étriquer ver 0.19 1.15 0 0.07 par:pre; +étriqué étriqué adj m s 0.23 3.78 0.13 1.96 +étriquée étriquer ver f s 0.19 1.15 0.16 0.2 par:pas; +étriquées étriqué adj f p 0.23 3.78 0.01 0.41 +étriqués étriqué adj m p 0.23 3.78 0.07 0.54 +étrivière étrivière nom f s 0 0.41 0 0.07 +étrivières étrivière nom f p 0 0.41 0 0.34 +étroit étroit adj m s 10.79 75.81 5.94 28.18 +étroite étroit adj f s 10.79 75.81 2.91 29.59 +étroitement étroitement adv 1.51 10.81 1.51 10.81 +étroites étroit adj f p 10.79 75.81 1.06 10.88 +étroitesse étroitesse nom f s 0.36 2.36 0.36 2.36 +étroits étroit adj m p 10.79 75.81 0.88 7.16 +étron étron nom m s 0.75 2.43 0.44 1.55 +étrons étron nom m p 0.75 2.43 0.31 0.88 +étrusque étrusque adj m s 0.33 0.54 0.14 0.14 +étrusques étrusque adj p 0.33 0.54 0.19 0.41 +étréci étrécir ver m s 0 0.27 0 0.07 par:pas; +étrécie étrécir ver f s 0 0.27 0 0.07 par:pas; +étrécir étrécir ver 0 0.27 0 0.07 inf; +étrécissement étrécissement nom m s 0 0.07 0 0.07 +étrécit étrécir ver 0 0.27 0 0.07 ind:pas:3s; +étrésillon étrésillon nom m s 0 0.07 0 0.07 +étude étude nom f s 44.22 63.04 11.35 19.66 +études étude nom f p 44.22 63.04 32.87 43.38 +étudia étudier ver 70.9 30.41 0.21 1.15 ind:pas:3s; +étudiai étudier ver 70.9 30.41 0.02 0.34 ind:pas:1s; +étudiaient étudier ver 70.9 30.41 0.12 0.47 ind:imp:3p; +étudiais étudier ver 70.9 30.41 1.23 0.81 ind:imp:1s;ind:imp:2s; +étudiait étudier ver 70.9 30.41 1.86 2.5 ind:imp:3s; +étudiant étudiant nom m s 38.07 38.45 10.12 14.05 +étudiante étudiant nom f s 38.07 38.45 4.49 3.72 +étudiantes étudiant nom f p 38.07 38.45 2.24 1.89 +étudiants étudiant nom m p 38.07 38.45 21.22 18.78 +étudie étudier ver 70.9 30.41 11.42 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +étudient étudier ver 70.9 30.41 1.93 0.2 ind:pre:3p; +étudier étudier ver 70.9 30.41 26.86 11.42 inf; +étudiera étudier ver 70.9 30.41 0.51 0.34 ind:fut:3s; +étudierai étudier ver 70.9 30.41 0.62 0.2 ind:fut:1s; +étudierais étudier ver 70.9 30.41 0.14 0.14 cnd:pre:1s;cnd:pre:2s; +étudierait étudier ver 70.9 30.41 0.02 0.07 cnd:pre:3s; +étudieras étudier ver 70.9 30.41 0.39 0 ind:fut:2s; +étudierez étudier ver 70.9 30.41 0.13 0.07 ind:fut:2p; +étudierions étudier ver 70.9 30.41 0 0.07 cnd:pre:1p; +étudierons étudier ver 70.9 30.41 0.16 0.14 ind:fut:1p; +étudies étudier ver 70.9 30.41 2.58 0.2 ind:pre:2s; +étudiez étudier ver 70.9 30.41 2.12 0.14 imp:pre:2p;ind:pre:2p; +étudions étudier ver 70.9 30.41 0.77 0.14 imp:pre:1p;ind:pre:1p; +étudièrent étudier ver 70.9 30.41 0.01 0.2 ind:pas:3p; +étudié étudier ver m s 70.9 30.41 17.23 6.55 par:pas; +étudiée étudier ver f s 70.9 30.41 0.52 0.61 par:pas; +étudiées étudier ver f p 70.9 30.41 0.23 0.61 par:pas; +étudiés étudier ver m p 70.9 30.41 0.25 0.74 par:pas; +étui étui nom m s 2.54 7.97 2.37 7.09 +étuis étui nom m p 2.54 7.97 0.17 0.88 +étuve étuve nom f s 0.43 3.78 0.43 3.45 +étuver étuver ver 0.01 0.34 0 0.07 inf; +étuves étuve nom f p 0.43 3.78 0 0.34 +étuveuse étuveur nom f s 0 0.07 0 0.07 +étuvé étuver ver m s 0.01 0.34 0.01 0.27 par:pas; +étuvée étuvée nom f s 0.05 0.14 0.05 0.14 +étymologie étymologie nom f s 0.09 1.08 0.09 0.95 +étymologies étymologie nom f p 0.09 1.08 0 0.14 +étymologique étymologique adj s 0 0.54 0 0.47 +étymologiquement étymologiquement adv 0.01 0.14 0.01 0.14 +étymologiques étymologique adj p 0 0.54 0 0.07 +étymologiste étymologiste nom s 0 0.14 0 0.14 +été être aux m s 8074.24 6501.82 24.71 40.2 par:pas; +étés été nom m p 67.27 125.47 5.47 3.92 +étêta étêter ver 0 0.34 0 0.07 ind:pas:3s; +étêtait étêter ver 0 0.34 0 0.07 ind:imp:3s; +étêté étêter ver m s 0 0.34 0 0.07 par:pas; +étêtés étêter ver m p 0 0.34 0 0.14 par:pas; +évacua évacuer ver 17.61 9.8 0 0.14 ind:pas:3s; +évacuai évacuer ver 17.61 9.8 0 0.07 ind:pas:1s; +évacuaient évacuer ver 17.61 9.8 0.02 0.2 ind:imp:3p; +évacuais évacuer ver 17.61 9.8 0 0.07 ind:imp:1s; +évacuait évacuer ver 17.61 9.8 0.04 0.61 ind:imp:3s; +évacuant évacuer ver 17.61 9.8 0.04 0.07 par:pre; +évacuation évacuation nom f s 6.3 3.38 6.08 3.24 +évacuations évacuation nom f p 6.3 3.38 0.22 0.14 +évacue évacuer ver 17.61 9.8 1.97 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évacuent évacuer ver 17.61 9.8 0.33 0.27 ind:pre:3p; +évacuer évacuer ver 17.61 9.8 9.66 4.05 inf; +évacuera évacuer ver 17.61 9.8 0.08 0 ind:fut:3s; +évacuerai évacuer ver 17.61 9.8 0 0.07 ind:fut:1s; +évacueraient évacuer ver 17.61 9.8 0 0.2 cnd:pre:3p; +évacuerais évacuer ver 17.61 9.8 0.02 0 cnd:pre:1s;cnd:pre:2s; +évacuerait évacuer ver 17.61 9.8 0.01 0.14 cnd:pre:3s; +évacuerez évacuer ver 17.61 9.8 0.04 0 ind:fut:2p; +évacuerions évacuer ver 17.61 9.8 0 0.07 cnd:pre:1p; +évacuerons évacuer ver 17.61 9.8 0.01 0 ind:fut:1p; +évacueront évacuer ver 17.61 9.8 0.17 0 ind:fut:3p; +évacuez évacuer ver 17.61 9.8 1.1 0.14 imp:pre:2p;ind:pre:2p; +évacuons évacuer ver 17.61 9.8 0.39 0 imp:pre:1p;ind:pre:1p; +évacuèrent évacuer ver 17.61 9.8 0.01 0.07 ind:pas:3p; +évacué évacuer ver m s 17.61 9.8 2.02 1.69 par:pas; +évacuée évacuer ver f s 17.61 9.8 0.47 0.2 par:pas; +évacuées évacuer ver f p 17.61 9.8 0.16 0.14 par:pas; +évacués évacuer ver m p 17.61 9.8 1.05 0.74 par:pas; +évada évader ver 12.8 13.38 0.02 0.07 ind:pas:3s; +évadaient évader ver 12.8 13.38 0 0.07 ind:imp:3p; +évadais évader ver 12.8 13.38 0.04 0.27 ind:imp:1s;ind:imp:2s; +évadait évader ver 12.8 13.38 0.02 0.74 ind:imp:3s; +évadant évader ver 12.8 13.38 0.04 0.27 par:pre; +évade évader ver 12.8 13.38 1.35 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +évadent évader ver 12.8 13.38 0.26 0.07 ind:pre:3p; +évader évader ver 12.8 13.38 5.95 6.69 inf; +évadera évader ver 12.8 13.38 0.19 0 ind:fut:3s; +évaderai évader ver 12.8 13.38 0.05 0 ind:fut:1s; +évaderaient évader ver 12.8 13.38 0 0.14 cnd:pre:3p; +évaderais évader ver 12.8 13.38 0.03 0.2 cnd:pre:1s;cnd:pre:2s; +évaderait évader ver 12.8 13.38 0.03 0.27 cnd:pre:3s; +évaderas évader ver 12.8 13.38 0.01 0.07 ind:fut:2s; +évaderont évader ver 12.8 13.38 0.13 0 ind:fut:3p; +évades évader ver 12.8 13.38 0.1 0.07 ind:pre:2s; +évadez évader ver 12.8 13.38 0.04 0 imp:pre:2p;ind:pre:2p; +évadèrent évader ver 12.8 13.38 0.17 0.07 ind:pas:3p; +évadé évader ver m s 12.8 13.38 3.79 2.3 par:pas; +évadée évader ver f s 12.8 13.38 0.17 0.54 par:pas; +évadées évadé nom f p 1.76 1.08 0.02 0.07 +évadés évadé nom m p 1.76 1.08 0.98 0.61 +évalua évaluer ver 5.75 9.73 0 1.08 ind:pas:3s; +évaluables évaluable adj p 0 0.07 0 0.07 +évaluaient évaluer ver 5.75 9.73 0.02 0.14 ind:imp:3p; +évaluais évaluer ver 5.75 9.73 0.04 0.07 ind:imp:1s; +évaluait évaluer ver 5.75 9.73 0.07 1.28 ind:imp:3s; +évaluant évaluer ver 5.75 9.73 0.09 0.74 par:pre; +évaluateur évaluateur nom m s 0 0.14 0 0.14 +évaluation évaluation nom f s 3.91 1.35 3.37 1.28 +évaluations évaluation nom f p 3.91 1.35 0.54 0.07 +évalue évaluer ver 5.75 9.73 0.75 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évaluent évaluer ver 5.75 9.73 0.07 0.14 ind:pre:3p; +évaluer évaluer ver 5.75 9.73 2.75 3.92 inf; +évaluerez évaluer ver 5.75 9.73 0 0.07 ind:fut:2p; +évalueront évaluer ver 5.75 9.73 0.02 0 ind:fut:3p; +évalues évaluer ver 5.75 9.73 0.14 0.07 ind:pre:2s; +évaluez évaluer ver 5.75 9.73 0.25 0.27 imp:pre:2p;ind:pre:2p; +évaluons évaluer ver 5.75 9.73 0.23 0 imp:pre:1p;ind:pre:1p; +évaluât évaluer ver 5.75 9.73 0 0.07 sub:imp:3s; +évaluèrent évaluer ver 5.75 9.73 0.01 0.07 ind:pas:3p; +évalué évaluer ver m s 5.75 9.73 1.03 0.68 par:pas; +évaluée évaluer ver f s 5.75 9.73 0.14 0 par:pas; +évaluées évaluer ver f p 5.75 9.73 0.07 0.07 par:pas; +évalués évaluer ver m p 5.75 9.73 0.04 0.14 par:pas; +évanescence évanescence nom f s 0 0.27 0 0.14 +évanescences évanescence nom f p 0 0.27 0 0.14 +évanescent évanescent adj m s 0.17 1.49 0.01 0.68 +évanescente évanescent adj f s 0.17 1.49 0.02 0.47 +évanescentes évanescent adj f p 0.17 1.49 0.14 0.2 +évanescents évanescent adj m p 0.17 1.49 0 0.14 +évangile évangile nom m s 1.34 8.24 1.17 6.69 +évangiles évangile nom m p 1.34 8.24 0.18 1.55 +évangéliaire évangéliaire nom m s 0 0.27 0 0.27 +évangélique évangélique adj s 0.22 2.23 0.2 1.69 +évangéliques évangélique adj p 0.22 2.23 0.02 0.54 +évangélisateur évangélisateur adj m s 0.01 0.07 0.01 0 +évangélisation évangélisation nom f s 0.01 0 0.01 0 +évangélisatrices évangélisateur adj f p 0.01 0.07 0 0.07 +évangéliser évangéliser ver 0.26 0.47 0.11 0.34 inf; +évangéliseront évangéliser ver 0.26 0.47 0.01 0 ind:fut:3p; +évangélisons évangéliser ver 0.26 0.47 0 0.07 ind:pre:1p; +évangéliste évangéliste nom m s 1.45 0.88 0.74 0.61 +évangélistes évangéliste nom m p 1.45 0.88 0.7 0.27 +évangélisé évangéliser ver m s 0.26 0.47 0 0.07 par:pas; +évangélisés évangéliser ver m p 0.26 0.47 0.14 0 par:pas; +évanoui évanouir ver m s 18.93 24.93 5.21 2.77 par:pas; +évanouie évanouir ver f s 18.93 24.93 4.79 3.04 par:pas; +évanouies évanouir ver f p 18.93 24.93 0.16 0.27 par:pas; +évanouir évanouir ver 18.93 24.93 4.4 8.24 inf; +évanouira évanouir ver 18.93 24.93 0.11 0.07 ind:fut:3s; +évanouirai évanouir ver 18.93 24.93 0.04 0.07 ind:fut:1s; +évanouirait évanouir ver 18.93 24.93 0.05 0.27 cnd:pre:3s; +évanouirent évanouir ver 18.93 24.93 0.02 0.47 ind:pas:3p; +évanouirez évanouir ver 18.93 24.93 0.14 0 ind:fut:2p; +évanouiront évanouir ver 18.93 24.93 0.05 0 ind:fut:3p; +évanouis évanouir ver m p 18.93 24.93 1.3 1.42 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +évanouissaient évanouir ver 18.93 24.93 0.02 0.95 ind:imp:3p; +évanouissais évanouir ver 18.93 24.93 0.06 0.2 ind:imp:1s;ind:imp:2s; +évanouissait évanouir ver 18.93 24.93 0.09 1.82 ind:imp:3s; +évanouissant évanouir ver 18.93 24.93 0.09 0.34 par:pre; +évanouisse évanouir ver 18.93 24.93 0.18 0.14 sub:pre:1s;sub:pre:3s; +évanouissement évanouissement nom m s 0.83 3.31 0.62 2.91 +évanouissements évanouissement nom m p 0.83 3.31 0.21 0.41 +évanouissent évanouir ver 18.93 24.93 0.65 1.35 ind:pre:3p; +évanouisses évanouir ver 18.93 24.93 0.07 0 sub:pre:2s; +évanouissez évanouir ver 18.93 24.93 0.09 0.07 imp:pre:2p;ind:pre:2p; +évanouit évanouir ver 18.93 24.93 1.41 3.38 ind:pre:3s;ind:pas:3s; +évanouît évanouir ver 18.93 24.93 0 0.07 sub:imp:3s; +évapora évaporer ver 2.52 3.85 0 0.14 ind:pas:3s; +évaporaient évaporer ver 2.52 3.85 0.01 0.27 ind:imp:3p; +évaporais évaporer ver 2.52 3.85 0.01 0.07 ind:imp:1s; +évaporait évaporer ver 2.52 3.85 0.01 0.54 ind:imp:3s; +évaporateur évaporateur nom m s 0.17 0 0.14 0 +évaporateurs évaporateur nom m p 0.17 0 0.02 0 +évaporation évaporation nom f s 0.38 0.88 0.38 0.88 +évapore évaporer ver 2.52 3.85 0.56 0.68 ind:pre:1s;ind:pre:3s; +évaporent évaporer ver 2.52 3.85 0.58 0.27 ind:pre:3p; +évaporer évaporer ver 2.52 3.85 0.64 0.74 inf; +évaporerait évaporer ver 2.52 3.85 0 0.07 cnd:pre:3s; +évaporeront évaporer ver 2.52 3.85 0 0.07 ind:fut:3p; +évaporé évaporer ver m s 2.52 3.85 0.54 0.68 par:pas; +évaporée évaporé adj f s 0.47 1.35 0.17 0.74 +évaporées évaporé adj f p 0.47 1.35 0.01 0.2 +évaporés évaporer ver m p 2.52 3.85 0.17 0.34 par:pas; +évasaient évaser ver 0.04 2.03 0 0.07 ind:imp:3p; +évasait évaser ver 0.04 2.03 0 0.14 ind:imp:3s; +évasant évaser ver 0.04 2.03 0 0.61 par:pre; +évase évaser ver 0.04 2.03 0.01 0.47 ind:pre:3s; +évasement évasement nom m s 0 0.07 0 0.07 +évasent évaser ver 0.04 2.03 0 0.14 ind:pre:3p; +évaser évaser ver 0.04 2.03 0 0.14 inf; +évasif évasif adj m s 0.85 5.14 0.35 3.31 +évasifs évasif adj m p 0.85 5.14 0.05 0.41 +évasion évasion nom f s 9.69 10.07 9.48 9.12 +évasions évasion nom f p 9.69 10.07 0.21 0.95 +évasive évasif adj f s 0.85 5.14 0.25 0.81 +évasivement évasivement adv 0.01 1.08 0.01 1.08 +évasives évasif adj f p 0.85 5.14 0.2 0.61 +évasé évasé adj m s 0.03 0.74 0 0.47 +évasée évaser ver f s 0.04 2.03 0.02 0.14 par:pas; +évasées évaser ver f p 0.04 2.03 0 0.14 par:pas; +évasés évasé adj m p 0.03 0.74 0.01 0 +éveil éveil nom m s 1.65 6.42 1.64 6.22 +éveilla éveiller ver 17.28 55.27 0.16 5.61 ind:pas:3s; +éveillai éveiller ver 17.28 55.27 0.01 1.01 ind:pas:1s; +éveillaient éveiller ver 17.28 55.27 0.01 1.76 ind:imp:3p; +éveillais éveiller ver 17.28 55.27 0.24 0.95 ind:imp:1s;ind:imp:2s; +éveillait éveiller ver 17.28 55.27 0.27 6.69 ind:imp:3s; +éveillant éveiller ver 17.28 55.27 0.07 2.97 par:pre; +éveille éveiller ver 17.28 55.27 2.49 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éveillent éveiller ver 17.28 55.27 0.33 1.96 ind:pre:3p; +éveiller éveiller ver 17.28 55.27 4.61 12.16 inf; +éveillera éveiller ver 17.28 55.27 0.39 0.07 ind:fut:3s; +éveillerai éveiller ver 17.28 55.27 0.13 0.34 ind:fut:1s; +éveilleraient éveiller ver 17.28 55.27 0 0.07 cnd:pre:3p; +éveillerait éveiller ver 17.28 55.27 0.24 0.27 cnd:pre:3s; +éveilleras éveiller ver 17.28 55.27 0.02 0 ind:fut:2s; +éveillerez éveiller ver 17.28 55.27 0.02 0.07 ind:fut:2p; +éveilleront éveiller ver 17.28 55.27 0.05 0.07 ind:fut:3p; +éveilles éveiller ver 17.28 55.27 0.07 0 ind:pre:2s; +éveilleur éveilleur nom m s 0 0.14 0 0.14 +éveillez éveiller ver 17.28 55.27 0.32 0.27 imp:pre:2p;ind:pre:2p; +éveillions éveiller ver 17.28 55.27 0 0.2 ind:imp:1p; +éveillons éveiller ver 17.28 55.27 0.02 0.07 imp:pre:1p;ind:pre:1p; +éveillât éveiller ver 17.28 55.27 0 0.2 sub:imp:3s; +éveillèrent éveiller ver 17.28 55.27 0.14 0.88 ind:pas:3p; +éveillé éveiller ver m s 17.28 55.27 4.7 7.84 par:pas; +éveillée éveiller ver f s 17.28 55.27 2.12 2.5 par:pas; +éveillées éveillé adj f p 2.78 8.92 0.12 0.54 +éveillés éveiller ver m p 17.28 55.27 0.81 1.15 par:pas; +éveils éveil nom m p 1.65 6.42 0.01 0.2 +éveinage éveinage nom m s 0.01 0 0.01 0 +évent évent nom m s 0.15 0 0.11 0 +éventa éventer ver 0.6 4.26 0 0.2 ind:pas:3s; +éventai éventer ver 0.6 4.26 0 0.07 ind:pas:1s; +éventaient éventer ver 0.6 4.26 0.01 0.07 ind:imp:3p; +éventail éventail nom m s 2.96 13.99 2.82 10.88 +éventails éventail nom m p 2.96 13.99 0.14 3.11 +éventaire éventaire nom m s 0.25 2.16 0.25 1.22 +éventaires éventaire nom m p 0.25 2.16 0 0.95 +éventait éventer ver 0.6 4.26 0.01 0.88 ind:imp:3s; +éventant éventer ver 0.6 4.26 0 0.54 par:pre; +évente éventer ver 0.6 4.26 0.01 0.74 ind:pre:1s;ind:pre:3s; +éventent éventer ver 0.6 4.26 0.01 0.07 ind:pre:3p; +éventer éventer ver 0.6 4.26 0.07 0.88 inf; +éventerai éventer ver 0.6 4.26 0 0.07 ind:fut:1s; +éventez éventer ver 0.6 4.26 0.01 0 imp:pre:2p; +éventons éventer ver 0.6 4.26 0.01 0 imp:pre:1p; +éventra éventrer ver 2.81 5.2 0 0.07 ind:pas:3s; +éventraient éventrer ver 2.81 5.2 0.01 0.14 ind:imp:3p; +éventrait éventrer ver 2.81 5.2 0.16 0.47 ind:imp:3s; +éventrant éventrer ver 2.81 5.2 0.01 0.41 par:pre; +éventration éventration nom f s 0.02 0.14 0.02 0.14 +éventre éventrer ver 2.81 5.2 0.47 0.47 ind:pre:1s;ind:pre:3s; +éventrement éventrement nom m s 0 0.07 0 0.07 +éventrent éventrer ver 2.81 5.2 0.01 0.14 ind:pre:3p; +éventrer éventrer ver 2.81 5.2 0.96 1.01 inf; +éventrerai éventrer ver 2.81 5.2 0.01 0 ind:fut:1s; +éventrerait éventrer ver 2.81 5.2 0 0.07 cnd:pre:3s; +éventrerez éventrer ver 2.81 5.2 0.01 0 ind:fut:2p; +éventres éventrer ver 2.81 5.2 0 0.07 ind:pre:2s; +éventreur éventreur nom m s 0.5 0.95 0.36 0.68 +éventreurs éventreur nom m p 0.5 0.95 0.14 0.27 +éventrez éventrer ver 2.81 5.2 0.14 0 imp:pre:2p; +éventrions éventrer ver 2.81 5.2 0 0.07 ind:imp:1p; +éventrât éventrer ver 2.81 5.2 0.14 0 sub:imp:3s; +éventré éventrer ver m s 2.81 5.2 0.58 1.69 par:pas; +éventrée éventrer ver f s 2.81 5.2 0.25 0.07 par:pas; +éventrées éventré adj f p 0.35 5 0.14 1.28 +éventrés éventrer ver m p 2.81 5.2 0.05 0.47 par:pas; +évents évent nom m p 0.15 0 0.04 0 +éventualité éventualité nom f s 2.47 6.15 2 5.2 +éventualités éventualité nom f p 2.47 6.15 0.47 0.95 +éventuel éventuel adj m s 4.92 13.18 1.38 3.92 +éventuelle éventuel adj f s 4.92 13.18 1.3 5.07 +éventuellement éventuellement adv 2.49 5.81 2.49 5.81 +éventuelles éventuel adj f p 4.92 13.18 1.17 1.55 +éventuels éventuel adj m p 4.92 13.18 1.07 2.64 +éventé éventé adj m s 0.35 1.35 0.18 0.41 +éventée éventer ver f s 0.6 4.26 0.28 0.27 par:pas; +éventées éventer ver f p 0.6 4.26 0.01 0.07 par:pas; +éventés éventé adj m p 0.35 1.35 0.14 0.2 +évergète évergète adj s 0 0.07 0 0.07 +éversé éversé adj m s 0 0.14 0 0.07 +éversées éversé adj f p 0 0.14 0 0.07 +évertua évertuer ver 0.22 2.97 0 0.07 ind:pas:3s; +évertuaient évertuer ver 0.22 2.97 0.01 0.41 ind:imp:3p; +évertuais évertuer ver 0.22 2.97 0 0.14 ind:imp:1s; +évertuait évertuer ver 0.22 2.97 0 1.15 ind:imp:3s; +évertuant évertuer ver 0.22 2.97 0.02 0.14 par:pre; +évertue évertuer ver 0.22 2.97 0.1 0.47 ind:pre:1s;ind:pre:3s; +évertuent évertuer ver 0.22 2.97 0.04 0.14 ind:pre:3p; +évertuer évertuer ver 0.22 2.97 0.01 0.14 inf; +évertué évertuer ver m s 0.22 2.97 0.04 0.34 par:pas; +éviction éviction nom f s 0.05 0.41 0.05 0.41 +évida évider ver 0.25 1.22 0.01 0.07 ind:pas:3s; +évidaient évider ver 0.25 1.22 0 0.07 ind:imp:3p; +évide évider ver 0.25 1.22 0.01 0.2 ind:pre:1s;ind:pre:3s; +évidement évidement nom m s 0.21 0.07 0.21 0.07 +évidemment évidemment adv 28.23 88.11 28.23 88.11 +évidence évidence nom f s 11.47 39.93 11.14 37.77 +évidences évidence nom f p 11.47 39.93 0.33 2.16 +évident évident adj m s 32.59 33.58 28.75 20.14 +évidente évident adj f s 32.59 33.58 2.27 9.32 +évidentes évident adj f p 32.59 33.58 0.84 2.43 +évidents évident adj m p 32.59 33.58 0.72 1.69 +évider évider ver 0.25 1.22 0.01 0.2 inf; +évidé évidé adj m s 0.04 0.47 0.02 0.34 +évidée évidé adj f s 0.04 0.47 0.02 0.14 +évidées évider ver f p 0.25 1.22 0.01 0.07 par:pas; +évidés évider ver m p 0.25 1.22 0 0.07 par:pas; +évier évier nom m s 3.87 12.16 3.81 11.35 +éviers évier nom m p 3.87 12.16 0.05 0.81 +évince évincer ver 1.28 0.61 0.03 0.07 ind:pre:1s;ind:pre:3s; +évincer évincer ver 1.28 0.61 0.58 0.27 inf; +évincerait évincer ver 1.28 0.61 0 0.07 cnd:pre:3s; +évincez évincer ver 1.28 0.61 0.01 0 ind:pre:2p; +évincé évincer ver m s 1.28 0.61 0.45 0.14 par:pas; +évincée évincer ver f s 1.28 0.61 0.04 0 par:pas; +évincés évincer ver m p 1.28 0.61 0.13 0 par:pas; +évinçai évincer ver 1.28 0.61 0 0.07 ind:pas:1s; +évinçant évincer ver 1.28 0.61 0.03 0 par:pre; +éviscère éviscérer ver 0.5 0.14 0.04 0.07 ind:pre:1s;ind:pre:3s; +éviscèrent éviscérer ver 0.5 0.14 0.02 0 ind:pre:3p; +éviscérant éviscérer ver 0.5 0.14 0.03 0 par:pre; +éviscération éviscération nom f s 0.22 0 0.22 0 +éviscérer éviscérer ver 0.5 0.14 0.26 0 inf;; +éviscérée éviscérer ver f s 0.5 0.14 0.04 0.07 par:pas; +éviscérés éviscérer ver m p 0.5 0.14 0.13 0 par:pas; +évita éviter ver 87.47 110.47 0.03 5 ind:pas:3s; +évitable évitable adj s 0.21 0.27 0.2 0.14 +évitables évitable adj f p 0.21 0.27 0.01 0.14 +évitai éviter ver 87.47 110.47 0.01 0.74 ind:pas:1s; +évitaient éviter ver 87.47 110.47 0.06 2.23 ind:imp:3p; +évitais éviter ver 87.47 110.47 0.7 2.03 ind:imp:1s;ind:imp:2s; +évitait éviter ver 87.47 110.47 0.74 7.57 ind:imp:3s; +évitant éviter ver 87.47 110.47 1.69 10.47 par:pre; +évite éviter ver 87.47 110.47 10.7 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évitement évitement nom m s 0.18 0 0.18 0 +évitent éviter ver 87.47 110.47 1.13 1.22 ind:pre:3p; +éviter éviter ver 87.47 110.47 53.71 60.07 inf;; +évitera éviter ver 87.47 110.47 2.09 0.95 ind:fut:3s; +éviterai éviter ver 87.47 110.47 0.24 0.34 ind:fut:1s; +éviteraient éviter ver 87.47 110.47 0 0.41 cnd:pre:3p; +éviterais éviter ver 87.47 110.47 0.97 0.41 cnd:pre:1s;cnd:pre:2s; +éviterait éviter ver 87.47 110.47 0.77 1.62 cnd:pre:3s; +éviteras éviter ver 87.47 110.47 0.45 0 ind:fut:2s; +éviterez éviter ver 87.47 110.47 0.37 0.2 ind:fut:2p; +éviteriez éviter ver 87.47 110.47 0.07 0 cnd:pre:2p; +éviterons éviter ver 87.47 110.47 0.24 0.34 ind:fut:1p; +éviteront éviter ver 87.47 110.47 0.22 0.14 ind:fut:3p; +évites éviter ver 87.47 110.47 2.48 0.07 ind:pre:2s; +évitez éviter ver 87.47 110.47 3.31 0.68 imp:pre:2p;ind:pre:2p; +évitiez éviter ver 87.47 110.47 0.25 0.14 ind:imp:2p; +évitions éviter ver 87.47 110.47 0.12 0.47 ind:imp:1p; +évitons éviter ver 87.47 110.47 1.3 0.27 imp:pre:1p;ind:pre:1p; +évitâmes éviter ver 87.47 110.47 0 0.2 ind:pas:1p; +évitât éviter ver 87.47 110.47 0 0.41 sub:imp:3s; +évitèrent éviter ver 87.47 110.47 0.02 0.88 ind:pas:3p; +évité éviter ver m s 87.47 110.47 4.8 5.88 par:pas; +évitée éviter ver f s 87.47 110.47 0.57 0.81 par:pas; +évitées éviter ver f p 87.47 110.47 0.24 0.07 par:pas; +évités éviter ver m p 87.47 110.47 0.18 0.54 par:pas; +évocateur évocateur adj m s 0.15 1.49 0.13 0.74 +évocateurs évocateur adj m p 0.15 1.49 0.01 0.27 +évocation évocation nom f s 0.55 8.72 0.55 7.3 +évocations évocation nom f p 0.55 8.72 0 1.42 +évocatrice évocateur adj f s 0.15 1.49 0.01 0.2 +évocatrices évocateur adj f p 0.15 1.49 0 0.27 +évolua évoluer ver 10.6 11.69 0.05 0.27 ind:pas:3s; +évoluaient évoluer ver 10.6 11.69 0.05 1.08 ind:imp:3p; +évoluais évoluer ver 10.6 11.69 0.01 0.07 ind:imp:1s; +évoluait évoluer ver 10.6 11.69 0.29 1.62 ind:imp:3s; +évoluant évoluer ver 10.6 11.69 0.25 0.41 par:pre; +évolue évoluer ver 10.6 11.69 1.73 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évoluent évoluer ver 10.6 11.69 1.13 0.81 ind:pre:3p; +évoluer évoluer ver 10.6 11.69 2.9 3.18 inf; +évoluera évoluer ver 10.6 11.69 0.05 0 ind:fut:3s; +évoluerait évoluer ver 10.6 11.69 0.04 0.14 cnd:pre:3s; +évolueront évoluer ver 10.6 11.69 0.02 0.14 ind:fut:3p; +évoluez évoluer ver 10.6 11.69 0.06 0 ind:pre:2p; +évoluons évoluer ver 10.6 11.69 0.21 0 imp:pre:1p;ind:pre:1p; +évolutif évolutif adj m s 0.47 0.2 0.08 0.07 +évolution évolution nom f s 8.09 14.19 7.87 11.69 +évolutionniste évolutionniste adj f s 0.15 0 0.15 0 +évolutions évolution nom f p 8.09 14.19 0.23 2.5 +évolutive évolutif adj f s 0.47 0.2 0.38 0.07 +évolutives évolutif adj f p 0.47 0.2 0.01 0.07 +évoluèrent évoluer ver 10.6 11.69 0.28 0.07 ind:pas:3p; +évolué évoluer ver m s 10.6 11.69 3.29 2.09 par:pas; +évoluée évolué adj f s 1.69 1.28 0.73 0.2 +évoluées évolué adj f p 1.69 1.28 0.09 0.2 +évolués évolué adj m p 1.69 1.28 0.38 0.41 +évoqua évoquer ver 11.57 73.51 0.02 3.51 ind:pas:3s; +évoquai évoquer ver 11.57 73.51 0 0.68 ind:pas:1s; +évoquaient évoquer ver 11.57 73.51 0.01 5.27 ind:imp:3p; +évoquais évoquer ver 11.57 73.51 0.14 2.03 ind:imp:1s;ind:imp:2s; +évoquait évoquer ver 11.57 73.51 0.34 13.51 ind:imp:3s; +évoquant évoquer ver 11.57 73.51 0.44 7.84 par:pre; +évoque évoquer ver 11.57 73.51 3.68 11.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évoquent évoquer ver 11.57 73.51 0.71 2.57 ind:pre:3p; +évoquer évoquer ver 11.57 73.51 2.15 15.88 inf; +évoquera évoquer ver 11.57 73.51 0.1 0.54 ind:fut:3s; +évoquerai évoquer ver 11.57 73.51 0.04 0.07 ind:fut:1s; +évoqueraient évoquer ver 11.57 73.51 0 0.07 cnd:pre:3p; +évoquerait évoquer ver 11.57 73.51 0.04 0.47 cnd:pre:3s; +évoquerez évoquer ver 11.57 73.51 0.01 0 ind:fut:2p; +évoquerons évoquer ver 11.57 73.51 0.02 0.07 ind:fut:1p; +évoqueront évoquer ver 11.57 73.51 0.01 0.14 ind:fut:3p; +évoques évoquer ver 11.57 73.51 0.04 0.14 ind:pre:2s; +évoquez évoquer ver 11.57 73.51 0.56 0.07 imp:pre:2p;ind:pre:2p; +évoquiez évoquer ver 11.57 73.51 0.28 0 ind:imp:2p; +évoquions évoquer ver 11.57 73.51 0.17 0.34 ind:imp:1p; +évoquons évoquer ver 11.57 73.51 0.08 0.41 imp:pre:1p;ind:pre:1p; +évoquâmes évoquer ver 11.57 73.51 0 0.14 ind:pas:1p; +évoquât évoquer ver 11.57 73.51 0 0.07 sub:imp:3s; +évoquèrent évoquer ver 11.57 73.51 0.1 0.61 ind:pas:3p; +évoqué évoquer ver m s 11.57 73.51 2.01 5 par:pas; +évoquée évoquer ver f s 11.57 73.51 0.52 0.54 par:pas; +évoquées évoquer ver f p 11.57 73.51 0.03 0.41 par:pas; +évoqués évoquer ver m p 11.57 73.51 0.06 1.28 par:pas; +évènement évènement nom m s 6.59 0 3.27 0 +évènementielle évènementiel adj f s 0.01 0 0.01 0 +évènements évènement nom m p 6.59 0 3.32 0 +événement événement nom m s 28.57 84.59 13.61 26.35 +événementiel événementiel adj m s 0.04 0 0.04 0 +événements événement nom m p 28.57 84.59 14.96 58.24 +évêché évêché nom m s 0.14 3.85 0.14 3.72 +évêchés évêché nom m p 0.14 3.85 0 0.14 +évêque évêque nom m s 5.7 19.32 4.7 14.53 +évêques évêque nom m p 5.7 19.32 1 4.8 +éwé éwé adj m s 0 0.2 0 0.07 +éwés éwé adj m p 0 0.2 0 0.14 +êtes être aux 8074.24 6501.82 260.22 51.89 ind:pre:2p; +être être aux 8074.24 6501.82 725.09 685.47 inf; +être_là être_là nom m 0.14 0 0.14 0 +êtres être nom m p 100.69 122.57 21.91 45.2 +île île nom f s 58.35 108.24 50.2 83.58 +îles île nom f p 58.35 108.24 8.15 24.66 +îlette îlette nom f s 0 0.07 0 0.07 +îlot îlot nom m s 1.2 10.68 0.42 6.49 +îlotier îlotier nom m s 0.04 0 0.04 0 +îlots îlot nom m p 1.2 10.68 0.78 4.19 +ô ô ono 16.08 33.11 16.08 33.11 +ôta ôter ver 16.81 42.03 0.46 8.04 ind:pas:3s; +ôtai ôter ver 16.81 42.03 0 0.68 ind:pas:1s; +ôtaient ôter ver 16.81 42.03 0.01 1.08 ind:imp:3p; +ôtais ôter ver 16.81 42.03 0.03 0.68 ind:imp:1s;ind:imp:2s; +ôtait ôter ver 16.81 42.03 0.16 4.53 ind:imp:3s; +ôtant ôter ver 16.81 42.03 0.43 2.5 par:pre; +ôte ôter ver 16.81 42.03 3.05 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ôtent ôter ver 16.81 42.03 0.29 0.41 ind:pre:3p; +ôter ôter ver 16.81 42.03 5.57 10 inf;; +ôtera ôter ver 16.81 42.03 0.26 0.34 ind:fut:3s; +ôterai ôter ver 16.81 42.03 0.09 0.07 ind:fut:1s; +ôterais ôter ver 16.81 42.03 0.14 0 cnd:pre:1s;cnd:pre:2s; +ôterait ôter ver 16.81 42.03 0.03 0.54 cnd:pre:3s; +ôteras ôter ver 16.81 42.03 0.17 0.14 ind:fut:2s; +ôterez ôter ver 16.81 42.03 0.17 0.2 ind:fut:2p; +ôterions ôter ver 16.81 42.03 0 0.07 cnd:pre:1p; +ôtes ôter ver 16.81 42.03 0.65 0 ind:pre:2s; +ôtez ôter ver 16.81 42.03 1.3 0.81 imp:pre:2p;ind:pre:2p; +ôtiez ôter ver 16.81 42.03 0.17 0 ind:imp:2p; +ôtons ôter ver 16.81 42.03 0.02 0.07 ind:pre:1p; +ôtât ôter ver 16.81 42.03 0 0.14 sub:imp:3s; +ôtèrent ôter ver 16.81 42.03 0 0.27 ind:pas:3p; +ôté ôter ver m s 16.81 42.03 3.18 5.47 par:pas; +ôtée ôter ver f s 16.81 42.03 0.42 0.54 par:pas; +ôtées ôter ver f p 16.81 42.03 0.16 0.07 par:pas; +ôtés ôter ver m p 16.81 42.03 0.04 0.14 par:pas; diff --git a/dictionnaires/lexique_it.txt b/dictionnaires/lexique_it.txt new file mode 100644 index 0000000..81a2769 --- /dev/null +++ b/dictionnaires/lexique_it.txt @@ -0,0 +1,167966 @@ +II II sw +III III sw +a a pre +a_causa a_causa sw +a_causa_di a_causa di_sw +a_condizione_che a_condizione_che sw +a_confronto a_confronto sw +a_cui a_cui sw +abachi abaco nom +abaco abaco nom +abacà abacà nom +abate abate nom +abati abate nom +abatini abatino nom +abatino abatino nom +abbacchi abbacchiare ver +abbacchiare abbacchiare ver +abbacchiato abbacchiato adj +abbacchiatura abbacchiatura nom +abbacchio abbacchio nom +abbacinamento abbacinamento nom +abbacinante abbacinare ver +abbacinanti abbacinare ver +abbacinare abbacinare ver +abbacinati abbacinare ver +abbacinato abbacinare ver +abbagli abbaglio nom +abbaglia abbagliare ver +abbagliamenti abbagliamento nom +abbagliamento abbagliamento nom +abbagliando abbagliare ver +abbagliano abbagliare ver +abbagliante abbagliante adj +abbaglianti abbagliante adj +abbagliare abbagliare ver +abbagliarono abbagliare ver +abbagliata abbagliare ver +abbagliate abbagliare ver +abbagliati abbagliare ver +abbagliato abbagliare ver +abbagliava abbagliare ver +abbaglio abbaglio nom +abbai abbaio nom +abbaia abbaiare ver +abbaiamento abbaiamento nom +abbaiamo abbaiare ver +abbaiando abbaiare ver +abbaiano abbaiare ver +abbaiante abbaiare ver +abbaianti abbaiare ver +abbaiare abbaiare ver +abbaiati abbaiare ver +abbaiato abbaiare ver +abbaiava abbaiare ver +abbaiavano abbaiare ver +abbaierà abbaiare ver +abbaini abbaino nom +abbaino abbaino nom +abbaio abbaio nom +abballa abballare ver +abballo abballare ver +abbandona abbandonare ver +abbandonai abbandonare ver +abbandonami abbandonare ver +abbandonammo abbandonare ver +abbandonando abbandonare ver +abbandonandola abbandonare ver +abbandonandole abbandonare ver +abbandonandoli abbandonare ver +abbandonandolo abbandonare ver +abbandonandone abbandonare ver +abbandonandosi abbandonare ver +abbandonandovi abbandonare ver +abbandonano abbandonare ver +abbandonar abbandonare ver +abbandonarci abbandonare ver +abbandonare abbandonare ver +abbandonarla abbandonare ver +abbandonarle abbandonare ver +abbandonarli abbandonare ver +abbandonarlo abbandonare ver +abbandonarmi abbandonare ver +abbandonarne abbandonare ver +abbandonarono abbandonare ver +abbandonarsi abbandonare ver +abbandonarti abbandonare ver +abbandonarvi abbandonare ver +abbandonasse abbandonare ver +abbandonassero abbandonare ver +abbandonassi abbandonare ver +abbandonassimo abbandonare ver +abbandonaste abbandonare ver +abbandonasti abbandonare ver +abbandonata abbandonare ver +abbandonate abbandonare ver +abbandonatele abbandonare ver +abbandonatelo abbandonare ver +abbandonati abbandonare ver +abbandonato abbandonare ver +abbandonava abbandonare ver +abbandonavano abbandonare ver +abbandonavo abbandonare ver +abbandonerai abbandonare ver +abbandoneranno abbandonare ver +abbandonerebbe abbandonare ver +abbandonerebbero abbandonare ver +abbandonerei abbandonare ver +abbandoneremo abbandonare ver +abbandonerete abbandonare ver +abbandonerà abbandonare ver +abbandonerò abbandonare ver +abbandoni abbandono nom +abbandoniamo abbandonare ver +abbandoniamoci abbandonare ver +abbandoniate abbandonare ver +abbandonino abbandonare ver +abbandono abbandono nom +abbandonò abbandonare ver +abbarbagliati abbarbagliare ver +abbarbica abbarbicare ver +abbarbicandosi abbarbicare ver +abbarbicano abbarbicare ver +abbarbicare abbarbicare ver +abbarbicarsi abbarbicare ver +abbarbicata abbarbicare ver +abbarbicate abbarbicare ver +abbarbicati abbarbicare ver +abbarbicato abbarbicare ver +abbassa abbassare ver +abbassabile abbassabile adj +abbassabili abbassabile adj +abbassai abbassare ver +abbassalingua abbassalingua nom +abbassamenti abbassamento nom +abbassamento abbassamento nom +abbassando abbassare ver +abbassandola abbassare ver +abbassandoli abbassare ver +abbassandolo abbassare ver +abbassandone abbassare ver +abbassandosi abbassare ver +abbassano abbassare ver +abbassante abbassare ver +abbassanti abbassare ver +abbassarci abbassare ver +abbassare abbassare ver +abbassargli abbassare ver +abbassarla abbassare ver +abbassarle abbassare ver +abbassarli abbassare ver +abbassarlo abbassare ver +abbassarmi abbassare ver +abbassarne abbassare ver +abbassarono abbassare ver +abbassarsi abbassare ver +abbassarti abbassare ver +abbassasse abbassare ver +abbassassero abbassare ver +abbassata abbassare ver +abbassate abbassare ver +abbassati abbassare ver +abbassato abbassare ver +abbassava abbassare ver +abbassavano abbassare ver +abbasseranno abbassare ver +abbasserebbe abbassare ver +abbasserebbero abbassare ver +abbasserei abbassare ver +abbasserà abbassare ver +abbasserò abbassare ver +abbassi abbassare ver +abbassiamo abbassare ver +abbassiamoci abbassare ver +abbassino abbassare ver +abbasso abbassare ver +abbassò abbassare ver +abbastanza abbastanza adv_sup +abbatta abbattere ver +abbattano abbattere ver +abbatte abbattere ver +abbattei abbattere ver +abbattendo abbattere ver +abbattendola abbattere ver +abbattendole abbattere ver +abbattendoli abbattere ver +abbattendolo abbattere ver +abbattendone abbattere ver +abbattendosi abbattere ver +abbattente abbattere ver +abbatteranno abbattere ver +abbatterci abbattere ver +abbattere abbattere ver +abbatterebbe abbattere ver +abbatteremo abbattere ver +abbatterla abbattere ver +abbatterle abbattere ver +abbatterli abbattere ver +abbatterlo abbattere ver +abbattermi abbattere ver +abbatterne abbattere ver +abbatterono abbattere ver +abbattersi abbattere ver +abbatterti abbattere ver +abbatterà abbattere ver +abbattesse abbattere ver +abbattessero abbattere ver +abbattete abbattere ver +abbatteva abbattere ver +abbattevano abbattere ver +abbatti abbattere ver +abbattiamo abbattere ver +abbattiamoci abbattere ver +abbattimenti abbattimento nom +abbattimento abbattimento nom +abbattitore abbattitore adj +abbattitori abbattitore nom +abbatto abbattere ver +abbattono abbattere ver +abbattuta abbattere ver +abbattute abbattere ver +abbattuti abbattere ver +abbattuto abbattere ver +abbazia abbazia nom +abbaziale abbaziale adj +abbaziali abbaziale adj +abbazie abbazia nom +abbecedario abbecedario nom +abbellendo abbellire ver +abbellendola abbellire ver +abbellendole abbellire ver +abbellendolo abbellire ver +abbellendosi abbellire ver +abbelliamo abbellire ver +abbellimenti abbellimento nom +abbellimento abbellimento nom +abbellire abbellire ver +abbellirla abbellire ver +abbellirli abbellire ver +abbellirlo abbellire ver +abbellirne abbellire ver +abbellirono abbellire ver +abbellirsi abbellire ver +abbellirà abbellire ver +abbellisce abbellire ver +abbellisci abbellire ver +abbellisco abbellire ver +abbelliscono abbellire ver +abbellissero abbellire ver +abbellita abbellire ver +abbellite abbellire ver +abbelliti abbellire ver +abbellito abbellire ver +abbelliva abbellire ver +abbellivano abbellire ver +abbellì abbellire ver +abbevera abbeverare ver +abbeveraggi abbeveraggio nom +abbeveraggio abbeveraggio nom +abbeverando abbeverare ver +abbeverandosi abbeverare ver +abbeverano abbeverare ver +abbeverare abbeverare ver +abbeverarli abbeverare ver +abbeverarlo abbeverare ver +abbeverarono abbeverare ver +abbeverarsi abbeverare ver +abbeverata abbeverata nom +abbeverate abbeverata nom +abbeverati abbeverare ver +abbeverato abbeverare ver +abbeveratoi abbeveratoio nom +abbeveratoio abbeveratoio nom +abbeverava abbeverare ver +abbeveravano abbeverare ver +abbevereranno abbeverare ver +abbeverino abbeverare ver +abbeverò abbeverare ver +abbi avere ver +abbia avere ver_sup +abbiamo avere ver_sup +abbiano avere ver_sup +abbiate avere ver +abbiatene avere ver +abbiatesi avere ver +abbiccì abbiccì nom +abbiente abbiente adj +abbienti abbiente adj +abbiglia abbigliare ver +abbigliamenti abbigliamento nom +abbigliamento abbigliamento nom +abbigliandosi abbigliare ver +abbigliano abbigliare ver +abbigliare abbigliare ver +abbigliarsi abbigliare ver +abbigliata abbigliare ver +abbigliate abbigliare ver +abbigliati abbigliare ver +abbigliato abbigliare ver +abbigliava abbigliare ver +abbigliò abbigliare ver +abbina abbinare ver +abbinamenti abbinamento nom +abbinamento abbinamento nom +abbinando abbinare ver +abbinandogli abbinare ver +abbinandola abbinare ver +abbinandole abbinare ver +abbinandoli abbinare ver +abbinandolo abbinare ver +abbinandovi abbinare ver +abbinano abbinare ver +abbinante abbinare ver +abbinanti abbinare ver +abbinarci abbinare ver +abbinare abbinare ver +abbinarla abbinare ver +abbinarle abbinare ver +abbinarli abbinare ver +abbinarlo abbinare ver +abbinarono abbinare ver +abbinarsi abbinare ver +abbinasse abbinare ver +abbinata abbinare ver +abbinate abbinare ver +abbinati abbinare ver +abbinato abbinare ver +abbinava abbinare ver +abbinavano abbinare ver +abbindolanti abbindolare ver +abbindolare abbindolare ver +abbindolata abbindolare ver +abbindolati abbindolare ver +abbindolato abbindolare ver +abbindolò abbindolare ver +abbine avere ver +abbineranno abbinare ver +abbinerei abbinare ver +abbinerà abbinare ver +abbini abbinare ver +abbiniamo abbinare ver +abbinino abbinare ver +abbino abbinare ver +abbinò abbinare ver +abbisciare abbisciare ver +abbisi avere ver +abbisogna abbisognare ver +abbisognando abbisognare ver +abbisognano abbisognare ver +abbisognare abbisognare ver +abbisognasse abbisognare ver +abbisognava abbisognare ver +abbisognavano abbisognare ver +abbisognerebbe abbisognare ver +abbisognerà abbisognare ver +abbisogni abbisognare ver +abbisognino abbisognare ver +abbisogno abbisognare ver +abbocca abboccare ver +abboccamenti abboccamento nom +abboccamento abboccamento nom +abboccando abboccare ver +abboccano abboccare ver +abboccante abboccare ver +abboccare abboccare ver +abboccarono abboccare ver +abboccata abboccare ver +abboccato abboccare ver +abboccava abboccare ver +abboccavano abboccare ver +abboccherà abboccare ver +abbocchi abboccare ver +abbocco abboccare ver +abboccò abboccare ver +abbona abbonare ver +abbonamenti abbonamento nom +abbonamento abbonamento nom +abbonando abbonare ver +abbonandosi abbonare ver +abbonano abbonare ver +abbonante abbonare ver +abbonanti abbonare ver +abbonare abbonare ver +abbonarmi abbonare ver +abbonarono abbonare ver +abbonarsi abbonare ver +abbonata abbonare ver +abbonate abbonare ver +abbonati abbonato nom +abbonato abbonare ver +abbonda abbondare ver +abbondando abbondare ver +abbondandolo abbondare ver +abbondano abbondare ver +abbondante abbondante adj +abbondantemente abbondantemente adv +abbondanti abbondante adj +abbondanza abbondanza nom +abbondanze abbondanza nom +abbondare abbondare ver +abbondarono abbondare ver +abbondassero abbondare ver +abbondate abbondare ver +abbondati abbondare ver +abbondato abbondare ver +abbondava abbondare ver +abbondavano abbondare ver +abbonderanno abbondare ver +abbonderebbero abbondare ver +abbondi abbondare ver +abbondiamo abbondare ver +abbondino abbondare ver +abbondo abbondare ver +abbondò abbondare ver +abboni abbonare ver +abbonire abbonire ver +abbonò abbonare ver +abborda abbordare ver +abbordabile abbordabile adj +abbordabili abbordabile adj +abbordaggi abbordaggio nom +abbordaggio abbordaggio nom +abbordando abbordare ver +abbordano abbordare ver +abbordare abbordare ver +abbordarla abbordare ver +abbordarle abbordare ver +abbordarlo abbordare ver +abbordarono abbordare ver +abbordata abbordare ver +abbordate abbordare ver +abbordati abbordare ver +abbordato abbordare ver +abbordava abbordare ver +abbordavano abbordare ver +abbordi abbordo nom +abbordo abbordo nom +abbordò abbordare ver +abborracciata abborracciare ver +abborracciate abborracciare ver +abborracciati abborracciare ver +abborracciato abborracciare ver +abbotta abbottare ver +abbotti abbottare ver +abbotto abbottare ver +abbottonandosi abbottonare ver +abbottonare abbottonare ver +abbottonarsi abbottonare ver +abbottonata abbottonare ver +abbottonate abbottonare ver +abbottonati abbottonare ver +abbottonato abbottonare ver +abbottonatura abbottonatura nom +abbottonature abbottonatura nom +abbozza abbozzare ver +abbozzando abbozzare ver +abbozzano abbozzare ver +abbozzare abbozzare ver +abbozzarla abbozzare ver +abbozzarli abbozzare ver +abbozzarlo abbozzare ver +abbozzarono abbozzare ver +abbozzarsi abbozzare ver +abbozzata abbozzare ver +abbozzate abbozzare ver +abbozzati abbozzare ver +abbozzato abbozzare ver +abbozzava abbozzare ver +abbozzavano abbozzare ver +abbozzerà abbozzare ver +abbozzi abbozzo nom +abbozziamo abbozzare ver +abbozzino abbozzare ver +abbozzo abbozzo nom +abbozzò abbozzare ver +abbracceranno abbracciare ver +abbraccerebbe abbracciare ver +abbraccerei abbracciare ver +abbraccerà abbracciare ver +abbraccerò abbracciare ver +abbracci abbraccio nom +abbraccia abbracciare ver +abbracciai abbracciare ver +abbracciala abbracciare ver +abbracciali abbracciare ver +abbraccialo abbracciare ver +abbracciamenti abbracciamento nom +abbracciamento abbracciamento nom +abbracciami abbracciare ver +abbracciammo abbracciare ver +abbracciamo abbracciare ver +abbracciamoci abbracciare ver +abbracciando abbracciare ver +abbracciandola abbracciare ver +abbracciandole abbracciare ver +abbracciandoli abbracciare ver +abbracciandolo abbracciare ver +abbracciandone abbracciare ver +abbracciandosi abbracciare ver +abbracciano abbracciare ver +abbracciante abbracciare ver +abbraccianti abbracciare ver +abbracciar abbracciare ver +abbracciarci abbracciare ver +abbracciare abbracciare ver +abbracciarla abbracciare ver +abbracciarle abbracciare ver +abbracciarli abbracciare ver +abbracciarlo abbracciare ver +abbracciarmi abbracciare ver +abbracciarne abbracciare ver +abbracciarono abbracciare ver +abbracciarsi abbracciare ver +abbracciarti abbracciare ver +abbracciarvi abbracciare ver +abbracciasse abbracciare ver +abbracciassero abbracciare ver +abbracciata abbracciare ver +abbracciate abbracciare ver +abbracciatevi abbracciare ver +abbracciati abbracciare ver +abbracciato abbracciare ver +abbracciava abbracciare ver +abbracciavano abbracciare ver +abbraccino abbracciare ver +abbraccio abbraccio nom +abbracciò abbracciare ver +abbranca abbrancare ver +abbrancato abbrancare ver +abbrevi abbreviare ver +abbrevia abbreviare ver +abbreviamento abbreviamento nom +abbreviamo abbreviare ver +abbreviando abbreviare ver +abbreviandola abbreviare ver +abbreviandoli abbreviare ver +abbreviandolo abbreviare ver +abbreviandone abbreviare ver +abbreviano abbreviare ver +abbreviare abbreviare ver +abbreviargli abbreviare ver +abbreviarla abbreviare ver +abbreviarlo abbreviare ver +abbreviarne abbreviare ver +abbreviarono abbreviare ver +abbreviarsi abbreviare ver +abbreviasse abbreviare ver +abbreviata abbreviare ver +abbreviate abbreviare ver +abbreviati abbreviare ver +abbreviativa abbreviativo adj +abbreviative abbreviativo adj +abbreviativi abbreviativo adj +abbreviativo abbreviativo adj +abbreviato abbreviare ver +abbreviatore abbreviatore nom +abbreviatori abbreviatore nom +abbreviatura abbreviatura nom +abbreviature abbreviatura nom +abbreviava abbreviare ver +abbreviavano abbreviare ver +abbreviazione abbreviazione nom +abbreviazioni abbreviazione nom +abbrevieremo abbreviare ver +abbrevierà abbreviare ver +abbrevio abbreviare ver +abbreviò abbreviare ver +abbriva abbrivare ver +abbrivo abbrivo nom +abbronza abbronzare ver +abbronzano abbronzare ver +abbronzante abbronzante adj +abbronzanti abbronzante adj +abbronzare abbronzare ver +abbronzarsi abbronzare ver +abbronzata abbronzare ver +abbronzate abbronzare ver +abbronzati abbronzare ver +abbronzato abbronzare ver +abbronzatura abbronzatura nom +abbronzature abbronzatura nom +abbronziamoci abbronzare ver +abbrunare abbrunare ver +abbrunata abbrunare ver +abbrunate abbrunare ver +abbrunato abbrunare ver +abbrustolimento abbrustolimento nom +abbrustolire abbrustolire ver +abbrustolita abbrustolire ver +abbrustolite abbrustolire ver +abbrustoliti abbrustolire ver +abbrustolito abbrustolire ver +abbrustolì abbrustolire ver +abbrutente abbrutire ver +abbrutimento abbrutimento nom +abbrutire abbrutire ver +abbrutisce abbrutire ver +abbrutita abbrutire ver +abbrutite abbrutire ver +abbrutiti abbrutire ver +abbrutito abbrutire ver +abbruttente abbruttire ver +abbruttire abbruttire ver +abbruttiscono abbruttire ver +abbruttita abbruttire ver +abbruttiti abbruttire ver +abbruttito abbruttire ver +abbuffa abbuffarsi ver +abbuffarsi abbuffarsi ver +abbuffasse abbuffarsi ver +abbuffata abbuffarsi ver +abbuffate abbuffarsi ver +abbuia abbuiare ver +abbuona abbuonare ver +abbuonando abbuonare ver +abbuonato abbuonare ver +abbuoni abbuono nom +abbuono abbuono nom +abbuonò abbuonare ver +abburattamento abburattamento nom +abburattare abburattare ver +abdica abdicare ver +abdicaci abdicare ver +abdicando abdicare ver +abdicano abdicare ver +abdicante abdicare ver +abdicare abdicare ver +abdicarono abdicare ver +abdicasse abdicare ver +abdicataria abdicatario adj +abdicatario abdicatario adj +abdicate abdicare ver +abdicati abdicare ver +abdicato abdicare ver +abdicava abdicare ver +abdicavano abdicare ver +abdicazione abdicazione nom +abdicazioni abdicazione nom +abdicherà abdicare ver +abdico abdicare ver +abdicò abdicare ver +abdotta abdurre ver +abdotti abdurre ver +abdotto abdurre ver +abduce abdurre ver +abducente abdurre ver +abdur abdurre ver +abdurre abdurre ver +abduttore abduttore adj +abduttori abduttore adj +abduzione abduzione nom +abduzioni abduzione nom +abelmosco abelmosco nom +aberra aberrare ver +aberraci aberrare ver +aberrante aberrare ver +aberranti aberrare ver +aberrata aberrare ver +aberrate aberrare ver +aberrato aberrare ver +aberrazione aberrazione nom +aberrazioni aberrazione nom +abetaia abetaia nom +abetaie abetaia nom +abete abete nom +abeti abete nom +abetina abetina nom +abetine abetina nom +abietta abietto adj +abiette abietto adj +abietti abietto adj +abietto abietto adj +abiezione abiezione nom +abiezioni abiezione nom +abigeati abigeato nom +abigeato abigeato nom +abile abile adj +abili abile adj +abilita abilitare ver +abilitando abilitare ver +abilitandoli abilitare ver +abilitandolo abilitare ver +abilitandosi abilitare ver +abilitano abilitare ver +abilitante abilitante adj +abilitanti abilitante adj +abilitare abilitare ver +abilitarla abilitare ver +abilitarle abilitare ver +abilitarli abilitare ver +abilitarlo abilitare ver +abilitarne abilitare ver +abilitarsi abilitare ver +abilitata abilitare ver +abilitate abilitare ver +abilitati abilitare ver +abilitato abilitare ver +abilitava abilitare ver +abilitazione abilitazione nom +abilitazioni abilitazione nom +abiliterà abilitare ver +abiliti abilitare ver +abilitino abilitare ver +abilito abilitare ver +abilità abilità nom +abilitò abilitare ver +abilmente abilmente adv +abiogenesi abiogenesi nom +abissale abissale adj +abissali abissale adj +abissi abisso nom +abisso abisso nom +abita abitare ver +abitabile abitabile adj +abitabili abitabile adj +abitabilità abitabilità nom +abitacoli abitacolo nom +abitacolo abitacolo nom +abitale abitare ver +abitando abitare ver +abitandoci abitare ver +abitandola abitare ver +abitandovi abitare ver +abitano abitare ver +abitante abitante nom +abitanti abitante nom +abitar abitare ver +abitarci abitare ver +abitare abitare ver +abitarla abitare ver +abitarle abitare ver +abitarlo abitare ver +abitarne abitare ver +abitarono abitare ver +abitarsi abitare ver +abitarvi abitare ver +abitasse abitare ver +abitassero abitare ver +abitassi abitare ver +abitata abitare ver +abitate abitare ver +abitati abitare ver +abitativa abitativo adj +abitative abitativo adj +abitativi abitativo adj +abitativo abitativo adj +abitato abitare ver +abitatore abitatore nom +abitatori abitatore nom +abitatrice abitatore nom +abitatrici abitatore nom +abitava abitare ver +abitavamo abitare ver +abitavano abitare ver +abitavi abitare ver +abitavo abitare ver +abitazione abitazione nom +abitazioni abitazione nom +abiteranno abitare ver +abiterebbe abitare ver +abiterebbero abitare ver +abiterei abitare ver +abiterà abitare ver +abiterò abitare ver +abiti abito nom +abitiamo abitare ver +abitino abitare ver +abito abito nom +abitua abituare ver +abituai abituare ver +abituale abituale adj +abituali abituale adj +abitualità abitualità nom +abitualmente abitualmente adv +abituando abituare ver +abituandola abituare ver +abituandoli abituare ver +abituandolo abituare ver +abituandosi abituare ver +abituano abituare ver +abituarci abituare ver +abituare abituare ver +abituarla abituare ver +abituarli abituare ver +abituarlo abituare ver +abituarmi abituare ver +abituarono abituare ver +abituarsi abituare ver +abituarti abituare ver +abituarvi abituare ver +abituasse abituare ver +abituassero abituare ver +abituata abituare ver +abituate abituare ver +abituatevi abituare ver +abituati abituare ver +abituato abituare ver +abituava abituare ver +abituavano abituare ver +abitudinaria abitudinario adj +abitudinarie abitudinario adj +abitudinario abitudinario adj +abitudine abitudine nom +abitudini abitudine nom +abituerai abituare ver +abitueranno abituare ver +abitueremo abituare ver +abituerà abituare ver +abituerò abituare ver +abitui abituare ver +abituiamo abituare ver +abituiamoci abituare ver +abituino abituare ver +abituo abituare ver +abituri abituro nom +abituro abituro nom +abituò abituare ver +abitò abitare ver +abiura abiura nom +abiurando abiurare ver +abiurano abiurare ver +abiurare abiurare ver +abiurarle abiurare ver +abiurarono abiurare ver +abiurasse abiurare ver +abiurassero abiurare ver +abiurata abiurare ver +abiurato abiurare ver +abiurava abiurare ver +abiure abiura nom +abiurerà abiurare ver +abiuri abiurare ver +abiuro abiurare ver +abiurò abiurare ver +ablativa ablativo adj +ablative ablativo adj +ablativi ablativo adj +ablativo ablativo adj +ablazione ablazione nom +ablazioni ablazione nom +abluzione abluzione nom +abluzioni abluzione nom +abnegato abnegare ver +abnegazione abnegazione nom +abnorme abnorme adj +abnormi abnorme adj +abolendo abolire ver +abolendola abolire ver +abolendole abolire ver +abolendoli abolire ver +abolendone abolire ver +aboliamo abolire ver +aboliamola abolire ver +aboliamole abolire ver +aboliamoli abolire ver +abolir abolire ver +aboliranno abolire ver +abolire abolire ver +abolirebbe abolire ver +abolirei abolire ver +aboliremo abolire ver +abolirla abolire ver +abolirle abolire ver +abolirli abolire ver +abolirlo abolire ver +abolirne abolire ver +abolirono abolire ver +abolirsi abolire ver +abolirà abolire ver +abolisca abolire ver +aboliscano abolire ver +abolisce abolire ver +aboliscono abolire ver +abolisse abolire ver +abolissero abolire ver +abolissimo abolire ver +abolita abolire ver +abolite abolire ver +aboliti abolire ver +abolitiva abolitivo adj +abolitive abolitivo adj +abolito abolire ver +aboliva abolire ver +abolivano abolire ver +abolizione abolizione nom +abolizioni abolizione nom +abolizionismo abolizionismo nom +abolizionista abolizionista nom +abolizioniste abolizionista nom +abolizionisti abolizionista nom +abolizionistico abolizionistico adj +abolla abolla nom +abolì abolire ver +abomaso abomaso nom +abomina abominare ver +abominazione abominazione nom +abominazioni abominazione nom +abominevole abominevole adj +abominevoli abominevole adj +abomini abominio nom +abominio abominio nom +aborigena aborigeno adj +aborigene aborigeno adj +aborigeni aborigeno adj +aborigeno aborigeno adj +aborra aborrire ver +aborre aborrire ver +aborrendo aborrire ver +aborri aborrire ver +aborriamo aborrire ver +aborrimento aborrimento nom +aborrire aborrire ver +aborrirne aborrire ver +aborrisca aborrire ver +aborriscano aborrire ver +aborrisce aborrire ver +aborrisco aborrire ver +aborriscono aborrire ver +aborrita aborrire ver +aborrite aborrire ver +aborriti aborrire ver +aborrito aborrire ver +aborriva aborrire ver +aborrivamo aborrire ver +aborrivano aborrire ver +aborro aborrire ver +aborrono aborrire ver +abortenti abortire ver +aborti aborto nom +abortire abortire ver +abortirono abortire ver +abortirà abortire ver +abortisca abortire ver +abortisce abortire ver +abortiscono abortire ver +abortisse abortire ver +abortiste abortire ver +abortisti abortire ver +abortita abortire ver +abortite abortire ver +abortiti abortire ver +abortito abortire ver +abortiva abortivo adj +abortive abortivo adj +abortivi abortivo adj +abortivo abortivo adj +aborto aborto nom +abortì abortire ver +abracadabra abracadabra nom +abrade abradere ver +abradere abradere ver +abradono abradere ver +abrasione abrasione nom +abrasioni abrasione nom +abrasiva abrasivo adj +abrasive abrasivo adj +abrasivi abrasivo adj +abrasività abrasività nom +abrasivo abrasivo adj +abroga abrogare ver +abrogabili abrogabile adj +abrogando abrogare ver +abrogandola abrogare ver +abrogandole abrogare ver +abrogano abrogare ver +abrogante abrogare ver +abrogare abrogare ver +abrogarla abrogare ver +abrogarle abrogare ver +abrogarlo abrogare ver +abrogarne abrogare ver +abrogarono abrogare ver +abrogasse abrogare ver +abrogata abrogare ver +abrogate abrogare ver +abrogati abrogare ver +abrogativa abrogativo adj +abrogative abrogativo adj +abrogativi abrogativo adj +abrogativo abrogativo adj +abrogato abrogare ver +abrogava abrogare ver +abrogavano abrogare ver +abrogazione abrogazione nom +abrogazioni abrogazione nom +abroghi abrogare ver +abrogò abrogare ver +abrostine abrostine nom +abrotano abrotano nom +abruzzese abruzzese adj +abruzzesi abruzzese adj +absidale absidale adj +absidali absidale adj +absidata absidato adj +absidate absidato adj +absidati absidato adj +absidato absidato adj +abside abside nom +absidi abside nom +absintina absintina nom +abulica abulico adj +abuliche abulico adj +abulici abulico adj +abulico abulico adj +abusa abusare ver +abusando abusare ver +abusandone abusare ver +abusano abusare ver +abusante abusare ver +abusanti abusare ver +abusar abusare ver +abusare abusare ver +abusarne abusare ver +abusarono abusare ver +abusasse abusare ver +abusassero abusare ver +abusata abusare ver +abusate abusato adj +abusati abusato adj +abusato abusare ver +abusava abusare ver +abusavano abusare ver +abuserai abusare ver +abuserebbe abusare ver +abuserebbero abusare ver +abuserà abusare ver +abuserò abusare ver +abusi abuso nom +abusiamo abusare ver +abusiamone abusare ver +abusino abusare ver +abusiva abusivo adj +abusivamente abusivamente adv +abusive abusivo adj +abusivi abusivo adj +abusivismi abusivismo nom +abusivismo abusivismo nom +abusivo abusivo adj +abuso abuso nom +abusò abusare ver +acacia acacia nom +acacie acacia nom +acagiù acagiù nom +acantacee acantacee nom +acanti acanto nom +acanto acanto nom +acari acaro nom +acariasi acariasi nom +acaricida acaricida nom +acaricidi acaricida nom +acariosi acariosi nom +acaro acaro nom +acattolica acattolico adj +acattoliche acattolico adj +acattolici acattolico adj +acattolico acattolico adj +acaule acaule adj +acauli acaule adj +acca acca nom +accada accadere ver +accadano accadere ver +accadde accadere ver +accaddero accadere ver +accade accadere ver +accademia accademia nom +accademica accademico adj +accademicamente accademicamente adv +accademiche accademico adj +accademici accademico adj +accademico accademico adj +accademie accademia nom +accademismi accademismo nom +accademismo accademismo nom +accademiste accademista nom +accademisti accademista nom +accadendo accadere ver +accader accadere ver +accaderci accadere ver +accadere accadere ver +accadergli accadere ver +accaderle accadere ver +accadermi accadere ver +accaderne accadere ver +accadesse accadere ver +accadessero accadere ver +accadeva accadere ver +accadevano accadere ver +accadimenti accadimento nom +accadimento accadimento nom +accadono accadere ver +accadranno accadere ver +accadrebbe accadere ver +accadrebbero accadere ver +accadrà accadere ver +accaduta accadere ver +accadute accadere ver +accaduti accadere ver +accaduto accadere ver +accalappiacani accalappiacani nom +accalappiare accalappiare ver +accalappiato accalappiare ver +accalca accalcare ver +accalcandosi accalcare ver +accalcano accalcare ver +accalcarono accalcare ver +accalcarsi accalcare ver +accalcata accalcare ver +accalcate accalcare ver +accalcati accalcare ver +accalcava accalcare ver +accalcavano accalcare ver +accalcò accalcare ver +accaldata accaldarsi ver +accaldati accaldarsi ver +accaldato accaldarsi ver +accalorandosi accalorare ver +accalorare accalorare ver +accalorarsi accalorare ver +accalorata accalorare ver +accalorate accalorare ver +accalorati accalorare ver +accalorato accalorare ver +accaloro accalorare ver +accampa accampare ver +accampamenti accampamento nom +accampamento accampamento nom +accampando accampare ver +accampandosi accampare ver +accampano accampare ver +accampante accampare ver +accampare accampare ver +accamparono accampare ver +accamparsi accampare ver +accampasse accampare ver +accampata accampare ver +accampate accampare ver +accampati accampare ver +accampato accampare ver +accampava accampare ver +accampavano accampare ver +accamperanno accampare ver +accamperà accampare ver +accampi accampare ver +accampo accampare ver +accampò accampare ver +accanendo accanirsi ver +accanendosi accanirsi ver +accaniamo accanare|accanirsi ver +accaniamoci accanare|accanirsi ver +accanimenti accanimento nom +accanimento accanimento nom +accaniranno accanirsi ver +accanirci accanirsi ver +accanire accanirsi ver +accanirebbero accanirsi ver +accanirei accanirsi ver +accanirmi accanirsi ver +accanirono accanirsi ver +accanirsi accanirsi ver +accanirti accanirsi ver +accanirvi accanirsi ver +accanirà accanirsi ver +accanisca accanirsi ver +accaniscano accanirsi ver +accanisce accanirsi ver +accanisci accanirsi ver +accanisco accanirsi ver +accaniscono accanirsi ver +accanisse accanirsi ver +accanissero accanirsi ver +accanissi accanirsi ver +accanita accanito adj +accanitamente accanitamente adv +accanite accanito adj +accanitevi accanirsi ver +accaniti accanirsi ver +accanito accanito adj +accaniva accanirsi ver +accanivano accanirsi ver +accanto accanto adv_sup +accantona accantonare ver +accantonamenti accantonamento nom +accantonamento accantonamento nom +accantonando accantonare ver +accantonano accantonare ver +accantonare accantonare ver +accantonarle accantonare ver +accantonarlo accantonare ver +accantonarono accantonare ver +accantonata accantonare ver +accantonate accantonare ver +accantonati accantonare ver +accantonato accantonare ver +accantonava accantonare ver +accantonavano accantonare ver +accantonerà accantonare ver +accantoniamo accantonare ver +accantono accantonare ver +accantonò accantonare ver +accanì accanirsi ver +accaparra accaparrare ver +accaparramenti accaparramento nom +accaparramento accaparramento nom +accaparrandosi accaparrare ver +accaparrano accaparrare ver +accaparrare accaparrare ver +accaparrarono accaparrare ver +accaparrarsele accaparrare ver +accaparrarseli accaparrare ver +accaparrarselo accaparrare ver +accaparrarsene accaparrare ver +accaparrarsi accaparrare ver +accaparrata accaparrare ver +accaparrate accaparrare ver +accaparrati accaparrare ver +accaparrato accaparrare ver +accaparratori accaparratore nom +accaparravano accaparrare ver +accaparrò accaparrare ver +accapezzato accapezzare ver +accapiglia accapigliarsi ver +accapigliamo accapigliarsi ver +accapigliando accapigliarsi ver +accapigliandosi accapigliarsi ver +accapigliano accapigliarsi ver +accapigliarci accapigliarsi ver +accapigliarono accapigliarsi ver +accapigliarsi accapigliarsi ver +accapigliate accapigliarsi ver +accapigliatevi accapigliarsi ver +accapigliati accapigliarsi ver +accapigliato accapigliarsi ver +accapigliavano accapigliarsi ver +accapo accapo adv +accappatoi accappatoio nom +accappatoio accappatoio nom +accapponare accapponare ver +accarezza accarezzare ver +accarezzami accarezzare ver +accarezzando accarezzare ver +accarezzandola accarezzare ver +accarezzandole accarezzare ver +accarezzandolo accarezzare ver +accarezzandosi accarezzare ver +accarezzano accarezzare ver +accarezzare accarezzare ver +accarezzargli accarezzare ver +accarezzarla accarezzare ver +accarezzarle accarezzare ver +accarezzarli accarezzare ver +accarezzarlo accarezzare ver +accarezzarne accarezzare ver +accarezzarono accarezzare ver +accarezzarsi accarezzare ver +accarezzasse accarezzare ver +accarezzata accarezzare ver +accarezzate accarezzare ver +accarezzati accarezzare ver +accarezzato accarezzare ver +accarezzava accarezzare ver +accarezzavo accarezzare ver +accarezzerò accarezzare ver +accarezzi accarezzare ver +accarezzo accarezzare ver +accarezzò accarezzare ver +accartoccia accartocciare ver +accartocciamenti accartocciamento nom +accartocciamento accartocciamento nom +accartocciandosi accartocciare ver +accartocciano accartocciare ver +accartocciare accartocciare ver +accartocciarsi accartocciare ver +accartocciata accartocciato adj +accartocciate accartocciare ver +accartocciati accartocciato adj +accartocciato accartocciato adj +accasa accasare ver +accasando accasare ver +accasandosi accasare ver +accasano accasare ver +accasare accasare ver +accasarla accasare ver +accasarono accasare ver +accasarsi accasare ver +accasassero accasare ver +accasata accasare ver +accasate accasare ver +accasati accasare ver +accasato accasare ver +accasava accasare ver +accascia accasciare ver +accasciai accasciare ver +accasciamo accasciare ver +accasciandosi accasciare ver +accasciano accasciare ver +accasciante accasciare ver +accasciare accasciare ver +accasciarli accasciare ver +accasciarsi accasciare ver +accasciata accasciare ver +accasciati accasciare ver +accasciato accasciare ver +accasciava accasciare ver +accasciavano accasciare ver +accasciò accasciare ver +accaseranno accasare ver +accasermata accasermare ver +accasermati accasermare ver +accasermato accasermare ver +accaserà accasare ver +accastellati accastellare ver +accasò accasare ver +accatasta accatastare ver +accatastamento accatastamento nom +accatastando accatastare ver +accatastandosi accatastare ver +accatastano accatastare ver +accatastare accatastare ver +accatastarono accatastare ver +accatastarsi accatastare ver +accatastata accatastare ver +accatastate accatastare ver +accatastati accatastare ver +accatastato accatastare ver +accatastavano accatastare ver +accatastò accatastare ver +accatta accattare ver +accattabrighe accattabrighe nom +accattare accattare ver +accattarsi accattare ver +accattate accattare ver +accattati accattare ver +accattato accattare ver +accattino accattare ver +accattiva accattivare ver +accattivandosene accattivare ver +accattivandosi accattivare ver +accattivante accattivante adj +accattivanti accattivante adj +accattivare accattivare ver +accattivarono accattivare ver +accattivarselo accattivare ver +accattivarsene accattivare ver +accattivarsi accattivare ver +accattivato accattivare ver +accattivava accattivare ver +accattivò accattivare ver +accatto accatto nom +accattona accattone nom +accattonaggio accattonaggio nom +accattone accattone nom +accattoni accattone nom +accavalcano accavalcare ver +accavalla accavallare ver +accavallamenti accavallamento nom +accavallamento accavallamento nom +accavallando accavallare ver +accavallandosi accavallare ver +accavallano accavallare ver +accavallare accavallare ver +accavallarono accavallare ver +accavallarsi accavallare ver +accavallata accavallare ver +accavallate accavallare ver +accavallati accavallare ver +accavallato accavallare ver +accavallavano accavallare ver +accavallino accavallare ver +accavallò accavallare ver +acce accia nom +acceca accecare ver +accecamenti accecamento nom +accecamento accecamento nom +accecando accecare ver +accecandola accecare ver +accecandoli accecare ver +accecandolo accecare ver +accecandosi accecare ver +accecano accecare ver +accecante accecare ver +accecanti accecare ver +accecare accecare ver +accecargli accecare ver +accecarli accecare ver +accecarlo accecare ver +accecarono accecare ver +accecarsi accecare ver +accecata accecare ver +accecate accecare ver +accecati accecare ver +accecato accecare ver +accecatura accecatura nom +accecava accecare ver +accecavano accecare ver +accecherà accecare ver +accechi accecare ver +accecò accecare ver +acceda accedere ver +accedano accedere ver +accede accedere ver +accedendo accedere ver +accedendovi accedere ver +accedente accedere ver +accedenti accedere ver +acceder accedere ver +accederanno accedere ver +accederci accedere ver +accedere accedere ver +accederebbe accedere ver +accedervi accedere ver +accederà accedere ver +accederò accedere ver +accedesse accedere ver +accedessero accedere ver +accedete accedere ver +accedette accedere ver +accedettero accedere ver +accedeva accedere ver +accedevano accedere ver +accedevi accedere ver +accedi accedere ver +accediamo accedere ver +accedo accedere ver +accedono accedere ver +acceduta accedere ver +accedute accedere ver +acceduti accedere ver +acceduto accedere ver +accelera accelerare ver +acceleraci accelerare ver +acceleramento acceleramento adv +accelerando accelerare ver +accelerandola accelerare ver +accelerandole accelerare ver +accelerandolo accelerare ver +accelerandone accelerare ver +accelerandosi accelerare ver +accelerano accelerare ver +accelerante accelerare ver +acceleranti accelerare ver +accelerare accelerare ver +accelerarla accelerare ver +accelerarle accelerare ver +accelerarli accelerare ver +accelerarlo accelerare ver +accelerarne accelerare ver +accelerarono accelerare ver +accelerarsi accelerare ver +accelerasse accelerare ver +accelerata accelerare ver +accelerate accelerare ver +accelerati accelerare ver +accelerativa accelerativo adj +accelerato accelerare ver +acceleratore acceleratore nom +acceleratori acceleratore nom +acceleratrice acceleratore nom +acceleratrici acceleratore nom +accelerava accelerare ver +acceleravano accelerare ver +accelerazione accelerazione nom +accelerazioni accelerazione nom +accelereranno accelerare ver +accelererebbe accelerare ver +accelererà accelerare ver +acceleri accelerare ver +acceleriamo accelerare ver +accelerino accelerare ver +accelero accelerare ver +accelerometri accelerometro nom +accelerometro accelerometro nom +accelerò accelerare ver +accenda accendere ver +accendano accendere ver +accende accendere ver +accendemmo accendere ver +accendendo accendere ver +accendendola accendere ver +accendendoli accendere ver +accendendolo accendere ver +accendendone accendere ver +accendendosi accendere ver +accenderanno accendere ver +accendere accendere ver +accenderebbe accendere ver +accendergli accendere ver +accenderla accendere ver +accenderle accendere ver +accenderli accendere ver +accenderlo accendere ver +accendermi accendere ver +accenderne accendere ver +accendersi accendere ver +accenderà accendere ver +accendesse accendere ver +accendessero accendere ver +accendete accendere ver +accendeva accendere ver +accendevano accendere ver +accendi accendere ver +accendiamo accendere ver +accendiamola accendere ver +accendigas accendigas nom +accendimi accendere ver +accendini accendino nom +accendino accendino nom +accendisigari accendisigaro nom +accendisigaro accendisigaro nom +accenditi accendere ver +accenditore accenditore nom +accenditori accenditore nom +accenditrice accenditore nom +accendo accendere ver +accendono accendere ver +accenna accennare ver +accennai accennare ver +accennando accennare ver +accennandone accennare ver +accennano accennare ver +accennante accennare ver +accennanti accennare ver +accennar accennare ver +accennare accennare ver +accennarla accennare ver +accennarli accennare ver +accennarlo accennare ver +accennarne accennare ver +accennarono accennare ver +accennarsi accennare ver +accennarti accennare ver +accennarvi accennare ver +accennasse accennare ver +accennassero accennare ver +accennata accennare ver +accennate accennare ver +accennati accennare ver +accennato accennare ver +accennava accennare ver +accennavamo accennare ver +accennavano accennare ver +accennavi accennare ver +accennavo accennare ver +accennerebbe accennare ver +accennerei accennare ver +accenneremo accennare ver +accennerà accennare ver +accennerò accennare ver +accenni accenno nom +accenniamo accennare ver +accennino accennare ver +accenno accenno nom +accennò accennare ver +accensione accensione nom +accensioni accensione nom +accenta accentare ver +accentando accentare ver +accentano accentare ver +accentare accentare ver +accentarlo accentare ver +accentata accentare ver +accentate accentato adj +accentati accentato adj +accentato accentare ver +accentatura accentatura nom +accentazione accentazione nom +accentazioni accentazione nom +accenti accento nom +accento accento nom +accentra accentrare ver +accentramenti accentramento nom +accentramento accentramento nom +accentrando accentrare ver +accentrandosi accentrare ver +accentrano accentrare ver +accentrare accentrare ver +accentrarono accentrare ver +accentrarsi accentrare ver +accentrasse accentrare ver +accentrata accentrare ver +accentrate accentrare ver +accentrati accentrare ver +accentrato accentrare ver +accentratore accentratore adj +accentratrice accentratore adj +accentratrici accentratore adj +accentrava accentrare ver +accentravano accentrare ver +accentrerebbe accentrare ver +accentro accentrare ver +accentrò accentrare ver +accentua accentuare ver +accentuale accentuare ver +accentuali accentuare ver +accentuando accentuare ver +accentuandole accentuare ver +accentuandoli accentuare ver +accentuandone accentuare ver +accentuandosi accentuare ver +accentuano accentuare ver +accentuare accentuare ver +accentuarla accentuare ver +accentuarne accentuare ver +accentuarono accentuare ver +accentuarsi accentuare ver +accentuasse accentuare ver +accentuata accentuare ver +accentuate accentuare ver +accentuati accentuare ver +accentuato accentuare ver +accentuava accentuare ver +accentuavano accentuare ver +accentuazione accentuazione nom +accentuazioni accentuazione nom +accentueranno accentuare ver +accentuerebbe accentuare ver +accentuerà accentuare ver +accentui accentuare ver +accentuò accentuare ver +accentò accentare ver +accerchia accerchiare ver +accerchiamenti accerchiamento nom +accerchiamento accerchiamento nom +accerchiando accerchiare ver +accerchiandola accerchiare ver +accerchiandolo accerchiare ver +accerchiano accerchiare ver +accerchiante accerchiare ver +accerchianti accerchiare ver +accerchiare accerchiare ver +accerchiarla accerchiare ver +accerchiarle accerchiare ver +accerchiarli accerchiare ver +accerchiarlo accerchiare ver +accerchiarono accerchiare ver +accerchiasse accerchiare ver +accerchiata accerchiare ver +accerchiate accerchiare ver +accerchiati accerchiare ver +accerchiato accerchiare ver +accerchiava accerchiare ver +accerchiavano accerchiare ver +accerchiò accerchiare ver +accerta accertare ver +accertabile accertabile adj +accertabili accertabile adj +accertabilità accertabilità nom +accertai accertare ver +accertamenti accertamento nom +accertamento accertamento nom +accertando accertare ver +accertandone accertare ver +accertandosi accertare ver +accertano accertare ver +accertante accertare ver +accertarci accertare ver +accertare accertare ver +accertarli accertare ver +accertarlo accertare ver +accertarmene accertare ver +accertarmi accertare ver +accertarne accertare ver +accertarono accertare ver +accertarsene accertare ver +accertarsi accertare ver +accertartene accertare ver +accertarti accertare ver +accertarvi accertare ver +accertasse accertare ver +accertassero accertare ver +accertata accertare ver +accertate accertare ver +accertatevi accertare ver +accertati accertare ver +accertato accertare ver +accertava accertare ver +accertavo accertare ver +accerteranno accertare ver +accerterebbe accertare ver +accerterei accertare ver +accerterà accertare ver +accerti accertare ver +accertiamoci accertare ver +accertiamolo accertare ver +accertino accertare ver +accerto accertare ver +accertò accertare ver +accesa acceso adj +accese acceso adj +accesero accendere ver +accesi acceso adj +acceso accendere ver +accessi accesso nom +accessibile accessibile adj +accessibili accessibile adj +accessibilità accessibilità nom +accessione accessione nom +accessioni accessione nom +accesso accesso nom +accessori accessorio nom +accessoria accessorio adj +accessoriamente accessoriamente adv +accessorie accessorio adj +accessorietà accessorietà nom +accessorio accessorio adj +accessoristi accessorista nom +accestenti accestire ver +accestimento accestimento nom +accestire accestire ver +accestiscono accestire ver +accetta accetto adj +accettabile accettabile adj +accettabili accettabile adj +accettabilità accettabilità nom +accettai accettare ver +accettali accettare ver +accettalo accettare ver +accettammo accettare ver +accettando accettare ver +accettandola accettare ver +accettandole accettare ver +accettandoli accettare ver +accettandolo accettare ver +accettandone accettare ver +accettano accettare ver +accettante accettante nom +accettanti accettante nom +accettar accettare ver +accettarci accettare ver +accettare accettare ver +accettargli accettare ver +accettarla accettare ver +accettarle accettare ver +accettarli accettare ver +accettarlo accettare ver +accettarmi accettare ver +accettarne accettare ver +accettarono accettare ver +accettarsi accettare ver +accettasi accettare ver +accettasse accettare ver +accettassero accettare ver +accettassi accettare ver +accettassimo accettare ver +accettaste accettare ver +accettata accettare ver +accettate accettare ver +accettatele accettare ver +accettati accettare ver +accettato accettare ver +accettava accettare ver +accettavano accettare ver +accettavo accettare ver +accettazione accettazione nom +accettazioni accettazione nom +accette accetto adj +accetterai accettare ver +accetteranno accettare ver +accetterebbe accettare ver +accetterebbero accettare ver +accetterei accettare ver +accetteremmo accettare ver +accetteremo accettare ver +accettereste accettare ver +accetteresti accettare ver +accetterete accettare ver +accetterà accettare ver +accetterò accettare ver +accetti accetto adj +accettiamo accettare ver +accettiate accettare ver +accettino accettare ver +accetto accetto adj +accettò accettare ver +accezione accezione nom +accezioni accezione nom +acche acca nom +acchetarvi acchetare ver +acchiappa acchiappare ver +acchiappali acchiappare ver +acchiappalo acchiappare ver +acchiappamosche acchiappamosche nom +acchiappando acchiappare ver +acchiappano acchiappare ver +acchiappare acchiappare ver +acchiapparla acchiappare ver +acchiapparle acchiappare ver +acchiapparli acchiappare ver +acchiapparlo acchiappare ver +acchiapparmi acchiappare ver +acchiappata acchiappare ver +acchiappati acchiappare ver +acchiappato acchiappare ver +acchiappi acchiappare ver +acchiappiamo acchiappare ver +acchiappino acchiappino nom +acchiappo acchiappare ver +acchiappò acchiappare ver +acchito acchito nom +acché acché con +accia accia nom +acciaccata acciaccare ver +acciaccati acciaccare ver +acciaccato acciaccare ver +acciaccatura acciaccatura nom +acciaccature acciaccatura nom +acciacchi acciacco nom +acciacco acciacco nom +acciai acciaio nom +acciaiatura acciaiatura nom +acciaieria acciaieria nom +acciaierie acciaieria nom +acciaino acciaino nom +acciaio acciaio nom +acciambellato acciambellare ver +acciari acciaro nom +acciarini acciarino nom +acciarino acciarino nom +acciaro acciaro nom +accidentale accidentale adj +accidentali accidentale adj +accidentalità accidentalità nom +accidentalmente accidentalmente adv +accidentata accidentato adj +accidentate accidentato adj +accidentati accidentato adj +accidentato accidentato adj +accidente accidente nom +accidenti accidente nom +accidia accidia nom +accidie accidia nom +accidiosa accidioso adj +accidiose accidioso adj +accidiosi accidioso adj +accidioso accidioso adj +accigliandosi accigliarsi ver +accigliano accigliarsi ver +accigliata accigliato adj +accigliate accigliato adj +accigliati accigliato adj +accigliato accigliarsi ver +accigliò accigliarsi ver +accinga accingere ver +accinge accingere ver +accingendo accingere ver +accingendomi accingere ver +accingendosi accingere ver +accingerei accingere ver +accingeremo accingere ver +accingermi accingere ver +accingersi accingere ver +accingerà accingere ver +accingesse accingere ver +accingessero accingere ver +accingessi accingere ver +accingete accingere ver +accingeva accingere ver +accingevano accingere ver +accingevo accingere ver +accingi accingere ver +accingiamo accingere ver +accingo accingere ver +accingono accingere ver +accinse accingere ver +accinsero accingere ver +accinsi accingere ver +accinto accingere ver +acciocché acciocché con +acciottolata acciottolato adj +acciottolate acciottolato adj +acciottolati acciottolato nom +acciottolato acciottolato nom +accipicchia accipicchia int +accipitridi accipitridi nom +accisa accisa nom +accise accisa nom +acciuffa acciuffare ver +acciuffando acciuffare ver +acciuffano acciuffare ver +acciuffare acciuffare ver +acciuffarla acciuffare ver +acciuffarli acciuffare ver +acciuffarlo acciuffare ver +acciuffata acciuffare ver +acciuffate acciuffare ver +acciuffati acciuffare ver +acciuffato acciuffare ver +acciufferanno acciuffare ver +acciuffò acciuffare ver +acciuga acciuga nom +acciughe acciuga nom +acciughina acciughina nom +acclama acclamare ver +acclamando acclamare ver +acclamandolo acclamare ver +acclamano acclamare ver +acclamante acclamare ver +acclamanti acclamare ver +acclamare acclamare ver +acclamarla acclamare ver +acclamarlo acclamare ver +acclamarono acclamare ver +acclamasse acclamare ver +acclamassero acclamare ver +acclamata acclamare ver +acclamate acclamare ver +acclamati acclamare ver +acclamato acclamare ver +acclamava acclamare ver +acclamavano acclamare ver +acclamazione acclamazione nom +acclamazioni acclamazione nom +acclamerà acclamare ver +acclami acclamare ver +acclamo acclamare ver +acclamò acclamare ver +acclimatandosi acclimatare ver +acclimatano acclimatare ver +acclimatare acclimatare ver +acclimatarono acclimatare ver +acclimatarsi acclimatare ver +acclimatata acclimatare ver +acclimatate acclimatare ver +acclimatati acclimatare ver +acclimatato acclimatare ver +acclimatazione acclimatazione nom +acclimatò acclimatare ver +acclimazione acclimazione nom +acclive acclive adj +acclivi acclive adj +acclività acclività nom +acclude accludere ver +accludendo accludere ver +accludere accludere ver +accludo accludere ver +acclusa accludere ver +accluse accludere ver +acclusi accluso adj +accluso accludere ver +accocchi accoccare ver +accoccola accoccolarsi ver +accoccolarsi accoccolarsi ver +accoccolata accoccolarsi ver +accoccolati accoccolarsi ver +accoccolato accoccolarsi ver +accoccolavano accoccolarsi ver +accoda accodare ver +accodando accodare ver +accodandomi accodare ver +accodandosi accodare ver +accodano accodare ver +accodare accodare ver +accodarle accodare ver +accodarli accodare ver +accodarmi accodare ver +accodarono accodare ver +accodarsi accodare ver +accodata accodare ver +accodate accodare ver +accodati accodare ver +accodato accodare ver +accodava accodare ver +accodavano accodare ver +accodi accodare ver +accodiamo accodare ver +accodino accodare ver +accodo accodare ver +accodò accodare ver +accogli accogliere ver +accogliamo accogliere ver +accogliamoli accogliere ver +accoglibile accoglibile adj +accoglici accogliere ver +accoglie accogliere ver +accogliendo accogliere ver +accogliendoci accogliere ver +accogliendola accogliere ver +accogliendoli accogliere ver +accogliendolo accogliere ver +accogliendone accogliere ver +accogliendovi accogliere ver +accogliente accogliente adj +accoglienti accogliente adj +accoglienza accoglienza nom +accoglienze accoglienza nom +accoglier accogliere ver +accoglierai accogliere ver +accoglieranno accogliere ver +accogliere accogliere ver +accoglierebbe accogliere ver +accoglierebbero accogliere ver +accoglierei accogliere ver +accoglieremo accogliere ver +accoglierete accogliere ver +accogliergli accogliere ver +accoglierla accogliere ver +accoglierle accogliere ver +accoglierli accogliere ver +accoglierlo accogliere ver +accoglierne accogliere ver +accogliersi accogliere ver +accoglierti accogliere ver +accogliervi accogliere ver +accoglierà accogliere ver +accoglierò accogliere ver +accogliesse accogliere ver +accogliessero accogliere ver +accoglieste accogliere ver +accogliete accogliere ver +accoglieva accogliere ver +accoglievano accogliere ver +accoglievi accogliere ver +accoglimenti accoglimento nom +accoglimento accoglimento nom +accolga accogliere ver +accolgano accogliere ver +accolgo accogliere ver +accolgono accogliere ver +accolitato accolitato nom +accoliti accolito nom +accolito accolito nom +accolla accollare ver +accollando accollare ver +accollandomi accollare ver +accollandosene accollare ver +accollandosi accollare ver +accollano accollare ver +accollante accollare ver +accollanti accollare ver +accollare accollare ver +accollargli accollare ver +accollarmi accollare ver +accollarono accollare ver +accollarsene accollare ver +accollarsi accollare ver +accollarti accollare ver +accollasse accollare ver +accollata accollare ver +accollate accollare ver +accollati accollare ver +accollato accollare ver +accollatura accollatura nom +accollature accollatura nom +accollava accollare ver +accollavano accollare ver +accollerebbe accollare ver +accollerà accollare ver +accolli accollare ver +accollino accollare ver +accollo accollo nom +accollò accollare ver +accolse accogliere ver +accolsero accogliere ver +accolta accogliere ver +accolte accogliere ver +accoltella accoltellare ver +accoltellando accoltellare ver +accoltellandola accoltellare ver +accoltellandole accoltellare ver +accoltellandolo accoltellare ver +accoltellandosi accoltellare ver +accoltellano accoltellare ver +accoltellare accoltellare ver +accoltellarla accoltellare ver +accoltellarlo accoltellare ver +accoltellarsi accoltellare ver +accoltellata accoltellare ver +accoltellate accoltellato adj +accoltellati accoltellare ver +accoltellato accoltellare ver +accoltellatore accoltellatore nom +accoltellatori accoltellatore nom +accoltellava accoltellare ver +accoltellò accoltellare ver +accolti accogliere ver +accolto accogliere ver +accomandante accomandante adj +accomandanti accomandante adj +accomandatari accomandatario nom +accomandatario accomandatario nom +accomandita accomandita nom +accomando accomandare ver +accomiata accomiatare ver +accomiatandosi accomiatare ver +accomiatarono accomiatare ver +accomiatarsi accomiatare ver +accomiatava accomiatare ver +accomiatò accomiatare ver +accomoda accomodare ver +accomodamenti accomodamento nom +accomodamento accomodamento nom +accomodando accomodare ver +accomodandosi accomodare ver +accomodano accomodare ver +accomodante accomodante adj +accomodanti accomodante adj +accomodar accomodare ver +accomodare accomodare ver +accomodarla accomodare ver +accomodarle accomodare ver +accomodarlo accomodare ver +accomodarmi accomodare ver +accomodarono accomodare ver +accomodarsi accomodare ver +accomodarti accomodare ver +accomodarvi accomodare ver +accomodasse accomodare ver +accomodata accomodare ver +accomodate accomodare ver +accomodatevi accomodare ver +accomodati accomodare ver +accomodato accomodare ver +accomodatore accomodatore nom +accomodava accomodare ver +accomodavano accomodare ver +accomodazione accomodazione nom +accomodi accomodare ver +accomodiamoci accomodare ver +accomodino accomodare ver +accomodo accomodare ver +accomodò accomodare ver +accompagna accompagnare ver +accompagnai accompagnare ver +accompagnamenti accompagnamento nom +accompagnamento accompagnamento nom +accompagnami accompagnare ver +accompagnando accompagnare ver +accompagnandola accompagnare ver +accompagnandole accompagnare ver +accompagnandoli accompagnare ver +accompagnandolo accompagnare ver +accompagnandone accompagnare ver +accompagnandosi accompagnare ver +accompagnano accompagnare ver +accompagnante accompagnare ver +accompagnanti accompagnare ver +accompagnarci accompagnare ver +accompagnare accompagnare ver +accompagnarla accompagnare ver +accompagnarle accompagnare ver +accompagnarli accompagnare ver +accompagnarlo accompagnare ver +accompagnarmi accompagnare ver +accompagnarne accompagnare ver +accompagnarono accompagnare ver +accompagnarsi accompagnare ver +accompagnarti accompagnare ver +accompagnarvi accompagnare ver +accompagnasse accompagnare ver +accompagnassero accompagnare ver +accompagnassi accompagnare ver +accompagnata accompagnare ver +accompagnate accompagnare ver +accompagnati accompagnare ver +accompagnato accompagnare ver +accompagnatore accompagnatore nom +accompagnatori accompagnatore nom +accompagnatrice accompagnatore nom +accompagnatrici accompagnatore nom +accompagnava accompagnare ver +accompagnavano accompagnare ver +accompagnavo accompagnare ver +accompagneranno accompagnare ver +accompagnerebbe accompagnare ver +accompagnerebbero accompagnare ver +accompagneremo accompagnare ver +accompagnerà accompagnare ver +accompagnerò accompagnare ver +accompagni accompagnare ver +accompagniate accompagnare ver +accompagnino accompagnare ver +accompagno accompagnare ver +accompagnò accompagnare ver +accomuna accomunare ver +accomunabile accomunabile adj +accomunabili accomunabile adj +accomunamento accomunamento nom +accomunando accomunare ver +accomunandola accomunare ver +accomunandoli accomunare ver +accomunandolo accomunare ver +accomunandosi accomunare ver +accomunano accomunare ver +accomunante accomunare ver +accomunanti accomunare ver +accomunarci accomunare ver +accomunare accomunare ver +accomunarle accomunare ver +accomunarli accomunare ver +accomunarlo accomunare ver +accomunarmi accomunare ver +accomunarono accomunare ver +accomunarsi accomunare ver +accomunasse accomunare ver +accomunassero accomunare ver +accomunata accomunare ver +accomunate accomunare ver +accomunati accomunare ver +accomunato accomunare ver +accomunava accomunare ver +accomunavano accomunare ver +accomuneranno accomunare ver +accomunerebbe accomunare ver +accomunerei accomunare ver +accomunerà accomunare ver +accomuni accomunare ver +accomuno accomunare ver +accomunò accomunare ver +acconce acconcio adj +acconci acconcio adj +acconcia acconcio adj +acconciando acconciare ver +acconciandole acconciare ver +acconciandosi acconciare ver +acconciano acconciare ver +acconciare acconciare ver +acconciarli acconciare ver +acconciarsi acconciare ver +acconciata acconciare ver +acconciate acconciare ver +acconciati acconciare ver +acconciato acconciare ver +acconciatore acconciatore nom +acconciatori acconciatore nom +acconciatrice acconciatore nom +acconciatura acconciatura nom +acconciature acconciatura nom +acconciavano acconciare ver +acconcio acconcio adj +accondiscenda accondiscendere ver +accondiscende accondiscendere ver +accondiscendendo accondiscendere ver +accondiscendente accondiscendere ver +accondiscendenti accondiscendere ver +accondiscendere accondiscendere ver +accondiscendesse accondiscendere ver +accondiscendete accondiscendere ver +accondiscendeva accondiscendere ver +accondiscendevano accondiscendere ver +accondiscendono accondiscendere ver +accondiscese accondiscendere ver +accondiscesero accondiscendere ver +accondisceso accondiscendere ver +acconsenta acconsentire ver +acconsentano acconsentire ver +acconsente acconsentire ver +acconsentendo acconsentire ver +acconsenti acconsentire ver +acconsentiamo acconsentire ver +acconsentii acconsentire ver +acconsentiranno acconsentire ver +acconsentire acconsentire ver +acconsentirebbe acconsentire ver +acconsentirebbero acconsentire ver +acconsentirono acconsentire ver +acconsentirà acconsentire ver +acconsentisse acconsentire ver +acconsentissero acconsentire ver +acconsentita acconsentire ver +acconsentite acconsentire ver +acconsentiti acconsentire ver +acconsentito acconsentire ver +acconsentiva acconsentire ver +acconsentivano acconsentire ver +acconsento acconsentire ver +acconsentono acconsentire ver +acconsentì acconsentire ver +accontenta accontentare ver +accontentai accontentare ver +accontentando accontentare ver +accontentandoci accontentare ver +accontentandolo accontentare ver +accontentandomi accontentare ver +accontentandosi accontentare ver +accontentano accontentare ver +accontentarci accontentare ver +accontentare accontentare ver +accontentarla accontentare ver +accontentarle accontentare ver +accontentarli accontentare ver +accontentarlo accontentare ver +accontentarmi accontentare ver +accontentarono accontentare ver +accontentarsi accontentare ver +accontentarti accontentare ver +accontentarvi accontentare ver +accontentasse accontentare ver +accontentassero accontentare ver +accontentata accontentare ver +accontentate accontentare ver +accontentatevi accontentare ver +accontentati accontentare ver +accontentato accontentare ver +accontentava accontentare ver +accontentavano accontentare ver +accontentavo accontentare ver +accontenteranno accontentare ver +accontenterebbe accontentare ver +accontenterebbero accontentare ver +accontenterei accontentare ver +accontenteremmo accontentare ver +accontentereste accontentare ver +accontenterà accontentare ver +accontenterò accontentare ver +accontenti accontentare ver +accontentiamo accontentare ver +accontentiamoci accontentare ver +accontentiamolo accontentare ver +accontentino accontentare ver +accontento accontentare ver +accontentò accontentare ver +acconti acconto nom +acconto acconto nom +accoppa accoppare ver +accoppando accoppare ver +accoppare accoppare ver +accopparlo accoppare ver +accoppati accoppare ver +accoppato accoppare ver +accoppi accoppare|accoppiare ver +accoppia accoppiare ver +accoppiabile accoppiabile adj +accoppiabili accoppiabile adj +accoppiamenti accoppiamento nom +accoppiamento accoppiamento nom +accoppiando accoppiare ver +accoppiandola accoppiare ver +accoppiandole accoppiare ver +accoppiandoli accoppiare ver +accoppiandolo accoppiare ver +accoppiandosi accoppiare ver +accoppiano accoppiare ver +accoppiante accoppiare ver +accoppiare accoppiare ver +accoppiarla accoppiare ver +accoppiarle accoppiare ver +accoppiarli accoppiare ver +accoppiarlo accoppiare ver +accoppiarono accoppiare ver +accoppiarsi accoppiare ver +accoppiasse accoppiare ver +accoppiassero accoppiare ver +accoppiata accoppiare ver +accoppiate accoppiare ver +accoppiati accoppiare ver +accoppiato accoppiare ver +accoppiava accoppiare ver +accoppiavano accoppiare ver +accoppieranno accoppiare ver +accoppierebbero accoppiare ver +accoppierà accoppiare ver +accoppino accoppare|accoppiare ver +accoppio accoppiare ver +accoppiò accoppiare ver +accoppo accoppare ver +accoppò accoppare ver +accora accorare ver +accoramento accoramento nom +accorarsene accorare ver +accorata accorato adj +accoratamente accoratamente adv +accorate accorato adj +accorati accorato adj +accorato accorato adj +accorci accorciare ver +accorcia accorciare ver +accorciabile accorciabile adj +accorciala accorciare ver +accorciamenti accorciamento nom +accorciamento accorciamento nom +accorciamo accorciare ver +accorciando accorciare ver +accorciandola accorciare ver +accorciandoli accorciare ver +accorciandolo accorciare ver +accorciandone accorciare ver +accorciandosi accorciare ver +accorciano accorciare ver +accorciare accorciare ver +accorciargli accorciare ver +accorciarla accorciare ver +accorciarle accorciare ver +accorciarli accorciare ver +accorciarlo accorciare ver +accorciarne accorciare ver +accorciarono accorciare ver +accorciarsi accorciare ver +accorciasse accorciare ver +accorciata accorciare ver +accorciate accorciare ver +accorciati accorciare ver +accorciato accorciare ver +accorciava accorciare ver +accorciavano accorciare ver +accorcino accorciare ver +accorcio accorciare ver +accorciò accorciare ver +accorda accordare ver +accordabile accordabile adj +accordabili accordabile adj +accordagli accordare ver +accordale accordare ver +accordali accordare ver +accordammo accordare ver +accordando accordare ver +accordandoci accordare ver +accordandogli accordare ver +accordandola accordare ver +accordandole accordare ver +accordandoli accordare ver +accordandosi accordare ver +accordano accordare ver +accordar accordare ver +accordarci accordare ver +accordare accordare ver +accordargli accordare ver +accordargliela accordare ver +accordarla accordare ver +accordarle accordare ver +accordarli accordare ver +accordarlo accordare ver +accordarmi accordare ver +accordarono accordare ver +accordarsi accordare ver +accordarvi accordare ver +accordasse accordare ver +accordassero accordare ver +accordata accordare ver +accordate accordare ver +accordati accordare ver +accordato accordare ver +accordatore accordatore adj +accordatori accordatore adj +accordatura accordatura nom +accordature accordatura nom +accordava accordare ver +accordavano accordare ver +accorderai accordare ver +accorderanno accordare ver +accorderebbe accordare ver +accorderebbero accordare ver +accorderemo accordare ver +accorderete accordare ver +accorderà accordare ver +accordi accordo nom +accordiamo accordare ver +accordiamoci accordare ver +accordiate accordare ver +accordino accordare ver +accordo accordo nom +accordò accordare ver +accorga accorgersi ver +accorgano accorgersi ver +accorge accorgersi ver +accorgemmo accorgersi ver +accorgendo accorgersi ver +accorgendomi accorgersi ver +accorgendosene accorgersi ver +accorgendosi accorgersi ver +accorgerai accorgersi ver +accorgeranno accorgersi ver +accorgercene accorgersi ver +accorgerci accorgersi ver +accorgere accorgersi ver +accorgerebbe accorgersi ver +accorgerebbero accorgersi ver +accorgerei accorgersi ver +accorgeremmo accorgersi ver +accorgeremo accorgersi ver +accorgereste accorgersi ver +accorgeresti accorgersi ver +accorgerete accorgersi ver +accorgermene accorgersi ver +accorgermi accorgersi ver +accorgersene accorgersi ver +accorgersi accorgersi ver +accorgertene accorgersi ver +accorgerti accorgersi ver +accorgervene accorgersi ver +accorgervi accorgersi ver +accorgerà accorgersi ver +accorgerò accorgersi ver +accorgesse accorgersi ver +accorgessero accorgersi ver +accorgessi accorgersi ver +accorgessimo accorgersi ver +accorgeste accorgersi ver +accorgete accorgersi ver +accorgeva accorgersi ver +accorgevano accorgersi ver +accorgevi accorgersi ver +accorgevo accorgersi ver +accorgi accorgersi ver +accorgiamo accorgersi ver +accorgimenti accorgimento nom +accorgimento accorgimento nom +accorgo accorgersi ver +accorgono accorgersi ver +accori accorare ver +accoro accorare ver +accorpa accorpare ver +accorpamenti accorpamento nom +accorpamento accorpamento nom +accorpando accorpare ver +accorpandola accorpare ver +accorpandole accorpare ver +accorpandoli accorpare ver +accorpandolo accorpare ver +accorpandone accorpare ver +accorpano accorpare ver +accorpante accorpare ver +accorparci accorpare ver +accorpare accorpare ver +accorparla accorpare ver +accorparle accorpare ver +accorparli accorpare ver +accorparlo accorpare ver +accorparne accorpare ver +accorparono accorpare ver +accorparsi accorpare ver +accorparvi accorpare ver +accorpasse accorpare ver +accorpata accorpare ver +accorpate accorpare ver +accorpatele accorpare ver +accorpati accorpare ver +accorpato accorpare ver +accorpava accorpare ver +accorpavano accorpare ver +accorperebbe accorpare ver +accorperei accorpare ver +accorperà accorpare ver +accorperò accorpare ver +accorpi accorpare ver +accorpiamo accorpare ver +accorpo accorpare ver +accorpò accorpare ver +accorra accorrere ver +accorrano accorrere ver +accorre accorrere ver +accorrendo accorrere ver +accorrente accorrere ver +accorrenti accorrere ver +accorreranno accorrere ver +accorrere accorrere ver +accorrerebbe accorrere ver +accorrerete accorrere ver +accorrervi accorrere ver +accorrerà accorrere ver +accorresse accorrere ver +accorressero accorrere ver +accorrete accorrere ver +accorreva accorrere ver +accorrevano accorrere ver +accorri accorrere ver +accorro accorrere ver +accorrono accorrere ver +accorsa accorrere ver +accorse accorrere ver +accorsero accorgersi|accorrere ver +accorsi accorso adj +accorso accorrere ver +accorta accorgersi ver +accorte accorgersi ver +accortezza accortezza nom +accortezze accortezza nom +accorti accorgersi ver +accorto accorgersi ver +accoscia accosciarsi ver +accosciandosi accosciarsi ver +accosciata accosciarsi ver +accosciate accosciarsi ver +accosciati accosciarsi ver +accosciato accosciarsi ver +accosta accostare ver +accostabile accostabile adj +accostabili accostabile adj +accostai accostare ver +accostamenti accostamento nom +accostamento accostamento nom +accostando accostare ver +accostandogli accostare ver +accostandola accostare ver +accostandole accostare ver +accostandoli accostare ver +accostandolo accostare ver +accostandone accostare ver +accostandosi accostare ver +accostandovi accostare ver +accostano accostare ver +accostante accostare ver +accostanti accostare ver +accostare accostare ver +accostarla accostare ver +accostarle accostare ver +accostarli accostare ver +accostarlo accostare ver +accostarmi accostare ver +accostarne accostare ver +accostarono accostare ver +accostarsi accostare ver +accostarti accostare ver +accostarvi accostare ver +accostarvisi accostare ver +accostasse accostare ver +accostassero accostare ver +accostata accostare ver +accostate accostare ver +accostati accostare ver +accostato accostare ver +accostava accostare ver +accostavano accostare ver +accosteranno accostare ver +accosterebbe accostare ver +accosterei accostare ver +accosterete accostare ver +accosterà accostare ver +accosti accostare ver +accostiamo accostare ver +accostiamoci accostare ver +accostino accostare ver +accosto accosto adv +accostò accostare ver +accovaccia accovacciarsi ver +accovacciandosi accovacciarsi ver +accovacciano accovacciarsi ver +accovacciare accovacciarsi ver +accovacciarono accovacciarsi ver +accovacciarsi accovacciarsi ver +accovacciata accovacciarsi ver +accovacciate accovacciarsi ver +accovacciati accovacciarsi ver +accovacciato accovacciarsi ver +accovacciavano accovacciarsi ver +accovacciò accovacciarsi ver +accozzaglia accozzaglia nom +accozzaglie accozzaglia nom +accozzando accozzare ver +accozzare accozzare ver +accozzati accozzare ver +accozzo accozzo nom +accrebbe accrescere ver +accrebbero accrescere ver +accredita accreditare ver +accreditabile accreditabile adj +accreditabili accreditabile adj +accreditamenti accreditamento nom +accreditamento accreditamento nom +accreditando accreditare ver +accreditandola accreditare ver +accreditandolo accreditare ver +accreditandosi accreditare ver +accreditano accreditare ver +accreditante accreditare ver +accreditare accreditare ver +accreditargli accreditare ver +accreditarla accreditare ver +accreditarle accreditare ver +accreditarli accreditare ver +accreditarlo accreditare ver +accreditarono accreditare ver +accreditarsi accreditare ver +accreditasse accreditare ver +accreditata accreditare ver +accreditate accreditato adj +accreditati accreditare ver +accreditato accreditare ver +accreditava accreditare ver +accreditavano accreditare ver +accrediterebbero accreditare ver +accrediterà accreditare ver +accrediterò accreditare ver +accrediti accredito nom +accreditino accreditare ver +accredito accredito nom +accreditò accreditare ver +accresca accrescere ver +accrescano accrescere ver +accresce accrescere ver +accrescendo accrescere ver +accrescendola accrescere ver +accrescendone accrescere ver +accrescendosi accrescere ver +accrescente accrescere ver +accrescenti accrescere ver +accrescer accrescere ver +accresceranno accrescere ver +accrescere accrescere ver +accrescerebbe accrescere ver +accrescerla accrescere ver +accrescerle accrescere ver +accrescerli accrescere ver +accrescerlo accrescere ver +accrescerne accrescere ver +accrescersi accrescere ver +accrescerti accrescere ver +accrescerà accrescere ver +accrescesse accrescere ver +accrescessero accrescere ver +accresceva accrescere ver +accrescevano accrescere ver +accresci accrescere ver +accrescimenti accrescimento nom +accrescimento accrescimento nom +accresciti accrescere ver +accrescitiva accrescitivo adj +accrescitive accrescitivo adj +accrescitivi accrescitivo adj +accrescitivo accrescitivo adj +accresciuta accrescere ver +accresciute accrescere ver +accresciuti accrescere ver +accresciuto accrescere ver +accrescono accrescere ver +accuccia accucciarsi ver +accucciandosi accucciarsi ver +accucciano accucciarsi ver +accucciare accucciarsi ver +accucciarsi accucciarsi ver +accucciata accucciarsi ver +accucciate accucciarsi ver +accucciati accucciarsi ver +accucciato accucciarsi ver +accucciava accucciarsi ver +accucciò accucciarsi ver +accudendo accudire ver +accudendola accudire ver +accudendoli accudire ver +accudendolo accudire ver +accudiranno accudire ver +accudire accudire ver +accudirla accudire ver +accudirle accudire ver +accudirli accudire ver +accudirlo accudire ver +accudirono accudire ver +accudirà accudire ver +accudisca accudire ver +accudisce accudire ver +accudiscono accudire ver +accudisse accudire ver +accudita accudire ver +accudite accudire ver +accuditi accudire ver +accudito accudire ver +accudiva accudire ver +accudivano accudire ver +accudì accudire ver +accula acculare ver +acculata acculare ver +acculi acculare ver +acculturazione acculturazione nom +accumula accumulare ver +accumulabile accumulabile adj +accumulabili accumulabile adj +accumulammo accumulare ver +accumulando accumulare ver +accumulandola accumulare ver +accumulandole accumulare ver +accumulandoli accumulare ver +accumulandolo accumulare ver +accumulandosi accumulare ver +accumulano accumulare ver +accumulante accumulare ver +accumulare accumulare ver +accumularla accumulare ver +accumularle accumulare ver +accumularli accumulare ver +accumularlo accumulare ver +accumularne accumulare ver +accumularono accumulare ver +accumularsi accumulare ver +accumulasse accumulare ver +accumulassero accumulare ver +accumulata accumulare ver +accumulate accumulare ver +accumulatesi accumulare ver +accumulati accumulare ver +accumulato accumulare ver +accumulatore accumulatore nom +accumulatori accumulatore nom +accumulava accumulare ver +accumulavano accumulare ver +accumulazione accumulazione nom +accumulazioni accumulazione nom +accumuleranno accumulare ver +accumulerebbe accumulare ver +accumulerebbero accumulare ver +accumulerà accumulare ver +accumuli accumulo nom +accumulino accumulare ver +accumulo accumulo nom +accumulò accumulare ver +accurata accurato adj +accuratamente accuratamente adv +accurate accurato adj +accuratezza accuratezza nom +accuratezze accuratezza nom +accurati accurato adj +accurato accurato adj +accusa accusa nom +accusabile accusabile adj +accusabili accusabile adj +accusai accusare ver +accusando accusare ver +accusandoci accusare ver +accusandola accusare ver +accusandole accusare ver +accusandoli accusare ver +accusandolo accusare ver +accusandomi accusare ver +accusandone accusare ver +accusandosi accusare ver +accusandoti accusare ver +accusano accusare ver +accusante accusare ver +accusanti accusare ver +accusar accusare ver +accusarci accusare ver +accusare accusare ver +accusarla accusare ver +accusarli accusare ver +accusarlo accusare ver +accusarmi accusare ver +accusarne accusare ver +accusarono accusare ver +accusarsi accusare ver +accusarti accusare ver +accusarvi accusare ver +accusasse accusare ver +accusassero accusare ver +accusasti accusare ver +accusata accusare ver +accusate accusare ver +accusatemi accusare ver +accusati accusare ver +accusativa accusativo adj +accusative accusativo adj +accusativi accusativo adj +accusativo accusativo adj +accusato accusare ver +accusatore accusatore nom +accusatori accusatore nom +accusatoria accusatorio adj +accusatorie accusatorio adj +accusatorio accusatorio adj +accusatrice accusatore nom +accusatrici accusatore nom +accusava accusare ver +accusavano accusare ver +accuse accusa nom +accuserai accusare ver +accuseranno accusare ver +accuserebbe accusare ver +accuserebbero accusare ver +accuserei accusare ver +accuserà accusare ver +accusi accusare ver +accusiamo accusare ver +accusino accusare ver +accuso accusare ver +accusò accusare ver +acefala acefalo adj +acefale acefalo adj +acefali acefalo adj +acefalo acefalo adj +acellulare acellulare adj +acellulari acellulare adj +aceracee aceracee nom +acerba acerbo adj +acerbe acerbo adj +acerbi acerbo adj +acerbità acerbità nom +acerbo acerbo adj +acereta acereta nom +aceri acero nom +acero acero nom +acerrima acerrimo adj +acerrime acerrimo adj +acerrimi acerrimo adj +acerrimo acerrimo adj +acervo acervo adj +acetabolo acetabolo nom +acetabularia acetabularia nom +acetaldeide acetaldeide nom +acetati acetato nom +acetato acetato nom +aceti aceto nom +acetica acetico adj +acetici acetico adj +acetico acetico adj +acetifico acetificare ver +acetilcellulosa acetilcellulosa nom +acetile acetile nom +acetilene acetilene nom +acetileni acetilene nom +acetili acetile nom +acetilsalicilico acetilsalicilico adj +aceto aceto nom +acetone acetone nom +acetonemia acetonemia nom +acetoni acetone nom +acetonico acetonico adj +acetosa acetoso adj +acetosella acetosella nom +acetoso acetoso adj +achea acheo nom +achee acheo nom +achei acheo nom +acheni achenio nom +achenio achenio nom +acheo acheo nom +acheronte acheronte nom +achillea achillea nom +achillee achillea nom +aciclica aciclico adj +acicliche aciclico adj +aciclici aciclico adj +aciclico aciclico adj +acida acido adj +acide acido adj +acidi acido nom +acidifica acidificare ver +acidificaci acidificare ver +acidificando acidificare ver +acidificano acidificare ver +acidificante acidificare ver +acidificanti acidificare ver +acidificare acidificare ver +acidificarsi acidificare ver +acidificata acidificare ver +acidificate acidificare ver +acidificati acidificare ver +acidificato acidificare ver +acidificazione acidificazione nom +acidità acidità nom +acido acido adj +acidosi acidosi nom +acidula acidulo adj +acidule acidulo adj +aciduli acidulo adj +acidulo acidulo adj +acinellatura acinellatura nom +acini acino nom +acino acino nom +acinosa acinoso adj +acinose acinoso adj +acinoso acinoso adj +acloridria acloridria nom +acme acme nom +acmi acme nom +acmonital acmonital nom +acne acne nom +acneiche acneico adj +acni acne nom +aconfessionale aconfessionale adj +aconfessionali aconfessionale adj +aconfessionalità aconfessionalità nom +aconiti aconito nom +aconitina aconitina nom +aconitine aconitina nom +aconito aconito nom +acori acoro nom +acoro acoro nom +acqua acqua nom +acquacoltura acquacoltura nom +acquaforte acquaforte nom +acquafortista acquafortista nom +acquafortisti acquafortista nom +acquai acquaio nom +acquaio acquaio nom +acquaiola acquaiolo nom +acquaiole acquaiolo nom +acquaioli acquaiolo nom +acquaiolo acquaiolo nom +acquamarina acquamarina nom +acquamarine acquamarina nom +acquaragia acquaragia nom +acquarelli acquarello nom +acquarello acquarello nom +acquari acquario nom +acquario acquario nom +acquartiera acquartierare ver +acquartieramenti acquartieramento nom +acquartieramento acquartieramento nom +acquartierando acquartierare ver +acquartierandole acquartierare ver +acquartierandosi acquartierare ver +acquartierano acquartierare ver +acquartierare acquartierare ver +acquartierarono acquartierare ver +acquartierarsi acquartierare ver +acquartierarvi acquartierare ver +acquartierata acquartierare ver +acquartierate acquartierare ver +acquartierati acquartierare ver +acquartierato acquartierare ver +acquartierava acquartierare ver +acquartierò acquartierare ver +acquasanta acquasanta nom +acquasantiera acquasantiera nom +acquasantiere acquasantiera nom +acquata acquata nom +acquate acquata nom +acquatica acquatico adj +acquatiche acquatico adj +acquatici acquatico adj +acquatico acquatico adj +acquatinta acquatinta nom +acquatta acquattare ver +acquattandosi acquattare ver +acquattano acquattare ver +acquattarsi acquattare ver +acquattata acquattare ver +acquattate acquattare ver +acquattati acquattare ver +acquattato acquattare ver +acquattino acquattare ver +acquavite acquavite nom +acquaviti acquavite nom +acquazzone acquazzone nom +acquazzoni acquazzone nom +acque acqua nom +acquea acqueo adj +acquedotti acquedotto nom +acquedotto acquedotto nom +acquee acqueo adj +acquei acqueo adj +acqueo acqueo adj +acquerellata acquerellare ver +acquerellate acquerellare ver +acquerellati acquerellare ver +acquerellato acquerellare ver +acquerelli acquerello nom +acquerellista acquerellista nom +acquerellisti acquerellista nom +acquerello acquerello nom +acquetinte acquetinte nom +acquicoltura acquicoltura nom +acquidocci acquidoccio nom +acquiescente acquiescente adj +acquiescenti acquiescente adj +acquiescenza acquiescenza nom +acquieta acquietare ver +acquietandosi acquietare ver +acquietano acquietare ver +acquietare acquietare ver +acquietarono acquietare ver +acquietarsi acquietare ver +acquietata acquietare ver +acquietati acquietare ver +acquietato acquietare ver +acquieti acquietare ver +acquieto acquietare ver +acquietò acquietare ver +acquifera acquifero adj +acquifere acquifero adj +acquiferi acquifero adj +acquifero acquifero adj +acquirente acquirente nom +acquirenti acquirente nom +acquisendo acquisire ver +acquisendola acquisire ver +acquisendole acquisire ver +acquisendoli acquisire ver +acquisendolo acquisire ver +acquisendone acquisire ver +acquisiamo acquisire ver +acquisii acquisire ver +acquisir acquisire ver +acquisiranno acquisire ver +acquisire acquisire ver +acquisirebbe acquisire ver +acquisirebbero acquisire ver +acquisiremo acquisire ver +acquisirla acquisire ver +acquisirle acquisire ver +acquisirli acquisire ver +acquisirlo acquisire ver +acquisirne acquisire ver +acquisirono acquisire ver +acquisirsi acquisire ver +acquisirà acquisire ver +acquisirò acquisire ver +acquisisca acquisire ver +acquisiscano acquisire ver +acquisisce acquisire ver +acquisisci acquisire ver +acquisiscono acquisire ver +acquisisse acquisire ver +acquisissero acquisire ver +acquisita acquisire ver +acquisite acquisito adj +acquisiti acquisire ver +acquisito acquisire ver +acquisitore acquisitore nom +acquisitori acquisitore nom +acquisiva acquisire ver +acquisivano acquisire ver +acquisizione acquisizione nom +acquisizioni acquisizione nom +acquista acquistare ver +acquistai acquistare ver +acquistando acquistare ver +acquistandogli acquistare ver +acquistandola acquistare ver +acquistandole acquistare ver +acquistandoli acquistare ver +acquistandolo acquistare ver +acquistandone acquistare ver +acquistandosi acquistare ver +acquistandovi acquistare ver +acquistano acquistare ver +acquistar acquistare ver +acquistarci acquistare ver +acquistare acquistare ver +acquistargli acquistare ver +acquistarla acquistare ver +acquistarle acquistare ver +acquistarli acquistare ver +acquistarlo acquistare ver +acquistarne acquistare ver +acquistarono acquistare ver +acquistarsi acquistare ver +acquistarvi acquistare ver +acquistasse acquistare ver +acquistassero acquistare ver +acquistassi acquistare ver +acquistata acquistare ver +acquistate acquistare ver +acquistati acquistare ver +acquistato acquistare ver +acquistava acquistare ver +acquistavano acquistare ver +acquistavo acquistare ver +acquisterai acquistare ver +acquisteranno acquistare ver +acquisterebbe acquistare ver +acquisterebbero acquistare ver +acquisterei acquistare ver +acquisterà acquistare ver +acquisti acquisto nom +acquistiamo acquistare ver +acquistino acquistare ver +acquisto acquisto nom +acquistò acquistare ver +acquisì acquisire ver +acquitrini acquitrino nom +acquitrino acquitrino nom +acquitrinosa acquitrinoso adj +acquitrinose acquitrinoso adj +acquitrinosi acquitrinoso adj +acquitrinoso acquitrinoso adj +acquolina acquolina nom +acquosa acquoso adj +acquose acquoso adj +acquosi acquoso adj +acquosità acquosità nom +acquoso acquoso adj +acre acre adj +acredine acredine nom +acredini acredine nom +acremente acremente adv +acri acre adj +acribia acribia nom +acrilamide acrilamide nom +acrilica acrilico adj +acriliche acrilico adj +acrilici acrilico adj +acrilico acrilico adj +acrimonia acrimonia nom +acrimonie acrimonia nom +acrimoniosa acrimonioso adj +acrimoniose acrimonioso adj +acrimonioso acrimonioso adj +acrisia acrisia nom +acritica acritico adj +acriticamente acriticamente adv +acritiche acritico adj +acritici acritico adj +acritico acritico adj +acro acro nom +acrobata acrobata nom +acrobate acrobata nom +acrobati acrobata nom +acrobatica acrobatico adj +acrobatiche acrobatico adj +acrobatici acrobatico adj +acrobatico acrobatico adj +acrobatismi acrobatismo nom +acrobatismo acrobatismo nom +acrobazia acrobazia nom +acrobazie acrobazia nom +acrocianosi acrocianosi nom +acrocori acrocoro nom +acrocoro acrocoro nom +acromatica acromatico adj +acromatiche acromatico adj +acromatici acromatico adj +acromatico acromatico adj +acromegalia acromegalia nom +acromegalie acromegalia nom +acronimi acronimo nom +acronimo acronimo nom +acropoli acropoli nom +acrostici acrostico nom +acrostico acrostico nom +acroteri acroterio nom +acroterio acroterio nom +acuendo acuire ver +acuendosi acuire ver +acuiranno acuire ver +acuire acuire ver +acuirono acuire ver +acuirsi acuire ver +acuirà acuire ver +acuisca acuire ver +acuisce acuire ver +acuiscono acuire ver +acuisse acuire ver +acuissero acuire ver +acuita acuire ver +acuite acuire ver +acuiti acuire ver +acuito acuire ver +acuità acuità nom +acuiva acuire ver +acuivano acuire ver +aculeata aculeato adj +aculeate aculeato adj +aculeati aculeato adj +aculeato aculeato adj +aculei aculeo nom +aculeo aculeo nom +acume acume nom +acuminata acuminato adj +acuminate acuminato adj +acuminati acuminato adj +acuminato acuminato adj +acustica acustico adj +acustiche acustico adj +acustici acustico adj +acustico acustico adj +acuta acuto adj +acutamente acutamente adv +acutangoli acutangolo adj +acutangolo acutangolo adj +acute acuto adj +acutezza acutezza nom +acutezze acutezza nom +acuti acuto adj +acutizza acutizzare ver +acutizzando acutizzare ver +acutizzano acutizzare ver +acutizzare acutizzare ver +acutizzarono acutizzare ver +acutizzarsi acutizzare ver +acutizzata acutizzare ver +acutizzate acutizzare ver +acutizzato acutizzare ver +acutizzazione acutizzazione nom +acutizzò acutizzare ver +acuto acuto adj +acuzie acuzie nom +acuì acuire ver +ad ad pre +adagi adagio nom +adagia adagiare ver +adagiando adagiare ver +adagiandoli adagiare ver +adagiandolo adagiare ver +adagiandosi adagiare ver +adagiano adagiare ver +adagiare adagiare ver +adagiarla adagiare ver +adagiarlo adagiare ver +adagiarono adagiare ver +adagiarsi adagiare ver +adagiata adagiare ver +adagiate adagiare ver +adagiati adagiare ver +adagiato adagiare ver +adagiava adagiare ver +adagiavano adagiare ver +adagio adagio adv +adagiò adagiare ver +adamantina adamantino adj +adamantine adamantino adj +adamantini adamantino adj +adamantino adamantino adj +adamitica adamitico adj +adamitici adamitico adj +adamitico adamitico adj +adatta adatto adj +adattabile adattabile adj +adattabili adattabile adj +adattabilità adattabilità nom +adattai adattare ver +adattamenti adattamento nom +adattamento adattamento nom +adattando adattare ver +adattandola adattare ver +adattandole adattare ver +adattandoli adattare ver +adattandolo adattare ver +adattandone adattare ver +adattandosi adattare ver +adattano adattare ver +adattar adattare ver +adattarci adattare ver +adattare adattare ver +adattarla adattare ver +adattarle adattare ver +adattarli adattare ver +adattarlo adattare ver +adattarmi adattare ver +adattarne adattare ver +adattarono adattare ver +adattarsi adattare ver +adattarti adattare ver +adattarvi adattare ver +adattarvisi adattare ver +adattasse adattare ver +adattassero adattare ver +adattata adattare ver +adattate adattare ver +adattatesi adattare ver +adattatevi adattare ver +adattati adattare ver +adattato adattare ver +adattava adattare ver +adattavano adattare ver +adatte adatto adj +adatteranno adattare ver +adatterebbe adattare ver +adatterebbero adattare ver +adatterà adattare ver +adatterò adattare ver +adatti adatto adj +adattiamo adattare ver +adattino adattare ver +adatto adatto adj +adattò adattare ver +addebita addebitare ver +addebitamento addebitamento nom +addebitando addebitare ver +addebitandogli addebitare ver +addebitandone addebitare ver +addebitano addebitare ver +addebitare addebitare ver +addebitargli addebitare ver +addebitarli addebitare ver +addebitarono addebitare ver +addebitarsi addebitare ver +addebitata addebitare ver +addebitate addebitare ver +addebitati addebitare ver +addebitato addebitare ver +addebitava addebitare ver +addebitavano addebitare ver +addebiterà addebitare ver +addebiti addebito nom +addebito addebito nom +addebitò addebitare ver +addendi addendo nom +addendo addendo nom +addensa addensare ver +addensamenti addensamento nom +addensamento addensamento nom +addensando addensare ver +addensandosi addensare ver +addensano addensare ver +addensante addensare ver +addensanti addensare ver +addensare addensare ver +addensarono addensare ver +addensarsi addensare ver +addensata addensare ver +addensate addensare ver +addensati addensare ver +addensato addensare ver +addensava addensare ver +addensavano addensare ver +addenserebbero addensare ver +addenserà addensare ver +addensi addensare ver +addensino addensare ver +addenta addentare ver +addentando addentare ver +addentandola addentare ver +addentano addentare ver +addentare addentare ver +addentarlo addentare ver +addentarsi addentare ver +addentata addentare ver +addentato addentare ver +addentava addentare ver +addentellati addentellato nom +addentellato addentellato nom +addenterà addentare ver +addenti addentare ver +addentra addentrare ver +addentrando addentrare ver +addentrandoci addentrare ver +addentrandosi addentrare ver +addentrano addentrare ver +addentrarci addentrare ver +addentrare addentrare ver +addentrarmi addentrare ver +addentrarono addentrare ver +addentrarsi addentrare ver +addentrarti addentrare ver +addentrasse addentrare ver +addentrata addentrare ver +addentrate addentrare ver +addentrati addentrare ver +addentrato addentrare ver +addentrava addentrare ver +addentravano addentrare ver +addentrerà addentrare ver +addentri addentrare ver +addentriamo addentrare ver +addentriamoci addentrare ver +addentrino addentrare ver +addentro addentrare ver +addentrò addentrare ver +addentò addentare ver +addestra addestrare ver +addestrabile addestrabile adj +addestrabili addestrabile adj +addestramenti addestramento nom +addestramento addestramento nom +addestrando addestrare ver +addestrandoli addestrare ver +addestrandolo addestrare ver +addestrandone addestrare ver +addestrandosi addestrare ver +addestrano addestrare ver +addestrante addestrare ver +addestrare addestrare ver +addestrarla addestrare ver +addestrarle addestrare ver +addestrarli addestrare ver +addestrarlo addestrare ver +addestrarne addestrare ver +addestrarono addestrare ver +addestrarsi addestrare ver +addestrasse addestrare ver +addestrassero addestrare ver +addestrata addestrare ver +addestrate addestrare ver +addestrati addestrare ver +addestrato addestrare ver +addestratore addestratore nom +addestratori addestratore nom +addestratrice addestratore nom +addestrava addestrare ver +addestravano addestrare ver +addestrerà addestrare ver +addestrino addestrare ver +addestro addestrare ver +addestrò addestrare ver +addetta addirsi ver +addette addirsi ver +addetti addetto nom +addetto addirsi ver +addiaccio addiaccio nom +addica addirsi ver +addicano addirsi ver +addice addirsi ver +addicendosi addirsi ver +addicesse addirsi ver +addiceva addirsi ver +addicevano addirsi ver +addici addirsi ver +addico addirsi ver +addicono addirsi ver +addietro addietro adv +addii addio nom +addio addio nom +addir addirsi ver +addire addirsi ver +addirittura addirittura adv_sup +addirsi addirsi ver +addirvi addirsi ver +addita additare ver +additando additare ver +additandogli additare ver +additandola additare ver +additandole additare ver +additandoli additare ver +additandolo additare ver +additandone additare ver +additano additare ver +additante additare ver +additare additare ver +additarla additare ver +additarli additare ver +additarlo additare ver +additarono additare ver +additata additare ver +additate additare ver +additati additare ver +additato additare ver +additava additare ver +additavano additare ver +additerebbe additare ver +additi additare ver +additino additare ver +additivi additivo nom +additivo additivo nom +addito additare ver +additò additare ver +addivenendo addivenire ver +addivenga addivenire ver +addivenire addivenire ver +addivenisse addivenire ver +addivenne addivenire ver +addivennero addivenire ver +addivenuta addivenire ver +addivenuti addivenire ver +addivenuto addivenire ver +addiverrà addivenire ver +addiviene addivenire ver +addiziona addizionare ver +addizionale addizionale adj +addizionali addizionale adj +addizionalità addizionalità nom +addizionando addizionare ver +addizionandogli addizionare ver +addizionandolo addizionare ver +addizionandosi addizionare ver +addizionano addizionare ver +addizionanti addizionare ver +addizionare addizionare ver +addizionarlo addizionare ver +addizionarne addizionare ver +addizionarsi addizionare ver +addizionata addizionare ver +addizionate addizionare ver +addizionati addizionare ver +addizionato addizionare ver +addizionatrice addizionatrice nom +addizionatrici addizionatrice nom +addizionava addizionare ver +addizionavano addizionare ver +addizione addizione nom +addizionerà addizionare ver +addizioni addizione nom +addobba addobbare ver +addobbamento addobbamento nom +addobbando addobbare ver +addobbano addobbare ver +addobbare addobbare ver +addobbarsi addobbare ver +addobbata addobbare ver +addobbate addobbare ver +addobbati addobbare ver +addobbato addobbare ver +addobbavano addobbare ver +addobbi addobbo nom +addobbo addobbo nom +addobbò addobbare ver +addolcendo addolcire ver +addolcendone addolcire ver +addolcendosi addolcire ver +addolcente addolcire ver +addolcenti addolcire ver +addolcimenti addolcimento nom +addolcimento addolcimento nom +addolcire addolcire ver +addolcirebbe addolcire ver +addolcirla addolcire ver +addolcirli addolcire ver +addolcirlo addolcire ver +addolcirne addolcire ver +addolcirono addolcire ver +addolcirsi addolcire ver +addolcirà addolcire ver +addolciscano addolcire ver +addolcisce addolcire ver +addolciscono addolcire ver +addolcita addolcire ver +addolcite addolcire ver +addolciti addolcire ver +addolcito addolcire ver +addolcitore addolcitore nom +addolcitori addolcitore nom +addolciva addolcire ver +addolcì addolcire ver +addolora addolorare ver +addolorano addolorare ver +addolorare addolorare ver +addolorarono addolorare ver +addolorarsi addolorare ver +addolorata addolorato adj +addolorate addolorato adj +addolorati addolorare ver +addolorato addolorare ver +addolorava addolorare ver +addolorerà addolorare ver +addolori addolorare ver +addolorò addolorare ver +addome addome nom +addomestica addomesticare ver +addomesticabile addomesticabile adj +addomesticabili addomesticabile adj +addomesticamento addomesticamento nom +addomesticando addomesticare ver +addomesticano addomesticare ver +addomesticante addomesticare ver +addomesticare addomesticare ver +addomesticarli addomesticare ver +addomesticarlo addomesticare ver +addomesticarono addomesticare ver +addomesticasse addomesticare ver +addomesticata addomesticare ver +addomesticate addomesticare ver +addomesticati addomesticato adj +addomesticato addomesticare ver +addomesticò addomesticare ver +addomi addome nom +addominale addominale adj +addominali addominale adj +addorme addormire ver +addormenta addormentare ver +addormentamento addormentamento nom +addormentando addormentare ver +addormentandola addormentare ver +addormentandoli addormentare ver +addormentandolo addormentare ver +addormentandosi addormentare ver +addormentano addormentare ver +addormentarci addormentare ver +addormentare addormentare ver +addormentarla addormentare ver +addormentarli addormentare ver +addormentarlo addormentare ver +addormentarmi addormentare ver +addormentarono addormentare ver +addormentarsi addormentare ver +addormentarti addormentare ver +addormentasse addormentare ver +addormentata addormentare ver +addormentate addormentato adj +addormentati addormentare ver +addormentato addormentare ver +addormentava addormentare ver +addormentavano addormentare ver +addormenteranno addormentare ver +addormenterei addormentare ver +addormenterà addormentare ver +addormenti addormentare ver +addormento addormentare ver +addormentò addormentare ver +addossa addossare ver +addossamento addossamento nom +addossando addossare ver +addossandogli addossare ver +addossandola addossare ver +addossandole addossare ver +addossandolo addossare ver +addossandone addossare ver +addossandosi addossare ver +addossano addossare ver +addossarci addossare ver +addossare addossare ver +addossargli addossare ver +addossarmi addossare ver +addossarne addossare ver +addossarono addossare ver +addossarsene addossare ver +addossarsi addossare ver +addossata addossare ver +addossate addossare ver +addossati addossare ver +addossato addossare ver +addossava addossare ver +addossavano addossare ver +addosserebbe addossare ver +addosserà addossare ver +addossi addossare ver +addosso addosso adv_sup +addossò addossare ver +addotta addurre ver +addotte addurre ver +addotti addurre ver +addotto addurre ver +addottorandosi addottorare ver +addottorarsi addottorare ver +addottorata addottorare ver +addottorato addottorare ver +addottorò addottorare ver +addottrinando addottrinare ver +addottrinato addottrinare ver +adduca addurre ver +adducano addurre ver +adduce addurre ver +adducendo addurre ver +adducendone addurre ver +adducesse addurre ver +adducessi addurre ver +adduceste addurre ver +adducete addurre ver +adduceva addurre ver +adducevano addurre ver +adducevi addurre ver +adducevo addurre ver +adduci addurre ver +adduciamo addurre ver +adducibile adducibile adj +adduco addurre ver +adducono addurre ver +addur addurre ver +addurle addurre ver +addurne addurre ver +addurre addurre ver +addurrebbe addurre ver +addurrò addurre ver +addusse addurre ver +addussero addurre ver +adduttore adduttore adj +adduttori adduttore adj +adduttrice adduttore adj +adduttrici adduttore adj +adduzione adduzione nom +adduzioni adduzione nom +addì addirsi ver +adegua adeguare ver +adeguabili adeguabile adj +adeguamenti adeguamento nom +adeguamento adeguamento nom +adeguando adeguare ver +adeguandola adeguare ver +adeguandole adeguare ver +adeguandoli adeguare ver +adeguandolo adeguare ver +adeguandomi adeguare ver +adeguandone adeguare ver +adeguandosi adeguare ver +adeguano adeguare ver +adeguarci adeguare ver +adeguare adeguare ver +adeguarla adeguare ver +adeguarle adeguare ver +adeguarli adeguare ver +adeguarlo adeguare ver +adeguarmi adeguare ver +adeguarne adeguare ver +adeguarono adeguare ver +adeguarsi adeguare ver +adeguarti adeguare ver +adeguarvi adeguare ver +adeguasse adeguare ver +adeguassero adeguare ver +adeguata adeguato adj +adeguatamente adeguatamente adv +adeguate adeguato adj +adeguatezza adeguatezza nom +adeguati adeguato adj +adeguato adeguare ver +adeguava adeguare ver +adeguavano adeguare ver +adeguazione adeguazione nom +adegueranno adeguare ver +adeguerebbe adeguare ver +adeguerei adeguare ver +adegueremmo adeguare ver +adegueremo adeguare ver +adeguerà adeguare ver +adeguerò adeguare ver +adegui adeguare ver +adeguiamo adeguare ver +adeguiamoci adeguare ver +adeguino adeguare ver +adeguo adeguare ver +adeguò adeguare ver +adempi adempiere ver +adempia adempiere ver +adempiamo adempiere|adempire ver +adempiano adempiere ver +adempie adempiere ver +adempiendo adempiere ver +adempiente adempiere ver +adempienti adempiere ver +adempiere adempiere ver +adempierla adempiere ver +adempierle adempiere ver +adempierli adempiere ver +adempierlo adempiere ver +adempiersi adempiere ver +adempiervi adempiere ver +adempimenti adempimento nom +adempimento adempimento nom +adempio adempiere ver +adempiono adempiere ver +adempire adempire ver +adempirono adempiere|adempire ver +adempirà adempiere|adempire ver +adempirò adempiere|adempire ver +adempisca adempire ver +adempiscano adempire ver +adempisse adempiere|adempire ver +adempita adempire ver +adempite adempire ver +adempiti adempire ver +adempito adempire ver +adempiuta adempiere ver +adempiute adempiere ver +adempiuti adempiere ver +adempiuto adempiere ver +adempiva adempiere|adempire ver +adempivano adempiere|adempire ver +adempì adempiere|adempire ver +adenite adenite nom +adeniti adenite nom +adenoide adenoide nom +adenoidi adenoide nom +adenoma adenoma nom +adenomi adenoma nom +adenotomie adenotomia nom +adenovirus adenovirus nom +adenti adire ver +adepta adepto adj +adepte adepto adj +adepti adepto adj +adepto adepto adj +aderendo aderire ver +aderendovi aderire ver +aderente aderente adj +aderenti aderente adj +aderenza aderenza nom +aderenze aderenza nom +adergono adergere ver +aderiamo aderire ver +aderiranno aderire ver +aderire aderire ver +aderirei aderire ver +aderirne aderire ver +aderirono aderire ver +aderirvi aderire ver +aderirà aderire ver +aderisca aderire ver +aderiscano aderire ver +aderisce aderire ver +aderisci aderire ver +aderisco aderire ver +aderiscono aderire ver +aderisse aderire ver +aderissero aderire ver +aderita aderire ver +aderite aderire ver +aderito aderire ver +aderiva aderire ver +aderivano aderire ver +adersi adergere ver +aderì aderire ver +adesca adescare ver +adescamenti adescamento nom +adescamento adescamento nom +adescando adescare ver +adescandole adescare ver +adescano adescare ver +adescante adescare ver +adescare adescare ver +adescarla adescare ver +adescarli adescare ver +adescarlo adescare ver +adescarono adescare ver +adescassero adescare ver +adescata adescare ver +adescate adescare ver +adescati adescare ver +adescato adescare ver +adescatore adescatore nom +adescatori adescatore nom +adescatrice adescatore adj +adescava adescare ver +adescavano adescare ver +adescò adescare ver +adesione adesione nom +adesioni adesione nom +adesiva adesivo adj +adesive adesivo adj +adesivi adesivo nom +adesivo adesivo adj +adespota adespoto adj +adespote adespoto adj +adespoti adespoto adj +adespoto adespoto adj +adesso adesso adv_sup +adiabatica adiabatico adj +adiabatiche adiabatico adj +adiabatici adiabatico adj +adiabatico adiabatico adj +adiacente adiacente adj +adiacenti adiacente adj +adiacenza adiacenza nom +adiacenze adiacenza nom +adibendo adibire ver +adibendola adibire ver +adibendoli adibire ver +adibendolo adibire ver +adibendone adibire ver +adibendovi adibire ver +adibire adibire ver +adibirla adibire ver +adibirle adibire ver +adibirli adibire ver +adibirlo adibire ver +adibirne adibire ver +adibirono adibire ver +adibirsi adibire ver +adibirà adibire ver +adibisce adibire ver +adibiscono adibire ver +adibita adibire ver +adibite adibire ver +adibiti adibire ver +adibito adibire ver +adibiva adibire ver +adibì adibire ver +adii adire ver +adipe adipe nom +adiposa adiposo adj +adipose adiposo adj +adiposi adiposo adj +adiposità adiposità nom +adiposo adiposo adj +adir adire ver +adira adirarsi ver +adirandosi adirarsi ver +adirano adirarsi ver +adirare adirarsi ver +adirarono adirarsi ver +adirarsi adirarsi ver +adirata adirarsi ver +adirate adirarsi ver +adirati adirarsi ver +adirato adirarsi ver +adirava adirarsi ver +adire adire ver +adirerà adirarsi ver +adiri adirarsi ver +adiro adirarsi ver +adirono adire ver +adirsi adire ver +adirò adire ver +adisce adire ver +adisco adire ver +adita adire ver +adite adire ver +aditi adire ver +adito adire ver +adiva adire ver +adocchia adocchiare ver +adocchiano adocchiare ver +adocchiare adocchiare ver +adocchiata adocchiare ver +adocchiate adocchiare ver +adocchiati adocchiare ver +adocchiato adocchiare ver +adocchio adocchiare ver +adocchiò adocchiare ver +adolescente adolescente adj +adolescenti adolescente nom +adolescenza adolescenza nom +adolescenze adolescenza nom +adombra adombrare ver +adombrando adombrare ver +adombrandone adombrare ver +adombrano adombrare ver +adombranti adombrare ver +adombrare adombrare ver +adombrasse adombrare ver +adombrata adombrare ver +adombrate adombrare ver +adombrati adombrare ver +adombrato adombrare ver +adombrava adombrare ver +adombravano adombrare ver +adombri adombrare ver +adombrino adombrare ver +adombrò adombrare ver +adone adone nom +adoni adone|adonio nom +adonide adonide nom +adonio adonio nom +adonta adontarsi ver +adopera adoperare ver +adoperabile adoperabile adj +adoperabili adoperabile adj +adoperai adoperare ver +adoperando adoperare ver +adoperandoci adoperare ver +adoperandola adoperare ver +adoperandole adoperare ver +adoperandolo adoperare ver +adoperandone adoperare ver +adoperandosi adoperare ver +adoperano adoperare ver +adoperante adoperare ver +adoperar adoperare ver +adoperarci adoperare ver +adoperare adoperare ver +adoperarla adoperare ver +adoperarle adoperare ver +adoperarli adoperare ver +adoperarlo adoperare ver +adoperarmi adoperare ver +adoperarne adoperare ver +adoperarono adoperare ver +adoperarsi adoperare ver +adoperarti adoperare ver +adoperasse adoperare ver +adoperassero adoperare ver +adoperassimo adoperare ver +adoperata adoperare ver +adoperate adoperare ver +adoperati adoperare ver +adoperato adoperare ver +adoperava adoperare ver +adoperavano adoperare ver +adopereranno adoperare ver +adopereremo adoperare ver +adopererà adoperare ver +adopererò adoperare ver +adoperi adoperare ver +adoperiamo adoperare ver +adoperino adoperare ver +adopero adoperare ver +adoperò adoperare ver +adoprarsi adoprare ver +adoprata adoprare ver +adoprerà adoprare ver +adora adorare ver +adorabile adorabile adj +adorabili adorabile adj +adoraci adorare ver +adorai adorare ver +adorale adorare ver +adorami adorare ver +adorando adorare ver +adorandolo adorare ver +adorano adorare ver +adorante adorare ver +adoranti adorare ver +adorar adorare ver +adorare adorare ver +adorarla adorare ver +adorarli adorare ver +adorarlo adorare ver +adorarmi adorare ver +adorarne adorare ver +adorarono adorare ver +adorarti adorare ver +adorasse adorare ver +adorassero adorare ver +adorassimo adorare ver +adorasti adorare ver +adorata adorare ver +adorate adorare ver +adorati adorare ver +adorato adorare ver +adoratore adoratore nom +adoratori adoratore nom +adoratrice adoratore nom +adoratrici adoratore nom +adorava adorare ver +adoravamo adorare ver +adoravano adorare ver +adoravi adorare ver +adoravo adorare ver +adorazione adorazione nom +adorazioni adorazione nom +adorerai adorare ver +adoreranno adorare ver +adoreremo adorare ver +adorerete adorare ver +adorerà adorare ver +adorerò adorare ver +adori adorare ver +adoriamo adorare ver +adorino adorare ver +adorna adornare ver +adornamenti adornamento nom +adornamento adornamento nom +adornando adornare ver +adornandola adornare ver +adornandole adornare ver +adornandolo adornare ver +adornano adornare ver +adornare adornare ver +adornarla adornare ver +adornarle adornare ver +adornarlo adornare ver +adornarne adornare ver +adornarono adornare ver +adornarsi adornare ver +adornasse adornare ver +adornata adornare ver +adornate adornare ver +adornati adornare ver +adornato adornare ver +adornava adornare ver +adornavano adornare ver +adorne adorno adj +adornerà adornare ver +adorni adorno adj +adornino adornare ver +adorno adorno adj +adornò adornare ver +adoro adorare ver +adorò adorare ver +adotta adottare ver +adottabile adottabile adj +adottabili adottabile adj +adottai adottare ver +adottamento adottamento nom +adottandi adottando nom +adottando adottare ver +adottandola adottare ver +adottandole adottare ver +adottandoli adottare ver +adottandolo adottare ver +adottandone adottare ver +adottano adottare ver +adottante adottante adj +adottanti adottante nom +adottare adottare ver +adottarla adottare ver +adottarle adottare ver +adottarli adottare ver +adottarlo adottare ver +adottarne adottare ver +adottarono adottare ver +adottarsi adottare ver +adottarti adottare ver +adottasse adottare ver +adottassero adottare ver +adottassimo adottare ver +adottata adottare ver +adottate adottare ver +adottati adottare ver +adottato adottare ver +adottava adottare ver +adottavano adottare ver +adottavo adottare ver +adotterai adottare ver +adotteranno adottare ver +adotterebbe adottare ver +adotterebbero adottare ver +adotterei adottare ver +adotteremo adottare ver +adotterà adottare ver +adotterò adottare ver +adotti adottare ver +adottiamo adottare ver +adottiamolo adottare ver +adottino adottare ver +adottiva adottivo adj +adottive adottivo adj +adottivi adottivo adj +adottivo adottivo adj +adotto adottare ver +adottò adottare ver +adozione adozione nom +adozioni adozione nom +adragante adragante adj +adrenalina adrenalina nom +adrenaline adrenalina nom +adriatica adriatico adj +adriatiche adriatico adj +adriatici adriatico adj +adriatico adriatico adj +adsorbente adsorbente adj +adsorbenti adsorbente adj +adsorbire adsorbire ver +adsorbita adsorbire ver +adsorbite adsorbire ver +adsorbiti adsorbire ver +adsorbito adsorbire ver +adula adulare ver +adulando adulare ver +adulandola adulare ver +adulandolo adulare ver +adulano adulare ver +adulanti adulare ver +adular adulare ver +adulare adulare ver +adularla adulare ver +adularlo adulare ver +adulata adulare ver +adulati adulare ver +adulato adulare ver +adulatore adulatore nom +adulatori adulatorio adj +adulatoria adulatorio adj +adulatorie adulatorio adj +adulatorio adulatorio adj +adulatrice adulatore nom +adulatrici adulatore nom +adulavano adulare ver +adulazione adulazione nom +adulazioni adulazione nom +aduli adulare ver +adulo adulare ver +adulta adulto adj +adulte adulto adj +adultera adultero adj +adulterante adulterante adj +adulteranti adulterante adj +adulterare adulterare ver +adulterata adulterare ver +adulterate adulterare ver +adulterati adulterare ver +adulterato adulterare ver +adulterazione adulterazione nom +adulterazioni adulterazione nom +adultere adultero adj +adulteri adulterio|adultero nom +adulterina adulterino adj +adulterine adulterino adj +adulterini adulterino adj +adulterino adulterino adj +adulterio adulterio nom +adultero adultero adj +adulti adulto nom +adulto adulto adj +aduna adunare ver +adunano adunare ver +adunante adunare ver +adunanti adunare ver +adunanza adunanza nom +adunanze adunanza nom +adunare adunare ver +adunarono adunare ver +adunarsi adunare ver +adunarvi adunare ver +adunassero adunare ver +adunata adunata nom +adunate adunata nom +adunati adunare ver +adunato adunare ver +adunava adunare ver +adunavano adunare ver +adunca adunco adj +adunche adunco adj +adunchi adunco adj +adunco adunco adj +adunque adunque con +adunò adunare ver +adusa aduso adj +aduse aduso adj +adusi aduso adj +aduso aduso adj +adusta adusto adj +adì adire ver +aedi aedo nom +aedo aedo nom +aera aerare ver +aerale aerare ver +aerano aerare ver +aeranti aerare ver +aerare aerare ver +aerata aerare ver +aerate aerato adj +aerati aerato adj +aerato aerato adj +aeratore aeratore nom +aeratori aeratore nom +aerazione aerazione nom +aere aere nom +aerea aereo adj +aeree aereo adj +aerei aereo nom +aereo aereo adj +aeri aerare ver +aeriforme aeriforme adj +aeriformi aeriforme nom +aero aerare ver +aerobi aerobio nom +aerobica aerobico adj +aerobiche aerobico adj +aerobici aerobico adj +aerobico aerobico adj +aerobio aerobio nom +aerobiosi aerobiosi nom +aerobrigata aerobrigata nom +aerodina aerodina nom +aerodinamica aerodinamico adj +aerodinamiche aerodinamico adj +aerodinamici aerodinamico adj +aerodinamicità aerodinamicità nom +aerodinamico aerodinamico adj +aerodine aerodina nom +aerodromi aerodromo nom +aerodromo aerodromo nom +aerofagia aerofagia nom +aerofagie aerofagia nom +aerofoni aerofono nom +aerofono aerofono nom +aerofotografia aerofotografia nom +aerofotogrammetria aerofotogrammetria nom +aerofotogrammetrie aerofotogrammetria nom +aerogeneratore aerogeneratore nom +aerogeneratori aerogeneratore nom +aerografi aerografo nom +aerografo aerografo nom +aerolinea aerolinea nom +aerolinee aerolinea nom +aeroliti aerolito nom +aerologia aerologia nom +aeromarittima aeromarittimo adj +aeromarittimo aeromarittimo adj +aeromobile aeromobile nom +aeromobili aeromobile nom +aeromodelli aeromodello nom +aeromodellista aeromodellista nom +aeromodellisti aeromodellista nom +aeromodellistica aeromodellistica nom +aeromodello aeromodello nom +aeronauta aeronauta nom +aeronauti aeronauta nom +aeronautica aeronautico adj +aeronautiche aeronautico adj +aeronautici aeronautico adj +aeronautico aeronautico adj +aeronavale aeronavale adj +aeronavali aeronavale adj +aeronave aeronave nom +aeronavi aeronave nom +aeronavigazione aeronavigazione nom +aeroplani aeroplano nom +aeroplano aeroplano nom +aeroporti aeroporto nom +aeroporto aeroporto nom +aeroportuale aeroportuale adj +aeroportuali aeroportuale adj +aeroposta aeroposta nom +aeropostale aeropostale adj +aeroscali aeroscalo nom +aeroscalo aeroscalo nom +aerosilurante aerosilurante nom +aerosiluranti aerosilurante nom +aerosol aerosol nom +aerosolterapia aerosolterapia nom +aerosolterapie aerosolterapia nom +aerospaziale aerospaziale adj +aerospaziali aerospaziale adj +aerostati aerostato nom +aerostatica aerostatico adj +aerostatiche aerostatico adj +aerostatici aerostatico adj +aerostatico aerostatico adj +aerostato aerostato nom +aerostazione aerostazione nom +aerostazioni aerostazione nom +aerostieri aerostiere nom +aerotaxi aerotaxi nom +aerotecnica aerotecnica nom +aeroterapia aeroterapia nom +aerotrasportare aerotrasportare ver +aerotrasportata aerotrasportare ver +aerotrasportate aerotrasportare ver +aerotrasportati aerotrasportare ver +aerotrasportato aerotrasportare ver +aerotrasporti aerotrasportare ver +aerotrasporto aerotrasportare ver +aerovia aerovia nom +aerovie aerovia nom +af af npr +afa afa nom +afagia afagia nom +afasia afasia nom +afasie afasia nom +afe afa nom +afelii afelio nom +afelio afelio nom +aferesi aferesi nom +affa affarsi ver +affabile affabile adj +affabili affabile adj +affabilità affabilità nom +affaccendarsi affaccendare ver +affaccendata affaccendare ver +affaccendate affaccendato adj +affaccendati affaccendato adj +affaccendato affaccendato adj +affaccendavano affaccendare ver +affaccendò affaccendare ver +affacceranno affacciare ver +affaccerà affacciare ver +affacci affacciare ver +affaccia affacciare ver +affacciai affacciare ver +affacciamo affacciare|affarsi ver +affacciando affacciare ver +affacciandoci affacciare ver +affacciandosi affacciare ver +affacciano affarsi ver +affacciante affacciare ver +affaccianti affacciare ver +affacciantisi affacciare ver +affacciare affacciare ver +affacciarono affacciare ver +affacciarsi affacciare ver +affacciasse affacciare ver +affacciassero affacciare ver +affacciata affacciare ver +affacciate affacciare ver +affacciatesi affacciare ver +affacciatevi affacciare ver +affacciati affacciare ver +affacciato affacciare ver +affacciava affacciare ver +affacciavano affacciare ver +affaccino affacciare ver +affaccio affacciare|affarsi ver +affacciò affacciare ver +affai affarsi ver +affaire affaire nom +affama affamare ver +affamando affamare ver +affamano affamare ver +affamare affamare ver +affamarlo affamare ver +affamata affamare ver +affamate affamato adj +affamati affamato adj +affamato affamare ver +affamatore affamatore nom +affamatori affamatore nom +affamava affamare ver +affamò affamare ver +affanna affannare ver +affannando affannare ver +affannano affannare ver +affannare affannare ver +affannarono affannare ver +affannarsi affannare ver +affannarti affannare ver +affannata affannare ver +affannate affannare ver +affannati affannare ver +affannato affannare ver +affannava affannare ver +affannavano affannare ver +affannerà affannare ver +affanni affanno nom +affanniamo affannare ver +affanno affanno nom +affannosa affannoso adj +affannose affannoso adj +affannosi affannoso adj +affannoso affannoso adj +affannò affannare ver +affar affarsi ver +affardellato affardellare ver +affare affare nom +affari affare nom +affarismo affarismo nom +affarista affarista nom +affaristi affarista nom +affaristica affaristico adj +affaristiche affaristico adj +affaristici affaristico adj +affaristico affaristico adj +affarsi affarsi ver +affascina affascinare ver +affascinando affascinare ver +affascinandoli affascinare ver +affascinano affascinare ver +affascinante affascinante adj +affascinanti affascinante adj +affascinarci affascinare ver +affascinare affascinare ver +affascinarla affascinare ver +affascinarlo affascinare ver +affascinarmi affascinare ver +affascinarono affascinare ver +affascinarsi affascinare ver +affascinasse affascinare ver +affascinata affascinare ver +affascinate affascinare ver +affascinati affascinare ver +affascinato affascinare ver +affascinava affascinare ver +affascinavano affascinare ver +affascineranno affascinare ver +affascinerà affascinare ver +affascino affascinare ver +affascinò affascinare ver +affastella affastellare ver +affastellamenti affastellamento nom +affastellamento affastellamento nom +affastellano affastellare ver +affastellare affastellare ver +affastellarsi affastellare ver +affastellata affastellare ver +affastellate affastellare ver +affastellati affastellare ver +affastellato affastellare ver +affatica affaticare ver +affaticamenti affaticamento nom +affaticamento affaticamento nom +affaticando affaticare ver +affaticandosi affaticare ver +affaticano affaticare ver +affaticante affaticare ver +affaticanti affaticare ver +affaticar affaticare ver +affaticarci affaticare ver +affaticare affaticare ver +affaticarlo affaticare ver +affaticarsi affaticare ver +affaticata affaticare ver +affaticate affaticare ver +affaticati affaticare ver +affaticato affaticare ver +affaticava affaticare ver +affaticavano affaticare ver +affaticheranno affaticare ver +affaticherà affaticare ver +affatichi affaticare ver +affatichiamo affaticare ver +affaticò affaticare ver +affatta affarsi ver +affatte affarsi ver +affatti affarsi ver +affatto affatto adv_sup +afferente afferente adj +afferenti afferente adj +afferma affermare ver +affermabile affermabile adj +affermai affermare ver +affermalo affermare ver +affermando affermare ver +affermandogli affermare ver +affermandolo affermare ver +affermandone affermare ver +affermandosi affermare ver +affermano affermare ver +affermante affermare ver +affermanti affermare ver +affermarci affermare ver +affermare affermare ver +affermarla affermare ver +affermarle affermare ver +affermarli affermare ver +affermarlo affermare ver +affermarne affermare ver +affermarono affermare ver +affermarsi affermare ver +affermarvi affermare ver +affermasi affermare ver +affermasse affermare ver +affermassero affermare ver +affermassi affermare ver +affermassimo affermare ver +affermata affermare ver +affermate affermare ver +affermatesi affermare ver +affermati affermare ver +affermativa affermativo adj +affermativamente affermativamente adv +affermative affermativo adj +affermativi affermativo adj +affermativo affermativo adj +affermato affermare ver +affermatosi affermare ver +affermava affermare ver +affermavano affermare ver +affermavi affermare ver +affermavo affermare ver +affermazione affermazione nom +affermazioni affermazione nom +affermeranno affermare ver +affermerebbe affermare ver +affermerebbero affermare ver +affermeresti affermare ver +affermerà affermare ver +affermi affermare ver +affermiamo affermare ver +affermino affermare ver +affermo affermare ver +affermò affermare ver +afferra afferrare ver +afferrabile afferrabile adj +afferrabili afferrabile adj +afferrai afferrare ver +afferralo afferrare ver +afferrando afferrare ver +afferrandogli afferrare ver +afferrandola afferrare ver +afferrandole afferrare ver +afferrandoli afferrare ver +afferrandolo afferrare ver +afferrandone afferrare ver +afferrandoselo afferrare ver +afferrandosi afferrare ver +afferrano afferrare ver +afferrante afferrare ver +afferranti afferrare ver +afferrare afferrare ver +afferrargli afferrare ver +afferrarla afferrare ver +afferrarle afferrare ver +afferrarli afferrare ver +afferrarlo afferrare ver +afferrarne afferrare ver +afferrarono afferrare ver +afferrarsi afferrare ver +afferrasse afferrare ver +afferrata afferrare ver +afferrate afferrare ver +afferrateli afferrare ver +afferrati afferrare ver +afferrato afferrare ver +afferrava afferrare ver +afferravano afferrare ver +afferrerà afferrare ver +afferri afferrare ver +afferriamo afferrare ver +afferrino afferrare ver +afferro afferrare ver +afferrò afferrare ver +affetta affetto adj +affettando affettare ver +affettandolo affettare ver +affettano affettare ver +affettare affettare ver +affettata affettare ver +affettate affettato adj +affettati affettato nom +affettato affettare ver +affettatrice affettatrice nom +affettatrici affettatrice nom +affettava affettare ver +affettazione affettazione nom +affettazioni affettazione nom +affette affetto adj +affetti affetto adj +affettiva affettivo adj +affettive affettivo adj +affettivi affettivo adj +affettività affettività nom +affettivo affettivo adj +affetto affetto nom +affettuosa affettuoso adj +affettuosamente affettuosamente adv +affettuose affettuoso adj +affettuosi affettuoso adj +affettuosità affettuosità nom +affettuoso affettuoso adj +affeziona affezionare ver +affezionando affezionare ver +affezionandosi affezionare ver +affezionano affezionare ver +affezionare affezionare ver +affezionarono affezionare ver +affezionarsi affezionare ver +affezionata affezionare ver +affezionate affezionato adj +affezionati affezionare ver +affezionato affezionare ver +affezionava affezionare ver +affezione affezione nom +affezioneranno affezionare ver +affezionerà affezionare ver +affezioni affezione nom +affezionino affezionare ver +affeziono affezionare ver +affezionò affezionare ver +affianca affiancare ver +affiancale affiancare ver +affiancando affiancare ver +affiancandogli affiancare ver +affiancandola affiancare ver +affiancandole affiancare ver +affiancandoli affiancare ver +affiancandolo affiancare ver +affiancandosi affiancare ver +affiancandovi affiancare ver +affiancano affiancare ver +affiancante affiancare ver +affiancanti affiancare ver +affiancarci affiancare ver +affiancare affiancare ver +affiancargli affiancare ver +affiancarla affiancare ver +affiancarle affiancare ver +affiancarli affiancare ver +affiancarlo affiancare ver +affiancarmi affiancare ver +affiancarne affiancare ver +affiancarono affiancare ver +affiancarsi affiancare ver +affiancarvi affiancare ver +affiancasse affiancare ver +affiancassero affiancare ver +affiancata affiancare ver +affiancate affiancare ver +affiancatesi affiancare ver +affiancati affiancare ver +affiancato affiancare ver +affiancava affiancare ver +affiancavano affiancare ver +affiancheranno affiancare ver +affiancherebbe affiancare ver +affiancherebbero affiancare ver +affiancherei affiancare ver +affiancherà affiancare ver +affianchi affiancare ver +affianchiamo affiancare ver +affianchino affiancare ver +affianco affiancare ver +affiancò affiancare ver +affiata affiatare ver +affiatamento affiatamento nom +affiatare affiatare ver +affiatarsi affiatare ver +affiatata affiatare ver +affiatate affiatare ver +affiatati affiatare ver +affiatato affiatare ver +affibbia affibbiare ver +affibbiando affibbiare ver +affibbiandogli affibbiare ver +affibbiandole affibbiare ver +affibbiandomi affibbiare ver +affibbiano affibbiare ver +affibbiare affibbiare ver +affibbiargli affibbiare ver +affibbiarle affibbiare ver +affibbiarmi affibbiare ver +affibbiarono affibbiare ver +affibbiata affibbiare ver +affibbiate affibbiare ver +affibbiategli affibbiare ver +affibbiati affibbiare ver +affibbiato affibbiare ver +affibbiatura affibbiatura nom +affibbiature affibbiatura nom +affibbiava affibbiare ver +affibbierà affibbiare ver +affibbiò affibbiare ver +affiche affiche nom +affida affidare ver +affidabile affidabile adj +affidabili affidabile adj +affidabilità affidabilità nom +affidabilmente affidabilmente adv +affidai affidare ver +affidale affidare ver +affidamenti affidamento nom +affidamento affidamento nom +affidando affidare ver +affidandoci affidare ver +affidandogli affidare ver +affidandogliene affidare ver +affidandola affidare ver +affidandole affidare ver +affidandoli affidare ver +affidandolo affidare ver +affidandomi affidare ver +affidandone affidare ver +affidandosi affidare ver +affidandoti affidare ver +affidandovi affidare ver +affidano affidare ver +affidante affidare ver +affidanti affidare ver +affidar affidare ver +affidarci affidare ver +affidare affidare ver +affidargli affidare ver +affidargliela affidare ver +affidarglielo affidare ver +affidargliene affidare ver +affidarla affidare ver +affidarle affidare ver +affidarli affidare ver +affidarlo affidare ver +affidarmi affidare ver +affidarne affidare ver +affidarono affidare ver +affidarsi affidare ver +affidarti affidare ver +affidasse affidare ver +affidassero affidare ver +affidassimo affidare ver +affidata affidare ver +affidate affidare ver +affidategli affidare ver +affidatele affidare ver +affidatevi affidare ver +affidati affidare ver +affidato affidare ver +affidatogli affidare ver +affidatole affidare ver +affidava affidare ver +affidavano affidare ver +affidavo affidare ver +affideranno affidare ver +affiderebbe affidare ver +affiderei affidare ver +affiderà affidare ver +affiderò affidare ver +affidi affidare ver +affidiamo affidare ver +affidiamoci affidare ver +affidiate affidare ver +affidino affidare ver +affido affidare ver +affidò affidare ver +affienata affienare ver +affienato affienare ver +affievolendo affievolire ver +affievolendosi affievolire ver +affievolimento affievolimento nom +affievoliranno affievolire ver +affievolire affievolire ver +affievolirono affievolire ver +affievolirsi affievolire ver +affievolisce affievolire ver +affievoliscono affievolire ver +affievolita affievolire ver +affievolite affievolire ver +affievoliti affievolire ver +affievolito affievolire ver +affievoliva affievolire ver +affievolivano affievolire ver +affievolì affievolire ver +affigge affiggere ver +affiggendo affiggere ver +affiggere affiggere ver +affiggerla affiggere ver +affiggerà affiggere ver +affiggeva affiggere ver +affiggevano affiggere ver +affiggo affiggere ver +affiggono affiggere ver +affila affilare ver +affilacoltelli affilacoltelli nom +affilamento affilamento nom +affilando affilare ver +affilano affilare ver +affilare affilare ver +affilarla affilare ver +affilarli affilare ver +affilata affilare ver +affilate affilato adj +affilati affilato adj +affilato affilato adj +affilatoi affilatoio nom +affilatura affilatura nom +affilature affilatura nom +affilava affilare ver +affili affilare|affiliare ver +affilia affiliare ver +affiliando affiliare ver +affiliandosi affiliare ver +affiliano affiliare ver +affiliante affiliante adj +affiliare affiliare ver +affiliarmi affiliare ver +affiliarono affiliare ver +affiliarsi affiliare ver +affiliata affiliare ver +affiliate affiliare ver +affiliati affiliato adj +affiliato affiliare ver +affiliava affiliare ver +affiliazione affiliazione nom +affiliazioni affiliazione nom +affilierà affiliare ver +affiliò affiliare ver +affilò affilare ver +affina affinare ver +affinamenti affinamento nom +affinamento affinamento nom +affinando affinare ver +affinandola affinare ver +affinandone affinare ver +affinandosi affinare ver +affinano affinare ver +affinante affinare ver +affinare affinare ver +affinarla affinare ver +affinarle affinare ver +affinarlo affinare ver +affinarne affinare ver +affinarono affinare ver +affinarsi affinare ver +affinasse affinare ver +affinata affinare ver +affinate affinare ver +affinati affinare ver +affinato affinare ver +affinava affinare ver +affinavano affinare ver +affinazione affinazione nom +affinche affinche sw +affinchè affinchè con +affinché affinché con +affine affine adj +affineremo affinare ver +affinerà affinare ver +affini affine adj +affinità affinità nom +affinò affinare ver +affiora affiorare ver +affioramenti affioramento nom +affioramento affioramento nom +affiorando affiorare ver +affiorano affiorare ver +affiorante affiorare ver +affioranti affiorare ver +affiorare affiorare ver +affiorarono affiorare ver +affiorasse affiorare ver +affiorata affiorare ver +affiorate affiorare ver +affiorati affiorare ver +affiorato affiorare ver +affiorava affiorare ver +affioravano affiorare ver +affioreranno affiorare ver +affiorerà affiorare ver +affiori affiorare ver +affiorino affiorare ver +affiorò affiorare ver +affissa affiggere ver +affissati affissare ver +affissato affissare ver +affisse affiggere ver +affissero affiggere ver +affissi affisso nom +affissione affissione nom +affissioni affissione nom +affisso affiggere ver +affitta affittare ver +affittabile affittabile adj +affittabili affittabile adj +affittacamere affittacamere nom +affittando affittare ver +affittandola affittare ver +affittandole affittare ver +affittandoli affittare ver +affittandolo affittare ver +affittandone affittare ver +affittano affittare ver +affittante affittare ver +affittare affittare ver +affittargli affittare ver +affittarla affittare ver +affittarle affittare ver +affittarli affittare ver +affittarlo affittare ver +affittarne affittare ver +affittarono affittare ver +affittarsi affittare ver +affittasi affittare ver +affittata affittare ver +affittate affittare ver +affittati affittare ver +affittato affittare ver +affittava affittare ver +affittavano affittare ver +affitteranno affittare ver +affitterà affittare ver +affitti affitto nom +affitto affitto nom +affittuari affittuario nom +affittuaria affittuario nom +affittuarie affittuario nom +affittuario affittuario nom +affittò affittare ver +afflati afflato nom +afflato afflato nom +affligga affliggere ver +affligge affliggere ver +affliggendo affliggere ver +affliggente affliggere ver +affliggeranno affliggere ver +affliggere affliggere ver +affliggerebbe affliggere ver +affliggerebbero affliggere ver +affliggerli affliggere ver +affliggerlo affliggere ver +affliggermi affliggere ver +affliggersi affliggere ver +affliggerti affliggere ver +affliggerà affliggere ver +affliggesse affliggere ver +affliggeva affliggere ver +affliggevano affliggere ver +affliggono affliggere ver +afflisse affliggere ver +afflissero affliggere ver +afflitta affliggere ver +afflitte affliggere ver +afflitti affliggere ver +afflitto affliggere ver +afflizione afflizione nom +afflizioni afflizione nom +affloscia afflosciarsi ver +afflosciando afflosciarsi ver +afflosciandosi afflosciarsi ver +afflosciano afflosciarsi ver +afflosciarono afflosciarsi ver +afflosciarsi afflosciarsi ver +afflosciate afflosciarsi ver +afflosciati afflosciarsi ver +afflosciò afflosciarsi ver +affluendo affluire ver +affluente affluente nom +affluenti affluente adj +affluenza affluenza nom +affluenze affluenza nom +affluiranno affluire ver +affluire affluire ver +affluirono affluire ver +affluirvi affluire ver +affluirà affluire ver +affluisca affluire ver +affluisce affluire ver +affluiscono affluire ver +affluissero affluire ver +affluita affluire ver +affluite affluire ver +affluiti affluire ver +affluito affluire ver +affluiva affluire ver +affluivano affluire ver +afflussi afflusso nom +afflusso afflusso nom +affluì affluire ver +affocata affocare ver +affoga affogare ver +affogando affogare ver +affogandola affogare ver +affogandoli affogare ver +affogandolo affogare ver +affogandosi affogare ver +affogano affogare ver +affogante affogare ver +affogarci affogare ver +affogare affogare ver +affogarla affogare ver +affogarli affogare ver +affogarlo affogare ver +affogarono affogare ver +affogarsi affogare ver +affogasse affogare ver +affogata affogare ver +affogate affogare ver +affogati affogare ver +affogato affogare ver +affogava affogare ver +affogavano affogare ver +affogherebbe affogare ver +affogherà affogare ver +affogherò affogare ver +affoghi affogare ver +affoghino affogare ver +affogo affogare ver +affogò affogare ver +affolla affollare ver +affollamenti affollamento nom +affollamento affollamento nom +affollando affollare ver +affollano affollare ver +affollare affollare ver +affollarono affollare ver +affollarsi affollare ver +affollassero affollare ver +affollata affollare ver +affollate affollato adj +affollati affollato adj +affollato affollare ver +affollava affollare ver +affollavano affollare ver +affolleranno affollare ver +affollerà affollare ver +affollo affollare ver +affollò affollare ver +affonda affondare ver +affondamenti affondamento nom +affondamento affondamento nom +affondammo affondare ver +affondando affondare ver +affondandogli affondare ver +affondandola affondare ver +affondandole affondare ver +affondandoli affondare ver +affondandolo affondare ver +affondandone affondare ver +affondandovi affondare ver +affondano affondare ver +affondante affondare ver +affondanti affondare ver +affondarci affondare ver +affondare affondare ver +affondarla affondare ver +affondarle affondare ver +affondarli affondare ver +affondarlo affondare ver +affondarne affondare ver +affondarono affondare ver +affondarsi affondare ver +affondarvi affondare ver +affondasse affondare ver +affondassero affondare ver +affondata affondare ver +affondate affondare ver +affondati affondare ver +affondato affondare ver +affondatore affondatore nom +affondatori affondatore nom +affondava affondare ver +affondavano affondare ver +affonderanno affondare ver +affonderebbe affondare ver +affonderebbero affondare ver +affonderemo affondare ver +affonderà affondare ver +affondi affondo nom +affondino affondare ver +affondo affondo nom +affondò affondare ver +affossa affossare ver +affossamenti affossamento nom +affossamento affossamento nom +affossando affossare ver +affossandosi affossare ver +affossano affossare ver +affossare affossare ver +affossarla affossare ver +affossarono affossare ver +affossata affossare ver +affossate affossare ver +affossati affossare ver +affossato affossare ver +affossatori affossatore nom +affossatura affossatura nom +affossiamo affossare ver +affossò affossare ver +affranca affrancare ver +affrancamento affrancamento nom +affrancando affrancare ver +affrancandola affrancare ver +affrancandoli affrancare ver +affrancandosi affrancare ver +affrancano affrancare ver +affrancare affrancare ver +affrancarla affrancare ver +affrancarli affrancare ver +affrancarlo affrancare ver +affrancarono affrancare ver +affrancarsi affrancare ver +affrancasse affrancare ver +affrancassero affrancare ver +affrancata affrancare ver +affrancate affrancare ver +affrancatesi affrancare ver +affrancati affrancare ver +affrancato affrancare ver +affrancatrice affrancatrice nom +affrancatrici affrancatrice nom +affrancatura affrancatura nom +affrancature affrancatura nom +affrancava affrancare ver +affrancazione affrancazione nom +affrancazioni affrancazione nom +affrancheranno affrancare ver +affrancherebbe affrancare ver +affrancherà affrancare ver +affranchi affrancare ver +affranchino affrancare ver +affrancò affrancare ver +affranta affranto adj +affrante affranto adj +affranti affranto adj +affranto affranto adj +affratella affratellare ver +affratellamento affratellamento nom +affratellano affratellare ver +affratellare affratellare ver +affratellarsi affratellare ver +affratellata affratellare ver +affratellate affratellare ver +affratellati affratellare ver +affratellato affratellare ver +affratellò affratellare ver +affresca affrescare ver +affrescando affrescare ver +affrescandone affrescare ver +affrescandovi affrescare ver +affrescano affrescare ver +affrescare affrescare ver +affrescarla affrescare ver +affrescarlo affrescare ver +affrescarne affrescare ver +affrescarono affrescare ver +affrescasse affrescare ver +affrescata affrescare ver +affrescate affrescare ver +affrescati affrescare ver +affrescato affrescare ver +affrescava affrescare ver +affrescherà affrescare ver +affreschi affresco nom +affreschista affreschista nom +affreschisti affreschista nom +affresco affresco nom +affrescò affrescare ver +affretta affrettare ver +affrettai affrettare ver +affrettando affrettare ver +affrettandosi affrettare ver +affrettano affrettare ver +affrettarci affrettare ver +affrettare affrettare ver +affrettarmi affrettare ver +affrettarne affrettare ver +affrettarono affrettare ver +affrettarsi affrettare ver +affrettarti affrettare ver +affrettasse affrettare ver +affrettassero affrettare ver +affrettata affrettare ver +affrettatamente affrettatamente adv +affrettate affrettato adj +affrettatevi affrettare ver +affrettati affrettato adj +affrettato affrettare ver +affrettava affrettare ver +affrettavano affrettare ver +affretteranno affrettare ver +affretterà affrettare ver +affretterò affrettare ver +affretti affrettare ver +affrettiamo affrettare ver +affrettiamoci affrettare ver +affretto affrettare ver +affrettò affrettare ver +affronta affrontare ver +affrontabile affrontabile adj +affrontabili affrontabile adj +affrontai affrontare ver +affrontammo affrontare ver +affrontando affrontare ver +affrontandola affrontare ver +affrontandole affrontare ver +affrontandoli affrontare ver +affrontandolo affrontare ver +affrontandone affrontare ver +affrontandosi affrontare ver +affrontano affrontare ver +affrontanti affrontare ver +affrontar affrontare ver +affrontarci affrontare ver +affrontare affrontare ver +affrontarla affrontare ver +affrontarle affrontare ver +affrontarli affrontare ver +affrontarlo affrontare ver +affrontarmi affrontare ver +affrontarne affrontare ver +affrontarono affrontare ver +affrontarsi affrontare ver +affrontasse affrontare ver +affrontassero affrontare ver +affrontassi affrontare ver +affrontata affrontare ver +affrontate affrontare ver +affrontatesi affrontare ver +affrontati affrontare ver +affrontato affrontare ver +affrontava affrontare ver +affrontavano affrontare ver +affrontavo affrontare ver +affronterai affrontare ver +affronteranno affrontare ver +affronterebbe affrontare ver +affronterebbero affrontare ver +affronterei affrontare ver +affronteremo affrontare ver +affronterete affrontare ver +affronterà affrontare ver +affronterò affrontare ver +affronti affrontare ver +affrontiamo affrontare ver +affrontiamolo affrontare ver +affrontino affrontare ver +affronto affronto nom +affrontò affrontare ver +affumica affumicare ver +affumicando affumicare ver +affumicare affumicare ver +affumicata affumicato adj +affumicate affumicato adj +affumicati affumicato adj +affumicato affumicato adj +affumicatoio affumicatoio nom +affumicatore affumicatore nom +affumicatori affumicatore nom +affumicatura affumicatura nom +affumicavano affumicare ver +affusola affusolare ver +affusolandosi affusolare ver +affusolano affusolare ver +affusolata affusolare ver +affusolate affusolato adj +affusolati affusolato adj +affusolato affusolare ver +affusti affusto nom +affusto affusto nom +affé affé int +afghana afghano adj +afghane afghano adj +afghani afghano adj +afghano afghano adj +aficionado aficionado nom +afide afide nom +afidi afide nom +afilia afilio adj +afnio afnio nom +afona afono adj +afone afono adj +afoni afono adj +afonia afonia nom +afonie afonia nom +afono afono adj +aforisma aforisma nom +aforismi aforisma nom +aforistica aforistico adj +aforistiche aforistico adj +aforistici aforistico adj +aforistico aforistico adj +afosa afoso adj +afose afoso adj +afosi afoso adj +afoso afoso adj +afra afro adj +afre afro adj +afri afro adj +africa africo adj +africana africano adj +africane africano adj +africani africano adj +africanistica africanistica nom +africano africano adj +afriche africo adj +africi africo adj +africo africo adj +afro afro adj +afrodisiaci afrodisiaco nom +afrodisiaco afrodisiaco nom +afrore afrore nom +afrori afrore nom +afta afta nom +afte afta nom +aftosa aftosa adj +agalla agallare ver +agallar agallare ver +agamia agamia nom +agamica agamico adj +agamiche agamico adj +agamici agamico adj +agamico agamico adj +agapanti agapanto nom +agapanto agapanto nom +agape agape nom +agapi agape nom +agarici agarico nom +agarico agarico nom +agata agata nom +agate agata nom +agave agave nom +agavi agave nom +agemina agemina nom +agenda agenda nom +agende agenda nom +agendo agire ver +agente agente nom +agenti agente nom +agenzia agenzia nom +agenzie agenzia nom +ageusia ageusia nom +ageusie ageusia nom +agevola agevolare ver +agevolando agevolare ver +agevolandolo agevolare ver +agevolandone agevolare ver +agevolano agevolare ver +agevolare agevolare ver +agevolargli agevolare ver +agevolarla agevolare ver +agevolarle agevolare ver +agevolarli agevolare ver +agevolarlo agevolare ver +agevolarne agevolare ver +agevolarono agevolare ver +agevolarsi agevolare ver +agevolarti agevolare ver +agevolasse agevolare ver +agevolassero agevolare ver +agevolata agevolare ver +agevolate agevolare ver +agevolati agevolare ver +agevolato agevolare ver +agevolava agevolare ver +agevolavano agevolare ver +agevolazione agevolazione nom +agevolazioni agevolazione nom +agevole agevole adj +agevoleranno agevolare ver +agevolerebbe agevolare ver +agevolerà agevolare ver +agevolezza agevolezza nom +agevolezze agevolezza nom +agevoli agevole adj +agevoliamo agevolare ver +agevolino agevolare ver +agevolmente agevolmente adv +agevolo agevolare ver +agevolò agevolare ver +agganceranno agganciare ver +aggancerebbe agganciare ver +aggancerà agganciare ver +agganci aggancio nom +aggancia agganciare ver +agganciamenti agganciamento nom +agganciamento agganciamento nom +agganciando agganciare ver +agganciandola agganciare ver +agganciandoli agganciare ver +agganciandolo agganciare ver +agganciandosi agganciare ver +agganciano agganciare ver +agganciare agganciare ver +agganciarla agganciare ver +agganciarle agganciare ver +agganciarli agganciare ver +agganciarlo agganciare ver +agganciarmi agganciare ver +agganciarne agganciare ver +agganciarono agganciare ver +agganciarsi agganciare ver +agganciarti agganciare ver +agganciarvi agganciare ver +agganciasse agganciare ver +agganciassero agganciare ver +agganciata agganciare ver +agganciate agganciare ver +agganciati agganciare ver +agganciato agganciare ver +agganciava agganciare ver +agganciavano agganciare ver +aggancio aggancio nom +agganciò agganciare ver +aggeggi aggeggio nom +aggeggio aggeggio nom +aggetta aggettare ver +aggettando aggettare ver +aggettano aggettare ver +aggettante aggettare ver +aggettanti aggettare ver +aggettate aggettare ver +aggettava aggettare ver +aggettavano aggettare ver +aggetti aggetto nom +aggettiva aggettivare ver +aggettivale aggettivale adj +aggettivali aggettivale adj +aggettivando aggettivare ver +aggettivare aggettivare ver +aggettivata aggettivare ver +aggettivate aggettivare ver +aggettivato aggettivare ver +aggettivazione aggettivazione nom +aggettivazioni aggettivazione nom +aggettivi aggettivo nom +aggettivo aggettivo nom +aggetto aggetto nom +agghiaccia agghiacciare ver +agghiacciante agghiacciante adj +agghiaccianti agghiacciante adj +agghiacciare agghiacciare ver +agghiacciata agghiacciare ver +agghiacciati agghiacciare ver +agghiacciato agghiacciare ver +agghiaccio agghiacciare ver +agghindare agghindare ver +agghindarlo agghindare ver +agghindarsi agghindare ver +agghindata agghindare ver +agghindate agghindare ver +agghindati agghindare ver +agghindato agghindare ver +aggi aggio nom +aggio aggio nom +aggioga aggiogare ver +aggiogando aggiogare ver +aggiogare aggiogare ver +aggiogate aggiogare ver +aggiogati aggiogare ver +aggiogato aggiogare ver +aggiogò aggiogare ver +aggiorna aggiornare ver +aggiornaci aggiornare ver +aggiornala aggiornare ver +aggiornale aggiornare ver +aggiornalo aggiornare ver +aggiornamenti aggiornamento nom +aggiornamento aggiornamento nom +aggiornami aggiornare ver +aggiornando aggiornare ver +aggiornandola aggiornare ver +aggiornandole aggiornare ver +aggiornandoli aggiornare ver +aggiornandolo aggiornare ver +aggiornandone aggiornare ver +aggiornandosi aggiornare ver +aggiornano aggiornare ver +aggiornante aggiornare ver +aggiornare aggiornare ver +aggiornarla aggiornare ver +aggiornarle aggiornare ver +aggiornarli aggiornare ver +aggiornarlo aggiornare ver +aggiornarmi aggiornare ver +aggiornarne aggiornare ver +aggiornarono aggiornare ver +aggiornarsi aggiornare ver +aggiornarvi aggiornare ver +aggiornasse aggiornare ver +aggiornassero aggiornare ver +aggiornata aggiornare ver +aggiornate aggiornare ver +aggiornatela aggiornare ver +aggiornatelo aggiornare ver +aggiornatevi aggiornare ver +aggiornati aggiornare ver +aggiornato aggiornato adj +aggiornava aggiornare ver +aggiornavano aggiornare ver +aggiorneranno aggiornare ver +aggiornerebbe aggiornare ver +aggiornerei aggiornare ver +aggiorneremmo aggiornare ver +aggiorneremo aggiornare ver +aggiornerà aggiornare ver +aggiornerò aggiornare ver +aggiorni aggiornare ver +aggiorniamo aggiornare ver +aggiorniamoci aggiornare ver +aggiornino aggiornare ver +aggiorno aggiornare ver +aggiornò aggiornare ver +aggiotaggio aggiotaggio nom +aggira aggirare ver +aggiramenti aggiramento nom +aggiramento aggiramento nom +aggirando aggirare ver +aggirandola aggirare ver +aggirandole aggirare ver +aggirandolo aggirare ver +aggirandomi aggirare ver +aggirandone aggirare ver +aggirandosi aggirare ver +aggirano aggirare ver +aggirante aggirare ver +aggiranti aggirare ver +aggirare aggirare ver +aggirarla aggirare ver +aggirarle aggirare ver +aggirarli aggirare ver +aggirarlo aggirare ver +aggirarne aggirare ver +aggirarono aggirare ver +aggirarsi aggirare ver +aggirasse aggirare ver +aggirassero aggirare ver +aggirata aggirare ver +aggirate aggirare ver +aggiratesi aggirare ver +aggirati aggirare ver +aggirato aggirare ver +aggirava aggirare ver +aggiravano aggirare ver +aggiravo aggirare ver +aggireranno aggirare ver +aggirerebbe aggirare ver +aggirerebbero aggirare ver +aggirerà aggirare ver +aggiri aggirare ver +aggiriamo aggirare ver +aggirino aggirare ver +aggiro aggirare ver +aggirò aggirare ver +aggiudica aggiudicare ver +aggiudicamento aggiudicamento nom +aggiudicando aggiudicare ver +aggiudicandole aggiudicare ver +aggiudicandosela aggiudicare ver +aggiudicandoselo aggiudicare ver +aggiudicandosene aggiudicare ver +aggiudicandosi aggiudicare ver +aggiudicano aggiudicare ver +aggiudicare aggiudicare ver +aggiudicarono aggiudicare ver +aggiudicarsela aggiudicare ver +aggiudicarseli aggiudicare ver +aggiudicarselo aggiudicare ver +aggiudicarsene aggiudicare ver +aggiudicarsi aggiudicare ver +aggiudicasse aggiudicare ver +aggiudicata aggiudicare ver +aggiudicatari aggiudicatari nom +aggiudicataria aggiudicatario nom +aggiudicatario aggiudicatario nom +aggiudicate aggiudicare ver +aggiudicati aggiudicare ver +aggiudicativi aggiudicativo adj +aggiudicato aggiudicare ver +aggiudicatore aggiudicatore nom +aggiudicatrice aggiudicatrice adj +aggiudicatrici aggiudicatrice adj +aggiudicava aggiudicare ver +aggiudicavano aggiudicare ver +aggiudicazione aggiudicazione nom +aggiudicazioni aggiudicazione nom +aggiudicheranno aggiudicare ver +aggiudicherebbe aggiudicare ver +aggiudicherà aggiudicare ver +aggiudichi aggiudicare ver +aggiudico aggiudicare ver +aggiudicò aggiudicare ver +aggiunga aggiungere ver +aggiungano aggiungere ver +aggiunge aggiungere ver +aggiungemmo aggiungere ver +aggiungendo aggiungere ver +aggiungendoci aggiungere ver +aggiungendogli aggiungere ver +aggiungendola aggiungere ver +aggiungendole aggiungere ver +aggiungendoli aggiungere ver +aggiungendolo aggiungere ver +aggiungendone aggiungere ver +aggiungendosi aggiungere ver +aggiungendovene aggiungere ver +aggiungendovi aggiungere ver +aggiungente aggiungere ver +aggiunger aggiungere ver +aggiungerai aggiungere ver +aggiungeranno aggiungere ver +aggiungercene aggiungere ver +aggiungerci aggiungere ver +aggiungere aggiungere ver +aggiungerebbe aggiungere ver +aggiungerebbero aggiungere ver +aggiungerei aggiungere ver +aggiungeremmo aggiungere ver +aggiungeremo aggiungere ver +aggiungeresti aggiungere ver +aggiungerete aggiungere ver +aggiungergli aggiungere ver +aggiungerla aggiungere ver +aggiungerle aggiungere ver +aggiungerli aggiungere ver +aggiungerlo aggiungere ver +aggiungermi aggiungere ver +aggiungerne aggiungere ver +aggiungersene aggiungere ver +aggiungersi aggiungere ver +aggiungerti aggiungere ver +aggiungervi aggiungere ver +aggiungerà aggiungere ver +aggiungerò aggiungere ver +aggiungesse aggiungere ver +aggiungessero aggiungere ver +aggiungessi aggiungere ver +aggiungessimo aggiungere ver +aggiungeste aggiungere ver +aggiungete aggiungere ver +aggiungeteci aggiungere ver +aggiungetela aggiungere ver +aggiungetele aggiungere ver +aggiungeteli aggiungere ver +aggiungetelo aggiungere ver +aggiungetene aggiungere ver +aggiungetevi aggiungere ver +aggiungeva aggiungere ver +aggiungevamo aggiungere ver +aggiungevano aggiungere ver +aggiungevi aggiungere ver +aggiungevo aggiungere ver +aggiungi aggiungere ver +aggiungiamo aggiungere ver +aggiungiamoci aggiungere ver +aggiungiamogli aggiungere ver +aggiungiamola aggiungere ver +aggiungiamole aggiungere ver +aggiungiamoli aggiungere ver +aggiungiamone aggiungere ver +aggiungiate aggiungere ver +aggiungici aggiungere ver +aggiungila aggiungere ver +aggiungile aggiungere ver +aggiungili aggiungere ver +aggiungilo aggiungere ver +aggiungine aggiungere ver +aggiungiti aggiungere ver +aggiungo aggiungere ver +aggiungono aggiungere ver +aggiunse aggiungere ver +aggiunsero aggiungere ver +aggiunsi aggiungere ver +aggiunta aggiungere ver +aggiuntare aggiuntare ver +aggiuntasi aggiuntare ver +aggiuntati aggiuntare ver +aggiuntato aggiuntare ver +aggiuntavi aggiuntare ver +aggiunte aggiunta nom +aggiunti aggiungere ver +aggiuntiva aggiuntivo adj +aggiuntive aggiuntivo adj +aggiuntivi aggiuntivo adj +aggiuntivo aggiuntivo adj +aggiunto aggiungere ver +aggiusta aggiustare ver +aggiustabile aggiustabile adj +aggiustabili aggiustabile adj +aggiustaggio aggiustaggio nom +aggiustala aggiustare ver +aggiustamenti aggiustamento nom +aggiustamento aggiustamento nom +aggiustando aggiustare ver +aggiustandola aggiustare ver +aggiustandoli aggiustare ver +aggiustandolo aggiustare ver +aggiustandone aggiustare ver +aggiustandosi aggiustare ver +aggiustano aggiustare ver +aggiustar aggiustare ver +aggiustare aggiustare ver +aggiustargliela aggiustare ver +aggiustarla aggiustare ver +aggiustarle aggiustare ver +aggiustarli aggiustare ver +aggiustarlo aggiustare ver +aggiustarmi aggiustare ver +aggiustarne aggiustare ver +aggiustarsi aggiustare ver +aggiustasse aggiustare ver +aggiustassero aggiustare ver +aggiustata aggiustare ver +aggiustate aggiustare ver +aggiustatela aggiustare ver +aggiustati aggiustare ver +aggiustato aggiustare ver +aggiustatore aggiustatore nom +aggiustatori aggiustatore nom +aggiustatura aggiustatura nom +aggiustava aggiustare ver +aggiustavano aggiustare ver +aggiusteranno aggiustare ver +aggiusterebbe aggiustare ver +aggiusterei aggiustare ver +aggiusteremo aggiustare ver +aggiusterà aggiustare ver +aggiusterò aggiustare ver +aggiusti aggiustare ver +aggiustiamo aggiustare ver +aggiustino aggiustare ver +aggiusto aggiustare ver +aggiustò aggiustare ver +agglomera agglomerare ver +agglomeramento agglomeramento nom +agglomerando agglomerare ver +agglomerano agglomerare ver +agglomerante agglomerare ver +agglomeranti agglomerante nom +agglomerare agglomerare ver +agglomerarsi agglomerare ver +agglomerata agglomerare ver +agglomerate agglomerare ver +agglomerati agglomerato nom +agglomerato agglomerato nom +agglomerazione agglomerazione nom +agglomerazioni agglomerazione nom +agglutina agglutinare ver +agglutinamento agglutinamento nom +agglutinando agglutinare ver +agglutinano agglutinare ver +agglutinante agglutinante adj +agglutinanti agglutinante adj +agglutinare agglutinare ver +agglutinarsi agglutinare ver +agglutinata agglutinare ver +agglutinate agglutinare ver +agglutinati agglutinare ver +agglutinato agglutinare ver +agglutinava agglutinare ver +agglutinazione agglutinazione nom +agglutinina agglutinina nom +agglutinine agglutinina nom +aggottare aggottare ver +aggrada aggradare ver +aggradano aggradare ver +aggradasse aggradare ver +aggradava aggradare ver +aggradavano aggradare ver +aggraderebbe aggradare ver +aggradi aggradare ver +aggraffatrice aggraffatrice nom +aggraffatrici aggraffatrice nom +aggrappa aggrappare ver +aggrappando aggrappare ver +aggrappandosi aggrappare ver +aggrappano aggrappare ver +aggrappante aggrappare ver +aggrappanti aggrappare ver +aggrapparci aggrappare ver +aggrappare aggrappare ver +aggrapparmi aggrappare ver +aggrapparono aggrappare ver +aggrapparsi aggrappare ver +aggrapparti aggrappare ver +aggrappasse aggrappare ver +aggrappata aggrappare ver +aggrappate aggrappare ver +aggrappati aggrappare ver +aggrappato aggrappare ver +aggrappava aggrappare ver +aggrappavano aggrappare ver +aggrapperà aggrappare ver +aggrappi aggrappare ver +aggrappo aggrappare ver +aggrappò aggrappare ver +aggrava aggravare ver +aggravamenti aggravamento nom +aggravamento aggravamento nom +aggravando aggravare ver +aggravandoli aggravare ver +aggravandone aggravare ver +aggravandosi aggravare ver +aggravano aggravare ver +aggravante aggravante nom +aggravanti aggravante adj +aggravare aggravare ver +aggravarla aggravare ver +aggravarli aggravare ver +aggravarlo aggravare ver +aggravarne aggravare ver +aggravarono aggravare ver +aggravarsi aggravare ver +aggravasse aggravare ver +aggravassero aggravare ver +aggravata aggravare ver +aggravatasi aggravare ver +aggravate aggravare ver +aggravatesi aggravare ver +aggravati aggravare ver +aggravato aggravare ver +aggravava aggravare ver +aggravavano aggravare ver +aggraverebbe aggravare ver +aggraverà aggravare ver +aggravi aggravio nom +aggravino aggravare ver +aggravio aggravio nom +aggravò aggravare ver +aggraziandosi aggraziare ver +aggraziarsi aggraziare ver +aggraziata aggraziato adj +aggraziate aggraziato adj +aggraziati aggraziato adj +aggraziato aggraziato adj +aggredendo aggredire ver +aggredendola aggredire ver +aggredendole aggredire ver +aggredendoli aggredire ver +aggredendolo aggredire ver +aggrediamo aggredire ver +aggrediranno aggredire ver +aggredire aggredire ver +aggredirebbe aggredire ver +aggredirla aggredire ver +aggredirle aggredire ver +aggredirli aggredire ver +aggredirlo aggredire ver +aggredirmi aggredire ver +aggredirne aggredire ver +aggredirono aggredire ver +aggredirsi aggredire ver +aggredirti aggredire ver +aggredirà aggredire ver +aggredisca aggredire ver +aggrediscano aggredire ver +aggredisce aggredire ver +aggredisci aggredire ver +aggredisco aggredire ver +aggrediscono aggredire ver +aggredisse aggredire ver +aggredissero aggredire ver +aggredita aggredire ver +aggredite aggredire ver +aggrediti aggredire ver +aggredito aggredire ver +aggrediva aggredire ver +aggredivano aggredire ver +aggredì aggredire ver +aggrega aggregare ver +aggregamenti aggregamento nom +aggregamento aggregamento nom +aggregando aggregare ver +aggregandola aggregare ver +aggregandole aggregare ver +aggregandoli aggregare ver +aggregandolo aggregare ver +aggregandone aggregare ver +aggregandosi aggregare ver +aggregandovi aggregare ver +aggregano aggregare ver +aggregante aggregare ver +aggreganti aggregare ver +aggregarci aggregare ver +aggregare aggregare ver +aggregarla aggregare ver +aggregarle aggregare ver +aggregarli aggregare ver +aggregarlo aggregare ver +aggregarmi aggregare ver +aggregarono aggregare ver +aggregarsi aggregare ver +aggregarti aggregare ver +aggregarvi aggregare ver +aggregasse aggregare ver +aggregassero aggregare ver +aggregata aggregare ver +aggregate aggregare ver +aggregatesi aggregare ver +aggregati aggregato adj +aggregato aggregare ver +aggregava aggregare ver +aggregavano aggregare ver +aggregazione aggregazione nom +aggregazioni aggregazione nom +aggregheranno aggregare ver +aggregherei aggregare ver +aggregherà aggregare ver +aggreghi aggregare ver +aggreghino aggregare ver +aggrego aggregare ver +aggregò aggregare ver +aggressione aggressione nom +aggressioni aggressione nom +aggressiva aggressivo adj +aggressive aggressivo adj +aggressivi aggressivo adj +aggressività aggressività nom +aggressivo aggressivo adj +aggressore aggressore nom +aggressori aggressore nom +aggrottando aggrottare ver +aggrottare aggrottare ver +aggrottata aggrottare ver +aggrottate aggrottare ver +aggrottato aggrottare ver +aggroviglia aggrovigliare ver +aggrovigliando aggrovigliare ver +aggrovigliandosi aggrovigliare ver +aggrovigliano aggrovigliare ver +aggrovigliare aggrovigliare ver +aggrovigliarsi aggrovigliare ver +aggrovigliata aggrovigliare ver +aggrovigliate aggrovigliare ver +aggrovigliati aggrovigliare ver +aggrovigliato aggrovigliare ver +aggrumarsi aggrumare ver +aggruppa aggruppare ver +aggruppamenti aggruppamento nom +aggruppamento aggruppamento nom +aggruppano aggruppare ver +aggruppate aggruppare ver +aggruppati aggruppare ver +aggruppato aggruppare ver +aggruppo aggruppare ver +agguagli agguaglio nom +agguaglia agguagliare ver +agguagliata agguagliare ver +agguagliato agguagliare ver +agguanta agguantare ver +agguantando agguantare ver +agguantano agguantare ver +agguantar agguantare ver +agguantare agguantare ver +agguantarla agguantare ver +agguantarlo agguantare ver +agguantarono agguantare ver +agguantarsi agguantare ver +agguantata agguantare ver +agguantati agguantare ver +agguantato agguantare ver +agguanterà agguantare ver +agguanto agguantare ver +agguantò agguantare ver +agguati agguato nom +agguato agguato nom +agguerrire agguerrire ver +agguerrita agguerrire ver +agguerrite agguerrito adj +agguerriti agguerrire ver +agguerrito agguerrire ver +aghetti aghetto nom +aghetto aghetto nom +aghi ago nom +aghifoglia aghifoglia nom +aghifoglie aghifoglia nom +aghiforme aghiforme adj +aghiformi aghiforme adj +agi agio nom +agiamo agire ver +agiata agiato adj +agiate agiato adj +agiatezza agiatezza nom +agiatezze agiatezza nom +agiati agiato adj +agiato agiato adj +agibile agibile adj +agibili agibile adj +agibilità agibilità nom +agii agire ver +agile agile adj +agili agile adj +agilità agilità nom +agio agio nom +agiografi agiografo nom +agiografia agiografia nom +agiografica agiografico adj +agiografiche agiografico adj +agiografici agiografico adj +agiografico agiografico adj +agiografie agiografia nom +agiografo agiografo nom +agir agire ver +agirai agire ver +agiranno agire ver +agirci agire ver +agire agire ver +agirebbe agire ver +agirebbero agire ver +agirei agire ver +agiremo agire ver +agiresti agire ver +agirono agire ver +agirvi agire ver +agirà agire ver +agirò agire ver +agisca agire ver +agiscano agire ver +agisce agire ver +agisci agire ver +agisco agire ver +agiscono agire ver +agisse agire ver +agissero agire ver +agissi agire ver +agisti agire ver +agita agire ver +agitaci agitare ver +agitando agitare ver +agitandola agitare ver +agitandole agitare ver +agitandoli agitare ver +agitandolo agitare ver +agitandosi agitare ver +agitano agitare ver +agitante agitare ver +agitanti agitare ver +agitar agitare ver +agitare agitare ver +agitarla agitare ver +agitarle agitare ver +agitarli agitare ver +agitarlo agitare ver +agitarmi agitare ver +agitarono agitare ver +agitarsi agitare ver +agitarti agitare ver +agitasse agitare ver +agitata agitare ver +agitate agitato adj +agitati agitato adj +agitato agitare ver +agitatore agitatore nom +agitatori agitatore nom +agitatrice agitatore nom +agitava agitare ver +agitavano agitare ver +agitazione agitazione nom +agitazioni agitazione nom +agite agire ver +agiterà agitare ver +agiti agire ver +agitiamo agitare ver +agitino agitare ver +agito agire ver +agitò agitare ver +agiva agire ver +agivano agire ver +agivi agire ver +agivo agire ver +agli al pre +agliacea agliaceo adj +agliacei agliaceo adj +agliaceo agliaceo adj +aglio aglio nom +agnata agnato adj +agnate agnato adj +agnati agnato adj +agnatizi agnatizio adj +agnatizia agnatizio adj +agnatizio agnatizio adj +agnato agnato adj +agnazione agnazione nom +agnelli agnello nom +agnellini agnellino nom +agnellino agnellino nom +agnello agnello nom +agnizione agnizione nom +agnizioni agnizione nom +agnocasto agnocasto nom +agnolotti agnolotto nom +agnolotto agnolotto nom +agnosia agnosia nom +agnosie agnosia nom +agnostica agnostico adj +agnostiche agnostico adj +agnostici agnostico adj +agnosticismo agnosticismo nom +agnostico agnostico adj +ago ago nom +agogna agognare ver +agognando agognare ver +agognano agognare ver +agognare agognare ver +agognata agognare ver +agognate agognare ver +agognati agognare ver +agognato agognare ver +agognava agognare ver +agognavano agognare ver +agone agone nom +agoni agone nom +agonia agonia nom +agonica agonico adj +agonico agonico adj +agonie agonia nom +agonismi agonismo nom +agonismo agonismo nom +agonista agonista nom +agoniste agonista nom +agonisti agonista nom +agonistica agonistico adj +agonistiche agonistico adj +agonistici agonistico adj +agonistico agonistico adj +agonizza agonizzare ver +agonizzando agonizzare ver +agonizzano agonizzare ver +agonizzante agonizzante adj +agonizzanti agonizzante adj +agonizzare agonizzare ver +agonizzate agonizzare ver +agonizzava agonizzare ver +agonizzavano agonizzare ver +agonizzerà agonizzare ver +agopuntura agopuntura nom +agora agora nom +agorafobia agorafobia nom +agorafobie agorafobia nom +agorai agoraio nom +agoraio agoraio nom +agostana agostano adj +agostane agostano adj +agostani agostano adj +agostano agostano adj +agostiniana agostiniano adj +agostiniane agostiniano adj +agostiniani agostiniano adj +agostiniano agostiniano adj +agosto agosto nom +agra agro adj +agrari agrario adj +agraria agrario adj +agrarie agrario adj +agrario agrario adj +agre agro adj +agresta agresto adj +agreste agreste|agresto adj +agresti agreste|agresto adj +agresto agresto adj +agretta agretto adj +agretti agretto adj +agretto agretto adj +agri agro adj +agricola agricolo adj +agricole agricolo adj +agricoli agricolo adj +agricolo agricolo adj +agricoltore agricoltore nom +agricoltori agricoltore nom +agricoltrice agricoltore nom +agricoltura agricoltura nom +agricolture agricoltura nom +agrifogli agrifoglio nom +agrifoglio agrifoglio nom +agrimensore agrimensore nom +agrimensori agrimensore nom +agrimensura agrimensura nom +agrippina agrippina nom +agrippine agrippina nom +agriturismi agriturismo nom +agriturismo agriturismo nom +agro agro adj +agroalimentare agroalimentare adj +agroalimentari agroalimentare adj +agroambientale agroambientale adj +agroambientali agroambientale adj +agrodolce agrodolce adj +agrodolci agrodolce adj +agroindustria agroindustria nom +agroindustriale agroindustriale adj +agroindustrie agroindustria nom +agronoma agronomo nom +agronome agronomo nom +agronomi agronomo nom +agronomia agronomia nom +agronomica agronomico adj +agronomiche agronomico adj +agronomici agronomico adj +agronomico agronomico adj +agronomie agronomia nom +agronomo agronomo nom +agropastorale agropastorale adj +agrosistemi agrosistemi nom +agrostide agrostide nom +agrumari agrumario nom +agrumario agrumario nom +agrume agrume nom +agrumeti agrumeto nom +agrumeto agrumeto nom +agrumi agrume nom +agrumicola agrumicolo adj +agrumicole agrumicolo adj +agrumicoli agrumicolo adj +agrumicolo agrumicolo adj +agrumicoltori agrumicoltore nom +agrumicoltura agrumicoltura nom +aguglia aguglia nom +agugliata agugliata nom +aguglie aguglia nom +agugliotti agugliotto nom +agugliotto agugliotto nom +aguti aguti nom +aguzza aguzzo adj +aguzzando aguzzare ver +aguzzano aguzzare ver +aguzzare aguzzare ver +aguzzata aguzzare ver +aguzzate aguzzare ver +aguzzati aguzzare ver +aguzzato aguzzare ver +aguzze aguzzo adj +aguzzi aguzzo adj +aguzzini aguzzino nom +aguzzino aguzzino nom +aguzzo aguzzo adj +aguzzò aguzzare ver +agì agire ver +ah ah int +ahi ahi int +ahimè ahimè int +ai al pre +aia aia|aio nom +aids aids nom +aie aia|aio nom +aigrette aigrette nom +ailanti ailanto nom +ailanto ailanto nom +ailurofobia ailurofobia nom +aio aio nom +aiola aiola nom +aiole aiola nom +aire aire nom +airi aire nom +airone airone nom +aironi airone nom +aita aita nom +aitante aitante adj +aitanti aitante adj +aite aita nom +aiuola aiuola nom +aiuole aiuola nom +aiuta aiutare ver +aiutaci aiutare ver +aiutai aiutare ver +aiutala aiutare ver +aiutalo aiutare ver +aiutami aiutare ver +aiutando aiutare ver +aiutandoci aiutare ver +aiutandola aiutare ver +aiutandole aiutare ver +aiutandoli aiutare ver +aiutandolo aiutare ver +aiutandomi aiutare ver +aiutandone aiutare ver +aiutandosi aiutare ver +aiutandoti aiutare ver +aiutandovi aiutare ver +aiutano aiutare ver +aiutante aiutante nom +aiutanti aiutante nom +aiutar aiutare ver +aiutarci aiutare ver +aiutare aiutare ver +aiutarla aiutare ver +aiutarle aiutare ver +aiutarli aiutare ver +aiutarlo aiutare ver +aiutarmi aiutare ver +aiutarne aiutare ver +aiutarono aiutare ver +aiutarsi aiutare ver +aiutarti aiutare ver +aiutarvi aiutare ver +aiutasse aiutare ver +aiutassero aiutare ver +aiutassi aiutare ver +aiutaste aiutare ver +aiutata aiutare ver +aiutate aiutare ver +aiutateci aiutare ver +aiutatela aiutare ver +aiutateli aiutare ver +aiutatelo aiutare ver +aiutatemi aiutare ver +aiutatevi aiutare ver +aiutati aiutare ver +aiutato aiutare ver +aiutava aiutare ver +aiutavano aiutare ver +aiutavo aiutare ver +aiuterai aiutare ver +aiuteranno aiutare ver +aiuterebbe aiutare ver +aiuterebbero aiutare ver +aiuterei aiutare ver +aiuteremmo aiutare ver +aiuteremo aiutare ver +aiutereste aiutare ver +aiuteresti aiutare ver +aiuterete aiutare ver +aiuterà aiutare ver +aiuterò aiutare ver +aiuti aiuto nom +aiutiamo aiutare ver +aiutiamoci aiutare ver +aiutiamola aiutare ver +aiutiamoli aiutare ver +aiutiamolo aiutare ver +aiutiate aiutare ver +aiutino aiutare ver +aiuto aiuto nom +aiutò aiutare ver +aizza aizzare ver +aizzando aizzare ver +aizzandogli aizzare ver +aizzandola aizzare ver +aizzandole aizzare ver +aizzandoli aizzare ver +aizzandolo aizzare ver +aizzano aizzare ver +aizzare aizzare ver +aizzargli aizzare ver +aizzarli aizzare ver +aizzarlo aizzare ver +aizzarono aizzare ver +aizzata aizzare ver +aizzate aizzare ver +aizzati aizzare ver +aizzato aizzare ver +aizzava aizzare ver +aizzavano aizzare ver +aizzi aizzare ver +aizzò aizzare ver +al al pre +ala ala nom +alabarda alabarda nom +alabarde alabarda nom +alabardiere alabardiere nom +alabardieri alabardiere nom +alabastri alabastro nom +alabastrina alabastrino adj +alabastrine alabastrino adj +alabastrino alabastrino adj +alabastro alabastro nom +alacre alacre adj +alacremente alacremente adv +alacri alacre adj +alacrità alacrità nom +alaggio alaggio nom +alai alare ver +alala alare ver +alali alare ver +alalà alalà int +alamari alamaro nom +alamaro alamaro nom +alambicchi alambicco nom +alambicco alambicco nom +alami alare ver +alando alare ver +alane alare ver +alani alano nom +alano alano nom +alante alare ver +alar alare ver +alare alare adj +alari alare adj +alasi alare ver +alaste alare ver +alata alato adj +alate alato adj +alati alato adj +alato alato adj +alava alare ver +alavi alare ver +alavo alare ver +alba alba nom +albacora albacora npr +albagia albagia nom +albana albana nom +albane albana nom +albanese albanese adj +albanesi albanese adj +albarelli albarello nom +albarello albarello nom +albaspina albaspina nom +albatri albatro nom +albatro albatro nom +albe alba nom +albedo albedo nom +albeggia albeggiare ver +albeggiando albeggiare ver +albeggiante albeggiare ver +albeggiare albeggiare ver +albeggiava albeggiare ver +albera alberare ver +alberata alberato adj +alberate alberato adj +alberati alberato adj +alberato alberato adj +alberatura alberatura nom +alberature alberatura nom +alberese alberese nom +albereto albereto nom +albergatore albergatore nom +albergatori albergatore nom +albergatrice albergatore nom +alberghi albergo nom +alberghiera alberghiero adj +alberghiere alberghiero adj +alberghieri alberghiero adj +alberghiero alberghiero adj +albergo albergo nom +alberi albero nom +alberino alberare ver +albero albero nom +albi albo nom +albicocca albicocca nom +albicocche albicocca nom +albicocchi albicocco nom +albicocco albicocco nom +albina albino adj +albine albino adj +albini albino adj +albinismo albinismo nom +albino albino adj +albite albite nom +albo albo nom +albore albore nom +alborella alborella nom +alborelle alborella nom +albori albore nom +albugine albugine nom +albume albume nom +albumi albume nom +albumina albumina nom +albumine albumina nom +albuminoidi albuminoide nom +albuminuria albuminuria nom +albuminurie albuminuria nom +alburni alburno nom +alburno alburno nom +alcaica alcaico adj +alcaiche alcaico adj +alcaico alcaico adj +alcali alcali nom +alcalina alcalino adj +alcaline alcalino adj +alcalini alcalino adj +alcalinità alcalinità nom +alcalino alcalino adj +alcaloide alcaloide nom +alcaloidi alcaloide nom +alcalosi alcalosi nom +alcanna alcanna nom +alcazar alcazar nom +alce alce nom +alchermes alchermes nom +alchilati alchilati nom +alchile alchile nom +alchili alchile nom +alchilica alchilico adj +alchiliche alchilico adj +alchilici alchilico adj +alchilico alchilico adj +alchimia alchimia nom +alchimie alchimia nom +alchimista alchimista nom +alchimisti alchimista nom +alchimistica alchimistico adj +alchimistiche alchimistico adj +alchimistici alchimistico adj +alchimistico alchimistico adj +alci alce nom +alcione alcione nom +alcioni alcione nom +alcol alcol nom +alcole alcole nom +alcolemia alcolemia nom +alcoli alcole nom +alcolica alcolico adj +alcoliche alcolico adj +alcolici alcolico adj +alcolicità alcolicità nom +alcolico alcolico adj +alcolismo alcolismo nom +alcolista alcolista nom +alcoliste alcolista nom +alcolisti alcolista nom +alcolizzata alcolizzato adj +alcolizzati alcolizzato nom +alcolizzato alcolizzato adj +alcolometrico alcolometrico adj +alcool alcool nom +alcoolica alcoolico adj +alcooliche alcoolico adj +alcoolici alcoolico nom +alcoolico alcoolico adj +alcova alcova nom +alcove alcova nom +alcun alcuno pro +alcuna alcuno pro +alcunché alcunché pro +alcune alcuno pro +alcuni alcuno pro +alcuno alcuno pro +aldeide aldeide nom +aldeidi aldeide nom +aldilà aldilà adv +aldilá aldilá nom +aldina aldino adj +aldine aldino adj +aldini aldino adj +aldino aldino adj +alea alea nom +aleatico aleatico adj +aleatori aleatorio adj +aleatoria aleatorio adj +aleatorie aleatorio adj +aleatorio aleatorio adj +alee alea nom +aleggerebbe aleggiare ver +aleggi aleggiare ver +aleggia aleggiare ver +aleggiando aleggiare ver +aleggiano aleggiare ver +aleggiante aleggiare ver +aleggianti aleggiare ver +aleggiare aleggiare ver +aleggiarono aleggiare ver +aleggiata aleggiare ver +aleggiato aleggiare ver +aleggiava aleggiare ver +aleggiavano aleggiare ver +aleggino aleggiare ver +aleggiò aleggiare ver +alemanna alemanno adj +alemanne alemanno adj +alemanni alemanno nom +alemanno alemanno adj +alena alenare ver +aleni alenare ver +aleno alenare ver +alesa alesare ver +alesaggio alesaggio nom +alesano alesare ver +alesare alesare ver +alesati alesare ver +alesato alesare ver +alesatore alesatore nom +alesatori alesatore nom +alesatrice alesatrice nom +alesatrici alesatrice nom +alesatura alesatura nom +alesature alesatura nom +alesi alesare ver +aleso alesare ver +alessandrina alessandrino adj +alessandrine alessandrino adj +alessandrini alessandrino adj +alessandrinismo alessandrinismo nom +alessandrino alessandrino adj +aletta aletta nom +alettata alettato adj +alettate alettato adj +alettati alettare ver +alettato alettare ver +alettatura alettatura nom +alettature alettatura nom +alette aletta nom +aletti alettare ver +aletto alettare ver +alettone alettone nom +alettoni alettone nom +aleurone aleurone nom +alfa alfa nom +alfabeta alfabeta adj +alfabeti alfabeta|alfabeto nom +alfabetica alfabetico adj +alfabeticamente alfabeticamente adv +alfabetiche alfabetico adj +alfabetici alfabetico adj +alfabetico alfabetico adj +alfabetismo alfabetismo nom +alfabetizzare alfabetizzare ver +alfabetizzarsi alfabetizzare ver +alfabetizzata alfabetizzare ver +alfabetizzate alfabetizzare ver +alfabetizzati alfabetizzare ver +alfabetizzato alfabetizzare ver +alfabetizzazione alfabetizzazione nom +alfabeto alfabeto nom +alfe alfa nom +alfiere alfiere nom +alfieri alfiere nom +alfine alfine adv +alga alga nom +algebra algebra nom +algebre algebra nom +algebrica algebrico adj +algebricamente algebricamente adv +algebriche algebrico adj +algebrici algebrico adj +algebrico algebrico adj +algenti algente adj +algerina algerino adj +algerine algerino adj +algerini algerino adj +algerino algerino adj +alghe alga nom +algida algido adj +algide algido adj +algidi algido adj +algido algido adj +algologia algologia nom +algologie algologia nom +algoritmi algoritmo nom +algoritmo algoritmo nom +algosi algoso adj +algoso algoso adj +ali ala nom +aliante aliante nom +alianti aliante nom +alias alias adv +aliate alare ver +alibi alibi nom +alice alice nom +alici alice nom +alida alido adj +alidada alidada nom +alidade alidada nom +alide alido adj +alidi alido adj +alido alido adj +aliena alieno adj +alienabile alienabile adj +alienabili alienabile adj +alienare alienare ver +alienata alienato adj +alienate alienato adj +alienati alienato adj +alienato alienato adj +alienazione alienazione nom +alienazioni alienazione nom +aliene alieno adj +alieni alieno adj +alienista alienista nom +alienisti alienista nom +alieno alieno adj +alieutica alieutica nom +alieutiche alieutica nom +alieutico alieutico adj +alifatica alifatico adj +alifatiche alifatico adj +alifatici alifatico adj +alifatico alifatico adj +alighieri alighiero nom +alighiero alighiero nom +alimenta alimentare ver +alimentaci alimentare ver +alimentando alimentare ver +alimentandola alimentare ver +alimentandole alimentare ver +alimentandoli alimentare ver +alimentandolo alimentare ver +alimentandone alimentare ver +alimentandosi alimentare ver +alimentano alimentare ver +alimentante alimentare ver +alimentanti alimentare ver +alimentar alimentare ver +alimentarci alimentare ver +alimentare alimentare adj +alimentari alimentare|alimentario adj +alimentaria alimentario adj +alimentarie alimentario adj +alimentario alimentario adj +alimentarista alimentarista nom +alimentaristi alimentarista nom +alimentarla alimentare ver +alimentarle alimentare ver +alimentarli alimentare ver +alimentarlo alimentare ver +alimentarne alimentare ver +alimentarono alimentare ver +alimentarsi alimentare ver +alimentasse alimentare ver +alimentassero alimentare ver +alimentata alimentare ver +alimentate alimentare ver +alimentati alimentare ver +alimentato alimentare ver +alimentatore alimentatore nom +alimentatori alimentatore nom +alimentatrice alimentatore nom +alimentava alimentare ver +alimentavano alimentare ver +alimentazione alimentazione nom +alimentazioni alimentazione nom +alimenteranno alimentare ver +alimenterebbe alimentare ver +alimenterebbero alimentare ver +alimenterà alimentare ver +alimenti alimento nom +alimentiamo alimentare ver +alimentino alimentare ver +alimento alimento nom +alimentò alimentare ver +alinea alinea nom +alino alare ver +aliquota aliquota nom +aliquote aliquota nom +aliscafi aliscafo nom +aliscafo aliscafo nom +alisei aliseo nom +aliseo aliseo nom +alita alitare ver +alitalo alitare ver +alitando alitare ver +alitano alitare ver +alitare alitare ver +alitata alitare ver +alite alite nom +aliti alite|alito nom +alito alito nom +alitosi alitosi nom +alitò alitare ver +all all sw +alla al pre +allacceranno allacciare ver +allaccerà allacciare ver +allacci allacciare ver +allaccia allacciare ver +allacciamenti allacciamento nom +allacciamento allacciamento nom +allacciando allacciare ver +allacciandolo allacciare ver +allacciandosi allacciare ver +allacciano allacciare ver +allacciante allacciare ver +allaccianti allacciare ver +allacciare allacciare ver +allacciargli allacciare ver +allacciarla allacciare ver +allacciarlo allacciare ver +allacciarmi allacciare ver +allacciarono allacciare ver +allacciarsi allacciare ver +allacciarti allacciare ver +allacciasse allacciare ver +allacciata allacciare ver +allacciate allacciare ver +allacciati allacciare ver +allacciato allacciare ver +allacciatura allacciatura nom +allacciature allacciatura nom +allacciava allacciare ver +allacciavano allacciare ver +allaccio allacciare ver +allacciò allacciare ver +allaga allagare ver +allagamenti allagamento nom +allagamento allagamento nom +allagando allagare ver +allagandola allagare ver +allagandolo allagare ver +allagandosi allagare ver +allagano allagare ver +allagare allagare ver +allagarla allagare ver +allagarlo allagare ver +allagarono allagare ver +allagarsi allagare ver +allagassero allagare ver +allagata allagare ver +allagate allagare ver +allagati allagare ver +allagato allagare ver +allagava allagare ver +allagavano allagare ver +allagherà allagare ver +allaghi allagare ver +allagò allagare ver +allampanata allampanato adj +allampanate allampanato adj +allampanato allampanato adj +allappa allappare ver +allappante allappare ver +allarga allargare ver +allargai allargare ver +allargamenti allargamento nom +allargamento allargamento nom +allargando allargare ver +allargandola allargare ver +allargandole allargare ver +allargandoli allargare ver +allargandolo allargare ver +allargandone allargare ver +allargandosi allargare ver +allargano allargare ver +allargarci allargare ver +allargare allargare ver +allargarla allargare ver +allargarle allargare ver +allargarli allargare ver +allargarlo allargare ver +allargarmi allargare ver +allargarne allargare ver +allargarono allargare ver +allargarsi allargare ver +allargarti allargare ver +allargasse allargare ver +allargata allargare ver +allargate allargare ver +allargatesi allargare ver +allargati allargare ver +allargato allargare ver +allargatori allargatore nom +allargava allargare ver +allargavano allargare ver +allargheranno allargare ver +allargherebbe allargare ver +allargherebbero allargare ver +allargherei allargare ver +allargheremo allargare ver +allargherà allargare ver +allargherò allargare ver +allarghi allargare ver +allarghiamo allargare ver +allarghiamoci allargare ver +allarghino allargare ver +allargo allargare ver +allargò allargare ver +allarma allarmare ver +allarmando allarmare ver +allarmano allarmare ver +allarmante allarmante adj +allarmanti allarmante adj +allarmare allarmare ver +allarmarli allarmare ver +allarmarono allarmare ver +allarmarsi allarmare ver +allarmata allarmare ver +allarmate allarmare ver +allarmatevi allarmare ver +allarmati allarmare ver +allarmato allarmare ver +allarmava allarmare ver +allarme allarme nom +allarmerà allarmare ver +allarmi allarme nom +allarmismi allarmismo nom +allarmismo allarmismo nom +allarmista allarmista nom +allarmisti allarmista nom +allarmistica allarmistico adj +allarmistiche allarmistico adj +allarmistici allarmistico adj +allarmistico allarmistico adj +allarmo allarmare ver +allarmò allarmare ver +allato allato adv +allatta allattare ver +allattamento allattamento nom +allattando allattare ver +allattandoli allattare ver +allattandolo allattare ver +allattano allattare ver +allattante allattare ver +allattanti allattare ver +allattare allattare ver +allattarla allattare ver +allattarli allattare ver +allattarlo allattare ver +allattarsi allattare ver +allattasse allattare ver +allattata allattare ver +allattati allattare ver +allattato allattare ver +allattava allattare ver +allattavano allattare ver +allattò allattare ver +alle al pre +allea alleare ver +alleando alleare ver +alleandosi alleare ver +alleano alleare ver +alleanza alleanza nom +alleanze alleanza nom +allear alleare ver +allearci alleare ver +alleare alleare ver +allearono alleare ver +allearsi alleare ver +alleasse alleare ver +alleassero alleare ver +alleata alleare ver +alleate alleato adj +alleatesi alleare ver +alleati alleato nom +alleato alleare ver +alleava alleare ver +alleavano alleare ver +alleeranno alleare ver +alleerebbe alleare ver +alleerà alleare ver +allega allegare ver +allegabili allegabile adj +allegando allegare ver +allegandogli allegare ver +allegandola allegare ver +allegandolo allegare ver +allegandovi allegare ver +allegano allegare ver +allegante allegare ver +allegar allegare ver +allegare allegare ver +allegarlo allegare ver +allegarne allegare ver +allegarono allegare ver +allegarsi allegare ver +allegarvi allegare ver +allegata allegare ver +allegate allegato adj +allegati allegato adj +allegato allegare ver +allegava allegare ver +alleggerendo alleggerire ver +alleggerendola alleggerire ver +alleggerendole alleggerire ver +alleggerendolo alleggerire ver +alleggerendone alleggerire ver +alleggeriamo alleggerire ver +alleggerimenti alleggerimento nom +alleggerimento alleggerimento nom +alleggerire alleggerire ver +alleggerirebbe alleggerire ver +alleggerirei alleggerire ver +alleggerirla alleggerire ver +alleggerirle alleggerire ver +alleggerirli alleggerire ver +alleggerirlo alleggerire ver +alleggerirmi alleggerire ver +alleggerirne alleggerire ver +alleggerirono alleggerire ver +alleggerirsi alleggerire ver +alleggerirti alleggerire ver +alleggerirà alleggerire ver +alleggerisca alleggerire ver +alleggerisce alleggerire ver +alleggerisco alleggerire ver +alleggeriscono alleggerire ver +alleggerisse alleggerire ver +alleggerissero alleggerire ver +alleggerita alleggerire ver +alleggerite alleggerire ver +alleggeriti alleggerire ver +alleggerito alleggerire ver +alleggeriva alleggerire ver +alleggerivano alleggerire ver +alleggerì alleggerire ver +allegherà allegare ver +allegherò allegare ver +alleghi allegare ver +alleghiamo allegare ver +allego allegare ver +allegoria allegoria nom +allegorica allegorico adj +allegoricamente allegoricamente adv +allegoriche allegorico adj +allegorici allegorico adj +allegorico allegorico adj +allegorie allegoria nom +allegorista allegorista nom +allegoristi allegorista nom +allegra allegro adj +allegramente allegramente adv +allegre allegro adj +allegretti allegretto nom +allegretto allegretto nom +allegrezza allegrezza nom +allegrezze allegrezza nom +allegri allegro adj +allegria allegria nom +allegrie allegria nom +allegro allegro adj +allegrone allegrone nom +allegroni allegrone nom +allegò allegare ver +allei alleare ver +alleiamoci alleare ver +alleino alleare ver +allelomorfi allelomorfo adj +alleluia alleluia nom +allena allenare ver +allenamenti allenamento nom +allenamento allenamento nom +allenando allenare ver +allenandola allenare ver +allenandoli allenare ver +allenandolo allenare ver +allenandone allenare ver +allenandosi allenare ver +allenano allenare ver +allenante allenare ver +allenanti allenare ver +allenarci allenare ver +allenare allenare ver +allenarla allenare ver +allenarle allenare ver +allenarli allenare ver +allenarlo allenare ver +allenarmi allenare ver +allenarono allenare ver +allenarsi allenare ver +allenarvi allenare ver +allenasi allenare ver +allenasse allenare ver +allenassero allenare ver +allenata allenare ver +allenate allenare ver +allenati allenare ver +allenato allenare ver +allenatore allenatore nom +allenatori allenatore nom +allenatrice allenatore nom +allenatrici allenatore nom +allenava allenare ver +allenavamo allenare ver +allenavano allenare ver +alleneranno allenare ver +allenerà allenare ver +allenerò allenare ver +alleni allenare ver +alleniamo allenare ver +alleno allenare ver +allenta allentare ver +allentamenti allentamento nom +allentamento allentamento nom +allentando allentare ver +allentandosi allentare ver +allentano allentare ver +allentare allentare ver +allentarli allentare ver +allentarono allentare ver +allentarsi allentare ver +allentasse allentare ver +allentata allentare ver +allentate allentare ver +allentati allentare ver +allentato allentare ver +allentava allentare ver +allentavano allentare ver +allenterà allentare ver +allenti allentare ver +allentiamo allentare ver +allento allentare ver +allentò allentare ver +allenò allenare ver +alleo alleare ver +allergene allergene nom +allergeni allergene nom +allergia allergia nom +allergica allergico adj +allergiche allergico adj +allergici allergico adj +allergico allergico adj +allergie allergia nom +allerta allerta nom +allertare allertare ver +allertate allertare ver +allertati allertare ver +allertato allertare ver +allesse allesso adj +allestendo allestire ver +allestendola allestire ver +allestendone allestire ver +allestendovi allestire ver +allestii allestire ver +allestimenti allestimento nom +allestimento allestimento nom +allestiranno allestire ver +allestire allestire ver +allestirla allestire ver +allestirle allestire ver +allestirlo allestire ver +allestirne allestire ver +allestirono allestire ver +allestirsi allestire ver +allestirvi allestire ver +allestirà allestire ver +allestisca allestire ver +allestisce allestire ver +allestiscono allestire ver +allestisse allestire ver +allestita allestire ver +allestite allestire ver +allestiti allestire ver +allestito allestire ver +allestiva allestire ver +allestivano allestire ver +allestì allestire ver +alletta allettare ver +allettamenti allettamento nom +allettamento allettamento nom +allettandoli allettare ver +allettandolo allettare ver +allettano allettare ver +allettante allettante adj +allettanti allettante adj +allettare allettare ver +allettarlo allettare ver +allettata allettare ver +allettate allettare ver +allettati allettare ver +allettato allettare ver +allettatrice allettatore nom +allettava allettare ver +alletti allettare ver +alletto allettare ver +allettò allettare ver +alleva allevare ver +allevamenti allevamento nom +allevamento allevamento nom +allevando allevare ver +allevandola allevare ver +allevandoli allevare ver +allevandolo allevare ver +allevano allevare ver +allevante allevare ver +allevare allevare ver +allevarla allevare ver +allevarle allevare ver +allevarli allevare ver +allevarlo allevare ver +allevarne allevare ver +allevarono allevare ver +allevasse allevare ver +allevassero allevare ver +allevata allevare ver +allevate allevare ver +allevateli allevare ver +allevati allevare ver +allevato allevare ver +allevatore allevatore nom +allevatori allevatore nom +allevatrice allevatore nom +allevatrici allevatore nom +allevava allevare ver +allevavano allevare ver +alleverai allevare ver +alleverà allevare ver +allevi allevare ver +allevia alleviare ver +alleviamento alleviamento nom +alleviamo allevare|alleviare ver +alleviando alleviare ver +alleviandole alleviare ver +alleviandone alleviare ver +alleviano alleviare ver +alleviare alleviare ver +alleviargli alleviare ver +alleviarla alleviare ver +alleviarle alleviare ver +alleviarlo alleviare ver +alleviarne alleviare ver +alleviarono alleviare ver +alleviarsi alleviare ver +alleviasse alleviare ver +alleviassero alleviare ver +alleviata alleviare ver +alleviate alleviare ver +alleviati alleviare ver +alleviato alleviare ver +alleviava alleviare ver +alleviavano alleviare ver +allevierebbe alleviare ver +allevierà alleviare ver +allevio alleviare ver +alleviò alleviare ver +allevo allevare ver +allevò allevare ver +alleò alleare ver +allibire allibire ver +allibisce allibire ver +allibisco allibire ver +allibita allibire ver +allibiti allibire ver +allibito allibire ver +allibratore allibratore nom +allibratori allibratore nom +allibratrice allibratore nom +allieta allietare ver +allietando allietare ver +allietandoci allietare ver +allietandola allietare ver +allietano allietare ver +allietare allietare ver +allietarsi allietare ver +allietassero allietare ver +allietata allietare ver +allietate allietare ver +allietati allietare ver +allietato allietare ver +allietava allietare ver +allietavano allietare ver +allieterai allietare ver +allieterà allietare ver +allieti allietare ver +allieva allievo nom +allieve allievo nom +allievi allievo nom +allievo allievo nom +alligatore alligatore nom +alligatori alligatore nom +alligna allignare ver +allignano allignare ver +allignante allignare ver +allignate allignare ver +allignavano allignare ver +allignò allignare ver +allinea allineare ver +allineamenti allineamento nom +allineamento allineamento nom +allineando allineare ver +allineandola allineare ver +allineandole allineare ver +allineandoli allineare ver +allineandolo allineare ver +allineandosi allineare ver +allineano allineare ver +allineante allineare ver +allinearci allineare ver +allineare allineare ver +allinearla allineare ver +allinearle allineare ver +allinearli allineare ver +allinearlo allineare ver +allinearmi allineare ver +allinearne allineare ver +allinearono allineare ver +allinearsi allineare ver +allineasse allineare ver +allineassero allineare ver +allineata allineare ver +allineate allineare ver +allineati allineare ver +allineato allineare ver +allineava allineare ver +allineavano allineare ver +allineeranno allineare ver +allineeremo allineare ver +allineerà allineare ver +allinei allineare ver +allineino allineare ver +allineo allineare ver +allineò allineare ver +allitterazione allitterazione nom +allitterazioni allitterazione nom +allo al pre +allobrogi allobrogo adj +allocare allocare ver +allocate allocare ver +allocati allocare ver +allocato allocare ver +allocazione allocazione nom +allocazioni allocazioni nom +allocca allocco nom +allocchi allocco nom +allocco allocco nom +allocromatica allocromatico adj +allocromatico allocromatico adj +alloctona alloctono adj +alloctone alloctono adj +alloctoni alloctono adj +alloctono alloctono adj +allocuzione allocuzione nom +allocuzioni allocuzione nom +allodi allodio nom +allodiale allodiale adj +allodiali allodiale adj +allodio allodio nom +allodola allodola nom +allodole allodola nom +allogare allogare ver +allogarono allogare ver +allogata allogare ver +allogate allogare ver +allogati allogare ver +allogato allogare ver +allogena allogeno adj +allogene allogeno adj +allogeni allogeno adj +allogeno allogeno adj +alloggeranno alloggiare ver +alloggerà alloggiare ver +alloggi alloggio nom +alloggia alloggiare ver +alloggiai alloggiare ver +alloggiamenti alloggiamento nom +alloggiamento alloggiamento nom +alloggiando alloggiare ver +alloggiandolo alloggiare ver +alloggiandosi alloggiare ver +alloggiano alloggiare ver +alloggianti alloggiare ver +alloggiar alloggiare ver +alloggiarci alloggiare ver +alloggiare alloggiare ver +alloggiarla alloggiare ver +alloggiarle alloggiare ver +alloggiarli alloggiare ver +alloggiarlo alloggiare ver +alloggiarne alloggiare ver +alloggiarono alloggiare ver +alloggiarsi alloggiare ver +alloggiarvi alloggiare ver +alloggiasse alloggiare ver +alloggiata alloggiare ver +alloggiate alloggiare ver +alloggiati alloggiare ver +alloggiato alloggiare ver +alloggiava alloggiare ver +alloggiavano alloggiare ver +alloggio alloggio nom +alloggiò alloggiare ver +allogi allogare ver +alloglotta alloglotto nom +alloglotte alloglotto nom +alloglotti alloglotto nom +alloglotto alloglotto nom +allogò allogare ver +allontana allontanare ver +allontanai allontanare ver +allontanamenti allontanamento nom +allontanamento allontanamento nom +allontanammo allontanare ver +allontanando allontanare ver +allontanandoci allontanare ver +allontanandola allontanare ver +allontanandole allontanare ver +allontanandoli allontanare ver +allontanandolo allontanare ver +allontanandomi allontanare ver +allontanandone allontanare ver +allontanandosene allontanare ver +allontanandosi allontanare ver +allontanano allontanare ver +allontananti allontanare ver +allontanar allontanare ver +allontanarci allontanare ver +allontanare allontanare ver +allontanarla allontanare ver +allontanarle allontanare ver +allontanarli allontanare ver +allontanarlo allontanare ver +allontanarmene allontanare ver +allontanarmi allontanare ver +allontanarne allontanare ver +allontanarono allontanare ver +allontanarsene allontanare ver +allontanarsi allontanare ver +allontanarti allontanare ver +allontanarvi allontanare ver +allontanasi allontanare ver +allontanasse allontanare ver +allontanassero allontanare ver +allontanata allontanare ver +allontanate allontanare ver +allontanatesi allontanare ver +allontanatevi allontanare ver +allontanati allontanare ver +allontanato allontanare ver +allontanava allontanare ver +allontanavano allontanare ver +allontanerai allontanare ver +allontaneranno allontanare ver +allontanerebbe allontanare ver +allontanerebbero allontanare ver +allontanerei allontanare ver +allontaneresti allontanare ver +allontanerà allontanare ver +allontanerò allontanare ver +allontani allontanare ver +allontaniamo allontanare ver +allontaniamoci allontanare ver +allontanino allontanare ver +allontano allontanare ver +allontanò allontanare ver +allopatia allopatia nom +allora allora adv_sup +allorchè allorchè con +allorché allorché con +allori alloro nom +alloro alloro nom +allorquando allorquando con +allotropi allotropo nom +allotropia allotropia nom +allotropica allotropico adj +allotropiche allotropico adj +allotropici allotropico adj +allotropico allotropico adj +allotropie allotropia nom +allotropo allotropo nom +alluce alluce nom +alluci alluce nom +allucinante allucinante adj +allucinanti allucinante adj +allucinata allucinato adj +allucinate allucinare ver +allucinati allucinato adj +allucinato allucinato adj +allucinatoria allucinatorio adj +allucinatorie allucinatorio adj +allucinatorio allucinatorio adj +allucinazione allucinazione nom +allucinazioni allucinazione nom +allucinogena allucinogeno adj +allucinogene allucinogeno adj +allucinogeni allucinogeno adj +allucinogeno allucinogeno adj +alluda alludere ver +alludano alludere ver +allude alludere ver +alludendo alludere ver +alludente alludere ver +alludenti alludere ver +alludere alludere ver +alluderebbe alludere ver +alluderebbero alludere ver +alludervi alludere ver +alludesse alludere ver +alludessero alludere ver +alludeva alludere ver +alludevano alludere ver +alludevi alludere ver +alludevo alludere ver +alludi alludere ver +alludo alludere ver +alludono alludere ver +allumar allumare ver +allumata allumare ver +allumate allumare ver +allumati allumare ver +allumato allumare ver +allume allume nom +allumi allume nom +allumina allumina nom +alluminar alluminare ver +alluminata alluminare ver +alluminati alluminare ver +alluminato alluminare ver +allumini alluminare ver +alluminico alluminico adj +alluminiferi alluminifero adj +alluminifero alluminifero adj +alluminio alluminio nom +allumino allumare ver +alluna allunare ver +allunaggi allunaggio nom +allunaggio allunaggio nom +allunando allunare ver +allunare allunare ver +allunarono allunare ver +allunate allunare ver +allunati allunare ver +allunato allunare ver +allunga allungare ver +allungabile allungabile adj +allungabili allungabile adj +allungai allungare ver +allungamenti allungamento nom +allungamento allungamento nom +allungando allungare ver +allungandogli allungare ver +allungandola allungare ver +allungandole allungare ver +allungandoli allungare ver +allungandolo allungare ver +allungandone allungare ver +allungandosi allungare ver +allungano allungare ver +allungante allungare ver +allungare allungare ver +allungargli allungare ver +allungarla allungare ver +allungarle allungare ver +allungarli allungare ver +allungarlo allungare ver +allungarne allungare ver +allungarono allungare ver +allungarsi allungare ver +allungasse allungare ver +allungassero allungare ver +allungata allungare ver +allungate allungare ver +allungati allungare ver +allungato allungare ver +allungatura allungatura nom +allungava allungare ver +allungavano allungare ver +allungheranno allungare ver +allungherebbe allungare ver +allungherebbero allungare ver +allungherei allungare ver +allungheremo allungare ver +allungherà allungare ver +allungherò allungare ver +allunghi allungare ver +allunghiamo allungare ver +allunghino allungare ver +allungo allungo nom +allungò allungare ver +allunò allunare ver +allusa alludere ver +alluse alluso adj +allusero alludere ver +allusi alluso adj +allusione allusione nom +allusioni allusione nom +allusiva allusivo adj +allusive allusivo adj +allusivi allusivo adj +allusivo allusivo adj +alluso alludere ver +alluvionale alluvionale adj +alluvionali alluvionale adj +alluvionata alluvionato adj +alluvionate alluvionato adj +alluvionati alluvionato adj +alluvionato alluvionato adj +alluvione alluvione nom +alluvioni alluvione nom +alma almo adj +almagesti almagesto nom +almagesto almagesto nom +almanaccale almanaccare ver +almanaccare almanaccare ver +almanaccato almanaccare ver +almanacchi almanaccare ver +almanacco almanacco nom +alme almo adj +almea almea nom +almee almea nom +almeno almeno adv_sup +almi almo adj +almo almo adj +alni alno nom +alno alno nom +alo alare ver +aloe aloe nom +alofita alofita nom +alofite alofita nom +alogenate alogenato adj +alogenati alogenato adj +alogenato alogenato adj +alogeni alogeno nom +alogeno alogeno nom +alone alone nom +aloni alone nom +alopecia alopecia nom +alopecie alopecia nom +alosa alosa nom +alose alosa nom +alpaca alpaca nom +alpacca alpacca nom +alpe alpe nom +alpeggi alpeggio nom +alpeggio alpeggio nom +alpenstock alpenstock nom +alpestre alpestre adj +alpestri alpestre adj +alpi alpe nom +alpigiane alpigiano adj +alpigiani alpigiano nom +alpigiano alpigiano adj +alpina alpino adj +alpine alpino adj +alpini alpino adj +alpinismo alpinismo nom +alpinista alpinista nom +alpiniste alpinista nom +alpinisti alpinista nom +alpino alpino adj +alquanto alquanto adv_sup +alt alt int +alta alto adj +altalena altalena nom +altalenando altalenare ver +altalenante altalenare ver +altalenanti altalenare ver +altalenare altalenare ver +altalenarsi altalenare ver +altalenate altalenare ver +altalenava altalenare ver +altalene altalena nom +altamente altamente adv +altana altana nom +altane altana nom +altare altare nom +altari altare nom +altarini altarino nom +altarino altarino nom +alte alto adj +altea altea nom +altee altea nom +altera alterare ver +alteraci alterare ver +alterali alterare ver +alterando alterare ver +alterandola alterare ver +alterandolo alterare ver +alterandone alterare ver +alterandosi alterare ver +alterane alterare ver +alterano alterare ver +alterante alterare ver +alteranti alterare ver +alterare alterare ver +alterarla alterare ver +alterarle alterare ver +alterarli alterare ver +alterarlo alterare ver +alterarmi alterare ver +alterarne alterare ver +alterarono alterare ver +alterarsi alterare ver +alterarti alterare ver +alterasse alterare ver +alterassero alterare ver +alterata alterare ver +alterate alterare ver +alterati alterare ver +alterativa alterativo adj +alterative alterativo adj +alterativi alterativo adj +alterativo alterativo adj +alterato alterare ver +alterava alterare ver +alteravano alterare ver +alterazione alterazione nom +alterazioni alterazione nom +altercare altercare ver +alterchi alterco nom +alterco alterco nom +altererebbe alterare ver +altererebbero alterare ver +altererà alterare ver +alterezza alterezza nom +alteri alterare ver +alteriamo alterare ver +alterigia alterigia nom +alterino alterare ver +alterna alternare ver +alternando alternare ver +alternandola alternare ver +alternandole alternare ver +alternandoli alternare ver +alternandolo alternare ver +alternandone alternare ver +alternandosi alternare ver +alternandovi alternare ver +alternano alternare ver +alternante alternare ver +alternanti alternare ver +alternanza alternanza nom +alternanze alternanza nom +alternare alternare ver +alternarla alternare ver +alternarle alternare ver +alternarli alternare ver +alternarlo alternare ver +alternarne alternare ver +alternarono alternare ver +alternarsi alternare ver +alternassero alternare ver +alternata alternato adj +alternate alternato adj +alternati alternare ver +alternativa alternativo adj +alternativamente alternativamente adv +alternative alternativo adj +alternativi alternativo adj +alternativo alternativo adj +alternato alternare ver +alternatore alternatore nom +alternatori alternatore nom +alternava alternare ver +alternavano alternare ver +alterne alterno adj +alterneranno alternare ver +alternerei alternare ver +alternerà alternare ver +alterni alterno adj +alternino alternare ver +alterno alterno adj +alternò alternare ver +altero alterare ver +alterò alterare ver +altezza altezza nom +altezze altezza nom +altezzosa altezzoso adj +altezzose altezzoso adj +altezzosi altezzoso adj +altezzosità altezzosità nom +altezzoso altezzoso adj +alti alto adj +altica altica nom +alticci alticcio adj +alticcia alticcio adj +alticcio alticcio adj +altiforni altiforni nom +altimetri altimetro nom +altimetria altimetria nom +altimetrica altimetrico adj +altimetriche altimetrico adj +altimetrici altimetrico adj +altimetrico altimetrico adj +altimetrie altimetria nom +altimetro altimetro nom +altisonante altisonante adj +altisonanti altisonante adj +altissima altissimo adj +altissimi altissimo adj +altissimo altissimo adj +altitudine altitudine nom +altitudini altitudine nom +alto alto adj +altoatesina altoatesino adj +altoatesine altoatesino adj +altoatesini altoatesino adj +altoatesino altoatesino adj +altocumuli altocumulo nom +altocumulo altocumulo nom +altoforni altoforno nom +altoforno altoforno nom +altolocata altolocato adj +altolocate altolocato adj +altolocati altolocato adj +altolocato altolocato adj +altoparlante altoparlante nom +altoparlanti altoparlante nom +altopiani altopiano nom +altopiano altopiano nom +altorilievi altorilievo nom +altorilievo altorilievo nom +altostrati altostrato nom +altostrato altostrato nom +altra altro adj_sup +altre altro adj_sup +altresi altresi sw +altresì altresì adv_sup +altrettale altrettale adj +altrettanta altrettanto adj +altrettante altrettanto adj +altrettanti altrettanto adj_sup +altrettanto altrettanto adv_sup +altri altri|altro pro +altrimenti altrimenti adv_sup +altro altro adj_sup +altroché altroché int +altronde altronde adv_sup +altrove altrove adv_sup +altrui altrui adj +altruismo altruismo nom +altruista altruista nom +altruiste altruista nom +altruisti altruista nom +altruistica altruistico adj +altruistiche altruistico adj +altruistici altruistico adj +altruistico altruistico adj +altura altura nom +alture altura nom +alunna alunno nom +alunne alunno nom +alunni alunno nom +alunno alunno nom +alveare alveare nom +alveari alveare nom +alvei alveo nom +alveo alveo nom +alveolare alveolare adj +alveolari alveolare adj +alveoli alveolo nom +alveolo alveolo nom +alvi alvo nom +alvo alvo nom +alza alzare ver +alzabandiera alzabandiera nom +alzabile alzabile adj +alzai alzare ver +alzaia alzaia nom +alzaie alzaia nom +alzala alzare ver +alzammo alzare ver +alzando alzare ver +alzandola alzare ver +alzandole alzare ver +alzandolo alzare ver +alzandomi alzare ver +alzandone alzare ver +alzandosi alzare ver +alzano alzare ver +alzar alzare ver +alzarci alzare ver +alzare alzare ver +alzarla alzare ver +alzarle alzare ver +alzarli alzare ver +alzarlo alzare ver +alzarmi alzare ver +alzarne alzare ver +alzarono alzare ver +alzarsi alzare ver +alzarti alzare ver +alzarvi alzare ver +alzasse alzare ver +alzassero alzare ver +alzassi alzare ver +alzassimo alzare ver +alzata alzare ver +alzate alzato adj +alzatesi alzare ver +alzatevi alzare ver +alzati alzare ver +alzato alzare ver +alzava alzare ver +alzavano alzare ver +alzavi alzare ver +alzavo alzare ver +alzavola alzavola nom +alzavole alzavola nom +alzerai alzare ver +alzeranno alzare ver +alzerebbe alzare ver +alzerebbero alzare ver +alzerei alzare ver +alzeremo alzare ver +alzerà alzare ver +alzerò alzare ver +alzi alzare ver +alziamo alzare ver +alziamoci alzare ver +alzino alzare ver +alzo alzo nom +alzò alzare ver +alò alare ver +ama amare ver +amabile amabile adj +amabili amabile adj +amabilità amabilità nom +amaca amaca nom +amache amaca nom +amaci amare ver +amadriade amadriade nom +amadriadi amadriade nom +amai amare ver +amala amare ver +amale amare ver +amalgama amalgama nom +amalgamando amalgamare ver +amalgamandoli amalgamare ver +amalgamandolo amalgamare ver +amalgamandone amalgamare ver +amalgamandosi amalgamare ver +amalgamano amalgamare ver +amalgamante amalgamare ver +amalgamare amalgamare ver +amalgamarle amalgamare ver +amalgamarli amalgamare ver +amalgamarono amalgamare ver +amalgamarsi amalgamare ver +amalgamasse amalgamare ver +amalgamata amalgamare ver +amalgamate amalgamare ver +amalgamati amalgamare ver +amalgamato amalgamare ver +amalgamavano amalgamare ver +amalgami amalgama nom +amalgamo amalgamare ver +amalgamò amalgamare ver +amali amare ver +amalo amare ver +amamelidali amamelidali nom +amamelide amamelide nom +amami amare ver +amammo amare ver +amando amare ver +amandoci amare ver +amandola amare ver +amandole amare ver +amandolo amare ver +amandone amare ver +amandosi amare ver +amandoti amare ver +amane amare ver +amanita amanita nom +amanite amanita nom +amano amare ver +amante amante nom +amanti amante nom +amanuense amanuense nom +amanuensi amanuense nom +amar amare ver +amara amaro adj +amaramente amaramente adv +amarantacee amarantacee nom +amaranti amaranto nom +amaranto amaranto nom +amarci amare ver +amare amare ver +amareggia amareggiare ver +amareggiando amareggiare ver +amareggiano amareggiare ver +amareggianti amareggiare ver +amareggiare amareggiare ver +amareggiarli amareggiare ver +amareggiarmi amareggiare ver +amareggiarono amareggiare ver +amareggiarti amareggiare ver +amareggiata amareggiare ver +amareggiate amareggiare ver +amareggiati amareggiare ver +amareggiato amareggiare ver +amareggiò amareggiare ver +amarena amarena nom +amarene amarena nom +amareno amareno nom +amaretti amaretto nom +amaretto amaretto nom +amarezza amarezza nom +amarezze amarezza nom +amari amaro adj +amarilli amarilli nom +amarillidacee amarillidacee nom +amarla amare ver +amarle amare ver +amarli amare ver +amarlo amare ver +amarmi amare ver +amarne amare ver +amaro amaro adj +amarognola amarognolo adj +amarognole amarognolo adj +amarognoli amarognolo adj +amarognolo amarognolo adj +amarono amare ver +amarra amarra nom +amarsi amare ver +amarti amare ver +amarvi amare ver +amasene amare ver +amasi amare ver +amasse amare ver +amassero amare ver +amassi amare ver +amaste amare ver +amasti amare ver +amata amato adj +amate amare ver +amatemi amare ver +amatevi amare ver +amati amato adj +amato amare ver +amatore amatore nom +amatori amatorio adj +amatoria amatorio adj +amatorie amatorio adj +amatorio amatorio adj +amatrice amatore nom +amaurosi amaurosi nom +amava amare ver +amavamo amare ver +amavano amare ver +amavi amare ver +amavo amare ver +amazzone amazzone nom +amazzoni amazzone nom +amazzonica amazzonico adj +amazzoniche amazzonico adj +amazzonici amazzonico adj +amazzonico amazzonico adj +amazzonite amazzonite nom +ambasce ambascia nom +ambasceria ambasceria nom +ambascerie ambasceria nom +ambascia ambascia nom +ambasciata ambasciata nom +ambasciate ambasciata nom +ambasciatore ambasciatore nom +ambasciatori ambasciatore nom +ambasciatrice ambasciatore nom +ambasciatrici ambasciatore nom +ambata ambata nom +ambe ambo adj +ambedue ambedue adj +ambendo ambire ver +ambenti ambire ver +ambi ambo adj +ambia ambiare ver +ambiamo ambiare|ambire ver +ambiano ambiare ver +ambiante ambiare ver +ambianti ambiare ver +ambiare ambiare ver +ambidestra ambidestro adj +ambidestre ambidestro adj +ambidestri ambidestro adj +ambidestro ambidestro adj +ambienta ambientare ver +ambientale ambientale adj +ambientali ambientale adj +ambientalista ambientalista nom +ambientaliste ambientalista nom +ambientalisti ambientalista nom +ambientalistica ambientalistico adj +ambientalistiche ambientalistico adj +ambientalistici ambientalistico adj +ambientalistico ambientalistico adj +ambientalmente ambientalmente adv +ambientamento ambientamento nom +ambientando ambientare ver +ambientandola ambientare ver +ambientandole ambientare ver +ambientandolo ambientare ver +ambientandone ambientare ver +ambientandosi ambientare ver +ambientandovi ambientare ver +ambientano ambientare ver +ambientante ambientare ver +ambientanti ambientare ver +ambientarci ambientare ver +ambientare ambientare ver +ambientarla ambientare ver +ambientarlo ambientare ver +ambientarmi ambientare ver +ambientarne ambientare ver +ambientarono ambientare ver +ambientarsi ambientare ver +ambientarvi ambientare ver +ambientata ambientare ver +ambientate ambientare ver +ambientati ambientare ver +ambientato ambientare ver +ambientava ambientare ver +ambientavano ambientare ver +ambientazione ambientazione nom +ambientazioni ambientazione nom +ambiente ambiente nom +ambienterà ambientare ver +ambienti ambiente nom +ambientino ambientare ver +ambiento ambientare ver +ambientò ambientare ver +ambigenere ambigenere adj +ambigua ambiguo adj +ambigue ambiguo adj +ambigui ambiguo adj +ambiguità ambiguità nom +ambiguo ambiguo adj +ambio ambio nom +ambir ambire ver +ambire ambire ver +ambirebbe ambire ver +ambirebbero ambire ver +ambirono ambire ver +ambirvi ambire ver +ambisca ambire ver +ambisce ambire ver +ambisci ambire ver +ambisco ambire ver +ambiscono ambire ver +ambisse ambire ver +ambissero ambire ver +ambita ambire ver +ambite ambire ver +ambiti ambito nom +ambito ambito nom +ambiva ambire ver +ambivalente ambivalente adj +ambivalenti ambivalente adj +ambivalenza ambivalenza nom +ambivalenze ambivalenza nom +ambivano ambire ver +ambivo ambire ver +ambizione ambizione nom +ambizioni ambizione nom +ambiziosa ambizioso adj +ambiziose ambizioso adj +ambiziosi ambizioso adj +ambizioso ambizioso adj +ambliopia ambliopia nom +ambliopie ambliopia nom +ambo ambo adj +ambone ambone nom +amboni ambone nom +ambra ambra nom +ambrata ambrato adj +ambrate ambrato adj +ambrati ambrato adj +ambrato ambrato adj +ambre ambra nom +ambretta ambretta nom +ambrosia ambrosia nom +ambrosiana ambrosiano adj +ambrosiane ambrosiano adj +ambrosiani ambrosiano adj +ambrosiano ambrosiano adj +ambrosie ambrosia nom +ambulacrale ambulacrale adj +ambulacrali ambulacrale adj +ambulacri ambulacro nom +ambulacro ambulacro nom +ambulante ambulante adj +ambulanti ambulante adj +ambulanza ambulanza nom +ambulanze ambulanza nom +ambulatori ambulatorio nom +ambulatoriale ambulatoriale adj +ambulatoriali ambulatoriale adj +ambulatorio ambulatorio nom +ambì ambire ver +ameba ameba nom +amebe ameba nom +amebeo amebeo adj +amebiasi amebiasi nom +ameboide ameboide adj +ameboidi ameboide adj +amen amen int +amena ameno adj +amene ameno adj +ameni ameno adj +amenità amenità nom +ameno ameno adj +amenorrea amenorrea nom +amenorree amenorrea nom +amenti amento nom +amento amento nom +amenza amenza nom +amenze amenza nom +amerai amare ver +ameranno amare ver +amerebbe amare ver +amerebbero amare ver +amerei amare ver +ameremo amare ver +ameresti amare ver +amerete amare ver +americana americano adj +americanata americanata nom +americanate americanata nom +americane americano adj +americani americano adj +americanismi americanismo nom +americanismo americanismo nom +americanista americanista nom +americanisti americanista nom +americanistica americanistica nom +americanizzando americanizzare ver +americanizzante americanizzare ver +americanizzare americanizzare ver +americanizzata americanizzare ver +americanizzati americanizzare ver +americanizzato americanizzare ver +americanizzazione americanizzazione nom +americanizzò americanizzare ver +americano americano adj +americi americio nom +americio americio nom +amerindi amerindio adj +amerindio amerindio adj +amerà amare ver +amerò amare ver +ametista ametista nom +ametiste ametista nom +ametropia ametropia nom +ametropie ametropia nom +amfetamina amfetamina nom +amfetamine amfetamina nom +ami amo nom +amiamo amare ver +amiamoci amare ver +amianti amianto nom +amianto amianto nom +amiate amare ver +amica amico nom +amicale amicare ver +amicali amicare ver +amicarsi amicare ver +amiche amico nom +amichevole amichevole adj +amichevoli amichevole adj +amichevolmente amichevolmente adv +amichi amicare ver +amici amico nom +amicizia amicizia nom +amicizie amicizia nom +amico amico nom +amidacea amidaceo adj +amidacee amidaceo adj +amidacei amidaceo adj +amidaceo amidaceo adj +amidi amido nom +amido amido nom +amigdala amigdala nom +amigdale amigdala nom +amigdalina amigdalina nom +amilacea amilaceo adj +amilacee amilaceo adj +amilacei amilaceo adj +amilaceo amilaceo adj +amilasi amilasi nom +amino amare ver +aminoacidi aminoacido nom +aminoacido aminoacido nom +amitto amitto nom +amletica amletico adj +amletici amletico adj +amletico amletico adj +amlire amlira nom +ammacca ammaccare ver +ammaccando ammaccare ver +ammaccandola ammaccare ver +ammaccano ammaccare ver +ammaccare ammaccare ver +ammaccata ammaccare ver +ammaccate ammaccare ver +ammaccati ammaccare ver +ammaccato ammaccare ver +ammaccatura ammaccatura nom +ammaccature ammaccatura nom +ammaestra ammaestrare ver +ammaestrabile ammaestrabile adj +ammaestramenti ammaestramento nom +ammaestramento ammaestramento nom +ammaestrando ammaestrare ver +ammaestrare ammaestrare ver +ammaestrarli ammaestrare ver +ammaestrarlo ammaestrare ver +ammaestrata ammaestrare ver +ammaestrate ammaestrare ver +ammaestrati ammaestrare ver +ammaestrato ammaestrare ver +ammaestratore ammaestratore nom +ammaestratori ammaestratore nom +ammaestratrice ammaestratore nom +ammaestrava ammaestrare ver +ammaestrò ammaestrare ver +ammaina ammainare ver +ammainabandiera ammainabandiera nom +ammainando ammainare ver +ammainano ammainare ver +ammainare ammainare ver +ammainarne ammainare ver +ammainarono ammainare ver +ammainata ammainare ver +ammainate ammainare ver +ammainato ammainare ver +ammainava ammainare ver +ammaino ammainare ver +ammainò ammainare ver +ammala ammalare ver +ammalando ammalare ver +ammalandosi ammalare ver +ammalano ammalare ver +ammalare ammalare ver +ammalarmi ammalare ver +ammalarono ammalare ver +ammalarsi ammalare ver +ammalasse ammalare ver +ammalassero ammalare ver +ammalata ammalare ver +ammalate ammalato adj +ammalati ammalato nom +ammalato ammalare ver +ammalava ammalare ver +ammalavano ammalare ver +ammaleranno ammalare ver +ammalerebbe ammalare ver +ammalerà ammalare ver +ammalerò ammalare ver +ammali ammalare|ammaliare ver +ammalia ammaliare ver +ammaliamento ammaliamento nom +ammaliando ammaliare ver +ammaliano ammaliare ver +ammaliante ammaliare ver +ammalianti ammaliare ver +ammaliare ammaliare ver +ammaliarla ammaliare ver +ammaliarlo ammaliare ver +ammaliata ammaliare ver +ammaliate ammaliare ver +ammaliati ammaliare ver +ammaliato ammaliare ver +ammaliatore ammaliatore nom +ammaliatori ammaliatore nom +ammaliatrice ammaliatore nom +ammaliatrici ammaliatore nom +ammaliavano ammaliare ver +ammalierà ammaliare ver +ammalino ammalare|ammaliare ver +ammaliò ammaliare ver +ammalo ammalare ver +ammalò ammalare ver +ammanchi ammanco nom +ammanco ammanco nom +ammanetta ammanettare ver +ammanettando ammanettare ver +ammanettandola ammanettare ver +ammanettandolo ammanettare ver +ammanettano ammanettare ver +ammanettare ammanettare ver +ammanettarla ammanettare ver +ammanettarlo ammanettare ver +ammanettarsi ammanettare ver +ammanettata ammanettare ver +ammanettate ammanettare ver +ammanettati ammanettare ver +ammanettato ammanettare ver +ammanetterà ammanettare ver +ammanettò ammanettare ver +ammanicate ammanicato adj +ammanicato ammanicato adj +ammanigliare ammanigliare ver +ammanigliata ammanigliare ver +ammanniti ammannire ver +ammannito ammannire ver +ammansire ammansire ver +ammansirlo ammansire ver +ammansirono ammansire ver +ammansirsi ammansire ver +ammansisce ammansire ver +ammansiscono ammansire ver +ammansita ammansire ver +ammansite ammansire ver +ammansiti ammansire ver +ammansito ammansire ver +ammansì ammansire ver +ammanta ammantare ver +ammantando ammantare ver +ammantandosi ammantare ver +ammantano ammantare ver +ammantare ammantare ver +ammantarono ammantare ver +ammantarsi ammantare ver +ammantata ammantare ver +ammantate ammantare ver +ammantati ammantare ver +ammantato ammantare ver +ammantava ammantare ver +ammantavano ammantare ver +ammanterà ammantare ver +ammantino ammantare ver +ammanto ammanto nom +ammantò ammantare ver +ammara ammarare ver +ammaraggi ammaraggio nom +ammaraggio ammaraggio nom +ammarando ammarare ver +ammarare ammarare ver +ammararono ammarare ver +ammarata ammarare ver +ammarati ammarare ver +ammarato ammarare ver +ammarava ammarare ver +ammari ammarare ver +ammaro ammarare ver +ammarò ammarare ver +ammassa ammassare ver +ammassamenti ammassamento nom +ammassamento ammassamento nom +ammassando ammassare ver +ammassandoli ammassare ver +ammassandosi ammassare ver +ammassano ammassare ver +ammassare ammassare ver +ammassarle ammassare ver +ammassarne ammassare ver +ammassarono ammassare ver +ammassarsi ammassare ver +ammassata ammassare ver +ammassate ammassare ver +ammassati ammassare ver +ammassato ammassare ver +ammassavano ammassare ver +ammassi ammasso nom +ammasso ammasso nom +ammassò ammassare ver +ammattendo ammattire ver +ammattire ammattire ver +ammattirsi ammattire ver +ammattiti ammattire ver +ammattito ammattire ver +ammattonata ammattonare ver +ammattonato ammattonato nom +ammazza ammazzare ver +ammazzali ammazzare ver +ammazzalo ammazzare ver +ammazzamenti ammazzamento nom +ammazzamento ammazzamento nom +ammazzami ammazzare ver +ammazzando ammazzare ver +ammazzandola ammazzare ver +ammazzano ammazzare ver +ammazzar ammazzare ver +ammazzarci ammazzare ver +ammazzare ammazzare ver +ammazzarla ammazzare ver +ammazzarle ammazzare ver +ammazzarli ammazzare ver +ammazzarlo ammazzare ver +ammazzarmi ammazzare ver +ammazzarne ammazzare ver +ammazzarono ammazzare ver +ammazzarsi ammazzare ver +ammazzarti ammazzare ver +ammazzarvi ammazzare ver +ammazzasette ammazzasette nom +ammazzasse ammazzare ver +ammazzassero ammazzare ver +ammazzata ammazzare ver +ammazzate ammazzare ver +ammazzateci ammazzare ver +ammazzateli ammazzare ver +ammazzatelo ammazzare ver +ammazzatemi ammazzare ver +ammazzati ammazzare ver +ammazzato ammazzare ver +ammazzatoi ammazzatoio nom +ammazzatoio ammazzatoio nom +ammazzava ammazzare ver +ammazzavano ammazzare ver +ammazzavo ammazzare ver +ammazzeranno ammazzare ver +ammazzerebbe ammazzare ver +ammazzerei ammazzare ver +ammazzerà ammazzare ver +ammazzerò ammazzare ver +ammazzi ammazzare ver +ammazziamo ammazzare ver +ammazziamoli ammazzare ver +ammazzino ammazzare ver +ammazzo ammazzare ver +ammazzò ammazzare ver +ammenda ammenda nom +ammende ammenda nom +ammessa ammettere ver +ammesse ammettere ver +ammessi ammettere ver +ammesso ammettere ver +ammetta ammettere ver +ammettano ammettere ver +ammette ammettere ver +ammettendo ammettere ver +ammettendola ammettere ver +ammettendole ammettere ver +ammettendoli ammettere ver +ammettendolo ammettere ver +ammettendone ammettere ver +ammettendosi ammettere ver +ammettendovi ammettere ver +ammettente ammettere ver +ammetter ammettere ver +ammetterai ammettere ver +ammetteranno ammettere ver +ammettere ammettere ver +ammetterebbe ammettere ver +ammetterebbero ammettere ver +ammetterei ammettere ver +ammetteremmo ammettere ver +ammetteremo ammettere ver +ammetteresti ammettere ver +ammetterete ammettere ver +ammetterla ammettere ver +ammetterle ammettere ver +ammetterli ammettere ver +ammetterlo ammettere ver +ammetterne ammettere ver +ammettersi ammettere ver +ammetterà ammettere ver +ammetterò ammettere ver +ammettesse ammettere ver +ammettessero ammettere ver +ammettessimo ammettere ver +ammettete ammettere ver +ammettetelo ammettere ver +ammetteva ammettere ver +ammettevamo ammettere ver +ammettevano ammettere ver +ammettevo ammettere ver +ammetti ammettere ver +ammettiamo ammettere ver +ammettiamolo ammettere ver +ammettilo ammettere ver +ammetto ammettere ver +ammettono ammettere ver +ammezzata ammezzare ver +ammezzate ammezzare ver +ammezzati ammezzato adj +ammezzato ammezzato adj +ammicca ammiccare ver +ammiccamenti ammiccamento nom +ammiccamento ammiccamento nom +ammiccando ammiccare ver +ammiccano ammiccare ver +ammiccante ammiccare ver +ammiccanti ammiccare ver +ammiccare ammiccare ver +ammiccava ammiccare ver +ammiccavano ammiccare ver +ammicchi ammiccare ver +ammicco ammiccare ver +ammiccò ammiccare ver +ammide ammide nom +ammidi ammide nom +ammidica ammidico adj +ammidiche ammidico adj +ammidici ammidico adj +ammidico ammidico adj +ammina ammina nom +ammine ammina nom +amminica amminico adj +amminici amminico adj +amminico amminico adj +amministra amministrare ver +amministrabile amministrabile adv +amministrando amministrare ver +amministrandogli amministrare ver +amministrandola amministrare ver +amministrandole amministrare ver +amministrano amministrare ver +amministrante amministrare ver +amministrar amministrare ver +amministrare amministrare ver +amministrarla amministrare ver +amministrarle amministrare ver +amministrarli amministrare ver +amministrarlo amministrare ver +amministrarne amministrare ver +amministrarono amministrare ver +amministrarsi amministrare ver +amministrarvi amministrare ver +amministrasse amministrare ver +amministrassero amministrare ver +amministrata amministrare ver +amministrate amministrare ver +amministrati amministrare ver +amministrativa amministrativo adj +amministrativamente amministrativamente adv +amministrative amministrativo adj +amministrativi amministrativo adj +amministrativo amministrativo adj +amministrato amministrare ver +amministratore amministratore nom +amministratori amministratore nom +amministratrice amministratore nom +amministratrici amministratore nom +amministrava amministrare ver +amministravano amministrare ver +amministrazione amministrazione nom +amministrazioni amministrazione nom +amministreranno amministrare ver +amministreremmo amministrare ver +amministrerà amministrare ver +amministri amministrare ver +amministrino amministrare ver +amministro amministrare ver +amministrò amministrare ver +amminoacidi amminoacido nom +amminoacido amminoacido nom +ammira ammirare ver +ammirabile ammirabile adj +ammirabili ammirabile adj +ammiragli ammirare ver +ammiraglia ammiraglia nom +ammiragliati ammiragliato nom +ammiragliato ammiragliato nom +ammiraglie ammiraglia nom +ammiraglio ammiraglio nom +ammirai ammirare ver +ammirami ammirare ver +ammirammo ammirare ver +ammirando ammirare ver +ammirandoli ammirare ver +ammirandolo ammirare ver +ammirandone ammirare ver +ammirano ammirare ver +ammirante ammirare ver +ammiranti ammirare ver +ammirar ammirare ver +ammirare ammirare ver +ammirarla ammirare ver +ammirarle ammirare ver +ammirarli ammirare ver +ammirarlo ammirare ver +ammirarne ammirare ver +ammirarono ammirare ver +ammirarsene ammirare ver +ammirarsi ammirare ver +ammirarti ammirare ver +ammirarvi ammirare ver +ammirasi ammirare ver +ammirasse ammirare ver +ammirassero ammirare ver +ammirata ammirare ver +ammirate ammirare ver +ammirati ammirare ver +ammirativo ammirativo adj +ammirato ammirare ver +ammiratore ammiratore nom +ammiratori ammiratore nom +ammiratrice ammiratore nom +ammiratrici ammiratore nom +ammirava ammirare ver +ammiravamo ammirare ver +ammiravano ammirare ver +ammiravo ammirare ver +ammirazione ammirazione nom +ammirazioni ammirazione nom +ammireranno ammirare ver +ammireremmo ammirare ver +ammirerà ammirare ver +ammirevole ammirevole adj +ammirevoli ammirevole adj +ammiri ammirare ver +ammiriamo ammirare ver +ammirino ammirare ver +ammiro ammirare ver +ammirò ammirare ver +ammise ammettere ver +ammisero ammettere ver +ammissibile ammissibile adj +ammissibili ammissibile adj +ammissibilità ammissibilità nom +ammissione ammissione nom +ammissioni ammissione nom +ammobiliamento ammobiliamento nom +ammobiliare ammobiliare ver +ammobiliata ammobiliare ver +ammobiliate ammobiliare ver +ammobiliati ammobiliare ver +ammobiliato ammobiliare ver +ammoderna ammodernare ver +ammodernamenti ammodernamento nom +ammodernamento ammodernamento nom +ammodernando ammodernare ver +ammodernandone ammodernare ver +ammodernano ammodernare ver +ammodernare ammodernare ver +ammodernarla ammodernare ver +ammodernarle ammodernare ver +ammodernarli ammodernare ver +ammodernarlo ammodernare ver +ammodernarono ammodernare ver +ammodernarsi ammodernare ver +ammodernata ammodernare ver +ammodernate ammodernare ver +ammodernati ammodernare ver +ammodernato ammodernare ver +ammodernò ammodernare ver +ammodo ammodo adj +ammoglia ammogliare ver +ammogliare ammogliare ver +ammogliarsi ammogliare ver +ammogliati ammogliato adj +ammogliato ammogliare ver +ammogliò ammogliare ver +ammolla ammollare ver +ammollare ammollare ver +ammollargli ammollare ver +ammollata ammollare ver +ammollate ammollare ver +ammollati ammollare ver +ammollato ammollare ver +ammolli ammollare ver +ammollito ammollire ver +ammollo ammollare ver +ammonendo ammonire ver +ammonendola ammonire ver +ammonendoli ammonire ver +ammonendolo ammonire ver +ammoni ammonio nom +ammoniaca ammoniaca nom +ammoniacale ammoniacale adj +ammoniacali ammoniacale adj +ammoniamo ammonire ver +ammonii ammonire ver +ammonimenti ammonimento nom +ammonimento ammonimento nom +ammonio ammonio nom +ammonirci ammonire ver +ammonire ammonire ver +ammonirei ammonire ver +ammonirgli ammonire ver +ammonirla ammonire ver +ammonirli ammonire ver +ammonirlo ammonire ver +ammonirono ammonire ver +ammonirti ammonire ver +ammonirà ammonire ver +ammonisca ammonire ver +ammoniscano ammonire ver +ammonisce ammonire ver +ammonisci ammonire ver +ammonisco ammonire ver +ammoniscono ammonire ver +ammonisse ammonire ver +ammonita ammonire ver +ammonite ammonito adj +ammoniti ammoniti|ammonito nom +ammonito ammonire ver +ammonitore ammonitore nom +ammonitori ammonitore nom +ammonitrice ammonitore nom +ammonitrici ammonitore nom +ammoniva ammonire ver +ammonivano ammonire ver +ammonizione ammonizione nom +ammonizioni ammonizione nom +ammonta ammontare ver +ammontando ammontare ver +ammontano ammontare ver +ammontante ammontare ver +ammontanti ammontare ver +ammontare ammontare ver +ammontari ammontare nom +ammontarono ammontare ver +ammontasse ammontare ver +ammontassero ammontare ver +ammontata ammontare ver +ammontate ammontare ver +ammontati ammontare ver +ammontato ammontare ver +ammontava ammontare ver +ammontavano ammontare ver +ammonteranno ammontare ver +ammonterebbe ammontare ver +ammonterebbero ammontare ver +ammonterà ammontare ver +ammonti ammontare ver +ammonticchiano ammonticchiare ver +ammonticchiata ammonticchiare ver +ammonticchiate ammonticchiare ver +ammonticchiati ammonticchiare ver +ammontino ammontare ver +ammontò ammontare ver +ammonì ammonire ver +ammorba ammorbare ver +ammorbando ammorbare ver +ammorbano ammorbare ver +ammorbante ammorbare ver +ammorbare ammorbare ver +ammorbata ammorbare ver +ammorbati ammorbare ver +ammorbato ammorbare ver +ammorbava ammorbare ver +ammorbavano ammorbare ver +ammorbidendo ammorbidire ver +ammorbidendole ammorbidire ver +ammorbidendolo ammorbidire ver +ammorbidendosi ammorbidire ver +ammorbidente ammorbidente adj +ammorbidenti ammorbidente adj +ammorbidimenti ammorbidimento nom +ammorbidimento ammorbidimento nom +ammorbidire ammorbidire ver +ammorbidirei ammorbidire ver +ammorbidirla ammorbidire ver +ammorbidirli ammorbidire ver +ammorbidirlo ammorbidire ver +ammorbidirne ammorbidire ver +ammorbidirono ammorbidire ver +ammorbidirsi ammorbidire ver +ammorbidirà ammorbidire ver +ammorbidisca ammorbidire ver +ammorbidiscano ammorbidire ver +ammorbidisce ammorbidire ver +ammorbidisco ammorbidire ver +ammorbidiscono ammorbidire ver +ammorbidita ammorbidire ver +ammorbidite ammorbidire ver +ammorbiditi ammorbidire ver +ammorbidito ammorbidire ver +ammorbidiva ammorbidire ver +ammorbidì ammorbidire ver +ammorbo ammorbare ver +ammortamenti ammortamento nom +ammortamento ammortamento nom +ammortizza ammortizzare ver +ammortizzabile ammortizzabile adj +ammortizzabili ammortizzabile adj +ammortizzamento ammortizzamento nom +ammortizzando ammortizzare ver +ammortizzano ammortizzare ver +ammortizzante ammortizzare ver +ammortizzanti ammortizzare ver +ammortizzare ammortizzare ver +ammortizzata ammortizzare ver +ammortizzate ammortizzare ver +ammortizzati ammortizzare ver +ammortizzato ammortizzare ver +ammortizzatore ammortizzatore nom +ammortizzatori ammortizzatore nom +ammortizzava ammortizzare ver +ammortizzò ammortizzare ver +ammoscia ammosciare ver +ammosciare ammosciare ver +ammostata ammostare ver +ammucchia ammucchiare ver +ammucchiamento ammucchiamento nom +ammucchiando ammucchiare ver +ammucchiandosi ammucchiare ver +ammucchiano ammucchiare ver +ammucchiare ammucchiare ver +ammucchiarono ammucchiare ver +ammucchiarsi ammucchiare ver +ammucchiata ammucchiare ver +ammucchiate ammucchiare ver +ammucchiati ammucchiare ver +ammucchiato ammucchiare ver +ammucchiavano ammucchiare ver +ammucchiò ammucchiare ver +ammuffendo ammuffire ver +ammuffire ammuffire ver +ammuffisce ammuffire ver +ammuffita ammuffire ver +ammuffite ammuffito adj +ammuffiti ammuffito adj +ammuffito ammuffito adj +ammutina ammutinare ver +ammutinamenti ammutinamento nom +ammutinamento ammutinamento nom +ammutinano ammutinare ver +ammutinare ammutinare ver +ammutinarono ammutinare ver +ammutinarsi ammutinare ver +ammutinassero ammutinare ver +ammutinata ammutinare ver +ammutinate ammutinato adj +ammutinatesi ammutinare ver +ammutinati ammutinato nom +ammutinato ammutinare ver +ammutinò ammutinare ver +ammutolendo ammutolire ver +ammutolire ammutolire ver +ammutolirono ammutolire ver +ammutolirsi ammutolire ver +ammutolisce ammutolire ver +ammutoliscono ammutolire ver +ammutolita ammutolire ver +ammutoliti ammutolire ver +ammutolito ammutolire ver +ammutolì ammutolire ver +amnesia amnesia nom +amnesie amnesia nom +amni amnio nom +amnio amnio nom +amniotica amniotico adj +amniotiche amniotico adj +amniotici amniotico adj +amniotico amniotico adj +amnistia amnistia nom +amnistiare amnistiare ver +amnistiata amnistiato adj +amnistiate amnistiare ver +amnistiati amnistiare ver +amnistiato amnistiare ver +amnistie amnistia nom +amnistiò amnistiare ver +amo amare ver +amomo amomo nom +amor amor nom +amorale amorale adj +amorali amorale adj +amoralità amoralità nom +amorazzi amorazzo nom +amore amore nom +amoreggia amoreggiare ver +amoreggiamenti amoreggiamento nom +amoreggiando amoreggiare ver +amoreggiano amoreggiare ver +amoreggiare amoreggiare ver +amoreggiavano amoreggiare ver +amoretti amoretto nom +amoretto amoretto nom +amorevole amorevole adj +amorevolezza amorevolezza nom +amorevoli amorevole adj +amorevolmente amorevolmente adv +amorfa amorfo adj +amorfe amorfo adj +amorfi amorfo adj +amorfo amorfo adj +amori amore nom +amorini amorino nom +amorino amorino nom +amorosa amoroso adj +amorose amoroso adj +amorosi amoroso adj +amoroso amoroso adj +amovibile amovibile adj +amovibili amovibile adj +ampeloterapia ampeloterapia nom +amperaggi amperaggio nom +amperaggio amperaggio nom +ampere ampere nom +amperometri amperometro nom +amperometro amperometro nom +amperora amperora nom +ampex ampex nom +ampi ampio adj +ampia ampio adj +ampiamente ampiamente adv_sup +ampie ampio adj +ampiezza ampiezza nom +ampiezze ampiezza nom +ampio ampio adj +amplessi amplesso nom +amplesso amplesso nom +ampli ampliare ver +amplia ampliare ver +ampliaci ampliare ver +ampliai ampliare ver +ampliala ampliare ver +amplialo ampliare ver +ampliamenti ampliamento nom +ampliamento ampliamento nom +ampliamo ampliare ver +ampliamola ampliare ver +ampliamoli ampliare ver +ampliando ampliare ver +ampliandola ampliare ver +ampliandole ampliare ver +ampliandoli ampliare ver +ampliandolo ampliare ver +ampliandone ampliare ver +ampliandosi ampliare ver +ampliane ampliare ver +ampliano ampliare ver +ampliante ampliare ver +ampliar ampliare ver +ampliare ampliare ver +ampliarla ampliare ver +ampliarle ampliare ver +ampliarli ampliare ver +ampliarlo ampliare ver +ampliarne ampliare ver +ampliarono ampliare ver +ampliarsi ampliare ver +ampliasse ampliare ver +ampliassero ampliare ver +ampliassi ampliare ver +ampliata ampliare ver +ampliatasi ampliare ver +ampliate ampliare ver +ampliatela ampliare ver +ampliatele ampliare ver +ampliatelo ampliare ver +ampliati ampliare ver +ampliato ampliare ver +ampliava ampliare ver +ampliavano ampliare ver +ampliavo ampliare ver +amplierai ampliare ver +amplieranno ampliare ver +amplierebbe ampliare ver +amplierei ampliare ver +amplieremo ampliare ver +amplierà ampliare ver +amplierò ampliare ver +amplifica amplificare ver +amplificami amplificare ver +amplificando amplificare ver +amplificandola amplificare ver +amplificandole amplificare ver +amplificandoli amplificare ver +amplificandolo amplificare ver +amplificandone amplificare ver +amplificandosi amplificare ver +amplificano amplificare ver +amplificante amplificare ver +amplificanti amplificare ver +amplificare amplificare ver +amplificarle amplificare ver +amplificarli amplificare ver +amplificarlo amplificare ver +amplificarne amplificare ver +amplificarono amplificare ver +amplificarsi amplificare ver +amplificasse amplificare ver +amplificassero amplificare ver +amplificata amplificare ver +amplificate amplificare ver +amplificati amplificare ver +amplificato amplificare ver +amplificatore amplificatore adj +amplificatori amplificatore adj +amplificatrice amplificatore adj +amplificatrici amplificatore adj +amplificava amplificare ver +amplificavano amplificare ver +amplificazione amplificazione nom +amplificazioni amplificazione nom +amplificherà amplificare ver +amplifichi amplificare ver +amplifichiamo amplificare ver +amplifichino amplificare ver +amplificò amplificare ver +amplino ampliare ver +amplio ampliare ver +amplissima amplissimo adj +amplissime amplissimo adj +amplissimi amplissimo adj +amplissimo amplissimo adj +ampliò ampliare ver +ampolla ampolla nom +ampolle ampolla nom +ampollina ampollina nom +ampolline ampollina nom +ampollosa ampolloso adj +ampollose ampolloso adj +ampollosi ampolloso adj +ampollosità ampollosità nom +ampolloso ampolloso adj +amputa amputare ver +amputaci amputare ver +amputando amputare ver +amputandogli amputare ver +amputandole amputare ver +amputandosela amputare ver +amputandosi amputare ver +amputano amputare ver +amputare amputare ver +amputargli amputare ver +amputarla amputare ver +amputarle amputare ver +amputarlo amputare ver +amputarselo amputare ver +amputarsi amputare ver +amputata amputare ver +amputate amputare ver +amputati amputare ver +amputato amputare ver +amputavano amputare ver +amputazione amputazione nom +amputazioni amputazione nom +amputi amputare ver +amputo amputare ver +amputò amputare ver +amuleti amuleto nom +amuleto amuleto nom +amò amare ver +ana ana adv +anabatici anabatico adj +anabatico anabatico adj +anabattista anabattista nom +anabattiste anabattista nom +anabattisti anabattista nom +anabbagliante anabbagliante adj +anabbaglianti anabbagliante adj +anabolismo anabolismo nom +anabolizzante anabolizzante nom +anabolizzanti anabolizzante nom +anacardi anacardio nom +anacardiacee anacardiacee nom +anacardio anacardio nom +anacoluti anacoluto nom +anacoluto anacoluto nom +anaconda anaconda nom +anacoreta anacoreta nom +anacoreti anacoreta nom +anacoretica anacoretico adj +anacoretico anacoretico adj +anacreontica anacreontica nom +anacreontiche anacreontica nom +anacronismi anacronismo nom +anacronismo anacronismo nom +anacronistica anacronistico adj +anacronistiche anacronistico adj +anacronistici anacronistico adj +anacronistico anacronistico adj +anacrusi anacrusi nom +anaerobi anaerobio nom +anaerobio anaerobio nom +anaerobiosi anaerobiosi nom +anafilassi anafilassi nom +anafora anafora nom +anafore anafora nom +anaforesi anaforesi nom +anaglifi anaglifo nom +anaglifo anaglifo nom +anagogia anagogia nom +anagogica anagogico adj +anagogico anagogico adj +anagrafe anagrafe nom +anagrafi anagrafe nom +anagrafica anagrafico adj +anagrafiche anagrafico adj +anagrafici anagrafico adj +anagrafico anagrafico adj +anagramma anagramma nom +anagrammando anagrammare ver +anagrammandolo anagrammare ver +anagrammare anagrammare ver +anagrammata anagrammare ver +anagrammate anagrammare ver +anagrammatica anagrammatico adj +anagrammatiche anagrammatico adj +anagrammatico anagrammatico adj +anagrammato anagrammare ver +anagrammi anagramma nom +anagrammisti anagrammista nom +analcolica analcolico adj +analcoliche analcolico adj +analcolici analcolico adj +analcolico analcolico adj +anale anale adj +analettici analettico nom +analettico analettico nom +analfabeta analfabeta adj +analfabete analfabeta adj +analfabeti analfabeta adj +analfabetica analfabetico adj +analfabetismo analfabetismo nom +analgesia analgesia nom +analgesica analgesico adj +analgesiche analgesico adj +analgesici analgesico adj +analgesico analgesico adj +anali anale adj +analisi analisi nom +analista analista nom +analiste analista nom +analisti analista nom +analitica analitico adj +analiticamente analiticamente adv +analitiche analitico adj +analitici analitico adj +analitico analitico adj +analizza analizzare ver +analizzabile analizzabile adj +analizzabili analizzabile adj +analizzai analizzare ver +analizzando analizzare ver +analizzandola analizzare ver +analizzandole analizzare ver +analizzandoli analizzare ver +analizzandolo analizzare ver +analizzandone analizzare ver +analizzano analizzare ver +analizzante analizzare ver +analizzare analizzare ver +analizzarla analizzare ver +analizzarle analizzare ver +analizzarli analizzare ver +analizzarlo analizzare ver +analizzarne analizzare ver +analizzarono analizzare ver +analizzarsi analizzare ver +analizzasse analizzare ver +analizzassero analizzare ver +analizzata analizzare ver +analizzate analizzare ver +analizzati analizzare ver +analizzato analizzare ver +analizzatore analizzatore nom +analizzatori analizzatore nom +analizzatrice analizzatore nom +analizzava analizzare ver +analizzavano analizzare ver +analizzavo analizzare ver +analizzeranno analizzare ver +analizzerebbe analizzare ver +analizzeremmo analizzare ver +analizzeremo analizzare ver +analizzerà analizzare ver +analizzerò analizzare ver +analizzi analizzare ver +analizziamo analizzare ver +analizziamone analizzare ver +analizzino analizzare ver +analizzo analizzare ver +analizzò analizzare ver +anallergici anallergico adj +anallergico anallergico adj +analoga analogo adj +analogamente analogamente adv +analoghe analogo adj +analoghi analogo adj +analogia analogia nom +analogica analogico adj +analogicamente analogicamente adv +analogiche analogico adj +analogici analogico adj +analogico analogico adj +analogie analogia nom +analogo analogo adj +anamnesi anamnesi nom +anamorfosi anamorfosi nom +ananas ananas nom +anapesti anapesto nom +anapesto anapesto nom +anarchia anarchia nom +anarchica anarchico adj +anarchiche anarchico adj +anarchici anarchico adj +anarchico anarchico adj +anarchie anarchia nom +anarchismi anarchismo nom +anarchismo anarchismo nom +anarcoide anarcoide adj +anarcoidi anarcoide adj +anasarca anasarca nom +anastatica anastatico adj +anastatiche anastatico adj +anastatico anastatico adj +anastigmatici anastigmatico adj +anastigmatico anastigmatico adj +anastomizza anastomizzare ver +anastomizzando anastomizzare ver +anastomizzandosi anastomizzare ver +anastomizzano anastomizzare ver +anastomizzare anastomizzare ver +anastomizzarsi anastomizzare ver +anastomizzata anastomizzare ver +anastomizzate anastomizzare ver +anastomizzati anastomizzare ver +anastomizzato anastomizzare ver +anastomosi anastomosi nom +anastrofe anastrofe nom +anastrofi anastrofe nom +anatema anatema nom +anatemi anatema nom +anatemizzare anatemizzare ver +anatemizzati anatemizzare ver +anatemizzato anatemizzare ver +anatemizziamo anatemizzare ver +anatemizzò anatemizzare ver +anatocismo anatocismo nom +anatomia anatomia nom +anatomica anatomico adj +anatomicamente anatomicamente adv +anatomiche anatomico adj +anatomici anatomico adj +anatomico anatomico adj +anatomie anatomia nom +anatomista anatomista nom +anatomiste anatomista nom +anatomisti anatomista nom +anatossina anatossina nom +anatossine anatossina nom +anatra anatra nom +anatre anatra nom +anatrella anatrella nom +anatrelle anatrella nom +anatroccoli anatroccolo nom +anatroccolo anatroccolo nom +anca anca nom +ance ancia nom +ancella ancella nom +ancelle ancella nom +ancestrale ancestrale adj +ancestrali ancestrale adj +ancestralmente ancestralmente adv +anch anch sw +anche anche adv_sup +ancheggia ancheggiare ver +ancheggiando ancheggiare ver +ancheggiano ancheggiare ver +ancheggiante ancheggiare ver +ancheggianti ancheggiare ver +ancheggiare ancheggiare ver +anchilosante anchilosare ver +anchilosata anchilosare ver +anchilosato anchilosare ver +anchilosi anchilosi nom +anchilostoma anchilostoma nom +ancia ancia nom +ancile ancile nom +ancili ancile nom +ancillare ancillare adj +ancillari ancillare adj +ancipite ancipite adj +ancipiti ancipite adj +ancona ancona nom +ancone ancona nom +anconetana anconetano adj +anconetane anconetano adj +anconetani anconetano adj +anconetano anconetano adj +ancor ancor adv_sup +ancora ancora adv_sup +ancoraggi ancoraggio nom +ancoraggio ancoraggio nom +ancorai ancorare ver +ancorando ancorare ver +ancorandola ancorare ver +ancorandole ancorare ver +ancorandolo ancorare ver +ancorandone ancorare ver +ancorandosi ancorare ver +ancorano ancorare ver +ancorante ancorare ver +ancoranti ancorare ver +ancorare ancorare ver +ancorarla ancorare ver +ancorarle ancorare ver +ancorarli ancorare ver +ancorarlo ancorare ver +ancorarono ancorare ver +ancorarsi ancorare ver +ancorarvi ancorare ver +ancorata ancorare ver +ancorate ancorare ver +ancorati ancorare ver +ancorato ancorare ver +ancorava ancorare ver +ancoravano ancorare ver +ancorchè ancorchè con +ancorché ancorché con +ancore ancora nom +ancoreranno ancorare ver +ancorerà ancorare ver +ancoretta ancoretta nom +ancorette ancoretta nom +ancori ancorare ver +ancorò ancorare ver +and and npr +andai andare ver +andalusite andalusite nom +andamenti andamento nom +andamento andamento nom +andammo andare ver +andana andana nom +andando andare ver_sup +andandoci andare ver +andandogli andare ver +andandola andare ver +andandole andare ver +andandoli andare ver +andandolo andare ver +andandomene andare ver +andandomi andare ver +andandone andare ver +andandosene andare ver +andandosi andare ver +andandoti andare ver +andandovi andare ver +andane andana nom +andante andante adj +andanti andante adj +andar andare ver +andarcene andare ver +andarci andare ver +andare andare ver_sup +andargli andare ver +andarglielo andare ver +andarla andare ver +andarle andare ver +andarli andare ver +andarlo andare ver +andarmele andare ver +andarmeli andare ver +andarmelo andare ver +andarmene andare ver +andarmi andare ver +andarne andare ver +andarono andare ver +andarsela andare ver +andarsele andare ver +andarseli andare ver +andarselo andare ver +andarsene andare ver +andarsi andare ver +andartele andare ver +andartene andare ver +andarti andare ver +andarvene andare ver +andarvi andare ver +andasse andare ver +andassero andare ver_sup +andassi andare ver +andassimo andare ver +andaste andare ver +andasti andare ver +andata andato adj_sup +andate andare ver_sup +andateci andare ver +andategli andare ver +andatela andare ver +andatele andare ver +andateli andare ver +andatelo andare ver +andatevela andare ver +andatevene andare ver +andatevi andare ver +andati andare ver_sup +andato andare ver_sup +andatura andatura nom +andature andatura nom +andava andare ver +andavamo andare ver +andavano andare ver_sup +andavate andare ver +andavi andare ver +andavo andare ver +andazzi andazzo nom +andazzo andazzo nom +andiamo andare ver_sup +andiamocene andare ver +andiamoci andare ver +andiamolo andare ver +andiate andare ver +andini andino adj +andino andino adj +andirivieni andirivieni nom +anditi andito nom +andito andito nom +ando ando sw +andorrani andorrano nom +andorrano andorrano nom +andra andra sw +andrai andare ver +andranno andare ver_sup +andrebbe andare ver_sup +andrebbero andare ver +andrei andare ver_sup +andremmo andare ver +andremo andare ver +andreste andare ver +andresti andare ver +andrete andare ver +androceo androceo nom +androgina androgino adj +androgine androgino adj +androgini androgino adj +androgino androgino adj +androne androne nom +androni androne nom +andropausa andropausa nom +andropause andropausa nom +androsterone androsterone nom +andrà andare ver_sup +andrò andare ver +andò andare ver_sup +aneddoti aneddoto nom +aneddotici aneddotico adj +aneddotico aneddotico adj +aneddoto aneddoto nom +anedottica anedottico adj +anela anelare ver +anelando anelare ver +anelano anelare ver +anelante anelante adj +anelanti anelante adj +anelare anelare ver +anelastica anelastica adj +anelata anelare ver +anelato anelare ver +anelava anelare ver +anelavano anelare ver +aneli anelo nom +aneliti anelito nom +anelito anelito nom +anelli anello nom +anellidi anellidi nom +anellini anellino nom +anellino anellino nom +anello anello nom +anelo anelo nom +anemia anemia nom +anemica anemico adj +anemiche anemico adj +anemici anemico adj +anemico anemico adj +anemie anemia nom +anemocora anemocoro adj +anemofila anemofilo adj +anemofile anemofilo adj +anemografo anemografo nom +anemometri anemometro nom +anemometrie anemometria nom +anemometro anemometro nom +anemone anemone nom +anemoni anemone nom +anemoscopi anemoscopio nom +anemoscopio anemoscopio nom +aneroide aneroide adj +anestesia anestesia nom +anestesie anestesia nom +anestesista anestesista nom +anestesisti anestesista nom +anestetica anestetico adj +anestetiche anestetico adj +anestetici anestetico adj +anestetico anestetico adj +anestetizza anestetizzare ver +anestetizzando anestetizzare ver +anestetizzante anestetizzare ver +anestetizzanti anestetizzare ver +anestetizzare anestetizzare ver +anestetizzarlo anestetizzare ver +anestetizzata anestetizzare ver +anestetizzate anestetizzare ver +anestetizzati anestetizzare ver +anestetizzato anestetizzare ver +aneti aneto nom +aneto aneto nom +aneurisma aneurisma nom +aneurismi aneurisma nom +anfetamine anfetamine nom +anfibi anfibio adj +anfibia anfibio adj +anfibie anfibio adj +anfibio anfibio adj +anfiboli anfibolo nom +anfibolo anfibolo adj +anfibologia anfibologia nom +anfidromo anfidromo adj +anfiossi anfiosso nom +anfiosso anfiosso nom +anfiteatri anfiteatro nom +anfiteatro anfiteatro nom +anfitrione anfitrione nom +anfitrioni anfitrione nom +anfora anfora nom +anfore anfora nom +anfotera anfotero adj +anfotere anfotero adj +anfoteri anfotero adj +anfotero anfotero adj +anfratti anfratto nom +anfratto anfratto nom +anfrattuosi anfrattuoso adj +anfrattuosità anfrattuosità nom +angari angariare ver +angaria angariare ver +angariando angariare ver +angariandovi angariare ver +angariare angariare ver +angariata angariare ver +angariati angariare ver +angariato angariare ver +angariavano angariare ver +angela angelo nom +angele angelo nom +angeli angelo nom +angelica angelico adj +angeliche angelico adj +angelici angelico adj +angelico angelico adj +angelus angelus nom +angheria angheria nom +angherie angheria nom +angina angina nom +angine angina nom +anginosa anginoso adj +anginose anginoso adj +anginosi anginoso adj +anginoso anginoso adj +angiologia angiologia nom +angiologie angiologia nom +angioma angioma nom +angiomi angioma nom +angiosperme angiosperme nom +angiporto angiporto nom +anglicana anglicano adj +anglicane anglicano adj +anglicanesimo anglicanesimo nom +anglicani anglicano adj +anglicano anglicano adj +anglicismi anglicismo nom +anglicismo anglicismo nom +anglicizzante anglicizzare ver +anglicizzare anglicizzare ver +anglicizzata anglicizzare ver +anglicizzate anglicizzare ver +anglicizzati anglicizzare ver +anglicizzato anglicizzare ver +anglicizzò anglicizzare ver +anglismi anglismo nom +anglismo anglismo nom +anglista anglista nom +anglisti anglista nom +anglo anglo pre +angloamericana angloamericano adj +angloamericane angloamericano adj +angloamericani angloamericano adj +angloamericano angloamericano adj +anglofila anglofilo adj +anglofile anglofilo adj +anglofili anglofilo adj +anglofilo anglofilo adj +anglofoba anglofobo adj +anglofobi anglofobo nom +anglofobo anglofobo adj +anglofona anglofono adj +anglofone anglofono adj +anglofoni anglofono adj +anglofono anglofono adj +anglomane anglomane adj +anglosassone anglosassone adj +anglosassoni anglosassone adj +angola angolare ver +angolai angolare ver +angolana angolano adj +angolando angolare ver +angolane angolano adj +angolani angolano adj +angolano angolano adj +angolar angolare ver +angolare angolare adj +angolari angolare adj +angolarmente angolarmente adv +angolata angolare ver +angolate angolare ver +angolati angolare ver +angolato angolare ver +angolazione angolazione nom +angolazioni angolazione nom +angoli angolo nom +angoliere angoliera nom +angolino angolare ver +angolo angolo nom +angoloide angoloide nom +angoloidi angoloide nom +angolosa angoloso adj +angolose angoloso adj +angolosi angoloso adj +angolosità angolosità nom +angoloso angoloso adj +angora angora nom +angore angora nom +angosce angoscia nom +angoscia angoscia nom +angosciando angosciare ver +angosciano angosciare ver +angosciante angosciare ver +angoscianti angosciare ver +angosciare angosciare ver +angosciarmi angosciare ver +angosciarsi angosciare ver +angosciata angosciare ver +angosciate angosciare ver +angosciati angosciare ver +angosciato angosciare ver +angosciava angosciare ver +angosciavano angosciare ver +angosciosa angoscioso adj +angosciose angoscioso adj +angosciosi angoscioso adj +angoscioso angoscioso adj +angosciò angosciare ver +angostura angostura nom +anguilla anguilla nom +anguille anguilla nom +anguillula anguillula nom +anguillule anguillula nom +anguria anguria nom +angurie anguria nom +angusta angusto adj +anguste angusto adj +angusti angusto adj +angustia angustia nom +angustiano angustiare ver +angustiante angustiare ver +angustiare angustiare ver +angustiarsi angustiare ver +angustiata angustiare ver +angustiati angustiare ver +angustiato angustiare ver +angustiava angustiare ver +angustiavano angustiare ver +angustie angustia nom +angustiò angustiare ver +angusto angusto adj +ani ano nom +anice anice nom +anici anice nom +anidra anidro adj +anidre anidro adj +anidri anidro adj +anidride anidride nom +anidridi anidride nom +anidro anidro adj +anilina anilina nom +aniline anilina nom +anima anima nom +animaci animare ver +animai animare ver +animala animare ver +animale animale adj +animalesca animalesco adj +animalesche animalesco adj +animaleschi animalesco adj +animalesco animalesco adj +animali animale nom +animalo animare ver +animando animare ver +animandola animare ver +animandole animare ver +animandoli animare ver +animandolo animare ver +animandone animare ver +animandosi animare ver +animano animare ver +animante animare ver +animanti animare ver +animar animare ver +animare animare ver +animarla animare ver +animarle animare ver +animarli animare ver +animarlo animare ver +animarono animare ver +animarsi animare ver +animasi animare ver +animasse animare ver +animassero animare ver +animata animato adj +animatamente animatamente adv +animate animato adj +animati animato adj +animato animato adj +animatore animatore nom +animatori animatore nom +animatrice animatore nom +animatrici animatore nom +animava animare ver +animavano animare ver +animazione animazione nom +animazioni animazione nom +anime anima nom +animella animella nom +animelle animella nom +animeranno animare ver +animerebbe animare ver +animerà animare ver +animi animo nom +animismi animismo nom +animismo animismo nom +animista animista nom +animiste animista nom +animisti animista nom +animistica animistico adj +animistiche animistico adj +animistici animistico adj +animistico animistico adj +animo animo nom +animosa animoso adj +animose animoso adj +animosi animoso adj +animosità animosità nom +animoso animoso adj +animò animare ver +anione anione nom +anioni anione nom +anisetta anisetta nom +anisette anisetta nom +anisotropi anisotropo nom +anisotropia anisotropia nom +anisotropie anisotropia nom +anisotropo anisotropo nom +anke anke sw +annacqua annacquare ver +annacquando annacquare ver +annacquano annacquare ver +annacquare annacquare ver +annacquata annacquare ver +annacquate annacquare ver +annacquati annacquare ver +annacquato annacquare ver +annacqui annacquare ver +annaffia annaffiare ver +annaffiando annaffiare ver +annaffiare annaffiare ver +annaffiarla annaffiare ver +annaffiata annaffiare ver +annaffiate annaffiare ver +annaffiati annaffiare ver +annaffiato annaffiare ver +annaffiatoi annaffiatoio nom +annaffiatoio annaffiatoio nom +annaffiatura annaffiatura nom +annaffiature annaffiatura nom +annaffiava annaffiare ver +annaffio annaffiare ver +annali annali nom +annalista annalista nom +annalisti annalista nom +annalistica annalistico adj +annalistiche annalistico adj +annalistici annalistico adj +annalistico annalistico adj +annaspa annaspare ver +annaspando annaspare ver +annaspano annaspare ver +annaspare annaspare ver +annaspava annaspare ver +annaspavano annaspare ver +annaspo annaspare ver +annaspò annaspare ver +annata annata nom +annate annata nom +annebbia annebbiare ver +annebbiamenti annebbiamento nom +annebbiamento annebbiamento nom +annebbiano annebbiare ver +annebbiare annebbiare ver +annebbiarono annebbiare ver +annebbiarsi annebbiare ver +annebbiata annebbiare ver +annebbiati annebbiare ver +annebbiato annebbiare ver +annebbiava annebbiare ver +annebbierà annebbiare ver +annebbiò annebbiare ver +annega annegare ver +annegamenti annegamento nom +annegamento annegamento nom +annegando annegare ver +annegandola annegare ver +annegandole annegare ver +annegandoli annegare ver +annegandolo annegare ver +annegandosi annegare ver +annegano annegare ver +annegare annegare ver +annegarla annegare ver +annegarli annegare ver +annegarlo annegare ver +annegarono annegare ver +annegarsi annegare ver +annegarvi annegare ver +annegasse annegare ver +annegata annegare ver +annegate annegare ver +annegati annegare ver +annegato annegare ver +annegava annegare ver +annegavano annegare ver +annego annegare ver +annegò annegare ver +annerendo annerire ver +annerendogli annerire ver +annerente annerire ver +annerenti annerire ver +annerii annerire ver +annerimenti annerimento nom +annerimento annerimento nom +annerire annerire ver +annerirebbe annerire ver +annerirsi annerire ver +annerirà annerire ver +annerisce annerire ver +anneriscono annerire ver +annerita annerire ver +annerite annerire ver +anneriti annerire ver +annerito annerire ver +anneriva annerire ver +annerivano annerire ver +annerì annerire ver +annesa annettere ver +annese annettere ver +annesi annettere ver +anneso annettere ver +annessa annesso adj +annesse annesso adj +annessi annesso adj +annessione annessione nom +annessioni annessione nom +annessite annessite nom +annessiti annessite nom +annesso annesso adj +annetta annettere ver +annette annettere ver +annettendo annettere ver +annettendola annettere ver +annettendole annettere ver +annettendoli annettere ver +annettendolo annettere ver +annettendone annettere ver +annettendosi annettere ver +annettendovi annettere ver +annettere annettere ver +annetterla annettere ver +annetterle annettere ver +annetterli annettere ver +annetterlo annettere ver +annetterne annettere ver +annettersela annettere ver +annettersi annettere ver +annetterà annettere ver +annettesse annettere ver +annettessero annettere ver +annetteva annettere ver +annettevano annettere ver +annetti annettere ver +annetto annettere ver +annettono annettere ver +anni anno nom +annichila annichilare ver +annichilando annichilare ver +annichilano annichilare ver +annichilante annichilare ver +annichilare annichilare ver +annichilarono annichilare ver +annichilarsi annichilare ver +annichilata annichilare ver +annichilate annichilare ver +annichilato annichilare ver +annichilazione annichilazione nom +annichilazioni annichilazione nom +annichilendo annichilire ver +annichilendosi annichilire ver +annichilente annichilire ver +annichilenti annichilire ver +annichilimento annichilimento nom +annichilire annichilire ver +annichilirebbero annichilire ver +annichilirli annichilire ver +annichilirlo annichilire ver +annichilirono annichilire ver +annichilirsi annichilire ver +annichilisce annichilire ver +annichiliscono annichilire ver +annichilita annichilire ver +annichilite annichilire ver +annichiliti annichilire ver +annichilito annichilire ver +annichiliva annichilire ver +annichilivano annichilire ver +annichilì annichilire ver +annida annidare ver +annidando annidare ver +annidandosi annidare ver +annidano annidare ver +annidare annidare ver +annidarle annidare ver +annidarono annidare ver +annidarsi annidare ver +annidasse annidare ver +annidassero annidare ver +annidata annidare ver +annidate annidare ver +annidati annidare ver +annidato annidare ver +annidava annidare ver +annidavano annidare ver +annidi annidare ver +annidino annidare ver +annidò annidare ver +annienta annientare ver +annientamento annientamento nom +annientando annientare ver +annientandola annientare ver +annientandole annientare ver +annientandoli annientare ver +annientandolo annientare ver +annientandone annientare ver +annientandosi annientare ver +annientano annientare ver +annientante annientare ver +annientarci annientare ver +annientare annientare ver +annientarla annientare ver +annientarle annientare ver +annientarli annientare ver +annientarlo annientare ver +annientarne annientare ver +annientarono annientare ver +annientarsi annientare ver +annientasse annientare ver +annientassero annientare ver +annientasti annientare ver +annientata annientare ver +annientate annientare ver +annientati annientare ver +annientato annientare ver +annientava annientare ver +annientavano annientare ver +annienteranno annientare ver +annienterebbe annientare ver +annienterà annientare ver +annienti annientare ver +annientò annientare ver +anniversari anniversario nom +anniversario anniversario nom +anno anno nom +annoda annodare ver +annodando annodare ver +annodandosi annodare ver +annodano annodare ver +annodare annodare ver +annodarla annodare ver +annodarlo annodare ver +annodarsi annodare ver +annodata annodare ver +annodate annodare ver +annodati annodare ver +annodato annodare ver +annodatura annodatura nom +annodava annodare ver +annodavano annodare ver +annodò annodare ver +annoi annoiare ver +annoia annoiare ver +annoiamo annoiare ver +annoiando annoiare ver +annoiandosi annoiare ver +annoiandovi annoiare ver +annoiano annoiare ver +annoiante annoiare ver +annoiare annoiare ver +annoiarla annoiare ver +annoiarli annoiare ver +annoiarlo annoiare ver +annoiarmi annoiare ver +annoiarsi annoiare ver +annoiarti annoiare ver +annoiarvi annoiare ver +annoiasse annoiare ver +annoiata annoiare ver +annoiate annoiare ver +annoiati annoiare ver +annoiato annoiare ver +annoiava annoiare ver +annoiavano annoiare ver +annoiavi annoiare ver +annoiavo annoiare ver +annoierei annoiare ver +annoierà annoiare ver +annoierò annoiare ver +annoino annoiare ver +annoio annoiare ver +annoiò annoiare ver +annona annona nom +annonari annonario adj +annonaria annonario adj +annonarie annonario adj +annonario annonario adj +annone annona nom +annosa annoso adj +annose annoso adj +annosi annoso adj +annoso annoso adj +annota annotare ver +annotando annotare ver +annotandole annotare ver +annotandone annotare ver +annotandosi annotare ver +annotandovi annotare ver +annotano annotare ver +annotare annotare ver +annotarla annotare ver +annotarli annotare ver +annotarlo annotare ver +annotarmi annotare ver +annotarne annotare ver +annotarono annotare ver +annotarsi annotare ver +annotarti annotare ver +annotasse annotare ver +annotata annotare ver +annotate annotare ver +annotati annotare ver +annotato annotare ver +annotatore annotatore nom +annotatori annotatore nom +annotava annotare ver +annotavano annotare ver +annotazione annotazione nom +annotazioni annotazione nom +annoteranno annotare ver +annoterà annotare ver +annoti annotare ver +annotiamo annotare ver +annotino annotare ver +annoto annotare ver +annotta annottare ver +annottare annottare ver +annottarsi annottare ver +annotò annotare ver +annovera annoverare ver +annoverando annoverare ver +annoverandola annoverare ver +annoverandolo annoverare ver +annoverandone annoverare ver +annoverandosi annoverare ver +annoverano annoverare ver +annoverante annoverare ver +annoverare annoverare ver +annoverarla annoverare ver +annoverarli annoverare ver +annoverarlo annoverare ver +annoverarmi annoverare ver +annoverarono annoverare ver +annoverarsi annoverare ver +annoverasse annoverare ver +annoverata annoverare ver +annoverate annoverare ver +annoverati annoverare ver +annoverato annoverare ver +annoverava annoverare ver +annoveravano annoverare ver +annovererebbero annoverare ver +annovererà annoverare ver +annoveri annoverare ver +annoveriamo annoverare ver +annoverino annoverare ver +annovero annoverare ver +annoverò annoverare ver +annua annuo adj +annuale annuale adj +annuali annuale adj +annualità annualità nom +annualmente annualmente adv +annuari annuario nom +annuario annuario nom +annue annuo adj +annuendo annuire ver +annuente annuire ver +annui annuo adj +annuiamo annuire ver +annuire annuire ver +annuirà annuire ver +annuisce annuire ver +annuito annuire ver +annulla annullare ver +annullabile annullabile adj +annullabili annullabile adj +annullai annullare ver +annullala annullare ver +annullale annullare ver +annullamenti annullamento nom +annullamento annullamento nom +annullando annullare ver +annullandola annullare ver +annullandole annullare ver +annullandoli annullare ver +annullandolo annullare ver +annullandone annullare ver +annullandosi annullare ver +annullano annullare ver +annullante annullare ver +annullar annullare ver +annullare annullare ver +annullargli annullare ver +annullarla annullare ver +annullarle annullare ver +annullarli annullare ver +annullarlo annullare ver +annullarmi annullare ver +annullarne annullare ver +annullarono annullare ver +annullarsi annullare ver +annullarvi annullare ver +annullasse annullare ver +annullassero annullare ver +annullassi annullare ver +annullassimo annullare ver +annullata annullare ver +annullate annullare ver +annullatela annullare ver +annullati annullare ver +annullato annullare ver +annullava annullare ver +annullavano annullare ver +annullavo annullare ver +annulleranno annullare ver +annullerebbe annullare ver +annullerebbero annullare ver +annullerei annullare ver +annulleremo annullare ver +annullerà annullare ver +annullerò annullare ver +annulli annullo nom +annulliamo annullare ver +annulliamola annullare ver +annullino annullare ver +annullo annullo nom +annullò annullare ver +annunceranno annunciare ver +annuncerebbero annunciare ver +annunceremo annunciare ver +annuncerà annunciare ver +annuncerò annunciare ver +annunci annuncio nom +annuncia annunciare ver +annunciai annunciare ver +annunciamo annunciare ver +annunciando annunciare ver +annunciandogli annunciare ver +annunciandola annunciare ver +annunciandole annunciare ver +annunciandolo annunciare ver +annunciandone annunciare ver +annunciandosi annunciare ver +annunciano annunciare ver +annunciante annunciare ver +annuncianti annunciare ver +annunciare annunciare ver +annunciargli annunciare ver +annunciarglielo annunciare ver +annunciarla annunciare ver +annunciarle annunciare ver +annunciarli annunciare ver +annunciarlo annunciare ver +annunciarne annunciare ver +annunciarono annunciare ver +annunciarsi annunciare ver +annunciarvi annunciare ver +annunciasse annunciare ver +annunciassero annunciare ver +annunciata annunciare ver +annunciate annunciare ver +annunciatemi annunciare ver +annunciati annunciare ver +annunciato annunciare ver +annunciatore annunciatore adj +annunciatori annunciatore nom +annunciatrice annunciatore nom +annunciatrici annunciatore nom +annunciava annunciare ver +annunciavano annunciare ver +annunciavi annunciare ver +annunciavo annunciare ver +annunciazione annunciazione nom +annunciazioni annunciazione nom +annuncino annunciare ver +annuncio annuncio nom +annunciò annunciare ver +annunzia annunziare ver +annunziata annunziata nom +annunziato annunziare ver +annuo annuo adj +annusa annusare ver +annusando annusare ver +annusandole annusare ver +annusandolo annusare ver +annusandone annusare ver +annusano annusare ver +annusare annusare ver +annusarla annusare ver +annusarli annusare ver +annusarlo annusare ver +annusarne annusare ver +annusarsi annusare ver +annusati annusare ver +annusato annusare ver +annusava annusare ver +annuserà annusare ver +annuso annusare ver +annuvola annuvolare ver +annuvolamenti annuvolamento nom +annuvolamento annuvolamento nom +annuvolato annuvolare ver +annuì annuire ver +ano ano nom +anodi anodo nom +anodica anodico adj +anodiche anodico adj +anodici anodico adj +anodico anodico adj +anodina anodino adj +anodine anodino adj +anodini anodino adj +anodino anodino adj +anodizzate anodizzare ver +anodizzati anodizzare ver +anodizzato anodizzare ver +anodo anodo nom +anofele anofele nom +anofeli anofele nom +anolini anolino nom +anolino anolino nom +anomala anomalo adj +anomale anomalo adj +anomali anomalo adj +anomalia anomalia nom +anomalie anomalia nom +anomalo anomalo adj +anona anona nom +anone anona nom +anonima anonimo adj +anonimati anonimato nom +anonimato anonimato nom +anonime anonimo adj +anonimi anonimo adj +anonimia anonimia nom +anonimizzazione anonimizzazione nom +anonimo anonimo adj +anoressia anoressia nom +anoressie anoressia nom +anormale anormale adj +anormali anormale adj +anormalità anormalità nom +anortite anortite nom +anosmia anosmia nom +anosmie anosmia nom +anossia anossia nom +ansa ansa nom +ansai ansare ver +ansali ansare ver +ansano ansare ver +ansante ansante adj +ansar ansare ver +ansata ansare ver +ansate ansare ver +ansati ansare ver +ansato ansare ver +ansavo ansare ver +anse ansa nom +anseatica anseatico adj +anseatiche anseatico adj +anseatici anseatico adj +anseatico anseatico adj +anseriformi anseriformi nom +ansi ansare ver +ansia ansia nom +ansie ansia nom +ansietà ansietà nom +ansima ansimare ver +ansimando ansimare ver +ansimante ansimare ver +ansimanti ansimare ver +ansimare ansimare ver +ansimato ansimare ver +ansimi ansimare ver +ansimo ansimare ver +ansiolitici ansiolitico nom +ansiolitico ansiolitico nom +ansiosa ansioso adj +ansiose ansioso adj +ansiosi ansioso adj +ansioso ansioso adj +anso ansare ver +anta anta nom +antagonismi antagonismo nom +antagonismo antagonismo nom +antagonista antagonista nom +antagoniste antagonista nom +antagonisti antagonista nom +antagonistica antagonistico adj +antagonistiche antagonistico adj +antagonistici antagonistico adj +antagonistico antagonistico adj +antalgici antalgico nom +antalgico antalgico nom +antartica antartico adj +antartiche antartico adj +antartici antartico adj +antartico antartico adj +ante ante adv +antebellica antebellico adj +antebelliche antebellico adj +antecedente antecedente adj +antecedenti antecedente adj +antecedenza antecedenza nom +antecessore antecessore nom +antecessori antecessore nom +antefatti antefatto nom +antefatto antefatto nom +antefissa antefissa nom +antefisse antefissa nom +anteguerra anteguerra nom +antelucana antelucano adj +antelucane antelucano adj +antelucani antelucano adj +antelucano antelucano adj +antemurale antemurale nom +antemurali antemurale nom +antenata antenato nom +antenate antenato nom +antenati antenato nom +antenato antenato nom +antenna antenna nom +antenne antenna nom +antennista antennista nom +antennisti antennista nom +antepone anteporre ver +anteponendo anteporre ver +anteponendogli anteporre ver +anteponendola anteporre ver +anteponendole anteporre ver +anteponendolo anteporre ver +anteponendovi anteporre ver +anteponesse anteporre ver +anteponeva anteporre ver +anteponevano anteporre ver +anteponga anteporre ver +antepongano anteporre ver +antepongo anteporre ver +antepongono anteporre ver +anteponi anteporre ver +anteponiamo anteporre ver +anteporgli anteporre ver +anteporlo anteporre ver +anteporre anteporre ver +anteporrà anteporre ver +antepose anteporre ver +anteposero anteporre ver +anteposta anteporre ver +anteposte anteporre ver +anteposti anteporre ver +anteposto anteporre ver +anteprima anteprima nom +anteprime anteprima nom +antera antera nom +antere antera nom +anteridi anteridio nom +anteridio anteridio nom +anteriore anteriore adj +anteriori anteriore adj +anteriorità anteriorità nom +anteriormente anteriormente adv +anterozoi anterozoo nom +antesignana antesignano nom +antesignane antesignano nom +antesignani antesignano nom +antesignano antesignano nom +antiabbagliante antiabbagliante adj +antiacidi antiacido nom +antiacido antiacido adj +antiacne antiacne nom +antiaerea antiaereo adj +antiaeree antiaereo adj +antiaerei antiaereo adj +antiaereo antiaereo adj +antiallergici antiallergico nom +antiallergico antiallergico nom +antiarmena antiarmeno adj +antiatomica antiatomico adj +antiatomici antiatomico adj +antiatomico antiatomico adj +antibagno antibagno nom +antibalistici antibalistico adj +antibalistico antibalistico adj +antibatterici antibatterico nom +antibatterico antibatterico nom +antibiotici antibiotico nom +antibiotico antibiotico nom +antica antico adj +anticaglia anticaglia nom +anticaglie anticaglia nom +anticamente anticamente adv +anticamera anticamera nom +anticamere anticamera nom +anticarro anticarro adj +anticatodo anticatodo nom +antiche antico adj +antichi antico adj +antichità antichità nom +anticiclone anticiclone nom +anticicloni anticiclone nom +anticipa anticipare ver +anticipaci anticipare ver +anticipando anticipare ver +anticipandogli anticipare ver +anticipandola anticipare ver +anticipandole anticipare ver +anticipandoli anticipare ver +anticipandolo anticipare ver +anticipandomi anticipare ver +anticipandone anticipare ver +anticipano anticipare ver +anticipante anticipare ver +anticipanti anticipare ver +anticipare anticipare ver +anticipargli anticipare ver +anticiparla anticipare ver +anticiparle anticipare ver +anticiparli anticipare ver +anticiparlo anticipare ver +anticiparmi anticipare ver +anticiparne anticipare ver +anticiparono anticipare ver +anticiparti anticipare ver +anticipasse anticipare ver +anticipata anticipare ver +anticipatamente anticipatamente adv +anticipate anticipato adj +anticipati anticipare ver +anticipato anticipare ver +anticipava anticipare ver +anticipavano anticipare ver +anticipazione anticipazione nom +anticipazioni anticipazione nom +anticiperanno anticipare ver +anticiperebbe anticipare ver +anticiperebbero anticipare ver +anticiperei anticipare ver +anticiperà anticipare ver +anticipi anticipo nom +anticipiamo anticipare ver +anticipino anticipare ver +anticipo anticipo nom +anticipò anticipare ver +anticlericale anticlericale adj +anticlericali anticlericale adj +anticlericalismo anticlericalismo nom +anticlinale anticlinale nom +anticlinali anticlinale nom +antico antico adj +anticoaugulante anticoaugulante nom +anticoaugulanti anticoaugulante nom +anticomunismo anticomunismo nom +anticomunista anticomunista nom +anticomuniste anticomunista nom +anticomunisti anticomunista nom +anticoncezionale anticoncezionale adj +anticoncezionali anticoncezionale adj +anticoncorrenziale anticoncorrenziale adj +anticoncorrenziali anticoncorrenziale adj +anticonformismo anticonformismo nom +anticonformista anticonformista adj +anticonformiste anticonformista adj +anticonformisti anticonformista adj +anticongelante anticongelante adj +anticongelanti anticongelante adj +anticorpi anticorpo nom +anticorpo anticorpo nom +anticorruzione anticorruzione adj +anticostituzionale anticostituzionale adj +anticostituzionali anticostituzionale adj +anticresi anticresi nom +anticristi anticristo nom +anticristo anticristo nom +anticrittogamica anticrittogamico adj +anticrittogamici anticrittogamico nom +anticrittogamico anticrittogamico adj +antidatato antidatare ver +antidemocratica antidemocratico adj +antidemocratiche antidemocratico adj +antidemocratici antidemocratico adj +antidemocratico antidemocratico adj +antidetonante antidetonante nom +antidetonanti antidetonante nom +antidifterica antidifterico adj +antidifterico antidifterico adj +antidiluviana antidiluviano adj +antidiluviane antidiluviano adj +antidiluviani antidiluviano adj +antidiluviano antidiluviano adj +antidiscriminazione antidiscriminazione adj +antidivorzismo antidivorzismo nom +antidivorzista antidivorzista nom +antidivorzisti antidivorzista nom +antidolorifici antidolorifico nom +antidolorifico antidolorifico nom +antidoti antidoto nom +antidoto antidoto nom +antidroga antidroga adj +antidumping antidumping adj +antieconomica antieconomico adj +antieconomiche antieconomico adj +antieconomici antieconomico adj +antieconomico antieconomico adj +antielmintici antielmintico nom +antielmintico antielmintico nom +antiemetici antiemetico nom +antiemetico antiemetico nom +antiemorragiche antiemorragico adj +antiemorragici antiemorragico adj +antiemorragico antiemorragico adj +antiestetica antiestetico adj +antiestetiche antiestetico adj +antiestetici antiestetico adj +antiestetico antiestetico adj +antieuropea antieuropeo adj +antieuropee antieuropeo adj +antieuropei antieuropeo adj +antieuropeo antieuropeo adj +antifascismi antifascismo nom +antifascismo antifascismo nom +antifascista antifascista adj +antifasciste antifascista adj +antifascisti antifascista adj +antifebbrili antifebbrile nom +antifemminista antifemminista adj +antifemministe antifemminista adj +antifemministi antifemminista nom +antiflogistica antiflogistico adj +antiflogistiche antiflogistico adj +antiflogistici antiflogistico adj +antiflogistico antiflogistico adj +antifona antifona nom +antifonari antifonario nom +antifonario antifonario nom +antifone antifona nom +antifrasi antifrasi nom +antifrastica antifrastico adj +antifrastico antifrastico adj +antifrizione antifrizione nom +antifrode antifrode adj +antifurti antifurto nom +antifurto antifurto nom +antigas antigas adj +antigelo antigelo adj +antigene antigene nom +antigeni antigene nom +antighiaccio antighiaccio nom +antigienica antigienico adj +antigieniche antigienico adj +antigienico antigienico adj +antigrandine antigrandine nom +antilope antilope nom +antilopi antilope nom +antimafia antimafia adj +antimateria antimateria nom +antimaterie antimateria nom +antimeridiana antimeridiano adj +antimeridiane antimeridiano adj +antimeridiani antimeridiano nom +antimeridiano antimeridiano adj +antimilitarismo antimilitarismo nom +antimilitarista antimilitarista nom +antimilitariste antimilitarista nom +antimilitaristi antimilitarista nom +antimissile antimissile adj +antimoni antimonio nom +antimonio antimonio nom +antimonite antimonite nom +antimperialista antimperialista adj +antimperialiste antimperialista adj +antimperialisti antimperialista adj +antinazionale antinazionale adj +antinazionali antinazionale adj +antincendio antincendio adj +antinebbia antinebbia adj +antinevralgica antinevralgico adj +antinevralgiche antinevralgico adj +antinevralgici antinevralgico adj +antinevralgico antinevralgico adj +antinfiammatori antinfiammatorio nom +antinfiammatorio antinfiammatorio nom +antinfluenzale antinfluenzale nom +antinfluenzali antinfluenzale nom +antinfortunistica antinfortunistico adj +antinfortunistiche antinfortunistico adj +antinfortunistici antinfortunistico adj +antinfortunistico antinfortunistico adj +antinomia antinomia nom +antinomie antinomia nom +antinquinamento antinquinamento nom +antinucleare antinucleare adj +antinucleari antinucleare adj +antiopa antiopa nom +antiope antiopa nom +antiorari antiorario adj +antioraria antiorario adj +antiorarie antiorario adj +antiorario antiorario adj +antiossidante antiossidante adj +antiossidanti antiossidante adj +antipapa antipapa nom +antipapi antipapa nom +antiparassitari antiparassitario nom +antiparassitaria antiparassitario adj +antiparassitarie antiparassitario adj +antiparassitario antiparassitario adj +antiparticella antiparticella nom +antiparticelle antiparticella nom +antipasti antipasto nom +antipasto antipasto nom +antipatia antipatia nom +antipatica antipatico adj +antipatiche antipatico adj +antipatici antipatico adj +antipatico antipatico adj +antipatie antipatia nom +antipiega antipiega adj +antipiretica antipiretico adj +antipiretiche antipiretico adj +antipiretici antipiretico adj +antipiretico antipiretico adj +antipode antipode nom +antipodi antipode nom +antipolio antipolio adj +antipopolare antipopolare adj +antipopolari antipopolare adj +antiporta antiporta nom +antiproiettile antiproiettile adj +antiquari antiquario adj +antiquaria antiquario adj +antiquariato antiquariato nom +antiquarie antiquario adj +antiquario antiquario adj +antiquata antiquato adj +antiquate antiquato adj +antiquati antiquato adj +antiquato antiquato adj +antirabbica antirabbico adj +antirabbico antirabbico adj +antirachitica antirachitico adj +antirazzista antirazzista adj +antireligiosa antireligioso adj +antireligiose antireligioso adj +antireligiosi antireligioso adj +antireligioso antireligioso adj +antireumatici antireumatico nom +antireumatico antireumatico nom +antirrino antirrino nom +antiruggine antiruggine adj +antirughe antirughe adj +antirumore antirumore adj +antischiavismo antischiavismo nom +antischiavista antischiavista adj +antischiaviste antischiavista adj +antischiavisti antischiavista adj +antisemita antisemita adj +antisemite antisemita adj +antisemiti antisemita adj +antisemitica antisemitico adj +antisemitiche antisemitico adj +antisemitici antisemitico adj +antisemitico antisemitico adj +antisemitismi antisemitismo nom +antisemitismo antisemitismo nom +antisettica antisettico adj +antisettiche antisettico adj +antisettici antisettico adj +antisettico antisettico adj +antisismica antisismico adj +antisismiche antisismico adj +antisismici antisismico adj +antisismico antisismico adj +antismog antismog adj +antisociale antisociale adj +antisociali antisociale adj +antisocialismo antisocialismo nom +antisolari antisolare adj +antisommergibile antisommergibile nom +antisommergibili antisommergibile nom +antispastici antispastico nom +antispastico antispastico nom +antisportiva antisportivo adj +antisportive antisportivo adj +antisportivi antisportivo adj +antisportivo antisportivo adj +antistaminici antistaminico nom +antistaminico antistaminico nom +antistante antistante adj +antistanti antistante adj +antistorica antistorico adj +antistoriche antistorico adj +antistorici antistorico adj +antistoricismo antistoricismo nom +antistorico antistorico adj +antistrofe antistrofe nom +antitesi antitesi nom +antitetanica antitetanico adj +antitetaniche antitetanico adj +antitetanico antitetanico adj +antitetica antitetico adj +antitetiche antitetico adj +antitetici antitetico adj +antitetico antitetico adj +antitossina antitossina nom +antitossine antitossina nom +antitrust antitrust adj +antitubercolare antitubercolare adj +antitubercolari antitubercolare adj +antiuomo antiuomo adj +antiuriche antiurico adj +antivegetativa antivegetativo adj +antivigilia antivigilia nom +antivipera antivipera adj +antivirale antivirale adj +antivirali antivirale adj +antologia antologia nom +antologica antologico adj +antologiche antologico adj +antologici antologico adj +antologico antologico adj +antologie antologia nom +antonimi antonimo adj +antonimo antonimo adj +antonomasia antonomasia nom +antonomasie antonomasia nom +antonomastica antonomastico adj +antonomastici antonomastico adj +antonomastico antonomastico adj +antrace antrace nom +antracene antracene nom +antrachinone antrachinone nom +antrachinoni antrachinone nom +antraci antrace nom +antracite antracite nom +antri antro nom +antro antro nom +antropica antropico adj +antropiche antropico adj +antropici antropico adj +antropico antropico adj +antropocentrica antropocentrico adj +antropocentriche antropocentrico adj +antropocentrico antropocentrico adj +antropofaga antropofago adj +antropofaghe antropofago adj +antropofagi antropofago nom +antropofagia antropofagia nom +antropofago antropofago adj +antropoide antropoide adj +antropoidi antropoide adj +antropologa antropologo nom +antropologi antropologo nom +antropologia antropologia nom +antropologica antropologico adj +antropologiche antropologico adj +antropologici antropologico adj +antropologico antropologico adj +antropologie antropologia nom +antropologo antropologo nom +antropometria antropometria nom +antropometrica antropometrico adj +antropometriche antropometrico adj +antropometrici antropometrico adj +antropometrico antropometrico adj +antropometrie antropometria nom +antropomorfa antropomorfo adj +antropomorfi antropomorfo adj +antropomorfica antropomorfico adj +antropomorfiche antropomorfico adj +antropomorfici antropomorfico adj +antropomorfico antropomorfico adj +antropomorfismi antropomorfismo nom +antropomorfismo antropomorfismo nom +antropomorfo antropomorfo adj +anulare anulare adj +anulari anulare adj +anuresi anuresi nom +anuri anuri nom +anuria anuria nom +anurie anuria nom +anzi anzi adv_sup +anziana anziano adj +anziane anziano adj +anziani anziano nom +anzianità anzianità nom +anziano anziano adj +anziche anziche sw +anzichè anzichè con +anziché anziché con +anzidetto anzidetto adv +anzitempo anzitempo adv +anzitutto anzitutto adv_sup +aoristi aoristo nom +aoristo aoristo nom +aorta aorta nom +aorte aorta nom +aostana aostano adj +aostane aostano adj +aostani aostano adj +aostano aostano adj +apache apache nom +apartheid apartheid nom +apartitica apartitico adj +apartitiche apartitico adj +apartitici apartitico adj +apartiticità apartiticità nom +apartitico apartitico adj +apatia apatia nom +apatica apatico adj +apatiche apatico adj +apatici apatico adj +apatico apatico adj +apatie apatia nom +apatite apatite nom +apatiti apatite nom +apatura apatura nom +ape ape nom +aperitivi aperitivo nom +aperitivo aperitivo nom +aperta aperto adj +apertamente apertamente adv_sup +aperte aprire ver +apertesi aprire ver +aperti aperto adj +aperto aprire ver +apertura apertura nom +aperture apertura nom +apetala apetalo adj +apetale apetalo adj +apetali apetalo adj +apetalo apetalo adj +api ape nom +apicale apicale adj +apicali apicale adj +apice apice nom +apici apice nom +apicoltore apicoltore nom +apicoltori apicoltore nom +apicoltura apicoltura nom +apireni apireno adj +apiressia apiressia nom +aplasia aplasia nom +aplasie aplasia nom +apnea apnea nom +apnee apnea nom +apocalisse apocalisse nom +apocalissi apocalisse nom +apocalittica apocalittico adj +apocalittiche apocalittico adj +apocalittici apocalittico adj +apocalittico apocalittico adj +apocinacee apocinacee nom +apocopata apocopare ver +apocopate apocopare ver +apocopati apocopare ver +apocopato apocopare ver +apocope apocope nom +apocopi apocope nom +apocrifa apocrifo adj +apocrife apocrifo adj +apocrifi apocrifo adj +apocrifo apocrifo adj +apoda apodo adj +apode apodo adj +apodi apodo adj +apodittica apodittico adj +apodittiche apodittico adj +apodittici apodittico adj +apodittico apodittico adj +apodo apodo adj +apodosi apodosi nom +apofisi apofisi nom +apofonia apofonia nom +apofonie apofonia nom +apoftegma apoftegma nom +apoftegmi apoftegma nom +apogei apogeo nom +apogeo apogeo nom +apografa apografo adj +apografi apografo adj +apografo apografo adj +apolide apolide adj +apolidi apolide adj +apolitica apolitico adj +apolitiche apolitico adj +apolitici apolitico adj +apoliticità apoliticità nom +apolitico apolitico adj +apollinea apollineo adj +apollinee apollineo adj +apollinei apollineo adj +apollineo apollineo adj +apollo apollo nom +apologeta apologeta nom +apologeti apologeta nom +apologetica apologetico adj +apologetiche apologetico adj +apologetici apologetico adj +apologetico apologetico adj +apologi apologo nom +apologia apologia nom +apologie apologia nom +apologista apologista nom +apologisti apologista nom +apologo apologo nom +aponeurosi aponeurosi nom +apoplessia apoplessia nom +apoplettici apoplettico adj +apoplettico apoplettico adj +aporia aporia nom +aporie aporia nom +apostasia apostasia nom +apostasie apostasia nom +apostata apostata nom +apostatando apostatare ver +apostatano apostatare ver +apostatare apostatare ver +apostatarono apostatare ver +apostatato apostatare ver +apostate apostata nom +apostateranno apostatare ver +apostati apostata nom +apostato apostatare ver +apostola apostolo nom +apostolati apostolato nom +apostolato apostolato nom +apostole apostolo nom +apostoli apostolo nom +apostolica apostolico adj +apostoliche apostolico adj +apostolici apostolico adj +apostolico apostolico adj +apostolo apostolo nom +apostrofa apostrofare ver +apostrofando apostrofare ver +apostrofandola apostrofare ver +apostrofandoli apostrofare ver +apostrofandolo apostrofare ver +apostrofano apostrofare ver +apostrofare apostrofare ver +apostrofarlo apostrofare ver +apostrofarono apostrofare ver +apostrofata apostrofare ver +apostrofate apostrofare ver +apostrofati apostrofare ver +apostrofato apostrofare ver +apostrofava apostrofare ver +apostrofavano apostrofare ver +apostrofe apostrofe nom +apostrofi apostrofe|apostrofo nom +apostrofo apostrofo nom +apostrofò apostrofare ver +apotema apotema nom +apoteosi apoteosi nom +apotropaica apotropaico adj +apotropaiche apotropaico adj +apotropaici apotropaico adj +apotropaico apotropaico adj +appaga appagare ver +appagamento appagamento nom +appagando appagare ver +appagano appagare ver +appagante appagare ver +appaganti appagare ver +appagar appagare ver +appagare appagare ver +appagarlo appagare ver +appagarsi appagare ver +appagasse appagare ver +appagata appagare ver +appagate appagare ver +appagati appagare ver +appagato appagare ver +appagava appagare ver +appagavano appagare ver +appago appagare ver +appagò appagare ver +appai appaiare ver +appaia appaiare ver +appaiando appaiare ver +appaiano appaiare ver +appaiare appaiare ver +appaiarsi appaiare ver +appaiata appaiare ver +appaiate appaiare ver +appaiati appaiare ver +appaiato appaiare ver +appaiava appaiare ver +appaiavano appaiare ver +appaino appaiare ver +appaio appaiare|apparire ver +appaiono apparire ver +appaiò appaiare ver +appallottola appallottolare ver +appallottolandolo appallottolare ver +appallottolandosi appallottolare ver +appallottolano appallottolare ver +appallottolare appallottolare ver +appallottolarsi appallottolare ver +appallottolata appallottolare ver +appallottolate appallottolare ver +appallottolati appallottolare ver +appallottolato appallottolare ver +appalta appaltare ver +appaltando appaltare ver +appaltante appaltare ver +appaltanti appaltare ver +appaltare appaltare ver +appaltarono appaltare ver +appaltata appaltare ver +appaltate appaltare ver +appaltati appaltare ver +appaltato appaltare ver +appaltatore appaltatore nom +appaltatori appaltatore nom +appaltatrice appaltatore nom +appaltatrici appaltatore nom +appaltava appaltare ver +appaltavano appaltare ver +appalti appalto nom +appalto appalto nom +appaltò appaltare ver +appanna appannare ver +appannaggi appannaggio nom +appannaggio appannaggio nom +appannamenti appannamento nom +appannamento appannamento nom +appannando appannare ver +appannano appannare ver +appannare appannare ver +appannarono appannare ver +appannarsi appannare ver +appannata appannare ver +appannate appannare ver +appannati appannare ver +appannato appannare ver +appannava appannare ver +appannò appannare ver +apparati apparato nom +apparato apparato nom +appare apparire ver +apparecchi apparecchio nom +apparecchia apparecchiare ver +apparecchiando apparecchiare ver +apparecchiano apparecchiare ver +apparecchiare apparecchiare ver +apparecchiarsi apparecchiare ver +apparecchiata apparecchiare ver +apparecchiate apparecchiare ver +apparecchiati apparecchiare ver +apparecchiato apparecchiare ver +apparecchiatura apparecchiatura nom +apparecchiature apparecchiatura nom +apparecchiava apparecchiare ver +apparecchio apparecchio nom +apparecchiò apparecchiare ver +apparendo apparire ver +apparendogli apparire ver +apparendole apparire ver +apparendomi apparire ver +apparendovi apparire ver +apparenta apparentare ver +apparentamenti apparentamento nom +apparentamento apparentamento nom +apparentandosi apparentare ver +apparentano apparentare ver +apparentanti apparentare ver +apparentarsi apparentare ver +apparentata apparentare ver +apparentate apparentare ver +apparentati apparentare ver +apparentato apparentare ver +apparente apparente adj +apparentemente apparentemente adv +apparenti apparente adj +apparentò apparentare ver +apparenza apparenza nom +apparenze apparenza nom +appari apparire ver +appariamo apparire ver +apparii apparire ver +apparir apparire ver +appariranno apparire ver +apparirci apparire ver +apparire apparire ver +apparirebbe apparire ver +apparirebbero apparire ver +appariremo apparire ver +apparirgli apparire ver +apparirle apparire ver +apparirmi apparire ver +apparirne apparire ver +apparirono apparire ver +apparirti apparire ver +apparirvi apparire ver +apparirà apparire ver +apparirò apparire ver +appariscente appariscente adj +appariscenti appariscente adj +appariscenza appariscenza nom +apparisse apparire ver +apparissero apparire ver +apparissi apparire ver +apparisti apparire ver +apparite apparire ver +appariva apparire ver +apparivamo apparire ver +apparivano apparire ver +apparivi apparire ver +apparivo apparire ver +apparizione apparizione nom +apparizioni apparizione nom +apparsa apparire ver +apparse apparire ver +apparsi apparire ver +apparso apparire ver +apparta appartare ver +appartamenti appartamento nom +appartamento appartamento nom +appartandosi appartare ver +appartano appartare ver +appartare appartare ver +appartarsi appartare ver +appartata appartare ver +appartate appartato adj +appartati appartato adj +appartato appartare ver +appartava appartare ver +appartavano appartare ver +appartenendo appartenere ver +appartenendogli appartenere ver +appartenendovi appartenere ver +appartenente appartenere ver +appartenenti appartenente adj +appartenenza appartenenza nom +appartenenze appartenenza nom +appartener appartenere ver +appartenerci appartenere ver +appartenere appartenere ver +appartenergli appartenere ver +appartenerle appartenere ver +appartenersi appartenere ver +appartenerti appartenere ver +appartenervi appartenere ver +appartenesse appartenere ver +appartenessero appartenere ver +appartenessi appartenere ver +appartenete appartenere ver +apparteneva appartenere ver +appartenevano appartenere ver +appartenevo appartenere ver +appartenga appartenere ver +appartengano appartenere ver +appartengo appartenere ver +appartengono appartenere ver +apparteniamo appartenere ver +appartenne appartenere ver +appartennero appartenere ver +appartenuta appartenere ver +appartenute appartenere ver +appartenuti appartenere ver +appartenuto appartenere ver +apparterebbe appartare ver +apparterebbero appartare ver +apparterrai appartenere ver +apparterranno appartenere ver +apparterrebbe appartenere ver +apparterrebbero appartenere ver +apparterremo appartenere ver +apparterrà appartenere ver +apparterà appartare ver +apparti appartare ver +appartiene appartenere ver +appartieni appartenere ver +apparto appartare ver +appartò appartare ver +apparve apparire ver +appassendo appassire ver +appassendoli appassire ver +appassimento appassimento nom +appassiona appassionare ver +appassionando appassionare ver +appassionandomi appassionare ver +appassionandosi appassionare ver +appassionano appassionare ver +appassionante appassionare ver +appassionanti appassionare ver +appassionare appassionare ver +appassionarla appassionare ver +appassionarlo appassionare ver +appassionarmi appassionare ver +appassionarono appassionare ver +appassionarsi appassionare ver +appassionata appassionare ver +appassionate appassionato adj +appassionati appassionato adj +appassionato appassionare ver +appassionava appassionare ver +appassionavano appassionare ver +appassioneranno appassionare ver +appassionerà appassionare ver +appassioni appassionare ver +appassiono appassionare ver +appassionò appassionare ver +appassire appassire ver +appassirono appassire ver +appassirà appassire ver +appassisca appassire ver +appassisce appassire ver +appassiscono appassire ver +appassita appassire ver +appassite appassire ver +appassiti appassire ver +appassito appassire ver +appassiva appassire ver +appassivano appassire ver +appassì appassire ver +appella appellare ver +appellabile appellabile adj +appellabili appellabile adj +appellando appellare ver +appellandoci appellare ver +appellandola appellare ver +appellandoli appellare ver +appellandolo appellare ver +appellandomi appellare ver +appellandosi appellare ver +appellandoti appellare ver +appellano appellare ver +appellante appellante adj +appellanti appellante adj +appellar appellare ver +appellarci appellare ver +appellare appellare ver +appellarla appellare ver +appellarli appellare ver +appellarlo appellare ver +appellarmi appellare ver +appellarono appellare ver +appellarsi appellare ver +appellarti appellare ver +appellasi appellare ver +appellasse appellare ver +appellasti appellare ver +appellata appellare ver +appellate appellare ver +appellatevi appellare ver +appellati appellare ver +appellativi appellativo nom +appellativo appellativo nom +appellato appellare ver +appellava appellare ver +appellavano appellare ver +appelleranno appellare ver +appellerei appellare ver +appellerà appellare ver +appellerò appellare ver +appelli appello nom +appelliamo appellare ver +appellino appellare ver +appello appello nom +appellò appellare ver +appena appena adv_sup +appenda appendere ver +appende appendere ver +appendemmo appendere ver +appendendo appendere ver +appendendola appendere ver +appendendoli appendere ver +appendendolo appendere ver +appendendone appendere ver +appendendosi appendere ver +appendendovi appendere ver +appender appendere ver +appenderai appendere ver +appenderanno appendere ver +appenderci appendere ver +appendere appendere ver +appenderemo appendere ver +appenderla appendere ver +appenderle appendere ver +appenderli appendere ver +appenderlo appendere ver +appendermi appendere ver +appendersi appendere ver +appenderti appendere ver +appendervi appendere ver +appenderà appendere ver +appenderò appendere ver +appendesse appendere ver +appendeva appendere ver +appendevano appendere ver +appendi appendere ver +appendiabiti appendiabiti nom +appendice appendice nom +appendicectomia appendicectomia nom +appendici appendice nom +appendicite appendicite nom +appendiciti appendicite nom +appendicolare appendicolare adj +appendicolari appendicolare adj +appendo appendere ver +appendono appendere ver +appenninica appenninico adj +appenniniche appenninico adj +appenninici appenninico adj +appenninico appenninico adj +appercezione appercezione nom +appesa appendere ver +appesantendo appesantire ver +appesantendola appesantire ver +appesantendoli appesantire ver +appesantendone appesantire ver +appesantendosi appesantire ver +appesantiamo appesantire ver +appesantimenti appesantimento nom +appesantimento appesantimento nom +appesantiranno appesantire ver +appesantire appesantire ver +appesantirebbe appesantire ver +appesantirebbero appesantire ver +appesantirei appesantire ver +appesantirgli appesantire ver +appesantirla appesantire ver +appesantirlo appesantire ver +appesantirne appesantire ver +appesantirono appesantire ver +appesantirsi appesantire ver +appesantirà appesantire ver +appesantisca appesantire ver +appesantiscano appesantire ver +appesantisce appesantire ver +appesantisci appesantire ver +appesantiscono appesantire ver +appesantisse appesantire ver +appesantita appesantire ver +appesantite appesantire ver +appesantiti appesantire ver +appesantito appesantire ver +appesantiva appesantire ver +appesantivano appesantire ver +appesantì appesantire ver +appese appeso adj +appesero appendere ver +appesi appendere ver +appeso appendere ver +appesta appestare ver +appestando appestare ver +appestano appestare ver +appestare appestare ver +appestata appestare ver +appestate appestare ver +appestati appestato nom +appestato appestato nom +appestava appestare ver +appetente appetire ver +appetenza appetenza nom +appetibile appetibile adj +appetibili appetibile adj +appetibilità appetibilità nom +appetire appetire ver +appetita appetire ver +appetite appetire ver +appetiti appetito nom +appetito appetito nom +appetitosa appetitoso adj +appetitose appetitoso adj +appetitosi appetitoso adj +appetitoso appetitoso adj +appetto appetto adv +appezzamenti appezzamento nom +appezzamento appezzamento nom +appezzata appezzare ver +appiana appianare ver +appianamento appianamento nom +appianando appianare ver +appianandosi appianare ver +appianano appianare ver +appianante appianare ver +appianare appianare ver +appianarli appianare ver +appianarono appianare ver +appianarsi appianare ver +appianata appianare ver +appianate appianare ver +appianati appianare ver +appianato appianare ver +appianavano appianare ver +appianeranno appianare ver +appianerà appianare ver +appiani appianare ver +appianino appianare ver +appiano appianare ver +appianò appianare ver +appiattata appiattare ver +appiattato appiattare ver +appiatti appiattare ver +appiattimenti appiattimento nom +appiattimento appiattimento nom +appicca appiccare ver +appiccagnoli appiccagnolo nom +appiccagnolo appiccagnolo nom +appiccando appiccare ver +appiccano appiccare ver +appiccar appiccare ver +appiccare appiccare ver +appiccarlo appiccare ver +appiccarono appiccare ver +appiccarsi appiccare ver +appiccarvi appiccare ver +appiccata appiccare ver +appiccate appiccare ver +appiccati appiccare ver +appiccato appiccare ver +appiccava appiccare ver +appiccavano appiccare ver +appiccherà appiccare ver +appicchi appicco nom +appiccica appiccicare ver +appiccicando appiccicare ver +appiccicandoci appiccicare ver +appiccicandogli appiccicare ver +appiccicano appiccicare ver +appiccicarci appiccicare ver +appiccicare appiccicare ver +appiccicargli appiccicare ver +appiccicarle appiccicare ver +appiccicarmi appiccicare ver +appiccicarsi appiccicare ver +appiccicarvi appiccicare ver +appiccicasse appiccicare ver +appiccicata appiccicare ver +appiccicate appiccicare ver +appiccicati appiccicare ver +appiccicaticci appiccicaticcio adj +appiccicaticcia appiccicaticcio adj +appiccicaticcio appiccicaticcio adj +appiccicato appiccicare ver +appiccicherà appiccicare ver +appiccichi appiccicare ver +appiccichiamo appiccicare ver +appiccico appiccicare ver +appiccicosa appiccicoso adj +appiccicose appiccicoso adj +appiccicosi appiccicoso adj +appiccicoso appiccicoso adj +appiccò appiccare ver +appieda appiedare ver +appiedare appiedare ver +appiedata appiedare ver +appiedate appiedare ver +appiedati appiedare ver +appiedato appiedare ver +appiedi appiedare ver +appiedò appiedare ver +appieno appieno adv_sup +appigli appiglio nom +appiglia appigliarsi ver +appigliando appigliarsi ver +appigliandosi appigliarsi ver +appigliano appigliarsi ver +appigliare appigliarsi ver +appigliarsi appigliarsi ver +appigliarti appigliarsi ver +appigliati appigliarsi ver +appigliava appigliarsi ver +appiglio appiglio nom +appiombi appiombo nom +appiombo appiombo nom +appioppa appioppare ver +appioppando appioppare ver +appioppandoci appioppare ver +appioppandogli appioppare ver +appioppano appioppare ver +appioppare appioppare ver +appioppargli appioppare ver +appiopparono appioppare ver +appioppate appioppare ver +appioppati appioppare ver +appioppato appioppare ver +appioppavo appioppare ver +appiopperei appioppare ver +appioppi appioppare ver +appioppo appioppare ver +appioppò appioppare ver +appisola appisolarsi ver +appisolarsi appisolarsi ver +appisolata appisolarsi ver +appisolati appisolarsi ver +appisolato appisolarsi ver +applaude applaudire ver +applaudendo applaudire ver +applaudendolo applaudire ver +applaudi applaudire ver +applaudiamo applaudire ver +applaudir applaudire ver +applaudiranno applaudire ver +applaudire applaudire ver +applaudirla applaudire ver +applaudirlo applaudire ver +applaudirono applaudire ver +applaudirà applaudire ver +applaudirò applaudire ver +applaudissero applaudire ver +applaudita applaudire ver +applaudite applaudire ver +applauditemi applaudire ver +applauditi applaudire ver +applaudito applaudire ver +applaudiva applaudire ver +applaudivano applaudire ver +applaudo applaudire ver +applaudono applaudire ver +applaudì applaudire ver +applausi applauso nom +applauso applauso nom +applausometro applausometro nom +applcato applcato nom +applica applicare ver +applicabile applicabile adj +applicabili applicabile adj +applicabilità applicabilità nom +applicai applicare ver +applicalo applicare ver +applicando applicare ver +applicandogli applicare ver +applicandola applicare ver +applicandole applicare ver +applicandoli applicare ver +applicandolo applicare ver +applicandone applicare ver +applicandosi applicare ver +applicandovi applicare ver +applicano applicare ver +applicanti applicare ver +applicarci applicare ver +applicare applicare ver +applicargli applicare ver +applicarla applicare ver +applicarle applicare ver +applicarli applicare ver +applicarlo applicare ver +applicarmi applicare ver +applicarne applicare ver +applicarono applicare ver +applicarsi applicare ver +applicarti applicare ver +applicarvi applicare ver +applicasse applicare ver +applicassero applicare ver +applicassi applicare ver +applicassimo applicare ver +applicata applicato adj +applicate applicare ver +applicatele applicare ver +applicati applicare ver +applicativa applicativo adj +applicative applicativo adj +applicativi applicativo adj +applicativo applicativo adj +applicato applicare ver +applicava applicare ver +applicavano applicare ver +applicazione applicazione nom +applicazioni applicazione nom +applicherai applicare ver +applicheranno applicare ver +applicherebbe applicare ver +applicherebbero applicare ver +applicherei applicare ver +applicheremo applicare ver +applicheresti applicare ver +applicherà applicare ver +applicherò applicare ver +applichi applicare ver +applichiamo applicare ver +applichiamola applicare ver +applichiamole applicare ver +applichiamolo applicare ver +applichiate applicare ver +applichino applicare ver +applico applicare ver +applicò applicare ver +applique applique nom +appoderamento appoderamento nom +appoderando appoderare ver +appoderare appoderare ver +appoderata appoderare ver +appoderate appoderare ver +appoderato appoderare ver +appoggeranno appoggiare ver +appoggerebbe appoggiare ver +appoggerebbero appoggiare ver +appoggerei appoggiare ver +appoggeremo appoggiare ver +appoggerà appoggiare ver +appoggerò appoggiare ver +appoggi appoggio nom +appoggia appoggiare ver +appoggiai appoggiare ver +appoggiammo appoggiare ver +appoggiamo appoggiare ver +appoggiando appoggiare ver +appoggiandoci appoggiare ver +appoggiandola appoggiare ver +appoggiandole appoggiare ver +appoggiandoli appoggiare ver +appoggiandolo appoggiare ver +appoggiandomi appoggiare ver +appoggiandone appoggiare ver +appoggiandosi appoggiare ver +appoggiandovelo appoggiare ver +appoggiandovi appoggiare ver +appoggiano appoggiare ver +appoggiante appoggiare ver +appoggianti appoggiare ver +appoggiarci appoggiare ver +appoggiare appoggiare ver +appoggiarla appoggiare ver +appoggiarle appoggiare ver +appoggiarli appoggiare ver +appoggiarlo appoggiare ver +appoggiarmi appoggiare ver +appoggiarne appoggiare ver +appoggiarono appoggiare ver +appoggiarsi appoggiare ver +appoggiarti appoggiare ver +appoggiarvi appoggiare ver +appoggiasse appoggiare ver +appoggiassero appoggiare ver +appoggiata appoggiare ver +appoggiate appoggiare ver +appoggiatesta appoggiatesta nom +appoggiati appoggiare ver +appoggiato appoggiare ver +appoggiatura appoggiatura nom +appoggiature appoggiatura nom +appoggiava appoggiare ver +appoggiavano appoggiare ver +appoggiavo appoggiare ver +appoggino appoggiare ver +appoggio appoggio nom +appoggiò appoggiare ver +appollaia appollaiarsi ver +appollaiano appollaiarsi ver +appollaiarsi appollaiarsi ver +appollaiata appollaiarsi ver +appollaiate appollaiarsi ver +appollaiati appollaiarsi ver +appollaiato appollaiarsi ver +appollaiò appollaiarsi ver +appone apporre ver +apponendo apporre ver +apponendolo apporre ver +apponendovi apporre ver +apponesse apporre ver +apponessero apporre ver +apponete apporre ver +apponeva apporre ver +apponevano apporre ver +apponga apporre ver +appongano apporre ver +appongo apporre ver +appongono apporre ver +apponi apporre ver +apponiamo apporre ver +apponta appontare ver +appontaggi appontaggio nom +appontaggio appontaggio nom +appontano appontare ver +appontare appontare ver +appontato appontare ver +apponto appontare ver +apporgli apporre ver +apporla apporre ver +apporle apporre ver +apporli apporre ver +apporlo apporre ver +apporne apporre ver +apporre apporre ver +apporrebbe apporre ver +apporrei apporre ver +apporrà apporre ver +apporrò apporre ver +apporsi apporre ver +apporta apportare ver +apportando apportare ver +apportandogli apportare ver +apportandole apportare ver +apportandone apportare ver +apportandovi apportare ver +apportano apportare ver +apportante apportare ver +apportanti apportare ver +apportar apportare ver +apportarci apportare ver +apportare apportare ver +apportargli apportare ver +apportarle apportare ver +apportarlo apportare ver +apportarne apportare ver +apportarono apportare ver +apportarsi apportare ver +apportarvi apportare ver +apportasse apportare ver +apportassero apportare ver +apportata apportare ver +apportate apportare ver +apportategli apportare ver +apportati apportare ver +apportato apportare ver +apportava apportare ver +apportavano apportare ver +apporteranno apportare ver +apporterebbe apportare ver +apporterei apportare ver +apporterà apportare ver +apporterò apportare ver +apporti apporto nom +apportiamo apportare ver +apportino apportare ver +apporto apporto nom +apportò apportare ver +apporvi apporre ver +appose apporre ver +apposero apporre ver +apposi apporre ver +apposita apposito adj +appositamente appositamente adv +apposite apposito adj +appositi apposito adj +apposito apposito adj +apposizione apposizione nom +apposizioni apposizione nom +apposta apporre ver +appostamenti appostamento nom +appostamento appostamento nom +appostando appostare ver +appostandosi appostare ver +appostano appostare ver +appostare appostare ver +appostarono appostare ver +appostarsi appostare ver +appostata appostare ver +appostate appostare ver +appostati appostare ver +appostato appostare ver +appostava appostare ver +appostavano appostare ver +appostavi appostare ver +apposte apporre ver +apposteranno appostare ver +apposti apporre ver +apposto apporre ver +appostò appostare ver +apprenda apprendere ver +apprendano apprendere ver +apprende apprendere ver +apprendemmo apprendere ver +apprendendo apprendere ver +apprendendolo apprendere ver +apprendendone apprendere ver +apprendente apprendere ver +apprendenti apprendere ver +apprender apprendere ver +apprenderai apprendere ver +apprenderanno apprendere ver +apprendere apprendere ver +apprenderebbe apprendere ver +apprenderemo apprendere ver +apprenderete apprendere ver +apprenderla apprendere ver +apprenderle apprendere ver +apprenderli apprendere ver +apprenderlo apprendere ver +apprenderne apprendere ver +apprendersi apprendere ver +apprendervi apprendere ver +apprenderà apprendere ver +apprenderò apprendere ver +apprendesse apprendere ver +apprendessero apprendere ver +apprendeva apprendere ver +apprendevamo apprendere ver +apprendevano apprendere ver +apprendevo apprendere ver +apprendi apprendere ver +apprendiamo apprendere ver +apprendibile apprendibile adj +apprendibili apprendibile adj +apprendimenti apprendimento nom +apprendimento apprendimento nom +apprendista apprendista nom +apprendistati apprendistato nom +apprendistato apprendistato nom +apprendiste apprendista nom +apprendisti apprendista nom +apprendo apprendere ver +apprendono apprendere ver +apprensione apprensione nom +apprensioni apprensione nom +apprensiva apprensivo adj +apprensive apprensivo adj +apprensivi apprensivo adj +apprensivo apprensivo adj +appresa apprendere ver +apprese apprendere ver +appresero apprendere ver +appresi apprendere ver +appreso apprendere ver +appressa appressare ver +appressamento appressamento nom +appressandosi appressare ver +appressano appressare ver +appressarsi appressare ver +appressata appressare ver +appressate appressare ver +appressati appressare ver +appressato appressare ver +appresso appresso adv +appressò appressare ver +appresta apprestare ver +apprestai apprestare ver +apprestando apprestare ver +apprestandosi apprestare ver +apprestano apprestare ver +apprestare apprestare ver +apprestarono apprestare ver +apprestarsi apprestare ver +apprestasse apprestare ver +apprestassero apprestare ver +apprestata apprestare ver +apprestate apprestare ver +apprestati apprestare ver +apprestato apprestare ver +apprestava apprestare ver +apprestavano apprestare ver +apprestavo apprestare ver +appresteranno apprestare ver +appresterebbe apprestare ver +appresterà apprestare ver +appresterò apprestare ver +appresti apprestare ver +apprestiamo apprestare ver +apprestino apprestare ver +appresto apprestare ver +apprestò apprestare ver +apprettata apprettare ver +apprettate apprettare ver +apprettato apprettare ver +apprettatura apprettatura nom +appretti appretto nom +appretto appretto nom +apprezza apprezzare ver +apprezzabile apprezzabile adj +apprezzabili apprezzabile adj +apprezzabilmente apprezzabilmente adv +apprezzai apprezzare ver +apprezzamenti apprezzamento nom +apprezzamento apprezzamento nom +apprezzami apprezzare ver +apprezzando apprezzare ver +apprezzandola apprezzare ver +apprezzandoli apprezzare ver +apprezzandolo apprezzare ver +apprezzandone apprezzare ver +apprezzano apprezzare ver +apprezzar apprezzare ver +apprezzare apprezzare ver +apprezzarla apprezzare ver +apprezzarle apprezzare ver +apprezzarli apprezzare ver +apprezzarlo apprezzare ver +apprezzarne apprezzare ver +apprezzarono apprezzare ver +apprezzarsi apprezzare ver +apprezzasse apprezzare ver +apprezzassero apprezzare ver +apprezzata apprezzare ver +apprezzate apprezzare ver +apprezzati apprezzare ver +apprezzato apprezzare ver +apprezzava apprezzare ver +apprezzavano apprezzare ver +apprezzavo apprezzare ver +apprezzerai apprezzare ver +apprezzeranno apprezzare ver +apprezzerebbe apprezzare ver +apprezzerebbero apprezzare ver +apprezzerei apprezzare ver +apprezzeremmo apprezzare ver +apprezzereste apprezzare ver +apprezzerete apprezzare ver +apprezzerà apprezzare ver +apprezzerò apprezzare ver +apprezzi apprezzare ver +apprezziamo apprezzare ver +apprezziate apprezzare ver +apprezzino apprezzare ver +apprezzo apprezzare ver +apprezzò apprezzare ver +approcci approccio nom +approccio approccio nom +approda approdare ver +approdai approdare ver +approdammo approdare ver +approdando approdare ver +approdandovi approdare ver +approdano approdare ver +approdare approdare ver +approdarono approdare ver +approdarvi approdare ver +approdasse approdare ver +approdassero approdare ver +approdata approdare ver +approdate approdare ver +approdati approdare ver +approdato approdare ver +approdava approdare ver +approdavano approdare ver +approderanno approdare ver +approderebbe approdare ver +approderà approdare ver +approdi approdo nom +approdino approdare ver +approdo approdo nom +approdò approdare ver +approfitta approfittare ver +approfittai approfittare ver +approfittando approfittare ver +approfittandone approfittare ver +approfittandosene approfittare ver +approfittandosi approfittare ver +approfittane approfittare ver +approfittano approfittare ver +approfittare approfittare ver +approfittarne approfittare ver +approfittarono approfittare ver +approfittarsene approfittare ver +approfittarsi approfittare ver +approfittasse approfittare ver +approfittassero approfittare ver +approfittate approfittare ver +approfittatene approfittare ver +approfittato approfittare ver +approfittava approfittare ver +approfittavano approfittare ver +approfittavo approfittare ver +approfitteranno approfittare ver +approfitterebbe approfittare ver +approfitterei approfittare ver +approfitteremo approfittare ver +approfitterà approfittare ver +approfitterò approfittare ver +approfitti approfittare ver +approfittiamo approfittare ver +approfittiamone approfittare ver +approfittino approfittare ver +approfitto approfittare ver +approfittò approfittare ver +approfondendo approfondire ver +approfondendola approfondire ver +approfondendole approfondire ver +approfondendoli approfondire ver +approfondendolo approfondire ver +approfondendone approfondire ver +approfondendosi approfondire ver +approfondiamo approfondire ver +approfondimenti approfondimento nom +approfondimento approfondimento nom +approfondirai approfondire ver +approfondiranno approfondire ver +approfondire approfondire ver +approfondirebbe approfondire ver +approfondirebbero approfondire ver +approfondirei approfondire ver +approfondiremo approfondire ver +approfondirla approfondire ver +approfondirle approfondire ver +approfondirli approfondire ver +approfondirlo approfondire ver +approfondirne approfondire ver +approfondirono approfondire ver +approfondirsi approfondire ver +approfondirà approfondire ver +approfondirò approfondire ver +approfondisca approfondire ver +approfondiscano approfondire ver +approfondisce approfondire ver +approfondisci approfondire ver +approfondisco approfondire ver +approfondiscono approfondire ver +approfondisse approfondire ver +approfondissero approfondire ver +approfondissi approfondire ver +approfondita approfondire ver +approfonditamente approfonditamente adv +approfondite approfondito adj +approfonditesi approfondire ver +approfonditi approfondire ver +approfondito approfondire ver +approfondiva approfondire ver +approfondivano approfondire ver +approfondì approfondire ver +appronta approntare ver +approntamento approntamento nom +approntando approntare ver +approntandosi approntare ver +approntano approntare ver +approntare approntare ver +approntargli approntare ver +approntarne approntare ver +approntarono approntare ver +approntarsi approntare ver +approntasse approntare ver +approntata approntare ver +approntate approntare ver +approntati approntare ver +approntato approntare ver +approntava approntare ver +approntavano approntare ver +appronteranno approntare ver +appronterà approntare ver +appronto approntare ver +approntò approntare ver +appropinqua appropinquare ver +appropinquante appropinquare ver +appropinquarsi appropinquare ver +appropri appropriare ver +appropria appropriare ver +appropriabile appropriabile adj +appropriando appropriare ver +appropriandosene appropriare ver +appropriandosi appropriare ver +appropriano appropriare ver +appropriarcene appropriare ver +appropriare appropriare ver +appropriarmi appropriare ver +appropriarono appropriare ver +appropriarsene appropriare ver +appropriarsi appropriare ver +appropriarti appropriare ver +appropriarvi appropriare ver +appropriasse appropriare ver +appropriata appropriare ver +appropriatamente appropriatamente adv +appropriate appropriato adj +appropriati appropriato adj +appropriato appropriare ver +appropriava appropriare ver +appropriavano appropriare ver +appropriazione appropriazione nom +appropriazioni appropriazione nom +approprierà appropriare ver +approprino appropriare ver +approprio appropriare ver +appropriò appropriare ver +approssima approssimare ver +approssimale approssimare ver +approssimando approssimare ver +approssimandone approssimare ver +approssimandosi approssimare ver +approssimano approssimare ver +approssimante approssimare ver +approssimanti approssimare ver +approssimarci approssimare ver +approssimare approssimare ver +approssimarla approssimare ver +approssimarli approssimare ver +approssimarlo approssimare ver +approssimarsi approssimare ver +approssimasse approssimare ver +approssimata approssimare ver +approssimate approssimare ver +approssimati approssimare ver +approssimativa approssimativo adj +approssimativamente approssimativamente adv +approssimative approssimativo adj +approssimativi approssimativo adj +approssimativo approssimativo adj +approssimato approssimare ver +approssimava approssimare ver +approssimavano approssimare ver +approssimazione approssimazione nom +approssimazioni approssimazione nom +approssimerà approssimare ver +approssimi approssimare ver +approssimiamo approssimare ver +approssimino approssimare ver +approssimo approssimare ver +approssimò approssimare ver +approva approvare ver +approvabile approvabile adj +approvammo approvare ver +approvando approvare ver +approvandola approvare ver +approvandole approvare ver +approvandolo approvare ver +approvandomi approvare ver +approvandone approvare ver +approvano approvare ver +approvante approvare ver +approvare approvare ver +approvarla approvare ver +approvarle approvare ver +approvarli approvare ver +approvarlo approvare ver +approvarne approvare ver +approvarono approvare ver +approvarsi approvare ver +approvasse approvare ver +approvassero approvare ver +approvassi approvare ver +approvata approvare ver +approvate approvare ver +approvati approvare ver +approvato approvare ver +approvava approvare ver +approvavano approvare ver +approvavo approvare ver +approvazione approvazione nom +approvazioni approvazione nom +approveranno approvare ver +approverebbe approvare ver +approverebbero approvare ver +approverei approvare ver +approveremo approvare ver +approverà approvare ver +approverò approvare ver +approvi approvare ver +approviamo approvare ver +approviate approvare ver +approvino approvare ver +approvo approvare ver +approvviggionamento approvviggionamento nom +approvvigiona approvvigionare ver +approvvigionamenti approvvigionamento nom +approvvigionamento approvvigionamento nom +approvvigionando approvvigionare ver +approvvigionandosi approvvigionare ver +approvvigionano approvvigionare ver +approvvigionare approvvigionare ver +approvvigionarla approvvigionare ver +approvvigionarli approvvigionare ver +approvvigionarono approvvigionare ver +approvvigionarsene approvvigionare ver +approvvigionarsi approvvigionare ver +approvvigionata approvvigionare ver +approvvigionate approvvigionare ver +approvvigionati approvvigionare ver +approvvigionato approvvigionare ver +approvvigionava approvvigionare ver +approvvigionavano approvvigionare ver +approvvigionò approvvigionare ver +approvò approvare ver +appruandosi appruare ver +appruata appruare ver +appruato appruare ver +appruava appruare ver +appruò appruare ver +appunta appuntare ver +appuntamenti appuntamento nom +appuntamento appuntamento nom +appuntando appuntare ver +appuntandosi appuntare ver +appuntano appuntare ver +appuntarci appuntare ver +appuntare appuntare ver +appuntarle appuntare ver +appuntarono appuntare ver +appuntarsi appuntare ver +appuntata appuntare ver +appuntate appuntare ver +appuntati appuntato nom +appuntato appuntare ver +appuntava appuntare ver +appuntavano appuntare ver +appunterei appuntare ver +appunterà appuntare ver +appunti appunto nom +appuntiamo appuntare|appuntire ver +appuntino appuntino adv +appuntire appuntire ver +appuntirsi appuntire ver +appuntisce appuntire ver +appuntita appuntire ver +appuntite appuntire ver +appuntiti appuntire ver +appuntito appuntire ver +appunto appunto adv_sup +appuntò appuntare ver +appura appurare ver +appurando appurare ver +appurano appurare ver +appurare appurare ver +appurarlo appurare ver +appurarne appurare ver +appurarono appurare ver +appurassero appurare ver +appurata appurare ver +appurate appurare ver +appurati appurare ver +appurato appurare ver +appurerà appurare ver +appuri appurare ver +appuro appurare ver +appurò appurare ver +apra aprire ver +aprano aprire ver +aprassia aprassia nom +aprassie aprassia nom +apre aprire ver +aprendo aprire ver +aprendoci aprire ver +aprendogli aprire ver +aprendola aprire ver +aprendole aprire ver +aprendoli aprire ver +aprendolo aprire ver +aprendone aprire ver +aprendosi aprire ver +aprendovi aprire ver +aprente aprire ver +apri aprire ver +apriamo aprire ver +apriamola aprire ver +apriamolo aprire ver +apriate aprire ver +apribile apribile adj +apribili apribile adj +apribocca apribocca nom +apribottiglie apribottiglie nom +aprica aprico adj +apriche aprico adj +aprici aprire ver +aprico aprico adj +aprigli aprire ver +aprii aprire ver +aprila aprire ver +aprile aprile nom +aprili aprire ver +aprilo aprire ver +aprimi aprire ver +aprimmo aprire ver +aprine aprire ver +aprioristica aprioristico adj +aprioristiche aprioristico adj +aprioristici aprioristico adj +aprioristico aprioristico adj +apripista apripista nom +aprir aprire ver +aprirai aprire ver +apriranno aprire ver +aprirci aprire ver +aprire aprire ver +aprirebbe aprire ver +aprirebbero aprire ver +aprirei aprire ver +apriremmo aprire ver +apriremo aprire ver +apriresti aprire ver +aprirgli aprire ver +aprirla aprire ver +aprirle aprire ver +aprirli aprire ver +aprirlo aprire ver +aprirmi aprire ver +aprirne aprire ver +aprirono aprire ver +aprirsi aprire ver +aprirti aprire ver +aprirvi aprire ver +aprirà aprire ver +aprirò aprire ver +apriscatole apriscatole nom +aprisse aprire ver +aprissero aprire ver +aprissi aprire ver +aprissimo aprire ver +apriste aprire ver +apristi aprire ver +aprite aprire ver +apritela aprire ver +apritelo aprire ver +apritemi aprire ver +apritene aprire ver +apritevi aprire ver +apriti aprire ver +apriva aprire ver +aprivano aprire ver +aprivi aprire ver +aprivo aprire ver +apro aprire ver +aproblematica aproblematico adj +aprono aprire ver +aprì aprire ver +aptera aptero adj +apteri aptero adj +aptero aptero adj +aquaplaning aquaplaning nom +aquila aquila nom +aquilana aquilano adj +aquilane aquilano adj +aquilani aquilano adj +aquilano aquilano adj +aquile aquila nom +aquilina aquilino adj +aquiline aquilino adj +aquilini aquilino adj +aquilino aquilino adj +aquilone aquilone nom +aquiloni aquilone nom +aquilotti aquilotto nom +aquilotto aquilotto nom +ara ara nom +araba arabo adj +arabe arabo adj +arabesca arabesco adj +arabescata arabescare ver +arabescate arabescare ver +arabescati arabescare ver +arabescato arabescare ver +arabesche arabesco adj +arabeschi arabesco nom +arabesco arabesco adj +arabi arabo adj +arabica arabico adj +arabiche arabico adj +arabici arabico adj +arabico arabico adj +arabile arabile adj +arabili arabile adj +arabismi arabismo nom +arabismo arabismo nom +arabo arabo adj +aracee aracee nom +araceli arare ver +arachide arachide nom +arachidi arachide nom +araci arare ver +aracnea aracneo adj +aracnidi aracnidi nom +aracnoide aracnoide nom +aracnoidi aracnoide nom +aragosta aragosta nom +aragoste aragosta nom +arai arare ver +arala arare ver +araldi araldo nom +araldica araldico adj +araldiche araldico adj +araldici araldico adj +araldico araldico adj +araldista araldista nom +araldisti araldista nom +araldo araldo nom +arale arare ver +aralia aralia nom +aralo arare ver +arami arare ver +arance arancia nom +aranceti aranceto nom +aranceto aranceto nom +aranci arancio nom +arancia arancia nom +aranciata aranciato adj +aranciate aranciato adj +aranciati aranciato adj +aranciato aranciato adj +aranciera aranciera nom +arancina arancino adj +arancine arancino adj +arancini arancino nom +arancino arancino adj +arancio arancio nom +arancione arancione adj +arancioni arancione adj +arando arare ver +arandolo arare ver +arane arare ver +arano arare ver +arar arare ver +arare arare ver +ararlo arare ver +arasse arare ver +araste arare ver +arata arare ver +arate arare ver +arati arare ver +arativa arativo adj +arative arativo adj +arativi arativo adj +arativo arativo adj +arato arare ver +aratore aratore adj +aratori aratore adj +aratri aratro nom +aratrice aratore nom +aratro aratro nom +aratura aratura nom +arature aratura nom +araucaria araucaria nom +araucarie araucaria nom +arava arare ver +aravano arare ver +aravi arare ver +arazzeria arazzeria nom +arazzerie arazzeria nom +arazzi arazzo nom +arazziere arazziere nom +arazzieri arazziere nom +arazzo arazzo nom +arbitra arbitro nom +arbitraggi arbitraggio nom +arbitraggio arbitraggio nom +arbitrale arbitrale adj +arbitrali arbitrale adj +arbitrari arbitrario adj +arbitraria arbitrario adj +arbitrariamente arbitrariamente adv +arbitrarie arbitrario adj +arbitrario arbitrario adj +arbitrata arbitrato adj +arbitrate arbitrato adj +arbitrati arbitrato nom +arbitrato arbitrato adj +arbitre arbitro nom +arbitri arbitrio|arbitro nom +arbitrio arbitrio nom +arbitro arbitro nom +arborea arboreo adj +arboree arboreo adj +arborei arboreo adj +arboreo arboreo adj +arborescente arborescente adj +arborescenti arborescente adj +arborescenza arborescenza nom +arborescenze arborescenza nom +arboricola arboricolo adj +arboricole arboricolo adj +arboricoli arboricolo adj +arboricolo arboricolo adj +arboricoltura arboricoltura nom +arboscelli arboscello nom +arboscello arboscello nom +arbusti arbusto nom +arbustiva arbustivo adj +arbustive arbustivo adj +arbustivi arbustivo adj +arbustivo arbustivo adj +arbusto arbusto nom +arca arca nom +arcade arcade adj +arcadi arcade nom +arcadia arcadia nom +arcadica arcadico adj +arcadiche arcadico adj +arcadici arcadico adj +arcadico arcadico adj +arcadie arcadia nom +arcaica arcaico adj +arcaiche arcaico adj +arcaici arcaico adj +arcaicità arcaicità nom +arcaicizzante arcaicizzare ver +arcaicizzanti arcaicizzare ver +arcaico arcaico adj +arcaismi arcaismo nom +arcaismo arcaismo nom +arcaizzante arcaizzare ver +arcaizzanti arcaizzare ver +arcana arcano adj +arcane arcano adj +arcangeli arcangelo nom +arcangelo arcangelo nom +arcani arcano adj +arcano arcano adj +arcata arcata nom +arcate arcata nom +arcavolo arcavolo nom +arche arca nom +archeggiate archeggiare ver +archeggiati archeggiare ver +archeggiato archeggiare ver +archeografia archeografia nom +archeologa archeologo nom +archeologhe archeologo nom +archeologi archeologo nom +archeologia archeologia nom +archeologica archeologico adj +archeologiche archeologico adj +archeologici archeologico adj +archeologico archeologico adj +archeologie archeologia nom +archeologo archeologo nom +archeotterige archeotterige nom +archeozoici archeozoico nom +archeozoico archeozoico nom +archetipi archetipo nom +archetipo archetipo nom +archetti archetto nom +archetto archetto nom +archi arco nom +archiacuta archiacuto adj +archiacute archiacuto adj +archiacuti archiacuto adj +archiacuto archiacuto adj +archiatra archiatra nom +archiatri archiatra nom +archibugi archibugio nom +archibugiata archibugiata nom +archibugiate archibugiata nom +archibugiere archibugiere nom +archibugieri archibugiere nom +archibugio archibugio nom +archidiocesi archidiocesi nom +archiepiscopi archiepiscopo nom +archiepiscopo archiepiscopo nom +archiginnasio archiginnasio nom +archilochea archilocheo adj +archilocheo archilocheo adj +archimandrita archimandrita nom +archimandriti archimandrita nom +archipendolo archipendolo nom +architetta architettare ver +architettando architettare ver +architettano architettare ver +architettare architettare ver +architettarono architettare ver +architettata architettare ver +architettate architettare ver +architettati architettare ver +architettato architettare ver +architettava architettare ver +architetti architetto nom +architetto architetto nom +architettonica architettonico adj +architettoniche architettonico adj +architettonici architettonico adj +architettonico architettonico adj +architettura architettura nom +architetturale architetturale adj +architetture architettura nom +architettò architettare ver +architrave architrave nom +architravi architrave nom +archivi archivio nom +archivia archiviare ver +archiviala archiviare ver +archiviali archiviare ver +archiviamo archiviare ver +archiviamola archiviare ver +archiviando archiviare ver +archiviandola archiviare ver +archiviandoli archiviare ver +archiviandolo archiviare ver +archiviano archiviare ver +archiviare archiviare ver +archiviarla archiviare ver +archiviarle archiviare ver +archiviarli archiviare ver +archiviarlo archiviare ver +archiviarono archiviare ver +archiviata archiviare ver +archiviate archiviare ver +archiviati archiviare ver +archiviato archiviare ver +archiviava archiviare ver +archiviavo archiviare ver +archiviazione archiviazione nom +archiviazioni archiviazione nom +archivierei archiviare ver +archivierà archiviare ver +archivierò archiviare ver +archivino archiviare ver +archivio archivio nom +archivista archivista nom +archiviste archivista nom +archivisti archivista nom +archivistica archivistico adj +archivistiche archivistico adj +archivistici archivistico adj +archivistico archivistico adj +archiviò archiviare ver +archivolti archivolto nom +archivolto archivolto nom +arcidiaconi arcidiacono nom +arcidiacono arcidiacono nom +arcidiavoli arcidiavolo nom +arcidiavolo arcidiavolo nom +arciduca arciduca nom +arciducato arciducato nom +arciduchessa arciduchessa nom +arciduchesse arciduchessa nom +arciduchi arciduca nom +arciere arciere nom +arcieri arciere nom +arcigna arcigno adj +arcigne arcigno adj +arcigni arcigno adj +arcigno arcigno adj +arcione arcione nom +arcioni arcione nom +arcipelaghi arcipelago nom +arcipelago arcipelago nom +arciprete arciprete nom +arcipreti arciprete nom +arcispedale arcispedale nom +arcivescovadi arcivescovado nom +arcivescovado arcivescovado nom +arcivescovi arcivescovo nom +arcivescovile arcivescovile adj +arcivescovili arcivescovile adj +arcivescovo arcivescovo nom +arco arco nom +arcobaleni arcobaleno nom +arcobaleno arcobaleno nom +arcolai arcolaio nom +arcolaio arcolaio nom +arconte arconte nom +arconti arconte nom +arcoscenico arcoscenico nom +arcosoli arcosolio nom +arcosolio arcosolio nom +arcuando arcuare ver +arcuandosi arcuare ver +arcuano arcuare ver +arcuare arcuare ver +arcuarsi arcuare ver +arcuata arcuare ver +arcuate arcuato adj +arcuati arcuato adj +arcuato arcuare ver +arda ardere ver +ardano ardere ver +arde ardere ver +ardendo ardere|ardire ver +ardendolo ardere|ardire ver +ardente ardente adj +ardenti ardente adj +arder ardere ver +arderei ardere ver +arderne ardere ver +arderà ardere ver +ardesia ardesia nom +ardesie ardesia nom +ardesse ardere ver +ardessi ardere ver +ardeva ardere ver +ardevano ardere ver +ardevo ardere ver +ardi ardere ver +ardiglione ardiglione nom +ardiglioni ardiglione nom +ardila ardere ver +ardimenti ardimento nom +ardimento ardimento nom +ardimentosa ardimentoso adj +ardimentose ardimentoso adj +ardimentosi ardimentoso adj +ardimentoso ardimentoso adj +ardir ardire ver +ardire ardire ver +ardirebbe ardire ver +ardirei ardire ver +ardirono ardire ver +ardisca ardire ver +ardiscano ardire ver +ardisce ardire ver +ardisci ardire ver +ardisco ardire ver +ardisse ardire ver +ardita ardito adj +ardite ardito adj +arditezza arditezza nom +arditezze arditezza nom +arditi ardito adj +ardito ardire ver +ardiva ardire ver +ardivano ardire ver +ardo ardere ver +ardono ardere ver +ardore ardore nom +ardori ardore nom +ardua arduo adj +ardue arduo adj +ardui arduo adj +arduo arduo adj +ardì ardire ver +are ara nom +area area nom +areca areca nom +areche areca nom +aree area nom +arena arena nom +arenamento arenamento nom +arenando arenare ver +arenandosi arenare ver +arenano arenare ver +arenare arenare ver +arenaria arenaria nom +arenarie arenaria nom +arenarla arenare ver +arenarono arenare ver +arenarsi arenare ver +arenasse arenare ver +arenassero arenare ver +arenata arenare ver +arenate arenare ver +arenatesi arenare ver +arenati arenare ver +arenato arenare ver +arenava arenare ver +arenavano arenare ver +arene arena nom +arenerà arenare ver +arengario arengario nom +arenghi arengo nom +arengo arengo nom +areni arenare ver +areniamoci arenare ver +arenicola arenicolo adj +arenile arenile nom +arenili arenile nom +areno arenare ver +arenosa arenoso adj +arenose arenoso adj +arenosi arenoso adj +arenoso arenoso adj +arenò arenare ver +areola areola nom +areole areola nom +areometro areometro nom +areopago areopago nom +areoporti areoporto nom +arerei arare ver +argani argano nom +argano argano nom +argenta argentare ver +argentana argentana nom +argentano argentare ver +argentante argentare ver +argentare argentare ver +argentari argentario nom +argentaria argentario adj +argentario argentario adj +argentata argentare ver +argentate argentare ver +argentati argentare ver +argentato argentare ver +argentatura argentatura nom +argentature argentatura nom +argentea argenteo adj +argentee argenteo adj +argentei argenteo adj +argenteo argenteo adj +argenteria argenteria nom +argenterie argenteria nom +argenti argento nom +argentiere argentiere nom +argentieri argentiere nom +argentifera argentifero adj +argentifere argentifero adj +argentiferi argentifero adj +argentifero argentifero adj +argentina argentino adj +argentine argentino adj +argentini argentino adj +argentino argentino adj +argento argento nom +argentoni argentone nom +arghi argo nom +argilla argilla nom +argille argilla nom +argillosa argilloso adj +argillose argilloso adj +argillosi argilloso adj +argilloso argilloso adj +argina arginare ver +arginale arginare ver +arginali arginare ver +arginando arginare ver +arginano arginare ver +arginare arginare ver +arginarla arginare ver +arginarle arginare ver +arginarli arginare ver +arginarlo arginare ver +arginarne arginare ver +arginarono arginare ver +arginasi arginare ver +arginasse arginare ver +arginata arginare ver +arginate arginare ver +arginati arginare ver +arginato arginare ver +arginatura arginatura nom +arginature arginatura nom +arginava arginare ver +arginavano arginare ver +argine argine nom +arginerebbe arginare ver +argini argine nom +arginino arginare ver +argino arginare ver +arginò arginare ver +argo argo nom +argomenta argomentare ver +argomentale argomentare ver +argomentando argomentare ver +argomentandola argomentare ver +argomentandole argomentare ver +argomentano argomentare ver +argomentante argomentare ver +argomentare argomentare ver +argomentarla argomentare ver +argomentarle argomentare ver +argomentarlo argomentare ver +argomentarne argomentare ver +argomentarono argomentare ver +argomentasse argomentare ver +argomentassi argomentare ver +argomentata argomentare ver +argomentate argomentare ver +argomentati argomentare ver +argomentato argomentare ver +argomentatore argomentatore nom +argomentava argomentare ver +argomentavano argomentare ver +argomentazione argomentazione nom +argomentazioni argomentazione nom +argomenterà argomentare ver +argomenterò argomentare ver +argomenti argomento nom +argomentino argomentare ver +argomento argomento nom +argomentò argomentare ver +argonauta argonauta nom +argonauti argonauta nom +argot argot nom +arguendo arguire ver +arguire arguire ver +arguirebbe arguire ver +arguisce arguire ver +arguisco arguire ver +arguita arguire ver +arguito arguire ver +arguta arguto adj +argute arguto adj +argutezza argutezza nom +arguti arguto adj +arguto arguto adj +arguzia arguzia nom +arguzie arguzia nom +arguì arguire ver +ari arare ver +aria aria nom +ariana ariano adj +ariane ariano adj +arianesimo arianesimo nom +ariani ariano adj +ariano ariano adj +arida arido adj +aride arido adj +aridi arido adj +aridità aridità nom +arido arido adj +aridocoltura aridocoltura nom +arie aria nom +arieggia arieggiare ver +arieggiamento arieggiamento nom +arieggiante arieggiare ver +arieggianti arieggiare ver +arieggiare arieggiare ver +arieggiata arieggiare ver +arieggiate arieggiare ver +arieggiati arieggiare ver +arieggiato arieggiare ver +ariete ariete nom +arieti ariete nom +arietta arietta nom +ariette arietta nom +arimanni arimanno nom +arimanno arimanno nom +aringa aringa nom +aringhe aringa nom +arino arare ver +ariosa arioso adj +ariose arioso adj +ariosi arioso adj +arioso arioso adj +arista arista nom +ariste arista nom +aristocratica aristocratico adj +aristocratiche aristocratico adj +aristocratici aristocratico nom +aristocratico aristocratico adj +aristocrazia aristocrazia nom +aristocrazie aristocrazia nom +aristolochia aristolochia nom +aristotelica aristotelico adj +aristoteliche aristotelico adj +aristotelici aristotelico adj +aristotelico aristotelico adj +aritmetica aritmetico adj +aritmetiche aritmetico adj +aritmetici aritmetico adj +aritmetico aritmetico adj +aritmia aritmia nom +aritmica aritmico adj +aritmiche aritmico adj +aritmici aritmico adj +aritmico aritmico adj +aritmie aritmia nom +arlecchinata arlecchinata nom +arlecchinate arlecchinata nom +arlecchinesca arlecchinesco adj +arlecchinesche arlecchinesco adj +arlecchinesco arlecchinesco adj +arlecchini arlecchino nom +arlecchino arlecchino adj +arma arma nom +armacollo armacollo nom +armadi armadio nom +armadilli armadillo nom +armadillo armadillo nom +armadio armadio nom +armai armare ver +armaioli armaiolo nom +armaiolo armaiolo nom +armali armare ver +armamentari armamentario nom +armamentario armamentario nom +armamenti armamento nom +armamento armamento nom +armando armare ver +armandoci armare ver +armandola armare ver +armandoli armare ver +armandolo armare ver +armandosi armare ver +armano armare ver +armante armare ver +armanti armare ver +armar armare ver +armarci armare ver +armare armare ver +armarla armare ver +armarle armare ver +armarli armare ver +armarlo armare ver +armarmi armare ver +armarne armare ver +armarono armare ver +armarsi armare ver +armarti armare ver +armarvi armare ver +armasi armare ver +armasse armare ver +armata armato adj +armate armato adj +armatevi armare ver +armati armato adj +armato armato adj +armatore armatore adj +armatori armatore nom +armatoriale armatoriale adj +armatoriali armatoriale adj +armatrice armatore adj +armatrici armatore adj +armatura armatura nom +armature armatura nom +armava armare ver +armavano armare ver +arme arme nom +armeggi armeggio nom +armeggia armeggiare ver +armeggiando armeggiare ver +armeggiano armeggiare ver +armeggiare armeggiare ver +armeggiata armeggiare ver +armeggiato armeggiare ver +armeggiava armeggiare ver +armeggio armeggio nom +armena armeno adj +armene armeno adj +armeni armeno adj +armenia armenio nom +armenie armenio nom +armenio armenio nom +armeno armeno adj +armenti armento nom +armento armento nom +armeranno armare ver +armeria armeria nom +armerie armeria nom +armerà armare ver +armerò armare ver +armi arma|arme|armo nom +armiamo armare ver +armiamoci armare ver +armiere armiere nom +armieri armiere nom +armigera armigero adj +armigere armigero adj +armigeri armigero nom +armigero armigero adj +armilla armilla nom +armillare armillare adj +armillari armillare adj +armille armilla nom +armino armare ver +armistizi armistizio nom +armistiziali armistiziale adj +armistizio armistizio nom +armo armo nom +armoire armoire nom +armonia armonia nom +armonica armonico adj +armonicamente armonicamente adv +armoniche armonico adj +armonici armonico adj +armonico armonico adj +armonie armonia nom +armoniosa armonioso adj +armoniosamente armoniosamente adv +armoniose armonioso adj +armoniosi armonioso adj +armonioso armonioso adj +armonium armonium nom +armonizza armonizzare ver +armonizzando armonizzare ver +armonizzandola armonizzare ver +armonizzandoli armonizzare ver +armonizzandolo armonizzare ver +armonizzandosi armonizzare ver +armonizzano armonizzare ver +armonizzante armonizzare ver +armonizzanti armonizzare ver +armonizzare armonizzare ver +armonizzarla armonizzare ver +armonizzarle armonizzare ver +armonizzarli armonizzare ver +armonizzarlo armonizzare ver +armonizzarne armonizzare ver +armonizzarsi armonizzare ver +armonizzasse armonizzare ver +armonizzata armonizzare ver +armonizzate armonizzare ver +armonizzati armonizzare ver +armonizzato armonizzare ver +armonizzava armonizzare ver +armonizzavano armonizzare ver +armonizzazione armonizzazione nom +armonizzerebbe armonizzare ver +armonizzerei armonizzare ver +armonizzerà armonizzare ver +armonizzi armonizzare ver +armonizziamo armonizzare ver +armonizzò armonizzare ver +armò armare ver +arnese arnese nom +arnesi arnese nom +arnia arnia nom +arnica arnica nom +arnie arnia nom +arnioni arnione nom +aro arare ver +aroma aroma nom +aromatica aromatico adj +aromatiche aromatico adj +aromatici aromatico adj +aromaticità aromaticità nom +aromatico aromatico adj +aromatizza aromatizzare ver +aromatizzando aromatizzare ver +aromatizzano aromatizzare ver +aromatizzante aromatizzare ver +aromatizzanti aromatizzare ver +aromatizzare aromatizzare ver +aromatizzarlo aromatizzare ver +aromatizzata aromatizzare ver +aromatizzate aromatizzare ver +aromatizzati aromatizzare ver +aromatizzato aromatizzare ver +aromatizzavano aromatizzare ver +aromi aroma nom +arpa arpa nom +arpagone arpagone nom +arpagoni arpagone nom +arpe arpa nom +arpeggi arpeggio nom +arpeggia arpeggiare ver +arpeggiando arpeggiare ver +arpeggiante arpeggiare ver +arpeggiare arpeggiare ver +arpeggiata arpeggiare ver +arpeggiate arpeggiare ver +arpeggiati arpeggiare ver +arpeggiato arpeggiare ver +arpeggio arpeggio nom +arpia arpia nom +arpicordo arpicordo nom +arpie arpia nom +arpiona arpionare ver +arpionando arpionare ver +arpionano arpionare ver +arpionare arpionare ver +arpionarle arpionare ver +arpionarlo arpionare ver +arpionata arpionare ver +arpionato arpionare ver +arpionava arpionare ver +arpione arpione nom +arpioni arpione nom +arpionismo arpionismo nom +arpionò arpionare ver +arpista arpista nom +arpiste arpista nom +arpisti arpista nom +arpone arpone nom +arra arra nom +arrabatta arrabattarsi ver +arrabattano arrabattarsi ver +arrabattarci arrabattarsi ver +arrabattare arrabattarsi ver +arrabattarsi arrabattarsi ver +arrabattavano arrabattarsi ver +arrabatto arrabattarsi ver +arrabbi arrabbiare ver +arrabbia arrabbiare ver +arrabbiai arrabbiare ver +arrabbiamo arrabbiare ver +arrabbiamoci arrabbiare ver +arrabbiando arrabbiare ver +arrabbiandosi arrabbiare ver +arrabbiano arrabbiare ver +arrabbiar arrabbiare ver +arrabbiarci arrabbiare ver +arrabbiare arrabbiare ver +arrabbiarmi arrabbiare ver +arrabbiarono arrabbiare ver +arrabbiarsi arrabbiare ver +arrabbiarti arrabbiare ver +arrabbiasse arrabbiare ver +arrabbiata arrabbiare ver +arrabbiate arrabbiato adj +arrabbiatevi arrabbiare ver +arrabbiati arrabbiato adj +arrabbiato arrabbiare ver +arrabbiatura arrabbiatura nom +arrabbiature arrabbiatura nom +arrabbiava arrabbiare ver +arrabbiavano arrabbiare ver +arrabbiavo arrabbiare ver +arrabbieranno arrabbiare ver +arrabbierebbe arrabbiare ver +arrabbierebbero arrabbiare ver +arrabbierei arrabbiare ver +arrabbieresti arrabbiare ver +arrabbierà arrabbiare ver +arrabbio arrabbiare ver +arrabbiò arrabbiare ver +arraffa arraffare ver +arraffando arraffare ver +arraffano arraffare ver +arraffare arraffare ver +arraffata arraffare ver +arraffato arraffare ver +arraffavano arraffare ver +arrampica arrampicare ver +arrampicai arrampicare ver +arrampicando arrampicare ver +arrampicandoci arrampicare ver +arrampicandosi arrampicare ver +arrampicano arrampicare ver +arrampicante arrampicare ver +arrampicarci arrampicare ver +arrampicare arrampicare ver +arrampicarmi arrampicare ver +arrampicarono arrampicare ver +arrampicarsi arrampicare ver +arrampicarti arrampicare ver +arrampicarvi arrampicare ver +arrampicasse arrampicare ver +arrampicata arrampicata nom +arrampicate arrampicata nom +arrampicatevi arrampicare ver +arrampicati arrampicare ver +arrampicato arrampicare ver +arrampicatore arrampicatore nom +arrampicatori arrampicatore nom +arrampicatrice arrampicatore nom +arrampicatrici arrampicatore nom +arrampicava arrampicare ver +arrampicavano arrampicare ver +arrampicherà arrampicare ver +arrampichi arrampicare ver +arrampichiamoci arrampicare ver +arrampico arrampicare ver +arrampicò arrampicare ver +arranca arrancare ver +arrancando arrancare ver +arrancano arrancare ver +arrancante arrancare ver +arrancar arrancare ver +arrancare arrancare ver +arrancarono arrancare ver +arrancata arrancare ver +arrancava arrancare ver +arrancavano arrancare ver +arrancavo arrancare ver +arranco arrancare ver +arrancò arrancare ver +arrangi arrangiare ver +arrangia arrangiare ver +arrangiamenti arrangiamento nom +arrangiamento arrangiamento nom +arrangiamo arrangiare ver +arrangiando arrangiare ver +arrangiandolo arrangiare ver +arrangiandone arrangiare ver +arrangiandosi arrangiare ver +arrangiano arrangiare ver +arrangiarci arrangiare ver +arrangiare arrangiare ver +arrangiarle arrangiare ver +arrangiarlo arrangiare ver +arrangiarmi arrangiare ver +arrangiarono arrangiare ver +arrangiarsi arrangiare ver +arrangiarti arrangiare ver +arrangiata arrangiare ver +arrangiate arrangiare ver +arrangiatevi arrangiare ver +arrangiati arrangiare ver +arrangiato arrangiare ver +arrangiatore arrangiatore nom +arrangiatori arrangiatore nom +arrangiava arrangiare ver +arrangiavano arrangiare ver +arrangino arrangiare ver +arrangio arrangiare ver +arrangiò arrangiare ver +arre arra nom +arreca arrecare ver +arrecando arrecare ver +arrecandogli arrecare ver +arrecandole arrecare ver +arrecandosi arrecare ver +arrecano arrecare ver +arrecante arrecare ver +arrecanti arrecare ver +arrecar arrecare ver +arrecare arrecare ver +arrecargli arrecare ver +arrecarle arrecare ver +arrecarono arrecare ver +arrecasse arrecare ver +arrecassero arrecare ver +arrecata arrecare ver +arrecate arrecare ver +arrecategli arrecare ver +arrecati arrecare ver +arrecato arrecare ver +arrecava arrecare ver +arrecavano arrecare ver +arrecheranno arrecare ver +arrecherebbe arrecare ver +arrecherebbero arrecare ver +arrecherà arrecare ver +arrechi arrecare ver +arrechino arrecare ver +arrecò arrecare ver +arreda arredare ver +arredamenti arredamento nom +arredamento arredamento nom +arredando arredare ver +arredandola arredare ver +arredandolo arredare ver +arredano arredare ver +arredante arredare ver +arredare arredare ver +arredarla arredare ver +arredarlo arredare ver +arredarono arredare ver +arredata arredare ver +arredate arredare ver +arredati arredare ver +arredato arredare ver +arredatore arredatore nom +arredatori arredatore nom +arredatrice arredatore nom +arredava arredare ver +arredavano arredare ver +arredi arredo nom +arredo arredo nom +arredò arredare ver +arremba arrembare ver +arrembaggi arrembaggio nom +arrembaggio arrembaggio nom +arrembante arrembare ver +arrembanti arrembare ver +arrembare arrembare ver +arrembato arrembare ver +arrembò arrembare ver +arrenda arrendere ver +arrendano arrendere ver +arrende arrendere ver +arrendendo arrendere ver +arrendendosi arrendere ver +arrenderanno arrendere ver +arrenderci arrendere ver +arrendere arrendere ver +arrenderemo arrendere ver +arrendermi arrendere ver +arrendersi arrendere ver +arrenderti arrendere ver +arrenderà arrendere ver +arrenderò arrendere ver +arrendesse arrendere ver +arrendessero arrendere ver +arrendetevi arrendere ver +arrendeva arrendere ver +arrendevano arrendere ver +arrendevo arrendere ver +arrendevole arrendevole adj +arrendevolezza arrendevolezza nom +arrendevolezze arrendevolezza nom +arrendevoli arrendevole adj +arrendi arrendere ver +arrendiamo arrendere ver +arrendiamoci arrendere ver +arrenditi arrendere ver +arrendo arrendere ver +arrendono arrendere ver +arresa arrendere ver +arrese arrendere ver +arresero arrendere ver +arresi arrendere ver +arreso arrendere ver +arresta arrestare ver +arrestammo arrestare ver +arrestando arrestare ver +arrestandola arrestare ver +arrestandole arrestare ver +arrestandoli arrestare ver +arrestandolo arrestare ver +arrestandone arrestare ver +arrestandosi arrestare ver +arrestano arrestare ver +arrestarci arrestare ver +arrestare arrestare ver +arrestarla arrestare ver +arrestarle arrestare ver +arrestarli arrestare ver +arrestarlo arrestare ver +arrestarmi arrestare ver +arrestarne arrestare ver +arrestarono arrestare ver +arrestarsi arrestare ver +arrestarti arrestare ver +arrestarvi arrestare ver +arrestasse arrestare ver +arrestassero arrestare ver +arrestata arrestare ver +arrestate arrestare ver +arrestatelo arrestare ver +arrestatemi arrestare ver +arrestati arrestare ver +arrestato arrestare ver +arrestava arrestare ver +arrestavano arrestare ver +arresteranno arrestare ver +arresterebbe arrestare ver +arresterebbero arrestare ver +arresterà arrestare ver +arresti arresto nom +arrestino arrestare ver +arresto arresto nom +arrestò arrestare ver +arretra arretrare ver +arretramenti arretramento nom +arretramento arretramento nom +arretrando arretrare ver +arretrandolo arretrare ver +arretrandone arretrare ver +arretrano arretrare ver +arretrare arretrare ver +arretrarlo arretrare ver +arretrarono arretrare ver +arretrarsi arretrare ver +arretrasse arretrare ver +arretrassero arretrare ver +arretrata arretrare ver +arretrate arretrato adj +arretratezza arretratezza nom +arretratezze arretratezza nom +arretrati arretrato adj +arretrato arretrare ver +arretrava arretrare ver +arretravano arretrare ver +arretrerà arretrare ver +arretrino arretrare ver +arretrò arretrare ver +arri arri int +arricchendo arricchire ver +arricchendola arricchire ver +arricchendole arricchire ver +arricchendoli arricchire ver +arricchendolo arricchire ver +arricchendone arricchire ver +arricchendosi arricchire ver +arricchente arricchire ver +arricchiamo arricchire ver +arricchiamola arricchire ver +arricchimenti arricchimento nom +arricchimento arricchimento nom +arricchiranno arricchire ver +arricchirci arricchire ver +arricchire arricchire ver +arricchirebbe arricchire ver +arricchirebbero arricchire ver +arricchirei arricchire ver +arricchirla arricchire ver +arricchirle arricchire ver +arricchirli arricchire ver +arricchirlo arricchire ver +arricchirmi arricchire ver +arricchirne arricchire ver +arricchirono arricchire ver +arricchirsi arricchire ver +arricchirà arricchire ver +arricchisca arricchire ver +arricchiscano arricchire ver +arricchisce arricchire ver +arricchisci arricchire ver +arricchisco arricchire ver +arricchiscono arricchire ver +arricchisse arricchire ver +arricchissero arricchire ver +arricchita arricchire ver +arricchite arricchire ver +arricchitesi arricchire ver +arricchitevi arricchire ver +arricchiti arricchire ver +arricchito arricchire ver +arricchiva arricchire ver +arricchivano arricchire ver +arricchì arricchire ver +arriccia arricciare ver +arricciacapelli arricciacapelli nom +arricciamenti arricciamento nom +arricciamento arricciamento nom +arricciando arricciare ver +arricciandosi arricciare ver +arricciano arricciare ver +arricciare arricciare ver +arricciarono arricciare ver +arricciarsi arricciare ver +arricciata arricciare ver +arricciate arricciare ver +arricciati arricciare ver +arricciato arricciare ver +arricciatura arricciatura nom +arricciature arricciatura nom +arricciava arricciare ver +arriccino arricciare ver +arriccio arricciare ver +arricciolata arricciolare ver +arricciolati arricciolare ver +arrida arridere ver +arride arridere ver +arridergli arridere ver +arriderà arridere ver +arridesse arridere ver +arrideva arridere ver +arridi arridere ver +arridono arridere ver +arringa arringa nom +arringando arringare ver +arringano arringare ver +arringar arringare ver +arringare arringare ver +arringata arringare ver +arringati arringare ver +arringato arringare ver +arringava arringare ver +arringhe arringa nom +arringhi arringo nom +arringo arringo nom +arringò arringare ver +arrisa arridere ver +arrischi arrischiare ver +arrischia arrischiare ver +arrischiano arrischiare ver +arrischianti arrischiare ver +arrischiarci arrischiare ver +arrischiare arrischiare ver +arrischiarono arrischiare ver +arrischiarsi arrischiare ver +arrischiata arrischiato adj +arrischiate arrischiato adj +arrischiati arrischiato adj +arrischiato arrischiare ver +arrischiava arrischiare ver +arrischierei arrischiare ver +arrischio arrischiare ver +arrischiò arrischiare ver +arrise arridere ver +arrisero arridere ver +arrisi arridere ver +arriso arridere ver +arriva arrivare ver +arrivai arrivare ver +arrivammo arrivare ver +arrivando arrivare ver +arrivandoci arrivare ver +arrivandogli arrivare ver +arrivandolo arrivare ver +arrivandone arrivare ver +arrivandosi arrivare ver +arrivandovi arrivare ver +arrivano arrivare ver +arrivante arrivare ver +arrivanti arrivare ver +arrivar arrivare ver +arrivarci arrivare ver +arrivare arrivare ver +arrivargli arrivare ver +arrivarle arrivare ver +arrivarmi arrivare ver +arrivarne arrivare ver +arrivarono arrivare ver +arrivarsi arrivare ver +arrivarti arrivare ver +arrivarvi arrivare ver +arrivasi arrivare ver +arrivasse arrivare ver +arrivassero arrivare ver +arrivassi arrivare ver +arrivassimo arrivare ver +arrivata arrivare ver +arrivate arrivare ver +arrivategli arrivare ver +arrivati arrivare ver +arrivato arrivare ver +arrivava arrivare ver +arrivavamo arrivare ver +arrivavano arrivare ver +arrivavi arrivare ver +arrivavo arrivare ver +arrivederci arrivederci int +arriverai arrivare ver +arriveranno arrivare ver +arriverebbe arrivare ver +arriverebbero arrivare ver +arriverei arrivare ver +arriveremmo arrivare ver +arriveremo arrivare ver +arriveresti arrivare ver +arriverete arrivare ver +arriverà arrivare ver +arriverò arrivare ver +arrivi arrivo nom +arriviamo arrivare ver +arriviate arrivare ver +arrivino arrivare ver +arrivismi arrivismo nom +arrivismo arrivismo nom +arrivista arrivista nom +arriviste arrivista nom +arrivisti arrivista nom +arrivo arrivo nom +arrivò arrivare ver +arrocca arroccare ver +arroccando arroccare ver +arroccandosi arroccare ver +arroccandoti arroccare ver +arroccano arroccare ver +arroccare arroccare ver +arroccarmi arroccare ver +arroccarono arroccare ver +arroccarsi arroccare ver +arroccarvi arroccare ver +arroccata arroccare ver +arroccate arroccare ver +arroccati arroccare ver +arroccato arroccare ver +arroccava arroccare ver +arrocchi arrocco nom +arrocchiamo arroccare ver +arrocchino arroccare ver +arrocco arrocco nom +arroccò arroccare ver +arrochita arrochire ver +arrochito arrochire ver +arroga arrogare ver +arrogando arrogare ver +arrogandosi arrogare ver +arrogano arrogare ver +arrogante arrogante adj +arroganti arrogante adj +arroganza arroganza nom +arroganze arroganza nom +arrogarci arrogare ver +arrogare arrogare ver +arrogarmi arrogare ver +arrogarono arrogare ver +arrogarsi arrogare ver +arrogarti arrogare ver +arrogasse arrogare ver +arrogassero arrogare ver +arrogata arrogare ver +arrogate arrogare ver +arrogati arrogare ver +arrogato arrogare ver +arrogava arrogare ver +arrogavano arrogare ver +arrogherà arrogare ver +arroghi arrogare ver +arroghiamo arrogare ver +arrogo arrogare ver +arrogò arrogare ver +arrossa arrossare ver +arrossamenti arrossamento nom +arrossamento arrossamento nom +arrossando arrossare ver +arrossano arrossare ver +arrossante arrossare ver +arrossar arrossare ver +arrossare arrossare ver +arrossarsi arrossare ver +arrossata arrossare ver +arrossate arrossare ver +arrossati arrossare ver +arrossato arrossare ver +arrossava arrossare ver +arrossendo arrossire ver +arrosserà arrossare ver +arrossire arrossire ver +arrossirebbe arrossire ver +arrossirà arrossire ver +arrossisca arrossire ver +arrossisce arrossire ver +arrossisci arrossire ver +arrossisco arrossire ver +arrossiscono arrossire ver +arrossita arrossire ver +arrossito arrossire ver +arrossiva arrossire ver +arrossì arrossire ver +arroste arrosto adj +arrostendo arrostire ver +arrostendoli arrostire ver +arrosti arrosto nom +arrostire arrostire ver +arrostirla arrostire ver +arrostirlo arrostire ver +arrostirono arrostire ver +arrostisce arrostire ver +arrostiscono arrostire ver +arrostisse arrostire ver +arrostita arrostire ver +arrostite arrostire ver +arrostitelo arrostire ver +arrostiti arrostire ver +arrostito arrostire ver +arrostiva arrostire ver +arrostivano arrostire ver +arrosto arrosto adj +arrostì arrostire ver +arrota arrotare ver +arrotano arrotare ver +arrotare arrotare ver +arrotata arrotare ver +arrotati arrotare ver +arrotato arrotare ver +arrotatura arrotatura nom +arrotini arrotino nom +arrotino arrotino nom +arroto arrotare ver +arrotola arrotolare ver +arrotolando arrotolare ver +arrotolandoli arrotolare ver +arrotolandolo arrotolare ver +arrotolandosi arrotolare ver +arrotolano arrotolare ver +arrotolare arrotolare ver +arrotolarla arrotolare ver +arrotolarli arrotolare ver +arrotolarsi arrotolare ver +arrotolata arrotolare ver +arrotolate arrotolare ver +arrotolati arrotolare ver +arrotolato arrotolare ver +arrotolava arrotolare ver +arrotolavano arrotolare ver +arrotoli arrotolare ver +arrotolò arrotolare ver +arrotonda arrotondare ver +arrotondamenti arrotondamento nom +arrotondamento arrotondamento nom +arrotondando arrotondare ver +arrotondandolo arrotondare ver +arrotondandosi arrotondare ver +arrotondano arrotondare ver +arrotondare arrotondare ver +arrotondarne arrotondare ver +arrotondarsi arrotondare ver +arrotondata arrotondare ver +arrotondate arrotondare ver +arrotondati arrotondare ver +arrotondato arrotondare ver +arrotondava arrotondare ver +arrotondavano arrotondare ver +arrotondiamo arrotondare ver +arrotondo arrotondare ver +arrotondò arrotondare ver +arrovella arrovellare ver +arrovellando arrovellare ver +arrovellandoci arrovellare ver +arrovellandosi arrovellare ver +arrovellano arrovellare ver +arrovellare arrovellare ver +arrovellarsi arrovellare ver +arrovellata arrovellare ver +arrovellate arrovellare ver +arrovellati arrovellare ver +arrovellato arrovellare ver +arroventa arroventare ver +arroventano arroventare ver +arroventare arroventare ver +arroventarsi arroventare ver +arroventata arroventato adj +arroventate arroventato adj +arroventati arroventare ver +arroventato arroventare ver +arruffa arruffare ver +arruffando arruffare ver +arruffare arruffare ver +arruffata arruffato adj +arruffate arruffato adj +arruffati arruffato adj +arruffato arruffato adj +arruffava arruffare ver +arruffone arruffone nom +arruffoni arruffone nom +arrugginendo arrugginire ver +arrugginire arrugginire ver +arrugginirsi arrugginire ver +arrugginisce arrugginire ver +arrugginiscono arrugginire ver +arrugginisse arrugginire ver +arrugginita arrugginire ver +arrugginite arrugginire ver +arrugginiti arrugginire ver +arrugginito arrugginire ver +arrugginiva arrugginire ver +arrugginivano arrugginire ver +arrugginì arrugginire ver +arruola arruolare ver +arruolai arruolare ver +arruolamenti arruolamento nom +arruolamento arruolamento nom +arruolando arruolare ver +arruolandola arruolare ver +arruolandole arruolare ver +arruolandoli arruolare ver +arruolandolo arruolare ver +arruolandosi arruolare ver +arruolano arruolare ver +arruolare arruolare ver +arruolarla arruolare ver +arruolarli arruolare ver +arruolarlo arruolare ver +arruolarmi arruolare ver +arruolarono arruolare ver +arruolarsi arruolare ver +arruolasse arruolare ver +arruolassero arruolare ver +arruolata arruolare ver +arruolate arruolare ver +arruolatesi arruolare ver +arruolatevi arruolare ver +arruolati arruolare ver +arruolato arruolare ver +arruolava arruolare ver +arruolavano arruolare ver +arruoleranno arruolare ver +arruolerà arruolare ver +arruoli arruolare ver +arruoliamo arruolare ver +arruolino arruolare ver +arruolo arruolare ver +arruolò arruolare ver +arsa arso adj +arse arso adj +arsella arsella nom +arselle arsella nom +arsenale arsenale nom +arsenali arsenale nom +arsenalotti arsenalotto nom +arsenalotto arsenalotto nom +arsenicati arsenicato adj +arsenicato arsenicato adj +arsenico arsenico nom +arsenopirite arsenopirite nom +arsero ardere ver +arsi arso adj +arsiccio arsiccio adj +arsina arsina nom +arsine arsina nom +arsione arsione nom +arso ardere ver +arsura arsura nom +arsure arsura nom +art art nom +artatamente artatamente adv +arte arte nom +artefatta artefatto adj +artefatte artefatto adj +artefatti artefatto adj +artefatto artefatto adj +artefice artefice nom +artefici artefice nom +artemisia artemisia nom +artemisie artemisia nom +arteria arteria nom +arterie arteria nom +arteriografia arteriografia nom +arteriosa arterioso adj +arteriosclerosi arteriosclerosi nom +arteriosclerotica arteriosclerotico adj +arteriosclerotiche arteriosclerotico adj +arteriosclerotici arteriosclerotico adj +arteriosclerotico arteriosclerotico adj +arteriose arterioso adj +arteriosi arterioso adj +arterioso arterioso adj +arterite arterite nom +arteriti arterite nom +artesiana artesiano adj +artesiane artesiano adj +artesiani artesiano adj +artesiano artesiano adj +arti arte|arto nom +artica artico adj +artiche artico adj +artici artico adj +artico artico adj +articola articolare ver +articolando articolare ver +articolandola articolare ver +articolandole articolare ver +articolandolo articolare ver +articolandosi articolare ver +articolano articolare ver +articolare articolare adj +articolari articolare adj +articolarla articolare ver +articolarlo articolare ver +articolarono articolare ver +articolarsi articolare ver +articolasse articolare ver +articolassero articolare ver +articolata articolare ver +articolate articolare ver +articolati articolare ver +articolato articolare ver +articolava articolare ver +articolavano articolare ver +articolazione articolazione nom +articolazioni articolazione nom +articoleranno articolare ver +articolerebbe articolare ver +articolerei articolare ver +articolerà articolare ver +articoli articolo nom +articolino articolare ver +articolista articolista nom +articolisti articolista nom +articolo articolo nom +articolò articolare ver +artiere artiere nom +artieri artiere nom +artifici artificio nom +artificiale artificiale adj +artificiali artificiale adj +artificializzazione artificializzazione nom +artificialmente artificialmente adv +artificiere artificiere nom +artificieri artificiere nom +artificio artificio nom +artificiosa artificioso adj +artificiosamente artificiosamente adv +artificiose artificioso adj +artificiosi artificioso adj +artificiosità artificiosità nom +artificioso artificioso adj +artigiana artigiano adj +artigianale artigianale adj +artigianali artigianale adj +artigianati artigianato nom +artigianato artigianato nom +artigiane artigiano adj +artigiani artigiano nom +artigiano artigiano adj +artigli artiglio nom +artiglia artigliare ver +artigliano artigliare ver +artigliante artigliare ver +artigliare artigliare ver +artigliata artigliare ver +artigliate artigliare ver +artigliati artigliare ver +artigliato artigliare ver +artigliere artigliere nom +artiglieri artigliere nom +artiglieria artiglieria nom +artiglierie artiglieria nom +artiglio artiglio nom +artigliò artigliare ver +artiodattili artiodattilo adj +artiodattilo artiodattilo adj +artista artista nom +artiste artista nom +artisti artista nom +artistica artistico adj +artisticamente artisticamente adv +artistiche artistico adj +artistici artistico adj +artistico artistico adj +arto arto nom +artrite artrite nom +artriti artrite nom +artritica artritico adj +artritiche artritico adj +artritici artritico adj +artritico artritico adj +artropodi artropodi nom +artrosi artrosi nom +aruspice aruspice nom +aruspici aruspice nom +arvense arvense adj +arvicola arvicola nom +arvicole arvicola nom +arzente arzente nom +arzigogolare arzigogolare ver +arzigogolata arzigogolato adj +arzigogolate arzigogolato adj +arzigogolati arzigogolato adj +arzigogolato arzigogolato adj +arzigogoli arzigogolo nom +arzigogolo arzigogolo nom +arzilla arzillo adj +arzille arzillo adj +arzilli arzillo adj +arzillo arzillo adj +arò arare ver +asbesti asbesto nom +asbesto asbesto nom +asbestosi asbestosi nom +ascari ascaro nom +ascaride ascaride nom +ascaridi ascaride nom +ascaro ascaro nom +asce ascia nom +ascella ascella nom +ascelle ascella nom +ascenda ascendere ver +ascendano ascendere ver +ascende ascendere ver +ascendendo ascendere ver +ascendente ascendente adj +ascendenti ascendente adj +ascendenza ascendenza nom +ascendenze ascendenza nom +ascender ascendere ver +ascenderai ascendere ver +ascenderanno ascendere ver +ascendere ascendere ver +ascendervi ascendere ver +ascenderà ascendere ver +ascendesse ascendere ver +ascendete ascendere ver +ascendeva ascendere ver +ascendevano ascendere ver +ascendi ascendere ver +ascendono ascendere ver +ascensionale ascensionale adj +ascensionali ascensionale adj +ascensione ascensione nom +ascensioni ascensione nom +ascensore ascensore nom +ascensori ascensore nom +ascensorista ascensorista nom +ascesa ascesa nom +ascese ascendere ver +ascesero ascendere ver +ascesi ascesi nom +asceso ascendere ver +ascessi ascesso nom +ascesso ascesso nom +asceta asceta nom +asceti asceta nom +ascetica ascetico adj +ascetiche ascetico adj +ascetici ascetico adj +ascetico ascetico adj +ascetismi ascetismo nom +ascetismo ascetismo nom +aschi asco nom +ascia ascia nom +ascidi ascidio nom +ascidia ascidia nom +ascidie ascidia nom +ascidio ascidio nom +asciolvere asciolvere nom +ascissa ascissa nom +ascisse ascissa nom +ascite ascite nom +asciti ascite nom +asciuga asciugare ver +asciugacapelli asciugacapelli nom +asciugai asciugare ver +asciugamani asciugamano nom +asciugamano asciugamano nom +asciugamento asciugamento nom +asciugando asciugare ver +asciugandola asciugare ver +asciugandoli asciugare ver +asciugandolo asciugare ver +asciugandosi asciugare ver +asciugano asciugare ver +asciugare asciugare ver +asciugargli asciugare ver +asciugarla asciugare ver +asciugarle asciugare ver +asciugarli asciugare ver +asciugarlo asciugare ver +asciugarmi asciugare ver +asciugarono asciugare ver +asciugarsi asciugare ver +asciugasse asciugare ver +asciugata asciugare ver +asciugate asciugare ver +asciugati asciugare ver +asciugato asciugare ver +asciugatoio asciugatoio nom +asciugatrice asciugatrice nom +asciugatrici asciugatrice nom +asciugatura asciugatura nom +asciugature asciugatura nom +asciugava asciugare ver +asciugavano asciugare ver +asciugheranno asciugare ver +asciugherei asciugare ver +asciugherà asciugare ver +asciugherò asciugare ver +asciughi asciugare ver +asciughino asciugare ver +asciugo asciugare ver +asciugò asciugare ver +asciutta asciutto adj +asciuttamente asciuttamente adv +asciutte asciutto adj +asciuttezza asciuttezza nom +asciutti asciutto adj +asciutto asciutto adj +asclepiadea asclepiadeo adj +asclepiadei asclepiadeo adj +asclepiadeo asclepiadeo adj +asco asco nom +ascocarpi ascocarpo nom +ascocarpo ascocarpo nom +ascolta ascoltare ver +ascoltaci ascoltare ver +ascoltai ascoltare ver +ascoltala ascoltare ver +ascoltale ascoltare ver +ascoltali ascoltare ver +ascoltalo ascoltare ver +ascoltami ascoltare ver +ascoltammo ascoltare ver +ascoltando ascoltare ver +ascoltandola ascoltare ver +ascoltandole ascoltare ver +ascoltandoli ascoltare ver +ascoltandolo ascoltare ver +ascoltandone ascoltare ver +ascoltandosi ascoltare ver +ascoltano ascoltare ver +ascoltante ascoltare ver +ascoltanti ascoltare ver +ascoltar ascoltare ver +ascoltarci ascoltare ver +ascoltare ascoltare ver +ascoltarla ascoltare ver +ascoltarle ascoltare ver +ascoltarli ascoltare ver +ascoltarlo ascoltare ver +ascoltarmi ascoltare ver +ascoltarne ascoltare ver +ascoltarono ascoltare ver +ascoltarsi ascoltare ver +ascoltarti ascoltare ver +ascoltarvi ascoltare ver +ascoltasse ascoltare ver +ascoltassero ascoltare ver +ascoltassi ascoltare ver +ascoltassimo ascoltare ver +ascoltata ascoltare ver +ascoltate ascoltare ver +ascoltatela ascoltare ver +ascoltatelo ascoltare ver +ascoltatemi ascoltare ver +ascoltatevi ascoltare ver +ascoltati ascoltare ver +ascoltato ascoltare ver +ascoltatore ascoltatore nom +ascoltatori ascoltatore nom +ascoltatrice ascoltatore nom +ascoltatrici ascoltatore nom +ascoltava ascoltare ver +ascoltavamo ascoltare ver +ascoltavano ascoltare ver +ascoltavo ascoltare ver +ascoltazione ascoltazione nom +ascolterai ascoltare ver +ascolteranno ascoltare ver +ascolterebbe ascoltare ver +ascolterei ascoltare ver +ascolteremo ascoltare ver +ascolterete ascoltare ver +ascolterà ascoltare ver +ascolterò ascoltare ver +ascolti ascolto nom +ascoltiamo ascoltare ver +ascoltino ascoltare ver +ascolto ascolto nom +ascoltò ascoltare ver +ascomiceti ascomiceti nom +asconde ascondere ver +ascondere ascondere ver +ascondo ascondere ver +ascorbico ascorbico adj +ascosa ascoso adj +ascose ascoso adj +ascosi ascoso adj +ascoso ascoso adj +ascosta ascondere ver +ascosto ascondere ver +ascrisse ascrivere ver +ascrissero ascrivere ver +ascritta ascrivere ver +ascritte ascrivere ver +ascritti ascrivere ver +ascritto ascrivere ver +ascrive ascrivere ver +ascrivendo ascrivere ver +ascrivendola ascrivere ver +ascrivendole ascrivere ver +ascrivendoli ascrivere ver +ascrivendolo ascrivere ver +ascrivendovi ascrivere ver +ascrivere ascrivere ver +ascriverebbe ascrivere ver +ascriverebbero ascrivere ver +ascrivergli ascrivere ver +ascriverla ascrivere ver +ascriverlo ascrivere ver +ascriversi ascrivere ver +ascriveva ascrivere ver +ascrivevano ascrivere ver +ascrivo ascrivere ver +ascrivono ascrivere ver +aseità aseità nom +asepsi asepsi nom +asessuale asessuale adj +asessuali asessuale adj +asessuata asessuato adj +asessuate asessuato adj +asessuati asessuato adj +asessuato asessuato adj +asettica asettico adj +asettici asettico adj +asetticità asetticità nom +asettico asettico adj +asfalta asfaltare ver +asfaltando asfaltare ver +asfaltare asfaltare ver +asfaltata asfaltare ver +asfaltate asfaltare ver +asfaltati asfaltare ver +asfaltato asfaltare ver +asfaltatore asfaltatore nom +asfaltatura asfaltatura nom +asfaltature asfaltatura nom +asfalti asfalto nom +asfalto asfalto nom +asfissia asfissia nom +asfissiando asfissiare ver +asfissiandolo asfissiare ver +asfissiante asfissiante adj +asfissianti asfissiante adj +asfissiare asfissiare ver +asfissiata asfissiare ver +asfissiate asfissiare ver +asfissiati asfissiare ver +asfissiato asfissiare ver +asfissiava asfissiare ver +asfissie asfissia nom +asfissiò asfissiare ver +asfittica asfittico adj +asfittiche asfittico adj +asfittici asfittico adj +asfittico asfittico adj +asfodeli asfodelo nom +asfodelo asfodelo nom +asiago asiago nom +asiatica asiatico adj +asiatiche asiatico adj +asiatici asiatico adj +asiatico asiatico adj +asili asilo nom +asilo asilo nom +asimmetria asimmetria nom +asimmetrica asimmetrico adj +asimmetriche asimmetrico adj +asimmetrici asimmetrico adj +asimmetrico asimmetrico adj +asimmetrie asimmetria nom +asinai asinaio nom +asinaio asinaio nom +asinata asinata nom +asinate asinata nom +asincrona asincrono adj +asincrone asincrono adj +asincroni asincrono adj +asincronia asincronia nom +asincrono asincrono adj +asindeti asindeto nom +asindeto asindeto nom +asineria asineria nom +asini asino nom +asinina asinino adj +asinine asinino adj +asinini asinino adj +asinino asinino adj +asinità asinità nom +asino asino nom +asintoti asintoto nom +asintotica asintotico adj +asintotiche asintotico adj +asintotici asintotico adj +asintotico asintotico adj +asintoto asintoto nom +asismica asismico adj +asismiche asismico adj +asismico asismico adj +asistematica asistematico adj +asma asma nom +asmatica asmatico adj +asmatiche asmatico adj +asmatici asmatico adj +asmatico asmatico adj +asme asma nom +asociale asociale adj +asociali asociale adj +asocialità asocialità nom +asola asola nom +asole asola nom +asparagi asparago nom +asparago asparago nom +asperge aspergere ver +aspergendo aspergere ver +aspergendola aspergere ver +aspergendoli aspergere ver +asperger aspergere ver +aspergere aspergere ver +aspergersi aspergere ver +aspergeva aspergere ver +asperità asperità nom +asperrima asperrimo adj +asperrime asperrimo adj +asperrimi asperrimo adj +asperrimo asperrimo adj +aspersa asperso adj +asperse aspergere ver +aspersi asperso adj +aspersione aspersione nom +aspersioni aspersione nom +asperso aspergere ver +aspersorio aspersorio nom +aspetta aspettare ver +aspettai aspettare ver +aspettami aspettare ver +aspettammo aspettare ver +aspettando aspettare ver +aspettandoci aspettare ver +aspettandola aspettare ver +aspettandoli aspettare ver +aspettandolo aspettare ver +aspettandomi aspettare ver +aspettandone aspettare ver +aspettandosi aspettare ver +aspettandoti aspettare ver +aspettano aspettare ver +aspettante aspettare ver +aspettanti aspettare ver +aspettar aspettare ver +aspettarci aspettare ver +aspettare aspettare ver +aspettarla aspettare ver +aspettarle aspettare ver +aspettarli aspettare ver +aspettarlo aspettare ver +aspettarmelo aspettare ver +aspettarmi aspettare ver +aspettarne aspettare ver +aspettarono aspettare ver +aspettarseli aspettare ver +aspettarselo aspettare ver +aspettarsi aspettare ver +aspettartelo aspettare ver +aspettarti aspettare ver +aspettarvi aspettare ver +aspettasse aspettare ver +aspettassero aspettare ver +aspettassi aspettare ver +aspettassimo aspettare ver +aspettasti aspettare ver +aspettata aspettare ver +aspettate aspettare ver +aspettatelo aspettare ver +aspettatemi aspettare ver +aspettatevi aspettare ver +aspettati aspettare ver +aspettativa aspettativa nom +aspettative aspettativa nom +aspettato aspettare ver +aspettava aspettare ver +aspettavamo aspettare ver +aspettavano aspettare ver +aspettavate aspettare ver +aspettavi aspettare ver +aspettavo aspettare ver +aspetterai aspettare ver +aspetteranno aspettare ver +aspetterebbe aspettare ver +aspetterebbero aspettare ver +aspetterei aspettare ver +aspetteremmo aspettare ver +aspetteremo aspettare ver +aspettereste aspettare ver +aspetteresti aspettare ver +aspetterà aspettare ver +aspetterò aspettare ver +aspetti aspetto nom +aspettiamo aspettare ver +aspettiamoci aspettare ver +aspettiamolo aspettare ver +aspettiamone aspettare ver +aspettino aspettare ver +aspetto aspetto nom +aspettò aspettare ver +aspi aspo nom +aspide aspide nom +aspidi aspide nom +aspidistra aspidistra nom +aspidistre aspidistra nom +aspira aspirare ver +aspiraci aspirare ver +aspirale aspirare ver +aspirando aspirare ver +aspirandola aspirare ver +aspirandoli aspirare ver +aspirandone aspirare ver +aspirano aspirare ver +aspirante aspirante adj +aspiranti aspirante adj +aspirapolvere aspirapolvere nom +aspirar aspirare ver +aspirare aspirare ver +aspirarla aspirare ver +aspirarli aspirare ver +aspirarlo aspirare ver +aspirarne aspirare ver +aspirarono aspirare ver +aspirarvi aspirare ver +aspirasi aspirare ver +aspirasse aspirare ver +aspirassero aspirare ver +aspirata aspirare ver +aspirate aspirare ver +aspirati aspirare ver +aspirato aspirare ver +aspiratore aspiratore nom +aspiratori aspiratore nom +aspirava aspirare ver +aspiravamo aspirare ver +aspiravano aspirare ver +aspiravo aspirare ver +aspirazione aspirazione nom +aspirazioni aspirazione nom +aspireranno aspirare ver +aspirerebbe aspirare ver +aspirerebbero aspirare ver +aspirerei aspirare ver +aspirerà aspirare ver +aspiri aspirare ver +aspiriamo aspirare ver +aspirina aspirina nom +aspirine aspirina nom +aspirino aspirare ver +aspiro aspirare ver +aspirò aspirare ver +aspo aspo nom +asporta asportare ver +asportabile asportabile adj +asportabili asportabile adj +asportando asportare ver +asportandola asportare ver +asportandone asportare ver +asportano asportare ver +asportare asportare ver +asportargli asportare ver +asportarla asportare ver +asportarle asportare ver +asportarli asportare ver +asportarlo asportare ver +asportarne asportare ver +asportarono asportare ver +asportasse asportare ver +asportata asportare ver +asportate asportare ver +asportati asportare ver +asportato asportare ver +asportava asportare ver +asportavano asportare ver +asportazione asportazione nom +asportazioni asportazione nom +asporterebbe asportare ver +asporterà asportare ver +asporti asportare ver +asporto asportare ver +asportò asportare ver +aspra aspro adj +aspramente aspramente adv +aspre aspro adj +aspretto aspretto nom +asprezza asprezza nom +asprezze asprezza nom +aspri aspro adj +asprigna asprigno adj +asprigni asprigno adj +asprigno asprigno adj +aspro aspro adj +assafetida assafetida nom +assaggeranno assaggiare ver +assaggerà assaggiare ver +assaggi assaggio nom +assaggia assaggiare ver +assaggiai assaggiare ver +assaggiando assaggiare ver +assaggiandoli assaggiare ver +assaggiandone assaggiare ver +assaggiano assaggiare ver +assaggiare assaggiare ver +assaggiarla assaggiare ver +assaggiarle assaggiare ver +assaggiarli assaggiare ver +assaggiarlo assaggiare ver +assaggiarne assaggiare ver +assaggiarono assaggiare ver +assaggiata assaggiare ver +assaggiate assaggiare ver +assaggiati assaggiare ver +assaggiato assaggiare ver +assaggiatore assaggiatore nom +assaggiatori assaggiatore nom +assaggiatrice assaggiatore nom +assaggiava assaggiare ver +assaggiavano assaggiare ver +assaggino assaggiare ver +assaggio assaggio nom +assaggiò assaggiare ver +assai assai adv_sup +assale assale nom +assalendo assalire ver +assalendola assalire ver +assalendoli assalire ver +assalendolo assalire ver +assali assale nom +assaliamo assalire ver +assaliranno assalire ver +assalire assalire ver +assalirebbe assalire ver +assalirla assalire ver +assalirli assalire ver +assalirlo assalire ver +assalirono assalire ver +assalirà assalire ver +assalisca assalire ver +assalisse assalire ver +assalissero assalire ver +assalita assalire ver +assalite assalire ver +assaliti assalire ver +assalito assalire ver +assalitore assalitore nom +assalitori assalitore nom +assalitrice assalitore nom +assalitrici assalitore nom +assaliva assalire ver +assalivano assalire ver +assalta assaltare ver +assaltando assaltare ver +assaltandola assaltare ver +assaltandolo assaltare ver +assaltandone assaltare ver +assaltano assaltare ver +assaltar assaltare ver +assaltare assaltare ver +assaltarla assaltare ver +assaltarle assaltare ver +assaltarli assaltare ver +assaltarlo assaltare ver +assaltarono assaltare ver +assaltata assaltare ver +assaltate assaltare ver +assaltati assaltare ver +assaltato assaltare ver +assaltatore assaltatore nom +assaltatori assaltatore nom +assaltatrici assaltatore nom +assaltava assaltare ver +assaltavano assaltare ver +assalteranno assaltare ver +assalterà assaltare ver +assalti assalto nom +assalto assalto nom +assaltò assaltare ver +assalì assalire ver +assapora assaporare ver +assaporando assaporare ver +assaporano assaporare ver +assaporar assaporare ver +assaporare assaporare ver +assaporarla assaporare ver +assaporarne assaporare ver +assaporata assaporare ver +assaporate assaporare ver +assaporati assaporare ver +assaporato assaporare ver +assaporava assaporare ver +assaporavano assaporare ver +assaporo assaporare ver +assaporò assaporare ver +assassina assassino adj +assassinai assassinare ver +assassinando assassinare ver +assassinandoli assassinare ver +assassinandolo assassinare ver +assassinandone assassinare ver +assassinano assassinare ver +assassinanti assassinare ver +assassinare assassinare ver +assassinarla assassinare ver +assassinarle assassinare ver +assassinarli assassinare ver +assassinarlo assassinare ver +assassinarmi assassinare ver +assassinarne assassinare ver +assassinarono assassinare ver +assassinasse assassinare ver +assassinata assassinare ver +assassinate assassinare ver +assassinati assassinare ver +assassinato assassinare ver +assassinava assassinare ver +assassinavano assassinare ver +assassine assassino adj +assassineranno assassinare ver +assassinerà assassinare ver +assassini assassino nom +assassinii assassinio nom +assassinio assassinio nom +assassino assassino adj +assassinî assassino nom +assassinò assassinare ver +asse asse nom +asseconda assecondare ver +assecondando assecondare ver +assecondandola assecondare ver +assecondandoli assecondare ver +assecondandolo assecondare ver +assecondandone assecondare ver +assecondano assecondare ver +assecondare assecondare ver +assecondarla assecondare ver +assecondarle assecondare ver +assecondarli assecondare ver +assecondarlo assecondare ver +assecondarne assecondare ver +assecondarono assecondare ver +assecondasse assecondare ver +assecondata assecondare ver +assecondate assecondare ver +assecondati assecondare ver +assecondato assecondare ver +assecondava assecondare ver +assecondavano assecondare ver +asseconderà assecondare ver +assecondi assecondare ver +assecondiamo assecondare ver +assecondino assecondare ver +assecondo assecondare ver +assecondò assecondare ver +assedi assedio nom +assedia assediare ver +assediando assediare ver +assediandola assediare ver +assediandoli assediare ver +assediandolo assediare ver +assediano assediare ver +assediante assediante adj +assedianti assediante nom +assediare assediare ver +assediarla assediare ver +assediarli assediare ver +assediarlo assediare ver +assediarono assediare ver +assediarvi assediare ver +assediasse assediare ver +assediassero assediare ver +assediata assediare ver +assediate assediare ver +assediateli assediare ver +assediatemi assediare ver +assediati assediato nom +assediato assediare ver +assediava assediare ver +assediavano assediare ver +assedieranno assediare ver +assedierà assediare ver +assedio assedio nom +assediò assediare ver +assegna assegnare ver +assegnabile assegnabile adj +assegnabili assegnabile adj +assegnagli assegnare ver +assegnai assegnare ver +assegnamenti assegnamento nom +assegnamento assegnamento nom +assegnami assegnare ver +assegnando assegnare ver +assegnandogli assegnare ver +assegnandola assegnare ver +assegnandole assegnare ver +assegnandoli assegnare ver +assegnandolo assegnare ver +assegnandone assegnare ver +assegnandosi assegnare ver +assegnandovi assegnare ver +assegnano assegnare ver +assegnante assegnare ver +assegnar assegnare ver +assegnare assegnare ver +assegnargli assegnare ver +assegnargliela assegnare ver +assegnarla assegnare ver +assegnarle assegnare ver +assegnarli assegnare ver +assegnarlo assegnare ver +assegnarmi assegnare ver +assegnarne assegnare ver +assegnarono assegnare ver +assegnarsi assegnare ver +assegnartelo assegnare ver +assegnarti assegnare ver +assegnarvi assegnare ver +assegnasse assegnare ver +assegnassero assegnare ver +assegnassi assegnare ver +assegnata assegnare ver +assegnatari assegnatario nom +assegnataria assegnatario nom +assegnatarie assegnatario nom +assegnatario assegnatario nom +assegnate assegnare ver +assegnategli assegnare ver +assegnatele assegnare ver +assegnateli assegnare ver +assegnati assegnare ver +assegnatigli assegnare ver +assegnato assegnare ver +assegnatogli assegnare ver +assegnava assegnare ver +assegnavamo assegnare ver +assegnavano assegnare ver +assegnazione assegnazione nom +assegnazioni assegnazione nom +assegneranno assegnare ver +assegnerebbe assegnare ver +assegnerebbero assegnare ver +assegnerei assegnare ver +assegneresti assegnare ver +assegnerete assegnare ver +assegnerà assegnare ver +assegnerò assegnare ver +assegni assegno nom +assegniamo assegnare ver +assegniate assegnare ver +assegnino assegnare ver +assegno assegno nom +assegnò assegnare ver +assembla assemblare ver +assemblaggi assemblaggio nom +assemblaggio assemblaggio nom +assemblando assemblare ver +assemblandole assemblare ver +assemblandoli assemblare ver +assemblandolo assemblare ver +assemblandone assemblare ver +assemblandosi assemblare ver +assemblano assemblare ver +assemblanti assemblare ver +assemblare assemblare ver +assemblarla assemblare ver +assemblarle assemblare ver +assemblarli assemblare ver +assemblarlo assemblare ver +assemblarono assemblare ver +assemblarsi assemblare ver +assemblasse assemblare ver +assemblassero assemblare ver +assemblata assemblare ver +assemblate assemblare ver +assemblati assemblare ver +assemblato assemblare ver +assemblava assemblare ver +assemblavano assemblare ver +assemblea assemblea nom +assemblee assemblea nom +assemblerà assemblare ver +assembli assemblare ver +assemblo assemblare ver +assemblò assemblare ver +assembramenti assembramento nom +assembramento assembramento nom +assembrano assembrare ver +assembrata assembrare ver +assembrate assembrare ver +assembrati assembrare ver +assembrato assembrare ver +assennata assennato adj +assennate assennato adj +assennatezza assennatezza nom +assennati assennato adj +assennato assennato adj +assensi assenso nom +assenso assenso nom +assenta assentire ver +assentandosi assentarsi ver +assentano assentire ver +assentare assentarsi ver +assentarmi assentarsi ver +assentarono assentarsi ver +assentarsi assentarsi ver +assentarti assentarsi ver +assentassi assentarsi ver +assentata assentarsi ver +assentate assentarsi ver +assentati assentarsi ver +assentato assentarsi ver +assentava assentarsi ver +assentavano assentarsi ver +assente assente adj +assenteismo assenteismo nom +assenteista assenteista nom +assenteisti assenteista nom +assentendo assentire ver +assenterà assentarsi ver +assenterò assentarsi ver +assenti assente adj +assentimento assentimento nom +assentire assentire ver +assentita assentire ver +assentiti assentire ver +assentiva assentire ver +assentivano assentire ver +assento assentarsi|assentire ver +assentì assentire ver +assentò assentarsi ver +assenza assenza nom +assenze assenza nom +assenzi assenzio nom +assenzio assenzio nom +asserendo asserire ver +asserente asserire ver +asserire asserire ver +asserirle asserire ver +asserirlo asserire ver +asserirne asserire ver +asserirono asserire ver +asserirsi asserire ver +asserirà asserire ver +asserisca asserire ver +asseriscano asserire ver +asserisce asserire ver +asserisci asserire ver +asserisco asserire ver +asseriscono asserire ver +asserisse asserire ver +asserissero asserire ver +asserita asserire ver +asserite asserire ver +asseriti asserire ver +asserito asserire ver +asseriva asserire ver +asserivano asserire ver +asserraglia asserragliare ver +asserragliandosi asserragliare ver +asserragliano asserragliare ver +asserragliarono asserragliare ver +asserragliarsi asserragliare ver +asserragliata asserragliare ver +asserragliate asserragliare ver +asserragliati asserragliare ver +asserragliato asserragliare ver +asserragliava asserragliare ver +asserragliavano asserragliare ver +asserragliò asserragliare ver +asserti asserto nom +assertiva assertivo adj +assertive assertivo adj +assertivi assertivo adj +assertivo assertivo adj +asserto asserto nom +assertore assertore nom +assertori assertore nom +assertrice assertore nom +assertrici assertore nom +asservendo asservire ver +asservendola asservire ver +asservendosi asservire ver +asservimenti asservimento nom +asservimento asservimento nom +asservire asservire ver +asservirla asservire ver +asservirli asservire ver +asservirne asservire ver +asservirsi asservire ver +asservisce asservire ver +asserviscono asservire ver +asservita asservire ver +asservite asservire ver +asserviti asservire ver +asservito asservire ver +asservivano asservire ver +asservì asservire ver +asserzione asserzione nom +asserzioni asserzione nom +asserì asserire ver +assessorati assessorato nom +assessorato assessorato nom +assessore assessore nom +assessori assessore nom +assesta assestare ver +assestamenti assestamento nom +assestamento assestamento nom +assestando assestare ver +assestandogli assestare ver +assestandolo assestare ver +assestandosi assestare ver +assestano assestare ver +assestante assestare ver +assestare assestare ver +assestargli assestare ver +assestarle assestare ver +assestarono assestare ver +assestarsi assestare ver +assestata assestare ver +assestate assestare ver +assestati assestare ver +assestato assestare ver +assestava assestare ver +assestavano assestare ver +assesteranno assestare ver +assesterebbe assestare ver +assesterà assestare ver +assesti assestare ver +assesto assestare ver +assestò assestare ver +assetata assetare ver +assetate assetare ver +assetati assetato adj +assetato assetare ver +asseto assetare ver +assetta assettare ver +assettare assettare ver +assettata assettare ver +assettate assettare ver +assettati assettare ver +assettato assettare ver +assetti assetto nom +assetto assetto nom +assevera asseverare ver +asseverante asseverare ver +asseverare asseverare ver +asseverata asseverare ver +asseverati asseverare ver +asseverato asseverare ver +asseverazione asseverazione nom +asseverazioni asseverazione nom +assi asse|asso nom +assiale assiale adj +assiali assiale adj +assibilazione assibilazione nom +assicura assicurare ver +assicurabile assicurabile adj +assicurabili assicurabile adj +assicuraci assicurare ver +assicuragli assicurare ver +assicurai assicurare ver +assicurami assicurare ver +assicurando assicurare ver +assicurandoci assicurare ver +assicurandogli assicurare ver +assicurandola assicurare ver +assicurandole assicurare ver +assicurandoli assicurare ver +assicurandolo assicurare ver +assicurandomi assicurare ver +assicurandone assicurare ver +assicurandosela assicurare ver +assicurandoselo assicurare ver +assicurandosene assicurare ver +assicurandosi assicurare ver +assicurandovi assicurare ver +assicurano assicurare ver +assicurante assicurare ver +assicurar assicurare ver +assicurarci assicurare ver +assicurare assicurare ver +assicurargli assicurare ver +assicurarglielo assicurare ver +assicurarla assicurare ver +assicurarle assicurare ver +assicurarli assicurare ver +assicurarlo assicurare ver +assicurarmi assicurare ver +assicurarne assicurare ver +assicurarono assicurare ver +assicurarsela assicurare ver +assicurarselo assicurare ver +assicurarsene assicurare ver +assicurarsi assicurare ver +assicurartelo assicurare ver +assicurarti assicurare ver +assicurarvi assicurare ver +assicurasi assicurare ver +assicurasse assicurare ver +assicurassero assicurare ver +assicurata assicurare ver +assicurate assicurare ver +assicuratevi assicurare ver +assicurati assicurare ver +assicurativa assicurativo adj +assicurative assicurativo adj +assicurativi assicurativo adj +assicurativo assicurativo adj +assicurato assicurare ver +assicuratore assicuratore adj +assicuratori assicuratore nom +assicuratrice assicuratore adj +assicuratrici assicuratore adj +assicurava assicurare ver +assicuravano assicurare ver +assicurazione assicurazione nom +assicurazioni assicurazione nom +assicureranno assicurare ver +assicurerebbe assicurare ver +assicurerebbero assicurare ver +assicureremo assicurare ver +assicurerà assicurare ver +assicuri assicurare ver +assicuriamo assicurare ver +assicuriamoci assicurare ver +assicurino assicurare ver +assicuro assicurare ver +assicurò assicurare ver +assideramenti assideramento nom +assideramento assideramento nom +assiderata assiderare ver +assiderate assiderare ver +assiderati assiderare ver +assiderato assiderare ver +assidersi assidere ver +assidi assidere ver +assidua assiduo adj +assidue assiduo adj +assidui assiduo adj +assiduità assiduità nom +assiduo assiduo adj +assieme assieme adv_sup +assiepa assiepare ver +assiepano assiepare ver +assieparono assiepare ver +assiepata assiepare ver +assiepate assiepare ver +assiepati assiepare ver +assiepato assiepare ver +assiepava assiepare ver +assiepavano assiepare ver +assile assile adj +assili assile adj +assilla assillare ver +assillando assillare ver +assillandoli assillare ver +assillandolo assillare ver +assillano assillare ver +assillante assillante adj +assillanti assillante adj +assillare assillare ver +assillarlo assillare ver +assillarono assillare ver +assillarti assillare ver +assillata assillare ver +assillati assillare ver +assillato assillare ver +assillava assillare ver +assillavano assillare ver +assillerà assillare ver +assilli assillo nom +assillo assillo nom +assillò assillare ver +assimila assimilare ver +assimilabile assimilabile adj +assimilabili assimilabile adj +assimilaci assimilare ver +assimilando assimilare ver +assimilandola assimilare ver +assimilandole assimilare ver +assimilandoli assimilare ver +assimilandolo assimilare ver +assimilandone assimilare ver +assimilandosi assimilare ver +assimilandovi assimilare ver +assimilano assimilare ver +assimilante assimilare ver +assimilanti assimilare ver +assimilare assimilare ver +assimilarla assimilare ver +assimilarle assimilare ver +assimilarli assimilare ver +assimilarlo assimilare ver +assimilarmi assimilare ver +assimilarne assimilare ver +assimilarono assimilare ver +assimilarsi assimilare ver +assimilassero assimilare ver +assimilata assimilare ver +assimilate assimilare ver +assimilati assimilare ver +assimilativa assimilativo adj +assimilativi assimilativo adj +assimilativo assimilativo adj +assimilato assimilare ver +assimilatore assimilatore adj +assimilatori assimilatore adj +assimilatrice assimilatore adj +assimilatrici assimilatore adj +assimilava assimilare ver +assimilavano assimilare ver +assimilazione assimilazione nom +assimilazioni assimilazione nom +assimilerebbe assimilare ver +assimilerei assimilare ver +assimileremo assimilare ver +assimili assimilare ver +assimiliamo assimilare ver +assimilino assimilare ver +assimilo assimilare ver +assimilò assimilare ver +assioli assiolo nom +assiolo assiolo nom +assiologia assiologia nom +assioma assioma nom +assiomatica assiomatico adj +assiomatiche assiomatico adj +assiomatici assiomatico adj +assiomatico assiomatico adj +assiomi assioma nom +assisa assidere ver +assise assisa|assise nom +assisero assidere ver +assisi assiso adj +assiso assidere ver +assist assist nom +assista assistere ver +assistano assistere ver +assiste assistere ver +assistemmo assistere ver +assistendo assistere ver +assistendola assistere ver +assistendoli assistere ver +assistendolo assistere ver +assistendone assistere ver +assistendovi assistere ver +assistentato assistentato nom +assistente assistente nom +assistenti assistente nom +assistenza assistenza nom +assistenze assistenza nom +assistenziale assistenziale adj +assistenziali assistenziale adj +assistenzialismo assistenzialismo nom +assistenziari assistenziario adj +assister assistere ver +assisteranno assistere ver +assisterci assistere ver +assistere assistere ver +assisterebbe assistere ver +assisteremmo assistere ver +assisteremo assistere ver +assisterla assistere ver +assisterle assistere ver +assisterli assistere ver +assisterlo assistere ver +assistermi assistere ver +assisterne assistere ver +assisterono assistere ver +assistersi assistere ver +assisterti assistere ver +assistervi assistere ver +assisterà assistere ver +assistesse assistere ver +assistessero assistere ver +assistete assistere ver +assisteva assistere ver +assistevamo assistere ver +assistevano assistere ver +assistevo assistere ver +assisti assistere ver +assistiamo assistere ver +assistici assistere ver +assistita assistere ver +assistite assistere ver +assistiti assistito nom +assistito assistere ver +assisto assistere ver +assistono assistere ver +assiti assito nom +assito assito nom +asso asso nom +assocerebbe associare ver +assocerebbero associare ver +assocerei associare ver +assoceremo associare ver +assoceresti associare ver +assocerà associare ver +associ associare ver +associa associare ver +associabile associabile adj +associabili associabile adj +associaci associare ver +associale associare ver +associalo associare ver +associamo associare ver +associando associare ver +associandogli associare ver +associandola associare ver +associandole associare ver +associandoli associare ver +associandolo associare ver +associandomi associare ver +associandone associare ver +associandosi associare ver +associandovi associare ver +associano associare ver +associante associare ver +associarci associare ver +associare associare ver +associargli associare ver +associarla associare ver +associarle associare ver +associarli associare ver +associarlo associare ver +associarmi associare ver +associarne associare ver +associarono associare ver +associarsi associare ver +associarti associare ver +associarvi associare ver +associasse associare ver +associassero associare ver +associata associare ver +associate associare ver +associati associare ver +associativa associativo adj +associative associativo adj +associativi associativo adj +associativo associativo adj +associato associare ver +associava associare ver +associavano associare ver +associavo associare ver +associazione associazione nom +associazioni associazione nom +associazionismo associazionismo nom +associno associare ver +associo associare ver +associò associare ver +assoda assodare ver +assodare assodare ver +assodata assodare ver +assodate assodare ver +assodati assodare ver +assodato assodare ver +assoggetta assoggettare ver +assoggettabile assoggettabile adj +assoggettamento assoggettamento nom +assoggettando assoggettare ver +assoggettandola assoggettare ver +assoggettandoli assoggettare ver +assoggettandolo assoggettare ver +assoggettandosi assoggettare ver +assoggettano assoggettare ver +assoggettare assoggettare ver +assoggettarla assoggettare ver +assoggettarle assoggettare ver +assoggettarli assoggettare ver +assoggettarlo assoggettare ver +assoggettarono assoggettare ver +assoggettarsi assoggettare ver +assoggettasse assoggettare ver +assoggettata assoggettare ver +assoggettate assoggettare ver +assoggettati assoggettare ver +assoggettato assoggettare ver +assoggettava assoggettare ver +assoggettavano assoggettare ver +assoggetteranno assoggettare ver +assoggetterà assoggettare ver +assoggetti assoggettare ver +assoggetto assoggettare ver +assoggettò assoggettare ver +assolata assolato adj +assolate assolato adj +assolati assolato adj +assolato assolato adj +assolda assoldare ver +assoldando assoldare ver +assoldandoli assoldare ver +assoldano assoldare ver +assoldare assoldare ver +assoldarli assoldare ver +assoldarlo assoldare ver +assoldarne assoldare ver +assoldarono assoldare ver +assoldasse assoldare ver +assoldata assoldare ver +assoldate assoldare ver +assoldati assoldare ver +assoldato assoldare ver +assoldava assoldare ver +assoldavano assoldare ver +assolderà assoldare ver +assoldo assoldare ver +assoldò assoldare ver +assolo assolo nom +assolse assolvere ver +assolsero assolvere ver +assolta assolvere ver +assolte assolvere ver +assolti assolvere ver +assolto assolvere ver +assoluta assoluto adj +assolutamente assolutamente adv_sup +assolute assoluto adj +assolutezza assolutezza nom +assoluti assoluto adj +assolutismi assolutismo nom +assolutismo assolutismo nom +assolutista assolutista nom +assolutiste assolutista nom +assolutisti assolutista nom +assolutistica assolutistico adj +assolutistiche assolutistico adj +assolutistici assolutistico adj +assolutistico assolutistico adj +assoluto assoluto adj +assolutori assolutorio adj +assolutoria assolutorio adj +assolutorie assolutorio adj +assolutorio assolutorio adj +assoluzione assoluzione nom +assoluzioni assoluzione nom +assolva assolvere ver +assolvano assolvere ver +assolve assolvere ver +assolvendo assolvere ver +assolvendola assolvere ver +assolvendolo assolvere ver +assolver assolvere ver +assolveranno assolvere ver +assolvere assolvere ver +assolverebbe assolvere ver +assolverebbero assolvere ver +assolverli assolvere ver +assolverlo assolvere ver +assolvermi assolvere ver +assolversi assolvere ver +assolverti assolvere ver +assolverà assolvere ver +assolvesse assolvere ver +assolvessero assolvere ver +assolveste assolvere ver +assolvete assolvere ver +assolveva assolvere ver +assolvevano assolvere ver +assolvi assolvere ver +assolviamo assolvere ver +assolvilo assolvere ver +assolvimento assolvimento nom +assolvo assolvere ver +assolvono assolvere ver +assomigli assomigliare ver +assomiglia assomigliare ver +assomigliami assomigliare ver +assomigliamo assomigliare ver +assomigliando assomigliare ver +assomigliandogli assomigliare ver +assomigliandosi assomigliare ver +assomigliano assomigliare ver +assomigliante assomigliare ver +assomiglianti assomigliare ver +assomigliare assomigliare ver +assomigliargli assomigliare ver +assomigliarle assomigliare ver +assomigliarli assomigliare ver +assomigliarono assomigliare ver +assomigliarsi assomigliare ver +assomigliarvi assomigliare ver +assomigliasse assomigliare ver +assomigliassero assomigliare ver +assomigliato assomigliare ver +assomigliava assomigliare ver +assomigliavano assomigliare ver +assomiglierebbe assomigliare ver +assomiglierebbero assomigliare ver +assomiglierà assomigliare ver +assomiglino assomigliare ver +assomiglio assomigliare ver +assomigliò assomigliare ver +assomma assommare ver +assommando assommare ver +assommano assommare ver +assommante assommare ver +assommanti assommare ver +assommare assommare ver +assommarono assommare ver +assommarsi assommare ver +assommassero assommare ver +assommata assommare ver +assommate assommare ver +assommati assommare ver +assommato assommare ver +assommava assommare ver +assommavano assommare ver +assommerà assommare ver +assommi assommare ver +assommo assommare ver +assommò assommare ver +assonanza assonanza nom +assonanze assonanza nom +assonnata assonnato adj +assonnati assonnato adj +assonnato assonnare ver +assonometria assonometria nom +assonometrie assonometria nom +assopimento assopimento nom +assopire assopire ver +assopirono assopire ver +assopirsi assopire ver +assopisce assopire ver +assopiscono assopire ver +assopita assopire ver +assopite assopire ver +assopiti assopire ver +assopito assopire ver +assopì assopire ver +assorba assorbire ver +assorbano assorbire ver +assorbe assorbire ver +assorbendo assorbire ver +assorbendogli assorbire ver +assorbendola assorbire ver +assorbendole assorbire ver +assorbendoli assorbire ver +assorbendolo assorbire ver +assorbendone assorbire ver +assorbente assorbente adj +assorbenti assorbente adj +assorbi assorbire ver +assorbibili assorbibile adj +assorbimenti assorbimento nom +assorbimento assorbimento nom +assorbiranno assorbire ver +assorbire assorbire ver +assorbirebbe assorbire ver +assorbirebbero assorbire ver +assorbirgli assorbire ver +assorbirla assorbire ver +assorbirle assorbire ver +assorbirli assorbire ver +assorbirlo assorbire ver +assorbirne assorbire ver +assorbirono assorbire ver +assorbirsi assorbire ver +assorbirà assorbire ver +assorbisse assorbire ver +assorbissero assorbire ver +assorbita assorbire ver +assorbite assorbire ver +assorbiti assorbire ver +assorbito assorbire ver +assorbiva assorbire ver +assorbivano assorbire ver +assorbo assorbire ver +assorbono assorbire ver +assorbì assorbire ver +assorda assordare ver +assordamento assordamento nom +assordando assordare ver +assordano assordare ver +assordante assordante adj +assordanti assordante adj +assordare assordare ver +assordata assordare ver +assordati assordare ver +assordato assordare ver +assordire assordire ver +assordita assordire ver +assorditi assordire ver +assorta assorto adj +assorte assorto adj +assorti assorto adj +assortimenti assortimento nom +assortimento assortimento nom +assortire assortire ver +assortiscono assortire ver +assortita assortire ver +assortite assortito adj +assortiti assortito adj +assortito assortire ver +assorto assorto adj +assottigli assottigliare ver +assottiglia assottigliare ver +assottigliamenti assottigliamento nom +assottigliamento assottigliamento nom +assottigliando assottigliare ver +assottigliandolo assottigliare ver +assottigliandosi assottigliare ver +assottigliano assottigliare ver +assottigliare assottigliare ver +assottigliarla assottigliare ver +assottigliarlo assottigliare ver +assottigliarne assottigliare ver +assottigliarono assottigliare ver +assottigliarsi assottigliare ver +assottigliassero assottigliare ver +assottigliata assottigliare ver +assottigliate assottigliare ver +assottigliatesi assottigliare ver +assottigliati assottigliare ver +assottigliato assottigliare ver +assottigliava assottigliare ver +assottigliavano assottigliare ver +assottigliò assottigliare ver +assuefacendosi assuefare ver +assuefacente assuefare ver +assuefare assuefare ver +assuefarsi assuefare ver +assuefatta assuefare ver +assuefatte assuefare ver +assuefatti assuefare ver +assuefatto assuefare ver +assuefazione assuefazione nom +assuma assumere ver +assumano assumere ver +assume assumere ver +assumendo assumere ver +assumendocene assumere ver +assumendoci assumere ver +assumendola assumere ver +assumendole assumere ver +assumendoli assumere ver +assumendolo assumere ver +assumendomene assumere ver +assumendomi assumere ver +assumendone assumere ver +assumendosene assumere ver +assumendosi assumere ver +assumendoti assumere ver +assumendovi assumere ver +assumente assumere ver +assumer assumere ver +assumerai assumere ver +assumeranno assumere ver +assumerci assumere ver +assumere assumere ver +assumerebbe assumere ver +assumerebbero assumere ver +assumerei assumere ver +assumeremo assumere ver +assumerla assumere ver +assumerle assumere ver +assumerli assumere ver +assumerlo assumere ver +assumermi assumere ver +assumerne assumere ver +assumersene assumere ver +assumersi assumere ver +assumertene assumere ver +assumerti assumere ver +assumervi assumere ver +assumerà assumere ver +assumerò assumere ver +assumesse assumere ver +assumessero assumere ver +assumessi assumere ver +assumessimo assumere ver +assumete assumere ver +assumeva assumere ver +assumevano assumere ver +assumevo assumere ver +assumi assumere ver +assumiamo assumere ver +assumiate assumere ver +assumiti assumere ver +assumo assumere ver +assumono assumere ver +assunse assumere ver +assunsero assumere ver +assunsi assumere ver +assunta assumere ver +assunte assumere ver +assunti assumere ver +assunto assumere ver +assuntore assuntore adj +assuntori assuntore nom +assuntrice assuntore adj +assunzione assunzione nom +assunzioni assunzione nom +assurda assurdo adj +assurdamente assurdamente adv +assurde assurdo adj +assurdi assurdo adj +assurdità assurdità nom +assurdo assurdo adj +assurga assurgere ver +assurgano assurgere ver +assurge assurgere ver +assurgendo assurgere ver +assurgente assurgere ver +assurgenti assurgere ver +assurger assurgere ver +assurgeranno assurgere ver +assurgere assurgere ver +assurgerà assurgere ver +assurgesse assurgere ver +assurgeva assurgere ver +assurgevano assurgere ver +assurgono assurgere ver +assurse assurgere ver +assursero assurgere ver +assurta assurgere ver +assurte assurgere ver +assurti assurgere ver +assurto assurgere ver +asta asta nom +astaci astaco nom +astaco astaco nom +astante astante nom +astanteria astanteria nom +astanti astante nom +astata astato adj +astate astato adj +astati astato nom +astato astato adj +aste asta nom +astemi astemio adj +astemia astemio adj +astemie astemio adj +astemio astemio adj +astenendo astenere ver +astenendomi astenere ver +astenendosi astenere ver +astenendoti astenere ver +astenendovi astenere ver +astenercene astenere ver +astenerci astenere ver +astenere astenere ver +astenermene astenere ver +astenermi astenere ver +astenersene astenere ver +astenersi astenere ver +astenerti astenere ver +astenervi astenere ver +astenesse astenere ver +astenessero astenere ver +astenessi astenere ver +astenete astenere ver +astenetevi astenere ver +asteneva astenere ver +astenevano astenere ver +astenga astenere ver +astengano astenere ver +astengo astenere ver +astengono astenere ver +astenia astenia nom +asteniamo astenere ver +asteniamoci astenere ver +astenie astenia nom +astenne astenere ver +astennero astenere ver +astenni astenere ver +astensione astensione nom +astensioni astensione nom +astensionismo astensionismo nom +astensionista astensionista nom +astensioniste astensionista nom +astensionisti astensionista nom +astenuta astenere ver +astenute astenere ver +astenuti astenere ver +astenuto astenere ver +aster aster nom +astergere astergere ver +asterischi asterisco nom +asterisco asterisco nom +asteroide asteroide nom +asteroidi asteroide nom +asterranno astenere ver +asterrebbero astenere ver +asterrei astenere ver +asterremo astenere ver +asterrà astenere ver +asterrò astenere ver +asti astio nom +asticciola asticciola nom +asticciole asticciola nom +astice astice nom +asticella asticella nom +asticelle asticella nom +astici astice nom +astiene astenere ver +astieni astenere ver +astieniti astenere ver +astigmatica astigmatico adj +astigmatici astigmatico adj +astigmatico astigmatico adj +astigmatismi astigmatismo nom +astigmatismo astigmatismo nom +astile astilo adj +astili astilo adj +astilo astilo adj +astinente astinente adj +astinenti astinente adj +astinenza astinenza nom +astinenze astinenza nom +astio astio nom +astiosa astioso adj +astiose astioso adj +astiosi astioso adj +astiosità astiosità nom +astioso astioso adj +astista astista nom +astisti astista nom +astore astore nom +astori astore nom +astrae astrarre ver +astraendo astrarre ver +astraendola astrarre ver +astraendole astrarre ver +astraendoli astrarre ver +astraendomi astrarre ver +astraendosi astrarre ver +astraente astrarre ver +astragali astragalo nom +astragalo astragalo nom +astraggono astrarre ver +astraiamoci astrarre ver +astrakan astrakan nom +astrale astrale adj +astrali astrale adj +astrarci astrarre ver +astrarmi astrarre ver +astrarne astrarre ver +astrarre astrarre ver +astrarsi astrarre ver +astratta astratto adj +astrattamente astrattamente adv +astratte astratto adj +astrattezza astrattezza nom +astrattezze astrattezza nom +astratti astratto adj +astrattismi astrattismo nom +astrattismo astrattismo nom +astrattista astrattista nom +astrattiste astrattista nom +astrattisti astrattista nom +astratto astratto adj +astrazione astrazione nom +astrazioni astrazione nom +astrette astringere ver +astretto astringere ver +astri astro nom +astringente astringente adj +astringenti astringente adj +astringere astringere ver +astro astro nom +astrodinamica astrodinamica nom +astrofisica astrofisica nom +astrofisiche astrofisica nom +astrografi astrografo nom +astrografo astrografo nom +astrolabi astrolabio nom +astrolabio astrolabio nom +astrologa astrologo nom +astrologar astrologare ver +astrologhi astrologo nom +astrologi astrologo nom +astrologia astrologia nom +astrologica astrologico adj +astrologiche astrologico adj +astrologici astrologico adj +astrologico astrologico adj +astrologie astrologia nom +astrologo astrologo nom +astronauta astronauta nom +astronaute astronauta nom +astronauti astronauta nom +astronautica astronautico adj +astronautiche astronautico adj +astronautici astronautico adj +astronautico astronautico adj +astronave astronave nom +astronavi astronave nom +astronomi astronomo nom +astronomia astronomia nom +astronomica astronomico adj +astronomiche astronomico adj +astronomici astronomico adj +astronomico astronomico adj +astronomie astronomia nom +astronomo astronomo nom +astrusa astruso adj +astruse astruso adj +astruserie astruseria nom +astrusi astruso adj +astrusità astrusità nom +astruso astruso adj +astucci astuccio nom +astuccio astuccio nom +astuta astuto adj +astute astuto adj +astuti astuto adj +astuto astuto adj +astuzia astuzia nom +astuzie astuzia nom +atarassia atarassia nom +atassia atassia nom +atassie atassia nom +atavica atavico adj +ataviche atavico adj +atavici atavico adj +atavico atavico adj +atavismi atavismo nom +atavismo atavismo nom +atea ateo adj +atee ateo adj +atei ateo adj +ateismi ateismo nom +ateismo ateismo nom +ateista ateista nom +ateiste ateista nom +ateisti ateista nom +ateistica ateistico adj +ateistiche ateistico adj +ateistico ateistico adj +atelier atelier nom +atellana atellana nom +atellane atellana nom +atenei ateneo nom +ateneo ateneo nom +ateniese ateniese adj +ateniesi ateniese nom +ateo ateo adj +atermani atermano adj +atesina atesino adj +atesine atesino adj +atesini atesino adj +atesino atesino adj +atetesi atetesi nom +atipica atipico adj +atipiche atipico adj +atipici atipico adj +atipicità atipicità nom +atipico atipico adj +atlante atlante nom +atlanti atlante nom +atlantica atlantico adj +atlantiche atlantico adj +atlantici atlantico adj +atlantico atlantico adj +atlantismo atlantismo nom +atleta atleta nom +atlete atleta nom +atleti atleta nom +atletica atletica nom +atletiche atletico adj +atletici atletico adj +atletico atletico adj +atletismo atletismo nom +atmosfera atmosfera nom +atmosfere atmosfera nom +atmosferica atmosferico adj +atmosferiche atmosferico adj +atmosferici atmosferico adj +atmosferico atmosferico adj +atolli atollo nom +atollo atollo nom +atomi atomo nom +atomica atomico adj +atomiche atomico adj +atomici atomico adj +atomicità atomicità nom +atomico atomico adj +atomismi atomismo nom +atomismo atomismo nom +atomista atomista nom +atomiste atomista nom +atomisti atomista nom +atomistica atomistico adj +atomistiche atomistico adj +atomistici atomistico adj +atomistico atomistico adj +atomizza atomizzare ver +atomizzare atomizzare ver +atomizzarlo atomizzare ver +atomizzata atomizzare ver +atomizzate atomizzare ver +atomizzato atomizzare ver +atomizzatore atomizzatore nom +atomizzatori atomizzatore nom +atomo atomo nom +atona atono adj +atonale atonale adj +atonali atonale adj +atone atono adj +atoni atono adj +atonia atonia nom +atono atono adj +atossica atossico adj +atossiche atossico adj +atossici atossico adj +atossico atossico adj +atout atout nom +atrazina atrazina nom +atri atrio|atro nom +atrio atrio nom +atro atro nom +atroce atroce adj +atroci atroce adj +atrocità atrocità nom +atrofia atrofia nom +atrofica atrofico adj +atrofiche atrofico adj +atrofici atrofico adj +atrofico atrofico adj +atrofie atrofia nom +atrofizza atrofizzare ver +atrofizzano atrofizzare ver +atrofizzante atrofizzare ver +atrofizzare atrofizzare ver +atrofizzarono atrofizzare ver +atrofizzarsi atrofizzare ver +atrofizzata atrofizzare ver +atrofizzate atrofizzare ver +atrofizzati atrofizzare ver +atrofizzato atrofizzare ver +atrofizzò atrofizzare ver +atropina atropina nom +atropine atropina nom +atropo atropo nom +atta atto adj +attacca attaccare ver +attaccabottoni attaccabottoni nom +attaccabrighe attaccabrighe nom +attaccai attaccare ver +attaccamenti attaccamento nom +attaccamento attaccamento nom +attaccami attaccare ver +attaccammo attaccare ver +attaccando attaccare ver +attaccandoci attaccare ver +attaccandogli attaccare ver +attaccandola attaccare ver +attaccandole attaccare ver +attaccandoli attaccare ver +attaccandolo attaccare ver +attaccandomi attaccare ver +attaccandone attaccare ver +attaccandosi attaccare ver +attaccandoti attaccare ver +attaccandovi attaccare ver +attaccano attaccare ver +attaccante attaccare ver +attaccanti attaccante adj +attaccapanni attaccapanni nom +attaccar attaccare ver +attaccarci attaccare ver +attaccare attaccare ver +attaccargli attaccare ver +attaccarla attaccare ver +attaccarle attaccare ver +attaccarli attaccare ver +attaccarlo attaccare ver +attaccarmi attaccare ver +attaccarne attaccare ver +attaccarono attaccare ver +attaccarsi attaccare ver +attaccarti attaccare ver +attaccarvi attaccare ver +attaccasse attaccare ver +attaccassero attaccare ver +attaccassi attaccare ver +attaccata attaccare ver +attaccate attaccare ver +attaccatelo attaccare ver +attaccatevi attaccare ver +attaccati attaccare ver +attaccaticcia attaccaticcio adj +attaccaticcio attaccaticcio adj +attaccato attaccare ver +attaccatura attaccatura nom +attaccature attaccatura nom +attaccava attaccare ver +attaccavamo attaccare ver +attaccavano attaccare ver +attaccavi attaccare ver +attaccavo attaccare ver +attaccherai attaccare ver +attaccheranno attaccare ver +attaccherebbe attaccare ver +attaccherebbero attaccare ver +attaccherei attaccare ver +attaccheremo attaccare ver +attaccherete attaccare ver +attaccherà attaccare ver +attacchi attacco nom +attacchiamo attaccare ver +attacchiamoci attaccare ver +attacchiate attaccare ver +attacchini attacchino nom +attacchino attaccare ver +attacco attacco nom +attaccò attaccare ver +attache attache nom +attagli attagliarsi ver +attaglia attagliarsi ver +attagliano attagliarsi ver +attagliarsi attagliarsi ver +attagliata attagliarsi ver +attagliava attagliarsi ver +attagliavano attagliarsi ver +attaglierebbe attagliarsi ver +attanaglia attanagliare ver +attanagliando attanagliare ver +attanagliano attanagliare ver +attanagliare attanagliare ver +attanagliarono attanagliare ver +attanagliata attanagliare ver +attanagliati attanagliare ver +attanagliato attanagliare ver +attanagliava attanagliare ver +attanagliavano attanagliare ver +attanaglierà attanagliare ver +attanaglio attanagliare ver +attanagliò attanagliare ver +attarda attardare ver +attardandosi attardare ver +attardano attardare ver +attardarci attardare ver +attardare attardare ver +attardarono attardare ver +attardarsi attardare ver +attardata attardare ver +attardate attardare ver +attardati attardare ver +attardato attardare ver +attardava attardare ver +attardavano attardare ver +attardi attardare ver +attardo attardare ver +attardò attardare ver +atte atto adj +attecchimento attecchimento nom +attecchire attecchire ver +attecchirono attecchire ver +attecchirvi attecchire ver +attecchirà attecchire ver +attecchisca attecchire ver +attecchisce attecchire ver +attecchiscono attecchire ver +attecchisse attecchire ver +attecchita attecchire ver +attecchite attecchire ver +attecchiti attecchire ver +attecchito attecchire ver +attecchiva attecchire ver +attecchivano attecchire ver +attecchì attecchire ver +atteggi atteggiare ver +atteggia atteggiare ver +atteggiamenti atteggiamento nom +atteggiamento atteggiamento nom +atteggiando atteggiare ver +atteggiandosi atteggiare ver +atteggiano atteggiare ver +atteggiarci atteggiare ver +atteggiare atteggiare ver +atteggiarlo atteggiare ver +atteggiarono atteggiare ver +atteggiarsi atteggiare ver +atteggiarti atteggiare ver +atteggiasse atteggiare ver +atteggiata atteggiare ver +atteggiate atteggiare ver +atteggiati atteggiare ver +atteggiato atteggiare ver +atteggiava atteggiare ver +atteggiavano atteggiare ver +atteggio atteggiare ver +atteggiò atteggiare ver +attempata attempato adj +attempate attempato adj +attempati attempato adj +attempato attempato adj +attenda attendere ver +attendamenti attendamento nom +attendamento attendamento nom +attendano attendere ver +attendata attendarsi ver +attendate attendarsi ver +attendati attendarsi ver +attendato attendarsi ver +attende attendere ver +attendendo attendere ver +attendendola attendere ver +attendendoli attendere ver +attendendolo attendere ver +attendendone attendere ver +attendendosi attendere ver +attendente attendente nom +attendenti attendente nom +attender attendere ver +attenderanno attendarsi|attendere ver +attenderci attendere ver +attendere attendere ver +attenderebbe attendarsi|attendere ver +attenderebbero attendarsi|attendere ver +attenderei attendarsi|attendere ver +attenderemmo attendarsi|attendere ver +attenderemo attendarsi|attendere ver +attenderla attendere ver +attenderle attendere ver +attenderli attendere ver +attenderlo attendere ver +attendermi attendere ver +attenderne attendere ver +attendersi attendere ver +attenderti attendere ver +attendervi attendere ver +attenderà attendarsi|attendere ver +attenderò attendarsi|attendere ver +attendesse attendere ver +attendessero attendere ver +attendete attendere ver +attendetelo attendere ver +attendetevi attendere ver +attendeva attendere ver +attendevamo attendere ver +attendevano attendere ver +attendevo attendere ver +attendi attendarsi|attendere ver +attendiamo attendarsi|attendere ver +attendiamoci attendarsi|attendere ver +attendibile attendibile adj +attendibili attendibile adj +attendibilità attendibilità nom +attendila attendere ver +attendimi attendere ver +attendismo attendismo nom +attendo attendarsi|attendere ver +attendono attendere ver +attendò attendarsi ver +attenendo attenere ver +attenendoci attenere ver +attenendomi attenere ver +attenendosi attenere ver +attenendoti attenere ver +attenente attenere ver +attenenti attenere ver +attenerci attenere ver +attenere attenere ver +attenermi attenere ver +attenersi attenere ver +attenerti attenere ver +attenervi attenere ver +attenesse attenere ver +attenessero attenere ver +atteneva attenere ver +attenevano attenere ver +attenga attenere ver +attengano attenere ver +attengono attenere ver +attenne attenere ver +attennero attenere ver +attenta attento adj +attentamente attentamente adv +attentando attentare ver +attentano attentare ver +attentare attentare ver +attentarono attentare ver +attentasse attentare ver +attentata attentare ver +attentati attentato nom +attentato attentato nom +attentatore attentatore nom +attentatori attentatore nom +attentatrice attentatore nom +attentava attentare ver +attentavano attentare ver +attente attento adj +attenterebbe attentare ver +attenterà attentare ver +attenti attento adj +attento attento adj +attentò attentare ver +attenua attenuare ver +attenuamento attenuamento nom +attenuando attenuare ver +attenuandole attenuare ver +attenuandoli attenuare ver +attenuandone attenuare ver +attenuandosi attenuare ver +attenuano attenuare ver +attenuante attenuante nom +attenuanti attenuante nom +attenuare attenuare ver +attenuargli attenuare ver +attenuarla attenuare ver +attenuarle attenuare ver +attenuarli attenuare ver +attenuarlo attenuare ver +attenuarne attenuare ver +attenuarono attenuare ver +attenuarsi attenuare ver +attenuasse attenuare ver +attenuata attenuare ver +attenuate attenuare ver +attenuati attenuare ver +attenuato attenuare ver +attenuava attenuare ver +attenuavano attenuare ver +attenuazione attenuazione nom +attenuazioni attenuazione nom +attenueranno attenuare ver +attenuerebbe attenuare ver +attenuerà attenuare ver +attenui attenuare ver +attenuino attenuare ver +attenuo attenuare ver +attenuta attenere ver +attenute attenere ver +attenuti attenere ver +attenuto attenere ver +attenuò attenuare ver +attenzione attenzione nom +attenzioni attenzione nom +atterra atterrare ver +atterraggi atterraggio nom +atterraggio atterraggio nom +atterrai atterrare ver +atterramenti atterramento nom +atterramento atterramento nom +atterrando atterrare ver +atterrandogli atterrare ver +atterrandola atterrare ver +atterrandoli atterrare ver +atterrandolo atterrare ver +atterranno attenere ver +atterrano atterrare ver +atterrante atterrare ver +atterrarci atterrare ver +atterrare atterrare ver +atterrarle atterrare ver +atterrarli atterrare ver +atterrarlo atterrare ver +atterrarono atterrare ver +atterrarvi atterrare ver +atterrasse atterrare ver +atterrassero atterrare ver +atterrata atterrare ver +atterrate atterrare ver +atterrati atterrare ver +atterrato atterrare ver +atterrava atterrare ver +atterravano atterrare ver +atterrebbe attenere ver +atterrendo atterrire ver +atterreranno atterrare ver +atterrerebbe atterrare ver +atterrerebbero atterrare ver +atterrerà atterrare ver +atterri atterrare ver +atterriamo atterrare|atterrire ver +atterrino atterrare ver +atterrir atterrire ver +atterrire atterrire ver +atterrirlo atterrire ver +atterrirono atterrire ver +atterrisce atterrire ver +atterriscono atterrire ver +atterrita atterrire ver +atterrite atterrire ver +atterriti atterrire ver +atterrito atterrire ver +atterriva atterrire ver +atterrivano atterrire ver +atterro atterrare ver +atterrà attenere ver +atterrì atterrire ver +atterrò atterrare ver +attesa attesa nom +attese attesa nom +attesero attendere ver +attesi atteso adj +atteso attendere ver +attesta attestare ver +attestando attestare ver +attestandole attestare ver +attestandoli attestare ver +attestandone attestare ver +attestandosi attestare ver +attestano attestare ver +attestante attestare ver +attestanti attestare ver +attestarci attestare ver +attestare attestare ver +attestargli attestare ver +attestarla attestare ver +attestarli attestare ver +attestarlo attestare ver +attestarmi attestare ver +attestarne attestare ver +attestarono attestare ver +attestarsi attestare ver +attestarvi attestare ver +attestasse attestare ver +attestassero attestare ver +attestata attestare ver +attestate attestare ver +attestatesi attestare ver +attestati attestare ver +attestato attestare ver +attestava attestare ver +attestavano attestare ver +attestazione attestazione nom +attestazioni attestazione nom +attesteranno attestare ver +attesterebbe attestare ver +attesterebbero attestare ver +attesterà attestare ver +attesti attestare ver +attestiamo attestare ver +attestino attestare ver +attesto attestare ver +attestò attestare ver +atti atto nom +atticciati atticciato adj +atticciato atticciato adj +attici attico nom +attico attico nom +attiene attenere ver +attigua attiguo adj +attigue attiguo adj +attigui attiguo adj +attiguità attiguità nom +attiguo attiguo adj +attillata attillato adj +attillate attillato adj +attillati attillato adj +attillato attillato adj +attimi attimo nom +attimo attimo nom +attinente attinente adj +attinenti attinente adj +attinenza attinenza nom +attinenze attinenza nom +attinga attingere ver +attingano attingere ver +attinge attingere ver +attingendo attingere ver +attingendola attingere ver +attingendole attingere ver +attingendoli attingere ver +attingendolo attingere ver +attingenti attingere ver +attinger attingere ver +attingeranno attingere ver +attingere attingere ver +attingerebbe attingere ver +attingerle attingere ver +attingerli attingere ver +attingerne attingere ver +attingersi attingere ver +attingervi attingere ver +attingerà attingere ver +attingerò attingere ver +attingesse attingere ver +attingessero attingere ver +attingeva attingere ver +attingevano attingere ver +attingevo attingere ver +attingi attingere ver +attingiamo attingere ver +attingo attingere ver +attingono attingere ver +attini attinio nom +attinia attinia nom +attinica attinico adj +attiniche attinico adj +attinico attinico adj +attinide attinide nom +attinidi attinide nom +attinie attinia nom +attinio attinio nom +attinse attingere ver +attinsero attingere ver +attinta attingere ver +attinte attingere ver +attinti attingere ver +attinto attingere ver +attira attirare ver +attiralo attirare ver +attirando attirare ver +attirandogli attirare ver +attirandola attirare ver +attirandole attirare ver +attirandoli attirare ver +attirandolo attirare ver +attirandomi attirare ver +attirandone attirare ver +attirandosi attirare ver +attirandovi attirare ver +attirano attirare ver +attirante attirare ver +attiranti attirare ver +attirar attirare ver +attirarci attirare ver +attirare attirare ver +attirargli attirare ver +attirarla attirare ver +attirarle attirare ver +attirarli attirare ver +attirarlo attirare ver +attirarmi attirare ver +attirarne attirare ver +attirarono attirare ver +attirarsi attirare ver +attirarvi attirare ver +attirasse attirare ver +attirassero attirare ver +attirasti attirare ver +attirata attirare ver +attirate attirare ver +attirati attirare ver +attirato attirare ver +attirava attirare ver +attiravano attirare ver +attirerai attirare ver +attireranno attirare ver +attirerebbe attirare ver +attirerebbero attirare ver +attirerei attirare ver +attireremo attirare ver +attirerà attirare ver +attirerò attirare ver +attiri attirare ver +attiriamo attirare ver +attirino attirare ver +attiro attirare ver +attirò attirare ver +attitudinale attitudinale adj +attitudinali attitudinale adj +attitudine attitudine nom +attitudini attitudine nom +attiva attivo adj +attivalo attivare ver +attivamente attivamente adv +attivando attivare ver +attivandola attivare ver +attivandole attivare ver +attivandoli attivare ver +attivandolo attivare ver +attivandone attivare ver +attivandosi attivare ver +attivano attivare ver +attivante attivare ver +attivanti attivare ver +attivarci attivare ver +attivare attivare ver +attivarla attivare ver +attivarle attivare ver +attivarli attivare ver +attivarlo attivare ver +attivarmi attivare ver +attivarne attivare ver +attivarono attivare ver +attivarsi attivare ver +attivarti attivare ver +attivasi attivare ver +attivasse attivare ver +attivassero attivare ver +attivata attivare ver +attivate attivare ver +attivatesi attivare ver +attivatevi attivare ver +attivati attivare ver +attivato attivare ver +attivatori attivatore nom +attivava attivare ver +attivavano attivare ver +attivazione attivazione nom +attivazioni attivazione nom +attive attivo adj +attiveranno attivare ver +attiverebbe attivare ver +attiverebbero attivare ver +attiveremo attivare ver +attiverà attivare ver +attiverò attivare ver +attivi attivo adj +attiviamo attivare ver +attiviamoci attivare ver +attivino attivare ver +attivismi attivismo nom +attivismo attivismo nom +attivista attivista nom +attiviste attivista nom +attivisti attivista nom +attivistica attivistico adj +attivistiche attivistico adj +attivistici attivistico adj +attivistico attivistico adj +attività attività nom +attivitá attivitá nom +attivo attivo adj +attivò attivare ver +attizza attizzare ver +attizzano attizzare ver +attizzare attizzare ver +attizzarli attizzare ver +attizzata attizzare ver +attizzate attizzare ver +attizzato attizzare ver +attizzatoi attizzatoio nom +attizzatoio attizzatoio nom +attizzi attizzare ver +attizzò attizzare ver +atto atto nom +attonita attonito adj +attonite attonito adj +attoniti attonito adj +attonito attonito adj +attorcigli attorcigliare ver +attorciglia attorcigliare ver +attorcigliando attorcigliare ver +attorcigliandolo attorcigliare ver +attorcigliandosi attorcigliare ver +attorcigliano attorcigliare ver +attorcigliare attorcigliare ver +attorcigliarsi attorcigliare ver +attorcigliata attorcigliare ver +attorcigliate attorcigliare ver +attorcigliati attorcigliare ver +attorcigliato attorcigliare ver +attorciglino attorcigliare ver +attore attore nom +attori attore nom +attorni attorniare ver +attornia attorniare ver +attorniandosi attorniare ver +attorniano attorniare ver +attorniante attorniare ver +attornianti attorniare ver +attorniare attorniare ver +attorniarlo attorniare ver +attorniarsi attorniare ver +attorniata attorniare ver +attorniate attorniare ver +attorniati attorniare ver +attorniato attorniare ver +attorniava attorniare ver +attorniavano attorniare ver +attorniò attorniare ver +attorno attorno adv_sup +attorta attorcere ver +attorto attorcere ver +attracca attraccare ver +attraccando attraccare ver +attraccano attraccare ver +attraccare attraccare ver +attraccarono attraccare ver +attraccarvi attraccare ver +attraccasse attraccare ver +attraccassero attraccare ver +attraccata attraccare ver +attraccate attraccare ver +attraccati attraccare ver +attraccato attraccare ver +attraccava attraccare ver +attraccavano attraccare ver +attraccherà attraccare ver +attracchi attracco nom +attracchino attraccare ver +attracco attracco nom +attraccò attraccare ver +attrae attrarre ver +attraendo attrarre ver +attraendole attrarre ver +attraendoli attrarre ver +attraendosi attrarre ver +attraente attraente adj +attraenti attraente adj +attraesse attrarre ver +attraeva attrarre ver +attraevano attrarre ver +attragga attrarre ver +attraggano attrarre ver +attraggono attrarre ver +attrai attrarre ver +attrar attrarre ver +attrarla attrarre ver +attrarle attrarre ver +attrarli attrarre ver +attrarlo attrarre ver +attrarne attrarre ver +attrarre attrarre ver +attrarrebbe attrarre ver +attrarrà attrarre ver +attrarsi attrarre ver +attrasse attrarre ver +attrassero attrarre ver +attrassi attrarre ver +attratta attrarre ver +attratte attrarre ver +attratti attrarre ver +attrattiva attrattiva nom +attrattive attrattivo adj +attrattivi attrattivo adj +attrattività attrattività nom +attrattivo attrattivo adj +attratto attrarre ver +attraversa attraversare ver +attraversai attraversare ver +attraversamenti attraversamento nom +attraversamento attraversamento nom +attraversami attraversare ver +attraversammo attraversare ver +attraversando attraversare ver +attraversandola attraversare ver +attraversandole attraversare ver +attraversandoli attraversare ver +attraversandolo attraversare ver +attraversandone attraversare ver +attraversano attraversare ver +attraversante attraversare ver +attraversanti attraversare ver +attraversare attraversare ver +attraversargli attraversare ver +attraversarla attraversare ver +attraversarle attraversare ver +attraversarli attraversare ver +attraversarlo attraversare ver +attraversarne attraversare ver +attraversarono attraversare ver +attraversasse attraversare ver +attraversassero attraversare ver +attraversata attraversare ver +attraversate attraversare ver +attraversati attraversare ver +attraversato attraversare ver +attraversava attraversare ver +attraversavano attraversare ver +attraversavo attraversare ver +attraverserai attraversare ver +attraverseranno attraversare ver +attraverserebbe attraversare ver +attraverserebbero attraversare ver +attraverseremo attraversare ver +attraverserà attraversare ver +attraversi attraversare ver +attraversiamo attraversare ver +attraversino attraversare ver +attraverso attraverso pre +attraversò attraversare ver +attrazione attrazione nom +attrazioni attrazione nom +attrezza attrezzare ver +attrezzamento attrezzamento nom +attrezzando attrezzare ver +attrezzandola attrezzare ver +attrezzandolo attrezzare ver +attrezzandosi attrezzare ver +attrezzano attrezzare ver +attrezzarci attrezzare ver +attrezzare attrezzare ver +attrezzarla attrezzare ver +attrezzarlo attrezzare ver +attrezzarmi attrezzare ver +attrezzarono attrezzare ver +attrezzarsi attrezzare ver +attrezzata attrezzare ver +attrezzate attrezzare ver +attrezzati attrezzare ver +attrezzato attrezzare ver +attrezzatura attrezzatura nom +attrezzature attrezzatura nom +attrezzeria attrezzeria nom +attrezzerie attrezzeria nom +attrezzi attrezzo nom +attrezziamo attrezzare ver +attrezziamoci attrezzare ver +attrezzista attrezzista nom +attrezzisti attrezzista nom +attrezzistica attrezzistica nom +attrezzo attrezzo nom +attrezzò attrezzare ver +attribuendo attribuire ver +attribuendoci attribuire ver +attribuendogli attribuire ver +attribuendola attribuire ver +attribuendole attribuire ver +attribuendoli attribuire ver +attribuendolo attribuire ver +attribuendomi attribuire ver +attribuendone attribuire ver +attribuendosene attribuire ver +attribuendosi attribuire ver +attribuendovi attribuire ver +attribuenti attribuire ver +attribuiamo attribuire ver +attribuibile attribuibile adj +attribuibili attribuibile adj +attribuiranno attribuire ver +attribuirci attribuire ver +attribuire attribuire ver +attribuirebbe attribuire ver +attribuirebbero attribuire ver +attribuirei attribuire ver +attribuiremo attribuire ver +attribuirgli attribuire ver +attribuirglielo attribuire ver +attribuirgliene attribuire ver +attribuirla attribuire ver +attribuirle attribuire ver +attribuirli attribuire ver +attribuirlo attribuire ver +attribuirmene attribuire ver +attribuirmi attribuire ver +attribuirne attribuire ver +attribuirono attribuire ver +attribuirsene attribuire ver +attribuirsi attribuire ver +attribuirti attribuire ver +attribuirvi attribuire ver +attribuirà attribuire ver +attribuirò attribuire ver +attribuisca attribuire ver +attribuiscano attribuire ver +attribuisce attribuire ver +attribuisci attribuire ver +attribuisco attribuire ver +attribuiscono attribuire ver +attribuisse attribuire ver +attribuissero attribuire ver +attribuissi attribuire ver +attribuissimo attribuire ver +attribuita attribuire ver +attribuite attribuire ver +attribuitegli attribuire ver +attribuitele attribuire ver +attribuiteli attribuire ver +attribuitemi attribuire ver +attribuiti attribuire ver +attribuitigli attribuire ver +attribuito attribuire ver +attribuiva attribuire ver +attribuivano attribuire ver +attribuivo attribuire ver +attributi attributo nom +attributiva attributivo adj +attributive attributivo adj +attributivi attributivo adj +attributivo attributivo adj +attributo attributo nom +attribuzione attribuzione nom +attribuzioni attribuzione nom +attribuì attribuire ver +attrice attore nom +attrici attore nom +attrista attristare ver +attristare attristare ver +attriti attrito nom +attrito attrito nom +attrizione attrizione nom +attua attuare ver +attuabile attuabile adj +attuabili attuabile adj +attuabilità attuabilità nom +attuaci attuare ver +attuale attuale adj +attuali attuale adj +attualismo attualismo nom +attualità attualità nom +attualizza attualizzare ver +attualizzando attualizzare ver +attualizzandola attualizzare ver +attualizzandoli attualizzare ver +attualizzandolo attualizzare ver +attualizzano attualizzare ver +attualizzante attualizzare ver +attualizzare attualizzare ver +attualizzarla attualizzare ver +attualizzarlo attualizzare ver +attualizzarsi attualizzare ver +attualizzasse attualizzare ver +attualizzata attualizzare ver +attualizzate attualizzare ver +attualizzati attualizzare ver +attualizzato attualizzare ver +attualizzavano attualizzare ver +attualizzi attualizzare ver +attualizziamo attualizzare ver +attualizzò attualizzare ver +attualmente attualmente adv +attuando attuare ver +attuandone attuare ver +attuandosi attuare ver +attuano attuare ver +attuare attuare ver +attuariale attuariale adj +attuariali attuariale adj +attuarla attuare ver +attuarle attuare ver +attuarli attuare ver +attuarlo attuare ver +attuarne attuare ver +attuarono attuare ver +attuarsi attuare ver +attuasse attuare ver +attuassero attuare ver +attuata attuare ver +attuate attuare ver +attuati attuare ver +attuative attuative adj +attuato attuare ver +attuava attuare ver +attuavano attuare ver +attuazione attuazione nom +attuazioni attuazione nom +attueranno attuare ver +attuerebbe attuare ver +attuerebbero attuare ver +attuerei attuare ver +attuerà attuare ver +attuerò attuare ver +attui attuare ver +attuiamo attuare ver +attuino attuare ver +attuo attuare ver +attutendo attutire ver +attutire attutire ver +attutirne attutire ver +attutirono attutire ver +attutisce attutire ver +attutiscono attutire ver +attutita attutire ver +attutite attutire ver +attutiti attutire ver +attutito attutire ver +attutiva attutire ver +attutì attutire ver +attuò attuare ver +aucuba aucuba nom +audace audace adj +audaci audace adj +audacia audacia nom +audacie audacia nom +audience audience nom +audio audio nom +audiocassette audiocassette adj +audiofrequenza audiofrequenza nom +audiometri audiometro nom +audiovisiva audiovisivo adj +audiovisive audiovisivo adj +audiovisivi audiovisivo adj +audiovisivo audiovisivo adj +auditori auditorio nom +auditorio auditorio nom +audizione audizione nom +audizioni audizione nom +auge auge nom +augelli augello nom +augello augello nom +augite augite nom +augura augurare ver +auguragli augurare ver +augurai augurare ver +augurale augurale adj +augurali augurale adj +augurando augurare ver +augurandoci augurare ver +augurandogli augurare ver +augurandole augurare ver +augurandomi augurare ver +augurandosi augurare ver +augurandoti augurare ver +augurandovi augurare ver +augurano augurare ver +augurante augurare ver +auguranti augurare ver +augurarci augurare ver +augurare augurare ver +augurargli augurare ver +augurarglielo augurare ver +augurarle augurare ver +augurarmi augurare ver +augurarne augurare ver +augurarono augurare ver +augurarsi augurare ver +augurarti augurare ver +augurarvi augurare ver +augurasse augurare ver +augurata augurare ver +augurategli augurare ver +auguratemi augurare ver +augurati augurare ver +augurato augurare ver +augurava augurare ver +auguravano augurare ver +auguravi augurare ver +auguravo augurare ver +augure augure nom +augurerebbe augurare ver +augurerei augurare ver +auguri augure|augurio nom +auguriamo augurare ver +auguriamoci augurare ver +augurino augurare ver +augurio augurio nom +auguro augurare ver +augurò augurare ver +augusta augusto adj +auguste augusto adj +augusti augusto adj +augusto augusto adj +aula aula nom +aule aula nom +aulente aulire ver +aulenti aulire ver +aulica aulico adj +auliche aulico adj +aulici aulico adj +aulico aulico adj +aulivo aulire ver +aulos aulos nom +aulì aulire ver +aumenta aumentare ver +aumentabile aumentabile adj +aumentabili aumentabile adj +aumentaci aumentare ver +aumentando aumentare ver +aumentandola aumentare ver +aumentandole aumentare ver +aumentandoli aumentare ver +aumentandolo aumentare ver +aumentandone aumentare ver +aumentandosi aumentare ver +aumentano aumentare ver +aumentante aumentare ver +aumentanti aumentare ver +aumentar aumentare ver +aumentare aumentare ver +aumentargli aumentare ver +aumentarla aumentare ver +aumentarle aumentare ver +aumentarli aumentare ver +aumentarlo aumentare ver +aumentarmi aumentare ver +aumentarne aumentare ver +aumentarono aumentare ver +aumentarsi aumentare ver +aumentarti aumentare ver +aumentasse aumentare ver +aumentassero aumentare ver +aumentassimo aumentare ver +aumentata aumentare ver +aumentate aumentare ver +aumentati aumentare ver +aumentato aumentare ver +aumentava aumentare ver +aumentavano aumentare ver +aumenteranno aumentare ver +aumenterebbe aumentare ver +aumenterebbero aumentare ver +aumenterei aumentare ver +aumenteremo aumentare ver +aumenterà aumentare ver +aumenterò aumentare ver +aumenti aumento nom +aumentiamo aumentare ver +aumentino aumentare ver +aumento aumento nom +aumentò aumentare ver +aura aura nom +aurata aurato adj +aure aura nom +aurea aureo adj +auree aureo adj +aurei aureo adj +aureo aureo adj +aureola aureola nom +aureole aureola nom +aureomicina aureomicina nom +aurica aurica|aurico adj +auriche auriche|aurico adj +aurici aurico adj +aurico aurico adj +auricolare auricolare adj +auricolari auricolare adj +aurifera aurifero adj +aurifere aurifero adj +auriferi aurifero adj +aurifero aurifero adj +auriga auriga nom +aurighi auriga nom +aurora aurora nom +aurorale aurorale adj +aurorali aurorale adj +aurore aurora nom +ausculta auscultare ver +auscultaci auscultare ver +auscultare auscultare ver +auscultazione auscultazione nom +ausili ausilio nom +ausiliare ausiliare adj +ausiliari ausiliare|ausiliario adj +ausiliaria ausiliario adj +ausiliarie ausiliario adj +ausiliario ausiliario adj +ausiliatore ausiliatore adj +ausiliatori ausiliatore adj +ausiliatrice ausiliatore adj +ausiliatrici ausiliatore adj +ausilio ausilio nom +auspica auspicare ver +auspicabile auspicabile adj +auspicabili auspicabile adj +auspicando auspicare ver +auspicandone auspicare ver +auspicandosi auspicare ver +auspicano auspicare ver +auspicante auspicare ver +auspicare auspicare ver +auspicarne auspicare ver +auspicarono auspicare ver +auspicarsi auspicare ver +auspicasse auspicare ver +auspicassero auspicare ver +auspicata auspicare ver +auspicate auspicare ver +auspicati auspicare ver +auspicato auspicare ver +auspicava auspicare ver +auspicavano auspicare ver +auspicavo auspicare ver +auspice auspice nom +auspicherebbe auspicare ver +auspicherebbero auspicare ver +auspicherei auspicare ver +auspicheremmo auspicare ver +auspichi auspicare ver +auspichiamo auspicare ver +auspici auspice|auspicio nom +auspicio auspicio nom +auspico auspicare ver +auspicò auspicare ver +austera austero adj +austere austero adj +austeri austero adj +austerity austerity nom +austerità austerità nom +austero austero adj +austori austorio nom +austorio austorio nom +australe australe adj +australi australe adj +australiana australiano adj +australiane australiano adj +australiani australiano adj +australiano australiano adj +austri austro nom +austriaca austriaco adj +austriache austriaco adj +austriaci austriaco adj +austriaco austriaco adj +austro austro nom +autarchia autarchia nom +autarchica autarchico adj +autarchiche autarchico adj +autarchici autarchico adj +autarchico autarchico adj +autentica autentico adj +autenticaci autenticare ver +autenticando autenticare ver +autenticandola autenticare ver +autenticandosi autenticare ver +autenticano autenticare ver +autenticante autenticare ver +autenticare autenticare ver +autenticarmi autenticare ver +autenticarsi autenticare ver +autenticassero autenticare ver +autenticata autenticare ver +autenticate autenticare ver +autenticati autenticare ver +autenticato autenticare ver +autenticavano autenticare ver +autenticazione autenticazione nom +autenticazioni autenticazione nom +autentiche autentico adj +autenticherà autenticare ver +autentichi autenticare ver +autentici autentico adj +autenticità autenticità nom +autentico autentico adj +autenticò autenticare ver +autentificare autentificare ver +autiere autiere nom +autieri autiere nom +autismi autismo nom +autismo autismo nom +autista autista nom +autiste autista nom +autisti autista nom +auto auto nom_sup +autoabbronzanti autoabbronzante nom +autoaccensione autoaccensione nom +autoadesiva autoadesivo adj +autoadesive autoadesivo adj +autoadesivi autoadesivo adj +autoadesivo autoadesivo adj +autoambulanza autoambulanza nom +autoambulanze autoambulanza nom +autoarticolati autoarticolato nom +autoarticolato autoarticolato nom +autobetoniera autobetoniera nom +autobetoniere autobetoniera nom +autobiografia autobiografia nom +autobiografica autobiografico adj +autobiografiche autobiografico adj +autobiografici autobiografico adj +autobiografico autobiografico adj +autobiografie autobiografia nom +autobiografismo autobiografismo nom +autoblinda autoblinda nom +autobotte autobotte nom +autobotti autobotte nom +autobus autobus nom +autocarri autocarro nom +autocarro autocarro nom +autocentrante autocentrante adj +autocentranti autocentrante adj +autocisterna autocisterna nom +autocisterne autocisterna nom +autoclave autoclave nom +autoclavi autoclave nom +autocolonna autocolonna nom +autocolonne autocolonna nom +autocombustione autocombustione nom +autocommiserazione autocommiserazione nom +autocompiacimento autocompiacimento nom +autocontrollo autocontrollo nom +autocorriera autocorriera nom +autocorriere autocorriera nom +autocoscienza autocoscienza nom +autocoscienze autocoscienza nom +autocrate autocrate nom +autocrati autocrate nom +autocratica autocratico adj +autocratiche autocratico adj +autocratici autocratico adj +autocratico autocratico adj +autocrazia autocrazia nom +autocrazie autocrazia nom +autocritica autocritico adj +autocritiche autocritico adj +autocritici autocritico adj +autocritico autocritico adj +autoctona autoctono adj +autoctone autoctono adj +autoctoni autoctono adj +autoctonia autoctonia nom +autoctono autoctono adj +autodafé autodafé nom +autodecisione autodecisione nom +autodefinisce autodefinire ver +autodeterminazione autodeterminazione nom +autodiagnosi autodiagnosi nom +autodiagnostica autodiagnostico nom +autodichiarata autodichiarata ver +autodidatta autodidatta nom +autodidatte autodidatta nom +autodidatti autodidatta nom +autodidattica autodidattico adj +autodidattici autodidattico adj +autodidattico autodidattico adj +autodifesa autodifesa nom +autodifese autodifesa nom +autodisciplina autodisciplina nom +autodistruggano autodistruggere ver +autodistruggono autodistruggere ver +autodromi autodromo nom +autodromo autodromo nom +autofficine autofficina nom +autofilettante autofilettante adj +autofilettanti autofilettante adj +autofilotranviari autofilotranviario adj +autofinanziamento autofinanziamento nom +autofinanziare autofinanziare ver +autofinanziarsi autofinanziare ver +autofinanziata autofinanziare ver +autoformazione autoformazione nom +autofurgone autofurgone nom +autogamia autogamia nom +autogena autogeno adj +autogene autogeno adj +autogeni autogeno adj +autogeno autogeno adj +autogestione autogestione nom +autogestiti autogestito adj +autogiri autogiro nom +autogiro autogiro nom +autogol autogol nom +autogoverni autogoverno nom +autogoverno autogoverno nom +autografa autografo adj +autografe autografo adj +autografi autografo adj +autografia autografia nom +autografie autografia nom +autografo autografo adj +autogrill autogrill nom +autoguida autoguida nom +autoimposta autoimposta adj +autoinduzione autoinduzione nom +autolesionismo autolesionismo nom +autolesionista autolesionista nom +autolesioniste autolesionista nom +autolesionisti autolesionista nom +autolettiga autolettiga nom +autolettighe autolettiga nom +autolimitazione autolimitazione nom +autolinea autolinea nom +autolinee autolinea nom +automa automa nom +automatica automatico adj +automaticamente automaticamente adv +automatiche automatico adj +automatici automatico adj +automaticità automaticità nom +automatico automatico adj +automatismi automatismo nom +automatismo automatismo nom +automatizza automatizzare ver +automatizzando automatizzare ver +automatizzandolo automatizzare ver +automatizzandone automatizzare ver +automatizzano automatizzare ver +automatizzare automatizzare ver +automatizzarla automatizzare ver +automatizzarlo automatizzare ver +automatizzarne automatizzare ver +automatizzarono automatizzare ver +automatizzata automatizzare ver +automatizzate automatizzare ver +automatizzati automatizzare ver +automatizzato automatizzare ver +automatizzazione automatizzazione nom +automazione automazione nom +automazioni automazione nom +automedicazione automedicazione nom +automedonte automedonte nom +automezzi automezzo nom +automezzo automezzo nom +automi automa nom +automobile automobile adj +automobili automobile adj +automobilina automobilina nom +automobiline automobilina nom +automobilismo automobilismo nom +automobilista automobilista nom +automobiliste automobilista nom +automobilisti automobilista nom +automobilistica automobilistico adj +automobilistiche automobilistico adj +automobilistici automobilistico adj +automobilistico automobilistico adj +automontata automontato adj +automotori automotore nom +automotrice automotrice nom +automotrici automotrice nom +automutilazione automutilazione nom +automutilazioni automutilazione nom +autonoleggi autonoleggio nom +autonoleggio autonoleggio nom +autonoma autonomo adj +autonomamente autonomamente adv +autonome autonomo adj +autonomi autonomo adj +autonomia autonomia nom +autonomie autonomia nom +autonomismo autonomismo nom +autonomista autonomista nom +autonomiste autonomista nom +autonomisti autonomista nom +autonomo autonomo adj +autoparco autoparco nom +autopiani autopiano nom +autopiano autopiano nom +autopilota autopilota nom +autopiloti autopilota nom +autopista autopista nom +autopiste autopista nom +autopompa autopompa nom +autopompe autopompa nom +autoproclamata autoproclamata ver +autopromozione autopromozione nom +autopropulsione autopropulsione nom +autoprotezione autoprotezione nom +autopsia autopsia nom +autopsie autopsia nom +autopubblica autopubblica nom +autoradio autoradio nom +autore autore nom +autoregolamentarsi autoregolamentare ver +autoregolamentazione autoregolamentazione nom +autoregolamentazioni autoregolamentazione nom +autoregolazione autoregolazione nom +autoreparto autoreparto nom +autorespiratore autorespiratore nom +autorespiratori autorespiratore nom +autoresponsabilità autoresponsabilità nom +autorete autorete nom +autoreti autorete nom +autorevole autorevole adj +autorevolezza autorevolezza nom +autorevoli autorevole adj +autori autore nom +autorimessa autorimessa nom +autorimesse autorimessa nom +autoritari autoritario adj +autoritaria autoritario adj +autoritarie autoritario adj +autoritario autoritario adj +autoritarismi autoritarismo nom +autoritarismo autoritarismo nom +autoritratti autoritratto nom +autoritratto autoritratto nom +autorità autorità nom +autorizza autorizzare ver +autorizzando autorizzare ver +autorizzandoci autorizzare ver +autorizzandola autorizzare ver +autorizzandoli autorizzare ver +autorizzandolo autorizzare ver +autorizzandomi autorizzare ver +autorizzandone autorizzare ver +autorizzano autorizzare ver +autorizzante autorizzare ver +autorizzanti autorizzare ver +autorizzarci autorizzare ver +autorizzare autorizzare ver +autorizzarla autorizzare ver +autorizzarle autorizzare ver +autorizzarli autorizzare ver +autorizzarlo autorizzare ver +autorizzarmi autorizzare ver +autorizzarne autorizzare ver +autorizzarono autorizzare ver +autorizzarti autorizzare ver +autorizzasse autorizzare ver +autorizzassero autorizzare ver +autorizzata autorizzare ver +autorizzate autorizzare ver +autorizzati autorizzare ver +autorizzato autorizzare ver +autorizzava autorizzare ver +autorizzavano autorizzare ver +autorizzazione autorizzazione nom +autorizzazioni autorizzazione nom +autorizzerebbe autorizzare ver +autorizzerebbero autorizzare ver +autorizzerei autorizzare ver +autorizzeremmo autorizzare ver +autorizzerà autorizzare ver +autorizzi autorizzare ver +autorizziamo autorizzare ver +autorizzino autorizzare ver +autorizzo autorizzare ver +autorizzò autorizzare ver +autoscala autoscala nom +autoscatti autoscatto nom +autoscatto autoscatto nom +autoscontri autoscontro nom +autoscontro autoscontro nom +autoscuola autoscuola nom +autoscuole autoscuola nom +autoservizio autoservizio nom +autosnodati autosnodato nom +autosnodato autosnodato nom +autosoccorso autosoccorso nom +autosospensione autosospensione nom +autosostegno autosostegno nom +autostazione autostazione nom +autostazioni autostazione nom +autostello autostello nom +autostima autostima nom +autostop autostop nom +autostoppista autostoppista nom +autostoppiste autostoppista nom +autostoppisti autostoppista nom +autostrada autostrada nom +autostradale autostradale adj +autostradali autostradale adj +autostrade autostrada nom +autosufficiente autosufficiente adj +autosufficienti autosufficiente adj +autosufficienza autosufficienza nom +autosuggestione autosuggestione nom +autotelai autotelaio nom +autotelaio autotelaio nom +autotest autotest nom +autotrasformatore autotrasformatore nom +autotrasformatori autotrasformatore nom +autotrasformazione autotrasformazione nom +autotrasfusione autotrasfusione nom +autotrasportatori autotrasportatore nom +autotrasporti autotrasporto nom +autotrasporto autotrasporto nom +autotrazione autotrazione nom +autotreni autotreno nom +autotreno autotreno nom +autotrofa autotrofo adj +autotrofe autotrofo adj +autotrofi autotrofo adj +autotrofia autotrofia nom +autotrofo autotrofo adj +autotutela autotutela nom +autoveicoli autoveicolo nom +autoveicolo autoveicolo nom +autovettura autovettura nom +autovetture autovettura nom +autrice autore nom +autrici autore nom +autunite autunite nom +autunnale autunnale adj +autunnali autunnale adj +autunni autunno nom +autunno autunno nom +auxina auxina nom +auxine auxina nom +avalla avallare ver +avallando avallare ver +avallandolo avallare ver +avallandone avallare ver +avallano avallare ver +avallante avallare ver +avallanti avallare ver +avallare avallare ver +avallarla avallare ver +avallarne avallare ver +avallarono avallare ver +avallasse avallare ver +avallassero avallare ver +avallata avallare ver +avallate avallare ver +avallati avallare ver +avallato avallare ver +avallava avallare ver +avallavano avallare ver +avallerebbe avallare ver +avallerebbero avallare ver +avallerà avallare ver +avallerò avallare ver +avalli avallare ver +avallino avallare ver +avallo avallare ver +avallò avallare ver +avambracci avambraccio nom +avambraccio avambraccio nom +avamposti avamposto nom +avamposto avamposto nom +avana avana nom +avancarica avancarica nom +avance avance nom +avancorpi avancorpo nom +avancorpo avancorpo nom +avanguardia avanguardia nom +avanguardie avanguardia nom +avanguardismo avanguardismo nom +avanguardista avanguardista nom +avanguardiste avanguardista nom +avanguardisti avanguardista nom +avanguardistici avanguardistico adj +avanguardistico avanguardistico adj +avannotti avannotto nom +avannotto avannotto nom +avanscoperta avanscoperta nom +avanscoperte avanscoperta nom +avanspettacolo avanspettacolo nom +avantaggiate avantaggiato adj +avanti avanti adv_sup +avantreni avantreno nom +avantreno avantreno nom +avanvomere avanvomere nom +avanza avanzare ver +avanzai avanzare ver +avanzamenti avanzamento nom +avanzamento avanzamento nom +avanzando avanzare ver +avanzandola avanzare ver +avanzandolo avanzare ver +avanzandone avanzare ver +avanzandosi avanzare ver +avanzano avanzare ver +avanzante avanzare ver +avanzanti avanzare ver +avanzar avanzare ver +avanzare avanzare ver +avanzarla avanzare ver +avanzarlo avanzare ver +avanzarne avanzare ver +avanzarono avanzare ver +avanzarsi avanzare ver +avanzarvi avanzare ver +avanzasse avanzare ver +avanzassero avanzare ver +avanzassi avanzare ver +avanzata avanzare ver +avanzate avanzare ver +avanzategli avanzare ver +avanzati avanzato adj +avanzato avanzare ver +avanzava avanzare ver +avanzavamo avanzare ver +avanzavano avanzare ver +avanzavo avanzare ver +avanzeranno avanzare ver +avanzerebbe avanzare ver +avanzerei avanzare ver +avanzerà avanzare ver +avanzerò avanzare ver +avanzi avanzo nom +avanziamo avanzare ver +avanzino avanzare ver +avanzo avanzo nom +avanzò avanzare ver +avara avaro adj +avare avaro adj +avari avaro nom +avaria avaria nom +avariare avariare ver +avariata avariato adj +avariate avariato adj +avariati avariato adj +avariato avariare ver +avarie avaria nom +avarino avariare ver +avario avariare ver +avarizia avarizia nom +avarizie avarizia nom +avaro avaro adj +avella avellere ver +avellana avellano adj +avellane avellano adj +avellani avellano adj +avellano avellano adj +avellere avellere ver +avelli avello nom +avello avello nom +avemaria avemaria nom +avemarie avemaria nom +avemmo avere ver_sup +avena avena nom +avendo avere ver_sup +avendocela avere ver +avendoci avere ver +avendogli avere ver +avendogliela avere ver +avendoglielo avere ver +avendola avere ver +avendole avere ver +avendoli avere ver +avendolo avere ver +avendomi avere ver +avendone avere ver +avendosi avere ver +avendoti avere ver +avendovi avere ver +avene avena nom +avente avere ver +aventi avere ver +avenue avenue nom +aver avere ver_sup +avercela avere ver +avercele avere ver +averceli avere ver +avercelo avere ver +avercene avere ver +averci avere ver +avere avere ver_sup +avergli avere ver +avergliela avere ver +avergliele avere ver +averglieli avere ver +averglielo avere ver +avergliene avere ver +averi avere nom +averla avere ver_sup +averle avere ver_sup +averli avere ver_sup +averlo avere ver_sup +avermela avere ver +avermelo avere ver +avermene avere ver +avermi avere ver +averne avere ver +averroismo averroismo nom +aversene avere ver +aversi avere ver +avertelo avere ver +avertene avere ver +averti avere ver +avervelo avere ver +avervi avere ver +avesse avere ver_sup +avessero avere ver_sup +avessi avere ver +avessimo avere ver +aveste avere ver +avesti avere ver +avete avere ver_sup +aveva avere ver_sup +avevamo avere ver_sup +avevano avere ver_sup +avevate avere ver +avevi avere ver_sup +avevo avere ver_sup +avi avo nom +aviari aviario adj +aviaria aviario adj +aviarie aviario adj +aviario aviario adj +aviatore aviatore nom +aviatori aviatore nom +aviatoria aviatorio adj +aviatorie aviatorio adj +aviatorio aviatorio adj +aviatrice aviatore nom +aviatrici aviatore nom +aviazione aviazione nom +aviazioni aviazione nom +avicola avicolo adj +avicole avicolo adj +avicoli avicolo adj +avicolo avicolo adj +avicoltore avicoltore nom +avicoltori avicoltore nom +avicoltura avicoltura nom +avicunicola avicunicolo adj +avida avido adj +avide avido adj +avidi avido adj +avidità avidità nom +avido avido adj +aviere aviere nom +avieri aviere nom +avifauna avifauna nom +avifaune avifauna nom +aviogetti aviogetto nom +aviogetto aviogetto nom +aviolinea aviolinea nom +aviolinee aviolinea nom +aviorimessa aviorimessa nom +aviorimesse aviorimessa nom +avita avito adj +avitaminosi avitaminosi nom +avite avito adj +aviti avito adj +avito avito adj +avo avo nom +avocado avocado nom +avocazione avocazione nom +avori avorio nom +avorio avorio nom +avra avra sw +avrai avere ver +avranno avere ver_sup +avrebbe avere ver_sup +avrebbero avere ver_sup +avrei avere ver_sup +avremmo avere ver_sup +avremo avere ver_sup +avreste avere ver +avresti avere ver +avrete avere ver_sup +avro avro sw +avrà avere ver_sup +avrò avere ver_sup +avulsa avulso adj +avulse avulso adj +avulsi avellere ver +avulso avellere ver +avuta avere ver +avutasi avere ver +avute avere ver_sup +avuti avere ver +avuto avere ver_sup +avutosi avere ver +avvale avvalersi ver +avvalendo avvalersi ver +avvalendoci avvalersi ver +avvalendomi avvalersi ver +avvalendosi avvalersi ver +avvalerci avvalersi ver +avvalere avvalersi ver +avvalermi avvalersi ver +avvalersene avvalersi ver +avvalersi avvalersi ver +avvalesse avvalersi ver +avvalessero avvalersi ver +avvaleva avvalersi ver +avvalevano avvalersi ver +avvalga avvalersi ver +avvalgano avvalersi ver +avvalgo avvalersi ver +avvalgono avvalersi ver +avvali avvalersi ver +avvaliamo avvalersi ver +avvalla avvallare ver +avvallamenti avvallamento nom +avvallamento avvallamento nom +avvallando avvallare ver +avvallano avvallare ver +avvallare avvallare ver +avvallata avvallare ver +avvallate avvallare ver +avvallati avvallare ver +avvallato avvallare ver +avvallino avvallare ver +avvallo avvallare ver +avvalora avvalorare ver +avvalorando avvalorare ver +avvalorano avvalorare ver +avvalorante avvalorare ver +avvalorare avvalorare ver +avvalorarla avvalorare ver +avvalorarle avvalorare ver +avvalorarlo avvalorare ver +avvalorarne avvalorare ver +avvalorarono avvalorare ver +avvalorasse avvalorare ver +avvalorassero avvalorare ver +avvalorata avvalorare ver +avvalorate avvalorare ver +avvalorati avvalorare ver +avvalorato avvalorare ver +avvalorava avvalorare ver +avvaloravano avvalorare ver +avvalorerebbe avvalorare ver +avvalorerebbero avvalorare ver +avvalori avvalorare ver +avvalorino avvalorare ver +avvalorò avvalorare ver +avvalsa avvalersi ver +avvalse avvalersi ver +avvalsero avvalersi ver +avvalsi avvalersi ver +avvalso avvalersi ver +avvampa avvampare ver +avvampano avvampare ver +avvampante avvampare ver +avvampar avvampare ver +avvampare avvampare ver +avvampati avvampare ver +avvampato avvampare ver +avvampo avvampare ver +avvampò avvampare ver +avvantaggeranno avvantaggiare ver +avvantaggerebbe avvantaggiare ver +avvantaggerà avvantaggiare ver +avvantaggi avvantaggiare ver +avvantaggia avvantaggiare ver +avvantaggiando avvantaggiare ver +avvantaggiandosi avvantaggiare ver +avvantaggiano avvantaggiare ver +avvantaggiare avvantaggiare ver +avvantaggiarli avvantaggiare ver +avvantaggiarlo avvantaggiare ver +avvantaggiarono avvantaggiare ver +avvantaggiarsene avvantaggiare ver +avvantaggiarsi avvantaggiare ver +avvantaggiarti avvantaggiare ver +avvantaggiasse avvantaggiare ver +avvantaggiata avvantaggiare ver +avvantaggiate avvantaggiare ver +avvantaggiati avvantaggiare ver +avvantaggiato avvantaggiare ver +avvantaggiava avvantaggiare ver +avvantaggiavano avvantaggiare ver +avvantaggino avvantaggiare ver +avvantaggio avvantaggiare ver +avvantaggiò avvantaggiare ver +avvarranno avvalersi ver +avvarrebbe avvalersi ver +avvarremo avvalersi ver +avvarrà avvalersi ver +avvarrò avvalersi ver +avveda avvedersi ver +avvede avvedersi ver +avvedendosi avvedersi ver +avvedere avvedersi ver +avvedersene avvedersi ver +avvedersi avvedersi ver +avvedesse avvedersi ver +avvedessero avvedersi ver +avvedono avvedersi ver +avveduta avveduto adj +avvedute avveduto adj +avvedutezza avvedutezza nom +avveduti avveduto adj +avveduto avveduto adj +avvelena avvelenare ver +avvelenamenti avvelenamento nom +avvelenamento avvelenamento nom +avvelenando avvelenare ver +avvelenandogli avvelenare ver +avvelenandola avvelenare ver +avvelenandole avvelenare ver +avvelenandoli avvelenare ver +avvelenandolo avvelenare ver +avvelenandosi avvelenare ver +avvelenano avvelenare ver +avvelenante avvelenare ver +avvelenanti avvelenare ver +avvelenarci avvelenare ver +avvelenare avvelenare ver +avvelenargli avvelenare ver +avvelenarla avvelenare ver +avvelenarle avvelenare ver +avvelenarli avvelenare ver +avvelenarlo avvelenare ver +avvelenarmi avvelenare ver +avvelenarono avvelenare ver +avvelenarsi avvelenare ver +avvelenasse avvelenare ver +avvelenassero avvelenare ver +avvelenata avvelenare ver +avvelenate avvelenato adj +avvelenati avvelenato adj +avvelenato avvelenare ver +avvelenatore avvelenatore adj +avvelenatori avvelenatore adj +avvelenatrice avvelenatore adj +avvelenatrici avvelenatore adj +avvelenava avvelenare ver +avvelenavano avvelenare ver +avvelenerebbe avvelenare ver +avvelenerebbero avvelenare ver +avvelenerà avvelenare ver +avveleni avvelenare ver +avvelenino avvelenare ver +avveleno avvelenare ver +avvelenò avvelenare ver +avvenendo avvenire ver +avvenente avvenente adj +avvenenti avvenente adj +avvenenza avvenenza nom +avvenga avvenire ver +avvengano avvenire ver +avvengo avvenire ver +avvengono avvenire ver +avvenimenti avvenimento nom +avvenimento avvenimento nom +avvenir avvenire ver +avvenire avvenire ver +avvenirismo avvenirismo nom +avveniristica avveniristico adj +avveniristiche avveniristico adj +avveniristici avveniristico adj +avveniristico avveniristico adj +avvenisse avvenire ver +avvenissero avvenire ver +avvenite avvenire ver +avveniva avvenire ver +avvenivano avvenire ver +avvenne avvenire ver +avvennero avvenire ver +avventa avventare ver +avventando avventare ver +avventandosi avventare ver +avventano avventare ver +avventare avventare ver +avventarono avventare ver +avventarsi avventare ver +avventata avventare ver +avventate avventato adj +avventatezza avventatezza nom +avventatezze avventatezza nom +avventati avventato adj +avventato avventare ver +avventava avventare ver +avventavano avventare ver +avventerà avventare ver +avventi avvento nom +avventino avventare ver +avventista avventista nom +avventiste avventista nom +avventisti avventista nom +avventizi avventizio nom +avventizia avventizio adj +avventizie avventizio nom +avventizio avventizio adj +avvento avvento nom +avventore avventore nom +avventori avventore nom +avventrice avventore nom +avventrici avventore nom +avventura avventura nom +avventurando avventurare ver +avventurandosi avventurare ver +avventurano avventurare ver +avventurarci avventurare ver +avventurare avventurare ver +avventurarmi avventurare ver +avventurarono avventurare ver +avventurarsi avventurare ver +avventurarti avventurare ver +avventurasse avventurare ver +avventurata avventurare ver +avventurate avventurare ver +avventuratesi avventurare ver +avventurati avventurare ver +avventurato avventurare ver +avventurava avventurare ver +avventuravano avventurare ver +avventure avventura nom +avventureranno avventurare ver +avventurerei avventurare ver +avventurerà avventurare ver +avventuri avventurare ver +avventuriera avventuriero nom +avventuriere avventuriero nom +avventurieri avventuriero nom +avventuriero avventuriero nom +avventurina avventurina nom +avventurine avventurina nom +avventurino avventurare ver +avventurismo avventurismo nom +avventuro avventurare ver +avventurosa avventuroso adj +avventurose avventuroso adj +avventurosi avventuroso adj +avventuroso avventuroso adj +avventurò avventurare ver +avventò avventare ver +avvenuta avvenire ver +avvenute avvenire ver +avvenuti avvenire ver +avvenuto avvenire ver +avvera avverare ver +avverando avverare ver +avverano avverare ver +avverare avverare ver +avverarono avverare ver +avverarsi avverare ver +avverasse avverare ver +avverassero avverare ver +avverata avverare ver +avverate avverare ver +avveratesi avverare ver +avverati avverare ver +avverato avverare ver +avverava avverare ver +avverbi avverbio nom +avverbiale avverbiale adj +avverbiali avverbiale adj +avverbio avverbio nom +avvereranno avverare ver +avvererebbe avverare ver +avvererà avverare ver +avveri avverare ver +avverino avverare ver +avvero avverare ver +avverranno avvenire ver +avverrebbe avvenire ver +avverrebbero avvenire ver +avverrà avvenire ver +avversa avversare ver +avversando avversare ver +avversano avversare ver +avversare avversare ver +avversari avversario nom +avversaria avversario nom +avversarie avversario nom +avversario avversario nom +avversarla avversare ver +avversarlo avversare ver +avversarono avversare ver +avversarsi avversare ver +avversasse avversare ver +avversata avversare ver +avversate avversare ver +avversati avversare ver +avversativa avversativo adj +avversative avversativo adj +avversativo avversativo adj +avversato avversare ver +avversatore avversatore adj +avversatori avversatore nom +avversava avversare ver +avversavano avversare ver +avverse avverso adj +avverserà avversare ver +avversi avverso adj +avversino avversare ver +avversione avversione nom +avversioni avversione nom +avversità avversità nom +avverso avverso adj +avversò avversare ver +avverta avvertire ver +avvertano avvertire ver +avverte avvertire ver +avvertendo avvertire ver +avvertendola avvertire ver +avvertendole avvertire ver +avvertendoli avvertire ver +avvertendolo avvertire ver +avvertendone avvertire ver +avvertendoti avvertire ver +avvertenza avvertenza nom +avvertenze avvertenza nom +avverti avvertire ver +avvertiamo avvertire ver +avvertibile avvertibile adj +avvertibili avvertibile adj +avvertici avvertire ver +avvertii avvertire ver +avvertilo avvertire ver +avvertimenti avvertimento nom +avvertimento avvertimento nom +avvertimi avvertire ver +avvertiranno avvertire ver +avvertirci avvertire ver +avvertire avvertire ver +avvertirebbe avvertire ver +avvertirebbero avvertire ver +avvertirei avvertire ver +avvertiremo avvertire ver +avvertirla avvertire ver +avvertirle avvertire ver +avvertirli avvertire ver +avvertirlo avvertire ver +avvertirmi avvertire ver +avvertirne avvertire ver +avvertirono avvertire ver +avvertirsi avvertire ver +avvertirti avvertire ver +avvertirvi avvertire ver +avvertirà avvertire ver +avvertirò avvertire ver +avvertisse avvertire ver +avvertissero avvertire ver +avvertissi avvertire ver +avvertita avvertire ver +avvertite avvertire ver +avvertitemi avvertire ver +avvertiti avvertire ver +avvertito avvertire ver +avvertiva avvertire ver +avvertivano avvertire ver +avvertivo avvertire ver +avverto avvertire ver +avvertono avvertire ver +avvertì avvertire ver +avverò avverare ver +avvezione avvezione nom +avvezioni avvezione nom +avvezza avvezzo adj +avvezzarsi avvezzare ver +avvezze avvezzo adj +avvezzi avvezzo adj +avvezzo avvezzo adj +avvia avviare ver +avviai avviare ver +avviamenti avviamento nom +avviamento avviamento nom +avviammo avviare ver +avviamo avviare ver +avviamoci avviare ver +avviando avviare ver +avviandoci avviare ver +avviandola avviare ver +avviandole avviare ver +avviandoli avviare ver +avviandolo avviare ver +avviandone avviare ver +avviandosi avviare ver +avviandovi avviare ver +avviane avviare ver +avviano avviare ver +avviar avviare ver +avviarci avviare ver +avviare avviare ver +avviarla avviare ver +avviarle avviare ver +avviarli avviare ver +avviarlo avviare ver +avviarmi avviare ver +avviarne avviare ver +avviarono avviare ver +avviarsi avviare ver +avviarvi avviare ver +avviasse avviare ver +avviassero avviare ver +avviata avviare ver +avviate avviare ver +avviatesi avviare ver +avviati avviare ver +avviato avviare ver +avviava avviare ver +avviavano avviare ver +avvicenda avvicendare ver +avvicendamenti avvicendamento nom +avvicendamento avvicendamento nom +avvicendando avvicendare ver +avvicendandosi avvicendare ver +avvicendano avvicendare ver +avvicendare avvicendare ver +avvicendarlo avvicendare ver +avvicendarono avvicendare ver +avvicendarsi avvicendare ver +avvicendassero avvicendare ver +avvicendata avvicendare ver +avvicendate avvicendare ver +avvicendatesi avvicendare ver +avvicendati avvicendare ver +avvicendato avvicendare ver +avvicendava avvicendare ver +avvicendavano avvicendare ver +avvicenderanno avvicendare ver +avvicendò avvicendare ver +avvicina avvicinare ver +avvicinabile avvicinabile adj +avvicinabili avvicinabile adj +avvicinai avvicinare ver +avvicinamenti avvicinamento nom +avvicinamento avvicinamento nom +avvicinami avvicinare ver +avvicinammo avvicinare ver +avvicinando avvicinare ver +avvicinandoci avvicinare ver +avvicinandola avvicinare ver +avvicinandole avvicinare ver +avvicinandoli avvicinare ver +avvicinandolo avvicinare ver +avvicinandomi avvicinare ver +avvicinandosi avvicinare ver +avvicinano avvicinare ver +avvicinarci avvicinare ver +avvicinare avvicinare ver +avvicinargli avvicinare ver +avvicinarla avvicinare ver +avvicinarle avvicinare ver +avvicinarli avvicinare ver +avvicinarlo avvicinare ver +avvicinarmi avvicinare ver +avvicinarne avvicinare ver +avvicinarono avvicinare ver +avvicinarsi avvicinare ver +avvicinarti avvicinare ver +avvicinarvi avvicinare ver +avvicinasse avvicinare ver +avvicinassero avvicinare ver +avvicinata avvicinare ver +avvicinate avvicinare ver +avvicinatesi avvicinare ver +avvicinatevi avvicinare ver +avvicinati avvicinare ver +avvicinato avvicinare ver +avvicinava avvicinare ver +avvicinavano avvicinare ver +avvicinavo avvicinare ver +avvicinerai avvicinare ver +avvicineranno avvicinare ver +avvicinerebbe avvicinare ver +avvicinerebbero avvicinare ver +avvicineremo avvicinare ver +avvicinerà avvicinare ver +avvicini avvicinare ver +avviciniamo avvicinare ver +avviciniamoci avvicinare ver +avvicinino avvicinare ver +avvicino avvicinare ver +avvicinò avvicinare ver +avvide avvedersi ver +avvidero avvedersi ver +avvidi avvedersi ver +avviene avvenire ver +avvieranno avviare ver +avvierebbe avviare ver +avvierebbero avviare ver +avvieremo avviare ver +avvierà avviare ver +avvierò avviare ver +avvii avviare ver +avviino avviare ver +avvilendo avvilire ver +avvilente avvilente adj +avvilenti avvilente adj +avvilimento avvilimento nom +avvilire avvilire ver +avvilirlo avvilire ver +avvilirsi avvilire ver +avvilirvi avvilire ver +avvilisce avvilire ver +avviliscono avvilire ver +avvilita avvilire ver +avvilite avvilire ver +avviliti avvilire ver +avvilito avvilire ver +avviluppa avviluppare ver +avviluppando avviluppare ver +avviluppandola avviluppare ver +avviluppano avviluppare ver +avviluppante avviluppare ver +avviluppare avviluppare ver +avvilupparle avviluppare ver +avviluppata avviluppare ver +avviluppate avviluppare ver +avviluppati avviluppare ver +avviluppato avviluppare ver +avviluppava avviluppare ver +avvilupperà avviluppare ver +avviluppò avviluppare ver +avvinazzata avvinazzato adj +avvinazzati avvinazzato adj +avvinazzato avvinazzato adj +avvinca avvincere ver +avvince avvincere ver +avvincente avvincente adj +avvincenti avvincente adj +avvincere avvincere ver +avvincerlo avvincere ver +avvinceva avvincere ver +avvincevano avvincere ver +avvinghia avvinghiare ver +avvinghiando avvinghiare ver +avvinghiandola avvinghiare ver +avvinghiano avvinghiare ver +avvinghiare avvinghiare ver +avvinghiarono avvinghiare ver +avvinghiarsi avvinghiare ver +avvinghiata avvinghiare ver +avvinghiate avvinghiare ver +avvinghiati avvinghiare ver +avvinghiato avvinghiare ver +avvinghiò avvinghiare ver +avvinse avvincere ver +avvinsero avvincere ver +avvinta avvincere ver +avvinte avvincere ver +avvinti avvincere ver +avvinto avvincere ver +avvio avvio nom +avvisa avvisare ver +avvisaci avvisare ver +avvisagli avvisare ver +avvisaglia avvisaglia nom +avvisaglie avvisaglia nom +avvisai avvisare ver +avvisalo avvisare ver +avvisami avvisare ver +avvisando avvisare ver +avvisandola avvisare ver +avvisandole avvisare ver +avvisandoli avvisare ver +avvisandolo avvisare ver +avvisandomi avvisare ver +avvisandone avvisare ver +avvisano avvisare ver +avvisante avvisare ver +avvisar avvisare ver +avvisarci avvisare ver +avvisare avvisare ver +avvisarla avvisare ver +avvisarle avvisare ver +avvisarli avvisare ver +avvisarlo avvisare ver +avvisarmi avvisare ver +avvisarne avvisare ver +avvisarono avvisare ver +avvisarti avvisare ver +avvisarvi avvisare ver +avvisasse avvisare ver +avvisata avvisare ver +avvisate avvisare ver +avvisatemi avvisare ver +avvisati avvisare ver +avvisato avvisare ver +avvisatore avvisatore nom +avvisatori avvisatore nom +avvisava avvisare ver +avvisavano avvisare ver +avvisavo avvisare ver +avviserebbe avvisare ver +avviserei avvisare ver +avviseremo avvisare ver +avviserà avvisare ver +avviserò avvisare ver +avvisi avviso nom +avvisiamo avvisare ver +avvisiamolo avvisare ver +avvisino avvisare ver +avviso avviso nom +avvista avvedersi ver +avvistamenti avvistamento nom +avvistamento avvistamento nom +avvistammo avvistare ver +avvistando avvistare ver +avvistano avvistare ver +avvistare avvistare ver +avvistarla avvistare ver +avvistarle avvistare ver +avvistarli avvistare ver +avvistarlo avvistare ver +avvistarne avvistare ver +avvistarono avvistare ver +avvistarsi avvistare ver +avvistata avvistare ver +avvistate avvistare ver +avvistati avvistare ver +avvistato avvistare ver +avvistava avvistare ver +avvistavano avvistare ver +avvisterà avvistare ver +avvisti avvedersi ver +avvisto avvedersi ver +avvistò avvistare ver +avvisò avvisare ver +avvita avvitare ver +avvitamenti avvitamento nom +avvitamento avvitamento nom +avvitando avvitare ver +avvitandosi avvitare ver +avvitano avvitare ver +avvitarci avvitare ver +avvitare avvitare ver +avvitarle avvitare ver +avvitarono avvitare ver +avvitarsi avvitare ver +avvitata avvitare ver +avvitate avvitare ver +avvitati avvitare ver +avvitato avvitare ver +avviterebbe avvitare ver +avviti avvitare ver +avvitiamoci avvitare ver +avviva avvivare ver +avvivano avvivare ver +avvivare avvivare ver +avvizzimenti avvizzimento nom +avvizzimento avvizzimento nom +avvizzire avvizzire ver +avvizzisce avvizzire ver +avvizziscono avvizzire ver +avvizzita avvizzire ver +avvizzite avvizzire ver +avvizziti avvizzire ver +avvizzito avvizzire ver +avvizzì avvizzire ver +avviò avviare ver +avvocata avvocata nom +avvocate avvocata nom +avvocatesca avvocatesco adj +avvocatesco avvocatesco adj +avvocatessa avvocatessa nom +avvocatesse avvocatessa nom +avvocati avvocato nom +avvocato avvocato nom +avvocatura avvocatura nom +avvocature avvocatura nom +avvolga avvolgere ver +avvolgano avvolgere ver +avvolge avvolgere ver +avvolgendo avvolgere ver +avvolgendogli avvolgere ver +avvolgendola avvolgere ver +avvolgendole avvolgere ver +avvolgendoli avvolgere ver +avvolgendolo avvolgere ver +avvolgendone avvolgere ver +avvolgendoselo avvolgere ver +avvolgendosi avvolgere ver +avvolgente avvolgente adj +avvolgenti avvolgente adj +avvolgere avvolgere ver +avvolgerebbe avvolgere ver +avvolgerla avvolgere ver +avvolgerle avvolgere ver +avvolgerli avvolgere ver +avvolgerlo avvolgere ver +avvolgermi avvolgere ver +avvolgerne avvolgere ver +avvolgersi avvolgere ver +avvolgerti avvolgere ver +avvolgervi avvolgere ver +avvolgerà avvolgere ver +avvolgesse avvolgere ver +avvolgessero avvolgere ver +avvolgeva avvolgere ver +avvolgevano avvolgere ver +avvolgi avvolgere ver +avvolgibile avvolgibile adj +avvolgibili avvolgibile adj +avvolgimenti avvolgimento nom +avvolgimento avvolgimento nom +avvolgimi avvolgere ver +avvolgo avvolgere ver +avvolgono avvolgere ver +avvolse avvolgere ver +avvolsero avvolgere ver +avvolta avvolgere ver +avvolte avvolgere ver +avvolti avvolgere ver +avvolto avvolgere ver +avvoltoi avvoltoio nom +avvoltoio avvoltoio nom +ayatollah ayatollah nom +azalea azalea nom +azalee azalea nom +azera azero nom +azere azero nom +azeri azero nom +azero azero nom +azienda azienda nom +aziendale aziendale adj +aziendali aziendale adj +aziende azienda nom +azimut azimut nom +aziona azionare ver +azionale azionare ver +azionali azionare ver +azionamento azionamento nom +azionando azionare ver +azionandola azionare ver +azionandoli azionare ver +azionandolo azionare ver +azionandosi azionare ver +azionano azionare ver +azionante azionare ver +azionanti azionare ver +azionare azionare ver +azionari azionario adj +azionaria azionario adj +azionariato azionariato nom +azionarie azionario adj +azionario azionario adj +azionarla azionare ver +azionarli azionare ver +azionarlo azionare ver +azionarono azionare ver +azionarsi azionare ver +azionassero azionare ver +azionata azionare ver +azionate azionare ver +azionati azionare ver +azionato azionare ver +azionava azionare ver +azionavano azionare ver +azione azione nom +azionerà azionare ver +azioni azione nom +azionino azionare ver +azionista azionista nom +azioniste azionista nom +azionisti azionista nom +aziono azionare ver +azionò azionare ver +azoici azoico adj +azoico azoico adj +azotata azotato adj +azotate azotato adj +azotati azotato adj +azotato azotato adj +azotemia azotemia nom +azoto azoto nom +azza azza nom +azzanna azzannare ver +azzannando azzannare ver +azzannandola azzannare ver +azzannandoli azzannare ver +azzannandolo azzannare ver +azzannano azzannare ver +azzannarci azzannare ver +azzannare azzannare ver +azzannarla azzannare ver +azzannarlo azzannare ver +azzannarono azzannare ver +azzannarsi azzannare ver +azzannata azzannare ver +azzannati azzannare ver +azzannato azzannare ver +azzannerà azzannare ver +azzanni azzannare ver +azzannò azzannare ver +azzarda azzardare ver +azzardando azzardare ver +azzardandosi azzardare ver +azzardano azzardare ver +azzardarci azzardare ver +azzardare azzardare ver +azzardarmi azzardare ver +azzardarne azzardare ver +azzardarono azzardare ver +azzardarsi azzardare ver +azzardasse azzardare ver +azzardata azzardare ver +azzardate azzardato adj +azzardatevi azzardare ver +azzardati azzardato adj +azzardato azzardare ver +azzardava azzardare ver +azzardavano azzardare ver +azzardavo azzardare ver +azzarderanno azzardare ver +azzarderebbe azzardare ver +azzarderebbero azzardare ver +azzarderei azzardare ver +azzarderà azzardare ver +azzarderò azzardare ver +azzardi azzardo nom +azzardiamo azzardare ver +azzardiamoci azzardare ver +azzardo azzardo nom +azzardoso azzardoso adj +azzardò azzardare ver +azze azza nom +azzecca azzeccare ver +azzeccagarbugli azzeccagarbugli nom +azzeccando azzeccare ver +azzeccandoci azzeccare ver +azzeccano azzeccare ver +azzeccarci azzeccare ver +azzeccare azzeccare ver +azzeccarono azzeccare ver +azzeccasse azzeccare ver +azzeccata azzeccare ver +azzeccate azzeccare ver +azzeccati azzeccare ver +azzeccato azzeccare ver +azzeccava azzeccare ver +azzeccavano azzeccare ver +azzecchi azzeccare ver +azzecchino azzeccare ver +azzecco azzeccare ver +azzeccò azzeccare ver +azzera azzerare ver +azzeramento azzeramento nom +azzerando azzerare ver +azzerandogli azzerare ver +azzerandole azzerare ver +azzerandolo azzerare ver +azzerandone azzerare ver +azzerano azzerare ver +azzerare azzerare ver +azzerarla azzerare ver +azzerarle azzerare ver +azzerarlo azzerare ver +azzerarne azzerare ver +azzerarono azzerare ver +azzerarsi azzerare ver +azzerata azzerare ver +azzerate azzerare ver +azzerati azzerare ver +azzerato azzerare ver +azzerava azzerare ver +azzeravano azzerare ver +azzererei azzerare ver +azzererà azzerare ver +azzeri azzerare ver +azzeriamo azzerare ver +azzero azzerare ver +azzerò azzerare ver +azzima azzima nom +azzimati azzimato adj +azzimato azzimato adj +azzimi azzima|azzimo nom +azzimo azzimo nom +azzittire azzittire ver +azzittì azzittire ver +azzoppa azzoppare ver +azzoppandolo azzoppare ver +azzoppare azzoppare ver +azzoppata azzoppare ver +azzoppate azzoppare ver +azzoppati azzoppare ver +azzoppato azzoppare ver +azzoppo azzoppare ver +azzoppò azzoppare ver +azzuffa azzuffare ver +azzuffandosi azzuffare ver +azzuffano azzuffare ver +azzuffarci azzuffare ver +azzuffare azzuffare ver +azzuffarono azzuffare ver +azzuffarsi azzuffare ver +azzuffarvi azzuffare ver +azzuffati azzuffare ver +azzuffato azzuffare ver +azzuffino azzuffare ver +azzuffò azzuffare ver +azzurra azzurro adj +azzurrabili azzurrabile adj +azzurrante azzurrare ver +azzurranti azzurrare ver +azzurrare azzurrare ver +azzurrata azzurrare ver +azzurrate azzurrare ver +azzurrati azzurrare ver +azzurrato azzurrare ver +azzurre azzurro adj +azzurri azzurro adj +azzurrina azzurrino adj +azzurrine azzurrino adj +azzurrini azzurrino nom +azzurrino azzurrino adj +azzurrite azzurrite nom +azzurro azzurro adj +azzurrognola azzurrognolo adj +azzurrognole azzurrognolo adj +azzurrognoli azzurrognolo adj +azzurrognolo azzurrognolo adj +b b abr +babau babau nom +babbei babbeo nom +babbeo babbeo nom +babbi babbo nom +babbo babbo nom +babbucce babbuccia nom +babbuccia babbuccia nom +babbuini babbuino nom +babbuino babbuino nom +babele babele nom +babelica babelico adj +babeliche babelico adj +babelici babelico adj +babelico babelico adj +babilonese babilonese adj +babilonesi babilonese adj +babilonia babilonia nom +babilonie babilonia nom +babirussa babirussa nom +babordo babordo nom +baby baby adj +babydoll babydoll nom +babysitter babysitter nom +babá babá nom +baca bacare ver +bacai bacare ver +bacala bacare ver +bacane bacare ver +bacano bacare ver +bacar bacare ver +bacata bacato adj +bacate bacato adj +bacati bacare ver +bacato bacare ver +bacavi bacare ver +bacca bacca nom +baccagliare baccagliare ver +baccaglio baccagliare ver +baccalaureato baccalaureato nom +baccalà baccalà nom +baccanale baccanale nom +baccanali baccanale nom +baccani baccano nom +baccano baccano nom +baccante baccante nom +baccanti baccante nom +baccarat baccarat nom +baccarà baccarà nom +baccelli baccello nom +baccelliere baccelliere nom +baccellieri baccelliere nom +baccello baccello nom +bacche bacca nom +bacchetta bacchetta nom +bacchettando bacchettare ver +bacchettano bacchettare ver +bacchettare bacchettare ver +bacchettarli bacchettare ver +bacchettarmi bacchettare ver +bacchettata bacchettata nom +bacchettate bacchettata nom +bacchettatemi bacchettare ver +bacchettati bacchettare ver +bacchettato bacchettare ver +bacchette bacchetta nom +bacchetterà bacchettare ver +bacchetterò bacchettare ver +bacchetti bacchetto nom +bacchetto bacchetto nom +bacchettona bacchettone nom +bacchettone bacchettone nom +bacchettoni bacchettone nom +bacchettò bacchettare ver +bacchi bacchio nom +bacchia bacchiare ver +bacchiaci bacchiare ver +bacchiatura bacchiatura nom +bacchica bacchico adj +bacchiche bacchico adj +bacchici bacchico adj +bacchico bacchico adj +bacchino bacchiare ver +bacchio bacchio nom +bacerai baciare ver +baceranno baciare ver +bacerebbe baciare ver +bacerà baciare ver +bacerò baciare ver +bacheca bacheca nom +bacheche bacheca nom +bachelite bachelite nom +bacheliti bachelite nom +bacherozzi bacherozzo nom +bacherozzo bacherozzo nom +bachi baco nom +bachicoltore bachicoltore nom +bachicoltori bachicoltore nom +bachicoltura bachicoltura nom +bachino bacare ver +baci bacio nom +bacia bacio adj +baciai baciare ver +baciala baciare ver +baciamani baciamano nom +baciamano baciamano nom +baciami baciare ver +baciamo baciare ver +baciamoci baciare ver +baciando baciare ver +baciandogli baciare ver +baciandola baciare ver +baciandole baciare ver +baciandoli baciare ver +baciandolo baciare ver +baciandosi baciare ver +baciandoti baciare ver +baciano baciare ver +baciante baciare ver +baciapile baciapile nom +baciar baciare ver +baciarci baciare ver +baciare baciare ver +baciargli baciare ver +baciarla baciare ver +baciarle baciare ver +baciarli baciare ver +baciarlo baciare ver +baciarmi baciare ver +baciarne baciare ver +baciarono baciare ver +baciarsi baciare ver +baciarti baciare ver +baciasse baciare ver +baciassero baciare ver +baciassi baciare ver +baciata baciare ver +baciate baciare ver +baciatemi baciare ver +baciatevi baciare ver +baciati baciare ver +baciato baciare ver +baciava baciare ver +baciavano baciare ver +baciavo baciare ver +bacile bacile nom +bacili bacile nom +bacilla bacillare ver +bacillare bacillare ver +bacilli bacillo nom +bacillo bacillo nom +bacinella bacinella nom +bacinelle bacinella nom +bacinetti bacinetto nom +bacinetto bacinetto nom +bacini bacino nom +bacino bacino nom +bacio bacio nom +baciucchi baciucchiare ver +baciò baciare ver +background background nom +backspace backspace nom +baco baco nom +bacoli bacolo nom +bacolo bacolo nom +bacon bacon nom +bacucco bacucco nom +bada bada nom +badai badare ver +badala badare ver +badali badare ver +badalo badare ver +badami badare ver +badando badare ver +badano badare ver +badante badare ver +badanti badare ver +badar badare ver +badarci badare ver +badare badare ver +badargli badare ver +badarle badare ver +badarono badare ver +badarsi badare ver +badasse badare ver +badate badare ver +badato badare ver +badava badare ver +badavano badare ver +badavi badare ver +badavo badare ver +bade bada nom +baderà badare ver +badessa badessa nom +badesse badessa nom +badi badare ver +badia badia nom +badiale badiale adj +badiali badiale adj +badiamo badare ver +badiane badiana nom +badie badia nom +badilanti badilante nom +badilate badilata nom +badile badile nom +badili badile nom +badino badare ver +bado badare ver +badò badare ver +baedecker baedecker nom +baffi baffo nom +baffo baffo nom +baffone baffone nom +baffoni baffone nom +baffuta baffuto adj +baffute baffuto adj +baffuti baffuto adj +baffuto baffuto adj +bagagli bagaglio nom +bagagliera bagagliera nom +bagagliere bagagliera nom +bagaglio bagaglio nom +bagaliaio bagaliaio nom +bagarinaggio bagarinaggio nom +bagarini bagarino nom +bagarino bagarino nom +bagarre bagarre nom +bagasce bagascia nom +bagascia bagascia nom +bagatella bagatella nom +bagatelle bagatella nom +baggianata baggianata nom +baggianate baggianata nom +baggiani baggiano adj +baggiano baggiano adj +bagheri baghero nom +baghero baghero nom +bagli baglio nom +baglio baglio nom +bagliore bagliore nom +bagliori bagliore nom +bagna bagnare ver +bagnai bagnare ver +bagnala bagnare ver +bagnammo bagnare ver +bagnando bagnare ver +bagnandola bagnare ver +bagnandoli bagnare ver +bagnandolo bagnare ver +bagnandone bagnare ver +bagnandosi bagnare ver +bagnano bagnare ver +bagnante bagnante nom +bagnanti bagnante nom +bagnare bagnare ver +bagnarla bagnare ver +bagnarle bagnare ver +bagnarli bagnare ver +bagnarlo bagnare ver +bagnarmi bagnare ver +bagnarola bagnarola nom +bagnarole bagnarola nom +bagnarono bagnare ver +bagnarsi bagnare ver +bagnasciuga bagnasciuga nom +bagnasse bagnare ver +bagnassero bagnare ver +bagnata bagnare ver +bagnate bagnare ver +bagnati bagnare ver +bagnato bagnare ver +bagnatura bagnatura nom +bagnature bagnatura nom +bagnava bagnare ver +bagnavano bagnare ver +bagneremo bagnare ver +bagnerà bagnare ver +bagni bagno nom +bagnina bagnino nom +bagnini bagnino nom +bagnino bagnino nom +bagno bagno nom +bagnoli bagnolo nom +bagnolo bagnolo nom +bagnomaria bagnomaria nom +bagnoschiuma bagnoschiuma nom +bagnò bagnare ver +bagolari bagolaro nom +bagolaro bagolaro nom +bagordi bagordo nom +bagordo bagordo nom +baguette baguette nom +bah bah int +bai baio adj +baia baia nom +baiadera baiadera adj +baiadere baiadera nom +baicoli baicolo nom +baicolo baicolo nom +baie baio adj +bailamme bailamme nom +baio baio adj +baiocchi baiocco nom +baiocco baiocco nom +baionetta baionetta nom +baionettata baionettata nom +baionettate baionettata nom +baionette baionetta nom +baita baita nom +baite baita nom +balalaica balalaica nom +balani balano nom +balanino balanino nom +balano balano nom +balausta balausta nom +balaustra balaustra nom +balaustrata balaustrata nom +balaustrate balaustrata nom +balaustre balaustra nom +balaustri balaustro nom +balaustro balaustro nom +balba balbo adj +balbe balbo adj +balbetta balbettare ver +balbettamento balbettamento nom +balbettando balbettare ver +balbettano balbettare ver +balbettante balbettare ver +balbettanti balbettare ver +balbettare balbettare ver +balbettarono balbettare ver +balbettasse balbettare ver +balbettato balbettare ver +balbettava balbettare ver +balbettavano balbettare ver +balbetterà balbettare ver +balbetti balbettare ver +balbettii balbettio nom +balbettio balbettio nom +balbettò balbettare ver +balbi balbo adj +balbo balbo adj +balbuzie balbuzie nom +balbuziente balbuziente adj +balbuzienti balbuziente nom +balcani balcani nom +balcanica balcanico adj +balcaniche balcanico adj +balcanici balcanico adj +balcanico balcanico adj +balconata balconata nom +balconate balconata nom +balcone balcone nom +balconi balcone nom +balda baldo adj +baldacchini baldacchino nom +baldacchino baldacchino nom +baldanza baldanza nom +baldanzosa baldanzoso adj +baldanzose baldanzoso adj +baldanzosi baldanzoso adj +baldanzoso baldanzoso adj +balde baldo adj +baldi baldo adj +baldo baldo adj +baldoria baldoria nom +baldorie baldoria nom +baldracca baldracca nom +baldracche baldracca nom +balena balena nom +balenando balenare ver +balenano balenare ver +balenante balenare ver +balenanti balenare ver +balenar balenare ver +balenare balenare ver +balenarmi balenare ver +balenarono balenare ver +balenata balenare ver +balenati balenare ver +balenato balenare ver +balenava balenare ver +balenavano balenare ver +balene balena nom +baleneria baleneria nom +baleni baleno nom +baleniera baleniero adj +baleniere baleniero adj +balenieri baleniere nom +baleniero baleniero adj +balenii balenio nom +balenio balenio nom +baleno baleno nom +balenottera balenottera nom +balenottere balenottera nom +balenò balenare ver +balera balera nom +balere balera nom +balestra balestra nom +balestrare balestrare ver +balestrasse balestrare ver +balestrata balestrata nom +balestrate balestrata nom +balestre balestra nom +balestri balestrare ver +balestriere balestriere nom +balestrieri balestriere nom +balestrino balestrare ver +balestro balestrare ver +balestruccio balestruccio nom +bali balio nom +balia balia nom +baliaggi baliaggio nom +baliaggio baliaggio nom +baliatici baliatico adj +baliatico baliatico adj +balilla balilla nom +balio balio nom +balipedio balipedio nom +balista balista nom +baliste balista nom +balistica balistico adj +balistiche balistico adj +balistici balistico adj +balistico balistico adj +balistite balistite nom +balivi balivo nom +balivo balivo nom +balla balla nom +ballabile ballabile adj +ballabili ballabile adj +ballai ballare ver +ballala ballare ver +ballali ballare ver +ballami ballare ver +ballammo ballare ver +ballando ballare ver +ballandole ballare ver +ballano ballare ver +ballante ballare ver +ballanti ballare ver +ballar ballare ver +ballarci ballare ver +ballare ballare ver +ballarla ballare ver +ballarle ballare ver +ballarono ballare ver +ballasse ballare ver +ballassero ballare ver +ballata ballata nom +ballate ballata nom +ballati ballare ver +ballato ballare ver +ballatoi ballatoio nom +ballatoio ballatoio nom +ballava ballare ver +ballavano ballare ver +ballavi ballare ver +balle balla nom +ballerai ballare ver +balleranno ballare ver +balleremo ballare ver +ballerina ballerina|ballerino nom +ballerine ballerina|ballerino nom +ballerini ballerino adj +ballerino ballerino adj +ballerà ballare ver +ballerò ballare ver +balletti balletto nom +balletto balletto nom +balli ballo nom +balliamo ballare ver +ballino ballare ver +ballista ballista nom +balliste ballista nom +ballisti ballista nom +ballo ballo nom +ballonzolando ballonzolare ver +ballonzolo ballonzolare ver +ballotta ballotta nom +ballottaggi ballottaggio nom +ballottaggio ballottaggio nom +ballotte ballotta nom +ballotti ballottare ver +ballotto ballottare ver +ballò ballare ver +balneare balneare adj +balneari balneare adj +balneazione balneazione nom +balnei balneo nom +balneo balneo nom +balneoterapia balneoterapia nom +balocca baloccare ver +baloccarsi baloccare ver +balocchi balocco nom +balocco balocco nom +balorda balordo adj +balordaggine balordaggine nom +balordaggini balordaggine nom +balorde balordo adj +balordi balordo nom +balordo balordo adj +balsa balsa nom +balsami balsamo nom +balsamica balsamico adj +balsamiche balsamico adj +balsamici balsamico adj +balsamico balsamico adj +balsamina balsamina nom +balsamo balsamo nom +balse balsa nom +balta balta nom +balte balta nom +balteo balteo nom +baltica baltico adj +baltiche baltico adj +baltici baltico adj +baltico baltico adj +baluardi baluardo nom +baluardo baluardo nom +baluba baluba adj +balugina baluginare ver +baluginano baluginare ver +baluginante baluginare ver +baluginanti baluginare ver +baluginare baluginare ver +balza balza nom +balzai balzare ver +balzana balzano adj +balzando balzare ver +balzandogli balzare ver +balzane balzano adj +balzani balzano adj +balzano balzano adj +balzante balzare ver +balzanti balzare ver +balzar balzare ver +balzare balzare ver +balzarle balzare ver +balzarono balzare ver +balzata balzare ver +balzate balzare ver +balzati balzare ver +balzato balzare ver +balzava balzare ver +balzavano balzare ver +balze balza nom +balzelli balzello nom +balzello balzello nom +balzerà balzare ver +balzi balzo nom +balzino balzare ver +balzo balzo nom +balzò balzare ver +bambagia bambagia nom +bambagina bambagino adj +bambagini bambagino adj +bambina bambino nom +bambinaia bambinaia nom +bambinaie bambinaia nom +bambinata bambinata nom +bambinate bambinata nom +bambine bambino nom +bambinesca bambinesco adj +bambinesche bambinesco adj +bambinesco bambinesco adj +bambini bambino nom +bambino bambino nom +bambinone bambinone nom +bambinoni bambinone nom +bambocci bamboccio nom +bambocciata bambocciata nom +bambocciate bambocciata nom +bamboccio bamboccio nom +bambola bambola nom +bambole bambola nom +bamboli bambolo nom +bambolo bambolo nom +bambolona bambolona|bambolone nom +bambolotti bambolotto nom +bambolotto bambolotto nom +banale banale adj +banali banale adj +banalità banalità nom +banalizza banalizzare ver +banalizzando banalizzare ver +banalizzandolo banalizzare ver +banalizzante banalizzare ver +banalizzanti banalizzare ver +banalizzare banalizzare ver +banalizzarla banalizzare ver +banalizzata banalizzare ver +banalizzate banalizzare ver +banalizzati banalizzare ver +banalizzato banalizzare ver +banalizzerebbe banalizzare ver +banalizzerei banalizzare ver +banalizzo banalizzare ver +banana banana nom +banane banana nom +bananeti bananeto nom +bananeto bananeto nom +banani banano nom +bananiera bananiero adj +bananiere bananiera nom +banano banano nom +banca banca nom +bancale bancale nom +bancali bancale nom +bancarella bancarella nom +bancarelle bancarella nom +bancari bancario adj +bancaria bancario adj +bancarie bancario adj +bancario bancario adj +bancarotta bancarotta nom +bancarottiere bancarottiere nom +bancarottieri bancarottiere nom +banche banca nom +banchetta banchettare ver +banchettando banchettare ver +banchettano banchettare ver +banchettante banchettare ver +banchettanti banchettare ver +banchettare banchettare ver +banchettarono banchettare ver +banchettato banchettare ver +banchettava banchettare ver +banchettavano banchettare ver +banchetti banchetto nom +banchetto banchetto nom +banchettò banchettare ver +banchi banco nom +banchiera banchiere nom +banchiere banchiere nom +banchieri banchiere nom +banchina banchina nom +banchinaggio banchinaggio nom +banchine banchina nom +banchisa banchisa nom +banchise banchisa nom +banchista banchista nom +banco banco nom +bancomat bancomat nom +bancone bancone nom +banconi bancone nom +banconista banconista nom +banconota banconota nom +banconote banconota nom +band band nom +banda banda nom +bandata bandato adj +bandati bandato nom +bandato bandato nom +bande banda nom +bandeau bandeau nom +bandella bandella nom +bandelle bandella nom +bandendo bandire ver +bandendola bandire ver +bandendoli bandire ver +bandendolo bandire ver +banderilla banderilla nom +banderillero banderillero nom +banderuola banderuola nom +banderuole banderuola nom +bandi bando nom +bandiamo bandire ver +bandiamolo bandire ver +bandiera bandiera nom +bandierai bandieraio nom +bandieraio bandieraio nom +bandiere bandiera nom +bandierina bandierina nom +bandierine bandierina nom +bandinelle bandinella nom +bandir bandire ver +bandire bandire ver +bandirebbe bandire ver +bandirei bandire ver +bandirla bandire ver +bandirle bandire ver +bandirli bandire ver +bandirlo bandire ver +bandirmi bandire ver +bandirne bandire ver +bandirono bandire ver +bandirà bandire ver +bandisca bandire ver +bandiscano bandire ver +bandisce bandire ver +bandisco bandire ver +bandiscono bandire ver +bandisse bandire ver +bandista bandista nom +bandisti bandista nom +bandistica bandistico adj +bandistiche bandistico adj +bandistici bandistico adj +bandistico bandistico adj +bandita bandire ver +bandite bandire ver +banditelo bandire ver +banditi bandito nom +banditismi banditismo nom +banditismo banditismo nom +bandito bandire ver +banditore banditore nom +banditori banditore nom +banditrice banditore nom +bandiva bandire ver +bandivano bandire ver +bando bando nom +bandoli bandolo nom +bandoliera bandoliera nom +bandoliere bandoliera nom +bandolo bandolo nom +bandone bandone nom +bandoni bandone nom +bandì bandire ver +bang bang nom +banjo banjo nom +bank bank nom +bantu bantu adj +baobab baobab nom +bar bar nom +bara bara nom +barabba barabba nom +baracca baracca nom +baraccamenti baraccamento nom +baraccamento baraccamento nom +baraccata baraccato adj +baraccate baraccato adj +baraccati baraccato adj +baraccato baraccato adj +baracche baracca nom +baracchini baracchino nom +baracchino baracchino nom +baraccone baraccone nom +baracconi baraccone nom +baraci barare ver +baragge baraggia nom +baraggia baraggia nom +baragli barare ver +barai barare ver +barale barare ver +barali barare ver +barami barare ver +barando barare ver +barane barare ver +barano barare ver +barante barare ver +baraonda baraonda nom +baraonde baraonda nom +barar barare ver +barare barare ver +barasse barare ver +barassi barare ver +barata barare ver +barate barare ver +baratela barare ver +barateli barare ver +barati barare ver +barato barare ver +baratri baratro nom +baratro baratro nom +baratta barattare ver +barattando barattare ver +barattandola barattare ver +barattandolo barattare ver +barattano barattare ver +barattare barattare ver +barattarla barattare ver +barattarle barattare ver +barattarlo barattare ver +barattarono barattare ver +barattata barattare ver +barattate barattare ver +barattati barattare ver +barattato barattare ver +barattava barattare ver +barattavano barattare ver +baratterei barattare ver +baratteria baratteria nom +baratterie baratteria nom +baratterà barattare ver +baratti baratto nom +barattiere barattiere nom +barattieri barattiere nom +barattino barattare ver +baratto baratto nom +barattoli barattolo nom +barattolo barattolo nom +barattò barattare ver +barava barare ver +baravano barare ver +baravi barare ver +barba barba nom +barbabietola barbabietola nom +barbabietole barbabietola nom +barbacane barbacane nom +barbacani barbacane nom +barbaforte barbaforte nom +barbagianni barbagianni nom +barbagli barbaglio nom +barbaglio barbaglio nom +barbanera barbanera nom +barbara barbaro adj +barbaramente barbaramente adv +barbare barbaro adj +barbaresca barbaresco adj +barbaresche barbaresco adj +barbareschi barbaresco adj +barbaresco barbaresco adj +barbari barbaro nom +barbarica barbarico adj +barbariche barbarico adj +barbarici barbarico adj +barbarico barbarico adj +barbarie barbarie nom +barbarismi barbarismo nom +barbarismo barbarismo nom +barbaro barbaro adj +barbassoro barbassoro nom +barbata barbato adj +barbate barbato adj +barbatella barbatella nom +barbatelle barbatella nom +barbati barbato adj +barbato barbato adj +barbazzale barbazzale nom +barbe barba nom +barbecue barbecue nom +barbera barbera nom +barberi barbero nom +barbero barbero nom +barbetta barbetta nom +barbette barbetta nom +barbi barbo nom +barbicane barbicare ver +barbiere barbiere nom +barbieri barbiere nom +barbieria barbieria nom +barbigli barbiglio nom +barbiglio barbiglio nom +barbina barbino adj +barbine barbino adj +barbini barbino adj +barbino barbino adj +barbiturici barbiturico nom +barbiturico barbiturico nom +barbo barbo nom +barbogi barbogio nom +barbogio barbogio adj +barbone barbone nom +barboni barbone nom +barbosa barboso adj +barbosi barboso adj +barboso barboso adj +barbozza barbozza nom +barbugliato barbugliare ver +barbuglio barbugliare ver +barbula barbula nom +barbule barbula nom +barbuta barbuto adj +barbute barbuto adj +barbuti barbuto adj +barbuto barbuto adj +barca barca nom +barcacce barcaccia nom +barcaccia barcaccia nom +barcaioli barcaiolo nom +barcaiolo barcaiolo nom +barcamena barcamenarsi ver +barcamenandoci barcamenarsi ver +barcamenandosi barcamenarsi ver +barcamenano barcamenarsi ver +barcamenare barcamenarsi ver +barcamenarmi barcamenarsi ver +barcamenarono barcamenarsi ver +barcamenarsi barcamenarsi ver +barcamenarti barcamenarsi ver +barcamenato barcamenarsi ver +barcamenava barcamenarsi ver +barcamenò barcamenarsi ver +barcarizzo barcarizzo nom +barcarola barcarola nom +barcarole barcarola nom +barcata barcata nom +barche barca nom +barcheggio barcheggio nom +barchetta barchetta nom +barchette barchetta nom +barchini barchino nom +barchino barchino nom +barcolla barcollare ver +barcollamento barcollamento nom +barcollando barcollare ver +barcollano barcollare ver +barcollante barcollare ver +barcollanti barcollare ver +barcollare barcollare ver +barcollava barcollare ver +barcollo barcollare ver +barcollò barcollare ver +barcone barcone nom +barconi barcone nom +barda barda nom +bardai bardare ver +bardala bardare ver +bardana bardana nom +bardane bardana nom +bardano bardare ver +bardar bardare ver +bardare bardare ver +bardata bardare ver +bardati bardare ver +bardato bardare ver +bardatura bardatura nom +bardature bardatura nom +barde barda nom +bardi bardo nom +bardigli bardiglio nom +bardiglio bardiglio nom +bardino bardare ver +bardo bardo nom +bardolino bardolino nom +bardotti bardotto nom +bardotto bardotto nom +bardò bardare ver +bare bara nom +barella barella nom +barellai barellare ver +barellate barellare ver +barellati barellare ver +barelle barella nom +barelli barellare ver +barello barellare ver +barena barena nom +barene barena nom +bareno bareno nom +barese barese adj +baresi barese adj +bargelli bargello nom +bargello bargello nom +bargigli bargiglio nom +bargiglio bargiglio nom +bari bario|baro nom +baria baria nom +bariamo barare ver +baribal baribal nom +barica barico adj +baricentri baricentro nom +baricentro baricentro nom +bariche barico adj +barici barico adj +barico barico adj +barie baria nom +barile barile nom +bariletti bariletto nom +bariletto bariletto nom +barili barile nom +barilotti barilotto nom +barilotto barilotto nom +barino barare ver +bario bario nom +barione barione nom +barioni barione nom +barista barista nom +bariste barista nom +baristi barista nom +baritonale baritonale adj +baritonali baritonale adj +baritoni baritono nom +baritono baritono nom +barlume barlume nom +barlumi barlume nom +barman barman nom +barnabita barnabita nom +barnabiti barnabita nom +baro baro nom +barocca barocco adj +barocche barocco adj +barocchetti barocchetto nom +barocchetto barocchetto nom +barocchi barocco adj +barocchismi barocchismo nom +barocchismo barocchismo nom +barocci barocco nom +barocco barocco adj +barografi barografo nom +barografo barografo nom +baroli barolo nom +barolo barolo nom +barometri barometro nom +barometrica barometrico adj +barometriche barometrico adj +barometrici barometrico adj +barometrico barometrico adj +barometro barometro nom +baronaggio baronaggio nom +baronale baronale adj +baronali baronale adj +baronata baronata nom +baronati baronato nom +baronato baronato nom +barone barone nom +baronessa barone|baronessa nom +baronesse barone|baronessa nom +baronetti baronetto nom +baronetto baronetto nom +baroni barone nom +baronia baronia nom +baronie baronia nom +barra barra nom +barracani barracano nom +barracano barracano nom +barracelli barracello nom +barracuda barracuda nom +barrage barrage nom +barrai barrare ver +barrali barrare ver +barrando barrare ver +barrano barrare ver +barrare barrare ver +barrarle barrare ver +barrarli barrare ver +barrata barrare ver +barrate barrare ver +barratela barrare ver +barrati barrare ver +barrato barrare ver +barre barra nom +barrerei barrare ver +barri barrare ver +barrica barricare ver +barricando barricare ver +barricandosi barricare ver +barricano barricare ver +barricare barricare ver +barricarono barricare ver +barricarsi barricare ver +barricata barricata nom +barricate barricata nom +barricati barricare ver +barricato barricare ver +barricavano barricare ver +barricherà barricare ver +barricò barricare ver +barriera barriera nom +barriere barriera nom +barrii barrire ver +barrino barrare ver +barrire barrire ver +barrisca barrire ver +barrisce barrire ver +barriti barrito nom +barrito barrito nom +barro barrare ver +barrocci barroccio nom +barroccini barroccino nom +barroccio barroccio nom +barrì barrire ver +baruffa baruffa nom +baruffare baruffare ver +baruffato baruffare ver +baruffe baruffa nom +baruffi baruffare ver +baruffo baruffare ver +barzelletta barzelletta nom +barzellette barzelletta nom +barò barare ver +basa basare ver +basala basare ver +basale basale adj +basali basale adj +basalti basalto nom +basaltica basaltico adj +basaltiche basaltico adj +basaltici basaltico adj +basaltico basaltico adj +basalto basalto nom +basamenti basamento nom +basamento basamento nom +basami basare ver +basando basare ver +basandoci basare ver +basandola basare ver +basandole basare ver +basandoli basare ver +basandolo basare ver +basandomi basare ver +basandosi basare ver +basandoti basare ver +basandovi basare ver +basano basare ver +basante basare ver +basanti basare ver +basar basare ver +basarci basare ver +basare basare ver +basarla basare ver +basarlo basare ver +basarmi basare ver +basarono basare ver +basarsi basare ver +basarti basare ver +basarvi basare ver +basasse basare ver +basassero basare ver +basassi basare ver +basassimo basare ver +basata basare ver +basate basare ver +basatevi basare ver +basati basare ver +basato basare ver +basava basare ver +basavano basare ver +basavo basare ver +basca basco adj +basche basco adj +baschi basco adj +baschina baschina nom +basco basco adj +base base nom +baseball baseball nom +baseranno basare ver +baserebbe basare ver +baserebbero basare ver +baserei basare ver +baseremmo basare ver +baserà basare ver +baserò basare ver +basetta basetta nom +basette basetta nom +basettone basettone nom +basettoni basettone nom +basi base nom +basiamo basare|basire ver +basiamoci basare|basire ver +basica basico adj +basiche basico adj +basici basico adj +basicità basicità nom +basico basico adj +basilare basilare adj +basilari basilare adj +basilica basilica nom +basilicale basilicale adj +basilicali basilicale adj +basiliche basilica nom +basilici basilico nom +basilico basilico adj +basilischi basilisco nom +basilisco basilisco nom +basino basare ver +basir basire ver +basire basire ver +basisce basire ver +basista basista nom +basisti basista nom +basita basire ver +basite basire ver +basiti basire ver +basito basire ver +basket basket nom +basketball basketball nom +baso basare ver +bassa basso adj +basse basso adj +bassetta bassetta nom +bassette bassetta nom +bassezza bassezza nom +bassezze bassezza nom +bassi basso adj +bassifondi bassifondi nom +bassipiani bassipiani nom +bassissimi bassissimo adj +bassissimo bassissimo adj +basso basso adj +bassofondo bassofondo nom +bassopiani bassopiano nom +bassopiano bassopiano nom +bassorilievi bassorilievo nom +bassorilievo bassorilievo nom +bassotti bassotto nom +bassotto bassotto nom +bassotuba bassotuba nom +bassoventre bassoventre nom +bassura bassura nom +bassure bassura nom +basta bastare ver_sup +bastai bastare ver +bastami bastare ver +bastando bastare ver +bastandogli bastare ver +bastano bastare ver +bastante bastante adj +bastanti bastante adj +bastar bastare ver +bastarci bastare ver +bastarda bastardo adj +bastarde bastardo adj +bastardella bastardella nom +bastardi bastardo nom +bastardo bastardo adj +bastare bastare ver +bastargli bastare ver +bastarle bastare ver +bastarne bastare ver +bastarono bastare ver +bastarti bastare ver +bastarvi bastare ver +bastasi bastare ver +bastasse bastare ver +bastassero bastare ver +bastata bastare ver +bastate bastare ver +bastati bastare ver +bastato bastare ver +bastava bastare ver +bastavano bastare ver +bastavo bastare ver +baste basta nom +basterai bastare ver +basteranno bastare ver +basterebbe bastare ver +basterebbero bastare ver +basterà bastare ver +basterò bastare ver +bastevole bastevole adj +bastevoli bastevole adj +basti bastare ver +bastia bastia nom +bastiamo bastare ver +bastie bastia nom +bastimenti bastimento nom +bastimento bastimento nom +bastino bastare ver +bastionata bastionata nom +bastionate bastionata nom +bastione bastione nom +bastioni bastione nom +basto bastare ver +bastona bastonare ver +bastonaci bastonare ver +bastonando bastonare ver +bastonandole bastonare ver +bastonano bastonare ver +bastonare bastonare ver +bastonarlo bastonare ver +bastonarmi bastonare ver +bastonarono bastonare ver +bastonarsi bastonare ver +bastonata bastonata nom +bastonate bastonata nom +bastonatemi bastonare ver +bastonati bastonare ver +bastonato bastonare ver +bastonatura bastonatura nom +bastonature bastonatura nom +bastonava bastonare ver +bastonavano bastonare ver +bastoncini bastoncino nom +bastoncino bastoncino nom +bastone bastone nom +bastoni bastone nom +bastoniamo bastonare ver +bastono bastonare ver +bastonò bastonare ver +bastò bastare ver +basò basare ver +batacchi batacchio nom +batacchio batacchio nom +batali batalo nom +batalo batalo nom +batata batata nom +batate batata nom +batik batik nom +batimetria batimetria nom +batimetrie batimetria nom +batiscafi batiscafo nom +batiscafo batiscafo nom +batisfera batisfera nom +batisfere batisfera nom +batista batista nom +batiste batista nom +batocchi batocchio nom +batolite batolite nom +batoliti batolite nom +batosta batosta nom +batoste batosta nom +batrace batrace nom +batraci batrace nom +batracomiomachia batracomiomachia nom +batta battere ver +battage battage nom +battagli battaglio nom +battaglia battaglia nom +battaglie battaglia nom +battagliera battagliero adj +battagliere battagliero adj +battaglieri battagliero adj +battagliero battagliero adj +battaglio battaglio nom +battagliola battagliola nom +battaglione battaglione nom +battaglioni battaglione nom +battana battana nom +battane battana nom +battano battere ver +batte battere ver +battei battere ver +battelli battello nom +battelliere battelliere nom +battellieri battelliere nom +battello battello nom +battendo battere ver +battendoci battere ver +battendola battere ver +battendole battere ver +battendoli battere ver +battendolo battere ver +battendomi battere ver +battendone battere ver +battendosi battere ver +battendovi battere ver +battente battente nom +battenti battente nom +batter battere ver +batteranno battere ver +batterci battere ver +battere battere ver +batterebbe battere ver +batterei battere ver +batteremo battere ver +batterete battere ver +batteri batterio nom +batteria batteria nom +batterica batterico adj +batteriche batterico adj +batterici batterico adj +battericida battericida adj +battericide battericida adj +battericidi battericida adj +batterico batterico adj +batterie batteria nom +batterio batterio nom +batteriologi batteriologo nom +batteriologia batteriologia nom +batteriologica batteriologico adj +batteriologiche batteriologico adj +batteriologici batteriologico adj +batteriologico batteriologico adj +batteriologo batteriologo nom +batterioterapia batterioterapia nom +batterista batterista nom +batteristi batterista nom +batterla battere ver +batterle battere ver +batterli battere ver +batterlo battere ver +battermi battere ver +batterne battere ver +batterono battere ver +battersela battere ver +battersi battere ver +batterti battere ver +battervi battere ver +batterà battere ver +batterò battere ver +battesimale battesimale adj +battesimali battesimale adj +battesimi battesimo nom +battesimo battesimo nom +battesse battere ver +battessero battere ver +battessimo battere ver +battesti battere ver +battete battere ver +battetele battere ver +battetelo battere ver +battetevi battere ver +batteva battere ver +battevamo battere ver +battevano battere ver +battezza battezzare ver +battezzai battezzare ver +battezzandi battezzando nom +battezzando battezzare ver +battezzandola battezzare ver +battezzandole battezzare ver +battezzandoli battezzare ver +battezzandolo battezzare ver +battezzandosi battezzare ver +battezzano battezzare ver +battezzante battezzare ver +battezzare battezzare ver +battezzarla battezzare ver +battezzarle battezzare ver +battezzarli battezzare ver +battezzarlo battezzare ver +battezzarne battezzare ver +battezzarono battezzare ver +battezzarsi battezzare ver +battezzata battezzare ver +battezzate battezzare ver +battezzati battezzato nom +battezzato battezzare ver +battezzava battezzare ver +battezzavano battezzare ver +battezzeranno battezzare ver +battezzerà battezzare ver +battezzi battezzare ver +battezzo battezzare ver +battezzò battezzare ver +batti battere ver +battiamo battere ver +battibaleno battibaleno nom +battibecchi battibecco nom +battibecco battibecco nom +batticarne batticarne nom +batticuore batticuore nom +battigia battigia nom +battilardo battilardo nom +battile battere ver +battili battere ver +battilo battere ver +battiloro battiloro nom +battimani battimano nom +battimano battimano nom +battimenti battimento nom +battimento battimento nom +battipali battipalo nom +battipalo battipalo nom +battipanni battipanni nom +battipista battipista nom +battiporta battiporta nom +battiscopa battiscopa nom +battista battista adj +battiste battista adj +battisteri battistero nom +battistero battistero nom +battisti battista adj +battistrada battistrada nom +battitacco battitacco nom +battitappeto battitappeto nom +battiti battito nom +battito battito nom +battitore battitore nom +battitori battitore nom +battitrice battitore|battitrice nom +battitrici battitore|battitrice nom +battitura battitura nom +battiture battitura nom +batto battere ver +battola battola nom +battona battona nom +battone battona nom +battono battere ver +battuta battuto adj +battute battuta nom +battuti battere ver +battuto battere ver +battè battere ver +batuffoli batuffolo nom +batuffolo batuffolo nom +bau bau int +baule baule nom +bauletti bauletto nom +bauletto bauletto nom +bauli baule nom +bautte bautta nom +bauxite bauxite nom +bauxiti bauxite nom +bava bava nom +bavagli bavaglio nom +bavaglini bavaglino nom +bavaglino bavaglino nom +bavaglio bavaglio nom +bavarese bavarese adj +bavaresi bavarese adj +bave bava nom +bavella bavella nom +bavelle bavella nom +bavera bavera nom +baveri bavero nom +bavero bavero nom +bavetta bavetta nom +bavette bavetta nom +bavosa bavoso adj +bavose bavoso adj +bavosi bavoso adj +bavoso bavoso adj +bazar bazar nom +bazooka bazooka nom +bazza bazza nom +bazzana bazzana nom +bazzecola bazzecola nom +bazzecole bazzecola nom +bazzica bazzicare ver +bazzicando bazzicare ver +bazzicano bazzicare ver +bazzicare bazzicare ver +bazzicarla bazzicare ver +bazzicasse bazzicare ver +bazzicate bazzicare ver +bazzicato bazzicare ver +bazzicava bazzicare ver +bazzicavano bazzicare ver +bazzicavo bazzicare ver +bazzicherà bazzicare ver +bazzichi bazzicare ver +bazzico bazzicare ver +bazzotti bazzotto adj +be be int +bea beare ver +beai beare ver +beala beare ver +beale beare ver +beane beare ver +beano beare ver +beante beare ver +beanti beare ver +bear beare ver +beare beare ver +bearle beare ver +bearne beare ver +bearsi beare ver +beat beat nom +beata beato nom +beate beato adj +beati beato nom +beatifica beatifico adj +beatificaci beatificare ver +beatificando beatificare ver +beatificante beatificare ver +beatificare beatificare ver +beatificarlo beatificare ver +beatificata beatificare ver +beatificate beatificare ver +beatificati beatificare ver +beatificato beatificare ver +beatificazione beatificazione nom +beatificazioni beatificazione nom +beatifiche beatifico adj +beatificherà beatificare ver +beatificò beatificare ver +beatitudine beatitudine nom +beatitudini beatitudine nom +beato beato adj +beava beare ver +bebé bebé nom +becca beccare ver +beccacce beccaccia nom +beccaccia beccaccia nom +beccaccini beccaccino nom +beccaccino beccaccino nom +beccafichi beccafico nom +beccafico beccafico nom +beccai beccaio nom +beccaio beccaio nom +beccali beccare ver +beccamorti beccamorti|beccamorto nom +beccamorto beccamorto nom +beccando beccare ver +beccandolo beccare ver +beccandomi beccare ver +beccandosi beccare ver +beccano beccare ver +beccante beccare ver +beccapesci beccapesci nom +beccar beccare ver +beccarci beccare ver +beccare beccare ver +beccarla beccare ver +beccarli beccare ver +beccarlo beccare ver +beccarmi beccare ver +beccarne beccare ver +beccarono beccare ver +beccarsi beccare ver +beccarti beccare ver +beccasse beccare ver +beccassero beccare ver +beccassi beccare ver +beccasti beccare ver +beccastrini beccastrino nom +beccata beccare ver +beccate beccata nom +beccatelli beccatello nom +beccatello beccatello nom +beccatevi beccare ver +beccati beccare ver +beccato beccare ver +beccava beccare ver +beccavo beccare ver +beccheggi beccheggio nom +beccheggiare beccheggiare ver +beccheggio beccheggio nom +beccherai beccare ver +beccherebbe beccare ver +beccherei beccare ver +beccheremo beccare ver +beccheria beccheria nom +beccherie beccheria nom +beccherà beccare ver +beccherò beccare ver +becchettano becchettare ver +becchettare becchettare ver +becchettarsi becchettare ver +becchetti becchettare ver +becchettio becchettio nom +becchetto becchettare ver +becchi becco nom +becchiamo beccare ver +becchime becchime nom +becchini becchino nom +becchino becchino nom +becco becco nom +beccucci beccuccio nom +beccuccio beccuccio nom +beccuta beccuto adj +beccuti beccuto adj +beccuto beccuto adj +beccò beccare ver +becera becero adj +becere becero adj +beceri becero adj +becero becero adj +bechamel bechamel nom +becher becher nom +bechica bechico adj +bechiche bechico adj +bechici bechico adj +beduina beduina|beduino nom +beduine beduina|beduino nom +beduini beduino nom +beduino beduino nom +bee bee int +befana befana nom +befane befana nom +beffa beffa nom +beffando beffare ver +beffandolo beffare ver +beffandosi beffare ver +beffano beffare ver +beffarda beffardo adj +beffarde beffardo adj +beffardi beffardo adj +beffardo beffardo adj +beffare beffare ver +beffarla beffare ver +beffarli beffare ver +beffarlo beffare ver +beffarono beffare ver +beffarsi beffare ver +beffata beffare ver +beffate beffare ver +beffati beffare ver +beffato beffare ver +beffavano beffare ver +beffe beffa nom +beffeggia beffeggiare ver +beffeggiando beffeggiare ver +beffeggiano beffeggiare ver +beffeggiare beffeggiare ver +beffeggiarlo beffeggiare ver +beffeggiata beffeggiare ver +beffeggiati beffeggiare ver +beffeggiato beffeggiare ver +beffeggiatore beffeggiatore adj +beffeggiavano beffeggiare ver +beffeggio beffeggiare ver +beffeggiò beffeggiare ver +beffi beffare ver +beffo beffare ver +beffò beffare ver +bega bega nom +beghe bega nom +beghina beghina nom +beghinaggi beghinaggio nom +beghinaggio beghinaggio nom +beghine beghina nom +begliumori begliumori nom +begliuomini begliuomini nom +begonia begonia nom +begonie begonia nom +beguine beguine nom +begum begum nom +beh beh int +behaviorismo behaviorismo nom +bei beare ver +beiamo beare ver +beige beige adj +beilicale beilicale adj +bel bel nom_sup +bela belare ver +belai belare ver +belali belare ver +belami belare ver +belando belare ver +belane belare ver +belano belare ver +belante belare ver +belanti belare ver +belar belare ver +belare belare ver +belasi belare ver +belassi belare ver +belata belare ver +belate belare ver +belati belare ver +belato belato nom +belava belare ver +belavi belare ver +belemniti belemnita nom +belga belga adj +belghe belga adj +belgi belga adj +beli belare ver +belino belare ver +bella bello adj +belladonna belladonna nom +bellamente bellamente adv +bellavista bellavista nom +belle bello adj +belledonne belledonne nom +belletta belletta nom +belletti belletto nom +belletto belletto nom +bellezza bellezza nom +bellezze bellezza nom +belli bello adj +bellica bellico adj +belliche bellico adj +bellici bellico adj +bellicismo bellicismo nom +bellicista bellicista nom +belliciste bellicista nom +bellicisti bellicista nom +bellico bellico adj +bellicosa bellicoso adj +bellicose bellicoso adj +bellicosi bellicoso adj +bellicoso bellicoso adj +belligerante belligerante adj +belligeranti belligerante adj +belligeranza belligeranza nom +belligeranze belligeranza nom +bellimbusti bellimbusto nom +bellimbusto bellimbusto nom +bello bello adj +bellocce belloccio adj +bellocci belloccio adj +belloccia belloccio adj +belloccio belloccio adj +belluina belluino adj +belluine belluino adj +belluini belluino adj +belluino belluino adj +bellumore bellumore nom +belo belare ver +beltà beltà nom +belva belva nom +belve belva nom +belvedere belvedere nom +bema bema nom +bemi bema nom +bemolle bemolle nom +bemolli bemolle nom +ben ben adv_sup +benaccetta benaccetto adj +benaccetti benaccetto adj +benaccetto benaccetto adj +benamati benamato adj +benamato benamato adj +benche benche sw +benchè benchè con +benché benché con +benda benda nom +bendaggi bendaggio nom +bendaggio bendaggio nom +bendando bendare ver +bendandosi bendare ver +bendano bendare ver +bendare bendare ver +bendargli bendare ver +bendarlo bendare ver +bendarsi bendare ver +bendata bendare ver +bendate bendare ver +bendati bendare ver +bendato bendare ver +bendava bendare ver +bende benda nom +bendi bendare ver +bendisposti bendisposto adj +bendisposto bendisposto adj +bendo bendare ver +bendò bendare ver +bene bene adv_sup +benedetta benedire ver +benedette benedire ver +benedetti benedire ver +benedettina benedettino adj +benedettine benedettino adj +benedettini benedettino adj +benedettino benedettino adj +benedetto benedetto adj +benedica benedire ver +benedice benedire ver +benedicendo benedire ver +benedicendola benedire ver +benedicendoli benedire ver +benedicendolo benedire ver +benedicente benedire ver +benedicenti benedire ver +benedicesse benedire ver +benediceva benedire ver +benedicevano benedire ver +benedicevo benedire ver +benedici benedire ver +benediciamo benedire ver +benedico benedire ver +benedicono benedire ver +benediranno benedire ver +benedirci benedire ver +benedire benedire ver +benedirla benedire ver +benedirle benedire ver +benedirli benedire ver +benedirlo benedire ver +benedirti benedire ver +benedirvi benedire ver +benedirà benedire ver +benedirò benedire ver +benedisse benedire ver +benedissero benedire ver +benedite benedire ver +benediteli benedire ver +benedizionale benedizionale nom +benedizionali benedizionale nom +benedizione benedizione nom +benedizioni benedizione nom +beneducata beneducato adj +beneducate beneducato adj +beneducati beneducato adj +beneducato beneducato adj +benedì benedire ver +benefattore benefattore nom +benefattori benefattore nom +benefattrice benefattore adj +benefattrici benefattore nom +benefica benefico adj +beneficando beneficare ver +beneficare beneficare ver +beneficata beneficare ver +beneficate beneficare ver +beneficati beneficare ver +beneficato beneficare ver +beneficava beneficare ver +beneficente beneficente adj +beneficenza beneficenza nom +beneficenze beneficenza nom +beneficeranno beneficiare ver +beneficerebbe beneficiare ver +beneficerebbero beneficiare ver +beneficerà beneficiare ver +benefiche benefico adj +benefici beneficio nom +beneficia beneficiare ver +beneficiale beneficiare ver +beneficiali beneficiare ver +beneficiando beneficiare ver +beneficiandone beneficiare ver +beneficiano beneficiare ver +beneficianti beneficiare ver +beneficiare beneficiare ver +beneficiari beneficiario nom +beneficiaria beneficiario adj +beneficiarie beneficiario adj +beneficiario beneficiario nom +beneficiarne beneficiare ver +beneficiarono beneficiare ver +beneficiasse beneficiare ver +beneficiassero beneficiare ver +beneficiata beneficiare ver +beneficiate beneficiare ver +beneficiati beneficiare ver +beneficiato beneficiare ver +beneficiava beneficiare ver +beneficiavano beneficiare ver +beneficieranno beneficiare ver +beneficierebbe beneficiare ver +beneficierà beneficiare ver +beneficino beneficiare ver +beneficio beneficio nom +beneficiò beneficiare ver +benefico benefico adj +beneficò beneficare ver +benemerenti benemerente adj +benemerenza benemerenza nom +benemerenze benemerenza nom +benemerita benemerito adj +benemerite benemerito adj +benemeriti benemerito adj +benemerito benemerito adj +beneplacito beneplacito nom +benessere benessere nom +benestante benestante adj +benestanti benestante adj +benestare benestare nom +benevola benevolo adj +benevole benevolo adj +benevolente benevolente adj +benevolenti benevolente adj +benevolenza benevolenza nom +benevolenze benevolenza nom +benevoli benevolo adj +benevolo benevolo adj +benfatta benfatto adj +benfatti benfatto adj +benfatto benfatto adj +bengala bengala nom +bengali bengala nom +bengalini bengalino nom +bengalino bengalino nom +bengodi bengodi nom +beni bene nom +beniamina beniamino nom +beniamine beniamino nom +beniamini beniamino nom +beniamino beniamino nom +benigna benigno adj +benigne benigno adj +benigni benigno adj +benignità benignità nom +benigno benigno adj +benintenzionata benintenzionato adj +benintenzionate benintenzionato adj +benintenzionati benintenzionato adj +benintenzionato benintenzionato adj +beninteso beninteso adv_sup +benissimi benissimi adv +benissimo benissimo adv_sup +benna benna nom +bennati bennato adj +bennato bennato adj +benne benna nom +benpensante benpensante adj +benpensanti benpensante nom +benportante benportante adj +benservito benservito nom +bensi bensi sw +bensì bensì con +benthos benthos nom +bentonica bentonico adj +bentoniche bentonico adj +bentonite bentonite nom +bentoniti bentonite nom +bentornata bentornato adj +bentornate bentornato adj +bentornati bentornato nom +bentornato bentornato adj +bentrovata bentrovato adj +bentrovati bentrovato adj +bentrovato bentrovato adj +benvenuta benvenuto adj +benvenute benvenuto adj +benvenuti benvenuto adj +benvenuto benvenuto adj +benvista benvisto adj +benviste benvisto adj +benvisti benvisto adj +benvisto benvisto adj +benvolere benvolere ver +benvoluta benvolere ver +benvolute benvolere ver +benvoluti benvolere ver +benvoluto benvolere ver +benzaldeide benzaldeide nom +benzedrina benzedrina nom +benzene benzene nom +benzeni benzene nom +benzile benzile nom +benzina benzina nom +benzinai benzinaio nom +benzinaio benzinaio nom +benzine benzina nom +benzoica benzoico adj +benzoici benzoico adj +benzoico benzoico adj +benzoile benzoile nom +benzoino benzoino nom +benzolo benzolo nom +benzopirene benzopirene nom +benzopireni benzopirene nom +beo beare ver +beola beola nom +beole beola nom +beona beone nom +beone beone nom +beoni beone nom +beota beota adj +beote beota adj +beoti beota nom +bequadro bequadro nom +ber bere ver +berbera berbero adj +berbere berbero adj +berberi berbero adj +berbero berbero adj +berceli bere ver +berceuse berceuse nom +berci bercio nom +berciano berciare ver +berciante berciare ver +bercianti berciare ver +berciare berciare ver +bercino berciare ver +bercio bercio nom +bere bere ver +bergamasca bergamasco adj +bergamasche bergamasco adj +bergamaschi bergamasco adj +bergamasco bergamasco adj +bergamotta bergamotta nom +bergamotti bergamotto nom +bergamotto bergamotto nom +bergere bergere nom +bergli bere ver +beriberi beriberi nom +berilli berillio|berillo nom +berillio berillio nom +berillo berillo nom +berkeli berkelio nom +berkelio berkelio nom +berla bere ver +berle bere ver +berli bere ver +berlina berlina nom +berline berlina nom +berlinese berlinese adj +berlinesi berlinese adj +berlingozzi berlingozzo nom +berlingozzo berlingozzo nom +berlo bere ver +bermi bere ver +bermuda bermuda nom +bermudiana bermudiana nom +bermudiane bermudiana nom +berne bere ver +bernesca bernesco adj +bernesche bernesco adj +berneschi bernesco adj +bernesco bernesco adj +bernoccoli bernoccolo nom +bernoccolo bernoccolo nom +bernoccoluto bernoccoluto adj +berrai bere ver +berranno bere ver +berrebbe bere ver +berrei bere ver +berremo bere ver +berrete bere ver +berretta berretta nom +berrette berretta nom +berretti berretto nom +berretto berretto nom +berrà bere ver +berrò bere ver +bersagli bersaglio nom +bersaglia bersagliare ver +bersagliando bersagliare ver +bersagliandola bersagliare ver +bersagliandoli bersagliare ver +bersagliandolo bersagliare ver +bersagliandosi bersagliare ver +bersagliano bersagliare ver +bersagliare bersagliare ver +bersagliarla bersagliare ver +bersagliarle bersagliare ver +bersagliarli bersagliare ver +bersagliarlo bersagliare ver +bersagliarono bersagliare ver +bersagliarsi bersagliare ver +bersagliata bersagliare ver +bersagliate bersagliare ver +bersagliati bersagliare ver +bersagliato bersagliare ver +bersagliava bersagliare ver +bersagliavano bersagliare ver +bersagliera bersagliera|bersagliere nom +bersagliere bersagliera|bersagliere nom +bersaglieresca bersaglieresco adj +bersaglieri bersagliere nom +bersaglio bersaglio nom +bersagliò bersagliare ver +bersela bere ver +bersi bere ver +berta berta nom +berte berta nom +bertele bere ver +bertesca bertesca nom +bertesche bertesca nom +berti bere ver +bertucce bertuccia nom +bertuccia bertuccia nom +bervi bere ver +bes bes nom +besciamella besciamella nom +besciamelle besciamella nom +bestemmi bestemmiare ver +bestemmia bestemmia nom +bestemmiando bestemmiare ver +bestemmiano bestemmiare ver +bestemmiare bestemmiare ver +bestemmiarlo bestemmiare ver +bestemmiasse bestemmiare ver +bestemmiassero bestemmiare ver +bestemmiata bestemmiare ver +bestemmiate bestemmiare ver +bestemmiato bestemmiare ver +bestemmiatore bestemmiatore nom +bestemmiatori bestemmiatore nom +bestemmiatrice bestemmiatore nom +bestemmiava bestemmiare ver +bestemmiavano bestemmiare ver +bestemmie bestemmia nom +bestemmino bestemmiare ver +bestemmio bestemmiare ver +bestemmiò bestemmiare ver +bestia bestia nom +bestiale bestiale adj +bestiali bestiale adj +bestialità bestialità nom +bestiame bestiame nom +bestiami bestiame nom +bestiari bestiario nom +bestiario bestiario nom +bestie bestia nom +bestini bestino nom +bestino bestino nom +beta beta adj +betatrone betatrone nom +betel betel nom +beton beton nom +betonaggio betonaggio nom +betoniera betoniera nom +betoniere betoniera nom +betta betta nom +bette betta nom +bettola bettola nom +bettole bettola nom +bettoliere bettoliere nom +bettolieri bettoliere nom +bettolina bettolina nom +bettoline bettolina nom +bettolini bettolino nom +bettolino bettolino nom +bettonica bettonica nom +betulacee betulacee nom +betulla betulla nom +beuta beuta nom +beute beuta nom +beva beva nom +bevanda bevanda nom +bevande bevanda nom +bevano bere ver +bevante bevante nom +bevatrone bevatrone nom +beve bere ver +bevemmo bere ver +bevendo bere ver +bevendola bere ver +bevendole bere ver +bevendolo bere ver +bevendone bere ver +bevente bere ver +beventi bere ver +beveraggi beveraggio nom +beveraggio beveraggio nom +beverini beverino nom +beverino beverino nom +beverone beverone nom +beveroni beverone nom +bevesse bere ver +bevessero bere ver +bevessi bere ver +beveste bere ver +bevesti bere ver +bevete bere ver +bevetene bere ver +beveva bere ver +bevevamo bere ver +bevevano bere ver +bevevate bere ver +bevevi bere ver +bevevo bere ver +bevi bere ver +beviamo bere ver +beviamoci bere ver +beviate bere ver +bevibile bevibile adj +bevibili bevibile adj +bevila bere ver +bevimi bere ver +bevine bere ver +bevisi bere ver +bevitore bevitore nom +bevitori bevitore nom +bevitrice bevitore nom +bevitrici bevitore nom +bevo bere ver +bevono bere ver +bevuta bevuta nom +bevute bevuta nom +bevuti bere ver +bevuto bere ver +bevve bere ver +bevvero bere ver +bevvi bere ver +bey bey nom +bezzi bezzo nom +bezzo bezzo nom +beò beare ver +bhutanesi bhutanese adj +biacca biacca nom +biacche biacca nom +biacchi biacco nom +biacco biacco nom +biada biada nom +biade biada nom +bianca bianco adj +biancastra biancastro adj +biancastre biancastro adj +biancastri biancastro adj +biancastro biancastro adj +bianche bianco adj +biancheggeranno biancheggiare ver +biancheggia biancheggiare ver +biancheggiano biancheggiare ver +biancheggiante biancheggiare ver +biancheggianti biancheggiare ver +biancheggiati biancheggiare ver +biancheggiavano biancheggiare ver +biancheria biancheria nom +bianchetta bianchetto adj +bianchetti bianchetto adj +bianchetto bianchetto adj +bianchezza bianchezza nom +bianchi bianco adj +bianchicce bianchiccio adj +bianchicci bianchiccio adj +bianchiccia bianchiccio adj +bianchiccio bianchiccio adj +bianchii bianchire ver +bianchire bianchire ver +bianchissimo bianchire ver +bianchite bianchire ver +bianco bianco adj +biancone biancone nom +bianconi biancone nom +biancore biancore nom +biancospini biancospino nom +biancospino biancospino nom +biancostato biancostato nom +biasci biasciare ver +biascica biascicare ver +biascicando biascicare ver +biascicata biascicare ver +biascicate biascicare ver +biascicato biascicare ver +biasima biasimare ver +biasimando biasimare ver +biasimandolo biasimare ver +biasimano biasimare ver +biasimar biasimare ver +biasimare biasimare ver +biasimarla biasimare ver +biasimarli biasimare ver +biasimarlo biasimare ver +biasimarmi biasimare ver +biasimarono biasimare ver +biasimarsi biasimare ver +biasimasse biasimare ver +biasimata biasimare ver +biasimate biasimare ver +biasimati biasimare ver +biasimato biasimare ver +biasimava biasimare ver +biasimavano biasimare ver +biasimerò biasimare ver +biasimevole biasimevole adj +biasimevoli biasimevole adj +biasimi biasimo nom +biasimo biasimo nom +biasimò biasimare ver +biathlon biathlon nom +biatomica biatomico adj +biatomiche biatomico adj +biatomici biatomico adj +biatomico biatomico adj +bibbia bibbia nom +bibbie bibbia nom +biberon biberon nom +bibita bibita nom +bibite bibita nom +biblica biblico adj +bibliche biblico adj +biblici biblico adj +biblico biblico adj +bibliobus bibliobus nom +bibliofila bibliofilo adj +bibliofile bibliofilo adj +bibliofili bibliofilo adj +bibliofilia bibliofilia nom +bibliofilie bibliofilia nom +bibliofilo bibliofilo adj +bibliografa bibliografo nom +bibliografi bibliografo nom +bibliografia bibliografia nom +bibliografica bibliografico adj +bibliografiche bibliografico adj +bibliografici bibliografico adj +bibliografico bibliografico adj +bibliografie bibliografia nom +bibliografo bibliografo nom +bibliomane bibliomane nom +bibliomani bibliomane nom +bibliomania bibliomania nom +bibliomanie bibliomania nom +biblioteca biblioteca nom +bibliotecari bibliotecario nom +bibliotecaria bibliotecario nom +bibliotecarie bibliotecario nom +bibliotecario bibliotecario nom +biblioteche biblioteca nom +biblioteconomia biblioteconomia nom +bibula bibulo adj +bibule bibulo adj +bibulo bibulo adj +bica bica nom +bicamerale bicamerale adj +bicamerali bicamerale adj +bicameralismo bicameralismo nom +bicarbonati bicarbonato nom +bicarbonato bicarbonato nom +bicchierata bicchierata nom +bicchiere bicchiere nom +bicchieri bicchiere nom +bicchierino bicchierino nom +bicefala bicefalo adj +bicefale bicefalo adj +bicefali bicefalo adj +bicefalo bicefalo adj +bicentenari bicentenario nom +bicentenario bicentenario nom +biche bica nom +bicicletta bicicletta nom +biciclette bicicletta nom +bicicli biciclo nom +biciclo biciclo nom +bicilindrica bicilindrico adj +bicilindriche bicilindrico adj +bicilindrici bicilindrico adj +bicilindrico bicilindrico adj +bicipite bicipite adj +bicipiti bicipite adj +bicloruro bicloruro nom +bicocca bicocca nom +bicocche bicocca nom +bicolore bicolore adj +bicolori bicolore adj +biconcava biconcavo adj +biconcave biconcavo adj +biconcavo biconcavo adj +biconvessa biconvesso adj +biconvesse biconvesso adj +biconvessi biconvesso adj +biconvesso biconvesso adj +bicorna bicorna nom +bicorne bicorne adj +bicorni bicorne adj +bicorno bicorno nom +bicromia bicromia nom +bicromici bicromico adj +bicromico bicromico adj +bicuspide bicuspide adj +bicuspidi bicuspide adj +bidella bidello nom +bidelli bidello nom +bidello bidello nom +bidente bidente nom +bidimensionale bidimensionale adj +bidimensionali bidimensionale adj +bidona bidonare ver +bidonata bidonata nom +bidonati bidonare ver +bidonato bidonare ver +bidone bidone nom +bidoni bidone nom +bidonvia bidonvia nom +bidonville bidonville nom +bidé bidé nom +bieca bieco adj +bieche bieco adj +biechi bieco adj +bieco bieco adj +biella biella nom +bielle biella nom +bielorussa bielorusso adj +bielorusse bielorusso adj +bielorussi bielorusso adj +bielorusso bielorusso adj +biennale biennale nom +biennali biennale adj +bienne bienne adj +bienni biennio nom +biennio biennio nom +bieticoltori bieticoltore nom +bieticoltura bieticoltura nom +bietola bietola nom +bietole bietola nom +bietolone bietolone nom +bietoloni bietolone nom +bietta bietta nom +biette bietta nom +bifase bifase adj +bifasi bifase adj +bifenile bifenile nom +biffa biffa nom +biffar biffare ver +biffe biffa nom +biffi biffare ver +biffo biffare ver +bifida bifido adj +bifide bifido adj +bifidi bifido adj +bifido bifido adj +bifilare bifilare adj +bifilari bifilare adj +bifocale bifocale adj +bifocali bifocale adj +bifolci bifolco nom +bifolco bifolco nom +bifora bifora nom +biforca biforcare ver +biforcandosi biforcare ver +biforcano biforcare ver +biforcarsi biforcare ver +biforcata biforcare ver +biforcate biforcare ver +biforcati biforcare ver +biforcato biforcare ver +biforcava biforcare ver +biforcavano biforcare ver +biforcazione biforcazione nom +biforcazioni biforcazione nom +biforcherà biforcare ver +biforco biforcare ver +biforcuta biforcuto adj +biforcute biforcuto adj +biforcuti biforcuto adj +biforcuto biforcuto adj +biforcò biforcare ver +bifore bifora nom +biforme biforme adj +bifronte bifronte adj +bifronti bifronte adj +big big nom +biga biga nom +bigama bigamo adj +bigamia bigamia nom +bigamie bigamia nom +bigamo bigamo adj +bigatti bigatto nom +bigatto bigatto nom +bige bigio adj +bigelli bigello nom +bigemina bigemino adj +bighe biga nom +bighellona bighellonare ver +bighellonando bighellonare ver +bighellonano bighellonare ver +bighellonare bighellonare ver +bighellonavano bighellonare ver +bighellone bighellone nom +bighelloni bighellone nom +bigi bigio adj +bigia bigio adj +bigiando bigiare ver +bigiano bigiare ver +bigiare bigiare ver +bigiato bigiare ver +bigiavi bigiare ver +bigie bigio adj +bigini bigino nom +bigino bigino nom +bigio bigio adj +bigiotteria bigiotteria nom +bigliettaia bigliettaio nom +bigliettaio bigliettaio nom +biglietteria biglietteria nom +biglietterie biglietteria nom +biglietti biglietto nom +biglietto biglietto nom +bignamini bignamino nom +bignamino bignamino nom +bigné bigné nom +bigodini bigodino nom +bigonce bigoncia nom +bigoncia bigoncia nom +bigoncio bigoncio nom +bigotta bigotto adj +bigotte bigotto adj +bigotteria bigotteria nom +bigotti bigotto adj +bigottismi bigottismo nom +bigottismo bigottismo nom +bigotto bigotto adj +bijou bijou nom +bikini bikini nom +bilabiale bilabiale adj +bilabiali bilabiale adj +bilance bilancia nom +bilancella bilancella nom +bilancelle bilancella nom +bilancerebbero bilanciare ver +bilancerà bilanciare ver +bilanci bilancio nom +bilancia bilancia nom +bilanciando bilanciare ver +bilanciandosi bilanciare ver +bilanciano bilanciare ver +bilanciante bilanciare ver +bilanciare bilanciare ver +bilanciarla bilanciare ver +bilanciarle bilanciare ver +bilanciarlo bilanciare ver +bilanciarne bilanciare ver +bilanciarono bilanciare ver +bilanciarsi bilanciare ver +bilanciassero bilanciare ver +bilanciata bilanciare ver +bilanciate bilanciare ver +bilanciati bilanciare ver +bilanciato bilanciare ver +bilanciava bilanciare ver +bilanciavano bilanciare ver +bilanciere bilanciere nom +bilancieri bilanciere nom +bilancini bilancino nom +bilancino bilancino nom +bilancio bilancio nom +bilanciò bilanciare ver +bilatera bilatero adj +bilaterale bilaterale adj +bilaterali bilaterale adj +bilateralmente bilateralmente adv +bilateri bilatero adj +bilatero bilatero adj +bile bile nom +bili bile nom +bilia bilia nom +biliardi biliardo nom +biliardini biliardino nom +biliardino biliardino nom +biliardo biliardo nom +biliare biliare adj +biliari biliare adj +bilico bilico nom +bilie bilia nom +bilingue bilingue adj +bilingui bilingue adj +bilinguismo bilinguismo nom +bilione bilione nom +bilioni bilione nom +biliosa bilioso adj +biliosi bilioso adj +bilioso bilioso adj +bilirubina bilirubina nom +bilirubine bilirubina nom +biliverdina biliverdina nom +bimane bimano adj +bimani bimano adj +bimba bimbo nom +bimbe bimbo nom +bimbi bimbo nom +bimbo bimbo nom +bimensile bimensile adj +bimensili bimensile adj +bimestrale bimestrale adj +bimestrali bimestrale adj +bimestre bimestre nom +bimetallismo bimetallismo nom +bimodali bimodale adj +bimotore bimotore adj +bimotori bimotore adj +binari binario nom +binaria binaria nom +binarie binaria nom +binario binario nom +binata binato adj +binate binato adj +binati binato adj +binato binato adj +binda binda nom +binde binda nom +bindella bindella nom +bindelli bindello nom +bindello bindello nom +bindoli bindolo nom +bindolo bindolo nom +binocoli binocolo nom +binocolo binocolo nom +binoculare binoculare adj +binoculari binoculare adj +binomi binomio nom +binomia binomio adj +binomie binomio adj +binomio binomio adj +biocarburante biocarburante nom +biocarburanti biocarburante nom +bioccoli bioccolo nom +biocenosi biocenosi nom +biochimica biochimico adj +biochimiche biochimico adj +biochimici biochimico adj +biochimico biochimico adj +biocida biocida nom +biocidi biocida nom +bioclimatica bioclimatico adj +bioclimatologia bioclimatologia nom +biocombustibili biocombustibile nom +bioculare bioculare adj +biodegradabile biodegradabile adj +biodegradabili biodegradabile adj +biodegradazione biodegradazione nom +biodi biodo nom +biodiesel biodiesel nom +biodiversità biodiversità nom +biodo biodo nom +bioetica bioetico nom +bioetiche bioetico adj +bioetici bioetico adj +bioetico bioetico adj +biofisica biofisica nom +biofisiche biofisica nom +biogas biogas nom +biogenesi biogenesi nom +biogenetica biogenetico adj +biogenetiche biogenetico adj +biogenetici biogenetico adj +biogenetico biogenetico adj +biogeografia biogeografia nom +biogeografie biogeografia nom +biografa biografo nom +biografe biografo nom +biografi biografo nom +biografia biografia nom +biografica biografico adj +biografiche biografico adj +biografici biografico adj +biografico biografico adj +biografie biografia nom +biografo biografo nom +bioindicatori bioindicatore nom +bioingegneria bioingegneria nom +biolca biolca nom +biolche biolca nom +biologa biologo nom +biologi biologo nom +biologia biologia nom +biologica biologico adj +biologicamente biologicamente adv +biologiche biologico adj +biologici biologico adj +biologico biologico adj +biologie biologia nom +biologo biologo nom +bioluminescenza bioluminescenza nom +biomassa biomassa nom +biomasse biomassa nom +biomedica biomedico adj +biomediche biomedico adj +biomedicina biomedicina nom +biometeorologia biometeorologia nom +biometria biometria nom +biometrie biometria nom +biomonitoraggio biomonitoraggio nom +bionda biondo adj +biondastri biondastro adj +bionde biondo adj +biondezza biondezza nom +biondi biondo adj +biondiccia biondiccio adj +biondo biondo adj +bionica bionica nom +bioniche bionica nom +biopsia biopsia nom +biopsie biopsia nom +biosfera biosfera nom +biosfere biosfera nom +biosintesi biosintesi nom +biossido biossido nom +biostratigrafia biostratigrafia nom +biotecnologia biotecnologia nom +biotecnologica biotecnologico adj +biotecnologici biotecnologico adj +biotecnologico biotecnologico adj +biotecnologie biotecnologia nom +bioterapia bioterapia nom +biotina biotina nom +biotipi biotipo nom +biotipo biotipo nom +biotita biotite nom +biotite biotite nom +biotopi biotopo nom +biotopo biotopo nom +bipartire bipartire ver +bipartisce bipartire ver +bipartita bipartire ver +bipartite bipartito adj +bipartiti bipartito adj +bipartitismo bipartitismo nom +bipartito bipartito adj +bipartizione bipartizione nom +bipede bipede adj +bipedi bipede adj +bipennata bipennato adj +bipennate bipennato adj +bipennato bipennato adj +bipenne bipenne nom +bipiramide bipiramide nom +biplana biplano adj +biplane biplano adj +biplani biplano adj +biplano biplano adj +bipolare bipolare adj +bipolari bipolare adj +bipolarismo bipolarismo nom +bipolarità bipolarità nom +biposto biposto adj +birba birba nom +birbante birbante nom +birbanterie birbanteria nom +birbanti birbante nom +birbi birbo nom +birbo birbo nom +birbonate birbonata nom +birbone birbone nom +birboni birbone adj +bireattore bireattore adj +bireattori bireattore adj +bireme bireme nom +biremi bireme nom +birichina birichino adj +birichinata birichinata nom +birichinate birichinata nom +birichine birichino adj +birichini birichino adj +birichino birichino adj +birifrangente birifrangente adj +birifrangenti birifrangente adj +birifrangenza birifrangenza nom +birignao birignao nom +birilli birillo nom +birillo birillo nom +birmana birmano adj +birmane birmano adj +birmani birmano adj +birmano birmano adj +biro biro nom +birotore birotore adj +birra birra nom +birrai birraio nom +birraio birraio nom +birrari birrario adj +birraria birrario adj +birrario birrario adj +birre birra nom +birreria birreria nom +birrerie birreria nom +birri birro nom +birro birro nom +bis bis adj +bisacce bisaccia nom +bisaccia bisaccia nom +bisante bisante nom +bisanti bisante nom +bisava bisavo nom +bisavola bisavolo nom +bisavoli bisavolo nom +bisavolo bisavolo nom +bisbetica bisbetico nom +bisbetiche bisbetico adj +bisbetico bisbetico nom +bisbigli bisbiglio nom +bisbiglia bisbigliare ver +bisbigliando bisbigliare ver +bisbigliano bisbigliare ver +bisbigliante bisbigliare ver +bisbiglianti bisbigliare ver +bisbigliare bisbigliare ver +bisbigliata bisbigliare ver +bisbigliate bisbigliare ver +bisbigliati bisbigliare ver +bisbigliato bisbigliare ver +bisbigliava bisbigliare ver +bisbigliavano bisbigliare ver +bisbiglio bisbiglio nom +bisbigliò bisbigliare ver +bisbocce bisboccia nom +bisbocci bisbocciare ver +bisboccia bisboccia nom +bisca bisca nom +biscaglina biscaglina nom +biscagline biscaglina nom +biscazziere biscazziere nom +biscazzieri biscazziere nom +bisce biscia nom +bische bisca nom +bischeri bischero nom +bischero bischero nom +bischetti bischetto nom +biscia biscia nom +biscotta biscottare ver +biscottata biscottare ver +biscottate biscottare ver +biscottato biscottare ver +biscotteria biscotteria nom +biscotti biscotto nom +biscottifici biscottificio nom +biscottificio biscottificio nom +biscottino biscottare ver +biscotto biscotto nom +biscroma biscroma nom +biscrome biscroma nom +biscugino biscugino nom +biscuit biscuit nom +bisdrucciola bisdrucciolo adj +bisdrucciole bisdrucciolo adj +bisdruccioli bisdrucciolo adj +bisdrucciolo bisdrucciolo adj +biseca bisecare ver +bisecando bisecare ver +bisecano bisecare ver +bisecanti bisecante adj +bisecare bisecare ver +bisecata bisecare ver +bisecato bisecare ver +bisechino bisecare ver +bisecolare bisecolare adj +bisensi bisenso nom +bisenso bisenso nom +bisessuale bisessuale adj +bisessuali bisessuale adj +bisessualità bisessualità nom +bisessuati bisessuato adj +bisesti bisesto nom +bisestile bisestile adj +bisestili bisestile adj +bisesto bisesto nom +bisettimanale bisettimanale adj +bisettimanali bisettimanale adj +bisettrice bisettrice nom +bisettrici bisettrice nom +bisezione bisezione nom +bisezioni bisezione nom +bisillabe bisillabo adj +bisillabi bisillabo adj +bisillabo bisillabo adj +bislacca bislacco adj +bislacche bislacco adj +bislacchi bislacco adj +bislacco bislacco adj +bislunga bislungo adj +bislunghe bislungo adj +bislunghi bislungo adj +bislungo bislungo adj +bismuto bismuto nom +bisnipote bisnipote nom +bisnipoti bisnipote nom +bisnonna bisnonno nom +bisnonne bisnonno nom +bisnonni bisnonno nom +bisnonno bisnonno nom +bisogna bisognare ver +bisognano bisognare ver +bisognare bisognare ver +bisognasse bisognare ver +bisognato bisognare ver +bisognava bisognare ver +bisognavano bisognare ver +bisogne bisogna nom +bisognerebbe bisognare ver +bisognerà bisognare ver +bisognevole bisognevole adj +bisognevoli bisognevole adj +bisogni bisogno nom +bisognino bisognare ver +bisogno bisogno nom +bisognosa bisognoso adj +bisognose bisognoso adj +bisognosi bisognoso adj +bisognoso bisognoso adj +bisognò bisognare ver +bisolfati bisolfato nom +bisolfato bisolfato nom +bisolfiti bisolfito nom +bisolfito bisolfito nom +bisolfuro bisolfuro nom +bisonte bisonte nom +bisonti bisonte nom +bissa bissare ver +bissando bissare ver +bissandolo bissare ver +bissandone bissare ver +bissano bissare ver +bissanti bissare ver +bissare bissare ver +bissarne bissare ver +bissarono bissare ver +bissata bissare ver +bissate bissare ver +bissati bissare ver +bissato bissare ver +bissava bissare ver +bisserà bissare ver +bissi bisso nom +bisso bisso nom +bissona bissona nom +bissone bissona nom +bissò bissare ver +bistecca bistecca nom +bisticci bisticcio nom +bisticcia bisticciare ver +bisticciamo bisticciare ver +bisticciando bisticciare ver +bisticciano bisticciare ver +bisticciare bisticciare ver +bisticciarsi bisticciare ver +bisticciate bisticciare ver +bisticciato bisticciare ver +bisticciavano bisticciare ver +bisticcio bisticcio nom +bistra bistrare ver +bistrati bistrato adj +bistrato bistrato adj +bistratta bistrattare ver +bistrattando bistrattare ver +bistrattare bistrattare ver +bistrattarlo bistrattare ver +bistrattata bistrattare ver +bistrattate bistrattare ver +bistrattati bistrattare ver +bistrattato bistrattare ver +bistri bistro nom +bistro bistro nom +bistrot bistrot nom +bistrò bistrò nom +bisturi bisturi nom +bisunti bisunto adj +bisunto bisunto adj +bit bit nom +bitematismo bitematismo nom +bitonale bitonale adj +bitonali bitonale adj +bitonalità bitonalità nom +bitorzoli bitorzolo nom +bitorzolo bitorzolo nom +bitorzoluta bitorzoluto adj +bitorzolute bitorzoluto adj +bitorzoluti bitorzoluto adj +bitorzoluto bitorzoluto adj +bitta bitta nom +bitte bitta nom +bitter bitter nom +bitumata bitumare ver +bitumato bitumare ver +bitume bitume nom +bitumi bitume nom +bituminosa bituminoso adj +bituminose bituminoso adj +bituminosi bituminoso adj +bituminoso bituminoso adj +bitumo bitumare ver +biunivoca biunivoco adj +biunivoche biunivoco adj +biunivocità biunivocità nom +biunivoco biunivoco adj +bivacca bivaccare ver +bivaccando bivaccare ver +bivaccano bivaccare ver +bivaccare bivaccare ver +bivaccarono bivaccare ver +bivaccato bivaccare ver +bivaccava bivaccare ver +bivaccavano bivaccare ver +bivacchi bivacco nom +bivacco bivacco nom +bivaccò bivaccare ver +bivalente bivalente adj +bivalenti bivalente adj +bivalenza bivalenza nom +bivalve bivalve adj +bivalvi bivalve adj +bivi bivio nom +bivio bivio nom +bizantina bizantino adj +bizantine bizantino adj +bizantini bizantino adj +bizantinismi bizantinismo nom +bizantinismo bizantinismo nom +bizantinista bizantinista nom +bizantinisti bizantinista nom +bizantino bizantino adj +bizza bizza nom +bizzaria bizzaria nom +bizzarie bizzaria nom +bizzarra bizzarro adj +bizzarre bizzarro adj +bizzarri bizzarro adj +bizzarro bizzarro adj +bizze bizza nom +bizzeffe bizzeffe adv +bizzoche bizzoco nom +bizzoco bizzoco nom +bizzosa bizzoso adj +bizzose bizzoso adj +bizzoso bizzoso adj +blackout blackout nom +blanda blando adj +blande blando adj +blandendo blandire ver +blandendolo blandire ver +blandi blando adj +blandire blandire ver +blandirla blandire ver +blandisce blandire ver +blandiscono blandire ver +blandissimo blandire ver +blandita blandire ver +blanditi blandire ver +blandito blandire ver +blandiva blandire ver +blandizie blandizia nom +blando blando adj +blandì blandire ver +blasfeme blasfemo adj +blasfemi blasfemo adj +blasfemo blasfemo nom +blasona blasonare ver +blasonando blasonare ver +blasonano blasonare ver +blasonare blasonare ver +blasonari blasonario nom +blasonario blasonario nom +blasonarlo blasonare ver +blasonarne blasonare ver +blasonata blasonare ver +blasonate blasonato adj +blasonati blasonato adj +blasonato blasonare ver +blasonava blasonare ver +blasone blasone nom +blasonerà blasonare ver +blasoni blasone nom +blastoma blastoma nom +blastomeri blastomero nom +blastomero blastomero nom +blastomiceti blastomicete nom +blastula blastula nom +blasé blasé adj +blatera blaterare ver +blaterami blaterare ver +blaterando blaterare ver +blaterano blaterare ver +blaterare blaterare ver +blaterata blaterare ver +blatero blaterare ver +blatta blatta nom +blatte blatta nom +blazer blazer nom +blefarite blefarite nom +blefariti blefarite nom +blefarostato blefarostato nom +blenda blenda nom +blende blenda nom +blesa bleso adj +blese bleso adj +blesi bleso adj +bleso bleso adj +blinda blinda nom +blindaggio blindaggio nom +blindando blindare ver +blindano blindare ver +blindare blindare ver +blindarla blindare ver +blindarsi blindare ver +blindata blindato adj +blindate blindato adj +blindati blindato adj +blindato blindato adj +blindatura blindatura nom +blindature blindatura nom +blinde blinda nom +blindo blindare ver +blindò blindare ver +blitz blitz nom +blocca bloccare ver +bloccaci bloccare ver +bloccaggi bloccaggio nom +bloccaggio bloccaggio nom +bloccai bloccare ver +bloccali bloccare ver +bloccalo bloccare ver +bloccami bloccare ver +bloccammo bloccare ver +bloccando bloccare ver +bloccandogli bloccare ver +bloccandola bloccare ver +bloccandole bloccare ver +bloccandoli bloccare ver +bloccandolo bloccare ver +bloccandomi bloccare ver +bloccandone bloccare ver +bloccandosi bloccare ver +bloccano bloccare ver +bloccante bloccare ver +bloccanti bloccare ver +bloccar bloccare ver +bloccarci bloccare ver +bloccare bloccare ver +bloccargli bloccare ver +bloccarla bloccare ver +bloccarle bloccare ver +bloccarli bloccare ver +bloccarlo bloccare ver +bloccarmi bloccare ver +bloccarne bloccare ver +bloccarono bloccare ver +bloccarsi bloccare ver +bloccarti bloccare ver +bloccarvi bloccare ver +bloccasse bloccare ver +bloccassero bloccare ver +bloccassi bloccare ver +bloccassimo bloccare ver +bloccaste bloccare ver +bloccasterzo bloccasterzo nom +bloccasti bloccare ver +bloccata bloccare ver +bloccate bloccare ver +bloccategli bloccare ver +bloccatela bloccare ver +bloccateli bloccare ver +bloccatelo bloccare ver +bloccatemi bloccare ver +bloccati bloccare ver +bloccato bloccare ver +bloccava bloccare ver +bloccavano bloccare ver +bloccavi bloccare ver +bloccavo bloccare ver +bloccheranno bloccare ver +bloccherebbe bloccare ver +bloccherebbero bloccare ver +bloccherei bloccare ver +bloccheremmo bloccare ver +bloccheremo bloccare ver +bloccheresti bloccare ver +bloccherete bloccare ver +bloccherà bloccare ver +bloccherò bloccare ver +blocchetti blocchetto nom +blocchetto blocchetto nom +blocchi blocco nom +blocchiamo bloccare ver +blocchiamola bloccare ver +blocchiamoli bloccare ver +blocchiamolo bloccare ver +blocchiate bloccare ver +blocchino bloccare ver +blocco blocco nom +bloccò bloccare ver +blu blu adj +bluastra bluastro adj +bluastre bluastro adj +bluastri bluastro adj +bluastro bluastro adj +blue blue adj +blues blues nom +bluff bluff nom +bluffa bluffare ver +bluffando bluffare ver +bluffano bluffare ver +bluffare bluffare ver +bluffato bluffare ver +bluffatore bluffatore nom +blusa blusa nom +bluse blusa nom +boa boa nom +boari boario adj +boaria boario adj +boarie boaria nom +boario boario adj +boaro boaro nom +boati boato nom +boato boato nom +bob bob nom +bobbista bobbista nom +bobbisti bobbista nom +bobina bobina nom +bobine bobina nom +bocca bocca nom +boccacce boccaccia nom +boccaccesca boccaccesco adj +boccaccesche boccaccesco adj +boccacceschi boccaccesco adj +boccaccesco boccaccesco adj +boccaccia boccaccia nom +boccagli boccaglio nom +boccaglio boccaglio nom +boccale boccale adj +boccali boccale adj +boccaporti boccaporto nom +boccaporto boccaporto nom +boccascena boccascena nom +boccata boccata nom +boccate boccata nom +bocce boccia nom +bocceranno bocciare ver +boccerei bocciare ver +boccerà bocciare ver +boccetta boccetta nom +boccette boccetta nom +bocche bocca nom +boccheggiano boccheggiare ver +boccheggiante boccheggiante adj +boccheggianti boccheggiante adj +boccheggiare boccheggiare ver +bocchetta bocchetta nom +bocchette bocchetta nom +bocchettone bocchettone nom +bocchettoni bocchettone nom +bocci boccio nom +boccia boccia nom +bocciai bocciare ver +bocciamo bocciare ver +bocciando bocciare ver +bocciano bocciare ver +boccianti bocciare ver +bocciare bocciare ver +bocciarla bocciare ver +bocciarle bocciare ver +bocciarlo bocciare ver +bocciarono bocciare ver +bocciarti bocciare ver +bocciasse bocciare ver +bocciata bocciare ver +bocciate bocciare ver +bocciati bocciare ver +bocciato bocciare ver +bocciatura bocciatura nom +bocciature bocciatura nom +bocciava bocciare ver +bocciavano bocciare ver +boccini boccino nom +boccino boccino nom +boccio boccio nom +bocciodromi bocciodromo nom +bocciodromo bocciodromo nom +bocciofila bocciofilo adj +bocciofile bocciofilo adj +bocciofili bocciofilo adj +bocciofilo bocciofilo adj +boccioli bocciolo nom +bocciolo bocciolo nom +bocciò bocciare ver +bocconcini bocconcino nom +bocconcino bocconcino nom +boccone boccone nom +bocconi bocconi adv +bocia bocia nom +bodoni bodoni nom +bodoniana bodoniano adj +bodoniane bodoniano adj +bodoniani bodoniano adj +bodoniano bodoniano adj +body body nom +boe boa nom +boera boero adj +boere boero adj +boeri boero adj +boero boero adj +bofonchia bofonchiare ver +bofonchiando bofonchiare ver +bofonchiano bofonchiare ver +bofonchiare bofonchiare ver +bofonchiava bofonchiare ver +boga boga nom +bogara bogara nom +bogare bogara nom +boge boga nom +boheme boheme nom +bohemien bohemien nom +bohemienne bohemienne nom +boia boia nom +boiata boiata nom +boiate boiata nom +boicotta boicottare ver +boicottaggi boicottaggio nom +boicottaggio boicottaggio nom +boicottando boicottare ver +boicottandolo boicottare ver +boicottano boicottare ver +boicottare boicottare ver +boicottarla boicottare ver +boicottarlo boicottare ver +boicottarne boicottare ver +boicottarono boicottare ver +boicottata boicottare ver +boicottate boicottare ver +boicottati boicottare ver +boicottato boicottare ver +boicottava boicottare ver +boicottavano boicottare ver +boicotteranno boicottare ver +boicotterà boicottare ver +boicottiamo boicottare ver +boicotto boicottare ver +boicottò boicottare ver +boiler boiler nom +boiserie boiserie nom +bolentino bolentino nom +boleri bolero nom +bolero bolero nom +boleti boleto nom +boleto boleto nom +bolge bolgia nom +bolgia bolgia nom +boli bolo nom +bolide bolide nom +bolidi bolide nom +bolina bolina nom +boline bolina nom +boliviana boliviano adj +boliviane boliviano adj +boliviani boliviano adj +boliviano boliviano adj +bolla bolla nom +bollando bollare ver +bollandola bollare ver +bollandole bollare ver +bollandoli bollare ver +bollandolo bollare ver +bollandone bollare ver +bollano bollire ver +bollare bollare ver +bollari bollario nom +bollario bollario nom +bollarla bollare ver +bollarle bollare ver +bollarlo bollare ver +bollarmi bollare ver +bollarono bollare ver +bollarsi bollare ver +bollasse bollare ver +bollata bollare ver +bollate bollato adj +bollatesi bollare ver +bollati bollato adj +bollato bollare ver +bollatura bollatura nom +bollature bollatura nom +bollava bollare ver +bollavano bollare ver +bolle bolla nom +bollendo bollire ver +bollendola bollire ver +bollendoli bollire ver +bollendolo bollire ver +bollente bollente adj +bollenti bollente adj +bolleranno bollare ver +bollerebbe bollare ver +bollerei bollare ver +bollerà bollare ver +bolletta bolletta nom +bollettari bollettario nom +bollettario bollettario nom +bollette bolletta nom +bollettini bollettino nom +bollettino bollettino nom +bolli bollo nom +bolliamo bollare|bollire ver +bollii bollire ver +bollino bollare ver +bollir bollire ver +bollire bollire ver +bollirebbe bollire ver +bollirla bollire ver +bollirle bollire ver +bollirli bollire ver +bollirlo bollire ver +bollirono bollire ver +bollirà bollire ver +bollita bollire ver +bollite bollito adj +bolliti bollito adj +bollito bollire ver +bollitore bollitore nom +bollitori bollitore nom +bollitura bollitura nom +bolliture bollitura nom +bolliva bollire ver +bollivano bollire ver +bollo bollo nom +bollono bollire ver +bollore bollore nom +bollori bollore nom +bollì bollire ver +bollò bollare ver +bolo bolo nom +bolognese bolognese adj +bolognesi bolognese adj +bolognini bolognino nom +bolognino bolognino nom +bolsa bolso adj +bolscevica bolscevico adj +bolsceviche bolscevico adj +bolscevichi bolscevico nom +bolscevico bolscevico adj +bolscevismo bolscevismo nom +bolscevizzato bolscevizzare ver +bolscevizzazione bolscevizzazione nom +bolse bolso adj +bolsi bolso adj +bolso bolso adj +boma boma nom +bomba bomba nom +bombacacee bombacacee nom +bombaci bombare ver +bombai bombare ver +bombala bombare ver +bombali bombare ver +bombar bombare ver +bombarda bombarda nom +bombardamenti bombardamento nom +bombardamento bombardamento nom +bombardando bombardare ver +bombardandola bombardare ver +bombardandole bombardare ver +bombardandoli bombardare ver +bombardandolo bombardare ver +bombardano bombardare ver +bombardanti bombardare ver +bombardare bombardare ver +bombardarla bombardare ver +bombardarle bombardare ver +bombardarli bombardare ver +bombardarlo bombardare ver +bombardarono bombardare ver +bombardarsi bombardare ver +bombardasse bombardare ver +bombardassero bombardare ver +bombardata bombardare ver +bombardate bombardare ver +bombardati bombardare ver +bombardato bombardare ver +bombardava bombardare ver +bombardavano bombardare ver +bombarde bombarda nom +bombarderanno bombardare ver +bombarderà bombardare ver +bombardi bombardare ver +bombardiere bombardiere nom +bombardieri bombardiere nom +bombardini bombardino nom +bombardino bombardino nom +bombardo bombardare ver +bombardone bombardone nom +bombardò bombardare ver +bombasi bombare ver +bombata bombare ver +bombate bombare ver +bombati bombare ver +bombato bombare ver +bombe bomba nom +bombetta bombetta nom +bombette bombetta nom +bombi bombare ver +bombice bombice nom +bombici bombice nom +bombino bombare ver +bombo bombare ver +bombola bombola nom +bombole bombola nom +bomboli bombolo nom +bombolo bombolo nom +bombolone bombolone nom +bomboloni bombolone nom +bomboniera bomboniera nom +bomboniere bomboniera nom +bombé bombé adj +bome boma|bome nom +bomi bome nom +bompressi bompresso nom +bompresso bompresso nom +bonacce bonaccia nom +bonaccia bonaccia nom +bonaccione bonaccione adj +bonaccioni bonaccione adj +bonari bonario adj +bonaria bonario adj +bonarietà bonarietà nom +bonario bonario adj +bonbon bonbon nom +bondiola bondiola nom +bongos bongos nom +bonifica bonifica nom +bonificabile bonificabile adj +bonificaci bonificare ver +bonificando bonificare ver +bonificandola bonificare ver +bonificano bonificare ver +bonificare bonificare ver +bonificarla bonificare ver +bonificarle bonificare ver +bonificarli bonificare ver +bonificarlo bonificare ver +bonificarono bonificare ver +bonificata bonificare ver +bonificate bonificare ver +bonificati bonificare ver +bonificato bonificare ver +bonificatore bonificatore nom +bonificatori bonificatore nom +bonificavano bonificare ver +bonifiche bonifica nom +bonifici bonifico nom +bonifico bonifico nom +bonificò bonificare ver +bonne bonne nom +bonomia bonomia nom +bontempone bontempone nom +bontemponi bontempone nom +bontà bontà nom +bonus bonus nom +bonza bonza nom +bonze bonza nom +bonzi bonzo nom +bonzo bonzo nom +bookmaker bookmaker nom +boom boom nom +boomerang boomerang nom +bop bop nom +bora bora nom +borace borace nom +boracifera boracifero adj +boracifere boracifero adj +boraciferi boracifero adj +boracifero boracifero adj +borati borato nom +borato borato nom +borbonica borbonico adj +borboniche borbonico adj +borbonici borbonico adj +borbonico borbonico adj +borborigmi borborigmo nom +borborigmo borborigmo nom +borbotta borbottare ver +borbottamenti borbottamento nom +borbottando borbottare ver +borbottano borbottare ver +borbottante borbottare ver +borbottare borbottare ver +borbottato borbottare ver +borbottava borbottare ver +borbottio borbottio nom +borbotto borbottare ver +borbottone borbottone nom +borbottoni borbottone nom +borbottò borbottare ver +borchia borchia nom +borchie borchia nom +borda bordare ver +bordala bordare ver +bordalo bordare ver +bordame bordame nom +bordando bordare ver +bordano bordare ver +bordante bordare ver +bordare bordare ver +bordata bordare ver +bordate bordata nom +bordati bordare ver +bordatini bordatino nom +bordato bordare ver +bordatura bordatura nom +bordature bordatura nom +bordava bordare ver +bordavano bordare ver +bordeaux bordeaux adj +bordeggia bordeggiare ver +bordeggiando bordeggiare ver +bordeggiare bordeggiare ver +bordeggiate bordeggiare ver +bordeggiato bordeggiare ver +bordeggio bordeggio nom +bordelli bordello nom +bordello bordello nom +borderei bordare ver +borderò borderò nom +bordi bordo nom +bordini bordino nom +bordino bordino nom +bordo bordo nom +bordolese bordolese adj +bordolesi bordolese adj +bordone bordone nom +bordoni bordone nom +bordura bordura nom +bordure bordura nom +bordò bordare ver +bore bora nom +borea borea nom +boreale boreale adj +boreali boreale adj +boree borea nom +borgata borgata nom +borgate borgata nom +borghese borghese adj +borghesi borghese adj +borghesia borghesia nom +borghesie borghesia nom +borghi borgo nom +borgo borgo nom +borgognone borgognone adj +borgognoni borgognone adj +borgognotta borgognotta nom +borgomastri borgomastro nom +borgomastro borgomastro nom +bori boro nom +boria boria nom +boriano boriare ver +boriavi boriare ver +borica borico adj +borici borico adj +borico borico adj +borie boria nom +borino boriare ver +borio boriare ver +boriosa borioso adj +boriosi borioso adj +borioso borioso adj +borlotti borlotto nom +borlotto borlotto nom +boro boro nom +borotalco borotalco nom +borra borra nom +borracce borraccia nom +borraccia borraccia nom +borragine borragine nom +borrala borrare ver +borrano borrare ver +borrar borrare ver +borrarla borrare ver +borrasi borrare ver +borre borra nom +borri borro nom +borrino borrare ver +borro borro nom +borsa borsa nom +borsaioli borsaiolo nom +borsaiolo borsaiolo nom +borsanera borsanera nom +borsanerista borsanerista nom +borsate borsata nom +borse borsa nom +borseggi borseggio nom +borseggiare borseggiare ver +borseggiata borseggiare ver +borseggiato borseggiare ver +borseggiatore borseggiatore nom +borseggiatori borseggiatore nom +borseggiatrice borseggiatore nom +borseggio borseggio nom +borselli borsello nom +borsellini borsellino nom +borsellino borsellino nom +borsello borsello nom +borsetta borsetta nom +borsette borsetta nom +borsetti borsetto nom +borsetto borsetto nom +borsini borsino nom +borsino borsino nom +borsista borsista nom +borsisti borsista nom +borsistica borsistico adj +borsistiche borsistico adj +borsistici borsistico adj +borsistico borsistico adj +boscaglia boscaglia nom +boscaglie boscaglia nom +boscaiola boscaiolo nom +boscaiole boscaiolo nom +boscaioli boscaiolo nom +boscaiolo boscaiolo nom +boscherecce boschereccio adj +boschereccia boschereccio adj +boschereccio boschereccio adj +boschetti boschetto nom +boschi bosco nom +boschiva boschivo adj +boschive boschivo adj +boschivi boschivo adj +boschivo boschivo adj +boscimani boscimano nom +bosco bosco nom +boscosa boscoso adj +boscose boscoso adj +boscosi boscoso adj +boscosità boscosità nom +boscoso boscoso adj +bosniaca bosniaco adj +bosniache bosniaco adj +bosniaci bosniaco adj +boss boss nom +bossi bosso nom +bosso bosso nom +bossoli bossolo nom +bossolo bossolo nom +boston boston nom +bostrico bostrico nom +botanica botanico adj +botaniche botanico adj +botanici botanico adj +botanico botanico adj +botola botola nom +botole botola nom +botoli botolo nom +botolo botolo nom +botri botro nom +botro botro nom +botta botta nom +bottacci bottaccio adj +bottaccio bottaccio adj +bottai bottaio nom +bottaio bottaio nom +bottame bottame nom +bottata bottata nom +botte botta|botte nom +bottega bottega nom +bottegai bottegaio nom +bottegaio bottegaio nom +botteghe bottega nom +botteghini botteghino nom +botteghino botteghino nom +botti botte|botto nom +botticelliana botticelliano adj +botticelliano botticelliano adj +bottiglia bottiglia nom +bottigliata bottigliata nom +bottigliate bottigliata nom +bottiglie bottiglia nom +bottigliera bottigliera nom +bottigliere bottigliera nom +bottiglieria bottiglieria nom +bottiglione bottiglione nom +bottiglioni bottiglione nom +bottini bottino nom +bottino bottino nom +botto botto nom +bottone bottone nom +bottoni bottone nom +bottoniera bottoniera nom +bottoniere bottoniera nom +bottonificio bottonificio nom +botulismo botulismo nom +bouclé bouclé adj +boudoir boudoir nom +bouillabaisse bouillabaisse nom +bouquet bouquet nom +bourbon bourbon nom +boutade boutade nom +boutique boutique nom +bovari bovaro nom +bovarismo bovarismo nom +bovaro bovaro nom +bove bove nom +bovi bove nom +bovina bovino adj +bovindi bovindo nom +bovindo bovindo nom +bovine bovino adj +bovini bovini|bovino nom +bovino bovino adj +bowling bowling nom +box box nom +boxa boxare ver +boxando boxare ver +boxare boxare ver +boxata boxare ver +boxe boxe nom +boxer boxer nom +boxeur boxeur nom +boxino boxare ver +boy boy nom +bozza bozza nom +bozzacchi bozzacchio nom +bozze bozza nom +bozzelli bozzello nom +bozzello bozzello nom +bozzetti bozzetto nom +bozzettismo bozzettismo nom +bozzettista bozzettista nom +bozzettisti bozzettista nom +bozzettistica bozzettistica nom +bozzetto bozzetto nom +bozzi bozzo nom +bozzo bozzo nom +bozzoli bozzolo nom +bozzolo bozzolo nom +boîte boîte nom +braca braca nom +bracalone bracalone nom +bracaloni bracaloni adv +bracca braccare ver +braccando braccare ver +braccandoli braccare ver +braccano braccare ver +braccare braccare ver +braccarla braccare ver +braccarli braccare ver +braccarlo braccare ver +braccarono braccare ver +braccata braccare ver +braccate braccare ver +braccati braccare ver +braccato braccare ver +braccava braccare ver +braccavano braccare ver +braccetti braccetto nom +braccetto braccetto nom +braccherà braccare ver +bracchi bracco nom +braccia braccio nom +bracciale bracciale nom +braccialetti braccialetto nom +braccialetto braccialetto nom +bracciali bracciale nom +bracciantato bracciantato adj +bracciante bracciante nom +braccianti bracciante nom +bracciata bracciata nom +bracciate bracciata nom +braccio braccio nom +braccioli bracciolo nom +bracciolo bracciolo nom +bracco bracco nom +bracconiere bracconiere nom +bracconieri bracconiere nom +braccò braccare ver +brace brace nom +brache braca nom +brachetta brachetta nom +brachette brachetta nom +brachiale brachiale adj +brachiali brachiale adj +brachiblasti brachiblasto nom +brachiblasto brachiblasto nom +brachicardia brachicardia nom +brachicefala brachicefalo adj +brachicefalia brachicefalia nom +brachicefalo brachicefalo adj +brachilogia brachilogia nom +brachilogica brachilogico adj +brachilogico brachilogico adj +brachiopodi brachiopodi nom +brachitipo brachitipo nom +braci brace nom +braciere braciere nom +bracieri braciere nom +braciola braciola nom +braciole braciola nom +brada brado adj +brade brado adj +bradi brado adj +bradicardia bradicardia nom +bradicardie bradicardia nom +bradipi bradipo nom +bradipo bradipo nom +bradisismi bradisismo nom +bradisismo bradisismo nom +brado brado adj +brage bragia nom +braghi brago nom +bragia bragia nom +brago brago nom +bragozzi bragozzo nom +bragozzo bragozzo nom +braille braille adj +brama brama nom +bramando bramare ver +bramanesimo bramanesimo nom +bramani bramano nom +bramano bramare ver +bramante bramare ver +bramanti bramare ver +bramar bramare ver +bramare bramare ver +bramasse bramare ver +bramata bramare ver +bramate bramare ver +bramati bramare ver +bramato bramare ver +bramava bramare ver +bramavano bramare ver +brame brama nom +bramenti bramire ver +bramerebbe bramare ver +bramerà bramare ver +brami bramare ver +bramini bramino nom +bramino bramino nom +bramire bramire ver +bramisce bramire ver +bramiscono bramire ver +bramiti bramito nom +bramito bramito nom +bramo bramare ver +bramosa bramoso adj +bramose bramoso adj +bramosi bramoso adj +bramosia bramosia nom +bramosie bramosia nom +bramoso bramoso adj +bramò bramare ver +branca branca nom +branche branca nom +branchi branco nom +branchia branchia nom +branchiale branchiale adj +branchiali branchiale adj +branchiati branchiati nom +branchie branchia nom +branchiosauri branchiosauro nom +brancica brancicare ver +branco branco nom +brancola brancolare ver +brancolando brancolare ver +brancolano brancolare ver +brancolante brancolare ver +brancolare brancolare ver +brancolato brancolare ver +brancolava brancolare ver +brancolavano brancolare ver +brancoli brancolare ver +brancolino brancolare ver +branda branda nom +brande branda nom +brandeggi brandeggiare ver +brandeggiante brandeggiare ver +brandeggiare brandeggiare ver +brandeggiarla brandeggiare ver +brandeggiata brandeggiare ver +brandeggiati brandeggiare ver +brandeggiato brandeggiare ver +brandeggio brandeggiare ver +brandelli brandello nom +brandello brandello nom +brandendo brandire ver +brandendola brandire ver +brandendole brandire ver +brandendolo brandire ver +brandente brandire ver +brandi brando nom +brandir brandire ver +brandire brandire ver +brandirla brandire ver +brandirono brandire ver +brandirsi brandire ver +brandisca brandire ver +brandisce brandire ver +brandiscono brandire ver +brandisse brandire ver +brandita brandire ver +brandite brandire ver +branditi brandire ver +brandito brandire ver +brandiva brandire ver +brandivano brandire ver +brando brando nom +brandy brandy nom +brandì brandire ver +brani brano nom +brano brano nom +branzini branzino nom +branzino branzino nom +brasa brasare ver +brasai brasare ver +brasante brasare ver +brasanti brasare ver +brasare brasare ver +brasata brasare ver +brasati brasare ver +brasato brasare ver +brasatura brasatura nom +brasature brasatura nom +brasi brasare ver +brasile brasile nom +brasili brasile nom +brasiliana brasiliano adj +brasiliane brasiliano adj +brasiliani brasiliano adj +brasiliano brasiliano adj +braso brasare ver +brattea brattea nom +brattee brattea nom +brava bravo adj +bravacci bravaccio nom +bravaccio bravaccio nom +bravamente bravamente adv +bravata bravata nom +bravate bravata nom +brave bravo adj +bravi bravo adj +bravo bravo adj +bravura bravura nom +bravure bravura nom +break break nom +brecce breccia nom +breccia breccia nom +brefotrofi brefotrofio nom +brefotrofio brefotrofio nom +brenna brenna nom +brenne brenna nom +brenta brenta nom +brente brenta nom +bresaola bresaola nom +bresaole bresaola nom +bresciana bresciano adj +bresciane bresciano adj +bresciani bresciano adj +bresciano bresciano adj +bretella bretella nom +bretelle bretella nom +breva breva nom +breve breve adj +brevemente brevemente adv +brevetta brevettare ver +brevettabilità brevettabilità nom +brevettando brevettare ver +brevettandola brevettare ver +brevettandole brevettare ver +brevettandolo brevettare ver +brevettano brevettare ver +brevettante brevettare ver +brevettare brevettare ver +brevettarla brevettare ver +brevettarle brevettare ver +brevettarlo brevettare ver +brevettarono brevettare ver +brevettasse brevettare ver +brevettassi brevettare ver +brevettata brevettare ver +brevettate brevettare ver +brevettati brevettare ver +brevettato brevettare ver +brevettava brevettare ver +brevetterà brevettare ver +brevetti brevetto nom +brevetto brevetto nom +brevettuale brevettuale adj +brevettò brevettare ver +brevi breve adj +breviari breviario nom +breviario breviario nom +brevilinea brevilineo adj +brevilinei brevilineo adj +brevilineo brevilineo adj +brevissimo brevissimo adj +brevità brevità nom +brezza brezza nom +brezze brezza nom +briaca briaco adj +briaco briaco adj +bricchi bricco nom +bricciche briccica nom +bricco bricco nom +briccola briccola nom +briccole briccola nom +bricconate bricconata nom +briccone briccone nom +bricconi briccone nom +briciola briciola nom +briciole briciola nom +bricioli briciolo nom +briciolo briciolo nom +bricolage bricolage nom +bricolla bricolla nom +bricolle bricolla nom +bridge bridge nom +bridgisti bridgista nom +briga briga nom +brigadiere brigadiere nom +brigadieri brigadiere nom +brigagli brigare ver +brigai brigare ver +brigando brigare ver +brigantaggi brigantaggio nom +brigantaggio brigantaggio nom +brigante brigante nom +brigantesca brigantesco adj +brigantesche brigantesco adj +briganteschi brigantesco adj +brigantesco brigantesco adj +brigantessa brigante nom +brigantesse brigante nom +briganti brigante nom +brigantini brigantino nom +brigantino brigantino nom +brigar brigare ver +brigare brigare ver +brigarono brigare ver +brigata brigata nom +brigate brigata nom +brigati brigare ver +brigatista brigatista nom +brigatiste brigatista nom +brigatisti brigatista nom +brigato brigare ver +brigava brigare ver +brigavano brigare ver +brige briga nom +brighella brighella nom +brighi brigare ver +brigidini brigidino nom +brigidino brigidino nom +briglia briglia nom +briglie briglia nom +brigo brigare ver +brigò brigare ver +brilla brillo adj +brillamenti brillamento nom +brillamento brillamento nom +brillando brillare ver +brillano brillare ver +brillantante brillantare ver +brillante brillante adj +brillantemente brillantemente adv +brillanti brillante adj +brillantina brillantina nom +brillantini brillantino nom +brillantino brillantino nom +brillanza brillanza nom +brillar brillare ver +brillare brillare ver +brillarono brillare ver +brillasse brillare ver +brillata brillare ver +brillate brillare ver +brillato brillare ver +brillatura brillatura nom +brillava brillare ver +brillavano brillare ver +brille brillo adj +brillerai brillare ver +brilleranno brillare ver +brillerebbe brillare ver +brillerà brillare ver +brilli brillo adj +brilliamo brillare ver +brillino brillare ver +brillio brillio nom +brillo brillo adj +brillò brillare ver +brina brina nom +brinar brinare ver +brinata brinare ver +brinate brinata nom +brinati brinare ver +brinato brinare ver +brinda brindare ver +brindale brindare ver +brindando brindare ver +brindano brindare ver +brindar brindare ver +brindare brindare ver +brindarono brindare ver +brindato brindare ver +brindava brindare ver +brindavano brindare ver +brindellone brindellone nom +brinderò brindare ver +brindiamo brindare ver +brindisi brindisi nom +brindo brindare ver +brindò brindare ver +brine brina nom +brini brinare ver +brino brinare ver +brio brio nom +brioche brioche nom +briofite briofite nom +briologia briologia nom +briosa brioso adj +briose brioso adj +briosi brioso adj +briosità briosità nom +brioso brioso adj +briozoi briozoi nom +briscola briscola nom +briscole briscola nom +bristol bristol nom +britanna britanno adj +britanne britanno adj +britanni britanno adj +britannica britannico adj +britanniche britannico adj +britannici britannico adj +britannico britannico adj +britanno britanno adj +brividi brivido nom +brivido brivido nom +brizzolata brizzolato adj +brizzolate brizzolato adj +brizzolati brizzolato adj +brizzolato brizzolato adj +brizzolatura brizzolatura nom +brizzolature brizzolatura nom +brocca brocca nom +broccatelli broccatello nom +broccatello broccatello nom +broccati broccato nom +broccato broccato nom +brocce broccia nom +brocche brocca nom +brocchi brocco nom +brocchiere brocchiere nom +brocchieri brocchiere nom +brocci broccio nom +broccia broccia nom +brocciatrice brocciatrice nom +brocciatrici brocciatrice nom +broccio broccio nom +brocco brocco nom +broccola broccola nom +broccoli broccolo nom +broccolo broccolo nom +broche broche nom +brochure brochure nom +broda broda nom +brodaglia brodaglia nom +brodaglie brodaglia nom +brode broda nom +brodetti brodetto nom +brodetto brodetto nom +brodi brodo nom +brodo brodo nom +brodoloni brodolone nom +brodose brodoso adj +brogiotti brogiotto nom +brogiotto brogiotto nom +brogli broglio nom +broglia brogliare ver +brogliacci brogliaccio nom +brogliaccio brogliaccio nom +brogliano brogliare ver +brogliato brogliare ver +broglino brogliare ver +broglio broglio nom +broker broker nom +broletti broletto nom +broletto broletto nom +broli brolo nom +brolo brolo nom +bromate bromato adj +bromati bromato nom +bromato bromato nom +bromatologia bromatologia nom +bromeliacee bromeliacee nom +bromi bromo nom +bromidrico bromidrico adj +bromo bromo nom +bromoformio bromoformio nom +bromuri bromuro nom +bromuro bromuro nom +bronchi bronco nom +bronchiale bronchiale adj +bronchiali bronchiale adj +bronchioli bronchiolo nom +bronchiolo bronchiolo nom +bronchite bronchite nom +bronchiti bronchite nom +broncio broncio nom +bronco bronco nom +broncografia broncografia nom +broncone broncone nom +broncopolmonare broncopolmonare adj +broncopolmonari broncopolmonare adj +broncopolmonite broncopolmonite nom +broncopolmoniti broncopolmonite nom +broncoscopia broncoscopia nom +brontofobia brontofobia nom +brontola brontolare ver +brontolamenti brontolamento nom +brontolando brontolare ver +brontolano brontolare ver +brontolante brontolare ver +brontolanti brontolare ver +brontolare brontolare ver +brontolavano brontolare ver +brontolii brontolio nom +brontolio brontolio nom +brontolo brontolare ver +brontolone brontolone nom +brontoloni brontolone nom +brontolò brontolare ver +brontosauri brontosauro nom +brontosauro brontosauro nom +bronza bronzare ver +bronzano bronzare ver +bronzare bronzare ver +bronzata bronzare ver +bronzate bronzare ver +bronzati bronzare ver +bronzato bronzare ver +bronzatura bronzatura nom +bronzature bronzatura nom +bronzea bronzeo adj +bronzee bronzeo adj +bronzei bronzeo adj +bronzeo bronzeo adj +bronzetti bronzetto nom +bronzetto bronzetto nom +bronzi bronzo nom +bronzina bronzina nom +bronzine bronzina nom +bronzino bronzare ver +bronzista bronzista nom +bronzisti bronzista nom +bronzo bronzo nom +broscia broscia nom +brossura brossura nom +brossure brossura nom +brr brr int +bruca brucare ver +brucando brucare ver +brucano brucare ver +brucante brucare ver +brucare brucare ver +brucata brucare ver +brucati brucare ver +brucato brucare ver +brucatura brucatura nom +brucava brucare ver +brucavano brucare ver +brucella brucella nom +brucelle brucella nom +brucellosi brucellosi nom +brucerai bruciare ver +bruceranno bruciare ver +brucerebbe bruciare ver +brucerebbero bruciare ver +brucerei bruciare ver +bruceremo bruciare ver +brucerete bruciare ver +brucerà bruciare ver +brucerò bruciare ver +bruchi bruco nom +bruci bruciare ver +brucia bruciare ver +bruciacchiare bruciacchiare ver +bruciacchiata bruciacchiare ver +bruciacchiate bruciacchiare ver +bruciacchiati bruciacchiare ver +bruciacchiato bruciacchiare ver +bruciai bruciare ver +bruciali bruciare ver +bruciamento bruciamento nom +bruciami bruciare ver +bruciammo bruciare ver +bruciamo bruciare ver +bruciando bruciare ver +bruciandogli bruciare ver +bruciandola bruciare ver +bruciandole bruciare ver +bruciandoli bruciare ver +bruciandolo bruciare ver +bruciandone bruciare ver +bruciandosi bruciare ver +bruciano bruciare ver +bruciante bruciare ver +brucianti bruciare ver +bruciapelo bruciapelo adv +bruciar bruciare ver +bruciare bruciare ver +bruciargli bruciare ver +bruciarla bruciare ver +bruciarle bruciare ver +bruciarli bruciare ver +bruciarlo bruciare ver +bruciarmi bruciare ver +bruciarne bruciare ver +bruciarono bruciare ver +bruciarsi bruciare ver +bruciartela bruciare ver +bruciarti bruciare ver +bruciarvi bruciare ver +bruciasse bruciare ver +bruciassero bruciare ver +bruciata bruciato adj +bruciate bruciare ver +bruciatelo bruciare ver +bruciatemi bruciare ver +bruciati bruciare ver +bruciato bruciare ver +bruciatore bruciatore nom +bruciatori bruciatore nom +bruciatura bruciatura nom +bruciature bruciatura nom +bruciava bruciare ver +bruciavano bruciare ver +brucino bruciare ver +brucio brucio nom +bruciore bruciore nom +bruciori bruciore nom +bruciò bruciare ver +bruco bruco nom +brufoli brufolo nom +brufolo brufolo nom +brughi brugo nom +brughiera brughiera nom +brughiere brughiera nom +brughiero brughiero adj +brugo brugo nom +bruisse bruire ver +brulica brulicare ver +brulicano brulicare ver +brulicante brulicante adj +brulicanti brulicante adj +brulicare brulicare ver +brulicava brulicare ver +brulicavano brulicare ver +brulichio brulichio nom +brulla brullo adj +brulle brullo adj +brulli brullo adj +brullo brullo adj +brulotti brulotto nom +brulotto brulotto nom +brulé brulé adj +bruma bruma nom +brumaio brumaio nom +brumale brumale adj +brume bruma nom +brumosa brumoso adj +brumose brumoso adj +brumosi brumoso adj +brumoso brumoso adj +bruna bruno adj +brunastra brunastro adj +brunastre brunastro adj +brunastri brunastro adj +brunastro brunastro adj +brune bruno adj +bruni bruno adj +brunicce bruniccio adj +brunicci bruniccio adj +bruniccia bruniccio adj +bruniccio bruniccio adj +brunii brunire ver +brunire brunire ver +brunita brunire ver +brunite brunire ver +bruniti brunire ver +brunito brunire ver +brunitoio brunitoio nom +brunitore brunitore nom +brunitori brunitore nom +brunitura brunitura nom +bruniture brunitura nom +bruno bruno adj +brusca brusco adj +bruscamente bruscamente adv +brusche brusco adj +bruschetta bruschetta nom +bruschette bruschetta nom +bruschi brusco adj +bruschina bruschinare ver +bruschini bruschino nom +bruschino bruschino nom +brusco brusco adj +bruscoli bruscolo nom +bruscolo bruscolo nom +brusii brusio nom +brusio brusio nom +brusisca brusire ver +brusone brusone nom +brusoni brusone nom +brut brut adj +bruta bruto adj +brutale brutale adj +brutali brutale adj +brutalità brutalità nom +brutalizzando brutalizzare ver +brutalizzare brutalizzare ver +brutalizzarla brutalizzare ver +brutalizzata brutalizzare ver +brutalizzati brutalizzare ver +brutalizzato brutalizzare ver +brutalmente brutalmente adv +brute bruto adj +bruti bruto nom +bruto bruto adj +brutta brutto adj +brutte brutto adj +bruttezza bruttezza nom +bruttezze bruttezza nom +brutti brutto adj +bruttino bruttare ver +brutto brutto adj +bruttura bruttura nom +brutture bruttura nom +bu bu int +bua bua nom +buana buana nom +bubbola bubbola nom +bubbole bubbola nom +bubbolino bubbolare ver +bubbolo bubbolo nom +bubbone bubbone nom +bubboni bubbone nom +bubbonica bubbonico adj +buca buca nom +bucale bucare ver +bucali bucare ver +bucalo bucare ver +bucando bucare ver +bucandogli bucare ver +bucandola bucare ver +bucaneve bucaneve nom +bucaniere bucaniere nom +bucanieri bucaniere nom +bucano bucare ver +bucar bucare ver +bucare bucare ver +bucarla bucare ver +bucarmi bucare ver +bucarono bucare ver +bucarsi bucare ver +bucassero bucare ver +bucata bucare ver +bucate bucare ver +bucati bucare ver +bucatini bucatino nom +bucatino bucatino nom +bucato bucato nom +bucatura bucatura nom +bucature bucatura nom +bucavano bucare ver +buccale buccale adj +buccali buccale adj +bucce buccia nom +buccheri bucchero nom +bucchero bucchero nom +buccia buccia nom +buccina buccina nom +buccine buccina nom +buccola buccola nom +bucefalo bucefalo nom +buceri bucero nom +bucero bucero nom +buche buca nom +bucherellare bucherellare ver +bucherellata bucherellare ver +bucherellate bucherellare ver +bucherellati bucherellare ver +bucherellato bucherellare ver +bucherelli bucherellare ver +buchetta buchetta nom +buchette buchetta nom +buchi buco nom +buchiamo bucare ver +buchino bucare ver +bucine bucine nom +bucini bucine nom +bucintori bucintoro nom +bucintoro bucintoro nom +buco buco nom +bucolica bucolico adj +bucoliche bucolica nom +bucolici bucolico adj +bucolico bucolico adj +bucrani bucranio nom +bucranio bucranio nom +bucò bucare ver +buddismo buddismo nom +buddista buddista nom +buddiste buddista nom +buddisti buddista nom +buddistico buddistico adj +budelli budello nom +budello budello nom +budget budget nom +budgetarie budgetario adj +budini budino nom +budino budino nom +bue bua|bue nom +bufala bufalo nom +bufale bufalo nom +bufali bufalo nom +bufalo bufalo nom +bufera bufera nom +bufere bufera nom +buffa buffo adj +buffali buffare ver +buffalo buffare ver +buffare buffare ver +buffato buffare ver +buffe buffo adj +buffet buffet nom +buffetteria buffetteria nom +buffetterie buffetteria nom +buffetti buffetto nom +buffetto buffetto nom +buffi buffo adj +buffo buffo adj +buffonaggine buffonaggine nom +buffonata buffonata nom +buffonate buffonata nom +buffone buffone nom +buffoneria buffoneria nom +buffonerie buffoneria nom +buffonesca buffonesco adj +buffonesche buffonesco adj +buffoneschi buffonesco adj +buffonesco buffonesco adj +buffoni buffone nom +buganvillea buganvillea nom +buganvillee buganvillea nom +buggerare buggerare ver +buggerate buggerare ver +buggerato buggerare ver +buggero buggerare ver +bugi bugia adj +bugia bugia nom +bugiarda bugiardo adj +bugiardaggine bugiardaggine nom +bugiarde bugiardo adj +bugiardi bugiardo adj +bugiardo bugiardo adj +bugie bugia nom +bugigattoli bugigattolo nom +bugigattolo bugigattolo nom +bugio bugia adj +buglioli bugliolo nom +bugliolo bugliolo nom +bugna bugna nom +bugnano bugnare ver +bugnata bugnare ver +bugnate bugnato adj +bugnati bugnato adj +bugnato bugnato nom +bugne bugna nom +bugni bugno nom +bugno bugno nom +bui buio adj +buia buio adj +buie buio adj +buio buio adj +bulba bulbo nom +bulbare bulbare adj +bulbari bulbare adj +bulbe bulbo nom +bulbosa bulboso adj +bulbose bulboso adj +bulbosi bulboso adj +bulboso bulboso adj +bulgara bulgaro adj +bulgare bulgaro adj +bulgari bulgaro adj +bulgaro bulgaro adj +bulicame bulicame nom +bulimia bulimia nom +bulimie bulimia nom +bulinate bulinare ver +bulinato bulinare ver +bulini bulino nom +bulino bulino nom +bulldog bulldog nom +bulldozer bulldozer nom +bulletta bulletta nom +bullette bulletta nom +bulli bullo nom +bullo bullo nom +bullona bullonare ver +bullonata bullonare ver +bullonate bullonare ver +bullonati bullonare ver +bullonato bullonare ver +bullonatura bullonatura nom +bullonature bullonatura nom +bullone bullone nom +bulloneria bulloneria nom +bullonerie bulloneria nom +bulloni bullone nom +bum bum int +bumerang bumerang nom +buna buna nom +bune buna nom +bungalow bungalow nom +bunker bunker nom +buoi bue nom +buon buon adj_sup +buona buono adj +buonafede buonafede nom +buonagrazia buonagrazia nom +buonanima buonanima nom +buonanime buonanima nom +buonanotte buonanotte nom +buonasera buonasera nom +buoncostume buoncostume nom +buondì buondì int +buone buono adj +buongiorno buongiorno nom +buongoverno buongoverno nom +buongustaio buongustaio nom +buongusto buongusto nom +buoni buono adj +buonissima buonissimo adj +buonissime buonissimo adj +buonissimi buonissimo adj +buonissimo buonissimo adj +buono buono adj_sup +buonora buonora nom +buonsenso buonsenso nom +buontempona buontempone nom +buontempone buontempone nom +buontemponi buontempone nom +buonumore buonumore nom +buonuomini buonuomo nom +buonuomo buonuomo nom +buonuscita buonuscita nom +buonuscite buonuscita nom +buratta burattare ver +buratti buratto nom +burattinai burattinaio nom +burattinaio burattinaio nom +burattinata burattinata nom +burattini burattino nom +burattino burattino nom +buratto buratto nom +burbanza burbanza nom +burbera burbero adj +burbere burbero adj +burberi burbero adj +burbero burbero adj +burchi burchio nom +burchielli burchiello nom +burchiello burchiello nom +burchio burchio nom +bure bure nom +bureau bureau nom +buretta buretta nom +burette buretta nom +burgravi burgravio nom +burgravio burgravio nom +burgunda burgundo adj +burgunde burgundo adj +burgundi burgundo nom +burgundo burgundo adj +buri bure nom +buriana buriana nom +buriane buriana nom +burina burino adj +burine burino adj +burini burino adj +burino burino adj +burla burla nom +burlando burlare ver +burlandosi burlare ver +burlano burlare ver +burlanti burlare ver +burlare burlare ver +burlarmi burlare ver +burlarono burlare ver +burlarsi burlare ver +burlarvi burlare ver +burlata burlare ver +burlati burlare ver +burlato burlare ver +burlava burlare ver +burlavano burlare ver +burle burla nom +burlesca burlesco adj +burlesche burlesco adj +burleschi burlesco adj +burlesco burlesco adj +burletta burletta nom +burlette burletta nom +burli burlare ver +burlo burlare ver +burlona burlone nom +burlone burlone adj +burloni burlone adj +burlò burlare ver +burnus burnus nom +burocrate burocrate nom +burocrati burocrate nom +burocratica burocratico adj +burocraticamente burocraticamente adv +burocratiche burocratico adj +burocratici burocratico adj +burocratico burocratico adj +burocratismi burocratismo nom +burocratismo burocratismo nom +burocratizza burocratizzare ver +burocratizzando burocratizzare ver +burocratizzante burocratizzare ver +burocratizzarci burocratizzare ver +burocratizzare burocratizzare ver +burocratizzarsi burocratizzare ver +burocratizzata burocratizzare ver +burocratizzate burocratizzare ver +burocratizzato burocratizzare ver +burocratizzazione burocratizzazione nom +burocratizzazioni burocratizzazione nom +burocratizziamo burocratizzare ver +burocratizziamoci burocratizzare ver +burocrazia burocrazia nom +burocrazie burocrazia nom +burrasca burrasca nom +burrasche burrasca nom +burrascosa burrascoso adj +burrascose burrascoso adj +burrascosi burrascoso adj +burrascoso burrascoso adj +burrificazione burrificazione nom +burro burro nom +burrona burrona adj +burrone burrone nom +burroni burrone nom +burrosa burroso adj +burroso burroso adj +burundese burundese adj +burundesi burundese adj +bus bus nom +busca buscare ver +buscando buscare ver +buscar buscare ver +buscare buscare ver +buscarne buscare ver +buscarsi buscare ver +buscate buscare ver +buscatesi buscare ver +buscato buscare ver +buscherandogli buscherare ver +buschi buscare ver +busco buscare ver +buscò buscare ver +bushel bushel nom +busillis busillis nom +business business nom +businessman businessman nom +bussa bussare ver +bussagli bussare ver +bussai bussare ver +bussando bussare ver +bussano bussare ver +bussanti bussare ver +bussare bussare ver +bussarono bussare ver +bussasse bussare ver +bussassero bussare ver +bussata bussata nom +bussate bussata nom +bussato bussare ver +bussava bussare ver +bussavano bussare ver +busse bussa nom +busserai bussare ver +busseranno bussare ver +busserà bussare ver +busserò bussare ver +bussi busso nom +busso busso nom +bussola bussola nom +bussolanti bussolante nom +bussole bussola nom +bussolotti bussolotto nom +bussolotto bussolotto nom +bussò bussare ver +busta busta nom +bustarella bustarella nom +bustarelle bustarella nom +buste busta nom +busti busto nom +bustina bustina nom +bustine bustina nom +bustini bustino nom +bustino bustino nom +busto busto nom +bustrofedica bustrofedico adj +bustrofediche bustrofedico adj +bustrofedico bustrofedico adj +butadiene butadiene nom +butani butano nom +butano butano nom +butirrica butirrico adj +butirrico butirrico adj +butta buttare ver +buttafuori buttafuori nom +buttai buttare ver +buttala buttare ver +buttalo buttare ver +buttami buttare ver +buttammo buttare ver +buttando buttare ver +buttandoci buttare ver +buttandogli buttare ver +buttandola buttare ver +buttandole buttare ver +buttandoli buttare ver +buttandolo buttare ver +buttandosi buttare ver +buttandovi buttare ver +buttane buttare ver +buttano buttare ver +buttar buttare ver +buttarci buttare ver +buttare buttare ver +buttargli buttare ver +buttarla buttare ver +buttarle buttare ver +buttarli buttare ver +buttarlo buttare ver +buttarmi buttare ver +buttarne buttare ver +buttarono buttare ver +buttarsi buttare ver +buttarti buttare ver +buttarvi buttare ver +buttasi buttare ver +buttasse buttare ver +buttassero buttare ver +buttassi buttare ver +buttata buttare ver +buttate buttare ver +buttateli buttare ver +buttatevi buttare ver +buttati buttare ver +buttato buttare ver +buttava buttare ver +buttavamo buttare ver +buttavano buttare ver +buttavo buttare ver +butteranno buttare ver +butterata butterato adj +butterate butterato adj +butterato butterato adj +butterebbe buttare ver +butterebbero buttare ver +butterei buttare ver +butteremo buttare ver +butterete buttare ver +butteri buttero nom +buttero buttero nom +butterà buttare ver +butterò buttare ver +butti buttare ver +buttiamo buttare ver +buttiamoci buttare ver +buttiamola buttare ver +buttiamole buttare ver +buttino buttare ver +butto buttare ver +buttò buttare ver +buvette buvette nom +buzzi buzzo nom +buzzo buzzo nom +buzzone buzzone nom +buzzoni buzzone nom +buzzuro buzzuro nom +bwana bwana nom +byte byte nom +bè bè sw +c c nom_sup +cab cab nom +cabala cabala nom +cabale cabala nom +cabaletta cabaletta nom +cabalette cabaletta nom +cabalista cabalista nom +cabalisti cabalista nom +cabalistica cabalistico adj +cabalistiche cabalistico adj +cabalistici cabalistico adj +cabalistico cabalistico adj +cabaret cabaret nom +cabila cabila nom +cabile cabila nom +cabina cabina nom +cabinata cabinato adj +cabinate cabinato adj +cabinati cabinato nom +cabinato cabinato nom +cabine cabina nom +cabinovia cabinovia nom +cabinovie cabinovia nom +cablaggi cablaggio nom +cablaggio cablaggio nom +cablato cablare ver +cablo cablo nom +cablogramma cablogramma nom +cablogrammi cablogramma nom +cabotaggio cabotaggio nom +cabotando cabotare ver +cabotar cabotare ver +caboti cabotare ver +caboto cabotare ver +cabra cabrare ver +cabrai cabrare ver +cabrando cabrare ver +cabrante cabrare ver +cabrare cabrare ver +cabrata cabrata nom +cabrate cabrata nom +cabrati cabrare ver +cabrato cabrare ver +cabrava cabrare ver +cabrerà cabrare ver +cabri cabrare ver +cabrino cabrare ver +cabriolet cabriolet nom +cabrò cabrare ver +caca cacare ver +cacaci cacare ver +cacai cacare ver +cacao cacao nom +cacar cacare ver +cacare cacare ver +cacarella cacarella nom +cacasenno cacasenno nom +cacata cacare ver +cacate cacata nom +cacato cacare ver +cacatoa cacatoa nom +cacatoio cacatoio nom +cacca cacca nom +cacce caccia nom +cacceranno cacciare ver +caccerebbe cacciare ver +caccerebbero cacciare ver +caccerei cacciare ver +cacceremo cacciare ver +caccerà cacciare ver +caccerò cacciare ver +cacche cacca nom +cacchi cacchio nom +cacchio cacchio nom +cacchione cacchione nom +cacchioni cacchione nom +cacci cacciare ver +caccia caccia nom +cacciabombardiere cacciabombardiere nom +cacciabombardieri cacciabombardiere nom +cacciagione cacciagione nom +cacciagli cacciare ver +cacciai cacciare ver +cacciami cacciare ver +cacciamo cacciare ver +cacciando cacciare ver +cacciandola cacciare ver +cacciandole cacciare ver +cacciandoli cacciare ver +cacciandolo cacciare ver +cacciandone cacciare ver +cacciandosi cacciare ver +cacciandovi cacciare ver +cacciano cacciare ver +cacciante cacciare ver +caccianti cacciare ver +cacciar cacciare ver +cacciarci cacciare ver +cacciare cacciare ver +cacciarla cacciare ver +cacciarle cacciare ver +cacciarli cacciare ver +cacciarlo cacciare ver +cacciarmi cacciare ver +cacciarne cacciare ver +cacciarono cacciare ver +cacciarsi cacciare ver +cacciarti cacciare ver +cacciarvi cacciare ver +cacciasommergibili cacciasommergibili nom +cacciasse cacciare ver +cacciassero cacciare ver +cacciata cacciata nom +cacciate cacciare ver +cacciateli cacciare ver +cacciatemi cacciare ver +cacciati cacciare ver +cacciato cacciare ver +cacciatora cacciatora adv +cacciatore cacciatore nom +cacciatori cacciatore nom +cacciatorini cacciatorino nom +cacciatorpediniere cacciatorpediniere nom +cacciatorpedinieri cacciatorpediniere nom +cacciatrice cacciatore nom +cacciatrici cacciatore nom +cacciava cacciare ver +cacciavano cacciare ver +cacciavite cacciavite nom +caccino cacciare ver +caccio cacciare ver +cacciucco cacciucco nom +cacciò cacciare ver +caccola caccola nom +caccole caccola nom +cachemire cachemire nom +cachessia cachessia nom +cachet cachet nom +cachi cachi adj +caci cacio nom +caciara caciara nom +caciare caciara nom +cacicchi cacicco nom +cacicco cacicco nom +cacio cacio nom +caciocavalli caciocavallo nom +caciocavallo caciocavallo nom +caciotta caciotta nom +caciotte caciotta nom +caco caco nom +cacofonia cacofonia nom +cacofonica cacofonico adj +cacofoniche cacofonico adj +cacofonici cacofonico adj +cacofonico cacofonico adj +cacofonie cacofonia nom +cactacee cactacee nom +cactus cactus nom +cacume cacume nom +cada cadere ver +cadano cadere ver +cadauna cadauno adj +cadauno cadauno adj +cadavere cadavere nom +cadaveri cadavere nom +cadaverica cadaverico adj +cadaveriche cadaverico adj +cadaverici cadaverico adj +cadaverico cadaverico adj +cadaverina cadaverina nom +cadaverine cadaverina nom +cadde cadere ver +caddero cadere ver +caddi cadere ver +cade cadere ver +cademmo cadere ver +cadendo cadere ver +cadendoci cadere ver +cadendogli cadere ver +cadendone cadere ver +cadendovi cadere ver +cadente cadente adj +cadenti cadente adj +cadenza cadenza nom +cadenzale cadenzare ver +cadenzali cadenzare ver +cadenzando cadenzare ver +cadenzano cadenzare ver +cadenzare cadenzare ver +cadenzata cadenzare ver +cadenzate cadenzare ver +cadenzati cadenzare ver +cadenzato cadenzare ver +cadenze cadenza nom +cader cadere ver +caderci cadere ver +cadere cadere ver +cadergli cadere ver +caderle cadere ver +cadermi cadere ver +caderne cadere ver +cadervi cadere ver +cadesse cadere ver +cadessero cadere ver +cadeste cadere ver +cadesti cadere ver +cadete cadere ver +cadetta cadetto adj +cadette cadetto adj +cadetti cadetto nom +cadetto cadetto adj +cadeva cadere ver +cadevano cadere ver +cadevo cadere ver +cadi cadere ver +cadiamo cadere ver +cadile cadere ver +cadili cadere ver +cadine cadere ver +caditoia caditoia nom +caditoie caditoia nom +cadmi cadmio nom +cadmio cadmio nom +cado cadere ver +cadono cadere ver +cadrai cadere ver +cadranno cadere ver +cadrebbe cadere ver +cadrebbero cadere ver +cadrei cadere ver +cadremmo cadere ver +cadremo cadere ver +cadresti cadere ver +cadrete cadere ver +cadrà cadere ver +cadrò cadere ver +caduca caduco adj +caducei caduceo nom +caduceo caduceo nom +caduche caduco adj +caduchi caduco adj +caducità caducità nom +caduco caduco adj +caduta caduta nom +cadute caduta nom +caduti caduto nom +caduto cadere ver +cadì cadì nom +caffa caffo adj +caffe caffo adj +caffeina caffeina nom +caffeine caffeina nom +caffellatte caffellatte nom +caffettani caffettano nom +caffettano caffettano nom +caffetteria caffetteria nom +caffetterie caffetteria nom +caffettiera caffettiera|caffettiere nom +caffettiere caffettiera|caffettiere nom +caffettieri caffettiere nom +caffi caffo adj +caffo caffo adj +caffè caffè nom +cafonaggine cafonaggine nom +cafonaggini cafonaggine nom +cafonata cafonata nom +cafone cafone adj +cafonesco cafonesco adj +cafoni cafone nom +caga cagare ver +cagando cagare ver +cagano cagare ver +cagar cagare ver +cagare cagare ver +cagata cagare ver +cagate cagare ver +cagati cagare ver +cagato cagare ver +cagava cagare ver +caghi cagare ver +caghino cagare ver +cagiona cagionare ver +cagionando cagionare ver +cagionandogli cagionare ver +cagionandone cagionare ver +cagionano cagionare ver +cagionar cagionare ver +cagionare cagionare ver +cagionargli cagionare ver +cagionarne cagionare ver +cagionarono cagionare ver +cagionata cagionare ver +cagionate cagionare ver +cagionati cagionare ver +cagionato cagionare ver +cagionava cagionare ver +cagionavano cagionare ver +cagione cagione nom +cagionerà cagionare ver +cagionevole cagionevole adj +cagionevoli cagionevole adj +cagioni cagionare ver +cagionino cagionare ver +cagionò cagionare ver +cagli caglio nom +caglia cagliare ver +cagliano cagliare ver +cagliar cagliare ver +cagliare cagliare ver +cagliaritana cagliaritano adj +cagliaritane cagliaritano adj +cagliaritani cagliaritano nom +cagliaritano cagliaritano adj +cagliata cagliata nom +cagliate cagliare ver +cagliati cagliare ver +cagliato cagliare ver +cagliatura cagliatura nom +caglio caglio nom +cagna cagna nom +cagnara cagnara nom +cagne cagna nom +cagnesca cagnesco adj +cagnesche cagnesco adj +cagnesco cagnesco adj +cagnone cagnone adv +cagnotti cagnotto nom +cagnotto cagnotto nom +cago cagare ver +cagò cagare ver +caicchi caicco nom +caicco caicco nom +caid caid nom +caimani caimano nom +caimano caimano nom +cairota cairota adj +cairote cairota adj +cairoti cairota nom +cala cala nom +calabra calabro adj +calabrache calabrache nom +calabre calabro adj +calabrese calabrese adj +calabresella calabresella nom +calabresi calabrese adj +calabri calabro adj +calabro calabro adj +calabrone calabrone nom +calabroni calabrone nom +calabrosa calabrosa nom +calafataggio calafataggio nom +calafatare calafatare ver +calafatate calafatare ver +calafatati calafatare ver +calafati calafato nom +calafato calafato nom +calai calare ver +calamai calamaio nom +calamaio calamaio nom +calamari calamaro nom +calamaro calamaro nom +calami calamo nom +calamina calamina nom +calamine calamina nom +calamistro calamistro nom +calamita calamita nom +calamitando calamitare ver +calamitano calamitare ver +calamitare calamitare ver +calamitata calamitare ver +calamitate calamitato adj +calamitati calamitare ver +calamitato calamitare ver +calamite calamita nom +calamitosa calamitoso adj +calamitosi calamitoso adj +calamitoso calamitoso adj +calamità calamità nom +calamitò calamitare ver +calamo calamo nom +calanca calanca nom +calanche calanca nom +calanchi calanco nom +calanco calanco nom +calando calare ver +calandoci calare ver +calandola calare ver +calandoli calare ver +calandolo calare ver +calandomi calare ver +calandosi calare ver +calandra calandra nom +calandrati calandrare ver +calandrato calandrare ver +calandratura calandratura nom +calandre calandra nom +calandrella calandrella nom +calandrelle calandrella nom +calandri calandro nom +calandrini calandrino nom +calandrino calandrino nom +calandro calandro nom +calane calare ver +calano calare ver +calante calante adj +calanti calante adj +calapranzi calapranzi nom +calar calare ver +calarci calare ver +calare calare ver +calargli calare ver +calarla calare ver +calarle calare ver +calarli calare ver +calarlo calare ver +calarmi calare ver +calarne calare ver +calarono calare ver +calarsi calare ver +calarti calare ver +calarvi calare ver +calasse calare ver +calassero calare ver +calata calare ver +calate calare ver +calati calare ver +calatide calatide nom +calato calare ver +calava calare ver +calavano calare ver +calavi calare ver +calaza calaza nom +calaze calaza nom +calca calca nom +calcagni calcagno nom +calcagno calcagno nom +calcai calcare ver +calcando calcare ver +calcandola calcare ver +calcano calcare ver +calcante calcare ver +calcar calcare ver +calcara calcara nom +calcare calcare ver +calcarea calcareo adj +calcaree calcareo adj +calcarei calcareo adj +calcareo calcareo adj +calcarone calcarone nom +calcaroni calcarone nom +calcarono calcare ver +calcasse calcare ver +calcata calcare ver +calcate calcare ver +calcatesi calcare ver +calcati calcare ver +calcato calcare ver +calcatoio calcatoio nom +calcava calcare ver +calcavano calcare ver +calce calce nom +calcedoni calcedonio nom +calcedonio calcedonio nom +calcestruzzi calcestruzzo nom +calcestruzzo calcestruzzo nom +calche calca nom +calcheranno calcare ver +calcherei calcare ver +calcherà calcare ver +calchi calco nom +calchiamo calcare ver +calci calce|calcio nom +calcia calciare ver +calciando calciare ver +calciandola calciare ver +calciandole calciare ver +calciandolo calciare ver +calciano calciare ver +calciante calciare ver +calcianti calciare ver +calciare calciare ver +calciarla calciare ver +calciarlo calciare ver +calciarono calciare ver +calciasse calciare ver +calciata calciare ver +calciati calciare ver +calciato calciare ver +calciatore calciatore nom +calciatori calciatore nom +calciatrice calciatore nom +calciatrici calciatore nom +calciatura calciatura nom +calciature calciatura nom +calciava calciare ver +calcica calcico adj +calciche calcico adj +calcici calcico adj +calcico calcico adj +calcifica calcificare ver +calcificano calcificare ver +calcificante calcificare ver +calcificare calcificare ver +calcificata calcificare ver +calcificate calcificare ver +calcificati calcificare ver +calcificato calcificare ver +calcificazione calcificazione nom +calcifichi calcificare ver +calcifico calcificare ver +calcina calcina nom +calcinacci calcinaccio nom +calcinaccio calcinaccio nom +calcinaci calcinare ver +calcinai calcinaio nom +calcinaio calcinaio nom +calcinando calcinare ver +calcinare calcinare ver +calcinata calcinare ver +calcinate calcinato adj +calcinatesi calcinare ver +calcinati calcinato adj +calcinato calcinare ver +calcinazione calcinazione nom +calcine calcina nom +calcini calcino nom +calcino calcino nom +calcinosi calcinoso adj +calcio calcio nom +calciocianammide calciocianammide nom +calciolo calciolo nom +calcistica calcistico adj +calcistiche calcistico adj +calcistici calcistico adj +calcistico calcistico adj +calcite calcite nom +calciti calcite nom +calciò calciare ver +calco calco nom +calcografia calcografia nom +calcografica calcografico adj +calcografiche calcografico adj +calcografici calcografico adj +calcografico calcografico adj +calcografie calcografia nom +calcografo calcografo nom +calcola calcolare ver +calcolabile calcolabile adj +calcolabili calcolabile adj +calcolai calcolare ver +calcolando calcolare ver +calcolandola calcolare ver +calcolandolo calcolare ver +calcolandone calcolare ver +calcolano calcolare ver +calcolante calcolare ver +calcolare calcolare ver +calcolarla calcolare ver +calcolarle calcolare ver +calcolarli calcolare ver +calcolarlo calcolare ver +calcolarmi calcolare ver +calcolarne calcolare ver +calcolarono calcolare ver +calcolarsela calcolare ver +calcolarsi calcolare ver +calcolarti calcolare ver +calcolasse calcolare ver +calcolassimo calcolare ver +calcolata calcolare ver +calcolate calcolare ver +calcolati calcolare ver +calcolato calcolare ver +calcolatore calcolatore nom +calcolatori calcolatore nom +calcolatrice calcolatore adj +calcolatrici calcolatore nom +calcolava calcolare ver +calcolavano calcolare ver +calcoleranno calcolare ver +calcolerebbe calcolare ver +calcoleremmo calcolare ver +calcoleremo calcolare ver +calcolerete calcolare ver +calcolerà calcolare ver +calcoli calcolo nom +calcoliamo calcolare ver +calcoliamone calcolare ver +calcolino calcolare ver +calcolo calcolo nom +calcolosa calcoloso adj +calcolosi calcolosi nom +calcolò calcolare ver +calcomanie calcomania nom +calcopirite calcopirite nom +calcò calcare ver +calda caldo adj +caldaia caldaia nom +caldaie caldaia nom +caldamente caldamente adv +caldana caldana nom +caldane caldana nom +caldani caldano nom +caldano caldano nom +caldarrosta caldarrosta nom +caldarroste caldarrosta nom +calde caldo adj +caldeggerebbero caldeggiare ver +caldeggia caldeggiare ver +caldeggiando caldeggiare ver +caldeggiandone caldeggiare ver +caldeggiano caldeggiare ver +caldeggiare caldeggiare ver +caldeggiarlo caldeggiare ver +caldeggiarne caldeggiare ver +caldeggiarono caldeggiare ver +caldeggiata caldeggiare ver +caldeggiate caldeggiare ver +caldeggiati caldeggiare ver +caldeggiato caldeggiare ver +caldeggiava caldeggiare ver +caldeggiavano caldeggiare ver +caldeggiavo caldeggiare ver +caldeggio caldeggiare ver +caldeggiò caldeggiare ver +caldera caldera nom +calderai calderaio nom +calderaio calderaio nom +caldere caldera nom +calderone calderone nom +calderoni calderone nom +caldi caldo adj +caldo caldo adj +caldura caldura nom +cale cala nom +calefazione calefazione nom +caleidoscopi caleidoscopio nom +caleidoscopio caleidoscopio nom +calembour calembour nom +calendari calendario nom +calendario calendario nom +calende calende nom +calendimaggio calendimaggio nom +calendola calere ver +calendoli calere ver +calepini calepino nom +calepino calepino nom +caler calere ver +caleranno calare ver +calere calere ver +calerebbe calare ver +calerebbero calare ver +calerei calare ver +calerà calare ver +calesse calesse nom +calessi calesse nom +caletta calettare ver +calettamento calettamento nom +calettata calettare ver +calettate calettare ver +calettati calettare ver +calettato calettare ver +calettatura calettatura nom +caletti calettare ver +caleva calere ver +calevi calere ver +calevo calere ver +calga calere ver +cali calo nom +calia calia nom +caliamo calare|calere ver +calibra calibrare ver +calibrando calibrare ver +calibrandolo calibrare ver +calibrandosi calibrare ver +calibrano calibrare ver +calibrare calibrare ver +calibrarle calibrare ver +calibrarlo calibrare ver +calibrarsi calibrare ver +calibrata calibrare ver +calibrate calibrare ver +calibrati calibrare ver +calibrato calibrare ver +calibratore calibratore nom +calibratori calibratore nom +calibri calibro nom +calibro calibro nom +calibrò calibrare ver +calicanti calicanto nom +calicanto calicanto nom +calice calice nom +calicetti calicetto nom +calicetto calicetto nom +calici calice nom +calidari calidario nom +calidario calidario nom +calie calia nom +califfati califfato nom +califfato califfato nom +califfi califfo nom +califfo califfo nom +californi californio nom +californiana californiano adj +californiane californiano adj +californiani californiano adj +californiano californiano adj +californio californio nom +caliga caliga nom +calighe caliga nom +caligine caligine nom +caliginosa caliginoso adj +caliginose caliginoso adj +caliginoso caliginoso adj +calila calere ver +calimene calere ver +caline calere ver +calino calare ver +calisi calere ver +calla calla nom +calle calla|calle nom +calli calle|callo nom +callida callido adj +callido callido adj +callifugo callifugo nom +calligrafa calligrafo nom +calligrafi calligrafo nom +calligrafia calligrafia nom +calligrafica calligrafico adj +calligrafiche calligrafico adj +calligrafici calligrafico adj +calligrafico calligrafico adj +calligrafie calligrafia nom +calligrafismo calligrafismo nom +calligrafo calligrafo nom +callista callista nom +calliste callista nom +callisti callista nom +callo callo nom +callosa calloso adj +callose calloso adj +callosi calloso adj +callosità callosità nom +calloso calloso adj +calma calma nom +calmai calmare ver +calmammo calmare ver +calmando calmare ver +calmandosi calmare ver +calmano calmare ver +calmante calmante adj +calmanti calmante adj +calmar calmare ver +calmarci calmare ver +calmare calmare ver +calmarla calmare ver +calmarle calmare ver +calmarli calmare ver +calmarlo calmare ver +calmarmi calmare ver +calmarne calmare ver +calmarono calmare ver +calmarsi calmare ver +calmarti calmare ver +calmasse calmare ver +calmassero calmare ver +calmata calmare ver +calmate calmare ver +calmatesi calmare ver +calmatevi calmare ver +calmati calmare ver +calmato calmare ver +calmava calmare ver +calmavano calmare ver +calme calmo adj +calmeranno calmare ver +calmerebbe calmare ver +calmerà calmare ver +calmi calmo adj +calmiamo calmare ver +calmiamoci calmare ver +calmierando calmierare ver +calmierare calmierare ver +calmierarli calmierare ver +calmierati calmierare ver +calmierato calmierare ver +calmiere calmiere nom +calmieri calmiere nom +calmiero calmierare ver +calmino calmare ver +calmo calmo adj +calmò calmare ver +calo calo nom +calomelano calomelano nom +calore calore nom +calori calore nom +caloria caloria nom +calorica calorico adj +caloriche calorico adj +calorici calorico adj +calorico calorico adj +calorie caloria nom +caloriferi calorifero nom +calorifero calorifero nom +calorifica calorifico adj +calorifici calorifico adj +calorifico calorifico adj +calorimetri calorimetro nom +calorimetria calorimetria nom +calorimetrie calorimetria nom +calorimetro calorimetro nom +calorosa caloroso adj +calorosamente calorosamente adv +calorose caloroso adj +calorosi caloroso adj +calorosità calorosità nom +caloroso caloroso adj +calosce caloscia nom +caloscia caloscia nom +calotta calotta nom +calotte calotta nom +calpesta calpestare ver +calpestando calpestare ver +calpestandola calpestare ver +calpestandole calpestare ver +calpestandoli calpestare ver +calpestandolo calpestare ver +calpestandone calpestare ver +calpestano calpestare ver +calpestante calpestare ver +calpestanti calpestare ver +calpestar calpestare ver +calpestare calpestare ver +calpestarle calpestare ver +calpestarli calpestare ver +calpestarlo calpestare ver +calpestarmi calpestare ver +calpestarne calpestare ver +calpestarono calpestare ver +calpestasse calpestare ver +calpestassero calpestare ver +calpestata calpestare ver +calpestate calpestare ver +calpestati calpestare ver +calpestato calpestare ver +calpestatrice calpestatore nom +calpestava calpestare ver +calpestavano calpestare ver +calpestavi calpestare ver +calpesterai calpestare ver +calpesterà calpestare ver +calpesterò calpestare ver +calpesti calpestare ver +calpestino calpestare ver +calpestio calpestio nom +calpesto calpestare ver +calpestò calpestare ver +calumet calumet nom +calunni calunniare ver +calunnia calunnia nom +calunniando calunniare ver +calunniano calunniare ver +calunniare calunniare ver +calunniarli calunniare ver +calunniarlo calunniare ver +calunniarmi calunniare ver +calunniarono calunniare ver +calunniata calunniare ver +calunniate calunniare ver +calunniati calunniare ver +calunniato calunniare ver +calunniatore calunniatore adj +calunniatori calunniatore nom +calunniatrice calunniatore nom +calunniava calunniare ver +calunniavano calunniare ver +calunnie calunnia nom +calunnio calunniare ver +calunniosa calunnioso adj +calunniose calunnioso adj +calunniosi calunnioso adj +calunnioso calunnioso adj +calunniò calunniare ver +calura calura nom +calure calura nom +calva calvo adj +calvari calvario nom +calvario calvario nom +calve calvo adj +calvi calvo adj +calvinismo calvinismo nom +calvinista calvinista nom +calviniste calvinista nom +calvinisti calvinista nom +calvizie calvizie nom +calvo calvo adj +calza calza nom +calzamaglia calzamaglia nom +calzamaglie calzamaglia nom +calzando calzare ver +calzano calzare ver +calzante calzante adj +calzanti calzante adj +calzare calzare ver +calzarla calzare ver +calzarli calzare ver +calzarlo calzare ver +calzarono calzare ver +calzassero calzare ver +calzata calzare ver +calzate calzare ver +calzati calzare ver +calzato calzare ver +calzatura calzatura nom +calzature calzatura nom +calzaturiera calzaturiero adj +calzaturiere calzaturiero adj +calzaturieri calzaturiero adj +calzaturiero calzaturiero adj +calzaturifici calzaturificio nom +calzaturificio calzaturificio nom +calzava calzare ver +calzavano calzare ver +calze calza nom +calzerebbe calzare ver +calzerebbero calzare ver +calzerotti calzerotto nom +calzerà calzare ver +calzetta calzetta nom +calzette calzetta nom +calzetteria calzetteria nom +calzettone calzettone nom +calzettoni calzettone nom +calzi calzare ver +calzifici calzificio nom +calzificio calzificio nom +calzini calzino nom +calzino calzino nom +calzo calzare ver +calzolaia calzolaio nom +calzolaio calzolaio nom +calzoleria calzoleria nom +calzoncini calzoncini nom +calzone calzone nom +calzoni calzone nom +calzò calzare ver +calò calare ver +camaldolese camaldolese adj +camaldolesi camaldolese adj +camaleonte camaleonte nom +camaleonti camaleonte nom +camaleontica camaleontico adj +camaleontiche camaleontico adj +camaleontici camaleontico adj +camaleontico camaleontico adj +camaleontismo camaleontismo nom +camarilla camarilla nom +camauro camauro nom +cambi cambio nom +cambia cambiare ver +cambiadischi cambiadischi nom +cambiai cambiare ver +cambiala cambiare ver +cambiale cambiale nom +cambiali cambiale nom +cambialo cambiare ver +cambiamenti cambiamento nom +cambiamento cambiamento nom +cambiami cambiare ver +cambiammo cambiare ver +cambiamo cambiare ver +cambiamogli cambiare ver +cambiamola cambiare ver +cambiamole cambiare ver +cambiamoli cambiare ver +cambiamolo cambiare ver +cambiamonete cambiamonete nom +cambiando cambiare ver +cambiandogli cambiare ver +cambiandola cambiare ver +cambiandole cambiare ver +cambiandoli cambiare ver +cambiandolo cambiare ver +cambiandone cambiare ver +cambiandosi cambiare ver +cambiano cambiare ver +cambiante cambiare ver +cambianti cambiare ver +cambiar cambiare ver +cambiarci cambiare ver +cambiare cambiare ver +cambiargli cambiare ver +cambiaria cambiario adj +cambiarie cambiario adj +cambiario cambiario adj +cambiarla cambiare ver +cambiarle cambiare ver +cambiarli cambiare ver +cambiarlo cambiare ver +cambiarmi cambiare ver +cambiarne cambiare ver +cambiarono cambiare ver +cambiarsi cambiare ver +cambiarti cambiare ver +cambiarvi cambiare ver +cambiasi cambiare ver +cambiasse cambiare ver +cambiassero cambiare ver +cambiassi cambiare ver +cambiassimo cambiare ver +cambiaste cambiare ver +cambiata cambiare ver +cambiate cambiare ver +cambiategli cambiare ver +cambiatela cambiare ver +cambiatele cambiare ver +cambiateli cambiare ver +cambiatelo cambiare ver +cambiatemi cambiare ver +cambiati cambiare ver +cambiato cambiare ver +cambiava cambiare ver +cambiavalute cambiavalute nom +cambiavano cambiare ver +cambiavo cambiare ver +cambierai cambiare ver +cambieranno cambiare ver +cambierebbe cambiare ver +cambierebbero cambiare ver +cambierei cambiare ver +cambieremmo cambiare ver +cambieremo cambiare ver +cambiereste cambiare ver +cambieresti cambiare ver +cambierete cambiare ver +cambierà cambiare ver +cambierò cambiare ver +cambino cambiare ver +cambio cambio nom +cambiò cambiare ver +cambogiana cambogiano adj +cambogiane cambogiano adj +cambogiani cambogiano adj +cambogiano cambogiano adj +cambretta cambretta nom +cambrica cambrico adj +cambrici cambrico adj +cambusa cambusa nom +cambuse cambusa nom +cambusiere cambusiere nom +cambusieri cambusiere nom +camelia camelia nom +camelie camelia nom +camembert camembert nom +camera camera nom +camerale camerale adj +camerali camerale adj +cameraman cameraman nom +camerata camerata nom +camerate camerata nom +cameratesca cameratesco adj +camerateschi cameratesco adj +cameratesco cameratesco adj +camerati camerata nom +cameratismo cameratismo nom +camere camera nom +cameriera cameriere nom +cameriere cameriere nom +camerieri cameriere nom +camerini camerino nom +camerino camerino nom +camerista camerista nom +cameristica cameristico adj +cameristiche cameristico adj +cameristici cameristico adj +cameristico cameristico adj +camerlenghi camerlengo nom +camerlengo camerlengo nom +camerunese camerunese adj +camerunesi camerunese adj +camice camice nom +camiceria camiceria nom +camicerie camiceria nom +camicetta camicetta nom +camicette camicetta nom +camici camice nom +camicia camicia nom +camiciai camiciaio nom +camicie camicia nom +camiciola camiciola nom +camiciotti camiciotto nom +camiciotto camiciotto nom +caminetti caminetto nom +caminetto caminetto nom +camini camino nom +caminiera caminiera nom +caminiere caminiera nom +camino camino nom +camion camion nom +camionabile camionabile adj +camionabili camionabile adj +camionale camionale adj +camioncini camioncino nom +camioncino camioncino nom +camionetta camionetta nom +camionette camionetta nom +camionista camionista nom +camionisti camionista nom +camita camita nom +camiti camita nom +camitica camitico adj +camitiche camitico adj +camitico camitico adj +camma camma nom +camme camma nom +cammei cammeo nom +cammelli cammello nom +cammelliere cammelliere nom +cammellieri cammelliere nom +cammello cammello nom +cammeo cammeo nom +cammina camminare ver +camminai camminare ver +camminamenti camminamento nom +camminamento camminamento nom +camminammo camminare ver +camminando camminare ver +camminandoci camminare ver +camminandovi camminare ver +camminano camminare ver +camminante camminare ver +camminanti camminare ver +camminar camminare ver +camminarci camminare ver +camminare camminare ver +camminarono camminare ver +camminasse camminare ver +camminassero camminare ver +camminata camminata nom +camminate camminata nom +camminati camminare ver +camminato camminare ver +camminatore camminatore nom +camminatori camminatore nom +camminatrice camminatore nom +camminatrici camminatore nom +camminava camminare ver +camminavamo camminare ver +camminavano camminare ver +camminavo camminare ver +camminerai camminare ver +cammineranno camminare ver +camminerebbe camminare ver +cammineremo camminare ver +camminerete camminare ver +camminerà camminare ver +camminerò camminare ver +cammini cammino nom +camminiamo camminare ver +camminino camminare ver +cammino cammino nom +camminò camminare ver +camola camola nom +camole camola nom +camomilla camomilla nom +camomille camomilla nom +camorra camorra nom +camorre camorra nom +camorrista camorrista nom +camorriste camorrista nom +camorristi camorrista nom +camosci camoscio nom +camoscio camoscio nom +camozze camozza nom +campa campare ver +campaci campare ver +campagna campagna nom +campagne campagna nom +campagnola campagnolo adj +campagnole campagnolo adj +campagnoli campagnolo adj +campagnolo campagnolo adj +campai campare ver +campale campale adj +campali campale adj +campana campano adj +campanacci campanaccio nom +campanaccio campanaccio nom +campanari campanario adj +campanaria campanario adj +campanarie campanario adj +campanario campanario adj +campanaro campanaro nom +campando campare ver +campane campana|campano nom +campanella campanella|campanello nom +campanelle campanella|campanello nom +campanelli campanello nom +campanello campanello nom +campani campano adj +campanile campanile nom +campanili campanile nom +campanilismi campanilismo nom +campanilismo campanilismo nom +campanilista campanilista nom +campaniliste campanilista nom +campanilisti campanilista nom +campanilistica campanilistico adj +campanilistiche campanilistico adj +campanilistici campanilistico adj +campanilistico campanilistico adj +campano campano adj +campanula campanula nom +campanulacee campanulacee nom +campanulata campanulato adj +campanulate campanulato adj +campanulati campanulato adj +campanulato campanulato adj +campanule campanula nom +campar campare ver +campare campare ver +camparlo campare ver +campasse campare ver +campassi campare ver +campata campata nom +campate campata nom +campati campare ver +campato campare ver +campava campare ver +campeggi campeggio nom +campeggia campeggiare ver +campeggiando campeggiare ver +campeggiano campeggiare ver +campeggiante campeggiare ver +campeggiare campeggiare ver +campeggiarono campeggiare ver +campeggiassero campeggiare ver +campeggiata campeggiare ver +campeggiate campeggiare ver +campeggiato campeggiare ver +campeggiatore campeggiatore nom +campeggiatori campeggiatore nom +campeggiatrice campeggiatore nom +campeggiava campeggiare ver +campeggiavano campeggiare ver +campeggio campeggio nom +campeggista campeggista nom +campeggiò campeggiare ver +camper camper nom +camperebbe campare ver +campestre campestre adj +campestri campestre adj +campi campo nom +campiamo campare|campire ver +campidani campidano nom +campidano campidano nom +campidogli campidoglio nom +campidoglio campidoglio nom +campielli campiello nom +campiello campiello nom +campii campire ver +camping camping nom +campino campare ver +campiona campionare ver +campionai campionare ver +campionamenti campionamento nom +campionamento campionamento nom +campionando campionare ver +campionano campionare ver +campionare campionare ver +campionari campionario adj +campionaria campionario adj +campionarie campionario adj +campionario campionario nom +campionarlo campionare ver +campionarono campionare ver +campionata campionare ver +campionate campionare ver +campionatele campionare ver +campionati campionato nom +campionato campionato nom +campionatura campionatura nom +campionature campionatura nom +campionava campionare ver +campionavano campionare ver +campione campione nom +campionessa campione nom +campionesse campione nom +campioni campione nom +campionissimi campionissimo nom +campionissimo campionissimo nom +campionò campionare ver +campire campire ver +campirsi campire ver +campisce campire ver +campiscono campire ver +campita campire ver +campite campire ver +campiti campire ver +campito campire ver +campivano campire ver +campo campo nom +campobassana campobassano adj +campobassani campobassano adj +campobassano campobassano adj +camposanti camposanto nom +camposanto camposanto nom +campus campus nom +campylobacter campylobacter nom +campì campire ver +campò campare ver +camuffa camuffare ver +camuffando camuffare ver +camuffandola camuffare ver +camuffandoli camuffare ver +camuffandolo camuffare ver +camuffandosi camuffare ver +camuffano camuffare ver +camuffare camuffare ver +camuffarla camuffare ver +camuffarli camuffare ver +camuffarlo camuffare ver +camuffarono camuffare ver +camuffarsi camuffare ver +camuffata camuffare ver +camuffate camuffare ver +camuffati camuffare ver +camuffato camuffare ver +camuffava camuffare ver +camuffavano camuffare ver +camuffiamo camuffare ver +camuffino camuffare ver +camuffo camuffare ver +camuffò camuffare ver +camusa camuso adj +camusi camuso adj +camuso camuso adj +can can nom +canadese canadese adj +canadesi canadese adj +canaglia canaglia nom +canagliesca canagliesco adj +canagliesco canagliesco adj +canale canale nom +canali canale nom +canalicolare canalicolare adj +canalicolari canalicolare adj +canalicoli canalicolo nom +canalicolo canalicolo nom +canalizza canalizzare ver +canalizzando canalizzare ver +canalizzano canalizzare ver +canalizzare canalizzare ver +canalizzarla canalizzare ver +canalizzarono canalizzare ver +canalizzarsi canalizzare ver +canalizzata canalizzare ver +canalizzate canalizzare ver +canalizzati canalizzare ver +canalizzato canalizzare ver +canalizzava canalizzare ver +canalizzazione canalizzazione nom +canalizzazioni canalizzazione nom +canalizzò canalizzare ver +canalone canalone nom +canaloni canalone nom +canapa canapa nom +canapaio canapaio nom +canape canapa nom +canapi canapo nom +canapicole canapicolo adj +canapicoltura canapicoltura nom +canapiera canapiero adj +canapiero canapiero adj +canapificio canapificio nom +canapina canapino adj +canapine canapino adj +canapini canapino adj +canapino canapino adj +canapo canapo nom +canapone canapone nom +canapè canapè nom +canard canard nom +canarina canarino nom +canarine canarino adj +canarini canarino nom +canarino canarino adj +canasta canasta nom +canaste canasta nom +cancan cancan nom +cancella cancellare ver +cancellabile cancellabile adj +cancellabili cancellabile adj +cancellai cancellare ver +cancellala cancellare ver +cancellale cancellare ver +cancellali cancellare ver +cancellalo cancellare ver +cancellami cancellare ver +cancellammo cancellare ver +cancellando cancellare ver +cancellandogli cancellare ver +cancellandola cancellare ver +cancellandole cancellare ver +cancellandoli cancellare ver +cancellandolo cancellare ver +cancellandomi cancellare ver +cancellandone cancellare ver +cancellandosi cancellare ver +cancellane cancellare ver +cancellano cancellare ver +cancellante cancellare ver +cancellanti cancellare ver +cancellar cancellare ver +cancellarci cancellare ver +cancellare cancellare ver +cancellargli cancellare ver +cancellargliela cancellare ver +cancellarla cancellare ver +cancellarle cancellare ver +cancellarli cancellare ver +cancellarlo cancellare ver +cancellarmela cancellare ver +cancellarmi cancellare ver +cancellarne cancellare ver +cancellarono cancellare ver +cancellarsi cancellare ver +cancellartela cancellare ver +cancellarti cancellare ver +cancellarvi cancellare ver +cancellasse cancellare ver +cancellassero cancellare ver +cancellassi cancellare ver +cancellassimo cancellare ver +cancellaste cancellare ver +cancellata cancellare ver +cancellate cancellare ver +cancellatela cancellare ver +cancellatele cancellare ver +cancellateli cancellare ver +cancellatelo cancellare ver +cancellatemi cancellare ver +cancellati cancellare ver +cancellato cancellare ver +cancellatura cancellatura nom +cancellature cancellatura nom +cancellava cancellare ver +cancellavamo cancellare ver +cancellavano cancellare ver +cancellavo cancellare ver +cancellazione cancellazione nom +cancellazioni cancellazione nom +cancellerai cancellare ver +cancelleranno cancellare ver +cancellerebbe cancellare ver +cancellerebbero cancellare ver +cancellerei cancellare ver +cancelleremmo cancellare ver +cancelleremo cancellare ver +cancelleresca cancelleresco adj +cancellereschi cancelleresco adj +cancelleresco cancelleresco adj +cancellereste cancellare ver +cancelleresti cancellare ver +cancellerete cancellare ver +cancelleria cancelleria nom +cancellerie cancelleria nom +cancellerà cancellare ver +cancellerò cancellare ver +cancelli cancello nom +cancelliamo cancellare ver +cancelliamola cancellare ver +cancelliamole cancellare ver +cancelliamoli cancellare ver +cancelliamolo cancellare ver +cancelliate cancellare ver +cancelliere cancelliere nom +cancellieri cancelliere nom +cancellini cancellino nom +cancellino cancellare ver +cancello cancello nom +cancellò cancellare ver +cancerogena cancerogeno adj +cancerogene cancerogeno adj +cancerogeni cancerogeno adj +cancerogenicità cancerogenicità nom +cancerogeno cancerogeno adj +cancerologia cancerologia nom +cancerologo cancerologo nom +cancerosa canceroso adj +cancerose canceroso adj +cancerosi canceroso adj +canceroso canceroso adj +cancrena cancrena nom +cancrene cancrena nom +cancri cancro nom +cancro cancro nom +candeggiante candeggiante adj +candeggianti candeggiante adj +candeggiare candeggiare ver +candeggiata candeggiare ver +candeggiato candeggiare ver +candeggina candeggina nom +candeggio candeggio nom +candela candela nom +candelabri candelabro nom +candelabro candelabro nom +candele candela nom +candeliere candeliere nom +candelieri candeliere nom +candelora candelora nom +candelore candelora nom +candelotti candelotto nom +candelotto candelotto nom +candenti candire ver +candida candido adj +candidai candidare ver +candidamente candidamente adv +candidando candidare ver +candidandole candidare ver +candidandolo candidare ver +candidandosi candidare ver +candidano candidare ver +candidante candidare ver +candidanti candidare ver +candidarci candidare ver +candidare candidare ver +candidarla candidare ver +candidarli candidare ver +candidarlo candidare ver +candidarmi candidare ver +candidarne candidare ver +candidarono candidare ver +candidarsi candidare ver +candidarti candidare ver +candidasi candidare ver +candidasse candidare ver +candidassero candidare ver +candidassi candidare ver +candidata candidare ver +candidate candidato nom +candidati candidato nom +candidato candidato nom +candidatura candidatura nom +candidature candidatura nom +candidava candidare ver +candidavano candidare ver +candidavo candidare ver +candide candido adj +candideranno candidare ver +candiderebbe candidare ver +candiderei candidare ver +candideremo candidare ver +candiderà candidare ver +candiderò candidare ver +candidezza candidezza nom +candidi candido adj +candidiamo candidare ver +candidino candidare ver +candido candido adj +candidò candidare ver +candir candire ver +candire candire ver +candita candito adj +canditati canditato nom +candite candito adj +canditi candito nom +candito candito adj +candore candore nom +candori candore nom +cane cane nom +canea canea nom +canee canea nom +canefora canefora nom +canefore canefora nom +canestra canestra nom +canestrai canestraio nom +canestraio canestraio nom +canestre canestra nom +canestri canestro nom +canestro canestro nom +canfora canfora nom +canforato canforato adj +canfore canfora nom +canfori canforo nom +canforo canforo nom +cangi cangiare ver +cangia cangiare ver +cangiano cangiare ver +cangiante cangiante adj +cangianti cangiante adj +cangiar cangiare ver +cangiare cangiare ver +cangiata cangiare ver +cangiati cangiare ver +cangiato cangiare ver +cangio cangiare ver +cangiò cangiare ver +canguri canguro nom +canguro canguro nom +cani cane nom +canicola canicola nom +canicolare canicolare adj +canicolari canicolare adj +canicole canicola nom +canile canile nom +canili canile nom +canina canino adj +canine canino adj +canini canino nom +canino canino adj +canizie canizie nom +canizza canizza nom +canna canna nom +cannabacee cannabacee nom +cannabis cannabis nom +canne canna nom +cannella cannella nom +cannelle cannella nom +cannelli cannello nom +cannellini cannellino nom +cannellino cannellino nom +cannello cannello nom +cannellone cannellone nom +cannelloni cannellone nom +canneti canneto nom +canneto canneto nom +cannetta cannetta nom +cannette cannetta nom +cannibale cannibale nom +cannibaleschi cannibalesco adj +cannibalesco cannibalesco adj +cannibali cannibale nom +cannibalismo cannibalismo nom +cannicci canniccio nom +canniccio canniccio nom +cannocchiale cannocchiale nom +cannocchiali cannocchiale nom +cannoli cannolo nom +cannolicchi cannolicchio nom +cannolicchio cannolicchio nom +cannolo cannolo nom +cannonata cannonata nom +cannonate cannonata nom +cannoncini cannoncino nom +cannoncino cannoncino nom +cannone cannone nom +cannoneggia cannoneggiare ver +cannoneggiamenti cannoneggiamento nom +cannoneggiamento cannoneggiamento nom +cannoneggiando cannoneggiare ver +cannoneggiandola cannoneggiare ver +cannoneggiano cannoneggiare ver +cannoneggiare cannoneggiare ver +cannoneggiarla cannoneggiare ver +cannoneggiarli cannoneggiare ver +cannoneggiarono cannoneggiare ver +cannoneggiata cannoneggiare ver +cannoneggiati cannoneggiare ver +cannoneggiato cannoneggiare ver +cannoneggiava cannoneggiare ver +cannoneggiavano cannoneggiare ver +cannoneggiò cannoneggiare ver +cannoni cannone nom +cannoniera cannoniera nom +cannoniere cannoniera|cannoniere nom +cannonieri cannoniere nom +cannotto cannotto nom +cannucce cannuccia nom +cannuccia cannuccia nom +cannula cannula nom +cannule cannula nom +canoa canoa nom +canocchia canocchia nom +canocchie canocchia nom +canoe canoa nom +canoismo canoismo nom +canoista canoista nom +canoisti canoista nom +canone canone nom +canoni canone nom +canonica canonico adj +canonicati canonicato nom +canonicato canonicato nom +canoniche canonico adj +canonici canonico adj +canonicità canonicità nom +canonico canonico adj +canonista canonista nom +canonisti canonista nom +canonizza canonizzare ver +canonizzando canonizzare ver +canonizzare canonizzare ver +canonizzarono canonizzare ver +canonizzata canonizzare ver +canonizzate canonizzare ver +canonizzati canonizzare ver +canonizzato canonizzare ver +canonizzazione canonizzazione nom +canonizzazioni canonizzazione nom +canonizzò canonizzare ver +canopi canopo nom +canopo canopo nom +canora canoro adj +canore canoro adj +canori canoro adj +canoro canoro adj +canottaggio canottaggio nom +canotti canotto nom +canottiera canottiera|canottiere nom +canottiere canottiera|canottiere nom +canottieri canottiere nom +canotto canotto nom +canovacci canovaccio nom +canovaccio canovaccio nom +canta cantare ver +cantabile cantabile adj +cantabili cantabile adj +cantaci cantare ver +cantafavola cantafavola nom +cantafavole cantafavola nom +cantai cantare ver +cantala cantare ver +cantami cantare ver +cantammo cantare ver +cantando cantare ver +cantandoci cantare ver +cantandogli cantare ver +cantandola cantare ver +cantandole cantare ver +cantandoli cantare ver +cantandolo cantare ver +cantandone cantare ver +cantandovi cantare ver +cantane cantare ver +cantano cantare ver +cantante cantante nom +cantanti cantante nom +cantar cantare ver +cantarci cantare ver +cantare cantare ver +cantargli cantare ver +cantari cantaro nom +cantaride cantaride nom +cantaridina cantaridina nom +cantarla cantare ver +cantarle cantare ver +cantarli cantare ver +cantarlo cantare ver +cantarne cantare ver +cantaro cantaro nom +cantarono cantare ver +cantarsela cantare ver +cantarsi cantare ver +cantarti cantare ver +cantarvi cantare ver +cantasse cantare ver +cantassero cantare ver +cantassi cantare ver +cantasti cantare ver +cantastorie cantastorie nom +cantata cantare ver +cantate cantare ver +cantatele cantare ver +cantati cantare ver +cantato cantare ver +cantatore cantatore adj +cantatori cantatore nom +cantatrice cantatore nom +cantatrici cantatore nom +cantautore cantautore nom +cantautori cantautore nom +cantautrice cantautore nom +cantautrici cantautore nom +cantava cantare ver +cantavamo cantare ver +cantavano cantare ver +cantavi cantare ver +cantavo cantare ver +canterai cantare ver +canterani canterano nom +canteranno cantare ver +canterano canterano nom +canterebbe cantare ver +canterebbero cantare ver +canterei cantare ver +canteremo cantare ver +canterete cantare ver +canteri cantero nom +canterina canterino adj +canterine canterino adj +canterini canterino nom +canterino canterino adj +cantero cantero nom +canterà cantare ver +canterò cantare ver +canti canto nom +cantiamo cantare ver +cantiamoci cantare ver +cantiate cantare ver +cantica cantica nom +canticchia canticchiare ver +canticchiando canticchiare ver +canticchiano canticchiare ver +canticchiare canticchiare ver +canticchiarla canticchiare ver +canticchiata canticchiare ver +canticchiate canticchiare ver +canticchiati canticchiare ver +canticchiato canticchiare ver +canticchiava canticchiare ver +canticchio canticchiare ver +canticchiò canticchiare ver +cantiche cantica nom +cantici cantico nom +cantico cantico nom +cantiere cantiere nom +cantieri cantiere nom +cantieristica cantieristico adj +cantieristiche cantieristico adj +cantieristici cantieristico adj +cantieristico cantieristico adj +cantilena cantilena nom +cantilenante cantilenare ver +cantilenare cantilenare ver +cantilenata cantilenare ver +cantilenati cantilenare ver +cantilenato cantilenare ver +cantilene cantilena nom +cantina cantina nom +cantine cantina nom +cantini cantino nom +cantiniera cantiniere nom +cantiniere cantiniere nom +cantinieri cantiniere nom +cantino cantare ver +canto canto nom +cantonale cantonale adj +cantonali cantonale adj +cantonata cantonata nom +cantonate cantonata nom +cantone cantone nom +cantoni cantone nom +cantoniera cantoniera adj +cantoniere cantoniera|cantoniere nom +cantonieri cantoniere nom +cantora cantore nom +cantore cantore nom +cantori cantore nom +cantoria cantoria nom +cantorie cantoria nom +cantorini cantorino nom +cantorino cantorino nom +cantucci cantuccio nom +cantuccio cantuccio nom +cantò cantare ver +canuta canuto adj +canute canuto adj +canuti canuto adj +canutiglia canutiglia nom +canuto canuto adj +canvassing canvassing nom +canyon canyon nom +canzona canzonare ver +canzonando canzonare ver +canzonandolo canzonare ver +canzonano canzonare ver +canzonare canzonare ver +canzonarlo canzonare ver +canzonata canzonare ver +canzonato canzonare ver +canzonatori canzonatorio adj +canzonatoria canzonatorio adj +canzonatorie canzonatorio adj +canzonatorio canzonatorio adj +canzonatura canzonatura nom +canzonature canzonatura nom +canzonava canzonare ver +canzonavano canzonare ver +canzone canzone nom +canzonetta canzonetta nom +canzonette canzonetta nom +canzonettista canzonettista nom +canzonettiste canzonettista nom +canzoni canzone nom +canzoniamo canzonare ver +canzoniere canzoniere nom +canzonieri canzoniere nom +canzono canzonare ver +canzonò canzonare ver +caolini caolino nom +caolinite caolinite nom +caoliniti caolinite nom +caolino caolino nom +caom caom sw +caos caos nom +caotica caotico adj +caotiche caotico adj +caotici caotico adj +caotico caotico adj +capa capere ver +capace capace adj +capaci capace adj +capacita capacitare ver +capacitaci capacitare ver +capacitandosi capacitare ver +capacitanza capacitanza nom +capacitarci capacitare ver +capacitarmene capacitare ver +capacitarmi capacitare ver +capacitarsene capacitare ver +capacitarsi capacitare ver +capacitate capacitare ver +capacitati capacitare ver +capacitato capacitare ver +capacitava capacitare ver +capacitavano capacitare ver +capacitiva capacitivo adj +capacitive capacitivo adj +capacitivi capacitivo adj +capacitivo capacitivo adj +capacito capacitare ver +capacità capacità nom +capacitò capacitare ver +capanna capanna|capanno nom +capanne capanna|capanno nom +capannelli capannello nom +capannello capannello nom +capanni capanno nom +capannina capannina nom +capannine capannina nom +capanno capanno nom +capannone capannone nom +capannoni capannone nom +capano capere ver +caparbi caparbio adj +caparbia caparbio adj +caparbie caparbio adj +caparbietà caparbietà nom +caparbio caparbio adj +caparra caparra nom +caparre caparra nom +capata capata nom +capate capata nom +capatina capatina nom +cape capere ver +capecchi capecchio nom +capecchio capecchio nom +capeggia capeggiare ver +capeggiando capeggiare ver +capeggiano capeggiare ver +capeggiare capeggiare ver +capeggiarla capeggiare ver +capeggiarono capeggiare ver +capeggiata capeggiare ver +capeggiate capeggiare ver +capeggiati capeggiare ver +capeggiato capeggiare ver +capeggiatore capeggiatore nom +capeggiava capeggiare ver +capeggiavano capeggiare ver +capeggio capeggiare ver +capeggiò capeggiare ver +capei capere ver +capellatura capellatura nom +capelli capello nom +capellini capellino nom +capellino capellino nom +capello capello nom +capellona capellone nom +capellone capellone adj +capelloni capellone nom +capelluta capelluto adj +capellute capelluto adj +capelluti capelluto adj +capelluto capelluto adj +capelvenere capelvenere nom +capendo capere|capire ver +capendoci capere|capire ver +capendola capere|capire ver +capendolo capere|capire ver +capendone capere|capire ver +capenti capere|capire ver +caper capere ver +caperci capere ver +capere capere ver +caperle capere ver +capestri capestro nom +capestro capestro nom +capezzagna capezzagna nom +capezzagne capezzagna nom +capi capo nom +capiamo capere|capire ver +capiamoci capere|capire ver +capiamolo capere|capire ver +capiate capere|capire ver +capibanda capibanda nom +capicellula capicellula nom +capici capere ver +capicolli capicolli|capicollo nom +capicollo capicollo nom +capicorda capicorda nom +capiente capiente adj +capienti capiente adj +capienza capienza nom +capienze capienza nom +capifamiglia capifamiglia nom +capigliatura capigliatura nom +capigliature capigliatura nom +capii capire ver +capili capere ver +capilinea capilinea nom +capillare capillare adj +capillari capillare adj +capillarità capillarità nom +capillarmente capillarmente adv +capilo capere ver +capimmo capire ver +capine capere ver +capinera capinera nom +capinere capinera nom +capipopolo capipopolo nom +capir capire ver +capirai capire ver +capiranno capire ver +capirci capire ver +capire capire ver +capirebbe capire ver +capirebbero capire ver +capiredattori capiredattori nom +capirei capire ver +capiremmo capire ver +capiremo capire ver +capireparto capireparto nom +capireste capire ver +capiresti capire ver +capirete capire ver +capirla capire ver +capirle capire ver +capirli capire ver +capirlo capire ver +capirmi capire ver +capirne capire ver +capirono capire ver +capirossi capirosso nom +capirosso capirosso nom +capirsi capire ver +capirti capire ver +capirvi capire ver +capirà capire ver +capirò capire ver +capisaldi capisaldi nom +capisca capire ver +capiscano capire ver +capisce capire ver +capisci capire ver +capiscimi capire ver +capisco capire ver +capiscono capire ver +capiscuola capiscuola nom +capisquadra capisquadra nom +capisse capire ver +capissero capire ver +capissi capire ver +capissimo capire ver +capistazione capistazione nom +capiste capire ver +capisti capire ver +capita capitare ver +capitai capitare ver +capitala capitare ver +capitale capitale nom +capitali capitale nom +capitalismi capitalismo nom +capitalismo capitalismo nom +capitalista capitalista adj +capitaliste capitalista adj +capitalisti capitalista nom +capitalistica capitalistico adj +capitalistiche capitalistico adj +capitalistici capitalistico adj +capitalistico capitalistico adj +capitalizza capitalizzare ver +capitalizzando capitalizzare ver +capitalizzano capitalizzare ver +capitalizzare capitalizzare ver +capitalizzarne capitalizzare ver +capitalizzata capitalizzare ver +capitalizzate capitalizzare ver +capitalizzati capitalizzare ver +capitalizzato capitalizzare ver +capitalizzava capitalizzare ver +capitalizzazione capitalizzazione nom +capitalizzazioni capitalizzazione nom +capitalizzò capitalizzare ver +capitana capitana|capitano nom +capitanale capitanare ver +capitanando capitanare ver +capitanandola capitanare ver +capitananti capitanare ver +capitanare capitanare ver +capitanarli capitanare ver +capitanarono capitanare ver +capitanata capitanare ver +capitanate capitanare ver +capitanati capitanare ver +capitanato capitanare ver +capitanava capitanare ver +capitando capitare ver +capitane capitana|capitano nom +capitaneria capitaneria nom +capitanerie capitaneria nom +capitani capitano nom +capitano capitano nom +capitanti capitare ver +capitanò capitanare ver +capitar capitare ver +capitarci capitare ver +capitare capitare ver +capitargli capitare ver +capitarmi capitare ver +capitarne capitare ver +capitarono capitare ver +capitarti capitare ver +capitasse capitare ver +capitassero capitare ver +capitassi capitare ver +capitata capitare ver +capitate capitare ver +capitategli capitare ver +capitati capitare ver +capitato capitare ver +capitava capitare ver +capitavano capitare ver +capitavo capitare ver +capite capire ver +capitelli capitello nom +capitello capitello nom +capitelo capere|capire ver +capitemi capire ver +capiteranno capitare ver +capiterebbe capitare ver +capiterete capitare ver +capiterà capitare ver +capiti capire ver +capitino capitare ver +capito capire ver +capitola capitolare ver +capitolando capitolare ver +capitolano capitolare ver +capitolare capitolare adj +capitolari capitolare adj +capitolarono capitolare ver +capitolasse capitolare ver +capitolata capitolare ver +capitolati capitolato nom +capitolato capitolato nom +capitolava capitolare ver +capitolavano capitolare ver +capitolazione capitolazione nom +capitolazioni capitolazione nom +capitolerà capitolare ver +capitoli capitolo nom +capitolina capitolino adj +capitoline capitolino adj +capitolini capitolino adj +capitolino capitolino adj +capitolo capitolo nom +capitolò capitolare ver +capitombolando capitombolare ver +capitombolano capitombolare ver +capitombolare capitombolare ver +capitomboli capitombolo nom +capitombolo capitombolo nom +capitone capitone nom +capitoni capitone nom +capitonné capitonné nom +capitozza capitozza nom +capitozzare capitozzare ver +capitozzata capitozzare ver +capitozzati capitozzare ver +capitozzato capitozzare ver +capitozzo capitozzare ver +capitreno capitreno nom +capitribù capitribù nom +capitò capitare ver +capiva capire ver +capivamo capire ver +capivano capire ver +capivate capire ver +capivi capere ver +capivo capire ver +capo capo nom +capobanda capobanda nom +capocannoniere capocannoniere nom +capocce capoccia nom +capocchia capocchia nom +capocchie capocchia nom +capoccia capoccia nom +capocciata capocciata nom +capocciate capocciata nom +capoccione capoccione nom +capoccioni capoccione nom +capocellula capocellula nom +capocentro capocentro nom +capoclasse capoclasse nom +capocollo capocollo nom +capocomica capocomico nom +capocomici capocomico nom +capocomico capocomico nom +capocordata capocordata nom +capocronaca capocronaca nom +capocronista capocronista nom +capocuoca capocuoco nom +capocuochi capocuoco nom +capocuoco capocuoco nom +capodanni capodanno nom +capodanno capodanno nom +capodivisione capodivisione nom +capodogli capodoglio nom +capodoglio capodoglio nom +capofabbrica capofabbrica nom +capofamiglia capofamiglia nom +capofila capofila nom +capofitto capofitto adj +capofosso capofosso nom +capogatto capogatto nom +capogiri capogiro nom +capogiro capogiro nom +capogruppo capogruppo nom +capolavori capolavoro nom +capolavoro capolavoro nom +capolinea capolinea nom +capolini capolino nom +capolino capolino nom +capolista capolista nom +capoluoghi capoluogo nom +capoluogo capoluogo nom +capomastri capomastro nom +capomastro capomastro nom +caponata caponata nom +capopagina capopagina nom +capoparte capoparte nom +capopopolo capopopolo nom +capoposto capoposto nom +caporale caporale nom +caporali caporale nom +caporalmaggiore caporalmaggiore nom +caporalmaggiori caporalmaggiore nom +caporedattore caporedattore nom +caporedattori caporedattore nom +caporeparto caporeparto nom +caporione caporione nom +caporioni caporione nom +caporossi caporosso nom +caporosso caporosso nom +caposala caposala nom +caposaldo caposaldo nom +caposcuola caposcuola nom +caposervizio caposervizio nom +caposezione caposezione nom +caposquadra caposquadra nom +caposquadriglia caposquadriglia nom +capostazione capostazione nom +capostipite capostipite nom +capostipiti capostipite nom +capotasti capotasto nom +capotasto capotasto nom +capotavola capotavola nom +capote capote nom +capoti capotare ver +capotreni capotreno nom +capotreno capotreno nom +capotribù capotribù nom +capotta capotta nom +capottando capottare ver +capottandosi capottare ver +capottare capottare ver +capotte capotta nom +capotto capottare ver +capottò capottare ver +capoturno capoturno nom +capoufficio capoufficio nom +capoversi capoverso nom +capoverso capoverso nom +capovoga capovoga nom +capovolga capovolgere ver +capovolge capovolgere ver +capovolgendo capovolgere ver +capovolgendola capovolgere ver +capovolgendolo capovolgere ver +capovolgendone capovolgere ver +capovolgendosi capovolgere ver +capovolgere capovolgere ver +capovolgerebbe capovolgere ver +capovolgerla capovolgere ver +capovolgerle capovolgere ver +capovolgerli capovolgere ver +capovolgerlo capovolgere ver +capovolgerne capovolgere ver +capovolgersi capovolgere ver +capovolgerà capovolgere ver +capovolgesse capovolgere ver +capovolgeva capovolgere ver +capovolgi capovolgere ver +capovolgiamo capovolgere ver +capovolgimenti capovolgimento nom +capovolgimento capovolgimento nom +capovolgo capovolgere ver +capovolgono capovolgere ver +capovolse capovolgere ver +capovolsero capovolgere ver +capovolta capovolgere ver +capovolte capovolgere ver +capovolti capovolgere ver +capovolto capovolgere ver +cappa cappa nom +cappalunga cappalunga nom +cappe cappa nom +cappella cappella nom +cappellacci cappellaccio nom +cappellaccio cappellaccio nom +cappellai cappellaio nom +cappellaia cappellaio nom +cappellaio cappellaio nom +cappellani cappellano nom +cappellania cappellania nom +cappellanie cappellania nom +cappellano cappellano nom +cappellata cappellata nom +cappellate cappellata nom +cappelle cappella nom +cappelleria cappelleria nom +cappelletti cappelletto nom +cappelletto cappelletto nom +cappelli cappello nom +cappelliera cappelliera nom +cappelliere cappelliera nom +cappellifici cappellificio nom +cappellificio cappellificio nom +cappellini cappellino nom +cappellino cappellino nom +cappello cappello nom +capperi cappero nom +cappero cappero nom +cappi cappio nom +cappio cappio nom +capponata capponare ver +cappone cappone nom +capponi cappone nom +cappotta cappotta nom +cappottai cappottare ver +cappottando cappottare ver +cappottandosi cappottare ver +cappottare cappottare ver +cappottata cappottare ver +cappottato cappottare ver +cappotti cappotto nom +cappottino cappottare ver +cappotto cappotto nom +cappottò cappottare ver +cappucci cappuccio adj +cappuccia cappuccio adj +cappuccina cappuccina nom +cappuccine cappuccina nom +cappuccini cappuccino nom +cappuccino cappuccino nom +cappuccio cappuccio nom +capra capra nom +caprai capraio nom +capraia capraio nom +capraio capraio nom +capre capra nom +caprese caprese adj +capresi caprese adj +capretti capretto nom +capretto capretto nom +capri capro nom +capriata capriata nom +capriate capriata nom +capricci capriccio nom +capriccio capriccio nom +capricciosa capriccioso adj +capricciose capriccioso adj +capricciosi capriccioso adj +capriccioso capriccioso adj +capricorni capricorno nom +capricorno capricorno nom +caprifichi caprifico nom +caprifico caprifico nom +caprifogli caprifoglio nom +caprifoglio caprifoglio nom +caprimulgi caprimulgo nom +caprimulgo caprimulgo nom +caprina caprino adj +caprine caprino adj +caprini caprino adj +caprinico caprinico adj +caprino caprino adj +capriola capriola nom +capriole capriola nom +caprioli capriolo nom +capriolo capriolo nom +capro capro nom +caprone caprone nom +caproni caprone nom +capruggine capruggine nom +capsula capsula nom +capsule capsula nom +capta captare ver +captabili captabile adj +captando captare ver +captandone captare ver +captano captare ver +captante captare ver +captanti captare ver +captar captare ver +captare captare ver +captarla captare ver +captarlo captare ver +captarne captare ver +captarono captare ver +captata captare ver +captate captare ver +captati captare ver +captato captare ver +captava captare ver +captavano captare ver +captazione captazione nom +capterà captare ver +capti captare ver +captiva captivo adj +captive captivo adj +captivi captivo adj +captivo captivo adj +capto captare ver +captò captare ver +caput caput adj +caputa capere ver +caputi capere ver +caputo capere ver +capziosa capzioso adj +capziose capzioso adj +capziosi capzioso adj +capziosità capziosità nom +capzioso capzioso adj +capè capere ver +capì capire ver +cara caro adj +carabattole carabattola nom +carabi carabo nom +carabina carabina nom +carabine carabina nom +carabiniere carabiniere nom +carabinieri carabiniere nom +carabo carabo nom +caracca caracca nom +caracche caracca nom +caracolla caracollare ver +caracollando caracollare ver +caracollante caracollare ver +caracollare caracollare ver +caracollo caracollo nom +caraffa caraffa nom +caraffe caraffa nom +carambola carambola nom +carambolando carambolare ver +carambolare carambolare ver +carambole carambola nom +carambolo carambolare ver +carambolò carambolare ver +caramella caramella nom +caramellaia caramellaio nom +caramellaio caramellaio nom +caramellare caramellare ver +caramellarsi caramellare ver +caramellata caramellare ver +caramellate caramellare ver +caramellati caramellare ver +caramellato caramellare ver +caramelle caramella nom +caramelli caramello nom +caramellino caramellare ver +caramello caramello nom +caramellosa caramelloso adj +caramellose caramelloso adj +caramelloso caramelloso adj +caramente caramente adv +carampana carampana nom +carampane carampana nom +carapace carapace nom +carapaci carapace nom +carassi carassio nom +carassio carassio nom +carata caratare ver +caratelli caratello nom +caratello caratello nom +carati carato nom +caratiamo caratare ver +carato carato nom +carattere carattere nom +caratteri carattere nom +caratteriale caratteriale adj +caratteriali caratteriale adj +caratterino caratterino nom +caratterista caratterista nom +caratteriste caratterista nom +caratteristi caratterista nom +caratteristica caratteristica nom +caratteristiche caratteristica nom +caratteristici caratteristico adj +caratteristico caratteristico adj +caratterizza caratterizzare ver +caratterizzando caratterizzare ver +caratterizzandola caratterizzare ver +caratterizzandole caratterizzare ver +caratterizzandoli caratterizzare ver +caratterizzandolo caratterizzare ver +caratterizzandone caratterizzare ver +caratterizzandosi caratterizzare ver +caratterizzano caratterizzare ver +caratterizzante caratterizzare ver +caratterizzanti caratterizzare ver +caratterizzarci caratterizzare ver +caratterizzare caratterizzare ver +caratterizzarla caratterizzare ver +caratterizzarle caratterizzare ver +caratterizzarli caratterizzare ver +caratterizzarlo caratterizzare ver +caratterizzarne caratterizzare ver +caratterizzarono caratterizzare ver +caratterizzarsi caratterizzare ver +caratterizzasse caratterizzare ver +caratterizzassero caratterizzare ver +caratterizzata caratterizzare ver +caratterizzate caratterizzare ver +caratterizzati caratterizzare ver +caratterizzato caratterizzare ver +caratterizzava caratterizzare ver +caratterizzavano caratterizzare ver +caratterizzazione caratterizzazione nom +caratterizzazioni caratterizzazione nom +caratterizzeranno caratterizzare ver +caratterizzerebbe caratterizzare ver +caratterizzerebbero caratterizzare ver +caratterizzerà caratterizzare ver +caratterizzerò caratterizzare ver +caratterizzi caratterizzare ver +caratterizzino caratterizzare ver +caratterizzo caratterizzare ver +caratterizzò caratterizzare ver +caratterologia caratterologia nom +caratterologici caratterologico adj +caratura caratura nom +carature caratura nom +caravan caravan nom +caravanning caravanning nom +caravanserragli caravanserraglio nom +caravanserraglio caravanserraglio nom +caravella caravella nom +caravelle caravella nom +carbon carbone nom +carbonai carbonaio nom +carbonaia carbonaia|carbonaio nom +carbonaie carbonaia|carbonaio nom +carbonaio carbonaio nom +carbonara carbonaro adj +carbonare carbonaro adj +carbonari carbonaro adj +carbonaro carbonaro adj +carbonati carbonato nom +carbonato carbonato nom +carboncello carboncello nom +carbonchio carbonchio nom +carbonchiosa carbonchioso adj +carboncini carboncino nom +carboncino carboncino nom +carbone carbone nom +carbonella carbonella nom +carboneria carboneria nom +carboni carbone nom +carbonica carbonico adj +carbonici carbonico adj +carbonico carbonico adj +carboniera carboniero adj +carboniere carboniero adj +carbonieri carboniero adj +carboniero carboniero adj +carbonifera carbonifero adj +carbonifere carbonifero adj +carboniferi carbonifero adj +carbonifero carbonifero nom +carbonio carbonio nom +carbonizza carbonizzare ver +carbonizzando carbonizzare ver +carbonizzandolo carbonizzare ver +carbonizzandosi carbonizzare ver +carbonizzano carbonizzare ver +carbonizzare carbonizzare ver +carbonizzarle carbonizzare ver +carbonizzarlo carbonizzare ver +carbonizzarsi carbonizzare ver +carbonizzata carbonizzare ver +carbonizzate carbonizzare ver +carbonizzati carbonizzare ver +carbonizzato carbonizzare ver +carbonizzava carbonizzare ver +carbonizzavano carbonizzare ver +carbonizzazione carbonizzazione nom +carbonizzerà carbonizzare ver +carbonizzo carbonizzare ver +carbonizzò carbonizzare ver +carborundo carborundo nom +carborundum carborundum nom +carbossiemoglobina carbossiemoglobina nom +carbossile carbossile nom +carbossili carbossile nom +carbossilica carbossilico adj +carbossiliche carbossilico adj +carbossilici carbossilico adj +carbossilico carbossilico adj +carbura carburare ver +carburante carburante nom +carburanti carburante nom +carburare carburare ver +carburata carburare ver +carburate carburare ver +carburato carburare ver +carburatore carburatore nom +carburatori carburatore nom +carburazione carburazione nom +carburazioni carburazione nom +carburi carburo nom +carburo carburo nom +carca carco adj +carcadè carcadè nom +carcassa carcassa nom +carcasse carcassa nom +carcerando carcerare ver +carcerano carcerare ver +carcerare carcerare ver +carcerari carcerario adj +carceraria carcerario adj +carcerarie carcerario adj +carcerario carcerario adj +carcerassero carcerare ver +carcerata carcerare ver +carcerate carcerato nom +carcerati carcerato nom +carcerato carcerato nom +carcerazione carcerazione nom +carcerazioni carcerazione nom +carcere carcere nom +carceri carcere nom +carceriera carceriere nom +carceriere carceriere nom +carcerieri carceriere nom +carche carco adj +carchi carco adj +carcinogene carcinogeno adj +carcinogenesi carcinogenesi nom +carcinogenicità carcinogenicità nom +carcinoma carcinoma nom +carcinomi carcinoma nom +carcinosi carcinosi nom +carciofi carciofo nom +carciofo carciofo nom +carco carco adj +card card nom +carda carda nom +cardaci cardare ver +cardala cardare ver +cardale cardare ver +cardani cardano nom +cardanica cardanico adj +cardaniche cardanico adj +cardanici cardanico adj +cardanico cardanico adj +cardano cardano nom +cardanti cardare ver +cardare cardare ver +cardata cardare ver +cardati cardare ver +cardato cardare ver +cardatore cardatore nom +cardatori cardatore nom +cardatrice cardatore|cardatrice nom +cardatrici cardatore nom +cardatura cardatura nom +carde carda nom +cardellini cardellino nom +cardellino cardellino nom +cardi cardo nom +cardia cardia nom +cardiaca cardiaco adj +cardiache cardiaco adj +cardiaci cardiaco adj +cardiaco cardiaco adj +cardias cardias nom +cardigan cardigan nom +cardinale cardinale adj +cardinali cardinale nom +cardinalizi cardinalizio adj +cardinalizia cardinalizio adj +cardinalizie cardinalizio adj +cardinalizio cardinalizio adj +cardine cardine nom +cardini cardine nom +cardino cardare ver +cardiochirurgia cardiochirurgia nom +cardiocinetici cardiocinetico nom +cardiocinetico cardiocinetico nom +cardiocircolatori cardiocircolatorio adj +cardiocircolatoria cardiocircolatorio adj +cardiocircolatorie cardiocircolatorio adj +cardiocircolatorio cardiocircolatorio adj +cardiologa cardiologo nom +cardiologi cardiologo nom +cardiologia cardiologia nom +cardiologie cardiologia nom +cardiologo cardiologo nom +cardiopalmi cardiopalmo nom +cardiopalmo cardiopalmo nom +cardiopatia cardiopatia nom +cardiopatica cardiopatico adj +cardiopatici cardiopatico adj +cardiopatico cardiopatico adj +cardiopatie cardiopatia nom +cardiotonici cardiotonico nom +cardiotonico cardiotonico nom +cardiovascolare cardiovascolare adj +cardiovascolari cardiovascolare adj +cardo cardo nom +care caro adj +carena carena nom +carenaggio carenaggio nom +carenale carenare ver +carenare carenare ver +carenata carenare ver +carenate carenato adj +carenati carenato adj +carenato carenare ver +carenatura carenatura nom +carenature carenatura nom +carene carena nom +careni carenare ver +careno carenare ver +carente carente adj +carenti carente adj +carenza carenza nom +carenze carenza nom +carestia carestia nom +carestie carestia nom +carezza carezza nom +carezzando carezzare ver +carezzano carezzare ver +carezzare carezzare ver +carezzato carezzare ver +carezze carezza nom +carezzevole carezzevole adj +carezzevoli carezzevole adj +carezzò carezzare ver +cargo cargo nom +cari caro adj +caria cariare ver +cariaci cariare ver +cariano cariare ver +cariare cariare ver +cariata cariare ver +cariate cariare ver +cariatesi cariare ver +cariati cariare ver +cariatide cariatide nom +cariatidi cariatide nom +cariato cariare ver +caribù caribù nom +carica carico adj +caricacee caricacee nom +caricai caricare ver +caricala caricare ver +caricale caricare ver +caricali caricare ver +caricalo caricare ver +caricamenti caricamento nom +caricamento caricamento nom +caricando caricare ver +caricandola caricare ver +caricandole caricare ver +caricandoli caricare ver +caricandolo caricare ver +caricandone caricare ver +caricandoselo caricare ver +caricandosi caricare ver +caricandovi caricare ver +caricane caricare ver +caricano caricare ver +caricante caricare ver +caricanti caricare ver +caricar caricare ver +caricarci caricare ver +caricare caricare ver +caricarla caricare ver +caricarle caricare ver +caricarli caricare ver +caricarlo caricare ver +caricarmi caricare ver +caricarne caricare ver +caricarono caricare ver +caricarsela caricare ver +caricarsele caricare ver +caricarsi caricare ver +caricarti caricare ver +caricarvi caricare ver +caricasse caricare ver +caricassero caricare ver +caricassi caricare ver +caricassimo caricare ver +caricata caricare ver +caricate caricare ver +caricatele caricare ver +caricateli caricare ver +caricati caricare ver +caricato caricare ver +caricatore caricatore nom +caricatori caricatore nom +caricatrice caricatore adj +caricatrici caricatore adj +caricatura caricatura nom +caricaturale caricaturale adj +caricaturali caricaturale adj +caricature caricatura nom +caricaturista caricaturista nom +caricaturiste caricaturista nom +caricaturisti caricaturista nom +caricava caricare ver +caricavano caricare ver +caricavo caricare ver +cariche carica nom +caricheranno caricare ver +caricherebbe caricare ver +caricherebbero caricare ver +caricherei caricare ver +caricheremmo caricare ver +caricheremo caricare ver +caricheresti caricare ver +caricherà caricare ver +caricherò caricare ver +carichi carico nom +carichiamo caricare ver +carichiamoci caricare ver +carichino caricare ver +carico carico nom +caricò caricare ver +carie carie nom +carillon carillon nom +carina carino adj +carine carino adj +carini carino adj +carino carino adj +cario cariare ver +cariocinesi cariocinesi nom +cariofillacee cariofillacee nom +cariofillata cariofillato adj +cariosside cariosside nom +carisma carisma nom +carismatica carismatico adj +carismatiche carismatico adj +carismatici carismatico adj +carismatico carismatico adj +carismi carisma nom +caritatevole caritatevole adj +caritatevoli caritatevole adj +caritative caritativo adj +carità carità nom +carlina carlina nom +carline carlina nom +carlinga carlinga nom +carlinghe carlinga nom +carlini carlino nom +carlino carlino nom +carlona carlona adv +carlsbergi carlsbergo nom +carme carme nom +carmelitana carmelitano adj +carmelitane carmelitano adj +carmelitani carmelitano nom +carmelitano carmelitano adj +carmi carme nom +carminativi carminativo nom +carminativo carminativo nom +carmini carminio nom +carminio carminio nom +carnagione carnagione nom +carnagioni carnagione nom +carnaio carnaio nom +carnale carnale adj +carnali carnale adj +carnalità carnalità nom +carnallite carnallite nom +carnate carnato adj +carnati carnato adj +carnato carnato adj +carnauba carnauba nom +carne carne nom +carnea carneo adj +carnee carneo adj +carnefice carnefice nom +carnefici carnefice nom +carneficina carneficina nom +carneficine carneficina nom +carnei carneo adj +carneo carneo adj +carnera carnera nom +carnesecca carnesecca nom +carnet carnet nom +carnevalata carnevalata nom +carnevalate carnevalata nom +carnevale carnevale nom +carnevalesca carnevalesco adj +carnevalesche carnevalesco adj +carnevaleschi carnevalesco adj +carnevalesco carnevalesco adj +carnevali carnevale nom +carni carne nom +carniccio carniccio nom +carnicina carnicino adj +carnicine carnicino adj +carnicino carnicino adj +carniere carniere nom +carnieri carniere nom +carnivora carnivoro adj +carnivore carnivoro adj +carnivori carnivoro adj +carnivoro carnivoro adj +carnosa carnoso adj +carnose carnoso adj +carnosi carnoso adj +carnosità carnosità nom +carnoso carnoso adj +carnotite carnotite nom +caro caro adj +carogna carogna nom +carognata carognata nom +carognate carognata nom +carogne carogna nom +carola carola nom +carole carola nom +caroselli carosello nom +carosello carosello nom +carota carota nom +carotaggi carotaggio nom +carotaggio carotaggio nom +carotati carotare ver +carote carota nom +carotene carotene nom +caroteni carotene nom +caroti carotare ver +carotide carotide nom +carotidi carotide nom +carotieri carotiere nom +caroto carotare ver +carovana carovana nom +carovane carovana nom +carovaniera carovaniero adj +carovaniere carovaniero adj +carovanieri carovaniere nom +carovaniero carovaniero adj +carovita carovita nom +caroviveri caroviveri nom +carpa carpa nom +carpe carpa nom +carpelli carpello nom +carpello carpello nom +carpendo carpire ver +carpendolo carpire ver +carpendone carpire ver +carpente carpire ver +carpenteria carpenteria nom +carpenterie carpenteria nom +carpentiere carpentiere nom +carpentieri carpentiere nom +carpetta carpetta nom +carpi carpio|carpo nom +carpiati carpiato adj +carpiato carpiato adj +carpine carpine nom +carpini carpine nom +carpio carpio nom +carpione carpione nom +carpioni carpione nom +carpir carpire ver +carpire carpire ver +carpirgli carpire ver +carpirle carpire ver +carpirlo carpire ver +carpirne carpire ver +carpirono carpire ver +carpisce carpire ver +carpiscono carpire ver +carpisti carpire ver +carpita carpire ver +carpite carpire ver +carpiti carpire ver +carpito carpire ver +carpiva carpire ver +carpo carpo nom +carpologia carpologia nom +carponi carponi adv +carpì carpire ver +carrabile carrabile adj +carrabili carrabile adj +carradore carradore nom +carradori carradore nom +carragenina carragenina nom +carrai carraio adj +carraia carraio adj +carraie carraia nom +carraio carraio adj +carrarecce carrareccia nom +carrareccia carrareccia nom +carrata carrata nom +carrate carrata nom +carreggia carreggiare ver +carreggiabile carreggiabile adj +carreggiabili carreggiabile adj +carreggiata carreggiata nom +carreggiate carreggiata nom +carreggiati carreggiare ver +carreggio carreggio nom +carrella carrellare ver +carrellata carrellata nom +carrellate carrellata nom +carrellati carrellare ver +carrellato carrellare ver +carrelli carrello nom +carrellino carrellare ver +carrello carrello nom +carrete calere ver +carretta carretta nom +carrettata carrettata nom +carrettate carrettata nom +carrette carretta nom +carretti carretto nom +carretto carretto nom +carrettone carrettone nom +carrettoni carrettone nom +carri carro nom +carriaggi carriaggio nom +carriera carriera nom +carriere carriera nom +carrierismo carrierismo nom +carrierista carrierista nom +carrieriste carrierista nom +carriola carriola nom +carriole carriola nom +carrista carrista nom +carristi carrista nom +carro carro nom +carrocci carroccio nom +carroccio carroccio nom +carroponte carroponte nom +carroponti carroponte nom +carrozza carrozza nom +carrozzabile carrozzabile adj +carrozzabili carrozzabile adj +carrozzai carrozzaio nom +carrozzaio carrozzaio nom +carrozzare carrozzare ver +carrozzarlo carrozzare ver +carrozzata carrozzare ver +carrozzate carrozzare ver +carrozzati carrozzare ver +carrozzato carrozzare ver +carrozze carrozza nom +carrozzella carrozzella nom +carrozzelle carrozzella nom +carrozzeria carrozzeria nom +carrozzerie carrozzeria nom +carrozzi carrozzare ver +carrozziere carrozziere nom +carrozzieri carrozziere nom +carrozzina carrozzina nom +carrozzine carrozzina nom +carrozzini carrozzino nom +carrozzino carrozzino nom +carrozzo carrozzare ver +carrozzone carrozzone nom +carrozzoni carrozzone nom +carruba carruba nom +carrube carruba nom +carrubi carrubo nom +carrubo carrubo nom +carrucola carrucola nom +carrucolati carrucolare ver +carrucole carrucola nom +carruggi carruggio nom +carruggio carruggio nom +carrà calere ver +carré carré nom +carsica carsico adj +carsiche carsico adj +carsici carsico adj +carsico carsico adj +carsismo carsismo nom +carta carta nom +cartacea cartaceo adj +cartacee cartaceo adj +cartacei cartaceo adj +cartaceo cartaceo adj +cartagloria cartagloria nom +cartaglorie cartagloria nom +cartai cartaio nom +cartaio cartaio nom +cartamo cartamo nom +cartamodelli cartamodello nom +cartamodello cartamodello nom +cartamoneta cartamoneta nom +cartapecora cartapecora nom +cartapesta cartapesta nom +cartari cartario adj +cartaria cartario adj +cartarie cartario adj +cartario cartario adj +cartastraccia cartastraccia nom +carte carta nom +carteggi carteggio nom +carteggio carteggio nom +cartel cartel nom +cartella cartella nom +cartelle cartella nom +cartelli cartello nom +cartellini cartellino nom +cartellino cartellino nom +cartello cartello nom +cartellone cartellone nom +cartelloni cartellone nom +cartellonista cartellonista nom +cartellonisti cartellonista nom +carter carter nom +cartesiana cartesiano adj +cartesiane cartesiano adj +cartesiani cartesiano adj +cartesiano cartesiano adj +cartevalori cartevalori nom +cartiera cartiera nom +cartiere cartiera nom +cartigli cartiglio nom +cartiglio cartiglio nom +cartilagine cartilagine nom +cartilaginea cartilagineo adj +cartilaginee cartilagineo adj +cartilaginei cartilagineo adj +cartilagineo cartilagineo adj +cartilagini cartilagine nom +cartilaginoso cartilaginoso adj +cartina cartina nom +cartine cartina nom +cartocci cartoccio nom +cartocciata cartocciata nom +cartocciate cartocciata nom +cartoccio cartoccio nom +cartografa cartografo nom +cartografi cartografo nom +cartografia cartografia nom +cartografica cartografico adj +cartografiche cartografico adj +cartografici cartografico adj +cartografico cartografico adj +cartografie cartografia nom +cartografo cartografo nom +cartogramma cartogramma nom +cartogrammi cartogramma nom +cartolai cartolaio nom +cartolaio cartolaio nom +cartolare cartolare adj +cartolari cartolare adj +cartoleria cartoleria nom +cartolerie cartoleria nom +cartolibreria cartolibreria nom +cartolibrerie cartolibreria nom +cartolina cartolina nom +cartoline cartolina nom +cartomante cartomante nom +cartomanti cartomante nom +cartomanzia cartomanzia nom +cartonaggi cartonaggio nom +cartonaggio cartonaggio nom +cartonata cartonare ver +cartonate cartonare ver +cartonati cartonare ver +cartonato cartonare ver +cartoncini cartoncino nom +cartoncino cartoncino nom +cartone cartone nom +cartoni cartone nom +cartonista cartonista nom +cartonisti cartonista nom +cartotecnica cartotecnico adj +cartotecniche cartotecnico adj +cartotecnico cartotecnico adj +cartucce cartuccia nom +cartuccia cartuccia nom +cartucciera cartucciera nom +cartucciere cartucciera nom +caruncola caruncola nom +caruncole caruncola nom +casa casa nom +casacca casacca nom +casacche casacca nom +casacci casaccio nom +casaccio casaccio nom +casale casale nom +casali casale nom +casalinga casalingo adj +casalinghe casalingo adj +casalinghi casalingo adj +casalingo casalingo adj +casamatta casamatta nom +casamatte casamatta nom +casamenti casamento nom +casamento casamento nom +casanova casanova nom +casari casaro nom +casaro casaro nom +casata casata|casato nom +casate casata|casato nom +casati casato nom +casato casato nom +casba casba nom +casbah casbah nom +casca cascare ver +cascai cascare ver +cascame cascame nom +cascami cascame nom +cascamorto cascamorto nom +cascando cascare ver +cascandoci cascare ver +cascano cascare ver +cascante cascante adj +cascanti cascante adj +cascar cascare ver +cascarci cascare ver +cascare cascare ver +cascasse cascare ver +cascata cascata nom +cascate cascata nom +cascati cascare ver +cascato cascare ver +cascatore cascatore nom +cascatori cascatore nom +cascava cascare ver +cascavano cascare ver +cascavo cascare ver +cascherebbe cascare ver +cascherebbero cascare ver +cascherà cascare ver +cascherò cascare ver +caschi casco nom +caschiamo cascare ver +caschino cascare ver +cascina cascina nom +cascinale cascinale nom +cascinali cascinale nom +cascine cascina nom +casco casco nom +cascola cascola nom +cascò cascare ver +case casa nom +caseari caseario adj +casearia caseario adj +casearie caseario adj +caseario caseario adj +caseggiati caseggiato nom +caseggiato caseggiato nom +caseificazione caseificazione nom +caseifici caseificio nom +caseificio caseificio nom +caseina caseina nom +caseine caseina nom +casella casella nom +casellante casellante nom +casellanti casellante nom +casellari casellario adj +casellario casellario adj +caselle casella nom +caselli casello nom +casello casello nom +casentini casentino nom +casentino casentino nom +casera casera nom +casere casera nom +caserecce casereccio adj +caserecci casereccio adj +casereccia casereccio adj +casereccio casereccio adj +caserma caserma nom +casermaggio casermaggio nom +caserme caserma nom +casermetta casermetta nom +casermette casermetta nom +casermone casermone nom +casermoni casermone nom +cash cash nom +casi caso nom +casigliani casigliano nom +casigliano casigliano nom +casini casino nom +casino casino nom +casinò casinò nom +casista casista nom +casisti casista nom +casistica casistica nom +casistiche casistica nom +caso caso nom_sup +casolare casolare nom +casolari casolare nom +casomai casomai con +casotti casotto nom +casotto casotto nom +caspita caspita int +casquette casquette nom +cassa cassa nom +cassaforma cassaforma nom +cassaforte cassaforte nom +cassai cassare ver +cassaintegrati cassaintegrato nom +cassaintegrato cassaintegrato nom +cassala cassare ver +cassando cassare ver +cassandola cassare ver +cassandolo cassare ver +cassandra cassandra nom +cassandre cassandra nom +cassano cassare ver +cassante cassare ver +cassapanca cassapanca nom +cassapanche cassapanca nom +cassar cassare ver +cassare cassare ver +cassarla cassare ver +cassarle cassare ver +cassarli cassare ver +cassarlo cassare ver +cassarne cassare ver +cassata cassare ver +cassate cassare ver +cassati cassare ver +cassato cassare ver +cassava cassare ver +cassazione cassazione nom +casse cassa nom +casseforme casseforme nom +casseforti casseforti nom +casserei cassare ver +casseri cassero nom +cassero cassero nom +casseruola casseruola nom +casseruole casseruola nom +cassetta cassetta nom +cassette cassetta nom +cassetti cassetto nom +cassettiera cassettiera nom +cassettiere cassettiera nom +cassetto cassetto nom +cassettone cassettone nom +cassettoni cassettone nom +cassi cassare ver +cassia cassia nom +cassiamo cassare ver +cassie cassia nom +cassiera cassiere nom +cassiere cassiere nom +cassieri cassiere nom +cassino cassare ver +cassintegrati cassintegrato nom +cassintegrato cassintegrato nom +casso cassare ver +cassone cassone nom +cassonetti cassonetto nom +cassonetto cassonetto nom +cassoni cassone nom +cassò cassare ver +cast cast nom +casta casto adj +castagna castagna nom +castagnacci castagnaccio nom +castagnaccio castagnaccio nom +castagne castagna nom +castagneti castagneto nom +castagneto castagneto nom +castagnetta castagnetta nom +castagnette castagnetta nom +castagni castagno nom +castagno castagno nom +castagnola castagnola nom +castagnole castagnola nom +castalda castalda|castaldo nom +castaldi castaldo nom +castaldo castaldo nom +castana castano adj +castane castano adj +castani castano adj +castanicoltura castanicoltura nom +castano castano adj +caste casta nom +castellana castellano adj +castellane castellano adj +castellani castellano adj +castellano castellano adj +castelletti castelletto nom +castelletto castelletto nom +castelli castello nom +castelliere castelliere nom +castellieri castelliere nom +castello castello nom +casti casto adj +castiga castigare ver +castigabili castigabile adj +castigamatti castigamatti nom +castigando castigare ver +castigandoli castigare ver +castigano castigare ver +castigar castigare ver +castigarci castigare ver +castigare castigare ver +castigarli castigare ver +castigarlo castigare ver +castigarti castigare ver +castigata castigato adj +castigate castigare ver +castigatezza castigatezza nom +castigati castigare ver +castigato castigare ver +castigatore castigatore nom +castigatori castigatore nom +castigatrice castigatore nom +castigava castigare ver +castigherai castigare ver +castigherà castigare ver +castigherò castigare ver +castighi castigo nom +castigo castigo nom +castigò castigare ver +castità castità nom +casto casto adj +castone castone nom +castoni castone nom +castori castoro nom +castorini castorino nom +castorino castorino nom +castoro castoro nom +castra castrare ver +castraci castrare ver +castrale castrare ver +castrali castrare ver +castrametazione castrametazione nom +castrandosi castrare ver +castrano castrare ver +castrante castrare ver +castranti castrare ver +castrarci castrare ver +castrare castrare ver +castrarlo castrare ver +castrarsi castrare ver +castrata castrare ver +castrate castrato adj +castrati castrato nom +castrato castrato adj +castratore castratore nom +castrava castrare ver +castravano castrare ver +castrazione castrazione nom +castrazioni castrazione nom +castrense castrense adj +castrensi castrense adj +castri castro nom +castrino castrare ver +castrismo castrismo nom +castrista castrista nom +castriste castrista nom +castristi castrista nom +castro castro nom +castrone castrone nom +castroneria castroneria nom +castronerie castroneria nom +castroni castrone nom +castrò castrare ver +casual casual adj +casuale casuale adj +casuali casuale adj +casualità casualità nom +casualizzazione casualizzazione nom +casualmente casualmente adv +casuari casuario nom +casuario casuario nom +casula casula nom +casule casula nom +casupola casupola nom +casupole casupola nom +catabatica catabatico adj +catabatici catabatico adj +catabatico catabatico adj +catabolismo catabolismo nom +cataboliti catabolita nom +cataclisma cataclisma nom +cataclismi cataclisma nom +catacomba catacomba nom +catacombale catacombale adj +catacombali catacombale adj +catacombe catacomba nom +catacresi catacresi nom +catafascio catafascio adv +catafilli catafillo nom +catafillo catafillo nom +catafratta catafratto adj +catafratte catafratto adj +catafratti catafratto nom +catafratto catafratto adj +catalana catalano adj +catalano catalano adj +catalessi catalessi nom +catalessia catalessia nom +cataletti cataletto nom +cataletto cataletto nom +catalisi catalisi nom +catalitica catalitico adj +catalitiche catalitico adj +catalitici catalitico adj +catalitico catalitico adj +catalizza catalizzare ver +catalizzando catalizzare ver +catalizzano catalizzare ver +catalizzante catalizzare ver +catalizzanti catalizzare ver +catalizzare catalizzare ver +catalizzarla catalizzare ver +catalizzarono catalizzare ver +catalizzata catalizzare ver +catalizzate catalizzare ver +catalizzati catalizzare ver +catalizzato catalizzare ver +catalizzatore catalizzatore nom +catalizzatori catalizzatore nom +catalizzatrice catalizzatore adj +catalizzava catalizzare ver +catalizzavano catalizzare ver +catalizzazione catalizzazione nom +catalizzerebbero catalizzare ver +catalizzerà catalizzare ver +catalizzi catalizzare ver +catalizzò catalizzare ver +cataloga catalogare ver +catalogando catalogare ver +catalogandole catalogare ver +catalogandoli catalogare ver +catalogandolo catalogare ver +catalogano catalogare ver +catalogante catalogare ver +catalogare catalogare ver +catalogarla catalogare ver +catalogarle catalogare ver +catalogarli catalogare ver +catalogarlo catalogare ver +catalogarne catalogare ver +catalogarono catalogare ver +catalogarsi catalogare ver +catalogasse catalogare ver +catalogata catalogare ver +catalogate catalogare ver +catalogati catalogare ver +catalogato catalogare ver +catalogatore catalogatore nom +catalogatori catalogatore nom +catalogatrice catalogatore nom +catalogava catalogare ver +catalogavano catalogare ver +catalogazione catalogazione nom +catalogheranno catalogare ver +catalogherebbe catalogare ver +catalogherà catalogare ver +cataloghi catalogo nom +cataloghiamo catalogare ver +catalogna catalogna nom +catalogne catalogna nom +catalogo catalogo nom +catalogò catalogare ver +catalpa catalpa nom +catamarani catamarano nom +catamarano catamarano nom +catanese catanese adj +catanesi catanese adj +catanzarese catanzarese adj +catanzaresi catanzarese adj +catapecchia catapecchia nom +catapecchie catapecchia nom +cataplasma cataplasma nom +cataplasmi cataplasma nom +cataplessia cataplessia nom +cataplessie cataplessia nom +catapulta catapulta nom +catapultabile catapultabile adj +catapultabili catapultabile adj +catapultando catapultare ver +catapultandola catapultare ver +catapultandoli catapultare ver +catapultandolo catapultare ver +catapultandosi catapultare ver +catapultano catapultare ver +catapultare catapultare ver +catapultarla catapultare ver +catapultarono catapultare ver +catapultarsi catapultare ver +catapultata catapultare ver +catapultate catapultare ver +catapultati catapultare ver +catapultato catapultare ver +catapultava catapultare ver +catapulte catapulta nom +catapulterà catapultare ver +catapultò catapultare ver +catara cataro adj +cataratta cataratta nom +cataratte cataratta nom +catare cataro adj +catari cataro nom +catarifrangente catarifrangente adj +catarifrangenti catarifrangente adj +catarismo catarismo nom +cataro cataro adj +catarrale catarrale adj +catarrali catarrale adj +catarri catarro nom +catarrine catarrine nom +catarro catarro nom +catarsi catarsi nom +catartica catartico adj +catartiche catartico adj +catartici catartico adj +catartico catartico adj +catasta catasta nom +catastale catastale adj +catastali catastale adj +cataste catasta nom +catasti catasto nom +catasto catasto nom +catastrofe catastrofe nom +catastrofi catastrofe nom +catastrofica catastrofico adj +catastrofiche catastrofico adj +catastrofici catastrofico adj +catastrofico catastrofico adj +catatonia catatonia nom +catatonica catatonico adj +catatonici catatonico adj +catatonico catatonico adj +catatonie catatonia nom +catch catch nom +catechesi catechesi nom +catecheta catecheta nom +catechismi catechismo nom +catechismo catechismo nom +catechista catechista nom +catechiste catechista nom +catechisti catechista nom +catechistica catechistico adj +catechistiche catechistico adj +catechistici catechistico adj +catechistico catechistico adj +catechizza catechizzare ver +catechizzare catechizzare ver +catechizzarlo catechizzare ver +catechizzato catechizzare ver +catechizzava catechizzare ver +catecumeni catecumeno nom +catecumeno catecumeno nom +catecù catecù nom +categoria categoria nom +categorica categorico adj +categoricamente categoricamente adv +categoriche categorico adj +categorici categorico adj +categorico categorico adj +categorie categoria nom +catena catena nom +catenacci catenaccio nom +catenaccio catenaccio nom +catenaria catenaria nom +catenarie catenaria nom +catene catena nom +catenella catenella nom +catenelle catenella nom +cateratta cateratta nom +cateratte cateratta nom +caterinetta caterinetta nom +caterinette caterinetta nom +caterpillar caterpillar nom +caterva caterva nom +caterve caterva nom +catetere catetere nom +cateteri catetere nom +cateterismi cateterismo nom +cateterismo cateterismo nom +cateterizzare cateterizzare ver +cateterizzati cateterizzare ver +cateterizzato cateterizzare ver +cateti cateto nom +cateto cateto nom +catgut catgut nom +catilinaria catilinaria nom +catilinarie catilinaria nom +catinella catinella nom +catinelle catinella nom +catini catino nom +catino catino nom +catione catione nom +cationi catione nom +catodi catodo nom +catodica catodico adj +catodiche catodico adj +catodici catodico adj +catodico catodico adj +catodo catodo nom +catone catone nom +catoni catone nom +catorci catorcio nom +catorcio catorcio nom +catottrica catottrico adj +catottrici catottrico adj +catottrico catottrico adj +catramata catramare ver +catramati catramare ver +catramato catramare ver +catrame catrame nom +catrami catrame nom +catramose catramoso adj +catramosi catramoso adj +catramoso catramoso adj +cattedra cattedra nom +cattedrale cattedrale nom +cattedrali cattedrale nom +cattedratica cattedratico adj +cattedratici cattedratico nom +cattedratico cattedratico adj +cattedre cattedra nom +cattiva cattivo adj +cattivante cattivare ver +cattivarsi cattivare ver +cattive cattivo adj +cattiveria cattiveria nom +cattiverie cattiveria nom +cattivi cattivo adj +cattività cattività nom +cattivo cattivo adj +cattolica cattolico adj +cattolicamente cattolicamente adv +cattolicesimo cattolicesimo nom +cattoliche cattolico adj +cattolici cattolico adj +cattolicità cattolicità nom +cattolico cattolico adj +cattura cattura nom +catturai catturare ver +catturala catturare ver +catturale catturare ver +catturali catturare ver +catturalo catturare ver +catturami catturare ver +catturammo catturare ver +catturando catturare ver +catturandogli catturare ver +catturandola catturare ver +catturandole catturare ver +catturandoli catturare ver +catturandolo catturare ver +catturandone catturare ver +catturano catturare ver +catturante catturare ver +catturare catturare ver +catturargli catturare ver +catturarla catturare ver +catturarle catturare ver +catturarli catturare ver +catturarlo catturare ver +catturarmi catturare ver +catturarne catturare ver +catturarono catturare ver +catturarti catturare ver +catturasse catturare ver +catturassero catturare ver +catturata catturare ver +catturate catturare ver +catturateli catturare ver +catturatelo catturare ver +catturati catturare ver +catturato catturare ver +catturava catturare ver +catturavano catturare ver +catture cattura nom +catturerai catturare ver +cattureranno catturare ver +catturerebbe catturare ver +catturerà catturare ver +catturerò catturare ver +catturi catturare ver +catturiamo catturare ver +catturino catturare ver +catturo catturare ver +catturò catturare ver +caucasica caucasico adj +caucciù caucciù nom +caudale caudale adj +caudali caudale adj +caudata caudato adj +caudate caudato adj +caudati caudato adj +caudato caudato adj +caudillo caudillo nom +caudina caudino adj +caudine caudino adj +caudini caudino adj +caudino caudino adj +caule caule nom +cauli caule nom +causa causa nom +causale causale adj +causali causale adj +causalità causalità nom +causalmente causalmente adv +causando causare ver +causandogli causare ver +causandole causare ver +causandoli causare ver +causandone causare ver +causandosi causare ver +causandovi causare ver +causano causare ver +causante causare ver +causanti causare ver +causar causare ver +causarci causare ver +causare causare ver +causargli causare ver +causarla causare ver +causarle causare ver +causarli causare ver +causarlo causare ver +causarmi causare ver +causarne causare ver +causarono causare ver +causarsi causare ver +causarti causare ver +causarvi causare ver +causasse causare ver +causassero causare ver +causata causare ver +causate causare ver +causategli causare ver +causati causare ver +causativa causativo adj +causative causativo adj +causativi causativo adj +causativo causativo adj +causato causare ver +causava causare ver +causavano causare ver +cause causa nom +causeranno causare ver +causerebbe causare ver +causerebbero causare ver +causerà causare ver +causi causare ver +causiamo causare ver +causidica causidico adj +causidici causidico adj +causidico causidico adj +causino causare ver +causo causare ver +caustica caustico adj +caustiche caustico adj +caustici caustico adj +causticità causticità nom +caustico caustico adj +causò causare ver +cauta cauto adj +caute cauto adj +cautela cautela nom +cautelandosi cautelare ver +cautelano cautelare ver +cautelarci cautelare ver +cautelare cautelare adj +cautelari cautelare adj +cautelarsi cautelare ver +cautelata cautelare ver +cautelatevi cautelare ver +cautelati cautelare ver +cautelative cautelativo adj +cautelato cautelare ver +cautele cautela nom +cautelò cautelare ver +cauteri cauterio nom +cauterio cauterio nom +cauterizza cauterizzare ver +cauterizzando cauterizzare ver +cauterizzare cauterizzare ver +cauterizzata cauterizzare ver +cauterizzati cauterizzare ver +cauterizzato cauterizzare ver +cauterizzazione cauterizzazione nom +cauterizzazioni cauterizzazione nom +cauti cauto adj +cauto cauto adj +cauzionale cauzionale adj +cauzionali cauzionale adj +cauzionato cauzionare ver +cauzione cauzione nom +cauzioni cauzione nom +cava cava nom +cavadenti cavadenti nom +cavagli cavare ver +cavai cavare ver +cavala cavare ver +cavalca cavalcare ver +cavalcando cavalcare ver +cavalcandoli cavalcare ver +cavalcano cavalcare ver +cavalcante cavalcare ver +cavalcanti cavalcare ver +cavalcare cavalcare ver +cavalcarla cavalcare ver +cavalcarli cavalcare ver +cavalcarlo cavalcare ver +cavalcarono cavalcare ver +cavalcasse cavalcare ver +cavalcassero cavalcare ver +cavalcata cavalcata nom +cavalcate cavalcata nom +cavalcati cavalcare ver +cavalcato cavalcare ver +cavalcatore cavalcatore nom +cavalcatori cavalcatore nom +cavalcatura cavalcatura nom +cavalcature cavalcatura nom +cavalcava cavalcare ver +cavalcavano cavalcare ver +cavalcavia cavalcavia nom +cavalcavo cavalcare ver +cavalcheranno cavalcare ver +cavalcherà cavalcare ver +cavalcherò cavalcare ver +cavalchi cavalcare ver +cavalchiamo cavalcare ver +cavalchino cavalcare ver +cavalcioni cavalcioni adv +cavalco cavalcare ver +cavalcò cavalcare ver +cavale cavare ver +cavali cavare ver +cavalierati cavalierato nom +cavalierato cavalierato nom +cavaliere cavaliere nom +cavalieri cavaliere nom +cavalla cavalla|cavallo nom +cavallai cavallaio nom +cavallaio cavallaio nom +cavalle cavalla|cavallo nom +cavalleggeri cavalleggero nom +cavalleggero cavalleggero nom +cavalleresca cavalleresco adj +cavalleresche cavalleresco adj +cavallereschi cavalleresco adj +cavalleresco cavalleresco adj +cavalleria cavalleria nom +cavallerie cavalleria nom +cavallerizza cavallerizza|cavallerizzo nom +cavallerizze cavallerizza|cavallerizzo nom +cavallerizzi cavallerizzo nom +cavallerizzo cavallerizzo nom +cavalletta cavalletta nom +cavallette cavalletta nom +cavalletti cavalletto nom +cavalletto cavalletto nom +cavalli cavallo nom +cavallina cavallino adj +cavalline cavallino adj +cavallini cavallino adj +cavallino cavallino adj +cavallo cavallo nom +cavallone cavallone nom +cavalloni cavallone nom +cavallucci cavalluccio nom +cavalluccio cavalluccio nom +cavalo cavare ver +cavammo cavare ver +cavando cavare ver +cavandogli cavare ver +cavandole cavare ver +cavandoli cavare ver +cavandone cavare ver +cavandosela cavare ver +cavandosi cavare ver +cavane cavare ver +cavano cavare ver +cavapietre cavapietre nom +cavar cavare ver +cavarcela cavare ver +cavarci cavare ver +cavare cavare ver +cavargli cavare ver +cavarli cavare ver +cavarlo cavare ver +cavarmela cavare ver +cavarmi cavare ver +cavarne cavare ver +cavarono cavare ver +cavarsela cavare ver +cavarsi cavare ver +cavartela cavare ver +cavarvela cavare ver +cavasse cavare ver +cavassero cavare ver +cavata cavare ver +cavatappi cavatappi nom +cavate cavare ver +cavati cavare ver +cavatina cavatina nom +cavatine cavatina nom +cavato cavare ver +cavatore cavatore nom +cavatori cavatore nom +cavatrice cavatore nom +cavatura cavatura nom +cavaturaccioli cavaturaccioli nom +cavature cavatura nom +cavava cavare ver +cavavano cavare ver +cavavo cavare ver +cavazione cavazione nom +cave cavo adj +cavea cavea nom +cavedani cavedano nom +cavedano cavedano nom +cavedi cavedio nom +cavedio cavedio nom +cavee cavea nom +caverai cavare ver +caveranno cavare ver +caverebbe cavare ver +caverei cavare ver +caveremmo cavare ver +caveremo cavare ver +caverete cavare ver +caverna caverna nom +caverne caverna nom +cavernicola cavernicolo adj +cavernicole cavernicolo adj +cavernicoli cavernicolo nom +cavernicolo cavernicolo adj +cavernosa cavernoso adj +cavernose cavernoso adj +cavernosi cavernoso adj +cavernosità cavernosità nom +cavernoso cavernoso adj +caverà cavare ver +caverò cavare ver +cavetti cavetto nom +cavetto cavetto nom +cavezza cavezza nom +cavezze cavezza nom +cavi cavo nom +cavia cavia nom +caviale caviale nom +caviali caviale nom +caviamo cavare ver +cavicchi cavicchio nom +cavicchia cavicchia nom +cavicchio cavicchio nom +cavicorni cavicorno adj +cavie cavia nom +caviglia caviglia nom +caviglie caviglia nom +cavigliera cavigliera nom +cavigliere cavigliera|cavigliere nom +caviglieri cavigliere nom +cavilla cavillare ver +cavillando cavillare ver +cavillandovi cavillare ver +cavillano cavillare ver +cavillare cavillare ver +cavillata cavillare ver +cavillatori cavillatore nom +cavillatura cavillatura nom +cavilli cavillo nom +cavillo cavillo nom +cavillosa cavilloso adj +cavillose cavilloso adj +cavillosi cavilloso adj +cavillosità cavillosità nom +cavilloso cavilloso adj +cavino cavare ver +cavitazione cavitazione nom +cavitazioni cavitazione nom +cavità cavità nom +cavo cavo adj +cavolaia cavolaia nom +cavolaie cavolaia nom +cavolfiore cavolfiore nom +cavolfiori cavolfiore nom +cavoli cavolo nom +cavolo cavolo nom +cavò cavare ver +cazzi cazzo nom +cazzo cazzo nom +cazzotti cazzotto nom +cazzotto cazzotto nom +cazzuola cazzuola nom +cazzuole cazzuola nom +ce ce adv_sup +cebi cebo nom +cebo cebo nom +ceca ceco adj +cecchini cecchino nom +cecchino cecchino nom +cece cece nom +cecena ceceno adj +ceceni ceceno adj +ceche ceco adj +cechi ceco adj +ceci cece nom +cecidio cecidio nom +cecilia cecilia nom +cecilie cecilia nom +cecità cecità nom +ceco ceco adj +cecoslovacca cecoslovacco adj +cecoslovacche cecoslovacco adj +cecoslovacchi cecoslovacco adj +cecoslovacco cecoslovacco adj +cecubo cecubo nom +ceda cedere ver +cedano cedere ver +cede cedere ver +cedemmo cedere ver +cedendo cedere ver +cedendogli cedere ver +cedendola cedere ver +cedendole cedere ver +cedendoli cedere ver +cedendolo cedere ver +cedendone cedere ver +cedente cedere ver +cedenti cedere ver +ceder cedere ver +cederanno cedere ver +cederci cedere ver +cedere cedere ver +cederebbe cedere ver +cederei cedere ver +cederemo cedere ver +cedergli cedere ver +cedergliela cedere ver +cederglielo cedere ver +cederla cedere ver +cederle cedere ver +cederli cedere ver +cederlo cedere ver +cederne cedere ver +cedersi cedere ver +cederti cedere ver +cedervi cedere ver +cederà cedere ver +cederò cedere ver +cedesse cedere ver +cedessero cedere ver +cedete cedere ver +cedette cedere ver +cedettero cedere ver +cedetti cedere ver +cedeva cedere ver +cedevano cedere ver +cedevo cedere ver +cedevole cedevole adj +cedevolezza cedevolezza nom +cedevoli cedevole adj +cedi cedere ver +cediamo cedere ver +cedibile cedibile adj +cedibili cedibile adj +cedici cedere ver +cedimenti cedimento nom +cedimento cedimento nom +cedo cedere ver +cedola cedola nom +cedolare cedolare ver +cedole cedola nom +cedolino cedolare ver +cedono cedere ver +cedrata cedrata nom +cedrate cedrata nom +cedri cedro nom +cedrina cedrina nom +cedrine cedrina nom +cedro cedro nom +cedronella cedronella nom +cedua ceduo adj +ceduazione ceduazione nom +ceduazioni ceduazione nom +cedue ceduo adj +cedui ceduo adj +ceduo ceduo adj +ceduta cedere ver +cedute cedere ver +ceduti cedere ver +ceduto cedere ver +cefalea cefalea nom +cefalee cefalea nom +cefali cefalo nom +cefalica cefalico adj +cefaliche cefalico adj +cefalici cefalico adj +cefalico cefalico adj +cefalo cefalo nom +cefalopodi cefalopodi nom +cefalorachidiano cefalorachidiano adj +cefalotorace cefalotorace nom +ceffi ceffo nom +ceffo ceffo nom +ceffone ceffone nom +ceffoni ceffone nom +cefi cefo nom +cefo cefo nom +cela celare ver +celai celare ver +celando celare ver +celandola celare ver +celandole celare ver +celandoli celare ver +celandone celare ver +celandosi celare ver +celano celare ver +celante celare ver +celanti celare ver +celar celare ver +celare celare ver +celarla celare ver +celarle celare ver +celarlo celare ver +celarne celare ver +celarono celare ver +celarsi celare ver +celasse celare ver +celassero celare ver +celasti celare ver +celastracee celastracee nom +celata celare ver +celate celare ver +celati celare ver +celato celare ver +celava celare ver +celavano celare ver +celavo celare ver +celeberrima celeberrimo adj +celeberrime celeberrimo adj +celeberrimi celeberrimo adj +celeberrimo celeberrimo adj +celebra celebrare ver +celebraci celebrare ver +celebrai celebrare ver +celebrale celebrare ver +celebrali celebrare ver +celebrando celebrare ver +celebrandola celebrare ver +celebrandoli celebrare ver +celebrandolo celebrare ver +celebrandone celebrare ver +celebrandosi celebrare ver +celebrandovi celebrare ver +celebrano celebrare ver +celebrante celebrante nom +celebranti celebrante nom +celebrar celebrare ver +celebrare celebrare ver +celebrarla celebrare ver +celebrarle celebrare ver +celebrarli celebrare ver +celebrarlo celebrare ver +celebrarne celebrare ver +celebrarono celebrare ver +celebrarsi celebrare ver +celebrarvi celebrare ver +celebrasse celebrare ver +celebrassero celebrare ver +celebrata celebrare ver +celebrate celebrare ver +celebratesi celebrare ver +celebrati celebrare ver +celebrativa celebrativo adj +celebrative celebrativo adj +celebrativi celebrativo adj +celebrativo celebrativo adj +celebrato celebrare ver +celebratore celebratore nom +celebrava celebrare ver +celebravano celebrare ver +celebrazione celebrazione nom +celebrazioni celebrazione nom +celebre celebre adj +celebrerai celebrare ver +celebreranno celebrare ver +celebrerebbe celebrare ver +celebrerete celebrare ver +celebrerà celebrare ver +celebrerò celebrare ver +celebri celebre adj +celebriamo celebrare ver +celebrino celebrare ver +celebrità celebrità nom +celebro celebrare ver +celebrò celebrare ver +celenterati celenterati nom +celere celere adj +celerebbe celare ver +celerebbero celare ver +celeri celere adj +celerimensura celerimensura nom +celerimetro celerimetro nom +celerini celerino nom +celerino celerino nom +celerità celerità nom +celesta celesta nom +celeste celeste adj +celesti celeste adj +celestiale celestiale adj +celestiali celestiale adj +celestina celestino adj +celestine celestino adj +celestini celestino adj +celestino celestino adj +celi celare ver +celia celia nom +celibato celibato nom +celibe celibe adj +celibi celibi adj +celidonia celidonia nom +celidonie celidonia nom +celie celia nom +celino celare ver +cella cella nom +celle cella nom +cellophane cellophane nom +cellula cellula nom +cellulare cellulare adj +cellulari cellulare adj +cellule cellula nom +cellulite cellulite nom +celluliti cellulite nom +celluloide celluloide nom +cellulosa cellulosa nom +cellulose celluloso adj +cellulosi celluloso adj +cellulosica cellulosico adj +cellulosiche cellulosico adj +cellulosici cellulosico adj +cellulosico cellulosico adj +cellulosio cellulosio nom +celluloso celluloso adj +celo celare ver +celoma celoma nom +celtica celtico adj +celtiche celtico adj +celtici celtico adj +celtico celtico adj +celò celare ver +cembali cembalo nom +cembalista cembalista nom +cembalisti cembalista nom +cembalo cembalo nom +cembri cembro nom +cembro cembro nom +cementa cementare ver +cementando cementare ver +cementandosi cementare ver +cementano cementare ver +cementante cementare ver +cementanti cementare ver +cementare cementare ver +cementarla cementare ver +cementarlo cementare ver +cementarono cementare ver +cementarsi cementare ver +cementasse cementare ver +cementata cementare ver +cementate cementare ver +cementati cementare ver +cementato cementare ver +cementava cementare ver +cementazione cementazione nom +cementazioni cementazione nom +cementerà cementare ver +cementi cemento nom +cementiera cementiero adj +cementieri cementiero adj +cementiero cementiero adj +cementifera cementifero adj +cementiferi cementifero adj +cementifici cementificio nom +cementificio cementificio nom +cementino cementare ver +cementite cementite nom +cementiti cementite nom +cemento cemento nom +cementò cementare ver +cena cena nom +cenacoli cenacolo nom +cenacolo cenacolo nom +cenai cenare ver +cenami cenare ver +cenando cenare ver +cenano cenare ver +cenar cenare ver +cenare cenare ver +cenarono cenare ver +cenasse cenare ver +cenate cenare ver +cenatesi cenare ver +cenati cenare ver +cenato cenare ver +cenava cenare ver +cenavano cenare ver +cenci cencio nom +cencio cencio nom +cenciosa cencioso adj +cenciosi cencioso adj +cencioso cencioso adj +cene cena nom +ceneraccio ceneraccio nom +ceneranno cenare ver +cenerata cenerata nom +ceneratoio ceneratoio nom +cenere cenere nom +ceneremo cenare ver +cenerentola cenerentola nom +cenerentole cenerentola nom +ceneri cenere nom +cenerina cenerino adj +cenerine cenerino adj +cenerini cenerino adj +cenerino cenerino adj +cenerognola cenerognolo adj +cenerà cenare ver +cenerò cenare ver +cenge cengia nom +cengia cengia nom +ceni cenare ver +ceniamo cenare ver +cenino cenare ver +cennamella cennamella nom +cenni cenno nom +cenno cenno nom +ceno cenare ver +cenobi cenobio nom +cenobio cenobio nom +cenobita cenobita nom +cenobiti cenobita nom +cenobitica cenobitico adj +cenobitiche cenobitico adj +cenobitici cenobitico adj +cenobitico cenobitico adj +cenone cenone nom +cenoni cenone nom +cenotafi cenotafio nom +cenotafio cenotafio nom +cenozoica cenozoico adj +cenozoiche cenozoico adj +cenozoici cenozoico adj +cenozoico cenozoico nom +censendo censire ver +censi censo nom +censimenti censimento nom +censimento censimento nom +censire censire ver +censirle censire ver +censirne censire ver +censirono censire ver +censirsi censire ver +censisce censire ver +censiscono censire ver +censita censire ver +censite censire ver +censiti censire ver +censito censire ver +censiva censire ver +censivano censire ver +censo censo nom +censorato censorato nom +censore censore nom +censori censore nom +censoria censorio adj +censorie censorio adj +censorio censorio adj +censuale censuale adj +censuali censuale adj +censuari censuario adj +censuaria censuario adj +censuarie censuario adj +censuario censuario adj +censura censura nom +censurabile censurabile adj +censurabili censurabile adj +censurando censurare ver +censurandola censurare ver +censurandole censurare ver +censurandolo censurare ver +censurandone censurare ver +censurano censurare ver +censurante censurare ver +censurarci censurare ver +censurare censurare ver +censurarla censurare ver +censurarle censurare ver +censurarli censurare ver +censurarlo censurare ver +censurarmi censurare ver +censurarne censurare ver +censurarono censurare ver +censurarsi censurare ver +censurarti censurare ver +censurasse censurare ver +censurata censurare ver +censurate censurare ver +censuratemi censurare ver +censurati censurare ver +censurato censurare ver +censurava censurare ver +censuravano censurare ver +censure censura nom +censureranno censurare ver +censurerebbe censurare ver +censuri censurare ver +censuriamo censurare ver +censurino censurare ver +censuro censurare ver +censurò censurare ver +censì censire ver +cent cent nom +centaura centauro nom +centaure centauro nom +centaurea centaurea nom +centauree centaurea nom +centauressa centauro nom +centauresse centauro nom +centauri centauro nom +centauro centauro nom +centellina centellinare ver +centellinando centellinare ver +centellinare centellinare ver +centellinata centellinare ver +centellinate centellinare ver +centellinati centellinare ver +centellinato centellinare ver +centellini centellino nom +centenari centenario adj +centenaria centenario adj +centenarie centenario adj +centenario centenario nom +centennale centennale adj +centennali centennale adj +centenni centenne adj +centennio centennio nom +centerbe centerbe nom +centesimale centesimale adj +centesimali centesimale adj +centesimi centesimo nom +centesimo centesimo nom +centiara centiara nom +centiare centiara nom +centigradi centigrado nom +centigrado centigrado nom +centigrammi centigrammo nom +centigrammo centigrammo nom +centilitri centilitro nom +centilitro centilitro nom +centimetri centimetro nom +centimetro centimetro nom +centina centina nom +centinai centinare ver +centinaia centinaio nom +centinaio centinaio nom +centinata centinare ver +centinate centinare ver +centinati centinare ver +centinato centinare ver +centinatura centinatura nom +centinature centinatura nom +centine centina nom +centini centinare ver +centino centinare ver +centista centista nom +cento cento adj +centodieci centodieci nom +centofoglie centofoglie nom +centometrista centometrista nom +centometristi centometrista nom +centomila centomila adj +centomillesimo centomillesimo adj +centone centone nom +centoni centone nom +centopiedi centopiedi nom +centotredici centotredici nom +centra centrare ver +centraggio centraggio nom +centrala centrale nom +centrale centrale adj +centrali centrale adj +centralina centralino nom +centraline centralino nom +centralini centralino nom +centralinista centralinista nom +centraliniste centralinista nom +centralinisti centralinista nom +centralino centralino nom +centralismo centralismo nom +centralistica centralistico adj +centralistico centralistico adj +centralità centralità nom +centralizza centralizzare ver +centralizzando centralizzare ver +centralizzandoli centralizzare ver +centralizzante centralizzare ver +centralizzanti centralizzare ver +centralizzare centralizzare ver +centralizzarli centralizzare ver +centralizzarsi centralizzare ver +centralizzata centralizzare ver +centralizzate centralizzare ver +centralizzati centralizzare ver +centralizzato centralizzare ver +centralizzatore centralizzatore adj +centralizzatrici centralizzatrice adj +centralizzava centralizzare ver +centralizzavano centralizzare ver +centralizzazione centralizzazione nom +centralizzazioni centralizzazione nom +centralizziamo centralizzare ver +centralizzò centralizzare ver +centralo centrare ver +centrando centrare ver +centrandola centrare ver +centrandole centrare ver +centrandolo centrare ver +centrandone centrare ver +centrandosi centrare ver +centrano centrare ver +centrare centrare ver +centrarla centrare ver +centrarle centrare ver +centrarlo centrare ver +centrarono centrare ver +centrarsi centrare ver +centrasse centrare ver +centrassi centrare ver +centrata centrare ver +centrate centrato adj +centrati centrare ver +centrato centrare ver +centrattacco centrattacco nom +centratura centratura nom +centrava centrare ver +centravano centrare ver +centravanti centravanti nom +centreranno centrare ver +centrerebbe centrare ver +centrerei centrare ver +centrerà centrare ver +centri centro nom +centrica centrico adj +centriche centrico adj +centrici centrico adj +centrico centrico adj +centrifuga centrifugo adj +centrifugando centrifugare ver +centrifugare centrifugare ver +centrifugata centrifugare ver +centrifugati centrifugato adj +centrifugato centrifugare ver +centrifugazione centrifugazione nom +centrifuge centrifuga nom +centrifughe centrifugo adj +centrifughi centrifugo adj +centrifugo centrifugo adj +centrina centrina nom +centrini centrino nom +centrino centrare ver +centripeta centripeto adj +centripete centripeto adj +centripeti centripeto adj +centripeto centripeto adj +centrismi centrismo nom +centrismo centrismo nom +centrista centrista adj +centriste centrista adj +centristi centrista adj +centro centro nom +centroamericani centroamericano adj +centrocampista centrocampista nom +centrocampiste centrocampista nom +centrocampisti centrocampista nom +centrocampo centrocampo nom +centroccidentale centroccidentale adj +centromediani centromediano nom +centromediano centromediano nom +centroorientale centroorientale adj +centrorientale centrorientale adj +centrosinistra centrosinistra nom +centrosostegno centrosostegno nom +centrotavola centrotavola nom +centrò centrare ver +cents cents nom +centuplicare centuplicare ver +centuplicati centuplicare ver +centuplicato centuplicare ver +centuplo centuplo nom +centuria centuria nom +centuriata centuriato adj +centuriate centuriato adj +centuriati centuriato adj +centuriato centuriato adj +centurie centuria nom +centurione centurione nom +centurioni centurione nom +cenò cenare ver +ceppa ceppa nom +ceppaia ceppaia nom +ceppaie ceppaia nom +ceppe ceppa nom +ceppi ceppo nom +ceppo ceppo nom +cera cera nom +ceraioli ceraiolo nom +ceraiolo ceraiolo nom +ceralacca ceralacca nom +cerale cerare ver +cerali cerare ver +cerambice cerambice nom +cerambici cerambice nom +cerami cerare ver +ceramica ceramica nom +ceramiche ceramica nom +ceramici ceramico adj +ceramico ceramico adj +ceramista ceramista nom +ceramiste ceramista nom +ceramisti ceramista nom +ceramografi ceramografo nom +ceramografo ceramografo nom +cerando cerare ver +cerano cerare ver +cerar cerare ver +cerare cerare ver +cerasa cerasa nom +cerase cerasa nom +cerasela cerare ver +cerasi ceraso nom +ceraso ceraso nom +ceraste ceraste nom +cerasti ceraste nom +cerata cerato adj +cerate cerato adj +cerati cerato adj +cerato cerato adj +cerava cerare ver +ceravamo cerare ver +cerberi cerbero nom +cerbero cerbero nom +cerbiatta cerbiatto nom +cerbiatte cerbiatto nom +cerbiatti cerbiatto nom +cerbiatto cerbiatto nom +cerbottana cerbottana nom +cerbottane cerbottana nom +cerca cercare ver +cercabile cercabile adj +cercaci cercare ver +cercai cercare ver +cercala cercare ver +cercale cercare ver +cercali cercare ver +cercalo cercare ver +cercami cercare ver +cercammo cercare ver +cercando cercare ver +cercandola cercare ver +cercandole cercare ver +cercandoli cercare ver +cercandolo cercare ver +cercandomi cercare ver +cercandone cercare ver +cercandosi cercare ver +cercandovi cercare ver +cercane cercare ver +cercano cercare ver +cercante cercare ver +cercanti cercare ver +cercar cercare ver +cercarci cercare ver +cercare cercare ver +cercargli cercare ver +cercarla cercare ver +cercarle cercare ver +cercarli cercare ver +cercarlo cercare ver +cercarmela cercare ver +cercarmele cercare ver +cercarmelo cercare ver +cercarmi cercare ver +cercarne cercare ver +cercarono cercare ver +cercarsela cercare ver +cercarsele cercare ver +cercarselo cercare ver +cercarsene cercare ver +cercarsi cercare ver +cercarti cercare ver +cercarvi cercare ver +cercasi cercare ver +cercasse cercare ver +cercassero cercare ver +cercassi cercare ver +cercassimo cercare ver +cercaste cercare ver +cercasti cercare ver +cercata cercare ver +cercate cercare ver +cercatela cercare ver +cercatele cercare ver +cercatelo cercare ver +cercatemi cercare ver +cercatene cercare ver +cercatevi cercare ver +cercati cercare ver +cercato cercare ver +cercatore cercatore nom +cercatori cercatore nom +cercatrice cercatore nom +cercatrici cercatore nom +cercava cercare ver +cercavamo cercare ver +cercavano cercare ver +cercavate cercare ver +cercavi cercare ver +cercavo cercare ver +cerche cerca nom +cercherai cercare ver +cercheranno cercare ver +cercherebbe cercare ver +cercherebbero cercare ver +cercherei cercare ver +cercheremmo cercare ver +cercheremo cercare ver +cerchereste cercare ver +cercherete cercare ver +cercherà cercare ver +cercherò cercare ver +cerchi cerchio nom +cerchia cerchia nom +cerchiai cerchiare ver +cerchiamo cercare|cerchiare ver +cerchiamolo cercare|cerchiare ver +cerchiamone cercare|cerchiare ver +cerchiano cerchiare ver +cerchianti cerchiare ver +cerchiare cerchiare ver +cerchiata cerchiare ver +cerchiate cerchiato adj +cerchiatesi cerchiare ver +cerchiati cerchiato adj +cerchiato cerchiare ver +cerchiatura cerchiatura nom +cerchiature cerchiatura nom +cerchie cerchia nom +cerchietti cerchietto nom +cerchietto cerchietto nom +cerchino cercare|cerchiare ver +cerchio cerchio nom +cerchione cerchione nom +cerchioni cerchione nom +cerci cerci nom +cercine cercine nom +cercini cercine nom +cerco cercare ver +cercò cercare ver +cere cera nom +cerea cereo adj +cereale cereale adj +cereali cereale nom +cerealicola cerealicolo adj +cerealicole cerealicolo adj +cerealicoli cerealicolo adj +cerealicolo cerealicolo adj +cerealicoltura cerealicoltura nom +cerebellare cerebellare adj +cerebellari cerebellare adj +cerebelli cerebello nom +cerebellite cerebellite nom +cerebello cerebello nom +cerebrale cerebrale adj +cerebrali cerebrale adj +cerebralismo cerebralismo nom +cerebri cerebro nom +cerebro cerebro nom +cerebropatia cerebropatia nom +cerebrospinale cerebrospinale adj +cerebrospinali cerebrospinale adj +cerei cereo adj +cereo cereo nom +cereria cereria nom +cererie cereria nom +ceretta ceretta nom +cerette ceretta nom +cerfogli cerfoglio nom +cerfoglio cerfoglio nom +ceri cerio|cero nom +cerilo cerilo nom +cerimonia cerimonia nom +cerimoniale cerimoniale adj +cerimoniali cerimoniale adj +cerimonie cerimonia nom +cerimoniere cerimoniere nom +cerimonieri cerimoniere nom +cerimoniosa cerimonioso adj +cerimoniose cerimonioso adj +cerimoniosi cerimonioso adj +cerimonioso cerimonioso adj +cerini cerino nom +cerino cerare ver +cerio cerio nom +cerna cernere ver +cerne cernere ver +cernei cernere ver +cerner cernere ver +cernere cernere ver +cerni cernere ver +cernia cernia nom +cernie cernia nom +cerniera cerniera nom +cerniere cerniera nom +cernita cernita nom +cernite cernita nom +cerniti cernere ver +cerno cernere ver +cero cero nom +cerone cerone nom +ceroni cerone nom +cerosa ceroso adj +cerose ceroso adj +cerosi ceroso adj +ceroso ceroso adj +cerotti cerotto nom +cerotto cerotto nom +cerretana cerretano nom +cerretani cerretano nom +cerretano cerretano nom +cerri cerro nom +cerro cerro nom +certa certo adj +certame certame nom +certamente certamente adv_sup +certami certame nom +certe certo adj +certezza certezza nom +certezze certezza nom +certi certo adj +certifica certificare ver +certificaci certificare ver +certificando certificare ver +certificandole certificare ver +certificandoli certificare ver +certificandone certificare ver +certificandosi certificare ver +certificano certificare ver +certificante certificare ver +certificanti certificare ver +certificare certificare ver +certificarla certificare ver +certificarlo certificare ver +certificarne certificare ver +certificarono certificare ver +certificarsi certificare ver +certificarvi certificare ver +certificasse certificare ver +certificassero certificare ver +certificata certificare ver +certificate certificare ver +certificati certificato nom +certificato certificato nom +certificava certificare ver +certificavano certificare ver +certificazione certificazione nom +certificazioni certificazione nom +certificherebbe certificare ver +certificherebbero certificare ver +certificherà certificare ver +certifichi certificare ver +certifichino certificare ver +certifico certificare ver +certificò certificare ver +certo certo adj_sup +certosa certosa nom +certose certosa nom +certosina certosino adj +certosine certosino adj +certosini certosino nom +certosino certosino adj +cerula cerulo adj +cerulea ceruleo adj +cerulee ceruleo adj +cerulei ceruleo adj +ceruleo ceruleo adj +ceruli cerulo adj +cerulo cerulo adj +cerume cerume nom +cerusica cerusico nom +cerusiche cerusico nom +cerusici cerusico nom +cerusico cerusico nom +cerussite cerussite nom +cerva cervo nom +cervati cervato adj +cervato cervato adj +cerve cervo nom +cervelletto cervelletto nom +cervelli cervello nom +cervelliera cervelliera nom +cervelliere cervelliera nom +cervello cervello nom +cervellotica cervellotico adj +cervellotiche cervellotico adj +cervellotici cervellotico adj +cervellotico cervellotico adj +cervi cervo nom +cervicale cervicale adj +cervicali cervicale adj +cervice cervice nom +cerviere cerviere nom +cervieri cerviere nom +cervina cervino adj +cervine cervino adj +cervini cervino adj +cervino cervino adj +cervo cervo nom +cervogia cervogia nom +cerò cerare ver +cesare cesare nom +cesarea cesareo adj +cesaree cesareo adj +cesarei cesareo adj +cesareo cesareo adj +cesari cesare nom +cesarismo cesarismo nom +cesella cesellare ver +cesellando cesellare ver +cesellano cesellare ver +cesellare cesellare ver +cesellata cesellare ver +cesellate cesellare ver +cesellati cesellare ver +cesellato cesellare ver +cesellatore cesellatore nom +cesellatori cesellatore nom +cesellatura cesellatura nom +cesellature cesellatura nom +ceselli cesello nom +cesello cesello nom +cesena cesena nom +cesene cesena nom +cesi cesio nom +cesio cesio nom +cesoia cesoia nom +cesoie cesoia nom +cespi cespo nom +cespite cespite nom +cespiti cespite nom +cespo cespo nom +cespugli cespuglio nom +cespuglio cespuglio nom +cespugliosa cespuglioso adj +cespugliose cespuglioso adj +cespugliosi cespuglioso adj +cespuglioso cespuglioso adj +cessa cessare ver +cessai cessare ver +cessando cessare ver +cessano cessare ver +cessante cessare ver +cessanti cessare ver +cessar cessare ver +cessare cessare ver +cessarla cessare ver +cessarne cessare ver +cessarono cessare ver +cessasse cessare ver +cessassero cessare ver +cessata cessare ver +cessate cessare ver +cessati cessare ver +cessato cessare ver +cessava cessare ver +cessavano cessare ver +cessazione cessazione nom +cessazioni cessazione nom +cesseranno cessare ver +cesserebbe cessare ver +cesserebbero cessare ver +cesserà cessare ver +cesserò cessare ver +cessi cesso nom +cessiamo cessare ver +cessino cessare ver +cessionari cessionario nom +cessionaria cessionario nom +cessionario cessionario nom +cessione cessione nom +cessioni cessione nom +cesso cesso nom +cessò cessare ver +cesta cesta nom +cestai cestaio nom +cestaia cestaio nom +cestaio cestaio nom +ceste cesta nom +cestelli cestello nom +cestello cestello nom +cesti cesto nom +cestii cestire ver +cestina cestinare ver +cestinando cestinare ver +cestinano cestinare ver +cestinare cestinare ver +cestinarla cestinare ver +cestinarli cestinare ver +cestinarlo cestinare ver +cestinata cestinare ver +cestinate cestinare ver +cestinati cestinare ver +cestinato cestinare ver +cestini cestino nom +cestiniamo cestinare ver +cestino cestino nom +cestinò cestinare ver +cestista cestista nom +cestiste cestire ver +cestisti cestire ver +cestita cestire ver +cestiti cestire ver +cesto cesto nom +cestodi cestodi nom +cesura cesura nom +cesure cesura nom +cetacei cetacei nom +ceti ceto nom +ceto ceto nom +cetologia cetologia nom +cetonia cetonia nom +cetorino cetorino nom +cetra cetra nom +cetrangolo cetrangolo nom +cetre cetra nom +cetrioli cetriolo nom +cetriolo cetriolo nom +chalet chalet nom +champagne champagne nom +chance chance nom +chansonnier chansonnier nom +chanteuse chanteuse nom +chantilly chantilly nom +chaperon chaperon nom +charleston charleston nom +charlotte charlotte nom +charme charme nom +charter charter adj +chartreuse chartreuse nom +chauffeur chauffeur nom +che che pro +checca checca nom +checche checca nom +checchessia checchessia pro +check check nom +chef chef nom +chela chela nom +chele chela nom +cheliceri cheliceri nom +chelidri chelidro nom +chelone chelone nom +cheloni chelone|cheloni nom +chemioterapia chemioterapia nom +chemioterapie chemioterapia nom +chemisier chemisier nom +chenopodiacee chenopodiacee nom +chenopodio chenopodio nom +cheppia cheppia nom +cheppie cheppia nom +chepì chepì nom +cheque cheque nom +cheratina cheratina nom +cheratine cheratina nom +cheratinizzano cheratinizzare ver +cheratinizzanti cheratinizzare ver +cheratinizzata cheratinizzare ver +cheratinizzate cheratinizzare ver +cheratinizzati cheratinizzare ver +cheratinizzato cheratinizzare ver +cheratinizzazione cheratinizzazione nom +cheratite cheratite nom +cheratiti cheratite nom +cheratoplastica cheratoplastica nom +chermes chermes nom +cherosene cherosene nom +cherubini cherubino nom +cherubino cherubino nom +cheta cheto adj +chetale chetare ver +chetali chetare ver +chetare chetare ver +chetarmi chetare ver +chete cheto adj +cheti cheto adj +chetichella chetichella adv +cheto cheto adj +chetone chetone nom +chetoni chetone nom +chi chi pro +chiacchiera chiacchiera nom +chiacchierando chiacchierare ver +chiacchierano chiacchierare ver +chiacchierare chiacchierare ver +chiacchierarono chiacchierare ver +chiacchierata chiacchierata nom +chiacchierate chiacchierata nom +chiacchierati chiacchierato adj +chiacchierato chiacchierare ver +chiacchierava chiacchierare ver +chiacchieravamo chiacchierare ver +chiacchieravano chiacchierare ver +chiacchiere chiacchiera nom +chiacchieri chiacchierare ver +chiacchieriamo chiacchierare ver +chiacchiericci chiacchiericcio nom +chiacchiericcio chiacchiericcio nom +chiacchierino chiacchierare ver +chiacchierio chiacchierio nom +chiacchiero chiacchierare ver +chiacchierone chiacchierone nom +chiacchieroni chiacchierone nom +chiacchierò chiacchierare ver +chiama chiamare ver +chiamai chiamare ver +chiamala chiamare ver +chiamale chiamare ver +chiamali chiamare ver +chiamalo chiamare ver +chiamami chiamare ver +chiamammo chiamare ver +chiamando chiamare ver +chiamandoci chiamare ver +chiamandola chiamare ver +chiamandole chiamare ver +chiamandoli chiamare ver +chiamandolo chiamare ver +chiamandomi chiamare ver +chiamandone chiamare ver +chiamandosi chiamare ver +chiamandovi chiamare ver +chiamano chiamare ver +chiamante chiamare ver +chiamanti chiamare ver +chiamar chiamare ver +chiamarci chiamare ver +chiamare chiamare ver +chiamarla chiamare ver +chiamarle chiamare ver +chiamarli chiamare ver +chiamarlo chiamare ver +chiamarmi chiamare ver +chiamarne chiamare ver +chiamarono chiamare ver +chiamarsi chiamare ver +chiamarti chiamare ver +chiamarvi chiamare ver +chiamasi chiamare ver +chiamasse chiamare ver +chiamassero chiamare ver +chiamassi chiamare ver +chiamassimo chiamare ver +chiamaste chiamare ver +chiamasti chiamare ver +chiamata chiamare ver +chiamate chiamare ver +chiamateci chiamare ver +chiamatela chiamare ver +chiamatele chiamare ver +chiamateli chiamare ver +chiamatelo chiamare ver +chiamatemi chiamare ver +chiamatevi chiamare ver +chiamati chiamare ver +chiamato chiamare ver +chiamava chiamare ver +chiamavamo chiamare ver +chiamavano chiamare ver +chiamavo chiamare ver +chiame chiama nom +chiamerai chiamare ver +chiameranno chiamare ver +chiamerebbe chiamare ver +chiamerebbero chiamare ver +chiamerei chiamare ver +chiameremmo chiamare ver +chiameremo chiamare ver +chiamereste chiamare ver +chiameresti chiamare ver +chiamerete chiamare ver +chiamerà chiamare ver +chiamerò chiamare ver +chiami chiamare ver +chiamiamo chiamare ver +chiamiamola chiamare ver +chiamiamole chiamare ver +chiamiamoli chiamare ver +chiamiamolo chiamare ver +chiamino chiamare ver +chiamo chiamare ver +chiamò chiamare ver +chiana chiana nom +chiane chiana nom +chianti chianti nom +chiappa chiappa nom +chiappacani chiappacani nom +chiappala chiappare ver +chiappano chiappare ver +chiappante chiappare ver +chiappare chiappare ver +chiappato chiappare ver +chiappe chiappa nom +chiappi chiappare ver +chiappino chiappare ver +chiappo chiappare ver +chiara chiaro adj +chiaramente chiaramente adv +chiare chiaro adj +chiarendo chiarire ver +chiarendoci chiarire ver +chiarendogli chiarire ver +chiarendole chiarire ver +chiarendoli chiarire ver +chiarendolo chiarire ver +chiarendomi chiarire ver +chiarendone chiarire ver +chiarendosi chiarire ver +chiarenti chiarire ver +chiaretta chiaretto adj +chiaretti chiaretto adj +chiaretto chiaretto adj +chiarezza chiarezza nom +chiarezze chiarezza nom +chiari chiaro adj +chiariamo chiarire ver +chiariamoci chiarire ver +chiariamolo chiarire ver +chiarifica chiarificare ver +chiarificando chiarificare ver +chiarificandone chiarificare ver +chiarificano chiarificare ver +chiarificante chiarificante nom +chiarificanti chiarificante nom +chiarificare chiarificare ver +chiarificarsi chiarificare ver +chiarificata chiarificare ver +chiarificate chiarificare ver +chiarificati chiarificare ver +chiarificato chiarificare ver +chiarificatore chiarificatore adj +chiarificatori chiarificatore adj +chiarificatrice chiarificatore adj +chiarificatrici chiarificatore adj +chiarificavano chiarificare ver +chiarificazione chiarificazione nom +chiarificazioni chiarificazione nom +chiarifichi chiarificare ver +chiarifichino chiarificare ver +chiarifico chiarificare ver +chiarificò chiarificare ver +chiarimenti chiarimento nom +chiarimento chiarimento nom +chiarimmo chiarire ver +chiarir chiarire ver +chiarirai chiarire ver +chiariranno chiarire ver +chiarirci chiarire ver +chiarire chiarire ver +chiarirebbe chiarire ver +chiarirebbero chiarire ver +chiarirei chiarire ver +chiariremo chiarire ver +chiarireste chiarire ver +chiariresti chiarire ver +chiarirete chiarire ver +chiarirgli chiarire ver +chiarirglielo chiarire ver +chiarirla chiarire ver +chiarirle chiarire ver +chiarirli chiarire ver +chiarirlo chiarire ver +chiarirmelo chiarire ver +chiarirmi chiarire ver +chiarirne chiarire ver +chiarirono chiarire ver +chiarirsi chiarire ver +chiarirti chiarire ver +chiarirvi chiarire ver +chiarirà chiarire ver +chiarirò chiarire ver +chiarisca chiarire ver +chiariscano chiarire ver +chiarisce chiarire ver +chiarisci chiarire ver +chiariscimi chiarire ver +chiarisciti chiarire ver +chiarisco chiarire ver +chiariscono chiarire ver +chiarisse chiarire ver +chiarissero chiarire ver +chiarissi chiarire ver +chiarissima chiarissimo adj +chiarissime chiarissimo adj +chiarissimi chiarissimo adj +chiarissimo chiarissimo adj +chiariste chiarire ver +chiaristi chiarire ver +chiarita chiarire ver +chiarite chiarire ver +chiaritemi chiarire ver +chiaritevi chiarire ver +chiariti chiarire ver +chiarito chiarire ver +chiarità chiarità nom +chiariva chiarire ver +chiarivano chiarire ver +chiarivo chiarire ver +chiaro chiaro adj +chiarore chiarore nom +chiarori chiarore nom +chiaroscurale chiaroscurale adj +chiaroscurali chiaroscurale adj +chiaroscurata chiaroscurare ver +chiaroscurate chiaroscurare ver +chiaroscurati chiaroscurare ver +chiaroscurato chiaroscurare ver +chiaroscuri chiaroscuro nom +chiaroscuro chiaroscuro nom +chiaroveggente chiaroveggente adj +chiaroveggenti chiaroveggente adj +chiaroveggenza chiaroveggenza nom +chiarì chiarire ver +chiasmi chiasmo nom +chiasmo chiasmo nom +chiassata chiassata nom +chiassate chiassata nom +chiassi chiasso nom +chiasso chiasso nom +chiassone chiassone adj +chiassoni chiassone adj +chiassosa chiassoso adj +chiassose chiassoso adj +chiassosi chiassoso adj +chiassoso chiassoso adj +chiatta chiatta nom +chiatte chiatta nom +chiava chiavare ver +chiavacci chiavaccio nom +chiavano chiavare ver +chiavarda chiavarda nom +chiavarde chiavarda nom +chiavare chiavare ver +chiavasti chiavare ver +chiavata chiavare ver +chiavava chiavare ver +chiave chiave nom +chiavetta chiavetta nom +chiavette chiavetta nom +chiavi chiave nom +chiavica chiavica nom +chiaviche chiavica nom +chiavino chiavare ver +chiavistelli chiavistello nom +chiavistello chiavistello nom +chiavo chiavare ver +chiazza chiazza nom +chiazzano chiazzare ver +chiazzata chiazzare ver +chiazzate chiazzare ver +chiazzati chiazzare ver +chiazzato chiazzare ver +chiazzature chiazzatura nom +chiazze chiazza nom +chic chic adj +chicca chicca nom +chicche chicca nom +chicchera chicchera nom +chicchere chicchera nom +chicchessia chicchessia nom +chicchi chicco nom +chicchirichì chicchirichì nom +chicco chicco nom +chichessia chichessia pro +chieda chiedere ver +chiedano chiedere ver +chiede chiedere ver +chiedemmo chiedere ver +chiedendo chiedere ver +chiedendoci chiedere ver +chiedendogli chiedere ver +chiedendoglielo chiedere ver +chiedendola chiedere ver +chiedendole chiedere ver +chiedendoli chiedere ver +chiedendolo chiedere ver +chiedendomi chiedere ver +chiedendone chiedere ver +chiedendosi chiedere ver +chiedendoti chiedere ver +chiedendovi chiedere ver +chiedente chiedere ver +chiedenti chiedere ver +chieder chiedere ver +chiederai chiedere ver +chiederanno chiedere ver +chiedercelo chiedere ver +chiederci chiedere ver +chiedere chiedere ver +chiederebbe chiedere ver +chiederebbero chiedere ver +chiederei chiedere ver +chiederemmo chiedere ver +chiederemo chiedere ver +chiederesti chiedere ver +chiederete chiedere ver +chiedergli chiedere ver +chiedergliela chiedere ver +chiedergliele chiedere ver +chiederglieli chiedere ver +chiederglielo chiedere ver +chiedergliene chiedere ver +chiederla chiedere ver +chiederle chiedere ver +chiederli chiedere ver +chiederlo chiedere ver +chiedermela chiedere ver +chiedermele chiedere ver +chiedermelo chiedere ver +chiedermene chiedere ver +chiedermi chiedere ver +chiederne chiedere ver +chiederselo chiedere ver +chiedersene chiedere ver +chiedersi chiedere ver +chiedertela chiedere ver +chiedertelo chiedere ver +chiedertene chiedere ver +chiederti chiedere ver +chiedervelo chiedere ver +chiedervi chiedere ver +chiederà chiedere ver +chiederò chiedere ver +chiedesse chiedere ver +chiedessero chiedere ver +chiedessi chiedere ver +chiedessimo chiedere ver +chiedeste chiedere ver +chiedesti chiedere ver +chiedete chiedere ver +chiedetegli chiedere ver +chiedetele chiedere ver +chiedetelo chiedere ver +chiedetemelo chiedere ver +chiedetemi chiedere ver +chiedetene chiedere ver +chiedetevi chiedere ver +chiedeva chiedere ver +chiedevamo chiedere ver +chiedevano chiedere ver +chiedevi chiedere ver +chiedevo chiedere ver +chiedi chiedere ver +chiediamo chiedere ver +chiediamoci chiedere ver +chiediamogli chiedere ver +chiediamolo chiedere ver +chiediate chiedere ver +chiedigli chiedere ver +chiediglielo chiedere ver +chiedila chiedere ver +chiedile chiedere ver +chiedilo chiedere ver +chiedimi chiedere ver +chiedine chiedere ver +chieditelo chiedere ver +chiediti chiedere ver +chiedo chiedere ver +chiedono chiedere ver +chierica chierica nom +chieriche chierica nom +chierichetti chierichetto nom +chierichetto chierichetto nom +chierici chierico nom +chierico chierico nom +chiesa chiesa nom +chiesastica chiesastico adj +chiesastiche chiesastico adj +chiesastici chiesastico adj +chiesastico chiesastico adj +chiese chiesa nom +chiesero chiedere ver +chiesi chiedere ver +chiesta chiedere ver +chieste chiedere ver +chiesti chiedere ver +chiesto chiedere ver +chiesuola chiesuola nom +chiesuole chiesuola nom +chifferi chiffero nom +chiffon chiffon nom +chiffonnier chiffonnier nom +chiglia chiglia nom +chiglie chiglia nom +chignon chignon nom +chihuahua chihuahua nom +chili chilo nom +chiliferi chilifero adj +chilifero chilifero adj +chilo chilo nom +chilocicli chilociclo nom +chilogrammetri chilogrammetro nom +chilogrammetro chilogrammetro nom +chilogrammi chilogrammo nom +chilogrammo chilogrammo nom +chilometraggi chilometraggio nom +chilometraggio chilometraggio nom +chilometri chilometro nom +chilometrica chilometrico adj +chilometriche chilometrico adj +chilometrici chilometrico adj +chilometrico chilometrico adj +chilometro chilometro nom +chilopodi chilopodi nom +chiloton chiloton nom +chilovolt chilovolt nom +chilowatt chilowatt nom +chilowattora chilowattora nom +chimera chimera nom +chimere chimera nom +chimerica chimerico adj +chimeriche chimerico adj +chimerici chimerico adj +chimerico chimerico adj +chimi chimo nom +chimica chimico adj +chimicamente chimicamente adv +chimiche chimico adj +chimici chimico adj +chimico chimico adj +chimismi chimismo nom +chimismo chimismo nom +chimo chimo nom +chimono chimono nom +chimosina chimosina nom +china chino adj +chinai chinare ver +chinali chinare ver +chinami chinare ver +chinando chinare ver +chinandosi chinare ver +chinano chinare ver +chinar chinare ver +chinare chinare ver +chinarono chinare ver +chinarsi chinare ver +chinasi chinare ver +chinasse chinare ver +chinata chinare ver +chinate chinato adj +chinati chinato adj +chinato chinare ver +chinava chinare ver +chinavano chinare ver +chincaglieria chincaglieria nom +chincaglierie chincaglieria nom +chine chino adj +chinea chinea nom +chinetosi chinetosi nom +chini chino adj +chiniamo chinare ver +chinina chinina nom +chinine chinina nom +chinino chinino nom +chino chino adj +chinotti chinotto nom +chinotto chinotto nom +chintz chintz nom +chinò chinare ver +chiocce chioccio adj +chiocci chioccio adj +chioccia chioccia nom +chiocciano chiocciare ver +chiocciare chiocciare ver +chiocciole chiocciola nom +chioccola chioccola nom +chioccolo chioccolo nom +chioda chiodare ver +chiodare chiodare ver +chiodata chiodato adj +chiodate chiodato adj +chiodati chiodato adj +chiodato chiodare ver +chiodatura chiodatura nom +chiodature chiodatura nom +chioderie chioderia nom +chiodi chiodo nom +chiodini chiodino nom +chiodino chiodino nom +chiodo chiodo nom +chioma chioma nom +chiomata chiomato adj +chiomati chiomato adj +chiomato chiomato adj +chiome chioma nom +chiosa chiosa nom +chiosando chiosare ver +chiosano chiosare ver +chiosare chiosare ver +chiosate chiosare ver +chiosato chiosare ver +chiosatore chiosatore nom +chiosatori chiosatore nom +chiosava chiosare ver +chioschi chiosco nom +chiosco chiosco nom +chiose chiosa nom +chioserà chiosare ver +chiosi chiosare ver +chioso chiosare ver +chiostra chiostra nom +chiostri chiostro nom +chiostro chiostro nom +chiosò chiosare ver +chiotte chiotto adj +chiotti chiotto adj +chiotto chiotto adj +chiozzotte chiozzotta nom +chip chip nom +chippendale chippendale adj +chiragra chiragra nom +chirografari chirografario adj +chirografario chirografario adj +chirografi chirografo nom +chirografo chirografo nom +chirologia chirologia nom +chiromante chiromante nom +chiromanti chiromante nom +chiromanzia chiromanzia nom +chirotteri chirotteri nom +chirurghi chirurgo nom +chirurgia chirurgia nom +chirurgica chirurgico adj +chirurgicamente chirurgicamente adv +chirurgiche chirurgico adj +chirurgici chirurgico adj +chirurgico chirurgico adj +chirurgie chirurgia nom +chirurgo chirurgo nom +chissa chissa sw +chissisia chissisia pro +chissà chissà adv_sup +chitarra chitarra nom +chitarre chitarra nom +chitarrista chitarrista nom +chitarriste chitarrista nom +chitarristi chitarrista nom +chitarrone chitarrone nom +chitarroni chitarrone nom +chitina chitina nom +chitine chitina nom +chitinosa chitinoso adj +chitinose chitinoso adj +chitinosi chitinoso adj +chitinoso chitinoso adj +chitone chitone nom +chitoni chitone nom +chiuda chiudere ver +chiudano chiudere ver +chiude chiudere ver +chiudemmo chiudere ver +chiudenda chiudenda nom +chiudende chiudenda nom +chiudendo chiudere ver +chiudendogli chiudere ver +chiudendola chiudere ver +chiudendole chiudere ver +chiudendoli chiudere ver +chiudendolo chiudere ver +chiudendone chiudere ver +chiudendosi chiudere ver +chiudendovi chiudere ver +chiudente chiudere ver +chiuder chiudere ver +chiuderai chiudere ver +chiuderanno chiudere ver +chiuderci chiudere ver +chiudere chiudere ver +chiuderebbe chiudere ver +chiuderebbero chiudere ver +chiuderei chiudere ver +chiuderemo chiudere ver +chiuderesti chiudere ver +chiuderete chiudere ver +chiudergli chiudere ver +chiuderla chiudere ver +chiuderle chiudere ver +chiuderli chiudere ver +chiuderlo chiudere ver +chiudermi chiudere ver +chiuderne chiudere ver +chiudersi chiudere ver +chiuderti chiudere ver +chiudervi chiudere ver +chiuderà chiudere ver +chiuderò chiudere ver +chiudesse chiudere ver +chiudessero chiudere ver +chiudessimo chiudere ver +chiudesti chiudere ver +chiudete chiudere ver +chiudetela chiudere ver +chiudetele chiudere ver +chiudetelo chiudere ver +chiudetevi chiudere ver +chiudeva chiudere ver +chiudevano chiudere ver +chiudevo chiudere ver +chiudi chiudere ver +chiudiamo chiudere ver +chiudiamola chiudere ver +chiudiamoli chiudere ver +chiudiamolo chiudere ver +chiudila chiudere ver +chiudilettera chiudilettera nom +chiudilo chiudere ver +chiuditi chiudere ver +chiudo chiudere ver +chiudono chiudere ver +chiunque chiunque pro +chiurli chiurlo nom +chiurlo chiurlo nom +chiusa chiuso adj +chiuse chiuso adj +chiusero chiudere ver +chiusi chiuso adj +chiusini chiusino nom +chiusino chiusino nom +chiuso chiudere ver +chiusura chiusura nom +chiusure chiusura nom +chiù chiù nom +chlamydia chlamydia nom +choc choc nom +chope chope nom +châssis châssis nom +ché ché con +ci ci pro +ciabatta ciabatta nom +ciabattando ciabattare ver +ciabattata ciabattare ver +ciabatte ciabatta nom +ciabatti ciabattare ver +ciabattina ciabattino nom +ciabattine ciabattino nom +ciabattini ciabattino nom +ciabattino ciabattino nom +ciabattoni ciabattone nom +ciac ciac nom +ciaccona ciaccona nom +ciaccone ciaccona nom +ciack ciack nom +ciak ciak nom +cialda cialda nom +cialde cialda nom +cialdini cialdino nom +cialdino cialdino nom +cialdone cialdone nom +cialtrona cialtrone nom +cialtronate cialtronata nom +cialtrone cialtrone nom +cialtroneria cialtroneria nom +cialtronerie cialtroneria nom +cialtroni cialtrone nom +ciambella ciambella nom +ciambellani ciambellano nom +ciambellano ciambellano nom +ciambelle ciambella nom +ciana ciana nom +cianammide cianammide nom +cianammidi cianammide nom +cianca cianca nom +ciance ciancia nom +cianche cianca nom +cianci cianciare ver +ciancia ciancia nom +ciancialo cianciare ver +cianciando cianciare ver +cianciano cianciare ver +cianciare cianciare ver +ciancicato ciancicare ver +ciancico ciancicare ver +ciancio cianciare ver +ciane ciana nom +cianfrini cianfrinare ver +cianfrino cianfrinare ver +cianfrusaglia cianfrusaglia nom +cianfrusaglie cianfrusaglia nom +ciangotta ciangottare ver +ciani ciano nom +cianico cianico adj +cianidrici cianidrico adj +cianidrico cianidrico adj +ciano ciano nom +cianogeni cianogeno nom +cianogeno cianogeno nom +cianografia cianografia nom +cianografie cianografia nom +cianosi cianosi nom +cianotica cianotico adj +cianotici cianotico adj +cianotico cianotico adj +cianurazione cianurazione nom +cianuri cianuro nom +cianuro cianuro nom +ciao ciao int +ciappola ciappola nom +ciaramella ciaramella nom +ciaramelle ciaramella nom +ciarda ciarda nom +ciarla ciarla nom +ciarlare ciarlare nom +ciarlatanate ciarlatanata nom +ciarlataneria ciarlataneria nom +ciarlatanerie ciarlataneria nom +ciarlatani ciarlatano nom +ciarlatano ciarlatano nom +ciarle ciarla nom +ciarliera ciarliero adj +ciarliero ciarliero adj +ciarlona ciarlone adj +ciarlone ciarlone adj +ciarpa ciarpa nom +ciarpame ciarpame nom +ciascheduno ciascheduno pro +ciascun ciascun pro +ciascuna ciascuna pro +ciascuno ciascuno pro +ciba cibare ver +cibale cibare ver +cibali cibare ver +cibando cibare ver +cibandosene cibare ver +cibandosi cibare ver +cibane cibare ver +cibano cibare ver +cibare cibare ver +cibaria cibaria nom +cibarie cibaria nom +cibarono cibare ver +cibarsene cibare ver +cibarsi cibare ver +cibasse cibare ver +cibassero cibare ver +cibata cibare ver +cibate cibare ver +cibati cibare ver +cibato cibare ver +cibava cibare ver +cibavano cibare ver +ciberanno cibare ver +cibernetica cibernetica nom +cibernetiche cibernetica nom +ciberà cibare ver +cibi cibo nom +cibino cibare ver +cibo cibo nom +cibori ciborio nom +ciborio ciborio nom +cibò cibare ver +cicala cicala nom +cicalando cicalare ver +cicalare cicalare ver +cicalata cicalata nom +cicale cicala nom +cicaleccio cicaleccio nom +cicali cicalare ver +cicalini cicalino nom +cicalino cicalino nom +cicalio cicalio nom +cicalò cicalare ver +cicatrice cicatrice nom +cicatrici cicatrice nom +cicatricola cicatricola nom +cicatriziale cicatriziale adj +cicatriziali cicatriziale adj +cicatrizza cicatrizzare ver +cicatrizzando cicatrizzare ver +cicatrizzano cicatrizzare ver +cicatrizzante cicatrizzare ver +cicatrizzanti cicatrizzare ver +cicatrizzare cicatrizzare ver +cicatrizzarsi cicatrizzare ver +cicatrizzasse cicatrizzare ver +cicatrizzata cicatrizzare ver +cicatrizzate cicatrizzare ver +cicatrizzato cicatrizzare ver +cicatrizzazione cicatrizzazione nom +cicatrizzazioni cicatrizzazione nom +cicca cicca nom +ciccanti ciccare ver +ciccati ciccare ver +ciccato ciccare ver +cicce ciccia nom +cicche cicca nom +cicchetti cicchetto nom +cicchetto cicchetto nom +cicchi ciccare ver +cicchino ciccare ver +ciccia ciccia nom +ciccioli cicciolo nom +cicciolo cicciolo nom +cicciona ciccione nom +ciccione ciccione nom +ciccioni ciccione nom +cicciotti cicciotto nom +cicciotto cicciotto nom +cicco ciccare ver +cicerchia cicerchia nom +cicerchie cicerchia nom +cicerone cicerone nom +ciceroni cicerone nom +cicindela cicindela nom +cicindele cicindela nom +cicisbei cicisbeo nom +cicisbeo cicisbeo nom +ciclabile ciclabile adj +ciclabili ciclabile adj +ciclamini ciclamino nom +ciclamino ciclamino adj +cicli ciclo nom +ciclica ciclico adj +cicliche ciclico adj +ciclici ciclico adj +ciclicità ciclicità nom +ciclico ciclico adj +ciclismo ciclismo nom +ciclista ciclista nom +cicliste ciclista nom +ciclisti ciclista nom +ciclistica ciclistico adj +ciclistiche ciclistico adj +ciclistici ciclistico adj +ciclistico ciclistico adj +ciclo ciclo nom +ciclocross ciclocross nom +ciclocrossista ciclocrossista nom +ciclocrossisti ciclocrossista nom +cicloesano cicloesano nom +cicloidale cicloidale adj +cicloide cicloide nom +cicloidi cicloide nom +ciclomotore ciclomotore nom +ciclomotori ciclomotore nom +ciclomotorista ciclomotorista nom +ciclone ciclone nom +cicloni ciclone nom +ciclonica ciclonico adj +cicloniche ciclonico adj +ciclonici ciclonico adj +ciclonico ciclonico adj +ciclope ciclope nom +ciclopi ciclope nom +ciclopica ciclopico adj +ciclopiche ciclopico adj +ciclopici ciclopico adj +ciclopico ciclopico adj +ciclopista ciclopista nom +ciclopiste ciclopista nom +ciclostilare ciclostilare ver +ciclostilata ciclostilare ver +ciclostilate ciclostilare ver +ciclostilati ciclostilare ver +ciclostilato ciclostilare ver +ciclostile ciclostile nom +ciclostili ciclostile nom +ciclostomi ciclostomi nom +ciclotimia ciclotimia nom +ciclotrone ciclotrone nom +ciclotroni ciclotrone nom +cicogna cicogna nom +cicogne cicogna nom +cicoria cicoria nom +cicorie cicoria nom +cicuta cicuta nom +cieca cieco adj +cieche cieco adj +ciechi cieco adj +cieco cieco adj +cieli cielo nom +cielo cielo nom +cifosi cifosi nom +cifra cifra nom +cifrando cifrare ver +cifrandolo cifrare ver +cifrano cifrare ver +cifrante cifrare ver +cifranti cifrare ver +cifrare cifrare ver +cifrari cifrario nom +cifrario cifrario nom +cifrarlo cifrare ver +cifrasse cifrare ver +cifrata cifrare ver +cifrate cifrato adj +cifrati cifrato adj +cifrato cifrato adj +cifre cifra nom +cifrerà cifrare ver +cifro cifrare ver +ciglia ciglio nom +ciglio ciglio nom +ciglione ciglione nom +ciglioni ciglione nom +cigna cigna nom +cignale cignale nom +cignali cignale nom +cigne cigna nom +cigni cigno nom +cigno cigno nom +cigola cigolare ver +cigolando cigolare ver +cigolante cigolare ver +cigolanti cigolare ver +cigolare cigolare ver +cigoli cigolare ver +cigolii cigolio nom +cigolino cigolare ver +cigolio cigolio nom +cilecca cilecca nom +cilena cileno adj +cilene cileno adj +cileni cileno adj +cileno cileno adj +cilestrini cilestrino adj +cilestrino cilestrino adj +cilestro cilestro adj +ciliare ciliare adj +ciliari ciliare adj +cilici cilicio nom +cilicio cilicio nom +ciliege ciliegia nom +ciliegi ciliegio nom +ciliegia ciliegia nom +ciliegie ciliegia nom +ciliegio ciliegio nom +cilindrata cilindrata nom +cilindrate cilindrata nom +cilindri cilindro nom +cilindrica cilindrico adj +cilindriche cilindrico adj +cilindrici cilindrico adj +cilindrico cilindrico adj +cilindro cilindro nom +cima cima nom +cimai cimare ver +cimale cimare ver +cimando cimare ver +cimano cimare ver +cimar cimare ver +cimare cimare ver +cimasa cimasa nom +cimase cimasa nom +cimata cimare ver +cimate cimare ver +cimati cimare ver +cimato cimare ver +cimatore cimatore nom +cimatori cimatore nom +cimatrice cimatore|cimatrice nom +cimatura cimatura nom +cimature cimatura nom +cime cima nom +cimeli cimelio nom +cimelio cimelio nom +cimenta cimentare ver +cimentaci cimentare ver +cimentando cimentare ver +cimentandosi cimentare ver +cimentano cimentare ver +cimentarci cimentare ver +cimentare cimentare ver +cimentarmi cimentare ver +cimentarono cimentare ver +cimentarsi cimentare ver +cimentarti cimentare ver +cimentarvi cimentare ver +cimentasse cimentare ver +cimentassero cimentare ver +cimentata cimentare ver +cimentate cimentare ver +cimentati cimentare ver +cimentato cimentare ver +cimentava cimentare ver +cimentavano cimentare ver +cimentavo cimentare ver +cimenteranno cimentare ver +cimenterà cimentare ver +cimenterò cimentare ver +cimenti cimento nom +cimento cimento nom +cimentò cimentare ver +cimi cimare ver +cimice cimice nom +cimici cimice nom +cimieri cimiero nom +cimiero cimiero nom +ciminiera ciminiera nom +ciminiere ciminiera nom +cimino cimare ver +cimiteri cimitero nom +cimiteriale cimiteriale adj +cimiteriali cimiteriale adj +cimitero cimitero nom +cimo cimare ver +cimoli cimolo nom +cimolo cimolo nom +cimosa cimoso adj +cimose cimosa nom +cimoso cimoso adj +cimossa cimossa nom +cimosse cimossa nom +cimurri cimurro nom +cimurro cimurro nom +cinabri cinabro nom +cinabro cinabro nom +cince cincia nom +cincia cincia nom +cincilla cincilla nom +cincin cincin int +cincischia cincischiare ver +cincischiare cincischiare ver +cincischiato cincischiare ver +cine cine nom +cineamatore cineamatore nom +cineamatori cineamatore nom +cineasta cineasta nom +cineaste cineasta nom +cineasti cineasta nom +cinebox cinebox nom +cinecamera cinecamera nom +cinecamere cinecamera nom +cineclub cineclub nom +cineforum cineforum nom +cinegetica cinegetico adj +cinegetico cinegetico adj +cinegiornale cinegiornale nom +cinegiornali cinegiornale nom +cinelandia cinelandia nom +cinema cinema nom +cinematica cinematica nom +cinematiche cinematica nom +cinematismi cinematismo nom +cinematismo cinematismo nom +cinematografari cinematografaro nom +cinematografaro cinematografaro nom +cinematografato cinematografare ver +cinematografi cinematografo nom +cinematografia cinematografia nom +cinematografica cinematografico adj +cinematografiche cinematografico adj +cinematografici cinematografico adj +cinematografico cinematografico adj +cinematografie cinematografia nom +cinematografo cinematografo nom +cinepresa cinepresa nom +cineprese cinepresa nom +cinerama cinerama nom +cinerari cinerario adj +cineraria cinerario adj +cinerarie cineraria nom +cinerario cinerario adj +cinerea cinereo adj +cineree cinereo adj +cinerei cinereo adj +cinereo cinereo adj +cinerini cinerino nom +cinerino cinerino nom +cineromanzi cineromanzo nom +cineromanzo cineromanzo nom +cinescopi cinescopio nom +cinescopio cinescopio nom +cinese cinese adj +cineseria cineseria nom +cineserie cineseria nom +cinesi cinese adj +cinesica cinesica nom +cinesiterapia cinesiterapia nom +cineteca cineteca nom +cineteche cineteca nom +cinetica cinetico adj +cinetiche cinetico adj +cinetici cinetico adj +cinetico cinetico adj +cinga cingere ver +cingalese cingalese adj +cingalesi cingalese adj +cingano cingere ver +cinge cingere ver +cingendo cingere ver +cingendola cingere ver +cingendole cingere ver +cingendolo cingere ver +cingente cingere ver +cinger cingere ver +cingere cingere ver +cingergli cingere ver +cingerla cingere ver +cingerlo cingere ver +cingersi cingere ver +cingervi cingere ver +cingerà cingere ver +cingesse cingere ver +cingeva cingere ver +cingevano cingere ver +cinghi cinghiare ver +cinghia cinghia nom +cinghiala cinghiare ver +cinghiale cinghiale nom +cinghiali cinghiale nom +cinghiata cinghiata nom +cinghiate cinghiata nom +cinghiato cinghiare ver +cinghie cinghia nom +cinghio cinghiare ver +cingi cingere ver +cingimi cingere ver +cingo cingere ver +cingolata cingolato adj +cingolate cingolato adj +cingolati cingolato adj +cingolato cingolato adj +cingoletta cingoletta nom +cingoli cingolo nom +cingolo cingolo nom +cingono cingere ver +cinguetta cinguettare ver +cinguettando cinguettare ver +cinguettano cinguettare ver +cinguettante cinguettare ver +cinguettanti cinguettare ver +cinguettare cinguettare ver +cinguettavano cinguettare ver +cinguetti cinguettare ver +cinguettii cinguettio nom +cinguettio cinguettio nom +cinica cinico adj +ciniche cinico adj +cinici cinico adj +cinico cinico adj +ciniglia ciniglia nom +cinismo cinismo nom +cinnamomi cinnamomo nom +cinnamomo cinnamomo nom +cinocefale cinocefalo adj +cinocefali cinocefalo nom +cinocefalo cinocefalo adj +cinodromi cinodromo nom +cinodromo cinodromo nom +cinofila cinofilo adj +cinofile cinofilo adj +cinofili cinofilo adj +cinofilia cinofilia nom +cinofilo cinofilo adj +cinquanta cinquanta adj +cinquantenari cinquantenario adj +cinquantenaria cinquantenario adj +cinquantenario cinquantenario nom +cinquantenne cinquantenne adj +cinquantenni cinquantenne adj +cinquantennio cinquantennio nom +cinquantesima cinquantesimo adj +cinquantesimo cinquantesimo adj +cinquantina cinquantina nom +cinquantine cinquantina nom +cinquantotto cinquantotto adj +cinquantuno cinquantuno adj +cinque cinque adj_sup +cinquecentesca cinquecentesco adj +cinquecentesche cinquecentesco adj +cinquecenteschi cinquecentesco adj +cinquecentesco cinquecentesco adj +cinquecentista cinquecentista nom +cinquecentisti cinquecentista nom +cinquecento cinquecento nom +cinquefoglie cinquefoglie nom +cinquemila cinquemila adj +cinquenne cinquenne adj +cinquina cinquina nom +cinquine cinquina nom +cinse cingere ver +cinsero cingere ver +cinsi cingere ver +cinta cinta nom +cintai cintare ver +cintano cintare ver +cintare cintare ver +cintata cintare ver +cintate cintare ver +cintati cintare ver +cintato cintare ver +cinte cinta nom +cinti cinto nom +cinto cingere ver +cintola cintola nom +cintura cintura nom +cinture cintura nom +cinturini cinturino nom +cinturino cinturino nom +cinturone cinturone nom +cinturoni cinturone nom +cio cio sw +ciocca ciocca nom +ciocche ciocca nom +ciocchi ciocco nom +ciocco ciocco nom +cioccolata cioccolato nom +cioccolatai cioccolataio nom +cioccolataio cioccolataio nom +cioccolate cioccolato nom +cioccolati cioccolato nom +cioccolato cioccolato nom +ciocia ciocia nom +ciocie ciocia nom +cioe cioe sw +ciompi ciompo nom +ciompo ciompo nom +cionca cionco adj +cionchi cionco adj +cionco cionco adj +ciondola ciondolare ver +ciondolando ciondolare ver +ciondolano ciondolare ver +ciondolante ciondolare ver +ciondolanti ciondolare ver +ciondolare ciondolare ver +ciondolava ciondolare ver +ciondoli ciondolo nom +ciondolino ciondolare ver +ciondolo ciondolo nom +ciondoloni ciondoloni adv +ciondolò ciondolare ver +cionondimeno cionondimeno adv +ciononostante ciononostante adv +ciotola ciotola nom +ciotole ciotola nom +ciottolata ciottolata nom +ciottolate ciottolata nom +ciottoli ciottolo nom +ciottolo ciottolo nom +cioè cioè adv_sup +cioé cioé adv +cip cip nom +ciperacee ciperacee nom +cipiglio cipiglio nom +cipolla cipolla nom +cipollaio cipollaio nom +cipollata cipollato adj +cipollato cipollato adj +cipollatura cipollatura nom +cipolle cipolla nom +cipollini cipollino nom +cipollino cipollino nom +cippi cippo nom +cippo cippo nom +cipresseto cipresseto nom +cipressi cipresso nom +cipresso cipresso nom +cipria cipria nom +ciprie cipria nom +cipriota cipriota adj +cipriote cipriota adj +ciprioti cipriota adj +circa circa adv_sup +circe circe nom +circense circense adj +circensi circense adj +circhi circo nom +circi circe nom +circo circo nom +circola circolare ver +circolando circolare ver +circolano circolare ver +circolante circolante adj +circolanti circolante adj +circolare circolare adj +circolari circolare adj +circolarmente circolarmente adv +circolarne circolare ver +circolarono circolare ver +circolarvi circolare ver +circolasse circolare ver +circolassero circolare ver +circolata circolare ver +circolate circolare ver +circolati circolare ver +circolato circolare ver +circolatori circolatorio adj +circolatoria circolatorio adj +circolatorie circolatorio adj +circolatorio circolatorio adj +circolava circolare ver +circolavano circolare ver +circolazione circolazione nom +circolazioni circolazione nom +circoleranno circolare ver +circolerebbe circolare ver +circolerebbero circolare ver +circolerà circolare ver +circoli circolo nom +circoliamo circolare ver +circolino circolare ver +circolo circolo nom +circolò circolare ver +circoncide circoncidere ver +circoncidere circoncidere ver +circonciderlo circoncidere ver +circoncidersi circoncidere ver +circoncidono circoncidere ver +circoncisa circoncidere ver +circoncise circoncidere ver +circoncisi circoncidere ver +circoncisione circoncisione nom +circoncisioni circoncisione nom +circonciso circoncidere ver +circonda circondare ver +circondando circondare ver +circondandola circondare ver +circondandole circondare ver +circondandoli circondare ver +circondandolo circondare ver +circondandone circondare ver +circondandosi circondare ver +circondano circondare ver +circondante circondare ver +circondanti circondare ver +circondarci circondare ver +circondare circondare ver +circondari circondario nom +circondario circondario nom +circondarla circondare ver +circondarle circondare ver +circondarli circondare ver +circondarlo circondare ver +circondarono circondare ver +circondarsi circondare ver +circondasse circondare ver +circondassero circondare ver +circondata circondare ver +circondate circondare ver +circondati circondare ver +circondato circondare ver +circondava circondare ver +circondavano circondare ver +circonderanno circondare ver +circonderebbe circondare ver +circonderebbero circondare ver +circonderà circondare ver +circondi circondare ver +circondino circondare ver +circondo circondare ver +circondurre circondurre ver +circonduzione circonduzione nom +circondò circondare ver +circonferenza circonferenza nom +circonferenze circonferenza nom +circonflessa circonflesso adj +circonflesse circonflesso adj +circonflessi circonflesso adj +circonflesso circonflesso adj +circonfusa circonfondere ver +circonfuse circonfondere ver +circonfuso circonfondere ver +circonlocuzione circonlocuzione nom +circonlocuzioni circonlocuzione nom +circonstanziata circonstanziato adj +circonvallazione circonvallazione nom +circonvallazioni circonvallazione nom +circonvenire circonvenire ver +circonvenzione circonvenzione nom +circonvicine circonvicino adj +circonvicini circonvicino adj +circonvoluzione circonvoluzione nom +circonvoluzioni circonvoluzione nom +circoscrisse circoscrivere ver +circoscritta circoscrivere ver +circoscritte circoscrivere ver +circoscritti circoscrivere ver +circoscritto circoscrivere ver +circoscriva circoscrivere ver +circoscrive circoscrivere ver +circoscrivendo circoscrivere ver +circoscrivendola circoscrivere ver +circoscrivendolo circoscrivere ver +circoscrivendosi circoscrivere ver +circoscrivere circoscrivere ver +circoscriverli circoscrivere ver +circoscriverlo circoscrivere ver +circoscriverne circoscrivere ver +circoscriversi circoscrivere ver +circoscriverà circoscrivere ver +circoscriveva circoscrivere ver +circoscrivevano circoscrivere ver +circoscrivi circoscrivere ver +circoscrivo circoscrivere ver +circoscrivono circoscrivere ver +circoscrizionale circoscrizionale adj +circoscrizionali circoscrizionale adj +circoscrizione circoscrizione nom +circoscrizioni circoscrizione nom +circospetta circospetto adj +circospetti circospetto adj +circospetto circospetto adj +circospezione circospezione nom +circostante circostante adj +circostanti circostante adj +circostanza circostanza nom +circostanze circostanza nom +circostanzia circostanziare ver +circostanziale circostanziare ver +circostanziali circostanziare ver +circostanziando circostanziare ver +circostanziandola circostanziare ver +circostanziano circostanziare ver +circostanziare circostanziare ver +circostanziarla circostanziare ver +circostanziarlo circostanziare ver +circostanziata circostanziare ver +circostanziate circostanziare ver +circostanziati circostanziare ver +circostanziato circostanziare ver +circostanziava circostanziare ver +circostanzino circostanziare ver +circuendo circuire ver +circuire circuire ver +circuirlo circuire ver +circuirà circuire ver +circuisce circuire ver +circuiscono circuire ver +circuita circuire ver +circuite circuire ver +circuiti circuito nom +circuito circuito nom +circuivano circuire ver +circuizione circuizione nom +circumnaviga circumnavigare ver +circumnavigando circumnavigare ver +circumnavigandola circumnavigare ver +circumnavigandolo circumnavigare ver +circumnavigano circumnavigare ver +circumnavigare circumnavigare ver +circumnavigarono circumnavigare ver +circumnavigata circumnavigare ver +circumnavigate circumnavigare ver +circumnavigato circumnavigare ver +circumnavigatore circumnavigatore nom +circumnavigatori circumnavigatore nom +circumnavigava circumnavigare ver +circumnavigavano circumnavigare ver +circumnavigazione circumnavigazione nom +circumnavigazioni circumnavigazione nom +circumnavigò circumnavigare ver +circumpadana circumpadano adj +circumpolare circumpolare adj +circumpolari circumpolare adj +circumvesuviana circumvesuviano adj +circuì circuire ver +cirenei cireneo nom +cireneo cireneo nom +cirillica cirillico adj +cirilliche cirillico adj +cirillici cirillico adj +cirillico cirillico adj +ciripà ciripà nom +cirnechi cirneco nom +cirneco cirneco nom +cirri cirro nom +cirro cirro nom +cirrocumuli cirrocumulo nom +cirrocumulo cirrocumulo nom +cirrosi cirrosi nom +cirrostrati cirrostrato nom +cirrostrato cirrostrato nom +cirrotica cirrotico adj +cirrotici cirrotico adj +cirrotico cirrotico adj +ciré ciré nom +cisalpina cisalpino adj +cisalpine cisalpino adj +cisalpini cisalpino adj +cisalpino cisalpino adj +cismontana cismontano adj +cismontani cismontano adj +cismontano cismontano adj +cispa cispa nom +cispadana cispadano adj +cispadane cispadano adj +cispadani cispadano adj +cispadano cispadano adj +cisposi cisposo adj +cista cista nom +ciste cista|ciste nom +cistectomia cistectomia nom +cistercense cistercense adj +cistercensi cistercense adj +cisterna cisterna nom +cisterne cisterna nom +cisti ciste|cisti nom +cistica cistico adj +cisticerchi cisticerco nom +cisticerco cisticerco nom +cisticercosi cisticercosi nom +cistiche cistico adj +cistici cistico adj +cistico cistico adj +cistifellea cistifellea nom +cistifellee cistifellea nom +cistite cistite nom +cistiti cistite nom +cistoscopia cistoscopia nom +cistoscopie cistoscopia nom +cita citare ver +citabile citabile adj +citabili citabile adj +citaci citare ver +citai citare ver +citala citare ver +citale citare ver +citali citare ver +citalo citare ver +citameli citare ver +citami citare ver +citando citare ver +citandoci citare ver +citandogli citare ver +citandola citare ver +citandole citare ver +citandoli citare ver +citandolo citare ver +citandomi citare ver +citandone citare ver +citandosi citare ver +citandoti citare ver +citano citare ver +citante citante adj +citanti citante adj +citar citare ver +citarci citare ver +citare citare ver +citareda citaredo nom +citaredi citaredo nom +citaredo citaredo nom +citarista citarista nom +citaristi citarista nom +citaristica citaristica nom +citarla citare ver +citarle citare ver +citarli citare ver +citarlo citare ver +citarmele citare ver +citarmi citare ver +citarne citare ver +citarono citare ver +citarsi citare ver +citartelo citare ver +citarti citare ver +citarveli citare ver +citarvi citare ver +citasse citare ver +citassero citare ver +citassi citare ver +citassimo citare ver +citata citare ver +citate citare ver +citateci citare ver +citatele citare ver +citatemi citare ver +citati citare ver +citato citare ver +citava citare ver +citavano citare ver +citavi citare ver +citavo citare ver +citazione citazione nom +citazioni citazione nom +citerai citare ver +citeranno citare ver +citerea citerea nom +citerebbe citare ver +citerebbero citare ver +citerei citare ver +citeremmo citare ver +citeremo citare ver +citeresti citare ver +citeriore citeriore adj +citerà citare ver +citerò citare ver +citi citare ver +citiamo citare ver +citiamola citare ver +citiamole citare ver +citiate citare ver +citino citare ver +citisi citiso nom +citiso citiso nom +cito citare ver +citochimica citochimica nom +citocromi citocromo nom +citocromo citocromo nom +citofona citofonare ver +citofonando citofonare ver +citofonare citofonare ver +citofonata citofonare ver +citofoni citofono nom +citofono citofono nom +citogenetica citogenetica nom +citogenetiche citogenetica nom +citologia citologia nom +citologica citologico adj +citologiche citologico adj +citologici citologico adj +citologico citologico adj +citologie citologia nom +citologo citologo nom +citomegalovirus citomegalovirus nom +citoplasma citoplasma nom +citoplasmi citoplasma nom +citramontani citramontano adj +citrata citrato adj +citrate citrato adj +citrati citrato adj +citrato citrato adj +citrica citrico adj +citrici citrico adj +citrico citrico adj +citrina citrino adj +citrine citrino adj +citrini citrino adj +citrino citrino adj +citrulli citrullo adj +citrullo citrullo adj +cittadella cittadella nom +cittadelle cittadella nom +cittadina cittadino nom +cittadinanza cittadinanza nom +cittadinanze cittadinanza nom +cittadine cittadino adj +cittadini cittadino nom +cittadino cittadino adj +città città nom +city city nom +citybus citybus nom +citò citare ver +ciuca ciuco nom +ciucca ciucca nom +ciucci ciuccio nom +ciuccia ciucciare ver +ciucciami ciucciare ver +ciucciare ciucciare ver +ciucciarsi ciucciare ver +ciucciateci ciucciare ver +ciucciati ciucciare ver +ciuccino ciucciare ver +ciuccio ciuccio nom +ciuche ciuco nom +ciuchi ciuco nom +ciuco ciuco nom +ciuffi ciuffo nom +ciuffo ciuffo nom +ciurla ciurlare ver +ciurlando ciurlare ver +ciurlante ciurlare ver +ciurlare ciurlare ver +ciurli ciurlare ver +ciurlo ciurlare ver +ciurma ciurma nom +ciurmaglia ciurmaglia nom +ciurme ciurma nom +civaie civaia nom +civet civet nom +civetta civetta nom +civettare civettare ver +civette civetta nom +civetteria civetteria nom +civetterie civetteria nom +civettino civettare ver +civetto civettare ver +civettona civettone nom +civettuola civettuolo adj +civettuole civettuolo adj +civettuolo civettuolo adj +civica civico adj +civiche civico adj +civici civico adj +civico civico adj +civile civile adj +civili civile adj +civilista civilista nom +civilisti civilista nom +civilizzandola civilizzare ver +civilizzare civilizzare ver +civilizzarli civilizzare ver +civilizzarono civilizzare ver +civilizzarsi civilizzare ver +civilizzata civilizzare ver +civilizzate civilizzare ver +civilizzati civilizzare ver +civilizzato civilizzare ver +civilizzatore civilizzatore adj +civilizzatori civilizzatore nom +civilizzatrice civilizzatore adj +civilizzatrici civilizzatore adj +civilizzazione civilizzazione nom +civilizzazioni civilizzazione nom +civilizzò civilizzare ver +civilmente civilmente adv +civiltà civiltà nom +civismo civismo nom +ciò ciò pro +clacson clacson nom +cladoceri cladoceri nom +cladodi cladodio nom +cladodio cladodio nom +clamidata clamidato adj +clamide clamide nom +clamore clamore nom +clamori clamore nom +clamorosa clamoroso adj +clamorosamente clamorosamente adv +clamorose clamoroso adj +clamorosi clamoroso adj +clamoroso clamoroso adj +clan clan nom +clandestina clandestino adj +clandestinamente clandestinamente adv +clandestine clandestino adj +clandestini clandestino adj +clandestinità clandestinità nom +clandestino clandestino adj +clangore clangore nom +clangori clangore nom +claque claque nom +clarinetti clarinetto nom +clarinettista clarinettista nom +clarinettiste clarinettista nom +clarinettisti clarinettista nom +clarinetto clarinetto nom +clarini clarino nom +clarino clarino nom +clarissa clarissa nom +clarisse clarissa nom +classe classe nom +classi classe nom +classiari classiario nom +classica classico adj +classiche classico adj +classicheggiante classicheggiare ver +classicheggianti classicheggiare ver +classici classico adj +classicismi classicismo nom +classicismo classicismo nom +classicista classicista nom +classiciste classicista nom +classicisti classicista nom +classicistica classicistico adj +classicistiche classicistico adj +classicistici classicistico adj +classicistico classicistico adj +classicità classicità nom +classico classico adj +classifica classifica nom +classificabile classificabile adj +classificabili classificabile adj +classificaci classificare ver +classificando classificare ver +classificandola classificare ver +classificandole classificare ver +classificandoli classificare ver +classificandolo classificare ver +classificandosi classificare ver +classificano classificare ver +classificante classificare ver +classificanti classificare ver +classificarci classificare ver +classificare classificare ver +classificarla classificare ver +classificarle classificare ver +classificarli classificare ver +classificarlo classificare ver +classificarmi classificare ver +classificarne classificare ver +classificarono classificare ver +classificarsi classificare ver +classificasse classificare ver +classificassero classificare ver +classificata classificare ver +classificate classificato nom +classificatesi classificare ver +classificati classificato nom +classificato classificato nom +classificatore classificatore nom +classificatori classificatore nom +classificava classificare ver +classificavano classificare ver +classificazione classificazione nom +classificazioni classificazione nom +classifiche classifica nom +classificheranno classificare ver +classificherebbe classificare ver +classificherebbero classificare ver +classificherei classificare ver +classificherà classificare ver +classifichi classificare ver +classifichiamo classificare ver +classifichino classificare ver +classifico classificare ver +classificò classificare ver +classismo classismo nom +classista classista adj +classiste classista adj +classisti classista adj +classistico classistico adj +clastica clastico adj +clastiche clastico adj +clastici clastico adj +clastico clastico adj +claudicando claudicare ver +claudicante claudicante adj +claudicanti claudicante adj +claudicare claudicare ver +claudicazione claudicazione nom +clausola clausola nom +clausole clausola nom +claustrale claustrale adj +claustrali claustrale adj +claustrofobia claustrofobia nom +clausura clausura nom +clava clava nom +clavaria clavaria nom +clave clava nom +clavicembali clavicembalo nom +clavicembalista clavicembalista nom +clavicembalisti clavicembalista nom +clavicembalistica clavicembalistica nom +clavicembalistiche clavicembalistica nom +clavicembalo clavicembalo nom +clavicola clavicola nom +clavicole clavicola nom +clavicordi clavicordo nom +clavicordo clavicordo nom +claxon claxon nom +clearing clearing nom +cleistogama cleistogamo adj +cleistogame cleistogamo adj +cleistogami cleistogamo adj +clematide clematide nom +clematidi clematide nom +clemente clemente adj +clementi clemente adj +clementina clementina nom +clementine clementina nom +clemenza clemenza nom +cleptomane cleptomane adj +cleptomani cleptomane adj +cleptomania cleptomania nom +clergyman clergyman nom +clericale clericale adj +clericali clericale adj +clericalismo clericalismo nom +clero clero nom +clessidra clessidra nom +clessidre clessidra nom +cliché cliché nom +cliente cliente nom +clientela clientela nom +clientelare clientelare adj +clientelari clientelare adj +clientele clientela nom +clientelismi clientelismo nom +clientelismo clientelismo nom +clienti cliente nom +clima clima nom +climaterica climaterico adj +climaterici climaterico adj +climaterico climaterico adj +climaterio climaterio nom +climatica climatico adj +climatiche climatico adj +climatici climatico adj +climatico climatico adj +climatizzare climatizzare ver +climatizzarne climatizzare ver +climatizzata climatizzare ver +climatizzate climatizzare ver +climatizzati climatizzare ver +climatizzato climatizzare ver +climatizzazione climatizzazione nom +climatologia climatologia nom +climatologie climatologia nom +climatoterapia climatoterapia nom +climax climax nom +climi clima nom +cline cline nom +clini cline nom +clinica clinico adj +clinicamente clinicamente adv +cliniche clinico adj +clinici clinico adj +clinico clinico adj +clinker clinker nom +clinometro clinometro nom +clip clip nom +clipeata clipeato adj +clipeate clipeato adj +clipeati clipeato adj +clipeato clipeato adj +clipei clipeo nom +clipeo clipeo nom +clipper clipper nom +clistere clistere nom +clisteri clistere nom +clitoride clitoride nom +clitoridi clitoride nom +clivaggio clivaggio nom +clivi clivo nom +clivia clivia nom +clivo clivo nom +cloaca cloaca nom +cloacale cloacale adj +cloacali cloacale adj +cloache cloaca nom +cloche cloche nom +clonati clonato adj +clone clone nom +cloni clone|clono nom +clono clono nom +cloralio cloralio nom +cloramfenicolo cloramfenicolo nom +clorati clorato nom +clorato clorato nom +clorazione clorazione nom +clorella clorella nom +clori cloro nom +clorica clorico adj +clorico clorico adj +cloridrati cloridrato nom +cloridrato cloridrato nom +cloridrica cloridrico adj +cloridrico cloridrico adj +clorite clorite nom +cloriti clorite nom +cloro cloro nom +cloroficee cloroficee nom +clorofilla clorofilla nom +clorofille clorofilla nom +clorofilliana clorofilliano adj +clorofilliane clorofilliano adj +clorofilliano clorofilliano adj +clorofluorocarburi clorofluorocarburo nom +cloroformio cloroformio nom +cloroformizzato cloroformizzare ver +cloroplasti cloroplasto nom +cloroplasto cloroplasto nom +clorosi clorosi nom +clorotica clorotico adj +clorotiche clorotico adj +clorotici clorotico adj +clorotico clorotico adj +clorurante clorurare ver +clorurata clorurare ver +clorurate clorurare ver +clorurati clorurare ver +clorurato clorurare ver +cloruri cloruro nom +cloruro cloruro nom +clou clou nom +clown clown nom +clownesca clownesco adj +clownesche clownesco adj +clowneschi clownesco adj +clownesco clownesco adj +club club nom +cm cm sw +cmq cmq sw +cn cn sw +coabita coabitare ver +coabitando coabitare ver +coabitano coabitare ver +coabitante coabitare ver +coabitanti coabitare ver +coabitare coabitare ver +coabitarono coabitare ver +coabitato coabitare ver +coabitava coabitare ver +coabitavano coabitare ver +coabitazione coabitazione nom +coabitazioni coabitazione nom +coabitino coabitare ver +coabitò coabitare ver +coacervi coacervo nom +coacervo coacervo nom +coadiutore coadiutore nom +coadiutori coadiutore nom +coadiutrice coadiutore nom +coadiuva coadiuvare ver +coadiuvando coadiuvare ver +coadiuvandoli coadiuvare ver +coadiuvandolo coadiuvare ver +coadiuvano coadiuvare ver +coadiuvante coadiuvante nom +coadiuvanti coadiuvante nom +coadiuvare coadiuvare ver +coadiuvarlo coadiuvare ver +coadiuvarne coadiuvare ver +coadiuvarono coadiuvare ver +coadiuvasse coadiuvare ver +coadiuvassero coadiuvare ver +coadiuvata coadiuvare ver +coadiuvate coadiuvare ver +coadiuvati coadiuvare ver +coadiuvato coadiuvare ver +coadiuvava coadiuvare ver +coadiuvavano coadiuvare ver +coadiuverà coadiuvare ver +coadiuvò coadiuvare ver +coagula coagulare ver +coagulabile coagulabile adj +coagulaci coagulare ver +coagulando coagulare ver +coagulandosi coagulare ver +coagulano coagulare ver +coagulante coagulante adj +coagulanti coagulante nom +coagulare coagulare ver +coagularne coagulare ver +coagularono coagulare ver +coagularsi coagulare ver +coagulasi coagulare ver +coagulasse coagulare ver +coagulata coagulare ver +coagulate coagulare ver +coagulati coagulare ver +coagulato coagulare ver +coagulava coagulare ver +coagulavano coagulare ver +coagulazione coagulazione nom +coagulazioni coagulazione nom +coaguleranno coagulare ver +coagulerà coagulare ver +coaguli coagulo nom +coagulo coagulo nom +coagulò coagulare ver +coalescenza coalescenza nom +coalizione coalizione nom +coalizioni coalizione nom +coalizza coalizzare ver +coalizzando coalizzare ver +coalizzandosi coalizzare ver +coalizzano coalizzare ver +coalizzare coalizzare ver +coalizzarono coalizzare ver +coalizzarsi coalizzare ver +coalizzasse coalizzare ver +coalizzassero coalizzare ver +coalizzata coalizzare ver +coalizzate coalizzare ver +coalizzatesi coalizzare ver +coalizzati coalizzare ver +coalizzato coalizzare ver +coalizzavano coalizzare ver +coalizzeranno coalizzare ver +coalizzino coalizzare ver +coalizzò coalizzare ver +coana coana nom +coane coana nom +coartare coartare ver +coartata coartare ver +coartate coartare ver +coartati coartare ver +coartato coartare ver +coartazione coartazione nom +coartazioni coartazione nom +coassiale coassiale adj +coassiali coassiale adj +coatta coatto adj +coatte coatto adj +coatti coatto adj +coattiva coattivo adj +coattive coattivo adj +coattivi coattivo adj +coattività coattività nom +coattivo coattivo adj +coatto coatto adj +coautore coautore nom +coautori coautore nom +coautrice coautore nom +coautrici coautore nom +coazione coazione nom +coazioni coazione nom +cobalto cobalto nom +cobaltoterapia cobaltoterapia nom +cobelligerante cobelligerante adj +cobelligeranti cobelligerante adj +cobelligeranza cobelligeranza nom +coboldi coboldo nom +coboldo coboldo nom +cobra cobra nom +coca coca nom +cocaina cocaina nom +cocainomane cocainomane nom +cocainomani cocainomane nom +cocca cocca nom +coccarda coccarda nom +coccarde coccarda nom +cocce coccia nom +cocche cocca nom +cocchi cocchio|cocco nom +cocchiere cocchiere nom +cocchieri cocchiere nom +cocchio cocchio nom +cocchiume cocchiume nom +cocci coccio nom +coccia coccia nom +coccidi coccidi nom +coccige coccige nom +coccigea coccigeo adj +coccigee coccigeo adj +coccigei coccigeo adj +coccigeo coccigeo adj +coccinella coccinella nom +coccinelle coccinella nom +cocciniglia cocciniglia nom +cocciniglie cocciniglia nom +coccio coccio nom +cocciuta cocciuto adj +cocciutaggine cocciutaggine nom +cocciuti cocciuto adj +cocciuto cocciuto adj +cocco cocco nom +coccodrilli coccodrillo nom +coccodrillo coccodrillo nom +coccodè coccodè int +coccoina coccoina nom +coccola coccola|coccolo nom +coccolami coccolare ver +coccolando coccolare ver +coccolandola coccolare ver +coccolano coccolare ver +coccolare coccolare ver +coccolarla coccolare ver +coccolarlo coccolare ver +coccolarmi coccolare ver +coccolarsi coccolare ver +coccolata coccolare ver +coccolati coccolare ver +coccolato coccolare ver +coccolavano coccolare ver +coccole coccola|coccolo nom +coccoli coccolo nom +coccolino coccolare ver +coccolo coccolo nom +coccoloni coccoloni adv +cocente cocente adj +cocenti cocente adj +coche coca nom +cocincina cocincina nom +cocker cocker nom +cocktail cocktail nom +coclea coclea nom +coclearia coclearia nom +coclee coclea nom +cocolla cocolla nom +cocomeri cocomero nom +cocomero cocomero nom +cocuzzoli cocuzzolo nom +cocuzzolo cocuzzolo nom +coda coda nom +codarda codardo adj +codarde codardo adj +codardi codardo nom +codardia codardia nom +codardo codardo adj +codazzi codazzo nom +codazzo codazzo nom +code coda nom +codecisione codecisione nom +codeina codeina nom +codeine codeina nom +codesta codesto adj +codeste codesto adj +codesti codesto adj +codesto codesto adj +codi codio nom +codibugnoli codibugnolo nom +codibugnolo codibugnolo nom +codice codice nom +codici codice nom +codicillare codicillare adj +codicilli codicillo nom +codicillo codicillo nom +codifica codifica nom +codificaci codificare ver +codificando codificare ver +codificandola codificare ver +codificandole codificare ver +codificandoli codificare ver +codificandolo codificare ver +codificandone codificare ver +codificandosi codificare ver +codificano codificare ver +codificante codificare ver +codificanti codificare ver +codificare codificare ver +codificarla codificare ver +codificarle codificare ver +codificarli codificare ver +codificarlo codificare ver +codificarono codificare ver +codificarsi codificare ver +codificasse codificare ver +codificassero codificare ver +codificata codificare ver +codificate codificare ver +codificati codificare ver +codificato codificare ver +codificatore codificatore nom +codificatori codificatore nom +codificatrice codificatore nom +codificatrici codificatore nom +codificava codificare ver +codificavano codificare ver +codificazione codificazione nom +codificazioni codificazione nom +codifiche codifica nom +codificheranno codificare ver +codificherebbe codificare ver +codificherà codificare ver +codifichi codificare ver +codifichino codificare ver +codifico codificare ver +codificò codificare ver +codina codino adj +codine codino nom +codini codino nom +codino codino adj +codirosso codirosso nom +codoli codolo nom +codolo codolo nom +codrione codrione nom +coeditore coeditore nom +coeditori coeditore nom +coefficiente coefficiente nom +coefficienti coefficiente nom +coefore coefora nom +coercibile coercibile adj +coercibilità coercibilità nom +coercitiva coercitivo adj +coercitive coercitivo adj +coercitivi coercitivo adj +coercitivo coercitivo adj +coercizione coercizione nom +coercizioni coercizione nom +coerede coerede nom +coeredi coerede nom +coerente coerente adj +coerentemente coerentemente adv +coerenti coerente adj +coerenza coerenza nom +coerenze coerenza nom +coesione coesione nom +coesista coesistere ver +coesistano coesistere ver +coesiste coesistere ver +coesistendo coesistere ver +coesistente coesistente adj +coesistenti coesistente adj +coesistenza coesistenza nom +coesistenze coesistenza nom +coesisteranno coesistere ver +coesistere coesistere ver +coesisterebbe coesistere ver +coesisterebbero coesistere ver +coesistesse coesistere ver +coesistessero coesistere ver +coesisteva coesistere ver +coesistevano coesistere ver +coesistita coesistere ver +coesistite coesistere ver +coesistiti coesistere ver +coesistito coesistere ver +coesistono coesistere ver +coesiva coesivo adj +coesive coesivo adj +coesivi coesivo adj +coesivo coesivo adj +coeso coeso adj +coetanea coetaneo adj +coetanee coetaneo nom +coetanei coetaneo nom +coetaneo coetaneo adj +coeva coevo adj +coeve coevo adj +coevi coevo adj +coevo coevo adj +cofanetti cofanetto nom +cofanetto cofanetto nom +cofani cofano nom +cofano cofano nom +coffa coffa nom +coffe coffa nom +cofinanziamento cofinanziamento nom +cofinanziare cofinanziare ver +cofinanziata cofinanziare ver +cofinanziati cofinanziare ver +cofinanziato cofinanziare ver +cofirmatari cofirmatario adj +cofirmatario cofirmatario adj +cofondatore cofondatore nom +cogenerazione cogenerazione nom +cogente cogente adj +cogenti cogente adj +cogestione cogestione nom +cogitativa cogitativo adj +cogitazioni cogitazione nom +cogli cogliere ver +cogliamo cogliere ver +cogliate cogliere ver +coglie cogliere ver +cogliemmo cogliere ver +cogliendo cogliere ver +cogliendola cogliere ver +cogliendoli cogliere ver +cogliendolo cogliere ver +cogliendomi cogliere ver +cogliendone cogliere ver +cogliendovi cogliere ver +coglier cogliere ver +coglieranno cogliere ver +cogliere cogliere ver +coglierebbe cogliere ver +coglierei cogliere ver +coglieremo cogliere ver +coglierla cogliere ver +coglierle cogliere ver +coglierli cogliere ver +coglierlo cogliere ver +coglierne cogliere ver +cogliersi cogliere ver +cogliervi cogliere ver +coglierà cogliere ver +coglierò cogliere ver +cogliesse cogliere ver +cogliessero cogliere ver +cogliesti cogliere ver +cogliete cogliere ver +coglieva cogliere ver +coglievano cogliere ver +cogline cogliere ver +cogliona coglione adj +coglione coglione adj +coglioni coglione nom +coglitore coglitore nom +cognac cognac nom +cognata cognato nom +cognate cognato nom +cognati cognato nom +cognato cognato nom +cognita cognito adj +cognite cognito adj +cogniti cognito adj +cognitiva cognitivo adj +cognitive cognitivo adj +cognitivi cognitivo adj +cognitivo cognitivo adj +cognito cognito adj +cognizione cognizione nom +cognizioni cognizione nom +cognome cognome nom +cognomi cognome nom +coguari coguaro nom +coguaro coguaro nom +coherer coherer nom +coi col pre +coibentante coibentare ver +coibentare coibentare ver +coibentata coibentare ver +coibentate coibentare ver +coibentati coibentare ver +coibentato coibentare ver +coibente coibente adj +coibenti coibente adj +coibenza coibenza nom +coiffeur coiffeur nom +coincida coincidere ver +coincidano coincidere ver +coincide coincidere ver +coincidendo coincidere ver +coincidente coincidere ver +coincidenti coincidere ver +coincidenza coincidenza nom +coincidenze coincidenza nom +coincideranno coincidere ver +coincidere coincidere ver +coinciderebbe coincidere ver +coinciderebbero coincidere ver +coinciderà coincidere ver +coincidesse coincidere ver +coincidessero coincidere ver +coincideva coincidere ver +coincidevano coincidere ver +coincido coincidere ver +coincidono coincidere ver +coincisa coincidere ver +coincise coincidere ver +coincisero coincidere ver +coincisi coincidere ver +coinciso coincidere ver +coinquilina coinquilino nom +coinquiline coinquilino nom +coinquilini coinquilino nom +coinquilino coinquilino nom +cointeressata cointeressare ver +cointeressati cointeressare ver +cointeressenza cointeressenza nom +cointeressenze cointeressenza nom +coinvolga coinvolgere ver +coinvolgano coinvolgere ver +coinvolge coinvolgere ver +coinvolgendo coinvolgere ver +coinvolgendoci coinvolgere ver +coinvolgendola coinvolgere ver +coinvolgendole coinvolgere ver +coinvolgendoli coinvolgere ver +coinvolgendolo coinvolgere ver +coinvolgendone coinvolgere ver +coinvolgendosi coinvolgere ver +coinvolgendovi coinvolgere ver +coinvolgente coinvolgere ver +coinvolgenti coinvolgere ver +coinvolgeranno coinvolgere ver +coinvolgerci coinvolgere ver +coinvolgere coinvolgere ver +coinvolgerebbe coinvolgere ver +coinvolgerebbero coinvolgere ver +coinvolgerei coinvolgere ver +coinvolgerla coinvolgere ver +coinvolgerle coinvolgere ver +coinvolgerli coinvolgere ver +coinvolgerlo coinvolgere ver +coinvolgermi coinvolgere ver +coinvolgerne coinvolgere ver +coinvolgersi coinvolgere ver +coinvolgervi coinvolgere ver +coinvolgerà coinvolgere ver +coinvolgerò coinvolgere ver +coinvolgesse coinvolgere ver +coinvolgessero coinvolgere ver +coinvolgeva coinvolgere ver +coinvolgevano coinvolgere ver +coinvolgi coinvolgere ver +coinvolgiamo coinvolgere ver +coinvolgimenti coinvolgimento nom +coinvolgimento coinvolgimento nom +coinvolgo coinvolgere ver +coinvolgono coinvolgere ver +coinvolse coinvolgere ver +coinvolsero coinvolgere ver +coinvolta coinvolgere ver +coinvolte coinvolgere ver +coinvolti coinvolgere ver +coinvolto coinvolgere ver +coiti coito nom +coito coito nom +coke coke nom +cokeria cokeria nom +cokerie cokeria nom +col col pre +cola cola nom +colabrodo colabrodo nom +colaci colare ver +colagoghi colagogo nom +colagogo colagogo nom +colai colare ver +colando colare ver +colandogli colare ver +colangite colangite nom +colangiti colangite nom +colano colare ver +colante colare ver +colanti colare ver +colapasta colapasta nom +colar colare ver +colare colare ver +colarmi colare ver +colarono colare ver +colascione colascione nom +colasse colare ver +colassi colare ver +colassù colassù adv +colata colata nom +colate colata nom +colati colare ver +colato colare ver +colatoi colatoio nom +colatoio colatoio nom +colatore colatore nom +colatori colatore nom +colatura colatura nom +colature colatura nom +colava colare ver +colavano colare ver +colavene colare ver +colazione colazione nom +colazioni colazione nom +colbacchi colbacco nom +colbacco colbacco nom +colchici colchico nom +colchicina colchicina nom +colchicine colchicina nom +colchico colchico nom +colcos colcos nom +cole cola nom +colecisti colecisti nom +colecistite colecistite nom +colecistiti colecistite nom +coledoco coledoco nom +colei colei pro +colelitiasi colelitiasi nom +colendissimo colendissimo adj +coleotteri coleottero nom +coleottero coleottero nom +colera colera nom +colerebbe colare ver +coleretica coleretico adj +coleretiche coleretico adj +coleretico coleretico adj +colerica colerico adj +colerici colerico adj +colerosi coleroso nom +colesterina colesterina nom +colesterolo colesterolo nom +colf colf nom +colga cogliere ver +colgano cogliere ver +colgo cogliere ver +colgono cogliere ver +coli colare ver +coliate colare ver +colibacilli colibacillo nom +colibacillo colibacillo nom +colibrì colibrì nom +colica colico adj +coliche colico adj +colici colico adj +colico colico adj +colimbi colimbo nom +colimbo colimbo nom +colina colina nom +coline colina nom +colini colino nom +colino colino nom +colite colite nom +coliti colite nom +colitici colitico nom +coll coll sw +colla col pre +collabora collaborare ver +collaborai collaborare ver +collaborando collaborare ver +collaborandovi collaborare ver +collaborano collaborare ver +collaborante collaborare ver +collaboranti collaborare ver +collaborarci collaborare ver +collaborare collaborare ver +collaborarono collaborare ver +collaborarvi collaborare ver +collaborasse collaborare ver +collaborassero collaborare ver +collaborata collaborare ver +collaborate collaborare ver +collaborati collaborare ver +collaborato collaborare ver +collaboratore collaboratore nom +collaboratori collaboratore nom +collaboratrice collaboratore nom +collaboratrici collaboratore nom +collaborava collaborare ver +collaboravano collaborare ver +collaboravo collaborare ver +collaborazione collaborazione nom +collaborazioni collaborazione nom +collaborazionismo collaborazionismo nom +collaborazionista collaborazionista adj +collaborazioniste collaborazionista adj +collaborazionisti collaborazionista adj +collaborerai collaborare ver +collaboreranno collaborare ver +collaborerebbe collaborare ver +collaborerebbero collaborare ver +collaborerei collaborare ver +collaboreremo collaborare ver +collaborerà collaborare ver +collaborerò collaborare ver +collabori collaborare ver +collaboriamo collaborare ver +collaborino collaborare ver +collaboro collaborare ver +collaborò collaborare ver +collage collage nom +collageni collageno nom +collageno collageno nom +collana collana nom +collane collana nom +collant collant nom +collante collante nom +collanti collante adj +collare collare nom +collaretti collaretto nom +collaretto collaretto nom +collari collare nom +collarini collarino nom +collarino collarino nom +collassi collasso nom +collasso collasso nom +collaterale collaterale adj +collaterali collaterale adj +collauda collaudare ver +collaudando collaudare ver +collaudano collaudare ver +collaudare collaudare ver +collaudarla collaudare ver +collaudarli collaudare ver +collaudarlo collaudare ver +collaudarne collaudare ver +collaudarono collaudare ver +collaudata collaudare ver +collaudate collaudare ver +collaudati collaudare ver +collaudato collaudare ver +collaudatore collaudatore nom +collaudatori collaudatore nom +collaudatrice collaudatore nom +collaudava collaudare ver +collaudi collaudo nom +collaudo collaudo nom +collaudò collaudare ver +collazionando collazionare ver +collazionare collazionare ver +collazionarle collazionare ver +collazionata collazionare ver +collazionate collazionare ver +collazionati collazionare ver +collazionato collazionare ver +collazione collazione nom +collazioni collazione nom +collazionò collazionare ver +colle colla|colle nom +collega collega nom +collegale collegare ver +collegalo collegare ver +collegamenti collegamento nom +collegamento collegamento nom +collegando collegare ver +collegandogli collegare ver +collegandola collegare ver +collegandole collegare ver +collegandoli collegare ver +collegandolo collegare ver +collegandomi collegare ver +collegandone collegare ver +collegandosi collegare ver +collegandovi collegare ver +collegano collegare ver +collegante collegare ver +colleganti collegare ver +colleganza colleganza nom +colleganze colleganza nom +collegarci collegare ver +collegare collegare ver +collegarla collegare ver +collegarle collegare ver +collegarli collegare ver +collegarlo collegare ver +collegarmi collegare ver +collegarne collegare ver +collegarono collegare ver +collegarsi collegare ver +collegarti collegare ver +collegarvi collegare ver +collegasse collegare ver +collegassero collegare ver +collegassi collegare ver +collegata collegare ver +collegate collegare ver +collegati collegare ver +collegato collegare ver +collegava collegare ver +collegavano collegare ver +collegavi collegare ver +collegavo collegare ver +college college nom +colleghe collega nom +collegheranno collegare ver +collegherebbe collegare ver +collegherebbero collegare ver +collegherei collegare ver +collegherà collegare ver +collegherò collegare ver +colleghi collega nom +colleghiamo collegare ver +colleghino collegare ver +collegi collegio nom +collegiale collegiale adj +collegiali collegiale adj +collegialità collegialità nom +collegialmente collegialmente adv +collegiata collegiata nom +collegiate collegiato adj +collegiati collegiato adj +collegiato collegiato adj +collegio collegio nom +collego collegare ver +collegò collegare ver +collenchima collenchima nom +collenchimi collenchima nom +collera collera nom +collere collera nom +collerica collerico adj +colleriche collerico adj +collerici collerico adj +collerico collerico adj +colletta colletta nom +collettame collettame nom +collette colletta nom +colletti colletto nom +collettiva collettivo adj +collettivamente collettivamente adv +collettive collettivo adj +collettivi collettivo adj +collettivismo collettivismo nom +collettivista collettivista adj +collettiviste collettivista adj +collettivisti collettivista adj +collettivistica collettivistico adj +collettivistiche collettivistico adj +collettivistici collettivistico adj +collettivistico collettivistico adj +collettività collettività nom +collettivizzando collettivizzare ver +collettivizzare collettivizzare ver +collettivizzata collettivizzare ver +collettivizzate collettivizzare ver +collettivizzati collettivizzare ver +collettivizzazione collettivizzazione nom +collettivizzazioni collettivizzazione nom +collettivizzò collettivizzare ver +collettivo collettivo adj +colletto colletto nom +collettore collettore nom +collettori collettore nom +collettoria collettoria nom +collettorie collettoria nom +collettrice collettore adj +collettrici collettore adj +colleziona collezionare ver +collezionando collezionare ver +collezionandone collezionare ver +collezionandovi collezionare ver +collezionano collezionare ver +collezionare collezionare ver +collezionarle collezionare ver +collezionarli collezionare ver +collezionarne collezionare ver +collezionarono collezionare ver +collezionarsi collezionare ver +collezionasse collezionare ver +collezionata collezionare ver +collezionate collezionare ver +collezionati collezionare ver +collezionato collezionare ver +collezionava collezionare ver +collezionavano collezionare ver +collezionavo collezionare ver +collezione collezione nom +collezionerà collezionare ver +collezioni collezione nom +collezioniamo collezionare ver +collezionismo collezionismo nom +collezionista collezionista nom +collezionisti collezionista nom +colleziono collezionare ver +collezionò collezionare ver +colli colle|collo nom +collida collidere ver +collidano collidere ver +collide collidere ver +collidendo collidere ver +collidente collidere ver +collidenti collidere ver +collider collidere ver +collideranno collidere ver +collidere collidere ver +colliderebbero collidere ver +colliderà collidere ver +collidesse collidere ver +collidessero collidere ver +collideva collidere ver +collidevano collidere ver +collidine collidere ver +collidono collidere ver +collie collie nom +collier collier nom +colligiana colligiano adj +colligiane colligiano adj +colligiani colligiano adj +colligiano colligiano adj +collima collimare ver +collimando collimare ver +collimano collimare ver +collimante collimare ver +collimanti collimare ver +collimare collimare ver +collimassero collimare ver +collimata collimare ver +collimate collimare ver +collimati collimare ver +collimato collimare ver +collimatore collimatore nom +collimatori collimatore nom +collimava collimare ver +collimavano collimare ver +collimazione collimazione nom +collimerebbe collimare ver +collimi collimare ver +collimino collimare ver +collina collina nom +collinare collinare adj +collinari collinare adj +colline collina nom +collinosa collinoso adj +collinose collinoso adj +collinosi collinoso adj +collinoso collinoso adj +colliri collirio nom +collirio collirio nom +collisa colliso adj +collise colliso adj +collisero collidere ver +collisione collisione nom +collisioni collisione nom +colliso collidere ver +collo collo nom_sup +colloca collocare ver +collocabile collocabile adj +collocabili collocabile adj +collocai collocare ver +collocamenti collocamento nom +collocamento collocamento nom +collocando collocare ver +collocandola collocare ver +collocandole collocare ver +collocandoli collocare ver +collocandolo collocare ver +collocandone collocare ver +collocandosi collocare ver +collocandovi collocare ver +collocano collocare ver +collocarci collocare ver +collocare collocare ver +collocarla collocare ver +collocarle collocare ver +collocarli collocare ver +collocarlo collocare ver +collocarmi collocare ver +collocarne collocare ver +collocarono collocare ver +collocarsi collocare ver +collocarvi collocare ver +collocasse collocare ver +collocassero collocare ver +collocata collocare ver +collocate collocare ver +collocati collocare ver +collocato collocare ver +collocava collocare ver +collocavano collocare ver +collocazione collocazione nom +collocazioni collocazione nom +collocherai collocare ver +collocheranno collocare ver +collocherebbe collocare ver +collocherebbero collocare ver +collocherei collocare ver +collocheresti collocare ver +collocherà collocare ver +collocherò collocare ver +collochi collocare ver +collochiamo collocare ver +collochino collocare ver +colloco collocare ver +collocò collocare ver +collodi collodio nom +collodio collodio nom +colloidale colloidale adj +colloidali colloidale adj +colloide colloide nom +colloidi colloide nom +colloqui colloquio nom +colloquia colloquiare ver +colloquiale colloquiale adj +colloquiali colloquiale adj +colloquiando colloquiare ver +colloquiano colloquiare ver +colloquiare colloquiare ver +colloquiato colloquiare ver +colloquiava colloquiare ver +colloquio colloquio nom +collorosso collorosso nom +collosa colloso adj +collose colloso adj +collosi colloso adj +collosità collosità nom +colloso colloso adj +collotorto collotorto nom +collottola collottola nom +collude colludere ver +colludere colludere ver +colludono colludere ver +collusa colludere ver +colluse colludere ver +collusi colludere ver +collusione collusione nom +collusioni collusione nom +collusivi collusivo adj +collusivo collusivo adj +colluso colludere ver +collutori collutorio nom +collutorio collutorio nom +colluttazione colluttazione nom +colluttazioni colluttazione nom +colluviale colluviale adj +colluviali colluviale adj +colluvie colluvie nom +colma colmo adj +colmando colmare ver +colmandola colmare ver +colmandoli colmare ver +colmandone colmare ver +colmano colmare ver +colmante colmare ver +colmar colmare ver +colmare colmare ver +colmarla colmare ver +colmarle colmare ver +colmarli colmare ver +colmarlo colmare ver +colmarne colmare ver +colmarono colmare ver +colmarsi colmare ver +colmasse colmare ver +colmata colmata nom +colmate colmare ver +colmati colmare ver +colmato colmare ver +colmatura colmatura nom +colmava colmare ver +colmavano colmare ver +colme colmo adj +colmerebbe colmare ver +colmerà colmare ver +colmi colmo adj +colmo colmo nom +colmò colmare ver +colo colare ver +colocasia colocasia nom +colofonia colofonia nom +colofonie colofonia nom +cologaritmo cologaritmo nom +colomba colombo nom +colombacci colombaccio nom +colombaccio colombaccio nom +colombaia colombaia nom +colombaie colombaia nom +colombari colombario nom +colombario colombario nom +colombe colombo nom +colombella colombella nom +colombelle colombella nom +colombi colombo nom +colombiana colombiano adj +colombiane colombiano adj +colombiani colombiano adj +colombiano colombiano adj +colombina colombina nom +colombine colombina nom +colombo colombo nom +colon colon nom +colona colono nom +colone colono nom +coloni colono nom +colonia colonia nom +coloniale coloniale adj +coloniali coloniale adj +colonialismo colonialismo nom +colonialista colonialista adj +colonialiste colonialista adj +colonialisti colonialista nom +colonialistica colonialistico adj +colonialistiche colonialistico adj +colonialistici colonialistico adj +colonialistico colonialistico adj +colonica colonico adj +coloniche colonico adj +colonici colonico adj +colonico colonico adj +colonie colonia nom +colonizza colonizzare ver +colonizzando colonizzare ver +colonizzandola colonizzare ver +colonizzano colonizzare ver +colonizzanti colonizzare ver +colonizzare colonizzare ver +colonizzarla colonizzare ver +colonizzarle colonizzare ver +colonizzarli colonizzare ver +colonizzarlo colonizzare ver +colonizzarne colonizzare ver +colonizzarono colonizzare ver +colonizzassero colonizzare ver +colonizzata colonizzare ver +colonizzate colonizzare ver +colonizzati colonizzare ver +colonizzato colonizzare ver +colonizzava colonizzare ver +colonizzavano colonizzare ver +colonizzazione colonizzazione nom +colonizzazioni colonizzazione nom +colonizzeranno colonizzare ver +colonizzerà colonizzare ver +colonizzò colonizzare ver +colonna colonna nom +colonnali colonnare ver +colonnare colonnare ver +colonnata colonnare ver +colonnate colonnare ver +colonnati colonnato nom +colonnato colonnato nom +colonne colonna nom +colonnelli colonnello nom +colonnello colonnello nom +colonni colonnare ver +colonnina colonnina nom +colonnine colonnina nom +colonnino colonnare ver +colonno colonnare ver +colono colono nom +coloquintide coloquintide nom +color color nom +colora colorare ver +colorale colorare ver +colorami colorare ver +colorando colorare ver +colorandola colorare ver +colorandole colorare ver +colorandoli colorare ver +colorandolo colorare ver +colorandone colorare ver +colorandosi colorare ver +colorano colorare ver +colorante colorante nom +coloranti colorante nom +colorare colorare ver +colorarla colorare ver +colorarle colorare ver +colorarli colorare ver +colorarlo colorare ver +colorarne colorare ver +colorarono colorare ver +colorarsi colorare ver +colorasse colorare ver +colorata colorare ver +colorate colorato adj +colorati colorato adj +colorato colorare ver +colorava colorare ver +coloravano colorare ver +colorazione colorazione nom +colorazioni colorazione nom +colore colore nom +coloreria coloreria nom +colorerà colorare ver +colori colore nom +coloriamo colorare|colorire ver +colorifici colorificio nom +colorificio colorificio nom +colorimetri colorimetro nom +colorimetro colorimetro nom +colorino colorare ver +colorir colorire ver +colorire colorire ver +colorirla colorire ver +colorisce colorire ver +colorismo colorismo nom +colorista colorista nom +coloristi colorista nom +coloristica coloristico adj +coloristiche coloristico adj +coloristici coloristico adj +coloristico coloristico adj +colorita colorito adj +colorite colorito adj +coloriti colorito adj +colorito colorito nom +coloritore coloritore adj +coloritura coloritura nom +coloriture coloritura nom +coloriva colorire ver +colorivano colorire ver +coloro colorare ver_sup +colorì colorire ver +colorò colorare ver +colossale colossale adj +colossali colossale adj +colossi colosso nom +colosso colosso nom +colostro colostro nom +colpa colpa nom +colpe colpa nom +colpendo colpire ver +colpendogli colpire ver +colpendola colpire ver +colpendole colpire ver +colpendoli colpire ver +colpendolo colpire ver +colpendone colpire ver +colpendosi colpire ver +colpevole colpevole adj +colpevolezza colpevolezza nom +colpevolezze colpevolezza nom +colpevoli colpevole adj +colpevolista colpevolista nom +colpevoliste colpevolista nom +colpevolisti colpevolista nom +colpevolizza colpevolizzare ver +colpevolizzando colpevolizzare ver +colpevolizzandolo colpevolizzare ver +colpevolizzano colpevolizzare ver +colpevolizzare colpevolizzare ver +colpevolizzarla colpevolizzare ver +colpevolizzarlo colpevolizzare ver +colpevolizzarsi colpevolizzare ver +colpevolizzata colpevolizzare ver +colpevolizzato colpevolizzare ver +colpevolizzava colpevolizzare ver +colpevolizzò colpevolizzare ver +colpi colpo nom +colpiamo colpire ver +colpii colpire ver +colpirai colpire ver +colpiranno colpire ver +colpirci colpire ver +colpire colpire ver +colpirebbe colpire ver +colpirebbero colpire ver +colpirgli colpire ver +colpirla colpire ver +colpirle colpire ver +colpirli colpire ver +colpirlo colpire ver +colpirmi colpire ver +colpirne colpire ver +colpirono colpire ver +colpirsi colpire ver +colpirti colpire ver +colpirvi colpire ver +colpirà colpire ver +colpirò colpire ver +colpisca colpire ver +colpiscano colpire ver +colpisce colpire ver +colpisci colpire ver +colpiscilo colpire ver +colpiscimi colpire ver +colpiscine colpire ver +colpisco colpire ver +colpiscono colpire ver +colpisse colpire ver +colpissero colpire ver +colpita colpire ver +colpite colpire ver +colpiteli colpire ver +colpitelo colpire ver +colpiti colpire ver +colpito colpire ver +colpiva colpire ver +colpivano colpire ver +colpo colpo nom +colposa colposo adj +colpose colposo adj +colposi colposo adj +colposo colposo adj +colpì colpire ver +colse cogliere ver +colsero cogliere ver +colsi cogliere ver +colta cogliere ver +colte cogliere ver +coltella coltella nom +coltellacci coltellaccio nom +coltellaccio coltellaccio nom +coltellata coltellata nom +coltellate coltellata nom +coltelleria coltelleria nom +coltellerie coltelleria nom +coltelli coltello nom +coltellinai coltellinaio nom +coltellinaio coltellinaio nom +coltello coltello nom +coltellone coltellone nom +coltelloni coltellone nom +colti cogliere ver +coltiva coltivare ver +coltivabile coltivabile adj +coltivabili coltivabile adj +coltivando coltivare ver +coltivandola coltivare ver +coltivandoli coltivare ver +coltivandolo coltivare ver +coltivandone coltivare ver +coltivandovi coltivare ver +coltivano coltivare ver +coltivar coltivare ver +coltivarci coltivare ver +coltivare coltivare ver +coltivarla coltivare ver +coltivarle coltivare ver +coltivarli coltivare ver +coltivarlo coltivare ver +coltivarne coltivare ver +coltivarono coltivare ver +coltivarsi coltivare ver +coltivarvi coltivare ver +coltivasse coltivare ver +coltivassero coltivare ver +coltivata coltivare ver +coltivate coltivato adj +coltivati coltivato adj +coltivato coltivare ver +coltivatore coltivatore nom +coltivatori coltivatore nom +coltivatrice coltivatore nom +coltivatrici coltivatore nom +coltivava coltivare ver +coltivavano coltivare ver +coltivazione coltivazione nom +coltivazioni coltivazione nom +coltive coltivo adj +coltiverai coltivare ver +coltiveranno coltivare ver +coltiverà coltivare ver +coltivi coltivo adj +coltiviamo coltivare ver +coltivino coltivare ver +coltivo coltivo adj +coltivò coltivare ver +colto cogliere ver +coltra coltre nom +coltre coltre nom +coltri coltro nom +coltro coltro nom +coltura coltura nom +colturale colturale adj +colturali colturale adj +colture coltura nom +colubri colubro nom +colubrina colubrina nom +colubrine colubrina nom +colubro colubro nom +colui colui pro +columnist columnist nom +coluro coluro nom +colza colza nom +colze colza nom +colà colà adv +colò colare ver +com com sw +coma coma nom +comanda comandare ver +comandamenti comandamento nom +comandamento comandamento nom +comandami comandare ver +comandando comandare ver +comandandogli comandare ver +comandandoli comandare ver +comandandolo comandare ver +comandandone comandare ver +comandane comandare ver +comandano comandare ver +comandante comandante nom +comandanti comandante nom +comandarci comandare ver +comandare comandare ver +comandargli comandare ver +comandarla comandare ver +comandarle comandare ver +comandarli comandare ver +comandarlo comandare ver +comandarmi comandare ver +comandarne comandare ver +comandarono comandare ver +comandarti comandare ver +comandarvi comandare ver +comandasse comandare ver +comandassero comandare ver +comandata comandare ver +comandate comandare ver +comandati comandare ver +comandato comandare ver +comandava comandare ver +comandavano comandare ver +comandavo comandare ver +comanderai comandare ver +comanderanno comandare ver +comanderebbe comandare ver +comanderete comandare ver +comanderà comandare ver +comanderò comandare ver +comandi comando nom +comandiamo comandare ver +comandino comandare ver +comando comando nom +comandò comandare ver +comare comare nom +comari comare nom +comatosa comatoso adj +comatose comatoso adj +comatosi comatoso adj +comatoso comatoso adj +combacerebbe combaciare ver +combaci combaciare ver +combacia combaciare ver +combaciando combaciare ver +combaciano combaciare ver +combaciante combaciare ver +combacianti combaciare ver +combaciare combaciare ver +combaciasse combaciare ver +combaciassero combaciare ver +combaciatesi combaciare ver +combaciato combaciare ver +combaciava combaciare ver +combaciavano combaciare ver +combacino combaciare ver +combaciò combaciare ver +combatta combattere ver +combattano combattere ver +combatte combattere ver +combattei combattere ver +combattemmo combattere ver +combattendo combattere ver +combattendola combattere ver +combattendoli combattere ver +combattendolo combattere ver +combattendosi combattere ver +combattendovi combattere ver +combattente combattente nom +combattenti combattente nom +combattentismo combattentismo nom +combattentistica combattentistico adj +combattentistiche combattentistico adj +combattentistici combattentistico adj +combattentistico combattentistico adj +combatter combattere ver +combatterai combattere ver +combatteranno combattere ver +combatterci combattere ver +combattere combattere ver +combatterebbe combattere ver +combatterebbero combattere ver +combatterei combattere ver +combatteremmo combattere ver +combatteremo combattere ver +combatterete combattere ver +combatterla combattere ver +combatterle combattere ver +combatterli combattere ver +combatterlo combattere ver +combattermi combattere ver +combatterne combattere ver +combatterono combattere ver +combattersi combattere ver +combattervi combattere ver +combatterà combattere ver +combatterò combattere ver +combattesse combattere ver +combattessero combattere ver +combattete combattere ver +combatteteli combattere ver +combatteva combattere ver +combattevamo combattere ver +combattevano combattere ver +combattevo combattere ver +combatti combattere ver +combattiamo combattere ver +combattili combattere ver +combattimenti combattimento nom +combattimento combattimento nom +combattiva combattivo adj +combattive combattivo adj +combattivi combattivo adj +combattività combattività nom +combattivo combattivo adj +combatto combattere ver +combattono combattere ver +combattuta combattere ver +combattute combattere ver +combattuti combattere ver +combattuto combattere ver +combattè combattere ver +combina combinare ver +combinabile combinabile adj +combinabili combinabile adj +combinaci combinare ver +combinando combinare ver +combinandola combinare ver +combinandole combinare ver +combinandoli combinare ver +combinandolo combinare ver +combinandone combinare ver +combinandosi combinare ver +combinano combinare ver +combinante combinare ver +combinanti combinare ver +combinar combinare ver +combinarci combinare ver +combinare combinare ver +combinargli combinare ver +combinarla combinare ver +combinarle combinare ver +combinarli combinare ver +combinarlo combinare ver +combinarne combinare ver +combinarono combinare ver +combinarsi combinare ver +combinasse combinare ver +combinassero combinare ver +combinata combinata nom +combinate combinare ver +combinati combinare ver +combinato combinare ver +combinatore combinatore nom +combinatori combinatore|combinatorio adj +combinatoria combinatorio adj +combinatorie combinatorio adj +combinatorio combinatorio adj +combinava combinare ver +combinavano combinare ver +combinazione combinazione nom +combinazioni combinazione nom +combine combine nom +combinerai combinare ver +combineranno combinare ver +combinerebbe combinare ver +combinerebbero combinare ver +combinerei combinare ver +combinerà combinare ver +combinerò combinare ver +combini combinare ver +combiniamo combinare ver +combinino combinare ver +combino combinare ver +combinò combinare ver +combriccola combriccola nom +combriccole combriccola nom +comburente comburente adj +comburenti comburente adj +combusta combusto adj +combuste combusto adj +combusti combusto adj +combustibile combustibile nom +combustibili combustibile nom +combustibilità combustibilità nom +combustione combustione nom +combustioni combustione nom +combusto combusto adj +combustore combustore nom +combustori combustore nom +combutta combutta nom +combutte combutta nom +come come pre +comecché comecché con +comedone comedone nom +comedoni comedone nom +cometa cometa nom +comete cometa nom +comfort comfort nom +comica comico adj +comiche comico adj +comici comico adj +comicita comicità nom +comico comico adj +comignoli comignolo nom +comignolo comignolo nom +comincerai cominciare ver +cominceranno cominciare ver +comincerebbe cominciare ver +comincerebbero cominciare ver +comincerei cominciare ver +cominceremmo cominciare ver +cominceremo cominciare ver +cominceresti cominciare ver +comincerete cominciare ver +comincerà cominciare ver +comincerò cominciare ver +cominci cominciare ver +comincia cominciare ver +cominciai cominciare ver +cominciamenti cominciamento nom +cominciamento cominciamento nom +cominciammo cominciare ver +cominciamo cominciare ver +cominciamoci cominciare ver +cominciando cominciare ver +cominciandola cominciare ver +cominciandone cominciare ver +cominciandosi cominciare ver +cominciano cominciare ver +cominciante cominciare ver +comincianti cominciare ver +cominciar cominciare ver +cominciare cominciare ver +cominciarla cominciare ver +cominciarle cominciare ver +cominciarne cominciare ver +cominciarono cominciare ver +cominciarsi cominciare ver +cominciasse cominciare ver +cominciassero cominciare ver +cominciassi cominciare ver +cominciassimo cominciare ver +cominciata cominciare ver +cominciate cominciare ver +cominciati cominciare ver +cominciato cominciare ver +cominciava cominciare ver +cominciavamo cominciare ver +cominciavano cominciare ver +cominciavo cominciare ver +comincino cominciare ver +comincio cominciare ver +cominciò cominciare ver +comini comino nom +comino comino nom +comitale comitale adj +comitali comitale adj +comitati comitato nom +comitato comitato nom +comitiva comitiva nom +comitive comitiva nom +comitologia comitologia nom +comizi comizio nom +comiziale comiziale adj +comiziali comiziale adj +comiziante comiziante nom +comizianti comiziante nom +comizio comizio nom +comma comma nom +commando commando nom +commedia commedia nom +commediante commediante nom +commedianti commediante nom +commedie commedia nom +commediografi commediografo nom +commediografo commediografo nom +commemora commemorare ver +commemorale commemorare ver +commemorando commemorare ver +commemorano commemorare ver +commemorante commemorare ver +commemoranti commemorare ver +commemorarci commemorare ver +commemorare commemorare ver +commemorarli commemorare ver +commemorarlo commemorare ver +commemorarne commemorare ver +commemorarono commemorare ver +commemorarsi commemorare ver +commemorasse commemorare ver +commemorata commemorare ver +commemorate commemorare ver +commemorati commemorare ver +commemorativa commemorativo adj +commemorative commemorativo adj +commemorativi commemorativo adj +commemorativo commemorativo adj +commemorato commemorare ver +commemorava commemorare ver +commemoravano commemorare ver +commemorazione commemorazione nom +commemorazioni commemorazione nom +commemorerebbe commemorare ver +commemorerà commemorare ver +commemori commemorare ver +commemoro commemorare ver +commemorò commemorare ver +commenda commenda nom +commendale commendare ver +commendando commendare ver +commendare commendare ver +commendasi commendare ver +commendata commendare ver +commendatari commendatario nom +commendataria commendatario nom +commendatario commendatario nom +commendatizia commendatizio adj +commendatizie commendatizio adj +commendato commendare ver +commendatore commendatore nom +commendatori commendatore nom +commende commenda nom +commendevole commendevole adj +commendevoli commendevole adj +commendo commendare ver +commensale commensale nom +commensali commensale nom +commensurabile commensurabile adj +commensurabili commensurabile adj +commensurabilità commensurabilità nom +commensurate commensurare ver +commensurati commensurare ver +commenta commentare ver +commentali commentare ver +commentami commentare ver +commentando commentare ver +commentandola commentare ver +commentandole commentare ver +commentandoli commentare ver +commentandolo commentare ver +commentandone commentare ver +commentano commentare ver +commentante commentare ver +commentanti commentare ver +commentar commentare ver +commentare commentare ver +commentari commentario nom +commentario commentario nom +commentarla commentare ver +commentarle commentare ver +commentarli commentare ver +commentarlo commentare ver +commentarne commentare ver +commentarono commentare ver +commentasse commentare ver +commentassero commentare ver +commentata commentare ver +commentate commentare ver +commentati commentare ver +commentato commentare ver +commentatore commentatore nom +commentatori commentatore nom +commentatrice commentatore nom +commentatrici commentatore nom +commentava commentare ver +commentavano commentare ver +commentavo commentare ver +commenterai commentare ver +commenteranno commentare ver +commenterebbe commentare ver +commenterà commentare ver +commenterò commentare ver +commenti commento nom +commentiamo commentare ver +commentino commentare ver +commento commento nom +commentò commentare ver +commerci commercio nom +commercia commerciare ver +commerciabile commerciabile adj +commerciabili commerciabile adj +commerciabilità commerciabilità nom +commerciale commerciale adj +commerciali commerciale adj +commercialista commercialista nom +commercialisti commercialista nom +commercializza commercializzare ver +commercializzabile commercializzabile adj +commercializzabili commercializzabile adj +commercializzando commercializzare ver +commercializzandola commercializzare ver +commercializzandole commercializzare ver +commercializzandoli commercializzare ver +commercializzandolo commercializzare ver +commercializzano commercializzare ver +commercializzante commercializzare ver +commercializzare commercializzare ver +commercializzarla commercializzare ver +commercializzarle commercializzare ver +commercializzarli commercializzare ver +commercializzarlo commercializzare ver +commercializzarne commercializzare ver +commercializzarono commercializzare ver +commercializzasse commercializzare ver +commercializzata commercializzare ver +commercializzate commercializzare ver +commercializzati commercializzare ver +commercializzato commercializzare ver +commercializzava commercializzare ver +commercializzavano commercializzare ver +commercializzazione commercializzazione nom +commercializzazioni commercializzazione nom +commercializzerà commercializzare ver +commercializzi commercializzare ver +commercializzino commercializzare ver +commercializzo commercializzare ver +commercializzò commercializzare ver +commercialmente commercialmente adv +commercialo commerciare ver +commerciamo commerciare ver +commerciando commerciare ver +commerciano commerciare ver +commerciante commerciante nom +commercianti commerciante nom +commerciare commerciare ver +commerciarle commerciare ver +commerciarli commerciare ver +commerciarono commerciare ver +commerciarvi commerciare ver +commerciasse commerciare ver +commerciata commerciare ver +commerciate commerciare ver +commerciati commerciare ver +commerciato commerciare ver +commerciava commerciare ver +commerciavano commerciare ver +commercino commerciare ver +commercio commercio nom +commerciò commerciare ver +commessa commessa|commesso nom +commesse commettere ver +commessi commettere ver +commesso commettere ver +commessura commessura nom +commessure commessura nom +commestibile commestibile adj +commestibili commestibile adj +commetta commettere ver +commettano commettere ver +commette commettere ver +commettendo commettere ver +commettendogli commettere ver +commettendone commettere ver +commettenti commettere ver +commetter commettere ver +commetterai commettere ver +commetteranno commettere ver +commettere commettere ver +commetterebbe commettere ver +commetterei commettere ver +commetteremmo commettere ver +commetteresti commettere ver +commetterli commettere ver +commetterlo commettere ver +commetterne commettere ver +commettersi commettere ver +commetterà commettere ver +commetterò commettere ver +commettesse commettere ver +commettessero commettere ver +commettessi commettere ver +commettessimo commettere ver +commettete commettere ver +commetteva commettere ver +commettevano commettere ver +commettevo commettere ver +commetti commettere ver +commettiamo commettere ver +commettitura commettitura nom +commettiture commettitura nom +commetto commettere ver +commettono commettere ver +commi comma nom +commiati commiato nom +commiato commiato nom +commilitone commilitone nom +commilitoni commilitone nom +commina comminare ver +comminando comminare ver +comminandogli comminare ver +comminano comminare ver +comminare comminare ver +comminargli comminare ver +comminarli comminare ver +comminarmi comminare ver +comminarono comminare ver +comminarsi comminare ver +comminata comminare ver +comminate comminare ver +comminategli comminare ver +comminati comminare ver +comminato comminare ver +comminatoria comminatorio adj +comminava comminare ver +comminavano comminare ver +comminazione comminazione nom +commineranno comminare ver +comminerei comminare ver +commini comminare ver +commino comminare ver +comminuta comminuto adj +comminuzione comminuzione nom +comminò comminare ver +commise commettere ver +commisera commiserare ver +commiserando commiserando adj +commiserare commiserare ver +commiserarsi commiserare ver +commiserata commiserare ver +commiserato commiserare ver +commiserava commiserare ver +commiseravano commiserare ver +commiserazione commiserazione nom +commiserevole commiserevole adj +commisero commiserare ver +commisi commettere ver +commissari commissario nom +commissaria commissariare ver +commissariale commissariale adj +commissariali commissariale adj +commissariamenti commissariamento nom +commissariamento commissariamento nom +commissariare commissariare ver +commissariata commissariare ver +commissariate commissariare ver +commissariati commissariato nom +commissariato commissariato nom +commissario commissario nom +commissariò commissariare ver +commissiona commissionare ver +commissionale commissionare ver +commissionando commissionare ver +commissionandogli commissionare ver +commissionandola commissionare ver +commissionandolo commissionare ver +commissionandone commissionare ver +commissionano commissionare ver +commissionante commissionare ver +commissionare commissionare ver +commissionargli commissionare ver +commissionarglielo commissionare ver +commissionari commissionario nom +commissionaria commissionario nom +commissionarie commissionario nom +commissionario commissionario nom +commissionarla commissionare ver +commissionarle commissionare ver +commissionarli commissionare ver +commissionarlo commissionare ver +commissionarne commissionare ver +commissionarono commissionare ver +commissionasse commissionare ver +commissionassero commissionare ver +commissionata commissionare ver +commissionate commissionare ver +commissionategli commissionare ver +commissionati commissionare ver +commissionato commissionare ver +commissionava commissionare ver +commissionavano commissionare ver +commissione commissione nom +commissioneranno commissionare ver +commissionerà commissionare ver +commissioni commissione nom +commissionino commissionare ver +commissiono commissionare ver +commissionò commissionare ver +commissoria commissorio adj +commissorio commissorio adj +commista commisto adj +commiste commisto adj +commisti commisto adj +commistione commistione nom +commistioni commistione nom +commisto commisto adj +commisurando commisurare ver +commisurare commisurare ver +commisurarsi commisurare ver +commisurata commisurare ver +commisurate commisurare ver +commisurati commisurare ver +commisurato commisurare ver +commisurava commisurare ver +commisurazione commisurazione nom +committente committente nom +committenti committente nom +commodori commodoro nom +commodoro commodoro nom +commossa commuovere ver +commosse commosso adj +commossero commuovere ver +commossi commosso adj +commosso commuovere ver +commovente commovente adj +commoventi commovente adj +commozione commozione nom +commozioni commozione nom +commuova commuovere ver +commuove commuovere ver +commuovendo commuovere ver +commuovendolo commuovere ver +commuovendosi commuovere ver +commuoverci commuovere ver +commuovere commuovere ver +commuoverlo commuovere ver +commuovermi commuovere ver +commuoversi commuovere ver +commuoverà commuovere ver +commuoveva commuovere ver +commuovevo commuovere ver +commuovi commuovere ver +commuovo commuovere ver +commuovono commuovere ver +commuta commutare ver +commutabile commutabile adj +commutabili commutabile adj +commutabilità commutabilità nom +commutaci commutare ver +commutando commutare ver +commutano commutare ver +commutare commutare ver +commutarlo commutare ver +commutata commutare ver +commutate commutare ver +commutati commutare ver +commutativa commutativo adj +commutative commutativo adj +commutativi commutativo adj +commutativo commutativo adj +commutato commutare ver +commutatore commutatore nom +commutatori commutatore nom +commutava commutare ver +commutavano commutare ver +commutazione commutazione nom +commutazioni commutazione nom +commuti commutare ver +commutino commutare ver +commuto commutare ver +commutò commutare ver +comoda comodo adj +comodamente comodamente adv +comodante comodante nom +comodataria comodatario nom +comodatario comodatario nom +comodati comodato nom +comodato comodato nom +comode comodo adj +comodi comodo adj +comodini comodino nom +comodino comodino nom +comodità comodità nom +comodo comodo adj +compact compact nom +compadroni compadrone nom +compaesana compaesano nom +compaesane compaesano nom +compaesani compaesano nom +compagina compaginare ver +compagine compagine nom +compagini compagine nom +compagna compagno nom +compagne compagno nom +compagni compagno nom +compagnia compagnia nom +compagnie compagnia nom +compagno compagno nom +compagnone compagnone nom +compagnoni compagnone nom +compaia comparire ver +compaiano comparire ver +compaio comparire ver +compaiono comparire ver +companatici companatico nom +companatico companatico nom +company company nom +compara comparare ver +comparabile comparabile adj +comparabili comparabile adj +comparabilità comparabilità nom +comparaci comparare ver +comparaggio comparaggio nom +comparando comparare ver +comparandola comparare ver +comparandole comparare ver +comparandoli comparare ver +comparandolo comparare ver +comparandone comparare ver +comparandosi comparare ver +comparano comparare ver +comparar comparare ver +comparare comparare ver +compararla comparare ver +compararle comparare ver +compararli comparare ver +compararlo comparare ver +compararne comparare ver +compararono comparare ver +compararsi comparare ver +comparata comparare ver +comparate comparato adj +comparatele comparare ver +comparati comparato adj +comparatico comparatico nom +comparativa comparativo adj +comparativamente comparativamente adv +comparative comparativo adj +comparativi comparativo adj +comparativo comparativo adj +comparato comparare ver +comparatore comparatore nom +comparatori comparatore nom +comparava comparare ver +comparavano comparare ver +comparazione comparazione nom +comparazioni comparazione nom +compare comparire ver +comparendo comparire ver +comparendogli comparire ver +comparendovi comparire ver +comparente comparire ver +comparenti comparire ver +compareranno comparare ver +compari compare nom +compariamo comparare|comparire ver +comparino comparare ver +comparir comparire ver +compariranno comparire ver +comparire comparire ver +comparirebbe comparire ver +comparirebbero comparire ver +comparirgli comparire ver +comparirmi comparire ver +comparirono comparire ver +comparirvi comparire ver +comparirà comparire ver +comparisse comparire ver +comparissero comparire ver +compariva comparire ver +comparivano comparire ver +comparizione comparizione nom +comparizioni comparizione nom +comparo comparare ver +comparsa comparsa nom +comparse comparsa nom +comparsi comparire ver +comparso comparire ver +compartecipa compartecipare ver +compartecipando compartecipare ver +compartecipano compartecipare ver +compartecipante compartecipare ver +compartecipanti compartecipare ver +compartecipare compartecipare ver +compartecipata compartecipare ver +compartecipato compartecipare ver +compartecipazione compartecipazione nom +compartecipazioni compartecipazione nom +compartecipe compartecipe adj +compartecipi compartecipe adj +compartendo compartire ver +comparti comparto nom +compartimentale compartimentale adj +compartimentali compartimentale adj +compartimentalizzazione compartimentalizzazione nom +compartimentati compartimentare ver +compartimentazione compartimentazione nom +compartimentazioni compartimentazione nom +compartimenti compartimento nom +compartimento compartimento nom +compartir compartire ver +compartire compartire ver +compartita compartire ver +compartite compartire ver +compartito compartire ver +compartiva compartire ver +compartizione compartizione nom +comparto comparto nom +compartì compartire ver +comparve comparire ver +comparò comparare ver +compassata compassato adj +compassate compassato adj +compassati compassato adj +compassato compassare ver +compassi compasso nom +compassionate compassionare ver +compassione compassione nom +compassionevole compassionevole adj +compassionevoli compassionevole adj +compassioni compassione nom +compasso compasso nom +compatendo compatire ver +compatendolo compatire ver +compatendone compatire ver +compatiamo compatire ver +compatibile compatibile adj +compatibili compatibile adj +compatibilità compatibilità nom +compatibilmente compatibilmente adv +compatimento compatimento nom +compatir compatire ver +compatire compatire ver +compatirla compatire ver +compatirlo compatire ver +compatisce compatire ver +compatisco compatire ver +compatiscono compatire ver +compatita compatire ver +compatito compatire ver +compatriota compatriota nom +compatriote compatriota nom +compatrioti compatriota nom +compatroni compatrono nom +compatrono compatrono nom +compatta compatto adj +compattando compattare ver +compattandola compattare ver +compattandole compattare ver +compattandolo compattare ver +compattandosi compattare ver +compattano compattare ver +compattante compattare ver +compattare compattare ver +compattarla compattare ver +compattarli compattare ver +compattarlo compattare ver +compattarono compattare ver +compattarsi compattare ver +compattata compattare ver +compattate compattare ver +compattati compattare ver +compattato compattare ver +compatte compatto adj +compattezza compattezza nom +compatti compatto adj +compattiamo compattare ver +compattino compattare ver +compatto compatto adj +compattò compattare ver +compendi compendio nom +compendia compendiare ver +compendiando compendiare ver +compendiano compendiare ver +compendiare compendiare ver +compendiarsi compendiare ver +compendiata compendiare ver +compendiate compendiare ver +compendiati compendiare ver +compendiato compendiare ver +compendiatore compendiatore nom +compendiava compendiare ver +compendio compendio nom +compendiosa compendioso adj +compendiose compendioso adj +compendiosi compendioso adj +compendioso compendioso adj +compendiò compendiare ver +compenetra compenetrare ver +compenetrando compenetrare ver +compenetrandosi compenetrare ver +compenetrano compenetrare ver +compenetranti compenetrare ver +compenetrare compenetrare ver +compenetrarsi compenetrare ver +compenetrata compenetrare ver +compenetrate compenetrare ver +compenetrati compenetrare ver +compenetrato compenetrare ver +compenetravano compenetrare ver +compenetrazione compenetrazione nom +compenetrazioni compenetrazione nom +compensa compensare ver +compensabile compensabile adj +compensabili compensabile adj +compensaci compensare ver +compensando compensare ver +compensandola compensare ver +compensandole compensare ver +compensandoli compensare ver +compensandolo compensare ver +compensano compensare ver +compensare compensare ver +compensarla compensare ver +compensarle compensare ver +compensarli compensare ver +compensarlo compensare ver +compensarmi compensare ver +compensarne compensare ver +compensarono compensare ver +compensarsi compensare ver +compensasse compensare ver +compensata compensare ver +compensate compensare ver +compensati compensare ver +compensativa compensativa adj +compensative compensativa adj +compensativi compensativa adj +compensativo compensativa adj +compensato compensare ver +compensatore compensatore adj +compensatori compensatore adj +compensatoria compensatorio adj +compensatorie compensatorio adj +compensatorio compensatorio adj +compensatrice compensatore adj +compensatrici compensatore adj +compensava compensare ver +compensavano compensare ver +compensazione compensazione nom +compensazioni compensazione nom +compenseranno compensare ver +compenserebbe compensare ver +compenserebbero compensare ver +compenserà compensare ver +compensi compenso nom +compensiamo compensare ver +compensino compensare ver +compenso compenso nom +compensò compensare ver +compente compire ver +compenti compire ver +compera compera nom +comperai comperare ver +comperando comperare ver +comperano comperare ver +comperar comperare ver +comperare comperare ver +comperargli comperare ver +comperarle comperare ver +comperarli comperare ver +comperarlo comperare ver +comperarono comperare ver +comperarsi comperare ver +comperasse comperare ver +comperata comperare ver +comperate comperare ver +comperati comperare ver +comperato comperare ver +comperava comperare ver +comperavano comperare ver +compere compera nom +compero comperare ver +comperò comperare ver +competa competere ver +competano competere ver +compete competere ver +competendo competere ver +competente competente adj +competenti competente adj +competenza competenza nom +competenze competenza nom +competer competere ver +competeranno competere ver +competere competere ver +competerebbe competere ver +competerebbero competere ver +competergli competere ver +competerle competere ver +competerono competere ver +competervi competere ver +competerà competere ver +competesse competere ver +competessero competere ver +competeva competere ver +competevano competere ver +competi competere ver +competici competere ver +competitiva competitivo adj +competitive competitivo adj +competitivi competitivo adj +competitività competitività nom +competitivo competitivo adj +competitore competitore nom +competitori competitore nom +competitrice competitore nom +competitrici competitore nom +competivi competere ver +competizione competizione nom +competizioni competizione nom +competo competere ver +competono competere ver +competè competere ver +compi compiere ver +compia compiere ver +compiaccia compiacere ver +compiacciano compiacere ver +compiaccio compiacere ver +compiacciono compiacere ver +compiace compiacere ver +compiacendo compiacere ver +compiacendosene compiacere ver +compiacendosi compiacere ver +compiacente compiacente adj +compiacenti compiacente adj +compiacenza compiacenza nom +compiacenze compiacenza nom +compiacer compiacere ver +compiacerci compiacere ver +compiacere compiacere ver +compiacerebbe compiacere ver +compiacerete compiacere ver +compiacerla compiacere ver +compiacerle compiacere ver +compiacerli compiacere ver +compiacerlo compiacere ver +compiacermi compiacere ver +compiacersene compiacere ver +compiacersi compiacere ver +compiacerà compiacere ver +compiacesse compiacere ver +compiaceva compiacere ver +compiacevano compiacere ver +compiacimenti compiacimento nom +compiacimento compiacimento nom +compiaciuta compiacere ver +compiaciute compiacere ver +compiaciuti compiacere ver +compiaciuto compiacere ver +compiacque compiacere ver +compiacquero compiacere ver +compiacqui compiacere ver +compiamo compiere|compire ver +compiange compiangere ver +compiangere compiangere ver +compiangerlo compiangere ver +compiangerne compiangere ver +compiangersi compiangere ver +compiangeva compiangere ver +compiango compiangere ver +compiangono compiangere ver +compiano compiere ver +compianse compiangere ver +compiansero compiangere ver +compianta compianto adj +compianti compiangere ver +compianto compianto nom +compiate compiere|compire ver +compie compiere ver +compiendo compiere ver +compiendone compiere ver +compiendosi compiere ver +compiendovi compiere ver +compier compiere ver +compierci compiere ver +compiere compiere ver +compierla compiere ver +compierle compiere ver +compierli compiere ver +compierlo compiere ver +compierne compiere ver +compiersi compiere ver +compiervi compiere ver +compieta compieta nom +compii compiere|compire ver +compila compilare ver +compilaci compilare ver +compilala compilare ver +compilalo compilare ver +compilando compilare ver +compilandola compilare ver +compilandole compilare ver +compilandoli compilare ver +compilandolo compilare ver +compilandone compilare ver +compilane compilare ver +compilano compilare ver +compilarci compilare ver +compilare compilare ver +compilarla compilare ver +compilarle compilare ver +compilarli compilare ver +compilarlo compilare ver +compilarne compilare ver +compilarono compilare ver +compilarsi compilare ver +compilarti compilare ver +compilasse compilare ver +compilata compilare ver +compilate compilare ver +compilati compilare ver +compilation compilation nom +compilato compilare ver +compilatore compilatore nom +compilatori compilatore nom +compilatrice compilatore nom +compilava compilare ver +compilavano compilare ver +compilavo compilare ver +compilazione compilazione nom +compilazioni compilazione nom +compile compiere ver +compileranno compilare ver +compilerà compilare ver +compilerò compilare ver +compili compilare ver +compiliamo compilare ver +compilino compilare ver +compilo compilare ver +compilò compilare ver +compimenti compimento nom +compimento compimento nom +compio compiere ver +compiono compiere ver +compir compire ver +compirai compiere|compire ver +compiranno compiere|compire ver +compire compire ver +compirebbe compiere|compire ver +compiremo compiere|compire ver +compirete compiere|compire ver +compirono compiere|compire ver +compirsi compire ver +compirà compiere|compire ver +compirò compiere|compire ver +compisse compiere|compire ver +compissero compiere|compire ver +compissi compiere|compire ver +compita compire ver +compitale compitare ver +compitali compitare ver +compitando compitare ver +compitare compitare ver +compitata compitare ver +compitate compitare ver +compitati compitare ver +compitato compitare ver +compitazione compitazione nom +compite compire ver +compiti compito nom +compitino compitare ver +compito compito nom +compitò compitare ver +compiuta compiere ver +compiutamente compiutamente adv +compiute compiere ver +compiutezza compiutezza nom +compiuti compiere ver +compiuto compiere ver +compiva compiere|compire ver +compivano compiere|compire ver +complanare complanare ver +complanata complanare ver +compleanni compleanno nom +compleanno compleanno nom +complementare complementare adj +complementari complementare adj +complementarietà complementarietà nom +complementarità complementarità nom +complementi complemento nom +complemento complemento nom +complessa complesso adj +complessata complessato adj +complessate complessato adj +complessati complessato adj +complessato complessato adj +complessazione complessazione nom +complesse complesso adj +complessi complesso adj +complessione complessione nom +complessioni complessione nom +complessità complessità nom +complessiva complessivo adj +complessivamente complessivamente adv +complessive complessivo adj +complessivi complessivo adj +complessivo complessivo adj +complesso complesso nom +completa completo adj +completai completare ver +completala completare ver +completale completare ver +completalo completare ver +completamene completare ver +completamente completamente adv_sup +completamenti completamento nom +completamento completamento nom +completando completare ver +completandola completare ver +completandole completare ver +completandoli completare ver +completandolo completare ver +completandone completare ver +completandosi completare ver +completandovi completare ver +completano completare ver +completante completare ver +completar completare ver +completare completare ver +completarla completare ver +completarle completare ver +completarli completare ver +completarlo completare ver +completarne completare ver +completarono completare ver +completarsi completare ver +completarvi completare ver +completasse completare ver +completassero completare ver +completassi completare ver +completata completare ver +completate completare ver +completati completare ver +completato completare ver +completava completare ver +completavano completare ver +complete completo adj +completeranno completare ver +completerebbe completare ver +completerebbero completare ver +completerei completare ver +completerete completare ver +completerà completare ver +completerò completare ver +completezza completezza nom +completi completo adj +completiamo completare ver +completino completare ver +completo completo adj +completò completare ver +complica complicare ver +complicando complicare ver +complicandogli complicare ver +complicandone complicare ver +complicandosi complicare ver +complicano complicare ver +complicante complicare ver +complicanti complicare ver +complicanza complicanza nom +complicanze complicanza nom +complicar complicare ver +complicarcela complicare ver +complicarci complicare ver +complicare complicare ver +complicargli complicare ver +complicarla complicare ver +complicarle complicare ver +complicarlo complicare ver +complicarmi complicare ver +complicarne complicare ver +complicarono complicare ver +complicarsi complicare ver +complicarti complicare ver +complicarvi complicare ver +complicasse complicare ver +complicata complicare ver +complicate complicato adj +complicati complicato adj +complicato complicare ver +complicava complicare ver +complicavano complicare ver +complicazione complicazione nom +complicazioni complicazione nom +complice complice nom +complicheranno complicare ver +complicherebbe complicare ver +complicherebbero complicare ver +complicherei complicare ver +complicherà complicare ver +complichi complicare ver +complichiamo complicare ver +complichiamocela complicare ver +complichiamoci complicare ver +complici complice nom +complicità complicità nom +complico complicare ver +complicò complicare ver +complimenta complimentare ver +complimentandomi complimentare ver +complimentandosi complimentare ver +complimentano complimentare ver +complimentarci complimentare ver +complimentare complimentare ver +complimentarmi complimentare ver +complimentarono complimentare ver +complimentarsi complimentare ver +complimentata complimentare ver +complimentati complimentare ver +complimentato complimentare ver +complimentava complimentare ver +complimentavano complimentare ver +complimenterà complimentare ver +complimenti complimento nom +complimento complimento nom +complimentosi complimentoso adj +complimentoso complimentoso adj +complimentò complimentare ver +complotta complottare ver +complottando complottare ver +complottano complottare ver +complottanti complottare ver +complottare complottare ver +complottarono complottare ver +complottasse complottare ver +complottassero complottare ver +complottato complottare ver +complottava complottare ver +complottavano complottare ver +complotteranno complottare ver +complotterà complottare ver +complotti complotto nom +complotto complotto nom +complottò complottare ver +compluvio compluvio nom +compone comporre ver +componemmo comporre ver +componendi componendo nom +componendo comporre ver +componendola comporre ver +componendole comporre ver +componendoli comporre ver +componendolo comporre ver +componendone comporre ver +componendosi comporre ver +componendovi comporre ver +componente componente nom +componenti componente nom +componesse comporre ver +componessero comporre ver +componeva comporre ver +componevano comporre ver +componevo comporre ver +componga comporre ver +compongano comporre ver +compongo comporre ver +compongono comporre ver +componi comporre ver +componiamo comporre ver +componibile componibile adj +componibili componibile adj +componimenti componimento nom +componimento componimento nom +componitore componitore nom +compor comporre ver +comporla comporre ver +comporle comporre ver +comporli comporre ver +comporlo comporre ver +comporne comporre ver +comporranno comporre ver +comporre comporre ver +comporrebbe comporre ver +comporrebbero comporre ver +comporrà comporre ver +comporsi comporre ver +comporta comportare ver +comportamentale comportamentale adj +comportamentali comportamentale adj +comportamenti comportamento nom +comportamentismo comportamentismo nom +comportamento comportamento nom +comportando comportare ver +comportandogli comportare ver +comportandomi comportare ver +comportandone comportare ver +comportandosi comportare ver +comportandoti comportare ver +comportano comportare ver +comportante comportare ver +comportanti comportare ver +comportar comportare ver +comportarci comportare ver +comportare comportare ver +comportarmi comportare ver +comportarne comportare ver +comportarono comportare ver +comportarsi comportare ver +comportarti comportare ver +comportarvi comportare ver +comportasi comportare ver +comportasse comportare ver +comportassero comportare ver +comportassimo comportare ver +comportata comportare ver +comportate comportare ver +comportatevi comportare ver +comportati comportare ver +comportato comportare ver +comportava comportare ver +comportavano comportare ver +comportavi comportare ver +comportavo comportare ver +comportene comporre ver +comporterai comportare ver +comporteranno comportare ver +comporterebbe comportare ver +comporterebbero comportare ver +comporterei comportare ver +comporteremmo comportare ver +comporteremo comportare ver +comportereste comportare ver +comporteresti comportare ver +comporterà comportare ver +comporterò comportare ver +comporti comportare ver +comportiamo comportare ver +comportiamoci comportare ver +comportino comportare ver +comporto comporto nom +comportò comportare ver +comporvi comporre ver +compose comporre ver +composero comporre ver +composi comporre ver +composita composito adj +composite composito adj +compositi composito adj +composito composito adj +compositore compositore nom +compositori compositore nom +compositrice compositore nom +compositrici compositore nom +composizione composizione nom +composizioni composizione nom +compossessori compossessore nom +composta comporre ver +compostaggio compostaggio nom +composte comporre ver +compostezza compostezza nom +composti comporre ver +compostiera compostiera nom +compostiere compostiera nom +composto comporre ver +compra comprare ver +comprabile comprabile adj +comprabili comprabile adj +comprai comprare ver +compralo comprare ver +comprami comprare ver +comprando comprare ver +comprandogli comprare ver +comprandola comprare ver +comprandole comprare ver +comprandoli comprare ver +comprandolo comprare ver +comprandone comprare ver +comprandosi comprare ver +comprano comprare ver +comprar comprare ver +comprarci comprare ver +comprare comprare ver_sup +comprargli comprare ver +comprargliene comprare ver +comprarla comprare ver +comprarle comprare ver +comprarli comprare ver +comprarlo comprare ver +comprarmi comprare ver +comprarne comprare ver +comprarono comprare ver +comprarsene comprare ver +comprarsi comprare ver +comprarti comprare ver +comprarvi comprare ver +comprasi comprare ver +comprasse comprare ver +comprassero comprare ver +comprassi comprare ver +comprata comprare ver +comprate comprare ver +compratela comprare ver +comprateli comprare ver +compratemi comprare ver +compratevi comprare ver +comprati comprare ver +comprato comprare ver +compratore compratore nom +compratori compratore nom +compratrice compratore nom +comprava comprare ver +compravamo comprare ver +compravano comprare ver +compravendita compravendita nom +compravendite compravendita nom +compravenduta compravendere ver +compravenduti compravendere ver +compravenduto compravendere ver +compravi comprare ver +compravo comprare ver +compre compra nom +comprenda comprendere ver +comprendano comprendere ver +comprende comprendere ver +comprendemmo comprendere ver +comprendendo comprendere ver +comprendendoci comprendere ver +comprendendola comprendere ver +comprendendoli comprendere ver +comprendendolo comprendere ver +comprendendone comprendere ver +comprendendosi comprendere ver +comprendendovi comprendere ver +comprendente comprendere ver +comprendenti comprendere ver +comprender comprendere ver +comprenderai comprendere ver +comprenderanno comprendere ver +comprenderci comprendere ver +comprendere comprendere ver +comprenderebbe comprendere ver +comprenderebbero comprendere ver +comprenderei comprendere ver +comprenderemmo comprendere ver +comprenderemo comprendere ver +comprenderesti comprendere ver +comprenderete comprendere ver +comprenderla comprendere ver +comprenderle comprendere ver +comprenderli comprendere ver +comprenderlo comprendere ver +comprendermi comprendere ver +comprenderne comprendere ver +comprendersi comprendere ver +comprenderti comprendere ver +comprendervi comprendere ver +comprenderà comprendere ver +comprenderò comprendere ver +comprendesse comprendere ver +comprendessero comprendere ver +comprendessi comprendere ver +comprendessimo comprendere ver +comprendete comprendere ver +comprendeva comprendere ver +comprendevano comprendere ver +comprendevo comprendere ver +comprendi comprendere ver +comprendiamo comprendere ver +comprendiate comprendere ver +comprendilo comprendere ver +comprendimi comprendere ver +comprendo comprendere ver +comprendonio comprendonio nom +comprendono comprendere ver +comprensibile comprensibile adj +comprensibili comprensibile adj +comprensibilità comprensibilità nom +comprensibilmente comprensibilmente adv +comprensione comprensione nom +comprensioni comprensione nom +comprensiva comprensivo adj +comprensive comprensivo adj +comprensivi comprensivo adj +comprensivo comprensivo adj +comprensori comprensorio nom +comprensorio comprensorio nom +comprerai comprare ver +compreranno comprare ver +comprerebbe comprare ver +comprerebbero comprare ver +comprerei comprare ver +compreremo comprare ver +comprereste comprare ver +compreresti comprare ver +comprerete comprare ver +comprerà comprare ver +comprerò comprare ver +compresa comprendere ver +comprese comprendere ver +compresero comprendere ver +compresi comprendere ver +compreso comprendere ver +compressa compresso adj +compresse compressa nom +compressero comprimere ver +compressi compresso adj +compressibile compressibile adj +compressibili compressibile adj +compressibilità compressibilità nom +compressione compressione nom +compressioni compressione nom +compresso comprimere ver +compressore compressore nom +compressori compressore nom +compri comprare ver +compriamo comprare ver +comprima comprimere ver +comprimano comprimere ver +comprimari comprimario nom +comprimaria comprimario nom +comprimarie comprimario nom +comprimario comprimario nom +comprime comprimere ver +comprimendo comprimere ver +comprimendogli comprimere ver +comprimendola comprimere ver +comprimendole comprimere ver +comprimendoli comprimere ver +comprimendolo comprimere ver +comprimendone comprimere ver +comprimendosi comprimere ver +comprimere comprimere ver +comprimerla comprimere ver +comprimerle comprimere ver +comprimerli comprimere ver +comprimerlo comprimere ver +comprimersi comprimere ver +comprimeva comprimere ver +comprimevano comprimere ver +comprimi comprimere ver +comprimibile comprimibile adj +comprimibili comprimibile adj +comprimo comprimere ver +comprimono comprimere ver +comprino comprare ver +compro comprare ver +compromessa compromettere ver +compromesse compromettere ver +compromessi compromesso nom +compromesso compromesso nom +comprometta compromettere ver +compromettano compromettere ver +compromette compromettere ver +compromettendo compromettere ver +compromettendone compromettere ver +compromettendosi compromettere ver +compromettente compromettente adj +compromettenti compromettente adj +comprometter compromettere ver +comprometteranno compromettere ver +compromettere compromettere ver +comprometterebbe compromettere ver +comprometterebbero compromettere ver +compromettergli compromettere ver +comprometterla compromettere ver +comprometterli compromettere ver +comprometterlo compromettere ver +comprometterne compromettere ver +compromettersi compromettere ver +comprometterà compromettere ver +comprometterò compromettere ver +compromettesse compromettere ver +compromettessero compromettere ver +comprometteva compromettere ver +compromettevano compromettere ver +compromettono compromettere ver +compromise compromettere ver +compromisero compromettere ver +compromissoria compromissorio adj +compromissorie compromissorio adj +compromissorio compromissorio adj +comproprietari comproprietario nom +comproprietaria comproprietario nom +comproprietarie comproprietario nom +comproprietario comproprietario nom +comproprietà comproprietà nom +comprova comprova nom +comprovabile comprovabile adj +comprovabili comprovabile adj +comprovando comprovare ver +comprovandole comprovare ver +comprovano comprovare ver +comprovante comprovare ver +comprovanti comprovare ver +comprovare comprovare ver +comprovarlo comprovare ver +comprovarne comprovare ver +comprovassero comprovare ver +comprovata comprovare ver +comprovate comprovare ver +comprovati comprovare ver +comprovato comprovare ver +comprovava comprovare ver +comprovavano comprovare ver +comproverebbe comprovare ver +comprovi comprovare ver +comprovino comprovare ver +comprovò comprovare ver +comprò comprare ver +comptometer comptometer nom +compulsa compulsare ver +compulsare compulsare ver +compulsato compulsare ver +compulsava compulsare ver +compulsi compulsare ver +compungere compungere ver +compunta compungere ver +compunti compungere ver +compunto compungere ver +compunzione compunzione nom +computa computare ver +computabile computabile adj +computabili computabile adj +computaci computare ver +computando computare ver +computano computare ver +computare computare ver +computarsi computare ver +computassero computare ver +computata computare ver +computate computare ver +computati computare ver +computato computare ver +computavano computare ver +computazione computazione nom +computazioni computazione nom +computer computer nom +computerizzare computerizzare ver +computerizzata computerizzare ver +computerizzate computerizzare ver +computerizzati computerizzare ver +computerizzato computerizzare ver +computerizzazione computerizzazione nom +computi computo nom +computista computista nom +computisteria computisteria nom +computistici computistico adj +computo computo nom +compì compiere|compire ver +comun comune adj +comunale comunale adj +comunali comunale adj +comunanza comunanza nom +comunanze comunanza nom +comunarda comunardo adj +comunarde comunardo adj +comunardi comunardo nom +comunardo comunardo nom +comune comune adj +comunella comunella nom +comunemente comunemente adv +comuni comune nom +comunica comunicare ver +comunicabile comunicabile adj +comunicabili comunicabile adj +comunicabilità comunicabilità nom +comunicaci comunicare ver +comunicai comunicare ver +comunicalo comunicare ver +comunicami comunicare ver +comunicanda comunicando nom +comunicande comunicando nom +comunicandi comunicando nom +comunicando comunicare ver +comunicandogli comunicare ver +comunicandoglielo comunicare ver +comunicandole comunicare ver +comunicandolo comunicare ver +comunicandone comunicare ver +comunicandosi comunicare ver +comunicano comunicare ver +comunicante comunicante adj +comunicanti comunicante adj +comunicar comunicare ver +comunicarcelo comunicare ver +comunicarci comunicare ver +comunicare comunicare ver +comunicargli comunicare ver +comunicarglielo comunicare ver +comunicarla comunicare ver +comunicarle comunicare ver +comunicarli comunicare ver +comunicarlo comunicare ver +comunicarmeli comunicare ver +comunicarmelo comunicare ver +comunicarmi comunicare ver +comunicarne comunicare ver +comunicarono comunicare ver +comunicarsi comunicare ver +comunicarti comunicare ver +comunicarvelo comunicare ver +comunicarvi comunicare ver +comunicasse comunicare ver +comunicassero comunicare ver +comunicata comunicare ver +comunicate comunicare ver +comunicategli comunicare ver +comunicatelo comunicare ver +comunicati comunicato adj +comunicativa comunicativo adj +comunicative comunicativo adj +comunicativi comunicativo adj +comunicativo comunicativo adj +comunicato comunicare ver +comunicatore comunicatore nom +comunicava comunicare ver +comunicavano comunicare ver +comunicazione comunicazione nom +comunicazioni comunicazione nom +comunicheranno comunicare ver +comunicherebbe comunicare ver +comunicheremo comunicare ver +comunicherà comunicare ver +comunicherò comunicare ver +comunichi comunicare ver +comunichiamo comunicare ver +comunichino comunicare ver +comunico comunicare ver +comunicò comunicare ver +comunione comunione nom +comunioni comunione nom +comunismi comunismo nom +comunismo comunismo nom +comunista comunista adj +comuniste comunista adj +comunisti comunista nom +comunistica comunistico adj +comunistiche comunistico adj +comunistici comunistico adj +comunistico comunistico adj +comunitari comunitario adj +comunitaria comunitario adj +comunitarie comunitario adj +comunitario comunitario adj +comunitarizzazione comunitarizzazione nom +comunità comunità nom +comunque comunque adv_sup +comò comò nom +con con pre +conati conato nom +conato conato nom +conca conca nom +concatena concatenare ver +concatenamenti concatenamento nom +concatenamento concatenamento nom +concatenando concatenare ver +concatenandole concatenare ver +concatenandosi concatenare ver +concatenano concatenare ver +concatenante concatenare ver +concatenare concatenare ver +concatenarle concatenare ver +concatenarsi concatenare ver +concatenata concatenare ver +concatenate concatenare ver +concatenati concatenare ver +concatenato concatenare ver +concatenazione concatenazione nom +concatenazioni concatenazione nom +concatenò concatenare ver +concausa concausa nom +concause concausa nom +concava concavo adj +concave concavo adj +concavi concavo adj +concavità concavità nom +concavo concavo adj +conce concia nom +conceda concedere ver +concedano concedere ver +concede concedere ver +concedemmo concedere ver +concedendo concedere ver +concedendoci concedere ver +concedendogli concedere ver +concedendola concedere ver +concedendole concedere ver +concedendoli concedere ver +concedendolo concedere ver +concedendone concedere ver +concedendosi concedere ver +concedente concedere ver +concedenti concedere ver +conceder concedere ver +concederai concedere ver +concederanno concedere ver +concedercela concedere ver +concederci concedere ver +concedere concedere ver +concederebbe concedere ver +concederei concedere ver +concederemo concedere ver +concederete concedere ver +concedergli concedere ver +concedergliela concedere ver +concedergliele concedere ver +concederglielo concedere ver +concederla concedere ver +concederle concedere ver +concederli concedere ver +concederlo concedere ver +concedermelo concedere ver +concedermi concedere ver +concederne concedere ver +concedersi concedere ver +concederti concedere ver +concedervi concedere ver +concederà concedere ver +concederò concedere ver +concedesse concedere ver +concedessero concedere ver +concedete concedere ver +concedetemelo concedere ver +concedetemi concedere ver +concedeva concedere ver +concedevano concedere ver +concedi concedere ver +concediamo concedere ver +concediate concedere ver +concedigli concedere ver +concedilo concedere ver +concedimelo concedere ver +concedimi concedere ver +concediti concedere ver +concedo concedere ver +concedono concedere ver +concenti concento nom +concento concento nom +concentra concentrare ver +concentraci concentrare ver +concentrale concentrare ver +concentramenti concentramento nom +concentramento concentramento nom +concentrammo concentrare ver +concentrando concentrare ver +concentrandoci concentrare ver +concentrandola concentrare ver +concentrandole concentrare ver +concentrandoli concentrare ver +concentrandolo concentrare ver +concentrandomi concentrare ver +concentrandone concentrare ver +concentrandosi concentrare ver +concentrandovi concentrare ver +concentrano concentrare ver +concentrante concentrare ver +concentrarci concentrare ver +concentrare concentrare ver +concentrarla concentrare ver +concentrarle concentrare ver +concentrarli concentrare ver +concentrarlo concentrare ver +concentrarmi concentrare ver +concentrarne concentrare ver +concentrarono concentrare ver +concentrarsi concentrare ver +concentrarti concentrare ver +concentrarvi concentrare ver +concentrasi concentrare ver +concentrasse concentrare ver +concentrassero concentrare ver +concentrassimo concentrare ver +concentrata concentrare ver +concentrate concentrare ver +concentratesi concentrare ver +concentratevi concentrare ver +concentrati concentrare ver +concentrato concentrare ver +concentrava concentrare ver +concentravano concentrare ver +concentrazione concentrazione nom +concentrazioni concentrazione nom +concentreranno concentrare ver +concentrerebbe concentrare ver +concentrerei concentrare ver +concentreremo concentrare ver +concentrerà concentrare ver +concentrerò concentrare ver +concentri concentrare ver +concentriamo concentrare ver +concentriamoci concentrare ver +concentrica concentrico adj +concentriche concentrico adj +concentrici concentrico adj +concentricità concentricità nom +concentrico concentrico adj +concentrino concentrare ver +concentro concentrare ver +concentrò concentrare ver +concependo concepire ver +concependola concepire ver +concependoli concepire ver +concependolo concepire ver +concepiamo concepire ver +concepibile concepibile adj +concepibili concepibile adj +concepii concepire ver +concepimenti concepimento nom +concepimento concepimento nom +concepirai concepire ver +concepiranno concepire ver +concepire concepire ver +concepirla concepire ver +concepirle concepire ver +concepirli concepire ver +concepirlo concepire ver +concepirne concepire ver +concepirono concepire ver +concepirsi concepire ver +concepirà concepire ver +concepisca concepire ver +concepiscano concepire ver +concepisce concepire ver +concepisci concepire ver +concepisco concepire ver +concepiscono concepire ver +concepisse concepire ver +concepissero concepire ver +concepissimo concepire ver +concepita concepire ver +concepite concepire ver +concepiti concepire ver +concepito concepire ver +concepiva concepire ver +concepivano concepire ver +concepivo concepire ver +concepì concepire ver +conceria conceria nom +concerie conceria nom +concerna concernere ver +concernano concernere ver +concerne concernere ver +concernendo concernere ver +concernente concernere ver +concernenti concernere ver +concernere concernere ver +concernesse concernere ver +concernete concernere ver +concerneva concernere ver +concernevano concernere ver +concerni concernere ver +concernono concernere ver +concerta concertare ver +concertaci concertare ver +concertale concertare ver +concertando concertare ver +concertano concertare ver +concertante concertare ver +concertanti concertare ver +concertar concertare ver +concertare concertare ver +concertarono concertare ver +concertarsi concertare ver +concertata concertare ver +concertate concertato adj +concertati concertato adj +concertato concertare ver +concertatore concertatore adj +concertatori concertatore adj +concertazione concertazione nom +concertazioni concertazione nom +concerteranno concertare ver +concerti concerto nom +concertino concertare ver +concertista concertista nom +concertisti concertista nom +concertistica concertistico adj +concertistiche concertistico adj +concertistici concertistico adj +concertistico concertistico adj +concerto concerto nom +concertò concertare ver +concessa concedere ver +concesse concedere ver +concessero concedere ver +concessi concedere ver +concessile concedere ver +concessionari concessionario nom +concessionaria concessionario adj +concessionarie concessionario adj +concessionario concessionario nom +concessione concessione nom +concessioni concessione nom +concessiva concessivo adj +concessive concessivo adj +concessivi concessivo adj +concessivo concessivo adj +concesso concedere ver +concessore concessore nom +concessori concessore nom +concetti concetto nom +concettismi concettismo nom +concettismo concettismo nom +concetto concetto nom +concettosa concettoso adj +concettosi concettoso adj +concettosità concettosità nom +concettoso concettoso adj +concettuale concettuale adj +concettuali concettuale adj +concettualizzazione concettualizzazione nom +concezionale concezionale adj +concezionali concezionale adj +concezione concezione nom +concezioni concezione nom +conche conca nom +conchifera conchifero adj +conchiferi conchifero adj +conchiglia conchiglia nom +conchiglie conchiglia nom +conchigliologia conchigliologia nom +conchiude conchiudere ver +conchiudere conchiudere ver +conchiudersi conchiudere ver +conchiudono conchiudere ver +conchiusa conchiudere ver +conchiuse conchiudere ver +conchiusi conchiudere ver +conchiuso conchiudere ver +conci concio nom +concia concia nom +conciando conciare ver +conciano conciare ver +conciante conciante nom +concianti conciare ver +conciare conciare ver +conciari conciario nom +conciario conciario nom +conciarli conciare ver +conciarono conciare ver +conciata conciare ver +conciate conciare ver +conciati conciare ver +conciato conciare ver +conciatore conciatore nom +conciatori conciatore nom +conciatura conciatura nom +concili concilio nom +concilia conciliare ver +conciliabile conciliabile adj +conciliabili conciliabile adj +conciliabilità conciliabilità nom +conciliaboli conciliabolo nom +conciliabolo conciliabolo nom +conciliaci conciliare ver +conciliando conciliare ver +conciliandola conciliare ver +conciliano conciliare ver +conciliante conciliante adj +concilianti conciliante adj +conciliar conciliare ver +conciliare conciliare ver +conciliargli conciliare ver +conciliarla conciliare ver +conciliarle conciliare ver +conciliarli conciliare ver +conciliarlo conciliare ver +conciliarono conciliare ver +conciliarsi conciliare ver +conciliasse conciliare ver +conciliata conciliare ver +conciliate conciliare ver +conciliati conciliare ver +conciliativa conciliativo adj +conciliative conciliativo adj +conciliativi conciliativo adj +conciliativo conciliativo adj +conciliato conciliare ver +conciliatore conciliatore nom +conciliatori conciliatore|conciliatorio adj +conciliatoria conciliatorio adj +conciliatorie conciliatorio adj +conciliatorio conciliatorio adj +conciliatrice conciliatore adj +conciliatrici conciliatore adj +conciliava conciliare ver +conciliavano conciliare ver +conciliazione conciliazione nom +conciliazioni conciliazione nom +concilierebbe conciliare ver +concilii concilio nom +concilino conciliare ver +concilio concilio nom +conciliò conciliare ver +concima concimare ver +concimaia concimaia nom +concimaie concimaia nom +concimando concimare ver +concimano concimare ver +concimanti concimare ver +concimare concimare ver +concimata concimare ver +concimate concimare ver +concimati concimare ver +concimato concimare ver +concimatura concimatura nom +concimava concimare ver +concimazione concimazione nom +concimazioni concimazione nom +concime concime nom +concimi concime nom +concino conciare ver +concio concio nom +concione concione nom +concioni concionare ver +conciossiaché conciossiaché con +concisa conciso adj +concise conciso adj +concisi conciso adj +concisione concisione nom +conciso conciso adj +concistori concistoro nom +concistoriale concistoriale adj +concistoriali concistoriale adj +concistoro concistoro nom +concita concitare ver +concitante concitare ver +concitata concitato adj +concitatamente concitatamente adv +concitate concitato adj +concitati concitato adj +concitato concitato adj +concitazione concitazione nom +concitazioni concitazione nom +concittadina concittadino nom +concittadine concittadino nom +concittadini concittadino nom +concittadino concittadino nom +concitò concitare ver +conclama conclamare ver +conclamando conclamare ver +conclamare conclamare ver +conclamata conclamare ver +conclamate conclamare ver +conclamati conclamare ver +conclamato conclamare ver +conclamerà conclamare ver +conclave conclave nom +conclavi conclave nom +conclavista conclavista nom +conclavisti conclavista nom +concluda concludere ver +concludano concludere ver +conclude concludere ver +concludendo concludere ver +concludendola concludere ver +concludendole concludere ver +concludendoli concludere ver +concludendolo concludere ver +concludendone concludere ver +concludendosi concludere ver +concludendovi concludere ver +concludente concludente adj +concludenti concludente adj +concluder concludere ver +concluderai concludere ver +concluderanno concludere ver +concluderci concludere ver +concludere concludere ver +concluderebbe concludere ver +concluderebbero concludere ver +concluderei concludere ver +concluderemo concludere ver +concluderla concludere ver +concluderle concludere ver +concluderli concludere ver +concluderlo concludere ver +concluderne concludere ver +concludersi concludere ver +concludervi concludere ver +concluderà concludere ver +concluderò concludere ver +concludesse concludere ver +concludessero concludere ver +concludessi concludere ver +concludete concludere ver +concludeva concludere ver +concludevano concludere ver +concludevo concludere ver +concludi concludere ver +concludiamo concludere ver +concludo concludere ver +concludono concludere ver +conclusa concludere ver +conclusasi concludere ver +concluse concludere ver +conclusero concludere ver +conclusesi concludere ver +conclusi concludere ver +conclusionali conclusionale adj +conclusione conclusione nom +conclusioni conclusione nom +conclusiva conclusivo adj +conclusive conclusivo adj +conclusivi conclusivo adj +conclusivo conclusivo adj +concluso concludere ver +conclusosi concludere ver +concoide concoide adj +concoidi concoide adj +concomitante concomitante adj +concomitanti concomitante adj +concomitanza concomitanza nom +concomitanze concomitanza nom +concorda concordare ver +concordando concordare ver +concordandola concordare ver +concordandosi concordare ver +concordano concordare ver +concordante concordare ver +concordanti concordare ver +concordanza concordanza nom +concordanze concordanza nom +concordare concordare ver +concordarlo concordare ver +concordarne concordare ver +concordarono concordare ver +concordarsi concordare ver +concordarvi concordare ver +concordasse concordare ver +concordassero concordare ver +concordassi concordare ver +concordata concordare ver +concordataria concordatario adj +concordatario concordatario adj +concordate concordato adj +concordati concordato adj +concordato concordato nom +concordava concordare ver +concordavano concordare ver +concordavi concordare ver +concordavo concordare ver +concorde concorde adj +concorderai concordare ver +concorderanno concordare ver +concorderebbe concordare ver +concorderebbero concordare ver +concorderei concordare ver +concorderemo concordare ver +concorderete concordare ver +concorderà concordare ver +concordi concorde adj +concordia concordia nom +concordiamo concordare ver +concordiate concordare ver +concordino concordare ver +concordo concordare ver +concordò concordare ver +concorra concorrere ver +concorrano concorrere ver +concorre concorrere ver +concorrendo concorrere ver +concorrendovi concorrere ver +concorrente concorrente nom +concorrenti concorrente nom +concorrenza concorrenza nom +concorrenze concorrenza nom +concorrenziale concorrenziale adj +concorrenziali concorrenziale adj +concorrenzialità concorrenzialità nom +concorreranno concorrere ver +concorrere concorrere ver +concorrerebbe concorrere ver +concorrervi concorrere ver +concorrerà concorrere ver +concorrerò concorrere ver +concorresse concorrere ver +concorressero concorrere ver +concorrete concorrere ver +concorreva concorrere ver +concorrevano concorrere ver +concorro concorrere ver +concorrono concorrere ver +concorse concorrere ver +concorsero concorrere ver +concorsi concorrere ver +concorso concorso nom +concrea concreare ver +concreata concreare ver +concreta concreto adj +concretamente concretamente adv +concretano concretare ver +concretar concretare ver +concretare concretare ver +concretarono concretare ver +concretarsi concretare ver +concretata concretare ver +concretate concretare ver +concretatesi concretare ver +concretato concretare ver +concretava concretare ver +concrete concreto adj +concreterebbe concretare ver +concretezza concretezza nom +concreti concreto adj +concretino concretare ver +concretizza concretizzare ver +concretizzando concretizzare ver +concretizzandosi concretizzare ver +concretizzano concretizzare ver +concretizzare concretizzare ver +concretizzarla concretizzare ver +concretizzarli concretizzare ver +concretizzarlo concretizzare ver +concretizzarne concretizzare ver +concretizzarono concretizzare ver +concretizzarsi concretizzare ver +concretizzasse concretizzare ver +concretizzassero concretizzare ver +concretizzata concretizzare ver +concretizzate concretizzare ver +concretizzatesi concretizzare ver +concretizzati concretizzare ver +concretizzato concretizzare ver +concretizzava concretizzare ver +concretizzavano concretizzare ver +concretizzazione concretizzazione nom +concretizzeranno concretizzare ver +concretizzerebbe concretizzare ver +concretizzerà concretizzare ver +concretizzi concretizzare ver +concretizziamo concretizzare ver +concretizzino concretizzare ver +concretizzo concretizzare ver +concretizzò concretizzare ver +concreto concreto adj +concretò concretare ver +concrezione concrezione nom +concrezioni concrezione nom +concubina concubina nom +concubinari concubinario adj +concubinario concubinario adj +concubinato concubinato nom +concubine concubina nom +concubini concubino nom +concubino concubino nom +conculca conculcare ver +conculcando conculcare ver +conculcare conculcare ver +conculcata conculcare ver +conculcate conculcare ver +conculcati conculcare ver +conculcato conculcare ver +concupire concupire ver +concupirla concupire ver +concupisce concupire ver +concupiscenza concupiscenza nom +concupiscenze concupiscenza nom +concupita concupire ver +concupito concupire ver +concussione concussione nom +concussioni concussione nom +condanna condanna nom +condannabile condannabile adj +condannabili condannabile adj +condannami condannare ver +condannando condannare ver +condannandoci condannare ver +condannandola condannare ver +condannandole condannare ver +condannandoli condannare ver +condannandolo condannare ver +condannandone condannare ver +condannandosi condannare ver +condannano condannare ver +condannante condannare ver +condannanti condannare ver +condannare condannare ver +condannarla condannare ver +condannarle condannare ver +condannarli condannare ver +condannarlo condannare ver +condannarmi condannare ver +condannarne condannare ver +condannarono condannare ver +condannarsi condannare ver +condannasse condannare ver +condannassero condannare ver +condannata condannare ver +condannate condannare ver +condannatelo condannare ver +condannatemi condannare ver +condannati condannare ver +condannato condannare ver +condannava condannare ver +condannavano condannare ver +condanne condanna nom +condanneranno condannare ver +condannerebbe condannare ver +condannerebbero condannare ver +condannerei condannare ver +condannerà condannare ver +condanni condannare ver +condanniamo condannare ver +condannino condannare ver +condanno condannare ver +condannò condannare ver +condebitore condebitore nom +condebitori condebitore nom +condendo condire ver +condendola condire ver +condendole condire ver +condendoli condire ver +condendolo condire ver +condensa condensa nom +condensabile condensabile adj +condensabili condensabile adj +condensaci condensare ver +condensamento condensamento nom +condensando condensare ver +condensandola condensare ver +condensandoli condensare ver +condensandolo condensare ver +condensandone condensare ver +condensandosi condensare ver +condensano condensare ver +condensante condensare ver +condensanti condensare ver +condensare condensare ver +condensarono condensare ver +condensarsi condensare ver +condensata condensato adj +condensate condensato adj +condensati condensare ver +condensato condensare ver +condensatore condensatore nom +condensatori condensatore nom +condensatrice condensatore nom +condensava condensare ver +condensavano condensare ver +condensazione condensazione nom +condensazioni condensazione nom +condense condensa nom +condenseranno condensare ver +condenserebbero condensare ver +condenserà condensare ver +condensi condensare ver +condensino condensare ver +condenso condensare ver +condensò condensare ver +condili condilo nom +condilo condilo nom +condimenti condimento nom +condimento condimento nom +condirai condire ver +condire condire ver +condirettore condirettore nom +condirettori condirettore nom +condirettrice condirettore nom +condirla condire ver +condirle condire ver +condirli condire ver +condirlo condire ver +condirà condire ver +condisce condire ver +condiscendente condiscendente adj +condiscendenti condiscendente adj +condiscendenza condiscendenza nom +condiscepoli condiscepolo nom +condiscepolo condiscepolo nom +condiscono condire ver +condissero condire ver +condita condire ver +condite condire ver +conditi condire ver +condito condire ver +condiva condire ver +condivano condire ver +condivi condire ver +condivida condividere ver +condividano condividere ver +condivide condividere ver +condividemmo condividere ver +condividendo condividere ver +condividendola condividere ver +condividendole condividere ver +condividendoli condividere ver +condividendolo condividere ver +condividendone condividere ver +condividente condividere ver +condividenti condividere ver +condivider condividere ver +condividerai condividere ver +condivideranno condividere ver +condividere condividere ver +condividerebbe condividere ver +condividerebbero condividere ver +condividerei condividere ver +condividerla condividere ver +condividerle condividere ver +condividerli condividere ver +condividerlo condividere ver +condividerne condividere ver +condividerà condividere ver +condividesse condividere ver +condividessero condividere ver +condividessi condividere ver +condividessimo condividere ver +condividete condividere ver +condivideva condividere ver +condividevano condividere ver +condividevi condividere ver +condividevo condividere ver +condividi condividere ver +condividiamo condividere ver +condividimi condividere ver +condivido condividere ver +condividono condividere ver +condivisa condividere ver +condivise condividere ver +condivisero condividere ver +condivisi condividere ver +condivisibile condivisibile adj +condivisione condivisione nom +condivisioni condivisione nom +condiviso condividere ver +condiziona condizionare ver +condizionale condizionale adj +condizionali condizionale adj +condizionalità condizionalità nom +condizionamenti condizionamento nom +condizionamento condizionamento nom +condizionando condizionare ver +condizionandola condizionare ver +condizionandole condizionare ver +condizionandolo condizionare ver +condizionandone condizionare ver +condizionano condizionare ver +condizionante condizionare ver +condizionanti condizionare ver +condizionarci condizionare ver +condizionare condizionare ver +condizionarla condizionare ver +condizionarle condizionare ver +condizionarli condizionare ver +condizionarlo condizionare ver +condizionarne condizionare ver +condizionarono condizionare ver +condizionasse condizionare ver +condizionassero condizionare ver +condizionata condizionare ver +condizionatamente condizionatamente adv +condizionate condizionare ver +condizionati condizionare ver +condizionato condizionare ver +condizionatore condizionatore nom +condizionatori condizionatore nom +condizionava condizionare ver +condizionavano condizionare ver +condizione condizione nom +condizioneranno condizionare ver +condizionerebbe condizionare ver +condizionerà condizionare ver +condizioni condizione nom +condizionino condizionare ver +condiziono condizionare ver +condizionò condizionare ver +condoglianza condoglianza nom +condoglianze condoglianza nom +condomini condominio nom +condominiale condominiale adj +condominiali condominiale adj +condominio condominio nom +condona condonare ver +condonabile condonabile adj +condonando condonare ver +condonare condonare ver +condonasse condonare ver +condonata condonare ver +condonate condonare ver +condonati condonare ver +condonato condonare ver +condonava condonare ver +condoni condono nom +condoniamo condonare ver +condono condono nom +condonò condonare ver +condor condor nom +condotta condurre ver +condotte condurre ver +condotti condurre ver +condottiera condottiero nom +condottiere condottiero nom +condottieri condottiero nom +condottiero condottiero nom +condotto condurre ver +condrioma condrioma nom +conduca condurre ver +conducano condurre ver +conduce condurre ver +conducemmo condurre ver +conducendo condurre ver +conducendoci condurre ver +conducendola condurre ver +conducendole condurre ver +conducendoli condurre ver +conducendolo condurre ver +conducendone condurre ver +conducendovi condurre ver +conducente conducente nom +conducenti conducente nom +conducesse condurre ver +conducessero condurre ver +conducessi condurre ver +conducete condurre ver +conducetelo condurre ver +conduceva condurre ver +conducevano condurre ver +conducevo condurre ver +conduci condurre ver +conduciamo condurre ver +conducibile conducibile adj +conducibili conducibile adj +conducibilità conducibilità nom +conducilo condurre ver +conducimi condurre ver +conduco condurre ver +conducono condurre ver +condur condurre ver +condurci condurre ver +condurgli condurre ver +condurla condurre ver +condurle condurre ver +condurli condurre ver +condurlo condurre ver +condurmi condurre ver +condurne condurre ver +condurrai condurre ver +condurranno condurre ver +condurre condurre ver +condurrebbe condurre ver +condurrebbero condurre ver +condurrà condurre ver +condurrò condurre ver +condursi condurre ver +condurti condurre ver +condurvi condurre ver +condusse condurre ver +condussero condurre ver +condussi condurre ver +conduttanza conduttanza nom +conduttanze conduttanza nom +conduttiva conduttivo adj +conduttive conduttivo adj +conduttivi conduttivo adj +conduttività conduttività nom +conduttivo conduttivo adj +conduttore conduttore nom +conduttori conduttore nom +conduttrice conduttore nom +conduttrici conduttore nom +conduttura conduttura nom +condutture conduttura nom +conduzione conduzione nom +conduzioni conduzione nom +cone corre ver +conessi corre ver +conestabile conestabile nom +conestabili conestabile nom +confa confarsi ver +confabula confabulare ver +confabulando confabulare ver +confabulano confabulare ver +confabulare confabulare ver +confabulazione confabulazione nom +confabulazioni confabulazione nom +confaccia confarsi ver +confacente confacente adj +confacenti confacente adj +confacesse confarsi ver +confaceva confarsi ver +confacevano confarsi ver +confanno confarsi ver +confarsi confarsi ver +confedera confederare ver +confederaci confederare ver +confederale confederale adj +confederali confederale adj +confederando confederare ver +confederandola confederare ver +confederandosi confederare ver +confederare confederare ver +confederarono confederare ver +confederarsi confederare ver +confederata confederare ver +confederate confederato adj +confederati confederato adj +confederativa confederativo adj +confederative confederativo adj +confederativo confederativo adj +confederato confederato adj +confederazione confederazione nom +confederazioni confederazione nom +confederò confederare ver +conferendo conferire ver +conferendogli conferire ver +conferendola conferire ver +conferendole conferire ver +conferendoli conferire ver +conferendolo conferire ver +conferendone conferire ver +conferendovi conferire ver +conferente conferente nom +conferenti conferente adj +conferenza conferenza nom +conferenze conferenza nom +conferenziera conferenziere nom +conferenziere conferenziere nom +conferenzieri conferenziere nom +conferiamo conferire ver +conferimenti conferimento nom +conferimento conferimento nom +conferir conferire ver +conferiranno conferire ver +conferirci conferire ver +conferire conferire ver +conferirebbe conferire ver +conferirebbero conferire ver +conferirgli conferire ver +conferirglielo conferire ver +conferirla conferire ver +conferirle conferire ver +conferirli conferire ver +conferirlo conferire ver +conferirne conferire ver +conferirono conferire ver +conferirsi conferire ver +conferirvi conferire ver +conferirà conferire ver +conferisca conferire ver +conferiscano conferire ver +conferisce conferire ver +conferisci conferire ver +conferisco conferire ver +conferiscono conferire ver +conferisse conferire ver +conferissero conferire ver +conferita conferire ver +conferitagli conferire ver +conferite conferire ver +conferitegli conferire ver +conferitele conferire ver +conferiti conferire ver +conferitile conferire ver +conferito conferire ver +conferitole conferire ver +conferiva conferire ver +conferivano conferire ver +conferma conferma nom +confermai confermare ver +confermalo confermare ver +confermamelo confermare ver +confermami confermare ver +confermando confermare ver +confermandogli confermare ver +confermandola confermare ver +confermandole confermare ver +confermandoli confermare ver +confermandolo confermare ver +confermandomi confermare ver +confermandone confermare ver +confermandosi confermare ver +confermano confermare ver +confermante confermare ver +confermanti confermare ver +confermarcelo confermare ver +confermarci confermare ver +confermare confermare ver +confermargli confermare ver +confermarglielo confermare ver +confermarla confermare ver +confermarle confermare ver +confermarli confermare ver +confermarlo confermare ver +confermarmelo confermare ver +confermarmi confermare ver +confermarne confermare ver +confermarono confermare ver +confermarsi confermare ver +confermartelo confermare ver +confermarti confermare ver +confermarvelo confermare ver +confermarvi confermare ver +confermasi confermare ver +confermasse confermare ver +confermassero confermare ver +confermassi confermare ver +confermata confermare ver +confermate confermare ver +confermateci confermare ver +confermatemi confermare ver +confermati confermare ver +confermativa confermativo adj +confermative confermativo adj +confermativi confermativo adj +confermativo confermativo adj +confermato confermare ver +confermava confermare ver +confermavano confermare ver +confermavo confermare ver +confermazione confermazione nom +confermazioni confermazione nom +conferme conferma nom +confermerai confermare ver +confermeranno confermare ver +confermerebbe confermare ver +confermerebbero confermare ver +confermerei confermare ver +confermerà confermare ver +confermerò confermare ver +confermi confermare ver +confermiamo confermare ver +confermiate confermare ver +confermino confermare ver +confermo confermare ver +confermò confermare ver +conferì conferire ver +confessa confesso adj +confessabili confessabile adj +confessalo confessare ver +confessando confessare ver +confessandogli confessare ver +confessandole confessare ver +confessandolo confessare ver +confessandomi confessare ver +confessandosi confessare ver +confessano confessare ver +confessante confessare ver +confessanti confessare ver +confessar confessare ver +confessarci confessare ver +confessare confessare ver +confessargli confessare ver +confessarglielo confessare ver +confessarla confessare ver +confessarle confessare ver +confessarli confessare ver +confessarlo confessare ver +confessarono confessare ver +confessarsi confessare ver +confessarti confessare ver +confessarvi confessare ver +confessasse confessare ver +confessassero confessare ver +confessata confessare ver +confessate confessare ver +confessati confessare ver +confessato confessare ver +confessava confessare ver +confessavano confessare ver +confesse confesso adj +confesseranno confessare ver +confesserà confessare ver +confesserò confessare ver +confessi confesso adj +confessiamo confessare ver +confessiamolo confessare ver +confessionale confessionale adj +confessionali confessionale adj +confessione confessione nom +confessioni confessione nom +confesso confesso adj +confessore confessore nom +confessori confessore nom +confessò confessare ver +confetta confettare ver +confettate confettare ver +confettato confettare ver +confetteria confetteria nom +confetterie confetteria nom +confetti confetto nom +confettiera confettiera|confettiere nom +confettiere confettiera|confettiere nom +confettieri confettiere nom +confetto confetto nom +confettura confettura nom +confetture confettura nom +confeziona confezionare ver +confezionamento confezionamento nom +confezionando confezionare ver +confezionano confezionare ver +confezionare confezionare ver +confezionargli confezionare ver +confezionarle confezionare ver +confezionarli confezionare ver +confezionarlo confezionare ver +confezionarono confezionare ver +confezionarsi confezionare ver +confezionassero confezionare ver +confezionata confezionare ver +confezionate confezionare ver +confezionati confezionare ver +confezionato confezionare ver +confezionatore confezionatore nom +confezionatrice confezionatore nom +confezionatrici confezionatore nom +confezionatura confezionatura nom +confezionava confezionare ver +confezionavano confezionare ver +confezione confezione nom +confezioni confezione nom +confezioniamo confezionare ver +confezionò confezionare ver +conficca conficcare ver +conficcando conficcare ver +conficcandogli conficcare ver +conficcandoglielo conficcare ver +conficcandola conficcare ver +conficcandole conficcare ver +conficcandosi conficcare ver +conficcandovi conficcare ver +conficcano conficcare ver +conficcare conficcare ver +conficcargli conficcare ver +conficcarla conficcare ver +conficcarle conficcare ver +conficcarlo conficcare ver +conficcarono conficcare ver +conficcarsi conficcare ver +conficcasse conficcare ver +conficcata conficcare ver +conficcate conficcare ver +conficcati conficcare ver +conficcato conficcare ver +conficcava conficcare ver +conficcavano conficcare ver +conficcherà conficcare ver +conficcò conficcare ver +confida confidare ver +confidando confidare ver +confidandogli confidare ver +confidandole confidare ver +confidandosi confidare ver +confidano confidare ver +confidante confidare ver +confidare confidare ver +confidargli confidare ver +confidarle confidare ver +confidarlo confidare ver +confidarono confidare ver +confidarsi confidare ver +confidarti confidare ver +confidarvi confidare ver +confidasse confidare ver +confidata confidare ver +confidate confidare ver +confidati confidare ver +confidato confidare ver +confidava confidare ver +confidavano confidare ver +confidavo confidare ver +confidente confidente nom +confidenti confidente nom +confidenza confidenza nom +confidenze confidenza nom +confidenziale confidenziale adj +confidenziali confidenziale adj +confidenzialità confidenzialità nom +confidenzialmente confidenzialmente adv +confiderei confidare ver +confiderà confidare ver +confiderò confidare ver +confidi confidare ver +confidiamo confidare ver +confidino confidare ver +confido confidare ver +confidò confidare ver +configgenti configgere ver +configgere configgere ver +configura configurare ver +configuraci configurare ver +configurando configurare ver +configurandola configurare ver +configurandolo configurare ver +configurandosi configurare ver +configurano configurare ver +configurante configurare ver +configuranti configurare ver +configurare configurare ver +configurarla configurare ver +configurarli configurare ver +configurarlo configurare ver +configurarne configurare ver +configurarono configurare ver +configurarsi configurare ver +configurasse configurare ver +configurassero configurare ver +configurata configurare ver +configurate configurare ver +configuratesi configurare ver +configurati configurare ver +configurato configurare ver +configurava configurare ver +configuravano configurare ver +configurazione configurazione nom +configurazioni configurazione nom +configurerebbe configurare ver +configurerebbero configurare ver +configurerà configurare ver +configuri configurare ver +configurino configurare ver +configuro configurare ver +configurò configurare ver +confina confinare ver +confinale confinare ver +confinamento confinamento nom +confinando confinare ver +confinandola confinare ver +confinandole confinare ver +confinandoli confinare ver +confinandolo confinare ver +confinano confinare ver +confinante confinante adj +confinanti confinare ver +confinare confinare ver +confinari confinario adj +confinaria confinario adj +confinarie confinario adj +confinario confinario adj +confinarla confinare ver +confinarle confinare ver +confinarli confinare ver +confinarlo confinare ver +confinarmi confinare ver +confinarono confinare ver +confinarsi confinare ver +confinasse confinare ver +confinassero confinare ver +confinata confinare ver +confinate confinare ver +confinati confinare ver +confinato confinare ver +confinava confinare ver +confinavano confinare ver +confindustriale confindustriale adj +confine confine nom +confinerebbe confinare ver +confinerebbero confinare ver +confinerà confinare ver +confini confine|confino nom +confiniamo confinare ver +confinino confinare ver +confino confino nom +confinò confinare ver +confisca confisca nom +confiscando confiscare ver +confiscandogli confiscare ver +confiscandoli confiscare ver +confiscandone confiscare ver +confiscano confiscare ver +confiscare confiscare ver +confiscargli confiscare ver +confiscarle confiscare ver +confiscarli confiscare ver +confiscarne confiscare ver +confiscarono confiscare ver +confiscasse confiscare ver +confiscata confiscare ver +confiscate confiscare ver +confiscategli confiscare ver +confiscati confiscare ver +confiscato confiscare ver +confiscava confiscare ver +confiscavano confiscare ver +confische confisca nom +confischerà confiscare ver +confiscò confiscare ver +confissero configgere ver +confissi configgere ver +confisso configgere ver +confiteor confiteor nom +conflagrazione conflagrazione nom +conflagrazioni conflagrazione nom +conflitti conflitto nom +conflitto conflitto nom +conflittuale conflittuale adj +conflittuali conflittuale adj +conflittualità conflittualità nom +confluendo confluire ver +confluendovi confluire ver +confluente confluente adj +confluenti confluente adj +confluenza confluenza nom +confluenze confluenza nom +confluiranno confluire ver +confluire confluire ver +confluirebbero confluire ver +confluirono confluire ver +confluirvi confluire ver +confluirà confluire ver +confluisca confluire ver +confluiscano confluire ver +confluisce confluire ver +confluiscono confluire ver +confluisse confluire ver +confluissero confluire ver +confluita confluire ver +confluite confluire ver +confluiti confluire ver +confluito confluire ver +confluiva confluire ver +confluivano confluire ver +confluì confluire ver +confonda confondere ver +confondano confondere ver +confonde confondere ver +confondendo confondere ver +confondendola confondere ver +confondendole confondere ver +confondendoli confondere ver +confondendolo confondere ver +confondendomi confondere ver +confondendone confondere ver +confondendosi confondere ver +confondente confondere ver +confondenti confondere ver +confonder confondere ver +confonderanno confondere ver +confonderci confondere ver +confondere confondere ver +confonderebbe confondere ver +confonderebbero confondere ver +confonderei confondere ver +confondergli confondere ver +confonderla confondere ver +confonderle confondere ver +confonderli confondere ver +confonderlo confondere ver +confondermi confondere ver +confonderne confondere ver +confondersi confondere ver +confonderti confondere ver +confondervi confondere ver +confonderà confondere ver +confonderò confondere ver +confondesse confondere ver +confondessero confondere ver +confondessi confondere ver +confondete confondere ver +confondeva confondere ver +confondevano confondere ver +confondevo confondere ver +confondi confondere ver +confondiamo confondere ver +confondiamoci confondere ver +confondiate confondere ver +confondibile confondibile adj +confondibili confondibile adj +confondo confondere ver +confondono confondere ver +conforma conformare ver +conformaci conformare ver +conformale conformare ver +conformali conformare ver +conformando conformare ver +conformandolo conformare ver +conformandosi conformare ver +conformano conformare ver +conformarci conformare ver +conformare conformare ver +conformarla conformare ver +conformarli conformare ver +conformarlo conformare ver +conformarmi conformare ver +conformarono conformare ver +conformarsi conformare ver +conformasse conformare ver +conformassero conformare ver +conformata conformare ver +conformate conformare ver +conformatevi conformare ver +conformati conformare ver +conformato conformare ver +conformava conformare ver +conformavano conformare ver +conformazione conformazione nom +conformazioni conformazione nom +conforme conforme adj +conformemente conformemente adv +conformerai conformare ver +conformerebbe conformare ver +conformerà conformare ver +conformerò conformare ver +conformi conforme adj +conformiamo conformare ver +conformino conformare ver +conformismi conformismo nom +conformismo conformismo nom +conformista conformista nom +conformiste conformista nom +conformisti conformista nom +conformità conformità nom +conformo conformare ver +conformò conformare ver +confort confort nom +conforta confortare ver +confortabile confortabile adj +confortando confortare ver +confortandola confortare ver +confortandoli confortare ver +confortandolo confortare ver +confortandosi confortare ver +confortano confortare ver +confortante confortante adj +confortanti confortante adj +confortar confortare ver +confortare confortare ver +confortarla confortare ver +confortarli confortare ver +confortarlo confortare ver +confortarmi confortare ver +confortarne confortare ver +confortarono confortare ver +confortarsi confortare ver +confortarti confortare ver +confortata confortare ver +confortate confortare ver +confortatevi confortare ver +confortati confortare ver +confortato confortare ver +confortatori confortatore nom +confortatorio confortatorio adj +confortatrice confortatore adj +confortava confortare ver +confortavano confortare ver +conforterebbe confortare ver +conforterebbero confortare ver +conforterà confortare ver +confortevole confortevole adj +confortevoli confortevole adj +conforti conforto nom +confortiamoci confortare ver +confortino confortare ver +conforto conforto nom +confortò confortare ver +confratelli confratello nom +confratello confratello nom +confraternità confraternità nom +confronta confrontare ver +confrontabile confrontabile adj +confrontabili confrontabile adj +confrontala confrontare ver +confrontali confrontare ver +confrontalo confrontare ver +confrontando confrontare ver +confrontandoci confrontare ver +confrontandola confrontare ver +confrontandole confrontare ver +confrontandoli confrontare ver +confrontandolo confrontare ver +confrontandomi confrontare ver +confrontandone confrontare ver +confrontandosi confrontare ver +confrontandoti confrontare ver +confrontano confrontare ver +confrontarci confrontare ver +confrontare confrontare ver +confrontarla confrontare ver +confrontarle confrontare ver +confrontarli confrontare ver +confrontarlo confrontare ver +confrontarmi confrontare ver +confrontarne confrontare ver +confrontarono confrontare ver +confrontarsi confrontare ver +confrontarti confrontare ver +confrontarvi confrontare ver +confrontasse confrontare ver +confrontassero confrontare ver +confrontata confrontare ver +confrontate confrontare ver +confrontatela confrontare ver +confrontatele confrontare ver +confrontatelo confrontare ver +confrontatevi confrontare ver +confrontati confrontare ver +confrontato confrontare ver +confrontava confrontare ver +confrontavano confrontare ver +confronteranno confrontare ver +confronteremo confrontare ver +confronterete confrontare ver +confronterà confrontare ver +confronterò confrontare ver +confronti confronto nom +confrontiamo confrontare ver +confrontiamoci confrontare ver +confrontiamoli confrontare ver +confrontiamolo confrontare ver +confrontino confrontare ver +confronto confronto nom +confrontò confrontare ver +confucianesimo confucianesimo nom +confusa confondere ver +confuse confondere ver +confusero confondere ver +confusi confondere ver +confusionale confusionale adj +confusionali confusionale adj +confusionari confusionario adj +confusionaria confusionario adj +confusionarie confusionario adj +confusionario confusionario adj +confusione confusione nom +confusioni confusione nom +confusionismo confusionismo nom +confuso confondere ver +confuta confutare ver +confutabile confutabile adj +confutabili confutabile adj +confutando confutare ver +confutandola confutare ver +confutano confutare ver +confutare confutare ver +confutargli confutare ver +confutarla confutare ver +confutarle confutare ver +confutarli confutare ver +confutarlo confutare ver +confutarne confutare ver +confutarono confutare ver +confutata confutare ver +confutate confutare ver +confutati confutare ver +confutativi confutativo adj +confutativo confutativo adj +confutato confutare ver +confutatore confutatore nom +confutatorio confutatorio adj +confutatrice confutatore adj +confutava confutare ver +confutavano confutare ver +confutazione confutazione nom +confutazioni confutazione nom +confuterebbe confutare ver +confuterebbero confutare ver +confuterà confutare ver +confuti confutare ver +confutino confutare ver +confuto confutare ver +confutò confutare ver +conga corre ver +congeda congedare ver +congedandi congedando nom +congedando congedare ver +congedandolo congedare ver +congedandosi congedare ver +congedano congedare ver +congedante congedare ver +congedanti congedare ver +congedare congedare ver +congedarla congedare ver +congedarli congedare ver +congedarlo congedare ver +congedarmi congedare ver +congedarono congedare ver +congedarsi congedare ver +congedata congedare ver +congedate congedare ver +congedati congedare ver +congedato congedare ver +congedava congedare ver +congedavano congedare ver +congederà congedare ver +congedi congedo nom +congedo congedo nom +congedò congedare ver +congegna congegnare ver +congegnale congegnare ver +congegnare congegnare ver +congegnata congegnare ver +congegnate congegnare ver +congegnati congegnare ver +congegnato congegnare ver +congegni congegno nom +congegno congegno nom +congegnò congegnare ver +congela congelare ver +congelaci congelare ver +congelamenti congelamento nom +congelamento congelamento nom +congelando congelare ver +congelandola congelare ver +congelandole congelare ver +congelandoli congelare ver +congelandolo congelare ver +congelandosi congelare ver +congelano congelare ver +congelante congelare ver +congelanti congelare ver +congelare congelare ver +congelarla congelare ver +congelarle congelare ver +congelarli congelare ver +congelarlo congelare ver +congelarne congelare ver +congelarono congelare ver +congelarsi congelare ver +congelasse congelare ver +congelassero congelare ver +congelata congelare ver +congelate congelare ver +congelati congelare ver +congelato congelare ver +congelatore congelatore nom +congelatori congelatore nom +congelava congelare ver +congelavano congelare ver +congelazione congelazione nom +congeleranno congelare ver +congelerebbe congelare ver +congelerei congelare ver +congelerà congelare ver +congeli congelare ver +congeliamo congelare ver +congelino congelare ver +congelo congelare ver +congelò congelare ver +congenere congenere adj +congeneri congenere adj +congeniale congeniale adj +congeniali congeniale adj +congenialità congenialità nom +congenita congenito adj +congenite congenito adj +congeniti congenito adj +congenito congenito adj +congerie congerie nom +congestiona congestionare ver +congestionamenti congestionamento nom +congestionamento congestionamento nom +congestionando congestionare ver +congestionare congestionare ver +congestionata congestionare ver +congestionate congestionare ver +congestionati congestionare ver +congestionato congestionare ver +congestionava congestionare ver +congestione congestione nom +congestioni congestione nom +congettura congettura nom +congetturale congetturare ver +congetturali congetturare ver +congetturando congetturare ver +congetturano congetturare ver +congetturare congetturare ver +congetturarono congetturare ver +congetturata congetturare ver +congetturate congetturare ver +congetturati congetturare ver +congetturato congetturare ver +congetturava congetturare ver +congetture congettura nom +congetturò congetturare ver +congiunga congiungere ver +congiungano congiungere ver +congiunge congiungere ver +congiungendo congiungere ver +congiungendola congiungere ver +congiungendolo congiungere ver +congiungendone congiungere ver +congiungendosi congiungere ver +congiungente congiungere ver +congiungenti congiungere ver +congiungeranno congiungere ver +congiungerci congiungere ver +congiungere congiungere ver +congiungerei congiungere ver +congiungerla congiungere ver +congiungerle congiungere ver +congiungerli congiungere ver +congiungerlo congiungere ver +congiungersi congiungere ver +congiungerà congiungere ver +congiungesse congiungere ver +congiungessero congiungere ver +congiungeva congiungere ver +congiungevano congiungere ver +congiungiamo congiungere ver +congiungimenti congiungimento nom +congiungimento congiungimento nom +congiungo congiungere ver +congiungono congiungere ver +congiunse congiungere ver +congiunsero congiungere ver +congiunta congiungere ver +congiuntamente congiuntamente adv +congiunte congiungere ver +congiunti congiunto nom +congiuntiva congiuntiva nom +congiuntive congiuntivo adj +congiuntivi congiuntivo nom +congiuntivite congiuntivite nom +congiuntiviti congiuntivite nom +congiuntivo congiuntivo nom +congiunto congiungere ver +congiuntura congiuntura nom +congiunturale congiunturale adj +congiunturali congiunturale adj +congiunture congiuntura nom +congiunzione congiunzione nom +congiunzioni congiunzione nom +congiura congiura nom +congiurando congiurare ver +congiurano congiurare ver +congiuranti congiurare ver +congiurare congiurare ver +congiurarono congiurare ver +congiurate congiurare ver +congiurati congiurato nom +congiurato congiurare ver +congiuravano congiurare ver +congiure congiura nom +congiurò congiurare ver +congloba conglobare ver +conglobamento conglobamento nom +conglobando conglobare ver +conglobano conglobare ver +conglobante conglobare ver +conglobare conglobare ver +conglobarsi conglobare ver +conglobata conglobare ver +conglobate conglobare ver +conglobati conglobare ver +conglobato conglobare ver +conglobò conglobare ver +conglomerale conglomerare ver +conglomeranti conglomerare ver +conglomerare conglomerare ver +conglomerarsi conglomerare ver +conglomerata conglomerato adj +conglomerate conglomerato adj +conglomerati conglomerato nom +conglomerato conglomerato nom +conglomerazione conglomerazione nom +congo corre ver +congolese congolese adj +congolesi congolese adj +congratula congratularsi ver +congratulandomi congratularsi ver +congratulandosi congratularsi ver +congratulano congratularsi ver +congratularci congratularsi ver +congratulare congratularsi ver +congratularmi congratularsi ver +congratularono congratularsi ver +congratularsi congratularsi ver +congratulata congratularsi ver +congratulate congratularsi ver +congratulati congratularsi ver +congratulato congratularsi ver +congratulava congratularsi ver +congratulavano congratularsi ver +congratulazione congratulazione nom +congratulazioni congratulazione nom +congratulerà congratularsi ver +congratuli congratularsi ver +congratuliamo congratularsi ver +congratulo congratularsi ver +congratulò congratularsi ver +congrega congrega nom +congregaci congregare ver +congreganti congregare ver +congregare congregare ver +congregata congregare ver +congregate congregare ver +congregati congregare ver +congregato congregare ver +congregazione congregazione nom +congregazioni congregazione nom +congregazionista congregazionista adj +congregazionisti congregazionista adj +congrego congregare ver +congressi congresso nom +congressista congressista nom +congressisti congressista nom +congresso congresso nom +congressuale congressuale adj +congressuali congressuale adj +congrua congruo adj +congruamente congruamente adv +congrue congruo adj +congruente congruente adj +congruenti congruente adj +congruenza congruenza nom +congruenze congruenza nom +congrui congruo adj +congruità congruità nom +congruo congruo adj +conguagli conguaglio nom +conguagliare conguagliare ver +conguagliarsi conguagliare ver +conguagliata conguagliare ver +conguaglio conguaglio nom +coni conio|cono nom +conia coniare ver +coniaci coniare ver +coniai coniare ver +coniale coniare ver +coniando coniare ver +coniandone coniare ver +coniano coniare ver +coniare coniare ver +coniarla coniare ver +coniarle coniare ver +coniarli coniare ver +coniarlo coniare ver +coniarne coniare ver +coniarono coniare ver +coniasse coniare ver +coniata coniare ver +coniate coniare ver +coniati coniare ver +coniato coniare ver +coniatore coniatore nom +coniatori coniatore nom +coniava coniare ver +coniavano coniare ver +coniazione coniazione nom +coniazioni coniazione nom +conica conico adj +coniche conico adj +conici conico adj +conicità conicità nom +conico conico adj +conidi conidio nom +conidio conidio nom +conieranno coniare ver +conierà coniare ver +conifere conifere nom +conigli coniglio nom +coniglia coniglio nom +coniglie coniglio nom +conigliera conigliera nom +conigliere conigliera nom +coniglio coniglio nom +conila corre ver +conine corre ver +conino coniare ver +conio conio nom +coniuga coniugare ver +coniugabile coniugabile adj +coniugabili coniugabile adj +coniugale coniugale adj +coniugali coniugale adj +coniugando coniugare ver +coniugandola coniugare ver +coniugandole coniugare ver +coniugandoli coniugare ver +coniugandolo coniugare ver +coniugano coniugare ver +coniugante coniugare ver +coniuganti coniugare ver +coniugare coniugare ver +coniugarle coniugare ver +coniugarli coniugare ver +coniugarlo coniugare ver +coniugarono coniugare ver +coniugarsi coniugare ver +coniugasi coniugare ver +coniugasse coniugare ver +coniugata coniugato adj +coniugate coniugare ver +coniugati coniugato adj +coniugato coniugare ver +coniugava coniugare ver +coniugavano coniugare ver +coniugazione coniugazione nom +coniugazioni coniugazione nom +coniuge coniuge nom +coniugherebbe coniugare ver +coniugherà coniugare ver +coniughi coniugare ver +coniughino coniugare ver +coniugi coniuge|coniugio nom +coniugio coniugio nom +coniugo coniugare ver +coniugò coniugare ver +coniò coniare ver +connatura connaturare ver +connaturale connaturale adj +connaturali connaturale adj +connaturando connaturare ver +connaturandosi connaturare ver +connaturarsi connaturare ver +connaturata connaturare ver +connaturate connaturato adj +connaturati connaturare ver +connaturato connaturare ver +connaturò connaturare ver +connazionale connazionale adj +connazionali connazionale adj +connessa connettere ver +connesse connettere ver +connessi connettere ver +connessione connessione nom +connessioni connessione nom +connesso connettere ver +connestabile connestabile nom +connestabili connestabile nom +connetta connettere ver +connettano connettere ver +connette connettere ver +connettendo connettere ver +connettendola connettere ver +connettendole connettere ver +connettendoli connettere ver +connettendolo connettere ver +connettendomi connettere ver +connettendosi connettere ver +connettente connettere ver +connetterci connettere ver +connettere connettere ver +connetterebbe connettere ver +connetterla connettere ver +connetterle connettere ver +connetterli connettere ver +connetterlo connettere ver +connettermi connettere ver +connetterne connettere ver +connettersi connettere ver +connetterti connettere ver +connettervi connettere ver +connetterà connettere ver +connettessero connettere ver +connettete connettere ver +connetteva connettere ver +connettevano connettere ver +connettevi connettere ver +connettevo connettere ver +connetti connettere ver +connettiamo connettere ver +connettiti connettere ver +connettiva connettivo adj +connettivale connettivale adj +connettivali connettivale adj +connettive connettivo adj +connettivi connettivo adj +connettivo connettivo adj +connetto connettere ver +connettono connettere ver +connettè connettere ver +connivente connivente adj +conniventi connivente adj +connivenza connivenza nom +connivenze connivenza nom +connotate connotare ver +connotati connotato nom +connotato connotato nom +connotazione connotazione nom +connotazioni connotazione nom +connubi connubio nom +connubio connubio nom +cono cono nom +conobbe conoscere ver +conobbero conoscere ver +conobbi conoscere ver +conocchia conocchia nom +conocchie conocchia nom +conoide conoide nom +conoidi conoide nom +conopeo conopeo nom +conosca conoscere ver +conoscano conoscere ver +conosce conoscere ver +conoscemmo conoscere ver +conoscendo conoscere ver +conoscendola conoscere ver +conoscendole conoscere ver +conoscendoli conoscere ver +conoscendolo conoscere ver +conoscendomi conoscere ver +conoscendone conoscere ver +conoscendosi conoscere ver +conoscendoti conoscere ver +conoscendovi conoscere ver +conoscente conoscente nom +conoscenti conoscente nom +conoscenza conoscenza nom +conoscenze conoscenza nom +conoscer conoscere ver +conoscerai conoscere ver +conosceranno conoscere ver +conoscerci conoscere ver +conoscere conoscere ver +conoscerebbe conoscere ver +conoscerebbero conoscere ver +conoscerei conoscere ver +conosceremmo conoscere ver +conosceremo conoscere ver +conosceresti conoscere ver +conoscerete conoscere ver +conoscerla conoscere ver +conoscerle conoscere ver +conoscerli conoscere ver +conoscerlo conoscere ver +conoscermi conoscere ver +conoscerne conoscere ver +conoscersi conoscere ver +conoscerti conoscere ver +conoscervi conoscere ver +conoscerà conoscere ver +conoscerò conoscere ver +conoscesse conoscere ver +conoscessero conoscere ver +conoscessi conoscere ver +conoscessimo conoscere ver +conosceste conoscere ver +conoscesti conoscere ver +conoscete conoscere ver +conosceva conoscere ver +conoscevamo conoscere ver +conoscevano conoscere ver +conoscevate conoscere ver +conoscevi conoscere ver +conoscevo conoscere ver +conosci conoscere ver +conosciamo conoscere ver +conosciamoci conoscere ver +conosciamoli conoscere ver +conosciamolo conoscere ver +conosciate conoscere ver +conoscibile conoscibile adj +conoscibili conoscibile adj +conoscimenti conoscimento nom +conoscimento conoscimento nom +conosciti conoscere ver +conoscitiva conoscitivo adj +conoscitive conoscitivo adj +conoscitivi conoscitivo adj +conoscitivo conoscitivo adj +conoscitore conoscitore nom +conoscitori conoscitore nom +conoscitrice conoscitore nom +conoscitrici conoscitore nom +conosciuta conoscere ver +conosciute conoscere ver +conosciuti conoscere ver +conosciuto conoscere ver +conosco conoscere ver +conoscono conoscere ver +conquibus conquibus nom +conquide conquidere ver +conquidere conquidere ver +conquise conquiso adj +conquista conquista nom +conquistabile conquistabile adj +conquistabili conquistabile adj +conquistador conquistador nom +conquistai conquistare ver +conquistammo conquistare ver +conquistando conquistare ver +conquistandogli conquistare ver +conquistandola conquistare ver +conquistandole conquistare ver +conquistandoli conquistare ver +conquistandolo conquistare ver +conquistandone conquistare ver +conquistandosi conquistare ver +conquistandovi conquistare ver +conquistano conquistare ver +conquistar conquistare ver +conquistarci conquistare ver +conquistare conquistare ver +conquistargli conquistare ver +conquistarla conquistare ver +conquistarle conquistare ver +conquistarli conquistare ver +conquistarlo conquistare ver +conquistarne conquistare ver +conquistarono conquistare ver +conquistarsela conquistare ver +conquistarselo conquistare ver +conquistarsi conquistare ver +conquistasse conquistare ver +conquistassero conquistare ver +conquistata conquistare ver +conquistate conquistare ver +conquistati conquistare ver +conquistato conquistare ver +conquistatore conquistatore nom +conquistatori conquistatore nom +conquistatrice conquistatore nom +conquistatrici conquistatore nom +conquistava conquistare ver +conquistavano conquistare ver +conquiste conquista nom +conquisterai conquistare ver +conquisteranno conquistare ver +conquisterebbe conquistare ver +conquisteremo conquistare ver +conquisterà conquistare ver +conquisterò conquistare ver +conquisti conquistare ver +conquistiamo conquistare ver +conquistino conquistare ver +conquisto conquistare ver +conquistò conquistare ver +consacra consacrare ver +consacrai consacrare ver +consacrando consacrare ver +consacrandola consacrare ver +consacrandole consacrare ver +consacrandoli consacrare ver +consacrandolo consacrare ver +consacrandone consacrare ver +consacrandosi consacrare ver +consacrano consacrare ver +consacrante consacrare ver +consacranti consacrare ver +consacrarci consacrare ver +consacrare consacrare ver +consacrarla consacrare ver +consacrarli consacrare ver +consacrarlo consacrare ver +consacrarne consacrare ver +consacrarono consacrare ver +consacrarsi consacrare ver +consacrarvi consacrare ver +consacrasse consacrare ver +consacrassero consacrare ver +consacrata consacrare ver +consacrate consacrare ver +consacrati consacrare ver +consacrato consacrare ver +consacrava consacrare ver +consacravano consacrare ver +consacrazione consacrazione nom +consacrazioni consacrazione nom +consacreranno consacrare ver +consacrerà consacrare ver +consacrerò consacrare ver +consacri consacrare ver +consacriamo consacrare ver +consacrino consacrare ver +consacro consacrare ver +consacrò consacrare ver +consanguinea consanguineo adj +consanguinee consanguineo adj +consanguinei consanguineo adj +consanguineità consanguineità nom +consanguineo consanguineo adj +consapevole consapevole adj +consapevolezza consapevolezza nom +consapevolezze consapevolezza nom +consapevoli consapevole adj +consapevolmente consapevolmente adv +consce conscio adj +consci conscio adj +conscia conscio adj +conscio conscio adj +consecutiva consecutivo adj +consecutivamente consecutivamente adv +consecutive consecutivo adj +consecutivi consecutivo adj_sup +consecutivo consecutivo adj_sup +consecuzione consecuzione nom +consegna consegna nom +consegnagli consegnare ver +consegnai consegnare ver +consegnalo consegnare ver +consegnando consegnare ver +consegnandoci consegnare ver +consegnandogli consegnare ver +consegnandola consegnare ver +consegnandole consegnare ver +consegnandoli consegnare ver +consegnandolo consegnare ver +consegnandone consegnare ver +consegnandosi consegnare ver +consegnano consegnare ver +consegnar consegnare ver +consegnarci consegnare ver +consegnare consegnare ver +consegnargli consegnare ver +consegnargliela consegnare ver +consegnarglieli consegnare ver +consegnarglielo consegnare ver +consegnarla consegnare ver +consegnarle consegnare ver +consegnarli consegnare ver +consegnarlo consegnare ver +consegnarmi consegnare ver +consegnarne consegnare ver +consegnarono consegnare ver +consegnarsi consegnare ver +consegnarti consegnare ver +consegnasse consegnare ver +consegnassero consegnare ver +consegnata consegnare ver +consegnatari consegnatario nom +consegnataria consegnatario nom +consegnatario consegnatario nom +consegnate consegnare ver +consegnategli consegnare ver +consegnatele consegnare ver +consegnati consegnare ver +consegnato consegnare ver +consegnava consegnare ver +consegnavano consegnare ver +consegne consegna nom +consegneranno consegnare ver +consegneremo consegnare ver +consegnerà consegnare ver +consegnerò consegnare ver +consegni consegnare ver +consegniamo consegnare ver +consegnino consegnare ver +consegno consegnare ver +consegnò consegnare ver +consegua conseguire ver +conseguano conseguire ver +consegue conseguire ver +conseguendo conseguire ver +conseguendone conseguire ver +conseguendovi conseguire ver +conseguente conseguente adj +conseguentemente conseguentemente adv +conseguenti conseguente adj +conseguenza conseguenza nom +conseguenze conseguenza nom +consegui conseguire ver +conseguibile conseguibile adj +conseguibili conseguibile adj +conseguimenti conseguimento nom +conseguimento conseguimento nom +conseguir conseguire ver +conseguiranno conseguire ver +conseguire conseguire ver +conseguirebbe conseguire ver +conseguirebbero conseguire ver +conseguirete conseguire ver +conseguirla conseguire ver +conseguirle conseguire ver +conseguirli conseguire ver +conseguirlo conseguire ver +conseguirne conseguire ver +conseguirono conseguire ver +conseguirsi conseguire ver +conseguirvi conseguire ver +conseguirà conseguire ver +conseguisse conseguire ver +conseguissero conseguire ver +conseguita conseguire ver +conseguite conseguire ver +conseguiti conseguire ver +conseguito conseguire ver +conseguiva conseguire ver +conseguivano conseguire ver +conseguono conseguire ver +conseguì conseguire ver +consensi consenso nom +consenso consenso nom +consensuale consensuale adj +consensuali consensuale adj +consensualmente consensualmente adv +consenta consentire ver +consentanea consentaneo adj +consentaneo consentaneo adj +consentano consentire ver +consente consentire ver +consentendo consentire ver +consentendoci consentire ver +consentendogli consentire ver +consentendola consentire ver +consentendole consentire ver +consentendoli consentire ver +consentendolo consentire ver +consentendomi consentire ver +consentendone consentire ver +consenti consentire ver +consentiamo consentire ver +consentigli consentire ver +consentimelo consentire ver +consentimento consentimento nom +consentimi consentire ver +consentir consentire ver +consentirai consentire ver +consentiranno consentire ver +consentirci consentire ver +consentire consentire ver +consentirebbe consentire ver +consentirebbero consentire ver +consentirei consentire ver +consentiremo consentire ver +consentirete consentire ver +consentirgli consentire ver +consentirglielo consentire ver +consentirla consentire ver +consentirle consentire ver +consentirlo consentire ver +consentirmi consentire ver +consentirne consentire ver +consentirono consentire ver +consentirsi consentire ver +consentirti consentire ver +consentirvi consentire ver +consentirà consentire ver +consentirò consentire ver +consentisse consentire ver +consentissero consentire ver +consentissimo consentire ver +consentita consentire ver +consentite consentire ver +consentitemi consentire ver +consentiti consentire ver +consentito consentire ver +consentiva consentire ver +consentivano consentire ver +consentivo consentire ver +consento consentire ver +consentono consentire ver +consentì consentire ver +consenziente consenziente adj +consenzienti consenziente adj +consequenziale consequenziale adj +consequenziali consequenziale adj +consequenziario consequenziario adj +conserte conserto adj +conserti conserto adj +conserto conserto adj +conserva conservare ver +conservabile conservabile adj +conservabili conservabile adj +conservaci conservare ver +conservai conservare ver +conservala conservare ver +conservali conservare ver +conservalo conservare ver +conservammo conservare ver +conservando conservare ver +conservandogli conservare ver +conservandola conservare ver +conservandole conservare ver +conservandoli conservare ver +conservandolo conservare ver +conservandone conservare ver +conservandosi conservare ver +conservandovi conservare ver +conservano conservare ver +conservante conservante nom +conservanti conservante nom +conservar conservare ver +conservarci conservare ver +conservare conservare ver +conservargli conservare ver +conservarla conservare ver +conservarle conservare ver +conservarli conservare ver +conservarlo conservare ver +conservarmi conservare ver +conservarne conservare ver +conservarono conservare ver +conservarsi conservare ver +conservarti conservare ver +conservarvi conservare ver +conservasi conservare ver +conservasse conservare ver +conservassero conservare ver +conservata conservare ver +conservate conservare ver +conservatesi conservare ver +conservatevi conservare ver +conservati conservare ver +conservativa conservativo adj +conservative conservativo adj +conservativi conservativo adj +conservativo conservativo adj +conservato conservare ver +conservatore conservatore nom +conservatori conservatore|conservatorio nom +conservatoria conservatoria nom +conservatorie conservatoria nom +conservatorio conservatorio nom +conservatorismi conservatorismo nom +conservatorismo conservatorismo nom +conservatrice conservatore nom +conservatrici conservatore nom +conservava conservare ver +conservavano conservare ver +conservavo conservare ver +conservazione conservazione nom +conservazioni conservazione nom +conserve conserva nom +conserveranno conservare ver +conserverebbe conservare ver +conserverebbero conservare ver +conserverei conservare ver +conserveremo conservare ver +conserverete conservare ver +conserverà conservare ver +conserverò conservare ver +conservi conservare ver +conserviamo conservare ver +conserviamola conservare ver +conserviate conservare ver +conserviera conserviero adj +conserviere conserviero adj +conservieri conserviero adj +conserviero conserviero adj +conservifici conservificio nom +conservificio conservificio nom +conservino conservare ver +conservo conservare ver +conservò conservare ver +consessi consesso nom +consesso consesso nom +considera considerare ver +considerabile considerabile adj +considerabili considerabile adj +consideraci considerare ver +considerai considerare ver +considerala considerare ver +considerali considerare ver +consideralo considerare ver +considerami considerare ver +considerammo considerare ver +considerando considerare ver +considerandola considerare ver +considerandole considerare ver +considerandoli considerare ver +considerandolo considerare ver +considerandomi considerare ver +considerandone considerare ver +considerandosene considerare ver +considerandosi considerare ver +considerandoti considerare ver +considerano considerare ver +considerante considerare ver +consideranti considerare ver +considerar considerare ver +considerarci considerare ver +considerare considerare ver +considerarla considerare ver +considerarle considerare ver +considerarli considerare ver +considerarlo considerare ver +considerarmi considerare ver +considerarne considerare ver +considerarono considerare ver +considerarsene considerare ver +considerarsi considerare ver +considerarti considerare ver +considerarvi considerare ver +considerasi considerare ver +considerasse considerare ver +considerassero considerare ver +considerassi considerare ver +considerassimo considerare ver +consideraste considerare ver +considerata considerare ver +considerate considerare ver +consideratela considerare ver +consideratelo considerare ver +consideratemi considerare ver +consideratevi considerare ver +considerati considerare ver +considerato considerare ver +considerava considerare ver +consideravamo considerare ver +consideravano considerare ver +consideravate considerare ver +consideravo considerare ver +considerazione considerazione nom +considerazioni considerazione nom +considererai considerare ver +considereranno considerare ver +considererebbe considerare ver +considererebbero considerare ver +considererei considerare ver +considereremmo considerare ver +considereremo considerare ver +considerereste considerare ver +considereresti considerare ver +considererete considerare ver +considererà considerare ver +considererò considerare ver +considerevole considerevole adj +considerevoli considerevole adj +considerevolmente considerevolmente adv +consideri considerare ver +consideriamo considerare ver +consideriamola considerare ver +consideriamolo considerare ver +consideriate considerare ver +considerino considerare ver +considero considerare ver +considerò considerare ver +consigli consiglio nom +consiglia consigliare ver +consigliabile consigliabile adj +consigliabili consigliabile adj +consigliai consigliare ver +consigliami consigliare ver +consigliamo consigliare ver +consigliando consigliare ver +consigliandogli consigliare ver +consigliandola consigliare ver +consigliandole consigliare ver +consigliandoli consigliare ver +consigliandolo consigliare ver +consigliandomi consigliare ver +consigliandone consigliare ver +consigliandosi consigliare ver +consigliandoti consigliare ver +consigliano consigliare ver +consigliante consigliare ver +consigliar consigliare ver +consigliarci consigliare ver +consigliare consigliare ver +consigliargli consigliare ver +consigliarla consigliare ver +consigliarle consigliare ver +consigliarli consigliare ver +consigliarlo consigliare ver +consigliarmi consigliare ver +consigliarne consigliare ver +consigliarono consigliare ver +consigliarsi consigliare ver +consigliartelo consigliare ver +consigliarti consigliare ver +consigliarvi consigliare ver +consigliasse consigliare ver +consigliassero consigliare ver +consigliaste consigliare ver +consigliasti consigliare ver +consigliata consigliare ver +consigliate consigliare ver +consigliatemi consigliare ver +consigliati consigliare ver +consigliato consigliare ver +consigliava consigliare ver +consigliavano consigliare ver +consigliavi consigliare ver +consigliavo consigliare ver +consigliera consigliere nom +consiglieranno consigliare ver +consigliere consigliere nom +consiglierebbe consigliare ver +consiglierebbero consigliare ver +consiglierei consigliare ver +consigliereste consigliare ver +consiglieresti consigliare ver +consiglieri consigliere nom +consiglierà consigliare ver +consiglierò consigliare ver +consiglino consigliare ver +consiglio consiglio nom +consigliò consigliare ver +consiliare consiliare adj +consiliari consiliare adj +consimile consimile adj +consimili consimile adj +consista consistere ver +consistano consistere ver +consiste consistere ver +consistendo consistere ver +consistente consistente adj +consistenti consistente adj +consistenza consistenza nom +consistenze consistenza nom +consisteranno consistere ver +consistere consistere ver +consisterebbe consistere ver +consisterebbero consistere ver +consisterono consistere ver +consisterà consistere ver +consistesse consistere ver +consistessero consistere ver +consisteva consistere ver +consistevano consistere ver +consistita consistere ver +consistite consistere ver +consistiti consistere ver +consistito consistere ver +consistono consistere ver +consoce consocio nom +consoci consocio nom +consocia consociare ver +consociare consociare ver +consociarsi consociare ver +consociata consociato adj +consociate consociato adj +consociati consociato nom +consociato consociare ver +consociazione consociazione nom +consociazioni consociazione nom +consocio consocio nom +consola consolare ver +consolaci consolare ver +consolami consolare ver +consolando consolare ver +consolandola consolare ver +consolandolo consolare ver +consolandosi consolare ver +consolano consolare ver +consolante consolante adj +consolanti consolante adj +consolar consolare ver +consolarci consolare ver +consolare consolare adj +consolari consolare adj +consolarla consolare ver +consolarle consolare ver +consolarli consolare ver +consolarlo consolare ver +consolarmi consolare ver +consolarne consolare ver +consolarono consolare ver +consolarsi consolare ver +consolarti consolare ver +consolasse consolare ver +consolata consolare ver +consolate consolare ver +consolatemi consolare ver +consolatevi consolare ver +consolati consolato nom +consolato consolato nom +consolatore consolatore|consolatorio adj +consolatori consolatore|consolatorio adj +consolatoria consolatorio adj +consolatorio consolatorio adj +consolatrice consolatore adj +consolatrici consolatore adj +consolava consolare ver +consolavano consolare ver +consolazione consolazione nom +consolazioni consolazione nom +console console nom +consolerà consolare ver +consolerò consolare ver +consoli console nom +consoliamoci consolare ver +consolida consolidare ver +consolidaci consolidare ver +consolidamenti consolidamento nom +consolidamento consolidamento nom +consolidando consolidare ver +consolidandolo consolidare ver +consolidandone consolidare ver +consolidandosi consolidare ver +consolidandovi consolidare ver +consolidano consolidare ver +consolidante consolidare ver +consolidanti consolidare ver +consolidar consolidare ver +consolidare consolidare ver +consolidarla consolidare ver +consolidarle consolidare ver +consolidarlo consolidare ver +consolidarne consolidare ver +consolidarono consolidare ver +consolidarsi consolidare ver +consolidasse consolidare ver +consolidassero consolidare ver +consolidata consolidato adj +consolidate consolidato adj +consolidatesi consolidare ver +consolidati consolidare ver +consolidato consolidare ver +consolidatosi consolidare ver +consolidava consolidare ver +consolidavano consolidare ver +consolidazione consolidazione nom +consolidazioni consolidazione nom +consolideranno consolidare ver +consoliderà consolidare ver +consolidi consolidare ver +consolidino consolidare ver +consolido consolidare ver +consolidò consolidare ver +consolino consolare ver +consolle consolle nom +consolo consolare ver +consolò consolare ver +consommé consommé nom +consona consono adj +consonante consonante nom +consonanti consonante nom +consonantica consonantico adj +consonantiche consonantico adj +consonantici consonantico adj +consonantico consonantico adj +consonantismo consonantismo nom +consonanza consonanza nom +consonanze consonanza nom +consonare consonare ver +consonate consonare ver +consonati consonare ver +consonava consonare ver +consone consono adj +consoni consono adj +consono consono adj +consorella consorella nom +consorelle consorella nom +consorte consorte adj +consorteria consorteria nom +consorterie consorteria nom +consorti consorte adj +consortile consortile adj +consortili consortile adj +consorzi consorzio nom +consorziale consorziale adj +consorziali consorziale adj +consorziati consorziato nom +consorziato consorziato nom +consorzio consorzio nom +consta constare ver +constando constare ver +constante constare ver +constanti constare ver +constare constare ver +constata constare ver +constatai constatare ver +constatando constatare ver +constatandone constatare ver +constatano constatare ver +constatar constatare ver +constatare constatare ver +constatarlo constatare ver +constatarne constatare ver +constatarono constatare ver +constatasse constatare ver +constatassero constatare ver +constatata constatare ver +constatate constatare ver +constatati constatare ver +constatato constatare ver +constatava constatare ver +constatavano constatare ver +constatavo constatare ver +constatazione constatazione nom +constatazioni constatazione nom +constate constare ver +constateranno constatare ver +constaterebbe constatare ver +constaterà constatare ver +constati constatare ver +constatiamo constatare ver +constato constare ver +constatò constatare ver +constava constare ver +constavano constare ver +consto constare ver +consueta consueto adj +consuete consueto adj +consueti consueto adj +consueto consueto adj +consuetudinari consuetudinario adj +consuetudinaria consuetudinario adj +consuetudinario consuetudinario adj +consuetudine consuetudine nom +consuetudini consuetudine nom +consulente consulente nom +consulenti consulente nom +consulenza consulenza nom +consulenze consulenza nom +consulta consulta nom +consultabile consultabile adj +consultabili consultabile adj +consultai consultare ver +consultando consultare ver +consultandola consultare ver +consultandoli consultare ver +consultandolo consultare ver +consultandomi consultare ver +consultandone consultare ver +consultandosi consultare ver +consultano consultare ver +consultante consultare ver +consultar consultare ver +consultarci consultare ver +consultare consultare ver +consultarla consultare ver +consultarle consultare ver +consultarli consultare ver +consultarlo consultare ver +consultarmi consultare ver +consultarne consultare ver +consultarono consultare ver +consultarsi consultare ver +consultarti consultare ver +consultarvi consultare ver +consultasse consultare ver +consultassero consultare ver +consultata consultare ver +consultate consultare ver +consultati consultare ver +consultato consultare ver +consultatore consultatore nom +consultatori consultatore nom +consultava consultare ver +consultavano consultare ver +consultavo consultare ver +consultazione consultazione nom +consultazioni consultazione nom +consulte consulta nom +consulteranno consultare ver +consulterebbe consultare ver +consulterei consultare ver +consulteremo consultare ver +consulterà consultare ver +consulterò consultare ver +consulti consulto nom +consultiamo consultare ver +consultino consultare ver +consultiva consultivo adj +consultive consultivo adj +consultivi consultivo adj +consultivo consultivo adj +consulto consulto nom +consultore consultorio adj +consultori consultore|consultorio nom +consultoria consultorio adj +consultorio consultorio nom +consultrice consultore nom +consultò consultare ver +consuma consumere ver +consumaci consumare ver +consumando consumare ver +consumandoli consumare ver +consumandolo consumare ver +consumandone consumare ver +consumandosi consumare ver +consumano consumere ver +consumante consumare ver +consumanti consumare ver +consumar consumare ver +consumare consumare ver +consumargli consumare ver +consumarla consumare ver +consumarle consumare ver +consumarli consumare ver +consumarlo consumare ver +consumarmi consumare ver +consumarne consumare ver +consumarono consumare ver +consumarsi consumare ver +consumarvi consumare ver +consumasse consumare ver +consumassero consumare ver +consumata consumare ver +consumatasi consumare ver +consumate consumare ver +consumatesi consumare ver +consumati consumare ver +consumato consumare ver +consumatore consumatore nom +consumatori consumatore nom +consumatrice consumatore nom +consumatrici consumatore nom +consumava consumare ver +consumavano consumare ver +consumazione consumazione nom +consumazioni consumazione nom +consume consumere ver +consumer consumere ver +consumeranno consumare|consumere ver +consumerebbe consumare|consumere ver +consumerebbero consumare|consumere ver +consumerei consumare|consumere ver +consumeremo consumare|consumere ver +consumerà consumare|consumere ver +consumerò consumare|consumere ver +consumi consumo nom +consumiamo consumare|consumere ver +consumino consumare ver +consumismo consumismo nom +consumista consumista adj +consumistica consumistico adj +consumistiche consumistico adj +consumistici consumistico adj +consumistico consumistico adj +consumo consumo nom +consumò consumare ver +consunta consumere ver +consunte consunto adj +consunti consumere ver +consuntiva consuntivo adj +consuntive consuntivo adj +consuntivi consuntivo adj +consuntivo consuntivo adj +consunto consumere ver +consunzione consunzione nom +consustanziale consustanziale adj +consustanziali consustanziale adj +consustanzialità consustanzialità nom +conta conta nom +contabile contabile adj +contabili contabile adj +contabilità contabilità nom +contabilizza contabilizzare ver +contabilizzando contabilizzare ver +contabilizzare contabilizzare ver +contabilizzata contabilizzare ver +contabilizzate contabilizzare ver +contabilizzati contabilizzare ver +contabilizzato contabilizzare ver +contabilizzazione contabilizzazione nom +contabilmente contabilmente adv +contachilometri contachilometri nom +contaci contare ver +contadi contado nom +contadina contadino adj +contadiname contadiname nom +contadine contadino adj +contadini contadino nom +contadino contadino nom +contado contado nom +contafili contafili nom +contagerà contagiare ver +contagi contagio nom +contagia contagiare ver +contagiando contagiare ver +contagiano contagiare ver +contagiare contagiare ver +contagiarli contagiare ver +contagiarlo contagiare ver +contagiarono contagiare ver +contagiasse contagiare ver +contagiata contagiare ver +contagiate contagiare ver +contagiati contagiare ver +contagiato contagiare ver +contagiava contagiare ver +contagio contagio nom +contagiosa contagioso adj +contagiose contagioso adj +contagiosi contagioso adj +contagiosità contagiosità nom +contagioso contagioso adj +contagiri contagiri nom +contagiò contagiare ver +contagocce contagocce nom +contai contare ver +container container nom +contale contare ver +contalo contare ver +contami contare ver +contamina contaminare ver +contaminaci contaminare ver +contaminando contaminare ver +contaminandola contaminare ver +contaminandole contaminare ver +contaminandoli contaminare ver +contaminandolo contaminare ver +contaminandone contaminare ver +contaminandosi contaminare ver +contaminano contaminare ver +contaminante contaminare ver +contaminanti contaminare ver +contaminare contaminare ver +contaminarla contaminare ver +contaminarli contaminare ver +contaminarlo contaminare ver +contaminarne contaminare ver +contaminarono contaminare ver +contaminarsi contaminare ver +contaminarti contaminare ver +contaminasse contaminare ver +contaminassero contaminare ver +contaminata contaminare ver +contaminate contaminare ver +contaminati contaminare ver +contaminato contaminare ver +contaminatore contaminatore adj +contaminava contaminare ver +contaminavano contaminare ver +contaminazione contaminazione nom +contaminazioni contaminazione nom +contamineranno contaminare ver +contaminerebbero contaminare ver +contaminerà contaminare ver +contamini contaminare ver +contaminino contaminare ver +contaminò contaminare ver +contando contare ver +contandoli contare ver +contandone contare ver +contandosi contare ver +contane contare ver +contano contare ver +contante contante adj +contanti contante nom +contar contare ver +contarci contare ver +contare contare ver +contarla contare ver +contarle contare ver +contarli contare ver +contarlo contare ver +contarne contare ver +contarono contare ver +contarsi contare ver +contasse contare ver +contassero contare ver +contata contare ver +contate contare ver +contateci contare ver +contatemi contare ver +contati contare ver +contato contare ver +contatore contatore nom +contatori contatore nom +contatta contattare ver +contattabile contattabile adj +contattaci contattare ver +contattai contattare ver +contattali contattare ver +contattalo contattare ver +contattami contattare ver +contattando contattare ver +contattandoli contattare ver +contattandolo contattare ver +contattandomi contattare ver +contattandosi contattare ver +contattano contattare ver +contattarci contattare ver +contattare contattare ver +contattarla contattare ver +contattarle contattare ver +contattarli contattare ver +contattarlo contattare ver +contattarmi contattare ver +contattarne contattare ver +contattarono contattare ver +contattarsi contattare ver +contattarti contattare ver +contattarvi contattare ver +contattasse contattare ver +contattassi contattare ver +contattata contattare ver +contattate contattare ver +contattateci contattare ver +contattateli contattare ver +contattatelo contattare ver +contattatemi contattare ver +contattatevi contattare ver +contattati contattare ver +contattato contattare ver +contattava contattare ver +contattavano contattare ver +contatteranno contattare ver +contatteremo contattare ver +contatterà contattare ver +contatterò contattare ver +contatti contatto nom +contattiamo contattare ver +contattino contattare ver +contatto contatto nom +contattore contattore nom +contattori contattore nom +contattò contattare ver +contava contare ver +contavano contare ver +contavate contare ver +contavo contare ver +conte conta|conte nom +contea contea nom +contee contea nom +conteggi conteggio nom +conteggia conteggiare ver +conteggiando conteggiare ver +conteggiano conteggiare ver +conteggiare conteggiare ver +conteggiarli conteggiare ver +conteggiarlo conteggiare ver +conteggiarsi conteggiare ver +conteggiata conteggiare ver +conteggiate conteggiare ver +conteggiati conteggiare ver +conteggiato conteggiare ver +conteggiava conteggiare ver +conteggiavano conteggiare ver +conteggio conteggio nom +conteggiò conteggiare ver +contegni contegno nom +contegno contegno nom +contegnosa contegnoso adj +contempera contemperare ver +contemperamenti contemperamento nom +contemperamento contemperamento nom +contemperando contemperare ver +contemperare contemperare ver +contemperarsi contemperare ver +contemperata contemperare ver +contemperate contemperare ver +contemperato contemperare ver +contemperava contemperare ver +contempla contemplare ver +contemplabile contemplabile adj +contemplabili contemplabile adj +contemplaci contemplare ver +contemplai contemplare ver +contemplando contemplare ver +contemplandola contemplare ver +contemplandolo contemplare ver +contemplandone contemplare ver +contemplandosi contemplare ver +contemplandoti contemplare ver +contemplano contemplare ver +contemplante contemplare ver +contemplanti contemplare ver +contemplar contemplare ver +contemplare contemplare ver +contemplarla contemplare ver +contemplarle contemplare ver +contemplarli contemplare ver +contemplarlo contemplare ver +contemplarne contemplare ver +contemplarono contemplare ver +contemplarsi contemplare ver +contemplarvi contemplare ver +contemplasse contemplare ver +contemplassero contemplare ver +contemplata contemplare ver +contemplate contemplare ver +contemplati contemplare ver +contemplativa contemplativo adj +contemplative contemplativo adj +contemplativi contemplativo adj +contemplativo contemplativo adj +contemplato contemplare ver +contemplatore contemplatore adj +contemplatori contemplatore adj +contemplava contemplare ver +contemplavano contemplare ver +contemplazione contemplazione nom +contemplazioni contemplazione nom +contemplerai contemplare ver +contemplerebbe contemplare ver +contempleremo contemplare ver +contemplerà contemplare ver +contempli contemplare ver +contempliamo contemplare ver +contemplino contemplare ver +contemplo contemplare ver +contemplò contemplare ver +contempo contempo nom +contemporanea contemporaneo adj +contemporaneamente contemporaneamente adv_sup +contemporanee contemporaneo adj +contemporanei contemporaneo adj +contemporaneità contemporaneità nom +contemporaneo contemporaneo adj +contenda contendere ver +contendano contendere ver +contende contendere ver +contendendo contendere ver +contendendola contendere ver +contendendole contendere ver +contendendoselo contendere ver +contendendosi contendere ver +contendente contendente nom +contendenti contendente nom +contender contendere ver +contenderanno contendere ver +contenderci contendere ver +contendere contendere ver +contendergli contendere ver +contenderla contendere ver +contenderle contendere ver +contenderlo contendere ver +contendersela contendere ver +contenderselo contendere ver +contendersi contendere ver +contenderà contendere ver +contendessero contendere ver +contendeva contendere ver +contendevano contendere ver +contendo contendere ver +contendono contendere ver +contenendo contenere ver +contenendola contenere ver +contenendolo contenere ver +contenendone contenere ver +contenendosi contenere ver +contenente contenere ver +contenenti contenere ver +contenenza contenenza nom +contener contenere ver +contenerci contenere ver +contenere contenere ver +contenerla contenere ver +contenerle contenere ver +contenerli contenere ver +contenerlo contenere ver +contenermi contenere ver +contenerne contenere ver +contenersi contenere ver +contenervi contenere ver +contenesse contenere ver +contenessero contenere ver +contenete contenere ver +conteneva contenere ver +contenevano contenere ver +contenga contenere ver +contengano contenere ver +contengo contenere ver +contengono contenere ver +contenimenti contenimento nom +contenimento contenimento nom +contenitore contenitore nom +contenitori contenitore nom +contenne contenere ver +contennero contenere ver +contenta contento adj +contentandosi contentare ver +contentano contentare ver +contentar contentare ver +contentarci contentare ver +contentare contentare ver +contentarono contentare ver +contentarsi contentare ver +contentarti contentare ver +contentata contentare ver +contentati contentare ver +contentato contentare ver +contentatura contentatura nom +contentava contentare ver +contentavano contentare ver +contente contento adj +contenterei contentare ver +contentezza contentezza nom +contenti contento adj +contentiamo contentare ver +contentiamoci contentare ver +contentini contentino nom +contentino contentino nom +contento contento adj +contentò contentare ver +contenuta contenere ver +contenute contenere ver +contenuti contenuto nom +contenutismo contenutismo nom +contenutistica contenutistico adj +contenutisticamente contenutisticamente adv +contenutistiche contenutistico adj +contenutistici contenutistico adj +contenutistico contenutistico adj +contenuto contenere ver +contenzione contenzione nom +contenzioni contenzione nom +contenziosa contenzioso adj +contenziose contenzioso adj +contenziosi contenzioso nom +contenzioso contenzioso nom +conteranno contare ver +conterebbe contare ver +conterebbero contare ver +conterei contare ver +conteremo contare ver +conterete contare ver +conterie conterie nom +contermine contermine adj +contermini contermine adj +conterranea conterraneo adj +conterranee conterraneo adj +conterranei conterraneo nom +conterraneo conterraneo adj +conterranno contenere ver +conterrebbe contenere ver +conterrebbero contenere ver +conterrà contenere ver +conterà contare ver +conterò contare ver +contesa contesa nom +contese contesa nom +contesero contendere ver +contesi conteso adj +conteso contendere ver +contessa conte|contessa nom +contesse conte|contessa nom +contessere contessere ver +contessi contessere ver +contessina contessina nom +contessine contessina nom +contesso contessere ver +contesta contestare ver +contestabile contestabile adj +contestabili contestabile adj +contestai contestare ver +contestando contestare ver +contestandogli contestare ver +contestandola contestare ver +contestandole contestare ver +contestandolo contestare ver +contestandomi contestare ver +contestandone contestare ver +contestandoti contestare ver +contestano contestare ver +contestante contestare ver +contestanti contestare ver +contestar contestare ver +contestare contestare ver +contestargli contestare ver +contestargliela contestare ver +contestarglielo contestare ver +contestarla contestare ver +contestarle contestare ver +contestarli contestare ver +contestarlo contestare ver +contestarmela contestare ver +contestarmi contestare ver +contestarne contestare ver +contestarono contestare ver +contestarti contestare ver +contestasse contestare ver +contestassero contestare ver +contestassi contestare ver +contestata contestare ver +contestatari contestatario adj +contestataria contestatario adj +contestatarie contestatario adj +contestatario contestatario adj +contestate contestare ver +contestategli contestare ver +contestatemi contestare ver +contestati contestare ver +contestato contestare ver +contestatogli contestare ver +contestatore contestatore nom +contestatori contestatore nom +contestatrice contestatore nom +contestatrici contestatore nom +contestava contestare ver +contestavano contestare ver +contestavi contestare ver +contestavo contestare ver +contestazione contestazione nom +contestazioni contestazione nom +conteste conteste|contesto adj +contesterai contestare ver +contesteranno contestare ver +contesterebbe contestare ver +contesterebbero contestare ver +contesterei contestare ver +contesterà contestare ver +contesterò contestare ver +contesti conteste|contesto nom +contestiamo contestare ver +contestino contestare ver +contesto contesto nom +contestuale contestuale adj +contestuali contestuale adj +contestualità contestualità nom +contestualizza contestualizzare ver +contestualmente contestualmente adv +contestò contestare ver +contezza contezza nom +conti conte|conto nom +contiamo contare ver +contiamoci contare ver +contiene contenere ver +contieni contenere ver +contieniti contenere ver +contigua contiguo adj +contigue contiguo adj +contigui contiguo adj +contiguità contiguità nom +contiguo contiguo adj +continentale continentale adj +continentali continentale adj +continentalità continentalità nom +continente continente nom +continenti continente nom +continenza continenza nom +contingenta contingentare ver +contingentamenti contingentamento nom +contingentamento contingentamento nom +contingentare contingentare ver +contingentata contingentare ver +contingentate contingentare ver +contingentati contingentare ver +contingentato contingentare ver +contingente contingente nom +contingenti contingente nom +contingenza contingenza nom +contingenze contingenza nom +contini contino nom +contino contare ver +continua continuare ver +continuaci continuare ver +continuai continuare ver +continuala continuare ver +continuamente continuamente adv +continuammo continuare ver +continuando continuare ver +continuandoci continuare ver +continuandola continuare ver +continuandoli continuare ver +continuandolo continuare ver +continuandone continuare ver +continuandosi continuare ver +continuandovi continuare ver +continuano continuare ver +continuante continuare ver +continuanti continuare ver +continuar continuare ver +continuare continuare ver +continuarla continuare ver +continuarle continuare ver +continuarli continuare ver +continuarlo continuare ver +continuarne continuare ver +continuarono continuare ver +continuarsi continuare ver +continuarvi continuare ver +continuasse continuare ver +continuassero continuare ver +continuassi continuare ver +continuassimo continuare ver +continuaste continuare ver +continuata continuare ver +continuate continuare ver +continuatela continuare ver +continuati continuare ver +continuativa continuativo adj +continuativamente continuativamente adv +continuative continuativo adj +continuativi continuativo adj +continuativo continuativo adj +continuato continuare ver +continuatore continuatore nom +continuatori continuatore nom +continuatrice continuatore nom +continuatrici continuatore nom +continuava continuare ver +continuavamo continuare ver +continuavano continuare ver +continuavi continuare ver +continuavo continuare ver +continuazione continuazione nom +continuazioni continuazione nom +continue continuo adj +continuerai continuare ver +continueranno continuare ver +continuerebbe continuare ver +continuerebbero continuare ver +continuerei continuare ver +continueremmo continuare ver +continueremo continuare ver +continueresti continuare ver +continuerete continuare ver +continuerà continuare ver +continuerò continuare ver +continui continuo adj +continuiamo continuare ver +continuiamola continuare ver +continuiate continuare ver +continuino continuare ver +continuità continuità nom +continuo continuo adj +continuò continuare ver +contitolare contitolare adj +contitolari contitolare nom +conto conto nom +contorce contorcere ver +contorcendo contorcere ver +contorcendosi contorcere ver +contorcere contorcere ver +contorcersi contorcere ver +contorceva contorcere ver +contorcevano contorcere ver +contorcimenti contorcimento nom +contorcimento contorcimento nom +contorcono contorcere ver +contorna contornare ver +contornando contornare ver +contornandosi contornare ver +contornano contornare ver +contornante contornare ver +contornanti contornare ver +contornare contornare ver +contornarsi contornare ver +contornasse contornare ver +contornata contornare ver +contornate contornare ver +contornati contornare ver +contornato contornare ver +contornava contornare ver +contornavano contornare ver +contorni contorno nom +contorniate contornare ver +contorno contorno nom +contorse contorcere ver +contorsione contorsione nom +contorsioni contorsione nom +contorsionismi contorsionismo nom +contorsionismo contorsionismo nom +contorsionista contorsionista nom +contorsioniste contorsionista nom +contorsionisti contorsionista nom +contorta contorto adj +contorte contorto adj +contorti contorcere ver +contorto contorcere ver +contrabbanda contrabbandare ver +contrabbandando contrabbandare ver +contrabbandano contrabbandare ver +contrabbandare contrabbandare ver +contrabbandarli contrabbandare ver +contrabbandarlo contrabbandare ver +contrabbandarono contrabbandare ver +contrabbandasse contrabbandare ver +contrabbandata contrabbandare ver +contrabbandate contrabbandare ver +contrabbandati contrabbandare ver +contrabbandato contrabbandare ver +contrabbandava contrabbandare ver +contrabbandavano contrabbandare ver +contrabbandi contrabbando nom +contrabbandiera contrabbandiere adj +contrabbandiere contrabbandiere nom +contrabbandieri contrabbandiere nom +contrabbando contrabbando nom +contrabbandò contrabbandare ver +contrabbassi contrabbasso nom +contrabbassista contrabbassista nom +contrabbassisti contrabbassista nom +contrabbasso contrabbasso nom +contraccambi contraccambiare ver +contraccambia contraccambiare ver +contraccambiando contraccambiare ver +contraccambiano contraccambiare ver +contraccambiare contraccambiare ver +contraccambiarla contraccambiare ver +contraccambiarlo contraccambiare ver +contraccambiasse contraccambiare ver +contraccambiata contraccambiare ver +contraccambiate contraccambiare ver +contraccambiati contraccambiare ver +contraccambiato contraccambiare ver +contraccambiava contraccambiare ver +contraccambierà contraccambiare ver +contraccambio contraccambio nom +contraccambiò contraccambiare ver +contraccettiva contraccettivo adj +contraccettive contraccettivo adj +contraccettivi contraccettivo adj +contraccettivo contraccettivo adj +contraccezione contraccezione nom +contraccolpi contraccolpo nom +contraccolpo contraccolpo nom +contrada contrada nom +contraddanza contraddanza nom +contraddanze contraddanza nom +contraddetta contraddire ver +contraddette contraddire ver +contraddetti contraddire ver +contraddetto contraddire ver +contraddica contraddire ver +contraddicano contraddire ver +contraddice contraddire ver +contraddicendo contraddire ver +contraddicendosi contraddire ver +contraddicente contraddire ver +contraddicesse contraddire ver +contraddiceva contraddire ver +contraddicevano contraddire ver +contraddici contraddire ver +contraddico contraddire ver +contraddicono contraddire ver +contraddire contraddire ver +contraddirebbe contraddire ver +contraddirebbero contraddire ver +contraddirla contraddire ver +contraddirli contraddire ver +contraddirlo contraddire ver +contraddirmi contraddire ver +contraddirne contraddire ver +contraddirsi contraddire ver +contraddirti contraddire ver +contraddirvi contraddire ver +contraddisse contraddire ver +contraddissero contraddire ver +contraddistingua contraddistinguere ver +contraddistinguano contraddistinguere ver +contraddistingue contraddistinguere ver +contraddistinguendo contraddistinguere ver +contraddistinguendosi contraddistinguere ver +contraddistingueranno contraddistinguere ver +contraddistinguere contraddistinguere ver +contraddistinguerebbe contraddistinguere ver +contraddistinguerebbero contraddistinguere ver +contraddistinguerla contraddistinguere ver +contraddistinguerli contraddistinguere ver +contraddistinguerlo contraddistinguere ver +contraddistinguersi contraddistinguere ver +contraddistinguerà contraddistinguere ver +contraddistinguesse contraddistinguere ver +contraddistingueva contraddistinguere ver +contraddistinguevano contraddistinguere ver +contraddistinguono contraddistinguere ver +contraddistinse contraddistinguere ver +contraddistinsero contraddistinguere ver +contraddistinta contraddistinguere ver +contraddistinte contraddistinguere ver +contraddistinti contraddistinguere ver +contraddistinto contraddistinguere ver +contradditelo contraddire ver +contraddittore contraddittore nom +contraddittori contraddittorio adj +contraddittoria contraddittorio adj +contraddittorie contraddittorio adj +contraddittorio contraddittorio adj +contraddizione contraddizione nom +contraddizioni contraddizione nom +contrade contrada nom +contrae contrarre ver +contraendo contrarre ver +contraendosi contrarre ver +contraente contraente nom +contraenti contraente adj +contraerea contraereo adj +contraeree contraereo adj +contraerei contraereo adj +contraereo contraereo adj +contraesse contrarre ver +contraessero contrarre ver +contraeva contrarre ver +contraevano contrarre ver +contraffare contraffare ver +contraffatte contraffare ver +contraffattore contraffattore nom +contraffattori contraffattore nom +contraffazione contraffazione nom +contraffazioni contraffazione nom +contrafforte contrafforte nom +contrafforti contrafforte nom +contragga contrarre ver +contraggano contrarre ver +contraggenio contraggenio nom +contraggono contrarre ver +contrai contrarre ver +contralti contralto nom +contralto contralto nom +contrammiragli contrammiraglio nom +contrammiraglio contrammiraglio nom +contrapasso contrapasso nom +contrappelli contrappello nom +contrappesa contrappesare ver +contrappesata contrappesare ver +contrappesate contrappesare ver +contrappesati contrappesare ver +contrappesato contrappesare ver +contrappesi contrappeso nom +contrappeso contrappeso nom +contrappone contrapporre ver +contrapponendo contrapporre ver +contrapponendogli contrapporre ver +contrapponendola contrapporre ver +contrapponendole contrapporre ver +contrapponendoli contrapporre ver +contrapponendolo contrapporre ver +contrapponendosi contrapporre ver +contrapponendovi contrapporre ver +contrapponesse contrapporre ver +contrapponeva contrapporre ver +contrapponevano contrapporre ver +contrapponga contrapporre ver +contrappongano contrapporre ver +contrappongo contrapporre ver +contrappongono contrapporre ver +contrapponi contrapporre ver +contrapponibile contrapponibile adj +contrapporgli contrapporre ver +contrapporla contrapporre ver +contrapporle contrapporre ver +contrapporli contrapporre ver +contrapporlo contrapporre ver +contrapporranno contrapporre ver +contrapporre contrapporre ver +contrapporrebbe contrapporre ver +contrapporrei contrapporre ver +contrapporrà contrapporre ver +contrapporsi contrapporre ver +contrapporti contrapporre ver +contrapporvi contrapporre ver +contrappose contrapporre ver +contrapposero contrapporre ver +contrapposizione contrapposizione nom +contrapposizioni contrapposizione nom +contrapposta contrapporre ver +contrapposte contrapporre ver +contrapposti contrapporre ver +contrapposto contrapporre ver +contrappunti contrappunto nom +contrappuntista contrappuntista nom +contrappuntiste contrappuntista nom +contrappuntisti contrappuntista nom +contrappunto contrappunto nom +contrari contrario adj +contraria contrario adj +contrariamente contrariamente adv +contrariando contrariare ver +contrariante contrariare ver +contrarianti contrariare ver +contrariare contrariare ver +contrariarli contrariare ver +contrariarlo contrariare ver +contrariarsi contrariare ver +contrariata contrariare ver +contrariate contrariare ver +contrariati contrariare ver +contrariato contrariare ver +contrariavano contrariare ver +contrarie contrario adj +contrarietà contrarietà nom +contrario contrario nom +contrariò contrariare ver +contrarla contrarre ver +contrarli contrarre ver +contrarlo contrarre ver +contrarranno contrarre ver +contrarre contrarre ver +contrarrebbe contrarre ver +contrarrà contrarre ver +contrarsi contrarre ver +contras contras nom +contrasse contrarre ver +contrassegna contrassegnare ver +contrassegnala contrassegnare ver +contrassegnando contrassegnare ver +contrassegnandole contrassegnare ver +contrassegnandoli contrassegnare ver +contrassegnandolo contrassegnare ver +contrassegnano contrassegnare ver +contrassegnante contrassegnare ver +contrassegnare contrassegnare ver +contrassegnarle contrassegnare ver +contrassegnarli contrassegnare ver +contrassegnarlo contrassegnare ver +contrassegnarono contrassegnare ver +contrassegnata contrassegnare ver +contrassegnate contrassegnare ver +contrassegnati contrassegnare ver +contrassegnato contrassegnare ver +contrassegnava contrassegnare ver +contrassegnavano contrassegnare ver +contrassegnerà contrassegnare ver +contrassegni contrassegno nom +contrassegno contrassegno nom +contrassegnò contrassegnare ver +contrassero contrarre ver +contrasta contrastare ver +contrastando contrastare ver +contrastandola contrastare ver +contrastandoli contrastare ver +contrastandolo contrastare ver +contrastandone contrastare ver +contrastandosi contrastare ver +contrastano contrastare ver +contrastante contrastante adj +contrastanti contrastante adj +contrastar contrastare ver +contrastare contrastare ver +contrastarla contrastare ver +contrastarle contrastare ver +contrastarli contrastare ver +contrastarlo contrastare ver +contrastarmi contrastare ver +contrastarne contrastare ver +contrastarono contrastare ver +contrastarsi contrastare ver +contrastarti contrastare ver +contrastarvi contrastare ver +contrastasse contrastare ver +contrastassero contrastare ver +contrastata contrastare ver +contrastate contrastato adj +contrastati contrastare ver +contrastato contrastare ver +contrastava contrastare ver +contrastavano contrastare ver +contrasteranno contrastare ver +contrasterebbe contrastare ver +contrasterebbero contrastare ver +contrasterà contrastare ver +contrasti contrasto nom +contrastino contrastare ver +contrasto contrasto nom +contrastò contrastare ver +contratta contrarre ver +contrattacca contrattaccare ver +contrattaccando contrattaccare ver +contrattaccano contrattaccare ver +contrattaccanti contrattaccare ver +contrattaccare contrattaccare ver +contrattaccarlo contrattaccare ver +contrattaccarono contrattaccare ver +contrattaccata contrattaccare ver +contrattaccate contrattaccare ver +contrattaccati contrattaccare ver +contrattaccato contrattaccare ver +contrattaccava contrattaccare ver +contrattaccavano contrattaccare ver +contrattaccherà contrattaccare ver +contrattacchi contrattacco nom +contrattacco contrattacco nom +contrattaccò contrattaccare ver +contrattando contrattare ver +contrattano contrattare ver +contrattare contrattare ver +contrattarono contrattare ver +contrattata contrattare ver +contrattate contrattare ver +contrattati contrattare ver +contrattato contrattare ver +contrattava contrattare ver +contrattavano contrattare ver +contrattazione contrattazione nom +contrattazioni contrattazione nom +contratte contrarre ver +contrattempi contrattempo nom +contrattempo contrattempo nom +contratterà contrattare ver +contratti contratto nom +contrattile contrattile adj +contrattili contrattile adj +contrattilità contrattilità nom +contratto contratto nom +contrattuale contrattuale adj +contrattuali contrattuale adj +contrattualmente contrattualmente adv +contrattura contrattura nom +contratture contrattura nom +contrattò contrattare ver +contravveleni contravveleno nom +contravveleno contravveleno nom +contravvenendo contravvenire ver +contravvenga contravvenire ver +contravvengano contravvenire ver +contravvengo contravvenire ver +contravvengono contravvenire ver +contravvenire contravvenire ver +contravvenirle contravvenire ver +contravvenisse contravvenire ver +contravveniva contravvenire ver +contravvenivano contravvenire ver +contravvenne contravvenire ver +contravvennero contravvenire ver +contravventore contravventore nom +contravventori contravventore nom +contravvenuta contravvenire ver +contravvenuti contravvenire ver +contravvenuto contravvenire ver +contravvenzione contravvenzione nom +contravvenzioni contravvenzione nom +contravverrebbe contravvenire ver +contravviene contravvenire ver +contrazione contrazione nom +contrazioni contrazione nom +contribuendo contribuire ver +contribuendone contribuire ver +contribuendovi contribuire ver +contribuente contribuente nom +contribuenti contribuente nom +contribuiamo contribuire ver +contribuii contribuire ver +contribuir contribuire ver +contribuirai contribuire ver +contribuiranno contribuire ver +contribuirci contribuire ver +contribuire contribuire ver +contribuirebbe contribuire ver +contribuirebbero contribuire ver +contribuirei contribuire ver +contribuiremmo contribuire ver +contribuirne contribuire ver +contribuirono contribuire ver +contribuirvi contribuire ver +contribuirà contribuire ver +contribuirò contribuire ver +contribuisca contribuire ver +contribuiscano contribuire ver +contribuisce contribuire ver +contribuisci contribuire ver +contribuisco contribuire ver +contribuiscono contribuire ver +contribuisse contribuire ver +contribuissero contribuire ver +contribuissi contribuire ver +contribuiste contribuire ver +contribuite contribuire ver +contribuiti contribuire ver +contribuito contribuire ver +contribuiva contribuire ver +contribuivano contribuire ver +contribuivo contribuire ver +contributi contributo nom +contributiva contributivo adj +contributive contributivo adj +contributivi contributivo adj +contributivo contributivo adj +contributo contributo nom +contributore contributore nom +contributori contributore nom +contribuzione contribuzione nom +contribuzioni contribuzione nom +contribuì contribuire ver +contristare contristare ver +contristarono contristare ver +contristarvi contristare ver +contristato contristare ver +contrita contrito adj +contrite contrito adj +contriti contrito adj +contrito contrito adj +contrizione contrizione nom +contrizioni contrizione nom +contro contro pre +controbatta controbattere ver +controbatte controbattere ver +controbattendo controbattere ver +controbattere controbattere ver +controbatteria controbatteria nom +controbatterle controbattere ver +controbatterlo controbattere ver +controbatterono controbattere ver +controbatterò controbattere ver +controbatteva controbattere ver +controbatti controbattere ver +controbatto controbattere ver +controbattono controbattere ver +controbattuta controbattere ver +controbattute controbattere ver +controbattuto controbattere ver +controbilancerà controbilanciare ver +controbilanci controbilanciare ver +controbilancia controbilanciare ver +controbilanciando controbilanciare ver +controbilanciandosi controbilanciare ver +controbilanciano controbilanciare ver +controbilanciante controbilanciare ver +controbilanciare controbilanciare ver +controbilanciarli controbilanciare ver +controbilanciarne controbilanciare ver +controbilanciarsi controbilanciare ver +controbilanciata controbilanciare ver +controbilanciate controbilanciare ver +controbilanciati controbilanciare ver +controbilanciato controbilanciare ver +controbilanciava controbilanciare ver +controbilanciavano controbilanciare ver +controbilancino controbilanciare ver +controbilanciò controbilanciare ver +controcampi controcampo nom +controcampo controcampo nom +controcarro controcarro adj +controcorrente controcorrente adv +controdadi controdado nom +controdado controdado nom +controfagotti controfagotto nom +controfagotto controfagotto nom +controfasce controfascia nom +controffensiva controffensiva nom +controffensive controffensiva nom +controffensivi controffensivo adj +controffensivo controffensivo adj +controfigura controfigura nom +controfigure controfigura nom +controfiletto controfiletto nom +controfilo controfilo nom +controfirma controfirma nom +controfirmare controfirmare ver +controfirmata controfirmare ver +controfirmate controfirmare ver +controfirmati controfirmare ver +controfirmato controfirmare ver +controfirmo controfirmare ver +controfirmò controfirmare ver +controfuochi controfuoco nom +controfuoco controfuoco nom +controindica controindicare ver +controindicano controindicare ver +controindicata controindicare ver +controindicate controindicare ver +controindicati controindicare ver +controindicato controindicare ver +controindicazione controindicazione nom +controindicazioni controindicazione nom +controindichino controindicare ver +controlla controllare ver +controllabile controllabile adj +controllabili controllabile adj +controllabilità controllabilità nom +controllai controllare ver +controllale controllare ver +controllali controllare ver +controllando controllare ver +controllandola controllare ver +controllandole controllare ver +controllandoli controllare ver +controllandolo controllare ver +controllandone controllare ver +controllandosi controllare ver +controllane controllare ver +controllano controllare ver +controllante controllare ver +controllanti controllare ver +controllar controllare ver +controllarci controllare ver +controllare controllare ver +controllargli controllare ver +controllarla controllare ver +controllarle controllare ver +controllarli controllare ver +controllarlo controllare ver +controllarmi controllare ver +controllarne controllare ver +controllarono controllare ver +controllarsi controllare ver +controllarti controllare ver +controllasse controllare ver +controllassero controllare ver +controllassi controllare ver +controllaste controllare ver +controllata controllare ver +controllate controllato adj +controllatela controllare ver +controllatele controllare ver +controllateli controllare ver +controllatelo controllare ver +controllatemi controllare ver +controllati controllato adj +controllato controllare ver +controllava controllare ver +controllavano controllare ver +controllavo controllare ver +controllerai controllare ver +controlleranno controllare ver +controllerebbe controllare ver +controllerebbero controllare ver +controllerei controllare ver +controlleremo controllare ver +controllereste controllare ver +controlleresti controllare ver +controllerà controllare ver +controllerò controllare ver +controlli controllo nom +controlliamo controllare ver +controllino controllare ver +controllo controllo nom +controllore controllore nom +controllori controllore nom +controllò controllare ver +controluce controluce adv +contromano contromano adv +contromanovra contromanovra nom +contromanovre contromanovra nom +contromarca contromarca nom +contromarche contromarca nom +contromezzana contromezzana nom +contromisura contromisura nom +contromisure contromisura nom +controparte controparte nom +controparti controparte nom +contropartita contropartita nom +contropartite contropartita nom +contropelo contropelo adv +contropiede contropiede nom +contropiedi contropiede nom +controporta controporta nom +controporte controporta nom +controprestazione controprestazione nom +controprestazioni controprestazione nom +controproducente controproducente adj +controproducenti controproducente adj +controproposta controproposta nom +controproposte controproposta nom +controprova controprova nom +controprove controprova nom +contropunta contropunta nom +controquerela controquerela nom +controquerele controquerela nom +controra controra nom +contrordine contrordine nom +contrordini contrordine nom +controriforma controriforma nom +controriforme controriforma nom +controriformista controriformista nom +controriformisti controriformista nom +controripa controripa nom +controrivoluzione controrivoluzione nom +controrivoluzioni controrivoluzione nom +controrotaia controrotaia nom +controrotaie controrotaia nom +controscarpa controscarpa nom +controscarpe controscarpa nom +controscena controscena nom +controscene controscena nom +controsensi controsenso nom +controsenso controsenso nom +controspallina controspallina nom +controspalline controspallina nom +controspionaggio controspionaggio nom +controtesta controtesta nom +controvalore controvalore nom +controvalori controvalore nom +controvapore controvapore nom +controventi controvento nom +controvento controvento adv +controversa controverso adj +controverse controverso adj +controversi controverso adj +controversia controversia nom +controversie controversia nom +controverso controverso adj +controverta controvertere ver +controvertere controvertere ver +controvertibile controvertibile adj +controvertibili controvertibile adj +controvertici controvertere ver +controvoglia controvoglia adv +contumace contumace adj +contumaci contumace adj +contumacia contumacia nom +contumaciale contumaciale adj +contumelia contumelia nom +contumelie contumelia nom +contundente contundente adj +contundenti contundente adj +conturba conturbare ver +conturbante conturbante adj +conturbanti conturbante adj +contusa contundere ver +contuse contuso nom +contusi contuso nom +contusione contusione nom +contusioni contusione nom +contuso contundere ver +contuttociò contuttociò adv +contò contare ver +conurbazione conurbazione nom +conurbazioni conurbazione nom +convalescente convalescente adj +convalescenti convalescente nom +convalescenza convalescenza nom +convalescenze convalescenza nom +convalescenziario convalescenziario nom +convalida convalida nom +convalidando convalidare ver +convalidano convalidare ver +convalidare convalidare ver +convalidarla convalidare ver +convalidarle convalidare ver +convalidarli convalidare ver +convalidarne convalidare ver +convalidarono convalidare ver +convalidasse convalidare ver +convalidata convalidare ver +convalidate convalidare ver +convalidati convalidare ver +convalidato convalidare ver +convalidava convalidare ver +convalidazione convalidazione nom +convalide convalida nom +convaliderà convalidare ver +convalidi convalidare ver +convalidino convalidare ver +convalido convalidare ver +convalidò convalidare ver +convegni convegno nom +convegnisti convegnista nom +convegno convegno nom +convenendo convenire ver +convenevole convenevole nom +convenevoli convenevole adj +convenga convenire ver +convengano convenire ver +convengo convenire ver +convengono convenire ver +conveniamo convenire ver +conveniate convenire ver +conveniente conveniente adj +convenienti conveniente adj +convenienza convenienza nom +convenienze convenienza nom +convenimmo convenire ver +convenir convenire ver +convenire convenire ver +convenirne convenire ver +convenirsi convenire ver +convenisse convenire ver +convenissero convenire ver +convenite convenire ver +conveniva convenire ver +convenivano convenire ver +convenne convenire ver +convennero convenire ver +conventi convento nom +conventicola conventicola nom +conventicole conventicola nom +convento convento nom +conventuale conventuale adj +conventuali conventuale adj +convenuta convenire ver +convenute convenire ver +convenuti convenuto nom +convenuto convenire ver +convenzionale convenzionale adj +convenzionali convenzionale adj +convenzionalismi convenzionalismo nom +convenzionalismo convenzionalismo nom +convenzionalità convenzionalità nom +convenzionalmente convenzionalmente adv +convenzionarsi convenzionare ver +convenzionata convenzionare ver +convenzionate convenzionato adj +convenzionati convenzionato adj +convenzionato convenzionare ver +convenzione convenzione nom +convenzioni convenzione nom +converga convergere ver +convergano convergere ver +converge convergere ver +convergendo convergere ver +convergente convergente adj +convergenti convergente adj +convergenza convergenza nom +convergenze convergenza nom +convergeranno convergere ver +convergere convergere ver +convergerebbe convergere ver +convergerà convergere ver +convergessero convergere ver +convergeva convergere ver +convergevano convergere ver +convergo convergere ver +convergono convergere ver +converrai convenire ver +converranno convenire ver +converrebbe convenire ver +converrebbero convenire ver +converremo convenire ver +converrete convenire ver +converrà convenire ver +conversa convergere ver +conversaci conversare ver +conversami conversare ver +conversando conversare ver +conversano conversare ver +conversante conversare ver +conversanti conversare ver +conversar conversare ver +conversare conversare ver +conversarono conversare ver +conversati conversare ver +conversato conversare ver +conversatore conversatore nom +conversatori conversatore nom +conversatrice conversatore nom +conversatrici conversatore nom +conversava conversare ver +conversavano conversare ver +conversazione conversazione nom +conversazioni conversazione nom +converse converso adj +conversero convergere ver +converserà conversare ver +conversevoli conversevole adj +conversi converso nom +conversiamo conversare ver +conversino conversare ver +conversione conversione nom +conversioni conversione nom +converso converso nom +conversò conversare ver +converta convertire ver +convertano convertire ver +converte convertire ver +convertendo convertire ver +convertendola convertire ver +convertendole convertire ver +convertendoli convertire ver +convertendolo convertire ver +convertendone convertire ver +convertendosi convertire ver +convertente convertire ver +converti convertire ver +convertiamo convertire ver +convertibile convertibile adj +convertibili convertibile adj +convertibilità convertibilità nom +convertii convertire ver +convertilo convertire ver +convertir convertire ver +convertiranno convertire ver +convertirci convertire ver +convertire convertire ver +convertirebbe convertire ver +convertirei convertire ver +convertirla convertire ver +convertirle convertire ver +convertirli convertire ver +convertirlo convertire ver +convertirmi convertire ver +convertirne convertire ver +convertirono convertire ver +convertirsi convertire ver +convertirti convertire ver +convertirvi convertire ver +convertirà convertire ver +convertirò convertire ver +convertisse convertire ver +convertissero convertire ver +convertita convertire ver +convertite convertire ver +convertitesi convertire ver +convertitevi convertire ver +convertiti convertire ver +convertito convertire ver +convertitore convertitore nom +convertiva convertire ver +convertivano convertire ver +converto convertire ver +convertono convertire ver +convertì convertire ver +convessa convesso adj +convesse convesso adj +convessi convesso adj +convessità convessità nom +convesso convesso adj +convettiva convettivo adj +convettive convettivo adj +convettivi convettivo adj +convettivo convettivo adj +convettore convettore nom +convezione convezione nom +convezioni convezione nom +conviene convenire ver +convieni convenire ver +convinca convincere ver +convincano convincere ver +convince convincere ver +convincemmo convincere ver +convincendo convincere ver +convincendoci convincere ver +convincendola convincere ver +convincendole convincere ver +convincendoli convincere ver +convincendolo convincere ver +convincendomi convincere ver +convincendone convincere ver +convincendosi convincere ver +convincente convincente adj +convincenti convincente adj +convincer convincere ver +convincerai convincere ver +convinceranno convincere ver +convincercene convincere ver +convincerci convincere ver +convincere convincere ver +convincerebbe convincere ver +convincerei convincere ver +convinceremo convincere ver +convinceresti convincere ver +convincerete convincere ver +convincerla convincere ver +convincerle convincere ver +convincerli convincere ver +convincerlo convincere ver +convincermene convincere ver +convincermi convincere ver +convincerne convincere ver +convincersene convincere ver +convincersi convincere ver +convincerti convincere ver +convincervi convincere ver +convincerà convincere ver +convincerò convincere ver +convincesse convincere ver +convincessero convincere ver +convincete convincere ver +convincetemi convincere ver +convinceva convincere ver +convincevano convincere ver +convincevo convincere ver +convinci convincere ver +convinciamo convincere ver +convincimenti convincimento nom +convincimento convincimento nom +convincimi convincere ver +convinciti convincere ver +convinco convincere ver +convincono convincere ver +convinse convincere ver +convinsero convincere ver +convinsi convincere ver +convinta convincere ver +convinte convincere ver +convinti convincere ver +convinto convincere ver +convinzione convinzione nom +convinzioni convinzione nom +convisse convivere ver +convissero convivere ver +convissi convivere ver +convissuto convivere ver +convita convitare ver +convitare convitare ver +convitati convitato nom +convitato convitato nom +conviti convito nom +convito convito nom +convitti convitto nom +convitto convitto nom +convittore convittore nom +convittori convittore nom +convittrici convittore nom +conviva convivere ver +convivano convivere ver +convive convivere ver +convivendo convivere ver +convivente convivente nom +conviventi convivente adj +convivenza convivenza nom +convivenze convivenza nom +conviverci convivere ver +convivere convivere ver +convivesse convivere ver +convivessero convivere ver +conviveva convivere ver +convivevano convivere ver +convivi convivio nom +conviviale conviviale adj +conviviali conviviale adj +conviviamo convivere ver +convivio convivio nom +convivo convivere ver +convivono convivere ver +convivranno convivere ver +convoca convocare ver +convocando convocare ver +convocandoli convocare ver +convocandolo convocare ver +convocano convocare ver +convocare convocare ver +convocarla convocare ver +convocarle convocare ver +convocarli convocare ver +convocarlo convocare ver +convocarne convocare ver +convocarono convocare ver +convocarsi convocare ver +convocasse convocare ver +convocata convocare ver +convocate convocare ver +convocati convocare ver +convocato convocare ver +convocava convocare ver +convocavano convocare ver +convocazione convocazione nom +convocazioni convocazione nom +convocheranno convocare ver +convocherà convocare ver +convocherò convocare ver +convochi convocare ver +convochino convocare ver +convoco convocare ver +convocò convocare ver +convogli convoglio nom +convoglia convogliare ver +convogliamo convogliare ver +convogliando convogliare ver +convogliandola convogliare ver +convogliandole convogliare ver +convogliandoli convogliare ver +convogliandolo convogliare ver +convogliano convogliare ver +convoglianti convogliare ver +convogliare convogliare ver +convogliarla convogliare ver +convogliarle convogliare ver +convogliarli convogliare ver +convogliarlo convogliare ver +convogliarne convogliare ver +convogliarono convogliare ver +convogliarsi convogliare ver +convogliarvi convogliare ver +convogliasse convogliare ver +convogliata convogliare ver +convogliate convogliare ver +convogliati convogliare ver +convogliato convogliare ver +convogliava convogliare ver +convogliavano convogliare ver +convoglieranno convogliare ver +convoglierà convogliare ver +convoglino convogliare ver +convoglio convoglio nom +convogliò convogliare ver +convola convolare ver +convolando convolare ver +convolano convolare ver +convolare convolare ver +convolarono convolare ver +convolata convolare ver +convolati convolare ver +convolato convolare ver +convolava convolare ver +convoleranno convolare ver +convolerà convolare ver +convolvoli convolvolo nom +convolvolo convolvolo nom +convolvulacee convolvulacee nom +convolò convolare ver +convulsa convulso adj +convulse convulso adj +convulsi convulso adj +convulsione convulsione nom +convulsioni convulsione nom +convulsiva convulsivo adj +convulsivante convulsivante adj +convulsivanti convulsivante adj +convulsive convulsivo adj +convulsivi convulsivo adj +convulsivo convulsivo adj +convulso convulso adj +coobbligati coobbligato nom +coolie coolie nom +coopera cooperare ver +cooperaci cooperare ver +cooperando cooperare ver +cooperano cooperare ver +cooperante cooperare ver +cooperanti cooperare ver +cooperare cooperare ver +cooperarono cooperare ver +cooperasse cooperare ver +cooperassero cooperare ver +cooperate cooperare ver +cooperativa cooperativo adj +cooperative cooperativo adj +cooperativi cooperativo adj +cooperativismo cooperativismo nom +cooperativistica cooperativistico adj +cooperativistiche cooperativistico adj +cooperativistico cooperativistico adj +cooperativo cooperativo adj +cooperato cooperare ver +cooperatore cooperatore nom +cooperatori cooperatore nom +cooperatrice cooperatore adj +cooperatrici cooperatore nom +cooperava cooperare ver +cooperavano cooperare ver +cooperazione cooperazione nom +cooperazioni cooperazione nom +coopereranno cooperare ver +coopererà cooperare ver +cooperi cooperare ver +cooperiamo cooperare ver +cooperino cooperare ver +cooperò cooperare ver +coopta cooptare ver +cooptaci cooptare ver +cooptando cooptare ver +cooptano cooptare ver +cooptare cooptare ver +cooptarmi cooptare ver +cooptarne cooptare ver +cooptarono cooptare ver +cooptata cooptare ver +cooptate cooptare ver +cooptati cooptare ver +cooptato cooptare ver +cooptazione cooptazione nom +cooptò cooptare ver +coordina coordinare ver +coordinaci coordinare ver +coordinamenti coordinamento nom +coordinamento coordinamento nom +coordinando coordinare ver +coordinandoci coordinare ver +coordinandola coordinare ver +coordinandoli coordinare ver +coordinandomi coordinare ver +coordinandone coordinare ver +coordinandosi coordinare ver +coordinano coordinare ver +coordinante coordinare ver +coordinanti coordinare ver +coordinar coordinare ver +coordinarci coordinare ver +coordinare coordinare ver +coordinarla coordinare ver +coordinarle coordinare ver +coordinarli coordinare ver +coordinarlo coordinare ver +coordinarmi coordinare ver +coordinarne coordinare ver +coordinarono coordinare ver +coordinarsi coordinare ver +coordinarti coordinare ver +coordinarvi coordinare ver +coordinasse coordinare ver +coordinassero coordinare ver +coordinata coordinato adj +coordinate coordinata nom +coordinatevi coordinare ver +coordinati coordinare ver +coordinativa coordinativo adj +coordinative coordinativo adj +coordinativi coordinativo adj +coordinativo coordinativo adj +coordinato coordinato adj +coordinatore coordinatore nom +coordinatori coordinatore nom +coordinatrice coordinatore nom +coordinatrici coordinatore nom +coordinava coordinare ver +coordinavano coordinare ver +coordinazione coordinazione nom +coordinerà coordinare ver +coordini coordinare ver +coordiniamo coordinare ver +coordiniamoci coordinare ver +coordinino coordinare ver +coordino coordinare ver +coordinò coordinare ver +coorte coorte nom +coorti coorte nom +copale copale nom +copechi copeco nom +copeco copeco nom +coperchi coperchio nom +coperchio coperchio nom +copernicana copernicano adj +copernicane copernicano adj +copernicani copernicano adj +copernicano copernicano adj +coperta coprire ver +copertamente copertamente adv +coperte coprire ver +coperti coprire ver +copertina copertina nom +copertine copertina nom +coperto coprire ver +copertone copertone nom +copertoni copertone nom +copertura copertura nom +coperture copertura nom +copi copiare ver +copia copia nom +copiaci copiare ver +copiai copiare ver +copiala copiare ver +copiale copiare ver +copialettere copialettere nom +copialo copiare ver +copiami copiare ver +copiamo copiare ver +copiamole copiare ver +copiando copiare ver +copiandoci copiare ver +copiandogli copiare ver +copiandola copiare ver +copiandole copiare ver +copiandoli copiare ver +copiandolo copiare ver +copiandone copiare ver +copiandosi copiare ver +copiandovi copiare ver +copiano copiare ver +copiar copiare ver +copiarci copiare ver +copiare copiare ver +copiarglielo copiare ver +copiarla copiare ver +copiarle copiare ver +copiarli copiare ver +copiarlo copiare ver +copiarmelo copiare ver +copiarmi copiare ver +copiarne copiare ver +copiarono copiare ver +copiarsele copiare ver +copiarselo copiare ver +copiarsi copiare ver +copiartele copiare ver +copiartelo copiare ver +copiarti copiare ver +copiarvi copiare ver +copiasse copiare ver +copiassero copiare ver +copiassi copiare ver +copiata copiare ver +copiate copiare ver +copiatelo copiare ver +copiati copiare ver +copiativa copiativo adj +copiative copiativo adj +copiato copiare ver +copiatore copiatore nom +copiatori copiatore nom +copiatrice copiatore|copiatrice nom +copiatrici copiatore nom +copiatura copiatura nom +copiature copiatura nom +copiava copiare ver +copiavano copiare ver +copiavi copiare ver +copiavo copiare ver +copie copia nom +copierai copiare ver +copieranno copiare ver +copierebbero copiare ver +copierei copiare ver +copierà copiare ver +copierò copiare ver +copiglia copiglia nom +copiglie copiglia nom +copino copiare ver +copio copiare ver +copione copione nom +copioni copione nom +copiosa copioso adj +copiose copioso adj +copiosi copioso adj +copiosità copiosità nom +copioso copioso adj +copista copista nom +copiste copista nom +copisteria copisteria nom +copisterie copisteria nom +copisti copista nom +copiò copiare ver +coppa coppa nom +coppale coppale nom +coppe coppa nom +coppella coppella nom +coppellate coppellare ver +coppellati coppellare ver +coppellato coppellare ver +coppelle coppella nom +coppelli coppellare ver +coppello coppellare ver +coppetta coppetta nom +coppette coppetta nom +coppi coppo nom +coppia coppia nom +coppie coppia nom +coppiere coppiere nom +coppieri coppiere nom +coppiglia coppiglia nom +coppo coppo nom +coppola coppola nom +coppole coppola nom +copra coprire ver +coprano coprire ver +copre coprire ver +coprendo coprire ver +coprendogli coprire ver +coprendola coprire ver +coprendole coprire ver +coprendoli coprire ver +coprendolo coprire ver +coprendomi coprire ver +coprendone coprire ver +coprendosi coprire ver +coprente coprire ver +coprenti coprire ver +copresidente copresidente nom +copresidenti copresidente nom +copri coprire ver +copriamo coprire ver +copricanna copricanna nom +copricapo copricapo nom +copricostume copricostume nom +coprifuoco coprifuoco nom +coprigiunto coprigiunto nom +coprii coprire ver +copriletto copriletto nom +coprili coprire ver +coprimi coprire ver +coprimmo coprire ver +coprine coprire ver +coprir coprire ver +copriradiatore copriradiatore nom +copriradiatori copriradiatore nom +copriranno coprire ver +coprirci coprire ver +coprire coprire ver +coprirebbe coprire ver +coprirebbero coprire ver +coprireste coprire ver +coprirete coprire ver +coprirgli coprire ver +coprirla coprire ver +coprirle coprire ver +coprirli coprire ver +coprirlo coprire ver +coprirmi coprire ver +coprirne coprire ver +coprirono coprire ver +coprirsi coprire ver +coprirti coprire ver +coprirà coprire ver +coprirò coprire ver +coprisse coprire ver +coprissero coprire ver +copristi coprire ver +coprite coprire ver +copritele coprire ver +copritemi coprire ver +copriti coprire ver +copriva coprire ver +coprivano coprire ver +coprivo coprire ver +copro coprire ver +coprodotte coprodotto ver +coproduzione coproduzione nom +coproduzioni coproduzione nom +coprofagia coprofagia nom +coprofagie coprofagia nom +coprolalia coprolalia nom +coprolalie coprolalia nom +coprono coprire ver +coprì coprire ver +copula copula nom +copulazione copulazione nom +copule copula nom +copyright copyright nom +copywriter copywriter nom +coque coque nom +coraggio coraggio nom +coraggiosa coraggioso adj +coraggiosamente coraggiosamente adv +coraggiose coraggioso adj +coraggiosi coraggioso adj +coraggioso coraggioso adj +corale corale adj +corali corale adj +coralità coralità nom +coralla coralla nom +corallifera corallifero adj +corallina corallino adj +coralline corallino adj +corallini corallino adj +corallino corallino adj +corame corame nom +coramella coramella nom +coramelle coramella nom +corami corame nom +corani corano nom +corano corano nom +corata corata nom +corate corata nom +coratella coratella nom +corazza corazza nom +corazzai corazzare ver +corazzando corazzare ver +corazzano corazzare ver +corazzare corazzare ver +corazzarsi corazzare ver +corazzata corazzato adj +corazzate corazzato adj +corazzati corazzato adj +corazzato corazzato adj +corazzatura corazzatura nom +corazzature corazzatura nom +corazze corazza nom +corazzi corazzare ver +corazziere corazziere nom +corazzieri corazziere nom +corazzo corazzare ver +corba corba nom +corbe corba nom +corbeille corbeille nom +corbella corbellare ver +corbelleria corbelleria nom +corbellerie corbelleria nom +corbelli corbello nom +corbellino corbellare ver +corbello corbello nom +corbezzoli corbezzolo nom +corbezzolo corbezzolo nom +corcoro corcoro nom +corda corda nom +cordai cordaio nom +cordaio cordaio nom +cordame cordame nom +cordami cordame nom +cordata cordata nom +cordate cordata nom +cordati cordati nom +corde corda nom +corderia corderia nom +corderie corderia nom +cordiale cordiale adj +cordiali cordiale adj +cordialità cordialità nom +cordialmente cordialmente adv +cordiera cordiera nom +cordiere cordiera nom +cordigli cordiglio nom +cordigliera cordigliera nom +cordigliere cordigliera nom +cordiglio cordiglio nom +cordini cordino nom +cordino cordino nom +cordite cordite nom +cordofoni cordofono nom +cordofono cordofono nom +cordoglio cordoglio nom +cordonale cordonale adj +cordonali cordonale adj +cordonata cordonata nom +cordonate cordonata nom +cordone cordone nom +cordoni cordone nom +core core nom +corea corea nom +coreana coreano adj +coreane coreano adj +coreani coreano adj +coreano coreano adj +coree corea nom +coregoni coregono nom +coreici coreico adj +coreico coreico adj +coreografa coreografo nom +coreografe coreografo nom +coreografi coreografo nom +coreografia coreografia nom +coreografica coreografico adj +coreografiche coreografico adj +coreografici coreografico adj +coreografico coreografico adj +coreografie coreografia nom +coreografo coreografo nom +coretti coretto nom +coretto coretto nom +coreuta coreuta nom +coreuti coreuta nom +cori core|coro nom +coriacea coriaceo adj +coriacee coriaceo adj +coriacei coriaceo adj +coriaceo coriaceo adj +coriambi coriambo nom +coriambo coriambo nom +coriandoli coriandolo nom +coriandolo coriandolo nom +corica coricare ver +coricando coricare ver +coricandoli coricare ver +coricandosi coricare ver +coricano coricare ver +coricare coricare ver +coricarmi coricare ver +coricarsi coricare ver +coricarti coricare ver +coricata coricare ver +coricate coricare ver +coricati coricare ver +coricato coricare ver +coricava coricare ver +corico coricare ver +coricò coricare ver +corifea corifeo nom +corifee corifeo nom +corifei corifeo nom +corifeo corifeo nom +corimbi corimbo nom +corimbo corimbo nom +corindone corindone nom +corindoni corindone nom +corinzi corinzio adj +corinzia corinzio adj +corinzio corinzio adj +corion corion nom +corista corista nom +coriste corista nom +coristi corista nom +corizza corizza nom +cormi cormo nom +cormo cormo nom +cormofite cormofita nom +cormorani cormorano nom +cormorano cormorano nom +corna corno nom +cornacchia cornacchia nom +cornacchie cornacchia nom +cornalina cornalina nom +cornamusa cornamusa nom +cornamuse cornamusa nom +cornata cornata nom +cornate cornata nom +cornea cornea nom +corneale corneale adj +corneali corneale adj +cornee corneo adj +cornei corneo adj +corneo corneo adj +corner corner nom +cornetta cornetta nom +cornette cornetta nom +cornetti cornetto nom +cornettista cornettista nom +cornettisti cornettista nom +cornetto cornetto nom +cornice cornice nom +cornici cornice nom +cornicione cornicione nom +cornicioni cornicione nom +cornificato cornificare ver +corniola corniola nom +corniole corniola nom +cornioli corniolo nom +corniolo corniolo nom +cornista cornista nom +corniste cornista nom +cornisti cornista nom +corno corno nom +cornucopia cornucopia nom +cornucopie cornucopia nom +cornuta cornuto adj +cornute cornuto adj +cornuti cornuto adj +cornuto cornuto adj +coro coro nom +corografia corografia nom +corografica corografico adj +corografiche corografico adj +corografici corografico adj +corografico corografico adj +corografie corografia nom +coroide coroide nom +coroidea coroideo adj +coroidei coroideo adj +coroideo coroideo adj +corolla corolla nom +corollari corollario nom +corollario corollario nom +corolle corolla nom +corona corona nom +coronaci coronare ver +coronale coronale adj +coronali coronale adj +coronamenti coronamento nom +coronamento coronamento nom +coronando coronare ver +coronandolo coronare ver +coronano coronare ver +coronar coronare ver +coronare coronare ver +coronari coronario adj +coronaria coronario adj +coronarie coronaria nom +coronario coronario adj +coronarlo coronare ver +coronarono coronare ver +coronarsi coronare ver +coronata coronare ver +coronate coronare ver +coronati coronare ver +coronato coronare ver +coronava coronare ver +coronavano coronare ver +corone corona nom +coroneranno coronare ver +coronerà coronare ver +coroni coronare ver +coronide coronide nom +coronidi coronide nom +coronino coronare ver +corono coronare ver +coronò coronare ver +corpetti corpetto nom +corpetto corpetto nom +corpi corpo nom +corpino corpino nom +corpo corpo nom +corporale corporale adj +corporali corporale adj +corporalmente corporalmente adv +corporation corporation nom +corporativa corporativo adj +corporative corporativo adj +corporativi corporativo adj +corporativismi corporativismo nom +corporativismo corporativismo nom +corporativistici corporativistico adj +corporativo corporativo adj +corporatura corporatura nom +corporature corporatura nom +corporazione corporazione nom +corporazioni corporazione nom +corporea corporeo adj +corporee corporeo adj +corporei corporeo adj +corporeità corporeità nom +corporeo corporeo adj +corposa corposo adj +corpose corposo adj +corposi corposo adj +corposo corposo adj +corpulenta corpulento adj +corpulente corpulento adj +corpulenti corpulento adj +corpulento corpulento adj +corpulenza corpulenza nom +corpus corpus nom +corpuscolare corpuscolare adj +corpuscolari corpuscolare adj +corpuscoli corpuscolo nom +corpuscolo corpuscolo nom +corr corre ver +corra correre ver +corrai corre ver +corrano correre ver +corrasione corrasione nom +corre correre ver +correa correo nom +correda corredare ver +corredali corredare ver +corredando corredare ver +corredandola corredare ver +corredandole corredare ver +corredandoli corredare ver +corredandolo corredare ver +corredano corredare ver +corredare corredare ver +corredarla corredare ver +corredarle corredare ver +corredarli corredare ver +corredarlo corredare ver +corredarono corredare ver +corredarsi corredare ver +corredasse corredare ver +corredata corredare ver +corredate corredare ver +corredati corredare ver +corredato corredare ver +corredava corredare ver +corredavano corredare ver +correderà corredare ver +correderò corredare ver +corredi corredo nom +corrediamo corredare ver +corredino corredare ver +corredo corredo nom +corredò corredare ver +corree correo nom +corregga correggere ver +correggano correggere ver +corregge correggere ver +correggendo correggere ver +correggendogli correggere ver +correggendola correggere ver +correggendole correggere ver +correggendoli correggere ver +correggendolo correggere ver +correggendone correggere ver +correggendosi correggere ver +correggente correggere ver +correggenti correggere ver +corregger correggere ver +correggerai correggere ver +correggeranno correggere ver +correggerci correggere ver +correggere correggere ver +correggerebbe correggere ver +correggerebbero correggere ver +correggerei correggere ver +correggeremo correggere ver +correggeresti correggere ver +correggerete correggere ver +correggergli correggere ver +correggerla correggere ver +correggerle correggere ver +correggerli correggere ver +correggerlo correggere ver +correggermeli correggere ver +correggermi correggere ver +correggerne correggere ver +correggersi correggere ver +correggerti correggere ver +correggerà correggere ver +correggerò correggere ver +correggesse correggere ver +correggessero correggere ver +correggessi correggere ver +correggete correggere ver +correggetela correggere ver +correggeteli correggere ver +correggetelo correggere ver +correggetemi correggere ver +correggeva correggere ver +correggevano correggere ver +correggevo correggere ver +correggi correggere ver +correggia correggia nom +correggiamo correggere ver +correggiamole correggere ver +correggiamoli correggere ver +correggiate correggere ver +correggiato correggiato nom +correggibile correggibile adj +correggibili correggibile adj +correggila correggere ver +correggile correggere ver +correggili correggere ver +correggilo correggere ver +correggimi correggere ver +correggitelo correggere ver +correggiti correggere ver +correggo correggere ver +correggono correggere ver +corregionale corregionale nom +corregionali corregionale nom +correi correo nom +correità correità nom +correla correlare ver +correlaci correlare ver +correlando correlare ver +correlandole correlare ver +correlandoli correlare ver +correlandolo correlare ver +correlandone correlare ver +correlandosi correlare ver +correlano correlare ver +correlante correlare ver +correlare correlare ver +correlarla correlare ver +correlarle correlare ver +correlarli correlare ver +correlarono correlare ver +correlarsi correlare ver +correlata correlare ver +correlate correlare ver +correlati correlare ver +correlativa correlativo adj +correlativamente correlativamente adv +correlative correlativo adj +correlativi correlativo adj +correlativo correlativo adj +correlato correlare ver +correlatrice correlatrice nom +correlava correlare ver +correlavano correlare ver +correlazione correlazione nom +correlazioni correlazione nom +correli correlare ver +correligionari correligionario nom +correligionario correligionario nom +correlino correlare ver +correlo correlare ver +correlò correlare ver +correndo correre ver +correndogli correre ver +correndole correre ver +correndone correre ver +corrente corrente nom +correntemente correntemente adv +correnti corrente nom +correntista correntista nom +correntisti correntista nom +correo correo nom +correr correre ver +correrai correre ver +correranno correre ver +correrci correre ver +correre correre ver +correrebbe correre ver +correrebbero correre ver +correrei correre ver +correremmo correre ver +correremo correre ver +correresti correre ver +correrete correre ver +corrergli correre ver +correrle correre ver +correrli correre ver +correrlo correre ver +correrne correre ver +corrersi correre ver +correrti correre ver +corrervi correre ver +correrà correre ver +correrò correre ver +corresponsabile corresponsabile adj +corresponsabili corresponsabile adj +corresponsabilità corresponsabilità nom +corresponsione corresponsione nom +corresponsioni corresponsione nom +corresse correre ver +corressero correre ver +corressi correre ver +corressimo correre ver +correste correre ver +correte correre ver +corretta corretto adj +correttamente correttamente adv +corrette correggere ver +correttezza correttezza nom +correttezze correttezza nom +corretti correggere ver +correttiva correttivo adj +correttive correttivo adj +correttivi correttivo adj +correttivo correttivo adj +corretto correggere ver +correttore correttore nom +correttori correttore nom +correttrice correttore nom +correttrici correttore nom +correva correre ver +correvamo correre ver +correvano correre ver +correvate correre ver +correvi correre ver +correvo correre ver +correzionale correzionale adj +correzionali correzionale adj +correzione correzione nom +correzioni correzione nom +corri correre ver +corriamo correre ver +corriamoci correre ver +corrida corrida nom +corride corrida nom +corridoi corridoio nom +corridoio corridoio nom +corridore corridore nom +corridori corridore nom +corriera corriera nom +corriere corriera|corriere nom +corrieri corriere nom +corrigenda corrigendo adj +corrigendi corrigendo adj +corrimani corrimano nom +corrimano corrimano nom +corrimi correre ver +corrine correre ver +corrispettiva corrispettivo adj +corrispettive corrispettivo adj +corrispettivi corrispettivo nom +corrispettivo corrispettivo nom +corrisponda corrispondere ver +corrispondano corrispondere ver +corrisponde corrispondere ver +corrispondendo corrispondere ver +corrispondendogli corrispondere ver +corrispondente corrispondente adj +corrispondentemente corrispondentemente adv +corrispondenti corrispondente adj +corrispondenza corrispondenza nom +corrispondenze corrispondenza nom +corrisponderanno corrispondere ver +corrispondere corrispondere ver +corrisponderebbe corrispondere ver +corrisponderebbero corrispondere ver +corrispondergli corrispondere ver +corrisponderle corrispondere ver +corrisponderlo corrispondere ver +corrisponderne corrispondere ver +corrispondersi corrispondere ver +corrispondervi corrispondere ver +corrisponderà corrispondere ver +corrispondesse corrispondere ver +corrispondessero corrispondere ver +corrispondete corrispondere ver +corrispondeva corrispondere ver +corrispondevano corrispondere ver +corrispondi corrispondere ver +corrispondo corrispondere ver +corrispondono corrispondere ver +corrispose corrispondere ver +corrisposero corrispondere ver +corrisposta corrispondere ver +corrisposte corrispondere ver +corrisposti corrispondere ver +corrisposto corrispondere ver +corriva corrivo adj +corrive corrivo adj +corrivo corrivo adj +corro correre ver +corrobora corroborare ver +corroborando corroborare ver +corroborano corroborare ver +corroborante corroborante adj +corroboranti corroborante adj +corroborare corroborare ver +corroborarla corroborare ver +corroborarono corroborare ver +corroborassero corroborare ver +corroborata corroborare ver +corroborate corroborare ver +corroborati corroborare ver +corroborato corroborare ver +corroboravano corroborare ver +corroborazione corroborazione nom +corroborerebbe corroborare ver +corroborerebbero corroborare ver +corrobori corroborare ver +corroborino corroborare ver +corroboro corroborare ver +corroborò corroborare ver +corroda corrodere ver +corrode corrodere ver +corrodendo corrodere ver +corrodendoli corrodere ver +corroder corrodere ver +corrodere corrodere ver +corrodersi corrodere ver +corroderà corrodere ver +corrodeva corrodere ver +corrodevano corrodere ver +corrodi corrodere ver +corrodono corrodere ver +corrompa corrompere ver +corrompano corrompere ver +corrompe corrompere ver +corrompendo corrompere ver +corrompendola corrompere ver +corrompendoli corrompere ver +corrompendolo corrompere ver +corrompendone corrompere ver +corrompendosi corrompere ver +corrompente corrompere ver +corromper corrompere ver +corromperanno corrompere ver +corrompere corrompere ver +corromperla corrompere ver +corromperle corrompere ver +corromperli corrompere ver +corromperlo corrompere ver +corrompermi corrompere ver +corromperne corrompere ver +corrompersi corrompere ver +corromperà corrompere ver +corrompesse corrompere ver +corrompessero corrompere ver +corrompeva corrompere ver +corrompevano corrompere ver +corrompo corrompere ver +corrompono corrompere ver +corrono correre ver +corrosa corrodere ver +corrose corrodere ver +corrosero corrodere ver +corrosi corrodere ver +corrosione corrosione nom +corrosioni corrosione nom +corrosiva corrosivo adj +corrosive corrosivo adj +corrosivi corrosivo adj +corrosività corrosività nom +corrosivo corrosivo adj +corroso corrodere ver +corrotta corrompere ver +corrotte corrotto adj +corrotti corrotto adj +corrotto corrompere ver +corrucci corruccio nom +corrucciata corrucciare ver +corrucciate corrucciare ver +corrucciati corrucciare ver +corrucciato corrucciare ver +corruccio corruccio nom +corruga corrugare ver +corrugamenti corrugamento nom +corrugamento corrugamento nom +corrugare corrugare ver +corrugata corrugare ver +corrugate corrugare ver +corrugati corrugare ver +corrugato corrugare ver +corrugò corrugare ver +corruppe corrompere ver +corruppero corrompere ver +corrusca corrusco adj +corrusco corrusco adj +corruttela corruttela nom +corruttele corruttela nom +corruttibile corruttibile adj +corruttibili corruttibile adj +corruttore corruttore nom +corruttori corruttore nom +corruttrice corruttore adj +corruzione corruzione nom +corruzioni corruzione nom +corrà corre ver +corrò corre ver +corsa corsa|corso nom +corsaletti corsaletto nom +corsaletto corsaletto nom +corsara corsaro adj +corsare corsaro adj +corsari corsaro nom +corsaro corsaro nom +corse corsa|corso nom +corsero correre ver +corsetteria corsetteria nom +corsetti corsetto nom +corsetto corsetto nom +corsi corso nom +corsia corsia nom +corsie corsia nom +corsiere corsiero nom +corsieri corsiero nom +corsiero corsiero nom +corsista corsista nom +corsisti corsista nom +corsivi corsivo nom +corsivista corsivista nom +corsivisti corsivista nom +corsivo corsivo nom +corso corso nom +corsoio corsoio adj +corta corto adj +corte corte nom +cortecce corteccia nom +corteccia corteccia nom +corteggeranno corteggiare ver +corteggerà corteggiare ver +corteggi corteggio nom +corteggia corteggiare ver +corteggiamenti corteggiamento nom +corteggiamento corteggiamento nom +corteggiando corteggiare ver +corteggiandola corteggiare ver +corteggiandolo corteggiare ver +corteggiano corteggiare ver +corteggiare corteggiare ver +corteggiarla corteggiare ver +corteggiarle corteggiare ver +corteggiarlo corteggiare ver +corteggiarsi corteggiare ver +corteggiata corteggiare ver +corteggiate corteggiare ver +corteggiati corteggiare ver +corteggiato corteggiare ver +corteggiatore corteggiatore nom +corteggiatori corteggiatore nom +corteggiatrice corteggiatore nom +corteggiatrici corteggiatore nom +corteggiava corteggiare ver +corteggiavano corteggiare ver +corteggino corteggiare ver +corteggio corteggio nom +corteggiò corteggiare ver +cortei corteo nom +corteo corteo nom +cortese cortese adj +cortesemente cortesemente adv +cortesi cortese adj +cortesia cortesia nom +cortesie cortesia nom +cortezza cortezza nom +corti corto adj +corticale corticale adj +corticali corticale adj +cortigiana cortigiana|cortigiano nom +cortigiane cortigiana|cortigiano nom +cortigianeria cortigianeria nom +cortigianesca cortigianesco adj +cortigianesco cortigianesco adj +cortigiani cortigiano nom +cortigiano cortigiano adj +cortile cortile nom +cortili cortile nom +cortina cortina nom +cortinaggio cortinaggio nom +cortinari cortinario nom +cortinario cortinario nom +cortine cortina nom +cortisone cortisone nom +cortisonica cortisonico adj +cortisoniche cortisonico adj +cortisonici cortisonico adj +cortisonico cortisonico nom +corto corto adj +cortocircuiti cortocircuito nom +cortocircuito cortocircuito nom +cortometraggi cortometraggio nom +cortometraggio cortometraggio nom +corvetta corvetta nom +corvette corvetta nom +corvi corvo nom +corvina corvino adj +corvine corvino adj +corvini corvino adj +corvino corvino adj +corvo corvo nom +corvè corvè nom +cos cos sw +cosa cosa nom_sup +cosacca cosacco nom +cosacche cosacco nom +cosacchi cosacco nom +cosacco cosacco nom +cosca cosca nom +cosce coscia nom +cosche cosca nom +cosci coscio nom +coscia coscia nom +cosciale cosciale adj +cosciali cosciale adj +cosciente cosciente adj +coscienti cosciente adj +coscienza coscienza nom +coscienze coscienza nom +coscienziosa coscienzioso adj +coscienziosamente coscienziosamente adv +coscienziose coscienzioso adj +coscienziosi coscienzioso adj +coscienziosità coscienziosità nom +coscienzioso coscienzioso adj +coscio coscio nom +cosciotti cosciotto nom +cosciotto cosciotto nom +coscrisse coscrivere ver +coscritta coscrivere ver +coscritte coscrivere ver +coscritti coscritto nom +coscritto coscrivere ver +coscrive coscrivere ver +coscrivere coscrivere ver +coscrizione coscrizione nom +coscrizioni coscrizione nom +cose cosa nom_sup +cosecante cosecante nom +coseni coseno nom +coseno coseno nom +cosi coso nom_sup +cosicchè cosicchè con +cosicché cosicché con +cosiddetta cosiddetto adj +cosiddette cosiddetto adj +cosiddetti cosiddetto adj +cosiddetto cosiddetto adj +cosiffatte cosiffatto adj +cosinusoide cosinusoide nom +cosmesi cosmesi nom +cosmetica cosmetico adj +cosmetiche cosmetico adj +cosmetici cosmetico adj +cosmetico cosmetico adj +cosmetologia cosmetologia nom +cosmica cosmico adj +cosmiche cosmico adj +cosmici cosmico adj +cosmico cosmico adj +cosmo cosmo nom +cosmodromi cosmodromo nom +cosmodromo cosmodromo nom +cosmogonia cosmogonia nom +cosmogonie cosmogonia nom +cosmografi cosmografo nom +cosmografia cosmografia nom +cosmografie cosmografia nom +cosmografo cosmografo nom +cosmologi cosmologo nom +cosmologia cosmologia nom +cosmologica cosmologico adj +cosmologiche cosmologico adj +cosmologici cosmologico adj +cosmologico cosmologico adj +cosmologie cosmologia nom +cosmologo cosmologo nom +cosmonauta cosmonauta nom +cosmonaute cosmonauta nom +cosmonauti cosmonauta nom +cosmonautica cosmonautica nom +cosmonave cosmonave nom +cosmopolita cosmopolita adj +cosmopolite cosmopolita adj +cosmopoliti cosmopolita adj +cosmopolitismo cosmopolitismo nom +coso coso nom_sup +cosparge cospargere ver +cospargendo cospargere ver +cospargendola cospargere ver +cospargendoli cospargere ver +cospargendolo cospargere ver +cospargendomi cospargere ver +cospargendone cospargere ver +cospargendosi cospargere ver +cospargerci cospargere ver +cospargere cospargere ver +cospargerla cospargere ver +cospargerle cospargere ver +cospargerli cospargere ver +cospargerlo cospargere ver +cospargermi cospargere ver +cospargersi cospargere ver +cospargervi cospargere ver +cospargerò cospargere ver +cospargete cospargere ver +cospargeva cospargere ver +cospargevano cospargere ver +cospargi cospargere ver +cospargo cospargere ver +cospargono cospargere ver +cosparsa cospargere ver +cosparse cospargere ver +cosparsero cospargere ver +cosparsi cospargere ver +cosparso cospargere ver +cospetto cospetto nom +cospicua cospicuo adj +cospicue cospicuo adj +cospicui cospicuo adj +cospicuità cospicuità nom +cospicuo cospicuo adj +cospira cospirare ver +cospirando cospirare ver +cospirano cospirare ver +cospirare cospirare ver +cospirarono cospirare ver +cospirassero cospirare ver +cospirato cospirare ver +cospiratore cospiratore nom +cospiratori cospiratore nom +cospiratrice cospiratore nom +cospiratrici cospiratore nom +cospirava cospirare ver +cospiravano cospirare ver +cospirazione cospirazione nom +cospirazioni cospirazione nom +cospirerà cospirare ver +cospiro cospirare ver +cospirò cospirare ver +cosse cuocere ver +cossero cuocere ver +cossi cuocere ver +costa costa nom +costaggiù costaggiù adv +costagli costare ver +costai costare ver +costale costale adj +costali costale adj +costando costare ver +costandogli costare ver +costano costare ver +costantana costantana nom +costante costante adj +costantemente costantemente adv +costanti costante adj +costanza costanza nom +costanze costanza nom +costar costare ver +costarci costare ver +costare costare ver +costargli costare ver +costaricana costaricano adj +costaricane costaricano adj +costaricani costaricano adj +costaricano costaricano adj +costarle costare ver +costarmi costare ver +costarono costare ver +costarti costare ver +costarvi costare ver +costasse costare ver +costassero costare ver +costata costare ver +costatagli costatare ver +costatando costatare ver +costatano costatare ver +costatare costatare ver +costatato costatare ver +costate costare ver +costati costare ver +costatino costatare ver +costato costato nom +costatò costatare ver +costava costare ver +costavano costare ver +coste costa nom +costeggerete costeggiare ver +costeggerà costeggiare ver +costeggia costeggiare ver +costeggiando costeggiare ver +costeggiandola costeggiare ver +costeggiandolo costeggiare ver +costeggiandone costeggiare ver +costeggiano costeggiare ver +costeggiante costeggiare ver +costeggianti costeggiare ver +costeggiare costeggiare ver +costeggiarlo costeggiare ver +costeggiarono costeggiare ver +costeggiata costeggiare ver +costeggiate costeggiare ver +costeggiati costeggiare ver +costeggiato costeggiare ver +costeggiava costeggiare ver +costeggiavano costeggiare ver +costeggio costeggiare ver +costeggiò costeggiare ver +costei costei pro +costella costellare ver +costellando costellare ver +costellano costellare ver +costellare costellare ver +costellarono costellare ver +costellata costellare ver +costellate costellare ver +costellati costellare ver +costellato costellare ver +costellavano costellare ver +costellazione costellazione nom +costellazioni costellazione nom +costelleranno costellare ver +costellerà costellare ver +costelli costellare ver +costello costellare ver +costellò costellare ver +costeranno costare ver +costerebbe costare ver +costerebbero costare ver +costerna costernare ver +costernata costernare ver +costernati costernare ver +costernato costernare ver +costernazione costernazione nom +costerà costare ver +costi costo nom +costiera costiero adj +costiere costiero adj +costieri costiero adj +costiero costiero adj +costina costina nom +costine costina nom +costino costare ver +costipa costipare ver +costipamento costipamento nom +costipando costipare ver +costipare costipare ver +costipata costipare ver +costipati costipare ver +costipato costipare ver +costipazione costipazione nom +costipazioni costipazione nom +costituenda costituendo adj +costituende costituendo adj +costituendi costituendo adj +costituendo costituire ver +costituendola costituire ver +costituendole costituire ver +costituendoli costituire ver +costituendolo costituire ver +costituendone costituire ver +costituendosi costituire ver +costituendovi costituire ver +costituente costituente adj +costituenti costituente adj +costituiamo costituire ver +costituiranno costituire ver +costituirci costituire ver +costituire costituire ver +costituirebbe costituire ver +costituirebbero costituire ver +costituiremo costituire ver +costituirla costituire ver +costituirle costituire ver +costituirlo costituire ver +costituirmi costituire ver +costituirne costituire ver +costituirono costituire ver +costituirsi costituire ver +costituirvi costituire ver +costituirà costituire ver +costituisca costituire ver +costituiscano costituire ver +costituisce costituire ver +costituisco costituire ver +costituiscono costituire ver +costituisse costituire ver +costituissero costituire ver +costituita costituire ver +costituite costituire ver +costituitesi costituire ver +costituiti costituire ver +costituito costituire ver +costituitosi costituire ver +costituiva costituire ver +costituivano costituire ver +costituivo costituire ver +costituta costituto adj +costituti costituto nom +costitutiva costitutivo adj +costitutive costitutivo adj +costitutivi costitutivo adj +costitutivo costitutivo adj +costituto costituto nom +costitutore costitutore nom +costitutori costitutore nom +costituzionale costituzionale adj +costituzionali costituzionale adj +costituzionalismo costituzionalismo nom +costituzionalista costituzionalista nom +costituzionaliste costituzionalista nom +costituzionalisti costituzionalista nom +costituzionalità costituzionalità nom +costituzionalmente costituzionalmente adv +costituzione costituzione nom +costituzioni costituzione nom +costituì costituire ver +costo costo nom +costola costola nom +costole costola nom +costoletta costoletta nom +costolette costoletta nom +costolone costolone nom +costoloni costolone nom +costone costone nom +costoni costone nom +costoro costoro pro +costosa costoso adj +costose costoso adj +costosi costoso adj +costoso costoso adj +costretta costringere ver +costrette costringere ver +costretti costringere ver +costretto costringere ver +costringa costringere ver +costringano costringere ver +costringe costringere ver +costringendo costringere ver +costringendoci costringere ver +costringendola costringere ver +costringendole costringere ver +costringendoli costringere ver +costringendolo costringere ver +costringendomi costringere ver +costringendone costringere ver +costringendosi costringere ver +costringente costringere ver +costringerai costringere ver +costringeranno costringere ver +costringerci costringere ver +costringere costringere ver +costringerebbe costringere ver +costringerebbero costringere ver +costringeremo costringere ver +costringerla costringere ver +costringerle costringere ver +costringerli costringere ver +costringerlo costringere ver +costringermi costringere ver +costringerne costringere ver +costringersi costringere ver +costringerti costringere ver +costringervi costringere ver +costringerà costringere ver +costringerò costringere ver +costringesse costringere ver +costringessero costringere ver +costringete costringere ver +costringetemi costringere ver +costringeva costringere ver +costringevano costringere ver +costringi costringere ver +costringiamo costringere ver +costringimi costringere ver +costringo costringere ver +costringono costringere ver +costrinse costringere ver +costrinsero costringere ver +costrinsi costringere ver +costrittiva costrittivo adj +costrittive costrittivo adj +costrittivi costrittivo adj +costrittivo costrittivo adj +costrittore costrittore adj +costrittori costrittore adj +costrittrice costrittore adj +costrizione costrizione nom +costrizioni costrizione nom +costruendo costruire ver +costruendoci costruire ver +costruendogli costruire ver +costruendola costruire ver +costruendole costruire ver +costruendoli costruire ver +costruendolo costruire ver +costruendone costruire ver +costruendosela costruire ver +costruendosi costruire ver +costruendovi costruire ver +costruiamo costruire ver +costruiamoci costruire ver +costruibile costruibile adj +costruibili costruibile adj +costruii costruire ver +costruimmo costruire ver +costruir costruire ver +costruirai costruire ver +costruiranno costruire ver +costruirci costruire ver +costruire costruire ver +costruirebbe costruire ver +costruirebbero costruire ver +costruirei costruire ver +costruiremo costruire ver +costruirgli costruire ver +costruirgliene costruire ver +costruirla costruire ver +costruirle costruire ver +costruirli costruire ver +costruirlo costruire ver +costruirmi costruire ver +costruirne costruire ver +costruirono costruire ver +costruirsela costruire ver +costruirsele costruire ver +costruirsene costruire ver +costruirsi costruire ver +costruirti costruire ver +costruirvi costruire ver +costruirà costruire ver +costruirò costruire ver +costruisca costruire ver +costruiscano costruire ver +costruisce costruire ver +costruisci costruire ver +costruiscici costruire ver +costruiscile costruire ver +costruiscilo costruire ver +costruisco costruire ver +costruiscono costruire ver +costruisse costruire ver +costruissero costruire ver +costruisti costruire ver +costruita costruire ver +costruite costruire ver +costruitevi costruire ver +costruiti costruire ver +costruito costruire ver +costruiva costruire ver +costruivamo costruire ver +costruivano costruire ver +costruivo costruire ver +costrutti costrutto nom +costruttiva costruttivo adj +costruttivamente costruttivamente adv +costruttive costruttivo adj +costruttivi costruttivo adj +costruttivo costruttivo adj +costrutto costrutto nom +costruttore costruttore adj +costruttori costruttore nom +costruttrice costruttore adj +costruttrici costruttore adj +costruzione costruzione nom +costruzioni costruzione nom +costruì costruire ver +costui costui pro +costuma costumare ver +costumano costumare ver +costumanza costumanza nom +costumanze costumanza nom +costumare costumare ver +costumata costumare ver +costumatezza costumatezza nom +costumati costumare ver +costumato costumare ver +costumava costumare ver +costumavano costumare ver +costume costume nom +costumi costume nom +costumino costumare ver +costumista costumista nom +costumiste costumista nom +costumisti costumista nom +costura costura nom +costà costà adv +costì costì adv +costò costare ver +così così adv_sup +cosï cosï sw +cotale cotale adj +cotangente cotangente nom +cotangenti cotangente nom +cotanta cotanto adj +cotante cotanto adj +cotanti cotanto adj +cotanto cotanto adj +cotechini cotechino nom +cotechino cotechino nom +cotenna cotenna nom +cotenne cotenna nom +cotesto cotesto pro +cotica cotica nom +cotiche cotica nom +cotile cotile nom +cotiledone cotiledone nom +cotiledoni cotiledone nom +cotili cotile nom +cotillon cotillon nom +cotogna cotogna nom +cotognata cotognata nom +cotogne cotogna nom +cotogni cotogno nom +cotogno cotogno nom +cotoletta cotoletta nom +cotolette cotoletta nom +cotonata cotonare ver +cotonate cotonare ver +cotonati cotonare ver +cotonato cotonare ver +cotone cotone nom +cotoni cotone nom +cotoniera cotoniero adj +cotoniere cotoniero adj +cotonieri cotoniero adj +cotoniero cotoniero adj +cotonifici cotonificio nom +cotonificio cotonificio nom +cotonina cotonina nom +cotonosa cotonoso adj +cotonose cotonoso adj +cotonosi cotonoso adj +cotonoso cotonoso adj +cotta cotta nom +cottage cottage nom +cotte cuocere ver +cotti cuocere ver +cottimi cottimo nom +cottimisti cottimista nom +cottimo cottimo nom +cotto cotto nom +cottura cottura nom +cotture cottura nom +coturni coturno nom +coturnice coturnice nom +coturnici coturnice nom +coturno coturno nom +coulisse coulisse nom +coulomb coulomb nom +couplet couplet nom +coupon coupon nom +coupè coupè nom +coutenti coutente nom +cova cova nom +covaci covare ver +covala covare ver +covale covare ver +covalente covalente adj +covalenti covalente adj +covalenza covalenza nom +covando covare ver +covandole covare ver +covano covare ver +covante covare ver +covare covare ver +covarla covare ver +covarle covare ver +covarlo covare ver +covarono covare ver +covarsi covare ver +covasse covare ver +covassi covare ver +covata covata nom +covate covare ver +covati covare ver +covato covare ver +covava covare ver +covavano covare ver +covavo covare ver +cove cova nom +coverà covare ver +covi covo nom +covile covile nom +covili covile nom +covino covare ver +covo covo nom +covolume covolume nom +covone covone nom +covoni covone nom +covò covare ver +coxite coxite nom +coyote coyote nom +cozza cozza nom +cozzale cozzare ver +cozzali cozzare ver +cozzalo cozzare ver +cozzando cozzare ver +cozzano cozzare ver +cozzante cozzare ver +cozzanti cozzare ver +cozzar cozzare ver +cozzare cozzare ver +cozzarono cozzare ver +cozzasse cozzare ver +cozzata cozzare ver +cozzato cozzare ver +cozzava cozzare ver +cozzavano cozzare ver +cozze cozza nom +cozzerebbe cozzare ver +cozzi cozzo nom +cozzino cozzare ver +cozzo cozzo nom +cozzone cozzone nom +cozzoni cozzone nom +cozzò cozzare ver +crac crac nom +crack crack nom +cracker cracker nom +cracking cracking nom +crafen crafen nom +crampi crampo nom +crampo crampo nom +crani cranio nom +craniale craniale adj +craniali craniale adj +cranica cranico adj +craniche cranico adj +cranici cranico adj +cranico cranico adj +cranio cranio nom +craniologia craniologia nom +craniometria craniometria nom +craniotomia craniotomia nom +crapula crapula nom +crapule crapula nom +crapulone crapulone nom +crapuloni crapulone nom +crasi crasi nom +crassa crasso adj +crasse crasso adj +crassi crasso adj +crasso crasso adj +cratere cratere nom +crateri cratere nom +craterica craterico adj +crateriche craterico adj +craterici craterico adj +craterico craterico adj +crauti crauti nom +cravatta cravatta nom +cravatte cravatta nom +cravattino cravattino nom +crawl crawl nom +crea creare ver +creabile creabile adj +creabili creabile adj +creaci creare ver +creai creare ver +creala creare ver +creale creare ver +crealo creare ver +creami creare ver +creammo creare ver +creando creare ver +creandoci creare ver +creandogli creare ver +creandola creare ver +creandole creare ver +creandoli creare ver +creandolo creare ver +creandomi creare ver +creandone creare ver +creandosi creare ver +creandoti creare ver +creandovi creare ver +creane creare ver +creano creare ver +creante creare ver +creanti creare ver +creanza creanza nom +creanze creanza nom +crear creare ver +crearcela creare ver +crearci creare ver +creare creare ver +creargli creare ver +crearla creare ver +crearle creare ver +crearli creare ver +crearlo creare ver +crearmi creare ver +crearne creare ver +crearono creare ver +crearsela creare ver +crearseli creare ver +crearselo creare ver +crearsene creare ver +crearsi creare ver +creartelo creare ver +creartene creare ver +crearti creare ver +crearvi creare ver +creasse creare ver +creassero creare ver +creassi creare ver +creassimo creare ver +creasti creare ver +creata creare ver +creatasi creare ver +create creare ver +createla creare ver +createle creare ver +createlo creare ver +createne creare ver +createsi creare ver +createvi creare ver +creati creare ver +creatina creatina nom +creatine creatina nom +creativa creativo adj +creative creativo adj +creativi creativo adj +creatività creatività nom +creativo creativo adj +creato creare ver +creatore creatore nom +creatori creatore nom +creatrice creatore adj +creatrici creatore adj +creatura creatura nom +creature creatura nom +creava creare ver +creavamo creare ver +creavano creare ver +creavo creare ver +creazione creazione nom +creazioni creazione nom +crebbe crescere ver +crebbero crescere ver +crebbi crescere ver +creda credere ver +credano credere ver +crede credere ver +credemmo credere ver +credendo credere ver +credendoci credere ver +credendogli credere ver +credendola credere ver +credendole credere ver +credendoli credere ver +credendolo credere ver +credendosi credere ver +credente credente nom +credenti credente nom +credenza credenza nom +credenze credenza nom +credenziale credenziale adj +credenziali credenziali nom +credenziere credenziere nom +credenzieri credenziere nom +creder credere ver +crederai credere ver +crederanno credere ver +crederci credere ver +credere credere ver +crederebbe credere ver +crederebbero credere ver +crederei credere ver +crederemmo credere ver +crederemo credere ver +credereste credere ver +crederesti credere ver +crederete credere ver +credergli credere ver +crederla credere ver +crederle credere ver +crederli credere ver +crederlo credere ver +credermi credere ver +credersi credere ver +crederti credere ver +credervi credere ver +crederà credere ver +crederò credere ver +credesse credere ver +credessero credere ver +credessi credere ver +credessimo credere ver +credesti credere ver +credete credere ver +credeteci credere ver +credetelo credere ver +credetemi credere ver +credette credere ver +credettero credere ver +credetti credere ver +credeva credere ver +credevamo credere ver +credevano credere ver +credevate credere ver +credevi credere ver +credevo credere ver +credi credere ver +crediamo credere ver +crediate credere ver +credibile credibile adj +credibili credibile adj +credibilità credibilità nom +credibilmente credibilmente adv +credici credere ver +credilo credere ver +credimi credere ver +crediti credito nom +creditizi creditizio adj +creditizia creditizio adj +creditizie creditizio adj +creditizio creditizio adj +credito credito nom +creditore creditore nom +creditori creditore nom +creditrice creditore adj +creditrici creditore adj +credo credere ver +credono credere ver +credula credulo adj +creduli credulo adj +credulità credulità nom +credulo credulo adj +credulona credulone nom +credulone credulone nom +creduloni credulone nom +creduta credere ver +credute credere ver +creduti credere ver +creduto credere ver +creerai creare ver +creeranno creare ver +creerebbe creare ver +creerebbero creare ver +creerei creare ver +creeremmo creare ver +creeremo creare ver +creeresti creare ver +creerete creare ver +creerà creare ver +creerò creare ver +crei creare ver +creiamo creare ver +creiamola creare ver +creiamole creare ver +creiamoli creare ver +creiamolo creare ver +creiamone creare ver +creino creare ver +crema crema nom +cremaci cremare ver +cremagliera cremagliera nom +cremagliere cremagliera nom +cremando cremare ver +cremano cremare ver +cremante cremare ver +cremare cremare ver +cremarla cremare ver +cremarli cremare ver +cremarlo cremare ver +cremarono cremare ver +cremata cremare ver +cremate cremare ver +cremati cremare ver +cremato cremare ver +crematoi crematoio nom +crematoio crematoio nom +crematori crematorio adj +crematoria crematorio adj +crematorie crematorio adj +crematorio crematorio adj +cremavano cremare ver +cremazione cremazione nom +cremazioni cremazione nom +creme crema|creme nom +cremeria cremeria nom +cremerie cremeria nom +cremerà cremare ver +cremi cremare ver +cremino cremare ver +cremisi cremisi adj +cremisini cremisino adj +cremisino cremisino adj +cremo cremare ver +cremonese cremonese adj +cremonesi cremonese adj +cremore cremore nom +cremortartaro cremortartaro nom +cremosa cremoso adj +cremose cremoso adj +cremosi cremoso adj +cremoso cremoso adj +cren cren nom +crenata crenato adj +crenate crenato adj +crenati crenato adj +crenato crenato adj +crenatura crenatura nom +crenoterapia crenoterapia nom +creo creare ver +creolina creolina nom +creosoti creosoto nom +creosoto creosoto nom +crepa crepa nom +crepacci crepaccio nom +crepaccio crepaccio nom +crepacuore crepacuore nom +crepano crepare ver +crepapelle crepapelle adv +crepar crepare ver +crepare crepare ver +creparono crepare ver +creparsi crepare ver +crepata crepare ver +crepate crepare ver +crepati crepare ver +crepato crepare ver +crepatura crepatura nom +crepature crepatura nom +crepava crepare ver +crepe crepa nom +crepella crepella nom +crepi crepare ver +crepino crepare ver +crepita crepitare ver +crepitando crepitare ver +crepitano crepitare ver +crepitante crepitare ver +crepitanti crepitare ver +crepitare crepitare ver +crepitava crepitare ver +crepitavano crepitare ver +crepitio crepitio nom +crepito crepito nom +crepo crepare ver +crepuscolare crepuscolare adj +crepuscolari crepuscolare adj +crepuscolarismo crepuscolarismo nom +crepuscoli crepuscolo nom +crepuscolo crepuscolo nom +crepò crepare ver +cresca crescere ver +crescano crescere ver +cresce crescere ver +crescendo crescendo nom +crescendola crescere ver +crescendoli crescere ver +crescendolo crescere ver +crescente crescente adj +crescenti crescente adj +crescenza crescenza nom +crescer crescere ver +crescerai crescere ver +cresceranno crescere ver +crescere crescere ver +crescerebbe crescere ver +crescerebbero crescere ver +cresceremo crescere ver +crescergli crescere ver +crescerla crescere ver +crescerle crescere ver +crescerli crescere ver +crescerlo crescere ver +crescerne crescere ver +crescervi crescere ver +crescerà crescere ver +crescerò crescere ver +crescesse crescere ver +crescessero crescere ver +crescessi crescere ver +cresceste crescere ver +crescete crescere ver +cresceva crescere ver +crescevano crescere ver +crescevo crescere ver +cresci crescere ver +cresciamo crescere ver +crescione crescione nom +crescioni crescione nom +crescita crescita nom +crescite crescita nom +cresciuta crescere ver +cresciute crescere ver +cresciuti crescere ver +cresciuto crescere ver +cresco crescere ver +crescono crescere ver +cresi creso nom +cresima cresima nom +cresimandi cresimando nom +cresimando cresimando nom +cresimare cresimare ver +cresimata cresimare ver +cresimati cresimare ver +cresimato cresimare ver +cresimava cresimare ver +cresime cresima nom +cresimò cresimare ver +creso creso nom +cresoli cresolo nom +cresolo cresolo nom +crespa crespo adj +crespata crespato adj +crespato crespato adj +crespatura crespatura nom +crespature crespatura nom +crespe crespa nom +crespella crespella nom +crespelle crespella nom +crespi crespo adj +crespini crespino nom +crespino crespino nom +crespo crespo adj +cresta cresta nom +crestaia crestaia nom +crestata crestato adj +crestate crestato adj +crestati crestato adj +crestato crestato adj +creste cresta nom +crestina crestina nom +crestine crestina nom +crestomazia crestomazia nom +creta creta nom +cretacea cretaceo adj +cretacee cretaceo adj +cretacei cretaceo adj +cretaceo cretaceo nom +crete creta nom +cretina cretino adj +cretinata cretinata nom +cretinate cretinata nom +cretine cretino adj +cretineria cretineria nom +cretinerie cretineria nom +cretini cretino nom +cretinismo cretinismo nom +cretino cretino adj +cretonne cretonne nom +cretosa cretoso adj +cretoso cretoso adj +cretti cretto nom +cretto cretto nom +creò creare ver +cri cri int +cribrata cribrare ver +cribro cribro nom +cribrosa cribroso adj +cribrose cribroso adj +cribrosi cribroso adj +cribroso cribroso adj +cric cric nom +cricca cricca nom +cricche cricca nom +cricchi cricchio|cricci nom +cricci cricci nom +criceti criceto nom +criceto criceto nom +cricket cricket nom +cricoide cricoide nom +criminale criminale adj +criminali criminale adj +criminalista criminalista nom +criminaliste criminalista nom +criminalità criminalità nom +criminalizzare criminalizzare ver +criminalizzazione criminalizzazione nom +crimine crimine nom +crimini crimine nom +criminologa criminologo nom +criminologi criminologo nom +criminologia criminologia nom +criminologie criminologia nom +criminologo criminologo nom +criminosa criminoso adj +criminose criminoso adj +criminosi criminoso adj +criminosità criminosità nom +criminoso criminoso adj +crinale crinale nom +crinali crinale nom +crine crine nom +crini crine nom +criniera criniera nom +criniere criniera nom +crinita crinito adj +criniti crinito adj +crinito crinito adj +crinoidi crinoidi nom +crinolina crinolina nom +crinoline crinolina nom +criobiologia criobiologia nom +crioconservazione crioconservazione nom +criogenia criogenia nom +criogenie criogenia nom +criolite criolite nom +crioscopia crioscopia nom +crioterapia crioterapia nom +cripta cripta nom +criptata criptare ver +cripte cripta nom +criptica criptico adj +criptiche criptico adj +criptici criptico adj +criptico criptico adj +cripto cripto nom +criptoportici criptoportico nom +criptoportico criptoportico nom +crisalide crisalide nom +crisalidi crisalide nom +crisantemi crisantemo nom +crisantemo crisantemo nom +criselefantina criselefantino adj +criselefantino criselefantino adj +crisi crisi nom +crisma crisma nom +crismale crismale adj +crismi crisma nom +crisoberillo crisoberillo nom +crisoelefantina crisoelefantino adj +crisoelefantine crisoelefantino adj +crisoelefantino crisoelefantino adj +crisoliti crisolito nom +crisolito crisolito nom +crisoprasi crisoprasio nom +crisoprasio crisoprasio nom +cristalleria cristalleria nom +cristallerie cristalleria nom +cristalli cristallo nom +cristalliera cristalliera nom +cristalliere cristalliera nom +cristallina cristallino adj +cristalline cristallino adj +cristallini cristallino adj +cristallino cristallino adj +cristallizza cristallizzare ver +cristallizzando cristallizzare ver +cristallizzandola cristallizzare ver +cristallizzandolo cristallizzare ver +cristallizzandosi cristallizzare ver +cristallizzano cristallizzare ver +cristallizzante cristallizzare ver +cristallizzanti cristallizzare ver +cristallizzare cristallizzare ver +cristallizzarla cristallizzare ver +cristallizzarono cristallizzare ver +cristallizzarsi cristallizzare ver +cristallizzata cristallizzare ver +cristallizzate cristallizzare ver +cristallizzati cristallizzare ver +cristallizzato cristallizzare ver +cristallizzatore cristallizzatore nom +cristallizzatori cristallizzatore nom +cristallizzava cristallizzare ver +cristallizzazione cristallizzazione nom +cristallizzazioni cristallizzazione nom +cristallizzerà cristallizzare ver +cristallizzi cristallizzare ver +cristallizzino cristallizzare ver +cristallizzò cristallizzare ver +cristallo cristallo nom +cristallochimica cristallochimica nom +cristallografa cristallografo nom +cristallografi cristallografo nom +cristallografia cristallografia nom +cristallografica cristallografico adj +cristallografiche cristallografico adj +cristallografici cristallografico adj +cristallografico cristallografico adj +cristallografie cristallografia nom +cristallografo cristallografo nom +cristalloide cristalloide adj +cristalloidi cristalloide adj +cristi cristo nom +cristiana cristiano adj +cristianamente cristianamente adv +cristiane cristiano adj +cristianesimo cristianesimo nom +cristiani cristiano nom +cristiania cristiania nom +cristianità cristianità nom +cristianizzando cristianizzare ver +cristianizzandola cristianizzare ver +cristianizzare cristianizzare ver +cristianizzarono cristianizzare ver +cristianizzarsi cristianizzare ver +cristianizzata cristianizzare ver +cristianizzate cristianizzare ver +cristianizzati cristianizzare ver +cristianizzato cristianizzare ver +cristianizzò cristianizzare ver +cristiano cristiano adj +cristo cristo nom +cristologia cristologia nom +cristologie cristologia nom +criteri criterio nom +criterio criterio nom +criterium criterium nom +criterî criterio nom +critica critica nom +criticabile criticabile adj +criticabili criticabile adj +criticai criticare ver +criticamente criticamente adv +criticami criticare ver +criticando criticare ver +criticandola criticare ver +criticandole criticare ver +criticandoli criticare ver +criticandolo criticare ver +criticandone criticare ver +criticandosi criticare ver +criticano criticare ver +criticanti criticare ver +criticar criticare ver +criticarci criticare ver +criticare criticare ver +criticarla criticare ver +criticarle criticare ver +criticarli criticare ver +criticarlo criticare ver +criticarmi criticare ver +criticarne criticare ver +criticarono criticare ver +criticarti criticare ver +criticasse criticare ver +criticassero criticare ver +criticata criticare ver +criticate criticare ver +criticatemi criticare ver +criticati criticare ver +criticatissimo criticatissimo adj +criticato criticare ver +criticava criticare ver +criticavano criticare ver +criticavo criticare ver +critiche critica nom +criticheranno criticare ver +criticherebbe criticare ver +criticherebbero criticare ver +criticherà criticare ver +critichi criticare ver +critichiamo criticare ver +critichiate criticare ver +critichino criticare ver +critici critico nom +criticismo criticismo nom +criticità criticità nom +critico critico nom +criticona criticone nom +criticone criticone nom +criticoni criticone nom +criticò criticare ver +crittogama crittogama nom +crittogame crittogama nom +crittogamica crittogamico adj +crittogamiche crittogamico adj +crittogamici crittogamico adj +crittogamico crittogamico adj +crittografia crittografia nom +crittografie crittografia nom +crittogramma crittogramma nom +crittogrammi crittogramma nom +crivella crivellare ver +crivellando crivellare ver +crivellandoli crivellare ver +crivellandolo crivellare ver +crivellano crivellare ver +crivellare crivellare ver +crivellarli crivellare ver +crivellarono crivellare ver +crivellata crivellare ver +crivellate crivellare ver +crivellati crivellare ver +crivellato crivellare ver +crivellatura crivellatura nom +crivelli crivello nom +crivello crivello nom +crivellò crivellare ver +croata croato adj +croate croato adj +croati croato adj +croato croato adj +croccante croccante adj +croccanti croccante adj +crocchetta crocchetta nom +crocchette crocchetta nom +crocchi crocchio nom +crocchia crocchia nom +crocchio crocchio nom +croce croce nom +crocea croceo adj +crocefiggere crocefiggere ver +crocefissa crocefiggere ver +crocefissi crocefisso nom +crocefissione crocefissione nom +crocefissioni crocefissione nom +crocefisso crocefisso nom +croceristi crocerista nom +crocerossina crocerossina nom +crocerossine crocerossina nom +crocesegnati crocesegnare ver +crocevia crocevia nom +crochet crochet nom +crochi croco nom +croci croce nom +crociata crociata nom +crociate crociato adj +crociati crociato nom +crociato crociato adj +crocicchi crocicchio nom +crocicchio crocicchio nom +crociera crociera nom +crociere crociera nom +crocifera crocifero adj +crocifere crocifere nom +crociferi crocifero adj +crocifero crocifero adj +crocifigge crocifiggere ver +crocifiggendo crocifiggere ver +crocifiggendolo crocifiggere ver +crocifiggere crocifiggere ver +crocifiggerli crocifiggere ver +crocifiggerlo crocifiggere ver +crocifiggersi crocifiggere ver +crocifiggilo crocifiggere ver +crocifiggono crocifiggere ver +crocifissa crocifiggere ver +crocifisse crocifisso adj +crocifissero crocifiggere ver +crocifissi crocifisso nom +crocifissione crocifissione nom +crocifissioni crocifissione nom +crocifisso crocifisso nom +croco croco nom +croda croda nom +crodaioli crodaiolo nom +crode croda nom +crogiola crogiolare ver +crogiolandosi crogiolare ver +crogiolano crogiolare ver +crogiolare crogiolare ver +crogiolarsi crogiolare ver +crogiolava crogiolare ver +crogioli crogiolo nom +crogiolo crogiolo nom +croissant croissant nom +crolla crollare ver +crollai crollare ver +crollando crollare ver +crollano crollare ver +crollante crollare ver +crollanti crollare ver +crollare crollare ver +crollargli crollare ver +crollarono crollare ver +crollasse crollare ver +crollassero crollare ver +crollata crollare ver +crollate crollare ver +crollati crollare ver +crollato crollare ver +crollava crollare ver +crollavano crollare ver +crollavo crollare ver +crolleranno crollare ver +crollerebbe crollare ver +crollerebbero crollare ver +crollerà crollare ver +crolli crollo nom +crollino crollare ver +crollo crollo nom +crollò crollare ver +croma croma nom +cromando cromare ver +cromane cromare ver +cromano cromare ver +cromare cromare ver +cromata cromato adj +cromate cromato adj +cromati cromare ver +cromatica cromatico adj +cromatiche cromatico adj +cromatici cromatico adj +cromatico cromatico adj +cromatina cromatina nom +cromatismi cromatismo nom +cromatismo cromatismo nom +cromato cromato adj +cromatografia cromatografia nom +cromatografie cromatografia nom +cromatura cromatura nom +cromature cromatura nom +crome croma nom +cromi cromo nom +cromica cromico adj +cromico cromico adj +cromita cromite nom +cromite cromite nom +cromo cromo nom +cromolitografia cromolitografia nom +cromolitografie cromolitografia nom +cromoplasti cromoplasto nom +cromoplasto cromoplasto nom +cromosfera cromosfera nom +cromosfere cromosfera nom +cromosoma cromosoma nom +cromosomi cromosoma nom +cromosomiche cromosomico adj +cromotipia cromotipia nom +cronaca cronaca nom +cronache cronaca nom +cronachista cronachista nom +cronachisti cronachista nom +cronica cronico adj +cronicari cronicario nom +cronicario cronicario nom +croniche cronico adj +cronici cronico adj +cronicità cronicità nom +cronicizzazione cronicizzazione nom +cronico cronico adj +cronista cronista nom +cronisti cronista nom +cronistoria cronistoria nom +cronistorie cronistoria nom +cronografi cronografo nom +cronografo cronografo nom +cronologia cronologia nom +cronologica cronologico adj +cronologicamente cronologicamente adv +cronologiche cronologico adj +cronologici cronologico adj +cronologico cronologico adj +cronologie cronologia nom +cronologisti cronologista nom +cronometraggi cronometraggio nom +cronometraggio cronometraggio nom +cronometrando cronometrare ver +cronometrare cronometrare ver +cronometrata cronometrare ver +cronometrate cronometrare ver +cronometrati cronometrare ver +cronometrato cronometrare ver +cronometrava cronometrare ver +cronometri cronometro nom +cronometria cronometria nom +cronometrica cronometrico adj +cronometriche cronometrico adj +cronometrici cronometrico adj +cronometrico cronometrico adj +cronometrista cronometrista nom +cronometristi cronometrista nom +cronometro cronometro nom +croquet croquet nom +croscia crosciare ver +cross cross nom +crossa crossare ver +crossare crossare ver +crossata crossare ver +crossato crossare ver +crossi crossare ver +crosso crossare ver +crossopterigi crossopterigi nom +crossò crossare ver +crosta crosta nom +crostacei crostacei nom +crostaceo crostaceo nom +crostata crostata nom +crostate crostata nom +croste crosta nom +crostini crostino nom +crostino crostino nom +crostone crostone nom +crostoni crostone nom +crostosa crostoso adj +crostose crostoso adj +crostosi crostoso adj +crostoso crostoso adj +crotala crotalo nom +crotale crotalo nom +croton croton nom +croupier croupier nom +crown crown nom +crucci cruccio nom +cruccia crucciare ver +crucciano crucciare ver +crucciar crucciare ver +crucciare crucciare ver +crucciarsi crucciare ver +crucciarti crucciare ver +crucciata crucciare ver +crucciati crucciato adj +crucciato crucciare ver +cruccio cruccio nom +crucciò crucciare ver +cruciale cruciale adj +cruciali cruciale adj +crucifige crucifige nom +cruciforme cruciforme adj +cruciformi cruciforme adj +cruciverba cruciverba nom +cruda crudo adj +crude crudo adj +crudele crudele adj +crudeli crudele adj +crudelmente crudelmente adv +crudeltà crudeltà nom +crudezza crudezza nom +crudezze crudezza nom +crudi crudo adj +crudo crudo adj +cruenta cruento adj +cruente cruento adj +cruenti cruento adj +cruento cruento adj +cruiser cruiser nom +crumiraggio crumiraggio nom +crumiri crumiro nom +crumiro crumiro nom +cruna cruna nom +cruore cruore nom +crurale crurale adj +crurali crurale adj +crusca crusca nom +cruscante cruscante adj +cruscanti cruscante nom +crusche crusca nom +cruschelli cruschello nom +cruschello cruschello nom +cruscotti cruscotto nom +cruscotto cruscotto nom +crêpe crêpe nom +ctenofori ctenofori nom +cuba cubare ver +cubana cubano adj +cubane cubano adj +cubani cubano adj +cubano cubano adj +cubante cubare ver +cubare cubare ver +cubasi cubare ver +cubata cubare ver +cubati cubare ver +cubatura cubatura nom +cubature cubatura nom +cubebe cubebe nom +cubetti cubetto nom +cubetto cubetto nom +cubi cubo nom +cubia cubia nom +cubica cubico adj +cubiche cubico adj +cubici cubico adj +cubico cubico adj +cubicoli cubicolo nom +cubicolo cubicolo nom +cubie cubia nom +cubiformi cubiforme adj +cubilotti cubilotto nom +cubilotto cubilotto nom +cubino cubare ver +cubismo cubismo nom +cubista cubista adj +cubiste cubista adj +cubisti cubista adj +cubitale cubitale adj +cubitali cubitale adj +cubiti cubito nom +cubitiera cubitiera nom +cubitiere cubitiera nom +cubito cubito nom +cubo cubo nom +cuboide cuboide adj +cuboidi cuboide adj +cucaracha cucaracha nom +cucca cuccare ver +cuccagna cuccagna nom +cuccala cuccare ver +cuccar cuccare ver +cuccare cuccare ver +cuccata cuccare ver +cuccato cuccare ver +cucce cuccia nom +cuccetta cuccetta nom +cuccette cuccetta nom +cucchi cucco nom +cucchiai cucchiaio nom +cucchiaia cucchiaia nom +cucchiaiata cucchiaiata nom +cucchiaiate cucchiaiata nom +cucchiaie cucchiaia nom +cucchiaini cucchiaino nom +cucchiaino cucchiaino nom +cucchiaio cucchiaio nom +cucci cucciare ver +cuccia cuccia nom +cucciano cucciare ver +cucciati cucciare ver +cuccio cucciare ver +cucciola cucciolo nom +cucciolata cucciolata nom +cucciolate cucciolata nom +cucciole cucciolo nom +cuccioli cucciolo nom +cucciolo cucciolo nom +cucco cucco nom +cuccume cuccuma nom +cuccù cuccù nom +cuce cucire ver +cucendo cucire ver +cucendogli cucire ver +cucendoli cucire ver +cucendolo cucire ver +cucendosi cucire ver +cucenti cucire ver +cuci cucire ver +cucia cucire ver +cucici cucire ver +cucii cucire ver +cucina cucina nom +cucinai cucinare ver +cucinando cucinare ver +cucinandola cucinare ver +cucinandolo cucinare ver +cucinano cucinare ver +cucinare cucinare ver +cucinargli cucinare ver +cucinarla cucinare ver +cucinarle cucinare ver +cucinarli cucinare ver +cucinarlo cucinare ver +cucinarsi cucinare ver +cucinasse cucinare ver +cucinata cucinare ver +cucinate cucinare ver +cucinati cucinare ver +cucinato cucinare ver +cucinava cucinare ver +cucinavano cucinare ver +cucine cucina nom +cucinerà cucinare ver +cucini cucinare ver +cuciniamo cucinare ver +cuciniera cuciniere nom +cuciniere cuciniere nom +cucinieri cuciniere nom +cucinino cucinino nom +cucino cucinare ver +cucinò cucinare ver +cucio cucire ver +cuciono cucire ver +cucire cucire ver +cucirgli cucire ver +cucirini cucirino nom +cucirino cucirino nom +cucirle cucire ver +cucirli cucire ver +cucirono cucire ver +cucirsi cucire ver +cucirvi cucire ver +cucita cucire ver +cucite cucire ver +cuciti cucire ver +cucito cucire ver +cucitore cucitore nom +cucitrice cucitrice adj +cucitrici cucitore nom +cucitura cucitura nom +cuciture cucitura nom +cuciva cucire ver +cucivano cucire ver +cuculi cuculo nom +cuculo cuculo nom +cucurbitacee cucurbitacee nom +cucuzzoli cucuzzolo nom +cucuzzolo cucuzzolo nom +cucì cucire ver +cucù cucù nom +cudù cudù nom +cuffia cuffia nom +cuffie cuffia nom +cugina cugino nom +cuginanza cuginanza nom +cugine cugino nom +cugini cugino nom +cugino cugino nom +cui cui pro +culata culata nom +culatelli culatello nom +culatello culatello nom +culatta culatta nom +culatte culatta nom +culbianchi culbianco nom +culbianco culbianco nom +culi culo nom +culinare culinario adj +culinari culinario adj +culinaria culinario adj +culinarie culinaria nom +culinario culinario adj +culla culla nom +cullami cullare ver +cullando cullare ver +cullandosi cullare ver +cullano cullare ver +cullante cullare ver +cullar cullare ver +cullare cullare ver +cullarli cullare ver +cullarlo cullare ver +cullarono cullare ver +cullarsi cullare ver +cullata cullare ver +cullate cullare ver +cullati cullare ver +cullato cullare ver +cullava cullare ver +culle culla nom +culleranno cullare ver +culli cullare ver +cullino cullare ver +cullò cullare ver +culmi culmo nom +culmina culminare ver +culminale culminare ver +culminali culminare ver +culminando culminare ver +culminano culminare ver +culminante culminante adj +culminanti culminante adj +culminare culminare ver +culminarono culminare ver +culminasse culminare ver +culminata culminare ver +culminate culminare ver +culminati culminare ver +culminato culminare ver +culminava culminare ver +culminavano culminare ver +culminazione culminazione nom +culminazioni culminazione nom +culmine culmine nom +culmineranno culminare ver +culminerà culminare ver +culmini culmine nom +culmino culminare ver +culminò culminare ver +culmo culmo nom +culo culo nom +culottes culottes nom +culteranesimo culteranesimo nom +culti culto nom +cultivar cultivar nom +culto culto nom +cultore cultore nom +cultori cultore nom +cultrice cultore nom +cultuale cultuale adj +cultuali cultuale adj +cultura cultura nom +culturale culturale adj +culturali culturale adj +culturalismo culturalismo nom +culturalmente culturalmente adv +culture cultura nom +culturismo culturismo nom +culturista culturista nom +culturiste culturista nom +culturisti culturista nom +cumini cumino nom +cumino cumino nom +cumula cumulare ver +cumulabili cumulabile adj +cumulando cumulare ver +cumulano cumulare ver +cumulante cumulare ver +cumulanti cumulare ver +cumular cumulare ver +cumulare cumulare ver +cumularsi cumulare ver +cumulata cumulare ver +cumulate cumulare ver +cumulatesi cumulare ver +cumulati cumulare ver +cumulativa cumulativo adj +cumulativamente cumulativamente adv +cumulative cumulativo adj +cumulativi cumulativo adj +cumulativo cumulativo adj +cumulato cumulare ver +cumulava cumulare ver +cumuleranno cumulare ver +cumulerà cumulare ver +cumuli cumulo nom +cumulo cumulo nom +cumulonembi cumulonembo nom +cumulonembo cumulonembo nom +cumulò cumulare ver +cuna cuna nom +cune cuna nom +cuneata cuneato adj +cuneate cuneato adj +cuneati cuneato adj +cuneato cuneato adj +cunei cuneo nom +cuneiforme cuneiforme adj +cuneiformi cuneiforme adj +cuneo cuneo nom +cunetta cunetta nom +cunette cunetta nom +cunicoli cunicolo nom +cunicolo cunicolo nom +cuoca cuoco nom +cuoce cuocere ver +cuocendo cuocere ver +cuocendola cuocere ver +cuocendole cuocere ver +cuocendoli cuocere ver +cuocendolo cuocere ver +cuocerai cuocere ver +cuoceranno cuocere ver +cuocere cuocere|ricuocere|scuocere|stracuocere ver +cuocergli cuocere ver +cuocerla cuocere ver +cuocerle cuocere ver +cuocerli cuocere ver +cuocerlo cuocere ver +cuocersi cuocere ver +cuocerà cuocere ver +cuocessero cuocere ver +cuoceva cuocere ver +cuocevano cuocere ver +cuoche cuoco nom +cuochi cuoco nom +cuoci cuocere ver +cuocia cuocere ver +cuociamo cuocere ver +cuociano cuocere ver +cuocio cuocere ver +cuociono cuocere ver +cuoco cuoco nom +cuoi cuoio nom +cuoiai cuoiaio nom +cuoiaio cuoiaio nom +cuoiame cuoiame nom +cuoio cuoio nom +cuore cuore nom +cuori cuore nom +cuoriforme cuoriforme adj +cuoriformi cuoriforme adj +cupa cupo adj +cupe cupo adj +cupezza cupezza nom +cupi cupo adj +cupida cupido adj +cupide cupido adj +cupidi cupido adj +cupidigia cupidigia nom +cupido cupido adj +cupo cupo adj +cupola cupola nom +cupole cupola nom +cupolone cupolone nom +cuprallumini cupralluminio nom +cupralluminio cupralluminio nom +cuprea cuprea adj +cupreo cupreo adj +cuprite cuprite nom +cura cura nom +curabile curabile adj +curabili curabile adj +curaci curare ver +curai curare ver +curale curare ver +curami curare ver +curando curare ver +curandola curare ver +curandole curare ver +curandoli curare ver +curandolo curare ver +curandone curare ver +curandosi curare ver +curandoti curare ver +curano curare ver +curante curante adj +curanti curante adj +curapipe curapipe nom +curar curare ver +curarci curare ver +curare curare ver +curargli curare ver +curari curaro nom +curarla curare ver +curarle curare ver +curarli curare ver +curarlo curare ver +curarmi curare ver +curarne curare ver +curaro curaro nom +curarono curare ver +curarsene curare ver +curarsi curare ver +curarti curare ver +curarvi curare ver +curasse curare ver +curassero curare ver +curassi curare ver +curata curare ver +curate curare ver +curatela curatela nom +curatele curatela nom +curatelo curare ver +curati curare ver +curativa curativo adj +curative curativo adj +curativi curativo adj +curativo curativo adj +curato curare ver +curatoli curatolo nom +curatolo curatolo nom +curatore curatore adj +curatori curatore nom +curatrice curatore adj +curatrici curatore adj +curava curare ver +curavano curare ver +curavi curare ver +curavo curare ver +curaçao curaçao nom +curculione curculione nom +curda curdo adj +curdi curdo adj +curdo curdo adj +cure cura nom +curerai curare ver +cureranno curare ver +curerebbe curare ver +curerebbero curare ver +curerei curare ver +cureremo curare ver +curerà curare ver +curerò curare ver +curi curio nom +curia curia nom +curiale curiale adj +curialesco curialesco adj +curiali curiale adj +curiamo curare ver +curiata curiato adj +curiate curare ver +curiati curiato adj +curiato curiato adj +curie curia|curie nom +curino curare ver +curio curio nom +curiosa curioso adj +curiosamente curiosamente adv +curiosando curiosare ver +curiosano curiosare ver +curiosare curiosare ver +curiosato curiosare ver +curiosavo curiosare ver +curiose curioso adj +curiosi curioso adj +curiosità curiosità nom +curioso curioso adj +curiosò curiosare ver +curling curling nom +curo curare ver +curricoli curricolo nom +curricolo curricolo nom +curriculum curriculum nom +curry curry nom +cursore cursore nom +cursori cursore nom +curtense curtense adj +curtensi curtense adj +curule curule adj +curuli curule adj +curva curva nom +curvala curvare ver +curvando curvare ver +curvandolo curvare ver +curvandosi curvare ver +curvano curvare ver +curvante curvare ver +curvare curvare ver +curvarlo curvare ver +curvarsi curvare ver +curvata curvare ver +curvate curvare ver +curvati curvare ver +curvato curvare ver +curvatrice curvatrice nom +curvatura curvatura nom +curvature curvatura nom +curvava curvare ver +curvavano curvare ver +curve curva nom +curverebbe curvare ver +curvi curvo adj +curvilinea curvilineo adj +curvilinee curvilineo adj +curvilinei curvilineo adj +curvilineo curvilineo adj +curvimetro curvimetro nom +curvino curvare ver +curvo curvo adj +curvò curvare ver +curò curare ver +cuscinetti cuscinetto nom +cuscinetto cuscinetto nom +cuscini cuscino nom +cuscino cuscino nom +cuscus cuscus nom +cuscuta cuscuta nom +cuscute cuscuta nom +cuspidale cuspidale adj +cuspidali cuspidale adj +cuspidata cuspidato adj +cuspidate cuspidato adj +cuspidati cuspidato adj +cuspidato cuspidato adj +cuspide cuspide nom +cuspidi cuspide nom +custode custode adj +custodendo custodire ver +custodendola custodire ver +custodendole custodire ver +custodendone custodire ver +custodente custodire ver +custodi custode adj +custodia custodia nom +custodiamo custodire ver +custodie custodia nom +custodiranno custodire ver +custodirci custodire ver +custodire custodire ver +custodirebbe custodire ver +custodirete custodire ver +custodirla custodire ver +custodirle custodire ver +custodirli custodire ver +custodirlo custodire ver +custodirne custodire ver +custodirono custodire ver +custodirsi custodire ver +custodirvi custodire ver +custodirà custodire ver +custodirò custodire ver +custodisca custodire ver +custodiscano custodire ver +custodisce custodire ver +custodisci custodire ver +custodiscici custodire ver +custodiscimi custodire ver +custodisco custodire ver +custodiscono custodire ver +custodisse custodire ver +custodissero custodire ver +custodita custodire ver +custodite custodire ver +custoditela custodire ver +custoditi custodire ver +custodito custodire ver +custodiva custodire ver +custodivano custodire ver +custodì custodire ver +cutanea cutaneo adj +cutanee cutaneo adj +cutanei cutaneo adj +cutaneo cutaneo adj +cute cute nom +cuti cute nom +cuticagna cuticagna nom +cuticola cuticola nom +cuticole cuticola nom +cutina cutina nom +cutine cutina nom +cutireazione cutireazione nom +cutrettola cutrettola nom +cutrettole cutrettola nom +cutter cutter nom +cutting cutting nom +cuvée cuvée adj +cytomegalovirus cytomegalovirus nom +czar czar nom +czarda czarda nom +cä cä nom +d d abr +da da pre +dabbasso dabbasso adv +dabbenaggine dabbenaggine nom +dabbene dabbene adj +daccapo daccapo adv +dacché dacché con +dace dacia nom +dacia dacia nom +dacie dacia nom +dada dada nom +dadaismi dadaismo nom +dadaismo dadaismo nom +dadaista dadaista adj +dadaiste dadaista adj +dadaisti dadaista adj +dadi dado nom +dado dado nom +daffare daffare nom +daga daga nom +daghe daga nom +dagherrotipi dagherrotipo nom +dagherrotipia dagherrotipia nom +dagherrotipo dagherrotipo nom +dagli dal pre +dai dal pre +daini daino nom +daino daino nom +dal dal pre +dall dall sw +dalla dal pre +dallato dallato adv +dalle dal pre +dallo dal pre +dalmata dalmata adj +dalmate dalmata adj +dalmati dalmata adj +dalmatica dalmatica nom +dalmatiche dalmatica nom +daltonica daltonico adj +daltonici daltonico adj +daltonico daltonico adj +daltonismo daltonismo nom +dama dama nom +damasca damascare ver +damascata damascare ver +damascate damascare ver +damascati damascare ver +damascato damascare ver +damascatura damascatura nom +damascature damascatura nom +damaschi damasco nom +damaschina damaschinare ver +damaschino damascare ver +damasco damasco nom +dame dama nom +damerini damerino nom +damerino damerino nom +dami damo nom +damigella damigella nom +damigelle damigella nom +damigiana damigiana nom +damigiane damigiana nom +damista damista nom +damisti damista nom +damo damo nom +danari danaro nom +danaro danaro nom +danarosa danaroso adj +danarose danaroso adj +danarosi danaroso adj +danaroso danaroso adj +dancing dancing nom +danda danda nom +dande danda nom +dandismo dandismo nom +dando dare ver_sup +dandoci dare ver +dandogli dare ver +dandoglielo dare ver +dandogliene dare ver +dandola dare ver +dandole dare ver +dandoli dare ver +dandolo dare ver +dandomi dare ver +dandone dare ver +dandosene dare ver +dandosi dare ver +dandoti dare ver +dandovi dare ver +dandy dandy nom +danese danese adj +danesi danese adj +danna dannare ver +dannando dannare ver +dannandolo dannare ver +dannano dannare ver +dannar dannare ver +dannarci dannare ver +dannare dannare ver +dannarla dannare ver +dannarlo dannare ver +dannarmi dannare ver +dannarsi dannare ver +dannaste dannare ver +dannata dannato adj +dannate dannato adj +dannati dannato nom +dannato dannato nom +dannazione dannazione nom +danneggeranno danneggiare ver +danneggerebbe danneggiare ver +danneggerebbero danneggiare ver +danneggerei danneggiare ver +danneggeresti danneggiare ver +danneggerà danneggiare ver +danneggi danneggiare ver +danneggia danneggiare ver +danneggiamenti danneggiamento nom +danneggiamento danneggiamento nom +danneggiamo danneggiare ver +danneggiando danneggiare ver +danneggiandogli danneggiare ver +danneggiandola danneggiare ver +danneggiandole danneggiare ver +danneggiandoli danneggiare ver +danneggiandolo danneggiare ver +danneggiandone danneggiare ver +danneggiandosi danneggiare ver +danneggiano danneggiare ver +danneggiante danneggiare ver +danneggianti danneggiare ver +danneggiarci danneggiare ver +danneggiare danneggiare ver +danneggiargli danneggiare ver +danneggiarla danneggiare ver +danneggiarle danneggiare ver +danneggiarli danneggiare ver +danneggiarlo danneggiare ver +danneggiarmi danneggiare ver +danneggiarne danneggiare ver +danneggiarono danneggiare ver +danneggiarsi danneggiare ver +danneggiarti danneggiare ver +danneggiasse danneggiare ver +danneggiassero danneggiare ver +danneggiata danneggiare ver +danneggiate danneggiare ver +danneggiati danneggiare ver +danneggiato danneggiare ver +danneggiava danneggiare ver +danneggiavano danneggiare ver +danneggino danneggiare ver +danneggio danneggiare ver +danneggiò danneggiare ver +danneranno dannare ver +dannerà dannare ver +danni danno nom +danno danno nom_sup +dannosa dannoso adj +dannosamente dannosamente adv +dannose dannoso adj +dannosi dannoso adj +dannosità dannosità nom +dannoso dannoso adj +dannunziana dannunziano adj +dannunziane dannunziano adj +dannunzianesimo dannunzianesimo nom +dannunziani dannunziano adj +dannunziano dannunziano adj +dannò dannare ver +dante dante nom +dantesca dantesco adj +dantesche dantesco adj +danteschi dantesco adj +dantesco dantesco adj +danti dante nom +dantismi dantismo nom +dantismo dantismo nom +dantista dantista nom +dantisti dantista nom +dantistica dantistica nom +danza danza nom +danzai danzare ver +danzando danzare ver +danzandogli danzare ver +danzano danzare ver +danzante danzante adj +danzanti danzante adj +danzar danzare ver +danzarci danzare ver +danzare danzare ver +danzarono danzare ver +danzasse danzare ver +danzata danzare ver +danzate danzare ver +danzati danzare ver +danzato danzare ver +danzatore danzatore nom +danzatori danzatore nom +danzatrice danzatore nom +danzatrici danzatore nom +danzava danzare ver +danzavano danzare ver +danze danza nom +danzeranno danzare ver +danzerei danzare ver +danzerà danzare ver +danzerò danzare ver +danzi danzare ver +danziamo danzare ver +danzo danzare ver +danzò danzare ver +dappertutto dappertutto adv_sup +dappocaggine dappocaggine nom +dappoco dappoco adj +dappresso dappresso adv +dapprima dapprima adv +dapprincipio dapprincipio adv +dar dare ver_sup +dara dara sw +darai dare ver +daranno dare ver +darcela dare ver +darcelo dare ver +darcene dare ver +darci dare ver +dardeggia dardeggiare ver +dardi dardo nom +dardo dardo nom +dare dare ver_sup +darebbe dare ver +darebbero dare ver +darei dare ver +daremmo dare ver +daremo dare ver +dareste dare ver +daresti dare ver +darete dare ver +dargli dare ver_sup +dargliela dare ver +dargliele dare ver +darglieli dare ver +darglielo dare ver +dargliene dare ver +darla dare ver +darle dare ver +darli dare ver +darlo dare ver +darmela dare ver +darmele dare ver +darmelo dare ver +darmene dare ver +darmi dare ver_sup +darne dare ver +darsela dare ver +darselo dare ver +darsena darsena nom +darsene darsena nom +darsi dare ver_sup +dartela dare ver +dartele dare ver +dartelo dare ver +dartene dare ver +darti dare ver +darvela dare ver +darvelo dare ver +darvi dare ver +darà dare ver_sup +darò dare ver +dasiuri dasiuro nom +dasiuro dasiuro nom +data dare ver_sup +databile databile adj +databili databile adj +dataci datare ver +datagli datare ver +datai datare ver +datale datare ver +datali datare ver +datami datare ver +datando datare ver +datandola datare ver +datandole datare ver +datandolo datare ver +datandosi datare ver +datane datare ver +datano datare ver +datante datare ver +datanti datare ver +datar datare ver +datare datare ver +datari datario nom +datario datario nom +datarla datare ver +datarle datare ver +datarli datare ver +datarlo datare ver +datarne datare ver +datarono datare ver +datarsi datare ver +datasi datare ver +datasse datare ver +datassero datare ver +datata datare ver +datate datare ver +datati datare ver +datato datare ver +datava datare ver +datavano datare ver +datazione datazione nom +datazioni datazione nom +date data nom +dateci dare ver +dategli dare ver +dateglielo dare ver +datela dare ver +datele dare ver +dateli dare ver +datelo dare ver +datemela dare ver +datemelo dare ver +datemene dare ver +datemi dare ver +datene dare ver +daterebbe datare ver +daterebbero datare ver +datesi dare ver +datevi dare ver +dati dato nom +datiamo datare ver +datino datare ver +dativa dativo adj +dative dativo adj +dativi dativo adj +dativo dativo adj +dato dare ver_sup +datore datore nom +datori datore nom +datrice datore nom +datrici datore nom +datteri dattero nom +dattero dattero nom +dattili dattilo nom +dattilica dattilico adj +dattiliche dattilico adj +dattilici dattilico adj +dattilico dattilico adj +dattilo dattilo nom +dattilografa dattilografo nom +dattilografare dattilografare ver +dattilografata dattilografare ver +dattilografate dattilografare ver +dattilografati dattilografare ver +dattilografato dattilografare ver +dattilografe dattilografo nom +dattilografi dattilografo nom +dattilografia dattilografia nom +dattilografica dattilografico adj +dattilografiche dattilografico adj +dattilografo dattilografo nom +dattiloscopia dattiloscopia nom +dattiloscritta dattiloscritto adj +dattiloscritte dattiloscritto adj +dattiloscritti dattiloscritto adj +dattiloscritto dattiloscritto adj +dattorno dattorno adv +datura datura nom +dature datura nom +datò datare ver +dava dare ver_sup +davamo dare ver +davano dare ver +davanti davanti pre +davanzale davanzale nom +davanzali davanzale nom +davanzo davanzo adv +davate dare ver +davi dare ver +davo dare ver +davvero davvero adv_sup +day day nom +dazi dazio nom +dazia daziare ver +daziale daziare ver +daziano daziare ver +daziari daziario adj +daziaria daziario adj +daziario daziario adj +daziere daziere nom +dazieri daziere nom +dazii daziare ver +dazio dazio nom +dc dc npr +de de npr +dea dea nom +deambula deambulare ver +deambulano deambulare ver +deambulante deambulare ver +deambulanti deambulare ver +deambulare deambulare ver +deambulatore deambulatorio adj +deambulatori deambulatorio adj +deambulatoria deambulatorio adj +deambulatorio deambulatorio nom +deambulazione deambulazione nom +deamicisiano deamicisiano adj +debba dovere ver_sup +debbano dovere ver_sup +debbi debbio nom +debbia debbiare ver +debbiano debbiare ver +debbiato debbiare ver +debbino debbiare ver +debbio debbio nom +debbo debbo ver +debbono debbono ver_sup +debella debellare ver +debellamento debellamento nom +debellando debellare ver +debellante debellare ver +debellar debellare ver +debellare debellare ver +debellarla debellare ver +debellarle debellare ver +debellarli debellare ver +debellarlo debellare ver +debellarne debellare ver +debellarono debellare ver +debellasse debellare ver +debellata debellare ver +debellate debellare ver +debellati debellare ver +debellato debellare ver +debellatore debellatore adj +debellatori debellatore adj +debellava debellare ver +debellavano debellare ver +debellerà debellare ver +debello debellare ver +debellò debellare ver +debilita debilitare ver +debilitando debilitare ver +debilitandosi debilitare ver +debilitano debilitare ver +debilitante debilitare ver +debilitanti debilitare ver +debilitare debilitare ver +debilitarlo debilitare ver +debilitarono debilitare ver +debilitarsi debilitare ver +debilitata debilitare ver +debilitate debilitare ver +debilitati debilitare ver +debilitato debilitare ver +debilitava debilitare ver +debilitazione debilitazione nom +debilitazioni debilitazione nom +debiliterà debilitare ver +debilitò debilitare ver +debita debito adj +debitamente debitamente adv +debite debito adj +debiti debito nom +debito debito nom +debitore debitore nom +debitori debitore nom +debitoria debitorio adj +debitorie debitorio adj +debitorio debitorio adj +debitrice debitore adj +debitrici debitore adj +debole debole adj +debolezza debolezza nom +debolezze debolezza nom +deboli debole adj +debolissima debolissimo adj +deborda debordare ver +debordando debordare ver +debordano debordare ver +debordante debordare ver +debordanti debordare ver +debordare debordare ver +debordato debordare ver +debordava debordare ver +debordi debordare ver +debordino debordare ver +debordò debordare ver +debosciati debosciato nom +debosciato debosciato nom +debutta debuttare ver +debuttando debuttare ver +debuttandovi debuttare ver +debuttano debuttare ver +debuttante debuttante adj +debuttanti debuttante adj +debuttare debuttare ver +debuttarono debuttare ver +debuttasse debuttare ver +debuttassero debuttare ver +debuttata debuttare ver +debuttate debuttare ver +debuttati debuttare ver +debuttato debuttare ver +debuttava debuttare ver +debuttavano debuttare ver +debutteranno debuttare ver +debutterà debuttare ver +debutti debutto nom +debutto debutto nom +debuttò debuttare ver +decada decadere ver +decadano decadere ver +decadde decadere ver +decaddero decadere ver +decade decade nom +decadendo decadere ver +decadente decadente adj +decadenti decadente adj +decadentismo decadentismo nom +decadentista decadentista nom +decadentiste decadentista nom +decadentisti decadentista nom +decadentistico decadentistico adj +decadenza decadenza nom +decadenze decadenza nom +decadere decadere ver +decadesse decadere ver +decadessero decadere ver +decadeva decadere ver +decadevano decadere ver +decadi decade nom +decadimenti decadimento nom +decadimento decadimento nom +decadono decadere ver +decadrai decadere ver +decadranno decadere ver +decadrebbe decadere ver +decadrebbero decadere ver +decadrà decadere ver +decaduta decadere ver +decadute decadere ver +decaduti decadere ver +decaduto decadere ver +decaedro decaedro nom +decaffeinare decaffeinare ver +decaffeinata decaffeinare ver +decaffeinati decaffeinare ver +decaffeinato decaffeinare ver +decagoni decagono nom +decagono decagono nom +decagrammi decagrammo nom +decagrammo decagrammo nom +decalcificante decalcificare ver +decalcificati decalcificare ver +decalcificato decalcificare ver +decalcificazione decalcificazione nom +decalco decalcare ver +decalcomania decalcomania nom +decalcomanie decalcomania nom +decalitri decalitro nom +decalitro decalitro nom +decaloghi decalogo nom +decalogo decalogo nom +decametri decametro nom +decametro decametro nom +decana decano nom +decanati decanato nom +decanato decanato nom +decane decano nom +decani decano nom +decano decano nom +decanta decantare ver +decantando decantare ver +decantandone decantare ver +decantano decantare ver +decantare decantare ver +decantarono decantare ver +decantarsi decantare ver +decantata decantare ver +decantate decantare ver +decantati decantare ver +decantato decantare ver +decantava decantare ver +decantavano decantare ver +decantazione decantazione nom +decantazioni decantazione nom +decanterà decantare ver +decanti decantare ver +decantino decantare ver +decanto decantare ver +decantò decantare ver +decapaggi decapaggio nom +decapaggio decapaggio nom +decapare decapare ver +decapita decapitare ver +decapitaci decapitare ver +decapitando decapitare ver +decapitandogli decapitare ver +decapitandola decapitare ver +decapitandoli decapitare ver +decapitandolo decapitare ver +decapitandosi decapitare ver +decapitano decapitare ver +decapitare decapitare ver +decapitarla decapitare ver +decapitarle decapitare ver +decapitarli decapitare ver +decapitarlo decapitare ver +decapitarono decapitare ver +decapitarsi decapitare ver +decapitasse decapitare ver +decapitata decapitare ver +decapitate decapitare ver +decapitati decapitare ver +decapitato decapitare ver +decapitava decapitare ver +decapitavano decapitare ver +decapitazione decapitazione nom +decapitazioni decapitazione nom +decapiteranno decapitare ver +decapiterà decapitare ver +decapitò decapitare ver +decapodi decapodi nom +decappottabile decappottabile adj +decappottabili decappottabile adj +decarburare decarburare ver +decarburata decarburare ver +decarburazione decarburazione nom +decasillabi decasillabo adj +decasillabo decasillabo nom +decastilo decastilo adj +decathlon decathlon nom +decatleta decatleta nom +decatleti decatleta nom +decatlon decatlon nom +decauville decauville nom +deceda decedere ver +decede decedere ver +decedendo decedere ver +decedere decedere ver +decederà decedere ver +decedette decedere ver +decedettero decedere ver +decedeva decedere ver +decedevano decedere ver +decedono decedere ver +deceduta decedere ver +decedute decedere ver +deceduti decedere ver +deceduto decedere ver +decelera decelerare ver +decelerando decelerare ver +decelerare decelerare ver +decelerata decelerare ver +decelerate decelerare ver +decelerati decelerare ver +decelerato decelerare ver +deceleratore deceleratore adj +decelerava decelerare ver +decelerazione decelerazione nom +decelerazioni decelerazione nom +decemvirati decemvirato nom +decemvirato decemvirato nom +decemviri decemviro nom +decemviro decemviro nom +decennale decennale adj +decennali decennale adj +decenne decenne adj +decenni decennio nom +decennio decennio nom +decente decente adj +decenti decente adj +decentra decentrare ver +decentralizzare decentralizzare ver +decentralizzata decentralizzare ver +decentralizzate decentralizzare ver +decentralizzati decentralizzato adj +decentralizzato decentralizzare ver +decentralizzazione decentralizzazione nom +decentramenti decentramento nom +decentramento decentramento nom +decentrando decentrare ver +decentrandola decentrare ver +decentrare decentrare ver +decentrarli decentrare ver +decentrarono decentrare ver +decentrarsi decentrare ver +decentrata decentrare ver +decentrate decentrare ver +decentrati decentrare ver +decentrato decentrare ver +decentrava decentrare ver +decentrò decentrare ver +decenza decenza nom +decessi decesso nom +decesso decesso nom +decibel decibel nom +decida decidere ver +decidano decidere ver +decide decidere ver +decidemmo decidere ver +decidendo decidere ver +decidendone decidere ver +decidendosi decidere ver +decidente decidere ver +decider decidere ver +deciderai decidere ver +decideranno decidere ver +deciderci decidere ver +decidere decidere ver +deciderebbe decidere ver +deciderebbero decidere ver +deciderei decidere ver +decideremmo decidere ver +decideremo decidere ver +deciderete decidere ver +deciderla decidere ver +deciderlo decidere ver +decidermi decidere ver +deciderne decidere ver +decidersi decidere ver +deciderti decidere ver +deciderà decidere ver +deciderò decidere ver +decidesse decidere ver +decidessero decidere ver +decidessi decidere ver +decidessimo decidere ver +decideste decidere ver +decidete decidere ver +decidetelo decidere ver +decidetevi decidere ver +decideva decidere ver +decidevamo decidere ver +decidevano decidere ver +decidevi decidere ver +decidi decidere ver +decidiamo decidere ver +decidiamoci decidere ver +decidiamolo decidere ver +decidiate decidere ver +deciditi decidere ver +decido decidere ver +decidono decidere ver +decidua deciduo adj +decidue deciduo adj +decidui deciduo adj +deciduo deciduo adj +decifra decifrare ver +decifrabile decifrabile adj +decifrabili decifrabile adj +decifrai decifrare ver +decifrando decifrare ver +decifrano decifrare ver +decifrante decifrare ver +decifrare decifrare ver +decifrarla decifrare ver +decifrarle decifrare ver +decifrarli decifrare ver +decifrarlo decifrare ver +decifrarne decifrare ver +decifrarono decifrare ver +decifrasse decifrare ver +decifrata decifrare ver +decifrate decifrare ver +decifrati decifrare ver +decifrato decifrare ver +decifratore decifratore nom +decifratori decifratore nom +decifratrice decifratore nom +decifrava decifrare ver +decifravano decifrare ver +decifrazione decifrazione nom +decifrazioni decifrazione nom +decifrerà decifrare ver +decifri decifrare ver +decifrò decifrare ver +decigrammi decigrammo nom +decigrammo decigrammo nom +decilitri decilitro nom +decilitro decilitro nom +decima decimo adj +decimala decimare ver +decimale decimale adj +decimali decimale adj +decimando decimare ver +decimandola decimare ver +decimandole decimare ver +decimandoli decimare ver +decimandone decimare ver +decimano decimare ver +decimare decimare ver +decimarli decimare ver +decimarne decimare ver +decimarono decimare ver +decimata decimare ver +decimate decimare ver +decimati decimare ver +decimato decimare ver +decimava decimare ver +decimavano decimare ver +decimazione decimazione nom +decimazioni decimazione nom +decime decima|decimo nom +decimerà decimare ver +decimetri decimetro nom +decimetro decimetro nom +decimi decimo nom +decimino decimare ver +decimo decimo adj +decimò decimare ver +decina decina nom +decine decina nom +decisa decidere ver +decisamente decisamente adv_sup +decise decidere ver +decisero decidere ver +decisi deciso adj +decisionale decisionale adj +decisionali decisionale adj +decisione decisione nom +decisioni decisione nom +decisionismo decisionismo nom +decisiva decisivo adj +decisive decisivo adj +decisivi decisivo adj +decisivo decisivo adj +deciso decidere ver +decisore decisore nom +decisori decisore nom +declama declamare ver +declamaci declamare ver +declamando declamare ver +declamano declamare ver +declamante declamare ver +declamare declamare ver +declamarono declamare ver +declamata declamare ver +declamate declamare ver +declamati declamare ver +declamato declamare ver +declamatore declamatore nom +declamatori declamatorio adj +declamatoria declamatorio adj +declamatorio declamatorio adj +declamava declamare ver +declamavano declamare ver +declamazione declamazione nom +declamazioni declamazione nom +declamerà declamare ver +declami declamare ver +declamò declamare ver +declaratoria declaratoria nom +declaratorie declaratoria nom +declaratorio declaratorio adj +declassa declassare ver +declassamenti declassamento nom +declassamento declassamento nom +declassando declassare ver +declassandola declassare ver +declassandolo declassare ver +declassano declassare ver +declassare declassare ver +declassarla declassare ver +declassarlo declassare ver +declassarono declassare ver +declassarsi declassare ver +declassata declassare ver +declassate declassare ver +declassati declassare ver +declassato declassare ver +declassò declassare ver +declina declinare ver +declinabile declinabile adj +declinabili declinabile adj +declinaci declinare ver +declinai declinare ver +declinando declinare ver +declinandola declinare ver +declinandole declinare ver +declinandoli declinare ver +declinandolo declinare ver +declinano declinare ver +declinante declinare ver +declinanti declinare ver +declinare declinare ver +declinarla declinare ver +declinarli declinare ver +declinarlo declinare ver +declinarono declinare ver +declinarsi declinare ver +declinasse declinare ver +declinassero declinare ver +declinata declinare ver +declinate declinare ver +declinati declinare ver +declinato declinare ver +declinava declinare ver +declinavano declinare ver +declinazione declinazione nom +declinazioni declinazione nom +declinerebbero declinare ver +declinerà declinare ver +declini declino nom +decliniamo declinare ver +declinino declinare ver +declino declino nom +declinò declinare ver +declive declive adj +declivi declivio nom +declivio declivio nom +decodifica decodificare ver +decodificando decodificare ver +decodificano decodificare ver +decodificare decodificare ver +decodificarla decodificare ver +decodificarle decodificare ver +decodificarli decodificare ver +decodificarlo decodificare ver +decodificarne decodificare ver +decodificarono decodificare ver +decodificata decodificare ver +decodificate decodificare ver +decodificati decodificare ver +decodificato decodificare ver +decodificava decodificare ver +decodificavano decodificare ver +decodificazione decodificazione nom +decodifichi decodificare ver +decodificò decodificare ver +decolla decollare ver +decollando decollare ver +decollano decollare ver +decollare decollare ver +decollarono decollare ver +decollasse decollare ver +decollata decollare ver +decollate decollare ver +decollati decollare ver +decollato decollare ver +decollava decollare ver +decollavano decollare ver +decollazione decollazione nom +decollazioni decollazione nom +decollerà decollare ver +decolli decollo nom +decollo decollo nom +decollò decollare ver +decolonizzare decolonizzare ver +decolonizzata decolonizzare ver +decolonizzate decolonizzare ver +decolonizzati decolonizzare ver +decolonizzazione decolonizzazione nom +decolora decolorare ver +decolorando decolorare ver +decolorano decolorare ver +decolorante decolorante nom +decoloranti decolorante adj +decolorare decolorare ver +decolorarsi decolorare ver +decolorata decolorare ver +decolorate decolorare ver +decolorati decolorare ver +decolorato decolorare ver +decolorazione decolorazione nom +decolorazioni decolorazione nom +decombente decombente adj +decombenti decombente adj +decompone decomporre ver +decomponendo decomporre ver +decomponendola decomporre ver +decomponendolo decomporre ver +decomponendosi decomporre ver +decomponesse decomporre ver +decomponevano decomporre ver +decomponga decomporre ver +decompongono decomporre ver +decomponibile decomponibile adj +decomponibili decomponibile adj +decomporlo decomporre ver +decomporre decomporre ver +decomporrebbero decomporre ver +decomporrà decomporre ver +decomporsi decomporre ver +decompose decomporre ver +decomposero decomporre ver +decomposizione decomposizione nom +decomposizioni decomposizione nom +decomposta decomporre ver +decomposte decomporre ver +decomposti decomporre ver +decomposto decomporre ver +decompressa decomprimere ver +decompresse decomprimere ver +decompressi decomprimere ver +decompressimetro decompressimetro nom +decompressione decompressione nom +decompressioni decompressione nom +decompresso decomprimere ver +decomprime decomprimere ver +decomprimendo decomprimere ver +decomprimendolo decomprimere ver +decomprimere decomprimere ver +decomprimerla decomprimere ver +decomprimerli decomprimere ver +decomprimerlo decomprimere ver +deconcentra deconcentrare ver +deconcentrare deconcentrare ver +deconcentrarsi deconcentrare ver +deconcentrata deconcentrare ver +deconcentrati deconcentrare ver +deconcentrato deconcentrare ver +decongelante decongelare ver +decongelanti decongelare ver +decongestionamento decongestionamento nom +decongestionando decongestionare ver +decongestionante decongestionare ver +decongestionanti decongestionare ver +decongestionare decongestionare ver +decongestionato decongestionare ver +decontaminante decontaminare ver +decontaminanti decontaminare ver +decontaminare decontaminare ver +decontaminarsi decontaminare ver +decontaminate decontaminare ver +decontaminato decontaminare ver +decontaminazione decontaminazione nom +decontrazione decontrazione nom +decora decorare ver +decoraci decorare ver +decorando decorare ver +decorandola decorare ver +decorandole decorare ver +decorandoli decorare ver +decorandolo decorare ver +decorandone decorare ver +decorano decorare ver +decorante decorare ver +decoranti decorare ver +decorare decorare ver +decorarla decorare ver +decorarle decorare ver +decorarli decorare ver +decorarlo decorare ver +decorarne decorare ver +decorarono decorare ver +decorarsi decorare ver +decorasse decorare ver +decorassero decorare ver +decorata decorare ver +decorate decorare ver +decorati decorare ver +decorativa decorativo adj +decorative decorativo adj +decorativi decorativo adj +decorativo decorativo adj +decorato decorare ver +decoratore decoratore nom +decoratori decoratore nom +decoratrice decoratore nom +decorava decorare ver +decoravano decorare ver +decorazione decorazione nom +decorazioni decorazione nom +decorerà decorare ver +decori decoro nom +decoro decoro nom +decorosa decoroso adj +decorose decoroso adj +decorosi decoroso adj +decoroso decoroso adj +decorra decorrere ver +decorre decorrere ver +decorrendo decorrere ver +decorrente decorrere ver +decorrenti decorrere ver +decorrenza decorrenza nom +decorrenze decorrenza nom +decorreranno decorrere ver +decorrere decorrere ver +decorrerà decorrere ver +decorreva decorrere ver +decorrevano decorrere ver +decorrono decorrere ver +decorse decorrere ver +decorsi decorrere ver +decorso decorso nom +decorò decorare ver +decotti decotto nom +decotto decotto nom +decozione decozione nom +decozioni decozione nom +decrebbe decrescere ver +decrebbero decrescere ver +decrementi decremento nom +decremento decremento nom +decrepita decrepito adj +decrepite decrepito adj +decrepitezza decrepitezza nom +decrepiti decrepito adj +decrepito decrepito adj +decresca decrescere ver +decrescano decrescere ver +decresce decrescere ver +decrescendo decrescere ver +decrescente decrescere ver +decrescenti decrescere ver +decresceranno decrescere ver +decrescere decrescere ver +decrescerebbe decrescere ver +decrescerà decrescere ver +decresceva decrescere ver +decrescevano decrescere ver +decresci decrescere ver +decresciuta decrescere ver +decresciuto decrescere ver +decrescono decrescere ver +decreta decretare ver +decretale decretale nom +decretali decretale adj +decretando decretare ver +decretandogli decretare ver +decretandola decretare ver +decretandolo decretare ver +decretandone decretare ver +decretandosi decretare ver +decretano decretare ver +decretante decretare ver +decretare decretare ver +decretargli decretare ver +decretarla decretare ver +decretarlo decretare ver +decretarne decretare ver +decretarono decretare ver +decretasse decretare ver +decretassero decretare ver +decretata decretare ver +decretate decretare ver +decretati decretare ver +decretato decretare ver +decretava decretare ver +decretavano decretare ver +decretazione decretazione nom +decretazioni decretazione nom +decreteranno decretare ver +decreterebbe decretare ver +decreterebbero decretare ver +decreterà decretare ver +decreti decreto nom +decretiamo decretare ver +decretino decretare ver +decreto decreto nom +decretò decretare ver +decriminalizzazione decriminalizzazione nom +decriptazione decriptazione nom +decubiti decubito nom +decubito decubito nom +decumani decumano nom +decumano decumano nom +decupla decuplo adj +decuplica decuplicare ver +decuplicando decuplicare ver +decuplicandone decuplicare ver +decuplicano decuplicare ver +decuplicare decuplicare ver +decuplicarono decuplicare ver +decuplicarsi decuplicare ver +decuplicata decuplicare ver +decuplicate decuplicare ver +decuplicati decuplicare ver +decuplicato decuplicare ver +decuplicava decuplicare ver +decuplicò decuplicare ver +decuplo decuplo nom +decuria decuria nom +decurie decuria nom +decurione decurione nom +decurioni decurione nom +decurta decurtare ver +decurtando decurtare ver +decurtandole decurtare ver +decurtare decurtare ver +decurtarono decurtare ver +decurtarsi decurtare ver +decurtata decurtare ver +decurtate decurtare ver +decurtati decurtare ver +decurtato decurtare ver +decurtazione decurtazione nom +decurtazioni decurtazione nom +decurtò decurtare ver +decussata decussato adj +decussate decussato adj +decussati decussato adj +decussato decussato adj +decusse decusse nom +dedalee dedaleo adj +dedali dedalo nom +dedalo dedalo nom +dedica dedicare ver +dedicai dedicare ver +dedicammo dedicare ver +dedicando dedicare ver +dedicandoci dedicare ver +dedicandogli dedicare ver +dedicandogliela dedicare ver +dedicandoglielo dedicare ver +dedicandola dedicare ver +dedicandole dedicare ver +dedicandoli dedicare ver +dedicandolo dedicare ver +dedicandomi dedicare ver +dedicandosi dedicare ver +dedicandovi dedicare ver +dedicano dedicare ver +dedicante dedicare ver +dedicanti dedicare ver +dedicar dedicare ver +dedicarci dedicare ver +dedicare dedicare ver +dedicargli dedicare ver +dedicarla dedicare ver +dedicarle dedicare ver +dedicarli dedicare ver +dedicarlo dedicare ver +dedicarmi dedicare ver +dedicarne dedicare ver +dedicarono dedicare ver +dedicarsi dedicare ver +dedicarti dedicare ver +dedicarvi dedicare ver +dedicasi dedicare ver +dedicasse dedicare ver +dedicassero dedicare ver +dedicassi dedicare ver +dedicassimo dedicare ver +dedicata dedicare ver +dedicatari dedicatario nom +dedicataria dedicatario nom +dedicatario dedicatario nom +dedicate dedicare ver +dedicategli dedicare ver +dedicatevi dedicare ver +dedicati dedicare ver +dedicato dedicare ver +dedicatori dedicatorio adj +dedicatoria dedicatorio adj +dedicatorie dedicatoria nom +dedicatorio dedicatorio adj +dedicava dedicare ver +dedicavano dedicare ver +dedicavi dedicare ver +dedicavo dedicare ver +dedicazione dedicazione nom +dedicazioni dedicazione nom +dediche dedica nom +dedicherai dedicare ver +dedicheranno dedicare ver +dedicherebbe dedicare ver +dedicherebbero dedicare ver +dedicherei dedicare ver +dedicheremo dedicare ver +dedicherete dedicare ver +dedicherà dedicare ver +dedicherò dedicare ver +dedichi dedicare ver +dedichiamo dedicare ver +dedichiamoci dedicare ver +dedichino dedicare ver +dedico dedicare ver +dedicò dedicare ver +dedita dedito adj +dedite dedito adj +dediti dedito adj +dedito dedito adj +dedizione dedizione nom +dedizioni dedizione nom +dedotta dedurre ver +dedotte dedurre ver +dedotti dedurre ver +dedotto dedurre ver +deduca dedurre ver +deduce dedurre ver +deducendo dedurre ver +deducendole dedurre ver +deducendolo dedurre ver +deducendone dedurre ver +deducesse dedurre ver +deduceva dedurre ver +deducevano dedurre ver +deduci dedurre ver +deduciamo dedurre ver +deducibile deducibile adj +deducibili deducibile adj +deducibilità deducibilità nom +deducine dedurre ver +deduco dedurre ver +deducono dedurre ver +dedurla dedurre ver +dedurle dedurre ver +dedurli dedurre ver +dedurlo dedurre ver +dedurne dedurre ver +dedurranno dedurre ver +dedurre dedurre ver +dedurrebbe dedurre ver +dedurrei dedurre ver +dedurrà dedurre ver +dedursi dedurre ver +dedusse dedurre ver +dedussero dedurre ver +deduttiva deduttivo adj +deduttive deduttivo adj +deduttivi deduttivo adj +deduttivo deduttivo adj +deduzione deduzione nom +deduzioni deduzione nom +dee dea nom +defalcato defalcare ver +defalco defalco nom +defaticando defaticarsi ver +defaticante defaticarsi ver +defaticato defaticarsi ver +defatigante defatigante adj +defatiganti defatigante adj +defatigare defatigare ver +defeca defecare ver +defecaci defecare ver +defecando defecare ver +defecano defecare ver +defecare defecare ver +defecarsi defecare ver +defecato defecare ver +defecava defecare ver +defecazione defecazione nom +defecazioni defecazione nom +defecò defecare ver +defenestra defenestrare ver +defenestraci defenestrare ver +defenestrando defenestrare ver +defenestrare defenestrare ver +defenestrarlo defenestrare ver +defenestrarono defenestrare ver +defenestrati defenestrare ver +defenestrato defenestrare ver +defenestrazione defenestrazione nom +defenestrazioni defenestrazione nom +defenestrò defenestrare ver +defensionale defensionale adj +deferendo deferire ver +deferente deferente adj +deferenti deferente adj +deferenza deferenza nom +deferenze deferenza nom +deferimenti deferimento nom +deferimento deferimento nom +deferire deferire ver +deferisce deferire ver +deferita deferire ver +deferite deferire ver +deferiti deferire ver +deferito deferire ver +deferiva deferire ver +deferì deferire ver +defeziona defezionare ver +defezionare defezionare ver +defezionarono defezionare ver +defezionato defezionare ver +defezionavano defezionare ver +defezione defezione nom +defezioni defezione nom +defezionò defezionare ver +deficiente deficiente adj +deficienti deficiente adj +deficienza deficienza nom +deficienze deficienza nom +deficit deficit nom +deficitari deficitario adj +deficitaria deficitario adj +deficitarie deficitario adj +deficitario deficitario adj +defila defilare ver +defilando defilare ver +defilandosi defilare ver +defilano defilare ver +defilare defilare ver +defilarmi defilare ver +defilarono defilare ver +defilarsi defilare ver +defilata defilato adj +defilate defilato adj +defilati defilato adj +defilato defilare ver +defilava defilare ver +defilavano defilare ver +defilerà defilare ver +defili defilare ver +defilo defilare ver +defilò defilare ver +definendo definire ver +definendoci definire ver +definendola definire ver +definendole definire ver +definendoli definire ver +definendolo definire ver +definendomi definire ver +definendone definire ver +definendosi definire ver +definendovi definire ver +definente definire ver +definenti definire ver +definiamo definire ver +definiamola definire ver +definiamoli definire ver +definiamolo definire ver +definiate definire ver +definibile definibile adj +definibili definibile adj +definir definire ver +definiranno definire ver +definirci definire ver +definire definire ver +definirebbe definire ver +definirebbero definire ver +definirei definire ver +definiremmo definire ver +definiremo definire ver +definireste definire ver +definiresti definire ver +definirla definire ver +definirle definire ver +definirli definire ver +definirlo definire ver +definirmi definire ver +definirne definire ver +definirono definire ver +definirsi definire ver +definirà definire ver +definirò definire ver +definisca definire ver +definiscano definire ver +definisce definire ver +definisci definire ver +definiscimi definire ver +definisco definire ver +definiscono definire ver +definisse definire ver +definissero definire ver +definissi definire ver +definissimo definire ver +definita definire ver +definite definire ver +definitezza definitezza nom +definiti definire ver +definitiva definitivo adj +definitivamente definitivamente adv_sup +definitive definitivo adj +definitivi definitivo adj +definitivo definitivo adj +definito definire ver +definitore definitore nom +definitori definitore nom +definiva definire ver +definivano definire ver +definivi definire ver +definivo definire ver +definizione definizione nom +definizioni definizione nom +definì definire ver +deflagra deflagrare ver +deflagraci deflagrare ver +deflagrando deflagrare ver +deflagrante deflagrante adj +deflagranti deflagrante adj +deflagrare deflagrare ver +deflagrarono deflagrare ver +deflagrasse deflagrare ver +deflagrata deflagrare ver +deflagrato deflagrare ver +deflagrazione deflagrazione nom +deflagrazioni deflagrazione nom +deflagrerà deflagrare ver +deflagrò deflagrare ver +deflazionando deflazionare ver +deflazionare deflazionare ver +deflazionati deflazionare ver +deflazione deflazione nom +deflessione deflessione nom +deflessioni deflessione nom +deflette deflettere ver +deflettendo deflettere ver +deflettendolo deflettere ver +deflettente deflettere ver +deflettenti deflettere ver +deflettere deflettere ver +defletteva deflettere ver +deflettono deflettere ver +deflettore deflettore nom +deflettori deflettore nom +deflora deflorare ver +deflorare deflorare ver +deflorata deflorare ver +deflorate deflorare ver +deflorato deflorare ver +deflorazione deflorazione nom +defluendo defluire ver +defluente defluire ver +defluenti defluire ver +defluire defluire ver +defluirono defluire ver +defluisca defluire ver +defluiscano defluire ver +defluisce defluire ver +defluiscono defluire ver +defluisse defluire ver +defluita defluire ver +defluiti defluire ver +defluito defluire ver +defluiva defluire ver +defluivano defluire ver +deflussi deflusso nom +deflusso deflusso nom +defluì defluire ver +deforestazione deforestazione nom +deforma deformare ver +deformabile deformabile adj +deformabili deformabile adj +deformabilità deformabilità nom +deformaci deformare ver +deformando deformare ver +deformandola deformare ver +deformandole deformare ver +deformandoli deformare ver +deformandolo deformare ver +deformandone deformare ver +deformandosi deformare ver +deformano deformare ver +deformante deformante adj +deformanti deformante adj +deformare deformare ver +deformarla deformare ver +deformarli deformare ver +deformarlo deformare ver +deformarne deformare ver +deformarono deformare ver +deformarsi deformare ver +deformasse deformare ver +deformassero deformare ver +deformata deformare ver +deformate deformare ver +deformati deformare ver +deformato deformare ver +deformava deformare ver +deformavano deformare ver +deformazione deformazione nom +deformazioni deformazione nom +deforme deforme adj +deformerà deformare ver +deformi deforme adj +deformità deformità nom +deformò deformare ver +defraudando defraudare ver +defraudare defraudare ver +defraudarlo defraudare ver +defraudata defraudare ver +defraudate defraudare ver +defraudati defraudare ver +defraudato defraudare ver +defunta defunto adj +defunte defunto adj +defunti defunto nom +defunto defunto adj +degenera degenerare ver +degeneraci degenerare ver +degenerando degenerare ver +degenerandosi degenerare ver +degenerano degenerare ver +degenerante degenerare ver +degeneranti degenerare ver +degenerare degenerare ver +degenerarono degenerare ver +degenerarsi degenerare ver +degenerasse degenerare ver +degenerassero degenerare ver +degenerata degenerare ver +degenerate degenerato adj +degenerati degenerato adj +degenerativa degenerativo adj +degenerative degenerativo adj +degenerativi degenerativo adj +degenerativo degenerativo adj +degenerato degenerare ver +degenerava degenerare ver +degeneravano degenerare ver +degenerazione degenerazione nom +degenerazioni degenerazione nom +degenere degenere adj +degenereranno degenerare ver +degenererebbe degenerare ver +degenererà degenerare ver +degeneri degenere adj +degenerino degenerare ver +degenero degenerare ver +degenerò degenerare ver +degente degente adj +degenti degente nom +degenza degenza nom +degenze degenza nom +degli del pre +deglutire deglutire ver +deglutisce deglutire ver +deglutita deglutire ver +deglutiti deglutire ver +deglutito deglutire ver +deglutizione deglutizione nom +deglutizioni deglutizione nom +degna degno adj +degnando degnare ver +degnandosi degnare ver +degnano degnare ver +degnare degnare ver +degnarli degnare ver +degnarlo degnare ver +degnarmi degnare ver +degnarsi degnare ver +degnarti degnare ver +degnasse degnare ver +degnassi degnare ver +degnata degnare ver +degnate degnare ver +degnati degnare ver +degnato degnare ver +degnava degnare ver +degnavano degnare ver +degnazione degnazione nom +degne degno adj +degnerà degnare ver +degni degno adj +degnino degnare ver +degno degno adj +degnò degnare ver +degrada degradare ver +degradabile degradabile adj +degradabili degradabile adj +degradabilità degradabilità nom +degradaci degradare ver +degradamenti degradamento nom +degradamento degradamento nom +degradando degradare ver +degradandola degradare ver +degradandoli degradare ver +degradandolo degradare ver +degradandosi degradare ver +degradano degradare ver +degradante degradante adj +degradanti degradante adj +degradare degradare ver +degradarla degradare ver +degradarle degradare ver +degradarli degradare ver +degradarlo degradare ver +degradarne degradare ver +degradarono degradare ver +degradarsi degradare ver +degradasi degradare ver +degradasse degradare ver +degradassero degradare ver +degradata degradare ver +degradate degradare ver +degradati degradare ver +degradato degradare ver +degradava degradare ver +degradavano degradare ver +degradazione degradazione nom +degradazioni degradazione nom +degraderebbe degradare ver +degraderebbero degradare ver +degraderà degradare ver +degradi degrado nom +degradino degradare ver +degrado degrado nom +degradò degradare ver +degusta degustare ver +degustando degustare ver +degustano degustare ver +degustare degustare ver +degustarla degustare ver +degustarle degustare ver +degustarli degustare ver +degustarlo degustare ver +degustarne degustare ver +degustarono degustare ver +degustata degustare ver +degustate degustare ver +degustati degustare ver +degustato degustare ver +degustatore degustatore nom +degustatori degustatore nom +degustazione degustazione nom +degustazioni degustazione nom +deh deh int +dei del pre +deicida deicida adj +deicide deicida adj +deicidi deicida adj +deicidio deicidio nom +deidratante deidratare ver +deidratare deidratare ver +deidratarsi deidratare ver +deidratasi deidratare ver +deidratata deidratare ver +deidratato deidratare ver +deiezione deiezione nom +deiezioni deiezione nom +deifica deificare ver +deificare deificare ver +deificata deificare ver +deificati deificare ver +deificato deificare ver +deificazione deificazione nom +deificò deificare ver +deiscente deiscente adj +deiscenti deiscente adj +deiscenza deiscenza nom +deiscenze deiscenza nom +deismo deismo nom +deista deista nom +deiste deista nom +deisti deista nom +deità deità nom +del del pre +delatore delatore nom +delatori delatore nom +delatrice delatore nom +delazione delazione nom +delazioni delazione nom +delega delega nom +delegabile delegabile adj +delegaci delegare ver +delegando delegare ver +delegandola delegare ver +delegandole delegare ver +delegandoli delegare ver +delegandolo delegare ver +delegandone delegare ver +delegano delegare ver +delegante delegare ver +deleganti delegare ver +delegare delegare ver +delegargli delegare ver +delegarla delegare ver +delegarle delegare ver +delegarli delegare ver +delegarne delegare ver +delegarono delegare ver +delegasse delegare ver +delegata delegare ver +delegate delegato adj +delegati delegato nom +delegato delegare ver +delegava delegare ver +delegavano delegare ver +delegazione delegazione nom +delegazioni delegazione nom +deleghe delega nom +delegherà delegare ver +delegherò delegare ver +deleghi delegare ver +deleghiamo delegare ver +delego delegare ver +delegò delegare ver +deleteri deleterio adj +deleteria deleterio adj +deleterie deleterio adj +deleterio deleterio adj +delfini delfinio|delfino nom +delfinio delfinio nom +delfinista delfinista nom +delfinisti delfinista nom +delfino delfino nom +deliba delibare ver +delibare delibare ver +delibato delibare ver +delibazione delibazione nom +delibera delibera nom +deliberali deliberare ver +deliberando deliberare ver +deliberano deliberare ver +deliberante deliberante adj +deliberanti deliberante adj +deliberare deliberare ver +deliberarono deliberare ver +deliberasse deliberare ver +deliberassero deliberare ver +deliberata deliberare ver +deliberatamente deliberatamente adv +deliberate deliberato adj +deliberati deliberato nom +deliberativa deliberativo adj +deliberative deliberativo adj +deliberativi deliberativo adj +deliberativo deliberativo adj +deliberato deliberare ver +deliberava deliberare ver +deliberavano deliberare ver +deliberazione deliberazione nom +deliberazioni deliberazione nom +delibere delibera nom +delibererà deliberare ver +deliberi deliberare ver +deliberò delibare ver +delicata delicato adj +delicate delicato adj +delicatezza delicatezza nom +delicatezze delicatezza nom +delicati delicato adj +delicato delicato adj +delimita delimitare ver +delimitaci delimitare ver +delimitando delimitare ver +delimitandola delimitare ver +delimitandolo delimitare ver +delimitandone delimitare ver +delimitano delimitare ver +delimitante delimitare ver +delimitanti delimitare ver +delimitare delimitare ver +delimitarla delimitare ver +delimitarle delimitare ver +delimitarli delimitare ver +delimitarlo delimitare ver +delimitarne delimitare ver +delimitarono delimitare ver +delimitarsi delimitare ver +delimitasse delimitare ver +delimitassero delimitare ver +delimitata delimitare ver +delimitate delimitare ver +delimitati delimitare ver +delimitato delimitare ver +delimitava delimitare ver +delimitavano delimitare ver +delimitazione delimitazione nom +delimitazioni delimitazione nom +delimiterebbero delimitare ver +delimiterà delimitare ver +delimiti delimitare ver +delimitino delimitare ver +delimitò delimitare ver +delinea delineare ver +delineamento delineamento nom +delineando delineare ver +delineandolo delineare ver +delineandone delineare ver +delineandosi delineare ver +delineano delineare ver +delineante delineare ver +delineanti delineare ver +delineare delineare ver +delinearli delineare ver +delinearlo delineare ver +delinearne delineare ver +delinearono delineare ver +delinearsi delineare ver +delineasse delineare ver +delineassero delineare ver +delineata delineare ver +delineatasi delineare ver +delineate delineare ver +delineati delineare ver +delineato delineare ver +delineava delineare ver +delineavano delineare ver +delineazione delineazione nom +delineerebbe delineare ver +delineeremo delineare ver +delineerà delineare ver +delinei delineare ver +delineino delineare ver +delineo delineare ver +delineò delineare ver +delinquente delinquente nom +delinquenti delinquente nom +delinquenza delinquenza nom +delinquenze delinquenza nom +delinquenziale delinquenziale adj +delinquenziali delinquenziale adj +delinquere delinquere ver +deliquescente deliquescente adj +deliquescenti deliquescente adj +deliquescenza deliquescenza nom +deliqui deliquio nom +deliquio deliquio nom +delira delirare ver +delirando delirare ver +delirano delirare ver +delirante delirare ver +deliranti delirare ver +delirar delirare ver +delirare delirare ver +delirato delirare ver +delirava delirare ver +deliravo delirare ver +deliri delirio nom +delirio delirio nom +deliro delirare ver +delitti delitto nom +delitto delitto nom +delittuosa delittuoso adj +delittuose delittuoso adj +delittuosi delittuoso adj +delittuoso delittuoso adj +delizia delizia nom +deliziando deliziare ver +deliziandosi deliziare ver +deliziano deliziare ver +deliziarci deliziare ver +deliziare deliziare ver +deliziarono deliziare ver +deliziarsi deliziare ver +deliziata deliziare ver +deliziate deliziare ver +deliziati deliziare ver +deliziato deliziare ver +deliziava deliziare ver +deliziavano deliziare ver +delizie delizia nom +delizierà deliziare ver +delizio deliziare ver +deliziosa delizioso adj +deliziose delizioso adj +deliziosi delizioso adj +delizioso delizioso adj +deliziò deliziare ver +dell dell sw +della del pre +delle del pre +dello del pre +delocalizzate delocalizzare ver +delocalizzazione delocalizzazione nom +delocalizzazioni delocalizzazione nom +delta delta nom +deltaplani deltaplano nom +deltaplano deltaplano nom +deltoide deltoide adj +deltoidi deltoide adj +delucida delucidare ver +delucidando delucidare ver +delucidante delucidare ver +delucidarci delucidare ver +delucidare delucidare ver +delucidarmi delucidare ver +delucidata delucidare ver +delucidate delucidare ver +delucidati delucidare ver +delucidato delucidare ver +delucidazione delucidazione nom +delucidazioni delucidazione nom +deluda deludere ver +delude deludere ver +deludendo deludere ver +deludente deludente adj +deludentemente deludentemente adv +deludenti deludente adj +deluderanno deludere ver +deludere deludere ver +deluderemo deludere ver +deluderla deludere ver +deluderli deludere ver +deluderlo deludere ver +deludermi deludere ver +deluderti deludere ver +deludervi deludere ver +deluderà deludere ver +deluderò deludere ver +deludesse deludere ver +deludete deludere ver +deludeva deludere ver +deludi deludere ver +deludono deludere ver +delusa deludere ver +deluse deludere ver +delusero deludere ver +delusi deludere ver +delusione delusione nom +delusioni delusione nom +deluso deludere ver +demagnetizzare demagnetizzare ver +demagoghi demagogo nom +demagogia demagogia nom +demagogica demagogico adj +demagogiche demagogico adj +demagogici demagogico adj +demagogico demagogico adj +demagogie demagogia nom +demagogo demagogo nom +demanda demandare ver +demandando demandare ver +demandandola demandare ver +demandandole demandare ver +demandandolo demandare ver +demandandone demandare ver +demandano demandare ver +demandar demandare ver +demandare demandare ver +demandarne demandare ver +demandarono demandare ver +demandata demandare ver +demandate demandare ver +demandategli demandare ver +demandati demandare ver +demandato demandare ver +demandava demandare ver +demandavano demandare ver +demandi demandare ver +demandiamo demandare ver +demando demandare ver +demandò demandare ver +demani demanio nom +demaniale demaniale adj +demaniali demaniale adj +demanio demanio nom +demarca demarcare ver +demarcaci demarcare ver +demarcando demarcare ver +demarcano demarcare ver +demarcare demarcare ver +demarcata demarcare ver +demarcate demarcare ver +demarcati demarcare ver +demarcato demarcare ver +demarcava demarcare ver +demarcavano demarcare ver +demarcazione demarcazione nom +demarcazioni demarcazione nom +demarchi demarcare ver +demarco demarcare ver +demarcò demarcare ver +demente demente adj +dementi demente adj +demenza demenza nom +demenze demenza nom +demenziale demenziale adj +demenziali demenziale adj +demeritando demeritare ver +demeritare demeritare ver +demeritato demeritare ver +demeriti demerito nom +demerito demerito nom +demersale demersale adj +demersali demersale adj +demilitarizzare demilitarizzare ver +demilitarizzarsi demilitarizzare ver +demilitarizzata demilitarizzare ver +demilitarizzate demilitarizzare ver +demilitarizzato demilitarizzare ver +demilitarizzazione demilitarizzazione nom +demineralizzata demineralizzare ver +demineralizzate demineralizzare ver +demistifica demistificare ver +demistificante demistificare ver +demistificare demistificare ver +demistificati demistificare ver +demistificato demistificare ver +demistificazione demistificazione nom +demitizzante demitizzare ver +demitizzare demitizzare ver +demiurgica demiurgico adj +demiurgici demiurgico adj +demiurgico demiurgico adj +demiurgo demiurgo nom +demmo dare ver +democratica democratico adj +democraticamente democraticamente adv +democratiche democratico adj +democratici democratico adj +democraticità democraticità nom +democratico democratico adj +democratismo democratismo nom +democratizza democratizzare ver +democratizzando democratizzare ver +democratizzandosi democratizzare ver +democratizzante democratizzare ver +democratizzanti democratizzare ver +democratizzare democratizzare ver +democratizzata democratizzare ver +democratizzato democratizzare ver +democratizzazione democratizzazione nom +democrazia democrazia nom +democrazie democrazia nom +democristiana democristiano adj +democristiane democristiano adj +democristiani democristiano adj +democristiano democristiano adj +demodossologia demodossologia nom +demodulazione demodulazione nom +demografa demografo nom +demografi demografo nom +demografia demografia nom +demografica demografico adj +demografiche demografico adj +demografici demografico adj +demografico demografico adj +demografie demografia nom +demografo demografo nom +demolendo demolire ver +demolendogli demolire ver +demolendola demolire ver +demolendole demolire ver +demolendolo demolire ver +demolendone demolire ver +demolire demolire ver +demolirgli demolire ver +demolirla demolire ver +demolirle demolire ver +demolirli demolire ver +demolirlo demolire ver +demolirne demolire ver +demolirono demolire ver +demolirsi demolire ver +demolirà demolire ver +demolirò demolire ver +demolisca demolire ver +demolisce demolire ver +demoliscono demolire ver +demolita demolire ver +demolite demolire ver +demoliti demolire ver +demolito demolire ver +demolitore demolitore adj +demolitori demolitore nom +demolitrice demolitore adj +demolitrici demolitore adj +demoliva demolire ver +demolivano demolire ver +demolizione demolizione nom +demolizioni demolizione nom +demologia demologia nom +demoltiplica demoltiplicare ver +demoltiplicano demoltiplicare ver +demoltiplicata demoltiplicare ver +demoltiplicate demoltiplicare ver +demoltiplicato demoltiplicare ver +demoltiplicazione demoltiplicazione nom +demolì demolire ver +demone demone nom +demonetizzata demonetizzare ver +demonetizzate demonetizzare ver +demonetizzati demonetizzare ver +demonetizzato demonetizzare ver +demoni demone|demonio nom +demoniaca demoniaco adj +demoniache demoniaco adj +demoniaco demoniaco adj +demonica demonico adj +demoniche demonico adj +demonico demonico adj +demonio demonio nom +demonismo demonismo nom +demonizzazione demonizzazione nom +demonologia demonologia nom +demonologie demonologia nom +demoproletari demoproletario adj +demoproletaria demoproletario adj +demoproletario demoproletario adj +demopsicologia demopsicologia nom +demoralizza demoralizzare ver +demoralizzando demoralizzare ver +demoralizzano demoralizzare ver +demoralizzante demoralizzare ver +demoralizzanti demoralizzare ver +demoralizzare demoralizzare ver +demoralizzarlo demoralizzare ver +demoralizzarono demoralizzare ver +demoralizzarsi demoralizzare ver +demoralizzarti demoralizzare ver +demoralizzasse demoralizzare ver +demoralizzata demoralizzare ver +demoralizzate demoralizzare ver +demoralizzati demoralizzare ver +demoralizzato demoralizzare ver +demoralizzava demoralizzare ver +demoralizzavano demoralizzare ver +demoralizzazione demoralizzazione nom +demoralizzi demoralizzare ver +demoralizzò demoralizzare ver +demorde demordere ver +demordendo demordere ver +demordere demordere ver +demordeva demordere ver +demordo demordere ver +demordono demordere ver +demorse demordere ver +demorsero demordere ver +demoscopia demoscopia nom +demotica demotico adj +demotiche demotico adj +demotici demotico adj +demotico demotico adj +demotiva demotivare ver +demotivando demotivare ver +demotivante demotivare ver +demotivanti demotivare ver +demotivare demotivare ver +demotivarlo demotivare ver +demotivata demotivare ver +demotivate demotivare ver +demotivati demotivare ver +demotivato demotivare ver +demotivazione demotivazione nom +demulcente demulcente adj +denari denaro nom +denaro denaro nom +denatalità denatalità nom +denatura denaturare ver +denaturando denaturare ver +denaturano denaturare ver +denaturante denaturare ver +denaturanti denaturare ver +denaturare denaturare ver +denaturarla denaturare ver +denaturarsi denaturare ver +denaturata denaturare ver +denaturate denaturare ver +denaturati denaturare ver +denaturato denaturare ver +denazionalizzare denazionalizzare ver +denazionalizzazione denazionalizzazione nom +dendrocronologia dendrocronologia nom +dendrocronologie dendrocronologia nom +dendrologia dendrologia nom +dendrologie dendrologia nom +denegaci denegare ver +denegare denegare ver +denegata denegare ver +denegato denegare ver +denigra denigrare ver +denigrando denigrare ver +denigrandoli denigrare ver +denigrandolo denigrare ver +denigrandone denigrare ver +denigrano denigrare ver +denigrante denigrare ver +denigranti denigrare ver +denigrare denigrare ver +denigrarla denigrare ver +denigrarli denigrare ver +denigrarlo denigrare ver +denigrarmi denigrare ver +denigrarono denigrare ver +denigrata denigrare ver +denigrate denigrare ver +denigrati denigrare ver +denigrato denigrare ver +denigratore denigratore nom +denigratori denigratore|denigratorio adj +denigratoria denigratorio adj +denigratorio denigratorio adj +denigrava denigrare ver +denigravano denigrare ver +denigrazione denigrazione nom +denigrazioni denigrazione nom +denigrerebbe denigrare ver +denigrino denigrare ver +denigrò denigrare ver +denitrificazione denitrificazione nom +denocciolate denocciolare ver +denocciolato denocciolare ver +denomina denominare ver +denominaci denominare ver +denominale denominale adj +denominali denominale adj +denominando denominare ver +denominandola denominare ver +denominandole denominare ver +denominandoli denominare ver +denominandolo denominare ver +denominandosi denominare ver +denominano denominare ver +denominar denominare ver +denominare denominare ver +denominarla denominare ver +denominarle denominare ver +denominarli denominare ver +denominarlo denominare ver +denominarono denominare ver +denominarsi denominare ver +denominasi denominare ver +denominasse denominare ver +denominassero denominare ver +denominata denominare ver +denominate denominare ver +denominatesi denominare ver +denominati denominare ver +denominativa denominativo adj +denominative denominativo adj +denominativi denominativo adj +denominativo denominativo adj +denominato denominare ver +denominatore denominatore nom +denominatori denominatore nom +denominava denominare ver +denominavano denominare ver +denominazione denominazione nom +denominazioni denominazione nom +denomineranno denominare ver +denominerei denominare ver +denominerà denominare ver +denomini denominare ver +denominiamo denominare ver +denomino denominare ver +denominò denominare ver +denota denotare ver +denotaci denotare ver +denotando denotare ver +denotandone denotare ver +denotano denotare ver +denotante denotare ver +denotanti denotare ver +denotare denotare ver +denotarli denotare ver +denotarlo denotare ver +denotarne denotare ver +denotarono denotare ver +denotasse denotare ver +denotata denotare ver +denotate denotare ver +denotati denotare ver +denotato denotare ver +denotava denotare ver +denotavano denotare ver +denotazione denotazione nom +denotazioni denotazione nom +denoterebbe denotare ver +denoteremo denotare ver +denoterà denotare ver +denoti denotare ver +denotiamo denotare ver +denotiamola denotare ver +denotiamoli denotare ver +denotino denotare ver +denoto denotare ver +denotò denotare ver +densa denso adj +densamente densamente adv +dense denso adj +densi denso adj +densimetri densimetro nom +densimetro densimetro nom +densità densità nom +denso denso adj +dentale dentale adj +dentali dentale adj +dentari dentario adj +dentaria dentario adj +dentarie dentario adj +dentario dentario adj +dentata dentato adj +dentate dentato adj +dentati dentato adj +dentato dentato adj +dentatrice dentatrice nom +dentatura dentatura nom +dentature dentatura nom +dente dente nom +dentella dentellare ver +dentellare dentellare ver +dentellata dentellato adj +dentellate dentellato adj +dentellati dentellato adj +dentellato dentellare ver +dentellatura dentellatura nom +dentellature dentellatura nom +dentelli dentello nom +dentello dentello nom +denti dente nom +dentice dentice nom +dentici dentice nom +dentiera dentiera nom +dentiere dentiera nom +dentifrice dentifricio adj +dentifrici dentifricio nom +dentifricia dentifricio adj +dentifricio dentifricio nom +dentina dentina nom +dentine dentina nom +dentista dentista nom +dentiste dentista nom +dentisti dentista nom +dentistica dentistico adj +dentistiche dentistico adj +dentistici dentistico adj +dentistico dentistico adj +dentizione dentizione nom +dentizioni dentizione nom +dentro dentro adv_sup +denuclearizzata denuclearizzato adj +denuclearizzazione denuclearizzazione nom +denuda denudare ver +denudamento denudamento nom +denudandola denudare ver +denudano denudare ver +denudare denudare ver +denudarono denudare ver +denudarsi denudare ver +denudata denudare ver +denudate denudare ver +denudati denudare ver +denudato denudare ver +denudava denudare ver +denudazione denudazione nom +denudiamo denudare ver +denudo denudare ver +denudò denudare ver +denunce denuncia nom +denunceranno denunciare ver +denuncerebbe denunciare ver +denuncerebbero denunciare ver +denuncerei denunciare ver +denunceremo denunciare ver +denuncerà denunciare ver +denuncerò denunciare ver +denunci denunciare ver +denuncia denuncia nom +denunciamo denunciare ver +denunciando denunciare ver +denunciandola denunciare ver +denunciandole denunciare ver +denunciandoli denunciare ver +denunciandolo denunciare ver +denunciandone denunciare ver +denunciano denunciare ver +denunciante denunciare ver +denuncianti denunciare ver +denunciarci denunciare ver +denunciare denunciare ver +denunciargli denunciare ver +denunciarla denunciare ver +denunciarli denunciare ver +denunciarlo denunciare ver +denunciarmi denunciare ver +denunciarne denunciare ver +denunciarono denunciare ver +denunciarti denunciare ver +denunciarvi denunciare ver +denunciasse denunciare ver +denunciassero denunciare ver +denunciassi denunciare ver +denunciata denunciare ver +denunciate denunciare ver +denunciatemi denunciare ver +denunciati denunciare ver +denunciato denunciare ver +denunciava denunciare ver +denunciavano denunciare ver +denunciavi denunciare ver +denunciavo denunciare ver +denuncino denunciare ver +denuncio denunciare ver +denunciò denunciare ver +denunzia denunzia nom +denunziando denunziare ver +denunziano denunziare ver +denunziare denunziare ver +denunziarlo denunziare ver +denunziarono denunziare ver +denunziata denunziare ver +denunziati denunziare ver +denunziato denunziare ver +denunziatore denunziatore nom +denunziava denunziare ver +denunzie denunzia nom +denunzierà denunziare ver +denunzio denunziare ver +denunziò denunziare ver +denutrita denutrito adj +denutrite denutrito adj +denutriti denutrito adj +denutrito denutrito adj +denutrizione denutrizione nom +deodora deodorare ver +deodorante deodorante nom +deodoranti deodorante adj +deodorato deodorare ver +deodoro deodorare ver +deontologia deontologia nom +deontologiche deontologico adj +deontologie deontologia nom +deossiribonucleico deossiribonucleico adj +deostruente deostruire ver +depaupera depauperare ver +depauperamenti depauperamento nom +depauperamento depauperamento nom +depauperando depauperare ver +depauperano depauperare ver +depauperante depauperare ver +depauperanti depauperare ver +depauperare depauperare ver +depauperarono depauperare ver +depauperarsi depauperare ver +depauperata depauperare ver +depauperate depauperare ver +depauperati depauperare ver +depauperato depauperare ver +depauperò depauperare ver +depenalizzare depenalizzare ver +depenna depennare ver +depennando depennare ver +depennare depennare ver +depennarla depennare ver +depennarle depennare ver +depennarli depennare ver +depennarlo depennare ver +depennarne depennare ver +depennata depennare ver +depennate depennare ver +depennati depennare ver +depennato depennare ver +depenni depennare ver +depenniamo depennare ver +depenno depennare ver +depennò depennare ver +deperibile deperibile adj +deperibili deperibile adj +deperibilità deperibilità nom +deperimenti deperimento nom +deperimento deperimento nom +deperire deperire ver +deperirebbe deperire ver +deperirono deperire ver +deperirsi deperire ver +deperisca deperire ver +deperisce deperire ver +deperiscono deperire ver +deperita deperire ver +deperite deperire ver +deperiti deperire ver +deperito deperire ver +deperiva deperire ver +deperì deperire ver +depila depilare ver +depilando depilare ver +depilante depilare ver +depilare depilare ver +depilarsi depilare ver +depilata depilare ver +depilate depilare ver +depilati depilare ver +depilato depilare ver +depilatoria depilatorio adj +depilatorie depilatorio adj +depilava depilare ver +depilavano depilare ver +depilazione depilazione nom +depiliamoci depilare ver +depista depistare ver +depistaggio depistaggio nom +depistando depistare ver +depistano depistare ver +depistanti depistare ver +depistare depistare ver +depistarla depistare ver +depistarli depistare ver +depistarlo depistare ver +depistati depistare ver +depistato depistare ver +depistò depistare ver +deplora deplorare ver +deplorabile deplorabile adj +deplorando deplorare ver +deplorandone deplorare ver +deplorano deplorare ver +deplorare deplorare ver +deplorarli deplorare ver +deplorarono deplorare ver +deplorasse deplorare ver +deplorata deplorare ver +deplorate deplorare ver +deplorato deplorare ver +deplorava deplorare ver +deploravano deplorare ver +deplorazione deplorazione nom +deplorazioni deplorazione nom +deplorevole deplorevole adj +deplorevoli deplorevole adj +deplorevolmente deplorevolmente adv +deploriamo deplorare ver +deploro deplorare ver +deplorò deplorare ver +depolarizzante depolarizzante adj +depolarizzanti depolarizzante adj +depolarizzazione depolarizzazione nom +depolarizzazioni depolarizzazione nom +depolimerizza depolimerizzare ver +depolimerizzano depolimerizzare ver +depolimerizzare depolimerizzare ver +depolimerizzazione depolimerizzazione nom +depoliticizzare depoliticizzare ver +depone deporre ver +deponendo deporre ver +deponendola deporre ver +deponendoli deporre ver +deponendolo deporre ver +deponendone deporre ver +deponendovi deporre ver +deponente deponente nom +deponenti deponente nom +deponesse deporre ver +deponessero deporre ver +deponete deporre ver +deponeva deporre ver +deponevano deporre ver +deponga deporre ver +depongano deporre ver +depongo deporre ver +depongono deporre ver +deponi deporre ver +deponiamo deporre ver +depor deporre ver +deporla deporre ver +deporle deporre ver +deporli deporre ver +deporlo deporre ver +deporne deporre ver +deporranno deporre ver +deporre deporre ver +deporrebbe deporre ver +deporrebbero deporre ver +deporrà deporre ver +deporsi deporre ver +deporta deportare ver +deportaci deportare ver +deportammo deportare ver +deportando deportare ver +deportandoli deportare ver +deportandolo deportare ver +deportandone deportare ver +deportano deportare ver +deportante deportare ver +deportar deportare ver +deportare deportare ver +deportarli deportare ver +deportarlo deportare ver +deportarne deportare ver +deportarono deportare ver +deportarvi deportare ver +deportata deportare ver +deportate deportare ver +deportati deportato nom +deportato deportare ver +deportava deportare ver +deportavano deportare ver +deportazione deportazione nom +deportazioni deportazione nom +deportò deportare ver +deporvi deporre ver +depose deporre ver +deposero deporre ver +deposi deporre ver +deposita depositare ver +depositando depositare ver +depositandola depositare ver +depositandole depositare ver +depositandoli depositare ver +depositandolo depositare ver +depositandone depositare ver +depositandosi depositare ver +depositandovi depositare ver +depositano depositare ver +depositante depositante nom +depositanti depositante nom +depositare depositare ver +depositari depositario nom +depositaria depositario nom +depositarie depositario nom +depositario depositario nom +depositarla depositare ver +depositarle depositare ver +depositarli depositare ver +depositarlo depositare ver +depositarne depositare ver +depositarono depositare ver +depositarsi depositare ver +depositarvi depositare ver +depositasse depositare ver +depositassero depositare ver +depositata depositare ver +depositate depositare ver +depositatesi depositare ver +depositati depositare ver +depositato depositare ver +depositava depositare ver +depositavano depositare ver +depositeranno depositare ver +depositerebbe depositare ver +depositerebbero depositare ver +depositerà depositare ver +depositi deposito nom +depositiamo depositare ver +depositino depositare ver +deposito deposito nom +depositò depositare ver +deposizione deposizione nom +deposizioni deposizione nom +deposta deporre ver +deposte deporre ver +deposti deporre ver +deposto deporre ver +depravare depravare ver +depravata depravato adj +depravate depravato adj +depravati depravato nom +depravato depravato adj +depravazione depravazione nom +depravazioni depravazione nom +depreca deprecare ver +deprecabile deprecabile adj +deprecabili deprecabile adj +deprecai deprecare ver +deprecando deprecare ver +deprecano deprecare ver +deprecante deprecare ver +deprecare deprecare ver +deprecarlo deprecare ver +deprecarne deprecare ver +deprecarono deprecare ver +deprecata deprecare ver +deprecate deprecare ver +deprecati deprecare ver +deprecativa deprecativo adj +deprecative deprecativo adj +deprecativo deprecativo adj +deprecato deprecare ver +deprecava deprecare ver +deprecavano deprecare ver +deprecazione deprecazione nom +deprecazioni deprecazione nom +deprecheranno deprecare ver +deprechi deprecare ver +deprechiamo deprecare ver +depreco deprecare ver +deprecò deprecare ver +depreda depredare ver +depredaci depredare ver +depredammo depredare ver +depredando depredare ver +depredandola depredare ver +depredandole depredare ver +depredandoli depredare ver +depredandone depredare ver +depredano depredare ver +depredare depredare ver +depredarla depredare ver +depredarle depredare ver +depredarli depredare ver +depredarlo depredare ver +depredarne depredare ver +depredarono depredare ver +depredassero depredare ver +depredata depredare ver +depredate depredare ver +depredati depredare ver +depredato depredare ver +depredatori depredatore nom +depredava depredare ver +depredavano depredare ver +depredazione depredazione nom +depredazioni depredazione nom +depredò depredare ver +depressa deprimere ver +depresse depresso adj +depressi depresso adj +depressione depressione nom +depressioni depressione nom +depressiva depressivo adj +depressive depressivo adj +depressivi depressivo adj +depressivo depressivo adj +depresso deprimere ver +depressore depressore adj +depressori depressore adj +deprezza deprezzare ver +deprezzamenti deprezzamento nom +deprezzamento deprezzamento nom +deprezzandolo deprezzare ver +deprezzano deprezzare ver +deprezzare deprezzare ver +deprezzarsi deprezzare ver +deprezzata deprezzare ver +deprezzate deprezzare ver +deprezzati deprezzare ver +deprezzato deprezzare ver +deprima deprimere ver +deprime deprimere ver +deprimendo deprimere ver +deprimendosi deprimere ver +deprimente deprimente adj +deprimenti deprimente adj +deprimere deprimere ver +deprimerla deprimere ver +deprimermi deprimere ver +deprimersi deprimere ver +deprimeva deprimere ver +deprimo deprimere ver +deprimono deprimere ver +deprivare deprivare ver +deprivata deprivare ver +deprivate deprivare ver +deprivati deprivare ver +deprivato deprivare ver +deprivazione deprivazione nom +deprivazioni deprivazione nom +depura depurare ver +depuraci depurare ver +depurando depurare ver +depurandola depurare ver +depurandole depurare ver +depurandolo depurare ver +depurano depurare ver +depurante depurare ver +depuranti depurare ver +depurare depurare ver +depurarla depurare ver +depurarle depurare ver +depurarli depurare ver +depurarlo depurare ver +depurarsi depurare ver +depurata depurare ver +depurate depurare ver +depurati depurare ver +depurativa depurativo adj +depurative depurativo adj +depurativi depurativo adj +depurativo depurativo adj +depurato depurare ver +depuratore depuratore nom +depuratori depuratore|depuratorio nom +depuratrice depuratore nom +depurazione depurazione nom +depurazioni depurazione nom +depurò depurare ver +deputa deputare ver +deputaci deputare ver +deputandolo deputare ver +deputanti deputare ver +deputare deputare ver +deputarono deputare ver +deputarsi deputare ver +deputata deputare ver +deputate deputare ver +deputati deputato nom +deputato deputare ver +deputazione deputazione nom +deputazioni deputazione nom +deputò deputare ver +dequalificante dequalificare ver +dequalificanti dequalificare ver +dequalificare dequalificare ver +dequalificata dequalificare ver +dequalificato dequalificare ver +deragli deragliare ver +deraglia deragliare ver +deragliamenti deragliamento nom +deragliamento deragliamento nom +deragliando deragliare ver +deragliano deragliare ver +deragliare deragliare ver +deragliarono deragliare ver +deragliata deragliare ver +deragliate deragliare ver +deragliati deragliare ver +deragliato deragliare ver +deragliava deragliare ver +deraglierà deragliare ver +deragliò deragliare ver +derapa derapare ver +derapando derapare ver +derapano derapare ver +derapare derapare ver +derapata derapata nom +derapate derapata nom +derattizzante derattizzare ver +derattizzare derattizzare ver +derattizzazione derattizzazione nom +derattizzazioni derattizzazione nom +derby derby nom +deregolamentare deregolamentare ver +deregolamentazione deregolamentazione nom +deregolamentazioni deregolamentazione nom +deregulation deregulation nom +derelitta derelitto adj +derelitte derelitto adj +derelitti derelitto nom +derelitto derelitto adj +derequisita derequisire ver +derequisito derequisire ver +derequisizione derequisizione nom +deretani deretano nom +deretano deretano nom +derida deridere ver +deride deridere ver +deridendo deridere ver +deridendoci deridere ver +deridendola deridere ver +deridendoli deridere ver +deridendolo deridere ver +deridendone deridere ver +derideranno deridere ver +deridere deridere ver +deriderla deridere ver +deriderli deridere ver +deriderlo deridere ver +deridermi deridere ver +deriderà deridere ver +deridesse deridere ver +deridete deridere ver +derideva deridere ver +deridevano deridere ver +deridi deridere ver +derido deridere ver +deridono deridere ver +derisa deridere ver +derise deriso adj +derisero deridere ver +derisi deridere ver +derisione derisione nom +derisioni derisione nom +deriso deridere ver +derisori derisorio adj +derisoria derisorio adj +derisorie derisorio adj +derisorio derisorio adj +deriva deriva nom +derivabili derivabile adj +derivaci derivare ver +derivando derivare ver +derivandola derivare ver +derivandole derivare ver +derivandoli derivare ver +derivandolo derivare ver +derivandone derivare ver +derivano derivare ver +derivante derivare ver +derivanti derivare ver +derivar derivare ver +derivare derivare ver +derivargli derivare ver +derivarle derivare ver +derivarli derivare ver +derivarlo derivare ver +derivarne derivare ver +derivarono derivare ver +derivarsi derivare ver +derivarti derivare ver +derivasse derivare ver +derivassero derivare ver +derivata derivare ver +derivate derivare ver +derivategli derivare ver +derivatene derivare ver +derivati derivato nom +derivativa derivativo adj +derivative derivativo adj +derivativi derivativo adj +derivativo derivativo adj +derivato derivare ver +derivatore derivatore adj +derivatori derivatore nom +derivava derivare ver +derivavano derivare ver +derivazione derivazione nom +derivazioni derivazione nom +derive deriva nom +deriveranno derivare ver +deriverebbe derivare ver +deriverebbero derivare ver +deriverà derivare ver +derivi derivare ver +deriviamo derivare ver +derivino derivare ver +derivo derivare ver +derivò derivare ver +derma derma nom +dermascheletro dermascheletro nom +dermatite dermatite nom +dermatiti dermatite nom +dermatologa dermatologo nom +dermatologe dermatologo nom +dermatologi dermatologo nom +dermatologia dermatologia nom +dermatologica dermatologico adj +dermatologiche dermatologico adj +dermatologici dermatologico adj +dermatologico dermatologico adj +dermatologie dermatologia nom +dermatologo dermatologo nom +dermatosi dermatosi nom +dermica dermico adj +dermiche dermico adj +dermici dermico adj +dermico dermico adj +dermografismo dermografismo nom +dermoide dermoide nom +dermoidi dermoide nom +dermopatia dermopatia nom +dermopatie dermopatia nom +dermosifilopatia dermosifilopatia nom +dermosifilopatica dermosifilopatico adj +deroga deroga nom +derogabile derogabile adj +derogabili derogabile adj +derogando derogare ver +derogano derogare ver +derogare derogare ver +derogarvi derogare ver +derogasse derogare ver +derogata derogare ver +derogate derogare ver +derogati derogare ver +derogato derogare ver +derogatoria derogatorio adj +derogatorie derogatorio adj +derogatorio derogatorio adj +derogava derogare ver +derogazione derogazione nom +derogazioni derogazione nom +deroghe deroga nom +deroghi derogare ver +deroghiamo derogare ver +deroghino derogare ver +derogò derogare ver +derrata derrata nom +derrate derrata nom +derrick derrick nom +deruba derubare ver +derubando derubare ver +derubandola derubare ver +derubandoli derubare ver +derubandolo derubare ver +derubano derubare ver +derubarci derubare ver +derubare derubare ver +derubarla derubare ver +derubarle derubare ver +derubarli derubare ver +derubarlo derubare ver +derubarne derubare ver +derubarono derubare ver +derubarsi derubare ver +derubata derubare ver +derubate derubare ver +derubati derubare ver +derubato derubare ver +derubava derubare ver +derubavano derubare ver +deruberanno derubare ver +deruberà derubare ver +derubi derubare ver +derubò derubare ver +deruralizzazione deruralizzazione nom +dervisci derviscio nom +derviscio derviscio nom +desacralizzare desacralizzare ver +desacralizzata desacralizzare ver +desacralizzato desacralizzare ver +desalinazione desalinazione nom +desalinizzare desalinizzare ver +desalinizzazione desalinizzazione nom +deschetti deschetto nom +deschetto deschetto nom +deschi desco nom +desco desco nom +descrisse descrivere ver +descrissero descrivere ver +descrissi descrivere ver +descritta descrivere ver +descritte descrivere ver +descritti descrivere ver +descrittiva descrittivo adj +descrittive descrittivo adj +descrittivi descrittivo adj +descrittivo descrittivo adj +descritto descrivere ver +descrittore descrittore nom +descrittori descrittore nom +descrittrice descrittore nom +descriva descrivere ver +descrivano descrivere ver +descrive descrivere ver +descrivendo descrivere ver +descrivendoci descrivere ver +descrivendogli descrivere ver +descrivendola descrivere ver +descrivendole descrivere ver +descrivendoli descrivere ver +descrivendolo descrivere ver +descrivendone descrivere ver +descrivendosi descrivere ver +descrivente descrivere ver +descriventi descrivere ver +descriver descrivere ver +descriveranno descrivere ver +descriverci descrivere ver +descrivere descrivere ver +descriverebbe descrivere ver +descriverebbero descrivere ver +descriverei descrivere ver +descriveremo descrivere ver +descrivergli descrivere ver +descriverla descrivere ver +descriverle descrivere ver +descriverli descrivere ver +descriverlo descrivere ver +descrivermi descrivere ver +descriverne descrivere ver +descriversi descrivere ver +descriverti descrivere ver +descriverà descrivere ver +descriverò descrivere ver +descrivesse descrivere ver +descrivessero descrivere ver +descrivessi descrivere ver +descrivete descrivere ver +descriveva descrivere ver +descrivevano descrivere ver +descrivevo descrivere ver +descrivi descrivere ver +descriviamo descrivere ver +descrivibile descrivibile adj +descrivibili descrivibile adj +descrivila descrivere ver +descrivili descrivere ver +descrivo descrivere ver +descrivono descrivere ver +descrizione descrizione nom +descrizioni descrizione nom +deserta deserto adj +deserte deserto adj +deserti deserto adj +desertica desertico adj +desertiche desertico adj +desertici desertico adj +desertico desertico adj +desertificazione desertificazione nom +deserto deserto nom +desiano desiare ver +desiante desiare ver +desiata desiare ver +desiati desiare ver +desiato desiare ver +desidera desiderare ver +desiderabile desiderabile adj +desiderabili desiderabile adj +desiderai desiderare ver +desiderami desiderare ver +desiderando desiderare ver +desiderandolo desiderare ver +desiderandone desiderare ver +desiderano desiderare ver +desiderante desiderare ver +desideranti desiderare ver +desiderar desiderare ver +desiderare desiderare ver +desiderarla desiderare ver +desiderarli desiderare ver +desiderarlo desiderare ver +desiderarne desiderare ver +desiderarono desiderare ver +desiderarsi desiderare ver +desiderasse desiderare ver +desiderassero desiderare ver +desiderassi desiderare ver +desiderata desiderare ver +desiderate desiderare ver +desiderati desiderare ver +desiderativa desiderativo adj +desiderative desiderativo adj +desiderativi desiderativo adj +desiderativo desiderativo adj +desiderato desiderare ver +desiderava desiderare ver +desideravamo desiderare ver +desideravano desiderare ver +desideravate desiderare ver +desideravi desiderare ver +desideravo desiderare ver +desidereranno desiderare ver +desidererebbe desiderare ver +desidererebbero desiderare ver +desidererei desiderare ver +desidereremmo desiderare ver +desidereresti desiderare ver +desidererete desiderare ver +desidererà desiderare ver +desidererò desiderare ver +desideri desiderio nom +desideriamo desiderare ver +desideriate desiderare ver +desiderino desiderare ver +desiderio desiderio nom +desidero desiderare ver +desiderosa desideroso adj +desiderose desideroso adj +desiderosi desideroso adj +desideroso desideroso adj +desiderò desiderare ver +design design nom +designa designare ver +designabile designabile adj +designaci designare ver +designando designare ver +designandola designare ver +designandole designare ver +designandoli designare ver +designandolo designare ver +designandone designare ver +designano designare ver +designante designare ver +designanti designare ver +designare designare ver +designarla designare ver +designarle designare ver +designarli designare ver +designarlo designare ver +designarne designare ver +designarono designare ver +designarsi designare ver +designasse designare ver +designassero designare ver +designata designare ver +designate designare ver +designati designare ver +designato designare ver +designava designare ver +designavano designare ver +designazione designazione nom +designazioni designazione nom +designer designer nom +designeranno designare ver +designerebbe designare ver +designeremo designare ver +designerà designare ver +designi designare ver +designiamo designare ver +designo designare ver +designò designare ver +desii desio nom +desinar desinare ver +desinare desinare ver +desinata desinare ver +desinate desinare ver +desinati desinare ver +desinato desinare ver +desinavano desinare ver +desinenza desinenza nom +desinenze desinenza nom +desinenziale desinenziale adj +desinenziali desinenziale adj +desini desinare ver +desio desio nom +desiosa desioso adj +desiosi desioso adj +desioso desioso adj +desista desistere ver +desiste desistere ver +desistendo desistere ver +desisteranno desistere ver +desistere desistere ver +desisterono desistere ver +desisterà desistere ver +desistesse desistere ver +desisteva desistere ver +desisti desistere ver +desistiamo desistere ver +desistito desistere ver +desisto desistere ver +desistono desistere ver +desola desolare ver +desolaci desolare ver +desolante desolante adj +desolanti desolante adj +desolare desolare ver +desolarono desolare ver +desolarsi desolare ver +desolata desolato adj +desolate desolato adj +desolati desolato adj +desolato desolato adj +desolava desolare ver +desolavano desolare ver +desolazione desolazione nom +desolazioni desolazione nom +desolino desolare ver +desolo desolare ver +desolò desolare ver +desossiribonucleico desossiribonucleico adj +despota despota nom +despoti despota nom +desquamativa desquamativo adj +desquamative desquamativo adj +desquamazione desquamazione nom +desquamazioni desquamazione nom +desse dare ver +dessero dare ver +dessert dessert nom +dessi dare ver +dessimo dare ver +dessiografia dessiografia nom +desso desso pro +dessous dessous nom +desta destare ver +destabilizza destabilizzare ver +destabilizzando destabilizzare ver +destabilizzano destabilizzare ver +destabilizzante destabilizzare ver +destabilizzanti destabilizzare ver +destabilizzare destabilizzare ver +destabilizzarla destabilizzare ver +destabilizzarli destabilizzare ver +destabilizzarlo destabilizzare ver +destabilizzarne destabilizzare ver +destabilizzarono destabilizzare ver +destabilizzarsi destabilizzare ver +destabilizzata destabilizzare ver +destabilizzate destabilizzare ver +destabilizzati destabilizzare ver +destabilizzato destabilizzare ver +destabilizzatore destabilizzatore nom +destabilizzava destabilizzare ver +destabilizzavano destabilizzare ver +destabilizzazione destabilizzazione nom +destabilizzerebbe destabilizzare ver +destabilizzi destabilizzare ver +destabilizzò destabilizzare ver +destando destare ver +destandone destare ver +destane destare ver +destano destare ver +destante destare ver +destar destare ver +destare destare ver +destarla destare ver +destarlo destare ver +destarono destare ver +destarsi destare ver +destasse destare ver +destassero destare ver +destasti destare ver +destata destare ver +destate destare ver +destatevi destare ver +destati destare ver +destato destare ver +destava destare ver +destavano destare ver +deste dare ver +desteranno destare ver +desterebbe destare ver +desterà destare ver +desti desto adj +destiamo destare ver +destina destinare ver +destinabile destinabile adj +destinale destinare ver +destinando destinare ver +destinandola destinare ver +destinandole destinare ver +destinandoli destinare ver +destinandolo destinare ver +destinandone destinare ver +destinandosi destinare ver +destinano destinare ver +destinante destinare ver +destinanti destinare ver +destinare destinare ver +destinargli destinare ver +destinarla destinare ver +destinarle destinare ver +destinarli destinare ver +destinarlo destinare ver +destinarne destinare ver +destinarono destinare ver +destinarsi destinare ver +destinarvi destinare ver +destinasi destinare ver +destinasse destinare ver +destinassero destinare ver +destinata destinare ver +destinatari destinatario nom +destinataria destinatario nom +destinatarie destinatario nom +destinatario destinatario nom +destinate destinare ver +destinati destinare ver +destinato destinare ver +destinava destinare ver +destinavano destinare ver +destinazione destinazione nom +destinazioni destinazione nom +destinerà destinare ver +destini destino nom +destiniamo destinare ver +destinino destinare ver +destino destino nom +destinò destinare ver +destituendo destituire ver +destituendolo destituire ver +destituire destituire ver +destituirli destituire ver +destituirlo destituire ver +destituirne destituire ver +destituirono destituire ver +destituirsi destituire ver +destituirà destituire ver +destituisce destituire ver +destituisco destituire ver +destituiscono destituire ver +destituisse destituire ver +destituita destituire ver +destituite destituire ver +destituiti destituire ver +destituito destituire ver +destituiva destituire ver +destituzione destituzione nom +destituzioni destituzione nom +destituì destituire ver +desto desto adj +destra destra nom +destramente destramente adv +destre destra nom +destreggia destreggiare ver +destreggiandosi destreggiare ver +destreggiano destreggiare ver +destreggiare destreggiare ver +destreggiarmi destreggiare ver +destreggiarsi destreggiare ver +destreggiarti destreggiare ver +destreggiato destreggiare ver +destreggiava destreggiare ver +destreggiavano destreggiare ver +destreggiò destreggiare ver +destrezza destrezza nom +destri destro adj +destrieri destriero nom +destriero destriero nom +destrina destrina nom +destrine destrina nom +destro destro adj +destrogira destrogiro adj +destrogire destrogiro adj +destrogiri destrogiro adj +destrogiro destrogiro adj +destrorsa destrorso adj +destrorse destrorso adj +destrorsi destrorso adj +destrorso destrorso adj +destrosi destrosio nom +destrosio destrosio nom +destrutturazione destrutturazione nom +destò destare ver +desueta desueto adj +desuete desueto adj +desueti desueto adj +desueto desueto adj +desuetudine desuetudine nom +desuma desumere ver +desume desumere ver +desumendo desumere ver +desumendoli desumere ver +desumendolo desumere ver +desumere desumere ver +desumerebbe desumere ver +desumerla desumere ver +desumerlo desumere ver +desumerne desumere ver +desumersi desumere ver +desumeva desumere ver +desumevano desumere ver +desumi desumere ver +desumiamo desumere ver +desumibile desumibile adj +desumibili desumibile adj +desumo desumere ver +desumono desumere ver +desunse desumere ver +desunta desumere ver +desunte desumere ver +desunti desumere ver +desunto desumere ver +detassazione detassazione nom +detective detective nom +detector detector nom +detenendo detenere ver +detenendoli detenere ver +detenendolo detenere ver +detenendone detenere ver +detenente detenere ver +detenenti detenere ver +detenere detenere ver +detenerla detenere ver +detenerlo detenere ver +detenerne detenere ver +detenesse detenere ver +detenessero detenere ver +detenete detenere ver +deteneva detenere ver +detenevano detenere ver +detenga detenere ver +detengano detenere ver +detengo detenere ver +detengono detenere ver +deteniamo detenere ver +detenne detenere ver +detennero detenere ver +detentiva detentivo adj +detentive detentivo adj +detentivi detentivo adj +detentivo detentivo adj +detentore detentore nom +detentori detentore nom +detentrice detentore nom +detentrici detentore nom +detenuta detenere ver +detenute detenere ver +detenuti detenuto nom +detenuto detenere ver +detenzione detenzione nom +detenzioni detenzione nom +deterge detergere ver +detergendo detergere ver +detergente detergente nom +detergenti detergente nom +detergere detergere ver +detergersi detergere ver +detergeva detergere ver +detergevano detergere ver +deteriora deteriorare ver +deteriorabile deteriorabile adj +deteriorabili deteriorabile adj +deterioramenti deterioramento nom +deterioramento deterioramento nom +deteriorando deteriorare ver +deteriorandosi deteriorare ver +deteriorano deteriorare ver +deteriorante deteriorare ver +deterioranti deteriorare ver +deteriorare deteriorare ver +deteriorarla deteriorare ver +deteriorarle deteriorare ver +deteriorarono deteriorare ver +deteriorarsi deteriorare ver +deteriorasi deteriorare ver +deteriorasse deteriorare ver +deteriorata deteriorare ver +deteriorate deteriorare ver +deterioratesi deteriorare ver +deteriorati deteriorare ver +deteriorato deteriorare ver +deteriorava deteriorare ver +deterioravano deteriorare ver +deteriore deteriore adj +deteriorerebbero deteriorare ver +deteriorerà deteriorare ver +deteriori deteriore adj +deteriorino deteriorare ver +deteriorò deteriorare ver +determina determinare ver +determinabile determinabile adj +determinabili determinabile adj +determinaci determinare ver +determinale determinare ver +determinando determinare ver +determinandola determinare ver +determinandoli determinare ver +determinandolo determinare ver +determinandone determinare ver +determinandosi determinare ver +determinano determinare ver +determinante determinante adj +determinanti determinante adj +determinar determinare ver +determinare determinare ver +determinarla determinare ver +determinarle determinare ver +determinarli determinare ver +determinarlo determinare ver +determinarmi determinare ver +determinarne determinare ver +determinarono determinare ver +determinarsi determinare ver +determinasse determinare ver +determinassero determinare ver +determinata determinare ver +determinate determinato adj +determinatesi determinare ver +determinatezza determinatezza nom +determinati determinato adj +determinativa determinativo adj +determinative determinativo adj +determinativi determinativo adj +determinativo determinativo adj +determinato determinare ver +determinava determinare ver +determinavano determinare ver +determinazione determinazione nom +determinazioni determinazione nom +determinerai determinare ver +determineranno determinare ver +determinerebbe determinare ver +determinerebbero determinare ver +determineremo determinare ver +determinerà determinare ver +determini determinare ver +determiniamo determinare ver +determinino determinare ver +determinismi determinismo nom +determinismo determinismo nom +determinista determinista nom +deterministe determinista nom +deterministi determinista nom +determino determinare ver +determinò determinare ver +deterranno detenere ver +deterrebbe detenere ver +deterrente deterrente nom +deterrenti deterrente nom +deterrenza deterrenza nom +deterrà detenere ver +detersa detergere ver +deterse detergere ver +detersi detergere ver +detersivi detersivo nom +detersivo detersivo nom +deterso detergere ver +detesta detestare ver +detestabile detestabile adj +detestabili detestabile adj +detestando detestare ver +detestandosi detestare ver +detestano detestare ver +detestare detestare ver +detestarla detestare ver +detestarle detestare ver +detestarli detestare ver +detestarlo detestare ver +detestarono detestare ver +detestarsi detestare ver +detestasse detestare ver +detestassero detestare ver +detestata detestare ver +detestate detestare ver +detestati detestare ver +detestato detestare ver +detestava detestare ver +detestavano detestare ver +detestavo detestare ver +detestazione detestazione nom +detesterai detestare ver +detesti detestare ver +detestino detestare ver +detesto detestare ver +detestò detestare ver +detiene detenere ver +detieni detenere ver +detona detonare ver +detonaci detonare ver +detonando detonare ver +detonano detonare ver +detonante detonante adj +detonanti detonante adj +detonare detonare ver +detonarle detonare ver +detonarono detonare ver +detonata detonare ver +detonate detonare ver +detonati detonare ver +detonato detonare ver +detonatore detonatore nom +detonatori detonatore nom +detonava detonare ver +detonazione detonazione nom +detonazioni detonazione nom +detonerà detonare ver +detoni detonare ver +detonò detonare ver +detrae detrarre ver +detraendo detrarre ver +detraeva detrarre ver +detraggono detrarre ver +detrarre detrarre ver +detrarrà detrarre ver +detrasse detrarre ver +detratta detrarre ver +detratte detrarre ver +detratti detrarre ver +detratto detrarre ver +detrattore detrattore nom +detrattori detrattore nom +detrazione detrazione nom +detrazioni detrazione nom +detrimenti detrimento nom +detrimento detrimento nom +detriti detrito nom +detritica detritico adj +detritiche detritico adj +detritici detritico adj +detritico detritico adj +detrito detrito nom +detronizza detronizzare ver +detronizzando detronizzare ver +detronizzare detronizzare ver +detronizzarla detronizzare ver +detronizzarlo detronizzare ver +detronizzarono detronizzare ver +detronizzata detronizzare ver +detronizzate detronizzare ver +detronizzati detronizzare ver +detronizzato detronizzare ver +detronizzazione detronizzazione nom +detronizzazioni detronizzazione nom +detronizzò detronizzare ver +detta dire ver_sup +dettagli dettaglio nom +dettaglia dettagliare ver +dettagliando dettagliare ver +dettagliano dettagliare ver +dettagliante dettagliante nom +dettaglianti dettagliante nom +dettagliare dettagliare ver +dettagliarli dettagliare ver +dettagliarlo dettagliare ver +dettagliarono dettagliare ver +dettagliata dettagliare ver +dettagliatamente dettagliatamente adv +dettagliate dettagliato adj +dettagliati dettagliato adj +dettagliato dettagliare ver +dettagliava dettagliare ver +dettagliavano dettagliare ver +dettaglio dettaglio nom +dettagliò dettagliare ver +dettai dettare ver +dettale dettare ver +dettame dettame nom +dettami dettame nom +dettando dettare ver +dettandolo dettare ver +dettandone dettare ver +dettano dettare ver +dettante dettare ver +dettar dettare ver +dettare dettare ver +dettarle dettare ver +dettarne dettare ver +dettarono dettare ver +dettasse dettare ver +dettata dettare ver +dettate dettare ver +dettategli dettare ver +dettati dettare ver +dettato dettare ver +dettatura dettatura nom +dettature dettatura nom +dettava dettare ver +dettavano dettare ver +dette dire ver +detteranno dettare ver +detteremo dettare ver +detterà dettare ver +detti dire ver_sup +detto dire ver_sup +dettò dettare ver +detumescenza detumescenza nom +deturpa deturpare ver +deturpando deturpare ver +deturpandogli deturpare ver +deturpandolo deturpare ver +deturpandone deturpare ver +deturpano deturpare ver +deturpante deturpare ver +deturpanti deturpare ver +deturpare deturpare ver +deturparne deturpare ver +deturparono deturpare ver +deturpata deturpare ver +deturpate deturpare ver +deturpati deturpare ver +deturpato deturpare ver +deturpatore deturpatore nom +deturpava deturpare ver +deturpavano deturpare ver +deturpazione deturpazione nom +deturpazioni deturpazione nom +deturperà deturpare ver +deturpò deturpare ver +deuteragonista deuteragonista nom +deuteragonisti deuteragonista nom +deuteri deuterio nom +deuterio deuterio nom +deutone deutone nom +dev dev sw +devasta devastare ver +devastammo devastare ver +devastando devastare ver +devastandogli devastare ver +devastandola devastare ver +devastandole devastare ver +devastandoli devastare ver +devastandolo devastare ver +devastandone devastare ver +devastano devastare ver +devastante devastante adj +devastanti devastante adj +devastar devastare ver +devastare devastare ver +devastarla devastare ver +devastarle devastare ver +devastarli devastare ver +devastarlo devastare ver +devastarne devastare ver +devastarono devastare ver +devastasse devastare ver +devastassero devastare ver +devastata devastare ver +devastate devastare ver +devastati devastare ver +devastato devastare ver +devastatore devastatore adj +devastatori devastatore nom +devastatrice devastatore adj +devastatrici devastatore adj +devastava devastare ver +devastavano devastare ver +devastazioni devastazione nom +devasteranno devastare ver +devasterà devastare ver +devasti devastare ver +devastino devastare ver +devasto devastare ver +devastò devastare ver +deve dovere ver_sup +deverbale deverbale adj +deverbali deverbale adj +devi dovere ver_sup +devia deviare ver +deviamo deviare ver +deviando deviare ver +deviandola deviare ver +deviandole deviare ver +deviandoli deviare ver +deviandolo deviare ver +deviandone deviare ver +deviano deviare ver +deviante deviante adj +devianti deviante adj +devianza devianza nom +devianze devianza nom +deviare deviare ver +deviarla deviare ver +deviarle deviare ver +deviarli deviare ver +deviarlo deviare ver +deviarne deviare ver +deviarono deviare ver +deviasse deviare ver +deviassero deviare ver +deviata deviare ver +deviate deviare ver +deviati deviare ver +deviato deviare ver +deviatoi deviatoio nom +deviatoio deviatoio nom +deviatore deviatore nom +deviatori deviatore nom +deviava deviare ver +deviavano deviare ver +deviazione deviazione nom +deviazioni deviazione nom +deviazionismo deviazionismo nom +deviazionista deviazionista nom +deviazionisti deviazionista nom +devierebbe deviare ver +devierà deviare ver +devii deviare ver +deviino deviare ver +devio deviare ver +devitalizzante devitalizzare ver +devitalizzare devitalizzare ver +devitalizzate devitalizzare ver +devitalizzati devitalizzare ver +devitalizzato devitalizzare ver +deviò deviare ver +devo dovere ver_sup +devolse devolvere ver +devolsero devolvere ver +devoluzione devoluzione nom +devoluzioni devoluzione nom +devolva devolvere ver +devolve devolvere ver +devolvendo devolvere ver +devolvendone devolvere ver +devolver devolvere ver +devolvere devolvere ver +devolverle devolvere ver +devolverli devolvere ver +devolverlo devolvere ver +devolverne devolvere ver +devolversi devolvere ver +devolverà devolvere ver +devolveva devolvere ver +devolvono devolvere ver +devoniana devoniano adj +devoniane devoniano adj +devoniani devoniano adj +devoniano devoniano nom +devono dovere ver_sup +devota devoto adj +devote devoto adj +devoti devoto adj +devoto devoto adj +devozione devozione nom +devozioni devozione nom +di di pre +dia dare ver_sup +diabase diabase nom +diabasi diabase nom +diabete diabete nom +diabetica diabetico adj +diabetiche diabetico adj +diabetici diabetico adj +diabetico diabetico adj +diabolica diabolico adj +diaboliche diabolico adj +diabolici diabolico adj +diabolico diabolico adj +diacheni diachenio nom +diachenio diachenio nom +diaclasi diaclasi nom +diaconati diaconato nom +diaconato diaconato nom +diaconessa diaconessa nom +diaconesse diaconessa nom +diaconi diaconio|diacono nom +diaconia diaconia nom +diaconie diaconia nom +diacono diacono nom +diacritica diacritico adj +diacritiche diacritico adj +diacritici diacritico adj +diacritico diacritico adj +diacronia diacronia nom +diacronica diacronico adj +diacroniche diacronico adj +diacronici diacronico adj +diacronico diacronico adj +diacronie diacronia nom +diadema diadema nom +diademi diadema nom +diadochi diadoco nom +diadoco diadoco nom +diafani diafano nom +diafanità diafanità nom +diafano diafano nom +diafonia diafonia nom +diafonie diafonia nom +diaforesi diaforesi nom +diaforetica diaforetico adj +diaforetiche diaforetico adj +diaforetici diaforetico adj +diaforetico diaforetico nom +diaframma diaframma nom +diaframmando diaframmare ver +diaframmare diaframmare ver +diaframmate diaframmare ver +diaframmato diaframmare ver +diaframmi diaframma nom +diagenesi diagenesi nom +diagnosi diagnosi nom +diagnostica diagnostico adj +diagnosticando diagnosticare ver +diagnosticandola diagnosticare ver +diagnosticano diagnosticare ver +diagnosticare diagnosticare ver +diagnosticargli diagnosticare ver +diagnosticarla diagnosticare ver +diagnosticarlo diagnosticare ver +diagnosticarne diagnosticare ver +diagnosticarono diagnosticare ver +diagnosticata diagnosticare ver +diagnosticate diagnosticare ver +diagnosticati diagnosticare ver +diagnosticato diagnosticare ver +diagnosticava diagnosticare ver +diagnostiche diagnostico adj +diagnosticherà diagnosticare ver +diagnostici diagnostico adj +diagnostico diagnostico adj +diagnosticò diagnosticare ver +diagonale diagonale nom +diagonali diagonale adj +diagonalmente diagonalmente adv +diagramma diagramma nom +diagrammando diagrammare ver +diagrammar diagrammare ver +diagrammata diagrammare ver +diagrammi diagramma nom +dialefe dialefe nom +dialettale dialettale adj +dialettali dialettale adj +dialettalismi dialettalismo nom +dialettalismo dialettalismo nom +dialetti dialetto nom +dialettica dialettica nom +dialettiche dialettico adj +dialettici dialettico adj +dialettico dialettico adj +dialetto dialetto nom +dialettologa dialettologo nom +dialettologi dialettologo nom +dialettologia dialettologia nom +dialettologo dialettologo nom +dialipetala dialipetalo adj +dialipetali dialipetalo adj +dialipetalo dialipetalo adj +dialisepali dialisepalo adj +dialisepalo dialisepalo adj +dialisi dialisi nom +dialitica dialitico adj +dialitiche dialitico adj +dialitico dialitico adj +dializzante dializzare ver +dializzati dializzare ver +dializzato dializzare ver +dializzatore dializzatore adj +dializzatori dializzatore adj +diallage diallage nom +diallagio diallagio nom +dialoga dialogare ver +dialogando dialogare ver +dialogandoci dialogare ver +dialogano dialogare ver +dialogante dialogare ver +dialoganti dialogare ver +dialogarci dialogare ver +dialogare dialogare ver +dialogasse dialogare ver +dialogata dialogare ver +dialogate dialogare ver +dialogati dialogare ver +dialogato dialogare ver +dialogava dialogare ver +dialogavano dialogare ver +dialogherà dialogare ver +dialoghi dialogo nom +dialoghiamo dialogare ver +dialoghino dialogare ver +dialogica dialogico adj +dialogiche dialogico adj +dialogici dialogico adj +dialogico dialogico adj +dialogismi dialogismo nom +dialogismo dialogismo nom +dialogo dialogo nom +dialogò dialogare ver +diamagnetica diamagnetico adj +diamagnetiche diamagnetico adj +diamagnetici diamagnetico adj +diamagnetico diamagnetico adj +diamagnetismo diamagnetismo nom +diamantata diamantato adj +diamantate diamantato adj +diamantati diamantato adj +diamantato diamantato adj +diamante diamante nom +diamanti diamante nom +diamantifera diamantifero adj +diamantifere diamantifero adj +diamantiferi diamantifero adj +diamantifero diamantifero adj +diamantina diamantino adj +diamantine diamantino adj +diamantini diamantino adj +diamantino diamantino adj +diametrale diametrale adj +diametrali diametrale adj +diametralmente diametralmente adv +diametri diametro nom +diametro diametro nom +diamine diamine int +diammina diammina nom +diammine diammina nom +diamo dare ver_sup +diamoci dare ver +diamogli dare ver +diamogliela dare ver +diamoglieli dare ver +diamoglielo dare ver +diamogliene dare ver +diamola dare ver +diamole dare ver +diamoli dare ver +diamolo dare ver +diamone dare ver +diana diana nom +diane diana nom +diano dare ver_sup +dianzi dianzi adv +diapason diapason nom +diapositiva diapositiva nom +diapositive diapositiva nom +diarchia diarchia nom +diarchie diarchia nom +diari diario nom +diaria diaria nom +diarie diaria nom +diario diario nom +diarrea diarrea nom +diarree diarrea nom +diarroica diarroico adj +diarroiche diarroico adj +diarroici diarroico adj +diarroico diarroico adj +diartrosi diartrosi nom +diaspora diaspora nom +diaspore diaspora nom +diaspri diaspro nom +diaspro diaspro nom +diastasi diastasi nom +diastole diastole nom +diate dare ver +diatermia diatermia nom +diatesi diatesi nom +diatomee diatomee nom +diatonia diatonia nom +diatonica diatonico adj +diatoniche diatonico adj +diatonici diatonico adj +diatonico diatonico adj +diatriba diatriba nom +diatribe diatriba nom +diavoleria diavoleria nom +diavolerie diavoleria nom +diavoletti diavoletto nom +diavoletto diavoletto nom +diavoli diavolo nom +diavolo diavolo nom +dibatta dibattere ver +dibattano dibattere ver +dibatte dibattere ver +dibattendo dibattere ver +dibattendosi dibattere ver +dibatteranno dibattere ver +dibattere dibattere ver +dibatterlo dibattere ver +dibatterono dibattere ver +dibattersi dibattere ver +dibatterà dibattere ver +dibattesse dibattere ver +dibatteva dibattere ver +dibattevano dibattere ver +dibatti dibattere ver +dibattiamo dibattere ver +dibattici dibattere ver +dibattimentale dibattimentale adj +dibattimentali dibattimentale adj +dibattimenti dibattimento nom +dibattimento dibattimento nom +dibattiti dibattito nom +dibattito dibattito nom +dibatto dibattere ver +dibattono dibattere ver +dibattuta dibattere ver +dibattute dibattere ver +dibattuti dibattere ver +dibattuto dibattere ver +diboscamenti diboscamento nom +diboscamento diboscamento nom +diboscare diboscare ver +diboscate diboscare ver +dica dire ver +dicami dicare ver +dicano dire ver +dicante dicare ver +dicare dicare ver +dicarlo dicare ver +dicasi dicasio nom +dicasio dicasio nom +dicasteri dicastero nom +dicastero dicastero nom +dicata dicare ver +dicato dicare ver +dicavi dicare ver +diccelo dire ver +dicchi dicco nom +dicci dire ver +dicco dicco nom +dice dire ver_sup +dicembre dicembre nom +dicembrina dicembrino adj +dicemmo dire ver +dicendo dire ver_sup +dicendoci dire ver +dicendogli dire ver +dicendoglielo dire ver +dicendola dire ver +dicendole dire ver +dicendoli dire ver +dicendolo dire ver +dicendomi dire ver +dicendone dire ver +dicendosi dire ver +dicendoti dire ver +dicendovi dire ver +dicente dire ver +dicenti dire ver +diceria diceria nom +dicerie diceria nom +dicesse dire ver +dicessi dire ver +dicessimo dire ver +diceste dire ver +dicesti dire ver +diceva dire ver_sup +dicevamo dire ver +dicevano dire ver +dicevate dire ver +dicevi dire ver +dicevo dire ver_sup +dichi dicare ver +dichiara dichiarare ver +dichiarai dichiarare ver +dichiarando dichiarare ver +dichiarandogli dichiarare ver +dichiarandola dichiarare ver +dichiarandole dichiarare ver +dichiarandoli dichiarare ver +dichiarandolo dichiarare ver +dichiarandomi dichiarare ver +dichiarandone dichiarare ver +dichiarandosene dichiarare ver +dichiarandosi dichiarare ver +dichiarano dichiarare ver +dichiarante dichiarante nom +dichiaranti dichiarante adj +dichiarar dichiarare ver +dichiarare dichiarare ver +dichiarargli dichiarare ver +dichiararla dichiarare ver +dichiararle dichiarare ver +dichiararli dichiarare ver +dichiararlo dichiarare ver +dichiararmi dichiarare ver +dichiararne dichiarare ver +dichiararono dichiarare ver +dichiararsene dichiarare ver +dichiararsi dichiarare ver +dichiararvi dichiarare ver +dichiarasi dichiarare ver +dichiarasse dichiarare ver +dichiarassero dichiarare ver +dichiarata dichiarare ver +dichiaratamente dichiaratamente adv +dichiarate dichiarare ver +dichiaratesi dichiarare ver +dichiarati dichiarare ver +dichiarativa dichiarativo adj +dichiarative dichiarativo adj +dichiarativi dichiarativo adj +dichiarativo dichiarativo adj +dichiarato dichiarare ver +dichiaratoria dichiaratorio adj +dichiarava dichiarare ver +dichiaravano dichiarare ver +dichiaravo dichiarare ver +dichiarazione dichiarazione nom +dichiarazioni dichiarazione nom +dichiareranno dichiarare ver +dichiarerebbe dichiarare ver +dichiarerebbero dichiarare ver +dichiarerei dichiarare ver +dichiarerete dichiarare ver +dichiarerà dichiarare ver +dichiarerò dichiarare ver +dichiari dichiarare ver +dichiariamo dichiarare ver +dichiarino dichiarare ver +dichiaro dichiarare ver +dichiarò dichiarare ver +dici dire ver +diciamo dire ver_sup +diciamocela dire ver +diciamocelo dire ver +diciamoci dire ver +diciamogli dire ver +diciamoglielo dire ver +diciamola dire ver +diciamole dire ver +diciamolo dire ver_sup +diciannove diciannove adj +diciannovesimo diciannovesimo adj +diciassette diciassette adj +diciassettenne diciassettenne adj +diciassettenni diciassettenne adj +diciassettesima diciassettesimo adj +diciassettesimi diciassettesimo adj +diciassettesimo diciassettesimo adj +diciate dire ver +dicibile dicibile adj +dicibili dicibile adj +diciottenne diciottenne adj +diciottenni diciottenne adj +diciottesima diciottesimo adj +diciottesimi diciottesimo adj +diciottesimo diciottesimo adj +diciotto diciotto adj +dicitore dicitore nom +dicitori dicitore nom +dicitrice dicitore nom +dicitura dicitura nom +diciture dicitura nom +dico dicare|dire ver_sup +dicono dire ver_sup +dicotiledone dicotiledone adj +dicotiledoni dicotiledone adj +dicotoma dicotomo adj +dicotome dicotomo adj +dicotomia dicotomia nom +dicotomica dicotomico adj +dicotomiche dicotomico adj +dicotomici dicotomico adj +dicotomico dicotomico adj +dicotomie dicotomia nom +dicotomo dicotomo adj +dicroismo dicroismo nom +didascalia didascalia nom +didascalica didascalico adj +didascaliche didascalico adj +didascalici didascalico adj +didascalico didascalico adj +didascalie didascalia nom +didatta didatta nom +didatti didatta nom +didattica didattico adj +didattiche didattico adj +didattici didattico adj +didattico didattico adj +dieci dieci adj_sup +diecimila diecimila adj_sup +diecina diecina nom +diecine diecina nom +diede dare ver +diedero dare ver_sup +diedi dare ver +diedri diedro nom +diedro diedro nom +dielettrica dielettrico adj +dielettriche dielettrico adj +dielettrici dielettrico adj +dielettrico dielettrico adj +diencefalo diencefalo nom +dieresi dieresi nom +diesel diesel adj +diesis diesis nom +dieta dieta nom +diete dieta nom +dietetica dietetico adj +dietetiche dietetico adj +dietetici dietetico adj +dietetico dietetico adj +dietista dietista nom +dietisti dietista nom +dietologi dietologo nom +dietologo dietologo nom +dietoterapia dietoterapia nom +dietro dietro pre +difatti difatti adv_sup +difenda difendere ver +difendano difendere ver +difende difendere ver +difendendo difendere ver +difendendoci difendere ver +difendendola difendere ver +difendendole difendere ver +difendendoli difendere ver +difendendolo difendere ver +difendendomi difendere ver +difendendone difendere ver +difendendosi difendere ver +difendente difendere ver +difendenti difendere ver +difender difendere ver +difenderanno difendere ver +difenderci difendere ver +difendere difendere ver +difenderebbe difendere ver +difenderebbero difendere ver +difenderei difendere ver +difenderemo difendere ver +difenderla difendere ver +difenderle difendere ver +difenderli difendere ver +difenderlo difendere ver +difendermi difendere ver +difenderne difendere ver +difendersene difendere ver +difendersi difendere ver +difenderti difendere ver +difendervi difendere ver +difenderà difendere ver +difenderò difendere ver +difendesse difendere ver +difendessero difendere ver +difendeste difendere ver +difendete difendere ver +difendetela difendere ver +difendetemi difendere ver +difendetevi difendere ver +difendeva difendere ver +difendevano difendere ver +difendevi difendere ver +difendevo difendere ver +difendi difendere ver +difendiamo difendere ver +difendiamoci difendere ver +difendibile difendibile adj +difendibili difendibile adj +difendici difendere ver +difendili difendere ver +difendilo difendere ver +difendimi difendere ver +difenditi difendere ver +difendo difendere ver +difendono difendere ver +difensiva difensivo adj +difensive difensivo adj +difensivi difensivo adj +difensivo difensivo adj +difensore difensore adj +difensori difensore nom +difesa difesa nom +difese difesa nom +difesero difendere ver +difesi difendere ver +difeso difendere ver +difetta difettare ver +difettando difettare ver +difettano difettare ver +difettante difettare ver +difettanti difettare ver +difettare difettare ver +difettasse difettare ver +difettata difettare ver +difettati difettare ver +difettato difettare ver +difettava difettare ver +difettavano difettare ver +difetti difetto nom +difettiamo difettare ver +difettino difettare ver +difettiva difettivo adj +difettive difettivo adj +difettivi difettivo adj +difettivo difettivo adj +difetto difetto nom +difettosa difettoso adj +difettose difettoso adj +difettosi difettoso adj +difettosità difettosità nom +difettoso difettoso adj +difettò difettare ver +diffama diffamare ver +diffamando diffamare ver +diffamandolo diffamare ver +diffamano diffamare ver +diffamante diffamare ver +diffamanti diffamare ver +diffamare diffamare ver +diffamarla diffamare ver +diffamarlo diffamare ver +diffamarmi diffamare ver +diffamarono diffamare ver +diffamata diffamare ver +diffamate diffamare ver +diffamati diffamare ver +diffamato diffamare ver +diffamatore diffamatore nom +diffamatori diffamatore|diffamatorio adj +diffamatoria diffamatorio adj +diffamatorio diffamatorio adj +diffamava diffamare ver +diffamavano diffamare ver +diffamazione diffamazione nom +diffamazioni diffamazione nom +diffami diffamare ver +diffamiamo diffamare ver +diffamo diffamare ver +diffamò diffamare ver +differendo differire ver +differendola differire ver +differendone differire ver +differendosi differire ver +differente differente adj +differentemente differentemente adv +differenti differente adj +differenza differenza nom +differenze differenza nom +differenzi differenziare ver +differenzia differenziare ver +differenziabile differenziabile adj +differenziabili differenziabile adj +differenziale differenziale adj +differenziali differenziale adj +differenziamento differenziamento nom +differenziamo differenziare ver +differenziando differenziare ver +differenziandoci differenziare ver +differenziandola differenziare ver +differenziandole differenziare ver +differenziandoli differenziare ver +differenziandolo differenziare ver +differenziandone differenziare ver +differenziandosene differenziare ver +differenziandosi differenziare ver +differenziano differenziare ver +differenziante differenziare ver +differenziarci differenziare ver +differenziare differenziare ver +differenziarla differenziare ver +differenziarle differenziare ver +differenziarli differenziare ver +differenziarlo differenziare ver +differenziarmi differenziare ver +differenziarne differenziare ver +differenziarono differenziare ver +differenziarsi differenziare ver +differenziasse differenziare ver +differenziassero differenziare ver +differenziata differenziare ver +differenziate differenziare ver +differenziatesi differenziare ver +differenziati differenziare ver +differenziato differenziare ver +differenziava differenziare ver +differenziavano differenziare ver +differenziazione differenziazione nom +differenziazioni differenziazione nom +differenzieranno differenziare ver +differenzierebbe differenziare ver +differenzierebbero differenziare ver +differenzieremo differenziare ver +differenzierà differenziare ver +differenzino differenziare ver +differenzio differenziare ver +differenziò differenziare ver +differiamo differire ver +differibile differibile adj +differimento differimento nom +differir differire ver +differiranno differire ver +differire differire ver +differirebbe differire ver +differirebbero differire ver +differirne differire ver +differirono differire ver +differirà differire ver +differisca differire ver +differiscano differire ver +differisce differire ver +differisco differire ver +differiscono differire ver +differisse differire ver +differissero differire ver +differita differire ver +differite differire ver +differiti differire ver +differito differire ver +differiva differire ver +differivano differire ver +differì differire ver +difficile difficile adj +difficili difficile adj +difficilissime difficilissimo adj +difficilissimo difficilissimo adj +difficilmente difficilmente adv +difficoltosa difficoltoso adj +difficoltose difficoltoso adj +difficoltosi difficoltoso adj +difficoltoso difficoltoso adj +difficoltà difficoltà nom +diffida diffida nom +diffidalo diffidare ver +diffidando diffidare ver +diffidandoli diffidare ver +diffidandolo diffidare ver +diffidano diffidare ver +diffidarci diffidare ver +diffidare diffidare ver +diffidarlo diffidare ver +diffidarne diffidare ver +diffidarono diffidare ver +diffidasse diffidare ver +diffidassero diffidare ver +diffidata diffidare ver +diffidate diffidare ver +diffidati diffidare ver +diffidato diffidare ver +diffidava diffidare ver +diffidavano diffidare ver +diffide diffida nom +diffidente diffidente adj +diffidenti diffidente adj +diffidenza diffidenza nom +diffidenze diffidenza nom +diffiderei diffidare ver +diffiderà diffidare ver +diffidi diffidare ver +diffidiamo diffidare ver +diffido diffidare ver +diffidò diffidare ver +diffonda diffondere ver +diffondano diffondere ver +diffonde diffondere ver +diffondendo diffondere ver +diffondendola diffondere ver +diffondendole diffondere ver +diffondendolo diffondere ver +diffondendone diffondere ver +diffondendosi diffondere ver +diffondendovi diffondere ver +diffondente diffondere ver +diffonder diffondere ver +diffonderanno diffondere ver +diffondere diffondere ver +diffonderebbe diffondere ver +diffonderla diffondere ver +diffonderle diffondere ver +diffonderli diffondere ver +diffonderlo diffondere ver +diffonderne diffondere ver +diffondersi diffondere ver +diffondervi diffondere ver +diffonderà diffondere ver +diffonderò diffondere ver +diffondesse diffondere ver +diffondessero diffondere ver +diffondete diffondere ver +diffondetela diffondere ver +diffondeva diffondere ver +diffondevano diffondere ver +diffondi diffondere ver +diffondiamo diffondere ver +diffondo diffondere ver +diffondono diffondere ver +difforme difforme adj +difformi difforme adj +difformità difformità nom +diffrangente diffrangersi ver +diffrangere diffrangersi ver +diffrangono diffrangersi ver +diffrazione diffrazione nom +diffrazioni diffrazione nom +diffusa diffondere ver +diffusamente diffusamente adv +diffusasi diffondere ver +diffuse diffuso adj +diffusero diffondere ver +diffusesi diffondere ver +diffusi diffondere ver +diffusibile diffusibile adj +diffusibili diffusibile adj +diffusibilità diffusibilità nom +diffusione diffusione nom +diffusioni diffusione nom +diffusiva diffusivo adj +diffusive diffusivo adj +diffusivi diffusivo adj +diffusivo diffusivo adj +diffuso diffondere ver +diffusore diffusore nom +diffusori diffusore nom +difterica difterico adj +difteriche difterico adj +difterico difterico adj +difterite difterite nom +diga diga nom +digerendo digerire ver +digerendone digerire ver +digerente digerente adj +digerenti digerente adj +digeribile digeribile adj +digeribili digeribile adj +digerire digerire ver +digerirla digerire ver +digerirle digerire ver +digerirli digerire ver +digerirlo digerire ver +digerirne digerire ver +digerirono digerire ver +digerirà digerire ver +digerisce digerire ver +digerisco digerire ver +digeriscono digerire ver +digerita digerire ver +digerite digerire ver +digeriti digerire ver +digerito digerire ver +digeriva digerire ver +digerivano digerire ver +digerì digerire ver +digesti digesto nom +digestione digestione nom +digestioni digestione nom +digestiva digestivo adj +digestive digestivo adj +digestivi digestivo adj +digestivo digestivo adj +digesto digesto nom +dighe diga nom +digita digitare ver +digitaci digitare ver +digitala digitare ver +digitale digitale adj +digitali digitale adj +digitalina digitalina nom +digitalizzati digitalizzare ver +digitalizzazione digitalizzazione nom +digitalo digitare ver +digitami digitare ver +digitando digitare ver +digitandoli digitare ver +digitandolo digitare ver +digitandone digitare ver +digitano digitare ver +digitar digitare ver +digitare digitare ver +digitarle digitare ver +digitarli digitare ver +digitarlo digitare ver +digitarne digitare ver +digitasse digitare ver +digitata digitato adj +digitate digitato adj +digitati digitato adj +digitato digitare ver +digitava digitare ver +digitavano digitare ver +digitazione digitazione nom +digitazioni digitazione nom +digiterebbe digitare ver +digiterei digitare ver +digiterà digitare ver +digiti digitare ver +digitiamo digitare ver +digitigrada digitigrado adj +digitigrade digitigrado adj +digitigradi digitigrado adj +digitigrado digitigrado adj +digito digitare ver +digiuna digiuno adj +digiunale digiunare ver +digiunali digiunare ver +digiunando digiunare ver +digiunano digiunare ver +digiunante digiunare ver +digiunanti digiunare ver +digiunare digiunare ver +digiunarono digiunare ver +digiunassero digiunare ver +digiunato digiunare ver +digiunatore digiunatore nom +digiunava digiunare ver +digiunavano digiunare ver +digiune digiuno adj +digiunerà digiunare ver +digiuni digiuno nom +digiunino digiunare ver +digiuno digiuno nom +digiunò digiunare ver +digli dire ver +diglielo dire ver +dignitari dignitario nom +dignitario dignitario nom +dignitosa dignitoso adj +dignitose dignitoso adj +dignitosi dignitoso adj +dignitoso dignitoso adj +dignità dignità nom +digrada digradare ver +digradando digradare ver +digradano digradare ver +digradante digradare ver +digradanti digradare ver +digradare digradare ver +digradati digradare ver +digradava digradare ver +digradavano digradare ver +digramma digramma nom +digrammi digramma nom +digressione digressione nom +digressioni digressione nom +digressiva digressivo adj +digressive digressivo adj +digressivo digressivo adj +digrigna digrignare ver +digrignando digrignare ver +digrignano digrignare ver +digrignante digrignare ver +digrignanti digrignare ver +digrignare digrignare ver +digrignata digrignare ver +digrignati digrignare ver +digrignava digrignare ver +diktat diktat nom +dilacerata dilacerare ver +dilacerato dilacerare ver +dilacerazione dilacerazione nom +dilaga dilagare ver +dilagando dilagare ver +dilagandosi dilagare ver +dilagano dilagare ver +dilagante dilagante adj +dilaganti dilagante adj +dilagare dilagare ver +dilagarono dilagare ver +dilagarsi dilagare ver +dilagasse dilagare ver +dilagassero dilagare ver +dilagata dilagare ver +dilagate dilagare ver +dilagati dilagare ver +dilagato dilagare ver +dilagava dilagare ver +dilagavano dilagare ver +dilagherà dilagare ver +dilaghi dilagare ver +dilagò dilagare ver +dilania dilaniare ver +dilaniando dilaniare ver +dilaniano dilaniare ver +dilaniante dilaniare ver +dilanianti dilaniare ver +dilaniare dilaniare ver +dilaniarla dilaniare ver +dilaniarle dilaniare ver +dilaniarlo dilaniare ver +dilaniarono dilaniare ver +dilaniasse dilaniare ver +dilaniata dilaniare ver +dilaniate dilaniare ver +dilaniati dilaniare ver +dilaniato dilaniare ver +dilaniava dilaniare ver +dilaniavano dilaniare ver +dilanio dilaniare ver +dilaniò dilaniare ver +dilapida dilapidare ver +dilapidando dilapidare ver +dilapidano dilapidare ver +dilapidare dilapidare ver +dilapidarono dilapidare ver +dilapidasse dilapidare ver +dilapidata dilapidare ver +dilapidate dilapidare ver +dilapidati dilapidare ver +dilapidato dilapidare ver +dilapidatore dilapidatore nom +dilapidatori dilapidatore nom +dilapidatrice dilapidatore nom +dilapidazione dilapidazione nom +dilapidò dilapidare ver +dilata dilatare ver +dilatabile dilatabile adj +dilatabili dilatabile adj +dilatabilità dilatabilità nom +dilataci dilatare ver +dilatamento dilatamento nom +dilatando dilatare ver +dilatandola dilatare ver +dilatandone dilatare ver +dilatandosi dilatare ver +dilatano dilatare ver +dilatante dilatare ver +dilatanti dilatare ver +dilatare dilatare ver +dilatarne dilatare ver +dilatarono dilatare ver +dilatarsi dilatare ver +dilatasse dilatare ver +dilatata dilatare ver +dilatate dilatare ver +dilatati dilatare ver +dilatato dilatare ver +dilatatori dilatatorio adj +dilatatorie dilatatorio adj +dilatava dilatare ver +dilatavano dilatare ver +dilatazione dilatazione nom +dilatazioni dilatazione nom +dilateranno dilatare ver +dilaterebbe dilatare ver +dilaterebbero dilatare ver +dilaterà dilatare ver +dilati dilatare ver +dilatino dilatare ver +dilatometro dilatometro nom +dilatori dilatorio adj +dilatoria dilatorio adj +dilatorie dilatorio adj +dilatorio dilatorio adj +dilatò dilatare ver +dilavamenti dilavamento nom +dilavamento dilavamento nom +dilavante dilavare ver +dilavanti dilavare ver +dilavare dilavare ver +dilavata dilavare ver +dilavate dilavare ver +dilavati dilavare ver +dilavato dilavare ver +dilaziona dilazionare ver +dilazionando dilazionare ver +dilazionare dilazionare ver +dilazionata dilazionare ver +dilazionate dilazionare ver +dilazionati dilazionare ver +dilazionato dilazionare ver +dilazione dilazione nom +dilazioni dilazione nom +dilazionò dilazionare ver +dileggi dileggio nom +dileggia dileggiare ver +dileggiando dileggiare ver +dileggiano dileggiare ver +dileggiare dileggiare ver +dileggiarlo dileggiare ver +dileggiata dileggiare ver +dileggiati dileggiare ver +dileggiato dileggiare ver +dileggiava dileggiare ver +dileggiavano dileggiare ver +dileggino dileggiare ver +dileggio dileggio nom +dileggiò dileggiare ver +dilegua dileguare ver +dileguandosi dileguare ver +dileguano dileguare ver +dileguar dileguare ver +dileguare dileguare ver +dileguarono dileguare ver +dileguarsi dileguare ver +dileguata dileguare ver +dileguati dileguare ver +dileguato dileguare ver +dileguavano dileguare ver +dileguerà dileguare ver +dileguino dileguare ver +dileguo dileguare ver +dileguò dileguare ver +dilemma dilemma nom +dilemmi dilemma nom +dilesse diligere ver +diletta dilettare ver +dilettando dilettare ver +dilettandosi dilettare ver +dilettane dilettare ver +dilettano dilettare ver +dilettante dilettante adj +dilettantesca dilettantesco adj +dilettantesche dilettantesco adj +dilettanteschi dilettantesco adj +dilettantesco dilettantesco adj +dilettanti dilettante adj +dilettantismo dilettantismo nom +dilettantistica dilettantistico adj +dilettantistiche dilettantistico adj +dilettantistici dilettantistico adj +dilettantistico dilettantistico adj +dilettare dilettare ver +dilettarono dilettare ver +dilettarsi dilettare ver +dilettarti dilettare ver +dilettarvi dilettare ver +dilettasse dilettare ver +dilettassero dilettare ver +dilettata dilettare ver +dilettate dilettare ver +dilettato dilettare ver +dilettava dilettare ver +dilettavano dilettare ver +dilettavo dilettare ver +dilette diletto nom +diletterà dilettare ver +dilettevole dilettevole adj +dilettevoli dilettevole adj +diletti diletto nom +dilettiamo dilettare ver +dilettino dilettare ver +diletto diletto nom +dilettosa dilettoso adj +dilettoso dilettoso adj +dilettò dilettare ver +dilezione dilezione nom +diligendo diligere ver +diligente diligente adj +diligenti diligente adj +diligenza diligenza nom +diligenze diligenza nom +diligere diligere ver +dilla dire ver +dille dire ver +dilli dire ver +dillo dire ver +diluendo diluire ver +diluendolo diluire ver +diluendone diluire ver +diluendosi diluire ver +diluente diluire ver +diluenti diluire ver +diluire diluire ver +diluirebbe diluire ver +diluirla diluire ver +diluirli diluire ver +diluirlo diluire ver +diluirne diluire ver +diluirsi diluire ver +diluirà diluire ver +diluisca diluire ver +diluisce diluire ver +diluisco diluire ver +diluiscono diluire ver +diluisse diluire ver +diluita diluire ver +diluite diluire ver +diluiti diluire ver +diluito diluire ver +diluiva diluire ver +diluizione diluizione nom +diluizioni diluizione nom +dilunga dilungare ver +dilungando dilungare ver +dilungandosi dilungare ver +dilungano dilungare ver +dilungarci dilungare ver +dilungare dilungare ver +dilungarmi dilungare ver +dilungarono dilungare ver +dilungarsi dilungare ver +dilungarti dilungare ver +dilungasse dilungare ver +dilungata dilungare ver +dilungate dilungare ver +dilungati dilungare ver +dilungato dilungare ver +dilungava dilungare ver +dilungavano dilungare ver +dilungherebbe dilungare ver +dilungherei dilungare ver +dilungherò dilungare ver +dilunghi dilungare ver +dilunghiamo dilungare ver +dilungo dilungare ver +dilungò dilungare ver +diluvi diluvio nom +diluvia diluviare ver +diluviale diluviale adj +diluviali diluviale adj +diluviano diluviare ver +diluviare diluviare ver +diluvio diluvio nom +diluì diluire ver +dimagramento dimagramento nom +dimagrante dimagrante adj +dimagranti dimagrante adj +dimagrare dimagrare ver +dimagrendo dimagrire ver +dimagrimenti dimagrimento nom +dimagrimento dimagrimento nom +dimagrire dimagrire ver +dimagrisce dimagrire ver +dimagrita dimagrire ver +dimagrite dimagrire ver +dimagrito dimagrire ver +dimagriva dimagrire ver +dimagrì dimagrire ver +dimane dimane adv +dimena dimenare ver +dimenandosi dimenare ver +dimenano dimenare ver +dimenare dimenare ver +dimenarsi dimenare ver +dimenava dimenare ver +dimenavano dimenare ver +dimensiona dimensionare ver +dimensionale dimensionale adj +dimensionali dimensionale adj +dimensionando dimensionare ver +dimensionare dimensionare ver +dimensionarla dimensionare ver +dimensionarsi dimensionare ver +dimensionata dimensionare ver +dimensionate dimensionare ver +dimensionati dimensionare ver +dimensionato dimensionare ver +dimensione dimensione nom +dimensioni dimensione nom +dimentica dimenticare ver +dimenticabile dimenticabile adj +dimenticabili dimenticabile adj +dimenticai dimenticare ver +dimenticala dimenticare ver +dimenticalo dimenticare ver +dimenticami dimenticare ver +dimenticammo dimenticare ver +dimenticando dimenticare ver +dimenticandoci dimenticare ver +dimenticandola dimenticare ver +dimenticandomi dimenticare ver +dimenticandone dimenticare ver +dimenticandosene dimenticare ver +dimenticandosi dimenticare ver +dimenticandoti dimenticare ver +dimenticano dimenticare ver +dimenticanza dimenticanza nom +dimenticanze dimenticanza nom +dimenticar dimenticare ver +dimenticarcelo dimenticare ver +dimenticarci dimenticare ver +dimenticare dimenticare ver +dimenticarla dimenticare ver +dimenticarle dimenticare ver +dimenticarli dimenticare ver +dimenticarlo dimenticare ver +dimenticarmene dimenticare ver +dimenticarmi dimenticare ver +dimenticarne dimenticare ver +dimenticarono dimenticare ver +dimenticarsela dimenticare ver +dimenticarselo dimenticare ver +dimenticarsene dimenticare ver +dimenticarsi dimenticare ver +dimenticarti dimenticare ver +dimenticarvi dimenticare ver +dimenticasse dimenticare ver +dimenticassero dimenticare ver +dimenticassi dimenticare ver +dimenticassimo dimenticare ver +dimenticata dimenticare ver +dimenticate dimenticare ver +dimenticatelo dimenticare ver +dimenticatemi dimenticare ver +dimenticatene dimenticare ver +dimenticatevi dimenticare ver +dimenticati dimenticare ver +dimenticato dimenticare ver +dimenticatoio dimenticatoio nom +dimenticava dimenticare ver +dimenticavano dimenticare ver +dimenticavo dimenticare ver +dimentiche dimentico adj +dimenticherai dimenticare ver +dimenticheranno dimenticare ver +dimenticherebbe dimenticare ver +dimenticherebbero dimenticare ver +dimenticherei dimenticare ver +dimenticheremo dimenticare ver +dimenticherete dimenticare ver +dimenticherà dimenticare ver +dimenticherò dimenticare ver +dimentichi dimenticare ver +dimentichiamo dimenticare ver +dimentichiamocelo dimenticare ver +dimentichiamoci dimenticare ver +dimentichiamole dimenticare ver +dimentichiamoli dimenticare ver +dimentichiamolo dimenticare ver +dimentichino dimenticare ver +dimentico dimentico adj +dimenticò dimenticare ver +dimessa dimettere ver +dimesse dimesso adj +dimessi dimettere ver +dimesso dimettere ver +dimestichezza dimestichezza nom +dimetri dimetro nom +dimetro dimetro nom +dimetta dimettere ver +dimettano dimettere ver +dimette dimettere ver +dimettendo dimettere ver +dimettendomi dimettere ver +dimettendosi dimettere ver +dimetteranno dimettere ver +dimettere dimettere ver +dimetterebbe dimettere ver +dimetterei dimettere ver +dimetterli dimettere ver +dimetterlo dimettere ver +dimettermi dimettere ver +dimettersi dimettere ver +dimetterti dimettere ver +dimetterà dimettere ver +dimetterò dimettere ver +dimettesse dimettere ver +dimettessero dimettere ver +dimettete dimettere ver +dimettetevi dimettere ver +dimetteva dimettere ver +dimettevano dimettere ver +dimetti dimettere ver +dimettiti dimettere ver +dimetto dimettere ver +dimettono dimettere ver +dimezza dimezzare ver +dimezzamenti dimezzamento nom +dimezzamento dimezzamento nom +dimezzando dimezzare ver +dimezzandola dimezzare ver +dimezzandone dimezzare ver +dimezzano dimezzare ver +dimezzare dimezzare ver +dimezzarne dimezzare ver +dimezzarono dimezzare ver +dimezzarsi dimezzare ver +dimezzata dimezzare ver +dimezzate dimezzare ver +dimezzati dimezzare ver +dimezzato dimezzare ver +dimezzava dimezzare ver +dimezzavano dimezzare ver +dimezzeranno dimezzare ver +dimezzerebbe dimezzare ver +dimezzerei dimezzare ver +dimezzerà dimezzare ver +dimezzi dimezzare ver +dimezziamo dimezzare ver +dimezzo dimezzare ver +dimezzò dimezzare ver +diminuendo diminuire ver +diminuendola diminuire ver +diminuendoli diminuire ver +diminuendolo diminuire ver +diminuendone diminuire ver +diminuente diminuire ver +diminuiamo diminuire ver +diminuir diminuire ver +diminuiranno diminuire ver +diminuire diminuire ver +diminuirebbe diminuire ver +diminuirebbero diminuire ver +diminuirei diminuire ver +diminuirgli diminuire ver +diminuirla diminuire ver +diminuirle diminuire ver +diminuirli diminuire ver +diminuirlo diminuire ver +diminuirne diminuire ver +diminuirono diminuire ver +diminuirà diminuire ver +diminuisca diminuire ver +diminuiscano diminuire ver +diminuisce diminuire ver +diminuisci diminuire ver +diminuisco diminuire ver +diminuiscono diminuire ver +diminuisse diminuire ver +diminuissero diminuire ver +diminuita diminuire ver +diminuite diminuire ver +diminuiti diminuire ver +diminuito diminuire ver +diminuiva diminuire ver +diminuivano diminuire ver +diminutiva diminutivo adj +diminutive diminutivo adj +diminutivi diminutivo adj +diminutivo diminutivo adj +diminuzione diminuzione nom +diminuzioni diminuzione nom +diminuì diminuire ver +dimise dimettere ver +dimisero dimettere ver +dimisi dimettere ver +dimissionare dimissionare ver +dimissionari dimissionario adj +dimissionaria dimissionario adj +dimissionario dimissionario adj +dimissionarlo dimissionare ver +dimissionati dimissionare ver +dimissionato dimissionare ver +dimissione dimissione nom +dimissioni dimissione nom +dimissionò dimissionare ver +dimmela dire ver +dimmeli dire ver +dimmelo dire ver +dimmi dire ver +dimora dimora nom +dimorando dimorare ver +dimorandovi dimorare ver +dimorano dimorare ver +dimorante dimorare ver +dimoranti dimorare ver +dimorare dimorare ver +dimorarono dimorare ver +dimorarvi dimorare ver +dimorasse dimorare ver +dimorassero dimorare ver +dimorata dimorare ver +dimorate dimorare ver +dimorati dimorare ver +dimorato dimorare ver +dimorava dimorare ver +dimoravano dimorare ver +dimore dimora nom +dimoreranno dimorare ver +dimorerebbe dimorare ver +dimoreremo dimorare ver +dimorerà dimorare ver +dimorerò dimorare ver +dimorfa dimorfo adj +dimorfe dimorfo adj +dimorfi dimorfo adj +dimorfismi dimorfismo nom +dimorfismo dimorfismo nom +dimorfo dimorfo adj +dimori dimorare ver +dimorino dimorare ver +dimoro dimorare ver +dimorò dimorare ver +dimostra dimostrare ver +dimostrabile dimostrabile adj +dimostrabili dimostrabile adj +dimostracelo dimostrare ver +dimostraci dimostrare ver +dimostragli dimostrare ver +dimostrale dimostrare ver +dimostralo dimostrare ver +dimostramelo dimostrare ver +dimostrami dimostrare ver +dimostrando dimostrare ver +dimostrandogli dimostrare ver +dimostrandola dimostrare ver +dimostrandole dimostrare ver +dimostrandoli dimostrare ver +dimostrandolo dimostrare ver +dimostrandomi dimostrare ver +dimostrandone dimostrare ver +dimostrandosi dimostrare ver +dimostrandoti dimostrare ver +dimostrano dimostrare ver +dimostrante dimostrante nom +dimostranti dimostrante nom +dimostrar dimostrare ver +dimostrarci dimostrare ver +dimostrare dimostrare ver +dimostrargli dimostrare ver +dimostrarglielo dimostrare ver +dimostrarla dimostrare ver +dimostrarle dimostrare ver +dimostrarli dimostrare ver +dimostrarlo dimostrare ver +dimostrarmi dimostrare ver +dimostrarne dimostrare ver +dimostrarono dimostrare ver +dimostrarsene dimostrare ver +dimostrarsi dimostrare ver +dimostrartelo dimostrare ver +dimostrarti dimostrare ver +dimostrarvelo dimostrare ver +dimostrarvi dimostrare ver +dimostrasse dimostrare ver +dimostrassero dimostrare ver +dimostrassi dimostrare ver +dimostrata dimostrare ver +dimostrate dimostrare ver +dimostrategli dimostrare ver +dimostratele dimostrare ver +dimostratelo dimostrare ver +dimostratemi dimostrare ver +dimostratesi dimostrare ver +dimostratevi dimostrare ver +dimostrati dimostrare ver +dimostrativa dimostrativo adj +dimostrative dimostrativo adj +dimostrativi dimostrativo adj +dimostrativo dimostrativo adj +dimostrato dimostrare ver +dimostratore dimostratore nom +dimostratori dimostratore nom +dimostratrice dimostratore adj +dimostrava dimostrare ver +dimostravano dimostrare ver +dimostrazione dimostrazione nom +dimostrazioni dimostrazione nom +dimostrerai dimostrare ver +dimostreranno dimostrare ver +dimostrerebbe dimostrare ver +dimostrerebbero dimostrare ver +dimostreremo dimostrare ver +dimostreresti dimostrare ver +dimostrerete dimostrare ver +dimostrerà dimostrare ver +dimostrerò dimostrare ver +dimostri dimostrare ver +dimostriamo dimostrare ver +dimostriamola dimostrare ver +dimostriamolo dimostrare ver +dimostriate dimostrare ver +dimostrino dimostrare ver +dimostro dimostrare ver +dimostrò dimostrare ver +dina dina nom +dinamica dinamico adj +dinamicamente dinamicamente adv +dinamiche dinamica nom +dinamici dinamico adj +dinamicità dinamicità nom +dinamico dinamico adj +dinamismi dinamismo nom +dinamismo dinamismo nom +dinamitarda dinamitardo adj +dinamitarde dinamitardo adj +dinamitardi dinamitardo adj +dinamitardo dinamitardo adj +dinamite dinamite nom +dinamiti dinamite nom +dinamizzare dinamizzare ver +dinamizzazione dinamizzazione nom +dinamo dinamo nom +dinamometri dinamometro nom +dinamometrico dinamometrico adj +dinamometro dinamometro nom +dinanzi dinanzi adj_sup +dinari dinaro nom +dinaro dinaro nom +dinasta dinasta nom +dinasti dinasta nom +dinastia dinastia nom +dinastica dinastico adj +dinastiche dinastico adj +dinastici dinastico adj +dinastico dinastico adj +dinastie dinastia nom +dindon dindon int +dine dina nom +dinghy dinghy nom +dinieghi diniego nom +diniego diniego nom +dinnanzi dinnanzi adv +dinne dire ver +dinoccolata dinoccolato adj +dinoccolato dinoccolato adj +dinosauri dinosauro nom +dinosauro dinosauro nom +dintorni dintorno nom_sup +dintorno dintorno adv +dio dio nom +diocesana diocesano adj +diocesane diocesano adj +diocesani diocesano adj +diocesano diocesano adj +diocesi diocesi nom +diodi diodo nom +diodo diodo nom +dioica dioico adj +dioiche dioico adj +dioici dioico adj +dioico dioico adj +diomedea diomedea nom +diomedee diomedea nom +dionea dionea nom +dionisiaca dionisiaco adj +dionisiache dionisiaco adj +dionisiaci dionisiaco adj +dionisiaco dionisiaco adj +diopside diopside nom +diopsidi diopside nom +diorama diorama nom +diorami diorama nom +diorite diorite nom +dioriti diorite nom +diossina diossina nom +diossine diossina nom +diottra diottra nom +diottria diottria nom +diottrica diottrico adj +diottriche diottrico adj +diottrici diottrico adj +diottrico diottrico adj +diottrie diottria nom +diottro diottro nom +dipana dipanare ver +dipanamento dipanamento nom +dipanando dipanare ver +dipanandosi dipanare ver +dipanano dipanare ver +dipanare dipanare ver +dipanarla dipanare ver +dipanarli dipanare ver +dipanarono dipanare ver +dipanarsi dipanare ver +dipanasse dipanare ver +dipanata dipanare ver +dipanate dipanare ver +dipanato dipanare ver +dipanatura dipanatura nom +dipanava dipanare ver +dipanavano dipanare ver +dipanerà dipanare ver +dipani dipanare ver +dipanò dipanare ver +diparta dipartire ver +diparte dipartire ver +dipartendosi dipartire ver +dipartente dipartire ver +dipartenti dipartire ver +dipartimentale dipartimentale adj +dipartimentali dipartimentale adj +dipartimenti dipartimento nom +dipartimento dipartimento nom +dipartire dipartire ver +dipartirono dipartire ver +dipartirsi dipartire ver +dipartirà dipartire ver +dipartita dipartita nom +dipartite dipartita nom +dipartiti dipartire ver +dipartito dipartire ver +dipartiva dipartire ver +dipartivano dipartire ver +diparto dipartire ver +dipartono dipartire ver +dipartì dipartire ver +dipenda dipendere ver +dipendano dipendere ver +dipende dipendere ver +dipendendo dipendere ver +dipendendone dipendere ver +dipendente dipendente adj +dipendenti dipendente nom +dipendenza dipendenza nom +dipendenze dipendenza nom +dipenderanno dipendere ver +dipendere dipendere ver +dipenderebbe dipendere ver +dipenderebbero dipendere ver +dipendervi dipendere ver +dipenderà dipendere ver +dipendesse dipendere ver +dipendessero dipendere ver +dipendete dipendere ver +dipendeva dipendere ver +dipendevano dipendere ver +dipendi dipendere ver +dipendiamo dipendere ver +dipendo dipendere ver +dipendono dipendere ver +dipesa dipendere ver +dipese dipendere ver +dipesero dipendere ver +dipesi dipendere ver +dipeso dipendere ver +dipinga dipingere ver +dipingano dipingere ver +dipinge dipingere ver +dipingendo dipingere ver +dipingendogli dipingere ver +dipingendola dipingere ver +dipingendole dipingere ver +dipingendoli dipingere ver +dipingendolo dipingere ver +dipingendone dipingere ver +dipingendosi dipingere ver +dipingendovi dipingere ver +dipinger dipingere ver +dipingeranno dipingere ver +dipingerci dipingere ver +dipingere dipingere ver +dipingerebbe dipingere ver +dipingerei dipingere ver +dipingergli dipingere ver +dipingerla dipingere ver +dipingerle dipingere ver +dipingerli dipingere ver +dipingerlo dipingere ver +dipingermi dipingere ver +dipingerne dipingere ver +dipingerseli dipingere ver +dipingersi dipingere ver +dipingerti dipingere ver +dipingervi dipingere ver +dipingerà dipingere ver +dipingerò dipingere ver +dipingesse dipingere ver +dipingessero dipingere ver +dipingessi dipingere ver +dipingeva dipingere ver +dipingevano dipingere ver +dipingevo dipingere ver +dipingi dipingere ver +dipingiamo dipingere ver +dipingilo dipingere ver +dipingo dipingere ver +dipingono dipingere ver +dipinse dipingere ver +dipinsero dipingere ver +dipinsi dipingere ver +dipinta dipingere ver +dipinte dipingere ver +dipinti dipingere ver +dipinto dipinto nom +dipintore dipintore nom +dipintori dipintore nom +dipintura dipintura nom +dipinture dipintura nom +diplegia diplegia nom +diplococchi diplococco nom +diplococco diplococco nom +diploma diploma nom +diplomai diplomare ver +diplomando diplomare ver +diplomandosi diplomare ver +diplomano diplomare ver +diplomare diplomare ver +diplomarono diplomare ver +diplomarsi diplomare ver +diplomasi diplomare ver +diplomata diplomare ver +diplomate diplomare ver +diplomatesi diplomare ver +diplomati diplomato nom +diplomatica diplomatico adj +diplomaticamente diplomaticamente adv +diplomatiche diplomatico adj +diplomatici diplomatico adj +diplomatico diplomatico adj +diplomatista diplomatista nom +diplomatisti diplomatista nom +diplomato diplomare ver +diplomava diplomare ver +diplomavano diplomare ver +diplomazia diplomazia nom +diplomazie diplomazia nom +diplomeranno diplomare ver +diplomerà diplomare ver +diplomi diploma nom +diplomino diplomare ver +diplomo diplomare ver +diplomò diplomare ver +diplopia diplopia nom +diplopie diplopia nom +dipoi dipoi adv +dipolare dipolare adj +dipolari dipolare adj +dipoli dipolo nom +dipolo dipolo nom +diporti diporto nom +diporto diporto nom +dipresso dipresso adv +dipsomane dipsomane nom +dipsomania dipsomania nom +diptera diptero adj +dipteri diptero adj +diptero diptero adj +dir dire ver +dira diro adj_sup +dirada diradare ver +diradamenti diradamento nom +diradamento diradamento nom +diradando diradare ver +diradandosi diradare ver +diradano diradare ver +diradanti diradare ver +diradare diradare ver +diradarne diradare ver +diradarono diradare ver +diradarsi diradare ver +diradassero diradare ver +diradata diradare ver +diradate diradare ver +diradatesi diradare ver +diradati diradare ver +diradato diradare ver +diradava diradare ver +diradavano diradare ver +diraderanno diradare ver +diraderà diradare ver +diradicale diradicare ver +diradicato diradicare ver +diradino diradare ver +dirado diradare ver +diradò diradare ver +dirai dire ver +dirama diramare ver +diramando diramare ver +diramandolo diramare ver +diramandosi diramare ver +diramano diramare ver +diramante diramare ver +diramanti diramare ver +diramare diramare ver +diramarono diramare ver +diramarsi diramare ver +diramasse diramare ver +diramata diramare ver +diramate diramare ver +diramati diramare ver +diramato diramare ver +diramava diramare ver +diramavano diramare ver +diramazione diramazione nom +diramazioni diramazione nom +diramerebbe diramare ver +diramerà diramare ver +diramo diramare ver +diramò diramare ver +diranno dire ver_sup +dircelo dire ver +dirci dire ver_sup +dire dire ver_sup +direbbe dire ver_sup +direbbero dire ver +direi dire ver_sup +diremmo dire ver +diremo dire ver +diresse dirigere ver +diressero dirigere ver +diressi dirigere ver +direste dire ver +diresti dire ver +direte dire ver +diretta diretto adj +direttamente direttamente adv +dirette diretto adj +diretti dirigere ver +direttissima direttissimo adj +direttissime direttissimo adj +direttissimi direttissimo adj +direttissimo direttissimo adj +direttiva direttiva nom +direttive direttiva nom +direttivi direttivo adj +direttivo direttivo adj +diretto diretto adj +direttore direttore nom +direttori direttore|direttorio nom +direttoriale direttoriale adj +direttoriali direttoriale adj +direttorio direttorio nom +direttrice direttore|direttrice nom +direttrici direttore|direttrice nom +direzionale direzionale adj +direzionali direzionale adj +direzione direzione nom +direzioni direzione nom +dirgli dire ver +dirgliela dire ver +dirglielo dire ver +dirgliene dire ver +diri diro adj +diriga dirigere ver +dirigano dirigere ver +dirige dirigere ver +dirigemmo dirigere ver +dirigendo dirigere ver +dirigendoci dirigere ver +dirigendola dirigere ver +dirigendole dirigere ver +dirigendoli dirigere ver +dirigendolo dirigere ver +dirigendone dirigere ver +dirigendosi dirigere ver +dirigendovi dirigere ver +dirigente dirigente nom +dirigenti dirigente nom +dirigenza dirigenza nom +dirigenze dirigenza nom +dirigenziale dirigenziale adj +dirigenziali dirigenziale adj +diriger dirigere ver +dirigeranno dirigere ver +dirigerci dirigere ver +dirigere dirigere ver +dirigerebbe dirigere ver +dirigeremo dirigere ver +dirigerla dirigere ver +dirigerle dirigere ver +dirigerli dirigere ver +dirigerlo dirigere ver +dirigermi dirigere ver +dirigerne dirigere ver +dirigersi dirigere ver +dirigervi dirigere ver +dirigerà dirigere ver +dirigerò dirigere ver +dirigesse dirigere ver +dirigessero dirigere ver +dirigete dirigere ver +dirigeva dirigere ver +dirigevano dirigere ver +dirigevo dirigere ver +dirigi dirigere ver +dirigiamo dirigere ver +dirigiate dirigere ver +dirigibile dirigibile nom +dirigibili dirigibile nom +dirigibilista dirigibilista nom +dirigibilisti dirigibilista nom +dirigile dirigere ver +dirigismo dirigismo nom +dirigista dirigista adj +dirigiste dirigista adj +dirigisti dirigista adj +dirigistica dirigistico adj +dirigistico dirigistico adj +dirigo dirigere ver +dirigono dirigere ver +dirima dirimere ver +dirime dirimere ver +dirimendo dirimere ver +dirimente dirimente adj +dirimenti dirimente adj +dirimere dirimere ver +dirimerle dirimere ver +dirimerli dirimere ver +dirimerà dirimere ver +dirimesse dirimere ver +dirimeva dirimere ver +dirimevano dirimere ver +dirimi dirimere ver +dirimono dirimere ver +dirimpettai dirimpettaio nom +dirimpettaia dirimpettaio nom +dirimpettaie dirimpettaio nom +dirimpettaio dirimpettaio nom +dirimpetto dirimpetto adj +diritta diritto adj +diritte diritto adj +diritti diritto nom +diritto diritto nom +dirittura dirittura nom +diritture dirittura nom +dirla dire ver +dirle dire ver +dirli dire ver +dirlo dire ver_sup +dirmeli dire ver +dirmelo dire ver +dirmi dire ver +dirne dire ver +diro diro adj +diroccamento diroccamento nom +diroccandone diroccare ver +diroccare diroccare ver +diroccarono diroccare ver +diroccata diroccare ver +diroccate diroccato adj +diroccati diroccato adj +diroccato diroccare ver +dirocco diroccare ver +diroccò diroccare ver +dirompe dirompere ver +dirompente dirompente adj +dirompenti dirompente adj +dirompere dirompere ver +dirotta dirotto adj +dirottamente dirottamente adv +dirottamenti dirottamento nom +dirottamento dirottamento nom +dirottando dirottare ver +dirottandola dirottare ver +dirottandoli dirottare ver +dirottandolo dirottare ver +dirottano dirottare ver +dirottare dirottare ver +dirottarla dirottare ver +dirottarle dirottare ver +dirottarli dirottare ver +dirottarlo dirottare ver +dirottarono dirottare ver +dirottasse dirottare ver +dirottata dirottare ver +dirottate dirottare ver +dirottati dirottare ver +dirottato dirottare ver +dirottatore dirottatore nom +dirottatori dirottatore nom +dirottatrice dirottatore nom +dirottava dirottare ver +dirotte dirompere ver +dirotteranno dirottare ver +dirotterà dirottare ver +dirotto dirotto adj +dirottò dirottare ver +dirsele dire ver +dirselo dire ver +dirsi dire ver +dirtela dire ver +dirtelo dire ver +dirtene dire ver +dirti dire ver_sup +dirupata dirupare ver +dirupate dirupato adj +dirupati dirupato adj +dirupato dirupare ver +dirupi dirupo nom +dirupo dirupo nom +diruta diruto adj +dirute diruto adj +diruti diruto adj +diruto diruto adj +dirvelo dire ver +dirvene dire ver +dirvi dire ver_sup +dirà dire ver_sup +dirò dire ver +disabile disabile adj +disabili disabile adj +disabilità disabilità nom +disabitata disabitato adj +disabitate disabitato adj +disabitati disabitato adj +disabitato disabitato adj +disabituate disabituare ver +disabituati disabituare ver +disabituato disabituare ver +disaccaride disaccaride nom +disaccaridi disaccaride nom +disaccordi disaccordo nom +disaccordo disaccordo nom +disadattamento disadattamento nom +disadattata disadattato adj +disadattati disadattato adj +disadattato disadattato adj +disadorna disadorno adj +disadorne disadorno adj +disadorni disadorno adj +disadorno disadorno adj +disaffeziona disaffezionare ver +disaffezionare disaffezionare ver +disaffezionata disaffezionare ver +disaffezionate disaffezionare ver +disaffezionati disaffezionare ver +disaffezionato disaffezionare ver +disaffezione disaffezione nom +disagevole disagevole adj +disagevoli disagevole adj +disaggio disaggio nom +disaggregate disaggregare ver +disaggregati disaggregare ver +disagi disagio nom +disagiata disagiare ver +disagiate disagiato adj +disagiati disagiato adj +disagiato disagiato adj +disagio disagio nom +disalberata disalberare ver +disalberate disalberare ver +disalberato disalberare ver +disalberò disalberare ver +disamara disamara nom +disamare disamara nom +disambientata disambientato adj +disamina disamina nom +disaminato disaminare ver +disamine disamina nom +disamore disamore nom +disapprova disapprovare ver +disapprovando disapprovare ver +disapprovandolo disapprovare ver +disapprovandone disapprovare ver +disapprovano disapprovare ver +disapprovanti disapprovare ver +disapprovare disapprovare ver +disapprovarlo disapprovare ver +disapprovarono disapprovare ver +disapprovasse disapprovare ver +disapprovata disapprovare ver +disapprovate disapprovare ver +disapprovati disapprovare ver +disapprovato disapprovare ver +disapprovava disapprovare ver +disapprovavano disapprovare ver +disapprovazione disapprovazione nom +disapprovazioni disapprovazione nom +disapproverebbe disapprovare ver +disapproverà disapprovare ver +disapprovi disapprovare ver +disapprovo disapprovare ver +disapprovò disapprovare ver +disappunto disappunto nom +disarciona disarcionare ver +disarcionando disarcionare ver +disarcionandoli disarcionare ver +disarcionandolo disarcionare ver +disarcionano disarcionare ver +disarcionare disarcionare ver +disarcionarli disarcionare ver +disarcionarlo disarcionare ver +disarcionata disarcionare ver +disarcionate disarcionare ver +disarcionati disarcionare ver +disarcionato disarcionare ver +disarcionavano disarcionare ver +disarcionò disarcionare ver +disarma disarmare ver +disarmalo disarmare ver +disarmando disarmare ver +disarmandoli disarmare ver +disarmandolo disarmare ver +disarmano disarmare ver +disarmante disarmare ver +disarmanti disarmare ver +disarmare disarmare ver +disarmarla disarmare ver +disarmarle disarmare ver +disarmarli disarmare ver +disarmarlo disarmare ver +disarmarono disarmare ver +disarmarsi disarmare ver +disarmasse disarmare ver +disarmata disarmare ver +disarmate disarmare ver +disarmatelo disarmare ver +disarmati disarmare ver +disarmato disarmare ver +disarmeranno disarmare ver +disarmi disarmare ver +disarmo disarmo nom +disarmonia disarmonia nom +disarmonica disarmonico adj +disarmoniche disarmonico adj +disarmonici disarmonico adj +disarmonico disarmonico adj +disarmonie disarmonia nom +disarmò disarmare ver +disarticola disarticolare ver +disarticolando disarticolare ver +disarticolano disarticolare ver +disarticolante disarticolare ver +disarticolare disarticolare ver +disarticolarne disarticolare ver +disarticolarono disarticolare ver +disarticolata disarticolare ver +disarticolate disarticolare ver +disarticolati disarticolare ver +disarticolato disarticolare ver +disarticolava disarticolare ver +disarticolazione disarticolazione nom +disarticolò disarticolare ver +disassata disassare ver +disassuefazione disassuefazione nom +disastrata disastrare ver +disastrate disastrato adj +disastrati disastrato adj +disastrato disastrato adj +disastri disastro nom +disastro disastro nom +disastrosa disastroso adj +disastrose disastroso adj +disastrosi disastroso adj +disastroso disastroso adj +disattende disattendere ver +disattendendo disattendere ver +disattendere disattendere ver +disattenderla disattendere ver +disattenderle disattendere ver +disattendesse disattendere ver +disattendono disattendere ver +disattenta disattento adj +disattente disattento adj +disattenti disattento adj +disattento disattento adj +disattenzione disattenzione nom +disattenzioni disattenzione nom +disattesa disattendere ver +disattese disattendere ver +disattesero disattendere ver +disattesi disattendere ver +disatteso disattendere ver +disattiva disattivare ver +disattivando disattivare ver +disattivandola disattivare ver +disattivandoli disattivare ver +disattivandolo disattivare ver +disattivandone disattivare ver +disattivandosi disattivare ver +disattivano disattivare ver +disattivante disattivare ver +disattivanti disattivare ver +disattivare disattivare ver +disattivarla disattivare ver +disattivarle disattivare ver +disattivarli disattivare ver +disattivarlo disattivare ver +disattivarne disattivare ver +disattivarono disattivare ver +disattivarsi disattivare ver +disattivasse disattivare ver +disattivata disattivare ver +disattivate disattivare ver +disattivati disattivare ver +disattivato disattivare ver +disattivava disattivare ver +disattivavano disattivare ver +disattivazione disattivazione nom +disattiveranno disattivare ver +disattiverebbe disattivare ver +disattiverà disattivare ver +disattiverò disattivare ver +disattivi disattivare ver +disattivo disattivare ver +disattivò disattivare ver +disavanzi disavanzo nom +disavanzo disavanzo nom +disavventura disavventura nom +disavventure disavventura nom +disboscamenti disboscamento nom +disboscamento disboscamento nom +disboscando disboscare ver +disboscare disboscare ver +disboscarla disboscare ver +disboscarono disboscare ver +disboscata disboscare ver +disboscate disboscare ver +disboscati disboscare ver +disboscato disboscare ver +disboscavano disboscare ver +disboscò disboscare ver +disbrigare disbrigare ver +disbrigo disbrigo nom +discacciati discacciare ver +discacciato discacciare ver +discanti discanto nom +discanto discanto nom +discapito discapito nom +discarica discarica nom +discariche discarica nom +discarico discarico nom +discenda discendere ver +discendano discendere ver +discende discendere ver +discendendo discendere ver +discendente discendente nom +discendenti discendente nom +discendenza discendenza nom +discendenze discendenza nom +discenderanno discendere ver +discendere discendere ver +discenderebbe discendere ver +discenderebbero discendere ver +discenderemo discendere ver +discenderia discenderia nom +discenderie discenderia nom +discenderne discendere ver +discendervi discendere ver +discenderà discendere ver +discendesse discendere ver +discendessero discendere ver +discendeva discendere ver +discendevano discendere ver +discendi discendere ver +discendiamo discendere ver +discendo discendere ver +discendono discendere ver +discensionale discensionale adj +discensionali discensionale adj +discensivo discensivo adj +discensore discensore nom +discensori discensore nom +discente discente nom +discenti discente nom +discepola discepolo nom +discepole discepolo nom +discepoli discepolo nom +discepolo discepolo nom +discerna discernere ver +discerne discernere ver +discernendo discernere ver +discerner discernere ver +discernere discernere ver +discernerne discernere ver +discernibile discernibile adj +discernibili discernibile adj +discernimento discernimento nom +discerno discernere ver +discernono discernere ver +discesa discesa nom +discese discesa nom +discesero discendere ver +discesi discendere ver +discesista discesista nom +discesisti discesista nom +disceso discendere ver +discetta discettare ver +discettando discettare ver +discettano discettare ver +discettare discettare ver +discettato discettare ver +discettava discettare ver +discettazione discettazione nom +discettazioni discettazione nom +discetti discettare ver +dischi disco nom +dischiude dischiudere ver +dischiudendo dischiudere ver +dischiudendosi dischiudere ver +dischiudere dischiudere ver +dischiudersi dischiudere ver +dischiudono dischiudere ver +dischiusa dischiudere ver +dischiuse dischiudere ver +dischiusero dischiudere ver +dischiusi dischiudere ver +dischiuso dischiudere ver +discinesia discinesia nom +discinesie discinesia nom +discinetiche discinetico adj +discinetici discinetico adj +discinetico discinetico nom +discinta discingere ver +discinte discingere ver +discinti discinto adj +discinto discingere ver +discioglie disciogliere ver +disciogliendo disciogliere ver +disciogliendosi disciogliere ver +disciogliere disciogliere ver +disciogliersi disciogliere ver +disciolgono disciogliere ver +disciolse disciogliere ver +disciolsero disciogliere ver +disciolta disciogliere ver +disciolte disciogliere ver +disciolti disciogliere ver +disciolto disciogliere ver +disciplina disciplina nom +disciplinale disciplinale adj +disciplinando disciplinare ver +disciplinandolo disciplinare ver +disciplinandone disciplinare ver +disciplinano disciplinare ver +disciplinante disciplinare ver +disciplinanti disciplinare ver +disciplinar disciplinare ver +disciplinare disciplinare adj +disciplinari disciplinare adj +disciplinarli disciplinare ver +disciplinarlo disciplinare ver +disciplinarne disciplinare ver +disciplinarono disciplinare ver +disciplinarsi disciplinare ver +disciplinasse disciplinare ver +disciplinassero disciplinare ver +disciplinata disciplinare ver +disciplinate disciplinare ver +disciplinati disciplinare ver +disciplinato disciplinare ver +disciplinatrice disciplinatrice nom +disciplinava disciplinare ver +disciplinavano disciplinare ver +discipline disciplina nom +disciplinerà disciplinare ver +disciplini disciplinare ver +disciplinino disciplinare ver +disciplino disciplinare ver +disciplinò disciplinare ver +disco disco nom +discobola discobolo nom +discobole discobolo nom +discoboli discobolo nom +discobolo discobolo nom +discofili discofilo nom +discografia discografia nom +discografica discografico adj +discografiche discografico adj +discografici discografico adj +discografico discografico adj +discografie discografia nom +discoidale discoidale adj +discoidali discoidale adj +discoide discoide adj +discoidi discoide adj +discola discolo adj +discoli discolo adj +discolo discolo adj +discolori discolorare ver +discolpa discolpa nom +discolpando discolpare ver +discolpare discolpare ver +discolparla discolpare ver +discolparlo discolpare ver +discolparmi discolpare ver +discolparono discolpare ver +discolparsi discolpare ver +discolparti discolpare ver +discolpata discolpare ver +discolpati discolpare ver +discolpato discolpare ver +discolpe discolpa nom +discolpò discolpare ver +disconnessa disconnettere ver +disconnesse disconnettere ver +disconnessi disconnettere ver +disconnesso disconnettere ver +disconnetta disconnettere ver +disconnette disconnettere ver +disconnettendo disconnettere ver +disconnettere disconnettere ver +disconnettermi disconnettere ver +disconnettersi disconnettere ver +disconnetterti disconnettere ver +disconnettesse disconnettere ver +disconnetteva disconnettere ver +disconnetti disconnettere ver +disconnetto disconnettere ver +disconnettono disconnettere ver +disconobbe disconoscere ver +disconobbero disconoscere ver +disconosca disconoscere ver +disconosce disconoscere ver +disconoscendo disconoscere ver +disconoscendone disconoscere ver +disconoscendosi disconoscere ver +disconoscere disconoscere ver +disconoscerla disconoscere ver +disconoscerlo disconoscere ver +disconoscerne disconoscere ver +disconoscerà disconoscere ver +disconoscesse disconoscere ver +disconosceva disconoscere ver +disconoscevano disconoscere ver +disconosci disconoscere ver +disconoscimento disconoscimento nom +disconosciuta disconoscere ver +disconosciute disconoscere ver +disconosciuti disconoscere ver +disconosciuto disconoscere ver +disconosco disconoscere ver +disconoscono disconoscere ver +discontinua discontinuo adj +discontinue discontinuo adj +discontinui discontinuo adj +discontinuità discontinuità nom +discontinuo discontinuo adj +disconvenire disconvenire ver +discoperta discoprire ver +discoperte discoprire ver +discoperto discoprire ver +discopre discoprire ver +discopriamo discoprire ver +discoprire discoprire ver +discorda discordare ver +discordando discordare ver +discordano discordare ver +discordante discordante adj +discordanti discordante adj +discordanza discordanza nom +discordanze discordanza nom +discordare discordare ver +discordasse discordare ver +discordata discordare ver +discordate discordare ver +discordati discordare ver +discordato discordare ver +discordava discordare ver +discordavano discordare ver +discorde discorde adj +discordi discorde adj +discordia discordia nom +discordie discordia nom +discordino discordare ver +discordo discordare ver +discorre discorrere ver +discorrendo discorrere ver +discorrere discorrere ver +discorrerne discorrere ver +discorrerò discorrere ver +discorresse discorrere ver +discorreva discorrere ver +discorrevano discorrere ver +discorrevo discorrere ver +discorriamo discorrere ver +discorrono discorrere ver +discorse discorrere ver +discorsi discorso nom +discorsiva discorsivo adj +discorsive discorsivo adj +discorsivi discorsivo adj +discorsività discorsività nom +discorsivo discorsivo adj +discorso discorso nom +discosta discostare ver +discostando discostare ver +discostandosene discostare ver +discostandosi discostare ver +discostano discostare ver +discostarci discostare ver +discostare discostare ver +discostarmi discostare ver +discostarono discostare ver +discostarsene discostare ver +discostarsi discostare ver +discostasse discostare ver +discostata discostare ver +discostate discostare ver +discostati discostare ver +discostato discostare ver +discostava discostare ver +discostavano discostare ver +discoste discosto adj +discosteranno discostare ver +discosterebbe discostare ver +discosterebbero discostare ver +discosterà discostare ver +discosti discostare ver +discostino discostare ver +discosto discosto adv +discostò discostare ver +discoteca discoteca nom +discotecari discotecario nom +discoteche discoteca nom +discrasia discrasia nom +discrasie discrasia nom +discredita discreditare ver +discreditando discreditare ver +discreditano discreditare ver +discreditare discreditare ver +discreditarlo discreditare ver +discreditata discreditare ver +discreditate discreditare ver +discreditati discreditare ver +discreditato discreditare ver +discredito discredito nom +discreditò discreditare ver +discrepante discrepare ver +discrepanti discrepare ver +discrepanza discrepanza nom +discrepanze discrepanza nom +discreta discreto adj +discretamente discretamente adv +discrete discreto adj +discretezza discretezza nom +discreti discreto adj +discretiva discretivo adj +discretivo discretivo adj +discreto discreto adj +discrezionale discrezionale adj +discrezionali discrezionale adj +discrezionalità discrezionalità nom +discrezione discrezione nom +discrezioni discrezione nom +discrimina discriminare ver +discriminaci discriminare ver +discriminando discriminare ver +discriminandolo discriminare ver +discriminano discriminare ver +discriminante discriminante nom +discriminanti discriminante adj +discriminare discriminare ver +discriminarla discriminare ver +discriminarle discriminare ver +discriminarli discriminare ver +discriminarlo discriminare ver +discriminarne discriminare ver +discriminasse discriminare ver +discriminata discriminare ver +discriminate discriminare ver +discriminati discriminare ver +discriminato discriminare ver +discriminatori discriminatorio adj +discriminatoria discriminatorio adj +discriminatorie discriminatorio adj +discriminatorio discriminatorio adj +discriminava discriminare ver +discriminavano discriminare ver +discriminazione discriminazione nom +discriminazioni discriminazione nom +discrimine discrimine nom +discriminerei discriminare ver +discrimini discriminare ver +discriminiamo discriminare ver +discriminò discriminare ver +discussa discutere ver +discusse discutere ver +discussero discutere ver +discussi discutere ver +discussione discussione nom +discussioni discussione nom +discusso discutere ver +discuta discutere ver +discutano discutere ver +discute discutere ver +discutemmo discutere ver +discutendo discutere ver +discutendoci discutere ver +discutendola discutere ver +discutendole discutere ver +discutendoli discutere ver +discutendone discutere ver +discutendosi discutere ver +discutenti discutere ver +discuter discutere ver +discuteranno discutere ver +discuterci discutere ver +discutere discutere ver +discuterebbe discutere ver +discuterei discutere ver +discuteremmo discutere ver +discuteremo discutere ver +discuterete discutere ver +discuterla discutere ver +discuterle discutere ver +discuterli discutere ver +discuterlo discutere ver +discuterne discutere ver +discutersi discutere ver +discutervi discutere ver +discuterà discutere ver +discuterò discutere ver +discutesse discutere ver +discutessero discutere ver +discutessi discutere ver +discutessimo discutere ver +discuteste discutere ver +discutete discutere ver +discutetene discutere ver +discuteva discutere ver +discutevamo discutere ver +discutevano discutere ver +discutevate discutere ver +discutevo discutere ver +discuti discutere ver +discutiamo discutere ver +discutiamone discutere ver +discutibile discutibile adj +discutibili discutibile adj +discutibilità discutibilità nom +discutile discutere ver +discutimi discutere ver +discutine discutere ver +discuto discutere ver +discutono discutere ver +disdegna disdegnare ver +disdegnando disdegnare ver +disdegnandone disdegnare ver +disdegnano disdegnare ver +disdegnare disdegnare ver +disdegnarono disdegnare ver +disdegnasse disdegnare ver +disdegnassero disdegnare ver +disdegnata disdegnare ver +disdegnate disdegnare ver +disdegnato disdegnare ver +disdegnava disdegnare ver +disdegnavano disdegnare ver +disdegnerebbe disdegnare ver +disdegnerei disdegnare ver +disdegnerà disdegnare ver +disdegni disdegnare ver +disdegniamo disdegnare ver +disdegnino disdegnare ver +disdegno disdegno nom +disdegnosa disdegnoso adj +disdegnoso disdegnoso adj +disdegnò disdegnare ver +disdetta disdetta nom +disdette disdetta nom +disdetti disdire|disdirsi ver +disdetto disdire|disdirsi ver +disdica disdire|disdirsi ver +disdice disdire|disdirsi ver +disdicendo disdire|disdirsi ver +disdicevole disdicevole adj +disdicevoli disdicevole adj +disdici disdire|disdirsi ver +disdire disdire ver +disdirsi disdire|disdirsi ver +disdoro disdoro nom +diseducano diseducare ver +diseducativa diseducativo adj +diseducative diseducativo adj +diseducativi diseducativo adj +diseducativo diseducativo adj +diseducazione diseducazione nom +disegna disegnare ver +disegnai disegnare ver +disegnalo disegnare ver +disegnando disegnare ver +disegnandogli disegnare ver +disegnandola disegnare ver +disegnandole disegnare ver +disegnandoli disegnare ver +disegnandolo disegnare ver +disegnandone disegnare ver +disegnandosi disegnare ver +disegnandovi disegnare ver +disegnano disegnare ver +disegnante disegnare ver +disegnanti disegnare ver +disegnarci disegnare ver +disegnare disegnare ver +disegnargli disegnare ver +disegnarla disegnare ver +disegnarle disegnare ver +disegnarli disegnare ver +disegnarlo disegnare ver +disegnarne disegnare ver +disegnarono disegnare ver +disegnarsi disegnare ver +disegnarvi disegnare ver +disegnasse disegnare ver +disegnassero disegnare ver +disegnassi disegnare ver +disegnata disegnare ver +disegnate disegnare ver +disegnati disegnare ver +disegnato disegnare ver +disegnatore disegnatore nom +disegnatori disegnatore nom +disegnatrice disegnatore nom +disegnatrici disegnatore nom +disegnava disegnare ver +disegnavano disegnare ver +disegnavo disegnare ver +disegneranno disegnare ver +disegnerebbe disegnare ver +disegnerebbero disegnare ver +disegnerà disegnare ver +disegnerò disegnare ver +disegni disegno nom +disegniamo disegnare ver +disegnino disegnare ver +disegno disegno nom +disegnò disegnare ver +diseguale diseguale adj +diseguali diseguale adj +disequilibri disequilibrio nom +disequilibrio disequilibrio nom +diserbante diserbante nom +diserbanti diserbante nom +diserbare diserbare ver +diserbate diserbare ver +diserbo diserbare ver +disereda diseredare ver +diseredando diseredare ver +diseredandolo diseredare ver +diseredare diseredare ver +diseredarla diseredare ver +diseredarlo diseredare ver +diseredarono diseredare ver +diseredata diseredare ver +diseredate diseredato adj +diseredati diseredato nom +diseredato diseredare ver +diseredava diseredare ver +diseredazione diseredazione nom +diseredò diseredare ver +diserta disertare ver +disertai disertare ver +disertando disertare ver +disertano disertare ver +disertare disertare ver +disertarono disertare ver +disertasse disertare ver +disertassero disertare ver +disertata disertare ver +disertate disertare ver +disertati disertare ver +disertato disertare ver +disertava disertare ver +disertavano disertare ver +diserterai disertare ver +diserteranno disertare ver +diserterà disertare ver +diserti disertare ver +disertiate disertare ver +disertino disertare ver +diserto disertare ver +disertore disertore nom +disertori disertore nom +disertrice disertore nom +disertò disertare ver +diserzione diserzione nom +diserzioni diserzione nom +disfa disfare ver +disfaccia disfare ver +disfacendo disfare ver +disfacendosi disfare ver +disfaceva disfare ver +disfacevano disfare ver +disfacimenti disfacimento nom +disfacimento disfacimento nom +disfagia disfagia nom +disfanno disfare ver +disfar disfare ver +disfarci disfare ver +disfare disfare ver +disfarla disfare ver +disfarle disfare ver +disfarli disfare ver +disfarmi disfare ver +disfarsene disfare ver +disfarsi disfare ver +disfatta disfatta nom +disfatte disfatta nom +disfatti disfare ver +disfattismi disfattismo nom +disfattismo disfattismo nom +disfattista disfattista adj +disfattiste disfattista adj +disfattisti disfattista nom +disfatto disfare ver +disfavore disfavore nom +disfece disfare ver +disfecero disfare ver +disfida disfida nom +disfide disfida nom +disfonia disfonia nom +disfonie disfonia nom +disforia disforia nom +disfunzione disfunzione nom +disfunzioni disfunzione nom +disgela disgelare ver +disgelante disgelare ver +disgelanti disgelare ver +disgelato disgelare ver +disgeli disgelo nom +disgelo disgelo nom +disgiunge disgiungere ver +disgiungere disgiungere ver +disgiungersi disgiungere ver +disgiunse disgiungere ver +disgiunta disgiungere ver +disgiunte disgiungere ver +disgiunti disgiungere ver +disgiuntiva disgiuntivo adj +disgiuntive disgiuntivo adj +disgiuntivi disgiuntivo adj +disgiuntivo disgiuntivo adj +disgiunto disgiungere ver +disgiunzione disgiunzione nom +disgiunzioni disgiunzione nom +disgrazia disgrazia nom +disgraziata disgraziato adj +disgraziatamente disgraziatamente adv +disgraziate disgraziato adj +disgraziati disgraziato adj +disgraziato disgraziato adj +disgrazie disgrazia nom +disgrega disgregare ver +disgregabile disgregabile adj +disgregabili disgregabile adj +disgregamenti disgregamento nom +disgregamento disgregamento nom +disgregando disgregare ver +disgregandolo disgregare ver +disgregandosi disgregare ver +disgregano disgregare ver +disgregante disgregare ver +disgreganti disgregare ver +disgregare disgregare ver +disgregarla disgregare ver +disgregarlo disgregare ver +disgregarono disgregare ver +disgregarsi disgregare ver +disgregasse disgregare ver +disgregata disgregare ver +disgregate disgregare ver +disgregati disgregare ver +disgregativa disgregativo adj +disgregativo disgregativo adj +disgregato disgregare ver +disgregatore disgregatore nom +disgregatori disgregatore nom +disgregatrice disgregatore adj +disgregatrici disgregatore adj +disgregava disgregare ver +disgregazione disgregazione nom +disgregazioni disgregazione nom +disgregherà disgregare ver +disgreghi disgregare ver +disgregò disgregare ver +disguidi disguido nom +disguido disguido nom +disgusta disgustare ver +disgustando disgustare ver +disgustano disgustare ver +disgustanti disgustare ver +disgustare disgustare ver +disgustarli disgustare ver +disgustarlo disgustare ver +disgustarmi disgustare ver +disgustarsi disgustare ver +disgustata disgustare ver +disgustate disgustare ver +disgustati disgustare ver +disgustato disgustare ver +disgustava disgustare ver +disgusterà disgustare ver +disgusti disgusto nom +disgusto disgusto nom +disgustosa disgustoso adj +disgustose disgustoso adj +disgustosi disgustoso adj +disgustoso disgustoso adj +disgustò disgustare ver +disi disio nom +disidrata disidratare ver +disidratando disidratare ver +disidratandosi disidratare ver +disidratano disidratare ver +disidratante disidratare ver +disidratanti disidratare ver +disidratare disidratare ver +disidratarsi disidratare ver +disidratata disidratare ver +disidratate disidratare ver +disidratati disidratare ver +disidratato disidratare ver +disidratazione disidratazione nom +disidratazioni disidratazione nom +disidrati disidratare ver +disillabo disillabo adj +disillude disilludere ver +disilludendo disilludere ver +disilludere disilludere ver +disilluderlo disilludere ver +disilludersi disilludere ver +disilluderti disilludere ver +disillusa disilludere ver +disilluse disilluso adj +disillusi disilluso adj +disillusione disillusione nom +disillusioni disillusione nom +disilluso disilludere ver +disimpara disimparare ver +disimparare disimparare ver +disimparato disimparare ver +disimpegna disimpegnare ver +disimpegnando disimpegnare ver +disimpegnandosi disimpegnare ver +disimpegnano disimpegnare ver +disimpegnare disimpegnare ver +disimpegnarmi disimpegnare ver +disimpegnarono disimpegnare ver +disimpegnarsi disimpegnare ver +disimpegnata disimpegnare ver +disimpegnate disimpegnare ver +disimpegnati disimpegnare ver +disimpegnato disimpegnare ver +disimpegnava disimpegnare ver +disimpegnavano disimpegnare ver +disimpegni disimpegno nom +disimpegno disimpegno nom +disimpegnò disimpegnare ver +disincagliare disincagliare ver +disincagliarla disincagliare ver +disincagliarlo disincagliare ver +disincagliarsi disincagliare ver +disincagliata disincagliare ver +disincagliato disincagliare ver +disincaglio disincagliare ver +disincagliò disincagliare ver +disincantare disincantare ver +disincantarsi disincantare ver +disincantata disincantato adj +disincantate disincantato adj +disincantati disincantato adj +disincantato disincantato adj +disincanti disincanto nom +disincanto disincanto nom +disincentiva disincentivare ver +disincentivando disincentivare ver +disincentivano disincentivare ver +disincentivante disincentivare ver +disincentivanti disincentivare ver +disincentivare disincentivare ver +disincentivarne disincentivare ver +disincentivata disincentivare ver +disincentivati disincentivare ver +disincentivato disincentivare ver +disincentivava disincentivare ver +disincentivi disincentivare ver +disincentivino disincentivare ver +disincentivo disincentivare ver +disincrostante disincrostante nom +disincrostare disincrostare ver +disincrostato disincrostare ver +disinfesta disinfestare ver +disinfestando disinfestare ver +disinfestandolo disinfestare ver +disinfestante disinfestare ver +disinfestanti disinfestare ver +disinfestare disinfestare ver +disinfestata disinfestare ver +disinfestate disinfestare ver +disinfestati disinfestare ver +disinfestato disinfestare ver +disinfestatore disinfestatore nom +disinfestatori disinfestatore nom +disinfestazione disinfestazione nom +disinfestazioni disinfestazione nom +disinfetta disinfettare ver +disinfettando disinfettare ver +disinfettano disinfettare ver +disinfettante disinfettante nom +disinfettanti disinfettante adj +disinfettare disinfettare ver +disinfettarla disinfettare ver +disinfettarle disinfettare ver +disinfettarlo disinfettare ver +disinfettarsi disinfettare ver +disinfettata disinfettare ver +disinfettate disinfettare ver +disinfettati disinfettare ver +disinfettato disinfettare ver +disinfezione disinfezione nom +disinfezioni disinfezione nom +disinformata disinformato adj +disinformate disinformato adj +disinformati disinformato adj +disinformato disinformato adj +disinformazione disinformazione nom +disinformazioni disinformazione nom +disingannata disingannare ver +disingannato disingannare ver +disinganni disinganno nom +disinganno disinganno nom +disinibita disinibito adj +disinibite disinibito adj +disinibiti disinibito adj +disinibito disinibito adj +disinnesca disinnescare ver +disinnescando disinnescare ver +disinnescano disinnescare ver +disinnescare disinnescare ver +disinnescarla disinnescare ver +disinnescarle disinnescare ver +disinnescarlo disinnescare ver +disinnescata disinnescare ver +disinnescate disinnescare ver +disinnescati disinnescare ver +disinnescato disinnescare ver +disinnesco disinnesco nom +disinnescò disinnescare ver +disinnesta disinnestare ver +disinnestata disinnestare ver +disinnesto disinnesto nom +disinquinare disinquinare ver +disintegra disintegrare ver +disintegrando disintegrare ver +disintegrandola disintegrare ver +disintegrandole disintegrare ver +disintegrandoli disintegrare ver +disintegrandolo disintegrare ver +disintegrandosi disintegrare ver +disintegrano disintegrare ver +disintegrante disintegrare ver +disintegranti disintegrare ver +disintegrare disintegrare ver +disintegrarli disintegrare ver +disintegrarlo disintegrare ver +disintegrarono disintegrare ver +disintegrarsi disintegrare ver +disintegrata disintegrare ver +disintegrate disintegrare ver +disintegrati disintegrare ver +disintegrato disintegrare ver +disintegratore disintegratore nom +disintegratori disintegratore nom +disintegrava disintegrare ver +disintegravano disintegrare ver +disintegrazione disintegrazione nom +disintegrazioni disintegrazione nom +disintegreranno disintegrare ver +disintegrerebbe disintegrare ver +disintegrerebbero disintegrare ver +disintegrerà disintegrare ver +disintegrò disintegrare ver +disinteressa disinteressare ver +disinteressandosi disinteressare ver +disinteressano disinteressare ver +disinteressare disinteressare ver +disinteressarmene disinteressare ver +disinteressarmi disinteressare ver +disinteressarono disinteressare ver +disinteressarsene disinteressare ver +disinteressarsi disinteressare ver +disinteressassero disinteressare ver +disinteressassimo disinteressare ver +disinteressata disinteressare ver +disinteressatamente disinteressatamente adv +disinteressate disinteressato adj +disinteressati disinteressare ver +disinteressato disinteressare ver +disinteressava disinteressare ver +disinteressavano disinteressare ver +disinteresse disinteresse nom +disinteressi disinteressare ver +disinteresso disinteressare ver +disinteressò disinteressare ver +disintossica disintossicare ver +disintossicando disintossicare ver +disintossicandosi disintossicare ver +disintossicante disintossicare ver +disintossicanti disintossicare ver +disintossicare disintossicare ver +disintossicarlo disintossicare ver +disintossicarmi disintossicare ver +disintossicarsi disintossicare ver +disintossicata disintossicare ver +disintossicati disintossicare ver +disintossicato disintossicare ver +disintossicazione disintossicazione nom +disintossichi disintossicare ver +disintossicò disintossicare ver +disinvolta disinvolto adj +disinvoltamente disinvoltamente adv +disinvolte disinvolto adj +disinvolti disinvolto adj +disinvolto disinvolto adj +disinvoltura disinvoltura nom +disinvolture disinvoltura nom +disio disio nom +disistima disistima nom +disistimati disistimare ver +disistimo disistimare ver +dislalia dislalia nom +dislalie dislalia nom +dislivelli dislivello nom +dislivello dislivello nom +disloca dislocare ver +dislocamenti dislocamento nom +dislocamento dislocamento nom +dislocando dislocare ver +dislocandole dislocare ver +dislocandoli dislocare ver +dislocano dislocare ver +dislocante dislocare ver +dislocanti dislocare ver +dislocare dislocare ver +dislocarle dislocare ver +dislocarne dislocare ver +dislocarono dislocare ver +dislocarsi dislocare ver +dislocata dislocare ver +dislocate dislocare ver +dislocati dislocare ver +dislocato dislocare ver +dislocava dislocare ver +dislocavano dislocare ver +dislocazione dislocazione nom +dislocò dislocare ver +dismenorrea dismenorrea nom +dismesse dismettere ver +dismisura dismisura nom +dismnesia dismnesia nom +disobbedendo disobbedire ver +disobbedendogli disobbedire ver +disobbediente disobbedire ver +disobbedienti disobbedire ver +disobbedire disobbedire ver +disobbedirgli disobbedire ver +disobbedirle disobbedire ver +disobbedirono disobbedire ver +disobbedisca disobbedire ver +disobbedisce disobbedire ver +disobbedisco disobbedire ver +disobbediscono disobbedire ver +disobbedisse disobbedire ver +disobbedita disobbedire ver +disobbedito disobbedire ver +disobbediva disobbedire ver +disobbedivano disobbedire ver +disobbedì disobbedire ver +disobbligarsi disobbligare ver +disoccupata disoccupare ver +disoccupate disoccupare ver +disoccupati disoccupato nom +disoccupato disoccupare ver +disoccupazione disoccupazione nom +disonesta disonesto adj +disoneste disonesto adj +disonesti disonesto adj +disonesto disonesto adj +disonestà disonestà nom +disonora disonorare ver +disonorando disonorare ver +disonorano disonorare ver +disonorante disonorare ver +disonorare disonorare ver +disonorarla disonorare ver +disonorarli disonorare ver +disonorarlo disonorare ver +disonorarono disonorare ver +disonorarsi disonorare ver +disonorata disonorare ver +disonorate disonorare ver +disonorati disonorare ver +disonorato disonorare ver +disonorava disonorare ver +disonore disonore nom +disonorerebbe disonorare ver +disonorerà disonorare ver +disonorevole disonorevole adj +disonorevoli disonorevole adj +disonori disonore nom +disonorò disonorare ver +disopra disopra adv +disordinando disordinare ver +disordinante disordinare ver +disordinare disordinare ver +disordinata disordinato adj +disordinate disordinato adj +disordinatevi disordinare ver +disordinati disordinato adj +disordinato disordinato adj +disordine disordine nom +disordini disordine nom +disordino disordinare ver +disordinò disordinare ver +disorganica disorganico adj +disorganiche disorganico adj +disorganici disorganico adj +disorganico disorganico adj +disorganizza disorganizzare ver +disorganizzando disorganizzare ver +disorganizzare disorganizzare ver +disorganizzarlo disorganizzare ver +disorganizzata disorganizzare ver +disorganizzate disorganizzare ver +disorganizzati disorganizzare ver +disorganizzato disorganizzare ver +disorganizzazione disorganizzazione nom +disorganizzazioni disorganizzazione nom +disorganizzò disorganizzare ver +disorienta disorientare ver +disorientamenti disorientamento nom +disorientamento disorientamento nom +disorientando disorientare ver +disorientandole disorientare ver +disorientandolo disorientare ver +disorientano disorientare ver +disorientante disorientare ver +disorientanti disorientare ver +disorientare disorientare ver +disorientarla disorientare ver +disorientarli disorientare ver +disorientarlo disorientare ver +disorientarono disorientare ver +disorientata disorientare ver +disorientate disorientato adj +disorientati disorientare ver +disorientato disorientare ver +disorientava disorientare ver +disorientavano disorientare ver +disorienti disorientare ver +disorientò disorientare ver +disormeggio disormeggiare ver +disossa disossare ver +disossando disossare ver +disossano disossare ver +disossare disossare ver +disossata disossare ver +disossate disossare ver +disossati disossare ver +disossato disossare ver +disossidante disossidante adj +disossidanti disossidante adj +disossidare disossidare ver +disotto disotto adv +dispacci dispaccio nom +dispaccio dispaccio nom +disparata disparato adj +disparate disparato adj +disparati disparato adj +disparato disparato adj +dispareri disparere nom +dispari dispari adj +disparire disparire ver +disparita disparire ver +disparità disparità nom +disparse disparso adj +disparsi disparso adj +disparte disparte adv +dispendi dispendio nom +dispendio dispendio nom +dispendiosa dispendioso adj +dispendiosamente dispendiosamente adv +dispendiose dispendioso adj +dispendiosi dispendioso adj +dispendioso dispendioso adj +dispensa dispensa nom +dispensabile dispensabile adj +dispensabili dispensabile adj +dispensando dispensare ver +dispensandole dispensare ver +dispensandoli dispensare ver +dispensano dispensare ver +dispensar dispensare ver +dispensare dispensare ver +dispensargli dispensare ver +dispensari dispensario nom +dispensario dispensario nom +dispensarli dispensare ver +dispensarlo dispensare ver +dispensarmi dispensare ver +dispensarne dispensare ver +dispensarono dispensare ver +dispensarsi dispensare ver +dispensata dispensare ver +dispensate dispensare ver +dispensati dispensare ver +dispensato dispensare ver +dispensatore dispensatore nom +dispensatori dispensatore nom +dispensatrice dispensatore nom +dispensatrici dispensatore adj +dispensava dispensare ver +dispensavano dispensare ver +dispense dispensa nom +dispenserà dispensare ver +dispensi dispensare ver +dispensiera dispensiere nom +dispensiere dispensiere nom +dispensieri dispensiere nom +dispenso dispensare ver +dispensò dispensare ver +dispepsia dispepsia nom +dispepsie dispepsia nom +dispera disperare ver +disperando disperare ver +disperandosi disperare ver +disperano disperare ver +disperante disperare ver +disperanti disperare ver +disperar disperare ver +disperarci disperare ver +disperare disperare ver +disperarmi disperare ver +disperarono disperare ver +disperarsi disperare ver +disperarti disperare ver +disperata disperato adj +disperatamente disperatamente adv +disperate disperato adj +disperati disperato adj +disperato disperato adj +disperava disperare ver +disperavano disperare ver +disperazione disperazione nom +disperda disperdere ver +disperdano disperdere ver +disperde disperdere ver +disperdendo disperdere ver +disperdendola disperdere ver +disperdendole disperdere ver +disperdendoli disperdere ver +disperdendolo disperdere ver +disperdendone disperdere ver +disperdendosi disperdere ver +disperdente disperdente nom +disperdenti disperdente nom +disperderai disperdere ver +disperderanno disperdere ver +disperderci disperdere ver +disperdere disperdere ver +disperderebbe disperdere ver +disperderebbero disperdere ver +disperderla disperdere ver +disperderle disperdere ver +disperderli disperdere ver +disperderlo disperdere ver +disperdermi disperdere ver +disperderne disperdere ver +disperdersi disperdere ver +disperderà disperdere ver +disperderò disperdere ver +disperdesse disperdere ver +disperdessero disperdere ver +disperdetevi disperdere ver +disperdeva disperdere ver +disperdevano disperdere ver +disperdi disperdere ver +disperdiamo disperdere ver +disperdiamone disperdere ver +disperditi disperdere ver +disperdono disperdere ver +dispererò disperare ver +disperi disperare ver +disperiamo disperare ver +dispero disperare ver +dispersa disperdere ver +disperse disperso adj +dispersero disperdere ver +dispersi disperso nom +dispersione dispersione nom +dispersioni dispersione nom +dispersiva dispersivo adj +dispersive dispersivo adj +dispersivi dispersivo adj +dispersività dispersività nom +dispersivo dispersivo adj +disperso disperdere ver +dispersore dispersore nom +dispersori dispersore nom +disperò disperare ver +dispetti dispetto nom +dispetto dispetto nom +dispettosa dispettoso adj +dispettose dispettoso adj +dispettosi dispettoso adj +dispettoso dispettoso adj +dispiaccia dispiacere ver +dispiacciano dispiacere ver +dispiaccio dispiacere ver +dispiacciono dispiacere ver +dispiace dispiacere ver +dispiacendo dispiacere ver +dispiacendomi dispiacere ver +dispiacendosi dispiacere ver +dispiacer dispiacere ver +dispiaceranno dispiacere ver +dispiacerci dispiacere ver +dispiacere dispiacere ver +dispiacerebbe dispiacere ver +dispiacerebbero dispiacere ver +dispiacergli dispiacere ver +dispiacerlo dispiacere ver +dispiacermene dispiacere ver +dispiacermi dispiacere ver +dispiacersi dispiacere ver +dispiacerti dispiacere ver +dispiacerà dispiacere ver +dispiacesse dispiacere ver +dispiaceva dispiacere ver +dispiacevano dispiacere ver +dispiaciuta dispiacere ver +dispiaciute dispiacere ver +dispiaciuti dispiacere ver +dispiaciuto dispiacere ver +dispiacque dispiacere ver +dispiacquero dispiacere ver +dispiega dispiegare ver +dispiegamento dispiegamento nom +dispiegando dispiegare ver +dispiegandosi dispiegare ver +dispiegano dispiegare ver +dispiegare dispiegare ver +dispiegarono dispiegare ver +dispiegarsi dispiegare ver +dispiegata dispiegare ver +dispiegate dispiegare ver +dispiegatesi dispiegare ver +dispiegati dispiegare ver +dispiegato dispiegare ver +dispiegava dispiegare ver +dispiegavano dispiegare ver +dispiegherà dispiegare ver +dispieghi dispiegare ver +dispiego dispiegare ver +dispiegò dispiegare ver +displasia displasia nom +displasie displasia nom +displuviato displuviato adj +displuvio displuvio nom +dispnea dispnea nom +dispnoica dispnoico adj +dispone disporre ver +disponemmo disporre ver +disponendo disporre ver +disponendola disporre ver +disponendole disporre ver +disponendoli disporre ver +disponendolo disporre ver +disponendone disporre ver +disponendosi disporre ver +disponendovi disporre ver +disponente disporre ver +disponesse disporre ver +disponessero disporre ver +disponessimo disporre ver +disponete disporre ver +disponeva disporre ver +disponevamo disporre ver +disponevano disporre ver +disponevo disporre ver +disponga disporre ver +dispongano disporre ver +dispongo disporre ver +dispongono disporre ver +disponi disporre ver +disponiamo disporre ver +disponibile disponibile adj +disponibili disponibile adj +disponibilità disponibilità nom +disponile disporre ver +disponili disporre ver +disporci disporre ver +disporla disporre ver +disporle disporre ver +disporli disporre ver +disporlo disporre ver +disporne disporre ver +disporrai disporre ver +disporranno disporre ver +disporre disporre ver +disporrebbe disporre ver +disporrebbero disporre ver +disporrei disporre ver +disporremo disporre ver +disporrà disporre ver +disporsi disporre ver +disporvi disporre ver +dispose disporre ver +disposero disporre ver +disposi disporre ver +dispositiva dispositivo adj +dispositive dispositivo adj +dispositivi dispositivo nom +dispositivo dispositivo nom +disposizione disposizione nom +disposizioni disposizione nom +disposta disporre ver +disposte disporre ver +disposti disporre ver +disposto disporre ver +dispotica dispotico adj +dispotiche dispotico adj +dispotici dispotico adj +dispotico dispotico adj +dispotismi dispotismo nom +dispotismo dispotismo nom +dispregiano dispregiare ver +dispregiata dispregiare ver +dispregiativa dispregiativo adj +dispregiative dispregiativo adj +dispregiativi dispregiativo adj +dispregiativo dispregiativo adj +dispregiato dispregiare ver +dispregiatore dispregiatore adj +dispregio dispregio nom +disprezza disprezzare ver +disprezzabile disprezzabile adj +disprezzabili disprezzabile adj +disprezzando disprezzare ver +disprezzandola disprezzare ver +disprezzandolo disprezzare ver +disprezzandone disprezzare ver +disprezzano disprezzare ver +disprezzante disprezzare ver +disprezzar disprezzare ver +disprezzare disprezzare ver +disprezzarla disprezzare ver +disprezzarli disprezzare ver +disprezzarlo disprezzare ver +disprezzarmi disprezzare ver +disprezzarono disprezzare ver +disprezzarsi disprezzare ver +disprezzasse disprezzare ver +disprezzassi disprezzare ver +disprezzata disprezzare ver +disprezzate disprezzare ver +disprezzati disprezzare ver +disprezzato disprezzare ver +disprezzava disprezzare ver +disprezzavano disprezzare ver +disprezzavo disprezzare ver +disprezzerai disprezzare ver +disprezzeranno disprezzare ver +disprezzerebbe disprezzare ver +disprezzerei disprezzare ver +disprezzerà disprezzare ver +disprezzi disprezzo nom +disprezziamo disprezzare ver +disprezzino disprezzare ver +disprezzo disprezzo nom +disprezzò disprezzare ver +disprosi disprosio nom +disprosio disprosio nom +disputa disputa nom +disputando disputare ver +disputandola disputare ver +disputandolo disputare ver +disputandone disputare ver +disputandosi disputare ver +disputandovi disputare ver +disputano disputare ver +disputante disputare ver +disputanti disputare ver +disputar disputare ver +disputare disputare ver +disputarla disputare ver +disputarle disputare ver +disputarli disputare ver +disputarlo disputare ver +disputarne disputare ver +disputarono disputare ver +disputarsi disputare ver +disputarvi disputare ver +disputasi disputare ver +disputasse disputare ver +disputassero disputare ver +disputata disputare ver +disputate disputare ver +disputatesi disputare ver +disputati disputare ver +disputato disputare ver +disputava disputare ver +disputavano disputare ver +dispute disputa nom +disputeranno disputare ver +disputerebbe disputare ver +disputerà disputare ver +disputi disputare ver +disputiamo disputare ver +disputino disputare ver +disputo disputare ver +disputò disputare ver +disquisendo disquisire ver +disquisire disquisire ver +disquisirne disquisire ver +disquisisce disquisire ver +disquisiscono disquisire ver +disquisita disquisire ver +disquisito disquisire ver +disquisiva disquisire ver +disquisizione disquisizione nom +disquisizioni disquisizione nom +disquisì disquisire ver +dissabbiatore dissabbiatore nom +dissabbiatori dissabbiatore nom +dissacra dissacrare ver +dissacrando dissacrare ver +dissacrante dissacrare ver +dissacranti dissacrare ver +dissacrare dissacrare ver +dissacrata dissacrare ver +dissacrate dissacrare ver +dissacrati dissacrare ver +dissacrato dissacrare ver +dissacrò dissacrare ver +dissalare dissalare ver +dissalata dissalare ver +dissalate dissalare ver +dissalati dissalare ver +dissalato dissalare ver +dissalatore dissalatore nom +dissalatori dissalatore nom +dissalazione dissalazione nom +dissaldare dissaldare ver +dissaldarsi dissaldare ver +dissangua dissanguare ver +dissanguamento dissanguamento nom +dissanguando dissanguare ver +dissanguandola dissanguare ver +dissanguandole dissanguare ver +dissanguandolo dissanguare ver +dissanguandosi dissanguare ver +dissanguano dissanguare ver +dissanguare dissanguare ver +dissanguarla dissanguare ver +dissanguarli dissanguare ver +dissanguarlo dissanguare ver +dissanguarono dissanguare ver +dissanguarsi dissanguare ver +dissanguassero dissanguare ver +dissanguata dissanguare ver +dissanguate dissanguare ver +dissanguati dissanguare ver +dissanguato dissanguare ver +dissanguava dissanguare ver +dissanguavano dissanguare ver +dissanguò dissanguare ver +dissapore dissapore nom +dissapori dissapore nom +disse dire ver_sup +disseca dissecare ver +dissecandone dissecare ver +dissecano dissecare ver +dissecante dissecare ver +dissecare dissecare ver +dissecca disseccare ver +disseccando disseccare ver +disseccandosi disseccare ver +disseccano disseccare ver +disseccante disseccare ver +disseccare disseccare ver +disseccarsi disseccare ver +disseccasse disseccare ver +disseccata disseccare ver +disseccate disseccare ver +disseccati disseccare ver +disseccato disseccare ver +dissemina disseminare ver +disseminando disseminare ver +disseminandola disseminare ver +disseminandolo disseminare ver +disseminandosi disseminare ver +disseminano disseminare ver +disseminare disseminare ver +disseminarla disseminare ver +disseminarli disseminare ver +disseminarono disseminare ver +disseminarsi disseminare ver +disseminata disseminare ver +disseminate disseminare ver +disseminati disseminare ver +disseminato disseminare ver +disseminava disseminare ver +disseminazione disseminazione nom +disseminazioni disseminazione nom +disseminò disseminare ver +dissennata dissennato adj +dissennate dissennato adj +dissennatezza dissennatezza nom +dissennati dissennato adj +dissennato dissennato adj +dissensi dissenso nom +dissensioni dissensione nom +dissenso dissenso nom +dissenta dissentire ver +dissentano dissentire ver +dissente dissentire ver +dissentendo dissentire ver +dissenteria dissenteria nom +dissenterica dissenterico adj +dissenteriche dissenterico adj +dissenterici dissenterico adj +dissenterie dissenteria nom +dissenti dissentire ver +dissentiamo dissentire ver +dissentire dissentire ver +dissentirono dissentire ver +dissentito dissentire ver +dissentiva dissentire ver +dissentivano dissentire ver +dissento dissentire ver +dissentono dissentire ver +dissentì dissentire ver +dissenziente dissenziente adj +dissenzienti dissenziente adj +dissepolta dissepolto adj +dissepolte dissepolto adj +dissepolti dissepolto adj +dissepolto dissepolto adj +disseppellendo disseppellire ver +disseppellimento disseppellimento nom +disseppellire disseppellire ver +disseppellirlo disseppellire ver +disseppellirono disseppellire ver +disseppellirà disseppellire ver +disseppellisce disseppellire ver +disseppelliscono disseppellire ver +disseppellita disseppellire ver +disseppelliti disseppellire ver +disseppellito disseppellire ver +disseppellì disseppellire ver +dissequestro dissequestro nom +dissero dire ver +disserra disserrare ver +disserrare disserrare ver +disserta dissertare ver +dissertando dissertare ver +dissertano dissertare ver +dissertare dissertare ver +dissertato dissertare ver +dissertatoria dissertatorio adj +dissertava dissertare ver +dissertazione dissertazione nom +dissertazioni dissertazione nom +dissertò dissertare ver +disservizi disservizio nom +disservizio disservizio nom +dissesta dissestare ver +dissestare dissestare ver +dissestata dissestare ver +dissestate dissestare ver +dissestati dissestare ver +dissestato dissestare ver +dissestavano dissestare ver +dissesti dissesto nom +dissesto dissesto nom +disseta dissetare ver +dissetandosi dissetare ver +dissetano dissetare ver +dissetante dissetante adj +dissetanti dissetante adj +dissetare dissetare ver +dissetarlo dissetare ver +dissetarmi dissetare ver +dissetarono dissetare ver +dissetarsi dissetare ver +dissetata dissetare ver +dissetate dissetare ver +dissetati dissetare ver +dissetato dissetare ver +dissetava dissetare ver +dissetavano dissetare ver +disseterà dissetare ver +disseti dissetare ver +disseto dissetare ver +dissettore dissettore nom +dissettori dissettore nom +dissetò dissetare ver +dissezione dissezione nom +dissezioni dissezione nom +dissi dire ver +dissidente dissidente adj +dissidenti dissidente adj +dissidenza dissidenza nom +dissidenze dissidenza nom +dissidi dissidio nom +dissidio dissidio nom +dissimilazione dissimilazione nom +dissimile dissimile adj +dissimili dissimile adj +dissimula dissimulare ver +dissimulando dissimulare ver +dissimulano dissimulare ver +dissimulare dissimulare ver +dissimularne dissimulare ver +dissimulasse dissimulare ver +dissimulata dissimulare ver +dissimulate dissimulare ver +dissimulati dissimulare ver +dissimulato dissimulare ver +dissimulatore dissimulatore adj +dissimulava dissimulare ver +dissimulavano dissimulare ver +dissimulazione dissimulazione nom +dissimulazioni dissimulazione nom +dissimulò dissimulare ver +dissipa dissipare ver +dissipabile dissipabile adj +dissipando dissipare ver +dissipandosi dissipare ver +dissipano dissipare ver +dissipante dissipare ver +dissipare dissipare ver +dissiparla dissipare ver +dissiparono dissipare ver +dissiparsi dissipare ver +dissipassero dissipare ver +dissipata dissipare ver +dissipate dissipare ver +dissipatezza dissipatezza nom +dissipatezze dissipatezza nom +dissipati dissipare ver +dissipato dissipare ver +dissipatore dissipatore nom +dissipatori dissipatore nom +dissipatrice dissipatore nom +dissipava dissipare ver +dissipazione dissipazione nom +dissipazioni dissipazione nom +dissiperebbe dissipare ver +dissiperà dissipare ver +dissipi dissipare ver +dissipiate dissipare ver +dissipino dissipare ver +dissipò dissipare ver +dissocerà dissociare ver +dissoci dissociare ver +dissocia dissociare ver +dissociabile dissociabile adj +dissociabili dissociabile adj +dissociaci dissociare ver +dissociale dissociare ver +dissociali dissociare ver +dissociandosene dissociare ver +dissociandosi dissociare ver +dissociano dissociare ver +dissociante dissociare ver +dissocianti dissociare ver +dissociare dissociare ver +dissociarla dissociare ver +dissociarmi dissociare ver +dissociarono dissociare ver +dissociarsi dissociare ver +dissociasse dissociare ver +dissociata dissociare ver +dissociate dissociare ver +dissociati dissociare ver +dissociativa dissociativo adj +dissociative dissociativo adj +dissociativi dissociativo adj +dissociativo dissociativo adj +dissociato dissociare ver +dissociava dissociare ver +dissociazione dissociazione nom +dissociazioni dissociazione nom +dissocino dissociare ver +dissocio dissociare ver +dissociò dissociare ver +dissoda dissodare ver +dissodamenti dissodamento nom +dissodamento dissodamento nom +dissodando dissodare ver +dissodano dissodare ver +dissodante dissodare ver +dissodare dissodare ver +dissodarli dissodare ver +dissodarono dissodare ver +dissodata dissodare ver +dissodate dissodare ver +dissodati dissodare ver +dissodato dissodare ver +dissodava dissodare ver +dissodavano dissodare ver +dissodò dissodare ver +dissolse dissolvere ver +dissolsero dissolvere ver +dissolta dissolvere ver +dissolte dissolvere ver +dissolti dissolvere ver +dissolto dissolvere ver +dissolubili dissolubile adj +dissoluta dissoluto adj +dissolute dissoluto adj +dissolutezza dissolutezza nom +dissolutezze dissolutezza nom +dissoluti dissoluto adj +dissolutiva dissolutivo adj +dissolutive dissolutivo adj +dissolutivo dissolutivo adj +dissoluto dissoluto adj +dissoluzione dissoluzione nom +dissoluzioni dissoluzione nom +dissolva dissolvere ver +dissolvano dissolvere ver +dissolve dissolvere ver +dissolvendo dissolvere ver +dissolvendola dissolvere ver +dissolvendoli dissolvere ver +dissolvendolo dissolvere ver +dissolvendosi dissolvere ver +dissolvente dissolvere ver +dissolvenza dissolvenza nom +dissolvenze dissolvenza nom +dissolver dissolvere ver +dissolveranno dissolvere ver +dissolvere dissolvere ver +dissolverebbe dissolvere ver +dissolverebbero dissolvere ver +dissolverla dissolvere ver +dissolverle dissolvere ver +dissolverli dissolvere ver +dissolverlo dissolvere ver +dissolverne dissolvere ver +dissolversi dissolvere ver +dissolverà dissolvere ver +dissolvesse dissolvere ver +dissolvessero dissolvere ver +dissolveva dissolvere ver +dissolvevano dissolvere ver +dissolvi dissolvere ver +dissolviamo dissolvere ver +dissolvimento dissolvimento nom +dissolvono dissolvere ver +dissomiglianza dissomiglianza nom +dissomiglianze dissomiglianza nom +dissona dissonare ver +dissonante dissonante adj +dissonanti dissonante adj +dissonanza dissonanza nom +dissonanze dissonanza nom +dissonati dissonare ver +dissono dissonare ver +dissotterra dissotterrare ver +dissotterrando dissotterrare ver +dissotterrano dissotterrare ver +dissotterrare dissotterrare ver +dissotterrarlo dissotterrare ver +dissotterrarne dissotterrare ver +dissotterrarono dissotterrare ver +dissotterrata dissotterrare ver +dissotterrate dissotterrare ver +dissotterrati dissotterrare ver +dissotterrato dissotterrare ver +dissotterrava dissotterrare ver +dissotterrò dissotterrare ver +dissuadano dissuadere ver +dissuade dissuadere ver +dissuadendo dissuadere ver +dissuadendoli dissuadere ver +dissuadendolo dissuadere ver +dissuadente dissuadere ver +dissuadere dissuadere ver +dissuaderla dissuadere ver +dissuaderle dissuadere ver +dissuaderli dissuadere ver +dissuaderlo dissuadere ver +dissuadermi dissuadere ver +dissuaderti dissuadere ver +dissuaderà dissuadere ver +dissuadesse dissuadere ver +dissuadeva dissuadere ver +dissuadono dissuadere ver +dissuasa dissuadere ver +dissuase dissuaso adj +dissuasero dissuadere ver +dissuasi dissuadere ver +dissuasione dissuasione nom +dissuasiva dissuasivo adj +dissuasive dissuasivo adj +dissuasivi dissuasivo adj +dissuasivo dissuasivo adj +dissuaso dissuadere ver +dissuasore dissuasore nom +dissuasori dissuasore nom +dista distare ver +distacca distaccare ver +distaccamenti distaccamento nom +distaccamento distaccamento nom +distaccando distaccare ver +distaccandola distaccare ver +distaccandoli distaccare ver +distaccandolo distaccare ver +distaccandone distaccare ver +distaccandosene distaccare ver +distaccandosi distaccare ver +distaccano distaccare ver +distaccante distaccare ver +distaccanti distaccare ver +distaccar distaccare ver +distaccarci distaccare ver +distaccare distaccare ver +distaccarla distaccare ver +distaccarle distaccare ver +distaccarlo distaccare ver +distaccarono distaccare ver +distaccarsene distaccare ver +distaccarsi distaccare ver +distaccarvi distaccare ver +distaccasse distaccare ver +distaccassero distaccare ver +distaccata distaccare ver +distaccate distaccato adj +distaccatesi distaccare ver +distaccati distaccare ver +distaccato distaccare ver +distaccava distaccare ver +distaccavano distaccare ver +distaccheranno distaccare ver +distaccherebbe distaccare ver +distaccherà distaccare ver +distacchi distacco nom +distacchino distaccare ver +distacco distacco nom +distaccò distaccare ver +distale distale nom +distali distale nom +distando distare ver +distane distare ver +distano distare ver +distante distante adj +distanti distante adj +distanza distanza nom +distanze distanza nom +distanzia distanziare ver +distanziale distanziare ver +distanziali distanziare ver +distanziando distanziare ver +distanziandola distanziare ver +distanziandoli distanziare ver +distanziandolo distanziare ver +distanziandosene distanziare ver +distanziandosi distanziare ver +distanziano distanziare ver +distanziare distanziare ver +distanziarla distanziare ver +distanziarle distanziare ver +distanziarli distanziare ver +distanziarlo distanziare ver +distanziarmi distanziare ver +distanziarono distanziare ver +distanziarsene distanziare ver +distanziarsi distanziare ver +distanziasse distanziare ver +distanziata distanziare ver +distanziate distanziare ver +distanziati distanziare ver +distanziato distanziare ver +distanziatore distanziatore nom +distanziatori distanziatore nom +distanziava distanziare ver +distanziavano distanziare ver +distanzierà distanziare ver +distanziometri distanziometro nom +distanziometrica distanziometrico adj +distanziometriche distanziometrico adj +distanziometrici distanziometrico adj +distanziometrico distanziometrico adj +distanziometro distanziometro nom +distanziò distanziare ver +distare distare ver +distarlo distare ver +distasse distare ver +distassero distare ver +distate distare ver +distati distare ver +distato distare ver +distava distare ver +distavano distare ver +distenda distendere ver +distende distendere ver +distendendo distendere ver +distendendola distendere ver +distendendole distendere ver +distendendolo distendere ver +distendendosi distendere ver +distenderanno distendere ver +distendere distendere ver +distenderebbero distendere ver +distenderla distendere ver +distenderle distendere ver +distenderli distendere ver +distendersi distendere ver +distendeva distendere ver +distendevano distendere ver +distendi distendere ver +distendo distendere ver +distendono distendere ver +distensione distensione nom +distensioni distensione nom +distensiva distensivo adj +distensive distensivo adj +distensivi distensivo adj +distensivo distensivo adj +disteranno distare ver +disterebbe distare ver +disterebbero distare ver +disterà distare ver +distesa distesa nom +distesamente distesamente adv +distese distesa nom +distesero distendere ver +distesi disteso adj +disteso distendere ver +disti distare ver +distici distico nom +distico distico nom +distilla distillare ver +distillabile distillabile adj +distillando distillare ver +distillano distillare ver +distillante distillare ver +distillanti distillare ver +distillare distillare ver +distillata distillato adj +distillate distillato adj +distillati distillato nom +distillato distillato nom +distillatore distillatore nom +distillatori distillatore nom +distillatrice distillatore nom +distillava distillare ver +distillavano distillare ver +distillazione distillazione nom +distillazioni distillazione nom +distilleria distilleria nom +distillerie distilleria nom +distilliamo distillare ver +distillò distillare ver +distimia distimia nom +distingua distinguere ver +distinguano distinguere ver +distingue distinguere ver +distinguendo distinguere ver +distinguendola distinguere ver +distinguendole distinguere ver +distinguendoli distinguere ver +distinguendolo distinguere ver +distinguendone distinguere ver +distinguendosene distinguere ver +distinguendosi distinguere ver +distinguenti distinguere ver +distinguer distinguere ver +distingueranno distinguere ver +distinguerci distinguere ver +distinguere distinguere ver +distinguerebbe distinguere ver +distinguerebbero distinguere ver +distinguerei distinguere ver +distingueremo distinguere ver +distinguerla distinguere ver +distinguerle distinguere ver +distinguerli distinguere ver +distinguerlo distinguere ver +distinguermi distinguere ver +distinguerne distinguere ver +distinguersene distinguere ver +distinguersi distinguere ver +distinguerti distinguere ver +distinguervi distinguere ver +distinguerà distinguere ver +distinguesse distinguere ver +distinguessero distinguere ver +distinguete distinguere ver +distingueva distinguere ver +distinguevano distinguere ver +distinguevo distinguere ver +distingui distinguere ver +distinguiamo distinguere ver +distinguibile distinguibile adj +distinguibili distinguibile adj +distinguo distinguo nom +distinguono distinguere ver +distino distare ver +distinse distinguere ver +distinsero distinguere ver +distinsi distinguere ver +distinta distinto adj +distintamente distintamente adv +distinte distinto adj +distinti distinto adj +distintiva distintivo adj +distintive distintivo adj +distintivi distintivo adj +distintivo distintivo adj +distinto distinguere ver +distinzione distinzione nom +distinzioni distinzione nom +disto distare ver +distogli distogliere ver +distoglie distogliere ver +distogliendo distogliere ver +distogliendola distogliere ver +distogliendole distogliere ver +distogliendoli distogliere ver +distogliendolo distogliere ver +distoglier distogliere ver +distoglierai distogliere ver +distoglieranno distogliere ver +distoglierci distogliere ver +distogliere distogliere ver +distoglierebbe distogliere ver +distoglierebbero distogliere ver +distoglierla distogliere ver +distoglierli distogliere ver +distoglierlo distogliere ver +distoglierne distogliere ver +distogliersi distogliere ver +distoglierà distogliere ver +distogliesse distogliere ver +distogliessero distogliere ver +distoglieva distogliere ver +distoglievano distogliere ver +distolga distogliere ver +distolgano distogliere ver +distolgono distogliere ver +distolse distogliere ver +distolsero distogliere ver +distolsi distogliere ver +distolta distogliere ver +distolte distogliere ver +distolti distogliere ver +distolto distogliere ver +distoma distoma nom +distomi distoma nom +distonia distonia nom +distonie distonia nom +distorca distorcere ver +distorcano distorcere ver +distorce distorcere ver +distorcendo distorcere ver +distorcendola distorcere ver +distorcendolo distorcere ver +distorcendone distorcere ver +distorcente distorcere ver +distorcenti distorcere ver +distorcere distorcere ver +distorcerebbe distorcere ver +distorcerebbero distorcere ver +distorcerla distorcere ver +distorcerle distorcere ver +distorcerlo distorcere ver +distorcerne distorcere ver +distorcersi distorcere ver +distorcerà distorcere ver +distorceva distorcere ver +distorci distorcere ver +distorco distorcere ver +distorcono distorcere ver +distorse distorcere ver +distorsero distorcere ver +distorsi distorcere ver +distorsione distorsione nom +distorsioni distorsione nom +distorta distorcere ver +distorte distorcere ver +distorti distorcere ver +distorto distorcere ver +distrae distrarre ver +distraendo distrarre ver +distraendoci distrarre ver +distraendola distrarre ver +distraendoli distrarre ver +distraendolo distrarre ver +distraendosi distrarre ver +distraente distrarre ver +distraenti distrarre ver +distraesse distrarre ver +distraessero distrarre ver +distraeva distrarre ver +distraevano distrarre ver +distragga distrarre ver +distraggano distrarre ver +distraggo distrarre ver +distraggono distrarre ver +distrai distrarre ver +distraiamoci distrarre ver +distraimi distrarre ver +distrarci distrarre ver +distrarla distrarre ver +distrarle distrarre ver +distrarli distrarre ver +distrarlo distrarre ver +distrarmi distrarre ver +distrarranno distrarre ver +distrarre distrarre ver +distrarrebbe distrarre ver +distrarrebbero distrarre ver +distrarrà distrarre ver +distrarsi distrarre ver +distrarti distrarre ver +distrasse distrarre ver +distrassero distrarre ver +distratta distrarre ver +distratte distrarre ver +distratti distrarre ver +distratto distrarre ver +distrazione distrazione nom +distrazioni distrazione nom +distretti distretto nom +distretto distretto nom +distrettuale distrettuale adj +distrettuali distrettuale adj +distribuendo distribuire ver +distribuendola distribuire ver +distribuendole distribuire ver +distribuendoli distribuire ver +distribuendolo distribuire ver +distribuendone distribuire ver +distribuendosi distribuire ver +distribuiamo distribuire ver +distribuii distribuire ver +distribuir distribuire ver +distribuiranno distribuire ver +distribuire distribuire ver +distribuirebbe distribuire ver +distribuirei distribuire ver +distribuirla distribuire ver +distribuirle distribuire ver +distribuirli distribuire ver +distribuirlo distribuire ver +distribuirne distribuire ver +distribuirono distribuire ver +distribuirsi distribuire ver +distribuirà distribuire ver +distribuirò distribuire ver +distribuisca distribuire ver +distribuiscano distribuire ver +distribuisce distribuire ver +distribuisci distribuire ver +distribuisco distribuire ver +distribuiscono distribuire ver +distribuisse distribuire ver +distribuissero distribuire ver +distribuissi distribuire ver +distribuita distribuire ver +distribuite distribuire ver +distribuiti distribuire ver +distribuito distribuire ver +distribuiva distribuire ver +distribuivano distribuire ver +distributiva distributivo adj +distributive distributivo adj +distributivi distributivo adj +distributivo distributivo adj +distributore distributore nom +distributori distributore nom +distributrice distributore adj +distributrici distributore adj +distribuzione distribuzione nom +distribuzioni distribuzione nom +distribuì distribuire ver +districa districare ver +districando districare ver +districandosi districare ver +districano districare ver +districarci districare ver +districare districare ver +districarle districare ver +districarli districare ver +districarmi districare ver +districarsene districare ver +districarsi districare ver +districata districare ver +districate districare ver +districato districare ver +districava districare ver +districavano districare ver +districo districare ver +districò districare ver +distrofia distrofia nom +distrofica distrofico adj +distrofiche distrofico adj +distrofici distrofico adj +distrofico distrofico adj +distrofie distrofia nom +distrugga distruggere ver +distruggano distruggere ver +distrugge distruggere ver +distruggemmo distruggere ver +distruggendo distruggere ver +distruggendogli distruggere ver +distruggendola distruggere ver +distruggendole distruggere ver +distruggendoli distruggere ver +distruggendolo distruggere ver +distruggendone distruggere ver +distruggendosi distruggere ver +distruggente distruggere ver +distrugger distruggere ver +distruggerai distruggere ver +distruggeranno distruggere ver +distruggerci distruggere ver +distruggere distruggere ver +distruggerebbe distruggere ver +distruggerebbero distruggere ver +distruggerei distruggere ver +distruggeremo distruggere ver +distruggerete distruggere ver +distruggergli distruggere ver +distruggerla distruggere ver +distruggerle distruggere ver +distruggerli distruggere ver +distruggerlo distruggere ver +distruggermi distruggere ver +distruggerne distruggere ver +distruggersi distruggere ver +distruggerti distruggere ver +distruggervi distruggere ver +distruggerà distruggere ver +distruggerò distruggere ver +distruggesse distruggere ver +distruggessero distruggere ver +distruggessi distruggere ver +distruggeste distruggere ver +distruggete distruggere ver +distruggeteli distruggere ver +distruggetelo distruggere ver +distruggetene distruggere ver +distruggeva distruggere ver +distruggevano distruggere ver +distruggi distruggere ver +distruggiamo distruggere ver +distruggilo distruggere ver +distruggimi distruggere ver +distruggo distruggere ver +distruggono distruggere ver +distrusse distruggere ver +distrussero distruggere ver +distrutta distruggere ver +distrutte distruggere ver +distrutti distruggere ver +distruttibile distruttibile adj +distruttibili distruttibile adj +distruttiva distruttivo adj +distruttive distruttivo adj +distruttivi distruttivo adj +distruttivo distruttivo adj +distrutto distruggere ver +distruttore distruttore nom +distruttori distruttore nom +distruttrice distruttore adj +distruttrici distruttore adj +distruzione distruzione nom +distruzioni distruzione nom +disturba disturbare ver +disturbami disturbare ver +disturbando disturbare ver +disturbandola disturbare ver +disturbandoli disturbare ver +disturbandolo disturbare ver +disturbandone disturbare ver +disturbano disturbare ver +disturbante disturbare ver +disturbanti disturbare ver +disturbarci disturbare ver +disturbare disturbare ver +disturbargli disturbare ver +disturbarla disturbare ver +disturbarle disturbare ver +disturbarli disturbare ver +disturbarlo disturbare ver +disturbarmi disturbare ver +disturbarne disturbare ver +disturbarono disturbare ver +disturbarsi disturbare ver +disturbarti disturbare ver +disturbarvi disturbare ver +disturbasse disturbare ver +disturbassero disturbare ver +disturbata disturbare ver +disturbate disturbare ver +disturbati disturbare ver +disturbato disturbare ver +disturbatore disturbatore nom +disturbatori disturbatore nom +disturbatrice disturbatore nom +disturbatrici disturbatore nom +disturbava disturbare ver +disturbavano disturbare ver +disturberebbe disturbare ver +disturberebbero disturbare ver +disturberà disturbare ver +disturberò disturbare ver +disturbi disturbo nom +disturbino disturbare ver +disturbo disturbo nom +disturbò disturbare ver +disubbidendo disubbidire ver +disubbidiente disubbidiente adj +disubbidienti disubbidiente adj +disubbidienza disubbidienza nom +disubbidienze disubbidienza nom +disubbidirai disubbidire ver +disubbidire disubbidire ver +disubbidirgli disubbidire ver +disubbidirle disubbidire ver +disubbidirono disubbidire ver +disubbidirà disubbidire ver +disubbidisce disubbidire ver +disubbidisciti disubbidire ver +disubbidiscono disubbidire ver +disubbidito disubbidire ver +disubbidì disubbidire ver +disuguaglianza disuguaglianza nom +disuguaglianze disuguaglianza nom +disuguale disuguale adj +disuguali disuguale adj +disumana disumano adj +disumane disumano adj +disumani disumano adj +disumanità disumanità nom +disumano disumano adj +disunione disunione nom +disunire disunire ver +disunirono disunire ver +disunirsi disunire ver +disunirà disunire ver +disunisce disunire ver +disunita disunito adj +disunite disunito adj +disuniti disunire ver +disunito disunire ver +disunità disunità nom +disunì disunire ver +disuria disuria nom +disusata disusare ver +disusate disusato adj +disusato disusato adj +disuso disuso nom +disutile disutile adj +disutili disutile adj +disutilità disutilità nom +dita dito nom +ditale ditale nom +ditali ditale nom +ditalini ditalino nom +ditalino ditalino nom +ditata ditata nom +ditate ditata nom +dite dire ver_sup +ditecelo dire ver +diteci dire ver +diteggiato diteggiare ver +diteggiatura diteggiatura nom +diteggiature diteggiatura nom +ditegli dire ver +diteglielo dire ver +ditela dire ver +ditele dire ver +ditelo dire ver +ditemelo dire ver +ditemi dire ver +ditene dire ver +diti dito nom +ditirambi ditirambo nom +ditirambo ditirambo nom +ditisco ditisco nom +dito dito nom +ditola ditola nom +ditta ditta nom +dittafoni dittafono nom +dittafono dittafono nom +dittamo dittamo nom +dittatore dittatore nom +dittatori dittatore nom +dittatoria dittatorio adj +dittatoriale dittatoriale adj +dittatoriali dittatoriale adj +dittatorio dittatorio adj +dittatrice dittatore nom +dittatura dittatura nom +dittature dittatura nom +ditte ditta nom +ditteri ditteri nom +dittero dittero adj +ditti dire ver +dittici dittico nom +dittico dittico nom +dittonga dittongare ver +dittongali dittongare ver +dittongano dittongare ver +dittongarono dittongare ver +dittongata dittongare ver +dittongate dittongare ver +dittongato dittongare ver +dittongazione dittongazione nom +dittongazioni dittongazione nom +dittonghi dittongo nom +dittongo dittongo nom +diuresi diuresi nom +diuretica diuretico adj +diuretiche diuretico adj +diuretici diuretico adj +diuretico diuretico adj +diurna diurno adj +diurne diurno adj +diurni diurno adj +diurnista diurnista nom +diurno diurno adj +diuturna diuturno adj +diuturni diuturno adj +diuturno diuturno adj +diva divo adj +divaga divagare ver +divagando divagare ver +divagano divagare ver +divagante divagare ver +divaganti divagare ver +divagare divagare ver +divagato divagare ver +divagavano divagare ver +divagazione divagazione nom +divagazioni divagazione nom +divaghi divagare ver +divaghiamo divagare ver +divaghino divagare ver +divago divagare ver +divampa divampare ver +divampando divampare ver +divampano divampare ver +divampante divampare ver +divampanti divampare ver +divampare divampare ver +divamparono divampare ver +divamparsi divampare ver +divampasse divampare ver +divampata divampare ver +divampate divampare ver +divampati divampare ver +divampato divampare ver +divampava divampare ver +divampavano divampare ver +divampi divampare ver +divampo divampare ver +divampò divampare ver +divani divano nom +divano divano nom +divari divario nom +divarica divaricare ver +divaricando divaricare ver +divaricandosi divaricare ver +divaricano divaricare ver +divaricare divaricare ver +divaricarsi divaricare ver +divaricata divaricare ver +divaricate divaricare ver +divaricati divaricare ver +divaricato divaricare ver +divaricatore divaricatore nom +divaricatori divaricatore nom +divaricazione divaricazione nom +divaricò divaricare ver +divario divario nom +dive divo adj +divedere divedere ver +divella divellere ver +divelle divellere ver +divello divellere ver +divelse divellere ver +divelsero divellere ver +divelta divellere ver +divelte divellere ver +divelti divellere ver +divelto divellere ver +divenendo divenire ver +divenendone divenire ver +divenendovi divenire ver +divenga divenire ver +divengano divenire ver +divengo divenire ver +divengono divenire ver +diveniamo divenire ver +divenimmo divenire ver +divenir divenire ver +divenire divenire ver +divenirlo divenire ver +divenirne divenire ver +divenisse divenire ver +divenissero divenire ver +divenissi divenire ver +divenisti divenire ver +diveniva divenire ver +divenivano divenire ver +divenne divenire ver +divennero divenire ver +divenni divenire ver +diventa diventare ver +diventai diventare ver +diventammo diventare ver +diventando diventare ver +diventandolo diventare ver +diventandone diventare ver +diventandovi diventare ver +diventano diventare ver +diventar diventare ver +diventarci diventare ver +diventare diventare ver +diventargli diventare ver +diventarle diventare ver +diventarlo diventare ver +diventarmi diventare ver +diventarne diventare ver +diventarono diventare ver +diventarvi diventare ver +diventasse diventare ver +diventassero diventare ver +diventassi diventare ver +diventassimo diventare ver +diventaste diventare ver +diventasti diventare ver +diventata diventare ver +diventate diventare ver +diventati diventare ver +diventato diventare ver +diventava diventare ver +diventavano diventare ver +diventavi diventare ver +diventavo diventare ver +diventerai diventare ver +diventeranno diventare ver +diventerebbe diventare ver +diventerebbero diventare ver +diventerei diventare ver +diventeremmo diventare ver +diventeremo diventare ver +diventereste diventare ver +diventeresti diventare ver +diventerete diventare ver +diventerà diventare ver +diventerò diventare ver +diventi diventare ver +diventiamo diventare ver +diventiate diventare ver +diventino diventare ver +divento diventare ver +diventò diventare ver +divenuta divenire ver +divenute divenire ver +divenuti divenire ver +divenuto divenire ver +diverbi diverbio nom +diverbio diverbio nom +diverga divergere ver +divergano divergere ver +diverge divergere ver +divergendo divergere ver +divergente divergente adj +divergenti divergente adj +divergenza divergenza nom +divergenze divergenza nom +divergeranno divergere ver +divergere divergere ver +divergerla divergere ver +divergerà divergere ver +divergessero divergere ver +divergeva divergere ver +divergevano divergere ver +divergo divergere ver +divergono divergere ver +diverrai divenire ver +diverranno divenire ver +diverrebbe divenire ver +diverrebbero divenire ver +diverrei divenire ver +diverremmo divenire ver +diverremo divenire ver +diverrete divenire ver +diverrà divenire ver +diverrò divenire ver +diversa diverso adj +diversamente diversamente adv_sup +diverse diverso adj +diversero divergere ver +diversi diverso adj +diversifica diversificare ver +diversificaci diversificare ver +diversificando diversificare ver +diversificandola diversificare ver +diversificandone diversificare ver +diversificandosi diversificare ver +diversificano diversificare ver +diversificante diversificare ver +diversificare diversificare ver +diversificarla diversificare ver +diversificarlo diversificare ver +diversificarne diversificare ver +diversificarono diversificare ver +diversificarsi diversificare ver +diversificasse diversificare ver +diversificata diversificare ver +diversificate diversificare ver +diversificati diversificare ver +diversificato diversificare ver +diversificavano diversificare ver +diversificazione diversificazione nom +diversificazioni diversificazione nom +diversificheranno diversificare ver +diversifichino diversificare ver +diversificò diversificare ver +diversione diversione nom +diversioni diversione nom +diversità diversità nom +diversiva diversivo adj +diversive diversivo adj +diversivi diversivo nom +diversivo diversivo nom +diverso diverso adj +diverta divertire ver +divertano divertire ver +diverte divertire ver +divertendo divertire ver +divertendoci divertire ver +divertendomi divertire ver +divertendosi divertire ver +divertendoti divertire ver +divertente divertente adj +divertenti divertente adj +diverti divertire ver +divertiamo divertire ver +divertiamoci divertire ver +divertici divertire ver +diverticoli diverticolo nom +diverticolo diverticolo nom +divertii divertire ver +divertimenti divertimento nom +divertimento divertimento nom +divertimmo divertire ver +divertir divertire ver +divertirai divertire ver +divertiranno divertire ver +divertirci divertire ver +divertire divertire ver +divertirebbe divertire ver +divertirei divertire ver +divertiremo divertire ver +divertiresti divertire ver +divertirete divertire ver +divertirla divertire ver +divertirli divertire ver +divertirlo divertire ver +divertirmi divertire ver +divertirono divertire ver +divertirsi divertire ver +divertirti divertire ver +divertirvi divertire ver +divertirà divertire ver +divertirò divertire ver +divertisi divertire ver +divertisse divertire ver +divertissero divertire ver +divertita divertire ver +divertite divertire ver +divertitevi divertire ver +divertiti divertire ver +divertito divertire ver +divertiva divertire ver +divertivamo divertire ver +divertivano divertire ver +divertivo divertire ver +diverto divertire ver +divertono divertire ver +divertì divertire ver +divezza divezzare ver +divezzamento divezzamento nom +divi divo adj +divida dividere ver +dividano dividere ver +divide dividere ver +dividemmo dividere ver +dividendi dividendo nom +dividendo dividere ver +dividendoci dividere ver +dividendola dividere ver +dividendole dividere ver +dividendoli dividere ver +dividendolo dividere ver +dividendomi dividere ver +dividendone dividere ver +dividendosi dividere ver +dividente dividere ver +dividenti dividere ver +divider dividere ver +divideranno dividere ver +dividercele dividere ver +dividerci dividere ver +dividere dividere ver +dividerebbe dividere ver +dividerebbero dividere ver +dividerei dividere ver +divideremo dividere ver +dividerla dividere ver +dividerle dividere ver +dividerli dividere ver +dividerlo dividere ver +dividermi dividere ver +dividerne dividere ver +dividerseli dividere ver +dividerselo dividere ver +dividersi dividere ver +dividervi dividere ver +dividerà dividere ver +dividerò dividere ver +dividesse dividere ver +dividessero dividere ver +dividessi dividere ver +dividessimo dividere ver +divideste dividere ver +dividesti dividere ver +dividete dividere ver +divideva dividere ver +dividevamo dividere ver +dividevano dividere ver +dividi dividere ver +dividiamo dividere ver +dividiamoci dividere ver +dividiamolo dividere ver +dividila dividere ver +dividilo dividere ver +dividiti dividere ver +divido dividere ver +dividono dividere ver +diviene divenire ver +divieni divenire ver +divieti divieto nom +divieto divieto nom +divina divino adj +divinali divinare ver +divinamente divinamente adv +divinare divinare ver +divinato divinare ver +divinatore divinatore nom +divinatori divinatore|divinatorio adj +divinatoria divinatorio adj +divinatorie divinatorio adj +divinatorio divinatorio adj +divinatrice divinatore adj +divinava divinare ver +divinazione divinazione nom +divinazioni divinazione nom +divincola divincolare ver +divincolamenti divincolamento nom +divincolandosi divincolare ver +divincolano divincolare ver +divincolare divincolare ver +divincolarsi divincolare ver +divincolato divincolare ver +divincolò divincolare ver +divine divino adj +divini divino adj +divinità divinità nom +divinizza divinizzare ver +divinizzando divinizzare ver +divinizzandola divinizzare ver +divinizzandoli divinizzare ver +divinizzano divinizzare ver +divinizzare divinizzare ver +divinizzarono divinizzare ver +divinizzata divinizzare ver +divinizzate divinizzare ver +divinizzati divinizzare ver +divinizzato divinizzare ver +divinizzavano divinizzare ver +divinizzazione divinizzazione nom +divinizzazioni divinizzazione nom +divinizzò divinizzare ver +divino divino adj +divinò divinare ver +divisa dividere ver +divisamenti divisamento nom +divisamento divisamento nom +divisare divisare ver +divisasi divisare ver +divisata divisare ver +divisati divisare ver +divisato divisare ver +divise divisa nom +divisero dividere ver +divisi diviso adj +divisibile divisibile adj +divisibili divisibile adj +divisibilità divisibilità nom +divisionale divisionale adj +divisionali divisionale adj +divisionaria divisionario adj +divisionarie divisionario adj +divisionario divisionario adj +divisione divisione nom +divisioni divisione nom +divisionismo divisionismo nom +divisionista divisionista adj +divisioniste divisionista adj +divisionisti divisionista adj +divisionistiche divisionistico adj +divismo divismo nom +diviso dividere ver +divisore divisore nom +divisori divisore nom +divisoria divisorio adj +divisorie divisorio adj +divisorio divisorio adj +divista divedere ver +divistica divistico adj +divistici divistico adj +divistico divistico adj +divisto divedere ver +divisò divisare ver +divo divo adj +divora divorare ver +divorando divorare ver +divorandogli divorare ver +divorandola divorare ver +divorandole divorare ver +divorandoli divorare ver +divorandolo divorare ver +divorandone divorare ver +divorano divorare ver +divorante divorare ver +divorar divorare ver +divorare divorare ver +divorargli divorare ver +divorarla divorare ver +divorarle divorare ver +divorarli divorare ver +divorarlo divorare ver +divorarne divorare ver +divorarono divorare ver +divorarselo divorare ver +divorarsi divorare ver +divorasse divorare ver +divorassero divorare ver +divorata divorare ver +divorate divorare ver +divorati divorare ver +divorato divorare ver +divoratore divoratore nom +divoratori divoratore nom +divoratrice divoratore nom +divoratrici divoratore adj +divorava divorare ver +divoravano divorare ver +divoreranno divorare ver +divorerebbe divorare ver +divorerebbero divorare ver +divorerà divorare ver +divorerò divorare ver +divori divorare ver +divoriamo divorare ver +divorino divorare ver +divoro divorare ver +divorzi divorzio nom +divorzia divorziare ver +divorziamo divorziare ver +divorziando divorziare ver +divorziandone divorziare ver +divorziano divorziare ver +divorziare divorziare ver +divorziarono divorziare ver +divorziasse divorziare ver +divorziassero divorziare ver +divorziata divorziare ver +divorziate divorziare ver +divorziati divorziare ver +divorziato divorziare ver +divorziava divorziare ver +divorzieranno divorziare ver +divorzieremo divorziare ver +divorzierà divorziare ver +divorzino divorziare ver +divorzio divorzio nom +divorzista divorzista adj +divorzisti divorzista adj +divorziò divorziare ver +divorò divorare ver +divota divoto adj +divote divoto adj +divoti divoto adj +divoto divoto adj +divulga divulgare ver +divulgaci divulgare ver +divulgando divulgare ver +divulgandola divulgare ver +divulgandoli divulgare ver +divulgandolo divulgare ver +divulgandone divulgare ver +divulgandosi divulgare ver +divulgano divulgare ver +divulgar divulgare ver +divulgare divulgare ver +divulgarla divulgare ver +divulgarle divulgare ver +divulgarli divulgare ver +divulgarlo divulgare ver +divulgarne divulgare ver +divulgarono divulgare ver +divulgarsi divulgare ver +divulgasse divulgare ver +divulgassero divulgare ver +divulgata divulgare ver +divulgate divulgare ver +divulgati divulgare ver +divulgativa divulgativo adj +divulgative divulgativo adj +divulgativi divulgativo adj +divulgativo divulgativo adj +divulgato divulgare ver +divulgatore divulgatore nom +divulgatori divulgatore nom +divulgatrice divulgatore nom +divulgatrici divulgatore nom +divulgava divulgare ver +divulgavano divulgare ver +divulgazione divulgazione nom +divulgazioni divulgazione nom +divulgheranno divulgare ver +divulgherà divulgare ver +divulghi divulgare ver +divulghiamo divulgare ver +divulgo divulgare ver +divulgò divulgare ver +dixieland dixieland nom +dizionari dizionario nom +dizionario dizionario nom +dizione dizione nom +dizioni dizione nom +dna dna nom +do do nom_sup +dobbiamo dovere ver_sup +dobbiate dovere ver +dobermann dobermann nom +dobla dobla nom +doble dobla nom +doblone doblone nom +dobloni doblone nom +docce doccia nom +doccia doccia nom +doccione doccione nom +doccioni doccione nom +docente docente nom +docenti docente nom +docenza docenza nom +docenze docenza nom +docile docile adj +docili docile adj +docilità docilità nom +docimologia docimologia nom +docimologie docimologia nom +dock dock nom +documenta documentare ver +documentabile documentabile adj +documentabili documentabile adj +documentaci documentare ver +documentale documentale adj +documentali documentale adj +documentalo documentare ver +documentando documentare ver +documentandoci documentare ver +documentandola documentare ver +documentandole documentare ver +documentandoli documentare ver +documentandolo documentare ver +documentandomi documentare ver +documentandone documentare ver +documentandosi documentare ver +documentano documentare ver +documentante documentare ver +documentanti documentare ver +documentar documentare ver +documentarci documentare ver +documentare documentare ver +documentari documentario adj +documentaria documentario adj +documentarie documentario adj +documentario documentario adj +documentarista documentarista nom +documentaristi documentarista nom +documentarla documentare ver +documentarle documentare ver +documentarli documentare ver +documentarlo documentare ver +documentarmi documentare ver +documentarne documentare ver +documentarono documentare ver +documentarsi documentare ver +documentarti documentare ver +documentarvi documentare ver +documentasse documentare ver +documentassero documentare ver +documentata documentare ver +documentate documentare ver +documentatevi documentare ver +documentati documentare ver +documentato documentare ver +documentatore documentatore nom +documentatori documentatore nom +documentava documentare ver +documentavano documentare ver +documentazione documentazione nom +documentazioni documentazione nom +documenterebbe documentare ver +documenterebbero documentare ver +documenterei documentare ver +documenterà documentare ver +documenterò documentare ver +documenti documento nom +documentiamo documentare ver +documentino documentare ver +documento documento nom +documentò documentare ver +dodecaedri dodecaedro nom +dodecaedro dodecaedro nom +dodecafonia dodecafonia nom +dodecafonica dodecafonico adj +dodecafoniche dodecafonico adj +dodecafonici dodecafonico adj +dodecafonico dodecafonico adj +dodecafonie dodecafonia nom +dodecagoni dodecagono nom +dodecagono dodecagono nom +dodecasillabi dodecasillabo nom +dodecasillabo dodecasillabo nom +dodicenne dodicenne adj +dodicenni dodicenne nom +dodicesima dodicesimo adj +dodicesime dodicesimo adj +dodicesimi dodicesimo adj +dodicesimo dodicesimo adj +dodici dodici adj +doga doga nom +dogale dogale adj +dogali dogale adj +dogana dogana nom +doganale doganale adj +doganali doganale adj +dogane dogana nom +doganiere doganiere nom +doganieri doganiere nom +dogaressa dogaressa nom +dogaresse dogaressa nom +dogati dogato nom +dogato dogato nom +doge doge nom +doghe doga nom +dogi doge nom +dogli doglio nom +doglia doglia nom +doglianze doglianza nom +doglie doglia nom +doglio doglio nom +dogma dogma nom +dogmatica dogmatico adj +dogmatiche dogmatico adj +dogmatici dogmatico adj +dogmatico dogmatico adj +dogmatismi dogmatismo nom +dogmatismo dogmatismo nom +dogmatizzata dogmatizzare ver +dogmi dogma nom +dolce dolce adj +dolcetti dolcetto nom +dolcetto dolcetto nom +dolcezza dolcezza nom +dolcezze dolcezza nom +dolci dolce adj +dolciari dolciario adj +dolciaria dolciario adj +dolciarie dolciario adj +dolciario dolciario adj +dolciastra dolciastro adj +dolciastre dolciastro adj +dolciastri dolciastro adj +dolciastro dolciastro adj +dolcificante dolcificante nom +dolcificanti dolcificante adj +dolcificare dolcificare ver +dolcificata dolcificare ver +dolcificati dolcificare ver +dolcificato dolcificare ver +dolcificazione dolcificazione nom +dolciume dolciume nom +dolciumi dolciume nom +dolendo dolere ver +dolendosene dolere ver +dolendosi dolere ver +dolente dolente adj +dolenti dolente adj +doler dolere ver +dolerci dolere ver +dolere dolere ver +dolergli dolere ver +dolermi dolere ver +dolersene dolere ver +dolersi dolere ver +dolesse dolere ver +doleva dolere ver +dolevano dolere ver +dolga dolere ver +dolgano dolere ver +dolgono dolere ver +doli dolio|dolo nom +dolico dolico nom +dolicocefala dolicocefalo adj +dolicocefali dolicocefalo adj +dolicocefalia dolicocefalia nom +dolicocefalo dolicocefalo adj +dolina dolina nom +doline dolina nom +dolio dolio nom +dollari dollaro nom +dollaro dollaro nom +dolmen dolmen nom +dolo dolo nom +dolomia dolomia nom +dolomie dolomia nom +dolomite dolomite nom +dolomiti dolomite nom +dolomitica dolomitico adj +dolomitiche dolomitico adj +dolomitici dolomitico adj +dolomitico dolomitico adj +dolomitizzazione dolomitizzazione nom +dolora dolorare ver +dolorante dolorante adj +doloranti dolorante adj +dolorata dolorare ver +dolore dolore nom +dolori dolore nom +dolorifica dolorifico adj +dolorifiche dolorifico adj +dolorifici dolorifico adj +dolorifico dolorifico adj +dolorino dolorare ver +doloro dolorare ver +dolorosa doloroso adj +dolorose doloroso adj +dolorosi doloroso adj +dolorosità dolorosità nom +doloroso doloroso adj +dolosa doloso adj +dolose doloso adj +dolosi doloso adj +dolosità dolosità nom +doloso doloso adj +dolse dolere ver +dolsero dolere ver +doma domo adj +domabili domabile adj +domaci domare ver +domai domare ver +domanda domanda nom +domandai domandare ver +domandalo domandare ver +domandammo domandare ver +domandando domandare ver +domandandoci domandare ver +domandandogli domandare ver +domandandole domandare ver +domandandomi domandare ver +domandandone domandare ver +domandandosi domandare ver +domandano domandare ver +domandar domandare ver +domandarci domandare ver +domandare domandare ver +domandargli domandare ver +domandarle domandare ver +domandarlo domandare ver +domandarmi domandare ver +domandarne domandare ver +domandarono domandare ver +domandarselo domandare ver +domandarsi domandare ver +domandarti domandare ver +domandarvi domandare ver +domandasse domandare ver +domandata domandare ver +domandate domandare ver +domandatelo domandare ver +domandatevi domandare ver +domandati domandare ver +domandato domandare ver +domandava domandare ver +domandavano domandare ver +domandavo domandare ver +domande domanda nom +domanderanno domandare ver +domanderei domandare ver +domandereste domandare ver +domanderete domandare ver +domanderà domandare ver +domanderò domandare ver +domandi domandare ver +domandiamo domandare ver +domandiamoci domandare ver +domandino domandare ver +domando domandare ver +domandolo domare ver +domandone domare ver +domandò domandare ver +domane domare ver +domani domani adv_sup +domano domare ver +domante domare ver +domanti domare ver +domar domare ver +domare domare ver +domarla domare ver +domarle domare ver +domarli domare ver +domarlo domare ver +domarne domare ver +domarono domare ver +domata domare ver +domate domare ver +domati domare ver +domato domare ver +domatore domatore nom +domatori domatore nom +domatrice domatore nom +domattina domattina adv +domava domare ver +dome domo adj +domenica domenica nom +domenicale domenicale adj +domenicali domenicale adj +domenicana domenicano adj +domenicane domenicano adj +domenicani domenicano adj +domenicano domenicano adj +domeniche domenica nom +domeranno domare ver +domerà domare ver +domestica domestico adj +domestiche domestico adj +domestichezza domestichezza nom +domestici domestico adj +domesticità domesticità nom +domestico domestico adj +domi domo adj +domiamo domare ver +domicili domicilio nom +domicilia domiciliare ver +domiciliar domiciliare ver +domiciliare domiciliare adj +domiciliari domiciliare adj +domiciliata domiciliare ver +domiciliate domiciliato adj +domiciliati domiciliato adj +domiciliato domiciliare ver +domiciliava domiciliare ver +domicilio domicilio nom +domiciliò domiciliare ver +domina dominare ver +dominabile dominabile adj +dominaci dominare ver +dominando dominare ver +dominandola dominare ver +dominandole dominare ver +dominandoli dominare ver +dominandolo dominare ver +dominandone dominare ver +dominandosi dominare ver +dominano dominare ver +dominanta dominante nom +dominante dominante adj +dominanti dominante adj +dominanza dominanza nom +dominanze dominanza nom +dominar dominare ver +dominarci dominare ver +dominare dominare ver +dominarla dominare ver +dominarle dominare ver +dominarli dominare ver +dominarlo dominare ver +dominarmi dominare ver +dominarne dominare ver +dominarono dominare ver +dominarsi dominare ver +dominasse dominare ver +dominassero dominare ver +dominata dominare ver +dominate dominare ver +dominati dominare ver +dominato dominare ver +dominatore dominatore nom +dominatori dominatore nom +dominatrice dominatore nom +dominatrici dominatore nom +dominava dominare ver +dominavano dominare ver +dominazione dominazione nom +dominazioni dominazione nom +domineddio domineddio nom +dominerai dominare ver +domineranno dominare ver +dominerebbe dominare ver +dominerà dominare ver +domini dominio nom +dominicale dominicale adj +dominicali dominicale adj +dominicana dominicano adj +dominicane dominicano adj +dominicani dominicano adj +dominicano dominicano adj +dominino dominare ver +dominio dominio nom +dominion dominion nom +domino domino nom +dominò dominare ver +domma domma nom +dommi domma nom +domo domo adj +domò domare ver +don don nom +dona donare ver +donaci donare ver +donai donare ver +donalo donare ver +donami donare ver +donando donare ver +donandoci donare ver +donandogli donare ver +donandogliene donare ver +donandola donare ver +donandole donare ver +donandoli donare ver +donandolo donare ver +donandone donare ver +donandosi donare ver +donano donare ver +donante donare ver +donanti donare ver +donar donare ver +donarci donare ver +donare donare ver +donargli donare ver +donargliela donare ver +donarglieli donare ver +donarglielo donare ver +donarla donare ver +donarle donare ver +donarli donare ver +donarlo donare ver +donarmi donare ver +donarne donare ver +donarono donare ver +donarsi donare ver +donarti donare ver +donarvi donare ver +donasse donare ver +donassero donare ver +donassi donare ver +donasti donare ver +donata donare ver +donatario donatario nom +donate donare ver +donateci donare ver +donategli donare ver +donatela donare ver +donatele donare ver +donatelo donare ver +donati donare ver +donativa donativo adj +donativi donativo adj +donativo donativo adj +donato donare ver +donatore donatore nom +donatori donatore nom +donatrice donatore nom +donatrici donatore nom +donava donare ver +donavano donare ver +donazione donazione nom +donazioni donazione nom +donchisciotte donchisciotte nom +donchisciottesca donchisciottesco adj +donchisciottesco donchisciottesco adj +donde donde adv +dondola dondolare ver +dondolamenti dondolamento nom +dondolamento dondolamento nom +dondolando dondolare ver +dondolandosi dondolare ver +dondolano dondolare ver +dondolante dondolare ver +dondolanti dondolare ver +dondolare dondolare ver +dondolarsi dondolare ver +dondolato dondolare ver +dondolava dondolare ver +dondolavano dondolare ver +dondolerà dondolare ver +dondoli dondolo nom +dondolii dondolio nom +dondolino dondolare ver +dondolio dondolio nom +dondolo dondolo nom +dondolò dondolare ver +doneranno donare ver +donerebbe donare ver +donerebbero donare ver +donerei donare ver +donerà donare ver +donerò donare ver +dong dong int +dongiovanni dongiovanni nom +doni dono nom +doniamo donare ver +donino donare ver +donna donna nom +donnacce donnaccia nom +donnaccia donnaccia nom +donnaioli donnaiolo nom +donnaiolo donnaiolo nom +donne donna nom +donnesca donnesco adj +donneschi donnesco adj +donnesco donnesco adj +donni donno nom +donnina donnina nom +donnine donnina nom +donno donno nom +donnola donnola nom +donnole donnola nom +dono dono nom +donzella donzella nom +donzelle donzella nom +donzelletta donzelletta nom +donzelli donzello nom +donzello donzello nom +donò donare ver +doping doping nom +dopo dopo pre +dopobarba dopobarba nom +dopochè dopochè con +dopodichè dopodichè adv +dopodiché dopodiché adv +dopodomani dopodomani adv +dopoguerra dopoguerra nom +dopolavorista dopolavorista nom +dopolavoristica dopolavoristico adj +dopolavoristiche dopolavoristico adj +dopolavoristici dopolavoristico adj +dopolavoristico dopolavoristico adj +dopolavoro dopolavoro nom +dopopranzo dopopranzo nom +doposcuola doposcuola nom +dopotutto dopotutto adv +doppi doppio adj +doppia doppio adj_sup +doppiaggi doppiaggio nom +doppiaggio doppiaggio nom +doppiamente doppiamente adv +doppiando doppiare ver +doppiandolo doppiare ver +doppiano doppiare ver +doppiar doppiare ver +doppiare doppiare ver +doppiarla doppiare ver +doppiarlo doppiare ver +doppiarono doppiare ver +doppiarsi doppiare ver +doppiasse doppiare ver +doppiata doppiare ver +doppiate doppiare ver +doppiati doppiare ver +doppiato doppiare ver +doppiatore doppiatore nom +doppiatori doppiatore nom +doppiatrice doppiatore nom +doppiatrici doppiatore nom +doppiatura doppiatura nom +doppiava doppiare ver +doppiavano doppiare ver +doppie doppio adj +doppieranno doppiare ver +doppierebbe doppiare ver +doppieri doppiere nom +doppierà doppiare ver +doppietta doppietta nom +doppiette doppietta nom +doppiezza doppiezza nom +doppiezze doppiezza nom +doppini doppino nom +doppino doppino nom +doppio doppio adj_sup +doppiofondo doppiofondo nom +doppiogiochista doppiogiochista nom +doppiogiochiste doppiogiochista nom +doppiogiochisti doppiogiochista nom +doppione doppione nom +doppioni doppione nom +doppiopetto doppiopetto nom +doppista doppista nom +doppisti doppista nom +doppiò doppiare ver +dora dorare ver +dorai dorare ver +dorami dorare ver +dorando dorare ver +dorante dorare ver +dorare dorare ver +dorata dorato adj +dorate dorato adj +dorati dorato adj +dorato dorato adj +doratore doratore nom +doratori doratore nom +doratura doratura nom +dorature doratura nom +dori dorare ver +dorica dorico adj +doriche dorico adj +dorici dorico adj +dorico dorico adj +dorifora dorifora nom +dorino dorare ver +dorma dormire ver +dormano dormire ver +dorme dormire ver +dormendo dormire ver +dormente dormente adj +dormenti dormente adj +dormeuse dormeuse nom +dormi dormire ver +dormiamo dormire ver +dormiate dormire ver +dormici dormire ver +dormiente dormiente adj +dormienti dormiente adj +dormiglione dormiglione nom +dormiglioni dormiglione nom +dormii dormire ver +dormine dormire ver +dormir dormire ver +dormirai dormire ver +dormiranno dormire ver +dormirci dormire ver +dormire dormire ver +dormirebbe dormire ver +dormirebbero dormire ver +dormirei dormire ver +dormiremmo dormire ver +dormiremo dormire ver +dormirete dormire ver +dormirgli dormire ver +dormirle dormire ver +dormirono dormire ver +dormirvi dormire ver +dormirà dormire ver +dormirò dormire ver +dormisse dormire ver +dormissero dormire ver +dormita dormita nom +dormite dormire ver +dormiti dormire ver +dormito dormire ver +dormitori dormitorio nom +dormitorio dormitorio nom +dormiva dormire ver +dormivamo dormire ver +dormivano dormire ver +dormivate dormire ver +dormiveglia dormiveglia nom +dormivi dormire ver +dormivo dormire ver +dormo dormire ver +dormono dormire ver +dormì dormire ver +doro dorare ver +dorrebbe dolere ver +dorsale dorsale adj +dorsali dorsale adj +dorsi dorso nom +dorsista dorsista nom +dorsisti dorsista nom +dorso dorso nom +dorsoventrale dorsoventrale adj +dorsoventrali dorsoventrale adj +dorò dorare ver +dosa dosare ver +dosaggi dosaggio nom +dosaggio dosaggio nom +dosai dosare ver +dosando dosare ver +dosandone dosare ver +dosano dosare ver +dosar dosare ver +dosare dosare ver +dosarla dosare ver +dosarli dosare ver +dosarne dosare ver +dosata dosare ver +dosate dosare ver +dosati dosare ver +dosato dosare ver +dosatore dosatore nom +dosatori dosatore nom +dosatrice dosatore nom +dosatrici dosatore nom +dosatura dosatura nom +dosature dosatura nom +dosavano dosare ver +dose dose nom +dosi dose nom +dosimetri dosimetro nom +dosimetria dosimetria nom +dosimetro dosimetro nom +doso dosare ver +dossale dossale adj +dossali dossale adj +dossi dosso nom +dossier dossier nom +dosso dosso nom +dosò dosare ver +dota dotare ver +dotai dotare ver +dotale dotale adj +dotali dotale adj +dotando dotare ver +dotandola dotare ver +dotandole dotare ver +dotandoli dotare ver +dotandolo dotare ver +dotandone dotare ver +dotandosi dotare ver +dotano dotare ver +dotar dotare ver +dotarci dotare ver +dotare dotare ver +dotarla dotare ver +dotarle dotare ver +dotarli dotare ver +dotarlo dotare ver +dotarmi dotare ver +dotarne dotare ver +dotarono dotare ver +dotarsene dotare ver +dotarsi dotare ver +dotarti dotare ver +dotasse dotare ver +dotassero dotare ver +dotata dotare ver +dotate dotare ver +dotati dotare ver +dotato dotare ver +dotava dotare ver +dotavano dotare ver +dotazione dotazione nom +dotazioni dotazione nom +dote dote nom +doteranno dotare ver +doterà dotare ver +doterò dotare ver +doti dote nom +dotiamo dotare ver +dotino dotare ver +doto dotare ver +dotta dotto adj +dottamente dottamente adv +dotte dotto adj +dotti dotto adj +dotto dotto adj +dottor dottore nom +dottorale dottorale adj +dottorali dottorale adj +dottorati dottorato nom +dottorato dottorato nom +dottore dottore nom +dottoressa dottore nom +dottoresse dottore nom +dottori dottore nom +dottrina dottrina nom +dottrinale dottrinale adj +dottrinali dottrinale adj +dottrinari dottrinario adj +dottrinaria dottrinario adj +dottrinarie dottrinario adj +dottrinario dottrinario adj +dottrine dottrina nom +dotò dotare ver +dove dove pro +dovemmo dovere ver +dovendo dovere ver +dovendoci dovere ver +dovendogli dovere ver +dovendola dovere ver +dovendole dovere ver +dovendoli dovere ver +dovendolo dovere ver +dovendomi dovere ver +dovendone dovere ver +dovendosene dovere ver +dovendosi dovere ver +dovendoti dovere ver +dovendovi dovere ver +dover dovere ver_sup +dovercelo dovere ver +dovercene dovere ver +doverci dovere ver +dovere dovere nom_sup +dovergli dovere ver +doverglielo dovere ver +doveri dovere nom +doverla dovere ver +doverle dovere ver +doverli dovere ver +doverlo dovere ver +dovermele dovere ver +dovermeli dovere ver +dovermene dovere ver +dovermi dovere ver +doverne dovere ver +doverosa doveroso adj +doverose doveroso adj +doverosi doveroso adj +doveroso doveroso adj +doversela dovere ver +doverseli dovere ver +doverselo dovere ver +doversene dovere ver +doversi dovere ver +dovertelo dovere ver +doverti dovere ver +dovervene dovere ver +dovervi dovere ver +dovesse dovere ver +dovessero dovere ver +dovessi dovere ver_sup +dovessimo dovere ver +doveste dovere ver +dovete dovere ver_sup +dovette dovere ver +dovettero dovere ver +dovetti dovere ver +doveva dovere ver_sup +dovevamo dovere ver +dovevano dovere ver_sup +dovevate dovere ver +dovevi dovere ver +dovevo dovere ver +dovizia dovizia nom +dovizie dovizia nom +doviziosamente doviziosamente adv +dovra dovra sw +dovrai dovere ver +dovranno dovere ver_sup +dovrebbe dovere ver_sup +dovrebbero dovere ver_sup +dovrei dovere ver +dovremmo dovere ver_sup +dovremo dovere ver_sup +dovreste dovere ver +dovresti dovere ver +dovrete dovere ver +dovrà dovere ver_sup +dovrò dovere ver +dovunque dovunque adv_sup +dovuta dovere ver_sup +dovutamente dovutamente adv +dovute dovere ver +dovuti dovere ver_sup +dovuto dovere ver_sup +dozzina dozzina nom +dozzinale dozzinale adj +dozzinali dozzinale adj +dozzine dozzina nom +dracena dracena nom +dracma dracma nom +dracme dracma nom +draconiana draconiano adj +draconiane draconiano adj +draconiani draconiano adj +draconiano draconiano adj +draga draga nom +dragaggi dragaggio nom +dragaggio dragaggio nom +dragali dragare ver +dragamine dragamine nom +dragando dragare ver +dragane dragare ver +dragano dragare ver +dragante dragante adj +dragar dragare ver +dragare dragare ver +dragarono dragare ver +dragasse dragare ver +dragata dragare ver +dragate dragare ver +dragati dragare ver +dragato dragare ver +dragavano dragare ver +draghe draga nom +draghi drago nom +draghino dragare ver +draglia draglia nom +draglie draglia nom +drago drago nom +dragomanni dragomanno nom +dragomanno dragomanno nom +dragona dragona nom +dragoncelli dragoncello nom +dragoncello dragoncello nom +dragone dragona|dragone nom +dragoni dragone nom +dragò dragare ver +drai drap nom +draisina draisina nom +draisine draisina nom +dramma dramma nom +drammatica drammatico adj +drammaticamente drammaticamente adv +drammatiche drammatico adj +drammatici drammatico adj +drammaticità drammaticità nom +drammatico drammatico adj +drammatizza drammatizzare ver +drammatizzando drammatizzare ver +drammatizzano drammatizzare ver +drammatizzare drammatizzare ver +drammatizzata drammatizzare ver +drammatizzate drammatizzare ver +drammatizzati drammatizzare ver +drammatizzato drammatizzare ver +drammatizzava drammatizzare ver +drammatizzazione drammatizzazione nom +drammatizzazioni drammatizzazione nom +drammatizzerei drammatizzare ver +drammatizziamo drammatizzare ver +drammatizzo drammatizzare ver +drammaturga drammaturgo nom +drammaturghe drammaturgo nom +drammaturghi drammaturgo nom +drammaturgia drammaturgia nom +drammaturgie drammaturgia nom +drammaturgo drammaturgo nom +drammi dramma nom +drap drap nom +drappeggi drappeggio nom +drappeggia drappeggiare ver +drappeggiano drappeggiare ver +drappeggiata drappeggiare ver +drappeggiate drappeggiare ver +drappeggiati drappeggiare ver +drappeggiato drappeggiare ver +drappeggiava drappeggiare ver +drappeggiavano drappeggiare ver +drappeggio drappeggio nom +drappelle drappella nom +drappelli drappello nom +drappello drappello nom +drapperia drapperia nom +drapperie drapperia nom +drappi drappo nom +drappiere drappiere nom +drappieri drappiere nom +drappo drappo nom +drastica drastico adj +drasticamente drasticamente adv +drastiche drastico adj +drastici drastico adj +drastico drastico adj +dreadnought dreadnought nom +drena drenare ver +drenaggi drenaggio nom +drenaggio drenaggio nom +drenai drenare ver +drenando drenare ver +drenandone drenare ver +drenano drenare ver +drenante drenare ver +drenanti drenare ver +drenare drenare ver +drenarla drenare ver +drenarono drenare ver +drenarsi drenare ver +drenasi drenare ver +drenata drenare ver +drenate drenare ver +drenati drenare ver +drenato drenare ver +drenava drenare ver +drenavano drenare ver +drenavo drenare ver +drenerà drenare ver +dreni drenare ver +dreno drenare ver +drenò drenare ver +dressage dressage nom +driade driade nom +driadi driade nom +dribbla dribblare ver +dribblando dribblare ver +dribblare dribblare ver +dribblarlo dribblare ver +dribblato dribblare ver +dribbling dribbling nom +dribblò dribblare ver +drink drink nom +dritta dritto adj +dritte dritto adj +dritti dritto adj +dritto dritto adj_sup +drive drive nom +driver driver nom +drizza drizza nom +drizzando drizzare ver +drizzandosi drizzare ver +drizzano drizzare ver +drizzar drizzare ver +drizzare drizzare ver +drizzarsi drizzare ver +drizzata drizzare ver +drizzate drizzare ver +drizzati drizzare ver +drizzato drizzare ver +drizzava drizzare ver +drizzavano drizzare ver +drizze drizza nom +drizzò drizzare ver +droga droga nom +drogaggi drogaggio nom +drogaggio drogaggio nom +drogando drogare ver +drogandola drogare ver +drogandoli drogare ver +drogandolo drogare ver +drogandosi drogare ver +drogano drogare ver +drogante drogare ver +droganti drogare ver +drogare drogare ver +drogarla drogare ver +drogarle drogare ver +drogarlo drogare ver +drogarmi drogare ver +drogarono drogare ver +drogarsi drogare ver +drogarti drogare ver +drogassero drogare ver +drogata drogare ver +drogate drogare ver +drogati drogato nom +drogato drogare ver +drogava drogare ver +drogavano drogare ver +drogavo drogare ver +droghe droga nom +drogheria drogheria nom +drogherie drogheria nom +drogherà drogare ver +droghi drogare ver +drogo drogare ver +drogò drogare ver +dromedari dromedario nom +dromedario dromedario nom +drop drop nom +drosera drosera nom +droseracee droseracee nom +drosere drosera nom +drosofila drosofila nom +drosofile drosofila nom +druda drudo nom +drude drudo nom +drudi drudo nom +drudo drudo nom +druida druida nom +druidi druida|druido nom +druidica druidico adj +druidiche druidico adj +druidici druidico adj +druidico druidico adj +druido druido nom +drupa drupa nom +drupacea drupaceo adj +drupacee drupaceo adj +drupe drupa nom +drusa drusa nom +druse drusa nom +drusi druso nom +druso druso nom +dry dry adj +duale duale adj +duali duale adj +dualismi dualismo nom +dualismo dualismo nom +dualista dualista nom +dualiste dualista nom +dualisti dualista nom +dualistica dualistico adj +dualistiche dualistico adj +dualistici dualistico adj +dualistico dualistico adj +dualità dualità nom +dubat dubat nom +dubbi dubbio nom +dubbia dubbio adj +dubbie dubbio adj +dubbiezza dubbiezza nom +dubbio dubbio nom +dubbiosa dubbioso adj +dubbiose dubbioso adj +dubbiosi dubbioso adj +dubbiosità dubbiosità nom +dubbioso dubbioso adj +dubita dubitare ver +dubitai dubitare ver +dubitando dubitare ver +dubitano dubitare ver +dubitante dubitare ver +dubitar dubitare ver +dubitare dubitare ver +dubitarlo dubitare ver +dubitarne dubitare ver +dubitarono dubitare ver +dubitarsi dubitare ver +dubitasse dubitare ver +dubitassi dubitare ver +dubitata dubitare ver +dubitate dubitare ver +dubitativa dubitativo adj +dubitative dubitativo adj +dubitativi dubitativo adj +dubitativo dubitativo adj +dubitato dubitare ver +dubitava dubitare ver +dubitavano dubitare ver +dubitavo dubitare ver +dubiteranno dubitare ver +dubiterebbe dubitare ver +dubiterebbero dubitare ver +dubiterei dubitare ver +dubiterà dubitare ver +dubiti dubitare ver +dubitiamo dubitare ver +dubitino dubitare ver +dubito dubitare ver +dubitò dubitare ver +duca duca nom +ducale ducale adj +ducali ducale adj +ducati ducato nom +ducato ducato nom +duce duce nom +ducento ducento nom +duchessa duchessa nom +duchesse duchessa nom +duchi duca nom +duci duce nom +due due adj_sup +duecentesca duecentesco adj +duecentesche duecentesco adj +duecenteschi duecentesco adj +duecentesco duecentesco adj +duecentista duecentista nom +duecento duecento nom +duecentomila duecentomila adj +duella duellare ver +duellando duellare ver +duellano duellare ver +duellante duellante nom +duellanti duellante nom +duellare duellare ver +duellarono duellare ver +duellato duellare ver +duellava duellare ver +duellavano duellare ver +duelleranno duellare ver +duellerà duellare ver +duelli duello nom +duellino duellare ver +duellista duellista nom +duellisti duellista nom +duello duello nom +duellò duellare ver +duemila duemila adj +duerno duerno nom +duetti duetto nom +duetto duetto nom +dugonghi dugongo nom +dugongo dugongo nom +dulcamara dulcamara nom +dulcinea dulcinea nom +dulia dulia nom +dumdum dumdum adj +dumper dumper nom +dumping dumping nom +duna duna nom +dune duna nom +dunque dunque adv_sup +duo duo nom +duodecimo duodecimo adj +duodenale duodenale adj +duodenali duodenale adj +duodeni duodeno nom +duodenite duodenite nom +duodeno duodeno nom +duole dolere ver +duoli duolo nom +duolo duolo nom +duomi duomo nom +duomo duomo nom +duopoli duopolio nom +duopolio duopolio nom +duplex duplex nom +duplica duplicare ver +duplicaci duplicare ver +duplicando duplicare ver +duplicandola duplicare ver +duplicandole duplicare ver +duplicandosi duplicare ver +duplicano duplicare ver +duplicante duplicare ver +duplicare duplicare ver +duplicarla duplicare ver +duplicarle duplicare ver +duplicarli duplicare ver +duplicarlo duplicare ver +duplicarne duplicare ver +duplicarono duplicare ver +duplicarsi duplicare ver +duplicata duplicare ver +duplicate duplicato adj +duplicati duplicato nom +duplicato duplicato nom +duplicatore duplicatore nom +duplicatori duplicatore nom +duplicava duplicare ver +duplicavano duplicare ver +duplicazione duplicazione nom +duplicazioni duplicazione nom +duplice duplice adj +duplicheranno duplicare ver +duplicherebbe duplicare ver +duplicherà duplicare ver +duplichi duplicare ver +duplichiamo duplicare ver +duplichino duplicare ver +duplici duplice adj +duplicità duplicità nom +duplico duplicare ver +duplicò duplicare ver +dura duro adj +durabilità durabilità nom +duraci durare ver +duracina duracino adj +duracine duracino adj +durai durare ver +durale durare ver +durali durare ver +duralluminio duralluminio nom +duramadre duramadre nom +durame durame nom +duramente duramente adv +durando durare ver +durane durare ver +durano durare ver +durante durante pre +duranti durare ver +durar durare ver +durare durare ver +durarne durare ver +durarono durare ver +durasse durare ver +durassero durare ver +durata durata nom +durate durata nom +durati durare ver +durato durare ver +duratura duraturo adj +durature duraturo adj +duraturi duraturo adj +duraturo duraturo adj +durava durare ver +duravano durare ver +dure duro adj +dureranno durare ver +durerebbe durare ver +durerebbero durare ver +durerei durare ver +durerà durare ver +durerò durare ver +durevole durevole adj +durevolezza durevolezza nom +durevoli durevole adj +durevolmente durevolmente adv +durezza durezza nom +durezze durezza nom +duri duro adj +durino durare ver +durissimi durissimo adj +durlindana durlindana nom +duro duro adj +durometri durometro nom +durometro durometro nom +durona durona nom +durone durona|durone nom +duroni durone nom +durra durra nom +durre durra nom +durò durare ver +duttile duttile adj +duttili duttile adj +duttilità duttilità nom +duumvirato duumvirato nom +duumviri duumviro nom +duumviro duumviro nom +duvet duvet nom +dà dare ver_sup +débâcle débâcle nom +décolleté décolleté nom +défaillance défaillance nom +démodé démodé adj +dépendance dépendance nom +dépliant dépliant nom +dérapage dérapage nom +déshabillé déshabillé nom +dì dì nom +e e con +ebani ebano nom +ebanista ebanista nom +ebanisteria ebanisteria nom +ebanisti ebanista nom +ebanite ebanite nom +ebano ebano nom +ebbe avere ver_sup +ebbene ebbene con +ebbero avere ver +ebbi avere ver_sup +ebbra ebbro adj +ebbre ebbro adj +ebbrezza ebbrezza nom +ebbrezze ebbrezza nom +ebbri ebbro adj +ebbro ebbro adj +ebdomadari ebdomadario nom +ebdomadaria ebdomadario adj +ebdomadarie ebdomadario adj +ebdomadario ebdomadario adj +ebefrenia ebefrenia nom +ebenacee ebenacee nom +ebete ebete adj +ebeti ebete adj +ebetismo ebetismo nom +ebollizione ebollizione nom +ebollizioni ebollizione nom +ebraica ebraico adj +ebraiche ebraico adj +ebraici ebraico adj +ebraico ebraico adj +ebraismi ebraismo nom +ebraismo ebraismo nom +ebraista ebraista nom +ebraiste ebraista nom +ebraisti ebraista nom +ebrea ebreo adj +ebree ebreo adj +ebrei ebreo nom +ebreo ebreo adj +ebrietà ebrietà nom +ebulliometro ebulliometro nom +ebullioscopi ebullioscopio nom +ebullioscopia ebullioscopia nom +ebullioscopio ebullioscopio nom +eburnea eburneo adj +eburnee eburneo adj +eburnei eburneo adj +eburneo eburneo adj +ecatombe ecatombe nom +ecatombi ecatombe nom +ecc ecc adv_sup +ecceda eccedere ver +eccedano eccedere ver +eccede eccedere ver +eccedendo eccedere ver +eccedentarie eccedentario adj +eccedente eccedente adj +eccedenti eccedente adj +eccedenza eccedenza nom +eccedenze eccedenza nom +eccederanno eccedere ver +eccedere eccedere ver +eccederei eccedere ver +eccederà eccedere ver +eccedesse eccedere ver +eccedessero eccedere ver +eccedette eccedere ver +eccedeva eccedere ver +eccedevano eccedere ver +eccedi eccedere ver +eccediamo eccedere ver +eccedo eccedere ver +eccedono eccedere ver +ecceduta eccedere ver +ecceduti eccedere ver +ecceduto eccedere ver +eccella eccellere ver +eccellano eccellere ver +eccelle eccellere ver +eccellendo eccellere ver +eccellente eccellente adj +eccellenti eccellente adj +eccellentissima eccellentissimo adj +eccellentissime eccellentissimo adj +eccellentissimi eccellentissimo adj +eccellentissimo eccellentissimo adj +eccellenza eccellenza nom +eccellenze eccellenza nom +eccelleranno eccellere ver +eccellere eccellere ver +eccellervi eccellere ver +eccellerà eccellere ver +eccellesse eccellere ver +eccellessero eccellere ver +eccelleva eccellere ver +eccellevano eccellere ver +eccellono eccellere ver +eccelsa eccellere ver +eccelse eccelso adj +eccelsero eccellere ver +eccelsi eccelso adj +eccelso eccellere ver +eccentrica eccentrico adj +eccentriche eccentrico adj +eccentrici eccentrico adj +eccentricità eccentricità nom +eccentrico eccentrico adj +eccependo eccepire ver +eccependone eccepire ver +eccepibile eccepibile adj +eccepibili eccepibile adj +eccepire eccepire ver +eccepirla eccepire ver +eccepirne eccepire ver +eccepirono eccepire ver +eccepisca eccepire ver +eccepisce eccepire ver +eccepisci eccepire ver +eccepisco eccepire ver +eccepita eccepire ver +eccepite eccepire ver +eccepito eccepire ver +eccepì eccepire ver +eccessi eccesso nom +eccessiva eccessivo adj +eccessivamente eccessivamente adv +eccessive eccessivo adj +eccessivi eccessivo adj +eccessività eccessività nom +eccessivo eccessivo adj +eccesso eccesso nom +eccetera eccetera nom +eccetto eccetto pre +eccettua eccettuare ver +eccettuando eccettuare ver +eccettuano eccettuare ver +eccettuata eccettuare ver +eccettuate eccettuare ver +eccettuati eccettuare ver +eccettuativa eccettuativo adj +eccettuative eccettuativo adj +eccettuato eccettuare ver +eccettui eccettuare ver +eccettuiamo eccettuare ver +eccettuino eccettuare ver +eccettuo eccettuare ver +eccezionale eccezionale adj +eccezionali eccezionale adj +eccezionalità eccezionalità nom +eccezionalmente eccezionalmente adv +eccezione eccezione nom +eccezioni eccezione nom +ecchimosi ecchimosi nom +eccidi eccidio nom +eccidio eccidio nom +eccipiente eccipiente nom +eccipienti eccipiente nom +eccita eccitare ver +eccitabile eccitabile adj +eccitabili eccitabile adj +eccitabilità eccitabilità nom +eccitamenti eccitamento nom +eccitamento eccitamento nom +eccitami eccitare ver +eccitando eccitare ver +eccitandoli eccitare ver +eccitandolo eccitare ver +eccitandone eccitare ver +eccitandosi eccitare ver +eccitano eccitare ver +eccitante eccitante adj +eccitanti eccitante adj +eccitare eccitare ver +eccitarli eccitare ver +eccitarlo eccitare ver +eccitarmi eccitare ver +eccitarne eccitare ver +eccitarono eccitare ver +eccitarsi eccitare ver +eccitasse eccitare ver +eccitata eccitare ver +eccitate eccitare ver +eccitati eccitare ver +eccitato eccitare ver +eccitatore eccitatore adj +eccitatori eccitatore adj +eccitatrice eccitatore adj +eccitatrici eccitatore adj +eccitava eccitare ver +eccitavano eccitare ver +eccitazione eccitazione nom +eccitazioni eccitazione nom +ecciterà eccitare ver +ecciti eccitare ver +eccitino eccitare ver +eccito eccitare ver +eccitò eccitare ver +ecclesiale ecclesiale adj +ecclesiali ecclesiale adj +ecclesiastica ecclesiastico adj +ecclesiastiche ecclesiastico adj +ecclesiastici ecclesiastico adj +ecclesiastico ecclesiastico adj +ecclesiologia ecclesiologia nom +ecclesiologie ecclesiologia nom +ecclesiologo ecclesiologo nom +ecco ecco adv_sup +eccoci eccoci sw +eccome eccome adv_sup +echeggi echeggiare ver +echeggia echeggiare ver +echeggiando echeggiare ver +echeggiano echeggiare ver +echeggiante echeggiare ver +echeggianti echeggiare ver +echeggiare echeggiare ver +echeggiarono echeggiare ver +echeggiata echeggiare ver +echeggiava echeggiare ver +echeggiavano echeggiare ver +echeggiò echeggiare ver +echi eco nom +echidna echidna nom +echidne echidna nom +echini echino nom +echino echino nom +echinocactus echinocactus nom +echinococchi echinococco nom +echinococco echinococco nom +echinococcosi echinococcosi nom +echinodermi echinodermi nom +eclampsia eclampsia nom +eclatante eclatante adj +eclatanti eclatante adj +eclettica eclettico adj +eclettiche eclettico adj +eclettici eclettico adj +eclettico eclettico adj +eclettismi eclettismo nom +eclettismo eclettismo nom +eclissa eclissare ver +eclissale eclissare ver +eclissando eclissare ver +eclissandola eclissare ver +eclissandosi eclissare ver +eclissano eclissare ver +eclissare eclissare ver +eclissarla eclissare ver +eclissarmi eclissare ver +eclissarono eclissare ver +eclissarsi eclissare ver +eclissata eclissare ver +eclissate eclissare ver +eclissati eclissare ver +eclissato eclissare ver +eclissava eclissare ver +eclisseranno eclissare ver +eclisserà eclissare ver +eclissi eclissi nom +eclissino eclissare ver +eclisso eclissare ver +eclissò eclissare ver +eclittica eclittico adj +eclittiche eclittico adj +eclittico eclittico adj +ecloga ecloga nom +eco eco nom +ecocidio ecocidio nom +ecocompatibile ecocompatibile adj +ecofobia ecofobia nom +ecogoniometri ecogoniometro nom +ecogoniometro ecogoniometro nom +ecografia ecografia nom +ecografie ecografia nom +ecolalia ecolalia nom +ecolalie ecolalia nom +ecologa ecologo nom +ecologi ecologo nom +ecologia ecologia nom +ecologica ecologico adj +ecologicamente ecologicamente adv +ecologiche ecologico adj +ecologici ecologico adj +ecologico ecologico adj +ecologie ecologia nom +ecologista ecologista nom +ecologiste ecologista nom +ecologisti ecologista nom +ecologo ecologo nom +economa economo adj +economati economato nom +economato economato nom +econometria econometria nom +econometrie econometria nom +economi economo adj +economia economia nom +economica economico adj +economicamente economicamente adv +economiche economico adj +economici economico adj +economicismo economicismo nom +economicità economicità nom +economico economico adj +economie economia nom +economista economista nom +economisti economista nom +economizza economizzare ver +economizzando economizzare ver +economizzare economizzare ver +economizzarne economizzare ver +economizzatore economizzatore nom +economizzatori economizzatore nom +economo economo adj +ecosistema ecosistema nom +ecosistemi ecosistema nom +ecotossicologia ecotossicologia nom +ecotossicologico ecotossicologico adj +ecoturismo ecoturismo nom +ecozone ecozona nom +ectoplasma ectoplasma nom +ectoplasmi ectoplasma nom +ecu ecu nom +ecuadoriana ecuadoriano adj +ecuadoriane ecuadoriano adj +ecuadoriani ecuadoriano adj +ecuadoriano ecuadoriano adj +ecumene ecumene nom +ecumeni ecumene nom +ecumenica ecumenico adj +ecumeniche ecumenico adj +ecumenici ecumenico adj +ecumenicità ecumenicità nom +ecumenico ecumenico adj +ecumenismo ecumenismo nom +eczema eczema nom +eczematosi eczematoso nom +eczemi eczema nom +ed ed con +edelweiss edelweiss nom +edema edema nom +edematosa edematoso adj +edematose edematoso adj +edematosi edematoso adj +edematoso edematoso adj +edemi edema nom +eden eden nom +edenica edenico adj +edenico edenico adj +edera edera nom +edere edera nom +edicola edicola nom +edicolante edicolante nom +edicolanti edicolante nom +edicole edicola nom +edifica edificare ver +edificabile edificabile adj +edificabili edificabile adj +edificaci edificare ver +edificai edificare ver +edificammo edificare ver +edificando edificare ver +edificandole edificare ver +edificandolo edificare ver +edificandone edificare ver +edificandovi edificare ver +edificano edificare ver +edificante edificante adj +edificanti edificante adj +edificar edificare ver +edificarci edificare ver +edificare edificare ver +edificargli edificare ver +edificarla edificare ver +edificarle edificare ver +edificarli edificare ver +edificarlo edificare ver +edificarne edificare ver +edificarono edificare ver +edificarsi edificare ver +edificarvi edificare ver +edificasse edificare ver +edificassero edificare ver +edificata edificare ver +edificate edificare ver +edificati edificare ver +edificato edificare ver +edificatore edificatore nom +edificatori edificatorio adj +edificatoria edificatorio adj +edificatorie edificatorio adj +edificatorio edificatorio adj +edificatrice edificatore nom +edificatrici edificatore nom +edificava edificare ver +edificavano edificare ver +edificazione edificazione nom +edificazioni edificazione nom +edificheranno edificare ver +edificherà edificare ver +edificherò edificare ver +edifichi edificare ver +edifici edificio nom +edificio edificio nom +edifico edificare ver +edificò edificare ver +edile edile adj +edili edile adj +edilità edilità nom +edilizi edilizio adj +edilizia edilizio adj +edilizie edilizio adj +edilizio edilizio adj +edipica edipico adj +edipiche edipico adj +edipici edipico adj +edipico edipico adj +edita edito adj +editando editare ver +editandola editare ver +editano editare ver +editanti editare ver +editar editare ver +editarci editare ver +editare editare ver +editarla editare ver +editarle editare ver +editarli editare ver +editarlo editare ver +editarne editare ver +editarono editare ver +editarsi editare ver +editarvi editare ver +editasse editare ver +editassero editare ver +editata editare ver +editate editare ver +editati editare ver +editato editare ver +editava editare ver +editavano editare ver +editavi editare ver +editavo editare ver +edite edito adj +editeranno editare ver +editerebbe editare ver +editerei editare ver +editerà editare ver +editerò editare ver +editi edito adj +editiamo editare ver +editino editare ver +edito edito adj +editore editore adj +editori editore adj +editoria editoria nom +editoriale editoriale adj +editoriali editoriale adj +editorialista editorialista nom +editorialisti editorialista nom +editorie editoria nom +editrice editore adj +editrici editore adj +editti editto nom +editto editto nom +editò editare ver +edizione edizione nom +edizioni edizione nom +edochiani edochiano adj +edonismo edonismo nom +edonista edonista nom +edoniste edonista nom +edonisti edonista nom +edonistica edonistico adj +edonistiche edonistico adj +edonistici edonistico adj +edonistico edonistico adj +edotta edotto adj +edotte edotto adj +edotti edotto adj +edotto edotto adj +edredone edredone nom +edredoni edredone nom +educa educare ver +educaci educare ver +educanda educanda nom +educandati educandato nom +educandato educandato nom +educande educanda nom +educando educare ver +educandoli educare ver +educandolo educare ver +educano educare ver +educante educare ver +educar educare ver +educarci educare ver +educare educare ver +educarla educare ver +educarle educare ver +educarli educare ver +educarlo educare ver +educarmi educare ver +educarne educare ver +educarono educare ver +educarsi educare ver +educasse educare ver +educassero educare ver +educata educare ver +educate educare ver +educati educare ver +educativa educativo adj +educative educativo adj +educativi educativo adj +educativo educativo adj +educato educare ver +educatore educatore adj +educatori educatore adj +educatrice educatore nom +educatrici educatore nom +educava educare ver +educazione educazione nom +educazioni educazione nom +educheranno educare ver +educherà educare ver +educhi educare ver +educhiamo educare ver +educhino educare ver +educo educare ver +educò educare ver +edulcora edulcorare ver +edulcorando edulcorare ver +edulcorante edulcorare ver +edulcoranti edulcorare ver +edulcorare edulcorare ver +edulcorarla edulcorare ver +edulcorata edulcorare ver +edulcorate edulcorare ver +edulcorati edulcorare ver +edulcorato edulcorare ver +edulcorazione edulcorazione nom +edulcorazioni edulcorazione nom +edule edule adj +eduli edule adj +efebi efebo nom +efebica efebico adj +efebiche efebico adj +efebici efebico adj +efebico efebico adj +efebo efebo nom +efelidi efelide nom +effe effe nom +effemeride effemeride nom +effemeridi effemeride nom +effeminata effeminato adj +effeminate effeminato adj +effeminatezza effeminatezza nom +effeminati effeminato adj +effeminato effeminare ver +effemminata effemminare ver +effemminatezza effemminatezza nom +effemminati effemminato adj +effemminato effemminato adj +effendi effendi nom +efferata efferato adj +efferate efferato adj +efferatezza efferatezza nom +efferatezze efferatezza nom +efferati efferato adj +efferato efferato adj +efferente efferente adj +efferenti efferente adj +effervescente effervescente adj +effervescenti effervescente adj +effervescenza effervescenza nom +effervescenze effervescenza nom +effetti effetto nom +effettiva effettivo adj +effettivamente effettivamente adv +effettive effettivo adj +effettivi effettivo adj +effettività effettività nom +effettivo effettivo adj +effetto effetto nom +effettore effettore nom +effettori effettore nom +effettrice effettore nom +effettrici effettore nom +effettua effettuare ver +effettuabile effettuabile adj +effettuabili effettuabile adj +effettuai effettuare ver +effettuale effettuare ver +effettuali effettuare ver +effettuando effettuare ver +effettuandole effettuare ver +effettuandone effettuare ver +effettuano effettuare ver +effettuanti effettuare ver +effettuare effettuare ver +effettuargli effettuare ver +effettuarla effettuare ver +effettuarle effettuare ver +effettuarli effettuare ver +effettuarlo effettuare ver +effettuarne effettuare ver +effettuarono effettuare ver +effettuarsi effettuare ver +effettuarvi effettuare ver +effettuasse effettuare ver +effettuassero effettuare ver +effettuassi effettuare ver +effettuata effettuare ver +effettuate effettuare ver +effettuati effettuare ver +effettuato effettuare ver +effettuava effettuare ver +effettuavamo effettuare ver +effettuavano effettuare ver +effettuavo effettuare ver +effettuazione effettuazione nom +effettuazioni effettuazione nom +effettueranno effettuare ver +effettuerebbe effettuare ver +effettuerebbero effettuare ver +effettueremo effettuare ver +effettuerà effettuare ver +effettuerò effettuare ver +effettui effettuare ver +effettuiamo effettuare ver +effettuino effettuare ver +effettuo effettuare ver +effettuò effettuare ver +efficace efficace adj +efficacemente efficacemente adv +efficaci efficace adj +efficacia efficacia nom +efficacie efficacia nom +efficiente efficiente adj +efficienti efficiente adj +efficientismo efficientismo nom +efficienza efficienza nom +efficienze efficienza nom +effigi effigiare ver +effigia effigiare ver +effigiandolo effigiare ver +effigiano effigiare ver +effigiante effigiare ver +effigianti effigiare ver +effigiare effigiare ver +effigiarlo effigiare ver +effigiata effigiare ver +effigiate effigiare ver +effigiati effigiare ver +effigiato effigiare ver +effigie effigie nom +effigii effigie nom +effigiò effigiare ver +effimera effimero adj +effimere effimero adj +effimeri effimero adj +effimero effimero adj +efflorescenti efflorescente adj +efflorescenza efflorescenza nom +efflorescenze efflorescenza nom +effluente effluente adj +effluenti effluente nom +effluire effluire ver +effluisce effluire ver +effluiscono effluire ver +efflussi efflusso nom +efflusso efflusso nom +effluvi effluvio nom +effluvio effluvio nom +effonde effondere ver +effondere effondere ver +effonderò effondere ver +effondi effondere ver +effondono effondere ver +effrazione effrazione nom +effrazioni effrazione nom +effusa effondere ver +effuse effondere ver +effusi effondere ver +effusione effusione nom +effusioni effusione nom +effusiva effusivo adj +effusive effusivo adj +effusivi effusivo adj +effusivo effusivo adj +effuso effondere ver +efod efod nom +eforato eforato nom +efori eforo nom +eforo eforo nom +egalitari egalitario adj +egalitaria egalitario adj +egalitarie egalitario adj +egalitario egalitario adj +egemone egemone adj +egemoni egemone adj +egemonia egemonia nom +egemonica egemonico adj +egemoniche egemonico adj +egemonici egemonico adj +egemonico egemonico adj +egemonie egemonia nom +egemonismo egemonismo nom +egemonizza egemonizzare ver +egemonizzando egemonizzare ver +egemonizzante egemonizzare ver +egemonizzare egemonizzare ver +egemonizzarlo egemonizzare ver +egemonizzata egemonizzare ver +egemonizzate egemonizzare ver +egemonizzati egemonizzare ver +egemonizzato egemonizzare ver +egemonizzava egemonizzare ver +egemonizzeranno egemonizzare ver +egemonizzerà egemonizzare ver +egemonizzò egemonizzare ver +egida egida nom +egide egida nom +egiochi egioco adj +egioco egioco adj +egira egira nom +egire egira nom +egittologa egittologo nom +egittologi egittologo nom +egittologia egittologia nom +egittologo egittologo nom +egizi egizio adj +egizia egizio adj +egiziana egiziano adj +egiziane egiziano adj +egiziani egiziano adj +egiziano egiziano adj +egizie egizio adj +egizio egizio adj +egli egli pro +eglino eglino pro +egloga egloga nom +egloge egloga nom +ego ego nom +egocentrica egocentrico adj +egocentriche egocentrico adj +egocentrici egocentrico adj +egocentrico egocentrico adj +egocentrismi egocentrismo nom +egocentrismo egocentrismo nom +egoismi egoismo nom +egoismo egoismo nom +egoista egoista adj +egoiste egoista adj +egoisti egoista adj +egoistica egoistico adj +egoistiche egoistico adj +egoistici egoistico adj +egoistico egoistico adj +egotismo egotismo nom +egra egro adj +egre egro adj +egregi egregio adj +egregia egregio adj +egregiamente egregiamente adv +egregio egregio adj +egressi egresso nom +egresso egresso nom +egri egro adj +egro egro adj +eguagli eguagliare ver +eguaglia eguagliare ver +eguagliamo eguagliare ver +eguagliando eguagliare ver +eguagliandola eguagliare ver +eguagliandolo eguagliare ver +eguagliandone eguagliare ver +eguagliano eguagliare ver +eguaglianza eguaglianza nom +eguaglianze eguaglianza nom +eguagliare eguagliare ver +eguagliarla eguagliare ver +eguagliarle eguagliare ver +eguagliarli eguagliare ver +eguagliarlo eguagliare ver +eguagliarne eguagliare ver +eguagliarono eguagliare ver +eguagliasse eguagliare ver +eguagliassero eguagliare ver +eguagliata eguagliare ver +eguagliate eguagliare ver +eguagliati eguagliare ver +eguagliato eguagliare ver +eguagliava eguagliare ver +eguagliavano eguagliare ver +eguaglieranno eguagliare ver +eguaglierebbe eguagliare ver +eguaglierà eguagliare ver +eguaglino eguagliare ver +eguagliò eguagliare ver +egual eguale adj +eguale eguale adj +eguali eguale adj +egualitari egualitario adj +egualitaria egualitario adj +egualitarie egualitario adj +egualitario egualitario adj +egualitarismo egualitarismo nom +egualmente egualmente adv_sup +eh eh int +ehi ehi int +ehilà ehilà int +ehm ehm int +ei ei pro +eia eia int +eiaculazione eiaculazione nom +eiaculazioni eiaculazione nom +eiettabile eiettabile adj +eiettabili eiettabile adj +eiettore eiettore nom +eiettori eiettore nom +eiezione eiezione nom +eiezioni eiezione nom +einsteini einsteinio nom +einsteinio einsteinio nom +elabora elaborare ver +elaboraci elaborare ver +elaborai elaborare ver +elaborando elaborare ver +elaborandola elaborare ver +elaborandole elaborare ver +elaborandoli elaborare ver +elaborandolo elaborare ver +elaborandone elaborare ver +elaborandosi elaborare ver +elaborano elaborare ver +elaborare elaborare ver +elaborarla elaborare ver +elaborarle elaborare ver +elaborarli elaborare ver +elaborarlo elaborare ver +elaborarne elaborare ver +elaborarono elaborare ver +elaborarsi elaborare ver +elaborasse elaborare ver +elaborata elaborare ver +elaborate elaborato adj +elaboratezza elaboratezza nom +elaborati elaborare ver +elaborato elaborare ver +elaboratore elaboratore adj +elaboratori elaboratore nom +elaboratrice elaboratore adj +elaboratrici elaboratore adj +elaborava elaborare ver +elaboravamo elaborare ver +elaboravano elaborare ver +elaborazione elaborazione nom +elaborazioni elaborazione nom +elaboreranno elaborare ver +elaborerà elaborare ver +elabori elaborare ver +elaboriamo elaborare ver +elaborino elaborare ver +elaboro elaborare ver +elaborò elaborare ver +elargendo elargire ver +elargendogli elargire ver +elargendole elargire ver +elargiamo elargire ver +elargire elargire ver +elargirgli elargire ver +elargirgliela elargire ver +elargirle elargire ver +elargirono elargire ver +elargirà elargire ver +elargisca elargire ver +elargisce elargire ver +elargiscono elargire ver +elargita elargire ver +elargite elargire ver +elargitegli elargire ver +elargiti elargire ver +elargito elargire ver +elargiva elargire ver +elargivano elargire ver +elargizione elargizione nom +elargizioni elargizione nom +elargì elargire ver +elastica elastico adj +elastiche elastico adj +elastici elastico adj +elasticità elasticità nom +elasticizzata elasticizzato adj +elasticizzate elasticizzato adj +elasticizzati elasticizzato adj +elasticizzato elasticizzato adj +elastico elastico adj +elastomeri elastomero nom +elastomero elastomero nom +elce elce nom +elci elce nom +eldorado eldorado nom +electron electron nom +elefante elefante nom +elefantessa elefante nom +elefantesse elefante nom +elefanti elefante nom +elefantiaca elefantiaco adj +elefantiache elefantiaco adj +elefantiaci elefantiaco adj +elefantiaco elefantiaco adj +elefantiasi elefantiasi nom +elegante elegante adj +eleganti elegante adj +elegantone elegantone adj +eleganza eleganza nom +eleganze eleganza nom +elegga eleggere ver +eleggano eleggere ver +elegge eleggere ver +eleggemmo eleggere ver +eleggendo eleggere ver +eleggendola eleggere ver +eleggendolo eleggere ver +eleggendone eleggere ver +eleggendosi eleggere ver +eleggendovi eleggere ver +elegger eleggere ver +eleggeranno eleggere ver +eleggere eleggere ver +eleggerei eleggere ver +eleggeremmo eleggere ver +eleggerla eleggere ver +eleggerli eleggere ver +eleggerlo eleggere ver +eleggermi eleggere ver +eleggerne eleggere ver +eleggerselo eleggere ver +eleggersi eleggere ver +eleggerti eleggere ver +eleggervi eleggere ver +eleggerà eleggere ver +eleggesse eleggere ver +eleggessero eleggere ver +eleggete eleggere ver +eleggetemi eleggere ver +eleggeva eleggere ver +eleggevano eleggere ver +eleggi eleggere ver +eleggiamo eleggere ver +eleggibile eleggibile adj +eleggibili eleggibile adj +eleggibilità eleggibilità nom +eleggo eleggere ver +eleggono eleggere ver +elegia elegia nom +elegiaca elegiaco adj +elegiache elegiaco adj +elegiaci elegiaco adj +elegiaco elegiaco adj +elegie elegia nom +elektron elektron nom +elementare elementare adj +elementari elementare adj +elementarità elementarità nom +elementarizzata elementarizzare ver +elementarizzati elementarizzare ver +elementi elemento nom +elemento elemento nom +elemosina elemosina nom +elemosinando elemosinare ver +elemosinanti elemosinare ver +elemosinare elemosinare ver +elemosinato elemosinare ver +elemosinava elemosinare ver +elemosine elemosina nom +elemosiniere elemosiniere nom +elemosinieri elemosiniere nom +elenca elencare ver +elencale elencare ver +elencali elencare ver +elencami elencare ver +elencando elencare ver +elencandogli elencare ver +elencandola elencare ver +elencandole elencare ver +elencandoli elencare ver +elencandolo elencare ver +elencandone elencare ver +elencano elencare ver +elencante elencare ver +elencanti elencare ver +elencarci elencare ver +elencare elencare ver +elencargli elencare ver +elencarla elencare ver +elencarle elencare ver +elencarli elencare ver +elencarlo elencare ver +elencarmeli elencare ver +elencarmi elencare ver +elencarne elencare ver +elencarono elencare ver +elencarsi elencare ver +elencarti elencare ver +elencarvi elencare ver +elencasse elencare ver +elencassero elencare ver +elencassi elencare ver +elencata elencare ver +elencate elencare ver +elencatemeli elencare ver +elencati elencare ver +elencato elencare ver +elencava elencare ver +elencavano elencare ver +elencavo elencare ver +elencazione elencazione nom +elencazioni elencazione nom +elencherebbe elencare ver +elencherei elencare ver +elencheremo elencare ver +elencherà elencare ver +elencherò elencare ver +elenchi elenco nom +elenchiamo elencare ver +elenchiamone elencare ver +elenchino elencare ver +elenco elenco nom +elencò elencare ver +eleni elenio nom +elenio elenio nom +elesse eleggere ver +elessero eleggere ver +elessi eleggere ver +eletta eleggere ver +elette eleggere ver +eletti eleggere ver +elettiva elettivo adj +elettive elettivo adj +elettivi elettivo adj +elettività elettività nom +elettivo elettivo adj +eletto eleggere ver +elettorale elettorale adj +elettorali elettorale adj +elettoralismo elettoralismo nom +elettorati elettorato nom +elettorato elettorato nom +elettore elettore nom +elettori elettore nom +elettrauto elettrauto nom +elettri elettro nom +elettrica elettrico adj +elettricamente elettricamente adv +elettrice elettore nom +elettriche elettrico adj +elettrici elettrico adj +elettricista elettricista nom +elettricisti elettricista nom +elettricità elettricità nom +elettrico elettrico adj +elettrifica elettrificare ver +elettrificando elettrificare ver +elettrificano elettrificare ver +elettrificante elettrificare ver +elettrificare elettrificare ver +elettrificarla elettrificare ver +elettrificarle elettrificare ver +elettrificarli elettrificare ver +elettrificarono elettrificare ver +elettrificata elettrificare ver +elettrificate elettrificare ver +elettrificati elettrificare ver +elettrificato elettrificare ver +elettrificazione elettrificazione nom +elettrificazioni elettrificazione nom +elettrificò elettrificare ver +elettrizza elettrizzare ver +elettrizzando elettrizzare ver +elettrizzano elettrizzare ver +elettrizzante elettrizzante adj +elettrizzanti elettrizzante adj +elettrizzare elettrizzare ver +elettrizzarsi elettrizzare ver +elettrizzata elettrizzare ver +elettrizzate elettrizzare ver +elettrizzati elettrizzare ver +elettrizzato elettrizzare ver +elettrizzazione elettrizzazione nom +elettrizzò elettrizzare ver +elettro elettro nom +elettroacustica elettroacustico adj +elettroacustiche elettroacustico adj +elettroacustici elettroacustico adj +elettroacustico elettroacustico adj +elettrocalamita elettrocalamita nom +elettrocalamite elettrocalamita nom +elettrocardiografi elettrocardiografo nom +elettrocardiografia elettrocardiografia nom +elettrocardiografo elettrocardiografo nom +elettrocardiogramma elettrocardiogramma nom +elettrocardiogrammi elettrocardiogramma nom +elettrochimica elettrochimico adj +elettrochimiche elettrochimico adj +elettrochimici elettrochimico adj +elettrochimico elettrochimico adj +elettrochoc elettrochoc nom +elettrocoagulazione elettrocoagulazione nom +elettrodeposizione elettrodeposizione nom +elettrodi elettrodo nom +elettrodinamica elettrodinamico adj +elettrodinamiche elettrodinamico adj +elettrodinamici elettrodinamico adj +elettrodinamico elettrodinamico adj +elettrodo elettrodo nom +elettrodomestica elettrodomestico adj +elettrodomestici elettrodomestico nom +elettrodomestico elettrodomestico adj +elettrodotti elettrodotto nom +elettrodotto elettrodotto nom +elettroencefalografia elettroencefalografia nom +elettroencefalografo elettroencefalografo nom +elettroencefalogramma elettroencefalogramma nom +elettroencefalogrammi elettroencefalogramma nom +elettroesecuzione elettroesecuzione nom +elettrofisiologia elettrofisiologia nom +elettroforesi elettroforesi nom +elettrofori elettroforo nom +elettroforo elettroforo nom +elettrogeni elettrogeno adj +elettrogeno elettrogeno adj +elettrolisi elettrolisi nom +elettroliti elettrolito nom +elettrolitica elettrolitico adj +elettrolitiche elettrolitico adj +elettrolitici elettrolitico adj +elettrolitico elettrolitico adj +elettrolito elettrolito nom +elettrologia elettrologia nom +elettromagnete elettromagnete nom +elettromagneti elettromagnete nom +elettromagnetica elettromagnetico adj +elettromagnetiche elettromagnetico adj +elettromagnetici elettromagnetico adj +elettromagnetico elettromagnetico adj +elettromagnetismo elettromagnetismo nom +elettromeccanica elettromeccanico adj +elettromeccaniche elettromeccanico adj +elettromeccanici elettromeccanico adj +elettromeccanico elettromeccanico adj +elettromedicale elettromedicale adj +elettromedicali elettromedicale adj +elettrometallurgia elettrometallurgia nom +elettrometri elettrometro nom +elettrometro elettrometro nom +elettromotore elettromotore adj +elettromotrice elettromotore adj +elettromotrici elettromotrice nom +elettrone elettrone nom +elettronegativa elettronegativo adj +elettronegative elettronegativo adj +elettronegativi elettronegativo adj +elettronegativo elettronegativo adj +elettroni elettrone nom +elettronica elettronico adj +elettroniche elettronico adj +elettronici elettronico adj +elettronico elettronico adj +elettronucleare elettronucleare adj +elettronucleari elettronucleare adj +elettronvolt elettronvolt nom +elettropompa elettropompa nom +elettropompe elettropompa nom +elettropositiva elettropositivo adj +elettropositivi elettropositivo adj +elettropositivo elettropositivo adj +elettroscopi elettroscopio nom +elettroscopio elettroscopio nom +elettroshock elettroshock nom +elettrosincrotrone elettrosincrotrone nom +elettrostatica elettrostatico adj +elettrostatiche elettrostatico adj +elettrostatici elettrostatico adj +elettrostatico elettrostatico adj +elettrostrizione elettrostrizione nom +elettrotecnica elettrotecnico adj +elettrotecniche elettrotecnico adj +elettrotecnici elettrotecnico adj +elettrotecnico elettrotecnico adj +elettroterapia elettroterapia nom +elettrotreni elettrotreno nom +elettrotreno elettrotreno nom +eleva elevare ver +elevala elevare ver +elevamenti elevamento nom +elevamento elevamento nom +elevando elevare ver +elevandola elevare ver +elevandole elevare ver +elevandoli elevare ver +elevandolo elevare ver +elevandone elevare ver +elevandosi elevare ver +elevano elevare ver +elevante elevare ver +elevanti elevare ver +elevar elevare ver +elevarci elevare ver +elevare elevare ver +elevarla elevare ver +elevarle elevare ver +elevarli elevare ver +elevarlo elevare ver +elevarmi elevare ver +elevarne elevare ver +elevarono elevare ver +elevarsi elevare ver +elevasi elevare ver +elevasse elevare ver +elevassero elevare ver +elevata elevato adj +elevate elevato adj +elevatezza elevatezza nom +elevatezze elevatezza nom +elevati elevato adj +elevatissimo elevatissimo adj +elevato elevato adj +elevatore elevatore adj +elevatori elevatore adj +elevatrice elevatore adj +elevatrici elevatore adj +elevava elevare ver +elevavano elevare ver +elevazione elevazione nom +elevazioni elevazione nom +eleveranno elevare ver +eleverebbe elevare ver +eleverebbero elevare ver +eleverà elevare ver +elevi elevare ver +eleviamo elevare ver +elevino elevare ver +elevo elevare ver +elevò elevare ver +elezione elezione nom +elezioni elezione nom +elfi elfo nom +elfo elfo nom +eli elio nom +elica elica nom +eliche elica nom +elicoidale elicoidale adj +elicoidali elicoidale adj +elicoide elicoide adj +elicoidi elicoide adj +elicotteri elicottero nom +elicottero elicottero nom +elida elidere ver +elidano elidere ver +elide elidere ver +elidendo elidere ver +elidendosi elidere ver +elider elidere ver +elidere elidere ver +eliderla elidere ver +elidersi elidere ver +elidete elidere ver +elidi elidere ver +elido elidere ver +elidono elidere ver +elimina eliminare ver +eliminaci eliminare ver +eliminai eliminare ver +eliminala eliminare ver +eliminale eliminare ver +eliminali eliminare ver +eliminalo eliminare ver +eliminammo eliminare ver +eliminando eliminare ver +eliminandola eliminare ver +eliminandole eliminare ver +eliminandoli eliminare ver +eliminandolo eliminare ver +eliminandone eliminare ver +eliminandosi eliminare ver +eliminandovi eliminare ver +eliminano eliminare ver +eliminante eliminare ver +eliminanti eliminare ver +eliminar eliminare ver +eliminarci eliminare ver +eliminare eliminare ver +eliminarla eliminare ver +eliminarle eliminare ver +eliminarli eliminare ver +eliminarlo eliminare ver +eliminarmi eliminare ver +eliminarne eliminare ver +eliminarono eliminare ver +eliminarsi eliminare ver +eliminarti eliminare ver +eliminarvi eliminare ver +eliminasse eliminare ver +eliminassero eliminare ver +eliminassi eliminare ver +eliminassimo eliminare ver +eliminata eliminare ver +eliminate eliminare ver +eliminatela eliminare ver +eliminateli eliminare ver +eliminatelo eliminare ver +eliminati eliminare ver +eliminato eliminare ver +eliminatori eliminatorio adj +eliminatoria eliminatorio adj +eliminatorie eliminatoria nom +eliminatorio eliminatorio adj +eliminava eliminare ver +eliminavano eliminare ver +eliminavo eliminare ver +eliminazione eliminazione nom +eliminazioni eliminazione nom +elimineranno eliminare ver +eliminerebbe eliminare ver +eliminerebbero eliminare ver +eliminerei eliminare ver +elimineremmo eliminare ver +elimineremo eliminare ver +elimineresti eliminare ver +eliminerete eliminare ver +eliminerà eliminare ver +eliminerò eliminare ver +elimini eliminare ver +eliminiamo eliminare ver +eliminiamola eliminare ver +eliminiamole eliminare ver +eliminiamoli eliminare ver +eliminiamolo eliminare ver +eliminino eliminare ver +elimino eliminare ver +eliminò eliminare ver +elio elio nom +eliocentrica eliocentrico adj +eliocentriche eliocentrico adj +eliocentrici eliocentrico adj +eliocentrico eliocentrico adj +eliocentrismo eliocentrismo nom +eliografia eliografia nom +eliografie eliografia nom +eliografo eliografo nom +eliometri eliometro nom +eliometro eliometro nom +elione elione nom +elioscopio elioscopio nom +elioterapia elioterapia nom +elioterapica elioterapico adj +elioterapiche elioterapico adj +elioterapico elioterapico adj +eliotipie eliotipia nom +eliotropi eliotropio nom +eliotropio eliotropio nom +eliotropismo eliotropismo nom +eliporti eliporto nom +eliporto eliporto nom +elisa eliso adj +elisabettiana elisabettiano adj +elisabettiane elisabettiano adj +elisabettiani elisabettiano adj +elisabettiano elisabettiano adj +elise eliso adj +elisero elidere ver +elisi elisio|eliso adj +elisia elisio adj +elisio elisio adj +elisione elisione nom +elisioni elisione nom +elisir elisir nom +eliso elidere ver +elitari elitario adj +elitaria elitario adj +elitarie elitario adj +elitario elitario adj +elite elite nom +elitra elitra nom +elitre elitra nom +elitropia elitropia nom +elivia elivia nom +elivie elivia nom +ella ella pro +elle elle nom +ellebori elleboro nom +elleboro elleboro nom +ellenica ellenico adj +elleniche ellenico adj +ellenici ellenico adj +ellenico ellenico adj +ellenismo ellenismo nom +ellenista ellenista nom +elleniste ellenista nom +ellenisti ellenista nom +ellenistica ellenistico adj +ellenistiche ellenistico adj +ellenistici ellenistico adj +ellenistico ellenistico adj +ellisse ellisse nom +ellissi ellisse|ellissi nom +ellissografo ellissografo nom +ellissoidale ellissoidale adj +ellissoidali ellissoidale adj +ellissoide ellissoide nom +ellissoidi ellissoide nom +ellittica ellittico adj +ellittiche ellittico adj +ellittici ellittico adj +ellittico ellittico adj +elmetti elmetto nom +elmetto elmetto nom +elmi elmo nom +elminti elminti nom +elmintiasi elmintiasi nom +elmintologia elmintologia nom +elmo elmo nom +elocuzione elocuzione nom +elogerà elogiare ver +elogi elogio nom +elogia elogiare ver +elogiami elogiare ver +elogiando elogiare ver +elogiandola elogiare ver +elogiandolo elogiare ver +elogiandone elogiare ver +elogiano elogiare ver +elogianti elogiare ver +elogiare elogiare ver +elogiarla elogiare ver +elogiarlo elogiare ver +elogiarne elogiare ver +elogiarono elogiare ver +elogiata elogiare ver +elogiate elogiare ver +elogiati elogiare ver +elogiativa elogiativo adj +elogiative elogiativo adj +elogiativi elogiativo adj +elogiativo elogiativo adj +elogiato elogiare ver +elogiava elogiare ver +elogiavano elogiare ver +elogino elogiare ver +elogio elogio nom +elogiò elogiare ver +elongazione elongazione nom +elongazioni elongazione nom +eloquente eloquente adj +eloquenti eloquente adj +eloquenza eloquenza nom +eloqui eloquio nom +eloquio eloquio nom +elsa elsa nom +else elsa nom +elucubrare elucubrare ver +elucubrata elucubrare ver +elucubrazione elucubrazione nom +elucubrazioni elucubrazione nom +eluda eludere ver +elude eludere ver +eludendo eludere ver +eluder eludere ver +eludere eludere ver +eluderebbe eludere ver +eluderla eludere ver +eluderle eludere ver +eluderli eludere ver +eluderlo eludere ver +eluderne eludere ver +eluderà eludere ver +eludesse eludere ver +eludeva eludere ver +eludevano eludere ver +eludo eludere ver +eludono eludere ver +elusa eludere ver +eluse eludere ver +elusero eludere ver +elusi eludere ver +elusione elusione nom +elusiva elusivo adj +elusivamente elusivamente adv +elusive elusivo adj +elusivi elusivo adj +elusività elusività nom +elusivo elusivo adj +eluso eludere ver +elvetica elvetico adj +elvetiche elvetico adj +elvetici elvetico adj +elvetico elvetico adj +elzeviri elzeviro nom +elzeviriana elzeviriano adj +elzeviriani elzeviriano adj +elzevirista elzevirista nom +elzeviristi elzevirista nom +elzeviro elzeviro adj +emaciare emaciare ver +emaciata emaciare ver +emaciate emaciato adj +emaciati emaciato adj +emaciato emaciare ver +emana emanare ver +emanale emanare ver +emanando emanare ver +emanano emanare ver +emanante emanare ver +emananti emanare ver +emanare emanare ver +emanarli emanare ver +emanarlo emanare ver +emanarono emanare ver +emanarsi emanare ver +emanasse emanare ver +emanassero emanare ver +emanata emanare ver +emanate emanare ver +emanati emanare ver +emanatismo emanatismo nom +emanato emanare ver +emanava emanare ver +emanavano emanare ver +emanazione emanazione nom +emanazioni emanazione nom +emancipa emancipare ver +emancipaci emancipare ver +emancipando emancipare ver +emancipandola emancipare ver +emancipandosi emancipare ver +emancipano emancipare ver +emanciparci emancipare ver +emancipare emancipare ver +emanciparono emancipare ver +emanciparsi emancipare ver +emancipata emancipato adj +emancipate emancipato adj +emancipatesi emancipare ver +emancipati emancipato adj +emancipato emancipare ver +emancipatore emancipatore nom +emancipatrice emancipatore nom +emancipatrici emancipatore nom +emancipava emancipare ver +emancipazione emancipazione nom +emancipazioni emancipazione nom +emancipino emancipare ver +emancipò emancipare ver +emanerebbe emanare ver +emanerà emanare ver +emani emanare ver +emanino emanare ver +emano emanare ver +emanò emanare ver +emargina emarginare ver +emarginando emarginare ver +emarginano emarginare ver +emarginante emarginare ver +emarginanti emarginare ver +emarginare emarginare ver +emarginarla emarginare ver +emarginarlo emarginare ver +emarginarono emarginare ver +emarginata emarginare ver +emarginate emarginare ver +emarginati emarginato nom +emarginato emarginare ver +emarginavano emarginare ver +emarginazione emarginazione nom +emarginazioni emarginazione nom +emarginò emarginare ver +ematica ematico adj +ematiche ematico adj +ematici ematico adj +ematico ematico adj +ematina ematina nom +ematite ematite nom +ematiti ematite nom +ematologi ematologo nom +ematologia ematologia nom +ematologo ematologo nom +ematoma ematoma nom +ematomi ematoma nom +ematopoiesi ematopoiesi nom +ematopoietica ematopoietico adj +ematopoietiche ematopoietico adj +ematopoietici ematopoietico adj +ematopoietico ematopoietico adj +ematosi ematosi nom +ematuria ematuria nom +ematurie ematuria nom +emazia emazia nom +emazie emazia nom +embarghi embargo nom +embargo embargo nom +emblema emblema nom +emblematica emblematico adj +emblematiche emblematico adj +emblematici emblematico adj +emblematico emblematico adj +emblemi emblema nom +emboli embolo nom +embolia embolia nom +embolie embolia nom +embolo embolo nom +embricata embricato adj +embricate embricato adj +embricati embricato adj +embricato embricato adj +embrice embrice nom +embrici embrice nom +embriogenesi embriogenesi nom +embriogenia embriogenia nom +embriologi embriologo nom +embriologia embriologia nom +embriologica embriologico adj +embriologiche embriologico adj +embriologici embriologico adj +embriologico embriologico adj +embriologie embriologia nom +embriologo embriologo nom +embrionale embrionale adj +embrionali embrionale adj +embrionari embrionario adj +embrionaria embrionario adj +embrionarie embrionario adj +embrionario embrionario adj +embrione embrione nom +embrioni embrione nom +emenda emendare ver +emendabile emendabile adj +emendabili emendabile adj +emendamenti emendamento nom +emendamento emendamento nom +emendando emendare ver +emendandola emendare ver +emendano emendare ver +emendare emendare ver +emendarla emendare ver +emendarle emendare ver +emendarli emendare ver +emendarlo emendare ver +emendarne emendare ver +emendarono emendare ver +emendarsi emendare ver +emendata emendare ver +emendate emendare ver +emendati emendare ver +emendato emendare ver +emendatore emendatore adj +emendava emendare ver +emendavano emendare ver +emendazione emendazione nom +emendazioni emendazione nom +emenderò emendare ver +emendi emendare ver +emendo emendare ver +emendò emendare ver +emeralopia emeralopia nom +emerga emergere ver +emergano emergere ver +emerge emergere ver +emergendo emergere ver +emergendone emergere ver +emergente emergente adj +emergenti emergente adj +emergenza emergenza nom +emergenze emergenza nom +emerger emergere ver +emergeranno emergere ver +emergere emergere ver +emergerebbe emergere ver +emergerebbero emergere ver +emergerne emergere ver +emergerà emergere ver +emergesse emergere ver +emergessero emergere ver +emergeva emergere ver +emergevano emergere ver +emergi emergere ver +emergo emergere ver +emergono emergere ver +emerita emerito adj +emerite emerito adj +emeriti emerito adj +emerito emerito adj +emeroteca emeroteca nom +emeroteche emeroteca nom +emersa emergere ver +emerse emerso adj +emersero emergere ver +emersi emergere ver +emersione emersione nom +emersioni emersione nom +emerso emergere ver +emessa emettere ver +emesse emettere ver +emessi emettere ver +emesso emettere ver +emetica emetico adj +emetiche emetico adj +emetici emetico adj +emetico emetico adj +emetta emettere ver +emettano emettere ver +emette emettere ver +emettendo emettere ver +emettendola emettere ver +emettendolo emettere ver +emettendone emettere ver +emettente emettere ver +emettenti emettere ver +emetter emettere ver +emetteranno emettere ver +emettere emettere ver +emetterebbe emettere ver +emetterebbero emettere ver +emetterla emettere ver +emetterle emettere ver +emetterli emettere ver +emetterlo emettere ver +emetterne emettere ver +emettersi emettere ver +emetterà emettere ver +emettesse emettere ver +emetteva emettere ver +emettevano emettere ver +emetti emettere ver +emettiamo emettere ver +emettitore emettitore nom +emettitori emettitore nom +emetto emettere ver +emettono emettere ver +emianopsia emianopsia nom +emianopsie emianopsia nom +emicicli emiciclo nom +emiciclo emiciclo nom +emicrania emicrania nom +emicranica emicranico adj +emicraniche emicranico adj +emicranici emicranico adj +emicranico emicranico adj +emicranie emicrania nom +emigra emigrare ver +emigraci emigrare ver +emigrando emigrare ver +emigrano emigrare ver +emigrante emigrante adj +emigranti emigrante nom +emigrar emigrare ver +emigrare emigrare ver +emigrarono emigrare ver +emigrarvi emigrare ver +emigrasse emigrare ver +emigrassero emigrare ver +emigrata emigrare ver +emigrate emigrato adj +emigrati emigrato nom +emigrato emigrare ver +emigratori emigratorio adj +emigratoria emigratorio adj +emigratorie emigratorio adj +emigratorio emigratorio adj +emigrava emigrare ver +emigravano emigrare ver +emigrazione emigrazione nom +emigrazioni emigrazione nom +emigreranno emigrare ver +emigrerà emigrare ver +emigri emigrare ver +emigrino emigrare ver +emigro emigrare ver +emigrò emigrare ver +emiliana emiliano adj +emiliane emiliano adj +emiliani emiliano adj +emiliano emiliano adj +eminente eminente adj +eminentemente eminentemente adv +eminenti eminente adj +eminentissima eminentissimo adj +eminentissimi eminentissimo adj +eminentissimo eminentissimo adj +eminenza eminenza nom +eminenze eminenza nom +emiparassita emiparassita nom +emiparassite emiparassita nom +emiplegia emiplegia nom +emiplegica emiplegico adj +emiplegiche emiplegico adj +emiplegico emiplegico adj +emiplegie emiplegia nom +emirati emirato nom +emirato emirato nom +emiri emiro nom +emiro emiro nom +emise emettere ver +emisero emettere ver +emisferi emisfero nom +emisferica emisferico adj +emisferiche emisferico adj +emisferici emisferico adj +emisferico emisferico adj +emisfero emisfero nom +emisi emettere ver +emissari emissario adj +emissaria emissario adj +emissarie emissario adj +emissario emissario adj +emissione emissione nom +emissioni emissione nom +emissiva emissivo adj +emissive emissivo adj +emissivi emissivo adj +emissivo emissivo adj +emistichi emistichio nom +emistichio emistichio nom +emittente emittente adj +emittenti emittente nom +emittenza emittenza nom +emittenze emittenza nom +emme emme nom +emmental emmental nom +emmetropia emmetropia nom +emmetropie emmetropia nom +emoderivati emoderivato nom +emoderivato emoderivato nom +emodiluizione emodiluizione nom +emofilia emofilia nom +emofiliaca emofiliaco adj +emofiliaci emofiliaco adj +emofilie emofilia nom +emoglobina emoglobina nom +emoglobine emoglobina nom +emolinfa emolinfa nom +emolisi emolisi nom +emolitica emolitico adj +emolitiche emolitico adj +emolitici emolitico adj +emolitico emolitico adj +emolliente emolliente adj +emollienti emolliente adj +emolumenti emolumento nom +emolumento emolumento nom +emopoiesi emopoiesi nom +emopoietica emopoietico adj +emopoietiche emopoietico adj +emopoietici emopoietico adj +emopoietico emopoietico adj +emorragia emorragia nom +emorragica emorragico adj +emorragiche emorragico adj +emorragici emorragico adj +emorragico emorragico adj +emorragie emorragia nom +emorroidale emorroidale adj +emorroidali emorroidale adj +emorroide emorroide nom +emorroidi emorroide nom +emostasi emostasi nom +emostatica emostatico adj +emostatiche emostatico adj +emostatici emostatico adj +emostatico emostatico adj +emotiva emotivo adj +emotivamente emotivamente adv +emotive emotivo adj +emotivi emotivo adj +emotività emotività nom +emotivo emotivo adj +emottisi emottisi nom +emoziona emozionare ver +emozionale emozionale adj +emozionali emozionale adj +emozionando emozionare ver +emozionandosi emozionare ver +emozionano emozionare ver +emozionante emozionante adj +emozionanti emozionante adj +emozionare emozionare ver +emozionarsi emozionare ver +emozionata emozionare ver +emozionate emozionare ver +emozionati emozionare ver +emozionato emozionare ver +emozionava emozionare ver +emozione emozione nom +emozioni emozione nom +emozioniamoci emozionare ver +emozionò emozionare ver +empatia empatia nom +empatie empatia nom +empi empio adj +empia empio adj +empiamo empiere|empire ver +empiastri empiastro nom +empiastro empiastro nom +empie empio adj +empiendo empiere ver +empiendola empiere ver +empiente empiere ver +empiere empiere ver +empietà empietà nom +empio empio adj +empiono empiere ver +empir empire ver +empiranno empiere|empire ver +empire empire ver +empireo empireo adj +empirica empirico adj +empiricamente empiricamente adv +empiriche empirico adj +empirici empirico adj +empirico empirico adj +empirismi empirismo nom +empirismo empirismo nom +empirista empirista nom +empiriste empirista nom +empiristi empirista nom +empissi empiere|empire ver +empiste empiere|empire ver +empito empito nom +empiva empiere|empire ver +empivano empiere|empire ver +empori emporio nom +emporio emporio nom +empì empiere|empire ver +emula emulare ver +emulando emulare ver +emulandoli emulare ver +emulandone emulare ver +emulano emulare ver +emulante emulare ver +emular emulare ver +emulare emulare ver +emularla emulare ver +emularle emulare ver +emularli emulare ver +emularlo emulare ver +emularne emulare ver +emularono emulare ver +emulasse emulare ver +emulassero emulare ver +emulata emulare ver +emulate emulare ver +emulati emulare ver +emulativa emulativo adj +emulative emulativo adj +emulativi emulativo adj +emulativo emulativo adj +emulato emulare ver +emulatore emulatore adj +emulatori emulatore nom +emulatrice emulatore adj +emulava emulare ver +emulavano emulare ver +emulazione emulazione nom +emulazioni emulazione nom +emule emulo nom +emuleranno emulare ver +emuli emulo nom +emulo emulo nom +emulsiona emulsionare ver +emulsionabile emulsionabile adj +emulsionando emulsionare ver +emulsionante emulsionare ver +emulsionanti emulsionare ver +emulsionare emulsionare ver +emulsionata emulsionare ver +emulsionate emulsionare ver +emulsionati emulsionare ver +emulsionato emulsionare ver +emulsionatore emulsionatore nom +emulsionatori emulsionatore nom +emulsione emulsione nom +emulsioni emulsione nom +emulò emulare ver +emuntori emuntorio nom +emuntorio emuntorio nom +emù emù nom +enallage enallage nom +enantiomorfismo enantiomorfismo nom +enantiotropia enantiotropia nom +enarmonia enarmonia nom +enarmonica enarmonico adj +enarmoniche enarmonico adj +enarmonici enarmonico adj +enarmonico enarmonico adj +enartrosi enartrosi nom +encausti encausto nom +encausto encausto nom +encefali encefalo nom +encefalica encefalico adj +encefaliche encefalico adj +encefalici encefalico adj +encefalico encefalico adj +encefalite encefalite nom +encefaliti encefalite nom +encefalitica encefalitico adj +encefalitici encefalitico adj +encefalo encefalo nom +encefalografico encefalografico nom +encefalopatia encefalopatia nom +encefalopatie encefalopatia nom +enciclica enciclico adj +encicliche enciclico adj +enciclici enciclico adj +enciclico enciclico adj +enciclopedia enciclopedia nom +enciclopedica enciclopedico adj +enciclopediche enciclopedico adj +enciclopedici enciclopedico adj +enciclopedico enciclopedico adj +enciclopedie enciclopedia nom +enciclopedismo enciclopedismo nom +enciclopedista enciclopedista nom +enciclopedisti enciclopedista nom +enclave enclave nom +enclisi enclisi nom +enclitica enclitico adj +enclitiche enclitico adj +enclitici enclitico adj +enclitico enclitico adj +encomi encomio nom +encomia encomiare ver +encomiabile encomiabile adj +encomiabili encomiabile adj +encomiando encomiare ver +encomiano encomiare ver +encomiare encomiare ver +encomiastica encomiastico adj +encomiastiche encomiastico adj +encomiastici encomiastico adj +encomiastico encomiastico adj +encomiata encomiare ver +encomiati encomiare ver +encomiato encomiare ver +encomiava encomiare ver +encomii encomiare ver +encomio encomio nom +encomiò encomiare ver +endecasillabi endecasillabo nom +endecasillabo endecasillabo adj +endemia endemia nom +endemica endemico adj +endemiche endemico adj +endemici endemico adj +endemicità endemicità nom +endemico endemico adj +endemie endemia nom +endiadi endiadi nom +endocardio endocardio nom +endocardite endocardite nom +endocarditi endocardite nom +endocarpi endocarpo nom +endocarpo endocarpo nom +endocranica endocranico adj +endocraniche endocranico adj +endocranici endocranico adj +endocranico endocranico adj +endocrina endocrino adj +endocrine endocrino adj +endocrini endocrino adj +endocrino endocrino adj +endocrinologi endocrinologo nom +endocrinologia endocrinologia nom +endocrinologie endocrinologia nom +endocrinologo endocrinologo nom +endoderma endoderma nom +endoderme endoderma nom +endogena endogeno adj +endogene endogeno adj +endogeni endogeno adj +endogeno endogeno adj +endoparassita endoparassita nom +endoparassiti endoparassita nom +endoplasma endoplasma nom +endoreattore endoreattore nom +endoreattori endoreattore nom +endoscopi endoscopio nom +endoscopia endoscopia nom +endoscopica endoscopico adj +endoscopiche endoscopico adj +endoscopici endoscopico adj +endoscopico endoscopico adj +endoscopie endoscopia nom +endoscopio endoscopio nom +endoteli endotelio nom +endotelio endotelio nom +endotermica endotermico adj +endotermiche endotermico adj +endotermici endotermico adj +endotermico endotermico adj +endovena endovena adv +endovene endovena nom +endovenosa endovenoso adj +endovenose endovenoso adj +endovenosi endovenoso adj +endovenoso endovenoso adj +eneolitica eneolitico adj +eneolitiche eneolitico adj +eneolitici eneolitico adj +eneolitico eneolitico adj +energetica energetico adj +energetiche energetico adj +energetici energetico adj +energetico energetico adj +energia energia nom +energica energico adj +energicamente energicamente adv +energiche energico adj +energici energico adj +energico energico adj +energie energia nom +energumena energumeno nom +energumeni energumeno nom +energumeno energumeno nom +enfasi enfasi nom +enfatica enfatico adj +enfatiche enfatico adj +enfatici enfatico adj +enfatico enfatico adj +enfatizza enfatizzare ver +enfatizzando enfatizzare ver +enfatizzandola enfatizzare ver +enfatizzandolo enfatizzare ver +enfatizzandone enfatizzare ver +enfatizzano enfatizzare ver +enfatizzante enfatizzare ver +enfatizzanti enfatizzare ver +enfatizzare enfatizzare ver +enfatizzarle enfatizzare ver +enfatizzarli enfatizzare ver +enfatizzarlo enfatizzare ver +enfatizzarne enfatizzare ver +enfatizzarono enfatizzare ver +enfatizzasse enfatizzare ver +enfatizzassero enfatizzare ver +enfatizzata enfatizzare ver +enfatizzate enfatizzare ver +enfatizzati enfatizzare ver +enfatizzato enfatizzare ver +enfatizzava enfatizzare ver +enfatizzavano enfatizzare ver +enfatizzerebbe enfatizzare ver +enfatizzerei enfatizzare ver +enfatizzerà enfatizzare ver +enfatizzi enfatizzare ver +enfatizziamo enfatizzare ver +enfatizzino enfatizzare ver +enfatizzo enfatizzare ver +enfatizzò enfatizzare ver +enfi enfio adj +enfisema enfisema nom +enfisematosa enfisematoso adj +enfisematose enfisematoso adj +enfisematosi enfisematoso adj +enfisematoso enfisematoso adj +enfisemi enfisema nom +enfiteusi enfiteusi nom +enfiteuta enfiteuta nom +enfiteuti enfiteuta nom +enfiteutica enfiteutico adj +enfiteutiche enfiteutico adj +enfiteutici enfiteutico adj +enfiteutico enfiteutico adj +engagement engagement nom +engagé engagé adj +engeneering engeneering nom +enigma enigma nom +enigmatica enigmatico adj +enigmatiche enigmatico adj +enigmatici enigmatico adj +enigmatico enigmatico adj +enigmi enigma nom +enigmista enigmista nom +enigmisti enigmista nom +enigmistica enigmistico adj +enigmistiche enigmistico adj +enigmistici enigmistico adj +enigmistico enigmistico adj +ennagoni ennagono nom +ennagono ennagono nom +enne enne nom +ennesima ennesimo adj +ennesime ennesimo adj +ennesimi ennesimo adj +ennesimo ennesimo adj +enocianina enocianina nom +enofila enofilo adj +enofilo enofilo adj +enologi enologo nom +enologia enologia nom +enologica enologico adj +enologiche enologico adj +enologici enologico adj +enologico enologico adj +enologo enologo nom +enopolio enopolio nom +enorme enorme adj +enormemente enormemente adv +enormi enorme adj +enormità enormità nom +enoteca enoteca nom +enoteche enoteca nom +enotecnica enotecnica nom +ensiforme ensiforme adj +ensiformi ensiforme adj +entalpia entalpia nom +entalpie entalpia nom +entasi entasi nom +ente ente nom +entelechia entelechia nom +entelechie entelechia nom +enterica enterico adj +enteriche enterico adj +enterici enterico adj +enterico enterico adj +enterite enterite nom +enteriti enterite nom +enteroclisma enteroclisma nom +enteroclismi enteroclisma nom +enterocolite enterocolite nom +enterocoliti enterocolite nom +enteropatia enteropatia nom +enteropatie enteropatia nom +enti ente nom +entità entità nom +entomofago entomofago nom +entomofila entomofilo adj +entomofile entomofilo adj +entomofilia entomofilia nom +entomofilo entomofilo adj +entomologi entomologo nom +entomologia entomologia nom +entomologica entomologico adj +entomologiche entomologico adj +entomologici entomologico adj +entomologico entomologico adj +entomologie entomologia nom +entomologo entomologo nom +entourage entourage nom +entra entrare ver +entraci entrare ver +entrai entrare ver +entrala entrare ver +entrale entrare ver +entrali entrare ver +entrambe entrambi adj_sup +entrambi entrambi adj_sup +entrami entrare ver +entrammo entrare ver +entrando entrare ver +entrandoci entrare ver +entrandone entrare ver +entrandovi entrare ver +entrane entrare ver +entrano entrare ver +entrante entrante adj +entranti entrante adj +entrar entrare ver +entrarci entrare ver +entrare entrare ver +entrargli entrare ver +entrarle entrare ver +entrarmi entrare ver +entrarne entrare ver +entrarono entrare ver +entrarti entrare ver +entrarvi entrare ver +entrasi entrare ver +entrasse entrare ver +entrassero entrare ver +entrassi entrare ver +entrassimo entrare ver +entrasti entrare ver +entrata entrata nom +entrate entrata nom +entrati entrare ver +entrato entrare ver +entratura entratura nom +entrature entratura nom +entrava entrare ver +entravamo entrare ver +entravano entrare ver +entravi entrare ver +entravo entrare ver +entraîneuse entraîneuse nom +entrecôte entrecôte nom +entrerai entrare ver +entreranno entrare ver +entrerebbe entrare ver +entrerebbero entrare ver +entrerei entrare ver +entreremmo entrare ver +entreremo entrare ver +entrerete entrare ver +entrerà entrare ver +entrerò entrare ver +entri entrare ver +entriamo entrare ver +entrino entrare ver +entro entro pre +entrobordo entrobordo adj +entropia entropia nom +entropie entropia nom +entroterra entroterra nom +entrò entrare ver +entusiasma entusiasmare ver +entusiasmando entusiasmare ver +entusiasmandosi entusiasmare ver +entusiasmano entusiasmare ver +entusiasmante entusiasmare ver +entusiasmanti entusiasmare ver +entusiasmare entusiasmare ver +entusiasmarla entusiasmare ver +entusiasmarlo entusiasmare ver +entusiasmarmi entusiasmare ver +entusiasmarono entusiasmare ver +entusiasmarsene entusiasmare ver +entusiasmarsi entusiasmare ver +entusiasmata entusiasmare ver +entusiasmate entusiasmare ver +entusiasmati entusiasmare ver +entusiasmato entusiasmare ver +entusiasmava entusiasmare ver +entusiasmavano entusiasmare ver +entusiasmerà entusiasmare ver +entusiasmi entusiasmo nom +entusiasmo entusiasmo nom +entusiasmò entusiasmare ver +entusiasta entusiasta nom +entusiaste entusiasta nom +entusiasti entusiasta nom +entusiastica entusiastico adj +entusiastiche entusiastico adj +entusiastici entusiastico adj +entusiastico entusiastico adj +enuclea enucleare ver +enucleando enucleare ver +enucleano enucleare ver +enucleare enucleare ver +enucleata enucleare ver +enucleate enucleare ver +enucleati enucleare ver +enucleato enucleare ver +enucleazione enucleazione nom +enucleò enucleare ver +enumera enumerare ver +enumeraci enumerare ver +enumerando enumerare ver +enumerandone enumerare ver +enumerano enumerare ver +enumerare enumerare ver +enumerarla enumerare ver +enumerarle enumerare ver +enumerarli enumerare ver +enumerarne enumerare ver +enumerata enumerare ver +enumerate enumerare ver +enumerati enumerare ver +enumerato enumerare ver +enumerava enumerare ver +enumeravano enumerare ver +enumerazione enumerazione nom +enumerazioni enumerazione nom +enumeri enumerare ver +enumeriamo enumerare ver +enumero enumerare ver +enumerò enumerare ver +enuncerà enunciare ver +enunci enunciare ver +enuncia enunciare ver +enunciamo enunciare ver +enunciando enunciare ver +enunciandone enunciare ver +enunciano enunciare ver +enunciante enunciare ver +enunciare enunciare ver +enunciarla enunciare ver +enunciarlo enunciare ver +enunciarne enunciare ver +enunciarono enunciare ver +enunciasse enunciare ver +enunciata enunciare ver +enunciate enunciare ver +enunciati enunciato nom +enunciativa enunciativo adj +enunciative enunciativo adj +enunciativo enunciativo adj +enunciato enunciare ver +enunciava enunciare ver +enunciavano enunciare ver +enunciazione enunciazione nom +enunciazioni enunciazione nom +enuncio enunciare ver +enunciò enunciare ver +enuresi enuresi nom +enzima enzima nom +enzimatica enzimatico adj +enzimatiche enzimatico adj +enzimatici enzimatico adj +enzimatico enzimatico adj +enzimi enzima nom +eocene eocene nom +eolica eolico adj +eoliche eolico adj +eolici eolico adj +eolico eolico adj +epa epa nom +eparina eparina nom +eparine eparina nom +epatica epatico adj +epatiche epatico adj +epatici epatico adj +epatico epatico adj +epatite epatite nom +epatiti epatite nom +epatobiliare epatobiliare adj +epatobiliari epatobiliare adj +epatoprotettiva epatoprotettivo adj +epatoprotettive epatoprotettivo adj +epatta epatta nom +epatte epatta nom +epe epa nom +epeira epeira nom +epeire epeira nom +epentesi epentesi nom +epica epico adj +epicardio epicardio nom +epicarpo epicarpo nom +epicedi epicedio nom +epicedio epicedio nom +epicentri epicentro nom +epicentro epicentro nom +epiche epico adj +epici epico adj +epicicli epiciclo nom +epiciclo epiciclo nom +epicicloidale epicicloidale adj +epicicloidali epicicloidale adj +epicicloide epicicloide nom +epicicloidi epicicloide nom +epicloridrina epicloridrina nom +epico epico adj +epicrisi epicrisi nom +epicurea epicureo adj +epicuree epicureo adj +epicurei epicureo adj +epicureismo epicureismo nom +epicureo epicureo adj +epidemia epidemia nom +epidemica epidemico adj +epidemiche epidemico adj +epidemici epidemico adj +epidemico epidemico adj +epidemie epidemia nom +epidemiologi epidemiologo nom +epidemiologia epidemiologia nom +epidemiologica epidemiologico adj +epidemiologiche epidemiologico adj +epidemiologici epidemiologico adj +epidemiologico epidemiologico adj +epidemiologie epidemiologia nom +epidemiologo epidemiologo nom +epidermica epidermico adj +epidermiche epidermico adj +epidermici epidermico adj +epidermico epidermico adj +epidermide epidermide nom +epidermidi epidermide nom +epididimi epididimo nom +epididimo epididimo nom +epidittica epidittico adj +epidittiche epidittico adj +epidittici epidittico adj +epidittico epidittico adj +epifania epifania nom +epifanie epifania nom +epifenomeni epifenomeno nom +epifenomeno epifenomeno nom +epifisi epifisi nom +epifita epifita nom +epifite epifita nom +epifonema epifonema nom +epigastrica epigastrico adj +epigastriche epigastrico adj +epigastrici epigastrico adj +epigastrico epigastrico adj +epigastrio epigastrio nom +epigea epigeo adj +epigee epigeo adj +epigei epigeo adj +epigeo epigeo adj +epiglottide epiglottide nom +epigoni epigono nom +epigono epigono nom +epigrafe epigrafe nom +epigrafi epigrafe nom +epigrafia epigrafia nom +epigrafica epigrafico adj +epigrafiche epigrafico adj +epigrafici epigrafico adj +epigrafico epigrafico adj +epigrafie epigrafia nom +epigrafista epigrafista nom +epigrafisti epigrafista nom +epigramma epigramma nom +epigrammatica epigrammatica nom +epigrammatiche epigrammatica nom +epigrammi epigramma nom +epigrammista epigrammista nom +epigrammisti epigrammista nom +epilessia epilessia nom +epilessie epilessia nom +epilettica epilettico adj +epilettiche epilettico adj +epilettici epilettico adj +epilettico epilettico adj +epilettoide epilettoide adj +epiloghi epilogo nom +epilogo epilogo nom +epinici epinicio nom +epinicio epinicio nom +episcopale episcopale adj +episcopali episcopale adj +episcopati episcopato nom +episcopato episcopato nom +episcopi episcopio nom +episcopio episcopio nom +episodi episodio nom +episodica episodico adj +episodiche episodico adj +episodici episodico adj +episodico episodico adj +episodio episodio nom +epistassi epistassi nom +epistemologi epistemologo nom +epistemologia epistemologia nom +epistemologie epistemologia nom +epistemologo epistemologo nom +epistola epistola nom +epistolare epistolare adj +epistolari epistolare adj +epistolario epistolario nom +epistole epistola nom +epistolografi epistolografo nom +epistolografia epistolografia nom +epistolografo epistolografo nom +epistrofe epistrofe nom +epistrofeo epistrofeo nom +epistrofi epistrofe nom +epitaffi epitaffio nom +epitaffio epitaffio nom +epitalami epitalamio|epitalamo nom +epitalamio epitalamio nom +epitalamo epitalamo nom +epiteli epitelio nom +epiteliale epiteliale adj +epiteliali epiteliale adj +epitelio epitelio nom +epitelioma epitelioma nom +epiteliomi epitelioma nom +epitesi epitesi nom +epiteti epiteto nom +epiteto epiteto nom +epitoma epitomare ver +epitomata epitomare ver +epitomato epitomare ver +epitome epitome nom +epitomi epitome nom +epitomo epitomare ver +epizootica epizootico adj +epizootiche epizootico adj +epizootici epizootico adj +epizootico epizootico adj +epizoozia epizoozia nom +epizoozie epizoozia nom +epoca epoca nom +epoche epoca nom +epodi epodo nom +epodo epodo nom +eponima eponimo adj +eponime eponimo adj +eponimi eponimo adj +eponimo eponimo adj +epopea epopea nom +epopee epopea nom +eporediese eporediese adj +eporediesi eporediese nom +epos epos nom +eppoi eppoi adv +eppure eppure adv_sup +epsomite epsomite nom +eptano eptano nom +eptasillabi eptasillabo nom +epulone epulone nom +epuloni epulone nom +epura epurare ver +epurando epurare ver +epurandola epurare ver +epurandoli epurare ver +epurare epurare ver +epurarla epurare ver +epurarlo epurare ver +epurarono epurare ver +epurarsi epurare ver +epurata epurare ver +epurate epurare ver +epurati epurare ver +epurato epurare ver +epurazione epurazione nom +epurazioni epurazione nom +epurò epurare ver +equa equo adj +equalizzatore equalizzatore nom +equalizzatori equalizzatore nom +equamente equamente adv +equanime equanime adj +equanimi equanime adj +equanimità equanimità nom +equatore equatore nom +equatori equatore nom +equatoriale equatoriale adj +equatoriali equatoriale adj +equazione equazione nom +equazioni equazione nom +eque equo adj +equestre equestre adj +equestri equestre adj +equi equo adj +equiangoli equiangolo nom +equiangolo equiangolo nom +equidi equidi nom +equidistante equidistante adj +equidistanti equidistante adj +equidistanza equidistanza nom +equidistanze equidistanza nom +equilatera equilatero adj +equilatere equilatero adj +equilateri equilatero adj +equilatero equilatero adj +equilibra equilibrare ver +equilibrando equilibrare ver +equilibrandoli equilibrare ver +equilibrano equilibrare ver +equilibrante equilibrare ver +equilibranti equilibrare ver +equilibrare equilibrare ver +equilibrarla equilibrare ver +equilibrarli equilibrare ver +equilibrarlo equilibrare ver +equilibrarne equilibrare ver +equilibrarsi equilibrare ver +equilibrata equilibrare ver +equilibrate equilibrato adj +equilibrati equilibrato adj +equilibrato equilibrare ver +equilibratore equilibratore adj +equilibratori equilibratore adj +equilibratrice equilibratore adj +equilibratrici equilibratore adj +equilibratura equilibratura nom +equilibrava equilibrare ver +equilibravano equilibrare ver +equilibreranno equilibrare ver +equilibrerà equilibrare ver +equilibri equilibrio nom +equilibrio equilibrio nom +equilibrismi equilibrismo nom +equilibrismo equilibrismo nom +equilibrista equilibrista nom +equilibristi equilibrista nom +equilibro equilibrare ver +equilibrò equilibrare ver +equina equino adj +equine equino adj +equini equino adj +equino equino adj +equinozi equinozio nom +equinoziale equinoziale adj +equinoziali equinoziale adj +equinozio equinozio nom +equipaggeranno equipaggiare ver +equipaggerà equipaggiare ver +equipaggi equipaggio nom +equipaggia equipaggiare ver +equipaggiamenti equipaggiamento nom +equipaggiamento equipaggiamento nom +equipaggiamo equipaggiare ver +equipaggiando equipaggiare ver +equipaggiandola equipaggiare ver +equipaggiandole equipaggiare ver +equipaggiandoli equipaggiare ver +equipaggiandolo equipaggiare ver +equipaggiandosi equipaggiare ver +equipaggiano equipaggiare ver +equipaggiante equipaggiare ver +equipaggianti equipaggiare ver +equipaggiare equipaggiare ver +equipaggiarla equipaggiare ver +equipaggiarle equipaggiare ver +equipaggiarli equipaggiare ver +equipaggiarlo equipaggiare ver +equipaggiarne equipaggiare ver +equipaggiarono equipaggiare ver +equipaggiarsi equipaggiare ver +equipaggiasse equipaggiare ver +equipaggiata equipaggiare ver +equipaggiate equipaggiare ver +equipaggiati equipaggiare ver +equipaggiato equipaggiare ver +equipaggiava equipaggiare ver +equipaggiavano equipaggiare ver +equipaggio equipaggio nom +equipaggiò equipaggiare ver +equipara equiparare ver +equiparabile equiparabile adj +equiparabili equiparabile adj +equiparando equiparare ver +equiparandola equiparare ver +equiparandole equiparare ver +equiparandoli equiparare ver +equiparandolo equiparare ver +equiparandosi equiparare ver +equiparano equiparare ver +equiparare equiparare ver +equipararla equiparare ver +equipararli equiparare ver +equipararlo equiparare ver +equipararono equiparare ver +equipararsi equiparare ver +equiparata equiparare ver +equiparate equiparare ver +equiparati equiparare ver +equiparato equiparare ver +equiparava equiparare ver +equiparavano equiparare ver +equiparavo equiparare ver +equiparazione equiparazione nom +equiparazioni equiparazione nom +equiparerei equiparare ver +equipariamo equiparare ver +equiparo equiparare ver +equipartizione equipartizione nom +equiparò equiparare ver +equipe equipe nom +equipollente equipollente adj +equipollenti equipollente adj +equipollenza equipollenza nom +equipollenze equipollenza nom +equiseti equiseto nom +equiseto equiseto nom +equitazione equitazione nom +equità equità nom +equivale equivalere ver +equivalendo equivalere ver +equivalente equivalente adj +equivalentemente equivalentemente adv +equivalenti equivalente adj +equivalenza equivalenza nom +equivalenze equivalenza nom +equivalere equivalere ver +equivalersi equivalere ver +equivalesse equivalere ver +equivalessero equivalere ver +equivaleva equivalere ver +equivalevano equivalere ver +equivalga equivalere ver +equivalgano equivalere ver +equivalgono equivalere ver +equivalsa equivalere ver +equivalse equivalere ver +equivalsero equivalere ver +equivalso equivalere ver +equivarrebbe equivalere ver +equivarrebbero equivalere ver +equivarrà equivalere ver +equivoca equivoco adj +equivocando equivocare ver +equivocano equivocare ver +equivocare equivocare ver +equivocarono equivocare ver +equivocasse equivocare ver +equivocata equivocare ver +equivocate equivocare ver +equivocati equivocare ver +equivocato equivocare ver +equivoche equivoco adj +equivocherà equivocare ver +equivochi equivocare ver +equivochiamo equivocare ver +equivoci equivoco nom +equivocità equivocità nom +equivoco equivoco nom +equivocò equivocare ver +equo equo adj +era essere ver_sup +eradicare eradicare ver +eradicazione eradicazione nom +erano essere ver_sup +erari erario nom +erariale erariale adj +erariali erariale adj +erario erario nom +eravamo essere ver_sup +eravate essere ver +erba erba nom +erbacea erbaceo adj +erbacee erbaceo adj +erbacei erbaceo adj +erbaceo erbaceo adj +erbaggi erbaggio nom +erbaggio erbaggio nom +erbai erbaio nom +erbaio erbaio nom +erbaiolo erbaiolo nom +erbari erbario nom +erbario erbario nom +erbe erba nom +erbi erbio nom +erbicida erbicida nom +erbio erbio nom +erbivendola erbivendolo nom +erbivendole erbivendolo nom +erbivendoli erbivendolo nom +erbivendolo erbivendolo nom +erbivora erbivoro adj +erbivore erbivoro adj +erbivori erbivoro adj +erbivoro erbivoro adj +erborista erborista nom +erboriste erborista nom +erboristeria erboristeria nom +erboristerie erboristeria nom +erboristi erborista nom +erbosa erboso adj +erbose erboso adj +erbosi erboso adj +erboso erboso adj +ercole ercole nom +ercoli ercole nom +erculea erculeo adj +erculee erculeo adj +erculei erculeo adj +erculeo erculeo adj +ere era nom +erebo erebo nom +erede erede nom +eredi erede nom +eredita ereditare ver +ereditando ereditare ver +ereditandola ereditare ver +ereditandoli ereditare ver +ereditandolo ereditare ver +ereditandone ereditare ver +ereditano ereditare ver +ereditar ereditare ver +ereditare ereditare ver +ereditari ereditario adj +ereditaria ereditario adj +ereditariamente ereditariamente adv +ereditarie ereditario adj +ereditarietà ereditarietà nom +ereditario ereditario adj +ereditarla ereditare ver +ereditarlo ereditare ver +ereditarne ereditare ver +ereditarono ereditare ver +ereditasse ereditare ver +ereditassero ereditare ver +ereditata ereditare ver +ereditate ereditare ver +ereditati ereditare ver +ereditato ereditare ver +ereditava ereditare ver +ereditavano ereditare ver +erediteranno ereditare ver +erediterebbe ereditare ver +erediterà ereditare ver +erediti ereditare ver +ereditiamo ereditare ver +ereditiera ereditiera nom +ereditiere ereditiera nom +ereditino ereditare ver +eredito ereditare ver +eredità eredità nom +ereditò ereditare ver +eremi eremo nom +eremita eremita nom +eremitaggi eremitaggio nom +eremitaggio eremitaggio nom +eremitani eremitano nom +eremitano eremitano nom +eremiti eremita nom +eremitica eremitico adj +eremitiche eremitico adj +eremitici eremitico adj +eremitico eremitico adj +eremo eremo nom +eresia eresia nom +eresiarca eresiarca nom +eresiarchi eresiarca nom +eresie eresia nom +eresse erigere ver +eressero erigere ver +eressi erigere ver +eretica eretico adj +ereticale ereticale adj +ereticali ereticale adj +eretiche eretico adj +eretici eretico nom +eretico eretico adj +eretismo eretismo nom +eretta erigere ver +erette erigere ver +eretti erigere ver +erettile erettile adj +erettili erettile adj +eretto erigere ver +erettore erettore adj +erettori erettore adj +erezione erezione nom +erezioni erezione nom +erg erg nom +erga ergere ver +ergano ergere ver +ergastolana ergastolano nom +ergastolani ergastolano nom +ergastolano ergastolano nom +ergastoli ergastolo nom +ergastolo ergastolo nom +erge ergere ver +ergendo ergere ver +ergendomi ergere ver +ergendosi ergere ver +erger ergere ver +ergerci ergere ver +ergere ergere ver +ergerebbe ergere ver +ergermi ergere ver +ergersi ergere ver +ergerti ergere ver +ergervi ergere ver +ergerà ergere ver +ergesse ergere ver +ergessero ergere ver +ergeva ergere ver +ergevano ergere ver +ergi ergere ver +ergici ergere ver +ergili ergere ver +ergine ergere ver +ergo ergo con +ergometro ergometro nom +ergono ergere ver +ergonomia ergonomia nom +ergonomiche ergonomico adj +ergonomici ergonomico adj +ergoterapia ergoterapia nom +ergotine ergotina nom +ergotismo ergotismo nom +eri essere ver +eribanno eribanno nom +erica erica nom +ericacee ericacee nom +ericali ericali nom +eriche erica nom +eriga erigere ver +erige erigere ver +erigenda erigendo adj +erigende erigendo adj +erigendi erigendo adj +erigendo erigere ver +erigendogli erigere ver +erigendola erigere ver +erigendolo erigere ver +erigendosi erigere ver +erigendovi erigere ver +erigerai erigere ver +erigeranno erigere ver +erigere erigere ver +erigergli erigere ver +erigerla erigere ver +erigerle erigere ver +erigerlo erigere ver +erigermi erigere ver +erigerne erigere ver +erigersi erigere ver +erigervi erigere ver +erigerà erigere ver +erigesse erigere ver +erigessero erigere ver +erigeva erigere ver +erigevano erigere ver +erigi erigere ver +erigibile erigibile adj +erigibili erigibile adj +erigono erigere ver +erinni erinni nom +erisipela erisipela nom +eristica eristica nom +eristiche eristica nom +eritema eritema nom +eritemi eritema nom +eritremia eritremia nom +eritremie eritremia nom +eritrocita eritrocita nom +eritrociti eritrocita nom +erma ermo adj +ermafrodita ermafrodito adj +ermafrodite ermafrodito adj +ermafroditi ermafrodito adj +ermafroditismo ermafroditismo nom +ermafrodito ermafrodito adj +erme ermo adj +ermellini ermellino nom +ermellino ermellino nom +ermeneuta ermeneuta nom +ermeneutica ermeneutica nom +ermeneutiche ermeneutica nom +ermetica ermetico adj +ermeticamente ermeticamente adv +ermetiche ermetico adj +ermetici ermetico adj +ermetico ermetico adj +ermetismi ermetismo nom +ermetismo ermetismo nom +ermi ermo adj +ermo ermo adj +ernia ernia nom +erniaria erniario adj +erniarie erniario adj +erniario erniario adj +ernie ernia nom +erniotomia erniotomia nom +ero essere ver_sup +eroda erodere ver +erodano erodere ver +erode erodere ver +erodendo erodere ver +erodendolo erodere ver +erodendone erodere ver +eroderanno erodere ver +erodere erodere ver +eroderli erodere ver +eroderne erodere ver +erodersi erodere ver +eroderà erodere ver +erodesse erodere ver +erodeva erodere ver +erodevano erodere ver +erodi erodere ver +erodono erodere ver +eroe eroe nom +eroga erogare ver +erogabile erogabile adj +erogabili erogabile adj +erogami erogare ver +erogando erogare ver +erogano erogare ver +erogante erogare ver +eroganti erogare ver +erogare erogare ver +erogarla erogare ver +erogarlo erogare ver +erogarne erogare ver +erogarono erogare ver +erogarsi erogare ver +erogasse erogare ver +erogassero erogare ver +erogata erogare ver +erogate erogare ver +erogati erogare ver +erogato erogare ver +erogatore erogatore adj +erogatori erogatore nom +erogatrice erogatore adj +erogatrici erogatore adj +erogava erogare ver +erogavano erogare ver +erogazione erogazione nom +erogazioni erogazione nom +erogherà erogare ver +eroghi erogare ver +eroghino erogare ver +erogò erogare ver +eroi eroe nom +eroica eroico adj +eroiche eroico adj +eroici eroico adj +eroicità eroicità nom +eroicizzare eroicizzare ver +eroicizzata eroicizzare ver +eroico eroico adj +eroicomica eroicomico adj +eroicomiche eroicomico adj +eroicomici eroicomico adj +eroicomico eroicomico adj +eroina eroina nom +eroine eroina nom +eroinomane eroinomane nom +eroinomani eroinomane nom +eroismi eroismo nom +eroismo eroismo nom +erompe erompere ver +erompente erompere ver +erompenti erompere ver +erompere erompere ver +eromperà erompere ver +erompeva erompere ver +erompono erompere ver +eros eros nom +erosa erodere ver +erose erodere ver +erosero erodere ver +erosi erodere ver +erosione erosione nom +erosioni erosione nom +erosiva erosivo adj +erosive erosivo adj +erosivi erosivo adj +erosivo erosivo adj +eroso erodere ver +erotica erotico adj +erotiche erotico adj +erotici erotico adj +erotico erotico adj +erotismo erotismo nom +erotizzati erotizzare ver +erotizzato erotizzare ver +erotto erompere ver +erpete erpete nom +erpetica erpetico adj +erpetici erpetico adj +erpetico erpetico adj +erpetologia erpetologia nom +erpetologie erpetologia nom +erpicato erpicare ver +erra errare ver +errabonda errabondo adj +errabonde errabondo adj +errabondi errabondo adj +errabondo errabondo adj +errai errare ver +errando errare ver +errano errare ver +errante errare ver +erranti errare ver +errar errare ver +errare errare ver +errarono errare ver +errasse errare ver +errasti errare ver +errata errare ver +errate errato adj +errati errato adj +erratica erratico adj +erratiche erratico adj +erratici erratico adj +erratico erratico adj +errato errare ver +errava errare ver +erravano errare ver +erravate errare ver +erravo errare ver +erre erre nom +errerebbe errare ver +errerà errare ver +erri errare ver +erriamo errare ver +erro errare ver +erronea erroneo adj +erroneamente erroneamente adv +erronee erroneo adj +erronei erroneo adj +erroneità erroneità nom +erroneo erroneo adj +errore errore nom +errori errore nom +errò errare ver +erse ergere ver +ersero ergere ver +ersi ergere ver +erta erto adj +erte erto adj +erti ergere ver +erto ergere ver +erudire erudire ver +erudisca erudire ver +erudisce erudire ver +erudisco erudire ver +erudita erudito adj +erudite erudito adj +eruditi erudito nom +erudito erudito adj +erudizione erudizione nom +erudizioni erudizione nom +eruppe erompere ver +eruppero erompere ver +erutta eruttare ver +eruttando eruttare ver +eruttano eruttare ver +eruttanti eruttare ver +eruttare eruttare ver +eruttata eruttare ver +eruttate eruttare ver +eruttati eruttare ver +eruttato eruttare ver +eruttava eruttare ver +eruttavano eruttare ver +eruttazione eruttazione nom +eruttazioni eruttazione nom +erutterà eruttare ver +erutti eruttare ver +eruttiva eruttivo adj +eruttive eruttivo adj +eruttivi eruttivo adj +eruttivo eruttivo adj +eruttò eruttare ver +eruzione eruzione nom +eruzioni eruzione nom +es es sw +esacerba esacerbare ver +esacerbando esacerbare ver +esacerbano esacerbare ver +esacerbanti esacerbare ver +esacerbare esacerbare ver +esacerbarono esacerbare ver +esacerbarsi esacerbare ver +esacerbata esacerbare ver +esacerbate esacerbare ver +esacerbati esacerbato adj +esacerbato esacerbare ver +esacerbava esacerbare ver +esacerbazione esacerbazione nom +esacerbazioni esacerbazione nom +esacerbiamo esacerbare ver +esacerbò esacerbare ver +esacisottaedro esacisottaedro nom +esacordi esacordo nom +esacordo esacordo nom +esaedri esaedro nom +esaedro esaedro nom +esagera esagerare ver +esagerando esagerare ver +esagerandone esagerare ver +esagerano esagerare ver +esagerare esagerare ver +esagerarne esagerare ver +esagerarono esagerare ver +esagerasse esagerare ver +esagerata esagerare ver +esageratamente esageratamente adv +esagerate esagerare ver +esagerati esagerare ver +esagerato esagerare ver +esagerava esagerare ver +esageravano esagerare ver +esagerazione esagerazione nom +esagerazioni esagerazione nom +esagererei esagerare ver +esagererò esagerare ver +esageri esagerare ver +esageriamo esagerare ver +esagerino esagerare ver +esagero esagerare ver +esagerò esagerare ver +esagitata esagitato adj +esagitate esagitato adj +esagitati esagitato adj +esagitato esagitato adj +esagonale esagonale adj +esagonali esagonale adj +esagoni esagono nom +esagono esagono nom +esala esalare ver +esalando esalare ver +esalano esalare ver +esalante esalare ver +esalanti esalare ver +esalare esalare ver +esalasse esalare ver +esalata esalare ver +esalate esalare ver +esalati esalare ver +esalato esalare ver +esalava esalare ver +esalavano esalare ver +esalazione esalazione nom +esalazioni esalazione nom +esali esalare ver +esalta esaltare ver +esaltando esaltare ver +esaltandola esaltare ver +esaltandoli esaltare ver +esaltandolo esaltare ver +esaltandone esaltare ver +esaltandosi esaltare ver +esaltano esaltare ver +esaltante esaltante adj +esaltanti esaltante adj +esaltarci esaltare ver +esaltare esaltare ver +esaltarla esaltare ver +esaltarli esaltare ver +esaltarlo esaltare ver +esaltarne esaltare ver +esaltarono esaltare ver +esaltarsi esaltare ver +esaltasse esaltare ver +esaltassero esaltare ver +esaltata esaltare ver +esaltate esaltare ver +esaltati esaltare ver +esaltato esaltare ver +esaltava esaltare ver +esaltavano esaltare ver +esaltazione esaltazione nom +esaltazioni esaltazione nom +esalteranno esaltare ver +esalterà esaltare ver +esalti esaltare ver +esaltiamo esaltare ver +esaltino esaltare ver +esalto esaltare ver +esaltò esaltare ver +esalò esalare ver +esame esame nom +esametri esametro nom +esametro esametro nom +esami esame nom +esamina esaminare ver +esaminabile esaminabile adj +esaminabili esaminabile adj +esaminai esaminare ver +esaminandi esaminando nom +esaminando esaminare ver +esaminandola esaminare ver +esaminandole esaminare ver +esaminandoli esaminare ver +esaminandolo esaminare ver +esaminandone esaminare ver +esaminandosi esaminare ver +esaminano esaminare ver +esaminare esaminare ver +esaminarla esaminare ver +esaminarle esaminare ver +esaminarli esaminare ver +esaminarlo esaminare ver +esaminarne esaminare ver +esaminarono esaminare ver +esaminarsi esaminare ver +esaminasse esaminare ver +esaminassero esaminare ver +esaminata esaminare ver +esaminate esaminare ver +esaminatevi esaminare ver +esaminati esaminare ver +esaminato esaminare ver +esaminatrici esaminatrice adj +esaminava esaminare ver +esaminavano esaminare ver +esaminavo esaminare ver +esamine esamine adj +esamineranno esaminare ver +esaminerei esaminare ver +esamineremo esaminare ver +esaminerà esaminare ver +esaminerò esaminare ver +esamini esamine adj +esaminiamo esaminare ver +esaminino esaminare ver +esamino esaminare ver +esaminò esaminare ver +esano esano nom +esantema esantema nom +esantematica esantematico adj +esantematiche esantematico adj +esantematici esantematico adj +esantematico esantematico adj +esantemi esantema nom +esarazione esarazione nom +esarca esarca nom +esarcati esarcato nom +esarcato esarcato nom +esaspera esasperare ver +esasperando esasperare ver +esasperandole esasperare ver +esasperandoli esasperare ver +esasperandolo esasperare ver +esasperandone esasperare ver +esasperandosi esasperare ver +esasperano esasperare ver +esasperante esasperante adj +esasperanti esasperante adj +esasperare esasperare ver +esasperarla esasperare ver +esasperarono esasperare ver +esasperarsi esasperare ver +esasperarti esasperare ver +esasperarvi esasperare ver +esasperassero esasperare ver +esasperata esasperare ver +esasperate esasperato adj +esasperati esasperare ver +esasperato esasperare ver +esasperava esasperare ver +esasperavano esasperare ver +esasperazione esasperazione nom +esasperazioni esasperazione nom +esaspererà esasperare ver +esasperi esasperare ver +esasperino esasperare ver +esaspero esasperare ver +esasperò esasperare ver +esastiche esastico adj +esastila esastilo adj +esastilo esastilo adj +esatta esatto adj +esattamente esattamente adv_sup +esatte esigere ver +esattezza esattezza nom +esatti esigere ver +esatto esatto adj +esattore esattore nom +esattori esattore nom +esattoria esattoria nom +esattoriale esattoriale adj +esattoriali esattoriale adj +esattorie esattoria nom +esattrice esattore nom +esaudendo esaudire ver +esaudiranno esaudire ver +esaudire esaudire ver +esaudirgli esaudire ver +esaudirla esaudire ver +esaudirle esaudire ver +esaudirli esaudire ver +esaudirlo esaudire ver +esaudirne esaudire ver +esaudirono esaudire ver +esaudirsi esaudire ver +esaudirà esaudire ver +esaudirò esaudire ver +esaudisca esaudire ver +esaudiscano esaudire ver +esaudisce esaudire ver +esaudisci esaudire ver +esaudiscici esaudire ver +esaudiscimi esaudire ver +esaudiscono esaudire ver +esaudita esaudire ver +esaudite esaudire ver +esauditi esaudire ver +esaudito esaudire ver +esaudiva esaudire ver +esaudì esaudire ver +esaurendo esaurire ver +esaurendone esaurire ver +esaurendosi esaurire ver +esauriamo esaurire ver +esauribile esauribile adj +esauribili esauribile adj +esauriente esauriente adj +esaurientemente esaurientemente adv +esaurienti esauriente adj +esaurimenti esaurimento nom +esaurimento esaurimento nom +esauriranno esaurire ver +esaurire esaurire ver +esaurirebbe esaurire ver +esaurirebbero esaurire ver +esauriremo esaurire ver +esaurirla esaurire ver +esaurirle esaurire ver +esaurirli esaurire ver +esaurirlo esaurire ver +esaurirne esaurire ver +esaurirono esaurire ver +esaurirsi esaurire ver +esaurirà esaurire ver +esaurisca esaurire ver +esauriscano esaurire ver +esaurisce esaurire ver +esaurisci esaurire ver +esaurisco esaurire ver +esauriscono esaurire ver +esaurisse esaurire ver +esaurissero esaurire ver +esaurita esaurire ver +esaurite esaurire ver +esauritesi esaurire ver +esauriti esaurire ver +esaurito esaurire ver +esauriva esaurire ver +esaurivano esaurire ver +esaurì esaurire ver +esausta esausto adj +esauste esausto adj +esausti esausto adj +esaustiva esaustivo adj +esaustivamente esaustivamente adv +esaustive esaustivo adj +esaustivi esaustivo adj +esaustività esaustività nom +esaustivo esaustivo adj +esausto esausto adj +esautora esautorare ver +esautorando esautorare ver +esautorandoli esautorare ver +esautorandolo esautorare ver +esautorano esautorare ver +esautorare esautorare ver +esautorarli esautorare ver +esautorarlo esautorare ver +esautorarne esautorare ver +esautorarono esautorare ver +esautorassero esautorare ver +esautorata esautorare ver +esautorati esautorare ver +esautorato esautorare ver +esautorava esautorare ver +esautorazione esautorazione nom +esautorò esautorare ver +esavalente esavalente adj +esavalenti esavalente adj +esazione esazione nom +esazioni esazione nom +esborsi esborso nom +esborso esborso nom +esbosco esbosco nom +esca esca nom +escalation escalation nom +escandescenza escandescenza nom +escandescenze escandescenza nom +escano uscire ver +escara escara nom +escare escara nom +escatologia escatologia nom +escatologica escatologico adj +escatologiche escatologico adj +escatologici escatologico adj +escatologico escatologico adj +escatologie escatologia nom +escavatore escavatore adj +escavatori escavatore nom +escavatrice escavatore adj +escavatrici escavatore nom +escavazione escavazione nom +escavazioni escavazione nom +esce uscire ver +esche esca nom +eschimese eschimese adj +eschimesi eschimese adj +esci uscire ver +escila uscire ver +escissione escissione nom +escissioni escissione nom +esclama esclamare ver +esclamai esclamare ver +esclamando esclamare ver +esclamano esclamare ver +esclamare esclamare ver +esclamarono esclamare ver +esclamasse esclamare ver +esclamata esclamare ver +esclamate esclamare ver +esclamativa esclamativo adj +esclamative esclamativo adj +esclamativi esclamativo adj +esclamativo esclamativo adj +esclamato esclamare ver +esclamava esclamare ver +esclamavano esclamare ver +esclamazione esclamazione nom +esclamazioni esclamazione nom +esclamerà esclamare ver +esclami esclamare ver +esclamo esclamare ver +esclamò esclamare ver +escluda escludere ver +escludano escludere ver +esclude escludere ver +escludendo escludere ver +escludendola escludere ver +escludendole escludere ver +escludendoli escludere ver +escludendolo escludere ver +escludendone escludere ver +escludendosi escludere ver +escludendovi escludere ver +escludente escludere ver +escludenti escludere ver +escluderanno escludere ver +escluderci escludere ver +escludere escludere ver +escluderebbe escludere ver +escluderebbero escludere ver +escluderei escludere ver +escluderla escludere ver +escluderle escludere ver +escluderli escludere ver +escluderlo escludere ver +escludermi escludere ver +escluderne escludere ver +escludersi escludere ver +escluderti escludere ver +escludervi escludere ver +escluderà escludere ver +escludesse escludere ver +escludessero escludere ver +escludessimo escludere ver +escludete escludere ver +escludeva escludere ver +escludevano escludere ver +escludevo escludere ver +escludi escludere ver +escludiamo escludere ver +escludiamolo escludere ver +escludimi escludere ver +escludo escludere ver +escludono escludere ver +esclusa escludere ver +escluse escludere ver +esclusero escludere ver +esclusi escludere ver +esclusione esclusione nom +esclusioni esclusione nom +esclusiva esclusivo adj +esclusivamente esclusivamente adv +esclusive esclusivo adj +esclusivi esclusivo adj +esclusivismo esclusivismo nom +esclusivista esclusivista nom +esclusiviste esclusivista nom +esclusivisti esclusivista nom +esclusività esclusività nom +esclusivo esclusivo adj +escluso escludere ver +esco uscire ver +escogita escogitare ver +escogitando escogitare ver +escogitano escogitare ver +escogitare escogitare ver +escogitarne escogitare ver +escogitarono escogitare ver +escogitata escogitare ver +escogitate escogitare ver +escogitati escogitare ver +escogitato escogitare ver +escogitavano escogitare ver +escogiteranno escogitare ver +escogiterà escogitare ver +escogitò escogitare ver +escono uscire ver +escoria escoriare ver +escoriandoli escoriare ver +escoriata escoriare ver +escoriate escoriare ver +escoriato escoriare ver +escreato escreato nom +escrementi escremento nom +escremento escremento nom +escrescente escrescere ver +escrescenza escrescenza nom +escrescenze escrescenza nom +escreta escreto adj +escrete escreto adj +escreti escreto adj +escreto escreto adj +escretore escretore adj +escretori escretore|escretorio adj +escretoria escretorio adj +escretorie escretorio adj +escretorio escretorio adj +escretrice escretore adj +escretrici escretore adj +escrezione escrezione nom +escrezioni escrezione nom +escudo escudo nom +esculenta esculento adj +escursione escursione nom +escursioni escursione nom +escursionismo escursionismo nom +escursionista escursionista nom +escursioniste escursionista nom +escursionisti escursionista nom +escusse escutere ver +escussi escutere ver +escussione escussione nom +escussioni escussione nom +escusso escutere ver +escute escutere ver +escutere escutere ver +escuti escutere ver +escutivi escutere ver +esecra esecrare ver +esecrabile esecrabile adj +esecrabili esecrabile adj +esecranda esecrando adj +esecrande esecrando adj +esecrando esecrando adj +esecrare esecrare ver +esecrata esecrare ver +esecrati esecrare ver +esecrato esecrare ver +esecravano esecrare ver +esecrazione esecrazione nom +esecrazioni esecrazione nom +esecutiva esecutivo adj +esecutive esecutivo adj +esecutivi esecutivo adj +esecutività esecutività nom +esecutivo esecutivo adj +esecutore esecutore nom +esecutori esecutore nom +esecutoria esecutorio adj +esecutorie esecutorio adj +esecutorietà esecutorietà nom +esecutrice esecutore nom +esecutrici esecutore nom +esecuzione esecuzione nom +esecuzioni esecuzione nom +esedra esedra nom +esedre esedra nom +esegesi esegesi nom +esegeta esegeta nom +esegeti esegeta nom +esegetica esegetico adj +esegetiche esegetica nom +esegetici esegetico adj +esegetico esegetico adj +esegua eseguire ver +eseguano eseguire ver +esegue eseguire ver +eseguendo eseguire ver +eseguendola eseguire ver +eseguendoli eseguire ver +eseguendolo eseguire ver +eseguendone eseguire ver +eseguenti eseguire ver +esegui eseguire ver +eseguiamo eseguire ver +eseguibile eseguibile adj +eseguibili eseguibile adj +eseguii eseguire ver +eseguimmo eseguire ver +eseguir eseguire ver +eseguiranno eseguire ver +eseguire eseguire ver +eseguirebbe eseguire ver +eseguirei eseguire ver +eseguiremo eseguire ver +eseguirgli eseguire ver +eseguirla eseguire ver +eseguirle eseguire ver +eseguirli eseguire ver +eseguirlo eseguire ver +eseguirne eseguire ver +eseguirono eseguire ver +eseguirsi eseguire ver +eseguirvi eseguire ver +eseguirà eseguire ver +eseguirò eseguire ver +eseguisse eseguire ver +eseguissero eseguire ver +eseguissimo eseguire ver +eseguita eseguire ver +eseguite eseguire ver +eseguiti eseguire ver +eseguito eseguire ver +eseguiva eseguire ver +eseguivamo eseguire ver +eseguivano eseguire ver +eseguivo eseguire ver +eseguo eseguire ver +eseguono eseguire ver +eseguì eseguire ver +esempi esempio nom +esempio esempio nom +esemplare esemplare nom +esemplari esemplare nom +esemplarità esemplarità nom +esemplifica esemplificare ver +esemplificando esemplificare ver +esemplificano esemplificare ver +esemplificanti esemplificare ver +esemplificare esemplificare ver +esemplificarsi esemplificare ver +esemplificata esemplificare ver +esemplificate esemplificare ver +esemplificati esemplificare ver +esemplificativa esemplificativo adj +esemplificative esemplificativo adj +esemplificativi esemplificativo adj +esemplificativo esemplificativo adj +esemplificato esemplificare ver +esemplificava esemplificare ver +esemplificazione esemplificazione nom +esemplificazioni esemplificazione nom +esemplificherebbero esemplificare ver +esemplifichi esemplificare ver +esemplifichiamo esemplificare ver +esemplifico esemplificare ver +esemplificò esemplificare ver +esenta esentare ver +esentando esentare ver +esentandoli esentare ver +esentandolo esentare ver +esentandosi esentare ver +esentano esentare ver +esentare esentare ver +esentarla esentare ver +esentarli esentare ver +esentarono esentare ver +esentarsi esentare ver +esentasse esentare ver +esentata esentare ver +esentate esentare ver +esentati esentare ver +esentato esentare ver +esentava esentare ver +esentavano esentare ver +esente esente adj +esenti esente adj +esento esentare ver +esentò esentare ver +esenzione esenzione nom +esenzioni esenzione nom +esequie esequie nom +esercente esercente adj +esercenti esercente nom +eserciate esercire ver +esercire esercire ver +esercirle esercire ver +esercirono esercire ver +esercisce esercire ver +esercita esercitare ver +esercitabile esercitabile adj +esercitabili esercitabile adj +esercitando esercitare ver +esercitandola esercitare ver +esercitandolo esercitare ver +esercitandone esercitare ver +esercitandosi esercitare ver +esercitandovi esercitare ver +esercitano esercitare ver +esercitante esercitare ver +esercitanti esercitare ver +esercitar esercitare ver +esercitare esercitare ver +esercitarla esercitare ver +esercitarle esercitare ver +esercitarli esercitare ver +esercitarlo esercitare ver +esercitarmi esercitare ver +esercitarne esercitare ver +esercitarono esercitare ver +esercitarsi esercitare ver +esercitarti esercitare ver +esercitarvi esercitare ver +esercitasse esercitare ver +esercitassero esercitare ver +esercitata esercitare ver +esercitate esercitare ver +esercitati esercitare ver +esercitato esercitare ver +esercitava esercitare ver +esercitavamo esercitare ver +esercitavano esercitare ver +esercitazione esercitazione nom +esercitazioni esercitazione nom +esercite esercire ver +eserciteranno esercitare ver +eserciterebbe esercitare ver +eserciterebbero esercitare ver +eserciteremo esercitare ver +eserciterà esercitare ver +eserciti esercito nom +esercitiamo esercitare ver +esercitiate esercitare ver +esercitino esercitare ver +esercito esercito nom +esercitò esercitare ver +eserciva esercire ver +esercizi esercizio nom +eserciziari eserciziario nom +eserciziario eserciziario nom +esercizio esercizio nom +esercì esercire ver +esergo esergo nom +esibendo esibire ver +esibendone esibire ver +esibendosi esibire ver +esibiamo esibire ver +esibiranno esibire ver +esibirci esibire ver +esibire esibire ver +esibirebbero esibire ver +esibirla esibire ver +esibirle esibire ver +esibirli esibire ver +esibirlo esibire ver +esibirmi esibire ver +esibirne esibire ver +esibirono esibire ver +esibirsi esibire ver +esibirà esibire ver +esibisca esibire ver +esibiscano esibire ver +esibisce esibire ver +esibisci esibire ver +esibisco esibire ver +esibiscono esibire ver +esibisse esibire ver +esibissero esibire ver +esibita esibire ver +esibite esibire ver +esibiti esibire ver +esibito esibire ver +esibiva esibire ver +esibivamo esibire ver +esibivano esibire ver +esibizione esibizione nom +esibizioni esibizione nom +esibizionismi esibizionismo nom +esibizionismo esibizionismo nom +esibizionista esibizionista nom +esibizioniste esibizionista nom +esibizionisti esibizionista nom +esibizionistica esibizionistico adj +esibizionistiche esibizionistico adj +esibizionistico esibizionistico adj +esibì esibire ver +esiga esigere ver +esigano esigere ver +esige esigere ver +esigendo esigere ver +esigendone esigere ver +esigente esigente adj +esigenti esigente adj +esigenza esigenza nom +esigenze esigenza nom +esigeranno esigere ver +esigere esigere ver +esigerebbe esigere ver +esigerlo esigere ver +esigerne esigere ver +esigersi esigere ver +esigerà esigere ver +esigesse esigere ver +esigessero esigere ver +esigete esigere ver +esigette esigere ver +esigettero esigere ver +esigeva esigere ver +esigevano esigere ver +esigi esigere ver +esigiamo esigere ver +esigibile esigibile adj +esigibili esigibile adj +esigo esigere ver +esigono esigere ver +esigua esiguo adj +esigue esiguo adj +esigui esiguo adj +esiguità esiguità nom +esiguo esiguo adj +esilarante esilarante adj +esilaranti esilarante adj +esilarato esilarare ver +esilaravano esilarare ver +esile esile adj +esili esile adj +esilia esiliare ver +esiliando esiliare ver +esiliandola esiliare ver +esiliandoli esiliare ver +esiliandolo esiliare ver +esiliandone esiliare ver +esiliandosi esiliare ver +esiliano esiliare ver +esiliare esiliare ver +esiliarla esiliare ver +esiliarli esiliare ver +esiliarlo esiliare ver +esiliarono esiliare ver +esiliarsi esiliare ver +esiliasse esiliare ver +esiliata esiliare ver +esiliate esiliare ver +esiliati esiliare ver +esiliato esiliare ver +esiliava esiliare ver +esiliavano esiliare ver +esilieranno esiliare ver +esilierebbe esiliare ver +esilierà esiliare ver +esilii esiliare ver +esilio esilio nom +esilità esilità nom +esiliò esiliare ver +esima esimere ver +esime esimere ver +esimendo esimere ver +esimendosi esimere ver +esimente esimere ver +esimenti esimere ver +esimerci esimere ver +esimere esimere ver +esimerlo esimere ver +esimermi esimere ver +esimersi esimere ver +esimerti esimere ver +esimerà esimere ver +esimeste esimere ver +esimeva esimere ver +esimevano esimere ver +esimi esimio adj +esimia esimio adj +esimio esimio adj +esimo esimere ver +esimono esimere ver +esista esistere ver +esistano esistere ver +esiste esistere ver +esistendo esistere ver +esistendone esistere ver +esistendovi esistere ver +esistente esistente adj +esistenti esistente adj +esistenza esistenza nom +esistenze esistenza nom +esistenziale esistenziale adj +esistenziali esistenziale adj +esistenzialismi esistenzialismo nom +esistenzialismo esistenzialismo nom +esistenzialista esistenzialista adj +esistenzialiste esistenzialista adj +esistenzialisti esistenzialista adj +esistenzialistica esistenzialistico adj +esistenzialistiche esistenzialistico adj +esistenzialistici esistenzialistico adj +esistenzialistico esistenzialistico adj +esister esistere ver +esisterai esistere ver +esisteranno esistere ver +esistere esistere ver +esisterebbe esistere ver +esisterebbero esistere ver +esisterne esistere ver +esisterono esistere ver +esistervi esistere ver +esisterà esistere ver +esistesse esistere ver +esistessero esistere ver +esistessi esistere ver +esistete esistere ver +esisteva esistere ver +esistevamo esistere ver +esistevano esistere ver +esistevi esistere ver +esistevo esistere ver +esisti esistere ver +esistiamo esistere ver +esistita esistere ver +esistite esistere ver +esistiti esistere ver +esistito esistere ver +esisto esistere ver +esistono esistere ver +esistè esistere ver +esita esitare ver +esitai esitare ver +esitando esitare ver +esitano esitare ver +esitante esitare ver +esitanti esitare ver +esitar esitare ver +esitare esitare ver +esitarono esitare ver +esitarti esitare ver +esitasse esitare ver +esitassero esitare ver +esitate esitare ver +esitato esitare ver +esitava esitare ver +esitavano esitare ver +esitazione esitazione nom +esitazioni esitazione nom +esiteranno esitare ver +esiterebbe esitare ver +esiterebbero esitare ver +esiterei esitare ver +esiterà esitare ver +esiterò esitare ver +esiti esito nom +esitiamo esitare ver +esitino esitare ver +esito esito nom +esitò esitare ver +esiziale esiziale adj +esiziali esiziale adj +eskimi eskimo nom +eskimo eskimo nom +eslege eslege adj +esocarpo esocarpo nom +esocrina esocrino adj +esocrine esocrino adj +esocrino esocrino adj +esodi esodo nom +esodo esodo nom +esofagea esofageo adj +esofagee esofageo adj +esofagei esofageo adj +esofageo esofageo adj +esofago esofago nom +esogena esogeno adj +esogene esogeno adj +esogeni esogeno adj +esogeno esogeno adj +esonera esonerare ver +esonerando esonerare ver +esonerandoli esonerare ver +esonerandolo esonerare ver +esonerano esonerare ver +esonerare esonerare ver +esonerarli esonerare ver +esonerarlo esonerare ver +esonerarmi esonerare ver +esonerata esonerare ver +esonerate esonerare ver +esonerati esonerare ver +esonerato esonerare ver +esonerava esonerare ver +esoneravano esonerare ver +esonererà esonerare ver +esoneri esonero nom +esonero esonero nom +esonerò esonerare ver +esorbita esorbitare ver +esorbitano esorbitare ver +esorbitante esorbitante adj +esorbitanti esorbitante adj +esorbitare esorbitare ver +esorbitato esorbitare ver +esorcismi esorcismo nom +esorcismo esorcismo nom +esorcista esorcista nom +esorcistato esorcistato nom +esorcisti esorcista nom +esorcizza esorcizzare ver +esorcizzando esorcizzare ver +esorcizzandolo esorcizzare ver +esorcizzano esorcizzare ver +esorcizzante esorcizzare ver +esorcizzanti esorcizzare ver +esorcizzare esorcizzare ver +esorcizzarla esorcizzare ver +esorcizzarle esorcizzare ver +esorcizzarli esorcizzare ver +esorcizzarlo esorcizzare ver +esorcizzata esorcizzare ver +esorcizzate esorcizzare ver +esorcizzati esorcizzare ver +esorcizzato esorcizzare ver +esorcizzava esorcizzare ver +esorcizzeranno esorcizzare ver +esorcizzò esorcizzare ver +esordendo esordire ver +esordendovi esordire ver +esordi esordio nom +esordiente esordiente adj +esordienti esordiente adj +esordii esordire ver +esordio esordio nom +esordiranno esordire ver +esordire esordire ver +esordirei esordire ver +esordirono esordire ver +esordirvi esordire ver +esordirà esordire ver +esordisca esordire ver +esordisce esordire ver +esordisci esordire ver +esordisco esordire ver +esordiscono esordire ver +esordisse esordire ver +esordissero esordire ver +esordita esordire ver +esorditi esordire ver +esordito esordire ver +esordiva esordire ver +esordivano esordire ver +esordì esordire ver +esornativa esornativo adj +esornative esornativo adj +esornativo esornativo adj +esorta esortare ver +esortando esortare ver +esortandola esortare ver +esortandole esortare ver +esortandoli esortare ver +esortandolo esortare ver +esortandomi esortare ver +esortano esortare ver +esortanti esortare ver +esortarci esortare ver +esortare esortare ver +esortarle esortare ver +esortarli esortare ver +esortarlo esortare ver +esortarono esortare ver +esortarvi esortare ver +esortasse esortare ver +esortassero esortare ver +esortata esortare ver +esortate esortare ver +esortatevi esortare ver +esortati esortare ver +esortativa esortativo adj +esortative esortativo adj +esortativi esortativo adj +esortativo esortativo adj +esortato esortare ver +esortatori esortatorio adj +esortava esortare ver +esortavano esortare ver +esortazione esortazione nom +esortazioni esortazione nom +esorteranno esortare ver +esorterei esortare ver +esorterà esortare ver +esorti esortare ver +esortiamo esortare ver +esorto esortare ver +esortò esortare ver +esosa esoso adj +esoscheletri esoscheletro nom +esoscheletro esoscheletro nom +esose esoso adj +esosfera esosfera nom +esosi esoso adj +esosità esosità nom +esoso esoso adj +esoterica esoterico adj +esoteriche esoterico adj +esoterici esoterico adj +esoterico esoterico adj +esotermica esotermico adj +esotermiche esotermico adj +esotermici esotermico adj +esotermico esotermico adj +esotica esotico adj +esotiche esotico adj +esotici esotico adj +esotico esotico adj +esotismi esotismo nom +esotismo esotismo nom +espanda espandere ver +espandano espandere ver +espande espandere ver +espandendo espandere ver +espandendola espandere ver +espandendole espandere ver +espandendoli espandere ver +espandendolo espandere ver +espandendone espandere ver +espandendosi espandere ver +espandenti espandere ver +espanderanno espandere ver +espanderci espandere ver +espandere espandere ver +espanderebbe espandere ver +espanderemo espandere ver +espanderla espandere ver +espanderle espandere ver +espanderli espandere ver +espanderlo espandere ver +espanderne espandere ver +espandersi espandere ver +espanderà espandere ver +espanderò espandere ver +espandesse espandere ver +espandessero espandere ver +espandeva espandere ver +espandevano espandere ver +espandi espandere ver +espandiamo espandere ver +espanditi espandere ver +espando espandere ver +espandono espandere ver +espansa espandere ver +espanse espandere ver +espansero espandere ver +espansi espandere ver +espansibili espansibile adj +espansibilità espansibilità nom +espansione espansione nom +espansioni espansione nom +espansionismi espansionismo nom +espansionismo espansionismo nom +espansionista espansionista adj +espansioniste espansionista adj +espansionisti espansionista nom +espansionistica espansionistico adj +espansionistiche espansionistico adj +espansionistici espansionistico adj +espansionistico espansionistico adj +espansiva espansivo adj +espansive espansivo adj +espansivi espansivo adj +espansività espansività nom +espansivo espansivo adj +espanso espandere ver +espatri espatrio nom +espatria espatriare ver +espatriando espatriare ver +espatriano espatriare ver +espatriare espatriare ver +espatriarono espatriare ver +espatriasse espatriare ver +espatriata espatriare ver +espatriate espatriare ver +espatriati espatriare ver +espatriato espatriare ver +espatriavano espatriare ver +espatrio espatrio nom +espatriò espatriare ver +espediente espediente nom +espedienti espediente nom +espella espellere ver +espellano espellere ver +espelle espellere ver +espellendo espellere ver +espellendola espellere ver +espellendoli espellere ver +espellendolo espellere ver +espellendone espellere ver +espelleranno espellere ver +espellere espellere ver +espellerebbe espellere ver +espellerla espellere ver +espellerle espellere ver +espellerli espellere ver +espellerlo espellere ver +espellermi espellere ver +espellerne espellere ver +espellersi espellere ver +espellerà espellere ver +espellesse espellere ver +espelleva espellere ver +espellevano espellere ver +espelli espellere ver +espelliamo espellere ver +espello espellere ver +espellono espellere ver +esperanto esperanto nom +esperendo esperire ver +esperendone esperire ver +esperi espero nom +esperiamo esperire ver +esperibile esperibile adj +esperibili esperibile adj +esperidi esperidio nom +esperidio esperidio nom +esperienza esperienza nom +esperienze esperienza nom +esperimenta esperimentare ver +esperimentale esperimentare ver +esperimentali esperimentare ver +esperimentano esperimentare ver +esperimentare esperimentare ver +esperimentata esperimentare ver +esperimentate esperimentare ver +esperimentati esperimentare ver +esperimentato esperimentare ver +esperimenterà esperimentare ver +esperimenti esperimento nom +esperimento esperimento nom +esperimentò esperimentare ver +esperire esperire ver +esperirono esperire ver +esperirsi esperire ver +esperisce esperire ver +esperiscono esperire ver +esperita esperire ver +esperite esperire ver +esperiti esperire ver +esperito esperire ver +esperiva esperire ver +espero espero nom +esperta esperto adj +esperte esperto adj +esperti esperto nom +esperto esperto nom +esperì esperire ver +espettorante espettorante adj +espettoranti espettorante adj +espettorare espettorare ver +espettorato espettorato adj +espettorazione espettorazione nom +espettorò espettorare ver +espia espiare ver +espiando espiare ver +espiano espiare ver +espiante espiare ver +espianti espiare ver +espiare espiare ver +espiarli espiare ver +espiarne espiare ver +espiasse espiare ver +espiata espiare ver +espiate espiare ver +espiati espiare ver +espiato espiare ver +espiatori espiatorio adj +espiatoria espiatorio adj +espiatorie espiatorio adj +espiatorio espiatorio adj +espiava espiare ver +espiavano espiare ver +espiazione espiazione nom +espiazioni espiazione nom +espio espiare ver +espira espirare ver +espiraci espirare ver +espirando espirare ver +espirano espirare ver +espirare espirare ver +espirata espirare ver +espirati espirare ver +espirato espirare ver +espiratori espiratore|espiratorio adj +espiratoria espiratorio adj +espiratorie espiratorio adj +espiratorio espiratorio adj +espirazione espirazione nom +espirazioni espirazione nom +espirerò espirare ver +espiriamo espirare ver +espiro espirare ver +espirò espirare ver +espiò espiare ver +espleta espletare ver +espletamento espletamento nom +espletando espletare ver +espletano espletare ver +espletare espletare ver +espletarono espletare ver +espletarsi espletare ver +espletasse espletare ver +espletata espletare ver +espletate espletare ver +espletati espletare ver +espletato espletare ver +espletava espletare ver +espletavano espletare ver +espletazione espletazione nom +espleterà espletare ver +espleti espletare ver +espletivo espletivo adj +espletò espletare ver +esplica esplicare ver +esplicabile esplicabile adj +esplicabili esplicabile adj +esplicando esplicare ver +esplicandosi esplicare ver +esplicano esplicare ver +esplicante esplicare ver +esplicare esplicare ver +esplicarla esplicare ver +esplicarli esplicare ver +esplicarmi esplicare ver +esplicarono esplicare ver +esplicarsi esplicare ver +esplicasse esplicare ver +esplicata esplicare ver +esplicate esplicare ver +esplicati esplicare ver +esplicativa esplicativo adj +esplicative esplicativo adj +esplicativi esplicativo adj +esplicativo esplicativo adj +esplicato esplicare ver +esplicava esplicare ver +esplicavano esplicare ver +esplicazione esplicazione nom +esplicazioni esplicazione nom +esplicherebbe esplicare ver +esplicherà esplicare ver +esplichi esplicare ver +esplichino esplicare ver +esplicita esplicito adj +esplicitai esplicitare ver +esplicitamente esplicitamente adv +esplicitando esplicitare ver +esplicitandola esplicitare ver +esplicitandolo esplicitare ver +esplicitandone esplicitare ver +esplicitano esplicitare ver +esplicitante esplicitare ver +esplicitare esplicitare ver +esplicitarla esplicitare ver +esplicitarle esplicitare ver +esplicitarli esplicitare ver +esplicitarlo esplicitare ver +esplicitarne esplicitare ver +esplicitarono esplicitare ver +esplicitarsi esplicitare ver +esplicitasse esplicitare ver +esplicitassi esplicitare ver +esplicitata esplicitare ver +esplicitate esplicitare ver +esplicitatelo esplicitare ver +esplicitati esplicitare ver +esplicitato esplicitare ver +esplicitava esplicitare ver +esplicitavano esplicitare ver +esplicite esplicito adj +espliciterei esplicitare ver +espliciterà esplicitare ver +espliciti esplicito adj +esplicitiamo esplicitare ver +esplicitiamolo esplicitare ver +esplicitino esplicitare ver +esplicito esplicito adj +esplicitò esplicitare ver +esplico esplicare ver +esplicò esplicare ver +esploda esplodere ver +esplodano esplodere ver +esplode esplodere ver +esplodendo esplodere ver +esplodendogli esplodere ver +esplodendole esplodere ver +esplodente esplodente adj +esplodenti esplodente adj +esploderanno esplodere ver +esplodere esplodere ver +esploderebbe esplodere ver +esploderebbero esplodere ver +esplodersi esplodere ver +esploderà esplodere ver +esplodesse esplodere ver +esplodessero esplodere ver +esplodeva esplodere ver +esplodevano esplodere ver +esplodevi esplodere ver +esplodi esplodere ver +esploditore esploditore nom +esplodo esplodere ver +esplodono esplodere ver +esplora esplorare ver +esplorabile esplorabile adj +esplorabili esplorabile adj +esplorale esplorare ver +esplorando esplorare ver +esplorandola esplorare ver +esplorandoli esplorare ver +esplorandolo esplorare ver +esplorandone esplorare ver +esplorano esplorare ver +esplorante esplorare ver +esploranti esplorare ver +esplorar esplorare ver +esplorare esplorare ver +esplorarla esplorare ver +esplorarle esplorare ver +esplorarli esplorare ver +esplorarlo esplorare ver +esplorarne esplorare ver +esplorarono esplorare ver +esplorasse esplorare ver +esplorata esplorare ver +esplorate esplorare ver +esplorati esplorare ver +esplorativa esplorativo adj +esplorative esplorativo adj +esplorativi esplorativo adj +esplorativo esplorativo adj +esplorato esplorare ver +esploratore esploratore adj +esploratori esploratore adj +esploratrice esploratore adj +esploratrici esploratore adj +esplorava esplorare ver +esploravano esplorare ver +esplorazione esplorazione nom +esplorazioni esplorazione nom +esploreranno esplorare ver +esploreremo esplorare ver +esplorerà esplorare ver +esplori esplorare ver +esploriamo esplorare ver +esplorino esplorare ver +esploro esplorare ver +esplorò esplorare ver +esplosa esplodere ver +esplose esploso adj +esplosero esplodere ver +esplosi esploso adj +esplosione esplosione nom +esplosioni esplosione nom +esplosiva esplosivo adj +esplosive esplosivo adj +esplosivi esplosivo adj +esplosivo esplosivo adj +esploso esplodere ver +espone esporre ver +esponendo esporre ver +esponendoci esporre ver +esponendogli esporre ver +esponendola esporre ver +esponendole esporre ver +esponendoli esporre ver +esponendolo esporre ver +esponendomi esporre ver +esponendone esporre ver +esponendosi esporre ver +esponendovi esporre ver +esponente esponente nom +esponenti esponente nom +esponenziale esponenziale adj +esponenziali esponenziale adj +esponesse esporre ver +esponessero esporre ver +esponete esporre ver +esponeva esporre ver +esponevano esporre ver +esponevo esporre ver +esponga esporre ver +espongano esporre ver +espongo esporre ver +espongono esporre ver +esponi esporre ver +esponiamo esporre ver +esponici esporre ver +esponila esporre ver +esponile esporre ver +esponili esporre ver +espor esporre ver +esporci esporre ver +esporgli esporre ver +esporla esporre ver +esporle esporre ver +esporli esporre ver +esporlo esporre ver +espormi esporre ver +esporne esporre ver +esporrai esporre ver +esporranno esporre ver +esporre esporre ver +esporrebbe esporre ver +esporrebbero esporre ver +esporremmo esporre ver +esporremo esporre ver +esporrà esporre ver +esporrò esporre ver +esporsi esporre ver +esporta esportare ver +esportabile esportabile adj +esportabili esportabile adj +esportando esportare ver +esportandola esportare ver +esportandoli esportare ver +esportandolo esportare ver +esportandone esportare ver +esportano esportare ver +esportare esportare ver +esportarla esportare ver +esportarle esportare ver +esportarli esportare ver +esportarlo esportare ver +esportarne esportare ver +esportarono esportare ver +esportarsi esportare ver +esportasse esportare ver +esportassero esportare ver +esportata esportare ver +esportate esportare ver +esportati esportare ver +esportato esportare ver +esportatore esportatore nom +esportatori esportatore nom +esportatrice esportatore nom +esportatrici esportatore nom +esportava esportare ver +esportavano esportare ver +esportazione esportazione nom +esportazioni esportazione nom +esporteranno esportare ver +esporterà esportare ver +esporti esporre ver +esportiamo esportare ver +esportino esportare ver +esporto esportare ver +esportò esportare ver +esporvi esporre ver +espose esporre ver +esposero esporre ver +esposi esporre ver +esposimetri esposimetro nom +esposimetro esposimetro nom +espositiva espositivo adj +espositive espositivo adj +espositivi espositivo adj +espositivo espositivo adj +espositore espositore adj +espositori espositore nom +espositrice espositore nom +espositrici espositore adj +esposizione esposizione nom +esposizioni esposizione nom +esposta esporre ver +esposte esporre ver +esposti esporre ver +esposto esporre ver +espressa esprimere ver +espressamente espressamente adv +espresse esprimere ver +espressero esprimere ver +espressi espresso adj +espressione espressione nom +espressioni espressione nom +espressionismo espressionismo nom +espressionista espressionista nom +espressioniste espressionista nom +espressionisti espressionista nom +espressionistica espressionistico adj +espressionistiche espressionistico adj +espressionistici espressionistico adj +espressionistico espressionistico adj +espressiva espressivo adj +espressive espressivo adj +espressivi espressivo adj +espressività espressività nom +espressivo espressivo adj +espresso esprimere ver +esprima esprimere ver +esprimano esprimere ver +esprime esprimere ver +esprimendo esprimere ver +esprimendoci esprimere ver +esprimendogli esprimere ver +esprimendola esprimere ver +esprimendole esprimere ver +esprimendoli esprimere ver +esprimendolo esprimere ver +esprimendomi esprimere ver +esprimendone esprimere ver +esprimendosi esprimere ver +esprimendoti esprimere ver +esprimente esprimere ver +esprimenti esprimere ver +esprimer esprimere ver +esprimerai esprimere ver +esprimeranno esprimere ver +esprimerci esprimere ver +esprimere esprimere ver +esprimerebbe esprimere ver +esprimerebbero esprimere ver +esprimerei esprimere ver +esprimergli esprimere ver +esprimerla esprimere ver +esprimerle esprimere ver +esprimerli esprimere ver +esprimerlo esprimere ver +esprimermi esprimere ver +esprimerne esprimere ver +esprimersi esprimere ver +esprimerti esprimere ver +esprimervi esprimere ver +esprimerà esprimere ver +esprimerò esprimere ver +esprimesse esprimere ver +esprimessero esprimere ver +esprimessi esprimere ver +esprimessimo esprimere ver +esprimeste esprimere ver +esprimete esprimere ver +esprimetevi esprimere ver +esprimeva esprimere ver +esprimevano esprimere ver +esprimevi esprimere ver +esprimevo esprimere ver +esprimi esprimere ver +esprimiamo esprimere ver +esprimiamoci esprimere ver +esprimiate esprimere ver +esprimibile esprimibile adj +esprimibili esprimibile adj +esprimila esprimere ver +esprimiti esprimere ver +esprimo esprimere ver +esprimono esprimere ver +espropri esproprio nom +espropria espropriare ver +espropriando espropriare ver +espropriano espropriare ver +espropriante espropriare ver +espropriare espropriare ver +espropriarla espropriare ver +espropriarli espropriare ver +espropriarlo espropriare ver +espropriarono espropriare ver +espropriata espropriare ver +espropriate espropriare ver +espropriati espropriare ver +espropriato espropriare ver +espropriava espropriare ver +espropriavano espropriare ver +espropriazione espropriazione nom +espropriazioni espropriazione nom +esproprio esproprio nom +espropriò espropriare ver +espugna espugnare ver +espugnabile espugnabile adj +espugnabili espugnabile adj +espugnando espugnare ver +espugnandola espugnare ver +espugnandole espugnare ver +espugnandolo espugnare ver +espugnandone espugnare ver +espugnano espugnare ver +espugnare espugnare ver +espugnarla espugnare ver +espugnarle espugnare ver +espugnarli espugnare ver +espugnarlo espugnare ver +espugnarne espugnare ver +espugnarono espugnare ver +espugnarsi espugnare ver +espugnata espugnare ver +espugnate espugnare ver +espugnati espugnare ver +espugnato espugnare ver +espugnava espugnare ver +espugnavano espugnare ver +espugnazione espugnazione nom +espugnazioni espugnazione nom +espugneremo espugnare ver +espugnerà espugnare ver +espugni espugnare ver +espugno espugnare ver +espugnò espugnare ver +espulsa espellere ver +espulse espellere ver +espulsero espellere ver +espulsi espellere ver +espulsione espulsione nom +espulsioni espulsione nom +espulsiva espulsivo adj +espulsivo espulsivo adj +espulso espellere ver +espulsore espulsore adj +espunge espungere ver +espungendo espungere ver +espungere espungere ver +espungerla espungere ver +espungerle espungere ver +espungerli espungere ver +espungerne espungere ver +espungi espungere ver +espungo espungere ver +espungono espungere ver +espunse espungere ver +espunsero espungere ver +espunta espungere ver +espunte espungere ver +espunti espungere ver +espunto espungere ver +espunzione espunzione nom +espunzioni espunzione nom +espurgata espurgare ver +espurgato espurgare ver +espurgazione espurgazione nom +espurgo espurgare ver +esquimese esquimese adj +esquimesi esquimese nom +essa essa pro +esse esse pro +essendo essere ver_sup +essendocene essere ver +essendoché essendoché con +essendoci essere ver +essendogli essere ver +essendola essere ver +essendole essere ver +essendolo essere ver +essendomi essere ver +essendone essere ver +essendosela essere ver +essendosene essere ver +essendosi essere ver +essendoti essere ver +essendovene essere ver +essendovi essere ver +essente essere ver +essenti essere ver +essenza essenza nom +essenze essenza nom +essenziale essenziale adj +essenziali essenziale adj +essenzialità essenzialità nom +essenzialmente essenzialmente adv +esser essere ver +essercela essere ver +essercene essere ver +esserci essere ver_sup +essere essere ver_sup +essergli essere ver +essergliene essere ver +esseri essere nom +esserla essere ver +esserle essere ver +esserli essere ver +esserlo essere ver_sup +essermela essere ver +essermele essere ver +essermeli essere ver +essermelo essere ver +essermene essere ver +essermi essere ver +esserne essere ver_sup +essersela essere ver +essersele essere ver +esserselo essere ver +essersene essere ver +essersi essere ver_sup +essertela essere ver +essertene essere ver +esserti essere ver +esservene essere ver +esservi essere ver_sup +essi essi pro +essicca essiccare ver +essiccamento essiccamento nom +essiccando essiccare ver +essiccandola essiccare ver +essiccano essiccare ver +essiccante essiccante adj +essiccanti essiccante adj +essiccare essiccare ver +essiccarla essiccare ver +essiccarli essiccare ver +essiccarlo essiccare ver +essiccarsi essiccare ver +essiccata essiccare ver +essiccate essiccare ver +essiccati essiccare ver +essiccativi essiccativo adj +essiccativo essiccativo adj +essiccato essiccare ver +essiccatoi essiccatoio nom +essiccatoio essiccatoio nom +essiccatore essiccatore nom +essiccatori essiccatore nom +essiccava essiccare ver +essiccavano essiccare ver +essiccazione essiccazione nom +esso esso pro +essoterica essoterico adj +essoteriche essoterico adj +essoterici essoterico adj +essoterico essoterico adj +essoterismo essoterismo nom +essudati essudato nom +essudato essudato nom +essudazione essudazione nom +essudazioni essudazione nom +est est nom +establishment establishment nom +estancia estancia nom +estasi estasi nom +estasia estasiare ver +estasiante estasiare ver +estasiare estasiare ver +estasiarsi estasiare ver +estasiata estasiare ver +estasiate estasiare ver +estasiati estasiare ver +estasiato estasiare ver +estasiavano estasiare ver +estate estate nom +estati estate nom +estatica estatico adj +estatiche estatico adj +estatici estatico adj +estatico estatico adj +estemporanea estemporaneo adj +estemporanee estemporaneo adj +estemporanei estemporaneo adj +estemporaneità estemporaneità nom +estemporaneo estemporaneo adj +estenda estendere ver +estendano estendere ver +estende estendere ver +estendendo estendere ver +estendendola estendere ver +estendendole estendere ver +estendendoli estendere ver +estendendolo estendere ver +estendendone estendere ver +estendendosi estendere ver +estendente estendere ver +estender estendere ver +estenderanno estendere ver +estendere estendere ver +estenderebbe estendere ver +estenderebbero estendere ver +estenderei estendere ver +estenderemo estendere ver +estenderete estendere ver +estendergli estendere ver +estenderla estendere ver +estenderle estendere ver +estenderli estendere ver +estenderlo estendere ver +estenderne estendere ver +estendersi estendere ver +estendervi estendere ver +estenderà estendere ver +estenderò estendere ver +estendesse estendere ver +estendessero estendere ver +estendete estendere ver +estendeva estendere ver +estendevano estendere ver +estendevo estendere ver +estendi estendere ver +estendiamo estendere ver +estendibili estendibile adj +estendilo estendere ver +estendo estendere ver +estendono estendere ver +estensa estenso adj +estense estenso adj +estensi estenso adj +estensibile estensibile adj +estensibili estensibile adj +estensimetri estensimetro nom +estensimetro estensimetro nom +estensione estensione nom +estensioni estensione nom +estensiva estensivo adj +estensivamente estensivamente adv +estensive estensivo adj +estensivi estensivo adj +estensivo estensivo adj +estenso estenso adj +estensore estensore adj +estensori estensore nom +estenuante estenuante adj +estenuanti estenuante adj +estenuare estenuare ver +estenuata estenuare ver +estenuate estenuare ver +estenuati estenuare ver +estenuato estenuare ver +estenuazione estenuazione nom +estera estero adj +estere estero adj +esteri estero adj +esterificaci esterificare ver +esterificata esterificare ver +esterificate esterificare ver +esterificati esterificare ver +esterificato esterificare ver +esteriore esteriore adj +esteriori esteriore adj +esteriorità esteriorità nom +esteriorizza esteriorizzare ver +esteriorizzante esteriorizzare ver +esteriorizzanti esteriorizzare ver +esteriorizzare esteriorizzare ver +esteriorizzata esteriorizzare ver +esteriorizzato esteriorizzare ver +esteriorizzazione esteriorizzazione nom +esterna esterno adj +esternamente esternamente adv +esternando esternare ver +esternandogli esternare ver +esternano esternare ver +esternare esternare ver +esternarla esternare ver +esternarle esternare ver +esternarli esternare ver +esternarlo esternare ver +esternarono esternare ver +esternarsi esternare ver +esternata esternare ver +esternate esternare ver +esternati esternare ver +esternato esternare ver +esternava esternare ver +esternavano esternare ver +esterne esterno adj +esternerà esternare ver +esterni esternare ver +esterno esterno adj +esternò esternare ver +estero estero adj +esterofila esterofilo adj +esterofile esterofilo adj +esterofili esterofilo adj +esterofilia esterofilia nom +esterofilo esterofilo adj +esterrefatta esterrefatto adj +esterrefatte esterrefatto adj +esterrefatti esterrefatto adj +esterrefatto esterrefatto adj +estesa estendere ver +estesamente estesamente adv +estese esteso adj +estesero estendere ver +estesi esteso adj +estesissimo estesissimo adj +esteso estendere ver +esteta esteta nom +estete esteta nom +esteti esteta nom +estetica estetico adj +esteticamente esteticamente adv +estetiche estetico adj +estetici estetico adj +estetico estetico adj +estetismi estetismo nom +estetismo estetismo nom +estetista estetista nom +estetiste estetista nom +estetisti estetista nom +estetizzando estetizzare ver +estetizzante estetizzante adj +estetizzanti estetizzante adj +estetizzare estetizzare ver +estetizzata estetizzare ver +estetizzato estetizzare ver +estima estimare ver +estimaci estimare ver +estimar estimare ver +estimare estimare ver +estimata estimare ver +estimate estimare ver +estimati estimare ver +estimativa estimativo adj +estimative estimativo adj +estimativi estimativo adj +estimativo estimativo adj +estimato estimare ver +estimatore estimatore nom +estimatori estimatore nom +estimatrice estimatore nom +estimatrici estimatore nom +estimi estimo nom +estimo estimo nom +estingua estinguere ver +estinguano estinguere ver +estinguer estinguere ver +estingueranno estinguere ver +estinguere estinguere ver +estinguerebbe estinguere ver +estinguerebbero estinguere ver +estinguerle estinguere ver +estinguerli estinguere ver +estinguerlo estinguere ver +estinguersi estinguere ver +estinguerà estinguere ver +estinguerò estinguere ver +estingui estinguere ver +estinguiamo estinguere ver +estinguibile estinguibile adj +estinta estinto adj +estinte estinto adj +estinti estinto adj +estinto estinto adj +estintore estintore nom +estintori estintore nom +estinzione estinzione nom +estinzioni estinzione nom +estirpa estirpare ver +estirpando estirpare ver +estirpandogli estirpare ver +estirpandone estirpare ver +estirpare estirpare ver +estirpargli estirpare ver +estirparla estirpare ver +estirparle estirpare ver +estirparli estirpare ver +estirparlo estirpare ver +estirparono estirpare ver +estirpata estirpare ver +estirpate estirpare ver +estirpati estirpare ver +estirpato estirpare ver +estirpatore estirpatore adj +estirpatori estirpatore nom +estirpazione estirpazione nom +estirpazioni estirpazione nom +estirpi estirpare ver +estirpò estirpare ver +estiva estivo adj +estivaci estivare ver +estivale estivare ver +estivali estivare ver +estivare estivare ver +estive estivo adj +estivi estivo adj +estivo estivo adj +estorce estorcere ver +estorcendo estorcere ver +estorcendogli estorcere ver +estorcendole estorcere ver +estorcere estorcere ver +estorcergli estorcere ver +estorcerle estorcere ver +estorcerà estorcere ver +estorcessero estorcere ver +estorceva estorcere ver +estorcevano estorcere ver +estorcono estorcere ver +estorse estorcere ver +estorsero estorcere ver +estorsione estorsione nom +estorsioni estorsione nom +estorta estorcere ver +estorte estorcere ver +estorti estorcere ver +estorto estorcere ver +estrada estradare ver +estradando estradare ver +estradano estradare ver +estradare estradare ver +estradarlo estradare ver +estradata estradare ver +estradati estradare ver +estradato estradare ver +estradi estradare ver +estradizione estradizione nom +estradizioni estradizione nom +estrado estradare ver +estradossi estradosso nom +estradosso estradosso nom +estradò estradare ver +estrae estrarre ver +estraendo estrarre ver +estraendogli estrarre ver +estraendola estrarre ver +estraendole estrarre ver +estraendoli estrarre ver +estraendolo estrarre ver +estraendone estrarre ver +estraente estrarre ver +estraenti estrarre ver +estraesse estrarre ver +estraeva estrarre ver +estraevano estrarre ver +estragga estrarre ver +estraggano estrarre ver +estraggo estrarre ver +estraggono estrarre ver +estrai estrarre ver +estraiamo estrarre ver +estraibile estraibile adj +estraibili estraibile adj +estranea estraneo adj +estranee estraneo adj +estranei estraneo adj +estraneità estraneità nom +estraneo estraneo adj +estrania estraniare ver +estraniando estraniare ver +estraniandolo estraniare ver +estraniandosene estraniare ver +estraniandosi estraniare ver +estraniano estraniare ver +estraniante estraniare ver +estranianti estraniare ver +estraniarci estraniare ver +estraniare estraniare ver +estraniarli estraniare ver +estraniarlo estraniare ver +estraniarono estraniare ver +estraniarsi estraniare ver +estraniata estraniare ver +estraniati estraniare ver +estraniato estraniare ver +estraniava estraniare ver +estraniavano estraniare ver +estraniò estraniare ver +estrapola estrapolare ver +estrapolando estrapolare ver +estrapolandola estrapolare ver +estrapolandole estrapolare ver +estrapolandoli estrapolare ver +estrapolandolo estrapolare ver +estrapolandone estrapolare ver +estrapolano estrapolare ver +estrapolare estrapolare ver +estrapolarla estrapolare ver +estrapolarle estrapolare ver +estrapolarli estrapolare ver +estrapolarne estrapolare ver +estrapolarono estrapolare ver +estrapolata estrapolare ver +estrapolate estrapolare ver +estrapolati estrapolare ver +estrapolato estrapolare ver +estrapolazione estrapolazione nom +estrapolazioni estrapolazione nom +estrapolerei estrapolare ver +estrapolerà estrapolare ver +estrapoli estrapolare ver +estrapoliamo estrapolare ver +estrapolo estrapolare ver +estrapolò estrapolare ver +estrar estrarre ver +estrargli estrarre ver +estrarla estrarre ver +estrarle estrarre ver +estrarli estrarre ver +estrarlo estrarre ver +estrarne estrarre ver +estrarranno estrarre ver +estrarre estrarre ver +estrarrebbe estrarre ver +estrarremo estrarre ver +estrarrà estrarre ver +estrarsi estrarre ver +estrarvi estrarre ver +estrasse estrarre ver +estrassero estrarre ver +estrassi estrarre ver +estratta estrarre ver +estratte estrarre ver +estratti estrarre ver +estrattiva estrattivo adj +estrattive estrattivo adj +estrattivi estrattivo adj +estrattivo estrattivo adj +estratto estrarre ver +estrattore estrattore nom +estrattori estrattore nom +estravaganti estravagante adj +estrazione estrazione nom +estrazioni estrazione nom +estrema estremo adj +estremamente estremamente adv +estreme estremo adj +estremi estremo adj +estremismi estremismo nom +estremismo estremismo nom +estremista estremista nom +estremiste estremista nom +estremisti estremista nom +estremistica estremistico adj +estremistiche estremistico adj +estremistici estremistico adj +estremistico estremistico adj +estremità estremità nom +estremo estremo adj +estri estro nom +estrinseca estrinseco adj +estrinsecandosi estrinsecare ver +estrinsecano estrinsecare ver +estrinsecare estrinsecare ver +estrinsecarsi estrinsecare ver +estrinsecata estrinsecare ver +estrinsecati estrinsecare ver +estrinsecato estrinsecare ver +estrinsecava estrinsecare ver +estrinsecazione estrinsecazione nom +estrinsecazioni estrinsecazione nom +estrinseche estrinseco adj +estrinsechi estrinsecare ver +estrinseci estrinseco adj +estrinseco estrinseco adj +estrinsecò estrinsecare ver +estro estro nom +estromessa estromettere ver +estromesse estromettere ver +estromessi estromettere ver +estromesso estromettere ver +estromette estromettere ver +estromettendo estromettere ver +estromettendola estromettere ver +estromettendoli estromettere ver +estromettendolo estromettere ver +estromettendone estromettere ver +estromettendosi estromettere ver +estromettere estromettere ver +estrometterebbe estromettere ver +estrometterla estromettere ver +estrometterli estromettere ver +estrometterlo estromettere ver +estromettersi estromettere ver +estrometterà estromettere ver +estromettesse estromettere ver +estrometteva estromettere ver +estromettono estromettere ver +estromise estromettere ver +estromisero estromettere ver +estromissione estromissione nom +estromissioni estromissione nom +estrosa estroso adj +estrose estroso adj +estrosi estroso adj +estroso estroso adj +estroversa estroverso adj +estroverse estroverso adj +estroversi estroverso adj +estroversione estroversione nom +estroverso estroverso adj +estrude estrudere ver +estrudere estrudere ver +estrudi estrudere ver +estrudono estrudere ver +estrusa estrudere ver +estruse estrudere ver +estrusi estrudere ver +estrusione estrusione nom +estrusioni estrusione nom +estrusive estrusivo adj +estrusivo estrusivo adj +estruso estrudere ver +estuari estuario nom +estuario estuario nom +esuberante esuberante adj +esuberanti esuberante adj +esuberanza esuberanza nom +esuberanze esuberanza nom +esubero esubero nom +esula esulare ver +esulando esulare ver +esulano esulare ver +esulante esulare ver +esulanti esulare ver +esulare esulare ver +esularono esulare ver +esulasse esulare ver +esulato esulare ver +esulava esulare ver +esulavano esulare ver +esulcerare esulcerare ver +esulcerato esulcerare ver +esule esule nom +esulerebbe esulare ver +esuli esule nom +esulino esulare ver +esulo esulare ver +esulta esultare ver +esultando esultare ver +esultano esultare ver +esultante esultare ver +esultanti esultare ver +esultanza esultanza nom +esultanze esultanza nom +esultare esultare ver +esultarono esultare ver +esultate esultare ver +esultato esultare ver +esultava esultare ver +esultavano esultare ver +esulteranno esultare ver +esulterei esultare ver +esulterà esultare ver +esulti esultare ver +esultiamo esultare ver +esultino esultare ver +esulto esultare ver +esultò esultare ver +esulò esulare ver +esuma esumare ver +esumando esumare ver +esumano esumare ver +esumare esumare ver +esumarono esumare ver +esumata esumare ver +esumate esumare ver +esumati esumare ver +esumato esumare ver +esumazione esumazione nom +esumazioni esumazione nom +esumi esumare ver +esumò esumare ver +et et sw +etani etano nom +etano etano nom +etanolo etanolo nom +etc etc sw +etera etera nom +etere etera|etere nom +eterea etereo adj +eteree etereo adj +eterei etereo adj +etereo etereo adj +eteri etere nom +eterica eterico adj +eteriche eterico adj +eterici eterico adj +eterico eterico adj +eterificato eterificare ver +eterna eterno adj +eternamente eternamente adv +eternare eternare ver +eternarsi eternare ver +eternata eternare ver +eternato eternare ver +eterne eterno adj +eterni eterno adj +eternit eternit nom +eternità eternità nom +eterno eterno adj +eteroclita eteroclito adj +eterocliti eteroclito adj +eteroclito eteroclito adj +eterodina eterodina nom +eterodossa eterodosso adj +eterodosse eterodosso adj +eterodossi eterodosso adj +eterodossia eterodossia nom +eterodossie eterodossia nom +eterodosso eterodosso adj +eterofilia eterofilia nom +eterogenea eterogeneo adj +eterogenee eterogeneo adj +eterogenei eterogeneo adj +eterogeneità eterogeneità nom +eterogeneo eterogeneo adj +eteronoma eteronomo adj +eteronome eteronomo adj +eteronomi eteronomo adj +eteronomia eteronomia nom +eteronomo eteronomo adj +eteropolare eteropolare adj +eterosessuale eterosessuale adj +eterosessuali eterosessuale adj +eterotermi eterotermo adj +eterotrofa eterotrofo adj +eterotrofe eterotrofo adj +eterotrofi eterotrofo adj +eterotrofia eterotrofia nom +eterotrofo eterotrofo adj +eterozigote eterozigote nom +eterozigoti eterozigote nom +etesii etesii nom +etica etico adj +eticamente eticamente adv +etiche etico adj +etichetta etichetta nom +etichettando etichettare ver +etichettandola etichettare ver +etichettandole etichettare ver +etichettandoli etichettare ver +etichettandolo etichettare ver +etichettano etichettare ver +etichettante etichettare ver +etichettarci etichettare ver +etichettare etichettare ver +etichettarla etichettare ver +etichettarle etichettare ver +etichettarli etichettare ver +etichettarlo etichettare ver +etichettarmi etichettare ver +etichettarono etichettare ver +etichettarsi etichettare ver +etichettata etichettare ver +etichettate etichettare ver +etichettati etichettare ver +etichettato etichettare ver +etichettatrice etichettatrice nom +etichettatrici etichettatrice nom +etichettatura etichettatura nom +etichettature etichettatura nom +etichettava etichettare ver +etichettavano etichettare ver +etichette etichetta nom +etichetterei etichettare ver +etichetterà etichettare ver +etichetti etichettare ver +etichettiamo etichettare ver +etichetto etichettare ver +etichettò etichettare ver +etici etico adj +eticità eticità nom +etico etico adj +etile etile nom +etilene etilene nom +etilica etilico adj +etiliche etilico adj +etilici etilico adj +etilico etilico adj +etilismo etilismo nom +etilista etilista nom +etilisti etilista nom +etimi etimo nom +etimo etimo nom +etimologi etimologo nom +etimologia etimologia nom +etimologica etimologico adj +etimologiche etimologico adj +etimologici etimologico adj +etimologico etimologico adj +etimologie etimologia nom +etimologista etimologista nom +etimologisti etimologista nom +etimologo etimologo nom +etiope etiope adj +etiopi etiope adj +etiopica etiopico adj +etiopiche etiopico adj +etiopici etiopico adj +etiopico etiopico adj +etisia etisia nom +etmoidale etmoidale adj +etmoidali etmoidale adj +etmoide etmoide nom +etmoidi etmoide nom +etnia etnia nom +etnica etnico adj +etnicamente etnicamente adv +etniche etnico adj +etnici etnico adj +etnico etnico adj +etnie etnia nom +etnografa etnografo nom +etnografi etnografo nom +etnografia etnografia nom +etnografica etnografico adj +etnografiche etnografico adj +etnografici etnografico adj +etnografico etnografico adj +etnografie etnografia nom +etnografo etnografo nom +etnologa etnologo nom +etnologi etnologo nom +etnologia etnologia nom +etnologica etnologico adj +etnologiche etnologico adj +etnologici etnologico adj +etnologico etnologico adj +etnologie etnologia nom +etnologo etnologo nom +etologa etologo nom +etologi etologo nom +etologia etologia nom +etologie etologia nom +etologo etologo nom +etra etra nom +etre etra nom +etrusca etrusco adj +etrusche etrusco adj +etruschi etrusco adj +etrusco etrusco adj +etruscologi etruscologo nom +etruscologia etruscologia nom +etruscologo etruscologo nom +ettagoni ettagono nom +ettagono ettagono nom +ettari ettaro nom +ettaro ettaro nom +etti etto nom +etto etto nom +ettogrammi ettogrammo nom +ettogrammo ettogrammo nom +ettolitri ettolitro nom +ettolitro ettolitro nom +ettometri ettometro nom +ettometro ettometro nom +età età nom +eucalipti eucalipto nom +eucalipto eucalipto nom +eucaristia eucaristia nom +eucaristica eucaristico adj +eucaristiche eucaristico adj +eucaristici eucaristico adj +eucaristico eucaristico adj +eucaristie eucaristia nom +eudemonia eudemonia nom +eudemonismo eudemonismo nom +eudemonologia eudemonologia nom +eudermia eudermia nom +eudermico eudermico adj +eufemia eufemia nom +eufemismi eufemismo nom +eufemismo eufemismo nom +eufemistica eufemistico adj +eufemistiche eufemistico adj +eufemistici eufemistico adj +eufemistico eufemistico adj +eufoni eufonio nom +eufonia eufonia nom +eufonica eufonico adj +eufoniche eufonico adj +eufonici eufonico adj +eufonico eufonico adj +eufonie eufonia nom +eufonio eufonio nom +euforbia euforbia nom +euforbiacee euforbiacee nom +euforbie euforbia nom +euforia euforia nom +euforica euforico adj +euforiche euforico adj +euforici euforico adj +euforico euforico adj +euforie euforia nom +eufuismo eufuismo nom +eugenetica eugenetico adj +eugenetiche eugenetico adj +eugenetici eugenetico adj +eugenetico eugenetico adj +eugenia eugenia nom +eugenie eugenia nom +eugenista eugenista nom +euglena euglena nom +euglene euglena nom +eugubina eugubino adj +eugubine eugubino adj +eugubini eugubino adj +eugubino eugubino adj +eunuchi eunuco nom +eunuco eunuco nom +eupepsia eupepsia nom +eupeptica eupeptico adj +eupeptiche eupeptico adj +eupeptici eupeptico adj +eupeptico eupeptico adj +eurasiatica eurasiatico adj +eurasiatiche eurasiatico adj +eurasiatici eurasiatico adj +eurasiatico eurasiatico adj +eureka eureka int +euristica euristico adj +euristiche euristico adj +euristici euristico adj +euristico euristico adj +euritmia euritmia nom +euritmie euritmia nom +euro euro adj +euroasiatica euroasiatico adj +euroasiatico euroasiatico adj +eurocomunismo eurocomunismo nom +eurodeputati eurodeputato adj +eurodollari eurodollaro nom +eurodollaro eurodollaro nom +euromediterranea euromediterraneo adj +euromediterranee euromediterraneo adj +euromediterranei euromediterraneo adj +euromediterraneo euromediterraneo adj +europea europeo adj +europee europeo adj +europei europeo adj +europeismo europeismo nom +europeista europeista nom +europeiste europeista nom +europeisti europeista nom +europeistica europeistico adj +europeistiche europeistico adj +europeistici europeistico adj +europeistico europeistico adj +europeizzante europeizzare ver +europeizzanti europeizzare ver +europeizzare europeizzare ver +europeizzata europeizzare ver +europeizzate europeizzare ver +europeizzato europeizzare ver +europeizzazione europeizzazione nom +europeo europeo adj +europi europio nom +europio europio nom +euroscettici euroscettico adj +eurotassa eurotassa nom +eurovisione eurovisione nom +eurovisioni eurovisione nom +eustatiche eustatico adj +eustatici eustatico adj +eustatico eustatico adj +eustatismo eustatismo nom +eutanasia eutanasia nom +eutrofizzazione eutrofizzazione nom +evacua evacuare ver +evacuaci evacuare ver +evacuando evacuare ver +evacuandone evacuare ver +evacuano evacuare ver +evacuante evacuare ver +evacuare evacuare ver +evacuarla evacuare ver +evacuarle evacuare ver +evacuarli evacuare ver +evacuarlo evacuare ver +evacuarne evacuare ver +evacuarono evacuare ver +evacuassero evacuare ver +evacuata evacuare ver +evacuate evacuare ver +evacuati evacuare ver +evacuativi evacuativo adj +evacuativo evacuativo adj +evacuato evacuare ver +evacuava evacuare ver +evacuavano evacuare ver +evacuazione evacuazione nom +evacuazioni evacuazione nom +evacueranno evacuare ver +evacuo evacuare ver +evacuò evacuare ver +evada evadere ver +evadano evadere ver +evade evadere ver +evadendo evadere ver +evadere evadere ver +evaderla evadere ver +evaderle evadere ver +evaderlo evadere ver +evaderne evadere ver +evaderà evadere ver +evadessero evadere ver +evadeva evadere ver +evadevano evadere ver +evadi evadere ver +evado evadere ver +evadono evadere ver +evanescente evanescente adj +evanescenti evanescente adj +evanescenza evanescenza nom +evanescenze evanescenza nom +evangeli evangelo nom +evangelica evangelico adj +evangeliche evangelico adj +evangelici evangelico adj +evangelico evangelico adj +evangelismo evangelismo nom +evangelista evangelista nom +evangeliste evangelista nom +evangelisti evangelista nom +evangelizza evangelizzare ver +evangelizzando evangelizzare ver +evangelizzandola evangelizzare ver +evangelizzano evangelizzare ver +evangelizzare evangelizzare ver +evangelizzarli evangelizzare ver +evangelizzarne evangelizzare ver +evangelizzarono evangelizzare ver +evangelizzata evangelizzare ver +evangelizzate evangelizzare ver +evangelizzati evangelizzare ver +evangelizzato evangelizzare ver +evangelizzatore evangelizzatore nom +evangelizzatori evangelizzatore nom +evangelizzatrice evangelizzatore nom +evangelizzatrici evangelizzatore nom +evangelizzavano evangelizzare ver +evangelizzazione evangelizzazione nom +evangelizzazioni evangelizzazione nom +evangelizzo evangelizzare ver +evangelizzò evangelizzare ver +evangelo evangelo nom +evapora evaporare ver +evaporabile evaporabile adj +evaporaci evaporare ver +evaporando evaporare ver +evaporano evaporare ver +evaporante evaporare ver +evaporanti evaporare ver +evaporare evaporare ver +evaporarono evaporare ver +evaporasse evaporare ver +evaporata evaporare ver +evaporate evaporare ver +evaporati evaporare ver +evaporato evaporare ver +evaporatore evaporatore nom +evaporatori evaporatore nom +evaporava evaporare ver +evaporazione evaporazione nom +evaporazioni evaporazione nom +evaporeranno evaporare ver +evaporerebbe evaporare ver +evaporerebbero evaporare ver +evaporerà evaporare ver +evapori evaporare ver +evaporimetri evaporimetro nom +evaporimetro evaporimetro nom +evaporino evaporare ver +evaporò evaporare ver +evasa evadere ver +evase evaso nom +evasero evadere ver +evasi evaso nom +evasione evasione nom +evasioni evasione nom +evasiva evasivo adj +evasive evasivo adj +evasivi evasivo adj +evasivo evasivo adj +evaso evadere ver +evasore evasore nom +evasori evasore nom +evenienza evenienza nom +evenienze evenienza nom +eventi evento nom +evento evento nom +eventuale eventuale adj +eventuali eventuale adj +eventualità eventualità nom +eventualmente eventualmente adv +eversione eversione nom +eversioni eversione nom +eversiva eversivo adj +eversive eversivo adj +eversivi eversivo adj +eversivo eversivo adj +eversore eversore nom +eversori eversore nom +evi evo nom +evidente evidente adj +evidentemente evidentemente adv_sup +evidenti evidente adj +evidenza evidenza nom +evidenze evidenza nom +evidenzi evidenziare ver +evidenzia evidenziare ver +evidenziai evidenziare ver +evidenziale evidenziare ver +evidenziali evidenziare ver +evidenziamo evidenziare ver +evidenziando evidenziare ver +evidenziandola evidenziare ver +evidenziandole evidenziare ver +evidenziandoli evidenziare ver +evidenziandolo evidenziare ver +evidenziandone evidenziare ver +evidenziandosi evidenziare ver +evidenziano evidenziare ver +evidenziante evidenziare ver +evidenzianti evidenziare ver +evidenziare evidenziare ver +evidenziarla evidenziare ver +evidenziarle evidenziare ver +evidenziarli evidenziare ver +evidenziarlo evidenziare ver +evidenziarmi evidenziare ver +evidenziarne evidenziare ver +evidenziarono evidenziare ver +evidenziarsi evidenziare ver +evidenziarvi evidenziare ver +evidenziasse evidenziare ver +evidenziassero evidenziare ver +evidenziata evidenziare ver +evidenziate evidenziare ver +evidenziatesi evidenziare ver +evidenziati evidenziare ver +evidenziato evidenziare ver +evidenziatore evidenziatore nom +evidenziatori evidenziatore nom +evidenziava evidenziare ver +evidenziavano evidenziare ver +evidenziavi evidenziare ver +evidenziavo evidenziare ver +evidenzieranno evidenziare ver +evidenzierebbe evidenziare ver +evidenzierebbero evidenziare ver +evidenzierei evidenziare ver +evidenzierà evidenziare ver +evidenzino evidenziare ver +evidenzio evidenziare ver +evidenziò evidenziare ver +evinca evincere ver +evincano evincere ver +evince evincere ver +evincendola evincere ver +evincendosi evincere ver +evincere evincere ver +evincerebbe evincere ver +evincerla evincere ver +evincerlo evincere ver +evincerne evincere ver +evincersi evincere ver +evincerà evincere ver +evincesse evincere ver +evinceva evincere ver +evincevano evincere ver +evinci evincere ver +evinciamo evincere ver +evinco evincere ver +evincono evincere ver +evinse evincere ver +evinta evincere ver +evinte evincere ver +evinti evincere ver +evinto evincere ver +evira evirare ver +evirando evirare ver +evirandolo evirare ver +evirandosi evirare ver +evirano evirare ver +evirare evirare ver +evirarlo evirare ver +evirarsi evirare ver +evirati evirare ver +evirato evirare ver +evirazione evirazione nom +evirazioni evirazione nom +evirò evirare ver +evita evitare ver +evitabile evitabile adj +evitabili evitabile adj +evitaci evitare ver +evitagli evitare ver +evitai evitare ver +evitali evitare ver +evitalo evitare ver +evitando evitare ver +evitandoci evitare ver +evitandogli evitare ver +evitandola evitare ver +evitandole evitare ver +evitandoli evitare ver +evitandolo evitare ver +evitandomi evitare ver +evitandone evitare ver +evitano evitare ver +evitante evitare ver +evitanti evitare ver +evitar evitare ver +evitarcela evitare ver +evitarcelo evitare ver +evitarci evitare ver +evitare evitare ver +evitargli evitare ver +evitarla evitare ver +evitarle evitare ver +evitarli evitare ver +evitarlo evitare ver +evitarmi evitare ver +evitarne evitare ver +evitarono evitare ver +evitarsi evitare ver +evitartela evitare ver +evitartelo evitare ver +evitarti evitare ver +evitarvi evitare ver +evitasse evitare ver +evitassero evitare ver +evitassi evitare ver +evitassimo evitare ver +evitata evitare ver +evitate evitare ver +evitatelo evitare ver +evitati evitare ver +evitato evitare ver +evitava evitare ver +evitavamo evitare ver +evitavano evitare ver +evitavi evitare ver +evitavo evitare ver +eviterai evitare ver +eviteranno evitare ver +eviterebbe evitare ver +eviterebbero evitare ver +eviterei evitare ver +eviteremmo evitare ver +eviteremo evitare ver +evitereste evitare ver +eviteresti evitare ver +eviterete evitare ver +eviterà evitare ver +eviterò evitare ver +eviti evitare ver +evitiamo evitare ver +evitiamoci evitare ver +evitiamoli evitare ver +evitiamolo evitare ver +evitino evitare ver +evito evitare ver +evitò evitare ver +evizione evizione nom +evo evo nom +evoca evocare ver +evocaci evocare ver +evocami evocare ver +evocando evocare ver +evocandola evocare ver +evocandoli evocare ver +evocandolo evocare ver +evocandone evocare ver +evocano evocare ver +evocante evocare ver +evocanti evocare ver +evocar evocare ver +evocare evocare ver +evocarla evocare ver +evocarle evocare ver +evocarli evocare ver +evocarlo evocare ver +evocarne evocare ver +evocarono evocare ver +evocasse evocare ver +evocata evocare ver +evocate evocare ver +evocati evocare ver +evocativa evocativo adj +evocative evocativo adj +evocativi evocativo adj +evocativo evocativo adj +evocato evocare ver +evocatore evocatore nom +evocatori evocatore nom +evocatrice evocatore nom +evocatrici evocatore nom +evocava evocare ver +evocavano evocare ver +evocazione evocazione nom +evocazioni evocazione nom +evocheranno evocare ver +evocherebbe evocare ver +evocheresti evocare ver +evocherà evocare ver +evochi evocare ver +evochiamo evocare ver +evochino evocare ver +evoco evocare ver +evocò evocare ver +evolse evolvere ver +evolsero evolvere ver +evolsi evolvere ver +evolta evolvere ver +evolte evolvere ver +evoluendo evoluire ver +evoluir evoluire ver +evoluire evoluire ver +evoluta evoluto adj +evolute evoluto adj +evoluti evoluto adj +evolutiva evolutivo adj +evolutive evolutivo adj +evolutivi evolutivo adj +evolutivo evolutivo adj +evoluto evoluto adj +evoluzione evoluzione nom +evoluzioni evoluzione nom +evoluzionismo evoluzionismo nom +evoluzionista evoluzionista nom +evoluzioniste evoluzionista nom +evoluzionisti evoluzionista nom +evoluzionistica evoluzionistico adj +evoluzionistiche evoluzionistico adj +evoluzionistici evoluzionistico adj +evoluzionistico evoluzionistico adj +evolva evolvere ver +evolvano evolvere ver +evolve evolvere ver +evolvendo evolvere ver +evolvendolo evolvere ver +evolvendosi evolvere ver +evolvente evolvere ver +evolventi evolvere ver +evolver evolvere ver +evolveranno evolvere ver +evolverci evolvere ver +evolvere evolvere ver +evolverebbe evolvere ver +evolverebbero evolvere ver +evolverla evolvere ver +evolverlo evolvere ver +evolversi evolvere ver +evolverà evolvere ver +evolvesse evolvere ver +evolvessero evolvere ver +evolveva evolvere ver +evolvevano evolvere ver +evolvi evolvere ver +evolvo evolvere ver +evolvono evolvere ver +evviva evviva nom +ex ex adj_sup +excursus excursus nom +executive executive nom +expertise expertise nom +exploit exploit nom +expo expo nom +export export nom +extra extra nom +extracomunitari extracomunitario adj +extracomunitaria extracomunitario adj +extracomunitarie extracomunitario adj +extracomunitario extracomunitario adj +extraconiugale extraconiugale adj +extraconiugali extraconiugale adj +extracontrattuale extracontrattuale adj +extracontrattuali extracontrattuale adj +extracorrente extracorrente nom +extracorrenti extracorrente nom +extraeuropea extraeuropeo adj +extraeuropee extraeuropeo adj +extraeuropei extraeuropeo adj +extraeuropeo extraeuropeo adj +extragiudiziale extragiudiziale adj +extragiudiziali extragiudiziale adj +extragiudiziarie extragiudiziario adj +extragiudiziario extragiudiziario adj +extralegale extralegale adj +extralegali extralegale adj +extraospedaliere extraospedaliero adj +extraparlamentare extraparlamentare adj +extraparlamentari extraparlamentare adj +extrasensoriale extrasensoriale adj +extrasensoriali extrasensoriale adj +extrasistole extrasistole nom +extrasistoli extrasistole nom +extratemporale extratemporale adj +extratemporali extratemporale adj +extraterrestre extraterrestre adj +extraterrestri extraterrestre adj +extraterritoriale extraterritoriale adj +extraterritoriali extraterritoriale adj +extraterritorialità extraterritorialità nom +extraurbana extraurbano adj +extraurbane extraurbano adj +extraurbani extraurbano adj +extraurbano extraurbano adj +extremis extremis nom +eziologia eziologia nom +eziologie eziologia nom +eziopatogenesi eziopatogenesi nom +f f sw +fa fare ver_sup +fabbisogni fabbisogno nom +fabbisogno fabbisogno nom +fabbri fabbro nom +fabbrica fabbrica nom +fabbricabile fabbricabile adj +fabbricabili fabbricabile adj +fabbricai fabbricare ver +fabbricando fabbricare ver +fabbricandosi fabbricare ver +fabbricano fabbricare ver +fabbricante fabbricante nom +fabbricanti fabbricante nom +fabbricar fabbricare ver +fabbricare fabbricare ver +fabbricargli fabbricare ver +fabbricarla fabbricare ver +fabbricarle fabbricare ver +fabbricarli fabbricare ver +fabbricarlo fabbricare ver +fabbricarne fabbricare ver +fabbricarono fabbricare ver +fabbricarsele fabbricare ver +fabbricarsi fabbricare ver +fabbricarvi fabbricare ver +fabbricasse fabbricare ver +fabbricassero fabbricare ver +fabbricata fabbricare ver +fabbricate fabbricare ver +fabbricati fabbricato nom +fabbricato fabbricato nom +fabbricatore fabbricatore nom +fabbricatori fabbricatore nom +fabbricatrice fabbricatore nom +fabbricava fabbricare ver +fabbricavano fabbricare ver +fabbricazione fabbricazione nom +fabbricazioni fabbricazione nom +fabbriceria fabbriceria nom +fabbricerie fabbriceria nom +fabbriche fabbrica nom +fabbricheranno fabbricare ver +fabbricherà fabbricare ver +fabbrichi fabbricare ver +fabbrichiamo fabbricare ver +fabbrichino fabbricare ver +fabbriciere fabbriciere nom +fabbricieri fabbriciere nom +fabbrico fabbricare ver +fabbricò fabbricare ver +fabbro fabbro nom +facce faccia nom +faccela fare ver +faccelo fare ver +faccenda faccenda nom +faccende faccenda nom +faccendiere faccendiere nom +faccendieri faccendiere nom +faccetta faccetta nom +faccette faccetta nom +facchinaggio facchinaggio nom +facchini facchino nom +facchino facchino nom +facci fare ver +faccia faccia nom +facciale facciale adj +facciali facciale adj +facciamo fare ver_sup +facciamocelo fare ver +facciamocene fare ver +facciamoci fare ver +facciamogli fare ver +facciamogliela fare ver +facciamoglielo fare ver +facciamola fare ver +facciamole fare ver +facciamoli fare ver +facciamolo fare ver +facciamone fare ver +facciano fare ver_sup +facciata facciata nom +facciate facciata nom +faccio fare ver_sup +facciola facciola nom +facciole facciola nom +face face nom +facemmo fare ver +facendo fare ver_sup +facendocela fare ver +facendoci fare ver +facendogli fare ver +facendogliela fare ver +facendogliele fare ver +facendoglieli fare ver +facendoglielo fare ver +facendola fare ver +facendole fare ver +facendoli fare ver +facendolo fare ver +facendomi fare ver +facendone fare ver +facendosela fare ver +facendosele fare ver +facendoseli fare ver +facendoselo fare ver +facendosene fare ver +facendosi fare ver +facendoti fare ver +facendovi fare ver +facente facente adj +facenti fare ver +facesse fare ver +facessero fare ver +facessi fare ver +facessimo fare ver +faceste fare ver +facesti fare ver +faceta faceto adj +facete faceto adj +faceti faceto adj +faceto faceto adj +faceva fare ver_sup +facevamo fare ver +facevano fare ver_sup +facevate fare ver +facevi fare ver +facevo fare ver +facezia facezia nom +facezie facezia nom +fachiri fachiro nom +fachirismo fachirismo nom +fachiro fachiro nom +faci face nom +facies facies nom +facile facile adj +facili facile adj +facilita facilitare ver +facilitando facilitare ver +facilitandogli facilitare ver +facilitandole facilitare ver +facilitandone facilitare ver +facilitano facilitare ver +facilitante facilitare ver +facilitanti facilitare ver +facilitar facilitare ver +facilitarci facilitare ver +facilitare facilitare ver +facilitargli facilitare ver +facilitarla facilitare ver +facilitarle facilitare ver +facilitarlo facilitare ver +facilitarmi facilitare ver +facilitarne facilitare ver +facilitarono facilitare ver +facilitarsi facilitare ver +facilitarti facilitare ver +facilitarvi facilitare ver +facilitasse facilitare ver +facilitassero facilitare ver +facilitata facilitare ver +facilitate facilitare ver +facilitati facilitare ver +facilitato facilitare ver +facilitava facilitare ver +facilitavano facilitare ver +facilitazione facilitazione nom +facilitazioni facilitazione nom +faciliterai facilitare ver +faciliteranno facilitare ver +faciliterebbe facilitare ver +faciliterebbero facilitare ver +faciliterà facilitare ver +faciliti facilitare ver +facilitiamo facilitare ver +facilitino facilitare ver +facilito facilitare ver +facilità facilità nom +facilitò facilitare ver +facilmente facilmente adv +facilona facilone nom +facilone facilone nom +faciloneria faciloneria nom +facilonerie faciloneria nom +faciloni facilone nom +facinorosa facinoroso adj +facinorose facinoroso adj +facinorosi facinoroso nom +facinoroso facinoroso adj +facoceri facocero nom +facocero facocero nom +facola facola nom +facole facola nom +facoltativa facoltativo adj +facoltative facoltativo adj +facoltativi facoltativo adj +facoltativo facoltativo adj +facoltosa facoltoso adj +facoltose facoltoso adj +facoltosi facoltoso adj +facoltoso facoltoso adj +facoltà facoltà nom +faconda facondo adj +faconde facondo adj +facondi facondo adj +facondia facondia nom +facondo facondo adj +facsimile facsimile nom +factoring factoring nom +factotum factotum nom +fading fading nom +fado fado nom +faentina faentina nom +faentine faentina nom +faenza faenza nom +faenze faenza nom +faesite faesite nom +fagacee fagacee nom +fagali fagali nom +faggeta faggeta nom +faggete faggeta nom +faggi faggio nom +faggio faggio nom +fagiani fagiano nom +fagiano fagiano nom +fagioli fagiolo nom +fagiolini fagiolino nom +fagiolino fagiolino nom +fagiolo fagiolo nom +fagli fare ver +faglia faglia nom +faglie faglia nom +faglielo fare ver +fagocita fagocita nom +fagocitando fagocitare ver +fagocitano fagocitare ver +fagocitare fagocitare ver +fagocitarli fagocitare ver +fagocitata fagocitare ver +fagocitate fagocitare ver +fagocitati fagocitare ver +fagocitato fagocitare ver +fagociterà fagocitare ver +fagociti fagocita|fagocito nom +fagocitino fagocitare ver +fagocito fagocito nom +fagocitosi fagocitosi nom +fagocitò fagocitare ver +fagotti fagotto nom +fagotto fagotto nom +fahrenheit fahrenheit adj +fai fare ver_sup +faida faida nom +faille faille nom +faina faina nom +faine faina nom +falange falange nom +falangetta falangetta nom +falangette falangetta nom +falangi falange nom +falangina falangina nom +falangine falangina nom +falansteri falansterio nom +falansterio falansterio nom +falaschi falasco nom +falasco falasco nom +falbe falbo adj +falbo falbo adj +falca falcare ver +falcando falcare ver +falcata falcato adj +falcate falcata nom +falcati falcato adj +falcato falcato adj +falce falce nom +falcetti falcetto nom +falcetto falcetto nom +falchi falco nom +falchino falcare ver +falci falce nom +falcia falciare ver +falciai falciare ver +falciando falciare ver +falciano falciare ver +falciante falciante adj +falcianti falciante adj +falciare falciare ver +falciarono falciare ver +falciata falciare ver +falciate falciare ver +falciati falciare ver +falciato falciare ver +falciatore falciatore nom +falciatori falciatore nom +falciatrice falciatore|falciatrice nom +falciatrici falciatore|falciatrice nom +falciatura falciatura nom +falciava falciare ver +falcidia falcidia nom +falcidie falcidia nom +falcio falciare ver +falcione falcione nom +falcioni falcione nom +falciò falciare ver +falco falco nom +falcone falcone nom +falconeria falconeria nom +falconi falcone nom +falconiere falconiere nom +falconieri falconiere nom +falcò falcare ver +falda falda nom +falde falda nom +faldistorio faldistorio nom +falegname falegname nom +falegnameria falegnameria nom +falegnamerie falegnameria nom +falegnami falegname nom +falena falena nom +falene falena nom +falera falera nom +falere falera nom +falerno falerno nom +falesia falesia nom +falesie falesia nom +falla falla nom +fallace fallace adj +fallaci fallace adj +fallacia fallacia nom +fallai fallare ver +fallare fallare ver +fallata fallare ver +fallati fallare ver +fallato fallare ver +falle falla nom +fallendo fallire ver +fallendola fallire ver +fallendolo fallire ver +fallendone fallire ver +falli fallo nom +falliamo fallare|fallire ver +fallibile fallibile adj +fallibili fallibile adj +fallibilità fallibilità nom +fallimentare fallimentare adj +fallimentari fallimentare adj +fallimenti fallimento nom +fallimento fallimento nom +fallir fallire ver +falliranno fallire ver +fallire fallire ver +fallirebbe fallire ver +fallirebbero fallire ver +falliremo fallire ver +fallirne fallire ver +fallirono fallire ver +fallirà fallire ver +fallisca fallire ver +falliscano fallire ver +fallisce fallire ver +fallisci fallire ver +fallisco fallire ver +falliscono fallire ver +fallisse fallire ver +fallissero fallire ver +fallita fallito adj +fallite fallire ver +falliti fallire ver +fallito fallito adj +falliva fallire ver +fallivano fallire ver +fallo fallo nom +fallosa falloso adj +fallose falloso adj +fallosi falloso adj +fallosità fallosità nom +falloso falloso adj +fallì fallire ver +faloppa faloppa nom +falpalà falpalà nom +falsa falso adj +falsando falsare ver +falsandone falsare ver +falsane falsare ver +falsano falsare ver +falsante falsare ver +falsare falsare ver +falsari falsario nom +falsariga falsariga nom +falsario falsario nom +falsarne falsare ver +falsata falsare ver +falsate falsare ver +falsati falsare ver +falsato falsare ver +falsava falsare ver +false falso adj +falserebbe falsare ver +falserebbero falsare ver +falsetti falsetto nom +falsetto falsetto nom +falsi falso adj +falsifica falsificare ver +falsificabile falsificabile adj +falsificabili falsificabile adj +falsificaci falsificare ver +falsificando falsificare ver +falsificandoli falsificare ver +falsificandone falsificare ver +falsificano falsificare ver +falsificante falsificare ver +falsificanti falsificare ver +falsificare falsificare ver +falsificarla falsificare ver +falsificarle falsificare ver +falsificarli falsificare ver +falsificarlo falsificare ver +falsificarne falsificare ver +falsificarono falsificare ver +falsificasse falsificare ver +falsificata falsificare ver +falsificate falsificare ver +falsificati falsificare ver +falsificato falsificare ver +falsificatore falsificatore nom +falsificatori falsificatore nom +falsificatrice falsificatore nom +falsificava falsificare ver +falsificavano falsificare ver +falsificazione falsificazione nom +falsificazioni falsificazione nom +falsifichi falsificare ver +falsifichino falsificare ver +falsifico falsificare ver +falsificò falsificare ver +falsino falsare ver +falsità falsità nom +falso falso adj +falsopiano falsopiano nom +falsò falsare ver +falò falò nom +fama fama nom +fame fame nom +famedio famedio nom +famelica famelico adj +fameliche famelico adj +famelici famelico adj +famelico famelico adj +famigerata famigerato adj +famigerate famigerato adj +famigerati famigerato adj +famigerato famigerato adj +famigli famiglio nom +famiglia famiglia nom +famigliare famigliare adj +famigliari famigliare adj +famiglie famiglia nom +famiglio famiglio nom +famigliola famigliola nom +famigliole famigliola nom +familiare familiare adj +familiari familiare adj +familiarità familiarità nom +familiarizza familiarizzare ver +familiarizzando familiarizzare ver +familiarizzano familiarizzare ver +familiarizzare familiarizzare ver +familiarizzarono familiarizzare ver +familiarizzarsi familiarizzare ver +familiarizzarti familiarizzare ver +familiarizzassero familiarizzare ver +familiarizzato familiarizzare ver +familiarizzava familiarizzare ver +familiarizzi familiarizzare ver +familiarizzò familiarizzare ver +familiarmente familiarmente adv +fammela fare ver +fammeli fare ver +fammelo fare ver +fammene fare ver +fammi fare ver +famosa famoso adj +famose famoso adj +famosi famoso adj +famoso famoso adj +fan fan nom +fanale fanale nom +fanaleria fanaleria nom +fanalerie fanaleria nom +fanali fanale nom +fanalini fanalino nom +fanalino fanalino nom +fanatica fanatico adj +fanatiche fanatico nom +fanatici fanatico adj +fanatico fanatico adj +fanatismi fanatismo nom +fanatismo fanatismo nom +fanatizzati fanatizzare ver +fanciulla fanciullo nom +fanciulle fanciullo nom +fanciullezza fanciullezza nom +fanciulli fanciullo nom +fanciullo fanciullo nom +fandanghi fandango nom +fandango fandango nom +fandonia fandonia nom +fandonie fandonia nom +fanelli fanello nom +fanello fanello nom +fanerogama fanerogamo adj +fanerogame fanerogama nom +fanerogamo fanerogamo adj +fanfaluca fanfaluca nom +fanfaluche fanfaluca nom +fanfara fanfara nom +fanfare fanfara nom +fanfarona fanfarone nom +fanfaronate fanfaronata nom +fanfarone fanfarone nom +fanfaroni fanfarone nom +fangaia fangaia nom +fangature fangatura nom +fanghi fango nom +fanghiglia fanghiglia nom +fanghiglie fanghiglia nom +fango fango nom +fangosa fangoso adj +fangose fangoso adj +fangosi fangoso adj +fangoso fangoso adj +fanne fare ver +fanno fare ver_sup +fannullona fannullone nom +fannullone fannullone nom +fannulloni fannullone nom +fanone fanone nom +fanoni fanone nom +fantaccini fantaccino nom +fantaccino fantaccino nom +fantapolitica fantapolitica nom +fantapolitiche fantapolitica nom +fantascientifica fantascientifico adj +fantascientifiche fantascientifico adj +fantascientifici fantascientifico adj +fantascientifico fantascientifico adj +fantascienza fantascienza nom +fantasia fantasia nom +fantasie fantasia nom +fantasiosa fantasioso adj +fantasiose fantasioso adj +fantasiosi fantasioso adj +fantasioso fantasioso adj +fantasista fantasista adj +fantasisti fantasista adj +fantasma fantasma nom +fantasmagoria fantasmagoria nom +fantasmagorica fantasmagorico adj +fantasmagoriche fantasmagorico adj +fantasmagorici fantasmagorico adj +fantasmagorico fantasmagorico adj +fantasmagorie fantasmagoria nom +fantasmi fantasma nom +fantastica fantastico adj +fantasticando fantasticare ver +fantasticano fantasticare ver +fantasticare fantasticare ver +fantasticarlo fantasticare ver +fantasticarono fantasticare ver +fantasticata fantasticare ver +fantasticate fantasticare ver +fantasticati fantasticare ver +fantasticato fantasticare ver +fantasticava fantasticare ver +fantasticavano fantasticare ver +fantastiche fantastico adj +fantasticheria fantasticheria nom +fantasticherie fantasticheria nom +fantastici fantastico adj +fantastico fantastico adj +fantasticò fantasticare ver +fante fante nom +fanteria fanteria nom +fanterie fanteria nom +fantesca fantesca nom +fantesche fantesca nom +fanti fante nom +fantina fantino nom +fantine fantino nom +fantini fantino nom +fantino fantino nom +fantocci fantoccio nom +fantoccio fantoccio nom +fantolini fantolino nom +fantolino fantolino nom +fantomatica fantomatico adj +fantomatiche fantomatico adj +fantomatici fantomatico adj +fantomatico fantomatico adj +fanzines fanzine nom +fané fané adj +far fare ver_sup +fara fara sw +farabutti farabutto nom +farabutto farabutto nom +farad farad nom +faraglione faraglione nom +faraglioni faraglione nom +farai fare ver +faranno fare ver_sup +faraona faraona nom +faraone faraona|faraone nom +faraoni faraone nom +faraonica faraonico adj +faraoniche faraonico adj +faraonici faraonico adj +faraonico faraonico adj +farce farcia nom +farcela fare ver +farcele fare ver +farceli fare ver +farcelo fare ver +farcendo farcire ver +farcendole farcire ver +farcene fare ver +farci fare ver_sup +farcia farcia nom +farcire farcire ver +farcirla farcire ver +farcisce farcire ver +farciscono farcire ver +farcita farcire ver +farcite farcire ver +farciti farcire ver +farcito farcire ver +fard fard nom +fardelli fardello nom +fardello fardello nom +fare fare ver_sup +farebbe fare ver_sup +farebbero fare ver +farei fare ver_sup +faremmo fare ver +faremo fare ver_sup +fareste fare ver +faresti fare ver +farete fare ver +faretra faretra nom +faretre faretra nom +farfalla farfalla nom +farfalle farfalla nom +farfallina farfallina nom +farfalline farfallina nom +farfallista farfallista nom +farfallisti farfallista nom +farfallone farfallone nom +farfalloni farfallone nom +farfugli farfugliare ver +farfuglia farfugliare ver +farfugliando farfugliare ver +farfugliare farfugliare ver +farfugliato farfugliare ver +fargli fare ver +fargliela fare ver +fargliele fare ver +farglieli fare ver +farglielo fare ver +fargliene fare ver +fari faro nom +farina farina nom +farinacea farinaceo adj +farinacei farinaceo nom +farinaceo farinaceo adj +farinata farinata nom +farinate farinata nom +farine farina nom +faringe faringe nom +faringea faringeo adj +faringee faringeo adj +faringei faringeo adj +faringeo faringeo adj +faringite faringite nom +faringiti faringite nom +farinosa farinoso adj +farinose farinoso adj +farinosi farinoso adj +farinoso farinoso adj +farisaica farisaico adj +farisaiche farisaico adj +farisaici farisaico adj +farisaico farisaico adj +farisea fariseo nom +farisei fariseo nom +fariseismo fariseismo nom +fariseo fariseo nom +farla fare ver_sup +farle fare ver +farli fare ver_sup +farlo fare ver_sup +farmaceutica farmaceutico adj +farmaceutiche farmaceutico adj +farmaceutici farmaceutico adj +farmaceutico farmaceutico adj +farmaci farmaco nom +farmacia farmacia nom +farmacie farmacia nom +farmacista farmacista nom +farmaciste farmacista nom +farmacisti farmacista nom +farmaco farmaco nom +farmacodipendenza farmacodipendenza nom +farmacoeconomia farmacoeconomia nom +farmacologa farmacologo nom +farmacologi farmacologo nom +farmacologia farmacologia nom +farmacologica farmacologico adj +farmacologiche farmacologico adj +farmacologici farmacologico adj +farmacologico farmacologico adj +farmacologie farmacologia nom +farmacologo farmacologo nom +farmacopea farmacopea nom +farmacopee farmacopea nom +farmacovigilanza farmacovigilanza nom +farmela fare ver +farmele fare ver +farmeli fare ver +farmelo fare ver +farmene fare ver +farmi fare ver +farne fare ver_sup +farnetica farnetico adj +farneticamento farneticamento nom +farneticando farneticare ver +farneticante farneticare ver +farneticanti farneticare ver +farneticare farneticare ver +farneticato farneticare ver +farnetichi farnetico nom +farnetici farnetico adj +farnia farnia nom +farnie farnia nom +faro faro nom_sup +farragine farragine nom +farraginosa farraginoso adj +farraginose farraginoso adj +farraginosi farraginoso adj +farraginosità farraginosità nom +farraginoso farraginoso adj +farri farro nom +farro farro nom +farsa farsa nom +farse farsa nom +farsela fare ver +farsele fare ver +farseli fare ver +farselo fare ver +farsene fare ver +farsetti farsetto nom +farsetto farsetto nom +farsi fare ver_sup +fartela fare ver +fartele fare ver +farteli fare ver +fartelo fare ver +fartene fare ver +farti fare ver +farvela fare ver +farvele fare ver +farveli fare ver +farvelo fare ver +farvene fare ver +farvi fare ver_sup +farà fare ver_sup +farò fare ver_sup +fasce fascia nom +fascerei fasciare ver +fascetta fascetta nom +fascette fascetta nom +fasci fascio nom +fascia fascia nom +fasciale fasciare ver +fasciali fasciare ver +fasciame fasciame nom +fasciami fasciame nom +fasciamo fasciare ver +fasciamoci fasciare ver +fasciando fasciare ver +fasciandoci fasciare ver +fasciandolo fasciare ver +fasciandosi fasciare ver +fasciano fasciare ver +fasciante fasciante adj +fascianti fasciante adj +fasciarci fasciare ver +fasciare fasciare ver +fasciargli fasciare ver +fasciarlo fasciare ver +fasciarono fasciare ver +fasciarsi fasciare ver +fasciata fasciato adj +fasciate fasciare ver +fasciati fasciato adj +fasciato fasciato nom +fasciatura fasciatura nom +fasciature fasciatura nom +fasciava fasciare ver +fasciavano fasciare ver +fascicolata fascicolato adj +fascicolate fascicolato adj +fascicolati fascicolato adj +fascicolato fascicolato adj +fascicoli fascicolo nom +fascicolo fascicolo nom +fascina fascina nom +fascinaci fascinare ver +fascinante fascinare ver +fascinata fascinare ver +fascinate fascinare ver +fascinati fascinare ver +fascinato fascinare ver +fascine fascina nom +fascini fascino nom +fascino fascino nom +fascinosa fascinoso adj +fascinose fascinoso adj +fascinosi fascinoso adj +fascinoso fascinoso adj +fascio fascio nom +fasciola fasciola nom +fasciole fasciola nom +fascismi fascismo nom +fascismo fascismo nom +fascista fascista adj +fasciste fascista adj +fascisti fascista adj +fasciò fasciare ver +fase fase nom +fasi fase nom +fasometri fasometro nom +fasometro fasometro nom +fastelli fastello nom +fastello fastello nom +fasti fasti|fasto nom +fastidi fastidio nom +fastidio fastidio nom +fastidiosa fastidioso adj +fastidiose fastidioso adj +fastidiosi fastidioso adj +fastidioso fastidioso adj +fastigi fastigio nom +fastigio fastigio nom +fasto fasto nom +fastosa fastoso adj +fastose fastoso adj +fastosi fastoso adj +fastosità fastosità nom +fastoso fastoso adj +fasulla fasullo adj +fasulle fasullo adj +fasulli fasullo adj +fasullo fasullo adj +fata fata nom +fatale fatale adj +fatali fatale adj +fatalismi fatalismo nom +fatalismo fatalismo nom +fatalista fatalista nom +fataliste fatalista nom +fatalisti fatalista nom +fatalistica fatalistico adj +fatalistiche fatalistico adj +fatalistico fatalistico adj +fatalità fatalità nom +fatalmente fatalmente adv +fatata fatato adj +fatate fatato adj +fatati fatato adj +fatato fatato adj +fate fata nom_sup +fatecelo fare ver +fateci fare ver +fategli fare ver +fatela fare ver +fatele fare ver +fateli fare ver +fatelo fare ver +fatemela fare ver +fatemele fare ver +fatemeli fare ver +fatemelo fare ver +fatemene fare ver +fatemi fare ver +fatene fare ver +fatevela fare ver +fatevele fare ver +fateveli fare ver +fatevelo fare ver +fatevene fare ver +fatevi fare ver +fati fato nom +fatica fatica nom +faticai faticare ver +faticando faticare ver +faticano faticare ver +faticar faticare ver +faticare faticare ver +faticarono faticare ver +faticasse faticare ver +faticata faticata nom +faticate faticata nom +faticato faticare ver +faticatore faticatore nom +faticatrice faticatore nom +faticava faticare ver +faticavano faticare ver +fatiche fatica nom +faticherai faticare ver +faticheranno faticare ver +faticherebbero faticare ver +faticherei faticare ver +faticheremo faticare ver +faticherà faticare ver +fatichi faticare ver +fatichiamo faticare ver +fatichino faticare ver +fatico faticare ver +faticosa faticoso adj +faticosamente faticosamente adv +faticose faticoso adj +faticosi faticoso adj +faticoso faticoso adj +faticò faticare ver +fatidica fatidico adj +fatidiche fatidico adj +fatidici fatidico adj +fatidico fatidico adj +fato fato nom +fatta fare ver_sup +fattacci fattaccio nom +fattaccio fattaccio nom +fattasi fattasi sw +fatte fare ver_sup +fattela fare ver +fattele fare ver +fatteli fare ver +fattelo fare ver +fattene fare ver +fatterelli fatterello nom +fatterello fatterello nom +fattezza fattezza nom +fattezze fattezza nom +fatti fatto nom +fattibile fattibile adj +fattibili fattibile adj +fattibilità fattibilità nom +fattispecie fattispecie nom +fattiva fattivo adj +fattivamente fattivamente adv +fattive fattivo adj +fattivi fattivo adj +fattivo fattivo adj +fatto fare ver +fattone fare ver +fattore fattore nom +fattoressa fattore nom +fattori fattore nom +fattoria fattoria nom +fattoriale fattoriale adj +fattoriali fattoriale adj +fattorie fattoria nom +fattorina fattorino nom +fattorini fattorino nom +fattorino fattorino nom +fattrice fattrice nom +fattrici fattrice nom +fattuale fattuale nom +fattucchiera fattucchiere nom +fattucchiere fattucchiere nom +fattucchieri fattucchiere nom +fattucchieria fattucchieria nom +fattura fattura nom +fatturando fatturare ver +fatturano fatturare ver +fatturare fatturare ver +fatturata fatturare ver +fatturate fatturato adj +fatturati fatturato nom +fatturato fatturato nom +fatturava fatturare ver +fatturazione fatturazione nom +fatturazioni fatturazione nom +fatture fattura nom +fatturò fatturare ver +fatua fatuo adj +fatue fatuo adj +fatui fatuo adj +fatuità fatuità nom +fatuo fatuo adj +fatwa fatwa nom +fauci fauci nom +fauna fauna nom +faune fauna nom +fauni fauno nom +faunistiche faunistico adj +fauno fauno nom +fausta fausto adj +fauste fausto adj +fausti fausto adj +fausto fausto adj +fautore fautore nom +fautori fautore nom +fautrice fautore nom +fautrici fautore nom +fauvismo fauvismo nom +fava fava nom +favagello favagello nom +fave fava nom +favella favella nom +favellami favellare ver +favellando favellare ver +favellar favellare ver +favellare favellare ver +favellato favellare ver +favelle favella nom +favelli favellare ver +favette favetta nom +favi favo nom +favilla favilla nom +faville favilla nom +favo favo nom +favola favola nom +favole favola nom +favoleggia favoleggiare ver +favoleggiando favoleggiare ver +favoleggiano favoleggiare ver +favoleggiare favoleggiare ver +favoleggiata favoleggiare ver +favoleggiati favoleggiare ver +favoleggiato favoleggiare ver +favoleggiava favoleggiare ver +favoleggiavano favoleggiare ver +favoleggiò favoleggiare ver +favolello favolello nom +favolista favolista nom +favolisti favolista nom +favolistica favolistica nom +favolistiche favolistica nom +favolosa favoloso adj +favolose favoloso adj +favolosi favoloso adj +favoloso favoloso adj +favoni favonio nom +favonio favonio nom +favore favore nom +favoreggia favoreggiare ver +favoreggiamenti favoreggiamento nom +favoreggiamento favoreggiamento nom +favoreggiando favoreggiare ver +favoreggiare favoreggiare ver +favoreggiato favoreggiare ver +favoreggiatore favoreggiatore nom +favoreggiatori favoreggiatore nom +favorendo favorire ver +favorendola favorire ver +favorendole favorire ver +favorendoli favorire ver +favorendolo favorire ver +favorendone favorire ver +favorendovi favorire ver +favorente favorire ver +favorenti favorire ver +favorevole favorevole adj +favorevoli favorevole adj +favorevolmente favorevolmente adv +favori favore nom +favoriamo favorire ver +favoriranno favorire ver +favorirci favorire ver +favorire favorire ver +favorirebbe favorire ver +favorirebbero favorire ver +favorirei favorire ver +favoriremo favorire ver +favoriresti favorire ver +favorirla favorire ver +favorirle favorire ver +favorirli favorire ver +favorirlo favorire ver +favorirmi favorire ver +favorirne favorire ver +favorirono favorire ver +favorirsi favorire ver +favorirà favorire ver +favorisca favorire ver +favoriscano favorire ver +favorisce favorire ver +favorisci favorire ver +favoriscono favorire ver +favorisse favorire ver +favorissero favorire ver +favorissimo favorire ver +favorita favorire ver +favorite favorito adj +favoriti favorito nom +favoritismi favoritismo nom +favoritismo favoritismo nom +favorito favorire ver +favoriva favorire ver +favorivano favorire ver +favorì favorire ver +fax fax nom +fazenda fazenda nom +fazione fazione nom +fazioni fazione nom +faziosa fazioso adj +faziose fazioso adj +faziosi fazioso adj +faziosità faziosità nom +fazioso fazioso adj +fazzoletti fazzoletto nom +fazzoletto fazzoletto nom +febbraio febbraio nom +febbre febbre nom +febbri febbre nom +febbricitante febbricitante adj +febbricitanti febbricitante adj +febbricola febbricola nom +febbrifuga febbrifugo adj +febbrifughe febbrifugo adj +febbrifughi febbrifugo nom +febbrifugo febbrifugo adj +febbrile febbrile adj +febbrili febbrile adj +febbrone febbrone nom +febbroni febbrone nom +fecale fecale adj +fecali fecale adj +fecce feccia nom +feccia feccia nom +fece fare ver_sup +fecero fare ver_sup +feci feci nom_sup +fecola fecola nom +fecole fecola nom +feconda fecondo adj +fecondabile fecondabile adj +fecondando fecondare ver +fecondandola fecondare ver +fecondandosi fecondare ver +fecondano fecondare ver +fecondante fecondare ver +fecondanti fecondare ver +fecondare fecondare ver +fecondarla fecondare ver +fecondarle fecondare ver +fecondarlo fecondare ver +fecondarne fecondare ver +fecondarono fecondare ver +fecondarsi fecondare ver +fecondasse fecondare ver +fecondata fecondare ver +fecondate fecondare ver +fecondati fecondare ver +fecondativi fecondativo adj +fecondativo fecondativo adj +fecondato fecondare ver +fecondatore fecondatore adj +fecondatrice fecondatore adj +fecondatrici fecondatore adj +fecondava fecondare ver +fecondavano fecondare ver +fecondazione fecondazione nom +fecondazioni fecondazione nom +feconde fecondo adj +feconderanno fecondare ver +feconderà fecondare ver +fecondi fecondo adj +fecondino fecondare ver +fecondità fecondità nom +fecondo fecondo adj +fecondò fecondare ver +fede fede nom +fedecommessi fedecommesso nom +fedecommesso fedecommesso nom +fedele fedele adj +fedeli fedele adj +fedelmente fedelmente adv +fedeltà fedeltà nom +federa federa nom +federale federale adj +federali federale adj +federalismi federalismo nom +federalismo federalismo nom +federalista federalista nom +federaliste federalista nom +federalisti federalista nom +federalistico federalistico adj +federalizzazione federalizzazione nom +federata federato adj +federate federato adj +federati federato adj +federativa federativo adj +federative federativo adj +federativi federativo adj +federativo federativo adj +federato federato adj +federazione federazione nom +federazioni federazione nom +federconsorzi federconsorzi nom +federe federa nom +fedi fede nom +fedifraga fedifrago adj +fedifraghe fedifrago adj +fedifrago fedifrago adj +fedina fedina nom +fedine fedina nom +feedback feedback nom +fegatella fegatella nom +fegatelli fegatello nom +fegatello fegatello nom +fegati fegato nom +fegatini fegatino nom +fegatino fegatino nom +fegato fegato nom +fegatoso fegatoso adj +felce felce nom +felci felce|felci nom +feldmarescialli feldmaresciallo nom +feldmaresciallo feldmaresciallo nom +feldspati feldspato nom +feldspatica feldspatico adj +feldspatiche feldspatico adj +feldspatici feldspatico adj +feldspatico feldspatico adj +feldspato feldspato nom +felice felice adj +felicemente felicemente adv +felici felice adj +felicita felicitare ver +felicitandosi felicitare ver +felicitare felicitare ver +felicitarmi felicitare ver +felicitarono felicitare ver +felicitarsi felicitare ver +felicitata felicitare ver +felicitate felicitare ver +felicitati felicitare ver +felicitato felicitare ver +felicitazione felicitazione nom +felicitazioni felicitazione nom +feliciterà felicitare ver +felicito felicitare ver +felicità felicità nom +felicitò felicitare ver +felina felino adj +feline felino adj +felini felino nom +felino felino adj +fellah fellah nom +felling felling nom +fellone fellone nom +felloni fellone nom +fellonia fellonia nom +felpa felpa nom +felpata felpato adj +felpate felpato adj +felpato felpato adj +felpe felpa nom +feltra feltrare ver +feltrano feltrare ver +feltrare feltrare ver +feltrata feltrare ver +feltrato feltrare ver +feltratura feltratura nom +feltrazione feltrazione nom +feltri feltro nom +feltrino feltrare ver +feltro feltro nom +feluca feluca nom +feluche feluca nom +femmina femmina nom +femmine femmina nom +femminea femmineo adj +femminee femmineo adj +femminei femmineo adj +femminella femminella nom +femminelle femminella nom +femmineo femmineo adj +femminile femminile adj +femminili femminile adj +femminilità femminilità nom +femminilizzazione femminilizzazione nom +femminina femminino adj +femminine femminino adj +femminini femminino adj +femminino femminino adj +femminismi femminismo nom +femminismo femminismo nom +femminista femminista nom +femministe femminista nom +femministi femminista nom +femminucce femminuccia nom +femminuccia femminuccia nom +femorale femorale adj +femorali femorale adj +femore femore nom +femori femore nom +fenda fendere ver +fende fendere ver +fendendo fendere ver +fendente fendente nom +fendenti fendente nom +fender fendere ver +fendere fendere ver +fendersi fendere ver +fendeva fendere ver +fendevano fendere ver +fendi fendere ver +fendinebbia fendinebbia nom +fenditura fenditura nom +fenditure fenditura nom +fendono fendere ver +fenica fenico adj +fenicata fenicato adj +fenice fenice nom +fenici fenice|fenicio nom +fenicia fenicio adj +fenicie fenicio adj +fenicio fenicio adj +fenico fenico adj +fenicotteri fenicottero nom +fenicottero fenicottero nom +fenile fenile adj +fenili fenile adj +fenolftaleina fenolftaleina nom +fenoli fenolo nom +fenolica fenolico adj +fenoliche fenolico adj +fenolici fenolico adj +fenolico fenolico adj +fenolo fenolo nom +fenologia fenologia nom +fenologie fenologia nom +fenomenale fenomenale adj +fenomenali fenomenale adj +fenomeni fenomeno nom +fenomenica fenomenico adj +fenomeniche fenomenico adj +fenomenici fenomenico adj +fenomenico fenomenico adj +fenomenismo fenomenismo nom +fenomeno fenomeno nom +fenomenologia fenomenologia nom +fenomenologie fenomenologia nom +fenotipi fenotipo nom +fenotipo fenotipo nom +fera fero adj +ferace ferace adj +feraci ferace adj +feracità feracità nom +ferale ferale adj +ferali ferale adj +fere fero adj +ferendo ferire ver +ferendogli ferire ver +ferendola ferire ver +ferendole ferire ver +ferendoli ferire ver +ferendolo ferire ver +ferendone ferire ver +ferendosi ferire ver +ferente ferire ver +ferenti ferire ver +feretri feretro nom +feretro feretro nom +feretti feretto nom +feretto feretto nom +feri fero adj +feria feria nom +feriale feriale adj +feriali feriale adj +ferie feria nom +ferii ferire ver +ferimenti ferimento nom +ferimento ferimento nom +ferina ferino adj +ferine ferino adj +ferini ferino adj +ferino ferino adj +ferir ferire ver +ferirai ferire ver +feriranno ferire ver +ferire ferire ver +ferirebbe ferire ver +ferirgli ferire ver +ferirla ferire ver +ferirle ferire ver +ferirli ferire ver +ferirlo ferire ver +ferirmi ferire ver +ferirne ferire ver +ferirono ferire ver +ferirsi ferire ver +ferirti ferire ver +ferirvi ferire ver +ferirà ferire ver +ferirò ferire ver +ferisca ferire ver +feriscano ferire ver +ferisce ferire ver +ferisci ferire ver +ferisco ferire ver +feriscono ferire ver +ferisse ferire ver +ferissero ferire ver +ferita ferita|ferito nom +ferite ferita|ferito nom +feriti ferito nom +ferito ferire ver +feritoia feritoia nom +feritoie feritoia nom +feritore feritore nom +feritori feritore nom +ferità ferità nom +feriva ferire ver +ferivano ferire ver +ferma fermo adj +fermacarte fermacarte nom +fermacravatta fermacravatta nom +fermagli fermaglio nom +fermaglio fermaglio nom +fermai fermare ver +fermala fermare ver +fermale fermare ver +fermalo fermare ver +fermamente fermamente adv +fermami fermare ver +fermammo fermare ver +fermando fermare ver +fermandoci fermare ver +fermandola fermare ver +fermandole fermare ver +fermandoli fermare ver +fermandolo fermare ver +fermandomi fermare ver +fermandone fermare ver +fermandosi fermare ver +fermandoti fermare ver +fermane fermare ver +fermanelli fermanello nom +fermano fermare ver +fermante fermare ver +fermar fermare ver +fermarci fermare ver +fermare fermare ver +fermarla fermare ver +fermarle fermare ver +fermarli fermare ver +fermarlo fermare ver +fermarmi fermare ver +fermarne fermare ver +fermarono fermare ver +fermarsi fermare ver +fermarti fermare ver +fermarvi fermare ver +fermasi fermare ver +fermasse fermare ver +fermassero fermare ver +fermassi fermare ver +fermassimo fermare ver +fermasti fermare ver +fermata fermata|fermato nom +fermatasi fermare ver +fermate fermata|fermato nom +fermateci fermare ver +fermatelo fermare ver +fermatemi fermare ver +fermatesi fermare ver +fermatevi fermare ver +fermati fermare ver +fermato fermare ver +fermava fermare ver +fermavano fermare ver +fermavo fermare ver +ferme fermo adj +fermenta fermentare ver +fermentaci fermentare ver +fermentando fermentare ver +fermentano fermentare ver +fermentante fermentare ver +fermentanti fermentare ver +fermentare fermentare ver +fermentasi fermentare ver +fermentata fermentare ver +fermentate fermentare ver +fermentati fermentare ver +fermentativa fermentativo adj +fermentative fermentativo adj +fermentativi fermentativo adj +fermentativo fermentativo adj +fermentato fermentare ver +fermentava fermentare ver +fermentavano fermentare ver +fermentazione fermentazione nom +fermentazioni fermentazione nom +fermenti fermento nom +fermentino fermentare ver +fermento fermento nom +fermentò fermentare ver +fermerai fermare ver +fermeranno fermare ver +fermerebbe fermare ver +fermerebbero fermare ver +fermerei fermare ver +fermeremo fermare ver +fermerà fermare ver +fermerò fermare ver +fermezza fermezza nom +fermi fermo adj +fermiamo fermare ver +fermiamoci fermare ver +fermiamola fermare ver +fermiamoli fermare ver +fermiamolo fermare ver +fermino fermare ver +fermio fermio nom +fermo fermo adj +fermò fermare ver +fernet fernet nom +fero fero adj +feroce feroce adj +feroci feroce adj +ferocia ferocia nom +ferodi ferodo nom +ferodo ferodo nom +ferra ferrare ver +ferraglia ferraglia nom +ferragostana ferragostano adj +ferragostane ferragostano adj +ferragostani ferragostano adj +ferragostano ferragostano adj +ferragosto ferragosto nom +ferrai ferraio adj +ferraia ferraio adj +ferraio ferraio adj +ferraioli ferraiolo nom +ferraiolo ferraiolo nom +ferrale ferrare ver +ferrali ferrare ver +ferrame ferrame nom +ferramenta ferramenta nom +ferramenti ferramento nom +ferramento ferramento nom +ferrando ferrare ver +ferrano ferrare ver +ferrante ferrare ver +ferranti ferrare ver +ferrar ferrare ver +ferrare ferrare ver +ferrarese ferrarese adj +ferraresi ferrarese adj +ferrasse ferrare ver +ferrata ferrato adj +ferrate ferrato adj +ferrati ferrato adj +ferrato ferrare ver +ferratura ferratura nom +ferrature ferratura nom +ferrea ferreo adj +ferree ferreo adj +ferrei ferreo adj +ferreo ferreo adj +ferri ferro nom +ferriera ferriera nom +ferriere ferriera nom +ferrifera ferrifero adj +ferrifere ferrifero adj +ferriferi ferrifero adj +ferrifero ferrifero adj +ferrigna ferrigno adj +ferrigni ferrigno adj +ferrigno ferrigno adj +ferrino ferrare ver +ferrite ferrite nom +ferriti ferrite nom +ferro ferro nom +ferrolega ferrolega nom +ferroleghe ferrolega nom +ferromagnetica ferromagnetico adj +ferromagnetiche ferromagnetico adj +ferromagnetici ferromagnetico adj +ferromagnetico ferromagnetico adj +ferromagnetismo ferromagnetismo nom +ferrosa ferroso adj +ferrose ferroso adj +ferrosi ferroso adj +ferroso ferroso adj +ferrotranviari ferrotranviario adj +ferrotranviaria ferrotranviario adj +ferrotranviarie ferrotranviario adj +ferrotranviario ferrotranviario adj +ferrovecchio ferrovecchio nom +ferrovia ferrovia nom +ferroviari ferroviario adj +ferroviaria ferroviario adj +ferroviarie ferroviario adj +ferroviario ferroviario adj +ferrovie ferrovia nom +ferroviere ferroviere nom +ferrovieri ferroviere nom +ferruminatorio ferruminatorio adj +ferrò ferrare ver +fertile fertile adj +fertili fertile adj +fertilità fertilità nom +fertilizza fertilizzare ver +fertilizzando fertilizzare ver +fertilizzandoli fertilizzare ver +fertilizzano fertilizzare ver +fertilizzante fertilizzante nom +fertilizzanti fertilizzante nom +fertilizzare fertilizzare ver +fertilizzarle fertilizzare ver +fertilizzasse fertilizzare ver +fertilizzata fertilizzare ver +fertilizzate fertilizzare ver +fertilizzati fertilizzare ver +fertilizzato fertilizzare ver +fertilizzazione fertilizzazione nom +fertilizzazioni fertilizzazione nom +ferve fervere ver +fervente fervente adj +ferventi fervente adj +ferver fervere ver +fervere fervere ver +ferveva fervere ver +fervevano fervere ver +fervi fervere ver +fervida fervido adj +fervide fervido adj +fervidi fervido adj +fervido fervido adj +fervono fervere ver +fervore fervore nom +fervori fervore nom +fervorini fervorino nom +fervorino fervorino nom +fervorosa fervoroso adj +fervorose fervoroso adj +fervorosi fervoroso adj +fervoroso fervoroso adj +ferzi ferzo nom +ferzo ferzo nom +ferì ferire ver +fesa fesa nom +fescennina fescennino adj +fescennini fescennino adj +fescennino fescennino adj +fese fendere ver +fesi fendere ver +feso fendere ver +fessa fesso adj +fesse fesso adj +fesseria fesseria nom +fesserie fesseria nom +fessi fesso adj +fesso fesso adj +fessura fessura nom +fessure fessura nom +festa festa nom +festaiola festaiolo adj +festaiole festaiolo adj +festaioli festaiolo adj +festaiolo festaiolo adj +festante festante adj +festanti festante adj +feste festa nom +festeggeranno festeggiare ver +festeggerà festeggiare ver +festeggi festeggiare ver +festeggia festeggiare ver +festeggiamenti festeggiamento nom +festeggiamento festeggiamento nom +festeggiamo festeggiare ver +festeggiando festeggiare ver +festeggiandola festeggiare ver +festeggiandone festeggiare ver +festeggiandosi festeggiare ver +festeggiano festeggiare ver +festeggiante festeggiare ver +festeggianti festeggiare ver +festeggiar festeggiare ver +festeggiarci festeggiare ver +festeggiare festeggiare ver +festeggiarla festeggiare ver +festeggiarle festeggiare ver +festeggiarlo festeggiare ver +festeggiarne festeggiare ver +festeggiarono festeggiare ver +festeggiarsi festeggiare ver +festeggiasse festeggiare ver +festeggiassero festeggiare ver +festeggiata festeggiare ver +festeggiate festeggiare ver +festeggiati festeggiare ver +festeggiato festeggiare ver +festeggiava festeggiare ver +festeggiavano festeggiare ver +festeggino festeggiare ver +festeggio festeggiare ver +festeggiò festeggiare ver +festevole festevole adj +festini festino nom +festino festino nom +festiva festivo adj +festival festival nom +festive festivo adj +festivi festivo adj +festività festività nom +festivo festivo adj +festone festone nom +festoni festone nom +festosa festoso adj +festose festoso adj +festosi festoso adj +festosità festosità nom +festoso festoso adj +festuca festuca nom +fetale fetale adj +fetali fetale adj +fetente fetente adj +fetenti fetente adj +feti feto nom +feticci feticcio nom +feticcio feticcio nom +feticismi feticismo nom +feticismo feticismo nom +feticista feticista adj +feticiste feticista adj +feticisti feticista adj +fetida fetido adj +fetide fetido adj +fetidi fetido adj +fetido fetido adj +feto feto nom +fetore fetore nom +fetori fetore nom +fetta fetta nom +fette fetta nom +fettucce fettuccia nom +fettuccia fettuccia nom +fettuccina fettuccina nom +fettuccine fettuccina nom +feudale feudale adj +feudalesimi feudalesimo nom +feudalesimo feudalesimo nom +feudali feudale adj +feudalità feudalità nom +feudatari feudatario nom +feudataria feudatario nom +feudatarie feudatario nom +feudatario feudatario nom +feudi feudo nom +feudo feudo nom +feuilleton feuilleton nom +fez fez nom +fiaba fiaba nom +fiabe fiaba nom +fiabesca fiabesco adj +fiabesche fiabesco adj +fiabeschi fiabesco adj +fiabesco fiabesco adj +fiacca fiacco adj +fiaccando fiaccare ver +fiaccandone fiaccare ver +fiaccano fiaccare ver +fiaccare fiaccare ver +fiaccarlo fiaccare ver +fiaccarne fiaccare ver +fiaccarono fiaccare ver +fiaccarsi fiaccare ver +fiaccata fiaccare ver +fiaccate fiaccare ver +fiaccati fiaccare ver +fiaccato fiaccare ver +fiacche fiacco adj +fiaccherai fiaccheraio nom +fiaccheraio fiaccheraio nom +fiacchezza fiacchezza nom +fiacchi fiacco adj +fiacco fiacco adj +fiaccola fiaccola nom +fiaccolata fiaccolata nom +fiaccolate fiaccolata nom +fiaccole fiaccola nom +fiaccò fiaccare ver +fiacre fiacre nom +fiala fiala nom +fiale fiala nom +fiamma fiamma nom +fiammante fiammante adj +fiammanti fiammante adj +fiammata fiammata nom +fiammate fiammata nom +fiammati fiammato adj +fiammato fiammato adj +fiamme fiamma nom +fiammeggia fiammeggiare ver +fiammeggiando fiammeggiare ver +fiammeggiante fiammeggiante adj +fiammeggianti fiammeggiante adj +fiammeggiar fiammeggiare ver +fiammeggiare fiammeggiare ver +fiammeggiata fiammeggiare ver +fiammeggiò fiammeggiare ver +fiammiferai fiammiferaio nom +fiammiferaio fiammiferaio nom +fiammiferi fiammifero nom +fiammifero fiammifero nom +fiamminga fiammingo adj +fiamminghe fiammingo adj +fiamminghi fiammingo adj +fiammingo fiammingo adj +fiancale fiancare ver +fiancata fiancata nom +fiancate fiancata nom +fiancato fiancare ver +fiancheggia fiancheggiare ver +fiancheggiando fiancheggiare ver +fiancheggiandole fiancheggiare ver +fiancheggiano fiancheggiare ver +fiancheggiante fiancheggiare ver +fiancheggianti fiancheggiare ver +fiancheggiare fiancheggiare ver +fiancheggiarlo fiancheggiare ver +fiancheggiarono fiancheggiare ver +fiancheggiata fiancheggiare ver +fiancheggiate fiancheggiare ver +fiancheggiati fiancheggiare ver +fiancheggiato fiancheggiare ver +fiancheggiatore fiancheggiatore adj +fiancheggiatori fiancheggiatore nom +fiancheggiatrice fiancheggiatore adj +fiancheggiatrici fiancheggiatore adj +fiancheggiava fiancheggiare ver +fiancheggiavano fiancheggiare ver +fiancheggiò fiancheggiare ver +fianchi fianco nom +fianco fianco nom +fiandra fiandra nom +fiandre fiandra nom +fiasca fiasca|fiasco nom +fiasche fiasca|fiasco nom +fiaschetteria fiaschetteria nom +fiaschetterie fiaschetteria nom +fiaschi fiasco nom +fiasco fiasco nom +fiat fiat nom +fiata fiata nom +fiatare fiatare ver +fiatata fiatare ver +fiatato fiatare ver +fiate fiata nom +fiati fiati|fiato nom +fiatino fiatare ver +fiato fiato nom +fibbia fibbia nom +fibbie fibbia nom +fiberglass fiberglass nom +fibra fibra nom +fibre fibra nom +fibrillazione fibrillazione nom +fibrillazioni fibrillazione nom +fibrina fibrina nom +fibrine fibrina nom +fibrinogeno fibrinogeno nom +fibrocemento fibrocemento nom +fibroma fibroma nom +fibromi fibroma nom +fibrosa fibroso adj +fibrose fibroso adj +fibrosi fibroso adj +fibrosità fibrosità nom +fibroso fibroso adj +fibula fibula nom +fibule fibula nom +fica fica nom +ficca ficcare ver +ficcai ficcare ver +ficcanasi ficcanasi nom +ficcanaso ficcanaso nom +ficcando ficcare ver +ficcandogli ficcare ver +ficcano ficcare ver +ficcante ficcare ver +ficcanti ficcare ver +ficcarci ficcare ver +ficcare ficcare ver +ficcarlo ficcare ver +ficcarmi ficcare ver +ficcarsi ficcare ver +ficcata ficcare ver +ficcate ficcare ver +ficcati ficcare ver +ficcato ficcare ver +ficcherò ficcare ver +ficchi ficcare ver +ficchiamo ficcare ver +ficchiamoci ficcare ver +ficco ficcare ver +ficcò ficcare ver +fiche fica|fiche nom +fichi fico nom +fichu fichu nom +fico fico nom +fida fidare ver +fidando fidare ver +fidandoci fidare ver +fidandomi fidare ver +fidandosene fidare ver +fidandosi fidare ver +fidano fidare ver +fidante fidare ver +fidanza fidanzare ver +fidanzamenti fidanzamento nom +fidanzamento fidanzamento nom +fidanzando fidanzare ver +fidanzandosi fidanzare ver +fidanzano fidanzare ver +fidanzare fidanzare ver +fidanzarla fidanzare ver +fidanzarlo fidanzare ver +fidanzarono fidanzare ver +fidanzarsi fidanzare ver +fidanzasse fidanzare ver +fidanzata fidanzato nom +fidanzate fidanzato nom +fidanzati fidanzato nom +fidanzato fidanzato nom +fidanzeranno fidanzare ver +fidanzerà fidanzare ver +fidanzi fidanzare ver +fidanziamoci fidanzare ver +fidanzino fidanzare ver +fidanzò fidanzare ver +fidar fidare ver +fidarci fidare ver +fidare fidare ver +fidarmi fidare ver +fidarono fidare ver +fidarsi fidare ver +fidarti fidare ver +fidarvi fidare ver +fidasse fidare ver +fidassero fidare ver +fidassi fidare ver +fidassimo fidare ver +fidata fidato adj +fidate fidato adj +fidatevi fidare ver +fidatezza fidatezza nom +fidati fidato adj +fidato fidato adj +fidava fidare ver +fidavano fidare ver +fidavi fidare ver +fidavo fidare ver +fide fido adj +fidecommessi fidecommesso nom +fidecommesso fidecommesso nom +fideismo fideismo nom +fideista fideista nom +fideiste fideista nom +fideisti fideista nom +fideiussione fideiussione nom +fideiussioni fideiussione nom +fideiussore fideiussore nom +fideiussori fideiussore nom +fidente fidente adj +fidenti fidente adj +fiderai fidare ver +fideranno fidare ver +fiderei fidare ver +fidereste fidare ver +fideresti fidare ver +fiderà fidare ver +fiderò fidare ver +fidi fidare ver +fidiamo fidare ver +fidiamoci fidare ver +fidino fidare ver +fido fido adj +fiducia fiducia nom +fiduciari fiduciario adj +fiduciaria fiduciario adj +fiduciarie fiduciario adj +fiduciario fiduciario adj +fiducie fiducia nom +fiduciosa fiducioso adj +fiduciose fiducioso adj +fiduciosi fiducioso adj +fiducioso fiducioso adj +fidò fidare ver +fiele fiele nom +fienagione fienagione nom +fienagioni fienagione nom +fieni fieno nom +fienile fienile nom +fienili fienile nom +fieno fieno nom +fiera fiera nom +fiere fiera nom +fierezza fierezza nom +fieri fiero adj +fieristica fieristico adj +fieristiche fieristico adj +fieristici fieristico adj +fieristico fieristico adj +fiero fiero adj +fievole fievole adj +fievoli fievole adj +fifa fifa nom +fife fifa nom +fifone fifone adj +fifoni fifone nom +figa figa nom +figari figaro nom +figaro figaro nom +figga figgere ver +figge figgere ver +figgere figgere ver +figgi figgere ver +fighe figa nom +figiana figiano adj +figiane figiano adj +figiani figiano adj +figiano figiano adj +figli figlio nom +figlia figlio nom +figliale figliare ver +figliali figliare ver +figliano figliare ver +figliare figliare ver +figliarono figliare ver +figliastra figliastro nom +figliastre figliastro nom +figliastri figliastro nom +figliastro figliastro nom +figliata figliata nom +figliate figliata nom +figliato figliare ver +figlie figlio nom +figlino figliare ver +figlio figlio nom +figliocci figlioccio nom +figlioccio figlioccio nom +figliola figliolo nom +figliolanza figliolanza nom +figliolanze figliolanza nom +figliole figliolo nom +figlioletta figlioletto nom +figlioli figliolo nom +figliolo figliolo nom +figuli figulo nom +figulina figulina nom +figuline figulina nom +figulo figulo nom +figura figura nom +figuracce figuraccia nom +figuraccia figuraccia nom +figurale figurare ver +figurali figurare ver +figurando figurare ver +figurandosi figurare ver +figurandovi figurare ver +figurano figurare ver +figurante figurante nom +figuranti figurante nom +figurarci figurare ver +figurare figurare ver +figurarla figurare ver +figurarmi figurare ver +figurarono figurare ver +figurarseli figurare ver +figurarselo figurare ver +figurarsi figurare ver +figurarvi figurare ver +figurasse figurare ver +figurassero figurare ver +figurata figurare ver +figuratamente figuratamente adv +figurate figurato adj +figuratevi figurare ver +figurati figurato adj +figurativa figurativo adj +figurative figurativo adj +figurativi figurativo adj +figurativo figurativo adj +figurato figurato adj +figurava figurare ver +figuravano figurare ver +figuravo figurare ver +figurazione figurazione nom +figurazioni figurazione nom +figure figura nom +figureranno figurare ver +figurerebbe figurare ver +figurerebbero figurare ver +figurerà figurare ver +figuri figuro nom +figuriamo figurare ver +figuriamoci figurare ver +figurina figurina nom +figurine figurina nom +figurini figurino nom +figurinista figurinista nom +figurinisti figurinista nom +figurino figurare ver +figuro figuro nom +figurò figurare ver +fii fio nom +fila fila|filo nom +filabile filabile adj +filacce filaccia nom +filaccia filaccia nom +filaci filare ver +filai filare ver +filali filare ver +filamenti filamento nom +filamento filamento nom +filamentosa filamentoso adj +filamentose filamentoso adj +filamentosi filamentoso adj +filamentoso filamentoso adj +filanca filanca nom +filanda filanda nom +filande filanda nom +filando filare ver +filano filare ver +filante filante adj +filanti filante adj +filantropa filantropo nom +filantropi filantropo nom +filantropia filantropia nom +filantropica filantropico adj +filantropiche filantropico adj +filantropici filantropico adj +filantropico filantropico adj +filantropie filantropia nom +filantropismo filantropismo nom +filantropo filantropo nom +filar filare ver +filare filare ver +filaria filaria nom +filariasi filariasi nom +filarie filaria nom +filarmela filare ver +filarmonica filarmonico adj +filarmoniche filarmonico adj +filarmonici filarmonico nom +filarmonico filarmonico adj +filarono filare ver +filarsela filare ver +filarsi filare ver +filasse filare ver +filastrocca filastrocca nom +filastrocche filastrocca nom +filata filato adj +filate filato adj +filateli filare ver +filatelia filatelia nom +filatelica filatelico adj +filateliche filatelico adj +filatelici filatelico adj +filatelico filatelico adj +filatelie filatelia nom +filatelo filare ver +filati filato nom +filato filato nom +filatoi filatoio nom +filatoio filatoio nom +filatore filatore nom +filatori filatore adj +filatrice filatore nom +filatrici filatore nom +filatteri filatterio nom +filatterio filatterio nom +filatura filatura nom +filature filatura nom +filava filare ver +filavano filare ver +file fila nom +filellenismo filellenismo nom +filerebbe filare ver +filerebbero filare ver +fileremo filare ver +filerà filare ver +filetta filettare ver +filettano filettare ver +filettare filettare ver +filettata filettare ver +filettate filettare ver +filettati filettare ver +filettato filettare ver +filettatura filettatura nom +filettature filettatura nom +filetti filetto nom +filettino filettare ver +filetto filetto nom +fili filo nom +filiale filiale nom +filiali filiale adj +filiamo filare ver +filiazione filiazione nom +filiazioni filiazione nom +filibustiere filibustiere nom +filibustieri filibustiere nom +filicorno filicorno nom +filiera filiera nom +filiere filiera nom +filiforme filiforme adj +filiformi filiforme adj +filigrana filigrana nom +filigranata filigranato adj +filigranate filigranato adj +filigranati filigranato adj +filigranato filigranato adj +filigrane filigrana nom +filino filare ver +filippica filippica nom +filippiche filippica nom +filippina filippino adj +filippine filippino adj +filippini filippino adj +filippino filippino adj +filistea filisteo adj +filistee filisteo adj +filistei filisteo nom +filisteo filisteo adj +fillade fillade nom +filladi fillade nom +fillossera fillossera nom +fillossere fillossera nom +fillotassi fillotassi nom +film film nom +filma filmare ver +filmabile filmabile adj +filmai filmare ver +filmando filmare ver +filmandola filmare ver +filmandoli filmare ver +filmandone filmare ver +filmano filmare ver +filmante filmare ver +filmanti filmare ver +filmar filmare ver +filmare filmare ver +filmarla filmare ver +filmarli filmare ver +filmarlo filmare ver +filmarne filmare ver +filmarono filmare ver +filmarsi filmare ver +filmata filmare ver +filmate filmare ver +filmati filmato nom +filmato filmato nom +filmava filmare ver +filmavano filmare ver +filmeranno filmare ver +filmeremo filmare ver +filmerà filmare ver +filmi filmare ver +filmica filmico adj +filmiche filmico adj +filmici filmico adj +filmico filmico adj +filmine filmina nom +filmino filmare ver +filmo filmare ver +filmografia filmografia nom +filmografie filmografia nom +filmologia filmologia nom +filmologie filmologia nom +films film nom +filmò filmare ver +filo filo nom +filobus filobus nom +filodendro filodendro nom +filodiffusione filodiffusione nom +filodiffusore filodiffusore nom +filodiffusori filodiffusore nom +filodrammatica filodrammatico adj +filodrammatiche filodrammatico adj +filodrammatici filodrammatico adj +filodrammatico filodrammatico adj +filogenesi filogenesi nom +filologa filologo nom +filologi filologo nom +filologia filologia nom +filologica filologico adj +filologiche filologico adj +filologici filologico adj +filologico filologico adj +filologie filologia nom +filologo filologo nom +filoncini filoncino nom +filoncino filoncino nom +filone filone nom +filoni filone nom +filosofa filosofo nom +filosofai filosofare ver +filosofale filosofale adj +filosofali filosofale adj +filosofando filosofare ver +filosofano filosofare ver +filosofar filosofare ver +filosofare filosofare ver +filosofarono filosofare ver +filosofato filosofare ver +filosofe filosofo nom +filosofeggia filosofeggiare ver +filosofeggiando filosofeggiare ver +filosofeggiante filosofeggiare ver +filosofeggiare filosofeggiare ver +filosofeggino filosofeggiare ver +filosofemi filosofema nom +filosofi filosofo nom +filosofia filosofia nom +filosofica filosofico adj +filosoficamente filosoficamente adv +filosofiche filosofico adj +filosofici filosofico adj +filosofico filosofico adj +filosofie filosofia nom +filosofismo filosofismo nom +filosofo filosofo nom +filosofò filosofare ver +filossera filossera nom +filovia filovia nom +filoviari filoviario adj +filoviaria filoviario adj +filoviarie filoviario adj +filoviario filoviario adj +filovie filovia nom +filtra filtrare ver +filtrabile filtrabile adj +filtrabili filtrabile adj +filtraci filtrare ver +filtraggi filtraggio nom +filtraggio filtraggio nom +filtrando filtrare ver +filtrandola filtrare ver +filtrandole filtrare ver +filtrandoli filtrare ver +filtrandolo filtrare ver +filtrandone filtrare ver +filtrano filtrare ver +filtrante filtrare ver +filtranti filtrare ver +filtrar filtrare ver +filtrare filtrare ver +filtrarla filtrare ver +filtrarle filtrare ver +filtrarlo filtrare ver +filtrarono filtrare ver +filtrasse filtrare ver +filtrassero filtrare ver +filtrata filtrare ver +filtrate filtrare ver +filtrati filtrare ver +filtrato filtrare ver +filtrava filtrare ver +filtravano filtrare ver +filtrazione filtrazione nom +filtrazioni filtrazione nom +filtri filtro nom +filtriamo filtrare ver +filtrino filtrare ver +filtro filtro nom +filtropressa filtropressa nom +filtropresse filtropressa nom +filtrò filtrare ver +filugello filugello nom +filza filza nom +filze filza nom +filò filare ver +fimi fimo nom +fimo fimo nom +fin fin pre +finale finale adj +finali finale adj +finalismi finalismo nom +finalismo finalismo nom +finalissima finalissima nom +finalissime finalissima nom +finalista finalista adj +finaliste finalista adj +finalisti finalista nom +finalità finalità nom +finalizza finalizzare ver +finalizzando finalizzare ver +finalizzandoli finalizzare ver +finalizzandolo finalizzare ver +finalizzano finalizzare ver +finalizzare finalizzare ver +finalizzarla finalizzare ver +finalizzarono finalizzare ver +finalizzata finalizzare ver +finalizzate finalizzare ver +finalizzati finalizzare ver +finalizzato finalizzare ver +finalizzava finalizzare ver +finalizzazione finalizzazione nom +finalizziamo finalizzare ver +finalizzò finalizzare ver +finalmente finalmente adv_sup +finanche finanche adv_sup +finanché finanché adv +financo financo adv +finanza finanza nom +finanze finanza nom +finanzi finanziare ver +finanzia finanziare ver +finanziabile finanziabile adj +finanziabili finanziabile adj +finanziale finanziare ver +finanziamenti finanziamento nom +finanziamento finanziamento nom +finanziando finanziare ver +finanziandogli finanziare ver +finanziandola finanziare ver +finanziandole finanziare ver +finanziandoli finanziare ver +finanziandolo finanziare ver +finanziandone finanziare ver +finanziandosi finanziare ver +finanziano finanziare ver +finanziarci finanziare ver +finanziare finanziare ver +finanziargli finanziare ver +finanziari finanziario adj +finanziaria finanziario adj +finanziariamente finanziariamente adv +finanziarie finanziario adj +finanziario finanziario adj +finanziarla finanziare ver +finanziarle finanziare ver +finanziarli finanziare ver +finanziarlo finanziare ver +finanziarne finanziare ver +finanziarono finanziare ver +finanziarsi finanziare ver +finanziasse finanziare ver +finanziassero finanziare ver +finanziata finanziare ver +finanziate finanziare ver +finanziati finanziare ver +finanziato finanziare ver +finanziatore finanziatore nom +finanziatori finanziatore nom +finanziatrice finanziatore nom +finanziatrici finanziatore nom +finanziava finanziare ver +finanziavano finanziare ver +finanziera finanziera nom +finanzieranno finanziare ver +finanziere finanziera|finanziere nom +finanzieri finanziere nom +finanzierà finanziare ver +finanzino finanziare ver +finanzio finanziare ver +finanziò finanziare ver +finca finca nom +finche finca nom_sup +finchè finchè con +finché finché con +fine fine nom_sup +finendo finire ver +finendoci finire ver +finendogli finire ver +finendola finire ver +finendole finire ver +finendoli finire ver +finendolo finire ver +finendone finire ver +finendosi finire ver +finente finire ver +finenti finire ver +finestra finestra nom +finestre finestra nom +finestrella finestrella nom +finestrelle finestrella nom +finestrini finestrino nom +finestrino finestrino nom +finezza finezza nom +finezze finezza nom +finga fingere ver +fingano fingere ver +finge fingere ver +fingendo fingere ver +fingendomi fingere ver +fingendone fingere ver +fingendosi fingere ver +fingendoti fingere ver +fingente fingere ver +finger fingere ver +fingeranno fingere ver +fingere fingere ver +fingerebbe fingere ver +fingermi fingere ver +fingersi fingere ver +fingerà fingere ver +fingerò fingere ver +fingesse fingere ver +fingessero fingere ver +fingete fingere ver +fingeva fingere ver +fingevano fingere ver +fingevo fingere ver +fingi fingere ver +fingiamo fingere ver +fingo fingere ver +fingono fingere ver +fini fine nom_sup +finiamo finire ver +finiamola finire ver +finiate finire ver +finii finire ver +finimenti finimento nom +finimento finimento nom +finimmo finire ver +finimondo finimondo nom +finir finire ver +finirai finire ver +finiranno finire ver +finirci finire ver +finire finire ver +finirebbe finire ver +finirebbero finire ver +finirei finire ver +finiremmo finire ver +finiremo finire ver +finireste finire ver +finiresti finire ver +finirete finire ver +finirgli finire ver +finirla finire ver +finirle finire ver +finirli finire ver +finirlo finire ver +finirne finire ver +finirono finire ver +finirsi finire ver +finirvi finire ver +finirà finire ver +finirò finire ver +finisca finire ver +finiscano finire ver +finisce finire ver +finisci finire ver +finiscila finire ver +finiscilo finire ver +finiscimi finire ver +finisco finire ver +finiscono finire ver +finish finish nom +finissaggi finissaggio nom +finissaggio finissaggio nom +finisse finire ver +finissero finire ver +finissi finire ver +finissimo finire ver +finiste finire ver +finita finire ver +finite finito adj +finitela finire ver +finitevi finire ver +finitezza finitezza nom +finiti finire ver +finitima finitimo adj +finitime finitimo adj +finitimi finitimo adj +finitimo finitimo adj +finito finire ver +finitrici finitore|finitrice nom +finitura finitura nom +finiture finitura nom +finiva finire ver +finivamo finire ver +finivano finire ver +finivi finire ver +finivo finire ver +finlandese finlandese adj +finlandesi finlandese adj +finn finn nom +finnica finnico adj +finniche finnico adj +finnici finnico adj +finnico finnico adj +fino fino con +finocchi finocchio nom +finocchio finocchio nom +finocchiona finocchiona nom +finora finora adv_sup +finse fingere ver +finsero fingere ver +finsi fingere ver +finta fingere ver +fintano fintare ver +fintanto fintanto con +fintantoché fintantoché con +fintare fintare ver +fintasi fintare ver +fintati fintare ver +fintato fintare ver +finte finto adj +finti finto adj +finto fingere ver +finzione finzione nom +finzioni finzione nom +finì finire ver +fio fio nom +fioca fioco adj +fiocca fiocca nom +fioccando fioccare ver +fioccano fioccare ver +fioccanti fioccare ver +fioccare fioccare ver +fioccarono fioccare ver +fioccate fioccare ver +fioccati fioccare ver +fioccato fioccare ver +fioccavano fioccare ver +fiocche fiocca nom +fioccheranno fioccare ver +fiocchi fiocco nom +fiocchino fioccare ver +fiocco fiocco nom +fioche fioco adj +fiocina fiocina nom +fiocinare fiocinare ver +fiocinatore fiocinatore nom +fiocine fiocina|fiocine nom +fiocini fiocine nom +fiociniere fiociniere nom +fioco fioco adj +fionda fionda nom +fionde fionda nom +fiorai fioraio nom +fioraio fioraio nom +fiorami fiorame nom +fiorata fiorato adj +fiorate fiorato adj +fiorati fiorato adj +fiorato fiorato adj +fiordalisi fiordaliso nom +fiordaliso fiordaliso nom +fiordi fiordo nom +fiordo fiordo nom +fiore fiore nom +fiorendo fiorire ver +fiorente fiorente adj +fiorenti fiorente adj +fiorentina fiorentino adj +fiorentine fiorentino adj +fiorentini fiorentino adj +fiorentinismi fiorentinismo nom +fiorentinismo fiorentinismo nom +fiorentino fiorentino adj +fioretta fioretta nom +fioretti fioretto nom +fiorettino fiorettare ver +fiorettista fiorettista nom +fiorettiste fiorettista nom +fiorettisti fiorettista nom +fioretto fioretto nom +fiori fiore nom +fioriera fioriera nom +fioriere fioriera nom +fiorifera fiorifero adj +fiorifere fiorifero adj +fioriferi fiorifero adj +fiorifero fiorifero adj +fiorii fiorire ver +fiorile fiorile nom +fiorili fiorile nom +fiorini fiorino nom +fiorino fiorino nom +fiorir fiorire ver +fiorirai fiorire ver +fioriranno fiorire ver +fiorire fiorire ver +fiorirebbe fiorire ver +fiorirono fiorire ver +fiorirà fiorire ver +fiorisca fiorire ver +fioriscano fiorire ver +fiorisce fiorire ver +fiorisci fiorire ver +fiorisco fiorire ver +fioriscono fiorire ver +fiorisse fiorire ver +fiorissero fiorire ver +fiorista fiorista nom +fioristi fiorista nom +fiorita fiorito adj +fiorite fiorito adj +fioriti fiorito adj +fiorito fiorire ver +fioritura fioritura nom +fioriture fioritura nom +fioriva fiorire ver +fiorivano fiorire ver +fiorì fiorire ver +fiosso fiosso nom +fiotti fiotto nom +fiotto fiotto nom +firma firma nom +firmai firmare ver +firmamenti firmamento nom +firmamento firmamento nom +firmami firmare ver +firmammo firmare ver +firmando firmare ver +firmandola firmare ver +firmandole firmare ver +firmandoli firmare ver +firmandolo firmare ver +firmandomi firmare ver +firmandone firmare ver +firmandosi firmare ver +firmandoti firmare ver +firmane firmare ver +firmano firmare ver +firmanti firmare ver +firmar firmare ver +firmarci firmare ver +firmare firmare ver +firmargli firmare ver +firmarla firmare ver +firmarle firmare ver +firmarli firmare ver +firmarlo firmare ver +firmarmi firmare ver +firmarne firmare ver +firmarono firmare ver +firmarsi firmare ver +firmarti firmare ver +firmasse firmare ver +firmassero firmare ver +firmassi firmare ver +firmata firmare ver +firmatari firmatario nom +firmataria firmatario adj +firmatarie firmatario adj +firmatario firmatario adj +firmate firmare ver +firmatela firmare ver +firmatevi firmare ver +firmati firmare ver +firmato firmare ver +firmava firmare ver +firmavano firmare ver +firmavi firmare ver +firmavo firmare ver +firme firma nom +firmerai firmare ver +firmeranno firmare ver +firmerebbe firmare ver +firmerei firmare ver +firmerà firmare ver +firmerò firmare ver +firmi firmare ver +firmiamo firmare ver +firmiamoci firmare ver +firmino firmare ver +firmo firmare ver +firmò firmare ver +fisa fiso adj +fisarmonica fisarmonica nom +fisarmoniche fisarmonica nom +fisarmonicista fisarmonicista nom +fisarmonicisti fisarmonicista nom +fiscale fiscale adj +fiscali fiscale adj +fiscalismo fiscalismo nom +fiscalista fiscalista nom +fiscalisti fiscalista nom +fiscalità fiscalità nom +fiscalizzazione fiscalizzazione nom +fiscalmente fiscalmente adv +fiscella fiscella nom +fiscelle fiscella nom +fischi fischio nom +fischia fischiare ver +fischiando fischiare ver +fischiandolo fischiare ver +fischiano fischiare ver +fischiante fischiare ver +fischianti fischiare ver +fischiar fischiare ver +fischiare fischiare ver +fischiargli fischiare ver +fischiarlo fischiare ver +fischiarono fischiare ver +fischiasse fischiare ver +fischiassero fischiare ver +fischiata fischiare ver +fischiate fischiare ver +fischiati fischiare ver +fischiato fischiare ver +fischiava fischiare ver +fischiavano fischiare ver +fischierà fischiare ver +fischietta fischiettare ver +fischiettando fischiettare ver +fischiettano fischiettare ver +fischiettante fischiettare ver +fischiettar fischiettare ver +fischiettare fischiettare ver +fischiettata fischiettare ver +fischiettate fischiettare ver +fischiettato fischiettare ver +fischiettava fischiettare ver +fischietterà fischiettare ver +fischietti fischietto nom +fischiettio fischiettio nom +fischietto fischietto nom +fischio fischio nom +fischione fischione nom +fischioni fischione nom +fischiò fischiare ver +fisciù fisciù nom +fisco fisco nom +fise fiso adj +fisi fiso adj +fisica fisico adj +fisicamente fisicamente adv +fisiche fisico adj +fisici fisico adj +fisico fisico adj +fisima fisima nom +fisime fisima nom +fisiocrati fisiocrate nom +fisiocrazia fisiocrazia nom +fisiologa fisiologo nom +fisiologi fisiologo nom +fisiologia fisiologia nom +fisiologica fisiologico adj +fisiologiche fisiologico adj +fisiologici fisiologico adj +fisiologico fisiologico adj +fisiologie fisiologia nom +fisiologo fisiologo nom +fisionomia fisionomia nom +fisionomica fisionomico adj +fisionomiche fisionomico adj +fisionomici fisionomico adj +fisionomico fisionomico adj +fisionomie fisionomia nom +fisiopatologia fisiopatologia nom +fisioterapia fisioterapia nom +fisioterapica fisioterapico adj +fisioterapiche fisioterapico adj +fisioterapici fisioterapico adj +fisioterapico fisioterapico adj +fisioterapie fisioterapia nom +fisioterapista fisioterapista nom +fiso fiso adj +fissa fisso adj +fissabile fissabile adj +fissaggi fissaggio nom +fissaggio fissaggio nom +fissai fissare ver +fissammo fissare ver +fissando fissare ver +fissandola fissare ver +fissandole fissare ver +fissandoli fissare ver +fissandolo fissare ver +fissandomi fissare ver +fissandone fissare ver +fissandosi fissare ver +fissano fissare ver +fissante fissare ver +fissanti fissare ver +fissar fissare ver +fissarci fissare ver +fissare fissare ver +fissargli fissare ver +fissarla fissare ver +fissarle fissare ver +fissarli fissare ver +fissarlo fissare ver +fissarmi fissare ver +fissarne fissare ver +fissarono fissare ver +fissarsi fissare ver +fissarti fissare ver +fissarvi fissare ver +fissasse fissare ver +fissassero fissare ver +fissassimo fissare ver +fissata fissare ver +fissate fissare ver +fissati fissare ver +fissative fissativo adj +fissativi fissativo adj +fissativo fissativo adj +fissato fissare ver +fissatore fissatore nom +fissatori fissatore nom +fissatrice fissatore nom +fissava fissare ver +fissavano fissare ver +fissavo fissare ver +fissazione fissazione nom +fissazioni fissazione nom +fisse fisso adj +fisserai fissare ver +fisseranno fissare ver +fisserebbe fissare ver +fisserei fissare ver +fissero figgere ver +fisserà fissare ver +fissi fisso adj +fissiamo fissare ver +fissiamoci fissare ver +fissile fissile adj +fissili fissile adj +fissino fissare ver +fissione fissione nom +fissioni fissione nom +fissismo fissismo nom +fissità fissità nom +fisso fisso adj +fissò fissare ver +fistola fistola nom +fistole fistola nom +fistolose fistoloso adj +fistolosi fistoloso adj +fistoloso fistoloso adj +fitina fitina nom +fitochimica fitochimica nom +fitochimiche fitochimica nom +fitofarmaci fitofarmaco nom +fitofarmaco fitofarmaco nom +fitogeografia fitogeografia nom +fitopatologia fitopatologia nom +fitopatologie fitopatologia nom +fitosanitari fitosanitario adj +fitosanitaria fitosanitario adj +fitosanitarie fitosanitario adj +fitosanitario fitosanitario adj +fitoterapia fitoterapia nom +fitta fitto adj +fittaioli fittaiolo nom +fittavoli fittavolo nom +fittavolo fittavolo nom +fitte fitto adj +fittezza fittezza nom +fitti fitto adj +fittile fittile adj +fittili fittile adj +fittizi fittizio adj +fittizia fittizio adj +fittizie fittizio adj +fittizio fittizio adj +fitto fitto adj +fittone fittone nom +fittoni fittone nom +fiumana fiumana nom +fiumane fiumana nom +fiumara fiumara nom +fiumare fiumara nom +fiume fiume nom +fiumi fiume nom +fiuta fiutare ver +fiutando fiutare ver +fiutano fiutare ver +fiutare fiutare ver +fiutarono fiutare ver +fiutata fiutare ver +fiutato fiutare ver +fiutava fiutare ver +fiuterà fiutare ver +fiuti fiutare ver +fiuto fiuto nom +fiutò fiutare ver +fixing fixing nom +flabelli flabello nom +flabello flabello nom +flacone flacone nom +flaconi flacone nom +flagella flagellare ver +flagellando flagellare ver +flagellandone flagellare ver +flagellandosi flagellare ver +flagellano flagellare ver +flagellante flagellare ver +flagellanti flagellare ver +flagellare flagellare ver +flagellarlo flagellare ver +flagellarono flagellare ver +flagellarsi flagellare ver +flagellata flagellare ver +flagellate flagellare ver +flagellati flagellare ver +flagellato flagellare ver +flagellatore flagellatore nom +flagellatori flagellatore nom +flagellava flagellare ver +flagellavano flagellare ver +flagellazione flagellazione nom +flagellazioni flagellazione nom +flagelli flagello nom +flagello flagello nom +flagellò flagellare ver +flagrante flagrante adj +flagranti flagrante adj +flagranza flagranza nom +flambé flambé adj +flamenchi flamenco nom +flamenco flamenco nom +flamine flamine nom +flamini flamine nom +flan flan nom +flanella flanella nom +flanelle flanella nom +flange flangia nom +flangia flangia nom +flani flano nom +flano flano nom +flash flash nom +flashback flashback nom +flati flato nom +flato flato nom +flatting flatting nom +flatulento flatulento adj +flatulenza flatulenza nom +flatulenze flatulenza nom +flautata flautato adj +flautate flautato adj +flautati flautato adj +flautato flautato adj +flauti flauto nom +flautista flautista nom +flautiste flautista nom +flautisti flautista nom +flauto flauto nom +flava flavo adj +flave flavo adj +flavedo flavedo nom +flavi flavo adj +flavivirus flavivirus nom +flavo flavo adj +flebile flebile adj +flebili flebile adj +flebite flebite nom +flebiti flebite nom +flebo flebo nom +fleboclisi fleboclisi nom +flebotomi flebotomo nom +flebotomia flebotomia nom +flebotomie flebotomia nom +flebotomo flebotomo nom +flemma flemma nom +flemmatica flemmatico adj +flemmatici flemmatico adj +flemmatico flemmatico adj +flemmi flemma nom +flemmone flemmone nom +flemmoni flemmone nom +flessibile flessibile adj +flessibili flessibile adj +flessibilità flessibilità nom +flessile flessile adj +flessione flessione nom +flessioni flessione nom +flessiva flessivo adj +flessive flessivo adj +flessivi flessivo adj +flessivo flessivo adj +flessore flessore adj +flessori flessore adj +flessuosa flessuoso adj +flessuose flessuoso adj +flessuosi flessuoso adj +flessuoso flessuoso adj +flessura flessura nom +flessure flessura nom +fletta flettere ver +flette flettere ver +flettendo flettere ver +flettendone flettere ver +flettendosi flettere ver +flettente flettere ver +flettenti flettere ver +flettere flettere ver +flettersi flettere ver +fletterà flettere ver +fletteva flettere ver +flettevano flettere ver +fletto flettere ver +flettono flettere ver +flint flint nom +flipper flipper nom +flirt flirt nom +flirta flirtare ver +flirtando flirtare ver +flirtano flirtare ver +flirtare flirtare ver +flirtato flirtare ver +flirtava flirtare ver +flirti flirtare ver +flirtò flirtare ver +flocculazione flocculazione nom +flogistica flogistico adj +flogistiche flogistico adj +flogistici flogistico adj +flogistico flogistico adj +flogisto flogisto nom +flogosi flogosi nom +flora flora nom +flore flora nom +floreale floreale adj +floreali floreale adj +floricola floricolo adj +floricole floricolo adj +floricoli floricolo adj +floricolo floricolo adj +floricoltore floricoltore nom +floricoltori floricoltore nom +floricoltura floricoltura nom +florida florido adj +floride florido adj +floridezza floridezza nom +floridi florido adj +florido florido adj +florilegi florilegio nom +florilegio florilegio nom +flosce floscio adj +flosci floscio adj +floscia floscio adj +floscio floscio adj +flotta flotta nom +flottaggio flottaggio nom +flottando flottare ver +flottano flottare ver +flottante flottante nom +flottanti flottare ver +flottare flottare ver +flottato flottare ver +flottazione flottazione nom +flotte flotta nom +flottiglia flottiglia nom +flottiglie flottiglia nom +flotto flottare ver +flou flou adj +fluendo fluire ver +fluente fluente adj +fluenti fluente adj +fluida fluido adj +fluide fluido adj +fluidi fluido nom +fluidica fluidica nom +fluidifica fluidificare ver +fluidificando fluidificare ver +fluidificante fluidificare ver +fluidificanti fluidificare ver +fluidificare fluidificare ver +fluidificarsi fluidificare ver +fluidificata fluidificare ver +fluidificate fluidificare ver +fluidificati fluidificare ver +fluidificato fluidificare ver +fluidificazione fluidificazione nom +fluidità fluidità nom +fluido fluido nom +fluidodinamica fluidodinamica nom +fluidodinamiche fluidodinamica nom +fluir fluire ver +fluiranno fluire ver +fluire fluire ver +fluirebbe fluire ver +fluirono fluire ver +fluirà fluire ver +fluisca fluire ver +fluisce fluire ver +fluiscono fluire ver +fluisse fluire ver +fluissero fluire ver +fluita fluire ver +fluitazione fluitazione nom +fluite fluire ver +fluiti fluire ver +fluito fluire ver +fluiva fluire ver +fluivano fluire ver +fluorescente fluorescente adj +fluorescenti fluorescente adj +fluorescenza fluorescenza nom +fluorescenze fluorescenza nom +fluori fluoro nom +fluoridrico fluoridrico adj +fluorite fluorite nom +fluoriti fluorite nom +fluorizzazione fluorizzazione nom +fluoro fluoro nom +fluoruri fluoruro nom +fluoruro fluoruro nom +flussi flusso nom +flussione flussione nom +flussioni flussione nom +flusso flusso nom +flussometri flussometro nom +flussometro flussometro nom +flutti flutto nom +flutto flutto nom +fluttua fluttuare ver +fluttuando fluttuare ver +fluttuano fluttuare ver +fluttuante fluttuante adj +fluttuanti fluttuante adj +fluttuare fluttuare ver +fluttuarono fluttuare ver +fluttuasse fluttuare ver +fluttuassero fluttuare ver +fluttuato fluttuare ver +fluttuava fluttuare ver +fluttuavano fluttuare ver +fluttuazione fluttuazione nom +fluttuazioni fluttuazione nom +fluttueranno fluttuare ver +fluttuerà fluttuare ver +fluttui fluttuare ver +fluttuò fluttuare ver +fluviale fluviale adj +fluviali fluviale adj +fluì fluire ver +flûte flûte nom +fobia fobia nom +fobica fobico adj +fobiche fobico adj +fobici fobico adj +fobico fobico adj +fobie fobia nom +foca foca nom +focacce focaccia nom +focaccia focaccia nom +focaia focaia adj +focale focale adj +focali focale adj +focalizza focalizzare ver +focalizzammo focalizzare ver +focalizzando focalizzare ver +focalizzandoci focalizzare ver +focalizzandola focalizzare ver +focalizzandoli focalizzare ver +focalizzandolo focalizzare ver +focalizzandone focalizzare ver +focalizzandosi focalizzare ver +focalizzano focalizzare ver +focalizzante focalizzare ver +focalizzanti focalizzare ver +focalizzarci focalizzare ver +focalizzare focalizzare ver +focalizzarla focalizzare ver +focalizzarli focalizzare ver +focalizzarlo focalizzare ver +focalizzarmi focalizzare ver +focalizzarne focalizzare ver +focalizzarono focalizzare ver +focalizzarsi focalizzare ver +focalizzasse focalizzare ver +focalizzassero focalizzare ver +focalizzata focalizzare ver +focalizzate focalizzare ver +focalizzati focalizzare ver +focalizzato focalizzare ver +focalizzava focalizzare ver +focalizzavano focalizzare ver +focalizzazione focalizzazione nom +focalizzerebbe focalizzare ver +focalizzerei focalizzare ver +focalizzeremo focalizzare ver +focalizzerà focalizzare ver +focalizzi focalizzare ver +focalizziamo focalizzare ver +focalizziamoci focalizzare ver +focalizzino focalizzare ver +focalizzo focalizzare ver +focalizzò focalizzare ver +focatici focatico adj +focatico focatico adj +foce foce nom +focena focena nom +focene focena nom +foche foca nom +fochi foco nom +fochista fochista nom +foci foce nom +foco foco nom +focolai focolaio nom +focolaio focolaio nom +focolare focolare nom +focolari focolare nom +focomelia focomelia nom +focomelici focomelico adj +focomelico focomelico nom +focone focone nom +foconi focone nom +focosa focoso adj +focose focoso adj +focosi focoso adj +focoso focoso adj +fodera fodera nom +foderando foderare ver +foderandola foderare ver +foderandoli foderare ver +foderano foderare ver +foderante foderare ver +foderare foderare ver +foderata foderare ver +foderate foderare ver +foderati foderare ver +foderato foderare ver +foderava foderare ver +foderavano foderare ver +fodere fodera nom +foderi fodero nom +foderino foderare ver +fodero fodero nom +foga foga nom +foggi foggiare ver +foggia foggia nom +foggiane foggiare ver +foggiano foggiare ver +foggiare foggiare ver +foggiata foggiare ver +foggiate foggiare ver +foggiati foggiare ver +foggiato foggiare ver +foghe foga nom +fogli foglio nom +foglia foglia nom +fogliacea fogliaceo adj +fogliacee fogliaceo adj +fogliacei fogliaceo adj +fogliaceo fogliaceo adj +fogliame fogliame nom +fogliami fogliame nom +fogliano fogliare ver +fogliante fogliare ver +foglianti fogliare ver +fogliare fogliare ver +fogliata fogliare ver +fogliate fogliare ver +fogliati fogliare ver +fogliato fogliare ver +foglie foglia nom +foglietti foglietto nom +foglietto foglietto nom +foglino fogliare ver +foglio foglio nom +fogna fogna nom +fognano fognare ver +fognante fognare ver +fognanti fognare ver +fognari fognario adj +fognaria fognario adj +fognarie fognario adj +fognario fognario adj +fognatura fognatura nom +fognature fognatura nom +fogne fogna nom +foia foia nom +foiba foiba nom +foibe foiba nom +foie foia nom +fola fola nom +folade folade nom +foladi folade nom +folaga folaga nom +folaghe folaga nom +folata folata nom +folate folata nom +folclore folclore nom +folclorista folclorista nom +folcloristi folclorista nom +folcloristica folcloristico adj +folcloristiche folcloristico adj +folcloristici folcloristico adj +folcloristico folcloristico adj +fole fola nom +folgora folgorare ver +folgorale folgorare ver +folgorando folgorare ver +folgorandola folgorare ver +folgorandolo folgorare ver +folgorandosi folgorare ver +folgorante folgorante adj +folgoranti folgorante adj +folgorare folgorare ver +folgorata folgorare ver +folgorate folgorare ver +folgorati folgorare ver +folgorato folgorare ver +folgorazione folgorazione nom +folgorazioni folgorazione nom +folgore folgore nom +folgori folgore nom +folk folk nom +folklore folklore nom +folklori folklore nom +folla folla nom +follando follare ver +follano follare ver +follare follare ver +follato follato adj +follatrice follatrice nom +follatura follatura nom +folle folle adj +folleggianti folleggiare ver +folleggiare folleggiare ver +folleggiava folleggiare ver +follemente follemente adv +folletti folletto nom +folletto folletto nom +folli folle adj +follia follia nom +follicolare follicolare adj +follicolari follicolare adj +follicoli follicolo nom +follicolina follicolina nom +follicolo follicolo nom +follie follia nom +follo follare ver +follone follone nom +folloni follone nom +folta folto adj +folte folto adj +folti folto adj +folto folto adj +fomenta fomentare ver +fomentando fomentare ver +fomentano fomentare ver +fomentare fomentare ver +fomentarle fomentare ver +fomentarlo fomentare ver +fomentarono fomentare ver +fomentassero fomentare ver +fomentata fomentare ver +fomentate fomentare ver +fomentati fomentare ver +fomentato fomentare ver +fomentatore fomentatore nom +fomentatori fomentatore nom +fomentatrice fomentatore nom +fomentava fomentare ver +fomentavano fomentare ver +fomentazione fomentazione nom +fomenterà fomentare ver +fomenti fomento nom +fomentino fomentare ver +fomento fomento nom +fomentò fomentare ver +fomite fomite nom +fomiti fomite nom +fon fon nom +fonatori fonatorio adj +fonatoria fonatorio adj +fonatorio fonatorio adj +fonazione fonazione nom +fonazioni fonazione nom +fonda fonda nom +fondachi fondaco nom +fondaci fondare ver +fondaco fondaco nom +fondai fondare ver +fondale fondale nom +fondali fondale nom +fondamenta fondamento nom +fondamentale fondamentale adj +fondamentali fondamentale adj +fondamentalismo fondamentalismo nom +fondamentaliste fondamentalista nom +fondamentalmente fondamentalmente adv +fondamenti fondamento nom +fondamento fondamento nom +fondammo fondare ver +fondando fondare ver +fondandola fondare ver +fondandoli fondare ver +fondandolo fondare ver +fondandone fondare ver +fondandosi fondare ver +fondandovi fondare ver +fondane fondare ver +fondano fondere ver +fondant fondant nom +fondante fondare ver +fondanti fondare ver +fondar fondare ver +fondarci fondare ver +fondare fondare ver +fondarla fondare ver +fondarlo fondare ver +fondarne fondare ver +fondarono fondare ver +fondarsi fondare ver +fondarvi fondare ver +fondasse fondare ver +fondassero fondare ver +fondata fondare ver +fondatamente fondatamente adv +fondate fondare ver +fondatezza fondatezza nom +fondati fondare ver +fondato fondare ver +fondatore fondatore nom +fondatori fondatore nom +fondatrice fondatore nom +fondatrici fondatore nom +fondava fondare ver +fondavano fondare ver +fondazione fondazione nom +fondazioni fondazione nom +fonde fondere ver +fondelli fondello nom +fondello fondello nom +fondendo fondere ver +fondendola fondere ver +fondendole fondere ver +fondendoli fondere ver +fondendolo fondere ver +fondendone fondere ver +fondendosi fondere ver +fondendovi fondere ver +fondente fondente adj +fondenti fondente adj +fonder fondere ver +fonderai fondare|fondere ver +fonderanno fondare|fondere ver +fonderci fondere ver +fondere fondere ver +fonderebbe fondare|fondere ver +fonderebbero fondare|fondere ver +fonderei fondare|fondere ver +fonderia fonderia nom +fonderie fonderia nom +fonderla fondere ver +fonderle fondere ver +fonderli fondere ver +fonderlo fondere ver +fondermi fondere ver +fonderne fondere ver +fondersi fondere ver +fondervi fondere ver +fonderà fondare|fondere ver +fonderò fondare|fondere ver +fondesse fondere ver +fondessero fondere ver +fondeva fondere ver +fondevano fondere ver +fondi fondo nom +fondiamo fondare|fondere ver +fondiari fondiario adj +fondiaria fondiario adj +fondiarie fondiario adj +fondiario fondiario adj +fondibile fondibile adj +fondiglio fondiglio nom +fondina fondina nom +fondine fondina nom +fondino fondare ver +fondista fondista nom +fondiste fondista nom +fondisti fondista nom +fonditore fonditore nom +fonditori fonditore nom +fonditrici fonditore nom +fondo fondo nom +fondono fondere ver +fondovalle fondovalle nom +fonduta fonduta nom +fondute fonduta nom +fondò fondare ver +fonema fonema nom +fonematica fonematica nom +fonematiche fonematica nom +fonemi fonema nom +fonendoscopi fonendoscopio nom +fonendoscopio fonendoscopio nom +fonetica fonetico adj +fonetiche fonetico adj +fonetici fonetico adj +fonetico fonetico adj +fonetista fonetista nom +fonetisti fonetista nom +foniatra foniatra nom +foniatri foniatra nom +fonica fonico adj +foniche fonico adj +fonici fonico adj +fonico fonico adj +fonoassorbente fonoassorbente adj +fonoassorbenti fonoassorbente adj +fonogenica fonogenico adj +fonografi fonografo nom +fonografica fonografico adj +fonografiche fonografico adj +fonografici fonografico adj +fonografico fonografico adj +fonografo fonografo nom +fonogramma fonogramma nom +fonogrammi fonogramma nom +fonologi fonologo nom +fonologia fonologia nom +fonologica fonologico adj +fonologiche fonologico adj +fonologici fonologico adj +fonologico fonologico adj +fonologie fonologia nom +fonologo fonologo nom +fonometri fonometro nom +fonometria fonometria nom +fonometro fonometro nom +fonorivelatore fonorivelatore nom +fonorivelatori fonorivelatore nom +fontana fontana nom +fontanazzi fontanazzo nom +fontanazzo fontanazzo nom +fontane fontana nom +fontanella fontanella nom +fontanelle fontanella nom +fontaniere fontaniere nom +fontanieri fontaniere nom +fontanile fontanile nom +fontanili fontanile nom +fonte fonte nom +fonti fonte nom +fontina fontina nom +fontine fontina nom +football football nom +footing footing nom +for for sw +fora forare ver +foracchiato foracchiare ver +foraggi foraggio nom +foraggia foraggiare ver +foraggiano foraggiare ver +foraggiare foraggiare ver +foraggiarsi foraggiare ver +foraggiata foraggiare ver +foraggiate foraggiare ver +foraggiati foraggiare ver +foraggiato foraggiare ver +foraggiava foraggiare ver +foraggiavano foraggiare ver +foraggiera foraggiero adj +foraggiere foraggiero adj +foraggio foraggio nom +foraggiò foraggiare ver +forale forare ver +forami forare ver +foraminiferi foraminifero nom +foraminifero foraminifero nom +forando forare ver +forandogli forare ver +forandola forare ver +forandole forare ver +forandoli forare ver +forandolo forare ver +forane forare ver +foranea foraneo adj +foranee foraneo adj +foranei foraneo adj +foraneo foraneo adj +forano forare ver +forante forare ver +forare forare ver +forargli forare ver +forarlo forare ver +forarono forare ver +forarsi forare ver +forata forare ver +forate forare ver +forati forare ver +forato forare ver +foratura foratura nom +forature foratura nom +foravano forare ver +forbice forbice nom +forbici forbice nom +forbiciate forbiciata nom +forbicina forbicina nom +forbicine forbicina nom +forbita forbito adj +forbite forbito adj +forbiti forbito adj +forbito forbire ver +forca forca nom +forcata forcata nom +forcate forcata nom +forcella forcella nom +forcelle forcella nom +forche forca nom +forchetta forchetta nom +forchettata forchettata nom +forchettate forchettata nom +forchette forchetta nom +forchettone forchettone nom +forchettoni forchettone nom +forcina forcina nom +forcine forcina nom +forcing forcing nom +forcipe forcipe nom +forcipi forcipe nom +forcola forcola nom +forcole forcola nom +forcone forcone nom +forconi forcone nom +forcuta forcuto adj +forcute forcuto adj +forcuto forcuto adj +fordismi fordismo nom +fordismo fordismo nom +forense forense adj +forensi forense adj +foresta foresta nom +forestale forestale adj +forestali forestale adj +foreste foresta nom +foresteria foresteria nom +foresterie foresteria nom +forestiera forestiero adj +forestiere forestiero nom +forestieri forestiero adj +forestierismi forestierismo nom +forestierismo forestierismo nom +forestiero forestiero adj +forfait forfait nom +forfecchia forfecchia nom +forfetari forfetario adj +forfetario forfetario adj +forfettari forfettario adj +forfettaria forfettario adj +forfettariamente forfettariamente adv +forfettario forfettario adj +forficula forficula nom +forficule forficula nom +forfora forfora nom +forgerà forgiare ver +forgi forgiare ver +forgia forgia nom +forgiabile forgiabile adj +forgiando forgiare ver +forgiandola forgiare ver +forgiandoli forgiare ver +forgiandolo forgiare ver +forgiandone forgiare ver +forgiandosi forgiare ver +forgiane forgiare ver +forgiano forgiare ver +forgiare forgiare ver +forgiargli forgiare ver +forgiarla forgiare ver +forgiarle forgiare ver +forgiarlo forgiare ver +forgiarne forgiare ver +forgiarono forgiare ver +forgiarsi forgiare ver +forgiasse forgiare ver +forgiata forgiare ver +forgiate forgiare ver +forgiati forgiare ver +forgiato forgiare ver +forgiatore forgiatore nom +forgiatori forgiatore nom +forgiatrice forgiatore nom +forgiatura forgiatura nom +forgiature forgiatura nom +forgiava forgiare ver +forgiavano forgiare ver +forgio forgiare ver +forgiò forgiare ver +fori foro nom +foriera foriero adj +foriere foriero adj +forieri foriero adj +foriero foriero adj +forino forare ver +forma forma nom +formabili formabile adj +formaci formare ver +formaggetta formaggetta nom +formaggette formaggetta nom +formaggi formaggio nom +formaggiai formaggiaio nom +formaggiera formaggiera nom +formaggini formaggino nom +formaggino formaggino nom +formaggio formaggio nom +formai formare ver +formala formare ver +formaldeide formaldeide nom +formale formale adj +formali formale adj +formalina formalina nom +formalismi formalismo nom +formalismo formalismo nom +formalista formalista nom +formaliste formalista nom +formalisti formalista nom +formalistica formalistico adj +formalistiche formalistico adj +formalistici formalistico adj +formalistico formalistico adj +formalità formalità nom +formalizza formalizzare|formalizzarsi ver +formalizzando formalizzare|formalizzarsi ver +formalizzandola formalizzare|formalizzarsi ver +formalizzano formalizzare|formalizzarsi ver +formalizzare formalizzare ver +formalizzarla formalizzare|formalizzarsi ver +formalizzarli formalizzare|formalizzarsi ver +formalizzarlo formalizzare|formalizzarsi ver +formalizzarne formalizzare|formalizzarsi ver +formalizzarono formalizzare|formalizzarsi ver +formalizzarsi formalizzare|formalizzarsi ver +formalizzasse formalizzare|formalizzarsi ver +formalizzata formalizzare|formalizzarsi ver +formalizzate formalizzare|formalizzarsi ver +formalizzati formalizzare|formalizzarsi ver +formalizzato formalizzare|formalizzarsi ver +formalizzava formalizzare|formalizzarsi ver +formalizzavano formalizzare|formalizzarsi ver +formalizzazione formalizzazione nom +formalizzazioni formalizzazione nom +formalizzeranno formalizzare|formalizzarsi ver +formalizzerebbe formalizzare|formalizzarsi ver +formalizzerei formalizzare|formalizzarsi ver +formalizzerà formalizzare|formalizzarsi ver +formalizzerò formalizzare|formalizzarsi ver +formalizzi formalizzare|formalizzarsi ver +formalizziamo formalizzare|formalizzarsi ver +formalizziamoci formalizzare|formalizzarsi ver +formalizzino formalizzare|formalizzarsi ver +formalizzo formalizzare|formalizzarsi ver +formalizzò formalizzare|formalizzarsi ver +formalmente formalmente adv +formando formare ver +formandogli formare ver +formandoli formare ver +formandolo formare ver +formandone formare ver +formandosi formare ver +formandovi formare ver +formano formare ver +formante formare ver +formanti formare ver +formar formare ver +formarci formare ver +formare formare ver +formarla formare ver +formarle formare ver +formarli formare ver +formarlo formare ver +formarmi formare ver +formarne formare ver +formarono formare ver +formarsi formare ver +formarti formare ver +formarvi formare ver +formasi formare ver +formasse formare ver +formassero formare ver +formata formare ver +formate formare ver +formatesi formare ver +formati formare ver +formativa formativo adj +formative formativo adj +formativi formativo adj +formativo formativo adj +formato formare ver +formatore formatore nom +formatori formatore nom +formatrice formatore adj +formatrici formatore adj +formatura formatura nom +formava formare ver +formavano formare ver +formazione formazione nom +formazioni formazione nom +forme forma nom +formella formella nom +formelle formella nom +formeranno formare ver +formerebbe formare ver +formerebbero formare ver +formeremo formare ver +formerà formare ver +formerò formare ver +formi formare ver +formiamo formare ver +formica formico adj +formicai formicaio nom +formicaio formicaio nom +formicaleone formicaleone nom +formicaleoni formicaleone nom +formiche formica nom +formichiere formichiere nom +formichieri formichiere nom +formico formico adj +formicola formicolare ver +formicolano formicolare ver +formicolante formicolare ver +formicolanti formicolare ver +formicolava formicolare ver +formicoli formicolare ver +formicolii formicolio nom +formicolio formicolio nom +formidabile formidabile adj +formidabili formidabile adj +formino formare ver +formo formare ver +formosa formoso adj +formose formoso adj +formosi formoso adj +formosità formosità nom +formoso formoso adj +formula formula nom +formulaci formulare ver +formulando formulare ver +formulandone formulare ver +formulano formulare ver +formular formulare ver +formulare formulare ver +formulari formulario nom +formulario formulario nom +formularla formulare ver +formularle formulare ver +formularli formulare ver +formularlo formulare ver +formularne formulare ver +formularono formulare ver +formularsi formulare ver +formulasse formulare ver +formulata formulare ver +formulate formulare ver +formulategli formulare ver +formulati formulare ver +formulato formulare ver +formulava formulare ver +formulavano formulare ver +formulazione formulazione nom +formulazioni formulazione nom +formule formula nom +formulerei formulare ver +formulerà formulare ver +formulerò formulare ver +formuli formulare ver +formuliamo formulare ver +formulino formulare ver +formulo formulare ver +formulò formulare ver +formò formare ver +fornace fornace nom +fornaci fornace nom +fornaciai fornaciaio nom +fornaciaio fornaciaio nom +fornai fornaio nom +fornaia fornaio nom +fornaio fornaio nom +fornelli fornello nom +fornello fornello nom +fornendo fornire ver +fornendoci fornire ver +fornendogli fornire ver +fornendola fornire ver +fornendole fornire ver +fornendoli fornire ver +fornendolo fornire ver +fornendomi fornire ver +fornendone fornire ver +fornendosi fornire ver +fornenti fornire ver +forni forno nom +forniamo fornire ver +fornicaci fornicare ver +fornicare fornicare ver +fornicata fornicare ver +fornicato fornicare ver +fornicazione fornicazione nom +fornicazioni fornicazione nom +fornice fornice nom +fornici fornice nom +fornico fornicare ver +fornii fornire ver +fornir fornire ver +fornirai fornire ver +forniranno fornire ver +fornirci fornire ver +fornire fornire ver +fornirebbe fornire ver +fornirebbero fornire ver +forniremo fornire ver +forniresti fornire ver +fornirete fornire ver +fornirgli fornire ver +fornirgliela fornire ver +fornirgliele fornire ver +fornirglieli fornire ver +fornirglielo fornire ver +fornirla fornire ver +fornirle fornire ver +fornirli fornire ver +fornirlo fornire ver +fornirmela fornire ver +fornirmene fornire ver +fornirmi fornire ver +fornirne fornire ver +fornirono fornire ver +fornirsi fornire ver +fornirtela fornire ver +fornirti fornire ver +fornirvi fornire ver +fornirà fornire ver +fornirò fornire ver +fornisca fornire ver +forniscano fornire ver +fornisce fornire ver +fornisci fornire ver +forniscimi fornire ver +fornisco fornire ver +forniscono fornire ver +fornisse fornire ver +fornissero fornire ver +fornissi fornire ver +fornita fornire ver +fornite fornire ver +forniteci fornire ver +fornitegli fornire ver +fornitemi fornire ver +forniti fornire ver +fornito fornire ver +fornitore fornitore nom +fornitori fornitore nom +fornitrice fornitore adj +fornitrici fornitore adj +fornitura fornitura nom +forniture fornitura nom +forniva fornire ver +fornivano fornire ver +fornivi fornire ver +fornivo fornire ver +forno forno nom +fornì fornire ver +foro foro nom +forosetta forosetta nom +forra forra nom +forre forra nom +forse forse adv_sup +forsennata forsennato adj +forsennate forsennato adj +forsennati forsennato adj +forsennato forsennato adj +forte forte adj +fortemente fortemente adv +fortezza fortezza nom +fortezze fortezza nom +forti forte adj +fortifica fortificare ver +fortificaci fortificare ver +fortificami fortificare ver +fortificando fortificare ver +fortificandola fortificare ver +fortificandole fortificare ver +fortificandoli fortificare ver +fortificandolo fortificare ver +fortificandone fortificare ver +fortificandosi fortificare ver +fortificano fortificare ver +fortificante fortificare ver +fortificare fortificare ver +fortificarla fortificare ver +fortificarle fortificare ver +fortificarli fortificare ver +fortificarlo fortificare ver +fortificarne fortificare ver +fortificarono fortificare ver +fortificarsi fortificare ver +fortificassero fortificare ver +fortificata fortificare ver +fortificate fortificare ver +fortificati fortificare ver +fortificato fortificare ver +fortificava fortificare ver +fortificavano fortificare ver +fortificazione fortificazione nom +fortificazioni fortificazione nom +fortificherà fortificare ver +fortifichi fortificare ver +fortificò fortificare ver +fortilizi fortilizio nom +fortilizio fortilizio nom +fortini fortino nom +fortino fortino nom +fortissima fortissimo adj +fortitudine fortitudine nom +fortitudini fortitudine nom +fortore fortore nom +fortori fortore nom +fortuita fortuito adj +fortuite fortuito adj +fortuiti fortuito adj +fortuito fortuito adj +fortuna fortuna nom +fortunale fortunale nom +fortunali fortunale nom +fortunata fortunato adj +fortunatamente fortunatamente adv +fortunate fortunato adj +fortunati fortunato adj +fortunato fortunato adj +fortune fortuna nom +fortunosa fortunoso adj +fortunose fortunoso adj +fortunosi fortunoso adj +fortunoso fortunoso adj +forum forum nom +foruncoli foruncolo nom +foruncolo foruncolo nom +foruncolosi foruncolosi nom +forviante forviare ver +forvianti forviare ver +forviare forviare ver +forza forza nom +forzai forzare ver +forzando forzare ver +forzandola forzare ver +forzandole forzare ver +forzandoli forzare ver +forzandolo forzare ver +forzandone forzare ver +forzandosi forzare ver +forzano forzare ver +forzante forzare ver +forzanti forzare ver +forzar forzare ver +forzarci forzare ver +forzare forzare ver +forzargli forzare ver +forzarla forzare ver +forzarle forzare ver +forzarli forzare ver +forzarlo forzare ver +forzarmi forzare ver +forzarne forzare ver +forzarono forzare ver +forzarsi forzare ver +forzasse forzare ver +forzassero forzare ver +forzata forzato adj +forzatamente forzatamente adv +forzate forzato adj +forzati forzato adj +forzato forzare ver +forzatura forzatura nom +forzature forzatura nom +forzava forzare ver +forzavano forzare ver +forze forza nom +forzeranno forzare ver +forzerebbero forzare ver +forzerà forzare ver +forzerò forzare ver +forzi forzare ver +forziamo forzare ver +forziere forziere nom +forzieri forziere nom +forzino forzare ver +forzo forzare ver +forzosa forzoso adj +forzosamente forzosamente adv +forzose forzoso adj +forzosi forzoso adj +forzoso forzoso adj +forzuta forzuto adj +forzute forzuto adj +forzuti forzuto adj +forzuto forzuto adj +forzò forzare ver +forò forare ver +fosbury fosbury nom +fosca fosco adj +fosche fosco adj +foschi fosco adj +foschia foschia nom +foschie foschia nom +fosco fosco adj +fosfatasi fosfatasi nom +fosfati fosfato nom +fosfatica fosfatico adj +fosfatiche fosfatico adj +fosfatici fosfatico adj +fosfatico fosfatico adj +fosfato fosfato nom +fosfina fosfina nom +fosfine fosfina nom +fosfiti fosfito nom +fosfito fosfito nom +fosfolipidi fosfolipide nom +fosforescente fosforescente adj +fosforescenti fosforescente adj +fosforescenza fosforescenza nom +fosforescenze fosforescenza nom +fosfori fosforo nom +fosforica fosforico adj +fosforiche fosforico adj +fosforici fosforico adj +fosforico fosforico adj +fosforite fosforite nom +fosforiti fosforite nom +fosforo fosforo nom +fosforosa fosforoso adj +fosforoso fosforoso adj +fosfuri fosfuro nom +fosfuro fosfuro nom +fossa fossa|fosso nom +fossati fossato nom +fossato fossato nom +fosse essere ver +fossero essere ver_sup +fossetta fossetta nom +fossette fossetta nom +fossi essere ver +fossile fossile adj +fossili fossile adj +fossilizza fossilizzare ver +fossilizzando fossilizzare ver +fossilizzano fossilizzare ver +fossilizzante fossilizzare ver +fossilizzarci fossilizzare ver +fossilizzare fossilizzare ver +fossilizzarlo fossilizzare ver +fossilizzarono fossilizzare ver +fossilizzarsi fossilizzare ver +fossilizzata fossilizzare ver +fossilizzate fossilizzare ver +fossilizzati fossilizzare ver +fossilizzato fossilizzare ver +fossilizzazione fossilizzazione nom +fossilizzazioni fossilizzazione nom +fossilizzi fossilizzare ver +fossilizziamoci fossilizzare ver +fossilizzò fossilizzare ver +fossimo essere ver +fosso fosso nom_sup +foste essere ver +fosti essere ver +foto foto nom +fotocellula fotocellula nom +fotocellule fotocellula nom +fotochimica fotochimica nom +fotochimiche fotochimica nom +fotocolor fotocolor nom +fotocompositrice fotocompositrice nom +fotocompositrici fotocompositrice nom +fotocomposizione fotocomposizione nom +fotocopia fotocopia nom +fotocopiando fotocopiare ver +fotocopiano fotocopiare ver +fotocopiare fotocopiare ver +fotocopiarlo fotocopiare ver +fotocopiata fotocopiare ver +fotocopiate fotocopiare ver +fotocopiati fotocopiare ver +fotocopiato fotocopiare ver +fotocopiatrice fotocopiatrice nom +fotocopiatrici fotocopiatrice nom +fotocopie fotocopia nom +fotocopio fotocopiare ver +fotocopiò fotocopiare ver +fotocronaca fotocronaca nom +fotocronache fotocronaca nom +fotocronista fotocronista nom +fotoelettrica fotoelettrico adj +fotoelettriche fotoelettrico adj +fotoelettrici fotoelettrico adj +fotoelettricità fotoelettricità nom +fotoelettrico fotoelettrico adj +fotofinish fotofinish nom +fotofobia fotofobia nom +fotofobie fotofobia nom +fotogenia fotogenia nom +fotogenica fotogenico adj +fotogeniche fotogenico adj +fotogenici fotogenico adj +fotogenico fotogenico adj +fotogenie fotogenia nom +fotografa fotografo nom +fotografai fotografare ver +fotografala fotografare ver +fotografando fotografare ver +fotografandola fotografare ver +fotografandole fotografare ver +fotografandoli fotografare ver +fotografandolo fotografare ver +fotografano fotografare ver +fotografar fotografare ver +fotografarci fotografare ver +fotografare fotografare ver +fotografarla fotografare ver +fotografarle fotografare ver +fotografarli fotografare ver +fotografarlo fotografare ver +fotografarne fotografare ver +fotografarono fotografare ver +fotografarsi fotografare ver +fotografasse fotografare ver +fotografassi fotografare ver +fotografata fotografare ver +fotografate fotografare ver +fotografati fotografare ver +fotografato fotografare ver +fotografava fotografare ver +fotografavano fotografare ver +fotografe fotografo nom +fotograferanno fotografare ver +fotograferà fotografare ver +fotografi fotografo nom +fotografia fotografia nom +fotografica fotografico adj +fotograficamente fotograficamente adv +fotografiche fotografico adj +fotografici fotografico adj +fotografico fotografico adj +fotografie fotografia nom +fotografo fotografo nom +fotografò fotografare ver +fotogramma fotogramma nom +fotogrammetria fotogrammetria nom +fotogrammetrica fotogrammetrico adj +fotogrammetriche fotogrammetrico adj +fotogrammetrici fotogrammetrico adj +fotogrammetrico fotogrammetrico adj +fotogrammetrie fotogrammetria nom +fotogrammi fotogramma nom +fotoincisione fotoincisione nom +fotoincisioni fotoincisione nom +fotolisi fotolisi nom +fotolitografia fotolitografia nom +fotolitografie fotolitografia nom +fotoluminescenza fotoluminescenza nom +fotomeccanica fotomeccanico adj +fotomeccaniche fotomeccanica nom +fotomeccanici fotomeccanico adj +fotomeccanico fotomeccanico adj +fotometri fotometro nom +fotometria fotometria nom +fotometrica fotometrico adj +fotometriche fotometrico adj +fotometrici fotometrico adj +fotometrico fotometrico adj +fotometrie fotometria nom +fotometro fotometro nom +fotomodella fotomodella nom +fotomodelle fotomodella nom +fotomontaggi fotomontaggio nom +fotomontaggio fotomontaggio nom +fotone fotone nom +fotoni fotone nom +fotorecettore fotorecettore adj +fotorecettori fotorecettore adj +fotorecettrici fotorecettore adj +fotoreportage fotoreportage nom +fotoreporter fotoreporter nom +fotoromanzi fotoromanzo nom +fotoromanzo fotoromanzo nom +fotosensibile fotosensibile adj +fotosensibili fotosensibile adj +fotosfera fotosfera nom +fotosintesi fotosintesi nom +fotostatica fotostatico adj +fotostatiche fotostatico adj +fotostatico fotostatico adj +fototerapia fototerapia nom +fototipia fototipia nom +fototropismo fototropismo nom +fotovoltaica fotovoltaico adj +fotovoltaiche fotovoltaico adj +fotovoltaici fotovoltaico adj +fotovoltaico fotovoltaico adj +fotta fottere ver +fottano fottere ver +fotte fottere ver +fottendo fottere ver +fottendosene fottere ver +fotter fottere ver +fottercene fottere ver +fottere fottere ver +fotterlo fottere ver +fottermene fottere ver +fottersene fottere ver +fottervene fottere ver +fotterò fottere ver +fottetevi fottere ver +fotti fottere ver +fottiamo fottere ver +fottilo fottere ver +fottitene fottere ver +fottiti fottere ver +fotto fottere ver +fottono fottere ver +fottuta fottere ver +fottute fottere ver +fottuti fottere ver +fottuto fottere ver +foulard foulard nom +fourreau fourreau nom +foyer foyer nom +fra fra pre +frac frac nom +fracassa fracassare ver +fracassando fracassare ver +fracassandogli fracassare ver +fracassandole fracassare ver +fracassandolo fracassare ver +fracassandosi fracassare ver +fracassare fracassare ver +fracassargli fracassare ver +fracassarono fracassare ver +fracassarsi fracassare ver +fracassata fracassare ver +fracassate fracassare ver +fracassati fracassare ver +fracassato fracassare ver +fracassava fracassare ver +fracassi fracassare ver +fracasso fracassare ver +fracassò fracassare ver +fradice fradicio adj +fradici fradicio adj +fradicia fradicio adj +fradicio fradicio adj +fragile fragile adj +fragili fragile adj +fragilità fragilità nom +fragola fragola nom +fragole fragola nom +fragore fragore nom +fragori fragore nom +fragorosa fragoroso adj +fragorose fragoroso adj +fragorosi fragoroso adj +fragoroso fragoroso adj +fragrante fragrante adj +fragranti fragrante adj +fragranza fragranza nom +fragranze fragranza nom +fraintenda fraintendere ver +fraintendano fraintendere ver +fraintende fraintendere ver +fraintendendo fraintendere ver +fraintendendone fraintendere ver +fraintendere fraintendere ver +fraintenderla fraintendere ver +fraintenderle fraintendere ver +fraintenderlo fraintendere ver +fraintendermi fraintendere ver +fraintenderne fraintendere ver +fraintendersi fraintendere ver +fraintenderà fraintendere ver +fraintendesse fraintendere ver +fraintendessi fraintendere ver +fraintendete fraintendere ver +fraintendetemi fraintendere ver +fraintendi fraintendere ver +fraintendiamo fraintendere ver +fraintendiamoci fraintendere ver +fraintendiate fraintendere ver +fraintendo fraintendere ver +fraintendono fraintendere ver +fraintesa fraintendere ver +fraintese fraintendere ver +fraintesero fraintendere ver +fraintesi fraintendere ver +frainteso fraintendere ver +frale frale adj +frali frale adj +framezzo framezzo adv +frammassone frammassone nom +frammassoneria frammassoneria nom +frammassoni frammassone nom +frammenta frammentare ver +frammentando frammentare ver +frammentandola frammentare ver +frammentandolo frammentare ver +frammentandone frammentare ver +frammentandosi frammentare ver +frammentano frammentare ver +frammentante frammentare ver +frammentare frammentare ver +frammentari frammentario adj +frammentaria frammentario adj +frammentarie frammentario adj +frammentarietà frammentarietà nom +frammentario frammentario adj +frammentarla frammentare ver +frammentarli frammentare ver +frammentarlo frammentare ver +frammentarono frammentare ver +frammentarsi frammentare ver +frammentata frammentare ver +frammentate frammentare ver +frammentati frammentare ver +frammentato frammentare ver +frammentava frammentare ver +frammentazione frammentazione nom +frammentazioni frammentazione nom +frammenti frammento nom +frammentino frammentare ver +frammentismo frammentismo nom +frammento frammento nom +frammentò frammentare ver +frammettere frammettere ver +frammezzano frammezzare ver +frammezzate frammezzare ver +frammezzati frammezzare ver +frammezzato frammezzare ver +frammezzo frammezzare ver +frammischiandosi frammischiare ver +frammischiarsi frammischiare ver +frammischiate frammischiare ver +frammischiato frammischiare ver +frammista frammisto adj +frammiste frammisto adj +frammisti frammisto adj +frammisto frammisto adj +frana frana nom +franabile franabile adj +franamenti franamento nom +franamento franamento nom +franando franare ver +franano franare ver +franante franare ver +franare franare ver +franarono franare ver +franata franare ver +franate franare ver +franati franare ver +franato franare ver +franava franare ver +franavano franare ver +franca franco adj +francai francare ver +francamente francamente adv +francati francare ver +francato francare ver +francescana francescano adj +francescane francescano adj +francescanesimo francescanesimo nom +francescani francescano adj +francescano francescano adj +francese francese adj +francesi francese adj +francesismi francesismo nom +francesismo francesismo nom +francesista francesista nom +francesisti francesista nom +franche franco adj +franchezza franchezza nom +franchi franco nom +franchigia franchigia nom +franchigie franchigia nom +franchino francare ver +franchismo franchismo nom +francio francio nom +franco franco adj +francobolli francobollo nom +francobollo francobollo nom +francofila francofilo adj +francofile francofilo adj +francofili francofilo adj +francofilo francofilo adj +francofobo francofobo adj +francofona francofono adj +francofone francofono adj +francofoni francofono adj +francofono francofono adj +francolini francolino nom +francolino francolino nom +francò francare ver +frane frana nom +franga frangere ver +frange frangia nom +frangente frangente nom +frangenti frangente nom +franger frangere ver +frangere frangere ver +frangersi frangere ver +frangevano frangere ver +frangi frangere|frangiare ver +frangia frangia nom +frangianti frangiare ver +frangiata frangiare ver +frangiate frangiare ver +frangiati frangiare ver +frangiato frangiare ver +frangiatura frangiatura nom +frangibile frangibile adj +frangibili frangibile adj +frangiflutti frangiflutti nom +frangile frangere ver +frangitore frangitore nom +frangitori frangitore nom +frangitura frangitura nom +frangiventi frangivento nom +frangivento frangivento nom +frangizolle frangizolle nom +frango frangere ver +frangola frangola nom +frangono frangere ver +frani franare ver +franino franare ver +frano franare ver +franosa franoso adj +franose franoso adj +franosi franoso adj +franoso franoso adj +franse frangere ver +fransero frangere ver +fransi frangere ver +franta franto adj +frante frangere ver +franti franto adj +franto franto adj +frantoi frantoio nom +frantoio frantoio nom +frantuma frantumare ver +frantumando frantumare ver +frantumandogli frantumare ver +frantumandola frantumare ver +frantumandole frantumare ver +frantumandoli frantumare ver +frantumandolo frantumare ver +frantumandone frantumare ver +frantumandosi frantumare ver +frantumano frantumare ver +frantumante frantumare ver +frantumanti frantumare ver +frantumare frantumare ver +frantumargli frantumare ver +frantumarla frantumare ver +frantumarle frantumare ver +frantumarlo frantumare ver +frantumarne frantumare ver +frantumarono frantumare ver +frantumarsi frantumare ver +frantumasse frantumare ver +frantumata frantumare ver +frantumate frantumare ver +frantumati frantumare ver +frantumato frantumare ver +frantumava frantumare ver +frantumavano frantumare ver +frantumazione frantumazione nom +frantumazioni frantumazione nom +frantumerebbe frantumare ver +frantumi frantume nom +frantumino frantumare ver +frantumo frantumare ver +frantumò frantumare ver +franò franare ver +frappa frappa nom +frappe frappa nom +frappone frapporre ver +frapponendo frapporre ver +frapponendosi frapporre ver +frapponendovi frapporre ver +frapponesse frapporre ver +frapponessero frapporre ver +frapponeva frapporre ver +frapponevano frapporre ver +frapponga frapporre ver +frappongo frapporre ver +frappongono frapporre ver +frapporre frapporre ver +frapporrà frapporre ver +frapporsi frapporre ver +frapporti frapporre ver +frappose frapporre ver +frapposero frapporre ver +frapposizione frapposizione nom +frapposta frapporre ver +frapposte frapporre ver +frapposti frapporre ver +frapposto frapporre ver +frappé frappé nom +frasari frasario nom +frasario frasario nom +frasca frasca nom +frascati frascati nom +frasche frasca nom +fraschetta fraschetta nom +fraschette fraschetta nom +frase frase nom +fraseggi fraseggio nom +fraseggiare fraseggiare ver +fraseggio fraseggio nom +fraseologia fraseologia nom +fraseologica fraseologico adj +fraseologiche fraseologico adj +fraseologici fraseologico adj +fraseologico fraseologico adj +fraseologie fraseologia nom +frasi frase nom +frassini frassino nom +frassino frassino nom +frastagli frastaglio nom +frastagliamento frastagliamento nom +frastagliata frastagliare ver +frastagliate frastagliare ver +frastagliati frastagliare ver +frastagliato frastagliare ver +frastagliatura frastagliatura nom +frastagliature frastagliatura nom +frastaglio frastaglio nom +frastornante frastornare ver +frastornanti frastornare ver +frastornare frastornare ver +frastornata frastornare ver +frastornati frastornare ver +frastornato frastornare ver +frastornava frastornare ver +frastuoni frastuono nom +frastuono frastuono nom +frate frate nom +fratellanza fratellanza nom +fratellanze fratellanza nom +fratellastri fratellastro nom +fratellastro fratellastro nom +fratelli fratello nom +fratello fratello nom +fraterna fraterno adj +fraterne fraterno adj +fraterni fraterno adj +fraternità fraternità nom +fraternizza fraternizzare ver +fraternizzando fraternizzare ver +fraternizzano fraternizzare ver +fraternizzare fraternizzare ver +fraternizzarono fraternizzare ver +fraternizzassero fraternizzare ver +fraternizzato fraternizzare ver +fraternizzo fraternizzare ver +fraternizzò fraternizzare ver +fraterno fraterno adj +fratesca fratesco adj +frateschi fratesco adj +frati frate nom +fraticelli fraticello nom +fraticello fraticello nom +fraticida fraticida adj +fratina fratina nom +fratini fratino nom +fratino fratino nom +fratricida fratricida adj +fratricide fratricida adj +fratricidi fratricida adj +fratricidio fratricidio nom +fratta fratto adj +frattaglia frattaglia nom +frattaglie frattaglia nom +frattanto frattanto adv +fratte fratto adj +frattempo frattempo nom +fratti fratto adj +fratto fratto adj +frattura frattura nom +fratturando fratturare ver +fratturandogli fratturare ver +fratturandole fratturare ver +fratturandolo fratturare ver +fratturandosi fratturare ver +fratturano fratturare ver +fratturare fratturare ver +fratturargli fratturare ver +fratturarono fratturare ver +fratturarsi fratturare ver +fratturata fratturare ver +fratturate fratturare ver +fratturati fratturare ver +fratturato fratturare ver +fratturava fratturare ver +fratturavano fratturare ver +fratture frattura nom +frattureranno fratturare ver +fratturerà fratturare ver +fratturi fratturare ver +fratturò fratturare ver +fraudolenta fraudolento adj +fraudolente fraudolento adj +fraudolentemente fraudolentemente adv +fraudolenti fraudolento adj +fraudolento fraudolento adj +fraudolenza fraudolenza nom +fraziona frazionare ver +frazionabile frazionabile adj +frazionabili frazionabile adj +frazionale frazionare ver +frazionali frazionare ver +frazionamenti frazionamento nom +frazionamento frazionamento nom +frazionando frazionare ver +frazionandolo frazionare ver +frazionandosi frazionare ver +frazionano frazionare ver +frazionare frazionare ver +frazionari frazionario adj +frazionaria frazionario adj +frazionarie frazionario adj +frazionario frazionario adj +frazionarla frazionare ver +frazionarlo frazionare ver +frazionarono frazionare ver +frazionarsi frazionare ver +frazionata frazionare ver +frazionate frazionare ver +frazionati frazionare ver +frazionato frazionare ver +frazionava frazionare ver +frazione frazione nom +frazioni frazione nom +frazionismi frazionismo nom +frazionismo frazionismo nom +frazionò frazionare ver +freatica freatico adj +freatiche freatico adj +freatico freatico adj +frecce freccia nom +freccia freccia nom +frecciata frecciata nom +frecciate frecciata nom +fredda freddo adj +freddamente freddamente adv +freddando freddare ver +freddano freddare ver +freddare freddare ver +freddarlo freddare ver +freddarono freddare ver +freddata freddare ver +freddati freddare ver +freddato freddare ver +freddava freddare ver +fredde freddo adj +fredderà freddare ver +freddezza freddezza nom +freddi freddo adj +freddino freddare ver +freddo freddo nom +freddolosa freddoloso adj +freddolose freddoloso adj +freddoloso freddoloso adj +freddura freddura nom +freddure freddura nom +freddurista freddurista nom +freddò freddare ver +freelance freelance nom +freezer freezer nom +frega fregare ver +fregai fregare ver +fregami fregare ver +fregando fregare ver +fregandocene fregare ver +fregandomene fregare ver +fregandosene fregare ver +fregandosi fregare ver +fregandotene fregare ver +fregano fregare ver +fregar fregare ver +fregarcene fregare ver +fregarci fregare ver +fregare fregare ver +fregargli fregare ver +fregargliene fregare ver +fregarli fregare ver +fregarlo fregare ver +fregarmene fregare ver +fregarmi fregare ver +fregarsene fregare ver +fregarsi fregare ver +fregartene fregare ver +fregarti fregare ver +fregarvene fregare ver +fregarvi fregare ver +fregasse fregare ver +fregata fregata nom +fregate fregata nom +fregatene fregare ver +fregati fregare ver +fregato fregare ver +fregatura fregatura nom +fregature fregatura nom +fregava fregare ver +fregavano fregare ver +fregerà fregiare ver +fregheranno fregare ver +fregherebbe fregare ver +fregherei fregare ver +fregherà fregare ver +freghi frego nom +freghiamo fregare ver +freghiamocene fregare ver +freghino fregare ver +fregi fregio nom +fregia fregiare ver +fregiando fregiare ver +fregiandosi fregiare ver +fregiano fregiare ver +fregiarci fregiare ver +fregiare fregiare ver +fregiarmi fregiare ver +fregiarono fregiare ver +fregiarsene fregiare ver +fregiarsi fregiare ver +fregiasse fregiare ver +fregiassero fregiare ver +fregiata fregiare ver +fregiate fregiare ver +fregiati fregiare ver +fregiato fregiare ver +fregiava fregiare ver +fregiavano fregiare ver +fregio fregio nom +fregiò fregiare ver +fregnaccia fregnaccia nom +frego frego nom +fregola fregola nom +fregole fregola nom +fregò fregare ver +freisa freisa nom +frema fremere ver +freme fremere ver +fremebonda fremebondo adj +fremendo fremere ver +fremente fremente adj +frementi fremente adj +fremer fremere ver +fremere fremere ver +fremeva fremere ver +fremevano fremere ver +fremi fremere ver +fremiti fremito nom +fremito fremito nom +fremo fremere ver +fremono fremere ver +frena frenare ver +frenaggio frenaggio nom +frenai frenare ver +frenando frenare ver +frenandone frenare ver +frenandosi frenare ver +frenano frenare ver +frenante frenare ver +frenanti frenare ver +frenar frenare ver +frenare frenare ver +frenarla frenare ver +frenarli frenare ver +frenarlo frenare ver +frenarmi frenare ver +frenarne frenare ver +frenarono frenare ver +frenarsi frenare ver +frenasse frenare ver +frenassero frenare ver +frenastenia frenastenia nom +frenata frenata nom +frenate frenata nom +frenati frenato adj +frenato frenare ver +frenatore frenatore adj +frenatori frenatore nom +frenatrice frenatore adj +frenatura frenatura nom +frenava frenare ver +frenavano frenare ver +frenelli frenello nom +frenello frenello nom +frenerebbe frenare ver +frenerà frenare ver +frenesia frenesia nom +frenesie frenesia nom +frenetica frenetico adj +frenetiche frenetico adj +frenetici frenetico adj +frenetico frenetico adj +freni freno nom +frenica frenico adj +freniche frenico adj +frenici frenico adj +frenico frenico adj +frenino frenare ver +freno freno nom +frenologi frenologo nom +frenologia frenologia nom +frenologie frenologia nom +frenologo frenologo nom +frenuli frenulo nom +frenulo frenulo nom +frenò frenare ver +freon freon nom +frequenta frequentare ver +frequentabile frequentabile adj +frequentabili frequentabile adj +frequentai frequentare ver +frequentale frequentare ver +frequentammo frequentare ver +frequentando frequentare ver +frequentandola frequentare ver +frequentandoli frequentare ver +frequentandolo frequentare ver +frequentandone frequentare ver +frequentandosi frequentare ver +frequentandovi frequentare ver +frequentano frequentare ver +frequentante frequentare ver +frequentanti frequentare ver +frequentar frequentare ver +frequentarci frequentare ver +frequentare frequentare ver +frequentarla frequentare ver +frequentarle frequentare ver +frequentarli frequentare ver +frequentarlo frequentare ver +frequentarne frequentare ver +frequentarono frequentare ver +frequentarsi frequentare ver +frequentarvi frequentare ver +frequentasse frequentare ver +frequentassero frequentare ver +frequentassi frequentare ver +frequentata frequentare ver +frequentate frequentare ver +frequentati frequentare ver +frequentativa frequentativo adj +frequentativo frequentativo adj +frequentato frequentare ver +frequentatore frequentatore nom +frequentatori frequentatore nom +frequentatrice frequentatore nom +frequentatrici frequentatore nom +frequentava frequentare ver +frequentavamo frequentare ver +frequentavano frequentare ver +frequentavi frequentare ver +frequentavo frequentare ver +frequentazione frequentazione nom +frequentazioni frequentazione nom +frequente frequente adj +frequentemente frequentemente adv +frequenteranno frequentare ver +frequenterebbe frequentare ver +frequenterei frequentare ver +frequenterà frequentare ver +frequenterò frequentare ver +frequenti frequente adj +frequentiamo frequentare ver +frequentino frequentare ver +frequentissime frequentissimo adj +frequento frequentare ver +frequentò frequentare ver +frequenza frequenza nom +frequenze frequenza nom +frequenzimetri frequenzimetro nom +frequenzimetro frequenzimetro nom +fresa fresa nom +fresante fresare ver +fresanti fresare ver +fresare fresare ver +fresata fresare ver +fresate fresare ver +fresati fresare ver +fresato fresare ver +fresatore fresatore nom +fresatrice fresatore nom +fresatrici fresatore nom +fresatura fresatura nom +fresature fresatura nom +fresca fresco adj +fresche fresco adj +freschezza freschezza nom +freschi fresco adj +fresco fresco adj +frescura frescura nom +frese fresa nom +fresi fresare ver +fresia fresia nom +fresie fresia nom +fretta fretta nom +frettolosa frettoloso adj +frettolose frettoloso adj +frettolosi frettoloso adj +frettoloso frettoloso adj +freudiana freudiano adj +freudiane freudiano adj +freudiani freudiano adj +freudiano freudiano adj +friabile friabile adj +friabili friabile adj +friabilità friabilità nom +fricandò fricandò nom +fricassea fricassea nom +fricativa fricativo adj +fricative fricativo adj +fricativi fricativo adj +fricativo fricativo adj +fricchettone fricchettone nom +fricchettoni fricchettone nom +frigga friggere ver +frigge friggere ver +friggendo friggere ver +friggendola friggere ver +friggendolo friggere ver +friggere friggere ver +friggerla friggere ver +friggerle friggere ver +friggerli friggere ver +friggerlo friggere ver +friggetele friggere ver +friggevano friggere ver +friggi friggere ver +friggitoria friggitoria nom +friggitorie friggitoria nom +friggo friggere ver +friggono friggere ver +frighi frigo nom +frigi frigio adj +frigia frigio adj +frigida frigido adj +frigidaire frigidaire nom +frigide frigido adj +frigidi frigido adj +frigidità frigidità nom +frigido frigido adj +frigie frigio adj +frigio frigio adj +frigna frignare ver +frignando frignare ver +frignano frignare ver +frignante frignare ver +frignare frignare ver +frigno frignare ver +frignone frignone nom +frignoni frignone nom +frigo frigo nom +frigobar frigobar nom +frigoria frigoria nom +frigorie frigoria nom +frigorifera frigorifero adj +frigorifere frigorifero adj +frigoriferi frigorifero adj +frigorifero frigorifero nom +frigorista frigorista nom +frimaio frimaio nom +fringuelli fringuello nom +fringuello fringuello nom +frinire frinire ver +frinisce frinire ver +frinito frinire ver +frisa frisare ver +frisbee frisbee nom +frisi frisare ver +friso frisare ver +frisse friggere ver +frissi friggere ver +fritillaria fritillaria nom +fritta fritto adj +frittata frittata nom +frittate frittata nom +fritte fritto adj +frittella frittella nom +frittelle frittella nom +fritti friggere ver +fritto fritto adj +frittura frittura nom +fritture frittura nom +friulana friulano adj +friulane friulano adj +friulani friulano adj +friulano friulano adj +frivola frivolo adj +frivole frivolo adj +frivolezza frivolezza nom +frivolezze frivolezza nom +frivoli frivolo adj +frivolo frivolo adj +friziona frizionare ver +frizionale frizionare ver +frizionali frizionare ver +frizionando frizionare ver +frizionare frizionare ver +frizionata frizionare ver +frizionato frizionare ver +frizione frizione nom +frizioni frizione nom +frizza frizzare ver +frizzante frizzante adj +frizzanti frizzante adj +frizzi frizzo nom +frizzo frizzo nom +froda frodare ver +frodando frodare ver +frodano frodare ver +frodare frodare ver +frodata frodare ver +frodato frodare ver +frodatori frodatore nom +frode frode nom +frodi frode nom +frodo frodo nom +frodò frodare ver +froge frogia nom +frolla frollo adj +frollano frollare ver +frollare frollare ver +frollata frollare ver +frollate frollare ver +frollatura frollatura nom +frollature frollatura nom +frolle frollo adj +frolli frollo adj +frollini frollino nom +frollino frollare ver +frollo frollo adj +frombola frombola nom +frombole frombola nom +fromboliere fromboliere nom +frombolieri fromboliere nom +frombolo frombolare ver +fronda fronda nom +fronde fronda nom +frondista frondista nom +frondisti frondista nom +frondosa frondoso adj +frondose frondoso adj +frondosi frondoso adj +frondosità frondosità nom +frondoso frondoso adj +frontale frontale adj +frontali frontale adj +frontaliera frontaliero adj +frontaliere frontaliero adj +frontalieri frontaliero adj +frontaliero frontaliero adj +fronte fronte nom +fronteggeranno fronteggiare ver +fronteggerei fronteggiare ver +fronteggerà fronteggiare ver +fronteggi fronteggiare ver +fronteggia fronteggiare ver +fronteggiando fronteggiare ver +fronteggiandosi fronteggiare ver +fronteggiano fronteggiare ver +fronteggiante fronteggiare ver +fronteggianti fronteggiare ver +fronteggiare fronteggiare ver +fronteggiarla fronteggiare ver +fronteggiarle fronteggiare ver +fronteggiarli fronteggiare ver +fronteggiarlo fronteggiare ver +fronteggiarne fronteggiare ver +fronteggiarono fronteggiare ver +fronteggiarsi fronteggiare ver +fronteggiasse fronteggiare ver +fronteggiassero fronteggiare ver +fronteggiata fronteggiare ver +fronteggiate fronteggiare ver +fronteggiati fronteggiare ver +fronteggiato fronteggiare ver +fronteggiava fronteggiare ver +fronteggiavano fronteggiare ver +fronteggino fronteggiare ver +fronteggiò fronteggiare ver +frontespizi frontespizio nom +frontespizio frontespizio nom +fronti fronte nom +frontiera frontiera nom +frontiere frontiera nom +frontini frontino nom +frontino frontino nom +frontismo frontismo nom +frontista frontista nom +frontisti frontista nom +frontone frontone nom +frontoni frontone nom +fronzoli fronzolo nom +fronzolo fronzolo nom +fronzuti fronzuto adj +fronzuto fronzuto adj +frosone frosone nom +frotta frotta nom +frotte frotta nom +frottola frottola nom +frottole frottola nom +fruendo fruire ver +fruente fruire ver +fruga frugare ver +frugale frugale adj +frugali frugale adj +frugalità frugalità nom +frugando frugare ver +frugano frugare ver +frugarci frugare ver +frugare frugare ver +frugarono frugare ver +frugata frugare ver +frugate frugare ver +frugati frugare ver +frugato frugare ver +frugava frugare ver +frugavano frugare ver +frugavi frugare ver +frughi frugare ver +frugifera frugifero adj +frugifero frugifero adj +frugivora frugivoro adj +frugivore frugivoro adj +frugivori frugivoro adj +frugivoro frugivoro adj +frugnolo frugnolo nom +frugo frugare ver +frugola frugolo nom +frugoli frugolo nom +frugò frugare ver +fruibile fruibile adj +fruibili fruibile adj +fruibilità fruibilità nom +fruiranno fruire ver +fruire fruire ver +fruirlo fruire ver +fruirne fruire ver +fruirono fruire ver +fruisca fruire ver +fruiscano fruire ver +fruisce fruire ver +fruisco fruire ver +fruiscono fruire ver +fruisse fruire ver +fruita fruire ver +fruite fruire ver +fruiti fruire ver +fruito fruire ver +fruitore fruitore nom +fruitori fruitore nom +fruiva fruire ver +fruivano fruire ver +fruizione fruizione nom +fruizioni fruizione nom +frullare frullare adj +frullata frullato adj +frullate frullato adj +frullati frullato nom +frullato frullato nom +frullatore frullatore nom +frullatori frullatore nom +frulli frullo nom +frullini frullino nom +frullino frullino nom +frullio frullio nom +frullo frullo nom +frumentari frumentario adj +frumentaria frumentario adj +frumentarie frumentario adj +frumentario frumentario adj +frumenti frumento nom +frumento frumento nom +frumentone frumentone nom +frusci frusciare ver +fruscia frusciare ver +frusciando frusciare ver +frusciano frusciare ver +frusciante frusciare ver +fruscianti frusciare ver +frusciar frusciare ver +frusciare frusciare ver +frusciati frusciare ver +fruscii fruscio nom +fruscio fruscio nom +frusta frusta nom +frustaci frustare ver +frustai frustare ver +frustando frustare ver +frustandola frustare ver +frustandolo frustare ver +frustano frustare ver +frustante frustare ver +frustanti frustare ver +frustare frustare ver +frustarla frustare ver +frustarli frustare ver +frustarlo frustare ver +frustarono frustare ver +frustarsi frustare ver +frustata frustata nom +frustate frustata nom +frustati frustare ver +frustato frustare ver +frustava frustare ver +frustavano frustare ver +fruste frusta nom +frusti frusto adj +frustini frustino nom +frustino frustino nom +frusto frusto adj +frustra frustrare ver +frustraci frustrare ver +frustrando frustrare ver +frustrandosi frustrare ver +frustrano frustrare ver +frustrante frustrare ver +frustranti frustrare ver +frustrare frustrare ver +frustrarlo frustrare ver +frustrarne frustrare ver +frustrarono frustrare ver +frustrata frustrare ver +frustrate frustrare ver +frustrati frustrare ver +frustrato frustrare ver +frustrava frustrare ver +frustravano frustrare ver +frustrazione frustrazione nom +frustrazioni frustrazione nom +frustrerebbe frustrare ver +frustrò frustrare ver +frustò frustare ver +frutice frutice nom +frutici frutice nom +fruticosa fruticoso adj +fruticose fruticoso adj +fruticosi fruticoso adj +fruticoso fruticoso adj +frutta frutta nom +fruttai fruttare ver +fruttaiola fruttaiolo nom +fruttando fruttare ver +fruttandogli fruttare ver +fruttandole fruttare ver +fruttano fruttare ver +fruttare fruttare ver +fruttargli fruttare ver +fruttarle fruttare ver +fruttarono fruttare ver +fruttasse fruttare ver +fruttassero fruttare ver +fruttata fruttare ver +fruttate fruttare ver +fruttati fruttare ver +fruttato fruttare ver +fruttava fruttare ver +fruttavano fruttare ver +frutte frutta nom +frutteranno fruttare ver +frutterebbe fruttare ver +frutterà fruttare ver +frutteti frutteto nom +frutteto frutteto nom +frutti frutto nom +frutticola frutticolo adj +frutticole frutticolo adj +frutticoli frutticolo adj +frutticolo frutticolo adj +frutticoltore frutticoltore nom +frutticoltori frutticoltore nom +frutticoltura frutticoltura nom +fruttidoro fruttidoro nom +fruttiera fruttiera nom +fruttiere fruttiera nom +fruttifera fruttifero adj +fruttifere fruttifero adj +fruttiferi fruttifero adj +fruttifero fruttifero adj +fruttifica fruttificare ver +fruttificano fruttificare ver +fruttificante fruttificare ver +fruttificanti fruttificare ver +fruttificare fruttificare ver +fruttificati fruttificare ver +fruttificato fruttificare ver +fruttificheranno fruttificare ver +fruttifichi fruttificare ver +fruttificò fruttificare ver +fruttivendola fruttivendolo nom +fruttivendoli fruttivendolo nom +fruttivendolo fruttivendolo nom +frutto frutto nom +fruttosi fruttosio nom +fruttosio fruttosio nom +fruttuosa fruttuoso adj +fruttuose fruttuoso adj +fruttuosi fruttuoso adj +fruttuoso fruttuoso adj +fruttò fruttare ver +fruì fruire ver +fu essere ver_sup +fuchi fuco nom +fucila fucilare ver +fucilali fucilare ver +fucilando fucilare ver +fucilano fucilare ver +fucilarci fucilare ver +fucilare fucilare ver +fucilarla fucilare ver +fucilarli fucilare ver +fucilarlo fucilare ver +fucilarne fucilare ver +fucilarono fucilare ver +fucilata fucilata nom +fucilate fucilata nom +fucilateli fucilare ver +fucilatemi fucilare ver +fucilati fucilare ver +fucilato fucilare ver +fucilava fucilare ver +fucilavamo fucilare ver +fucilavano fucilare ver +fucilazione fucilazione nom +fucilazioni fucilazione nom +fucile fucile nom +fucileremo fucilare ver +fucileria fucileria nom +fucilerie fucileria nom +fucili fucile nom +fuciliamolo fucilare ver +fuciliere fuciliere nom +fucilieri fuciliere nom +fucilino fucilare ver +fucilò fucilare ver +fucina fucina nom +fucinati fucinare ver +fucinato fucinare ver +fucinatore fucinatore nom +fucinatura fucinatura nom +fucinature fucinatura nom +fucine fucina nom +fucini fucinare ver +fucino fucinare ver +fuco fuco nom +fucsia fucsia nom +fucsina fucsina nom +fuga fuga nom +fugace fugace adj +fugaci fugace adj +fugacità fugacità nom +fugai fugare ver +fugale fugare ver +fugando fugare ver +fugano fugare ver +fugante fugare ver +fuganti fugare ver +fugar fugare ver +fugare fugare ver +fugarla fugare ver +fugarli fugare ver +fugarlo fugare ver +fugarne fugare ver +fugarono fugare ver +fugata fugato adj +fugate fugato adj +fugati fugare ver +fugato fugare ver +fugava fugare ver +fugga fuggire ver +fuggano fuggire ver +fugge fuggire ver +fuggendo fuggire ver +fuggendosene fuggire ver +fuggente fuggire ver +fuggenti fuggire ver +fuggevole fuggevole adj +fuggevoli fuggevole adj +fuggi fuggire ver +fuggiamo fuggire ver +fuggiasca fuggiasco adj +fuggiasche fuggiasco nom +fuggiaschi fuggiasco nom +fuggiasco fuggiasco adj +fuggiate fuggire ver +fuggifuggi fuggifuggi nom +fuggii fuggire ver +fuggir fuggire ver +fuggirai fuggire ver +fuggiranno fuggire ver +fuggire fuggire ver +fuggirebbe fuggire ver +fuggiremo fuggire ver +fuggirete fuggire ver +fuggirgli fuggire ver +fuggirle fuggire ver +fuggirmi fuggire ver +fuggirne fuggire ver +fuggirono fuggire ver +fuggirà fuggire ver +fuggirò fuggire ver +fuggisse fuggire ver +fuggissero fuggire ver +fuggisti fuggire ver +fuggita fuggire ver +fuggite fuggire ver +fuggiti fuggire ver +fuggitiva fuggitivo adj +fuggitive fuggitivo adj +fuggitivi fuggitivo nom +fuggitivo fuggitivo adj +fuggito fuggire ver +fuggiva fuggire ver +fuggivano fuggire ver +fuggivo fuggire ver +fuggo fuggire ver +fuggono fuggire ver +fuggì fuggire ver +fughe fuga nom +fugherebbe fugare ver +fugherà fugare ver +fughi fugare ver +fugo fugare ver +fugò fugare ver +fui essere ver +fulcrata fulcrato adj +fulcrato fulcrato adj +fulcri fulcro nom +fulcro fulcro nom +fulga fulgere ver +fulge fulgere ver +fulgente fulgere ver +fulgenti fulgere ver +fulger fulgere ver +fulgere fulgere ver +fulgida fulgido adj +fulgide fulgido adj +fulgidi fulgido adj +fulgido fulgido adj +fulgo fulgere ver +fulgore fulgore nom +fulgori fulgore nom +fuliggine fuliggine nom +fuliggini fuliggine nom +fuligginosa fuligginoso adj +fuligginose fuligginoso adj +fuligginosi fuligginoso adj +fuligginoso fuligginoso adj +full full nom +fulmicotone fulmicotone nom +fulmina fulminare ver +fulminando fulminare ver +fulminandola fulminare ver +fulminandoli fulminare ver +fulminandolo fulminare ver +fulminano fulminare ver +fulminante fulminante adj +fulminanti fulminante adj +fulminare fulminare ver +fulminarla fulminare ver +fulminarlo fulminare ver +fulminarmi fulminare ver +fulminata fulminare ver +fulminate fulminato adj +fulminati fulminato adj +fulminato fulminare ver +fulminatore fulminatore nom +fulminatori fulminatore nom +fulminazione fulminazione nom +fulminazioni fulminazione nom +fulmine fulmine nom +fulminea fulmineo adj +fulminee fulmineo adj +fulminei fulmineo adj +fulmineità fulmineità nom +fulmineo fulmineo adj +fulminerà fulminare ver +fulmini fulmine nom +fulmino fulminare ver +fulminò fulminare ver +fulta fulgere ver +fulva fulvo adj +fulve fulvo adj +fulvi fulvo adj +fulvo fulvo adj +fuma fumare ver +fumai fumare ver +fumaioli fumaiolo nom +fumaiolo fumaiolo nom +fumammo fumare ver +fumando fumare ver +fumandone fumare ver +fumandosi fumare ver +fumane fumare ver +fumano fumare ver +fumante fumante adj +fumanti fumante adj +fumar fumare ver +fumare fumare ver +fumaria fumario adj +fumarie fumario adj +fumario fumario adj +fumarla fumare ver +fumarle fumare ver +fumarlo fumare ver +fumarne fumare ver +fumarola fumarola nom +fumarole fumarola nom +fumarono fumare ver +fumarsi fumare ver +fumasse fumare ver +fumassero fumare ver +fumassi fumare ver +fumata fumata nom +fumate fumare ver +fumati fumare ver +fumato fumare ver +fumatore fumatore nom +fumatori fumatore nom +fumatrice fumatore nom +fumatrici fumatore nom +fumava fumare ver +fumavano fumare ver +fumento fumento nom +fumeranno fumare ver +fumeria fumeria nom +fumerie fumeria nom +fumerà fumare ver +fumetti fumetto nom +fumettista fumettista nom +fumettiste fumettista nom +fumettisti fumettista nom +fumetto fumetto nom +fumi fumo nom +fumiamo fumare ver +fumida fumido adj +fumiga fumigare ver +fumigante fumigare ver +fumiganti fumigare ver +fumigata fumigare ver +fumigazione fumigazione nom +fumigazioni fumigazione nom +fumino fumare ver +fumisteria fumisteria nom +fumisterie fumisteria nom +fumisti fumista nom +fummo essere ver +fumo fumo nom +fumogena fumogeno adj +fumogene fumogeno adj +fumogeni fumogeno adj +fumogeno fumogeno adj +fumoir fumoir nom +fumosa fumoso adj +fumose fumoso adj +fumosi fumoso adj +fumosità fumosità nom +fumoso fumoso adj +fumé fumé adj +fumò fumare ver +funaioli funaiolo nom +funamboleschi funambolesco adj +funambolesco funambolesco adj +funamboli funambolo nom +funambolismi funambolismo nom +funambolismo funambolismo nom +funambolo funambolo nom +fune fune nom +funebre funebre adj +funebri funebre adj +funerale funerale nom +funerali funerale nom +funerari funerario adj +funeraria funerario adj +funerarie funerario adj +funerario funerario adj +funerea funereo adj +funeree funereo adj +funerei funereo adj +funereo funereo adj +funesta funesto adj +funestano funestare ver +funestare funestare ver +funestarono funestare ver +funestata funestare ver +funestate funestare ver +funestati funestare ver +funestato funestare ver +funestava funestare ver +funestavano funestare ver +funeste funesto adj +funesterà funestare ver +funesti funesto adj +funesto funesto adj +funestò funestare ver +funga fungere ver +fungaia fungaia nom +fungaie fungaia nom +fungano fungere ver +funge fungere ver +fungendo fungere ver +fungendone fungere ver +fungente fungere ver +fungenti fungere ver +funger fungere ver +fungeranno fungere ver +fungere fungere ver +fungerebbe fungere ver +fungerebbero fungere ver +fungergli fungere ver +fungerà fungere ver +fungesse fungere ver +fungessero fungere ver +fungeva fungere ver +fungevano fungere ver +funghetti funghetto nom +funghetto funghetto nom +funghi fungo nom +funghir funghire ver +fungi fungere ver +fungicida fungicida nom +fungicidi fungicida nom +fungina fungino adj +fungine fungino adj +fungini fungino adj +fungino fungino adj +fungo fungo nom +fungono fungere ver +fungosa fungoso adj +fungoso fungoso adj +funi fune nom +funicolare funicolare adj +funicolari funicolare adj +funicoli funicolo nom +funicolo funicolo nom +funivia funivia nom +funivie funivia nom +funse fungere ver +funsero fungere ver +funsi fungere ver +funta fungere ver +funti fungere ver +funto fungere ver +funziona funzionare ver +funzionale funzionale adj +funzionali funzionale adj +funzionalismo funzionalismo nom +funzionalità funzionalità nom +funzionalmente funzionalmente adv +funzionamenti funzionamento nom +funzionamento funzionamento nom +funzionando funzionare ver +funzionano funzionare ver +funzionante funzionante adj +funzionanti funzionante adj +funzionare funzionare ver +funzionari funzionario nom +funzionaria funzionario nom +funzionarie funzionario nom +funzionario funzionario nom +funzionarono funzionare ver +funzionarti funzionare ver +funzionarvi funzionare ver +funzionasse funzionare ver +funzionassero funzionare ver +funzionata funzionare ver +funzionate funzionare ver +funzionati funzionare ver +funzionato funzionare ver +funzionava funzionare ver +funzionavano funzionare ver +funzione funzione nom +funzioneranno funzionare ver +funzionerebbe funzionare ver +funzionerebbero funzionare ver +funzionerà funzionare ver +funzioni funzione nom +funzioniamo funzionare ver +funzionino funzionare ver +funziono funzionare ver +funzionò funzionare ver +fuochi fuoco nom +fuochista fuochista nom +fuochisti fuochista nom +fuoco fuoco nom +fuor fuor adv +fuorche fuorche sw +fuorché fuorché pre +fuoresce fuoruscire ver +fuori fuori adv_sup +fuoribordo fuoribordo nom +fuoricampo fuoricampo nom +fuoriclasse fuoriclasse nom +fuoriesca fuoriuscire ver +fuoriescano fuoriuscire ver +fuoriesce fuoriuscire ver +fuoriescono fuoriuscire ver +fuorigioco fuorigioco nom +fuorilegge fuorilegge nom +fuoriprogramma fuoriprogramma nom +fuoriserie fuoriserie adj +fuoristrada fuoristrada adj +fuoriuscendo fuoriuscire ver +fuoriuscendone fuoriuscire ver +fuoriuscente fuoriuscire ver +fuoriuscenti fuoriuscire ver +fuoriusciranno fuoriuscire ver +fuoriuscire fuoriuscire ver +fuoriuscirebbe fuoriuscire ver +fuoriuscirne fuoriuscire ver +fuoriuscirono fuoriuscire ver +fuoriuscirà fuoriuscire ver +fuoriuscisse fuoriuscire ver +fuoriuscissero fuoriuscire ver +fuoriuscita fuoriuscita|fuoriuscito nom +fuoriuscite fuoriuscita|fuoriuscito nom +fuoriusciti fuoriuscito nom +fuoriuscito fuoriuscire ver +fuoriusciva fuoriuscire ver +fuoriuscivano fuoriuscire ver +fuoriuscì fuoriuscire ver +fuoruscendo fuoruscire ver +fuoruscire fuoruscire ver +fuoruscita fuoruscita|fuoruscito nom +fuorusciti fuoruscito nom +fuoruscito fuoruscito nom +fuoruscivano fuoruscire ver +fuorvia fuorviare ver +fuorviando fuorviare ver +fuorviano fuorviare ver +fuorviante fuorviante adj +fuorvianti fuorviante adj +fuorviare fuorviare ver +fuorviata fuorviare ver +fuorviate fuorviare ver +fuorviati fuorviare ver +fuorviato fuorviare ver +fuorvierà fuorviare ver +furba furbo adj +furbacchiona furbacchione nom +furbacchione furbacchione nom +furbacchioni furbacchione nom +furbastra furbastro nom +furbastri furbastro nom +furbastro furbastro nom +furbe furbo adj +furberia furberia nom +furberie furberia nom +furbesca furbesco adj +furbesche furbesco adj +furbeschi furbesco adj +furbesco furbesco adj +furbi furbo adj +furbizia furbizia nom +furbizie furbizia nom +furbo furbo adj +furente furente adj +furenti furente adj +fureria fureria nom +furetti furetto nom +furetto furetto nom +furfante furfante nom +furfanteria furfanteria nom +furfanterie furfanteria nom +furfantesco furfantesco adj +furfanti furfante nom +furgonata furgonato adj +furgonate furgonato adj +furgonati furgonato adj +furgonato furgonato adj +furgoncini furgoncino nom +furgoncino furgoncino nom +furgone furgone nom +furgoni furgone nom +furia furia nom +furibonda furibondo adj +furibonde furibondo adj +furibondi furibondo adj +furibondo furibondo adj +furie furia nom +furiere furiere nom +furieri furiere nom +furiosa furioso adj +furiosamente furiosamente adv +furiose furioso adj +furiosi furioso adj +furioso furioso adj +furono essere ver_sup +furore furore nom +furoreggia furoreggiare ver +furoreggiare furoreggiare ver +furoreggiato furoreggiare ver +furoreggiava furoreggiare ver +furoreggiavano furoreggiare ver +furoreggiò furoreggiare ver +furori furore nom +furti furto nom +furtiva furtivo adj +furtive furtivo adj +furtivi furtivo adj +furtivo furtivo adj +furto furto nom +fusa fondere ver +fusaggine fusaggine nom +fusaiola fusaiola nom +fusaiole fusaiola nom +fuscelli fuscello nom +fuscello fuscello nom +fusciacca fusciacca nom +fusciacche fusciacca nom +fuse fondere ver +fuselli fusello nom +fusello fusello nom +fusero fondere ver +fusi fuso adj +fusibile fusibile nom +fusibili fusibile nom +fusibilità fusibilità nom +fusiforme fusiforme adj +fusiformi fusiforme adj +fusilli fusillo nom +fusillo fusillo nom +fusione fusione nom +fusioni fusione nom +fuso fondere ver +fusoliera fusoliera nom +fusoliere fusoliera nom +fusori fusorio adj +fusoria fusorio adj +fusorie fusorio adj +fusorio fusorio adj +fusta fusta nom +fustagni fustagno nom +fustagno fustagno nom +fustaia fustaia nom +fustaie fustaia nom +fustanella fustanella nom +fustanelle fustanella nom +fuste fusta nom +fustella fustella nom +fustellare fustellare ver +fustellata fustellare ver +fustellati fustellare ver +fustellato fustellare ver +fustellatrice fustellatrice nom +fustelle fustella nom +fusti fusto nom +fustiga fustigare ver +fustigando fustigare ver +fustigano fustigare ver +fustiganti fustigare ver +fustigare fustigare ver +fustigarlo fustigare ver +fustigata fustigare ver +fustigate fustigare ver +fustigati fustigare ver +fustigato fustigare ver +fustigatore fustigatore adj +fustigatori fustigatore adj +fustigatrice fustigatore adj +fustigava fustigare ver +fustigazione fustigazione nom +fustigazioni fustigazione nom +fustigò fustigare ver +fustini fustino nom +fustino fustino nom +fusto fusto nom +futa futa nom +fute futa nom +futile futile adj +futili futile adj +futilità futilità nom +futura futuro adj +future futuro adj +futuri futuro adj +futuribile futuribile nom +futuribili futuribile nom +futurismi futurismo nom +futurismo futurismo nom +futurista futurista adj +futuriste futurista adj +futuristi futurista adj +futuro futuro nom +futurologo futurologo nom +fà fà ver +fé fé nom +föhn föhn nom +führer führer nom +g g sw +gabardine gabardine nom +gabba gabbare ver +gabbai gabbare ver +gabbamondo gabbamondo nom +gabbana gabbana nom +gabbanella gabbanella nom +gabbani gabbano nom +gabbano gabbano nom +gabbar gabbare ver +gabbare gabbare ver +gabbata gabbare ver +gabbati gabbare ver +gabbato gabbare ver +gabbi gabbo nom +gabbia gabbia nom +gabbiani gabbiano nom +gabbiano gabbiano nom +gabbie gabbia nom +gabbiere gabbiere nom +gabbieri gabbiere nom +gabbione gabbione nom +gabbioni gabbione nom +gabbo gabbo nom +gabbri gabbro nom +gabbro gabbro nom +gabbò gabbare ver +gabella gabella nom +gabellare gabellare ver +gabellato gabellare ver +gabelle gabella nom +gabelli gabellare ver +gabelliere gabelliere nom +gabellieri gabelliere nom +gabellino gabellare ver +gabello gabellare ver +gabinetti gabinetto nom +gabinetto gabinetto nom +gabonese gabonese adj +gabonesi gabonese adj +gadolini gadolinio nom +gadolinio gadolinio nom +gaffa gaffa nom +gaffe gaffa|gaffe nom +gag gag nom +gaga gaga nom +gaggia gaggia nom +gagliarda gagliardo adj +gagliarde gagliardo adj +gagliardetti gagliardetto nom +gagliardetto gagliardetto nom +gagliardi gagliardo adj +gagliardia gagliardia nom +gagliardo gagliardo adj +gaglioffi gaglioffo nom +gaglioffo gaglioffo nom +gagnola gagnolare ver +gaia gaio adj +gaie gaio adj +gaiezza gaiezza nom +gaii gaio adj +gaio gaio adj +gala gala nom +galalite galalite nom +galante galante adj +galanteria galanteria nom +galanterie galanteria nom +galanti galante adj +galantina galantina nom +galantine galantina nom +galantuomini galantuomini adj +galantuomo galantuomo adj +galassia galassia nom +galassie galassia nom +galatea galatea nom +galatee galatea nom +galatei galateo nom +galateo galateo nom +galattagoghi galattagogo nom +galattica galattico adj +galattiche galattico adj +galattici galattico adj +galattico galattico adj +galattofori galattoforo adj +galattoforo galattoforo adj +galattosio galattosio nom +galaverna galaverna nom +galbuli galbulo nom +galbulo galbulo nom +galea galea nom +galeazza galeazza nom +galeazze galeazza nom +galee galea nom +galena galena nom +galene galena nom +galenica galenico adj +galeniche galenico adj +galenici galenico adj +galenico galenico adj +galeone galeone nom +galeoni galeone nom +galeopiteci galeopiteco nom +galeopiteco galeopiteco nom +galeotta galeotto adj +galeotte galeotto adj +galeotti galeotto adj +galeotto galeotto adj +galera galera nom +galere galera nom +galeri galero nom +galero galero nom +galestri galestro nom +galestro galestro nom +galla galla nom +gallai gallare ver +gallala gallare ver +gallano gallare ver +gallante gallare ver +gallanti gallare ver +gallar gallare ver +gallare gallare ver +gallassi gallare ver +gallata gallare ver +gallate gallare ver +gallati gallare ver +gallato gallare ver +galle galla nom +galleggerebbe galleggiare ver +galleggerebbero galleggiare ver +galleggerà galleggiare ver +galleggi galleggiare ver +galleggia galleggiare ver +galleggiabilità galleggiabilità nom +galleggiamenti galleggiamento nom +galleggiamento galleggiamento nom +galleggiando galleggiare ver +galleggiano galleggiare ver +galleggiante galleggiante adj +galleggianti galleggiante adj +galleggiare galleggiare ver +galleggiarono galleggiare ver +galleggiasse galleggiare ver +galleggiassero galleggiare ver +galleggiati galleggiare ver +galleggiato galleggiare ver +galleggiava galleggiare ver +galleggiavano galleggiare ver +galleggino galleggiare ver +galleggiò galleggiare ver +galleria galleria nom +gallerie galleria nom +gallerista gallerista nom +galleristi gallerista nom +gallese gallese adj +galletta galletta nom +gallette galletta nom +galletti galletto nom +galletto galletto nom +galli gallio|gallo nom +galliate gallare ver +gallica gallico adj +galliche gallico adj +gallici gallico adj +gallicismi gallicismo nom +gallicismo gallicismo nom +gallico gallico adj +galliformi galliformi nom +gallina gallina nom +gallinacci gallinaccio nom +gallinaccio gallinaccio nom +gallinacei gallinacei nom +galline gallina nom +gallinella gallinella nom +gallinelle gallinella nom +gallino gallare ver +gallio gallio nom +gallismo gallismo nom +gallo gallo nom +gallomania gallomania nom +gallona gallonare ver +gallonata gallonare ver +gallonato gallonato adj +gallone gallone nom +galloni gallone nom +gallò gallare ver +galoppa galoppare ver +galoppando galoppare ver +galoppano galoppare ver +galoppante galoppante adj +galoppanti galoppante adj +galoppare galoppare ver +galopparono galoppare ver +galoppata galoppata nom +galoppate galoppata nom +galoppato galoppare ver +galoppatoio galoppatoio nom +galoppatore galoppatore nom +galoppava galoppare ver +galoppavano galoppare ver +galoppi galoppo nom +galoppini galoppino nom +galoppino galoppino nom +galoppo galoppo nom +galoppò galoppare ver +galosce galoscia nom +galvanica galvanico adj +galvaniche galvanico adj +galvanici galvanico adj +galvanico galvanico adj +galvanismo galvanismo nom +galvanizza galvanizzare ver +galvanizzando galvanizzare ver +galvanizzante galvanizzare ver +galvanizzare galvanizzare ver +galvanizzarli galvanizzare ver +galvanizzarne galvanizzare ver +galvanizzarono galvanizzare ver +galvanizzata galvanizzare ver +galvanizzate galvanizzare ver +galvanizzati galvanizzare ver +galvanizzato galvanizzare ver +galvanizzazione galvanizzazione nom +galvanizzò galvanizzare ver +galvanometri galvanometro nom +galvanometro galvanometro nom +galvanoplastica galvanoplastica nom +galvanostegia galvanostegia nom +galvanostegie galvanostegia nom +gamba gamba nom +gambale gambale nom +gambali gambale nom +gambe gamba nom +gamberetti gamberetto nom +gamberetto gamberetto nom +gamberi gambero nom +gambero gambero nom +gambetti gambetto nom +gambetto gambetto nom +gambi gambo nom +gambiera gambiera nom +gambiere gambiera nom +gambo gambo nom +game game nom +gamella gamella nom +gamelle gamella nom +gamete gamete nom +gameti gamete nom +gametofiti gametofito nom +gametofito gametofito nom +gamia gamia nom +gamica gamico adj +gamiche gamico adj +gamici gamico adj +gamico gamico adj +gamma gamma adj +gammaglobulina gammaglobulina nom +gammaglobuline gammaglobulina nom +gamme gamma nom +gamopetala gamopetalo adj +gamopetali gamopetalo adj +gamopetalo gamopetalo adj +ganasce ganascia nom +ganascia ganascia nom +ganci gancio nom +gancio gancio nom +gang gang nom +ganga ganga nom +ganghe ganga nom +gangheri ganghero nom +gangli ganglio nom +gangliare gangliare adj +gangliari gangliare adj +ganglio ganglio nom +gangrena gangrena nom +gangrene gangrena nom +gangster gangster nom +gangsterismo gangsterismo nom +ganimede ganimede nom +ganimedi ganimede nom +ganza ganzo nom +ganze ganzo nom +ganzi ganzo nom +ganzo ganzo nom +gap gap nom +gara gara nom +garage garage nom +garagista garagista nom +garagisti garagista nom +garante garante nom +garantendo garantire ver +garantendoci garantire ver +garantendogli garantire ver +garantendola garantire ver +garantendole garantire ver +garantendoli garantire ver +garantendolo garantire ver +garantendone garantire ver +garantendosi garantire ver +garantendovi garantire ver +garanti garante adj +garantiamo garantire ver +garantir garantire ver +garantiranno garantire ver +garantirci garantire ver +garantire garantire ver +garantirebbe garantire ver +garantirebbero garantire ver +garantirei garantire ver +garantiremo garantire ver +garantirgli garantire ver +garantirla garantire ver +garantirle garantire ver +garantirli garantire ver +garantirlo garantire ver +garantirmi garantire ver +garantirne garantire ver +garantirono garantire ver +garantirsene garantire ver +garantirsi garantire ver +garantirtelo garantire ver +garantirti garantire ver +garantirvi garantire ver +garantirà garantire ver +garantirò garantire ver +garantisca garantire ver +garantiscano garantire ver +garantisce garantire ver +garantisci garantire ver +garantisco garantire ver +garantiscono garantire ver +garantismi garantismo nom +garantismo garantismo nom +garantisse garantire ver +garantissero garantire ver +garantiste garantire ver +garantisti garantire ver +garantita garantire ver +garantite garantire ver +garantitegli garantire ver +garantiti garantire ver +garantito garantire ver +garantiva garantire ver +garantivano garantire ver +garantì garantire ver +garanzia garanzia nom +garanzie garanzia nom +garba garbare ver +garbai garbare ver +garbano garbare ver +garbasi garbare ver +garbasse garbare ver +garbata garbato adj +garbate garbato adj +garbatezza garbatezza nom +garbati garbato adj +garbato garbato adj +garbava garbare ver +garberebbe garbare ver +garberà garbare ver +garbi garbo nom +garbini garbino nom +garbino garbare ver +garbo garbo nom +garbugli garbuglio nom +garbuglio garbuglio nom +gardenia gardenia nom +gardenie gardenia nom +gardesana gardesano adj +gardesane gardesano adj +gardesani gardesano adj +gardesano gardesano adj +gare gara nom +gareggeranno gareggiare ver +gareggerà gareggiare ver +gareggi gareggiare ver +gareggia gareggiare ver +gareggiamo gareggiare ver +gareggiando gareggiare ver +gareggiandovi gareggiare ver +gareggiano gareggiare ver +gareggiante gareggiare ver +gareggianti gareggiare ver +gareggiar gareggiare ver +gareggiare gareggiare ver +gareggiarono gareggiare ver +gareggiarvi gareggiare ver +gareggiasse gareggiare ver +gareggiata gareggiare ver +gareggiate gareggiare ver +gareggiato gareggiare ver +gareggiava gareggiare ver +gareggiavano gareggiare ver +gareggino gareggiare ver +gareggio gareggiare ver +gareggiò gareggiare ver +garganella garganella nom +gargarismi gargarismo nom +gargarismo gargarismo nom +gargarozzo gargarozzo nom +gargotta gargotta nom +garibaldina garibaldino adj +garibaldine garibaldino adj +garibaldini garibaldino nom +garibaldino garibaldino adj +garitta garitta nom +garitte garitta nom +garofani garofano nom +garofano garofano nom +garrese garrese nom +garretti garretto nom +garretto garretto nom +garrire garrire ver +garrisce garrire ver +garriscono garrire ver +garrite garrire ver +garrito garrire ver +garrotta garrotta nom +garrotte garrotta nom +garrula garrulo adj +garruli garrulo adj +garrulità garrulità nom +garrulo garrulo adj +garza garza nom +garzano garzare ver +garzanti garzare ver +garzato garzare ver +garzatrici garzatrice nom +garzatura garzatura nom +garze garza nom +garzi garzo nom +garzino garzare ver +garzo garzo nom +garzone garzone nom +garzoni garzone nom +garçonne garçonne nom +garçonnière garçonnière nom +gas gas nom +gasa gasare ver +gasai gasare ver +gasano gasare ver +gasar gasare ver +gasare gasare ver +gasarono gasare ver +gasarsi gasare ver +gasata gasare ver +gasate gasato adj +gasati gasare ver +gasato gasare ver +gasava gasare ver +gasdinamica gasdinamica nom +gasdotti gasdotto nom +gasdotto gasdotto nom +gasi gasare ver +gasista gasista nom +gasisti gasista nom +gaso gasare ver +gasogeni gasogeno nom +gasogeno gasogeno nom +gasoli gasolio nom +gasolina gasolina nom +gasoline gasolina nom +gasolio gasolio nom +gasometri gasometro nom +gasometro gasometro nom +gassa gassa nom +gasse gassa nom +gassificante gassificare ver +gassificare gassificare ver +gassificata gassificare ver +gassificato gassificare ver +gassificazione gassificazione nom +gassisti gassista nom +gassogeni gassogeno nom +gassogeno gassogeno nom +gassosa gassoso adj +gassose gassoso adj +gassosi gassoso adj +gassoso gassoso adj +gastaldi gastaldo nom +gastaldo gastaldo nom +gasteropodi gasteropodi nom +gastralgia gastralgia nom +gastralgie gastralgia nom +gastrectasia gastrectasia nom +gastrica gastrico adj +gastriche gastrico adj +gastrici gastrico adj +gastrico gastrico adj +gastrite gastrite nom +gastriti gastrite nom +gastrocnemi gastrocnemio nom +gastrocnemio gastrocnemio nom +gastroduodenale gastroduodenale adj +gastroduodenali gastroduodenale adj +gastroenterica gastroenterico adj +gastroenteriche gastroenterico adj +gastroenterici gastroenterico adj +gastroenterico gastroenterico adj +gastroenterite gastroenterite nom +gastroenteriti gastroenterite nom +gastroenterologia gastroenterologia nom +gastroepatica gastroepatico adj +gastroepatico gastroepatico adj +gastrointestinale gastrointestinale adj +gastrointestinali gastrointestinale adj +gastronoma gastronomo nom +gastronomi gastronomo nom +gastronomia gastronomia nom +gastronomica gastronomico adj +gastronomiche gastronomico adj +gastronomici gastronomico adj +gastronomico gastronomico adj +gastronomie gastronomia nom +gastronomo gastronomo nom +gastropatia gastropatia nom +gastroscopia gastroscopia nom +gastroscopie gastroscopia nom +gastrula gastrula nom +gateway gateway nom +gatta gatta|gatto nom +gattaiola gattaiola nom +gattaiole gattaiola nom +gattamorta gattamorta nom +gatte gatta|gatto nom +gatteggiamento gatteggiamento nom +gatti gatto nom +gattinara gattinara nom +gattini gattino nom +gattino gattino nom +gatto gatto nom +gattona gattonare ver +gattonando gattonare ver +gattonare gattonare ver +gattoni gattoni adv +gattopardesca gattopardesco adj +gattopardesco gattopardesco adj +gattopardi gattopardo nom +gattopardo gattopardo nom +gattucci gattuccio nom +gattuccio gattuccio nom +gaucho gaucho nom +gaudente gaudente adj +gaudenti gaudente adj +gaudi gaudio nom +gaudio gaudio nom +gaudiosa gaudioso adj +gaudiosi gaudioso adj +gaudioso gaudioso adj +gauss gauss nom +gavazza gavazzare ver +gavazzi gavazzare ver +gavazzo gavazzare ver +gavetta gavetta nom +gavette gavetta nom +gavettino gavettino nom +gavettone gavettone nom +gavettoni gavettone nom +gaviale gaviale nom +gaviali gaviale nom +gavitelli gavitello nom +gavitello gavitello nom +gavotta gavotta nom +gavotte gavotta nom +gay gay nom +gazebo gazebo nom +gazometri gazometro nom +gazometro gazometro nom +gazza gazza nom +gazzarra gazzarra nom +gazzarre gazzarra nom +gazze gazza nom +gazzella gazzella nom +gazzelle gazzella nom +gazzetta gazzetta nom +gazzette gazzetta nom +gazzettiere gazzettiere nom +gazzettieri gazzettiere nom +gazzettini gazzettino nom +gazzettino gazzettino nom +gazzosa gazzosa adj +gazzose gazzosa adj +gechi geco nom +geco geco nom +geiger geiger nom +geisha geisha nom +geishe geisha nom +gel gel nom +gela gelare ver +gelai gelare ver +gelando gelare ver +gelandosi gelare ver +gelano gelare ver +gelante gelare ver +gelar gelare ver +gelare gelare ver +gelarono gelare ver +gelarsi gelare ver +gelasi gelare ver +gelasse gelare ver +gelassi gelare ver +gelata gelato adj +gelatai gelataio nom +gelataio gelataio nom +gelate gelata nom +gelati gelato adj +gelatiera gelatiera|gelatiere nom +gelatiere gelatiera|gelatiere nom +gelatieri gelatiere nom +gelatina gelatina nom +gelatine gelatina nom +gelatinizza gelatinizzare ver +gelatinizzata gelatinizzare ver +gelatinosa gelatinoso adj +gelatinose gelatinoso adj +gelatinosi gelatinoso adj +gelatinoso gelatinoso adj +gelato gelato nom +gelava gelare ver +gelavano gelare ver +gelerà gelare ver +geli gelo nom +gelicidio gelicidio nom +gelida gelido adj +gelide gelido adj +gelidi gelido adj +gelido gelido adj +gelifica gelificare ver +gelificante gelificare ver +gelificanti gelificare ver +gelificare gelificare ver +gelificata gelificare ver +gelificati gelificare ver +gelificato gelificare ver +gelificazione gelificazione nom +gelignite gelignite nom +gelino gelare ver +geliva gelivo adj +gelivi gelivo adj +gelo gelo nom +gelone gelone nom +geloni gelone nom +gelosa geloso adj +gelosamente gelosamente adv +gelose geloso adj +gelosi geloso adj +gelosia gelosia nom +gelosie gelosia nom +geloso geloso adj +gelseti gelseto nom +gelseto gelseto nom +gelsi gelso nom +gelsicoltura gelsicoltura nom +gelso gelso nom +gelsomini gelsomino nom +gelsomino gelsomino nom +gelò gelare ver +gema gemere ver +geme gemere ver +gemella gemello adj +gemellaggi gemellaggio nom +gemellaggio gemellaggio nom +gemellando gemellare ver +gemellandosi gemellare ver +gemellano gemellare ver +gemellare gemellare adj +gemellari gemellare adj +gemellarono gemellare ver +gemellarsi gemellare ver +gemellata gemellare ver +gemellate gemellare ver +gemellati gemellare ver +gemellato gemellare ver +gemelle gemello adj +gemelli gemello adj +gemellino gemellare ver +gemello gemello adj +gemellò gemellare ver +gemendo gemere ver +gemente gemere ver +gementi gemere ver +gemer gemere ver +gemere gemere ver +gemeva gemere ver +gemevano gemere ver +gemevo gemere ver +gemi gemere ver +gemiamo gemere ver +gemici gemere ver +gemili gemere ver +gemina gemino adj +geminaci geminare ver +geminale geminare ver +geminali geminare ver +geminante geminare ver +geminata geminare ver +geminate geminato adj +geminati geminato adj +geminato geminare ver +geminazione geminazione nom +geminazioni geminazione nom +gemine gemino adj +gemini gemino adj +gemino gemino adj +gemisi gemere ver +gemiti gemito nom +gemito gemito nom +gemma gemma nom +gemmando gemmare ver +gemmano gemmare ver +gemmante gemmare ver +gemmanti gemmare ver +gemmare gemmare ver +gemmari gemmario adj +gemmaria gemmario adj +gemmarie gemmario adj +gemmarono gemmare ver +gemmata gemmare ver +gemmate gemmare ver +gemmati gemmare ver +gemmato gemmare ver +gemmazione gemmazione nom +gemmazioni gemmazione nom +gemme gemma nom +gemmea gemmeo adj +gemmei gemmeo adj +gemmi gemmare ver +gemmo gemmare ver +gemmologia gemmologia nom +gemmò gemmare ver +gemo gemere ver +gemono gemere ver +gena genare ver +genai genare ver +genala genare ver +genale genare ver +genali genare ver +genami genare ver +genar genare ver +genarle genare ver +genasi genare ver +genato genare ver +genava genare ver +gendarme gendarme nom +gendarmeria gendarmeria nom +gendarmerie gendarmeria nom +gendarmi gendarme nom +gendo gire ver +gene gene nom +genealogia genealogia nom +genealogica genealogico adj +genealogiche genealogico adj +genealogici genealogico adj +genealogico genealogico adj +genealogie genealogia nom +genealogista genealogista nom +genealogisti genealogista nom +genepi genepi nom +genera generare ver +generaci generare ver +generai genare ver +generala generare ver +generalati generalato nom +generalato generalato nom +generale generale adj +generalessa generale|generalessa nom +generali generale adj +generalissimi generalissimo nom +generalissimo generalissimo nom +generalista generalista adj +generalisti generalista adj +generalità generalità nom +generalizia generalizio adj +generalizie generalizio adj +generalizio generalizio adj +generalizza generalizzare ver +generalizzando generalizzare ver +generalizzandola generalizzare ver +generalizzandole generalizzare ver +generalizzandolo generalizzare ver +generalizzandone generalizzare ver +generalizzano generalizzare ver +generalizzante generalizzare ver +generalizzanti generalizzare ver +generalizzare generalizzare ver +generalizzarla generalizzare ver +generalizzarle generalizzare ver +generalizzarlo generalizzare ver +generalizzarne generalizzare ver +generalizzarono generalizzare ver +generalizzarsi generalizzare ver +generalizzata generalizzare ver +generalizzate generalizzato adj +generalizzati generalizzato adj +generalizzato generalizzare ver +generalizzazione generalizzazione nom +generalizzazioni generalizzazione nom +generalizziamo generalizzare ver +generalizzo generalizzare ver +generalizzò generalizzare ver +generalmente generalmente adv_sup +generalo generare ver +generando generare ver +generandogli generare ver +generandole generare ver +generandone generare ver +generandosi generare ver +generano generare ver +generante generare ver +generanti generare ver +generar generare ver +generare generare ver +generargli generare ver +generarla generare ver +generarle generare ver +generarli generare ver +generarlo generare ver +generarmi generare ver +generarne generare ver +generarono generare ver +generarsi generare ver +generasi generare ver +generasse generare ver +generassero generare ver +generata generare ver +generate generare ver +generatesi generare ver +generati generare ver +generativa generativo adj +generative generativo adj +generativi generativo adj +generativo generativo adj +generato generare ver +generatore generatore nom +generatori generatore nom +generatrice generatore adj +generatrici generatore adj +generava generare ver +generavano generare ver +generazionale generazionale adj +generazionali generazionale adj +generazione generazione nom +generazioni generazione nom +genere genere nom +generei genare ver +genereranno generare ver +genererebbe generare ver +genererebbero generare ver +genererà generare ver +genererò generare ver +generi genere|genero nom +generiamo generare ver +generica generico adj +genericamente genericamente adv +generiche generico adj +generici generico adj +genericità genericità nom +generico generico adj +generino generare ver +genero genero nom +generone generone nom +generosa generoso adj +generosamente generosamente adv +generose generoso adj +generosi generoso adj +generosità generosità nom +generoso generoso adj +generà genare ver +generò genare ver +genesi genesi nom +genetica genetico adj +geneticamente geneticamente adv +genetiche genetico adj +genetici genetico adj +genetico genetico adj +genetista genetista nom +genetisti genetista nom +genetliaci genetliaco adj +genetliaco genetliaco adj +genetta genetta nom +genette genetta nom +gengiva gengiva nom +gengivale gengivale adj +gengivali gengivale adj +gengive gengiva nom +gengivite gengivite nom +gengiviti gengivite nom +geni gene|genio nom +genia genia nom +geniale geniale adj +geniali geniale adj +genialità genialità nom +genialoide genialoide nom +genica genico adj +geniche genico adj +genici genico adj +genico genico adj +genie genia nom +geniere geniere nom +genieri geniere nom +genino genare ver +genio genio nom +genitale genitale adj +genitali genitale adj +genitivi genitivo nom +genitivo genitivo nom +genitore genitore nom +genitori genitore nom +gennaio gennaio nom +geno genare ver +genoana genoano adj +genoane genoano adj +genoani genoano adj +genoano genoano adj +genocidi genocidio nom +genocidio genocidio nom +genoma genoma nom +genomi genoma nom +genotipi genotipo nom +genotipo genotipo nom +genotossici genotossico adj +genotossico genotossico adj +genovese genovese adj +genovesi genovese adj +gentaglia gentaglia nom +gente gente nom_sup +genti gente nom +gentildonna gentildonna nom +gentildonne gentildonna nom +gentile gentile adj +gentilezza gentilezza nom +gentilezze gentilezza nom +gentili gentile adj +gentilizi gentilizio adj +gentilizia gentilizio adj +gentilizie gentilizio adj +gentilizio gentilizio adj +gentiluomini gentiluomo nom +gentiluomo gentiluomo nom +gentleman gentleman nom +genuflessione genuflessione nom +genuflessioni genuflessione nom +genuflette genuflettersi ver +genuflettendosi genuflettersi ver +genuflettersi genuflettersi ver +genufletto genuflettersi ver +genuflettono genuflettersi ver +genuina genuino adj +genuinamente genuinamente adv +genuine genuino adj +genuini genuino adj +genuinità genuinità nom +genuino genuino adj +genziana genziana nom +genzianacee genzianacee nom +genziane genziana nom +genzianella genzianella nom +genzianelle genzianella nom +geocentrica geocentrico adj +geocentriche geocentrico adj +geocentrici geocentrico adj +geocentrico geocentrico adj +geocentrismo geocentrismo nom +geochimica geochimica nom +geochimiche geochimica nom +geode geode nom +geodesia geodesia nom +geodesie geodesia nom +geodeta geodeta nom +geodeti geodeta nom +geodetica geodetico adj +geodetiche geodetico adj +geodetici geodetico adj +geodetico geodetico adj +geodi geode nom +geodinamica geodinamica nom +geodinamiche geodinamica nom +geoeconomica geoeconomico adj +geofisica geofisica nom +geofisiche geofisico adj +geofisici geofisico adj +geofisico geofisico adj +geognosia geognosia nom +geognosie geognosia nom +geografa geografo nom +geografi geografo nom +geografia geografia nom +geografica geografico adj +geograficamente geograficamente adv +geografiche geografico adj +geografici geografico adj +geografico geografico adj +geografie geografia nom +geografo geografo nom +geoide geoide nom +geoidi geoide nom +geologa geologo nom +geologi geologo nom +geologia geologia nom +geologica geologico adj +geologiche geologico adj +geologici geologico adj +geologico geologico adj +geologie geologia nom +geologo geologo nom +geomagnetismo geomagnetismo nom +geomanzia geomanzia nom +geometra geometra nom +geometre geometra nom +geometri geometra nom +geometria geometria nom +geometrica geometrico adj +geometricamente geometricamente adv +geometriche geometrico adj +geometrici geometrico adj +geometricità geometricità nom +geometrico geometrico adj +geometrie geometria nom +geomorfologia geomorfologia nom +geomorfologie geomorfologia nom +geopolitica geopolitica nom +geopolitici geopolitico adj +geopolitico geopolitico adj +georgette georgette nom +georgiani georgiano adj +georgica georgico adj +georgiche georgico adj +georgici georgico adj +georgico georgico adj +geosinclinale geosinclinale nom +geostazionari geostazionario adj +geostazionaria geostazionario adj +geostazionarie geostazionario adj +geostazionario geostazionario adj +geostrategiche geostrategico adj +geotecnica geotecnica nom +geotecniche geotecnica nom +geotermia geotermia nom +geotermica geotermico adj +geotermiche geotermico adj +geotermici geotermico adj +geotermico geotermico adj +geotropici geotropico adj +geotropismo geotropismo nom +gerani geranio nom +geraniacee geraniacee nom +geranio geranio nom +gerarca gerarca nom +gerarchi gerarca nom +gerarchia gerarchia nom +gerarchica gerarchico adj +gerarchiche gerarchico adj +gerarchici gerarchico adj +gerarchico gerarchico adj +gerarchie gerarchia nom +gerarchizzata gerarchizzare ver +gerbera gerbera nom +gerbere gerbera nom +geremiade geremiade nom +geremiadi geremiade nom +gerente gerente nom +gerenti gerente nom +gerenza gerenza nom +gerenze gerenza nom +gergale gergale adj +gergali gergale adj +gerghi gergo nom +gergo gergo nom +geria geria nom +geriatra geriatra nom +geriatri geriatra nom +geriatria geriatria nom +geriatrici geriatrico adj +geriatrie geriatria nom +germana germano adj +germane germano adj +germani germano adj +germanica germanico adj +germaniche germanico adj +germanici germanico adj +germanico germanico adj +germanio germanio nom +germanismi germanismo nom +germanismo germanismo nom +germanista germanista nom +germanisti germanista nom +germanistica germanistica nom +germano germano adj +germe germe nom +germi germe nom +germile germile nom +germina germinare ver +germinale germinale nom +germinali germinale nom +germinando germinare ver +germinano germinare ver +germinanti germinare ver +germinare germinare ver +germinarono germinare ver +germinata germinare ver +germinate germinare ver +germinati germinare ver +germinativa germinativo adj +germinative germinativo adj +germinativi germinativo adj +germinativo germinativo adj +germinato germinare ver +germinava germinare ver +germinavano germinare ver +germinazione germinazione nom +germinazioni germinazione nom +germineranno germinare ver +germini germinare ver +germino germinare ver +germinò germinare ver +germogli germoglio nom +germoglia germogliare ver +germogliando germogliare ver +germogliano germogliare ver +germogliante germogliare ver +germoglianti germogliare ver +germogliare germogliare ver +germogliarono germogliare ver +germogliasse germogliare ver +germogliassero germogliare ver +germogliata germogliare ver +germogliate germogliare ver +germogliati germogliare ver +germogliato germogliare ver +germogliava germogliare ver +germogliavano germogliare ver +germoglieranno germogliare ver +germoglierà germogliare ver +germoglino germogliare ver +germoglio germoglio nom +germogliò germogliare ver +gerofante gerofante nom +gerofanti gerofante nom +geroglifica geroglifico adj +geroglifiche geroglifico adj +geroglifici geroglifico nom +geroglifico geroglifico adj +gerontocrazia gerontocrazia nom +gerontologia gerontologia nom +gerosolimitana gerosolimitano adj +gerosolimitane gerosolimitano adj +gerosolimitani gerosolimitano adj +gerosolimitano gerosolimitano adj +gerundi gerundio nom +gerundio gerundio nom +gerundivo gerundivo nom +gessa gessare ver +gessai gessare ver +gessata gessato adj +gessate gessato adj +gessatesi gessare ver +gessati gessato adj +gessato gessato adj +gessatura gessatura nom +gessetti gessetto nom +gessetto gessetto nom +gessi gesso nom +gesso gesso nom +gessosa gessoso adj +gessose gessoso adj +gessosi gessoso adj +gessoso gessoso adj +gesta gesta|gesto nom +gestante gestante nom +gestanti gestante nom +gestatoria gestatorio adj +gestazione gestazione nom +gestazioni gestazione nom +gestendo gestire ver +gestendola gestire ver +gestendole gestire ver +gestendoli gestire ver +gestendolo gestire ver +gestendone gestire ver +gestente gestire ver +gesti gesto nom +gestiamo gestire ver +gesticola gesticolare ver +gesticolando gesticolare ver +gesticolano gesticolare ver +gesticolanti gesticolare ver +gesticolare gesticolare ver +gesticolava gesticolare ver +gestii gestire ver +gestionale gestionale adj +gestionali gestionale adj +gestione gestione nom +gestioni gestione nom +gestiranno gestire ver +gestirci gestire ver +gestire gestire ver +gestirebbe gestire ver +gestirebbero gestire ver +gestiremo gestire ver +gestirete gestire ver +gestirla gestire ver +gestirle gestire ver +gestirli gestire ver +gestirlo gestire ver +gestirmi gestire ver +gestirne gestire ver +gestirono gestire ver +gestirsi gestire ver +gestirà gestire ver +gestisca gestire ver +gestiscano gestire ver +gestisce gestire ver +gestisci gestire ver +gestisco gestire ver +gestiscono gestire ver +gestisse gestire ver +gestissero gestire ver +gestissi gestire ver +gestiste gestire ver +gestita gestire ver +gestite gestire ver +gestitevela gestire ver +gestitevelo gestire ver +gestiti gestire ver +gestito gestire ver +gestiva gestire ver +gestivano gestire ver +gesto gesto nom +gestore gestore nom +gestori gestore nom +gestuale gestuale adj +gestuali gestuale adj +gestì gestire ver +gesuita gesuita nom +gesuiti gesuita nom +gesuitica gesuitico adj +gesuitiche gesuitico adj +gesuitici gesuitico adj +gesuitico gesuitico adj +gesuitismi gesuitismo nom +gesuitismo gesuitismo nom +getta gettare ver +gettai gettare ver +gettalo gettare ver +gettando gettare ver +gettandogli gettare ver +gettandola gettare ver +gettandole gettare ver +gettandoli gettare ver +gettandolo gettare ver +gettandomi gettare ver +gettandone gettare ver +gettandosi gettare ver +gettandovi gettare ver +gettane gettare ver +gettano gettare ver +gettante gettare ver +gettanti gettare ver +gettar gettare ver +gettarci gettare ver +gettare gettare ver +gettargli gettare ver +gettarla gettare ver +gettarle gettare ver +gettarli gettare ver +gettarlo gettare ver +gettarmi gettare ver +gettarne gettare ver +gettarono gettare ver +gettarsi gettare ver +gettarvi gettare ver +gettasse gettare ver +gettassero gettare ver +gettata gettare ver +gettate gettare ver +gettategli gettare ver +gettatelo gettare ver +gettatevi gettare ver +gettati gettare ver +gettato gettare ver +gettava gettare ver +gettavano gettare ver +gettavo gettare ver +getterai gettare ver +getteranno gettare ver +getterebbe gettare ver +getterebbero gettare ver +getteremo gettare ver +getterà gettare ver +getterò gettare ver +getti getto nom +gettiamo gettare ver +gettiamoci gettare ver +gettiamola gettare ver +gettino gettare ver +gettiti gettito nom +gettito gettito nom +getto getto nom +gettonata gettonare ver +gettonate gettonare ver +gettonati gettonare ver +gettonato gettonare ver +gettone gettone nom +gettoni gettone nom +gettoniera gettoniera nom +gettono gettonare ver +gettosostentazione gettosostentazione nom +gettò gettare ver +geyser geyser nom +ghenga ghenga nom +ghepardi ghepardo nom +ghepardo ghepardo nom +gheppi gheppio nom +gheppio gheppio nom +gherigli gheriglio nom +gheriglio gheriglio nom +gherminelle gherminella nom +ghermire ghermire ver +ghermirle ghermire ver +ghermirli ghermire ver +ghermirlo ghermire ver +ghermisce ghermire ver +ghermiscono ghermire ver +ghermita ghermire ver +ghermiti ghermire ver +ghermito ghermire ver +ghermiva ghermire ver +ghermì ghermire ver +gheronati gheronato nom +gheronato gheronato nom +gherone gherone nom +gheroni gherone nom +ghetta ghetta nom +ghette ghetta nom +ghetti ghetto nom +ghettizza ghettizzare ver +ghettizzando ghettizzare ver +ghettizzante ghettizzare ver +ghettizzanti ghettizzare ver +ghettizzare ghettizzare ver +ghettizzarli ghettizzare ver +ghettizzarsi ghettizzare ver +ghettizzata ghettizzare ver +ghettizzate ghettizzare ver +ghettizzati ghettizzare ver +ghettizzato ghettizzare ver +ghettizzazione ghettizzazione nom +ghetto ghetto nom +ghiacci ghiaccio nom +ghiaccia ghiacciare ver +ghiacciai ghiacciaio nom +ghiacciaia ghiacciaia|ghiacciaio nom +ghiacciaie ghiacciaia|ghiacciaio nom +ghiacciaio ghiacciaio nom +ghiacciale ghiacciare ver +ghiacciando ghiacciare ver +ghiacciandosi ghiacciare ver +ghiacciano ghiacciare ver +ghiacciare ghiacciare ver +ghiacciarono ghiacciare ver +ghiacciarsi ghiacciare ver +ghiacciata ghiacciato adj +ghiacciate ghiacciato adj +ghiacciati ghiacciato adj +ghiacciato ghiacciato adj +ghiacciava ghiacciare ver +ghiacciavano ghiacciare ver +ghiaccino ghiacciare ver +ghiaccio ghiaccio nom +ghiaccioli ghiacciolo nom +ghiacciolo ghiacciolo nom +ghiacciò ghiacciare ver +ghiaia ghiaia nom +ghiaiata ghiaiata nom +ghiaie ghiaia nom +ghiaione ghiaione nom +ghiaioni ghiaione nom +ghiaiosa ghiaioso adj +ghiaiose ghiaioso adj +ghiaiosi ghiaioso adj +ghiaioso ghiaioso adj +ghianda ghianda nom +ghiandaia ghiandaia nom +ghiandaie ghiandaia nom +ghiande ghianda nom +ghiandola ghiandola nom +ghiandole ghiandola nom +ghibellina ghibellino adj +ghibelline ghibellino adj +ghibellini ghibellino adj +ghibellinismo ghibellinismo nom +ghibellino ghibellino adj +ghibli ghibli nom +ghiera ghiera nom +ghiere ghiera nom +ghigliottina ghigliottina nom +ghigliottinare ghigliottinare ver +ghigliottinarlo ghigliottinare ver +ghigliottinata ghigliottinare ver +ghigliottinate ghigliottinare ver +ghigliottinati ghigliottinare ver +ghigliottinato ghigliottinare ver +ghigliottine ghigliottina nom +ghigna ghigna nom +ghignando ghignare ver +ghignano ghignare ver +ghignante ghignare ver +ghignanti ghignare ver +ghignare ghignare ver +ghignava ghignare ver +ghigni ghigno nom +ghignino ghignare ver +ghigno ghigno nom +ghignò ghignare ver +ghinea ghinea nom +ghinee ghinea nom +ghiotta ghiotto adj +ghiotte ghiotto adj +ghiotti ghiotto adj +ghiotto ghiotto adj +ghiottone ghiottone nom +ghiottoneria ghiottoneria nom +ghiottonerie ghiottoneria nom +ghiottoni ghiottone nom +ghiozzi ghiozzo nom +ghiozzo ghiozzo nom +ghirba ghirba nom +ghiri ghiro nom +ghiribizzi ghiribizzo nom +ghiribizzo ghiribizzo nom +ghirigori ghirigoro nom +ghirigoro ghirigoro nom +ghirlanda ghirlanda nom +ghirlande ghirlanda nom +ghiro ghiro nom +ghironda ghironda nom +ghironde ghironda nom +gi gi nom_sup +gia gia sw +giacca giacca nom +giacche giacca nom +giacchetta giacchetta nom +giacchette giacchetta nom +giacchi giacchio nom +giacchio giacchio nom +giacchè giacchè con +giacché giacché con +giaccia giacere ver +giacciamo giacere ver +giacciano giacere ver +giaccio giacere ver +giacciono giacere ver +giaccone giaccone nom +giacconi giaccone nom +giace giacere ver +giacendo giacere ver +giacente giacente adj +giacenti giacente adj +giacenza giacenza nom +giacenze giacenza nom +giacer giacere ver +giacerai giacere ver +giaceranno giacere ver +giacere giacere ver +giacerebbe giacere ver +giacerebbero giacere ver +giaceresti giacere ver +giacersi giacere ver +giacerà giacere ver +giacerò giacere ver +giacesse giacere ver +giacesti giacere ver +giaceva giacere ver +giacevano giacere ver +giacevo giacere ver +giachi giaco nom +giaci giacere ver +giacigli giaciglio nom +giaciglio giaciglio nom +giacimenti giacimento nom +giacimento giacimento nom +giacinti giacinto nom +giacinto giacinto nom +giacitura giacitura nom +giaciture giacitura nom +giaciuta giacere ver +giaciuto giacere ver +giaco giaco nom +giacobini giacobino nom +giacobinismo giacobinismo nom +giacobino giacobino nom +giacque giacere ver +giacquero giacere ver +giaculatoria giaculatoria nom +giaculatorie giaculatoria nom +giada giada nom +giade giada nom +giaggioli giaggiolo nom +giaggiolo giaggiolo nom +giaguari giaguaro nom +giaguaro giaguaro nom +giaietto giaietto nom +gialappa gialappa nom +gialla giallo adj +giallastra giallastro adj +giallastre giallastro adj +giallastri giallastro adj +giallastro giallastro adj +gialle giallo adj +gialli giallo adj +giallicce gialliccio adj +giallicci gialliccio adj +gialliccia gialliccio adj +gialliccio gialliccio adj +giallo giallo adj +giallognola giallognolo adj +giallognole giallognolo adj +giallognoli giallognolo adj +giallognolo giallognolo adj +giallorosa giallorosa adj +giallume giallume nom +giamaicana giamaicano adj +giamaicane giamaicano adj +giamaicani giamaicano adj +giamaicano giamaicano adj +giambi giambo nom +giambica giambico adj +giambiche giambico adj +giambici giambico adj +giambico giambico adj +giambo giambo nom +giammai giammai adv +giamo gire ver +gianduia gianduia nom +giannizzeri giannizzero nom +giannizzero giannizzero nom +giansenismo giansenismo nom +giansenista giansenista nom +gianseniste giansenista nom +giansenisti giansenista nom +giapponese giapponese adj +giapponeseria giapponeseria nom +giapponeserie giapponeseria nom +giapponesi giapponese adj +giara giara nom +giardinaggio giardinaggio nom +giardinetta giardinetta nom +giardinette giardinetta nom +giardinetti giardinetto nom +giardinetto giardinetto nom +giardini giardino nom +giardiniera giardiniera adj +giardiniere giardiniera nom +giardino giardino nom +giare giara nom +giarrettiera giarrettiera nom +giarrettiere giarrettiera nom +giavellotti giavellotto nom +giavellotto giavellotto nom +gibbi gibbo nom +gibbo gibbo nom +gibbone gibbone nom +gibboni gibbone nom +gibbosa gibboso adj +gibbose gibboso adj +gibbosi gibboso adj +gibbosità gibbosità nom +gibboso gibboso adj +giberna giberna nom +giberne giberna nom +gibigiana gibigiana nom +gibus gibus nom +giga giga nom +gigante gigante adj +giganteggia giganteggiare ver +giganteggiando giganteggiare ver +giganteggiano giganteggiare ver +giganteggiare giganteggiare ver +giganteggiava giganteggiare ver +giganteggiavano giganteggiare ver +giganteggiò giganteggiare ver +gigantesca gigantesco adj +gigantesche gigantesco adj +giganteschi gigantesco adj +gigantesco gigantesco adj +gigantessa gigante nom +gigantesse gigante nom +giganti gigante adj +gigantismo gigantismo nom +gigaro gigaro nom +gighe giga nom +gigione gigione nom +gigionesca gigionesco adj +gigionesche gigionesco adj +gigionesco gigionesco adj +gigioni gigione nom +gigli giglio nom +gigliacee gigliaceo adj +gigliata gigliato adj +gigliate gigliato adj +gigliati gigliato adj +gigliato gigliato adj +giglio giglio nom +gigliucci gigliuccio nom +gigliuccio gigliuccio nom +gigolette gigolette nom +gigolo gigolo nom +gii gire ver +gilda gilda nom +gilde gilda nom +gillette gillette nom +gilè gilè nom +gimcana gimcana nom +gimcane gimcana nom +gimkana gimkana nom +gimkane gimkana nom +gimmo gire ver +gimnosperme gimnosperme nom +gimnoto gimnoto nom +gin gin nom +gincana gincana nom +gincane gincana nom +ginecologa ginecologo nom +ginecologi ginecologo nom +ginecologia ginecologia nom +ginecologica ginecologico adj +ginecologiche ginecologico adj +ginecologici ginecologico adj +ginecologico ginecologico adj +ginecologo ginecologo nom +gineprai ginepraio nom +ginepraio ginepraio nom +ginepri ginepro nom +ginepro ginepro nom +ginestra ginestra nom +ginestre ginestra nom +gingilla gingillare ver +gingillano gingillare ver +gingillarci gingillare ver +gingillarsi gingillare ver +gingilli gingillo nom +gingillo gingillo nom +ginkgo ginkgo nom +ginnasi ginnasio nom +ginnasiale ginnasiale adj +ginnasiali ginnasiale adj +ginnasio ginnasio nom +ginnasta ginnasta nom +ginnaste ginnasta nom +ginnasti ginnasta nom +ginnastica ginnastico adj +ginnastiche ginnastico adj +ginnastici ginnastico adj +ginnastico ginnastico adj +ginnica ginnico adj +ginniche ginnico adj +ginnici ginnico adj +ginnico ginnico adj +ginocchia ginocchio nom +ginocchiata ginocchiata nom +ginocchiate ginocchiata nom +ginocchielli ginocchiello nom +ginocchiello ginocchiello nom +ginocchio ginocchio nom +ginocchioni ginocchioni adv +gioca giocare ver +giocai giocare ver +giocala giocare ver +giocando giocare ver +giocandoci giocare ver +giocandogli giocare ver +giocandola giocare ver +giocandole giocare ver +giocandolo giocare ver +giocandone giocare ver +giocandosela giocare ver +giocandosi giocare ver +giocandovi giocare ver +giocane giocare ver +giocano giocare ver +giocante giocare ver +giocanti giocare ver +giocar giocare ver +giocarci giocare ver +giocare giocare ver +giocargli giocare ver +giocarla giocare ver +giocarle giocare ver +giocarli giocare ver +giocarlo giocare ver +giocarmi giocare ver +giocarne giocare ver +giocarono giocare ver +giocarsela giocare ver +giocarselo giocare ver +giocarsi giocare ver +giocarti giocare ver +giocarvi giocare ver +giocasi giocare ver +giocasse giocare ver +giocassero giocare ver +giocata giocare ver +giocate giocata nom +giocatesi giocare ver +giocati giocare ver +giocato giocare ver +giocatore giocatore nom +giocatori giocatore nom +giocatrice giocatore nom +giocatrici giocatore nom +giocattoli giocattolo nom +giocattolo giocattolo nom +giocava giocare ver +giocavamo giocare ver +giocavano giocare ver +giocavi giocare ver +giocavo giocare ver +giocheranno giocare ver +giocherebbe giocare ver +giocherebbero giocare ver +giocherei giocare ver +giocherella giocherellare ver +giocherellando giocherellare ver +giocherellano giocherellare ver +giocherellare giocherellare ver +giocherellato giocherellare ver +giocherellava giocherellare ver +giocherellerà giocherellare ver +giocherelli giocherellare ver +giocherello giocherellare ver +giocherellone giocherellone nom +giocherelloni giocherellone nom +giocheremo giocare ver +giocherete giocare ver +giocherà giocare ver +giocherò giocare ver +giochetti giochetto nom +giochetto giochetto nom +giochi gioco nom +giochiamo giocare ver +giochino giocare ver +gioco gioco nom +giocoforza giocoforza nom +giocoliera giocoliere nom +giocoliere giocoliere nom +giocolieri giocoliere nom +gioconda giocondo adj +gioconde giocondo adj +giocondi giocondo adj +giocondità giocondità nom +giocondo giocondo adj +giocosa giocoso adj +giocose giocoso adj +giocosi giocoso adj +giocosità giocosità nom +giocoso giocoso adj +giocò giocare ver +gioendo gioire ver +gioendone gioire ver +giogaia giogaia nom +giogaie giogaia nom +gioghi giogo nom +giogo giogo nom +gioia gioia nom +gioiamo gioire ver +gioie gioia nom +gioielleria gioielleria nom +gioiellerie gioielleria nom +gioielli gioiello nom +gioielliere gioielliere nom +gioiellieri gioielliere nom +gioiello gioiello nom +gioiosa gioioso adj +gioiose gioioso adj +gioiosi gioioso adj +gioioso gioioso adj +gioir gioire ver +gioiranno gioire ver +gioire gioire ver +gioirne gioire ver +gioirono gioire ver +gioirà gioire ver +gioisca gioire ver +gioiscano gioire ver +gioisce gioire ver +gioisci gioire ver +gioisco gioire ver +gioiscono gioire ver +gioite gioire ver +gioito gioire ver +gioiva gioire ver +gioivano gioire ver +giordana giordano adj +giordane giordano adj +giordani giordano adj +giordano giordano adj +giorgina giorgina nom +giornalaia giornalaio nom +giornalaio giornalaio nom +giornale giornale nom +giornaletti giornaletto nom +giornaletto giornaletto nom +giornali giornale nom +giornaliera giornaliero adj +giornaliere giornaliero adj +giornalieri giornaliero adj +giornaliero giornaliero adj +giornalini giornalino nom +giornalino giornalino nom +giornalismo giornalismo nom +giornalista giornalista nom +giornaliste giornalista nom +giornalisti giornalista nom +giornalistica giornalistico adj +giornalistiche giornalistico adj +giornalistici giornalistico adj +giornalistico giornalistico adj +giornalmastro giornalmastro nom +giornalmente giornalmente adv +giornata giornata nom +giornate giornata nom +giornea giornea nom +giorni giorno nom +giorno giorno nom +giostra giostra nom +giostrai giostrare ver +giostrando giostrare ver +giostrano giostrare ver +giostrante giostrare ver +giostranti giostrare ver +giostrarci giostrare ver +giostrare giostrare ver +giostrarmi giostrare ver +giostrarsi giostrare ver +giostrate giostrare ver +giostrati giostrare ver +giostrato giostrare ver +giostratore giostratore nom +giostratori giostratore nom +giostrava giostrare ver +giostre giostra nom +giostrò giostrare ver +giova giovare ver +giovai giovare ver +giovale giovare ver +giovali giovare ver +giovamenti giovamento nom +giovamento giovamento nom +giovando giovare ver +giovandosi giovare ver +giovane giovane adj +giovanetti giovanetto nom +giovanetto giovanetto nom +giovani giovane adj +giovanile giovanile adj +giovanili giovanile adj +giovanilismo giovanilismo nom +giovannea giovanneo adj +giovannee giovanneo adj +giovannei giovanneo adj +giovanneo giovanneo adj +giovano giovare ver +giovanotti giovanotto nom +giovanotto giovanotto nom +giovante giovare ver +giovarci giovare ver +giovare giovare ver +giovargli giovare ver +giovarne giovare ver +giovarono giovare ver +giovarsene giovare ver +giovarsi giovare ver +giovarti giovare ver +giovasse giovare ver +giovassero giovare ver +giovata giovare ver +giovate giovare ver +giovati giovare ver +giovato giovare ver +giovava giovare ver +giovavano giovare ver +giove Giove nom +giovedì giovedì nom +giovenca giovenca|giovenco nom +giovenche giovenca|giovenco nom +giovenchi giovenco nom +giovenco giovenco nom +gioventù gioventù nom +gioveranno giovare ver +gioverebbe giovare ver +gioverebbero giovare ver +gioverà giovare ver +giovevole giovevole adj +giovevoli giovevole adj +giovi giovare ver +gioviale gioviale adj +gioviali gioviale adj +giovialità giovialità nom +giovinastri giovinastro nom +giovinastro giovinastro nom +giovine giovine adj +giovinetti giovinetto nom +giovinetto giovinetto nom +giovinezza giovinezza nom +giovinezze giovinezza nom +giovini giovine adj +giovino giovare ver +giovo giovare ver +giovò giovare ver +gioì gioire ver +gippone gippone nom +gipponi gippone nom +gipsoteca gipsoteca nom +gir gire ver +gira girare ver +girabile girabile adj +girabili girabile adj +giraci girare ver +giradischi giradischi nom +giradito giradito nom +giraffa giraffa nom +giraffe giraffa nom +girai gire ver +girala girare ver +girale girare ver +girali girare ver +giralo girare ver +giramenti giramento nom +giramento giramento nom +girami girare ver +girammo girare ver +giramondo giramondo nom +girando girare ver +girandoci girare ver +girandogli girare ver +girandola girandola nom +girandole girare ver +girandoli girare ver +girandolo girare ver +girandolone girandolone nom +girandone girare ver +girandosi girare ver +girano girare ver +girante girante nom +giranti girante nom +girar girare ver +girarcela girare ver +girarci girare ver +girare girare ver +girargli girare ver +girarla girare ver +girarle girare ver +girarli girare ver +girarlo girare ver +girarmela girare ver +girarmi girare ver +girarne girare ver +girarono girare ver +girarrosto girarrosto nom +girarsi girare ver +girarti girare ver +girarvi girare ver +girasi girare ver +girasole girasole nom +girasoli girasole nom +girasse girare ver +girassero girare ver +girassi girare ver +girata girare ver +giratari giratario nom +giratario giratario nom +girate girare ver +girategli girare ver +giratela girare ver +giratevi girare ver +girati girare ver +girato girare ver +giratori giratorio adj +giratoria giratorio adj +girava girare ver +giravamo girare ver +giravano girare ver +giravi girare ver +giravo girare ver +giravolta giravolta nom +giravolte giravolta nom +gire gire ver +girei gire ver +girella girella nom +girellando girellare ver +girellare girellare ver +girelle girella nom +girelli girello nom +girello girello nom +girellone girellone nom +gireranno girare ver +girerebbe girare ver +girerebbero girare ver +girerei girare ver +gireremo girare ver +girerà girare ver +girerò girare ver +giretti giretto nom +giretto giretto nom +girevole girevole adj +girevoli girevole adj +giri giro nom +giriamo girare ver +giriamoci girare ver +girifalchi girifalco nom +girifalco girifalco nom +girini girino nom +girino girino nom +girl girl nom +girle gire ver +girmi gire ver +girne gire ver +giro giro nom +girobussola girobussola nom +girobussole girobussola nom +girocolli girocollo nom +girocollo girocollo nom +girone girone nom +gironi girone nom +girono gire ver +gironzola gironzolare ver +gironzolando gironzolare ver +gironzolano gironzolare ver +gironzolare gironzolare ver +gironzolava gironzolare ver +gironzolavano gironzolare ver +gironzolo gironzolare ver +giroscopi giroscopio nom +giroscopica giroscopico adj +giroscopiche giroscopico adj +giroscopici giroscopico adj +giroscopico giroscopico adj +giroscopio giroscopio nom +girotondi girotondo nom +girotondo girotondo nom +girovaga girovago adj +girovagando girovagare ver +girovagano girovagare ver +girovagante girovagare ver +girovaganti girovagare ver +girovagare girovagare ver +girovagarono girovagare ver +girovagato girovagare ver +girovagava girovagare ver +girovagavano girovagare ver +girovaghe girovago adj +girovaghi girovago adj +girovago girovago adj +girovagò girovagare ver +girà gire ver +girò gire ver +gisci gire ver +gisco gire ver +gisse gire ver +gissi gire ver +gisti gire ver +gita gita nom +gitana gitano adj +gitane gitano adj +gitani gitano nom +gitano gitano adj +gitante gitante nom +gitanti gitante nom +gite gita nom +giti gire ver +gito gire ver +gittata gittata nom +gittate gittata nom +giu giu sw +giubba giubba nom +giubbe giubba nom +giubbetti giubbetto nom +giubbetto giubbetto nom +giubbone giubbone nom +giubbotti giubbotto nom +giubbotto giubbotto nom +giubila giubilare ver +giubilante giubilare ver +giubilanti giubilare ver +giubilare giubilare ver +giubilata giubilare ver +giubilate giubilare ver +giubilati giubilare ver +giubilato giubilare ver +giubilei giubileo nom +giubileo giubileo nom +giubilo giubilo nom +giuda giuda nom +giudaica giudaico adj +giudaiche giudaico adj +giudaici giudaico adj +giudaico giudaico adj +giudaismi giudaismo nom +giudaismo giudaismo nom +giudea giudeo nom +giudecca giudecca nom +giudecche giudecca nom +giudee giudeo adj +giudei giudeo nom +giudeo giudeo adj +giudi giuda nom +giudica giudicare ver +giudicabile giudicabile adj +giudicabili giudicabile adj +giudicai giudicare ver +giudicale giudicare ver +giudicali giudicare ver +giudicami giudicare ver +giudicammo giudicare ver +giudicando giudicare ver +giudicandola giudicare ver +giudicandole giudicare ver +giudicandoli giudicare ver +giudicandolo giudicare ver +giudicandone giudicare ver +giudicandosi giudicare ver +giudicano giudicare ver +giudicante giudicare ver +giudicanti giudicare ver +giudicar giudicare ver +giudicarci giudicare ver +giudicare giudicare ver +giudicarla giudicare ver +giudicarle giudicare ver +giudicarli giudicare ver +giudicarlo giudicare ver +giudicarmi giudicare ver +giudicarne giudicare ver +giudicarono giudicare ver +giudicarsi giudicare ver +giudicarti giudicare ver +giudicarvi giudicare ver +giudicasse giudicare ver +giudicassero giudicare ver +giudicassi giudicare ver +giudicassimo giudicare ver +giudicaste giudicare ver +giudicata giudicare ver +giudicate giudicare ver +giudicatela giudicare ver +giudicatemi giudicare ver +giudicati giudicare ver +giudicato giudicare ver +giudicatore giudicatore nom +giudicatrice giudicatore adj +giudicatrici giudicatore adj +giudicava giudicare ver +giudicavano giudicare ver +giudicavo giudicare ver +giudice giudice nom +giudicherai giudicare ver +giudicheranno giudicare ver +giudicherebbe giudicare ver +giudicherebbero giudicare ver +giudicherei giudicare ver +giudicheremmo giudicare ver +giudicheremo giudicare ver +giudicheresti giudicare ver +giudicherete giudicare ver +giudicherà giudicare ver +giudicherò giudicare ver +giudichi giudicare ver +giudichiamo giudicare ver +giudichiamolo giudicare ver +giudichiate giudicare ver +giudichino giudicare ver +giudici giudice nom +giudico giudicare ver +giudicò giudicare ver +giudizi giudizio nom +giudiziale giudiziale adj +giudiziali giudiziale adj +giudiziari giudiziario adj +giudiziaria giudiziario adj +giudiziariamente giudiziariamente adv +giudiziarie giudiziario adj +giudiziario giudiziario adj +giudizio giudizio nom +giudiziosa giudizioso adj +giudiziose giudizioso adj +giudiziosi giudizioso adj +giudizioso giudizioso adj +giudo giudo nom +giuggiola giuggiola nom +giuggiole giuggiola nom +giuggioli giuggiolo nom +giuggiolo giuggiolo nom +giuggiolone giuggiolone nom +giuggioloni giuggiolone nom +giugno giugno nom +giugulare giugulare ver +giugulo giugulo nom +giulebbare giulebbare ver +giulebbe giulebbe nom +giulebbi giulebbe nom +giuliana giuliano adj +giuliane giuliano adj +giuliani giuliano adj +giuliano giuliano adj +giuliva giulivo adj +giulive giulivo adj +giulivi giulivo adj +giulivo giulivo adj +giullare giullare nom +giullaresca giullaresco adj +giullaresche giullaresco adj +giullareschi giullaresco adj +giullaresco giullaresco adj +giullari giullare nom +giumella giumella nom +giumenta giumenta|giumento nom +giumente giumenta|giumento nom +giumenti giumento nom +giumento giumento nom +giunca giunca nom +giuncacee giuncacee nom +giuncata giuncata nom +giuncate giuncata nom +giunche giunca nom +giunchi giunco nom +giunchiglia giunchiglia nom +giunchiglie giunchiglia nom +giunco giunco nom +giunga giungere ver +giungano giungere ver +giunge giungere ver +giungemmo giungere ver +giungendo giungere ver +giungendone giungere ver +giungendosi giungere ver +giungendovi giungere ver +giungente giungere ver +giungenti giungere ver +giunger giungere ver +giungerai giungere ver +giungeranno giungere ver +giungerci giungere ver +giungere giungere ver +giungerebbe giungere ver +giungerebbero giungere ver +giungeremo giungere ver +giungerete giungere ver +giungergli giungere ver +giungerle giungere ver +giungerne giungere ver +giungervi giungere ver +giungerà giungere ver +giungerò giungere ver +giungesse giungere ver +giungessero giungere ver +giungesti giungere ver +giungete giungere ver +giungeva giungere ver +giungevano giungere ver +giungi giungere ver +giungiamo giungere ver +giungla giungla nom +giungle giungla nom +giungo giungere ver +giungono giungere ver +giunone giunone nom +giunonica giunonico adj +giunoniche giunonico adj +giunonico giunonico adj +giunse giungere ver +giunsero giungere ver +giunsi giungere ver +giunta giungere ver +giuntatrice giuntatrice nom +giunte giungere ver +giunti giungere ver +giunto giungere ver +giuntura giuntura nom +giunture giuntura nom +giunzione giunzione nom +giunzioni giunzione nom +giura giurare ver +giuragli giurare ver +giurai giurare ver +giuramenti giuramento nom +giuramento giuramento nom +giurami giurare ver +giurammo giurare ver +giurando giurare ver +giurandogli giurare ver +giurandole giurare ver +giurandosi giurare ver +giurano giurare ver +giurante giurare ver +giuranti giurare ver +giurar giurare ver +giurarci giurare ver +giurare giurare ver +giurargli giurare ver +giurarle giurare ver +giurarlo giurare ver +giurarono giurare ver +giurarsi giurare ver +giurarti giurare ver +giurarvi giurare ver +giurasse giurare ver +giurassero giurare ver +giurassi giurare ver +giurassici giurassico nom +giurassico giurassico nom +giurata giurato adj +giurate giurare ver +giuratemi giurare ver +giurati giurato nom +giurato giurare ver +giurava giurare ver +giuravano giurare ver +giuravo giurare ver +giure giure nom +giureconsulti giureconsulto nom +giureconsulto giureconsulto nom +giureranno giurare ver +giurerebbe giurare ver +giurerei giurare ver +giurerà giurare ver +giurerò giurare ver +giuri giure|giuro nom +giuria giuria nom +giuriamo giurare ver +giuridica giuridico adj +giuridicamente giuridicamente adv +giuridiche giuridico adj +giuridici giuridico adj +giuridicità giuridicità nom +giuridico giuridico adj +giurie giuria nom +giurino giurare ver +giurisdizionale giurisdizionale adj +giurisdizionali giurisdizionale adj +giurisdizionalismo giurisdizionalismo nom +giurisdizionalista giurisdizionalista nom +giurisdizionaliste giurisdizionalista nom +giurisdizionalisti giurisdizionalista nom +giurisdizione giurisdizione nom +giurisdizioni giurisdizione nom +giurisperiti giurisperito nom +giurisperito giurisperito nom +giurisprudenza giurisprudenza nom +giurisprudenze giurisprudenza nom +giurisprudenziale giurisprudenziale adj +giurisprudenziali giurisprudenziale adj +giurista giurista nom +giuriste giurista nom +giuristi giurista nom +giuro giuro nom +giurì giurì nom +giurò giurare ver +giusquiamo giusquiamo nom +giusta giusto adj +giustacuore giustacuore nom +giustamente giustamente adv +giustappone giustapporre ver +giustapponendo giustapporre ver +giustapponendole giustapporre ver +giustapponendoli giustapporre ver +giustapponendosi giustapporre ver +giustapponendovi giustapporre ver +giustappongono giustapporre ver +giustapporre giustapporre ver +giustapporsi giustapporre ver +giustapposizione giustapposizione nom +giustapposizioni giustapposizione nom +giustapposta giustapporre ver +giustapposte giustapporre ver +giustapposti giustapporre ver +giustapposto giustapporre ver +giuste giusto adj +giustezza giustezza nom +giusti giusto adj +giustifica giustificare ver +giustificabile giustificabile adj +giustificabili giustificabile adj +giustificabilità giustificabilità nom +giustificando giustificare ver +giustificandoci giustificare ver +giustificandola giustificare ver +giustificandole giustificare ver +giustificandoli giustificare ver +giustificandolo giustificare ver +giustificandone giustificare ver +giustificandosi giustificare ver +giustificandoti giustificare ver +giustificano giustificare ver +giustificante giustificare ver +giustificanti giustificare ver +giustificare giustificare ver +giustificarla giustificare ver +giustificarle giustificare ver +giustificarli giustificare ver +giustificarlo giustificare ver +giustificarmi giustificare ver +giustificarne giustificare ver +giustificarono giustificare ver +giustificarsi giustificare ver +giustificarti giustificare ver +giustificarvi giustificare ver +giustificasse giustificare ver +giustificassero giustificare ver +giustificata giustificare ver +giustificate giustificare ver +giustificati giustificare ver +giustificativa giustificativo adj +giustificative giustificativo adj +giustificativi giustificativo adj +giustificativo giustificativo adj +giustificato giustificare ver +giustificava giustificare ver +giustificavano giustificare ver +giustificazione giustificazione nom +giustificazioni giustificazione nom +giustificheranno giustificare ver +giustificherebbe giustificare ver +giustificherebbero giustificare ver +giustificherei giustificare ver +giustificherà giustificare ver +giustifichi giustificare ver +giustifichiamo giustificare ver +giustifichino giustificare ver +giustifico giustificare ver +giustificò giustificare ver +giustizia giustizia nom +giustiziali giustiziare ver +giustiziando giustiziare ver +giustiziandoli giustiziare ver +giustiziandolo giustiziare ver +giustiziandone giustiziare ver +giustiziano giustiziare ver +giustiziare giustiziare ver +giustiziarla giustiziare ver +giustiziarli giustiziare ver +giustiziarlo giustiziare ver +giustiziarono giustiziare ver +giustiziarsi giustiziare ver +giustiziata giustiziare ver +giustiziate giustiziato adj +giustiziateli giustiziare ver +giustiziatemi giustiziare ver +giustiziati giustiziare ver +giustiziato giustiziare ver +giustiziava giustiziare ver +giustizie giustizia nom +giustizieranno giustiziare ver +giustiziere giustiziere nom +giustizieremo giustiziare ver +giustizieri giustiziere nom +giustizierà giustiziare ver +giustiziò giustiziare ver +giusto giusto adj +giva gire ver +givi gire ver +givo gire ver +già già adv_sup +giù giù adv_sup +glabra glabro adj +glabre glabro adj +glabri glabro adj +glabro glabro adj +glaciale glaciale adj +glaciali glaciale adj +glaciazione glaciazione nom +glaciazioni glaciazione nom +glacé glacé adj +gladi gladio nom +gladiatore gladiatore nom +gladiatori gladiatore nom +gladiatoria gladiatorio adj +gladiatorie gladiatorio adj +gladiatorio gladiatorio adj +gladio gladio nom +gladioli gladiolo nom +gladiolo gladiolo nom +glande glande nom +glandi glande nom +glandole glandola nom +glasnost glasnost nom +glassa glassa nom +glasse glassa nom +glauca glauco adj +glauche glauco adj +glauchi glauco adj +glauco glauco adj +glaucoma glaucoma nom +glaucomi glaucoma nom +gleba gleba nom +glebe gleba nom +glena glene nom +glene glene nom +gli il det +glia glia nom +glicemia glicemia nom +glicemica glicemico adj +glicemiche glicemico adj +glicemici glicemico adj +glicemico glicemico adj +gliceride gliceride nom +gliceridi gliceride nom +glicerina glicerina nom +glicerofosfato glicerofosfato nom +glicidi glicide nom +glicine glicine nom +glicini glicine nom +glicogeno glicogeno nom +glicol glicol nom +glicole glicole nom +glicoli glicole nom +glicosuria glicosuria nom +glie glia nom +gliel gliel sw +gliela gliela pro +gliele gliele pro +glieli glieli pro +glielo glielo pro +gliene gliene pro +gliere torre ver +glifi glifo nom +glifo glifo nom +glissa glissare ver +glissandi glissando nom +glissando glissare ver +glissante glissare ver +glissare glissare ver +glissata glissare ver +glissate glissare ver +glissati glissare ver +glissato glissare ver +glisserei glissare ver +glissi glissare ver +glissiamo glissare ver +glisso glissare ver +glissò glissare ver +glittica glittica nom +glittoteca glittoteca nom +globale globale adj +globali globale adj +globalità globalità nom +globalizzante globalizzare ver +globalizzata globalizzato adj +globalizzato globalizzato adj +globalizzazione globalizzazione nom +globalmente globalmente adv +globi globo nom +globigerine globigerine nom +globina globina nom +globine globina nom +globo globo nom +globulare globulare adj +globulari globulare adj +globuli globulo nom +globulina globulina nom +globuline globulina nom +globulo globulo nom +globulosa globuloso adj +globulose globuloso adj +globuloso globuloso adj +glomeruli glomerulo nom +glomerulo glomerulo nom +glomi glomo nom +glomo glomo nom +gloria gloria nom +gloriandosene gloriare ver +gloriandosi gloriare ver +gloriano gloriare ver +gloriare gloriare ver +gloriarono gloriare ver +gloriarsene gloriare ver +gloriarsi gloriare ver +gloriatevi gloriare ver +gloriato gloriare ver +gloriava gloriare ver +gloriavano gloriare ver +glorie gloria nom +glorifica glorificare ver +glorificai glorificare ver +glorificando glorificare ver +glorificandola glorificare ver +glorificano glorificare ver +glorificante glorificare ver +glorificanti glorificare ver +glorificare glorificare ver +glorificarli glorificare ver +glorificarlo glorificare ver +glorificarne glorificare ver +glorificarono glorificare ver +glorificarsi glorificare ver +glorificasse glorificare ver +glorificassi glorificare ver +glorificata glorificare ver +glorificate glorificare ver +glorificati glorificare ver +glorificato glorificare ver +glorificava glorificare ver +glorificavano glorificare ver +glorificazione glorificazione nom +glorificazioni glorificazione nom +glorifichi glorificare ver +glorifichiamo glorificare ver +glorifichino glorificare ver +glorifico glorificare ver +glorificò glorificare ver +glorii gloriare ver +glorio gloriare ver +gloriosa glorioso adj +gloriose glorioso adj +gloriosi glorioso adj +glorioso glorioso adj +gloriò gloriare ver +glossa glossa nom +glossar glossare ver +glossare glossare ver +glossari glossario nom +glossario glossario nom +glossata glossare ver +glossate glossare ver +glossati glossare ver +glossato glossare ver +glossatore glossatore nom +glossatori glossatore nom +glosse glossa nom +glossina glossina nom +glossine glossina nom +glossite glossite nom +glossiti glossite nom +glosso glossare ver +glottide glottide nom +glottologa glottologo adj +glottologi glottologo adj +glottologia glottologia nom +glottologo glottologo adj +glucide glucide nom +glucidi glucide nom +glucidica glucidico adj +glucidiche glucidico adj +glucidici glucidico adj +glucidico glucidico adj +glucometri glucometro nom +glucometro glucometro nom +glucosi glucosio nom +glucoside glucoside nom +glucosidi glucoside nom +glucosio glucosio nom +gluma gluma nom +glume gluma nom +glumetta glumetta nom +glumette glumetta nom +glutammati glutammato nom +glutammato glutammato nom +glutammici glutammico adj +glutammico glutammico adj +glutei gluteo nom +gluteo gluteo nom +glutina glutinare ver +glutine glutine nom +gnao gnao int +gnaulante gnaulare ver +gneiss gneiss nom +gnocchi gnocco nom +gnocco gnocco nom +gnomi gnomo nom +gnomica gnomico adj +gnomiche gnomico adj +gnomici gnomico adj +gnomico gnomico adj +gnomo gnomo nom +gnomone gnomone nom +gnomoni gnomone nom +gnomonica gnomonica nom +gnomoniche gnomonica nom +gnorri gnorri nom +gnoseologia gnoseologia nom +gnoseologica gnoseologico adj +gnoseologiche gnoseologico adj +gnoseologici gnoseologico adj +gnoseologico gnoseologico adj +gnosi gnosi nom +gnostica gnostico adj +gnostiche gnostico adj +gnostici gnostico adj +gnosticismo gnosticismo nom +gnostico gnostico adj +gnu gnu nom +goal goal nom +gobba gobbo adj +gobbe gobbo adj +gobbi gobbo adj +gobbo gobbo nom +gobelin gobelin nom +gocce goccia nom +gocci goccio nom +goccia goccia nom +gocciante gocciare ver +gocciava gocciare ver +goccino gocciare ver +goccio goccio nom +gocciola gocciolare ver +gocciolamento gocciolamento nom +gocciolando gocciolare ver +gocciolano gocciolare ver +gocciolante gocciolare ver +gocciolanti gocciolare ver +gocciolare gocciolare ver +gocciolato gocciolare ver +gocciolatoi gocciolatoio nom +gocciolatoio gocciolatoio nom +gocciolava gocciolare ver +gocciole gocciola nom +goccioli gocciolo nom +gocciolii gocciolio nom +gocciolio gocciolio nom +gocciolò gocciolare ver +goda godere ver +godano godere ver +gode godere ver +godendo godere ver +godendomi godere ver +godendone godere ver +godendosi godere ver +godente godere ver +godenti godere ver +goder godere ver +goderci godere ver +godere godere ver +goderecce godereccio adj +goderecci godereccio adj +godereccia godereccio adj +godereccio godereccio adj +goderla godere ver +goderli godere ver +goderlo godere ver +godermela godere ver +godermi godere ver +goderne godere ver +godersela godere ver +goderselo godere ver +godersene godere ver +godersi godere ver +goderti godere ver +godervi godere ver +godesse godere ver +godessero godere ver +godet godet nom +godete godere ver +godetevela godere ver +godetevelo godere ver +godetevi godere ver +godette godere ver +godettero godere ver +godetti godere ver +godeva godere ver +godevano godere ver +godevo godere ver +godi godere ver +godiamo godere ver +godiamocela godere ver +godiamoci godere ver +godiate godere ver +godibile godibile adj +godibili godibile adj +godimenti godimento nom +godimento godimento nom +godine godere ver +goditele godere ver +goditi godere ver +godo godere ver +godono godere ver +godrai godere ver +godranno godere ver +godrebbe godere ver +godrebbero godere ver +godrei godere ver +godremo godere ver +godresti godere ver +godrà godere ver +godrò godere ver +goduta godere ver +godute godere ver +goduti godere ver +goduto godere ver +goffa goffo adj +goffaggine goffaggine nom +goffaggini goffaggine nom +goffe goffo adj +goffi goffo adj +goffo goffo adj +goffrata goffrare ver +goffrati goffrare ver +goffrato goffrare ver +goffratura goffratura nom +gogna gogna nom +gogne gogna nom +gol gol nom +gola gola nom +gole gola nom +goleador goleador nom +golena golena nom +golene golena nom +goletta goletta nom +golette goletta nom +golf golf nom +golfi golfo nom +golfista golfista nom +golfisti golfista nom +golfo golfo nom +goliarda goliardo nom +goliardi goliardo nom +goliardia goliardia nom +goliardica goliardico adj +goliardiche goliardico adj +goliardici goliardico adj +goliardico goliardico adj +goliardie goliardia nom +goliardo goliardo nom +gollismo gollismo nom +gollista gollista nom +golliste gollista nom +gollisti gollista nom +golosa goloso adj +golose goloso adj +golosi goloso adj +golosità golosità nom +goloso goloso adj +golpe golpe nom +golpi golpe nom +golpista golpista nom +golpiste golpista nom +golpisti golpista nom +gomena gomena nom +gomene gomena nom +gomitata gomitata nom +gomitate gomitata nom +gomiti gomito nom +gomito gomito nom +gomitoli gomitolo nom +gomitolo gomitolo nom +gomma gomma nom +gommagutta gommagutta nom +gommalacca gommalacca nom +gommapiuma gommapiuma nom +gommata gommare ver +gommate gommare ver +gommati gommare ver +gommato gommare ver +gommatura gommatura nom +gommature gommatura nom +gomme gomma nom +gommi gommare ver +gommifera gommifero adj +gommini gommino nom +gommino gommino nom +gommista gommista nom +gommisti gommista nom +gommo gommare ver +gommone gommone nom +gommoni gommone nom +gommoresina gommoresina nom +gommoresine gommoresina nom +gommosa gommoso adj +gommose gommoso adj +gommosi gommoso adj +gommosità gommosità nom +gommoso gommoso adj +gonade gonade nom +gonadi gonade nom +gondola gondola nom +gondole gondola nom +gondoliere gondoliere nom +gondolieri gondoliere nom +gonfalone gonfalone nom +gonfaloni gonfalone nom +gonfaloniere gonfaloniere nom +gonfalonieri gonfaloniere nom +gonfi gonfio adj +gonfia gonfiare ver +gonfiando gonfiare ver +gonfiandola gonfiare ver +gonfiandoli gonfiare ver +gonfiandosi gonfiare ver +gonfiano gonfiare ver +gonfiante gonfiare ver +gonfiare gonfiare ver +gonfiarli gonfiare ver +gonfiarlo gonfiare ver +gonfiarono gonfiare ver +gonfiarsi gonfiare ver +gonfiarti gonfiare ver +gonfiasse gonfiare ver +gonfiata gonfiare ver +gonfiate gonfiare ver +gonfiati gonfiare ver +gonfiato gonfiare ver +gonfiatura gonfiatura nom +gonfiava gonfiare ver +gonfiavano gonfiare ver +gonfie gonfio adj +gonfieranno gonfiare ver +gonfierà gonfiare ver +gonfiezza gonfiezza nom +gonfiezze gonfiezza nom +gonfino gonfiare ver +gonfio gonfio adj +gonfiore gonfiore nom +gonfiori gonfiore nom +gonfiò gonfiare ver +gong gong nom +gongola gongolare ver +gongolando gongolare ver +gongolano gongolare ver +gongolante gongolante adj +gongolare gongolare ver +gongolo gongolare ver +goniometri goniometro nom +goniometria goniometria nom +goniometrie goniometria nom +goniometro goniometro nom +gonna gonna nom +gonne gonna nom +gonnella gonnella nom +gonnelle gonnella nom +gonnellini gonnellino nom +gonnellino gonnellino nom +gonococchi gonococco nom +gonococco gonococco nom +gonorrea gonorrea nom +gonza gonzo adj +gonzi gonzo adj +gonzo gonzo adj +gora gora nom +gorbia gorbia nom +gordiana gordiano adj +gordiani gordiano adj +gordiano gordiano adj +gore gora nom +gorgheggi gorgheggio nom +gorgheggia gorgheggiare ver +gorgheggiare gorgheggiare ver +gorgheggio gorgheggio nom +gorghi gorgo nom +gorgia gorgia nom +gorgie gorgia nom +gorgiera gorgiera nom +gorgiere gorgiera nom +gorgo gorgo nom +gorgoglia gorgogliare ver +gorgogliando gorgogliare ver +gorgogliante gorgogliare ver +gorgoglianti gorgogliare ver +gorgogliare gorgogliare ver +gorgogliato gorgogliare ver +gorgogliava gorgogliare ver +gorgoglio gorgoglio nom +gorgoglione gorgoglione nom +gorgonia gorgonia nom +gorgonie gorgonia nom +gorgonzola gorgonzola nom +gorgozzule gorgozzule nom +gorilla gorilla nom +gota gota nom +gote gota nom +goti goto nom +gotica gotico adj +gotiche gotico adj +gotici gotico adj +gotico gotico adj +goto goto nom +gotta gotta nom +gotte gotta nom +gotti gotto nom +gotto gotto nom +gottosa gottoso adj +gottosi gottoso adj +gottoso gottoso nom +governa governare ver +governabile governabile adj +governabili governabile adj +governabilità governabilità nom +governaci governare ver +governale governale nom +governali governale nom +governalo governare ver +governando governare ver +governandola governare ver +governandole governare ver +governandolo governare ver +governandone governare ver +governano governare ver +governante governante nom +governanti governante nom +governar governare ver +governarci governare ver +governare governare ver +governarla governare ver +governarle governare ver +governarli governare ver +governarlo governare ver +governarne governare ver +governarono governare ver +governarsi governare ver +governasse governare ver +governassero governare ver +governata governare ver +governate governare ver +governati governare ver +governativa governativo adj +governative governativo adj +governativi governativo adj +governativo governativo adj +governato governare ver +governatorati governatorato nom +governatorato governatorato nom +governatore governatore nom +governatori governatore nom +governatoriale governatoriale adj +governatoriali governatoriale adj +governatrice governatore nom +governatrici governatore nom +governava governare ver +governavano governare ver +governavo governare ver +governerai governare ver +governeranno governare ver +governerebbe governare ver +governerebbero governare ver +governerà governare ver +governerò governare ver +governi governo nom +governino governare ver +governo governo nom +governò governare ver +gozzi gozzo nom +gozzo gozzo nom +gozzoviglia gozzoviglia nom +gozzovigliando gozzovigliare ver +gozzovigliano gozzovigliare ver +gozzovigliare gozzovigliare ver +gozzoviglie gozzoviglia nom +gozzuta gozzuto adj +gozzute gozzuto adj +gozzuti gozzuto adj +gozzuto gozzuto adj +gracchi gracchio nom +gracchia gracchiare ver +gracchiando gracchiare ver +gracchiano gracchiare ver +gracchiante gracchiare ver +gracchianti gracchiare ver +gracchiare gracchiare ver +gracchio gracchio nom +gracida gracidare ver +gracidano gracidare ver +gracidanti gracidare ver +gracidare gracidare ver +gracidii gracidio nom +gracidio gracidio nom +gracido gracidare ver +gracile gracile adj +gracili gracile adj +gracilità gracilità nom +gradassi gradasso nom +gradasso gradasso nom +gradatamente gradatamente adv +gradazione gradazione nom +gradazioni gradazione nom +gradendo gradire ver +gradevole gradevole adj +gradevoli gradevole adj +gradi grado nom +gradiamo gradire ver +gradiente gradiente nom +gradienti gradiente nom +gradimenti gradimento nom +gradimento gradimento nom +gradina gradina nom +gradinata gradinata nom +gradinate gradinata nom +gradinati gradinare ver +gradinato gradinare ver +gradine gradina nom +gradini gradino nom +gradino gradino nom +gradirai gradire ver +gradiranno gradire ver +gradire gradire ver +gradirebbe gradire ver +gradirebbero gradire ver +gradirei gradire ver +gradiremmo gradire ver +gradireste gradire ver +gradiresti gradire ver +gradirete gradire ver +gradirla gradire ver +gradirlo gradire ver +gradirne gradire ver +gradirono gradire ver +gradirà gradire ver +gradirò gradire ver +gradisca gradire ver +gradiscano gradire ver +gradisce gradire ver +gradisci gradire ver +gradisco gradire ver +gradiscono gradire ver +gradisse gradire ver +gradissero gradire ver +gradissimo gradire ver +gradiste gradire ver +gradita gradire ver +gradite gradire ver +graditi gradire ver +gradito gradire ver +gradiva gradire ver +gradivano gradire ver +gradivo gradire ver +grado grado nom +gradua graduare ver +graduabile graduabile adj +graduabili graduabile adj +graduaci graduare ver +graduale graduale adj +graduali graduale adj +gradualismo gradualismo nom +gradualità gradualità nom +gradualmente gradualmente adv +graduando graduare ver +graduano graduare ver +graduare graduare ver +graduarne graduare ver +graduarsi graduare ver +graduata graduare ver +graduate graduato adj +graduati graduato nom +graduato graduare ver +graduatoria graduatoria nom +graduatorie graduatoria nom +graduazione graduazione nom +graduazioni graduazione nom +graduò graduare ver +gradì gradire ver +graffa graffa nom +graffami graffare|graffire ver +graffare graffare|graffire ver +graffati graffare|graffire ver +graffato graffare|graffire ver +graffatura graffatura nom +graffe graffa nom +graffetta graffetta nom +graffette graffetta nom +graffi graffio nom +graffia graffiare ver +graffiando graffiare ver +graffiandogli graffiare ver +graffiandola graffiare ver +graffiandolo graffiare ver +graffiandosi graffiare ver +graffiano graffiare ver +graffiante graffiante adj +graffianti graffiante adj +graffiare graffiare ver +graffiarla graffiare ver +graffiarsi graffiare ver +graffiata graffiare ver +graffiate graffiare ver +graffiati graffiare ver +graffiato graffiare ver +graffiatura graffiatura nom +graffiature graffiatura nom +graffiava graffiare ver +graffiavano graffiare ver +graffierebbe graffiare ver +graffietti graffietto nom +graffietto graffietto nom +graffino graffare|graffiare|graffire ver +graffio graffio nom +graffiti graffito nom +graffito graffito nom +graffiò graffiare ver +grafi grafo nom +grafia grafia nom +grafica grafico adj +graficamente graficamente adv +grafiche grafico adj +grafici grafico adj +grafico grafico adj +grafie grafia nom +grafite grafite nom +grafiti grafite nom +grafo grafo nom +grafologa grafologo nom +grafologi grafologo nom +grafologia grafologia nom +grafologica grafologico adj +grafologiche grafologico adj +grafologici grafologico adj +grafologico grafologico adj +grafologie grafologia nom +grafologo grafologo nom +grafomane grafomane nom +grafomani grafomane nom +grafomania grafomania nom +gragnola gragnola nom +grama gramo adj +gramaglia gramaglia nom +gramaglie gramaglia nom +grame gramo adj +grami gramo adj +graminacea graminaceo adj +graminacee graminacee nom +grammatica grammatica|grammatico nom +grammaticale grammaticale adj +grammaticali grammaticale adj +grammaticalmente grammaticalmente adv +grammatiche grammatica|grammatico nom +grammatici grammatico nom +grammatico grammatico adj +grammatura grammatura nom +grammature grammatura nom +grammi grammo nom +grammo grammo nom +grammofoni grammofono nom +grammofono grammofono nom +gramo gramo adj +gramola gramola nom +gramolata gramolare ver +gramolato gramolare ver +gramolatura gramolatura nom +gramole gramola nom +gran gran adj_sup +grana grana nom +granaglie granaglie nom +granai granaio nom +granaio granaio nom +granata granato adj +granate granata nom +granati granato adj +granatiere granatiere nom +granatieri granatiere nom +granatiglio granatiglio nom +granato granato adj +grancassa grancassa nom +grancasse grancassa nom +grancevola grancevola nom +granchi granchio nom +granchio granchio nom +granchè granchè adv +granché granché adv +grandangolare grandangolare nom +grandangolari grandangolare nom +grandangoli grandangolo nom +grandangolo grandangolo nom +grande grande adj +grandeggia grandeggiare ver +grandeggiano grandeggiare ver +grandeggiare grandeggiare ver +grandemente grandemente adv +grandezza grandezza nom +grandezze grandezza nom +grandguignol grandguignol nom +grandi grande adj +grandina grandinare ver +grandinare grandinare ver +grandinata grandinata nom +grandinate grandinata nom +grandinato grandinare ver +grandinava grandinare ver +grandine grandine nom +grandini grandine nom +grandino grandinare ver +grandiosa grandioso adj +grandiose grandioso adj +grandiosi grandioso adj +grandiosità grandiosità nom +grandioso grandioso adj +grandissima grandissimo adj +grandissime grandissimo adj +grandissimo grandissimo adj +granduca granduca nom +granducale granducale adj +granducali granducale adj +granducati granducato nom +granducato granducato nom +granduchessa granduchessa nom +granduchesse granduchessa nom +granduchi granduca nom +grane grana nom +granella granella nom +granelli granello nom +granello granello nom +granfie granfia nom +grani grano nom +granicoltura granicoltura nom +graniglia graniglia nom +graniglie graniglia nom +granita granita nom +granite granita nom +graniti granito nom +granitica granitico adj +granitiche granitico adj +granitici granitico adj +granitico granitico adj +granito granito nom +granitura granitura nom +granivora granivoro adj +granivori granivoro adj +granivoro granivoro adj +grano grano nom +granone granone nom +granturchi granturco nom +granturco granturco nom +granturismo granturismo nom +granula granulare ver +granulaci granulare ver +granular granulare ver +granulare granulare adj +granulari granulare adj +granulata granulare ver +granulate granulare ver +granulati granulare ver +granulato granulare ver +granulazione granulazione nom +granulazioni granulazione nom +granuli granulo nom +granulo granulo nom +granulociti granulocito nom +granulocito granulocito nom +granulocitopenia granulocitopenia nom +granuloma granuloma nom +granulomi granuloma nom +granulosa granuloso adj +granulose granuloso adj +granulosi granuloso adj +granulosità granulosità nom +granuloso granuloso adj +grappa grappa nom +grappe grappa nom +grappini grappino nom +grappino grappino nom +grappoli grappolo nom +grappolo grappolo nom +graptoliti graptoliti nom +grasce grascia nom +grascia grascia nom +graspi graspo nom +graspo graspo nom +grassa grasso adj +grassatore grassatore nom +grassatori grassatore nom +grassazione grassazione nom +grassazioni grassazione nom +grasse grasso adj +grassella grassella nom +grasselle grassella nom +grasselli grassello nom +grassello grassello nom +grassetta grassetto adj +grassette grassetto adj +grassetti grassetto adj +grassetto grassetto nom +grassezza grassezza nom +grassi grasso adj +grasso grasso adj +grassocci grassoccio adj +grassoccia grassoccio adj +grassoccio grassoccio adj +grassona grassone nom +grassone grassone nom +grassoni grassone nom +grata grato adj +grate grata nom +gratella gratella nom +gratelle gratella nom +grati grato adj +graticci graticcio nom +graticciata graticciata nom +graticcio graticcio nom +graticola graticola nom +graticole graticola nom +gratifica gratifica nom +gratificando gratificare ver +gratificandolo gratificare ver +gratificano gratificare ver +gratificante gratificare ver +gratificanti gratificare ver +gratificare gratificare ver +gratificarli gratificare ver +gratificarlo gratificare ver +gratificarono gratificare ver +gratificarsi gratificare ver +gratificasse gratificare ver +gratificata gratificare ver +gratificate gratificare ver +gratificati gratificare ver +gratificato gratificare ver +gratificava gratificare ver +gratificazione gratificazione nom +gratificazioni gratificazione nom +gratifiche gratifica nom +gratificherà gratificare ver +gratifichiamo gratificare ver +gratificò gratificare ver +gratin gratin nom +gratinare gratinare ver +gratinata gratinare ver +gratinate gratinare ver +gratinati gratinare ver +gratinato gratinare ver +gratino gratinare ver +gratis gratis adv +gratitudine gratitudine nom +grato grato adj +gratta grattare ver +grattacapi grattacapo nom +grattacapo grattacapo nom +grattaceli grattare ver +grattacelo grattare ver +grattacieli grattacielo nom +grattacielo grattacielo nom +grattando grattare ver +grattandosi grattare ver +grattano grattare ver +grattar grattare ver +grattarci grattare ver +grattare grattare ver +grattarla grattare ver +grattarmi grattare ver +grattarsele grattare ver +grattarsi grattare ver +grattata grattare ver +grattate grattata nom +grattati grattare ver +grattato grattare ver +grattava grattare ver +grattavano grattare ver +gratti grattare ver +grattiamoci grattare ver +grattino grattare ver +gratto grattare ver +grattugia grattugia nom +grattugiando grattugiare ver +grattugiare grattugiare ver +grattugiata grattugiare ver +grattugiate grattugiare ver +grattugiati grattugiare ver +grattugiato grattugiare ver +grattugie grattugia nom +grattò grattare ver +gratuita gratuito adj +gratuitamente gratuitamente adv +gratuite gratuito adj +gratuiti gratuito adj +gratuito gratuito adj +gratuità gratuità nom +grava gravare ver +gravaci gravare ver +gravame gravame nom +gravami gravame nom +gravando gravare ver +gravano gravare ver +gravante gravare ver +gravanti gravare ver +gravar gravare ver +gravare gravare ver +gravarla gravare ver +gravarne gravare ver +gravarono gravare ver +gravarsi gravare ver +gravasse gravare ver +gravassero gravare ver +gravata gravare ver +gravate gravare ver +gravati gravare ver +gravato gravare ver +gravava gravare ver +gravavano gravare ver +grave grave adj +gravemente gravemente adv +graverebbe gravare ver +graverebbero gravare ver +graverà gravare ver +gravezza gravezza nom +gravezze gravezza nom +gravi grave adj +gravida gravido adj +gravidanza gravidanza nom +gravidanze gravidanza nom +gravide gravido adj +gravidi gravido adj +gravido gravido adj +gravimetri gravimetro nom +gravimetria gravimetria nom +gravimetrica gravimetrico adj +gravimetriche gravimetrico adj +gravimetrici gravimetrico adj +gravimetrico gravimetrico adj +gravimetrie gravimetria nom +gravimetro gravimetro nom +gravina gravina nom +gravine gravina nom +gravino gravare ver +gravissima gravissimo adj +gravissime gravissimo adj +gravissimi gravissimo adj +gravissimo gravissimo adj +gravita gravitare ver +gravitaci gravitare ver +gravitando gravitare ver +gravitano gravitare ver +gravitante gravitare ver +gravitanti gravitare ver +gravitar gravitare ver +gravitare gravitare ver +gravitarono gravitare ver +gravitasi gravitare ver +gravitasse gravitare ver +gravitata gravitare ver +gravitate gravitare ver +gravitato gravitare ver +gravitava gravitare ver +gravitavano gravitare ver +gravitazionale gravitazionale adj +gravitazionali gravitazionale adj +gravitazione gravitazione nom +gravitazioni gravitazione nom +graviteranno gravitare ver +graviti gravitare ver +gravitino gravitare ver +gravito gravitare ver +gravità gravità nom +gravitò gravitare ver +gravo gravare ver +gravosa gravoso adj +gravose gravoso adj +gravosi gravoso adj +gravosità gravosità nom +gravoso gravoso adj +gravò gravare ver +grazi graziare ver +grazia grazia nom +graziando graziare ver +graziane graziare ver +graziano graziare ver +graziare graziare ver +graziarli graziare ver +graziarlo graziare ver +graziata graziare ver +graziate graziare ver +graziati graziare ver +graziato graziare ver +grazie grazia nom +grazio graziare ver +graziosa grazioso adj +graziose grazioso adj +graziosi grazioso adj +graziosità graziosità nom +grazioso grazioso adj +graziò graziare ver +greca greco adj +grecale grecale adj +grecanica grecanico adj +grecaniche grecanico adj +grecanici grecanico adj +grecanico grecanico adj +greche greco adj +greci greco adj +grecismi grecismo nom +grecismo grecismo nom +grecista grecista nom +grecisti grecista nom +grecità grecità nom +grecizzante grecizzare ver +grecizzanti grecizzare ver +grecizzata grecizzare ver +grecizzate grecizzare ver +grecizzati grecizzare ver +grecizzato grecizzare ver +greco greco adj +green green nom +gregari gregario nom +gregaria gregario adj +gregarie gregario adj +gregario gregario adj +gregge gregge nom +greggi gregge|greggio nom +greggia greggio adj +greggio greggio nom +gregoriana gregoriano adj +gregoriane gregoriano adj +gregoriani gregoriano adj +gregoriano gregoriano adj +grembi grembo nom +grembiule grembiule nom +grembiuli grembiule nom +grembo grembo nom +gremii gremire ver +gremire gremire ver +gremisce gremire ver +gremiscono gremire ver +gremita gremire ver +gremite gremire ver +gremiti gremire ver +gremito gremire ver +gremiva gremire ver +gremivano gremire ver +greppi greppo nom +greppia greppia nom +greppo greppo nom +gres gres nom +greti greto nom +greto greto nom +gretole gretola nom +gretta gretto adj +grette gretto adj +grettezza grettezza nom +gretti gretto adj +gretto gretto adj +greve greve adj +grevi greve adj +grezza grezzo adj +grezze grezzo adj +grezzi grezzo adj +grezzo grezzo adj +grida grida|grido nom +gridai gridare ver +gridalo gridare ver +gridando gridare ver +gridandogli gridare ver +gridandole gridare ver +gridandolo gridare ver +gridano gridare ver +gridanti gridare ver +gridar gridare ver +gridare gridare ver +gridargli gridare ver +gridarle gridare ver +gridarlo gridare ver +gridarono gridare ver +gridasse gridare ver +gridassero gridare ver +gridaste gridare ver +gridata gridare ver +gridate gridare ver +gridati gridare ver +gridato gridare ver +gridava gridare ver +gridavamo gridare ver +gridavano gridare ver +gridavo gridare ver +grideranno gridare ver +griderebbe gridare ver +griderei gridare ver +grideremo gridare ver +griderà gridare ver +griderò gridare ver +gridi gridio|grido nom +gridiamo gridare ver +gridino gridare ver +grido grido nom +gridò gridare ver +grifagna grifagno adj +grifagni grifagno adj +grifagno grifagno adj +griffa griffa nom +griffe griffa nom +grifi grifo nom +grifo grifo nom +grifone grifone nom +grifoni grifone nom +grigi grigio adj +grigia grigio adj +grigiastra grigiastro adj +grigiastre grigiastro adj +grigiastri grigiastro adj +grigiastro grigiastro adj +grigie grigio adj +grigio grigio adj +grigiore grigiore nom +grigioverde grigioverde adj +grigioverdi grigioverde adj +griglia griglia nom +grigliata grigliata nom +grigliate grigliata nom +griglie griglia nom +grignolino grignolino nom +grill grill nom +grilla grillare ver +grillai grillare ver +grillano grillare ver +grillar grillare ver +grilletti grilletto nom +grilletto grilletto nom +grilli grillo nom +grillino grillare ver +grillo grillo nom +grillotalpa grillotalpa nom +grillotalpe grillotalpa nom +grimaldelli grimaldello nom +grimaldello grimaldello nom +grinfia grinfia nom +grinfie grinfia nom +gringo gringo nom +grinta grinta nom +grintosa grintoso adj +grintose grintoso adj +grintosi grintoso adj +grintoso grintoso adj +grinza grinza nom +grinze grinza nom +grinzosa grinzoso adj +grinzose grinzoso adj +grinzoso grinzoso adj +grippa grippare ver +grippaggi grippaggio nom +grippaggio grippaggio nom +grippale grippare ver +grippare grippare ver +grippato grippare ver +grippavano grippare ver +grippe grippe nom +grippi grippare ver +grippo grippare ver +grippò grippare ver +grisaglia grisaglia nom +grisaglie grisaglia nom +grisaille grisaille nom +grisella grisella nom +griselle grisella nom +grisou grisou nom +grissini grissino nom +grissino grissino nom +grizzly grizzly nom +grog grog nom +groggy groggy adj +grolla grolla nom +grolle grolla nom +gronda gronda nom +grondaia grondaia nom +grondaie grondaia nom +grondando grondare ver +grondano grondare ver +grondante grondante adj +grondanti grondante adj +grondar grondare ver +grondare grondare ver +grondava grondare ver +grondavano grondare ver +gronde gronda nom +grondi grondare ver +grondo grondare ver +gronghi grongo nom +grongo grongo nom +groppa groppa nom +groppe groppa nom +groppi groppo nom +groppiera groppiera nom +groppo groppo nom +groppone groppone nom +grossa grosso adj_sup +grosse grosso adj_sup +grossezza grossezza nom +grossi grosso adj +grossista grossista nom +grossiste grossista nom +grossisti grossista nom +grosso grosso adj_sup +grossolana grossolano adj +grossolanamente grossolanamente adv +grossolane grossolano adj +grossolani grossolano adj +grossolanità grossolanità nom +grossolano grossolano adj +grossomodo grossomodo adv +grotta grotta nom +grotte grotta nom +grottesca grottesco adj +grottesche grottesco adj +grotteschi grottesco adj +grottesco grottesco adj +grottini grottino nom +grottino grottino nom +groviera groviera nom +grovigli groviglio nom +groviglio groviglio nom +gru gru nom +grucce gruccia nom +gruccia gruccia nom +gruccione gruccione nom +gruccioni gruccione nom +grufola grufolare ver +grufolando grufolare ver +grufolare grufolare ver +grufolo grufolare ver +grugnendo grugnire ver +grugni grugno nom +grugnire grugnire ver +grugnisce grugnire ver +grugnisci grugnire ver +grugniscono grugnire ver +grugniti grugnire ver +grugnito grugnire ver +grugno grugno nom +gruista gruista nom +grulla grullo adj +grulle grullo nom +grulleria grulleria nom +grulli grullo adj +grullo grullo nom +gruma gruma nom +grume gruma nom +grumelli grumello nom +grumello grumello nom +grumi grumo nom +grumo grumo nom +grumoli grumolo nom +grumolo grumolo nom +grumosa grumoso adj +grumose grumoso adj +grumoso grumoso adj +gruppettari gruppettaro nom +gruppetti gruppetto nom +gruppetto gruppetto nom +gruppi gruppo nom +gruppo gruppo nom +gruppuscoli gruppuscolo nom +gruppuscolo gruppuscolo nom +gruviera gruviera nom +gruzzolo gruzzolo nom +guachi guaco nom +guaco guaco nom +guada guadare ver +guadabile guadabile adj +guadabili guadabile adj +guadagna guadagnare ver +guadagnai guadagnare ver +guadagnammo guadagnare ver +guadagnando guadagnare ver +guadagnandoci guadagnare ver +guadagnandogli guadagnare ver +guadagnandole guadagnare ver +guadagnandolo guadagnare ver +guadagnandone guadagnare ver +guadagnandosene guadagnare ver +guadagnandosi guadagnare ver +guadagnano guadagnare ver +guadagnar guadagnare ver +guadagnarci guadagnare ver +guadagnare guadagnare ver +guadagnargli guadagnare ver +guadagnarle guadagnare ver +guadagnarli guadagnare ver +guadagnarlo guadagnare ver +guadagnarmi guadagnare ver +guadagnarne guadagnare ver +guadagnarono guadagnare ver +guadagnarsela guadagnare ver +guadagnarseli guadagnare ver +guadagnarselo guadagnare ver +guadagnarsene guadagnare ver +guadagnarsi guadagnare ver +guadagnarti guadagnare ver +guadagnarvi guadagnare ver +guadagnasse guadagnare ver +guadagnassero guadagnare ver +guadagnassi guadagnare ver +guadagnata guadagnare ver +guadagnate guadagnare ver +guadagnati guadagnare ver +guadagnato guadagnare ver +guadagnava guadagnare ver +guadagnavano guadagnare ver +guadagnavo guadagnare ver +guadagnerai guadagnare ver +guadagneranno guadagnare ver +guadagnerebbe guadagnare ver +guadagnerebbero guadagnare ver +guadagnerei guadagnare ver +guadagneremmo guadagnare ver +guadagneremo guadagnare ver +guadagnerete guadagnare ver +guadagnerà guadagnare ver +guadagnerò guadagnare ver +guadagni guadagno nom +guadagniamo guadagnare ver +guadagnino guadagnare ver +guadagno guadagno nom +guadagnò guadagnare ver +guadando guadare ver +guadandolo guadare ver +guadano guadare ver +guadare guadare ver +guadarlo guadare ver +guadarono guadare ver +guadata guadare ver +guadato guadare ver +guadava guadare ver +guadavano guadare ver +guadi guado nom +guadino guadare ver +guado guado nom +guadò guadare ver +guaendo guaire ver +guaglione guaglione nom +guaglioni guaglione nom +guai guaio nom +guaiaco guaiaco nom +guaiacolo guaiacolo nom +guaina guaina nom +guainante guainante adj +guainanti guainante adj +guaine guaina nom +guaio guaio nom +guaiola guaiolare ver +guair guaire ver +guaire guaire ver +guaisce guaire ver +guaita guaire ver +guaite guaire ver +guaiti guaito nom +guaito guaito nom +gualchiera gualchiera nom +gualchiere gualchiera nom +gualcita gualcire ver +gualciti gualcire ver +gualcito gualcire ver +gualdrappa gualdrappa nom +gualdrappe gualdrappa nom +guanachi guanaco nom +guanaco guanaco nom +guance guancia nom +guancia guancia nom +guanciale guanciale nom +guanciali guanciale nom +guani guano nom +guano guano nom +guantai guantaio nom +guantaio guantaio nom +guanti guanto nom +guantiera guantiera nom +guanto guanto nom +guantone guantone nom +guantoni guantone nom +guapperia guapperia nom +guappi guappo nom +guappo guappo nom +guarda guardare ver +guardaboschi guardaboschi nom +guardacaccia guardacaccia nom +guardaci guardare ver +guardacoste guardacoste nom +guardafili guardafili nom +guardai guardare ver +guardala guardare ver +guardale guardare ver +guardali guardare ver +guardalinee guardalinee nom +guardalo guardare ver +guardamacchine guardamacchine nom +guardami guardare ver +guardammo guardare ver +guardando guardare ver +guardandoci guardare ver +guardandola guardare ver +guardandole guardare ver +guardandoli guardare ver +guardandolo guardare ver +guardandomi guardare ver +guardandone guardare ver +guardandosi guardare ver +guardandoti guardare ver +guardandovi guardare ver +guardano guardare ver +guardante guardare ver +guardanti guardare ver +guardaparchi guardaparco nom +guardaparco guardaparco nom +guardapesca guardapesca nom +guardaportone guardaportone nom +guardar guardare ver +guardarci guardare ver +guardare guardare ver +guardargli guardare ver +guardarla guardare ver +guardarle guardare ver +guardarli guardare ver +guardarlo guardare ver +guardarmi guardare ver +guardarne guardare ver +guardaroba guardaroba nom +guardarobiera guardarobiere nom +guardarobiere guardarobiere nom +guardarobieri guardarobiere nom +guardarono guardare ver +guardarsela guardare ver +guardarselo guardare ver +guardarsene guardare ver +guardarsi guardare ver +guardarti guardare ver +guardarvi guardare ver +guardasi guardare ver +guardasigilli guardasigilli nom +guardaspalle guardaspalle nom +guardasse guardare ver +guardassero guardare ver +guardassi guardare ver +guardassimo guardare ver +guardaste guardare ver +guardata guardare ver +guardate guardare ver +guardatela guardare ver +guardatele guardare ver +guardateli guardare ver +guardatelo guardare ver +guardatemi guardare ver +guardatene guardare ver +guardatevi guardare ver +guardati guardare ver +guardato guardare ver +guardava guardare ver +guardavamo guardare ver +guardavano guardare ver +guardavi guardare ver +guardavia guardavia nom +guardavo guardare ver +guarderai guardare ver +guarderanno guardare ver +guarderebbe guardare ver +guarderebbero guardare ver +guarderei guardare ver +guarderemo guardare ver +guarderete guardare ver +guarderà guardare ver +guarderò guardare ver +guardi guardo nom +guardia guardia nom +guardiacaccia guardiacaccia nom +guardialinee guardialinee nom +guardiamacchine guardiamacchine nom +guardiamarina guardiamarina nom +guardiamo guardare ver +guardiamoci guardare ver +guardiamole guardare ver +guardiamoli guardare ver +guardiana guardiano nom +guardiane guardiano nom +guardiani guardiano nom +guardiano guardiano nom +guardiate guardare ver +guardie guardia nom +guardina guardina nom +guardine guardina nom +guardinfante guardinfante nom +guardinga guardingo adj +guardinghe guardingo adj +guardinghi guardingo adj +guardingo guardingo adj +guardino guardare ver +guardiola guardiola nom +guardiole guardiola nom +guardo guardo nom +guardone guardone nom +guardoni guardone nom +guardrail guardrail nom +guardò guardare ver +guarendo guarire ver +guarendola guarire ver +guarendoli guarire ver +guarendolo guarire ver +guarendone guarire ver +guarente guarire ver +guarenti guarire ver +guarentigia guarentigia nom +guarentigie guarentigia nom +guari guari adv +guaribile guaribile adj +guaribili guaribile adj +guarigione guarigione nom +guarigioni guarigione nom +guarir guarire ver +guarirai guarire ver +guariranno guarire ver +guarire guarire ver +guarirebbe guarire ver +guarirla guarire ver +guarirle guarire ver +guarirli guarire ver +guarirlo guarire ver +guarirne guarire ver +guarirono guarire ver +guarirsi guarire ver +guarirti guarire ver +guarirà guarire ver +guarirò guarire ver +guarisca guarire ver +guariscano guarire ver +guarisce guarire ver +guarisci guarire ver +guariscimi guarire ver +guarisco guarire ver +guariscono guarire ver +guarisse guarire ver +guarissero guarire ver +guarita guarire ver +guarite guarire ver +guariti guarire ver +guarito guarire ver +guaritore guaritore nom +guaritori guaritore nom +guaritrice guaritore nom +guaritrici guaritore nom +guariva guarire ver +guarivano guarire ver +guarnendo guarnire ver +guarnigione guarnigione nom +guarnigioni guarnigione nom +guarnire guarnire ver +guarnirei guarnire ver +guarnisce guarnire ver +guarniscono guarnire ver +guarnita guarnire ver +guarnite guarnire ver +guarniti guarnire ver +guarnito guarnire ver +guarnitura guarnitura nom +guarniture guarnitura nom +guarniva guarnire ver +guarnivano guarnire ver +guarnizione guarnizione nom +guarnizioni guarnizione nom +guarnì guarnire ver +guarì guarire ver +guasconate guasconata nom +guascone guascone adj +guasconi guascone adj +guasta guasto adj +guastafeste guastafeste nom +guastala guastare ver +guastando guastare ver +guastandogli guastare ver +guastandone guastare ver +guastandosi guastare ver +guastano guastare ver +guastarci guastare ver +guastare guastare ver +guastarle guastare ver +guastarmi guastare ver +guastarono guastare ver +guastarsi guastare ver +guastarvela guastare ver +guastasse guastare ver +guastassero guastare ver +guastata guastare ver +guastate guastare ver +guastati guastare ver +guastato guastare ver +guastatore guastatore nom +guastatori guastatore nom +guastava guastare ver +guastavano guastare ver +guastavo guastare ver +guaste guasto adj +guasterebbe guastare ver +guasterebbero guastare ver +guasterà guastare ver +guasti guasto nom +guastino guastare ver +guasto guasto nom +guastò guastare ver +guata guatare ver +guatavo guatare ver +guatemalteca guatemalteco adj +guatemalteche guatemalteco adj +guatemaltechi guatemalteco adj +guatemalteco guatemalteco adj +guato guatare ver +guazza guazza nom +guazzabugli guazzabuglio nom +guazzabuglio guazzabuglio nom +guazzano guazzare ver +guazzate guazzare ver +guazzato guazzare ver +guazze guazza nom +guazzetti guazzetto nom +guazzetto guazzetto nom +guazzi guazzo nom +guazzino guazzare ver +guazzo guazzo nom +guelfa guelfo adj +guelfe guelfo adj +guelfi guelfo adj +guelfismo guelfismo nom +guelfo guelfo adj +guerci guercio adj +guercia guercio adj +guercio guercio adj +guerra guerra nom +guerrafondai guerrafondaio adj +guerrafondaia guerrafondaio adj +guerrafondaie guerrafondaio adj +guerrafondaio guerrafondaio adj +guerre guerra nom +guerreggia guerreggiare ver +guerreggiando guerreggiare ver +guerreggiano guerreggiare ver +guerreggianti guerreggiare ver +guerreggiar guerreggiare ver +guerreggiare guerreggiare ver +guerreggiarono guerreggiare ver +guerreggiarsi guerreggiare ver +guerreggiata guerreggiare ver +guerreggiato guerreggiare ver +guerreggiava guerreggiare ver +guerreggiavano guerreggiare ver +guerreggiò guerreggiare ver +guerresca guerresco adj +guerresche guerresco adj +guerreschi guerresco adj +guerresco guerresco adj +guerriera guerriero adj +guerriere guerriero adj +guerrieri guerriero nom +guerriero guerriero adj +guerriglia guerriglia nom +guerriglie guerriglia nom +guerrigliera guerrigliero nom +guerrigliere guerrigliero nom +guerriglieri guerrigliero nom +guerrigliero guerrigliero nom +gufa gufare ver +gufare gufare ver +gufi gufo nom +gufo gufo nom +guglia guglia nom +gugliata gugliata nom +gugliate gugliata nom +guglie guglia nom +guida guida nom +guidabile guidabile adj +guidabili guidabile adj +guidaci guidare ver +guidai guidare ver +guidali guidare ver +guidami guidare ver +guidando guidare ver +guidandola guidare ver +guidandole guidare ver +guidandoli guidare ver +guidandolo guidare ver +guidandone guidare ver +guidano guidare ver +guidante guidare ver +guidanti guidare ver +guidar guidare ver +guidarci guidare ver +guidare guidare ver +guidarla guidare ver +guidarle guidare ver +guidarli guidare ver +guidarlo guidare ver +guidarmi guidare ver +guidarne guidare ver +guidarono guidare ver +guidarsi guidare ver +guidarti guidare ver +guidarvi guidare ver +guidasse guidare ver +guidassero guidare ver +guidata guidare ver +guidate guidare ver +guidati guidare ver +guidato guidare ver +guidatore guidatore nom +guidatori guidatore nom +guidatrice guidatore nom +guidatrici guidatore nom +guidava guidare ver +guidavamo guidare ver +guidavano guidare ver +guidavo guidare ver +guide guida nom +guideranno guidare ver +guiderdone guiderdone nom +guiderebbe guidare ver +guiderebbero guidare ver +guideremo guidare ver +guiderà guidare ver +guiderò guidare ver +guidi guidare ver +guidino guidare ver +guido guidare ver +guidone guidone nom +guidoni guidone nom +guidoslitta guidoslitta nom +guidrigildo guidrigildo nom +guidò guidare ver +guineana guineano adj +guineane guineano adj +guineani guineano adj +guineano guineano adj +guinzagli guinzaglio nom +guinzaglio guinzaglio nom +guisa guisa nom +guise guisa nom +guitta guitto adj +guitti guitto nom +guitto guitto adj +guizza guizzare ver +guizzando guizzare ver +guizzano guizzare ver +guizzante guizzare ver +guizzanti guizzare ver +guizzare guizzare ver +guizzava guizzare ver +guizzavano guizzare ver +guizzi guizzo nom +guizzino guizzare ver +guizzo guizzo nom +guizzò guizzare ver +gulag gulag nom +gulasch gulasch nom +gulp gulp int +guru guru nom +gusci guscio nom +guscio guscio nom +gusta gustare ver +gustabile gustabile adj +gustabili gustabile adj +gustai gustare ver +gustalo gustare ver +gustando gustare ver +gustano gustare ver +gustar gustare ver +gustare gustare ver +gustarla gustare ver +gustarle gustare ver +gustarli gustare ver +gustarlo gustare ver +gustarne gustare ver +gustarono gustare ver +gustarsi gustare ver +gustarti gustare ver +gustata gustare ver +gustate gustare ver +gustatevi gustare ver +gustati gustare ver +gustativa gustativo adj +gustative gustativo adj +gustativi gustativo adj +gustativo gustativo adj +gustato gustare ver +gustava gustare ver +gustavano gustare ver +gustavi gustare ver +gustavo gustare ver +gusteranno gustare ver +gusterei gustare ver +gusterete gustare ver +gusti gusto nom +gustino gustare ver +gusto gusto nom +gustosa gustoso adj +gustose gustoso adj +gustosi gustoso adj +gustosità gustosità nom +gustoso gustoso adj +gustò gustare ver +guttaperca guttaperca nom +guttazione guttazione nom +gutturale gutturale adj +gutturali gutturale adj +guêpière guêpière nom +gì gire ver +h h nom_sup +ha avere ver_sup +habitat habitat nom +habitus habitus nom +habitué habitué nom +hahnio hahnio nom +hai avere ver_sup +haitiana haitiano adj +haitiane haitiano adj +haitiani haitiano adj +haitiano haitiano adj +hall hall nom +hallo hallo int +hamburger hamburger nom +hammerless hammerless nom +hamster hamster nom +handicap handicap nom +handicappata handicappato adj +handicappate handicappato adj +handicappati handicappato nom +handicappato handicappato adj +handling handling nom +hangar hangar nom +hanno avere ver_sup +happening happening nom +harakiri harakiri nom +hardware hardware nom +harem harem nom +harmonium harmonium nom +hascisc hascisc nom +hashish hashish nom +haute haute nom +hegeliana hegeliano adj +hegeliane hegeliano adj +hegeliani hegeliano adj +hegeliano hegeliano adj +henna henna nom +henne henna nom +hennin hennin nom +henné henné nom +henry henry nom +herpes herpes nom +hertz hertz nom +hertziana hertziano adj +hertziane hertziano adj +hertziani hertziano adj +hertziano hertziano adj +hesitation hesitation nom +hevea hevea nom +hickory hickory nom +hidalgo hidalgo nom +hinterland hinterland nom +hip hip int +hippy hippy adj +hitleriana hitleriano adj +hitleriane hitleriano adj +hitleriani hitleriano adj +hitleriano hitleriano adj +ho avere ver_sup +hobby hobby nom +hockeista hockeista nom +hockeisti hockeista nom +hockey hockey nom +holding holding nom +hollywoodiana hollywoodiano adj +hollywoodiane hollywoodiano adj +hollywoodiani hollywoodiano adj +hollywoodiano hollywoodiano adj +home home nom +homo homo nom +hooligan hooligan nom +hooliganismo hooliganismo nom +hostaria hostaria nom +hostarie hostaria nom +hostess hostess nom +hotel hotel nom +hovercraft hovercraft nom +http http sw +hula hula nom +humour humour nom +humus humus nom +huroniana huroniano adj +hurra hurra int +hurrah hurrah int +husky husky nom +hutu hutu adj +i il det +ialina ialino adj +ialine ialino adj +ialini ialino adj +ialino ialino adj +iamatologia iamatologia nom +iarda iarda nom +iarde iarda nom +iato iato nom +iatrogena iatrogeno adj +iatrogene iatrogeno adj +iatrogeni iatrogeno adj +iatrogeno iatrogeno adj +iattanza iattanza nom +iattura iattura nom +iberica iberico adj +iberiche iberico adj +iberici iberico adj +iberico iberico adj +iberna ibernare ver +ibernando ibernare ver +ibernandolo ibernare ver +ibernandosi ibernare ver +ibernano ibernare ver +ibernante ibernante adj +ibernanti ibernante adj +ibernare ibernare ver +ibernarlo ibernare ver +ibernarsi ibernare ver +ibernassero ibernare ver +ibernata ibernare ver +ibernate ibernare ver +ibernati ibernare ver +ibernato ibernare ver +ibernazione ibernazione nom +ibernazioni ibernazione nom +iberni ibernare ver +iberno ibernare ver +ibernò ibernare ver +ibidem ibidem adv +ibis ibis nom +ibischi ibisco nom +ibisco ibisco nom +ibrida ibrido adj +ibridando ibridare ver +ibridandosi ibridare ver +ibridano ibridare ver +ibridare ibridare ver +ibridarsi ibridare ver +ibridasse ibridare ver +ibridata ibridare ver +ibridate ibridare ver +ibridati ibridare ver +ibridato ibridare ver +ibridatore ibridatore nom +ibridavano ibridare ver +ibridazione ibridazione nom +ibridazioni ibridazione nom +ibride ibrido adj +ibridi ibrido adj +ibridismi ibridismo nom +ibridismo ibridismo nom +ibrido ibrido adj +ibridò ibridare ver +icastica icastico adj +icastiche icastico adj +icastici icastico adj +icastico icastico adj +iceberg iceberg nom +icneumone icneumone nom +icnografia icnografia nom +icona icona nom +icone icona nom +iconica iconico adj +iconiche iconico adj +iconici iconico adj +iconico iconico adj +iconoclasta iconoclasta adj +iconoclaste iconoclasta adj +iconoclasti iconoclasta adj +iconoclastia iconoclastia nom +iconoclastica iconoclastico adj +iconoclastiche iconoclastico adj +iconoclastici iconoclastico adj +iconoclastico iconoclastico adj +iconografi iconografo nom +iconografia iconografia nom +iconografica iconografico adj +iconografiche iconografico adj +iconografici iconografico adj +iconografico iconografico adj +iconografie iconografia nom +iconografo iconografo nom +iconolatria iconolatria nom +iconologia iconologia nom +iconologie iconologia nom +iconoscopi iconoscopio nom +iconoscopio iconoscopio nom +iconostasi iconostasi nom +icore icore nom +icori icore nom +icosaedri icosaedro nom +icosaedro icosaedro nom +ics ics nom +ictus ictus nom +iddio iddio nom +idea idea nom +ideai ideare ver +ideala ideare ver +ideale ideale adj +ideali ideale nom +idealismi idealismo nom +idealismo idealismo nom +idealista idealista nom +idealiste idealista nom +idealisti idealista nom +idealistica idealistico adj +idealistiche idealistico adj +idealistici idealistico adj +idealistico idealistico adj +idealità idealità nom +idealizza idealizzare ver +idealizzando idealizzare ver +idealizzandolo idealizzare ver +idealizzano idealizzare ver +idealizzante idealizzare ver +idealizzare idealizzare ver +idealizzarla idealizzare ver +idealizzarlo idealizzare ver +idealizzarne idealizzare ver +idealizzata idealizzare ver +idealizzate idealizzare ver +idealizzati idealizzare ver +idealizzato idealizzare ver +idealizzava idealizzare ver +idealizzavano idealizzare ver +idealizzazione idealizzazione nom +idealizzazioni idealizzazione nom +idealizzo idealizzare ver +idealizzò idealizzare ver +idealmente idealmente adv +idealo ideare ver +ideando ideare ver +ideandolo ideare ver +ideandone ideare ver +ideano ideare ver +ideante ideare ver +ideare ideare ver +idearla ideare ver +idearle ideare ver +idearlo ideare ver +idearne ideare ver +idearono ideare ver +ideata ideare ver +ideate ideare ver +ideati ideare ver +ideato ideare ver +ideatore ideatore nom +ideatori ideatore nom +ideatrice ideatore nom +ideatrici ideatore nom +ideava ideare ver +ideavano ideare ver +ideazione ideazione nom +ideazioni ideazione nom +idee idea nom +ideerà ideare ver +idei ideare ver +idem idem adv +identica identico adj +identiche identico adj +identici identico adj +identicità identicità nom +identico identico adj +identifica identificare ver +identificabile identificabile adj +identificabili identificabile adj +identificaci identificare ver +identificando identificare ver +identificandola identificare ver +identificandole identificare ver +identificandoli identificare ver +identificandolo identificare ver +identificandone identificare ver +identificandosi identificare ver +identificandovi identificare ver +identificano identificare ver +identificante identificare ver +identificanti identificare ver +identificar identificare ver +identificarci identificare ver +identificare identificare ver +identificarla identificare ver +identificarle identificare ver +identificarli identificare ver +identificarlo identificare ver +identificarmi identificare ver +identificarne identificare ver +identificarono identificare ver +identificarsi identificare ver +identificarti identificare ver +identificarvi identificare ver +identificasi identificare ver +identificasse identificare ver +identificassero identificare ver +identificata identificare ver +identificate identificare ver +identificati identificare ver +identificativi identificativo adj +identificativo identificativo adj +identificato identificare ver +identificava identificare ver +identificavamo identificare ver +identificavano identificare ver +identificazione identificazione nom +identificazioni identificazione nom +identificheranno identificare ver +identificherebbe identificare ver +identificherebbero identificare ver +identificheremo identificare ver +identificherà identificare ver +identifichi identificare ver +identifichiamo identificare ver +identifichino identificare ver +identifico identificare ver +identificò identificare ver +identikit identikit nom +identità identità nom +ideo ideare ver +ideografia ideografia nom +ideografica ideografico adj +ideografiche ideografico adj +ideografici ideografico adj +ideografico ideografico adj +ideogramma ideogramma nom +ideogrammi ideogramma nom +ideologa ideologo nom +ideologi ideologo nom +ideologia ideologia nom +ideologica ideologico adj +ideologiche ideologico adj +ideologici ideologico adj +ideologico ideologico adj +ideologie ideologia nom +ideologismo ideologismo nom +ideologo ideologo nom +ideò ideare ver +idi idi nom +idilli idillio nom +idilliaca idilliaco adj +idilliache idilliaco adj +idilliaci idilliaco adj +idilliaco idilliaco adj +idillica idillico adj +idilliche idillico adj +idillici idillico adj +idillico idillico adj +idillio idillio nom +idioletti idioletto nom +idioletto idioletto nom +idioma idioma nom +idiomi idioma nom +idiosincrasia idiosincrasia nom +idiosincrasie idiosincrasia nom +idiota idiota adj +idiote idiota adj +idioti idiota adj +idiotismi idiotismo nom +idiotismo idiotismo nom +idiozia idiozia nom +idiozie idiozia nom +idolatra idolatra adj +idolatre idolatra adj +idolatri idolatra adj +idolatria idolatria nom +idolatrico idolatrico adj +idolatrie idolatria nom +idoli idolo nom +idolo idolo nom +idonea idoneo adj +idoneamente idoneamente adv +idonee idoneo adj +idonei idoneo adj +idoneità idoneità nom +idoneo idoneo adj +idra idra nom +idracidi idracido nom +idracido idracido nom +idrante idrante nom +idranti idrante nom +idrargirismo idrargirismo nom +idrata idrato adj +idratando idratare ver +idratandosi idratare ver +idratano idratare ver +idratante idratante adj +idratanti idratante adj +idratare idratare ver +idratarla idratare ver +idratarlo idratare ver +idratarsi idratare ver +idratasi idratare ver +idratata idratare ver +idratate idratare ver +idratati idratare ver +idratato idratare ver +idratazione idratazione nom +idrate idrato adj +idrati idrato adj +idrato idrato adj +idraulica idraulico adj +idrauliche idraulico adj +idraulici idraulico adj +idraulico idraulico adj +idrazina idrazina nom +idrazine idrazina nom +idre idra nom +idrica idrico adj +idriche idrico adj +idrici idrico adj +idrico idrico adj +idrobiologia idrobiologia nom +idrocarburi idrocarburo nom +idrocarburica idrocarburico adj +idrocarburiche idrocarburico adj +idrocarburici idrocarburico adj +idrocarburico idrocarburico adj +idrocarburo idrocarburo nom +idrocefalia idrocefalia nom +idrocefalo idrocefalo nom +idrochinone idrochinone nom +idrocolloide idrocolloide nom +idrocoltura idrocoltura nom +idrocora idrocoro adj +idrodinamica idrodinamico adj +idrodinamiche idrodinamico adj +idrodinamici idrodinamico adj +idrodinamico idrodinamico adj +idroelettrica idroelettrico adj +idroelettriche idroelettrico adj +idroelettrici idroelettrico adj +idroelettricità idroelettricità nom +idroelettrico idroelettrico adj +idrofila idrofilo adj +idrofile idrofilo adj +idrofili idrofilo adj +idrofilia idrofilia nom +idrofilo idrofilo adj +idrofita idrofita nom +idrofite idrofita nom +idrofoba idrofobo adj +idrofobe idrofobo adj +idrofobi idrofobo adj +idrofobia idrofobia nom +idrofobo idrofobo adj +idrofoni idrofono nom +idrofono idrofono nom +idrofora idroforo adj +idrofuga idrofugo adj +idrofughe idrofugo adj +idrofugo idrofugo adj +idrogenare idrogenare ver +idrogenasi idrogenare ver +idrogenata idrogenare ver +idrogenate idrogenare ver +idrogenati idrogenare ver +idrogenato idrogenare ver +idrogenazione idrogenazione nom +idrogenazioni idrogenazione nom +idrogeni idrogenare ver +idrogeno idrogeno nom +idrogetti idrogetto nom +idrogetto idrogetto nom +idrografi idrografo nom +idrografia idrografia nom +idrografica idrografico adj +idrografiche idrografico adj +idrografici idrografico adj +idrografico idrografico adj +idrografie idrografia nom +idrografo idrografo nom +idrolisi idrolisi nom +idrolitica idrolitico adj +idrolitici idrolitico adj +idrolitico idrolitico adj +idrolizza idrolizzare ver +idrolizzando idrolizzare ver +idrolizzandosi idrolizzare ver +idrolizzano idrolizzare ver +idrolizzante idrolizzare ver +idrolizzanti idrolizzare ver +idrolizzare idrolizzare ver +idrolizzarsi idrolizzare ver +idrolizzata idrolizzare ver +idrolizzate idrolizzare ver +idrolizzati idrolizzare ver +idrolizzato idrolizzare ver +idrologia idrologia nom +idrologica idrologico adj +idrologiche idrologico adj +idromele idromele nom +idrometeora idrometeora nom +idrometeore idrometeora nom +idrometra idrometra nom +idrometri idrometra|idrometro nom +idrometria idrometria nom +idrometrica idrometrico adj +idrometriche idrometrico adj +idrometrici idrometrico adj +idrometrico idrometrico adj +idrometro idrometro nom +idropica idropico adj +idropico idropico adj +idropisia idropisia nom +idropisie idropisia nom +idroplani idroplano nom +idroplano idroplano nom +idroponica idroponica nom +idroponiche idroponica nom +idrorepellente idrorepellente adj +idrorepellenti idrorepellente adj +idroscali idroscalo nom +idroscalo idroscalo nom +idrosci idroscì nom +idroscivolante idroscivolante nom +idrosfera idrosfera nom +idrosilurante idrosilurante nom +idrosiluranti idrosilurante nom +idrosolubile idrosolubile adj +idrosolubili idrosolubile adj +idrossidi idrossido nom +idrossido idrossido nom +idrostatica idrostatico adj +idrostatiche idrostatico adj +idrostatici idrostatico adj +idrostatico idrostatico adj +idroterapia idroterapia nom +idroterapica idroterapico adj +idroterapiche idroterapico adj +idroterapici idroterapico adj +idroterapico idroterapico adj +idrotermale idrotermale adj +idrotermali idrotermale adj +idrovia idrovia nom +idroviario idroviario adj +idrovie idrovia nom +idrovolante idrovolante nom +idrovolanti idrovolante nom +idrovora idrovoro adj +idrovore idrovora nom +idrovori idrovoro adj +idrovoro idrovoro adj +idruri idruro nom +idruro idruro nom +iella iella nom +iellata iellato adj +iellato iellato adj +iena iena nom +iene iena nom +ieratica ieratico adj +ieratiche ieratico adj +ieratici ieratico adj +ieraticità ieraticità nom +ieratico ieratico adj +ieri ieri adv_sup +iersera iersera adv +iettare iettare ver +iettatore iettatore nom +iettatori iettatore nom +iettatrice iettatore nom +iettatura iettatura nom +ietto iettare ver +ifa ifa nom +ife ifa nom +igiene igiene nom +igienica igienico adj +igienicamente igienicamente adv +igieniche igienico adj +igienici igienico adj +igienico igienico adj +igienista igienista nom +igieniste igienista nom +igienisti igienista nom +igloo igloo nom +iglù iglù nom +ignara ignaro adj +ignare ignaro adj +ignari ignaro adj +ignaro ignaro adj +ignava ignavo adj +ignavi ignavo nom +ignavia ignavia nom +ignavo ignavo adj +ignea igneo adj +ignee igneo adj +ignei igneo adj +igneo igneo adj +ignifuga ignifugo adj +ignifughe ignifugo adj +ignifughi ignifugo adj +ignifugo ignifugo adj +ignizione ignizione nom +ignobile ignobile adj +ignobili ignobile adj +ignominia ignominia nom +ignominie ignominia nom +ignominiosa ignominioso adj +ignominiose ignominioso adj +ignominiosi ignominioso adj +ignominioso ignominioso adj +ignora ignorare ver +ignorala ignorare ver +ignorale ignorare ver +ignorali ignorare ver +ignoralo ignorare ver +ignorando ignorare ver +ignorandola ignorare ver +ignorandole ignorare ver +ignorandoli ignorare ver +ignorandolo ignorare ver +ignorandone ignorare ver +ignorano ignorare ver +ignorante ignorante adj +ignoranti ignorante adj +ignoranza ignoranza nom +ignoranze ignoranza nom +ignorarci ignorare ver +ignorare ignorare ver +ignorarla ignorare ver +ignorarle ignorare ver +ignorarli ignorare ver +ignorarlo ignorare ver +ignorarmi ignorare ver +ignorarne ignorare ver +ignorarono ignorare ver +ignorarsi ignorare ver +ignorarti ignorare ver +ignorarvi ignorare ver +ignorasse ignorare ver +ignorassero ignorare ver +ignorassimo ignorare ver +ignorata ignorare ver +ignorate ignorare ver +ignoratele ignorare ver +ignorateli ignorare ver +ignoratelo ignorare ver +ignoratemi ignorare ver +ignoratevi ignorare ver +ignorati ignorare ver +ignorato ignorare ver +ignorava ignorare ver +ignoravamo ignorare ver +ignoravano ignorare ver +ignoravi ignorare ver +ignoravo ignorare ver +ignoreranno ignorare ver +ignorerebbe ignorare ver +ignorerebbero ignorare ver +ignorerei ignorare ver +ignorerà ignorare ver +ignorerò ignorare ver +ignori ignorare ver +ignoriamo ignorare ver +ignoriamoli ignorare ver +ignoriate ignorare ver +ignorino ignorare ver +ignoro ignorare ver +ignorò ignorare ver +ignota ignoto adj +ignote ignoto adj +ignoti ignoto adj +ignoto ignoto adj +ignuda ignudo adj +ignude ignudo adj +ignudi ignudo nom +ignudo ignudo adj +igrofita igrofita nom +igrofite igrofita nom +igrometri igrometro nom +igrometria igrometria nom +igrometro igrometro nom +igroscopia igroscopia nom +igroscopica igroscopico adj +igroscopiche igroscopico adj +igroscopici igroscopico adj +igroscopicità igroscopicità nom +igroscopico igroscopico adj +iguana iguana nom +iguane iguana nom +iguanodonte iguanodonte nom +iguanodonti iguanodonte nom +ih ih int +ii ii num +iii iii num +ike ike sw +ikebana ikebana nom +il il det +ila ila nom +ilare ilare adj +ilari ilare adj +ilarità ilarità nom +ile ila nom +ilei ileo nom +ileo ileo nom +ileocecale ileocecale adj +ili ilio|ilo nom +iliaca iliaco adj +iliache iliaco adj +iliaci iliaco adj +iliaco iliaco adj +ilio ilio nom +illacrimata illacrimato adj +illanguidisce illanguidire ver +illanguidì illanguidire ver +illative illativo adj +illativo illativo adj +illazione illazione nom +illazioni illazione nom +illecita illecito adj +illecitamente illecitamente adv +illecite illecito adj +illeciti illecito adj +illecito illecito adj +illegale illegale adj +illegali illegale adj +illegalità illegalità nom +illegalmente illegalmente adv +illeggiadrita illeggiadrire ver +illeggibile illeggibile adj +illeggibili illeggibile adj +illegittima illegittimo adj +illegittime illegittimo adj +illegittimi illegittimo adj +illegittimità illegittimità nom +illegittimo illegittimo adj +illesa illeso adj +illese illeso adj +illesi illeso adj +illeso illeso adj +illetterata illetterato adj +illetterate illetterato adj +illetterati illetterato adj +illetterato illetterato adj +illibata illibato adj +illibate illibato adj +illibatezza illibatezza nom +illibato illibato adj +illiberale illiberale adj +illiberali illiberale adj +illiceità illiceità nom +illimitata illimitato adj +illimitate illimitato adj +illimitatezza illimitatezza nom +illimitati illimitato adj +illimitato illimitato adj +illividire illividire ver +illogica illogico adj +illogiche illogico adj +illogici illogico adj +illogicità illogicità nom +illogico illogico adj +illuda illudere ver +illudano illudere ver +illude illudere ver +illudendo illudere ver +illudendoci illudere ver +illudendola illudere ver +illudendoli illudere ver +illudendolo illudere ver +illudendomi illudere ver +illudendosi illudere ver +illuderci illudere ver +illudere illudere ver +illuderli illudere ver +illuderlo illudere ver +illudermi illudere ver +illudersi illudere ver +illuderti illudere ver +illuderà illudere ver +illudessero illudere ver +illudetevi illudere ver +illudeva illudere ver +illudevano illudere ver +illudevo illudere ver +illudiamo illudere ver +illudiamoci illudere ver +illudimi illudere ver +illudo illudere ver +illudono illudere ver +illumina illuminare ver +illuminaci illuminare ver +illuminamento illuminamento nom +illuminami illuminare ver +illuminando illuminare ver +illuminandola illuminare ver +illuminandole illuminare ver +illuminandolo illuminare ver +illuminandone illuminare ver +illuminandosi illuminare ver +illuminano illuminare ver +illuminante illuminante adj +illuminanti illuminante adj +illuminarci illuminare ver +illuminare illuminare ver +illuminargli illuminare ver +illuminarla illuminare ver +illuminarle illuminare ver +illuminarli illuminare ver +illuminarlo illuminare ver +illuminarmi illuminare ver +illuminarne illuminare ver +illuminarono illuminare ver +illuminarsi illuminare ver +illuminarti illuminare ver +illuminasse illuminare ver +illuminassero illuminare ver +illuminata illuminare ver +illuminate illuminato adj +illuminatemi illuminare ver +illuminati illuminato adj +illuminato illuminare ver +illuminava illuminare ver +illuminavano illuminare ver +illuminazione illuminazione nom +illuminazioni illuminazione nom +illumineranno illuminare ver +illuminerebbe illuminare ver +illuminereste illuminare ver +illuminerà illuminare ver +illumini illuminare ver +illuminiamo illuminare ver +illuminino illuminare ver +illuminismi illuminismo nom +illuminismo illuminismo nom +illuminista illuminista adj +illuministe illuminista adj +illuministi illuminista adj +illuministica illuministico adj +illuministiche illuministico adj +illuministici illuministico adj +illuministico illuministico adj +illumino illuminare ver +illuminotecnica illuminotecnica nom +illuminotecniche illuminotecnica nom +illuminò illuminare ver +illusa illudere ver +illuse illuso adj +illusero illudere ver +illusi illuso nom +illusione illusione nom +illusioni illusione nom +illusionismo illusionismo nom +illusionista illusionista nom +illusioniste illusionista nom +illusionisti illusionista nom +illusionistica illusionistico adj +illusionistiche illusionistico adj +illusionistici illusionistico adj +illusionistico illusionistico adj +illuso illudere ver +illusori illusorio adj +illusoria illusorio adj +illusorie illusorio adj +illusorio illusorio adj +illustra illustrare ver +illustragli illustrare ver +illustrai illustrare ver +illustrando illustrare ver +illustrandogli illustrare ver +illustrandola illustrare ver +illustrandole illustrare ver +illustrandoli illustrare ver +illustrandolo illustrare ver +illustrandone illustrare ver +illustrandosi illustrare ver +illustrano illustrare ver +illustrante illustrare ver +illustranti illustrare ver +illustrar illustrare ver +illustrarci illustrare ver +illustrare illustrare ver +illustrargli illustrare ver +illustrarla illustrare ver +illustrarle illustrare ver +illustrarli illustrare ver +illustrarlo illustrare ver +illustrarmi illustrare ver +illustrarne illustrare ver +illustrarono illustrare ver +illustrarsi illustrare ver +illustrarti illustrare ver +illustrarvi illustrare ver +illustrasse illustrare ver +illustrassero illustrare ver +illustrassi illustrare ver +illustrata illustrare ver +illustrate illustrato adj +illustrati illustrare ver +illustrativa illustrativo adj +illustrative illustrativo adj +illustrativi illustrativo adj +illustrativo illustrativo adj +illustrato illustrare ver +illustratore illustratore nom +illustratori illustratore nom +illustratrice illustratore nom +illustratrici illustratore nom +illustrava illustrare ver +illustravano illustrare ver +illustrazione illustrazione nom +illustrazioni illustrazione nom +illustre illustre adj +illustreranno illustrare ver +illustrerebbe illustrare ver +illustrerebbero illustrare ver +illustreremo illustrare ver +illustrerà illustrare ver +illustri illustre adj +illustriamo illustrare ver +illustrino illustrare ver +illustrissimi illustrissimo nom +illustrissimo illustrissimo nom +illustro illustrare ver +illustrò illustrare ver +ilo ilo nom +ilota ilota nom +ilote ilota nom +iloti ilota nom +ilozoismo ilozoismo nom +ima imo adj +imani imano nom +imano imano nom +imati imatio nom +imbacuccato imbacuccare ver +imballa imballare ver +imballaggi imballaggio nom +imballaggio imballaggio nom +imballando imballare ver +imballano imballare ver +imballare imballare ver +imballata imballare ver +imballate imballare ver +imballati imballare ver +imballato imballare ver +imballatore imballatore nom +imballatrice imballatore nom +imballatrici imballatore nom +imballi imballo nom +imballo imballo nom +imbalsama imbalsamare ver +imbalsamandolo imbalsamare ver +imbalsamano imbalsamare ver +imbalsamare imbalsamare ver +imbalsamarli imbalsamare ver +imbalsamarlo imbalsamare ver +imbalsamata imbalsamare ver +imbalsamate imbalsamare ver +imbalsamati imbalsamare ver +imbalsamato imbalsamare ver +imbalsamatore imbalsamatore nom +imbalsamatori imbalsamatore nom +imbalsamatrice imbalsamatore nom +imbalsamavano imbalsamare ver +imbalsamazione imbalsamazione nom +imbalsamazioni imbalsamazione nom +imbalsamò imbalsamare ver +imbambolata imbambolato adj +imbambolate imbambolato adj +imbambolati imbambolato adj +imbambolato imbambolato adj +imbandendo imbandire ver +imbandierare imbandierare ver +imbandierata imbandierare ver +imbandierate imbandierare ver +imbandierato imbandierare ver +imbandire imbandire ver +imbandirà imbandire ver +imbandisce imbandire ver +imbandiscono imbandire ver +imbandita imbandire ver +imbandite imbandire ver +imbanditi imbandire ver +imbandito imbandire ver +imbandì imbandire ver +imbarazza imbarazzare ver +imbarazzando imbarazzare ver +imbarazzano imbarazzare ver +imbarazzante imbarazzante adj +imbarazzanti imbarazzante adj +imbarazzare imbarazzare ver +imbarazzarla imbarazzare ver +imbarazzarlo imbarazzare ver +imbarazzarmi imbarazzare ver +imbarazzarsi imbarazzare ver +imbarazzata imbarazzare ver +imbarazzate imbarazzato adj +imbarazzati imbarazzare ver +imbarazzato imbarazzare ver +imbarazzava imbarazzare ver +imbarazzi imbarazzo nom +imbarazzo imbarazzo nom +imbarazzò imbarazzare ver +imbarbarimento imbarbarimento nom +imbarbarire imbarbarire ver +imbarbarita imbarbarire ver +imbarbariti imbarbarire ver +imbarbarito imbarbarire ver +imbarca imbarcare ver +imbarcaderi imbarcadero nom +imbarcadero imbarcadero nom +imbarcai imbarcare ver +imbarcando imbarcare ver +imbarcandola imbarcare ver +imbarcandole imbarcare ver +imbarcandoli imbarcare ver +imbarcandolo imbarcare ver +imbarcandosi imbarcare ver +imbarcano imbarcare ver +imbarcarci imbarcare ver +imbarcare imbarcare ver +imbarcarla imbarcare ver +imbarcarli imbarcare ver +imbarcarlo imbarcare ver +imbarcarmi imbarcare ver +imbarcarne imbarcare ver +imbarcarono imbarcare ver +imbarcarsi imbarcare ver +imbarcarti imbarcare ver +imbarcarvi imbarcare ver +imbarcasse imbarcare ver +imbarcassero imbarcare ver +imbarcata imbarcare ver +imbarcate imbarcare ver +imbarcati imbarcare ver +imbarcato imbarcare ver +imbarcava imbarcare ver +imbarcavano imbarcare ver +imbarcazione imbarcazione nom +imbarcazioni imbarcazione nom +imbarcheranno imbarcare ver +imbarcherà imbarcare ver +imbarchi imbarco nom +imbarchiamo imbarcare ver +imbarchiamoci imbarcare ver +imbarco imbarco nom +imbarcò imbarcare ver +imbardata imbardata nom +imbardate imbardata nom +imbastardita imbastardire ver +imbastendo imbastire ver +imbastirci imbastire ver +imbastire imbastire ver +imbastirgli imbastire ver +imbastirono imbastire ver +imbastisce imbastire ver +imbastisco imbastire ver +imbastiscono imbastire ver +imbastita imbastire ver +imbastite imbastire ver +imbastiti imbastire ver +imbastito imbastire ver +imbastitura imbastitura nom +imbastiture imbastitura nom +imbastiva imbastire ver +imbastì imbastire ver +imbatta imbattersi ver +imbattano imbattersi ver +imbatte imbattersi ver +imbattei imbattersi ver +imbattemmo imbattersi ver +imbattendo imbattersi ver +imbattendomi imbattersi ver +imbattendosi imbattersi ver +imbatteranno imbattersi ver +imbattere imbattersi ver +imbatteremo imbattersi ver +imbatterete imbattersi ver +imbattermi imbattersi ver +imbatterono imbattersi ver +imbattersi imbattersi ver +imbatterti imbattersi ver +imbattervi imbattersi ver +imbatterà imbattersi ver +imbatterò imbattersi ver +imbattesse imbattersi ver +imbattessero imbattersi ver +imbattessi imbattersi ver +imbattete imbattersi ver +imbatteva imbattersi ver +imbattevano imbattersi ver +imbattevo imbattersi ver +imbatti imbattersi ver +imbattiamo imbattersi ver +imbattibile imbattibile adj +imbattibili imbattibile adj +imbatto imbattersi ver +imbattono imbattersi ver +imbattuta imbattersi ver +imbattute imbattersi ver +imbattuti imbattersi ver +imbattuto imbattersi ver +imbattè imbattersi ver +imbavaglia imbavagliare ver +imbavagliandolo imbavagliare ver +imbavagliano imbavagliare ver +imbavagliare imbavagliare ver +imbavagliarlo imbavagliare ver +imbavagliarono imbavagliare ver +imbavagliata imbavagliare ver +imbavagliate imbavagliare ver +imbavagliati imbavagliare ver +imbavagliato imbavagliare ver +imbavagliava imbavagliare ver +imbavagliò imbavagliare ver +imbecca imbeccare ver +imbeccante imbeccare ver +imbeccanti imbeccare ver +imbeccare imbeccare ver +imbeccata imbeccata nom +imbeccate imbeccata nom +imbeccati imbeccare ver +imbeccato imbeccare ver +imbecco imbeccare ver +imbecille imbecille adj +imbecilli imbecille nom +imbecillità imbecillità nom +imbelle imbelle adj +imbellettano imbellettare ver +imbellettare imbellettare ver +imbellettata imbellettare ver +imbellettate imbellettare ver +imbellettati imbellettare ver +imbellettato imbellettare ver +imbelli imbelle adj +imbellire imbellire ver +imbellita imbellire ver +imbelliti imbellire ver +imberbe imberbe adj +imberbi imberbe adj +imbestialendosi imbestialire ver +imbestialire imbestialire ver +imbestialirsi imbestialire ver +imbestialisce imbestialire ver +imbestialita imbestialire ver +imbestialite imbestialire ver +imbestialiti imbestialire ver +imbestialito imbestialire ver +imbeveva imbevere ver +imbianca imbiancare ver +imbiancamento imbiancamento nom +imbiancando imbiancare ver +imbiancano imbiancare ver +imbiancante imbiancare ver +imbiancare imbiancare ver +imbiancarsi imbiancare ver +imbiancassero imbiancare ver +imbiancata imbiancare ver +imbiancate imbiancare ver +imbiancati imbiancato adj +imbiancato imbiancare ver +imbiancatura imbiancatura nom +imbiancature imbiancatura nom +imbianchimento imbianchimento nom +imbianchini imbianchino nom +imbianchino imbianchino nom +imbiancò imbiancare ver +imbibizione imbibizione nom +imbizzarrendosi imbizzarrire ver +imbizzarrire imbizzarrire ver +imbizzarrirono imbizzarrire ver +imbizzarrirsi imbizzarrire ver +imbizzarriscano imbizzarrire ver +imbizzarrisce imbizzarrire ver +imbizzarrita imbizzarrire ver +imbizzarrite imbizzarrire ver +imbizzarriti imbizzarrire ver +imbizzarrito imbizzarrire ver +imbizzarrì imbizzarrire ver +imbocca imboccare ver +imboccando imboccare ver +imboccano imboccare ver +imboccante imboccare ver +imboccare imboccare ver +imboccarla imboccare ver +imboccarlo imboccare ver +imboccarono imboccare ver +imboccasse imboccare ver +imboccata imboccare ver +imboccate imboccare ver +imboccati imboccare ver +imboccato imboccare ver +imboccatura imboccatura nom +imboccature imboccatura nom +imboccava imboccare ver +imboccavano imboccare ver +imboccheranno imboccare ver +imbocchi imbocco nom +imbocchiamo imboccare ver +imbocco imbocco nom +imboccò imboccare ver +imbolsire imbolsire ver +imbolsito imbolsire ver +imbonimento imbonimento nom +imbonire imbonire ver +imbonirsi imbonire ver +imbonitore imbonitore nom +imbonitori imbonitore nom +imbonitrice imbonitore nom +imborghesimento imborghesimento nom +imborghesisce imborghesire ver +imborghesita imborghesire ver +imborghesito imborghesire ver +imbosca imboscare ver +imboscamenti imboscamento nom +imboscamento imboscamento nom +imboscando imboscare ver +imboscare imboscare ver +imboscarsi imboscare ver +imboscata imboscata nom +imboscate imboscata nom +imboscati imboscato nom +imboscato imboscato nom +imboschimento imboschimento nom +imboschiti imboschire ver +imbottato imbottare ver +imbotte imbotte nom +imbottendola imbottire ver +imbotti imbotte nom +imbottiglia imbottigliare ver +imbottigliamenti imbottigliamento nom +imbottigliamento imbottigliamento nom +imbottigliando imbottigliare ver +imbottigliano imbottigliare ver +imbottigliare imbottigliare ver +imbottigliata imbottigliare ver +imbottigliate imbottigliare ver +imbottigliati imbottigliare ver +imbottigliato imbottigliare ver +imbottigliatore imbottigliatore nom +imbottigliatori imbottigliatore nom +imbottigliatrice imbottigliatore nom +imbottigliatrici imbottigliatore nom +imbottigliava imbottigliare ver +imbottigliavano imbottigliare ver +imbottigliò imbottigliare ver +imbottire imbottire ver +imbottirla imbottire ver +imbottirlo imbottire ver +imbottirsi imbottire ver +imbottisce imbottire ver +imbottiscono imbottire ver +imbottita imbottire ver +imbottite imbottire ver +imbottiti imbottire ver +imbottito imbottire ver +imbottitura imbottitura nom +imbottiture imbottitura nom +imbottivano imbottire ver +imbottì imbottire ver +imbracano imbracare ver +imbracare imbracare ver +imbracata imbracare ver +imbracati imbracare ver +imbracatura imbracatura nom +imbracature imbracatura nom +imbracci imbracciare ver +imbraccia imbracciare ver +imbracciando imbracciare ver +imbracciano imbracciare ver +imbracciante imbracciare ver +imbracciare imbracciare ver +imbracciarla imbracciare ver +imbracciarono imbracciare ver +imbracciata imbracciare ver +imbracciate imbracciare ver +imbracciati imbracciare ver +imbracciato imbracciare ver +imbracciatura imbracciatura nom +imbracciava imbracciare ver +imbraccio imbracciare ver +imbracciò imbracciare ver +imbraco imbracare ver +imbranata imbranato adj +imbranate imbranato adj +imbranati imbranato adj +imbranato imbranato adj +imbrancarsi imbrancare ver +imbratta imbrattare ver +imbrattacarte imbrattacarte nom +imbrattando imbrattare ver +imbrattandone imbrattare ver +imbrattandosi imbrattare ver +imbrattano imbrattare ver +imbrattare imbrattare ver +imbrattarono imbrattare ver +imbrattarsi imbrattare ver +imbrattata imbrattare ver +imbrattate imbrattare ver +imbrattatele imbrattatele nom +imbrattati imbrattare ver +imbrattato imbrattare ver +imbrattava imbrattare ver +imbratti imbrattare ver +imbrattò imbrattare ver +imbrecciata imbrecciare ver +imbrecciato imbrecciare ver +imbricata imbricato adj +imbricate imbricato adj +imbricati imbricato adj +imbricato imbricato adj +imbriferi imbrifero adj +imbrifero imbrifero adj +imbrigli imbrigliare ver +imbriglia imbrigliare ver +imbrigliamento imbrigliamento nom +imbrigliano imbrigliare ver +imbrigliante imbrigliare ver +imbrigliare imbrigliare ver +imbrigliarla imbrigliare ver +imbrigliarli imbrigliare ver +imbrigliarne imbrigliare ver +imbrigliarono imbrigliare ver +imbrigliata imbrigliare ver +imbrigliate imbrigliare ver +imbrigliati imbrigliare ver +imbrigliato imbrigliare ver +imbrigliava imbrigliare ver +imbrigliò imbrigliare ver +imbrocca imbroccare ver +imbroccare imbroccare ver +imbroccata imbroccare ver +imbroccato imbroccare ver +imbrocco imbroccare ver +imbroda imbrodare ver +imbrogli imbroglio nom +imbroglia imbrogliare ver +imbrogliando imbrogliare ver +imbrogliandoli imbrogliare ver +imbrogliandolo imbrogliare ver +imbrogliano imbrogliare ver +imbrogliare imbrogliare ver +imbrogliarla imbrogliare ver +imbrogliarli imbrogliare ver +imbrogliarlo imbrogliare ver +imbrogliarsi imbrogliare ver +imbrogliata imbrogliare ver +imbrogliate imbrogliare ver +imbrogliati imbrogliare ver +imbrogliato imbrogliare ver +imbrogliava imbrogliare ver +imbrogliavano imbrogliare ver +imbroglierà imbrogliare ver +imbroglio imbroglio nom +imbroglione imbroglione nom +imbroglioni imbroglione nom +imbrogliò imbrogliare ver +imbronciare imbronciare ver +imbronciata imbronciare ver +imbronciati imbronciare ver +imbronciato imbronciare ver +imbruna imbrunare ver +imbrunente imbrunire ver +imbrunenti imbrunire ver +imbrunire imbrunire ver +imbrunisce imbrunire ver +imbruniscono imbrunire ver +imbrunita imbrunire ver +imbrunite imbrunire ver +imbruniti imbrunire ver +imbrunito imbrunire ver +imbruniva imbrunire ver +imbruttire imbruttire ver +imbruttirsi imbruttire ver +imbruttisce imbruttire ver +imbruttita imbruttire ver +imbruttito imbruttire ver +imbuca imbucare ver +imbucando imbucare ver +imbucano imbucare ver +imbucare imbucare ver +imbucarla imbucare ver +imbucarle imbucare ver +imbucarne imbucare ver +imbucarsi imbucare ver +imbucata imbucare ver +imbucate imbucare ver +imbucati imbucare ver +imbucato imbucare ver +imbuchiamo imbucare ver +imbucò imbucare ver +imbullonata imbullonare ver +imbullonate imbullonare ver +imbullonati imbullonare ver +imbullonato imbullonare ver +imburrami imburrare ver +imburrata imburrare ver +imburrate imburrare ver +imburrati imburrare ver +imburrato imburrare ver +imbussolate imbussolare ver +imbuti imbuto nom +imbutiforme imbutiforme adj +imbutiformi imbutiforme adj +imbutitura imbutitura nom +imbuto imbuto nom +ime imo adj +imene imene nom +imenei imeneo nom +imeneo imeneo adj +imeni imene|imenio nom +imenio imenio nom +imenotteri imenotteri nom +imi imo adj +imita imitare ver +imitabile imitabile adj +imitabili imitabile adj +imitaci imitare ver +imitando imitare ver +imitandola imitare ver +imitandole imitare ver +imitandoli imitare ver +imitandolo imitare ver +imitandone imitare ver +imitandosi imitare ver +imitano imitare ver +imitante imitare ver +imitanti imitare ver +imitar imitare ver +imitarci imitare ver +imitare imitare ver +imitarla imitare ver +imitarle imitare ver +imitarli imitare ver +imitarlo imitare ver +imitarne imitare ver +imitarono imitare ver +imitasse imitare ver +imitassero imitare ver +imitassimo imitare ver +imitata imitare ver +imitate imitare ver +imitatelo imitare ver +imitati imitare ver +imitativa imitativo adj +imitative imitativo adj +imitativi imitativo adj +imitativo imitativo adj +imitato imitare ver +imitatore imitatore nom +imitatori imitatore nom +imitatrice imitatore nom +imitatrici imitatore nom +imitava imitare ver +imitavano imitare ver +imitazione imitazione nom +imitazioni imitazione nom +imiteranno imitare ver +imiterebbe imitare ver +imiterebbero imitare ver +imiterà imitare ver +imiterò imitare ver +imiti imitare ver +imitiamo imitare ver +imitino imitare ver +imito imitare ver +imitò imitare ver +immacolata immacolato adj +immacolate immacolato adj +immacolati immacolato adj +immacolato immacolato adj +immagazzina immagazzinare ver +immagazzinabili immagazzinabile adj +immagazzinaggio immagazzinaggio nom +immagazzinamenti immagazzinamento nom +immagazzinamento immagazzinamento nom +immagazzinando immagazzinare ver +immagazzinandola immagazzinare ver +immagazzinandole immagazzinare ver +immagazzinandoli immagazzinare ver +immagazzinandolo immagazzinare ver +immagazzinano immagazzinare ver +immagazzinare immagazzinare ver +immagazzinarla immagazzinare ver +immagazzinarle immagazzinare ver +immagazzinarli immagazzinare ver +immagazzinarlo immagazzinare ver +immagazzinarne immagazzinare ver +immagazzinarono immagazzinare ver +immagazzinarvi immagazzinare ver +immagazzinata immagazzinare ver +immagazzinate immagazzinare ver +immagazzinati immagazzinare ver +immagazzinato immagazzinare ver +immagazzinava immagazzinare ver +immagazzinavano immagazzinare ver +immagazzini immagazzinare ver +immagazzinò immagazzinare ver +immagina immaginare ver +immaginabile immaginabile adj +immaginabili immaginabile adj +immaginai immaginare ver +immaginale immaginare ver +immaginali immaginare ver +immaginalo immaginare ver +immaginando immaginare ver +immaginandola immaginare ver +immaginandoli immaginare ver +immaginandolo immaginare ver +immaginandone immaginare ver +immaginandosi immaginare ver +immaginano immaginare ver +immaginar immaginare ver +immaginarcelo immaginare ver +immaginarci immaginare ver +immaginare immaginare ver +immaginari immaginario adj +immaginaria immaginario adj +immaginarie immaginario adj +immaginario immaginario adj +immaginarla immaginare ver +immaginarle immaginare ver +immaginarli immaginare ver +immaginarlo immaginare ver +immaginarmelo immaginare ver +immaginarmi immaginare ver +immaginarne immaginare ver +immaginarono immaginare ver +immaginarsela immaginare ver +immaginarselo immaginare ver +immaginarsi immaginare ver +immaginarti immaginare ver +immaginarvi immaginare ver +immaginasse immaginare ver +immaginassero immaginare ver +immaginassi immaginare ver +immaginassimo immaginare ver +immaginata immaginare ver +immaginate immaginare ver +immaginatelo immaginare ver +immaginatevi immaginare ver +immaginati immaginare ver +immaginativa immaginativo adj +immaginative immaginativo adj +immaginativi immaginativo adj +immaginativo immaginativo adj +immaginato immaginare ver +immaginava immaginare ver +immaginavamo immaginare ver +immaginavano immaginare ver +immaginavi immaginare ver +immaginavo immaginare ver +immaginazione immaginazione nom +immaginazioni immaginazione nom +immagine immagine nom +immaginerai immaginare ver +immaginerebbe immaginare ver +immaginerei immaginare ver +immaginereste immaginare ver +immaginerete immaginare ver +immaginerà immaginare ver +immagini immagine nom +immaginiamo immaginare ver +immaginiamoci immaginare ver +immaginiamolo immaginare ver +immaginifica immaginifico adj +immaginifiche immaginifico adj +immaginifici immaginifico adj +immaginifico immaginifico adj +immaginino immaginare ver +immagino immaginare ver +immaginosa immaginoso adj +immaginosi immaginoso adj +immaginoso immaginoso adj +immaginò immaginare ver +immalinconire immalinconire ver +immancabile immancabile adj +immancabili immancabile adj +immancabilmente immancabilmente adv +immane immane adj +immanente immanente adj +immanenti immanente adj +immanentismo immanentismo nom +immanentista immanentista nom +immanenza immanenza nom +immanenze immanenza nom +immangiabile immangiabile adj +immangiabili immangiabile adj +immani immane adj +immantinente immantinente adv +immarcescibile immarcescibile adj +immarcescibili immarcescibile adj +immateriale immateriale adj +immateriali immateriale adj +immaterialità immaterialità nom +immatricola immatricolare ver +immatricolandole immatricolare ver +immatricolandolo immatricolare ver +immatricolandosi immatricolare ver +immatricolare immatricolare ver +immatricolarono immatricolare ver +immatricolarsi immatricolare ver +immatricolata immatricolare ver +immatricolate immatricolare ver +immatricolati immatricolare ver +immatricolato immatricolare ver +immatricolazione immatricolazione nom +immatricolazioni immatricolazione nom +immatricolò immatricolare ver +immatura immaturo adj +immature immaturo adj +immaturi immaturo adj +immaturità immaturità nom +immaturo immaturo adj +immedesima immedesimare ver +immedesimandosi immedesimare ver +immedesimano immedesimare ver +immedesimarci immedesimare ver +immedesimare immedesimare ver +immedesimarmi immedesimare ver +immedesimarono immedesimare ver +immedesimarsi immedesimare ver +immedesimasse immedesimare ver +immedesimata immedesimare ver +immedesimato immedesimare ver +immedesimava immedesimare ver +immedesimazione immedesimazione nom +immedesimazioni immedesimazione nom +immedesimi immedesimare ver +immedesimo immedesimare ver +immedesimò immedesimare ver +immediata immediato adj +immediatamente immediatamente adv +immediate immediato adj +immediatezza immediatezza nom +immediatezze immediatezza nom +immediati immediato adj +immediato immediato adj +immemorabile immemorabile adj +immemorabili immemorabile adj +immemore immemore adj +immemori immemore adj +immensa immenso adj +immense immenso adj +immensi immenso adj +immensità immensità nom +immenso immenso adj +immensurabili immensurabile adj +immerga immergere ver +immergano immergere ver +immerge immergere ver +immergendo immergere ver +immergendoci immergere ver +immergendogli immergere ver +immergendola immergere ver +immergendole immergere ver +immergendoli immergere ver +immergendolo immergere ver +immergendosi immergere ver +immergendovi immergere ver +immergente immergere ver +immergenti immergere ver +immergerci immergere ver +immergere immergere ver +immergerla immergere ver +immergerli immergere ver +immergerlo immergere ver +immergermi immergere ver +immergersi immergere ver +immergerti immergere ver +immergervi immergere ver +immergerà immergere ver +immergerò immergere ver +immergesse immergere ver +immergessero immergere ver +immergeva immergere ver +immergevano immergere ver +immergi immergere ver +immergiamo immergere ver +immergiamola immergere ver +immergiti immergere ver +immergo immergere ver +immergono immergere ver +immeritata immeritato adj +immeritatamente immeritatamente adv +immeritate immeritato adj +immeritati immeritato adj +immeritato immeritato adj +immeritevole immeritevole adj +immeritevoli immeritevole adj +immersa immergere ver +immerse immergere ver +immersero immergere ver +immersi immergere ver +immersione immersione nom +immersioni immersione nom +immerso immergere ver +immessa immettere ver +immesse immettere ver +immessi immettere ver +immesso immettere ver +immetta immettere ver +immettano immettere ver +immette immettere ver +immettendo immettere ver +immettendogli immettere ver +immettendola immettere ver +immettendole immettere ver +immettendoli immettere ver +immettendolo immettere ver +immettendone immettere ver +immettendosi immettere ver +immettendovi immettere ver +immetteranno immettere ver +immetterci immettere ver +immettere immettere ver +immettergli immettere ver +immetterla immettere ver +immetterle immettere ver +immetterli immettere ver +immetterlo immettere ver +immetterne immettere ver +immettersi immettere ver +immettervi immettere ver +immetterà immettere ver +immettesse immettere ver +immettessero immettere ver +immetteva immettere ver +immettevano immettere ver +immetti immettere ver +immettiamo immettere ver +immetto immettere ver +immettono immettere ver +immigra immigrare ver +immigraci immigrare ver +immigrando immigrare ver +immigrante immigrante adj +immigranti immigrante nom +immigrare immigrare ver +immigrarono immigrare ver +immigrata immigrare ver +immigrate immigrare ver +immigrati immigrato nom +immigrato immigrato nom +immigratori immigratorio adj +immigratoria immigratorio adj +immigratorie immigratorio adj +immigratorio immigratorio adj +immigravano immigrare ver +immigrazione immigrazione nom +immigrazioni immigrazione nom +immigrò immigrare ver +imminente imminente adj +imminenti imminente adj +imminenza imminenza nom +imminenze imminenza nom +immischi immischiare ver +immischia immischiare ver +immischiamo immischiare ver +immischiando immischiare ver +immischiandosi immischiare ver +immischiano immischiare ver +immischiarci immischiare ver +immischiare immischiare ver +immischiarmi immischiare ver +immischiarono immischiare ver +immischiarsi immischiare ver +immischiasse immischiare ver +immischiata immischiare ver +immischiate immischiare ver +immischiati immischiare ver +immischiato immischiare ver +immischiava immischiare ver +immischierà immischiare ver +immischino immischiare ver +immischio immischiare ver +immischiò immischiare ver +immise immettere ver +immiserimento immiserimento nom +immiserire immiserire ver +immiserita immiserire ver +immiseriti immiserire ver +immiserito immiserire ver +immisero immettere ver +immissari immissario nom +immissario immissario nom +immissione immissione nom +immissioni immissione nom +immistione immistione nom +immobile immobile adj +immobili immobile adj +immobiliare immobiliare adj +immobiliari immobiliare adj +immobilismo immobilismo nom +immobilità immobilità nom +immobilizza immobilizzare ver +immobilizzando immobilizzare ver +immobilizzandola immobilizzare ver +immobilizzandole immobilizzare ver +immobilizzandoli immobilizzare ver +immobilizzandolo immobilizzare ver +immobilizzandone immobilizzare ver +immobilizzandosi immobilizzare ver +immobilizzano immobilizzare ver +immobilizzante immobilizzare ver +immobilizzanti immobilizzare ver +immobilizzare immobilizzare ver +immobilizzargli immobilizzare ver +immobilizzarla immobilizzare ver +immobilizzarle immobilizzare ver +immobilizzarli immobilizzare ver +immobilizzarlo immobilizzare ver +immobilizzarono immobilizzare ver +immobilizzarsi immobilizzare ver +immobilizzarvi immobilizzare ver +immobilizzasse immobilizzare ver +immobilizzata immobilizzare ver +immobilizzate immobilizzare ver +immobilizzati immobilizzare ver +immobilizzato immobilizzare ver +immobilizzava immobilizzare ver +immobilizzavano immobilizzare ver +immobilizzazione immobilizzazione nom +immobilizzazioni immobilizzazione nom +immobilizzerà immobilizzare ver +immobilizzi immobilizzo nom +immobilizzo immobilizzo nom +immobilizzò immobilizzare ver +immoderata immoderato adj +immoderato immoderato adj +immodesta immodesto adj +immodesti immodesto adj +immodestia immodestia nom +immodesto immodesto adj +immodificate immodificato adj +immola immolare ver +immolando immolare ver +immolandosi immolare ver +immolano immolare ver +immolare immolare ver +immolarlo immolare ver +immolarono immolare ver +immolarsi immolare ver +immolasse immolare ver +immolata immolare ver +immolate immolare ver +immolati immolare ver +immolato immolare ver +immolava immolare ver +immolavano immolare ver +immolazione immolazione nom +immolazioni immolazione nom +immoleranno immolare ver +immolerebbe immolare ver +immolerà immolare ver +immolo immolare ver +immolò immolare ver +immonda immondo adj +immonde immondo adj +immondezza immondezza nom +immondezzai immondezzaio nom +immondezzaio immondezzaio nom +immondezze immondezza nom +immondi immondo adj +immondizia immondizia nom +immondizie immondizia nom +immondo immondo adj +immorale immorale adj +immorali immorale adj +immoralità immoralità nom +immortala immortalare ver +immortalando immortalare ver +immortalandola immortalare ver +immortalandoli immortalare ver +immortalano immortalare ver +immortalante immortalare ver +immortalare immortalare ver +immortalarla immortalare ver +immortalarli immortalare ver +immortalarlo immortalare ver +immortalarne immortalare ver +immortalarono immortalare ver +immortalata immortalare ver +immortalate immortalare ver +immortalati immortalare ver +immortalato immortalare ver +immortalava immortalare ver +immortalavano immortalare ver +immortale immortale adj +immortalerà immortalare ver +immortali immortale adj +immortalità immortalità nom +immortalò immortalare ver +immota immoto adj +immote immoto adj +immoti immoto adj +immotivata immotivato adj +immotivate immotivato adj +immotivati immotivato adj +immotivato immotivato adj +immoto immoto adj +immune immune adj +immuni immune adj +immunitari immunitario adj +immunitaria immunitario adj +immunitarie immunitario adj +immunitario immunitario adj +immunità immunità nom +immunizza immunizzare ver +immunizzando immunizzare ver +immunizzante immunizzare ver +immunizzare immunizzare ver +immunizzarsi immunizzare ver +immunizzati immunizzare ver +immunizzato immunizzare ver +immunizzazione immunizzazione nom +immunizzazioni immunizzazione nom +immunodeficienza immunodeficienza nom +immunodepresse immunodepresso adj +immunodepressi immunodepresso adj +immunologa immunologo nom +immunologia immunologia nom +immunologica immunologico adj +immunologiche immunologico adj +immunologici immunologico adj +immunologie immunologia nom +immunologo immunologo nom +immunoterapia immunoterapia nom +immusonirsi immusonirsi ver +immutabile immutabile adj +immutabili immutabile adj +immutabilità immutabilità nom +immutata immutato adj +immutate immutato adj +immutati immutato adj +immutato immutato adj +imo imo adj +impaccanti impaccare ver +impaccare impaccare ver +impaccata impaccare ver +impaccate impaccare ver +impaccati impaccare ver +impaccato impaccare ver +impacchetta impacchettare ver +impacchettando impacchettare ver +impacchettano impacchettare ver +impacchettare impacchettare ver +impacchettarla impacchettare ver +impacchettarsi impacchettare ver +impacchettata impacchettare ver +impacchettate impacchettare ver +impacchettati impacchettare ver +impacchettato impacchettare ver +impacchetto impacchettare ver +impacchi impacco nom +impacci impaccio nom +impaccia impacciare ver +impacciano impacciare ver +impacciare impacciare ver +impacciarsi impacciare ver +impacciata impacciare ver +impacciate impacciare ver +impacciati impacciare ver +impacciato impacciare ver +impaccio impaccio nom +impacco impacco nom +impadronendo impadronirsi ver +impadronendosene impadronirsi ver +impadronendosi impadronirsi ver +impadronii impadronirsi ver +impadroniranno impadronirsi ver +impadronirci impadronirsi ver +impadronire impadronirsi ver +impadronirebbe impadronirsi ver +impadronirmi impadronirsi ver +impadronirono impadronirsi ver +impadronirsene impadronirsi ver +impadronirsi impadronirsi ver +impadronirà impadronirsi ver +impadronisca impadronirsi ver +impadroniscano impadronirsi ver +impadronisce impadronirsi ver +impadroniscono impadronirsi ver +impadronisse impadronirsi ver +impadronissero impadronirsi ver +impadronita impadronirsi ver +impadronite impadronirsi ver +impadronitesi impadronirsi ver +impadroniti impadronirsi ver +impadronito impadronirsi ver +impadroniva impadronirsi ver +impadronivano impadronirsi ver +impadronì impadronirsi ver +impagabile impagabile adj +impagabili impagabile adj +impagina impaginare ver +impaginando impaginare ver +impaginandola impaginare ver +impaginano impaginare ver +impaginare impaginare ver +impaginarla impaginare ver +impaginarle impaginare ver +impaginarlo impaginare ver +impaginata impaginare ver +impaginate impaginare ver +impaginati impaginare ver +impaginato impaginare ver +impaginatore impaginatore nom +impaginatori impaginatore nom +impaginatura impaginatura nom +impaginava impaginare ver +impaginazione impaginazione nom +impaginazioni impaginazione nom +impagini impaginare ver +impagino impaginare ver +impaglia impagliare ver +impagliare impagliare ver +impagliata impagliare ver +impagliate impagliare ver +impagliati impagliare ver +impagliato impagliare ver +impagliatore impagliatore nom +impagliatori impagliatore nom +impagliatrice impagliatore nom +impagliatura impagliatura nom +impagliature impagliatura nom +impala impalare ver +impalando impalare ver +impalandola impalare ver +impalandolo impalare ver +impalano impalare ver +impalante impalare ver +impalare impalare ver +impalarla impalare ver +impalarli impalare ver +impalarlo impalare ver +impalarono impalare ver +impalarsi impalare ver +impalata impalare ver +impalate impalare ver +impalati impalare ver +impalato impalare ver +impalava impalare ver +impalcata impalcare ver +impalcati impalcato nom +impalcato impalcato nom +impalcatura impalcatura nom +impalcature impalcatura nom +impalla impallare ver +impallano impallare ver +impallare impallare ver +impallata impallare ver +impallati impallare ver +impallato impallare ver +impallavano impallare ver +impallidire impallidire ver +impallidirà impallidire ver +impallidisce impallidire ver +impallidiscono impallidire ver +impalliditi impallidire ver +impallidito impallidire ver +impallidiva impallidire ver +impallidì impallidire ver +impallina impallinare ver +impallinano impallinare ver +impallinare impallinare ver +impallinarlo impallinare ver +impallinata impallinare ver +impallinati impallinare ver +impallinato impallinare ver +impalma impalmare ver +impalmando impalmare ver +impalmandone impalmare ver +impalmare impalmare ver +impalmata impalmare ver +impalmato impalmare ver +impalmò impalmare ver +impalo impalare ver +impalpabile impalpabile adj +impalpabili impalpabile adj +impalpabilità impalpabilità nom +impaluda impaludare ver +impaludamenti impaludamento nom +impaludamento impaludamento nom +impaludandosi impaludare ver +impaludano impaludare ver +impaludare impaludare ver +impaludarono impaludare ver +impaludarsi impaludare ver +impaludata impaludare ver +impaludate impaludare ver +impaludati impaludare ver +impaludato impaludare ver +impaludava impaludare ver +impaludavano impaludare ver +impaludò impaludare ver +impalò impalare ver +impana impanare ver +impanano impanare ver +impanare impanare ver +impanata impanare ver +impanate impanare ver +impanati impanare ver +impanato impanare ver +impannata impannare ver +impantana impantanare ver +impantanano impantanare ver +impantanarci impantanare ver +impantanare impantanare ver +impantanarmi impantanare ver +impantanarono impantanare ver +impantanarsi impantanare ver +impantanata impantanare ver +impantanate impantanare ver +impantanati impantanare ver +impantanato impantanare ver +impantanava impantanare ver +impantanavano impantanare ver +impantanò impantanare ver +impappina impappinare ver +impappinato impappinare ver +impara imparare ver +imparabile imparabile adj +imparabili imparabile adj +imparai imparare ver +imparale imparare ver +imparalo imparare ver +imparando imparare ver +imparandoli imparare ver +imparandolo imparare ver +imparandone imparare ver +imparano imparare ver +imparar imparare ver +imparare imparare ver +impararla imparare ver +impararle imparare ver +impararli imparare ver +impararlo imparare ver +impararmi imparare ver +impararne imparare ver +impararono imparare ver +impararsi imparare ver +impararti imparare ver +impararvi imparare ver +imparasse imparare ver +imparassero imparare ver +imparassi imparare ver +imparassimo imparare ver +imparata imparare ver +imparate imparare ver +imparatevi imparare ver +imparati imparare ver +imparaticci imparaticcio nom +imparaticcio imparaticcio nom +imparato imparare ver +imparava imparare ver +imparavano imparare ver +imparavo imparare ver +impareggiabile impareggiabile adj +impareggiabili impareggiabile adj +imparenta imparentare ver +imparentando imparentare ver +imparentandolo imparentare ver +imparentandosi imparentare ver +imparentano imparentare ver +imparentare imparentare ver +imparentarono imparentare ver +imparentarsi imparentare ver +imparentata imparentare ver +imparentate imparentare ver +imparentatesi imparentare ver +imparentati imparentare ver +imparentato imparentare ver +imparentava imparentare ver +imparentavano imparentare ver +imparenteranno imparentare ver +imparenterà imparentare ver +imparentò imparentare ver +imparerai imparare ver +impareranno imparare ver +imparerebbe imparare ver +imparerei imparare ver +impareremmo imparare ver +impareremo imparare ver +imparerete imparare ver +imparerà imparare ver +imparerò imparare ver +impari impari adj +impariamo imparare ver +impariate imparare ver +imparino imparare ver +imparipennata imparipennato adj +imparipennate imparipennato adj +imparipennato imparipennato adj +imparisillabi imparisillabo adj +imparo imparare ver +imparruccato imparruccare ver +impartendo impartire ver +impartendogli impartire ver +impartendole impartire ver +impartiamo impartire ver +impartir impartire ver +impartiranno impartire ver +impartire impartire ver +impartirgli impartire ver +impartirla impartire ver +impartirle impartire ver +impartirne impartire ver +impartirono impartire ver +impartirsi impartire ver +impartirà impartire ver +impartisca impartire ver +impartisce impartire ver +impartisci impartire ver +impartisco impartire ver +impartiscono impartire ver +impartisse impartire ver +impartita impartire ver +impartite impartire ver +impartitegli impartire ver +impartitele impartire ver +impartiti impartire ver +impartito impartire ver +impartiva impartire ver +impartivano impartire ver +impartì impartire ver +imparziale imparziale adj +imparziali imparziale adj +imparzialità imparzialità nom +imparò imparare ver +impasse impasse nom +impassibile impassibile adj +impassibili impassibile adj +impassibilità impassibilità nom +impasta impastare ver +impastando impastare ver +impastandoli impastare ver +impastano impastare ver +impastare impastare ver +impastarlo impastare ver +impastata impastare ver +impastate impastato adj +impastati impastare ver +impastato impastato adj +impastatrice impastatore nom +impastatrici impastatore nom +impastatura impastatura nom +impastava impastare ver +impastavano impastare ver +impasti impasto nom +impasto impasto nom +impastoiare impastoiare ver +impastoiata impastoiare ver +impastoiato impastoiare ver +impastò impastare ver +impatta impattare ver +impattando impattare ver +impattano impattare ver +impattante impattare ver +impattanti impattare ver +impattare impattare ver +impattarono impattare ver +impattarsi impattare ver +impattasse impattare ver +impattata impattare ver +impattate impattare ver +impattati impattare ver +impattato impattare ver +impattava impattare ver +impattavano impattare ver +impatterebbe impattare ver +impatterà impattare ver +impatti impatto nom +impattino impattare ver +impatto impatto nom +impattò impattare ver +impaurendo impaurire ver +impaurire impaurire ver +impaurirli impaurire ver +impaurirlo impaurire ver +impaurirono impaurire ver +impaurirsi impaurire ver +impaurisce impaurire ver +impauriscono impaurire ver +impaurita impaurire ver +impaurite impaurire ver +impauriti impaurire ver +impaurito impaurire ver +impauriva impaurire ver +impaurivano impaurire ver +impaurì impaurire ver +impavesare impavesare ver +impavesate impavesata nom +impavida impavido adj +impavide impavido adj +impavidi impavido adj +impavido impavido adj +impaziente impaziente adj +impazienti impaziente adj +impazienza impazienza nom +impazienze impazienza nom +impazza impazzare ver +impazzando impazzare ver +impazzano impazzare ver +impazzare impazzare ver +impazzarono impazzare ver +impazzata impazzare ver +impazzato impazzare ver +impazzava impazzare ver +impazzavano impazzare ver +impazzendo impazzire ver +impazziranno impazzire ver +impazzire impazzire ver +impazzirebbero impazzire ver +impazzirei impazzire ver +impazziremmo impazzire ver +impazziremo impazzire ver +impazzirono impazzire ver +impazzirà impazzire ver +impazzirò impazzire ver +impazzisca impazzire ver +impazziscano impazzire ver +impazzisce impazzire ver +impazzisci impazzire ver +impazzisco impazzire ver +impazziscono impazzire ver +impazzisse impazzire ver +impazzissimo impazzire ver +impazzita impazzire ver +impazzite impazzire ver +impazziti impazzire ver +impazzito impazzire ver +impazziva impazzire ver +impazzivano impazzire ver +impazzivo impazzire ver +impazzì impazzire ver +impeccabile impeccabile adj +impeccabili impeccabile adj +impeccabilità impeccabilità nom +impeciata impeciare ver +impeciato impeciare ver +impedendo impedire ver +impedendoci impedire ver +impedendogli impedire ver +impedendoglielo impedire ver +impedendole impedire ver +impedendoli impedire ver +impedendolo impedire ver +impedendomi impedire ver +impedendone impedire ver +impedendosi impedire ver +impedendoti impedire ver +impedendovi impedire ver +impedente impedire ver +impedenti impedire ver +impedenza impedenza nom +impedenze impedenza nom +impediamo impedire ver +impediente impediente adj +impedienti impediente adj +impedimenti impedimento nom +impedimento impedimento nom +impedir impedire ver +impediranno impedire ver +impedirci impedire ver +impedire impedire ver +impedirebbe impedire ver +impedirebbero impedire ver +impediremo impedire ver +impedirgli impedire ver +impedirglielo impedire ver +impedirla impedire ver +impedirle impedire ver +impedirli impedire ver +impedirlo impedire ver +impedirmelo impedire ver +impedirmi impedire ver +impedirne impedire ver +impedirono impedire ver +impedirsi impedire ver +impedirtelo impedire ver +impedirti impedire ver +impedirvelo impedire ver +impedirvi impedire ver +impedirà impedire ver +impedirò impedire ver +impedisca impedire ver +impediscano impedire ver +impedisce impedire ver +impedisci impedire ver +impedisco impedire ver +impediscono impedire ver +impedisse impedire ver +impedissero impedire ver +impedita impedire ver +impedite impedire ver +impediti impedire ver +impedito impedire ver +impediva impedire ver +impedivano impedire ver +impedivo impedire ver +impedì impedire ver +impegna impegnare ver +impegnammo impegnare ver +impegnando impegnare ver +impegnandoci impegnare ver +impegnandola impegnare ver +impegnandole impegnare ver +impegnandoli impegnare ver +impegnandolo impegnare ver +impegnandomi impegnare ver +impegnandone impegnare ver +impegnandosi impegnare ver +impegnandoti impegnare ver +impegnandovi impegnare ver +impegnano impegnare ver +impegnanti impegnare ver +impegnarci impegnare ver +impegnare impegnare ver +impegnarla impegnare ver +impegnarle impegnare ver +impegnarli impegnare ver +impegnarlo impegnare ver +impegnarmi impegnare ver +impegnarono impegnare ver +impegnarsi impegnare ver +impegnarti impegnare ver +impegnarvi impegnare ver +impegnasi impegnare ver +impegnasse impegnare ver +impegnassero impegnare ver +impegnassimo impegnare ver +impegnata impegnare ver +impegnate impegnare ver +impegnatevi impegnare ver +impegnati impegnare ver +impegnativa impegnativo adj +impegnative impegnativo adj +impegnativi impegnativo adj +impegnativo impegnativo adj +impegnato impegnare ver +impegnava impegnare ver +impegnavano impegnare ver +impegnavo impegnare ver +impegneranno impegnare ver +impegnerebbe impegnare ver +impegnerebbero impegnare ver +impegnerei impegnare ver +impegneremo impegnare ver +impegnerà impegnare ver +impegnerò impegnare ver +impegni impegno nom +impegniamo impegnare ver +impegniamoci impegnare ver +impegnino impegnare ver +impegno impegno nom +impegnò impegnare ver +impegolano impegolare ver +impegolarsi impegolare ver +impegolati impegolare ver +impegolato impegolare ver +impelagandosi impelagarsi ver +impelagarci impelagarsi ver +impelagare impelagarsi ver +impelagarmi impelagarsi ver +impelagarsi impelagarsi ver +impelagata impelagarsi ver +impelagati impelagarsi ver +impelagato impelagarsi ver +impelaghiamo impelagarsi ver +impellente impellente adj +impellenti impellente adj +impellicciata impellicciare ver +impellicciate impellicciare ver +impellicciato impellicciare ver +impenetrabile impenetrabile adj +impenetrabili impenetrabile adj +impenetrabilità impenetrabilità nom +impenitente impenitente adj +impenitenti impenitente adj +impenna impennare ver +impennaggi impennaggio nom +impennaggio impennaggio nom +impennando impennare ver +impennandosi impennare ver +impennano impennare ver +impennare impennare ver +impennarono impennare ver +impennarsi impennare ver +impennata impennata nom +impennate impennata nom +impennati impennare ver +impennato impennare ver +impennerà impennare ver +impenni impennare ver +impennò impennare ver +impensabile impensabile adj +impensabili impensabile adj +impensata impensato adj +impensate impensato adj +impensati impensato adj +impensato impensato adj +impensierire impensierire ver +impensierirla impensierire ver +impensierirli impensierire ver +impensierirlo impensierire ver +impensierirono impensierire ver +impensierisce impensierire ver +impensierita impensierire ver +impensierite impensierire ver +impensierito impensierire ver +impensieriva impensierire ver +impensierì impensierire ver +impepata impepare ver +impera imperare ver +imperale imperare ver +imperali imperare ver +imperando imperare ver +imperano imperare ver +imperante imperare ver +imperanti imperare ver +imperare imperare ver +imperarono imperare ver +imperasse imperare ver +imperata imperare ver +imperati imperare ver +imperativa imperativo adj +imperativamente imperativamente adv +imperative imperativo adj +imperativi imperativo nom +imperativo imperativo adj +imperato imperare ver +imperatore imperatore nom +imperatori imperatore nom +imperatrice imperatore nom +imperatrici imperatore nom +imperava imperare ver +imperavano imperare ver +impercettibile impercettibile adj +impercettibili impercettibile adj +imperdonabile imperdonabile adj +imperdonabili imperdonabile adj +imperfetta imperfetto adj +imperfette imperfetto adj +imperfetti imperfetto adj +imperfetto imperfetto adj +imperfezione imperfezione nom +imperfezioni imperfezione nom +imperi imperio|impero nom +imperia imperiare ver +imperiale imperiale adj +imperiali imperiale adj +imperialismi imperialismo nom +imperialismo imperialismo nom +imperialista imperialista adj +imperialiste imperialista adj +imperialisti imperialista adj +imperialistica imperialistico adj +imperialistiche imperialistico adj +imperialistici imperialistico adj +imperialistico imperialistico adj +imperii imperiare ver +imperio imperio nom +imperiosa imperioso adj +imperiose imperioso adj +imperiosi imperioso adj +imperiosità imperiosità nom +imperioso imperioso adj +imperitura imperituro adj +imperiture imperituro adj +imperituri imperituro adj +imperituro imperituro adj +imperizia imperizia nom +impermeabile impermeabile adj +impermeabili impermeabile adj +impermeabilità impermeabilità nom +impermeabilizza impermeabilizzare ver +impermeabilizzando impermeabilizzare ver +impermeabilizzano impermeabilizzare ver +impermeabilizzante impermeabilizzare ver +impermeabilizzanti impermeabilizzare ver +impermeabilizzare impermeabilizzare ver +impermeabilizzarle impermeabilizzare ver +impermeabilizzarli impermeabilizzare ver +impermeabilizzata impermeabilizzare ver +impermeabilizzate impermeabilizzare ver +impermeabilizzati impermeabilizzare ver +impermeabilizzato impermeabilizzare ver +impermeabilizzazione impermeabilizzazione nom +impermeabilizzazioni impermeabilizzazione nom +impernia imperniare ver +imperniando imperniare ver +imperniandosi imperniare ver +imperniano imperniare ver +imperniare imperniare ver +imperniarsi imperniare ver +imperniata imperniare ver +imperniate imperniare ver +imperniati imperniare ver +imperniato imperniare ver +imperniava imperniare ver +imperniò imperniare ver +impero impero nom +imperscrutabile imperscrutabile adj +imperscrutabili imperscrutabile adj +imperscrutabilità imperscrutabilità nom +impersona impersonare ver +impersonale impersonale adj +impersonali impersonale adj +impersonalità impersonalità nom +impersonalmente impersonalmente adv +impersonando impersonare ver +impersonandolo impersonare ver +impersonano impersonare ver +impersonante impersonare ver +impersonare impersonare ver +impersonarla impersonare ver +impersonarlo impersonare ver +impersonarne impersonare ver +impersonarono impersonare ver +impersonasse impersonare ver +impersonata impersonare ver +impersonate impersonare ver +impersonati impersonare ver +impersonato impersonare ver +impersonava impersonare ver +impersonavano impersonare ver +impersonerai impersonare ver +impersoneranno impersonare ver +impersoneremo impersonare ver +impersonerete impersonare ver +impersonerà impersonare ver +impersoni impersonare ver +impersoniamo impersonare ver +impersono impersonare ver +impersonò impersonare ver +imperterrita imperterrito adj +imperterrite imperterrito adj +imperterriti imperterrito adj +imperterrito imperterrito adj +impertinente impertinente adj +impertinenti impertinente adj +impertinenza impertinenza nom +impertinenze impertinenza nom +imperturbabile imperturbabile adj +imperturbabili imperturbabile adj +imperturbabilità imperturbabilità nom +imperturbata imperturbato adj +imperturbate imperturbato adj +imperturbati imperturbato adj +imperturbato imperturbato adj +imperversa imperversare ver +imperversando imperversare ver +imperversano imperversare ver +imperversante imperversare ver +imperversanti imperversare ver +imperversare imperversare ver +imperversarono imperversare ver +imperversasse imperversare ver +imperversata imperversare ver +imperversati imperversare ver +imperversato imperversare ver +imperversava imperversare ver +imperversavano imperversare ver +imperverseranno imperversare ver +imperverserà imperversare ver +imperverso imperversare ver +imperversò imperversare ver +impervi impervio adj +impervia impervio adj +impervie impervio adj +impervio impervio adj +imperò imperare ver +impestate impestato adj +impeti impeto nom +impetigine impetigine nom +impetiginosa impetiginoso adj +impeto impeto nom +impetra impetrare ver +impetrando impetrare ver +impetrare impetrare ver +impetrata impetrare ver +impetrate impetrare ver +impetro impetrare ver +impetrò impetrare ver +impetuosa impetuoso adj +impetuose impetuoso adj +impetuosi impetuoso adj +impetuosità impetuosità nom +impetuoso impetuoso adj +impiagata impiagare ver +impiagati impiagare ver +impiagato impiagare ver +impiallacciata impiallacciare ver +impiallacciate impiallacciare ver +impiallacciati impiallacciare ver +impiallacciato impiallacciare ver +impiallacciatura impiallacciatura nom +impianta impiantare ver +impiantabili impiantabili adj +impiantando impiantare ver +impiantandogli impiantare ver +impiantandole impiantare ver +impiantandosi impiantare ver +impiantandovi impiantare ver +impiantano impiantare ver +impiantanti impiantare ver +impiantare impiantare ver +impiantargli impiantare ver +impiantarla impiantare ver +impiantarle impiantare ver +impiantarlo impiantare ver +impiantarono impiantare ver +impiantarselo impiantare ver +impiantarsi impiantare ver +impiantarvi impiantare ver +impiantasse impiantare ver +impiantata impiantare ver +impiantate impiantare ver +impiantategli impiantare ver +impiantati impiantare ver +impiantato impiantare ver +impiantava impiantare ver +impiantavano impiantare ver +impianterà impiantare ver +impianti impianto nom +impiantino impiantare ver +impiantista impiantista adj +impiantisti impiantista adj +impiantistica impiantistica nom +impiantistiche impiantistica nom +impiantito impiantire ver +impianto impianto nom +impiantò impiantare ver +impiastrato impiastrare ver +impiastri impiastro nom +impiastriccia impiastricciare ver +impiastricciare impiastricciare ver +impiastricciati impiastricciare ver +impiastricciato impiastricciare ver +impiastro impiastro nom +impicca impiccare ver +impiccagione impiccagione nom +impiccagioni impiccagione nom +impiccalo impiccare ver +impiccamento impiccamento nom +impiccando impiccare ver +impiccandoli impiccare ver +impiccandolo impiccare ver +impiccandone impiccare ver +impiccandosi impiccare ver +impiccano impiccare ver +impiccarci impiccare ver +impiccare impiccare ver +impiccarla impiccare ver +impiccarle impiccare ver +impiccarli impiccare ver +impiccarlo impiccare ver +impiccarmi impiccare ver +impiccarono impiccare ver +impiccarsi impiccare ver +impiccarti impiccare ver +impiccata impiccare ver +impiccate impiccare ver +impiccateli impiccare ver +impiccati impiccare ver +impiccato impiccare ver +impiccava impiccare ver +impiccavano impiccare ver +impiccheranno impiccare ver +impiccherei impiccare ver +impiccherà impiccare ver +impiccherò impiccare ver +impicchiamo impiccare ver +impicchiamoli impiccare ver +impicchiamolo impiccare ver +impicchino impiccare ver +impicci impiccio nom +impiccia impicciare ver +impicciano impicciare ver +impicciare impicciare ver +impicciarmi impicciare ver +impicciarsi impicciare ver +impicciata impicciare ver +impicciato impicciare ver +impiccio impiccio nom +impicciona impiccione nom +impiccione impiccione nom +impiccioni impiccione nom +impiccò impiccare ver +impiega impiegare ver +impiegai impiegare ver +impiegando impiegare ver +impiegandoci impiegare ver +impiegandola impiegare ver +impiegandole impiegare ver +impiegandoli impiegare ver +impiegandolo impiegare ver +impiegandone impiegare ver +impiegandosi impiegare ver +impiegandovi impiegare ver +impiegano impiegare ver +impiegante impiegare ver +impieganti impiegare ver +impiegarci impiegare ver +impiegare impiegare ver +impiegarla impiegare ver +impiegarle impiegare ver +impiegarli impiegare ver +impiegarlo impiegare ver +impiegarne impiegare ver +impiegarono impiegare ver +impiegarsi impiegare ver +impiegarvi impiegare ver +impiegasse impiegare ver +impiegassero impiegare ver +impiegata impiegare ver +impiegate impiegare ver +impiegati impiegare ver +impiegatizi impiegatizio adj +impiegatizia impiegatizio adj +impiegatizie impiegatizio adj +impiegatizio impiegatizio adj +impiegato impiegare ver +impiegava impiegare ver +impiegavano impiegare ver +impiegavo impiegare ver +impiegheranno impiegare ver +impiegherebbe impiegare ver +impiegherebbero impiegare ver +impiegherei impiegare ver +impiegheremmo impiegare ver +impiegheremo impiegare ver +impiegherete impiegare ver +impiegherà impiegare ver +impiegherò impiegare ver +impieghi impiego nom +impieghiamo impiegare ver +impieghino impiegare ver +impiego impiego nom +impiegò impiegare ver +impietosa impietoso adj +impietose impietoso adj +impietosendosi impietosire ver +impietosi impietoso adj +impietosire impietosire ver +impietosirlo impietosire ver +impietosirmi impietosire ver +impietosirsi impietosire ver +impietosiscano impietosire ver +impietosisce impietosire ver +impietosiscono impietosire ver +impietosita impietosire ver +impietosite impietosire ver +impietositi impietosire ver +impietosito impietosire ver +impietoso impietoso adj +impietosì impietosire ver +impietrire impietrire ver +impietrirsi impietrire ver +impietrita impietrire ver +impietrite impietrire ver +impietriti impietrire ver +impietrito impietrire ver +impiglia impigliare ver +impigliandosi impigliare ver +impigliano impigliare ver +impigliar impigliare ver +impigliare impigliare ver +impigliarono impigliare ver +impigliarsi impigliare ver +impigliasse impigliare ver +impigliata impigliare ver +impigliate impigliare ver +impigliati impigliare ver +impigliato impigliare ver +impigliavano impigliare ver +impiglino impigliare ver +impigliò impigliare ver +impigrire impigrire ver +impigrirsi impigrire ver +impigrito impigrire ver +impila impilare ver +impilando impilare ver +impilandosi impilare ver +impilare impilare ver +impilarli impilare ver +impilarsi impilare ver +impilata impilare ver +impilate impilare ver +impilati impilare ver +impilato impilare ver +impingua impinguare ver +impinguare impinguare ver +impiombato impiombare ver +impiombatura impiombatura nom +impipa impiparsi ver +impipandosene impiparsi ver +impipare impiparsi ver +impipo impiparsi ver +impiumano impiumare ver +impiumarlo impiumare ver +impiumate impiumare ver +impiumati impiumare ver +impiumato impiumare ver +implacabile implacabile adj +implacabili implacabile adj +implacabilità implacabilità nom +implementare implementare ver +implementazione implementazione nom +implica implicare ver +implicando implicare ver +implicano implicare ver +implicante implicare ver +implicanti implicare ver +implicare implicare ver +implicarla implicare ver +implicarlo implicare ver +implicarne implicare ver +implicarono implicare ver +implicarsi implicare ver +implicasse implicare ver +implicassero implicare ver +implicata implicare ver +implicate implicare ver +implicati implicare ver +implicato implicare ver +implicava implicare ver +implicavano implicare ver +implicazione implicazione nom +implicazioni implicazione nom +implicherebbe implicare ver +implicherebbero implicare ver +implicherà implicare ver +implichi implicare ver +implichino implicare ver +implicita implicito adj +implicitamente implicitamente adv +implicite implicito adj +impliciti implicito adj +implicito implicito adj +implico implicare ver +implicò implicare ver +implora implorare ver +implorai implorare ver +implorando implorare ver +implorandogli implorare ver +implorandola implorare ver +implorandoli implorare ver +implorandolo implorare ver +implorandone implorare ver +implorano implorare ver +implorante implorante adj +imploranti implorante adj +implorar implorare ver +implorare implorare ver +implorargli implorare ver +implorarla implorare ver +implorarlo implorare ver +implorarne implorare ver +implorarono implorare ver +implorasse implorare ver +implorassero implorare ver +implorata implorare ver +implorate implorare ver +implorato implorare ver +implorava implorare ver +imploravano implorare ver +imploravo implorare ver +implorazione implorazione nom +implorazioni implorazione nom +imploreranno implorare ver +implorerà implorare ver +implori implorare ver +imploriamo implorare ver +imploro implorare ver +implorò implorare ver +implume implume adj +implumi implume adj +impluvi impluvio nom +impluvio impluvio nom +impolitico impolitico adj +impollina impollinare ver +impollinando impollinare ver +impollinano impollinare ver +impollinare impollinare ver +impollinata impollinare ver +impollinate impollinare ver +impollinati impollinare ver +impollinato impollinare ver +impollinazione impollinazione nom +impollinazioni impollinazione nom +impolvera impolverare ver +impolverare impolverare ver +impolverarsi impolverare ver +impolverata impolverare ver +impolverate impolverare ver +impolverati impolverare ver +impolverato impolverare ver +impomatata impomatare ver +impomatati impomatare ver +impomatato impomatare ver +imponderabile imponderabile adj +imponderabili imponderabile adj +impone imporre ver +imponendo imporre ver +imponendogli imporre ver +imponendola imporre ver +imponendole imporre ver +imponendoli imporre ver +imponendolo imporre ver +imponendone imporre ver +imponendosi imporre ver +imponendovi imporre ver +imponente imponente adj +imponenti imponente adj +imponenza imponenza nom +imponesse imporre ver +imponessero imporre ver +imponete imporre ver +imponeva imporre ver +imponevano imporre ver +imponga imporre ver +impongano imporre ver +impongo imporre ver +impongono imporre ver +imponi imporre ver +imponiamo imporre ver +imponibile imponibile adj +imponibili imponibile adj +imponibilità imponibilità nom +impopolare impopolare adj +impopolari impopolare adj +impopolarità impopolarità nom +impor imporre ver +imporci imporre ver +imporgli imporre ver +imporgliela imporre ver +imporglielo imporre ver +imporgliene imporre ver +imporla imporre ver +imporle imporre ver +imporli imporre ver +imporlo imporre ver +impormi imporre ver +imporne imporre ver +imporporata imporporare ver +imporranno imporre ver +imporre imporre ver +imporrebbe imporre ver +imporrebbero imporre ver +imporrei imporre ver +imporremmo imporre ver +imporrà imporre ver +imporrò imporre ver +imporsi imporre ver +import import nom +importa importare ver +importabile importabile adj +importabili importabile adj +importaci importare ver +importando importare ver +importandogli importare ver +importandole importare ver +importandoli importare ver +importandolo importare ver +importandone importare ver +importandovi importare ver +importane importare ver +importano importare ver +importante importante adj +importanti importante adj +importantissima importantissimo adj +importantissime importantissimo adj +importantissimi importantissimo adj +importantissimo importantissimo adj +importanza importanza nom +importar importare ver +importarci importare ver +importare importare ver +importargli importare ver +importargliene importare ver +importarla importare ver +importarle importare ver +importarli importare ver +importarlo importare ver +importarmene importare ver +importarne importare ver +importarono importare ver +importarsene importare ver +importarti importare ver +importarvi importare ver +importasse importare ver +importassero importare ver +importata importare ver +importate importare ver +importateli importare ver +importati importare ver +importato importare ver +importatore importatore adj +importatori importatore nom +importatrice importatore adj +importatrici importatore adj +importava importare ver +importavano importare ver +importazione importazione nom +importazioni importazione nom +importelo imporre ver +importeranno importare ver +importerebbe importare ver +importerebbero importare ver +importerei importare ver +importerà importare ver +importi importo nom +importiamo importare ver +importino importare ver +importo importo nom +importuna importuno adj +importunando importunare ver +importunandola importunare ver +importunano importunare ver +importunare importunare ver +importunarla importunare ver +importunarle importunare ver +importunarlo importunare ver +importunarmi importunare ver +importunarti importunare ver +importunata importunare ver +importunate importunare ver +importunati importunare ver +importunato importunare ver +importunava importunare ver +importunavano importunare ver +importune importuno adj +importuni importuno adj +importunità importunità nom +importuno importuno adj +importunò importunare ver +importò importare ver +imporvi imporre ver +impose imporre ver +imposero imporre ver +imposi imporre ver +impositivi impositivi adj +imposizione imposizione nom +imposizioni imposizione nom +impossessa impossessarsi ver +impossessamento impossessamento nom +impossessando impossessarsi ver +impossessandosene impossessarsi ver +impossessandosi impossessarsi ver +impossessano impossessarsi ver +impossessarci impossessarsi ver +impossessare impossessarsi ver +impossessarmi impossessarsi ver +impossessarono impossessarsi ver +impossessarsene impossessarsi ver +impossessarsi impossessarsi ver +impossessasse impossessarsi ver +impossessassero impossessarsi ver +impossessata impossessarsi ver +impossessate impossessarsi ver +impossessati impossessarsi ver +impossessato impossessarsi ver +impossessava impossessarsi ver +impossessavano impossessarsi ver +impossesseranno impossessarsi ver +impossesserebbe impossessarsi ver +impossesserà impossessarsi ver +impossessi impossessarsi ver +impossessino impossessarsi ver +impossesso impossessarsi ver +impossessò impossessarsi ver +impossibile impossibile adj +impossibili impossibile adj +impossibilita impossibilitare ver +impossibilitando impossibilitare ver +impossibilitandola impossibilitare ver +impossibilitano impossibilitare ver +impossibilitare impossibilitare ver +impossibilitata impossibilitare ver +impossibilitate impossibilitare ver +impossibilitati impossibilitare ver +impossibilitato impossibilitare ver +impossibilitava impossibilitare ver +impossibilità impossibilità nom +impossibilitò impossibilitare ver +imposta imposta nom +impostaci impostare ver +impostagli impostare ver +impostai impostare ver +impostale impostare ver +impostando impostare ver +impostandola impostare ver +impostandoli impostare ver +impostandolo impostare ver +impostandone impostare ver +impostandosi impostare ver +impostano impostare ver +impostante impostare ver +impostare impostare ver +impostarla impostare ver +impostarle impostare ver +impostarli impostare ver +impostarlo impostare ver +impostarne impostare ver +impostarono impostare ver +impostarsi impostare ver +impostasi impostare ver +impostasse impostare ver +impostassimo impostare ver +impostata impostare ver +impostate impostare ver +impostati impostare ver +impostato impostare ver +impostava impostare ver +impostavano impostare ver +impostavo impostare ver +impostazione impostazione nom +impostazioni impostazione nom +imposte imposta nom +impostegli imporre ver +imposterei impostare ver +imposteresti impostare ver +imposterà impostare ver +imposti imporre ver +impostiamo impostare ver +impostino impostare ver +imposto imporre ver +impostole imporre ver +impostora impostore nom +impostore impostore nom +impostori impostore nom +impostura impostura nom +imposture impostura nom +impostò impostare ver +impotente impotente adj +impotenti impotente adj +impotenza impotenza nom +impoverendo impoverire ver +impoverendola impoverire ver +impoverendoli impoverire ver +impoverendolo impoverire ver +impoverendosi impoverire ver +impoverimenti impoverimento nom +impoverimento impoverimento nom +impoverire impoverire ver +impoverirebbe impoverire ver +impoverirebbero impoverire ver +impoverirla impoverire ver +impoverirlo impoverire ver +impoverirono impoverire ver +impoverirsi impoverire ver +impoverirà impoverire ver +impoverisca impoverire ver +impoveriscano impoverire ver +impoverisce impoverire ver +impoveriscono impoverire ver +impoverisse impoverire ver +impoverissero impoverire ver +impoverita impoverire ver +impoverite impoverire ver +impoveriti impoverire ver +impoverito impoverire ver +impoveriva impoverire ver +impoverivano impoverire ver +impoverì impoverire ver +impraticabile impraticabile adj +impraticabili impraticabile adj +impraticabilità impraticabilità nom +impratichendo impratichire ver +impratichendosi impratichire ver +impratichirci impratichire ver +impratichire impratichire ver +impratichirmi impratichire ver +impratichirsi impratichire ver +impratichirti impratichire ver +impratichisce impratichire ver +impratichisci impratichire ver +impratichisco impratichire ver +impratichita impratichire ver +impratichito impratichire ver +impratichì impratichire ver +impreca imprecare ver +imprecando imprecare ver +imprecano imprecare ver +imprecare imprecare ver +imprecato imprecare ver +imprecava imprecare ver +imprecavano imprecare ver +imprecazione imprecazione nom +imprecazioni imprecazione nom +imprecisa impreciso adj +imprecisabile imprecisabile adj +imprecisabili imprecisabile adj +imprecisato imprecisato adj +imprecise impreciso adj +imprecisi impreciso adj +imprecisione imprecisione nom +imprecisioni imprecisione nom +impreciso impreciso adj +impreco imprecare ver +imprecò imprecare ver +impregiudicata impregiudicato adj +impregiudicati impregiudicato adj +impregiudicato impregiudicato adj +impregna impregnare ver +impregnando impregnare ver +impregnandola impregnare ver +impregnandoli impregnare ver +impregnandolo impregnare ver +impregnandone impregnare ver +impregnandosi impregnare ver +impregnano impregnare ver +impregnante impregnare ver +impregnanti impregnare ver +impregnare impregnare ver +impregnarla impregnare ver +impregnarono impregnare ver +impregnarsi impregnare ver +impregnasse impregnare ver +impregnata impregnare ver +impregnate impregnare ver +impregnati impregnare ver +impregnato impregnare ver +impregnava impregnare ver +impregnavano impregnare ver +impregnazione impregnazione nom +impregno impregnare ver +impregnò impregnare ver +imprende imprendere ver +imprendere imprendere ver +imprendibile imprendibile adj +imprendibili imprendibile adj +imprenditore imprenditore nom +imprenditori imprenditore nom +imprenditoria imprenditoria nom +imprenditoriale imprenditoriale adj +imprenditoriali imprenditoriale adj +imprenditorialità imprenditorialità nom +imprenditrice imprenditore nom +imprenditrici imprenditore nom +impreparata impreparato adj +impreparate impreparato adj +impreparati impreparato adj +impreparato impreparato adj +impreparazione impreparazione nom +impresa impresa nom +impresari impresario nom +impresaria impresario nom +impresario impresario nom +imprescindibile imprescindibile adj +imprescindibili imprescindibile adj +imprescrittibile imprescrittibile adj +imprescrittibili imprescrittibile adj +imprese impresa nom +impresi imprendere ver +impreso imprendere ver +impressa imprimere ver +impresse imprimere ver +impressero imprimere ver +impressi imprimere ver +impressiona impressionare ver +impressionabile impressionabile adj +impressionabili impressionabile adj +impressionabilità impressionabilità nom +impressionando impressionare ver +impressionandola impressionare ver +impressionandolo impressionare ver +impressionano impressionare ver +impressionante impressionante adj +impressionanti impressionante adj +impressionarci impressionare ver +impressionare impressionare ver +impressionarla impressionare ver +impressionarli impressionare ver +impressionarlo impressionare ver +impressionarono impressionare ver +impressionarsi impressionare ver +impressionasse impressionare ver +impressionata impressionare ver +impressionate impressionare ver +impressionati impressionare ver +impressionato impressionare ver +impressionava impressionare ver +impressionavano impressionare ver +impressione impressione nom +impressionerà impressionare ver +impressioni impressione nom +impressionismi impressionismo nom +impressionismo impressionismo nom +impressionista impressionista adj +impressioniste impressionista adj +impressionisti impressionista adj +impressionistica impressionistico adj +impressionistiche impressionistico adj +impressionistici impressionistico adj +impressionistico impressionistico adj +impressionò impressionare ver +impresso imprimere ver +impresta imprestare ver +imprestare imprestare ver +imprestata imprestare ver +imprestate imprestare ver +imprestati imprestare ver +imprestato imprestare ver +imprestò imprestare ver +imprevedibile imprevedibile adj +imprevedibili imprevedibile adj +impreveduta impreveduto adj +impreveduti impreveduto adj +imprevidente imprevidente adj +imprevidenza imprevidenza nom +imprevista imprevisto adj +impreviste imprevisto adj +imprevisti imprevisto adj +imprevisto imprevisto adj +impreziosendo impreziosire ver +impreziosendolo impreziosire ver +impreziosire impreziosire ver +impreziosirla impreziosire ver +impreziosirlo impreziosire ver +impreziosirono impreziosire ver +impreziosirà impreziosire ver +impreziosisce impreziosire ver +impreziosiscono impreziosire ver +impreziosita impreziosire ver +impreziosite impreziosire ver +impreziositi impreziosire ver +impreziosito impreziosire ver +impreziosiva impreziosire ver +impreziosivano impreziosire ver +impreziosì impreziosire ver +imprigiona imprigionare ver +imprigionamento imprigionamento nom +imprigionando imprigionare ver +imprigionandola imprigionare ver +imprigionandoli imprigionare ver +imprigionandolo imprigionare ver +imprigionandone imprigionare ver +imprigionano imprigionare ver +imprigionante imprigionare ver +imprigionanti imprigionare ver +imprigionare imprigionare ver +imprigionarla imprigionare ver +imprigionarle imprigionare ver +imprigionarli imprigionare ver +imprigionarlo imprigionare ver +imprigionarne imprigionare ver +imprigionarono imprigionare ver +imprigionarsi imprigionare ver +imprigionarvi imprigionare ver +imprigionasse imprigionare ver +imprigionata imprigionare ver +imprigionate imprigionare ver +imprigionati imprigionare ver +imprigionato imprigionare ver +imprigionava imprigionare ver +imprigionavano imprigionare ver +imprigionerà imprigionare ver +imprigioni imprigionare ver +imprigiono imprigionare ver +imprigionò imprigionare ver +imprima imprimere ver +imprimatur imprimatur nom +imprime imprimere ver +imprimendo imprimere ver +imprimendogli imprimere ver +imprimendole imprimere ver +imprimendolo imprimere ver +imprimendomi imprimere ver +imprimendosi imprimere ver +imprimendovi imprimere ver +imprimer imprimere ver +imprimere imprimere ver +imprimerebbe imprimere ver +imprimergli imprimere ver +imprimerla imprimere ver +imprimerle imprimere ver +imprimerli imprimere ver +imprimerlo imprimere ver +imprimersi imprimere ver +imprimervi imprimere ver +imprimerà imprimere ver +imprimesse imprimere ver +imprimessero imprimere ver +imprimete imprimere ver +imprimeva imprimere ver +imprimevano imprimere ver +imprimi imprimere ver +imprimitura imprimitura nom +imprimiture imprimitura nom +imprimo imprimere ver +imprimono imprimere ver +imprimé imprimé nom +imprinting imprinting nom +improba improbo adj +improbabile improbabile adj +improbabili improbabile adj +improbabilità improbabilità nom +improbe improbo adj +improbi improbo adj +improbo improbo adj +improduttiva improduttivo adj +improduttive improduttivo adj +improduttivi improduttivo adj +improduttività improduttività nom +improduttivo improduttivo adj +impronta impronta nom +improntale improntare ver +improntando improntare ver +improntandola improntare ver +improntandoli improntare ver +improntandone improntare ver +improntano improntare ver +improntante improntare ver +improntanti improntare ver +improntare improntare ver +improntarono improntare ver +improntarsi improntare ver +improntata improntare ver +improntate improntare ver +improntati improntare ver +improntato improntare ver +improntava improntare ver +impronte impronta nom +impronterà improntare ver +improntitudine improntitudine nom +impronto impronto adj +improntò improntare ver +improperi improperio nom +improperio improperio nom +improponibile improponibile adj +improponibili improponibile adj +impropri improprio adj +impropria improprio adj +impropriamente impropriamente adv +improprie improprio adj +improprietà improprietà nom +improprio improprio adj +improrogabile improrogabile adj +improrogabili improrogabile adj +improvvida improvvido adj +improvvide improvvido adj +improvvidi improvvido adj +improvvido improvvido adj +improvvisa improvviso adj +improvvisai improvvisare ver +improvvisamente improvvisamente adv +improvvisando improvvisare ver +improvvisandola improvvisare ver +improvvisandosi improvvisare ver +improvvisano improvvisare ver +improvvisarci improvvisare ver +improvvisare improvvisare ver +improvvisarla improvvisare ver +improvvisarle improvvisare ver +improvvisarli improvvisare ver +improvvisarlo improvvisare ver +improvvisarne improvvisare ver +improvvisarono improvvisare ver +improvvisarsi improvvisare ver +improvvisasse improvvisare ver +improvvisata improvvisare ver +improvvisate improvvisare ver +improvvisati improvvisare ver +improvvisato improvvisare ver +improvvisatore improvvisatore nom +improvvisatori improvvisatore nom +improvvisatrice improvvisatore nom +improvvisava improvvisare ver +improvvisavamo improvvisare ver +improvvisavano improvvisare ver +improvvisazione improvvisazione nom +improvvisazioni improvvisazione nom +improvvise improvviso adj +improvviseranno improvvisare ver +improvviserà improvvisare ver +improvvisi improvviso adj +improvvisiamo improvvisare ver +improvviso improvviso adj +improvvisò improvvisare ver +imprudente imprudente adj +imprudenti imprudente adj +imprudenza imprudenza nom +imprudenze imprudenza nom +impubere impubere adj +impuberi impubere adj +impudente impudente adj +impudenti impudente adj +impudenza impudenza nom +impudica impudico adj +impudiche impudico adj +impudicizia impudicizia nom +impudico impudico adj +impugna impugnare ver +impugnabile impugnabile adj +impugnabili impugnabile adj +impugnando impugnare ver +impugnandola impugnare ver +impugnandolo impugnare ver +impugnandone impugnare ver +impugnano impugnare ver +impugnante impugnare ver +impugnanti impugnare ver +impugnar impugnare ver +impugnare impugnare ver +impugnarla impugnare ver +impugnarle impugnare ver +impugnarlo impugnare ver +impugnarne impugnare ver +impugnarono impugnare ver +impugnarsi impugnare ver +impugnasse impugnare ver +impugnassero impugnare ver +impugnata impugnare ver +impugnate impugnare ver +impugnati impugnare ver +impugnativa impugnativa nom +impugnative impugnativa nom +impugnato impugnare ver +impugnatori impugnatore nom +impugnatura impugnatura nom +impugnature impugnatura nom +impugnava impugnare ver +impugnavano impugnare ver +impugnazione impugnazione nom +impugnazioni impugnazione nom +impugneranno impugnare ver +impugneremo impugnare ver +impugnerà impugnare ver +impugni impugnare ver +impugnino impugnare ver +impugno impugnare ver +impugnò impugnare ver +impulsi impulso nom +impulsiva impulsivo adj +impulsive impulsivo adj +impulsivi impulsivo adj +impulsività impulsività nom +impulsivo impulsivo adj +impulso impulso nom +impune impune adj +impunemente impunemente adv +impuni impune adj +impunita impunito adj +impunite impunito adj +impuniti impunito adj +impunito impunito adj +impunità impunità nom +impunta impuntare ver +impuntando impuntare ver +impuntandosi impuntare ver +impuntano impuntare ver +impuntarci impuntare ver +impuntare impuntare ver +impuntarmi impuntare ver +impuntarono impuntare ver +impuntarsi impuntare ver +impuntarti impuntare ver +impuntata impuntare ver +impuntati impuntare ver +impuntato impuntare ver +impuntatura impuntatura nom +impuntature impuntatura nom +impunti impuntare ver +impunto impuntare ver +impuntura impuntura nom +impunture impuntura nom +impuntò impuntare ver +impura impuro adj +impure impuro adj +impurezze impurezze nom +impuri impuro adj +impurità impurità nom +impuro impuro adj +imputa imputare ver +imputabile imputabile adj +imputabili imputabile adj +imputabilità imputabilità nom +imputando imputare ver +imputandogli imputare ver +imputandola imputare ver +imputandoli imputare ver +imputandolo imputare ver +imputandosi imputare ver +imputano imputare ver +imputare imputare ver +imputargli imputare ver +imputarle imputare ver +imputarli imputare ver +imputarlo imputare ver +imputarmi imputare ver +imputarono imputare ver +imputarsi imputare ver +imputarti imputare ver +imputasse imputare ver +imputata imputare ver +imputate imputare ver +imputategli imputare ver +imputati imputato nom +imputato imputare ver +imputava imputare ver +imputavano imputare ver +imputavo imputare ver +imputazione imputazione nom +imputazioni imputazione nom +imputeranno imputare ver +imputerà imputare ver +imputi imputare ver +imputino imputare ver +imputo imputare ver +imputridimento imputridimento nom +imputridire imputridire ver +imputridiscono imputridire ver +imputridita imputridire ver +imputridito imputridire ver +imputridì imputridire ver +imputò imputare ver +in in pre +inabile inabile adj +inabili inabile adj +inabilita inabilitare ver +inabilitante inabilitare ver +inabilitanti inabilitare ver +inabilitare inabilitare ver +inabilitata inabilitare ver +inabilitati inabilitare ver +inabilitato inabilitare ver +inabilitazione inabilitazione nom +inabilità inabilità nom +inabissa inabissare ver +inabissamento inabissamento nom +inabissando inabissare ver +inabissandosi inabissare ver +inabissano inabissare ver +inabissare inabissare ver +inabissarono inabissare ver +inabissarsi inabissare ver +inabissasse inabissare ver +inabissata inabissare ver +inabissati inabissare ver +inabissato inabissare ver +inabissava inabissare ver +inabissi inabissare ver +inabisso inabissare ver +inabissò inabissare ver +inabitabile inabitabile adj +inabitabili inabitabile adj +inabitabilità inabitabilità nom +inabitata inabitato adj +inabitate inabitato adj +inabitati inabitato adj +inabitato inabitato adj +inaccessibile inaccessibile adj +inaccessibili inaccessibile adj +inaccessibilità inaccessibilità nom +inaccettabile inaccettabile adj +inaccettabili inaccettabile adj +inaccettabilmente inaccettabilmente adv +inacerbire inacerbire ver +inacerbisce inacerbire ver +inacidendo inacidire ver +inacidire inacidire ver +inacidisce inacidire ver +inacidita inacidire ver +inacidite inacidire ver +inaciditi inacidire ver +inacidito inacidire ver +inacidì inacidire ver +inadatta inadatto adj +inadatte inadatto adj +inadatti inadatto adj +inadatto inadatto adj +inadeguata inadeguato adj +inadeguatamente inadeguatamente adv +inadeguate inadeguato adj +inadeguatezza inadeguatezza nom +inadeguatezze inadeguatezza nom +inadeguati inadeguato adj +inadeguato inadeguato adj +inadempiente inadempiente adj +inadempienti inadempiente adj +inadempienza inadempienza nom +inadempienze inadempienza nom +inadempimenti inadempimento nom +inadempimento inadempimento nom +inadempiuta inadempiuto adj +inadempiute inadempiuto adj +inadempiuto inadempiuto adj +inafferrabile inafferrabile adj +inafferrabili inafferrabile adj +inaffidabile inaffidabile adj +inaffidabili inaffidabile adj +inaffidabilità inaffidabilità nom +inagibile inagibile adj +inagibili inagibile adj +inala inalare ver +inalando inalare ver +inalano inalare ver +inalante inalare ver +inalanti inalare ver +inalare inalare ver +inalarlo inalare ver +inalarne inalare ver +inalarono inalare ver +inalata inalare ver +inalate inalare ver +inalati inalare ver +inalato inalare ver +inalatore inalatore nom +inalatori inalatorio adj +inalatoria inalatorio adj +inalatorie inalatorio adj +inalatorio inalatorio adj +inalava inalare ver +inalavano inalare ver +inalazione inalazione nom +inalazioni inalazione nom +inalbera inalberare ver +inalberando inalberare ver +inalberano inalberare ver +inalberare inalberare ver +inalberarmi inalberare ver +inalberarono inalberare ver +inalberarsi inalberare ver +inalberata inalberare ver +inalberati inalberare ver +inalberato inalberare ver +inalberava inalberare ver +inalberavano inalberare ver +inalbereranno inalberare ver +inalberi inalberare ver +inalbero inalberare ver +inalberò inalberare ver +inali inalare ver +inalienabile inalienabile adj +inalienabili inalienabile adj +inalienabilità inalienabilità nom +inalo inalare ver +inalterabile inalterabile adj +inalterabili inalterabile adj +inalterabilità inalterabilità nom +inalterata inalterato adj +inalterate inalterato adj +inalterati inalterato adj +inalterato inalterato adj +inalveati inalveare ver +inalveato inalveare ver +inalveazione inalveazione nom +inalò inalare ver +inamidata inamidare ver +inamidate inamidato adj +inamidati inamidare ver +inamidato inamidato adj +inammissibile inammissibile adj +inammissibili inammissibile adj +inammissibilità inammissibilità nom +inamovibile inamovibile adj +inamovibili inamovibile adj +inamovibilità inamovibilità nom +inane inane adj +inanella inanellare ver +inanellando inanellare ver +inanellano inanellare ver +inanellare inanellare ver +inanellarono inanellare ver +inanellata inanellare ver +inanellate inanellato adj +inanellati inanellato adj +inanellato inanellare ver +inanellerà inanellare ver +inanellò inanellare ver +inani inane adj +inanimata inanimato adj +inanimate inanimato adj +inanimati inanimato adj +inanimato inanimato adj +inanizione inanizione nom +inappagabile inappagabile adj +inappagamento inappagamento nom +inappagata inappagato adj +inappagate inappagato adj +inappagati inappagato adj +inappagato inappagato adj +inappellabile inappellabile adj +inappellabili inappellabile adj +inappellabilità inappellabilità nom +inappetente inappetente adj +inappetenza inappetenza nom +inapplicabile inapplicabile adj +inapplicabili inapplicabile adj +inapplicabilità inapplicabilità nom +inapprezzabile inapprezzabile adj +inappropriata inappropriato adj +inappropriate inappropriato adj +inappropriato inappropriato adj +inarca inarcare ver +inarcamento inarcamento nom +inarcando inarcare ver +inarcandola inarcare ver +inarcandosi inarcare ver +inarcano inarcare ver +inarcare inarcare ver +inarcarsi inarcare ver +inarcata inarcare ver +inarcate inarcare ver +inarcati inarcare ver +inarcato inarcare ver +inarcava inarcare ver +inargentato inargentare ver +inargenti inargentare ver +inaridendo inaridire ver +inaridimento inaridimento nom +inaridire inaridire ver +inaridirono inaridire ver +inaridirsi inaridire ver +inaridisce inaridire ver +inaridiscono inaridire ver +inaridita inaridire ver +inaridite inaridire ver +inariditi inaridire ver +inaridito inaridire ver +inaridiva inaridire ver +inaridì inaridire ver +inarrestabile inarrestabile adj +inarrestabili inarrestabile adj +inarrivabile inarrivabile adj +inarrivabili inarrivabile adj +inarticolata inarticolato adj +inarticolate inarticolato adj +inarticolati inarticolato adj +inarticolato inarticolato adj +inascoltata inascoltato adj +inascoltate inascoltato adj +inascoltati inascoltato adj +inascoltato inascoltato adj +inaspettata inaspettato adj +inaspettatamente inaspettatamente adv +inaspettate inaspettato adj +inaspettati inaspettato adj +inaspettato inaspettato adj +inasprendo inasprire ver +inasprendosi inasprire ver +inasprimenti inasprimento nom +inasprimento inasprimento nom +inaspriranno inasprire ver +inasprire inasprire ver +inasprirebbe inasprire ver +inasprirlo inasprire ver +inasprirono inasprire ver +inasprirsi inasprire ver +inasprirà inasprire ver +inaspriscano inasprire ver +inasprisce inasprire ver +inaspriscono inasprire ver +inasprita inasprire ver +inasprite inasprire ver +inaspritesi inasprire ver +inaspriti inasprire ver +inasprito inasprire ver +inaspriva inasprire ver +inasprivano inasprire ver +inasprì inasprire ver +inastata inastare ver +inastate inastare ver +inastato inastare ver +inattaccabile inattaccabile adj +inattaccabili inattaccabile adj +inattaccabilità inattaccabilità nom +inattendibile inattendibile adj +inattendibili inattendibile adj +inattendibilità inattendibilità nom +inattesa inatteso adj +inattese inatteso adj +inattesi inatteso adj +inatteso inatteso adj +inattitudine inattitudine nom +inattiva inattivo adj +inattivando inattivare ver +inattivandola inattivare ver +inattivandole inattivare ver +inattivandoli inattivare ver +inattivandolo inattivare ver +inattivano inattivare ver +inattivante inattivare ver +inattivanti inattivare ver +inattivare inattivare ver +inattivarlo inattivare ver +inattivarsi inattivare ver +inattivata inattivare ver +inattivate inattivare ver +inattivati inattivare ver +inattivato inattivare ver +inattivazione inattivazione nom +inattive inattivo adj +inattiveranno inattivare ver +inattiverebbe inattivare ver +inattivi inattivo adj +inattività inattività nom +inattivo inattivo adj +inattuabile inattuabile adj +inattuabili inattuabile adj +inattuabilità inattuabilità nom +inattuale inattuale adj +inattuali inattuale adj +inattualità inattualità nom +inaudita inaudito adj +inaudite inaudito adj +inauditi inaudito adj +inaudito inaudito adj +inaugura inaugurare ver +inauguraci inaugurare ver +inaugurale inaugurale adj +inaugurali inaugurale adj +inaugurando inaugurare ver +inaugurandola inaugurare ver +inaugurandolo inaugurare ver +inaugurandone inaugurare ver +inaugurandosi inaugurare ver +inaugurano inaugurare ver +inaugurante inaugurare ver +inaugurare inaugurare ver +inaugurarla inaugurare ver +inaugurarlo inaugurare ver +inaugurarne inaugurare ver +inaugurarono inaugurare ver +inaugurarsi inaugurare ver +inaugurasi inaugurare ver +inaugurasse inaugurare ver +inaugurata inaugurare ver +inaugurate inaugurare ver +inaugurati inaugurare ver +inaugurato inaugurare ver +inaugurava inaugurare ver +inauguravano inaugurare ver +inaugurazione inaugurazione nom +inaugurazioni inaugurazione nom +inaugureranno inaugurare ver +inaugurerà inaugurare ver +inauguriamo inaugurare ver +inauguro inaugurare ver +inaugurò inaugurare ver +inavvertenza inavvertenza nom +inavvertita inavvertito adj +inavvertitamente inavvertitamente adv +inavvertite inavvertito adj +inavvertiti inavvertito adj +inavvertito inavvertito adj +inavvicinabile inavvicinabile adj +inavvicinabili inavvicinabile adj +inazione inazione nom +inazioni inazione nom +incagli incaglio nom +incaglia incagliare ver +incagliandosi incagliare ver +incagliano incagliare ver +incagliare incagliare ver +incagliarono incagliare ver +incagliarsi incagliare ver +incagliata incagliare ver +incagliate incagliare ver +incagliati incagliare ver +incagliato incagliare ver +incagliavano incagliare ver +incaglio incaglio nom +incagliò incagliare ver +incalcinare incalcinare ver +incalcolabile incalcolabile adj +incalcolabili incalcolabile adj +incallire incallire ver +incallita incallito adj +incallite incallito adj +incalliti incallito adj +incallito incallito adj +incalorire incalorire ver +incalza incalzare ver +incalzando incalzare ver +incalzandoli incalzare ver +incalzandolo incalzare ver +incalzano incalzare ver +incalzante incalzare ver +incalzanti incalzare ver +incalzare incalzare ver +incalzarle incalzare ver +incalzarlo incalzare ver +incalzarono incalzare ver +incalzata incalzare ver +incalzate incalzare ver +incalzati incalzare ver +incalzato incalzare ver +incalzava incalzare ver +incalzavano incalzare ver +incalzi incalzare ver +incalzò incalzare ver +incamera incamerare ver +incameramenti incameramento nom +incameramento incameramento nom +incamerando incamerare ver +incamerandone incamerare ver +incamerano incamerare ver +incamerante incamerare ver +incamerare incamerare ver +incamerarla incamerare ver +incamerarlo incamerare ver +incamerarne incamerare ver +incamerarono incamerare ver +incamerata incamerare ver +incamerate incamerare ver +incamerati incamerare ver +incamerato incamerare ver +incamerava incamerare ver +incameravano incamerare ver +incamererà incamerare ver +incamerò incamerare ver +incamicia incamiciare ver +incamiciata incamiciare ver +incamiciate incamiciare ver +incamiciati incamiciare ver +incamiciato incamiciare ver +incamiciatura incamiciatura nom +incamiciature incamiciatura nom +incammina incamminare ver +incamminai incamminare ver +incamminammo incamminare ver +incamminando incamminare ver +incamminandosi incamminare ver +incamminandovi incamminare ver +incamminano incamminare ver +incamminare incamminare ver +incamminarono incamminare ver +incamminarsi incamminare ver +incamminata incamminare ver +incamminati incamminare ver +incamminato incamminare ver +incamminava incamminare ver +incamminavano incamminare ver +incammineranno incamminare ver +incamminerà incamminare ver +incammini incamminare ver +incammino incamminare ver +incamminò incamminare ver +incanala incanalare ver +incanalamenti incanalamento nom +incanalamento incanalamento nom +incanalare incanalare ver +incanalate incanalare ver +incanalato incanalare ver +incancellabile incancellabile adj +incancellabili incancellabile adj +incancrenendo incancrenire ver +incancrenire incancrenire ver +incancrenirsi incancrenire ver +incancrenisca incancrenire ver +incancrenita incancrenire ver +incancrenite incancrenire ver +incancrenito incancrenire ver +incancrenì incancrenire ver +incandescente incandescente adj +incandescenti incandescente adj +incandescenza incandescenza nom +incandescenze incandescenza nom +incannatoi incannatoio nom +incannatoio incannatoio nom +incannicciata incannicciata nom +incanta incantare ver +incantamenti incantamento nom +incantamento incantamento nom +incantando incantare ver +incantandoli incantare ver +incantandolo incantare ver +incantandone incantare ver +incantano incantare ver +incantante incantare ver +incantarci incantare ver +incantare incantare ver +incantarle incantare ver +incantarlo incantare ver +incantarono incantare ver +incantata incantato adj +incantate incantato adj +incantati incantato adj +incantato incantato adj +incantatore incantatore adj +incantatori incantatore nom +incantatrice incantatore adj +incantatrici incantatore adj +incantava incantare ver +incantavano incantare ver +incantesimi incantesimo nom +incantesimo incantesimo nom +incantevole incantevole adj +incantevoli incantevole adj +incanti incanto nom +incantino incantare ver +incanto incanto nom +incantò incantare ver +incanutire incanutire ver +incanutirsi incanutire ver +incanutisce incanutire ver +incanutiscono incanutire ver +incanutiti incanutire ver +incanutito incanutire ver +incapace incapace adj +incapaci incapace adj +incapacità incapacità nom +incaponendo incaponirsi ver +incaponire incaponirsi ver +incaponirmi incaponirsi ver +incaponirsi incaponirsi ver +incaponirti incaponirsi ver +incaponisca incaponirsi ver +incaponisce incaponirsi ver +incaponito incaponirsi ver +incappa incappare ver +incappai incappare ver +incappando incappare ver +incappano incappare ver +incapparci incappare ver +incappare incappare ver +incapparono incappare ver +incapparvi incappare ver +incappata incappare ver +incappate incappare ver +incappati incappare ver +incappato incappare ver +incappava incappare ver +incappavano incappare ver +incapperanno incappare ver +incapperà incappare ver +incappi incappare ver +incappino incappare ver +incappo incappare ver +incappuccia incappucciare ver +incappucciano incappucciare ver +incappucciare incappucciare ver +incappucciata incappucciare ver +incappucciate incappucciare ver +incappucciati incappucciare ver +incappucciato incappucciare ver +incappò incappare ver +incapriccia incapricciarsi ver +incapricciato incapricciarsi ver +incapsula incapsulare ver +incapsulamenti incapsulamento nom +incapsulamento incapsulamento nom +incapsulando incapsulare ver +incapsulano incapsulare ver +incapsulante incapsulare ver +incapsulare incapsulare ver +incapsularlo incapsulare ver +incapsulata incapsulare ver +incapsulate incapsulare ver +incapsulati incapsulare ver +incapsulato incapsulare ver +incapsulava incapsulare ver +incarcera incarcerare ver +incarceramenti incarceramento nom +incarceramento incarceramento nom +incarcerando incarcerare ver +incarcerandolo incarcerare ver +incarcerano incarcerare ver +incarcerare incarcerare ver +incarcerarlo incarcerare ver +incarcerarono incarcerare ver +incarcerata incarcerare ver +incarcerate incarcerare ver +incarcerati incarcerare ver +incarcerato incarcerare ver +incarcerava incarcerare ver +incarcerazione incarcerazione nom +incarcerazioni incarcerazione nom +incarcerò incarcerare ver +incardina incardinare ver +incardinando incardinare ver +incardinandosi incardinare ver +incardinare incardinare ver +incardinarsi incardinare ver +incardinasse incardinare ver +incardinata incardinare ver +incardinate incardinare ver +incardinati incardinare ver +incardinato incardinare ver +incardinava incardinare ver +incardinò incardinare ver +incarica incaricare ver +incaricando incaricare ver +incaricandola incaricare ver +incaricandoli incaricare ver +incaricandolo incaricare ver +incaricandomi incaricare ver +incaricandone incaricare ver +incaricandosi incaricare ver +incaricano incaricare ver +incaricare incaricare ver +incaricarla incaricare ver +incaricarlo incaricare ver +incaricarmi incaricare ver +incaricarono incaricare ver +incaricarsene incaricare ver +incaricarsi incaricare ver +incaricasse incaricare ver +incaricassero incaricare ver +incaricata incaricare ver +incaricate incaricare ver +incaricati incaricare ver +incaricato incaricare ver +incaricava incaricare ver +incaricavano incaricare ver +incaricheranno incaricare ver +incaricherebbe incaricare ver +incaricherà incaricare ver +incaricherò incaricare ver +incarichi incarico nom +incarichiamo incaricare ver +incarico incarico nom +incaricò incaricare ver +incarna incarnare ver +incarnando incarnare ver +incarnandola incarnare ver +incarnandolo incarnare ver +incarnandone incarnare ver +incarnandosi incarnare ver +incarnano incarnare ver +incarnante incarnare ver +incarnare incarnare ver +incarnarla incarnare ver +incarnarne incarnare ver +incarnarono incarnare ver +incarnarsi incarnare ver +incarnasse incarnare ver +incarnassero incarnare ver +incarnata incarnato adj +incarnate incarnato adj +incarnati incarnato nom +incarnato incarnare ver +incarnava incarnare ver +incarnavano incarnare ver +incarnazione incarnazione nom +incarnazioni incarnazione nom +incarneranno incarnare ver +incarnerebbe incarnare ver +incarnerebbero incarnare ver +incarnerà incarnare ver +incarni incarnare ver +incarnita incarnire ver +incarnite incarnire ver +incarnò incarnare ver +incarta incartare ver +incartamenti incartamento nom +incartamento incartamento nom +incartando incartare ver +incartano incartare ver +incartapecorita incartapecorire ver +incartapecorite incartapecorire ver +incartapecoriti incartapecorire ver +incartapecorito incartapecorire ver +incartare incartare ver +incartarmi incartare ver +incartarsi incartare ver +incartata incartare ver +incartate incartare ver +incartati incartare ver +incartato incartare ver +incartava incartare ver +incarti incarto nom +incarto incarto nom +incartocciarsi incartocciare ver +incasella incasellare ver +incasellare incasellare ver +incasellarla incasellare ver +incasellarlo incasellare ver +incasellata incasellare ver +incasellate incasellare ver +incasellati incasellare ver +incasellato incasellare ver +incasina incasinare ver +incasinando incasinare ver +incasinano incasinare ver +incasinare incasinare ver +incasinarla incasinare ver +incasinarsi incasinare ver +incasinata incasinare ver +incasinate incasinato adj +incasinati incasinare ver +incasinato incasinare ver +incasinava incasinare ver +incasinerebbe incasinare ver +incasini incasinare ver +incasiniamo incasinare ver +incasino incasinare ver +incassa incassare ver +incassamenti incassamento nom +incassamento incassamento nom +incassando incassare ver +incassandone incassare ver +incassandosi incassare ver +incassano incassare ver +incassante incassare ver +incassanti incassare ver +incassare incassare ver +incassarli incassare ver +incassarlo incassare ver +incassarne incassare ver +incassarono incassare ver +incassarsi incassare ver +incassasse incassare ver +incassata incassare ver +incassate incassato adj +incassati incassare ver +incassato incassare ver +incassatore incassatore nom +incassatori incassatore nom +incassatrici incassatore nom +incassatura incassatura nom +incassature incassatura nom +incassava incassare ver +incassavano incassare ver +incasseranno incassare ver +incasserete incassare ver +incasserà incassare ver +incassi incasso nom +incasso incasso nom +incassò incassare ver +incastellatura incastellatura nom +incastellature incastellatura nom +incastona incastonare ver +incastonando incastonare ver +incastonano incastonare ver +incastonare incastonare ver +incastonarono incastonare ver +incastonata incastonare ver +incastonate incastonare ver +incastonati incastonare ver +incastonato incastonare ver +incastonatura incastonatura nom +incastonature incastonatura nom +incastonò incastonare ver +incastra incastrare ver +incastralo incastrare ver +incastrando incastrare ver +incastrandola incastrare ver +incastrandolo incastrare ver +incastrandosi incastrare ver +incastrano incastrare ver +incastrare incastrare ver +incastrarla incastrare ver +incastrarle incastrare ver +incastrarli incastrare ver +incastrarlo incastrare ver +incastrarmi incastrare ver +incastrarono incastrare ver +incastrarsi incastrare ver +incastrarti incastrare ver +incastrarvi incastrare ver +incastrasi incastrare ver +incastrasse incastrare ver +incastrassero incastrare ver +incastrata incastrare ver +incastrate incastrare ver +incastrati incastrare ver +incastrato incastrare ver +incastrava incastrare ver +incastravano incastrare ver +incastrerebbe incastrare ver +incastrerebbero incastrare ver +incastreremo incastrare ver +incastrerà incastrare ver +incastri incastro nom +incastrino incastrare ver +incastro incastro nom +incastrò incastrare ver +incatena incatenare ver +incatenamento incatenamento nom +incatenando incatenare ver +incatenandolo incatenare ver +incatenandosi incatenare ver +incatenano incatenare ver +incatenare incatenare ver +incatenarli incatenare ver +incatenarlo incatenare ver +incatenarono incatenare ver +incatenarsi incatenare ver +incatenata incatenare ver +incatenate incatenare ver +incatenati incatenare ver +incatenato incatenare ver +incatenatura incatenatura nom +incatenava incatenare ver +incatenavano incatenare ver +incatenerà incatenare ver +incateni incatenare ver +incatenò incatenare ver +incatramata incatramare ver +incatramati incatramare ver +incatramato incatramare ver +incattivire incattivire ver +incattivirsi incattivire ver +incattivisce incattivire ver +incattiviscono incattivire ver +incattivita incattivire ver +incattivite incattivire ver +incattiviti incattivire ver +incattivito incattivire ver +incauta incauto adj +incaute incauto adj +incauti incauto adj +incauto incauto adj +incava incavare ver +incavallatura incavallatura nom +incavallature incavallatura nom +incavare incavare ver +incavata incavare ver +incavate incavato adj +incavati incavato adj +incavato incavare ver +incavatura incavatura nom +incavature incavatura nom +incavi incavo nom +incavo incavo nom +incavola incavolarsi ver +incavolano incavolarsi ver +incavolare incavolarsi ver +incavolarmi incavolarsi ver +incavolarsi incavolarsi ver +incavolarti incavolarsi ver +incavolata incavolarsi ver +incavolate incavolarsi ver +incavolato incavolarsi ver +incavoli incavolarsi ver +incavolo incavolarsi ver +incazza incazzarsi ver +incazzando incazzarsi ver +incazzano incazzarsi ver +incazzare incazzarsi ver +incazzarmi incazzarsi ver +incazzarsi incazzarsi ver +incazzarti incazzarsi ver +incazzassi incazzarsi ver +incazzata incazzarsi ver +incazzate incazzarsi ver +incazzatevi incazzarsi ver +incazzati incazzarsi ver +incazzato incazzarsi ver +incazzerei incazzarsi ver +incazzi incazzarsi ver +incazzino incazzarsi ver +incazzo incazzarsi ver +incazzò incazzarsi ver +incede incedere ver +incedendo incedere ver +incedente incedere ver +incedenti incedere ver +incedere incedere ver +incedeva incedere ver +incedevano incedere ver +incedibile incedibile adj +incedibili incedibile adj +incedo incedere ver +incedono incedere ver +incendi incendio nom +incendia incendiare ver +incendiami incendiare ver +incendiando incendiare ver +incendiandola incendiare ver +incendiandole incendiare ver +incendiandoli incendiare ver +incendiandolo incendiare ver +incendiandone incendiare ver +incendiandosi incendiare ver +incendiano incendiare ver +incendiare incendiare ver +incendiargli incendiare ver +incendiari incendiario adj +incendiaria incendiario adj +incendiarie incendiario adj +incendiario incendiario adj +incendiarla incendiare ver +incendiarle incendiare ver +incendiarli incendiare ver +incendiarlo incendiare ver +incendiarne incendiare ver +incendiarono incendiare ver +incendiarsi incendiare ver +incendiasse incendiare ver +incendiassero incendiare ver +incendiata incendiare ver +incendiate incendiare ver +incendiati incendiare ver +incendiato incendiare ver +incendiava incendiare ver +incendiavano incendiare ver +incendieranno incendiare ver +incendierà incendiare ver +incendierò incendiare ver +incendino incendiare ver +incendio incendio nom +incendiò incendiare ver +incenerendo incenerire ver +incenerendola incenerire ver +incenerendolo incenerire ver +incenerendosi incenerire ver +incenerimento incenerimento nom +incenerire incenerire ver +incenerirlo incenerire ver +incenerirono incenerire ver +incenerirsi incenerire ver +incenerirà incenerire ver +incenerisce incenerire ver +inceneriscono incenerire ver +incenerita incenerire ver +incenerite incenerire ver +inceneriti incenerire ver +incenerito incenerire ver +inceneritore inceneritore nom +inceneritori inceneritore nom +incenerì incenerire ver +incensa incensare ver +incensamenti incensamento nom +incensamento incensamento nom +incensando incensare ver +incensano incensare ver +incensanti incensare ver +incensare incensare ver +incensarlo incensare ver +incensarmi incensare ver +incensata incensare ver +incensate incensare ver +incensati incensare ver +incensato incensare ver +incensatore incensatore nom +incensatori incensatore nom +incensatura incensatura nom +incensava incensare ver +incensi incenso nom +incensiere incensiere nom +incensieri incensiere nom +incenso incenso nom +incensurabile incensurabile adj +incensurata incensurato adj +incensurate incensurato adj +incensurati incensurato adj +incensurato incensurato adj +incentiva incentivare ver +incentivando incentivare ver +incentivandone incentivare ver +incentivano incentivare ver +incentivante incentivare ver +incentivanti incentivare ver +incentivare incentivare ver +incentivarla incentivare ver +incentivarle incentivare ver +incentivarli incentivare ver +incentivarlo incentivare ver +incentivarne incentivare ver +incentivarono incentivare ver +incentivasse incentivare ver +incentivata incentivare ver +incentivate incentivare ver +incentivati incentivare ver +incentivato incentivare ver +incentivava incentivare ver +incentivazione incentivazione nom +incentivazioni incentivazione nom +incentiverebbe incentivare ver +incentiverebbero incentivare ver +incentiverei incentivare ver +incentiverà incentivare ver +incentivi incentivo nom +incentivino incentivare ver +incentivo incentivo nom +incentivò incentivare ver +incentra incentrare ver +incentrando incentrare ver +incentrandola incentrare ver +incentrandolo incentrare ver +incentrandosi incentrare ver +incentrano incentrare ver +incentrare incentrare ver +incentrarla incentrare ver +incentrarono incentrare ver +incentrarsi incentrare ver +incentrasse incentrare ver +incentrata incentrare ver +incentrate incentrare ver +incentrati incentrare ver +incentrato incentrare ver +incentrava incentrare ver +incentravano incentrare ver +incentrerei incentrare ver +incentrerà incentrare ver +incentri incentrare ver +incentro incentro nom +incentrò incentrare ver +inceppa inceppare ver +inceppamenti inceppamento nom +inceppamento inceppamento nom +inceppandosi inceppare ver +inceppano inceppare ver +inceppare inceppare ver +incepparono inceppare ver +incepparsi inceppare ver +inceppasse inceppare ver +inceppata inceppare ver +inceppate inceppare ver +inceppati inceppare ver +inceppato inceppare ver +inceppava inceppare ver +inceppavano inceppare ver +inceppi inceppare ver +inceppo inceppare ver +inceppò inceppare ver +incerata incerata nom +incerate incerare ver +incerati incerare ver +incerato incerare ver +incernierata incernierare ver +incernierate incernierare ver +incernierati incernierare ver +incernierato incernierare ver +incerta incerto adj +incerte incerto adj +incertezza incertezza nom +incertezze incertezza nom +incerti incerto adj +incerto incerto adj +incespica incespicare ver +incespicare incespicare ver +incespicava incespicare ver +incessabile incessabile adj +incessante incessante adj +incessantemente incessantemente adv +incessanti incessante adj +incesso incesso nom +incesti incesto nom +incesto incesto nom +incestuosa incestuoso adj +incestuose incestuoso adj +incestuosi incestuoso adj +incestuoso incestuoso adj +incetta incetta nom +incettatori incettatore nom +incette incetta nom +inchiesta inchiesta nom +inchieste inchiesta nom +inchina inchinare ver +inchinandomi inchinare ver +inchinandosi inchinare ver +inchinano inchinare ver +inchinarci inchinare ver +inchinare inchinare ver +inchinarmi inchinare ver +inchinarono inchinare ver +inchinarsi inchinare ver +inchinarti inchinare ver +inchinarvi inchinare ver +inchinata inchinare ver +inchinate inchinare ver +inchinatevi inchinare ver +inchinati inchinare ver +inchinato inchinare ver +inchinava inchinare ver +inchinavano inchinare ver +inchineranno inchinare ver +inchineremo inchinare ver +inchinerà inchinare ver +inchini inchino nom +inchiniamo inchinare ver +inchiniamoci inchinare ver +inchinino inchinare ver +inchino inchino nom +inchinò inchinare ver +inchioda inchiodare ver +inchiodando inchiodare ver +inchiodandola inchiodare ver +inchiodandole inchiodare ver +inchiodandolo inchiodare ver +inchiodano inchiodare ver +inchiodare inchiodare ver +inchiodarla inchiodare ver +inchiodarli inchiodare ver +inchiodarlo inchiodare ver +inchiodarmi inchiodare ver +inchiodarono inchiodare ver +inchiodassero inchiodare ver +inchiodata inchiodare ver +inchiodate inchiodare ver +inchiodati inchiodare ver +inchiodato inchiodare ver +inchiodatura inchiodatura nom +inchiodature inchiodatura nom +inchiodava inchiodare ver +inchiodavano inchiodare ver +inchioderebbe inchiodare ver +inchioderebbero inchiodare ver +inchioderà inchiodare ver +inchiodino inchiodare ver +inchiodo inchiodare ver +inchiodò inchiodare ver +inchiostra inchiostrare ver +inchiostrando inchiostrare ver +inchiostrare inchiostrare ver +inchiostrata inchiostrare ver +inchiostrate inchiostrare ver +inchiostrati inchiostrare ver +inchiostrato inchiostrare ver +inchiostrava inchiostrare ver +inchiostrazione inchiostrazione nom +inchiostrazioni inchiostrazione nom +inchiostri inchiostro nom +inchiostro inchiostro nom +inchiostrò inchiostrare ver +inciampa inciampare ver +inciampai inciampare ver +inciampando inciampare ver +inciampandoci inciampare ver +inciampano inciampare ver +inciampare inciampare ver +inciamparono inciampare ver +inciamparvi inciampare ver +inciampata inciampare ver +inciampati inciampare ver +inciampato inciampare ver +inciampava inciampare ver +inciamperà inciampare ver +inciamperò inciampare ver +inciampi inciampo nom +inciampino inciampare ver +inciampo inciampo nom +inciampò inciampare ver +incida incidere ver +incidano incidere ver +incide incidere ver +incidendo incidere ver +incidendola incidere ver +incidendole incidere ver +incidendoli incidere ver +incidendolo incidere ver +incidendone incidere ver +incidendosi incidere ver +incidendovi incidere ver +incidentale incidentale adj +incidentali incidentale adj +incidentalmente incidentalmente adv +incidente incidente nom +incidenti incidente nom +incidenza incidenza nom +incidenze incidenza nom +incider incidere ver +incideranno incidere ver +incidere incidere ver +inciderebbe incidere ver +inciderebbero incidere ver +inciderla incidere ver +inciderle incidere ver +inciderli incidere ver +inciderlo incidere ver +inciderne incidere ver +incidersi incidere ver +incidervi incidere ver +inciderà incidere ver +incidesse incidere ver +incidessero incidere ver +incidete incidere ver +incideva incidere ver +incidevano incidere ver +incidi incidere ver +incidiamo incidere ver +incido incidere ver +incidono incidere ver +incinera incinerare ver +incineraci incinerare ver +incinerate incinerare ver +incinerati incinerare ver +incinerazione incinerazione nom +incinta incinta adj +incinte incinte adj +incipiente incipiente adj +incipienti incipiente adj +incipit incipit nom +incipria incipriare ver +incipriano incipriare ver +incipriarsi incipriare ver +incipriata incipriare ver +incipriate incipriare ver +incipriati incipriare ver +incipriato incipriare ver +incirca incirca adv +incisa incidere ver +incise incidere ver +incisero incidere ver +incisi incidere ver +incisione incisione nom +incisioni incisione nom +incisiva incisivo adj +incisivamente incisivamente adv +incisive incisivo adj +incisivi incisivo adj +incisività incisività nom +incisivo incisivo adj +inciso incidere ver +incisore incisore nom +incisori incisore nom +incisoria incisorio adj +incisorie incisorio adj +incisorio incisorio adj +incistato incistare ver +incita incitare ver +incitamenti incitamento nom +incitamento incitamento nom +incitando incitare ver +incitandola incitare ver +incitandole incitare ver +incitandoli incitare ver +incitandolo incitare ver +incitandosi incitare ver +incitandovi incitare ver +incitano incitare ver +incitante incitare ver +incitanti incitare ver +incitare incitare ver +incitarla incitare ver +incitarli incitare ver +incitarlo incitare ver +incitarono incitare ver +incitasse incitare ver +incitassero incitare ver +incitata incitare ver +incitate incitare ver +incitati incitare ver +incitato incitare ver +incitatore incitatore nom +incitatori incitatore nom +incitava incitare ver +incitavano incitare ver +incitazione incitazione nom +inciteranno incitare ver +inciterà incitare ver +inciti incitare ver +incitiamo incitare ver +incitino incitare ver +incito incitare ver +incitò incitare ver +incivile incivile adj +incivili incivile adj +incivilimento incivilimento nom +incivilire incivilire ver +incivilita incivilire ver +incivilito incivilire ver +inciviltà inciviltà nom +inclassificabile inclassificabile adj +inclassificabili inclassificabile adj +inclemente inclemente adj +inclementi inclemente adj +inclemenza inclemenza nom +inclemenze inclemenza nom +inclina inclinare ver +inclinabile inclinabile adj +inclinabili inclinabile adj +inclinaci inclinare ver +inclinando inclinare ver +inclinandola inclinare ver +inclinandole inclinare ver +inclinandolo inclinare ver +inclinandosi inclinare ver +inclinano inclinare ver +inclinare inclinare ver +inclinarla inclinare ver +inclinarlo inclinare ver +inclinarono inclinare ver +inclinarsi inclinare ver +inclinata inclinare ver +inclinate inclinato adj +inclinati inclinato adj +inclinato inclinare ver +inclinava inclinare ver +inclinavano inclinare ver +inclinazione inclinazione nom +inclinazioni inclinazione nom +incline incline adj +inclinerà inclinare ver +inclini incline adj +inclino inclinare ver +inclinò inclinare ver +inclita inclito adj +incliti inclito adj +inclito inclito adj +includa includere ver +includano includere ver +include includere ver +includendo includere ver +includendoci includere ver +includendola includere ver +includendole includere ver +includendoli includere ver +includendolo includere ver +includendone includere ver +includendovi includere ver +includente includere ver +includenti includere ver +includeranno includere ver +includere includere ver +includerebbe includere ver +includerebbero includere ver +includerei includere ver +includeremo includere ver +includeresti includere ver +includerla includere ver +includerle includere ver +includerli includere ver +includerlo includere ver +includerne includere ver +includersi includere ver +includerti includere ver +includervi includere ver +includerà includere ver +includerò includere ver +includesse includere ver +includessero includere ver +includete includere ver +includetemi includere ver +includeva includere ver +includevano includere ver +includi includere ver +includiamo includere ver +includo includere ver +includono includere ver +inclusa includere ver +incluse includere ver +inclusero includere ver +inclusi includere ver +inclusione inclusione nom +inclusioni inclusione nom +inclusiva inclusivo adj +inclusive inclusivo adj +inclusivi inclusivo adj +inclusivo inclusivo adj +incluso includere ver +incoativa incoativo adj +incoative incoativo adj +incoativi incoativo adj +incoativo incoativo adj +incocca incoccare ver +incoccare incoccare ver +incoccata incoccare ver +incoccato incoccare ver +incoccia incocciare ver +incocciano incocciare ver +incocciare incocciare ver +incocciata incocciare ver +incocciati incocciare ver +incocciato incocciare ver +incoccio incocciare ver +incocco incoccare ver +incoercibile incoercibile adj +incoercibili incoercibile adj +incoercibilità incoercibilità nom +incoerente incoerente adj +incoerenti incoerente adj +incoerenza incoerenza nom +incoerenze incoerenza nom +incoglie incogliere ver +incoglierà incogliere ver +incognita incognito adj +incognite incognita nom +incogniti incognito nom +incognito incognito adj +incolla incollare ver +incollaci incollare ver +incollala incollare ver +incollale incollare ver +incollalo incollare ver +incollando incollare ver +incollandoci incollare ver +incollandogli incollare ver +incollandola incollare ver +incollandole incollare ver +incollandolo incollare ver +incollandosi incollare ver +incollano incollare ver +incollante incollare ver +incollarci incollare ver +incollare incollare ver +incollarla incollare ver +incollarle incollare ver +incollarli incollare ver +incollarlo incollare ver +incollarne incollare ver +incollarono incollare ver +incollarsi incollare ver +incollata incollare ver +incollate incollare ver +incollatelo incollare ver +incollati incollare ver +incollato incollare ver +incollatura incollatura nom +incollature incollatura nom +incollava incollare ver +incollavano incollare ver +incollerire incollerire ver +incollerirsi incollerire ver +incollerisce incollerire ver +incollerita incollerire ver +incolleriti incollerire ver +incollerito incollerire ver +incollerì incollerire ver +incolli incollare ver +incolliamo incollare ver +incollino incollare ver +incollo incollare ver +incollò incollare ver +incolmabile incolmabile adj +incolmabili incolmabile adj +incolonna incolonnare ver +incolonnamenti incolonnamento nom +incolonnamento incolonnamento nom +incolonnando incolonnare ver +incolonnano incolonnare ver +incolonnare incolonnare ver +incolonnarli incolonnare ver +incolonnarono incolonnare ver +incolonnarsi incolonnare ver +incolonnata incolonnare ver +incolonnate incolonnare ver +incolonnati incolonnare ver +incolonnato incolonnare ver +incolonnerei incolonnare ver +incolonnino incolonnare ver +incolore incolore adj +incolori incolore adj +incolpa incolpare ver +incolpando incolpare ver +incolpandola incolpare ver +incolpandoli incolpare ver +incolpandolo incolpare ver +incolpandone incolpare ver +incolpandosi incolpare ver +incolpano incolpare ver +incolpare incolpare ver +incolparla incolpare ver +incolparli incolpare ver +incolparlo incolpare ver +incolparono incolpare ver +incolparsi incolpare ver +incolpata incolpare ver +incolpate incolpare ver +incolpati incolpare ver +incolpato incolpare ver +incolpava incolpare ver +incolpavano incolpare ver +incolperà incolpare ver +incolpevole incolpevole adj +incolpevoli incolpevole adj +incolpi incolpare ver +incolpo incolpare ver +incolpò incolpare ver +incolse incogliere ver +incolta incolto adj +incolte incolto adj +incolti incolto adj +incolto incolto adj +incolume incolume adj +incolumi incolume adj +incolumità incolumità nom +incomba incombere ver +incombe incombere ver +incombendo incombere ver +incombente incombente adj +incombenti incombente adj +incombenza incombenza nom +incombenze incombenza nom +incombere incombere ver +incomberebbe incombere ver +incomberà incombere ver +incombesse incombere ver +incombettero incombere ver +incombeva incombere ver +incombevano incombere ver +incombono incombere ver +incombusta incombusto adj +incombustibile incombustibile adj +incombustibili incombustibile adj +incominceranno incominciare ver +incomincerei incominciare ver +incomincerà incominciare ver +incomincerò incominciare ver +incominci incominciare ver +incomincia incominciare ver +incominciai incominciare ver +incominciamento incominciamento nom +incominciamo incominciare ver +incominciando incominciare ver +incominciano incominciare ver +incominciar incominciare ver +incominciare incominciare ver +incominciarono incominciare ver +incominciarsi incominciare ver +incominciasse incominciare ver +incominciassero incominciare ver +incominciata incominciare ver +incominciate incominciare ver +incominciati incominciare ver +incominciato incominciare ver +incominciava incominciare ver +incominciavano incominciare ver +incomincio incominciare ver +incominciò incominciare ver +incommensurabile incommensurabile adj +incommensurabili incommensurabile adj +incommensurabilità incommensurabilità nom +incomoda incomodare ver +incomodare incomodare ver +incomodato incomodare ver +incomodi incomodo adj +incomodo incomodo nom +incomparabile incomparabile adj +incomparabili incomparabile adj +incompatibile incompatibile adj +incompatibili incompatibile adj +incompatibilità incompatibilità nom +incompetente incompetente adj +incompetenti incompetente adj +incompetenza incompetenza nom +incompetenze incompetenza nom +incompiuta incompiuto adj +incompiute incompiuto adj +incompiutezza incompiutezza nom +incompiuti incompiuto adj +incompiuto incompiuto adj +incompleta incompleto adj +incomplete incompleto adj +incompletezza incompletezza nom +incompletezze incompletezza nom +incompleti incompleto adj +incompleto incompleto adj +incomposta incomposto adj +incomprensibile incomprensibile adj +incomprensibili incomprensibile adj +incomprensibilità incomprensibilità nom +incomprensione incomprensione nom +incomprensioni incomprensione nom +incompresa incompreso adj +incomprese incompreso adj +incompresi incompreso adj +incompreso incompreso adj +incompressibile incompressibile adj +incompressibili incompressibile adj +incompressibilità incompressibilità nom +incomunicabile incomunicabile adj +incomunicabili incomunicabile adj +incomunicabilità incomunicabilità nom +inconcepibile inconcepibile adj +inconcepibili inconcepibile adj +inconciliabile inconciliabile adj +inconciliabili inconciliabile adj +inconcludente inconcludente adj +inconcludenti inconcludente adj +inconcussa inconcusso adj +inconcusso inconcusso adj +incondizionale incondizionale adj +incondizionata incondizionato adj +incondizionatamente incondizionatamente adv +incondizionate incondizionato adj +incondizionati incondizionato adj +incondizionato incondizionato adj +inconfessabile inconfessabile adj +inconfessabili inconfessabile adj +inconfessata inconfessato adj +inconfessate inconfessato adj +inconfessati inconfessato adj +inconfessato inconfessato adj +inconfondibile inconfondibile adj +inconfondibili inconfondibile adj +inconfutabile inconfutabile adj +inconfutabili inconfutabile adj +incongrua incongruo adj +incongrue incongruo adj +incongruente incongruente adj +incongruenti incongruente adj +incongruenza incongruenza nom +incongruenze incongruenza nom +incongrui incongruo adj +incongruità incongruità nom +incongruo incongruo adj +inconoscibile inconoscibile adj +inconoscibili inconoscibile adj +inconsapevole inconsapevole adj +inconsapevolezza inconsapevolezza nom +inconsapevoli inconsapevole adj +inconsapevolmente inconsapevolmente adv +inconsce inconscio adj +inconsci inconscio adj +inconscia inconscio adj +inconscio inconscio adj +inconseguente inconseguente adj +inconsiderate inconsiderato adj +inconsiderato inconsiderato adj +inconsistente inconsistente adj +inconsistenti inconsistente adj +inconsistenza inconsistenza nom +inconsistenze inconsistenza nom +inconsolabile inconsolabile adj +inconsolabili inconsolabile adj +inconsueta inconsueto adj +inconsuete inconsueto adj +inconsueti inconsueto adj +inconsueto inconsueto adj +inconsulta inconsulto adj +inconsulte inconsulto adj +inconsulti inconsulto adj +inconsulto inconsulto adj +incontaminata incontaminato adj +incontaminate incontaminato adj +incontaminati incontaminato adj +incontaminato incontaminato adj +incontanente incontanente adv +incontenibile incontenibile adj +incontenibili incontenibile adj +incontentabile incontentabile adj +incontentabili incontentabile adj +incontentabilità incontentabilità nom +incontestabile incontestabile adj +incontestabili incontestabile adj +incontestabilmente incontestabilmente adv +incontestata incontestata adj +incontinente incontinente adj +incontinenti incontinente adj +incontinenza incontinenza nom +incontinenze incontinenza nom +incontra incontrare ver +incontrai incontrare ver +incontralo incontrare ver +incontrami incontrare ver +incontrammo incontrare ver +incontrando incontrare ver +incontrandoci incontrare ver +incontrandola incontrare ver +incontrandole incontrare ver +incontrandoli incontrare ver +incontrandolo incontrare ver +incontrandone incontrare ver +incontrandosi incontrare ver +incontrandoti incontrare ver +incontrandovi incontrare ver +incontrano incontrare ver +incontrante incontrare ver +incontrar incontrare ver +incontrarci incontrare ver +incontrare incontrare ver +incontrario incontrario adv +incontrarla incontrare ver +incontrarle incontrare ver +incontrarli incontrare ver +incontrarlo incontrare ver +incontrarmi incontrare ver +incontrarne incontrare ver +incontrarono incontrare ver +incontrarsi incontrare ver +incontrarti incontrare ver +incontrarvi incontrare ver +incontrasi incontrare ver +incontrasse incontrare ver +incontrassero incontrare ver +incontrassi incontrare ver +incontrassimo incontrare ver +incontrastabile incontrastabile adj +incontrastabili incontrastabile adj +incontrastata incontrastato adj +incontrastate incontrastato adj +incontrastati incontrastato adj +incontrastato incontrastato adj +incontrata incontrare ver +incontrate incontrare ver +incontratesi incontrare ver +incontratevi incontrare ver +incontrati incontrare ver +incontrato incontrare ver +incontrava incontrare ver +incontravamo incontrare ver +incontravano incontrare ver +incontravo incontrare ver +incontrerai incontrare ver +incontreranno incontrare ver +incontrerebbe incontrare ver +incontrerebbero incontrare ver +incontrerei incontrare ver +incontreremo incontrare ver +incontreresti incontrare ver +incontrerete incontrare ver +incontrerà incontrare ver +incontrerò incontrare ver +incontri incontro nom +incontriamo incontrare ver +incontriamoci incontrare ver +incontriate incontrare ver +incontrino incontrare ver +incontro incontro nom +incontrollabile incontrollabile adj +incontrollabili incontrollabile adj +incontrollata incontrollato adj +incontrollate incontrollato adj +incontrollati incontrollato adj +incontrollato incontrollato adj +incontroverso incontroverso adj +incontrovertibile incontrovertibile adj +incontrovertibili incontrovertibile adj +incontrò incontrare ver +inconveniente inconveniente adj +inconvenienti inconveniente nom +inconvertibile inconvertibile adj +inconvertibilità inconvertibilità nom +incoraggeranno incoraggiare ver +incoraggerebbe incoraggiare ver +incoraggerebbero incoraggiare ver +incoraggerei incoraggiare ver +incoraggerà incoraggiare ver +incoraggi incoraggiare ver +incoraggia incoraggiare ver +incoraggialo incoraggiare ver +incoraggiamenti incoraggiamento nom +incoraggiamento incoraggiamento nom +incoraggiamo incoraggiare ver +incoraggiando incoraggiare ver +incoraggiandola incoraggiare ver +incoraggiandole incoraggiare ver +incoraggiandoli incoraggiare ver +incoraggiandolo incoraggiare ver +incoraggiandone incoraggiare ver +incoraggiano incoraggiare ver +incoraggiante incoraggiante adj +incoraggianti incoraggiante adj +incoraggiar incoraggiare ver +incoraggiarci incoraggiare ver +incoraggiare incoraggiare ver +incoraggiarla incoraggiare ver +incoraggiarle incoraggiare ver +incoraggiarli incoraggiare ver +incoraggiarlo incoraggiare ver +incoraggiarmi incoraggiare ver +incoraggiarne incoraggiare ver +incoraggiarono incoraggiare ver +incoraggiarsi incoraggiare ver +incoraggiasse incoraggiare ver +incoraggiassero incoraggiare ver +incoraggiata incoraggiare ver +incoraggiate incoraggiare ver +incoraggiati incoraggiare ver +incoraggiato incoraggiare ver +incoraggiava incoraggiare ver +incoraggiavano incoraggiare ver +incoraggino incoraggiare ver +incoraggio incoraggiare ver +incoraggiò incoraggiare ver +incorda incordare ver +incordata incordare ver +incordate incordare ver +incordato incordare ver +incordatura incordatura nom +incordature incordatura nom +incorna incornare ver +incornare incornare ver +incornata incornare ver +incornate incornare ver +incornati incornare ver +incornato incornare ver +incornicia incorniciare ver +incorniciando incorniciare ver +incorniciandolo incorniciare ver +incorniciano incorniciare ver +incorniciante incorniciare ver +incornicianti incorniciare ver +incorniciare incorniciare ver +incorniciarle incorniciare ver +incorniciarlo incorniciare ver +incorniciata incorniciare ver +incorniciate incorniciare ver +incorniciati incorniciare ver +incorniciato incorniciare ver +incorniciatura incorniciatura nom +incorniciature incorniciatura nom +incorniciava incorniciare ver +incorniciavano incorniciare ver +incorniciò incorniciare ver +incornò incornare ver +incorona incoronare ver +incoronando incoronare ver +incoronandola incoronare ver +incoronandolo incoronare ver +incoronandosi incoronare ver +incoronano incoronare ver +incoronante incoronare ver +incoronare incoronare ver +incoronarla incoronare ver +incoronarlo incoronare ver +incoronarono incoronare ver +incoronarsi incoronare ver +incoronarti incoronare ver +incoronasse incoronare ver +incoronassero incoronare ver +incoronata incoronare ver +incoronate incoronare ver +incoronati incoronare ver +incoronato incoronare ver +incoronava incoronare ver +incoronavano incoronare ver +incoronazione incoronazione nom +incoronazioni incoronazione nom +incoroneranno incoronare ver +incoronerà incoronare ver +incoronò incoronare ver +incorpora incorporare ver +incorporaci incorporare ver +incorporamento incorporamento nom +incorporando incorporare ver +incorporandola incorporare ver +incorporandole incorporare ver +incorporandoli incorporare ver +incorporandolo incorporare ver +incorporandone incorporare ver +incorporandosi incorporare ver +incorporandovi incorporare ver +incorporano incorporare ver +incorporante incorporare ver +incorporanti incorporare ver +incorporar incorporare ver +incorporare incorporare ver +incorporarla incorporare ver +incorporarle incorporare ver +incorporarli incorporare ver +incorporarlo incorporare ver +incorporarne incorporare ver +incorporarono incorporare ver +incorporarsi incorporare ver +incorporarvi incorporare ver +incorporasse incorporare ver +incorporassero incorporare ver +incorporata incorporare ver +incorporate incorporare ver +incorporati incorporare ver +incorporato incorporare ver +incorporava incorporare ver +incorporavano incorporare ver +incorporazione incorporazione nom +incorporazioni incorporazione nom +incorporea incorporeo adj +incorporee incorporeo adj +incorporei incorporeo adj +incorporeità incorporeità nom +incorporeo incorporeo adj +incorporeranno incorporare ver +incorporerebbe incorporare ver +incorporerei incorporare ver +incorporerà incorporare ver +incorpori incorporare ver +incorporino incorporare ver +incorporo incorporare ver +incorporò incorporare ver +incorra incorrere ver +incorrano incorrere ver +incorre incorrere ver +incorreggibile incorreggibile adj +incorreggibili incorreggibile adj +incorrendo incorrere ver +incorrerai incorrere ver +incorreranno incorrere ver +incorrere incorrere ver +incorrerebbe incorrere ver +incorrerei incorrere ver +incorrervi incorrere ver +incorrerà incorrere ver +incorresse incorrere ver +incorretta incorretto adj +incorrette incorretto adj +incorretti incorretto adj +incorretto incorretto adj +incorreva incorrere ver +incorrevano incorrere ver +incorri incorrere ver +incorro incorrere ver +incorrono incorrere ver +incorrotta incorrotto adj +incorrotte incorrotto adj +incorrotti incorrotto adj +incorrotto incorrotto adj +incorruttibile incorruttibile adj +incorruttibili incorruttibile adj +incorruttibilità incorruttibilità nom +incorsa incorrere ver +incorse incorrere ver +incorsero incorrere ver +incorsi incorrere ver +incorso incorrere ver +incosciente incosciente adj +incoscienti incosciente adj +incoscienza incoscienza nom +incostante incostante adj +incostanti incostante adj +incostituzionale incostituzionale adj +incostituzionali incostituzionale adj +incostituzionalità incostituzionalità nom +incredibile incredibile adj +incredibili incredibile adj +incredibilità incredibilità nom +incredibilmente incredibilmente adv +incredula incredulo adj +incredule incredulo adj +increduli incredulo adj +incredulità incredulità nom +incredulo incredulo adj +incrementa incrementare ver +incrementale incrementale adj +incrementali incrementale adj +incrementando incrementare ver +incrementandola incrementare ver +incrementandole incrementare ver +incrementandoli incrementare ver +incrementandolo incrementare ver +incrementandone incrementare ver +incrementandosi incrementare ver +incrementano incrementare ver +incrementare incrementare ver +incrementarla incrementare ver +incrementarle incrementare ver +incrementarli incrementare ver +incrementarlo incrementare ver +incrementarne incrementare ver +incrementarono incrementare ver +incrementarsi incrementare ver +incrementasse incrementare ver +incrementassero incrementare ver +incrementata incrementare ver +incrementate incrementare ver +incrementati incrementare ver +incrementato incrementare ver +incrementava incrementare ver +incrementavano incrementare ver +incrementeranno incrementare ver +incrementerebbe incrementare ver +incrementerebbero incrementare ver +incrementerei incrementare ver +incrementerà incrementare ver +incrementi incremento nom +incrementiamo incrementare ver +incrementino incrementare ver +incremento incremento nom +incrementò incrementare ver +increscente increscere ver +incresciosa increscioso adj +incresciose increscioso adj +incresciosi increscioso adj +increscioso increscioso adj +increspa increspare ver +increspamenti increspamento nom +increspamento increspamento nom +increspando increspare ver +increspano increspare ver +increspare increspare ver +incresparsi increspare ver +increspata increspare ver +increspate increspare ver +increspati increspare ver +increspato increspare ver +increspatura increspatura nom +increspature increspatura nom +incrimina incriminare ver +incriminabile incriminabile adj +incriminabili incriminabile adj +incriminando incriminare ver +incriminandolo incriminare ver +incriminano incriminare ver +incriminante incriminare ver +incriminanti incriminare ver +incriminare incriminare ver +incriminarla incriminare ver +incriminarli incriminare ver +incriminarlo incriminare ver +incriminarono incriminare ver +incriminata incriminato adj +incriminate incriminato adj +incriminati incriminato adj +incriminato incriminare ver +incriminava incriminare ver +incriminavano incriminare ver +incriminazione incriminazione nom +incriminazioni incriminazione nom +incriminerà incriminare ver +incriminino incriminare ver +incriminò incriminare ver +incrina incrinare ver +incrinando incrinare ver +incrinandogli incrinare ver +incrinandolo incrinare ver +incrinandone incrinare ver +incrinandosi incrinare ver +incrinano incrinare ver +incrinare incrinare ver +incrinarono incrinare ver +incrinarsi incrinare ver +incrinata incrinare ver +incrinate incrinare ver +incrinati incrinare ver +incrinato incrinare ver +incrinatura incrinatura nom +incrinature incrinatura nom +incrinerebbe incrinare ver +incrinerà incrinare ver +incrinò incrinare ver +incroceranno incrociare ver +incrocerà incrociare ver +incroci incrocio nom +incrocia incrociare ver +incrociamo incrociare ver +incrociando incrociare ver +incrociandola incrociare ver +incrociandole incrociare ver +incrociandoli incrociare ver +incrociandolo incrociare ver +incrociandomi incrociare ver +incrociandone incrociare ver +incrociandosi incrociare ver +incrociano incrociare ver +incrociante incrociare ver +incrocianti incrociare ver +incrociar incrociare ver +incrociarci incrociare ver +incrociare incrociare ver +incrociarla incrociare ver +incrociarle incrociare ver +incrociarli incrociare ver +incrociarlo incrociare ver +incrociarmi incrociare ver +incrociarono incrociare ver +incrociarsi incrociare ver +incrociarti incrociare ver +incrociasse incrociare ver +incrociassero incrociare ver +incrociata incrociare ver +incrociate incrociare ver +incrociati incrociare ver +incrociato incrociare ver +incrociatore incrociatore nom +incrociatori incrociatore nom +incrociava incrociare ver +incrociavano incrociare ver +incrociavo incrociare ver +incrocino incrociare ver +incrocio incrocio nom +incrociò incrociare ver +incrollabile incrollabile adj +incrollabili incrollabile adj +incrosta incrostare ver +incrostamento incrostamento nom +incrostano incrostare ver +incrostante incrostare ver +incrostanti incrostare ver +incrostare incrostare ver +incrostarsi incrostare ver +incrostata incrostare ver +incrostate incrostare ver +incrostati incrostare ver +incrostato incrostare ver +incrostazione incrostazione nom +incrostazioni incrostazione nom +incrudelire incrudelire ver +incrudelisce incrudelire ver +incrudelito incrudelire ver +incrudeliva incrudelire ver +incrudente incrudire ver +incrudenti incrudire ver +incrudimento incrudimento nom +incrudire incrudire ver +incrudirono incrudire ver +incrudisce incrudire ver +incrudita incrudire ver +incrudito incrudire ver +incruenta incruento adj +incruente incruento adj +incruenti incruento adj +incruento incruento adj +incuba incubare ver +incubaci incubare ver +incubando incubare ver +incubano incubare ver +incubare incubare ver +incubarle incubare ver +incubata incubare ver +incubate incubare ver +incubati incubare ver +incubato incubare ver +incubatoio incubatoio nom +incubatrice incubatrice nom +incubatrici incubatrice nom +incubazione incubazione nom +incubazioni incubazione nom +incuberanno incubare ver +incubi incubo nom +incubino incubare ver +incubo incubo nom +incudine incudine nom +incudini incudine nom +inculca inculcare ver +inculcando inculcare ver +inculcandogli inculcare ver +inculcano inculcare ver +inculcarci inculcare ver +inculcare inculcare ver +inculcargli inculcare ver +inculcarle inculcare ver +inculcarono inculcare ver +inculcata inculcare ver +inculcate inculcare ver +inculcati inculcare ver +inculcato inculcare ver +inculcava inculcare ver +inculcherebbe inculcare ver +inculchino inculcare ver +inculcò inculcare ver +incultura incultura nom +incunaboli incunabolo nom +incunabolo incunabolo nom +incunea incuneare ver +incuneandosi incuneare ver +incuneano incuneare ver +incunearono incuneare ver +incunearsi incuneare ver +incuneata incuneare ver +incuneate incuneare ver +incuneati incuneare ver +incuneato incuneare ver +incuneava incuneare ver +incuneavano incuneare ver +incuneò incuneare ver +incupendo incupire ver +incupire incupire ver +incupirsi incupire ver +incupirà incupire ver +incupisce incupire ver +incupiscono incupire ver +incupita incupire ver +incupiti incupire ver +incupito incupire ver +incupì incupire ver +incurabile incurabile adj +incurabili incurabile nom +incurabilità incurabilità nom +incurante incurante adj +incuranti incurante adj +incuria incuria nom +incurie incuria nom +incuriosendo incuriosire ver +incuriosire incuriosire ver +incuriosirebbe incuriosire ver +incuriosirla incuriosire ver +incuriosirlo incuriosire ver +incuriosirono incuriosire ver +incuriosirsi incuriosire ver +incuriosisca incuriosire ver +incuriosisce incuriosire ver +incuriosiscono incuriosire ver +incuriosita incuriosire ver +incuriosite incuriosire ver +incuriositi incuriosire ver +incuriosito incuriosire ver +incuriosiva incuriosire ver +incuriosivano incuriosire ver +incuriosì incuriosire ver +incursione incursione nom +incursioni incursione nom +incurva incurvare ver +incurvamento incurvamento nom +incurvando incurvare ver +incurvandola incurvare ver +incurvandosi incurvare ver +incurvano incurvare ver +incurvare incurvare ver +incurvarsi incurvare ver +incurvata incurvare ver +incurvate incurvare ver +incurvati incurvare ver +incurvato incurvare ver +incurvatura incurvatura nom +incurvature incurvatura nom +incurvava incurvare ver +incurvavano incurvare ver +incurvi incurvare ver +incurvò incurvare ver +incussero incutere ver +incusso incutere ver +incustodita incustodito adj +incustodite incustodito adj +incustoditi incustodito adj +incustodito incustodito adj +incuta incutere ver +incute incutere ver +incutendo incutere ver +incutere incutere ver +incutergli incutere ver +incutesse incutere ver +incuteva incutere ver +incutevano incutere ver +incutono incutere ver +ind ind sw +indaco indaco nom +indaffarata indaffarato adj +indaffarate indaffarato adj +indaffarati indaffarato adj +indaffarato indaffarato adj +indaga indagare ver +indagabile indagabile adj +indagabili indagabile adj +indagai indagare ver +indagando indagare ver +indagandole indagare ver +indagandoli indagare ver +indagandolo indagare ver +indagandone indagare ver +indagano indagare ver +indagante indagare ver +indagar indagare ver +indagare indagare ver +indagarla indagare ver +indagarle indagare ver +indagarlo indagare ver +indagarne indagare ver +indagarono indagare ver +indagarsi indagare ver +indagasse indagare ver +indagassero indagare ver +indagata indagare ver +indagate indagare ver +indagati indagare ver +indagato indagare ver +indagatore indagatore adj +indagatori indagatore adj +indagatrice indagatore adj +indagatrici indagatore nom +indagava indagare ver +indagavano indagare ver +indagavi indagare ver +indagavo indagare ver +indagheranno indagare ver +indagherei indagare ver +indagheremo indagare ver +indagherà indagare ver +indagherò indagare ver +indaghi indagare ver +indaghiamo indagare ver +indaghino indagare ver +indagine indagine nom +indagini indagine nom +indago indagare ver +indagò indagare ver +indantrene indantrene nom +indarno indarno adv +indebita indebito adj +indebitamente indebitamente adv +indebitamenti indebitamento nom +indebitamento indebitamento nom +indebitando indebitare ver +indebitandosi indebitare ver +indebitano indebitare ver +indebitare indebitare ver +indebitarono indebitare ver +indebitarsi indebitare ver +indebitata indebitare ver +indebitate indebitare ver +indebitati indebitare ver +indebitato indebitare ver +indebitava indebitare ver +indebite indebito adj +indebiti indebito adj +indebito indebito adj +indebitò indebitare ver +indebolendo indebolire ver +indebolendola indebolire ver +indebolendole indebolire ver +indebolendoli indebolire ver +indebolendolo indebolire ver +indebolendone indebolire ver +indebolendosi indebolire ver +indebolimenti indebolimento nom +indebolimento indebolimento nom +indeboliranno indebolire ver +indebolire indebolire ver +indebolirebbe indebolire ver +indebolirebbero indebolire ver +indebolirla indebolire ver +indebolirle indebolire ver +indebolirli indebolire ver +indebolirlo indebolire ver +indebolirne indebolire ver +indebolirono indebolire ver +indebolirsi indebolire ver +indebolirà indebolire ver +indebolisca indebolire ver +indeboliscano indebolire ver +indebolisce indebolire ver +indeboliscono indebolire ver +indebolisse indebolire ver +indebolissero indebolire ver +indebolita indebolire ver +indebolite indebolire ver +indeboliti indebolire ver +indebolito indebolire ver +indeboliva indebolire ver +indebolivano indebolire ver +indebolì indebolire ver +indecente indecente adj +indecenti indecente adj +indecenza indecenza nom +indecenze indecenza nom +indecifrabile indecifrabile adj +indecifrabili indecifrabile adj +indecisa indeciso adj +indecise indeciso adj +indecisi indeciso adj +indecisione indecisione nom +indecisioni indecisione nom +indeciso indeciso adj +indeclinabile indeclinabile adj +indeclinabili indeclinabile adj +indecorosa indecoroso adj +indecorose indecoroso adj +indecorosi indecoroso adj +indecoroso indecoroso adj +indefessa indefesso adj +indefessi indefesso adj +indefesso indefesso adj +indefettibile indefettibile adj +indefettibili indefettibile adj +indefinibile indefinibile adj +indefinibili indefinibile adj +indefinita indefinito adj +indefinite indefinito adj +indefinitezza indefinitezza nom +indefiniti indefinito adj +indefinito indefinito adj +indeformabile indeformabile adj +indeformabili indeformabile adj +indeformabilità indeformabilità nom +indegna indegno adj +indegne indegno adj +indegni indegno adj +indegnità indegnità nom +indegno indegno adj +indeiscente indeiscente adj +indeiscenti indeiscente adj +indeiscenza indeiscenza nom +indelebile indelebile adj +indelebili indelebile adj +indelicata indelicato adj +indelicate indelicato adj +indelicatezza indelicatezza nom +indelicati indelicato adj +indelicato indelicato adj +indemaniare indemaniare ver +indemaniata indemaniare ver +indemaniato indemaniare ver +indemoniata indemoniato adj +indemoniate indemoniato nom +indemoniati indemoniato nom +indemoniato indemoniato adj +indenne indenne adj +indenni indenne adj +indennità indennità nom +indennizzando indennizzare ver +indennizzare indennizzare ver +indennizzarlo indennizzare ver +indennizzata indennizzare ver +indennizzate indennizzare ver +indennizzati indennizzare ver +indennizzato indennizzare ver +indennizzi indennizzo nom +indennizzo indennizzo nom +indennizzò indennizzare ver +indentro indentro adv +inderogabile inderogabile adj +inderogabili inderogabile adj +inderogabilità inderogabilità nom +indescrivibile indescrivibile adj +indescrivibili indescrivibile adj +indesiderabile indesiderabile adj +indesiderabili indesiderabile adj +indesiderata indesiderato adj +indesiderate indesiderato adj +indesiderati indesiderato adj +indesiderato indesiderato adj +indeterminabile indeterminabile adj +indeterminabili indeterminabile adj +indeterminabilità indeterminabilità nom +indeterminata indeterminato adj +indeterminate indeterminato adj +indeterminatezza indeterminatezza nom +indeterminati indeterminato adj +indeterminativi indeterminativo adj +indeterminativo indeterminativo adj +indeterminato indeterminato adj +indeterminazione indeterminazione nom +indeterminazioni indeterminazione nom +indetta indire ver +indette indire ver +indetti indire ver +indetto indire ver +indeuropea indeuropeo adj +indeuropee indeuropeo adj +indeuropei indeuropeo adj +indeuropeo indeuropeo adj +indi indi adv +india indio adj +indiana indiano adj +indiane indiano adj +indiani indiano adj +indiano indiano adj +indiavolata indiavolato adj +indiavolate indiavolato adj +indiavolati indiavolato adj +indiavolato indiavolato adj +indica indico adj +indicaci indicare ver +indicai indicare ver +indicala indicare ver +indicale indicare ver +indicali indicare ver +indicalo indicare ver +indicamele indicare ver +indicamelo indicare ver +indicami indicare ver +indicando indicare ver +indicandoci indicare ver +indicandogli indicare ver +indicandola indicare ver +indicandole indicare ver +indicandoli indicare ver +indicandolo indicare ver +indicandomi indicare ver +indicandone indicare ver +indicandosi indicare ver +indicandoti indicare ver +indicano indicare ver +indicante indicare ver +indicanti indicare ver +indicar indicare ver +indicarci indicare ver +indicare indicare ver +indicargli indicare ver +indicarglielo indicare ver +indicarla indicare ver +indicarle indicare ver +indicarli indicare ver +indicarlo indicare ver +indicarmela indicare ver +indicarmele indicare ver +indicarmeli indicare ver +indicarmelo indicare ver +indicarmene indicare ver +indicarmi indicare ver +indicarne indicare ver +indicarono indicare ver +indicarsi indicare ver +indicarteli indicare ver +indicartene indicare ver +indicarti indicare ver +indicarvi indicare ver +indicasse indicare ver +indicassero indicare ver +indicassi indicare ver +indicata indicare ver +indicate indicare ver +indicategli indicare ver +indicatela indicare ver +indicatelo indicare ver +indicatemela indicare ver +indicatemele indicare ver +indicatemene indicare ver +indicatemi indicare ver +indicati indicare ver +indicativa indicativo adj +indicativamente indicativamente adv +indicative indicativo adj +indicativi indicativo adj +indicativo indicativo adj +indicato indicare ver +indicatore indicatore nom +indicatori indicatore nom +indicatrice indicatore adj +indicatrici indicatore adj +indicava indicare ver +indicavano indicare ver +indicavate indicare ver +indicavi indicare ver +indicavo indicare ver +indicazione indicazione nom +indicazioni indicazione nom +indice indico adj +indicendo indire ver +indicente indire ver +indicesse indire ver +indiceva indire ver +indicevano indire ver +indicherai indicare ver +indicheranno indicare ver +indicherebbe indicare ver +indicherebbero indicare ver +indicherei indicare ver +indicheremmo indicare ver +indicheremo indicare ver +indicheresti indicare ver +indicherete indicare ver +indicherà indicare ver +indicherò indicare ver +indichi indicare ver +indichiamo indicare ver +indichiamoli indicare ver +indichiamolo indicare ver +indichino indicare ver +indici indice nom +indiciamo indire ver +indicine indire ver +indicizza indicizzare ver +indicizzando indicizzare ver +indicizzandoli indicizzare ver +indicizzano indicizzare ver +indicizzare indicizzare ver +indicizzarla indicizzare ver +indicizzarle indicizzare ver +indicizzarli indicizzare ver +indicizzarne indicizzare ver +indicizzata indicizzare ver +indicizzate indicizzare ver +indicizzati indicizzare ver +indicizzato indicizzare ver +indicizzava indicizzare ver +indicizzazione indicizzazione nom +indicizzazioni indicizzazione nom +indicizzeranno indicizzare ver +indicizzerei indicizzare ver +indicizzerà indicizzare ver +indicizzi indicizzare ver +indicizzino indicizzare ver +indico indico adj +indicono indire ver +indicò indicare ver +indie indio adj +indietreggerà indietreggiare ver +indietreggia indietreggiare ver +indietreggiai indietreggiare ver +indietreggiamo indietreggiare ver +indietreggiando indietreggiare ver +indietreggiano indietreggiare ver +indietreggiare indietreggiare ver +indietreggiarono indietreggiare ver +indietreggiata indietreggiare ver +indietreggiate indietreggiare ver +indietreggiati indietreggiare ver +indietreggiato indietreggiare ver +indietreggiava indietreggiare ver +indietreggiavano indietreggiare ver +indietreggio indietreggiare ver +indietreggiò indietreggiare ver +indietro indietro adv_sup +indifendibile indifendibile adj +indifendibili indifendibile adj +indifesa indifeso adj +indifese indifeso adj +indifesi indifeso adj +indifeso indifeso adj +indifferente indifferente adj +indifferentemente indifferentemente adv +indifferenti indifferente adj +indifferenza indifferenza nom +indifferenze indifferenza nom +indifferenziata indifferenziato adj +indifferenziate indifferenziato adj +indifferenziati indifferenziato adj +indifferenziato indifferenziato adj +indifferibile indifferibile adj +indifferibili indifferibile adj +indigena indigeno adj +indigene indigeno adj +indigeni indigeno adj +indigeno indigeno adj +indigente indigente adj +indigenti indigente adj +indigenza indigenza nom +indigenze indigenza nom +indigesta indigesto adj +indigeste indigesto adj +indigesti indigesto adj +indigestione indigestione nom +indigestioni indigestione nom +indigesto indigesto adj +indigete indigete adj +indigeti indigete adj +indigna indignare ver +indignando indignare ver +indignandosi indignare ver +indignano indignare ver +indignarci indignare ver +indignare indignare ver +indignarmi indignare ver +indignarono indignare ver +indignarsi indignare ver +indignarti indignare ver +indignasse indignare ver +indignata indignare ver +indignate indignato adj +indignatevi indignare ver +indignati indignare ver +indignato indignare ver +indignava indignare ver +indignazione indignazione nom +indigni indignare ver +indigno indignare ver +indignò indignare ver +indigofera indigofera nom +indimenticabile indimenticabile adj +indimenticabili indimenticabile adj +indimostrabile indimostrabile adj +indimostrabili indimostrabile adj +indimostrata indimostrata adj +indio indio adj +indipendente indipendente adj +indipendentemente indipendentemente adv +indipendenti indipendente adj +indipendentismo indipendentismo nom +indipendentista indipendentista nom +indipendentiste indipendentista nom +indipendentisti indipendentista nom +indipendenza indipendenza nom +indipendenze indipendenza nom +indir indire ver +indire indire ver +indiretta indiretto adj +indirettamente indirettamente adv +indirette indiretto adj +indiretti indiretto adj +indiretto indiretto adj +indirizza indirizzare ver +indirizzali indirizzare ver +indirizzalo indirizzare ver +indirizzamento indirizzamento nom +indirizzami indirizzare ver +indirizzando indirizzare ver +indirizzandoci indirizzare ver +indirizzandogli indirizzare ver +indirizzandola indirizzare ver +indirizzandole indirizzare ver +indirizzandoli indirizzare ver +indirizzandolo indirizzare ver +indirizzandomi indirizzare ver +indirizzandone indirizzare ver +indirizzandosi indirizzare ver +indirizzano indirizzare ver +indirizzanti indirizzare ver +indirizzarci indirizzare ver +indirizzare indirizzare ver +indirizzargli indirizzare ver +indirizzari indirizzario nom +indirizzario indirizzario nom +indirizzarla indirizzare ver +indirizzarle indirizzare ver +indirizzarli indirizzare ver +indirizzarlo indirizzare ver +indirizzarmi indirizzare ver +indirizzarne indirizzare ver +indirizzarono indirizzare ver +indirizzarsi indirizzare ver +indirizzarti indirizzare ver +indirizzarvi indirizzare ver +indirizzasse indirizzare ver +indirizzata indirizzare ver +indirizzate indirizzare ver +indirizzategli indirizzare ver +indirizzatele indirizzare ver +indirizzatemi indirizzare ver +indirizzati indirizzare ver +indirizzato indirizzare ver +indirizzava indirizzare ver +indirizzavano indirizzare ver +indirizzeranno indirizzare ver +indirizzerebbe indirizzare ver +indirizzerebbero indirizzare ver +indirizzerei indirizzare ver +indirizzerà indirizzare ver +indirizzi indirizzo nom +indirizziamo indirizzare ver +indirizzino indirizzare ver +indirizzo indirizzo nom +indirizzò indirizzare ver +indirle indire ver +indirlo indire ver +indirne indire ver +indirsi indire ver +indirà indire ver +indirò indire ver +indisciplina indisciplina nom +indisciplinata indisciplinato adj +indisciplinate indisciplinato adj +indisciplinatezza indisciplinatezza nom +indisciplinati indisciplinato adj +indisciplinato indisciplinato adj +indiscipline indisciplina nom +indiscreta indiscreto adj +indiscrete indiscreto adj +indiscreti indiscreto adj +indiscreto indiscreto adj +indiscrezione indiscrezione nom +indiscrezioni indiscrezione nom +indiscriminata indiscriminato adj +indiscriminatamente indiscriminatamente adv +indiscriminate indiscriminato adj +indiscriminati indiscriminato adj +indiscriminato indiscriminato adj +indiscussa indiscusso adj +indiscusse indiscusso adj +indiscussi indiscusso adj +indiscusso indiscusso adj +indiscutibile indiscutibile adj +indiscutibili indiscutibile adj +indispensabile indispensabile adj +indispensabili indispensabile adj +indispensabilità indispensabilità nom +indispettendo indispettire ver +indispettendosi indispettire ver +indispettire indispettire ver +indispettirebbe indispettire ver +indispettirlo indispettire ver +indispettirsi indispettire ver +indispettisce indispettire ver +indispettiscono indispettire ver +indispettita indispettire ver +indispettite indispettire ver +indispettiti indispettire ver +indispettito indispettire ver +indispettiva indispettire ver +indispettì indispettire ver +indispone indisporre ver +indisponendo indisporre ver +indisponente indisponente adj +indisponenti indisponente adj +indisponeva indisporre ver +indisponibilità indisponibilità nom +indisporre indisporre ver +indispose indisporre ver +indisposizione indisposizione nom +indisposizioni indisposizione nom +indisposta indisporre ver +indisposto indisporre ver +indisse indire ver +indissero indire ver +indissociabile indissociabile adj +indissociabili indissociabile adj +indissolubile indissolubile adj +indissolubili indissolubile adj +indissolubilmente indissolubilmente adv +indistinguibile indistinguibile adj +indistinta indistinto adj +indistintamente indistintamente adv +indistinte indistinto adj +indistinti indistinto adj +indistinto indistinto adj +indistruttibile indistruttibile adj +indistruttibili indistruttibile adj +indistruttibilità indistruttibilità nom +indisturbata indisturbato adj +indisturbate indisturbato adj +indisturbati indisturbato adj +indisturbato indisturbato adj +indite indire ver +indivia indivia nom +individua individuare ver +individuabile individuabile adj +individuabili individuabile adj +individuaci individuare ver +individuai individuare ver +individuale individuale adj +individuali individuale adj +individualismi individualismo nom +individualismo individualismo nom +individualista individualista nom +individualiste individualista nom +individualisti individualista nom +individualistica individualistico adj +individualistiche individualistico adj +individualistici individualistico adj +individualistico individualistico adj +individualità individualità nom +individualizzano individualizzare ver +individualizzante individualizzare ver +individualizzare individualizzare ver +individualizzarsi individualizzare ver +individualizzata individualizzare ver +individualizzate individualizzare ver +individualizzati individualizzare ver +individualizzato individualizzare ver +individualizzazione individualizzazione nom +individualmente individualmente adv +individuando individuare ver +individuandola individuare ver +individuandole individuare ver +individuandoli individuare ver +individuandolo individuare ver +individuandone individuare ver +individuandosi individuare ver +individuandovi individuare ver +individuano individuare ver +individuante individuare ver +individuanti individuare ver +individuare individuare ver +individuarla individuare ver +individuarle individuare ver +individuarli individuare ver +individuarlo individuare ver +individuarne individuare ver +individuarono individuare ver +individuarsi individuare ver +individuarti individuare ver +individuarvi individuare ver +individuasse individuare ver +individuassero individuare ver +individuata individuare ver +individuate individuare ver +individuati individuare ver +individuato individuare ver +individuava individuare ver +individuavano individuare ver +individuazione individuazione nom +individuazioni individuazione nom +individueranno individuare ver +individuerebbe individuare ver +individuerebbero individuare ver +individuerà individuare ver +individui individuo nom +individuiamo individuare ver +individuino individuare ver +individuo individuo nom +individuò individuare ver +indivisa indiviso adj +indivise indiviso adj +indivisi indiviso adj +indivisibile indivisibile adj +indivisibili indivisibile adj +indivisibilità indivisibilità nom +indiviso indiviso adj +indizi indizio nom +indiziali indiziare ver +indizianti indiziare ver +indiziata indiziare ver +indiziate indiziare ver +indiziati indiziare ver +indiziato indiziare ver +indizio indizio nom +indizione indizione nom +indizioni indizione nom +indocile indocile adj +indocili indocile adj +indoeuropea indoeuropeo adj +indoeuropee indoeuropeo adj +indoeuropei indoeuropeo adj +indoeuropeo indoeuropeo adj +indole indole nom +indolente indolente adj +indolenti indolente adj +indolenza indolenza nom +indolenzimenti indolenzimento nom +indolenzimento indolenzimento nom +indolenzire indolenzire ver +indolenzita indolenzire ver +indolenziti indolenzire ver +indolenzito indolenzire ver +indoli indole nom +indolore indolore adj +indolori indolore adj +indomabile indomabile adj +indomabili indomabile adj +indomani indomani nom_sup +indomita indomito adj +indomite indomito adj +indomiti indomito adj +indomito indomito adj +indonesiana indonesiano adj +indonesiane indonesiano adj +indonesiani indonesiano adj +indonesiano indonesiano adj +indoor indoor adj +indora indorare ver +indorano indorare ver +indorare indorare ver +indorata indorare ver +indorate indorare ver +indorati indorare ver +indorato indorare ver +indossa indossare ver +indossai indossare ver +indossala indossare ver +indossando indossare ver +indossandola indossare ver +indossandoli indossare ver +indossandolo indossare ver +indossandone indossare ver +indossano indossare ver +indossante indossare ver +indossanti indossare ver +indossar indossare ver +indossare indossare ver +indossarla indossare ver +indossarle indossare ver +indossarli indossare ver +indossarlo indossare ver +indossarne indossare ver +indossarono indossare ver +indossasse indossare ver +indossassero indossare ver +indossata indossare ver +indossate indossare ver +indossati indossare ver +indossato indossare ver +indossatore indossatore nom +indossatori indossatore nom +indossatrice indossatore nom +indossatrici indossatore nom +indossava indossare ver +indossavamo indossare ver +indossavano indossare ver +indossavo indossare ver +indosseranno indossare ver +indosserebbe indossare ver +indosseremo indossare ver +indosserà indossare ver +indosserò indossare ver +indossi indossare ver +indossiamo indossare ver +indossino indossare ver +indosso indosso adv +indossò indossare ver +indotta indurre ver +indotte indurre ver +indotti indurre ver +indotto indurre ver +indottrina indottrinare ver +indottrinando indottrinare ver +indottrinare indottrinare ver +indottrinarla indottrinare ver +indottrinarlo indottrinare ver +indottrinata indottrinare ver +indottrinate indottrinare ver +indottrinati indottrinare ver +indottrinato indottrinare ver +indottrinava indottrinare ver +indottrinò indottrinare ver +indovina indovino nom +indovinala indovinare ver +indovinando indovinare ver +indovinandone indovinare ver +indovinano indovinare ver +indovinare indovinare ver +indovinarla indovinare ver +indovinarli indovinare ver +indovinarlo indovinare ver +indovinarne indovinare ver +indovinassero indovinare ver +indovinata indovinare ver +indovinate indovinare ver +indovinati indovinare ver +indovinato indovinare ver +indovinava indovinare ver +indovinavano indovinare ver +indovine indovino nom +indovinelli indovinello nom +indovinello indovinello nom +indovinerà indovinare ver +indovini indovino nom +indovino indovino nom +indovinò indovinare ver +indubbi indubbio adj +indubbia indubbio adj +indubbiamente indubbiamente adv +indubbie indubbio adj +indubbio indubbio adj +indubitabile indubitabile adj +indubitabili indubitabile adj +induca indurre ver +inducano indurre ver +induce indurre ver +inducendo indurre ver +inducendogli indurre ver +inducendola indurre ver +inducendole indurre ver +inducendoli indurre ver +inducendolo indurre ver +inducendone indurre ver +inducente indurre ver +inducenti indurre ver +inducesse indurre ver +inducessero indurre ver +induceva indurre ver +inducevano indurre ver +induci indurre ver +induco indurre ver +inducono indurre ver +indugi indugio nom +indugia indugiare ver +indugiamo indugiare ver +indugiando indugiare ver +indugiano indugiare ver +indugiar indugiare ver +indugiare indugiare ver +indugiarono indugiare ver +indugiarvi indugiare ver +indugiasse indugiare ver +indugiato indugiare ver +indugiava indugiare ver +indugiavano indugiare ver +indugio indugio nom +indugiò indugiare ver +induistico induistico adj +indulge indulgere ver +indulgendo indulgere ver +indulgente indulgente adj +indulgenti indulgente adj +indulgenza indulgenza nom +indulgenze indulgenza nom +indulgere indulgere ver +indulgeva indulgere ver +indulgevano indulgere ver +indulgo indulgere ver +indulgono indulgere ver +indulse indulgere ver +indulsero indulgere ver +indulti indulto nom +indulto indulto adj +indumenti indumento nom +indumento indumento nom +indur indurre ver +indurci indurre ver +indurendo indurire ver +indurendosi indurire ver +indurente indurire ver +indurenti indurire ver +indurgli indurre ver +indurimenti indurimento nom +indurimento indurimento nom +indurire indurire ver +indurirla indurire ver +indurirlo indurire ver +indurirono indurire ver +indurirsi indurire ver +indurirò indurire ver +indurisca indurire ver +indurisce indurire ver +induriscono indurire ver +indurita indurire ver +indurite indurire ver +induriti indurire ver +indurito indurire ver +induriva indurire ver +indurivano indurire ver +indurla indurre ver +indurle indurre ver +indurli indurre ver +indurlo indurre ver +indurmi indurre ver +indurne indurre ver +indurranno indurre ver +indurre indurre ver +indurrebbe indurre ver +indurrebbero indurre ver +indurrà indurre ver +indurrò indurre ver +indursi indurre ver +indurti indurre ver +indurvi indurre ver +indurì indurire ver +indusse indurre ver +indussero indurre ver +industre industre adj +industri industre adj +industria industria nom +industriala industriarsi ver +industriale industriale adj +industriali industriale adj +industrialismo industrialismo nom +industrialista industrialista adj +industrializza industrializzare ver +industrializzando industrializzare ver +industrializzare industrializzare ver +industrializzarlo industrializzare ver +industrializzarono industrializzare ver +industrializzarsi industrializzare ver +industrializzata industrializzare ver +industrializzate industrializzare ver +industrializzati industrializzare ver +industrializzato industrializzare ver +industrializzazione industrializzazione nom +industrializzò industrializzare ver +industriano industriarsi ver +industriante industriarsi ver +industrianti industriarsi ver +industriarsi industriarsi ver +industriava industriarsi ver +industrie industria nom +industrierà industriarsi ver +industrierò industriarsi ver +industrio industriarsi ver +industriosa industrioso adj +industriose industrioso adj +industriosi industrioso adj +industrioso industrioso adj +industriò industriarsi ver +induttanza induttanza nom +induttanze induttanza nom +induttiva induttivo adj +induttive induttivo adj +induttivi induttivo adj +induttivo induttivo adj +induttometro induttometro nom +induttore induttore adj +induttori induttore nom +induttrice induttore adj +induttrici induttore adj +induzione induzione nom +induzioni induzione nom +indù indù adj +inebetire inebetire ver +inebetita inebetire ver +inebetiti inebetire ver +inebetito inebetire ver +inebriante inebriante adj +inebrianti inebriante adj +ineccepibile ineccepibile adj +ineccepibili ineccepibile adj +ineccepibilità ineccepibilità nom +inedia inedia nom +inedita inedito adj +inedite inedito adj +inediti inedito adj +inedito inedito adj +ineducata ineducato adj +ineducati ineducato adj +ineducato ineducato adj +ineducazione ineducazione nom +ineffabile ineffabile adj +ineffabili ineffabile adj +ineffabilità ineffabilità nom +inefficace inefficace adj +inefficaci inefficace adj +inefficacia inefficacia nom +inefficiente inefficiente adj +inefficienti inefficiente adj +inefficienza inefficienza nom +inefficienze inefficienza nom +ineguagliabile ineguagliabile adj +ineguagliabili ineguagliabile adj +ineguaglianza ineguaglianza nom +ineguaglianze ineguaglianza nom +ineguale ineguale adj +ineguali ineguale adj +inelastico inelastico adj +inelegante inelegante adj +ineleganti inelegante adj +ineleganza ineleganza nom +ineleganze ineleganza nom +ineleggibile ineleggibile adj +ineleggibili ineleggibile adj +ineleggibilità ineleggibilità nom +ineludibile ineludibile adj +ineludibili ineludibile adj +ineluttabile ineluttabile adj +ineluttabili ineluttabile adj +ineluttabilità ineluttabilità nom +inenarrabile inenarrabile adj +inenarrabili inenarrabile adj +inequivocabile inequivocabile adj +inequivocabili inequivocabile adj +inequivocabilmente inequivocabilmente adv +inerente inerente adj +inerenti inerente adj +inerenza inerenza nom +inerme inerme adj +inermi inerme adj +inerpica inerpicarsi ver +inerpicando inerpicarsi ver +inerpicandosi inerpicarsi ver +inerpicano inerpicarsi ver +inerpicarono inerpicarsi ver +inerpicarsi inerpicarsi ver +inerpicata inerpicarsi ver +inerpicati inerpicarsi ver +inerpicato inerpicarsi ver +inerpicava inerpicarsi ver +inerpicavano inerpicarsi ver +inerpicò inerpicarsi ver +inerte inerte adj +inerti inerte adj +inerzia inerzia nom +inerziale inerziale adj +inerziali inerziale adj +inerzie inerzia nom +inesatta inesatto adj +inesatte inesatto adj +inesattezza inesattezza nom +inesattezze inesattezza nom +inesatti inesatto adj +inesatto inesatto adj +inesauribile inesauribile adj +inesauribili inesauribile adj +inesauribilità inesauribilità nom +inesausta inesausto adj +inesauste inesausto adj +inesausto inesausto adj +inesigibile inesigibile adj +inesigibili inesigibile adj +inesigibilità inesigibilità nom +inesistente inesistente adj +inesistenti inesistente adj +inesistenza inesistenza nom +inesistenze inesistenza nom +inesorabile inesorabile adj +inesorabili inesorabile adj +inesorabilità inesorabilità nom +inesorabilmente inesorabilmente adv +inesperienza inesperienza nom +inesperienze inesperienza nom +inesperta inesperto adj +inesperte inesperto adj +inesperti inesperto adj +inesperto inesperto adj +inesplicabile inesplicabile adj +inesplicabili inesplicabile adj +inesplorabili inesplorabile adj +inesplorata inesplorato adj +inesplorate inesplorato adj +inesplorati inesplorato adj +inesplorato inesplorato adj +inesplosa inesploso adj +inesplose inesploso adj +inesplosi inesploso adj +inesploso inesploso adj +inespressa inespresso adj +inespresse inespresso adj +inespressi inespresso adj +inespressiva inespressivo adj +inespressive inespressivo adj +inespressivi inespressivo adj +inespressivo inespressivo adj +inespresso inespresso adj +inesprimibile inesprimibile adj +inesprimibili inesprimibile adj +inespugnabile inespugnabile adj +inespugnabili inespugnabile adj +inespugnabilità inespugnabilità nom +inespugnata inespugnato adj +inespugnato inespugnato adj +inestimabile inestimabile adj +inestimabili inestimabile adj +inestinguibile inestinguibile adj +inestinguibili inestinguibile adj +inestirpabile inestirpabile adj +inestirpabili inestirpabile adj +inestricabile inestricabile adj +inestricabili inestricabile adj +inetta inetto adj +inette inetto adj +inetti inetto adj +inettitudine inettitudine nom +inettitudini inettitudine nom +inetto inetto adj +inevasa inevaso adj +inevase inevaso adj +inevasi inevaso adj +inevaso inevaso adj +inevitabile inevitabile adj +inevitabili inevitabile adj +inevitabilità inevitabilità nom +inevitabilmente inevitabilmente adv +inezia inezia nom +inezie inezia nom +infagottano infagottare ver +infagottati infagottare ver +infagottato infagottare ver +infallibile infallibile adj +infallibili infallibile adj +infallibilità infallibilità nom +infama infamare ver +infamando infamare ver +infamano infamare ver +infamante infamante adj +infamanti infamante adj +infamare infamare ver +infamata infamare ver +infamate infamare ver +infamati infamare ver +infamato infamare ver +infame infame adj +infami infame adj +infamia infamia nom +infamie infamia nom +infanga infangare ver +infangando infangare ver +infangano infangare ver +infangante infangare ver +infangare infangare ver +infangarlo infangare ver +infangarne infangare ver +infangarsi infangare ver +infangata infangare ver +infangate infangare ver +infangati infangare ver +infangato infangare ver +infangava infangare ver +infangavano infangare ver +infanghi infangare ver +infangò infangare ver +infanta infante nom +infante infante adj +infanti infante adj +infanticida infanticida nom +infanticide infanticida nom +infanticidi infanticida|infanticidio nom +infanticidio infanticidio nom +infantile infantile adj +infantili infantile adj +infantilismi infantilismo nom +infantilismo infantilismo nom +infanzia infanzia nom +infarcendo infarcire ver +infarcendola infarcire ver +infarcendole infarcire ver +infarcir infarcire ver +infarcire infarcire ver +infarcirla infarcire ver +infarcirli infarcire ver +infarcisce infarcire ver +infarcita infarcire ver +infarcite infarcire ver +infarciti infarcire ver +infarcito infarcire ver +infarciva infarcire ver +infarcì infarcire ver +infarina infarinare ver +infarinare infarinare ver +infarinata infarinare ver +infarinate infarinare ver +infarinati infarinare ver +infarinato infarinare ver +infarinatura infarinatura nom +infarinature infarinatura nom +infarti infarto nom +infarto infarto nom +infartuata infartuato adj +infartuati infartuato nom +infartuato infartuato adj +infastidendo infastidire ver +infastidendola infastidire ver +infastidendolo infastidire ver +infastidire infastidire ver +infastidirebbe infastidire ver +infastidirla infastidire ver +infastidirle infastidire ver +infastidirli infastidire ver +infastidirlo infastidire ver +infastidirmi infastidire ver +infastidirono infastidire ver +infastidirsi infastidire ver +infastidirti infastidire ver +infastidirvi infastidire ver +infastidirà infastidire ver +infastidirò infastidire ver +infastidisca infastidire ver +infastidiscano infastidire ver +infastidisce infastidire ver +infastidisci infastidire ver +infastidiscimi infastidire ver +infastidisco infastidire ver +infastidiscono infastidire ver +infastidisse infastidire ver +infastidita infastidire ver +infastidite infastidire ver +infastiditi infastidire ver +infastidito infastidire ver +infastidiva infastidire ver +infastidivano infastidire ver +infastidì infastidire ver +infaticabile infaticabile adj +infaticabili infaticabile adj +infatti infatti adv_sup +infatua infatuare ver +infatuandosi infatuare ver +infatuare infatuare ver +infatuarono infatuare ver +infatuarsi infatuare ver +infatuata infatuare ver +infatuate infatuare ver +infatuati infatuare ver +infatuato infatuare ver +infatuazione infatuazione nom +infatuazioni infatuazione nom +infatuerà infatuare ver +infatuò infatuare ver +infausta infausto adj +infauste infausto adj +infausti infausto adj +infausto infausto adj +infeconda infecondo adj +infeconde infecondo adj +infecondi infecondo adj +infecondità infecondità nom +infecondo infecondo adj +infedele infedele adj +infedeli infedele nom +infedeltà infedeltà nom +infelice infelice adj +infelici infelice adj +infelicità infelicità nom +infeltrendo infeltrire ver +infeltrire infeltrire ver +infeltrisce infeltrire ver +infeltriti infeltrire ver +infeltrito infeltrire ver +infera infero adj +infere infero adj +inferendo inferire ver +inferendogli inferire ver +inferenza inferenza nom +inferenze inferenza nom +inferi inferi nom +inferiamo inferire ver +inferiate inferire ver +inferii inferire ver +inferiore inferiore adj +inferiori inferiore adj +inferiorità inferiorità nom +inferire inferire ver +inferirle inferire ver +inferirlo inferire ver +inferirne inferire ver +inferirsi inferire ver +inferiscano inferire ver +inferisce inferire ver +inferisci inferire ver +inferisco inferire ver +inferiscono inferire ver +inferita inferire ver +inferite inferire ver +inferiti inferire ver +inferito inferire ver +inferiva inferire ver +inferma infermo adj +inferme infermo nom +infermeria infermeria nom +infermerie infermeria nom +infermi infermo nom +infermiera infermiere nom +infermiere infermiere nom +infermieri infermiere nom +infermieristica infermieristico adj +infermieristiche infermieristico adj +infermieristici infermieristico adj +infermieristico infermieristico adj +infermità infermità nom +infermo infermo adj +infermò infermare ver +infernale infernale adj +infernali infernale adj +inferno inferno nom +infero infero adj +inferocire inferocire ver +inferocisce inferocire ver +inferocita inferocire ver +inferocite inferocire ver +inferociti inferocire ver +inferocito inferocire ver +inferocì inferocire ver +inferriata inferriata nom +inferriate inferriata nom +inferta inferto adj +inferte inferto adj +inferti inferto adj +inferto inferto adj +infervora infervorare ver +infervoramento infervoramento nom +infervorando infervorare ver +infervorare infervorare ver +infervorarsi infervorare ver +infervorata infervorare ver +infervorate infervorare ver +infervorati infervorare ver +infervorato infervorare ver +infervorava infervorare ver +infervori infervorare ver +infervoro infervorare ver +infervorò infervorare ver +inferì inferire ver +infesta infestare ver +infestando infestare ver +infestano infestare ver +infestante infestare ver +infestanti infestare ver +infestare infestare ver +infestarono infestare ver +infestasse infestare ver +infestassero infestare ver +infestata infestare ver +infestate infestare ver +infestati infestare ver +infestato infestare ver +infestatore infestatore adj +infestatori infestatore nom +infestava infestare ver +infestavano infestare ver +infestazione infestazione nom +infestazioni infestazione nom +infeste infesto adj +infesterebbe infestare ver +infesterebbero infestare ver +infesti infestare ver +infestino infestare ver +infesto infesto adj +infestò infestare ver +infetta infetto adj +infettando infettare ver +infettandola infettare ver +infettandoli infettare ver +infettandolo infettare ver +infettandone infettare ver +infettandosi infettare ver +infettano infettare ver +infettante infettare ver +infettanti infettare ver +infettare infettare ver +infettarli infettare ver +infettarlo infettare ver +infettarono infettare ver +infettarsi infettare ver +infettassero infettare ver +infettata infettare ver +infettate infettare ver +infettati infettare ver +infettato infettare ver +infettava infettare ver +infettavano infettare ver +infette infetto adj +infetteranno infettare ver +infetterà infettare ver +infetti infetto adj +infettino infettare ver +infettiva infettivo adj +infettive infettivo adj +infettivi infettivo adj +infettivo infettivo adj +infetto infetto adj +infettò infettare ver +infeuda infeudare ver +infeudandolo infeudare ver +infeudandosi infeudare ver +infeudano infeudare ver +infeudare infeudare ver +infeudarlo infeudare ver +infeudarono infeudare ver +infeudata infeudare ver +infeudate infeudare ver +infeudati infeudare ver +infeudato infeudare ver +infeudava infeudare ver +infeudò infeudare ver +infezione infezione nom +infezioni infezione nom +infiacchimento infiacchimento nom +infiacchire infiacchire ver +infiacchita infiacchire ver +infiacchite infiacchire ver +infiacchiti infiacchire ver +infiacchito infiacchire ver +infiacchì infiacchire ver +infiamma infiammare ver +infiammabile infiammabile adj +infiammabili infiammabile adj +infiammabilità infiammabilità nom +infiammando infiammare ver +infiammandosi infiammare ver +infiammano infiammare ver +infiammante infiammare ver +infiammanti infiammare ver +infiammar infiammare ver +infiammare infiammare ver +infiammarli infiammare ver +infiammarmi infiammare ver +infiammarono infiammare ver +infiammarsi infiammare ver +infiammata infiammare ver +infiammate infiammare ver +infiammati infiammare ver +infiammato infiammare ver +infiammatori infiammatorio adj +infiammatoria infiammatorio adj +infiammatorie infiammatorio adj +infiammatorio infiammatorio adj +infiammava infiammare ver +infiammavano infiammare ver +infiammazione infiammazione nom +infiammazioni infiammazione nom +infiammeranno infiammare ver +infiammerà infiammare ver +infiammi infiammare ver +infiammino infiammare ver +infiammo infiammare ver +infiammò infiammare ver +inficerebbe inficiare ver +inficerebbero inficiare ver +inficerà inficiare ver +infici inficiare ver +inficia inficiare ver +inficiando inficiare ver +inficiano inficiare ver +inficiante inficiare ver +inficianti inficiare ver +inficiare inficiare ver +inficiarne inficiare ver +inficiarono inficiare ver +inficiata inficiare ver +inficiate inficiare ver +inficiati inficiare ver +inficiato inficiare ver +inficiava inficiare ver +inficiavano inficiare ver +inficino inficiare ver +inficiò inficiare ver +infida infido adj +infide infido adj +infidi infido adj +infido infido adj +infierendo infierire ver +infieriamo infierire ver +infierir infierire ver +infierire infierire ver +infierirono infierire ver +infierisca infierire ver +infierisce infierire ver +infierisci infierire ver +infierisco infierire ver +infieriscono infierire ver +infierite infierire ver +infieriti infierire ver +infierito infierire ver +infieriva infierire ver +infierivano infierire ver +infierì infierire ver +infigge infiggere ver +infiggendo infiggere ver +infiggere infiggere ver +infila infilare ver +infilai infilare ver +infilando infilare ver +infilandoci infilare ver +infilandogli infilare ver +infilandola infilare ver +infilandole infilare ver +infilandoli infilare ver +infilandolo infilare ver +infilandomi infilare ver +infilandone infilare ver +infilandosi infilare ver +infilandovi infilare ver +infilano infilare ver +infilarcelo infilare ver +infilarci infilare ver +infilare infilare ver +infilargli infilare ver +infilarla infilare ver +infilarle infilare ver +infilarli infilare ver +infilarlo infilare ver +infilarmi infilare ver +infilarono infilare ver +infilarselo infilare ver +infilarsi infilare ver +infilarti infilare ver +infilarvi infilare ver +infilassero infilare ver +infilata infilare ver +infilate infilare ver +infilati infilare ver +infilato infilare ver +infilava infilare ver +infilavano infilare ver +infilavo infilare ver +infileranno infilare ver +infilerebbe infilare ver +infilerà infilare ver +infili infilare ver +infiliamo infilare ver +infilino infilare ver +infilo infilare ver +infiltra infiltrarsi ver +infiltraci infiltrarsi ver +infiltramento infiltramento nom +infiltrando infiltrarsi ver +infiltrandola infiltrarsi ver +infiltrandosi infiltrarsi ver +infiltrano infiltrarsi ver +infiltrante infiltrarsi ver +infiltranti infiltrarsi ver +infiltrarci infiltrarsi ver +infiltrare infiltrarsi ver +infiltrarla infiltrarsi ver +infiltrarmi infiltrarsi ver +infiltrarne infiltrarsi ver +infiltrarono infiltrarsi ver +infiltrarsi infiltrarsi ver +infiltrasi infiltrarsi ver +infiltrasse infiltrarsi ver +infiltrassero infiltrarsi ver +infiltrata infiltrarsi ver +infiltrate infiltrarsi ver +infiltratesi infiltrarsi ver +infiltrati infiltrarsi ver +infiltrato infiltrarsi ver +infiltrava infiltrarsi ver +infiltravano infiltrarsi ver +infiltrazione infiltrazione nom +infiltrazioni infiltrazione nom +infiltreranno infiltrarsi ver +infiltrerà infiltrarsi ver +infiltri infiltrarsi ver +infiltrino infiltrarsi ver +infiltro infiltrarsi ver +infiltrò infiltrarsi ver +infilza infilzare ver +infilzando infilzare ver +infilzandogli infilzare ver +infilzandola infilzare ver +infilzandoli infilzare ver +infilzandolo infilzare ver +infilzandosi infilzare ver +infilzano infilzare ver +infilzante infilzare ver +infilzare infilzare ver +infilzarla infilzare ver +infilzarli infilzare ver +infilzarlo infilzare ver +infilzarono infilzare ver +infilzarsi infilzare ver +infilzata infilzare ver +infilzate infilzare ver +infilzati infilzare ver +infilzato infilzare ver +infilzava infilzare ver +infilzavano infilzare ver +infilzerà infilzare ver +infilzo infilzare ver +infilzò infilzare ver +infilò infilare ver +infima infimo adj +infime infimo adj +infimi infimo adj +infimo infimo adj +infine infine adv_sup +infingarda infingardo adj +infingardaggine infingardaggine nom +infingarde infingardo adj +infingardi infingardo adj +infingardo infingardo adj +infingere infingersi ver +infinita infinito adj +infinitamente infinitamente adv +infinite infinito adj +infinitesima infinitesimo adj +infinitesimale infinitesimale adj +infinitesimali infinitesimale adj +infinitesime infinitesimo adj +infinitesimi infinitesimo adj +infinitesimo infinitesimo adj +infiniti infinito adj +infinitiva infinitivo adj +infinitive infinitivo adj +infinitivi infinitivo adj +infinitivo infinitivo adj +infinito infinito adj +infinità infinità nom +infino infino adv +infinocchiare infinocchiare ver +infinta infingersi ver +infinte infingersi ver +infinto infingersi ver +infiocchettare infiocchettare ver +infiocchettata infiocchettare ver +infiocchettati infiocchettare ver +infiocchettato infiocchettare ver +infiora infiorare ver +infiorata infiorare ver +infiorate infiorata nom +infiorati infiorare ver +infiorato infiorare ver +infiorava infiorare ver +infiorescenza infiorescenza nom +infiorescenze infiorescenza nom +infiorettare infiorettare ver +infiorettata infiorettare ver +infiorettate infiorettare ver +infiorettati infiorettare ver +infiorettato infiorettare ver +infiorettiamo infiorettare ver +infiori infiorare ver +infirma infirmare ver +infirmare infirmare ver +infirmi infirmare ver +infirmo infirmare ver +infischi infischiarsi ver +infischia infischiarsi ver +infischiamo infischiarsi ver +infischiandone infischiarsi ver +infischiandosene infischiarsi ver +infischiandotene infischiarsi ver +infischiano infischiarsi ver +infischiarcene infischiarsi ver +infischiare infischiarsi ver +infischiarmene infischiarsi ver +infischiarsene infischiarsi ver +infischiarsi infischiarsi ver +infischiartene infischiarsi ver +infischiate infischiarsi ver +infischiatene infischiarsi ver +infischiato infischiarsi ver +infischiava infischiarsi ver +infischiavano infischiarsi ver +infischierei infischiarsi ver +infischierà infischiarsi ver +infischio infischiarsi ver +infissa infiggere ver +infisse infiggere ver +infissero infiggere ver +infissi infisso nom +infisso infiggere ver +infittendo infittire ver +infittendosi infittire ver +infittire infittire ver +infittirono infittire ver +infittirsi infittire ver +infittisce infittire ver +infittiscono infittire ver +infittita infittire ver +infittite infittire ver +infittiti infittire ver +infittito infittire ver +infittiva infittire ver +infittivano infittire ver +infittì infittire ver +inflativo inflativo adj +inflazionando inflazionare ver +inflazionare inflazionare ver +inflazionata inflazionare ver +inflazionate inflazionare ver +inflazionati inflazionare ver +inflazionato inflazionare ver +inflazione inflazione nom +inflazioni inflazione nom +inflazionistica inflazionistico adj +inflazionistiche inflazionistico adj +inflazionistici inflazionistico adj +inflazionistico inflazionistico adj +inflessibile inflessibile adj +inflessibili inflessibile adj +inflessibilità inflessibilità nom +inflessione inflessione nom +inflessioni inflessione nom +infligga infliggere ver +infligge infliggere ver +infliggendo infliggere ver +infliggendogli infliggere ver +infliggendole infliggere ver +infliggendoli infliggere ver +infliggendone infliggere ver +infliggendosi infliggere ver +infligger infliggere ver +infliggeranno infliggere ver +infliggere infliggere ver +infliggerebbe infliggere ver +infliggergli infliggere ver +infliggerle infliggere ver +infliggerli infliggere ver +infliggerlo infliggere ver +infliggermi infliggere ver +infliggerne infliggere ver +infliggersi infliggere ver +infliggerà infliggere ver +infliggerò infliggere ver +infliggesse infliggere ver +infliggessero infliggere ver +infliggete infliggere ver +infliggeva infliggere ver +infliggevano infliggere ver +infliggi infliggere ver +infliggono infliggere ver +inflisse infliggere ver +inflissero infliggere ver +inflitta infliggere ver +inflitte infliggere ver +inflitti infliggere ver +inflitto infliggere ver +influendo influire ver +influente influente adj +influenti influente adj +influenza influenza nom +influenzabile influenzabile adj +influenzabili influenzabile adj +influenzale influenzale adj +influenzali influenzale adj +influenzando influenzare ver +influenzandola influenzare ver +influenzandoli influenzare ver +influenzandolo influenzare ver +influenzandone influenzare ver +influenzandosi influenzare ver +influenzano influenzare ver +influenzante influenzare ver +influenzanti influenzare ver +influenzar influenzare ver +influenzarci influenzare ver +influenzare influenzare ver +influenzarla influenzare ver +influenzarle influenzare ver +influenzarli influenzare ver +influenzarlo influenzare ver +influenzarmi influenzare ver +influenzarne influenzare ver +influenzarono influenzare ver +influenzarsi influenzare ver +influenzarti influenzare ver +influenzarvi influenzare ver +influenzasse influenzare ver +influenzassero influenzare ver +influenzata influenzare ver +influenzate influenzare ver +influenzati influenzare ver +influenzato influenzare ver +influenzava influenzare ver +influenzavano influenzare ver +influenze influenza nom +influenzeranno influenzare ver +influenzerebbe influenzare ver +influenzerebbero influenzare ver +influenzerà influenzare ver +influenzi influenzare ver +influenzino influenzare ver +influenzo influenzare ver +influenzò influenzare ver +influiranno influire ver +influire influire ver +influirebbe influire ver +influirebbero influire ver +influirono influire ver +influirà influire ver +influisca influire ver +influiscano influire ver +influisce influire ver +influisco influire ver +influiscono influire ver +influisse influire ver +influissero influire ver +influita influire ver +influite influire ver +influito influire ver +influiva influire ver +influivano influire ver +influssi influsso nom +influsso influsso nom +influì influire ver +infocata infocato adj +infocate infocato adj +infocati infocato adj +infocato infocato adj +infogna infognarsi ver +infognarci infognarsi ver +infognarsi infognarsi ver +infognato infognarsi ver +infoltendo infoltire ver +infoltire infoltire ver +infoltirono infoltire ver +infoltirsi infoltire ver +infoltisce infoltire ver +infoltiscono infoltire ver +infoltita infoltire ver +infoltito infoltire ver +infoltì infoltire ver +infonda infondere ver +infondata infondato adj +infondate infondato adj +infondatezza infondatezza nom +infondatezze infondatezza nom +infondati infondato adj +infondato infondato adj +infonde infondere ver +infondendo infondere ver +infondendogli infondere ver +infondendole infondere ver +infondendovi infondere ver +infonderci infondere ver +infondere infondere ver +infondergli infondere ver +infonderla infondere ver +infonderle infondere ver +infonderti infondere ver +infonderà infondere ver +infondesse infondere ver +infondeva infondere ver +infondevano infondere ver +infondi infondere ver +infondo infondere ver +infondono infondere ver +inforca inforcare ver +inforcando inforcare ver +inforcano inforcare ver +inforcar inforcare ver +inforcare inforcare ver +inforcata inforcare ver +inforcate inforcare ver +inforcato inforcare ver +inforcatura inforcatura nom +inforcava inforcare ver +inforcò inforcare ver +inforestierimento inforestierimento nom +informa informare ver +informaci informare ver +informai informare ver +informale informale adj +informali informale adj +informalmente informalmente adv +informalo informare ver +informami informare ver +informando informare ver +informandoci informare ver +informandola informare ver +informandole informare ver +informandoli informare ver +informandolo informare ver +informandomi informare ver +informandone informare ver +informandosi informare ver +informandoti informare ver +informano informare ver +informante informare ver +informar informare ver +informarci informare ver +informare informare ver +informarla informare ver +informarle informare ver +informarli informare ver +informarlo informare ver +informarmi informare ver +informarne informare ver +informarono informare ver +informarsene informare ver +informarsi informare ver +informarti informare ver +informarvi informare ver +informasi informare ver +informasse informare ver +informassero informare ver +informassi informare ver +informasti informare ver +informata informare ver +informate informato adj +informatemi informare ver +informatevi informare ver +informati informare ver +informatica informatico adj +informatiche informatico adj +informatici informatico adj +informatico informatico adj +informativa informativo adj +informative informativo adj +informativi informativo adj +informativo informativo adj +informatizza informatizzare ver +informatizzare informatizzare ver +informatizzata informatizzare ver +informatizzate informatizzare ver +informatizzati informatizzare ver +informatizzato informatizzare ver +informatizzazione informatizzazione nom +informato informare ver +informatore informatore adj +informatori informatore nom +informatrice informatore nom +informatrici informatore nom +informava informare ver +informavano informare ver +informavo informare ver +informazione informazione nom +informazioni informazione nom +informe informe adj +informeranno informare ver +informerebbe informare ver +informerei informare ver +informeremmo informare ver +informeremo informare ver +informerà informare ver +informerò informare ver +informi informe adj +informiamo informare ver +informiamoci informare ver +informino informare ver +informità informità nom +informo informare ver +informò informare ver +inforna infornare ver +infornando infornare ver +infornano infornare ver +infornare infornare ver +infornata infornata nom +infornate infornata nom +infornati infornare ver +infornato infornare ver +inforno infornare ver +infornò infornare ver +infortuna infortunarsi ver +infortunando infortunarsi ver +infortunandolo infortunarsi ver +infortunandosi infortunarsi ver +infortunano infortunarsi ver +infortunare infortunarsi ver +infortunargli infortunarsi ver +infortunarlo infortunarsi ver +infortunarono infortunarsi ver +infortunarsi infortunarsi ver +infortunasse infortunarsi ver +infortunata infortunarsi ver +infortunate infortunarsi ver +infortunatesi infortunarsi ver +infortunati infortunato adj +infortunato infortunarsi ver +infortunerà infortunarsi ver +infortuni infortunio nom +infortunio infortunio nom +infortunistica infortunistico adj +infortunistiche infortunistico adj +infortunistici infortunistico adj +infortunistico infortunistico adj +infortuno infortunarsi ver +infortunò infortunarsi ver +infossa infossare ver +infossandosi infossare ver +infossano infossare ver +infossare infossare ver +infossarsi infossare ver +infossata infossare ver +infossate infossare ver +infossati infossare ver +infossato infossare ver +infossatura infossatura nom +infossature infossatura nom +infradiciando infradiciare ver +infradito infradito nom +infranga infrangere ver +infrangano infrangere ver +infrange infrangere ver +infrangendo infrangere ver +infrangendola infrangere ver +infrangendosi infrangere ver +infrangeranno infrangere ver +infrangere infrangere ver +infrangerebbe infrangere ver +infrangerla infrangere ver +infrangerle infrangere ver +infrangerli infrangere ver +infrangerlo infrangere ver +infrangerne infrangere ver +infrangersi infrangere ver +infrangerà infrangere ver +infrangesse infrangere ver +infrangeva infrangere ver +infrangevano infrangere ver +infrangi infrangere ver +infrangiamo infrangere ver +infrangibile infrangibile adj +infrangibili infrangibile adj +infrango infrangere ver +infrangono infrangere ver +infranse infrangere ver +infransero infrangere ver +infranta infrangere ver +infrante infrangere ver +infranti infranto adj +infranto infrangere ver +infraregionale infraregionale adj +infrarossa infrarosso adj +infrarosse infrarosso adj +infrarossi infrarosso adj +infrarosso infrarosso adj +infrasettimanale infrasettimanale adj +infrasettimanali infrasettimanale adj +infrastruttura infrastruttura nom +infrastrutturale infrastrutturale adj +infrastrutturali infrastrutturale adj +infrastrutture infrastruttura nom +infrasuoni infrasuono nom +infrasuono infrasuono nom +infrazione infrazione nom +infrazioni infrazione nom +infreddatura infreddatura nom +infreddature infreddatura nom +infreddolita infreddolire ver +infreddolite infreddolire ver +infreddoliti infreddolire ver +infreddolito infreddolire ver +infruttescenza infruttescenza nom +infruttescenze infruttescenza nom +infruttifere infruttifero adj +infruttiferi infruttifero adj +infruttifero infruttifero adj +infruttuosa infruttuoso adj +infruttuose infruttuoso adj +infruttuosi infruttuoso adj +infruttuosità infruttuosità nom +infruttuoso infruttuoso adj +infula infula nom +infule infula nom +infundibulo infundibulo nom +infungibile infungibile adj +infungibili infungibile adj +infungibilità infungibilità nom +infuoca infuocare ver +infuocando infuocare ver +infuocandolo infuocare ver +infuocano infuocare ver +infuocare infuocare ver +infuocarsi infuocare ver +infuocata infuocare ver +infuocate infuocare ver +infuocati infuocare ver +infuocato infuocare ver +infuocava infuocare ver +infuocavano infuocare ver +infuocò infuocare ver +infuori infuori adv +infuria infuriare ver +infuriando infuriare ver +infuriandosi infuriare ver +infuriano infuriare ver +infuriare infuriare ver +infuriarono infuriare ver +infuriarsi infuriare ver +infuriasse infuriare ver +infuriata infuriare ver +infuriate infuriare ver +infuriati infuriare ver +infuriato infuriare ver +infuriava infuriare ver +infuriavano infuriare ver +infurierebbe infuriare ver +infurierei infuriare ver +infurierà infuriare ver +infuriò infuriare ver +infusa infondere ver +infuse infuso adj +infusero infondere ver +infusi infuso nom +infusibile infusibile adj +infusibili infusibile adj +infusione infusione nom +infusioni infusione nom +infuso infondere ver +infusori infusori nom +ingabbia ingabbiare ver +ingabbiano ingabbiare ver +ingabbiare ingabbiare ver +ingabbiarli ingabbiare ver +ingabbiarlo ingabbiare ver +ingabbiata ingabbiare ver +ingabbiate ingabbiare ver +ingabbiati ingabbiare ver +ingabbiato ingabbiare ver +ingabbiatura ingabbiatura nom +ingabbiava ingabbiare ver +ingaggeranno ingaggiare ver +ingaggerà ingaggiare ver +ingaggi ingaggio nom +ingaggia ingaggiare ver +ingaggiando ingaggiare ver +ingaggiandola ingaggiare ver +ingaggiandolo ingaggiare ver +ingaggiano ingaggiare ver +ingaggiar ingaggiare ver +ingaggiare ingaggiare ver +ingaggiarla ingaggiare ver +ingaggiarli ingaggiare ver +ingaggiarlo ingaggiare ver +ingaggiarne ingaggiare ver +ingaggiarono ingaggiare ver +ingaggiarsi ingaggiare ver +ingaggiasse ingaggiare ver +ingaggiassero ingaggiare ver +ingaggiata ingaggiare ver +ingaggiate ingaggiare ver +ingaggiati ingaggiare ver +ingaggiato ingaggiare ver +ingaggiatore ingaggiatore nom +ingaggiava ingaggiare ver +ingaggiavano ingaggiare ver +ingaggio ingaggio nom +ingaggiò ingaggiare ver +inganna ingannare ver +ingannabile ingannabile adj +ingannabili ingannabile adj +ingannai ingannare ver +ingannando ingannare ver +ingannandola ingannare ver +ingannandoli ingannare ver +ingannandolo ingannare ver +ingannandosi ingannare ver +ingannano ingannare ver +ingannar ingannare ver +ingannarci ingannare ver +ingannare ingannare ver +ingannarla ingannare ver +ingannarle ingannare ver +ingannarli ingannare ver +ingannarlo ingannare ver +ingannarmi ingannare ver +ingannarono ingannare ver +ingannarsi ingannare ver +ingannarti ingannare ver +ingannarvi ingannare ver +ingannasse ingannare ver +ingannata ingannare ver +ingannate ingannare ver +ingannati ingannare ver +ingannato ingannare ver +ingannatore ingannatore adj +ingannatori ingannatore adj +ingannatrice ingannatore adj +ingannatrici ingannatore adj +ingannava ingannare ver +ingannavano ingannare ver +inganneranno ingannare ver +ingannerebbe ingannare ver +ingannerà ingannare ver +ingannevole ingannevole adj +ingannevoli ingannevole adj +inganni inganno nom +inganniamo ingannare ver +ingannino ingannare ver +inganno inganno nom +ingannò ingannare ver +ingarbuglia ingarbugliare ver +ingarbugliando ingarbugliare ver +ingarbugliano ingarbugliare ver +ingarbugliare ingarbugliare ver +ingarbugliarsi ingarbugliare ver +ingarbugliata ingarbugliare ver +ingarbugliate ingarbugliare ver +ingarbugliati ingarbugliare ver +ingarbugliato ingarbugliare ver +ingarbugliò ingarbugliare ver +ingegna ingegnarsi ver +ingegnandosi ingegnarsi ver +ingegnano ingegnarsi ver +ingegnare ingegnarsi ver +ingegnarono ingegnarsi ver +ingegnarsi ingegnarsi ver +ingegnata ingegnarsi ver +ingegnati ingegnarsi ver +ingegnato ingegnarsi ver +ingegnava ingegnarsi ver +ingegnavano ingegnarsi ver +ingegnera ingegnere nom +ingegnere ingegnere nom +ingegneri ingegnere nom +ingegneria ingegneria nom +ingegneristico ingegneristico adj +ingegnerò ingegnarsi ver +ingegni ingegno nom +ingegno ingegno nom +ingegnosa ingegnoso adj +ingegnose ingegnoso adj +ingegnosi ingegnoso adj +ingegnosità ingegnosità nom +ingegnoso ingegnoso adj +ingegnò ingegnarsi ver +ingelosendo ingelosire ver +ingelosir ingelosire ver +ingelosire ingelosire ver +ingelosirla ingelosire ver +ingelosirlo ingelosire ver +ingelosirsi ingelosire ver +ingelosisca ingelosire ver +ingelosisce ingelosire ver +ingelosita ingelosire ver +ingelosite ingelosire ver +ingelositi ingelosire ver +ingelosito ingelosire ver +ingelosì ingelosire ver +ingemmata ingemmare ver +ingemmate ingemmare ver +ingemmato ingemmare ver +ingenera ingenerare ver +ingenerale ingenerare ver +ingenerando ingenerare ver +ingenerano ingenerare ver +ingenerare ingenerare ver +ingenerarsi ingenerare ver +ingenerasse ingenerare ver +ingenerata ingenerare ver +ingenerate ingenerare ver +ingenerati ingenerare ver +ingenerato ingenerare ver +ingenerava ingenerare ver +ingeneri ingenerare ver +ingenerosa ingeneroso adj +ingenerose ingeneroso adj +ingenerosi ingeneroso adj +ingenerosità ingenerosità nom +ingeneroso ingeneroso adj +ingenerò ingenerare ver +ingenita ingenito adj +ingenito ingenito adj +ingente ingente adj +ingenti ingente adj +ingentilendo ingentilire ver +ingentilendone ingentilire ver +ingentilire ingentilire ver +ingentilirne ingentilire ver +ingentilirsi ingentilire ver +ingentilisce ingentilire ver +ingentiliscono ingentilire ver +ingentilita ingentilire ver +ingentilite ingentilire ver +ingentiliti ingentilire ver +ingentilito ingentilire ver +ingentiliva ingentilire ver +ingentilivano ingentilire ver +ingentilì ingentilire ver +ingenua ingenuo adj +ingenuamente ingenuamente adv +ingenue ingenuo adj +ingenui ingenuo adj +ingenuità ingenuità nom +ingenuo ingenuo adj +ingerendo ingerire ver +ingerendole ingerire ver +ingerendolo ingerire ver +ingerendone ingerire ver +ingerendosi ingerire ver +ingerente ingerire ver +ingerenza ingerenza nom +ingerenze ingerenza nom +ingeriamo ingerire ver +ingeriranno ingerire ver +ingerire ingerire ver +ingerirla ingerire ver +ingerirle ingerire ver +ingerirli ingerire ver +ingerirlo ingerire ver +ingerirne ingerire ver +ingerirono ingerire ver +ingerirsi ingerire ver +ingerisca ingerire ver +ingeriscano ingerire ver +ingerisce ingerire ver +ingeriscono ingerire ver +ingerisse ingerire ver +ingerita ingerire ver +ingerite ingerire ver +ingeriti ingerire ver +ingerito ingerire ver +ingeriva ingerire ver +ingerivano ingerire ver +ingerì ingerire ver +ingessa ingessare ver +ingessano ingessare ver +ingessare ingessare ver +ingessarsi ingessare ver +ingessata ingessare ver +ingessate ingessare ver +ingessati ingessare ver +ingessato ingessare ver +ingessatura ingessatura nom +ingessature ingessatura nom +ingessi ingessare ver +ingesso ingessare ver +ingestibile ingestibile nom +ingestione ingestione nom +ingestioni ingestione nom +inghiaiata inghiaiare ver +inghiaiate inghiaiare ver +inghiottendo inghiottire ver +inghiottendola inghiottire ver +inghiottendole inghiottire ver +inghiottendoli inghiottire ver +inghiottendolo inghiottire ver +inghiottendone inghiottire ver +inghiottiranno inghiottire ver +inghiottire inghiottire ver +inghiottirla inghiottire ver +inghiottirle inghiottire ver +inghiottirli inghiottire ver +inghiottirlo inghiottire ver +inghiottirne inghiottire ver +inghiottirono inghiottire ver +inghiottirà inghiottire ver +inghiottisca inghiottire ver +inghiottisce inghiottire ver +inghiottiscono inghiottire ver +inghiottisse inghiottire ver +inghiottita inghiottire ver +inghiottite inghiottire ver +inghiottiti inghiottire ver +inghiottito inghiottire ver +inghiottitoi inghiottitoio nom +inghiottitoio inghiottitoio nom +inghiottiva inghiottire ver +inghiottivano inghiottire ver +inghiottì inghiottire ver +inghippi inghippo nom +inghippo inghippo nom +inghirlanda inghirlandare ver +inghirlandare inghirlandare ver +inghirlandarsi inghirlandare ver +inghirlandata inghirlandare ver +inghirlandate inghirlandare ver +inghirlandati inghirlandare ver +inghirlandato inghirlandare ver +inghirlandava inghirlandare ver +ingiallendo ingiallire ver +ingiallente ingiallire ver +ingiallenti ingiallire ver +ingiallimenti ingiallimento nom +ingiallimento ingiallimento nom +ingiallire ingiallire ver +ingiallirsi ingiallire ver +ingiallisce ingiallire ver +ingialliscono ingiallire ver +ingiallita ingiallire ver +ingiallite ingiallire ver +ingialliti ingiallire ver +ingiallito ingiallire ver +ingigantendo ingigantire ver +ingigantendole ingigantire ver +ingigantendolo ingigantire ver +ingigantendosi ingigantire ver +ingigantiamo ingigantire ver +ingigantire ingigantire ver +ingigantirne ingigantire ver +ingigantirono ingigantire ver +ingigantirsi ingigantire ver +ingigantisce ingigantire ver +ingigantiscono ingigantire ver +ingigantita ingigantire ver +ingigantite ingigantire ver +ingigantiti ingigantire ver +ingigantito ingigantire ver +ingigantiva ingigantire ver +ingigantivano ingigantire ver +ingigantì ingigantire ver +inginocchi inginocchiarsi ver +inginocchia inginocchiarsi ver +inginocchiai inginocchiarsi ver +inginocchiamo inginocchiarsi ver +inginocchiamoci inginocchiarsi ver +inginocchiando inginocchiarsi ver +inginocchiandosi inginocchiarsi ver +inginocchiano inginocchiarsi ver +inginocchiare inginocchiarsi ver +inginocchiarmi inginocchiarsi ver +inginocchiarono inginocchiarsi ver +inginocchiarsi inginocchiarsi ver +inginocchiasse inginocchiarsi ver +inginocchiata inginocchiarsi ver +inginocchiate inginocchiarsi ver +inginocchiatevi inginocchiarsi ver +inginocchiati inginocchiarsi ver +inginocchiato inginocchiarsi ver +inginocchiatoi inginocchiatoio nom +inginocchiatoio inginocchiatoio nom +inginocchiava inginocchiarsi ver +inginocchiavano inginocchiarsi ver +inginocchieranno inginocchiarsi ver +inginocchierà inginocchiarsi ver +inginocchino inginocchiarsi ver +inginocchio inginocchiarsi ver +inginocchiò inginocchiarsi ver +ingioiellata ingioiellare ver +ingioiellate ingioiellare ver +ingioiellati ingioiellare ver +ingioiellato ingioiellare ver +ingiunge ingiungere ver +ingiungendo ingiungere ver +ingiungendogli ingiungere ver +ingiungendole ingiungere ver +ingiungere ingiungere ver +ingiungergli ingiungere ver +ingiungeva ingiungere ver +ingiungevano ingiungere ver +ingiungiamo ingiungere ver +ingiungono ingiungere ver +ingiunse ingiungere ver +ingiunsero ingiungere ver +ingiunta ingiungere ver +ingiuntiva ingiuntivo adj +ingiuntive ingiuntivo adj +ingiuntivi ingiuntivo adj +ingiuntivo ingiuntivo adj +ingiunto ingiungere ver +ingiunzione ingiunzione nom +ingiunzioni ingiunzione nom +ingiuria ingiuria nom +ingiuriando ingiuriare ver +ingiuriandolo ingiuriare ver +ingiuriandomi ingiuriare ver +ingiuriano ingiuriare ver +ingiurianti ingiuriare ver +ingiuriare ingiuriare ver +ingiuriata ingiuriare ver +ingiuriati ingiuriare ver +ingiuriato ingiuriare ver +ingiuriava ingiuriare ver +ingiurie ingiuria nom +ingiurio ingiuriare ver +ingiuriosa ingiurioso adj +ingiuriose ingiurioso adj +ingiuriosi ingiurioso adj +ingiurioso ingiurioso adj +ingiuriò ingiuriare ver +ingiusta ingiusto adj +ingiustamente ingiustamente adv +ingiuste ingiusto adj +ingiusti ingiusto adj +ingiustificabile ingiustificabile adj +ingiustificabili ingiustificabile adj +ingiustificata ingiustificato adj +ingiustificate ingiustificato adj +ingiustificati ingiustificato adj +ingiustificato ingiustificato adj +ingiustizia ingiustizia nom +ingiustizie ingiustizia nom +ingiusto ingiusto adj +ingiù ingiù adv +inglese inglese adj +inglesi inglese adj +inglesismi inglesismo nom +inglesismo inglesismo nom +ingloba inglobare ver +inglobamento inglobamento nom +inglobando inglobare ver +inglobandola inglobare ver +inglobandole inglobare ver +inglobandoli inglobare ver +inglobandolo inglobare ver +inglobandone inglobare ver +inglobandovi inglobare ver +inglobano inglobare ver +inglobante inglobare ver +inglobanti inglobare ver +inglobare inglobare ver +inglobarla inglobare ver +inglobarle inglobare ver +inglobarli inglobare ver +inglobarlo inglobare ver +inglobarne inglobare ver +inglobarono inglobare ver +inglobarsi inglobare ver +inglobasse inglobare ver +inglobassero inglobare ver +inglobata inglobare ver +inglobate inglobare ver +inglobati inglobare ver +inglobato inglobare ver +inglobava inglobare ver +inglobavano inglobare ver +ingloberebbe inglobare ver +ingloberei inglobare ver +ingloberà inglobare ver +inglobi inglobare ver +inglobiamo inglobare ver +inglobino inglobare ver +inglobo inglobare ver +inglobò inglobare ver +ingloriosa inglorioso adj +ingloriose inglorioso adj +inglorioso inglorioso adj +ingluvie ingluvie nom +ingobbiate ingobbire ver +ingobbita ingobbire ver +ingobbito ingobbire ver +ingoi ingoiare ver +ingoia ingoiare ver +ingoiando ingoiare ver +ingoiandola ingoiare ver +ingoiandoli ingoiare ver +ingoiandolo ingoiare ver +ingoiandone ingoiare ver +ingoiano ingoiare ver +ingoiante ingoiare ver +ingoiare ingoiare ver +ingoiarla ingoiare ver +ingoiarle ingoiare ver +ingoiarli ingoiare ver +ingoiarlo ingoiare ver +ingoiata ingoiare ver +ingoiate ingoiare ver +ingoiati ingoiare ver +ingoiato ingoiare ver +ingoiava ingoiare ver +ingoiavano ingoiare ver +ingoierà ingoiare ver +ingoio ingoiare ver +ingoiò ingoiare ver +ingolfa ingolfare ver +ingolfamento ingolfamento nom +ingolfando ingolfare ver +ingolfano ingolfare ver +ingolfare ingolfare ver +ingolfarsi ingolfare ver +ingolfata ingolfare ver +ingolfati ingolfare ver +ingolfato ingolfare ver +ingolfava ingolfare ver +ingolferebbe ingolfare ver +ingolferebbero ingolfare ver +ingolfi ingolfare ver +ingolla ingollare ver +ingollante ingollare ver +ingollare ingollare ver +ingollata ingollare ver +ingollato ingollare ver +ingolosire ingolosire ver +ingolosisce ingolosire ver +ingolositi ingolosire ver +ingombra ingombro adj +ingombrando ingombrare ver +ingombrano ingombrare ver +ingombrante ingombrante adj +ingombranti ingombrante adj +ingombrare ingombrare ver +ingombrata ingombrare ver +ingombrati ingombrare ver +ingombrato ingombrare ver +ingombrava ingombrare ver +ingombravano ingombrare ver +ingombre ingombro adj +ingombri ingombro nom +ingombrino ingombrare ver +ingombro ingombro nom +ingorda ingordo adj +ingorde ingordo adj +ingordi ingordo adj +ingordigia ingordigia nom +ingordo ingordo adj +ingorgate ingorgare ver +ingorgato ingorgare ver +ingorghi ingorgo nom +ingorgo ingorgo nom +ingozza ingozzare ver +ingozzamento ingozzamento nom +ingozzando ingozzare ver +ingozzandolo ingozzare ver +ingozzandosi ingozzare ver +ingozzano ingozzare ver +ingozzare ingozzare ver +ingozzarmi ingozzare ver +ingozzarsi ingozzare ver +ingozzata ingozzare ver +ingozzato ingozzare ver +ingozzi ingozzare ver +ingrana ingranare ver +ingranaggi ingranaggio nom +ingranaggio ingranaggio nom +ingranamento ingranamento nom +ingranando ingranare ver +ingranano ingranare ver +ingranante ingranare ver +ingranare ingranare ver +ingranarsi ingranare ver +ingranata ingranare ver +ingranate ingranare ver +ingranati ingranare ver +ingranato ingranare ver +ingranava ingranare ver +ingrandendo ingrandire ver +ingrandendola ingrandire ver +ingrandendole ingrandire ver +ingrandendolo ingrandire ver +ingrandendone ingrandire ver +ingrandendosi ingrandire ver +ingrandente ingrandire ver +ingrandenti ingrandire ver +ingrandiamo ingrandire ver +ingrandimenti ingrandimento nom +ingrandimento ingrandimento nom +ingrandiranno ingrandire ver +ingrandire ingrandire ver +ingrandirei ingrandire ver +ingrandirla ingrandire ver +ingrandirle ingrandire ver +ingrandirli ingrandire ver +ingrandirlo ingrandire ver +ingrandirne ingrandire ver +ingrandirono ingrandire ver +ingrandirsi ingrandire ver +ingrandirà ingrandire ver +ingrandirò ingrandire ver +ingrandisca ingrandire ver +ingrandiscano ingrandire ver +ingrandisce ingrandire ver +ingrandisci ingrandire ver +ingrandisco ingrandire ver +ingrandiscono ingrandire ver +ingrandisse ingrandire ver +ingrandissero ingrandire ver +ingrandita ingrandire ver +ingrandite ingrandire ver +ingranditi ingrandire ver +ingrandito ingrandire ver +ingranditore ingranditore nom +ingranditori ingranditore nom +ingrandiva ingrandire ver +ingrandivano ingrandire ver +ingrandì ingrandire ver +ingranò ingranare ver +ingrassa ingrassare ver +ingrassaggio ingrassaggio nom +ingrassamento ingrassamento nom +ingrassando ingrassare ver +ingrassano ingrassare ver +ingrassanti ingrassare ver +ingrassar ingrassare ver +ingrassare ingrassare ver +ingrassarli ingrassare ver +ingrassarsi ingrassare ver +ingrassassero ingrassare ver +ingrassata ingrassare ver +ingrassate ingrassare ver +ingrassati ingrassare ver +ingrassato ingrassare ver +ingrassatore ingrassatore adj +ingrassatori ingrassatore nom +ingrassava ingrassare ver +ingrasseranno ingrassare ver +ingrasserà ingrassare ver +ingrassi ingrasso nom +ingrassiamo ingrassare ver +ingrasso ingrasso nom +ingrassò ingrassare ver +ingrata ingrato adj +ingrate ingrato adj +ingrati ingrato adj +ingratitudine ingratitudine nom +ingratitudini ingratitudine nom +ingrato ingrato adj +ingravida ingravidare ver +ingravidare ingravidare ver +ingravidarla ingravidare ver +ingravidata ingravidare ver +ingravidate ingravidare ver +ingravidato ingravidare ver +ingraviderà ingravidare ver +ingravidò ingravidare ver +ingrazia ingraziare ver +ingraziandosi ingraziare ver +ingraziare ingraziare ver +ingraziarmi ingraziare ver +ingraziarsela ingraziare ver +ingraziarsele ingraziare ver +ingraziarseli ingraziare ver +ingraziarselo ingraziare ver +ingraziarsene ingraziare ver +ingraziarsi ingraziare ver +ingraziata ingraziare ver +ingraziati ingraziare ver +ingraziato ingraziare ver +ingrazio ingraziare ver +ingraziò ingraziare ver +ingrediente ingrediente nom +ingredienti ingrediente nom +ingressi ingresso nom +ingresso ingresso nom +ingrossa ingrossare ver +ingrossamenti ingrossamento nom +ingrossamento ingrossamento nom +ingrossando ingrossare ver +ingrossandosi ingrossare ver +ingrossano ingrossare ver +ingrossare ingrossare ver +ingrossarne ingrossare ver +ingrossarono ingrossare ver +ingrossarsi ingrossare ver +ingrossata ingrossare ver +ingrossate ingrossare ver +ingrossatesi ingrossare ver +ingrossati ingrossare ver +ingrossato ingrossare ver +ingrossava ingrossare ver +ingrossavano ingrossare ver +ingrossi ingrossare ver +ingrossino ingrossare ver +ingrosso ingrosso nom +ingrossò ingrossare ver +inguaia inguaiare ver +inguaiammo inguaiare ver +inguaiando inguaiare ver +inguaiano inguaiare ver +inguaiare inguaiare ver +inguaiarsi inguaiare ver +inguaiata inguaiare ver +inguaiati inguaiare ver +inguaiato inguaiare ver +inguaina inguainare ver +inguainando inguainare ver +inguainano inguainare ver +inguainante inguainare ver +inguainanti inguainare ver +inguainare inguainare ver +inguainata inguainare ver +inguainate inguainare ver +inguainati inguainare ver +inguainato inguainare ver +ingualcibile ingualcibile adj +inguantata inguantato adj +inguantate inguantato adj +inguantato inguantato adj +inguaribile inguaribile adj +inguaribili inguaribile adj +inguinale inguinale adj +inguinali inguinale adj +inguine inguine nom +inguini inguine nom +ingurgita ingurgitare ver +ingurgitando ingurgitare ver +ingurgitano ingurgitare ver +ingurgitare ingurgitare ver +ingurgitarla ingurgitare ver +ingurgitata ingurgitare ver +ingurgitati ingurgitare ver +ingurgitato ingurgitare ver +ingurgitava ingurgitare ver +ingurgiti ingurgitare ver +inibendo inibire ver +inibendola inibire ver +inibendole inibire ver +inibendolo inibire ver +inibendone inibire ver +inibente inibire ver +inibenti inibire ver +inibire inibire ver +inibirebbe inibire ver +inibirebbero inibire ver +inibirla inibire ver +inibirli inibire ver +inibirlo inibire ver +inibirne inibire ver +inibirono inibire ver +inibirsi inibire ver +inibirò inibire ver +inibisca inibire ver +inibiscano inibire ver +inibisce inibire ver +inibisco inibire ver +inibiscono inibire ver +inibisse inibire ver +inibita inibire ver +inibite inibire ver +inibitelo inibire ver +inibiti inibire ver +inibito inibire ver +inibitori inibitorio adj +inibitoria inibitorio adj +inibitorie inibitorio adj +inibitorio inibitorio adj +inibiva inibire ver +inibivano inibire ver +inibizione inibizione nom +inibizioni inibizione nom +inibì inibire ver +inidonea inidoneo adj +inidonee inidoneo adj +inidonei inidoneo adj +inidoneità inidoneità nom +inidoneo inidoneo adj +inietta iniettare ver +iniettabile iniettabile adj +iniettabili iniettabile adj +iniettando iniettare ver +iniettandogli iniettare ver +iniettandola iniettare ver +iniettandole iniettare ver +iniettandoli iniettare ver +iniettandolo iniettare ver +iniettandoselo iniettare ver +iniettandosi iniettare ver +iniettano iniettare ver +iniettare iniettare ver +iniettargli iniettare ver +iniettarla iniettare ver +iniettarle iniettare ver +iniettarlo iniettare ver +iniettarono iniettare ver +iniettarsela iniettare ver +iniettarsi iniettare ver +iniettarvi iniettare ver +iniettata iniettare ver +iniettate iniettare ver +iniettatele iniettare ver +iniettati iniettare ver +iniettato iniettare ver +iniettava iniettare ver +iniettavano iniettare ver +inietterà iniettare ver +inietti iniettare ver +iniettore iniettore nom +iniettori iniettore nom +iniettò iniettare ver +iniezione iniezione nom +iniezioni iniezione nom +inimica inimicare ver +inimicando inimicare ver +inimicandosi inimicare ver +inimicano inimicare ver +inimicare inimicare ver +inimicarmi inimicare ver +inimicarono inimicare ver +inimicarseli inimicare ver +inimicarselo inimicare ver +inimicarsi inimicare ver +inimicata inimicare ver +inimicati inimicare ver +inimicato inimicare ver +inimicava inimicare ver +inimicherà inimicare ver +inimicizia inimicizia nom +inimicizie inimicizia nom +inimico inimicare ver +inimicò inimicare ver +inimitabile inimitabile adj +inimitabili inimitabile adj +inimmaginabile inimmaginabile adj +inimmaginabili inimmaginabile adj +ininfiammabile ininfiammabile adj +ininfiammabili ininfiammabile adj +ininfluente ininfluente adj +ininfluenti ininfluente adj +inintelligibile inintelligibile adj +inintelligibili inintelligibile adj +ininterrotta ininterrotto adj +ininterrottamente ininterrottamente adv +ininterrotte ininterrotto adj +ininterrotti ininterrotto adj +ininterrotto ininterrotto adj +iniqua iniquo adj +inique iniquo adj +iniqui iniquo adj +iniquità iniquità nom +iniquo iniquo adj +inizi inizio nom +inizia iniziare ver +iniziai iniziare ver +iniziala iniziare ver +iniziale iniziale adj +iniziali iniziale adj +inizialmente inizialmente adv +iniziammo iniziare ver +iniziamo iniziare ver +iniziando iniziare ver +iniziandola iniziare ver +iniziandoli iniziare ver +iniziandolo iniziare ver +iniziandone iniziare ver +iniziandosi iniziare ver +iniziandovi iniziare ver +iniziano iniziare ver +iniziante iniziare ver +inizianti iniziare ver +iniziar iniziare ver +iniziare iniziare ver +iniziarla iniziare ver +iniziarle iniziare ver +iniziarli iniziare ver +iniziarlo iniziare ver +iniziarne iniziare ver +iniziarono iniziare ver +iniziarsi iniziare ver +iniziarvi iniziare ver +iniziasse iniziare ver +iniziassero iniziare ver +iniziassi iniziare ver +iniziassimo iniziare ver +iniziata iniziare ver +iniziate iniziare ver +iniziatesi iniziare ver +iniziati iniziare ver +iniziativa iniziativa nom +iniziative iniziativa nom +iniziato iniziare ver +iniziatore iniziatore adj +iniziatori iniziatore nom +iniziatosi iniziare ver +iniziatrice iniziatore adj +iniziatrici iniziatore adj +iniziava iniziare ver +iniziavano iniziare ver +iniziavo iniziare ver +iniziazione iniziazione nom +iniziazioni iniziazione nom +inizierai iniziare ver +inizieranno iniziare ver +inizierebbe iniziare ver +inizierebbero iniziare ver +inizierei iniziare ver +inizieremmo iniziare ver +inizieremo iniziare ver +inizierete iniziare ver +inizierà iniziare ver +inizierò iniziare ver +inizino iniziare ver +inizio inizio nom +iniziò iniziare ver +innaffi innaffiare ver +innaffia innaffiare ver +innaffiando innaffiare ver +innaffiandolo innaffiare ver +innaffiano innaffiare ver +innaffiare innaffiare ver +innaffiarla innaffiare ver +innaffiarle innaffiare ver +innaffiata innaffiare ver +innaffiate innaffiare ver +innaffiati innaffiare ver +innaffiato innaffiare ver +innaffiava innaffiare ver +innaffiò innaffiare ver +innalza innalzare ver +innalzai innalzare ver +innalzamenti innalzamento nom +innalzamento innalzamento nom +innalzando innalzare ver +innalzandogli innalzare ver +innalzandola innalzare ver +innalzandoli innalzare ver +innalzandolo innalzare ver +innalzandone innalzare ver +innalzandosi innalzare ver +innalzandovi innalzare ver +innalzano innalzare ver +innalzante innalzare ver +innalzanti innalzare ver +innalzar innalzare ver +innalzare innalzare ver +innalzargli innalzare ver +innalzarla innalzare ver +innalzarle innalzare ver +innalzarli innalzare ver +innalzarlo innalzare ver +innalzarmi innalzare ver +innalzarne innalzare ver +innalzarono innalzare ver +innalzarsi innalzare ver +innalzarvi innalzare ver +innalzasse innalzare ver +innalzassero innalzare ver +innalzata innalzare ver +innalzate innalzare ver +innalzati innalzare ver +innalzato innalzare ver +innalzava innalzare ver +innalzavano innalzare ver +innalzeranno innalzare ver +innalzerebbe innalzare ver +innalzerebbero innalzare ver +innalzeremo innalzare ver +innalzerà innalzare ver +innalzerò innalzare ver +innalzi innalzare ver +innalziamo innalzare ver +innalzino innalzare ver +innalzo innalzare ver +innalzò innalzare ver +innamora innamorare ver +innamorai innamorare ver +innamoramenti innamoramento nom +innamoramento innamoramento nom +innamorami innamorare ver +innamorammo innamorare ver +innamorando innamorare ver +innamorandosene innamorare ver +innamorandosi innamorare ver +innamorano innamorare ver +innamorar innamorare ver +innamorarci innamorare ver +innamorare innamorare ver +innamorarmi innamorare ver +innamorarono innamorare ver +innamorarsene innamorare ver +innamorarsi innamorare ver +innamorarti innamorare ver +innamorarvene innamorare ver +innamorasi innamorare ver +innamorasse innamorare ver +innamorassero innamorare ver +innamorassi innamorare ver +innamorata innamorare ver +innamorate innamorare ver +innamoratevi innamorare ver +innamorati innamorato nom +innamorato innamorare ver +innamorava innamorare ver +innamoravano innamorare ver +innamoravo innamorare ver +innamorerai innamorare ver +innamoreranno innamorare ver +innamorerebbe innamorare ver +innamorerà innamorare ver +innamorerò innamorare ver +innamori innamorare ver +innamoriamo innamorare ver +innamorino innamorare ver +innamoro innamorare ver +innamorò innamorare ver +innanzi innanzi pre +innanzitutto innanzitutto adv_sup +innata innato adj +innate innato adj +innati innato adj +innatismo innatismo nom +innato innato adj +innaturale innaturale adj +innaturali innaturale adj +innecessari innecessario adj +innegabile innegabile adj +innegabili innegabile adj +innegabilmente innegabilmente adv +inneggeranno inneggiare ver +inneggi inneggiare ver +inneggia inneggiare ver +inneggiamo inneggiare ver +inneggiando inneggiare ver +inneggiano inneggiare ver +inneggiante inneggiare ver +inneggianti inneggiare ver +inneggiare inneggiare ver +inneggiarono inneggiare ver +inneggiasse inneggiare ver +inneggiata inneggiare ver +inneggiati inneggiare ver +inneggiato inneggiare ver +inneggiava inneggiare ver +inneggiavano inneggiare ver +inneggio inneggiare ver +inneggiò inneggiare ver +innerva innervare ver +innervando innervare ver +innervano innervare ver +innervante innervare ver +innervare innervare ver +innervarsi innervare ver +innervata innervare ver +innervate innervare ver +innervati innervare ver +innervato innervare ver +innervava innervare ver +innervazione innervazione nom +innervazioni innervazione nom +innervosendo innervosire ver +innervosendoli innervosire ver +innervosendosi innervosire ver +innervosente innervosire ver +innervosiamoci innervosire ver +innervosirci innervosire ver +innervosire innervosire ver +innervosirlo innervosire ver +innervosirmi innervosire ver +innervosirono innervosire ver +innervosirsi innervosire ver +innervosirti innervosire ver +innervosisca innervosire ver +innervosisce innervosire ver +innervosisci innervosire ver +innervosisco innervosire ver +innervosiscono innervosire ver +innervosita innervosire ver +innervositi innervosire ver +innervosito innervosire ver +innervosiva innervosire ver +innervosivano innervosire ver +innervosì innervosire ver +innesca innescare ver +innescando innescare ver +innescandone innescare ver +innescano innescare ver +innescante innescare ver +innescanti innescare ver +innescare innescare ver +innescarla innescare ver +innescarlo innescare ver +innescarne innescare ver +innescarono innescare ver +innescarsi innescare ver +innescasse innescare ver +innescassero innescare ver +innescata innescare ver +innescate innescare ver +innescatesi innescare ver +innescati innescare ver +innescato innescare ver +innescava innescare ver +innescavano innescare ver +innescheranno innescare ver +innescherebbe innescare ver +innescherebbero innescare ver +innescherà innescare ver +inneschi innesco nom +inneschiamo innescare ver +inneschino innescare ver +innesco innesco nom +innescò innescare ver +innesta innestare ver +innestando innestare ver +innestandogli innestare ver +innestandola innestare ver +innestandole innestare ver +innestandoli innestare ver +innestandosi innestare ver +innestandovi innestare ver +innestano innestare ver +innestare innestare ver +innestargli innestare ver +innestarla innestare ver +innestarlo innestare ver +innestarono innestare ver +innestarsi innestare ver +innestarvi innestare ver +innestasse innestare ver +innestata innestare ver +innestate innestare ver +innestati innestare ver +innestato innestare ver +innestava innestare ver +innestavano innestare ver +innesterebbe innestare ver +innesterà innestare ver +innesti innesto nom +innestino innestare ver +innesto innesto nom +innestò innestare ver +innevamento innevamento nom +inni inno nom +inning inning nom +inno inno nom +innocente innocente adj +innocenti innocente adj +innocentista innocentista nom +innocentiste innocentista nom +innocentisti innocentista nom +innocenza innocenza nom +innocua innocuo adj +innocue innocuo adj +innocui innocuo adj +innocuità innocuità nom +innocuo innocuo adj +innografia innografia nom +innominata innominato adj +innominate innominato adj +innominati innominato adj +innominato innominato adj +innova innovare ver +innovaci innovare ver +innovamenti innovamento nom +innovamento innovamento nom +innovando innovare ver +innovandolo innovare ver +innovandone innovare ver +innovano innovare ver +innovante innovare ver +innovare innovare ver +innovarle innovare ver +innovarne innovare ver +innovarono innovare ver +innovarsi innovare ver +innovata innovare ver +innovate innovare ver +innovati innovare ver +innovativa innovativo adj +innovative innovativo adj +innovativi innovativo adj +innovativo innovativo adj +innovato innovare ver +innovatore innovatore adj +innovatori innovatore nom +innovatrice innovatore adj +innovatrici innovatore adj +innovava innovare ver +innovazione innovazione nom +innovazioni innovazione nom +innovò innovare ver +innumerevole innumerevole adj +innumerevoli innumerevole adj +inocula inoculare ver +inoculando inoculare ver +inoculandogli inoculare ver +inoculandole inoculare ver +inoculano inoculare ver +inoculante inoculare ver +inoculare inoculare ver +inocularne inoculare ver +inocularono inoculare ver +inocularsi inoculare ver +inoculata inoculare ver +inoculate inoculare ver +inoculati inoculare ver +inoculato inoculare ver +inoculazione inoculazione nom +inoculazioni inoculazione nom +inoculi inoculare ver +inoculo inoculare ver +inoculò inoculare ver +inodora inodoro adj +inodore inodoro adj +inodori inodoro adj +inodoro inodoro adj +inoffensiva inoffensivo adj +inoffensive inoffensivo adj +inoffensivi inoffensivo adj +inoffensivo inoffensivo adj +inoltra inoltrare ver +inoltrala inoltrare ver +inoltralo inoltrare ver +inoltrando inoltrare ver +inoltrandoci inoltrare ver +inoltrandolo inoltrare ver +inoltrandosi inoltrare ver +inoltrano inoltrare ver +inoltrarci inoltrare ver +inoltrare inoltrare ver +inoltrargli inoltrare ver +inoltrarla inoltrare ver +inoltrarle inoltrare ver +inoltrarlo inoltrare ver +inoltrarmi inoltrare ver +inoltrarono inoltrare ver +inoltrarsi inoltrare ver +inoltrarti inoltrare ver +inoltrarvi inoltrare ver +inoltrasse inoltrare ver +inoltrassero inoltrare ver +inoltrata inoltrare ver +inoltrate inoltrare ver +inoltrati inoltrare ver +inoltrato inoltrato adj +inoltrava inoltrare ver +inoltravano inoltrare ver +inoltre inoltre adv_sup +inoltreranno inoltrare ver +inoltrerà inoltrare ver +inoltrerò inoltrare ver +inoltri inoltro nom +inoltriamo inoltrare ver +inoltrino inoltrare ver +inoltro inoltro nom +inoltrò inoltrare ver +inonda inondare ver +inondando inondare ver +inondandola inondare ver +inondandole inondare ver +inondandoli inondare ver +inondandolo inondare ver +inondandomi inondare ver +inondano inondare ver +inondante inondare ver +inondarci inondare ver +inondare inondare ver +inondarlo inondare ver +inondarono inondare ver +inondarsi inondare ver +inondasse inondare ver +inondassero inondare ver +inondata inondare ver +inondate inondare ver +inondati inondare ver +inondato inondare ver +inondava inondare ver +inondavano inondare ver +inondazione inondazione nom +inondazioni inondazione nom +inonderà inondare ver +inondi inondare ver +inondo inondare ver +inondò inondare ver +inoperante inoperante adj +inoperosa inoperoso adj +inoperose inoperoso adj +inoperosi inoperoso adj +inoperosità inoperosità nom +inoperoso inoperoso adj +inopia inopia nom +inopinabile inopinabile adj +inopinabili inopinabile adj +inopinata inopinato adj +inopinate inopinato adj +inopinati inopinato adj +inopinato inopinato adj +inopportuna inopportuno adj +inopportune inopportuno adj +inopportuni inopportuno adj +inopportunità inopportunità nom +inopportuno inopportuno adj +inoppugnabile inoppugnabile adj +inoppugnabili inoppugnabile adj +inorganica inorganico adj +inorganiche inorganico adj +inorganici inorganico adj +inorganico inorganico adj +inorgoglire inorgoglire ver +inorgoglirmi inorgoglire ver +inorgoglirono inorgoglire ver +inorgoglirsi inorgoglire ver +inorgoglisce inorgoglire ver +inorgoglita inorgoglire ver +inorgogliti inorgoglire ver +inorgoglito inorgoglire ver +inorgogliva inorgoglire ver +inorgoglì inorgoglire ver +inorridiamo inorridire ver +inorridire inorridire ver +inorridirono inorridire ver +inorridisce inorridire ver +inorridisco inorridire ver +inorridiscono inorridire ver +inorridita inorridire ver +inorridite inorridire ver +inorriditi inorridire ver +inorridito inorridire ver +inorridì inorridire ver +inosina inosina nom +inosine inosina nom +inospitale inospitale adj +inospitali inospitale adj +inospitalità inospitalità nom +inospiti inospite adj +inosservante inosservante adj +inosservanza inosservanza nom +inosservanze inosservanza nom +inosservata inosservato adj +inosservate inosservato adj +inosservati inosservato adj +inosservato inosservato adj +inossidabile inossidabile adj +inossidabili inossidabile adj +input input nom +inquadra inquadrare ver +inquadramenti inquadramento nom +inquadramento inquadramento nom +inquadrando inquadrare ver +inquadrandola inquadrare ver +inquadrandole inquadrare ver +inquadrandoli inquadrare ver +inquadrandolo inquadrare ver +inquadrandone inquadrare ver +inquadrandosi inquadrare ver +inquadrano inquadrare ver +inquadrante inquadrare ver +inquadranti inquadrare ver +inquadrare inquadrare ver +inquadrarla inquadrare ver +inquadrarle inquadrare ver +inquadrarli inquadrare ver +inquadrarlo inquadrare ver +inquadrarne inquadrare ver +inquadrarono inquadrare ver +inquadrarsi inquadrare ver +inquadrasse inquadrare ver +inquadrata inquadrare ver +inquadrate inquadrare ver +inquadrati inquadrare ver +inquadrato inquadrare ver +inquadratura inquadratura nom +inquadrature inquadratura nom +inquadrava inquadrare ver +inquadravano inquadrare ver +inquadreranno inquadrare ver +inquadrerebbe inquadrare ver +inquadrerei inquadrare ver +inquadrerà inquadrare ver +inquadri inquadrare ver +inquadrino inquadrare ver +inquadro inquadrare ver +inquadrò inquadrare ver +inqualificabile inqualificabile adj +inqualificabili inqualificabile adj +inquartata inquartato adj +inquartate inquartato adj +inquartati inquartato adj +inquartato inquartato adj +inquieta inquieto adj +inquietando inquietare ver +inquietano inquietare ver +inquietante inquietante adj +inquietanti inquietante adj +inquietare inquietare ver +inquietarono inquietare ver +inquietarsi inquietare ver +inquietata inquietare ver +inquietate inquietare ver +inquietati inquietare ver +inquietato inquietare ver +inquietava inquietare ver +inquietavano inquietare ver +inquiete inquieto adj +inquieti inquieto adj +inquieto inquieto adj +inquietudine inquietudine nom +inquietudini inquietudine nom +inquietò inquietare ver +inquilina inquilino nom +inquiline inquilino nom +inquilini inquilino nom +inquilino inquilino nom +inquina inquinare ver +inquinamenti inquinamento nom +inquinamento inquinamento nom +inquinando inquinare ver +inquinandola inquinare ver +inquinandone inquinare ver +inquinano inquinare ver +inquinante inquinante adj +inquinanti inquinante adj +inquinare inquinare ver +inquinarla inquinare ver +inquinarle inquinare ver +inquinarlo inquinare ver +inquinarne inquinare ver +inquinarono inquinare ver +inquinassero inquinare ver +inquinata inquinare ver +inquinate inquinato adj +inquinati inquinare ver +inquinato inquinare ver +inquinatore inquinatore adj +inquinava inquinare ver +inquinavano inquinare ver +inquinerebbe inquinare ver +inquinerebbero inquinare ver +inquini inquinare ver +inquinino inquinare ver +inquino inquinare ver +inquinò inquinare ver +inquirente inquirente adj +inquirenti inquirente nom +inquisendo inquisire ver +inquisire inquisire ver +inquisita inquisire ver +inquisite inquisire ver +inquisiti inquisire ver +inquisitive inquisitivo adj +inquisitivi inquisitivo adj +inquisitivo inquisitivo adj +inquisito inquisire ver +inquisitore inquisitore adj +inquisitori inquisitore nom +inquisitoria inquisitorio adj +inquisitorie inquisitorio adj +inquisitorio inquisitorio adj +inquisitrice inquisitore adj +inquisivi inquisire ver +inquisizione inquisizione nom +inquisizioni inquisizione nom +inquisì inquisire ver +insabbia insabbiare ver +insabbiamenti insabbiamento nom +insabbiamento insabbiamento nom +insabbiando insabbiare ver +insabbiandosi insabbiare ver +insabbiano insabbiare ver +insabbiare insabbiare ver +insabbiarono insabbiare ver +insabbiarsi insabbiare ver +insabbiata insabbiare ver +insabbiate insabbiare ver +insabbiati insabbiare ver +insabbiato insabbiare ver +insabbiavano insabbiare ver +insabbiò insabbiare ver +insacca insaccare ver +insaccamento insaccamento nom +insaccando insaccare ver +insaccare insaccare ver +insaccarli insaccare ver +insaccarsi insaccare ver +insaccata insaccare ver +insaccate insaccato adj +insaccati insaccato nom +insaccato insaccato nom +insaccatura insaccatura nom +insacco insaccare ver +insaccò insaccare ver +insalata insalata nom +insalate insalata nom +insalatiera insalatiera nom +insalatiere insalatiera nom +insalubre insalubre adj +insalubri insalubre adj +insalubrità insalubrità nom +insalutato insalutato adj +insana insano adj +insanabile insanabile adj +insanabili insanabile adj +insane insano adj +insanguina insanguinare ver +insanguinando insanguinare ver +insanguinano insanguinare ver +insanguinare insanguinare ver +insanguinarono insanguinare ver +insanguinarsi insanguinare ver +insanguinata insanguinare ver +insanguinate insanguinare ver +insanguinati insanguinare ver +insanguinato insanguinare ver +insanguinava insanguinare ver +insanguinavano insanguinare ver +insanguineranno insanguinare ver +insanguinerà insanguinare ver +insanguinò insanguinare ver +insani insano adj +insania insania nom +insanire insanire ver +insano insano adj +insaponare insaponare ver +insaponata insaponare ver +insaponate insaponare ver +insaponati insaponare ver +insaponato insaponare ver +insaponatura insaponatura nom +insapore insapore|insaporo adj +insaporendo insaporire ver +insapori insapore|insaporo adj +insaporire insaporire ver +insaporirla insaporire ver +insaporirle insaporire ver +insaporirlo insaporire ver +insaporisce insaporire ver +insaporiscono insaporire ver +insaporita insaporire ver +insaporite insaporire ver +insaporiti insaporire ver +insaporito insaporire ver +insaporiva insaporire ver +insaputa insaputa nom +insatura insaturo adj +insature insaturo adj +insaturi insaturo adj +insaturo insaturo adj +insaziabile insaziabile adj +insaziabili insaziabile adj +inscatola inscatolare ver +inscatolamento inscatolamento nom +inscatolando inscatolare ver +inscatolare inscatolare ver +inscatolarlo inscatolare ver +inscatolata inscatolare ver +inscatolate inscatolare ver +inscatolati inscatolare ver +inscatolato inscatolare ver +inscena inscenare ver +inscenando inscenare ver +inscenandone inscenare ver +inscenano inscenare ver +inscenare inscenare ver +inscenarono inscenare ver +inscenasse inscenare ver +inscenata inscenare ver +inscenate inscenare ver +inscenati inscenare ver +inscenato inscenare ver +inscenava inscenare ver +inscenavano inscenare ver +inscenerà inscenare ver +insceni inscenare ver +inscenò inscenare ver +inscindibile inscindibile adj +inscindibili inscindibile adj +inscindibilmente inscindibilmente adv +inscrisse inscrivere ver +inscritta inscrivere ver +inscritte inscrivere ver +inscritti inscrivere ver +inscrittibile inscrittibile adj +inscritto inscrivere ver +inscriva inscrivere ver +inscrive inscrivere ver +inscrivendo inscrivere ver +inscrivendolo inscrivere ver +inscrivere inscrivere ver +inscrivermi inscrivere ver +inscriversi inscrivere ver +inscrivervi inscrivere ver +inscriveva inscrivere ver +inscrivevano inscrivere ver +inscrivono inscrivere ver +inscrizione inscrizione nom +inscrizioni inscrizione nom +insedi insediare ver +insedia insediare ver +insediamenti insediamento nom +insediamento insediamento nom +insediando insediare ver +insediandoli insediare ver +insediandolo insediare ver +insediandosi insediare ver +insediandovi insediare ver +insediano insediare ver +insedianti insediare ver +insediare insediare ver +insediarli insediare ver +insediarlo insediare ver +insediarne insediare ver +insediarono insediare ver +insediarsi insediare ver +insediarvi insediare ver +insediasse insediare ver +insediassero insediare ver +insediata insediare ver +insediatasi insediare ver +insediate insediare ver +insediatesi insediare ver +insediati insediare ver +insediato insediare ver +insediatosi insediare ver +insediava insediare ver +insediavano insediare ver +insedieranno insediare ver +insedierà insediare ver +insedino insediare ver +insedio insediare ver +insediò insediare ver +insegna insegna nom +insegnaci insegnare ver +insegnagli insegnare ver +insegnai insegnare ver +insegnamenti insegnamento nom +insegnamento insegnamento nom +insegnami insegnare ver +insegnando insegnare ver +insegnandoci insegnare ver +insegnandogli insegnare ver +insegnandola insegnare ver +insegnandole insegnare ver +insegnandoli insegnare ver +insegnandolo insegnare ver +insegnandomi insegnare ver +insegnandone insegnare ver +insegnandosi insegnare ver +insegnandovi insegnare ver +insegnano insegnare ver +insegnante insegnante nom +insegnanti insegnante nom +insegnar insegnare ver +insegnarcelo insegnare ver +insegnarci insegnare ver +insegnare insegnare ver +insegnargli insegnare ver +insegnargliela insegnare ver +insegnarglielo insegnare ver +insegnarla insegnare ver +insegnarle insegnare ver +insegnarli insegnare ver +insegnarlo insegnare ver +insegnarmelo insegnare ver +insegnarmi insegnare ver +insegnarne insegnare ver +insegnarono insegnare ver +insegnarsi insegnare ver +insegnarti insegnare ver +insegnarvelo insegnare ver +insegnarvi insegnare ver +insegnasse insegnare ver +insegnassero insegnare ver +insegnassi insegnare ver +insegnasti insegnare ver +insegnata insegnare ver +insegnate insegnare ver +insegnategli insegnare ver +insegnatele insegnare ver +insegnatemi insegnare ver +insegnati insegnare ver +insegnato insegnare ver +insegnava insegnare ver +insegnavano insegnare ver +insegnavate insegnare ver +insegnavi insegnare ver +insegnavo insegnare ver +insegne insegna nom +insegnerai insegnare ver +insegneranno insegnare ver +insegnerebbe insegnare ver +insegnerebbero insegnare ver +insegneremo insegnare ver +insegnerà insegnare ver +insegnerò insegnare ver +insegni insegnare ver +insegniamo insegnare ver +insegnino insegnare ver +insegno insegnare ver +insegnò insegnare ver +insegua inseguire ver +inseguano inseguire ver +insegue inseguire ver +inseguendo inseguire ver +inseguendola inseguire ver +inseguendole inseguire ver +inseguendoli inseguire ver +inseguendolo inseguire ver +inseguendone inseguire ver +inseguendosi inseguire ver +inseguendovi inseguire ver +insegui inseguire ver +inseguiamo inseguire ver +inseguimenti inseguimento nom +inseguimento inseguimento nom +inseguir inseguire ver +inseguiranno inseguire ver +inseguire inseguire ver +inseguiremo inseguire ver +inseguirla inseguire ver +inseguirle inseguire ver +inseguirli inseguire ver +inseguirlo inseguire ver +inseguirne inseguire ver +inseguirono inseguire ver +inseguirsi inseguire ver +inseguirvi inseguire ver +inseguirà inseguire ver +inseguirò inseguire ver +inseguisse inseguire ver +inseguissero inseguire ver +inseguita inseguire ver +inseguite inseguire ver +inseguiti inseguire ver +inseguito inseguire ver +inseguitore inseguitore adj +inseguitori inseguitore nom +inseguitrice inseguitore adj +inseguitrici inseguitore nom +inseguiva inseguire ver +inseguivano inseguire ver +inseguivo inseguire ver +inseguo inseguire ver +inseguono inseguire ver +inseguì inseguire ver +insellata insellare ver +insellati insellare ver +insellato insellare ver +insellatura insellatura nom +inselvatichire inselvatichire ver +inselvatichirono inselvatichire ver +inselvatichirsi inselvatichire ver +inselvatichisce inselvatichire ver +inselvatichita inselvatichire ver +inselvatichite inselvatichire ver +inselvatichiti inselvatichire ver +inselvatichito inselvatichire ver +inselvatichì inselvatichire ver +inseminazione inseminazione nom +inseminazioni inseminazione nom +insenatura insenatura nom +insenature insenatura nom +insensata insensato adj +insensate insensato adj +insensatezza insensatezza nom +insensatezze insensatezza nom +insensati insensato adj +insensato insensato adj +insensibile insensibile adj +insensibili insensibile adj +insensibilità insensibilità nom +inseparabile inseparabile adj +inseparabili inseparabile adj +inseparabilità inseparabilità nom +insepolta insepolto adj +insepolte insepolto adj +insepolti insepolto adj +insepolto insepolto adj +inserendo inserire ver +inserendoci inserire ver +inserendogli inserire ver +inserendola inserire ver +inserendole inserire ver +inserendoli inserire ver +inserendolo inserire ver +inserendomi inserire ver +inserendone inserire ver +inserendosi inserire ver +inserendovi inserire ver +inseriamo inserire ver +inseriamoci inserire ver +inseriamola inserire ver +inseriamole inserire ver +inseriamoli inserire ver +inseriamolo inserire ver +inseriate inserire ver +inserii inserire ver +inserimenti inserimento nom +inserimento inserimento nom +inserir inserire ver +inserirai inserire ver +inseriranno inserire ver +inserirceli inserire ver +inserircelo inserire ver +inserirci inserire ver +inserire inserire ver +inserirebbe inserire ver +inserirebbero inserire ver +inserirei inserire ver +inseriremmo inserire ver +inseriremo inserire ver +inseriresti inserire ver +inserirete inserire ver +inserirgli inserire ver +inserirla inserire ver +inserirle inserire ver +inserirli inserire ver +inserirlo inserire ver +inserirmi inserire ver +inserirne inserire ver +inserirono inserire ver +inserirsi inserire ver +inserirti inserire ver +inserirvelo inserire ver +inserirvi inserire ver +inserirà inserire ver +inserirò inserire ver +inserisca inserire ver +inseriscano inserire ver +inserisce inserire ver +inserisci inserire ver +inseriscila inserire ver +inseriscile inserire ver +inseriscili inserire ver +inseriscilo inserire ver +inseriscine inserire ver +inserisciti inserire ver +inserisco inserire ver +inseriscono inserire ver +inserisse inserire ver +inserissero inserire ver +inserissi inserire ver +inserissimo inserire ver +inseriste inserire ver +inserita inserire ver +inserite inserire ver +inseritela inserire ver +inseritele inserire ver +inseriteli inserire ver +inseritelo inserire ver +inseritesi inserire ver +inseritevi inserire ver +inseriti inserire ver +inserito inserire ver +inseriva inserire ver +inserivano inserire ver +inserivi inserire ver +inserivo inserire ver +inserti inserto nom +inserto inserto nom +inservibile inservibile adj +inservibili inservibile adj +inserviente inserviente nom +inservienti inserviente nom +inserzione inserzione nom +inserzioni inserzione nom +inserzionista inserzionista nom +inserzioniste inserzionista nom +inserzionisti inserzionista nom +inserì inserire ver +insetti insetto nom +insetticida insetticida nom +insetticidi insetticida nom +insettifughe insettifugo adj +insettifughi insettifugo nom +insettifugo insettifugo nom +insettivora insettivoro adj +insettivore insettivoro adj +insettivori insettivoro adj +insettivoro insettivoro adj +insetto insetto nom +insicura insicuro adj +insicure insicuro adj +insicurezza insicurezza nom +insicurezze insicurezza nom +insicuri insicuro adj +insicuro insicuro adj +insider insider nom +insidia insidia nom +insidiando insidiare ver +insidiandosi insidiare ver +insidiano insidiare ver +insidiare insidiare ver +insidiargli insidiare ver +insidiarla insidiare ver +insidiarli insidiare ver +insidiarlo insidiare ver +insidiarne insidiare ver +insidiarono insidiare ver +insidiarsi insidiare ver +insidiasse insidiare ver +insidiata insidiare ver +insidiate insidiare ver +insidiati insidiare ver +insidiato insidiare ver +insidiava insidiare ver +insidiavano insidiare ver +insidie insidia nom +insidierai insidiare ver +insidieranno insidiare ver +insidierà insidiare ver +insidiosa insidioso adj +insidiose insidioso adj +insidiosi insidioso adj +insidioso insidioso adj +insidiò insidiare ver +insieme insieme adv +insiemi insieme nom +insiemistica insiemistica nom +insiemistiche insiemistica nom +insigne insigne adj +insignendo insignire ver +insignendolo insignire ver +insigni insigne adj +insignificante insignificante adj +insignificanti insignificante adj +insignire insignire ver +insignirla insignire ver +insignirlo insignire ver +insignirono insignire ver +insignirsi insignire ver +insignirà insignire ver +insignisce insignire ver +insignita insignire ver +insignite insignire ver +insigniti insignire ver +insignito insignire ver +insigniva insignire ver +insignì insignire ver +insila insilare ver +insilare insilare ver +insilati insilare ver +insilato insilare ver +insincera insincero adj +insincere insincero adj +insinceri insincero adj +insincerità insincerità nom +insincero insincero adj +insindacabile insindacabile adj +insindacabili insindacabile adj +insinua insinuare ver +insinuando insinuare ver +insinuandogli insinuare ver +insinuandole insinuare ver +insinuandosi insinuare ver +insinuano insinuare ver +insinuante insinuante adj +insinuanti insinuante adj +insinuar insinuare ver +insinuare insinuare ver +insinuargli insinuare ver +insinuarle insinuare ver +insinuarmi insinuare ver +insinuarono insinuare ver +insinuarsi insinuare ver +insinuasse insinuare ver +insinuassero insinuare ver +insinuata insinuare ver +insinuate insinuare ver +insinuati insinuare ver +insinuato insinuare ver +insinuava insinuare ver +insinuavano insinuare ver +insinuazione insinuazione nom +insinuazioni insinuazione nom +insinueranno insinuare ver +insinuerà insinuare ver +insinui insinuare ver +insinuo insinuare ver +insinuò insinuare ver +insipida insipido adj +insipide insipido adj +insipidezza insipidezza nom +insipidi insipido adj +insipido insipido adj +insipiente insipiente adj +insipienti insipiente adj +insipienza insipienza nom +insista insistere ver +insistano insistere ver +insiste insistere ver +insistendo insistere ver +insistente insistente adj +insistentemente insistentemente adv +insistenti insistente adj +insistenza insistenza nom +insistenze insistenza nom +insisterai insistere ver +insisteranno insistere ver +insistere insistere ver +insisterei insistere ver +insisterono insistere ver +insistervi insistere ver +insisterà insistere ver +insisterò insistere ver +insistesse insistere ver +insistessero insistere ver +insistessi insistere ver +insistete insistere ver +insisteva insistere ver +insistevano insistere ver +insistevo insistere ver +insisti insistere ver +insistiamo insistere ver +insistita insistere ver +insistite insistere ver +insistiti insistere ver +insistito insistere ver +insisto insistere ver +insistono insistere ver +insita insito adj +insite insito adj +insiti insito adj +insito insito adj +insocievole insocievole adj +insoddisfacente insoddisfacente adj +insoddisfacenti insoddisfacente adj +insoddisfatta insoddisfatto adj +insoddisfatte insoddisfatto adj +insoddisfatti insoddisfatto adj +insoddisfatto insoddisfatto adj +insoddisfazione insoddisfazione nom +insoddisfazioni insoddisfazione nom +insofferente insofferente adj +insofferenti insofferente adj +insofferenza insofferenza nom +insofferenze insofferenza nom +insoffribile insoffribile adj +insolazione insolazione nom +insolazioni insolazione nom +insolente insolente adj +insolenti insolente adj +insolentire insolentire ver +insolentisce insolentire ver +insolentiti insolentire ver +insolentiva insolentire ver +insolenza insolenza nom +insolenze insolenza nom +insolita insolito adj +insolite insolito adj +insoliti insolito adj +insolito insolito adj +insolubile insolubile adj +insolubili insolubile adj +insolubilità insolubilità nom +insoluta insoluto adj +insolute insoluto adj +insoluti insoluto adj +insoluto insoluto adj +insolvente insolvente adj +insolventi insolvente adj +insolvenza insolvenza nom +insolvenze insolvenza nom +insolvibile insolvibile adj +insolvibili insolvibile adj +insolvibilità insolvibilità nom +insomma insomma adv_sup +insondabile insondabile adj +insondabili insondabile adj +insonne insonne adj +insonni insonne adj +insonnia insonnia nom +insonnie insonnia nom +insonnolita insonnolito adj +insonnolito insonnolito adj +insonorizzante insonorizzare ver +insonorizzanti insonorizzare ver +insonorizzare insonorizzare ver +insonorizzata insonorizzare ver +insonorizzate insonorizzare ver +insonorizzati insonorizzare ver +insonorizzato insonorizzare ver +insopportabile insopportabile adj +insopportabili insopportabile adj +insopprimibile insopprimibile adj +insopprimibili insopprimibile adj +insorga insorgere ver +insorgano insorgere ver +insorge insorgere ver +insorgendo insorgere ver +insorgente insorgente adj +insorgenti insorgente adj +insorgenza insorgenza nom +insorgenze insorgenza nom +insorgeranno insorgere ver +insorgere insorgere ver +insorgerebbe insorgere ver +insorgerebbero insorgere ver +insorgerà insorgere ver +insorgesse insorgere ver +insorgessero insorgere ver +insorgete insorgere ver +insorgeva insorgere ver +insorgevano insorgere ver +insorgono insorgere ver +insormontabile insormontabile adj +insormontabili insormontabile adj +insorse insorgere ver +insorsero insorgere ver +insorta insorgere ver +insorte insorgere ver +insorti insorto nom +insorto insorgere ver +insospettabile insospettabile adj +insospettabili insospettabile adj +insospettendo insospettire ver +insospettiranno insospettire ver +insospettire insospettire ver +insospettirebbe insospettire ver +insospettirlo insospettire ver +insospettirono insospettire ver +insospettirsi insospettire ver +insospettisca insospettire ver +insospettiscano insospettire ver +insospettisce insospettire ver +insospettiscono insospettire ver +insospettisse insospettire ver +insospettita insospettire ver +insospettite insospettire ver +insospettiti insospettire ver +insospettito insospettire ver +insospettì insospettire ver +insostenibile insostenibile adj +insostenibili insostenibile adj +insostenibilità insostenibilità nom +insostituibile insostituibile adj +insostituibili insostituibile adj +insozza insozzare ver +insozzando insozzare ver +insozzano insozzare ver +insozzare insozzare ver +insozzata insozzare ver +insozzati insozzare ver +insozzato insozzare ver +insozzò insozzare ver +insperabile insperabile adj +insperata insperato adj +insperate insperato adj +insperati insperato adj +insperato insperato adj +inspiegabile inspiegabile adj +inspiegabili inspiegabile adj +inspiegabilmente inspiegabilmente adv +inspira inspirare ver +inspiraci inspirare ver +inspirando inspirare ver +inspirandosi inspirare ver +inspirano inspirare ver +inspirare inspirare ver +inspirarono inspirare ver +inspirata inspirare ver +inspirate inspirare ver +inspirati inspirare ver +inspirato inspirare ver +inspiratore inspiratore adj +inspiratori inspiratore|inspiratorio adj +inspiratoria inspiratorio adj +inspiratorio inspiratorio adj +inspiratrice inspiratore adj +inspirava inspirare ver +inspiravano inspirare ver +inspirazione inspirazione nom +inspirazioni inspirazione nom +inspirerà inspirare ver +inspirerò inspirare ver +inspiri inspirare ver +inspiriamo inspirare ver +inspiro inspirare ver +inspirò inspirare ver +insta instare ver +instabile instabile adj +instabili instabile adj +instabilità instabilità nom +installa installare ver +installando installare ver +installandola installare ver +installandolo installare ver +installandosi installare ver +installandovi installare ver +installano installare ver +installante installare ver +installarci installare ver +installare installare ver +installargli installare ver +installarla installare ver +installarle installare ver +installarli installare ver +installarlo installare ver +installarmi installare ver +installarne installare ver +installarono installare ver +installarselo installare ver +installarsi installare ver +installarti installare ver +installarvi installare ver +installasse installare ver +installassero installare ver +installata installare ver +installate installare ver +installati installare ver +installato installare ver +installatore installatore nom +installatori installatore nom +installatrice installatore nom +installatrici installatore nom +installava installare ver +installavano installare ver +installazione installazione nom +installazioni installazione nom +installerai installare ver +installeranno installare ver +installerà installare ver +installi installare ver +installino installare ver +installo installare ver +installò installare ver +instancabile instancabile adj +instancabili instancabile adj +instando instare ver +instante instare ver +instanti instare ver +instar instare ver +instate instare ver +instaura instaurare ver +instauraci instaurare ver +instaurando instaurare ver +instaurandoci instaurare ver +instaurandosi instaurare ver +instaurandovi instaurare ver +instaurano instaurare ver +instaurante instaurare ver +instaurar instaurare ver +instaurarci instaurare ver +instaurare instaurare ver +instaurarla instaurare ver +instaurarne instaurare ver +instaurarono instaurare ver +instaurarsi instaurare ver +instaurarvi instaurare ver +instaurasi instaurare ver +instaurasse instaurare ver +instaurassero instaurare ver +instaurata instaurare ver +instauratasi instauratasi adj +instaurate instaurare ver +instauratesi instaurare ver +instaurati instaurare ver +instaurato instaurare ver +instauratore instauratore nom +instaurava instaurare ver +instauravano instaurare ver +instaurazione instaurazione nom +instaureranno instaurare ver +instaurerebbero instaurare ver +instaurerà instaurare ver +instauri instaurare ver +instauriamo instaurare ver +instaurino instaurare ver +instauro instaurare ver +instaurò instaurare ver +instava instare ver +instilla instillare ver +instillando instillare ver +instillandogli instillare ver +instillano instillare ver +instillare instillare ver +instillargli instillare ver +instillarono instillare ver +instillarsi instillare ver +instillasse instillare ver +instillata instillare ver +instillate instillare ver +instillato instillare ver +instillava instillare ver +instillerà instillare ver +instillò instillare ver +institore institore nom +institori institore nom +instrada instradare ver +instradamento instradamento nom +instradando instradare ver +instradandosi instradare ver +instradandovi instradare ver +instradano instradare ver +instradarci instradare ver +instradare instradare ver +instradarle instradare ver +instradarli instradare ver +instradarlo instradare ver +instradarono instradare ver +instradarsi instradare ver +instradata instradare ver +instradate instradare ver +instradati instradare ver +instradato instradare ver +instradi instradare ver +instradò instradare ver +insubordinata insubordinato adj +insubordinate insubordinato adj +insubordinati insubordinato adj +insubordinato insubordinato adj +insubordinazione insubordinazione nom +insubordinazioni insubordinazione nom +insubre insubre adj +insubri insubre adj +insuccessi insuccesso nom +insuccesso insuccesso nom +insudiciare insudiciare ver +insudiciata insudiciare ver +insudiciato insudiciare ver +insudicino insudiciare ver +insufficiente insufficiente adj +insufficientemente insufficientemente adv +insufficienti insufficiente adj +insufficienza insufficienza nom +insufficienze insufficienza nom +insuffla insufflare ver +insufflando insufflare ver +insufflano insufflare ver +insufflare insufflare ver +insufflata insufflare ver +insufflate insufflare ver +insufflati insufflare ver +insufflato insufflare ver +insufflava insufflare ver +insufflazione insufflazione nom +insufflazioni insufflazione nom +insufflerà insufflare ver +insulare insulare adj +insulari insulare adj +insularità insularità nom +insulina insulina nom +insuline insulina nom +insulsa insulso adj +insulsaggine insulsaggine nom +insulsaggini insulsaggine nom +insulse insulso adj +insulsi insulso adj +insulso insulso adj +insulta insultare ver +insultami insultare ver +insultando insultare ver +insultandoci insultare ver +insultandola insultare ver +insultandoli insultare ver +insultandolo insultare ver +insultandomi insultare ver +insultandosi insultare ver +insultano insultare ver +insultante insultare ver +insultanti insultare ver +insultar insultare ver +insultarci insultare ver +insultare insultare ver +insultarla insultare ver +insultarli insultare ver +insultarlo insultare ver +insultarmi insultare ver +insultarono insultare ver +insultarsi insultare ver +insultarti insultare ver +insultarvi insultare ver +insultasse insultare ver +insultassero insultare ver +insultassi insultare ver +insultata insultare ver +insultate insultare ver +insultatemi insultare ver +insultati insultare ver +insultato insultare ver +insultava insultare ver +insultavano insultare ver +insulteranno insultare ver +insulterà insultare ver +insulterò insultare ver +insulti insulto nom +insultiamo insultare ver +insultino insultare ver +insulto insulto nom +insultò insultare ver +insuperabile insuperabile adj +insuperabili insuperabile adj +insuperata insuperato adj +insuperate insuperato adj +insuperati insuperato adj +insuperato insuperato adj +insuperbire insuperbire ver +insuperbirono insuperbire ver +insuperbito insuperbire ver +insurrezionale insurrezionale adj +insurrezionali insurrezionale adj +insurrezione insurrezione nom +insurrezioni insurrezione nom +insussistente insussistente adj +insussistenti insussistente adj +insussistenza insussistenza nom +insù insù adv +intabarrate intabarrare ver +intabarrati intabarrare ver +intabarrato intabarrare ver +intacca intaccare ver +intaccabile intaccabile adj +intaccabili intaccabile adj +intaccando intaccare ver +intaccandone intaccare ver +intaccano intaccare ver +intaccanti intaccare ver +intaccare intaccare ver +intaccarla intaccare ver +intaccarlo intaccare ver +intaccarne intaccare ver +intaccarono intaccare ver +intaccarsi intaccare ver +intaccasse intaccare ver +intaccata intaccare ver +intaccate intaccare ver +intaccati intaccare ver +intaccato intaccare ver +intaccatura intaccatura nom +intaccature intaccatura nom +intaccava intaccare ver +intaccavano intaccare ver +intaccheranno intaccare ver +intaccherebbe intaccare ver +intaccherà intaccare ver +intacchi intaccare ver +intacchino intaccare ver +intacco intacco nom +intaccò intaccare ver +intagli intaglio nom +intaglia intagliare ver +intagliando intagliare ver +intagliano intagliare ver +intagliare intagliare ver +intagliarono intagliare ver +intagliarsi intagliare ver +intagliata intagliare ver +intagliate intagliare ver +intagliati intagliare ver +intagliato intagliare ver +intagliatore intagliatore nom +intagliatori intagliatore nom +intagliatrice intagliatore nom +intagliava intagliare ver +intagliavano intagliare ver +intaglio intaglio nom +intagliò intagliare ver +intangibile intangibile adj +intangibili intangibile adj +intangibilità intangibilità nom +intanto intanto adv_sup +intarsi intarsio nom +intarsia intarsiare ver +intarsiare intarsiare ver +intarsiata intarsiare ver +intarsiate intarsiare ver +intarsiati intarsiare ver +intarsiato intarsiare ver +intarsiatore intarsiatore nom +intarsiatori intarsiatore nom +intarsiatrice intarsiatore nom +intarsiatura intarsiatura nom +intarsiature intarsiatura nom +intarsio intarsio nom +intasa intasare ver +intasamenti intasamento nom +intasamento intasamento nom +intasando intasare ver +intasano intasare ver +intasare intasare ver +intasargli intasare ver +intasarlo intasare ver +intasarono intasare ver +intasarsi intasare ver +intasarvi intasare ver +intasata intasare ver +intasate intasare ver +intasati intasare ver +intasato intasare ver +intasava intasare ver +intasavano intasare ver +intasca intascare ver +intascando intascare ver +intascandosi intascare ver +intascano intascare ver +intascare intascare ver +intascarne intascare ver +intascarono intascare ver +intascarsi intascare ver +intascata intascare ver +intascati intascare ver +intascato intascare ver +intascava intascare ver +intascavano intascare ver +intascherà intascare ver +intasco intascare ver +intascò intascare ver +intaserebbe intasare ver +intaserebbero intasare ver +intaserà intasare ver +intasi intasare ver +intasiamo intasare ver +intasino intasare ver +intaso intasare ver +intatta intatto adj +intatte intatto adj +intatti intatto adj +intatto intatto adj +intavola intavolare ver +intavolando intavolare ver +intavolano intavolare ver +intavolare intavolare ver +intavolarono intavolare ver +intavolata intavolare ver +intavolate intavolare ver +intavolati intavolare ver +intavolato intavolare ver +intavolatura intavolatura nom +intavolature intavolatura nom +intavolava intavolare ver +intavolò intavolare ver +integerrima integerrimo adj +integerrimi integerrimo adj +integerrimo integerrimo adj +integra integrare ver +integrabile integrabile adj +integrabili integrabile adj +integraci integrare ver +integrala integrare ver +integrale integrale adj +integrali integrale adj +integralismi integralismo nom +integralismo integralismo nom +integralista integralista adj +integraliste integralista adj +integralisti integralista adj +integralità integralità nom +integralmente integralmente adv +integralo integrare ver +integrando integrare ver +integrandoci integrare ver +integrandola integrare ver +integrandole integrare ver +integrandoli integrare ver +integrandolo integrare ver +integrandone integrare ver +integrandosi integrare ver +integrandovi integrare ver +integrano integrare ver +integrante integrante adj +integranti integrante adj +integrar integrare ver +integrarci integrare ver +integrare integrare ver +integrarla integrare ver +integrarle integrare ver +integrarli integrare ver +integrarlo integrare ver +integrarne integrare ver +integrarono integrare ver +integrarsi integrare ver +integrarvi integrare ver +integrasi integrare ver +integrasse integrare ver +integrassero integrare ver +integrassi integrare ver +integrassimo integrare ver +integrata integrare ver +integrate integrare ver +integratela integrare ver +integratesi integrare ver +integrati integrare ver +integrativa integrativo adj +integrativamente integrativamente adv +integrative integrativo adj +integrativi integrativo adj +integrativo integrativo adj +integrato integrare ver +integratori integratore nom +integratrici integratrice adj +integrava integrare ver +integravano integrare ver +integravo integrare ver +integrazione integrazione nom +integrazioni integrazione nom +integrazionista integrazionista adj +integrazionisti integrazionista nom +integre integro adj +integreranno integrare ver +integrerebbe integrare ver +integrerei integrare ver +integreremo integrare ver +integrerà integrare ver +integrerò integrare ver +integri integro adj +integriamo integrare ver +integriamola integrare ver +integriamolo integrare ver +integrino integrare ver +integrità integrità nom +integro integro adj +integrò integrare ver +intelaiata intelaiare ver +intelaiate intelaiare ver +intelaiati intelaiare ver +intelaiato intelaiare ver +intelaiatura intelaiatura nom +intelaiature intelaiatura nom +intelletti intelletto nom +intellettiva intellettivo adj +intellettive intellettivo adj +intellettivi intellettivo adj +intellettivo intellettivo adj +intelletto intelletto nom +intellettuale intellettuale adj +intellettuali intellettuale nom +intellettualismi intellettualismo nom +intellettualismo intellettualismo nom +intellettualistica intellettualistico adj +intellettualistiche intellettualistico adj +intellettualistici intellettualistico adj +intellettualistico intellettualistico adj +intellettualità intellettualità nom +intellettualizza intellettualizzare ver +intellettualizzare intellettualizzare ver +intellettualizzata intellettualizzare ver +intellettualizzato intellettualizzare ver +intellettualoide intellettualoide adj +intellettualoidi intellettualoide adj +intelligente intelligente adj +intelligenti intelligente adj +intelligenza intelligenza nom +intelligenze intelligenza nom +intellighenzia intellighenzia nom +intelligibile intelligibile adj +intelligibili intelligibile adj +intelligibilità intelligibilità nom +intemerata intemerato adj +intemerati intemerato adj +intemerato intemerato adj +intemperante intemperante adj +intemperanti intemperante adj +intemperanza intemperanza nom +intemperanze intemperanza nom +intemperie intemperie nom +intempestiva intempestivo adj +intempestivi intempestivo adj +intempestività intempestività nom +intempestivo intempestivo adj +intenda intendere ver +intendano intendere ver +intende intendere ver +intendendo intendere ver +intendendola intendere ver +intendendole intendere ver +intendendolo intendere ver +intendendomene intendere ver +intendendomi intendere ver +intendendone intendere ver +intendendosi intendere ver +intendendovi intendere ver +intendente intendente adj +intendenti intendente nom +intendenza intendenza nom +intendenze intendenza nom +intender intendere ver +intenderanno intendere ver +intenderci intendere ver +intendere intendere ver +intenderebbe intendere ver +intenderebbero intendere ver +intenderei intendere ver +intenderemo intendere ver +intenderesti intendere ver +intenderla intendere ver +intenderle intendere ver +intenderli intendere ver +intenderlo intendere ver +intendermene intendere ver +intenderne intendere ver +intendersene intendere ver +intendersi intendere ver +intenderà intendere ver +intenderò intendere ver +intendesse intendere ver +intendessero intendere ver +intendessi intendere ver +intendessimo intendere ver +intendeste intendere ver +intendesti intendere ver +intendete intendere ver +intendeva intendere ver +intendevamo intendere ver +intendevano intendere ver +intendevate intendere ver +intendevi intendere ver +intendevo intendere ver +intendi intendere ver +intendiamo intendere ver +intendiamoci intendere ver +intendiate intendere ver +intendimenti intendimento nom +intendimento intendimento nom +intendimi intendere ver +intenditore intenditore nom +intenditori intenditore nom +intenditrice intenditore nom +intendo intendere ver +intendono intendere ver +intenerimento intenerimento nom +intenerire intenerire ver +intenerirla intenerire ver +intenerirsi intenerire ver +intenerisce intenerire ver +inteneriscono intenerire ver +intenerita intenerire ver +inteneriti intenerire ver +intenerito intenerire ver +intenerì intenerire ver +intensa intenso adj +intensamente intensamente adv +intense intenso adj +intensi intenso adj +intensifica intensificare ver +intensificando intensificare ver +intensificandola intensificare ver +intensificandone intensificare ver +intensificandosi intensificare ver +intensificano intensificare ver +intensificante intensificare ver +intensificanti intensificare ver +intensificare intensificare ver +intensificarla intensificare ver +intensificarne intensificare ver +intensificarono intensificare ver +intensificarsi intensificare ver +intensificassero intensificare ver +intensificata intensificare ver +intensificate intensificare ver +intensificati intensificare ver +intensificato intensificare ver +intensificava intensificare ver +intensificavano intensificare ver +intensificazione intensificazione nom +intensificheranno intensificare ver +intensificherebbe intensificare ver +intensificherà intensificare ver +intensifichi intensificare ver +intensifico intensificare ver +intensificò intensificare ver +intensità intensità nom +intensiva intensivo adj +intensive intensivo adj +intensivi intensivo adj +intensivo intensivo adj +intenso intenso adj +intenta intento adj +intentando intentare ver +intentandogli intentare ver +intentano intentare ver +intentanti intentare ver +intentar intentare ver +intentare intentare ver +intentargli intentare ver +intentarlo intentare ver +intentarono intentare ver +intentata intentare ver +intentate intentare ver +intentati intentare ver +intentato intentare ver +intente intento adj +intenteranno intentare ver +intenterà intentare ver +intenti intento nom +intento intento adj +intentò intentare ver +intenzionale intenzionale adj +intenzionali intenzionale adj +intenzionalità intenzionalità nom +intenzionalmente intenzionalmente adv +intenzionata intenzionato adj +intenzionate intenzionato adj +intenzionati intenzionato adj +intenzionato intenzionato adj +intenzione intenzione nom +intenzioni intenzione nom +intera intero adj +interafricana interafricano adj +interagendo interagire ver +interagente interagire ver +interagenti interagire ver +interagiamo interagire ver +interagiranno interagire ver +interagire interagire ver +interagirebbe interagire ver +interagirebbero interagire ver +interagirono interagire ver +interagirvi interagire ver +interagirà interagire ver +interagisca interagire ver +interagiscano interagire ver +interagisce interagire ver +interagisci interagire ver +interagisco interagire ver +interagiscono interagire ver +interagisse interagire ver +interagissero interagire ver +interagito interagire ver +interagiva interagire ver +interagivano interagire ver +interagì interagire ver +interamente interamente adv +interamericana interamericano adj +interasse interasse nom +interassi interasse nom +interattiva interattivo adj +interattive interattivo adj +interattivi interattivo adj +interattività interattività nom +interattivo interattivo adj +interaziendale interaziendale adj +interaziendali interaziendale adj +interazione interazione nom +interazioni interazione nom +interbancari interbancario adj +interbancaria interbancario adj +interbancarie interbancario adj +interbancario interbancario adj +intercala intercalare ver +intercalando intercalare ver +intercalandosi intercalare ver +intercalano intercalare ver +intercalante intercalare ver +intercalanti intercalare ver +intercalar intercalare ver +intercalare intercalare adj +intercalari intercalare adj +intercalarsi intercalare ver +intercalata intercalare ver +intercalate intercalare ver +intercalati intercalare ver +intercalato intercalare ver +intercalava intercalare ver +intercalò intercalare ver +intercambiabile intercambiabile adj +intercambiabili intercambiabile adj +intercambiabilità intercambiabilità nom +intercapedine intercapedine nom +intercapedini intercapedine nom +interceda intercedere ver +intercedano intercedere ver +intercede intercedere ver +intercedendo intercedere ver +intercedente intercedere ver +interceder intercedere ver +intercedere intercedere ver +intercederà intercedere ver +intercedesse intercedere ver +intercedessero intercedere ver +intercedette intercedere ver +intercedettero intercedere ver +intercedeva intercedere ver +intercedi intercedere ver +interceditrice interceditrice nom +intercedono intercedere ver +interceduto intercedere ver +intercessione intercessione nom +intercessioni intercessione nom +intercessore intercessore nom +intercessori intercessore nom +intercetta intercettare ver +intercettamento intercettamento nom +intercettando intercettare ver +intercettandola intercettare ver +intercettandolo intercettare ver +intercettandone intercettare ver +intercettano intercettare ver +intercettare intercettare ver +intercettarla intercettare ver +intercettarle intercettare ver +intercettarli intercettare ver +intercettarlo intercettare ver +intercettarne intercettare ver +intercettarono intercettare ver +intercettasse intercettare ver +intercettassero intercettare ver +intercettata intercettare ver +intercettate intercettare ver +intercettati intercettare ver +intercettato intercettare ver +intercettava intercettare ver +intercettavano intercettare ver +intercettazione intercettazione nom +intercettazioni intercettazione nom +intercetterà intercettare ver +intercetti intercettare ver +intercettino intercettare ver +intercetto intercettare ver +intercettore intercettore nom +intercettori intercettore nom +intercettò intercettare ver +interclasse interclasse nom +interclassismo interclassismo nom +interclassista interclassista adj +interclassisti interclassista adj +interclusa intercludere ver +intercolunni intercolunnio nom +intercolunnio intercolunnio nom +intercomunale intercomunale adj +intercomunali intercomunale adj +intercomunicante intercomunicante adj +intercomunicanti intercomunicante adj +intercomunicazione intercomunicazione nom +intercomunitari intercomunitario adj +interconfederale interconfederale adj +interconfederali interconfederale adj +interconnessa interconnettere ver +interconnesse interconnettere ver +interconnessi interconnettere ver +interconnessione interconnessione nom +interconnessioni interconnessione nom +interconnesso interconnettere ver +interconnette interconnettere ver +interconnettere interconnettere ver +interconnettersi interconnettere ver +interconnettono interconnettono ver +intercontinentale intercontinentale adj +intercontinentali intercontinentale adj +intercorra intercorrere ver +intercorrano intercorrere ver +intercorre intercorrere ver +intercorrente intercorrere ver +intercorrenti intercorrere ver +intercorrere intercorrere ver +intercorresse intercorrere ver +intercorreva intercorrere ver +intercorrevano intercorrere ver +intercorrono intercorrere ver +intercorsa intercorrere ver +intercorse intercorrere ver +intercorsero intercorrere ver +intercorsi intercorrere ver +intercorso intercorrere ver +intercostale intercostale adj +intercostali intercostale adj +interculturale interculturale adj +interdetta interdetto adj +interdette interdetto adj +interdetti interdetto adj +interdetto interdetto adj +interdipendente interdipendente adj +interdipendenti interdipendente adj +interdipendenza interdipendenza nom +interdipendenze interdipendenza nom +interdire interdire ver +interdirla interdire ver +interdirlo interdire ver +interdirne interdire ver +interdirono interdire ver +interdirsi interdire ver +interdirà interdire ver +interdisce interdire ver +interdisciplinare interdisciplinare adj +interdisciplinari interdisciplinare adj +interdisciplinarietà interdisciplinarietà nom +interdisciplinarità interdisciplinarità nom +interdisse interdire ver +interdissero interdire ver +interdite interdire ver +interdiva interdire ver +interdizione interdizione nom +interdizioni interdizione nom +interdì interdire ver +intere intero adj +interessa interessare ver +interessamenti interessamento nom +interessamento interessamento nom +interessando interessare ver +interessandogli interessare ver +interessandomi interessare ver +interessandone interessare ver +interessandosene interessare ver +interessandosi interessare ver +interessane interessare ver +interessano interessare ver +interessante interessante adj +interessanti interessante adj +interessar interessare ver +interessarci interessare ver +interessare interessare ver +interessargli interessare ver +interessarla interessare ver +interessarle interessare ver +interessarli interessare ver +interessarlo interessare ver +interessarmene interessare ver +interessarmi interessare ver +interessarono interessare ver +interessarsene interessare ver +interessarsi interessare ver +interessarti interessare ver +interessarvi interessare ver +interessasi interessare ver +interessasse interessare ver +interessassero interessare ver +interessassi interessare ver +interessata interessare ver +interessatamente interessatamente adv +interessate interessato adj +interessatesi interessare ver +interessati interessare ver +interessato interessare ver +interessava interessare ver +interessavano interessare ver +interessavo interessare ver +interesse interesse nom +interessenze interessenza nom +interesseranno interessare ver +interesserebbe interessare ver +interesserebbero interessare ver +interesseremo interessare ver +interesserà interessare ver +interesserò interessare ver +interessi interesse nom +interessiamo interessare ver +interessino interessare ver +interesso interessare ver +interessò interessare ver +interetnica interetnico adj +interetnico interetnico adj +interezza interezza nom +interfacce interfaccia nom +interfaccia interfaccia nom +interferendo interferire ver +interferente interferire ver +interferenti interferire ver +interferenza interferenza nom +interferenze interferenza nom +interferiranno interferire ver +interferire interferire ver +interferirebbe interferire ver +interferirebbero interferire ver +interferirono interferire ver +interferirsi interferire ver +interferirvi interferire ver +interferirà interferire ver +interferisca interferire ver +interferiscano interferire ver +interferisce interferire ver +interferisco interferire ver +interferiscono interferire ver +interferisse interferire ver +interferissero interferire ver +interferiti interferire ver +interferito interferire ver +interferiva interferire ver +interferivano interferire ver +interferì interferire ver +interfoliare interfoliare ver +interfoliata interfoliare ver +interfoni interfono nom +interfono interfono nom +interglaciale interglaciale adj +interglaciali interglaciale adj +intergovernativa intergovernativo adj +intergovernative intergovernativo adj +intergovernativi intergovernativo adj +intergovernativo intergovernativo adj +intergruppi intergruppo nom +intergruppo intergruppo adj +interi intero adj +interiezione interiezione nom +interiezioni interiezione nom +interim interim nom +interina interino adj +interinale interinale adj +interinali interinale adj +interinata interinato adj +interinato interinato adj +interino interino adj +interiora interiora nom +interiore interiore adj +interiori interiore adj +interiorità interiorità nom +interiorizza interiorizzare ver +interiorizzando interiorizzare ver +interiorizzano interiorizzare ver +interiorizzante interiorizzare ver +interiorizzare interiorizzare ver +interiorizzarli interiorizzare ver +interiorizzarne interiorizzare ver +interiorizzata interiorizzare ver +interiorizzate interiorizzare ver +interiorizzati interiorizzare ver +interiorizzato interiorizzare ver +interiorizzazione interiorizzazione nom +interiorizzerà interiorizzare ver +interiorizziamo interiorizzare ver +interistituzionale interistituzionale nom +interistituzionali interistituzionale adj +interlinea interlinea nom +interlinear interlineare ver +interlineare interlineare adj +interlineari interlineare adj +interlinee interlinea nom +interlocutore interlocutore nom +interlocutori interlocutore nom +interlocutoria interlocutorio adj +interlocutorie interlocutorio adj +interlocutorio interlocutorio adj +interlocutrice interlocutore nom +interlocutrici interlocutore nom +interloquendo interloquire ver +interloquire interloquire ver +interloquirò interloquire ver +interloquisca interloquire ver +interloquisce interloquire ver +interloquisci interloquire ver +interloquiscono interloquire ver +interloquito interloquire ver +interloquiva interloquire ver +interloquì interloquire ver +interludi interludio nom +interludio interludio nom +intermedi intermedio adj +intermedia intermedio adj +intermediari intermediario nom +intermediaria intermediario adj +intermediarie intermediario adj +intermediario intermediario nom +intermediatori intermediatore nom +intermediazione intermediazione nom +intermediazioni intermediazione nom +intermedie intermedio adj +intermedio intermedio adj +intermezzi intermezzo nom +intermezzo intermezzo nom +interminabile interminabile adj +interminabili interminabile adj +interministeriale interministeriale adj +interministeriali interministeriale adj +intermittente intermittente adj +intermittenti intermittente adj +intermittenza intermittenza nom +intermittenze intermittenza nom +intermodale intermodale adj +intermodali intermodale adj +intermodalità intermodalità nom +interna interno adj +internale internare ver +internalizzare internalizzare ver +internalizzati internalizzati ver +internalizzazione internalizzazione nom +internamente internamente adv +internamenti internamento nom +internamento internamento nom +internando internare ver +internandosi internare ver +internano internare ver +internare internare ver +internarla internare ver +internarli internare ver +internarlo internare ver +internarono internare ver +internata internare ver +internate internare ver +internati internato nom +internato internare ver +internavano internare ver +internazionale internazionale adj +internazionali internazionale adj +internazionalismi internazionalismo nom +internazionalismo internazionalismo nom +internazionalista internazionalista adj +internazionaliste internazionalista adj +internazionalisti internazionalista adj +internazionalità internazionalità nom +internazionalizza internazionalizzare ver +internazionalizzando internazionalizzare ver +internazionalizzare internazionalizzare ver +internazionalizzata internazionalizzare ver +internazionalizzati internazionalizzare ver +internazionalizzato internazionalizzare ver +internazionalizzazione internazionalizzazione nom +internazionalizzò internazionalizzare ver +internazionalmente internazionalmente adv +interne interno adj +internet internet nom +interni interno adj +internista internista nom +internisti internista nom +interno interno adj +internodale internodale adj +internò internare ver +intero intero adj +interoperabili interoperabile adj +interoperabilità interoperabilità nom +interoperatività interoperatività nom +interparlamentare interparlamentare adj +interparlamentari interparlamentare adj +interpella interpellare ver +interpellami interpellare ver +interpellando interpellare ver +interpellano interpellare ver +interpellanza interpellanza nom +interpellanze interpellanza nom +interpellare interpellare ver +interpellarli interpellare ver +interpellarlo interpellare ver +interpellarmi interpellare ver +interpellarono interpellare ver +interpellata interpellare ver +interpellate interpellare ver +interpellati interpellare ver +interpellato interpellare ver +interpellavano interpellare ver +interpellerà interpellare ver +interpelliamo interpellare ver +interpello interpellare ver +interpellò interpellare ver +interpersonale interpersonale adj +interpersonali interpersonale adj +interplanetari interplanetario adj +interplanetaria interplanetario adj +interplanetarie interplanetario adj +interplanetario interplanetario adj +interpolare interpolare adj +interpolazione interpolazione nom +interpolazioni interpolazione nom +interpone interporre ver +interponendo interporre ver +interponendolo interporre ver +interponendosi interporre ver +interponendovi interporre ver +interponessero interporre ver +interponeva interporre ver +interponevano interporre ver +interponga interporre ver +interpongono interporre ver +interporre interporre ver +interporrà interporre ver +interporsi interporre ver +interporti interporre ver +interpose interporre ver +interposero interporre ver +interposizione interposizione nom +interposizioni interposizione nom +interposta interporre ver +interposte interporre ver +interposti interporre ver +interposto interporre ver +interpreta interpretare ver +interpretabile interpretabile adj +interpretabili interpretabile adj +interpretaci interpretare ver +interpretai interpretare ver +interpretala interpretare ver +interpretando interpretare ver +interpretandola interpretare ver +interpretandole interpretare ver +interpretandoli interpretare ver +interpretandolo interpretare ver +interpretandone interpretare ver +interpretandovi interpretare ver +interpretano interpretare ver +interpretante interpretare ver +interpretanti interpretare ver +interpretar interpretare ver +interpretare interpretare ver +interpretariato interpretariato nom +interpretarla interpretare ver +interpretarle interpretare ver +interpretarli interpretare ver +interpretarlo interpretare ver +interpretarne interpretare ver +interpretarono interpretare ver +interpretarsi interpretare ver +interpretarvi interpretare ver +interpretasse interpretare ver +interpretassero interpretare ver +interpretata interpretare ver +interpretate interpretare ver +interpretati interpretare ver +interpretativa interpretativo adj +interpretative interpretativo adj +interpretativi interpretativo adj +interpretativo interpretativo adj +interpretato interpretare ver +interpretava interpretare ver +interpretavano interpretare ver +interpretavo interpretare ver +interpretazione interpretazione nom +interpretazioni interpretazione nom +interprete interprete nom +interpreteranno interpretare ver +interpreterebbe interpretare ver +interpreterebbero interpretare ver +interpreterei interpretare ver +interpretereste interpretare ver +interpreterà interpretare ver +interpreterò interpretare ver +interpreti interprete nom +interpretiamo interpretare ver +interpretiate interpretare ver +interpretino interpretare ver +interpreto interpretare ver +interpretò interpretare ver +interprofessionale interprofessionale adj +interprofessionali interprofessionale adj +interprovinciale interprovinciale adj +interprovinciali interprovinciale adj +interpunzione interpunzione nom +interpunzioni interpunzione nom +interra interrare ver +interrai interrare ver +interramenti interramento nom +interramento interramento nom +interrando interrare ver +interrandoli interrare ver +interrandone interrare ver +interrandosi interrare ver +interrano interrare ver +interrante interrare ver +interrare interrare ver +interrarla interrare ver +interrarli interrare ver +interrarlo interrare ver +interrarono interrare ver +interrarsi interrare ver +interrata interrare ver +interrate interrare ver +interrati interrare ver +interrato interrare ver +interrava interrare ver +interregionale interregionale adj +interregionali interregionale adj +interregni interregno nom +interregno interregno nom +interrelata interrelato adj +interrelate interrelato adj +interrelati interrelato adj +interrelato interrelato adj +interrelazione interrelazione nom +interrelazioni interrelazione nom +interrerà interrare ver +interrimenti interrimento nom +interrimento interrimento nom +interro interrare ver +interroga interrogare ver +interrogaci interrogare ver +interrogai interrogare ver +interrogalo interrogare ver +interrogando interrogare ver +interrogandola interrogare ver +interrogandole interrogare ver +interrogandoli interrogare ver +interrogandolo interrogare ver +interrogandosi interrogare ver +interrogano interrogare ver +interrogante interrogante adj +interroganti interrogante nom +interrogarci interrogare ver +interrogare interrogare ver +interrogarla interrogare ver +interrogarle interrogare ver +interrogarli interrogare ver +interrogarlo interrogare ver +interrogarmi interrogare ver +interrogarne interrogare ver +interrogarono interrogare ver +interrogarsi interrogare ver +interrogarti interrogare ver +interrogarvi interrogare ver +interrogasse interrogare ver +interrogassero interrogare ver +interrogata interrogare ver +interrogate interrogare ver +interrogati interrogare ver +interrogativa interrogativo adj +interrogative interrogativo adj +interrogativi interrogativo nom +interrogativo interrogativo adj +interrogato interrogare ver +interrogatore interrogatore adj +interrogatori interrogatore|interrogatorio nom +interrogatoria interrogatorio adj +interrogatorie interrogatorio adj +interrogatorio interrogatorio adj +interrogava interrogare ver +interrogavano interrogare ver +interrogavo interrogare ver +interrogazione interrogazione nom +interrogazioni interrogazione nom +interrogheranno interrogare ver +interrogherei interrogare ver +interrogherà interrogare ver +interroghi interrogare ver +interroghiamo interrogare ver +interroghino interrogare ver +interrogo interrogare ver +interrogò interrogare ver +interrompa interrompere ver +interrompano interrompere ver +interrompe interrompere ver +interrompendo interrompere ver +interrompendola interrompere ver +interrompendoli interrompere ver +interrompendolo interrompere ver +interrompendone interrompere ver +interrompendosi interrompere ver +interrompente interrompere ver +interrompenti interrompere ver +interromper interrompere ver +interromperanno interrompere ver +interrompere interrompere ver +interromperebbe interrompere ver +interromperebbero interrompere ver +interromperei interrompere ver +interromperla interrompere ver +interromperle interrompere ver +interromperli interrompere ver +interromperlo interrompere ver +interrompermi interrompere ver +interromperne interrompere ver +interrompersi interrompere ver +interrompervi interrompere ver +interromperà interrompere ver +interromperò interrompere ver +interrompesse interrompere ver +interrompessero interrompere ver +interrompete interrompere ver +interrompeva interrompere ver +interrompevano interrompere ver +interrompevo interrompere ver +interrompi interrompere ver +interrompiamo interrompere ver +interrompiamola interrompere ver +interrompila interrompere ver +interrompo interrompere ver +interrompono interrompere ver +interrotta interrompere ver +interrotte interrompere ver +interrotti interrompere ver +interrotto interrompere ver +interruppe interrompere ver +interruppero interrompere ver +interruppi interrompere ver +interruttore interruttore nom +interruttori interruttore nom +interruzione interruzione nom +interruzioni interruzione nom +interrò interrare ver +interscambi interscambio nom +interscambio interscambio nom +interseca intersecare ver +intersecando intersecare ver +intersecandola intersecare ver +intersecandosi intersecare ver +intersecano intersecare ver +intersecante intersecare ver +intersecanti intersecare ver +intersecare intersecare ver +intersecarla intersecare ver +intersecarle intersecare ver +intersecarlo intersecare ver +intersecarono intersecare ver +intersecarsi intersecare ver +intersecasse intersecare ver +intersecassero intersecare ver +intersecata intersecare ver +intersecate intersecare ver +intersecati intersecare ver +intersecato intersecare ver +intersecava intersecare ver +intersecavano intersecare ver +intersecazione intersecazione nom +intersecheranno intersecare ver +intersecherebbe intersecare ver +intersecherà intersecare ver +intersechi intersecare ver +intersechiamo intersecare ver +intersechino intersecare ver +intersecò intersecare ver +interservizi interservizi adj +intersettoriale intersettoriale adj +intersettoriali intersettoriale adj +intersezione intersezione nom +intersezioni intersezione nom +intersindacale intersindacale adj +interspaziale interspaziale adj +interstatale interstatale adj +interstazionale interstazionale adj +interstazionali interstazionale adj +interstellare interstellare adj +interstellari interstellare adj +interstizi interstizio nom +interstiziale interstiziale adj +interstiziali interstiziale adj +interstizio interstizio nom +intertempi intertempo nom +intertempo intertempo nom +intertropicale intertropicale adj +intertropicali intertropicale adj +interurbana interurbano adj +interurbane interurbano adj +interurbani interurbano adj +interurbano interurbano adj +intervalla intervallare ver +intervallando intervallare ver +intervallandola intervallare ver +intervallandole intervallare ver +intervallandoli intervallare ver +intervallandolo intervallare ver +intervallandosi intervallare ver +intervallano intervallare ver +intervallare intervallare ver +intervallarsi intervallare ver +intervallata intervallare ver +intervallate intervallare ver +intervallati intervallare ver +intervallato intervallare ver +intervallava intervallare ver +intervallavano intervallare ver +intervalli intervallo nom +intervallino intervallare ver +intervallo intervallo nom +intervallò intervallare ver +intervenendo intervenire ver +intervenendovi intervenire ver +intervenente intervenire ver +intervenga intervenire ver +intervengano intervenire ver +intervengo intervenire ver +intervengono intervenire ver +interveniamo intervenire ver +interveniate intervenire ver +intervenir intervenire ver +intervenirci intervenire ver +intervenire intervenire ver +intervenirvi intervenire ver +intervenisse intervenire ver +intervenissero intervenire ver +intervenissi intervenire ver +intervenissimo intervenire ver +intervenite intervenire ver +interveniva intervenire ver +intervenivano intervenire ver +intervenivi intervenire ver +intervenivo intervenire ver +intervenne intervenire ver +intervennero intervenire ver +intervenni intervenire ver +interventi intervento nom +interventismo interventismo nom +interventista interventista adj +interventiste interventista adj +interventisti interventista adj +interventistica interventistico adj +intervento intervento nom +intervenuta intervenire ver +intervenute intervenire ver +intervenuti intervenire ver +intervenuto intervenire ver +interverrai intervenire ver +interverranno intervenire ver +interverrebbe intervenire ver +interverrebbero intervenire ver +interverrei intervenire ver +interverremo intervenire ver +interverresti intervenire ver +interverrete intervenire ver +interverrà intervenire ver +interverrò intervenire ver +interviene intervenire ver +intervieni intervenire ver +intervisione intervisione nom +intervista intervista nom +intervistando intervistare ver +intervistandolo intervistare ver +intervistandone intervistare ver +intervistano intervistare ver +intervistare intervistare ver +intervistarla intervistare ver +intervistarli intervistare ver +intervistarlo intervistare ver +intervistarono intervistare ver +intervistarti intervistare ver +intervistata intervistare ver +intervistate intervistare ver +intervistati intervistare ver +intervistato intervistare ver +intervistatore intervistatore nom +intervistatori intervistatore nom +intervistatrice intervistatore nom +intervistava intervistare ver +intervistavano intervistare ver +interviste intervista nom +intervisterà intervistare ver +intervisti intervistare ver +intervisto intervistare ver +intervistò intervistare ver +interzati interzato nom +interzato interzato nom +interzonale interzonale adj +interzonali interzonale adj +intesa intendere ver +intese intesa nom +intesero intendere ver +intesi inteso adj +inteso intendere ver +intesse intessere ver +intessendo intessere ver +intesseranno intessere ver +intessere intessere ver +intesserà intessere ver +intessesse intessere ver +intesseva intessere ver +intessevano intessere ver +intessono intessere ver +intessuta intessere ver +intessute intessere ver +intessuti intessere ver +intessuto intessere ver +intesta intestare ver +intestando intestare ver +intestandogli intestare ver +intestandola intestare ver +intestano intestare ver +intestardendo intestardirsi ver +intestardire intestardirsi ver +intestardirsi intestardirsi ver +intestardirti intestardirsi ver +intestardirvi intestardirsi ver +intestardisce intestardirsi ver +intestardisci intestardirsi ver +intestardisco intestardirsi ver +intestarditi intestardirsi ver +intestardito intestardirsi ver +intestardiva intestardirsi ver +intestardì intestardirsi ver +intestare intestare ver +intestargli intestare ver +intestarlo intestare ver +intestarono intestare ver +intestarsi intestare ver +intestata intestare ver +intestatari intestatario nom +intestataria intestatario nom +intestatarie intestatario nom +intestatario intestatario nom +intestate intestare ver +intestati intestare ver +intestato intestare ver +intestazione intestazione nom +intestazioni intestazione nom +intesti intestare ver +intestina intestino adj +intestinale intestinale adj +intestinali intestinale adj +intestine intestino adj +intestini intestino nom +intestino intestino adj +intesto intestare ver +intestò intestare ver +intiepidendo intiepidire ver +intiepidire intiepidire ver +intiepidirsi intiepidire ver +intiepidisce intiepidire ver +intiepidita intiepidire ver +intiepiditi intiepidire ver +intiepidito intiepidire ver +intiepidì intiepidire ver +intiera intiero adj +intiere intiero adj +intieri intiero adj +intiero intiero adj +intima intimo adj +intimale intimare ver +intimamente intimamente adv +intimando intimare ver +intimandogli intimare ver +intimandole intimare ver +intimandoli intimare ver +intimandolo intimare ver +intimandone intimare ver +intimano intimare ver +intimante intimare ver +intimar intimare ver +intimarci intimare ver +intimare intimare ver +intimargli intimare ver +intimarmi intimare ver +intimarono intimare ver +intimarti intimare ver +intimassero intimare ver +intimata intimare ver +intimate intimare ver +intimati intimare ver +intimato intimare ver +intimava intimare ver +intimavano intimare ver +intimazione intimazione nom +intimazioni intimazione nom +intime intimo adj +intimerà intimare ver +intimi intimo adj +intimidatori intimidatorio adj +intimidatoria intimidatorio adj +intimidatorie intimidatorio adj +intimidatorio intimidatorio adj +intimidazione intimidazione nom +intimidazioni intimidazione nom +intimidendo intimidire ver +intimidendoli intimidire ver +intimidenti intimidire ver +intimidirci intimidire ver +intimidire intimidire ver +intimidirli intimidire ver +intimidirlo intimidire ver +intimidirmi intimidire ver +intimidisca intimidire ver +intimidisce intimidire ver +intimidiscono intimidire ver +intimidisse intimidire ver +intimidita intimidire ver +intimidite intimidire ver +intimiditi intimidire ver +intimidito intimidire ver +intimidiva intimidire ver +intimidivano intimidire ver +intimidì intimidire ver +intimismo intimismo nom +intimista intimista adj +intimiste intimista adj +intimisti intimista adj +intimistica intimistico adj +intimistiche intimistico adj +intimistici intimistico adj +intimistico intimistico adj +intimità intimità nom +intimo intimo adj +intimorendo intimorire ver +intimorente intimorire ver +intimorire intimorire ver +intimorirla intimorire ver +intimorirli intimorire ver +intimorirlo intimorire ver +intimorirono intimorire ver +intimorisca intimorire ver +intimorisce intimorire ver +intimoriscono intimorire ver +intimorita intimorire ver +intimorite intimorire ver +intimoriti intimorire ver +intimorito intimorire ver +intimoriva intimorire ver +intimorivano intimorire ver +intimorì intimorire ver +intimò intimare ver +intinge intingere ver +intingendo intingere ver +intingendola intingere ver +intingendolo intingere ver +intingendovi intingere ver +intingere intingere ver +intingerla intingere ver +intingerli intingere ver +intingervi intingere ver +intingerò intingere ver +intingevano intingere ver +intingo intingere ver +intingoli intingolo nom +intingolo intingolo nom +intingono intingere ver +intinse intingere ver +intinta intingere ver +intinte intingere ver +intinti intingere ver +intinto intingere ver +intitola intitolare ver +intitolai intitolare ver +intitolammo intitolare ver +intitolando intitolare ver +intitolandogli intitolare ver +intitolandola intitolare ver +intitolandole intitolare ver +intitolandoli intitolare ver +intitolandolo intitolare ver +intitolandosi intitolare ver +intitolano intitolare ver +intitolare intitolare ver +intitolargli intitolare ver +intitolarla intitolare ver +intitolarle intitolare ver +intitolarlo intitolare ver +intitolarono intitolare ver +intitolarsi intitolare ver +intitolasse intitolare ver +intitolassero intitolare ver +intitolassi intitolare ver +intitolata intitolare ver +intitolate intitolare ver +intitolategli intitolare ver +intitolati intitolare ver +intitolato intitolare ver +intitolava intitolare ver +intitolavano intitolare ver +intitolazione intitolazione nom +intitolazioni intitolazione nom +intitoleranno intitolare ver +intitolerebbe intitolare ver +intitolerei intitolare ver +intitolerà intitolare ver +intitoli intitolare ver +intitoliamo intitolare ver +intitolo intitolare ver +intitolò intitolare ver +intoccabile intoccabile adj +intoccabili intoccabile adj +intollerabile intollerabile adj +intollerabili intollerabile adj +intollerante intollerante adj +intolleranti intollerante adj +intolleranza intolleranza nom +intolleranze intolleranza nom +intona intonare ver +intonaca intonacare ver +intonacando intonacare ver +intonacare intonacare ver +intonacata intonacare ver +intonacate intonacare ver +intonacati intonacare ver +intonacato intonacare ver +intonacatura intonacatura nom +intonacature intonacatura nom +intonachi intonaco nom +intonachino intonacare ver +intonaci intonaco nom +intonaco intonaco nom +intonacò intonacare ver +intonando intonare ver +intonandola intonare ver +intonandone intonare ver +intonandosi intonare ver +intonano intonare ver +intonar intonare ver +intonare intonare ver +intonarlo intonare ver +intonarne intonare ver +intonarono intonare ver +intonarsi intonare ver +intonasse intonare ver +intonata intonare ver +intonate intonare ver +intonati intonare ver +intonato intonare ver +intonava intonare ver +intonavano intonare ver +intonazione intonazione nom +intonazioni intonazione nom +intonerai intonare ver +intonerà intonare ver +intoni intonare ver +intonino intonare ver +intono intonare ver +intonsa intonso adj +intonse intonso adj +intonsi intonso adj +intonso intonso adj +intontimento intontimento nom +intontire intontire ver +intontisce intontire ver +intontita intontire ver +intontiti intontire ver +intontito intontire ver +intonò intonare ver +intoppa intoppare ver +intoppi intoppo nom +intoppo intoppo nom +intorbida intorbidare ver +intorbidamenti intorbidamento nom +intorbidamento intorbidamento nom +intorbidando intorbidare ver +intorbidano intorbidare ver +intorbidare intorbidare ver +intorbidarsi intorbidare ver +intorbidato intorbidare ver +intorbidi intorbidare ver +intorno intorno adv_sup +intorpidimento intorpidimento nom +intorpidire intorpidire ver +intorpidisce intorpidire ver +intorpidiscono intorpidire ver +intorpidita intorpidire ver +intorpiditi intorpidire ver +intorpidito intorpidire ver +intorpidivano intorpidire ver +intorpidì intorpidire ver +intorto intorto adj +intossica intossicare ver +intossicando intossicare ver +intossicandone intossicare ver +intossicandosi intossicare ver +intossicano intossicare ver +intossicante intossicare ver +intossicanti intossicare ver +intossicare intossicare ver +intossicarono intossicare ver +intossicarsi intossicare ver +intossicata intossicare ver +intossicate intossicare ver +intossicati intossicare ver +intossicato intossicare ver +intossicazione intossicazione nom +intossicazioni intossicazione nom +intossicò intossicare ver +intracerebrale intracerebrale adj +intracerebrali intracerebrale adj +intracomunitari intracomunitario adj +intracomunitaria intracomunitario adj +intracomunitarie intracomunitario adj +intracomunitario intracomunitario adj +intradermica intradermico adj +intradermiche intradermico adj +intradermici intradermico adj +intradermico intradermico adj +intradossi intradosso nom +intradosso intradosso nom +intraducibile intraducibile adj +intraducibili intraducibile adj +intralci intralcio nom +intralciano intralciare ver +intralcio intralcio nom +intrallazza intrallazzare ver +intrallazzare intrallazzare ver +intrallazzatore intrallazzatore nom +intrallazzi intrallazzo nom +intrallazzo intrallazzo nom +intramezzare intramezzare ver +intramezzata intramezzare ver +intramezzate intramezzare ver +intramezzati intramezzare ver +intramezzato intramezzare ver +intramezzi intramezzare ver +intramezzo intramezzare ver +intramontabile intramontabile adj +intramontabili intramontabile adj +intramuscolare intramuscolare adj +intramuscolari intramuscolare adj +intransigente intransigente adj +intransigenti intransigente adj +intransigenza intransigenza nom +intransigenze intransigenza nom +intransitabile intransitabile adj +intransitabili intransitabile adj +intransitiva intransitivo adj +intransitive intransitivo adj +intransitivi intransitivo adj +intransitivo intransitivo adj +intraoperatorio intraoperatorio adj +intrappola intrappolare ver +intrappolando intrappolare ver +intrappolandola intrappolare ver +intrappolandole intrappolare ver +intrappolandoli intrappolare ver +intrappolandolo intrappolare ver +intrappolandone intrappolare ver +intrappolandovi intrappolare ver +intrappolano intrappolare ver +intrappolante intrappolare ver +intrappolanti intrappolare ver +intrappolare intrappolare ver +intrappolarla intrappolare ver +intrappolarle intrappolare ver +intrappolarli intrappolare ver +intrappolarlo intrappolare ver +intrappolarono intrappolare ver +intrappolarsi intrappolare ver +intrappolarvi intrappolare ver +intrappolata intrappolare ver +intrappolate intrappolare ver +intrappolati intrappolare ver +intrappolato intrappolare ver +intrappolava intrappolare ver +intrappolavano intrappolare ver +intrappoleranno intrappolare ver +intrappolerà intrappolare ver +intrappoli intrappolare ver +intrappolò intrappolare ver +intraprenda intraprendere ver +intraprendano intraprendere ver +intraprende intraprendere ver +intraprendemmo intraprendere ver +intraprendendo intraprendere ver +intraprendendola intraprendere ver +intraprendente intraprendente adj +intraprendenti intraprendente adj +intraprendenza intraprendenza nom +intraprendenze intraprendenza nom +intraprender intraprendere ver +intraprenderanno intraprendere ver +intraprendere intraprendere ver +intraprenderla intraprendere ver +intraprenderlo intraprendere ver +intraprenderne intraprendere ver +intraprendervi intraprendere ver +intraprenderà intraprendere ver +intraprendesse intraprendere ver +intraprendessero intraprendere ver +intraprendete intraprendere ver +intraprendeva intraprendere ver +intraprendevano intraprendere ver +intraprendi intraprendere ver +intraprendiamo intraprendere ver +intraprendo intraprendere ver +intraprendono intraprendere ver +intrapresa intraprendere ver +intraprese intraprendere ver +intrapresero intraprendere ver +intrapresi intraprendere ver +intrapreso intraprendere ver +intraregionale intraregionale adj +intrasferibile intrasferibile adj +intrattabile intrattabile adj +intrattabili intrattabile adj +intrattenendo intrattenere ver +intrattenendoli intrattenere ver +intrattenendolo intrattenere ver +intrattenendosi intrattenere ver +intrattenente intrattenere ver +intrattener intrattenere ver +intrattenerci intrattenere ver +intrattenere intrattenere ver +intrattenerla intrattenere ver +intrattenerle intrattenere ver +intrattenerli intrattenere ver +intrattenerlo intrattenere ver +intrattenersi intrattenere ver +intrattenervi intrattenere ver +intrattenesse intrattenere ver +intrattenessero intrattenere ver +intratteneva intrattenere ver +intrattenevano intrattenere ver +intrattenga intrattenere ver +intrattengano intrattenere ver +intrattengo intrattenere ver +intrattengono intrattenere ver +intrattenimenti intrattenimento nom +intrattenimento intrattenimento nom +intrattenne intrattenere ver +intrattennero intrattenere ver +intrattenuta intrattenere ver +intrattenute intrattenere ver +intrattenuti intrattenere ver +intrattenuto intrattenere ver +intratterranno intrattenere ver +intratterrà intrattenere ver +intrattiene intrattenere ver +intraveda intravedere ver +intravedano intravedere ver +intravede intravedere ver +intravedendo intravedere ver +intravedendolo intravedere ver +intravedendone intravedere ver +intravedendovi intravedere ver +intraveder intravedere ver +intravedere intravedere ver +intravederla intravedere ver +intravederlo intravedere ver +intravederne intravedere ver +intravedersi intravedere ver +intravedervi intravedere ver +intravedesse intravedere ver +intravedete intravedere ver +intravedeva intravedere ver +intravedevano intravedere ver +intravedevo intravedere ver +intravediamo intravedere ver +intravedo intravedere ver +intravedono intravedere ver +intravide intravedere ver +intravidero intravedere ver +intravidi intravedere ver +intravista intravedere ver +intraviste intravedere ver +intravisti intravedere ver +intravisto intravedere ver +intravvede intravvedere ver +intravvedere intravvedere ver +intrecceranno intrecciare ver +intreccerà intrecciare ver +intrecci intreccio nom +intreccia intrecciare ver +intrecciamo intrecciare ver +intrecciando intrecciare ver +intrecciandola intrecciare ver +intrecciandole intrecciare ver +intrecciandoli intrecciare ver +intrecciandosi intrecciare ver +intrecciano intrecciare ver +intreccianti intrecciare ver +intrecciar intrecciare ver +intrecciare intrecciare ver +intrecciarla intrecciare ver +intrecciarle intrecciare ver +intrecciarlo intrecciare ver +intrecciarono intrecciare ver +intrecciarsi intrecciare ver +intrecciata intrecciare ver +intrecciate intrecciare ver +intrecciati intrecciare ver +intrecciato intrecciare ver +intrecciatura intrecciatura nom +intrecciava intrecciare ver +intrecciavano intrecciare ver +intreccino intrecciare ver +intreccio intreccio nom +intrecciò intrecciare ver +intrepida intrepido adj +intrepide intrepido adj +intrepidezza intrepidezza nom +intrepidi intrepido adj +intrepido intrepido adj +intrica intricare ver +intricarsi intricare ver +intricata intricato adj +intricate intricato adj +intricati intricato adj +intricato intricato adj +intrichi intrico nom +intrico intrico nom +intride intridere ver +intridere intridere ver +intriderla intridere ver +intridono intridere ver +intriga intrigare ver +intrigando intrigare ver +intrigano intrigare ver +intrigante intrigante adj +intriganti intrigante adj +intrigare intrigare ver +intrigarsi intrigare ver +intrigata intrigare ver +intrigati intrigare ver +intrigato intrigare ver +intrigava intrigare ver +intrighi intrigo nom +intrigo intrigo nom +intrigò intrigare ver +intrinseca intrinseco adj +intrinsecamente intrinsecamente adv +intrinseche intrinseco adj +intrinsechi intrinseco adj +intrinseci intrinseco adj +intrinseco intrinseco adj +intrisa intridere ver +intrise intriso adj +intrisi intriso adj +intriso intridere ver +intristire intristire ver +intristirono intristire ver +intristirsi intristire ver +intristisce intristire ver +intristiscono intristire ver +intristita intristire ver +intristite intristire ver +intristiti intristire ver +intristito intristire ver +intristì intristire ver +introdotta introdurre ver +introdotte introdurre ver +introdotti introdurre ver +introdotto introdurre ver +introduca introdurre ver +introducano introdurre ver +introduce introdurre ver +introducendo introdurre ver +introducendola introdurre ver +introducendole introdurre ver +introducendoli introdurre ver +introducendolo introdurre ver +introducendone introdurre ver +introducendosi introdurre ver +introducendovi introdurre ver +introducente introdurre ver +introducesse introdurre ver +introducessero introdurre ver +introducessimo introdurre ver +introducete introdurre ver +introduceva introdurre ver +introducevano introdurre ver +introduci introdurre ver +introduciamo introdurre ver +introducibile introducibile adj +introduco introdurre ver +introducono introdurre ver +introdur introdurre ver +introdurci introdurre ver +introdurla introdurre ver +introdurle introdurre ver +introdurli introdurre ver +introdurlo introdurre ver +introdurmi introdurre ver +introdurne introdurre ver +introdurrai introdurre ver +introdurranno introdurre ver +introdurre introdurre ver +introdurrebbe introdurre ver +introdurrebbero introdurre ver +introdurrei introdurre ver +introdurremo introdurre ver +introdurrà introdurre ver +introdurrò introdurre ver +introdursi introdurre ver +introdurvi introdurre ver +introdurvisi introdurre ver +introdusse introdurre ver +introdussero introdurre ver +introdussi introdurre ver +introduttiva introduttivo adj +introduttive introduttivo adj +introduttivi introduttivo adj +introduttivo introduttivo adj +introduttore introduttore nom +introduttori introduttore nom +introduzione introduzione nom +introduzioni introduzione nom +introflessione introflessione nom +introflessioni introflessione nom +introflette introflettersi ver +introflettente introflettersi ver +introflettenti introflettersi ver +introflettono introflettersi ver +introiezione introiezione nom +introiezioni introiezione nom +introita introitare ver +introitale introitare ver +introitano introitare ver +introitare introitare ver +introitate introitare ver +introitato introitare ver +introiti introito nom +introito introito nom +intromessa intromettere ver +intromessi intromettere ver +intromesso intromettere ver +intrometta intromettere ver +intromettano intromettere ver +intromette intromettere ver +intromettendo intromettere ver +intromettendosi intromettere ver +intromettere intromettere ver +intromettermi intromettere ver +intromettersi intromettere ver +intrometterti intromettere ver +intrometterà intromettere ver +intromettesse intromettere ver +intrometteva intromettere ver +intromettevano intromettere ver +intrometto intromettere ver +intromettono intromettere ver +intromise intromettere ver +intromisero intromettere ver +intromissione intromissione nom +intromissioni intromissione nom +introna intronare ver +intronata intronare ver +intronati intronare ver +intronato intronare ver +introni intronare ver +introno intronare ver +introspettiva introspettivo adj +introspettive introspettivo adj +introspettivi introspettivo adj +introspettivo introspettivo adj +introspezione introspezione nom +introspezioni introspezione nom +introvabile introvabile adj +introvabili introvabile adj +introversa introverso adj +introverse introverso adj +introversi introverso adj +introversione introversione nom +introverso introverso adj +intruda intrudere ver +intrude intrudere ver +intruder intrudere ver +intrudere intrudere ver +intrudersi intrudere ver +intrufola intrufolare ver +intrufolandosi intrufolare ver +intrufolano intrufolare ver +intrufolarci intrufolare ver +intrufolare intrufolare ver +intrufolarmi intrufolare ver +intrufolarsi intrufolare ver +intrufolata intrufolare ver +intrufolati intrufolare ver +intrufolato intrufolare ver +intrufolava intrufolare ver +intrufolavano intrufolare ver +intrufolerà intrufolare ver +intrufolo intrufolare ver +intrufolò intrufolare ver +intrugli intruglio nom +intruglio intruglio nom +intrusa intruso adj +intruse intruso adj +intrusi intruso nom +intrusione intrusione nom +intrusioni intrusione nom +intrusiva intrusivo adj +intrusive intrusivo adj +intrusivi intrusivo adj +intrusivo intrusivo adj +intruso intrudere ver +intuendo intuire ver +intuendone intuire ver +intuiamo intuire ver +intuibile intuibile adj +intuibili intuibile adj +intuibilità intuibilità nom +intuir intuire ver +intuiranno intuire ver +intuire intuire ver +intuiremo intuire ver +intuirla intuire ver +intuirlo intuire ver +intuirne intuire ver +intuirono intuire ver +intuirsi intuire ver +intuirà intuire ver +intuisca intuire ver +intuisce intuire ver +intuisci intuire ver +intuisco intuire ver +intuiscono intuire ver +intuisse intuire ver +intuissi intuire ver +intuita intuire ver +intuite intuire ver +intuiti intuire ver +intuitiva intuitivo adj +intuitive intuitivo adj +intuitivi intuitivo adj +intuitività intuitività nom +intuitivo intuitivo adj +intuito intuire ver +intuiva intuire ver +intuivano intuire ver +intuivi intuire ver +intuizione intuizione nom +intuizioni intuizione nom +intuizionismo intuizionismo nom +intuizionista intuizionista nom +intuizioniste intuizionista nom +intuizionisti intuizionista nom +intumescente intumescente adj +intumescenti intumescente adj +intumescenza intumescenza nom +intumescenze intumescenza nom +inturgidimento inturgidimento nom +inturgidire inturgidire ver +inturgidisce inturgidire ver +inturgidiscono inturgidire ver +intuì intuire ver +inulti inulto adj +inuma inumare ver +inumane inumare ver +inumani inumano nom +inumanità inumanità nom +inumano inumano nom +inumare inumare ver +inumarle inumare ver +inumarlo inumare ver +inumarvi inumare ver +inumata inumare ver +inumate inumare ver +inumati inumare ver +inumato inumare ver +inumavano inumare ver +inumazione inumazione nom +inumazioni inumazione nom +inumidendo inumidire ver +inumidimento inumidimento nom +inumidire inumidire ver +inumidirla inumidire ver +inumidirlo inumidire ver +inumidisce inumidire ver +inumidisci inumidire ver +inumidiscono inumidire ver +inumidita inumidire ver +inumidite inumidire ver +inumiditi inumidire ver +inumidito inumidire ver +inumidiva inumidire ver +inumidì inumidire ver +inumò inumare ver +inurba inurbarsi ver +inurbamento inurbamento nom +inurbani inurbano adj +inurbano inurbano adj +inurbarono inurbarsi ver +inurbarsi inurbarsi ver +inurbata inurbarsi ver +inurbate inurbarsi ver +inurbati inurbarsi ver +inurbato inurbarsi ver +inurbò inurbarsi ver +inusate inusato adj +inusitata inusitato adj +inusitatamente inusitatamente adv +inusitate inusitato adj +inusitati inusitato adj +inusitato inusitato adj +inutile inutile adj +inutili inutile adj +inutilità inutilità nom +inutilizzabile inutilizzabile adj +inutilizzabili inutilizzabile adj +inutilizzata inutilizzare ver +inutilizzate inutilizzato adj +inutilizzati inutilizzato adj +inutilizzato inutilizzare ver +inutilizzo inutilizzare ver +inutilmente inutilmente adv +invada invadere ver +invadano invadere ver +invade invadere ver +invadendo invadere ver +invadendola invadere ver +invadendole invadere ver +invadendoli invadere ver +invadendolo invadere ver +invadendone invadere ver +invadente invadente adj +invadenti invadente adj +invadenza invadenza nom +invadenze invadenza nom +invader invadere ver +invaderanno invadere ver +invadere invadere ver +invaderebbe invadere ver +invaderebbero invadere ver +invaderla invadere ver +invaderle invadere ver +invaderli invadere ver +invaderlo invadere ver +invadermi invadere ver +invaderne invadere ver +invaderà invadere ver +invadesse invadere ver +invadessero invadere ver +invadeva invadere ver +invadevano invadere ver +invado invadere ver +invadono invadere ver +invaghendo invaghire ver +invaghendosi invaghire ver +invaghiranno invaghire ver +invaghire invaghire ver +invaghirono invaghire ver +invaghirsene invaghire ver +invaghirsi invaghire ver +invaghirà invaghire ver +invaghisce invaghire ver +invaghiscono invaghire ver +invaghisse invaghire ver +invaghita invaghire ver +invaghite invaghire ver +invaghiti invaghire ver +invaghito invaghire ver +invaghì invaghire ver +invalicabile invalicabile adj +invalicabili invalicabile adj +invalida invalido adj +invalidando invalidare ver +invalidandoli invalidare ver +invalidano invalidare ver +invalidante invalidare ver +invalidanti invalidare ver +invalidare invalidare ver +invalidarla invalidare ver +invalidarlo invalidare ver +invalidarne invalidare ver +invalidarono invalidare ver +invalidata invalidare ver +invalidate invalidare ver +invalidati invalidare ver +invalidato invalidare ver +invalidava invalidare ver +invalidazione invalidazione nom +invalidazioni invalidazione nom +invalide invalido adj +invaliderebbe invalidare ver +invaliderebbero invalidare ver +invalidi invalido adj +invalidità invalidità nom +invalido invalido adj +invalidò invalidare ver +invalsa invalere ver +invalse invalso adj +invalsi invalso adj +invalso invalere ver +invano invano adv +invariabile invariabile adj +invariabili invariabile adj +invariabilità invariabilità nom +invariante invariante adj +invarianti invariante adj +invariantiva invariantivo adj +invariata invariato adj +invariate invariato adj +invariati invariato adj +invariato invariato adj +invasa invadere ver +invasamento invasamento nom +invasano invasare ver +invasare invasare ver +invasata invasare ver +invasate invasato adj +invasati invasato adj +invasato invasato adj +invasatura invasatura nom +invasature invasatura nom +invase invaso adj +invasero invadere ver +invasi invaso nom +invasione invasione nom +invasioni invasione nom +invaso invadere ver +invasore invasore nom +invasori invasore nom +invecchi invecchiare ver +invecchia invecchiare ver +invecchiamenti invecchiamento nom +invecchiamento invecchiamento nom +invecchiando invecchiare ver +invecchiano invecchiare ver +invecchiante invecchiare ver +invecchiare invecchiare ver +invecchiarono invecchiare ver +invecchiarsi invecchiare ver +invecchiasse invecchiare ver +invecchiassero invecchiare ver +invecchiata invecchiare ver +invecchiate invecchiare ver +invecchiati invecchiare ver +invecchiato invecchiare ver +invecchiava invecchiare ver +invecchiavano invecchiare ver +invecchierai invecchiare ver +invecchieranno invecchiare ver +invecchierebbe invecchiare ver +invecchierà invecchiare ver +invecchierò invecchiare ver +invecchino invecchiare ver +invecchio invecchiare ver +invecchiò invecchiare ver +invece invece adv_sup +inveendo inveire ver +inveire inveire ver +inveirono inveire ver +inveisce inveire ver +inveiscono inveire ver +inveito inveire ver +inveiva inveire ver +invelenire invelenire ver +invendibile invendibile adj +invendibili invendibile adj +invenduta invenduto adj +invendute invenduto adj +invenduti invenduto adj +invenduto invenduto adj +inventa inventare ver +inventai inventare ver +inventammo inventare ver +inventando inventare ver +inventandole inventare ver +inventandoli inventare ver +inventandomi inventare ver +inventandone inventare ver +inventandosela inventare ver +inventandoselo inventare ver +inventandosi inventare ver +inventandoti inventare ver +inventandovi inventare ver +inventano inventare ver +inventante inventare ver +inventar inventare ver +inventarcele inventare ver +inventarci inventare ver +inventare inventare ver +inventargli inventare ver +inventari inventario nom +inventaria inventariare ver +inventariale inventariare ver +inventariali inventariare ver +inventariando inventariare ver +inventariare inventariare ver +inventariarono inventariare ver +inventariata inventariare ver +inventariate inventariare ver +inventariati inventariare ver +inventariato inventariare ver +inventariava inventariare ver +inventariazione inventariazione nom +inventario inventario nom +inventariò inventariare ver +inventarla inventare ver +inventarle inventare ver +inventarli inventare ver +inventarlo inventare ver +inventarmela inventare ver +inventarmeli inventare ver +inventarmi inventare ver +inventarne inventare ver +inventarono inventare ver +inventarsela inventare ver +inventarseli inventare ver +inventarselo inventare ver +inventarsene inventare ver +inventarsi inventare ver +inventarti inventare ver +inventarvi inventare ver +inventasse inventare ver +inventassero inventare ver +inventassi inventare ver +inventassimo inventare ver +inventata inventare ver +inventate inventare ver +inventatene inventare ver +inventati inventare ver +inventato inventare ver +inventava inventare ver +inventavano inventare ver +inventerai inventare ver +inventeranno inventare ver +inventerebbe inventare ver +inventerebbero inventare ver +inventerei inventare ver +inventeremo inventare ver +inventerà inventare ver +inventerò inventare ver +inventi inventare ver +inventiamo inventare ver +inventiamoci inventare ver +inventino inventare ver +inventiva inventiva nom +inventive inventivo adj +inventivi inventivo adj +inventivo inventivo adj +invento inventare ver +inventore inventore nom +inventori inventore nom +inventrice inventore nom +inventò inventare ver +invenzione invenzione nom +invenzioni invenzione nom +inverdimento inverdimento nom +inverdire inverdire ver +inverdita inverdire ver +inverdite inverdire ver +invereconda inverecondo adj +invereconde inverecondo adj +inverecondia inverecondia nom +inverecondo inverecondo adj +invernale invernale adj +invernali invernale adj +invernata invernata nom +invernate invernata nom +inverni inverno nom +invernici inverniciare ver +inverno inverno nom +invero invero adv +inverosimiglianza inverosimiglianza nom +inverosimiglianze inverosimiglianza nom +inverosimile inverosimile adj +inverosimili inverosimile adj +inversa inverso adj +inverse inverso adj +inversi inverso adj +inversione inversione nom +inversioni inversione nom +inverso inverso adj +inversore inversore nom +inversori inversore nom +inverta invertire ver +invertano invertire ver +inverte invertire ver +invertebrata invertebrato adj +invertebrate invertebrato adj +invertebrati invertebrato adj +invertebrato invertebrato adj +invertendo invertire ver +invertendole invertire ver +invertendoli invertire ver +invertendolo invertire ver +invertendone invertire ver +invertendosi invertire ver +invertente invertire ver +invertenti invertire ver +inverter inverter nom +inverti invertire ver +invertiamo invertire ver +invertibile invertibile adj +invertibili invertibile adj +invertir invertire ver +invertiranno invertire ver +invertire invertire ver +invertirebbe invertire ver +invertirei invertire ver +invertirla invertire ver +invertirle invertire ver +invertirlo invertire ver +invertirne invertire ver +invertirono invertire ver +invertirsi invertire ver +invertirà invertire ver +invertisse invertire ver +invertissero invertire ver +invertita invertire ver +invertite invertito adj +invertiti invertito adj +invertito invertire ver +invertitore invertitore nom +invertitori invertitore nom +invertiva invertire ver +invertivano invertire ver +inverto invertire ver +invertono invertire ver +invertì invertire ver +invesco invescare ver +investa investire ver +investano investire ver +investe investire ver +investendo investire ver +investendola investire ver +investendole investire ver +investendoli investire ver +investendolo investire ver +investendone investire ver +investendovi investire ver +investi investire ver +investiamo investire ver +investibile investibile adj +investici investire ver +investiga investigare ver +investigabile investigabile adj +investigabili investigabile adj +investigaci investigare ver +investigando investigare ver +investigandone investigare ver +investigano investigare ver +investiganti investigare ver +investigar investigare ver +investigare investigare ver +investigarla investigare ver +investigarne investigare ver +investigarono investigare ver +investigasse investigare ver +investigata investigare ver +investigate investigare ver +investigati investigare ver +investigativa investigativo adj +investigative investigativo adj +investigativi investigativo adj +investigativo investigativo adj +investigato investigare ver +investigatore investigatore nom +investigatori investigatore nom +investigatrice investigatore nom +investigatrici investigatore nom +investigava investigare ver +investigavano investigare ver +investigazione investigazione nom +investigazioni investigazione nom +investigheranno investigare ver +investigherà investigare ver +investighi investigare ver +investighiamo investigare ver +investigò investigare ver +investimenti investimento nom +investimento investimento nom +investimi investire ver +investiranno investire ver +investirci investire ver +investire investire ver +investirebbe investire ver +investirebbero investire ver +investirei investire ver +investiremo investire ver +investirla investire ver +investirle investire ver +investirli investire ver +investirlo investire ver +investirne investire ver +investirono investire ver +investirsi investire ver +investirvi investire ver +investirà investire ver +investirò investire ver +investisse investire ver +investissero investire ver +investita investire ver +investite investire ver +investiti investire ver +investito investire ver +investitore investitore nom +investitori investitore nom +investitrice investitore adj +investitrici investitore nom +investitura investitura nom +investiture investitura nom +investiva investire ver +investivano investire ver +investo investire ver +investono investire ver +investì investire ver +inveterata inveterato adj +inveterate inveterato adj +inveterati inveterato adj +inveterato inveterato adj +invetriata invetriato adj +invetriate invetriato adj +invetriati invetriato adj +invetriato invetriato adj +invettiva invettiva nom +invettive invettiva nom +inveì inveire ver +invia inviare ver +inviabile inviabile adj +inviabili inviabile adj +inviaci inviare ver +inviagli inviare ver +inviai inviare ver +inviala inviare ver +invialo inviare ver +inviami inviare ver +inviammo inviare ver +inviamo inviare ver +inviando inviare ver +inviandoci inviare ver +inviandogli inviare ver +inviandola inviare ver +inviandole inviare ver +inviandoli inviare ver +inviandolo inviare ver +inviandomi inviare ver +inviandone inviare ver +inviandosi inviare ver +inviandoti inviare ver +inviandovi inviare ver +inviano inviare ver +inviante inviare ver +inviar inviare ver +inviarci inviare ver +inviare inviare ver +inviargli inviare ver +inviargliela inviare ver +inviargliele inviare ver +inviarla inviare ver +inviarle inviare ver +inviarli inviare ver +inviarlo inviare ver +inviarmelo inviare ver +inviarmi inviare ver +inviarne inviare ver +inviarono inviare ver +inviarsi inviare ver +inviartelo inviare ver +inviarti inviare ver +inviarvela inviare ver +inviarvi inviare ver +inviasse inviare ver +inviassero inviare ver +inviata inviare ver +inviate inviare ver +inviategli inviare ver +inviatele inviare ver +inviatemi inviare ver +inviati inviare ver +inviato inviare ver +inviava inviare ver +inviavano inviare ver +inviavo inviare ver +invida invido adj +invidi invido adj +invidia invidia nom +invidiabile invidiabile adj +invidiabili invidiabile adj +invidiamo invidiare ver +invidiando invidiare ver +invidiandogli invidiare ver +invidiandolo invidiare ver +invidiano invidiare ver +invidiar invidiare ver +invidiare invidiare ver +invidiargli invidiare ver +invidiarlo invidiare ver +invidiarono invidiare ver +invidiasse invidiare ver +invidiata invidiare ver +invidiate invidiare ver +invidiati invidiare ver +invidiato invidiare ver +invidiava invidiare ver +invidiavano invidiare ver +invidiavo invidiare ver +invidie invidia nom +invidieranno invidiare ver +invidierebbero invidiare ver +invidierà invidiare ver +invidierò invidiare ver +invidino invidiare ver +invidio invidiare ver +invidiosa invidioso adj +invidiose invidioso adj +invidiosi invidioso adj +invidioso invidioso adj +invido invido adj +invierai inviare ver +invieranno inviare ver +invierebbe inviare ver +invierei inviare ver +invieremo inviare ver +invierà inviare ver +invierò inviare ver +invii invio nom +inviino inviare ver +inviluppa inviluppare ver +inviluppando inviluppare ver +inviluppante inviluppare ver +inviluppanti inviluppare ver +inviluppare inviluppare ver +inviluppati inviluppare ver +inviluppato inviluppare ver +inviluppi inviluppo nom +inviluppo inviluppo nom +invincibile invincibile adj +invincibili invincibile adj +invincibilità invincibilità nom +invio invio nom +inviolabile inviolabile adj +inviolabili inviolabile adj +inviolabilità inviolabilità nom +inviolata inviolato adj +inviolate inviolato adj +inviolati inviolato adj +inviolato inviolato adj +inviperire inviperire ver +inviperita inviperire ver +inviperite inviperire ver +inviperiti inviperire ver +inviperito inviperire ver +invisa inviso adj +invischia invischiare ver +invischiando invischiare ver +invischiandosi invischiare ver +invischiare invischiare ver +invischiarmi invischiare ver +invischiarsi invischiare ver +invischiata invischiare ver +invischiate invischiare ver +invischiati invischiare ver +invischiato invischiare ver +invischierà invischiare ver +invischiò invischiare ver +invise inviso adj +invisi inviso adj +invisibile invisibile adj +invisibili invisibile adj +invisibilità invisibilità nom +inviso inviso adj +invita invitare ver +invitaci invitare ver +invitai invitare ver +invitalo invitare ver +invitammo invitare ver +invitando invitare ver +invitandola invitare ver +invitandole invitare ver +invitandoli invitare ver +invitandolo invitare ver +invitandomi invitare ver +invitandone invitare ver +invitandoti invitare ver +invitandovi invitare ver +invitano invitare ver +invitante invitante adj +invitanti invitante adj +invitar invitare ver +invitarci invitare ver +invitare invitare ver +invitarla invitare ver +invitarle invitare ver +invitarli invitare ver +invitarlo invitare ver +invitarmi invitare ver +invitarne invitare ver +invitarono invitare ver +invitarsi invitare ver +invitarti invitare ver +invitarvi invitare ver +invitasse invitare ver +invitassero invitare ver +invitassi invitare ver +invitasti invitare ver +invitata invitare ver +invitate invitare ver +invitatemi invitare ver +invitati invitare ver +invitato invitare ver +invitava invitare ver +invitavano invitare ver +invitavi invitare ver +invitavo invitare ver +inviterai invitare ver +inviteranno invitare ver +inviterebbe invitare ver +inviterei invitare ver +inviteremo invitare ver +inviterà invitare ver +inviterò invitare ver +inviti invito nom +invitiamo invitare ver +invitiamolo invitare ver +invitino invitare ver +invito invito nom +invitta invitto adj +invitte invitto adj +invitti invitto adj +invitto invitto adj +invitò invitare ver +invivibile invivibile adj +invivibili invivibile adj +inviò inviare ver +invoca invocare ver +invocabile invocabile adj +invocaci invocare ver +invocami invocare ver +invocando invocare ver +invocandola invocare ver +invocandoli invocare ver +invocandolo invocare ver +invocandone invocare ver +invocano invocare ver +invocante invocare ver +invocanti invocare ver +invocare invocare ver +invocarla invocare ver +invocarle invocare ver +invocarli invocare ver +invocarlo invocare ver +invocarmi invocare ver +invocarne invocare ver +invocarono invocare ver +invocarsi invocare ver +invocasse invocare ver +invocata invocare ver +invocate invocare ver +invocatelo invocare ver +invocati invocare ver +invocato invocare ver +invocava invocare ver +invocavano invocare ver +invocavo invocare ver +invocazione invocazione nom +invocazioni invocazione nom +invocheranno invocare ver +invocherei invocare ver +invocherà invocare ver +invocherò invocare ver +invochi invocare ver +invochiamo invocare ver +invochino invocare ver +invoco invocare ver +invocò invocare ver +invogli invogliare ver +invoglia invogliare ver +invogliando invogliare ver +invogliandoli invogliare ver +invogliandolo invogliare ver +invogliano invogliare ver +invogliante invogliare ver +invogliare invogliare ver +invogliarle invogliare ver +invogliarli invogliare ver +invogliarlo invogliare ver +invogliarmi invogliare ver +invogliarne invogliare ver +invogliarono invogliare ver +invogliarvi invogliare ver +invogliasse invogliare ver +invogliata invogliare ver +invogliate invogliare ver +invogliati invogliare ver +invogliato invogliare ver +invogliava invogliare ver +invogliavano invogliare ver +invoglierebbero invogliare ver +invoglierà invogliare ver +invoglio invogliare ver +invogliò invogliare ver +invola involare ver +involami involare ver +involando involare ver +involandosi involare ver +involano involare ver +involarsi involare ver +involata involare ver +involate involare ver +involati involare ver +involato involare ver +involava involare ver +involgarita involgarire ver +involgarito involgarire ver +involgere involgere ver +involgono involgere ver +involi involo nom +involo involo nom +involontari involontario adj +involontaria involontario adj +involontariamente involontariamente adv +involontarie involontario adj +involontario involontario adj +involta involgere|involvere ver +involtata involtare ver +involti involto nom +involtini involtino nom +involtino involtino nom +involto involgere|involvere ver +involucri involucro nom +involucro involucro nom +involuta involuto adj +involute involuto adj +involuti involuto adj +involutiva involutivo adj +involutive involutivo adj +involutivi involutivo adj +involutivo involutivo adj +involuto involuto adj +involuzione involuzione nom +involuzioni involuzione nom +involva involvere ver +involve involvere ver +involvendo involvere ver +involver involvere ver +involvere involvere ver +involveva involvere ver +involvono involvere ver +involò involare ver +invulnerabile invulnerabile adj +invulnerabili invulnerabile adj +invulnerabilità invulnerabilità nom +inzacchera inzaccherare ver +inzaccherata inzaccherare ver +inzaccherato inzaccherare ver +inzeppare inzeppare ver +inzeppata inzeppare ver +inzuppa inzuppare ver +inzuppando inzuppare ver +inzuppandolo inzuppare ver +inzuppandosi inzuppare ver +inzuppano inzuppare ver +inzuppare inzuppare ver +inzupparsi inzuppare ver +inzuppata inzuppare ver +inzuppate inzuppare ver +inzuppati inzuppare ver +inzuppato inzuppare ver +inzuppò inzuppare ver +io io pro +iodata iodato adj +iodate iodato adj +iodati iodato adj +iodato iodato adj +iodi iodio nom +iodica iodico adj +iodiche iodico adj +iodico iodico adj +iodio iodio nom +iodoformio iodoformio nom +iodurati iodurare ver +iodurato iodurare ver +ioduri ioduro nom +ioduro ioduro nom +iogurt iogurt nom +ioide ioide nom +iole iole nom +ioli iole nom +ione ione nom +ioni ionio adj +ionia ionio adj +ionica ionico adj +ioniche ionico adj +ionici ionico adj +ionico ionico adj +ionie ionio adj +ionio ionio adj +ionizza ionizzare ver +ionizzando ionizzare ver +ionizzandoli ionizzare ver +ionizzandolo ionizzare ver +ionizzandosi ionizzare ver +ionizzano ionizzare ver +ionizzante ionizzare ver +ionizzanti ionizzare ver +ionizzare ionizzare ver +ionizzarlo ionizzare ver +ionizzarsi ionizzare ver +ionizzata ionizzare ver +ionizzate ionizzare ver +ionizzati ionizzare ver +ionizzato ionizzare ver +ionizzazione ionizzazione nom +ionizzazioni ionizzazione nom +ionizzerebbero ionizzare ver +ionizzi ionizzare ver +ionizzino ionizzare ver +ionizzò ionizzare ver +ionoforesi ionoforesi nom +ionosfera ionosfera nom +ionosfere ionosfera nom +iosa iosa adv +ipallage ipallage nom +ipecacuana ipecacuana nom +iperacidità iperacidità nom +iperalimentazione iperalimentazione nom +iperazotemia iperazotemia nom +iperbati iperbato nom +iperbato iperbato nom +iperbole iperbole nom +iperboli iperbole nom +iperbolica iperbolico adj +iperboliche iperbolico adj +iperbolici iperbolico adj +iperbolico iperbolico adj +iperborea iperboreo adj +iperboree iperboreo adj +iperborei iperboreo adj +iperboreo iperboreo adj +ipercloridria ipercloridria nom +ipercorrettismi ipercorrettismo nom +ipercorrettismo ipercorrettismo nom +ipercorretto ipercorretto adj +ipercorrezione ipercorrezione nom +ipercritica ipercritico adj +ipercritiche ipercritico adj +ipercritici ipercritico adj +ipercriticismo ipercriticismo nom +ipercritico ipercritico adj +iperemia iperemia nom +iperestesia iperestesia nom +iperestesie iperestesia nom +iperglicemia iperglicemia nom +iperglicemie iperglicemia nom +iperidrosi iperidrosi nom +ipermediali ipermediale adj +ipermercati ipermercato nom +ipermercato ipermercato nom +ipermetra ipermetro adj +ipermetro ipermetro adj +ipermetrope ipermetrope adj +ipermetropi ipermetrope adj +ipermetropia ipermetropia nom +ipernutrizione ipernutrizione nom +iperone iperone nom +iperoni iperone nom +iperplasia iperplasia nom +iperplasie iperplasia nom +iperrealismo iperrealismo nom +iperrealista iperrealista adj +iperrealiste iperrealista adj +iperrealisti iperrealista adj +ipersensibile ipersensibile adj +ipersensibili ipersensibile adj +ipersensibilità ipersensibilità nom +ipersostentatore ipersostentatore adj +ipersostentatori ipersostentatore nom +ipersostentazione ipersostentazione nom +ipersurrenalismo ipersurrenalismo nom +ipertensione ipertensione nom +ipertensioni ipertensione nom +ipertensiva ipertensivo adj +ipertensive ipertensivo adj +ipertensivi ipertensivo adj +ipertensivo ipertensivo adj +ipertesi iperteso adj +iperteso iperteso adj +ipertiroidei ipertiroideo adj +ipertiroidismi ipertiroidismo nom +ipertiroidismo ipertiroidismo nom +ipertricosi ipertricosi nom +ipertrofia ipertrofia nom +ipertrofica ipertrofico adj +ipertrofiche ipertrofico adj +ipertrofici ipertrofico adj +ipertrofico ipertrofico adj +ipertrofie ipertrofia nom +ipervitaminosi ipervitaminosi nom +ipnagogica ipnagogico adj +ipnagogiche ipnagogico adj +ipnagogico ipnagogico adj +ipnopedia ipnopedia nom +ipnosi ipnosi nom +ipnotica ipnotico adj +ipnotiche ipnotico adj +ipnotici ipnotico adj +ipnotico ipnotico adj +ipnotismo ipnotismo nom +ipnotizza ipnotizzare ver +ipnotizzando ipnotizzare ver +ipnotizzandole ipnotizzare ver +ipnotizzandoli ipnotizzare ver +ipnotizzano ipnotizzare ver +ipnotizzante ipnotizzare ver +ipnotizzanti ipnotizzare ver +ipnotizzare ipnotizzare ver +ipnotizzarla ipnotizzare ver +ipnotizzarli ipnotizzare ver +ipnotizzarlo ipnotizzare ver +ipnotizzarsi ipnotizzare ver +ipnotizzata ipnotizzare ver +ipnotizzate ipnotizzare ver +ipnotizzati ipnotizzare ver +ipnotizzato ipnotizzare ver +ipnotizzatore ipnotizzatore nom +ipnotizzatori ipnotizzatore nom +ipnotizzatrice ipnotizzatore nom +ipnotizzava ipnotizzare ver +ipnotizzò ipnotizzare ver +ipoacusia ipoacusia nom +ipoacusico ipoacusico adj +ipocentri ipocentro nom +ipocentro ipocentro nom +ipocloridria ipocloridria nom +ipocloriti ipoclorito nom +ipoclorito ipoclorito nom +ipoclorosa ipocloroso adj +ipocloroso ipocloroso adj +ipocondria ipocondria nom +ipocondriaca ipocondriaco adj +ipocondriache ipocondriaco adj +ipocondriaci ipocondriaco adj +ipocondriaco ipocondriaco adj +ipocondrio ipocondrio nom +ipocrisia ipocrisia nom +ipocrisie ipocrisia nom +ipocrita ipocrita adj +ipocrite ipocrita adj +ipocriti ipocrita adj +ipoderma ipoderma nom +ipodermica ipodermico adj +ipodermiche ipodermico adj +ipodermici ipodermico adj +ipodermico ipodermico adj +ipofisari ipofisario adj +ipofisaria ipofisario adj +ipofisarie ipofisario adj +ipofisario ipofisario adj +ipofisi ipofisi nom +ipofosfiti ipofosfito nom +ipofosfito ipofosfito nom +ipofosforoso ipofosforoso adj +ipogastrica ipogastrico adj +ipogastrici ipogastrico adj +ipogastrico ipogastrico adj +ipogastrio ipogastrio nom +ipogea ipogeo adj +ipogee ipogeo adj +ipogei ipogeo adj +ipogeo ipogeo adj +ipoglicemia ipoglicemia nom +ipoglicemie ipoglicemia nom +iponutrizione iponutrizione nom +ipoplasia ipoplasia nom +ipoplasie ipoplasia nom +iposcopi iposcopio nom +iposcopio iposcopio nom +iposolfito iposolfito nom +ipostasi ipostasi nom +ipostatica ipostatico adj +ipostatiche ipostatico adj +ipostatico ipostatico adj +ipostila ipostilo adj +ipostile ipostilo adj +ipostili ipostilo adj +ipostilo ipostilo adj +ipotalamo ipotalamo nom +ipotassi ipotassi nom +ipoteca ipoteca nom +ipotecando ipotecare ver +ipotecano ipotecare ver +ipotecare ipotecare ver +ipotecari ipotecario adj +ipotecaria ipotecario adj +ipotecarie ipotecario adj +ipotecario ipotecario adj +ipotecarono ipotecare ver +ipotecata ipotecare ver +ipotecate ipotecare ver +ipotecati ipotecare ver +ipotecato ipotecare ver +ipoteche ipoteca nom +ipotecò ipotecare ver +ipotensione ipotensione nom +ipotensiva ipotensivo adj +ipotensive ipotensivo adj +ipotensivi ipotensivo adj +ipotensivo ipotensivo adj +ipotenusa ipotenusa nom +ipotenuse ipotenusa nom +ipotesi ipotesi|ipoteso nom +ipotetica ipotetico adj +ipotetiche ipotetico adj +ipotetici ipotetico adj +ipotetico ipotetico adj +ipotiposi ipotiposi nom +ipotiroidismo ipotiroidismo nom +ipotizza ipotizzare ver +ipotizzabile ipotizzabile adj +ipotizzabili ipotizzabile adj +ipotizzando ipotizzare ver +ipotizzandola ipotizzare ver +ipotizzandolo ipotizzare ver +ipotizzandone ipotizzare ver +ipotizzano ipotizzare ver +ipotizzare ipotizzare ver +ipotizzarla ipotizzare ver +ipotizzarlo ipotizzare ver +ipotizzarne ipotizzare ver +ipotizzarono ipotizzare ver +ipotizzarsi ipotizzare ver +ipotizzasse ipotizzare ver +ipotizzassero ipotizzare ver +ipotizzassimo ipotizzare ver +ipotizzata ipotizzare ver +ipotizzate ipotizzare ver +ipotizzati ipotizzare ver +ipotizzato ipotizzare ver +ipotizzava ipotizzare ver +ipotizzavano ipotizzare ver +ipotizzavo ipotizzare ver +ipotizzerebbe ipotizzare ver +ipotizzerei ipotizzare ver +ipotizzeremo ipotizzare ver +ipotizzerà ipotizzare ver +ipotizzi ipotizzare ver +ipotizziamo ipotizzare ver +ipotizzino ipotizzare ver +ipotizzo ipotizzare ver +ipotizzò ipotizzare ver +ipotrofia ipotrofia nom +ipotrofica ipotrofico adj +ipotrofico ipotrofico adj +ipovedenti ipovedente adj +ipovitaminosi ipovitaminosi nom +ippica ippico adj +ippiche ippico adj +ippici ippico adj +ippico ippico adj +ippocampi ippocampo nom +ippocampo ippocampo nom +ippocastani ippocastano nom +ippocastano ippocastano nom +ippodromi ippodromo nom +ippodromo ippodromo nom +ippopotami ippopotamo nom +ippopotamo ippopotamo nom +iprite iprite nom +ipsilon ipsilon nom +ipsometro ipsometro nom +ira ira nom +irachena iracheno adj +irachene iracheno adj +iracheni iracheno adj +iracheno iracheno adj +iraconda iracondo adj +iracondi iracondo adj +iracondia iracondia nom +iracondo iracondo adj +irakena irakeno adj +irakene irakeno adj +irakeni irakeno nom +irakeno irakeno adj +iraniana iraniano adj +iraniane iraniano adj +iraniani iraniano adj +iraniano iraniano adj +iranica iranico adj +iraniche iranico adj +iranici iranico adj +iranico iranico adj +irascibile irascibile adj +irascibili irascibile adj +irascibilità irascibilità nom +irata irato adj +irate irato adj +irati irato adj +irato irato adj +ire ira nom +irenica irenico adj +irenici irenico adj +irenico irenico adj +irenismo irenismo nom +ireos ireos nom +irida iridare ver +iridacee iridacee nom +iridata iridato adj +iridate iridato adj +iridati iridato adj +iridato iridato adj +iride iride nom +iridescente iridescente adj +iridescenti iridescente adj +iridescenza iridescenza nom +iridescenze iridescenza nom +iridi iride|iridio nom +iridio iridio nom +irido iridare ver +iris iris nom +irite irite nom +iriti irite nom +irlanda irlanda npr +irlandese irlandese adj +irlandesi irlandese adj +ironia ironia nom +ironica ironico adj +ironicamente ironicamente adv +ironiche ironico adj +ironici ironico adj +ironico ironico adj +ironie ironia nom +ironizza ironizzare ver +ironizzando ironizzare ver +ironizzano ironizzare ver +ironizzante ironizzare ver +ironizzare ironizzare ver +ironizzasse ironizzare ver +ironizzata ironizzare ver +ironizzati ironizzare ver +ironizzato ironizzare ver +ironizzava ironizzare ver +ironizzavano ironizzare ver +ironizzavo ironizzare ver +ironizzi ironizzare ver +ironizzo ironizzare ver +ironizzò ironizzare ver +irosa iroso adj +irosamente irosamente adv +irose iroso adj +irosi iroso adj +iroso iroso adj +irradi irradiare ver +irradia irradiare ver +irradiamento irradiamento nom +irradiando irradiare ver +irradiandosi irradiare ver +irradiano irradiare ver +irradiante irradiare ver +irradianti irradiare ver +irradiare irradiare ver +irradiarono irradiare ver +irradiarsi irradiare ver +irradiasse irradiare ver +irradiata irradiare ver +irradiate irradiare ver +irradiati irradiare ver +irradiato irradiare ver +irradiava irradiare ver +irradiavano irradiare ver +irradiazione irradiazione nom +irradiazioni irradiazione nom +irradierebbe irradiare ver +irradierà irradiare ver +irradino irradiare ver +irradio irradiare ver +irradiò irradiare ver +irraggerebbero irraggiare ver +irraggia irraggiare ver +irraggiamenti irraggiamento nom +irraggiamento irraggiamento nom +irraggiando irraggiare ver +irraggiano irraggiare ver +irraggiante irraggiare ver +irraggianti irraggiare ver +irraggiare irraggiare ver +irraggiata irraggiare ver +irraggiate irraggiare ver +irraggiati irraggiare ver +irraggiato irraggiare ver +irraggiava irraggiare ver +irraggiungibile irraggiungibile adj +irraggiungibili irraggiungibile adj +irragionevole irragionevole adj +irragionevolezza irragionevolezza nom +irragionevoli irragionevole adj +irragionevolmente irragionevolmente adv +irrancidimento irrancidimento nom +irrancidire irrancidire ver +irrancidirsi irrancidire ver +irrancidisce irrancidire ver +irrancidiscono irrancidire ver +irranciditi irrancidire ver +irrancidito irrancidire ver +irrazionale irrazionale adj +irrazionali irrazionale adj +irrazionalismi irrazionalismo nom +irrazionalismo irrazionalismo nom +irrazionalista irrazionalista nom +irrazionaliste irrazionalista nom +irrazionalisti irrazionalista nom +irrazionalità irrazionalità nom +irreale irreale adj +irreali irreale adj +irrealistica irrealistico adj +irrealistiche irrealistico adj +irrealistici irrealistico adj +irrealistico irrealistico adj +irrealizzabile irrealizzabile adj +irrealizzabili irrealizzabile adj +irrealtà irrealtà nom +irrecuperabile irrecuperabile adj +irrecuperabili irrecuperabile adj +irredenta irredento adj +irredente irredento adj +irredenti irredento adj +irredentismi irredentismo nom +irredentismo irredentismo nom +irredentista irredentista adj +irredentiste irredentista adj +irredentisti irredentista adj +irredentistica irredentistico adj +irredentistiche irredentistico adj +irredentistici irredentistico adj +irredentistico irredentistico adj +irredento irredento adj +irredimibile irredimibile adj +irredimibili irredimibile adj +irrefrenabile irrefrenabile adj +irrefrenabili irrefrenabile adj +irrefutabile irrefutabile adj +irrefutabili irrefutabile adj +irreggimentando irreggimentare ver +irreggimentare irreggimentare ver +irreggimentassero irreggimentare ver +irreggimentata irreggimentare ver +irreggimentati irreggimentare ver +irreggimentato irreggimentare ver +irregolare irregolare adj +irregolari irregolare adj +irregolarità irregolarità nom +irregolarmente irregolarmente adv +irrelata irrelato adj +irrelate irrelato adj +irrelati irrelato adj +irrelato irrelato adj +irreligione irreligione nom +irreligiosa irreligioso adj +irreligiose irreligioso adj +irreligiosi irreligioso adj +irreligiosità irreligiosità nom +irreligioso irreligioso adj +irremissibile irremissibile adj +irremovibile irremovibile adj +irremovibili irremovibile adj +irreparabile irreparabile adj +irreparabili irreparabile adj +irreperibile irreperibile adj +irreperibili irreperibile adj +irreperibilità irreperibilità nom +irrepetibile irrepetibile adj +irreprensibile irreprensibile adj +irreprensibili irreprensibile adj +irreprensibilità irreprensibilità nom +irrequieta irrequieto adj +irrequiete irrequieto adj +irrequietezza irrequietezza nom +irrequietezze irrequietezza nom +irrequieti irrequieto adj +irrequieto irrequieto adj +irrequietudine irrequietudine nom +irrequietudini irrequietudine nom +irresistibile irresistibile adj +irresistibili irresistibile adj +irresolubile irresolubile adj +irresoluta irresoluto adj +irresolutezza irresolutezza nom +irresoluti irresoluto adj +irresoluto irresoluto adj +irresoluzione irresoluzione nom +irrespirabile irrespirabile adj +irrespirabili irrespirabile adj +irresponsabile irresponsabile adj +irresponsabili irresponsabile adj +irresponsabilità irresponsabilità nom +irretire irretire ver +irretirlo irretire ver +irretisce irretire ver +irretiscono irretire ver +irretita irretire ver +irretite irretire ver +irretiti irretire ver +irretito irretire ver +irretroattività irretroattività nom +irretì irretire ver +irreversibile irreversibile adj +irreversibili irreversibile adj +irreversibilità irreversibilità nom +irrevocabile irrevocabile adj +irrevocabili irrevocabile adj +irrevocabilità irrevocabilità nom +irrevocabilmente irrevocabilmente adv +irricevibile irricevibile adj +irricevibili irricevibile adj +irricevibilità irricevibilità nom +irriconoscibile irriconoscibile adj +irriconoscibili irriconoscibile adj +irridendo irridire ver +irridendola irridire ver +irridendoli irridire ver +irridendolo irridire ver +irridente irridire ver +irridenti irridire ver +irriducibile irriducibile adj +irriducibili irriducibile adj +irriflessione irriflessione nom +irriflessiva irriflessivo adj +irriflessivo irriflessivo adj +irriga irrigare ver +irrigabile irrigabile adj +irrigabili irrigabile adj +irrigaci irrigare ver +irrigando irrigare ver +irrigano irrigare ver +irrigare irrigare ver +irrigarono irrigare ver +irrigata irrigare ver +irrigate irrigare ver +irrigati irrigare ver +irrigato irrigare ver +irrigatore irrigatore adj +irrigatori irrigatore nom +irrigava irrigare ver +irrigavano irrigare ver +irrigazione irrigazione nom +irrigazioni irrigazione nom +irrigidendo irrigidire ver +irrigidendolo irrigidire ver +irrigidendosi irrigidire ver +irrigidente irrigidire ver +irrigidimenti irrigidimento nom +irrigidimento irrigidimento nom +irrigidiranno irrigidire ver +irrigidire irrigidire ver +irrigidirlo irrigidire ver +irrigidirmi irrigidire ver +irrigidirono irrigidire ver +irrigidirsi irrigidire ver +irrigidisce irrigidire ver +irrigidiscono irrigidire ver +irrigidita irrigidire ver +irrigidite irrigidire ver +irrigiditi irrigidire ver +irrigidito irrigidire ver +irrigidiva irrigidire ver +irrigidivano irrigidire ver +irrigidì irrigidire ver +irrigua irriguo adj +irriguardosa irriguardoso adj +irriguardose irriguardoso adj +irriguardosi irriguardoso adj +irriguardoso irriguardoso adj +irrigue irriguo adj +irrigui irriguo adj +irriguo irriguo adj +irrigò irrigare ver +irrilevante irrilevante adj +irrilevanti irrilevante adj +irrilevanza irrilevanza nom +irrimediabile irrimediabile adj +irrimediabili irrimediabile adj +irrimediabilità irrimediabilità nom +irrimediabilmente irrimediabilmente adv +irrinunciabile irrinunciabile adj +irrinunciabili irrinunciabile adj +irripetibile irripetibile adj +irripetibili irripetibile adj +irrisione irrisione nom +irrisioni irrisione nom +irrisolta irrisolto adj +irrisolte irrisolto adj +irrisolti irrisolto adj +irrisolto irrisolto adj +irrisoluto irrisoluto adj +irrisori irrisorio adj +irrisoria irrisorio adj +irrisorie irrisorio adj +irrisorio irrisorio adj +irrispettosa irrispettoso adj +irrispettose irrispettoso adj +irrispettosi irrispettoso adj +irrispettoso irrispettoso adj +irrita irritare ver +irritabile irritabile adj +irritabili irritabile adj +irritabilità irritabilità nom +irritaci irritare ver +irritando irritare ver +irritandola irritare ver +irritandolo irritare ver +irritandosi irritare ver +irritano irritare ver +irritante irritante adj +irritanti irritante adj +irritar irritare ver +irritare irritare ver +irritarlo irritare ver +irritarmi irritare ver +irritarono irritare ver +irritarsi irritare ver +irritarti irritare ver +irritasse irritare ver +irritata irritare ver +irritate irritare ver +irritati irritare ver +irritato irritare ver +irritava irritare ver +irritavano irritare ver +irritavo irritare ver +irritazione irritazione nom +irritazioni irritazione nom +irriterebbe irritare ver +irriterà irritare ver +irriti irritare ver +irritino irritare ver +irrito irrito adj +irritò irritare ver +irriverente irriverente adj +irriverenti irriverente adj +irriverenza irriverenza nom +irrobustendo irrobustire ver +irrobustendolo irrobustire ver +irrobustendone irrobustire ver +irrobustendosi irrobustire ver +irrobustire irrobustire ver +irrobustirlo irrobustire ver +irrobustirne irrobustire ver +irrobustirono irrobustire ver +irrobustirsi irrobustire ver +irrobustisce irrobustire ver +irrobustiscono irrobustire ver +irrobustisse irrobustire ver +irrobustita irrobustire ver +irrobustite irrobustire ver +irrobustiti irrobustire ver +irrobustito irrobustire ver +irrobustiva irrobustire ver +irrobustì irrobustire ver +irroga irrogare ver +irrogabile irrogabile adj +irrogabili irrogabile adj +irrogando irrogare ver +irrogano irrogare ver +irrogare irrogare ver +irrogarne irrogare ver +irrogasse irrogare ver +irrogata irrogare ver +irrogate irrogare ver +irrogati irrogare ver +irrogato irrogare ver +irrogava irrogare ver +irrogazione irrogazione nom +irroghi irrogare ver +irrogò irrogare ver +irrompa irrompere ver +irrompano irrompere ver +irrompe irrompere ver +irrompendo irrompere ver +irrompente irrompere ver +irrompenti irrompere ver +irromperanno irrompere ver +irrompere irrompere ver +irromperà irrompere ver +irrompesse irrompere ver +irrompessero irrompere ver +irrompeva irrompere ver +irrompevano irrompere ver +irrompo irrompere ver +irrompono irrompere ver +irrora irrorare ver +irrorando irrorare ver +irrorandolo irrorare ver +irrorandone irrorare ver +irrorano irrorare ver +irrorante irrorare ver +irrorare irrorare ver +irrorata irrorare ver +irrorate irrorare ver +irrorati irrorare ver +irrorato irrorare ver +irroratrici irroratrice nom +irrorazione irrorazione nom +irrorazioni irrorazione nom +irrotto irrompere ver +irruente irruente adj +irruenti irruente adj +irruenza irruenza nom +irruppe irrompere ver +irruppero irrompere ver +irruvidire irruvidire ver +irruvidito irruvidire ver +irruzione irruzione nom +irruzioni irruzione nom +irsuta irsuto adj +irsute irsuto adj +irsuti irsuto adj +irsuto irsuto adj +irta irto adj +irte irto adj +irti irto adj +irto irto adj +isabella isabella adj +isagoge isagoge nom +isba isba nom +isbe isba nom +ischemia ischemia nom +ischemie ischemia nom +ischi ischio nom +ischiatica ischiatico adj +ischiatiche ischiatico adj +ischiatico ischiatico adj +ischio ischio nom +ischitana ischitano adj +ischitane ischitano adj +ischitani ischitano adj +ischitano ischitano adj +iscrisse iscrivere ver +iscrissero iscrivere ver +iscrissi iscrivere ver +iscritta iscrivere ver +iscritte iscritto adj +iscritti iscrivere ver +iscritto iscrivere ver +iscriva iscrivere ver +iscrivano iscrivere ver +iscrive iscrivere ver +iscrivemmo iscrivere ver +iscrivendo iscrivere ver +iscrivendoci iscrivere ver +iscrivendola iscrivere ver +iscrivendole iscrivere ver +iscrivendoli iscrivere ver +iscrivendolo iscrivere ver +iscrivendomi iscrivere ver +iscrivendone iscrivere ver +iscrivendosi iscrivere ver +iscrivendoti iscrivere ver +iscriverai iscrivere ver +iscriveranno iscrivere ver +iscrivere iscrivere ver +iscriverebbe iscrivere ver +iscriverla iscrivere ver +iscriverle iscrivere ver +iscriverli iscrivere ver +iscriverlo iscrivere ver +iscrivermi iscrivere ver +iscriverne iscrivere ver +iscriversi iscrivere ver +iscriverti iscrivere ver +iscrivervi iscrivere ver +iscriverà iscrivere ver +iscriverò iscrivere ver +iscrivesse iscrivere ver +iscrivessero iscrivere ver +iscrivessi iscrivere ver +iscrivete iscrivere ver +iscrivetevi iscrivere ver +iscriveva iscrivere ver +iscrivevano iscrivere ver +iscrivevi iscrivere ver +iscrivevo iscrivere ver +iscrivi iscrivere ver +iscriviamo iscrivere ver +iscriviamoci iscrivere ver +iscriviti iscrivere ver +iscrivo iscrivere ver +iscrivono iscrivere ver +iscrizione iscrizione nom +iscrizioni iscrizione nom +islam islam nom +islamica islamico adj +islamiche islamico adj +islamici islamico adj +islamico islamico adj +islamismo islamismo nom +islamizzante islamizzare ver +islamizzare islamizzare ver +islamizzarono islamizzare ver +islamizzata islamizzare ver +islamizzate islamizzare ver +islamizzati islamizzare ver +islamizzato islamizzare ver +islamizzò islamizzare ver +islandese islandese adj +islandesi islandese adj +isoalina isoalina nom +isobara isobaro adj +isobare isobaro adj +isobari isobaro adj +isobaro isobaro adj +isobata isobata nom +isobate isobata nom +isoclina isoclina nom +isocline isoclina nom +isocrona isocrono adj +isocrone isocrono adj +isocroni isocrono adj +isocronismo isocronismo nom +isocrono isocrono adj +isogone isogono adj +isogonica isogonico adj +isogoniche isogonico adj +isogono isogono nom +isoieta isoieta nom +isoiete isoieta nom +isoipsa isoipsa nom +isoipse isoipsa nom +isola isola nom +isolamenti isolamento nom +isolamento isolamento nom +isolana isolano adj +isolando isolare ver +isolandola isolare ver +isolandole isolare ver +isolandoli isolare ver +isolandolo isolare ver +isolandone isolare ver +isolandosi isolare ver +isolane isolano adj +isolani isolano nom +isolano isolano adj +isolante isolante adj +isolanti isolante adj +isolar isolare ver +isolare isolare ver +isolarla isolare ver +isolarle isolare ver +isolarli isolare ver +isolarlo isolare ver +isolarmi isolare ver +isolarne isolare ver +isolarono isolare ver +isolarsi isolare ver +isolasse isolare ver +isolata isolare ver +isolatamente isolatamente adv +isolate isolato adj +isolati isolato adj +isolato isolare ver +isolatore isolatore adj +isolatori isolatore nom +isolava isolare ver +isolavamo isolare ver +isolavano isolare ver +isolazione isolazione nom +isolazionismo isolazionismo nom +isolazionista isolazionista adj +isolazioniste isolazionista adj +isolazionisti isolazionista adj +isole isola nom +isolerebbe isolare ver +isolerà isolare ver +isoli isolare ver +isoliamo isolare ver +isolino isolare ver +isolo isolare ver +isolotti isolotto nom +isolò isolare ver +isomerasi isomerasi nom +isomeri isomero nom +isomeria isomeria nom +isomerie isomeria nom +isomerizzazione isomerizzazione nom +isomerizzazioni isomerizzazione nom +isomero isomero nom +isometrica isometrica nom +isometriche isometrica nom +isomorfa isomorfo adj +isomorfe isomorfo adj +isomorfi isomorfo adj +isomorfismi isomorfismo nom +isomorfismo isomorfismo nom +isomorfo isomorfo adj +isoprene isoprene nom +isoscele isoscele adj +isosceli isoscele adj +isostasia isostasia nom +isostasie isostasia nom +isoterma isotermo adj +isoterme isotermo adj +isotermi isotermo adj +isotermia isotermia nom +isotermica isotermico adj +isotermiche isotermico adj +isotermici isotermico adj +isotermico isotermico adj +isotermo isotermo adj +isotopa isotopo adj +isotope isotopo adj +isotopi isotopo nom +isotopia isotopia nom +isotopie isotopia nom +isotopo isotopo adj +isotropa isotropo adj +isotrope isotropo adj +isotropi isotropo adj +isotropia isotropia nom +isotropie isotropia nom +isotropo isotropo adj +ispana ispano adj +ispane ispano adj +ispani ispano adj +ispanica ispanico adj +ispaniche ispanico adj +ispanici ispanico adj +ispanico ispanico adj +ispanismi ispanismo nom +ispanismo ispanismo nom +ispanista ispanista nom +ispanisti ispanista nom +ispano ispano adj +ispessendo ispessire ver +ispessendosi ispessire ver +ispessente ispessire ver +ispessenti ispessire ver +ispessimenti ispessimento nom +ispessimento ispessimento nom +ispessire ispessire ver +ispessirla ispessire ver +ispessirsi ispessire ver +ispessisce ispessire ver +ispessiscono ispessire ver +ispessita ispessire ver +ispessite ispessire ver +ispessiti ispessire ver +ispessito ispessire ver +ispessiva ispessire ver +ispettiva ispettivo adj +ispettive ispettivo adj +ispettivi ispettivo adj +ispettivo ispettivo adj +ispettorati ispettorato nom +ispettorato ispettorato nom +ispettore ispettore nom +ispettori ispettore nom +ispettrice ispettore nom +ispettrici ispettore nom +ispeziona ispezionare ver +ispezionando ispezionare ver +ispezionano ispezionare ver +ispezionare ispezionare ver +ispezionarla ispezionare ver +ispezionarle ispezionare ver +ispezionarlo ispezionare ver +ispezionarono ispezionare ver +ispezionassero ispezionare ver +ispezionata ispezionare ver +ispezionate ispezionare ver +ispezionati ispezionare ver +ispezionato ispezionare ver +ispezionava ispezionare ver +ispezionavano ispezionare ver +ispezione ispezione nom +ispezioni ispezione nom +ispezionò ispezionare ver +ispida ispido adj +ispide ispido adj +ispidi ispido adj +ispido ispido adj +ispira ispirare ver +ispirai ispirare ver +ispirammo ispirare ver +ispirando ispirare ver +ispirandoci ispirare ver +ispirandogli ispirare ver +ispirandola ispirare ver +ispirandoli ispirare ver +ispirandolo ispirare ver +ispirandomi ispirare ver +ispirandosi ispirare ver +ispirandoti ispirare ver +ispirano ispirare ver +ispirante ispirare ver +ispiranti ispirare ver +ispirarci ispirare ver +ispirare ispirare ver +ispirargli ispirare ver +ispirarla ispirare ver +ispirarle ispirare ver +ispirarli ispirare ver +ispirarlo ispirare ver +ispirarmi ispirare ver +ispirarne ispirare ver +ispirarono ispirare ver +ispirarsi ispirare ver +ispirarti ispirare ver +ispirarvi ispirare ver +ispirasse ispirare ver +ispirassero ispirare ver +ispirata ispirare ver +ispirate ispirare ver +ispirati ispirare ver +ispirato ispirare ver +ispiratore ispiratore adj +ispiratori ispiratore nom +ispiratrice ispiratore adj +ispiratrici ispiratore adj +ispirava ispirare ver +ispiravano ispirare ver +ispirazione ispirazione nom +ispirazioni ispirazione nom +ispireranno ispirare ver +ispirerebbe ispirare ver +ispirerà ispirare ver +ispirerò ispirare ver +ispiri ispirare ver +ispiriamo ispirare ver +ispirino ispirare ver +ispiro ispirare ver +ispirò ispirare ver +israeliana israeliano adj +israeliane israeliano adj +israeliani israeliano adj +israeliano israeliano adj +israelitica israelitico adj +israelitiche israelitico adj +israelitici israelitico adj +israelitico israelitico adj +issa issare ver +issai issare ver +issami issare ver +issando issare ver +issandola issare ver +issandoli issare ver +issandolo issare ver +issandosi issare ver +issandovi issare ver +issano issare ver +issante issare ver +issar issare ver +issare issare ver +issarla issare ver +issarlo issare ver +issarono issare ver +issarsi issare ver +issarvi issare ver +issassero issare ver +issata issare ver +issate issare ver +issati issare ver +issato issare ver +issava issare ver +issavano issare ver +isserà issare ver +issi issare ver +issino issare ver +isso issare ver +issopo issopo nom +issò issare ver +istalla istallare ver +istallando istallare ver +istallano istallare ver +istallare istallare ver +istallarlo istallare ver +istallata istallare ver +istallate istallare ver +istallati istallare ver +istallato istallare ver +istamina istamina nom +istamine istamina nom +istantanea istantaneo adj +istantaneamente istantaneamente adv +istantanee istantaneo adj +istantanei istantaneo adj +istantaneità istantaneità nom +istantaneo istantaneo adj +istante istante nom +istanti istante nom +istanza istanza nom +istanze istanza nom +isterectomia isterectomia nom +isteresi isteresi nom +isteria isteria nom +isterica isterico adj +isteriche isterico adj +isterici isterico adj +isterico isterico adj +isterie isteria nom +isterilimento isterilimento nom +isterilirsi isterilire ver +isterilisce isterilire ver +isterilì isterilire ver +isterismi isterismo nom +isterismo isterismo nom +istiga istigare ver +istigando istigare ver +istigandoli istigare ver +istigandolo istigare ver +istigano istigare ver +istigante istigare ver +istiganti istigare ver +istigare istigare ver +istigarli istigare ver +istigarlo istigare ver +istigarmi istigare ver +istigarono istigare ver +istigasse istigare ver +istigata istigare ver +istigate istigare ver +istigati istigare ver +istigato istigare ver +istigatore istigatore nom +istigatori istigatore nom +istigatrice istigatore nom +istigatrici istigatore nom +istigava istigare ver +istigavano istigare ver +istigazione istigazione nom +istigazioni istigazione nom +istigherà istigare ver +istighi istigare ver +istighino istigare ver +istigo istigare ver +istigò istigare ver +istillare istillare ver +istinti istinto nom +istintiva istintivo adj +istintive istintivo adj +istintivi istintivo adj +istintività istintività nom +istintivo istintivo adj +istinto istinto nom +istiocita istiocita nom +istiociti istiocita nom +istituendo istituire ver +istituendola istituire ver +istituendolo istituire ver +istituendone istituire ver +istituendovi istituire ver +istituente istituire ver +istituiamo istituire ver +istituiranno istituire ver +istituire istituire ver +istituirei istituire ver +istituiremo istituire ver +istituirla istituire ver +istituirli istituire ver +istituirlo istituire ver +istituirne istituire ver +istituirono istituire ver +istituirsi istituire ver +istituirvi istituire ver +istituirà istituire ver +istituisca istituire ver +istituiscano istituire ver +istituisce istituire ver +istituisco istituire ver +istituiscono istituire ver +istituisse istituire ver +istituissero istituire ver +istituita istituire ver +istituite istituire ver +istituitesi istituire ver +istituiti istituire ver +istituito istituire ver +istituiva istituire ver +istituivano istituire ver +istituivo istituire ver +istituti istituto nom +istitutiva istitutivo adj +istitutive istitutivo adj +istitutivi istitutivo adj +istitutivo istitutivo adj +istituto istituto nom +istitutore istitutore nom +istitutori istitutore nom +istitutrice istitutore nom +istitutrici istitutore nom +istituzionale istituzionale adj +istituzionali istituzionale adj +istituzionalisti istituzionalista nom +istituzionalizza istituzionalizzare ver +istituzionalizzando istituzionalizzare ver +istituzionalizzandone istituzionalizzare ver +istituzionalizzandosi istituzionalizzare ver +istituzionalizzano istituzionalizzare ver +istituzionalizzante istituzionalizzare ver +istituzionalizzare istituzionalizzare ver +istituzionalizzarla istituzionalizzare ver +istituzionalizzarlo istituzionalizzare ver +istituzionalizzarono istituzionalizzare ver +istituzionalizzarsi istituzionalizzare ver +istituzionalizzasse istituzionalizzare ver +istituzionalizzata istituzionalizzare ver +istituzionalizzate istituzionalizzare ver +istituzionalizzati istituzionalizzare ver +istituzionalizzato istituzionalizzare ver +istituzionalizzava istituzionalizzare ver +istituzionalizzazione istituzionalizzazione nom +istituzionalizzò istituzionalizzare ver +istituzionalmente istituzionalmente adv +istituzione istituzione nom +istituzioni istituzione nom +istituì istituire ver +istmi istmo nom +istmica istmico adj +istmiche istmico adj +istmici istmico adj +istmico istmico adj +istmo istmo nom +istogenesi istogenesi nom +istogramma istogramma nom +istogrammi istogramma nom +istologa istologo nom +istologi istologo nom +istologia istologia nom +istologica istologico adj +istologiche istologico adj +istologici istologico adj +istologico istologico adj +istologo istologo nom +istoria istoriare ver +istoriai istoriare ver +istoriale istoriare ver +istorianti istoriare ver +istoriare istoriare ver +istoriata istoriare ver +istoriate istoriare ver +istoriati istoriare ver +istoriato istoriare ver +istoriavano istoriare ver +istorii istoriare ver +istoriò istoriare ver +istrada istradare ver +istradando istradare ver +istradare istradare ver +istradata istradare ver +istradati istradare ver +istradato istradare ver +istradò istradare ver +istriana istriano adj +istriane istriano adj +istriani istriano adj +istriano istriano adj +istrice istrice nom +istrici istrice nom +istrione istrione nom +istrioni istrione nom +istrionica istrionico adj +istrioniche istrionico adj +istrionici istrionico adj +istrionico istrionico adj +istrionismo istrionismo nom +istruendo istruire ver +istruendola istruire ver +istruendoli istruire ver +istruendolo istruire ver +istruendomi istruire ver +istruire istruire ver +istruirla istruire ver +istruirle istruire ver +istruirli istruire ver +istruirlo istruire ver +istruirmi istruire ver +istruirne istruire ver +istruirono istruire ver +istruirsi istruire ver +istruirti istruire ver +istruirvi istruire ver +istruirà istruire ver +istruisca istruire ver +istruiscano istruire ver +istruisce istruire ver +istruisci istruire ver +istruisciti istruire ver +istruisco istruire ver +istruiscono istruire ver +istruisse istruire ver +istruissero istruire ver +istruita istruire ver +istruite istruire ver +istruiti istruire ver +istruito istruire ver +istruiva istruire ver +istruivano istruire ver +istruttiva istruttivo adj +istruttive istruttivo adj +istruttivi istruttivo adj +istruttivo istruttivo adj +istruttore istruttore adj +istruttori istruttore nom +istruttoria istruttorio adj +istruttorie istruttorio adj +istruttorio istruttorio adj +istruttrice istruttore nom +istruzione istruzione nom +istruzioni istruzione nom +istruì istruire ver +istupidire istupidire ver +istupidita istupidire ver +istupiditi istupidire ver +istupidito istupidire ver +it it sw +itala italo adj +itale italo adj +itali italo adj +italiana italiano adj +italiane italiano adj +italiani italiano adj +italianismi italianismo nom +italianismo italianismo nom +italianista italianista nom +italianiste italianista nom +italianisti italianista nom +italianità italianità nom +italianizza italianizzare ver +italianizzando italianizzare ver +italianizzandolo italianizzare ver +italianizzandosi italianizzare ver +italianizzante italianizzare ver +italianizzanti italianizzare ver +italianizzare italianizzare ver +italianizzarla italianizzare ver +italianizzarli italianizzare ver +italianizzarlo italianizzare ver +italianizzarono italianizzare ver +italianizzarsi italianizzare ver +italianizzata italianizzare ver +italianizzate italianizzare ver +italianizzati italianizzare ver +italianizzato italianizzare ver +italianizzerà italianizzare ver +italianizziamo italianizzare ver +italianizzò italianizzare ver +italiano italiano adj +italica italico adj +italiche italico adj +italici italico adj +italico italico adj +italiota italiota adj +italiote italiota adj +italioti italiota adj +italo italo adj +italoamericana italoamericano adj +italoamericane italoamericano adj +italoamericani italoamericano adj +italoamericano italoamericano adj +iter iter nom +itera iterare ver +iterabile iterabile adj +iteraci iterare ver +iterando iterare ver +iterare iterare ver +iterasse iterare ver +iterata iterare ver +iterate iterare ver +iterati iterare ver +iterativa iterativo adj +iterative iterativo adj +iterativi iterativo adj +iterativo iterativo adj +iterato iterare ver +iterazione iterazione nom +iterazioni iterazione nom +iteri iterare ver +itero iterare ver +itinerante itinerante adj +itineranti itinerante adj +itinerari itinerario nom +itinerario itinerario nom +itterbio itterbio nom +itteri ittero nom +itterica itterico adj +itteriche itterico adj +itterico itterico adj +itterizia itterizia nom +ittero ittero nom +ittica ittico adj +ittiche ittico adj +ittici ittico adj +ittico ittico adj +ittiocolla ittiocolla nom +ittiofaga ittiofago adj +ittiofagi ittiofago adj +ittiofago ittiofago adj +ittiolo ittiolo nom +ittiologa ittiologo nom +ittiologi ittiologo nom +ittiologia ittiologia nom +ittiologica ittiologico adj +ittiologiche ittiologico adj +ittiologico ittiologico adj +ittiologo ittiologo nom +ittiosauri ittiosauro nom +ittiosauro ittiosauro nom +ittita ittita adj +ittite ittita adj +ittiti ittita adj +ittrio ittrio nom +iugeri iugero nom +iugero iugero nom +iugoslava iugoslavo adj +iugoslave iugoslavo adj +iugoslavi iugoslavo adj +iugoslavia iugoslavia npr +iugoslavo iugoslavo adj +iugula iugulare ver +iuta iuta nom +iute iuta nom +iutificio iutificio nom +iv iv num +ivi ivi adv_sup +ivoriana ivoriano adj +ivoriane ivoriano adj +ivoriani ivoriano adj +ivoriano ivoriano adj +j j sw +jabot jabot nom +jack jack nom +jacquard jacquard adj +jais jais nom +jazz jazz nom +jazzista jazzista nom +jazzisti jazzista nom +jazzistica jazzistico adj +jazzistiche jazzistico adj +jazzistici jazzistico adj +jazzistico jazzistico adj +jeans jeans nom +jeep jeep nom +jersey jersey nom +jet jet nom +jiddish jiddish adj +job job nom +jockey jockey nom +jodel jodel nom +jodler jodler nom +jogging jogging nom +joint joint adj +jolly jolly nom +joule joule nom +joyciana joyciano adj +joyciani joyciano adj +joyciano joyciano adj +judo judo nom +judoista judoista nom +judoisti judoista nom +judoka judoka nom +jugoslava jugoslavo adj +jugoslave jugoslavo adj +jugoslavi jugoslavo adj +jugoslavo jugoslavo adj +jujitsu jujitsu nom +jumbo jumbo nom +jungla jungla nom +jungle jungla nom +junior junior adj +junker junker nom +jupon jupon nom +juta juta nom +jute juta nom +k k sw +kafkiana kafkiano adj +kafkiane kafkiano adj +kafkiani kafkiano adj +kafkiano kafkiano adj +kainite kainite nom +kaiser kaiser nom +kakemono kakemono nom +kaki kaki adj +kamikaze kamikaze nom +kanban kanban npr +kantiana kantiano adj +kantiane kantiano adj +kantiani kantiano adj +kantiano kantiano adj +kaone kaone nom +kaoni kaone nom +kapok kapok nom +kaputt kaputt adj +kapò kapò nom +karakiri karakiri nom +karakul karakul nom +karate karate nom +kart kart nom +kartismo kartismo nom +kartodromi kartodromo nom +kartodromo kartodromo nom +kasher kasher nom +kayak kayak nom +kayakisti kayakista nom +kazachi kazaco nom +ke ke sw +kefir kefir nom +kelvin kelvin nom +keniota keniota adj +keniote keniota adj +kenioti keniota adj +kepleriana kepleriano adj +kepleriane kepleriano adj +kepleriani kepleriano adj +kepleriano kepleriano adj +kermes kermes nom +kermesse kermesse nom +kerosene kerosene nom +ketch ketch nom +ketchup ketchup nom +kg kg abr +khan khan nom +khmer khmer adj +kibbutz kibbutz nom +kidnapping kidnapping nom +killer killer nom +kilowattora kilowattora nom +kilt kilt nom +kimono kimono nom +kindergarten kindergarten nom +kinderheim kinderheim nom +kinesiterapia kinesiterapia nom +kirsch kirsch nom +kit kit nom +kitsch kitsch nom +kiwi kiwi nom +klimax klimax nom +klystron klystron nom +km km nom +kmq kmq nom +knickerbockers knickerbockers nom +knut knut nom +koala koala nom +koilon koilon nom +koinè koinè nom +kolchoz kolchoz nom +kore kore nom +kouros kouros nom +krapfen krapfen nom +kripton kripton nom +kriss kriss nom +krug krug nom +krypton krypton nom +kulak kulak nom +kuros kuros nom +kursaal kursaal nom +kw kw nom +kyrie kyrie nom +képi képi nom +kümmel kümmel nom +l l sw +la il det +labari labaro nom +labaro labaro nom +labbra labbro nom +labbri labbro nom +labbro labbro nom +labe labe nom +labelli labello nom +labello labello nom +labi labe nom +labiale labiale adj +labiali labiale adj +labializzata labializzare ver +labializzate labializzare ver +labializzati labializzare ver +labializzato labializzare ver +labializzazione labializzazione nom +labiata labiato adj +labiate labiato adj +labiati labiato adj +labiato labiato adj +labile labile adj +labili labile adj +labilità labilità nom +labiodentale labiodentale adj +labiodentali labiodentale adj +labirinti labirinto nom +labirintica labirintico adj +labirintiche labirintico adj +labirintici labirintico adj +labirintico labirintico adj +labirintite labirintite nom +labirinto labirinto nom +laboratori laboratorio nom +laboratorio laboratorio nom +laboratorista laboratorista nom +laboriosa laborioso adj +laboriosamente laboriosamente adv +laboriose laborioso adj +laboriosi laborioso adj +laboriosità laboriosità nom +laborioso laborioso adj +labradorite labradorite nom +laburismo laburismo nom +laburista laburista adj +laburiste laburista adj +laburisti laburista nom +lacca lacca nom +laccano laccare ver +laccare laccare ver +laccasi laccare ver +laccata laccare ver +laccate laccare ver +laccati laccare ver +laccato laccare ver +laccatura laccatura nom +laccature laccatura nom +lacche lacca nom +lacchi laccare ver +lacchè lacchè nom +lacci laccio nom +laccio laccio nom +laccioli lacciolo nom +lacco laccare ver +laccolite laccolite nom +laccoliti laccolite nom +lacedemone lacedemone adj +lacedemoni lacedemone nom +lacera lacerare ver +lacerando lacerare ver +lacerandogli lacerare ver +lacerandola lacerare ver +lacerandole lacerare ver +lacerandolo lacerare ver +lacerandone lacerare ver +lacerandosi lacerare ver +lacerano lacerare ver +lacerante lacerante adj +laceranti lacerante adj +lacerare lacerare ver +lacerarla lacerare ver +lacerarle lacerare ver +lacerarne lacerare ver +lacerarono lacerare ver +lacerarsi lacerare ver +lacerata lacerare ver +lacerate lacerare ver +lacerati lacerare ver +lacerato lacerare ver +lacerava lacerare ver +laceravano lacerare ver +lacerazione lacerazione nom +lacerazioni lacerazione nom +lacere lacero adj +lacererà lacerare ver +laceri lacero adj +lacerino lacerare ver +lacerna lacerna nom +lacero lacero adj +lacerti lacerto nom +lacerto lacerto nom +lacerò lacerare ver +lacinia lacinia nom +laciniata laciniato adj +laciniate laciniato adj +laciniati laciniato adj +laciniato laciniato adj +lacinie lacinia nom +laconica laconico adj +laconiche laconico adj +laconici laconico adj +laconicità laconicità nom +laconico laconico adj +lacrima lacrima nom +lacrimabili lacrimabile adj +lacrimale lacrimale adj +lacrimali lacrimale adj +lacrimando lacrimare ver +lacrimano lacrimare ver +lacrimante lacrimare ver +lacrimanti lacrimare ver +lacrimare lacrimare ver +lacrimata lacrimare ver +lacrimato lacrimare ver +lacrimatoi lacrimatoio nom +lacrimatoio lacrimatoio nom +lacrimava lacrimare ver +lacrimazione lacrimazione nom +lacrimazioni lacrimazione nom +lacrime lacrima nom +lacrimevole lacrimevole adj +lacrimevoli lacrimevole adj +lacrimi lacrimare ver +lacrimo lacrimare ver +lacrimogena lacrimogeno adj +lacrimogene lacrimogeno adj +lacrimogeni lacrimogeno adj +lacrimogeno lacrimogeno adj +lacrimosa lacrimoso adj +lacrimosi lacrimoso adj +lacrimoso lacrimoso adj +lacuale lacuale adj +lacuali lacuale adj +lacuna lacuna nom +lacunare lacunare nom +lacunari lacunare nom +lacune lacuna nom +lacunosa lacunoso adj +lacunose lacunoso adj +lacunosi lacunoso adj +lacunosità lacunosità nom +lacunoso lacunoso adj +lacustre lacustre adj +lacustri lacustre adj +laddove laddove adv_sup +ladina ladino adj +ladine ladino adj +ladini ladino adj +ladino ladino adj +ladra ladro adj +ladre ladro adj +ladresche ladresco adj +ladresco ladresco adj +ladri ladro nom +ladro ladro nom +ladrocinio ladrocinio nom +ladrone ladrone nom +ladroni ladrone nom +ladruncoli ladruncolo nom +ladruncolo ladruncolo nom +lady lady nom +lager lager nom +laggiù laggiù adv +laghi lago nom +lagna lagna nom +lagnai lagnarsi ver +lagnandosi lagnarsi ver +lagnano lagnarsi ver +lagnanza lagnanza nom +lagnanze lagnanza nom +lagnarono lagnarsi ver +lagnarsi lagnarsi ver +lagnarti lagnarsi ver +lagnato lagnarsi ver +lagnava lagnarsi ver +lagnavano lagnarsi ver +lagne lagna nom +lagnerò lagnarsi ver +lagni lagno nom +lagno lagno nom +lagnose lagnoso adj +lagnosi lagnoso adj +lagnoso lagnoso adj +lagnò lagnarsi ver +lago lago nom +lagoftalmo lagoftalmo nom +lagrima lagrima nom +lagrime lagrima nom +laguna laguna nom +lagunare lagunare adj +lagunari lagunare adj +lagune laguna nom +lai lai nom +laica laico adj +laicale laicale adj +laicali laicale adj +laicato laicato nom +laiche laico adj +laici laico nom +laicismo laicismo nom +laicista laicista adj +laiciste laicista adj +laicisti laicista adj +laicità laicità nom +laicizza laicizzare ver +laicizzando laicizzare ver +laicizzante laicizzare ver +laicizzare laicizzare ver +laicizzata laicizzare ver +laicizzate laicizzare ver +laicizzati laicizzare ver +laicizzato laicizzare ver +laicizzò laicizzare ver +laico laico adj +laida laido adj +laide laido adj +laidezze laidezza nom +laidi laido adj +laido laido adj +lallazione lallazione nom +lallazioni lallazione nom +lama lama nom +lamantini lamantino nom +lamantino lamantino nom +lamatura lamatura nom +lambda lambda nom +lambendo lambire ver +lambendole lambire ver +lambendone lambire ver +lambente lambire ver +lambenti lambire ver +lambert lambert nom +lambiccano lambiccare ver +lambiccare lambiccare ver +lambiccarsi lambiccare ver +lambiccato lambiccato adj +lambicchi lambicco nom +lambicco lambicco nom +lambii lambire ver +lambire lambire ver +lambirlo lambire ver +lambirne lambire ver +lambirono lambire ver +lambirà lambire ver +lambisca lambire ver +lambisce lambire ver +lambiscono lambire ver +lambisse lambire ver +lambita lambire ver +lambite lambire ver +lambiti lambire ver +lambito lambire ver +lambiva lambire ver +lambivano lambire ver +lambrecchini lambrecchini nom +lambretta lambretta nom +lambrette lambretta nom +lambrusca lambrusca nom +lambrusco lambrusco nom +lambì lambire ver +lamella lamella nom +lamellare lamellare adj +lamellari lamellare adj +lamelle lamella nom +lamellibranchi lamellibranchi nom +lamenta lamentare ver +lamentaci lamentare ver +lamentai lamentare ver +lamentale lamentare ver +lamentando lamentare ver +lamentandomi lamentare ver +lamentandone lamentare ver +lamentandosene lamentare ver +lamentandosi lamentare ver +lamentano lamentare ver +lamentanze lamentanza nom +lamentar lamentare ver +lamentarci lamentare ver +lamentare lamentare ver +lamentarmene lamentare ver +lamentarmi lamentare ver +lamentarne lamentare ver +lamentarono lamentare ver +lamentarsene lamentare ver +lamentarsi lamentare ver +lamentartene lamentare ver +lamentarti lamentare ver +lamentarvi lamentare ver +lamentasse lamentare ver +lamentassero lamentare ver +lamentassi lamentare ver +lamentata lamentare ver +lamentate lamentare ver +lamentatevi lamentare ver +lamentati lamentare ver +lamentato lamentare ver +lamentava lamentare ver +lamentavano lamentare ver +lamentavi lamentare ver +lamentavo lamentare ver +lamentazione lamentazione nom +lamentazioni lamentazione nom +lamentela lamentela nom +lamentele lamentela nom +lamenteranno lamentare ver +lamenterebbe lamentare ver +lamenterebbero lamentare ver +lamenterei lamentare ver +lamenteresti lamentare ver +lamenterà lamentare ver +lamenterò lamentare ver +lamentevole lamentevole adj +lamentevoli lamentevole adj +lamenti lamento nom +lamentiamo lamentare ver +lamentiamoci lamentare ver +lamentino lamentare ver +lamento lamento nom +lamentosa lamentoso adj +lamentose lamentoso adj +lamentosi lamentoso adj +lamentoso lamentoso adj +lamentò lamentare ver +lametta lametta nom +lamette lametta nom +lami lama nom +lamia lamia nom +lamie lamia nom +lamiera lamiera nom +lamiere lamiera nom +lamierini lamierino nom +lamierino lamierino nom +lamina lamina nom +laminaci laminare ver +laminale laminare ver +laminali laminare ver +laminar laminare ver +laminare laminare adj +laminari laminare adj +laminaria laminaria nom +laminarie laminaria nom +laminarsi laminare ver +laminata laminare ver +laminate laminato adj +laminati laminato adj +laminato laminato adj +laminatoi laminatoio nom +laminatoio laminatoio nom +laminatore laminatore adj +laminatura laminatura nom +laminazione laminazione nom +laminazioni laminazione nom +lamine lamina nom +lamino laminare ver +lampada lampada nom +lampadari lampadario nom +lampadario lampadario nom +lampade lampada nom +lampadina lampadina nom +lampadine lampadina nom +lampante lampante adj +lampanti lampante adj +lampara lampara nom +lampare lampara nom +lampassi lampasso nom +lampasso lampasso nom +lampeggiamenti lampeggiamento nom +lampeggiamento lampeggiamento nom +lampeggiatore lampeggiatore nom +lampeggiatori lampeggiatore nom +lampi lampo nom +lampionaio lampionaio nom +lampione lampione nom +lampioni lampione nom +lampo lampo adj +lampone lampone nom +lamponi lampone nom +lampreda lampreda nom +lamprede lampreda nom +lamé lamé nom +lana lana nom +lanaioli lanaiolo nom +lanaiolo lanaiolo nom +lance lancia nom +lanceolata lanceolato adj +lanceolate lanceolato adj +lanceolati lanceolato adj +lanceolato lanceolato adj +lanceranno lanciare ver +lancerebbe lanciare ver +lancerei lanciare ver +lanceremo lanciare ver +lancerà lanciare ver +lancerò lanciare ver +lancetta lancetta nom +lancette lancetta nom +lanci lancio nom +lancia lancia nom +lanciabile lanciabile adj +lanciabili lanciabile adj +lanciabombe lanciabombe nom +lanciafiamme lanciafiamme nom +lanciagranate lanciagranate nom +lanciai lanciare ver +lanciala lanciare ver +lanciamissili lanciamissili adj +lanciamo lanciare ver +lanciamoci lanciare ver +lanciando lanciare ver +lanciandoci lanciare ver +lanciandogli lanciare ver +lanciandoglielo lanciare ver +lanciandola lanciare ver +lanciandole lanciare ver +lanciandoli lanciare ver +lanciandolo lanciare ver +lanciandomi lanciare ver +lanciandone lanciare ver +lanciandosi lanciare ver +lanciandovi lanciare ver +lanciane lanciare ver +lanciano lanciare ver +lanciante lanciare ver +lancianti lanciare ver +lanciar lanciare ver +lanciarazzi lanciarazzi nom +lanciarci lanciare ver +lanciare lanciare ver +lanciargli lanciare ver +lanciarla lanciare ver +lanciarle lanciare ver +lanciarli lanciare ver +lanciarlo lanciare ver +lanciarmi lanciare ver +lanciarne lanciare ver +lanciarono lanciare ver +lanciarsi lanciare ver +lanciarti lanciare ver +lanciarvi lanciare ver +lanciasiluri lanciasiluri nom +lanciasse lanciare ver +lanciassero lanciare ver +lanciassi lanciare ver +lanciassimo lanciare ver +lanciata lanciare ver +lanciate lanciare ver +lanciategli lanciare ver +lanciatesi lanciare ver +lanciati lanciare ver +lanciato lanciare ver +lanciatore lanciatore nom +lanciatori lanciatore nom +lanciatrice lanciatore nom +lanciatrici lanciatore nom +lanciava lanciare ver +lanciavamo lanciare ver +lanciavano lanciare ver +lanciavo lanciare ver +lanciere lanciere nom +lancieri lanciere nom +lancinante lancinante adj +lancinanti lancinante adj +lancino lanciare ver +lancio lancio nom +lanciò lanciare ver +landa landa nom +landau landau nom +lande landa nom +landò landò nom +lane lana nom +lanetta lanetta nom +lanette lanetta nom +langravi langravio nom +langravio langravio nom +languendo languire ver +languente languire ver +languenti languire ver +languida languido adj +languide languido adj +languidezza languidezza nom +languidi languido adj +languido languido adj +languir languire ver +languire languire ver +languirono languire ver +languirà languire ver +languisce languire ver +languiscono languire ver +languisse languire ver +languito languire ver +languiva languire ver +languivano languire ver +languore languore nom +languori languore nom +languì languire ver +laniera laniero adj +laniere laniero adj +lanieri laniero adj +laniero laniero adj +lanifici lanificio nom +lanificio lanificio nom +lanital lanital nom +lanolina lanolina nom +lanosa lanoso adj +lanose lanoso adj +lanosi lanoso adj +lanoso lanoso adj +lantana lantana nom +lantane lantana nom +lantani lantanio nom +lantanide lantanide nom +lantanidi lantanide nom +lantanio lantanio nom +lanterna lanterna nom +lanterne lanterna nom +lanternini lanternino nom +lanternino lanternino nom +lanugine lanugine nom +lanuginosa lanuginoso adj +lanuginose lanuginoso adj +lanuginosi lanuginoso adj +lanuginoso lanuginoso adj +lanzardo lanzardo nom +lanzi lanzo nom +lanzichenecchi lanzichenecco nom +lanzichenecco lanzichenecco nom +lanzo lanzo nom +laonde laonde con +laotiana laotiano nom +laotiane laotiano nom +laotiani laotiano nom +laotiano laotiano nom +lapalissiana lapalissiano adj +lapalissiane lapalissiano adj +lapalissiani lapalissiano adj +lapalissiano lapalissiano adj +laparotomia laparotomia nom +laparotomie laparotomia nom +lapicida lapicida nom +lapicidi lapicida nom +lapida lapidare ver +lapidaci lapidare ver +lapidandoli lapidare ver +lapidandolo lapidare ver +lapidano lapidare ver +lapidare lapidare ver +lapidari lapidario adj +lapidaria lapidario adj +lapidariamente lapidariamente adv +lapidarie lapidario adj +lapidario lapidario adj +lapidarla lapidare ver +lapidarlo lapidare ver +lapidarono lapidare ver +lapidata lapidare ver +lapidate lapidare ver +lapidatemi lapidare ver +lapidati lapidare ver +lapidato lapidare ver +lapidatore lapidatore nom +lapidatori lapidatore nom +lapidatrice lapidatore nom +lapidatrici lapidatore nom +lapidazione lapidazione nom +lapidazioni lapidazione nom +lapide lapide nom +lapidea lapideo adj +lapidee lapideo adj +lapidei lapideo adj +lapideo lapideo adj +lapidi lapide nom +lapido lapidare ver +lapidò lapidare ver +lapilli lapillo nom +lapillo lapillo nom +lapin lapin nom +lapis lapis nom +lapislazzuli lapislazzuli nom +lappa lappa nom +lappano lappare ver +lappata lappare ver +lappate lappare ver +lappati lappare ver +lappato lappare ver +lappatura lappatura nom +lappe lappa nom +lappi lappare ver +lappo lappare ver +lappola lappola nom +lappole lappola nom +lappone lappone adj +lapponi lappone adj +lapsus lapsus nom +larari larario nom +larario larario nom +lardellare lardellare ver +lardellato lardellare ver +lardelli lardello nom +lardello lardello nom +lardi lardo nom +lardo lardo nom +lare lare nom +larga largo adj +largamente largamente adv_sup +larghe largo adj +largheggiando largheggiare ver +largheggiante largheggiare ver +largheggiare largheggiare ver +largheggiato largheggiare ver +largheggiavano largheggiare ver +larghezza larghezza nom +larghezze larghezza nom +larghi largo adj +larghissima larghissimo adj +larghissime larghissimo adj +larghissimi larghissimo adj +larghissimo larghissimo adj +largire largire ver +largisce largire ver +largita largire ver +largiti largire ver +largito largire ver +largizione largizione nom +largizioni largizione nom +largo largo adj +largura largura nom +lari lare nom +lariana lariano adj +lariane lariano adj +lariani lariano adj +lariano lariano adj +larice larice nom +larici larice nom +laringe laringe nom +laringea laringeo adj +laringectomia laringectomia nom +laringee laringeo adj +laringei laringeo adj +laringeo laringeo adj +laringite laringite nom +laringiti laringite nom +laringoscopia laringoscopia nom +larva larva nom +larvale larvale adj +larvali larvale adj +larvata larvato adj +larvate larvato adj +larvati larvato adj +larvato larvato adj +larve larva nom +lasagna lasagna nom +lasagne lasagna nom +lasca lasco adj +lascerai lasciare ver +lasceranno lasciare ver +lascerebbe lasciare ver +lascerebbero lasciare ver +lascerei lasciare ver +lasceremmo lasciare ver +lasceremo lasciare ver +lascereste lasciare ver +lasceresti lasciare ver +lascerete lasciare ver +lascerà lasciare ver +lascerò lasciare ver +lasche lasco adj +laschi lasco adj +lasci lasciare ver +lascia lasciare ver +lasciaci lasciare ver +lasciagli lasciare ver +lasciai lasciare ver +lasciala lasciare ver +lasciale lasciare ver +lasciali lasciare ver +lascialo lasciare ver +lasciamelo lasciare ver +lasciami lasciare ver +lasciammo lasciare ver +lasciamo lasciare ver +lasciamoci lasciare ver +lasciamogli lasciare ver +lasciamola lasciare ver +lasciamole lasciare ver +lasciamoli lasciare ver +lasciamolo lasciare ver +lasciando lasciare ver +lasciandoci lasciare ver +lasciandogli lasciare ver +lasciandogliela lasciare ver +lasciandoglielo lasciare ver +lasciandola lasciare ver +lasciandole lasciare ver +lasciandoli lasciare ver +lasciandolo lasciare ver +lasciandomi lasciare ver +lasciandone lasciare ver +lasciandoseli lasciare ver +lasciandoselo lasciare ver +lasciandosene lasciare ver +lasciandosi lasciare ver +lasciandovi lasciare ver +lasciane lasciare ver +lasciano lasciare ver +lasciante lasciare ver +lasciapassare lasciapassare nom +lasciar lasciare ver +lasciarcela lasciare ver +lasciarcele lasciare ver +lasciarceli lasciare ver +lasciarcelo lasciare ver +lasciarci lasciare ver +lasciare lasciare ver +lasciargli lasciare ver +lasciargliela lasciare ver +lasciargliele lasciare ver +lasciarglieli lasciare ver +lasciarglielo lasciare ver +lasciarla lasciare ver +lasciarle lasciare ver +lasciarli lasciare ver +lasciarlo lasciare ver +lasciarmelo lasciare ver +lasciarmi lasciare ver +lasciarne lasciare ver +lasciarono lasciare ver +lasciarsela lasciare ver +lasciarselo lasciare ver +lasciarsi lasciare ver +lasciarti lasciare ver +lasciarvelo lasciare ver +lasciarvi lasciare ver +lasciasi lasciare ver +lasciasse lasciare ver +lasciassero lasciare ver +lasciassi lasciare ver +lasciassimo lasciare ver +lasciaste lasciare ver +lasciasti lasciare ver +lasciata lasciare ver +lasciate lasciare ver +lasciateci lasciare ver +lasciategli lasciare ver +lasciatela lasciare ver +lasciatele lasciare ver +lasciateli lasciare ver +lasciatelo lasciare ver +lasciatemela lasciare ver +lasciatemelo lasciare ver +lasciatemene lasciare ver +lasciatemi lasciare ver +lasciatevi lasciare ver +lasciati lasciare ver +lasciato lasciare ver +lasciava lasciare ver +lasciavamo lasciare ver +lasciavano lasciare ver +lasciavi lasciare ver +lasciavo lasciare ver +lascino lasciare ver +lascio lasciare ver +lasciti lascito nom +lascito lascito nom +lasciva lascivo adj +lascive lascivo adj +lascivi lascivo adj +lascivia lascivia nom +lascivie lascivia nom +lascivo lascivo adj +lasciò lasciare ver +lasco lasco adj +laser laser nom +lassa lasso adj +lassativa lassativo adj +lassative lassativo adj +lassativi lassativo adj +lassativo lassativo adj +lasse lasso adj +lassi lasso adj +lassismo lassismo nom +lassista lassista adj +lassiste lassista adj +lassisti lassista adj +lasso lasso nom +lassù lassù adv +lastra lastra nom +lastre lastra nom +lastricando lastricare ver +lastricare lastricare ver +lastricarono lastricare ver +lastricata lastricare ver +lastricate lastricato adj +lastricati lastricato adj +lastricato lastricare ver +lastricatura lastricatura nom +lastrici lastrico nom +lastrico lastrico nom +lastricò lastricare ver +lastrone lastrone nom +lastroni lastrone nom +latente latente adj +latenti latente adj +latenza latenza nom +latenze latenza nom +laterale laterale adj +laterali laterale adj +lateralmente lateralmente adv +laterite laterite nom +lateriti laterite nom +laterizi laterizio nom +laterizia laterizio adj +laterizie laterizio adj +laterizio laterizio nom +lati lato nom +latice latice nom +laticlavio laticlavio nom +latifondi latifondo nom +latifondista latifondista nom +latifondiste latifondista nom +latifondisti latifondista nom +latifondo latifondo nom +latina latino adj +latine latino adj +latineggiante latineggiante adj +latineggianti latineggiante adj +latini latino adj +latinismi latinismo nom +latinismo latinismo nom +latinista latinista nom +latiniste latinista nom +latinisti latinista nom +latinità latinità nom +latinizza latinizzare ver +latinizzando latinizzare ver +latinizzandolo latinizzare ver +latinizzandone latinizzare ver +latinizzano latinizzare ver +latinizzante latinizzare ver +latinizzare latinizzare ver +latinizzarlo latinizzare ver +latinizzarono latinizzare ver +latinizzata latinizzare ver +latinizzate latinizzare ver +latinizzati latinizzare ver +latinizzato latinizzare ver +latinizzazione latinizzazione nom +latinizzazioni latinizzazione nom +latinizzò latinizzare ver +latino latino adj +latinucci latinuccio nom +latitante latitante adj +latitanti latitante nom +latitanza latitanza nom +latitudinale latitudinale adj +latitudinali latitudinale adj +latitudine latitudine nom +latitudini latitudine nom +lato lato nom_sup +latomia latomia nom +latomie latomia nom +latore latore nom +latori latore nom +latra latrare ver +latrale latrare ver +latrali latrare ver +latrando latrare ver +latrano latrare ver +latrante latrare ver +latranti latrare ver +latrare latrare ver +latrati latrato nom +latrato latrato nom +latravano latrare ver +latri latrare ver +latria latria nom +latrice latore nom +latrici latore nom +latrie latria nom +latrina latrina nom +latrine latrina nom +latro latrare ver +latrocinio latrocinio nom +latta latta nom +lattai lattaio nom +lattaio lattaio nom +lattante lattante nom +lattanti lattante nom +lattasi lattasi nom +lattazione lattazione nom +latte latta|latte nom +lattea latteo adj +lattee latteo adj +lattei latteo adj +lattemiele lattemiele nom +latteo latteo adj +latteria latteria nom +latterie latteria nom +lattescente lattescente adj +lattescenti lattescente adj +lattescenza lattescenza nom +latti latte nom +lattica lattico adj +lattice lattice nom +latticello latticello nom +lattiche lattico adj +lattici lattico adj +latticini latticinio nom +latticinio latticinio nom +lattico lattico adj +lattiera lattiero adj +lattiere lattiero adj +lattieri lattiero adj +lattiero lattiero adj +lattifera lattifero adj +lattifere lattifero adj +lattiferi lattifero adj +lattifero lattifero adj +lattiginosa lattiginoso adj +lattiginose lattiginoso adj +lattiginosi lattiginoso adj +lattiginoso lattiginoso adj +lattime lattime nom +lattina lattina nom +lattine lattina nom +lattoniere lattoniere nom +lattonieri lattoniere nom +lattonzoli lattonzolo nom +lattonzolo lattonzolo nom +lattosio lattosio nom +lattuga lattuga nom +lattughe lattuga nom +lauda lauda nom +laudani laudano nom +laudano laudano nom +laudari laudario nom +laudario laudario nom +laudativa laudativo adj +laudative laudativo adj +laudativi laudativo adj +laudativo laudativo adj +laude lauda nom +laudesi laudese nom +launeddas launeddas nom +lauracee lauracee nom +laurea laurea nom +laureaci laureare ver +laureanda laureando nom +laureandi laureando nom +laureando laureando adj +laureandosi laureare ver +laureano laureare ver +laureare laureare ver +laurearmi laureare ver +laurearono laureare ver +laurearsi laureare ver +laurearti laureare ver +laureata laureare ver +laureate laureato adj +laureatesi laureare ver +laureati laureato nom +laureato laureare ver +laureava laureare ver +lauree laurea nom +laureeranno laureare ver +laureerà laureare ver +laureerò laureare ver +laurei laureare ver +laurenzi laurenzio nom +laurenzio laurenzio nom +laureo laureare ver +laureti laureto nom +laureto laureto nom +laureò laureare ver +lauri lauro nom +lauro lauro nom +laurocerasi lauroceraso nom +lauroceraso lauroceraso nom +lauta lauto adj +laute lauto adj +lauti lauto adj +lauto lauto adj +lava lava nom +lavabi lavabo nom +lavabiancheria lavabiancheria nom +lavabile lavabile adj +lavabili lavabile adj +lavabo lavabo nom +lavabottiglie lavabottiglie nom +lavacri lavacro nom +lavacristalli lavacristallo nom +lavacristallo lavacristallo nom +lavacro lavacro nom +lavaggi lavaggio nom +lavaggio lavaggio nom +lavagna lavagna nom +lavagne lavagna nom +lavai lavare ver +lavale lavare ver +lavali lavare ver +lavalliere lavalliere nom +lavamano lavamano nom +lavami lavare ver +lavanda lavanda nom +lavandai lavandaio nom +lavandaia lavandaio nom +lavandaie lavandaio nom +lavandaio lavandaio nom +lavande lavanda nom +lavanderia lavanderia nom +lavanderie lavanderia nom +lavandini lavandino nom +lavandino lavandino nom +lavando lavare ver +lavandogli lavare ver +lavandole lavare ver +lavandoli lavare ver +lavandolo lavare ver +lavandosene lavare ver +lavandosi lavare ver +lavane lavare ver +lavano lavare ver +lavanti lavare ver +lavapiatti lavapiatti nom +lavar lavare ver +lavarci lavare ver +lavare lavare ver +lavarelli lavarello nom +lavarello lavarello nom +lavargli lavare ver +lavarla lavare ver +lavarle lavare ver +lavarli lavare ver +lavarlo lavare ver +lavarmi lavare ver +lavarono lavare ver +lavarsene lavare ver +lavarsi lavare ver +lavartene lavare ver +lavarti lavare ver +lavarvi lavare ver +lavasse lavare ver +lavassero lavare ver +lavassi lavare ver +lavaste lavare ver +lavastoviglie lavastoviglie nom +lavata lavare ver +lavate lavare ver +lavateli lavare ver +lavatevi lavare ver +lavati lavare ver +lavativa lavativo nom +lavativi lavativo nom +lavativo lavativo nom +lavato lavare ver +lavatoi lavatoio nom +lavatoio lavatoio nom +lavatore lavatore nom +lavatori lavatore nom +lavatrice lavatore|lavatrice nom +lavatrici lavatore|lavatrice nom +lavatura lavatura nom +lavature lavatura nom +lavava lavare ver +lavavano lavare ver +lavavi lavare ver +lavavo lavare ver +lave lava nom +lavelli lavello nom +lavello lavello nom +laverebbe lavare ver +laverebbero lavare ver +laverei lavare ver +laverà lavare ver +laverò lavare ver +lavi lavare ver +laviamo lavare ver +lavica lavico adj +laviche lavico adj +lavici lavico adj +lavico lavico adj +lavina lavina nom +lavine lavina nom +lavino lavare ver +lavo lavare ver +lavora lavorare ver +lavorabile lavorabile adj +lavorabili lavorabile adj +lavorabilità lavorabilità nom +lavoraci lavorare ver +lavorai lavorare ver +lavorale lavorare ver +lavorammo lavorare ver +lavorando lavorare ver +lavorandoci lavorare ver +lavorandolo lavorare ver +lavorandovi lavorare ver +lavorano lavorare ver +lavorante lavorante adj +lavoranti lavorante nom +lavorar lavorare ver +lavorarci lavorare ver +lavorare lavorare ver +lavorarla lavorare ver +lavorarle lavorare ver +lavorarli lavorare ver +lavorarlo lavorare ver +lavorarne lavorare ver +lavorarono lavorare ver +lavorarsi lavorare ver +lavorarvi lavorare ver +lavorasse lavorare ver +lavorassero lavorare ver +lavorassi lavorare ver +lavorassimo lavorare ver +lavoraste lavorare ver +lavorata lavorare ver +lavorate lavorare ver +lavorateci lavorare ver +lavorati lavorato adj +lavorativa lavorativo adj +lavorative lavorativo adj +lavorativi lavorativo adj +lavorativo lavorativo adj +lavorato lavorare ver +lavoratore lavoratore nom +lavoratori lavoratore nom +lavoratrice lavoratore nom +lavoratrici lavoratore nom +lavorava lavorare ver +lavoravamo lavorare ver +lavoravano lavorare ver +lavoravi lavorare ver +lavoravo lavorare ver +lavorazione lavorazione nom +lavorazioni lavorazione nom +lavorerai lavorare ver +lavoreranno lavorare ver +lavorerebbe lavorare ver +lavorerebbero lavorare ver +lavorerei lavorare ver +lavoreremmo lavorare ver +lavoreremo lavorare ver +lavorerà lavorare ver +lavorerò lavorare ver +lavori lavorio|lavoro nom +lavoriamo lavorare ver +lavoriamoci lavorare ver +lavoriate lavorare ver +lavoricchiando lavoricchiare ver +lavoricchiato lavoricchiare ver +lavorino lavorare ver +lavorio lavorio nom +lavoro lavoro nom_sup +lavorò lavorare ver +lavò lavare ver +lazi lazo nom +laziale laziale adj +laziali laziale adj +lazo lazo nom +lazza lazzo adj +lazzaretti lazzaretto nom +lazzaretto lazzaretto nom +lazzarone lazzarone nom +lazzaroni lazzarone nom +lazze lazzo adj +lazzeruolo lazzeruolo nom +lazzi lazzo adj +lazzo lazzo nom +le il det +leacril leacril nom +leader leader nom +leaderismo leaderismo nom +leaders leader nom +leadership leadership nom +leale leale adj +leali leale adj +lealismo lealismo nom +lealisti lealista nom +lealmente lealmente adv +lealtà lealtà nom +leardi leardo adj +leardo leardo adj +leasing leasing nom +lebbra lebbra nom +lebbre lebbra nom +lebbrosa lebbroso adj +lebbrosari lebbrosario nom +lebbrosario lebbrosario nom +lebbrose lebbroso nom +lebbrosi lebbroso nom +lebbroso lebbroso nom +lebete lebete nom +lebeti lebete nom +lecca leccare ver +leccamelo leccare ver +leccami leccare ver +leccando leccare ver +leccandole leccare ver +leccandoli leccare ver +leccandolo leccare ver +leccandosi leccare ver +leccano leccare ver +leccapiatti leccapiatti nom +leccapiedi leccapiedi nom +leccarda leccarda nom +leccare leccare ver +leccargli leccare ver +leccarla leccare ver +leccarle leccare ver +leccarli leccare ver +leccarlo leccare ver +leccarono leccare ver +leccarsi leccare ver +leccasse leccare ver +leccata leccare ver +leccate leccata nom +leccati leccare ver +leccato leccare ver +leccava leccare ver +leccavela leccare ver +lecceti lecceto nom +lecceto lecceto nom +leccherà leccare ver +lecchi leccare ver +lecchino leccare ver +lecci leccio nom +leccio leccio nom +lecco leccare ver +leccornia leccornia nom +leccornie leccornia nom +leccò leccare ver +lecita lecito adj +lecitamente lecitamente adv +lecite lecito adj +leciti lecito adj +lecitina lecitina nom +lecitine lecitina nom +lecito lecito adj +leda ledere ver +ledano ledere ver +lede ledere ver +ledendo ledere ver +ledendogli ledere ver +leder ledere ver +ledere ledere ver +lederebbe ledere ver +lederla ledere ver +lederle ledere ver +lederne ledere ver +ledersi ledere ver +lederà ledere ver +ledesse ledere ver +ledeva ledere ver +ledevano ledere ver +ledi ledere ver +lediamo ledere ver +ledine ledere ver +ledisi ledere ver +ledo ledere ver +ledono ledere ver +lega lega nom +legacci legaccio nom +legaccio legaccio nom +legai legare ver +legala legare ver +legale legale adj +legali legale adj +legalistico legalistico adj +legalitari legalitario adj +legalitaria legalitario adj +legalitarie legalitario adj +legalitario legalitario adj +legalità legalità nom +legalizza legalizzare ver +legalizzando legalizzare ver +legalizzano legalizzare ver +legalizzare legalizzare ver +legalizzarla legalizzare ver +legalizzarlo legalizzare ver +legalizzarono legalizzare ver +legalizzasse legalizzare ver +legalizzata legalizzare ver +legalizzate legalizzare ver +legalizzatela legalizzare ver +legalizzati legalizzare ver +legalizzato legalizzare ver +legalizzava legalizzare ver +legalizzazione legalizzazione nom +legalizzazioni legalizzazione nom +legalizziamo legalizzare ver +legalizzò legalizzare ver +legalmente legalmente adv +legame legame nom +legamenti legamento nom +legamento legamento nom +legami legame nom +legammo legare ver +legando legare ver +legandoci legare ver +legandogli legare ver +legandola legare ver +legandole legare ver +legandoli legare ver +legandolo legare ver +legandone legare ver +legandosi legare ver +legandovi legare ver +legane legare ver +legano legare ver +legante legante nom +leganti legante nom +legar legare ver +legarci legare ver +legare legare ver +legargli legare ver +legarla legare ver +legarle legare ver +legarli legare ver +legarlo legare ver +legarmela legare ver +legarmi legare ver +legarne legare ver +legarono legare ver +legarsela legare ver +legarsi legare ver +legarti legare ver +legarvi legare ver +legasse legare ver +legassero legare ver +legata legare ver +legatari legatario nom +legataria legatario nom +legatarie legatario nom +legatario legatario nom +legate legato adj +legategli legare ver +legatela legare ver +legati legato adj +legatizi legatizio adj +legatizia legatizio adj +legatizie legatizio adj +legatizio legatizio adj +legato legare ver +legatore legatore nom +legatori legatore nom +legatoria legatoria nom +legatorie legatoria nom +legatrice legatore|legatrice nom +legatura legatura nom +legature legatura nom +legava legare ver +legavano legare ver +legazione legazione nom +legazioni legazione nom +legga leggere ver +leggano leggere ver +legge legge nom +leggemmo leggere ver +leggenda leggenda nom +leggendari leggendario adj +leggendaria leggendario adj +leggendarie leggendario adj +leggendario leggendario adj +leggende leggenda nom +leggendo leggere ver +leggendoci leggere ver +leggendogli leggere ver +leggendola leggere ver +leggendole leggere ver +leggendoli leggere ver +leggendolo leggere ver +leggendomi leggere ver +leggendone leggere ver +leggendosele leggere ver +leggendosi leggere ver +leggendoti leggere ver +leggendovi leggere ver +leggente leggere ver +leggenti leggere ver +legger leggere ver +leggera leggero adj +leggerai leggere ver +leggeranno leggere ver +leggercelo leggere ver +leggerci leggere ver +leggere leggero adj +leggerebbe leggere ver +leggerebbero leggere ver +leggerei leggere ver +leggeremmo leggere ver +leggeremo leggere ver +leggeresti leggere ver +leggerete leggere ver +leggerezza leggerezza nom +leggerezze leggerezza nom +leggergli leggere ver +leggergliela leggere ver +leggerglielo leggere ver +leggeri leggero adj +leggerissimo leggerissimo adj +leggerla leggere ver +leggerle leggere ver +leggerli leggere ver +leggerlo leggere ver +leggermela leggere ver +leggermeli leggere ver +leggermelo leggere ver +leggermene leggere ver +leggermente leggermente adv +leggermi leggere ver +leggerne leggere ver +leggero leggero adj +leggersela leggere ver +leggersele leggere ver +leggerseli leggere ver +leggerselo leggere ver +leggersi leggere ver +leggerteli leggere ver +leggertelo leggere ver +leggerti leggere ver +leggervelo leggere ver +leggervi leggere ver +leggerà leggere ver +leggerò leggere ver +leggesse leggere ver +leggessero leggere ver +leggessi leggere ver +leggessimo leggere ver +leggeste leggere ver +leggete leggere ver +leggetela leggere ver +leggetele leggere ver +leggeteli leggere ver +leggetelo leggere ver +leggetemi leggere ver +leggetene leggere ver +leggetevi leggere ver +leggeva leggere ver +leggevamo leggere ver +leggevano leggere ver +leggevi leggere ver +leggevo leggere ver +leggi legge|leggio nom +leggiadra leggiadro adj +leggiadre leggiadro adj +leggiadri leggiadro adj +leggiadria leggiadria nom +leggiadro leggiadro adj +leggiamo leggere ver +leggiamoci leggere ver +leggiamola leggere ver +leggiamole leggere ver +leggiamoli leggere ver +leggiamolo leggere ver +leggiate leggere ver +leggibile leggibile adj +leggibili leggibile adj +leggibilità leggibilità nom +leggiera leggieri|leggiero adj +leggiere leggieri|leggiero adj +leggieri leggieri|leggiero adj +leggiero leggieri|leggiero adj +leggila leggere ver +leggile leggere ver +leggili leggere ver +leggilo leggere ver +leggimi leggere ver +leggina leggina nom +leggine leggina nom +leggio leggio nom +leggitele leggere ver +leggiteli leggere ver +leggitelo leggere ver +leggiti leggere ver +leggiucchiando leggiucchiare ver +leggiucchiare leggiucchiare ver +leggiucchiato leggiucchiare ver +leggiucchio leggiucchiare ver +leggo leggere ver +leggono leggere ver +leghe lega nom +legherai legare ver +legheranno legare ver +legherebbe legare ver +legherebbero legare ver +legherei legare ver +legherete legare ver +legherà legare ver +leghi legare ver +leghiamo legare ver +leghino legare ver +legifera legiferare ver +legiferando legiferare ver +legiferano legiferare ver +legiferante legiferare ver +legiferare legiferare ver +legiferarono legiferare ver +legiferasse legiferare ver +legiferata legiferare ver +legiferate legiferare ver +legiferato legiferare ver +legiferava legiferare ver +legiferavano legiferare ver +legifereranno legiferare ver +legiferi legiferare ver +legiferò legiferare ver +legionari legionario nom +legionaria legionario adj +legionarie legionario adj +legionario legionario adj +legione legione nom +legionellosi legionellosi nom +legioni legione nom +legislativa legislativo adj +legislative legislativo adj +legislativi legislativo adj +legislativo legislativo adj +legislatore legislatore nom +legislatori legislatore nom +legislatrice legislatore nom +legislatura legislatura nom +legislature legislatura nom +legislazione legislazione nom +legislazioni legislazione nom +legittima legittimo adj +legittimamente legittimamente adv +legittimando legittimare ver +legittimandole legittimare ver +legittimandolo legittimare ver +legittimandone legittimare ver +legittimandosi legittimare ver +legittimano legittimare ver +legittimante legittimare ver +legittimanti legittimare ver +legittimare legittimare ver +legittimari legittimario nom +legittimario legittimario nom +legittimarla legittimare ver +legittimarle legittimare ver +legittimarlo legittimare ver +legittimarne legittimare ver +legittimarono legittimare ver +legittimarsi legittimare ver +legittimasse legittimare ver +legittimata legittimare ver +legittimate legittimare ver +legittimati legittimare ver +legittimato legittimare ver +legittimava legittimare ver +legittimavano legittimare ver +legittimazione legittimazione nom +legittimazioni legittimazione nom +legittime legittimo adj +legittimerebbe legittimare ver +legittimerebbero legittimare ver +legittimerà legittimare ver +legittimi legittimo adj +legittimiamo legittimare ver +legittimino legittimare ver +legittimismo legittimismo nom +legittimista legittimista adj +legittimiste legittimista adj +legittimisti legittimista adj +legittimistica legittimistico adj +legittimità legittimità nom +legittimo legittimo adj +legittimò legittimare ver +legna legna nom +legnaia legnaia nom +legnaie legnaia nom +legnaioli legnaiolo nom +legnaiolo legnaiolo nom +legname legname nom +legnami legname nom +legnano legnare ver +legnante legnare ver +legnare legnare ver +legnata legnata nom +legnate legnata nom +legnatico legnatico adj +legnava legnare ver +legne legna nom +legni legni|legno nom +legno legno nom +legnosa legnoso adj +legnosità legnosità nom +lego lego nom +leguleia leguleio nom +leguleio leguleio nom +legume legume nom +legumi legume nom +leguminose leguminose nom +legò legare ver +lei lei pro +leishmania leishmania nom +leishmanie leishmania nom +leishmaniosi leishmaniosi nom +leitmotiv leitmotiv nom +lembi lembo nom +lembo lembo nom +lemma lemma nom +lemmari lemmario nom +lemmario lemmario nom +lemmatizzare lemmatizzare ver +lemmatizzata lemmatizzare ver +lemmatizzate lemmatizzare ver +lemmatizzati lemmatizzare ver +lemmatizzazione lemmatizzazione nom +lemmi lemma nom +lemure lemure nom +lemuri lemure nom +lemuridi lemuridi nom +lena lena nom +lenci lenci nom +lendine lendine nom +lendini lendine nom +lene lene adj +lenendo lenire ver +leni lene adj +lenii lenire ver +leninismo leninismo nom +leninista leninista adj +leniniste leninista adj +leninisti leninista adj +lenire lenire ver +lenirgli lenire ver +lenisce lenire ver +leniscono lenire ver +lenita lenire ver +lenite lenire ver +leniti lenire ver +lenitiva lenitivo adj +lenitive lenitivo adj +lenitivi lenitivo adj +lenitivo lenitivo adj +lenito lenire ver +lenocini lenocinio nom +lenocinio lenocinio nom +lenone lenone nom +lenoni lenone nom +lenta lento adj +lentamente lentamente adv +lente lento adj +lentezza lentezza nom +lentezze lentezza nom +lenti lento adj +lenticchia lenticchia nom +lenticchie lenticchia nom +lenticella lenticella nom +lenticelle lenticella nom +lenticolare lenticolare adj +lenticolari lenticolare adj +lentiggine lentiggine nom +lentiggini lentiggine nom +lentigginosa lentigginoso adj +lentigginosi lentigginoso adj +lentigginoso lentigginoso adj +lentischi lentisco nom +lentisco lentisco nom +lento lento adj +lenza lenza nom +lenze lenza nom +lenzuoli lenzuolo nom +lenzuolo lenzuolo nom +lenì lenire ver +leone leone nom +leonessa leone nom +leonesse leone nom +leoni leone nom +leonini leonino nom +leonino leonino nom +leopardi leopardo nom +leopardo leopardo nom +lepade lepade nom +lepadi lepade nom +lepida lepido adj +lepide lepido adj +lepidezze lepidezza nom +lepidi lepido adj +lepido lepido adj +lepidotteri lepidotteri nom +lepisma lepisma nom +lepisme lepisma nom +leporini leporino nom +leporino leporino nom +lepre lepre nom +lepri lepre nom +leprotti leprotto nom +leprotto leprotto nom +leptospirosi leptospirosi nom +lerci lercio adj +lercia lercio adj +lercio lercio adj +lerciume lerciume nom +lesa leso adj +lesbica lesbica nom +lesbiche lesbica nom +lesbismo lesbismo nom +lese leso adj +lesena lesena nom +lesene lesena nom +lesi leso adj +lesina lesina nom +lesinando lesinare ver +lesinano lesinare ver +lesinare lesinare ver +lesinarono lesinare ver +lesinate lesinare ver +lesinati lesinare ver +lesinato lesinare ver +lesinava lesinare ver +lesinavano lesinare ver +lesine lesina nom +lesinerei lesinare ver +lesini lesinare ver +lesino lesinare ver +lesinò lesinare ver +lesiona lesionare ver +lesionale lesionare ver +lesionando lesionare ver +lesionandosi lesionare ver +lesionare lesionare ver +lesionarono lesionare ver +lesionarsi lesionare ver +lesionata lesionare ver +lesionate lesionare ver +lesionati lesionare ver +lesionato lesionare ver +lesionava lesionare ver +lesione lesione nom +lesioni lesione nom +lesionò lesionare ver +lesiva lesivo adj +lesive lesivo adj +lesivi lesivo adj +lesivo lesivo adj +leso ledere ver +lessa lesso adj +lessandolo lessare ver +lessano lessare ver +lessare lessare ver +lessata lessare ver +lessate lessare ver +lessati lessare ver +lessato lessare ver +lessatura lessatura nom +lesse leggere ver +lessema lessema nom +lessemi lessema nom +lessero leggere ver +lessi leggere ver +lessicale lessicale adj +lessicali lessicale adj +lessici lessico nom +lessico lessico nom +lessicografa lessicografo nom +lessicografi lessicografo nom +lessicografia lessicografia nom +lessicografo lessicografo nom +lessicologia lessicologia nom +lessicologica lessicologico adj +lessicologiche lessicologico adj +lessicologici lessicologico adj +lessicologico lessicologico adj +lessicologo lessicologo nom +lesso lesso adj +lesta lesto adj +leste lesto adj +lesti lesto adj +lesto lesto adj +lestofante lestofante nom +lestofanti lestofante nom +letale letale adj +letali letale adj +letalità letalità nom +letamai letamaio nom +letamaio letamaio nom +letame letame nom +letami letame nom +letargia letargia nom +letargica letargico adj +letargici letargico adj +letargico letargico adj +letargo letargo nom +letica leticare ver +leticare leticare ver +letico leticare ver +letizia letizia nom +letizie letizia nom +letta leggere ver +lette leggere ver +lettera lettera nom +letterale letterale adj +letterali letterale adj +letteralmente letteralmente adv +letterari letterario adj +letteraria letterario adj +letterariamente letterariamente adv +letterarie letterario adj +letterario letterario adj +letterata letterato adj +letterate letterato adj +letterati letterato nom +letterato letterato nom +letteratura letteratura nom +letterature letteratura nom +lettere lettera nom +letti leggere ver +lettiera lettiera nom +lettiere lettiera nom +lettiga lettiga nom +lettighe lettiga nom +lettisternio lettisternio nom +letto leggere ver +lettorati lettorato adj +lettorato lettorato adj +lettore lettore nom +lettori lettore nom +lettrice lettore nom +lettrici lettore nom +lettura lettura nom +letture lettura nom +leucemia leucemia nom +leucemica leucemico adj +leucemiche leucemico adj +leucemici leucemico adj +leucemico leucemico adj +leucemie leucemia nom +leucite leucite nom +leuciti leucite nom +leucocita leucocita nom +leucocitari leucocitario adj +leucocitaria leucocitario adj +leucocitarie leucocitario adj +leucocitario leucocitario adj +leucociti leucocita nom +leucoma leucoma nom +leuconichia leuconichia nom +leucoplasti leucoplasto nom +leucoplasto leucoplasto nom +leva leva nom +levacapsule levacapsule nom +levachiodi levachiodi nom +levaci levare ver +levai levare ver +levala levare ver +levale levare ver +levali levare ver +levalo levare ver +levami levare ver +levando levare ver +levandogli levare ver +levandola levare ver +levandole levare ver +levandolo levare ver +levandomi levare ver +levandosi levare ver +levane levare ver +levano levare ver +levante levante adj +levanti levare ver +levantina levantino adj +levantine levantino adj +levantini levantino adj +levantino levantino adj +levar levare ver +levarci levare ver +levare levare ver +levargli levare ver +levarglielo levare ver +levarla levare ver +levarle levare ver +levarli levare ver +levarlo levare ver +levarmi levare ver +levarne levare ver +levarono levare ver +levarsela levare ver +levarseli levare ver +levarselo levare ver +levarsi levare ver +levarti levare ver +levarvi levare ver +levasi levare ver +levasse levare ver +levassero levare ver +levasti levare ver +levata levata nom +levate levata nom +levatelo levare ver +levatemi levare ver +levatesi levare ver +levatevi levare ver +levati levare ver +levato levare ver +levatoia levatoio adj +levatoio levatoio adj +levatrice levatrice nom +levatrici levatrice nom +levatura levatura nom +levature levatura nom +levava levare ver +levavano levare ver +levavi levare ver +leve leva nom +leveranno levare ver +leverebbe levare ver +leverebbero levare ver +leverei levare ver +leveresti levare ver +leverà levare ver +leverò levare ver +levi levare ver +leviamo levare ver +leviamoci levare ver +leviamole levare ver +leviamolo levare ver +leviathan leviathan nom +leviga levigare ver +levigando levigare ver +levigano levigare ver +levigare levigare ver +levigarla levigare ver +levigarli levigare ver +levigarono levigare ver +levigata levigare ver +levigate levigare ver +levigatezza levigatezza nom +levigati levigare ver +levigato levigare ver +levigatrice levigatrice nom +levigatrici levigatrice nom +levigazione levigazione nom +levigazioni levigazione nom +levino levare ver +levita levita nom +levitaci levitare ver +levitando levitare ver +levitano levitare ver +levitante levitare ver +levitanti levitare ver +levitare levitare ver +levitasse levitare ver +levitata levitare ver +levitate levitare ver +levitato levitare ver +levitava levitare ver +levitazione levitazione nom +levitazioni levitazione nom +leviterà levitare ver +leviti levita nom +levità levità nom +levitò levitare ver +levo levare ver +levogira levogiro adj +levogire levogiro adj +levogiri levogiro adj +levogiro levogiro adj +levrieri levriero nom +levriero levriero nom +levulosio levulosio nom +levò levare ver +lewisite lewisite nom +lezi lezio nom +lezio lezio nom +lezione lezione nom +lezioni lezione nom +leziosa lezioso adj +leziosaggini leziosaggine nom +leziose lezioso adj +leziosi lezioso adj +leziosità leziosità nom +lezioso lezioso adj +lezzi lezzo nom +lezzo lezzo nom +lga torre ver +lgo torre ver +lgono torre ver +li li pro +liana liana nom +liane liana nom +lianosa lianoso adj +lianose lianoso adj +lianoso lianoso adj +liba libare ver +libagione libagione nom +libagioni libagione nom +libai libare ver +libale libare ver +libanese libanese adj +libanesi libanese adj +libano libare ver +libanti libare ver +libar libare ver +libare libare ver +libasse libare ver +libassi libare ver +libata libare ver +libato libare ver +libava libare ver +libbra libbra nom +libbre libbra nom +libeccio libeccio nom +libelli libello nom +libellista libellista nom +libellisti libellista nom +libello libello nom +libellula libellula nom +libellule libellula nom +libera libero adj +liberaci liberare ver +liberala liberare ver +liberale liberale adj +liberaleggiante liberaleggiante adj +liberali liberale adj +liberalismi liberalismo nom +liberalismo liberalismo nom +liberalità liberalità nom +liberalizza liberalizzare ver +liberalizzando liberalizzare ver +liberalizzano liberalizzare ver +liberalizzante liberalizzare ver +liberalizzare liberalizzare ver +liberalizzata liberalizzare ver +liberalizzate liberalizzare ver +liberalizzatemi liberalizzare ver +liberalizzati liberalizzare ver +liberalizzato liberalizzare ver +liberalizzava liberalizzare ver +liberalizzazione liberalizzazione nom +liberalizzazioni liberalizzazione nom +liberalizzò liberalizzare ver +liberalo liberare ver +liberamene liberare ver +liberamente liberamente adv +liberami liberare ver +liberammo liberare ver +liberando liberare ver +liberandoci liberare ver +liberandola liberare ver +liberandole liberare ver +liberandoli liberare ver +liberandolo liberare ver +liberandone liberare ver +liberandosene liberare ver +liberandosi liberare ver +liberandoti liberare ver +liberano liberare ver +liberante liberare ver +liberanti liberare ver +liberar liberare ver +liberarcene liberare ver +liberarci liberare ver +liberare liberare ver +liberargli liberare ver +liberarla liberare ver +liberarle liberare ver +liberarli liberare ver +liberarlo liberare ver +liberarmene liberare ver +liberarmi liberare ver +liberarne liberare ver +liberarono liberare ver +liberarsene liberare ver +liberarsi liberare ver +liberartene liberare ver +liberarti liberare ver +liberarvi liberare ver +liberasi liberare ver +liberasse liberare ver +liberassero liberare ver +liberasti liberare ver +liberata liberare ver +liberate liberare ver +liberateci liberare ver +liberatelo liberare ver +liberatemi liberare ver +liberatesi liberare ver +liberatevi liberare ver +liberati liberare ver +liberato liberare ver +liberatore liberatore adj +liberatori liberatore|liberatorio adj +liberatoria liberatorio adj +liberatorie liberatorio adj +liberatorio liberatorio adj +liberatrice liberatore adj +liberatrici liberatore adj +liberava liberare ver +liberavano liberare ver +liberazione liberazione nom +liberazioni liberazione nom +libercoli libercolo nom +libercolo libercolo nom +libere libero adj +libererai liberare ver +libereranno liberare ver +libererebbe liberare ver +libererebbero liberare ver +libererei liberare ver +libereremo liberare ver +libererete liberare ver +libererà liberare ver +libererò liberare ver +liberi libero adj +liberiamo liberare ver +liberiamoci liberare ver +liberiamola liberare ver +liberiana liberiano adj +liberiane liberiano adj +liberiani liberiano adj +liberiano liberiano adj +liberiate liberare ver +liberino liberare ver +liberismo liberismo nom +liberista liberista adj +liberiste liberista adj +liberisti liberista adj +liberistico liberistico adj +libero libero adj +liberoscambismo liberoscambismo nom +liberoscambista liberoscambista adj +liberoscambisti liberoscambista adj +libertari libertario adj +libertaria libertario adj +libertarie libertario adj +libertario libertario adj +liberti liberto nom +liberticida liberticida adj +liberticide liberticida adj +liberticidi liberticida adj +libertina libertino adj +libertinaggio libertinaggio nom +libertine libertino adj +libertini libertino adj +libertino libertino adj +liberto liberto nom +liberty liberty adj +libertà libertà nom +liberà libare ver +liberò libare ver +libi libare ver +libiamo libare ver +libica libico adj +libiche libico adj +libici libico adj +libico libico adj +libidine libidine nom +libidini libidine nom +libidinosa libidinoso adj +libidinose libidinoso adj +libidinosi libidinoso adj +libidinoso libidinoso adj +libido libido nom +libo libare ver +libra libra nom +libraci librare ver +librai libraio nom +libraio libraio nom +librale librale adj +librando librare ver +librandomi librare ver +librandosi librare ver +librano librare ver +librar librare ver +librare librare ver +librari librario adj +libraria librario adj +librarie librario adj +librario librario adj +librarmi librare ver +librarono librare ver +librarsi librare ver +librata librare ver +librati librare ver +librato librare ver +libratore libratore nom +libratori libratore nom +librava librare ver +libravano librare ver +librazione librazione nom +librazioni librazione nom +libre libra nom +libreremo librare ver +libreria libreria nom +librerie libreria nom +libresca libresco adj +libresche libresco adj +libresco libresco adj +libretti libretto nom +librettista librettista nom +librettiste librettista nom +librettisti librettista nom +libretto libretto nom +libri libro nom +libriamoci librare ver +librino librare ver +libro libro nom +librò librare ver +lica licere ver +licantropi licantropo nom +licantropia licantropia nom +licantropo licantropo nom +licaone licaone nom +licaoni licaone nom +licci liccio nom +liccio liccio nom +liccioli licciolo nom +lice licere ver +liceale liceale adj +liceali liceale adj +licei liceo nom +liceità liceità nom +licenti licere ver +licenza licenza nom +licenze licenza nom +licenzi licenziare ver +licenzia licenziare ver +licenziai licenziare ver +licenziamenti licenziamento nom +licenziamento licenziamento nom +licenziamo licenziare ver +licenziandi licenziando nom +licenziando licenziare ver +licenziandola licenziare ver +licenziandole licenziare ver +licenziandoli licenziare ver +licenziandolo licenziare ver +licenziandosi licenziare ver +licenziano licenziare ver +licenziante licenziare ver +licenzianti licenziare ver +licenziare licenziare ver +licenziarla licenziare ver +licenziarle licenziare ver +licenziarli licenziare ver +licenziarlo licenziare ver +licenziarmi licenziare ver +licenziarne licenziare ver +licenziarono licenziare ver +licenziarsi licenziare ver +licenziarti licenziare ver +licenziasse licenziare ver +licenziata licenziare ver +licenziatari licenziatario nom +licenziatario licenziatario nom +licenziate licenziare ver +licenziati licenziare ver +licenziato licenziare ver +licenziava licenziare ver +licenzieranno licenziare ver +licenzierebbe licenziare ver +licenzierei licenziare ver +licenzieremo licenziare ver +licenzierà licenziare ver +licenzino licenziare ver +licenzio licenziare ver +licenziosa licenzioso adj +licenziose licenzioso adj +licenziosi licenzioso adj +licenziosità licenziosità nom +licenzioso licenzioso adj +licenziò licenziare ver +liceo liceo nom +lichene lichene nom +licheni lichene nom +lici licere ver +licita licitare ver +licitar licitare ver +licitare licitare ver +licitazione licitazione nom +licito licitare ver +lico licere ver +licopodi licopodio nom +licopodio licopodio nom +licuti licere ver +lidi lido nom +lido lido nom +lied lied nom +lieta lieto adj +liete lieto adj +lieti lieto adj +lieto lieto adj +lieve lieve adj +lievemente lievemente adv +lievi lieve adj +lievita lievitare ver +lievitando lievitare ver +lievitano lievitare ver +lievitante lievitare ver +lievitanti lievitare ver +lievitare lievitare ver +lievitarono lievitare ver +lievitata lievitare ver +lievitate lievitare ver +lievitati lievitare ver +lievitato lievitare ver +lievitavano lievitare ver +lievitazione lievitazione nom +lievitazioni lievitazione nom +lieviteranno lievitare ver +lieviterà lievitare ver +lieviti lievito nom +lievito lievito nom +lievità lievità nom +lievitò lievitare ver +lift lift nom +ligi ligio adj +ligia ligio adj +ligie ligio adj +ligio ligio adj +lignaggi lignaggio nom +lignaggio lignaggio nom +lignea ligneo adj +lignee ligneo adj +lignei ligneo adj +ligneo ligneo adj +lignificazione lignificazione nom +lignina lignina nom +lignine lignina nom +lignite lignite nom +ligniti lignite nom +ligula ligula nom +ligulata ligulato adj +ligulate ligulato adj +ligulati ligulato adj +ligulato ligulato adj +ligule ligula nom +ligure ligure adj +liguri ligure adj +ligustri ligustro nom +ligustro ligustro nom +liliacee liliacee nom +liliale liliale adj +lilion lilion nom +lilla lilla adj +lillipuziana lillipuziano adj +lillipuziane lillipuziano adj +lillipuziani lillipuziano nom +lillipuziano lillipuziano adj +lima lima nom +limacce limaccia nom +limaccia limaccia nom +limacciosa limaccioso adj +limacciose limaccioso adj +limacciosi limaccioso adj +limaccioso limaccioso adj +limai limare ver +limale limare ver +limando limare ver +limandola limare ver +limandole limare ver +limandone limare ver +limano limare ver +limar limare ver +limare limare ver +limarla limare ver +limarle limare ver +limarli limare ver +limarlo limare ver +limarne limare ver +limarsi limare ver +limasse limare ver +limata limare ver +limate limare ver +limati limare ver +limato limare ver +limatrice limatrice nom +limatura limatura nom +limature limatura nom +limava limare ver +limbi limbo nom +limbo limbo nom +lime lima nom +limerei limare ver +limerà limare ver +limerò limare ver +limetta limetta nom +limette limetta nom +limi limo nom +limine limine nom +limita limitare ver +limitabile limitabile adj +limitabili limitabile adj +limitaci limitare ver +limitai limitare ver +limitando limitare ver +limitandoci limitare ver +limitandola limitare ver +limitandole limitare ver +limitandoli limitare ver +limitandolo limitare ver +limitandomi limitare ver +limitandone limitare ver +limitandosi limitare ver +limitandoti limitare ver +limitanea limitaneo adj +limitanee limitaneo adj +limitanei limitaneo adj +limitaneo limitaneo adj +limitano limitare ver +limitante limitare ver +limitanti limitare ver +limitar limitare ver +limitarci limitare ver +limitare limitare ver +limitargli limitare ver +limitari limitare nom +limitarla limitare ver +limitarle limitare ver +limitarli limitare ver +limitarlo limitare ver +limitarmi limitare ver +limitarne limitare ver +limitarono limitare ver +limitarsi limitare ver +limitarti limitare ver +limitarvi limitare ver +limitasse limitare ver +limitassero limitare ver +limitassi limitare ver +limitassimo limitare ver +limitata limitato adj +limitatamente limitatamente adv +limitate limitare ver +limitatevi limitare ver +limitatezza limitatezza nom +limitatezze limitatezza nom +limitati limitare ver +limitatissimo limitatissimo adj +limitativa limitativo adj +limitative limitativo adj +limitativi limitativo adj +limitativo limitativo adj +limitato limitare ver +limitatore limitatore nom +limitatori limitatore nom +limitava limitare ver +limitavano limitare ver +limitavo limitare ver +limitazione limitazione nom +limitazioni limitazione nom +limite limite nom +limiteranno limitare ver +limiterebbe limitare ver +limiterebbero limitare ver +limiterei limitare ver +limiteremmo limitare ver +limiteremo limitare ver +limiterà limitare ver +limiterò limitare ver +limiti limite nom +limitiamo limitare ver +limitiamoci limitare ver +limitiate limitare ver +limitino limitare ver +limito limitare ver +limitrofa limitrofo adj +limitrofe limitrofo adj +limitrofi limitrofo adj +limitrofo limitrofo adj +limitò limitare ver +limnea limnea nom +limnee limnea nom +limnologa limnologo nom +limnologi limnologo nom +limnologia limnologia nom +limnologie limnologia nom +limnologo limnologo nom +limo limo nom +limonata limonata nom +limonate limonata nom +limone limone nom +limoneti limoneto nom +limoneto limoneto nom +limoni limone nom +limonicoltura limonicoltura nom +limonite limonite nom +limoniti limonite nom +limosa limoso adj +limose limoso adj +limosi limoso adj +limosina limosina nom +limosine limosina nom +limoso limoso adj +limousine limousine nom +limpida limpido adj +limpide limpido adj +limpidezza limpidezza nom +limpidi limpido adj +limpido limpido adj +limò limare ver +linaioli linaiolo nom +lince lince nom +lincerebbero linciare ver +linci lince nom +linciaggi linciaggio nom +linciaggio linciaggio nom +linciando linciare ver +linciano linciare ver +linciare linciare ver +linciarla linciare ver +linciarli linciare ver +linciarlo linciare ver +linciarmi linciare ver +linciarono linciare ver +linciata linciare ver +linciate linciare ver +linciatemi linciare ver +linciati linciare ver +linciato linciare ver +linciatori linciatore nom +lincino linciare ver +lincio linciare ver +linciò linciare ver +linda lindo adj +linde lindo adj +lindi lindo adj +lindo lindo adj +lindore lindore nom +line line nom +linea linea nom +lineamenti lineamento nom +lineamento lineamento nom +lineare lineare adj +lineari lineare adj +linearità linearità nom +linee linea nom +lineetta lineetta nom +lineette lineetta nom +linfa linfa nom +linfadenite linfadenite nom +linfadeniti linfadenite nom +linfangite linfangite nom +linfangiti linfangite nom +linfatica linfatico adj +linfatiche linfatico adj +linfatici linfatico adj +linfatico linfatico adj +linfatismo linfatismo nom +linfe linfa nom +linfocita linfocita nom +linfociti linfocita nom +linfocitopenia linfocitopenia nom +linfogranuloma linfogranuloma nom +linfoma linfoma nom +linfomi linfoma nom +linfonodi linfonodo nom +linfonodo linfonodo nom +linfosarcoma linfosarcoma nom +lingeria lingeria nom +lingerie lingeria nom +lingotti lingotto nom +lingottiera lingottiera nom +lingottiere lingottiera nom +lingotto lingotto nom +lingua lingua nom +linguacce linguaccia nom +linguaccia linguaccia nom +linguacciuto linguacciuto adj +linguaggi linguaggio nom +linguaggio linguaggio nom +linguale linguale adj +linguali linguale adj +lingue lingua nom +linguella linguella nom +linguelle linguella nom +linguetta linguetta nom +linguette linguetta nom +linguina linguina nom +linguine linguina nom +linguista linguista nom +linguiste linguista nom +linguisti linguista nom +linguistica linguistico adj +linguisticamente linguisticamente adv +linguistiche linguistico adj +linguistici linguistico adj +linguistico linguistico adj +lini lino nom +liniere liniero adj +linificio linificio nom +linimenti linimento nom +linimento linimento nom +linnea linnea nom +linnee linnea nom +lino lino nom +linoleum linoleum nom +linoni linone nom +linotipia linotipia nom +linotipista linotipista nom +linotipisti linotipista nom +linotype linotype nom +liocorni liocorno nom +liocorno liocorno nom +liofili liofilo adj +liofilizzare liofilizzare ver +liofilizzata liofilizzare ver +liofilizzate liofilizzare ver +liofilizzati liofilizzare ver +liofilizzato liofilizzare ver +liofilizzazione liofilizzazione nom +liofilo liofilo adj +liofobi liofobo adj +lipariti liparite nom +lipasi lipasi nom +lipide lipide nom +lipidi lipide nom +lipidica lipidico adj +lipidiche lipidico adj +lipidici lipidico adj +lipidico lipidico adj +lipoidi lipoide nom +lipoma lipoma nom +lipomi lipoma nom +liposarcoma liposarcoma nom +liposolubile liposolubile adj +liposolubili liposolubile adj +lipotimia lipotimia nom +lipotimie lipotimia nom +lippa lippa nom +lippi lippa nom +liquame liquame nom +liquami liquame nom +liquefa liquefare ver +liquefacendo liquefare ver +liquefacendola liquefare ver +liquefacendosi liquefare ver +liquefaceva liquefare ver +liquefanno liquefare ver +liquefare liquefare ver +liquefarsi liquefare ver +liquefatta liquefare ver +liquefatti liquefare ver +liquefatto liquefare ver +liquefazione liquefazione nom +liquefazioni liquefazione nom +liquefece liquefare ver +liquida liquido adj +liquidabile liquidabile adj +liquidabili liquidabile adj +liquidando liquidare ver +liquidandola liquidare ver +liquidandoli liquidare ver +liquidandolo liquidare ver +liquidano liquidare ver +liquidanti liquidare ver +liquidare liquidare ver +liquidarla liquidare ver +liquidarli liquidare ver +liquidarlo liquidare ver +liquidarne liquidare ver +liquidarono liquidare ver +liquidarsi liquidare ver +liquidasse liquidare ver +liquidata liquidare ver +liquidate liquidare ver +liquidati liquidare ver +liquidato liquidare ver +liquidatore liquidatore adj +liquidatori liquidatore nom +liquidatrice liquidatore adj +liquidava liquidare ver +liquidavano liquidare ver +liquidazione liquidazione nom +liquidazioni liquidazione nom +liquide liquido adj +liquiderei liquidare ver +liquiderà liquidare ver +liquidi liquido nom +liquidiamo liquidare ver +liquidino liquidare ver +liquidità liquidità nom +liquido liquido adj +liquidò liquidare ver +liquigas liquigas nom +liquirizia liquirizia nom +liquirizie liquirizia nom +liquore liquore nom +liquoreria liquoreria nom +liquorerie liquoreria nom +liquori liquore nom +liquoriera liquoriero adj +liquorosa liquoroso adj +liquorosi liquoroso adj +liquoroso liquoroso adj +lira lira nom +lire lira nom +lirica lirico adj +liriche lirico adj +lirici lirico adj +liricità liricità nom +lirico lirico adj +lirismi lirismo nom +lirismo lirismo nom +lisa liso adj +lisca lisca nom +lisce liscio adj +lisci liscio adj +liscia liscio adj +lisciami lisciare ver +lisciando lisciare ver +lisciandola lisciare ver +lisciano lisciare ver +lisciare lisciare ver +lisciarsi lisciare ver +lisciata lisciare ver +lisciate lisciare ver +lisciati lisciare ver +lisciato lisciare ver +lisciatura lisciatura nom +lisciava lisciare ver +liscio liscio adj +liscivia liscivia nom +lisciviata lisciviare ver +lisciviati lisciviare ver +lisciviato lisciviare ver +lisciviazione lisciviazione nom +liscivie liscivia nom +liscivio lisciviare ver +liscose liscoso adj +lise liso adj +lisergica lisergico adj +lisergiche lisergico adj +lisergici lisergico adj +lisergico lisergico adj +liseuse liseuse nom +lisi liso adj +liso liso adj +lisoformio lisoformio nom +lista lista nom +listai listare ver +listano listare ver +listanti listare ver +listar listare ver +listare listare ver +listasi listare ver +listata listare ver +listate listare ver +listati listare ver +listato listare ver +liste lista nom +listelli listello nom +listello listello nom +listeria listeria nom +listeriosi listeriosi adj +listi listare ver +listini listino nom +listino listino nom +listo listare ver +litania litania nom +litanie litania nom +litantrace litantrace nom +litantraci litantrace nom +litargirio litargirio nom +lite lite nom +liti lite|litio nom +litiasi litiasi nom +litiga litigare ver +litigai litigare ver +litigammo litigare ver +litigando litigare ver +litigandoci litigare ver +litigano litigare ver +litigante litigante nom +litiganti litigante nom +litigar litigare ver +litigarci litigare ver +litigare litigare ver +litigarono litigare ver +litigarsi litigare ver +litigasse litigare ver +litigassero litigare ver +litigata litigata nom +litigate litigata nom +litigato litigare ver +litigava litigare ver +litigavano litigare ver +litigheranno litigare ver +litigherà litigare ver +litighi litigare ver +litighiamo litigare ver +litighino litigare ver +litigi litigio nom +litigio litigio nom +litigiosa litigioso adj +litigiose litigioso adj +litigiosi litigioso adj +litigiosità litigiosità nom +litigioso litigioso adj +litigo litigare ver +litigò litigare ver +litio litio nom +litisconsorzio litisconsorzio nom +litispendenza litispendenza nom +litofagi litofago adj +litogenesi litogenesi nom +litografa litografare ver +litografata litografare ver +litografate litografare ver +litografati litografare ver +litografato litografare ver +litografi litografo nom +litografia litografia nom +litografica litografico adj +litografiche litografico adj +litografici litografico adj +litografico litografico adj +litografie litografia nom +litografo litografo nom +litoide litoide adj +litoidi litoide adj +litologia litologia nom +litologie litologia nom +litopone litopone nom +litorale litorale nom +litorali litorale nom +litoranea litoraneo adj +litoranee litoraneo adj +litoranei litoraneo adj +litoraneo litoraneo adj +litosfera litosfera nom +litosfere litosfera nom +litostratigrafia litostratigrafia nom +litote litote nom +litoti litote nom +litri litro nom +litro litro nom +littore littore nom +littori littorio adj +littoria littorio adj +littorie littorio adj +littorina littorina nom +littorine littorina nom +littorio littorio adj +lituano lituano adj +lituo lituo nom +liturgia liturgia nom +liturgica liturgico adj +liturgiche liturgico adj +liturgici liturgico adj +liturgico liturgico adj +liturgie liturgia nom +liturgista liturgista nom +liturgisti liturgista nom +liutai liutaio nom +liutaio liutaio nom +liuteria liuteria nom +liuterie liuteria nom +liuti liuto nom +liutista liutista nom +liutisti liutista nom +liuto liuto nom +livella livella nom +livellamenti livellamento nom +livellamento livellamento nom +livellando livellare ver +livellandole livellare ver +livellandosi livellare ver +livellano livellare ver +livellante livellare ver +livellanti livellare ver +livellare livellare ver +livellari livellare|livellario adj +livellaria livellario adj +livellario livellario adj +livellarla livellare ver +livellarono livellare ver +livellata livellare ver +livellate livellare ver +livellati livellare ver +livellato livellare ver +livellatore livellatore adj +livellatori livellatore nom +livellatrice livellatore adj +livellatrici livellatore adj +livellazione livellazione nom +livellazioni livellazione nom +livelle livella nom +livelli livello nom +livello livello nom +livellò livellare ver +livida livido adj +livide livido adj +lividi livido nom +livido livido adj +lividure lividura nom +livore livore nom +livori livore nom +livrea livrea nom +livree livrea nom +lizza lizza nom +lizze lizza nom +lo il det +lobata lobato adj +lobate lobato adj +lobati lobato adj +lobato lobato adj +lobbia lobbia nom +lobbismo lobbismo nom +lobbista lobbista nom +lobbisti lobbista nom +lobby lobby nom +lobectomia lobectomia nom +lobelia lobelia nom +lobelie lobelia nom +lobi lobo nom +lobo lobo nom +lobuli lobulo nom +lobulo lobulo nom +loca locare ver +locala locare ver +locale locale adj +locali locale adj +località località nom +localizza localizzare ver +localizzabile localizzabile adj +localizzabili localizzabile adj +localizzando localizzare ver +localizzandola localizzare ver +localizzandolo localizzare ver +localizzandosi localizzare ver +localizzano localizzare ver +localizzare localizzare ver +localizzarla localizzare ver +localizzarle localizzare ver +localizzarli localizzare ver +localizzarlo localizzare ver +localizzarne localizzare ver +localizzarono localizzare ver +localizzarsi localizzare ver +localizzasse localizzare ver +localizzata localizzare ver +localizzate localizzare ver +localizzati localizzare ver +localizzato localizzare ver +localizzava localizzare ver +localizzavano localizzare ver +localizzazione localizzazione nom +localizzazioni localizzazione nom +localizzerà localizzare ver +localizzi localizzare ver +localizzino localizzare ver +localizzò localizzare ver +localmente localmente adv +localo locare ver +locanda locanda nom +locandiera locandiere nom +locandiere locandiere nom +locandieri locandiere nom +locandina locandina nom +locandine locandina nom +locane locare ver +locano locare ver +locare locare ver +locata locare ver +locatari locatario nom +locataria locatario nom +locatario locatario nom +locate locare ver +locatesi locare ver +locati locare ver +locativa locativo adj +locative locativo adj +locativi locativo adj +locativo locativo adj +locato locare ver +locatore locatore nom +locatori locatore nom +locazione locazione nom +locazioni locazione nom +lochi locare ver +loco locare ver +locomotiva locomotiva nom +locomotive locomotiva nom +locomotore locomotore adj +locomotori locomotore nom +locomotrice locomotore nom +locomotrici locomotore nom +locomozione locomozione nom +loculi loculo nom +loculo loculo nom +locupletata locupletare ver +locusta locusta nom +locuste locusta nom +locuzione locuzione nom +locuzioni locuzione nom +loda lodare ver +lodai lodare ver +lodalo lodare ver +lodando lodare ver +lodandola lodare ver +lodandoli lodare ver +lodandolo lodare ver +lodandone lodare ver +lodandoti lodare ver +lodano lodare ver +lodante lodare ver +lodanti lodare ver +lodarci lodare ver +lodare lodare ver +lodarla lodare ver +lodarli lodare ver +lodarlo lodare ver +lodarmi lodare ver +lodarne lodare ver +lodarono lodare ver +lodarsi lodare ver +lodarti lodare ver +lodasse lodare ver +lodassero lodare ver +lodata lodare ver +lodate lodare ver +lodatelo lodare ver +lodati lodare ver +lodato lodare ver +lodatore lodatore nom +lodava lodare ver +lodavano lodare ver +lode lode nom +loden loden nom +loderanno lodare ver +loderemo lodare ver +loderà lodare ver +loderò lodare ver +lodevole lodevole adj +lodevoli lodevole adj +lodi lode|lodo nom +lodiamo lodare ver +lodino lodare ver +lodo lodo nom +lodola lodola nom +lodolai lodolaio nom +lodolaio lodolaio nom +lodole lodola nom +lodò lodare ver +loess loess nom +logaritmi logaritmo nom +logaritmica logaritmico adj +logaritmiche logaritmico adj +logaritmici logaritmico adj +logaritmico logaritmico adj +logaritmo logaritmo nom +logge loggia nom +loggia loggia nom +loggiati loggiato nom +loggiato loggiato nom +loggione loggione nom +loggioni loggione nom +loggionista loggionista nom +loggionisti loggionista nom +logica logica|logico nom +logicamente logicamente adv +logiche logico adj +logici logico adj +logicità logicità nom +logico logico adj +logistica logistico adj +logistiche logistico adj +logistici logistico adj +logistico logistico adj +logli loglio nom +loglio loglio nom +logografi logografo nom +logografo logografo nom +logogrifi logogrifo nom +logogrifo logogrifo nom +logopedia logopedia nom +logopedie logopedia nom +logora logoro adj +logoramento logoramento nom +logorando logorare ver +logorandole logorare ver +logorandoli logorare ver +logorandosi logorare ver +logorano logorare ver +logorante logorante adj +logoranti logorante adj +logorarci logorare ver +logorare logorare ver +logorarla logorare ver +logorarlo logorare ver +logorarne logorare ver +logorarono logorare ver +logorarsi logorare ver +logorasse logorare ver +logorassero logorare ver +logorata logorare ver +logorate logorare ver +logorati logorare ver +logorato logorare ver +logorava logorare ver +logoravano logorare ver +logore logoro adj +logorerà logorare ver +logori logoro adj +logorio logorio nom +logoro logoro adj +logorrea logorrea nom +logorroica logorroico adj +logorroiche logorroico adj +logorroici logorroico adj +logorroico logorroico adj +logorò logorare ver +logos logos nom +loia loia nom +loie loia nom +lolita lolita nom +lolite lolita nom +lolla lolla nom +lolle lolla nom +lombaggine lombaggine nom +lombarda lombardo adj +lombarde lombardo adj +lombardi lombardo adj +lombardo lombardo adj +lombare lombare adj +lombari lombare adj +lombata lombata nom +lombate lombata nom +lombi lombo nom +lombo lombo nom +lombosacrale lombosacrale adj +lombrichi lombrico nom +lombrico lombrico nom +londinese londinese adj +londinesi londinese adj +longanime longanime adj +longanimi longanime adj +longanimità longanimità nom +longarina longarina nom +longarone longarone nom +longeva longevo adj +longeve longevo adj +longevi longevo adj +longevità longevità nom +longevo longevo adj +longherine longherina nom +longherone longherone nom +longheroni longherone nom +longilinea longilineo adj +longilinee longilineo adj +longilinei longilineo adj +longilineo longilineo adj +longitipo longitipo nom +longitudinale longitudinale adj +longitudinali longitudinale adj +longitudine longitudine nom +longitudini longitudine nom +longobarda longobardo adj +longobarde longobardo adj +longobardi longobardo adj +longobardo longobardo adj +lontana lontano adj +lontanamente lontanamente adv +lontananza lontananza nom +lontananze lontananza nom +lontane lontano adj +lontani lontano adj +lontano lontano adj +lontra lontra nom +lontre lontra nom +lonza lonza nom +lonze lonza nom +look look nom +looping looping nom +loppa loppa nom +loppe loppa nom +loquace loquace adj +loquaci loquace adj +loquacità loquacità nom +loquela loquela nom +loranti loranto nom +lord lord nom +lorda lordo adj +lordare lordare ver +lordato lordare ver +lorde lordo adj +lordi lordo adj +lordo lordo adj +lordosi lordosi nom +lordume lordume nom +lordura lordura nom +lordure lordura nom +lorgnette lorgnette nom +lori lori nom +lorica lorica nom +loriche lorica nom +loro loro pro +losanga losanga nom +losangata losangato adj +losangati losangato adj +losangato losangato adj +losanghe losanga nom +losca losco adj +losche losco adj +loschi losco adj +losco losco adj +lossodromia lossodromia nom +loti loto nom +loto loto nom +lotofagi lotofago nom +lotta lotta nom +lottai lottare ver +lottando lottare ver +lottano lottare ver +lottar lottare ver +lottare lottare ver +lottarono lottare ver +lottasse lottare ver +lottassero lottare ver +lottata lottare ver +lottate lottare ver +lottati lottare ver +lottato lottare ver +lottatore lottatore nom +lottatori lottatore nom +lottatrice lottatore nom +lottatrici lottatore nom +lottava lottare ver +lottavano lottare ver +lottavo lottare ver +lotte lotta nom +lotteranno lottare ver +lotteremo lottare ver +lotterete lottare ver +lotteria lotteria nom +lotterie lotteria nom +lotterà lottare ver +lotterò lottare ver +lotti lotto nom +lottiamo lottare ver +lottino lottare ver +lottizzando lottizzare ver +lottizzare lottizzare ver +lottizzarono lottizzare ver +lottizzata lottizzare ver +lottizzate lottizzare ver +lottizzati lottizzare ver +lottizzato lottizzare ver +lottizzazione lottizzazione nom +lottizzazioni lottizzazione nom +lotto lotto nom +lottò lottare ver +lozione lozione nom +lozioni lozione nom +lse torre ver +lsero torre ver +lsi torre ver +lta torre ver +lte torre ver +lti torre ver +lto torre ver +ltte lucere ver +lubrica lubrico adj +lubriche lubrico adj +lubrici lubrico adj +lubricità lubricità nom +lubrico lubrico adj +lubrifica lubrificare ver +lubrificando lubrificare ver +lubrificano lubrificare ver +lubrificante lubrificante adj +lubrificanti lubrificante adj +lubrificare lubrificare ver +lubrificarsi lubrificare ver +lubrificata lubrificare ver +lubrificate lubrificare ver +lubrificati lubrificare ver +lubrificato lubrificare ver +lubrificatore lubrificatore nom +lubrificava lubrificare ver +lubrificazione lubrificazione nom +lubrificazioni lubrificazione nom +luca lucere ver +lucana lucano adj +lucane lucano adj +lucani lucano adj +lucano lucano adj +lucchetti lucchetto nom +lucchetto lucchetto nom +lucchi lucco nom +lucci luccio nom +luccica luccicare ver +luccicano luccicare ver +luccicante luccicare ver +luccicanti luccicare ver +luccicare luccicare ver +luccicate luccicare ver +luccicava luccicare ver +luccicavano luccicare ver +luccichi luccicare ver +luccio luccio nom +lucciola lucciola nom +lucciole lucciola nom +lucco lucco nom +luce luce nom +lucendo lucere ver +lucente lucente adj +lucentezza lucentezza nom +lucentezze lucentezza nom +lucenti lucente adj +lucer lucere ver +lucerna lucerna nom +lucernari lucernario nom +lucernario lucernario nom +lucerne lucerna nom +lucertola lucertola nom +lucertole lucertola nom +lucevano lucere ver +lucherini lucherino nom +lucherino lucherino nom +luchi luco nom +luci luce nom +lucida lucido adj +lucidando lucidare ver +lucidano lucidare ver +lucidante lucidare ver +lucidanti lucidare ver +lucidare lucidare ver +lucidarla lucidare ver +lucidarli lucidare ver +lucidata lucidare ver +lucidate lucidare ver +lucidati lucidare ver +lucidato lucidare ver +lucidatore lucidatore nom +lucidatori lucidatore nom +lucidatrice lucidatore nom +lucidatrici lucidatore nom +lucidatura lucidatura nom +lucidature lucidatura nom +lucidava lucidare ver +lucide lucido adj +lucidezza lucidezza nom +lucidi lucido adj +lucidità lucidità nom +lucido lucido adj +lucignolo lucignolo nom +lucila lucere ver +lucile lucere ver +lucili lucere ver +lucilo lucere ver +lucine lucere ver +luco luco nom +lucore lucore nom +lucori lucore nom +lucra lucrare ver +lucrando lucrare ver +lucrano lucrare ver +lucrarci lucrare ver +lucrare lucrare ver +lucrarono lucrare ver +lucrarsi lucrare ver +lucrassero lucrare ver +lucrata lucrare ver +lucrati lucrare ver +lucrativa lucrativo adj +lucrative lucrativo adj +lucrativi lucrativo adj +lucrativo lucrativo adj +lucrato lucrare ver +lucrava lucrare ver +lucravano lucrare ver +lucri lucrare ver +lucrino lucrare ver +lucro lucro nom +lucrosa lucroso adj +lucrose lucroso adj +lucrosi lucroso adj +lucroso lucroso adj +luculliana luculliano adj +luculliani luculliano adj +luculliano luculliano adj +lucumone lucumone nom +lucumoni lucumone nom +lucumonia lucumonia nom +lucumonie lucumonia nom +luddismo luddismo nom +ludi ludo nom +ludibrio ludibrio nom +ludica ludico adj +ludiche ludico adj +ludici ludico adj +ludico ludico adj +ludione ludione nom +ludo ludo nom +ludoteca ludoteca nom +ludoteche ludoteca nom +lue lue nom +luetica luetico adj +luetiche luetico adj +luetico luetico adj +lugana lugana nom +luganiga luganiga nom +luganighe luganiga nom +luglio luglio nom +lugubre lugubre adj +lugubri lugubre adj +lui lui pro +luigi luigi nom +lulla lulla nom +lulle lulla nom +lumaca lumaca nom +lumache lumaca nom +lumacone lumacone nom +lumaconi lumacone nom +lumai lumaio nom +lume lume nom +lumeggia lumeggiare ver +lumeggiare lumeggiare ver +lumeggiata lumeggiare ver +lumeggiate lumeggiare ver +lumeggiati lumeggiare ver +lumeggiato lumeggiare ver +lumen lumen nom +lumi lume nom +lumicini lumicino nom +lumicino lumicino nom +lumiera lumiera nom +lumiere lumiera nom +luminal luminal nom +luminare luminare nom +luminari luminare nom +luminaria luminaria nom +luminarie luminaria nom +luminelli luminello nom +luminello luminello nom +luminescente luminescente adj +luminescenti luminescente adj +luminescenza luminescenza nom +luminescenze luminescenza nom +lumini lumino nom +luminismo luminismo nom +luminista luminista nom +luministica luministico adj +luministiche luministico adj +luministici luministico adj +luministico luministico adj +lumino lumino nom +luminosa luminoso adj +luminose luminoso adj +luminosi luminoso adj +luminosità luminosità nom +luminoso luminoso adj +luna luna nom +lunare lunare adj +lunari lunare adj +lunaria lunaria nom +lunario lunario nom +lunata lunato adj +lunate lunato adj +lunati lunato adj +lunatica lunatico adj +lunatiche lunatico adj +lunatici lunatico nom +lunatico lunatico adj +lunato lunato adj +lunazione lunazione nom +lunazioni lunazione nom +lune luna nom +lunedì lunedì nom +lunetta lunetta nom +lunette lunetta nom +lunga lungo adj +lungaggine lungaggine nom +lungaggini lungaggine nom +lungamente lungamente adv +lungarni lungarno nom +lungarno lungarno nom +lunghe lungo adj +lunghezza lunghezza nom +lunghezze lunghezza nom +lunghi lungo adj +lunghissimi lunghissimo adj +lunghissimo lunghissimo adj +lungi lungi adv +lungimirante lungimirante adj +lungimiranti lungimirante adj +lungimiranza lungimiranza nom +lungo lungo adj_sup +lungodegenti lungodegente adj +lungofiume lungofiume nom +lungofiumi lungofiume nom +lungolago lungolago nom +lungomare lungomare nom +lungomari lungomare nom +lungometraggi lungometraggio nom +lungometraggio lungometraggio nom +lungotevere lungotevere nom +lungoteveri lungotevere nom +lunotti lunotto nom +lunotto lunotto nom +lunula lunula nom +lunule lunula nom +luoghi luogo nom +luogo luogo nom +luogotenente luogotenente nom +luogotenenti luogotenente nom +luogotenenza luogotenenza nom +luogotenenze luogotenenza nom +luogotenenziale luogotenenziale adj +luogotenenziali luogotenenziale adj +lupa lupa|lupo nom +lupanare lupanare nom +lupanari lupanare nom +lupara lupara nom +lupare lupara nom +lupe lupa|lupo nom +lupesca lupesco adj +lupesche lupesco adj +lupeschi lupesco adj +lupesco lupesco adj +lupetti lupetto nom +lupetto lupetto nom +lupi lupo nom +lupinella lupinella nom +lupini lupino nom +lupino lupino nom +lupo lupo nom +luppoli luppolo nom +luppolo luppolo nom +lupus lupus nom +lurca lurco adj +lurchi lurco adj +lurco lurco adj +lurida lurido adj +luride lurido adj +luridi lurido adj +lurido lurido adj +luridume luridume nom +lusca lusco adj +luschi lusco adj +lusco lusco adj +lusinga lusinga nom +lusingandola lusingare ver +lusingandoli lusingare ver +lusingandolo lusingare ver +lusingano lusingare ver +lusingarci lusingare ver +lusingare lusingare ver +lusingarlo lusingare ver +lusingarmi lusingare ver +lusingarsi lusingare ver +lusingata lusingare ver +lusingate lusingare ver +lusingati lusingare ver +lusingato lusingare ver +lusingatori lusingatore adj +lusingava lusingare ver +lusinghe lusinga nom +lusingherà lusingare ver +lusinghevole lusinghevole adj +lusinghi lusingare ver +lusinghiamo lusingare ver +lusinghiera lusinghiero adj +lusinghiere lusinghiero adj +lusinghieri lusinghiero adj +lusinghiero lusinghiero adj +lusingo lusingare ver +lusingò lusingare ver +lusitana lusitano adj +lusitane lusitano adj +lusitani lusitano nom +lusitano lusitano adj +lussa lussare ver +lussandogli lussare ver +lussandosi lussare ver +lussare lussare ver +lussata lussare ver +lussate lussare ver +lussato lussare ver +lussazione lussazione nom +lussazioni lussazione nom +lussemburghese lussemburghese adj +lussemburghesi lussemburghese adj +lussi lusso nom +lussino lussare ver +lusso lusso nom +lussuosa lussuoso adj +lussuose lussuoso adj +lussuosi lussuoso adj +lussuoso lussuoso adj +lussureggiante lussureggiante adj +lussureggianti lussureggiante adj +lussuria lussuria nom +lussurie lussuria nom +lussuriosa lussurioso adj +lussuriose lussurioso adj +lussuriosi lussurioso adj +lussurioso lussurioso adj +lussò lussare ver +lustra lustro adj +lustraci lustrare ver +lustrale lustrale adj +lustrali lustrale adj +lustrando lustrare ver +lustrare lustrare ver +lustrascarpe lustrascarpe nom +lustrata lustrare ver +lustrati lustrare ver +lustrato lustrare ver +lustrazione lustrazione nom +lustrazioni lustrazione nom +lustre lustro adj +lustri lustro nom +lustrini lustrino nom +lustrino lustrino nom +lustro lustro nom +lutea luteo adj +lutei luteo adj +luteo luteo adj +luterana luterano adj +luterane luterano adj +luteranesimo luteranesimo nom +luterani luterano adj +luterano luterano adj +lutezio lutezio nom +lutti lutto nom +lutto lutto nom +luttuosa luttuoso adj +luttuose luttuoso adj +luttuosi luttuoso adj +luttuoso luttuoso adj +lutulento lutulento adj +lux lux nom +luxmetro luxmetro nom +luì luì nom +là là adv_sup +lì lì adv_sup +löss löss nom +m m sw +ma ma con +macabra macabro adj +macabre macabro adj +macabri macabro adj +macabro macabro adj +macachi macaco nom +macaco macaco nom +macadam macadam nom +macao macao nom +macaone macaone nom +macaoni macaone nom +maccarelli maccarello nom +maccarello maccarello nom +maccartismo maccartismo nom +maccartista maccartista nom +maccartiste maccartista nom +maccartisti maccartista nom +maccheroncini maccheroncino nom +maccherone maccherone nom +maccheronee maccheronea nom +maccheroni maccherone nom +maccheronica maccheronico adj +maccheroniche maccheronico adj +maccheronici maccheronico adj +maccheronico maccheronico adj +macchi macchiare ver +macchia macchia nom +macchiaioli macchiaiolo nom +macchiaiolo macchiaiolo nom +macchiando macchiare ver +macchiandola macchiare ver +macchiandosi macchiare ver +macchiano macchiare ver +macchiare macchiare ver +macchiarne macchiare ver +macchiarono macchiare ver +macchiarsi macchiare ver +macchiasse macchiare ver +macchiassero macchiare ver +macchiata macchiare ver +macchiate macchiare ver +macchiatesi macchiare ver +macchiati macchiare ver +macchiato macchiare ver +macchiava macchiare ver +macchiavano macchiare ver +macchiavi macchiare ver +macchie macchia nom +macchieranno macchiare ver +macchierebbe macchiare ver +macchierà macchiare ver +macchietta macchietta nom +macchiettata macchiettare ver +macchiettate macchiettare ver +macchiettati macchiettare ver +macchiettato macchiettare ver +macchiette macchietta nom +macchietti macchiettare ver +macchiettista macchiettista nom +macchietto macchiettare ver +macchina macchina nom +macchinale macchinale adj +macchinando macchinare ver +macchinare macchinare ver +macchinari macchinario nom +macchinario macchinario nom +macchinata macchinare ver +macchinati macchinare ver +macchinato macchinare ver +macchinatore macchinatore nom +macchinazione macchinazione nom +macchinazioni macchinazione nom +macchine macchina nom +macchini macchinare ver +macchinismo macchinismo nom +macchinista macchinista nom +macchinisti macchinista nom +macchino macchiare ver +macchinosa macchinoso adj +macchinose macchinoso adj +macchinosi macchinoso adj +macchinosità macchinosità nom +macchinoso macchinoso adj +macchinò macchinare ver +macchio macchiare ver +macchiò macchiare ver +macchè macchè int +macedone macedone adj +macedoni macedone adj +macedonia macedonia nom +macedonie macedonia nom +macella macellare ver +macellai macellaio nom +macellaia macellaio nom +macellaie macellaio nom +macellaio macellaio nom +macellando macellare ver +macellano macellare ver +macellare macellare ver +macellarle macellare ver +macellarlo macellare ver +macellarono macellare ver +macellata macellare ver +macellate macellare ver +macellati macellare ver +macellato macellare ver +macellatore macellatore nom +macellatori macellatore nom +macellava macellare ver +macellavano macellare ver +macellazione macellazione nom +macellazioni macellazione nom +macelleria macelleria nom +macellerie macelleria nom +macelli macello nom +macello macello nom +macellò macellare ver +macera macero adj +maceraci macerare ver +maceramento maceramento nom +macerando macerare ver +macerano macerare ver +macerare macerare ver +macerasi macerare ver +macerata macerare ver +macerate macerare ver +maceratesi macerare ver +macerati macerare ver +macerato macerare ver +maceratoio maceratoio nom +macerazione macerazione nom +macerazioni macerazione nom +macere macero adj +maceri macero nom +maceria maceria nom +macerie maceria nom +macerino macerare ver +macero macero adj +mach mach nom +machete machete nom +machiavelliana machiavelliano adj +machiavelliano machiavelliano adj +machiavellica machiavellico adj +machiavellicamente machiavellicamente adv +machiavelliche machiavellico adj +machiavellici machiavellico adj +machiavellico machiavellico adj +machiavellismi machiavellismo nom +machiavellismo machiavellismo nom +machmetro machmetro nom +macigni macigno nom +macigno macigno nom +macilenta macilento adj +macilente macilento adj +macilenti macilento adj +macilento macilento adj +macina macina nom +macinai macinare ver +macinando macinare ver +macinandole macinare ver +macinandoli macinare ver +macinano macinare ver +macinante macinare ver +macinanti macinare ver +macinapepe macinapepe nom +macinar macinare ver +macinare macinare ver +macinarli macinare ver +macinarlo macinare ver +macinarono macinare ver +macinarvi macinare ver +macinassero macinare ver +macinata macinato adj +macinate macinare ver +macinati macinare ver +macinato macinato nom +macinatore macinatore nom +macinatori macinatore nom +macinatrice macinatore nom +macinatura macinatura nom +macinava macinare ver +macinavano macinare ver +macinazione macinazione nom +macine macina nom +macini macinare ver +macinini macinino nom +macinino macinino nom +macino macinare ver +macinò macinare ver +macis macis nom +maciste maciste nom +macisti maciste nom +maciulla maciulla nom +maciullamento maciullamento nom +maciullare maciullare ver +maciullata maciullare ver +maciullati maciullare ver +maciullato maciullare ver +maciullò maciullare ver +macra macro adj +macrame macrame nom +macre macro adj +macri macro adj +macro macro adj +macrobiotica macrobiotico adj +macrobiotiche macrobiotico adj +macrobiotico macrobiotico adj +macrocefala macrocefalo adj +macrocefali macrocefalo adj +macrocefalia macrocefalia nom +macrocefalo macrocefalo adj +macroclima macroclima nom +macrocosmo macrocosmo nom +macroeconomia macroeconomia nom +macroeconomica macroeconomico adj +macroeconomiche macroeconomico adj +macroeconomici macroeconomico adj +macroeconomico macroeconomico adj +macroeconomie macroeconomia nom +macromolecola macromolecola nom +macromolecolare macromolecolare adj +macromolecolari macromolecolare adj +macromolecole macromolecola nom +macropsia macropsia nom +macropsie macropsia nom +macroregioni macroregione nom +macroscopica macroscopico adj +macroscopiche macroscopico adj +macroscopici macroscopico adj +macroscopico macroscopico adj +macrostruttura macrostruttura nom +macrostrutture macrostruttura nom +macuba macuba nom +macula macula nom +maculano maculare ver +macular maculare ver +maculare maculare ver +maculata maculato adj +maculate maculato adj +maculati maculato adj +maculato maculato adj +maculatura maculatura nom +maculature maculatura nom +macule macula nom +maculo maculare ver +madama madama nom +madame madama nom +madamigella madamigella nom +madamigelle madamigella nom +madapolam madapolam nom +madarosi madarosi nom +maddalena maddalena nom +maddalene maddalena nom +madera madera nom +madia madia nom +madida madido adj +madidi madido adj +madido madido adj +madie madia nom +madiere madiere nom +madieri madiere nom +madison madison nom +madonna madonna nom +madonne madonna nom +madonnina madonnina nom +madonnine madonnina nom +madore madore nom +madori madore nom +madornale madornale adj +madornali madornale adj +madras madras nom +madre madre nom +madrelingua madrelingua nom +madrelingue madrelingua nom +madrepatria madrepatria nom +madrepatrie madrepatria nom +madreperla madreperla nom +madreperlacea madreperlaceo adj +madreperlacee madreperlaceo adj +madreperlacei madreperlaceo adj +madreperlaceo madreperlaceo adj +madreperlata madreperlato adj +madreperlati madreperlato adj +madreperlato madreperlato adj +madreperle madreperla nom +madrepora madrepora nom +madrepore madrepora nom +madreporica madreporico adj +madreporiche madreporico adj +madrevite madrevite nom +madreviti madrevite nom +madri madre nom +madrigale madrigale nom +madrigali madrigale nom +madrigalista madrigalista nom +madrigalisti madrigalista nom +madrilena madrileno adj +madrilene madrileno adj +madrileni madrileno nom +madrileno madrileno adj +madrina madrina nom +madrine madrina nom +maestosa maestoso adj +maestose maestoso adj +maestosi maestoso adj +maestosità maestosità nom +maestoso maestoso adj +maestra maestro adj +maestrale maestrale nom +maestrali maestrale nom +maestranza maestranza nom +maestranze maestranza nom +maestre maestro adj +maestri maestro nom +maestria maestria nom +maestrie maestria nom +maestro maestro nom +maestà maestà nom +mafia mafia nom +mafie mafia nom +mafiosa mafioso adj +mafiose mafioso adj +mafiosi mafioso adj +mafioso mafioso adj +maga maga|mago nom +magagna magagna nom +magagne magagna nom +magari magari adv_sup +magazzinaggio magazzinaggio nom +magazzini magazzino nom +magazziniere magazziniere nom +magazzinieri magazziniere nom +magazzino magazzino nom +maggenghi maggengo adj +maggengo maggengo adj +maggese maggese adj +maggesi maggese adj +maggio maggio nom +maggiociondoli maggiociondolo nom +maggiociondolo maggiociondolo nom +maggiolini maggiolino nom +maggiolino maggiolino nom +maggior maggiore adj +maggiora maggiorare ver +maggiorana maggiorana nom +maggiorando maggiorare ver +maggiorandolo maggiorare ver +maggiorano maggiorare ver +maggiorante maggiorare ver +maggioranti maggiorare ver +maggioranza maggioranza nom +maggioranze maggioranza nom +maggiorare maggiorare ver +maggiorarne maggiorare ver +maggiorascato maggiorascato nom +maggiorasco maggiorasco nom +maggiorata maggiorare ver +maggiorate maggiorato adj +maggiorati maggiorato adj +maggiorato maggiorare ver +maggiorazione maggiorazione nom +maggiorazioni maggiorazione nom +maggiordomi maggiordomo nom +maggiordomo maggiordomo nom +maggiore maggiore adj +maggiorenne maggiorenne nom +maggiorenni maggiorenne nom +maggiorente maggiorente nom +maggiorenti maggiorente nom +maggiorerei maggiorare ver +maggiori maggiore adj +maggiorino maggiorare ver +maggioritari maggioritario adj +maggioritaria maggioritario adj +maggioritarie maggioritario adj +maggioritario maggioritario adj +maggiorità maggiorità nom +maggiormente maggiormente adv +maggioro maggiorare ver +maghe maga|mago nom +maghi mago nom +magi magio nom +magia magia nom +magica magico adj +magiche magico adj +magici magico adj +magico magico adj +magie magia nom +magio magio nom +magione magione nom +magioni magione nom +magiostrina magiostrina nom +magisteri magistero nom +magistero magistero nom +magistrale magistrale adj +magistrali magistrale adj +magistralmente magistralmente adv +magistrati magistrato nom +magistrato magistrato nom +magistratuale magistratuale adj +magistratuali magistratuale adj +magistratura magistratura nom +magistrature magistratura nom +magli maglio nom +maglia maglia nom +magliaia magliaia nom +magliaie magliaia nom +magliari magliaro nom +magliaro magliaro nom +maglie maglia nom +maglieria maglieria nom +maglierie maglieria nom +maglietta maglietta nom +magliette maglietta nom +maglifici maglificio nom +maglificio maglificio nom +maglio maglio nom +maglioli magliolo nom +magliolo magliolo nom +maglione maglione nom +maglioni maglione nom +magliuoli magliuolo nom +magliuolo magliuolo nom +magma magma nom +magmatica magmatico adj +magmatiche magmatico adj +magmatici magmatico adj +magmatico magmatico adj +magmi magma nom +magna magno adj +magnaccia magnaccia nom +magnani magnano nom +magnanima magnanimo adj +magnanime magnanimo adj +magnanimi magnanimo adj +magnanimità magnanimità nom +magnanimo magnanimo adj +magnano magnano nom +magnate magnate nom +magnati magnate nom +magnatizia magnatizio adj +magnatizie magnatizio adj +magnatizio magnatizio adj +magne magno adj +magnesi magnesio nom +magnesia magnesia nom +magnesiaca magnesiaco adj +magnesiache magnesiaco adj +magnesiaci magnesiaco adj +magnesiaco magnesiaco adj +magnesie magnesia nom +magnesio magnesio nom +magnesite magnesite nom +magnete magnete nom +magneti magnete nom +magnetica magnetico adj +magnetiche magnetico adj +magnetici magnetico adj +magnetico magnetico adj +magnetismi magnetismo nom +magnetismo magnetismo nom +magnetite magnetite nom +magnetiti magnetite nom +magnetizza magnetizzare ver +magnetizzandosi magnetizzare ver +magnetizzano magnetizzare ver +magnetizzante magnetizzare ver +magnetizzare magnetizzare ver +magnetizzata magnetizzare ver +magnetizzate magnetizzare ver +magnetizzati magnetizzare ver +magnetizzato magnetizzare ver +magnetizzatore magnetizzatore nom +magnetizzazione magnetizzazione nom +magnetizzazioni magnetizzazione nom +magnetofoni magnetofono nom +magnetofono magnetofono nom +magnetometri magnetometro nom +magnetometro magnetometro nom +magnetostrizione magnetostrizione nom +magnetron magnetron nom +magni magno adj +magnifica magnifico adj +magnificamente magnificamente adv +magnificando magnificare ver +magnificano magnificare ver +magnificare magnificare ver +magnificarlo magnificare ver +magnificarne magnificare ver +magnificarono magnificare ver +magnificasse magnificare ver +magnificat magnificat nom +magnificata magnificare ver +magnificate magnificare ver +magnificati magnificare ver +magnificato magnificare ver +magnificava magnificare ver +magnificazione magnificazione nom +magnificente magnificente adj +magnificenti magnificente adj +magnificenza magnificenza nom +magnificenze magnificenza nom +magnifiche magnifico adj +magnificherei magnificare ver +magnifichi magnificare ver +magnifici magnifico adj +magnifico magnifico adj +magnificò magnificare ver +magniloquente magniloquente adj +magniloquenti magniloquente adj +magniloquenza magniloquenza nom +magniloquenze magniloquenza nom +magnitudi magnitudo nom +magnitudine magnitudine nom +magnitudini magnitudine nom +magnitudo magnitudo nom +magno magno adj +magnolia magnolia nom +magnoliacee magnoliacee nom +magnolie magnolia nom +mago mago nom +magona magona nom +magone magona|magone nom +magoni magone nom +magra magro adj +magre magro adj +magrezza magrezza nom +magri magro adj +magro magro adj +mah mah int +maharaja maharaja nom +maharajah maharajah nom +maharani maharani nom +mahatma mahatma adj +mahdi mahdi nom +mahdismo mahdismo nom +mahdista mahdista nom +mahdiste mahdista nom +mahdisti mahdista nom +mai mai adv_sup +maiale maiale nom +maiali maiale nom +maialini maialino nom +maidico maidico adj +maieutica maieutica nom +maieutiche maieutica nom +maiolica maiolica nom +maiolicata maiolicato adj +maiolicate maiolicato adj +maiolicati maiolicato adj +maiolicato maiolicato adj +maioliche maiolica nom +maionese maionese nom +maionesi maionese nom +mais mais nom +maison maison nom +maiuscola maiuscolo adj +maiuscole maiuscolo adj +maiuscoletti maiuscoletto nom +maiuscoletto maiuscoletto nom +maiuscoli maiuscolo adj +maiuscolo maiuscolo adj +maizena maizena nom +majorette majorette nom +makò makò adj +mal male nom +mala malo adj +malacca malacca nom +malaccorta malaccorto adj +malaccorte malaccorto adj +malaccorti malaccorto adj +malaccorto malaccorto adj +malachite malachite nom +malacologia malacologia nom +malacologie malacologia nom +malafatta malafatta nom +malafede malafede nom +malaffare malaffare nom +malaffari malaffare nom +malaga malaga nom +malagevole malagevole adj +malagevolezza malagevolezza nom +malagevoli malagevole adj +malagrazia malagrazia nom +malalingua malalingua nom +malamente malamente adv +malandata malandato adj +malandate malandato adj +malandati malandato adj +malandato malandato adj +malandrina malandrino adj +malandrinaggio malandrinaggio nom +malandrine malandrino adj +malandrini malandrino adj +malandrino malandrino adj +malanimo malanimo nom +malanni malanno nom +malanno malanno nom +malapena malapena nom +malaria malaria nom +malarica malarico adj +malariche malarico adj +malarici malarico adj +malarico malarico adj +malarie malaria nom +malasorte malasorte nom +malata malato adj +malate malato adj +malati malato nom +malaticce malaticcio adj +malaticci malaticcio adj +malaticcia malaticcio adj +malaticcio malaticcio adj +malato malato adj +malattia malattia nom +malattie malattia nom +malaugurata malaugurato adj +malauguratamente malauguratamente adv +malaugurate malaugurato adj +malaugurato malaugurato adj +malaugurio malaugurio nom +malavita malavita nom +malavitosi malavitoso nom +malavoglia malavoglia nom +malaysiana malaysiano adj +malaysiane malaysiano adj +malaysiani malaysiano adj +malaysiano malaysiano adj +malcapitata malcapitato adj +malcapitate malcapitato adj +malcapitati malcapitato nom +malcapitato malcapitato nom +malconce malconcio adj +malconci malconcio adj +malconcia malconcio adj +malconcio malconcio adj +malcontenta malcontento adj +malcontenti malcontento adj +malcontento malcontento nom +malcostume malcostume nom +malcostumi malcostume nom +malcurata malcurato adj +malcurati malcurato adj +maldentati maldentati nom +maldestra maldestro adj +maldestre maldestro adj +maldestri maldestro adj +maldestro maldestro adj +maldicente maldicente adj +maldicenti maldicente adj +maldicenza maldicenza nom +maldicenze maldicenza nom +maldisposto maldisposto adj +male mala|male nom_sup +maledetta maledetto adj +maledettamente maledettamente adv +maledette maledetto adj +maledetti maledetto adj +maledetto maledetto adj +maledica maledico adj +maledice maledire ver +maledicendo maledire ver +maledicendola maledire ver +maledicendolo maledire ver +maledicendosi maledire ver +maledicente maledire ver +malediceva maledire ver +maledicevano maledire ver +maledici maledico adj +malediciamo maledire ver +maledico maledico adj +maledicono maledire ver +maledirai maledire ver +malediranno maledire ver +maledire maledire ver +maledirla maledire ver +maledirli maledire ver +maledirlo maledire ver +maledirmi maledire ver +maledirà maledire ver +maledirò maledire ver +maledisse maledire ver +maledissero maledire ver +maledizione maledizione nom +maledizioni maledizione nom +maleducata maleducato adj +maleducate maleducato adj +maleducati maleducato adj +maleducato maleducato adj +maleducazione maleducazione nom +maleducazioni maleducazione nom +malefatta malefatta nom +malefatte malefatta nom +malefica malefico adj +malefiche malefico adj +malefici malefico adj +maleficio maleficio nom +malefico malefico adj +maleodorante maleodorante adj +maleodoranti maleodorante adj +malerba malerba nom +malerbi malerba nom +malese malese adj +malesi malese adj +malessere malessere nom +malesseri malessere nom +malevola malevolo adj +malevole malevolo adj +malevolenza malevolenza nom +malevolenze malevolenza nom +malevoli malevolo adj +malevolo malevolo adj +malfa malfare ver +malfamata malfamato adj +malfamate malfamato adj +malfamati malfamato adj +malfamato malfamato adj +malfare malfare ver +malfatta malfare ver +malfatte malfare ver +malfatti malfatto adj +malfatto malfatto adj +malferma malfermo adj +malferme malfermo adj +malfermi malfermo adj +malfermo malfermo adj +malfidati malfidato adj +malfidato malfidato adj +malfido malfido adj +malfondata malfondato adj +malformata malformato adj +malformate malformato adj +malformati malformato adj +malformato malformato adj +malformazione malformazione nom +malformazioni malformazione nom +malga malga nom +malgari malgaro nom +malgaro malgaro nom +malgasce malgascio adj +malgasci malgascio adj +malgascia malgascio adj +malgascio malgascio adj +malghe malga nom +malgiudicata malgiudicare ver +malgiudicati malgiudicare ver +malgiudicato malgiudicare ver +malgoverno malgoverno nom +malgrado malgrado adv_sup +mali malo adj_sup +malia malia nom +maliarda maliardo nom +maliarde maliardo adj +maliardo maliardo adj +malie malia nom +maligna maligno adj +malignando malignare ver +malignano malignare ver +malignare malignare ver +malignato malignare ver +malignava malignare ver +maligne maligno adj +maligni maligno adj +malignità malignità nom +maligno maligno adj +malinconia malinconia nom +malinconica malinconico adj +malinconiche malinconico adj +malinconici malinconico adj +malinconico malinconico adj +malinconie malinconia nom +malincuore malincuore adv +malinformato malinformato adj +malintenzionati malintenzionato nom +malintenzionato malintenzionato adj +malintesa malinteso adj +malintese malinteso adj +malintesi malinteso nom +malinteso malinteso nom +maliosa malioso adj +malissimo malissimo sw +malizia malizia nom +malizie malizia nom +maliziosa malizioso adj +maliziose malizioso adj +maliziosi malizioso adj +maliziosità maliziosità nom +malizioso malizioso adj +malleabile malleabile adj +malleabili malleabile adj +malleabilità malleabilità nom +malleolare malleolare adj +malleolari malleolare adj +malleoli malleolo nom +malleolo malleolo nom +mallevadore mallevadore nom +mallevadori mallevadore nom +malleveria malleveria nom +malleverie malleveria nom +malli mallo nom +mallo mallo nom +malloppi malloppo nom +malloppo malloppo nom +malmaritata malmaritata nom +malmaritate malmaritata nom +malmena malmenare ver +malmenando malmenare ver +malmenandolo malmenare ver +malmenano malmenare ver +malmenare malmenare ver +malmenarla malmenare ver +malmenarlo malmenare ver +malmenarono malmenare ver +malmenarsi malmenare ver +malmenata malmenare ver +malmenate malmenare ver +malmenati malmenare ver +malmenato malmenare ver +malmenava malmenare ver +malmenavano malmenare ver +malmenò malmenare ver +malmessa malmesso adj +malmesse malmesso adj +malmessi malmesso adj +malmesso malmesso adj +malnate malnato adj +malnati malnato adj +malnato malnato adj +malnutrita malnutrito adj +malnutrite malnutrito adj +malnutriti malnutrito adj +malnutrito malnutrito adj +malnutrizione malnutrizione nom +malo malo adj +malocchi malocchio nom +malocchio malocchio nom +malora malora nom +malore malora|malore nom +malori malore nom +malpeli malpelo adj +malpelo malpelo adj +malpensante malpensante nom +malpensanti malpensante nom +malpigli malpiglio nom +malpiglio malpiglio nom +malridotta malridotto adj +malridotte malridotto adj +malridotti malridotto adj +malridotto malridotto adj +malsana malsano adj +malsane malsano adj +malsani malsano adj +malsano malsano adj +malsicura malsicuro adj +malsicure malsicuro adj +malsicuri malsicuro adj +malsicuro malsicuro adj +malta malta nom +maltagliata maltagliato adj +maltagliati maltagliato adj +maltasi maltasi nom +maltazione maltazione nom +malte malta nom +maltempi maltempo nom +maltempo maltempo nom +maltenute maltenuto adj +maltenuti maltenuto adj +maltese maltese adj +maltesi maltese adj +malti malto nom +malto malto nom +maltolto maltolto nom +maltosio maltosio nom +maltratta maltrattare ver +maltrattamenti maltrattamento nom +maltrattamento maltrattamento nom +maltrattando maltrattare ver +maltrattandola maltrattare ver +maltrattandoli maltrattare ver +maltrattandolo maltrattare ver +maltrattano maltrattare ver +maltrattare maltrattare ver +maltrattarla maltrattare ver +maltrattarli maltrattare ver +maltrattarlo maltrattare ver +maltrattarono maltrattare ver +maltrattarti maltrattare ver +maltrattasse maltrattare ver +maltrattassero maltrattare ver +maltrattata maltrattare ver +maltrattate maltrattare ver +maltrattati maltrattare ver +maltrattato maltrattare ver +maltrattava maltrattare ver +maltrattavano maltrattare ver +maltratterà maltrattare ver +maltratti maltrattare ver +maltrattiamo maltrattare ver +maltratto maltrattare ver +maltrattò maltrattare ver +maltusiana maltusiano adj +maltusiani maltusiano nom +maltusiano maltusiano adj +malumore malumore nom +malumori malumore nom +malva malva nom +malvacee malvacee nom +malvagi malvagio adj +malvagia malvagio adj +malvagie malvagio adj +malvagio malvagio adj +malvagità malvagità nom +malvali malvali nom +malvasia malvasia nom +malvasie malvasia nom +malve malva nom +malversatore malversatore nom +malversatori malversatore nom +malversazione malversazione nom +malversazioni malversazione nom +malvestita malvestito adj +malvestite malvestito adj +malvestiti malvestito adj +malvestito malvestito adj +malvezzi malvezzo nom +malvezzo malvezzo nom +malvissuto malvissuto adj +malvista malvisto adj +malviste malvisto adj +malvisti malvisto adj +malvisto malvisto adj +malvivente malvivente nom +malviventi malvivente nom +malvivenza malvivenza nom +malvolentieri malvolentieri adv +malvolere malvolere nom +malvoluta malvolere ver +malvoluti malvolere ver +malvoluto malvolere ver +mambi mambo nom +mambo mambo nom +mamma mamma nom +mammalucchi mammalucco nom +mammalucco mammalucco nom +mammana mammana nom +mammane mammana nom +mammari mammario adj +mammaria mammario adj +mammarie mammario adj +mammario mammario adj +mammasantissima mammasantissima nom +mamme mamma nom +mammella mammella nom +mammelle mammella nom +mammifera mammifero adj +mammifere mammifero adj +mammiferi mammifero adj +mammifero mammifero adj +mammillare mammillare adj +mammillari mammillare adj +mammografia mammografia nom +mammografie mammografia nom +mammola mammola nom +mammole mammola nom +mammut mammut nom +management management nom +manager manager nom +manageriale manageriale adj +manageriali manageriale adj +managerialità managerialità nom +manale manale nom +manali manale nom +manata manata nom +manate manata nom +manati manato nom +manato manato nom +manca manco adj +mancai mancare ver +mancala mancare ver +mancamenti mancamento nom +mancamento mancamento nom +mancando mancare ver +mancandoci mancare ver +mancandogli mancare ver +mancandola mancare ver +mancandole mancare ver +mancandoli mancare ver +mancandolo mancare ver +mancandomi mancare ver +mancandone mancare ver +mancandovi mancare ver +mancano mancare ver +mancante mancare ver +mancanti mancare ver +mancanza mancanza nom +mancanze mancanza nom +mancar mancare ver +mancarci mancare ver +mancare mancare ver +mancargli mancare ver +mancarla mancare ver +mancarle mancare ver +mancarlo mancare ver +mancarmi mancare ver +mancarne mancare ver +mancarono mancare ver +mancarsi mancare ver +mancarti mancare ver +mancarvi mancare ver +mancasse mancare ver +mancassero mancare ver +mancassi mancare ver +mancata mancare ver +mancate mancare ver +mancati mancato adj +mancato mancato adj +mancava mancare ver +mancavamo mancare ver +mancavano mancare ver +mancavi mancare ver +mancavo mancare ver +mance mancia nom +manche manca|manche nom +mancherai mancare ver +mancheranno mancare ver +mancherebbe mancare ver +mancherebbero mancare ver +mancherei mancare ver +mancheremmo mancare ver +mancheremo mancare ver +mancherete mancare ver +mancherà mancare ver +mancherò mancare ver +manchette manchette nom +manchevole manchevole adj +manchevolezza manchevolezza nom +manchevolezze manchevolezza nom +manchevoli manchevole adj +manchi mancare ver +manchiamo mancare ver +manchino mancare ver +manci manco adj +mancia mancia nom +manciata manciata nom +manciate manciata nom +mancina mancino adj +mancine mancino adj +mancini mancino adj +mancinismo mancinismo nom +mancino mancino adj +manco manco adj_sup +mancolista mancolista nom +mancò mancare ver +manda mandare ver +mandaci mandare ver +mandagli mandare ver +mandai mandare ver +mandala mandare ver +mandale mandare ver +mandali mandare ver +mandalo mandare ver +mandamela mandare ver +mandamelo mandare ver +mandamentale mandamentale adj +mandamentali mandamentale adj +mandamenti mandamento nom +mandamento mandamento nom +mandami mandare ver +mandammo mandare ver +mandando mandare ver +mandandoci mandare ver +mandandogli mandare ver +mandandola mandare ver +mandandole mandare ver +mandandoli mandare ver +mandandolo mandare ver +mandandomi mandare ver +mandandone mandare ver +mandandosi mandare ver +mandandoti mandare ver +mandandovi mandare ver +mandane mandare ver +mandano mandare ver +mandante mandante nom +mandanti mandante nom +mandar mandare ver +mandaranci mandarancio nom +mandarancio mandarancio nom +mandarcela mandare ver +mandarceli mandare ver +mandarcelo mandare ver +mandarci mandare ver +mandare mandare ver +mandargli mandare ver +mandarglieli mandare ver +mandargliene mandare ver +mandarini mandarino nom +mandarino mandarino nom +mandarla mandare ver +mandarle mandare ver +mandarli mandare ver +mandarlo mandare ver +mandarmelo mandare ver +mandarmene mandare ver +mandarmi mandare ver +mandarne mandare ver +mandarono mandare ver +mandarsi mandare ver +mandartela mandare ver +mandarti mandare ver +mandarvela mandare ver +mandarvi mandare ver +mandasse mandare ver +mandassero mandare ver +mandassi mandare ver +mandata mandare ver +mandatari mandatario nom +mandataria mandatario nom +mandatarie mandatario nom +mandatario mandatario nom +mandate mandare ver +mandateci mandare ver +mandategli mandare ver +mandatela mandare ver +mandatelo mandare ver +mandatemi mandare ver +mandati mandare ver +mandato mandato nom +mandava mandare ver +mandavamo mandare ver +mandavano mandare ver +mandavi mandare ver +mandavo mandare ver +manderai mandare ver +manderanno mandare ver +manderebbe mandare ver +manderebbero mandare ver +manderei mandare ver +manderemo mandare ver +manderesti mandare ver +manderete mandare ver +manderà mandare ver +manderò mandare ver +mandi mandare ver +mandiamo mandare ver +mandiamogli mandare ver +mandiamola mandare ver +mandiamoli mandare ver +mandiamolo mandare ver +mandiate mandare ver +mandibola mandibola nom +mandibolare mandibolare adj +mandibolari mandibolare adj +mandibole mandibola nom +mandino mandare ver +mando mandare ver +mandola mandola nom +mandole mandola nom +mandolinata mandolinata nom +mandolinate mandolinata nom +mandolini mandolino nom +mandolinista mandolinista nom +mandolinisti mandolinista nom +mandolino mandolino nom +mandorla mandorla nom +mandorlata mandorlato adj +mandorlati mandorlato adj +mandorlato mandorlato adj +mandorle mandorla nom +mandorleti mandorleto nom +mandorleto mandorleto nom +mandorli mandorlo nom +mandorlo mandorlo nom +mandra mandra nom +mandragola mandragola nom +mandragole mandragola nom +mandre mandra nom +mandria mandria nom +mandriana mandriano nom +mandriane mandriano nom +mandriani mandriano nom +mandriano mandriano nom +mandrie mandria nom +mandrilli mandrillo nom +mandrillo mandrillo nom +mandrini mandrino nom +mandrino mandrino nom +mandò mandare ver +mane mane nom +maneggevole maneggevole adj +maneggevolezza maneggevolezza nom +maneggevoli maneggevole adj +maneggi maneggio nom +maneggia maneggiare ver +maneggiando maneggiare ver +maneggiandola maneggiare ver +maneggiandolo maneggiare ver +maneggiano maneggiare ver +maneggiar maneggiare ver +maneggiare maneggiare ver +maneggiarla maneggiare ver +maneggiarle maneggiare ver +maneggiarli maneggiare ver +maneggiarlo maneggiare ver +maneggiarne maneggiare ver +maneggiarono maneggiare ver +maneggiassero maneggiare ver +maneggiata maneggiare ver +maneggiate maneggiare ver +maneggiati maneggiare ver +maneggiato maneggiare ver +maneggiatore maneggiatore nom +maneggiatori maneggiatore nom +maneggiatrici maneggiatore nom +maneggiava maneggiare ver +maneggiavano maneggiare ver +maneggiavo maneggiare ver +maneggino maneggiare ver +maneggio maneggio nom +maneggione maneggione nom +maneggioni maneggione nom +maneggiò maneggiare ver +manesca manesco adj +manesche manesco adj +maneschi manesco adj +manesco manesco adj +manetta manetta nom +manette manetta|manette nom +manforte manforte nom +mangana manganare ver +manganati manganare ver +manganato manganare ver +manganatura manganatura nom +manganella manganellare ver +manganellata manganellata nom +manganellate manganellata nom +manganellati manganellare ver +manganellato manganellare ver +manganelli manganello nom +manganello manganello nom +manganese manganese nom +mangani mangano nom +manganina manganina nom +mangano mangano nom +manganosi manganoso adj +manganoso manganoso adj +mangerai mangiare ver +mangeranno mangiare ver +mangerebbe mangiare ver +mangerebbero mangiare ver +mangerecce mangereccio adj +mangerecci mangereccio adj +mangereccia mangereccio adj +mangereccio mangereccio adj +mangerei mangiare ver +mangeremo mangiare ver +mangeresti mangiare ver +mangerete mangiare ver +mangerà mangiare ver +mangerò mangiare ver +manghi mango nom +mangi mangiare ver +mangia mangiare ver +mangiabile mangiabile adj +mangiabili mangiabile adj +mangiadischi mangiadischi nom +mangiai mangiare ver +mangiala mangiare ver +mangiali mangiare ver +mangialo mangiare ver +mangiamele mangiare ver +mangiameli mangiare ver +mangiami mangiare ver +mangiammo mangiare ver +mangiamo mangiare ver +mangianastri mangianastri nom +mangiando mangiare ver +mangiandola mangiare ver +mangiandole mangiare ver +mangiandoli mangiare ver +mangiandolo mangiare ver +mangiandone mangiare ver +mangiandoseli mangiare ver +mangiandoselo mangiare ver +mangiandosi mangiare ver +mangiano mangiare ver +mangiante mangiare ver +mangianti mangiare ver +mangiapane mangiapane nom +mangiapreti mangiapreti nom +mangiar mangiare ver +mangiare mangiare ver +mangiargli mangiare ver +mangiarla mangiare ver +mangiarle mangiare ver +mangiarli mangiare ver +mangiarlo mangiare ver +mangiarmi mangiare ver +mangiarne mangiare ver +mangiarono mangiare ver +mangiarsela mangiare ver +mangiarsele mangiare ver +mangiarseli mangiare ver +mangiarselo mangiare ver +mangiarsi mangiare ver +mangiarti mangiare ver +mangiarvi mangiare ver +mangiasoldi mangiasoldi adj +mangiasse mangiare ver +mangiassero mangiare ver +mangiassi mangiare ver +mangiaste mangiare ver +mangiasti mangiare ver +mangiata mangiare ver +mangiate mangiare ver +mangiatelo mangiare ver +mangiatemi mangiare ver +mangiatene mangiare ver +mangiati mangiare ver +mangiato mangiare ver +mangiatoia mangiatoia nom +mangiatoie mangiatoia nom +mangiatore mangiatore nom +mangiatori mangiatore nom +mangiatrice mangiatore nom +mangiatrici mangiatore nom +mangiava mangiare ver +mangiavamo mangiare ver +mangiavano mangiare ver +mangiavi mangiare ver +mangiavo mangiare ver +mangime mangime nom +mangimi mangime nom +mangimistica mangimistico adj +mangimistiche mangimistico adj +mangimistico mangimistico adj +mangino mangiare ver +mangio mangiare ver +mangiona mangione adj +mangione mangione adj +mangioni mangione nom +mangiò mangiare ver +mango mango nom +mangosta mangosta nom +mangoste mangosta nom +mangrovia mangrovia nom +mangrovie mangrovia nom +mangusta mangusta nom +manguste mangusta nom +mani mani|mano nom +mania mania nom +maniaca maniaco adj +maniacale maniacale adj +maniacali maniacale adj +maniaci maniaco adj +maniaco maniaco adj +manica manica nom +manicaretti manicaretto nom +manicaretto manicaretto nom +maniche manica nom +manichea manicheo adj +manichee manicheo adj +manichei manicheo nom +manicheismo manicheismo nom +manicheo manicheo adj +manichetta manichetta nom +manichette manichetta nom +manichi manico nom +manichini manichino nom +manichino manichino nom +manici manico nom +manico manico nom +manicomi manicomio nom +manicomiale manicomiale adj +manicomiali manicomiale adj +manicomio manicomio nom +manicotti manicotto nom +manicotto manicotto nom +manicure manicure nom +manie mania nom +maniera maniera nom +manierata manierato adj +manierate manierato adj +manierato manierato adj +maniere maniera nom +manieri maniero nom +manierismi manierismo nom +manierismo manierismo nom +manierista manierista adj +manieriste manierista adj +manieristi manierista adj +maniero maniero nom +manierosa manieroso adj +manieroso manieroso adj +manifattura manifattura nom +manifatture manifattura nom +manifatturiera manifatturiero adj +manifatturiere manifatturiero adj +manifatturieri manifatturiero adj +manifatturiero manifatturiero adj +manifesta manifestare ver +manifestaci manifestare ver +manifestamente manifestamente adv +manifestando manifestare ver +manifestandogli manifestare ver +manifestandole manifestare ver +manifestandolo manifestare ver +manifestandosi manifestare ver +manifestano manifestare ver +manifestante manifestante nom +manifestanti manifestante nom +manifestare manifestare ver +manifestargli manifestare ver +manifestarla manifestare ver +manifestarle manifestare ver +manifestarli manifestare ver +manifestarlo manifestare ver +manifestarmi manifestare ver +manifestarne manifestare ver +manifestarono manifestare ver +manifestarsene manifestare ver +manifestarsi manifestare ver +manifestarti manifestare ver +manifestarvi manifestare ver +manifestasse manifestare ver +manifestassero manifestare ver +manifestasti manifestare ver +manifestata manifestare ver +manifestate manifestare ver +manifestatesi manifestare ver +manifestati manifestare ver +manifestato manifestare ver +manifestava manifestare ver +manifestavano manifestare ver +manifestazione manifestazione nom +manifestazioni manifestazione nom +manifeste manifesto adj +manifesteranno manifestare ver +manifesterebbe manifestare ver +manifesterebbero manifestare ver +manifesteremo manifestare ver +manifesterà manifestare ver +manifesterò manifestare ver +manifesti manifesto nom +manifestiamo manifestare ver +manifestini manifestino nom +manifestino manifestare ver +manifesto manifesto nom +manifestò manifestare ver +maniglia maniglia nom +maniglie maniglia nom +manigolda manigoldo nom +manigoldi manigoldo nom +manigoldo manigoldo nom +manina manina nom +manine manina nom +manioca manioca nom +manipola manipolare ver +manipolami manipolare ver +manipolando manipolare ver +manipolandola manipolare ver +manipolandole manipolare ver +manipolandoli manipolare ver +manipolandolo manipolare ver +manipolandone manipolare ver +manipolano manipolare ver +manipolare manipolare ver +manipolarla manipolare ver +manipolarle manipolare ver +manipolarli manipolare ver +manipolarlo manipolare ver +manipolarne manipolare ver +manipolarono manipolare ver +manipolarsi manipolare ver +manipolassero manipolare ver +manipolata manipolare ver +manipolate manipolare ver +manipolati manipolare ver +manipolato manipolare ver +manipolatore manipolatore adj +manipolatori manipolatore nom +manipolatrice manipolatore adj +manipolatrici manipolatore adj +manipolava manipolare ver +manipolavano manipolare ver +manipolazione manipolazione nom +manipolazioni manipolazione nom +manipolerebbe manipolare ver +manipolerebbero manipolare ver +manipolerà manipolare ver +manipoli manipolo nom +manipoliamo manipolare ver +manipolino manipolare ver +manipolo manipolo nom +manipolò manipolare ver +maniscalchi maniscalco nom +maniscalco maniscalco nom +manna manna nom +mannaia mannaia nom +mannaie mannaia nom +mannara mannaro adj +mannare mannaro adj +mannari mannaro adj +mannaro mannaro adj +mannella mannella nom +mannelli mannello nom +mannello mannello nom +mannequin mannequin nom +mannite mannite nom +mano mano nom +manodopera manodopera nom +manomessa manomettere ver +manomesse manomettere ver +manomessi manomettere ver +manomesso manomettere ver +manometri manometro nom +manometro manometro nom +manomette manomettere ver +manomettendo manomettere ver +manomettendogli manomettere ver +manomettere manomettere ver +manometterlo manomettere ver +manomettesse manomettere ver +manometteva manomettere ver +manomettono manomettere ver +manomise manomettere ver +manomissione manomissione nom +manomissioni manomissione nom +manomorta manomorta nom +manopola manopola nom +manopole manopola nom +manoscritta manoscritto adj +manoscritte manoscritto adj +manoscritti manoscritto nom +manoscritto manoscritto nom +manovalanza manovalanza nom +manovalanze manovalanza nom +manovale manovale nom +manovali manovale nom +manovella manovella nom +manovelle manovella nom +manovellismi manovellismo nom +manovellismo manovellismo nom +manovra manovra nom +manovrabile manovrabile adj +manovrabili manovrabile adj +manovrabilità manovrabilità nom +manovrando manovrare ver +manovrandola manovrare ver +manovrandolo manovrare ver +manovrano manovrare ver +manovrante manovrare ver +manovranti manovrare ver +manovrare manovrare ver +manovrarla manovrare ver +manovrarle manovrare ver +manovrarli manovrare ver +manovrarlo manovrare ver +manovrarne manovrare ver +manovrarono manovrare ver +manovrasse manovrare ver +manovrata manovrare ver +manovrate manovrare ver +manovrati manovrare ver +manovrato manovrare ver +manovratore manovratore nom +manovratori manovratore nom +manovratrice manovratore adj +manovrava manovrare ver +manovravano manovrare ver +manovre manovra nom +manovreranno manovrare ver +manovrerà manovrare ver +manovri manovrare ver +manovriera manovriero adj +manovriere manovriero adj +manovrieri manovriero adj +manovriero manovriero adj +manovro manovrare ver +manovrò manovrare ver +manrovesci manrovescio nom +manrovescio manrovescio nom +mansarda mansarda nom +mansarde mansarda nom +mansione mansione nom +mansioni mansione nom +mansuefare mansuefare ver +mansuefatti mansuefare ver +mansueta mansueto adj +mansuete mansueto adj +mansueti mansueto adj +mansueto mansueto adj +mansuetudine mansuetudine nom +manta manta nom +mante manta nom +manteca manteca nom +mantecato mantecato adj +mantella mantella|mantello nom +mantelle mantella|mantello nom +mantelli mantello nom +mantellina mantellina nom +mantelline mantellina nom +mantello mantello nom +mantenendo mantenere ver +mantenendoci mantenere ver +mantenendogli mantenere ver +mantenendola mantenere ver +mantenendole mantenere ver +mantenendoli mantenere ver +mantenendolo mantenere ver +mantenendone mantenere ver +mantenendosene mantenere ver +mantenendosi mantenere ver +mantenendovi mantenere ver +mantenente mantenere ver +mantenenti mantenere ver +mantener mantenere ver +mantenerci mantenere ver +mantenere mantenere ver +mantenergli mantenere ver +mantenerla mantenere ver +mantenerle mantenere ver +mantenerli mantenere ver +mantenerlo mantenere ver +mantenermi mantenere ver +mantenerne mantenere ver +mantenerselo mantenere ver +mantenersi mantenere ver +mantenerti mantenere ver +mantenervi mantenere ver +mantenesse mantenere ver +mantenessero mantenere ver +mantenessimo mantenere ver +mantenete mantenere ver +mantenetevi mantenere ver +manteneva mantenere ver +mantenevamo mantenere ver +mantenevano mantenere ver +mantenga mantenere ver +mantengano mantenere ver +mantengo mantenere ver +mantengono mantenere ver +manteniamo mantenere ver +manteniamoci mantenere ver +manteniamola mantenere ver +manteniamole mantenere ver +manteniamolo mantenere ver +mantenimenti mantenimento nom +mantenimento mantenimento nom +mantenitore mantenitore nom +mantenitori mantenitore nom +mantenne mantenere ver +mantennero mantenere ver +mantenni mantenere ver +mantenuta mantenere ver +mantenutasi mantenere ver +mantenute mantenere ver +mantenuti mantenere ver +mantenuto mantenere ver +manterrai mantenere ver +manterranno mantenere ver +manterrebbe mantenere ver +manterrebbero mantenere ver +manterrei mantenere ver +manterremmo mantenere ver +manterremo mantenere ver +manterreste mantenere ver +manterrà mantenere ver +manterrò mantenere ver +manti manto nom +mantice mantice nom +mantici mantice nom +mantide mantide nom +mantidi mantide nom +mantiene mantenere ver +mantieni mantenere ver +mantienilo mantenere ver +mantienimi mantenere ver +mantieniti mantenere ver +mantiglia mantiglia nom +mantissa mantissa nom +mantisse mantissa nom +manto manto nom +mantovana mantovano adj +mantovane mantovano adj +mantovani mantovano adj +mantovano mantovano adj +manuale manuale adj +manuali manuale adj +manualistica manualistico adj +manualistiche manualistico adj +manualistici manualistico adj +manualistico manualistico adj +manualità manualità nom +manualmente manualmente adv +manubri manubrio nom +manubrio manubrio nom +manufatte manufatto adj +manufatti manufatto nom +manufatto manufatto nom +manutengoli manutengolo nom +manutengolo manutengolo nom +manutentore manutentore nom +manutentori manutentore nom +manutentrici manutentore nom +manutenzione manutenzione nom +manutenzioni manutenzione nom +manza manzo nom +manzanilla manzanilla nom +manze manzo nom +manzi manzo nom +manzo manzo nom +manzoniana manzoniano adj +manzoniane manzoniano adj +manzoniani manzoniano adj +manzoniano manzoniano adj +manzonismo manzonismo nom +maoismo maoismo nom +maoista maoista adj +maoiste maoista adj +maoisti maoista adj +maomettana maomettano adj +maomettane maomettano adj +maomettani maomettano nom +maomettano maomettano adj +mappa mappa nom +mappamondi mappamondo nom +mappamondo mappamondo nom +mappe mappa nom +maquillage maquillage nom +maquis maquis nom +mar mare nom +marabut marabut nom +marabù marabù nom +maraca maraca nom +marachella marachella nom +marachelle marachella nom +maragià maragià nom +maramaldi maramaldo nom +maramaldo maramaldo nom +marameo marameo int +marana marana nom +marane marana nom +marangone marangone nom +marangoni marangone nom +marasca marasca nom +marasche marasca nom +maraschi marasco nom +maraschini maraschino nom +maraschino maraschino nom +marasco marasco nom +marasma marasma nom +maratona maratona nom +maratone maratona nom +maratoneta maratoneta adj +maratoneti maratoneta adj +maraviglia maraviglia nom +maraviglie maraviglia nom +marca marca nom +marcaci marcare ver +marcai marcare ver +marcala marcare ver +marcali marcare ver +marcalo marcare ver +marcamento marcamento nom +marcando marcare ver +marcandola marcare ver +marcandole marcare ver +marcandoli marcare ver +marcandolo marcare ver +marcandone marcare ver +marcandosi marcare ver +marcano marcare ver +marcante marcare ver +marcanti marcare ver +marcantoni marcantonio nom +marcantonio marcantonio nom +marcapiani marcapiano nom +marcapiano marcapiano nom +marcar marcare ver +marcare marcare ver +marcarla marcare ver +marcarle marcare ver +marcarli marcare ver +marcarlo marcare ver +marcarne marcare ver +marcarono marcare ver +marcasite marcasite nom +marcasse marcare ver +marcassero marcare ver +marcata marcare ver +marcate marcato adj +marcatempo marcatempo nom +marcati marcare ver +marcato marcare ver +marcatore marcatore nom +marcatori marcatore nom +marcatrice marcatore nom +marcatrici marcatore nom +marcatura marcatura nom +marcature marcatura nom +marcava marcare ver +marcavano marcare ver +marce marcia nom +marcendo marcire ver +marceranno marciare ver +marceremo marciare ver +marcerà marciare ver +marcescente marcescente adj +marcescenti marcescente adj +marche marca nom +marcherà marcare ver +marchesa marchesa|marchese nom +marchesati marchesato nom +marchesato marchesato nom +marchese marchesa|marchese nom +marchesi marchese nom +marchesina marchesina nom +marchesini marchesino nom +marchesino marchesino nom +marchetta marchetta nom +marchette marchetta nom +marchi marchio|marco nom +marchia marchiare ver +marchiali marchiare ver +marchiana marchiano adj +marchiando marchiare ver +marchiandogli marchiare ver +marchiandola marchiare ver +marchiandoli marchiare ver +marchiane marchiano adj +marchiani marchiano adj +marchiano marchiano adj +marchiare marchiare ver +marchiarla marchiare ver +marchiarli marchiare ver +marchiarlo marchiare ver +marchiarono marchiare ver +marchiarsi marchiare ver +marchiata marchiare ver +marchiate marchiare ver +marchiati marchiare ver +marchiato marchiare ver +marchiava marchiare ver +marchiavano marchiare ver +marchierà marchiare ver +marchigiana marchigiano adj +marchigiane marchigiano adj +marchigiani marchigiano adj +marchigiano marchigiano adj +marchingegni marchingegno nom +marchingegno marchingegno nom +marchino marcare|marchiare ver +marchio marchio nom +marchionale marchionale adj +marchionali marchionale adj +marchiò marchiare ver +marci marcio adj +marcia marcia nom +marciai marciare ver +marcialonga marcialonga nom +marciammo marciare ver +marciamo marciare|marcire ver +marciando marciare ver +marciane marciare ver +marciano marciare ver +marciante marciare ver +marcianti marciare ver +marciapiede marciapiede nom +marciapiedi marciapiede nom +marciar marciare ver +marciarci marciare ver +marciare marciare ver +marciargli marciare ver +marciarono marciare ver +marciasse marciare ver +marciassero marciare ver +marciata marciare ver +marciate marciare ver +marciati marciare ver +marciato marciare ver +marciatore marciatore nom +marciatori marciatore nom +marciatrice marciatore nom +marciatrici marciatore nom +marciava marciare ver +marciavamo marciare ver +marciavano marciare ver +marcii marcire ver +marcino marciare ver +marcio marcio adj +marciranno marcire ver +marcire marcire ver +marcirono marcire ver +marcirà marcire ver +marcisca marcire ver +marciscano marcire ver +marcisce marcire ver +marcisci marcire ver +marciscono marcire ver +marcisse marcire ver +marcissero marcire ver +marcita marcita nom +marcite marcita nom +marciti marcire ver +marcito marcire ver +marciume marciume nom +marciumi marciume nom +marciò marciare ver +marco marco nom +marconigramma marconigramma nom +marconista marconista nom +marconisti marconista nom +marcì marcire ver +marcò marcare ver +mare mare nom +marea marea nom +maree marea nom +mareggia mareggiare ver +mareggiata mareggiata nom +mareggiate mareggiata nom +mareggiato mareggiare ver +maremma maremma nom +maremmana maremmano adj +maremmane maremmano adj +maremmani maremmano adj +maremmano maremmano adj +maremme maremma nom +maremoti maremoto nom +maremoto maremoto nom +marenghi marengo nom +marengo marengo nom +mareografi mareografo nom +mareografo mareografo nom +marescialli maresciallo nom +maresciallo maresciallo nom +maretta maretta nom +marette maretta nom +marezzane marezzare ver +marezzata marezzato adj +marezzate marezzato adj +marezzati marezzare ver +marezzato marezzato adj +marezzatura marezzatura nom +marezzature marezzatura nom +margarina margarina nom +margarine margarina nom +margherita margherita nom +margherite margherita nom +margheritina margheritina nom +margheritine margheritina nom +margina marginare ver +marginaci marginare ver +marginale marginale adj +marginali marginale adj +marginalia marginalia nom +marginalizzazione marginalizzazione nom +marginalmente marginalmente adv +marginare marginare ver +marginata marginare ver +marginate marginare ver +marginati marginare ver +marginato marginare ver +marginatura marginatura nom +margine margine nom +margini margine nom +margino marginare ver +margotta margotta nom +margotte margotta nom +margotti margottare ver +margotto margottare ver +margravi margravio nom +margravio margravio nom +mari mare nom +mariana mariano adj +mariane mariano adj +mariani mariano adj +mariano mariano adj +marijuana marijuana nom +marimba marimba nom +marimbe marimba nom +marina marina nom +marinai marinaio nom +marinaio marinaio nom +marinali marinare ver +marinando marinare ver +marinano marinare ver +marinante marinare ver +marinanti marinare ver +marinar marinare ver +marinara marinaro adj +marinare marinaro adj +marinaresca marinaresco adj +marinaresche marinaresco adj +marinareschi marinaresco adj +marinaresco marinaresco adj +marinari marinaro adj +marinaro marinaro adj +marinasi marinare ver +marinata marinare ver +marinate marinare ver +marinati marinare ver +marinato marinare ver +marinava marinare ver +marinavano marinare ver +marine marino adj +marineria marineria nom +marinerie marineria nom +marines marines nom +marini marino adj +marinismo marinismo nom +marinista marinista nom +mariniste marinista nom +marinisti marinista nom +marino marino adj +marinò marinare ver +marioli mariolo nom +mariolo mariolo nom +marionetta marionetta nom +marionette marionetta nom +marita maritare ver +maritabili maritabile adj +maritale maritale adj +maritali maritale adj +maritami maritare ver +maritando maritare ver +maritandosi maritare ver +maritano maritare ver +maritar maritare ver +maritare maritare ver +maritarla maritare ver +maritarle maritare ver +maritarlo maritare ver +maritarmi maritare ver +maritarono maritare ver +maritarsi maritare ver +maritasse maritare ver +maritata maritare ver +maritate maritata nom +maritati maritato adj +maritato maritato adj +maritava maritare ver +mariti marito nom +maritiamo maritare ver +maritino maritare ver +marito marito nom +maritozzi maritozzo nom +maritozzo maritozzo nom +marittima marittimo adj +marittime marittimo adj +marittimi marittimo adj +marittimo marittimo adj +maritò maritare ver +market market nom +marketing marketing nom +marmaglia marmaglia nom +marmellata marmellata nom +marmellate marmellata nom +marmi marmo nom +marmifera marmifero adj +marmiferi marmifero adj +marmifero marmifero adj +marmista marmista nom +marmisti marmista nom +marmitta marmitta nom +marmitte marmitta nom +marmittone marmittone nom +marmittoni marmittone nom +marmo marmo nom +marmocchi marmocchio nom +marmocchia marmocchio nom +marmocchio marmocchio nom +marmorea marmoreo adj +marmoree marmoreo adj +marmorei marmoreo adj +marmoreo marmoreo adj +marmorizzare marmorizzare ver +marmorizzata marmorizzare ver +marmorizzate marmorizzare ver +marmorizzati marmorizzare ver +marmorizzato marmorizzare ver +marmotta marmotta nom +marmotte marmotta nom +marna marna nom +marne marna nom +marniera marniera nom +marnosa marnoso adj +marnose marnoso adj +marnosi marnoso adj +marnoso marnoso adj +marocchina marocchino adj +marocchine marocchino adj +marocchini marocchino adj +marocchino marocchino adj +maronita maronita adj +maronite maronita adj +maroniti maronita adj +marosa maroso adj +marose maroso adj +marosi maroso adj +maroso maroso adj +marpione marpione nom +marra marra nom +marrana marrana nom +marranci marrancio nom +marrane marrana nom +marrani marrano nom +marrano marrano nom +marre marra nom +marrone marrone nom +marroni marrone nom +marsala marsala nom +marsalai marsalare ver +marsalati marsalare ver +marsalato marsalare ver +marsalo marsalare ver +marsigliese marsigliese adj +marsigliesi marsigliese nom +marsina marsina nom +marsine marsina nom +marsupi marsupio nom +marsupiale marsupiale adj +marsupiali marsupiali nom +marsupio marsupio nom +martagone martagone nom +martagoni martagone nom +marte marte nom +martedì martedì nom +martella martellare ver +martellaci martellare ver +martellamento martellamento nom +martellando martellare ver +martellandolo martellare ver +martellano martellare ver +martellante martellare ver +martellanti martellare ver +martellare martellare ver +martellarono martellare ver +martellata martellata nom +martellate martellata nom +martellati martellare ver +martellato martellare ver +martellava martellare ver +martellavano martellare ver +martellerà martellare ver +martelletti martelletto nom +martelletto martelletto nom +martelli martellio|martello nom +martelliani martelliano nom +martelliano martelliano nom +martellina martellina nom +martellino martellare ver +martello martello nom +martellò martellare ver +marti marte nom +martinella martinella nom +martinelle martinella nom +martinetti martinetto nom +martinetto martinetto nom +martingala martingala nom +martingale martingala nom +martini martini|martino nom +martinicca martinicca nom +martino martino nom +martire martire nom +martiri martire|martirio nom +martirio martirio nom +martirizza martirizzare ver +martirizzano martirizzare ver +martirizzare martirizzare ver +martirizzarla martirizzare ver +martirizzarlo martirizzare ver +martirizzarono martirizzare ver +martirizzata martirizzare ver +martirizzate martirizzare ver +martirizzati martirizzare ver +martirizzato martirizzare ver +martirizzò martirizzare ver +martirologi martirologio nom +martirologio martirologio nom +martora martora nom +martore martora nom +martori martoriare ver +martoriando martoriare ver +martoriano martoriare ver +martoriare martoriare ver +martoriarono martoriare ver +martoriata martoriare ver +martoriate martoriare ver +martoriati martoriare ver +martoriato martoriare ver +martoriavano martoriare ver +martorino martoriare ver +marxiana marxiano adj +marxiane marxiano adj +marxiani marxiano adj +marxiano marxiano adj +marxismo marxismo nom +marxista marxista adj +marxiste marxista adj +marxisti marxista adj +marza marza nom +marzaiola marzaiola nom +marzaiole marzaiola nom +marzapane marzapane nom +marzapani marzapane nom +marze marza nom +marzi marzio adj +marzia marzio adj +marziale marziale adj +marziali marziale adj +marziana marziano adj +marziane marziano adj +marziani marziano nom +marziano marziano adj +marzie marzio adj +marzio marzio adj +marzo marzo nom +marzocchi marzocco nom +marzocco marzocco nom +marzolina marzolino adj +marzoline marzolino adj +marzolini marzolino adj +marzolino marzolino adj +marzuola marzuolo adj +marzuoli marzuolo adj +marzuolo marzuolo adj +mas mas nom +mascalzonata mascalzonata nom +mascalzonate mascalzonata nom +mascalzone mascalzone nom +mascalzoni mascalzone nom +mascara mascara nom +mascarpone mascarpone nom +mascella mascella nom +mascellare mascellare adj +mascellari mascellare adj +mascelle mascella nom +maschera maschera nom +mascheramenti mascheramento nom +mascheramento mascheramento nom +mascherando mascherare ver +mascherandola mascherare ver +mascherandole mascherare ver +mascherandoli mascherare ver +mascherandolo mascherare ver +mascherandosi mascherare ver +mascherano mascherare ver +mascherante mascherare ver +mascheranti mascherare ver +mascherare mascherare ver +mascherarla mascherare ver +mascherarle mascherare ver +mascherarli mascherare ver +mascherarlo mascherare ver +mascherarmi mascherare ver +mascherarne mascherare ver +mascherarono mascherare ver +mascherarsi mascherare ver +mascherasse mascherare ver +mascherata mascherare ver +mascherate mascherare ver +mascherati mascherare ver +mascherato mascherare ver +mascherava mascherare ver +mascheravano mascherare ver +maschere maschera nom +maschererà mascherare ver +mascheri mascherare ver +mascheriamo mascherare ver +mascherina mascherina nom +mascherine mascherina nom +mascherino mascherare ver +maschero mascherare ver +mascherone mascherone nom +mascheroni mascherone nom +mascherò mascherare ver +maschi maschio nom +maschia maschio adj +maschiare maschiare ver +maschiata maschiare ver +maschiate maschiare ver +maschiatrice maschiatrice nom +maschiatrici maschiatrice nom +maschiatura maschiatura nom +maschiature maschiatura nom +maschie maschio adj +maschietta maschietta nom +maschiette maschietta nom +maschietti maschietto nom +maschietto maschietto nom +maschile maschile adj +maschili maschile adj +maschilismo maschilismo nom +maschilista maschilista adj +maschiliste maschilista adj +maschilisti maschilista adj +maschio maschio adj +mascolina mascolino adj +mascoline mascolino adj +mascolini mascolino adj +mascolinità mascolinità nom +mascolinizzare mascolinizzare ver +mascolino mascolino adj +mascone mascone nom +masconi mascone nom +mascotte mascotte nom +maser maser nom +masi maso nom +masnada masnada nom +masnade masnada nom +masnadieri masnadiero nom +masnadiero masnadiero nom +maso maso nom +masochismo masochismo nom +masochista masochista nom +masochiste masochista nom +masochisti masochista nom +masonite masonite nom +masoniti masonite nom +masque masque nom +massa massa nom +massacra massacrare ver +massacrando massacrare ver +massacrandola massacrare ver +massacrandole massacrare ver +massacrandoli massacrare ver +massacrandolo massacrare ver +massacrandone massacrare ver +massacrandosi massacrare ver +massacrano massacrare ver +massacrante massacrante adj +massacranti massacrante adj +massacrarci massacrare ver +massacrare massacrare ver +massacrarli massacrare ver +massacrarlo massacrare ver +massacrarne massacrare ver +massacrarono massacrare ver +massacrarsi massacrare ver +massacrarti massacrare ver +massacrassero massacrare ver +massacrata massacrare ver +massacrate massacrare ver +massacratemi massacrare ver +massacrati massacrare ver +massacrato massacrare ver +massacratore massacratore nom +massacratori massacratore nom +massacrava massacrare ver +massacravano massacrare ver +massacreranno massacrare ver +massacrerà massacrare ver +massacri massacro nom +massacrino massacrare ver +massacro massacro nom +massacrò massacrare ver +massaggi massaggio nom +massaggia massaggiare ver +massaggiando massaggiare ver +massaggiandole massaggiare ver +massaggiandosi massaggiare ver +massaggiano massaggiare ver +massaggiante massaggiare ver +massaggianti massaggiare ver +massaggiare massaggiare ver +massaggiargli massaggiare ver +massaggiarle massaggiare ver +massaggiarlo massaggiare ver +massaggiarsi massaggiare ver +massaggiata massaggiare ver +massaggiate massaggiare ver +massaggiati massaggiare ver +massaggiato massaggiare ver +massaggiatore massaggiatore nom +massaggiatori massaggiatore nom +massaggiatrice massaggiatore nom +massaggiatrici massaggiatore nom +massaggio massaggio nom +massai massaio nom +massaia massaia nom +massaie massaia nom +massaio massaio nom +masse massa nom +massella massellare ver +masselli massello nom +massello massello nom +masseria masseria nom +masserie masseria nom +masserizia masserizia nom +masserizie masserizia nom +massetere massetere nom +masseteri massetere nom +masseur masseur nom +massi masso nom +massicce massiccio adj +massicci massiccio adj +massiccia massiccio adj +massicciamente massicciamente adv +massicciata massicciata nom +massicciate massicciata nom +massiccio massiccio adj +massificante massificare ver +massificanti massificare ver +massificare massificare ver +massificata massificare ver +massificate massificare ver +massificato massificare ver +massificazione massificazione nom +massima massimo adj +massimale massimale adj +massimali massimale adj +massimalismo massimalismo nom +massimalista massimalista nom +massimaliste massimalista nom +massimalisti massimalista nom +massimalistica massimalistico adj +massimamente massimamente adv +massimari massimario nom +massimario massimario nom +massime massimo adj +massimi massimo adj +massimizza massimizzare ver +massimizzando massimizzare ver +massimizzandone massimizzare ver +massimizzano massimizzare ver +massimizzante massimizzare ver +massimizzare massimizzare ver +massimizzarne massimizzare ver +massimizzata massimizzare ver +massimizzate massimizzare ver +massimizzati massimizzare ver +massimizzato massimizzare ver +massimizzazione massimizzazione nom +massimizzi massimizzare ver +massimizziamo massimizzare ver +massimizzino massimizzare ver +massimo massimo adj +massiva massivo adj +massive massivo adj +massivi massivo adj +massivo massivo adj +masso masso nom +massone massone nom +massoneria massoneria nom +massonerie massoneria nom +massoni massone nom +massonica massonico adj +massoniche massonico adj +massonici massonico adj +massonico massonico adj +massoterapia massoterapie nom +mastcellula mastcellula nom +mastcellule mastcellula nom +mastelli mastello nom +mastello mastello nom +master master nom +masti mastio nom +mastica masticare ver +masticaci masticare ver +masticando masticare ver +masticandoli masticare ver +masticandolo masticare ver +masticano masticare ver +masticante masticare ver +masticar masticare ver +masticare masticare ver +masticarla masticare ver +masticarle masticare ver +masticarli masticare ver +masticarlo masticare ver +masticarono masticare ver +masticassero masticare ver +masticata masticare ver +masticate masticare ver +masticati masticare ver +masticato masticare ver +masticatore masticatore adj +masticatori masticatore|masticatorio adj +masticatoria masticatorio adj +masticatorie masticatorio adj +masticatorio masticatorio adj +masticatura masticatura nom +masticava masticare ver +masticavano masticare ver +masticazione masticazione nom +mastice mastice nom +masticherebbe masticare ver +mastichi masticare ver +mastichiamo masticare ver +mastichino masticare ver +mastici mastice nom +mastico masticare ver +mastini mastino nom +mastino mastino nom +mastio mastio nom +mastite mastite nom +mastiti mastite nom +mastodonte mastodonte nom +mastodonti mastodonte nom +mastodontica mastodontico adj +mastodontiche mastodontico adj +mastodontici mastodontico adj +mastodontico mastodontico adj +mastoide mastoide nom +mastoidea mastoideo adj +mastoidee mastoideo adj +mastoidei mastoideo adj +mastoideo mastoideo adj +mastoidi mastoide nom +mastoidite mastoidite nom +mastoiditi mastoidite nom +mastra mastro nom +mastre mastro adj +mastri mastro adj +mastro mastro adj +masturba masturbare ver +masturbaci masturbare ver +masturbami masturbare ver +masturbando masturbare ver +masturbandosi masturbare ver +masturbano masturbare ver +masturbare masturbare ver +masturbarlo masturbare ver +masturbarsi masturbare ver +masturbasi masturbare ver +masturbasse masturbare ver +masturbata masturbare ver +masturbati masturbare ver +masturbato masturbare ver +masturbava masturbare ver +masturbazione masturbazione nom +masturbazioni masturbazione nom +masturbi masturbare ver +masturbò masturbare ver +masuri masurio nom +masurio masurio nom +matador matador nom +matassa matassa nom +matasse matassa nom +match match nom +mate mate nom +matelassé matelassé adj +matematica matematico adj +matematicamente matematicamente adv +matematiche matematico adj +matematici matematico adj +matematico matematico adj +materassai materassaio nom +materassaio materassaio nom +materassi materasso nom +materassini materassino nom +materassino materassino nom +materasso materasso nom +materia materia nom +materiale materiale nom +materiali materiale nom +materialismi materialismo nom +materialismo materialismo nom +materialista materialista adj +materialiste materialista adj +materialisti materialista adj +materialistica materialistico adj +materialistiche materialistico adj +materialistici materialistico adj +materialistico materialistico adj +materialità materialità nom +materializza materializzare ver +materializzando materializzare ver +materializzandosi materializzare ver +materializzano materializzare ver +materializzare materializzare ver +materializzarla materializzare ver +materializzarli materializzare ver +materializzarne materializzare ver +materializzarono materializzare ver +materializzarsi materializzare ver +materializzata materializzare ver +materializzate materializzare ver +materializzati materializzare ver +materializzato materializzare ver +materializzava materializzare ver +materializzavano materializzare ver +materializzazione materializzazione nom +materializzazioni materializzazione nom +materializzeranno materializzare ver +materializzerebbe materializzare ver +materializzerà materializzare ver +materializzi materializzare ver +materializzò materializzare ver +materialmente materialmente adv +materica materico adj +materiche materico adj +materici materico adj +materico materico adj +materie materia nom +materna materno adj +materne materno adj +materni materno adj +maternità maternità nom +materno materno adj +matita matita nom +matite matita nom +matracci matraccio nom +matraccio matraccio nom +matriarcale matriarcale adj +matriarcali matriarcale adj +matriarcati matriarcato nom +matriarcato matriarcato nom +matrice matrice nom +matrici matrice nom +matricida matricida nom +matricide matricida nom +matricidi matricida|matricidio nom +matricidio matricidio nom +matricola matricola nom +matricolare matricolare ver +matricolato matricolato adj +matricole matricola nom +matrigna matrigna nom +matrigne matrigna nom +matrilineare matrilineare adj +matrilineari matrilineare adj +matrimoni matrimonio nom +matrimoniale matrimoniale adj +matrimoniali matrimoniale adj +matrimonialista matrimonialista nom +matrimonialisti matrimonialista nom +matrimonio matrimonio nom +matrona matrona nom +matronale matronale adj +matrone matrona nom +matronei matroneo nom +matroneo matroneo nom +matronimici matronimico adj +matronimico matronimico adj +matta matto adj +mattacchiona mattacchione nom +mattacchione mattacchione nom +mattacchioni mattacchione nom +mattana mattana nom +mattane mattana nom +mattanza mattanza nom +mattanze mattanza nom +mattarelli mattarello nom +mattarello mattarello nom +mattatoi mattatoio nom +mattatoio mattatoio nom +mattatore mattatore nom +mattatori mattatore nom +mattatrice mattatore nom +mattatrici mattatore nom +matte matto adj +matterelli matterello nom +matterello matterello nom +matteria matteria nom +matti matto adj +mattina mattina|mattino nom +mattinale mattinale adj +mattinali mattinale adj +mattinata mattinata nom +mattinate mattinata nom +mattine mattina|mattino nom +mattini mattino nom +mattiniera mattiniero adj +mattiniere mattiniero adj +mattinieri mattiniero adj +mattiniero mattiniero adj +mattino mattino nom +matto matto adj +mattoide mattoide adj +mattoidi mattoide nom +mattona mattonare ver +mattonai mattonare ver +mattonata mattonare ver +mattonate mattonare ver +mattonati mattonare ver +mattonato mattonare ver +mattone mattone adj +mattonella mattonella nom +mattonelle mattonella nom +mattoni mattone nom +mattutina mattutino adj +mattutine mattutino adj +mattutini mattutino adj +mattutino mattutino adj +matura maturo adj +maturai maturare ver +maturandi maturando nom +maturando maturare ver +maturandosi maturare ver +maturano maturare ver +maturanti maturare ver +maturare maturare ver +maturarla maturare ver +maturarne maturare ver +maturarono maturare ver +maturarsi maturare ver +maturasse maturare ver +maturassero maturare ver +maturata maturare ver +maturate maturare ver +maturati maturare ver +maturato maturare ver +maturava maturare ver +maturavano maturare ver +maturazione maturazione nom +maturazioni maturazione nom +mature maturo adj +matureranno maturare ver +maturerà maturare ver +maturi maturo adj +maturino maturare ver +maturità maturità nom +maturo maturo adj +maturò maturare ver +matusa matusa nom +matusalemme matusalemme nom +mauritana mauritana npr +mausolei mausoleo nom +mausoleo mausoleo nom +mauve mauve adj +max max adv +maxi maxi adj +maximum maximum nom +maxiprocessi maxiprocesso nom +maxiprocesso maxiprocesso nom +maxwell maxwell nom +maya maya adj +mazurca mazurca nom +mazurche mazurca nom +mazza mazza nom +mazzafrusti mazzafrusto nom +mazzafrusto mazzafrusto nom +mazzagatti mazzagatto nom +mazzata mazzata nom +mazzate mazzata nom +mazze mazza nom +mazzetti mazzetto nom +mazzetto mazzetto nom +mazzi mazzo nom +mazziere mazziere nom +mazzieri mazziere nom +mazziniana mazziniano adj +mazziniane mazziniano adj +mazziniani mazziniano adj +mazziniano mazziniano adj +mazzo mazzo nom +mazzocchi mazzocchio nom +mazzocchio mazzocchio nom +mazzuola mazzuola nom +mazzuole mazzuola nom +mazzuoli mazzuolo nom +mazzuolo mazzuolo nom +maître maître nom +maîtresse maîtresse nom +me me pro +meandri meandro nom +meandro meandro nom +meati meato nom +meato meato nom +mecca mecca nom +meccani meccano nom +meccanica meccanico adj +meccanicamente meccanicamente adv +meccaniche meccanico adj +meccanici meccanico adj +meccanicismo meccanicismo nom +meccanicista meccanicista nom +meccaniciste meccanicista nom +meccanicisti meccanicista nom +meccanicistica meccanicistico adj +meccanicistiche meccanicistico adj +meccanicistici meccanicistico adj +meccanicistico meccanicistico adj +meccanico meccanico adj +meccanismi meccanismo nom +meccanismo meccanismo nom +meccanizzando meccanizzare ver +meccanizzare meccanizzare ver +meccanizzata meccanizzato adj +meccanizzate meccanizzato adj +meccanizzati meccanizzato adj +meccanizzato meccanizzato adj +meccanizzazione meccanizzazione nom +meccanizzò meccanizzare ver +meccano meccano nom +meccanografia meccanografia nom +meccanografica meccanografico adj +meccanografiche meccanografico adj +meccanografici meccanografico adj +meccanografico meccanografico adj +mecenate mecenate nom +mecenati mecenate nom +mecenatismo mecenatismo nom +mecu Mecu nom +meda meda nom +medaglia medaglia nom +medaglie medaglia nom +medagliere medagliere nom +medaglieri medagliere nom +medaglietta medaglietta nom +medagliette medaglietta nom +medaglione medaglione nom +medaglioni medaglione nom +medaglista medaglista nom +medaglisti medaglista nom +mede meda nom +medesima medesimo adj_sup +medesime medesimo adj +medesimi medesimo adj +medesimo medesimo adj +medi medio adj +media medio adj +mediaci mediare ver +mediale mediale adj +mediali mediale adj +mediamene mediare ver +mediamente mediamente adv +mediana mediano adj +mediando mediare ver +mediandola mediare ver +mediandoli mediare ver +mediandone mediare ver +mediane mediano adj +mediani mediano adj +medianica medianico adj +medianiche medianico adj +medianici medianico adj +medianicità medianicità nom +medianico medianico adj +mediano mediano adj +mediante mediante pre +medianti mediare ver +mediar mediare ver +mediare mediare ver +mediarle mediare ver +mediarono mediare ver +mediasi mediare ver +mediasse mediare ver +mediassero mediare ver +mediastino mediastino nom +mediata mediare ver +mediate mediare ver +mediati mediare ver +mediatica mediatico adj +mediatiche mediatico adj +mediato mediare ver +mediatore mediatore nom +mediatori mediatore nom +mediatrice mediatore nom +mediatrici mediatore nom +mediava mediare ver +mediavano mediare ver +mediavo mediare ver +mediazione mediazione nom +mediazioni mediazione nom +medica medico adj +medicale medicale adj +medicali medicale adj +medicamenti medicamento nom +medicamento medicamento nom +medicamentosa medicamentoso adj +medicamentose medicamentoso adj +medicamentosi medicamentoso adj +medicamentoso medicamentoso adj +medicando medicare ver +medicandogli medicare ver +medicane medicare ver +medicano medicare ver +medicante medicare ver +medicanti medicare ver +medicar medicare ver +medicare medicare ver +medicargli medicare ver +medicarla medicare ver +medicarlo medicare ver +medicarsi medicare ver +medicastri medicastro nom +medicastro medicastro nom +medicata medicare ver +medicate medicato adj +medicati medicato adj +medicato medicare ver +medicava medicare ver +medicazione medicazione nom +medicazioni medicazione nom +mediche medico adj +medichino medicare ver +medici medico adj +medicina medicina nom +medicinale medicinale adj +medicinali medicinale adj +medicine medicina nom +medico medico adj +medicò medicare ver +medie medio adj +medierà mediare ver +medievale medievale adj +medievali medievale adj +medievalista medievalista nom +medievalisti medievalista nom +medino mediare ver +medio medio adj +mediocre mediocre adj +mediocri mediocre adj +mediocrità mediocrità nom +medioevale medioevale adj +medioevali medioevale adj +medioevalista medioevalista nom +medioevalisti medioevalista nom +medioevo medioevo nom +medioleggeri medioleggero nom +mediomassimi mediomassimo nom +mediomassimo mediomassimo nom +mediorientale mediorientale adj +mediorientali mediorientale adj +medita meditare ver +meditabonda meditabondo adj +meditabondi meditabondo adj +meditabondo meditabondo adj +meditaci meditare ver +meditai meditare ver +meditando meditare ver +meditandone meditare ver +meditano meditare ver +meditante meditare ver +meditanti meditare ver +meditar meditare ver +meditarci meditare ver +meditare meditare ver +meditarne meditare ver +meditarono meditare ver +meditasse meditare ver +meditata meditare ver +meditate meditato adj +meditateci meditare ver +meditati meditare ver +meditativa meditativo adj +meditative meditativo adj +meditativi meditativo adj +meditativo meditativo adj +meditato meditare ver +meditava meditare ver +meditavano meditare ver +meditavo meditare ver +meditazione meditazione nom +meditazioni meditazione nom +mediterei meditare ver +mediterranea mediterraneo adj +mediterranee mediterraneo adj +mediterranei mediterraneo adj +mediterraneo mediterraneo adj +mediterà meditare ver +mediterò meditare ver +mediti meditare ver +meditiamo meditare ver +meditiamoci meditare ver +meditino meditare ver +medito meditare ver +meditò meditare ver +medium medium nom +mediò mediare ver +medusa medusa nom +meduse medusa nom +meeting meeting nom +mefistofelica mefistofelico adj +mefistofelici mefistofelico adj +mefistofelico mefistofelico adj +mefite mefite nom +mefitica mefitico adj +mefitiche mefitico adj +mefitici mefitico adj +mefitico mefitico adj +megacicli megaciclo nom +megafoni megafono nom +megafono megafono nom +megalite megalite nom +megaliti megalite nom +megalitica megalitico adj +megalitiche megalitico adj +megalitici megalitico adj +megalitico megalitico adj +megalomane megalomane adj +megalomani megalomane adj +megalomania megalomania nom +megalomanie megalomania nom +megalopoli megalopoli nom +megaprogetti megaprogetto nom +megateri megaterio nom +megaterio megaterio nom +megaton megaton nom +megatone megatone nom +megawatt megawatt nom +megera megera nom +megere megera nom +meglio meglio adv_sup +mehari mehari nom +meiosi meiosi nom +meiotica meiotico adj +meiotiche meiotico adj +meiotici meiotico adj +meiotico meiotico adj +mela mela nom +melagrana melagrana nom +melagrane melagrana nom +melagrano melagrano nom +melanconia melanconia nom +melanconica melanconico adj +melanconiche melanconico adj +melanconici melanconico adj +melanconico melanconico adj +melanconie melanconia nom +melanica melanico adj +melaniche melanico adj +melanici melanico adj +melanico melanico adj +melanina melanina nom +melanine melanina nom +melanismo melanismo nom +melanosi melanosi nom +melanzana melanzana nom +melanzane melanzana nom +melari melario nom +melario melario nom +melassa melassa nom +melasse melassa nom +melasso melasso nom +melata melato adj +melate melato adj +melati melato adj +melato melato adj +mele mela nom +melena melena nom +melene melena nom +melensa melenso adj +melensaggine melensaggine nom +melensaggini melensaggine nom +melense melenso adj +melensi melenso adj +melenso melenso adj +meli melo nom +meliacee meliacee nom +melica melico adj +meliche melico adj +melici melico adj +melico melico adj +meliga meliga nom +meliloti meliloto nom +meliloto meliloto nom +melina melina nom +meline melina nom +melissa melissa nom +melisse melissa nom +mellifera mellifero adj +mellifere mellifero adj +melliferi mellifero adj +mellifica mellificare ver +melliflua mellifluo adj +melliflue mellifluo adj +melliflui mellifluo adj +mellifluo mellifluo adj +melma melma nom +melme melma nom +melmosa melmoso adj +melmose melmoso adj +melmosi melmoso adj +melmoso melmoso adj +melo melo nom +melodia melodia nom +melodica melodico adj +melodiche melodico adj +melodici melodico adj +melodico melodico adj +melodie melodia nom +melodiosa melodioso adj +melodiose melodioso adj +melodiosi melodioso adj +melodioso melodioso adj +melodista melodista nom +melodisti melodista nom +melodramma melodramma nom +melodrammatica melodrammatico adj +melodrammatiche melodrammatico adj +melodrammatici melodrammatico adj +melodrammatico melodrammatico adj +melodrammi melodramma nom +meloe meloe nom +melograni melograno nom +melograno melograno nom +meloi meloe nom +melomani melomane nom +melomania melomania nom +melone melone nom +meloni melone nom +melopea melopea nom +melopee melopea nom +meloterapia meloterapia nom +membra membro nom +membrana membrana nom +membranacea membranaceo adj +membranacee membranaceo adj +membranacei membranaceo adj +membranaceo membranaceo adj +membrane membrana nom +membranosa membranoso adj +membranose membranoso adj +membranosi membranoso adj +membranoso membranoso adj +membratura membratura nom +membrature membratura nom +membri membro nom +membro membro nom +memento memento nom +memorabile memorabile adj +memorabili memorabile adj +memoranda memorando adj +memorande memorando adj +memorando memorando adj +memorandum memorandum nom +memore memore adj +memori memore adj +memoria memoria nom +memoriale memoriale nom +memoriali memoriale nom +memorialista memorialista nom +memorialisti memorialista nom +memorie memoria nom +memorizza memorizzare ver +memorizzando memorizzare ver +memorizzandola memorizzare ver +memorizzandoli memorizzare ver +memorizzandolo memorizzare ver +memorizzano memorizzare ver +memorizzante memorizzare ver +memorizzare memorizzare ver +memorizzarla memorizzare ver +memorizzarle memorizzare ver +memorizzarli memorizzare ver +memorizzarlo memorizzare ver +memorizzarne memorizzare ver +memorizzarono memorizzare ver +memorizzarvi memorizzare ver +memorizzata memorizzare ver +memorizzate memorizzare ver +memorizzati memorizzare ver +memorizzato memorizzare ver +memorizzava memorizzare ver +memorizzavano memorizzare ver +memorizzazione memorizzazione nom +memorizzazioni memorizzazione nom +memorizzerebbe memorizzare ver +memorizzerà memorizzare ver +memorizzi memorizzare ver +memorizzino memorizzare ver +memorizzo memorizzare ver +memorizzò memorizzare ver +mena mena nom +menabò menabò nom +menade menade nom +menadi menade nom +menadito menadito adv +menagramo menagramo nom +menai menare ver +menala menare ver +menale menare ver +menali menare ver +menalo menare ver +menando menare ver +menandoli menare ver +menano menare ver +menante menare ver +menar menare ver +menarca menarca nom +menarcela menare ver +menarci menare ver +menare menare ver +menarla menare ver +menarli menare ver +menarmi menare ver +menarne menare ver +menarola menarola nom +menarsi menare ver +menasse menare ver +menassi menare ver +menata menata nom +menate menata nom +menati menare ver +menato menare ver +menava menare ver +menavano menare ver +menci mencio adj +mencia mencio adj +mencio mencio adj +menda menda nom +mendace mendace adj +mendaci mendace adj +mendacia mendacia nom +mendacio mendacio nom +mendacità mendacità nom +mende menda nom +mendelevi mendelevio nom +mendelevio mendelevio nom +mendica mendico adj +mendicando mendicare ver +mendicano mendicare ver +mendicante mendicante nom +mendicanti mendicante adj +mendicare mendicare ver +mendicarsi mendicare ver +mendicasse mendicare ver +mendicato mendicare ver +mendicava mendicare ver +mendichi mendico nom +mendici mendico adj +mendicità mendicità nom +mendico mendico adj +mene mena nom +menefreghismo menefreghismo nom +menefreghista menefreghista nom +menefreghisti menefreghista nom +meneghina meneghino adj +meneghine meneghino adj +meneghini meneghino adj +meneghino meneghino adj +menerà menare ver +menestrelli menestrello nom +menestrello menestrello nom +menhir menhir nom +meni menare ver +meniamo menare ver +meninge meninge nom +meningi meninge nom +meningite meningite nom +meningiti meningite nom +menino menare ver +menischi menisco nom +menisco menisco nom +meno meno adv_sup +menoma menomo adj +menomale menomare ver +menomando menomare ver +menomano menomare ver +menomare menomare ver +menomarlo menomare ver +menomata menomare ver +menomate menomare ver +menomati menomare ver +menomato menomare ver +menomava menomare ver +menomavano menomare ver +menomazione menomazione nom +menomazioni menomazione nom +menomo menomo adj +menomò menomare ver +menopausa menopausa nom +menopause menopausa nom +menorah menorah nom +mensa mensa nom +menscevica menscevico adj +mensceviche menscevico adj +menscevichi menscevico nom +menscevico menscevico adj +mense mensa nom +mensile mensile adj +mensili mensile adj +mensilità mensilità nom +mensilmente mensilmente adv +mensola mensola nom +mensole mensola nom +menta menta nom +mentale mentale adj +mentali mentale adj +mentalità mentalità nom +mentalmente mentalmente adv +mentano mentire ver +mente menta|mente nom +mentecatti mentecatto nom +mentecatto mentecatto nom +mentendo mentire ver +mentendogli mentire ver +mentendole mentire ver +menti mente|mento nom +mentiamo mentire ver +mentii mentire ver +mentimi mentire ver +mentina mentina nom +mentine mentina nom +mentir mentire ver +mentirai mentire ver +mentiranno mentire ver +mentirci mentire ver +mentire mentire ver +mentirei mentire ver +mentirgli mentire ver +mentirle mentire ver +mentirmi mentire ver +mentirono mentire ver +mentirsi mentire ver +mentirà mentire ver +mentirò mentire ver +mentisse mentire ver +mentissero mentire ver +mentita mentire ver +mentite mentito adj +mentito mentire ver +mentitore mentitore nom +mentitori mentitore nom +mentitrice mentitore nom +mentiva mentire ver +mentivano mentire ver +mentivi mentire ver +mento mento nom +mentolo mentolo nom +mentoniera mentoniera nom +mentoniere mentoniera nom +mentono mentire ver +mentore mentore nom +mentori mentore nom +mentovare mentovare ver +mentovata mentovare ver +mentovati mentovare ver +mentovato mentovare ver +mentre mentre con +mentì mentire ver +menu menu nom +menziona menzionare ver +menzionalo menzionare ver +menzionando menzionare ver +menzionandola menzionare ver +menzionandolo menzionare ver +menzionandone menzionare ver +menzionano menzionare ver +menzionante menzionare ver +menzionanti menzionare ver +menzionarci menzionare ver +menzionare menzionare ver +menzionarla menzionare ver +menzionarle menzionare ver +menzionarli menzionare ver +menzionarlo menzionare ver +menzionarne menzionare ver +menzionarono menzionare ver +menzionarsi menzionare ver +menzionasse menzionare ver +menzionata menzionare ver +menzionate menzionare ver +menzionati menzionare ver +menzionato menzionare ver +menzionava menzionare ver +menzionavano menzionare ver +menzionavo menzionare ver +menzione menzione nom +menzionerebbe menzionare ver +menzionerei menzionare ver +menzionerà menzionare ver +menzionerò menzionare ver +menzioni menzione nom +menzioniamo menzionare ver +menzionino menzionare ver +menziono menzionare ver +menzionò menzionare ver +menzogna menzogna nom +menzogne menzogna nom +menzognera menzognero adj +menzognere menzognero adj +menzogneri menzognero adj +menzognero menzognero adj +menò menare ver +menù menù nom +mera mero adj +meraklon meraklon nom +meramente meramente adv +meravigli meravigliare ver +meraviglia meraviglia nom +meravigliamo meravigliare ver +meravigliamoci meravigliare ver +meravigliando meravigliare ver +meravigliandosi meravigliare ver +meravigliano meravigliare ver +meravigliarci meravigliare ver +meravigliare meravigliare ver +meravigliarmi meravigliare ver +meravigliarono meravigliare ver +meravigliarsene meravigliare ver +meravigliarsi meravigliare ver +meravigliarti meravigliare ver +meravigliata meravigliare ver +meravigliate meravigliare ver +meravigliatevi meravigliare ver +meravigliati meravigliare ver +meravigliato meravigliare ver +meravigliava meravigliare ver +meravigliavano meravigliare ver +meravigliavo meravigliare ver +meraviglie meraviglia nom +meraviglierebbe meravigliare ver +meraviglierebbero meravigliare ver +meraviglierei meravigliare ver +meraviglierà meravigliare ver +meraviglio meravigliare ver +meravigliosa meraviglioso adj +meravigliose meraviglioso adj +meravigliosi meraviglioso adj +meraviglioso meraviglioso adj +meravigliò meravigliare ver +mercante mercante nom +mercanteggia mercanteggiare ver +mercanteggiamento mercanteggiamento nom +mercanteggiando mercanteggiare ver +mercanteggiare mercanteggiare ver +mercanteggiata mercanteggiare ver +mercanteggiate mercanteggiare ver +mercanteggiato mercanteggiare ver +mercanteggiavano mercanteggiare ver +mercanteggio mercanteggiare ver +mercantesca mercantesco adj +mercantesse mercante nom +mercanti mercante nom +mercantile mercantile adj +mercantili mercantile adj +mercantilismo mercantilismo nom +mercantilista mercantilista nom +mercantiliste mercantilista nom +mercantilisti mercantilista nom +mercantini mercantino nom +mercanzia mercanzia nom +mercanzie mercanzia nom +mercati mercato nom +mercatistica mercatistica nom +mercato mercato nom +mercatura mercatura nom +mercature mercatura nom +merce merce nom +mercede mercede nom +mercedi mercede nom +mercenari mercenario nom +mercenaria mercenario adj +mercenarie mercenario adj +mercenario mercenario adj +merceologia merceologia nom +merceologica merceologico adj +merceologiche merceologico adj +merceologici merceologico adj +merceologico merceologico adj +merceologie merceologia nom +merceria merceria nom +mercerie merceria nom +mercerizzati mercerizzare ver +mercerizzato mercerizzare ver +mercerizzazione mercerizzazione nom +merchant merchant nom +merci merce nom +merciai merciaio nom +merciaia merciaio nom +merciaie merciaio nom +merciaio merciaio nom +mercifica mercificare ver +mercificano mercificare ver +mercificare mercificare ver +mercificata mercificare ver +mercificati mercificare ver +mercificato mercificare ver +mercificazione mercificazione nom +mercimonio mercimonio nom +mercoledì mercoledì nom +mercorella mercorella nom +mercuriale mercuriale adj +mercuriali mercuriale adj +mercurici mercurico adj +mercurico mercurico adj +mercurio mercurio nom +mercé mercé nom +merda merda nom +merde merda nom +merdosa merdoso adj +merdose merdoso adj +merdoso merdoso adj +mere mero adj +merenda merenda nom +merende merenda nom +meretrice meretrice nom +meretrici meretrice|meretricio nom +meretricio meretricio nom +meri mero adj +meridiana meridiano adj +meridiane meridiano adj +meridiani meridiano adj +meridiano meridiano adj +meridionale meridionale adj +meridionali meridionale adj +meridionalismo meridionalismo nom +meridionalista meridionalista nom +meridionaliste meridionalista nom +meridionalisti meridionalista nom +meridionalistica meridionalistica nom +meridionalistiche meridionalistica nom +meridione meridione nom +meridioni meridione nom +meriggi meriggio nom +meriggiando meriggiare ver +meriggiare meriggiare ver +meriggio meriggio nom +meringa meringa nom +meringe meringa nom +merino merino adj +meristema meristema nom +meristemi meristema nom +merita meritare ver +meritai meritare ver +meritando meritare ver +meritandogli meritare ver +meritandolo meritare ver +meritandone meritare ver +meritandosi meritare ver +meritano meritare ver +meritar meritare ver +meritarcelo meritare ver +meritarci meritare ver +meritare meritare ver +meritargli meritare ver +meritarla meritare ver +meritarle meritare ver +meritarli meritare ver +meritarlo meritare ver +meritarmela meritare ver +meritarmelo meritare ver +meritarmi meritare ver +meritarne meritare ver +meritarono meritare ver +meritarsela meritare ver +meritarsele meritare ver +meritarseli meritare ver +meritarselo meritare ver +meritarsi meritare ver +meritartela meritare ver +meritarvi meritare ver +meritasse meritare ver +meritassero meritare ver +meritassi meritare ver +meritasti meritare ver +meritata meritato adj +meritatamente meritatamente adv +meritate meritato adj +meritatelo meritare ver +meritati meritare ver +meritato meritare ver +meritava meritare ver +meritavano meritare ver +meritavi meritare ver +meritavo meritare ver +meriterai meritare ver +meriteranno meritare ver +meriterebbe meritare ver +meriterebbero meritare ver +meriterei meritare ver +meriteremmo meritare ver +meritereste meritare ver +meriteresti meritare ver +meriterà meritare ver +meriterò meritare ver +meritevole meritevole adj +meritevoli meritevole adj +meriti merito nom +meritiamo meritare ver +meritino meritare ver +merito merito nom +meritocratica meritocratico adj +meritocratiche meritocratico adj +meritocratici meritocratico adj +meritocratico meritocratico adj +meritocrazia meritocrazia nom +meritocrazie meritocrazia nom +meritori meritorio adj +meritoria meritorio adj +meritoriamente meritoriamente adv +meritorie meritorio adj +meritorio meritorio adj +meritò meritare ver +merla merlo nom +merlango merlango nom +merlata merlato adj +merlate merlato adj +merlati merlato adj +merlato merlato adj +merlatura merlatura nom +merlature merlatura nom +merle merlo nom +merletta merlettare ver +merlettaia merlettaia nom +merlettaie merlettaia nom +merlettata merlettare ver +merlettate merlettare ver +merlettati merlettare ver +merlettato merlettare ver +merletti merletto nom +merletto merletto nom +merli merlo nom +merlo merlo nom +merlot merlot nom +merluzzi merluzzo nom +merluzzo merluzzo nom +mero mero adj +mesa mesa nom +mesata mesata nom +mesate mesata nom +mesca mescere ver +mesce mescere ver +mescendo mescere ver +mescere mescere ver +mesceva mescere ver +meschina meschino adj +meschine meschino adj +meschini meschino adj +meschinità meschinità nom +meschino meschino adj +mesci mescere ver +mescita mescita nom +mescite mescita nom +mescitore mescitore nom +mesco mescere ver +mescola mescolare ver +mescolai mescolare ver +mescolando mescolare ver +mescolandola mescolare ver +mescolandole mescolare ver +mescolandoli mescolare ver +mescolandolo mescolare ver +mescolandone mescolare ver +mescolandosi mescolare ver +mescolandovi mescolare ver +mescolano mescolare ver +mescolante mescolare ver +mescolanti mescolare ver +mescolanza mescolanza nom +mescolanze mescolanza nom +mescolare mescolare ver +mescolarla mescolare ver +mescolarle mescolare ver +mescolarli mescolare ver +mescolarlo mescolare ver +mescolarmi mescolare ver +mescolarono mescolare ver +mescolarsi mescolare ver +mescolarvi mescolare ver +mescolasse mescolare ver +mescolassero mescolare ver +mescolata mescolare ver +mescolate mescolare ver +mescolatesi mescolare ver +mescolati mescolare ver +mescolato mescolare ver +mescolatore mescolatore nom +mescolatori mescolatore nom +mescolatrice mescolatore nom +mescolatura mescolatura nom +mescolava mescolare ver +mescolavano mescolare ver +mescoleranno mescolare ver +mescolerebbe mescolare ver +mescolerebbero mescolare ver +mescolerà mescolare ver +mescolerò mescolare ver +mescoli mescolare ver +mescoliamo mescolare ver +mescolino mescolare ver +mescolo mescolare ver +mescolò mescolare ver +mese mesa|mese nom +mesencefalo mesencefalo nom +mesenchima mesenchima nom +mesentere mesentere nom +mesenteri mesentere|mesenterio nom +mesenterica mesenterico adj +mesenteriche mesenterico adj +mesenterici mesenterico adj +mesenterico mesenterico adj +mesenterio mesenterio nom +mesi mese nom +mesocarpo mesocarpo nom +mesoderma mesoderma nom +mesodermica mesodermico adj +mesodermiche mesodermico adj +mesodermici mesodermico adj +mesodermico mesodermico adj +mesofita mesofita nom +mesofite mesofita nom +mesogastrio mesogastrio nom +mesomeri mesomero adj +mesomeria mesomeria nom +mesomerie mesomeria nom +mesomero mesomero adj +mesomorfa mesomorfo adj +mesomorfi mesomorfo adj +mesomorfo mesomorfo adj +mesone mesone nom +mesoni mesone nom +mesosfera mesosfera nom +mesotelioma mesotelioma nom +mesotorace mesotorace nom +mesozoi mesozoi nom +mesozoica mesozoico adj +mesozoiche mesozoico adj +mesozoici mesozoico adj +mesozoico mesozoico adj +messa mettere ver +messaggera messaggero nom +messaggere messaggero adj +messaggeri messaggero nom +messaggeria messaggeria nom +messaggerie messaggeria nom +messaggero messaggero nom +messaggi messaggio nom +messaggio messaggio nom +messale messale nom +messali messale nom +messalina messalina nom +messaline messalina nom +messe mettere ver +messere messere nom +messeri messere nom +messi mettere ver +messia messia nom +messianica messianico adj +messianiche messianico adj +messianici messianico adj +messianico messianico adj +messianismi messianismo nom +messianismo messianismo nom +messicana messicano adj +messicane messicano adj +messicani messicano adj +messicano messicano adj +messidoro messidoro nom +messinscena messinscena nom +messinscene messinscena nom +messo mettere ver +mesta mesto adj +mestar mestare ver +mestatore mestatore nom +mestatori mestatore nom +meste mesto adj +mesti mesto adj +mestica mestica nom +mestierante mestierante nom +mestieranti mestierante nom +mestiere mestiere nom +mestieri mestiere nom +mestizia mestizia nom +mesto mesto adj +mestola mestola nom +mestolate mestolata nom +mestoli mestolo nom +mestolo mestolo nom +mestolone mestolone nom +mestoloni mestolone nom +mestruale mestruale adj +mestruali mestruale adj +mestruazione mestruazione nom +mestruazioni mestruazione nom +mestrui mestruo nom +mestruo mestruo nom +meta meta nom_sup +metabolica metabolico adj +metaboliche metabolico adj +metabolici metabolico adj +metabolico metabolico adj +metabolismi metabolismo nom +metabolismo metabolismo nom +metaboliti metabolito nom +metabolito metabolito nom +metabolizzazione metabolizzazione nom +metacarpi metacarpo nom +metacarpo metacarpo nom +metacrilati metacrilato nom +metacrilato metacrilato nom +metadone metadone nom +metafisica metafisico adj +metafisiche metafisico adj +metafisici metafisico adj +metafisico metafisico adj +metafonia metafonia nom +metafonie metafonia nom +metafora metafora nom +metafore metafora nom +metaforica metaforico adj +metaforicamente metaforicamente adv +metaforiche metaforico adj +metaforici metaforico adj +metaforico metaforico adj +metaldeide metaldeide nom +metalinguaggi metalinguaggio nom +metalinguaggio metalinguaggio nom +metalinguistica metalinguistica nom +metalli metallo nom +metallica metallico adj +metalliche metallico adj +metallici metallico adj +metallico metallico adj +metallifera metallifero adj +metallifere metallifero adj +metalliferi metallifero adj +metallifero metallifero adj +metallizzare metallizzare ver +metallizzata metallizzato adj +metallizzate metallizzato adj +metallizzati metallizzato adj +metallizzato metallizzato adj +metallo metallo nom +metallografi metallografo nom +metallografia metallografia nom +metallografie metallografia nom +metalloide metalloide nom +metalloidi metalloide nom +metallurgia metallurgia nom +metallurgica metallurgico adj +metallurgiche metallurgico adj +metallurgici metallurgico adj +metallurgico metallurgico adj +metallurgie metallurgia nom +metalmeccanica metalmeccanico adj +metalmeccaniche metalmeccanico adj +metalmeccanici metalmeccanico adj +metalmeccanico metalmeccanico adj +metameri metamero nom +metameria metameria nom +metamerica metamerico adj +metameriche metamerico adj +metamerici metamerico adj +metamerico metamerico adj +metamerie metameria nom +metamero metamero nom +metamorfica metamorfico adj +metamorfiche metamorfico adj +metamorfici metamorfico adj +metamorfico metamorfico adj +metamorfismi metamorfismo nom +metamorfismo metamorfismo nom +metamorfosata metamorfosato adj +metamorfosate metamorfosato adj +metamorfosati metamorfosato adj +metamorfosato metamorfosato adj +metamorfosi metamorfosi nom +metani metano nom +metaniera metaniero adj +metaniere metaniero adj +metanifera metanifero adj +metanifere metanifero adj +metaniferi metanifero adj +metano metano nom +metanodotti metanodotto nom +metanodotto metanodotto nom +metanoli metanolo nom +metanolo metanolo nom +metaplasma metaplasma nom +metaplasmi metaplasma|metaplasmo nom +metaplasmo metaplasmo nom +metapsichica metapsichico adj +metapsichici metapsichico adj +metapsichico metapsichico adj +metastasi metastasi nom +metatarsi metatarso nom +metatarso metatarso nom +metatesi metatesi nom +metazoi metazoi nom +mete meta nom +meteco meteco nom +metempsicosi metempsicosi nom +meteora meteora nom +meteore meteora nom +meteorica meteorico adj +meteoriche meteorico adj +meteorici meteorico adj +meteorico meteorico adj +meteorismo meteorismo nom +meteorite meteorite nom +meteoriti meteorite nom +meteoritica meteoritico adj +meteoritiche meteoritico adj +meteoritici meteoritico adj +meteoritico meteoritico adj +meteorologa meteorologo nom +meteorologi meteorologo nom +meteorologia meteorologia nom +meteorologica meteorologico adj +meteorologiche meteorologico adj +meteorologici meteorologico adj +meteorologico meteorologico adj +meteorologie meteorologia nom +meteorologo meteorologo nom +meteoropatia meteoropatia nom +meteoropatica meteoropatico adj +meteoropatici meteoropatico adj +meteoropatico meteoropatico adj +meteoropatie meteoropatia nom +meter meter nom +meticce meticcio nom +meticci meticcio nom +meticcia meticcio nom +meticcio meticcio nom +meticolosa meticoloso adj +meticolose meticoloso adj +meticolosi meticoloso adj +meticolosità meticolosità nom +meticoloso meticoloso adj +metilarancio metilarancio nom +metilcellulosa metilcellulosa nom +metile metile nom +metilene metilene nom +metili metile nom +metiliche metilico adj +metilici metilico adj +metilico metilico adj +metodi metodo nom +metodica metodico nom +metodiche metodico nom +metodici metodico adj +metodicità metodicità nom +metodico metodico adj +metodismi metodismo nom +metodismo metodismo nom +metodista metodista adj +metodiste metodista adj +metodisti metodista adj +metodo metodo nom +metodologia metodologia nom +metodologica metodologico adj +metodologiche metodologico adj +metodologici metodologico adj +metodologico metodologico adj +metodologie metodologia nom +metonimia metonimia nom +metonimie metonimia nom +metopa metopa nom +metope metopa nom +metraggi metraggio nom +metraggio metraggio nom +metratura metratura nom +metrature metratura nom +metri metro nom +metrica metrico adj +metriche metrico adj +metrici metrico adj +metrico metrico adj +metrite metrite nom +metriti metrite nom +metro metro nom +metrologia metrologia nom +metrologie metrologia nom +metronomi metronomo nom +metronomo metronomo nom +metronotte metronotte nom +metropoli metropoli nom +metropolita metropolita nom +metropolitana metropolitano adj +metropolitane metropolitano adj +metropolitani metropolitano adj +metropolitano metropolitano adj +metropolite metropolita nom +metropoliti metropolita nom +metta mettere ver +mettano mettere ver +mette mettere ver +mettemmo mettere ver +mettendo mettere ver +mettendocela mettere ver +mettendoci mettere ver +mettendogli mettere ver +mettendoglielo mettere ver +mettendola mettere ver +mettendole mettere ver +mettendoli mettere ver +mettendolo mettere ver +mettendomi mettere ver +mettendone mettere ver +mettendosi mettere ver +mettendoti mettere ver +mettendovi mettere ver +mettente mettere ver +metter mettere ver +metterai mettere ver +metteranno mettere ver +mettercela mettere ver +mettercele mettere ver +metterceli mettere ver +mettercelo mettere ver +mettercene mettere ver +metterci mettere ver +mettere mettere ver +metterebbe mettere ver +metterebbero mettere ver +metterei mettere ver +metteremmo mettere ver +metteremo mettere ver +mettereste mettere ver +metteresti mettere ver +metterete mettere ver +mettergli mettere ver +mettergliela mettere ver +mettergliele mettere ver +metterglielo mettere ver +metterla mettere ver +metterle mettere ver +metterli mettere ver +metterlo mettere ver +mettermelo mettere ver +mettermene mettere ver +mettermi mettere ver +metterne mettere ver +mettersela mettere ver +mettersele mettere ver +metterseli mettere ver +metterselo mettere ver +mettersi mettere ver +mettertela mettere ver +metterti mettere ver +mettervi mettere ver +metterà mettere ver +metterò mettere ver +mettesse mettere ver +mettessero mettere ver +mettessi mettere ver +mettessimo mettere ver +metteste mettere ver +mettesti mettere ver +mettete mettere ver +mettetecela mettere ver +mettetecelo mettere ver +metteteci mettere ver +mettetegli mettere ver +mettetela mettere ver +mettetele mettere ver +metteteli mettere ver +mettetelo mettere ver +mettetemi mettere ver +mettetene mettere ver +mettetevelo mettere ver +mettetevi mettere ver +metteva mettere ver +mettevamo mettere ver +mettevano mettere ver +mettevi mettere ver +mettevo mettere ver +metti mettere ver +mettiamo mettere ver +mettiamocela mettere ver +mettiamoceli mettere ver +mettiamocelo mettere ver +mettiamoci mettere ver +mettiamogli mettere ver +mettiamola mettere ver +mettiamole mettere ver +mettiamoli mettere ver +mettiamolo mettere ver +mettiamone mettere ver +mettiate mettere ver +metticela mettere ver +metticelo mettere ver +mettici mettere ver +mettifoglio mettifoglio nom +mettigli mettere ver +mettila mettere ver +mettile mettere ver +mettili mettere ver +mettilo mettere ver +mettimi mettere ver +mettine mettere ver +mettiti mettere ver +metto mettere ver +mettono mettere ver +metà metà nom_sup +meublé meublé adj +mezz mezz sw +mezza mezzo adj_sup +mezzacartuccia mezzacartuccia nom +mezzadri mezzadro nom +mezzadria mezzadria nom +mezzadrie mezzadria nom +mezzadrile mezzadrile adj +mezzadrili mezzadrile adj +mezzadro mezzadro nom +mezzala mezzala nom +mezzale mezzala nom +mezzaluna mezzaluna nom +mezzalune mezzaluna nom +mezzana mezzano adj +mezzane mezzano adj +mezzani mezzano adj +mezzanini mezzanino nom +mezzanino mezzanino nom +mezzano mezzano adj +mezzanotte mezzanotte nom +mezzatinta mezzatinta nom +mezze mezzo adj +mezzeria mezzeria nom +mezzerie mezzeria nom +mezzi mezza|mezzo nom +mezzo mezzo nom_sup +mezzobusti mezzobusto nom +mezzobusto mezzobusto nom +mezzodi mezzodi nom +mezzofondista mezzofondista nom +mezzofondisti mezzofondista nom +mezzofondo mezzofondo nom +mezzogiorno mezzogiorno nom +mezzosangue mezzosangue nom +mezzosoprani mezzosoprano nom +mezzosoprano mezzosoprano nom +mezzucci mezzuccio nom +mezzuccio mezzuccio nom +mi mi pro +mia mio pro +miagola miagolare ver +miagolando miagolare ver +miagolano miagolare ver +miagolare miagolare ver +miagolato miagolare ver +miagolava miagolare ver +miagolii miagolio nom +miagolio miagolio nom +mialgia mialgia nom +mialgie mialgia nom +miao miao nom +miasma miasma nom +miasmi miasma nom +miastenia miastenia nom +mica mica adv +micascisti micascisto nom +micascisto micascisto nom +micce miccia nom +miccia miccia nom +mice micio nom +miceli micelio nom +micelio micelio nom +micenea miceneo adj +micenee miceneo adj +micenei miceneo adj +miceneo miceneo adj +micete micete nom +miceti micete nom +miche mica nom +michelacci michelaccio nom +michelaccio michelaccio nom +michetta michetta nom +michette michetta nom +mici micio nom +micia micio nom +micidiale micidiale adj +micidiali micidiale adj +micio micio nom +micologia micologia nom +micologie micologia nom +micosi micosi nom +micro micro nom +microbi microbio|microbo nom +microbica microbico adj +microbiche microbico adj +microbici microbico adj +microbico microbico adj +microbio microbio nom +microbiologa microbiologo nom +microbiologi microbiologo nom +microbiologia microbiologia nom +microbiologica microbiologico adj +microbiologiche microbiologico adj +microbiologici microbiologico adj +microbiologico microbiologico adj +microbiologie microbiologia nom +microbiologo microbiologo nom +microbo microbo nom +microcalcolatore microcalcolatore nom +microcalcolatori microcalcolatore nom +microcamera microcamera nom +microcamere microcamera nom +microcefala microcefalo adj +microcefale microcefalo adj +microcefali microcefalo nom +microcefalia microcefalia nom +microcefalo microcefalo adj +microclima microclima nom +microclimi microclima nom +micrococchi micrococco nom +microcosmi microcosmo nom +microcosmica microcosmico adj +microcosmiche microcosmico adj +microcosmico microcosmico adj +microcosmo microcosmo nom +microcriminalità microcriminalità nom +microeconomia microeconomia nom +microeconomici microeconomico adj +microeconomico microeconomico adj +microeconomie microeconomia nom +microelettronica microelettronica nom +microfilm microfilm nom +microfilmare microfilmare ver +microfilmata microfilmare ver +microfilmate microfilmare ver +microfilmati microfilmare ver +microfilmato microfilmare ver +microfoni microfono nom +microfono microfono nom +microfotografia microfotografia nom +microfotografie microfotografia nom +microimpresa microimpresa nom +microimprese microimpresa nom +micrometri micrometro nom +micrometrica micrometrico adj +micrometriche micrometrico adj +micrometrici micrometrico adj +micrometrico micrometrico adj +micrometro micrometro nom +micromotore micromotore nom +micromotori micromotore nom +micron micron nom +micronizzata micronizzare ver +micronizzate micronizzare ver +micronizzati micronizzare ver +micronizzato micronizzare ver +microonda microonda nom +microonde microonda nom +microorganismi microorganismo nom +microparticelle microparticella nom +microprocessore microprocessore nom +microprocessori microprocessore nom +microprogetti microprogetto nom +microprogrammazione microprogrammazione nom +microprogrammi microprogramma nom +microrganismi microrganismo nom +microrganismo microrganismo nom +microscopi microscopio nom +microscopia microscopia nom +microscopica microscopico adj +microscopiche microscopico adj +microscopici microscopico adj +microscopico microscopico adj +microscopie microscopia nom +microscopio microscopio nom +microsismi microsismo nom +microsolchi microsolco nom +microsolco microsolco nom +microspia microspia nom +microspie microspia nom +microstoria microstoria nom +microstorie microstoria nom +microtelefono microtelefono nom +microtomi microtomo nom +microtomo microtomo nom +midi midi nom +midolla midolla nom +midollare midollare adj +midollari midollare adj +midolli midollo nom +midollo midollo nom +midriasi midriasi nom +midriatiche midriatico adj +midriatici midriatico adj +midriatico midriatico adj +mie mio pro +miei mio pro +miele miele nom +mieli miele nom +mielina mielina nom +mielite mielite nom +mieliti mielite nom +mielografia mielografia nom +mieloma mieloma nom +mieta mietere ver +mietano mietere ver +miete mietere ver +mietendo mietere ver +mieter mietere ver +mieterai mietere ver +mieteranno mietere ver +mietere mietere ver +mieterono mietere ver +mieterà mietere ver +mieteva mietere ver +mietevano mietere ver +mieti mietere ver +mietitore mietitore nom +mietitori mietitore nom +mietitrebbiatrice mietitrebbiatrice nom +mietitrebbiatrici mietitrebbiatrice nom +mietitrice mietitrice nom +mietitrici mietitore adj +mietitura mietitura nom +mietiture mietitura nom +mieto mietere ver +mietono mietere ver +mietuta mietere ver +mietute mietere ver +mietuti mietere ver +mietuto mietere ver +migale migale nom +migali migale nom +migiorare migiorare ver +miglia miglio nom +migliacci migliaccio nom +migliaccio migliaccio nom +migliaia migliaio nom +migliaio migliaio nom +migliarini migliarino nom +migliarino migliarino nom +miglio miglio nom +miglior migliore adj +migliora migliorare ver +migliorabili migliorabile adj +migliorai migliorare ver +migliorala migliorare ver +migliorale migliorare ver +migliorali migliorare ver +miglioralo migliorare ver +miglioramenti miglioramento nom +miglioramento miglioramento nom +migliorando migliorare ver +migliorandola migliorare ver +migliorandole migliorare ver +migliorandoli migliorare ver +migliorandolo migliorare ver +migliorandone migliorare ver +migliorandosi migliorare ver +migliorane migliorare ver +migliorano migliorare ver +migliorante migliorare ver +miglioranti migliorare ver +migliorar migliorare ver +migliorarci migliorare ver +migliorare migliorare ver +migliorarla migliorare ver +migliorarle migliorare ver +migliorarli migliorare ver +migliorarlo migliorare ver +migliorarmi migliorare ver +migliorarne migliorare ver +migliorarono migliorare ver +migliorarsi migliorare ver +migliorarti migliorare ver +migliorasse migliorare ver +migliorassero migliorare ver +migliorassi migliorare ver +migliorata migliorare ver +migliorate migliorare ver +miglioratela migliorare ver +miglioratele migliorare ver +migliorati migliorare ver +migliorativa migliorativo adj +migliorative migliorativo adj +migliorativi migliorativo adj +migliorativo migliorativo adj +migliorato migliorare ver +migliorava migliorare ver +miglioravano migliorare ver +miglioravi migliorare ver +migliore migliore adj +miglioreranno migliorare ver +migliorerebbe migliorare ver +migliorerebbero migliorare ver +migliorerei migliorare ver +miglioreremmo migliorare ver +miglioreremo migliorare ver +migliorerete migliorare ver +migliorerà migliorare ver +migliorerò migliorare ver +migliori migliore adj +miglioria miglioria nom +miglioriamo migliorare ver +miglioriamola migliorare ver +miglioriamole migliorare ver +miglioriamolo migliorare ver +migliorie miglioria nom +migliorino migliorare ver +miglioro migliorare ver +migliorò migliorare ver +mignatta mignatta nom +mignatte mignatta nom +mignoli mignolo nom +mignolo mignolo nom +mignon mignon adj +mignotta mignotta nom +mignotte mignotta nom +migra migrare ver +migraci migrare ver +migrando migrare ver +migrano migrare ver +migrante migrare ver +migranti migrare ver +migrar migrare ver +migrare migrare ver +migrarlo migrare ver +migrarono migrare ver +migrarvi migrare ver +migrasi migrare ver +migrasse migrare ver +migrassero migrare ver +migrata migrare ver +migrate migrare ver +migrati migrare ver +migrato migrare ver +migratore migratore adj +migratori migratore|migratorio adj +migratoria migratorio adj +migratorie migratorio adj +migratorio migratorio adj +migratrice migratore adj +migratrici migratore adj +migrava migrare ver +migravano migrare ver +migrazione migrazione nom +migrazioni migrazione nom +migreranno migrare ver +migrerebbero migrare ver +migrerà migrare ver +migri migrare ver +migriamo migrare ver +migrino migrare ver +migro migrare ver +migrò migrare ver +mila mila adj_sup +milanese milanese adj +milanesi milanese adj +milanista milanista adj +milaniste milanista adj +milanisti milanista nom +miliardari miliardario nom +miliardaria miliardario adj +miliardarie miliardario adj +miliardario miliardario adj +miliardi miliardo nom +miliardo miliardo nom +miliare miliare adj +miliari miliare adj +milieu milieu nom +milionari milionario adj +milionaria milionario adj +milionarie milionario adj +milionario milionario adj +milione milione nom +milioni milione nom +milita militare ver +militai militare ver +militala militare ver +militando militare ver +militandoci militare ver +militandovi militare ver +militano militare ver +militante militante adj +militanti militante nom +militanza militanza nom +militanze militanza nom +militar militare ver +militare militare adj +militaresca militaresco adj +militaresche militaresco adj +militareschi militaresco adj +militaresco militaresco adj +militari militare adj +militarismi militarismo nom +militarismo militarismo nom +militarista militarista adj +militariste militarista adj +militaristi militarista adj +militaristica militaristico adj +militaristici militaristico adj +militaristico militaristico adj +militarizza militarizzare ver +militarizzare militarizzare ver +militarizzata militarizzare ver +militarizzate militarizzare ver +militarizzati militarizzare ver +militarizzato militarizzare ver +militarizzazione militarizzazione nom +militarizzò militarizzare ver +militarmente militarmente adv +militarono militare ver +militarvi militare ver +militasse militare ver +militassero militare ver +militata militare ver +militate militare ver +militati militare ver +militato militare ver +militava militare ver +militavano militare ver +milite milite nom +militeranno militare ver +militerà militare ver +militesente militesente adj +militi milite nom +militino militare ver +milito militare ver +militò militare ver +milizia milizia nom +milizie milizia nom +millanta millantare ver +millantando millantare ver +millantano millantare ver +millantare millantare ver +millantata millantato adj +millantate millantato adj +millantati millantato adj +millantato millantare ver +millantatore millantatore nom +millantatori millantatore nom +millantava millantare ver +millantavano millantare ver +millanteria millanteria nom +millanterie millanteria nom +millanti millantare ver +millanto millantare ver +millantò millantare ver +mille mille adj +millefiori millefiori nom +millefogli millefoglio nom +millefoglie millefoglie nom +millefoglio millefoglio nom +millenari millenario adj +millenaria millenario adj +millenarie millenario adj +millenario millenario adj +millenni millennio nom +millennio millennio nom +millepiedi millepiedi nom +millesima millesimo adj +millesime millesimo adj +millesimi millesimo nom +millesimo millesimo adj +millimetrata millimetrato adj +millimetrato millimetrato adj +millimetri millimetro nom +millimetrica millimetrico adj +millimetriche millimetrico adj +millimetrici millimetrico adj +millimetrico millimetrico adj +millimetro millimetro nom +milonite milonite nom +miloniti milonite nom +milord milord nom +milza milza nom +milze milza nom +mima mimare ver +mimai mimare ver +mimala mimare ver +mimando mimare ver +mimandogli mimare ver +mimandola mimare ver +mimano mimare ver +mimante mimare ver +mimar mimare ver +mimare mimare ver +mimarne mimare ver +mimarono mimare ver +mimata mimare ver +mimate mimare ver +mimati mimare ver +mimato mimare ver +mimava mimare ver +mimavano mimare ver +mimeografo mimeografo nom +mimerà mimare ver +mimesi mimesi nom +mimetica mimetico adj +mimetiche mimetico adj +mimetici mimetico adj +mimetico mimetico adj +mimetismi mimetismo nom +mimetismo mimetismo nom +mimetizza mimetizzare ver +mimetizzando mimetizzare ver +mimetizzandosi mimetizzare ver +mimetizzano mimetizzare ver +mimetizzare mimetizzare ver +mimetizzarla mimetizzare ver +mimetizzarle mimetizzare ver +mimetizzarli mimetizzare ver +mimetizzarlo mimetizzare ver +mimetizzarono mimetizzare ver +mimetizzarsi mimetizzare ver +mimetizzata mimetizzare ver +mimetizzate mimetizzare ver +mimetizzati mimetizzare ver +mimetizzato mimetizzare ver +mimetizzava mimetizzare ver +mimetizzavano mimetizzare ver +mimetizzazione mimetizzazione nom +mimetizzazioni mimetizzazione nom +mimi mimo nom +mimica mimica nom +mimiche mimico adj +mimici mimico adj +mimico mimico adj +mimino mimare ver +mimo mimo nom +mimosa mimosa nom +mimose mimosa nom +mimò mimare ver +mina mina nom +minacce minaccia nom +minacceranno minacciare ver +minaccerebbe minacciare ver +minaccerebbero minacciare ver +minaccerà minacciare ver +minacci minacciare ver +minaccia minaccia nom +minacciai minacciare ver +minacciamo minacciare ver +minacciando minacciare ver +minacciandogli minacciare ver +minacciandola minacciare ver +minacciandole minacciare ver +minacciandoli minacciare ver +minacciandolo minacciare ver +minacciandomi minacciare ver +minacciandone minacciare ver +minacciandoti minacciare ver +minacciano minacciare ver +minacciante minacciare ver +minaccianti minacciare ver +minacciar minacciare ver +minacciarci minacciare ver +minacciare minacciare ver +minacciarla minacciare ver +minacciarle minacciare ver +minacciarli minacciare ver +minacciarlo minacciare ver +minacciarmi minacciare ver +minacciarne minacciare ver +minacciarono minacciare ver +minacciarsi minacciare ver +minacciarti minacciare ver +minacciarvi minacciare ver +minacciasse minacciare ver +minacciassero minacciare ver +minacciata minacciare ver +minacciate minacciare ver +minacciati minacciare ver +minacciato minacciare ver +minacciava minacciare ver +minacciavano minacciare ver +minaccino minacciare ver +minaccio minacciare ver +minacciosa minaccioso adj +minacciose minaccioso adj +minacciosi minaccioso adj +minaccioso minaccioso adj +minacciò minacciare ver +minaci minare ver +minai minare ver +minale minare ver +minali minare ver +minalo minare ver +minami minare ver +minando minare ver +minandolo minare ver +minandone minare ver +minano minare ver +minante minare ver +minar minare ver +minare minare ver +minareti minareto nom +minareto minareto nom +minarla minare ver +minarle minare ver +minarne minare ver +minarono minare ver +minarti minare ver +minasi minare ver +minasse minare ver +minassero minare ver +minassi minare ver +minata minare ver +minate minare ver +minati minare ver +minato minare ver +minatore minatore nom +minatori minatore nom +minatoria minatorio adj +minatorie minatorio adj +minatorio minatorio adj +minava minare ver +minavano minare ver +minchione minchione adj +minchioni minchione adj +mine mina nom +minerai minare ver +minerale minerale adj +minerali minerale adj +mineralizzano mineralizzare ver +mineralizzante mineralizzare ver +mineralizzanti mineralizzare ver +mineralizzare mineralizzare ver +mineralizzata mineralizzare ver +mineralizzate mineralizzare ver +mineralizzati mineralizzare ver +mineralizzato mineralizzare ver +mineralizzazione mineralizzazione nom +mineralizzazioni mineralizzazione nom +mineralogia mineralogio nom +mineralogica mineralogico adj +mineralogiche mineralogico adj +mineralogici mineralogico adj +mineralogico mineralogico adj +mineralogie mineralogio nom +mineranno minare ver +minerari minerario adj +mineraria minerario adj +minerarie minerario adj +minerario minerario adj +minerebbe minare ver +minerebbero minare ver +minerogenesi minerogenesi nom +minerva minerva nom +minerà minare ver +minestra minestra nom +minestre minestra nom +minestrina minestrina nom +minestrine minestrina nom +minestrone minestrone nom +minestroni minestrone nom +minga mingere ver +minge mingere ver +minger mingere ver +mingere mingere ver +mingherlina mingherlino adj +mingherlino mingherlino adj +mingi mingere ver +mingo mingere ver +mini mini adj +minia miniare ver +miniaci miniare ver +miniai miniare ver +miniamo minare ver +miniane miniare ver +miniar miniare ver +miniare miniare ver +miniata miniare ver +miniate miniare ver +miniati miniare ver +miniato miniare ver +miniatore miniatore nom +miniatori miniatore nom +miniatrice miniatore nom +miniatura miniatura nom +miniature miniatura nom +miniaturista miniaturista nom +miniaturisti miniaturista nom +miniaturizza miniaturizzare ver +miniaturizzando miniaturizzare ver +miniaturizzano miniaturizzare ver +miniaturizzante miniaturizzare ver +miniaturizzare miniaturizzare ver +miniaturizzarla miniaturizzare ver +miniaturizzarsi miniaturizzare ver +miniaturizzata miniaturizzare ver +miniaturizzate miniaturizzare ver +miniaturizzati miniaturizzare ver +miniaturizzato miniaturizzare ver +miniaturizzazione miniaturizzazione nom +minibus minibus nom +miniera miniera nom +miniere miniera nom +minigolf minigolf nom +minigonna minigonna nom +minigonne minigonna nom +minii miniare ver +minima minimo adj +minimale minimale adj +minimalismo minimalismo nom +minimalisti minimalista nom +minimalizzazione minimalizzazione nom +minimamente minimamente adv +minimax minimax nom +minime minimo adj +minimi minimo adj +minimizza minimizzare ver +minimizzando minimizzare ver +minimizzandole minimizzare ver +minimizzandoli minimizzare ver +minimizzandone minimizzare ver +minimizzano minimizzare ver +minimizzante minimizzare ver +minimizzare minimizzare ver +minimizzarla minimizzare ver +minimizzarli minimizzare ver +minimizzarlo minimizzare ver +minimizzarne minimizzare ver +minimizzarono minimizzare ver +minimizzasse minimizzare ver +minimizzata minimizzare ver +minimizzate minimizzare ver +minimizzati minimizzare ver +minimizzato minimizzare ver +minimizzava minimizzare ver +minimizzavano minimizzare ver +minimizzazione minimizzazione nom +minimizzerà minimizzare ver +minimizzi minimizzare ver +minimizzino minimizzare ver +minimizzo minimizzare ver +minimizzò minimizzare ver +minimo minimo nom +minimosca minimosca nom +minino minare ver +minio minio nom +ministeri ministero nom +ministeriale ministeriale adj +ministeriali ministeriale adj +ministero ministero nom +ministra ministrare ver +ministrai ministrare ver +ministrale ministrare ver +ministrali ministrare ver +ministrante ministrare ver +ministranti ministrare ver +ministrar ministrare ver +ministrare ministrare ver +ministri ministro nom +ministro ministro nom +miniò miniare ver +mino minare ver +minoica minoico adj +minoiche minoico adj +minoici minoico adj +minoico minoico adj +minor minore adj +minora minorare ver +minorante minorare ver +minoranti minorare ver +minoranza minoranza nom +minoranze minoranza nom +minorasco minorasco nom +minorasi minorare ver +minorata minorare ver +minorate minorato adj +minorati minorato nom +minorato minorato nom +minorazione minorazione nom +minorazioni minorazione nom +minore minore adj +minorenne minorenne adj +minorenni minorenne nom +minori minore adj +minorile minorile adj +minorili minorile adj +minoritari minoritario adj +minoritaria minoritario adj +minoritarie minoritario adj +minoritario minoritario adj +minorità minorità nom +minoro minorare ver +minse mingere ver +minta mingere ver +minte mingere ver +minti mingere ver +minto mingere ver +minuendo minuendo nom +minuetti minuetto nom +minuetto minuetto nom +minugia minugia nom +minuscola minuscolo adj +minuscole minuscolo adj +minuscoli minuscolo adj +minuscolo minuscolo adj +minuta minuto adj +minutaglia minutaglia nom +minutaglie minutaglia nom +minutamente minutamente adv +minutante minutante nom +minute minuto adj +minuteria minuteria nom +minuterie minuteria nom +minutezza minutezza nom +minuti minuto nom +minuto minuto adj +minuzia minuzia nom +minuzie minuzia nom +minuziosa minuzioso adj +minuziose minuzioso adj +minuziosi minuzioso adj +minuziosità minuziosità nom +minuzioso minuzioso adj +minuzzoli minuzzolo nom +minuzzolo minuzzolo nom +minzione minzione nom +minzioni minzione nom +minò minare ver +mio mio pro +miocardia miocardia nom +miocardio miocardio nom +miocardite miocardite nom +miocarditi miocardite nom +miocene miocene nom +miocenica miocenico adj +mioceniche miocenico adj +miocenici miocenico adj +miocenico miocenico adj +miologia miologia nom +miopatia miopatia nom +miopatie miopatia nom +miope miope adj +miopi miope adj +miopia miopia nom +miopie miopia nom +miorilassante miorilassante adj +miorilassanti miorilassante adj +miosi miosi nom +miosotide miosotide nom +miotico miotico adj +miotonia miotonia nom +miotonie miotonia nom +mira miro adj +mirabile mirabile adj +mirabili mirabile adj +mirabilia mirabilia nom +mirabilmente mirabilmente adv +mirabolante mirabolante adj +mirabolanti mirabolante adj +miracolata miracolato adj +miracolate miracolato adj +miracolati miracolato adj +miracolato miracolato adj +miracoli miracolo nom +miracolo miracolo nom +miracolosa miracoloso adj +miracolose miracoloso adj +miracolosi miracoloso adj +miracoloso miracoloso adj +miraggi miraggio nom +miraggio miraggio nom +miragli mirare ver +mirai mirare ver +mirale mirare ver +mirali mirare ver +miralo mirare ver +mirando mirare ver +mirandola mirare ver +mirandole mirare ver +mirandoli mirare ver +mirandolo mirare ver +mirandosi mirare ver +mirano mirare ver +mirante mirare ver +miranti mirare ver +mirar mirare ver +mirare mirare ver +mirarle mirare ver +mirarlo mirare ver +mirarono mirare ver +mirarsi mirare ver +mirarti mirare ver +mirasi mirare ver +mirasse mirare ver +mirassero mirare ver +mirata mirare ver +mirate mirato adj +mirati mirato adj +mirato mirare ver +mirava mirare ver +miravano mirare ver +miravo mirare ver +mire mira nom +mireranno mirare ver +mirerebbe mirare ver +mirerebbero mirare ver +mirerei mirare ver +mirerà mirare ver +miri miro adj +miriade miriade nom +miriadi miriade nom +miriamo mirare ver +miriapodi miriapodi nom +mirica mirica nom +mirifica mirifico adj +mirifici mirifico adj +mirifico mirifico adj +mirini mirino nom +mirino mirino nom +miristicacee miristicacee nom +mirmecofagi mirmecofago nom +mirmecofilia mirmecofilia nom +mirmecologia mirmecologia nom +mirmidone mirmidone nom +mirmidoni mirmidone nom +miro miro adj +mirra mirra nom +mirre mirra nom +mirtacee mirtacee nom +mirtali mirtali nom +mirti mirto nom +mirtilli mirtillo nom +mirtillo mirtillo nom +mirto mirto nom +mirò mirare ver +misantropa misantropo adj +misantrope misantropo adj +misantropi misantropo nom +misantropia misantropia nom +misantropica misantropico adj +misantropico misantropico adj +misantropo misantropo adj +miscela miscela nom +miscelando miscelare ver +miscelandole miscelare ver +miscelandoli miscelare ver +miscelandolo miscelare ver +miscelandosi miscelare ver +miscelano miscelare ver +miscelante miscelare ver +miscelare miscelare ver +miscelarla miscelare ver +miscelarle miscelare ver +miscelarli miscelare ver +miscelarlo miscelare ver +miscelarono miscelare ver +miscelarsi miscelare ver +miscelata miscelare ver +miscelate miscelare ver +miscelati miscelare ver +miscelato miscelare ver +miscelatore miscelatore nom +miscelatori miscelatore nom +miscelatura miscelatura nom +miscelava miscelare ver +miscelavano miscelare ver +miscelazione miscelazione nom +miscelazioni miscelazione nom +miscele miscela nom +misceli miscelare ver +miscellanea miscellaneo adj +miscellanee miscellaneo adj +miscellanei miscellaneo adj +miscellaneo miscellaneo adj +miscelò miscelare ver +mischi mischiare ver +mischia mischia nom +mischiamo mischiare ver +mischiando mischiare ver +mischiandola mischiare ver +mischiandole mischiare ver +mischiandoli mischiare ver +mischiandolo mischiare ver +mischiandone mischiare ver +mischiandosi mischiare ver +mischiano mischiare ver +mischiarci mischiare ver +mischiare mischiare ver +mischiarle mischiare ver +mischiarli mischiare ver +mischiarmi mischiare ver +mischiarne mischiare ver +mischiarono mischiare ver +mischiarsi mischiare ver +mischiarvi mischiare ver +mischiassero mischiare ver +mischiata mischiare ver +mischiate mischiare ver +mischiati mischiare ver +mischiato mischiare ver +mischiava mischiare ver +mischiavano mischiare ver +mischie mischia nom +mischieranno mischiare ver +mischierebbero mischiare ver +mischierà mischiare ver +mischino mischiare ver +mischio mischiare ver +mischiò mischiare ver +miscibile miscibile adj +miscibili miscibile adj +miscibilità miscibilità nom +misconobbe misconoscere ver +misconosce misconoscere ver +misconoscendo misconoscere ver +misconoscere misconoscere ver +misconosceva misconoscere ver +misconosciuta misconoscere ver +misconosciute misconoscere ver +misconosciuti misconoscere ver +misconosciuto misconoscere ver +miscredente miscredente adj +miscredenti miscredente nom +miscugli miscuglio nom +miscuglio miscuglio nom +mise mettere ver +misera misero adj +miserabile miserabile adj +miserabili miserabile adj +miseranda miserando adj +miserande miserando adj +miserandi miserando adj +miserando miserando adj +misere misero adj +miserere miserere nom +miserevole miserevole adj +miserevoli miserevole adj +miseri misero adj +miseria miseria nom +misericorde misericorde adj +misericordi misericorde adj +misericordia misericordia nom +misericordie misericordia nom +misericordiosa misericordioso adj +misericordiose misericordioso adj +misericordiosi misericordioso adj +misericordioso misericordioso adj +miserie miseria nom +misero mettere ver +misfatti misfatto nom +misfatto misfatto nom +misi mettere ver +misirizzi misirizzi nom +misogina misogino adj +misogine misogino adj +misogini misogino adj +misoginia misoginia nom +misogino misogino adj +misoneismo misoneismo nom +misoneista misoneista nom +miss miss nom +missaggi missaggio nom +missaggio missaggio nom +missile missile adj +missili missile adj +missilistica missilistico adj +missilistiche missilistico adj +missilistici missilistico adj +missilistico missilistico adj +missina missino adj +missine missino adj +missini missino adj +missino missino adj +missionari missionario adj +missionaria missionario adj +missionarie missionario adj +missionario missionario adj +missione missione nom +missioni missione nom +missiva missiva nom +missive missiva nom +mista misto adj +miste misto adj +mister mister nom +misteri mistero nom +misteriosa misterioso adj +misteriose misterioso adj +misteriosi misterioso adj +misteriosità misteriosità nom +misterioso misterioso adj +mistero mistero nom +misti misto adj +mistica mistico adj +mistiche mistico adj +mistici mistico adj +misticismi misticismo nom +misticismo misticismo nom +misticità misticità nom +mistico mistico adj +mistifica mistificare ver +mistificando mistificare ver +mistificano mistificare ver +mistificante mistificare ver +mistificanti mistificare ver +mistificare mistificare ver +mistificata mistificare ver +mistificati mistificare ver +mistificato mistificare ver +mistificatore mistificatore nom +mistificatori mistificatorio adj +mistificatoria mistificatorio adj +mistificatorie mistificatorio adj +mistificatorio mistificatorio adj +mistificatrice mistificatore nom +mistificatrici mistificatore nom +mistificazione mistificazione nom +mistificazioni mistificazione nom +mistilinea mistilineo adj +mistilinee mistilineo adj +mistilinei mistilineo adj +mistilineo mistilineo adj +mistione mistione nom +mistioni mistione nom +misto misto adj +mistral mistral nom +mistrà mistrà nom +mistura mistura nom +misture mistura nom +misura misura nom +misurabile misurabile adj +misurabili misurabile adj +misurale misurare ver +misurammo misurare ver +misurando misurare ver +misurandogli misurare ver +misurandola misurare ver +misurandole misurare ver +misurandolo misurare ver +misurandone misurare ver +misurandosi misurare ver +misurano misurare ver +misurante misurare ver +misuranti misurare ver +misurar misurare ver +misurarci misurare ver +misurare misurare ver +misurargli misurare ver +misurarla misurare ver +misurarle misurare ver +misurarli misurare ver +misurarlo misurare ver +misurarmi misurare ver +misurarne misurare ver +misurarono misurare ver +misurarsi misurare ver +misurasse misurare ver +misurassero misurare ver +misurata misurare ver +misurate misurare ver +misurati misurare ver +misurato misurare ver +misuratore misuratore nom +misuratori misuratore nom +misuratrice misuratore nom +misurava misurare ver +misuravano misurare ver +misurazione misurazione nom +misurazioni misurazione nom +misure misura nom +misureranno misurare ver +misurerebbe misurare ver +misurerebbero misurare ver +misureremo misurare ver +misurerà misurare ver +misuri misurare ver +misuriamo misurare ver +misurina misurino nom +misurini misurino nom +misurino misurare ver +misuro misurare ver +misurò misurare ver +mite mite adj +mitezza mitezza nom +miti mito nom +mitica mitico adj +mitiche mitico adj +mitici mitico adj +miticizzata miticizzare ver +miticizzazione miticizzazione nom +mitico mitico adj +mitiga mitigare ver +mitigando mitigare ver +mitigandone mitigare ver +mitigano mitigare ver +mitigante mitigare ver +mitiganti mitigare ver +mitigar mitigare ver +mitigare mitigare ver +mitigarla mitigare ver +mitigarne mitigare ver +mitigarono mitigare ver +mitigarsi mitigare ver +mitigasse mitigare ver +mitigata mitigare ver +mitigate mitigare ver +mitigati mitigare ver +mitigato mitigare ver +mitigava mitigare ver +mitigazione mitigazione nom +mitigazioni mitigazione nom +mitigherebbe mitigare ver +mitigherà mitigare ver +mitighi mitigare ver +mitighino mitigare ver +mitigò mitigare ver +mitili mitilo nom +mitilo mitilo nom +mitizza mitizzare ver +mitizzando mitizzare ver +mitizzano mitizzare ver +mitizzante mitizzare ver +mitizzanti mitizzare ver +mitizzare mitizzare ver +mitizzarlo mitizzare ver +mitizzarne mitizzare ver +mitizzata mitizzare ver +mitizzate mitizzare ver +mitizzati mitizzare ver +mitizzato mitizzare ver +mitizzazione mitizzazione nom +mitizzazioni mitizzazione nom +mitizzi mitizzare ver +mito mito nom +mitocondri mitocondrio nom +mitocondriali mitocondriale adj +mitocondrio mitocondrio nom +mitologi mitologo nom +mitologia mitologia nom +mitologica mitologico adj +mitologiche mitologico adj +mitologici mitologico adj +mitologico mitologico adj +mitologie mitologia nom +mitologisti mitologista nom +mitologo mitologo nom +mitomane mitomane adj +mitomani mitomane nom +mitomania mitomania nom +mitomanie mitomania nom +mitosi mitosi nom +mitotica mitotico adj +mitotiche mitotico adj +mitotici mitotico adj +mitotico mitotico adj +mitra mitra nom +mitraglia mitraglia nom +mitragliamenti mitragliamento nom +mitragliamento mitragliamento nom +mitragliando mitragliare ver +mitragliandole mitragliare ver +mitragliandolo mitragliare ver +mitragliano mitragliare ver +mitragliante mitragliare ver +mitragliare mitragliare ver +mitragliarlo mitragliare ver +mitragliarne mitragliare ver +mitragliarono mitragliare ver +mitragliata mitragliare ver +mitragliate mitragliata nom +mitragliati mitragliare ver +mitragliato mitragliare ver +mitragliatore mitragliatore adj +mitragliatori mitragliatore adj +mitragliatrice mitragliatore adj +mitragliatrici mitragliatore adj +mitragliava mitragliare ver +mitragliavano mitragliare ver +mitraglie mitraglia nom +mitragliera mitragliera nom +mitragliere mitragliera|mitragliere nom +mitraglieri mitragliere nom +mitraglietta mitraglietta nom +mitragliette mitraglietta nom +mitragliò mitragliare ver +mitrale mitrale adj +mitrali mitrale adj +mitre mitra nom +mitria mitria nom +mitridatismo mitridatismo nom +mitridatizzare mitridatizzare ver +mitrie mitria nom +mitteleuropea mitteleuropeo adj +mitteleuropee mitteleuropeo adj +mitteleuropei mitteleuropeo adj +mitteleuropeo mitteleuropeo adj +mittente mittente nom +mittenti mittente nom +mixer mixer nom +mixomatosi mixomatosi nom +mnemonica mnemonico adj +mnemoniche mnemonico adj +mnemonici mnemonico adj +mnemonico mnemonico adj +mnemotecnica mnemotecnica nom +mnemotecniche mnemotecnica nom +mobile mobile adj +mobili mobile adj +mobilia mobilia nom +mobiliano mobiliare ver +mobiliare mobiliare adj +mobiliari mobiliare adj +mobiliata mobiliare ver +mobilie mobilia nom +mobiliere mobiliere nom +mobilieri mobiliere nom +mobilio mobilio nom +mobilita mobilitare ver +mobilitando mobilitare ver +mobilitandoli mobilitare ver +mobilitandosi mobilitare ver +mobilitano mobilitare ver +mobilitante mobilitare ver +mobilitarci mobilitare ver +mobilitare mobilitare ver +mobilitarli mobilitare ver +mobilitarne mobilitare ver +mobilitarono mobilitare ver +mobilitarsi mobilitare ver +mobilitasse mobilitare ver +mobilitata mobilitare ver +mobilitate mobilitare ver +mobilitati mobilitare ver +mobilitato mobilitare ver +mobilitava mobilitare ver +mobilitavano mobilitare ver +mobilitazione mobilitazione nom +mobilitazioni mobilitazione nom +mobiliterebbe mobilitare ver +mobiliterà mobilitare ver +mobiliterò mobilitare ver +mobiliti mobilitare ver +mobilito mobilitare ver +mobilità mobilità nom +mobilitò mobilitare ver +mobilizzati mobilizzare ver +mobilizzato mobilizzare ver +mobilizzazione mobilizzazione nom +moca moca nom +mocassini mocassino nom +mocassino mocassino nom +mocci moccio nom +moccichino moccichino nom +moccio moccio nom +mocciosa moccioso adj +mocciosi moccioso nom +moccioso moccioso adj +moccoli moccolo nom +moccolo moccolo nom +moda moda nom +modale modale adj +modali modale adj +modalità modalità nom +modana modanare ver +modanata modanare ver +modanate modanare ver +modanati modanare ver +modanato modanare ver +modanatura modanatura nom +modanature modanatura nom +modanino modanare ver +modano modano nom +mode moda nom +modella modella|modello nom +modellabile modellabile adj +modellabili modellabile adj +modellando modellare ver +modellandola modellare ver +modellandole modellare ver +modellandoli modellare ver +modellandolo modellare ver +modellandone modellare ver +modellandosi modellare ver +modellano modellare ver +modellante modellare ver +modellanti modellare ver +modellare modellare ver +modellarla modellare ver +modellarli modellare ver +modellarlo modellare ver +modellarne modellare ver +modellarono modellare ver +modellarsi modellare ver +modellata modellare ver +modellate modellare ver +modellati modellare ver +modellato modellare ver +modellatore modellatore nom +modellatori modellatore nom +modellatrice modellatore nom +modellatura modellatura nom +modellature modellatura nom +modellava modellare ver +modellavano modellare ver +modelle modella|modello nom +modelleranno modellare ver +modellerà modellare ver +modelli modello nom +modellini modellino nom +modellino modellino nom +modellismi modellismo nom +modellismo modellismo nom +modellista modellista nom +modellisti modellista nom +modellistica modellistica nom +modellistiche modellistica nom +modello modello nom +modellò modellare ver +modenese modenese adj +modenesi modenese adj +modera moderare ver +moderabile moderabile adj +moderando moderare ver +moderandole moderare ver +moderandone moderare ver +moderano moderare ver +moderante moderare ver +moderanti moderare ver +moderarci moderare ver +moderare moderare ver +moderarla moderare ver +moderarli moderare ver +moderarlo moderare ver +moderarmi moderare ver +moderarne moderare ver +moderarono moderare ver +moderarsi moderare ver +moderarti moderare ver +moderasse moderare ver +moderata moderato adj +moderatamente moderatamente adv +moderate moderato adj +moderatevi moderare ver +moderatezza moderatezza nom +moderati moderato adj +moderatismo moderatismo nom +moderato moderato adj +moderatore moderatore adj +moderatori moderatore nom +moderatrice moderatore adj +moderatrici moderatore adj +moderavano moderare ver +moderazione moderazione nom +modererei moderare ver +modererà moderare ver +moderi moderare ver +moderiamo moderare ver +moderiamoci moderare ver +moderna moderno adj +modernamente modernamente adv +moderne moderno adj +moderni moderno adj +modernismi modernismo nom +modernismo modernismo nom +modernista modernista nom +moderniste modernista nom +modernisti modernista nom +modernistica modernistico adj +modernistiche modernistico adj +modernistico modernistico adj +modernità modernità nom +modernizza modernizzare ver +modernizzando modernizzare ver +modernizzandola modernizzare ver +modernizzandoli modernizzare ver +modernizzandolo modernizzare ver +modernizzandone modernizzare ver +modernizzandosi modernizzare ver +modernizzano modernizzare ver +modernizzante modernizzare ver +modernizzanti modernizzare ver +modernizzare modernizzare ver +modernizzarla modernizzare ver +modernizzarle modernizzare ver +modernizzarlo modernizzare ver +modernizzarne modernizzare ver +modernizzarono modernizzare ver +modernizzarsi modernizzare ver +modernizzassero modernizzare ver +modernizzata modernizzare ver +modernizzate modernizzare ver +modernizzati modernizzare ver +modernizzato modernizzare ver +modernizzava modernizzare ver +modernizzazione modernizzazione nom +modernizzazioni modernizzazione nom +modernizzò modernizzare ver +moderno moderno adj +modero moderare ver +moderò moderare ver +modesta modesto adj +modestamente modestamente adv +modeste modesto adj +modesti modesto adj +modestia modestia nom +modesto modesto adj +modi modo nom_sup +modica modico adj +modiche modico adj +modici modico adj +modicità modicità nom +modico modico adj +modifica modifica nom +modificabile modificabile adj +modificabili modificabile adj +modificaci modificare ver +modificai modificare ver +modificala modificare ver +modificale modificare ver +modificalo modificare ver +modificando modificare ver +modificandogli modificare ver +modificandola modificare ver +modificandole modificare ver +modificandoli modificare ver +modificandolo modificare ver +modificandone modificare ver +modificandosi modificare ver +modificano modificare ver +modificante modificare ver +modificanti modificare ver +modificar modificare ver +modificare modificare ver +modificargli modificare ver +modificarla modificare ver +modificarle modificare ver +modificarli modificare ver +modificarlo modificare ver +modificarne modificare ver +modificarono modificare ver +modificarsela modificare ver +modificarselo modificare ver +modificarsi modificare ver +modificarti modificare ver +modificasse modificare ver +modificassero modificare ver +modificassi modificare ver +modificassimo modificare ver +modificata modificare ver +modificate modificare ver +modificatela modificare ver +modificatelo modificare ver +modificatesi modificare ver +modificati modificare ver +modificativa modificativo adj +modificato modificare ver +modificatore modificatore nom +modificatori modificatore nom +modificatrice modificatore adj +modificatrici modificatore adj +modificava modificare ver +modificavano modificare ver +modificavo modificare ver +modificazione modificazione nom +modificazioni modificazione nom +modifiche modifica nom +modificherai modificare ver +modificheranno modificare ver +modificherebbe modificare ver +modificherebbero modificare ver +modificherei modificare ver +modificheremo modificare ver +modificheresti modificare ver +modificherete modificare ver +modificherà modificare ver +modificherò modificare ver +modifichi modificare ver +modifichiamo modificare ver +modifichiamola modificare ver +modifichiamolo modificare ver +modifichiate modificare ver +modifichino modificare ver +modifico modificare ver +modificò modificare ver +modiglione modiglione nom +modiglioni modiglione nom +modista modista nom +modiste modista nom +modisteria modisteria nom +modo modo nom_sup +modula modulare ver +modulabile modulabile adj +modulabili modulabile adj +modulabilità modulabilità nom +modulaci modulare ver +modulando modulare ver +modulandole modulare ver +modulandolo modulare ver +modulandone modulare ver +modulano modulare ver +modulante modulare ver +modulanti modulare ver +modular modulare ver +modulare modulare adj +modulari modulare adj +modularli modulare ver +modularne modulare ver +modulasi modulare ver +modulata modulare ver +modulate modulare ver +modulati modulare ver +modulato modulare ver +modulatore modulatore nom +modulatori modulatore nom +modulatrice modulatore nom +modulatrici modulatore nom +modulava modulare ver +modulazione modulazione nom +modulazioni modulazione nom +moduli modulo nom +modulino modulare ver +modulo modulo nom +modulò modulare ver +mofeta mofeta nom +mofete mofeta nom +moffetta moffetta nom +moffette moffetta nom +mogani mogano nom +mogano mogano nom +moge mogio adj +moggi moggio nom +moggio moggio nom +mogi mogio adj +mogia mogio adj +mogio mogio adj +mogli moglie nom +moglie moglie nom +mogol mogol nom +mohair mohair nom +moina moina nom +moine moina nom +moire moire nom +moka moka nom +mola mola nom +molai molare ver +molala molare ver +molale molare ver +molando molare ver +molano molare ver +molante molare ver +molar molare ver +molare molare ver +molassa molassa nom +molasse molare ver +molassi molare ver +molata molare ver +molate molare ver +molati molare ver +molato molare ver +molatore molatore nom +molatori molatore nom +molatrice molatore nom +molatura molatura nom +molavi molare ver +molazza molazza nom +molca molcere ver +molce molcere ver +molco molcere ver +moldave moldavo adj +mole mola|mole nom +molecola molecola nom +molecolare molecolare adj +molecolari molecolare adj +molecole molecola nom +molerei molare ver +molesta molesto adj +molestando molestare ver +molestano molestare ver +molestare molestare ver +molestarla molestare ver +molestarle molestare ver +molestarli molestare ver +molestarlo molestare ver +molestasse molestare ver +molestata molestare ver +molestate molestare ver +molestati molestare ver +molestato molestare ver +molestatore molestatore nom +molestatori molestatore nom +molestatrice molestatore nom +molestava molestare ver +molestavano molestare ver +moleste molesto adj +molesterà molestare ver +molesti molesto adj +molestia molestia nom +molestie molestia nom +molestino molestare ver +molesto molesto adj +molestò molestare ver +moli mole|molo nom +molibdenite molibdenite nom +molibdeno molibdeno nom +molini molino nom +molino molino nom +molisana molisano adj +molisane molisano adj +molisani molisano adj +molisano molisano adj +molitori molitorio adj +molitoria molitorio adj +molitorie molitorio adj +molitorio molitorio adj +molitura molitura nom +molla molla nom +mollalo mollare ver +mollami mollare ver +mollando mollare ver +mollano mollare ver +mollar mollare ver +mollare mollare ver +mollargli mollare ver +mollarla mollare ver +mollarli mollare ver +mollarlo mollare ver +mollarono mollare ver +mollasse mollare ver +mollata mollare ver +mollate mollare ver +mollati mollare ver +mollato mollare ver +mollava mollare ver +mollavano mollare ver +mollavo mollare ver +molle molle|mollo adj +molleggi molleggio nom +molleggia molleggiare ver +molleggiamento molleggiamento nom +molleggiando molleggiare ver +molleggiante molleggiare ver +molleggiata molleggiare ver +molleggiate molleggiare ver +molleggiati molleggiare ver +molleggiato molleggiare ver +molleggio molleggio nom +mollerai mollare ver +molleremo mollare ver +mollerà mollare ver +mollerò mollare ver +molletta molletta nom +mollette molletta nom +mollettiere mollettiera nom +mollettone mollettone nom +mollezza mollezza nom +mollezze mollezza nom +molli molle|mollo adj +molliamo mollare ver +mollica mollica nom +mollicce molliccio adj +mollicci molliccio adj +molliccia molliccio adj +molliccio molliccio adj +molliche mollica nom +mollino mollare ver +mollo mollo adj +mollone mollone nom +molloni mollone nom +mollusca mollusco adj +molluschi mollusco adj +molluschicoltura molluschicoltura nom +mollusco mollusco adj +mollò mollare ver +molo molo nom +moloc moloc nom +molossi molosso nom +molosso molosso nom +molotov molotov nom +molse molcere ver +molta molto pro +molte molto pro +molteplice molteplice adj +molteplici molteplice adj +molteplicità molteplicità nom +molti molto pro +moltiplica moltiplicare ver +moltiplicabile moltiplicabile adj +moltiplicali moltiplicare ver +moltiplicalo moltiplicare ver +moltiplicando moltiplicare ver +moltiplicandola moltiplicare ver +moltiplicandole moltiplicare ver +moltiplicandoli moltiplicare ver +moltiplicandolo moltiplicare ver +moltiplicandone moltiplicare ver +moltiplicandosi moltiplicare ver +moltiplicano moltiplicare ver +moltiplicante moltiplicare ver +moltiplicare moltiplicare ver +moltiplicarla moltiplicare ver +moltiplicarle moltiplicare ver +moltiplicarli moltiplicare ver +moltiplicarlo moltiplicare ver +moltiplicarmi moltiplicare ver +moltiplicarne moltiplicare ver +moltiplicarono moltiplicare ver +moltiplicarsi moltiplicare ver +moltiplicasse moltiplicare ver +moltiplicassero moltiplicare ver +moltiplicassimo moltiplicare ver +moltiplicata moltiplicare ver +moltiplicate moltiplicare ver +moltiplicatesi moltiplicare ver +moltiplicatevi moltiplicare ver +moltiplicati moltiplicare ver +moltiplicativa moltiplicativo adj +moltiplicative moltiplicativo adj +moltiplicativi moltiplicativo adj +moltiplicativo moltiplicativo adj +moltiplicato moltiplicare ver +moltiplicatore moltiplicatore nom +moltiplicatori moltiplicatore nom +moltiplicatrici moltiplicatore adj +moltiplicava moltiplicare ver +moltiplicavano moltiplicare ver +moltiplicazione moltiplicazione nom +moltiplicazioni moltiplicazione nom +moltiplicheranno moltiplicare ver +moltiplicherebbe moltiplicare ver +moltiplicherebbero moltiplicare ver +moltiplicherà moltiplicare ver +moltiplicherò moltiplicare ver +moltiplichi moltiplicare ver +moltiplichiamo moltiplicare ver +moltiplichino moltiplicare ver +moltiplico moltiplicare ver +moltiplicò moltiplicare ver +moltissime moltissimo adj +moltissimi moltissimo adj_sup +moltissimo moltissimo adj_sup +moltitudine moltitudine nom +moltitudini moltitudine nom +molto molto adv_sup +momentanea momentaneo adj +momentaneamente momentaneamente adv +momentanee momentaneo adj +momentanei momentaneo adj +momentaneo momentaneo adj +momenti momento nom +momento momento nom +monaca monaca|monaco nom +monacale monacale adj +monacali monacale adj +monacare monacare ver +monacarsi monacare ver +monacate monacare ver +monacato monacare ver +monacazione monacazione nom +monacazioni monacazione nom +monache monaca|monaco nom +monachesimo monachesimo nom +monachi monacare ver +monachina monachina nom +monachine monachina nom +monachino monacare ver +monaci monaco nom +monaco monaco nom +monacò monacare ver +monade monade nom +monadi monade nom +monadismo monadismo nom +monadologia monadologia nom +monadologie monadologia nom +monandra monandro adj +monarca monarca nom +monarche monarca nom +monarchia monarchia nom +monarchica monarchico adj +monarchiche monarchico adj +monarchici monarchico adj +monarchico monarchico adj +monarchie monarchia nom +monasteri monastero nom +monastero monastero nom +monastica monastico adj +monastiche monastico adj +monastici monastico adj +monastico monastico adj +monatti monatto nom +monatto monatto nom +monca monco adj +monche monco adj +moncherini moncherino nom +moncherino moncherino nom +monchi monco adj +monco monco adj +moncone moncone nom +monconi moncone nom +monda mondo adj +mondai mondare ver +mondala mondare ver +mondale mondare ver +mondali mondare ver +mondami mondare ver +mondana mondano adj +mondando mondare ver +mondane mondano adj +mondani mondano adj +mondanità mondanità nom +mondano mondano adj +mondare mondare ver +mondariso mondariso nom +mondarla mondare ver +mondarlo mondare ver +mondata mondare ver +mondate mondare ver +mondati mondare ver +mondato mondare ver +mondatori mondatore nom +mondatura mondatura nom +mondature mondatura nom +mondavi mondare ver +monde mondo adj +mondezza mondezza nom +mondi mondo nom +mondiale mondiale adj +mondiali mondiale adj +mondializzata mondializzato adj +mondializzato mondializzato adj +mondializzazione mondializzazione nom +mondina mondina nom +mondine mondina nom +mondino mondare ver +mondo mondo nom +mondovisione mondovisione nom +mondovisioni mondovisione nom +monegasca monegasco adj +monegasche monegasco adj +monegaschi monegasco adj +monegasco monegasco adj +monelleria monelleria nom +monellerie monelleria nom +monellesca monellesco adj +monellesche monellesco adj +monelli monello nom +monello monello nom +moneta moneta nom +monetale monetale adj +monetali monetale adj +monetar monetare ver +monetare monetare ver +monetari monetario adj +monetaria monetario adj +monetarie monetario adj +monetario monetario adj +monetato monetare ver +monetazione monetazione nom +monetazioni monetazione nom +monete moneta nom +moneti monetare ver +monetizza monetizzare ver +monetizzare monetizzare ver +monetizzata monetizzare ver +monetizzati monetizzare ver +monetizzato monetizzare ver +monetizzò monetizzare ver +moneto monetare ver +monferrina monferrina nom +monferrine monferrina nom +mongola mongolo adj +mongole mongolo adj +mongolfiera mongolfiera nom +mongolfiere mongolfiera nom +mongoli mongolo nom +mongolia mongolia nom +mongolismo mongolismo nom +mongolo mongolo adj +mongoloide mongoloide adj +mongoloidi mongoloide adj +monile monile nom +monili monile nom +monismo monismo nom +monista monista nom +moniste monista nom +monisti monista nom +moniti monito nom +monito monito nom +monitor monitor nom +monitoraggi monitoraggio nom +monitoraggio monitoraggio nom +monitorare monitorare ver +monitorati monitorato ver +monitore monitore nom +monitori monitorio adj +monitoria monitorio adj +monitorie monitorio adj +monitorio monitorio nom +monna monna nom +monne monna nom +mono mono adj +monoalbero monoalbero adj +monoaurale monoaurale adj +monobasico monobasico adj +monoblocchi monoblocco adj +monoblocco monoblocco nom +monocarpica monocarpico adj +monocarpiche monocarpico adj +monocarpico monocarpico adj +monocefali monocefalo nom +monocefalo monocefalo nom +monocilindrica monocilindrico adj +monocilindriche monocilindrico adj +monocilindrici monocilindrico adj +monocilindrico monocilindrico adj +monoclina monoclino adj +monoclinale monoclinale nom +monoclinali monoclinale nom +monocline monoclino adj +monoclini monoclino adj +monoclino monoclino adj +monocola monocolo adj +monocoli monocolo adj +monocolo monocolo nom +monocolore monocolore adj +monocoltura monocoltura nom +monocolture monocoltura nom +monocorde monocorde adj +monocordi monocorde adj +monocordo monocordo nom +monocotiledone monocotiledone adj +monocotiledoni monocotiledone adj +monocroma monocromo adj +monocromatica monocromatico adj +monocromatiche monocromatico adj +monocromatici monocromatico adj +monocromatico monocromatico adj +monocromatismo monocromatismo nom +monocromato monocromato adj +monocrome monocromo adj +monocromi monocromo adj +monocromia monocromia nom +monocromie monocromia nom +monocromo monocromo adj +monoculare monoculare adj +monoculari monoculare adj +monodia monodia nom +monodica monodico adj +monodiche monodico adj +monodici monodico adj +monodico monodico adj +monodie monodia nom +monofase monofase adj +monofasi monofase adj +monofisismo monofisismo nom +monofisita monofisita adj +monofisite monofisita adj +monofisiti monofisita nom +monofonica monofonico adj +monofoniche monofonico adj +monofonici monofonico adj +monofonico monofonico adj +monofora monofora nom +monofore monofora nom +monogama monogamo adj +monogame monogamo adj +monogami monogamo adj +monogamia monogamia nom +monogamica monogamico adj +monogamici monogamico adj +monogamico monogamico adj +monogamie monogamia nom +monogamo monogamo adj +monogenesi monogenesi nom +monografia monografia nom +monografica monografico adj +monografiche monografico adj +monografici monografico adj +monografico monografico adj +monografie monografia nom +monogramma monogramma nom +monogrammi monogramma nom +monoica monoico adj +monoiche monoico adj +monoici monoico adj +monoico monoico adj +monolingue monolingue adj +monolingui monolingue adj +monolinguismo monolinguismo nom +monoliti monolito nom +monolitica monolitico adj +monolitiche monolitico adj +monolitici monolitico adj +monolitico monolitico adj +monolito monolito nom +monolocale monolocale nom +monolocali monolocale nom +monologa monologare ver +monologante monologare ver +monologanti monologare ver +monologare monologare ver +monologata monologare ver +monologato monologare ver +monologhi monologo nom +monologo monologo nom +monomania monomania nom +monomaniaca monomaniaco adj +monomaniaco monomaniaco adj +monomanie monomania nom +monomeri monomero nom +monomero monomero nom +monometallismo monometallismo nom +monometriche monometrico adj +monometrici monometrico adj +monometrico monometrico adj +monomi monomio nom +monomio monomio nom +monomotore monomotore adj +monomotori monomotore adj +monoparentali monoparentali adj +monopattini monopattino nom +monopattino monopattino nom +monopetto monopetto nom +monoplani monoplano nom +monoplano monoplano nom +monopoli monopolio nom +monopolio monopolio nom +monopolista monopolista nom +monopoliste monopolista nom +monopolisti monopolista nom +monopolistica monopolistico adj +monopolistiche monopolistico adj +monopolistici monopolistico adj +monopolistico monopolistico adj +monopolizza monopolizzare ver +monopolizzando monopolizzare ver +monopolizzandone monopolizzare ver +monopolizzano monopolizzare ver +monopolizzare monopolizzare ver +monopolizzarono monopolizzare ver +monopolizzata monopolizzare ver +monopolizzate monopolizzare ver +monopolizzati monopolizzare ver +monopolizzato monopolizzare ver +monopolizzatrice monopolizzatore adj +monopolizzava monopolizzare ver +monopolizzavano monopolizzare ver +monopolizzeranno monopolizzare ver +monopolizzò monopolizzare ver +monoposto monoposto adj +monopropellente monopropellente nom +monopropellenti monopropellente nom +monoreattore monoreattore nom +monorotaia monorotaia nom +monorotaie monorotaia nom +monorotore monorotore adj +monosaccharide monosaccharide nom +monoscopi monoscopio nom +monoscopio monoscopio nom +monosillabi monosillabo nom +monosillabica monosillabico adj +monosillabiche monosillabico adj +monosillabici monosillabico adj +monosillabico monosillabico adj +monosillabo monosillabo nom +monossido monossido nom +monoteismi monoteismo nom +monoteismo monoteismo nom +monoteista monoteista nom +monoteiste monoteista nom +monoteisti monoteista nom +monoteistica monoteistico adj +monoteistiche monoteistico adj +monoteistici monoteistico adj +monoteistico monoteistico adj +monotematica monotematico adj +monotematiche monotematico adj +monotematici monotematico adj +monotipi monotipo nom +monotipia monotipia nom +monotipo monotipo nom +monotona monotono adj +monotone monotono adj +monotoni monotono adj +monotonia monotonia nom +monotonie monotonia nom +monotono monotono adj +monotremi monotremi nom +monottonghi monottongo nom +monottongo monottongo nom +monotype monotype nom +monouso monouso adj +monovalente monovalente adj +monovalenti monovalente adj +monoverbi monoverbo nom +monoverbo monoverbo nom +monsignore monsignore nom +monsignori monsignore nom +monsone monsone nom +monsoni monsone nom +monsonica monsonico adj +monsoniche monsonico adj +monsonici monsonico adj +monsonico monsonico adj +monta montare ver +montacarichi montacarichi nom +montaggi montaggio nom +montaggio montaggio nom +montagna montagna nom +montagne montagna nom +montagnosa montagnoso adj +montagnose montagnoso adj +montagnosi montagnoso adj +montagnoso montagnoso adj +montai montare ver +montala montare ver +montale montare ver +montali montare ver +montana montano adj +montanara montanaro adj +montanare montanaro adj +montanari montanaro adj +montanaro montanaro adj +montando montare ver +montandoci montare ver +montandola montare ver +montandole montare ver +montandoli montare ver +montandolo montare ver +montandone montare ver +montandovi montare ver +montane montano adj +montani montano adj +montanina montanino adj +montanine montanino adj +montanini montanino adj +montanino montanino adj +montano montano adj +montante montante nom +montanti montante nom +montar montare ver +montarci montare ver +montare montare ver +montargli montare ver +montarla montare ver +montarle montare ver +montarli montare ver +montarlo montare ver +montarmi montare ver +montarne montare ver +montarono montare ver +montarsi montare ver +montarti montare ver +montarvi montare ver +montasi montare ver +montasse montare ver +montassero montare ver +montassi montare ver +montata montare ver +montate montare ver +montati montare ver +montato montare ver +montatore montatore adj +montatori montatore adj +montatrice montatore nom +montatura montatura nom +montature montatura nom +montava montare ver +montavano montare ver +montavivande montavivande nom +montavo montare ver +monte monta|monte nom +monteranno montare ver +monterà montare ver +monterò montare ver +montgomery montgomery nom +monti monte nom +montiamo montare ver +montiamoci montare ver +monticala monticare ver +monticali monticare ver +monticano monticare ver +monticare monticare ver +montico monticare ver +montino montare ver +monto montare ver +montone montone nom +montoni montone nom +montuosa montuoso adj +montuose montuoso adj +montuosi montuoso adj +montuosità montuosità nom +montuoso montuoso adj +montò montare ver +monumentale monumentale adj +monumentali monumentale adj +monumenti monumento nom +monumento monumento nom +moog moog nom +moplen moplen nom +moquette moquette nom +mora moro adj +moracee moracee nom +morale morale adj +moraleggiante moraleggiare ver +moraleggianti moraleggiare ver +morali morale adj +moralismi moralismo nom +moralismo moralismo nom +moralista moralista nom +moraliste moralista nom +moralisti moralista nom +moralistica moralistico adj +moralistiche moralistico adj +moralistici moralistico adj +moralistico moralistico adj +moralità moralità nom +moralizza moralizzare ver +moralizzando moralizzare ver +moralizzante moralizzare ver +moralizzanti moralizzare ver +moralizzare moralizzare ver +moralizzata moralizzare ver +moralizzati moralizzare ver +moralizzato moralizzare ver +moralizzatore moralizzatore nom +moralizzatori moralizzatore nom +moralizzatrice moralizzatore nom +moralizzatrici moralizzatore nom +moralizzazione moralizzazione nom +moralmente moralmente adv +moratori moratorio adj +moratoria moratoria nom +moratorie moratoria nom +moratorio moratorio adj +morbi morbo nom +morbida morbido adj +morbide morbido adj +morbidezza morbidezza nom +morbidezze morbidezza nom +morbidi morbido adj +morbido morbido adj +morbilli morbillo nom +morbillo morbillo nom +morbo morbo nom +morbosa morboso adj +morbose morboso adj +morbosi morboso adj +morbosità morbosità nom +morboso morboso adj +morchella morchella nom +morchelle morchella nom +morchia morchia nom +morchie morchia nom +morda mordere ver +mordace mordace adj +mordaci mordace adj +mordacità mordacità nom +mordano mordere ver +morde mordere ver +mordendo mordere ver +mordendogli mordere ver +mordendola mordere ver +mordendole mordere ver +mordendoli mordere ver +mordendolo mordere ver +mordendosi mordere ver +mordente mordente adj +mordenti mordente adj +morder mordere ver +mordere mordere ver +mordergli mordere ver +morderla mordere ver +morderle mordere ver +morderli mordere ver +morderlo mordere ver +mordermi mordere ver +morderne mordere ver +mordersi mordere ver +morderti mordere ver +mordervi mordere ver +morderà mordere ver +mordesse mordere ver +mordessero mordere ver +mordete mordere ver +mordetemi mordere ver +mordetevi mordere ver +mordeva mordere ver +mordevano mordere ver +mordi mordere ver +mordiamo mordere ver +mordicchia mordicchiare ver +mordicchiando mordicchiare ver +mordicchiandosi mordicchiare ver +mordicchiare mordicchiare ver +mordicchiata mordicchiare ver +mordicchiato mordicchiare ver +mordicchio mordicchiare ver +mordilo mordere ver +mordimi mordere ver +morditi mordere ver +mordo mordere ver +mordono mordere ver +more moro adj +morella morello adj +morelle morello adj +morelli morello adj +morello morello adj +morena morena nom +morendo morire ver +morendogli morire ver +morendone morire ver +morendovi morire ver +morene morena nom +morenica morenico adj +moreniche morenico adj +morenici morenico adj +morenico morenico adj +morente morente adj +morenti morente adj +moresca moresco adj +moresche moresco adj +moreschi moresco adj +moresco moresco adj +moretta moretta nom +morette moretta nom +morfema morfema nom +morfemi morfema nom +morfina morfina nom +morfine morfina nom +morfinomane morfinomane nom +morfinomani morfinomane nom +morfologia morfologia nom +morfologica morfologico adj +morfologiche morfologico adj +morfologici morfologico adj +morfologico morfologico adj +morfologie morfologia nom +morganatica morganatico adj +morganatiche morganatico adj +morganatici morganatico adj +morganatico morganatico adj +morgue morgue nom +mori moro adj +moria moria nom +moriamo morire ver +moriate morire ver +moribonda moribondo adj +moribonde moribondo adj +moribondi moribondo adj +moribondo moribondo adj +morie moria nom +morigerata morigerato adj +morigerate morigerato adj +morigeratezza morigeratezza nom +morigerati morigerato adj +morigerato morigerato adj +moriglione moriglione nom +moriglioni moriglione nom +morii morire ver +morimmo morire ver +morione morione nom +morioni morione nom +morir morire ver +morirai morire ver +moriranno morire ver +morirci morire ver +morire morire ver +morirebbe morire ver +morirebbero morire ver +morirei morire ver +moriremmo morire ver +moriremo morire ver +moriresti morire ver +morirete morire ver +morirgli morire ver +morirle morire ver +morirne morire ver +morirono morire ver +morirvi morire ver +morirà morire ver +morirò morire ver +morisse morire ver +morissero morire ver +morissi morire ver +morite morire ver +moritura morituro adj +morituri morituro nom +morituro morituro nom +moriva morire ver +morivano morire ver +morivi morire ver +morivo morire ver +mormone mormone nom +mormoni mormone nom +mormora mormorare ver +mormorai mormorare ver +mormorando mormorare ver +mormorano mormorare ver +mormorante mormorare ver +mormoranti mormorare ver +mormorar mormorare ver +mormorare mormorare ver +mormorasse mormorare ver +mormorata mormorare ver +mormorate mormorare ver +mormorati mormorare ver +mormorato mormorare ver +mormorava mormorare ver +mormoravano mormorare ver +mormorazione mormorazione nom +mormorazioni mormorazione nom +mormore mormora nom +mormorii mormorio nom +mormorio mormorio nom +mormorò mormorare ver +moro moro adj +morosa moroso nom +morose moroso adj +morosi moroso adj +morosità morosità nom +moroso moroso adj +morra morra nom +morre morra nom +morsa morsa nom +morse morse|morso adj +morsero mordere ver +morsetti morsetto nom +morsettiera morsettiera nom +morsettiere morsettiera nom +morsetto morsetto nom +morsi morso nom +morsica morsicare ver +morsicando morsicare ver +morsicandogli morsicare ver +morsicare morsicare ver +morsicata morsicare ver +morsicate morsicare ver +morsicati morsicare ver +morsicato morsicare ver +morsicatura morsicatura nom +morsicature morsicatura nom +morso morso nom +morsura morsura nom +morsure morsura nom +morta morire ver +mortadella mortadella nom +mortadelle mortadella nom +mortai mortaio nom +mortaio mortaio nom +mortale mortale adj +mortali mortale adj +mortalità mortalità nom +mortalmente mortalmente adv +mortaretti mortaretto nom +mortaretto mortaretto nom +mortasa mortasa nom +mortasatrice mortasatrice nom +mortase mortasa nom +mortaso mortasare ver +morte morta|morte|morto nom +mortella mortella nom +mortelle mortella nom +morti morte|morto nom +morticine morticino nom +morticino morticino nom +mortifera mortifero adj +mortifere mortifero adj +mortiferi mortifero adj +mortifero mortifero adj +mortifica mortificare ver +mortificando mortificare ver +mortificandola mortificare ver +mortificandolo mortificare ver +mortificandone mortificare ver +mortificandosi mortificare ver +mortificano mortificare ver +mortificante mortificare ver +mortificanti mortificare ver +mortificare mortificare ver +mortificarla mortificare ver +mortificarlo mortificare ver +mortificarsi mortificare ver +mortificata mortificare ver +mortificate mortificare ver +mortificati mortificare ver +mortificato mortificare ver +mortificava mortificare ver +mortificavano mortificare ver +mortificazione mortificazione nom +mortificazioni mortificazione nom +mortificherebbe mortificare ver +mortifichi mortificare ver +mortificò mortificare ver +morto morire ver +mortori mortorio nom +mortorio mortorio nom +morula morula nom +morule morula nom +morva morva nom +morve morva nom +morì morire ver +mosaica mosaico adj +mosaiche mosaico adj +mosaici mosaico nom +mosaicista mosaicista nom +mosaicisti mosaicista nom +mosaico mosaico nom +mosca mosca nom +moscardini moscardino nom +moscardino moscardino nom +moscatelli moscatello nom +moscatello moscatello nom +moscati moscato nom +moscato moscato nom +mosce moscio adj +moscerini moscerino nom +moscerino moscerino nom +mosche mosca nom +moschea moschea nom +moschee moschea nom +moschetteria moschetteria nom +moschetti moschetto nom +moschettiere moschettiere nom +moschettieri moschettiere nom +moschetto moschetto nom +moschettone moschettone nom +moschettoni moschettone nom +moschicida moschicida adj +moschicide moschicida adj +mosci moscio adj +moscia moscio adj +moscio moscio adj +moscone moscone nom +mosconi moscone nom +moscovita moscovita adj +moscovite moscovita adj +moscoviti moscovita adj +mosi mosco nom +mosio mosco nom +mossa mossa nom +mosse mossa nom +mossero muovere ver +mossi mosso adj +mossiere mossiere nom +mossieri mossiere nom +mosso muovere ver +mostaccioli mostacciolo nom +mostacciolo mostacciolo nom +mostarda mostarda nom +mostarde mostarda nom +mosti mosto nom +mosto mosto nom +mostosa mostoso adj +mostosi mostoso adj +mostra mostra nom +mostraci mostrare ver +mostragli mostrare ver +mostrai mostrare ver +mostrala mostrare ver +mostrale mostrare ver +mostrali mostrare ver +mostramene mostrare ver +mostrami mostrare ver +mostrando mostrare ver +mostrandocelo mostrare ver +mostrandoci mostrare ver +mostrandogli mostrare ver +mostrandola mostrare ver +mostrandole mostrare ver +mostrandoli mostrare ver +mostrandolo mostrare ver +mostrandomi mostrare ver +mostrandone mostrare ver +mostrandosene mostrare ver +mostrandosi mostrare ver +mostrandoti mostrare ver +mostrandovi mostrare ver +mostrano mostrare ver +mostrante mostrare ver +mostranti mostrare ver +mostrar mostrare ver +mostrarci mostrare ver +mostrare mostrare ver +mostrargli mostrare ver +mostrargliela mostrare ver +mostrargliele mostrare ver +mostrarglielo mostrare ver +mostrarla mostrare ver +mostrarle mostrare ver +mostrarli mostrare ver +mostrarlo mostrare ver +mostrarmi mostrare ver +mostrarne mostrare ver +mostrarono mostrare ver +mostrarsi mostrare ver +mostrarteli mostrare ver +mostrartelo mostrare ver +mostrarti mostrare ver +mostrarvelo mostrare ver +mostrarvi mostrare ver +mostrasi mostrare ver +mostrasse mostrare ver +mostrassero mostrare ver +mostrassi mostrare ver +mostrasti mostrare ver +mostrata mostrare ver +mostrate mostrare ver +mostrategli mostrare ver +mostratemi mostrare ver +mostratevi mostrare ver +mostrati mostrare ver +mostrato mostrare ver +mostrava mostrare ver +mostravano mostrare ver +mostravi mostrare ver +mostre mostra nom +mostreggiatura mostreggiatura nom +mostreggiature mostreggiatura nom +mostrerai mostrare ver +mostreranno mostrare ver +mostrerebbe mostrare ver +mostrerebbero mostrare ver +mostreremo mostrare ver +mostrerete mostrare ver +mostrerà mostrare ver +mostrerò mostrare ver +mostri mostro nom +mostriamo mostrare ver +mostriamoci mostrare ver +mostrina mostrina nom +mostrine mostrina nom +mostrino mostrare ver +mostro mostro nom +mostruosa mostruoso adj +mostruose mostruoso adj +mostruosi mostruoso adj +mostruosità mostruosità nom +mostruoso mostruoso adj +mostrò mostrare ver +mota mota nom +mote mota nom +motel motel nom +moti moto nom +motilità motilità nom +motiva motivare ver +motivaci motivare ver +motivando motivare ver +motivandola motivare ver +motivandole motivare ver +motivandoli motivare ver +motivandolo motivare ver +motivandone motivare ver +motivano motivare ver +motivante motivare ver +motivanti motivare ver +motivare motivare ver +motivarla motivare ver +motivarle motivare ver +motivarli motivare ver +motivarlo motivare ver +motivarmi motivare ver +motivarne motivare ver +motivarono motivare ver +motivarsi motivare ver +motivarti motivare ver +motivasi motivare ver +motivasse motivare ver +motivassero motivare ver +motivassi motivare ver +motivata motivare ver +motivatamente motivatamente adv +motivate motivare ver +motivati motivare ver +motivato motivare ver +motivava motivare ver +motivavano motivare ver +motivazionale motivazionale adj +motivazionali motivazionale adj +motivazione motivazione nom +motivazioni motivazione nom +motiverebbe motivare ver +motiverei motivare ver +motiverà motivare ver +motiverò motivare ver +motivi motivo nom +motiviamo motivare ver +motivino motivare ver +motivo motivo nom +motivò motivare ver +moto moto nom +motobarca motobarca nom +motobarche motobarca nom +motocannoniera motocannoniera nom +motocannoniere motocannoniera nom +motocarri motocarro nom +motocarro motocarro nom +motocarrozzetta motocarrozzetta nom +motocarrozzette motocarrozzetta nom +motocicletta motocicletta nom +motociclette motocicletta nom +motocicli motociclo nom +motociclismo motociclismo nom +motociclista motociclista nom +motocicliste motociclista nom +motociclisti motociclista nom +motociclistica motociclistico adj +motociclistiche motociclistico adj +motociclistici motociclistico adj +motociclistico motociclistico adj +motociclo motociclo nom +motocoltivatore motocoltivatore nom +motocoltivatori motocoltivatore nom +motocompressore motocompressore nom +motocompressori motocompressore nom +motocorazzata motocorazzato adj +motocorazzate motocorazzato adj +motocorazzati motocorazzato adj +motocorazzato motocorazzato adj +motocrossista motocrossista nom +motodromo motodromo nom +motofurgone motofurgone nom +motolance motolancia nom +motolancia motolancia nom +motoleggera motoleggera nom +motoleggere motoleggera nom +motonautica motonautico adj +motonautiche motonautico adj +motonautici motonautico adj +motonautico motonautico adj +motonave motonave nom +motonavi motonave nom +motopescherecci motopeschereccio nom +motopeschereccio motopeschereccio nom +motopompa motopompa nom +motopompe motopompa nom +motopropulsore motopropulsore adj +motopropulsori motopropulsore adj +motore motore nom +motoretta motoretta nom +motorette motoretta nom +motori motore nom +motoria motorio adj +motorie motorio adj +motorini motorino nom +motorino motorino nom +motorio motorio adj +motorismo motorismo nom +motorista motorista nom +motoristi motorista nom +motoristica motoristico adj +motoristiche motoristico adj +motoristici motoristico adj +motoristico motoristico adj +motorizza motorizzare ver +motorizzando motorizzare ver +motorizzandolo motorizzare ver +motorizzano motorizzare ver +motorizzare motorizzare ver +motorizzarono motorizzare ver +motorizzarsi motorizzare ver +motorizzata motorizzare ver +motorizzate motorizzare ver +motorizzati motorizzare ver +motorizzato motorizzare ver +motorizzava motorizzare ver +motorizzazione motorizzazione nom +motorizzazioni motorizzazione nom +motorizzò motorizzare ver +motoscafi motoscafo nom +motoscafo motoscafo nom +motosega motosega nom +motoseghe motosega nom +motosi motoso adj +motosilurante motosilurante nom +motoslitta motoslitta nom +motoslitte motoslitta nom +motovedetta motovedetta nom +motovedette motovedetta nom +motoveicoli motoveicolo nom +motoveicolo motoveicolo nom +motovelieri motoveliero nom +motoveliero motoveliero nom +motozappa motozappa nom +motozappe motozappa nom +motrice motrice adj +motrici motrice adj +motteggi motteggio nom +motteggia motteggiare ver +motteggiando motteggiare ver +motteggiandolo motteggiare ver +motteggiante motteggiare ver +motteggiare motteggiare ver +motteggiatore motteggiatore nom +motteggio motteggio nom +mottetti mottetto nom +mottetto mottetto nom +motti motto nom +motto motto nom +motuproprio motuproprio adv +mousse mousse nom +movente movente nom +moventi movente nom +movenza movenza nom +movenze movenza nom +movibile movibile adj +movibili movibile adj +movimenta movimentare ver +movimentale movimentare ver +movimentando movimentare ver +movimentano movimentare ver +movimentare movimentare ver +movimentarle movimentare ver +movimentarlo movimentare ver +movimentarne movimentare ver +movimentarono movimentare ver +movimentarsi movimentare ver +movimentata movimentare ver +movimentate movimentare ver +movimentati movimentare ver +movimentato movimentare ver +movimentava movimentare ver +movimentavano movimentare ver +movimentazione movimentazione nom +movimentazioni movimentazione nom +movimenteranno movimentare ver +movimenterà movimentare ver +movimenti movimento nom +movimentino movimentare ver +movimento movimento nom +movimentò movimentare ver +moviola moviola nom +moviole moviola nom +mozione mozione nom +mozioni mozione nom +mozza mozzo adj +mozzafiato mozzafiato adj +mozzali mozzare ver +mozzando mozzare ver +mozzandogli mozzare ver +mozzandole mozzare ver +mozzano mozzare ver +mozzanti mozzare ver +mozzare mozzare ver +mozzarella mozzarella nom +mozzarelle mozzarella nom +mozzargli mozzare ver +mozzarono mozzare ver +mozzata mozzare ver +mozzate mozzare ver +mozzatesi mozzare ver +mozzati mozzare ver +mozzato mozzare ver +mozzatura mozzatura nom +mozzava mozzare ver +mozzavano mozzare ver +mozze mozzo adj +mozzerà mozzare ver +mozzerò mozzare ver +mozzetta mozzetta nom +mozzette mozzetta nom +mozzi mozzo adj +mozzicone mozzicone nom +mozziconi mozzicone nom +mozzo mozzo adj +mozzò mozzare ver +mucca mucca nom +mucche mucca nom +mucchi mucchio nom +mucchio mucchio nom +muchi muco nom +mucida mucido adj +mucido mucido adj +mucillagine mucillagine nom +mucillagini mucillagine nom +mucillaginosa mucillaginoso adj +mucillaginose mucillaginoso adj +mucillaginosi mucillaginoso adj +mucillaginoso mucillaginoso adj +muco muco nom +mucosa mucosa nom +mucose mucosa nom +mucosi mucoso adj +mucosità mucosità nom +mucoso mucoso adj +mucoviscidosi mucoviscidosi nom +mucronata mucronato adj +mucronate mucronato adj +mucronati mucronato adj +mucronato mucronato adj +muda muda nom +mude muda nom +muezzin muezzin nom +muffa muffa nom +muffe muffa nom +muffire muffire ver +muffita muffire ver +muffito muffire ver +muffo muffo adj +muffola muffola nom +muffole muffola nom +muflone muflone nom +mufloni muflone nom +muftì muftì nom +muggendo muggire ver +muggenti muggire ver +mugghia mugghiare ver +mugghiante mugghiare ver +mugghiava mugghiare ver +mugghio mugghiare ver +mugghiò mugghiare ver +muggine muggine nom +muggini muggine nom +muggire muggire ver +muggirono muggire ver +muggisce muggire ver +muggiti muggito nom +muggito muggito nom +muggivano muggire ver +mughetti mughetto nom +mughetto mughetto nom +mughi mugo nom +mugic mugic nom +mugik mugik nom +mugnai mugnaio nom +mugnaia mugnaio nom +mugnaio mugnaio nom +mugo mugo nom +mugola mugolare ver +mugolando mugolare ver +mugolante mugolare ver +mugolanti mugolare ver +mugolare mugolare ver +mugolii mugolio nom +mugolio mugolio nom +mugugna mugugnare ver +mugugnare mugugnare ver +mugugni mugugno nom +mugugno mugugno nom +mula mulo nom +mulatta mulatto nom +mulatte mulatto nom +mulatti mulatto nom +mulattiera mulattiera nom +mulattiere mulattiera|mulattiere nom +mulattieri mulattiere nom +mulatto mulatto nom +mule mulo nom +muleta muleta nom +muli mulo nom +muliebre muliebre adj +muliebri muliebre adj +mulina mulinare ver +mulinando mulinare ver +mulinare mulinare ver +mulinata mulinare ver +mulinavano mulinare ver +mulinelli mulinello nom +mulinello mulinello nom +mulini mulino nom +mulino mulino nom +mullah mullah nom +mulo mulo nom +multa multa nom +multai multare ver +multando multare ver +multandolo multare ver +multano multare ver +multare multare ver +multarli multare ver +multarlo multare ver +multassero multare ver +multata multare ver +multate multare ver +multati multare ver +multato multare ver +multava multare ver +multe multa nom +multerà multare ver +multi multare ver +multicanale multicanale adj +multicanali multicanali adj +multicolore multicolore adj +multicolori multicolore adj +multiculturale multiculturale adj +multiculturali multiculturale adj +multidimensionale multidimensionale adj +multidimensionalità multidimensionalità nom +multidisciplinare multidisciplinare adj +multietnica multietnico adj +multietnico multietnico adj +multifida multifido adj +multifidi multifido adj +multifido multifido adj +multiforme multiforme adj +multiformi multiforme adj +multifunzionalità multifunzionalità nom +multilaterale multilaterale adj +multilaterali multilaterale adj +multilateralismo multilateralismo nom +multilingue multilingue adj +multilingui multilingue adj +multilinguismo multilinguismo nom +multilinguistiche multilinguistico adj +multimedia multimedia adj +multimediale multimediale adj +multimediali multimediali adj +multimiliardari multimiliardario adj +multimiliardaria multimiliardario adj +multimiliardarie multimiliardario adj +multimiliardario multimiliardario adj +multimilionari multimilionario adj +multimilionaria multimilionario adj +multimilionario multimilionario adj +multimodale multimodale adj +multimodali multimodale adj +multinazionale multinazionale nom +multinazionali multinazionale adj +multipara multipara adj +multipare multipara nom +multipartitiche multipartitico adj +multipartitico multipartitico adj +multipartitismo multipartitismo nom +multipiano multipiano adj +multipla multiplo adj +multiple multiplo adj +multipli multiplo adj +multiplo multiplo adj +multiproprietà multiproprietà nom +multipunto multipunto adj +multireligiosa multireligioso adj +multisensoriale multisensoriale adj +multiservizio multiservizio adj +multisettoriale multisettoriale adj +multisettoriali multisettoriale adj +multispecie multispecie adj +multiuso multiuso adj +multo multare ver +multò multare ver +mummia mummia nom +mummie mummia nom +mummifica mummificare ver +mummificanti mummificare ver +mummificare mummificare ver +mummificarsi mummificare ver +mummificata mummificare ver +mummificate mummificare ver +mummificati mummificare ver +mummificato mummificare ver +mummificavano mummificare ver +mummificazione mummificazione nom +mummificazioni mummificazione nom +mummificò mummificare ver +mundi mundio nom +mundio mundio nom +munendo munire ver +munendola munire ver +munendole munire ver +munendoli munire ver +munendolo munire ver +munendosi munire ver +munga mungere ver +munge mungere ver +mungendo mungere ver +munger mungere ver +mungere mungere ver +mungi mungere ver +mungitori mungitore nom +mungitrice mungitore nom +mungitrici mungitore nom +mungitura mungitura nom +mungiture mungitura nom +mungo mungere ver +mungono mungere ver +municipale municipale adj +municipali municipale adj +municipalità municipalità nom +municipalizzare municipalizzare ver +municipalizzata municipalizzare ver +municipalizzate municipalizzare ver +municipalizzati municipalizzare ver +municipalizzato municipalizzare ver +municipalizzazione municipalizzazione nom +municipalizzazioni municipalizzazione nom +municipi municipio nom +municipio municipio nom +munifica munifico adj +munificenza munificenza nom +munificenze munificenza nom +munifiche munifico adj +munifici munifico adj +munifico munifico adj +munir munire ver +munirci munire ver +munire munire ver +muniremo munire ver +munirla munire ver +munirle munire ver +munirli munire ver +munirlo munire ver +munirono munire ver +munirsi munire ver +munisca munire ver +munisce munire ver +munisci munire ver +muniscono munire ver +munisti munire ver +munita munire ver +munite munito adj +munitevi munire ver +muniti munire ver +munito munire ver +muniva munire ver +munivi munire ver +munizione munizione nom +munizioni munizione nom +munse mungere ver +munta mungere ver +munte munto adj +munti mungere ver +munto mungere ver +munì munire ver +muoia morire ver +muoiano morire ver +muoio morire ver +muoiono morire ver +muore morire ver +muori morire ver +muova muovere ver +muovano muovere ver +muove muovere ver +muovendo muovere ver +muovendoci muovere ver +muovendogli muovere ver +muovendola muovere ver +muovendole muovere ver +muovendoli muovere ver +muovendolo muovere ver +muovendomi muovere ver +muovendone muovere ver +muovendosi muovere ver +muover muovere ver +muoverai muovere ver +muoveranno muovere ver +muoverci muovere ver +muovere muovere ver +muoverebbe muovere ver +muoverebbero muovere ver +muoverei muovere ver +muoveremo muovere ver +muovergli muovere ver +muoverla muovere ver +muoverle muovere ver +muoverli muovere ver +muoverlo muovere ver +muovermi muovere ver +muoverne muovere ver +muoversi muovere ver +muoverti muovere ver +muovervi muovere ver +muoverà muovere ver +muoverò muovere ver +muovesse muovere ver +muovessero muovere ver +muovete muovere ver +muovetevi muovere ver +muoveva muovere ver +muovevano muovere ver +muovevo muovere ver +muovi muovere ver +muoviamo muovere ver +muoviamoci muovere ver +muovila muovere ver +muovilo muovere ver +muoviti muovere ver +muovo muovere ver +muovono muovere ver +mura mura|muro nom +muragli murare ver +muraglia muraglia nom +muraglie muraglia nom +muraglione muraglione nom +muraglioni muraglione nom +murai murare ver +murale murale adj +murali murale adj +murami murare ver +murando murare ver +murandola murare ver +murandovi murare ver +murano murare ver +murante murare ver +murar murare ver +murare murare ver +murari murario adj +muraria murario adj +murarie murario adj +murario murario adj +murarla murare ver +murarlo murare ver +murasi murare ver +murasse murare ver +murata murare ver +murate murare ver +murati murare ver +murato murare ver +muratore muratore nom +muratori muratore nom +muratura muratura nom +murature muratura nom +murazzi murazzi nom +mure mura nom +murena murena nom +murene murena nom +muri muro nom +muriatico muriatico adj +muriccioli muricciolo nom +muricciolo muricciolo nom +murice murice nom +murici murice nom +murino murare ver +murmure murmure nom +murmuri murmure nom +muro muro nom +murò murare ver +musa musa nom +musacee musacee nom +muschi muschi|muschio nom +muschiata muschiato adj +muschiate muschiato adj +muschiati muschiato adj +muschiato muschiato adj +muschio muschio nom +musci musci nom +muscolare muscolare adj +muscolari muscolare adj +muscolatura muscolatura nom +muscolature muscolatura nom +muscoli muscolo nom +muscoline muscolina nom +muscolo muscolo nom +muscolosa muscoloso adj +muscolose muscoloso adj +muscolosi muscoloso adj +muscolosità muscolosità nom +muscoloso muscoloso adj +muscosa muscoso adj +muscose muscoso adj +muscosi muscoso adj +muscoso muscoso adj +muscovite muscovite nom +muse musa nom +musei museo nom +museo museo nom +museruola museruola nom +museruole museruola nom +musette musette nom +musi muso nom +musica musico adj +musical musical nom +musicala musicare ver +musicale musicale adj +musicali musicale adj +musicalità musicalità nom +musicalo musicare ver +musicando musicare ver +musicandone musicare ver +musicano musicare ver +musicante musicante adj +musicanti musicante adj +musicare musicare ver +musicarla musicare ver +musicarlo musicare ver +musicarne musicare ver +musicarono musicare ver +musicasse musicare ver +musicassetta musicassetta nom +musicassette musicassetta nom +musicata musicare ver +musicate musicare ver +musicati musicare ver +musicato musicare ver +musicava musicare ver +musicavano musicare ver +musiche musica nom +musicherà musicare ver +musici musico adj +musicista musicista nom +musiciste musicista nom +musicisti musicista nom +musico musico adj +musicologa musicologo nom +musicologi musicologo nom +musicologia musicologia nom +musicologie musicologia nom +musicologo musicologo nom +musicò musicare ver +musiva musivo adj +musive musivo adj +musivi musivo adj +musivo musivo adj +musmè musmè nom +muso muso nom +musona musone nom +musone musone nom +musoneria musoneria nom +musoni musone nom +mussa mussare ver +mussala mussare ver +mussale mussare ver +mussano mussare ver +mussar mussare ver +mussati mussare ver +mussato mussare ver +mussavi mussare ver +mussi mussare ver +mussino mussare ver +musso mussare ver +mussola mussola nom +mussole mussola nom +mussolina mussolina nom +mussoline mussolina nom +mussulmana mussulmano adj +mussulmane mussulmano adj +mussulmani mussulmano nom +mussulmano mussulmano adj +mustacchi mustacchio nom +mustacchio mustacchio nom +mustang mustang nom +musulmana musulmano adj +musulmane musulmano adj +musulmani musulmano nom +musulmano musulmano adj +muta muto adj +mutabile mutabile adj +mutabili mutabile adj +mutabilità mutabilità nom +mutaci mutare ver +mutagena mutageno adj +mutagene mutageno adj +mutageni mutageno adj +mutagenicità mutagenicità nom +mutageno mutageno adj +mutai mutare ver +mutala mutare ver +mutale mutare ver +mutali mutare ver +mutamenti mutamento nom +mutamento mutamento nom +mutande mutande nom +mutandine mutandine nom +mutando mutare ver +mutandola mutare ver +mutandole mutare ver +mutandoli mutare ver +mutandolo mutare ver +mutandone mutare ver +mutandosi mutare ver +mutano mutare ver +mutante mutante adj +mutanti mutante nom +mutar mutare ver +mutare mutare ver +mutarla mutare ver +mutarle mutare ver +mutarli mutare ver +mutarlo mutare ver +mutarne mutare ver +mutarono mutare ver +mutarsi mutare ver +mutasi mutare ver +mutasse mutare ver +mutassero mutare ver +mutata mutare ver +mutate mutare ver +mutati mutare ver +mutato mutare ver +mutatore mutatore nom +mutatori mutatore adj +mutava mutare ver +mutavano mutare ver +mutazione mutazione nom +mutazioni mutazione nom +mute muto adj +muteranno mutare ver +muterebbe mutare ver +muterà mutare ver +muterò mutare ver +mutevole mutevole adj +mutevolezza mutevolezza nom +mutevoli mutevole adj +mutezza mutezza nom +muti muto adj +mutiamo mutare ver +mutica mutico adj +mutiche mutico adj +mutici mutico adj +mutila mutilo adj +mutilando mutilare ver +mutilandola mutilare ver +mutilandole mutilare ver +mutilandoli mutilare ver +mutilandolo mutilare ver +mutilandone mutilare ver +mutilandosi mutilare ver +mutilano mutilare ver +mutilante mutilare ver +mutilanti mutilare ver +mutilare mutilare ver +mutilarla mutilare ver +mutilarle mutilare ver +mutilarli mutilare ver +mutilarlo mutilare ver +mutilarono mutilare ver +mutilarsi mutilare ver +mutilata mutilare ver +mutilate mutilare ver +mutilati mutilato adj +mutilato mutilare ver +mutilatori mutilatore nom +mutilava mutilare ver +mutilavano mutilare ver +mutilazione mutilazione nom +mutilazioni mutilazione nom +mutile mutilo adj +mutili mutilo adj +mutilo mutilo adj +mutilò mutilare ver +mutino mutare ver +mutismo mutismo nom +muto muto adj +mutria mutria nom +mutrie mutria nom +mutua mutuo adj +mutuale mutuare ver +mutuali mutuare ver +mutualismi mutualismo nom +mutualismo mutualismo nom +mutualistica mutualistico adj +mutualistiche mutualistico adj +mutualistici mutualistico adj +mutualistico mutualistico adj +mutualità mutualità nom +mutualmente mutualmente adv +mutuamente mutuamente adv +mutuando mutuare ver +mutuandola mutuare ver +mutuandoli mutuare ver +mutuandolo mutuare ver +mutuandone mutuare ver +mutuano mutuare ver +mutuante mutuante nom +mutuanti mutuante nom +mutuare mutuare ver +mutuarla mutuare ver +mutuarli mutuare ver +mutuarne mutuare ver +mutuarono mutuare ver +mutuata mutuare ver +mutuatari mutuatario nom +mutuatario mutuatario nom +mutuate mutuare ver +mutuati mutuare ver +mutuato mutuare ver +mutuava mutuare ver +mutuavano mutuare ver +mutue mutuo adj +mutuerà mutuare ver +mutui mutuo nom +mutuo mutuo adj +mutuò mutuare ver +mutò mutare ver +mèche mèche nom +mélange mélange nom +ménage ménage nom +n n abr +nababbi nababbo nom +nababbo nababbo nom +nacchera nacchera nom +nacchere nacchera nom +nacque nascere ver +nacquero nascere ver +nacqui nascere ver +nadir nadir nom +nafta nafta nom +naftalina naftalina nom +nafte nafta nom +naftoli naftolo nom +naftolo naftolo nom +naia naia nom +naiade naiade nom +naie naia nom +nailon nailon nom +nana nano adj +nandù nandù nom +nane nano adj +nani nano adj +nanismi nanismo nom +nanismo nanismo nom +nanna nanna nom +nanne nanna nom +nano nano adj +nanotecnologia nanotecnologia nom +nanotecnologie nanotecnologia nom +napalm napalm nom +napoleone napoleone nom +napoleoni napoleone nom +napoletana napoletano adj +napoletane napoletano adj +napoletani napoletano adj +napoletano napoletano adj +nappa nappa nom +nappe nappa nom +nappi nappo nom +nappo nappo nom +narcisi narciso nom +narcisismi narcisismo nom +narcisismo narcisismo nom +narcisista narcisista nom +narcisiste narcisista nom +narcisisti narcisista nom +narcisistica narcisistico adj +narcisistiche narcisistico adj +narcisistici narcisistico adj +narcisistico narcisistico adj +narciso narciso nom +narcoanalisi narcoanalisi nom +narcolessia narcolessia nom +narcosi narcosi nom +narcoterapia narcoterapia nom +narcotica narcotico adj +narcotiche narcotico adj +narcotici narcotico nom +narcotico narcotico adj +narcotizza narcotizzare ver +narcotizzando narcotizzare ver +narcotizzano narcotizzare ver +narcotizzante narcotizzare ver +narcotizzanti narcotizzare ver +narcotizzare narcotizzare ver +narcotizzarlo narcotizzare ver +narcotizzata narcotizzare ver +narcotizzate narcotizzare ver +narcotizzati narcotizzare ver +narcotizzato narcotizzare ver +narcotizzava narcotizzare ver +narcotrafficanti narcotrafficanti nom +narcotraffico narcotraffico nom +narghilè narghilè nom +nari nari nom +narice narice nom +narici narice nom +narra narrare ver +narrabile narrabile adj +narraci narrare ver +narrai narrare ver +narrami narrare ver +narrando narrare ver +narrandogli narrare ver +narrandola narrare ver +narrandole narrare ver +narrandoli narrare ver +narrandone narrare ver +narrandosi narrare ver +narrano narrare ver +narrante narrare ver +narranti narrare ver +narrar narrare ver +narrarci narrare ver +narrare narrare ver +narrargli narrare ver +narrarla narrare ver +narrarle narrare ver +narrarlo narrare ver +narrarne narrare ver +narrarono narrare ver +narrarsi narrare ver +narrarti narrare ver +narrasi narrare ver +narrasse narrare ver +narrassero narrare ver +narrasti narrare ver +narrata narrare ver +narrate narrare ver +narrateci narrare ver +narrategli narrare ver +narrati narrare ver +narrativa narrativo adj +narrative narrativo adj +narrativi narrativo adj +narrativo narrativo adj +narrato narrare ver +narratore narratore nom +narratori narratore nom +narratrice narratore nom +narratrici narratore nom +narrava narrare ver +narravano narrare ver +narrazione narrazione nom +narrazioni narrazione nom +narreranno narrare ver +narrerebbe narrare ver +narrerà narrare ver +narrerò narrare ver +narri narrare ver +narriamo narrare ver +narrino narrare ver +narro narrare ver +narrò narrare ver +nartece nartece nom +narvali narvalo nom +narvalo narvalo nom +nasale nasale adj +nasali nasale adj +nasca nascere ver +nascano nascere ver +nasce nascere ver +nascendo nascere ver +nascente nascente adj +nascenti nascente adj +nascer nascere ver +nascerai nascere ver +nasceranno nascere ver +nascere nascere ver +nascerebbe nascere ver +nascerebbero nascere ver +nasceremo nascere ver +nascerne nascere ver +nascervi nascere ver +nascerà nascere ver +nascerò nascere ver +nascesse nascere ver +nascessero nascere ver +nascessi nascere ver +nascesti nascere ver +nasceva nascere ver +nascevano nascere ver +nascevo nascere ver +nasci nascere ver +nasciamo nascere ver +nasciate nascere ver +nascimento nascimento nom +nascita nascita nom +nascite nascita nom +nascitura nascituro nom +nasciture nascituro adj +nascituri nascituro nom +nascituro nascituro nom +nasco nascere ver +nasconda nascondere ver +nascondano nascondere ver +nasconde nascondere ver +nascondemmo nascondere ver +nascondendo nascondere ver +nascondendoci nascondere ver +nascondendogli nascondere ver +nascondendola nascondere ver +nascondendole nascondere ver +nascondendoli nascondere ver +nascondendolo nascondere ver +nascondendomi nascondere ver +nascondendone nascondere ver +nascondendosi nascondere ver +nascondendoti nascondere ver +nascondendovi nascondere ver +nascondente nascondere ver +nascondenti nascondere ver +nasconder nascondere ver +nasconderanno nascondere ver +nasconderci nascondere ver +nascondere nascondere ver +nasconderebbe nascondere ver +nasconderebbero nascondere ver +nasconderei nascondere ver +nasconderemo nascondere ver +nascondergli nascondere ver +nascondergliela nascondere ver +nasconderglielo nascondere ver +nasconderla nascondere ver +nasconderle nascondere ver +nasconderli nascondere ver +nasconderlo nascondere ver +nascondermi nascondere ver +nasconderne nascondere ver +nascondersela nascondere ver +nasconderselo nascondere ver +nascondersi nascondere ver +nasconderti nascondere ver +nascondervi nascondere ver +nasconderà nascondere ver +nasconderò nascondere ver +nascondesse nascondere ver +nascondessero nascondere ver +nascondessi nascondere ver +nascondete nascondere ver +nascondeva nascondere ver +nascondevamo nascondere ver +nascondevano nascondere ver +nascondevo nascondere ver +nascondi nascondere ver +nascondiamo nascondere ver +nascondiamocelo nascondere ver +nascondiamoci nascondere ver +nascondigli nascondiglio nom +nascondiglio nascondiglio nom +nascondimi nascondere ver +nascondini nascondino nom +nascondino nascondino nom +nasconditi nascondere ver +nascondo nascondere ver +nascondono nascondere ver +nascono nascere ver +nascose nascondere ver +nascosero nascondere ver +nascosi nascondere ver +nascosta nascondere ver +nascoste nascondere ver +nascosti nascondere ver +nascosto nascondere ver +naselli nasello nom +nasello nasello nom +nasi naso nom +nasiera nasiera nom +naso naso nom +nassa nassa nom +nasse nassa nom +nastia nastia nom +nastie nastia nom +nastratrici nastratrice nom +nastri nastro nom +nastriforme nastriforme adj +nastriformi nastriforme adj +nastrini nastrino nom +nastrino nastrino nom +nastro nastro nom +nasturzio nasturzio nom +nasuta nasuto adj +nasuti nasuto adj +nasuto nasuto adj +nata nascere ver +natale natale adj +natali natale nom +natalità natalità nom +natalizi natalizio adj +natalizia natalizio adj +natalizie natalizio adj +natalizio natalizio adj +natante natante adj +natanti natante nom +natatoia natatoia nom +natatoie natatoia nom +natatori natatorio adj +natatoria natatorio adj +natatorie natatorio adj +natatorio natatorio adj +nate nascere ver +nati nascere ver +natia natio adj +natica natica nom +natiche natica nom +natie natio adj +natii natio adj +natio natio adj +nativa nativo adj +native nativo adj +nativi nativo nom +natività natività nom +nativo nativo adj +nato nascere ver +natta natta nom +natte natta nom +natura natura nom +naturala naturale nom +naturale naturale adj +naturalezza naturalezza nom +naturali naturale adj +naturalismi naturalismo nom +naturalismo naturalismo nom +naturalista naturalista nom +naturaliste naturalista nom +naturalisti naturalista nom +naturalistica naturalistico adj +naturalistiche naturalistico adj +naturalistici naturalistico adj +naturalistico naturalistico adj +naturalità naturalità nom +naturalizza naturalizzare ver +naturalizzando naturalizzare ver +naturalizzandosi naturalizzare ver +naturalizzare naturalizzare ver +naturalizzarli naturalizzare ver +naturalizzarono naturalizzare ver +naturalizzarsi naturalizzare ver +naturalizzata naturalizzare ver +naturalizzate naturalizzare ver +naturalizzati naturalizzare ver +naturalizzato naturalizzare ver +naturalizzazione naturalizzazione nom +naturalizzazioni naturalizzazione nom +naturalizzò naturalizzare ver +naturalmente naturalmente adv_sup +nature natura nom +naturi natura nom +naturismo naturismo nom +naturista naturista nom +naturiste naturista nom +naturisti naturista nom +naturistica naturistico adj +naturistiche naturistico adj +naturistici naturistico adj +naturistico naturistico adj +naturo natura nom +naufraga naufrago nom +naufragando naufragare ver +naufragano naufragare ver +naufragante naufragare ver +naufragar naufragare ver +naufragare naufragare ver +naufragarono naufragare ver +naufragasse naufragare ver +naufragata naufragare ver +naufragate naufragare ver +naufragati naufragare ver +naufragato naufragare ver +naufragava naufragare ver +naufraghe naufrago nom +naufragherebbe naufragare ver +naufragherà naufragare ver +naufraghi naufrago nom +naufragi naufragio nom +naufragio naufragio nom +naufrago naufrago nom +naufragò naufragare ver +naumachia naumachia nom +naumachie naumachia nom +nausea nausea nom +nauseabonda nauseabondo adj +nauseabonde nauseabondo adj +nauseabondi nauseabondo adj +nauseabondo nauseabondo adj +nauseante nauseante adj +nauseanti nauseante adj +nauseata nauseare ver +nauseati nauseare ver +nauseato nauseare ver +nausee nausea nom +nauta nauta nom +nauti nauta nom +nautica nautico adj +nautiche nautico adj +nautici nautico adj +nautico nautico adj +nautili nautilo nom +nautilo nautilo nom +navaja navaja nom +navale navale adj +navali navale adj +navalmeccanica navalmeccanico adj +navalmeccaniche navalmeccanico adj +navalmeccanico navalmeccanico adj +navata navata nom +navate navata nom +nave nave nom +navetta navetta nom +navette navetta nom +navi nave nom +navicella navicella nom +navicelle navicella nom +navicelli navicello nom +navicello navicello nom +navicula navicula nom +naviga navigare ver +navigabile navigabile adj +navigabili navigabile adj +navigabilità navigabilità nom +navigaci navigare ver +navigala navigare ver +navigammo navigare ver +navigando navigare ver +navigandolo navigare ver +navigandovi navigare ver +navigano navigare ver +navigante navigante adj +naviganti navigante nom +navigar navigare ver +navigarci navigare ver +navigare navigare ver +navigarla navigare ver +navigarlo navigare ver +navigarono navigare ver +navigarvi navigare ver +navigasi navigare ver +navigasse navigare ver +navigassero navigare ver +navigassimo navigare ver +navigata navigato adj +navigate navigato adj +navigati navigato adj +navigato navigare ver +navigatore navigatore adj +navigatori navigatore|navigatorio adj +navigatoria navigatorio adj +navigatrice navigatore nom +navigatrici navigatore nom +navigava navigare ver +navigavano navigare ver +navigavo navigare ver +navigazione navigazione nom +navigazioni navigazione nom +navigheranno navigare ver +navigheremo navigare ver +navigherà navigare ver +navigherò navigare ver +navighi navigare ver +navighiamo navigare ver +navighino navigare ver +navigli naviglio nom +naviglio naviglio nom +navigo navigare ver +navigò navigare ver +navone navone nom +navoni navone nom +nazarena nazareno adj +nazarene nazareno adj +nazareni nazareno adj +nazareno nazareno adj +nazifascismi nazifascismo nom +nazifascismo nazifascismo nom +nazionale nazionale adj +nazionali nazionale adj +nazionalismi nazionalismo nom +nazionalismo nazionalismo nom +nazionalista nazionalista adj +nazionaliste nazionalista adj +nazionalisti nazionalista nom +nazionalistica nazionalistico adj +nazionalistiche nazionalistico adj +nazionalistici nazionalistico adj +nazionalistico nazionalistico adj +nazionalità nazionalità nom +nazionalizza nazionalizzare ver +nazionalizzando nazionalizzare ver +nazionalizzare nazionalizzare ver +nazionalizzarono nazionalizzare ver +nazionalizzata nazionalizzare ver +nazionalizzate nazionalizzare ver +nazionalizzati nazionalizzare ver +nazionalizzato nazionalizzare ver +nazionalizzava nazionalizzare ver +nazionalizzazione nazionalizzazione nom +nazionalizzazioni nazionalizzazione nom +nazionalizzò nazionalizzare ver +nazionalsocialismo nazionalsocialismo nom +nazionalsocialista nazionalsocialista adj +nazionalsocialiste nazionalsocialista adj +nazionalsocialisti nazionalsocialista adj +nazione nazione nom +nazioni nazione nom +nazismo nazismo nom +nazista nazista adj +naziste nazista adj +nazisti nazista adj +naïf naïf adj +ne ne adv_sup +neanche neanche adv_sup +nebbia nebbia nom +nebbie nebbia nom +nebbiogena nebbiogeno adj +nebbiogene nebbiogeno adj +nebbiogeni nebbiogeno adj +nebbiogeno nebbiogeno adj +nebbioli nebbiolo nom +nebbiolo nebbiolo nom +nebbione nebbione nom +nebbiosa nebbioso adj +nebbiose nebbioso adj +nebbiosi nebbioso adj +nebbioso nebbioso adj +nebiolo nebiolo nom +nebulare nebulare adj +nebulari nebulare adj +nebulizza nebulizzare ver +nebulizzando nebulizzare ver +nebulizzandole nebulizzare ver +nebulizzandolo nebulizzare ver +nebulizzano nebulizzare ver +nebulizzare nebulizzare ver +nebulizzata nebulizzare ver +nebulizzate nebulizzare ver +nebulizzati nebulizzare ver +nebulizzato nebulizzare ver +nebulosa nebulosa nom +nebulose nebulosa nom +nebulosi nebuloso adj +nebulosità nebulosità nom +nebuloso nebuloso adj +necessari necessario adj +necessaria necessario adj +necessariamente necessariamente adv +necessarie necessario adj +necessario necessario adj +necessarî necessario nom +necessita necessitare ver +necessitando necessitare ver +necessitandone necessitare ver +necessitano necessitare ver +necessitante necessitare ver +necessitanti necessitare ver +necessitare necessitare ver +necessitarne necessitare ver +necessitarono necessitare ver +necessitasse necessitare ver +necessitassero necessitare ver +necessitata necessitare ver +necessitate necessitare ver +necessitati necessitare ver +necessitato necessitare ver +necessitava necessitare ver +necessitavano necessitare ver +necessitavo necessitare ver +necessiteranno necessitare ver +necessiterebbe necessitare ver +necessiterebbero necessitare ver +necessiterà necessitare ver +necessiti necessitare ver +necessitiamo necessitare ver +necessitino necessitare ver +necessito necessitare ver +necessità necessità nom +necessitò necessitare ver +necrofila necrofilo adj +necrofile necrofilo adj +necrofili necrofilo adj +necrofilia necrofilia nom +necrofilie necrofilia nom +necrofilo necrofilo adj +necrofori necroforo nom +necroforo necroforo nom +necrologi necrologio nom +necrologia necrologia nom +necrologie necrologia nom +necrologio necrologio nom +necropoli necropoli nom +necroscopia necroscopia nom +necroscopica necroscopico adj +necroscopiche necroscopico adj +necroscopico necroscopico adj +necroscopie necroscopia nom +necrosi necrosi nom +necrotica necrotico adj +necrotiche necrotico adj +necrotici necrotico adj +necrotico necrotico adj +necrotizza necrotizzare ver +necrotizzano necrotizzare ver +necrotizzante necrotizzante adj +necrotizzanti necrotizzante adj +necrotizzare necrotizzare ver +necrotizzata necrotizzare ver +necrotizzate necrotizzare ver +necrotizzati necrotizzare ver +necrotizzato necrotizzare ver +necton necton nom +neerlandesi neerlandese adj +nefanda nefando adj +nefande nefando adj +nefandezza nefandezza nom +nefandezze nefandezza nom +nefandi nefando adj +nefando nefando adj +nefasta nefasto adj +nefaste nefasto adj +nefasti nefasto adj +nefasto nefasto adj +nefelometria nefelometria nom +nefrite nefrite nom +nefriti nefrite nom +nefritica nefritico adj +nefritiche nefritico adj +nefritico nefritico adj +nefropatia nefropatia nom +nefropatie nefropatia nom +nefrosi nefrosi nom +nega negare ver +negabile negabile adj +negabili negabile adj +negaci negare ver +negai negare ver +negala negare ver +negami negare ver +negando negare ver +negandogli negare ver +negandola negare ver +negandole negare ver +negandoli negare ver +negandolo negare ver +negandomi negare ver +negandone negare ver +negandosi negare ver +negano negare ver +negar negare ver +negarci negare ver +negare negare ver +negargli negare ver +negargliela negare ver +negarglielo negare ver +negarla negare ver +negarle negare ver +negarli negare ver +negarlo negare ver +negarmi negare ver +negarne negare ver +negarono negare ver +negarsi negare ver +negarti negare ver +negasi negare ver +negasse negare ver +negassero negare ver +negassi negare ver +negassimo negare ver +negata negare ver +negate negato adj +negategli negare ver +negati negare ver +negativa negativo adj +negativamente negativamente adv +negative negativo adj +negativi negativo adj +negatività negatività nom +negativo negativo adj +negato negare ver +negatore negatore adj +negatori negatore adj +negatrice negatore adj +negatrici negatore adj +negava negare ver +negavano negare ver +negavo negare ver +negazione negazione nom +negazioni negazione nom +negazionismo negazionismo nom +negazioniste negazionista nom +negherai negare ver +negheranno negare ver +negherebbe negare ver +negherebbero negare ver +negherei negare ver +negheremo negare ver +negherete negare ver +negherà negare ver +negherò negare ver +neghi negare ver +neghiamo negare ver +neghino negare ver +neghittosa neghittoso nom +neghittosi neghittoso nom +neglesse negligere ver +negletta negligere ver +neglette negligere ver +negletti negligere ver +negletto negligere ver +negli nel pre +negligente negligente adj +negligenti negligente adj +negligenza negligenza nom +negligenze negligenza nom +negligere negligere ver +nego negare ver +negozi negozio nom +negozia negoziare ver +negoziabile negoziabile adj +negoziabili negoziabile adj +negoziabilità negoziabilità nom +negoziale negoziale adj +negoziali negoziale adj +negoziando negoziare ver +negoziandone negoziare ver +negoziano negoziare ver +negoziante negoziante nom +negozianti negoziante nom +negoziare negoziare ver +negoziarne negoziare ver +negoziarono negoziare ver +negoziarsi negoziare ver +negoziasse negoziare ver +negoziata negoziare ver +negoziate negoziare ver +negoziati negoziato nom +negoziato negoziato nom +negoziatore negoziatore nom +negoziatori negoziatore nom +negoziatrice negoziatore nom +negoziava negoziare ver +negoziavano negoziare ver +negoziazione negoziazione nom +negoziazioni negoziazione nom +negozierà negoziare ver +negozio negozio nom +negoziò negoziare ver +negra negro adj +negre negro adj +negri negro adj +negride negride adj +negridi negride adj +negriera negriere nom +negriere negriere nom +negrieri negriere nom +negrito negrito nom +negritudine negritudine nom +negro negro adj +negroide negroide adj +negroidi negroide adj +negromante negromante nom +negromanti negromante nom +negromantica negromantico adj +negromantiche negromantico adj +negromantici negromantico adj +negromantico negromantico adj +negromanzia negromanzia nom +negus negus nom +negò negare ver +nei nel pre +nel nel pre +nell nell sw +nella nel pre +nelle nel pre +nello nel pre +nematodi nematodi nom +nembi nembo nom +nembo nembo nom +nembostrati nembostrato nom +nembostrato nembostrato nom +nemesi nemesi nom +nemica nemico adj +nemiche nemico adj +nemici nemico nom +nemico nemico nom +nemmanco nemmanco adv +nemmeno nemmeno adv_sup +nenia nenia nom +nenie nenia nom +neo neo pre +neocapitalismo neocapitalismo nom +neocapitalista neocapitalista adj +neocapitalistica neocapitalistico adj +neocapitalistico neocapitalistico adj +neoclassica neoclassico adj +neoclassiche neoclassico adj +neoclassici neoclassico adj +neoclassicismo neoclassicismo nom +neoclassicista neoclassicista nom +neoclassiciste neoclassicista nom +neoclassicisti neoclassicista nom +neoclassico neoclassico adj +neodimi neodimio nom +neodimio neodimio nom +neofascismo neofascismo nom +neofascista neofascista adj +neofasciste neofascista adj +neofascisti neofascista adj +neofita neofita nom +neofite neofita nom +neofiti neofita nom +neofobia neofobia nom +neoformazione neoformazione nom +neoformazioni neoformazione nom +neogene neogene nom +neogreca neogreco adj +neogreche neogreco adj +neogreci neogreco adj +neogreco neogreco adj +neoguelfa neoguelfo adj +neoguelfe neoguelfo adj +neoguelfi neoguelfo adj +neoguelfismo neoguelfismo nom +neoguelfo neoguelfo adj +neolatina neolatino adj +neolatine neolatino adj +neolatini neolatino adj +neolatino neolatino adj +neolaureata neolaureato adj +neolaureati neolaureato nom +neolaureato neolaureato nom +neolitica neolitico adj +neolitiche neolitico adj +neolitici neolitico adj +neolitico neolitico nom +neologismi neologismo nom +neologismo neologismo nom +neon neon nom +neonata neonato adj +neonatale neonatale adj +neonate neonato adj +neonati neonato nom +neonato neonato adj +neonazista neonazista adj +neonazisti neonazista adj +neoplasia neoplasia nom +neoplasiche neoplasico adj +neoplasico neoplasico adj +neoplasie neoplasia nom +neoplasma neoplasma nom +neoplatonica neoplatonico adj +neoplatoniche neoplatonico adj +neoplatonici neoplatonico adj +neoplatonico neoplatonico adj +neoplatonismo neoplatonismo nom +neopositivismo neopositivismo nom +neoprene neoprene nom +neoproletariato neoproletariato nom +neorealismo neorealismo nom +neorealista neorealista adj +neorealiste neorealista adj +neorealisti neorealista adj +neorealistica neorealistico adj +neorealistiche neorealistico adj +neorealistici neorealistico adj +neorealistico neorealistico adj +neoscolastica neoscolastica nom +neotomismo neotomismo nom +neotomista neotomista adj +neotomisti neotomista adj +neozelandese neozelandese adj +neozelandesi neozelandese adj +neozoica neozoico adj +neozoico neozoico nom +nepalese nepalese adj +nepalesi nepalese adj +nepente nepente nom +nepotismi nepotismo nom +nepotismo nepotismo nom +nepotista nepotista adj +nepotiste nepotista adj +nepotistica nepotistico adj +nepotistiche nepotistico adj +nepotistici nepotistico adj +nepotistico nepotistico adj +neppure neppure adv_sup +nequizia nequizia nom +nequizie nequizia nom +nera nero adj +nerastra nerastro adj +nerastre nerastro adj +nerastri nerastro adj +nerastro nerastro adj +nerbata nerbata nom +nerbate nerbata nom +nerbi nerbo nom +nerbo nerbo nom +nerboruta nerboruto adj +nerborute nerboruto adj +nerboruti nerboruto adj +nerboruto nerboruto adj +nere nero adj +nereggiante nereggiare ver +nereggianti nereggiare ver +nereide nereide nom +nereidi nereide nom +neretti neretto nom +neretto neretto nom +nerezza nerezza nom +neri nero adj +nericce nericcio adj +nericcia nericcio adj +nericcio nericcio adj +nero nero adj +nerofumo nerofumo nom +neroli neroli nom +nerume nerume nom +nerumi nerume nom +nerva nervo nom +nervatura nervatura nom +nervature nervatura nom +nerve nervo nom +nervi nervo nom +nervina nervino adj +nervine nervino adj +nervini nervino adj +nervino nervino adj +nervo nervo nom +nervosa nervoso adj +nervose nervoso adj +nervosi nervoso adj +nervosismi nervosismo nom +nervosismo nervosismo nom +nervosità nervosità nom +nervoso nervoso adj +nesci nesci nom +nespola nespola nom +nespole nespola nom +nespoli nespolo nom +nespolo nespolo nom +nessi nesso nom +nesso nesso nom +nessun nessuno adj_sup +nessuna nessuno pro +nessune nessuno pro +nessuni nessuno pro +nessuno nessuno adj_sup +net net sw +netta netto adj +nettamente nettamente adv +nettar nettare ver +nettare nettare nom +nettarei nettareo adj +nettari nettare nom +nettarine nettarina nom +nette netto adj +nettezza nettezza nom +netti netto adj +netto netto adj +nettunio nettunio nom +nettuno nettuno nom +netturbini netturbino nom +netturbino netturbino nom +network network nom +neuma neuma nom +neumi neuma nom +neurale neurale adj +neurali neurale adj +neurastenia neurastenia nom +neurinoma neurinoma nom +neurinomi neurinoma nom +neurite neurite nom +neuriti neurite nom +neuro neuro nom +neurobiologia neurobiologia nom +neurochirurgia neurochirurgia nom +neurochirurgico neurochirurgico adj +neurochirurgie neurochirurgia nom +neurochirurgo neurochirurgo nom +neurodegenerative neurodegenerativo adj +neurolettici neurolettico nom +neurolettico neurolettico nom +neurologi neurologo nom +neurologia neurologia nom +neurologica neurologico adj +neurologiche neurologico adj +neurologici neurologico adj +neurologico neurologico adj +neurologie neurologia nom +neurologo neurologo nom +neuronali neuronale adj +neurone neurone nom +neuroni neurone nom +neuropatia neuropatia nom +neuropatica neuropatico adj +neuropatiche neuropatico adj +neuropatico neuropatico adj +neuropatie neuropatia nom +neuropatologia neuropatologia nom +neuropatologico neuropatologico adj +neuropatologie neuropatologia nom +neuropatologo neuropatologo nom +neuropsichiatria neuropsichiatria nom +neurosi neurosi nom +neurotica neurotico adj +neurotiche neurotico adj +neurotici neurotico adj +neurotico neurotico adj +neurotropi neurotropo nom +neurotropo neurotropo nom +neurovegetativa neurovegetativo adj +neurovegetative neurovegetativo adj +neurovegetativi neurovegetativo adj +neurovegetativo neurovegetativo adj +neustria neustria nom +neustrie neustria nom +neutra neutro adj +neutrale neutrale adj +neutrali neutrale adj +neutralismo neutralismo nom +neutralista neutralista adj +neutraliste neutralista adj +neutralisti neutralista nom +neutralità neutralità nom +neutralizza neutralizzare ver +neutralizzabile neutralizzabile adj +neutralizzabili neutralizzabile adj +neutralizzando neutralizzare ver +neutralizzandola neutralizzare ver +neutralizzandole neutralizzare ver +neutralizzandoli neutralizzare ver +neutralizzandolo neutralizzare ver +neutralizzandone neutralizzare ver +neutralizzano neutralizzare ver +neutralizzante neutralizzare ver +neutralizzanti neutralizzare ver +neutralizzare neutralizzare ver +neutralizzarla neutralizzare ver +neutralizzarle neutralizzare ver +neutralizzarli neutralizzare ver +neutralizzarlo neutralizzare ver +neutralizzarne neutralizzare ver +neutralizzarono neutralizzare ver +neutralizzasse neutralizzare ver +neutralizzata neutralizzare ver +neutralizzate neutralizzare ver +neutralizzati neutralizzare ver +neutralizzato neutralizzare ver +neutralizzava neutralizzare ver +neutralizzavano neutralizzare ver +neutralizzazione neutralizzazione nom +neutralizzazioni neutralizzazione nom +neutralizzerebbe neutralizzare ver +neutralizzerà neutralizzare ver +neutralizzi neutralizzare ver +neutralizzino neutralizzare ver +neutralizzo neutralizzare ver +neutralizzò neutralizzare ver +neutre neutro adj +neutri neutro adj +neutrini neutrino nom +neutrino neutrino nom +neutro neutro adj +neutrone neutrone nom +neutroni neutrone nom +nevai nevaio nom +nevaio nevaio nom +nevati nevato adj +nevato nevato adj +neve neve nom +nevi neve nom +nevica nevicare ver +nevicando nevicare ver +nevicare nevicare ver +nevicasse nevicare ver +nevicata nevicata nom +nevicate nevicata nom +nevicati nevicare ver +nevicato nevicare ver +nevicava nevicare ver +nevicherà nevicare ver +nevichi nevicare ver +nevicò nevicare ver +nevischi nevischio nom +nevischio nevischio nom +nevosa nevoso adj +nevose nevoso adj +nevosi nevoso adj +nevosità nevosità nom +nevoso nevoso adj +nevralgia nevralgia nom +nevralgica nevralgico adj +nevralgiche nevralgico adj +nevralgici nevralgico adj +nevralgico nevralgico adj +nevralgie nevralgia nom +nevrasse nevrasse nom +nevrastenia nevrastenia nom +nevrastenica nevrastenico adj +nevrasteniche nevrastenico adj +nevrastenici nevrastenico adj +nevrastenico nevrastenico adj +nevrite nevrite nom +nevriti nevrite nom +nevrosi nevrosi nom +nevrotica nevrotico adj +nevrotiche nevrotico adj +nevrotici nevrotico adj +nevrotico nevrotico adj +nevvero nevvero int +newton newton nom +newyorchese newyorchese adj +newyorchesi newyorchese adj +newyorkese newyorkese adj +newyorkesi newyorkese adj +nibbi nibbio nom +nibbio nibbio nom +nicaraguese nicaraguese adj +nicchi nicchio nom +nicchia nicchia nom +nicchiare nicchiare ver +nicchiata nicchiare ver +nicchiato nicchiare ver +nicchiava nicchiare ver +nicchie nicchia nom +nicchio nicchio nom +nicchiò nicchiare ver +nichel nichel nom +nichelata nichelare ver +nichelate nichelare ver +nichelati nichelare ver +nichelato nichelare ver +nichelatura nichelatura nom +nichelcromo nichelcromo nom +nicheli nichelio nom +nichelini nichelino nom +nichelino nichelare ver +nichelio nichelio nom +nichilismo nichilismo nom +nichilista nichilista adj +nichiliste nichilista adj +nichilisti nichilista adj +nickel nickel nom +nicol nicol nom +nicotina nicotina nom +nicotine nicotina nom +nictalopia nictalopia nom +nictofobia nictofobia nom +nicturia nicturia nom +nidi nido nom +nidiacei nidiaceo adj +nidiaceo nidiaceo adj +nidiata nidiata nom +nidiate nidiata nom +nidifica nidificare ver +nidificando nidificare ver +nidificano nidificare ver +nidificante nidificare ver +nidificanti nidificare ver +nidificare nidificare ver +nidificasse nidificare ver +nidificassero nidificare ver +nidificata nidificare ver +nidificate nidificare ver +nidificati nidificare ver +nidificato nidificare ver +nidificava nidificare ver +nidificavano nidificare ver +nidificazione nidificazione nom +nidifichi nidificare ver +nidifichino nidificare ver +nido nido nom +niella niellare ver +niellate niellare ver +niellati niellare ver +niellato niellare ver +niellatori niellatore nom +niellatura niellatura nom +nielli niello nom +niello niello nom +niente niente adv_sup +nientedimeno nientedimeno adv +nientemeno nientemeno adv +nife nife nom +nigeriana nigeriano adj +nigeriane nigeriano adj +nigeriani nigeriano adj +nigeriano nigeriano adj +night night nom +nigritella nigritella nom +nigritelle nigritella nom +nimbata nimbato adj +nimbati nimbato adj +nimbato nimbato adj +nimbi nimbo nom +nimbo nimbo nom +ninfa ninfa nom +ninfale ninfale adj +ninfali ninfale adj +ninfe ninfa nom +ninfea ninfea nom +ninfeacee ninfeacee nom +ninfee ninfea nom +ninfei ninfeo nom +ninfeo ninfeo nom +ninfetta ninfetta nom +ninfette ninfetta nom +ninfomane ninfomane nom +ninfomani ninfomane nom +ninfomania ninfomania nom +ninna ninna nom +ninnananna ninnananna nom +ninnananne ninnananna nom +ninne ninna nom +ninni ninnare ver +ninno ninnare ver +ninnoli ninnolo nom +ninnolo ninnolo nom +niobi niobio nom +niobio niobio nom +nipote nipote nom +nipoti nipote nom +nipponica nipponico adj +nipponiche nipponico adj +nipponici nipponico adj +nipponico nipponico adj +nirvana nirvana nom +nirvanica nirvanico adj +nitida nitido adj +nitide nitido adj +nitidezza nitidezza nom +nitidi nitido adj +nitido nitido adj +niton niton nom +nitore nitore nom +nitori nitore nom +nitrata nitrato adj +nitrate nitrato adj +nitrati nitrato nom +nitrato nitrato nom +nitrazione nitrazione nom +nitrendo nitrire ver +nitri nitro nom +nitrica nitrico adj +nitrici nitrico adj +nitrico nitrico adj +nitrificazione nitrificazione nom +nitrire nitrire ver +nitrisce nitrire ver +nitriscono nitrire ver +nitrite nitrire ver +nitriti nitrito nom +nitrito nitrito nom +nitro nitro nom +nitrocellulosa nitrocellulosa nom +nitrocellulose nitrocellulosa nom +nitroglicerina nitroglicerina nom +nitrosa nitroso adj +nitrosi nitroso adj +nitroso nitroso adj +nitrurazione nitrurazione nom +nitrì nitrire ver +nittitante nittitante adj +nittitanti nittitante adj +niuna niuno adj +niuno niuno adj +nivale nivale adj +nivali nivale adj +nivea niveo adj +nivee niveo adj +nivei niveo adj +niveo niveo adj +no no adv_sup +nobel nobel nom +nobildonna nobildonna nom +nobildonne nobildonna nom +nobile nobile adj +nobili nobile adj +nobiliare nobiliare adj +nobiliari nobiliare adj +nobilita nobilitare ver +nobilitando nobilitare ver +nobilitandola nobilitare ver +nobilitandolo nobilitare ver +nobilitano nobilitare ver +nobilitante nobilitare ver +nobilitanti nobilitare ver +nobilitare nobilitare ver +nobilitarla nobilitare ver +nobilitarli nobilitare ver +nobilitarne nobilitare ver +nobilitarono nobilitare ver +nobilitarsi nobilitare ver +nobilitasti nobilitare ver +nobilitata nobilitare ver +nobilitate nobilitare ver +nobilitati nobilitare ver +nobilitato nobilitare ver +nobilitava nobilitare ver +nobilitazione nobilitazione nom +nobilitazioni nobilitazione nom +nobiliterà nobilitare ver +nobiliti nobilitare ver +nobilitò nobilitare ver +nobiltà nobiltà nom +nobilume nobilume nom +nobiluomini nobiluomo nom +nobiluomo nobiluomo nom +nocca nocca nom +nocche nocca nom +nocchi nocchio nom +nocchiere nocchiere nom +nocchieri nocchiere nom +nocchio nocchio nom +nocciola nocciola nom +nocciolaia nocciolaia nom +nocciolaie nocciolaia nom +nocciole nocciola nom +noccioli nocciolo nom +nocciolina nocciolina nom +noccioline nocciolina nom +nocciolo nocciolo nom +nocciuoli nocciuolo nom +noce noce nom +nocella nocella nom +nocelle nocella nom +noceti noceto nom +noceto noceto nom +noci noce nom +nocini nocino nom +nocino nocino nom +nociva nocivo adj +nocive nocivo adj +nocivi nocivo adj +nocività nocività nom +nocivo nocivo adj +nocque nuocere ver +nocquero nuocere ver +nocumento nocumento nom +nodale nodale adj +nodali nodale adj +nodelli nodello nom +nodi nodo nom +nodo nodo nom +nodosa nodoso adj +nodose nodoso adj +nodosi nodoso adj +nodosità nodosità nom +nodoso nodoso adj +nodulare nodulare adj +nodulari nodulare adj +noduli nodulo nom +nodulo nodulo nom +noi noi pro +noia noia nom +noialtri noialtri pro +noie noia nom +noiosa noioso adj +noiose noioso adj +noiosi noioso adj +noiosità noiosità nom +noioso noioso adj +noisette noisette adj +noleggerà noleggiare ver +noleggi noleggio nom +noleggia noleggiare ver +noleggiando noleggiare ver +noleggiandola noleggiare ver +noleggiano noleggiare ver +noleggiante noleggiante nom +noleggiare noleggiare ver +noleggiarla noleggiare ver +noleggiarli noleggiare ver +noleggiarlo noleggiare ver +noleggiarne noleggiare ver +noleggiarono noleggiare ver +noleggiata noleggiare ver +noleggiate noleggiare ver +noleggiati noleggiare ver +noleggiato noleggiare ver +noleggiatore noleggiatore nom +noleggiatori noleggiatore nom +noleggiatrice noleggiatore nom +noleggiava noleggiare ver +noleggiavano noleggiare ver +noleggio noleggio nom +noleggiò noleggiare ver +nolente nolente adj +nolenti nolente adj +noli nolo nom +nolo nolo nom +noma nomare ver +nomade nomade adj +nomadi nomade adj +nomadismi nomadismo nom +nomadismo nomadismo nom +nomai nomare ver +nomale nomare ver +nomali nomare ver +nomane nomare ver +nomar nomare ver +nomare nomare ver +nomata nomare ver +nomate nomare ver +nomato nomare ver +nome nome nom_sup +nomea nomea nom +nomee nomea nom +nomenclatore nomenclatore adj +nomenclatori nomenclatore nom +nomenclatura nomenclatura nom +nomenclature nomenclatura nom +nomerete nomare ver +nomi nome nom +nomignoli nomignolo nom +nomignolo nomignolo nom +nomina nomina nom +nominabile nominabile adj +nominabili nominabile adj +nominaci nominare ver +nominale nominale adj +nominali nominale adj +nominalismi nominalismo nom +nominalismo nominalismo nom +nominalista nominalista adj +nominalisti nominalista nom +nominalistica nominalistico adj +nominalistiche nominalistico adj +nominalistico nominalistico adj +nominalmente nominalmente adv +nominando nominare ver +nominandola nominare ver +nominandoli nominare ver +nominandolo nominare ver +nominandone nominare ver +nominandosi nominare ver +nominandovi nominare ver +nominano nominare ver +nominante nominare ver +nominar nominare ver +nominare nominare ver +nominargli nominare ver +nominarla nominare ver +nominarle nominare ver +nominarli nominare ver +nominarlo nominare ver +nominarmi nominare ver +nominarne nominare ver +nominarono nominare ver +nominarsi nominare ver +nominarvi nominare ver +nominasse nominare ver +nominassero nominare ver +nominata nominare ver +nominatamente nominatamente adv +nominate nominare ver +nominati nominato adj +nominativa nominativo adj +nominative nominativo adj +nominativi nominativo adj +nominatività nominatività nom +nominativo nominativo adj +nominato nominare ver +nominava nominare ver +nominavano nominare ver +nomine nomina nom +nomineranno nominare ver +nominerebbe nominare ver +nominerebbero nominare ver +nominerei nominare ver +nomineremo nominare ver +nominerà nominare ver +nominerò nominare ver +nomini nominare ver +nominiamo nominare ver +nominino nominare ver +nomino nomare ver +nominò nominare ver +nomo nomare ver +nomò nomare ver +non non adv_sup +nona nono adj +nonagenari nonagenario adj +nonagenario nonagenario adj +nonche nonche sw +nonchè nonchè con +nonché nonché con +nonconformista nonconformista adj +nonconformisti nonconformista adj +noncurante noncurante adj +noncuranti noncurante adj +noncuranza noncuranza nom +noncuranze noncuranza nom +nondimeno nondimeno adv +none nono adj +noni nono adj +nonio nonio nom +nonna nonna|nonno nom +nonne nonna|nonno nom +nonni nonno nom +nonno nonno nom +nonnulla nonnulla nom +nono nono adj +nonostante nonostante pre +nonsensi nonsenso nom +nonsenso nonsenso nom +nontiscordardimé nontiscordardimé nom +norcineria norcineria nom +norcini norcino nom +norcino norcino nom +nord nord adj +nordafricana nordafricano adj +nordafricani nordafricano adj +nordamericana nordamericano adj +nordamericane nordamericano adj +nordamericani nordamericano adj +nordamericano nordamericano adj +nordcoreana nordcoreano adj +nordcoreane nordcoreano adj +nordcoreani nordcoreano adj +nordcoreano nordcoreano adj +nordest nordest nom +nordica nordico adj +nordiche nordico adj +nordici nordico adj +nordico nordico adj +nordista nordista adj +nordiste nordista adj +nordisti nordista nom +nordoccidentale nordoccidentale adj +nordorientale nordorientale adj +nordovest nordovest nom +noria noria nom +norie noria nom +norma norma nom +normale normale adj +normali normale adj +normalità normalità nom +normalizza normalizzare ver +normalizzando normalizzare ver +normalizzandole normalizzare ver +normalizzandosi normalizzare ver +normalizzano normalizzare ver +normalizzante normalizzare ver +normalizzanti normalizzare ver +normalizzare normalizzare ver +normalizzarla normalizzare ver +normalizzarli normalizzare ver +normalizzarono normalizzare ver +normalizzarsi normalizzare ver +normalizzasse normalizzare ver +normalizzata normalizzare ver +normalizzate normalizzare ver +normalizzatesi normalizzare ver +normalizzati normalizzare ver +normalizzato normalizzare ver +normalizzava normalizzare ver +normalizzavano normalizzare ver +normalizzazione normalizzazione nom +normalizzazioni normalizzazione nom +normalizzerà normalizzare ver +normalizzi normalizzare ver +normalizziamo normalizzare ver +normalizzò normalizzare ver +normalmente normalmente adv +normanna normanno adj +normanne normanno adj +normanni normanno nom +normanno normanno adj +normativa normativa nom +normative normativa nom +normativi normativo adj +normatività normatività nom +normativo normativo adj +normazione normazione nom +normazioni normazione nom +norme norma nom +normografi normografo nom +normografo normografo nom +norvegese norvegese adj +norvegesi norvegese adj +nosocomi nosocomio nom +nosocomiale nosocomiale adj +nosocomiali nosocomiale adj +nosocomio nosocomio nom +nosografia nosografia nom +nosografie nosografia nom +nosologia nosologia nom +nosologie nosologia nom +nossignore nossignore int +nostalgia nostalgia nom +nostalgica nostalgico adj +nostalgiche nostalgico adj +nostalgici nostalgico adj +nostalgico nostalgico adj +nostalgie nostalgia nom +nostra nostro pro +nostrale nostrale adj +nostrali nostrale adj +nostrana nostrano adj +nostrane nostrano adj +nostrani nostrano adj +nostrano nostrano adj +nostre nostro pro +nostri nostro pro +nostro nostro pro +nostromi nostromo nom +nostromo nostromo nom +nota noto adj +notabilato notabilato adj +notabile notabile adj +notabili notabile adj +notabilità notabilità nom +notaci notare ver +notai notaio nom +notaio notaio nom +notale notare ver +notalo notare ver +notammo notare ver +notando notare ver +notandola notare ver +notandolo notare ver +notandone notare ver +notandosi notare ver +notandovi notare ver +notano notare ver +notante notare ver +notar notare ver +notare notare ver +notaresco notaresco adj +notariati notariato nom +notariato notariato nom +notarile notarile adj +notarili notarile adj +notarla notare ver +notarle notare ver +notarli notare ver +notarlo notare ver +notarne notare ver +notarono notare ver +notarsi notare ver +notasi notare ver +notasse notare ver +notassero notare ver +notassi notare ver +notaste notare ver +notata notare ver +notate notare ver +notati notare ver +notato notare ver +notava notare ver +notavamo notare ver +notavano notare ver +notavi notare ver +notavo notare ver +notazione notazione nom +notazioni notazione nom +note noto adj +noterai notare ver +noteranno notare ver +noterebbe notare ver +noterebbero notare ver +noterei notare ver +noteremmo notare ver +noteremo notare ver +notereste notare ver +noteresti notare ver +noterete notare ver +noterà notare ver +noterò notare ver +notes notes nom +notevole notevole adj +notevoli notevole adj +notevolissima notevolissimo adj +notevolissimo notevolissimo adj +notevolmente notevolmente adv +noti noto adj +notiamo notare ver +notifica notifica nom +notificaci notificare ver +notificando notificare ver +notificandogli notificare ver +notificandolo notificare ver +notificano notificare ver +notificante notificare ver +notificare notificare ver +notificargli notificare ver +notificarla notificare ver +notificarlo notificare ver +notificarmi notificare ver +notificarono notificare ver +notificarsi notificare ver +notificata notificare ver +notificate notificare ver +notificati notificare ver +notificato notificare ver +notificava notificare ver +notificazione notificazione nom +notificazioni notificazione nom +notifiche notifica nom +notificherà notificare ver +notificherò notificare ver +notifichi notificare ver +notifichiamo notificare ver +notifico notificare ver +notificò notificare ver +notino notare ver +notizia notizia nom +notiziari notiziario nom +notiziario notiziario nom +notizie notizia nom +noto noto adj +notocorda notocorda nom +notocorde notocorda nom +notori notorio adj +notoria notorio adj +notoriamente notoriamente adv +notorie notorio adj +notorietà notorietà nom +notorio notorio adj +nottambula nottambulo nom +nottambuli nottambulo adj +nottambulo nottambulo adj +nottata nottata nom +nottate nottata nom +notte notte nom +nottetempo nottetempo adv +notti notte nom +nottola nottola nom +nottole nottola nom +nottolini nottolino nom +nottolino nottolino nom +nottolone nottolone nom +nottua nottua nom +nottue nottua nom +notturna notturno adj +notturne notturno adj +notturni notturno adj +notturno notturno adj +notula notula nom +notule notula nom +notò notare ver +noumeni noumeno nom +noumeno noumeno nom +nova nova nom +novanta novanta adj +novantenne novantenne adj +novantenni novantenne adj +novantennio novantennio nom +novantesima novantesimo adj +novantesimo novantesimo adj +novantina novantina nom +novantotto novantotto adj +novantuno novantuno adj +novatore novatore adj +novatori novatore nom +novatrici novatore adj +novazione novazione nom +nove nove adj_sup +novecentesca novecentesco adj +novecentesche novecentesco adj +novecenteschi novecentesco adj +novecentesco novecentesco adj +novecentismo novecentismo nom +novecentista novecentista adj +novecentisti novecentista adj +novecento novecento nom +novella novello adj +novellame novellame nom +novellando novellare ver +novellano novellare ver +novellare novellare ver +novellata novellare ver +novellate novellare ver +novellato novellare ver +novellatore novellatore nom +novellatori novellatore nom +novellatrici novellatore nom +novelle novella nom +novelletta novelletta nom +novellette novelletta nom +novelli novello adj +novelliere novelliere nom +novellieri novelliere nom +novellina novellino adj +novelline novellino adj +novellini novellino adj +novellino novellino adj +novellista novellista nom +novellisti novellista nom +novellistica novellistica nom +novellistiche novellistica nom +novello novello adj +novembre novembre nom +novembrina novembrino adj +novembrine novembrino adj +novembrini novembrino adj +novembrino novembrino adj +novena novena nom +novenari novenario nom +novenario novenario nom +novendiale novendiale adj +novendiali novendiale adj +novene novena nom +novennale novennale adj +novennali novennale adj +novenne novenne adj +novera noverare ver +novero novero nom +noviluni novilunio nom +novilunio novilunio nom +novissima novissimo adj +novissime novissimo adj +novissimi novissimo adj +novissimo novissimo adj +novità novità nom +novizi novizio nom +novizia novizia|novizio nom +noviziati noviziato nom +noviziato noviziato nom +novizie novizia|novizio nom +novizio novizio nom +novocaina novocaina nom +novocaine novocaina nom +nozionale nozionale adj +nozione nozione nom +nozioni nozione nom +nozionismo nozionismo nom +nozionistica nozionistico adj +nozionistiche nozionistico adj +nozionistici nozionistico adj +nozionistico nozionistico adj +nozze nozze nom +nube nube nom +nubi nube nom +nubifragi nubifragio nom +nubifragio nubifragio nom +nubilato nubilato nom +nubile nubile adj +nubili nubile adj +nuca nuca nom +nuche nuca nom +nucleare nucleare adj +nucleari nucleare adj +nuclei nucleo nom +nucleica nucleico adj +nucleici nucleico adj +nucleico nucleico adj +nucleina nucleina nom +nucleo nucleo nom +nucleoli nucleolo nom +nucleolo nucleolo nom +nucleone nucleone nom +nucleoni nucleone nom +nucleoplasma nucleoplasma nom +nuclide nuclide nom +nuclidi nuclide nom +nuda nudo adj +nude nudo adj +nudi nudo adj +nudismi nudismo nom +nudismo nudismo nom +nudista nudista adj +nudiste nudista adj +nudisti nudista nom +nudità nudità nom +nudo nudo adj +nugoli nugolo nom +nugolo nugolo nom +nulla nulla adv_sup +nulladimeno nulladimeno adv +nullaosta nullaosta nom +nullatenente nullatenente adj +nullatenenti nullatenente adj +nulle nullo adj +nulli nullo adj +nullità nullità nom +nullo nullo adj +nume nume nom +numera numerare ver +numerabile numerabile adj +numerabili numerabile adj +numeraci numerare ver +numerale numerale adj +numerali numerale adj +numerando numerare ver +numerandole numerare ver +numerandoli numerare ver +numerandosi numerare ver +numerano numerare ver +numerar numerare ver +numerare numerare ver +numerarla numerare ver +numerarle numerare ver +numerarli numerare ver +numerarono numerare ver +numerata numerare ver +numerate numerato adj +numerati numerare ver +numerato numerare ver +numeratore numeratore nom +numeratori numeratore nom +numerava numerare ver +numeravano numerare ver +numeravi numerare ver +numerazione numerazione nom +numerazioni numerazione nom +numererà numerare ver +numeri numero nom +numerica numerico adj +numericamente numericamente adv +numeriche numerico adj +numerici numerico adj +numerico numerico adj +numerino numerare ver +numerizzazione numerizzazione nom +numero numero nom +numerosa numeroso adj +numerose numeroso adj +numerosi numeroso adj +numerosissime numerosissimo adj +numerosissimi numerosissimo adj +numerosità numerosità nom +numeroso numeroso adj +numerò numerare ver +numi nume nom +numismatica numismatico adj +numismatiche numismatico adj +numismatici numismatico adj +numismatico numismatico adj +nummulite nummulite nom +nummuliti nummulite nom +nummulitica nummulitico adj +nummulitici nummulitico adj +nummulitico nummulitico adj +nundine nundine nom +nunzi nunzio nom +nunziatura nunziatura nom +nunziature nunziatura nom +nunzio nunzio nom +nuoccia nuocere ver +nuocciono nuocere ver +nuoce nuocere ver +nuocendo nuocere ver +nuoceranno nuocere ver +nuocerci nuocere ver +nuocere nuocere ver +nuocerebbe nuocere ver +nuocerebbero nuocere ver +nuocergli nuocere ver +nuocerle nuocere ver +nuocerti nuocere ver +nuocerà nuocere ver +nuocerò nuocere ver +nuocesse nuocere ver +nuoceva nuocere ver +nuocevano nuocere ver +nuoci nuocere ver +nuociuto nuocere ver +nuora nuora nom +nuore nuora nom +nuota nuotare ver +nuotando nuotare ver +nuotano nuotare ver +nuotante nuotare ver +nuotanti nuotare ver +nuotar nuotare ver +nuotarci nuotare ver +nuotare nuotare ver +nuotargli nuotare ver +nuotarono nuotare ver +nuotasse nuotare ver +nuotassero nuotare ver +nuotata nuotata nom +nuotate nuotata nom +nuotati nuotare ver +nuotato nuotare ver +nuotatore nuotatore nom +nuotatori nuotatore nom +nuotatrice nuotatore nom +nuotatrici nuotatore nom +nuotava nuotare ver +nuotavano nuotare ver +nuoteranno nuotare ver +nuoterebbe nuotare ver +nuoterebbero nuotare ver +nuoterà nuotare ver +nuoti nuoto nom +nuotino nuotare ver +nuoto nuoto nom +nuotò nuotare ver +nuova nuovo adj +nuovamente nuovamente adv +nuove nuovo adj +nuovi nuovo adj_sup +nuovissimo nuovissimo adj +nuovo nuovo adj_sup +nuraghe nuraghe nom +nuraghi nuraghe nom +nuragica nuragico adj +nuragiche nuragico adj +nuragici nuragico adj +nuragico nuragico adj +nurse nurse nom +nursery nursery nom +nursing nursing nom +nutazione nutazione nom +nutazioni nutazione nom +nutra nutrire ver +nutrano nutrire ver +nutre nutrire ver +nutrendo nutrire ver +nutrendoci nutrire ver +nutrendola nutrire ver +nutrendoli nutrire ver +nutrendolo nutrire ver +nutrendosene nutrire ver +nutrendosi nutrire ver +nutri nutrire ver +nutria nutria nom +nutriamo nutrire ver +nutrica nutricare ver +nutricati nutricare ver +nutrice nutrice nom +nutrici nutrice nom +nutrie nutria nom +nutriente nutriente adj +nutrienti nutriente adj +nutrimenti nutrimento nom +nutrimento nutrimento nom +nutrimi nutrire ver +nutrirai nutrire ver +nutriranno nutrire ver +nutrirci nutrire ver +nutrire nutrire ver +nutrirebbe nutrire ver +nutrirebbero nutrire ver +nutrirei nutrire ver +nutriremo nutrire ver +nutrirla nutrire ver +nutrirle nutrire ver +nutrirli nutrire ver +nutrirlo nutrire ver +nutrirono nutrire ver +nutrirsene nutrire ver +nutrirsi nutrire ver +nutrirti nutrire ver +nutrirà nutrire ver +nutrisi nutrire ver +nutrisse nutrire ver +nutrissero nutrire ver +nutrita nutrito adj +nutrite nutrire ver +nutritelo nutrire ver +nutriti nutrire ver +nutritiva nutritivo adj +nutritive nutritivo adj +nutritivi nutritivo adj +nutritivo nutritivo adj +nutrito nutrito adj +nutritore nutritore nom +nutriva nutrire ver +nutrivano nutrire ver +nutrivi nutrire ver +nutrivo nutrire ver +nutrizionale nutrizionale adj +nutrizionali nutrizionale adj +nutrizione nutrizione nom +nutrizioni nutrizione nom +nutrizionista nutrizionista nom +nutrizioniste nutrizionista nom +nutrizionisti nutrizionista nom +nutro nutrire ver +nutrono nutrire ver +nutrì nutrire ver +nuvola nuvolo adj +nuvolaglia nuvolaglia nom +nuvole nuvola nom +nuvoli nuvolo adj +nuvolo nuvolo adj +nuvolosa nuvoloso adj +nuvolose nuvoloso adj +nuvolosi nuvoloso adj +nuvolosità nuvolosità nom +nuvoloso nuvoloso adj +nuziale nuziale adj +nuziali nuziale adj +nuzialità nuzialità nom +nylon nylon nom +nè nè con +né né con +nécessaire nécessaire nom +négligé négligé nom +o o con +oasi oasi nom +obbedendo obbedire ver +obbediamo obbedire ver +obbediente obbedire ver +obbedienti obbedire ver +obbedienza obbedienza nom +obbedienze obbedienza nom +obbedii obbedire ver +obbedir obbedire ver +obbediranno obbedire ver +obbedire obbedire ver +obbedirebbero obbedire ver +obbedirei obbedire ver +obbedirgli obbedire ver +obbedirle obbedire ver +obbedirmi obbedire ver +obbedirono obbedire ver +obbedirà obbedire ver +obbedirò obbedire ver +obbedisca obbedire ver +obbediscano obbedire ver +obbedisce obbedire ver +obbedisci obbedire ver +obbediscimi obbedire ver +obbedisco obbedire ver +obbediscono obbedire ver +obbedisse obbedire ver +obbedissero obbedire ver +obbedite obbedire ver +obbedito obbedire ver +obbediva obbedire ver +obbedivano obbedire ver +obbedivo obbedire ver +obbedì obbedire ver +obbietta obbiettare ver +obbiettano obbiettare ver +obbiettare obbiettare ver +obbiettarono obbiettare ver +obbiettato obbiettare ver +obbietti obbiettare ver +obbiettivi obbiettivo nom +obbiettivo obbiettivo nom +obbietto obbiettare ver +obbiettò obbiettare ver +obbliga obbligare ver +obbligando obbligare ver +obbligandola obbligare ver +obbligandole obbligare ver +obbligandoli obbligare ver +obbligandolo obbligare ver +obbligandomi obbligare ver +obbligandosi obbligare ver +obbligandoti obbligare ver +obbligano obbligare ver +obbligante obbligare ver +obbliganti obbligare ver +obbligarci obbligare ver +obbligare obbligare ver +obbligarla obbligare ver +obbligarle obbligare ver +obbligarli obbligare ver +obbligarlo obbligare ver +obbligarmi obbligare ver +obbligarne obbligare ver +obbligarono obbligare ver +obbligarsi obbligare ver +obbligarti obbligare ver +obbligarvi obbligare ver +obbligasse obbligare ver +obbligassero obbligare ver +obbligassimo obbligare ver +obbligata obbligare ver +obbligate obbligare ver +obbligati obbligare ver +obbligatissimo obbligatissimo adj +obbligato obbligare ver +obbligatori obbligatorio adj +obbligatoria obbligatorio adj +obbligatoriamente obbligatoriamente adv +obbligatorie obbligatorio adj +obbligatorietà obbligatorietà nom +obbligatorio obbligatorio adj +obbligava obbligare ver +obbligavano obbligare ver +obbligazionari obbligazionario adj +obbligazionaria obbligazionario adj +obbligazionarie obbligazionario adj +obbligazionario obbligazionario adj +obbligazione obbligazione nom +obbligazioni obbligazione nom +obbligheranno obbligare ver +obbligherebbe obbligare ver +obbligherebbero obbligare ver +obbligherei obbligare ver +obbligherà obbligare ver +obblighi obbligo nom +obblighiamo obbligare ver +obblighino obbligare ver +obbligo obbligo nom +obbligò obbligare ver +obbrobri obbrobrio nom +obbrobrio obbrobrio nom +obbrobriosa obbrobrioso adj +obbrobriose obbrobrioso adj +obbrobriosi obbrobrioso adj +obbrobrioso obbrobrioso adj +obelischi obelisco nom +obelisco obelisco nom +obera oberare ver +oberare oberare ver +oberata oberare ver +oberate oberare ver +oberati oberare ver +oberato oberare ver +oberi oberare ver +obesa obeso adj +obese obeso adj +obesi obeso adj +obesità obesità nom +obeso obeso adj +obi obi nom +obice obice nom +obici obice nom +obietta obiettare ver +obiettai obiettare ver +obiettando obiettare ver +obiettano obiettare ver +obiettare obiettare ver +obiettarono obiettare ver +obiettasse obiettare ver +obiettata obiettare ver +obiettate obiettare ver +obiettato obiettare ver +obiettava obiettare ver +obiettavano obiettare ver +obietteranno obiettare ver +obietterebbe obiettare ver +obietterei obiettare ver +obietterà obiettare ver +obietti obiettare ver +obiettino obiettare ver +obiettiva obiettivo adj +obiettivamente obiettivamente adv +obiettive obiettivo adj +obiettivi obiettivo nom +obiettività obiettività nom +obiettivo obiettivo nom +obietto obiettare ver +obiettore obiettore nom +obiettori obiettore nom +obiettò obiettare ver +obiezione obiezione nom +obiezioni obiezione nom +obito obito nom +obitori obitorio nom +obitorio obitorio nom +oblata oblato nom +oblate oblato nom +oblati oblato nom +oblato oblato nom +oblatore oblatore nom +oblatori oblatore nom +oblazione oblazione nom +oblazioni oblazione nom +obli oblò nom +oblia obliare ver +obliando obliare ver +obliano obliare ver +obliare obliare ver +obliarsi obliare ver +obliata obliare ver +obliate obliare ver +obliati obliare ver +obliato obliare ver +oblierò obliare ver +oblii oblio nom +oblino obliare ver +oblio oblio nom +obliosa oblioso adj +obliqua obliquo adj +oblique obliquo adj +obliqui obliquo adj +obliquità obliquità nom +obliquo obliquo adj +oblitera obliterare ver +obliterando obliterare ver +obliterano obliterare ver +obliterante obliterare ver +obliteranti obliterare ver +obliterare obliterare ver +obliterarsi obliterare ver +obliterata obliterare ver +obliterate obliterare ver +obliterati obliterare ver +obliterato obliterare ver +obliteratore obliteratore adj +obliteratori obliteratore adj +obliteratrice obliteratore adj +obliteratrici obliteratore adj +obliterazione obliterazione nom +obliterazioni obliterazione nom +obliterò obliterare ver +obliò obliare ver +oblunga oblungo adj +oblunghe oblungo adj +oblunghi oblungo adj +oblungo oblungo adj +oblò oblò nom +obnubilamento obnubilamento nom +obnubilare obnubilare ver +obnubilata obnubilare ver +obnubilate obnubilare ver +obnubilati obnubilare ver +obnubilato obnubilare ver +obnubilazione obnubilazione nom +oboe oboe nom +oboi oboe nom +oboista oboista nom +oboisti oboista nom +oboli obolo nom +obolo obolo nom +obsolescente obsolescente adj +obsolescenti obsolescente adj +obsolescenza obsolescenza nom +obsolescenze obsolescenza nom +obsoleta obsoleto adj +obsolete obsoleto adj +obsoleti obsoleto adj +obsoleto obsoleto adj +oc oc adv +oca oca nom +ocarina ocarina nom +ocarine ocarina nom +occasi occaso nom +occasionale occasionale adj +occasionali occasionale adj +occasionalismo occasionalismo nom +occasionalmente occasionalmente adv +occasionare occasionare ver +occasionata occasionare ver +occasionate occasionare ver +occasionati occasionare ver +occasionato occasionare ver +occasione occasione nom +occasioni occasione nom +occasionò occasionare ver +occaso occaso nom +occhi occhio nom +occhiaia occhiaia nom +occhiaie occhiaia nom +occhialaio occhialaio nom +occhiale occhiale nom +occhialeria occhialeria nom +occhialerie occhialeria nom +occhialetti occhialetto nom +occhiali occhiale|occhiali nom +occhialini occhialino nom +occhialino occhialino nom +occhialuta occhialuto adj +occhialute occhialuto adj +occhialuti occhialuto adj +occhialuto occhialuto adj +occhiata occhiata nom +occhiate occhiata nom +occhiati occhiato adj +occhiato occhiato adj +occhiazzurri occhiazzurro adj +occhieggia occhieggiare ver +occhieggiando occhieggiare ver +occhieggiano occhieggiare ver +occhieggiare occhieggiare ver +occhieggiato occhieggiare ver +occhielli occhiello nom +occhiello occhiello nom +occhietti occhietto nom +occhietto occhietto nom +occhini occhino nom +occhino occhino nom +occhio occhio nom +occhiolini occhiolino nom +occhiolino occhiolino nom +occhiuta occhiuto adj +occhiute occhiuto adj +occhiuti occhiuto adj +occhiuto occhiuto adj +occidentale occidentale adj +occidentali occidentale adj +occidentalismo occidentalismo nom +occidentalizzante occidentalizzare ver +occidentalizzanti occidentalizzare ver +occidentalizzare occidentalizzare ver +occidentalizzarono occidentalizzare ver +occidentalizzata occidentalizzare ver +occidentalizzate occidentalizzare ver +occidentalizzati occidentalizzare ver +occidentalizzato occidentalizzare ver +occidente occidente nom +occidua occiduo adj +occidui occiduo adj +occiduo occiduo adj +occipitale occipitale adj +occipitali occipitale adj +occipite occipite nom +occitana occitano adj +occitane occitano adj +occitani occitano adj +occitanica occitanico adj +occitaniche occitanico adj +occitanici occitanico adj +occitanico occitanico adj +occitano occitano adj +occluda occludere ver +occludano occludere ver +occlude occludere ver +occludendo occludere ver +occludendole occludere ver +occludente occludere ver +occludenti occludere ver +occludere occludere ver +occludeva occludere ver +occludevano occludere ver +occludono occludere ver +occlusa occludere ver +occluse occludere ver +occlusi occluso adj +occlusione occlusione nom +occlusioni occlusione nom +occlusiva occlusivo adj +occlusive occlusivo adj +occlusivi occlusivo adj +occlusivo occlusivo adj +occluso occludere ver +occorra occorrere ver +occorrano occorrere ver +occorre occorrere ver +occorrendo occorrere ver +occorrente occorrente adj +occorrenti occorrente adj +occorrenza occorrenza nom +occorrenze occorrenza nom +occorrer occorrere ver +occorreranno occorrere ver +occorrere occorrere ver +occorrerebbe occorrere ver +occorrerebbero occorrere ver +occorrergli occorrere ver +occorrerà occorrere ver +occorresse occorrere ver +occorressero occorrere ver +occorreva occorrere ver +occorrevano occorrere ver +occorrono occorrere ver +occorsa occorrere ver +occorse occorrere ver +occorsero occorrere ver +occorsi occorrere ver +occorso occorrere ver +occulta occulto adj +occultabile occultabile adj +occultabili occultabile adj +occultamenti occultamento nom +occultamento occultamento nom +occultando occultare ver +occultandola occultare ver +occultandolo occultare ver +occultandone occultare ver +occultandosi occultare ver +occultano occultare ver +occultante occultare ver +occultare occultare ver +occultarle occultare ver +occultarli occultare ver +occultarlo occultare ver +occultarne occultare ver +occultarono occultare ver +occultarsi occultare ver +occultata occultare ver +occultate occultare ver +occultati occultare ver +occultato occultare ver +occultatore occultatore nom +occultava occultare ver +occultavano occultare ver +occultazione occultazione nom +occultazioni occultazione nom +occulte occulto adj +occulterebbe occultare ver +occulterebbero occultare ver +occulterà occultare ver +occulti occulto adj +occultiamo occultare ver +occultismo occultismo nom +occultista occultista nom +occultiste occultista nom +occultisti occultista nom +occultistica occultistico adj +occultistiche occultistico adj +occultistici occultistico adj +occultistico occultistico adj +occulto occulto adj +occultò occultare ver +occupa occupare ver +occupabile occupabile adj +occupabili occupabile adj +occupai occupare ver +occupammo occupare ver +occupando occupare ver +occupandoci occupare ver +occupandola occupare ver +occupandole occupare ver +occupandoli occupare ver +occupandolo occupare ver +occupandomi occupare ver +occupandone occupare ver +occupandosene occupare ver +occupandosi occupare ver +occupandoti occupare ver +occupandovi occupare ver +occupano occupare ver +occupante occupante adj +occupanti occupante nom +occuparcene occupare ver +occuparci occupare ver +occupare occupare ver +occuparla occupare ver +occuparle occupare ver +occuparli occupare ver +occuparlo occupare ver +occuparmene occupare ver +occuparmi occupare ver +occuparne occupare ver +occuparono occupare ver +occuparsene occupare ver +occuparsi occupare ver +occupartene occupare ver +occuparti occupare ver +occuparvene occupare ver +occuparvi occupare ver +occupasse occupare ver +occupassero occupare ver +occupassi occupare ver +occupassimo occupare ver +occupata occupare ver +occupate occupare ver +occupatemi occupare ver +occupatene occupare ver +occupatesi occupare ver +occupatevene occupare ver +occupatevi occupare ver +occupati occupato adj +occupato occupare ver +occupatore occupatore nom +occupatori occupatore nom +occupava occupare ver +occupavano occupare ver +occupavi occupare ver +occupavo occupare ver +occupazionale occupazionale adj +occupazionali occupazionale adj +occupazione occupazione nom +occupazioni occupazione nom +occuperai occupare ver +occuperanno occupare ver +occuperebbe occupare ver +occuperebbero occupare ver +occuperei occupare ver +occuperemo occupare ver +occuperesti occupare ver +occuperà occupare ver +occuperò occupare ver +occupi occupare ver +occupiamo occupare ver +occupiamoci occupare ver +occupiate occupare ver +occupino occupare ver +occupo occupare ver +occupò occupare ver +oceani oceano nom +oceanica oceanico adj +oceaniche oceanico adj +oceanici oceanico adj +oceanico oceanico adj +oceanina oceanino adj +oceanine oceanino adj +oceano oceano nom +oceanografa oceanografo nom +oceanografi oceanografo nom +oceanografia oceanografia nom +oceanografica oceanografico adj +oceanografiche oceanografico adj +oceanografici oceanografico adj +oceanografico oceanografico adj +oceanografie oceanografia nom +oceanografo oceanografo nom +ocellata ocellato adj +ocellate ocellato adj +ocellato ocellato adj +ocelli ocello nom +ocello ocello nom +ocelot ocelot nom +oche oca nom +oclocrazia oclocrazia nom +ocra ocra adj +ocre ocra nom +oculare oculare adj +oculari oculare adj +oculata oculato adj +oculate oculato adj +oculatezza oculatezza nom +oculati oculato adj +oculato oculato adj +oculista oculista nom +oculisti oculista nom +oculistica oculistico adj +oculistiche oculistico adj +oculistici oculistico adj +oculistico oculistico adj +oculomotore oculomotore adj +oculomotori oculomotore adj +od od con +oda udire ver +odalisca odalisca nom +odalische odalisca nom +odano udire ver +ode ode nom +odeon odeon nom +odi ode|odio nom +odia odiare ver +odiai odiare ver +odiami odiare ver +odiamo odiare ver +odiando odiare ver +odiandola odiare ver +odiandoli odiare ver +odiandolo odiare ver +odiandosi odiare ver +odiano odiare ver +odiarci odiare ver +odiare odiare ver +odiarla odiare ver +odiarle odiare ver +odiarli odiare ver +odiarlo odiare ver +odiarmi odiare ver +odiarono odiare ver +odiarsi odiare ver +odiarti odiare ver +odiasse odiare ver +odiassero odiare ver +odiassi odiare ver +odiassimo odiare ver +odiata odiare ver +odiate odiare ver +odiati odiare ver +odiato odiare ver +odiava odiare ver +odiavamo odiare ver +odiavano odiare ver +odiavo odiare ver +odierai odiare ver +odieranno odiare ver +odierebbe odiare ver +odierebbero odiare ver +odierei odiare ver +odierete odiare ver +odierna odierno adj +odierne odierno adj +odierni odierno adj +odierno odierno adj +odierà odiare ver +odierò odiare ver +odii odiare ver +odila udire ver +odile udire ver +odili udire ver +odilo udire ver +odimi udire ver +odine udire ver +odino odiare ver +odio odio nom +odiosa odioso adj +odiose odioso adj +odiosi odioso adj +odiosità odiosità nom +odioso odioso adj +odissea odissea nom +odissee odissea nom +odiò odiare ver +odo udire ver +odono udire ver +odonomastica odonomastica nom +odontalgia odontalgia nom +odontoiatra odontoiatra nom +odontoiatri odontoiatra nom +odontoiatria odontoiatria nom +odontoiatrica odontoiatrico adj +odontoiatriche odontoiatrico adj +odontoiatrici odontoiatrico adj +odontoiatrico odontoiatrico adj +odontologia odontologia nom +odontologie odontologia nom +odontotecnica odontotecnico adj +odontotecniche odontotecnico adj +odontotecnici odontotecnico nom +odontotecnico odontotecnico adj +odora odorare ver +odorando odorare ver +odorano odorare ver +odorante odorare ver +odoranti odorare ver +odorare odorare ver +odorata odorare ver +odorate odorare ver +odorato odorato nom +odorava odorare ver +odoravano odorare ver +odore odore nom +odori odore nom +odorifera odorifero adj +odorifere odorifero adj +odorifero odorifero adj +odorino odorare ver +odoro odorare ver +odorosa odoroso adj +odorose odoroso adj +odorosi odoroso adj +odoroso odoroso adj +oersted oersted nom +of of npr +ofelimità ofelimità nom +off off adj +offa offa nom +offenda offendere ver +offendano offendere ver +offende offendere ver +offendendo offendere ver +offendendola offendere ver +offendendolo offendere ver +offendendomi offendere ver +offendendoti offendere ver +offender offendere ver +offenderai offendere ver +offenderanno offendere ver +offenderci offendere ver +offendere offendere ver +offenderebbe offendere ver +offenderebbero offendere ver +offenderei offendere ver +offenderesti offendere ver +offenderla offendere ver +offenderle offendere ver +offenderli offendere ver +offenderlo offendere ver +offendermi offendere ver +offenderne offendere ver +offendersi offendere ver +offenderti offendere ver +offendervi offendere ver +offenderà offendere ver +offenderò offendere ver +offendesse offendere ver +offendete offendere ver +offendetevi offendere ver +offendeva offendere ver +offendevano offendere ver +offendi offendere ver +offendiamo offendere ver +offendiate offendere ver +offendo offendere ver +offendono offendere ver +offensiva offensiva nom +offensive offensivo adj +offensivi offensivo adj +offensivo offensivo adj +offensore offensore nom +offensori offensore nom +offerente offerente nom +offerenti offerente nom +offerta offerta nom +offertale offrire ver +offerte offerta nom +offerti offrire ver +offerto offrire ver +offertori offertorio nom +offertorio offertorio nom +offesa offesa|offeso nom +offese offesa|offeso nom +offesero offendere ver +offesi offeso nom +offeso offendere ver +office office nom +offici officio nom +officia officiare ver +officiale officiare ver +officiali officiare ver +officiando officiare ver +officiano officiare ver +officiante officiante adj +officianti officiante nom +officiare officiare ver +officiarlo officiare ver +officiarono officiare ver +officiarvi officiare ver +officiasse officiare ver +officiassero officiare ver +officiata officiare ver +officiate officiare ver +officiati officiare ver +officiato officiare ver +officiava officiare ver +officiavano officiare ver +officina officina nom +officinale officinale adj +officinali officinale adj +officine officina nom +officino officiare ver +officio officio nom +officiò officiare ver +offra offrire ver +offrano offrire ver +offre offrire ver +offrendo offrire ver +offrendoci offrire ver +offrendogli offrire ver +offrendola offrire ver +offrendole offrire ver +offrendoli offrire ver +offrendolo offrire ver +offrendomi offrire ver +offrendone offrire ver +offrendosi offrire ver +offrendoti offrire ver +offrendovi offrire ver +offri offrire ver +offriamo offrire ver +offriate offrire ver +offrigli offrire ver +offrii offrire ver +offrile offrire ver +offrimi offrire ver +offrimmo offrire ver +offrir offrire ver +offriranno offrire ver +offrircene offrire ver +offrirci offrire ver +offrire offrire ver +offrirebbe offrire ver +offrirebbero offrire ver +offrirei offrire ver +offriremo offrire ver +offrirete offrire ver +offrirgli offrire ver +offrirgliela offrire ver +offrirglielo offrire ver +offrirgliene offrire ver +offrirla offrire ver +offrirle offrire ver +offrirli offrire ver +offrirlo offrire ver +offrirmi offrire ver +offrirne offrire ver +offrirono offrire ver +offrirsi offrire ver +offrirti offrire ver +offrirvi offrire ver +offrirà offrire ver +offrirò offrire ver +offrisse offrire ver +offrissero offrire ver +offrissimo offrire ver +offriste offrire ver +offrite offrire ver +offritemi offrire ver +offritevi offrire ver +offriti offrire ver +offriva offrire ver +offrivano offrire ver +offrivi offrire ver +offrivo offrire ver +offro offrire ver +offrono offrire ver +offrì offrire ver +offset offset nom +offside offside nom +offusca offuscare ver +offuscamenti offuscamento nom +offuscamento offuscamento nom +offuscando offuscare ver +offuscandoli offuscare ver +offuscano offuscare ver +offuscare offuscare ver +offuscargli offuscare ver +offuscarne offuscare ver +offuscarono offuscare ver +offuscarsi offuscare ver +offuscasse offuscare ver +offuscata offuscare ver +offuscate offuscare ver +offuscati offuscare ver +offuscato offuscare ver +offuscava offuscare ver +offuscavano offuscare ver +offuscherebbe offuscare ver +offuscherà offuscare ver +offuschi offuscare ver +offuschino offuscare ver +offuscò offuscare ver +oficleide oficleide nom +ofide ofide nom +ofidi ofide nom +ofiologia ofiologia nom +ofiti ofite nom +oftalmia oftalmia nom +oftalmica oftalmico adj +oftalmiche oftalmico adj +oftalmici oftalmico adj +oftalmico oftalmico adj +oftalmie oftalmia nom +oftalmologi oftalmologo nom +oftalmologia oftalmologia nom +oftalmologie oftalmologia nom +oftalmologo oftalmologo nom +oftalmoscopio oftalmoscopio nom +oggetti oggetto nom +oggettiva oggettivo adj +oggettivamente oggettivamente adv +oggettivando oggettivare ver +oggettivandosi oggettivare ver +oggettivante oggettivare ver +oggettivanti oggettivare ver +oggettivare oggettivare ver +oggettivarla oggettivare ver +oggettivarlo oggettivare ver +oggettivarsi oggettivare ver +oggettivata oggettivare ver +oggettivate oggettivare ver +oggettivati oggettivare ver +oggettivato oggettivare ver +oggettivazione oggettivazione nom +oggettivazioni oggettivazione nom +oggettive oggettivo adj +oggettivi oggettivo adj +oggettivismo oggettivismo nom +oggettivista oggettivista nom +oggettivisti oggettivista nom +oggettivistica oggettivistico adj +oggettivistiche oggettivistico adj +oggettivistico oggettivistico adj +oggettività oggettività nom +oggettivo oggettivo adj +oggetto oggetto nom +oggettuale oggettuale adj +oggettuali oggettuale adj +oggi oggi adv +oggidì oggidì adv +oggigiorno oggigiorno adv +ogiva ogiva nom +ogivale ogivale adj +ogivali ogivale adj +ogive ogiva nom +ogni ogni adj_sup +ogniqualvolta ogniqualvolta adv_sup +ognissanti Ognissanti nom +ognora ognora adv +ognuna ognuno pro +ognuno ognuno pro +oh oh int +ohe ohe int +ohi ohi int +ohibò ohibò int +ohimè ohimè int +ohimé ohimé int +ohm ohm nom +ohmetro ohmetro nom +ohmica ohmico adj +ohmiche ohmico adj +ohmici ohmico adj +ohmico ohmico adj +ohmmetri ohmmetro nom +ohmmetro ohmmetro nom +oidi oidio nom +oidio oidio nom +ok ok int +okapi okapi nom +okay okay nom +olandese olandese adj +olandesi olandese adj +oleacee oleacee nom +oleaginose oleaginoso adj +oleaginosi oleaginoso adj +oleandri oleandro nom +oleandro oleandro nom +oleari oleario adj +olearia oleario adj +olearie oleario adj +oleario oleario adj +oleastri oleastro nom +oleastro oleastro nom +oleata oleato adj +oleati oleato adj +oleato oleato adj +olefina olefina nom +olefine olefina nom +olefinica olefinico adj +olefinico olefinico adj +oleica oleico adj +oleici oleico adj +oleico oleico adj +oleicolo oleicolo adj +oleifera oleifero adj +oleifere oleifero adj +oleifici oleificio nom +oleificio oleificio nom +oleina oleina nom +oleodotti oleodotto nom +oleodotto oleodotto nom +oleografia oleografia nom +oleografica oleografico adj +oleografiche oleografico adj +oleografici oleografico adj +oleografico oleografico adj +oleografie oleografia nom +oleoresina oleoresina nom +oleosa oleoso adj +oleose oleoso adj +oleosi oleoso adj +oleoso oleoso adj +oleum oleum nom +olezza olezzare ver +olezzano olezzare ver +olezzante olezzante adj +olezzanti olezzante adj +olezzo olezzo nom +olfattiva olfattivo adj +olfattive olfattivo adj +olfattivi olfattivo adj +olfattivo olfattivo adj +olfatto olfatto adj +olfattori olfattorio adj +olfattoria olfattorio adj +olfattorio olfattorio adj +oli olio nom +olia oliare ver +oliando oliare ver +oliandoli oliare ver +oliandolo oliare ver +oliane oliare ver +oliano oliare ver +oliare oliare ver +oliari oliario nom +oliario oliario nom +oliarla oliare ver +oliata oliare ver +oliate oliato adj +oliati oliare ver +oliato oliare ver +oliatore oliatore nom +oliatori oliatore nom +oliera oliera nom +oligarca oligarca nom +oligarchia oligarchia nom +oligarchica oligarchico adj +oligarchiche oligarchico adj +oligarchici oligarchico adj +oligarchico oligarchico adj +oligarchie oligarchia nom +oligisto oligisto nom +oligocene oligocene nom +oligoclasio oligoclasio nom +oligofrenia oligofrenia nom +oligominerale oligominerale adj +oligominerali oligominerale adj +oligonucleotidi oligonucleotide nom +oligopoli oligopolio nom +oligopolio oligopolio nom +oligopolista oligopolista nom +oligopolisti oligopolista nom +oligopolistiche oligopolistico adj +oligopolistici oligopolistico adj +oligopolistico oligopolistico adj +oligopsoni oligopsonio nom +oligopsonio oligopsonio nom +oligosaccaride oligosaccaride nom +oligosaccaridi oligosaccaride nom +oliguria oliguria nom +oligurie oliguria nom +olii oliare ver +olimpi olimpio adj +olimpia olimpio adj +olimpiaca olimpiaco adj +olimpiaci olimpiaco adj +olimpiaco olimpiaco adj +olimpiade olimpiade nom +olimpiadi olimpiade nom +olimpica olimpico adj +olimpiche olimpico adj +olimpici olimpico adj +olimpico olimpico adj +olimpie olimpio adj +olimpio olimpio adj +olimpionica olimpionico adj +olimpioniche olimpionico adj +olimpionici olimpionico adj +olimpionico olimpionico adj +olimpo olimpo nom +olino oliare ver +olio olio nom +olistico olistico adj +oliva oliva adj +olivastra olivastro adj +olivastre olivastro adj +olivastri olivastro adj +olivastro olivastro adj +olive oliva nom +olivetani olivetano nom +olivetano olivetano nom +oliveti oliveto nom +oliveto oliveto nom +olivi olivo nom +olivicoltori olivicoltore nom +olivicoltura olivicoltura nom +olivina olivina nom +olivine olivina nom +olivo olivo nom +olla olla nom +olle olla nom +olmi olmio|olmo nom +olmio olmio nom +olmo olmo nom +olocausti olocausto nom +olocausto olocausto nom +olocene olocene nom +olografe olografo adj +olografia olografia nom +olografie olografia nom +olografo olografo adj +ologramma ologramma nom +ologrammi ologramma nom +olona olona nom +olone olona nom +oloturia oloturia nom +oloturie oloturia nom +oltraggi oltraggio nom +oltraggia oltraggiare ver +oltraggiando oltraggiare ver +oltraggiano oltraggiare ver +oltraggianti oltraggiare ver +oltraggiare oltraggiare ver +oltraggiarla oltraggiare ver +oltraggiarne oltraggiare ver +oltraggiata oltraggiare ver +oltraggiate oltraggiare ver +oltraggiati oltraggiare ver +oltraggiato oltraggiare ver +oltraggiatori oltraggiatore nom +oltraggiava oltraggiare ver +oltraggio oltraggio nom +oltraggiosa oltraggioso adj +oltraggiose oltraggioso adj +oltraggiosi oltraggioso adj +oltraggioso oltraggioso adj +oltraggiò oltraggiare ver +oltralpe oltralpe adv +oltramontana oltramontano adj +oltramontani oltramontano adj +oltramontano oltramontano adj +oltranza oltranza nom +oltranzismo oltranzismo nom +oltranzista oltranzista nom +oltranziste oltranzista nom +oltranzisti oltranzista nom +oltre oltre adv_sup +oltrechè oltrechè con +oltreché oltreché con +oltrecortina oltrecortina adj +oltremanica oltremanica adj +oltremare oltremare adv +oltremarina oltremarino adj +oltremarine oltremarino adj +oltremarini oltremarino adj +oltremarino oltremarino adj +oltremodo oltremodo adv +oltremondana oltremondano adj +oltremondano oltremondano adj +oltremontana oltremontano adj +oltremontani oltremontano adj +oltremontano oltremontano adj +oltreoceano oltreoceano adv +oltrepassa oltrepassare ver +oltrepassando oltrepassare ver +oltrepassandola oltrepassare ver +oltrepassandole oltrepassare ver +oltrepassano oltrepassare ver +oltrepassante oltrepassare ver +oltrepassare oltrepassare ver +oltrepassarla oltrepassare ver +oltrepassarle oltrepassare ver +oltrepassarli oltrepassare ver +oltrepassarlo oltrepassare ver +oltrepassarne oltrepassare ver +oltrepassarono oltrepassare ver +oltrepassasse oltrepassare ver +oltrepassassero oltrepassare ver +oltrepassata oltrepassare ver +oltrepassate oltrepassare ver +oltrepassati oltrepassare ver +oltrepassato oltrepassare ver +oltrepassava oltrepassare ver +oltrepassavano oltrepassare ver +oltrepasseranno oltrepassare ver +oltrepasserà oltrepassare ver +oltrepassi oltrepassare ver +oltrepassino oltrepassare ver +oltrepasso oltrepassare ver +oltrepassò oltrepassare ver +oltretomba oltretomba nom +oltretutto oltretutto adv +olà olà int +omaggi omaggio nom +omaggio omaggio nom +omai omai adv +omari omaro nom +omaro omaro nom +omaso omaso nom +ombelicale ombelicale adj +ombelicali ombelicale adj +ombelichi ombelico nom +ombelico ombelico nom +ombra ombra nom +ombrare ombrare ver +ombrata ombrato adj +ombrate ombrato adj +ombrati ombrato adj +ombrato ombrato adj +ombratura ombratura nom +ombre ombra nom +ombreggia ombreggiare ver +ombreggiando ombreggiare ver +ombreggiano ombreggiare ver +ombreggiante ombreggiare ver +ombreggianti ombreggiare ver +ombreggiare ombreggiare ver +ombreggiata ombreggiare ver +ombreggiate ombreggiato adj +ombreggiati ombreggiato adj +ombreggiato ombreggiato adj +ombreggiatura ombreggiatura nom +ombreggiature ombreggiatura nom +ombreggiava ombreggiare ver +ombrella ombrella nom +ombrellai ombrellaio nom +ombrellaio ombrellaio nom +ombrellata ombrellata nom +ombrellate ombrellata nom +ombrelle ombrella nom +ombrelli ombrello nom +ombrellifere Ombrellifere nom +ombrellini ombrellino nom +ombrellino ombrellino nom +ombrello ombrello nom +ombrellone ombrellone nom +ombrelloni ombrellone nom +ombretti ombretto nom +ombretto ombretto nom +ombri ombrare ver +ombrina ombrina nom +ombrinali ombrinale nom +ombrine ombrina nom +ombro ombrare ver +ombrosa ombroso adj +ombrose ombroso adj +ombrosi ombroso adj +ombrosità ombrosità nom +ombroso ombroso adj +omega omega nom +omelette omelette nom +omelia omelia nom +omelie omelia nom +omentale omentale adj +omenti omento nom +omento omento nom +omeopatia omeopatia nom +omeopatica omeopatico adj +omeopatiche omeopatico adj +omeopatici omeopatico adj +omeopatico omeopatico adj +omeoterma omeotermo adj +omeoterme omeotermo adj +omeotermi omeotermo adj +omeotermo omeotermo adj +omerale omerale adj +omerali omerale adj +omeri omero nom +omerica omerico adj +omeriche omerico adj +omerici omerico adj +omerico omerico adj +omero omero nom +omertà omertà nom +omessa omettere ver +omesse omettere ver +omessi omettere ver +omesso omettere ver +ometta omettere ver +omettano omettere ver +omette omettere ver +omettendo omettere ver +omettendola omettere ver +omettendole omettere ver +omettendone omettere ver +omettere omettere ver +ometterei omettere ver +ometteremo omettere ver +ometteresti omettere ver +ometterla omettere ver +ometterle omettere ver +ometterli omettere ver +ometterlo omettere ver +ometterne omettere ver +omettersi omettere ver +ometterà omettere ver +ometterò omettere ver +omettesse omettere ver +omettete omettere ver +ometteva omettere ver +omettevano omettere ver +ometti ometto nom +omettiamo omettere ver +ometto ometto nom +omettono omettere ver +omiciattolo omiciattolo nom +omicida omicida nom +omicide omicida nom +omicidi omicida|omicidio nom +omicidio omicidio nom +omileta omileta nom +omiletica omiletica nom +omiletiche omiletica nom +omini omino nom +ominidi ominidi nom +omino omino nom +omise omettere ver +omisero omettere ver +omissione omissione nom +omissioni omissione nom +omnibus omnibus nom +omnicomprensivo omnicomprensivo adj +omnium omnium nom +omocromia omocromia nom +omofona omofono adj +omofone omofono adj +omofoni omofono adj +omofonia omofonia nom +omofonica omofonico adj +omofoniche omofonico adj +omofonici omofonico adj +omofonico omofonico adj +omofonie omofonia nom +omofono omofono adj +omogenea omogeneo adj +omogenee omogeneo adj +omogenei omogeneo adj +omogeneità omogeneità nom +omogeneizza omogeneizzare ver +omogeneizzando omogeneizzare ver +omogeneizzare omogeneizzare ver +omogeneizzarono omogeneizzare ver +omogeneizzarsi omogeneizzare ver +omogeneizzata omogeneizzare ver +omogeneizzate omogeneizzato adj +omogeneizzati omogeneizzare ver +omogeneizzato omogeneizzare ver +omogeneizzazione omogeneizzazione nom +omogeneo omogeneo adj +omografa omografo adj +omografe omografo adj +omografi omografo adj +omografia omografia nom +omografie omografia nom +omografo omografo adj +omologa omologo adj +omologando omologare ver +omologandolo omologare ver +omologandosi omologare ver +omologano omologare ver +omologante omologare ver +omologanti omologare ver +omologare omologare ver +omologarla omologare ver +omologarli omologare ver +omologarlo omologare ver +omologarne omologare ver +omologarono omologare ver +omologarsi omologare ver +omologasse omologare ver +omologata omologare ver +omologate omologare ver +omologati omologare ver +omologato omologare ver +omologava omologare ver +omologazione omologazione nom +omologazioni omologazione nom +omologhe omologo adj +omologhi omologo adj +omologia omologia nom +omologie omologia nom +omologo omologo adj +omologò omologare ver +omonima omonimo adj +omonime omonimo adj +omonimi omonimo adj +omonimia omonimia nom +omonimie omonimia nom +omonimo omonimo adj +omoritmia omoritmia nom +omosessuale omosessuale adj +omosessuali omosessuale adj +omosessualità omosessualità nom +omozigosi omozigosi nom +omozigote omozigote nom +omozigoti omozigote nom +omuncoli omuncolo nom +omuncolo omuncolo nom +onagri onagro nom +onagro onagro nom +onanismo onanismo nom +once oncia nom +oncia oncia nom +onciale onciale nom +onciali onciale adj +oncocercosi oncocercosi adj +oncogena oncogeno adj +oncogene oncogeno adj +oncogenesi oncogenesi nom +oncogeni oncogeno adj +oncogeno oncogeno adj +oncologa oncologo nom +oncologi oncologo nom +oncologia oncologia nom +oncologica oncologico adj +oncologiche oncologico adj +oncologici oncologico adj +oncologico oncologico adj +oncologie oncologia nom +oncologo oncologo nom +onda onda nom +ondata ondata nom +ondate ondata nom +onde onde adv_sup +ondeggia ondeggiare ver +ondeggiamenti ondeggiamento nom +ondeggiamento ondeggiamento nom +ondeggiando ondeggiare ver +ondeggiandolo ondeggiare ver +ondeggiano ondeggiare ver +ondeggiante ondeggiante adj +ondeggianti ondeggiante adj +ondeggiare ondeggiare ver +ondeggiarono ondeggiare ver +ondeggiata ondeggiare ver +ondeggiate ondeggiare ver +ondeggiato ondeggiare ver +ondeggiava ondeggiare ver +ondeggiavano ondeggiare ver +ondeggiò ondeggiare ver +ondina ondina nom +ondine ondina nom +ondosa ondoso adj +ondose ondoso adj +ondosi ondoso adj +ondoso ondoso adj +ondula ondulare ver +ondulando ondulare ver +ondulano ondulare ver +ondulante ondulare ver +ondulanti ondulare ver +ondulare ondulare ver +ondulata ondulato adj +ondulate ondulato adj +ondulati ondulato adj +ondulato ondulato adj +ondulatori ondulatorio adj +ondulatoria ondulatorio adj +ondulatorie ondulatorio adj +ondulatorio ondulatorio adj +ondulazione ondulazione nom +ondulazioni ondulazione nom +onduregna onduregno adj +onera onerare ver +oneraria onerario adj +onerarie onerario adj +onerata onerare ver +onerati onerato adj +onerato onerato adj +onere onere nom +oneri onere nom +onero onerare ver +onerosa oneroso adj +onerose oneroso adj +onerosi oneroso adj +onerosità onerosità nom +oneroso oneroso adj +onesta onesto adj +onestamente onestamente adv_sup +oneste onesto adj +onesti onesto adj +onesto onesto adj +onestà onestà nom +onfalo onfalo nom +onice onice nom +onici onice nom +onicofagia onicofagia nom +onirica onirico adj +oniriche onirico adj +onirici onirico adj +onirico onirico adj +onirismo onirismo nom +onirologia onirologia nom +onischi onisco nom +onisco onisco nom +onnicomprensiva onnicomprensivo adj +onnicomprensivo onnicomprensivo adj +onnipossente onnipossente adj +onnipotente onnipotente adj +onnipotenti onnipotente adj +onnipotenza onnipotenza nom +onnipresente onnipresente adj +onnipresenti onnipresente adj +onnipresenza onnipresenza nom +onnisciente onnisciente adj +onniscienti onnisciente adj +onniscienza onniscienza nom +onniveggente onniveggente adj +onniveggenti onniveggente adj +onniveggenza onniveggenza nom +onnivora onnivoro adj +onnivore onnivoro adj +onnivori onnivoro adj +onnivoro onnivoro adj +onomasiologia onomasiologia nom +onomasiologie onomasiologia nom +onomastica onomastico adj +onomastiche onomastico adj +onomastici onomastico nom +onomastico onomastico nom +onomatopea onomatopea nom +onomatopee onomatopea nom +onomatopeica onomatopeico adj +onomatopeiche onomatopeico adj +onomatopeici onomatopeico adj +onomatopeico onomatopeico adj +onora onorare ver +onorabile onorabile adj +onorabili onorabile adj +onorabilità onorabilità nom +onorai onorare ver +onorale onorare ver +onoralo onorare ver +onorando onorare ver +onorandola onorare ver +onorandolo onorare ver +onorandone onorare ver +onorano onorare ver +onorante onorare ver +onoranza onoranza nom +onoranze onoranza nom +onorar onorare ver +onorare onorare ver +onorari onorario adj +onoraria onorario adj +onorarie onorario adj +onorario onorario adj +onorarla onorare ver +onorarle onorare ver +onorarli onorare ver +onorarlo onorare ver +onorarmi onorare ver +onorarne onorare ver +onorarono onorare ver +onorarsi onorare ver +onorasse onorare ver +onorassero onorare ver +onorata onorare ver +onorate onorato adj +onoratezza onoratezza nom +onorati onorato adj +onoratissima onoratissimo adj +onoratissimo onoratissimo adj +onorato onorare ver +onorava onorare ver +onoravamo onorare ver +onoravano onorare ver +onore onore nom +onoreranno onorare ver +onoreremo onorare ver +onorerà onorare ver +onorerò onorare ver +onorevole onorevole adj +onorevoli onorevole adj +onori onore nom +onoriamo onorare ver +onorifica onorifico adj +onorificenza onorificenza nom +onorificenze onorificenza nom +onorifiche onorifico adj +onorifici onorifico adj +onorifico onorifico adj +onorino onorare ver +onoro onorare ver +onorò onorare ver +onta onta nom +ontaneta ontaneta nom +ontani ontano nom +ontano ontano nom +onte onta nom +ontogenesi ontogenesi nom +ontogenetica ontogenetico adj +ontogenetiche ontogenetico adj +ontogenetici ontogenetico adj +ontogenetico ontogenetico adj +ontologia ontologia nom +ontologica ontologico adj +ontologiche ontologico adj +ontologici ontologico adj +ontologico ontologico adj +ontologie ontologia nom +onusta onusto adj +onuste onusto adj +onusti onusto adj +onusto onusto adj +oocita oocita nom +oociti oocita nom +oogenesi oogenesi nom +opaca opaco adj +opache opaco adj +opachi opaco adj +opacità opacità nom +opacizza opacizzare ver +opacizzante opacizzare ver +opacizzanti opacizzare ver +opacizzare opacizzare ver +opacizzarsi opacizzare ver +opacizzata opacizzare ver +opacizzati opacizzare ver +opacizzato opacizzare ver +opacizzazione opacizzazione nom +opaco opaco adj +opale opale nom +opalescente opalescente adj +opalescenti opalescente adj +opalescenza opalescenza nom +opalescenze opalescenza nom +opali opale nom +opalina opalino adj +opaline opalino adj +opalini opalino adj +opalino opalino adj +open open adj +opera opera nom +operabile operabile adj +operabili operabile adj +operabilità operabilità nom +operaci operare ver +operai operaio nom +operaia operaio adj +operaie operaio adj +operaio operaio adj +operaismo operaismo nom +operala operare ver +operandi operando nom +operando operare ver +operandoli operare ver +operandolo operare ver +operandone operare ver +operandosi operare ver +operandovi operare ver +operano operare ver +operante operante adj +operanti operante adj +operar operare ver +operare operare ver +operarla operare ver +operarle operare ver +operarli operare ver +operarlo operare ver +operarmi operare ver +operarne operare ver +operarono operare ver +operarsi operare ver +operarvi operare ver +operasi operare ver +operasse operare ver +operassero operare ver +operata operare ver +operate operato adj +operati operare ver +operativa operativo adj +operativamente operativamente adv +operative operativo adj +operativi operativo adj +operatività operatività nom +operativo operativo adj +operato operare ver +operatore operatore adj +operatori operatore nom +operatoria operatorio adj +operatorie operatorio adj +operatorio operatorio adj +operatrice operatore adj +operatrici operatore adj +operava operare ver +operavano operare ver +operavo operare ver +operazione operazione nom +operazioni operazione nom +opercoli opercolo nom +opercolo opercolo nom +opere opera nom +opereranno operare ver +opererebbe operare ver +opererebbero operare ver +opererei operare ver +opererà operare ver +opererò operare ver +operetta operetta nom +operette operetta nom +operettista operettista nom +operettistiche operettistico adj +operettistico operettistico adj +operi operare ver +operiamo operare ver +operino operare ver +operista operista nom +operisti operista nom +operistica operistico adj +operistiche operistico adj +operistici operistico adj +operistico operistico adj +opero operare ver +operosa operoso adj +operose operoso adj +operosi operoso adj +operosità operosità nom +operoso operoso adj +operò operare ver +opifici opificio nom +opificio opificio nom +opilione opilione nom +opilioni opilione nom +opima opimo adj +opime opimo adj +opimi opimo adj +opina opinare ver +opinabile opinabile adj +opinabili opinabile adj +opinano opinare ver +opinanti opinare ver +opinar opinare ver +opinare opinare ver +opinarono opinare ver +opinata opinare ver +opinato opinare ver +opinava opinare ver +opini opinare ver +opinione opinione nom +opinioni opinione nom +opinionisti opinionista nom +opino opinare ver +opinò opinare ver +oplita oplita nom +oplite oplite nom +opliti oplita|oplite nom +opossum opossum nom +opoterapia opoterapia nom +oppi oppiare ver +oppia oppiare ver +oppiacea oppiaceo adj +oppiacee oppiaceo adj +oppiacei oppiaceo adj +oppiaceo oppiaceo adj +oppiano oppiare ver +oppio oppio nom +oppiomane oppiomane nom +oppiomani oppiomane nom +oppone opporre ver +opponendo opporre ver +opponendogli opporre ver +opponendola opporre ver +opponendole opporre ver +opponendoli opporre ver +opponendolo opporre ver +opponendosi opporre ver +opponendovi opporre ver +opponente opponente adj +opponenti opponente nom +opponesse opporre ver +opponessero opporre ver +opponete opporre ver +opponetevi opporre ver +opponeva opporre ver +opponevano opporre ver +opponevo opporre ver +opponga opporre ver +oppongano opporre ver +oppongo opporre ver +oppongono opporre ver +opponi opporre ver +opponiamo opporre ver +opponiate opporre ver +opponibile opponibile adj +opponibili opponibile adj +opponiti opporre ver +opporci opporre ver +opporgli opporre ver +opporle opporre ver +opporli opporre ver +opporlo opporre ver +oppormi opporre ver +opporne opporre ver +opporranno opporre ver +opporre opporre ver +opporrebbe opporre ver +opporrebbero opporre ver +opporrei opporre ver +opporresti opporre ver +opporrete opporre ver +opporrà opporre ver +opporrò opporre ver +opporsi opporre ver +opporti opporre ver +opportuna opportuno adj +opportunamente opportunamente adv +opportune opportuno adj +opportuni opportuno adj +opportunismi opportunismo nom +opportunismo opportunismo nom +opportunista opportunista nom +opportuniste opportunista nom +opportunisti opportunista nom +opportunistica opportunistico adj +opportunistiche opportunistico adj +opportunistici opportunistico adj +opportunistico opportunistico adj +opportunità opportunità nom +opportuno opportuno adj +opporvi opporre ver +opporvisi opporre ver +oppose opporre ver +opposero opporre ver +opposi opporre ver +oppositore oppositore nom +oppositori oppositore nom +oppositrice oppositore nom +oppositrici oppositore nom +opposizione opposizione nom +opposizioni opposizione nom +opposta opporre ver +opposte opposto adj +opposti opporre ver +opposto opporre ver +oppressa opprimere ver +oppresse oppresso adj +oppressero opprimere ver +oppressi oppresso nom +oppressione oppressione nom +oppressioni oppressione nom +oppressiva oppressivo adj +oppressive oppressivo adj +oppressivi oppressivo adj +oppressivo oppressivo adj +oppresso opprimere ver +oppressore oppressore nom +oppressori oppressore nom +opprime opprimere ver +opprimendo opprimere ver +opprimendoci opprimere ver +opprimendola opprimere ver +opprimente opprimente adj +opprimenti opprimente adj +opprimere opprimere ver +opprimerla opprimere ver +opprimerle opprimere ver +opprimerli opprimere ver +opprimerlo opprimere ver +opprimerne opprimere ver +opprimerà opprimere ver +opprimesse opprimere ver +opprimessero opprimere ver +opprimeva opprimere ver +opprimevano opprimere ver +opprimi opprimere ver +opprimono opprimere ver +oppugnata oppugnare ver +oppugnazione oppugnazione nom +oppugno oppugnare ver +oppure oppure con +opra opra nom +oprando oprare ver +oprano oprare ver +oprante oprare ver +oprar oprare ver +oprare oprare ver +opre opra nom +opri oprare ver +oprino oprare ver +opro oprare ver +oprò oprare ver +opta optare ver +optai optare ver +optammo optare ver +optando optare ver +optano optare ver +optante optare ver +optanti optare ver +optare optare ver +optarono optare ver +optasse optare ver +optassero optare ver +optassimo optare ver +optata optare ver +optate optare ver +optato optare ver +optava optare ver +optavano optare ver +optavo optare ver +opteranno optare ver +opterebbe optare ver +opterebbero optare ver +opterei optare ver +opteremo optare ver +opterà optare ver +opterò optare ver +opti optare ver +optiamo optare ver +optimum optimum nom +optino optare ver +optional optional nom +opto optare ver +optoelettronica optoelettronica nom +optometri optometro nom +optometria optometria nom +optometrie optometria nom +optronica optronica nom +optò optare ver +opulenta opulento adj +opulente opulento adj +opulenti opulento adj +opulento opulento adj +opulenza opulenza nom +opuscoli opuscolo nom +opuscolo opuscolo nom +opzionale opzionale adj +opzionali opzionale adj +opzione opzione nom +opzioni opzione nom +or or adv +ora ora adv_sup +oraci orare ver +oracoli oracolo nom +oracolo oracolo nom +orafi orafo nom +orafo orafo nom +orai orare ver +orala orare ver +orale orale adj +orali orale adj +oralità oralità nom +oralmente oralmente adv +oramai oramai adv +orami orare ver +orando orare ver +orane orare ver +oranghi orango nom +orango orango nom +orangutan orangutan nom +orangutano orangutano nom +orano orare ver +orante orare ver +oranti orare ver +orar orare ver +orare orare ver +orari orario nom +oraria orario adj +orarie orario adj +orario orario nom +orasi orare ver +orata orare ver +orate orata nom +orati orare ver +orato orare ver +oratore oratore nom +oratori oratorio adj +oratoria oratorio adj +oratoriale oratoriale adj +oratoriali oratoriale adj +oratorie oratorio adj +oratorio oratorio adj +oratrice oratore nom +orava orare ver +oravi orare ver +orazione orazione nom +orazioni orazione nom +orba orbo adj +orbace orbace nom +orbaci orbace nom +orbai orbare ver +orbar orbare ver +orbata orbare ver +orbate orbare ver +orbato orbare ver +orbe orbo adj +orbene orbene con +orbettini orbettino nom +orbettino orbettino nom +orbi orbo adj +orbicolare orbicolare adj +orbicolari orbicolare adj +orbino orbare ver +orbita orbita nom +orbitala orbitare ver +orbitale orbitale adj +orbitali orbitale adj +orbitando orbitare ver +orbitano orbitare ver +orbitante orbitare ver +orbitanti orbitare ver +orbitare orbitare ver +orbitarono orbitare ver +orbitasse orbitare ver +orbitassero orbitare ver +orbitata orbitare ver +orbitato orbitare ver +orbitava orbitare ver +orbitavano orbitare ver +orbite orbita nom +orbiteranno orbitare ver +orbiterebbe orbitare ver +orbiterebbero orbitare ver +orbiterà orbitare ver +orbiti orbitare ver +orbitino orbitare ver +orbito orbitare ver +orbitò orbitare ver +orbo orbo adj +orca orca nom +orche orca nom +orchestica orchestica nom +orchestra orchestra nom +orchestrale orchestrale adj +orchestrali orchestrale adj +orchestrando orchestrare ver +orchestrano orchestrare ver +orchestrare orchestrare ver +orchestrarono orchestrare ver +orchestrasse orchestrare ver +orchestrata orchestrare ver +orchestrate orchestrare ver +orchestrati orchestrare ver +orchestrato orchestrare ver +orchestrava orchestrare ver +orchestravano orchestrare ver +orchestrazione orchestrazione nom +orchestrazioni orchestrazione nom +orchestre orchestra nom +orchestrerà orchestrare ver +orchestrò orchestrare ver +orchi orco nom +orchidacee orchidacee nom +orchidea orchidea nom +orchidee orchidea nom +orchiectomia orchiectomia nom +orchite orchite nom +orchiti orchite nom +orci orcio nom +orcio orcio nom +orco orco nom +orda orda nom +ordalia ordalia nom +ordalico ordalico adj +ordalie ordalia nom +orde orda nom +ordendo ordire ver +ordigni ordigno nom +ordigno ordigno nom +ordii ordire ver +ordina ordinare ver +ordinabile ordinabile adj +ordinabili ordinabile adj +ordinai ordinare ver +ordinala ordinare ver +ordinale ordinale adj +ordinali ordinale adj +ordinamenti ordinamento nom +ordinamento ordinamento nom +ordinandi ordinando nom +ordinando ordinare ver +ordinandogli ordinare ver +ordinandola ordinare ver +ordinandole ordinare ver +ordinandoli ordinare ver +ordinandolo ordinare ver +ordinandone ordinare ver +ordinandosi ordinare ver +ordinano ordinare ver +ordinante ordinante adj +ordinanti ordinante adj +ordinanza ordinanza nom +ordinanze ordinanza nom +ordinar ordinare ver +ordinare ordinare ver +ordinargli ordinare ver +ordinarglielo ordinare ver +ordinari ordinario adj +ordinaria ordinario adj +ordinariamente ordinariamente adv +ordinariati ordinariato nom +ordinariato ordinariato nom +ordinarie ordinario adj +ordinario ordinario adj +ordinarla ordinare ver +ordinarle ordinare ver +ordinarli ordinare ver +ordinarlo ordinare ver +ordinarne ordinare ver +ordinarono ordinare ver +ordinarsi ordinare ver +ordinasse ordinare ver +ordinassero ordinare ver +ordinata ordinare ver +ordinate ordinare ver +ordinategli ordinare ver +ordinati ordinare ver +ordinativa ordinativo adj +ordinative ordinativo adj +ordinativi ordinativo nom +ordinativo ordinativo adj +ordinato ordinare ver +ordinatore ordinatore adj +ordinatori ordinatore|ordinatorio adj +ordinatoria ordinatorio adj +ordinatorie ordinatorio adj +ordinatorio ordinatorio adj +ordinatrice ordinatore adj +ordinatrici ordinatore adj +ordinava ordinare ver +ordinavano ordinare ver +ordinazione ordinazione nom +ordinazioni ordinazione nom +ordine ordine nom +ordineranno ordinare ver +ordinerebbe ordinare ver +ordinerei ordinare ver +ordinerà ordinare ver +ordinerò ordinare ver +ordini ordine nom +ordiniamo ordinare ver +ordinino ordinare ver +ordino ordinare ver +ordinò ordinare ver +ordire ordire ver +ordirono ordire ver +ordirà ordire ver +ordisce ordire ver +ordisco ordire ver +ordiscono ordire ver +ordita ordire ver +ordite ordito adj +orditi ordire ver +ordito ordire ver +orditoi orditoio nom +orditoio orditoio nom +orditore orditore nom +orditori orditore nom +orditrice orditore nom +orditura orditura nom +orditure orditura nom +ordiva ordire ver +ordivano ordire ver +ordì ordire ver +ore ora nom_sup +oreade oreade nom +oreadi oreade nom +orecchi orecchio nom +orecchia orecchia|orecchio nom +orecchiabile orecchiabile adj +orecchiabili orecchiabile adj +orecchiante orecchiante nom +orecchianti orecchiante adj +orecchiare orecchiare ver +orecchiato orecchiare ver +orecchie orecchia|orecchio nom +orecchietta orecchietta nom +orecchiette orecchietta nom +orecchini orecchino nom +orecchino orecchino nom +orecchio orecchio nom +orecchione orecchione nom +orecchioni orecchione nom +orecchiuta orecchiuto adj +orecchiute orecchiuto adj +orecchiuti orecchiuto adj +orecchiuto orecchiuto adj +orefice orefice nom +oreficeria oreficeria nom +oreficerie oreficeria nom +orefici orefice nom +oremus oremus nom +orfana orfano adj +orfane orfano adj +orfani orfano adj +orfano orfano adj +orfanotrofi orfanotrofio nom +orfanotrofio orfanotrofio nom +orfica orfico adj +orfiche orfico adj +orfici orfico adj +orfico orfico adj +orfismo orfismo nom +org org sw +organetti organetto nom +organetto organetto nom +organi organo nom +organica organico adj +organicamente organicamente adv +organiche organico adj +organici organico adj +organicismo organicismo nom +organicità organicità nom +organico organico adj +organigramma organigramma nom +organigrammi organigramma nom +organino organino nom +organismi organismo nom +organismo organismo nom +organista organista nom +organiste organista nom +organisti organista nom +organistica organistico adj +organistiche organistico adj +organistici organistico adj +organistico organistico adj +organizza organizzare ver +organizzai organizzare ver +organizzando organizzare ver +organizzandoci organizzare ver +organizzandogli organizzare ver +organizzandola organizzare ver +organizzandole organizzare ver +organizzandoli organizzare ver +organizzandolo organizzare ver +organizzandone organizzare ver +organizzandosi organizzare ver +organizzandovi organizzare ver +organizzano organizzare ver +organizzante organizzare ver +organizzanti organizzare ver +organizzar organizzare ver +organizzarci organizzare ver +organizzare organizzare ver +organizzargli organizzare ver +organizzarla organizzare ver +organizzarle organizzare ver +organizzarli organizzare ver +organizzarlo organizzare ver +organizzarmi organizzare ver +organizzarne organizzare ver +organizzarono organizzare ver +organizzarsi organizzare ver +organizzarvi organizzare ver +organizzasse organizzare ver +organizzassero organizzare ver +organizzassimo organizzare ver +organizzata organizzare ver +organizzate organizzare ver +organizzatesi organizzare ver +organizzatevi organizzare ver +organizzati organizzare ver +organizzativa organizzativo adj +organizzative organizzativo adj +organizzativi organizzativo adj +organizzativo organizzativo adj +organizzato organizzare ver +organizzatore organizzatore adj +organizzatori organizzatore nom +organizzatrice organizzatore adj +organizzatrici organizzatore adj +organizzava organizzare ver +organizzavamo organizzare ver +organizzavano organizzare ver +organizzavate organizzare ver +organizzavo organizzare ver +organizzazione organizzazione nom +organizzazioni organizzazione nom +organizzerai organizzare ver +organizzeranno organizzare ver +organizzerebbe organizzare ver +organizzerebbero organizzare ver +organizzerei organizzare ver +organizzeremo organizzare ver +organizzerà organizzare ver +organizzi organizzare ver +organizziamo organizzare ver +organizziamoci organizzare ver +organizzino organizzare ver +organizzo organizzare ver +organizzò organizzare ver +organo organo nom +organogena organogeno adj +organogene organogeno adj +organogenesi organogenesi nom +organogeni organogeno adj +organogeno organogeno adj +organografia organografia nom +organolettica organolettico adj +organolettiche organolettico adj +organolettici organolettico adj +organolettico organolettico adj +organologia organologia nom +organologie organologia nom +organometalli organometallo nom +organometallica organometallico adj +organometallici organometallico adj +organometallico organometallico adj +organometallo organometallo nom +organopatismo organopatismo nom +organuli organulo nom +organulo organulo nom +organza organza nom +organze organza nom +organzino organzino nom +orgasmi orgasmo nom +orgasmo orgasmo nom +orge orgia nom +orgia orgia nom +orgiastica orgiastico adj +orgiastiche orgiastico adj +orgiastici orgiastico adj +orgiastico orgiastico adj +orgogli orgoglio nom +orgoglio orgoglio nom +orgogliosa orgoglioso adj +orgogliose orgoglioso adj +orgogliosi orgoglioso adj +orgoglioso orgoglioso adj +ori oro nom +oricalchi oricalco nom +oricalco oricalco nom +orienta orientare ver +orientabile orientabile adj +orientabili orientabile adj +orientaci orientare ver +orientala orientare ver +orientale orientale adj +orientaleggiante orientaleggiante adj +orientaleggianti orientaleggiante adj +orientali orientale adj +orientalista orientalista nom +orientaliste orientalista nom +orientalisti orientalista nom +orientalistica orientalistica nom +orientalistiche orientalistica nom +orientamenti orientamento nom +orientamento orientamento nom +orientando orientare ver +orientandola orientare ver +orientandole orientare ver +orientandoli orientare ver +orientandolo orientare ver +orientandomi orientare ver +orientandosi orientare ver +orientano orientare ver +orientante orientare ver +orientanti orientare ver +orientarci orientare ver +orientare orientare ver +orientarla orientare ver +orientarle orientare ver +orientarli orientare ver +orientarlo orientare ver +orientarmi orientare ver +orientarne orientare ver +orientarono orientare ver +orientarsi orientare ver +orientarti orientare ver +orientasi orientare ver +orientasse orientare ver +orientassero orientare ver +orientata orientare ver +orientate orientare ver +orientati orientare ver +orientativa orientativo adj +orientative orientativo adj +orientativi orientativo adj +orientativo orientativo adj +orientato orientare ver +orientava orientare ver +orientavano orientare ver +orientazione orientazione nom +orientazioni orientazione nom +oriente oriente nom +orienteranno orientare ver +orienterebbe orientare ver +orienterebbero orientare ver +orienterei orientare ver +orienteremo orientare ver +orienterà orientare ver +orienterò orientare ver +orienti orientare ver +orientiamo orientare ver +orientiamoci orientare ver +orientino orientare ver +oriento orientare ver +orientò orientare ver +orifiamma orifiamma nom +orifiamme orifiamma nom +orifizi orifizio nom +orifizio orifizio nom +origano origano nom +origina originare ver +originala originare ver +originale originale adj +originali originale adj +originalità originalità nom +originalo originare ver +originando originare ver +originandosi originare ver +originano originare ver +originante originare ver +originanti originare ver +originar originare ver +originare originare ver +originari originario adj +originaria originario adj +originariamente originariamente adv +originarie originario adj +originario originario adj +originarle originare ver +originarono originare ver +originarsene originare ver +originarsi originare ver +originasse originare ver +originassero originare ver +originata originare ver +originate originare ver +originatesi originare ver +originati originare ver +originato originare ver +originava originare ver +originavano originare ver +origine origine nom +origineranno originare ver +originerebbe originare ver +originerebbero originare ver +originerà originare ver +origini origine nom +originino originare ver +origino originare ver +originò originare ver +origlia origliare ver +origliando origliare ver +origliano origliare ver +origliare origliare ver +origliata origliare ver +origliato origliare ver +origliava origliare ver +origlio origliare ver +origliò origliare ver +orina orina nom +orinale orinare ver +orinali orinare ver +orinando orinare ver +orinandoci orinare ver +orinarci orinare ver +orinare orinare ver +orinargli orinare ver +orinato orinare ver +orine orina nom +orini orinare ver +orino orare ver +orinò orinare ver +orioli oriolo nom +oriolo oriolo nom +oritteropi oritteropo nom +oritteropo oritteropo nom +orizzonta orizzontare ver +orizzontale orizzontale adj +orizzontali orizzontale adj +orizzontalità orizzontalità nom +orizzontalmente orizzontalmente adv +orizzontamenti orizzontamento nom +orizzontarmi orizzontare ver +orizzontarsi orizzontare ver +orizzonte orizzonte nom +orizzonti orizzonte nom +orla orlare ver +orlando orlare ver +orlane orlare ver +orlano orlare ver +orlar orlare ver +orlare orlare ver +orlata orlare ver +orlate orlare ver +orlati orlare ver +orlato orlare ver +orlatura orlatura nom +orlature orlatura nom +orlava orlare ver +orli orlo nom +orlino orlare ver +orlo orlo nom +orlon orlon nom +orma orma nom +ormai ormai adv_sup +orme orma nom +ormeggi ormeggio nom +ormeggia ormeggiare ver +ormeggiando ormeggiare ver +ormeggiandosi ormeggiare ver +ormeggiano ormeggiare ver +ormeggiare ormeggiare ver +ormeggiarla ormeggiare ver +ormeggiarono ormeggiare ver +ormeggiarsi ormeggiare ver +ormeggiata ormeggiare ver +ormeggiate ormeggiare ver +ormeggiati ormeggiare ver +ormeggiato ormeggiare ver +ormeggiava ormeggiare ver +ormeggiavano ormeggiare ver +ormeggio ormeggio nom +ormeggiò ormeggiare ver +ormonale ormonale adj +ormonali ormonale adj +ormone ormone nom +ormoni ormone nom +ormonica ormonico adj +ormonoterapia ormonoterapia nom +orna ornare ver +ornale ornare ver +ornamentale ornamentale adj +ornamentali ornamentale adj +ornamentazione ornamentazione nom +ornamentazioni ornamentazione nom +ornamenti ornamento nom +ornamento ornamento nom +ornando ornare ver +ornandola ornare ver +ornandole ornare ver +ornandolo ornare ver +ornano ornare ver +ornante ornare ver +ornanti ornare ver +ornar ornare ver +ornare ornare ver +ornarla ornare ver +ornarlo ornare ver +ornarne ornare ver +ornarono ornare ver +ornarsi ornare ver +ornassero ornare ver +ornata ornare ver +ornate ornare ver +ornati ornare ver +ornatista ornatista nom +ornatisti ornatista nom +ornato ornare ver +ornatura ornatura nom +ornature ornatura nom +ornava ornare ver +ornavano ornare ver +ornavi ornare ver +orneblenda orneblenda nom +orneblende orneblenda nom +ornelli ornello nom +ornello ornello nom +orneranno ornare ver +ornerà ornare ver +orni orno nom +ornitologa ornitologo nom +ornitologi ornitologo nom +ornitologia ornitologia nom +ornitologica ornitologico adj +ornitologiche ornitologico adj +ornitologici ornitologico adj +ornitologico ornitologico adj +ornitologie ornitologia nom +ornitologo ornitologo nom +ornitorinchi ornitorinco nom +ornitorinco ornitorinco nom +orno orno nom +ornò ornare ver +oro oro nom +orobanche orobanche nom +orobica orobico adj +orobiche orobico adj +orobici orobico nom +orobico orobico adj +orogenesi orogenesi nom +orogenetica orogenetico adj +orogenetiche orogenetico adj +orogenetici orogenetico adj +orogenetico orogenetico adj +orografia orografia nom +orografica orografico adj +orografiche orografico adj +orografici orografico adj +orografico orografico adj +orografie orografia nom +orologeria orologeria nom +orologerie orologeria nom +orologi orologio nom +orologiai orologiaio nom +orologiaia orologiaio nom +orologiaio orologiaio nom +orologiera orologiero adj +orologiere orologiero adj +orologieri orologiero adj +orologiero orologiero adj +orologio orologio nom +oroscopi oroscopo nom +oroscopia oroscopia nom +oroscopo oroscopo nom +orpelli orpello nom +orpello orpello nom +orrenda orrendo adj +orrende orrendo adj +orrendi orrendo adj +orrendo orrendo adj +orribile orribile adj +orribili orribile adj +orribilmente orribilmente adv +orrida orrido adj +orride orrido adj +orridi orrido adj +orrido orrido adj +orripilante orripilante adj +orripilanti orripilante adj +orripilazione orripilazione nom +orrore orrore nom +orrori orrore nom +orsa orsa|orso nom +orsacchiotti orsacchiotto nom +orsacchiotto orsacchiotto nom +orse orsa|orso nom +orsi orso nom +orso orso nom +orsono orsono adv +orsu orsu int +ortaggi ortaggio nom +ortaggio ortaggio nom +ortaglia ortaglia nom +ortaglie ortaglia nom +ortensia ortensia nom +ortensie ortensia nom +orti orto nom +ortica ortica nom +orticaria orticaria nom +orticarie orticaria nom +ortiche ortica nom +orticola orticolo adj +orticole orticolo adj +orticoli orticolo adj +orticolo orticolo adj +orticoltore orticoltore nom +orticoltori orticoltore nom +orticoltura orticoltura nom +orticonoscopio orticonoscopio nom +ortiva ortivo adj +ortive ortivo adj +ortivi ortivo adj +ortivo ortivo adj +orto orto nom +ortocentro ortocentro nom +ortoclasio ortoclasio nom +ortocromatica ortocromatico adj +ortocromatiche ortocromatico adj +ortocromatici ortocromatico adj +ortocromatico ortocromatico adj +ortodontia ortodontia nom +ortodonzia ortodonzia nom +ortodossa ortodosso adj +ortodosse ortodosso adj +ortodossi ortodosso adj +ortodossia ortodossia nom +ortodossie ortodossia nom +ortodosso ortodosso adj +ortodromia ortodromia nom +ortodromica ortodromico adj +ortodromiche ortodromico adj +ortodromico ortodromico adj +ortoepia ortoepia nom +ortoepica ortoepico adj +ortoepiche ortoepico adj +ortoepico ortoepico adj +ortofonia ortofonia nom +ortofonica ortofonico adj +ortofrenia ortofrenia nom +ortofrutta ortofrutta nom +ortofrutticola ortofrutticolo adj +ortofrutticole ortofrutticolo adj +ortofrutticoli ortofrutticolo adj +ortofrutticolo ortofrutticolo adj +ortofrutticoltura ortofrutticoltura nom +ortogenesi ortogenesi nom +ortogenetica ortogenetico adj +ortognati ortognato adj +ortognato ortognato adj +ortogonale ortogonale adj +ortogonali ortogonale adj +ortogonalità ortogonalità nom +ortografia ortografia nom +ortografica ortografico adj +ortografiche ortografico adj +ortografici ortografico adj +ortografico ortografico adj +ortografie ortografia nom +ortolana ortolano nom +ortolane ortolano nom +ortolani ortolano nom +ortolano ortolano nom +ortomercato ortomercato nom +ortopedia ortopedia nom +ortopedica ortopedico adj +ortopediche ortopedico adj +ortopedici ortopedico adj +ortopedico ortopedico adj +ortopedie ortopedia nom +ortosio ortosio nom +ortotteri ortotteri nom +ortottica ortottica nom +ortottista ortottista nom +ortottisti ortottista nom +orvieti orvieto nom +orvieto orvieto nom +orza orza nom +orzaioli orzaiolo nom +orzaiolo orzaiolo nom +orzale orzare ver +orzali orzare ver +orzando orzare ver +orzano orzare ver +orzare orzare ver +orzata orzata nom +orzati orzare ver +orze orza nom +orzi orzo nom +orzo orzo nom +orò orare ver +osa osare ver +osai osare ver +osala osare ver +osami osare ver +osando osare ver +osanna osannare ver +osannale osannare ver +osannano osannare ver +osannante osannare ver +osannanti osannare ver +osannare osannare ver +osannarono osannare ver +osannata osannare ver +osannate osannare ver +osannati osannare ver +osannato osannare ver +osannava osannare ver +osannavano osannare ver +osanni osannare ver +osannò osannare ver +osano osare ver +osar osare ver +osare osare ver +osarono osare ver +osasse osare ver +osassero osare ver +osassi osare ver +osasti osare ver +osata osare ver +osate osare ver +osato osare ver +osava osare ver +osavano osare ver +osavo osare ver +oscar oscar nom +oscena osceno adj +oscene osceno adj +osceni osceno adj +oscenità oscenità nom +osceno osceno adj +oscilla oscillare ver +oscillando oscillare ver +oscillandole oscillare ver +oscillano oscillare ver +oscillante oscillare ver +oscillanti oscillare ver +oscillare oscillare ver +oscillarono oscillare ver +oscillasse oscillare ver +oscillata oscillare ver +oscillate oscillare ver +oscillati oscillare ver +oscillato oscillare ver +oscillatore oscillatore nom +oscillatori oscillatorio adj +oscillatoria oscillatorio adj +oscillatorie oscillatorio adj +oscillatorio oscillatorio adj +oscillava oscillare ver +oscillavano oscillare ver +oscillazione oscillazione nom +oscillazioni oscillazione nom +oscilleranno oscillare ver +oscillerebbe oscillare ver +oscillerebbero oscillare ver +oscillerà oscillare ver +oscilli oscillare ver +oscillino oscillare ver +oscillo oscillare ver +oscillografi oscillografo nom +oscillografo oscillografo nom +oscillogramma oscillogramma nom +oscilloscopi oscilloscopio nom +oscilloscopio oscilloscopio nom +oscillò oscillare ver +osculi osculo nom +osculo osculo nom +oscura oscuro adj +oscuramenti oscuramento nom +oscuramento oscuramento nom +oscurando oscurare ver +oscurandoci oscurare ver +oscurandoli oscurare ver +oscurandolo oscurare ver +oscurandone oscurare ver +oscurandosi oscurare ver +oscurano oscurare ver +oscurante oscurare ver +oscuranti oscurare ver +oscurantismo oscurantismo nom +oscurantista oscurantista nom +oscurantiste oscurantista nom +oscurantisti oscurantista nom +oscurarci oscurare ver +oscurare oscurare ver +oscurargli oscurare ver +oscurarla oscurare ver +oscurarle oscurare ver +oscurarli oscurare ver +oscurarlo oscurare ver +oscurarne oscurare ver +oscurarono oscurare ver +oscurarsi oscurare ver +oscurasse oscurare ver +oscurassero oscurare ver +oscurassimo oscurare ver +oscurata oscurare ver +oscurate oscurare ver +oscurati oscurare ver +oscurato oscurare ver +oscurava oscurare ver +oscuravano oscurare ver +oscure oscuro adj +oscureranno oscurare ver +oscurerebbe oscurare ver +oscurerebbero oscurare ver +oscurerei oscurare ver +oscurerete oscurare ver +oscurerà oscurare ver +oscurerò oscurare ver +oscuri oscuro adj +oscuriamo oscurare ver +oscurino oscurare ver +oscurità oscurità nom +oscuro oscuro adj +oscurò oscurare ver +oseranno osare ver +oserebbe osare ver +oserebbero osare ver +oserei osare ver +oseremmo osare ver +osereste osare ver +oseresti osare ver +oserete osare ver +oserà osare ver +oserò osare ver +osi osare ver +osiamo osare ver +osino osare ver +osmi osmio nom +osmio osmio nom +osmometro osmometro nom +osmosi osmosi nom +osmotica osmotico adj +osmotiche osmotico adj +osmotici osmotico adj +osmotico osmotico adj +oso osare ver +osol osol nom +ospedale ospedale nom +ospedali ospedale nom +ospedaliera ospedaliero adj +ospedaliere ospedaliero adj +ospedalieri ospedaliero adj +ospedaliero ospedaliero adj +ospedalizzare ospedalizzare ver +ospedalizzata ospedalizzare ver +ospedalizzate ospedalizzare ver +ospedalizzati ospedalizzare ver +ospedalizzato ospedalizzare ver +ospedalizzazione ospedalizzazione nom +ospedalizzazioni ospedalizzazione nom +ospita ospitare ver +ospitale ospitale adj +ospitali ospitale adj +ospitalità ospitalità nom +ospitando ospitare ver +ospitandola ospitare ver +ospitandoli ospitare ver +ospitandolo ospitare ver +ospitandone ospitare ver +ospitandovi ospitare ver +ospitano ospitare ver +ospitante ospitare ver +ospitanti ospitare ver +ospitar ospitare ver +ospitarci ospitare ver +ospitare ospitare ver +ospitarla ospitare ver +ospitarle ospitare ver +ospitarli ospitare ver +ospitarlo ospitare ver +ospitarmi ospitare ver +ospitarne ospitare ver +ospitarono ospitare ver +ospitarvi ospitare ver +ospitasse ospitare ver +ospitassero ospitare ver +ospitata ospitare ver +ospitate ospitare ver +ospitati ospitare ver +ospitato ospitare ver +ospitava ospitare ver +ospitavano ospitare ver +ospitavo ospitare ver +ospite ospite adj +ospiteranno ospitare ver +ospiterebbe ospitare ver +ospiterà ospitare ver +ospiti ospite nom +ospitiamo ospitare ver +ospitino ospitare ver +ospito ospitare ver +ospitò ospitare ver +ospizi ospizio nom +ospizio ospizio nom +ossa osso nom +ossame ossame nom +ossari ossario nom +ossario ossario nom +ossatura ossatura nom +ossature ossatura nom +ossea osseo adj +ossee osseo adj +ossei osseo adj +osseo osseo adj +ossequente ossequente adj +ossequenti ossequente adj +ossequi ossequio nom +ossequiando ossequiare ver +ossequiare ossequiare ver +ossequiati ossequiare ver +ossequiato ossequiare ver +ossequiente ossequiente adj +ossequienti ossequiente adj +ossequio ossequio nom +ossequiosa ossequioso adj +ossequiosi ossequioso adj +ossequiosità ossequiosità nom +ossequioso ossequioso adj +ossequiò ossequiare ver +osserva osservare ver +osservabile osservabile adj +osservabili osservabile adj +osservabilità osservabilità nom +osservai osservare ver +osservale osservare ver +osservami osservare ver +osservammo osservare ver +osservando osservare ver +osservandola osservare ver +osservandole osservare ver +osservandoli osservare ver +osservandolo osservare ver +osservandone osservare ver +osservandosi osservare ver +osservano osservare ver +osservante osservante adj +osservanti osservante adj +osservanza osservanza nom +osservanze osservanza nom +osservar osservare ver +osservarci osservare ver +osservare osservare ver +osservarla osservare ver +osservarle osservare ver +osservarli osservare ver +osservarlo osservare ver +osservarne osservare ver +osservarono osservare ver +osservarsi osservare ver +osservarti osservare ver +osservarvi osservare ver +osservasi osservare ver +osservasse osservare ver +osservassero osservare ver +osservassimo osservare ver +osservata osservare ver +osservate osservare ver +osservati osservare ver +osservato osservare ver +osservatore osservatore adj +osservatori osservatore|osservatorio nom +osservatorio osservatorio nom +osservatorî osservatorio nom +osservatrice osservatore nom +osservatrici osservatore adj +osservava osservare ver +osservavamo osservare ver +osservavano osservare ver +osservavo osservare ver +osservazione osservazione nom +osservazioni osservazione nom +osserverai osservare ver +osserveranno osservare ver +osserverebbe osservare ver +osserverebbero osservare ver +osserveremmo osservare ver +osserveremo osservare ver +osserverete osservare ver +osserverà osservare ver +osserverò osservare ver +osservi osservare ver +osserviamo osservare ver +osservino osservare ver +osservo osservare ver +osservò osservare ver +ossessa ossesso nom +ossessi ossesso nom +ossessiona ossessionare ver +ossessionando ossessionare ver +ossessionandola ossessionare ver +ossessionano ossessionare ver +ossessionante ossessionare ver +ossessionanti ossessionare ver +ossessionare ossessionare ver +ossessionarlo ossessionare ver +ossessionarsi ossessionare ver +ossessionata ossessionare ver +ossessionate ossessionare ver +ossessionati ossessionare ver +ossessionato ossessionare ver +ossessionava ossessionare ver +ossessionavano ossessionare ver +ossessione ossessione nom +ossessionerà ossessionare ver +ossessioni ossessione nom +ossessionò ossessionare ver +ossessiva ossessivo adj +ossessive ossessivo adj +ossessivi ossessivo adj +ossessività ossessività nom +ossessivo ossessivo adj +ossesso ossesso adj +ossevazioni ossevazione nom +ossi osso nom +ossia ossia con +ossiacetilenica ossiacetilenico adj +ossiacetilenico ossiacetilenico adj +ossiacidi ossiacido nom +ossiacido ossiacido nom +ossicini ossicino nom +ossicino ossicino nom +ossida ossidare ver +ossidabile ossidabile adj +ossidabili ossidabile adj +ossidando ossidare ver +ossidandoli ossidare ver +ossidandolo ossidare ver +ossidandosi ossidare ver +ossidano ossidare ver +ossidante ossidante adj +ossidanti ossidante adj +ossidare ossidare ver +ossidarla ossidare ver +ossidarlo ossidare ver +ossidarsi ossidare ver +ossidasi ossidasi nom +ossidata ossidare ver +ossidate ossidare ver +ossidati ossidare ver +ossidato ossidare ver +ossidazione ossidazione nom +ossidazioni ossidazione nom +ossiderebbe ossidare ver +ossidi ossido nom +ossidiana ossidiana nom +ossidiane ossidiana nom +ossidionale ossidionale adj +ossidionali ossidionale adj +ossido ossido nom +ossidoriduzione ossidoriduzione nom +ossidrica ossidrico adj +ossidriche ossidrico adj +ossidrile ossidrile nom +ossidrili ossidrile nom +ossiemoglobina ossiemoglobina nom +ossifera ossifero adj +ossifere ossifero adj +ossiferi ossifero adj +ossifica ossificare ver +ossificano ossificare ver +ossificante ossificare ver +ossificare ossificare ver +ossificarsi ossificare ver +ossificata ossificare ver +ossificate ossificare ver +ossificati ossificare ver +ossificato ossificare ver +ossificazione ossificazione nom +ossificazioni ossificazione nom +ossigena ossigenare ver +ossigenano ossigenare ver +ossigenante ossigenare ver +ossigenare ossigenare ver +ossigenarle ossigenare ver +ossigenarlo ossigenare ver +ossigenarsi ossigenare ver +ossigenasi ossigenare ver +ossigenata ossigenare ver +ossigenate ossigenare ver +ossigenati ossigenare ver +ossigenato ossigenare ver +ossigenatore ossigenatore nom +ossigenatori ossigenatore nom +ossigenatura ossigenatura nom +ossigenazione ossigenazione nom +ossigeni ossigenare ver +ossigeno ossigeno nom +ossigenoterapia ossigenoterapia nom +ossimetro ossimetro nom +ossimori ossimoro nom +ossimoro ossimoro nom +ossitaglio ossitaglio nom +ossitona ossitono adj +ossitone ossitono adj +ossitoni ossitono adj +ossitono ossitono adj +ossiuriasi ossiuriasi nom +ossiuro ossiuro nom +osso osso nom +ossobuco ossobuco nom +ossuta ossuto adj +ossute ossuto adj +ossuti ossuto adj +ossuto ossuto adj +osta ostare ver +ostacola ostacolare ver +ostacolando ostacolare ver +ostacolandoli ostacolare ver +ostacolandolo ostacolare ver +ostacolandone ostacolare ver +ostacolandosi ostacolare ver +ostacolano ostacolare ver +ostacolante ostacolare ver +ostacolanti ostacolare ver +ostacolarci ostacolare ver +ostacolare ostacolare ver +ostacolargli ostacolare ver +ostacolarla ostacolare ver +ostacolarle ostacolare ver +ostacolarli ostacolare ver +ostacolarlo ostacolare ver +ostacolarne ostacolare ver +ostacolarono ostacolare ver +ostacolarsi ostacolare ver +ostacolarti ostacolare ver +ostacolarvi ostacolare ver +ostacolasse ostacolare ver +ostacolassero ostacolare ver +ostacolata ostacolare ver +ostacolate ostacolare ver +ostacolati ostacolare ver +ostacolato ostacolare ver +ostacolava ostacolare ver +ostacolavano ostacolare ver +ostacoleranno ostacolare ver +ostacolerebbe ostacolare ver +ostacolerebbero ostacolare ver +ostacolerà ostacolare ver +ostacoli ostacolo nom +ostacolino ostacolare ver +ostacolista ostacolista nom +ostacolisti ostacolista nom +ostacolo ostacolo nom +ostacolò ostacolare ver +ostaggi ostaggio nom +ostaggio ostaggio nom +ostale ostare ver +ostali ostare ver +ostalo ostare ver +ostane ostare ver +ostano ostare ver +ostante ostare ver +ostanti ostare ver +ostar ostare ver +ostare ostare ver +ostasse ostare ver +ostati ostare ver +ostativa ostativo adj +ostative ostativo adj +ostativi ostativo adj +ostativo ostativo adj +ostava ostare ver +ostavano ostare ver +oste oste nom +osteggerei osteggiare ver +osteggerà osteggiare ver +osteggi osteggiare ver +osteggia osteggiare ver +osteggiamo osteggiare ver +osteggiando osteggiare ver +osteggiandolo osteggiare ver +osteggiano osteggiare ver +osteggiare osteggiare ver +osteggiarla osteggiare ver +osteggiarli osteggiare ver +osteggiarlo osteggiare ver +osteggiarono osteggiare ver +osteggiasse osteggiare ver +osteggiata osteggiare ver +osteggiate osteggiare ver +osteggiati osteggiare ver +osteggiato osteggiare ver +osteggiava osteggiare ver +osteggiavano osteggiare ver +osteggio osteggiare ver +osteggiò osteggiare ver +osteite osteite nom +ostelli ostello nom +ostello ostello nom +ostensibile ostensibile adj +ostensibilmente ostensibilmente adv +ostensione ostensione nom +ostensioni ostensione nom +ostensore ostensore nom +ostensori ostensore|ostensorio nom +ostensorio ostensorio nom +ostenta ostentare ver +ostentando ostentare ver +ostentano ostentare ver +ostentante ostentare ver +ostentare ostentare ver +ostentarla ostentare ver +ostentarli ostentare ver +ostentarlo ostentare ver +ostentarono ostentare ver +ostentasse ostentare ver +ostentassero ostentare ver +ostentata ostentare ver +ostentate ostentare ver +ostentati ostentare ver +ostentato ostentare ver +ostentava ostentare ver +ostentavano ostentare ver +ostentazione ostentazione nom +ostentazioni ostentazione nom +ostenti ostentare ver +ostentino ostentare ver +ostento ostentare ver +ostentò ostentare ver +osteoblasti osteoblasto nom +osteoblasto osteoblasto nom +osteoclasta osteoclasta nom +osteoclasti osteoclasta|osteoclasto nom +osteoclasto osteoclasto nom +osteologia osteologia nom +osteologie osteologia nom +osteoma osteoma nom +osteomi osteoma nom +osteomielite osteomielite nom +osteomieliti osteomielite nom +osteopatia osteopatia nom +osteoporosi osteoporosi nom +osteotomia osteotomia nom +osteotomie osteotomia nom +osterebbe ostare ver +osterei ostare ver +osteria osteria nom +osterie osteria nom +osteriggio osteriggio nom +ostessa oste|ostessa nom +ostesse oste nom +ostetrica ostetrico adj +ostetriche ostetrico adj +ostetrici ostetrico adj +ostetricia ostetricia nom +ostetrico ostetrico adj +osti oste nom +ostia ostia nom +ostiari ostiario nom +ostiariato ostiariato nom +ostiario ostiario nom +ostica ostico adj +ostiche ostico adj +ostici ostico adj +ostico ostico adj +ostie ostia nom +ostile ostile adj +ostili ostile adj +ostilità ostilità nom +ostina ostinarsi ver +ostinando ostinarsi ver +ostinandosi ostinarsi ver +ostinano ostinarsi ver +ostinare ostinarsi ver +ostinarmi ostinarsi ver +ostinarono ostinarsi ver +ostinarsi ostinarsi ver +ostinarti ostinarsi ver +ostinasse ostinarsi ver +ostinata ostinato adj +ostinate ostinato adj +ostinatezza ostinatezza nom +ostinati ostinato adj +ostinato ostinato adj +ostinava ostinarsi ver +ostinavano ostinarsi ver +ostinazione ostinazione nom +ostinazioni ostinazione nom +ostinerebbe ostinarsi ver +ostinerà ostinarsi ver +ostini ostinarsi ver +ostiniamo ostinarsi ver +ostinino ostinarsi ver +ostino ostinarsi ver +ostinò ostinarsi ver +osto ostare ver +ostracismi ostracismo nom +ostracismo ostracismo nom +ostracizzare ostracizzare ver +ostracizzarla ostracizzare ver +ostracizzarlo ostracizzare ver +ostracizzata ostracizzare ver +ostracizzate ostracizzare ver +ostracizzati ostracizzare ver +ostracizzato ostracizzare ver +ostracizziamo ostracizzare ver +ostracizzò ostracizzare ver +ostri ostro nom +ostrica ostrica nom +ostriche ostrica nom +ostricoltura ostricoltura nom +ostro ostro nom +ostrogota ostrogoto adj +ostrogote ostrogoto adj +ostrogoti ostrogoto nom +ostrogoto ostrogoto adj +ostruendo ostruire ver +ostruendola ostruire ver +ostruendoli ostruire ver +ostruendolo ostruire ver +ostruendone ostruire ver +ostruente ostruire ver +ostruenti ostruire ver +ostruire ostruire ver +ostruirebbero ostruire ver +ostruirlo ostruire ver +ostruirne ostruire ver +ostruirono ostruire ver +ostruirsi ostruire ver +ostruirà ostruire ver +ostruisca ostruire ver +ostruiscano ostruire ver +ostruisce ostruire ver +ostruiscono ostruire ver +ostruisse ostruire ver +ostruita ostruire ver +ostruite ostruire ver +ostruiti ostruire ver +ostruito ostruire ver +ostruiva ostruire ver +ostruivano ostruire ver +ostruzione ostruzione nom +ostruzioni ostruzione nom +ostruzionismi ostruzionismo nom +ostruzionismo ostruzionismo nom +ostruzionista ostruzionista nom +ostruzionisti ostruzionista nom +ostruzionistica ostruzionistico adj +ostruzionistiche ostruzionistico adj +ostruzionistici ostruzionistico adj +ostruzionistico ostruzionistico adj +ostruì ostruire ver +osé osé adj +osò osare ver +otalgia otalgia nom +otalgie otalgia nom +otarda otarda nom +otarde otarda nom +otaria otaria nom +otarie otaria nom +otite otite nom +otiti otite nom +otoiatra otoiatra nom +otorinolaringoiatra otorinolaringoiatra nom +otorinolaringoiatri otorinolaringoiatra nom +otorinolaringoiatria otorinolaringoiatria nom +otoscopi otoscopio nom +otoscopia otoscopia nom +otoscopio otoscopio nom +otre otre nom +otri otre nom +otricoli otricolo nom +otricolo otricolo nom +ottaedri ottaedro nom +ottaedro ottaedro nom +ottagonale ottagonale adj +ottagonali ottagonale adj +ottagoni ottagono nom +ottagono ottagono nom +ottani ottano nom +ottanica ottanico adj +ottano ottano nom +ottanta ottanta adj +ottante ottante nom +ottantenne ottantenne adj +ottantenni ottantenne nom +ottantesima ottantesimo adj +ottantesimo ottantesimo adj +ottanti ottante nom +ottantina ottantina nom +ottantotto ottantotto adj +ottantuno ottantuno adj +ottativi ottativo nom +ottativo ottativo nom +ottava ottavo adj +ottavario ottavario nom +ottave ottava|ottavo nom +ottavi ottavo adj +ottavini ottavino nom +ottavino ottavino nom +ottavo ottavo adj +ottempera ottemperare ver +ottemperando ottemperare ver +ottemperano ottemperare ver +ottemperante ottemperare ver +ottemperanti ottemperare ver +ottemperanza ottemperanza nom +ottemperanze ottemperanza nom +ottemperare ottemperare ver +ottemperarono ottemperare ver +ottemperasse ottemperare ver +ottemperata ottemperare ver +ottemperate ottemperare ver +ottemperati ottemperare ver +ottemperato ottemperare ver +ottemperava ottemperare ver +ottemperavano ottemperare ver +ottempererà ottemperare ver +ottemperi ottemperare ver +ottemperò ottemperare ver +ottenebra ottenebrare ver +ottenebramento ottenebramento nom +ottenebrando ottenebrare ver +ottenebrano ottenebrare ver +ottenebrare ottenebrare ver +ottenebrata ottenebrare ver +ottenebrate ottenebrare ver +ottenebrati ottenebrare ver +ottenebrato ottenebrare ver +ottenemmo ottenere ver +ottenendo ottenere ver +ottenendogli ottenere ver +ottenendola ottenere ver +ottenendole ottenere ver +ottenendoli ottenere ver +ottenendolo ottenere ver +ottenendone ottenere ver +ottenendosi ottenere ver +ottenendovi ottenere ver +ottener ottenere ver +ottenere ottenere ver +ottenergli ottenere ver +ottenerla ottenere ver +ottenerle ottenere ver +ottenerli ottenere ver +ottenerlo ottenere ver +ottenerne ottenere ver +ottenersi ottenere ver +ottenervi ottenere ver +ottenesse ottenere ver +ottenessero ottenere ver +ottenessi ottenere ver +ottenete ottenere ver +otteneva ottenere ver +ottenevano ottenere ver +ottenevo ottenere ver +ottenga ottenere ver +ottengano ottenere ver +ottengo ottenere ver +ottengono ottenere ver +otteniamo ottenere ver +ottenibile ottenibile adj +ottenibili ottenibile adj +ottenimento ottenimento nom +ottenne ottenere ver +ottennero ottenere ver +ottenni ottenere ver +ottentotta ottentotto adj +ottentotte ottentotto adj +ottentotti ottentotto nom +ottentotto ottentotto adj +ottenuta ottenere ver +ottenute ottenere ver +ottenuti ottenere ver +ottenuto ottenere ver +otterrai ottenere ver +otterranno ottenere ver +otterrebbe ottenere ver +otterrebbero ottenere ver +otterrei ottenere ver +otterremmo ottenere ver +otterremo ottenere ver +otterresti ottenere ver +otterrete ottenere ver +otterrà ottenere ver +otterrò ottenere ver +ottetti ottetto nom +ottetto ottetto nom +ottica ottico adj +ottiche ottico adj +ottici ottico adj +ottico ottico adj +ottiene ottenere ver +ottieni ottenere ver +ottima ottimo adj +ottimale ottimale adj +ottimali ottimale adj +ottimamente ottimamente adv +ottimate ottimate nom +ottimati ottimate nom +ottime ottimo adj +ottimi ottimo adj +ottimismi ottimismo nom +ottimismo ottimismo nom +ottimista ottimista nom +ottimiste ottimista nom +ottimisti ottimista nom +ottimistica ottimistico adj +ottimistiche ottimistico adj +ottimistici ottimistico adj +ottimistico ottimistico adj +ottimizza ottimizzare ver +ottimizzando ottimizzare ver +ottimizzandole ottimizzare ver +ottimizzandolo ottimizzare ver +ottimizzandone ottimizzare ver +ottimizzano ottimizzare ver +ottimizzante ottimizzare ver +ottimizzare ottimizzare ver +ottimizzarla ottimizzare ver +ottimizzarle ottimizzare ver +ottimizzarlo ottimizzare ver +ottimizzarne ottimizzare ver +ottimizzarono ottimizzare ver +ottimizzasse ottimizzare ver +ottimizzata ottimizzare ver +ottimizzate ottimizzare ver +ottimizzati ottimizzare ver +ottimizzato ottimizzare ver +ottimizzava ottimizzare ver +ottimizzavano ottimizzare ver +ottimizzazione ottimizzazione nom +ottimizzazioni ottimizzazione nom +ottimizzerà ottimizzare ver +ottimizzi ottimizzare ver +ottimizzò ottimizzare ver +ottimo ottimo adj +otto otto adj_sup +ottobre ottobre nom +ottobrina ottobrino adj +ottobrini ottobrino adj +ottobrino ottobrino adj +ottocentesca ottocentesco adj +ottocentesche ottocentesco adj +ottocenteschi ottocentesco adj +ottocentesco ottocentesco adj +ottocentista ottocentista nom +ottocentisti ottocentista nom +ottocento ottocento adj +ottomana ottomano adj +ottomane ottomano adj +ottomani ottomano adj +ottomano ottomano adj +ottomila ottomila adj +ottonai ottonare ver +ottonami ottoname nom +ottonari ottonario nom +ottonario ottonario nom +ottone ottone nom +ottoni ottone nom +ottotipi ottotipo nom +ottotipo ottotipo nom +ottuagenari ottuagenario adj +ottuagenaria ottuagenario adj +ottuagenario ottuagenario adj +ottunde ottundere ver +ottundente ottundere ver +ottunderebbe ottundere ver +ottundeva ottundere ver +ottundimento ottundimento nom +ottupla ottuplo adj +ottuple ottuplo adj +ottupli ottuplo adj +ottuplice ottuplice adj +ottuplo ottuplo adj +ottura otturare ver +otturando otturare ver +otturano otturare ver +otturare otturare ver +otturata otturare ver +otturate otturare ver +otturati otturare ver +otturato otturare ver +otturatore otturatore adj +otturatori otturatore nom +otturava otturare ver +otturazione otturazione nom +otturazioni otturazione nom +otturi otturare ver +otturino otturare ver +otturò otturare ver +ottusa ottuso adj +ottusangoli ottusangolo adj +ottusangolo ottusangolo adj +ottuse ottuso adj +ottusi ottuso adj +ottusità ottusità nom +ottuso ottuso adj +out out nom +outdoor outdoor adj +output output nom +outrigger outrigger nom +outsider outsider nom +ouverture ouverture nom +ova ovo nom +ovaia ovaia nom +ovaie ovaia nom +ovaio ovaio nom +ovale ovale adj +ovali ovale adj +ovari ovario nom +ovario ovario nom +ovata ovato adj +ovate ovato adj +ovati ovato adj +ovato ovato adj +ovatta ovatta nom +ovattata ovattare ver +ovattate ovattare ver +ovattati ovattare ver +ovattato ovattare ver +ovatte ovatta nom +ovazione ovazione nom +ovazioni ovazione nom +ove ove adv +over over nom +overdose overdose nom +overdrive overdrive nom +ovest ovest nom +ovidotti ovidotto nom +ovidotto ovidotto nom +ovidutti ovidutto nom +ovidutto ovidutto nom +ovile ovile nom +ovili ovile nom +ovina ovino adj +ovine ovino adj +ovini ovino adj +ovino ovino adj +ovipara oviparo adj +ovipare oviparo adj +ovipari oviparo adj +oviparo oviparo adj +ovo ovo nom +ovoidale ovoidale adj +ovoidali ovoidale adj +ovoide ovoide adj +ovoidi ovoide adj +ovolaccio ovolaccio nom +ovoli ovolo nom +ovolo ovolo nom +ovopositore ovopositore adj +ovopositori ovopositore adj +ovovia ovovia nom +ovovie ovovia nom +ovovivipara ovoviviparo adj +ovovivipare ovoviviparo adj +ovovivipari ovoviviparo adj +ovoviviparo ovoviviparo adj +ovulazione ovulazione nom +ovulazioni ovulazione nom +ovuli ovulo nom +ovulo ovulo nom +ovunque ovunque adv_sup +ovvero ovvero con +ovverosia ovverosia adv +ovvi ovvio adj +ovvia ovvio adj +ovviamene ovviare ver +ovviamente ovviamente adv_sup +ovviando ovviare ver +ovviano ovviare ver +ovviar ovviare ver +ovviare ovviare ver +ovviarne ovviare ver +ovviarono ovviare ver +ovviarsi ovviare ver +ovviarvi ovviare ver +ovviasse ovviare ver +ovviata ovviare ver +ovviate ovviare ver +ovviati ovviare ver +ovviato ovviare ver +ovviava ovviare ver +ovviavano ovviare ver +ovvie ovvio adj +ovvierebbe ovviare ver +ovvietà ovvietà nom +ovvii ovviare ver +ovvio ovvio adj +ovviò ovviare ver +oxalidacee oxalidacee nom +oxford oxford nom +ozelot ozelot nom +ozi ozio nom +ozia oziare ver +oziando oziare ver +oziano oziare ver +oziare oziare ver +ozino oziare ver +ozio ozio nom +oziosa ozioso adj +oziose ozioso adj +oziosi ozioso adj +oziosità oziosità nom +ozioso ozioso adj +ozonizzatore ozonizzatore nom +ozonizzatori ozonizzatore nom +ozonizzazione ozonizzazione nom +ozono ozono nom +ozonosfera ozonosfera nom +oïl oïl adv +p p abr +pabbi pascere ver +paca paca nom +pacala pacare ver +pacando pacare ver +pacar pacare ver +pacare pacare ver +pacassi pacare ver +pacata pacato adj +pacate pacato adj +pacatezza pacatezza nom +pacati pacato adj +pacato pacato adj +pacavi pacare ver +pacca pacca nom +pacce pacca nom +pacchetti pacchetto nom +pacchetto pacchetto nom +pacchi pacco nom +pacchia pacchia nom +pacchiana pacchiano adj +pacchiane pacchiano adj +pacchianeria pacchianeria nom +pacchiani pacchiano adj +pacchiano pacchiano adj +pacciamatura pacciamatura nom +pacciamature pacciamatura nom +pacco pacco nom +paccottiglia paccottiglia nom +pace pace nom +pachi pacare ver +pachiderma pachiderma nom +pachidermi pachiderma nom +pachidermia pachidermia nom +pachino pacare ver +paci pace nom +paciera paciere nom +paciere paciere nom +pacieri paciere nom +pacifica pacifico adj +pacificaci pacificare ver +pacificai pacificare ver +pacificamene pacificare ver +pacificamente pacificamente adv +pacificando pacificare ver +pacificante pacificare ver +pacificare pacificare ver +pacificarla pacificare ver +pacificarli pacificare ver +pacificarlo pacificare ver +pacificarne pacificare ver +pacificarono pacificare ver +pacificarsi pacificare ver +pacificata pacificare ver +pacificate pacificare ver +pacificati pacificare ver +pacificato pacificare ver +pacificatore pacificatore adj +pacificatori pacificatore nom +pacificatrice pacificatore adj +pacificatrici pacificatore adj +pacificazione pacificazione nom +pacificazioni pacificazione nom +pacifiche pacifico adj +pacificherò pacificare ver +pacifici pacifico adj +pacifico pacifico adj +pacificò pacificare ver +pacifismi pacifismo nom +pacifismo pacifismo nom +pacifista pacifista nom +pacifiste pacifista nom +pacifisti pacifista nom +pacioccone pacioccone nom +paciosa pacioso adj +paciose pacioso adj +pacioso pacioso adj +pack pack nom +paco pacare ver +padana padano adj +padane padano adj +padani padano adj +padano padano adj +paddock paddock nom +padella padella nom +padellata padellata nom +padellate padellata nom +padelle padella nom +padiglione padiglione nom +padiglioni padiglione nom +padovana padovano adj +padovane padovano adj +padovani padovano adj +padovano padovano adj +padre padre nom +padrenostro padrenostro nom +padreterni padreterno nom +padreterno padreterno nom +padri padre nom +padrini padrino nom +padrino padrino nom +padrona padrone nom +padronale padronale adj +padronali padronale adj +padronanza padronanza nom +padronato padronato nom +padroncini padroncino nom +padroncino padroncino nom +padrone padrone nom +padroneggi padroneggiare ver +padroneggia padroneggiare ver +padroneggiando padroneggiare ver +padroneggiane padroneggiare ver +padroneggiano padroneggiare ver +padroneggianti padroneggiare ver +padroneggiare padroneggiare ver +padroneggiarla padroneggiare ver +padroneggiarle padroneggiare ver +padroneggiarli padroneggiare ver +padroneggiarlo padroneggiare ver +padroneggiarne padroneggiare ver +padroneggiarono padroneggiare ver +padroneggiarsi padroneggiare ver +padroneggiasse padroneggiare ver +padroneggiata padroneggiare ver +padroneggiate padroneggiare ver +padroneggiati padroneggiare ver +padroneggiato padroneggiare ver +padroneggiava padroneggiare ver +padroneggiavano padroneggiare ver +padroneggio padroneggiare ver +padroneggiò padroneggiare ver +padroni padrone nom +padule padule nom +paduli padule nom +paella paella nom +paesaggi paesaggio nom +paesaggio paesaggio nom +paesaggista paesaggista nom +paesaggisti paesaggista nom +paesaggistica paesaggistico adj +paesaggistiche paesaggistico adj +paesaggistici paesaggistico adj +paesaggistico paesaggistico adj +paesana paesano adj +paesane paesano adj +paesani paesano nom +paesano paesano adj +paese paese nom +paesi paese nom +paesista paesista nom +paesisti paesista nom +paesistica paesistico adj +paesistiche paesistico adj +paesistici paesistico adj +paesistico paesistico adj +paffuta paffuto adj +paffute paffuto adj +paffuti paffuto adj +paffuto paffuto adj +pag pag abr +paga pagare ver +pagabile pagabile adj +pagabili pagabile adj +pagai pagare ver +pagaia pagaia nom +pagaie pagaia nom +pagala pagare ver +pagalo pagare ver +pagamenti pagamento nom +pagamento pagamento nom +pagami pagare ver +pagammo pagare ver +pagana pagano adj +pagando pagare ver +pagandogli pagare ver +pagandola pagare ver +pagandole pagare ver +pagandoli pagare ver +pagandolo pagare ver +pagandone pagare ver +pagandosi pagare ver +pagane pagano adj +paganeggiante paganeggiare ver +paganeggianti paganeggiare ver +paganesimi paganesimo nom +paganesimo paganesimo nom +pagani pagano adj +pagano pagano adj +pagante pagante adj +paganti pagante adj +pagar pagare ver +pagare pagare ver +pagargli pagare ver +pagarglieli pagare ver +pagarla pagare ver +pagarle pagare ver +pagarli pagare ver +pagarlo pagare ver +pagarmi pagare ver +pagarne pagare ver +pagarono pagare ver +pagarsela pagare ver +pagarselo pagare ver +pagarsi pagare ver +pagarti pagare ver +pagarvi pagare ver +pagasse pagare ver +pagassero pagare ver +pagassi pagare ver +pagassimo pagare ver +pagasti pagare ver +pagata pagare ver +pagate pagare ver +pagategli pagare ver +pagati pagare ver +pagato pagare ver +pagatore pagatore adj +pagatori pagatore adj +pagatrice pagatore adj +pagava pagare ver +pagavano pagare ver +pagavo pagare ver +pagella pagella nom +pagelle pagella nom +pagelli pagello nom +pagello pagello nom +pagg pagg abr +paggetti paggetto nom +paggetto paggetto nom +paggi paggio nom +paggio paggio nom +paghe paga nom +pagherai pagare ver +pagheranno pagare ver +pagherebbe pagare ver +pagherebbero pagare ver +pagherei pagare ver +pagheremmo pagare ver +pagheremo pagare ver +paghereste pagare ver +pagheresti pagare ver +pagherete pagare ver +pagherà pagare ver +pagherò pagare ver +paghetta paghetta nom +paghi pago adj +paghiamo pagare ver +paghino pagare ver +pagina pagina nom +pagine pagina nom +paglia paglia nom +pagliaccetti pagliaccetto nom +pagliaccetto pagliaccetto nom +pagliacci pagliaccio nom +pagliaccia pagliaccio nom +pagliacciata pagliacciata nom +pagliacciate pagliacciata nom +pagliaccio pagliaccio nom +pagliai pagliaio nom +pagliaio pagliaio nom +pagliata pagliata nom +pagliate pagliata nom +paglie paglia nom +pagliericci pagliericcio nom +pagliericcio pagliericcio nom +paglierina paglierino adj +paglierini paglierino adj +paglierino paglierino adj +paglietta paglietta nom +pagliette paglietta nom +paglioli pagliolo nom +pagliolo pagliolo nom +paglione paglione nom +paglioni paglione nom +pagliuzza pagliuzza nom +pagliuzze pagliuzza nom +pagnotta pagnotta nom +pagnotte pagnotta nom +pagnottella pagnottella nom +pagnottelle pagnottella nom +pago pago adj +pagoda pagoda nom +pagode pagoda nom +paguri paguro nom +paguro paguro nom +pagò pagare ver +paia parere ver +paiamo parere ver +paiano parere ver +paillard paillard nom +paillette paillette nom +paio paio nom +paioli paiolo nom +paiolo paiolo nom +paiono parere ver +paisà paisà nom +pakistana pakistano adj +pakistane pakistano adj +pakistani pakistano adj +pakistano pakistano adj +pala pala nom +palaci palare ver +paladina paladino nom +paladine paladino nom +paladini paladino nom +paladino paladino nom +palafitta palafitta nom +palafitte palafitta nom +palafitticola palafitticolo adj +palafitticole palafitticolo adj +palafitticoli palafitticolo adj +palafitticolo palafitticolo adj +palafreni palafreno nom +palafreniere palafreniere nom +palafrenieri palafreniere nom +palafreno palafreno nom +palai palare ver +palaia palaia nom +palaie palaia nom +palala palare ver +palale palare ver +palamidone palamidone nom +palamita palamita nom +palamite palamita nom +palamiti palamito nom +palamito palamito nom +palanca palanca nom +palanche palanca nom +palanchini palanchino nom +palanchino palanchino nom +palanco palanco nom +palandrana palandrana nom +palandrane palandrana nom +palane palare ver +palangari palangaro nom +palangaro palangaro nom +palano palare ver +palante palare ver +palanti palare ver +palar palare ver +palare palare ver +palarne palare ver +palasele palare ver +palasi palare ver +palasse palare ver +palata palato adj +palatale palatale adj +palatali palatale adj +palatalizzazione palatalizzazione nom +palatalizzazioni palatalizzazione nom +palate palata nom +palatesi palare ver +palati palato nom +palatina palatino adj +palatine palatino adj +palatini palatino adj +palatino palatino adj +palato palato nom +palava palare ver +palavela palare ver +palazzi palazzo nom +palazzina palazzina nom +palazzine palazzina nom +palazzo palazzo nom +palazzotti palazzotto nom +palazzotto palazzotto nom +palchetti palchetto nom +palchettista palchettista nom +palchettisti palchettista nom +palchetto palchetto nom +palchi palco nom +palco palco nom +palcoscenici palcoscenico nom +palcoscenico palcoscenico nom +pale pala nom +palei paleo nom +paleo paleo nom +paleoantropologia paleoantropologia nom +paleoantropologie paleoantropologia nom +paleocene paleocene nom +paleocristiane paleocristiano adj +paleocristiani paleocristiano adj +paleogene paleogene nom +paleografa paleografo nom +paleografi paleografo nom +paleografia paleografia nom +paleografica paleografico adj +paleografiche paleografico adj +paleografici paleografico adj +paleografico paleografico adj +paleografie paleografia nom +paleografo paleografo nom +paleolitica paleolitico adj +paleolitiche paleolitico adj +paleolitici paleolitico adj +paleolitico paleolitico adj +paleontologa paleontologo nom +paleontologi paleontologo nom +paleontologia paleontologia nom +paleontologica paleontologico adj +paleontologiche paleontologico adj +paleontologici paleontologico adj +paleontologico paleontologico adj +paleontologie paleontologia nom +paleontologo paleontologo nom +paleozoica paleozoico adj +paleozoiche paleozoico adj +paleozoici paleozoico adj +paleozoico paleozoico adj +paleozoologia paleozoologia nom +paleria paleria nom +palermitana palermitano adj +palermitane palermitano adj +palermitani palermitano adj +palermitano palermitano adj +palerà palare ver +palesa palesare ver +palesando palesare ver +palesandone palesare ver +palesandosi palesare ver +palesano palesare ver +palesare palesare ver +palesarne palesare ver +palesarono palesare ver +palesarsi palesare ver +palesarti palesare ver +palesasse palesare ver +palesassero palesare ver +palesata palesare ver +palesate palesare ver +palesati palesare ver +palesato palesare ver +palesava palesare ver +palesavano palesare ver +palese palese adj +palesemente palesemente adv +paleseranno palesare ver +paleserebbe palesare ver +paleserà palesare ver +paleserò palesare ver +palesi palese adj +palesino palesare ver +paleso palesare ver +palestinese palestinese adj +palestinesi palestinese adj +palestra palestra nom +palestre palestra nom +palesò palesare ver +paletnologi paletnologo nom +paletnologia paletnologia nom +paletnologica paletnologico adj +paletnologiche paletnologico adj +paletnologici paletnologico adj +paletnologico paletnologico adj +paletnologo paletnologo nom +paletot paletot nom +paletta paletta nom +palettata palettata nom +palettatura palettatura nom +palettature palettatura nom +palette paletta nom +paletti paletto nom +paletto paletto nom +pali palio|palo nom +palificata palificare ver +palificate palificare ver +palificato palificare ver +palificazione palificazione nom +palificazioni palificazione nom +palifico palificare ver +palina palina nom +palindroma palindromo adj +palindrome palindromo adj +palindromi palindromo adj +palindromo palindromo adj +paline palina nom +palingenesi palingenesi nom +palino palare ver +palinodia palinodia nom +palinodie palinodia nom +palinsesti palinsesto nom +palinsesto palinsesto nom +palio palio nom +paliotti paliotto nom +paliotto paliotto nom +palischermo palischermo nom +palizzata palizzata nom +palizzate palizzata nom +palla palla nom +pallabase pallabase nom +pallacanestro pallacanestro nom +pallacorda pallacorda nom +palladi palladio nom +palladia palladio adj +palladiana palladiana nom +palladiane palladiana nom +palladio palladio adj +pallamaglio pallamaglio nom +pallamano pallamano nom +pallamuro pallamuro nom +pallanotista pallanotista nom +pallanuoto pallanuoto nom +pallavolista pallavolista nom +pallavoliste pallavolista nom +pallavolisti pallavolista nom +pallavolo pallavolo nom +palle palla nom +palleggi palleggio nom +palleggia palleggiare ver +palleggiando palleggiare ver +palleggiano palleggiare ver +palleggiare palleggiare ver +palleggiata palleggiare ver +palleggiato palleggiare ver +palleggiatore palleggiatore nom +palleggiatori palleggiatore nom +palleggiatrice palleggiatore nom +palleggiatrici palleggiatore nom +palleggiava palleggiare ver +palleggio palleggio nom +pallet pallet nom +pallettone pallettone nom +pallettoni pallettone nom +palli pallio nom +pallia palliare ver +palliale palliare ver +palliano palliare ver +palliare palliare ver +palliata palliare ver +palliate palliare ver +palliativi palliativo nom +palliativo palliativo nom +palliato palliare ver +pallida pallido adj +pallide pallido adj +pallidezza pallidezza nom +pallidi pallido adj +pallido pallido adj +pallina pallina|pallino nom +palline pallina|pallino nom +pallini pallino nom +pallino pallino nom +pallio pallio nom +pallonata pallonata nom +pallonate pallonata nom +palloncini palloncino nom +palloncino palloncino nom +pallone pallone nom +pallonetti pallonetto nom +pallonetto pallonetto nom +palloni pallone nom +pallore pallore nom +pallottola pallottola nom +pallottole pallottola nom +pallottoliere pallottoliere nom +pallottolieri pallottoliere nom +palma palma nom +palmare palmare adj +palmari palmare adj +palmata palmato adj +palmate palmato adj +palmati palmato adj +palmato palmato adj +palme palma|palme nom +palmenti palmento nom +palmento palmento nom +palmeti palmeto nom +palmeto palmeto nom +palmetta palmetta nom +palmette palmetta nom +palmi palmo nom +palminervia palminervio adj +palminervie palminervio adj +palmipede palmipede nom +palmipedi palmipede nom +palmizi palmizio nom +palmizio palmizio nom +palmo palmo nom +palo palo nom +palombari palombaro nom +palombaro palombaro nom +palombi palombo nom +palombo palombo nom +palpa palpare ver +palpabile palpabile adj +palpabili palpabile adj +palpala palpare ver +palpali palpare ver +palpando palpare ver +palpandola palpare ver +palpar palpare ver +palpare palpare ver +palparla palpare ver +palparlo palpare ver +palparsi palpare ver +palpata palpata nom +palpate palpata nom +palpato palpare ver +palpazione palpazione nom +palpazioni palpazione nom +palpebra palpebra nom +palpebrale palpebrale adj +palpebrali palpebrale adj +palpebre palpebra nom +palpeggia palpeggiare ver +palpeggiai palpeggiare ver +palpeggiare palpeggiare ver +palpeggiarla palpeggiare ver +palpeggiato palpeggiare ver +palperà palpare ver +palpi palpare ver +palpita palpitare ver +palpitando palpitare ver +palpitano palpitare ver +palpitante palpitante adj +palpitanti palpitante adj +palpitar palpitare ver +palpitare palpitare ver +palpitato palpitare ver +palpitava palpitare ver +palpitazione palpitazione nom +palpitazioni palpitazione nom +palpiti palpito nom +palpito palpito nom +palpo palpare ver +paltò paltò nom +paluda paludare ver +paludale paludare ver +paludali paludare ver +paludamenti paludamento nom +paludamento paludamento nom +paludata paludare ver +paludate paludato adj +paludati paludato adj +paludato paludare ver +palude palude nom +paludi palude nom +paludismo paludismo nom +paludo paludare ver +paludosa paludoso adj +paludose paludoso adj +paludosi paludoso adj +paludoso paludoso adj +palustre palustre adj +palustri palustre adj +palvese palvese nom +palvesi palvese nom +palò palare ver +pampa pampa nom +pamphlet pamphlet nom +pampinea pampineo adj +pampini pampino nom +pampino pampino nom +pana panare ver +panacea panacea nom +panacee panacea nom +panacela panare ver +panaci panare ver +panafricanismo panafricanismo nom +panai panare ver +panala panare ver +panama panama nom +panamense panamense adj +panamensi panamense adj +panamericanismo panamericanismo nom +panami panare ver +panano panare ver +pananti panare ver +panar panare ver +panarabismo panarabismo nom +panare panare ver +panari panario adj +panaria panario adj +panarie panario adj +panario panario adj +panasiatismo panasiatismo nom +panasse panare ver +panata panare ver +panate panare ver +panati panare ver +panato panare ver +panavi panare ver +panca panca nom +pancake pancake nom +pance pancia nom +pancetta pancetta nom +pancette pancetta nom +panche panca nom +panchetti panchetto nom +panchetto panchetto nom +panchina panchina nom +panchine panchina nom +pancia pancia nom +panciata panciata nom +panciera panciera nom +panciolle panciolle nom +pancione pancione nom +pancioni pancione nom +panciotti panciotto nom +panciotto panciotto nom +pancitopenia pancitopenia nom +panciuti panciuto nom +panciuto panciuto nom +pancone pancone nom +panconi pancone nom +pancotti pancotto nom +pancotto pancotto nom +pancrazi pancrazio nom +pancrazio pancrazio nom +pancreas pancreas nom +pancreatica pancreatico adj +pancreatiche pancreatico adj +pancreatici pancreatico adj +pancreatico pancreatico adj +pancreatina pancreatina nom +pancristiana pancristiano adj +pancromatica pancromatico adj +pancromatiche pancromatico adj +pancromatici pancromatico adj +pancromatico pancromatico adj +panda panda nom +pandemia pandemia nom +pandemie pandemia nom +pandemonio pandemonio nom +pandette pandette nom +pandit pandit nom +pandolce pandolce nom +pandolci pandolce nom +pandori pandoro nom +pandoro pandoro nom +pane pane nom +panegirici panegirico nom +panegirico panegirico nom +panegirista panegirista nom +panegiristi panegirista nom +panellenica panellenico adj +panelleniche panellenico adj +panellenici panellenico adj +panellenico panellenico adj +panellenismo panellenismo nom +panelli panello nom +panello panello nom +panerai panare ver +panetteria panetteria nom +panetterie panetteria nom +panettiera panettiere nom +panettiere panettiere nom +panettieri panettiere nom +panettone panettone nom +panettoni panettone nom +paneuropea paneuropeo adj +paneuropee paneuropeo adj +paneuropei paneuropeo adj +paneuropeo paneuropeo adj +panfili panfilo nom +panfilo panfilo nom +panforte panforte nom +pangermanesimo pangermanesimo nom +pangolini pangolino nom +pangolino pangolino nom +pangrattato pangrattato nom +pani pane nom +pania pania nom +paniate panare ver +panica panico adj +panichi panico nom +panici panico adj +panico panico nom +panicolata panicolato adj +panicolate panicolato adj +panicolato panicolato adj +panie pania nom +paniera paniera nom +panierai panieraio nom +panieraio panieraio nom +paniere paniera|paniere nom +panieri paniere nom +panierino panierino nom +panificando panificare ver +panificare panificare ver +panificasse panificare ver +panificatore panificatore nom +panificatori panificatore nom +panificatrice panificatore nom +panificatrici panificatore nom +panificava panificare ver +panificazione panificazione nom +panificazioni panificazione nom +panifici panificio nom +panificio panificio nom +paniforte paniforte nom +paninara paninaro nom +paninare paninaro nom +paninari paninaro nom +paninaro paninaro nom +panini panino nom +panino panino nom +paninoteca paninoteca nom +paninoteche paninoteca nom +panislamismo panislamismo nom +panismo panismo nom +panlogismo panlogismo nom +panna panna nom +panne panna|panne nom +panneggi panneggio nom +panneggiamenti panneggiamento nom +panneggiamento panneggiamento nom +panneggiare panneggiare ver +panneggiata panneggiare ver +panneggiate panneggiare ver +panneggiato panneggiare ver +panneggio panneggio nom +pannelli pannello nom +pannello pannello nom +panni panno nom +pannicolo pannicolo nom +pannilani pannilano nom +panno panno nom +pannocchia pannocchia nom +pannocchie pannocchia nom +pannolenci pannolenci nom +pannolini pannolino nom +pannolino pannolino nom +pano panare ver +panoplia panoplia nom +panoplie panoplia nom +panorama panorama nom +panorami panorama nom +panoramica panoramico adj +panoramiche panoramico adj +panoramici panoramico adj +panoramicità panoramicità nom +panoramico panoramico adj +panpepati panpepato nom +panpepato panpepato nom +panslavismo panslavismo nom +pansé pansé nom +pantagruelica pantagruelico adj +pantagrueliche pantagruelico adj +pantagruelici pantagruelico adj +pantagruelico pantagruelico adj +pantalone pantalone adj +pantaloni pantalone nom +pantani pantano nom +pantano pantano nom +pantanosa pantanoso adj +pantanose pantanoso adj +pantanoso pantanoso adj +panteismi panteismo nom +panteismo panteismo nom +panteista panteista nom +panteiste panteista nom +panteisti panteista nom +panteistica panteistico adj +panteistiche panteistico adj +panteistici panteistico adj +panteistico panteistico adj +panteon panteon nom +pantera pantera nom +pantere pantera nom +pantheon pantheon nom +pantoclastia pantoclastia nom +pantofola pantofola nom +pantofolaia pantofolaio adj +pantofolaio pantofolaio adj +pantofole pantofola nom +pantografi pantografo nom +pantografo pantografo nom +pantomima pantomima nom +pantomime pantomima nom +pantomimi pantomimo nom +pantomimica pantomimico adj +pantomimiche pantomimico adj +pantomimici pantomimico adj +pantomimico pantomimico adj +pantomimo pantomimo nom +panzana panzana nom +panzane panzana nom +panzanella panzanella nom +panzanelle panzanella nom +panzarotti panzarotto nom +panzarotto panzarotto nom +panzer panzer nom +panzone panzone nom +panzoni panzone nom +paoli paolo nom +paolo paolo nom +paonazza paonazzo adj +paonazze paonazzo adj +paonazzi paonazzo adj +paonazzo paonazzo adj +papa papa nom +papabile papabile adj +papabili papabile nom +papaia papaia nom +papaie papaia nom +papaina papaina nom +papale papale adj +papali papale adj +papalina papalino adj +papaline papalino adj +papalini papalino adj +papalino papalino adj +paparazzi paparazzo nom +paparazzo paparazzo nom +papasso papasso nom +papati papato nom +papato papato nom +papaveracee papaveracee nom +papaveri papavero nom +papaverina papaverina nom +papaverine papaverina nom +papavero papavero nom +papera papera|papero nom +papere papera|papero nom +paperi papero nom +paperina paperina nom +paperine paperina nom +papero papero nom +papeschi papesco adj +papessa papessa nom +papesse papessa nom +papi papa nom +papilionacee papilionacee nom +papilionata papilionata adj +papilla papilla nom +papillare papillare adj +papillari papillare adj +papille papilla nom +papillon papillon nom +papiracea papiraceo adj +papiracei papiraceo adj +papiraceo papiraceo adj +papiri papiro nom +papiro papiro nom +papirologa papirologo nom +papirologi papirologo nom +papirologia papirologia nom +papirologie papirologia nom +papirologo papirologo nom +papismo papismo nom +papista papista nom +papiste papista nom +papisti papista nom +pappa pappa nom +pappafico pappafico nom +pappagalli pappagallo nom +pappagallo pappagallo nom +pappagorgia pappagorgia nom +pappai pappare ver +pappano pappare ver +pappardella pappardella nom +pappardelle pappardella nom +pappare pappare ver +papparsi pappare ver +pappataci pappataci nom +pappati pappata nom +pappato pappare ver +pappe pappa nom +pappi pappo nom +pappina pappina nom +pappine pappina nom +pappo pappo nom +pappona pappone nom +pappone pappone nom +papponi pappone nom +paprica paprica nom +paprika paprika nom +papà papà nom +para para nom +parabasi parabasi nom +parabellum parabellum nom +parabile parabile adj +parabola parabola nom +parabole parabola nom +parabolica parabolico adj +paraboliche parabolico adj +parabolici parabolico adj +parabolico parabolico adj +parabordi parabordo nom +parabordo parabordo nom +parabrezza parabrezza nom +paracaduta paracadutare ver +paracadutale paracadutare ver +paracadutando paracadutare ver +paracadutandosi paracadutare ver +paracadutano paracadutare ver +paracadutare paracadutare ver +paracadutarono paracadutare ver +paracadutarsi paracadutare ver +paracadutata paracadutare ver +paracadutate paracadutare ver +paracadutati paracadutare ver +paracadutato paracadutare ver +paracadutava paracadutare ver +paracadutavano paracadutare ver +paracadute paracadute nom +paracaduti paracadutare ver +paracadutismo paracadutismo nom +paracadutista paracadutista nom +paracadutiste paracadutista nom +paracadutisti paracadutista nom +paracadutò paracadutare ver +paracarri paracarro nom +paracarro paracarro nom +parachimici parachimico adj +paracolpi paracolpi nom +paracqua paracqua nom +paraculturale paraculturale adj +paradenti paradenti nom +paradigma paradigma nom +paradigmatica paradigmatico adj +paradigmatiche paradigmatico adj +paradigmatici paradigmatico adj +paradigmatico paradigmatico adj +paradigmi paradigma nom +paradisea paradisea nom +paradisee paradisea nom +paradisi paradiso nom +paradisiaca paradisiaco adj +paradisiache paradisiaco adj +paradisiaci paradisiaco adj +paradisiaco paradisiaco adj +paradiso paradiso nom +paradossale paradossale adj +paradossali paradossale adj +paradossalità paradossalità nom +paradossalmente paradossalmente adv +paradossi paradosso nom +paradosso paradosso nom +parafa parafa nom +parafanghi parafango nom +parafango parafango nom +parafernali parafernale adj +paraffina paraffina nom +paraffinata paraffinare ver +paraffine paraffina nom +paraffinica paraffinico adj +paraffiniche paraffinico adj +paraffinici paraffinico adj +parafiamma parafiamma nom +parafrasa parafrasare ver +parafrasando parafrasare ver +parafrasandole parafrasare ver +parafrasandolo parafrasare ver +parafrasandone parafrasare ver +parafrasandoti parafrasare ver +parafrasano parafrasare ver +parafrasare parafrasare ver +parafrasarla parafrasare ver +parafrasarle parafrasare ver +parafrasarli parafrasare ver +parafrasarlo parafrasare ver +parafrasarono parafrasare ver +parafrasarti parafrasare ver +parafrasata parafrasare ver +parafrasate parafrasare ver +parafrasati parafrasare ver +parafrasato parafrasare ver +parafrasava parafrasare ver +parafrasavo parafrasare ver +parafraserei parafrasare ver +parafraserà parafrasare ver +parafrasi parafrasi nom +parafrasiamo parafrasare ver +parafraso parafrasare ver +parafrastica parafrastico adj +parafrasò parafrasare ver +parafrenia parafrenia nom +parafulmine parafulmine nom +parafulmini parafulmine nom +paraggi paraggio nom +paraggio paraggio nom +paragoge paragoge nom +paragona paragonare ver +paragonabile paragonabile adj +paragonabili paragonabile adj +paragonando paragonare ver +paragonandola paragonare ver +paragonandole paragonare ver +paragonandoli paragonare ver +paragonandolo paragonare ver +paragonandosi paragonare ver +paragonano paragonare ver +paragonarci paragonare ver +paragonare paragonare ver +paragonarla paragonare ver +paragonarle paragonare ver +paragonarli paragonare ver +paragonarlo paragonare ver +paragonarmi paragonare ver +paragonarne paragonare ver +paragonarono paragonare ver +paragonarsi paragonare ver +paragonasse paragonare ver +paragonassimo paragonare ver +paragonata paragonare ver +paragonate paragonare ver +paragonati paragonare ver +paragonato paragonare ver +paragonava paragonare ver +paragonavano paragonare ver +paragonavo paragonare ver +paragone paragone nom +paragonerei paragonare ver +paragonerà paragonare ver +paragonerò paragonare ver +paragoni paragone nom +paragoniamo paragonare ver +paragoniamoli paragonare ver +paragono paragonare ver +paragonò paragonare ver +paragrafa paragrafare ver +paragrafare paragrafare ver +paragrafata paragrafare ver +paragrafato paragrafare ver +paragrafi paragrafo nom +paragrafino paragrafare ver +paragrafo paragrafo nom +paraguaiana paraguaiano adj +paraguaiane paraguaiano adj +paraguaiani paraguaiano adj +paraguaiano paraguaiano adj +paraguayana paraguayano adj +paraguayane paraguayano adj +paraguayani paraguayano nom +paraguayano paraguayano adj +parai parare ver +paralipomeni paralipomeni nom +paralisi paralisi nom +paralitica paralitico adj +paralitiche paralitico adj +paralitici paralitico adj +paralitico paralitico adj +paralizza paralizzare ver +paralizzando paralizzare ver +paralizzandola paralizzare ver +paralizzandoli paralizzare ver +paralizzandolo paralizzare ver +paralizzandone paralizzare ver +paralizzano paralizzare ver +paralizzante paralizzare ver +paralizzanti paralizzare ver +paralizzare paralizzare ver +paralizzarla paralizzare ver +paralizzarle paralizzare ver +paralizzarli paralizzare ver +paralizzarlo paralizzare ver +paralizzarne paralizzare ver +paralizzarono paralizzare ver +paralizzata paralizzare ver +paralizzate paralizzare ver +paralizzati paralizzare ver +paralizzato paralizzare ver +paralizzava paralizzare ver +paralizzavano paralizzare ver +paralizzerebbe paralizzare ver +paralizzerà paralizzare ver +paralizzi paralizzare ver +paralizzo paralizzare ver +paralizzò paralizzare ver +parallasse parallasse nom +parallassi parallasse nom +parallattica parallattico adj +parallattici parallattico adj +parallattico parallattico adj +parallela parallelo adj +parallelamente parallelamente adv +parallele parallelo adj +parallelepipedi parallelepipedo nom +parallelepipedo parallelepipedo nom +paralleli parallelo adj +parallelinervia parallelinervio adj +parallelinervie parallelinervio adj +parallelismi parallelismo nom +parallelismo parallelismo nom +parallelo parallelo adj +parallelogramma parallelogramma nom +parallelogrammi parallelogramma|parallelogrammo nom +parallelogrammo parallelogrammo nom +paralo parare ver +paralogismi paralogismo nom +paralogismo paralogismo nom +paraluce paraluce nom +paralume paralume nom +paralumi paralume nom +paramagnetica paramagnetico adj +paramagnetiche paramagnetico adj +paramagnetici paramagnetico adj +paramagnetico paramagnetico adj +paramagnetismo paramagnetismo nom +paramani paramano nom +paramano paramano nom +parameci paramecio nom +paramecio paramecio nom +paramedica paramedico adj +paramediche paramedico adj +paramedici paramedico nom +paramedico paramedico adj +paramenti paramento nom +paramento paramento nom +parametri parametro nom +parametrica parametrico adj +parametriche parametrico adj +parametrici parametrico adj +parametrico parametrico adj +parametro parametro nom +paramilitare paramilitare adj +paramilitari paramilitare adj +paramine paramine nom +parancandola parancare ver +parancata parancare ver +paranchi paranco nom +paranco paranco nom +parando parare ver +parandosi parare ver +paraninfa paraninfo nom +paraninfo paraninfo nom +parano parare ver +paranoia paranoia nom +paranoica paranoico adj +paranoiche paranoico adj +paranoici paranoico adj +paranoico paranoico adj +paranoie paranoia nom +paranormale paranormale adj +paranormali paranormale adj +parante parare ver +paranza paranza nom +paranze paranza nom +paraocchi paraocchi nom +parapetti parapetto nom +parapetto parapetto nom +parapiglia parapiglia nom +parapioggia parapioggia nom +paraplegia paraplegia nom +paraplegica paraplegico adj +paraplegici paraplegico nom +paraplegico paraplegico adj +paraplegie paraplegia nom +parapodi parapodio nom +parapsicologia parapsicologia nom +parar parare ver +pararci parare ver +parare parare ver +parargli parare ver +pararla parare ver +pararle parare ver +pararli parare ver +pararlo parare ver +pararmi parare ver +pararne parare ver +pararono parare ver +pararsi parare ver +pararti parare ver +parasanga parasanga nom +parasceni parascenio nom +parascenio parascenio nom +parascolastiche parascolastico adj +parascolastici parascolastico adj +parascolastico parascolastico adj +paraselene paraselene nom +paraseleni paraselene nom +parasi parare ver +parasimpatica parasimpatico adj +parasimpatiche parasimpatico adj +parasimpatici parasimpatico adj +parasimpatico parasimpatico adj +parasintetici parasintetico adj +parasole parasole nom +paraspruzzi paraspruzzi nom +parasse parare ver +parassita parassita adj +parassitari parassitario adj +parassitaria parassitario adj +parassitarie parassitario adj +parassitario parassitario adj +parassite parassita adj +parassiti parassita nom +parassitica parassitico adj +parassitiche parassitico adj +parassitici parassitico adj +parassitico parassitico adj +parassitismi parassitismo nom +parassitismo parassitismo nom +parassitologia parassitologia nom +parasta parasta nom +parastatale parastatale adj +parastatali parastatale adj +paraste parasta nom +parasti parare ver +parastinchi parastinchi nom +parata parata nom +paratassi paratassi nom +parate parata nom +paratene parare ver +paratesi parare ver +parati parato adj +paratia paratia nom +paratie paratia nom +paratifo paratifo nom +paratiroide paratiroide nom +paratiroidi paratiroide nom +parato parato adj +paratoia paratoia nom +paratoie paratoia nom +parauniversitari parauniversitario adj +paraurti paraurti nom +parava parare ver +paravano parare ver +paraventi paravento nom +paravento paravento nom +parca parco adj +parcella parcella nom +parcellare parcellare adj +parcellari parcellare adj +parcellazione parcellazione nom +parcelle parcella nom +parche parco adj +parcheggerei parcheggiare ver +parcheggi parcheggio nom +parcheggia parcheggiare ver +parcheggiando parcheggiare ver +parcheggiandola parcheggiare ver +parcheggiandolo parcheggiare ver +parcheggiano parcheggiare ver +parcheggiarci parcheggiare ver +parcheggiare parcheggiare ver +parcheggiarla parcheggiare ver +parcheggiarle parcheggiare ver +parcheggiarlo parcheggiare ver +parcheggiarmi parcheggiare ver +parcheggiarono parcheggiare ver +parcheggiarsi parcheggiare ver +parcheggiarvi parcheggiare ver +parcheggiata parcheggiare ver +parcheggiate parcheggiare ver +parcheggiati parcheggiare ver +parcheggiato parcheggiare ver +parcheggiava parcheggiare ver +parcheggiavano parcheggiare ver +parcheggio parcheggio nom +parcheggiò parcheggiare ver +parchi parco nom +parchimetri parchimetro nom +parchimetro parchimetro nom +parco parco nom +parcometri parcometro nom +parcometro parcometro nom +pardon pardon int +pare parere ver_sup +parecchi parecchio pro +parecchia parecchio pro +parecchie parecchio pro +parecchio parecchio adv +pareggeranno pareggiare ver +pareggerebbe pareggiare ver +pareggerà pareggiare ver +pareggi pareggio nom +pareggia pareggiare ver +pareggiabile pareggiabile adj +pareggiamento pareggiamento nom +pareggiando pareggiare ver +pareggiandone pareggiare ver +pareggiano pareggiare ver +pareggiare pareggiare ver +pareggiarne pareggiare ver +pareggiarono pareggiare ver +pareggiarsi pareggiare ver +pareggiassero pareggiare ver +pareggiata pareggiare ver +pareggiate pareggiato adj +pareggiati pareggiare ver +pareggiato pareggiare ver +pareggiava pareggiare ver +pareggiavano pareggiare ver +pareggino pareggiare ver +pareggio pareggio nom +pareggiò pareggiare ver +pareli parelio nom +parelio parelio nom +paremia paremia nom +parenchima parenchima nom +parenchimi parenchima nom +parendo parere ver +parendogli parere ver +parendole parere ver +parendomi parere ver +parentadi parentado nom +parentado parentado nom +parentale parentale adj +parentali parentale adj +parente parente nom +parentela parentela nom +parentele parentela nom +parenterale parenterale adj +parenterali parenterale adj +parentesi parentesi nom +parenti parente nom +parer parere ver +pareranno parare ver +parere parere nom +parerei parare ver +pareri parere nom +parerlo parere ver +parermi parere ver +parerà parare ver +paresi paresi nom +paresse parere ver +paressero parere ver +pareste parere ver +parestesia parestesia nom +parestesie parestesia nom +paresti parere ver +paretaio paretaio nom +parete parete nom_sup +pareti parete nom +paretici paretico adj +pareva parere ver +parevano parere ver +parevi parere ver +pargole pargolo nom +pargoletta pargoletto nom +pargoletti pargoletto nom +pargoletto pargoletto adj +pargoli pargolo nom +pargolo pargolo nom +pari pari adv_sup +paria pario adj +pariamo parare ver +parie pario adj +parietale parietale adj +parietali parietale adj +parifica parificare ver +parificando parificare ver +parificandola parificare ver +parificano parificare ver +parificare parificare ver +parificata parificare ver +parificate parificato adj +parificati parificare ver +parificato parificare ver +parificava parificare ver +parificazione parificazione nom +parificò parificare ver +parigina parigino adj +parigine parigino adj +parigini parigino adj +parigino parigino adj +pariglia pariglia nom +pariglie pariglia nom +parigrado parigrado nom +parimenti parimenti adv +parino parare ver +pario pario adj +paripennata paripennato adj +paripennate paripennato adj +parisillabi parisillabo adj +paritari paritario adj +paritaria paritario adj +paritarie paritario adj +paritario paritario adj +paritetica paritetico adj +pariteticamente pariteticamente adv +paritetiche paritetico adj +paritetici paritetico adj +paritetico paritetico adj +parità parità nom +parka parka nom +parla parlare ver +parlabile parlabile adj +parlaci parlare ver +parlagli parlare ver +parlagliene parlare ver +parlai parlare ver +parlamene parlare ver +parlament parlamento ver +parlamenta parlamentare ver +parlamentai parlamentare ver +parlamentale parlamentare ver +parlamentando parlamentare ver +parlamentar parlamentare ver +parlamentare parlamentare adj +parlamentari parlamentare adj +parlamentarismi parlamentarismo nom +parlamentarismo parlamentarismo nom +parlamentarne parlamentare ver +parlamentati parlamentare ver +parlamentato parlamentare ver +parlamenti parlamento nom +parlamentino parlamentare ver +parlamento parlamento nom +parlamentti parlamento ver +parlamentò parlamentare ver +parlami parlare ver +parlammo parlare ver +parlando parlare ver +parlandoci parlare ver +parlandogli parlare ver +parlandola parlare ver +parlandole parlare ver +parlandolo parlare ver +parlandomi parlare ver +parlandone parlare ver +parlandosi parlare ver +parlane parlare ver +parlano parlare ver +parlante parlante adj +parlanti parlante nom +parlantina parlantina nom +parlar parlare ver +parlarci parlare ver +parlare parlare ver +parlargli parlare ver +parlargliene parlare ver +parlarla parlare ver +parlarle parlare ver +parlarli parlare ver +parlarlo parlare ver +parlarmene parlare ver +parlarmi parlare ver +parlarne parlare ver +parlarono parlare ver +parlarsene parlare ver +parlarsi parlare ver +parlarti parlare ver +parlarvene parlare ver +parlarvi parlare ver +parlasse parlare ver +parlassero parlare ver +parlassi parlare ver +parlassimo parlare ver +parlaste parlare ver +parlasti parlare ver +parlata parlare ver +parlate parlare ver +parlatemi parlare ver +parlatene parlare ver +parlatevi parlare ver +parlati parlare ver +parlato parlare ver +parlatore parlatore nom +parlatori parlatore|parlatorio nom +parlatorio parlatorio nom +parlava parlare ver +parlavamo parlare ver +parlavano parlare ver +parlavate parlare ver +parlavi parlare ver +parlavo parlare ver +parlerai parlare ver +parleranno parlare ver +parlerebbe parlare ver +parlerebbero parlare ver +parlerei parlare ver +parleremmo parlare ver +parleremo parlare ver +parleresti parlare ver +parlerete parlare ver +parlerà parlare ver +parlerò parlare ver +parli parlare ver +parliamo parlare ver +parliamoci parlare ver +parliamone parlare ver +parliate parlare ver +parlino parlare ver +parlo parlare ver +parlotta parlottare ver +parlottano parlottare ver +parlottare parlottare ver +parlottavano parlottare ver +parlotti parlottio nom +parlò parlare ver +parma parma nom +parme parma nom +parmigiana parmigiano adj +parmigiane parmigiano adj +parmigiani parmigiano nom +parmigiano parmigiano adj +parnasi parnaso nom +parnaso parnaso nom +parnassianesimo parnassianesimo nom +paro parare ver +parodi parodo nom +parodia parodia nom +parodiando parodiare ver +parodiandola parodiare ver +parodiandoli parodiare ver +parodiandolo parodiare ver +parodiano parodiare ver +parodiante parodiare ver +parodiare parodiare ver +parodiarne parodiare ver +parodiarono parodiare ver +parodiata parodiare ver +parodiate parodiare ver +parodiati parodiare ver +parodiato parodiare ver +parodiava parodiare ver +parodiavano parodiare ver +parodie parodia nom +parodio parodiare ver +parodista parodista nom +parodisti parodista nom +parodistica parodistico adj +parodistiche parodistico adj +parodistici parodistico adj +parodistico parodistico adj +parodiò parodiare ver +parodo parodo nom +parola parola nom +parolacce parolaccia nom +parolaccia parolaccia nom +parolai parolaio nom +parolaia parolaio adj +parolaio parolaio nom +parole parola nom +paroliera paroliere nom +paroliere paroliere nom +parolieri paroliere nom +parolina parolina nom +paroline parolina nom +parolona parolona nom +parolone parolona|parolone nom +paroloni parolone nom +paronimo paronimo nom +paronomasia paronomasia nom +paronomasie paronomasia nom +parossismi parossismo nom +parossismo parossismo nom +parossistica parossistico adj +parossistiche parossistico adj +parossistici parossistico adj +parossistico parossistico adj +parossitona parossitono adj +parossitone parossitono adj +parossitoni parossitono adj +parossitono parossitono adj +parotide parotide nom +parotidi parotide nom +parotite parotite nom +parpagliola parpagliola nom +parpagliole parpagliola nom +parpaiola parpaiola nom +parquet parquet nom +parranno parere ver +parrebbe parere ver +parrebbero parere ver +parrei parere ver +parricida parricida nom +parricide parricida nom +parricidi parricida|parricidio nom +parricidio parricidio nom +parrocchetti parrocchetto nom +parrocchetto parrocchetto nom +parrocchia parrocchia nom +parrocchiale parrocchiale adj +parrocchiali parrocchiale adj +parrocchiana parrocchiano nom +parrocchiane parrocchiano nom +parrocchiani parrocchiano nom +parrocchiano parrocchiano nom +parrocchie parrocchia nom +parroci parroco nom +parroco parroco nom +parrucca parrucca nom +parrucche parrucca nom +parrucchiera parrucchiere nom +parrucchiere parrucchiere nom +parrucchieri parrucchiere nom +parrucchini parrucchino nom +parrucchino parrucchino nom +parruccona parruccone nom +parruccone parruccone nom +parrucconi parruccone nom +parrà parere ver +parrò parere ver +parsa parere ver +parse parere ver +parsec parsec nom +parsi parere ver +parsimonia parsimonia nom +parsimoniosa parsimonioso adj +parsimoniose parsimonioso adj +parsimoniosi parsimonioso adj +parsimonioso parsimonioso adj +parso parere ver_sup +parta partire ver +partacce partaccia nom +partaccia partaccia nom +partano partire ver +parte parte nom_sup +partecipa partecipare ver +partecipabile partecipabile adj +partecipai partecipare ver +partecipale partecipare ver +partecipami partecipare ver +partecipando partecipare ver +partecipandoci partecipare ver +partecipandovi partecipare ver +partecipano partecipare ver +partecipante partecipante adj +partecipanti partecipante adj +partecipar partecipare ver +parteciparci partecipare ver +partecipare partecipare ver +parteciparle partecipare ver +parteciparne partecipare ver +parteciparono partecipare ver +parteciparvi partecipare ver +partecipasse partecipare ver +partecipassero partecipare ver +partecipassi partecipare ver +partecipassimo partecipare ver +partecipaste partecipare ver +partecipata partecipare ver +partecipate partecipare ver +partecipati partecipare ver +partecipativa partecipativo adj +partecipativo partecipativo adj +partecipato partecipare ver +partecipava partecipare ver +partecipavano partecipare ver +partecipavo partecipare ver +partecipazione partecipazione nom +partecipazioni partecipazione nom +partecipe partecipe adj +parteciperai partecipare ver +parteciperanno partecipare ver +parteciperebbe partecipare ver +parteciperebbero partecipare ver +parteciperei partecipare ver +parteciperemo partecipare ver +parteciperete partecipare ver +parteciperà partecipare ver +parteciperò partecipare ver +partecipi partecipe adj +partecipiamo partecipare ver +partecipino partecipare ver +partecipo partecipare ver +partecipò partecipare ver +parteggi parteggiare ver +parteggia parteggiare ver +parteggiando parteggiare ver +parteggiano parteggiare ver +parteggianti parteggiare ver +parteggiare parteggiare ver +parteggiarono parteggiare ver +parteggiasse parteggiare ver +parteggiassero parteggiare ver +parteggiato parteggiare ver +parteggiava parteggiare ver +parteggiavano parteggiare ver +parteggio parteggiare ver +parteggiò parteggiare ver +partenariati partenariato nom +partenariato partenariato nom +partendo partire ver +partendone partire ver +partendosi partire ver +partenogenesi partenogenesi nom +partenogenetica partenogenetico adj +partenogenetiche partenogenetico adj +partenogenetici partenogenetico adj +partenogenetico partenogenetico adj +partenopea partenopeo adj +partenopee partenopeo adj +partenopei partenopeo nom +partenopeo partenopeo adj +partente partente adj +partenti partente nom +partenza partenza nom +partenze partenza nom +parterre parterre nom +parti parte|parto nom_sup +partiamo partire ver +partiate partire ver +particele partire ver +particella particella nom +particelle particella nom +partici partire ver +participi participio nom +participiale participiale adj +participiali participiale adj +participio participio nom +particola particola nom +particolar particolare adj +particolare particolare adj +particolareggiare particolareggiare ver +particolareggiata particolareggiare ver +particolareggiatamente particolareggiatamente adv +particolareggiate particolareggiare ver +particolareggiati particolareggiato adj +particolareggiato particolareggiare ver +particolari particolare adj +particolarismi particolarismo nom +particolarismo particolarismo nom +particolaristica particolaristico adj +particolaristiche particolaristico adj +particolaristici particolaristico adj +particolaristico particolaristico adj +particolarità particolarità nom +particolarmente particolarmente adv +particolato particolato nom +particole particola nom +partigiana partigiano adj +partigiane partigiano adj +partigianeria partigianeria nom +partigianerie partigianeria nom +partigiani partigiano nom +partigiano partigiano adj +partii partire ver +partili partire ver +partilo partire ver +partimmo partire ver +partir partire ver +partirai partire ver +partiranno partire ver +partire partire ver +partirebbe partire ver +partirebbero partire ver +partirei partire ver +partiremmo partire ver +partiremo partire ver +partirete partire ver +partirne partire ver +partirono partire ver +partirsene partire ver +partirsi partire ver +partirà partire ver +partirò partire ver +partisi partire ver +partisse partire ver +partissero partire ver +partissi partire ver +partissimo partire ver +partiste partire ver +partisti partire ver +partita partita nom +partite partita nom +partiti partito nom +partitica partitico adj +partitiche partitico adj +partitici partitico adj +partitico partitico adj +partitismo partitismo nom +partitissima partitissima nom +partitiva partitivo adj +partitivi partitivo adj +partitivo partitivo adj +partito partito nom +partitocrazia partitocrazia nom +partitore partitore nom +partitori partitore adj +partitura partitura nom +partiture partitura nom +partiva partire ver +partivamo partire ver +partivano partire ver +partivi partire ver +partivo partire ver +partizione partizione nom +partizioni partizione nom +partner partner nom +partnership partnership nom +parto parto nom +partono partire ver +partorendo partorire ver +partorendolo partorire ver +partoriente partoriente nom +partorienti partoriente nom +partorir partorire ver +partorirai partorire ver +partoriranno partorire ver +partorire partorire ver +partorirgli partorire ver +partorirla partorire ver +partorirlo partorire ver +partorirono partorire ver +partorirà partorire ver +partorisca partorire ver +partoriscano partorire ver +partorisce partorire ver +partorisco partorire ver +partoriscono partorire ver +partorisse partorire ver +partorissero partorire ver +partorita partorire ver +partorite partorire ver +partoriti partorire ver +partorito partorire ver +partoriva partorire ver +partorivano partorire ver +partorì partorire ver +party party nom +partì partire ver +parure parure nom +parve parere ver +parvente parere ver +parventi parere ver +parvenu parvenu nom +parvenza parvenza nom +parvenze parvenza nom +parvero parere ver +parvi parere ver +parvovirus parvovirus nom +parziale parziale adj +parziali parziale nom +parzialità parzialità nom +parzialmente parzialmente adv +parziari parziario adj +parziaria parziario adj +parziarie parziario adj +parziarietà parziarietà nom +parziario parziario adj +parà parà nom +parò parare ver +pasca pascere ver +pascal pascal nom +pasce pascere ver +pascendo pascere ver +pascendosi pascere ver +pascente pascere ver +pascenti pascere ver +pascerci pascere ver +pascere pascere ver +pascerà pascere ver +pascete pascere ver +pasceva pascere ver +pasci pascere ver +pasciuta pascere ver +pasciute pascere ver +pasciuti pasciuto adj +pasciuto pascere ver +pascià pascià nom +pasco pascere ver +pascola pascolare ver +pascolando pascolare ver +pascolano pascolare ver +pascolante pascolare ver +pascolanti pascolare ver +pascolar pascolare ver +pascolare pascolare ver +pascolarvi pascolare ver +pascolasse pascolare ver +pascolassero pascolare ver +pascolata pascolare ver +pascolate pascolare ver +pascolati pascolare ver +pascolato pascolare ver +pascolava pascolare ver +pascolavano pascolare ver +pascoli pascolo nom +pascolino pascolare ver +pascolo pascolo nom +pascono pascere ver +pasqua pasqua nom +pasquale pasquale adj +pasquali pasquale adj +pasque pasqua nom +pasquetta pasquetta nom +pasquinata pasquinata nom +pasquinate pasquinata nom +passa passo adj +passabile passabile adj +passabili passabile adj +passacaglia passacaglia nom +passacaglie passacaglia nom +passacavi passacavo nom +passacavo passacavo nom +passaci passare ver +passaggi passaggio nom +passaggio passaggio nom +passai passare ver +passala passare ver +passalo passare ver +passamaneria passamaneria nom +passamanerie passamaneria nom +passamani passamano nom +passamano passamano nom +passami passare ver +passammo passare ver +passamontagna passamontagna nom +passando passare ver +passandoci passare ver +passandogli passare ver +passandola passare ver +passandole passare ver +passandoli passare ver +passandolo passare ver +passandomi passare ver +passandone passare ver +passandosela passare ver +passandosi passare ver +passandovi passare ver +passano passare ver +passante passante adj +passanti passante adj +passaparola passaparola nom +passaporti passaporto nom +passaporto passaporto nom +passar passare ver +passarci passare ver +passare passare ver +passargli passare ver +passarglielo passare ver +passarla passare ver +passarle passare ver +passarli passare ver +passarlo passare ver +passarmi passare ver +passarne passare ver +passarono passare ver +passarsela passare ver +passarsi passare ver +passarti passare ver +passarvi passare ver +passasse passare ver +passassero passare ver +passassi passare ver +passassimo passare ver +passaste passare ver +passasti passare ver +passata passare ver +passate passato adj +passateci passare ver +passatele passare ver +passatelli passatello nom +passatello passatello nom +passatemela passare ver +passatemeli passare ver +passatemelo passare ver +passatemi passare ver +passatempi passatempo nom +passatempo passatempo nom +passatevi passare ver +passati passato adj +passatista passatista nom +passatiste passatista nom +passatisti passatista nom +passato passato nom +passatoi passatoio nom +passatoia passatoia nom +passatoie passatoia nom +passatoio passatoio nom +passatore passatore nom +passatori passatore nom +passatutto passatutto nom +passava passare ver +passavamo passare ver +passavano passare ver +passaverdura passaverdura nom +passavi passare ver +passavo passare ver +passe passo adj +passeggera passeggero adj +passeggere passeggero adj +passeggeri passeggero adj +passeggero passeggero nom +passeggi passeggio nom +passeggia passeggiare ver +passeggiando passeggiare ver +passeggiano passeggiare ver +passeggiar passeggiare ver +passeggiare passeggiare ver +passeggiarono passeggiare ver +passeggiarvi passeggiare ver +passeggiasse passeggiare ver +passeggiata passeggiata nom +passeggiate passeggiata nom +passeggiati passeggiare ver +passeggiato passeggiare ver +passeggiatrice passeggiatrice nom +passeggiava passeggiare ver +passeggiavano passeggiare ver +passeggiavo passeggiare ver +passeggini passeggino nom +passeggino passeggino nom +passeggio passeggio nom +passeggiò passeggiare ver +passera passero nom +passeracei passeracei nom +passerai passare ver +passeranno passare ver +passere passero nom +passerebbe passare ver +passerebbero passare ver +passerei passare ver +passerella passerella nom +passerelle passerella nom +passeremmo passare ver +passeremo passare ver +passereste passare ver +passeresti passare ver +passerete passare ver +passeri passero nom +passero passero nom +passerotti passerotto nom +passerotto passerotto nom +passerà passare ver +passerò passare ver +passi passo nom +passiamo passare ver +passiamoci passare ver +passiate passare ver +passibile passibile adj +passibili passibile adj +passiflora passiflora nom +passifloracee passifloracee nom +passiflore passiflora nom +passim passim adv +passini passino nom +passino passare ver +passio passio nom +passionale passionale adj +passionali passionale adj +passionalità passionalità nom +passione passione nom +passioni passione nom +passionista passionista nom +passionisti passionista nom +passista passista nom +passisti passista nom +passita passito adj +passite passito adj +passiti passito adj +passito passito adj +passiva passivo adj +passivamente passivamente adv +passivante passivante adj +passivanti passivante adj +passive passivo adj +passivi passivo adj +passività passività nom +passivo passivo adj +passo passo nom +passò passare ver +pasta pasta nom +pastai pastaio nom +pastaia pastaio nom +pastaio pastaio nom +pastasciutta pastasciutta nom +pastasciutte pastasciutta nom +paste pasta nom +pasteggia pasteggiare ver +pasteggiando pasteggiare ver +pasteggiano pasteggiare ver +pasteggiare pasteggiare ver +pasteggiato pasteggiare ver +pasteggio pasteggiare ver +pastella pastella nom +pastelle pastella nom +pastelli pastello nom +pastello pastello nom +pastetta pastetta nom +pastette pastetta nom +pasti pasto nom +pasticca pasticca nom +pasticcera pasticcere nom +pasticcere pasticcere nom +pasticceri pasticcere nom +pasticceria pasticceria nom +pasticcerie pasticceria nom +pasticche pasticca nom +pasticci pasticcio nom +pasticcia pasticciare ver +pasticciamo pasticciare ver +pasticciando pasticciare ver +pasticciano pasticciare ver +pasticciarci pasticciare ver +pasticciare pasticciare ver +pasticciata pasticciare ver +pasticciate pasticciare ver +pasticciati pasticciare ver +pasticciato pasticciare ver +pasticciera pasticciere nom +pasticciere pasticciere nom +pasticcieri pasticciere nom +pasticcini pasticcino nom +pasticcino pasticcino nom +pasticcio pasticcio nom +pasticciona pasticcione nom +pasticcione pasticcione nom +pasticcioni pasticcione nom +pastiche pastiche nom +pastiera pastiera nom +pastiere pastiera nom +pastifici pastificio nom +pastificio pastificio nom +pastiglia pastiglia nom +pastiglie pastiglia nom +pastina pastina nom +pastinaca pastinaca nom +pastinache pastinaca nom +pastine pastina nom +pasto pasto nom +pastoia pastoia nom +pastoie pastoia nom +pastone pastone nom +pastoni pastone nom +pastora pastore nom +pastorale pastorale adj +pastorali pastorale adj +pastore pastore nom +pastori pastore nom +pastorizi pastorizio adj +pastorizia pastorizia nom +pastorizie pastorizio adj +pastorizio pastorizio adj +pastorizzare pastorizzare ver +pastorizzata pastorizzare ver +pastorizzate pastorizzare ver +pastorizzati pastorizzare ver +pastorizzato pastorizzare ver +pastorizzazione pastorizzazione nom +pastosa pastoso adj +pastose pastoso adj +pastosi pastoso adj +pastosità pastosità nom +pastoso pastoso adj +pastrani pastrano nom +pastrano pastrano nom +pastura pastura nom +pasturale pasturare ver +pasturali pasturare ver +pasturare pasturare ver +pasture pastura nom +pasturi pasturare ver +pasturo pasturare ver +patacca patacca nom +pataccaro pataccaro nom +patacche patacca nom +pataccone pataccone nom +patacconi pataccone nom +patagi patagio nom +patagio patagio nom +pataria pataria nom +patarina patarino adj +patarine patarino adj +patarini patarino nom +patarino patarino adj +patata patata nom +patate patata nom +pataticoltura pataticoltura nom +patatina patatina nom +patatine patatina nom +patatrac patatrac nom +patavina patavino adj +patavine patavino adj +patavini patavino adj +patavino patavino adj +patella patella nom +patelle patella nom +patema patema nom +patemi patema nom +patena patena nom +patendo patire ver +patene patena nom +patentata patentato adj +patentate patentato adj +patentati patentato adj +patentato patentato adj +patente patente nom +patenti patente adj +patentini patentino nom +patentino patentino nom +patera patera nom +pateracchio pateracchio nom +patere patera nom +patereccio patereccio nom +paterna paterno adj +paternale paternale nom +paternali paternale nom +paternalismi paternalismo nom +paternalismo paternalismo nom +paternalista paternalista nom +paternalistica paternalistico adj +paternalistiche paternalistico adj +paternalistici paternalistico adj +paternalistico paternalistico adj +paterne paterno adj +paterni paterno adj +paternità paternità nom +paterno paterno adj +paternoster paternoster nom +patetica patetico adj +patetiche patetico adj +patetici patetico adj +patetico patetico adj +patetismo patetismo nom +pathos pathos nom +patiamo patire ver +patibolare patibolare adj +patiboli patibolo nom +patibolo patibolo nom +patii patire ver +patimenti patimento nom +patimento patimento nom +patina patina nom +patinando patinare ver +patinarlo patinare ver +patinata patinato adj +patinate patinato adj +patinati patinato adj +patinato patinato adj +patinatura patinatura nom +patinature patinatura nom +patine patina nom +patini patinare ver +patino patinare ver +patio patio nom +patir patire ver +patiranno patire ver +patire patire ver +patirlo patire ver +patirne patire ver +patirono patire ver +patirà patire ver +patisca patire ver +patiscano patire ver +patisce patire ver +patisco patire ver +patiscono patire ver +patisse patire ver +patissimo patire ver +patita patire ver +patite patire ver +patiti patire ver +patito patito adj +pativa patire ver +pativano patire ver +patofobia patofobia nom +patogena patogeno adj +patogene patogeno adj +patogenesi patogenesi nom +patogeni patogeno adj +patogeno patogeno adj +patognomonica patognomonico adj +patognomoniche patognomonico adj +patognomonici patognomonico adj +patognomonico patognomonico adj +patologa patologo nom +patologi patologo nom +patologia patologia nom +patologica patologico adj +patologiche patologico adj +patologici patologico adj +patologico patologico adj +patologie patologia nom +patologo patologo nom +patos patos nom +patosi patosi nom +patria patria nom +patriarca patriarca nom +patriarcale patriarcale adj +patriarcali patriarcale adj +patriarcati patriarcato nom +patriarcato patriarcato nom +patriarchi patriarca nom +patricida patricida nom +patricide patricida nom +patrie patrio adj +patrigni patrigno nom +patrigno patrigno nom +patrii patrio adj +patrilinea patrilineo adj +patrilineare patrilineare adj +patrilineari patrilineare adj +patrimoni patrimonio nom +patrimoniale patrimoniale adj +patrimoniali patrimoniale adj +patrimonio patrimonio nom +patrio patrio adj +patriota patriota nom +patriote patriota nom +patrioti patriota nom +patriottarda patriottardo adj +patriottardi patriottardo adj +patriottardo patriottardo adj +patriottica patriottico adj +patriottiche patriottico adj +patriottici patriottico adj +patriottico patriottico adj +patrizi patrizio adj +patrizia patrizio adj +patriziati patriziato nom +patriziato patriziato nom +patrizie patrizio adj +patrizii patrizio nom +patrizio patrizio adj +patrocina patrocinare ver +patrocinando patrocinare ver +patrocinandone patrocinare ver +patrocinano patrocinare ver +patrocinante patrocinare ver +patrocinanti patrocinare ver +patrocinare patrocinare ver +patrocinarla patrocinare ver +patrocinarono patrocinare ver +patrocinasse patrocinare ver +patrocinata patrocinare ver +patrocinate patrocinare ver +patrocinati patrocinare ver +patrocinato patrocinare ver +patrocinatore patrocinatore nom +patrocinatori patrocinatore nom +patrocinatrice patrocinatore nom +patrocinava patrocinare ver +patrocinavano patrocinare ver +patrocini patrocinio nom +patrocinio patrocinio nom +patrocino patrocinare ver +patrocinò patrocinare ver +patrologi patrologo nom +patrologia patrologia nom +patrologie patrologia nom +patrologo patrologo nom +patron patron nom +patrona patrona nom +patronale patronale adj +patronali patronale adj +patronati patronato nom +patronato patronato nom +patrone patrona nom +patronessa patronessa nom +patronesse patronessa nom +patroni patrono nom +patronimici patronimico nom +patronimico patronimico nom +patrono patrono nom +patta patta nom +patte patta nom +patteggia patteggiare ver +patteggiando patteggiare ver +patteggiano patteggiare ver +patteggiare patteggiare ver +patteggiarono patteggiare ver +patteggiata patteggiare ver +patteggiati patteggiare ver +patteggiato patteggiare ver +patteggio patteggiare ver +patteggiò patteggiare ver +patti patto nom +pattina pattinare ver +pattinaggio pattinaggio nom +pattinando pattinare ver +pattinano pattinare ver +pattinare pattinare ver +pattinata pattinare ver +pattinate pattinare ver +pattinato pattinare ver +pattinatore pattinatore nom +pattinatori pattinatore nom +pattinatrice pattinatore nom +pattinatrici pattinatore nom +pattinava pattinare ver +pattini pattino nom +pattino pattino nom +pattinò pattinare ver +pattizie pattizio adj +pattizio pattizio adj +patto patto nom +pattuendo pattuire ver +pattuglia pattuglia nom +pattugliamenti pattugliamento nom +pattugliamento pattugliamento nom +pattugliando pattugliare ver +pattugliandolo pattugliare ver +pattugliano pattugliare ver +pattuglianti pattugliare ver +pattugliare pattugliare ver +pattugliarla pattugliare ver +pattugliarlo pattugliare ver +pattugliarne pattugliare ver +pattugliarono pattugliare ver +pattugliasse pattugliare ver +pattugliata pattugliare ver +pattugliate pattugliare ver +pattugliati pattugliare ver +pattugliato pattugliare ver +pattugliava pattugliare ver +pattugliavano pattugliare ver +pattuglie pattuglia nom +pattuglieranno pattugliare ver +pattuglio pattugliare ver +pattugliò pattugliare ver +pattuire pattuire ver +pattuirono pattuire ver +pattuisce pattuire ver +pattuiscono pattuire ver +pattuita pattuire ver +pattuite pattuito adj +pattuiti pattuito adj +pattuito pattuire ver +pattuiva pattuire ver +pattuivano pattuire ver +pattuizione pattuizione nom +pattuizioni pattuizione nom +pattume pattume nom +pattumiera pattumiera nom +pattumiere pattumiera nom +pattuì pattuire ver +paturnia paturnia nom +paturnie paturnia nom +paté paté nom +patì patire ver +paulonia paulonia nom +pauperismo pauperismo nom +paura paura nom +paure paura nom +paurosa pauroso adj +paurosamente paurosamente adv +paurose pauroso adj +paurosi pauroso adj +pauroso pauroso adj +pausa pausa nom +pause pausa nom +pavana pavana nom +pavane pavana nom +paventa paventare ver +paventando paventare ver +paventandogli paventare ver +paventandone paventare ver +paventano paventare ver +paventare paventare ver +paventarne paventare ver +paventarono paventare ver +paventarsi paventare ver +paventata paventare ver +paventate paventare ver +paventati paventare ver +paventato paventare ver +paventava paventare ver +paventavano paventare ver +paventavo paventare ver +paventerebbe paventare ver +paventi paventare ver +paventino paventare ver +pavento paventare ver +paventò paventare ver +pavesai pavesare ver +pavesata pavesare ver +pavesate pavesare ver +pavesati pavesare ver +pavesato pavesare ver +pavese pavese nom +pavesi pavese nom +pavesino pavesare ver +pavida pavido adj +pavidi pavido adj +pavido pavido adj +pavimentale pavimentale adj +pavimentali pavimentale adj +pavimentando pavimentare ver +pavimentandola pavimentare ver +pavimentano pavimentare ver +pavimentare pavimentare ver +pavimentata pavimentare ver +pavimentate pavimentare ver +pavimentati pavimentare ver +pavimentato pavimentare ver +pavimentavano pavimentare ver +pavimentazione pavimentazione nom +pavimentazioni pavimentazione nom +pavimenti pavimento nom +pavimento pavimento nom +pavimentò pavimentare ver +pavoncella pavoncella nom +pavoncelle pavoncella nom +pavone pavone nom +pavoneggia pavoneggiarsi ver +pavoneggiano pavoneggiarsi ver +pavoneggiarsi pavoneggiarsi ver +pavoneggiava pavoneggiarsi ver +pavoni pavone nom +pavonia pavonia nom +pavé pavé nom +pazienta pazientare ver +pazientando pazientare ver +pazientare pazientare ver +pazientate pazientare ver +pazientato pazientare ver +paziente paziente nom +pazienti paziente nom +pazientiamo pazientare ver +paziento pazientare ver +pazienza pazienza nom +pazienze pazienza nom +pazza pazzo adj +pazzamente pazzamente adv +pazzariello pazzariello nom +pazze pazzo adj +pazzeggiare pazzeggiare ver +pazzerella pazzerello adj +pazzerelli pazzerello adj +pazzerello pazzerello adj +pazzesca pazzesco adj +pazzesche pazzesco adj +pazzeschi pazzesco adj +pazzesco pazzesco adj +pazzi pazzo adj +pazzia pazzia nom +pazzie pazzia nom +pazzo pazzo adj +pazzoide pazzoide adj +pazzoidi pazzoide nom +pc pc abr +peana peana nom +peani peana nom +pebrina pebrina nom +pecari pecari nom +pecca pecca nom +peccai peccare ver +peccaminosa peccaminoso adj +peccaminose peccaminoso adj +peccaminosi peccaminoso adj +peccaminoso peccaminoso adj +peccammo peccare ver +peccando peccare ver +peccano peccare ver +peccante peccare ver +peccar peccare ver +peccare peccare ver +peccarono peccare ver +peccasse peccare ver +peccata peccare ver +peccate peccare ver +peccati peccato nom +peccato peccato nom +peccatore peccatore nom +peccatori peccatore nom +peccatrice peccatore nom +peccatrici peccatore nom +peccava peccare ver +peccavano peccare ver +peccavi peccare ver +pecce pecca nom +peccheranno peccare ver +peccherebbe peccare ver +peccherei peccare ver +peccherà peccare ver +peccherò peccare ver +pecchi peccare ver +pecchia pecchia nom +pecchiamo peccare ver +pecchiate peccare ver +pecchino peccare ver +pecchione pecchione nom +pecchioni pecchione nom +pecco peccare ver +peccò peccare ver +pece pece nom +pechblenda pechblenda nom +pechblende pechblenda nom +pechinese pechinese adj +pechinesi pechinese nom +peci pece nom +peck peck nom +pecora pecora nom +pecoraggine pecoraggine nom +pecorai pecoraio nom +pecoraia pecoraio nom +pecoraio pecoraio nom +pecore pecora nom +pecorella pecorella nom +pecorelle pecorella nom +pecorina pecorino adj +pecorine pecorino adj +pecorini pecorino adj +pecorino pecorino adj +pecorona pecorone nom +pecorone pecorone nom +pecoroni pecorone nom +pecorume pecorume nom +pectina pectina nom +pectine pectina nom +peculato peculato nom +peculi peculio nom +peculiare peculiare adj +peculiari peculiare adj +peculiarità peculiarità nom +peculio peculio nom +pecunia pecunia nom +pecuniari pecuniario adj +pecuniaria pecuniario adj +pecuniarie pecuniario adj +pecuniario pecuniario adj +pecunie pecunia nom +pedaggi pedaggio nom +pedaggio pedaggio nom +pedagoga pedagogo nom +pedagoghi pedagogo nom +pedagogia pedagogia nom +pedagogica pedagogico adj +pedagogiche pedagogico adj +pedagogici pedagogico adj +pedagogico pedagogico adj +pedagogie pedagogia nom +pedagogista pedagogista nom +pedagogiste pedagogista nom +pedagogisti pedagogista nom +pedagogo pedagogo nom +pedala pedalare ver +pedalabile pedalabile adj +pedalabili pedalabile adj +pedalando pedalare ver +pedalano pedalare ver +pedalare pedalare ver +pedalasse pedalare ver +pedalata pedalata nom +pedalate pedalata nom +pedalati pedalare ver +pedalato pedalare ver +pedalatore pedalatore nom +pedalatori pedalatore nom +pedalava pedalare ver +pedalavano pedalare ver +pedale pedale nom +pedali pedale nom +pedaliera pedaliera nom +pedaliere pedaliera nom +pedalini pedalino nom +pedalino pedalino nom +pedalo pedalare ver +pedalò pedalare ver +pedana pedana nom +pedante pedante adj +pedanteria pedanteria nom +pedanterie pedanteria nom +pedantesca pedantesco adj +pedanteschi pedantesco adj +pedantesco pedantesco adj +pedanti pedante adj +pedata pedata nom +pedate pedata nom +pedemontana pedemontano adj +pedemontane pedemontano adj +pedemontani pedemontano adj +pedemontano pedemontano adj +pederasta pederasta nom +pederasti pederasta nom +pederastia pederastia nom +pederastie pederastia nom +pedestre pedestre adj +pedestri pedestre adj +pedi pedo nom +pediatra pediatra nom +pediatri pediatra nom +pediatria pediatria nom +pediatrica pediatrico adj +pediatriche pediatrico adj +pediatrici pediatrico adj +pediatrico pediatrico adj +pediatrie pediatria nom +pedicelli pedicello nom +pedicello pedicello nom +pedicolare pedicolare adj +pediculosi pediculosi nom +pedicure pedicure nom +pedigree pedigree nom +pediluvi pediluvio nom +pediluvio pediluvio nom +pedina pedina nom +pedinamento pedinamento nom +pedinando pedinare ver +pedinandola pedinare ver +pedinandolo pedinare ver +pedinano pedinare ver +pedinare pedinare ver +pedinarla pedinare ver +pedinarli pedinare ver +pedinarlo pedinare ver +pedinarono pedinare ver +pedinata pedinare ver +pedinate pedinare ver +pedinati pedinare ver +pedinato pedinare ver +pedinava pedinare ver +pedinavano pedinare ver +pedine pedina nom +pedinerà pedinare ver +pedini pedinare ver +pedino pedinare ver +pedinò pedinare ver +pedissequa pedissequo adj +pedissequamente pedissequamente adv +pedisseque pedissequo adj +pedissequi pedissequo adj +pedissequo pedissequo adj +pedivella pedivella nom +pedivelle pedivella nom +pedo pedo nom +pedologia pedologia nom +pedologie pedologia nom +pedometro pedometro nom +pedona pedone nom +pedonale pedonale adj +pedonali pedonale adj +pedonalizzare pedonalizzare ver +pedonalizzata pedonalizzare ver +pedonalizzate pedonalizzare ver +pedonalizzato pedonalizzare ver +pedone pedone nom +pedoni pedone nom +peducci peduccio nom +peduccio peduccio nom +pedula pedula nom +pedule pedula|pedule nom +peduli pedule nom +peduncolare peduncolare adj +peduncolata peduncolato adj +peduncolate peduncolato adj +peduncolati peduncolato adj +peduncolato peduncolato adj +peduncoli peduncolo nom +peduncolo peduncolo nom +peeling peeling nom +pegamoide pegamoide nom +peggio peggio adj_sup +peggior peggiore adj +peggiora peggiorare ver +peggioramenti peggioramento nom +peggioramento peggioramento nom +peggiorando peggiorare ver +peggiorandola peggiorare ver +peggiorandolo peggiorare ver +peggiorandone peggiorare ver +peggiorano peggiorare ver +peggioranti peggiorare ver +peggiorar peggiorare ver +peggiorare peggiorare ver +peggiorarla peggiorare ver +peggiorarle peggiorare ver +peggiorarli peggiorare ver +peggiorarlo peggiorare ver +peggiorarne peggiorare ver +peggiorarono peggiorare ver +peggiorarsi peggiorare ver +peggiorasse peggiorare ver +peggiorassero peggiorare ver +peggiorata peggiorare ver +peggiorate peggiorare ver +peggiorati peggiorare ver +peggiorativa peggiorativo adj +peggiorative peggiorativo adj +peggiorativi peggiorativo adj +peggiorativo peggiorativo adj +peggiorato peggiorare ver +peggiorava peggiorare ver +peggioravano peggiorare ver +peggiore peggiore adj +peggioreranno peggiorare ver +peggiorerebbe peggiorare ver +peggiorerebbero peggiorare ver +peggiorerà peggiorare ver +peggiori peggiore adj +peggioriamo peggiorare ver +peggiorino peggiorare ver +peggioro peggiorare ver +peggiorò peggiorare ver +pegmatite pegmatite nom +pegmatiti pegmatite nom +pegni pegno nom +pegno pegno nom +pei pei pre +pela pelare ver +pelaghi pelago nom +pelagianismo pelagianismo nom +pelagica pelagico adj +pelagiche pelagico adj +pelagici pelagico adj +pelagico pelagico adj +pelago pelago nom +pelai pelare ver +pelame pelame nom +pelami pelame nom +pelando pelare ver +pelandrona pelandrone nom +pelandrone pelandrone nom +pelandroni pelandrone nom +pelano pelare ver +pelanti pelare ver +pelapatate pelapatate nom +pelar pelare ver +pelare pelare ver +pelargoni pelargonio nom +pelargonio pelargonio nom +pelarle pelare ver +pelata pelato adj +pelate pelato adj +pelati pelato adj +pelato pelato adj +pelatura pelatura nom +peli pelo nom +pelino pelare ver +pellacce pellaccia nom +pellaccia pellaccia nom +pellagra pellagra nom +pellagrosi pellagroso adj +pellai pellaio nom +pellaio pellaio nom +pellame pellame nom +pellami pellame nom +pelle pelle nom +pellegrina pellegrino adj +pellegrinaggi pellegrinaggio nom +pellegrinaggio pellegrinaggio nom +pellegrinando pellegrinare ver +pellegrinante pellegrinare ver +pellegrinare pellegrinare ver +pellegrine pellegrino adj +pellegrini pellegrino adj +pellegrino pellegrino adj +pellegrinò pellegrinare ver +pellerossa pellerossa nom +pelletteria pelletteria nom +pelletterie pelletteria nom +pellettiera pellettiere nom +pellettiere pellettiere nom +pellettieri pellettiere nom +pelli pelle nom +pellicani pellicano nom +pellicano pellicano nom +pellicce pelliccia nom +pellicceria pellicceria nom +pelliccerie pellicceria nom +pelliccia pelliccia nom +pellicciai pellicciaio nom +pellicciaio pellicciaio nom +pellicola pellicola nom +pellicolari pellicolare adj +pellicole pellicola nom +pellirossa pellirossa nom +pellirosse pellirosse nom +pellucida pellucido adj +pellucido pellucido adj +pelo pelo nom +pelosa peloso adj +pelose peloso adj +pelosi peloso adj +pelosità pelosità nom +peloso peloso adj +pelota pelota nom +pelta pelta nom +peltasta peltasta nom +peltasti peltasta nom +peltata peltato adj +peltate peltato adj +peltati peltato adj +peltato peltato adj +pelte pelta nom +peltrai peltraio nom +peltri peltro nom +peltro peltro nom +peluche peluche nom +peluria peluria nom +pelurie peluria nom +pelvi pelvi nom +pelvica pelvico adj +pelviche pelvico adj +pelvici pelvico adj +pelvico pelvico adj +pelò pelare ver +pemmican pemmican nom +pena pena nom +penai penare ver +penala penare ver +penale penale adj +penali penale adj +penalista penalista nom +penalisti penalista nom +penalistica penalistico adj +penalita penalità nom +penalità penalità nom +penalizza penalizzare ver +penalizzando penalizzare ver +penalizzandolo penalizzare ver +penalizzandone penalizzare ver +penalizzano penalizzare ver +penalizzante penalizzare ver +penalizzanti penalizzare ver +penalizzare penalizzare ver +penalizzarla penalizzare ver +penalizzarle penalizzare ver +penalizzarli penalizzare ver +penalizzarlo penalizzare ver +penalizzarmi penalizzare ver +penalizzarne penalizzare ver +penalizzarono penalizzare ver +penalizzasse penalizzare ver +penalizzata penalizzare ver +penalizzate penalizzare ver +penalizzati penalizzare ver +penalizzato penalizzare ver +penalizzava penalizzare ver +penalizzavano penalizzare ver +penalizzazione penalizzazione nom +penalizzazioni penalizzazione nom +penalizzerebbe penalizzare ver +penalizzerebbero penalizzare ver +penalizzerà penalizzare ver +penalizzi penalizzare ver +penalizziamo penalizzare ver +penalizzino penalizzare ver +penalizzò penalizzare ver +penalmente penalmente adv +penalty penalty nom +penando penare ver +penano penare ver +penar penare ver +penare penare ver +penarsi penare ver +penate penare ver +penateti penare ver +penati penati nom +penato penare ver +penava penare ver +penavano penare ver +penavo penare ver +pencolante pencolare ver +penda pendere ver +pendaglio pendaglio nom +pendano pendere ver +pendant pendant nom +pende pendere ver +pendendo pendere ver +pendente pendere ver +pendenti pendente adj +pendenza pendenza nom +pendenze pendenza nom +pender pendere ver +penderanno pendere ver +pendere pendere ver +pendesse pendere ver +pendessero pendere ver +pendeva pendere ver +pendevano pendere ver +pendi pendere ver +pendice pendice nom +pendici pendice nom +pendii pendio nom +pendile pendere ver +pendine pendere ver +pendio pendio nom +pendo pendere ver +pendola pendola nom +pendolante pendolare ver +pendolanti pendolare ver +pendolare pendolare adj +pendolari pendolare nom +pendolarismo pendolarismo nom +pendole pendola nom +pendoli pendolo nom +pendolini pendolino nom +pendolino pendolino nom +pendolo pendolo nom +pendono pendere ver +pendula pendulo adj +pendule pendulo adj +penduli pendulo adj +pendulo pendulo adj +pene pena|pene nom +penepiano penepiano nom +penero penero nom +penetra penetrare ver +penetrabile penetrabile adj +penetrabili penetrabile adj +penetraci penetrare ver +penetrai penetrare ver +penetrale penetrale nom +penetrali penetrale nom +penetrando penetrare ver +penetrandogli penetrare ver +penetrandola penetrare ver +penetrandole penetrare ver +penetrandolo penetrare ver +penetrandone penetrare ver +penetrandovi penetrare ver +penetrano penetrare ver +penetrante penetrante adj +penetranti penetrante adj +penetranza penetranza nom +penetrar penetrare ver +penetrare penetrare ver +penetrarla penetrare ver +penetrarle penetrare ver +penetrarli penetrare ver +penetrarlo penetrare ver +penetrarne penetrare ver +penetrarono penetrare ver +penetrarvi penetrare ver +penetrasse penetrare ver +penetrassero penetrare ver +penetrata penetrare ver +penetrate penetrare ver +penetrati penetrare ver +penetrativa penetrativo adj +penetrative penetrativo adj +penetrativi penetrativo adj +penetrativo penetrativo adj +penetrato penetrare ver +penetrava penetrare ver +penetravano penetrare ver +penetrazione penetrazione nom +penetrazioni penetrazione nom +penetreranno penetrare ver +penetrerebbe penetrare ver +penetrerà penetrare ver +penetri penetrare ver +penetrino penetrare ver +penetro penetrare ver +penetrò penetrare ver +peni pene nom +penicillina penicillina nom +penicilline penicillina nom +penicillo penicillo nom +peninsulare peninsulare adj +peninsulari peninsulare adj +penisola penisola nom +penisole penisola nom +penitente penitente adj +penitenti penitente nom +penitenza penitenza nom +penitenze penitenza nom +penitenziale penitenziale adj +penitenziali penitenziale adj +penitenziari penitenziario adj +penitenziaria penitenziario adj +penitenziarie penitenziario adj +penitenziario penitenziario nom +penitenziere penitenziere nom +penitenzieri penitenziere nom +penna penna nom +pennacchi pennacchio nom +pennacchio pennacchio nom +pennaioli pennaiolo nom +pennarelli pennarello nom +pennarello pennarello nom +pennata pennato adj +pennate pennato adj +pennati pennato adj +pennato pennato adj +pennatosetta pennatosetto adj +pennatosette pennatosetto adj +pennatosetti pennatosetto adj +pennatosetto pennatosetto adj +penne penna nom +pennecchio pennecchio nom +pennella pennellare ver +pennellare pennellare ver +pennellata pennellata nom +pennellate pennellata nom +pennellati pennellare ver +pennellato pennellare ver +pennelleggia pennelleggiare ver +pennelleggiare pennelleggiare ver +pennellessa pennellessa nom +pennelli pennello nom +pennellino pennellare ver +pennello pennello nom +pennichella pennichella nom +penninervia penninervio adj +penninervie penninervio adj +pennini pennino nom +pennino pennino nom +pennivendoli pennivendolo nom +pennivendolo pennivendolo nom +pennone pennone nom +pennoni pennone nom +pennuta pennuto adj +pennuti pennuto nom +pennuto pennuto nom +penny penny nom +peno penare ver +penombra penombra nom +penombre penombra nom +penosa penoso adj +penose penoso adj +penosi penoso adj +penoso penoso adj +pensa pensare ver +pensabile pensabile adj +pensabili pensabile adj +pensaci pensare ver +pensai pensare ver +pensala pensare ver +pensamenti pensamento nom +pensamento pensamento nom +pensami pensare ver +pensammo pensare ver +pensando pensare ver +pensandoci pensare ver +pensandola pensare ver +pensandole pensare ver +pensandoli pensare ver +pensandolo pensare ver +pensandone pensare ver +pensandosi pensare ver +pensandoti pensare ver +pensano pensare ver +pensante pensante adj +pensanti pensante adj +pensar pensare ver +pensarci pensare ver +pensare pensare ver +pensarla pensare ver +pensarle pensare ver +pensarli pensare ver +pensarlo pensare ver +pensarmi pensare ver +pensarne pensare ver +pensarono pensare ver +pensarsi pensare ver +pensarti pensare ver +pensarvi pensare ver +pensasse pensare ver +pensassero pensare ver +pensassi pensare ver +pensassimo pensare ver +pensaste pensare ver +pensasti pensare ver +pensata pensare ver +pensate pensare ver +pensateci pensare ver +pensatela pensare ver +pensatelo pensare ver +pensati pensare ver +pensato pensare ver +pensatoio pensatoio nom +pensatore pensatore nom +pensatori pensatore nom +pensatrice pensatore nom +pensatrici pensatore nom +pensava pensare ver +pensavamo pensare ver +pensavano pensare ver +pensavate pensare ver +pensavi pensare ver +pensavo pensare ver +pensee pensee nom +penserai pensare ver +penseranno pensare ver +penserebbe pensare ver +penserebbero pensare ver +penserei pensare ver +penseremmo pensare ver +penseremo pensare ver +pensereste pensare ver +penseresti pensare ver +penserete pensare ver +penserà pensare ver +penserò pensare ver +pensi pensare ver +pensiamo pensare ver +pensiamoci pensare ver +pensiamola pensare ver +pensiamolo pensare ver +pensiate pensare ver +pensieri pensiero nom +pensiero pensiero nom +pensierosa pensieroso adj +pensierose pensieroso adj +pensierosi pensieroso adj +pensieroso pensieroso adj +pensile pensile adj +pensili pensile adj +pensilina pensilina nom +pensiline pensilina nom +pensino pensare ver +pensionabile pensionabile adj +pensionamenti pensionamento nom +pensionamento pensionamento nom +pensionando pensionare ver +pensionandosi pensionare ver +pensionante pensionante nom +pensionanti pensionante nom +pensionare pensionare ver +pensionata pensionare ver +pensionate pensionare ver +pensionati pensionato adj +pensionato pensionato nom +pensione pensione nom +pensionerà pensionare ver +pensioni pensione nom +pensionistica pensionistico adj +pensionistiche pensionistico adj +pensionistici pensionistico adj +pensionistico pensionistico adj +pensiono pensionare ver +pensionò pensionare ver +penso pensare ver +pensosa pensoso adj +pensose pensoso adj +pensosi pensoso adj +pensosità pensosità nom +pensoso pensoso adj +pensò pensare ver +penta pentirsi ver +pentaclorofenolo pentaclorofenolo adj +pentacordo pentacordo nom +pentadattila pentadattilo adj +pentadattile pentadattilo adj +pentadattili pentadattilo adj +pentadattilo pentadattilo adj +pentadecagono pentadecagono nom +pentaedro pentaedro nom +pentagonale pentagonale adj +pentagonali pentagonale adj +pentagoni pentagono nom +pentagono pentagono nom +pentagramma pentagramma nom +pentagrammata pentagrammato adj +pentagrammato pentagrammato adj +pentagrammi pentagramma nom +pentamera pentamero adj +pentamere pentamero adj +pentameri pentamero adj +pentamero pentamero adj +pentametri pentametro nom +pentametro pentametro nom +pentani pentano nom +pentano pentano nom +pentapartita pentapartito adj +pentapartite pentapartito adj +pentapartito pentapartito nom +pentateuco pentateuco nom +pentathlon pentathlon nom +pentatleta pentatleta nom +pentatleti pentatleta nom +pentatlon pentatlon nom +pentavalente pentavalente adj +pentavalenti pentavalente adj +pente pentirsi ver +pentecostale pentecostale adj +pentecostali pentecostale adj +pentecoste pentecoste nom +pentemimera pentemimera adj +pentendo pentirsi ver +pentendosene pentirsi ver +pentendosi pentirsi ver +penti pentirsi ver +pentiamo pentirsi ver +pentii pentirsi ver +pentila pentirsi ver +pentile pentirsi ver +pentilo pentirsi ver +pentimele pentirsi ver +pentimeli pentirsi ver +pentimenti pentimento nom +pentimento pentimento nom +pentir pentirsi ver +pentirai pentirsi ver +pentiranno pentirsi ver +pentircene pentirsi ver +pentire pentirsi ver +pentirebbe pentirsi ver +pentirei pentirsi ver +pentiremo pentirsi ver +pentirete pentirsi ver +pentirmene pentirsi ver +pentirmi pentirsi ver +pentirono pentirsi ver +pentirsene pentirsi ver +pentirsi pentirsi ver +pentirtene pentirsi ver +pentirti pentirsi ver +pentirvi pentirsi ver +pentirà pentirsi ver +pentirò pentirsi ver +pentisse pentirsi ver +pentissero pentirsi ver +pentita pentirsi ver +pentite pentito adj +pentitevi pentirsi ver +pentiti pentito nom +pentito pentirsi ver +pentiva pentirsi ver +pentivano pentirsi ver +pento pentirsi ver +pentodi pentodo nom +pentodo pentodo nom +pentola pentola nom +pentolaccia pentolaccia nom +pentolai pentolaio nom +pentolaio pentolaio nom +pentole pentola nom +pentolini pentolino nom +pentolino pentolino nom +pentono pentirsi ver +pentossido pentossido nom +pentotal pentotal nom +pentrite pentrite nom +pentì pentirsi ver +penultima penultimo adj +penultime penultimo adj +penultimi penultimo adj +penultimo penultimo adj +penuria penuria nom +penurie penuria nom +penzola penzolare ver +penzolando penzolare ver +penzolano penzolare ver +penzolante penzolare ver +penzolanti penzolare ver +penzolare penzolare ver +penzolasse penzolare ver +penzolava penzolare ver +penzolavano penzolare ver +penzolerà penzolare ver +penzoloni penzoloni adv +peocio peocio nom +peon peon nom +peone peone nom +peoni peone nom +peonia peonia nom +peonie peonia nom +pepa pepare ver +pepaiola pepaiola nom +pepaiole pepaiola nom +pepata pepato adj +pepate pepato adj +pepati pepato adj +pepato pepare ver +pepe pepe nom +peperini peperini|peperino nom +peperino peperino nom +peperita peperita adj +peperonata peperonata nom +peperoncini peperoncino nom +peperoncino peperoncino nom +peperone peperone nom +peperoni peperone nom +pepi pepare ver +pepiera pepiera nom +pepiere pepiera nom +pepino pepare ver +pepita pepita nom +pepite pepita nom +pepli peplo nom +peplo peplo nom +pepo pepare ver +peponide peponide nom +peponidi peponide nom +peppola peppola nom +pepsi pepsi nom +pepsina pepsina nom +pepsine pepsina nom +peptica peptico adj +peptiche peptico adj +peptici peptico adj +peptide peptide nom +peptidi peptide nom +peptone peptone nom +peptoni peptone nom +per per pre +pera pera nom +peracidi peracido nom +peracido peracido nom +peraltro peraltro adv_sup +perbacco perbacco int +perbene perbene adj +perbenismi perbenismo nom +perbenismo perbenismo nom +perborato perborato nom +percalle percalle nom +percento percento nom +percentuale percentuale nom +percentuali percentuale nom +percentualizzato percentualizzare ver +percentualmente percentualmente adv +percependo percepire ver +percependola percepire ver +percependoli percepire ver +percependolo percepire ver +percependone percepire ver +percependosi percepire ver +percepente percepire ver +percepenti percepire ver +percepiamo percepire ver +percepibile percepibile adj +percepibili percepibile adj +percepii percepire ver +percepiranno percepire ver +percepire percepire ver +percepirebbe percepire ver +percepirebbero percepire ver +percepirla percepire ver +percepirle percepire ver +percepirli percepire ver +percepirlo percepire ver +percepirne percepire ver +percepirono percepire ver +percepirsi percepire ver +percepirà percepire ver +percepisca percepire ver +percepiscano percepire ver +percepisce percepire ver +percepisci percepire ver +percepisco percepire ver +percepiscono percepire ver +percepisse percepire ver +percepissero percepire ver +percepita percepire ver +percepite percepire ver +percepiti percepire ver +percepito percepire ver +percepiva percepire ver +percepivano percepire ver +percepivo percepire ver +percepì percepire ver +percettibile percettibile adj +percettibili percettibile adj +percettibilità percettibilità nom +percettiva percettivo adj +percettive percettivo adj +percettivi percettivo adj +percettività percettività nom +percettivo percettivo adj +percettore percettore nom +percettori percettore nom +percezione percezione nom +percezioni percezione nom +perche perche sw +perchè perchè con +perché perché con +perchë perchë sw +percio percio sw +perciò perciò adv_sup +perclorati perclorato nom +perclorato perclorato nom +perclorica perclorico adj +perclorico perclorico adj +percola percolare ver +percolano percolare ver +percolanti percolare ver +percolare percolare ver +percolate percolare ver +percolati percolare ver +percolato percolare ver +percolazione percolazione nom +percolo percolare ver +percolò percolare ver +percome percome nom +percorra percorrere ver +percorrano percorrere ver +percorre percorrere ver +percorrendo percorrere ver +percorrendola percorrere ver +percorrendole percorrere ver +percorrendoli percorrere ver +percorrendolo percorrere ver +percorrendone percorrere ver +percorrente percorrere ver +percorrenti percorrere ver +percorrenza percorrenza nom +percorrenze percorrenza nom +percorrer percorrere ver +percorrerai percorrere ver +percorreranno percorrere ver +percorrere percorrere ver +percorrerebbe percorrere ver +percorrerla percorrere ver +percorrerle percorrere ver +percorrerli percorrere ver +percorrerlo percorrere ver +percorrerne percorrere ver +percorrersi percorrere ver +percorrerà percorrere ver +percorrerò percorrere ver +percorresse percorrere ver +percorressero percorrere ver +percorrete percorrere ver +percorretela percorrere ver +percorretelo percorrere ver +percorreva percorrere ver +percorrevamo percorrere ver +percorrevano percorrere ver +percorrevi percorrere ver +percorri percorrere ver +percorriamo percorrere ver +percorribile percorribile adj +percorribili percorribile adj +percorro percorrere ver +percorrono percorrere ver +percorsa percorrere ver +percorse percorso adj +percorsero percorrere ver +percorsi percorso nom +percorso percorso nom +percossa percuotere ver +percosse percossa nom +percossero percuotere ver +percossi percuotere ver +percosso percuotere ver +percotitore percotitore nom +percuota percuotere ver +percuote percuotere ver +percuotere percuotere ver +percuoterla percuotere ver +percuoterlo percuotere ver +percuoterne percuotere ver +percuotersi percuotere ver +percuotesse percuotere ver +percuoti percuotere ver +percuoto percuotere ver +percuotono percuotere ver +percussione percussione nom +percussioni percussione nom +percussore percussore nom +percussori percussore nom +perda perdere ver +perdano perdere ver +perde perdere ver +perdemmo perdere ver +perdendo perdere ver +perdendoci perdere ver +perdendola perdere ver +perdendole perdere ver +perdendoli perdere ver +perdendolo perdere ver +perdendomi perdere ver +perdendone perdere ver +perdendosi perdere ver +perdendoti perdere ver +perdendovi perdere ver +perdente perdente nom +perdenti perdente nom +perder perdere ver +perderai perdere ver +perderanno perdere ver +perderci perdere ver +perdere perdere ver +perderebbe perdere ver +perderebbero perdere ver +perderei perdere ver +perderemmo perdere ver +perderemo perdere ver +perdereste perdere ver +perderesti perdere ver +perderete perdere ver +perdergli perdere ver +perderla perdere ver +perderle perdere ver +perderli perdere ver +perderlo perdere ver +perdermeli perdere ver +perdermelo perdere ver +perdermi perdere ver +perderne perdere ver +perderselo perdere ver +perdersene perdere ver +perdersi perdere ver +perderti perdere ver +perdervi perdere ver +perderà perdere ver +perderò perdere ver +perdesse perdere ver +perdessero perdere ver +perdessi perdere ver +perdessimo perdere ver +perdesti perdere ver +perdete perdere ver +perdetevi perdere ver +perdeva perdere ver +perdevamo perdere ver +perdevano perdere ver +perdevi perdere ver +perdevo perdere ver +perdi perdere ver +perdiamo perdere ver +perdiamoci perdere ver +perdiana perdiana int +perdiate perdere ver +perdibile perdibile adj +perdici perdere ver +perdifiato perdifiato nom +perdigiorno perdigiorno nom +perdinci perdinci int +perdindirindina perdindirindina int +perdio perdio int +perdita perdita nom +perdite perdita nom +perditempo perditempo nom +perdizione perdizione nom +perdizioni perdizione nom +perdo perdere ver +perdona perdonare ver +perdonabile perdonabile adj +perdonabili perdonabile adj +perdonaci perdonare ver +perdonai perdonare ver +perdonala perdonare ver +perdonale perdonare ver +perdonali perdonare ver +perdonalo perdonare ver +perdonami perdonare ver +perdonando perdonare ver +perdonandoci perdonare ver +perdonandogli perdonare ver +perdonandola perdonare ver +perdonandole perdonare ver +perdonandolo perdonare ver +perdonandosi perdonare ver +perdonandovi perdonare ver +perdonano perdonare ver +perdonar perdonare ver +perdonarci perdonare ver +perdonare perdonare ver +perdonargli perdonare ver +perdonarla perdonare ver +perdonarle perdonare ver +perdonarli perdonare ver +perdonarlo perdonare ver +perdonarmelo perdonare ver +perdonarmi perdonare ver +perdonarono perdonare ver +perdonarselo perdonare ver +perdonarsi perdonare ver +perdonarti perdonare ver +perdonasse perdonare ver +perdonassero perdonare ver +perdonasti perdonare ver +perdonata perdonare ver +perdonate perdonare ver +perdonateci perdonare ver +perdonatelo perdonare ver +perdonatemi perdonare ver +perdonati perdonare ver +perdonato perdonare ver +perdonava perdonare ver +perdonavano perdonare ver +perdonerai perdonare ver +perdoneranno perdonare ver +perdonerebbe perdonare ver +perdonerei perdonare ver +perdonerete perdonare ver +perdonerà perdonare ver +perdonerò perdonare ver +perdoni perdonare ver +perdoniamo perdonare ver +perdoniamoci perdonare ver +perdoniate perdonare ver +perdonino perdonare ver +perdono perdono nom +perdonò perdonare ver +perdura perdurare ver +perdurando perdurare ver +perdurano perdurare ver +perdurante perdurare ver +perduranti perdurare ver +perdurare perdurare ver +perdurarono perdurare ver +perdurasse perdurare ver +perdurassero perdurare ver +perdurata perdurare ver +perdurate perdurare ver +perdurati perdurare ver +perdurato perdurare ver +perdurava perdurare ver +perduravano perdurare ver +perdureranno perdurare ver +perdurerà perdurare ver +perduri perdurare ver +perdurino perdurare ver +perdurò perdurare ver +perduta perduto adj +perdutamente perdutamente adv +perdute perduto adj +perduti perduto adj +perduto perduto adj +pere pera nom +peregrina peregrino adj +peregrinaci peregrinare ver +peregrinando peregrinare ver +peregrinante peregrinare ver +peregrinare peregrinare ver +peregrinarono peregrinare ver +peregrinato peregrinare ver +peregrinava peregrinare ver +peregrinazione peregrinazione nom +peregrinazioni peregrinazione nom +peregrine peregrino adj +peregrinerà peregrinare ver +peregrini peregrino adj +peregrino peregrino adj +peregrinò peregrinare ver +perendo perire ver +perenne perenne adj +perennemente perennemente adv +perenni perenne adj +perennità perennità nom +perenta perento adj +perenti perento adj +perento perento adj +perentori perentorio adj +perentoria perentorio adj +perentorie perentorio adj +perentorietà perentorietà nom +perentorio perentorio adj +perenzione perenzione nom +perequativi perequativo adj +perequativo perequativo adj +perequazione perequazione nom +peretta peretta nom +perette peretta nom +perfetta perfetto adj +perfettamente perfettamente adv +perfette perfetto adj +perfetti perfetto adj +perfettibile perfettibile adj +perfettibili perfettibile adj +perfettibilità perfettibilità nom +perfetto perfetto adj +perfeziona perfezionare ver +perfezionabile perfezionabile adj +perfezionabili perfezionabile adj +perfezionale perfezionare ver +perfezionamenti perfezionamento nom +perfezionamento perfezionamento nom +perfezionando perfezionare ver +perfezionandola perfezionare ver +perfezionandoli perfezionare ver +perfezionandolo perfezionare ver +perfezionandone perfezionare ver +perfezionandosi perfezionare ver +perfezionano perfezionare ver +perfezionare perfezionare ver +perfezionarla perfezionare ver +perfezionarle perfezionare ver +perfezionarli perfezionare ver +perfezionarlo perfezionare ver +perfezionarne perfezionare ver +perfezionarono perfezionare ver +perfezionarsi perfezionare ver +perfezionasse perfezionare ver +perfezionata perfezionare ver +perfezionate perfezionare ver +perfezionati perfezionare ver +perfezionato perfezionare ver +perfezionava perfezionare ver +perfezionavano perfezionare ver +perfezione perfezione nom +perfezioneranno perfezionare ver +perfezionerei perfezionare ver +perfezioneremo perfezionare ver +perfezionerà perfezionare ver +perfezioni perfezione nom +perfezioniamo perfezionare ver +perfezionino perfezionare ver +perfezionismi perfezionismo nom +perfezionismo perfezionismo nom +perfezionista perfezionista nom +perfezioniste perfezionista nom +perfezionisti perfezionista nom +perfezionistica perfezionistico adj +perfezionistico perfezionistico adj +perfeziono perfezionare ver +perfezionò perfezionare ver +perfida perfido adj +perfide perfido adj +perfidi perfido adj +perfidia perfidia nom +perfidie perfidia nom +perfido perfido adj +perfino perfino adv_sup +perfora perforare ver +perforabile perforabile adj +perforabili perforabile adj +perforaci perforare ver +perforamento perforamento nom +perforando perforare ver +perforandogli perforare ver +perforandole perforare ver +perforandoli perforare ver +perforandolo perforare ver +perforandone perforare ver +perforandosi perforare ver +perforano perforare ver +perforante perforante adj +perforanti perforante adj +perforare perforare ver +perforargli perforare ver +perforarla perforare ver +perforarle perforare ver +perforarli perforare ver +perforarlo perforare ver +perforarne perforare ver +perforarono perforare ver +perforarsi perforare ver +perforassero perforare ver +perforata perforare ver +perforate perforato adj +perforati perforare ver +perforato perforare ver +perforatore perforatore nom +perforatori perforatore adj +perforatrice perforatore|perforatrice nom +perforatrici perforatore|perforatrice nom +perforava perforare ver +perforavano perforare ver +perforazione perforazione nom +perforazioni perforazione nom +perforerà perforare ver +perforino perforare ver +performance performance nom +performante performante adj +perforo perforare ver +perforò perforare ver +perfosfati perfosfato nom +perfosfato perfosfato nom +pergamena pergamena nom +pergamenacea pergamenaceo adj +pergamenacee pergamenaceo adj +pergamenacei pergamenaceo adj +pergamenaceo pergamenaceo adj +pergamene pergamena nom +pergami pergamo nom +pergamo pergamo nom +pergola pergola nom +pergolati pergolato nom +pergolato pergolato nom +pergole pergola nom +peri pero nom +perianzio perianzio nom +pericardio pericardio nom +pericardite pericardite nom +pericarditi pericardite nom +pericarpi pericarpo nom +pericarpo pericarpo nom +pericolante pericolante adj +pericolanti pericolante adj +pericolate pericolare ver +pericoli pericolo nom +pericolo pericolo nom +pericolosa pericoloso adj +pericolosamente pericolosamente adv +pericolose pericoloso adj +pericolosi pericoloso adj +pericolosità pericolosità nom +pericoloso pericoloso adj +pericondrio pericondrio nom +peridotite peridotite nom +peridotiti peridotite nom +peridoto peridoto nom +perieli perielio nom +perielio perielio nom +periferia periferia nom +periferica periferico adj +periferiche periferico adj +periferici periferico adj +perifericità perifericità nom +periferico periferico adj +periferie periferia nom +perifrasi perifrasi nom +perifrastica perifrastico adj +perifrastiche perifrastico adj +perifrastico perifrastico adj +perigeo perigeo nom +perigliosa periglioso adj +perigonio perigonio nom +perii perire ver +perimetrale perimetrale adj +perimetrali perimetrale adj +perimetri perimetro nom +perimetro perimetro nom +perinatale perinatale adj +perinatali perinatale adj +perinei perineo nom +perineo perineo nom +perioda periodare ver +periodale periodare ver +periodali periodare ver +periodare periodare nom +periodate periodare ver +periodati periodare ver +periodato periodare ver +periodi periodo nom +periodica periodico adj +periodicamente periodicamente adv +periodiche periodico adj +periodici periodico adj +periodicità periodicità nom +periodico periodico adj +periodizzare periodizzare ver +periodo periodo nom +periodontite periodontite nom +periodontiti periodontite nom +periodonto periodonto nom +periodò periodare ver +periosti periostio nom +periostio periostio nom +periostite periostite nom +peripatetica peripatetico adj +peripatetiche peripatetico adj +peripatetici peripatetico adj +peripatetico peripatetico adj +peripezia peripezia nom +peripezie peripezia nom +peripli periplo nom +periplo periplo nom +perir perire ver +periranno perire ver +perire perire ver +perirebbe perire ver +perirebbero perire ver +periremo perire ver +perirete perire ver +perirono perire ver +perirà perire ver +perisca perire ver +periscano perire ver +perisce perire ver +periscono perire ver +periscopi periscopio nom +periscopica periscopico adj +periscopiche periscopico adj +periscopico periscopico adj +periscopio periscopio nom +perispomena perispomeno adj +perispomeni perispomeno adj +perispomeno perispomeno adj +perisse perire ver +perissero perire ver +perissi perire ver +perissodattili perissodattilo adj +perissodattilo perissodattilo adj +peristalsi peristalsi nom +peristaltica peristaltico adj +peristaltiche peristaltico adj +peristaltici peristaltico adj +peristaltico peristaltico adj +peristi perire ver +peristili peristilio nom +peristilio peristilio nom +perita perire ver +peritale peritale adj +peritali peritale adj +peritano peritarsi ver +peritare peritarsi ver +peritarono peritarsi ver +peritarsi peritarsi ver +peritata peritarsi ver +peritato peritarsi ver +peritava peritarsi ver +perite perire ver +periteci perire ver +periti perito nom +perito perito nom +peritoneale peritoneale adj +peritoneali peritoneale adj +peritoneo peritoneo nom +peritonite peritonite nom +peritoniti peritonite nom +peritura perituro adj +perituri perituro adj +perituro perituro adj +peritò peritarsi ver +periva perire ver +perivano perire ver +perizi periziare ver +perizia perizia nom +periziare periziare ver +periziato periziare ver +perizie perizia nom +perizoma perizoma nom +perizomi perizoma nom +perla perla adj +perlacea perlaceo adj +perlacee perlaceo adj +perlacei perlaceo adj +perlaceo perlaceo adj +perlata perlato adj +perlate perlato adj +perlati perlato adj +perlato perlato adj +perle perla nom +perlifera perlifero adj +perlifere perlifero adj +perlina perlina nom +perlinata perlinato adj +perlinati perlinato adj +perlinato perlinato adj +perline perlina nom +perlinguale perlinguale adj +perlomeno perlomeno adv_sup +perlopiù perlopiù adv +perlustra perlustrare ver +perlustrando perlustrare ver +perlustrano perlustrare ver +perlustrare perlustrare ver +perlustrarlo perlustrare ver +perlustrarono perlustrare ver +perlustrata perlustrare ver +perlustrate perlustrare ver +perlustrato perlustrare ver +perlustrava perlustrare ver +perlustravano perlustrare ver +perlustrazione perlustrazione nom +perlustrazioni perlustrazione nom +perlustrò perlustrare ver +permale permale nom +permalosa permaloso adj +permalose permaloso adj +permalosi permaloso adj +permalosità permalosità nom +permaloso permaloso adj +permane permanere ver +permanendo permanere ver +permanendovi permanere ver +permanente permanente adj +permanentemente permanentemente adv +permanenti permanente adj +permanenza permanenza nom +permanenze permanenza nom +permanere permanere ver +permanervi permanere ver +permanesse permanere ver +permanessero permanere ver +permanete permanere ver +permaneva permanere ver +permanevano permanere ver +permanga permanere ver +permanganati permanganato nom +permanganato permanganato nom +permanganica permanganico adj +permanganico permanganico adj +permangano permanere ver +permango permanere ver +permangono permanere ver +permani permanere ver +permarranno permanere ver +permarrebbe permanere ver +permarrebbero permanere ver +permarrà permanere ver +permase permanere ver +permasero permanere ver +permea permeare ver +permeabile permeabile adj +permeabili permeabile adj +permeabilità permeabilità nom +permeando permeare ver +permeandoli permeare ver +permeano permeare ver +permeante permeare ver +permeanti permeare ver +permeare permeare ver +permearono permeare ver +permearsi permeare ver +permeasi permeare ver +permeasse permeare ver +permeata permeare ver +permeate permeare ver +permeati permeare ver +permeato permeare ver +permeava permeare ver +permeavano permeare ver +permeeranno permeare ver +permeerà permeare ver +permei permeare ver +permeo permeare ver +permessa permettere ver +permesse permettere ver +permessi permesso nom +permesso permettere ver +permetta permettere ver +permettano permettere ver +permette permettere ver +permettendo permettere ver +permettendoci permettere ver +permettendogli permettere ver +permettendola permettere ver +permettendole permettere ver +permettendoli permettere ver +permettendolo permettere ver +permettendomi permettere ver +permettendone permettere ver +permettendosi permettere ver +permettendoti permettere ver +permettendovi permettere ver +permetter permettere ver +permetterai permettere ver +permetteranno permettere ver +permettercele permettere ver +permetterceli permettere ver +permettercelo permettere ver +permetterci permettere ver +permettere permettere ver +permetterebbe permettere ver +permetterebbero permettere ver +permetterei permettere ver +permetteremmo permettere ver +permetteremo permettere ver +permettereste permettere ver +permetteresti permettere ver +permetterete permettere ver +permettergli permettere ver +permetterglielo permettere ver +permetterla permettere ver +permetterle permettere ver +permetterli permettere ver +permetterlo permettere ver +permettermele permettere ver +permettermelo permettere ver +permettermi permettere ver +permetterne permettere ver +permettersela permettere ver +permettersele permettere ver +permetterseli permettere ver +permetterselo permettere ver +permettersene permettere ver +permettersi permettere ver +permetterti permettere ver +permettervi permettere ver +permetterà permettere ver +permetterò permettere ver +permettesse permettere ver +permettessero permettere ver +permettessimo permettere ver +permetteste permettere ver +permettete permettere ver +permetteteci permettere ver +permettetemelo permettere ver +permettetemi permettere ver +permettetevi permettere ver +permetteva permettere ver +permettevano permettere ver +permetti permettere ver +permettiamo permettere ver +permettiate permettere ver +permettici permettere ver +permettimelo permettere ver +permettimi permettere ver +permettiti permettere ver +permetto permettere ver +permettono permettere ver +permeò permeare ver +permiana permiano adj +permiane permiano adj +permiani permiano adj +permiano permiano nom +permiche permico adj +permico permico adj +permise permettere ver +permisero permettere ver +permisi permettere ver +permissibile permissibile adj +permissibili permissibile adj +permissione permissione nom +permissioni permissione nom +permissiva permissivo adj +permissive permissivo adj +permissivi permissivo adj +permissivismo permissivismo nom +permissivo permissivo adj +permuta permuta nom +permutabile permutabile adj +permutabili permutabile adj +permutaci permutare ver +permutando permutare ver +permutandola permutare ver +permutandolo permutare ver +permutano permutare ver +permutante permutare ver +permutare permutare ver +permutarne permutare ver +permutarono permutare ver +permutata permutare ver +permutate permutare ver +permutati permutare ver +permutato permutare ver +permutatore permutatore nom +permutatori permutatore nom +permutava permutare ver +permutazione permutazione nom +permutazioni permutazione nom +permute permuta nom +permutò permutare ver +pernacchia pernacchia nom +pernacchie pernacchia nom +perni pernio|perno nom +pernice pernice nom +pernici pernice nom +perniciosa pernicioso adj +perniciose pernicioso adj +perniciosi pernicioso adj +pernicioso pernicioso adj +pernio pernio nom +perno perno nom +pernotta pernottare ver +pernottamenti pernottamento nom +pernottamento pernottamento nom +pernottando pernottare ver +pernottano pernottare ver +pernottanti pernottare ver +pernottare pernottare ver +pernottarono pernottare ver +pernottarvi pernottare ver +pernottato pernottare ver +pernottava pernottare ver +pernottavano pernottare ver +pernotti pernottare ver +pernotto pernottare ver +pernottò pernottare ver +pero pero nom_sup +perocché perocché con +perone perone nom +peroni perone nom +peronospora peronospora nom +peronospore peronospora nom +perora perorare ver +perorai perorare ver +perorando perorare ver +perorano perorare ver +perorare perorare ver +perorarla perorare ver +perorarne perorare ver +perorarono perorare ver +perorasse perorare ver +perorata perorare ver +perorate perorare ver +perorato perorare ver +perorava perorare ver +peroravano perorare ver +perorazione perorazione nom +perorazioni perorazione nom +perorerà perorare ver +perori perorare ver +peroro perorare ver +perorò perorare ver +perossidi perossido nom +perossido perossido nom +perpendicolare perpendicolare adj +perpendicolari perpendicolare adj +perpendicolarità perpendicolarità nom +perpendicolo perpendicolo nom +perpetra perpetrare ver +perpetrando perpetrare ver +perpetrano perpetrare ver +perpetrare perpetrare ver +perpetrarlo perpetrare ver +perpetrarne perpetrare ver +perpetrarono perpetrare ver +perpetrarsi perpetrare ver +perpetrasse perpetrare ver +perpetrata perpetrare ver +perpetrate perpetrare ver +perpetratevi perpetrare ver +perpetrati perpetrare ver +perpetrato perpetrare ver +perpetrava perpetrare ver +perpetravano perpetrare ver +perpetrazione perpetrazione nom +perpetrerà perpetrare ver +perpetrino perpetrare ver +perpetrò perpetrare ver +perpetua perpetuo adj +perpetuando perpetuare ver +perpetuandosi perpetuare ver +perpetuano perpetuare ver +perpetuar perpetuare ver +perpetuare perpetuare ver +perpetuarla perpetuare ver +perpetuarle perpetuare ver +perpetuarlo perpetuare ver +perpetuarne perpetuare ver +perpetuarono perpetuare ver +perpetuarsi perpetuare ver +perpetuasse perpetuare ver +perpetuassero perpetuare ver +perpetuata perpetuare ver +perpetuate perpetuare ver +perpetuatesi perpetuare ver +perpetuati perpetuare ver +perpetuato perpetuare ver +perpetuava perpetuare ver +perpetuavano perpetuare ver +perpetuazione perpetuazione nom +perpetue perpetuo adj +perpetueranno perpetuare ver +perpetuerebbe perpetuare ver +perpetuerà perpetuare ver +perpetui perpetuo adj +perpetuino perpetuare ver +perpetuità perpetuità nom +perpetuo perpetuo adj +perpetuò perpetuare ver +perplessa perplesso adj +perplesse perplesso adj +perplessi perplesso adj +perplessità perplessità nom +perplesso perplesso adj +perquisendo perquisire ver +perquisendoli perquisire ver +perquisire perquisire ver +perquisirla perquisire ver +perquisirle perquisire ver +perquisirlo perquisire ver +perquisirono perquisire ver +perquisisce perquisire ver +perquisiscono perquisire ver +perquisita perquisire ver +perquisite perquisire ver +perquisiti perquisire ver +perquisito perquisire ver +perquisizione perquisizione nom +perquisizioni perquisizione nom +perquisì perquisire ver +persa perdere ver +perscrutare perscrutare ver +perse perso adj +persecutore persecutore nom +persecutori persecutore nom +persecutoria persecutorio adj +persecutorie persecutorio adj +persecutorio persecutorio adj +persecutrice persecutore adj +persecutrici persecutore adj +persecuzione persecuzione nom +persecuzioni persecuzione nom +persegua perseguire ver +perseguano perseguire ver +persegue perseguire ver +perseguendo perseguire ver +perseguente perseguire ver +persegui perseguire ver +perseguiamo perseguire ver +perseguibile perseguibile adj +perseguibili perseguibile adj +perseguibilità perseguibilità nom +perseguimenti perseguimento nom +perseguimento perseguimento nom +perseguiranno perseguire ver +perseguirci perseguire ver +perseguire perseguire ver +perseguirla perseguire ver +perseguirle perseguire ver +perseguirli perseguire ver +perseguirlo perseguire ver +perseguirmi perseguire ver +perseguirne perseguire ver +perseguirono perseguire ver +perseguirsi perseguire ver +perseguirà perseguire ver +perseguisse perseguire ver +perseguissero perseguire ver +perseguita perseguire ver +perseguitando perseguitare ver +perseguitandola perseguitare ver +perseguitandoli perseguitare ver +perseguitandolo perseguitare ver +perseguitandone perseguitare ver +perseguitano perseguitare ver +perseguitar perseguitare ver +perseguitarci perseguitare ver +perseguitare perseguitare ver +perseguitarla perseguitare ver +perseguitarli perseguitare ver +perseguitarlo perseguitare ver +perseguitarmi perseguitare ver +perseguitarne perseguitare ver +perseguitarono perseguitare ver +perseguitarti perseguitare ver +perseguitarvi perseguitare ver +perseguitasse perseguitare ver +perseguitata perseguitare ver +perseguitate perseguitare ver +perseguitati perseguitare ver +perseguitato perseguitare ver +perseguitava perseguitare ver +perseguitavano perseguitare ver +perseguite perseguire ver +perseguiteranno perseguitare ver +perseguiterebbe perseguitare ver +perseguiterebbero perseguitare ver +perseguiterà perseguitare ver +perseguiterò perseguitare ver +perseguiti perseguire ver +perseguitino perseguitare ver +perseguito perseguire ver +perseguitò perseguitare ver +perseguiva perseguire ver +perseguivano perseguire ver +perseguo perseguire ver +perseguono perseguire ver +perseguì perseguire ver +persero perdere ver +perseveranza perseveranza nom +perseverare perseverare ver +perseveri perseveri ver +persi perso adj +persiana persiano adj +persiane persiano adj +persiani persiano nom +persiano persiano adj +persica persico adj +persici persico adj +persico persico adj +persino persino adv_sup +persista persistere ver +persistano persistere ver +persiste persistere ver +persistendo persistere ver +persistente persistente adj +persistenti persistente adj +persistenza persistenza nom +persistenze persistenza nom +persisteranno persistere ver +persistere persistere ver +persisterono persistere ver +persisterà persistere ver +persistesse persistere ver +persistessero persistere ver +persisteva persistere ver +persistevano persistere ver +persisti persistere ver +persistiamo persistere ver +persistita persistere ver +persistite persistere ver +persistito persistere ver +persisto persistere ver +persistono persistere ver +perso perdere ver +persona persona nom +personaggi personaggio nom +personaggio personaggio nom +personal personal adj +personale personale adj +personali personale adj +personalismi personalismo nom +personalismo personalismo nom +personalista personalista nom +personaliste personalista nom +personalisti personalista nom +personalistica personalistico adj +personalistiche personalistico adj +personalistici personalistico adj +personalistico personalistico adj +personalità personalità nom +personalizza personalizzare ver +personalizzalo personalizzare ver +personalizzando personalizzare ver +personalizzandola personalizzare ver +personalizzandole personalizzare ver +personalizzandoli personalizzare ver +personalizzandolo personalizzare ver +personalizzandone personalizzare ver +personalizzano personalizzare ver +personalizzante personalizzare ver +personalizzanti personalizzare ver +personalizzare personalizzare ver +personalizzarla personalizzare ver +personalizzarle personalizzare ver +personalizzarli personalizzare ver +personalizzarlo personalizzare ver +personalizzarne personalizzare ver +personalizzarono personalizzare ver +personalizzarsi personalizzare ver +personalizzata personalizzare ver +personalizzate personalizzato adj +personalizzati personalizzato adj +personalizzato personalizzare ver +personalizzava personalizzare ver +personalizzavano personalizzare ver +personalizzazione personalizzazione nom +personalizzi personalizzare ver +personalizziamo personalizzare ver +personalizzo personalizzare ver +personalizzò personalizzare ver +personalmente personalmente adv +persone persona nom_sup +personifica personificare ver +personificaci personificare ver +personificando personificare ver +personificandole personificare ver +personificano personificare ver +personificante personificare ver +personificanti personificare ver +personificare personificare ver +personificassero personificare ver +personificata personificare ver +personificate personificare ver +personificati personificare ver +personificato personificare ver +personificava personificare ver +personificavano personificare ver +personificazione personificazione nom +personificazioni personificazione nom +personifichi personificare ver +personificò personificare ver +perspicace perspicace adj +perspicaci perspicace adj +perspicacia perspicacia nom +perspicua perspicuo adj +perspicue perspicuo adj +perspicui perspicuo adj +perspicuità perspicuità nom +perspicuo perspicuo adj +perspirazione perspirazione nom +persuada persuadere ver +persuadano persuadere ver +persuade persuadere ver +persuadendo persuadere ver +persuadendola persuadere ver +persuadendoli persuadere ver +persuadendolo persuadere ver +persuadendone persuadere ver +persuadendosi persuadere ver +persuadente persuadere ver +persuader persuadere ver +persuaderci persuadere ver +persuadere persuadere ver +persuaderla persuadere ver +persuaderle persuadere ver +persuaderli persuadere ver +persuaderlo persuadere ver +persuadermelo persuadere ver +persuadermi persuadere ver +persuaderne persuadere ver +persuadersi persuadere ver +persuadervene persuadere ver +persuadervi persuadere ver +persuaderà persuadere ver +persuadesse persuadere ver +persuadessero persuadere ver +persuadeva persuadere ver +persuadevano persuadere ver +persuado persuadere ver +persuadono persuadere ver +persuasa persuadere ver +persuase persuadere ver +persuasero persuadere ver +persuasi persuadere ver +persuasione persuasione nom +persuasioni persuasione nom +persuasiva persuasivo adj +persuasive persuasivo adj +persuasivi persuasivo adj +persuasivo persuasivo adj +persuaso persuadere ver +persuasore persuasore nom +persuasori persuasore nom +pertanto pertanto adv +pertica pertica nom +pertiche pertica nom +perticone perticone nom +pertinace pertinace adj +pertinaci pertinace adj +pertinacia pertinacia nom +pertinente pertinente adj +pertinenti pertinente adj +pertinenza pertinenza nom +pertinenze pertinenza nom +pertosse pertosse nom +pertossi pertosse nom +pertugi pertugio nom +pertugio pertugio nom +perturba perturbare ver +perturbamento perturbamento nom +perturbando perturbare ver +perturbano perturbare ver +perturbante perturbare ver +perturbanti perturbare ver +perturbare perturbare ver +perturbasse perturbare ver +perturbata perturbare ver +perturbate perturbare ver +perturbati perturbare ver +perturbative perturbativo adj +perturbato perturbare ver +perturbatore perturbatore adj +perturbatori perturbatore adj +perturbatrice perturbatore adj +perturbatrici perturbatore adj +perturbazione perturbazione nom +perturbazioni perturbazione nom +perturberebbe perturbare ver +perturberà perturbare ver +perturbi perturbare ver +perturbino perturbare ver +perturbo perturbare ver +perturbò perturbare ver +perugina perugino adj +perugine perugino adj +perugini perugino adj +perugino perugino adj +peruviana peruviano adj +peruviane peruviano adj +peruviani peruviano adj +peruviano peruviano adj +pervade pervadere ver +pervadendo pervadere ver +pervadente pervadere ver +pervaderanno pervadere ver +pervadere pervadere ver +pervaderà pervadere ver +pervadesse pervadere ver +pervadeva pervadere ver +pervadevano pervadere ver +pervadono pervadere ver +pervasa pervadere ver +pervase pervadere ver +pervasero pervadere ver +pervasi pervadere ver +pervasivi pervasivo adj +pervaso pervadere ver +pervenendo pervenire ver +pervenga pervenire ver +pervengano pervenire ver +pervengo pervenire ver +pervengono pervenire ver +pervenire pervenire ver +pervenisse pervenire ver +pervenissero pervenire ver +perveniva pervenire ver +pervenivano pervenire ver +pervenne pervenire ver +pervennero pervenire ver +pervenni pervenire ver +pervenuta pervenire ver +pervenute pervenire ver +pervenuti pervenire ver +pervenuto pervenire ver +perverrai pervenire ver +perverranno pervenire ver +perverrebbe pervenire ver +perverrà pervenire ver +perversa perverso adj +perverse perverso adj +perversi perverso adj +perversione perversione nom +perversioni perversione nom +perversità perversità nom +perverso perverso adj +perverta pervertire ver +perverte pervertire ver +pervertendo pervertire ver +perverti pervertire ver +pervertimenti pervertimento nom +pervertimento pervertimento nom +pervertire pervertire ver +pervertirsi pervertire ver +pervertita pervertire ver +pervertite pervertire ver +pervertiti pervertito nom +pervertito pervertito nom +pervertono pervertire ver +pervertì pervertire ver +pervi pervio adj +pervia pervio adj +pervicace pervicace adj +pervicaci pervicace adj +pervicacia pervicacia nom +pervie pervio adj +perviene pervenire ver +pervinca pervinca nom +pervinche pervinca nom +pervio pervio adj +perì perire ver +però però adv_sup +pesa pesa nom +pesala pesare ver +pesale pesare ver +pesando pesare ver +pesano pesare ver +pesante pesante adj +pesantemente pesantemente adv +pesantezza pesantezza nom +pesanti pesante adj +pesapersone pesapersone adj +pesar pesare ver +pesare pesare ver +pesarle pesare ver +pesarli pesare ver +pesarne pesare ver +pesarono pesare ver +pesarsi pesare ver +pesasse pesare ver +pesassero pesare ver +pesata pesare ver +pesate pesare ver +pesati pesare ver +pesato pesare ver +pesatore pesatore nom +pesatori pesatore nom +pesatrice pesatore nom +pesatura pesatura nom +pesature pesatura nom +pesava pesare ver +pesavano pesare ver +pesavo pesare ver +pesca pesca nom +pescabili pescabile adj +pescaggi pescaggio nom +pescaggio pescaggio nom +pescaia pescaia nom +pescaie pescaia nom +pescale pescare ver +pescali pescare ver +pescando pescare ver +pescandoli pescare ver +pescandone pescare ver +pescane pescare ver +pescano pescare ver +pescante pescare ver +pescanti pescare ver +pescar pescare ver +pescare pescare ver +pescarese pescarese adj +pescaresi pescarese adj +pescarla pescare ver +pescarle pescare ver +pescarli pescare ver +pescarlo pescare ver +pescarne pescare ver +pescarono pescare ver +pescarsi pescare ver +pescarvi pescare ver +pescasse pescare ver +pescata pescare ver +pescate pescare ver +pescatesi pescare ver +pescati pescare ver +pescato pescare ver +pescatore pescatore adj +pescatori pescatore nom +pescatrice pescatore adj +pescatrici pescatore adj +pescava pescare ver +pescavano pescare ver +pesce pesce nom +pescecane pescecane nom +pescecani pescecane nom +pesche pesca nom +pescherebbe pescare ver +pescherecce peschereccio adj +pescherecci peschereccio nom +peschereccia peschereccio adj +peschereccio peschereccio adj +pescheremo pescare ver +pescheria pescheria nom +pescherie pescheria nom +pescherà pescare ver +pescheti pescheto nom +pescheto pescheto nom +peschi pesco nom +peschiamo pescare ver +peschicoltura peschicoltura nom +peschiera peschiera nom +peschiere peschiera nom +pesci pesce nom +pesciaiola pesciaiola|pesciaiolo nom +pesciaioli pesciaiolo nom +pesciaiolo pesciaiolo nom +pescicani pescicani nom +pescicoltura pescicoltura nom +pesciera pesciera nom +pesciolini pesciolino nom +pesciolino pesciolino nom +pescivendola pescivendolo nom +pescivendole pescivendolo nom +pescivendoli pescivendolo nom +pescivendolo pescivendolo nom +pesco pesco nom +pescosa pescoso nom +pescose pescoso nom +pescosi pescoso nom +pescosità pescosità nom +pescoso pescoso nom +pescò pescare ver +pese pesa nom +peseranno pesare ver +peserebbe pesare ver +peserebbero pesare ver +peserà pesare ver +peseta peseta nom +pesi peso nom +pesiamo pesare ver +pesino pesare ver +pesistica pesistica nom +peso peso nom +pessima pessimo adj +pessime pessimo adj +pessimi pessimo adj +pessimismi pessimismo nom +pessimismo pessimismo nom +pessimista pessimista nom +pessimiste pessimista nom +pessimisti pessimista nom +pessimistica pessimistico adj +pessimistiche pessimistico adj +pessimistici pessimistico adj +pessimistico pessimistico adj +pessimo pessimo adj +pesta pesto adj +pestaggi pestaggio nom +pestaggio pestaggio nom +pestala pestare ver +pestando pestare ver +pestandogli pestare ver +pestandola pestare ver +pestandole pestare ver +pestandoli pestare ver +pestandolo pestare ver +pestano pestare ver +pestante pestare ver +pestar pestare ver +pestarci pestare ver +pestare pestare ver +pestargli pestare ver +pestarla pestare ver +pestarle pestare ver +pestarli pestare ver +pestarlo pestare ver +pestarmi pestare ver +pestarono pestare ver +pestarsi pestare ver +pestarvi pestare ver +pestata pestare ver +pestate pestare ver +pestati pestare ver +pestato pestare ver +pestatura pestatura nom +pestava pestare ver +pestavano pestare ver +pestavo pestare ver +peste pesta|peste nom +pestelli pestello nom +pestello pestello nom +pesterebbe pestare ver +pesterei pestare ver +pesterà pestare ver +pesti pesto adj +pesticcio pesticciare ver +pesticida pesticida nom +pesticidi pesticida nom +pestifera pestifero adj +pestifere pestifero adj +pestiferi pestifero adj +pestifero pestifero adj +pestilenza pestilenza nom +pestilenze pestilenza nom +pestilenziale pestilenziale adj +pestilenziali pestilenziale adj +pestino pestare ver +pesto pesto adj +pestò pestare ver +pesò pesare ver +petali petalo nom +petalo petalo nom +petardi petardo nom +petardo petardo nom +petaso petaso nom +petecchia petecchia nom +petecchiale petecchiale adj +petecchiali petecchiale adj +petecchie petecchia nom +peti peto nom +petizione petizione nom +petizioni petizione nom +peto peto nom +petraia petraia nom +petrarchismo petrarchismo nom +petrarchista petrarchista nom +petrarchiste petrarchista nom +petrarchisti petrarchista nom +petrodollari petrodollaro nom +petrodollaro petrodollaro nom +petrografia petrografia nom +petrografie petrografia nom +petrolchimica petrolchimico adj +petrolchimiche petrolchimico adj +petrolchimici petrolchimico adj +petrolchimico petrolchimico adj +petroldollaro petroldollaro nom +petroli petrolio nom +petroliera petroliero adj +petroliere petroliero adj +petrolieri petroliere nom +petrolifera petrolifero adj +petrolifere petrolifero adj +petroliferi petrolifero adj +petrolifero petrolifero adj +petrolio petrolio nom +petroniana petroniano adj +petroniane petroniano adj +petroniani petroniano nom +petroniano petroniano adj +petrosa petroso adj +petrose petroso adj +petrosi petroso adj +petroso petroso adj +pettegola pettegolo adj +pettegole pettegolo adj +pettegolezzi pettegolezzo nom +pettegolezzo pettegolezzo nom +pettegoli pettegolo adj +pettegolo pettegolo adj +petti petto nom +pettina pettinare ver +pettinando pettinare ver +pettinandosi pettinare ver +pettinano pettinare ver +pettinare pettinare ver +pettinarla pettinare ver +pettinarlo pettinare ver +pettinarsi pettinare ver +pettinata pettinato adj +pettinate pettinare ver +pettinati pettinato adj +pettinato pettinato adj +pettinatrice pettinatrice nom +pettinatrici pettinatrice nom +pettinatura pettinatura nom +pettinature pettinatura nom +pettinavano pettinare ver +pettine pettine nom +petting petting nom +pettini pettine|pettino nom +pettinino pettinare ver +pettino pettino nom +pettirossi pettirosso nom +pettirosso pettirosso nom +petto petto nom +pettorale pettorale adj +pettorali pettorale adj +pettorina pettorina nom +pettorine pettorina nom +pettoruta pettoruto adj +pettorute pettoruto adj +pettoruti pettoruto adj +pettoruto pettoruto adj +petulante petulante adj +petulanti petulante adj +petulanza petulanza nom +petunia petunia nom +petunie petunia nom +pezza pezza nom +pezzata pezzato adj +pezzate pezzato adj +pezzati pezzato adj +pezzato pezzato adj +pezzatura pezzatura nom +pezzature pezzatura nom +pezze pezza nom +pezzente pezzente nom +pezzenti pezzente nom +pezzi pezzo nom +pezzo pezzo nom +pezzulli pezzullo nom +pezzullo pezzullo nom +pezzuola pezzuola nom +pezzuole pezzuola nom +pfennig pfennig nom +phon phon nom +photofit photofit nom +phylum phylum nom +pi pi nom_sup +pia pio adj +piaccia piacere ver +piacciamo piacere ver +piacciano piacere ver +piaccio piacere ver +piacciono piacere ver +piace piacere ver +piacendo piacere ver +piacendogli piacere ver +piacendomi piacere ver +piacente piacere ver +piacenti piacere ver +piacer piacere ver +piaceranno piacere ver +piacerci piacere ver +piacere piacere nom +piacerebbe piacere ver +piacerebbero piacere ver +piacergli piacere ver +piaceri piacere nom +piacerle piacere ver +piacermi piacere ver +piacersi piacere ver +piacerti piacere ver +piacervi piacere ver +piacerà piacere ver +piacerò piacere ver +piacesse piacere ver +piacessero piacere ver +piacete piacere ver +piaceva piacere ver +piacevano piacere ver +piacevi piacere ver +piacevo piacere ver +piacevole piacevole adj +piacevolezza piacevolezza nom +piacevolezze piacevolezza nom +piacevoli piacevole adj +piaci piacere ver +piacimento piacimento nom +piaciuta piacere ver +piaciute piacere ver +piaciuti piacere ver +piaciuto piacere ver +piacque piacere ver +piacquero piacere ver +piacqui piacere ver +piada piada nom +piade piada nom +piadina piadina nom +piadine piadina nom +piaga piaga nom +piagare piagare ver +piagata piagare ver +piagate piagare ver +piagati piagare ver +piagato piagare ver +piagavano piagare ver +piagge piaggia nom +piaggeria piaggeria nom +piaggerie piaggeria nom +piaggi piaggiare ver +piaggia piaggia nom +piaggiato piaggiare ver +piaggino piaggiare ver +piaggio piaggiare ver +piaghe piaga nom +piagnistei piagnisteo nom +piagnisteo piagnisteo nom +piagnona piagnone nom +piagnone piagnone nom +piagnoni piagnone nom +piagnucola piagnucolare ver +piagnucolando piagnucolare ver +piagnucolano piagnucolare ver +piagnucolante piagnucolare ver +piagnucolanti piagnucolare ver +piagnucolare piagnucolare ver +piagnucolato piagnucolare ver +piagnucolio piagnucolio nom +piagnucolona piagnucolone nom +piagnucolone piagnucolone nom +piagnucoloni piagnucolone nom +piagnucolosa piagnucoloso adj +piagnucolose piagnucoloso adj +piagnucolosi piagnucoloso adj +piagnucoloso piagnucoloso adj +piagò piagare ver +piai piare ver +piala piare ver +piale piare ver +piali piare ver +pialla pialla nom +piallalo piallare ver +piallare piallare ver +piallarne piallare ver +piallata piallata nom +piallate piallare ver +piallato piallare ver +piallatori piallatore nom +piallatrice piallatore adj +piallatrici piallatore|piallatrice nom +piallatura piallatura nom +piallature piallatura nom +pialle pialla nom +pialletti pialletto nom +pialletto pialletto nom +piamadre piamadre nom +piamo piare ver +piana piano adj +pianale pianale nom +pianali pianale nom +piando piare ver +piandoli piare ver +piane piano adj +pianeggiante pianeggiante adj +pianeggianti pianeggiante adj +pianeggiate pianeggiare ver +pianella pianella nom +pianelle pianella nom +pianerottoli pianerottolo nom +pianerottolo pianerottolo nom +pianeta pianeta nom +pianete pianeta nom +pianeti pianeta nom +pianetini pianetino nom +pianetino pianetino nom +pianga piangere ver +piangano piangere ver +piange piangere ver +piangemmo piangere ver +piangendo piangere ver +piangendolo piangere ver +piangendone piangere ver +piangente piangente adj +piangenti piangente adj +pianger piangere ver +piangerai piangere ver +piangeranno piangere ver +piangerci piangere ver +piangere piangere ver +piangerebbe piangere ver +piangerei piangere ver +piangerete piangere ver +piangerli piangere ver +piangerlo piangere ver +piangerne piangere ver +piangersi piangere ver +piangervi piangere ver +piangerà piangere ver +piangerò piangere ver +piangesse piangere ver +piangessero piangere ver +piangeste piangere ver +piangesti piangere ver +piangete piangere ver +piangetemi piangere ver +piangeva piangere ver +piangevano piangere ver +piangevi piangere ver +piangevo piangere ver +piangi piangere ver +piangiamo piangere ver +piangimi piangere ver +piango piangere ver +piangono piangere ver +piani piano nom +pianifica pianificare ver +pianificabile pianificabile adj +pianificabili pianificabile adj +pianificando pianificare ver +pianificandone pianificare ver +pianificano pianificare ver +pianificare pianificare ver +pianificarla pianificare ver +pianificarlo pianificare ver +pianificarne pianificare ver +pianificarono pianificare ver +pianificasse pianificare ver +pianificassero pianificare ver +pianificata pianificare ver +pianificate pianificare ver +pianificati pianificare ver +pianificato pianificare ver +pianificatore pianificatore nom +pianificatori pianificatore nom +pianificatrice pianificatore nom +pianificava pianificare ver +pianificavano pianificare ver +pianificazione pianificazione nom +pianificazioni pianificazione nom +pianificheranno pianificare ver +pianificherà pianificare ver +pianifichi pianificare ver +pianifico pianificare ver +pianificò pianificare ver +pianista pianista nom +pianiste pianista nom +pianisti pianista nom +pianistica pianistico adj +pianistiche pianistico adj +pianistici pianistico adj +pianistico pianistico adj +piano piano nom_sup +pianoforte pianoforte nom +pianoforti pianoforte nom +pianola pianola nom +pianole pianola nom +pianori pianoro nom +pianoro pianoro nom +pianoterra pianoterra nom +pianse piangere ver +piansero piangere ver +piansi piangere ver +pianta pianta nom +piantaggine piantaggine nom +piantagione piantagione nom +piantagioni piantagione nom +piantagrane piantagrane nom +piantai piantare ver +piantala piantare ver +piantana piantana nom +piantando piantare ver +piantandogli piantare ver +piantandola piantare ver +piantandole piantare ver +piantandoli piantare ver +piantandolo piantare ver +piantandone piantare ver +piantandosi piantare ver +piantandovi piantare ver +piantane piantana nom +piantano piantare ver +piantar piantare ver +piantare piantare ver +piantargli piantare ver +piantarla piantare ver +piantarle piantare ver +piantarli piantare ver +piantarlo piantare ver +piantarne piantare ver +piantarono piantare ver +piantarsi piantare ver +piantarvi piantare ver +piantasse piantare ver +piantassero piantare ver +piantassi piantare ver +piantassimo piantare ver +piantata piantare ver +piantate piantare ver +piantatela piantare ver +piantati piantare ver +piantato piantare ver +piantatore piantatore nom +piantatori piantatore nom +piantatrici piantatore|piantatrice nom +piantava piantare ver +piantavano piantare ver +piante pianta nom +pianteranno piantare ver +pianteremo piantare ver +pianterreni pianterreno nom +pianterreno pianterreno nom +pianterà piantare ver +pianterò piantare ver +pianti pianto nom +piantiamo piantare ver +piantiamola piantare ver +piantino piantare ver +pianto pianto nom +piantona piantonare ver +piantonando piantonare ver +piantonare piantonare ver +piantonata piantonare ver +piantonati piantonare ver +piantonato piantonare ver +piantone piantone nom +piantoni piantone nom +piantò piantare ver +pianura pianura nom +pianure pianura nom +pianuzza pianuzza nom +pianuzze pianuzza nom +piar piare ver +piasi piare ver +piasse piare ver +piaste piare ver +piasti piare ver +piastra piastra nom +piastre piastra nom +piastrella piastrella nom +piastrellata piastrellare ver +piastrellate piastrellare ver +piastrellati piastrellare ver +piastrellato piastrellare ver +piastrelle piastrella nom +piastrelli piastrellare ver +piastrellista piastrellista nom +piastrellisti piastrellista nom +piastrina piastrina nom +piastrine piastrina nom +piastrini piastrino nom +piastrino piastrino nom +piastrone piastrone nom +piastroni piastrone nom +piata piare ver +piate piare ver +piatesi piare ver +piati piare ver +piato piare ver +piatta piatto adj +piattabanda piattabanda nom +piattabande piattabanda nom +piattaforma piattaforma nom +piattaforme piattaforma nom +piatte piatto adj +piattelli piattello nom +piattello piattello nom +piattezza piattezza nom +piatti piatto nom +piattina piattina nom +piattine piattina nom +piattini piattino nom +piattino piattino nom +piatto piatto nom +piattola piattola nom +piattole piattola nom +piattoni piattonare ver +piava piare ver +piavi piare ver +piazza piazza nom +piazzaforte piazzaforte nom +piazzai piazzare ver +piazzale piazzale nom +piazzali piazzale nom +piazzamenti piazzamento nom +piazzamento piazzamento nom +piazzando piazzare ver +piazzandoci piazzare ver +piazzandogli piazzare ver +piazzandola piazzare ver +piazzandole piazzare ver +piazzandoli piazzare ver +piazzandolo piazzare ver +piazzandone piazzare ver +piazzandosi piazzare ver +piazzandovi piazzare ver +piazzano piazzare ver +piazzarci piazzare ver +piazzare piazzare ver +piazzarla piazzare ver +piazzarle piazzare ver +piazzarli piazzare ver +piazzarlo piazzare ver +piazzarmi piazzare ver +piazzarne piazzare ver +piazzarono piazzare ver +piazzarsi piazzare ver +piazzarvi piazzare ver +piazzasse piazzare ver +piazzata piazzare ver +piazzate piazzare ver +piazzatesi piazzare ver +piazzati piazzato adj +piazzato piazzare ver +piazzava piazzare ver +piazzavano piazzare ver +piazze piazza nom +piazzeforti piazzeforti nom +piazzeranno piazzare ver +piazzerebbe piazzare ver +piazzerei piazzare ver +piazzerà piazzare ver +piazzi piazzare ver +piazziamo piazzare ver +piazzino piazzare ver +piazzista piazzista nom +piazzisti piazzista nom +piazzo piazzare ver +piazzola piazzola nom +piazzole piazzola nom +piazzò piazzare ver +pica pica nom +picacismo picacismo nom +picador picador nom +picaresca picaresco adj +picaresche picaresco adj +picareschi picaresco adj +picaresco picaresco adj +picari picaro nom +picaro picaro nom +picca picca nom +piccagli piccarsi ver +piccalo piccarsi ver +piccante piccante adj +piccanti piccante adj +piccata piccarsi ver +piccate piccata nom +piccati piccarsi ver +piccato piccarsi ver +piccava piccarsi ver +picche picca nom +picchetta picchettare ver +picchettaggi picchettaggio nom +picchettaggio picchettaggio nom +picchettamento picchettamento nom +picchettano picchettare ver +picchettare picchettare ver +picchettarono picchettare ver +picchettata picchettare ver +picchettate picchettare ver +picchettati picchettare ver +picchettato picchettare ver +picchettava picchettare ver +picchetti picchetto nom +picchetto picchetto nom +picchi picchio|picco nom +picchia picchiare ver +picchialo picchiare ver +picchiami picchiare ver +picchiamo piccarsi|picchiare ver +picchiando picchiare ver +picchiandola picchiare ver +picchiandole picchiare ver +picchiandoli picchiare ver +picchiandolo picchiare ver +picchiandosi picchiare ver +picchiano picchiare ver +picchiante picchiare ver +picchianti picchiare ver +picchiarci picchiare ver +picchiare picchiare ver +picchiarla picchiare ver +picchiarle picchiare ver +picchiarli picchiare ver +picchiarlo picchiare ver +picchiarmi picchiare ver +picchiarono picchiare ver +picchiarsi picchiare ver +picchiarti picchiare ver +picchiarvi picchiare ver +picchiasse picchiare ver +picchiassero picchiare ver +picchiata picchiata nom +picchiate picchiata nom +picchiatella picchiatello adj +picchiatelli picchiatello nom +picchiatello picchiatello adj +picchiatemi picchiare ver +picchiati picchiare ver +picchiato picchiare ver +picchiatore picchiatore nom +picchiatori picchiatore nom +picchiava picchiare ver +picchiavano picchiare ver +picchiavo picchiare ver +picchierai picchiare ver +picchieranno picchiare ver +picchiere picchiere nom +picchieri picchiere nom +picchierà picchiare ver +picchietta picchiettare ver +picchiettando picchiettare ver +picchiettare picchiettare ver +picchiettata picchiettare ver +picchiettate picchiettare ver +picchiettato picchiettare ver +picchiettatura picchiettatura nom +picchiettature picchiettatura nom +picchietti picchiettio nom +picchiettio picchiettio nom +picchino piccarsi|picchiare ver +picchio picchio nom +picchiotti picchiotto nom +picchiotto picchiotto nom +picchiò picchiare ver +picchè picchè nom +piccina piccino adj +piccine piccino adj +piccineria piccineria nom +piccinerie piccineria nom +piccini piccino adj +piccinina piccinina nom +piccinine piccinina nom +piccino piccino adj +piccioli picciolo nom +picciolo picciolo nom +piccionaia piccionaia nom +piccionaie piccionaia nom +piccione piccione nom +piccioni piccione nom +picciotti picciotto nom +picciotto picciotto nom +picco picco nom +piccola piccolo adj +piccole piccolo adj +piccolezza piccolezza nom +piccolezze piccolezza nom +piccoli piccolo adj +piccolissima piccolissimo adj +piccolissime piccolissimo adj +piccolo piccolo adj +picconata picconata nom +picconate picconata nom +piccone piccone nom +picconi piccone nom +picconiere picconiere nom +picconieri picconiere nom +piccozza piccozza nom +piccozze piccozza nom +picea piceo nom +picee piceo nom +piceo piceo nom +piche pica nom +picnic picnic nom +picnometri picnometro nom +picnometro picnometro nom +picrico picrico adj +pidocchi pidocchio nom +pidocchio pidocchio nom +pidocchiosa pidocchioso adj +pidocchiosi pidocchioso adj +pidocchioso pidocchioso adj +pie pio adj +piece piece nom +piede piede nom +piedi piede nom +piedini piedino nom +piedino piedino nom +piedipiatti piedipiatti nom +piedistalli piedistallo nom +piedistallo piedistallo nom +piedritti piedritto nom +piedritto piedritto nom +piega piega nom +piegaferro piegaferro nom +piegai piegare ver +piegalo piegare ver +piegamenti piegamento nom +piegamento piegamento nom +piegami piegare ver +piegando piegare ver +piegandola piegare ver +piegandole piegare ver +piegandoli piegare ver +piegandolo piegare ver +piegandone piegare ver +piegandosi piegare ver +piegano piegare ver +piegar piegare ver +piegarci piegare ver +piegare piegare ver +piegarla piegare ver +piegarle piegare ver +piegarli piegare ver +piegarlo piegare ver +piegarmi piegare ver +piegarne piegare ver +piegarono piegare ver +piegarsi piegare ver +piegarti piegare ver +piegasse piegare ver +piegata piegare ver +piegate piegare ver +piegati piegare ver +piegato piegare ver +piegatrice piegatrice nom +piegatrici piegatrice nom +piegatura piegatura nom +piegature piegatura nom +piegava piegare ver +piegavano piegare ver +pieghe piega nom +piegheranno piegare ver +piegherebbe piegare ver +piegherebbero piegare ver +piegherei piegare ver +piegheremo piegare ver +piegherà piegare ver +piegherò piegare ver +pieghettata pieghettare ver +pieghettate pieghettare ver +pieghettati pieghettare ver +pieghettato pieghettare ver +pieghettatura pieghettatura nom +pieghettature pieghettatura nom +pieghevole pieghevole adj +pieghevoli pieghevole adj +pieghi piegare ver +pieghiamo piegare ver +pieghiamoci piegare ver +pieghino piegare ver +piego piegare ver +piegò piegare ver +pielografia pielografia nom +piemontese piemontese adj +piemontesi piemontese adj +piena pieno adj +pienamente pienamente adv +piene pieno adj +pienezza pienezza nom +pieni pieno adj +pieno pieno adj +pienone pienone nom +pienoni pienone nom +pienotta pienotto adj +pienotte pienotto adj +pienotti pienotto adj +pierrot pierrot nom +pietanza pietanza nom +pietanze pietanza nom +pietanziera pietanziera nom +pietismi pietismo nom +pietismo pietismo nom +pietista pietista nom +pietiste pietista nom +pietisti pietista nom +pietistica pietistico adj +pietistiche pietistico adj +pietistici pietistico adj +pietistico pietistico adj +pietosa pietoso adj +pietose pietoso adj +pietosi pietoso adj +pietoso pietoso adj +pietra pietra nom +pietraia pietraia nom +pietraie pietraia nom +pietrame pietrame nom +pietre pietra nom +pietrifica pietrificare ver +pietrificando pietrificare ver +pietrificandoli pietrificare ver +pietrificandolo pietrificare ver +pietrificandosi pietrificare ver +pietrificano pietrificare ver +pietrificante pietrificare ver +pietrificanti pietrificare ver +pietrificare pietrificare ver +pietrificarla pietrificare ver +pietrificarle pietrificare ver +pietrificarli pietrificare ver +pietrificarlo pietrificare ver +pietrificarsi pietrificare ver +pietrificassero pietrificare ver +pietrificata pietrificare ver +pietrificate pietrificare ver +pietrificati pietrificare ver +pietrificato pietrificare ver +pietrificava pietrificare ver +pietrificherà pietrificare ver +pietrificò pietrificare ver +pietrina pietrina nom +pietrine pietrina nom +pietrischi pietrisco nom +pietrisco pietrisco nom +pietrosa pietroso adj +pietrose pietroso adj +pietrosi pietroso adj +pietroso pietroso adj +pietà pietà nom +pievani pievano nom +pievania pievania nom +pievanie pievania nom +pievano pievano nom +pieve pieve nom +pievi pieve nom +piezoelettrica piezoelettrico adj +piezoelettriche piezoelettrico adj +piezoelettrici piezoelettrico adj +piezoelettricità piezoelettricità nom +piezoelettrico piezoelettrico adj +piezometri piezometro nom +piezometria piezometria nom +piezometrica piezometrico adj +piezometriche piezometrico adj +piezometrici piezometrico adj +piezometrico piezometrico adj +piezometro piezometro nom +pifferai pifferaio nom +pifferaio pifferaio nom +pifferi piffero nom +piffero piffero nom +pigi pigiare ver +pigia pigiare ver +pigiama pigiama nom +pigiami pigiama nom +pigiando pigiare ver +pigiandola pigiare ver +pigiano pigiare ver +pigiar pigiare ver +pigiare pigiare ver +pigiata pigiare ver +pigiate pigiare ver +pigiati pigiare ver +pigiato pigiare ver +pigiatrice pigiatrice nom +pigiatura pigiatura nom +pigiature pigiatura nom +pigiava pigiare ver +pigino pigiare ver +pigio pigiare ver +pigionante pigionante nom +pigionanti pigionante nom +pigione pigione nom +pigioni pigione nom +pigiò pigiare ver +pigli pigliare ver +piglia pigliare ver +pigliai pigliare ver +pigliala pigliare ver +pigliami pigliare ver +pigliammo pigliare ver +pigliamo pigliare ver +pigliamoci pigliare ver +pigliando pigliare ver +pigliandosi pigliare ver +pigliano pigliare ver +pigliar pigliare ver +pigliarci pigliare ver +pigliare pigliare ver +pigliarlo pigliare ver +pigliarmi pigliare ver +pigliarono pigliare ver +pigliarsi pigliare ver +pigliarvi pigliare ver +pigliasse pigliare ver +pigliassi pigliare ver +pigliata pigliare ver +pigliate pigliare ver +pigliatela pigliare ver +pigliati pigliare ver +pigliato pigliare ver +pigliatutto pigliatutto adj +pigliava pigliare ver +pigliavano pigliare ver +pigliavo pigliare ver +piglieranno pigliare ver +piglieremo pigliare ver +piglierà pigliare ver +piglino pigliare ver +piglio piglio nom +pigliò pigliare ver +pigmea pigmeo adj +pigmee pigmeo adj +pigmei pigmeo nom +pigmenta pigmentare ver +pigmentano pigmentare ver +pigmentante pigmentare ver +pigmentanti pigmentare ver +pigmentari pigmentario adj +pigmentaria pigmentario adj +pigmentarie pigmentario adj +pigmentario pigmentario adj +pigmentarsi pigmentare ver +pigmentata pigmentare ver +pigmentate pigmentare ver +pigmentati pigmentare ver +pigmentato pigmentare ver +pigmentazione pigmentazione nom +pigmentazioni pigmentazione nom +pigmenti pigmento nom +pigmento pigmento nom +pigmeo pigmeo adj +pigna pigna nom +pignatta pignatta nom +pignatte pignatta nom +pigne pigna nom +pignoccata pignoccata nom +pignola pignolo adj +pignole pignolo adj +pignoleria pignoleria nom +pignolerie pignoleria nom +pignoli pignolo adj +pignolo pignolo adj +pignone pignone nom +pignoni pignone nom +pignora pignorare ver +pignorabile pignorabile adj +pignorabili pignorabile adj +pignoramenti pignoramento nom +pignoramento pignoramento nom +pignorando pignorare ver +pignorante pignorare ver +pignorare pignorare ver +pignorata pignorare ver +pignorate pignorare ver +pignorati pignorare ver +pignoratizi pignoratizio adj +pignoratizia pignoratizio adj +pignoratizio pignoratizio adj +pignorato pignorare ver +pignorava pignorare ver +pignorò pignorare ver +pigola pigolare ver +pigolare pigolare ver +pigoli pigolio nom +pigolio pigolio nom +pigra pigro adj +pigre pigro adj +pigri pigro adj +pigrizia pigrizia nom +pigrizie pigrizia nom +pigro pigro adj +pii pio adj +pila pila nom +pilaf pilaf nom +pilare pilare nom +pilari pilare nom +pilastri pilastro nom +pilastro pilastro nom +pilatura pilatura nom +pile pila nom +pilei pileo nom +pileo pileo nom +piletta piletta nom +pilette piletta nom +pili pilo nom +pilifera pilifero adj +pilifere pilifero adj +piliferi pilifero adj +pilifero pilifero adj +pilla pillare ver +pillacchere pillacchera nom +pillai pillare ver +pillala pillare ver +pillar pillare ver +pilli pillo nom +pillo pillo nom +pillola pillola nom +pillole pillola nom +pillotta pillottare ver +pillotti pillotto nom +pilo pilo nom +pilone pilone nom +piloni pilone nom +pilori piloro nom +piloro piloro nom +pilota pilota nom +pilotaggi pilotaggio nom +pilotaggio pilotaggio nom +pilotando pilotare ver +pilotandola pilotare ver +pilotandolo pilotare ver +pilotano pilotare ver +pilotare pilotare ver +pilotarla pilotare ver +pilotarli pilotare ver +pilotarlo pilotare ver +pilotarne pilotare ver +pilotarono pilotare ver +pilotasse pilotare ver +pilotata pilotare ver +pilotate pilotare ver +pilotati pilotare ver +pilotato pilotare ver +pilotava pilotare ver +pilotavano pilotare ver +pilote pilota nom +piloterà pilotare ver +piloti pilota nom +pilotina pilotina nom +pilotine pilotina nom +pilotino pilotare ver +piloto pilotare ver +pilotò pilotare ver +pilucca piluccare ver +piluccando piluccare ver +piluccare piluccare ver +pilucchi piluccare ver +pimenta pimentare ver +pimento pimento nom +pimpante pimpante adj +pimpanti pimpante adj +pimpinella pimpinella nom +pimpinelle pimpinella nom +pina pina nom +pinacoteca pinacoteca nom +pinacoteche pinacoteca nom +pinastri pinastro nom +pinastro pinastro nom +pince pince nom +pindarica pindarico adj +pindariche pindarico adj +pindarici pindarico adj +pindarico pindarico adj +pine pina nom +pineale pineale adj +pineali pineale adj +pinella pinella nom +pinelle pinella nom +pineta pineta nom +pinete pineta nom +pinga pingere ver +pinge pingere ver +pingendo pingere ver +pinger pingere ver +pingere pingere ver +pingeva pingere ver +pingevano pingere ver +pingi pingere ver +pingo pingere ver +pingue pingue adj +pinguedine pinguedine nom +pingui pingue adj +pinguini pinguino nom +pinguino pinguino nom +pini pino nom +pinna pinna nom +pinnacoli pinnacolo nom +pinnacolo pinnacolo nom +pinne pinna nom +pinnula pinnula nom +pinnule pinnula nom +pino piare ver +pinocchio pinocchio nom +pinoli pinolo nom +pinolo pinolo nom +pinot pinot nom +pinse pingere ver +pinsero pingere ver +pinta pingere ver +pinte pinta nom +pinti pingere ver +pinto pingere ver +pinza pinza nom +pinzando pinzare ver +pinzano pinzare ver +pinzarsi pinzare ver +pinzata pinzare ver +pinzati pinzare ver +pinzato pinzare ver +pinzatrice pinzatrice nom +pinzatrici pinzatrice nom +pinzatura pinzatura nom +pinze pinza nom +pinzetta pinzetta nom +pinzette pinzetta nom +pinzi pinzare ver +pinzillacchere pinzillacchera nom +pinzimonio pinzimonio nom +pinzino pinzare ver +pinzo pinzare ver +pinzochera pinzochero nom +pinzochere pinzochero nom +pio pio adj +piogene piogeno adj +piogeni piogeno adj +piogeno piogeno adj +piogge pioggia nom +pioggerella pioggerella nom +pioggia pioggia nom +pioli piolo nom +piolo piolo nom +piomba piombare ver +piombando piombare ver +piombandole piombare ver +piombano piombare ver +piombante piombare ver +piombanti piombare ver +piombare piombare ver +piombargli piombare ver +piombarle piombare ver +piombarono piombare ver +piombasse piombare ver +piombata piombare ver +piombate piombare ver +piombati piombare ver +piombato piombare ver +piombatura piombatura nom +piombature piombatura nom +piombava piombare ver +piombavano piombare ver +piomberebbe piombare ver +piomberebbero piombare ver +piomberà piombare ver +piombi piombo nom +piombifera piombifero adj +piombini piombino nom +piombino piombino nom +piombo piombo nom +piomboso piomboso adj +piombò piombare ver +pione pione nom +pioni pione nom +pioniera pioniere nom +pioniere pioniere nom +pionieri pioniere nom +pionierismo pionierismo nom +pionieristica pionieristico adj +pionieristiche pionieristico adj +pionieristici pionieristico adj +pionieristico pionieristico adj +pioppeti pioppeto nom +pioppeto pioppeto nom +pioppi pioppo nom +pioppicoltura pioppicoltura nom +pioppo pioppo nom +piorrea piorrea nom +piota piota nom +piotata piotare ver +piotati piotare ver +piotato piotare ver +pioto piotare ver +piova piovere ver +piovana piovano adj +piovane piovano adj +piovani piovano adj +piovano piovano adj +piovaschi piovasco nom +piovasco piovasco nom +piove piovere ver +piovendo piovere ver +pioventi piovere ver +piover piovere ver +pioveranno piovere ver +piovere piovere ver +pioverebbero piovere ver +piovergli piovere ver +pioverà piovere ver +piovesse piovere ver +pioveva piovere ver +piovevano piovere ver +pioviggina piovigginare ver +piovigginando piovigginare ver +piovigginare piovigginare ver +piovigginava piovigginare ver +pioviggine pioviggine nom +piovigginosa piovigginoso adj +piovischio piovischio nom +piovono piovere ver +piovosa piovoso adj +piovose piovoso adj +piovosi piovoso adj +piovosità piovosità nom +piovoso piovoso adj +piovra piovra nom +piovre piovra nom +piovuta piovere ver +piovute piovere ver +piovuti piovere ver +piovuto piovere ver +piovve piovere ver +piovvero piovere ver +piovvi piovere ver +pipa pipa nom +pipai pipare ver +pipale pipare ver +pipar pipare ver +pipare pipare ver +pipata pipata nom +pipe pipa nom +piperali piperale nom +piperita piperita nom +pipetta pipetta nom +pipette pipetta nom +pipi pipare|pipiare ver +pipia pipiare ver +pipino pipare|pipiare ver +pipio pipiare ver +pipistrelli pipistrello nom +pipistrello pipistrello nom +pipita pipita nom +pipo pipare ver +pippiolini pippiolino nom +pipì pipì nom +piqué piqué nom +pira pira nom +piramidale piramidale adj +piramidali piramidale adj +piramide piramide nom +piramidi piramide nom +piramidone piramidone nom +piranha piranha nom +pirata pirata adj +pirateria pirateria nom +piraterie pirateria nom +piratesca piratesco adj +piratesche piratesco adj +pirateschi piratesco adj +piratesco piratesco adj +pirati pirata nom +pire pira nom +pireliometro pireliometro nom +pirenaica pirenaico adj +pirenaiche pirenaico adj +pirenaici pirenaico adj +pirenaico pirenaico adj +piressia piressia nom +piretro piretro nom +pirex pirex nom +pirica pirico adj +piriche pirico adj +pirici pirico adj +pirico pirico adj +piriforme piriforme adj +piriformi piriforme adj +pirite pirite nom +piriti pirite nom +piroclastica piroclastico adj +piroclastiche piroclastico adj +piroclastici piroclastico adj +piroclastico piroclastico adj +piroetta piroetta nom +piroettando piroettare ver +piroettare piroettare ver +piroette piroetta nom +pirofila pirofila nom +pirofile pirofila nom +pirofobia pirofobia nom +piroforica piroforico adj +piroforiche piroforico adj +piroforico piroforico adj +piroforo piroforo nom +piroga piroga nom +pirogena pirogeno adj +pirogene pirogeno adj +pirogeni pirogeno nom +pirogeno pirogeno adj +piroghe piroga nom +pirografia pirografia nom +pirolisi pirolisi nom +pirolusite pirolusite nom +piromane piromane nom +piromani piromane nom +piromania piromania nom +piromanzia piromanzia nom +pirometri pirometro nom +pirometro pirometro nom +piropo piropo nom +piroscafi piroscafo nom +piroscafo piroscafo nom +piroscissione piroscissione nom +pirosfera pirosfera nom +pirosseni pirosseno nom +pirosseno pirosseno nom +pirotecnica pirotecnico adj +pirotecniche pirotecnico adj +pirotecnici pirotecnico adj +pirotecnico pirotecnico adj +pirrotite pirrotite nom +pisana pisano adj +pisane pisano adj +pisani pisano adj +pisano pisano adj +piscatori piscatorio adj +piscatoria piscatorio adj +piscatorie piscatorio adj +piscatorio piscatorio adj +pisci piscio nom +piscia piscia nom +pisciando pisciare ver +pisciano pisciare ver +pisciare pisciare ver +pisciarono pisciare ver +pisciata pisciata nom +pisciato pisciare ver +pisciatoio pisciatoio nom +piscicoltura piscicoltura nom +pisciforme pisciforme adj +pisciformi pisciforme adj +piscina piscina nom +piscine piscina nom +piscino pisciare ver +piscio piscio nom +piscione piscione nom +pisciò pisciare ver +piselli pisello nom +pisola pisolare ver +pisolini pisolino nom +pisolino pisolino nom +pisolo pisolo nom +pispola pispola nom +pispole pispola nom +pisside pisside nom +pissidi pisside nom +pista pista nom +pistacchi pistacchio nom +pistacchio pistacchio adj +piste pista nom +pistilli pistillo nom +pistillo pistillo nom +pistola pistola nom +pistole pistola nom +pistoleri pistolero nom +pistolero pistolero nom +pistolettata pistolettata nom +pistolettate pistolettata nom +pistoletti pistoletto nom +pistoletto pistoletto nom +pistolotti pistolotto nom +pistolotto pistolotto nom +pistone pistone nom +pistoni pistone nom +pitagorica pitagorico adj +pitagoriche pitagorico adj +pitagorici pitagorico nom +pitagorico pitagorico adj +pitagorismo pitagorismo nom +pitale pitale nom +pitali pitale nom +pitcher pitcher nom +pitecantropi pitecantropo nom +pitecantropo pitecantropo nom +pitiriasi pitiriasi nom +pitocca pitocco nom +pitocchi pitocco nom +pitocco pitocco adj +pitone pitone nom +pitonessa pitonessa nom +pitoni pitone nom +pittima pittima nom +pittime pittima nom +pittografia pittografia nom +pittografie pittografia nom +pittogramma pittogramma nom +pittogrammi pittogramma nom +pittore pittore nom +pittoresca pittoresco adj +pittoresche pittoresco adj +pittoreschi pittoresco adj +pittoresco pittoresco adj +pittori pittore nom +pittorica pittorico adj +pittoriche pittorico adj +pittorici pittorico adj +pittorico pittorico adj +pittrice pittore nom +pittrici pittore nom +pittura pittura nom +pitturando pitturare ver +pitturandola pitturare ver +pitturano pitturare ver +pitturare pitturare ver +pitturarsi pitturare ver +pitturata pitturare ver +pitturate pitturare ver +pitturati pitturare ver +pitturato pitturare ver +pitturava pitturare ver +pitturavano pitturare ver +pitture pittura nom +pitturi pitturare ver +pitturò pitturare ver +pituitari pituitario adj +pituitaria pituitario adj +pituitarie pituitario adj +pituitario pituitario adj +piu piu sw +piuccheperfetti piuccheperfetto nom +piuccheperfetto piuccheperfetto nom +piucchepperfetto piucchepperfetto nom +piuma piuma adj +piumaggi piumaggio nom +piumaggio piumaggio nom +piumata piumato adj +piumate piumato adj +piumati piumato adj +piumato piumato adj +piume piuma nom +piumini piumino nom +piumino piumino nom +piumone piumone nom +piumoni piumone nom +piumosa piumoso adj +piumose piumoso adj +piumosi piumoso adj +piumoso piumoso adj +piuttosto piuttosto adv_sup +piva piva nom +pive piva nom +pivella pivello nom +pivelli pivello nom +pivellini pivellino nom +pivellino pivellino nom +pivello pivello nom +piviale piviale nom +piviali piviale nom +piviere piviere nom +pivieressa pivieressa nom +pivieri piviere nom +pivot pivot nom +pizi pizio adj +pizia pizio adj +pizie pizio adj +pizio pizio adj +pizza pizza nom +pizzaiola pizzaiolo nom +pizzaioli pizzaiolo nom +pizzaiolo pizzaiolo nom +pizzarda pizzarda nom +pizzardone pizzardone nom +pizzardoni pizzardone nom +pizze pizza nom +pizzeria pizzeria nom +pizzerie pizzeria nom +pizzetta pizzetta nom +pizzette pizzetta nom +pizzi pizzo nom +pizzica pizzicare ver +pizzicagnoli pizzicagnolo nom +pizzicagnolo pizzicagnolo nom +pizzicando pizzicare ver +pizzicandola pizzicare ver +pizzicandole pizzicare ver +pizzicandolo pizzicare ver +pizzicandone pizzicare ver +pizzicano pizzicare ver +pizzicante pizzicare ver +pizzicare pizzicare ver +pizzicargli pizzicare ver +pizzicarla pizzicare ver +pizzicata pizzicare ver +pizzicate pizzicato adj +pizzicati pizzicato adj +pizzicato pizzicare ver +pizzicava pizzicare ver +pizzicavano pizzicare ver +pizzicheria pizzicheria nom +pizzichi pizzico nom +pizzichino pizzicare ver +pizzico pizzico nom +pizzicore pizzicore nom +pizzicotta pizzicottare ver +pizzicotti pizzicotto nom +pizzicotto pizzicotto nom +pizzo pizzo nom +pizzutello pizzutello nom +piè piè nom +piò piare ver +più più adv_sup +placa placare ver +placabile placabile adj +placando placare ver +placandosi placare ver +placano placare ver +placar placare ver +placare placare ver +placarla placare ver +placarle placare ver +placarli placare ver +placarlo placare ver +placarne placare ver +placarono placare ver +placarsi placare ver +placasse placare ver +placassero placare ver +placata placare ver +placate placare ver +placatesi placare ver +placati placare ver +placato placare ver +placava placare ver +placavano placare ver +placca placca nom +placcaggi placcaggio nom +placcaggio placcaggio nom +placcando placcare ver +placcandolo placcare ver +placcare placcare ver +placcarlo placcare ver +placcata placcare ver +placcate placcare ver +placcati placcare ver +placcato placcare ver +placcatura placcatura nom +placcature placcatura nom +placche placca nom +placchetta placchetta nom +placchette placchetta nom +placchi placcare ver +placco placcare ver +placcò placcare ver +placebo placebo nom +placenta placenta nom +placentale placentare ver +placentali placentare ver +placentare placentare ver +placentati placentati nom +placentato placentare ver +placente placenta nom +placenti placentare ver +placentino placentare ver +placento placentare ver +placet placet nom +placheranno placare ver +placherà placare ver +plachi placare ver +plachiamo placare ver +plachino placare ver +placiti placito nom +placito placito nom +placo placare ver +placò placare ver +plafond plafond nom +plafone plafone nom +plafoni plafone nom +plafoniera plafoniera nom +plafoniere plafoniera nom +plaga plaga nom +plaghe plaga nom +plagi plagio nom +plagia plagiare ver +plagiando plagiare ver +plagiano plagiare ver +plagiare plagiare ver +plagiari plagiario nom +plagiaria plagiario adj +plagiario plagiario nom +plagiarla plagiare ver +plagiarli plagiare ver +plagiarlo plagiare ver +plagiata plagiare ver +plagiate plagiare ver +plagiati plagiare ver +plagiato plagiare ver +plagiava plagiare ver +plagiavano plagiare ver +plagino plagiare ver +plagio plagio nom +plagioclasi plagioclasio nom +plagioclasio plagioclasio nom +plagiò plagiare ver +plaid plaid nom +plana planare ver +planai planare ver +planando planare ver +planano planare ver +planante planare ver +plananti planare ver +planar planare ver +planare planare adj +planari planare adj +planaria planaria nom +planarie planaria nom +planarità planarità nom +planarono planare ver +planata planata nom +planate planata nom +planati planare ver +planato planare ver +planava planare ver +planavano planare ver +plance plancia nom +plancia plancia nom +plancton plancton nom +planctonica planctonico adj +planctoniche planctonico adj +planctonici planctonico adj +planctonico planctonico adj +planetari planetario adj +planetaria planetario adj +planetarie planetario adj +planetario planetario adj +plani planare ver +planimetri planimetro nom +planimetria planimetria nom +planimetrica planimetrico adj +planimetriche planimetrico adj +planimetrici planimetrico adj +planimetrico planimetrico adj +planimetrie planimetria nom +planimetro planimetro nom +planisferi planisfero nom +planisfero planisfero nom +plankton plankton nom +plano planare ver +planta plantare ver +plantano plantare ver +plantar plantare ver +plantare plantare ver +plantata plantare ver +planti plantare ver +plantigrada plantigrado nom +plantigrade plantigrado nom +plantigradi plantigrado nom +plantigrado plantigrado nom +planto plantare ver +planò planare ver +plasma plasma nom +plasmabile plasmabile adj +plasmabili plasmabile adj +plasmacellula plasmacellula nom +plasmacellule plasmacellula nom +plasmaferesi plasmaferesi nom +plasmando plasmare ver +plasmandola plasmare ver +plasmandoli plasmare ver +plasmandolo plasmare ver +plasmandone plasmare ver +plasmano plasmare ver +plasmante plasmare ver +plasmare plasmare ver +plasmarla plasmare ver +plasmarlo plasmare ver +plasmarne plasmare ver +plasmarono plasmare ver +plasmarsi plasmare ver +plasmasse plasmare ver +plasmata plasmare ver +plasmate plasmare ver +plasmati plasmare ver +plasmatica plasmatico adj +plasmato plasmare ver +plasmava plasmare ver +plasmavano plasmare ver +plasmeranno plasmare ver +plasmerà plasmare ver +plasmi plasma nom +plasmino plasmare ver +plasmo plasmare ver +plasmodi plasmodio nom +plasmodiale plasmodiale adj +plasmodiali plasmodiale adj +plasmodio plasmodio nom +plasmò plasmare ver +plastica plastica nom +plasticati plasticare ver +plasticato plasticare ver +plasticatore plasticatore nom +plasticatori plasticatore nom +plastiche plastico adj +plastici plastico adj +plasticità plasticità nom +plastico plastico adj +plastidi plastidio nom +plastidio plastidio nom +plastificante plastificante nom +plastificanti plastificante nom +plastificare plastificare ver +plastificata plastificare ver +plastificate plastificare ver +plastificati plastificare ver +plastificato plastificare ver +plastificazione plastificazione nom +plastilina plastilina nom +plastiline plastilina nom +plastron plastron nom +platani platano nom +platano platano nom +platea platea nom +plateale plateale adj +plateali plateale adj +plateatici plateatico nom +plateatico plateatico nom +plateau plateau nom +platee platea nom +platelminta platelminta nom +platelminti platelminta nom +platina platina nom +platinata platinare ver +platinate platinare ver +platinati platinare ver +platinato platinare ver +platine platina nom +platini platinare ver +platino platino nom +platonica platonico adj +platonicamente platonicamente adv +platoniche platonico adj +platonici platonico adj +platonico platonico adj +platonismi platonismo nom +platonismo platonismo nom +plaude plaudere|plaudire ver +plaudendo plaudere|plaudire ver +plaudente plaudente adj +plaudenti plaudente adj +plaudere plaudere ver +plauderei plaudere ver +plaudi plaudere|plaudire ver +plaudiamo plaudere|plaudire ver +plaudire plaudire ver +plaudirono plaudire ver +plaudita plaudire ver +plaudite plaudire ver +plaudito plaudire ver +plaudiva plaudire ver +plaudo plaudere|plaudire ver +plaudono plaudere|plaudire ver +plaudì plaudire ver +plausi plauso nom +plausibile plausibile adj +plausibili plausibile adj +plausibilità plausibilità nom +plausibilmente plausibilmente adv +plauso plauso nom +plaustri plaustro nom +plaustro plaustro nom +playback playback nom +playboy playboy nom +playmaker playmaker nom +plebaglia plebaglia nom +plebe plebe nom +plebea plebeo adj +plebee plebeo adj +plebei plebeo adj +plebeo plebeo adj +plebi plebe nom +plebiscitari plebiscitario adj +plebiscitaria plebiscitario adj +plebiscitarie plebiscitario adj +plebiscitario plebiscitario adj +plebisciti plebiscito nom +plebiscito plebiscito nom +pleiade pleiade nom +pleiadi pleiade nom +pleistocene pleistocene nom +plenari plenario adj +plenaria plenario adj +plenarie plenario adj +plenario plenario adj +pleniluni plenilunio nom +plenilunio plenilunio nom +plenipotenziari plenipotenziario nom +plenipotenziaria plenipotenziario adj +plenipotenziarie plenipotenziario adj +plenipotenziario plenipotenziario adj +plenitudine plenitudine nom +plenum plenum nom +pleocroismo pleocroismo nom +pleonasmi pleonasmo nom +pleonasmo pleonasmo nom +pleonastica pleonastico adj +pleonastiche pleonastico adj +pleonastici pleonastico adj +pleonastico pleonastico adj +plesiosauri plesiosauro nom +plesiosauro plesiosauro nom +plessi plesso nom +plessimetro plessimetro nom +plesso plesso nom +pletora pletora nom +pletore pletora nom +pletorica pletorico adj +pletoriche pletorico adj +pletorico pletorico adj +plettri plettro nom +plettro plettro nom +pleura pleura nom +pleure pleura nom +pleurica pleurico adj +pleuriche pleurico adj +pleurici pleurico adj +pleurico pleurico adj +pleurite pleurite nom +pleuriti pleurite nom +plexiglas plexiglas nom +plica plica nom +pliche plica nom +plichi plico nom +plico plico nom +plinti plinto nom +plinto plinto nom +pliocene pliocene nom +plioceni pliocene nom +plissettata plissettato adj +plissettate plissettato adj +plissettato plissettato adj +plissé plissé adj +plora plorare ver +plorando plorare ver +ploro plorare ver +plotone plotone nom +plotoni plotone nom +plotter plotter nom +plumbea plumbeo adj +plumbee plumbeo adj +plumbei plumbeo adj +plumbeo plumbeo adj +plurale plurale adj +plurali plurale adj +pluralismi pluralismo nom +pluralismo pluralismo nom +pluralista pluralista nom +pluraliste pluralista nom +pluralisti pluralista nom +pluralistica pluralistico adj +pluralistiche pluralistico adj +pluralistici pluralistico adj +pluralistico pluralistico adj +pluralità pluralità nom +pluralizza pluralizzare ver +pluriaggravata pluriaggravato adj +pluriaggravato pluriaggravato adj +pluriannuale pluriannuale adj +pluriannuali pluriannuale adj +pluricellulare pluricellulare adj +pluricellulari pluricellulare adj +pluriclasse pluriclasse nom +pluridecorata pluridecorato adj +pluridecorate pluridecorato adj +pluridecorati pluridecorato adj +pluridecorato pluridecorato adj +pluridimensionale pluridimensionale adj +pluridimensionali pluridimensionale adj +pluridisciplinare pluridisciplinare adj +pluridisciplinari pluridisciplinare adj +pluridisciplinarità pluridisciplinarità nom +pluriennale pluriennale adj +pluriennali pluriennale adj +plurigemellare plurigemellare adj +plurigemellari plurigemellare adj +plurilaterale plurilaterale adj +plurilaterali plurilaterale adj +plurilingue plurilingue adj +plurilingui plurilingue adj +plurilinguismo plurilinguismo nom +plurima plurimo adj +plurime plurimo adj +plurimi plurimo adj +plurimo plurimo adj +plurimodale plurimodale adj +plurimotore plurimotore nom +plurimotori plurimotore nom +plurinazionale plurinazionale adj +plurinazionali plurinazionale adj +plurinominale plurinominale adj +plurinominali plurinominale adj +pluripartitica pluripartitico adj +pluripartitiche pluripartitico adj +pluripartitico pluripartitico adj +pluripartitismo pluripartitismo nom +plurisecolare plurisecolare adj +plurisecolari plurisecolare adj +plurisettoriale plurisettoriale adj +pluristadio pluristadio adj +pluriuso pluriuso adj +plusvalenza plusvalenza nom +plusvalenze plusvalenza nom +plusvalore plusvalore nom +plusvalori plusvalore nom +plutei pluteo nom +pluteo pluteo nom +plutocrate plutocrate nom +plutocrati plutocrate nom +plutocratica plutocratico adj +plutocratiche plutocratico adj +plutocratici plutocratico adj +plutocratico plutocratico adj +plutocrazia plutocrazia nom +plutocrazie plutocrazia nom +plutone plutone nom +plutoni plutone|plutonio nom +plutonio plutonio nom +pluvi pluvio adj +pluvia pluvio adj +pluviale pluviale adj +pluviali pluviale adj +pluvie pluvio adj +pluvio pluvio adj +pluviometri pluviometro nom +pluviometria pluviometria nom +pluviometrica pluviometrico adj +pluviometriche pluviometrico adj +pluviometrici pluviometrico adj +pluviometrico pluviometrico adj +pluviometro pluviometro nom +pm pm abr +pneumatica pneumatico adj +pneumatiche pneumatico adj +pneumatici pneumatico adj +pneumatico pneumatico nom +pneumococchi pneumococco nom +pneumococco pneumococco nom +pneumotorace pneumotorace nom +pneumotoraci pneumotorace nom +po po sw +poca poco adj_sup +pochade pochade nom +poche poco adj_sup +pochette pochette nom +pochezza pochezza nom +pochi poco adj_sup +pochissime pochissimo adj +pochissimi pochissimo adj +poco poco adv_sup +podagra podagra nom +podagrica podagrico adj +podagroso podagroso adj +podalica podalico adj +podaliche podalico adj +podalici podalico adj +podalico podalico adj +podaliri podalirio nom +podalirio podalirio nom +poderale poderale adj +poderali poderale adj +podere podere nom +poderi podere nom +poderosa poderoso adj +poderose poderoso adj +poderosi poderoso adj +poderoso poderoso adj +podestà podestà nom +podi podio nom +podice podice nom +podio podio nom +podismo podismo nom +podista podista nom +podisti podista nom +podistica podistico adj +podistiche podistico adj +podistici podistico adj +podistico podistico adj +podofillina podofillina nom +podologi podologo nom +podologia podologia nom +podologie podologia nom +podologo podologo nom +podometri podometro nom +podometro podometro nom +poema poema nom +poemetti poemetto nom +poemetto poemetto nom +poemi poema nom +poesia poesia nom +poesie poesia nom +poeta poeta nom +poetai poetare ver +poetando poetare ver +poetante poetare ver +poetar poetare ver +poetare poetare ver +poetasse poetare ver +poetastri poetastro nom +poetastro poetastro nom +poetato poetare ver +poetava poetare ver +poete poeta nom +poetessa poetessa nom +poetesse poetessa nom +poeti poeta nom +poetica poetico adj +poetiche poetico adj +poetici poetico adj +poeticità poeticità nom +poetico poetico adj +poetino poetare ver +poeto poetare ver +poetò poetare ver +pogge poggia nom +poggeranno poggiare ver +poggerebbe poggiare ver +poggerà poggiare ver +poggi poggio nom +poggia poggiare ver +poggiale poggiare ver +poggiali poggiare ver +poggiamo poggiare ver +poggiando poggiare ver +poggiandogli poggiare ver +poggiandola poggiare ver +poggiandole poggiare ver +poggiandoli poggiare ver +poggiandolo poggiare ver +poggiandosi poggiare ver +poggiandovi poggiare ver +poggiano poggiare ver +poggiante poggiare ver +poggianti poggiare ver +poggiarci poggiare ver +poggiare poggiare ver +poggiarla poggiare ver +poggiarli poggiare ver +poggiarlo poggiare ver +poggiarono poggiare ver +poggiarsi poggiare ver +poggiarvi poggiare ver +poggiasse poggiare ver +poggiassero poggiare ver +poggiata poggiare ver +poggiate poggiare ver +poggiatesta poggiatesta nom +poggiati poggiare ver +poggiato poggiare ver +poggiava poggiare ver +poggiavano poggiare ver +poggino poggiare ver +poggio poggio nom +poggioli poggiolo nom +poggiolo poggiolo nom +poggiò poggiare ver +pogrom pogrom nom +poh poh int +poi poi adv_sup +poiana poiana nom +poiane poiana nom +poiche poiche sw +poichè poichè con +poiché poiché con +pointer pointer nom +pois pois nom +poker poker nom +pokerista pokerista nom +polacca polacco adj +polacche polacco adj +polacchi polacco adj +polacco polacco adj +polare polare adj +polari polare adj +polarimetri polarimetro nom +polarimetria polarimetria nom +polarimetrie polarimetria nom +polarimetro polarimetro nom +polarità polarità nom +polarizza polarizzare ver +polarizzando polarizzare ver +polarizzandosi polarizzare ver +polarizzano polarizzare ver +polarizzante polarizzare ver +polarizzanti polarizzare ver +polarizzare polarizzare ver +polarizzarono polarizzare ver +polarizzarsi polarizzare ver +polarizzata polarizzare ver +polarizzate polarizzato adj +polarizzati polarizzato adj +polarizzato polarizzare ver +polarizzatore polarizzatore adj +polarizzatori polarizzatore adj +polarizzatrici polarizzatore adj +polarizzava polarizzare ver +polarizzazione polarizzazione nom +polarizzazioni polarizzazione nom +polarizzò polarizzare ver +polaroid polaroid nom +polder polder nom +pole polca nom +polemica polemica nom +polemicamente polemicamente adv +polemiche polemica nom +polemici polemico adj +polemicità polemicità nom +polemico polemico adj +polemista polemista nom +polemisti polemista nom +polemizza polemizzare ver +polemizzando polemizzare ver +polemizzano polemizzare ver +polemizzarci polemizzare ver +polemizzare polemizzare ver +polemizzarono polemizzare ver +polemizzasse polemizzare ver +polemizzata polemizzare ver +polemizzate polemizzare ver +polemizzato polemizzare ver +polemizzava polemizzare ver +polemizzeranno polemizzare ver +polemizzerà polemizzare ver +polemizzerò polemizzare ver +polemizzi polemizzare ver +polemizziamo polemizzare ver +polemizzo polemizzare ver +polemizzò polemizzare ver +polena polena nom +polene polena nom +polenta polenta nom +polente polenta nom +polentone polentone nom +polentoni polentone nom +poli polo nom +polia polca nom +poliachenio poliachenio nom +poliambulatori poliambulatorio nom +poliambulatorio poliambulatorio nom +poliammide poliammide nom +poliammidi poliammide nom +poliandria poliandria nom +poliarchia poliarchia nom +poliarchie poliarchia nom +poliartrite poliartrite nom +poliartriti poliartrite nom +policarbossilati policarbossilato nom +policeman policeman nom +policemen policemen nom +policentrica policentrico adj +policentriche policentrico adj +policentrici policentrico adj +policentrico policentrico adj +policentrismo policentrismo nom +policladi policlade nom +policlinici policlinico nom +policlinico policlinico nom +policlorobifenili policlorobifenile nom +policlorotrifenili policlorotrifenile nom +policlorurato policlorurato adj +policroma policromo adj +policromata policromare ver +policromate policromare ver +policromati policromare ver +policromatica policromatico adj +policromatiche policromatico adj +policromatici policromatico adj +policromatico policromatico adj +policromato policromare ver +policrome policromo adj +policromi policromo adj +policromia policromia nom +policromie policromia nom +policromo policromo adj +polidattile polidattilo adj +polidattili polidattilo adj +polidattilia polidattilia nom +polidattilie polidattilia nom +polidattilo polidattilo adj +poliedri poliedro nom +poliedrica poliedrico adj +poliedriche poliedrico adj +poliedrici poliedrico adj +poliedrico poliedrico adj +poliedro poliedro nom +poliennale poliennale adj +poliennali poliennale adj +poliestere poliestere nom +poliesteri poliestere adj +polietilene polietilene nom +polietileni polietilene nom +polifagia polifagia nom +polifase polifase adj +polifasi polifase adj +polifonia polifonia nom +polifonica polifonico adj +polifoniche polifonico adj +polifonici polifonico adj +polifonico polifonico adj +polifonie polifonia nom +poligala poligala nom +poligale poligala nom +poligama poligamo adj +poligame poligamo adj +poligami poligamo adj +poligamia poligamia nom +poligamica poligamico adj +poligamiche poligamico adj +poligamici poligamico adj +poligamico poligamico adj +poligamie poligamia nom +poligamo poligamo adj +poligenesi poligenesi nom +poligenetica poligenetico adj +poligenetici poligenetico adj +poligenismo poligenismo nom +poliginia poliginia nom +poliglotta poliglotta|poliglotto adj +poliglotte poliglotta|poliglotto adj +poliglotti poliglotta|poliglotto adj +poligonacee poligonacee nom +poligonale poligonale adj +poligonali poligonale adj +poligoni poligono nom +poligono poligono nom +poligrafa poligrafo nom +poligrafi poligrafo adj +poligrafia poligrafia nom +poligrafica poligrafico adj +poligrafiche poligrafico adj +poligrafici poligrafico adj +poligrafico poligrafico adj +poligrafo poligrafo nom +polii polire ver +polimaterica polimaterico adj +polimateriche polimaterico adj +polimaterici polimaterico adj +polimaterico polimaterico adj +polimera polimero adj +polimeri polimero nom +polimeria polimeria nom +polimerica polimerico adj +polimeriche polimerico adj +polimerici polimerico adj +polimerico polimerico adj +polimerizza polimerizzare ver +polimerizzando polimerizzare ver +polimerizzano polimerizzare ver +polimerizzante polimerizzare ver +polimerizzare polimerizzare ver +polimerizzata polimerizzare ver +polimerizzate polimerizzare ver +polimerizzati polimerizzare ver +polimerizzato polimerizzare ver +polimerizzazione polimerizzazione nom +polimerizzazioni polimerizzazione nom +polimero polimero nom +polimetri polimetro nom +polimetro polimetro adj +polimorfa polimorfo adj +polimorfe polimorfo adj +polimorfi polimorfo adj +polimorfica polimorfico adj +polimorfiche polimorfico adj +polimorfici polimorfico adj +polimorfico polimorfico adj +polimorfismi polimorfismo nom +polimorfismo polimorfismo nom +polimorfo polimorfo adj +polineurite polineurite nom +polineuriti polineurite nom +polinevrite polinevrite nom +polinomi polinomio nom +polinomiale polinomiale adj +polinomiali polinomiale adj +polinomio polinomio nom +polio polio nom +poliomielite poliomielite nom +poliomielitica poliomielitico adj +poliomielitici poliomielitico adj +poliomielitico poliomielitico adj +polipeptide polipeptide nom +polipeptidi polipeptide nom +polipi polipo nom +polipnea polipnea nom +polipo polipo nom +polipoide polipoide adj +polipoidi polipoide adj +polipori poliporo nom +poliporo poliporo nom +poliposi poliposi nom +polipropilene polipropilene nom +poliptoto poliptoto nom +polir polire ver +polire polire ver +poliremi polireme nom +poliritmia poliritmia nom +poliritmie poliritmia nom +polis polis nom +polisaccaride polisaccaride nom +polisaccaridi polisaccaride nom +polisca polire ver +polisci polire ver +polisemia polisemia nom +polisemie polisemia nom +polisensa polisenso adj +polisenso polisenso nom +polisillabi polisillabo nom +polisindeto polisindeto nom +polisolfuri polisolfuro nom +polisolfuro polisolfuro nom +polisportiva polisportivo adj +polisportive polisportivo adj +polisportivi polisportivo adj +polisportivo polisportivo adj +polisse polire ver +polista polista nom +polistirolo polistirolo nom +polita polire ver +polite polire ver +politeama politeama nom +politecnici politecnico nom +politecnico politecnico nom +politeismi politeismo nom +politeismo politeismo nom +politeista politeista adj +politeiste politeista adj +politeisti politeista adj +politeistica politeistico adj +politeistiche politeistico adj +politeistici politeistico adj +politeistico politeistico adj +politematica politematico adj +politematiche politematico adj +politematici politematico adj +politematico politematico adj +politene politene nom +politi polire ver +politica politico adj +politicamente politicamente adv +politicante politicante nom +politicanti politicante nom +politiche politico adj +politici politico adj +politicità politicità nom +politicizza politicizzare ver +politicizzando politicizzare ver +politicizzano politicizzare ver +politicizzare politicizzare ver +politicizzarsi politicizzare ver +politicizzata politicizzare ver +politicizzate politicizzare ver +politicizzati politicizzare ver +politicizzato politicizzare ver +politicizzazione politicizzazione nom +politicizzò politicizzare ver +politico politico adj +polito polire ver +politologa politologo nom +politologi politologo nom +politologia politologia nom +politologie politologia nom +politologo politologo nom +politonale politonale adj +politonali politonale adj +politonalità politonalità nom +polittici polittico adj +polittico polittico adj +polittoto polittoto nom +politura politura nom +poliuretani poliuretano nom +poliuretano poliuretano nom +poliuria poliuria nom +polivalente polivalente adj +polivalenti polivalente adj +polivalenza polivalenza nom +polivinile polivinile nom +polivinili polivinile nom +poliviniliche polivinilico adj +polivinilici polivinilico adj +polivinilico polivinilico adj +polizia polizia nom +poliziana poliziano adj +poliziane poliziano adj +poliziani poliziano nom +poliziano poliziano adj +polizie polizia nom +poliziesca poliziesco adj +poliziesche poliziesco adj +polizieschi poliziesco adj +poliziesco poliziesco adj +poliziotta poliziotto nom +poliziotte poliziotto nom +poliziotti poliziotto nom +poliziotto poliziotto nom +polizza polizza nom +polizze polizza nom +polizzini polizzino nom +polizzino polizzino nom +polka polka nom +polla polla nom +pollaci pollare ver +pollai pollaio nom +pollaio pollaio nom +pollaioli pollaiolo nom +pollaiolo pollaiolo nom +pollame pollame nom +pollami pollame nom +pollando pollare ver +pollane pollare ver +pollano pollare ver +pollar pollare ver +pollastra pollastra|pollastro nom +pollastre pollastra|pollastro nom +pollastrella pollastrella nom +pollastri pollastro nom +pollastro pollastro nom +polle polla nom +polleria polleria nom +polli pollo nom +pollice pollice nom +pollici pollice nom +pollicoltori pollicoltore nom +pollicoltura pollicoltura nom +pollina pollino adj +polline polline nom +pollini pollino adj +pollinica pollinico adj +polliniche pollinico adj +pollinici pollinico adj +pollinico pollinico adj +pollino pollino adj +pollinosi pollinosi nom +pollivendola pollivendolo nom +pollivendoli pollivendolo nom +pollo pollo nom +polluzione polluzione nom +polluzioni polluzione nom +polmonare polmonare adj +polmonari polmonare adj +polmonaria polmonaria nom +polmonarie polmonaria nom +polmonate polmonato adj +polmonati polmonato adj +polmonato polmonato adj +polmone polmone nom +polmoni polmone nom +polmonite polmonite nom +polmoniti polmonite nom +polo polo nom +polonaise polonaise nom +poloni polonio nom +polonio polonio nom +polpa polpa nom +polpacci polpaccio nom +polpaccio polpaccio nom +polpe polpa nom +polpetta polpetta nom +polpette polpetta nom +polpettone polpettone nom +polpettoni polpettone nom +polpi polpo nom +polpo polpo nom +polposa polposo adj +polpose polposo adj +polposi polposo adj +polposo polposo adj +polputi polputo adj +polsi polso nom +polsini polsino nom +polsino polsino nom +polso polso nom +polta polta nom +poltacee poltaceo adj +poltaceo poltaceo adj +polte polta nom +poltiglia poltiglia nom +poltiglie poltiglia nom +poltrire poltrire ver +poltrona poltrona nom +poltroncina poltroncina nom +poltroncine poltroncina nom +poltrone poltrona|poltrone nom +poltroneria poltroneria nom +poltroni poltrone adj +poltronissima poltronissima nom +poltronissime poltronissima nom +polvere polvere nom +polveri polvere|polverio nom +polveriera polveriera nom +polveriere polveriera nom +polverificio polverificio nom +polverina polverina nom +polverio polverio nom +polverizza polverizzare ver +polverizzando polverizzare ver +polverizzandole polverizzare ver +polverizzandolo polverizzare ver +polverizzandosi polverizzare ver +polverizzano polverizzare ver +polverizzante polverizzare ver +polverizzanti polverizzare ver +polverizzare polverizzare ver +polverizzarli polverizzare ver +polverizzarlo polverizzare ver +polverizzarono polverizzare ver +polverizzarsi polverizzare ver +polverizzata polverizzare ver +polverizzate polverizzare ver +polverizzati polverizzare ver +polverizzato polverizzare ver +polverizzatore polverizzatore nom +polverizzatori polverizzatore adj +polverizzazione polverizzazione nom +polverizzeranno polverizzare ver +polverizzerà polverizzare ver +polverizzi polverizzare ver +polverizzò polverizzare ver +polverone polverone nom +polveroni polverone nom +polverosa polveroso adj +polverose polveroso adj +polverosi polveroso adj +polveroso polveroso adj +polverulenta polverulento adj +polverulente polverulento adj +polverulenti polverulento adj +polverulento polverulento adj +polì polire ver +pomaio pomaio nom +pomata pomata nom +pomate pomata nom +pomellata pomellato adj +pomellati pomellato adj +pomellato pomellato adj +pomellatura pomellatura nom +pomelli pomello nom +pomello pomello nom +pomeri pomerio nom +pomeridiana pomeridiano adj +pomeridiane pomeridiano adj +pomeridiani pomeridiano adj +pomeridiano pomeridiano adj +pomeriggi pomeriggio nom +pomeriggio pomeriggio nom +pomerio pomerio nom +pometo pometo nom +pomettata pomettato adj +pomettate pomettato adj +pomettati pomettato adj +pomettato pomettato adj +pomi pomo nom +pomice pomice nom +pomici pomice nom +pomiciando pomiciare ver +pomiciare pomiciare ver +pomiciata pomiciare ver +pomicino pomiciare ver +pomicio pomiciare ver +pomicione pomicione nom +pomicioni pomicione nom +pomidori pomidoro nom +pomidoro pomidoro nom +pomo pomo nom +pomodori pomodoro nom +pomodoro pomodoro nom +pomoli pomolo nom +pomolo pomolo nom +pomologia pomologia nom +pomologie pomologia nom +pompa pompa nom +pompaggi pompaggio nom +pompaggio pompaggio nom +pompalo pompare ver +pompando pompare ver +pompandolo pompare ver +pompandovi pompare ver +pompano pompare ver +pompante pompare ver +pompanti pompare ver +pompare pompare ver +pomparlo pompare ver +pompata pompare ver +pompate pompare ver +pompati pompare ver +pompato pompare ver +pompava pompare ver +pompavano pompare ver +pompe pompa nom +pompelmi pompelmo nom +pompelmo pompelmo nom +pompiere pompiere nom +pompieri pompiere nom +pompino pompare ver +pompo pompare ver +pompon pompon nom +pomposa pomposo adj +pompose pomposo adj +pomposi pomposo adj +pomposità pomposità nom +pomposo pomposo adj +pompò pompare ver +ponce ponce nom +poncho poncho nom +ponci ponce|poncio nom +poncio poncio nom +pondera ponderare ver +ponderabile ponderabile adj +ponderabili ponderabile adj +ponderale ponderale adj +ponderali ponderale adj +ponderando ponderare ver +ponderano ponderare ver +ponderante ponderare ver +ponderare ponderare ver +ponderarne ponderare ver +ponderarono ponderare ver +ponderata ponderare ver +ponderate ponderato adj +ponderatezza ponderatezza nom +ponderati ponderare ver +ponderato ponderare ver +ponderava ponderare ver +ponderazione ponderazione nom +ponderazioni ponderazione nom +pondero ponderare ver +ponderosa ponderoso adj +ponderose ponderoso adj +ponderosi ponderoso adj +ponderoso ponderoso adj +ponderò ponderare ver +pone porre ver +ponemmo porre ver +ponendo porre ver +ponendoci porre ver +ponendogli porre ver +ponendola porre ver +ponendole porre ver +ponendoli porre ver +ponendolo porre ver +ponendomi porre ver +ponendone porre ver +ponendosi porre ver +ponendoti porre ver +ponendovi porre ver +ponente ponente nom +ponenti porre ver +ponentini ponentino nom +ponentino ponentino nom +ponesse porre ver +ponessero porre ver +ponessi porre ver +ponessimo porre ver +poneste porre ver +ponesti porre ver +ponete porre ver +poneteli porre ver +ponetevi porre ver +poneva porre ver +ponevano porre ver +ponevi porre ver +ponevo porre ver +ponga porre ver +pongano porre ver +pongo porre ver +pongono porre ver +poni porre ver +poniamo porre ver +poniamoci porre ver +poniate porre ver +ponies ponies nom +ponila porre ver +ponile porre ver +ponili porre ver +ponimi porre ver +poniti porre ver +pontata pontato adj +pontate pontato adj +ponte ponte nom +pontefice pontefice nom +pontefici pontefice nom +ponteggi ponteggio nom +ponteggio ponteggio nom +ponti ponte|ponto nom +ponticelli ponticello nom +ponticello ponticello nom +pontiere pontiere nom +pontieri pontiere nom +pontifica pontificare ver +pontificale pontificale adj +pontificali pontificale adj +pontificando pontificare ver +pontificano pontificare ver +pontificare pontificare ver +pontificate pontificare ver +pontificati pontificato nom +pontificato pontificato nom +pontificava pontificare ver +pontifici pontificio adj +pontificia pontificio adj +pontificie pontificio adj +pontificio pontificio adj +pontifico pontificare ver +pontificò pontificare ver +pontile pontile nom +pontili pontile nom +ponto ponto nom +pontone pontone nom +pontoni pontone nom +pontuale pontuale adj +pontuali pontuale adj +pony pony nom +ponza ponzare ver +ponzano ponzare ver +ponzate ponzare ver +ponzi ponzare ver +ponzino ponzare ver +ponzo ponzare ver +ponzò ponzare ver +pool pool nom +pop pop adj +pope pope nom +popeline popeline nom +poplite poplite nom +poplitea popliteo adj +poplitee popliteo adj +poplitei popliteo adj +popliteo popliteo adj +popola popolare ver +popolamenti popolamento nom +popolamento popolamento nom +popolana popolano adj +popolando popolare ver +popolandola popolare ver +popolane popolano nom +popolani popolano nom +popolano popolano adj +popolanti popolare ver +popolar popolare ver +popolare popolare adj +popolaresca popolaresco adj +popolaresche popolaresco adj +popolareschi popolaresco adj +popolaresco popolaresco adj +popolari popolare adj +popolarità popolarità nom +popolarizza popolarizzare ver +popolarizzando popolarizzare ver +popolarizzandone popolarizzare ver +popolarizzare popolarizzare ver +popolarizzarsi popolarizzare ver +popolarizzata popolarizzare ver +popolarizzati popolarizzare ver +popolarizzato popolarizzare ver +popolarizzava popolarizzare ver +popolarizzò popolarizzare ver +popolarla popolare ver +popolarle popolare ver +popolarlo popolare ver +popolarono popolare ver +popolarsi popolare ver +popolasse popolare ver +popolassero popolare ver +popolata popolare ver +popolate popolare ver +popolati popolare ver +popolato popolare ver +popolava popolare ver +popolavano popolare ver +popolazione popolazione nom +popolazioni popolazione nom +popoleranno popolare ver +popolerebbe popolare ver +popolerà popolare ver +popoli popolo nom +popolino popolino nom +popolo popolo nom +popolosa popoloso adj +popolose popoloso adj +popolosi popoloso adj +popoloso popoloso adj +popolò popolare ver +popone popone nom +poponi popone nom +poppa poppa nom +poppano poppare ver +poppante poppante nom +poppanti poppante nom +poppare poppare ver +poppata poppata nom +poppate poppata nom +poppatoi poppatoio nom +poppatoio poppatoio nom +poppavano poppare ver +poppavia poppavia nom +poppe poppa nom +poppi poppare ver +poppiera poppiero adj +poppiere poppiero adj +poppieri poppiero adj +poppiero poppiero adj +poppino poppare ver +poppo poppare ver +poppò poppare ver +populismi populismo nom +populismo populismo nom +populista populista nom +populiste populista nom +populisti populista nom +populistica populistico adj +populistiche populistico adj +populistici populistico adj +populistico populistico adj +popò popò nom +por porre ver +porca porco adj +porcai porcaio nom +porcaio porcaio nom +porcata porcata nom +porcate porcata nom +porcela porre ver +porceli porre ver +porcella porcello nom +porcellana porcellana nom +porcellanati porcellanato adj +porcellanato porcellanato adj +porcellane porcellana nom +porcelle porcello nom +porcelli porcello nom +porcellina porcellino nom +porcelline porcellino nom +porcellini porcellino nom +porcellino porcellino nom +porcello porcello nom +porcellone porcellone nom +porcelloni porcellone nom +porcene porre ver +porche porco adj +porcheria porcheria nom +porcherie porcheria nom +porchetta porchetta nom +porchette porchetta nom +porci porco nom +porciglione porciglione nom +porciglioni porciglione nom +porcile porcile nom +porcili porcile nom +porcina porcino adj +porcine porcino adj +porcini porcino adj +porcino porcino adj +porco porco adj +porcospini porcospino nom +porcospino porcospino nom +porfidi porfido nom +porfido porfido nom +porga porgere ver +porgano porgere ver +porge porgere ver +porgendo porgere ver +porgendogli porgere ver +porgendole porgere ver +porgendomi porgere ver +porgendosi porgere ver +porgente porgere ver +porgeranno porgere ver +porgere porgere ver +porgergli porgere ver +porgerla porgere ver +porgerle porgere ver +porgerli porgere ver +porgerlo porgere ver +porgermi porgere ver +porgersi porgere ver +porgerti porgere ver +porgervi porgere ver +porgerà porgere ver +porgerò porgere ver +porgesse porgere ver +porgete porgere ver +porgetemi porgere ver +porgeva porgere ver +porgevano porgere ver +porgi porgere ver +porgiamo porgere ver +porgigli porgere ver +porgitore porgitore nom +porgli porre ver +porgo porgere ver +porgono porgere ver +pori poro nom +poriferi poriferi nom +porla porre ver +porle porre ver +porli porre ver +porlo porre ver +pormi porre ver +porne porre ver +porno porno adj +pornografa pornografo nom +pornografi pornografo nom +pornografia pornografia nom +pornografica pornografico adj +pornografiche pornografico adj +pornografici pornografico adj +pornografico pornografico adj +pornografie pornografia nom +pornografo pornografo nom +poro poro nom +porosa poroso adj +porose poroso adj +porosi poroso adj +porosità porosità nom +poroso poroso adj +porpora porpora nom +porporata porporato adj +porporati porporato adj +porporato porporato nom +porpore porpora nom +porporina porporino adj +porporine porporino adj +porporini porporino adj +porporino porporino adj +porrai porre ver +porranno porre ver +porre porre ver +porrebbe porre ver +porrebbero porre ver +porrei porre ver +porremmo porre ver +porremo porre ver +porrete porre ver +porri porro nom +porro porro nom +porrà porre ver +porrò porre ver +porse porgere ver +porsela porre ver +porseli porre ver +porselo porre ver +porsero porgere ver +porsi porre ver +porta porta nom +portaaghi portaaghi nom +portabagagli portabagagli nom +portabandiera portabandiera nom +portabile portabile adj +portabili portabile adj +portabilità portabilità nom +portaborracce portaborracce nom +portaborse portaborse nom +portabottiglie portabottiglie nom +portacarte portacarte nom +portaceli portare ver +portacenere portacenere nom +portachiavi portachiavi nom +portaci portare ver +portacipria portacipria nom +portacolori portacolori nom +portaelicotteri portaelicotteri nom +portaerei portaerei nom +portaferiti portaferiti nom +portafinestra portafinestra nom +portafiori portafiori nom +portafogli portafoglio nom +portafoglio portafoglio nom +portafortuna portafortuna nom +portafrutta portafrutta nom +portagioie portagioie nom +portagioielli portagioielli nom +portagli portare ver +portai portare ver +portaimpronta portaimpronta nom +portala portare ver +portalampada portalampada nom +portale portale nom +portalettere portalettere nom +portali portale nom +portalo portare ver +portamenti portamento nom +portamento portamento nom +portami portare ver +portamina portamina nom +portammo portare ver +portamonete portamonete nom +portamunizioni portamunizioni nom +portando portare ver +portandoci portare ver +portandogli portare ver +portandola portare ver +portandole portare ver +portandoli portare ver +portandolo portare ver +portandomi portare ver +portandone portare ver +portandosela portare ver +portandoseli portare ver +portandoselo portare ver +portandosi portare ver +portandoti portare ver +portandovi portare ver +portane portare ver +portano portare ver +portante portante adj +portanti portante adj +portantina portantina|portantino nom +portantine portantina|portantino nom +portantini portantino nom +portantino portantino nom +portanza portanza nom +portanze portanza nom +portaoggetti portaoggetti adj +portaombrelli portaombrelli nom +portaordini portaordini nom +portapacchi portapacchi nom +portapenne portapenne nom +portar portare ver +portarcela portare ver +portarcelo portare ver +portarci portare ver +portare portare ver +portargli portare ver +portargliela portare ver +portargliele portare ver +portarglielo portare ver +portaritratti portaritratti nom +portariviste portariviste nom +portarla portare ver +portarle portare ver +portarli portare ver +portarlo portare ver +portarmela portare ver +portarmele portare ver +portarmelo portare ver +portarmi portare ver +portarne portare ver +portarono portare ver +portarossetto portarossetto nom +portarsela portare ver +portarsele portare ver +portarseli portare ver +portarselo portare ver +portarsene portare ver +portarsi portare ver +portartela portare ver +portarti portare ver +portarvi portare ver +portasapone portasapone nom +portasci portasci nom +portasi portare ver +portasigarette portasigarette nom +portasigari portasigari nom +portaspilli portaspilli nom +portasse portare ver +portassero portare ver +portassi portare ver +portassimo portare ver +portaste portare ver +portasti portare ver +portata portare ver +portate portare ver +portateci portare ver +portategli portare ver +portatela portare ver +portatele portare ver +portateli portare ver +portatelo portare ver +portatemi portare ver +portatene portare ver +portatesi portare ver +portatevi portare ver +portati portare ver +portatile portatile adj +portatili portatile adj +portato portare ver +portatore portatore nom +portatori portatore nom +portatovaglioli portatovagliolo nom +portatovagliolo portatovagliolo nom +portatrice portatore nom +portatrici portatore nom +portauovo portauovo nom +portautensili portautensili nom +portava portare ver +portavalori portavalori adj +portavamo portare ver +portavano portare ver +portavasi portavasi nom +portavate portare ver +portavi portare ver +portavivande portavivande nom +portavo portare ver +portavoce portavoce nom +porte porta nom +portela porre ver +portele porre ver +portelli portello nom +portello portello nom +portellone portellone nom +portelloni portellone nom +portene porre ver +portenti portento nom +portento portento nom +portentosa portentoso adj +portentose portentoso adj +portentosi portentoso adj +portentoso portentoso adj +porterai portare ver +porteranno portare ver +porterebbe portare ver +porterebbero portare ver +porterei portare ver +porteremo portare ver +porteresti portare ver +porterete portare ver +porterà portare ver +porterò portare ver +porti porto nom +portiamo portare ver +portiamoci portare ver +portiamola portare ver +portiamolo portare ver +portiate portare ver +porticata porticato adj +porticate porticato adj +porticati porticato nom +porticato porticato nom +portici portico nom +portico portico nom +portiera portiera|portiere nom +portierato portierato nom +portiere portiere nom +portieri portiera|portiere nom +portinai portinaio nom +portinaia portinaio adj +portinaie portinaia|portinaio nom +portinaio portinaio adj +portineria portineria nom +portinerie portineria nom +portino portare ver +porto porto nom +portoghese portoghese adj +portoghesi portoghese adj +portolani portolano nom +portolano portolano nom +portone portone nom +portoni portone nom +portori portoro nom +portoro portoro nom +portuale portuale adj +portuali portuale adj +portuari portuario adj +portuaria portuario adj +portuarie portuario adj +portuario portuario adj +portulaca portulaca nom +portuose portuoso adj +portò portare ver +porvi porre ver +porzione porzione nom +porzioni porzione nom +posa posa nom +posacavi posacavi nom +posacenere posacenere nom +posami posare ver +posamine posamine nom +posando posare ver +posandogli posare ver +posandola posare ver +posandolo posare ver +posandosi posare ver +posano posare ver +posante posare ver +posanti posare ver +posapiano posapiano nom +posar posare ver +posare posare ver +posarla posare ver +posarle posare ver +posarlo posare ver +posarono posare ver +posarsi posare ver +posarvi posare ver +posasse posare ver +posassero posare ver +posata posare ver +posate posare ver +posateria posateria nom +posaterie posateria nom +posatezza posatezza nom +posati posare ver +posato posare ver +posatoi posatoio nom +posatoio posatoio nom +posatore posatore nom +posatori posatore nom +posatura posatura nom +posava posare ver +posavano posare ver +posbellica posbellico adj +posbelliche posbellico adj +poscritti poscritto nom +poscritto poscritto nom +posdomani posdomani adv +pose porre ver +poseranno posare ver +posero porre ver +poserà posare ver +poserò posare ver +posi porre ver +posiamo posare ver +posino posare ver +positiva positivo adj +positivamente positivamente adv +positive positivo adj +positivi positivo adj +positivismo positivismo nom +positivista positivista nom +positiviste positivista nom +positivisti positivista nom +positività positività nom +positivo positivo adj +positrone positrone nom +positroni positrone nom +positura positura nom +posiziona posizionare ver +posizionale posizionare ver +posizionali posizionare ver +posizionamento posizionamento nom +posizionando posizionare ver +posizionandola posizionare ver +posizionandole posizionare ver +posizionandoli posizionare ver +posizionandolo posizionare ver +posizionandone posizionare ver +posizionandosi posizionare ver +posizionandovelo posizionare ver +posizionano posizionare ver +posizionarci posizionare ver +posizionare posizionare ver +posizionarla posizionare ver +posizionarle posizionare ver +posizionarli posizionare ver +posizionarlo posizionare ver +posizionarmi posizionare ver +posizionarne posizionare ver +posizionarono posizionare ver +posizionarsi posizionare ver +posizionarvi posizionare ver +posizionasse posizionare ver +posizionassero posizionare ver +posizionata posizionare ver +posizionate posizionare ver +posizionatesi posizionare ver +posizionati posizionare ver +posizionato posizionare ver +posizionava posizionare ver +posizionavano posizionare ver +posizione posizione nom +posizioneranno posizionare ver +posizionerebbe posizionare ver +posizionerebbero posizionare ver +posizionerei posizionare ver +posizioneremo posizionare ver +posizionerà posizionare ver +posizioni posizione nom +posizioniamo posizionare ver +posizionino posizionare ver +posiziono posizionare ver +posizionò posizionare ver +poso posare ver +posologia posologia nom +posologie posologia nom +pospone posporre ver +posponendo posporre ver +posponendovi posporre ver +posponeva posporre ver +posponga posporre ver +pospongono posporre ver +posporlo posporre ver +posporre posporre ver +posporrei posporre ver +pospose posporre ver +posposizione posposizione nom +posposizioni posposizione nom +posposta posporre ver +posposte posporre ver +posposti posporre ver +posposto posporre ver +possa potere ver_sup +possano potere ver_sup +posse possa nom +possedendo possedere ver +possedendola possedere ver +possedendole possedere ver +possedendoli possedere ver +possedendolo possedere ver +possedendone possedere ver +possedente possedere ver +possedenti possedere ver +posseder possedere ver +possederanno possedere ver +possedere possedere ver +possederebbe possedere ver +possederebbero possedere ver +possederla possedere ver +possederle possedere ver +possederli possedere ver +possederlo possedere ver +possederne possedere ver +possedersi possedere ver +possederà possedere ver +possedesse possedere ver +possedessero possedere ver +possedessi possedere ver +possedessimo possedere ver +possedete possedere ver +possedette possedere ver +possedettero possedere ver +possedeva possedere ver +possedevamo possedere ver +possedevano possedere ver +possedevo possedere ver +possediamo possedere ver +possediate possedere ver +possedimenti possedimento nom +possedimento possedimento nom +posseditrice posseditore nom +posseditrici posseditore nom +posseduta possedere ver +possedute possedere ver +posseduti possedere ver +posseduto possedere ver +possegga possedere ver +posseggano possedere ver +posseggono possedere ver +possente possente adj_sup +possenti possente adj +possessi possesso nom +possessione possessione nom +possessioni possessione nom +possessiva possessivo adj +possessive possessivo adj +possessivi possessivo adj +possessivo possessivo adj +possesso possesso nom +possessore possessore nom +possessori possessore nom +possessoria possessorio adj +possessorie possessorio adj +possessorio possessorio adj +possiamo potere ver_sup +possiate potere ver +possibile possibile adj +possibili possibile adj +possibilismo possibilismo nom +possibilista possibilista adj +possibiliste possibilista adj +possibilisti possibilista adj +possibilità possibilità nom +possibilmente possibilmente adv +possidente possidente nom +possidenti possidente nom +possieda possedere ver +possiedano possedere ver +possiede possedere ver +possiedi possedere ver +possiedo possedere ver +possiedono possedere ver +posso potere ver_sup +possono potere ver_sup +post post pre +posta porre ver +postaci postare ver +postagiro postagiro nom +postagli postare ver +postai postare ver +postala postare ver +postale postale adj +postali postale adj +postami postare ver +postando postare ver +postane postare ver +postano postare ver +postar postare ver +postare postare ver +postarla postare ver +postarle postare ver +postarli postare ver +postarlo postare ver +postarmi postare ver +postarono postare ver +postarsi postare ver +postarti postare ver +postarvi postare ver +postasi postare ver +postasse postare ver +postassi postare ver +postata postare ver +postate postare ver +postatelo postare ver +postatemi postare ver +postati postare ver +postato postare ver +postava postare ver +postavano postare ver +postavi postare ver +postazione postazione nom +postazioni postazione nom +postbellica postbellico adj +postbelliche postbellico adj +postbellici postbellico adj +postbellico postbellico adj +postconciliare postconciliare adj +postconciliari postconciliare adj +postdata postdatare ver +postdatare postdatare ver +postdatata postdatare ver +postdatati postdatare ver +postdatato postdatare ver +poste porre ver +posteggi posteggio nom +posteggia posteggiare ver +posteggiare posteggiare ver +posteggiata posteggiare ver +posteggiate posteggiare ver +posteggiati posteggiare ver +posteggiato posteggiare ver +posteggiatore posteggiatore nom +posteggiatori posteggiatore nom +posteggiatrice posteggiatore nom +posteggio posteggio nom +postelegrafica postelegrafico adj +postelegrafonica postelegrafonico adj +postelegrafoniche postelegrafonico adj +postelegrafonici postelegrafonico adj +postelegrafonico postelegrafonico adj +postema postema nom +poster poster nom +posterei postare ver +posteresti postare ver +postergale postergare ver +postergarono postergare ver +postergate postergare ver +postergati postergare ver +postergato postergare ver +posteri postero nom +posteriore posteriore adj +posteriori posteriore adj +posteriorità posteriorità nom +posteriormente posteriormente adv +posterità posterità nom +posterla posterla nom +posterle posterla nom +postero postero nom +posterà postare ver +posterò postare ver +postfazione postfazione nom +postfazioni postfazione nom +posti posto nom +postiamo postare ver +posticce posticcio adj +posticci posticcio adj +posticcia posticcio adj +posticcio posticcio adj +posticipa posticipare ver +posticipando posticipare ver +posticipandola posticipare ver +posticipandolo posticipare ver +posticipandone posticipare ver +posticipano posticipare ver +posticipare posticipare ver +posticiparla posticipare ver +posticiparlo posticipare ver +posticiparne posticipare ver +posticiparono posticipare ver +posticipata posticipare ver +posticipate posticipare ver +posticipati posticipare ver +posticipato posticipare ver +posticipava posticipare ver +posticipazione posticipazione nom +posticipazioni posticipazione nom +posticiperebbe posticipare ver +posticipi posticipare ver +posticipo posticipare ver +posticipò posticipare ver +postierla postierla nom +postierle postierla nom +postiglione postiglione nom +postiglioni postiglione nom +postilla postilla nom +postillata postillare ver +postillate postillare ver +postillati postillare ver +postillato postillare ver +postille postilla nom +postillo postillare ver +postindustriale postindustriale adj +postindustriali postindustriale adj +postini postino nom +postino postino nom +postmoderna postmoderno adj +postmoderne postmoderno adj +postmoderni postmoderno adj +postmoderno postmoderno adj +postnatale postnatale adj +posto porre ver +postonica postonico adj +postoniche postonico adj +postoperatori postoperatorio adj +postoperatoria postoperatorio adj +postoperatorie postoperatorio adj +postoperatorio postoperatorio adj +postprandiale postprandiale adj +postrema postremo adj +postremo postremo adj +postriboli postribolo nom +postribolo postribolo nom +postscriptum postscriptum nom +postula postulare ver +postulaci postulare ver +postulando postulare ver +postulano postulare ver +postulante postulante nom +postulanti postulante nom +postulare postulare ver +postularne postulare ver +postularono postulare ver +postulasse postulare ver +postulata postulare ver +postulate postulato adj +postulati postulato nom +postulato postulato nom +postulava postulare ver +postulavano postulare ver +postuli postulare ver +postuliamo postulare ver +postulino postulare ver +postulo postulare ver +postulò postulare ver +postuma postumo adj +postume postumo adj +postumi postumo adj +postumo postumo adj +postuniversitari postuniversitario adj +postura postura nom +posture postura nom +postvocalica postvocalico adj +postò postare ver +posò posare ver +pota potare ver +potabile potabile adj +potabili potabile adj +potage potage nom +potai potare ver +potala potare ver +potale potare ver +potali potare ver +potamologia potamologia nom +potando potare ver +potano potare ver +potar potare ver +potare potare ver +potarle potare ver +potarlo potare ver +potassa potassa nom +potassi potare ver +potassica potassico adj +potassiche potassico adj +potassici potassico adj +potassico potassico adj +potassio potassio nom +potata potare ver +potate potare ver +potati potare ver +potato potare ver +potatore potatore nom +potatori potatore nom +potatura potatura nom +potature potatura nom +potava potare ver +potavano potare ver +potei potere ver +potemmo potere ver +potendo potere ver +potendoci potere ver +potendogli potere ver +potendola potere ver +potendole potere ver +potendoli potere ver +potendolo potere ver +potendomene potere ver +potendomi potere ver +potendone potere ver +potendoselo potere ver +potendosene potere ver +potendosi potere ver +potendovi potere ver +potente potente adj_sup +potenti potente adj_sup +potentina potentino adj +potentine potentino adj +potentini potentino nom +potentino potentino adj +potentissime potentissimo adj +potentissimi potentissimo adj +potenza potenza nom +potenze potenza nom +potenzi potenziare ver +potenzia potenziare ver +potenziale potenziale nom +potenziali potenziale adj +potenzialità potenzialità nom +potenzialmente potenzialmente adv +potenziamenti potenziamento nom +potenziamento potenziamento nom +potenziando potenziare ver +potenziandola potenziare ver +potenziandole potenziare ver +potenziandoli potenziare ver +potenziandolo potenziare ver +potenziandone potenziare ver +potenziandosi potenziare ver +potenziano potenziare ver +potenziante potenziare ver +potenzianti potenziare ver +potenziare potenziare ver +potenziarla potenziare ver +potenziarle potenziare ver +potenziarli potenziare ver +potenziarlo potenziare ver +potenziarne potenziare ver +potenziarono potenziare ver +potenziarsi potenziare ver +potenziasse potenziare ver +potenziassero potenziare ver +potenziata potenziare ver +potenziate potenziare ver +potenziati potenziare ver +potenziato potenziare ver +potenziava potenziare ver +potenziavano potenziare ver +potenzieranno potenziare ver +potenzierebbe potenziare ver +potenzierebbero potenziare ver +potenzierà potenziare ver +potenzino potenziare ver +potenzio potenziare ver +potenziometri potenziometro nom +potenziometro potenziometro nom +potenziò potenziare ver +poter potere ver_sup +poteranno potare ver +potercela potere ver +potercelo potere ver +potercene potere ver +poterci potere ver +potere potere nom +poterebbe potare ver +poterei potare ver +poteresti potare ver +potergli potere ver +potergliela potere ver +poterglielo potere ver +poteri potere nom +poterla potere ver +poterle potere ver +poterli potere ver_sup +poterlo potere ver +potermelo potere ver +potermene potere ver +potermi potere ver +poterne potere ver +poterono potere ver +potersela potere ver +potersele potere ver +poterseli potere ver +poterselo potere ver +potersene potere ver +potersi potere ver +potertelo potere ver +poterti potere ver +potervelo potere ver +potervi potere ver +poterà potare ver +potesse potere ver_sup +potessero potere ver_sup +potessi potere ver +potessimo potere ver +potestativa potestativo adj +potestative potestativo adj +potestativi potestativo adj +potestativo potestativo adj +poteste potere ver +potesti potere ver +potestà potestà nom +potete potere ver_sup +poteva potere ver_sup +potevamo potere ver_sup +potevano potere ver_sup +potevate potere ver +potevi potere ver_sup +potevo potere ver_sup +poti potare ver +potiamo potare ver +potino potare ver +poto potare ver +potori potorio adj +potorio potorio adj +potra potra sw +potrai potere ver +potranno potere ver_sup +potrebbe potere ver_sup +potrebbero potere ver_sup +potrei potere ver +potremmo potere ver_sup +potremo potere ver_sup +potreste potere ver +potresti potere ver +potrete potere ver +potrà potere ver_sup +potrò potere ver +potuta potere ver +potute potere ver +potuti potere ver +potuto potere ver_sup +potè potere ver +potò potare ver +pouf pouf nom +poule poule nom +pourparler pourparler nom +povera povero adj +poveracci poveraccio nom +poveraccia poveraccio nom +poveraccio poveraccio nom +povere povero adj +poverella poverello adj +poverelle poverello adj +poverelli poverello adj +poverello poverello nom +poveretta poveretto nom +poverette poveretto adj +poveretti poveretto adj +poveretto poveretto nom +poveri povero adj +poverina poverino nom +poverine poverino adj +poverini poverino adj +poverino poverino adj +poverissimi poverissimo adj +povero povero adj +povertà povertà nom +poveruomo poveruomo nom +power power nom +pozione pozione nom +pozioni pozione nom +pozza pozza nom +pozzanghera pozzanghera nom +pozzanghere pozzanghera nom +pozze pozza nom +pozzetti pozzetto nom +pozzetto pozzetto nom +pozzi pozzo nom +pozzo pozzo nom +pozzolana pozzolana nom +pozzolane pozzolana nom +ppm ppm nom +praghese praghese adj +praghesi praghese adj +pragmatica pragmatico adj +pragmatiche pragmatico adj +pragmatici pragmatico adj +pragmatico pragmatico adj +pragmatismo pragmatismo nom +pragmatista pragmatista nom +pragmatisti pragmatista nom +praho praho nom +praia praia nom +praie praia nom +pralina pralina nom +praline pralina nom +prammatica prammatica nom +prammatiche prammatica nom +pranoterapia pranoterapia nom +pranza pranzare ver +pranzai pranzare ver +pranzando pranzare ver +pranzano pranzare ver +pranzare pranzare ver +pranzarono pranzare ver +pranzate pranzare ver +pranzato pranzare ver +pranzava pranzare ver +pranzavano pranzare ver +pranzerà pranzare ver +pranzetti pranzetto nom +pranzetto pranzetto nom +pranzi pranzo nom +pranziamo pranzare ver +pranzo pranzo nom +pranzò pranzare ver +praseodimi praseodimio nom +praseodimio praseodimio nom +prassi prassi nom +prataiola prataiolo adj +prataiole prataiolo adj +prataioli prataiolo adj +prataiolo prataiolo adj +pratense pratense adj +pratensi pratense adj +prateria prateria nom +praterie prateria nom +prati prato nom +pratica pratica nom +praticabile praticabile adj +praticabili praticabile adj +praticabilità praticabilità nom +praticamene praticare ver +praticamente praticamente adv_sup +praticammo praticare ver +praticando praticare ver +praticandogli praticare ver +praticandola praticare ver +praticandole praticare ver +praticandolo praticare ver +praticandosi praticare ver +praticandovi praticare ver +praticano praticare ver +praticantato praticantato nom +praticante praticante adj +praticanti praticante nom +praticar praticare ver +praticare praticare ver +praticargli praticare ver +praticarla praticare ver +praticarle praticare ver +praticarli praticare ver +praticarlo praticare ver +praticarne praticare ver +praticarono praticare ver +praticarsi praticare ver +praticarvi praticare ver +praticasse praticare ver +praticassero praticare ver +praticata praticare ver +praticate praticare ver +praticati praticare ver +praticato praticare ver +praticava praticare ver +praticavano praticare ver +praticavo praticare ver +pratiche pratico adj +praticheranno praticare ver +praticherebbe praticare ver +praticherebbero praticare ver +praticherà praticare ver +pratichi praticare ver +pratichiamo praticare ver +pratichino praticare ver +pratici pratico adj +praticità praticità nom +pratico pratico adj +praticola praticolo adj +praticolo praticolo adj +praticone praticona|praticone nom +praticoni praticone nom +praticò praticare ver +pratile pratile nom +pratili pratile nom +prativa prativo adj +prative prativo adj +prativi prativo adj +prativo prativo adj +prato prato nom +pratolina pratolina nom +pratoline pratolina nom +prava pravo adj +prave pravo adj +pravi pravo adj +pravo pravo adj +preaccordo preaccordo nom +preacquisto preacquisto nom +preadesione preadesione nom +preadolescente preadolescente nom +preadolescenti preadolescente nom +preagonica preagonico adj +preallarme preallarme nom +prealpina prealpino adj +prealpine prealpino adj +prealpini prealpino adj +prealpino prealpino adj +preamboli preambolo nom +preambolo preambolo nom +preannuncerà preannunciare ver +preannunci preannuncio nom +preannuncia preannunciare ver +preannunciando preannunciare ver +preannunciandogli preannunciare ver +preannunciandole preannunciare ver +preannunciandone preannunciare ver +preannunciano preannunciare ver +preannunciante preannunciare ver +preannuncianti preannunciare ver +preannunciarci preannunciare ver +preannunciare preannunciare ver +preannunciarono preannunciare ver +preannunciarsi preannunciare ver +preannunciassero preannunciare ver +preannunciata preannunciare ver +preannunciate preannunciare ver +preannunciati preannunciare ver +preannunciato preannunciare ver +preannunciava preannunciare ver +preannunciavano preannunciare ver +preannuncio preannuncio nom +preannunciò preannunciare ver +preannunzi preannunzio nom +preannunzia preannunziare ver +preannunziano preannunziare ver +preannunziante preannunziare ver +preannunziare preannunziare ver +preannunziata preannunziare ver +preannunziati preannunziare ver +preannunziato preannunziare ver +preannunziava preannunziare ver +preannunzio preannunzio nom +preannunziò preannunziare ver +preassemblate preassemblare ver +preavvertire preavvertire ver +preavvertita preavvertire ver +preavvertite preavvertire ver +preavvertiti preavvertire ver +preavvertito preavvertire ver +preavvertì preavvertire ver +preavvisa preavvisare ver +preavvisando preavvisare ver +preavvisano preavvisare ver +preavvisare preavvisare ver +preavvisarmi preavvisare ver +preavvisato preavvisare ver +preavvisava preavvisare ver +preavvisi preavviso nom +preavviso preavviso nom +preavvisò preavvisare ver +prebellica prebellico adj +prebelliche prebellico adj +prebellici prebellico adj +prebellico prebellico adj +prebenda prebenda nom +prebende prebenda nom +precampionato precampionato nom +precancerosa precanceroso adj +precancerose precanceroso adj +precancerosi precanceroso adj +precanceroso precanceroso adj +precari precario adj +precaria precario adj +precariato precariato nom +precarie precario adj +precarietà precarietà nom +precario precario adj +precauzionale precauzionale adj +precauzionali precauzionale adj +precauzione precauzione nom +precauzioni precauzione nom +prece prece nom +preceda precedere ver +precedano precedere ver +precede precedere ver +precedendo precedere ver +precedendola precedere ver +precedendole precedere ver +precedendoli precedere ver +precedendolo precedere ver +precedente precedente adj +precedentemente precedentemente adv +precedenti precedente adj +precedenza precedenza nom +precedenze precedenza nom +precederanno precedere ver +precedere precedere ver +precederebbe precedere ver +precederebbero precedere ver +precederla precedere ver +precederle precedere ver +precederli precedere ver +precederlo precedere ver +precedermi precedere ver +precederne precedere ver +precederà precedere ver +precederò precedere ver +precedesse precedere ver +precedessero precedere ver +precedete precedere ver +precedette precedere ver +precedettero precedere ver +precedeva precedere ver +precedevano precedere ver +precedo precedere ver +precedono precedere ver +preceduta precedere ver +precedute precedere ver +preceduti precedere ver +preceduto precedere ver +precessione precessione nom +precessioni precessione nom +precetta precettare ver +precettare precettare ver +precettata precettare ver +precettati precettare ver +precettato precettare ver +precetti precetto nom +precettistica precettistica nom +precettistiche precettistica nom +precetto precetto nom +precettore precettore nom +precettori precettore nom +precettrice precettore nom +preci prece nom +precipita precipitare ver +precipitaci precipitare ver +precipitai precipitare ver +precipitammo precipitare ver +precipitando precipitare ver +precipitandola precipitare ver +precipitandolo precipitare ver +precipitandosi precipitare ver +precipitano precipitare ver +precipitante precipitante adj +precipitanti precipitante adj +precipitarci precipitare ver +precipitare precipitare ver +precipitarla precipitare ver +precipitarli precipitare ver +precipitarlo precipitare ver +precipitarono precipitare ver +precipitarsi precipitare ver +precipitarti precipitare ver +precipitarvi precipitare ver +precipitasse precipitare ver +precipitassero precipitare ver +precipitata precipitare ver +precipitate precipitare ver +precipitati precipitare ver +precipitato precipitare ver +precipitatore precipitatore nom +precipitatori precipitatore nom +precipitava precipitare ver +precipitavano precipitare ver +precipitazione precipitazione nom +precipitazioni precipitazione nom +precipite precipite adj +precipiteranno precipitare ver +precipiterebbe precipitare ver +precipiterebbero precipitare ver +precipiterei precipitare ver +precipiterà precipitare ver +precipiterò precipitare ver +precipitevolissimevolmente precipitevolissimevolmente adv +precipiti precipitare ver +precipitiamo precipitare ver +precipitino precipitare ver +precipito precipitare ver +precipitosa precipitoso adj +precipitose precipitoso adj +precipitosi precipitoso adj +precipitoso precipitoso adj +precipitò precipitare ver +precipizi precipizio nom +precipizio precipizio nom +precipua precipuo adj +precipuamente precipuamente adv +precipue precipuo adj +precipui precipuo adj +precipuo precipuo adj +precisa preciso adj +precisalo precisare ver +precisamene precisare ver +precisamente precisamente adv +precisando precisare ver +precisandogli precisare ver +precisandolo precisare ver +precisandomi precisare ver +precisandone precisare ver +precisandosi precisare ver +precisano precisare ver +precisarci precisare ver +precisare precisare ver +precisargli precisare ver +precisarla precisare ver +precisarle precisare ver +precisarlo precisare ver +precisarne precisare ver +precisarono precisare ver +precisarsi precisare ver +precisarti precisare ver +precisasse precisare ver +precisassi precisare ver +precisata precisare ver +precisate precisare ver +precisati precisare ver +precisato precisare ver +precisava precisare ver +precisavano precisare ver +precisavo precisare ver +precisazione precisazione nom +precisazioni precisazione nom +precise preciso adj +preciseranno precisare ver +preciserebbe precisare ver +preciserei precisare ver +preciseremo precisare ver +preciserà precisare ver +preciserò precisare ver +precisi preciso adj +precisiamo precisare ver +precisino precisare ver +precisione precisione nom +precisioni precisione nom +preciso preciso adj +precisò precisare ver +precitata precitare ver +precitate precitare ver +precitati precitare ver +precitato precitare ver +preclara preclaro adj +preclare preclaro adj +preclari preclaro adj +preclaro preclaro adj +precluda precludere ver +precludano precludere ver +preclude precludere ver +precludendo precludere ver +precludendogli precludere ver +precludendole precludere ver +precludendolo precludere ver +precludendosi precludere ver +precludente precludere ver +precluderci precludere ver +precludere precludere ver +precluderebbe precludere ver +precluderebbero precludere ver +precludergli precludere ver +precluderle precludere ver +precluderne precludere ver +precludersi precludere ver +precluderà precludere ver +precludesse precludere ver +precludeva precludere ver +precludevano precludere ver +precludiamo precludere ver +precludo precludere ver +precludono precludere ver +preclusa precludere ver +precluse precludere ver +preclusero precludere ver +preclusi precludere ver +preclusione preclusione nom +preclusioni preclusione nom +preclusiva preclusivo adj +preclusive preclusivo adj +preclusivi preclusivo adj +preclusivo preclusivo adj +precluso precludere ver +precoce precoce adj +precoci precoce adj +precocità precocità nom +precolombiana precolombiano adj +precolombiane precolombiano adj +precolombiani precolombiano adj +precolombiano precolombiano adj +precompressa precompresso adj +precompresse precompresso adj +precompressi precompresso adj +precompressione precompressione nom +precompresso precompresso adj +preconcetta preconcetto adj +preconcette preconcetto adj +preconcetti preconcetto nom +preconcetto preconcetto nom +precondizione precondizione nom +preconfezionata preconfezionare ver +preconfezionate preconfezionare ver +preconfezionati preconfezionare ver +preconfezionato preconfezionare ver +precongressuale precongressuale adj +preconizza preconizzare ver +preconizzando preconizzare ver +preconizzano preconizzare ver +preconizzare preconizzare ver +preconizzarono preconizzare ver +preconizzata preconizzare ver +preconizzate preconizzare ver +preconizzati preconizzare ver +preconizzato preconizzare ver +preconizzava preconizzare ver +preconizzavano preconizzare ver +preconizzò preconizzare ver +preconosciuti preconoscere ver +preconosciuto preconoscere ver +preconsci preconscio nom +preconscio preconscio nom +precordi precordio nom +precordiale precordiale adj +precordiali precordiale adj +precorra precorrere ver +precorre precorrere ver +precorrendo precorrere ver +precorrere precorrere ver +precorrerà precorrere ver +precorreva precorrere ver +precorrevano precorrere ver +precorritore precorritore adj +precorritori precorritore nom +precorritrice precorritore adj +precorritrici precorritore adj +precorrono precorrere ver +precorsa precorrere ver +precorse precorrere ver +precorsero precorrere ver +precorso precorrere ver +precostituente precostituire ver +precostituire precostituire ver +precostituita precostituire ver +precostituite precostituire ver +precostituiti precostituire ver +precostituito precostituire ver +precotta precotto adj +precotte precotto adj +precotti precotto adj +precotto precotto adj +precursore precursore nom +precursori precursore nom +preda preda nom +predando predare ver +predandoli predare ver +predano predare ver +predare predare ver +predarla predare ver +predarle predare ver +predarli predare ver +predarlo predare ver +predarono predare ver +predasse predare ver +predassero predare ver +predassi predare ver +predata predare ver +predate predare ver +predati predare ver +predato predare ver +predatori predatore nom +predatrici predatrice nom +predava predare ver +predavano predare ver +prede preda nom +predecessora predecessore nom +predecessore predecessore nom +predecessori predecessore nom +predefiniti predefinito adj +predefinito predefinito adj +predella predella nom +predelle predella nom +predellini predellino nom +predellino predellino nom +prederà predare ver +predestina predestinare ver +predestinaci predestinare ver +predestinare predestinare ver +predestinata predestinato adj +predestinate predestinato adj +predestinati predestinato adj +predestinato predestinare ver +predestinazione predestinazione nom +predestinazionismo predestinazionismo nom +predetermina predeterminare ver +predeterminando predeterminare ver +predeterminano predeterminare ver +predeterminare predeterminare ver +predeterminata predeterminare ver +predeterminate predeterminare ver +predeterminati predeterminare ver +predeterminato predeterminare ver +predetta predire ver +predette predetto adj +predetti predire ver +predetto predetto adj +predi predio nom +prediale prediale adj +prediali prediale adj +predica predica nom +predicaci predicare ver +predicando predicare ver +predicano predicare ver +predicante predicare ver +predicar predicare ver +predicare predicare ver +predicarla predicare ver +predicarono predicare ver +predicarsi predicare ver +predicarvi predicare ver +predicasse predicare ver +predicassero predicare ver +predicata predicare ver +predicate predicare ver +predicatelo predicare ver +predicati predicato nom +predicativa predicativo adj +predicative predicativo adj +predicativi predicativo adj +predicativo predicativo adj +predicato predicato nom +predicatore predicatore nom +predicatori predicatore adj +predicatrice predicatore adj +predicatrici predicatore adj +predicava predicare ver +predicavano predicare ver +predicazione predicazione nom +predicazioni predicazione nom +predice predire ver +predicendo predire ver +predicendogli predire ver +predicendole predire ver +predicendone predire ver +predicesse predire ver +prediceva predire ver +predicevano predire ver +prediche predica nom +predicheranno predicare ver +predicherà predicare ver +predichi predicare ver +predichiamo predicare ver +predichino predicare ver +predici predire ver +predico predicare|predire ver +predicono predire ver +predicozzi predicozzo nom +predicozzo predicozzo nom +predicò predicare ver +predilesse prediligere ver +predilessero prediligere ver +prediletta prediligere ver +predilette prediligere ver +prediletti prediligere ver +prediletto prediligere ver +predilezione predilezione nom +predilezioni predilezione nom +prediliga prediligere ver +prediligano prediligere ver +predilige prediligere ver +prediligendo prediligere ver +prediligendone prediligere ver +prediligeranno prediligere ver +prediligere prediligere ver +prediligerebbe prediligere ver +prediligerei prediligere ver +prediligerà prediligere ver +prediligesse prediligere ver +prediligessero prediligere ver +prediligeva prediligere ver +prediligevano prediligere ver +prediligi prediligere ver +prediligo prediligere ver +prediligono prediligere ver +predino predare ver +predio predio nom +predire predire ver +predirebbe predire ver +predirgli predire ver +predirlo predire ver +predirne predire ver +predirà predire ver +predispone predisporre ver +predisponendo predisporre ver +predisponendole predisporre ver +predisponendoli predisporre ver +predisponendolo predisporre ver +predisponendone predisporre ver +predisponendosi predisporre ver +predisponente predisporre ver +predisponenti predisporre ver +predisponesse predisporre ver +predisponessero predisporre ver +predisponeva predisporre ver +predisponevano predisporre ver +predisponga predisporre ver +predispongano predisporre ver +predispongono predisporre ver +predisponi predisporre ver +predisponiamo predisporre ver +predisporla predisporre ver +predisporle predisporre ver +predisporli predisporre ver +predisporlo predisporre ver +predisporne predisporre ver +predisporranno predisporre ver +predisporre predisporre ver +predisporrà predisporre ver +predisporsi predisporre ver +predispose predisporre ver +predisposero predisporre ver +predisposizione predisposizione nom +predisposizioni predisposizione nom +predisposta predisporre ver +predisposte predisporre ver +predisposti predisporre ver +predisposto predisporre ver +predisse predire ver +predissero predire ver +predite predire ver +predittiva predittivo adj +predittivi predittivo adj +predizione predizione nom +predizioni predizione nom +predo predare ver +predomina predominare ver +predominando predominare ver +predominano predominare ver +predominante predominante adj +predominanti predominante adj +predominanza predominanza nom +predominare predominare ver +predominarono predominare ver +predominasse predominare ver +predominata predominare ver +predominate predominare ver +predominati predominare ver +predominato predominare ver +predominava predominare ver +predominavano predominare ver +predominerà predominare ver +predomini predominare ver +predominino predominare ver +predominio predominio nom +predomino predominare ver +predominò predominare ver +predone predone nom +predoni predone nom +predì predire ver +predò predare ver +preelettorale preelettorale adj +preelettorali preelettorale adj +preesiste preesistere ver +preesistente preesistente adj +preesistenti preesistente adj +preesistenza preesistenza nom +preesistenze preesistenza nom +preesistere preesistere ver +preesisterle preesistere ver +preesistesse preesistere ver +preesisteva preesistere ver +preesistevano preesistere ver +preesistono preesistere ver +prefabbricare prefabbricare ver +prefabbricata prefabbricato adj +prefabbricate prefabbricato adj +prefabbricati prefabbricato adj +prefabbricato prefabbricato adj +prefabbricazione prefabbricazione nom +prefazi prefazio nom +prefazio prefazio nom +prefazione prefazione nom +prefazioni prefazione nom +preferendo preferire ver +preferendogli preferire ver +preferendola preferire ver +preferendole preferire ver +preferendoli preferire ver +preferendolo preferire ver +preferendone preferire ver +preferendosi preferire ver +preferendovi preferire ver +preferente preferire ver +preferenza preferenza nom +preferenze preferenza nom +preferenziale preferenziale adj +preferenziali preferenziale adj +preferiamo preferire ver +preferiate preferire ver +preferibile preferibile adj +preferibili preferibile adj +preferibilmente preferibilmente adv +preferii preferire ver +preferimmo preferire ver +preferir preferire ver +preferirai preferire ver +preferiranno preferire ver +preferire preferire ver +preferirebbe preferire ver +preferirebbero preferire ver +preferirei preferire ver +preferiremmo preferire ver +preferiremo preferire ver +preferireste preferire ver +preferiresti preferire ver +preferirete preferire ver +preferirgli preferire ver +preferirla preferire ver +preferirle preferire ver +preferirli preferire ver +preferirlo preferire ver +preferirne preferire ver +preferirono preferire ver +preferirsi preferire ver +preferirvi preferire ver +preferirà preferire ver +preferirò preferire ver +preferisca preferire ver +preferiscano preferire ver +preferisce preferire ver +preferisci preferire ver +preferisco preferire ver +preferiscono preferire ver +preferisse preferire ver +preferissero preferire ver +preferiste preferire ver +preferita preferire ver +preferite preferito adj +preferiti preferito adj +preferito preferire ver +preferiva preferire ver +preferivamo preferire ver +preferivano preferire ver +preferivi preferire ver +preferivo preferire ver +preferì preferire ver +prefestiva prefestivo adj +prefestive prefestivo adj +prefestivi prefestivo adj +prefestivo prefestivo adj +prefetti prefetto nom +prefettizi prefettizio adj +prefettizia prefettizio adj +prefettizie prefettizio adj +prefettizio prefettizio adj +prefetto prefetto nom +prefettura prefettura nom +prefetture prefettura nom +prefica prefica nom +prefiche prefica nom +prefigga prefiggere ver +prefigge prefiggere ver +prefiggendosi prefiggere ver +prefiggere prefiggere ver +prefiggerebbe prefiggere ver +prefiggersi prefiggere ver +prefiggeva prefiggere ver +prefiggevano prefiggere ver +prefiggiamo prefiggere ver +prefiggo prefiggere ver +prefiggono prefiggere ver +prefigura prefigurare ver +prefigurando prefigurare ver +prefigurandola prefigurare ver +prefigurandone prefigurare ver +prefigurandosi prefigurare ver +prefigurano prefigurare ver +prefigurante prefigurare ver +prefigurare prefigurare ver +prefigurarla prefigurare ver +prefigurarne prefigurare ver +prefigurarono prefigurare ver +prefigurarsi prefigurare ver +prefigurata prefigurare ver +prefigurate prefigurare ver +prefigurati prefigurare ver +prefigurato prefigurare ver +prefigurava prefigurare ver +prefiguravano prefigurare ver +prefigurazione prefigurazione nom +prefigurazioni prefigurazione nom +prefigurerebbe prefigurare ver +prefigurerà prefigurare ver +prefiguri prefigurare ver +prefigurò prefigurare ver +prefinanziamento prefinanziamento nom +prefissa prefiggere ver +prefissale prefissare ver +prefissali prefissare ver +prefissandomi prefissare ver +prefissandosi prefissare ver +prefissano prefissare ver +prefissare prefissare ver +prefissarono prefissare ver +prefissarsi prefissare ver +prefissata prefissato adj +prefissate prefissato adj +prefissati prefissato adj +prefissato prefissare ver +prefissatosi prefissatosi ver +prefissava prefissare ver +prefisse prefiggere ver +prefissero prefiggere ver +prefissi prefisso nom +prefisso prefissare ver +prefissoide prefissoide nom +prefissoidi prefissoide nom +prefissò prefissare ver +prega pregare ver +pregai pregare ver +pregammo pregare ver +pregando pregare ver +pregandogli pregare ver +pregandola pregare ver +pregandole pregare ver +pregandoli pregare ver +pregandolo pregare ver +pregandomi pregare ver +pregandoti pregare ver +pregandovi pregare ver +pregano pregare ver +pregante pregare ver +preganti pregare ver +pregar pregare ver +pregare pregare ver +pregarla pregare ver +pregarli pregare ver +pregarlo pregare ver +pregarono pregare ver +pregarti pregare ver +pregarvi pregare ver +pregasi pregare ver +pregasse pregare ver +pregassero pregare ver +pregata pregare ver +pregate pregare ver +pregati pregare ver +pregato pregare ver +pregava pregare ver +pregavano pregare ver +pregavo pregare ver +pregerei pregiare ver +pregevole pregevole adj +pregevoli pregevole adj +pregheranno pregare ver +pregherei pregare ver +pregheremmo pregare ver +pregherete pregare ver +pregherà pregare ver +pregherò pregare ver +preghi prego nom +preghiamo pregare ver +preghiera preghiera nom +preghiere preghiera nom +preghino pregare ver +pregi pregio nom +pregia pregiare ver +pregiano pregiare ver +pregiare pregiare ver +pregiarono pregiare ver +pregiarsi pregiare ver +pregiata pregiato adj +pregiate pregiato adj +pregiati pregiato adj +pregiatissima pregiatissimo adj +pregiatissime pregiatissimo adj +pregiatissimi pregiatissimo adj +pregiatissimo pregiatissimo adj +pregiato pregiato adj +pregio pregio nom +pregiudica pregiudicare ver +pregiudicando pregiudicare ver +pregiudicandole pregiudicare ver +pregiudicandone pregiudicare ver +pregiudicandosi pregiudicare ver +pregiudicano pregiudicare ver +pregiudicante pregiudicare ver +pregiudicanti pregiudicare ver +pregiudicare pregiudicare ver +pregiudicargli pregiudicare ver +pregiudicarlo pregiudicare ver +pregiudicarne pregiudicare ver +pregiudicarono pregiudicare ver +pregiudicasse pregiudicare ver +pregiudicata pregiudicare ver +pregiudicate pregiudicare ver +pregiudicati pregiudicare ver +pregiudicato pregiudicare ver +pregiudicava pregiudicare ver +pregiudicavano pregiudicare ver +pregiudicherebbe pregiudicare ver +pregiudicherebbero pregiudicare ver +pregiudicherà pregiudicare ver +pregiudichi pregiudicare ver +pregiudichino pregiudicare ver +pregiudicò pregiudicare ver +pregiudizi pregiudizio nom +pregiudiziale pregiudiziale adj +pregiudiziali pregiudiziale adj +pregiudizialità pregiudizialità nom +pregiudizievole pregiudizievole adj +pregiudizievoli pregiudizievole adj +pregiudizio pregiudizio nom +pregna pregno adj +pregnante pregnante adj +pregnanti pregnante adj +pregnanza pregnanza nom +pregne pregno adj +pregni pregno adj +pregno pregno adj +prego pregare ver +pregressa pregresso adj +pregresse pregresso adj +pregressi pregresso adj +pregresso pregresso adj +pregusta pregustare ver +pregustando pregustare ver +pregustano pregustare ver +pregustare pregustare ver +pregustato pregustare ver +pregustava pregustare ver +pregustavano pregustare ver +pregusto pregustare ver +pregò pregare ver +preimpianto preimpianto nom +preinformazione preinformazione nom +preistoria preistoria nom +preistorica preistorico adj +preistoriche preistorico adj +preistorici preistorico adj +preistorico preistorico adj +preistorie preistoria nom +prelati prelato nom +prelatizi prelatizio nom +prelatizio prelatizio nom +prelato prelato nom +prelavaggio prelavaggio nom +prelazione prelazione nom +prelazioni prelazione nom +preleva prelevare ver +prelevamenti prelevamento nom +prelevamento prelevamento nom +prelevando prelevare ver +prelevandogli prelevare ver +prelevandola prelevare ver +prelevandole prelevare ver +prelevandoli prelevare ver +prelevandolo prelevare ver +prelevandone prelevare ver +prelevano prelevare ver +prelevante prelevare ver +prelevare prelevare ver +prelevargli prelevare ver +prelevarla prelevare ver +prelevarle prelevare ver +prelevarli prelevare ver +prelevarlo prelevare ver +prelevarne prelevare ver +prelevarono prelevare ver +prelevarsi prelevare ver +prelevasse prelevare ver +prelevassero prelevare ver +prelevata prelevare ver +prelevate prelevare ver +prelevati prelevare ver +prelevato prelevare ver +prelevava prelevare ver +prelevavano prelevare ver +preleveranno prelevare ver +preleverà prelevare ver +prelevi prelevare ver +preleviamo prelevare ver +prelevino prelevare ver +prelevo prelevare ver +prelevò prelevare ver +prelibata prelibato adj +prelibate prelibato adj +prelibatezza prelibatezza nom +prelibatezze prelibatezza nom +prelibati prelibato adj +prelibato prelibato adj +prelievi prelievo nom +prelievo prelievo nom +preliminare preliminare adj +preliminari preliminare adj +preliminarmente preliminarmente adv +preluda preludere ver +prelude preludere ver +preludendo preludere ver +preludere preludere ver +preluderebbe preludere ver +preluderà preludere ver +preludeva preludere ver +preludevano preludere ver +preludi preludio nom +preludia preludiare ver +preludiare preludiare ver +preludio preludio nom +preludono preludere ver +preluse preludere ver +prelusero preludere ver +prema premere ver +premano premere ver +prematrimoniale prematrimoniale adj +prematrimoniali prematrimoniale adj +prematura prematuro adj +premature prematuro adj +prematuri prematuro adj +prematuro prematuro adj +preme premere ver +premedita premeditare ver +premeditando premeditare ver +premeditano premeditare ver +premeditare premeditare ver +premeditata premeditare ver +premeditate premeditare ver +premeditati premeditare ver +premeditato premeditare ver +premeditazione premeditazione nom +premendo premere ver +premendogli premere ver +premendola premere ver +premendole premere ver +premendoli premere ver +premendolo premere ver +premendone premere ver +premente premere ver +prementi premere ver +premer premere ver +premerai premere ver +premere premere ver +premerebbe premere ver +premergli premere ver +premerla premere ver +premerle premere ver +premerli premere ver +premerlo premere ver +premerne premere ver +premerà premere ver +premerò premere ver +premessa premessa nom +premesse premessa nom +premessero premere ver +premessi premettere ver +premesso premettere ver +premestruale premestruale adj +premestruali premestruale adj +premete premere ver +premetta premettere ver +premette premettere ver +premettendo premettere ver +premettendogli premettere ver +premettendole premettere ver +premettendovi premettere ver +premettere premettere ver +premetterebbe premettere ver +premetterle premettere ver +premetterlo premettere ver +premetterà premettere ver +premetteva premettere ver +premettevo premettere ver +premetti premettere ver +premettiamo premettere ver +premetto premettere ver +premettono premettere ver +premeva premere ver +premevano premere ver +premi premio nom +premia premiare ver +premiaci premiare ver +premiale premiare ver +premiali premiare ver +premiamo premere|premiare ver +premiando premiare ver +premiandola premiare ver +premiandole premiare ver +premiandoli premiare ver +premiandolo premiare ver +premiandone premiare ver +premiano premiare ver +premiante premiare ver +premianti premiare ver +premiar premiare ver +premiare premiare ver +premiarla premiare ver +premiarle premiare ver +premiarli premiare ver +premiarlo premiare ver +premiarne premiare ver +premiarono premiare ver +premiarsi premiare ver +premiarti premiare ver +premiasse premiare ver +premiata premiare ver +premiate premiare ver +premiati premiare ver +premiato premiare ver +premiava premiare ver +premiavano premiare ver +premiazione premiazione nom +premiazioni premiazione nom +premici premere ver +premier premier nom +premieranno premiare ver +premiere premiere nom +premierebbe premiare ver +premierei premiare ver +premieremo premiare ver +premierà premiare ver +premii premiare ver +premila premere ver +premilo premere ver +preminente preminente adj +preminenti preminente adj +preminenza preminenza nom +preminenze preminenza nom +premino premiare ver +premio premio nom +premise premettere ver +premistoppa premistoppa nom +premito premito nom +premitura premitura nom +premiò premiare ver +premo premere ver +premolare premolare nom +premolari premolare nom +premonitore premonitore adj +premonitori premonitore adj +premonitrice premonitore adj +premonitrici premonitore adj +premonizione premonizione nom +premonizioni premonizione nom +premono premere ver +premorendo premorire ver +premorienza premorienza nom +premorire premorire ver +premorirono premorire ver +premorta premorire ver +premorte premorte nom +premorti premorire ver +premorto premorire ver +premorì premorire ver +premunendosi premunire ver +premunirci premunire ver +premunire premunire ver +premunirsi premunire ver +premunirò premunire ver +premunisce premunire ver +premunito premunire ver +premunizione premunizione nom +premunì premunire ver +premuore premorire ver +premura premura nom +premurandomi premurare ver +premurandosi premurare ver +premurano premurare ver +premurare premurare ver +premurarono premurare ver +premurarsi premurare ver +premurasse premurare ver +premurata premurare ver +premurati premurare ver +premurato premurare ver +premurava premurare ver +premuravano premurare ver +premure premura nom +premureranno premurare ver +premurerebbe premurare ver +premurerà premurare ver +premurerò premurare ver +premuri premurare ver +premuro premurare ver +premurosa premuroso adj +premurose premuroso adj +premurosi premuroso adj +premuroso premuroso adj +premurò premurare ver +premuta premere ver +premute premere ver +premuti premere ver +premuto premere ver +prenascere prenascere ver +prenata prenascere ver +prenatale prenatale adj +prenatali prenatale adj +prenati prenascere ver +prenda prendere ver +prendano prendere ver +prende prendere ver +prendemmo prendere ver +prendendo prendere ver +prendendoci prendere ver +prendendogli prendere ver +prendendola prendere ver +prendendole prendere ver +prendendoli prendere ver +prendendolo prendere ver +prendendomi prendere ver +prendendone prendere ver +prendendosela prendere ver +prendendosene prendere ver +prendendosi prendere ver +prendendoti prendere ver +prendendovi prendere ver +prendente prendere ver +prendenti prendere ver +prender prendere ver +prenderai prendere ver +prenderanno prendere ver +prendercela prendere ver +prenderci prendere ver +prendere prendere ver +prenderebbe prendere ver +prenderebbero prendere ver +prenderei prendere ver +prenderemmo prendere ver +prenderemo prendere ver +prenderesti prendere ver +prenderete prendere ver +prendergli prendere ver +prenderglielo prendere ver +prenderla prendere ver +prenderle prendere ver +prenderli prendere ver +prenderlo prendere ver +prendermela prendere ver +prendermene prendere ver +prendermi prendere ver +prenderne prendere ver +prendersela prendere ver +prendersele prendere ver +prenderselo prendere ver +prendersene prendere ver +prendersi prendere ver +prendertela prendere ver +prenderti prendere ver +prendervela prendere ver +prendervele prendere ver +prendervi prendere ver +prenderà prendere ver +prenderò prendere ver +prendesse prendere ver +prendessero prendere ver +prendessi prendere ver +prendessimo prendere ver +prendeste prendere ver +prendesti prendere ver +prendete prendere ver +prendeteci prendere ver +prendetela prendere ver +prendetele prendere ver +prendeteli prendere ver +prendetelo prendere ver +prendetemi prendere ver +prendetene prendere ver +prendetevela prendere ver +prendetevi prendere ver +prendeva prendere ver +prendevamo prendere ver +prendevano prendere ver +prendevi prendere ver +prendevo prendere ver +prendi prendere ver +prendiamo prendere ver +prendiamocela prendere ver +prendiamoci prendere ver +prendiamola prendere ver +prendiamole prendere ver +prendiamoli prendere ver +prendiamolo prendere ver +prendiamone prendere ver +prendiate prendere ver +prendibile prendibile adj +prendici prendere ver +prendila prendere ver +prendile prendere ver +prendili prendere ver +prendilo prendere ver +prendimi prendere ver +prendine prendere ver +prendisole prendisole adj +prenditela prendere ver +prenditi prendere ver +prenditore prenditore nom +prenditori prenditore nom +prendo prendere ver +prendono prendere ver +prenome prenome nom +prenomi prenome nom +prenota prenotare ver +prenotando prenotare ver +prenotandolo prenotare ver +prenotandosi prenotare ver +prenotano prenotare ver +prenotare prenotare ver +prenotarle prenotare ver +prenotarlo prenotare ver +prenotarmi prenotare ver +prenotarono prenotare ver +prenotarsi prenotare ver +prenotata prenotare ver +prenotate prenotare ver +prenotatevi prenotare ver +prenotati prenotare ver +prenotato prenotare ver +prenotava prenotare ver +prenotazione prenotazione nom +prenotazioni prenotazione nom +prenoterei prenotare ver +prenoterà prenotare ver +prenoti prenotare ver +prenotino prenotare ver +prenoto prenotare ver +prenotò prenotare ver +prensile prensile adj +prensili prensile adj +preoccupa preoccupare ver +preoccupai preoccupare ver +preoccupando preoccupare ver +preoccupandoci preoccupare ver +preoccupandomi preoccupare ver +preoccupandosi preoccupare ver +preoccupano preoccupare ver +preoccupante preoccupante adj +preoccupantemente preoccupantemente adv +preoccupanti preoccupante adj +preoccupar preoccupare ver +preoccuparcene preoccupare ver +preoccuparci preoccupare ver +preoccupare preoccupare ver +preoccuparla preoccupare ver +preoccuparlo preoccupare ver +preoccuparmene preoccupare ver +preoccuparmi preoccupare ver +preoccuparono preoccupare ver +preoccuparsene preoccupare ver +preoccuparsi preoccupare ver +preoccupartene preoccupare ver +preoccuparti preoccupare ver +preoccuparvi preoccupare ver +preoccupasse preoccupare ver +preoccupassero preoccupare ver +preoccupassimo preoccupare ver +preoccupata preoccupare ver +preoccupate preoccupare ver +preoccupatevi preoccupare ver +preoccupati preoccupare ver +preoccupato preoccupare ver +preoccupava preoccupare ver +preoccupavano preoccupare ver +preoccupavo preoccupare ver +preoccupazione preoccupazione nom +preoccupazioni preoccupazione nom +preoccuperanno preoccupare ver +preoccuperebbe preoccupare ver +preoccuperei preoccupare ver +preoccuperemo preoccupare ver +preoccuperà preoccupare ver +preoccuperò preoccupare ver +preoccupi preoccupare ver +preoccupiamo preoccupare ver +preoccupiamoci preoccupare ver +preoccupino preoccupare ver +preoccupo preoccupare ver +preoccupò preoccupare ver +preordinamento preordinamento nom +preordinano preordinare ver +preordinare preordinare ver +preordinata preordinare ver +preordinate preordinare ver +preordinati preordinare ver +preordinato preordinare ver +preordini preordinare ver +preordinò preordinare ver +prepara preparare ver +preparaci preparare ver +preparagli preparare ver +preparai preparare ver +preparala preparare ver +preparale preparare ver +preparalo preparare ver +preparami preparare ver +preparammo preparare ver +preparando preparare ver +preparandoci preparare ver +preparandogli preparare ver +preparandola preparare ver +preparandole preparare ver +preparandoli preparare ver +preparandolo preparare ver +preparandone preparare ver +preparandosi preparare ver +preparane preparare ver +preparano preparare ver +preparanti preparare ver +preparar preparare ver +prepararci preparare ver +preparare preparare ver +preparargli preparare ver +prepararla preparare ver +prepararle preparare ver +prepararli preparare ver +prepararlo preparare ver +prepararmi preparare ver +prepararne preparare ver +prepararono preparare ver +prepararsi preparare ver +prepararti preparare ver +prepararvi preparare ver +preparasi preparare ver +preparasse preparare ver +preparassero preparare ver +preparata preparare ver +preparate preparare ver +preparatevi preparare ver +preparati preparare ver +preparativa preparativo adj +preparative preparativo adj +preparativi preparativo nom +preparativo preparativo nom +preparato preparare ver +preparatore preparatore nom +preparatori preparatorio adj +preparatoria preparatorio adj +preparatorie preparatorio adj +preparatorio preparatorio adj +preparatrice preparatore nom +preparatrici preparatore nom +preparava preparare ver +preparavano preparare ver +preparavi preparare ver +preparavo preparare ver +preparazione preparazione nom +preparazioni preparazione nom +prepareranno preparare ver +preparerebbe preparare ver +preparerei preparare ver +prepareremo preparare ver +preparerà preparare ver +preparerò preparare ver +prepari preparare ver +prepariamo preparare ver +prepariamoci preparare ver +preparino preparare ver +preparo preparare ver +preparò preparare ver +prepensionamenti prepensionamento nom +prepensionamento prepensionamento nom +preponderante preponderante adj +preponderanti preponderante adj +preponderanza preponderanza nom +preponderanze preponderanza nom +preponderare preponderare ver +prepone preporre ver +preponendo preporre ver +preponendosi preporre ver +preponente preporre ver +prepongono preporre ver +preporre preporre ver +preporvi preporre ver +prepose preporre ver +prepositiva prepositivo adj +prepositive prepositivo adj +prepositivo prepositivo adj +preposizione preposizione nom +preposizioni preposizione nom +preposta preporre ver +preposte preporre ver +preposti preporre ver +preposto preporre ver +prepotente prepotente adj +prepotenti prepotente adj +prepotenza prepotenza nom +prepotenze prepotenza nom +prepotere prepotere nom +prepubere prepubere adj +prepuberi prepubere adj +prepubertà prepubertà nom +prepuzi prepuzio nom +prepuzio prepuzio nom +preraffaellismo preraffaellismo nom +preraffaellita preraffaellita adj +preraffaellite preraffaellita adj +preraffaelliti preraffaellita nom +prerequisiti prerequisito nom +prerequisito prerequisito nom +preriscaldamento preriscaldamento nom +prerogativa prerogativa nom +prerogative prerogativa nom +presa prendere ver +presaga presago adj +presagendo presagire ver +presagente presagire ver +presagi presagio nom +presagio presagio nom +presagire presagire ver +presagirono presagire ver +presagisce presagire ver +presagiscono presagire ver +presagisse presagire ver +presagita presagire ver +presagito presagire ver +presagiva presagire ver +presagivano presagire ver +presago presago adj +presagì presagire ver +presalario presalario nom +presbiopia presbiopia nom +presbite presbite adj +presbiterale presbiterale adj +presbiterali presbiterale adj +presbiterato presbiterato nom +presbiteri presbiterio|presbitero nom +presbiteriana presbiteriano adj +presbiteriane presbiteriano adj +presbiteriani presbiteriano adj +presbiteriano presbiteriano adj +presbiterio presbiterio nom +presbitero presbitero nom +presbiti presbite adj +presceglie prescegliere ver +prescegliere prescegliere ver +presceglierla prescegliere ver +prescelse prescegliere ver +prescelsero prescegliere ver +prescelta prescegliere ver +prescelte prescelto adj +prescelti prescelto nom +prescelto prescegliere ver +presciente presciente adj +prescienti presciente adj +prescienza prescienza nom +prescinda prescindere ver +prescindano prescindere ver +prescinde prescindere ver +prescindendo prescindere ver +prescindente prescindere ver +prescindere prescindere ver +prescinderei prescindere ver +prescinderne prescindere ver +prescindesse prescindere ver +prescindeva prescindere ver +prescindevano prescindere ver +prescindiamo prescindere ver +prescindo prescindere ver +prescindono prescindere ver +prescolare prescolare adj +prescolari prescolare adj +prescolastica prescolastico adj +prescolastiche prescolastico adj +prescolastico prescolastico adj +prescrisse prescrivere ver +prescrissero prescrivere ver +prescritta prescrivere ver +prescritte prescrivere ver +prescritti prescrivere ver +prescritto prescrivere ver +prescriva prescrivere ver +prescrivano prescrivere ver +prescrive prescrivere ver +prescrivendo prescrivere ver +prescrivente prescrivere ver +prescriventi prescrivere ver +prescriveranno prescrivere ver +prescrivere prescrivere ver +prescriverebbe prescrivere ver +prescriverebbero prescrivere ver +prescriverei prescrivere ver +prescrivergli prescrivere ver +prescriverla prescrivere ver +prescriverne prescrivere ver +prescriversi prescrivere ver +prescriverà prescrivere ver +prescriverò prescrivere ver +prescrivesse prescrivere ver +prescriveva prescrivere ver +prescrivevano prescrivere ver +prescrivibili prescrivibile adj +prescrivo prescrivere ver +prescrivono prescrivere ver +prescrizionale prescrizionale adj +prescrizionali prescrizionale adj +prescrizione prescrizione nom +prescrizioni prescrizione nom +prese preso adj +preselezionate preselezionare ver +preselezione preselezione nom +preselezioni preselezione nom +preselle presella nom +presenile presenile adj +presenili presenile adj +presenta presentare ver +presentabile presentabile adj +presentabili presentabile adj +presentaci presentare ver +presentai presentare ver +presentala presentare ver +presentale presentare ver +presentali presentare ver +presentamelo presentare ver +presentammo presentare ver +presentando presentare ver +presentandocelo presentare ver +presentandoci presentare ver +presentandogli presentare ver +presentandola presentare ver +presentandole presentare ver +presentandoli presentare ver +presentandolo presentare ver +presentandomi presentare ver +presentandone presentare ver +presentandosi presentare ver +presentandovi presentare ver +presentano presentare ver +presentante presentare ver +presentanti presentare ver +presentar presentare ver +presentarci presentare ver +presentare presentare ver +presentargli presentare ver +presentargliela presentare ver +presentarglielo presentare ver +presentarla presentare ver +presentarle presentare ver +presentarli presentare ver +presentarlo presentare ver +presentarmi presentare ver +presentarne presentare ver +presentarono presentare ver +presentarsi presentare ver +presentarti presentare ver +presentarvi presentare ver +presentasi presentare ver +presentasse presentare ver +presentassero presentare ver +presentassi presentare ver +presentasti presentare ver +presentata presentare ver +presentate presentare ver +presentateci presentare ver +presentategli presentare ver +presentatele presentare ver +presentatemi presentare ver +presentatesi presentare ver +presentati presentare ver +presentatisi presentare ver +presentato presentare ver +presentatore presentatore nom +presentatori presentatore nom +presentatrice presentatore nom +presentatrici presentatore nom +presentava presentare ver +presentavano presentare ver +presentavi presentare ver +presentavo presentare ver +presentazione presentazione nom +presentazioni presentazione nom +presente presente adj +presentendo presentire ver +presenterai presentare ver +presenteranno presentare ver +presenterebbe presentare ver +presenterebbero presentare ver +presenterei presentare ver +presenteremo presentare ver +presenterete presentare ver +presenterà presentare ver +presenterò presentare ver +presenti presente adj +presentiamo presentare ver +presentiamola presentare|presentire ver +presentii presentire ver +presentimenti presentimento nom +presentimento presentimento nom +presentino presentare ver +presentire presentire ver +presentissimo presentire ver +presentite presentire ver +presentito presentire ver +presentiva presentire ver +presento presentare|presentire ver +presentono presentire ver +presentì presentire ver +presentò presentare ver +presenza presenza nom +presenze presenza nom +presenzi presenziare ver +presenzia presenziare ver +presenziale presenziare ver +presenziando presenziare ver +presenziano presenziare ver +presenziare presenziare ver +presenziarono presenziare ver +presenziarvi presenziare ver +presenziasse presenziare ver +presenziassero presenziare ver +presenziata presenziare ver +presenziate presenziare ver +presenziati presenziare ver +presenziato presenziare ver +presenziava presenziare ver +presenziavano presenziare ver +presenzieranno presenziare ver +presenzierà presenziare ver +presenzino presenziare ver +presenzio presenziare ver +presenziò presenziare ver +presepe presepe nom +presepi presepe|presepio nom +presepio presepio nom +presero prendere ver +preserva preservare ver +preservaci preservare ver +preservala preservare ver +preservando preservare ver +preservandola preservare ver +preservandole preservare ver +preservandoli preservare ver +preservandolo preservare ver +preservandone preservare ver +preservandosi preservare ver +preservano preservare ver +preservante preservare ver +preservanti preservare ver +preservar preservare ver +preservarci preservare ver +preservare preservare ver +preservarla preservare ver +preservarle preservare ver +preservarli preservare ver +preservarlo preservare ver +preservarne preservare ver +preservarono preservare ver +preservarsi preservare ver +preservarvi preservare ver +preservasse preservare ver +preservassero preservare ver +preservata preservare ver +preservate preservare ver +preservatesi preservare ver +preservati preservare ver +preservativa preservativo adj +preservative preservativo adj +preservativi preservativo nom +preservativo preservativo nom +preservato preservare ver +preservava preservare ver +preservavano preservare ver +preservazione preservazione nom +preservazioni preservazione nom +preserverebbe preservare ver +preserverà preservare ver +preserverò preservare ver +preservi preservare ver +preserviamo preservare ver +preservino preservare ver +preservò preservare ver +presi prendere ver +preside preside nom +presidente presidente nom +presidentessa presidente|presidentessa nom +presidentesse presidente|presidentessa nom +presidenti presidente nom +presidenza presidenza nom +presidenze presidenza nom +presidenziale presidenziale adj +presidenziali presidenziale adj +presidi preside|presidio nom +presidia presidiare ver +presidiale presidiare ver +presidiali presidiare ver +presidiando presidiare ver +presidiandola presidiare ver +presidiandoli presidiare ver +presidiano presidiare ver +presidianti presidiare ver +presidiare presidiare ver +presidiarla presidiare ver +presidiarle presidiare ver +presidiarlo presidiare ver +presidiarne presidiare ver +presidiarono presidiare ver +presidiasse presidiare ver +presidiassero presidiare ver +presidiata presidiare ver +presidiate presidiare ver +presidiati presidiare ver +presidiato presidiare ver +presidiava presidiare ver +presidiavano presidiare ver +presidio presidio nom +presidium presidium nom +presidiò presidiare ver +presieda presiedere ver +presiede presiedere ver +presiedendo presiedere ver +presiedendola presiedere ver +presiedendoli presiedere ver +presiedendolo presiedere ver +presiedendone presiedere ver +presiedente presiedere ver +presiedenti presiedere ver +presiedere presiedere ver +presiederla presiedere ver +presiederle presiedere ver +presiederlo presiedere ver +presiederne presiedere ver +presiederà presiedere ver +presiedesse presiedere ver +presiedessero presiedere ver +presiedeva presiedere ver +presiedevano presiedere ver +presiedo presiedere ver +presiedono presiedere ver +presieduta presiedere ver +presiedute presiedere ver +presieduti presiedere ver +presieduto presiedere ver +preso prendere ver +pressa pressa nom +pressando pressare ver +pressandoli pressare ver +pressano pressare ver +pressante pressante adj +pressantemente pressantemente adv +pressanti pressante adj +pressappochismo pressappochismo nom +pressappochista pressappochista nom +pressappoco pressappoco adv +pressare pressare ver +pressarle pressare ver +pressarli pressare ver +pressarlo pressare ver +pressarono pressare ver +pressata pressare ver +pressate pressare ver +pressati pressare ver +pressato pressare ver +pressatore pressatore nom +pressatura pressatura nom +pressava pressare ver +pressavano pressare ver +presse pressa nom +pressi pressi nom_sup +pressiamoli pressare ver +pressing pressing nom +pressione pressione nom +pressioni pressione nom +presso presso pre +pressocché pressocché adv +pressoche pressoche sw +pressochè pressochè adv +pressoché pressoché con +pressofusione pressofusione nom +pressofusioni pressofusione nom +pressurizzando pressurizzare ver +pressurizzare pressurizzare ver +pressurizzata pressurizzare ver +pressurizzate pressurizzare ver +pressurizzati pressurizzare ver +pressurizzato pressurizzare ver +pressurizzazione pressurizzazione nom +pressurizzazioni pressurizzazione nom +pressò pressare ver +presta prestare ver +prestabilire prestabilire ver +prestabiliscono prestabilire ver +prestabilita prestabilire ver +prestabilite prestabilire ver +prestabiliti prestabilire ver +prestabilito prestabilire ver +prestaci prestare ver +prestai prestare ver +prestami prestare ver +prestando prestare ver +prestandogli prestare ver +prestandola prestare ver +prestandole prestare ver +prestandone prestare ver +prestandosi prestare ver +prestandovi prestare ver +prestane prestare ver +prestano prestare ver +prestanome prestanome nom +prestante prestante adj +prestanti prestante adj +prestanza prestanza nom +prestanze prestanza nom +prestar prestare ver +prestarci prestare ver +prestare prestare ver +prestargli prestare ver +prestargliele prestare ver +prestarglielo prestare ver +prestarla prestare ver +prestarle prestare ver +prestarli prestare ver +prestarlo prestare ver +prestarmi prestare ver +prestarne prestare ver +prestarono prestare ver +prestarsi prestare ver +prestarti prestare ver +prestarvi prestare ver +prestasse prestare ver +prestassero prestare ver +prestata prestare ver +prestatario prestatario nom +prestate prestare ver +prestategli prestare ver +prestatemi prestare ver +prestati prestare ver +prestato prestare ver +prestatore prestatore nom +prestatori prestatore nom +prestatrice prestatore nom +prestava prestare ver +prestavano prestare ver +prestazione prestazione nom +prestazioni prestazione nom +preste presto adj +presteranno prestare ver +presterebbe prestare ver +presterebbero prestare ver +presterei prestare ver +presterete prestare ver +presterà prestare ver +presterò prestare ver +prestezza prestezza nom +presti presto adj +prestiamo prestare ver +prestidigitatore prestidigitatore nom +prestidigitatori prestidigitatore nom +prestidigitazione prestidigitazione nom +prestigiatore prestigiatore nom +prestigiatori prestigiatore nom +prestigiatrice prestigiatore nom +prestigiatrici prestigiatore nom +prestigio prestigio nom +prestigiosa prestigioso adj +prestigiose prestigioso adj +prestigiosi prestigioso adj +prestigioso prestigioso adj +prestino prestare ver +prestiti prestito nom +prestito prestito nom +presto presto adv_sup +prestò prestare ver +presule presule nom +presuli presule nom +presuma presumere ver +presumano presumere ver +presume presumere ver +presumendo presumere ver +presumendola presumere ver +presumendolo presumere ver +presumendone presumere ver +presumendosi presumere ver +presumente presumere ver +presumer presumere ver +presumere presumere ver +presumerebbe presumere ver +presumerei presumere ver +presumerla presumere ver +presumerlo presumere ver +presumerne presumere ver +presumersi presumere ver +presumerò presumere ver +presumesse presumere ver +presumessi presumere ver +presumete presumere ver +presumeva presumere ver +presumevano presumere ver +presumevo presumere ver +presumi presumere ver +presumiamo presumere ver +presumiamola presumere ver +presumibile presumibile adj +presumibili presumibile adj +presumibilmente presumibilmente adv +presumo presumere ver +presumono presumere ver +presunse presumere ver +presunsero presumere ver +presunta presunto adj +presunte presumere ver +presunti presunto adj +presuntiva presuntivo adj +presuntive presuntivo adj +presuntivi presuntivo adj +presuntivo presuntivo adj +presunto presumere ver +presuntuosa presuntuoso adj +presuntuose presuntuoso adj +presuntuosi presuntuoso adj +presuntuoso presuntuoso adj +presunzione presunzione nom +presunzioni presunzione nom +presuppone presupporre ver +presupponendo presupporre ver +presupponente presupporre ver +presupponesse presupporre ver +presupponete presupporre ver +presupponeva presupporre ver +presupponevano presupporre ver +presupponevo presupporre ver +presupponga presupporre ver +presuppongano presupporre ver +presuppongo presupporre ver +presuppongono presupporre ver +presupponi presupporre ver +presupponiamo presupporre ver +presupporla presupporre ver +presupporre presupporre ver +presupporrebbe presupporre ver +presupporrebbero presupporre ver +presupporrà presupporre ver +presupporti presupporre ver +presuppose presupporre ver +presupposero presupporre ver +presupposizione presupposizione nom +presupposizioni presupposizione nom +presupposta presupporre ver +presupposte presupporre ver +presupposti presupposto nom +presupposto presupposto nom +pretattica pretattica nom +prete prete nom +pretenda pretendere ver +pretendano pretendere ver +pretende pretendere ver +pretendendo pretendere ver +pretendendone pretendere ver +pretendendosi pretendere ver +pretendente pretendente nom +pretendenti pretendente nom +pretender pretendere ver +pretenderai pretendere ver +pretenderanno pretendere ver +pretendere pretendere ver +pretenderebbe pretendere ver +pretenderebbero pretendere ver +pretenderei pretendere ver +pretenderete pretendere ver +pretenderla pretendere ver +pretenderli pretendere ver +pretenderlo pretendere ver +pretenderne pretendere ver +pretendersi pretendere ver +pretenderà pretendere ver +pretenderò pretendere ver +pretendesse pretendere ver +pretendessero pretendere ver +pretendessi pretendere ver +pretendessimo pretendere ver +pretendete pretendere ver +pretendeva pretendere ver +pretendevano pretendere ver +pretendevi pretendere ver +pretendevo pretendere ver +pretendi pretendere ver +pretendiamo pretendere ver +pretendo pretendere ver +pretendono pretendere ver +pretensione pretensione nom +pretensioni pretensione nom +pretenziosa pretenzioso adj +pretenziose pretenzioso adj +pretenziosi pretenzioso adj +pretenzioso pretenzioso adj +preterintenzionale preterintenzionale adj +preterintenzionali preterintenzionale adj +preterintenzionalità preterintenzionalità nom +preterizione preterizione nom +pretesa pretesa nom +pretese pretesa nom +pretesero pretendere ver +pretesi preteso adj +preteso pretendere ver +pretesti pretesto nom +pretesto pretesto nom +pretestuosa pretestuoso adj +pretestuosamente pretestuosamente adv +pretestuose pretestuoso adj +pretestuosi pretestuoso adj +pretestuoso pretestuoso adj +preti prete nom +pretonica pretonico adj +pretoniche pretonico adj +pretore pretore nom +pretori pretore|pretorio nom +pretoria pretorio adj +pretoriani pretoriano nom +pretoriano pretoriano nom +pretorie pretorio adj +pretorio pretorio adj +pretrattamento pretrattamento nom +pretta pretto adj +prettamente prettamente adv +prette pretto adj +pretti pretto adj +pretto pretto adj +pretura pretura nom +preture pretura nom +prevale prevalere ver +prevalendo prevalere ver +prevalente prevalente adj +prevalentemente prevalentemente adv +prevalenti prevalente adj +prevalenza prevalenza nom +prevalenze prevalenza nom +prevaler prevalere ver +prevalere prevalere ver +prevalesse prevalere ver +prevalessero prevalere ver +prevaleva prevalere ver +prevalevano prevalere ver +prevalga prevalere ver +prevalgano prevalere ver +prevalgono prevalere ver +prevalsa prevalere ver +prevalse prevalere ver +prevalsero prevalere ver +prevalsi prevalere ver +prevalso prevalere ver +prevarica prevaricare ver +prevaricando prevaricare ver +prevaricano prevaricare ver +prevaricante prevaricare ver +prevaricanti prevaricare ver +prevaricare prevaricare ver +prevaricasse prevaricare ver +prevaricata prevaricare ver +prevaricate prevaricare ver +prevaricati prevaricare ver +prevaricato prevaricare ver +prevaricatore prevaricatore adj +prevaricatori prevaricatore adj +prevaricatrice prevaricatore adj +prevaricava prevaricare ver +prevaricazione prevaricazione nom +prevaricazioni prevaricazione nom +prevaricherebbe prevaricare ver +prevarichi prevaricare ver +prevarichino prevaricare ver +prevaricò prevaricare ver +prevarranno prevalere ver +prevarrebbe prevalere ver +prevarrebbero prevalere ver +prevarrete prevalere ver +prevarrà prevalere ver +preveda prevedere ver +prevedano prevedere ver +prevede prevedere ver +prevedendo prevedere ver +prevedendola prevedere ver +prevedendone prevedere ver +prevedendosi prevedere ver +prevedente prevedere ver +prevedenti prevedere ver +prevedere prevedere ver +prevederla prevedere ver +prevederle prevedere ver +prevederli prevedere ver +prevederlo prevedere ver +prevederne prevedere ver +prevedersi prevedere ver +prevederà prevedere ver +prevedesse prevedere ver +prevedessero prevedere ver +prevedessi prevedere ver +prevedete prevedere ver +prevedeva prevedere ver +prevedevano prevedere ver +prevedevo prevedere ver +prevedi prevedere ver +prevediamo prevedere ver +prevedibile prevedibile adj +prevedibili prevedibile adj +prevedile prevedere ver +prevedo prevedere ver +prevedono prevedere ver +prevedrebbe prevedere ver +prevedrà prevedere ver +preveggente preveggente adj +preveggenti preveggente adj +preveggenza preveggenza nom +preveggenze preveggenza nom +prevendita prevendita nom +prevendite prevendita nom +prevenendo prevenire ver +prevenendola prevenire ver +prevenendole prevenire ver +prevenendolo prevenire ver +prevenendone prevenire ver +prevenga prevenire ver +prevengano prevenire ver +prevengo prevenire ver +prevengono prevenire ver +preveniamo prevenire ver +prevenir prevenire ver +prevenire prevenire ver +prevenirla prevenire ver +prevenirle prevenire ver +prevenirli prevenire ver +prevenirlo prevenire ver +prevenirne prevenire ver +prevenisse prevenire ver +prevenissero prevenire ver +preveniva prevenire ver +prevenivano prevenire ver +prevenne prevenire ver +prevennero prevenire ver +preventiva preventivo adj +preventivamente preventivamente adv +preventivando preventivare ver +preventivano preventivare ver +preventivare preventivare ver +preventivata preventivare ver +preventivate preventivare ver +preventivati preventivare ver +preventivato preventivare ver +preventivava preventivare ver +preventive preventivo adj +preventivi preventivo adj +preventivo preventivo adj +preventivò preventivare ver +preventorio preventorio nom +prevenuta prevenire ver +prevenute prevenire ver +prevenuti prevenire ver +prevenuto prevenire ver +prevenzione prevenzione nom +prevenzioni prevenzione nom +preverrebbe prevenire ver +preverrebbero prevenire ver +preverrà prevenire ver +previ previo adj +previa previo adj +previamente previamente adv +previde prevedere ver +previdente previdente adj +previdenti previdente adj +previdenza previdenza nom +previdenze previdenza nom +previdenziale previdenziale adj +previdenziali previdenziale adj +previdero prevedere ver +previdi prevedere ver +previe previo adj +previene prevenire ver +previeni prevenire ver +previo previo adj +previsionale previsionale adj +previsionali previsionale adj +previsione previsione nom +previsioni previsione nom +prevista prevedere ver +previste prevedere ver +previsti prevedere ver +previsto prevedere ver +prevosti prevosto nom +prevosto prevosto nom +preziosa prezioso adj +preziose prezioso adj +preziosi prezioso adj +preziosismi preziosismo nom +preziosismo preziosismo nom +preziosissime preziosissimo adj +preziosità preziosità nom +prezioso prezioso adj +prezzemolo prezzemolo nom +prezzi prezzo nom +prezzo prezzo nom +prezzolare prezzolare ver +prezzolata prezzolare ver +prezzolate prezzolato adj +prezzolati prezzolato adj +prezzolato prezzolare ver +pria pria adv +prigione prigione nom +prigioni prigione nom +prigionia prigionia nom +prigionie prigionia nom +prigioniera prigioniero adj +prigioniere prigioniero adj +prigionieri prigioniero nom +prigioniero prigioniero adj +prilla prillare ver +prilli prillare ver +prillo prillare ver +prima primo adj +primari primario adj +primaria primario adj +primariamente primariamente adv +primariato primariato nom +primarie primario adj +primario primario adj +primate primate nom +primati primate|primato nom +primaticce primaticcio adj +primaticci primaticcio adj +primaticcia primaticcio adj +primaticcio primaticcio adj +primatista primatista nom +primatiste primatista nom +primatisti primatista nom +primato primato nom +primavera primavera nom +primavere primavera nom +primaverile primaverile adj +primaverili primaverile adj +prime primo adj +primeggeranno primeggiare ver +primeggia primeggiare ver +primeggiando primeggiare ver +primeggiano primeggiare ver +primeggiare primeggiare ver +primeggiarono primeggiare ver +primeggiasse primeggiare ver +primeggiato primeggiare ver +primeggiava primeggiare ver +primeggiavano primeggiare ver +primeggiò primeggiare ver +primi primo adj +primiera primiera nom +primiere primiera nom +primieri primiero adj +primiero primiero nom +primigeni primigenio adj +primigenia primigenio adj +primigenie primigenio adj +primigenio primigenio adj +primipara primipara nom +primipare primipara nom +primissimo primissimo adj +primitiva primitivo adj +primitive primitivo adj +primitivi primitivo adj +primitivismo primitivismo nom +primitivo primitivo adj +primizia primizia nom +primizie primizia nom +primo primo adj_sup +primogenita primogenito adj +primogenite primogenito adj +primogeniti primogenito adj +primogenito primogenito adj +primogenitura primogenitura nom +primogeniture primogenitura nom +primordi primordio nom +primordiale primordiale adj +primordiali primordiale adj +primordio primordio nom +primula primula nom +primulacee primulacee nom +primule primula nom +princesse princesse nom +principale principale adj +principali principale adj +principalmente principalmente adv +principati principato nom +principato principato nom +principe principe adj +principesca principesco adj +principesche principesco adj +principeschi principesco adj +principesco principesco adj +principessa principe|principessa nom +principesse principe|principessa nom +principessina principessina nom +principessine principessina nom +principi principe|principio nom +principia principiare ver +principiale principiare ver +principiali principiare ver +principiando principiare ver +principiano principiare ver +principiante principiante nom +principianti principiante nom +principiar principiare ver +principiare principiare ver +principiarono principiare ver +principiata principiare ver +principiato principiare ver +principiava principiare ver +principino principiare ver +principio principio nom +principiò principiare ver +principî principio nom +princisbecco princisbecco nom +priora priora nom +priorati priorato nom +priorato priorato nom +priore priora|priore nom +priori priore nom +prioritari prioritario adj +prioritaria prioritario adj +prioritariamente prioritariamente adv +prioritarie prioritario adj +prioritario prioritario adj +priorità priorità nom +prisca prisco adj +prische prisco adj +prischi prisco adj +prisco prisco adj +prisma prisma nom +prismatica prismatico adj +prismatiche prismatico adj +prismatici prismatico adj +prismatico prismatico adj +prismi prisma nom +pristina pristino adj +pristine pristino adj +pristini pristino adj +pristino pristino adj +priva privo adj +privaci privare ver +privacy privacy nom +privando privare ver +privandoci privare ver +privandola privare ver +privandole privare ver +privandoli privare ver +privandolo privare ver +privandone privare ver +privandosi privare ver +privano privare ver +privar privare ver +privarcene privare ver +privarci privare ver +privare privare ver +privarla privare ver +privarle privare ver +privarli privare ver +privarlo privare ver +privarmene privare ver +privarmi privare ver +privarne privare ver +privarono privare ver +privarsene privare ver +privarsi privare ver +privartene privare ver +privarti privare ver +privasse privare ver +privassero privare ver +privata privato adj +privatamente privatamente adv +private privato adj +privatezza privatezza nom +privati privato adj +privatista privatista nom +privatisti privatista nom +privativa privativa nom +privative privativo adj +privativo privativo adj +privatizza privatizzare ver +privatizzando privatizzare ver +privatizzano privatizzare ver +privatizzare privatizzare ver +privatizzarle privatizzare ver +privatizzata privatizzare ver +privatizzate privatizzare ver +privatizzati privatizzare ver +privatizzato privatizzare ver +privatizzazione privatizzazione nom +privatizzazioni privatizzazione nom +privatizzerà privatizzare ver +privatizzò privatizzare ver +privato privato adj +privava privare ver +privavano privare ver +privazione privazione nom +privazioni privazione nom +prive privo adj +priveranno privare ver +priverebbe privare ver +priverebbero privare ver +priverei privare ver +priveremmo privare ver +priveremo privare ver +priverà privare ver +privi privo adj +priviamo privare ver +priviamoci privare ver +priviate privare ver +privilegeranno privilegiare ver +privilegerebbe privilegiare ver +privilegerebbero privilegiare ver +privilegerei privilegiare ver +privilegerà privilegiare ver +privilegi privilegio nom +privilegia privilegiare ver +privilegiamo privilegiare ver +privilegiando privilegiare ver +privilegiandone privilegiare ver +privilegiano privilegiare ver +privilegianti privilegiare ver +privilegiare privilegiare ver +privilegiarli privilegiare ver +privilegiarne privilegiare ver +privilegiarono privilegiare ver +privilegiasse privilegiare ver +privilegiassero privilegiare ver +privilegiata privilegiare ver +privilegiate privilegiato adj +privilegiati privilegiato adj +privilegiato privilegiato adj +privilegiava privilegiare ver +privilegiavano privilegiare ver +privilegino privilegiare ver +privilegio privilegio nom +privilegiò privilegiare ver +privo privo adj +privò privare ver +pro pro pre +proattiva proattivo adj +proava proavo nom +proavi proavo nom +proavo proavo nom +proba probo adj +probabile probabile adj_sup +probabili probabile adj +probabilismo probabilismo nom +probabilistica probabilistico adj +probabilistiche probabilistico adj +probabilistici probabilistico adj +probabilistico probabilistico adj +probabilità probabilità nom +probabilmente probabilmente adv_sup +probandi probando nom +probando probando nom +probante probante adj +probanti probante adj +probativa probativo adj +probativo probativo adj +probatori probatorio adj +probatoria probatorio adj +probatorie probatorio adj +probatorio probatorio adj +probe probo adj +probi probo adj +probità probità nom +probiviri probiviro nom +problema problema nom +problematica problematico adj +problematiche problematica nom +problematici problematico adj +problematicismo problematicismo nom +problematicità problematicità nom +problematico problematico adj +problemi problema nom +probo probo adj +proboscidati proboscidato adj +proboscidato proboscidato adj +proboscide proboscide nom +proboscidi proboscide nom +proboviro proboviro nom +procacci procacciare ver +procaccia procaccia nom +procacciando procacciare ver +procacciandosi procacciare ver +procacciano procacciare ver +procaccianti procacciare ver +procacciar procacciare ver +procacciare procacciare ver +procacciargli procacciare ver +procacciarono procacciare ver +procacciarselo procacciare ver +procacciarsi procacciare ver +procacciasi procacciare ver +procacciassero procacciare ver +procacciate procacciare ver +procacciati procacciare ver +procacciato procacciare ver +procacciatore procacciatore nom +procacciatori procacciatore nom +procacciatrice procacciatore nom +procacciava procacciare ver +procacciavano procacciare ver +procaccino procacciare ver +procaccio procacciare ver +procacciò procacciare ver +procace procace adj +procaci procace adj +procacità procacità nom +procapite procapite adj +proceda procedere ver +procedano procedere ver +procede procedere ver +procedemmo procedere ver +procedendo procedere ver +procedente procedere ver +procedenti procedere ver +proceder procedere ver +procederanno procedere ver +procedere procedere ver +procederebbe procedere ver +procederebbero procedere ver +procederei procedere ver +procederemo procedere ver +procedereste procedere ver +procedersi procedere ver +procedervi procedere ver +procederà procedere ver +procederò procedere ver +procedesse procedere ver +procedessero procedere ver +procedete procedere ver +procedette procedere ver +procedettero procedere ver +procedetti procedere ver +procedeva procedere ver +procedevano procedere ver +procedevo procedere ver +procedi procedere ver +procediamo procedere ver +procedibile procedibile adj +procedibili procedibile adj +procedimenti procedimento nom +procedimento procedimento nom +procedo procedere ver +procedono procedere ver +procedura procedura nom +procedurale procedurale adj +procedurali procedurale adj +procedure procedura nom +proceduta procedere ver +procedute procedere ver +proceduti procedere ver +proceduto procedere ver +procella procella nom +procellaria procellaria nom +procellarie procellaria nom +procelle procella nom +procellosa procelloso adj +procellose procelloso adj +procelloso procelloso adj +processa processare ver +processabile processabile adj +processabili processabile adj +processamento processamento nom +processando processare ver +processandoli processare ver +processano processare ver +processare processare ver +processarla processare ver +processarle processare ver +processarli processare ver +processarlo processare ver +processarmi processare ver +processarono processare ver +processassero processare ver +processata processare ver +processate processare ver +processatemi processare ver +processati processare ver +processato processare ver +processava processare ver +processavano processare ver +processi processo nom +processino processare ver +processionaria processionaria nom +processionarie processionaria nom +processione processione nom +processioni processione nom +processo processo nom +processuale processuale adj +processuali processuale adj +processò processare ver +procinto procinto nom +procione procione nom +procioni procione nom +proclama proclama nom +proclamaci proclamare ver +proclamando proclamare ver +proclamandola proclamare ver +proclamandolo proclamare ver +proclamandone proclamare ver +proclamandosene proclamare ver +proclamandosi proclamare ver +proclamandovi proclamare ver +proclamano proclamare ver +proclamante proclamare ver +proclamar proclamare ver +proclamare proclamare ver +proclamarla proclamare ver +proclamarle proclamare ver +proclamarlo proclamare ver +proclamarne proclamare ver +proclamarono proclamare ver +proclamarsene proclamare ver +proclamarsi proclamare ver +proclamarti proclamare ver +proclamarvi proclamare ver +proclamasse proclamare ver +proclamassero proclamare ver +proclamata proclamare ver +proclamate proclamare ver +proclamati proclamare ver +proclamato proclamare ver +proclamava proclamare ver +proclamavano proclamare ver +proclamazione proclamazione nom +proclameranno proclamare ver +proclamerebbe proclamare ver +proclamerei proclamare ver +proclamerete proclamare ver +proclamerà proclamare ver +proclami proclama nom +proclamiamo proclamare ver +proclamino proclamare ver +proclamo proclamare ver +proclamò proclamare ver +proclisi proclisi nom +proclitica proclitico adj +proclitiche proclitico adj +proclitici proclitico adj +proclitico proclitico adj +proclive proclive adj +proclivi proclive adj +procombente procombere ver +proconsolati proconsolato nom +proconsolato proconsolato nom +proconsole proconsole nom +proconsoli proconsole nom +procrastina procrastinare ver +procrastinabile procrastinabile adj +procrastinando procrastinare ver +procrastinare procrastinare ver +procrastinarla procrastinare ver +procrastinarne procrastinare ver +procrastinarono procrastinare ver +procrastinarsi procrastinare ver +procrastinata procrastinare ver +procrastinate procrastinare ver +procrastinato procrastinare ver +procrastinò procrastinare ver +procrea procreare ver +procreando procreare ver +procreano procreare ver +procreare procreare ver +procrearono procreare ver +procrearsi procreare ver +procreate procreare ver +procreati procreare ver +procreativa procreativo adj +procreato procreare ver +procreazione procreazione nom +procreò procreare ver +procura procura nom +procuragli procurare ver +procurai procurare ver +procurami procurare ver +procurando procurare ver +procurandoci procurare ver +procurandogli procurare ver +procurandole procurare ver +procurandomi procurare ver +procurandone procurare ver +procurandosi procurare ver +procurano procurare ver +procuranti procurare ver +procurar procurare ver +procurarci procurare ver +procurare procurare ver +procurargli procurare ver +procurargliela procurare ver +procurarglielo procurare ver +procurargliene procurare ver +procurarla procurare ver +procurarle procurare ver +procurarli procurare ver +procurarlo procurare ver +procurarmela procurare ver +procurarmeli procurare ver +procurarmelo procurare ver +procurarmi procurare ver +procurarne procurare ver +procurarono procurare ver +procurarsela procurare ver +procurarsele procurare ver +procurarseli procurare ver +procurarselo procurare ver +procurarsene procurare ver +procurarsi procurare ver +procurartele procurare ver +procurarti procurare ver +procurarvele procurare ver +procurarvelo procurare ver +procurarvi procurare ver +procurasi procurare ver +procurasse procurare ver +procurassero procurare ver +procurassi procurare ver +procurata procurare ver +procurate procurare ver +procurategli procurare ver +procuratela procurare ver +procuratele procurare ver +procurateli procurare ver +procuratelo procurare ver +procuratesi procurare ver +procuratevi procurare ver +procurati procurare ver +procuratia procuratia nom +procuratie procuratia nom +procurato procurare ver +procuratore procuratore nom +procuratori procuratore|procuratorio nom +procuratorio procuratorio nom +procuratrice procuratore nom +procurava procurare ver +procuravano procurare ver +procure procura nom +procureranno procurare ver +procurerebbe procurare ver +procurerebbero procurare ver +procurerei procurare ver +procurerete procurare ver +procurerà procurare ver +procurerò procurare ver +procuri procurare ver +procuriamo procurare ver +procurino procurare ver +procuro procurare ver +procurò procurare ver +proda proda nom +prode prode adj +prodezza prodezza nom +prodezze prodezza nom +prodi prode adj +prodiera prodiero adj +prodiere prodiero adj +prodieri prodiero adj +prodiero prodiero adj +prodiga prodigare ver +prodigali prodigare ver +prodigalità prodigalità nom +prodigando prodigare ver +prodigandosi prodigare ver +prodigandovi prodigare ver +prodigano prodigare ver +prodigare prodigare ver +prodigarono prodigare ver +prodigarsi prodigare ver +prodigarti prodigare ver +prodigasse prodigare ver +prodigassero prodigare ver +prodigata prodigare ver +prodigate prodigare ver +prodigati prodigare ver +prodigato prodigare ver +prodigava prodigare ver +prodigavano prodigare ver +prodighe prodigo adj +prodigheranno prodigare ver +prodigherà prodigare ver +prodigherò prodigare ver +prodighi prodigo adj +prodighino prodigare ver +prodigi prodigio nom +prodigio prodigio adj +prodigiosa prodigioso adj +prodigiose prodigioso adj +prodigiosi prodigioso adj +prodigioso prodigioso adj +prodigo prodigo adj +prodigò prodigare ver +proditori proditorio adj +proditoria proditorio adj +proditorio proditorio adj +prodotta produrre ver +prodotte produrre ver +prodotti prodotto nom +prodottisi produrre ver +prodotto produrre ver +prodromi prodromo nom +prodromo prodromo nom +produca produrre ver +producano produrre ver +produce produrre ver +producendo produrre ver +producendogli produrre ver +producendola produrre ver +producendole produrre ver +producendoli produrre ver +producendolo produrre ver +producendone produrre ver +producendosi produrre ver +producendovi produrre ver +producente produrre ver +producenti produrre ver +producesse produrre ver +producessero produrre ver +producete produrre ver +produceva produrre ver +producevano produrre ver +producevo produrre ver +produci produrre ver +produciamo produrre ver +produco produrre ver +producono produrre ver +produr produrre ver +produrci produrre ver +produrgli produrre ver +produrla produrre ver +produrle produrre ver +produrli produrre ver +produrlo produrre ver +produrmi produrre ver +produrne produrre ver +produrranno produrre ver +produrre produrre ver +produrrebbe produrre ver +produrrebbero produrre ver +produrrei produrre ver +produrremmo produrre ver +produrrà produrre ver +produrrò produrre ver +prodursi produrre ver +produrvi produrre ver +produsse produrre ver +produssero produrre ver +produssi produrre ver +produttiva produttivo adj +produttive produttivo adj +produttivi produttivo adj +produttivistica produttivistico adj +produttività produttività nom +produttivo produttivo adj +produttore produttore adj +produttori produttore nom +produttrice produttore adj +produttrici produttore adj +produzione produzione nom +produzioni produzione nom +proemi proemio nom +proemio proemio nom +profana profano adj +profanando profanare ver +profanano profanare ver +profanar profanare ver +profanare profanare ver +profanarlo profanare ver +profanarono profanare ver +profanasse profanare ver +profanata profanare ver +profanate profanare ver +profanati profanare ver +profanato profanare ver +profanava profanare ver +profanavano profanare ver +profanazione profanazione nom +profanazioni profanazione nom +profane profano adj +profanerà profanare ver +profani profano adj +profanità profanità nom +profano profano adj +profanò profanare ver +proferendo proferire ver +proferir proferire ver +proferiranno proferire ver +proferire proferire ver +proferirà proferire ver +proferisca proferire ver +proferisce proferire ver +proferisco proferire ver +proferiscono proferire ver +proferisse proferire ver +proferita proferire ver +proferite proferire ver +proferiti proferire ver +proferito proferire ver +proferiva proferire ver +proferì proferire ver +professa professo adj +professando professare ver +professandosi professare ver +professano professare ver +professante professare ver +professanti professare ver +professare professare ver +professargli professare ver +professarla professare ver +professarle professare ver +professarmi professare ver +professarne professare ver +professarono professare ver +professarsi professare ver +professasse professare ver +professassero professare ver +professata professare ver +professate professare ver +professati professare ver +professato professare ver +professava professare ver +professavano professare ver +professe professo adj +professerà professare ver +professi professo adj +professiamo professare ver +professino professare ver +professionale professionale adj +professionali professionale adj +professionalità professionalità nom +professionalizza professionalizzare ver +professionalizzante professionalizzare ver +professionalizzanti professionalizzare ver +professionalizzare professionalizzare ver +professionalizzata professionalizzare ver +professionalizzate professionalizzare ver +professionalizzati professionalizzare ver +professionalizzato professionalizzare ver +professionalizzazione professionalizzazione nom +professionalmente professionalmente adv +professione professione nom +professioni professione nom +professionismo professionismo nom +professionista professionista nom +professioniste professionista nom +professionisti professionista nom +professo professo adj +professor professor nom +professorale professorale adj +professorali professorale adj +professorato professorato nom +professore professore nom +professoressa professore nom +professoresse professore nom +professori professore nom +professorini professorino nom +professorino professorino nom +professorone professorone nom +professoroni professorone nom +professò professare ver +profeta profeta nom +profetando profetare ver +profetano profetare ver +profetare profetare ver +profetato profetare ver +profetava profetare ver +profetavano profetare ver +profetessa profetessa nom +profetesse profetessa nom +profeti profeta nom +profetica profetico adj +profetiche profetico adj +profetici profetico adj +profetico profetico adj +profetino profetare ver +profetizza profetizzare ver +profetizzando profetizzare ver +profetizzandogli profetizzare ver +profetizzano profetizzare ver +profetizzare profetizzare ver +profetizzarono profetizzare ver +profetizzata profetizzare ver +profetizzate profetizzare ver +profetizzati profetizzare ver +profetizzato profetizzare ver +profetizzava profetizzare ver +profetizzavano profetizzare ver +profetizzeranno profetizzare ver +profetizzo profetizzare ver +profetizzò profetizzare ver +profeto profetare ver +profetò profetare ver +profezia profezia nom +profezie profezia nom +profferendo profferire ver +profferire profferire ver +profferisce profferire ver +profferita profferire ver +profferite profferire ver +profferiti profferire ver +profferito profferire ver +profferta profferta nom +profferte profferta nom +profferì profferire ver +proficua proficuo adj +proficuamente proficuamente adv +proficue proficuo adj +proficui proficuo adj +proficuità proficuità nom +proficuo proficuo adj +profila profilare ver +profilando profilare ver +profilandosi profilare ver +profilano profilare ver +profilare profilare ver +profilarono profilare ver +profilarsi profilare ver +profilasse profilare ver +profilassi profilassi nom +profilata profilare ver +profilate profilato adj +profilati profilato nom +profilato profilare ver +profilattica profilattico adj +profilattiche profilattico adj +profilattici profilattico adj +profilattico profilattico adj +profilatura profilatura nom +profilature profilatura nom +profilava profilare ver +profilavano profilare ver +profilerebbe profilare ver +profilerà profilare ver +profili profilo nom +profilino profilare ver +profilo profilo nom +profilò profilare ver +profiterole profiterole nom +profitta profittare ver +profittabilità profittabilità nom +profittando profittare ver +profittare profittare ver +profittarne profittare ver +profittarono profittare ver +profittato profittare ver +profittatore profittatore nom +profittatori profittatore nom +profittatrice profittatore nom +profittava profittare ver +profittevole profittevole adj +profittevoli profittevole adj +profitti profitto nom +profittino profittare ver +profitto profitto nom +profittò profittare ver +profluvio profluvio nom +profonda profondo adj +profondamente profondamente adv +profondata profondare ver +profondava profondare ver +profonde profondo adj +profondendo profondere ver +profondendosi profondere ver +profondendovi profondere ver +profondere profondere ver +profondersi profondere ver +profondeva profondere ver +profondi profondo adj +profondimetri profondimetro nom +profondimetro profondimetro nom +profondità profondità nom +profondo profondo adj +profondono profondere ver +proforma proforma nom +profuga profugo adj +profughe profugo adj +profughi profugo nom +profugo profugo nom +profuma profumare ver +profumando profumare ver +profumano profumare ver +profumare profumare ver +profumarsi profumare ver +profumasse profumare ver +profumata profumato adj +profumatamente profumatamente adv +profumate profumato adj +profumati profumare ver +profumato profumare ver +profumava profumare ver +profumavano profumare ver +profumeria profumeria nom +profumerie profumeria nom +profumi profumo nom +profumiera profumiero adj +profumiere profumiero adj +profumieri profumiero adj +profumiero profumiero adj +profumino profumare ver +profumo profumo nom +profumò profumare ver +profusa profondere ver +profuse profuso adj +profusero profondere ver +profusi profuso adj +profusione profusione nom +profusioni profusione nom +profuso profondere ver +progenie progenie nom +progenitore progenitore nom +progenitori progenitore nom +progenitrice progenitore nom +progenitrici progenitore nom +progesterone progesterone nom +progetta progettare ver +progettando progettare ver +progettandone progettare ver +progettano progettare ver +progettante progettare ver +progettarci progettare ver +progettare progettare ver +progettargli progettare ver +progettarla progettare ver +progettarle progettare ver +progettarli progettare ver +progettarlo progettare ver +progettarne progettare ver +progettarono progettare ver +progettarsi progettare ver +progettarvi progettare ver +progettasse progettare ver +progettassero progettare ver +progettata progettare ver +progettate progettare ver +progettati progettare ver +progettato progettare ver +progettava progettare ver +progettavano progettare ver +progettavo progettare ver +progettazione progettazione nom +progettazioni progettazione nom +progetteranno progettare ver +progetterà progettare ver +progetti progetto nom +progettiamo progettare ver +progettino progettare ver +progettista progettista nom +progettisti progettista nom +progettistica progettistica nom +progetto progetto nom +progettuale progettuale adj +progettuali progettuale adj +progettò progettare ver +proglottide proglottide nom +proglottidi proglottide nom +prognata prognato adj +prognatismo prognatismo nom +prognato prognato adj +prognosi prognosi nom +prognostica prognostico adj +prognostiche prognostico adj +prognostici prognostico adj +prognostico prognostico adj +programma programma nom +programmando programmare ver +programmandola programmare ver +programmandolo programmare ver +programmandone programmare ver +programmano programmare ver +programmante programmare ver +programmare programmare ver +programmarla programmare ver +programmarle programmare ver +programmarli programmare ver +programmarlo programmare ver +programmarne programmare ver +programmarono programmare ver +programmarsi programmare ver +programmasse programmare ver +programmata programmare ver +programmate programmare ver +programmati programmare ver +programmatica programmatico adj +programmaticamente programmaticamente adv +programmatiche programmatico adj +programmatici programmatico adj +programmatico programmatico adj +programmato programmare ver +programmatore programmatore nom +programmatori programmatore nom +programmatrice programmatore nom +programmatrici programmatore nom +programmava programmare ver +programmavano programmare ver +programmavo programmare ver +programmazione programmazione nom +programmazioni programmazione nom +programmerà programmare ver +programmi programma nom +programmiamo programmare ver +programmino programmare ver +programmista programmista nom +programmisti programmista nom +programmo programmare ver +programmò programmare ver +progredendo progredire ver +progredente progredire ver +progredire progredire ver +progredirebbe progredire ver +progredirono progredire ver +progredirà progredire ver +progredisca progredire ver +progrediscano progredire ver +progredisce progredire ver +progrediscono progredire ver +progredisse progredire ver +progredissero progredire ver +progredita progredire ver +progredite progredito adj +progrediti progredire ver +progredito progredire ver +progrediva progredire ver +progredivano progredire ver +progredì progredire ver +progressi progresso nom +progressione progressione nom +progressioni progressione nom +progressismo progressismo nom +progressista progressista nom +progressiste progressista nom +progressisti progressista nom +progressiva progressivo adj +progressivamente progressivamente adv +progressive progressivo adj +progressivi progressivo adj +progressività progressività nom +progressivo progressivo adj +progresso progresso nom +proibendo proibire ver +proibendogli proibire ver +proibendole proibire ver +proibendolo proibire ver +proibendone proibire ver +proibiamo proibire ver +proibir proibire ver +proibire proibire ver +proibirebbe proibire ver +proibirei proibire ver +proibirgli proibire ver +proibirglielo proibire ver +proibirla proibire ver +proibirle proibire ver +proibirli proibire ver +proibirlo proibire ver +proibirne proibire ver +proibirono proibire ver +proibirà proibire ver +proibisca proibire ver +proibiscano proibire ver +proibisce proibire ver +proibisci proibire ver +proibisco proibire ver +proibiscono proibire ver +proibisse proibire ver +proibissero proibire ver +proibita proibire ver +proibite proibito adj +proibiti proibire ver +proibitiva proibitivo adj +proibitive proibitivo adj +proibitivi proibitivo adj +proibitivo proibitivo adj +proibito proibire ver +proibiva proibire ver +proibivano proibire ver +proibizione proibizione nom +proibizioni proibizione nom +proibizionismo proibizionismo nom +proibizionista proibizionista nom +proibizioniste proibizionista nom +proibizionisti proibizionista nom +proibizionistica proibizionistico adj +proibizionistiche proibizionistico adj +proibì proibire ver +proietta proiettare ver +proiettando proiettare ver +proiettandoci proiettare ver +proiettandola proiettare ver +proiettandole proiettare ver +proiettandoli proiettare ver +proiettandolo proiettare ver +proiettandone proiettare ver +proiettandosi proiettare ver +proiettano proiettare ver +proiettante proiettare ver +proiettanti proiettare ver +proiettarci proiettare ver +proiettare proiettare ver +proiettarla proiettare ver +proiettarle proiettare ver +proiettarli proiettare ver +proiettarlo proiettare ver +proiettarne proiettare ver +proiettarono proiettare ver +proiettarsi proiettare ver +proiettasse proiettare ver +proiettata proiettare ver +proiettate proiettare ver +proiettati proiettare ver +proiettato proiettare ver +proiettava proiettare ver +proiettavano proiettare ver +proietteranno proiettare ver +proietterebbe proiettare ver +proietterà proiettare ver +proietti proietto nom +proiettiamo proiettare ver +proiettile proiettile nom +proiettili proiettile nom +proiettino proiettare ver +proiettiva proiettivo adj +proiettive proiettivo adj +proiettivi proiettivo adj +proiettivo proiettivo adj +proietto proietto nom +proiettore proiettore nom +proiettori proiettore nom +proiettò proiettare ver +proiezione proiezione nom +proiezioni proiezione nom +prolassi prolasso nom +prolasso prolasso nom +prole prole nom +prolegomeni prolegomeni nom +prolessi prolessi nom +proletari proletario adj +proletaria proletario adj +proletariato proletariato nom +proletarie proletario adj +proletario proletario adj +proletarizzate proletarizzare ver +proli prole nom +prolifera prolifero adj +proliferaci proliferare ver +proliferando proliferare ver +proliferano proliferare ver +proliferante proliferare ver +proliferanti proliferare ver +proliferare proliferare ver +proliferarono proliferare ver +proliferarsi proliferare ver +proliferassero proliferare ver +proliferata proliferare ver +proliferate proliferare ver +proliferati proliferare ver +proliferato proliferare ver +proliferava proliferare ver +proliferavano proliferare ver +proliferazione proliferazione nom +proliferazioni proliferazione nom +prolifereranno proliferare ver +proliferi prolifero adj +proliferino proliferare ver +prolifero prolifero adj +proliferò proliferare ver +prolifica prolifico adj +prolificano prolificare ver +prolificare prolificare ver +prolificato prolificare ver +prolifiche prolifico adj +prolifichi prolificare ver +prolifichino prolificare ver +prolifici prolifico adj +prolificità prolificità nom +prolifico prolifico adj +prolificò prolificare ver +prolissa prolisso adj +prolisse prolisso adj +prolissi prolisso adj +prolissità prolissità nom +prolisso prolisso adj +prologhi prologo nom +prologo prologo nom +prolunga prolungare ver +prolungabile prolungabile adj +prolungabili prolungabile adj +prolungamenti prolungamento nom +prolungamento prolungamento nom +prolungando prolungare ver +prolungandola prolungare ver +prolungandole prolungare ver +prolungandolo prolungare ver +prolungandone prolungare ver +prolungandosi prolungare ver +prolungano prolungare ver +prolungare prolungare ver +prolungargli prolungare ver +prolungarla prolungare ver +prolungarle prolungare ver +prolungarli prolungare ver +prolungarlo prolungare ver +prolungarne prolungare ver +prolungarono prolungare ver +prolungarsi prolungare ver +prolungasse prolungare ver +prolungassero prolungare ver +prolungata prolungare ver +prolungate prolungato adj +prolungati prolungato adj +prolungato prolungare ver +prolungava prolungare ver +prolungavano prolungare ver +prolungheranno prolungare ver +prolungherebbe prolungare ver +prolungherei prolungare ver +prolungherà prolungare ver +prolunghi prolungare ver +prolunghiamo prolungare ver +prolunghino prolungare ver +prolungo prolungare ver +prolungò prolungare ver +prolusione prolusione nom +prolusioni prolusione nom +promemoria promemoria nom +promessa promessa|promesso nom +promesse promessa|promesso nom +promessi promesso adj +promesso promettere ver_sup +prometeo prometeo nom +prometta promettere ver +promettano promettere ver +promette promettere ver +promettendo promettere ver +promettendogli promettere ver +promettendola promettere ver +promettendole promettere ver +promettendoli promettere ver +promettendomi promettere ver +promettendone promettere ver +promettendosi promettere ver +promettente promettente adj +promettenti promettente adj +prometter promettere ver +prometteranno promettere ver +promettere promettere ver +prometterebbe promettere ver +promettergli promettere ver +prometterla promettere ver +prometterle promettere ver +prometterli promettere ver +prometterlo promettere ver +promettermi promettere ver +promettersi promettere ver +prometterti promettere ver +promettervi promettere ver +prometterà promettere ver +promettesse promettere ver +promettessero promettere ver +promettessi promettere ver +promettete promettere ver +promettetemi promettere ver +prometteva promettere ver +promettevano promettere ver +prometti promettere ver +promettiamo promettere ver +promettilo promettere ver +promettimi promettere ver +prometto promettere ver +promettono promettere ver +promezio promezio nom +prominente prominente adj +prominenti prominente adj +prominenza prominenza nom +prominenze prominenza nom +promiscua promiscuo adj +promiscue promiscuo adj +promiscui promiscuo adj +promiscuità promiscuità nom +promiscuo promiscuo adj +promise promettere ver +promisero promettere ver +promisi promettere ver +promontori promontorio nom +promontorio promontorio nom +promossa promuovere ver +promosse promosso nom +promossero promuovere ver +promossi promosso adj +promosso promuovere ver +promotion promotion nom +promotore promotore adj +promotori promotore nom +promotrice promotore adj +promotrici promotore adj +promovente promuovere ver +promozionale promozionale adj +promozionali promozionale adj +promozione promozione nom +promozioni promozione nom +promulga promulgare ver +promulgando promulgare ver +promulgandone promulgare ver +promulgano promulgare ver +promulgante promulgare ver +promulgare promulgare ver +promulgarla promulgare ver +promulgarle promulgare ver +promulgarlo promulgare ver +promulgarono promulgare ver +promulgasse promulgare ver +promulgata promulgare ver +promulgate promulgare ver +promulgati promulgare ver +promulgato promulgare ver +promulgatore promulgatore nom +promulgatori promulgatore nom +promulgatrice promulgatore nom +promulgava promulgare ver +promulgavano promulgare ver +promulgazione promulgazione nom +promulgazioni promulgazione nom +promulgherà promulgare ver +promulghi promulgare ver +promulghiamo promulgare ver +promulghino promulgare ver +promulgo promulgare ver +promulgò promulgare ver +promuova promuovere ver +promuovano promuovere ver +promuove promuovere ver +promuovendo promuovere ver +promuovendola promuovere ver +promuovendole promuovere ver +promuovendolo promuovere ver +promuovendone promuovere ver +promuovendosi promuovere ver +promuover promuovere ver +promuoveranno promuovere ver +promuovere promuovere ver +promuoverebbe promuovere ver +promuoverebbero promuovere ver +promuoverei promuovere ver +promuoverla promuovere ver +promuoverle promuovere ver +promuoverli promuovere ver +promuoverlo promuovere ver +promuovermi promuovere ver +promuoverne promuovere ver +promuoversi promuovere ver +promuovervi promuovere ver +promuoverà promuovere ver +promuovesse promuovere ver +promuovessero promuovere ver +promuoveva promuovere ver +promuovevano promuovere ver +promuovi promuovere ver +promuoviamo promuovere ver +promuovibili promuovibile adj +promuovo promuovere ver +promuovono promuovere ver +prona prono adj +pronai pronao nom +pronao pronao nom +pronazione pronazione nom +prone prono adj +proni prono adj +pronipote pronipote nom +pronipoti pronipote nom +prono prono adj +pronome pronome nom +pronomi pronome nom +pronominale pronominale adj +pronominali pronominale adj +pronostica pronosticare ver +pronosticando pronosticare ver +pronosticandogli pronosticare ver +pronosticano pronosticare ver +pronosticar pronosticare ver +pronosticare pronosticare ver +pronosticarne pronosticare ver +pronosticarono pronosticare ver +pronosticasse pronosticare ver +pronosticata pronosticare ver +pronosticate pronosticare ver +pronosticati pronosticare ver +pronosticato pronosticare ver +pronosticava pronosticare ver +pronosticavano pronosticare ver +pronostici pronostico nom +pronostico pronostico nom +pronosticò pronosticare ver +pronta pronto adj +prontamente prontamente adv +pronte pronto adj +prontezza prontezza nom +pronti pronto adj +pronto pronto adj +prontuari prontuario nom +prontuario prontuario nom +pronuba pronubo nom +pronubi pronubo nom +pronubo pronubo nom +pronunce pronuncia nom +pronunceranno pronunciare ver +pronuncerebbe pronunciare ver +pronuncerebbero pronunciare ver +pronunceresti pronunciare ver +pronuncerà pronunciare ver +pronuncerò pronunciare ver +pronunci pronunciare ver +pronuncia pronuncia nom +pronunciabile pronunciabile adj +pronunciabili pronunciabile adj +pronunciaci pronunciare ver +pronunciai pronunciare ver +pronunciamenti pronunciamento nom +pronunciamento pronunciamento nom +pronunciamiento pronunciamiento nom +pronunciamo pronunciare ver +pronunciando pronunciare ver +pronunciandogli pronunciare ver +pronunciandola pronunciare ver +pronunciandole pronunciare ver +pronunciandoli pronunciare ver +pronunciandolo pronunciare ver +pronunciandone pronunciare ver +pronunciandosi pronunciare ver +pronunciandovi pronunciare ver +pronunciano pronunciare ver +pronunciante pronunciare ver +pronunciar pronunciare ver +pronunciarci pronunciare ver +pronunciare pronunciare ver +pronunciarla pronunciare ver +pronunciarle pronunciare ver +pronunciarli pronunciare ver +pronunciarlo pronunciare ver +pronunciarmi pronunciare ver +pronunciarne pronunciare ver +pronunciarono pronunciare ver +pronunciarsi pronunciare ver +pronunciarti pronunciare ver +pronunciarvi pronunciare ver +pronunciasse pronunciare ver +pronunciassero pronunciare ver +pronunciassimo pronunciare ver +pronunciata pronunciare ver +pronunciate pronunciare ver +pronunciatevi pronunciare ver +pronunciati pronunciare ver +pronunciato pronunciare ver +pronunciava pronunciare ver +pronunciavano pronunciare ver +pronunciavo pronunciare ver +pronuncino pronunciare ver +pronuncio pronunciare ver +pronunciò pronunciare ver +pronunzia pronunzia nom +pronunziamo pronunziare ver +pronunziando pronunziare ver +pronunziano pronunziare ver +pronunziar pronunziare ver +pronunziare pronunziare ver +pronunziarsi pronunziare ver +pronunziasse pronunziare ver +pronunziata pronunziare ver +pronunziate pronunziare ver +pronunziati pronunziare ver +pronunziato pronunziare ver +pronunziava pronunziare ver +pronunzie pronunzia nom +pronunzierai pronunziare ver +pronunzio pronunziare ver +pronunziò pronunziare ver +propaga propagare ver +propagabile propagabile adj +propagaci propagare ver +propaganda propaganda nom +propagandando propagandare ver +propagandandone propagandare ver +propagandano propagandare ver +propagandare propagandare ver +propagandarla propagandare ver +propagandarlo propagandare ver +propagandarne propagandare ver +propagandarono propagandare ver +propagandarsi propagandare ver +propagandata propagandare ver +propagandate propagandare ver +propagandati propagandare ver +propagandato propagandare ver +propagandava propagandare ver +propagandavano propagandare ver +propagande propaganda nom +propagandiamo propagandare ver +propagandista propagandista nom +propagandiste propagandista nom +propagandisti propagandista nom +propagandistica propagandistico adj +propagandistiche propagandistico adj +propagandistici propagandistico adj +propagandistico propagandistico adj +propagando propagare ver +propagandola propagare ver +propagandosi propagare ver +propagandò propagandare ver +propagano propagare ver +propagante propagare ver +propagare propagare ver +propagarla propagare ver +propagarli propagare ver +propagarne propagare ver +propagarono propagare ver +propagarsi propagare ver +propagasse propagare ver +propagassero propagare ver +propagata propagare ver +propagate propagare ver +propagatesi propagare ver +propagati propagare ver +propagato propagare ver +propagatore propagatore nom +propagatori propagatore nom +propagatrice propagatore adj +propagava propagare ver +propagavano propagare ver +propagazione propagazione nom +propagazioni propagazione nom +propagginazione propagginazione nom +propaggine propaggine nom +propaggini propaggine nom +propagheranno propagare ver +propagherebbe propagare ver +propagherebbero propagare ver +propagherà propagare ver +propaghi propagare ver +propaghino propagare ver +propago propagare ver +propagò propagare ver +propala propalare ver +propalano propalare ver +propalare propalare ver +propalata propalare ver +propalate propalare ver +propalatori propalatore nom +propali propalare ver +propani propano nom +propano propano nom +proparossitona proparossitono adj +proparossitoni proparossitono adj +proparossitono proparossitono adj +propedeutica propedeutico adj +propedeutiche propedeutico adj +propedeutici propedeutico adj +propedeutico propedeutico adj +propellente propellente nom +propellenti propellente nom +propenda propendere ver +propendano propendere ver +propende propendere ver +propendendo propendere ver +propendente propendere ver +propenderanno propendere ver +propendere propendere ver +propenderebbe propendere ver +propenderebbero propendere ver +propenderei propendere ver +propenderà propendere ver +propenderò propendere ver +propendesse propendere ver +propendete propendere ver +propendeva propendere ver +propendevano propendere ver +propendevo propendere ver +propendi propendere ver +propendiamo propendere ver +propendo propendere ver +propendono propendere ver +propensa propenso adj +propense propenso adj +propensi propenso adj +propensione propensione nom +propensioni propensione nom +propenso propenso adj +properispomena properispomeno adj +properispomeni properispomeno adj +propilei propileo nom +propilene propilene nom +propileo propileo nom +propina propinare ver +propinando propinare ver +propinandoci propinare ver +propinano propinare ver +propinarci propinare ver +propinare propinare ver +propinata propinare ver +propinate propinare ver +propinati propinare ver +propinato propinare ver +propinavano propinare ver +propinerò propinare ver +propini propinare ver +propino propinare ver +propinqua propinquo adj +propinque propinquo adj +propinqui propinquo adj +propinquo propinquo adj +propizi propizio adj +propizia propizio adj +propiziando propiziare ver +propiziano propiziare ver +propiziare propiziare ver +propiziarne propiziare ver +propiziarono propiziare ver +propiziarsi propiziare ver +propiziasse propiziare ver +propiziassero propiziare ver +propiziata propiziare ver +propiziate propiziare ver +propiziati propiziare ver +propiziato propiziare ver +propiziatore propiziatore adj +propiziatori propiziatore|propiziatorio adj +propiziatoria propiziatorio adj +propiziatorie propiziatorio adj +propiziatorio propiziatorio adj +propiziatrice propiziatore adj +propiziatrici propiziatore adj +propiziava propiziare ver +propiziavano propiziare ver +propiziazione propiziazione nom +propizie propizio adj +propizio propizio adj +propiziò propiziare ver +propone proporre ver +proponendo proporre ver +proponendoci proporre ver +proponendogli proporre ver +proponendola proporre ver +proponendole proporre ver +proponendoli proporre ver +proponendolo proporre ver +proponendomi proporre ver +proponendone proporre ver +proponendosi proporre ver +proponendoti proporre ver +proponendovi proporre ver +proponente proponente nom +proponenti proponente nom +proponesse proporre ver +proponessero proporre ver +proponessi proporre ver +proponessimo proporre ver +proponete proporre ver +proponetela proporre ver +proponetele proporre ver +proponetelo proporre ver +proponetene proporre ver +proponeva proporre ver +proponevamo proporre ver +proponevano proporre ver +proponevi proporre ver +proponevo proporre ver +proponga proporre ver +propongano proporre ver +propongo proporre ver +propongono proporre ver +proponi proporre ver +proponiamo proporre ver +proponiamola proporre ver +proponiamole proporre ver +proponiamone proporre ver +proponiate proporre ver +proponibile proponibile adj +proponibili proponibile adj +proponila proporre ver +proponile proporre ver +proponili proporre ver +proponilo proporre ver +proponimenti proponimento nom +proponimento proponimento nom +proponimi proporre ver +proponine proporre ver +proponiti proporre ver +propor proporre ver +proporci proporre ver +proporgli proporre ver +proporgliela proporre ver +proporglielo proporre ver +proporla proporre ver +proporle proporre ver +proporli proporre ver +proporlo proporre ver +propormi proporre ver +proporne proporre ver +proporrai proporre ver +proporranno proporre ver +proporre proporre ver +proporrebbe proporre ver +proporrebbero proporre ver +proporrei proporre ver +proporremo proporre ver +proporreste proporre ver +proporresti proporre ver +proporrete proporre ver +proporrà proporre ver +proporrò proporre ver +proporsi proporre ver +proporti proporre ver +proporvi proporre ver +proporziona proporzionare ver +proporzionale proporzionale adj +proporzionali proporzionale adj +proporzionalità proporzionalità nom +proporzionalmente proporzionalmente adv +proporzionando proporzionare ver +proporzionare proporzionare ver +proporzionata proporzionare ver +proporzionate proporzionare ver +proporzionati proporzionare ver +proporzionato proporzionare ver +proporzione proporzione nom +proporzioni proporzione nom +propose proporre ver +proposero proporre ver +proposi proporre ver +propositi proposito nom +propositiva propositivo adj +propositive propositivo adj +propositivi propositivo adj +propositivo propositivo adj +proposito proposito nom +proposizione proposizione nom +proposizioni proposizione nom +proposta proposta nom +proposte proposta nom +proposti proporre ver +proposto proporre ver +propretore propretore nom +propretori propretore nom +propri proprio adj +propria proprio adj +propriamente propriamente adv +proprie proprio adj +proprietari proprietario nom +proprietaria proprietario adj +proprietarie proprietario adj +proprietario proprietario nom +proprietà proprietà nom +proprio proprio adv +propugna propugnare ver +propugnando propugnare ver +propugnandone propugnare ver +propugnano propugnare ver +propugnante propugnare ver +propugnare propugnare ver +propugnarla propugnare ver +propugnarono propugnare ver +propugnarsi propugnare ver +propugnasse propugnare ver +propugnassero propugnare ver +propugnata propugnare ver +propugnate propugnare ver +propugnati propugnare ver +propugnato propugnare ver +propugnatore propugnatore nom +propugnatori propugnatore nom +propugnatrice propugnatore nom +propugnava propugnare ver +propugnavano propugnare ver +propugni propugnare ver +propugno propugnare ver +propugnò propugnare ver +propulsione propulsione nom +propulsioni propulsione nom +propulsiva propulsivo adj +propulsive propulsivo adj +propulsivi propulsivo adj +propulsivo propulsivo adj +propulsore propulsore nom +propulsori propulsore nom +prora prora nom +proravia proravia nom +prore prora nom +proroga proroga nom +prorogabile prorogabile adj +prorogabili prorogabile adj +prorogando prorogare ver +prorogano prorogare ver +prorogare prorogare ver +prorogarla prorogare ver +prorogarne prorogare ver +prorogarsi prorogare ver +prorogata prorogare ver +prorogate prorogare ver +prorogati prorogare ver +prorogato prorogare ver +prorogava prorogare ver +proroghe proroga nom +proroghiamo prorogare ver +prorogo prorogare ver +prorogò prorogare ver +prorompe prorompere ver +prorompendo prorompere ver +prorompente prorompente adj +prorompenti prorompente adj +prorompere prorompere ver +prorompono prorompere ver +proruppe prorompere ver +proruppero prorompere ver +prosa prosa nom +prosaica prosaico adj +prosaiche prosaico adj +prosaici prosaico adj +prosaicità prosaicità nom +prosaico prosaico adj +prosapia prosapia nom +prosapie prosapia nom +prosastica prosastico adj +prosastiche prosastico adj +prosastici prosastico adj +prosastico prosastico adj +prosatore prosatore nom +prosatori prosatore nom +prosatrice prosatore nom +proscenio proscenio nom +proscimmia proscimmia nom +proscimmie proscimmia nom +proscioglie prosciogliere ver +prosciogliendoli prosciogliere ver +prosciogliere prosciogliere ver +proscioglierlo prosciogliere ver +proscioglierà prosciogliere ver +proscioglieva prosciogliere ver +proscioglimenti proscioglimento nom +proscioglimento proscioglimento nom +prosciolgono prosciogliere ver +prosciolse prosciogliere ver +prosciolta prosciogliere ver +prosciolte prosciogliere ver +prosciolti prosciogliere ver +prosciolto prosciogliere ver +prosciuga prosciugare ver +prosciugamenti prosciugamento nom +prosciugamento prosciugamento nom +prosciugando prosciugare ver +prosciugandogli prosciugare ver +prosciugandola prosciugare ver +prosciugandolo prosciugare ver +prosciugandosi prosciugare ver +prosciugano prosciugare ver +prosciugare prosciugare ver +prosciugargli prosciugare ver +prosciugarla prosciugare ver +prosciugarlo prosciugare ver +prosciugarono prosciugare ver +prosciugarsi prosciugare ver +prosciugasse prosciugare ver +prosciugata prosciugare ver +prosciugate prosciugare ver +prosciugati prosciugare ver +prosciugato prosciugare ver +prosciugava prosciugare ver +prosciugavano prosciugare ver +prosciugò prosciugare ver +prosciutti prosciutto nom +prosciutto prosciutto nom +proscrisse proscrivere ver +proscritta proscrivere ver +proscritte proscrivere ver +proscritti proscritto nom +proscritto proscrivere ver +proscrive proscrivere ver +proscrivere proscrivere ver +proscrizione proscrizione nom +proscrizioni proscrizione nom +prose prosa nom +prosecuzione prosecuzione nom +prosecuzioni prosecuzione nom +prosegua proseguire ver +proseguano proseguire ver +prosegue proseguire ver +proseguendo proseguire ver +proseguendola proseguire ver +proseguendoli proseguire ver +proseguendolo proseguire ver +proseguendone proseguire ver +proseguente proseguire ver +proseguenti proseguire ver +prosegui proseguire ver +proseguiamo proseguire ver +proseguii proseguire ver +proseguimenti proseguimento nom +proseguimento proseguimento nom +proseguimmo proseguire ver +proseguir proseguire ver +proseguirai proseguire ver +proseguiranno proseguire ver +proseguire proseguire ver +proseguirebbe proseguire ver +proseguirebbero proseguire ver +proseguirei proseguire ver +proseguiremo proseguire ver +proseguirla proseguire ver +proseguirli proseguire ver +proseguirlo proseguire ver +proseguirne proseguire ver +proseguirono proseguire ver +proseguirsi proseguire ver +proseguirvi proseguire ver +proseguirà proseguire ver +proseguirò proseguire ver +proseguisse proseguire ver +proseguissero proseguire ver +proseguissimo proseguire ver +proseguita proseguire ver +proseguite proseguire ver +proseguiti proseguire ver +proseguito proseguire ver +proseguiva proseguire ver +proseguivano proseguire ver +proseguo proseguire ver +proseguono proseguire ver +proseguì proseguire ver +proselita proselito nom +proseliti proselito nom +proselitismi proselitismo nom +proselitismo proselitismo nom +proselito proselito nom +prosieguo prosieguo nom +prosit prosit int +prosodia prosodia nom +prosodica prosodico adj +prosodiche prosodico adj +prosodici prosodico adj +prosodico prosodico adj +prosodie prosodia nom +prosopopea prosopopea nom +prosopopee prosopopea nom +prospera prospero adj +prosperando prosperare ver +prosperano prosperare ver +prosperante prosperare ver +prosperare prosperare ver +prosperarono prosperare ver +prosperasse prosperare ver +prosperassero prosperare ver +prosperata prosperare ver +prosperati prosperare ver +prosperato prosperare ver +prosperava prosperare ver +prosperavano prosperare ver +prospere prospero adj +prospereranno prosperare ver +prospererà prosperare ver +prosperi prospero adj +prosperino prosperare ver +prosperità prosperità nom +prospero prospero adj +prosperosa prosperoso adj +prosperose prosperoso adj +prosperosi prosperoso adj +prosperoso prosperoso adj +prosperò prosperare ver +prospetta prospettare ver +prospettando prospettare ver +prospettandogli prospettare ver +prospettandole prospettare ver +prospettandosi prospettare ver +prospettano prospettare ver +prospettante prospettare ver +prospettanti prospettare ver +prospettare prospettare ver +prospettargli prospettare ver +prospettarla prospettare ver +prospettarle prospettare ver +prospettarono prospettare ver +prospettarsi prospettare ver +prospettarvi prospettare ver +prospettasse prospettare ver +prospettassero prospettare ver +prospettata prospettare ver +prospettate prospettare ver +prospettati prospettare ver +prospettato prospettare ver +prospettava prospettare ver +prospettavano prospettare ver +prospetterebbe prospettare ver +prospetterà prospettare ver +prospetti prospetto nom +prospettica prospettico adj +prospettiche prospettico adj +prospettici prospettico adj +prospettico prospettico adj +prospettino prospettare ver +prospettiva prospettiva nom +prospettive prospettiva nom +prospettivi prospettivo adj +prospettivo prospettivo adj +prospetto prospetto nom +prospettore prospettore nom +prospettori prospettore nom +prospettò prospettare ver +prospezione prospezione nom +prospezioni prospezione nom +prospiciente prospiciente adj +prospicienti prospiciente adj +prosseneta prosseneta nom +prosseneti prosseneta nom +prossima prossimo adj +prossimale prossimale adj +prossimali prossimale adj +prossimamente prossimamente adv +prossime prossimo adj +prossimi prossimo adj +prossimità prossimità nom +prossimo prossimo adj +prostata prostata nom +prostate prostata nom +prostatectomia prostatectomia nom +prostatectomie prostatectomia nom +prostatica prostatico adj +prostatiche prostatico adj +prostatici prostatico adj +prostatico prostatico adj +prostatite prostatite nom +prostatiti prostatite nom +prosterna prosternare ver +prosternale prosternare ver +prosternandosi prosternare ver +prosternano prosternare ver +prosternarsi prosternare ver +prosternasse prosternare ver +prosternate prosternare ver +prosternati prosternare ver +prosternato prosternare ver +prosternava prosternare ver +prosterneranno prosternare ver +prosterno prosternare ver +prostesi prostesi nom +prostilo prostilo nom +prostituendo prostituire ver +prostituendosi prostituire ver +prostituire prostituire ver +prostituirsi prostituire ver +prostituisca prostituire ver +prostituisce prostituire ver +prostituisci prostituire ver +prostituiscono prostituire ver +prostituita prostituire ver +prostituite prostituire ver +prostituiti prostituire ver +prostituito prostituire ver +prostituiva prostituire ver +prostituivano prostituire ver +prostituta prostituta nom +prostitute prostituta nom +prostituzione prostituzione nom +prostituzioni prostituzione nom +prostituì prostituire ver +prostra prostrare ver +prostrando prostrare ver +prostrandosi prostrare ver +prostrano prostrare ver +prostrante prostrare ver +prostrare prostrare ver +prostrarlo prostrare ver +prostrarmi prostrare ver +prostrarono prostrare ver +prostrarsi prostrare ver +prostrasse prostrare ver +prostrassero prostrare ver +prostrata prostrare ver +prostrate prostrare ver +prostratevi prostrare ver +prostrati prostrare ver +prostrato prostrare ver +prostrava prostrare ver +prostravano prostrare ver +prostrazione prostrazione nom +prostrazioni prostrazione nom +prostrerai prostrare ver +prostreranno prostrare ver +prostri prostrare ver +prostriamo prostrare ver +prostrino prostrare ver +prostro prostrare ver +prostrò prostrare ver +protagonismi protagonismo nom +protagonismo protagonismo nom +protagonista protagonista nom +protagoniste protagonista nom +protagonisti protagonista nom +protagonistico protagonistico adj +protasi protasi nom +protegga proteggere ver +proteggano proteggere ver +protegge proteggere ver +proteggendo proteggere ver +proteggendoci proteggere ver +proteggendola proteggere ver +proteggendole proteggere ver +proteggendoli proteggere ver +proteggendolo proteggere ver +proteggendone proteggere ver +proteggendosi proteggere ver +proteggendoti proteggere ver +proteggente proteggere ver +proteggenti proteggere ver +protegger proteggere ver +proteggerai proteggere ver +proteggeranno proteggere ver +proteggerci proteggere ver +proteggere proteggere ver +proteggerebbe proteggere ver +proteggerei proteggere ver +proteggeremo proteggere ver +proteggerete proteggere ver +proteggergli proteggere ver +proteggerla proteggere ver +proteggerle proteggere ver +proteggerli proteggere ver +proteggerlo proteggere ver +proteggermi proteggere ver +proteggerne proteggere ver +proteggersi proteggere ver +proteggerti proteggere ver +proteggervi proteggere ver +proteggerà proteggere ver +proteggerò proteggere ver +proteggesse proteggere ver +proteggessero proteggere ver +proteggete proteggere ver +proteggetela proteggere ver +proteggetele proteggere ver +proteggeva proteggere ver +proteggevano proteggere ver +proteggevo proteggere ver +proteggi proteggere ver +proteggiamo proteggere ver +proteggiate proteggere ver +proteggici proteggere ver +proteggilo proteggere ver +proteggimi proteggere ver +proteggiti proteggere ver +proteggo proteggere ver +proteggono proteggere ver +protei proteo nom +proteica proteico adj +proteiche proteico adj +proteici proteico adj +proteico proteico adj +proteiforme proteiforme adj +proteiformi proteiforme adj +proteina proteina nom +proteine proteina nom +proteinica proteinico adj +proteiniche proteinico adj +protendano protendere ver +protende protendere ver +protendendo protendere ver +protendendosi protendere ver +protendente protendere ver +protendenti protendere ver +protendere protendere ver +protenderei protendere ver +protendersi protendere ver +protendeva protendere ver +protendevano protendere ver +protendono protendere ver +proteo proteo nom +proterva protervo adj +proterve protervo adj +protervi protervo adj +protervia protervia nom +protervo protervo adj +protesa protendere ver +protese protendere ver +protesero protendere ver +protesi protesi nom +proteso protendere ver +protesse proteggere ver +protessero proteggere ver +protessi proteggere ver +protesta protesta nom +protestai protestare ver +protestammo protestare ver +protestando protestare ver +protestano protestare ver +protestante protestante adj +protestantesimi protestantesimo nom +protestantesimo protestantesimo nom +protestanti protestante adj +protestar protestare ver +protestare protestare ver +protestarono protestare ver +protestasse protestare ver +protestassero protestare ver +protestata protestare ver +protestatari protestatario adj +protestataria protestatario adj +protestatarie protestatario adj +protestatario protestatario adj +protestate protestare ver +protestati protestare ver +protestato protestare ver +protestava protestare ver +protestavano protestare ver +protestavate protestare ver +protestavo protestare ver +proteste protesta nom +protesteranno protestare ver +protesterebbe protestare ver +protesterei protestare ver +protesterà protestare ver +protesterò protestare ver +protesti protesto nom +protestiamo protestare ver +protestino protestare ver +protesto protesto nom +protestò protestare ver +protetta proteggere ver +protette proteggere ver +protetti proteggere ver +protettiva protettivo adj +protettive protettivo adj +protettivi protettivo adj +protettivo protettivo adj +protetto proteggere ver +protettorati protettorato nom +protettorato protettorato nom +protettore protettore adj +protettori protettore adj +protettrice protettore adj +protettrici protettore adj +protezione protezione nom +protezioni protezione nom +protezionismi protezionismo nom +protezionismo protezionismo nom +protezionista protezionista adj +protezioniste protezionista adj +protezionisti protezionista nom +protezionistica protezionistico adj +protezionistiche protezionistico adj +protezionistici protezionistico adj +protezionistico protezionistico adj +proti proto nom +protidi protide nom +protiri protiro nom +protiro protiro nom +proto proto nom +protoattinio protoattinio nom +protocolla protocollare ver +protocollare protocollare adj +protocollari protocollare adj +protocollata protocollare ver +protocollate protocollare ver +protocollati protocollare ver +protocollato protocollare ver +protocolli protocollo nom +protocollista protocollista nom +protocollo protocollo nom +protome protome nom +protomedici protomedico nom +protomedico protomedico nom +protomi protome nom +protomoteca protomoteca nom +protone protone nom +protoni protone nom +protonica protonico adj +protoniche protonico adj +protonici protonico adj +protonico protonico adj +protonotari protonotario nom +protonotario protonotario nom +protoplasma protoplasma nom +protoplasmatica protoplasmatico adj +protoplasmatiche protoplasmatico adj +protoplasmatici protoplasmatico adj +protoplasmatico protoplasmatico adj +protoplasmi protoplasma nom +protorace protorace nom +protoromantico protoromantico adj +protosincrotrone protosincrotrone nom +protossido protossido nom +prototipa prototipo adj +prototipi prototipo nom +prototipo prototipo nom +protottero protottero nom +protozoi protozoo nom +protozoica protozoico adj +protozoiche protozoico adj +protozoo protozoo nom +protrae protrarre ver +protraendo protrarre ver +protraendosi protrarre ver +protraesse protrarre ver +protraessero protrarre ver +protraeva protrarre ver +protraevano protrarre ver +protragga protrarre ver +protraggano protrarre ver +protraggono protrarre ver +protrarlo protrarre ver +protrarranno protrarre ver +protrarre protrarre ver +protrarrebbe protrarre ver +protrarrà protrarre ver +protrarsi protrarre ver +protrasse protrarre ver +protrassero protrarre ver +protratta protrarre ver +protratte protrarre ver +protratti protrarre ver +protrattile protrattile adj +protrattili protrattile adj +protratto protrarre ver +protrattosi protrarre ver +protrazione protrazione nom +protrude protrudere ver +protrudente protrudere ver +protrudenti protrudere ver +protrudere protrudere ver +protrudi protrudere ver +protrudono protrudere ver +protrusa protrudere ver +protruse protrudere ver +protrusi protrudere ver +protrusione protrusione nom +protrusioni protrusione nom +protruso protrudere ver +protuberanza protuberanza nom +protuberanze protuberanza nom +protutore protutore nom +prova prova nom +provaci provare ver +provai provare ver +provala provare ver +provale provare ver +provalo provare ver +provami provare ver +provammo provare ver +provando provare ver +provandoci provare ver +provandola provare ver +provandole provare ver +provandoli provare ver +provandolo provare ver +provandone provare ver +provandosi provare ver +provane provare ver +provano provare ver +provante provare ver +provanti provare ver +provar provare ver_sup +provarci provare ver +provare provare ver +provargli provare ver +provarla provare ver +provarle provare ver +provarli provare ver +provarlo provare ver +provarmi provare ver +provarne provare ver +provarono provare ver +provarsi provare ver +provartelo provare ver +provarti provare ver +provarvelo provare ver +provarvi provare ver +provasi provare ver +provasse provare ver +provassero provare ver +provassi provare ver +provassimo provare ver +provaste provare ver +provata provare ver +provate provare ver +provateci provare ver +provatelo provare ver +provatevi provare ver +provati provare ver +provato provare ver +provava provare ver +provavamo provare ver +provavano provare ver +provavi provare ver +provavo provare ver +prove prova nom +provenendo provenire ver +provenga provenire ver +provengano provenire ver +provengo provenire ver +provengono provenire ver +proveniamo provenire ver +proveniate provenire ver +proveniente proveniente adj +provenienti proveniente adj +provenienza provenienza nom +provenienze provenienza nom +provenire provenire ver +provenisse provenire ver +provenissero provenire ver +proveniva provenire ver +provenivamo provenire ver +provenivano provenire ver +provenne provenire ver +provennero provenire ver +proventi provento nom +provento provento nom +provenuta provenire ver +provenute provenire ver +provenuti provenire ver +provenuto provenire ver +provenzale provenzale adj +provenzali provenzale adj +proverai provare ver +proveranno provare ver +proverbi proverbio nom +proverbiale proverbiale adj +proverbiali proverbiale adj +proverbio proverbio nom +proverebbe provare ver +proverebbero provare ver +proverei provare ver +proveremmo provare ver +proveremo provare ver +proverranno provenire ver +proverrebbe provenire ver +proverrebbero provenire ver +proverrà provenire ver +proverà provare ver +proverò provare ver +provetta provetta nom +provette provetto adj +provetti provetto adj +provetto provetto adj +provi provare ver +proviamo provare ver +proviamoci provare ver +proviamola provare ver +proviamolo provare ver +proviamone provare ver +proviate provare ver +proviene provenire ver +provieni provenire ver +province provincia nom +provincia provincia nom +provinciale provinciale adj +provinciali provinciale adj +provincialismi provincialismo nom +provincialismo provincialismo nom +provincializzata provincializzare ver +provincializzate provincializzare ver +provincie provincia nom +provini provino nom +provino provino nom +provo provare ver +provoca provocare ver +provocalo provocare ver +provocando provocare ver +provocandogli provocare ver +provocandola provocare ver +provocandole provocare ver +provocandoli provocare ver +provocandolo provocare ver +provocandone provocare ver +provocandosi provocare ver +provocandovi provocare ver +provocano provocare ver +provocante provocante adj +provocanti provocante adj +provocar provocare ver +provocarci provocare ver +provocare provocare ver +provocargli provocare ver +provocarla provocare ver +provocarle provocare ver +provocarli provocare ver +provocarlo provocare ver +provocarmi provocare ver +provocarne provocare ver +provocarono provocare ver +provocarsi provocare ver +provocarti provocare ver +provocarvi provocare ver +provocasse provocare ver +provocassero provocare ver +provocata provocare ver +provocate provocare ver +provocategli provocare ver +provocatele provocare ver +provocati provocare ver +provocativa provocativo adj +provocative provocativo adj +provocativi provocativo adj +provocativo provocativo adj +provocato provocare ver +provocatore provocatore adj +provocatori provocatore|provocatorio adj +provocatoria provocatorio adj +provocatorie provocatorio adj +provocatorio provocatorio adj +provocatrice provocatore adj +provocatrici provocatore adj +provocava provocare ver +provocavano provocare ver +provocazione provocazione nom +provocazioni provocazione nom +provocheranno provocare ver +provocherebbe provocare ver +provocherebbero provocare ver +provocherete provocare ver +provocherà provocare ver +provocherò provocare ver +provochi provocare ver +provochiamo provocare ver +provochino provocare ver +provoco provocare ver +provocò provocare ver +provola provola nom +provole provola nom +provolone provolone nom +provoloni provolone nom +provveda provvedere ver +provvedano provvedere ver +provvede provvedere ver +provvedendo provvedere ver +provvedendoli provvedere ver +provvedendosi provvedere ver +provveder provvedere ver +provvederanno provvedere ver +provvedere provvedere ver +provvederebbe provvedere ver +provvederebbero provvedere ver +provvederei provvedere ver +provvederemo provvedere ver +provvederla provvedere ver +provvederlo provvedere ver +provvederne provvedere ver +provvedersi provvedere ver +provvedervi provvedere ver +provvederà provvedere ver +provvederò provvedere ver +provvedesse provvedere ver +provvedessero provvedere ver +provvedessi provvedere ver +provvedete provvedere ver +provvedeva provvedere ver +provvedevano provvedere ver +provvedevo provvedere ver +provvedi provvedere ver +provvediamo provvedere ver +provvedimenti provvedimento nom +provvedimento provvedimento nom +provveditorati provveditorato nom +provveditorato provveditorato nom +provveditore provveditore nom +provveditori provveditore nom +provvedo provvedere ver +provvedono provvedere ver +provveduta provveduto adj +provvedute provveduto adj +provveduti provveduto adj +provveduto provveduto adj +provvida provvido adj +provvide provvedere ver +provvidenza provvidenza nom +provvidenze provvidenza nom +provvidenziale provvidenziale adj +provvidenziali provvidenziale adj +provvidero provvedere ver +provvidi provvido adj +provvido provvido adj +provvigione provvigione nom +provvigioni provvigione nom +provvisori provvisorio adj +provvisoria provvisorio adj +provvisoriamente provvisoriamente adv +provvisorie provvisorio adj +provvisorietà provvisorietà nom +provvisorio provvisorio adj +provvista provvedere ver +provviste provvista nom +provvisti provvedere ver +provvisto provvedere ver +provò provare ver +prozia prozio nom +prozie prozio nom +prozio prozio nom +prua prua nom +pruda prudere ver +prude prudere ver +prudente prudente adj +prudentemente prudentemente adv +prudenti prudente adj +prudenza prudenza nom +prudenze prudenza nom +prudenziale prudenziale adj +prudenziali prudenziale adj +pruder prudere ver +prudere prudere ver +pruderie pruderie nom +prudono prudere ver +prue prua nom +prugna prugna nom +prugne prugna nom +prugni prugno nom +prugno prugno nom +prugnola prugnola nom +prugnole prugnola nom +pruina pruina nom +pruine pruina nom +prunai prunaio nom +pruneti pruneto nom +pruneto pruneto nom +pruni pruno nom +pruno pruno nom +prurigine prurigine nom +prurigini prurigine nom +pruriti prurito nom +prurito prurito nom +prussiche prussico adj +prussico prussico adj +ps ps sw +pseudoacacia pseudoacacia nom +pseudomorfosi pseudomorfosi nom +pseudonima pseudonimo adj +pseudonime pseudonimo adj +pseudonimi pseudonimo nom +pseudonimo pseudonimo nom +pseudopo pseudopo nom +pseudopodi pseudopodio nom +pseudopodio pseudopodio nom +psicanalisi psicanalisi nom +psicanalista psicanalista nom +psicanalisti psicanalista nom +psicanalitica psicanalitico adj +psicanalitiche psicanalitico adj +psicanalitici psicanalitico adj +psicanalitico psicanalitico adj +psicanalizzare psicanalizzare ver +psicanalizzati psicanalizzare ver +psicastenia psicastenia nom +psiche psiche nom +psichedelica psichedelico adj +psichedeliche psichedelico adj +psichedelici psichedelico adj +psichedelico psichedelico adj +psichi psiche nom +psichiatra psichiatra nom +psichiatri psichiatra nom +psichiatria psichiatria nom +psichiatrica psichiatrico adj +psichiatriche psichiatrico adj +psichiatrici psichiatrico adj +psichiatrico psichiatrico adj +psichiatrie psichiatria nom +psichica psichico adj +psichiche psichico adj +psichici psichico adj +psichico psichico adj +psicoanalisi psicoanalisi nom +psicoastenia psicoastenia nom +psicodiagnostica psicodiagnostica nom +psicodiagnostiche psicodiagnostica nom +psicodramma psicodramma nom +psicodrammi psicodramma nom +psicofarmaci psicofarmaco nom +psicofarmaco psicofarmaco nom +psicofisica psicofisico adj +psicofisiche psicofisico adj +psicofisici psicofisico adj +psicofisico psicofisico adj +psicogenesi psicogenesi nom +psicologa psicologo nom +psicologhe psicologo nom +psicologi psicologo nom +psicologia psicologia nom +psicologica psicologico adj +psicologicamente psicologicamente adv +psicologiche psicologico adj +psicologici psicologico adj +psicologico psicologico adj +psicologie psicologia nom +psicologismo psicologismo nom +psicologo psicologo nom +psicometria psicometria nom +psicomotori psicomotorio adj +psicomotoria psicomotorio adj +psicomotorie psicomotorio adj +psicomotorio psicomotorio adj +psicomotricità psicomotricità nom +psiconevrosi psiconevrosi nom +psicopatia psicopatia nom +psicopatica psicopatico adj +psicopatiche psicopatico adj +psicopatici psicopatico nom +psicopatico psicopatico adj +psicopatie psicopatia nom +psicopatologia psicopatologia nom +psicopatologie psicopatologia nom +psicopatologo psicopatologo nom +psicopedagogia psicopedagogia nom +psicopedagogie psicopedagogia nom +psicosi psicosi nom +psicosociale psicosociale adj +psicosociali psicosociale adj +psicosomatica psicosomatico adj +psicosomatiche psicosomatico adj +psicosomatici psicosomatico adj +psicosomatico psicosomatico adj +psicotecnica psicotecnica|psicotecnico nom +psicotecnico psicotecnico adj +psicoterapeuta psicoterapeuta nom +psicoterapeuti psicoterapeuta nom +psicoterapeutica psicoterapeutico adj +psicoterapeutiche psicoterapeutico adj +psicoterapeutici psicoterapeutico adj +psicoterapeutico psicoterapeutico adj +psicoterapia psicoterapia nom +psicoterapica psicoterapico adj +psicoterapiche psicoterapico adj +psicoterapici psicoterapico adj +psicoterapico psicoterapico adj +psicoterapie psicoterapia nom +psicoterapista psicoterapista nom +psicoterapisti psicoterapista nom +psicotica psicotico adj +psicotiche psicotico adj +psicotici psicotico adj +psicotico psicotico adj +psicotropa psicotropo adj +psicotrope psicotropo adj +psicotropi psicotropo adj +psicotropo psicotropo adj +psicrometri psicrometro nom +psicrometro psicrometro nom +psittacosi psittacosi nom +psoriasi psoriasi nom +pss pss int +pteridofita pteridofita nom +pteridofite pteridofita nom +pterigoti pterigoti nom +pterosauri pterosauro nom +pterosauro pterosauro nom +ptialina ptialina nom +ptialismo ptialismo nom +ptomaina ptomaina nom +ptomaine ptomaina nom +ptosi ptosi nom +pu pu sw +puah puah int +pubalgia pubalgia nom +pubblica pubblico adj +pubblicabile pubblicabile adj +pubblicabili pubblicabile adj +pubblicai pubblicare ver +pubblicala pubblicare ver +pubblicalo pubblicare ver +pubblicamene pubblicare ver +pubblicamente pubblicamente adv +pubblicando pubblicare ver +pubblicandola pubblicare ver +pubblicandole pubblicare ver +pubblicandoli pubblicare ver +pubblicandolo pubblicare ver +pubblicandone pubblicare ver +pubblicandovi pubblicare ver +pubblicani pubblicano nom +pubblicano pubblicare ver +pubblicante pubblicare ver +pubblicanti pubblicare ver +pubblicarci pubblicare ver +pubblicare pubblicare ver +pubblicargli pubblicare ver +pubblicarla pubblicare ver +pubblicarle pubblicare ver +pubblicarli pubblicare ver +pubblicarlo pubblicare ver +pubblicarne pubblicare ver +pubblicarono pubblicare ver +pubblicarsi pubblicare ver +pubblicarvi pubblicare ver +pubblicasse pubblicare ver +pubblicassero pubblicare ver +pubblicassi pubblicare ver +pubblicassimo pubblicare ver +pubblicata pubblicare ver +pubblicate pubblicare ver +pubblicatelo pubblicare ver +pubblicati pubblicare ver +pubblicato pubblicare ver +pubblicava pubblicare ver +pubblicavamo pubblicare ver +pubblicavano pubblicare ver +pubblicavo pubblicare ver +pubblicazione pubblicazione nom +pubblicazioni pubblicazione nom +pubbliche pubblico adj +pubblicherai pubblicare ver +pubblicheranno pubblicare ver +pubblicherebbe pubblicare ver +pubblicherebbero pubblicare ver +pubblicherei pubblicare ver +pubblicheremo pubblicare ver +pubblicherete pubblicare ver +pubblicherà pubblicare ver +pubblicherò pubblicare ver +pubblichi pubblicare ver +pubblichiamo pubblicare ver +pubblichino pubblicare ver +pubblici pubblico adj +pubblicismo pubblicismo nom +pubblicista pubblicista nom +pubbliciste pubblicista nom +pubblicisti pubblicista nom +pubblicistica pubblicistico adj +pubblicistiche pubblicistico adj +pubblicistici pubblicistico adj +pubblicistico pubblicistico adj +pubblicitari pubblicitario adj +pubblicitaria pubblicitario adj +pubblicitarie pubblicitario adj +pubblicitario pubblicitario adj +pubblicità pubblicità nom +pubblicizza pubblicizzare ver +pubblicizzando pubblicizzare ver +pubblicizzandola pubblicizzare ver +pubblicizzandole pubblicizzare ver +pubblicizzandolo pubblicizzare ver +pubblicizzandone pubblicizzare ver +pubblicizzano pubblicizzare ver +pubblicizzante pubblicizzare ver +pubblicizzanti pubblicizzare ver +pubblicizzare pubblicizzare ver +pubblicizzarla pubblicizzare ver +pubblicizzarle pubblicizzare ver +pubblicizzarli pubblicizzare ver +pubblicizzarlo pubblicizzare ver +pubblicizzarne pubblicizzare ver +pubblicizzarono pubblicizzare ver +pubblicizzarsi pubblicizzare ver +pubblicizzasse pubblicizzare ver +pubblicizzassero pubblicizzare ver +pubblicizzata pubblicizzare ver +pubblicizzate pubblicizzare ver +pubblicizzatela pubblicizzare ver +pubblicizzati pubblicizzare ver +pubblicizzato pubblicizzare ver +pubblicizzava pubblicizzare ver +pubblicizzavano pubblicizzare ver +pubblicizzazione pubblicizzazione nom +pubblicizzerà pubblicizzare ver +pubblicizzi pubblicizzare ver +pubblicizziamo pubblicizzare ver +pubblicizzino pubblicizzare ver +pubblicizzo pubblicizzare ver +pubblicizzò pubblicizzare ver +pubblico pubblico nom +pubblicò pubblicare ver +pube pube nom +puberale puberale adj +puberali puberale adj +pubere pubere adj +puberi pubere adj +pubertà pubertà nom +pubescente pubescente adj +pubescenti pubescente adj +pubi pube nom +pubica pubico adj +pubiche pubico adj +pubici pubico adj +pubico pubico adj +pudding pudding nom +puddinga puddinga nom +puddinghe puddinga nom +pudende pudende nom +pudibonda pudibondo adj +pudibondi pudibondo adj +pudibondo pudibondo adj +pudica pudico adj +pudiche pudico adj +pudici pudico adj +pudicizia pudicizia nom +pudico pudico adj +pudore pudore nom +pudori pudore nom +pueblo pueblo nom +puericoltura puericoltura nom +puericultrice puericultrice nom +puericultura puericultura nom +puerile puerile adj +puerili puerile adj +puerilità puerilità nom +puerizia puerizia nom +puerpera puerpera nom +puerperale puerperale adj +puerperali puerperale adj +puerpere puerpera nom +puerperio puerperio nom +pugilati pugilato nom +pugilato pugilato nom +pugilatore pugilatore nom +pugilatori pugilatore nom +pugile pugile nom +pugili pugile nom +pugilistica pugilistico adj +pugilistiche pugilistico adj +pugilistici pugilistico adj +pugilistico pugilistico adj +pugliese pugliese adj +pugliesi pugliese adj +pugna pugna nom +pugnace pugnace adj +pugnaci pugnace adj +pugnala pugnalare ver +pugnalando pugnalare ver +pugnalandogli pugnalare ver +pugnalandola pugnalare ver +pugnalandolo pugnalare ver +pugnalandosi pugnalare ver +pugnalano pugnalare ver +pugnalante pugnalare ver +pugnalare pugnalare ver +pugnalarla pugnalare ver +pugnalarli pugnalare ver +pugnalarlo pugnalare ver +pugnalarono pugnalare ver +pugnalarsi pugnalare ver +pugnalata pugnalata nom +pugnalate pugnalata nom +pugnalati pugnalare ver +pugnalato pugnalare ver +pugnalatore pugnalatore nom +pugnalatori pugnalatore nom +pugnalatrice pugnalatore nom +pugnalava pugnalare ver +pugnalavano pugnalare ver +pugnale pugnale nom +pugnalerà pugnalare ver +pugnali pugnale nom +pugnalò pugnalare ver +pugnando pugnare ver +pugnane pugnare ver +pugnano pugnare ver +pugnanti pugnare ver +pugnar pugnare ver +pugnare pugnare ver +pugnarono pugnare ver +pugnasti pugnare ver +pugnata pugnare ver +pugnato pugnare ver +pugnava pugnare ver +pugne pugna nom +pugni pugno nom +pugnitopo pugnitopo nom +pugno pugno nom +puh puh int +pula pula nom +pulce pulce nom +pulcella pulcella nom +pulci pulce nom +pulcianella pulcianella nom +pulcinella pulcinella nom +pulcini pulcino nom +pulcino pulcino nom +pulcioso pulcioso adj +pule pula nom +puledra puledro nom +puledre puledro nom +puledri puledro nom +puledro puledro nom +pulegge puleggia nom +puleggia puleggia nom +pulendo pulire ver +pulendola pulire ver +pulendole pulire ver +pulendolo pulire ver +pulendone pulire ver +pulendosi pulire ver +pulente pulire ver +pulenti pulire ver +puliamo pulire ver +pulica pulica nom +pulimento pulimentare ver +pulir pulire ver +puliranno pulire ver +pulire pulire ver +pulirei pulire ver +pulirgli pulire ver +pulirla pulire ver +pulirle pulire ver +pulirli pulire ver +pulirlo pulire ver +pulirmi pulire ver +pulirne pulire ver +pulirono pulire ver +pulirsi pulire ver +pulirti pulire ver +pulirà pulire ver +pulisca pulire ver +puliscano pulire ver +pulisce pulire ver +pulisci pulire ver +pulisciti pulire ver +pulisco pulire ver +puliscono pulire ver +pulisse pulire ver +pulissero pulire ver +pulissi pulire ver +pulita pulito adj +pulite pulito adj +pulitezza pulitezza nom +puliti pulire ver +pulito pulire ver +pulitore pulitore nom +pulitori pulitore nom +pulitrice pulitore|pulitrice nom +pulitrici pulitore|pulitrice nom +pulitura pulitura nom +puliture pulitura nom +puliva pulire ver +pulivano pulire ver +pulizia pulizia nom +pulizie pulizia nom +pullman pullman nom +pullover pullover nom +pullula pullulare ver +pullulano pullulare ver +pullulante pullulare ver +pullulanti pullulare ver +pullulare pullulare ver +pullulava pullulare ver +pullulavano pullulare ver +pullulò pullulare ver +pulmini pulmino nom +pulmino pulmino nom +pulpite pulpite nom +pulpiti pulpite|pulpito nom +pulpito pulpito nom +pulsa pulsare ver +pulsaci pulsare ver +pulsano pulsare ver +pulsante pulsante nom +pulsanti pulsante nom +pulsantiera pulsantiera nom +pulsantiere pulsantiera nom +pulsar pulsar nom +pulsare pulsare ver +pulsata pulsare ver +pulsate pulsare ver +pulsati pulsare ver +pulsato pulsare ver +pulsava pulsare ver +pulsavano pulsare ver +pulsazione pulsazione nom +pulsazioni pulsazione nom +pulsi pulsare ver +pulsione pulsione nom +pulsioni pulsione nom +pulso pulsare ver +pulsoreattore pulsoreattore nom +pulsoreattori pulsoreattore nom +pulvinare pulvinare nom +pulvini pulvino nom +pulvino pulvino nom +pulviscolare pulviscolare adj +pulviscolari pulviscolare adj +pulviscoli pulviscolo nom +pulviscolo pulviscolo nom +pulzella pulzella nom +pulzelle pulzella nom +pulì pulire ver +puma puma nom +punch punch nom +punchingball punchingball nom +punendo punire ver +punendola punire ver +punendoli punire ver +punendolo punire ver +punendosi punire ver +punenti punire ver +punga pungere ver +pungano pungere ver +punge pungere ver +pungendo pungere ver +pungendolo pungere ver +pungendosi pungere ver +pungente pungente adj +pungenti pungente adj +pungerai pungere ver +pungeranno pungere ver +pungere pungere ver +pungerla pungere ver +pungerlo pungere ver +pungersi pungere ver +pungerà pungere ver +pungesse pungere ver +pungesti pungere ver +pungeva pungere ver +pungevano pungere ver +pungi pungere ver +pungiglione pungiglione nom +pungiglioni pungiglione nom +pungilo pungere ver +pungiti pungere ver +pungitopi pungitopo nom +pungitopo pungitopo nom +pungo pungere ver +pungola pungolare ver +pungolando pungolare ver +pungolare pungolare ver +pungolata pungolare ver +pungolati pungolare ver +pungolato pungolare ver +pungoli pungolo nom +pungolo pungolo nom +pungono pungere ver +puniamo punire ver +punibile punibile adj +punibili punibile adj +punibilità punibilità nom +punir punire ver +puniranno punire ver +punire punire ver +punirebbe punire ver +punirei punire ver +punirla punire ver +punirle punire ver +punirli punire ver +punirlo punire ver +punirmi punire ver +punirne punire ver +punirono punire ver +punirsi punire ver +punirti punire ver +punirà punire ver +punirò punire ver +punisca punire ver +puniscano punire ver +punisce punire ver +punisci punire ver +puniscilo punire ver +puniscimi punire ver +punisco punire ver +puniscono punire ver +punisse punire ver +punissero punire ver +punita punire ver +punite punire ver +punitelo punire ver +puniti punire ver +punitiva punitivo adj +punitive punitivo adj +punitivi punitivo adj +punitivo punitivo adj +punito punire ver +punitore punitore nom +punitori punitore nom +punitrice punitore adj +puniva punire ver +punivano punire ver +punizione punizione nom +punizioni punizione nom +punk punk adj +punse pungere ver +punsero pungere ver +punta punta nom +puntale puntale nom +puntali puntale nom +puntamenti puntamento nom +puntamento puntamento nom +puntando puntare ver +puntandogli puntare ver +puntandogliela puntare ver +puntandola puntare ver +puntandole puntare ver +puntandoli puntare ver +puntandolo puntare ver +puntandosi puntare ver +puntano puntare ver +puntante puntare ver +puntanti puntare ver +puntar puntare ver +puntarci puntare ver +puntare puntare ver +puntargli puntare ver +puntarla puntare ver +puntarle puntare ver +puntarli puntare ver +puntarlo puntare ver +puntarono puntare ver +puntarsi puntare ver +puntarvi puntare ver +puntasecca puntasecca nom +puntaspilli puntaspilli nom +puntasse puntare ver +puntassero puntare ver +puntassimo puntare ver +puntata puntata nom +puntate puntata nom +puntatemi puntare ver +puntati puntato adj +puntato puntare ver +puntatore puntatore nom +puntatori puntatore nom +puntatrice puntatore nom +puntava puntare ver +puntavano puntare ver +puntavi puntare ver +puntavo puntare ver +punte punta nom +punteggi punteggio nom +punteggia punteggiare ver +punteggiando punteggiare ver +punteggiano punteggiare ver +punteggiare punteggiare ver +punteggiarono punteggiare ver +punteggiata punteggiare ver +punteggiate punteggiare ver +punteggiati punteggiare ver +punteggiato punteggiare ver +punteggiatura punteggiatura nom +punteggiature punteggiatura nom +punteggiava punteggiare ver +punteggiavano punteggiare ver +punteggio punteggio nom +puntella puntellare ver +puntellamenti puntellamento nom +puntellamento puntellamento nom +puntellando puntellare ver +puntellandole puntellare ver +puntellandosi puntellare ver +puntellano puntellare ver +puntellare puntellare ver +puntellarono puntellare ver +puntellarsi puntellare ver +puntellata puntellare ver +puntellate puntellare ver +puntellati puntellare ver +puntellato puntellare ver +puntellatura puntellatura nom +puntellavano puntellare ver +puntelli puntello nom +puntello puntello nom +puntellò puntellare ver +punteranno puntare ver +punterebbe puntare ver +punterebbero puntare ver +punterei puntare ver +punteria punteria nom +punterie punteria nom +punteruoli punteruolo nom +punteruolo punteruolo nom +punterà puntare ver +punti punto nom +puntiamo puntare ver +puntiamoci puntare ver +puntiforme puntiforme adj +puntiformi puntiforme adj +puntigli puntiglio nom +puntiglio puntiglio nom +puntigliosa puntiglioso adj +puntigliose puntiglioso adj +puntigliosi puntiglioso adj +puntiglioso puntiglioso adj +puntina puntina nom +puntine puntina nom +puntini puntino nom +puntinismo puntinismo nom +puntino puntino nom +punto punto nom +puntone puntone nom +puntoni puntone nom +puntuale puntuale adj +puntuali puntuale adj +puntualità puntualità nom +puntualizza puntualizzare ver +puntualizzando puntualizzare ver +puntualizzano puntualizzare ver +puntualizzare puntualizzare ver +puntualizzarlo puntualizzare ver +puntualizzarono puntualizzare ver +puntualizzata puntualizzare ver +puntualizzate puntualizzare ver +puntualizzati puntualizzare ver +puntualizzato puntualizzare ver +puntualizzava puntualizzare ver +puntualizzavo puntualizzare ver +puntualizzazione puntualizzazione nom +puntualizzazioni puntualizzazione nom +puntualizzi puntualizzare ver +puntualizziamo puntualizzare ver +puntualizzo puntualizzare ver +puntualizzò puntualizzare ver +puntualmente puntualmente adv +puntura puntura nom +punture puntura nom +puntuta puntuto adj +puntute puntuto adj +puntuti puntuto adj +puntuto puntuto adj +puntò puntare ver +punzecchia punzecchiare ver +punzecchiamenti punzecchiamento nom +punzecchiamento punzecchiamento nom +punzecchiando punzecchiare ver +punzecchiandola punzecchiare ver +punzecchiandolo punzecchiare ver +punzecchiano punzecchiare ver +punzecchiare punzecchiare ver +punzecchiarla punzecchiare ver +punzecchiarlo punzecchiare ver +punzecchiarmi punzecchiare ver +punzecchiarono punzecchiare ver +punzecchiarsi punzecchiare ver +punzecchiarti punzecchiare ver +punzecchiarvi punzecchiare ver +punzecchiata punzecchiare ver +punzecchiate punzecchiare ver +punzecchiati punzecchiare ver +punzecchiato punzecchiare ver +punzecchiatura punzecchiatura nom +punzecchiature punzecchiatura nom +punzonando punzonare ver +punzonano punzonare ver +punzonare punzonare ver +punzonata punzonare ver +punzonate punzonare ver +punzonati punzonare ver +punzonato punzonare ver +punzonatrice punzonatore|punzonatrice nom +punzonatrici punzonatore|punzonatrice nom +punzonatura punzonatura nom +punzonature punzonatura nom +punzone punzone nom +punzoni punzone nom +punì punire ver +puo puo sw +puoi potere ver_sup +pupa pupa|pupo nom +pupattola pupattola nom +pupazzetti pupazzetto nom +pupazzetto pupazzetto nom +pupazzi pupazzo nom +pupazzo pupazzo nom +pupe pupa|pupo nom +pupi pupo nom +pupila pupilare ver +pupilla pupilla|pupillo nom +pupillare pupillare adj +pupillari pupillare adj +pupille pupilla|pupillo nom +pupilli pupillo nom +pupillo pupillo nom +pupilo pupilare ver +pupo pupo nom +pur pur adv_sup +pura puro adj +puramente puramente adv_sup +purche purche sw +purchessia purchessia adj +purchè purchè con +purché purché con +pure pure adv_sup +purea purea nom +purezza purezza nom +purezze purezza nom +purga purga nom +purgando purgare ver +purgandolo purgare ver +purgano purgare ver +purgante purgante nom +purganti purgante adj +purgar purgare ver +purgarla purgare ver +purgarsi purgare ver +purgata purgare ver +purgate purgare ver +purgati purgare ver +purgativa purgativo adj +purgative purgativo adj +purgativi purgativo adj +purgativo purgativo adj +purgato purgare ver +purgatori purgatorio nom +purgatorio purgatorio nom +purghe purga nom +purgo purgare ver +purgò purgare ver +puri puro adj +purifica purificare ver +purificaci purificare ver +purificami purificare ver +purificando purificare ver +purificandola purificare ver +purificandole purificare ver +purificandoli purificare ver +purificandolo purificare ver +purificandosi purificare ver +purificano purificare ver +purificante purificare ver +purificanti purificare ver +purificarci purificare ver +purificarla purificare ver +purificarle purificare ver +purificarli purificare ver +purificarlo purificare ver +purificarmi purificare ver +purificarne purificare ver +purificarono purificare ver +purificarsi purificare ver +purificasse purificare ver +purificata purificare ver +purificate purificare ver +purificati purificare ver +purificato purificare ver +purificatoio purificatoio nom +purificatore purificatore adj +purificatori purificatore nom +purificatoria purificatorio adj +purificatorie purificatorio adj +purificatorio purificatorio adj +purificatrice purificatore adj +purificatrici purificatore adj +purificava purificare ver +purificavano purificare ver +purificazione purificazione nom +purificazioni purificazione nom +purifico purificare ver +purificò purificare ver +purismi purismo nom +purismo purismo nom +purista purista adj +puriste purista adj +puristi purista nom +puristica puristico adj +puristiche puristico adj +puristico puristico adj +puritana puritano adj +puritane puritano adj +puritanesimo puritanesimo nom +puritani puritano nom +puritano puritano adj +purità purità nom +puro puro adj +purosangue purosangue adj +purtroppo purtroppo adv_sup +purtuttavia purtuttavia con +purulenta purulento adj +purulente purulento adj +purulenti purulento adj +purulento purulento adj +purè purè nom +pus pus nom +pusillanime pusillanime adj +pusillanimi pusillanime adj +pusillanimità pusillanimità nom +pustola pustola nom +pustole pustola nom +pustolosa pustoloso adj +pustolose pustoloso adj +pustolosi pustoloso adj +pustoloso pustoloso adj +puszta puszta nom +putacaso putacaso adv +putativa putativo adj +putative putativo adj +putativi putativo adj +putativo putativo adj +putente putire ver +putiferi putiferio nom +putiferio putiferio nom +putii putire ver +putipù putipù nom +putissi putire ver +putivi putire ver +putizza putizza nom +putizze putizza nom +putrefacendosi putrefare ver +putrefare putrefare ver +putrefarsi putrefare ver +putrefatta putrefatto adj +putrefatte putrefatto adj +putrefatti putrefare ver +putrefatto putrefatto adj +putrefazione putrefazione nom +putrefazioni putrefazione nom +putrella putrella nom +putrelle putrella nom +putrescente putrescente adj +putrescenti putrescente adj +putrescibile putrescibile adj +putrescibili putrescibile adj +putrescina putrescina nom +putrescine putrescina nom +putrida putrido adj +putride putrido adj +putridi putrido adj +putrido putrido adj +putridume putridume nom +putsch putsch nom +putta putto nom +puttana puttana nom +puttane puttana nom +putte putto nom +putti putto nom +putto putto nom +puzza puzza nom +puzzano puzzare ver +puzzare puzzare ver +puzzarmi puzzare ver +puzzasse puzzare ver +puzzato puzzare ver +puzzava puzzare ver +puzzavano puzzare ver +puzze puzza nom +puzzi puzzo nom +puzzle puzzle nom +puzzo puzzo nom +puzzola puzzola nom +puzzole puzzola nom +puzzolente puzzolente adj +puzzolenti puzzolente adj +puzzona puzzone nom +puzzone puzzone nom +puzzoni puzzone nom +può potere ver_sup +pâté pâté nom +pò pò adv_sup +qst qst sw +qua qua adv_sup +quaccherismo quaccherismo nom +quaderna quaderna nom +quaderni quaderno nom +quaderno quaderno nom +quadra quadro adj +quadragesima quadragesimo adj +quadragesimo quadragesimo adj +quadrando quadrare ver +quadrangolare quadrangolare adj +quadrangolari quadrangolare adj +quadrangoli quadrangolo nom +quadrangolo quadrangolo nom +quadrano quadrare ver +quadrante quadrante nom +quadranti quadrante nom +quadrare quadrare ver +quadrasse quadrare ver +quadrata quadrato adj +quadrate quadrato adj +quadrati quadrato adj +quadratica quadratico adj +quadratiche quadratico adj +quadratici quadratico adj +quadratico quadratico adj +quadrato quadrato nom +quadratura quadratura nom +quadrature quadratura nom +quadrava quadrare ver +quadre quadro adj +quadrelli quadrello nom +quadrello quadrello nom +quadreria quadreria nom +quadrerie quadreria nom +quadretta quadrettare ver +quadrettata quadrettato adj +quadrettati quadrettato adj +quadrettato quadrettato adj +quadrettatura quadrettatura nom +quadrettature quadrettatura nom +quadretti quadretto nom +quadrettino quadrettare ver +quadretto quadretto nom +quadri quadro nom +quadricipite quadricipite nom +quadricipiti quadricipite nom +quadricromia quadricromia nom +quadricromie quadricromia nom +quadridimensionale quadridimensionale adj +quadridimensionali quadridimensionale adj +quadriennale quadriennale adj +quadriennali quadriennale adj +quadrienni quadriennio nom +quadriennio quadriennio nom +quadrifogli quadrifoglio nom +quadrifoglio quadrifoglio nom +quadriga quadriga nom +quadrigemina quadrigemino adj +quadrigemini quadrigemino adj +quadrigemino quadrigemino adj +quadrigetto quadrigetto nom +quadrighe quadriga nom +quadriglia quadriglia nom +quadriglie quadriglia nom +quadrilatera quadrilatero adj +quadrilatere quadrilatero adj +quadrilateri quadrilatero nom +quadrilatero quadrilatero nom +quadrilungo quadrilungo adj +quadrimestrale quadrimestrale adj +quadrimestrali quadrimestrale adj +quadrimestre quadrimestre nom +quadrimestri quadrimestre nom +quadrimotore quadrimotore nom +quadrimotori quadrimotore nom +quadrino quadrare ver +quadripartisce quadripartire ver +quadripartita quadripartire ver +quadripartite quadripartito adj +quadripartiti quadripartire ver +quadripartito quadripartito adj +quadripetala quadripetalo adj +quadripetalo quadripetalo adj +quadripoli quadripolo nom +quadripolo quadripolo nom +quadrireattore quadrireattore nom +quadrireme quadrireme nom +quadriremi quadrireme nom +quadrisillabe quadrisillabo adj +quadrisillabi quadrisillabo adj +quadrisillabo quadrisillabo nom +quadrivi quadrivio nom +quadrivio quadrivio nom +quadro quadro nom +quadrucci quadruccio nom +quadruccio quadruccio nom +quadrumane quadrumane adj +quadrumani quadrumane adj +quadrumvirato quadrumvirato nom +quadrumviri quadrumviro nom +quadrumviro quadrumviro nom +quadrunvirato quadrunvirato nom +quadrunviro quadrunviro nom +quadrupede quadrupede adj +quadrupedi quadrupede adj +quadrupla quadruplo adj +quadruple quadruplo adj +quadrupli quadruplo adj +quadruplica quadruplicare ver +quadruplicando quadruplicare ver +quadruplicano quadruplicare ver +quadruplicare quadruplicare ver +quadruplicarne quadruplicare ver +quadruplicarono quadruplicare ver +quadruplicarsi quadruplicare ver +quadruplicata quadruplicare ver +quadruplicate quadruplicare ver +quadruplicati quadruplicare ver +quadruplicato quadruplicare ver +quadruplicava quadruplicare ver +quadruplicazione quadruplicazione nom +quadruplice quadruplice adj +quadruplici quadruplice adj +quadruplicò quadruplicare ver +quadruplo quadruplo adj +quaggiù quaggiù adv +quaglia quaglia nom +quaglie quaglia nom +qual qual adj_sup +qualche qualche adj_sup +qualcheduno qualcheduno pro +qualcos qualcos sw +qualcosa qualcosa pro +qualcun qualcun pro +qualcuno qualcuno pro +quale quale pro +quali quale pro +qualifica qualifica nom +qualificabile qualificabile adj +qualificabili qualificabile adj +qualificando qualificare ver +qualificandola qualificare ver +qualificandole qualificare ver +qualificandoli qualificare ver +qualificandolo qualificare ver +qualificandone qualificare ver +qualificandosi qualificare ver +qualificano qualificare ver +qualificante qualificante adj +qualificanti qualificante adj +qualificarci qualificare ver +qualificare qualificare ver +qualificarla qualificare ver +qualificarle qualificare ver +qualificarli qualificare ver +qualificarlo qualificare ver +qualificarmi qualificare ver +qualificarne qualificare ver +qualificarono qualificare ver +qualificarsi qualificare ver +qualificasi qualificare ver +qualificasse qualificare ver +qualificassero qualificare ver +qualificata qualificare ver +qualificate qualificare ver +qualificatesi qualificare ver +qualificati qualificare ver +qualificativa qualificativo adj +qualificative qualificativo adj +qualificativi qualificativo adj +qualificativo qualificativo adj +qualificato qualificare ver +qualificava qualificare ver +qualificavano qualificare ver +qualificazione qualificazione nom +qualificazioni qualificazione nom +qualifiche qualifica nom +qualificheranno qualificare ver +qualificherebbe qualificare ver +qualificherebbero qualificare ver +qualificherei qualificare ver +qualificherà qualificare ver +qualifichi qualificare ver +qualifichino qualificare ver +qualifico qualificare ver +qualificò qualificare ver +qualitativa qualitativo adj +qualitativamente qualitativamente adv +qualitative qualitativo adj +qualitativi qualitativo adj +qualitativo qualitativo adj +qualità qualità nom +qualora qualora con +qualsiasi qualsiasi adj_sup +qualsisia qualsisia adj +qualsivoglia qualsivoglia adj +qualunque qualunque adj_sup +qualunquismi qualunquismo nom +qualunquismo qualunquismo nom +qualunquista qualunquista adj +qualunquiste qualunquista adj +qualunquisti qualunquista adj +qualunquistica qualunquistico adj +qualunquistici qualunquistico adj +qualunquistico qualunquistico adj +qualvolta qualvolta con +quando quando con +quant quant sw +quanta quanto adj +quante quanto adj_sup +quanti quanto nom_sup +quantica quantico adj +quantiche quantico adj +quantici quantico adj +quantico quantico adj +quantifica quantificare ver +quantificabile quantificabile adj +quantificabili quantificabile adj +quantificaci quantificare ver +quantificando quantificare ver +quantificandola quantificare ver +quantificandoli quantificare ver +quantificano quantificare ver +quantificare quantificare ver +quantificarla quantificare ver +quantificarle quantificare ver +quantificarli quantificare ver +quantificarlo quantificare ver +quantificarne quantificare ver +quantificarsi quantificare ver +quantificasse quantificare ver +quantificata quantificare ver +quantificate quantificare ver +quantificati quantificare ver +quantificato quantificare ver +quantificava quantificare ver +quantificavano quantificare ver +quantificazione quantificazione nom +quantificazioni quantificazione nom +quantifichi quantificare ver +quantifico quantificare ver +quantificò quantificare ver +quantitativa quantitativo adj +quantitativamente quantitativamente adv +quantitative quantitativo adj +quantitativi quantitativo adj +quantitativo quantitativo nom +quantità quantità nom +quantizza quantizzare ver +quantizzando quantizzare ver +quantizzano quantizzare ver +quantizzare quantizzare ver +quantizzata quantizzare ver +quantizzate quantizzare ver +quantizzati quantizzare ver +quantizzato quantizzare ver +quanto quanto adv_sup +quantomeno quantomeno adv +quantum quantum nom +quantunque quantunque con +quaranta quaranta adj +quarantacinque quarantacinque adj +quarantena quarantena nom +quarantene quarantena nom +quarantenne quarantenne adj +quarantenni quarantenne adj +quarantennio quarantennio nom +quarantesima quarantesimo adj +quarantesimi quarantesimo adj +quarantesimo quarantesimo adj +quarantina quarantina nom +quarantine quarantina nom +quarantore quarantore nom +quarantotto quarantotto adj +quarantunesimo quarantunesimo adj +quarantuno quarantuno adj +quaresima quaresima nom +quaresimale quaresimale adj +quaresimali quaresimale adj +quaresime quaresima nom +quark quark nom +quarta quarto adj +quartana quartana nom +quarte quarto adj +quartetti quartetto nom +quartettista quartettista nom +quartetto quartetto nom +quarti quarto adj +quartiere quartiere nom +quartieri quartiere nom +quartierino quartierino nom +quartina quartina nom +quartine quartina nom +quartini quartino nom +quartino quartino nom +quarto quarto adj_sup +quartultima quartultimo nom +quartultime quartultimo adj +quartultimo quartultimo nom +quarzi quarzo nom +quarzifera quarzifero adj +quarzifere quarzifero adj +quarziferi quarzifero adj +quarzifero quarzifero adj +quarzite quarzite nom +quarziti quarzite nom +quarzo quarzo nom +quarzosa quarzoso adj +quarzose quarzoso adj +quarzosi quarzoso adj +quarzoso quarzoso adj +quasar quasar nom +quasi quasi adv_sup +quassia quassia nom +quassio quassio nom +quassù quassù adv +quater quater adj +quaterna quaterna nom +quaternari quaternario adj +quaternaria quaternario adj +quaternarie quaternario adj +quaternario quaternario adj +quaterne quaterna nom +quatta quatto adj +quatte quatto adj +quatti quatto adj +quatto quatto adj +quattordicenne quattordicenne adj +quattordicenni quattordicenne adj +quattordicesima quattordicesimo adj +quattordicesime quattordicesimo nom +quattordicesimi quattordicesimo adj +quattordicesimo quattordicesimo adj +quattordici quattordici adj +quattrini quattrino nom +quattrino quattrino nom +quattro quattro adj_sup +quattrocchi quattrocchi nom +quattrocentesca quattrocentesco adj +quattrocentesche quattrocentesco adj +quattrocenteschi quattrocentesco adj +quattrocentesco quattrocentesco adj +quattrocentista quattrocentista nom +quattrocentisti quattrocentista nom +quattrocento quattrocento nom +quattrofoglie quattrofoglie nom +quattromila quattromila adj +quebracho quebracho nom +quechua quechua npr +quegli quegli pro +quei quei pro +quel quel pro +quell quell sw +quella quello pro +quelle quello pro +quelli quello pro +quello quello pro +querce quercia nom +querceti querceto nom +querceto querceto nom +quercia quercia nom +quercina quercino adj +quercine quercino adj +quercini quercino adj +quercino quercino adj +querela querela nom +querelando querelare ver +querelano querelare ver +querelante querelante nom +querelanti querelante nom +querelare querelare ver +querelarlo querelare ver +querelarmi querelare ver +querelarono querelare ver +querelasse querelare ver +querelata querelare ver +querelati querelare ver +querelato querelare ver +querele querela nom +querelerà querelare ver +quereli querelare ver +querelino querelare ver +querelle querelle nom +querelo querelare ver +querelò querelare ver +querimonia querimonia nom +querimonie querimonia nom +querula querulo adj +querule querulo adj +queruli querulo adj +querulo querulo adj +quesiti quesito nom +quesito quesito nom +quest quest sw +questa questo pro +queste questo pro +questi questo pro +questiona questionare ver +questionando questionare ver +questionare questionare ver +questionari questionario nom +questionario questionario nom +questionata questionare ver +questionate questionare ver +questionati questionare ver +questionato questionare ver +questionava questionare ver +questione questione nom +questioni questione nom +questiono questionare ver +questionò questionare ver +questo questo pro +questore questore nom +questori questore nom +questua questua nom +questuando questuare ver +questuante questuante nom +questuanti questuante nom +questuare questuare ver +questuato questuare ver +questue questua nom +questura questura nom +questure questura nom +questurini questurino nom +questurino questurino nom +qui qui adv_sup +quid quid pro +quiescente quiescente adj +quiescenti quiescente adj +quiescenza quiescenza nom +quieta quieto adj +quietano quietare ver +quietanza quietanza nom +quietanze quietanza nom +quietare quietare ver +quietarlo quietare ver +quietarsi quietare ver +quietata quietare ver +quietate quietare ver +quietati quietare ver +quietava quietare ver +quiete quiete nom +quieterà quietare ver +quieti quieto adj +quietismo quietismo nom +quietista quietista nom +quietiste quietista nom +quietisti quietista nom +quieto quieto adj +quietò quietare ver +quinari quinario adj +quinaria quinario adj +quinarie quinario adj +quinario quinario adj +quinci quinci adv +quinconce quinconce nom +quindi quindi adv_sup +quindicenne quindicenne adj +quindicenni quindicenne adj +quindicennio quindicennio nom +quindicesima quindicesimo adj +quindicesime quindicesimo adj +quindicesimi quindicesimo adj +quindicesimo quindicesimo adj +quindici quindici adj +quindicina quindicina nom +quindicinale quindicinale adj +quindicinali quindicinale adj +quindicine quindicina nom +quinquagenaria quinquagenario adj +quinquagesima quinquagesima nom +quinquennale quinquennale adj +quinquennali quinquennale adj +quinquenni quinquennio nom +quinquennio quinquennio nom +quinta quinto adj +quintale quintale nom +quintali quintale nom +quintana quintana nom +quintane quintana nom +quinte quinta|quinto nom +quinterno quinterno nom +quintessenza quintessenza nom +quintessenze quintessenza nom +quintetti quintetto nom +quintetto quintetto nom +quinti quinto adj +quintini quintino nom +quintino quintino nom +quinto quinto adj_sup +quintultima quintultimo nom +quintultime quintultimo nom +quintultimo quintultimo nom +quintupla quintuplo adj +quintuple quintuplo adj +quintupli quintuplo adj +quintuplica quintuplicare ver +quintuplicando quintuplicare ver +quintuplicare quintuplicare ver +quintuplicarsi quintuplicare ver +quintuplicata quintuplicare ver +quintuplicate quintuplicare ver +quintuplicati quintuplicare ver +quintuplicato quintuplicare ver +quintuplice quintuplice adj +quintuplici quintuplice adj +quintuplicò quintuplicare ver +quintuplo quintuplo adj +quisling quisling nom +quisquilia quisquilia nom +quisquilie quisquilia nom +quivi quivi adv +quiz quiz nom +quorum quorum nom +quota quota nom +quotando quotare ver +quotandola quotare ver +quotandolo quotare ver +quotandomi quotare ver +quotandosi quotare ver +quotano quotare ver +quotante quotare ver +quotanti quotare ver +quotare quotare ver +quotarla quotare ver +quotarle quotare ver +quotarli quotare ver +quotarlo quotare ver +quotarmi quotare ver +quotarsi quotare ver +quotarti quotare ver +quotarvi quotare ver +quotata quotare ver +quotate quotato adj +quotati quotato adj +quotato quotare ver +quotava quotare ver +quotavano quotare ver +quotavo quotare ver +quotazione quotazione nom +quotazioni quotazione nom +quote quota nom +quoterei quotare ver +quoterò quotare ver +quoti quoto nom +quotiamo quotare ver +quotidiana quotidiano adj +quotidianamente quotidianamente adv +quotidiane quotidiano adj +quotidiani quotidiano nom +quotidianità quotidianità nom +quotidiano quotidiano nom +quotino quotare ver +quotizzare quotizzare ver +quotizzati quotizzare ver +quoto quoto nom +quotò quotare ver +quoziente quoziente nom +quozienti quoziente nom +r r sw +rabarbaro rabarbaro nom +rabberciare rabberciare ver +rabberciata rabberciare ver +rabberciate rabberciare ver +rabberciato rabberciare ver +rabbia rabbia nom +rabbico rabbico adj +rabbie rabbia nom +rabbini rabbino nom +rabbino rabbino nom +rabbiosa rabbioso adj +rabbiose rabbioso adj +rabbiosi rabbioso adj +rabbioso rabbioso adj +rabbonire rabbonire ver +rabbonirla rabbonire ver +rabbonirlo rabbonire ver +rabbonita rabbonire ver +rabbonito rabbonire ver +rabbrividendo rabbrividire ver +rabbrividente rabbrividire ver +rabbrividenti rabbrividire ver +rabbrividire rabbrividire ver +rabbrividisce rabbrividire ver +rabbrividisco rabbrividire ver +rabbrividiscono rabbrividire ver +rabbrividito rabbrividire ver +rabbrividì rabbrividire ver +rabbuffo rabbuffo nom +rabbuia rabbuiare ver +rabbuiarsi rabbuiare ver +rabbuiato rabbuiare ver +rabbuiò rabbuiare ver +rabdomante rabdomante nom +rabdomanti rabdomante nom +rabdomantica rabdomantico adj +rabdomanzia rabdomanzia nom +rabescata rabescare ver +rabescate rabescare ver +rabescato rabescare ver +rabeschi rabesco adj +rabesco rabesco adj +rabicano rabicano adj +racca raccare ver +raccano raccare ver +raccapezza raccapezzare ver +raccapezzare raccapezzare ver +raccapezzarmi raccapezzare ver +raccapezzarsi raccapezzare ver +raccapezzi raccapezzare ver +raccapezziamo raccapezzare ver +raccapezzo raccapezzare ver +raccapriccia raccapricciare ver +raccapricciante raccapricciante adj +raccapriccianti raccapricciante adj +raccapricciare raccapricciare ver +raccapricciati raccapricciare ver +raccapricciato raccapricciare ver +raccapriccio raccapriccio nom +raccasi raccare ver +raccatta raccattare ver +raccattammo raccattare ver +raccattando raccattare ver +raccattano raccattare ver +raccattapalle raccattapalle nom +raccattare raccattare ver +raccattarli raccattare ver +raccattarlo raccattare ver +raccattata raccattare ver +raccattate raccattare ver +raccattati raccattare ver +raccattato raccattare ver +raccatti raccattare ver +raccatto raccattare ver +racchetta racchetta nom +racchette racchetta nom +racchi racchio nom +racchia racchio adj +racchie racchio nom +racchio racchio adj +racchiuda racchiudere ver +racchiudano racchiudere ver +racchiude racchiudere ver +racchiudendo racchiudere ver +racchiudendola racchiudere ver +racchiudendole racchiudere ver +racchiudendoli racchiudere ver +racchiudendolo racchiudere ver +racchiudendone racchiudere ver +racchiudendosi racchiudere ver +racchiudente racchiudere ver +racchiudenti racchiudere ver +racchiudere racchiudere ver +racchiuderebbe racchiudere ver +racchiuderebbero racchiudere ver +racchiuderla racchiudere ver +racchiuderle racchiudere ver +racchiuderli racchiudere ver +racchiuderlo racchiudere ver +racchiuderne racchiudere ver +racchiudersi racchiudere ver +racchiuderti racchiudere ver +racchiudervi racchiudere ver +racchiuderà racchiudere ver +racchiudesse racchiudere ver +racchiudeva racchiudere ver +racchiudevano racchiudere ver +racchiudi racchiudere ver +racchiudo racchiudere ver +racchiudono racchiudere ver +racchiusa racchiudere ver +racchiuse racchiudere ver +racchiusero racchiudere ver +racchiusi racchiudere ver +racchiuso racchiudere ver +racco raccare ver +raccogli raccogliere ver +raccogliamo raccogliere ver +raccogliate raccogliere ver +raccoglie raccogliere ver +raccogliemmo raccogliere ver +raccogliendo raccogliere ver +raccogliendola raccogliere ver +raccogliendole raccogliere ver +raccogliendoli raccogliere ver +raccogliendolo raccogliere ver +raccogliendone raccogliere ver +raccogliendosi raccogliere ver +raccogliendovi raccogliere ver +raccogliente raccogliere ver +raccoglienti raccogliere ver +raccoglier raccogliere ver +raccoglierai raccogliere ver +raccoglieranno raccogliere ver +raccoglierci raccogliere ver +raccogliere raccogliere ver +raccoglierebbe raccogliere ver +raccoglierebbero raccogliere ver +raccoglierei raccogliere ver +raccoglieremo raccogliere ver +raccoglierete raccogliere ver +raccoglierla raccogliere ver +raccoglierle raccogliere ver +raccoglierli raccogliere ver +raccoglierlo raccogliere ver +raccoglierne raccogliere ver +raccogliersi raccogliere ver +raccoglierti raccogliere ver +raccogliervi raccogliere ver +raccoglierà raccogliere ver +raccoglierò raccogliere ver +raccogliesse raccogliere ver +raccogliessero raccogliere ver +raccogliete raccogliere ver +raccoglieva raccogliere ver +raccoglievamo raccogliere ver +raccoglievano raccogliere ver +raccoglievo raccogliere ver +raccoglila raccogliere ver +raccoglilo raccogliere ver +raccoglimenti raccoglimento nom +raccoglimento raccoglimento nom +raccogliti raccogliere ver +raccogliticce raccogliticcio adj +raccogliticci raccogliticcio adj +raccogliticcia raccogliticcio adj +raccogliticcio raccogliticcio adj +raccoglitore raccoglitore nom +raccoglitori raccoglitore nom +raccoglitrice raccoglitore|raccoglitrice nom +raccoglitrici raccoglitore|raccoglitrice nom +raccolga raccogliere ver +raccolgano raccogliere ver +raccolgo raccogliere ver +raccolgono raccogliere ver +raccolse raccogliere ver +raccolsero raccogliere ver +raccolsi raccogliere ver +raccolta raccolta nom +raccolte raccolto adj +raccolti raccogliere ver +raccolto raccogliere ver +raccomanda raccomandare ver +raccomandabile raccomandabile adj +raccomandabili raccomandabile adj +raccomandai raccomandare ver +raccomandando raccomandare ver +raccomandandogli raccomandare ver +raccomandandola raccomandare ver +raccomandandole raccomandare ver +raccomandandolo raccomandare ver +raccomandandone raccomandare ver +raccomandandosi raccomandare ver +raccomandandoti raccomandare ver +raccomandano raccomandare ver +raccomandante raccomandare ver +raccomandanti raccomandare ver +raccomandare raccomandare ver +raccomandargli raccomandare ver +raccomandarla raccomandare ver +raccomandarle raccomandare ver +raccomandarlo raccomandare ver +raccomandarne raccomandare ver +raccomandarono raccomandare ver +raccomandarsi raccomandare ver +raccomandarvi raccomandare ver +raccomandasse raccomandare ver +raccomandassero raccomandare ver +raccomandata raccomandare ver +raccomandatari raccomandatario nom +raccomandatarie raccomandatario nom +raccomandatario raccomandatario nom +raccomandate raccomandare ver +raccomandati raccomandare ver +raccomandato raccomandare ver +raccomandava raccomandare ver +raccomandavano raccomandare ver +raccomandazione raccomandazione nom +raccomandazioni raccomandazione nom +raccomanderebbe raccomandare ver +raccomanderei raccomandare ver +raccomanderà raccomandare ver +raccomandi raccomandare ver +raccomandiamo raccomandare ver +raccomandino raccomandare ver +raccomando raccomandare ver +raccomandò raccomandare ver +racconciarsi racconciare ver +racconciate racconciare ver +racconta raccontare ver +raccontabile raccontabile adj +raccontaci raccontare ver +raccontagli raccontare ver +raccontai raccontare ver +raccontala raccontare ver +raccontalo raccontare ver +raccontami raccontare ver +raccontammo raccontare ver +raccontando raccontare ver +raccontandoci raccontare ver +raccontandogli raccontare ver +raccontandola raccontare ver +raccontandole raccontare ver +raccontandoli raccontare ver +raccontandolo raccontare ver +raccontandomi raccontare ver +raccontandone raccontare ver +raccontandosi raccontare ver +raccontano raccontare ver +raccontante raccontare ver +raccontar raccontare ver +raccontarcelo raccontare ver +raccontarci raccontare ver +raccontare raccontare ver +raccontargli raccontare ver +raccontargliela raccontare ver +raccontarglielo raccontare ver +raccontarla raccontare ver +raccontarle raccontare ver +raccontarli raccontare ver +raccontarlo raccontare ver +raccontarmi raccontare ver +raccontarne raccontare ver +raccontarono raccontare ver +raccontarsi raccontare ver +raccontarti raccontare ver +raccontarvi raccontare ver +raccontasse raccontare ver +raccontassero raccontare ver +raccontassi raccontare ver +raccontata raccontare ver +raccontate raccontare ver +raccontateci raccontare ver +raccontategli raccontare ver +raccontatelo raccontare ver +raccontatemi raccontare ver +raccontati raccontare ver +raccontato raccontare ver +raccontava raccontare ver +raccontavano raccontare ver +raccontavo raccontare ver +racconterai raccontare ver +racconteranno raccontare ver +racconterebbe raccontare ver +racconterebbero raccontare ver +racconterei raccontare ver +racconteremo raccontare ver +racconterete raccontare ver +racconterà raccontare ver +racconterò raccontare ver +racconti racconto nom +raccontiamo raccontare ver +raccontiamocela raccontare ver +raccontiamoci raccontare ver +raccontino raccontare ver +racconto racconto nom +raccontò raccontare ver +raccorciando raccorciare ver +raccorciare raccorciare ver +raccorciata raccorciare ver +raccorciate raccorciare ver +raccorciati raccorciare ver +raccorciato raccorciare ver +raccorciò raccorciare ver +raccorda raccordare ver +raccordando raccordare ver +raccordandole raccordare ver +raccordandoli raccordare ver +raccordandolo raccordare ver +raccordandosi raccordare ver +raccordano raccordare ver +raccordare raccordare ver +raccordarla raccordare ver +raccordarle raccordare ver +raccordarli raccordare ver +raccordarono raccordare ver +raccordarsi raccordare ver +raccordasse raccordare ver +raccordata raccordare ver +raccordate raccordare ver +raccordati raccordare ver +raccordato raccordare ver +raccordava raccordare ver +raccordavano raccordare ver +raccorderebbe raccordare ver +raccorderà raccordare ver +raccordi raccordo nom +raccordino raccordare ver +raccordo raccordo nom +raccordò raccordare ver +raccosta raccostare ver +racemi racemo nom +racemo racemo nom +racemosa racemoso adj +racemose racemoso adj +racemoso racemoso adj +racer racer nom +rachicentesi rachicentesi nom +rachide rachide nom +rachidiano rachidiano adj +rachitica rachitico adj +rachitiche rachitico adj +rachitici rachitico nom +rachitico rachitico adj +rachitismi rachitismo nom +rachitismo rachitismo nom +racimola racimolare ver +racimolando racimolare ver +racimolano racimolare ver +racimolare racimolare ver +racimolarne racimolare ver +racimolarono racimolare ver +racimolata racimolare ver +racimolate racimolare ver +racimolati racimolare ver +racimolato racimolare ver +racimolavano racimolare ver +racimoli racimolo nom +racimolo racimolo nom +racimolò racimolare ver +racket racket nom +rada rado adj +radancia radancia nom +radano radere ver +radar radar adj +radarista radarista nom +radaristi radarista nom +radaristica radaristica nom +raddobbata raddobbare ver +raddobbi raddobbo nom +raddobbo raddobbo nom +raddolcisce raddolcire ver +raddolcita raddolcire ver +raddoppi raddoppio nom +raddoppia raddoppiare ver +raddoppiai raddoppiare ver +raddoppiamenti raddoppiamento nom +raddoppiamento raddoppiamento nom +raddoppiamo raddoppiare ver +raddoppiando raddoppiare ver +raddoppiandola raddoppiare ver +raddoppiandoli raddoppiare ver +raddoppiandolo raddoppiare ver +raddoppiandone raddoppiare ver +raddoppiandosi raddoppiare ver +raddoppiano raddoppiare ver +raddoppiare raddoppiare ver +raddoppiarla raddoppiare ver +raddoppiarle raddoppiare ver +raddoppiarlo raddoppiare ver +raddoppiarne raddoppiare ver +raddoppiarono raddoppiare ver +raddoppiarsi raddoppiare ver +raddoppiasse raddoppiare ver +raddoppiata raddoppiare ver +raddoppiate raddoppiare ver +raddoppiati raddoppiare ver +raddoppiato raddoppiare ver +raddoppiava raddoppiare ver +raddoppiavano raddoppiare ver +raddoppieranno raddoppiare ver +raddoppierebbe raddoppiare ver +raddoppierei raddoppiare ver +raddoppierà raddoppiare ver +raddoppino raddoppiare ver +raddoppio raddoppio nom +raddoppiò raddoppiare ver +raddrizza raddrizzare ver +raddrizzamenti raddrizzamento nom +raddrizzamento raddrizzamento nom +raddrizzando raddrizzare ver +raddrizzandosi raddrizzare ver +raddrizzano raddrizzare ver +raddrizzante raddrizzare ver +raddrizzare raddrizzare ver +raddrizzarla raddrizzare ver +raddrizzarle raddrizzare ver +raddrizzarlo raddrizzare ver +raddrizzarono raddrizzare ver +raddrizzarsele raddrizzare ver +raddrizzarsi raddrizzare ver +raddrizzata raddrizzare ver +raddrizzate raddrizzare ver +raddrizzato raddrizzare ver +raddrizzatore raddrizzatore nom +raddrizzatori raddrizzatore nom +raddrizzatrice raddrizzatrice nom +raddrizzatrici raddrizzatrice nom +raddrizzatura raddrizzatura nom +raddrizzava raddrizzare ver +raddrizzerà raddrizzare ver +raddrizzi raddrizzare ver +raddrizzo raddrizzare ver +raddrizzò raddrizzare ver +rade rado adj +rademmo radere ver +radendo radere ver +radendola radere ver +radendole radere ver +radendoli radere ver +radendolo radere ver +radendone radere ver +radendosi radere ver +radente radente adj +radenti radente adj +rader radere ver +raderanno radere ver +radere radere ver +radergli radere ver +raderla radere ver +raderle radere ver +raderli radere ver +raderlo radere ver +radersi radere ver +raderà radere ver +radesse radere ver +radesti radere ver +radeva radere ver +radevano radere ver +radevi radere ver +radevo radere ver +radi rado adj +radia radiare ver +radiaci radiare ver +radiale radiale adj +radiali radiale adj +radiando radiare ver +radiano radiare ver +radiante radiante adj +radianti radiante adj +radiare radiare ver +radiarla radiare ver +radiarle radiare ver +radiarli radiare ver +radiarlo radiare ver +radiasi radiare ver +radiasse radiare ver +radiata radiare ver +radiate radiare ver +radiati radiare ver +radiato radiare ver +radiatore radiatore nom +radiatori radiatore nom +radiazione radiazione nom +radiazioni radiazione nom +radica radica nom +radicai radicare ver +radicale radicale adj +radicali radicale adj +radicalismi radicalismo nom +radicalismo radicalismo nom +radicalmente radicalmente adv +radicamenti radicamento nom +radicamento radicamento nom +radicando radicando nom +radicandoli radicare ver +radicandosi radicare ver +radicano radicare ver +radicante radicare ver +radicanti radicare ver +radicarci radicare ver +radicare radicare ver +radicarono radicare ver +radicarsi radicare ver +radicasse radicare ver +radicata radicare ver +radicate radicare ver +radicati radicare ver +radicato radicare ver +radicava radicare ver +radicavano radicare ver +radicchi radicchio nom +radicchio radicchio nom +radice radice nom +radiche radica nom +radicheranno radicare ver +radicherà radicare ver +radichetta radichetta nom +radichette radichetta nom +radichi radicare ver +radici radice nom +radico radicare ver +radicolare radicolare adj +radicolari radicolare adj +radicolite radicolite nom +radicò radicare ver +radiestesia radiestesia nom +radile radere ver +radine radere ver +radino radiare ver +radio radio adj +radioamatore radioamatore nom +radioamatori radioamatore nom +radioascoltatore radioascoltatore nom +radioascoltatori radioascoltatore nom +radioascoltatrice radioascoltatore nom +radioassistenza radioassistenza nom +radioassistenze radioassistenza nom +radioassistita radioassistere ver +radioastronomia radioastronomia nom +radioastronomie radioastronomia nom +radioattiva radioattivo adj +radioattive radioattivo adj +radioattivi radioattivo adj +radioattività radioattività nom +radioattivo radioattivo adj +radioaudizione radioaudizione nom +radioaudizioni radioaudizione nom +radiobiologia radiobiologia nom +radiobiologie radiobiologia nom +radiobussola radiobussola nom +radiocarbonio radiocarbonio nom +radiocollegamenti radiocollegamento nom +radiocollegamento radiocollegamento nom +radiocomandata radiocomandare ver +radiocomandate radiocomandato adj +radiocomandati radiocomandato adj +radiocomandato radiocomandato adj +radiocomandi radiocomando nom +radiocomando radiocomando nom +radiocomunicazione radiocomunicazione nom +radiocomunicazioni radiocomunicazione nom +radiocronaca radiocronaca nom +radiocronache radiocronaca nom +radiocronista radiocronista nom +radiocronisti radiocronista nom +radiodiagnostica radiodiagnostica nom +radiodiagnostiche radiodiagnostica nom +radiodiffondere radiodiffondere ver +radiodiffusa radiodiffondere ver +radiodiffuse radiodiffondere ver +radiodiffusione radiodiffusione nom +radiodiffusioni radiodiffusione nom +radiodiffuso radiodiffondere ver +radiodramma radiodramma nom +radiodrammi radiodramma nom +radioelettrica radioelettrico adj +radioelettriche radioelettrico adj +radioelettrici radioelettrico adj +radioelettrico radioelettrico adj +radioemittenti radioemittente nom +radioestesia radioestesia nom +radiofari radiofaro nom +radiofaro radiofaro nom +radiofonia radiofonia nom +radiofonica radiofonico adj +radiofoniche radiofonico adj +radiofonici radiofonico adj +radiofonico radiofonico adj +radiofrequenza radiofrequenza nom +radiofrequenze radiofrequenza nom +radiogoniometri radiogoniometro nom +radiogoniometro radiogoniometro nom +radiografare radiografare ver +radiografati radiografare ver +radiografi radiografare ver +radiografia radiografia nom +radiografica radiografico adj +radiografiche radiografico adj +radiografici radiografico adj +radiografico radiografico adj +radiografie radiografia nom +radiogramma radiogramma nom +radiogrammi radiogramma nom +radioisotopi radioisotopo nom +radioisotopo radioisotopo nom +radiolari radiolario nom +radiolarite radiolarite nom +radiolariti radiolarite nom +radiolina radiolina nom +radioline radiolina nom +radiologa radiologo nom +radiologi radiologo nom +radiologia radiologia nom +radiologica radiologico adj +radiologiche radiologico adj +radiologici radiologico adj +radiologico radiologico adj +radiologie radiologia nom +radiologo radiologo nom +radiomessaggi radiomessaggio nom +radiomessaggio radiomessaggio nom +radiometri radiometro nom +radiometro radiometro nom +radiomobili radiomobile adj +radionavigazione radionavigazione nom +radioonda radioonda nom +radioonde radioonda nom +radioprotezione radioprotezione nom +radioricevente radioricevente adj +radioricevitore radioricevitore nom +radioricevitori radioricevitore nom +radioricezione radioricezione nom +radiorilevamento radiorilevamento nom +radiosa radioso adj +radioscopia radioscopia nom +radioscopica radioscopico adj +radioscopico radioscopico adj +radioscopie radioscopia nom +radiose radioso adj +radiosegnale radiosegnale nom +radiosegnali radiosegnale nom +radiosi radioso adj +radiosità radiosità nom +radioso radioso adj +radiosonda radiosonda nom +radiosonde radiosonda nom +radiosorgente radiosorgente nom +radiosorgenti radiosorgente nom +radiostazioni radiostazione nom +radiosveglia radiosveglia nom +radiosveglie radiosveglia nom +radiotaxi radiotaxi nom +radiotecnica radiotecnico adj +radiotecnici radiotecnico adj +radiotecnico radiotecnico adj +radiotelefoni radiotelefono nom +radiotelefonia radiotelefonia nom +radiotelefonica radiotelefonico adj +radiotelefoniche radiotelefonico adj +radiotelefonici radiotelefonico adj +radiotelefonico radiotelefonico adj +radiotelefono radiotelefono nom +radiotelegrafia radiotelegrafia nom +radiotelegrafica radiotelegrafico adj +radiotelegrafiche radiotelegrafico adj +radiotelegrafici radiotelegrafico adj +radiotelegrafico radiotelegrafico adj +radiotelegrafista radiotelegrafista nom +radiotelegrafisti radiotelegrafista nom +radiotelegrammi radiotelegramma nom +radiotelescopi radiotelescopio nom +radiotelescopio radiotelescopio nom +radiotelevisione radiotelevisione nom +radiotelevisioni radiotelevisione nom +radiotelevisiva radiotelevisivo adj +radiotelevisive radiotelevisivo adj +radiotelevisivi radiotelevisivo adj +radiotelevisivo radiotelevisivo adj +radioterapeutica radioterapeutico adj +radioterapeutici radioterapeutico adj +radioterapia radioterapia nom +radioterapie radioterapia nom +radiotrasmessa radiotrasmettere ver +radiotrasmesse radiotrasmettere ver +radiotrasmessi radiotrasmettere ver +radiotrasmesso radiotrasmettere ver +radiotrasmettere radiotrasmettere ver +radiotrasmettitore radiotrasmettitore nom +radiotrasmettitori radiotrasmettitore nom +radiotrasmissione radiotrasmissione nom +radiotrasmissioni radiotrasmissione nom +radiotrasmittente radiotrasmittente nom +radiotrasmittenti radiotrasmittente nom +raditi radere ver +radium radium nom +radiò radiare ver +rado rado adj +radon radon nom +radono radere ver +raduna radunare ver +radunai radunare ver +radunammo radunare ver +radunando radunare ver +radunandosi radunare ver +radunano radunare ver +radunante radunare ver +radunanti radunare ver +radunare radunare ver +radunarla radunare ver +radunarle radunare ver +radunarli radunare ver +radunarne radunare ver +radunarono radunare ver +radunarsi radunare ver +radunarvi radunare ver +radunasse radunare ver +radunassero radunare ver +radunata radunare ver +radunate radunare ver +radunatesi radunare ver +radunatevi radunare ver +radunati radunare ver +radunato radunare ver +radunava radunare ver +radunavano radunare ver +raduneranno radunare ver +radunerà radunare ver +raduni raduno nom +raduniamo radunare ver +radunino radunare ver +raduno raduno nom +radunò radunare ver +radura radura nom +radure radura nom +rafano rafano nom +raffa raffa nom +raffaellesca raffaellesco adj +raffaellesche raffaellesco adj +raffaelleschi raffaellesco adj +raffaellesco raffaellesco adj +raffazzonata raffazzonare ver +raffazzonate raffazzonare ver +raffazzonati raffazzonare ver +raffazzonato raffazzonare ver +raffazzono raffazzonare ver +raffe raffa nom +rafferma rafferma nom +raffermare raffermare ver +raffermarsi raffermare ver +raffermati raffermare ver +raffermato raffermare ver +raffermo raffermo adj +raffi raffio nom +raffica raffica nom +raffiche raffica nom +raffigura raffigurare ver +raffigurando raffigurare ver +raffigurandola raffigurare ver +raffigurandoli raffigurare ver +raffigurandolo raffigurare ver +raffigurandovi raffigurare ver +raffigurano raffigurare ver +raffigurante raffigurare ver +raffiguranti raffigurare ver +raffigurar raffigurare ver +raffigurare raffigurare ver +raffigurarla raffigurare ver +raffigurarli raffigurare ver +raffigurarlo raffigurare ver +raffigurarne raffigurare ver +raffigurarono raffigurare ver +raffigurarsi raffigurare ver +raffigurarvi raffigurare ver +raffigurasse raffigurare ver +raffigurassero raffigurare ver +raffigurata raffigurare ver +raffigurate raffigurare ver +raffigurati raffigurare ver +raffigurato raffigurare ver +raffigurava raffigurare ver +raffiguravano raffigurare ver +raffigurazione raffigurazione nom +raffigurazioni raffigurazione nom +raffigureranno raffigurare ver +raffigurerebbe raffigurare ver +raffigurerebbero raffigurare ver +raffigurerà raffigurare ver +raffiguri raffigurare ver +raffiguriamo raffigurare ver +raffigurino raffigurare ver +raffigurò raffigurare ver +raffina raffinare ver +raffinamenti raffinamento nom +raffinamento raffinamento nom +raffinando raffinare ver +raffinandone raffinare ver +raffinandosi raffinare ver +raffinano raffinare ver +raffinare raffinare ver +raffinarla raffinare ver +raffinarle raffinare ver +raffinarli raffinare ver +raffinarlo raffinare ver +raffinarne raffinare ver +raffinarono raffinare ver +raffinarsi raffinare ver +raffinata raffinato adj +raffinate raffinato adj +raffinatezza raffinatezza nom +raffinatezze raffinatezza nom +raffinati raffinato adj +raffinato raffinato adj +raffinatore raffinatore nom +raffinatori raffinatore nom +raffinatrice raffinatore adj +raffinatrici raffinatore adj +raffinava raffinare ver +raffinavano raffinare ver +raffinazione raffinazione nom +raffinazioni raffinazione nom +raffineria raffineria nom +raffinerie raffineria nom +raffini raffinare ver +raffinò raffinare ver +raffio raffio nom +rafforza rafforzare ver +rafforzamenti rafforzamento nom +rafforzamento rafforzamento nom +rafforzando rafforzare ver +rafforzandola rafforzare ver +rafforzandole rafforzare ver +rafforzandoli rafforzare ver +rafforzandolo rafforzare ver +rafforzandone rafforzare ver +rafforzandosi rafforzare ver +rafforzano rafforzare ver +rafforzante rafforzare ver +rafforzanti rafforzare ver +rafforzare rafforzare ver +rafforzarla rafforzare ver +rafforzarle rafforzare ver +rafforzarli rafforzare ver +rafforzarlo rafforzare ver +rafforzarmi rafforzare ver +rafforzarne rafforzare ver +rafforzarono rafforzare ver +rafforzarsi rafforzare ver +rafforzasse rafforzare ver +rafforzassero rafforzare ver +rafforzata rafforzare ver +rafforzate rafforzare ver +rafforzatesi rafforzare ver +rafforzati rafforzare ver +rafforzativa rafforzativo adj +rafforzativi rafforzativo adj +rafforzativo rafforzativo adj +rafforzato rafforzare ver +rafforzava rafforzare ver +rafforzavano rafforzare ver +rafforzeranno rafforzare ver +rafforzerebbe rafforzare ver +rafforzerebbero rafforzare ver +rafforzeremo rafforzare ver +rafforzerà rafforzare ver +rafforzi rafforzare ver +rafforziamo rafforzare ver +rafforzino rafforzare ver +rafforzo rafforzare ver +rafforzò rafforzare ver +raffredda raffreddare ver +raffreddamenti raffreddamento nom +raffreddamento raffreddamento nom +raffreddando raffreddare ver +raffreddandola raffreddare ver +raffreddandoli raffreddare ver +raffreddandolo raffreddare ver +raffreddandosi raffreddare ver +raffreddano raffreddare ver +raffreddante raffreddare ver +raffreddanti raffreddare ver +raffreddare raffreddare ver +raffreddarla raffreddare ver +raffreddarli raffreddare ver +raffreddarlo raffreddare ver +raffreddarne raffreddare ver +raffreddarono raffreddare ver +raffreddarsi raffreddare ver +raffreddasse raffreddare ver +raffreddassero raffreddare ver +raffreddata raffreddare ver +raffreddate raffreddare ver +raffreddati raffreddato adj +raffreddato raffreddare ver +raffreddava raffreddare ver +raffreddavano raffreddare ver +raffredderebbe raffreddare ver +raffredderà raffreddare ver +raffreddi raffreddare ver +raffreddino raffreddare ver +raffreddore raffreddore nom +raffreddori raffreddore nom +raffreddò raffreddare ver +raffrena raffrenare ver +raffrenare raffrenare ver +raffrescamento raffrescamento nom +raffronta raffrontare ver +raffrontabili raffrontabile adj +raffrontando raffrontare ver +raffrontandola raffrontare ver +raffrontandole raffrontare ver +raffrontano raffrontare ver +raffrontare raffrontare ver +raffrontarla raffrontare ver +raffrontarle raffrontare ver +raffrontarlo raffrontare ver +raffrontarsi raffrontare ver +raffrontata raffrontare ver +raffrontate raffrontare ver +raffrontati raffrontare ver +raffrontato raffrontare ver +raffronti raffronto nom +raffrontino raffrontare ver +raffronto raffronto nom +rafia rafia nom +rafie rafia nom +ragade ragade nom +ragadi ragade nom +raganella raganella nom +raganelle raganella nom +ragas ragas nom +ragazza ragazza|ragazzo nom +ragazzata ragazzata nom +ragazzate ragazzata nom +ragazze ragazza|ragazzo nom +ragazzi ragazzo nom +ragazzo ragazzo nom +rage ragia nom +raggela raggelare ver +raggelante raggelare ver +raggelanti raggelare ver +raggelare raggelare ver +raggelata raggelare ver +raggelati raggelare ver +raggelato raggelare ver +raggelò raggelare ver +raggi raggio nom +raggia raggiare ver +raggiano raggiare ver +raggiante raggiante adj +raggianti raggiante adj +raggiata raggiare ver +raggiate raggiato adj +raggiati raggiato adj +raggiato raggiato adj +raggiava raggiare ver +raggiera raggiera nom +raggiere raggiera nom +raggio raggio nom +raggira raggirare ver +raggirando raggirare ver +raggirandolo raggirare ver +raggirano raggirare ver +raggirare raggirare ver +raggirarle raggirare ver +raggirarli raggirare ver +raggirarlo raggirare ver +raggirarmi raggirare ver +raggirata raggirare ver +raggirate raggirare ver +raggirati raggirare ver +raggirato raggirare ver +raggirerà raggirare ver +raggiri raggiro nom +raggiro raggiro nom +raggirò raggirare ver +raggiunga raggiungere ver +raggiungano raggiungere ver +raggiunge raggiungere ver +raggiungemmo raggiungere ver +raggiungendo raggiungere ver +raggiungendola raggiungere ver +raggiungendoli raggiungere ver +raggiungendolo raggiungere ver +raggiungendone raggiungere ver +raggiungendosi raggiungere ver +raggiungente raggiungere ver +raggiungenti raggiungere ver +raggiunger raggiungere ver +raggiungerai raggiungere ver +raggiungeranno raggiungere ver +raggiungerci raggiungere ver +raggiungere raggiungere ver +raggiungerebbe raggiungere ver +raggiungerebbero raggiungere ver +raggiungerei raggiungere ver +raggiungeremmo raggiungere ver +raggiungeremo raggiungere ver +raggiungerete raggiungere ver +raggiungerla raggiungere ver +raggiungerle raggiungere ver +raggiungerli raggiungere ver +raggiungerlo raggiungere ver +raggiungermi raggiungere ver +raggiungerne raggiungere ver +raggiungersi raggiungere ver +raggiungerti raggiungere ver +raggiungervi raggiungere ver +raggiungerà raggiungere ver +raggiungerò raggiungere ver +raggiungesse raggiungere ver +raggiungessero raggiungere ver +raggiungessi raggiungere ver +raggiungete raggiungere ver +raggiungeva raggiungere ver +raggiungevano raggiungere ver +raggiungi raggiungere ver +raggiungiamo raggiungere ver +raggiungiate raggiungere ver +raggiungibile raggiungibile adj +raggiungibili raggiungibile adj +raggiungici raggiungere ver +raggiungile raggiungere ver +raggiungimenti raggiungimento nom +raggiungimento raggiungimento nom +raggiungo raggiungere ver +raggiungono raggiungere ver +raggiunse raggiungere ver +raggiunsero raggiungere ver +raggiunsi raggiungere ver +raggiunta raggiungere ver +raggiunte raggiungere ver +raggiunti raggiungere ver +raggiunto raggiungere ver +raggomitola raggomitolare ver +raggomitolandosi raggomitolare ver +raggomitolarsi raggomitolare ver +raggomitolata raggomitolare ver +raggomitolate raggomitolare ver +raggomitolati raggomitolare ver +raggomitolato raggomitolare ver +raggranella raggranellare ver +raggranellando raggranellare ver +raggranellare raggranellare ver +raggranellati raggranellare ver +raggranellato raggranellare ver +raggranellò raggranellare ver +raggrinzendo raggrinzire ver +raggrinzire raggrinzire ver +raggrinzirsi raggrinzire ver +raggrinzisce raggrinzire ver +raggrinziscono raggrinzire ver +raggrinzita raggrinzire ver +raggrinzite raggrinzire ver +raggrinziti raggrinzire ver +raggrinzito raggrinzire ver +raggruma raggrumare ver +raggrumare raggrumare ver +raggrumarsi raggrumare ver +raggrumata raggrumare ver +raggrumati raggrumare ver +raggrumato raggrumare ver +raggruppa raggruppare ver +raggruppamenti raggruppamento nom +raggruppamento raggruppamento nom +raggruppando raggruppare ver +raggruppandole raggruppare ver +raggruppandoli raggruppare ver +raggruppandone raggruppare ver +raggruppandosi raggruppare ver +raggruppano raggruppare ver +raggruppante raggruppare ver +raggruppanti raggruppare ver +raggrupparci raggruppare ver +raggruppare raggruppare ver +raggrupparla raggruppare ver +raggrupparle raggruppare ver +raggrupparli raggruppare ver +raggrupparne raggruppare ver +raggrupparono raggruppare ver +raggrupparsi raggruppare ver +raggruppasse raggruppare ver +raggruppassero raggruppare ver +raggruppata raggruppare ver +raggruppate raggruppare ver +raggruppatesi raggruppare ver +raggruppati raggruppare ver +raggruppato raggruppare ver +raggruppava raggruppare ver +raggruppavano raggruppare ver +raggrupperanno raggruppare ver +raggrupperebbe raggruppare ver +raggrupperei raggruppare ver +raggrupperà raggruppare ver +raggruppi raggruppare ver +raggruppiamo raggruppare ver +raggruppino raggruppare ver +raggruppo raggruppare ver +raggruppò raggruppare ver +ragguagli ragguaglio nom +ragguaglia ragguagliare ver +ragguagliando ragguagliare ver +ragguagliano ragguagliare ver +ragguagliarci ragguagliare ver +ragguagliare ragguagliare ver +ragguagliarli ragguagliare ver +ragguagliarmi ragguagliare ver +ragguagliata ragguagliare ver +ragguagliati ragguagliare ver +ragguagliato ragguagliare ver +ragguagliava ragguagliare ver +ragguaglio ragguaglio nom +ragguagliò ragguagliare ver +ragguardevole ragguardevole adj +ragguardevoli ragguardevole adj +ragia ragia nom +ragion ragione nom +ragiona ragionare ver +ragionaci ragionare ver +ragionale ragionare ver +ragionamenti ragionamento nom +ragionamento ragionamento nom +ragionando ragionare ver +ragionandoci ragionare ver +ragionano ragionare ver +ragionante ragionare ver +ragionanti ragionare ver +ragionar ragionare ver +ragionarci ragionare ver +ragionare ragionare ver +ragionarne ragionare ver +ragionarono ragionare ver +ragionasse ragionare ver +ragionassero ragionare ver +ragionassi ragionare ver +ragionassimo ragionare ver +ragionata ragionare ver +ragionate ragionato adj +ragionateci ragionare ver +ragionati ragionato adj +ragionato ragionare ver +ragionatore ragionatore nom +ragionatori ragionatore nom +ragionatrice ragionatore nom +ragionava ragionare ver +ragionavano ragionare ver +ragionavo ragionare ver +ragione ragione nom +ragionerei ragionare ver +ragioneremo ragionare ver +ragioneria ragioneria nom +ragionerie ragioneria nom +ragionerà ragionare ver +ragionerò ragionare ver +ragionevole ragionevole adj +ragionevolezza ragionevolezza nom +ragionevoli ragionevole adj +ragionevolmente ragionevolmente adv +ragioni ragione nom +ragioniamo ragionare ver +ragioniamoci ragionare ver +ragioniate ragionare ver +ragioniera ragioniere nom +ragioniere ragioniere nom +ragionieri ragioniere nom +ragionieristica ragionieristico adj +ragionino ragionare ver +ragiono ragionare ver +ragionò ragionare ver +ragià ragià nom +raglan raglan adj +ragli raglio nom +raglia ragliare ver +ragliante ragliare ver +raglianti ragliare ver +ragliare ragliare ver +ragliato ragliare ver +raglio raglio nom +ragliò ragliare ver +ragna ragna nom +ragnatela ragnatela nom +ragnatele ragnatela nom +ragne ragna nom +ragni ragno nom +ragno ragno nom +ragtime ragtime nom +ragù ragù nom +rai rai nom +raia raia nom +raid raid nom +raie raia nom +raion raion nom +rajah rajah nom +ralenti ralenti nom +ralinga ralinga nom +ralinghe ralinga nom +ralla ralla nom +ralle ralla nom +rallegra rallegrare ver +rallegramenti rallegramento nom +rallegrando rallegrare ver +rallegrandosi rallegrare ver +rallegrano rallegrare ver +rallegrante rallegrare ver +rallegranti rallegrare ver +rallegrar rallegrare ver +rallegrarcene rallegrare ver +rallegrare rallegrare ver +rallegrarla rallegrare ver +rallegrarlo rallegrare ver +rallegrarmi rallegrare ver +rallegrarono rallegrare ver +rallegrarsi rallegrare ver +rallegrarvi rallegrare ver +rallegrata rallegrare ver +rallegrate rallegrare ver +rallegratevi rallegrare ver +rallegrati rallegrare ver +rallegrato rallegrare ver +rallegrava rallegrare ver +rallegravano rallegrare ver +rallegreranno rallegrare ver +rallegrerà rallegrare ver +rallegri rallegrare ver +rallegriamo rallegrare ver +rallegriamoci rallegrare ver +rallegrino rallegrare ver +rallegro rallegrare ver +rallegrò rallegrare ver +rallenta rallentare ver +rallentamenti rallentamento nom +rallentamento rallentamento nom +rallentando rallentare ver +rallentandogli rallentare ver +rallentandola rallentare ver +rallentandole rallentare ver +rallentandoli rallentare ver +rallentandolo rallentare ver +rallentandone rallentare ver +rallentandosi rallentare ver +rallentano rallentare ver +rallentante rallentare ver +rallentare rallentare ver +rallentarla rallentare ver +rallentarle rallentare ver +rallentarli rallentare ver +rallentarlo rallentare ver +rallentarne rallentare ver +rallentarono rallentare ver +rallentarsi rallentare ver +rallentasse rallentare ver +rallentassero rallentare ver +rallentata rallentare ver +rallentate rallentare ver +rallentati rallentare ver +rallentato rallentare ver +rallentatore rallentatore nom +rallentatori rallentatore nom +rallentava rallentare ver +rallentavano rallentare ver +rallenteranno rallentare ver +rallenterebbe rallentare ver +rallenterebbero rallentare ver +rallenterà rallentare ver +rallenti rallentare ver +rallentino rallentare ver +rallentò rallentare ver +rally rally nom +rama ramare ver +ramaci ramare ver +ramadan ramadan nom +ramages ramages nom +ramagli ramare ver +ramaglia ramaglia nom +ramaglie ramaglia nom +ramai ramaio nom +ramaio ramaio nom +ramaioli ramaiolo nom +ramaiolo ramaiolo nom +ramala ramare ver +ramando ramare ver +ramandolo ramare ver +ramane ramare ver +ramano ramare ver +ramanzina ramanzina nom +ramanzine ramanzina nom +ramar ramare ver +ramarri ramarro nom +ramarro ramarro nom +ramasse ramare ver +ramata ramare ver +ramate ramato adj +ramati ramato adj +ramato ramato adj +ramatura ramatura nom +ramature ramatura nom +ramazza ramazza nom +ramazzano ramazzare ver +ramazzare ramazzare ver +ramazzata ramazzare ver +ramazze ramazza nom +ramazzo ramazzare ver +rame rame nom +rameica rameico adj +rameici rameico adj +rameico rameico adj +rameosa rameoso adj +rameoso rameoso adj +ramerino ramerino nom +rametti rametto nom +rametto rametto nom +rami rame|ramo nom +ramifera ramifero adj +ramifero ramifero adj +ramifica ramificare ver +ramificaci ramificare ver +ramificando ramificare ver +ramificandolo ramificare ver +ramificandosi ramificare ver +ramificano ramificare ver +ramificante ramificare ver +ramificanti ramificare ver +ramificare ramificare ver +ramificarono ramificare ver +ramificarsi ramificare ver +ramificata ramificare ver +ramificate ramificato adj +ramificati ramificato adj +ramificato ramificare ver +ramificava ramificare ver +ramificavano ramificare ver +ramificazione ramificazione nom +ramificazioni ramificazione nom +ramificheranno ramificare ver +ramifichi ramificare ver +ramificò ramificare ver +ramina ramina nom +ramine ramina nom +raminghi ramingo nom +ramingo ramingo nom +ramini ramino nom +ramino ramino nom +ramiè ramiè nom +rammagliatura rammagliatura nom +rammarica rammaricare ver +rammaricando rammaricare ver +rammaricandomi rammaricare ver +rammaricandosi rammaricare ver +rammaricano rammaricare ver +rammaricare rammaricare ver +rammaricarmi rammaricare ver +rammaricarono rammaricare ver +rammaricarsi rammaricare ver +rammaricasse rammaricare ver +rammaricata rammaricare ver +rammaricato rammaricare ver +rammaricava rammaricare ver +rammaricherà rammaricare ver +rammarichi rammaricare ver +rammarichiamo rammaricare ver +rammarico rammarico nom +rammaricò rammaricare ver +rammenda rammendare ver +rammendando rammendare ver +rammendare rammendare ver +rammendati rammendare ver +rammendatrice rammendatore nom +rammendatrici rammendatore nom +rammendatura rammendatura nom +rammendavano rammendare ver +rammendi rammendo nom +rammendo rammendo nom +rammenta rammentare ver +rammentando rammentare ver +rammentandogli rammentare ver +rammentandole rammentare ver +rammentano rammentare ver +rammentarci rammentare ver +rammentare rammentare ver +rammentargli rammentare ver +rammentarle rammentare ver +rammentarlo rammentare ver +rammentarsi rammentare ver +rammentarti rammentare ver +rammentarvi rammentare ver +rammentasse rammentare ver +rammentata rammentare ver +rammentate rammentare ver +rammentati rammentare ver +rammentato rammentare ver +rammentava rammentare ver +rammentavano rammentare ver +rammenterebbe rammentare ver +rammenterei rammentare ver +rammenteremo rammentare ver +rammenterà rammentare ver +rammenterò rammentare ver +rammenti rammentare ver +rammentiamo rammentare ver +rammentiate rammentare ver +rammentino rammentare ver +rammento rammentare ver +rammentò rammentare ver +rammodernare rammodernare ver +rammodernata rammodernare ver +rammodernati rammodernare ver +rammodernato rammodernare ver +rammodernò rammodernare ver +rammollendo rammollire ver +rammollimenti rammollimento nom +rammollimento rammollimento nom +rammollire rammollire ver +rammollirsi rammollire ver +rammolliscono rammollire ver +rammollissero rammollire ver +rammollita rammollire ver +rammollite rammollire ver +rammolliti rammollito adj +rammollito rammollire ver +rammorbidite rammorbidire ver +ramnacee ramnacee nom +ramno ramno nom +ramo ramo nom +ramolacci ramolaccio nom +ramolaccio ramolaccio nom +ramosa ramoso adj +ramoscelli ramoscello nom +ramoscello ramoscello nom +ramose ramoso adj +ramosi ramoso adj +ramosità ramosità nom +ramoso ramoso adj +rampa rampa nom +rampai rampare ver +rampano rampare ver +rampante rampante adj +rampanti rampante adj +rampar rampare ver +rampata rampare ver +rampe rampa nom +rampi rampare ver +rampicante rampicante adj +rampicanti rampicante adj +rampichini rampichino nom +rampichino rampichino nom +rampini rampino nom +rampino rampino nom +rampo rampare ver +rampogna rampogna nom +rampognato rampognare ver +rampogne rampogna nom +rampolla rampollare ver +rampollano rampollare ver +rampolli rampollo nom +rampollo rampollo nom +rampone rampone nom +ramponi rampone nom +ramponiere ramponiere nom +ramponieri ramponiere nom +rampò rampare ver +ramò ramare ver +rana rana adj +ranch ranch nom +ranci rancio adj +rancia rancio adj +rancida rancido adj +rancide rancido adj +rancido rancido adj +rancidumi rancidume nom +rancio rancio adj +rancore rancore nom +rancori rancore nom +randa randa nom +randagi randagio adj +randagia randagio adj +randagie randagio adj +randagio randagio adj +rande randa nom +randella randellare ver +randellare randellare ver +randellata randellata nom +randellate randellata nom +randelli randello nom +randello randello nom +rane rana nom +ranetta ranetta nom +ranforinco ranforinco nom +ranger ranger nom +ranghi rango nom +rango rango nom +ranista ranista nom +ranisti ranista nom +ranni ranno nom +rannicchia rannicchiare ver +rannicchiandosi rannicchiare ver +rannicchiare rannicchiare ver +rannicchiarsi rannicchiare ver +rannicchiata rannicchiare ver +rannicchiate rannicchiare ver +rannicchiati rannicchiare ver +rannicchiato rannicchiare ver +rannicchio rannicchiare ver +rannicchiò rannicchiare ver +ranno ranno nom +rannuvolò rannuvolare ver +ranocchi ranocchio nom +ranocchia ranocchia nom +ranocchie ranocchia nom +ranocchio ranocchio nom +rantola rantolare ver +rantolando rantolare ver +rantolante rantolare ver +rantolare rantolare ver +rantolava rantolare ver +rantoli rantolio|rantolo nom +rantolio rantolio nom +rantolo rantolo nom +ranuncolacee ranuncolacee nom +ranuncoli ranuncolo nom +ranuncolo ranuncolo nom +rapa rapa adj +rapace rapace adj +rapaci rapace nom +rapacità rapacità nom +rapai rapare ver +rapala rapare ver +rapale rapare ver +rapalo rapare ver +rapano rapare ver +rapar rapare ver +rapare rapare ver +raparti rapare ver +rapata rapare ver +rapati rapare ver +rapato rapare ver +rapava rapare ver +rapavi rapare ver +rape rapa nom +rapendo rapire ver +rapendola rapire ver +rapendoli rapire ver +rapendolo rapire ver +rapendone rapire ver +raperino raperino nom +raperonzoli raperonzolo nom +raperonzolo raperonzolo nom +rapi rapare ver +rapiamo rapare|rapire ver +rapida rapido adj +rapidamente rapidamente adv +rapide rapido adj +rapidi rapido adj +rapidissimi rapidissimo adj +rapidità rapidità nom +rapido rapido adj +rapimenti rapimento nom +rapimento rapimento nom +rapina rapina nom +rapinammo rapinare ver +rapinando rapinare ver +rapinandoli rapinare ver +rapinano rapinare ver +rapinare rapinare ver +rapinarla rapinare ver +rapinarle rapinare ver +rapinarli rapinare ver +rapinarlo rapinare ver +rapinarono rapinare ver +rapinata rapinare ver +rapinate rapinare ver +rapinati rapinare ver +rapinato rapinare ver +rapinatore rapinatore nom +rapinatori rapinatore nom +rapinatrice rapinatore nom +rapinatrici rapinatore nom +rapinava rapinare ver +rapinavano rapinare ver +rapine rapina nom +rapineranno rapinare ver +rapinerà rapinare ver +rapini rapinare ver +rapino rapare ver +rapinò rapinare ver +rapir rapire ver +rapiranno rapire ver +rapire rapire ver +rapirebbero rapire ver +rapirgli rapire ver +rapirla rapire ver +rapirle rapire ver +rapirli rapire ver +rapirlo rapire ver +rapirne rapire ver +rapirono rapire ver +rapirà rapire ver +rapisca rapire ver +rapiscano rapire ver +rapisce rapire ver +rapisci rapire ver +rapiscimi rapire ver +rapisco rapire ver +rapiscono rapire ver +rapisse rapire ver +rapissero rapire ver +rapita rapire ver +rapite rapire ver +rapitemi rapire ver +rapiti rapire ver +rapito rapire ver +rapitore rapitore nom +rapitori rapitore nom +rapitrice rapitore nom +rapitrici rapitore nom +rapiva rapire ver +rapivano rapire ver +rapo rapare ver +rappacifica rappacificare ver +rappacificamento rappacificamento nom +rappacificando rappacificare ver +rappacificandosi rappacificare ver +rappacificano rappacificare ver +rappacificare rappacificare ver +rappacificarli rappacificare ver +rappacificarono rappacificare ver +rappacificarsi rappacificare ver +rappacificata rappacificare ver +rappacificati rappacificare ver +rappacificato rappacificare ver +rappacificazione rappacificazione nom +rappacificazioni rappacificazione nom +rappacificò rappacificare ver +rappezzamenti rappezzamento nom +rappezzare rappezzare ver +rappezzata rappezzare ver +rappezzate rappezzare ver +rappezzati rappezzare ver +rappezzato rappezzare ver +rappezzi rappezzo nom +rappezzo rappezzo nom +rapporta rapportare ver +rapportabile rapportabile adj +rapportabili rapportabile adj +rapportando rapportare ver +rapportandoci rapportare ver +rapportandola rapportare ver +rapportandole rapportare ver +rapportandoli rapportare ver +rapportandolo rapportare ver +rapportandosi rapportare ver +rapportano rapportare ver +rapportarci rapportare ver +rapportare rapportare ver +rapportarla rapportare ver +rapportarli rapportare ver +rapportarlo rapportare ver +rapportarmi rapportare ver +rapportarono rapportare ver +rapportarsi rapportare ver +rapportarti rapportare ver +rapportata rapportare ver +rapportate rapportare ver +rapportati rapportare ver +rapportato rapportare ver +rapportatore rapportatore nom +rapportava rapportare ver +rapportavano rapportare ver +rapporterà rapportare ver +rapporti rapporto nom +rapportiamo rapportare ver +rapportino rapportare ver +rapporto rapporto nom +rapportò rapportare ver +rapprende rapprendere ver +rapprendere rapprendere ver +rapprendeva rapprendere ver +rapprendono rapprendere ver +rappresa rapprendere ver +rappresaglia rappresaglia nom +rappresaglie rappresaglia nom +rapprese rapprendere ver +rappresenta rappresentare ver +rappresentabile rappresentabile adj +rappresentabili rappresentabile adj +rappresentando rappresentare ver +rappresentandoci rappresentare ver +rappresentandola rappresentare ver +rappresentandole rappresentare ver +rappresentandoli rappresentare ver +rappresentandolo rappresentare ver +rappresentandone rappresentare ver +rappresentandosi rappresentare ver +rappresentandovi rappresentare ver +rappresentano rappresentare ver +rappresentante rappresentante nom +rappresentanti rappresentante nom +rappresentanza rappresentanza nom +rappresentanze rappresentanza nom +rappresentar rappresentare ver +rappresentarci rappresentare ver +rappresentare rappresentare ver +rappresentargli rappresentare ver +rappresentarla rappresentare ver +rappresentarle rappresentare ver +rappresentarli rappresentare ver +rappresentarlo rappresentare ver +rappresentarmi rappresentare ver +rappresentarne rappresentare ver +rappresentarono rappresentare ver +rappresentarsi rappresentare ver +rappresentarti rappresentare ver +rappresentarvi rappresentare ver +rappresentasi rappresentare ver +rappresentasse rappresentare ver +rappresentassero rappresentare ver +rappresentassi rappresentare ver +rappresentata rappresentare ver +rappresentate rappresentare ver +rappresentati rappresentare ver +rappresentativa rappresentativo adj +rappresentative rappresentativo adj +rappresentativi rappresentativo adj +rappresentatività rappresentatività nom +rappresentativo rappresentativo adj +rappresentato rappresentare ver +rappresentava rappresentare ver +rappresentavamo rappresentare ver +rappresentavano rappresentare ver +rappresentavo rappresentare ver +rappresentazione rappresentazione nom +rappresentazioni rappresentazione nom +rappresenteranno rappresentare ver +rappresenterebbe rappresentare ver +rappresenterebbero rappresentare ver +rappresenterei rappresentare ver +rappresenteremo rappresentare ver +rappresenterà rappresentare ver +rappresenti rappresentare ver +rappresentiamo rappresentare ver +rappresentino rappresentare ver +rappresento rappresentare ver +rappresentò rappresentare ver +rappreso rapprendere ver +rapsodi rapsodo nom +rapsodia rapsodia nom +rapsodica rapsodico adj +rapsodiche rapsodico adj +rapsodici rapsodico adj +rapsodico rapsodico adj +rapsodie rapsodia nom +rapsodo rapsodo nom +raptus raptus nom +rapì rapire ver +rapò rapare ver +rara raro adj +raramente raramente adv +rare raro adj +rarefacendo rarefare ver +rarefacendosi rarefare ver +rarefanno rarefare ver +rarefare rarefare ver +rarefarsi rarefare ver +rarefatta rarefare ver +rarefatte rarefare ver +rarefatti rarefare ver +rarefatto rarefare ver +rarefazione rarefazione nom +rarefazioni rarefazione nom +rari raro adj +rarità rarità nom +raro raro adj +ras ras nom +rasa radere ver +rasai rasare ver +rasala rasare ver +rasando rasare ver +rasandole rasare ver +rasandolo rasare ver +rasandosi rasare ver +rasano rasare ver +rasante rasare ver +rasanti rasare ver +rasar rasare ver +rasare rasare ver +rasarlo rasare ver +rasarono rasare ver +rasarsi rasare ver +rasata rasare ver +rasate rasato adj +rasatello rasatello nom +rasati rasato adj +rasato rasare ver +rasatura rasatura nom +rasature rasatura nom +rasavano rasare ver +raschi raschio nom +raschia raschiare ver +raschiamento raschiamento nom +raschiando raschiare ver +raschiandolo raschiare ver +raschiano raschiare ver +raschiante raschiare ver +raschianti raschiare ver +raschiare raschiare ver +raschiata raschiare ver +raschiate raschiare ver +raschiati raschiare ver +raschiato raschiare ver +raschiatoi raschiatoio nom +raschiatoio raschiatoio nom +raschiatura raschiatura nom +raschiature raschiatura nom +raschiava raschiare ver +raschiavano raschiare ver +raschietti raschietto nom +raschietto raschietto nom +raschini raschino nom +raschio raschio nom +rase raso adj +rasenta rasentare ver +rasentando rasentare ver +rasentano rasentare ver +rasentante rasentare ver +rasentanti rasentare ver +rasentare rasentare ver +rasentarono rasentare ver +rasentato rasentare ver +rasentava rasentare ver +rasentavano rasentare ver +rasente rasente pre +rasenterà rasentare ver +rasenti rasentare ver +rasentò rasentare ver +raserei rasare ver +rasero radere ver +rasi raso nom +rasino rasare ver +raso radere ver +rasoi rasoio nom +rasoiata rasoiata nom +rasoiate rasoiata nom +rasoio rasoio nom +raspa raspa nom +raspando raspare ver +raspano raspare ver +raspante raspare ver +raspanti raspare ver +raspare raspare ver +rasparla raspare ver +raspata raspare ver +raspato raspare ver +raspe raspa nom +raspi raspo nom +raspini raspino nom +raspino raspare ver +raspo raspo nom +raspolli raspollo nom +rassega rassegare ver +rassegna rassegna nom +rassegnando rassegnare ver +rassegnandosi rassegnare ver +rassegnano rassegnare ver +rassegnarci rassegnare ver +rassegnare rassegnare ver +rassegnarle rassegnare ver +rassegnarmi rassegnare ver +rassegnarono rassegnare ver +rassegnarsi rassegnare ver +rassegnarti rassegnare ver +rassegnarvi rassegnare ver +rassegnasse rassegnare ver +rassegnassero rassegnare ver +rassegnata rassegnare ver +rassegnate rassegnare ver +rassegnatevi rassegnare ver +rassegnati rassegnare ver +rassegnato rassegnare ver +rassegnava rassegnare ver +rassegnavano rassegnare ver +rassegnazione rassegnazione nom +rassegnazioni rassegnazione nom +rassegne rassegna nom +rassegnerà rassegnare ver +rassegnerò rassegnare ver +rassegni rassegnare ver +rassegnino rassegnare ver +rassegno rassegnare ver +rassegnò rassegnare ver +rasserena rasserenare ver +rasserenamento rasserenamento nom +rasserenando rasserenare ver +rasserenandosi rasserenare ver +rasserenano rasserenare ver +rasserenante rasserenare ver +rasserenanti rasserenare ver +rasserenare rasserenare ver +rasserenarla rasserenare ver +rasserenarlo rasserenare ver +rasserenarsi rasserenare ver +rasserenarti rasserenare ver +rasserenata rasserenare ver +rasserenati rasserenare ver +rasserenato rasserenare ver +rasserenatrice rasserenatore adj +rasserenava rasserenare ver +rasserenerà rasserenare ver +rassereni rasserenare ver +rasserenò rasserenare ver +rassetta rassettare ver +rassettare rassettare ver +rassettata rassettare ver +rassettati rassettare ver +rassettato rassettare ver +rassettatura rassettatura nom +rassetto rassettare ver +rassicura rassicurare ver +rassicurai rassicurare ver +rassicurami rassicurare ver +rassicurando rassicurare ver +rassicurandola rassicurare ver +rassicurandoli rassicurare ver +rassicurandolo rassicurare ver +rassicurandosi rassicurare ver +rassicurandoti rassicurare ver +rassicurano rassicurare ver +rassicurante rassicurare ver +rassicuranti rassicurare ver +rassicurarci rassicurare ver +rassicurare rassicurare ver +rassicurarla rassicurare ver +rassicurarli rassicurare ver +rassicurarlo rassicurare ver +rassicurarmi rassicurare ver +rassicurarono rassicurare ver +rassicurarsi rassicurare ver +rassicurarti rassicurare ver +rassicurarvi rassicurare ver +rassicurata rassicurare ver +rassicurate rassicurare ver +rassicurati rassicurare ver +rassicurato rassicurare ver +rassicurava rassicurare ver +rassicuravano rassicurare ver +rassicurazione rassicurazione nom +rassicurazioni rassicurazione nom +rassicurerebbe rassicurare ver +rassicurerà rassicurare ver +rassicuri rassicurare ver +rassicuro rassicurare ver +rassicurò rassicurare ver +rassodamento rassodamento nom +rassodando rassodare ver +rassodante rassodare ver +rassodare rassodare ver +rassodata rassodare ver +rassodate rassodare ver +rassomigli rassomigliare ver +rassomiglia rassomigliare ver +rassomigliando rassomigliare ver +rassomigliano rassomigliare ver +rassomigliante rassomigliante adj +rassomiglianti rassomigliante adj +rassomiglianza rassomiglianza nom +rassomiglianze rassomiglianza nom +rassomigliare rassomigliare ver +rassomigliarsi rassomigliare ver +rassomigliasse rassomigliare ver +rassomigliava rassomigliare ver +rassomigliavano rassomigliare ver +rassomiglierebbe rassomigliare ver +rassomiglierò rassomigliare ver +rassomiglino rassomigliare ver +rastrella rastrellare ver +rastrellamenti rastrellamento nom +rastrellamento rastrellamento nom +rastrellando rastrellare ver +rastrellano rastrellare ver +rastrellare rastrellare ver +rastrellarono rastrellare ver +rastrellasse rastrellare ver +rastrellata rastrellare ver +rastrellate rastrellare ver +rastrellati rastrellare ver +rastrellato rastrellare ver +rastrellavano rastrellare ver +rastrelli rastrello nom +rastrelliera rastrelliera nom +rastrelliere rastrelliera nom +rastrello rastrello nom +rastrellò rastrellare ver +rastrema rastremare ver +rastremando rastremare ver +rastremandosi rastremare ver +rastremano rastremare ver +rastremarsi rastremare ver +rastremata rastremare ver +rastremate rastremare ver +rastremati rastremare ver +rastremato rastremare ver +rastremava rastremare ver +rastremavano rastremare ver +rastremazione rastremazione nom +rasura rasura nom +rasò rasare ver +rata rato adj +ratafià ratafià nom +rate rato adj +rateale rateale adj +rateali rateale adj +rateare rateare ver +rateazione rateazione nom +ratei rateo nom +rateizzare rateizzare ver +rateizzata rateizzare ver +rateizzate rateizzare ver +rateizzati rateizzare ver +rateizzato rateizzare ver +rateizzazione rateizzazione nom +rateo rateo nom +rati rato adj +ratiera ratiera nom +ratifica ratifica nom +ratificaci ratificare ver +ratificando ratificare ver +ratificandone ratificare ver +ratificano ratificare ver +ratificanti ratificare ver +ratificare ratificare ver +ratificarla ratificare ver +ratificarli ratificare ver +ratificarlo ratificare ver +ratificarono ratificare ver +ratificasse ratificare ver +ratificassero ratificare ver +ratificata ratificare ver +ratificate ratificare ver +ratificati ratificare ver +ratificato ratificare ver +ratificava ratificare ver +ratificavano ratificare ver +ratificazione ratificazione nom +ratificazioni ratificazione nom +ratifiche ratifica nom +ratificheranno ratificare ver +ratificherà ratificare ver +ratifichi ratificare ver +ratifico ratificare ver +ratificò ratificare ver +rato rato adj +ratta ratto adj +ratte ratto adj +rattenne rattenere ver +rattenuta rattenere ver +rattenuto rattenere ver +ratti ratto adj +ratto ratto adj +rattoppa rattoppare ver +rattoppando rattoppare ver +rattoppare rattoppare ver +rattoppata rattoppare ver +rattoppate rattoppare ver +rattoppati rattoppare ver +rattoppato rattoppare ver +rattoppi rattoppo nom +rattoppo rattoppo nom +rattrappire rattrappire ver +rattrappisce rattrappire ver +rattrappita rattrappire ver +rattrappite rattrappire ver +rattrappiti rattrappire ver +rattrappito rattrappire ver +rattrista rattristare ver +rattristano rattristare ver +rattristare rattristare ver +rattristarla rattristare ver +rattristarli rattristare ver +rattristarmi rattristare ver +rattristarono rattristare ver +rattristarsi rattristare ver +rattristata rattristare ver +rattristate rattristare ver +rattristati rattristare ver +rattristato rattristare ver +rattristava rattristare ver +rattristi rattristare ver +rattristo rattristare ver +rattristò rattristare ver +raucedine raucedine nom +ravanelli ravanello nom +ravanello ravanello nom +ravaneti ravaneto nom +raveggiolo raveggiolo nom +raviera raviera nom +ravioli raviolo nom +raviolo raviolo nom +ravizzone ravizzone nom +ravveda ravvedersi ver +ravvedano ravvedersi ver +ravvede ravvedersi ver +ravvedendosi ravvedersi ver +ravvedere ravvedersi ver +ravvedermi ravvedersi ver +ravvedersi ravvedersi ver +ravvederà ravvedersi ver +ravvedesse ravvedersi ver +ravvedete ravvedersi ver +ravvedetevi ravvedersi ver +ravvedeva ravvedersi ver +ravvedi ravvedersi ver +ravvedimenti ravvedimento nom +ravvedimento ravvedimento nom +ravvediti ravvedersi ver +ravvedo ravvedersi ver +ravvedono ravvedersi ver +ravvia ravviare ver +ravviare ravviare ver +ravvicina ravvicinare ver +ravvicinamenti ravvicinamento nom +ravvicinamento ravvicinamento nom +ravvicinandosi ravvicinare ver +ravvicinare ravvicinare ver +ravvicinarlo ravvicinare ver +ravvicinarsi ravvicinare ver +ravvicinata ravvicinare ver +ravvicinate ravvicinare ver +ravvicinati ravvicinare ver +ravvicinato ravvicinare ver +ravvicinò ravvicinare ver +ravvide ravvedersi ver +ravvisa ravvisare ver +ravvisabile ravvisabile adj +ravvisabili ravvisabile adj +ravvisai ravvisare ver +ravvisando ravvisare ver +ravvisandone ravvisare ver +ravvisandovi ravvisare ver +ravvisano ravvisare ver +ravvisare ravvisare ver +ravvisarlo ravvisare ver +ravvisarne ravvisare ver +ravvisarono ravvisare ver +ravvisarsi ravvisare ver +ravvisarvi ravvisare ver +ravvisasse ravvisare ver +ravvisassero ravvisare ver +ravvisata ravvisare ver +ravvisate ravvisare ver +ravvisati ravvisare ver +ravvisato ravvisare ver +ravvisava ravvisare ver +ravvisavano ravvisare ver +ravvisavo ravvisare ver +ravviseranno ravvisare ver +ravviserebbe ravvisare ver +ravviserei ravvisare ver +ravviserà ravvisare ver +ravvisi ravvisare ver +ravvisiamo ravvisare ver +ravvisino ravvisare ver +ravviso ravvisare ver +ravvisò ravvisare ver +ravvolgere ravvolgere ver +ravvolse ravvolgere ver +ravvolta ravvolgere ver +ravvolte ravvolgere ver +ravvolti ravvolgere ver +ravvolto ravvolgere ver +rayon rayon nom +raziocinante raziocinante adj +raziocinanti raziocinante adj +raziocini raziocinio nom +raziocinio raziocinio nom +raziocino raziocinare ver +raziona razionare ver +razionale razionale adj +razionali razionale adj +razionalismo razionalismo nom +razionalista razionalista nom +razionaliste razionalista nom +razionalisti razionalista nom +razionalistica razionalistico adj +razionalistiche razionalistico adj +razionalistici razionalistico adj +razionalistico razionalistico adj +razionalità razionalità nom +razionalizza razionalizzare ver +razionalizzando razionalizzare ver +razionalizzandola razionalizzare ver +razionalizzandoli razionalizzare ver +razionalizzandone razionalizzare ver +razionalizzano razionalizzare ver +razionalizzante razionalizzare ver +razionalizzanti razionalizzare ver +razionalizzare razionalizzare ver +razionalizzarla razionalizzare ver +razionalizzarli razionalizzare ver +razionalizzarlo razionalizzare ver +razionalizzarne razionalizzare ver +razionalizzarono razionalizzare ver +razionalizzarsi razionalizzare ver +razionalizzata razionalizzare ver +razionalizzate razionalizzare ver +razionalizzati razionalizzare ver +razionalizzato razionalizzare ver +razionalizzava razionalizzare ver +razionalizzazione razionalizzazione nom +razionalizzazioni razionalizzazione nom +razionalizzi razionalizzare ver +razionalizzo razionalizzare ver +razionalizzò razionalizzare ver +razionalmente razionalmente adv +razionamenti razionamento nom +razionamento razionamento nom +razionando razionare ver +razionare razionare ver +razionarle razionare ver +razionarono razionare ver +razionata razionare ver +razionate razionare ver +razionati razionare ver +razionato razionare ver +razione razione nom +razioni razione nom +razionò razionare ver +razza razza nom +razzatori razzatore nom +razze razza nom +razzi razzo nom +razzia razzia nom +razziale razziale adj +razziali razziale adj +razziando razziare ver +razziandole razziare ver +razziandone razziare ver +razziano razziare ver +razziare razziare ver +razziargli razziare ver +razziarli razziare ver +razziarne razziare ver +razziarono razziare ver +razziata razziare ver +razziate razziare ver +razziati razziare ver +razziato razziare ver +razziatore razziatore nom +razziatori razziatore nom +razziatrici razziatore adj +razziava razziare ver +razziavano razziare ver +razzie razzia nom +razzio razziare ver +razzismi razzismo nom +razzismo razzismo nom +razzista razzista adj +razziste razzista adj +razzisti razzista adj +razzistica razzistico adj +razzistiche razzistico adj +razzistici razzistico adj +razzistico razzistico adj +razziò razziare ver +razzo razzo nom +razzola razzolare ver +razzolando razzolare ver +razzolano razzolare ver +razzolare razzolare ver +razzolato razzolare ver +razzoli razzolare ver +razzoliamo razzolare ver +razzolo razzolare ver +re re nom +rea reo adj +reagendo reagire ver +reagente reagente nom +reagenti reagente nom +reagiamo reagire ver +reagii reagire ver +reagiranno reagire ver +reagire reagire ver +reagirebbe reagire ver +reagirebbero reagire ver +reagirei reagire ver +reagireste reagire ver +reagiresti reagire ver +reagirono reagire ver +reagirà reagire ver +reagisca reagire ver +reagiscano reagire ver +reagisce reagire ver +reagisci reagire ver +reagisco reagire ver +reagiscono reagire ver +reagisse reagire ver +reagissero reagire ver +reagita reagire ver +reagite reagire ver +reagiti reagire ver +reagito reagire ver +reagiva reagire ver +reagivano reagire ver +reagivo reagire ver +reagì reagire ver +reale reale adj +reali reale adj +realismi realismo nom +realismo realismo nom +realista realista nom +realiste realista nom +realisti realista nom +realistica realistico adj +realisticamente realisticamente adv +realistiche realistico adj +realistici realistico adj +realistico realistico adj +realizza realizzare ver +realizzabile realizzabile adj +realizzabili realizzabile adj +realizzabilità realizzabilità nom +realizzai realizzare ver +realizzammo realizzare ver +realizzando realizzare ver +realizzandola realizzare ver +realizzandole realizzare ver +realizzandoli realizzare ver +realizzandolo realizzare ver +realizzandone realizzare ver +realizzandosi realizzare ver +realizzandovi realizzare ver +realizzano realizzare ver +realizzante realizzare ver +realizzanti realizzare ver +realizzar realizzare ver +realizzarci realizzare ver +realizzare realizzare ver +realizzargli realizzare ver +realizzarla realizzare ver +realizzarle realizzare ver +realizzarli realizzare ver +realizzarlo realizzare ver +realizzarne realizzare ver +realizzarono realizzare ver +realizzarsi realizzare ver +realizzarvi realizzare ver +realizzasse realizzare ver +realizzassero realizzare ver +realizzata realizzare ver +realizzate realizzare ver +realizzatesi realizzare ver +realizzati realizzare ver +realizzato realizzare ver +realizzatore realizzatore nom +realizzatori realizzatore nom +realizzatrice realizzatore nom +realizzatrici realizzatore nom +realizzava realizzare ver +realizzavamo realizzare ver +realizzavano realizzare ver +realizzazione realizzazione nom +realizzazioni realizzazione nom +realizzeranno realizzare ver +realizzerebbe realizzare ver +realizzerebbero realizzare ver +realizzeremo realizzare ver +realizzerà realizzare ver +realizzerò realizzare ver +realizzi realizzare ver +realizziamo realizzare ver +realizzino realizzare ver +realizzo realizzo nom +realizzò realizzare ver +realmente realmente adv +realtà realtà nom +reame reame nom +reami reame nom +reati reato nom +reato reato nom +reattanza reattanza nom +reattanze reattanza nom +reattiva reattivo adj +reattive reattivo adj +reattivi reattivo adj +reattività reattività nom +reattivo reattivo adj +reattore reattore nom +reattori reattore nom +reazionari reazionario adj +reazionaria reazionario adj +reazionarie reazionario adj +reazionario reazionario adj +reazione reazione nom +reazioni reazione nom +rebbi rebbio nom +rebbio rebbio nom +reboante reboante adj +rebus rebus nom +reca recere ver +recagli recare ver +recai recare ver +recalcitra recalcitrare ver +recalcitrante recalcitrare ver +recalcitranti recalcitrare ver +recalcitrava recalcitrare ver +recale recare ver +recami recare ver +recammo recare ver +recando recare ver +recandoci recare ver +recandogli recare ver +recandomi recare ver +recandosi recare ver +recandovi recare ver +recano recere ver +recante recare ver +recanti recare ver +recapita recapitare ver +recapitando recapitare ver +recapitandogli recapitare ver +recapitandole recapitare ver +recapitano recapitare ver +recapitare recapitare ver +recapitargli recapitare ver +recapitargliela recapitare ver +recapitarla recapitare ver +recapitarlo recapitare ver +recapitarono recapitare ver +recapitasse recapitare ver +recapitata recapitare ver +recapitate recapitare ver +recapitati recapitare ver +recapitato recapitare ver +recapitava recapitare ver +recapiterà recapitare ver +recapiti recapito nom +recapito recapito nom +recapitò recapitare ver +recar recare ver +recarci recare ver +recare recare ver +recargli recare ver +recarle recare ver +recarlo recare ver +recarmi recare ver +recarne recare ver +recarono recare ver +recarsi recare ver +recarti recare ver +recarvi recare ver +recasi recare ver +recasse recare ver +recassero recare ver +recata recare ver +recate recare ver +recatesi recare ver +recatevi recare ver +recati recare ver +recato recare ver +recava recare ver +recavano recare ver +recavo recare ver +rece recere ver +receda recedere ver +recede recedere ver +recedendo recedere ver +recedente recedere ver +recedere recedere ver +recedesse recedere ver +recedette recedere ver +recedettero recedere ver +recedeva recedere ver +recedevano recedere ver +recedi recedere ver +recedo recedere ver +recedono recedere ver +receduti recedere ver +receduto recedere ver +recei recere ver +recensendo recensire ver +recensendolo recensire ver +recensio recensione ver +recension recensione ver +recensirci recensire ver +recensire recensire ver +recensirle recensire ver +recensirli recensire ver +recensirlo recensire ver +recensirono recensire ver +recensirà recensire ver +recensisca recensire ver +recensisce recensire ver +recensiscono recensire ver +recensisti recensire ver +recensita recensire ver +recensite recensire ver +recensiti recensire ver +recensito recensire ver +recensiva recensire ver +recensivano recensire ver +recensivi recensire ver +recensivo recensire ver +recensore recensore nom +recensori recensore nom +recensì recensire ver +recente recente adj +recentemente recentemente adv +recenti recente adj +recentissime recentissime nom +recentissimo recentissimo adj +recependo recepire ver +recependone recepire ver +recepiamo recepire ver +recepimenti recepimento nom +recepimento receimento nom +recepiranno recepire ver +recepire recepire ver +recepirla recepire ver +recepirle recepire ver +recepirli recepire ver +recepirlo recepire ver +recepirne recepire ver +recepirono recepire ver +recepirà recepire ver +recepisca recepire ver +recepiscano recepire ver +recepisce recepire ver +recepisco recepire ver +recepiscono recepire ver +recepisse recepire ver +recepita recepire ver +recepite recepire ver +recepiti recepire ver +recepito recepire ver +recepiva recepire ver +recepivano recepire ver +recepì recepire ver +recer recere ver +recere recere ver +recessi recesso nom +recessione recessione nom +recessioni recessione nom +recessiva recessivo adj +recessive recessivo adj +recessivi recessivo adj +recessività recessività nom +recessivo recessivo adj +recesso recesso nom +recettiva recettivo adj +recettive recettivo adj +recettivi recettivo adj +recettività recettività nom +recettivo recettivo adj +recettore recettore nom +recettori recettore nom +recettrice recettore adj +recettrici recettore adj +recheranno recare ver +recherebbe recare ver +recherei recare ver +recherà recare ver +recherò recare ver +rechi recare ver +rechiamo recare ver +rechiate recare ver +rechino recare ver +reci recere ver +recide recidere ver +recidendo recidere ver +recidendogli recidere ver +recidendole recidere ver +recidendoli recidere ver +recidendone recidere ver +recidendosi recidere ver +recidere recidere ver +recidergli recidere ver +reciderle recidere ver +reciderlo recidere ver +recidersi recidere ver +reciderà recidere ver +recidesse recidere ver +recidessero recidere ver +recideva recidere ver +recidi recidere ver +recidiva recidiva|recidivo nom +recidivano recidivare ver +recidivante recidivare ver +recidivanti recidivare ver +recidivare recidivare ver +recidive recidiva|recidivo nom +recidivi recidivo adj +recidivo recidivo adj +recido recidere ver +recidono recidere ver +recine recere ver +recinge recingere ver +recingendolo recingere ver +recingere recingere ver +recingeva recingere ver +recingevano recingere ver +recingono recingere ver +recinse recingere ver +recinta recingere ver +recintando recintare ver +recintano recintare ver +recintare recintare ver +recintarle recintare ver +recintarono recintare ver +recintata recintare ver +recintate recintare ver +recintati recintare ver +recintato recintare ver +recintava recintare ver +recintavano recintare ver +recinte recingere ver +recinti recinto nom +recinto recinto nom +recintò recintare ver +recinzione recinzione nom +recinzioni recinzione nom +recipiente recipiente nom +recipienti recipiente nom +reciproca reciproco adj +reciprocamente reciprocamente adv +reciprocante reciprocare ver +reciprocanti reciprocare ver +reciprocate reciprocare ver +reciproche reciproco adj +reciprochi reciprocare ver +reciproci reciproco adj +reciprocità reciprocità nom +reciproco reciproco adj +recisa recidere ver +recise reciso adj +recisero recidere ver +recisi reciso adj +recisione recisione nom +recisioni recisione nom +reciso recidere ver +recita recita nom +recitai recitare ver +recital recital nom +recitando recitare ver +recitandogli recitare ver +recitandole recitare ver +recitandoli recitare ver +recitandolo recitare ver +recitandomi recitare ver +recitandone recitare ver +recitandovi recitare ver +recitano recitare ver +recitante recitante adj +recitanti recitante adj +recitar recitare ver +recitare recitare ver +recitargli recitare ver +recitarla recitare ver +recitarle recitare ver +recitarli recitare ver +recitarlo recitare ver +recitarne recitare ver +recitarono recitare ver +recitarsi recitare ver +recitarvi recitare ver +recitasse recitare ver +recitassero recitare ver +recitata recitare ver +recitate recitare ver +recitati recitare ver +recitativa recitativo adj +recitative recitativo adj +recitativi recitativo nom +recitativo recitativo adj +recitato recitare ver +recitava recitare ver +recitavano recitare ver +recitavo recitare ver +recitazione recitazione nom +recitazioni recitazione nom +recite recita nom +reciteranno recitare ver +reciterebbe recitare ver +reciterà recitare ver +reciti recitare ver +recitiamo recitare ver +recitino recitare ver +recito recitare ver +recitò recitare ver +reclama reclamare ver +reclamaci reclamare ver +reclamando reclamare ver +reclamandola reclamare ver +reclamandone reclamare ver +reclamano reclamare ver +reclamante reclamare ver +reclamanti reclamare ver +reclamare reclamare ver +reclamarla reclamare ver +reclamarle reclamare ver +reclamarlo reclamare ver +reclamarne reclamare ver +reclamarono reclamare ver +reclamasse reclamare ver +reclamassero reclamare ver +reclamata reclamare ver +reclamate reclamare ver +reclamati reclamare ver +reclamato reclamare ver +reclamava reclamare ver +reclamavano reclamare ver +reclameranno reclamare ver +reclamerà reclamare ver +reclami reclamo nom +reclamiamo reclamare ver +reclamino reclamare ver +reclamistico reclamistico adj +reclamizza reclamizzare ver +reclamizzando reclamizzare ver +reclamizzano reclamizzare ver +reclamizzante reclamizzare ver +reclamizzanti reclamizzare ver +reclamizzare reclamizzare ver +reclamizzata reclamizzare ver +reclamizzate reclamizzare ver +reclamizzati reclamizzare ver +reclamizzato reclamizzare ver +reclamizzava reclamizzare ver +reclamizzavano reclamizzare ver +reclamizzi reclamizzare ver +reclamizzino reclamizzare ver +reclamizzò reclamizzare ver +reclamo reclamo nom +reclamò reclamare ver +reclina reclinare ver +reclinabile reclinabile adj +reclinabili reclinabile adj +reclinando reclinare ver +reclinandosi reclinare ver +reclinano reclinare ver +reclinante reclinare ver +reclinare reclinare ver +reclinata reclinare ver +reclinate reclinare ver +reclinati reclinare ver +reclinato reclinare ver +reclino reclinare ver +reclude recludere ver +recludere recludere ver +recludersi recludere ver +reclusa recludere ver +recluse recluso adj +reclusi recluso adj +reclusione reclusione nom +reclusioni reclusione nom +recluso recludere ver +reclusori reclusorio nom +reclusorio reclusorio nom +recluta recluta nom +reclutamenti reclutamento nom +reclutamento reclutamento nom +reclutando reclutare ver +reclutandoli reclutare ver +reclutandolo reclutare ver +reclutano reclutare ver +reclutante reclutare ver +reclutare reclutare ver +reclutarla reclutare ver +reclutarle reclutare ver +reclutarli reclutare ver +reclutarlo reclutare ver +reclutarne reclutare ver +reclutarono reclutare ver +reclutarsi reclutare ver +reclutarti reclutare ver +reclutarvi reclutare ver +reclutassero reclutare ver +reclutata reclutare ver +reclutate reclutare ver +reclutati reclutare ver +reclutato reclutare ver +reclutava reclutare ver +reclutavano reclutare ver +reclute recluta nom +recluteranno reclutare ver +recluterà reclutare ver +reclutò reclutare ver +reco recare|recere ver +recondita recondito adj +recondite recondito adj +reconditi recondito adj +recondito recondito adj +recono recere ver +record record nom +recordman recordman nom +recordmen recordmen nom +recrimina recriminare ver +recriminando recriminare ver +recriminano recriminare ver +recriminare recriminare ver +recriminargli recriminare ver +recriminarono recriminare ver +recriminato recriminare ver +recriminatorio recriminatorio adj +recriminava recriminare ver +recriminazione recriminazione nom +recriminazioni recriminazione nom +recriminerà recriminare ver +recriminò recriminare ver +recrudescenza recrudescenza nom +recrudescenze recrudescenza nom +recti recto nom +recto recto nom +recupera recuperare ver +recuperabile recuperabile adj +recuperabili recuperabile adj +recuperaci recuperare ver +recuperai recuperare ver +recuperalo recuperare ver +recuperando recuperare ver +recuperandola recuperare ver +recuperandole recuperare ver +recuperandoli recuperare ver +recuperandolo recuperare ver +recuperandone recuperare ver +recuperandosi recuperare ver +recuperane recuperare ver +recuperano recuperare ver +recuperante recuperare ver +recuperanti recuperare ver +recuperar recuperare ver +recuperare recuperare ver +recuperargli recuperare ver +recuperarla recuperare ver +recuperarle recuperare ver +recuperarli recuperare ver +recuperarlo recuperare ver +recuperarmi recuperare ver +recuperarne recuperare ver +recuperarono recuperare ver +recuperarsi recuperare ver +recuperarti recuperare ver +recuperarvi recuperare ver +recuperasse recuperare ver +recuperassero recuperare ver +recuperata recuperare ver +recuperate recuperare ver +recuperatela recuperare ver +recuperati recuperare ver +recuperato recuperare ver +recuperava recuperare ver +recuperavano recuperare ver +recupererai recuperare ver +recupereranno recuperare ver +recupererebbe recuperare ver +recupererei recuperare ver +recupereremo recuperare ver +recupererete recuperare ver +recupererà recuperare ver +recupererò recuperare ver +recuperi recuperare ver +recuperiamo recuperare ver +recuperino recuperare ver +recupero recuperare ver +recuperò recuperare ver +recò recare ver +redancia redancia nom +redarguendo redarguire ver +redarguii redarguire ver +redarguire redarguire ver +redarguirlo redarguire ver +redarguisce redarguire ver +redarguita redarguire ver +redarguiti redarguire ver +redarguito redarguire ver +redarguiva redarguire ver +redarguì redarguire ver +redasse redigere ver +redassero redigere ver +redassi redigere ver +redatta redigere ver +redatte redigere ver +redatti redigere ver +redatto redigere ver +redattore redattore nom +redattori redattore nom +redattrice redattore nom +redattrici redattore nom +redazionale redazionale adj +redazionali redazionale adj +redazione redazione nom +redazioni redazione nom +redazza redazza nom +redditi reddito nom +redditiera redditiere nom +redditiere redditiere nom +redditieri redditiere nom +redditività redditività nom +redditizi redditizio adj +redditizia redditizio adj +redditizie redditizio adj +redditizio redditizio adj +reddito reddito nom +redenta redento adj +redente redento adj +redenti redento adj +redento redento adj +redentore redentore adj +redentori redentore nom +redentrice redentore adj +redentrici redentore adj +redenzione redenzione nom +redenzioni redenzione nom +redibitoria redibitorio adj +rediga redigere ver +redige redigere ver +redigendo redigere ver +redigendone redigere ver +redigente redigere ver +rediger redigere ver +redigeranno redigere ver +redigere redigere ver +redigerla redigere ver +redigerle redigere ver +redigerlo redigere ver +redigerne redigere ver +redigersi redigere ver +redigerà redigere ver +redigesse redigere ver +redigeva redigere ver +redigevano redigere ver +redigi redigere ver +redigiamo redigere ver +redigo redigere ver +redigono redigere ver +redimibile redimibile adj +redimibili redimibile adj +redimibilità redimibilità nom +redimita redimito adj +redine redine nom +redingote redingote nom +redini redine nom +redistribuire redistribuire ver +redistribuzione redistribuzione nom +rediviva redivivo adj +redivive redivivo adj +redivivi redivivo adj +redivivo redivivo adj +reduce reduce adj +reduci reduce nom +ree reo adj +refe refe nom +referendari referendario adj +referendaria referendario adj +referendarie referendario adj +referendario referendario adj +referendum referendum nom +referente referente adj +referenti referente nom +referenza referenza nom +referenze referenza nom +referenzi referenziare ver +referenzia referenziare ver +referenziale referenziare ver +referenziali referenziare ver +referenziando referenziare ver +referenziandole referenziare ver +referenziandolo referenziare ver +referenziano referenziare ver +referenziante referenziare ver +referenziare referenziare ver +referenziarla referenziare ver +referenziarle referenziare ver +referenziarli referenziare ver +referenziarlo referenziare ver +referenziarsi referenziare ver +referenziata referenziare ver +referenziate referenziare ver +referenziati referenziare ver +referenziato referenziare ver +referenzio referenziare ver +referti referto nom +referto referto nom +refettori refettorio nom +refettorio refettorio nom +refezione refezione nom +refezioni refezione nom +refi refe nom +refill refill nom +refilo refilare ver +reflazione reflazione nom +reflex reflex nom +reflua refluo adj +reflue refluo adj +reflui refluo adj +refluo refluo adj +reflussi reflusso nom +reflusso reflusso nom +refoli refolo nom +refolo refolo nom +refrain refrain nom +refrattari refrattario adj +refrattaria refrattario adj +refrattarie refrattario adj +refrattarietà refrattarietà nom +refrattario refrattario adj +refrigeraci refrigerare ver +refrigerando refrigerare ver +refrigerano refrigerare ver +refrigerante refrigerante nom +refrigeranti refrigerante adj +refrigerare refrigerare ver +refrigerarsi refrigerare ver +refrigerata refrigerare ver +refrigerate refrigerare ver +refrigerati refrigerare ver +refrigerativi refrigerativo adj +refrigerato refrigerare ver +refrigeratore refrigeratore nom +refrigeratori refrigeratore nom +refrigeratrice refrigeratore adj +refrigerazione refrigerazione nom +refrigeri refrigerio nom +refrigerio refrigerio nom +refurtiva refurtiva nom +refusi refuso nom +refuso refuso nom +regala regalare ver +regalaci regalare ver +regalalo regalare ver +regalami regalare ver +regalando regalare ver +regalandoci regalare ver +regalandogli regalare ver +regalandola regalare ver +regalandole regalare ver +regalandoli regalare ver +regalandolo regalare ver +regalandone regalare ver +regalandosi regalare ver +regalano regalare ver +regalar regalare ver +regalarci regalare ver +regalare regalare ver +regalargli regalare ver +regalargliela regalare ver +regalarglielo regalare ver +regalargliene regalare ver +regalarla regalare ver +regalarle regalare ver +regalarli regalare ver +regalarlo regalare ver +regalarmi regalare ver +regalarne regalare ver +regalarono regalare ver +regalarsi regalare ver +regalarti regalare ver +regalarvi regalare ver +regalasi regalare ver +regalasse regalare ver +regalassero regalare ver +regalaste regalare ver +regalata regalare ver +regalate regalare ver +regalateci regalare ver +regalategli regalare ver +regalatele regalare ver +regalatemi regalare ver +regalati regalare ver +regalato regalare ver +regalava regalare ver +regalavano regalare ver +regale regale adj +regaleco regaleco nom +regaleranno regalare ver +regalerebbe regalare ver +regalerei regalare ver +regaleremo regalare ver +regalerà regalare ver +regalerò regalare ver +regali regale adj +regalia regalia nom +regaliamo regalare ver +regalie regalia nom +regalino regalare ver +regalità regalità nom +regalo regalo nom +regalò regalare ver +regata regata nom +regate regata nom +regesti regesto nom +regesto regesto nom +regga reggere ver +reggano reggere ver +regge reggere ver +reggemmo reggere ver +reggendo reggere ver +reggendola reggere ver +reggendolo reggere ver +reggendone reggere ver +reggendosi reggere ver +reggente reggente nom +reggenti reggente nom +reggenza reggenza nom +reggenze reggenza nom +regger reggere ver +reggeranno reggere ver +reggere reggere ver +reggerebbe reggere ver +reggerebbero reggere ver +reggergli reggere ver +reggerla reggere ver +reggerle reggere ver +reggerli reggere ver +reggerlo reggere ver +reggermi reggere ver +reggerne reggere ver +reggersi reggere ver +reggerà reggere ver +reggesse reggere ver +reggessero reggere ver +reggeste reggere ver +reggesti reggere ver +reggete reggere ver +reggetta reggetta nom +reggettatrice reggettatrice nom +reggeva reggere ver +reggevano reggere ver +reggi reggere ver +reggia reggia nom +reggiamo reggere ver +reggiana reggiano adj +reggiane reggiano adj +reggiani reggiano adj +reggiano reggiano adj +reggicalze reggicalze nom +reggilibro reggilibro nom +reggimentale reggimentale adj +reggimentali reggimentale adj +reggimenti reggimento nom +reggimento reggimento nom +reggina reggino adj +reggine reggino adj +reggini reggino nom +reggino reggino adj +reggipetti reggipetto nom +reggipetto reggipetto nom +reggiseni reggiseno nom +reggiseno reggiseno nom +reggitore reggitore nom +reggitori reggitore nom +reggitrice reggitore nom +reggo reggere ver +reggono reggere ver +regi regio adj +regia regia nom +regicida regicida nom +regicide regicida nom +regicidi regicida|regicidio nom +regicidio regicidio nom +regie regio adj +regime regime nom +regimi regime nom +regina regina nom +regine regina nom +reginetta reginetta nom +reginette reginetta nom +regio regio adj +regionale regionale adj +regionali regionale adj +regionalismi regionalismo nom +regionalismo regionalismo nom +regionalista regionalista nom +regionaliste regionalista nom +regionalisti regionalista nom +regionalistica regionalistico adj +regionalistiche regionalistico adj +regionalistici regionalistico adj +regionalistico regionalistico adj +regionalizzato regionalizzare ver +regionalizzazione regionalizzazione nom +regione regione nom +regioni regione nom +regista regista nom +registe regista nom +registi regista nom +registra registrare ver +registrabile registrabile adj +registrabili registrabile adj +registrai registrare ver +registrammo registrare ver +registrando registrare ver +registrandoci registrare ver +registrandola registrare ver +registrandole registrare ver +registrandoli registrare ver +registrandolo registrare ver +registrandomi registrare ver +registrandone registrare ver +registrandosi registrare ver +registrandoti registrare ver +registrandovi registrare ver +registrano registrare ver +registrante registrare ver +registranti registrare ver +registrar registrare ver +registrarci registrare ver +registrare registrare ver +registrargli registrare ver +registrarla registrare ver +registrarle registrare ver +registrarli registrare ver +registrarlo registrare ver +registrarmi registrare ver +registrarne registrare ver +registrarono registrare ver +registrarsi registrare ver +registrarti registrare ver +registrarvi registrare ver +registrasi registrare ver +registrasse registrare ver +registrassero registrare ver +registrassi registrare ver +registrata registrare ver +registrate registrare ver +registratesi registrare ver +registrati registrare ver +registratisi registrare ver +registrato registrare ver +registratore registratore nom +registratori registratore nom +registrava registrare ver +registravamo registrare ver +registravano registrare ver +registravo registrare ver +registrazione registrazione nom +registrazioni registrazione nom +registreranno registrare ver +registrerebbe registrare ver +registrerebbero registrare ver +registrerei registrare ver +registreremo registrare ver +registrerà registrare ver +registrerò registrare ver +registri registro nom +registriamo registrare ver +registrino registrare ver +registro registro nom +registrò registrare ver +regna regnare ver +regnando regnare ver +regnano regnare ver +regnante regnante adj +regnanti regnante adj +regnar regnare ver +regnare regnare ver +regnarono regnare ver +regnarvi regnare ver +regnasse regnare ver +regnassero regnare ver +regnata regnare ver +regnate regnate nom +regnati regnate nom +regnato regnare ver +regnava regnare ver +regnavano regnare ver +regneranno regnare ver +regnerebbe regnare ver +regnerà regnare ver +regnerò regnare ver +regni regno nom +regnino regnare ver +regno regno nom +regnò regnare ver +regola regola nom +regolabile regolabile adj +regolabili regolabile adj +regolamenta regolamentare ver +regolamentando regolamentare ver +regolamentandone regolamentare ver +regolamentano regolamentare ver +regolamentare regolamentare adj +regolamentari regolamentare adj +regolamentarla regolamentare ver +regolamentarle regolamentare ver +regolamentarli regolamentare ver +regolamentarlo regolamentare ver +regolamentarne regolamentare ver +regolamentarono regolamentare ver +regolamentarsi regolamentare ver +regolamentasse regolamentare ver +regolamentassero regolamentare ver +regolamentata regolamentare ver +regolamentate regolamentare ver +regolamentati regolamentare ver +regolamentato regolamentare ver +regolamentava regolamentare ver +regolamentavano regolamentare ver +regolamentazione regolamentazione nom +regolamentazioni regolamentazione nom +regolamenterà regolamentare ver +regolamenti regolamento nom +regolamentiamo regolamentare ver +regolamento regolamento nom +regolamentò regolamentare ver +regolando regolare ver +regolandola regolare ver +regolandolo regolare ver +regolandone regolare ver +regolandosi regolare ver +regolano regolare ver +regolante regolare ver +regolanti regolare ver +regolar regolare ver +regolarci regolare ver +regolare regolare adj +regolari regolare adj +regolarità regolarità nom +regolarizza regolarizzare ver +regolarizzando regolarizzare ver +regolarizzandone regolarizzare ver +regolarizzandosi regolarizzare ver +regolarizzano regolarizzare ver +regolarizzare regolarizzare ver +regolarizzarla regolarizzare ver +regolarizzarle regolarizzare ver +regolarizzarne regolarizzare ver +regolarizzarono regolarizzare ver +regolarizzarsi regolarizzare ver +regolarizzata regolarizzare ver +regolarizzate regolarizzare ver +regolarizzati regolarizzare ver +regolarizzato regolarizzare ver +regolarizzava regolarizzare ver +regolarizzazione regolarizzazione nom +regolarizzazioni regolarizzazione nom +regolarizzino regolarizzare ver +regolarizzo regolarizzare ver +regolarizzò regolarizzare ver +regolarla regolare ver +regolarle regolare ver +regolarli regolare ver +regolarlo regolare ver +regolarmente regolarmente adv +regolarmi regolare ver +regolarne regolare ver +regolarono regolare ver +regolarsi regolare ver +regolarti regolare ver +regolarvi regolare ver +regolasse regolare ver +regolassero regolare ver +regolata regolare ver +regolate regolare ver +regolatevi regolare ver +regolatezza regolatezza nom +regolati regolare ver +regolato regolare ver +regolatore regolatore adj +regolatori regolatore adj +regolatrice regolatore adj +regolatrici regolatore adj +regolava regolare ver +regolavano regolare ver +regolavo regolare ver +regolazione regolazione nom +regolazioni regolazione nom +regole regola nom +regoleranno regolare ver +regolerebbe regolare ver +regolerebbero regolare ver +regolerei regolare ver +regoleremo regolare ver +regoleresti regolare ver +regolerà regolare ver +regolerò regolare ver +regoli regolo nom +regoliamo regolare ver +regoliamoci regolare ver +regolino regolare ver +regolo regolo nom +regolò regolare ver +regredendo regredire ver +regrediranno regredire ver +regredire regredire ver +regredirono regredire ver +regredirà regredire ver +regrediscano regredire ver +regredisce regredire ver +regrediscono regredire ver +regredisse regredire ver +regredita regredire ver +regredite regredito adj +regrediti regredire ver +regredito regredire ver +regrediva regredire ver +regredivano regredire ver +regredì regredire ver +regressi regresso nom +regressione regressione nom +regressioni regressione nom +regressiva regressivo adj +regressive regressivo adj +regressivi regressivo adj +regressivo regressivo adj +regresso regresso nom +rei reo adj +reietta reietto nom +reiette reietto adj +reietti reietto nom +reietto reietto nom +reiezione reiezione nom +reificazione reificazione nom +reimbarca reimbarcare ver +reimbarcandosi reimbarcare ver +reimbarcano reimbarcare ver +reimbarcare reimbarcare ver +reimbarcarle reimbarcare ver +reimbarcarono reimbarcare ver +reimbarcarsi reimbarcare ver +reimbarcate reimbarcare ver +reimbarcati reimbarcare ver +reimbarcavano reimbarcare ver +reimbarchi reimbarco nom +reimbarco reimbarco nom +reimbarcò reimbarcare ver +reimpianto reimpianto nom +reimpiegate reimpiegare ver +reimpiego reimpiego nom +reincarico reincarico nom +reincarna reincarnare ver +reincarnando reincarnare ver +reincarnandosi reincarnare ver +reincarnano reincarnare ver +reincarnare reincarnare ver +reincarnarmi reincarnare ver +reincarnarono reincarnare ver +reincarnarsi reincarnare ver +reincarnasse reincarnare ver +reincarnata reincarnare ver +reincarnate reincarnare ver +reincarnatesi reincarnare ver +reincarnati reincarnare ver +reincarnato reincarnare ver +reincarnava reincarnare ver +reincarnazione reincarnazione nom +reincarnazioni reincarnazione nom +reincarneranno reincarnare ver +reincarnerà reincarnare ver +reincarni reincarnare ver +reincarnò reincarnare ver +reingaggio reingaggio nom +reingresso reingresso nom +reinnestandosi reinnestare ver +reinnesto reinnestare ver +reinnestò reinnestare ver +reinsediamenti reinsediamento nom +reinsediamento reinsediamento nom +reinsediarsi reinsediare ver +reinserendo reinserire ver +reinserendoci reinserire ver +reinserendola reinserire ver +reinserendolo reinserire ver +reinserendosi reinserire ver +reinseriamo reinserire ver +reinserimenti reinserimento nom +reinserimento reinserimento nom +reinserirai reinserire ver +reinserire reinserire ver +reinserirei reinserire ver +reinseriremo reinserire ver +reinserirla reinserire ver +reinserirle reinserire ver +reinserirli reinserire ver +reinserirlo reinserire ver +reinserirne reinserire ver +reinserirono reinserire ver +reinserirsi reinserire ver +reinserirà reinserire ver +reinserirò reinserire ver +reinserisca reinserire ver +reinseriscano reinserire ver +reinserisce reinserire ver +reinserisci reinserire ver +reinseriscila reinserire ver +reinserisco reinserire ver +reinseriscono reinserire ver +reinserisse reinserire ver +reinserita reinserire ver +reinserite reinserire ver +reinseritelo reinserire ver +reinseriti reinserire ver +reinserito reinserire ver +reinseriva reinserire ver +reinserì reinserire ver +reinstaurazione reinstaurazione nom +reintegra reintegrare ver +reintegrando reintegrare ver +reintegrandoli reintegrare ver +reintegrandolo reintegrare ver +reintegrandone reintegrare ver +reintegrano reintegrare ver +reintegrare reintegrare ver +reintegrarla reintegrare ver +reintegrarle reintegrare ver +reintegrarli reintegrare ver +reintegrarlo reintegrare ver +reintegrarne reintegrare ver +reintegrarono reintegrare ver +reintegrarsi reintegrare ver +reintegrata reintegrare ver +reintegrate reintegrare ver +reintegrati reintegrare ver +reintegrativa reintegrativo adj +reintegrativo reintegrativo adj +reintegrato reintegrare ver +reintegrava reintegrare ver +reintegrazione reintegrazione nom +reintegrazioni reintegrazione nom +reintegrerei reintegrare ver +reintegrerà reintegrare ver +reintegri reintegrare ver +reintegriamo reintegrare ver +reintegrino reintegrare ver +reintegro reintegrare ver +reintegrò reintegrare ver +reinterpretandolo reinterpretare ver +reinterpretare reinterpretare ver +reinterpretato reinterpretare ver +reintrodotti reintrodurre ver +reintrodotto reintrodurre ver +reintroducendo reintrodurre ver +reintroducono reintrodurre ver +reintrodurre reintrodurre ver +reintroduzione reintroduzione nom +reinvesta reinvestire ver +reinveste reinvestire ver +reinvestendo reinvestire ver +reinvestimenti reinvestimento nom +reinvestire reinvestire ver +reinvestirli reinvestire ver +reinvestirlo reinvestire ver +reinvestirne reinvestire ver +reinvestita reinvestire ver +reinvestite reinvestire ver +reinvestiti reinvestire ver +reinvestito reinvestire ver +reinvestiva reinvestire ver +reinvestono reinvestire ver +reinvestì reinvestire ver +reiscritti reiscrivere ver +reiscritto reiscrivere ver +reiscrivere reiscrivere ver +reitera reiterare ver +reiterando reiterare ver +reiterandolo reiterare ver +reiterano reiterare ver +reiterante reiterare ver +reiterare reiterare ver +reiterarla reiterare ver +reiterarlo reiterare ver +reiterarono reiterare ver +reiterarsi reiterare ver +reiterasse reiterare ver +reiterata reiterare ver +reiteratamente reiteratamente adv +reiterate reiterato adj +reiterati reiterato adj +reiterato reiterare ver +reiterava reiterare ver +reiterazione reiterazione nom +reiterazioni reiterazione nom +reitererà reiterare ver +reitererò reiterare ver +reiteri reiterare ver +reiteriamo reiterare ver +reitero reiterare ver +reiterò reiterare ver +reità reità nom +relais relais nom +relativa relativo adj +relativamente relativamente adv +relative relativo adj +relativi relativo adj +relativismi relativismo nom +relativismo relativismo nom +relativista relativista nom +relativiste relativista nom +relativisti relativista nom +relativistica relativistico adj +relativistiche relativistico adj +relativistici relativistico adj +relativistico relativistico adj +relatività relatività nom +relativizza relativizzare ver +relativizzando relativizzare ver +relativizzano relativizzare ver +relativizzare relativizzare ver +relativizzarli relativizzare ver +relativizzarne relativizzare ver +relativizzata relativizzare ver +relativizzati relativizzare ver +relativizzato relativizzare ver +relativo relativo adj +relatore relatore nom +relatori relatore nom +relatrice relatore nom +relax relax nom +relaziona relazionare ver +relazionale relazionare ver +relazionali relazionare ver +relazionando relazionare ver +relazionandola relazionare ver +relazionandoli relazionare ver +relazionandolo relazionare ver +relazionandosi relazionare ver +relazionano relazionare ver +relazionarci relazionare ver +relazionare relazionare ver +relazionarla relazionare ver +relazionarmi relazionare ver +relazionarne relazionare ver +relazionarono relazionare ver +relazionarsi relazionare ver +relazionarti relazionare ver +relazionata relazionare ver +relazionate relazionare ver +relazionati relazionare ver +relazionato relazionare ver +relazionava relazionare ver +relazionavano relazionare ver +relazione relazione nom +relazioni relazione nom +relazioniamo relazionare ver +relazionino relazionare ver +relaziono relazionare ver +relazionò relazionare ver +relega relegare ver +relegando relegare ver +relegandola relegare ver +relegandole relegare ver +relegandoli relegare ver +relegandolo relegare ver +relegandone relegare ver +relegandosi relegare ver +relegano relegare ver +relegare relegare ver +relegarla relegare ver +relegarle relegare ver +relegarli relegare ver +relegarlo relegare ver +relegarono relegare ver +relegarsi relegare ver +relegasse relegare ver +relegata relegare ver +relegate relegare ver +relegati relegare ver +relegato relegare ver +relegava relegare ver +relegavano relegare ver +relegazione relegazione nom +relegazioni relegazione nom +relegheranno relegare ver +relegherebbe relegare ver +relegherà relegare ver +releghi relegare ver +relegò relegare ver +religione religione nom +religioni religione nom +religiosa religioso adj +religiose religioso adj +religiosi religioso adj +religiosità religiosità nom +religioso religioso adj +reliquari reliquario nom +reliquario reliquario nom +reliquia reliquia nom +reliquiari reliquiario nom +reliquiario reliquiario nom +reliquie reliquia nom +relitti relitto nom +relitto relitto nom +relè relè nom +rema remare ver +remainder remainder nom +remake remake nom +remale remare ver +remando remare ver +remane remare ver +remano remare ver +remar remare ver +remare remare ver +remargli remare ver +remarono remare ver +remasse remare ver +remassimo remare ver +remaste remare ver +remasti remare ver +remata remata nom +remate remata nom +remati remare ver +remato remare ver +rematore rematore nom +rematori rematore nom +remava remare ver +remavano remare ver +remeggio remeggio nom +remerà remare ver +remi remo nom +remiamo remare ver +remigante remigante adj +remiganti remigante nom +remigata remigare ver +reminiscenza reminiscenza nom +reminiscenze reminiscenza nom +remino remare ver +remissione remissione nom +remissioni remissione nom +remissiva remissivo adj +remissive remissivo adj +remissivi remissivo adj +remissività remissività nom +remissivo remissivo adj +remo remo nom +remora remora nom +remore remora nom +remota remoto adj +remote remoto adj +remoti remoto adj +remoto remoto adj +remunera remunerare ver +remunerano remunerare ver +remunerare remunerare ver +remunerarli remunerare ver +remunerata remunerare ver +remunerate remunerare ver +remunerati remunerare ver +remunerative remunerativo adj +remunerativi remunerativo adj +remuneratività remuneratività nom +remunerato remunerare ver +remunerava remunerare ver +remuneravano remunerare ver +remunerazione remunerazione nom +remunerazioni remunerazione nom +remuneri remunerare ver +remunerò remunerare ver +remò remare ver +rena rena nom +renaioli renaiolo nom +renaiolo renaiolo nom +renale renale adj +renali renale adj +renana renano adj +renane renano adj +renani renano adj +renano renano adj +renard renard nom +renda rendere ver +rendano rendere ver +rende rendere ver +rendemmo rendere ver +rendendo rendere ver +rendendoci rendere ver +rendendogli rendere ver +rendendola rendere ver +rendendole rendere ver +rendendoli rendere ver +rendendolo rendere ver +rendendomi rendere ver +rendendone rendere ver +rendendosene rendere ver +rendendosi rendere ver +rendendoti rendere ver +rendendovi rendere ver +rendente rendere ver +render rendere ver +renderai rendere ver +renderanno rendere ver +rendercene rendere ver +renderci rendere ver +rendere rendere ver +renderebbe rendere ver +renderebbero rendere ver +renderei rendere ver +renderemmo rendere ver +renderemo rendere ver +rendereste rendere ver +renderesti rendere ver +renderete rendere ver +rendergli rendere ver +rendergliela rendere ver +renderglielo rendere ver +rendergliene rendere ver +renderla rendere ver +renderle rendere ver +renderli rendere ver +renderlo rendere ver +rendermene rendere ver +rendermi rendere ver +renderne rendere ver +rendersela rendere ver +rendersene rendere ver +rendersi rendere ver +rendertene rendere ver +renderti rendere ver +rendervene rendere ver +rendervi rendere ver +renderà rendere ver +renderò rendere ver +rendesse rendere ver +rendessero rendere ver +rendessi rendere ver +rendessimo rendere ver +rendeste rendere ver +rendesti rendere ver +rendete rendere ver +rendeteli rendere ver +rendetelo rendere ver +rendetemi rendere ver +rendetevi rendere ver +rendeva rendere ver +rendevano rendere ver +rendevo rendere ver +rendi rendere ver +rendiamo rendere ver +rendiamocene rendere ver +rendiamoci rendere ver +rendiamogli rendere ver +rendiamola rendere ver +rendiamole rendere ver +rendiamoli rendere ver +rendiamolo rendere ver +rendiate rendere ver +rendici rendere ver +rendicontazione rendicontazione nom +rendiconti rendiconto nom +rendiconto rendiconto nom +rendila rendere ver +rendile rendere ver +rendili rendere ver +rendilo rendere ver +rendimenti rendimento nom +rendimento rendimento nom +rendimi rendere ver +rendine rendere ver +rendita rendita nom +rendite rendita nom +renditene rendere ver +renditi rendere ver +rendo rendere ver +rendono rendere ver +rene rena|rene nom +renella renella nom +renelle renella nom +renetta renetta nom +renette renetta nom +reni rene|reni|renio nom +reniforme reniforme adj +reniformi reniforme adj +renio renio nom +renitente renitente adj +renitenti renitente nom +renitenza renitenza nom +renna renna nom +renne renna nom +renosa renoso adj +renoso renoso adj +rentrée rentrée nom +reo reo adj +reofori reoforo nom +reoforo reoforo nom +reologia reologia nom +reologie reologia nom +reostati reostato nom +reostato reostato nom +reparti reparto nom +reparto reparto nom +repelle repellere ver +repellente repellente adj +repellenti repellente adj +repeller repellere ver +repellere repellere ver +repello repellere ver +repentaglio repentaglio nom +repente repente adv +repenti repente adj +repentina repentino adj +repentine repentino adj +repentini repentino adj +repentinità repentinità nom +repentino repentino adj +reperendo reperire ver +reperendosi reperire ver +reperibile reperibile adj +reperibili reperibile adj +reperibilità reperibilità nom +reperimento reperimento nom +reperire reperire ver +reperirla reperire ver +reperirle reperire ver +reperirli reperire ver +reperirlo reperire ver +reperirmi reperire ver +reperirne reperire ver +reperirono reperire ver +reperirsi reperire ver +reperirvi reperire ver +reperirà reperire ver +reperisce reperire ver +reperisco reperire ver +reperiscono reperire ver +reperisse reperire ver +reperita reperire ver +reperite reperire ver +reperiti reperire ver +reperito reperire ver +reperivano reperire ver +reperta repertare ver +repertare repertare ver +repertata repertare ver +repertate repertare ver +repertati repertare ver +repertato repertare ver +reperti reperto nom +reperto reperto nom +repertori repertorio nom +repertorio repertorio nom +reperì reperire ver +replay replay nom +replica replica nom +replicabile replicabile adj +replicabili replicabile adj +replicaci replicare ver +replicai replicare ver +replicando replicare ver +replicandola replicare ver +replicandolo replicare ver +replicandone replicare ver +replicandosi replicare ver +replicano replicare ver +replicante replicare ver +replicanti replicare ver +replicar replicare ver +replicare replicare ver +replicarla replicare ver +replicarle replicare ver +replicarli replicare ver +replicarlo replicare ver +replicarmi replicare ver +replicarne replicare ver +replicarono replicare ver +replicarsi replicare ver +replicarti replicare ver +replicasi replicare ver +replicasse replicare ver +replicata replicare ver +replicate replicare ver +replicati replicare ver +replicato replicare ver +replicava replicare ver +replicavano replicare ver +replicavo replicare ver +repliche replica nom +replicheranno replicare ver +replicherebbe replicare ver +replicherà replicare ver +replicherò replicare ver +replichi replicare ver +replichiamo replicare ver +replichino replicare ver +replico replicare ver +replicò replicare ver +reportage reportage nom +reporter reporter nom +repressa reprimere ver +represse reprimere ver +repressero reprimere ver +repressi reprimere ver +repressione repressione nom +repressioni repressione nom +repressiva repressivo adj +repressive repressivo adj +repressivi repressivo adj +repressivo repressivo adj +represso reprimere ver +repressore repressore nom +repressori repressore nom +reprima reprimere ver +reprime reprimere ver +reprimenda reprimenda nom +reprimende reprimenda nom +reprimendo reprimere ver +reprimendola reprimere ver +reprimente reprimere ver +reprimeranno reprimere ver +reprimere reprimere ver +reprimerla reprimere ver +reprimerle reprimere ver +reprimerli reprimere ver +reprimerlo reprimere ver +reprimerne reprimere ver +reprimersi reprimere ver +reprimervi reprimere ver +reprimerà reprimere ver +reprimesse reprimere ver +reprimeva reprimere ver +reprimevano reprimere ver +reprimo reprimere ver +reprimono reprimere ver +reprint reprint nom +reprobi reprobo nom +reprobo reprobo nom +reps reps nom +reptazione reptazione nom +repubblica repubblica nom +repubblicana repubblicano adj +repubblicane repubblicano adj +repubblicani repubblicano adj +repubblicano repubblicano adj +repubbliche repubblica nom +repubblichina repubblichino adj +repubblichine repubblichino adj +repubblichini repubblichino nom +repubblichino repubblichino adj +repulisti repulisti nom +repulsa repulso adj +repulse repulso adj +repulsione repulsione nom +repulsioni repulsione nom +repulsiva repulsivo adj +repulsive repulsivo adj +repulsivi repulsivo adj +repulsivo repulsivo adj +repulso repellere ver +reputa reputare ver +reputaci reputare ver +reputando reputare ver +reputandola reputare ver +reputandole reputare ver +reputandoli reputare ver +reputandolo reputare ver +reputandomi reputare ver +reputandone reputare ver +reputandosi reputare ver +reputano reputare ver +reputar reputare ver +reputare reputare ver +reputarla reputare ver +reputarlo reputare ver +reputarono reputare ver +reputarsi reputare ver +reputasse reputare ver +reputassero reputare ver +reputata reputare ver +reputate reputare ver +reputati reputare ver +reputato reputare ver +reputava reputare ver +reputavano reputare ver +reputavo reputare ver +reputazione reputazione nom +reputazioni reputazione nom +reputerai reputare ver +reputeranno reputare ver +reputerebbero reputare ver +reputerei reputare ver +reputerà reputare ver +reputerò reputare ver +reputi reputare ver +reputiamo reputare ver +reputiate reputare ver +reputino reputare ver +reputo reputare ver +reputò reputare ver +repêchage repêchage nom +requie requie nom +requiem requiem nom +requirente requirente adj +requirenti requirente adj +requisendo requisire ver +requisendone requisire ver +requisendovi requisire ver +requisii requisire ver +requisire requisire ver +requisirne requisire ver +requisirono requisire ver +requisisce requisire ver +requisiscono requisire ver +requisisti requisire ver +requisita requisire ver +requisite requisire ver +requisiti requisito nom +requisito requisito nom +requisitoria requisitoria nom +requisitorie requisitoria nom +requisiva requisire ver +requisivano requisire ver +requisizione requisizione nom +requisizioni requisizione nom +requisì requisire ver +resa resa nom +resasi rendere ver +rescinde rescindere ver +rescindendo rescindere ver +rescindente rescindere ver +rescinderlo rescindere ver +rescinderà rescindere ver +rescindi rescindere ver +rescindono rescindere ver +rescissa rescindere ver +rescisse rescindere ver +rescissero rescindere ver +rescissi rescindere ver +rescissione rescissione nom +rescissioni rescissione nom +rescisso rescindere ver +rescritti rescritto nom +rescritto rescritto nom +rese rendere ver +resecare resecare ver +resecata resecare ver +resecati resecare ver +resecato resecare ver +reseco resecare ver +reseda reseda nom +resede reseda nom +resero rendere ver +resezione resezione nom +resezioni resezione nom +resi rendere ver +residence residence nom +residente residente adj +residenti residente adj +residenza residenza nom +residenze residenza nom +residenziale residenziale adj +residenziali residenziale adj +residua residuo adj +residuale residuale adj +residuali residuale adj +residuando residuare ver +residuano residuare ver +residuare residuare ver +residuarono residuare ver +residuata residuare ver +residuate residuato adj +residuati residuato nom +residuato residuato nom +residuava residuare ver +residuavano residuare ver +residue residuo adj +residuerebbe residuare ver +residui residuo nom +residuo residuo nom +residuò residuare ver +resiliente resiliente adj +resilienti resiliente adj +resilienza resilienza nom +resina resina nom +resinanti resinare ver +resinati resinato adj +resinato resinare ver +resinatura resinatura nom +resine resina nom +resini resinare ver +resinifera resinifero adj +resinifere resinifero adj +resiniferi resinifero adj +resinifero resinifero adj +resino resinare ver +resinosa resinoso adj +resinose resinoso adj +resinosi resinoso adj +resinoso resinoso adj +resipiscenza resipiscenza nom +resipiscenze resipiscenza nom +resisi rendere ver +resista resistere ver +resistano resistere ver +resiste resistere ver +resistendo resistere ver +resistendogli resistere ver +resistendovi resistere ver +resistente resistente adj +resistenti resistente adj +resistenza resistenza nom +resistenze resistenza nom +resistenziale resistenziale adj +resistenziali resistenziale adj +resister resistere ver +resisteranno resistere ver +resistere resistere ver +resisterebbe resistere ver +resisterebbero resistere ver +resisteremo resistere ver +resistergli resistere ver +resisterle resistere ver +resisterono resistere ver +resisterti resistere ver +resistervi resistere ver +resisterà resistere ver +resisterò resistere ver +resistesse resistere ver +resistessero resistere ver +resistete resistere ver +resisteva resistere ver +resistevano resistere ver +resistevo resistere ver +resisti resistere ver +resistiamo resistere ver +resistimi resistere ver +resistita resistere ver +resistite resistere ver +resistiti resistere ver +resistito resistere ver +resistivi resistere ver +resistività resistività nom +resisto resistere ver +resistono resistere ver +resistore resistore nom +resistori resistore nom +reso rendere ver +resoconti resoconto nom +resocontista resocontista nom +resocontisti resocontista nom +resoconto resoconto nom +resosi rendere ver +respinga respingere ver +respingano respingere ver +respinge respingere ver +respingendo respingere ver +respingendola respingere ver +respingendole respingere ver +respingendoli respingere ver +respingendolo respingere ver +respingendone respingere ver +respingendosi respingere ver +respingente respingente nom +respingenti respingente nom +respinger respingere ver +respingeranno respingere ver +respingere respingere ver +respingerebbe respingere ver +respingerebbero respingere ver +respingeremo respingere ver +respingerla respingere ver +respingerle respingere ver +respingerli respingere ver +respingerlo respingere ver +respingermi respingere ver +respingerne respingere ver +respingersi respingere ver +respingerti respingere ver +respingerà respingere ver +respingesse respingere ver +respingessero respingere ver +respingeva respingere ver +respingevano respingere ver +respingevo respingere ver +respingi respingere ver +respingiamo respingere ver +respingimento respingimento nom +respingo respingere ver +respingono respingere ver +respinse respingere ver +respinsero respingere ver +respinsi respingere ver +respinta respingere ver +respinte respingere ver +respinti respingere ver +respinto respingere ver +respira respirare ver +respirabile respirabile adj +respirabili respirabile adj +respiraci respirare ver +respirala respirare ver +respirando respirare ver +respirandoti respirare ver +respirano respirare ver +respirante respirare ver +respirar respirare ver +respirare respirare ver +respirarlo respirare ver +respirarne respirare ver +respirarono respirare ver +respirarvi respirare ver +respirasi respirare ver +respirasse respirare ver +respirassero respirare ver +respirata respirare ver +respirate respirare ver +respirati respirare ver +respirato respirare ver +respiratore respiratore nom +respiratori respiratorio adj +respiratoria respiratorio adj +respiratorie respiratorio adj +respiratorio respiratorio adj +respirava respirare ver +respiravano respirare ver +respiravo respirare ver +respirazione respirazione nom +respirazioni respirazione nom +respirerebbe respirare ver +respirerà respirare ver +respirerò respirare ver +respiri respiro nom +respiriamo respirare ver +respirino respirare ver +respiro respiro nom +respirò respirare ver +responsabile responsabile adj +responsabili responsabile nom +responsabilità responsabilità nom +responsabilizza responsabilizzare ver +responsabilizzando responsabilizzare ver +responsabilizzandolo responsabilizzare ver +responsabilizzano responsabilizzare ver +responsabilizzante responsabilizzare ver +responsabilizzare responsabilizzare ver +responsabilizzarlo responsabilizzare ver +responsabilizzarsi responsabilizzare ver +responsabilizzata responsabilizzare ver +responsabilizzati responsabilizzare ver +responsabilizzato responsabilizzare ver +responsabilizzazione responsabilizzazione nom +responsabilizzerebbe responsabilizzare ver +responsabilizzi responsabilizzare ver +responsi responso nom +responso responso nom +ressa ressa nom +resse reggere ver +ressero reggere ver +ressi reggere ver +resta restare ver +restai restare ver +restale restare ver +restammo restare ver +restando restare ver +restandoci restare ver +restandogli restare ver +restandole restare ver +restandolo restare ver +restandone restare ver +restandosene restare ver +restandovi restare ver +restano restare ver +restante restante adj +restanti restante adj +restar restare ver +restarcene restare ver +restarci restare ver +restare restare ver +restargli restare ver +restarle restare ver +restarlo restare ver +restarne restare ver +restarono restare ver +restarsene restare ver +restarvi restare ver +restasse restare ver +restassero restare ver +restassi restare ver +restassimo restare ver +restata restare ver +restate restare ver +restati restare ver +restato restare ver +restaura restaurare ver +restauraci restaurare ver +restaurai restaurare ver +restaurala restaurare ver +restaurando restaurare ver +restaurandola restaurare ver +restaurandolo restaurare ver +restaurandone restaurare ver +restaurano restaurare ver +restaurant restaurant nom +restaurante restaurare ver +restaurar restaurare ver +restaurare restaurare ver +restaurarla restaurare ver +restaurarle restaurare ver +restaurarli restaurare ver +restaurarlo restaurare ver +restaurarne restaurare ver +restaurarono restaurare ver +restaurarsi restaurare ver +restaurarvi restaurare ver +restaurasse restaurare ver +restaurassero restaurare ver +restaurata restaurare ver +restaurate restaurare ver +restaurati restaurare ver +restaurato restaurare ver +restauratore restauratore nom +restauratori restauratore nom +restauratrice restauratore nom +restauratrici restauratore nom +restaurava restaurare ver +restauravano restaurare ver +restaurazione restaurazione nom +restaurazioni restaurazione nom +restaureranno restaurare ver +restaurerebbe restaurare ver +restaurerà restaurare ver +restauri restauro nom +restauro restauro nom +restaurò restaurare ver +restava restare ver +restavamo restare ver +restavano restare ver +restavo restare ver +reste resta nom +resterai restare ver +resteranno restare ver +resterebbe restare ver +resterebbero restare ver +resterei restare ver +resteremmo restare ver +resteremo restare ver +resteresti restare ver +resterete restare ver +resterà restare ver +resterò restare ver +resti resto nom +restia restio adj +restiamo restare ver +restiate restare ver +restie restio adj +restii restio adj +restino restare ver +restio restio adj +restituendo restituire ver +restituendoci restituire ver +restituendogli restituire ver +restituendola restituire ver +restituendole restituire ver +restituendoli restituire ver +restituendolo restituire ver +restituendone restituire ver +restituendovi restituire ver +restituiamo restituire ver +restituibile restituibile adj +restituir restituire ver +restituiranno restituire ver +restituirci restituire ver +restituire restituire ver +restituirebbe restituire ver +restituirei restituire ver +restituiremo restituire ver +restituirgli restituire ver +restituirgliela restituire ver +restituirglieli restituire ver +restituirglielo restituire ver +restituirla restituire ver +restituirle restituire ver +restituirli restituire ver +restituirlo restituire ver +restituirmelo restituire ver +restituirmi restituire ver +restituirne restituire ver +restituirono restituire ver +restituirsi restituire ver +restituirà restituire ver +restituirò restituire ver +restituisca restituire ver +restituiscano restituire ver +restituisce restituire ver +restituisci restituire ver +restituiscimi restituire ver +restituisco restituire ver +restituiscono restituire ver +restituisse restituire ver +restituissero restituire ver +restituita restituire ver +restituite restituire ver +restituiteci restituire ver +restituitemi restituire ver +restituiti restituire ver +restituito restituire ver +restituiva restituire ver +restituivano restituire ver +restituzione restituzione nom +restituzioni restituzione nom +restituì restituire ver +resto resto nom +restringa restringere ver +restringano restringere ver +restringe restringere ver +restringendo restringere ver +restringendola restringere ver +restringendolo restringere ver +restringendone restringere ver +restringendosi restringere ver +restringente restringere ver +restringenti restringere ver +restringere restringere ver +restringerebbe restringere ver +restringerei restringere ver +restringerla restringere ver +restringerle restringere ver +restringerli restringere ver +restringerlo restringere ver +restringerne restringere ver +restringersi restringere ver +restringerà restringere ver +restringesse restringere ver +restringeva restringere ver +restringevano restringere ver +restringi restringere ver +restringiamo restringere ver +restringimenti restringimento nom +restringimento restringimento nom +restringo restringere ver +restringono restringere ver +restrinse restringere ver +restrinsero restringere ver +restrittiva restrittivo adj +restrittive restrittivo adj +restrittivi restrittivo adj +restrittività restrittività nom +restrittivo restrittivo adj +restrizione restrizione nom +restrizioni restrizione nom +restò restare ver +resurrezione resurrezione nom +resurrezioni resurrezione nom +resuscita resuscitare ver +resuscitando resuscitare ver +resuscitandola resuscitare ver +resuscitandolo resuscitare ver +resuscitano resuscitare ver +resuscitare resuscitare ver +resuscitarla resuscitare ver +resuscitarle resuscitare ver +resuscitarli resuscitare ver +resuscitarlo resuscitare ver +resuscitarne resuscitare ver +resuscitarono resuscitare ver +resuscitasse resuscitare ver +resuscitata resuscitare ver +resuscitate resuscitare ver +resuscitati resuscitare ver +resuscitato resuscitare ver +resuscitava resuscitare ver +resuscitavano resuscitare ver +resusciteranno resuscitare ver +resusciteremo resuscitare ver +resusciterà resuscitare ver +resusciti resuscitare ver +resuscitiamo resuscitare ver +resuscito resuscitare ver +resuscitò resuscitare ver +retaggi retaggio nom +retaggio retaggio nom +retata retata nom +retate retata nom +rete rete nom +reti rete nom +reticella reticella nom +reticelle reticella nom +reticente reticente adj +reticenti reticente adj +reticenza reticenza nom +reticenze reticenza nom +reticola reticolare ver +reticolano reticolare ver +reticolante reticolare ver +reticolare reticolare adj +reticolari reticolare adj +reticolata reticolato adj +reticolate reticolato adj +reticolati reticolato nom +reticolato reticolato nom +reticoli reticolo nom +reticolo reticolo nom +retina retina nom +retinale retinare ver +retinali retinare ver +retinata retinare ver +retinate retinare ver +retinati retinare ver +retinato retinare ver +retine retina nom +retini retino nom +retinica retinico adj +retiniche retinico adj +retinici retinico adj +retinico retinico adj +retino retino nom +retore retore nom +retori retore nom +retorica retorico adj +retoriche retorico adj +retorici retorico adj +retorico retorico adj +retrae retrarre ver +retraente retrarre ver +retraenti retrarre ver +retraevano retrarre ver +retraggono retrarre ver +retrarre retrarre ver +retrarsi retrarre ver +retratta retrarre ver +retratte retrarre ver +retratti retrarre ver +retrattile retrattile adj +retrattili retrattile adj +retratto retrarre ver +retribuendo retribuire ver +retribuire retribuire ver +retribuisce retribuire ver +retribuiscono retribuire ver +retribuita retribuire ver +retribuite retribuire ver +retribuiti retribuire ver +retribuito retribuire ver +retribuiva retribuire ver +retributiva retributivo adj +retributive retributivo adj +retributivi retributivo adj +retributivo retributivo adj +retribuzione retribuzione nom +retribuzioni retribuzione nom +retribuì retribuire ver +retriva retrivo adj +retrive retrivo adj +retrivi retrivo adj +retrivo retrivo adj +retro retro nom +retroattiva retroattivo adj +retroattivamente retroattivamente adv +retroattive retroattivo adj +retroattivi retroattivo adj +retroattività retroattività nom +retroattivo retroattivo adj +retroazione retroazione nom +retroazioni retroazione nom +retrobocca retrobocca nom +retrobottega retrobottega nom +retrocarica retrocarica nom +retroceda retrocedere ver +retrocedano retrocedere ver +retrocede retrocedere ver +retrocedendo retrocedere ver +retrocedendola retrocedere ver +retrocedendolo retrocedere ver +retrocedente retrocedere ver +retrocedenti retrocedere ver +retrocederanno retrocedere ver +retrocedere retrocedere ver +retrocederebbe retrocedere ver +retrocederlo retrocedere ver +retrocederà retrocedere ver +retrocedesse retrocedere ver +retrocedessero retrocedere ver +retrocedette retrocedere ver +retrocedettero retrocedere ver +retrocedeva retrocedere ver +retrocedevano retrocedere ver +retrocedi retrocedere ver +retrocedono retrocedere ver +retroceduto retrocedere ver +retrocessione retrocessione nom +retrocessioni retrocessione nom +retrodata retrodatare ver +retrodatando retrodatare ver +retrodatano retrodatare ver +retrodatante retrodatare ver +retrodatare retrodatare ver +retrodatarla retrodatare ver +retrodatarne retrodatare ver +retrodatata retrodatare ver +retrodatate retrodatare ver +retrodatati retrodatare ver +retrodatato retrodatare ver +retrodatazione retrodatazione nom +retrodaterebbe retrodatare ver +retroflessa retroflesso adj +retroflesse retroflesso adj +retroflessi retroflesso adj +retroflessione retroflessione nom +retroflesso retroflesso adj +retrograda retrogrado adj +retrograde retrogrado adj +retrogradi retrogrado adj +retrogrado retrogrado adj +retroguardia retroguardia nom +retroguardie retroguardia nom +retrogusti retrogusto nom +retrogusto retrogusto nom +retromarce retromarcia nom +retromarcia retromarcia nom +retropalco retropalco nom +retrorazzi retrorazzo nom +retrorazzo retrorazzo nom +retrorsa retrorso adj +retroscena retroscena nom +retrospettiva retrospettiva nom +retrospettivamente retrospettivamente adv +retrospettive retrospettiva nom +retrospettivi retrospettivo adj +retrospettivo retrospettivo adj +retrostante retrostante adj +retrostanti retrostante adj +retroterra retroterra nom +retrovendita retrovendita nom +retroversione retroversione nom +retrovia retrovia nom +retrovie retrovia nom +retrovisore retrovisore adj +retrovisori retrovisore adj +retta reggere ver +rettale rettale adj +rettali rettale adj +rettamente rettamente adv +rettangolare rettangolare adj +rettangolari rettangolare adj +rettangoli rettangolo nom +rettangolo rettangolo nom +rette retta nom +retti reggere ver +rettifica rettifica nom +rettificabile rettificabile adj +rettificabili rettificabile adj +rettificando rettificare ver +rettificandolo rettificare ver +rettificandone rettificare ver +rettificano rettificare ver +rettificante rettificare ver +rettificanti rettificare ver +rettificare rettificare ver +rettificarla rettificare ver +rettificarle rettificare ver +rettificarlo rettificare ver +rettificarne rettificare ver +rettificarono rettificare ver +rettificarsi rettificare ver +rettificata rettificare ver +rettificate rettificare ver +rettificati rettificare ver +rettificato rettificare ver +rettificatore rettificatore nom +rettificatori rettificatore nom +rettificatrice rettificatrice nom +rettificatrici rettificatrice nom +rettificava rettificare ver +rettificazione rettificazione nom +rettificazioni rettificazione nom +rettifiche rettifica nom +rettificherà rettificare ver +rettificherò rettificare ver +rettifichi rettificare ver +rettifichiamo rettificare ver +rettifico rettificare ver +rettificò rettificare ver +rettifili rettifilo nom +rettifilo rettifilo nom +rettile rettile nom +rettili rettile adj +rettilinea rettilineo adj +rettilinee rettilineo adj +rettilinei rettilineo adj +rettilineo rettilineo adj +rettitudine rettitudine nom +retto reggere ver +rettorati rettorato nom +rettorato rettorato nom +rettore rettore adj +rettori rettore nom +rettrice rettore adj +rettrici rettore adj +reuma reuma nom +reumatica reumatico adj +reumatiche reumatico adj +reumatici reumatico adj +reumatico reumatico adj +reumatismi reumatismo nom +reumatismo reumatismo nom +revanscismo revanscismo nom +revanscista revanscista nom +revansciste revanscista nom +revanscisti revanscista nom +reverenda reverendo adj +reverende reverendo adj +reverendi reverendo adj +reverendissima reverendissimo adj +reverendissime reverendissimo adj +reverendissimi reverendissimo adj +reverendissimo reverendissimo adj +reverendo reverendo adj +reverente reverente adj +reverenti reverente adj +reverenza reverenza nom +reverenze reverenza nom +reverenziale reverenziale adj +reverenziali reverenziale adj +revers revers nom +reversibile reversibile adj +reversibili reversibile adj +reversibilità reversibilità nom +reversione reversione nom +revisiona revisionare ver +revisionale revisionare ver +revisionando revisionare ver +revisionandole revisionare ver +revisionano revisionare ver +revisionare revisionare ver +revisionarla revisionare ver +revisionarli revisionare ver +revisionarlo revisionare ver +revisionarne revisionare ver +revisionarono revisionare ver +revisionasse revisionare ver +revisionata revisionare ver +revisionate revisionare ver +revisionati revisionare ver +revisionato revisionare ver +revisionava revisionare ver +revisionavano revisionare ver +revisione revisione nom +revisioni revisione nom +revisionismi revisionismo nom +revisionismo revisionismo nom +revisionista revisionista adj +revisioniste revisionista adj +revisionisti revisionista nom +revisionistica revisionistico adj +revisionistiche revisionistico adj +revisionistici revisionistico adj +revisionistico revisionistico adj +revisiono revisionare ver +revisionò revisionare ver +revisore revisore nom +revisori revisore nom +revival revival nom +revivalismo revivalismo nom +reviviscenza reviviscenza nom +reviviscenze reviviscenza nom +revoca revoca nom +revocabile revocabile adj +revocabili revocabile adj +revocabilità revocabilità nom +revocando revocare ver +revocandogli revocare ver +revocandolo revocare ver +revocano revocare ver +revocante revocare ver +revocarci revocare ver +revocare revocare ver +revocargli revocare ver +revocarla revocare ver +revocarle revocare ver +revocarli revocare ver +revocarlo revocare ver +revocarne revocare ver +revocarono revocare ver +revocasse revocare ver +revocata revocare ver +revocate revocare ver +revocati revocare ver +revocato revocare ver +revocatori revocatorio adj +revocatoria revocatorio adj +revocatorie revocatorio adj +revocatorio revocatorio adj +revocava revocare ver +revocazione revocazione nom +revoche revoca nom +revocherà revocare ver +revochi revocare ver +revochiamo revocare ver +revochino revocare ver +revoco revocare ver +revocò revocare ver +revolver revolver nom +revolverata revolverata nom +revolverate revolverata nom +revulsione revulsione nom +revulsioni revulsione nom +revulsiva revulsivo adj +revulsive revulsivo adj +revulsivo revulsivo adj +reziari reziario nom +reziario reziario nom +rezzi rezzo nom +rezzo rezzo nom +rh Rh nom +rhum rhum nom +ria rio adj +riabbassa riabbassare ver +riabbassare riabbassare ver +riabbassata riabbassare ver +riabbassato riabbassare ver +riabbassò riabbassare ver +riabbraccerà riabbracciare ver +riabbraccia riabbracciare ver +riabbracciando riabbracciare ver +riabbracciano riabbracciare ver +riabbracciare riabbracciare ver +riabbracciarla riabbracciare ver +riabbracciarli riabbracciare ver +riabbracciarlo riabbracciare ver +riabbracciarsi riabbracciare ver +riabbracciata riabbracciare ver +riabbracciato riabbracciare ver +riabbraccio riabbracciare ver +riabbracciò riabbracciare ver +riabilita riabilitare ver +riabilitando riabilitare ver +riabilitandolo riabilitare ver +riabilitandone riabilitare ver +riabilitandosi riabilitare ver +riabilitano riabilitare ver +riabilitante riabilitare ver +riabilitare riabilitare ver +riabilitarla riabilitare ver +riabilitarli riabilitare ver +riabilitarlo riabilitare ver +riabilitarmi riabilitare ver +riabilitarne riabilitare ver +riabilitarono riabilitare ver +riabilitarsi riabilitare ver +riabilitasse riabilitare ver +riabilitata riabilitare ver +riabilitate riabilitare ver +riabilitatemi riabilitare ver +riabilitati riabilitare ver +riabilitativa riabilitativo adj +riabilitative riabilitativo adj +riabilitativi riabilitativo adj +riabilitativo riabilitativo adj +riabilitato riabilitare ver +riabilitava riabilitare ver +riabilitazione riabilitazione nom +riabilitazioni riabilitazione nom +riabiliterete riabilitare ver +riabiliterà riabilitare ver +riabiliti riabilitare ver +riabilito riabilitare ver +riabilitò riabilitare ver +riabituare riabituare ver +riabituarsi riabituare ver +riaccenda riaccendere ver +riaccende riaccendere ver +riaccendendo riaccendere ver +riaccendendosi riaccendere ver +riaccenderanno riaccendere ver +riaccendere riaccendere ver +riaccenderla riaccendere ver +riaccenderle riaccendere ver +riaccenderlo riaccendere ver +riaccendersi riaccendere ver +riaccenderà riaccendere ver +riaccendesse riaccendere ver +riaccendete riaccendere ver +riaccendeva riaccendere ver +riaccendevano riaccendere ver +riaccendi riaccendere ver +riaccendo riaccendere ver +riaccendono riaccendere ver +riaccesa riaccendere ver +riaccese riaccendere ver +riaccesero riaccendere ver +riaccesi riaccendere ver +riacceso riaccendere ver +riacchiappare riacchiappare ver +riaccompagna riaccompagnare ver +riaccompagnando riaccompagnare ver +riaccompagnandola riaccompagnare ver +riaccompagnandolo riaccompagnare ver +riaccompagnano riaccompagnare ver +riaccompagnare riaccompagnare ver +riaccompagnarla riaccompagnare ver +riaccompagnarle riaccompagnare ver +riaccompagnarli riaccompagnare ver +riaccompagnarlo riaccompagnare ver +riaccompagnarono riaccompagnare ver +riaccompagnata riaccompagnare ver +riaccompagnati riaccompagnare ver +riaccompagnato riaccompagnare ver +riaccompagnava riaccompagnare ver +riaccompagnavano riaccompagnare ver +riaccompagnerà riaccompagnare ver +riaccompagni riaccompagnare ver +riaccompagnò riaccompagnare ver +riaccosta riaccostare ver +riaccostandosi riaccostare ver +riaccostare riaccostare ver +riaccostarono riaccostare ver +riaccostarsi riaccostare ver +riaccosti riaccostare ver +riaccostò riaccostare ver +riacquisire riacquisire ver +riacquisizione riacquisizione nom +riacquista riacquistare ver +riacquistando riacquistare ver +riacquistandone riacquistare ver +riacquistano riacquistare ver +riacquistar riacquistare ver +riacquistare riacquistare ver +riacquistarla riacquistare ver +riacquistarle riacquistare ver +riacquistarli riacquistare ver +riacquistarlo riacquistare ver +riacquistarne riacquistare ver +riacquistarono riacquistare ver +riacquistarsi riacquistare ver +riacquistasse riacquistare ver +riacquistassero riacquistare ver +riacquistata riacquistare ver +riacquistate riacquistare ver +riacquistati riacquistare ver +riacquistato riacquistare ver +riacquistava riacquistare ver +riacquisteranno riacquistare ver +riacquisterebbe riacquistare ver +riacquisterà riacquistare ver +riacquisti riacquistare ver +riacquisto riacquisto nom +riacquistò riacquistare ver +riacutizza riacutizzare ver +riacutizzarono riacutizzare ver +riacutizzarsi riacutizzare ver +riacutizzata riacutizzare ver +riacutizzate riacutizzare ver +riacutizzò riacutizzare ver +riadatta riadattare ver +riadattamenti riadattamento nom +riadattamento riadattamento nom +riadattando riadattare ver +riadattandola riadattare ver +riadattandole riadattare ver +riadattandoli riadattare ver +riadattandolo riadattare ver +riadattandosi riadattare ver +riadattano riadattare ver +riadattare riadattare ver +riadattarla riadattare ver +riadattarle riadattare ver +riadattarlo riadattare ver +riadattarono riadattare ver +riadattarsi riadattare ver +riadattata riadattare ver +riadattate riadattare ver +riadattati riadattare ver +riadattato riadattare ver +riadattava riadattare ver +riadatterà riadattare ver +riadatto riadattare ver +riadattò riadattare ver +riaddormenta riaddormentare ver +riaddormentai riaddormentare ver +riaddormentano riaddormentare ver +riaddormentare riaddormentare ver +riaddormentarmi riaddormentare ver +riaddormentarsi riaddormentare ver +riaddormentato riaddormentare ver +riaddormentò riaddormentare ver +riadeguamento riadeguamento nom +riadeguare riadeguare ver +riaffaccerà riaffacciare ver +riaffaccia riaffacciare ver +riaffacciandosi riaffacciare ver +riaffacciano riaffacciare ver +riaffacciarono riaffacciare ver +riaffacciarsi riaffacciare ver +riaffacciata riaffacciare ver +riaffacciati riaffacciare ver +riaffacciato riaffacciare ver +riaffacciava riaffacciare ver +riaffacciò riaffacciare ver +riafferma riaffermare ver +riaffermando riaffermare ver +riaffermandone riaffermare ver +riaffermandosi riaffermare ver +riaffermano riaffermare ver +riaffermare riaffermare ver +riaffermarne riaffermare ver +riaffermarono riaffermare ver +riaffermarsi riaffermare ver +riaffermasse riaffermare ver +riaffermata riaffermare ver +riaffermate riaffermare ver +riaffermati riaffermare ver +riaffermato riaffermare ver +riaffermava riaffermare ver +riaffermavano riaffermare ver +riaffermerà riaffermare ver +riaffermiamo riaffermare ver +riaffermo riaffermare ver +riaffermò riaffermare ver +riafferrare riafferrare ver +riafferrarlo riafferrare ver +riaggiusta riaggiustare ver +riaggiustamenti riaggiustamento nom +riaggiustamento riaggiustamento nom +riaggiustando riaggiustare ver +riaggiustano riaggiustare ver +riaggiustare riaggiustare ver +riaggiustata riaggiustare ver +riaggiustate riaggiustare ver +riaggiustati riaggiustare ver +riaggiustato riaggiustare ver +riaggravarsi riaggravare ver +riaggravato riaggravare ver +riallacceranno riallacciare ver +riallaccerebbe riallacciare ver +riallaccerà riallacciare ver +riallacci riallacciare ver +riallaccia riallacciare ver +riallacciando riallacciare ver +riallacciandolo riallacciare ver +riallacciandomi riallacciare ver +riallacciandosi riallacciare ver +riallacciano riallacciare ver +riallacciare riallacciare ver +riallacciarli riallacciare ver +riallacciarlo riallacciare ver +riallacciarmi riallacciare ver +riallacciarono riallacciare ver +riallacciarsi riallacciare ver +riallacciata riallacciare ver +riallacciate riallacciare ver +riallacciati riallacciare ver +riallacciato riallacciare ver +riallacciava riallacciare ver +riallacciavano riallacciare ver +riallaccio riallacciare ver +riallacciò riallacciare ver +riallarga riallargare ver +riallargarsi riallargare ver +riallineamenti riallineamento nom +riallineamento riallineamento nom +riallungò riallungare ver +rialti rialto nom +rialto rialto nom +rialza rialzare ver +rialzai rialzare ver +rialzando rialzare ver +rialzandole rialzare ver +rialzandoli rialzare ver +rialzandolo rialzare ver +rialzandone rialzare ver +rialzandosi rialzare ver +rialzano rialzare ver +rialzarci rialzare ver +rialzare rialzare ver +rialzarla rialzare ver +rialzarlo rialzare ver +rialzarmi rialzare ver +rialzarono rialzare ver +rialzarsi rialzare ver +rialzarti rialzare ver +rialzasse rialzare ver +rialzata rialzare ver +rialzate rialzato adj +rialzati rialzato adj +rialzato rialzare ver +rialzava rialzare ver +rialzavano rialzare ver +rialzeranno rialzare ver +rialzerà rialzare ver +rialzerò rialzare ver +rialzi rialzo nom +rialziamo rialzare ver +rialzista rialzista nom +rialziste rialzista nom +rialzisti rialzista nom +rialzo rialzo nom +rialzò rialzare ver +riama riamare ver +riamane riamare ver +riamare riamare ver +riamarlo riamare ver +riamata riamare ver +riamato riamare ver +riami riamare ver +riammalò riammalare ver +riammessa riammettere ver +riammesse riammettere ver +riammessi riammettere ver +riammesso riammettere ver +riammette riammettere ver +riammettendo riammettere ver +riammettendola riammettere ver +riammettendoli riammettere ver +riammettendolo riammettere ver +riammettere riammettere ver +riammetterla riammettere ver +riammetterli riammettere ver +riammetterlo riammettere ver +riammetteva riammettere ver +riammetto riammettere ver +riammettono riammettere ver +riammise riammettere ver +riammissione riammissione nom +riammissioni riammissione nom +riandando riandare ver +riandare riandare ver +riandrà riandare ver +riandò riandare ver +rianima rianimare ver +rianimando rianimare ver +rianimandola rianimare ver +rianimandoli rianimare ver +rianimandolo rianimare ver +rianimandosi rianimare ver +rianimano rianimare ver +rianimare rianimare ver +rianimarla rianimare ver +rianimarli rianimare ver +rianimarlo rianimare ver +rianimarono rianimare ver +rianimarsi rianimare ver +rianimata rianimare ver +rianimate rianimare ver +rianimati rianimare ver +rianimato rianimare ver +rianimava rianimare ver +rianimavano rianimare ver +rianimazione rianimazione nom +rianimazioni rianimazione nom +rianimi rianimare ver +rianimo rianimare ver +rianimò rianimare ver +riannessa riannettere ver +riannesse riannettere ver +riannessi riannettere ver +riannessione riannessione nom +riannesso riannettere ver +riannettere riannettere ver +riannettersi riannettere ver +riannetti riannettere ver +riannoda riannodare ver +riannodandosela riannodare ver +riannodare riannodare ver +riannodarsi riannodare ver +riannodata riannodare ver +riannodato riannodare ver +riannoderà riannodare ver +riannodò riannodare ver +riaperta riaprire ver +riaperte riaprire ver +riaperti riaprire ver +riaperto riaprire ver +riapertura riapertura nom +riaperture riapertura nom +riappacificazione riappacificazione nom +riappaia riapparire ver +riappaiono riapparire ver +riappare riapparire ver +riapparendo riapparire ver +riappariranno riapparire ver +riapparire riapparire ver +riapparirebbero riapparire ver +riapparirono riapparire ver +riapparirvi riapparire ver +riapparirà riapparire ver +riapparisse riapparire ver +riappariva riapparire ver +riapparivano riapparire ver +riapparizione riapparizione nom +riapparizioni riapparizione nom +riapparsa riapparire ver +riapparse riapparire ver +riapparsi riapparire ver +riapparso riapparire ver +riapparve riapparire ver +riappropria riappropriarsi ver +riappropriamoci riappropriarsi ver +riappropriando riappropriarsi ver +riappropriandosi riappropriarsi ver +riappropriano riappropriarsi ver +riappropriarci riappropriarsi ver +riappropriare riappropriarsi ver +riappropriarmi riappropriarsi ver +riappropriarono riappropriarsi ver +riappropriarsene riappropriarsi ver +riappropriarsi riappropriarsi ver +riappropriata riappropriarsi ver +riappropriate riappropriarsi ver +riappropriati riappropriarsi ver +riappropriato riappropriarsi ver +riappropriava riappropriarsi ver +riapproprierebbe riappropriarsi ver +riapproprierà riappropriarsi ver +riappropriò riappropriarsi ver +riapprova riapprovare ver +riapprovando riapprovare ver +riapprovare riapprovare ver +riapprovata riapprovare ver +riapprovato riapprovare ver +riapprovò riapprovare ver +riapra riaprire ver +riaprano riaprire ver +riapre riaprire ver +riaprendo riaprire ver +riaprendola riaprire ver +riaprendole riaprire ver +riaprendone riaprire ver +riaprendosi riaprire ver +riapri riaprire ver +riapriamo riaprire ver +riaprila riaprire ver +riapriranno riaprire ver +riaprire riaprire ver +riaprirebbe riaprire ver +riaprirei riaprire ver +riapriremo riaprire ver +riaprirla riaprire ver +riaprirle riaprire ver +riaprirli riaprire ver +riaprirlo riaprire ver +riaprirmi riaprire ver +riaprirne riaprire ver +riaprirono riaprire ver +riaprirsi riaprire ver +riaprirà riaprire ver +riaprirò riaprire ver +riaprisse riaprire ver +riaprissero riaprire ver +riaprite riaprire ver +riapritela riaprire ver +riapriva riaprire ver +riaprivano riaprire ver +riapro riaprire ver +riaprono riaprire ver +riaprì riaprire ver +riarma riarmare ver +riarmamento riarmamento nom +riarmando riarmare ver +riarmandosi riarmare ver +riarmare riarmare ver +riarmarla riarmare ver +riarmarlo riarmare ver +riarmarono riarmare ver +riarmarsi riarmare ver +riarmata riarmare ver +riarmate riarmare ver +riarmati riarmare ver +riarmato riarmare ver +riarmo riarmo nom +riarmò riarmare ver +riarsa riarso adj +riarse riarso adj +riarsi riarso adj +riarso riarso adj +riascolta riascoltare ver +riascoltando riascoltare ver +riascoltano riascoltare ver +riascoltare riascoltare ver +riascoltarli riascoltare ver +riascoltarlo riascoltare ver +riascoltarono riascoltare ver +riascoltata riascoltare ver +riascoltate riascoltare ver +riascoltato riascoltare ver +riascoltava riascoltare ver +riascolto riascoltare ver +riascoltò riascoltare ver +riassalito riassalire ver +riassapora riassaporare ver +riassaporano riassaporare ver +riassaporare riassaporare ver +riassaporato riassaporare ver +riassaporò riassaporare ver +riassegnando riassegnare ver +riassegnare riassegnare ver +riassegnati riassegnare ver +riassegnazione riassegnazione nom +riassesta riassestare ver +riassestamenti riassestamento nom +riassestamento riassestamento nom +riassestando riassestare ver +riassestare riassestare ver +riassestarsi riassestare ver +riassestata riassestare ver +riassestate riassestare ver +riassestati riassestare ver +riassestato riassestare ver +riassesto riassestare ver +riassestò riassestare ver +riassettare riassettare ver +riassettarono riassettare ver +riassettata riassettare ver +riassettati riassettare ver +riassettato riassettare ver +riassetti riassetto nom +riassetto riassetto nom +riassettò riassettare ver +riassicurare riassicurare ver +riassicuratore riassicuratore nom +riassicurazione riassicurazione nom +riassicurazioni riassicurazione nom +riassorbendo riassorbire ver +riassorbire riassorbire ver +riassorbirla riassorbire ver +riassorbirle riassorbire ver +riassorbirli riassorbire ver +riassorbirlo riassorbire ver +riassorbirsi riassorbire ver +riassorbita riassorbire ver +riassorbite riassorbire ver +riassorbiti riassorbire ver +riassorbito riassorbire ver +riassorbì riassorbire ver +riassuma riassumere ver +riassumano riassumere ver +riassume riassumere ver +riassumendo riassumere ver +riassumendola riassumere ver +riassumendole riassumere ver +riassumendoli riassumere ver +riassumendolo riassumere ver +riassumendone riassumere ver +riassumente riassumere ver +riassumeranno riassumere ver +riassumere riassumere ver +riassumerei riassumere ver +riassumerla riassumere ver +riassumerle riassumere ver +riassumerli riassumere ver +riassumerlo riassumere ver +riassumermi riassumere ver +riassumerne riassumere ver +riassumersi riassumere ver +riassumerà riassumere ver +riassumerò riassumere ver +riassumesse riassumere ver +riassumete riassumere ver +riassumeva riassumere ver +riassumevano riassumere ver +riassumi riassumere ver +riassumiamo riassumere ver +riassumibile riassumibile adj +riassumibili riassumibile adj +riassumo riassumere ver +riassumono riassumere ver +riassunse riassumere ver +riassunsero riassumere ver +riassunta riassumere ver +riassunte riassumere ver +riassunti riassumere ver +riassuntiva riassuntivo adj +riassuntive riassuntivo adj +riassuntivi riassuntivo adj +riassuntivo riassuntivo adj +riassunto riassunto nom +riassunzione riassunzione nom +riattacca riattaccare ver +riattaccando riattaccare ver +riattaccano riattaccare ver +riattaccare riattaccare ver +riattaccargli riattaccare ver +riattaccarla riattaccare ver +riattaccarle riattaccare ver +riattaccarli riattaccare ver +riattaccarlo riattaccare ver +riattaccarono riattaccare ver +riattaccarsi riattaccare ver +riattaccata riattaccare ver +riattaccate riattaccare ver +riattaccati riattaccare ver +riattaccato riattaccare ver +riattacchino riattaccare ver +riattacco riattaccare ver +riattaccò riattaccare ver +riattamenti riattamento nom +riattamento riattamento nom +riattando riattare ver +riattare riattare ver +riattarono riattare ver +riattata riattare ver +riattate riattare ver +riattati riattare ver +riattato riattare ver +riatti riattare ver +riattiva riattivare ver +riattivando riattivare ver +riattivandolo riattivare ver +riattivandone riattivare ver +riattivano riattivare ver +riattivare riattivare ver +riattivarla riattivare ver +riattivarle riattivare ver +riattivarli riattivare ver +riattivarlo riattivare ver +riattivarne riattivare ver +riattivarono riattivare ver +riattivarsi riattivare ver +riattivata riattivare ver +riattivate riattivare ver +riattivati riattivare ver +riattivato riattivare ver +riattivazione riattivazione nom +riattivazioni riattivazione nom +riattiverebbe riattivare ver +riattiverà riattivare ver +riattivi riattivare ver +riattiviamo riattivare ver +riattivo riattivare ver +riattivò riattivare ver +riattizzare riattizzare ver +riattizzarsi riattizzare ver +riattribuzione riattribuzione nom +riavendosi riavere ver +riaver riavere ver +riaverla riavere ver +riaverle riavere ver +riaverli riavere ver +riaverlo riavere ver +riavermi riavere ver +riaversi riavere ver +riaverti riavere ver +riavesse riavere ver +riavessi riavere ver +riavrai riavere ver +riavranno riavere ver +riavremo riavere ver +riavrete riavere ver +riavrà riavere ver +riavrò riavere ver +riavuta riavere ver +riavute riavere ver +riavuti riavere ver +riavuto riavere ver +riavviare riavviare ver +riavvicina riavvicinare ver +riavvicinamenti riavvicinamento nom +riavvicinamento riavvicinamento nom +riavvicinando riavvicinare ver +riavvicinandolo riavvicinare ver +riavvicinandosi riavvicinare ver +riavvicinano riavvicinare ver +riavvicinarci riavvicinare ver +riavvicinare riavvicinare ver +riavvicinarla riavvicinare ver +riavvicinarli riavvicinare ver +riavvicinarlo riavvicinare ver +riavvicinarono riavvicinare ver +riavvicinarsi riavvicinare ver +riavvicinarti riavvicinare ver +riavvicinasse riavvicinare ver +riavvicinata riavvicinare ver +riavvicinate riavvicinare ver +riavvicinati riavvicinare ver +riavvicinato riavvicinare ver +riavvicinava riavvicinare ver +riavvicineranno riavvicinare ver +riavvicinerà riavvicinare ver +riavvicini riavvicinare ver +riavvicinino riavvicinare ver +riavvicino riavvicinare ver +riavvicinò riavvicinare ver +riavvolge riavvolgere ver +riavvolgendo riavvolgere ver +riavvolgendolo riavvolgere ver +riavvolgendosi riavvolgere ver +riavvolgere riavvolgere ver +riavvolgerlo riavvolgere ver +riavvolgersi riavvolgere ver +riavvolgesse riavvolgere ver +riavvolgeva riavvolgere ver +riavvolgi riavvolgere ver +riavvolgimento riavvolgimento nom +riavvolgono riavvolgere ver +riavvolta riavvolgere ver +riavvolti riavvolgere ver +riavvolto riavvolgere ver +ribadendo ribadire ver +ribadendogli ribadire ver +ribadendola ribadire ver +ribadendole ribadire ver +ribadendolo ribadire ver +ribadendone ribadire ver +ribadendosi ribadire ver +ribadiamo ribadire ver +ribadiranno ribadire ver +ribadire ribadire ver +ribadirebbe ribadire ver +ribadirei ribadire ver +ribadirgli ribadire ver +ribadirla ribadire ver +ribadirle ribadire ver +ribadirlo ribadire ver +ribadirne ribadire ver +ribadirono ribadire ver +ribadirti ribadire ver +ribadirà ribadire ver +ribadirò ribadire ver +ribadisca ribadire ver +ribadisce ribadire ver +ribadisci ribadire ver +ribadisco ribadire ver +ribadiscono ribadire ver +ribadisse ribadire ver +ribadissero ribadire ver +ribadita ribadire ver +ribadite ribadire ver +ribaditi ribadire ver +ribadito ribadire ver +ribaditura ribaditura nom +ribadiva ribadire ver +ribadivano ribadire ver +ribadivo ribadire ver +ribadì ribadire ver +ribaldi ribaldo nom +ribaldo ribaldo nom +ribalta ribalta nom +ribaltabile ribaltabile adj +ribaltabili ribaltabile adj +ribaltamenti ribaltamento nom +ribaltamento ribaltamento nom +ribaltando ribaltare ver +ribaltandola ribaltare ver +ribaltandole ribaltare ver +ribaltandolo ribaltare ver +ribaltandone ribaltare ver +ribaltandosi ribaltare ver +ribaltano ribaltare ver +ribaltante ribaltare ver +ribaltare ribaltare ver +ribaltarla ribaltare ver +ribaltarli ribaltare ver +ribaltarlo ribaltare ver +ribaltarne ribaltare ver +ribaltarono ribaltare ver +ribaltarsi ribaltare ver +ribaltasse ribaltare ver +ribaltata ribaltare ver +ribaltate ribaltare ver +ribaltati ribaltare ver +ribaltato ribaltare ver +ribaltava ribaltare ver +ribaltavano ribaltare ver +ribalte ribalta nom +ribalteranno ribaltare ver +ribalterei ribaltare ver +ribalterà ribaltare ver +ribalti ribaltare ver +ribaltiamo ribaltare ver +ribaltina ribaltina nom +ribalto ribaltare ver +ribaltò ribaltare ver +ribassa ribassare ver +ribassare ribassare ver +ribassata ribassare ver +ribassate ribassare ver +ribassati ribassare ver +ribassato ribassare ver +ribassava ribassare ver +ribassi ribasso nom +ribassista ribassista nom +ribassiste ribassista nom +ribassisti ribassista nom +ribasso ribasso nom +ribassò ribassare ver +ribatte ribattere ver +ribattei ribattere ver +ribattendo ribattere ver +ribattendolo ribattere ver +ribattere ribattere ver +ribatterla ribattere ver +ribatterlo ribattere ver +ribattermi ribattere ver +ribatterono ribattere ver +ribatterà ribattere ver +ribatterò ribattere ver +ribattesse ribattere ver +ribatteva ribattere ver +ribattevano ribattere ver +ribattezza ribattezzare ver +ribattezzando ribattezzare ver +ribattezzandola ribattezzare ver +ribattezzandole ribattezzare ver +ribattezzandoli ribattezzare ver +ribattezzandolo ribattezzare ver +ribattezzandosi ribattezzare ver +ribattezzano ribattezzare ver +ribattezzare ribattezzare ver +ribattezzarla ribattezzare ver +ribattezzarle ribattezzare ver +ribattezzarli ribattezzare ver +ribattezzarlo ribattezzare ver +ribattezzarono ribattezzare ver +ribattezzarsi ribattezzare ver +ribattezzassero ribattezzare ver +ribattezzata ribattezzare ver +ribattezzate ribattezzare ver +ribattezzati ribattezzare ver +ribattezzato ribattezzare ver +ribattezzavano ribattezzare ver +ribattezzeranno ribattezzare ver +ribattezzerà ribattezzare ver +ribattezziamolo ribattezzare ver +ribattezzo ribattezzare ver +ribattezzò ribattezzare ver +ribatti ribattere ver +ribattini ribattino nom +ribattino ribattino nom +ribatto ribattere ver +ribattono ribattere ver +ribattuta ribattuta nom +ribattute ribattere ver +ribattuti ribattere ver +ribattuto ribattere ver +ribeca ribeca nom +ribeche ribeca nom +ribella ribellare ver +ribellando ribellare ver +ribellandomi ribellare ver +ribellandosi ribellare ver +ribellano ribellare ver +ribellarci ribellare ver +ribellare ribellare ver +ribellarmi ribellare ver +ribellarono ribellare ver +ribellarsi ribellare ver +ribellasse ribellare ver +ribellassero ribellare ver +ribellata ribellare ver +ribellate ribellare ver +ribellatesi ribellare ver +ribellatevi ribellare ver +ribellati ribellare ver +ribellato ribellare ver +ribellava ribellare ver +ribellavano ribellare ver +ribelle ribelle adj +ribelleranno ribellare ver +ribellerà ribellare ver +ribelli ribelle nom +ribelliamo ribellare ver +ribellino ribellare ver +ribellione ribellione nom +ribellioni ribellione nom +ribellismo ribellismo nom +ribellistiche ribellistico adj +ribellistico ribellistico adj +ribello ribellare ver +ribellò ribellare ver +ribes ribes nom +riboccante riboccare ver +ribolla ribollire ver +ribolle ribollire ver +ribollendo ribollire ver +ribollente ribollire ver +ribollenti ribollire ver +ribollimento ribollimento nom +ribollir ribollire ver +ribollire ribollire ver +ribollita ribollire ver +ribolliti ribollire ver +ribollito ribollire ver +ribolliva ribollire ver +ribollivano ribollire ver +ribollono ribollire ver +ribonucleica ribonucleico adj +ribonucleici ribonucleico adj +ribonucleico ribonucleico adj +ribosio ribosio nom +ribrezzo ribrezzo nom +ributta ributtare ver +ributtando ributtare ver +ributtandola ributtare ver +ributtano ributtare ver +ributtante ributtante adj +ributtanti ributtante adj +ributtare ributtare ver +ributtarla ributtare ver +ributtarlo ributtare ver +ributtarono ributtare ver +ributtarsi ributtare ver +ributtata ributtare ver +ributtate ributtare ver +ributtati ributtare ver +ributtato ributtare ver +ributtava ributtare ver +ributto ributtare ver +ributtò ributtare ver +ricaccerà ricacciare ver +ricacci ricacciare ver +ricaccia ricacciare ver +ricacciando ricacciare ver +ricacciandola ricacciare ver +ricacciandole ricacciare ver +ricacciandoli ricacciare ver +ricacciandolo ricacciare ver +ricacciano ricacciare ver +ricacciare ricacciare ver +ricacciarla ricacciare ver +ricacciarle ricacciare ver +ricacciarli ricacciare ver +ricacciarlo ricacciare ver +ricacciarono ricacciare ver +ricacciata ricacciare ver +ricacciate ricacciare ver +ricacciati ricacciare ver +ricacciato ricacciare ver +ricacciava ricacciare ver +ricacciavano ricacciare ver +ricaccio ricacciare ver +ricacciò ricacciare ver +ricada ricadere ver +ricadano ricadere ver +ricadde ricadere ver +ricaddero ricadere ver +ricade ricadere ver +ricadendo ricadere ver +ricadente ricadere ver +ricadenti ricadere ver +ricaderci ricadere ver +ricadere ricadere ver +ricadesse ricadere ver +ricadessero ricadere ver +ricadeva ricadere ver +ricadevano ricadere ver +ricadi ricadere ver +ricadiamo ricadere ver +ricado ricadere ver +ricadono ricadere ver +ricadranno ricadere ver +ricadrebbe ricadere ver +ricadrebbero ricadere ver +ricadremmo ricadere ver +ricadrà ricadere ver +ricaduta ricaduta nom +ricadute ricaduta nom +ricaduti ricadere ver +ricaduto ricadere ver +ricalca ricalcare ver +ricalcando ricalcare ver +ricalcandone ricalcare ver +ricalcano ricalcare ver +ricalcante ricalcare ver +ricalcanti ricalcare ver +ricalcare ricalcare ver +ricalcarla ricalcare ver +ricalcarlo ricalcare ver +ricalcarne ricalcare ver +ricalcarono ricalcare ver +ricalcasse ricalcare ver +ricalcata ricalcare ver +ricalcate ricalcare ver +ricalcati ricalcare ver +ricalcato ricalcare ver +ricalcava ricalcare ver +ricalcavano ricalcare ver +ricalcheranno ricalcare ver +ricalcherebbe ricalcare ver +ricalcherebbero ricalcare ver +ricalcherei ricalcare ver +ricalcherà ricalcare ver +ricalchi ricalco nom +ricalchino ricalcare ver +ricalco ricalco nom +ricalcò ricalcare ver +ricama ricamare ver +ricamando ricamare ver +ricamandoci ricamare ver +ricamano ricamare ver +ricamanti ricamare ver +ricamarci ricamare ver +ricamare ricamare ver +ricamata ricamare ver +ricamate ricamare ver +ricamati ricamare ver +ricamato ricamare ver +ricamatore ricamatore nom +ricamatori ricamatore nom +ricamatrice ricamatore nom +ricamatrici ricamatore nom +ricamava ricamare ver +ricamavano ricamare ver +ricambi ricambio nom +ricambia ricambiare ver +ricambiamo ricambiare ver +ricambiando ricambiare ver +ricambiandola ricambiare ver +ricambiandolo ricambiare ver +ricambiandone ricambiare ver +ricambiano ricambiare ver +ricambiare ricambiare ver +ricambiargli ricambiare ver +ricambiarla ricambiare ver +ricambiarle ricambiare ver +ricambiarlo ricambiare ver +ricambiarmi ricambiare ver +ricambiarne ricambiare ver +ricambiarono ricambiare ver +ricambiarsi ricambiare ver +ricambiasse ricambiare ver +ricambiata ricambiare ver +ricambiate ricambiare ver +ricambiati ricambiare ver +ricambiato ricambiare ver +ricambiava ricambiare ver +ricambiavano ricambiare ver +ricambieranno ricambiare ver +ricambierà ricambiare ver +ricambino ricambiare ver +ricambio ricambio nom +ricambiò ricambiare ver +ricami ricamo nom +ricamino ricamare ver +ricamo ricamo nom +ricamò ricamare ver +ricanta ricantare ver +ricantare ricantare ver +ricantarono ricantare ver +ricantata ricantare ver +ricantate ricantare ver +ricantati ricantare ver +ricantato ricantare ver +ricanterei ricantare ver +ricanterà ricantare ver +ricanto ricantare ver +ricantò ricantare ver +ricapitalizzazione ricapitalizzazione nom +ricapitalizzazioni ricapitalizzazione nom +ricapitola ricapitolare ver +ricapitolando ricapitolare ver +ricapitolano ricapitolare ver +ricapitolare ricapitolare ver +ricapitolata ricapitolare ver +ricapitolate ricapitolare ver +ricapitolati ricapitolare ver +ricapitolativa ricapitolativo adj +ricapitolato ricapitolare ver +ricapitolava ricapitolare ver +ricapitolazione ricapitolazione nom +ricapitolazioni ricapitolazione nom +ricapitoliamo ricapitolare ver +ricapitolo ricapitolare ver +ricarica ricarica nom +ricaricala ricaricare ver +ricaricando ricaricare ver +ricaricandola ricaricare ver +ricaricandolo ricaricare ver +ricaricandosi ricaricare ver +ricaricano ricaricare ver +ricaricare ricaricare ver +ricaricarla ricaricare ver +ricaricarle ricaricare ver +ricaricarli ricaricare ver +ricaricarlo ricaricare ver +ricaricarne ricaricare ver +ricaricarsi ricaricare ver +ricaricasse ricaricare ver +ricaricassero ricaricare ver +ricaricata ricaricare ver +ricaricate ricaricare ver +ricaricati ricaricare ver +ricaricato ricaricare ver +ricaricava ricaricare ver +ricaricavano ricaricare ver +ricariche ricarica nom +ricaricherà ricaricare ver +ricaricherò ricaricare ver +ricarichi ricaricare ver +ricarichino ricaricare ver +ricarico ricaricare ver +ricaricò ricaricare ver +ricasca ricascare ver +ricascarci ricascare ver +ricascare ricascare ver +ricaschi ricascare ver +ricaschiamo ricascare ver +ricasco ricascare ver +ricasso ricasso nom +ricatta ricattare ver +ricattando ricattare ver +ricattandola ricattare ver +ricattandoli ricattare ver +ricattandolo ricattare ver +ricattano ricattare ver +ricattare ricattare ver +ricattarla ricattare ver +ricattarli ricattare ver +ricattarlo ricattare ver +ricattarono ricattare ver +ricattasse ricattare ver +ricattata ricattare ver +ricattate ricattare ver +ricattati ricattare ver +ricattato ricattare ver +ricattatore ricattatora|ricattatore nom +ricattatori ricattatore nom +ricattatrice ricattatore nom +ricattava ricattare ver +ricattavano ricattare ver +ricatterà ricattare ver +ricatti ricatto nom +ricattino ricattare ver +ricatto ricatto nom +ricattò ricattare ver +ricava ricavare ver +ricavabile ricavabile adj +ricavabili ricavabile adj +ricavai ricavare ver +ricavando ricavare ver +ricavandoci ricavare ver +ricavandola ricavare ver +ricavandole ricavare ver +ricavandoli ricavare ver +ricavandolo ricavare ver +ricavandone ricavare ver +ricavandosi ricavare ver +ricavandovi ricavare ver +ricavane ricavare ver +ricavano ricavare ver +ricavar ricavare ver +ricavarci ricavare ver +ricavare ricavare ver +ricavarla ricavare ver +ricavarle ricavare ver +ricavarli ricavare ver +ricavarlo ricavare ver +ricavarne ricavare ver +ricavarono ricavare ver +ricavarsene ricavare ver +ricavarsi ricavare ver +ricavarti ricavare ver +ricavarvi ricavare ver +ricavasi ricavare ver +ricavasse ricavare ver +ricavassero ricavare ver +ricavata ricavare ver +ricavate ricavare ver +ricavati ricavare ver +ricavato ricavare ver +ricavava ricavare ver +ricavavano ricavare ver +ricaveranno ricavare ver +ricaverebbe ricavare ver +ricaverebbero ricavare ver +ricaverei ricavare ver +ricaveremmo ricavare ver +ricaverà ricavare ver +ricaverò ricavare ver +ricavi ricavo nom +ricaviamo ricavare ver +ricavino ricavare ver +ricavo ricavo nom +ricavò ricavare ver +ricca ricco adj +ricce riccio adj +ricche ricco adj +ricchezza ricchezza nom +ricchezze ricchezza nom +ricchi ricco adj +ricchissima ricchissimo adj +ricchissime ricchissimo adj +ricchissimi ricchissimo adj +ricchissimo ricchissimo adj +ricci riccio adj +riccia riccio adj +ricciarelli ricciarello nom +riccio riccio adj +riccioli ricciolo nom +ricciolo ricciolo nom +riccioluta riccioluto adj +ricciolute riccioluto adj +riccioluti riccioluto adj +riccioluto riccioluto adj +ricciuta ricciuto adj +ricciute ricciuto adj +ricciuti ricciuto adj +ricciuto ricciuto adj +ricco ricco adj +ricede ricedere ver +ricedere ricedere ver +ricederla ricedere ver +ricederlo ricedere ver +riceduta ricedere ver +riceduti ricedere ver +riceduto ricedere ver +ricerca ricerca nom +ricercando ricercare ver +ricercandola ricercare ver +ricercandole ricercare ver +ricercandolo ricercare ver +ricercandone ricercare ver +ricercandosi ricercare ver +ricercano ricercare ver +ricercanti ricercare ver +ricercar ricercare ver +ricercare ricercare ver +ricercarla ricercare ver +ricercarle ricercare ver +ricercarli ricercare ver +ricercarlo ricercare ver +ricercarne ricercare ver +ricercarono ricercare ver +ricercarsi ricercare ver +ricercarvi ricercare ver +ricercasi ricercare ver +ricercasse ricercare ver +ricercassero ricercare ver +ricercata ricercare ver +ricercate ricercare ver +ricercatezza ricercatezza nom +ricercatezze ricercatezza nom +ricercati ricercare ver +ricercato ricercare ver +ricercatore ricercatore nom +ricercatori ricercatore nom +ricercatrice ricercatore nom +ricercatrici ricercatore nom +ricercava ricercare ver +ricercavano ricercare ver +ricercavo ricercare ver +ricerche ricerca nom +ricercheranno ricercare ver +ricercherebbe ricercare ver +ricercherà ricercare ver +ricercherò ricercare ver +ricerchi ricercare ver +ricerchiamo ricercare ver +ricerchino ricercare ver +ricerco ricercare ver +ricercò ricercare ver +ricetrasmettitore ricetrasmettitore adj +ricetrasmettitori ricetrasmettitore nom +ricetrasmittente ricetrasmittente adj +ricetrasmittenti ricetrasmittente adj +ricetta ricetta nom +ricettacoli ricettacolo nom +ricettacolo ricettacolo nom +ricettare ricettare ver +ricettari ricettario nom +ricettario ricettario nom +ricettato ricettare ver +ricettatore ricettatore nom +ricettatori ricettatore nom +ricettatrice ricettatore nom +ricettazione ricettazione nom +ricette ricetta nom +ricetti ricetto nom +ricettiva ricettivo adj +ricettive ricettivo adj +ricettivi ricettivo adj +ricettività ricettività nom +ricettivo ricettivo adj +ricetto ricetto nom +ricettore ricettore nom +ricettori ricettore nom +ricettrice ricettore nom +riceva ricevere ver +ricevano ricevere ver +riceve ricevere ver +ricevemmo ricevere ver +ricevendo ricevere ver +ricevendola ricevere ver +ricevendoli ricevere ver +ricevendolo ricevere ver +ricevendone ricevere ver +ricevendovi ricevere ver +ricevente ricevente nom +riceventi ricevente adj +ricever ricevere ver +riceverai ricevere ver +riceveranno ricevere ver +ricevere ricevere ver +riceverebbe ricevere ver +riceverebbero ricevere ver +riceverei ricevere ver +riceveremmo ricevere ver +riceveremo ricevere ver +riceveresti ricevere ver +riceverete ricevere ver +riceverla ricevere ver +riceverle ricevere ver +riceverli ricevere ver +riceverlo ricevere ver +ricevermi ricevere ver +riceverne ricevere ver +riceversi ricevere ver +ricevervi ricevere ver +riceverà ricevere ver +riceverò ricevere ver +ricevesse ricevere ver +ricevessero ricevere ver +ricevessi ricevere ver +ricevessimo ricevere ver +riceveste ricevere ver +ricevete ricevere ver +ricevetelo ricevere ver +ricevette ricevere ver +ricevettero ricevere ver +ricevetti ricevere ver +riceveva ricevere ver +ricevevamo ricevere ver +ricevevano ricevere ver +ricevevi ricevere ver +ricevevo ricevere ver +ricevi ricevere ver +riceviamo ricevere ver +riceviate ricevere ver +ricevibile ricevibile adj +ricevibili ricevibile adj +ricevibilità ricevibilità nom +ricevimenti ricevimento nom +ricevimento ricevimento nom +ricevitore ricevitore nom +ricevitori ricevitore nom +ricevitoria ricevitoria nom +ricevitorie ricevitoria nom +ricevitrice ricevitore adj +ricevitrici ricevitore adj +ricevo ricevere ver +ricevono ricevere ver +ricevuta ricevuta nom +ricevute ricevere ver +ricevuti ricevere ver +ricevuto ricevere ver +ricezione ricezione nom +ricezioni ricezione nom +richiama richiamare ver +richiamabili richiamabile adj +richiamai richiamare ver +richiamalo richiamare ver +richiamando richiamare ver +richiamandoci richiamare ver +richiamandola richiamare ver +richiamandole richiamare ver +richiamandoli richiamare ver +richiamandolo richiamare ver +richiamandomi richiamare ver +richiamandone richiamare ver +richiamandosi richiamare ver +richiamano richiamare ver +richiamante richiamare ver +richiamanti richiamare ver +richiamar richiamare ver +richiamarci richiamare ver +richiamare richiamare ver +richiamarla richiamare ver +richiamarle richiamare ver +richiamarli richiamare ver +richiamarlo richiamare ver +richiamarmi richiamare ver +richiamarne richiamare ver +richiamarono richiamare ver +richiamarsi richiamare ver +richiamarti richiamare ver +richiamarvi richiamare ver +richiamasse richiamare ver +richiamassero richiamare ver +richiamata richiamare ver +richiamate richiamare ver +richiamatemi richiamare ver +richiamati richiamare ver +richiamato richiamare ver +richiamava richiamare ver +richiamavano richiamare ver +richiamerai richiamare ver +richiameranno richiamare ver +richiamerebbe richiamare ver +richiamerebbero richiamare ver +richiamerei richiamare ver +richiameremo richiamare ver +richiamerà richiamare ver +richiamerò richiamare ver +richiami richiamo nom +richiamiamo richiamare ver +richiamino richiamare ver +richiamo richiamo nom +richiamò richiamare ver +richieda richiedere ver +richiedano richiedere ver +richiede richiedere ver +richiedendo richiedere ver +richiedendogli richiedere ver +richiedendola richiedere ver +richiedendole richiedere ver +richiedendolo richiedere ver +richiedendone richiedere ver +richiedendosi richiedere ver +richiedente richiedente adj +richiedenti richiedente adj +richiederanno richiedere ver +richiedere richiedere ver +richiederebbe richiedere ver +richiederebbero richiedere ver +richiederei richiedere ver +richiederemo richiedere ver +richiedergli richiedere ver +richiederglielo richiedere ver +richiederla richiedere ver +richiederle richiedere ver +richiederli richiedere ver +richiederlo richiedere ver +richiedermi richiedere ver +richiederne richiedere ver +richiedersi richiedere ver +richiederti richiedere ver +richiedervi richiedere ver +richiederà richiedere ver +richiederò richiedere ver +richiedesse richiedere ver +richiedessero richiedere ver +richiedete richiedere ver +richiedetene richiedere ver +richiedeva richiedere ver +richiedevano richiedere ver +richiedevo richiedere ver +richiedi richiedere ver +richiediamo richiedere ver +richiedila richiedere ver +richiedili richiedere ver +richiedilo richiedere ver +richiedine richiedere ver +richiedo richiedere ver +richiedono richiedere ver +richiese richiedere ver +richiesero richiedere ver +richiesi richiedere ver +richiesta richiesta nom +richieste richiedere ver +richiesti richiedere ver +richiesto richiedere ver +richiuda richiudere ver +richiude richiudere ver +richiudendo richiudere ver +richiudendola richiudere ver +richiudendole richiudere ver +richiudendolo richiudere ver +richiudendosi richiudere ver +richiudere richiudere ver +richiuderla richiudere ver +richiuderle richiudere ver +richiuderli richiudere ver +richiuderlo richiudere ver +richiudersi richiudere ver +richiuderà richiudere ver +richiudete richiudere ver +richiudeva richiudere ver +richiudevano richiudere ver +richiudo richiudere ver +richiudono richiudere ver +richiusa richiudere ver +richiuse richiudere ver +richiusero richiudere ver +richiusi richiudere ver +richiuso richiudere ver +ricicla riciclare ver +riciclabilità riciclabilità nom +riciclaggi riciclaggio nom +riciclaggio riciclaggio nom +riciclando riciclare ver +riciclandosi riciclare ver +riciclano riciclare ver +riciclare riciclare ver +riciclarla riciclare ver +riciclarle riciclare ver +riciclarli riciclare ver +riciclarlo riciclare ver +riciclarne riciclare ver +riciclarono riciclare ver +riciclarsi riciclare ver +riciclata riciclare ver +riciclate riciclare ver +riciclati riciclare ver +riciclato riciclare ver +riciclava riciclare ver +riciclavano riciclare ver +ricicleranno riciclare ver +riciclerà riciclare ver +ricicli riciclare ver +riciclo riciclare ver +riciclò riciclare ver +ricino ricino nom +ricinoleico ricinoleico adj +ricinto ricingere ver +rickettsia rickettsia nom +rickettsie rickettsia nom +riclassificato riclassificare ver +ricognitore ricognitore nom +ricognitori ricognitore nom +ricognizione ricognizione nom +ricognizioni ricognizione nom +ricollega ricollegare ver +ricollegabili ricollegabile adj +ricollegando ricollegare ver +ricollegandoci ricollegare ver +ricollegandola ricollegare ver +ricollegandolo ricollegare ver +ricollegandomi ricollegare ver +ricollegandosi ricollegare ver +ricollegandovi ricollegare ver +ricollegano ricollegare ver +ricollegarci ricollegare ver +ricollegare ricollegare ver +ricollegarla ricollegare ver +ricollegarle ricollegare ver +ricollegarlo ricollegare ver +ricollegarmi ricollegare ver +ricollegarono ricollegare ver +ricollegarsi ricollegare ver +ricollegasse ricollegare ver +ricollegassero ricollegare ver +ricollegata ricollegare ver +ricollegate ricollegare ver +ricollegati ricollegare ver +ricollegato ricollegare ver +ricollegava ricollegare ver +ricollegavano ricollegare ver +ricollegavo ricollegare ver +ricollegherebbe ricollegare ver +ricollegherà ricollegare ver +ricolleghi ricollegare ver +ricolleghiamo ricollegare ver +ricolleghino ricollegare ver +ricollego ricollegare ver +ricollegò ricollegare ver +ricolloca ricollocare ver +ricollocando ricollocare ver +ricollocandola ricollocare ver +ricollocandole ricollocare ver +ricollocandolo ricollocare ver +ricollocandosi ricollocare ver +ricollocano ricollocare ver +ricollocare ricollocare ver +ricollocarla ricollocare ver +ricollocarle ricollocare ver +ricollocarli ricollocare ver +ricollocarlo ricollocare ver +ricollocarono ricollocare ver +ricollocarsi ricollocare ver +ricollocata ricollocare ver +ricollocate ricollocare ver +ricollocati ricollocare ver +ricollocato ricollocare ver +ricollocavano ricollocare ver +ricollocazione ricollocazione nom +ricollocherebbe ricollocare ver +ricollocherà ricollocare ver +ricollochi ricollocare ver +ricolloco ricollocare ver +ricollocò ricollocare ver +ricolma ricolmo adj +ricolmar ricolmare ver +ricolmare ricolmare ver +ricolmata ricolmare ver +ricolmati ricolmare ver +ricolmato ricolmare ver +ricolme ricolmo adj +ricolmi ricolmo adj +ricolmo ricolmo adj +ricolmò ricolmare ver +ricolora ricolorare ver +ricolorandola ricolorare ver +ricoloranti ricolorare ver +ricolorare ricolorare ver +ricolorata ricolorare ver +ricolorate ricolorare ver +ricolorati ricolorare ver +ricolorato ricolorare ver +ricolse ricogliere ver +ricolta ricogliere ver +ricolte ricogliere ver +ricolti ricogliere ver +ricominceranno ricominciare ver +ricomincerebbe ricominciare ver +ricomincerei ricominciare ver +ricomincerà ricominciare ver +ricomincerò ricominciare ver +ricominci ricominciare ver +ricomincia ricominciare ver +ricominciami ricominciare ver +ricominciamo ricominciare ver +ricominciando ricominciare ver +ricominciano ricominciare ver +ricominciar ricominciare ver +ricominciare ricominciare ver +ricominciarla ricominciare ver +ricominciarlo ricominciare ver +ricominciarono ricominciare ver +ricominciasse ricominciare ver +ricominciassero ricominciare ver +ricominciata ricominciare ver +ricominciate ricominciare ver +ricominciati ricominciare ver +ricominciato ricominciare ver +ricominciava ricominciare ver +ricominciavano ricominciare ver +ricomincino ricominciare ver +ricomincio ricominciare ver +ricominciò ricominciare ver +ricompaia ricomparire ver +ricompaiano ricomparire ver +ricompaio ricomparire ver +ricompaiono ricomparire ver +ricompare ricomparire ver +ricomparendo ricomparire ver +ricompariranno ricomparire ver +ricomparire ricomparire ver +ricomparirebbe ricomparire ver +ricomparirvi ricomparire ver +ricomparirà ricomparire ver +ricomparisse ricomparire ver +ricompariva ricomparire ver +ricomparivano ricomparire ver +ricomparsa ricomparsa nom +ricomparse ricomparire ver +ricomparsi ricomparire ver +ricomparso ricomparire ver +ricomparve ricomparire ver +ricompensa ricompensa nom +ricompensando ricompensare ver +ricompensandoli ricompensare ver +ricompensandolo ricompensare ver +ricompensano ricompensare ver +ricompensare ricompensare ver +ricompensarla ricompensare ver +ricompensarli ricompensare ver +ricompensarlo ricompensare ver +ricompensarne ricompensare ver +ricompensarono ricompensare ver +ricompensata ricompensare ver +ricompensate ricompensare ver +ricompensati ricompensare ver +ricompensato ricompensare ver +ricompensava ricompensare ver +ricompensavano ricompensare ver +ricompense ricompensa nom +ricompenseranno ricompensare ver +ricompenserà ricompensare ver +ricompenserò ricompensare ver +ricompensi ricompensare ver +ricompenso ricompensare ver +ricompensò ricompensare ver +ricompera ricomperare ver +ricomperare ricomperare ver +ricomperata ricomperare ver +ricompone ricomporre ver +ricomponendo ricomporre ver +ricomponendole ricomporre ver +ricomponendolo ricomporre ver +ricomponendosi ricomporre ver +ricomponesse ricomporre ver +ricomponeva ricomporre ver +ricomponevano ricomporre ver +ricomponga ricomporre ver +ricompongano ricomporre ver +ricompongono ricomporre ver +ricomponiamo ricomporre ver +ricomponiamoci ricomporre ver +ricomporla ricomporre ver +ricomporle ricomporre ver +ricomporli ricomporre ver +ricomporlo ricomporre ver +ricomporne ricomporre ver +ricomporranno ricomporre ver +ricomporre ricomporre ver +ricomporrà ricomporre ver +ricomporsi ricomporre ver +ricompose ricomporre ver +ricomposero ricomporre ver +ricomposizione ricomposizione nom +ricomposizioni ricomposizione nom +ricomposta ricomporre ver +ricomposte ricomporre ver +ricomposti ricomporre ver +ricomposto ricomporre ver +ricompra ricomprare ver +ricomprando ricomprare ver +ricomprandosi ricomprare ver +ricomprano ricomprare ver +ricomprare ricomprare ver +ricomprarla ricomprare ver +ricomprarle ricomprare ver +ricomprarli ricomprare ver +ricomprarlo ricomprare ver +ricomprarono ricomprare ver +ricomprarsela ricomprare ver +ricomprarsi ricomprare ver +ricomprata ricomprare ver +ricomprate ricomprare ver +ricomprati ricomprare ver +ricomprato ricomprare ver +ricomprendere ricomprendere ver +ricompresa ricomprendere ver +ricompresi ricomprendere ver +ricomprò ricomprare ver +riconcentra riconcentrare ver +riconcentrano riconcentrare ver +riconcentrato riconcentrare ver +riconcili riconciliare ver +riconcilia riconciliare ver +riconciliando riconciliare ver +riconciliandola riconciliare ver +riconciliandolo riconciliare ver +riconciliandosi riconciliare ver +riconciliano riconciliare ver +riconciliante riconciliare ver +riconciliarci riconciliare ver +riconciliare riconciliare ver +riconciliarla riconciliare ver +riconciliarle riconciliare ver +riconciliarli riconciliare ver +riconciliarlo riconciliare ver +riconciliarmi riconciliare ver +riconciliarono riconciliare ver +riconciliarsi riconciliare ver +riconciliasse riconciliare ver +riconciliassero riconciliare ver +riconciliata riconciliare ver +riconciliate riconciliare ver +riconciliati riconciliare ver +riconciliato riconciliare ver +riconciliatore riconciliatore adj +riconciliatori riconciliatore adj +riconciliatrice riconciliatore adj +riconciliava riconciliare ver +riconciliavano riconciliare ver +riconciliazione riconciliazione nom +riconciliazioni riconciliazione nom +riconcilieranno riconciliare ver +riconcilierà riconciliare ver +riconcilino riconciliare ver +riconcilio riconciliare ver +riconciliò riconciliare ver +ricondotta ricondurre ver +ricondotte ricondurre ver +ricondotti ricondurre ver +ricondotto ricondurre ver +riconduca ricondurre ver +riconducano ricondurre ver +riconduce ricondurre ver +riconducendo ricondurre ver +riconducendoci ricondurre ver +riconducendola ricondurre ver +riconducendole ricondurre ver +riconducendoli ricondurre ver +riconducendolo ricondurre ver +riconducendone ricondurre ver +riconducendosi ricondurre ver +riconducenti ricondurre ver +riconducesse ricondurre ver +riconducessero ricondurre ver +riconduceva ricondurre ver +riconducevano ricondurre ver +riconduci ricondurre ver +riconduciamo ricondurre ver +riconducibile riconducibile adj +riconducibili riconducibile adj +riconducile ricondurre ver +riconducili ricondurre ver +riconduco ricondurre ver +riconducono ricondurre ver +ricondurci ricondurre ver +ricondurgli ricondurre ver +ricondurla ricondurre ver +ricondurle ricondurre ver +ricondurli ricondurre ver +ricondurlo ricondurre ver +ricondurmi ricondurre ver +ricondurre ricondurre ver +ricondurrebbe ricondurre ver +ricondurrebbero ricondurre ver +ricondurrei ricondurre ver +ricondurrà ricondurre ver +ricondursi ricondurre ver +ricondusse ricondurre ver +ricondussero ricondurre ver +riconferma riconferma nom +riconfermando riconfermare ver +riconfermandole riconfermare ver +riconfermandolo riconfermare ver +riconfermandosi riconfermare ver +riconfermano riconfermare ver +riconfermante riconfermare ver +riconfermare riconfermare ver +riconfermargli riconfermare ver +riconfermarla riconfermare ver +riconfermarle riconfermare ver +riconfermarlo riconfermare ver +riconfermarono riconfermare ver +riconfermarsi riconfermare ver +riconfermarti riconfermare ver +riconfermasse riconfermare ver +riconfermata riconfermare ver +riconfermate riconfermare ver +riconfermati riconfermare ver +riconfermato riconfermare ver +riconfermava riconfermare ver +riconfermavano riconfermare ver +riconferme riconferma nom +riconfermerei riconfermare ver +riconfermerà riconfermare ver +riconfermerò riconfermare ver +riconfermi riconfermare ver +riconfermo riconfermare ver +riconfermò riconfermare ver +riconfigurazione riconfigurazione nom +riconforta riconfortare ver +riconfortano riconfortare ver +ricongiunga ricongiungere ver +ricongiungano ricongiungere ver +ricongiunge ricongiungere ver +ricongiungendo ricongiungere ver +ricongiungendosi ricongiungere ver +ricongiungeranno ricongiungere ver +ricongiungere ricongiungere ver +ricongiungerebbe ricongiungere ver +ricongiungerla ricongiungere ver +ricongiungerli ricongiungere ver +ricongiungerlo ricongiungere ver +ricongiungersi ricongiungere ver +ricongiungerà ricongiungere ver +ricongiungesse ricongiungere ver +ricongiungessero ricongiungere ver +ricongiungeva ricongiungere ver +ricongiungevano ricongiungere ver +ricongiungimenti ricongiungimento nom +ricongiungimento ricongiungimento nom +ricongiungono ricongiungere ver +ricongiunse ricongiungere ver +ricongiunsero ricongiungere ver +ricongiunta ricongiungere ver +ricongiunte ricongiungere ver +ricongiunti ricongiungere ver +ricongiunto ricongiungere ver +ricongiunzione ricongiunzione nom +ricongiunzioni ricongiunzione nom +riconnessa riconnettere ver +riconnesse riconnettere ver +riconnessi riconnettere ver +riconnesso riconnettere ver +riconnetta riconnettere ver +riconnette riconnettere ver +riconnettendo riconnettere ver +riconnettendola riconnettere ver +riconnettendomi riconnettere ver +riconnettendosi riconnettere ver +riconnettere riconnettere ver +riconnetterlo riconnettere ver +riconnettermi riconnettere ver +riconnettersi riconnettere ver +riconnetterà riconnettere ver +riconnettesse riconnettere ver +riconnetti riconnettere ver +riconnetto riconnettere ver +riconnettono riconnettere ver +riconobbe riconoscere ver +riconobbero riconoscere ver +riconobbi riconoscere ver +riconosca riconoscere ver +riconoscano riconoscere ver +riconosce riconoscere ver +riconoscendo riconoscere ver +riconoscendogli riconoscere ver +riconoscendola riconoscere ver +riconoscendole riconoscere ver +riconoscendoli riconoscere ver +riconoscendolo riconoscere ver +riconoscendomi riconoscere ver +riconoscendone riconoscere ver +riconoscendosi riconoscere ver +riconoscendovi riconoscere ver +riconoscente riconoscente adj +riconoscenti riconoscente adj +riconoscenza riconoscenza nom +riconoscenze riconoscenza nom +riconoscer riconoscere ver +riconoscerai riconoscere ver +riconosceranno riconoscere ver +riconoscerci riconoscere ver +riconoscere riconoscere ver +riconoscerebbe riconoscere ver +riconoscerebbero riconoscere ver +riconoscerei riconoscere ver +riconosceremmo riconoscere ver +riconosceremo riconoscere ver +riconoscereste riconoscere ver +riconoscerete riconoscere ver +riconoscergli riconoscere ver +riconoscerglielo riconoscere ver +riconoscerla riconoscere ver +riconoscerle riconoscere ver +riconoscerli riconoscere ver +riconoscerlo riconoscere ver +riconoscermi riconoscere ver +riconoscerne riconoscere ver +riconoscersi riconoscere ver +riconoscerti riconoscere ver +riconoscervi riconoscere ver +riconoscerà riconoscere ver +riconoscerò riconoscere ver +riconoscesse riconoscere ver +riconoscessero riconoscere ver +riconoscessi riconoscere ver +riconoscete riconoscere ver +riconoscetelo riconoscere ver +riconosceva riconoscere ver +riconoscevano riconoscere ver +riconoscevo riconoscere ver +riconosci riconoscere ver +riconosciamo riconoscere ver +riconosciamolo riconoscere ver +riconosciate riconoscere ver +riconoscibile riconoscibile adj +riconoscibili riconoscibile adj +riconoscibilità riconoscibilità nom +riconoscile riconoscere ver +riconoscili riconoscere ver +riconoscilo riconoscere ver +riconoscimenti riconoscimento nom +riconoscimento riconoscimento nom +riconosciti riconoscere ver +riconoscitivi riconoscitivo adj +riconoscitivo riconoscitivo adj +riconosciuta riconoscere ver +riconosciute riconoscere ver +riconosciuti riconoscere ver +riconosciuto riconoscere ver +riconosco riconoscere ver +riconoscono riconoscere ver +riconquista riconquista nom +riconquistando riconquistare ver +riconquistandola riconquistare ver +riconquistandolo riconquistare ver +riconquistandone riconquistare ver +riconquistandosi riconquistare ver +riconquistano riconquistare ver +riconquistare riconquistare ver +riconquistarla riconquistare ver +riconquistarle riconquistare ver +riconquistarli riconquistare ver +riconquistarlo riconquistare ver +riconquistarne riconquistare ver +riconquistarono riconquistare ver +riconquistarsi riconquistare ver +riconquistasse riconquistare ver +riconquistassero riconquistare ver +riconquistata riconquistare ver +riconquistate riconquistare ver +riconquistati riconquistare ver +riconquistato riconquistare ver +riconquistava riconquistare ver +riconquistavano riconquistare ver +riconquiste riconquista nom +riconquisteranno riconquistare ver +riconquisteremo riconquistare ver +riconquisterà riconquistare ver +riconquisti riconquistare ver +riconquisto riconquistare ver +riconquistò riconquistare ver +riconsacra riconsacrare ver +riconsacrando riconsacrare ver +riconsacrare riconsacrare ver +riconsacrata riconsacrare ver +riconsacrate riconsacrare ver +riconsacrati riconsacrare ver +riconsacrato riconsacrare ver +riconsacrò riconsacrare ver +riconsegna riconsegna nom +riconsegnai riconsegnare ver +riconsegnando riconsegnare ver +riconsegnandogli riconsegnare ver +riconsegnandola riconsegnare ver +riconsegnandoli riconsegnare ver +riconsegnandolo riconsegnare ver +riconsegnandosi riconsegnare ver +riconsegnano riconsegnare ver +riconsegnare riconsegnare ver +riconsegnargli riconsegnare ver +riconsegnargliele riconsegnare ver +riconsegnarglielo riconsegnare ver +riconsegnarla riconsegnare ver +riconsegnarle riconsegnare ver +riconsegnarli riconsegnare ver +riconsegnarlo riconsegnare ver +riconsegnarono riconsegnare ver +riconsegnarsi riconsegnare ver +riconsegnata riconsegnare ver +riconsegnate riconsegnare ver +riconsegnati riconsegnare ver +riconsegnato riconsegnare ver +riconsegnava riconsegnare ver +riconsegnavano riconsegnare ver +riconsegne riconsegna nom +riconsegneranno riconsegnare ver +riconsegnerà riconsegnare ver +riconsegno riconsegnare ver +riconsegnò riconsegnare ver +riconsidera riconsiderare ver +riconsiderando riconsiderare ver +riconsiderano riconsiderare ver +riconsiderare riconsiderare ver +riconsiderarla riconsiderare ver +riconsiderarlo riconsiderare ver +riconsiderarne riconsiderare ver +riconsiderarono riconsiderare ver +riconsiderasse riconsiderare ver +riconsiderata riconsiderare ver +riconsiderate riconsiderare ver +riconsiderati riconsiderare ver +riconsiderato riconsiderare ver +riconsideravano riconsiderare ver +riconsidererei riconsiderare ver +riconsidererà riconsiderare ver +riconsidererò riconsiderare ver +riconsideri riconsiderare ver +riconsideriamo riconsiderare ver +riconsideriate riconsiderare ver +riconsidero riconsiderare ver +riconsiderò riconsiderare ver +riconsocere riconsocere ver +riconvenire riconvenire ver +riconversione riconversione nom +riconversioni riconversione nom +riconverta riconvertire ver +riconverte riconvertire ver +riconvertendo riconvertire ver +riconvertendola riconvertire ver +riconvertendolo riconvertire ver +riconvertendosi riconvertire ver +riconvertire riconvertire ver +riconvertirla riconvertire ver +riconvertirli riconvertire ver +riconvertirlo riconvertire ver +riconvertirono riconvertire ver +riconvertirsi riconvertire ver +riconvertissero riconvertire ver +riconvertita riconvertire ver +riconvertite riconvertire ver +riconvertiti riconvertire ver +riconvertito riconvertire ver +riconvertono riconvertire ver +riconvertì riconvertire ver +riconvoca riconvocare ver +riconvocare riconvocare ver +riconvocarsi riconvocare ver +riconvocata riconvocare ver +riconvocate riconvocare ver +riconvocato riconvocare ver +riconvocazione riconvocazione nom +riconvocò riconvocare ver +ricoperta ricoprire ver +ricoperte ricoprire ver +ricoperti ricoprire ver +ricoperto ricoprire ver +ricopertura ricopertura nom +ricoperture ricopertura nom +ricopi ricopiare ver +ricopia ricopiare ver +ricopiando ricopiare ver +ricopiandolo ricopiare ver +ricopiandone ricopiare ver +ricopiandosi ricopiare ver +ricopiano ricopiare ver +ricopiare ricopiare ver +ricopiarla ricopiare ver +ricopiarle ricopiare ver +ricopiarli ricopiare ver +ricopiarlo ricopiare ver +ricopiarsi ricopiare ver +ricopiata ricopiare ver +ricopiate ricopiare ver +ricopiati ricopiare ver +ricopiato ricopiare ver +ricopiatura ricopiatura nom +ricopiava ricopiare ver +ricopierò ricopiare ver +ricopio ricopiare ver +ricopiò ricopiare ver +ricopra ricoprire ver +ricoprano ricoprire ver +ricopre ricoprire ver +ricoprendo ricoprire ver +ricoprendogli ricoprire ver +ricoprendola ricoprire ver +ricoprendole ricoprire ver +ricoprendoli ricoprire ver +ricoprendolo ricoprire ver +ricoprendone ricoprire ver +ricoprendosi ricoprire ver +ricoprendovi ricoprire ver +ricoprente ricoprire ver +ricoprenti ricoprire ver +ricopri ricoprire ver +ricopribili ricopribile adj +ricopriranno ricoprire ver +ricoprire ricoprire ver +ricoprirebbe ricoprire ver +ricoprirla ricoprire ver +ricoprirle ricoprire ver +ricoprirli ricoprire ver +ricoprirlo ricoprire ver +ricoprirne ricoprire ver +ricoprirono ricoprire ver +ricoprirsi ricoprire ver +ricoprirvi ricoprire ver +ricoprirà ricoprire ver +ricoprirò ricoprire ver +ricoprisse ricoprire ver +ricoprissero ricoprire ver +ricoprite ricoprire ver +ricopriva ricoprire ver +ricoprivano ricoprire ver +ricopro ricoprire ver +ricoprono ricoprire ver +ricoprì ricoprire ver +ricorda ricordare ver +ricordagli ricordare ver +ricordai ricordare ver +ricordala ricordare ver +ricordali ricordare ver +ricordalo ricordare ver +ricordamelo ricordare ver +ricordami ricordare ver +ricordammo ricordare ver +ricordando ricordare ver +ricordandoci ricordare ver +ricordandogli ricordare ver +ricordandola ricordare ver +ricordandole ricordare ver +ricordandoli ricordare ver +ricordandolo ricordare ver +ricordandomi ricordare ver +ricordandone ricordare ver +ricordandosene ricordare ver +ricordandosi ricordare ver +ricordandoti ricordare ver +ricordandovi ricordare ver +ricordano ricordare ver +ricordante ricordare ver +ricordanti ricordare ver +ricordanza ricordanza nom +ricordanze ricordanza nom +ricordar ricordare ver +ricordarcelo ricordare ver +ricordarcene ricordare ver +ricordarci ricordare ver +ricordare ricordare ver +ricordargli ricordare ver +ricordarglielo ricordare ver +ricordarla ricordare ver +ricordarle ricordare ver +ricordarli ricordare ver +ricordarlo ricordare ver +ricordarmela ricordare ver +ricordarmele ricordare ver +ricordarmeli ricordare ver +ricordarmelo ricordare ver +ricordarmene ricordare ver +ricordarmi ricordare ver +ricordarne ricordare ver +ricordarono ricordare ver +ricordarsela ricordare ver +ricordarsele ricordare ver +ricordarseli ricordare ver +ricordarselo ricordare ver +ricordarsene ricordare ver +ricordarsi ricordare ver +ricordartela ricordare ver +ricordartelo ricordare ver +ricordartene ricordare ver +ricordarti ricordare ver +ricordarvelo ricordare ver +ricordarvi ricordare ver +ricordasele ricordare ver +ricordasi ricordare ver +ricordasse ricordare ver +ricordassero ricordare ver +ricordassi ricordare ver +ricordassimo ricordare ver +ricordata ricordare ver +ricordate ricordare ver +ricordateci ricordare ver +ricordatelo ricordare ver +ricordatemelo ricordare ver +ricordatemi ricordare ver +ricordatene ricordare ver +ricordatevelo ricordare ver +ricordatevi ricordare ver +ricordati ricordare ver +ricordato ricordare ver +ricordava ricordare ver +ricordavano ricordare ver +ricordavi ricordare ver +ricordavo ricordare ver +ricorderai ricordare ver +ricorderanno ricordare ver +ricorderebbe ricordare ver +ricorderebbero ricordare ver +ricorderei ricordare ver +ricorderemo ricordare ver +ricordereste ricordare ver +ricorderete ricordare ver +ricorderà ricordare ver +ricorderò ricordare ver +ricordi ricordo nom +ricordiamo ricordare ver +ricordiamocelo ricordare ver +ricordiamocene ricordare ver +ricordiamoci ricordare ver +ricordiamole ricordare ver +ricordiamolo ricordare ver +ricordiate ricordare ver +ricordini ricordino nom +ricordino ricordare ver +ricordo ricordo nom +ricordò ricordare ver +ricorra ricorrere ver +ricorrano ricorrere ver +ricorre ricorrere ver +ricorregge ricorreggere ver +ricorreggere ricorreggere ver +ricorreggerli ricorreggere ver +ricorreggo ricorreggere ver +ricorrendo ricorrere ver +ricorrendone ricorrere ver +ricorrente ricorrente adj +ricorrenti ricorrere ver +ricorrenza ricorrenza nom +ricorrenze ricorrenza nom +ricorreranno ricorrere ver +ricorrere ricorrere ver +ricorrerebbe ricorrere ver +ricorrerebbero ricorrere ver +ricorrerei ricorrere ver +ricorreremo ricorrere ver +ricorrerne ricorrere ver +ricorrersi ricorrere ver +ricorrervi ricorrere ver +ricorrerà ricorrere ver +ricorrerò ricorrere ver +ricorresse ricorrere ver +ricorressero ricorreggere ver +ricorrete ricorrere ver +ricorretta ricorreggere ver +ricorrette ricorreggere ver +ricorretti ricorreggere ver +ricorretto ricorreggere ver +ricorreva ricorrere ver +ricorrevano ricorrere ver +ricorri ricorrere ver +ricorriamo ricorrere ver +ricorro ricorrere ver +ricorrono ricorrere ver +ricorsa ricorrere ver +ricorse ricorso adj +ricorsero ricorrere ver +ricorsi ricorso nom +ricorso ricorso nom +ricostituendo ricostituire ver +ricostituendosi ricostituire ver +ricostituente ricostituente adj +ricostituenti ricostituente adj +ricostituiranno ricostituire ver +ricostituire ricostituire ver +ricostituirla ricostituire ver +ricostituirlo ricostituire ver +ricostituirne ricostituire ver +ricostituirono ricostituire ver +ricostituirsi ricostituire ver +ricostituirà ricostituire ver +ricostituisce ricostituire ver +ricostituiscono ricostituire ver +ricostituisse ricostituire ver +ricostituissero ricostituire ver +ricostituita ricostituire ver +ricostituite ricostituire ver +ricostituitesi ricostituire ver +ricostituiti ricostituire ver +ricostituito ricostituire ver +ricostituiva ricostituire ver +ricostituzione ricostituzione nom +ricostituzioni ricostituzione nom +ricostituì ricostituire ver +ricostruendo ricostruire ver +ricostruendola ricostruire ver +ricostruendole ricostruire ver +ricostruendolo ricostruire ver +ricostruendone ricostruire ver +ricostruendosi ricostruire ver +ricostruendovi ricostruire ver +ricostruiamo ricostruire ver +ricostruiranno ricostruire ver +ricostruire ricostruire ver +ricostruirebbe ricostruire ver +ricostruiremo ricostruire ver +ricostruirgli ricostruire ver +ricostruirla ricostruire ver +ricostruirle ricostruire ver +ricostruirli ricostruire ver +ricostruirlo ricostruire ver +ricostruirne ricostruire ver +ricostruirono ricostruire ver +ricostruirsi ricostruire ver +ricostruirti ricostruire ver +ricostruirvi ricostruire ver +ricostruirà ricostruire ver +ricostruirò ricostruire ver +ricostruisca ricostruire ver +ricostruiscano ricostruire ver +ricostruisce ricostruire ver +ricostruisci ricostruire ver +ricostruisco ricostruire ver +ricostruiscono ricostruire ver +ricostruisse ricostruire ver +ricostruissero ricostruire ver +ricostruita ricostruire ver +ricostruite ricostruire ver +ricostruiti ricostruire ver +ricostruito ricostruire ver +ricostruiva ricostruire ver +ricostruivano ricostruire ver +ricostruttore ricostruttore nom +ricostruttori ricostruttore nom +ricostruttrice ricostruttore adj +ricostruzione ricostruzione nom +ricostruzioni ricostruzione nom +ricostruì ricostruire ver +ricotta ricotta nom +ricotte ricotta nom +ricotti ricuocere ver +ricotto ricuocere ver +ricottura ricottura nom +ricovera ricoverare ver +ricoverando ricoverare ver +ricoverandole ricoverare ver +ricoverandolo ricoverare ver +ricoverandosi ricoverare ver +ricoverano ricoverare ver +ricoverare ricoverare ver +ricoverarla ricoverare ver +ricoverarli ricoverare ver +ricoverarlo ricoverare ver +ricoverarono ricoverare ver +ricoverarsi ricoverare ver +ricoverarvi ricoverare ver +ricoverasse ricoverare ver +ricoverata ricoverare ver +ricoverate ricoverare ver +ricoverati ricoverare ver +ricoverato ricoverare ver +ricoverava ricoverare ver +ricoveravano ricoverare ver +ricovererà ricoverare ver +ricoveri ricovero nom +ricoverino ricoverare ver +ricovero ricovero nom +ricoverò ricoverare ver +ricrea ricreare ver +ricreala ricreare ver +ricreando ricreare ver +ricreandola ricreare ver +ricreandolo ricreare ver +ricreandomi ricreare ver +ricreandone ricreare ver +ricreandosi ricreare ver +ricreano ricreare ver +ricreanti ricreare ver +ricreare ricreare ver +ricrearla ricreare ver +ricrearle ricreare ver +ricrearli ricreare ver +ricrearlo ricreare ver +ricrearne ricreare ver +ricrearono ricreare ver +ricrearsi ricreare ver +ricrearti ricreare ver +ricreasse ricreare ver +ricreassero ricreare ver +ricreassi ricreare ver +ricreata ricreare ver +ricreate ricreare ver +ricreati ricreare ver +ricreativa ricreativo adj +ricreative ricreativo adj +ricreativi ricreativo adj +ricreativo ricreativo adj +ricreato ricreare ver +ricreatori ricreatorio adj +ricreatorio ricreatorio adj +ricreava ricreare ver +ricreavano ricreare ver +ricreazione ricreazione nom +ricreazioni ricreazione nom +ricrebbe ricrescere ver +ricrebbero ricrescere ver +ricreda ricredere ver +ricrede ricredere ver +ricredendo ricredere ver +ricredendosi ricredere ver +ricrederai ricredere ver +ricrederanno ricredere ver +ricrederci ricredere ver +ricredere ricredere ver +ricredermi ricredere ver +ricredersi ricredere ver +ricrederà ricredere ver +ricrederò ricredere ver +ricredetevi ricredere ver +ricredette ricredere ver +ricredettero ricredere ver +ricredo ricredere ver +ricredono ricredere ver +ricreduta ricredere ver +ricreduto ricredere ver +ricreeranno ricreare ver +ricreerei ricreare ver +ricreeremo ricreare ver +ricreerà ricreare ver +ricreerò ricreare ver +ricrei ricreare ver +ricreiamo ricreare ver +ricreino ricreare ver +ricreo ricreare ver +ricresca ricrescere ver +ricrescano ricrescere ver +ricresce ricrescere ver +ricrescendo ricrescere ver +ricresceranno ricrescere ver +ricrescere ricrescere ver +ricrescergli ricrescere ver +ricrescerà ricrescere ver +ricresceva ricrescere ver +ricrescevano ricrescere ver +ricrescita ricrescita nom +ricresciuta ricrescere ver +ricresciute ricrescere ver +ricresciuti ricrescere ver +ricresciuto ricrescere ver +ricrescono ricrescere ver +ricreò ricreare ver +rictus rictus nom +ricuce ricucire ver +ricucendo ricucire ver +ricuci ricucire ver +ricuciono ricucire ver +ricucire ricucire ver +ricucirgli ricucire ver +ricucirono ricucire ver +ricucirsi ricucire ver +ricucita ricucire ver +ricucite ricucire ver +ricuciti ricucire ver +ricucito ricucire ver +ricucitura ricucitura nom +ricuciture ricucitura nom +ricucì ricucire ver +ricuocendo ricuocere ver +ricupera ricuperare ver +ricuperabile ricuperabile adj +ricuperabili ricuperabile adj +ricuperabilità ricuperabilità nom +ricuperando ricuperare ver +ricuperano ricuperare ver +ricuperanti ricuperare ver +ricuperare ricuperare ver +ricuperarla ricuperare ver +ricuperarlo ricuperare ver +ricuperata ricuperare ver +ricuperate ricuperare ver +ricuperati ricuperare ver +ricuperato ricuperare ver +ricuperatori ricuperatore nom +ricuperi ricupero nom +ricupero ricupero nom +ricuperò ricuperare ver +ricurva ricurvo adj +ricurve ricurvo adj +ricurvi ricurvo adj +ricurvo ricurvo adj +ricusa ricusare ver +ricusabile ricusabile adj +ricusando ricusare ver +ricusano ricusare ver +ricusanti ricusare ver +ricusare ricusare ver +ricusarla ricusare ver +ricusarlo ricusare ver +ricusarono ricusare ver +ricusarsi ricusare ver +ricusata ricusare ver +ricusate ricusare ver +ricusati ricusare ver +ricusato ricusare ver +ricusava ricusare ver +ricusavano ricusare ver +ricusazione ricusazione nom +ricusazioni ricusazione nom +ricusi ricusare ver +ricuso ricusare ver +ricusò ricusare ver +rida ridere ver +ridacchi ridacchiare ver +ridacchia ridacchiare ver +ridacchiando ridacchiare ver +ridacchiano ridacchiare ver +ridacchiante ridacchiare ver +ridacchiare ridacchiare ver +ridacchiato ridacchiare ver +ridacchiò ridacchiare ver +ridagli ridare ver +ridai ridare ver +ridalle ridare ver +ridammelo ridare ver +ridammi ridare ver +ridanciana ridanciano adj +ridanciani ridanciano adj +ridanciano ridanciano adj +ridando ridare ver +ridandogli ridare ver +ridandole ridare ver +ridanno ridare ver +ridano ridere ver +ridar ridare ver +ridarai ridare ver +ridaranno ridare ver +ridarci ridare ver +ridare ridare ver +ridarebbe ridare ver +ridarella ridarella nom +ridaremo ridare ver +ridargli ridare ver +ridargliela ridare ver +ridarglieli ridare ver +ridarglielo ridare ver +ridarla ridare ver +ridarle ridare ver +ridarlo ridare ver +ridarsi ridare ver +ridarti ridare ver +ridarvi ridare ver +ridarà ridare ver +ridata ridare ver +ridate ridare ver +ridateci ridare ver +ridatemi ridare ver +ridati ridare ver +ridato ridare ver +ridava ridare ver +ridda ridda nom +ridde ridda nom +ride ridere ver +ridefinire ridefinire ver +ridefinite ridefinire ver +ridefiniti ridefinire ver +ridefinito ridefinire ver +ridefinizione ridefinizione nom +ridemmo ridare|ridere ver +ridendo ridere ver +ridendoci ridere ver +ridendosene ridere ver +ridente ridere ver +ridenti ridere ver +rider ridere ver +rideranno ridere ver +riderci ridere ver +ridere ridere ver +riderebbe ridere ver +riderebbero ridere ver +riderei ridere ver +rideremo ridere ver +riderete ridere ver +ridergli ridere ver +riderne ridere ver +ridersi ridere ver +riderà ridere ver +riderò ridere ver +ridesse ridare|ridere ver +ridessero ridare|ridere ver +ridesta ridestare ver +ridestando ridestare ver +ridestandosi ridestare ver +ridestano ridestare ver +ridestar ridestare ver +ridestare ridestare ver +ridestarlo ridestare ver +ridestarono ridestare ver +ridestarsi ridestare ver +ridestata ridestare ver +ridestate ridestare ver +ridestati ridestare ver +ridestato ridestare ver +rideste ridare|ridere ver +ridesti ridestare ver +ridestinazione ridestinazione nom +ridesto ridestare ver +ridestò ridestare ver +ridete ridere ver +ridetta ridire ver +ridette ridire ver +ridettero ridare ver +ridetti ridire ver +ridetto ridire ver +rideva ridere ver +ridevamo ridere ver +ridevano ridere ver +ridevi ridere ver +ridevo ridere ver +ridi ridere ver +ridia ridare ver +ridiamo ridare|ridere ver +ridiamoci ridare|ridere ver +ridice ridire ver +ridico ridire ver +ridicola ridicolo adj +ridicolaggine ridicolaggine nom +ridicolaggini ridicolaggine nom +ridicole ridicolo adj +ridicoli ridicolo adj +ridicolizza ridicolizzare ver +ridicolizzando ridicolizzare ver +ridicolizzandola ridicolizzare ver +ridicolizzandoli ridicolizzare ver +ridicolizzandolo ridicolizzare ver +ridicolizzandosi ridicolizzare ver +ridicolizzano ridicolizzare ver +ridicolizzante ridicolizzare ver +ridicolizzanti ridicolizzare ver +ridicolizzare ridicolizzare ver +ridicolizzarla ridicolizzare ver +ridicolizzarlo ridicolizzare ver +ridicolizzarmi ridicolizzare ver +ridicolizzarne ridicolizzare ver +ridicolizzarti ridicolizzare ver +ridicolizzata ridicolizzare ver +ridicolizzate ridicolizzare ver +ridicolizzati ridicolizzare ver +ridicolizzato ridicolizzare ver +ridicolizzava ridicolizzare ver +ridicolizzavano ridicolizzare ver +ridicolizzi ridicolizzare ver +ridicolizzò ridicolizzare ver +ridicolo ridicolo adj +ridicono ridire ver +ridiffusione ridiffusione nom +ridillo ridire ver +ridimensiona ridimensionare ver +ridimensionamenti ridimensionamento nom +ridimensionamento ridimensionamento nom +ridimensionando ridimensionare ver +ridimensionandola ridimensionare ver +ridimensionandoli ridimensionare ver +ridimensionandolo ridimensionare ver +ridimensionandone ridimensionare ver +ridimensionandosi ridimensionare ver +ridimensionano ridimensionare ver +ridimensionante ridimensionare ver +ridimensionarci ridimensionare ver +ridimensionare ridimensionare ver +ridimensionarla ridimensionare ver +ridimensionarle ridimensionare ver +ridimensionarli ridimensionare ver +ridimensionarlo ridimensionare ver +ridimensionarmi ridimensionare ver +ridimensionarne ridimensionare ver +ridimensionarono ridimensionare ver +ridimensionarsi ridimensionare ver +ridimensionata ridimensionare ver +ridimensionate ridimensionare ver +ridimensionati ridimensionare ver +ridimensionato ridimensionare ver +ridimensionava ridimensionare ver +ridimensionavano ridimensionare ver +ridimensionerebbe ridimensionare ver +ridimensionerebbero ridimensionare ver +ridimensionerei ridimensionare ver +ridimensionerà ridimensionare ver +ridimensiono ridimensionare ver +ridimensionò ridimensionare ver +ridimmi ridire ver +ridipinge ridipingere ver +ridipingendo ridipingere ver +ridipingendoli ridipingere ver +ridipingendolo ridipingere ver +ridipingere ridipingere ver +ridipingerla ridipingere ver +ridipingerlo ridipingere ver +ridipinse ridipingere ver +ridipinsero ridipingere ver +ridipinta ridipingere ver +ridipinte ridipingere ver +ridipinti ridipingere ver +ridipinto ridipingere ver +ridir ridire ver +ridire ridire ver +ridirlo ridire ver +ridiscenda ridiscendere ver +ridiscende ridiscendere ver +ridiscendendo ridiscendere ver +ridiscendere ridiscendere ver +ridiscenderne ridiscendere ver +ridiscendeva ridiscendere ver +ridiscendevano ridiscendere ver +ridiscendono ridiscendere ver +ridiscesa ridiscendere ver +ridiscese ridiscendere ver +ridiscesero ridiscendere ver +ridiscesi ridiscendere ver +ridisceso ridiscendere ver +ridiscusse ridiscutere ver +ridisegna ridisegnare ver +ridisegnando ridisegnare ver +ridisegnandola ridisegnare ver +ridisegnandole ridisegnare ver +ridisegnandolo ridisegnare ver +ridisegnandone ridisegnare ver +ridisegnano ridisegnare ver +ridisegnare ridisegnare ver +ridisegnarla ridisegnare ver +ridisegnarle ridisegnare ver +ridisegnarli ridisegnare ver +ridisegnarlo ridisegnare ver +ridisegnarne ridisegnare ver +ridisegnarono ridisegnare ver +ridisegnasse ridisegnare ver +ridisegnata ridisegnare ver +ridisegnate ridisegnare ver +ridisegnati ridisegnare ver +ridisegnato ridisegnare ver +ridisegnava ridisegnare ver +ridisegnavano ridisegnare ver +ridisegneranno ridisegnare ver +ridisegnerà ridisegnare ver +ridisegni ridisegnare ver +ridisegno ridisegnare ver +ridisegnò ridisegnare ver +ridisponendo ridisporre ver +ridisponendosi ridisporre ver +ridispongono ridisporre ver +ridisporre ridisporre ver +ridispose ridisporre ver +ridisposti ridisporre ver +ridisposto ridisporre ver +ridistribuendo ridistribuire ver +ridistribuendola ridistribuire ver +ridistribuendole ridistribuire ver +ridistribuendoli ridistribuire ver +ridistribuire ridistribuire ver +ridistribuirla ridistribuire ver +ridistribuirle ridistribuire ver +ridistribuirli ridistribuire ver +ridistribuirlo ridistribuire ver +ridistribuirne ridistribuire ver +ridistribuirono ridistribuire ver +ridistribuirsele ridistribuire ver +ridistribuirsi ridistribuire ver +ridistribuisce ridistribuire ver +ridistribuiscono ridistribuire ver +ridistribuita ridistribuire ver +ridistribuite ridistribuire ver +ridistribuiti ridistribuire ver +ridistribuito ridistribuire ver +ridistribuiva ridistribuire ver +ridistribuivano ridistribuire ver +ridistributivo ridistributivo adj +ridistribuzione ridistribuzione nom +ridistribuzioni ridistribuzione nom +ridistribuì ridistribuire ver +ridite ridire ver +ridiventa ridiventare ver +ridiventando ridiventare ver +ridiventandone ridiventare ver +ridiventano ridiventare ver +ridiventare ridiventare ver +ridiventarono ridiventare ver +ridiventasse ridiventare ver +ridiventata ridiventare ver +ridiventati ridiventare ver +ridiventato ridiventare ver +ridiventava ridiventare ver +ridiventerà ridiventare ver +ridiventerò ridiventare ver +ridiventi ridiventare ver +ridiventò ridiventare ver +rido ridare|ridere ver +ridomanda ridomandare ver +ridomandato ridomandare ver +ridomando ridomandare ver +ridona ridonare ver +ridonando ridonare ver +ridonandogli ridonare ver +ridonandole ridonare ver +ridonano ridonare ver +ridonare ridonare ver +ridonargli ridonare ver +ridonarono ridonare ver +ridonata ridonare ver +ridonato ridonare ver +ridonava ridonare ver +ridonda ridondare ver +ridondando ridondare ver +ridondano ridondare ver +ridondante ridondante adj +ridondanti ridondante adj +ridondanza ridondanza nom +ridondanze ridondanza nom +ridondare ridondare ver +ridondata ridondare ver +ridondati ridondare ver +ridondato ridondare ver +ridonderà ridondare ver +ridonerà ridonare ver +ridoni ridonare ver +ridono ridere|ridonare ver +ridonò ridonare ver +ridossi ridosso nom +ridosso ridosso nom +ridotta ridurre ver +ridotte ridurre ver +ridotti ridurre ver +ridottissima ridottissimo adj +ridottissime ridottissimo adj +ridotto ridotto adj +riduca ridurre ver +riducano ridurre ver +riduce ridurre ver +riducendo ridurre ver +riducendola ridurre ver +riducendole ridurre ver +riducendoli ridurre ver +riducendolo ridurre ver +riducendone ridurre ver +riducendosi ridurre ver +riducente riducente adj +riducenti riducente adj +riducesse ridurre ver +riducessero ridurre ver +riducete ridurre ver +riducetela ridurre ver +riduceva ridurre ver +riducevano ridurre ver +riduci ridurre ver +riduciamo ridurre ver +riduciamoci ridurre ver +riducibile riducibile adj +riducibili riducibile adj +riduciti ridurre ver +riduco ridurre ver +riducono ridurre ver +ridurci ridurre ver +ridurgli ridurre ver +ridurla ridurre ver +ridurle ridurre ver +ridurli ridurre ver +ridurlo ridurre ver +ridurmi ridurre ver +ridurne ridurre ver +ridurranno ridurre ver +ridurre ridurre ver +ridurrebbe ridurre ver +ridurrebbero ridurre ver +ridurrei ridurre ver +ridurremmo ridurre ver +ridurremo ridurre ver +ridurrà ridurre ver +ridurrò ridurre ver +ridursi ridurre ver +ridusse ridurre ver +ridussero ridurre ver +ridussi ridurre ver +riduttiva riduttivo adj +riduttive riduttivo adj +riduttivi riduttivo adj +riduttivo riduttivo adj +riduttore riduttore adj +riduttori riduttore adj +riduttrice riduttore adj +riduttrici riduttore adj +riduzione riduzione nom +riduzioni riduzione nom +ridà ridare ver +rie rio adj +riecco riecco adv +riecheggerebbe riecheggiare ver +riecheggerebbero riecheggiare ver +riecheggi riecheggiare ver +riecheggia riecheggiare ver +riecheggiamenti riecheggiamento nom +riecheggiamento riecheggiamento nom +riecheggiando riecheggiare ver +riecheggiandone riecheggiare ver +riecheggiano riecheggiare ver +riecheggiante riecheggiare ver +riecheggianti riecheggiare ver +riecheggiare riecheggiare ver +riecheggiarono riecheggiare ver +riecheggiasse riecheggiare ver +riecheggiata riecheggiare ver +riecheggiate riecheggiare ver +riecheggiati riecheggiare ver +riecheggiato riecheggiare ver +riecheggiava riecheggiare ver +riecheggiavano riecheggiare ver +riecheggio riecheggiare ver +riecheggiò riecheggiare ver +riede riedere ver +rieder riedere ver +riedi riedere ver +riedifica riedificare ver +riedificando riedificare ver +riedificano riedificare ver +riedificare riedificare ver +riedificarla riedificare ver +riedificarlo riedificare ver +riedificarono riedificare ver +riedificata riedificare ver +riedificate riedificare ver +riedificati riedificare ver +riedificato riedificare ver +riedificava riedificare ver +riedificazione riedificazione nom +riedificazioni riedificazione nom +riedificherà riedificare ver +riedificò riedificare ver +riediti riedere ver +riedizione riedizione nom +riedizioni riedizione nom +riedo riedere ver +rieduca rieducare ver +rieducano rieducare ver +rieducare rieducare ver +rieducarli rieducare ver +rieducarlo rieducare ver +rieducarsi rieducare ver +rieducata rieducare ver +rieducati rieducare ver +rieducato rieducare ver +rieducazione rieducazione nom +rielabora rielaborare ver +rielaboralo rielaborare ver +rielaborando rielaborare ver +rielaborandola rielaborare ver +rielaborandole rielaborare ver +rielaborandoli rielaborare ver +rielaborandolo rielaborare ver +rielaborandone rielaborare ver +rielaborano rielaborare ver +rielaborante rielaborare ver +rielaborare rielaborare ver +rielaborarla rielaborare ver +rielaborarle rielaborare ver +rielaborarli rielaborare ver +rielaborarlo rielaborare ver +rielaborarne rielaborare ver +rielaborarono rielaborare ver +rielaborassero rielaborare ver +rielaborata rielaborare ver +rielaborate rielaborare ver +rielaborati rielaborare ver +rielaborato rielaborare ver +rielaborava rielaborare ver +rielaboravano rielaborare ver +rielaborazione rielaborazione nom +rielaborazioni rielaborazione nom +rielaborerà rielaborare ver +rielabori rielaborare ver +rielaboro rielaborare ver +rielaborò rielaborare ver +rielegge rieleggere ver +rieleggendo rieleggere ver +rieleggendolo rieleggere ver +rieleggere rieleggere ver +rieleggerlo rieleggere ver +rieleggibile rieleggibile adj +rieleggibili rieleggibile adj +rieleggono rieleggere ver +rielesse rieleggere ver +rielessero rieleggere ver +rieletta rieleggere ver +rieletti rieleggere ver +rieletto rieleggere ver +rielezione rielezione nom +rielezioni rielezione nom +riemerga riemergere ver +riemergano riemergere ver +riemerge riemergere ver +riemergendo riemergere ver +riemergenti riemergere ver +riemergeranno riemergere ver +riemergere riemergere ver +riemergerebbe riemergere ver +riemergerne riemergere ver +riemergerà riemergere ver +riemergeva riemergere ver +riemergevano riemergere ver +riemergi riemergere ver +riemergono riemergere ver +riemersa riemergere ver +riemerse riemergere ver +riemersero riemergere ver +riemersi riemergere ver +riemersione riemersione nom +riemerso riemergere ver +riempendo riempire ver +riempendola riempire ver +riempendoli riempire ver +riempendolo riempire ver +riempendosi riempire ver +riempi riempire ver +riempia riempire ver +riempiamo riempire ver +riempiano riempire ver +riempie riempire ver +riempii riempire ver +riempila riempire ver +riempimenti riempimento nom +riempimento riempimento nom +riempio riempire ver +riempiono riempire ver +riempir riempire ver +riempiranno riempire ver +riempirci riempire ver +riempire riempire ver +riempirebbe riempire ver +riempirebbero riempire ver +riempirei riempire ver +riempiremmo riempire ver +riempiremo riempire ver +riempirgli riempire ver +riempirla riempire ver +riempirle riempire ver +riempirli riempire ver +riempirlo riempire ver +riempirmi riempire ver +riempirne riempire ver +riempirono riempire ver +riempirsi riempire ver +riempirà riempire ver +riempirò riempire ver +riempisse riempire ver +riempissero riempire ver +riempissi riempire ver +riempita riempire ver +riempite riempire ver +riempitela riempire ver +riempiti riempire ver +riempitiva riempitivo adj +riempitive riempitivo adj +riempitivi riempitivo nom +riempitivo riempitivo nom +riempito riempire ver +riempitura riempitura nom +riempiva riempire ver +riempivano riempire ver +riempì riempire ver +rientra rientrare ver +rientrabile rientrabile adj +rientramenti rientramento nom +rientramento rientramento nom +rientrando rientrare ver +rientrandoci rientrare ver +rientrandovi rientrare ver +rientrano rientrare ver +rientrante rientrare ver +rientranti rientrante adj +rientranza rientranza nom +rientranze rientranza nom +rientrar rientrare ver +rientrarci rientrare ver +rientrare rientrare ver +rientrarne rientrare ver +rientrarono rientrare ver +rientrarvi rientrare ver +rientrasse rientrare ver +rientrassero rientrare ver +rientrata rientrare ver +rientrate rientrare ver +rientrati rientrare ver +rientrato rientrare ver +rientrava rientrare ver +rientravano rientrare ver +rientravo rientrare ver +rientreranno rientrare ver +rientrerebbe rientrare ver +rientrerebbero rientrare ver +rientrerà rientrare ver +rientrerò rientrare ver +rientri rientro nom +rientriamo rientrare ver +rientrino rientrare ver +rientro rientro nom +rientrò rientrare ver +riepiloga riepilogare ver +riepilogando riepilogare ver +riepilogano riepilogare ver +riepilogante riepilogare ver +riepilogare riepilogare ver +riepilogarli riepilogare ver +riepilogata riepilogare ver +riepilogate riepilogare ver +riepilogati riepilogare ver +riepilogativa riepilogativo adj +riepilogativo riepilogativo adj +riepilogava riepilogare ver +riepiloghi riepilogo nom +riepiloghiamo riepilogare ver +riepilogo riepilogo nom +riepilogò riepilogare ver +riequilibra riequilibrare ver +riequilibrando riequilibrare ver +riequilibrano riequilibrare ver +riequilibrare riequilibrare ver +riequilibrarla riequilibrare ver +riequilibrarne riequilibrare ver +riequilibrarono riequilibrare ver +riequilibrarsi riequilibrare ver +riequilibrata riequilibrare ver +riequilibrate riequilibrare ver +riequilibrati riequilibrare ver +riequilibrato riequilibrare ver +riequilibrava riequilibrare ver +riequilibrerà riequilibrare ver +riequilibri riequilibrio nom +riequilibriamo riequilibrare ver +riequilibrio riequilibrio nom +riequilibro riequilibrare ver +riequilibrò riequilibrare ver +riera riessere ver +riero riessere ver +riesame riesame nom +riesami riesame nom +riesamina riesaminare ver +riesaminando riesaminare ver +riesaminano riesaminare ver +riesaminare riesaminare ver +riesaminarli riesaminare ver +riesaminarlo riesaminare ver +riesaminarne riesaminare ver +riesaminarono riesaminare ver +riesaminasse riesaminare ver +riesaminata riesaminare ver +riesaminate riesaminare ver +riesaminati riesaminare ver +riesaminato riesaminare ver +riesaminava riesaminare ver +riesamineranno riesaminare ver +riesamini riesaminare ver +riesaminò riesaminare ver +riesca riuscire ver +riescano riuscire ver +riesce riuscire ver +riesci riuscire ver +riesco riuscire ver +riescono riuscire ver +riesplode riesplodere ver +riesportazione riesportazione nom +riessere riessere ver +riesuma riesumare ver +riesumando riesumare ver +riesumandone riesumare ver +riesumano riesumare ver +riesumare riesumare ver +riesumarla riesumare ver +riesumarle riesumare ver +riesumarlo riesumare ver +riesumarne riesumare ver +riesumarono riesumare ver +riesumata riesumare ver +riesumate riesumare ver +riesumati riesumare ver +riesumato riesumare ver +riesumava riesumare ver +riesumazione riesumazione nom +riesumazioni riesumazione nom +riesumerà riesumare ver +riesumiamo riesumare ver +riesumo riesumare ver +riesumò riesumare ver +rievoca rievocare ver +rievocando rievocare ver +rievocandone rievocare ver +rievocano rievocare ver +rievocante rievocare ver +rievocanti rievocare ver +rievocare rievocare ver +rievocarlo rievocare ver +rievocarono rievocare ver +rievocasse rievocare ver +rievocata rievocare ver +rievocate rievocare ver +rievocati rievocare ver +rievocato rievocare ver +rievocava rievocare ver +rievocavano rievocare ver +rievocazione rievocazione nom +rievocazioni rievocazione nom +rievocherebbe rievocare ver +rievocherà rievocare ver +rievochino rievocare ver +rievoco rievocare ver +rievocò rievocare ver +rifa rifare ver +rifacci rifare ver +rifaccia rifare ver +rifacciamo rifare ver +rifacciamoci rifare ver +rifacciamolo rifare ver +rifacciano rifare ver +rifaccio rifare ver +rifacendo rifare ver +rifacendoci rifare ver +rifacendola rifare ver +rifacendolo rifare ver +rifacendomi rifare ver +rifacendone rifare ver +rifacendosi rifare ver +rifacente rifare ver +rifacenti rifare ver +rifacesse rifare ver +rifacessero rifare ver +rifacessi rifare ver +rifacessimo rifare ver +rifaceva rifare ver +rifacevano rifare ver +rifacevo rifare ver +rifacimenti rifacimento nom +rifacimento rifacimento nom +rifai rifare ver +rifalla rifare ver +rifalle rifare ver +rifallo rifare ver +rifanno rifare ver +rifar rifare ver +rifaranno rifare ver +rifarci rifare ver +rifare rifare ver +rifarebbe rifare ver +rifarei rifare ver +rifaremmo rifare ver +rifaremo rifare ver +rifargli rifare ver +rifarla rifare ver +rifarle rifare ver +rifarli rifare ver +rifarlo rifare ver +rifarmi rifare ver +rifarne rifare ver +rifarsela rifare ver +rifarsi rifare ver +rifarti rifare ver +rifarà rifare ver +rifarò rifare ver +rifasciata rifasciare ver +rifasciate rifasciare ver +rifasciati rifasciare ver +rifascio rifasciare ver +rifasciò rifasciare ver +rifate rifare ver +rifatevi rifare ver +rifatta rifare ver +rifatte rifare ver +rifatti rifare ver +rifatto rifare ver +rifece rifare ver +rifecero rifare ver +rifeci rifare ver +riferendo riferire ver +riferendoci riferire ver +riferendogli riferire ver +riferendola riferire ver +riferendole riferire ver +riferendoli riferire ver +riferendolo riferire ver +riferendomi riferire ver +riferendone riferire ver +riferendosi riferire ver +riferendoti riferire ver +riferendovi riferire ver +riferente riferire ver +riferenti riferire ver +riferiamo riferire ver +riferiamoci riferire ver +riferibile riferibile adj +riferibili riferibile adj +riferii riferire ver +riferimenti riferimento nom +riferimento riferimento nom +riferiranno riferire ver +riferirci riferire ver +riferire riferire ver +riferirebbe riferire ver +riferirebbero riferire ver +riferirei riferire ver +riferiremo riferire ver +riferirgli riferire ver +riferirglielo riferire ver +riferirla riferire ver +riferirle riferire ver +riferirli riferire ver +riferirlo riferire ver +riferirmi riferire ver +riferirne riferire ver +riferirono riferire ver +riferirsi riferire ver +riferirti riferire ver +riferirvi riferire ver +riferirà riferire ver +riferirò riferire ver +riferisca riferire ver +riferiscano riferire ver +riferisce riferire ver +riferisci riferire ver +riferiscimi riferire ver +riferisciti riferire ver +riferisco riferire ver +riferiscono riferire ver +riferisse riferire ver +riferissero riferire ver +riferissi riferire ver +riferissimo riferire ver +riferiste riferire ver +riferisti riferire ver +riferita riferire ver +riferite riferire ver +riferiti riferire ver +riferito riferire ver +riferiva riferire ver +riferivamo riferire ver +riferivano riferire ver +riferivate riferire ver +riferivi riferire ver +riferivo riferire ver +riferì riferire ver +riffa riffa nom +riffe riffa nom +rifiatare rifiatare ver +rifila rifilare ver +rifilando rifilare ver +rifilandogli rifilare ver +rifilandole rifilare ver +rifilano rifilare ver +rifilare rifilare ver +rifilargli rifilare ver +rifilarlo rifilare ver +rifilarono rifilare ver +rifilata rifilare ver +rifilate rifilare ver +rifilati rifilare ver +rifilato rifilare ver +rifilatura rifilatura nom +rifilature rifilatura nom +rifilava rifilare ver +rifilerà rifilare ver +rifili rifilare ver +rifilo rifilare ver +rifilò rifilare ver +rifinanziamenti rifinanziamento nom +rifinanziamento rifinanziamento nom +rifinendo rifinire ver +rifinendole rifinire ver +rifinire rifinire ver +rifinirla rifinire ver +rifinirli rifinire ver +rifinirlo rifinire ver +rifinirono rifinire ver +rifinisce rifinire ver +rifinisco rifinire ver +rifiniscono rifinire ver +rifinita rifinire ver +rifinite rifinire ver +rifiniti rifinire ver +rifinito rifinire ver +rifinitore rifinitore nom +rifinitori rifinitore nom +rifinitura rifinitura nom +rifiniture rifinitura nom +rifiniva rifinire ver +rifinivano rifinire ver +rifinì rifinire ver +rifiorendo rifiorire ver +rifiorente rifiorire ver +rifiorenti rifiorire ver +rifiorimento rifiorimento nom +rifioriranno rifiorire ver +rifiorire rifiorire ver +rifiorirono rifiorire ver +rifiorirà rifiorire ver +rifiorisca rifiorire ver +rifiorisce rifiorire ver +rifioriscono rifiorire ver +rifiorita rifiorire ver +rifiorite rifiorire ver +rifioriti rifiorire ver +rifiorito rifiorire ver +rifioriva rifiorire ver +rifiorivano rifiorire ver +rifiorì rifiorire ver +rifiuta rifiutare ver +rifiutabile rifiutabile adj +rifiutai rifiutare ver +rifiutando rifiutare ver +rifiutandoci rifiutare ver +rifiutandogli rifiutare ver +rifiutandola rifiutare ver +rifiutandole rifiutare ver +rifiutandolo rifiutare ver +rifiutandomi rifiutare ver +rifiutandone rifiutare ver +rifiutandosi rifiutare ver +rifiutano rifiutare ver +rifiutante rifiutare ver +rifiutar rifiutare ver +rifiutarci rifiutare ver +rifiutare rifiutare ver +rifiutargli rifiutare ver +rifiutarla rifiutare ver +rifiutarle rifiutare ver +rifiutarli rifiutare ver +rifiutarlo rifiutare ver +rifiutarmi rifiutare ver +rifiutarne rifiutare ver +rifiutarono rifiutare ver +rifiutarsi rifiutare ver +rifiutarti rifiutare ver +rifiutarvi rifiutare ver +rifiutasse rifiutare ver +rifiutassero rifiutare ver +rifiutata rifiutare ver +rifiutate rifiutare ver +rifiutati rifiutare ver +rifiutato rifiutare ver +rifiutava rifiutare ver +rifiutavano rifiutare ver +rifiutavo rifiutare ver +rifiuteranno rifiutare ver +rifiuterebbe rifiutare ver +rifiuterebbero rifiutare ver +rifiuterei rifiutare ver +rifiuteremmo rifiutare ver +rifiuteremo rifiutare ver +rifiuterà rifiutare ver +rifiuterò rifiutare ver +rifiuti rifiuto nom +rifiutiamo rifiutare ver +rifiutiamoci rifiutare ver +rifiutino rifiutare ver +rifiuto rifiuto nom +rifiutò rifiutare ver +riflessa riflesso adj +riflesse riflesso adj +riflessi riflesso adj +riflessione riflessione nom +riflessioni riflessione nom +riflessiva riflessivo adj +riflessive riflessivo adj +riflessivi riflessivo adj +riflessività riflessività nom +riflessivo riflessivo adj +riflesso riflesso nom +rifletta riflettere ver +riflettano riflettere ver +riflette riflettere ver +riflettei riflettere ver +riflettendo riflettere ver +riflettendoci riflettere ver +riflettendola riflettere ver +riflettendole riflettere ver +riflettendolo riflettere ver +riflettendone riflettere ver +riflettendosi riflettere ver +riflettente riflettente adj +riflettenti riflettente adj +rifletter riflettere ver +rifletteranno riflettere ver +rifletterci riflettere ver +riflettere riflettere ver +rifletterebbe riflettere ver +rifletterebbero riflettere ver +rifletterei riflettere ver +riflettergli riflettere ver +rifletterla riflettere ver +rifletterli riflettere ver +rifletterlo riflettere ver +rifletterne riflettere ver +rifletterono riflettere ver +riflettersi riflettere ver +riflettervi riflettere ver +rifletterà riflettere ver +rifletterò riflettere ver +riflettesse riflettere ver +riflettessero riflettere ver +riflettessi riflettere ver +riflettessimo riflettere ver +rifletteste riflettere ver +riflettete riflettere ver +rifletteteci riflettere ver +rifletteva riflettere ver +riflettevano riflettere ver +riflettevo riflettere ver +rifletti riflettere ver +riflettiamo riflettere ver +riflettiamoci riflettere ver +riflettiate riflettere ver +riflettici riflettere ver +riflettivi riflettere ver +rifletto riflettere ver +riflettono riflettere ver +riflettore riflettore nom +riflettori riflettore nom +riflettuta riflettere ver +riflettute riflettere ver +riflettuti riflettere ver +riflettuto riflettere ver +rifluendo rifluire ver +rifluire rifluire ver +rifluirono rifluire ver +rifluisce rifluire ver +rifluiscono rifluire ver +rifluiti rifluire ver +rifluito rifluire ver +rifluiva rifluire ver +rifluivano rifluire ver +riflussi riflusso nom +riflusso riflusso nom +rifluì rifluire ver +rifocilla rifocillare ver +rifocillandosi rifocillare ver +rifocillano rifocillare ver +rifocillare rifocillare ver +rifocillarla rifocillare ver +rifocillarlo rifocillare ver +rifocillarsi rifocillare ver +rifocillata rifocillare ver +rifocillate rifocillare ver +rifocillati rifocillare ver +rifocillato rifocillare ver +rifocillavano rifocillare ver +rifocillò rifocillare ver +rifonda rifondere ver +rifondano rifondere ver +rifondazione rifondazione nom +rifondazioni rifondazione nom +rifonde rifondere ver +rifondendo rifondere ver +rifonderanno rifondere ver +rifondere rifondere ver +rifonderle rifondere ver +rifonderlo rifondere ver +rifondersi rifondere ver +rifonderà rifondere ver +rifonderò rifondere ver +rifondono rifondere ver +riforestazione riforestazione nom +riforma riforma nom +riformabile riformabile adj +riformabili riformabile adj +riformando riformare ver +riformandola riformare ver +riformandolo riformare ver +riformandone riformare ver +riformandosi riformare ver +riformano riformare ver +riformare riformare ver +riformarla riformare ver +riformarle riformare ver +riformarli riformare ver +riformarlo riformare ver +riformarne riformare ver +riformarono riformare ver +riformarsi riformare ver +riformasse riformare ver +riformassero riformare ver +riformata riformato adj +riformate riformato adj +riformatesi riformare ver +riformati riformato adj +riformato riformare ver +riformatore riformatore adj +riformatori riformatore|riformatorio adj +riformatorio riformatorio adj +riformatrice riformatore adj +riformatrici riformatore adj +riformava riformare ver +riformavano riformare ver +riforme riforma nom +riformeranno riformare ver +riformerei riformare ver +riformeremo riformare ver +riformerà riformare ver +riformi riformare ver +riformiamo riformare ver +riformino riformare ver +riformismi riformismo nom +riformismo riformismo nom +riformista riformista adj +riformiste riformista adj +riformisti riformista nom +riformistica riformistico adj +riformistiche riformistico adj +riformistici riformistico adj +riformistico riformistico adj +riformo riformare ver +riformula riformulare ver +riformulare riformulare ver +riformulata riformulare ver +riformulate riformulare ver +riformulazione riformulazione nom +riformò riformare ver +rifornendo rifornire ver +rifornendola rifornire ver +rifornendole rifornire ver +rifornendoli rifornire ver +rifornendolo rifornire ver +rifornendosi rifornire ver +rifornimenti rifornimento nom +rifornimento rifornimento nom +riforniranno rifornire ver +rifornire rifornire ver +rifornirla rifornire ver +rifornirle rifornire ver +rifornirli rifornire ver +rifornirlo rifornire ver +rifornirne rifornire ver +rifornirono rifornire ver +rifornirsene rifornire ver +rifornirsi rifornire ver +rifornirà rifornire ver +rifornisca rifornire ver +riforniscano rifornire ver +rifornisce rifornire ver +riforniscono rifornire ver +rifornisse rifornire ver +rifornissero rifornire ver +rifornita rifornire ver +rifornite rifornire ver +riforniti rifornire ver +rifornito rifornire ver +rifornitore rifornitore nom +rifornitori rifornitore nom +rifornitrice rifornitore adj +rifornitrici rifornitore adj +riforniva rifornire ver +rifornivano rifornire ver +rifornì rifornire ver +rifrange rifrangere ver +rifrangendo rifrangere ver +rifrangendosi rifrangere ver +rifrangente rifrangere ver +rifrangenti rifrangere ver +rifrangenza rifrangenza nom +rifrangere rifrangere ver +rifrangersi rifrangere ver +rifrangono rifrangere ver +rifranti rifrangere ver +rifrattometri rifrattometro nom +rifrattometro rifrattometro nom +rifrattore rifrattore adj +rifrattori rifrattore adj +rifrazione rifrazione nom +rifrazioni rifrazione nom +rifreddo rifreddo adj +rifritte rifriggere ver +rifu riessere ver +rifugeranno rifugiare|rifugiarsi ver +rifugerà rifugiare|rifugiarsi ver +rifugga rifuggire ver +rifuggano rifuggire ver +rifugge rifuggire ver +rifuggendo rifuggire ver +rifuggendone rifuggire ver +rifuggi rifuggire ver +rifuggire rifuggire ver +rifuggirono rifuggire ver +rifuggirà rifuggire ver +rifuggisse rifuggire ver +rifuggissero rifuggire ver +rifuggita rifuggire ver +rifuggiti rifuggire ver +rifuggito rifuggire ver +rifuggiva rifuggire ver +rifuggivano rifuggire ver +rifuggo rifuggire ver +rifuggono rifuggire ver +rifuggì rifuggire ver +rifugi rifugio nom +rifugia rifugiare|rifugiarsi ver +rifugiai rifugiare|rifugiarsi ver +rifugiamo rifugiare|rifugiarsi ver +rifugiando rifugiare|rifugiarsi ver +rifugiandosi rifugiare|rifugiarsi ver +rifugiano rifugiare|rifugiarsi ver +rifugiarci rifugiare|rifugiarsi ver +rifugiare rifugiare ver +rifugiarmi rifugiare|rifugiarsi ver +rifugiarono rifugiare|rifugiarsi ver +rifugiarsi rifugiare|rifugiarsi ver +rifugiarvi rifugiare|rifugiarsi ver +rifugiasse rifugiare|rifugiarsi ver +rifugiassero rifugiare|rifugiarsi ver +rifugiata rifugiare|rifugiarsi ver +rifugiate rifugiare|rifugiarsi ver +rifugiatesi rifugiare|rifugiarsi ver +rifugiati rifugiato nom +rifugiatisi rifugiare ver +rifugiato rifugiare|rifugiarsi ver +rifugiatosi rifugiare ver +rifugiava rifugiare|rifugiarsi ver +rifugiavano rifugiare|rifugiarsi ver +rifugiavo rifugiare|rifugiarsi ver +rifugino rifugiare|rifugiarsi ver +rifugio rifugio nom +rifugiò rifugiare|rifugiarsi ver +rifulge rifulgere ver +rifulgendo rifulgere ver +rifulgente rifulgere ver +rifulgenti rifulgere ver +rifulgere rifulgere ver +rifulgeva rifulgere ver +rifulgevano rifulgere ver +rifulgo rifulgere ver +rifulgono rifulgere ver +rifulse rifulgere ver +rifulsero rifulgere ver +rifulso rifulgere ver +rifusa rifondere ver +rifuse rifondere ver +rifusi rifondere ver +rifusione rifusione nom +rifusioni rifusione nom +rifuso rifondere ver +rifà rifare ver +riga riga nom +rigaglia rigaglia nom +rigaglie rigaglia nom +rigagnoli rigagnolo nom +rigagnolo rigagnolo nom +rigali rigare ver +rigando rigare ver +rigano rigare ver +rigante rigare ver +riganti rigare ver +rigare rigare ver +rigarsi rigare ver +rigassi rigare ver +rigata rigato adj +rigate rigato adj +rigati rigato adj +rigatino rigatino nom +rigato rigare ver +rigatoni rigatone nom +rigattiera rigattiere nom +rigattiere rigattiere nom +rigattieri rigattiere nom +rigatura rigatura nom +rigature rigatura nom +rigava rigare ver +rigavano rigare ver +rigelo rigelo nom +rigenera rigenerare ver +rigenerabile rigenerabile adj +rigenerabili rigenerabile adj +rigeneraci rigenerare ver +rigenerando rigenerare ver +rigenerandoli rigenerare ver +rigenerandolo rigenerare ver +rigenerandosi rigenerare ver +rigenerano rigenerare ver +rigenerante rigenerare ver +rigeneranti rigenerare ver +rigenerare rigenerare ver +rigenerarla rigenerare ver +rigenerarle rigenerare ver +rigenerarli rigenerare ver +rigenerarlo rigenerare ver +rigenerarne rigenerare ver +rigenerarono rigenerare ver +rigenerarsi rigenerare ver +rigenerasi rigenerare ver +rigenerasse rigenerare ver +rigenerata rigenerare ver +rigenerate rigenerare ver +rigenerati rigenerare ver +rigenerativa rigenerativo adj +rigenerative rigenerativo adj +rigenerativi rigenerativo adj +rigenerativo rigenerativo adj +rigenerato rigenerare ver +rigeneratore rigeneratore adj +rigeneratori rigeneratore adj +rigeneratrice rigeneratore adj +rigeneratrici rigeneratore adj +rigenerava rigenerare ver +rigenerazione rigenerazione nom +rigenerazioni rigenerazione nom +rigenereranno rigenerare ver +rigenererà rigenerare ver +rigeneri rigenerare ver +rigenero rigenerare ver +rigenerò rigenerare ver +rigetta rigettare ver +rigettando rigettare ver +rigettandoli rigettare ver +rigettandolo rigettare ver +rigettandone rigettare ver +rigettano rigettare ver +rigettare rigettare ver +rigettarla rigettare ver +rigettarle rigettare ver +rigettarli rigettare ver +rigettarlo rigettare ver +rigettarne rigettare ver +rigettarono rigettare ver +rigettarsi rigettare ver +rigettasse rigettare ver +rigettassero rigettare ver +rigettata rigettare ver +rigettate rigettare ver +rigettati rigettare ver +rigettato rigettare ver +rigettava rigettare ver +rigettavano rigettare ver +rigetterebbe rigettare ver +rigetterebbero rigettare ver +rigetterà rigettare ver +rigetti rigetto nom +rigettiamo rigettare ver +rigetto rigetto nom +rigettò rigettare ver +righe riga nom +righerà rigare ver +righi rigo nom +righini righino nom +righino righino nom +rigida rigido adj +rigidamente rigidamente adv +rigide rigido adj +rigidezza rigidezza nom +rigidezze rigidezza nom +rigidi rigido adj +rigidità rigidità nom +rigido rigido adj +rigioca rigiocare ver +rigiocando rigiocare ver +rigiocano rigiocare ver +rigiocarci rigiocare ver +rigiocare rigiocare ver +rigiocarla rigiocare ver +rigiocarlo rigiocare ver +rigiocarono rigiocare ver +rigiocarsi rigiocare ver +rigiocata rigiocare ver +rigiocate rigiocare ver +rigiocati rigiocare ver +rigiocato rigiocare ver +rigiocava rigiocare ver +rigiocherà rigiocare ver +rigiochiamo rigiocare ver +rigiocò rigiocare ver +rigira rigirare ver +rigiramelo rigirare ver +rigirando rigirare ver +rigirandola rigirare ver +rigirandosi rigirare ver +rigirano rigirare ver +rigirare rigirare ver +rigirarla rigirare ver +rigirarlo rigirare ver +rigirarsi rigirare ver +rigirata rigirare ver +rigirate rigirare ver +rigirati rigirare ver +rigirato rigirare ver +rigirava rigirare ver +rigiri rigiro nom +rigiro rigiro nom +rigirò rigirare ver +rigo rigo nom +rigogli rigoglio nom +rigoglio rigoglio nom +rigogliosa rigoglioso adj +rigogliose rigoglioso adj +rigogliosi rigoglioso adj +rigogliosità rigogliosità nom +rigoglioso rigoglioso adj +rigogoli rigogolo nom +rigogolo rigogolo nom +rigonfi rigonfio adj +rigonfia rigonfio adj +rigonfiamenti rigonfiamento nom +rigonfiamento rigonfiamento nom +rigonfiando rigonfiare ver +rigonfiandosi rigonfiare ver +rigonfiano rigonfiare ver +rigonfiare rigonfiare ver +rigonfiarsi rigonfiare ver +rigonfiata rigonfiare ver +rigonfiate rigonfiare ver +rigonfiati rigonfiare ver +rigonfiato rigonfiare ver +rigonfiavano rigonfiare ver +rigonfie rigonfio adj +rigonfierà rigonfiare ver +rigonfio rigonfio adj +rigor rigore nom +rigore rigore nom +rigori rigore nom +rigorismi rigorismo nom +rigorismo rigorismo nom +rigorista rigorista nom +rigoriste rigorista nom +rigoristi rigorista nom +rigorosa rigoroso adj +rigorosamente rigorosamente adv +rigorose rigoroso adj +rigorosi rigoroso adj +rigorosissime rigorosissimo adj +rigorosità rigorosità nom +rigoroso rigoroso adj +rigovernare rigovernare ver +rigovernavano rigovernare ver +riguadagna riguadagnare ver +riguadagnando riguadagnare ver +riguadagnano riguadagnare ver +riguadagnare riguadagnare ver +riguadagnarla riguadagnare ver +riguadagnarlo riguadagnare ver +riguadagnarne riguadagnare ver +riguadagnarono riguadagnare ver +riguadagnarsi riguadagnare ver +riguadagnasse riguadagnare ver +riguadagnata riguadagnare ver +riguadagnate riguadagnare ver +riguadagnati riguadagnare ver +riguadagnato riguadagnare ver +riguadagnava riguadagnare ver +riguadagneranno riguadagnare ver +riguadagnerà riguadagnare ver +riguadagno riguadagnare ver +riguadagnò riguadagnare ver +riguarda riguardare ver +riguardai riguardare ver +riguardala riguardare ver +riguardando riguardare ver +riguardandola riguardare ver +riguardandole riguardare ver +riguardandolo riguardare ver +riguardandomi riguardare ver +riguardano riguardare ver +riguardante riguardare ver +riguardanti riguardare ver +riguardar riguardare ver +riguardarci riguardare ver +riguardare riguardare ver +riguardarla riguardare ver +riguardarli riguardare ver +riguardarlo riguardare ver +riguardarmi riguardare ver +riguardarne riguardare ver +riguardarono riguardare ver +riguardarsi riguardare ver +riguardarti riguardare ver +riguardarvi riguardare ver +riguardasse riguardare ver +riguardassero riguardare ver +riguardata riguardare ver +riguardate riguardare ver +riguardatelo riguardare ver +riguardatevi riguardare ver +riguardati riguardare ver +riguardato riguardare ver +riguardava riguardare ver +riguardavano riguardare ver +riguardavo riguardare ver +riguarderanno riguardare ver +riguarderebbe riguardare ver +riguarderebbero riguardare ver +riguarderei riguardare ver +riguarderà riguardare ver +riguarderò riguardare ver +riguardi riguardo nom +riguardiamo riguardare ver +riguardino riguardare ver +riguardo riguardo nom_sup +riguardosi riguardoso adj +riguardoso riguardoso adj +riguardò riguardare ver +rigurgita rigurgitare ver +rigurgitando rigurgitare ver +rigurgitano rigurgitare ver +rigurgitante rigurgitare ver +rigurgitanti rigurgitare ver +rigurgitare rigurgitare ver +rigurgitarlo rigurgitare ver +rigurgitassero rigurgitare ver +rigurgitata rigurgitare ver +rigurgitate rigurgitare ver +rigurgitati rigurgitare ver +rigurgitato rigurgitare ver +rigurgiti rigurgito nom +rigurgito rigurgito nom +rigurgitò rigurgitare ver +rii rio adj +rilanceranno rilanciare ver +rilancerei rilanciare ver +rilanceremo rilanciare ver +rilancerà rilanciare ver +rilancerò rilanciare ver +rilanci rilancio nom +rilancia rilanciare ver +rilanciamo rilanciare ver +rilanciando rilanciare ver +rilanciandola rilanciare ver +rilanciandoli rilanciare ver +rilanciandolo rilanciare ver +rilanciandosi rilanciare ver +rilanciano rilanciare ver +rilanciarci rilanciare ver +rilanciare rilanciare ver +rilanciarla rilanciare ver +rilanciarle rilanciare ver +rilanciarli rilanciare ver +rilanciarlo rilanciare ver +rilanciarmi rilanciare ver +rilanciarne rilanciare ver +rilanciarono rilanciare ver +rilanciarsi rilanciare ver +rilanciasse rilanciare ver +rilanciata rilanciare ver +rilanciate rilanciare ver +rilanciati rilanciare ver +rilanciato rilanciare ver +rilanciava rilanciare ver +rilanciavano rilanciare ver +rilancino rilanciare ver +rilancio rilancio nom +rilanciò rilanciare ver +rilasceranno rilasciare ver +rilascerebbe rilasciare ver +rilascerebbero rilasciare ver +rilasceremo rilasciare ver +rilascerà rilasciare ver +rilasci rilascio nom +rilascia rilasciare ver +rilasciala rilasciare ver +rilasciamenti rilasciamento nom +rilasciamento rilasciamento nom +rilasciamo rilasciare ver +rilasciando rilasciare ver +rilasciandogli rilasciare ver +rilasciandola rilasciare ver +rilasciandole rilasciare ver +rilasciandoli rilasciare ver +rilasciandolo rilasciare ver +rilasciandone rilasciare ver +rilasciandosi rilasciare ver +rilasciano rilasciare ver +rilasciante rilasciare ver +rilascianti rilasciare ver +rilasciarci rilasciare ver +rilasciare rilasciare ver +rilasciargli rilasciare ver +rilasciarla rilasciare ver +rilasciarle rilasciare ver +rilasciarli rilasciare ver +rilasciarlo rilasciare ver +rilasciarne rilasciare ver +rilasciarono rilasciare ver +rilasciarsi rilasciare ver +rilasciarvi rilasciare ver +rilasciasse rilasciare ver +rilasciassero rilasciare ver +rilasciassi rilasciare ver +rilasciata rilasciare ver +rilasciate rilasciare ver +rilasciati rilasciare ver +rilasciato rilasciare ver +rilasciava rilasciare ver +rilasciavano rilasciare ver +rilascino rilasciare ver +rilascio rilascio nom +rilasciò rilasciare ver +rilassa rilassare ver +rilassamenti rilassamento nom +rilassamento rilassamento nom +rilassando rilassare ver +rilassandola rilassare ver +rilassandosi rilassare ver +rilassano rilassare ver +rilassante rilassare ver +rilassanti rilassare ver +rilassarci rilassare ver +rilassare rilassare ver +rilassarli rilassare ver +rilassarmi rilassare ver +rilassarono rilassare ver +rilassarsi rilassare ver +rilassarti rilassare ver +rilassassero rilassare ver +rilassata rilassare ver +rilassate rilassare ver +rilassatevi rilassare ver +rilassatezza rilassatezza nom +rilassatezze rilassatezza nom +rilassati rilassare ver +rilassato rilassare ver +rilassava rilassare ver +rilassavano rilassare ver +rilasserebbe rilassare ver +rilassi rilassare ver +rilassiamo rilassare ver +rilassiamoci rilassare ver +rilasso rilassare ver +rilassò rilassare ver +rilavante rilavare ver +rilavare rilavare ver +rilavato rilavare ver +rilega rilegare ver +rilegando rilegare ver +rilegandolo rilegare ver +rilegano rilegare ver +rilegare rilegare ver +rilegarono rilegare ver +rilegata rilegare ver +rilegate rilegare ver +rilegati rilegare ver +rilegato rilegare ver +rilegatore rilegatore nom +rilegatori rilegatore nom +rilegatrice rilegatore nom +rilegatura rilegatura nom +rilegature rilegatura nom +rilegava rilegare ver +rilegavano rilegare ver +rilegga rileggere ver +rileggano rileggere ver +rilegge rileggere ver +rileggendo rileggere ver +rileggendola rileggere ver +rileggendole rileggere ver +rileggendoli rileggere ver +rileggendolo rileggere ver +rileggendomi rileggere ver +rileggendone rileggere ver +rileggerai rileggere ver +rileggerci rileggere ver +rileggere rileggere ver +rileggerei rileggere ver +rileggerla rileggere ver +rileggerle rileggere ver +rileggerli rileggere ver +rileggerlo rileggere ver +rileggermela rileggere ver +rileggermi rileggere ver +rileggerne rileggere ver +rileggersela rileggere ver +rileggerselo rileggere ver +rileggersi rileggere ver +rileggerti rileggere ver +rileggervi rileggere ver +rileggerà rileggere ver +rileggerò rileggere ver +rileggesse rileggere ver +rileggessero rileggere ver +rileggessi rileggere ver +rileggete rileggere ver +rileggeteli rileggere ver +rileggetevi rileggere ver +rileggeva rileggere ver +rileggi rileggere ver +rileggiamo rileggere ver +rileggila rileggere ver +rileggilo rileggere ver +rileggimi rileggere ver +rileggitelo rileggere ver +rileggiti rileggere ver +rileggo rileggere ver +rileggono rileggere ver +rilegò rilegare ver +rilento rilento adv +rilesse rileggere ver +rilessero rileggere ver +rilessi rileggere ver +riletta rileggere ver +rilette rileggere ver +riletti rileggere ver +riletto rileggere ver +rilettura rilettura nom +riletture rilettura nom +rileva rilevare ver +rilevabili rilevabile adj +rilevai rilevare ver +rilevamenti rilevamento nom +rilevamento rilevamento nom +rilevando rilevare ver +rilevandola rilevare ver +rilevandolo rilevare ver +rilevandone rilevare ver +rilevandosi rilevare ver +rilevandovi rilevare ver +rilevano rilevare ver +rilevante rilevante adj +rilevanti rilevante adj +rilevanza rilevanza nom +rilevanze rilevanza nom +rilevare rilevare ver +rilevargli rilevare ver +rilevarla rilevare ver +rilevarle rilevare ver +rilevarli rilevare ver +rilevarlo rilevare ver +rilevarne rilevare ver +rilevarono rilevare ver +rilevarsi rilevare ver +rilevarvi rilevare ver +rilevasi rilevare ver +rilevasse rilevare ver +rilevata rilevare ver +rilevate rilevare ver +rilevati rilevare ver +rilevato rilevare ver +rilevatore rilevatore nom +rilevatori rilevatore nom +rilevava rilevare ver +rilevavano rilevare ver +rilevavo rilevare ver +rilevazione rilevazione nom +rilevazioni rilevazione nom +rileveranno rilevare ver +rileverebbe rilevare ver +rileverebbero rilevare ver +rileveremo rilevare ver +rileverà rilevare ver +rilevi rilevare ver +rileviamo rilevare ver +rilevino rilevare ver +rilevo rilevare ver +rilevò rilevare ver +rilievi rilievo nom +rilievo rilievo nom +rilievografia rilievografia nom +rilievografica rilievografico adj +riloga riloga nom +riluce rilucere ver +rilucendo rilucere ver +rilucente rilucente adj +rilucenti rilucente adj +rilucere rilucere ver +riluceva rilucere ver +rilucono rilucere ver +riluttante riluttante adj +riluttanti riluttante adj +riluttanza riluttanza nom +riluttanze riluttanza nom +riluttavano riluttare ver +rima rima nom +rimai rimare ver +rimale rimare ver +rimalmezzo rimalmezzo nom +rimanda rimandare ver +rimandai rimandare ver +rimandala rimandare ver +rimandando rimandare ver +rimandandola rimandare ver +rimandandole rimandare ver +rimandandoli rimandare ver +rimandandolo rimandare ver +rimandandomi rimandare ver +rimandandone rimandare ver +rimandandoti rimandare ver +rimandano rimandare ver +rimandante rimandare ver +rimandanti rimandare ver +rimandar rimandare ver +rimandare rimandare ver +rimandargli rimandare ver +rimandarla rimandare ver +rimandarle rimandare ver +rimandarli rimandare ver +rimandarlo rimandare ver +rimandarmi rimandare ver +rimandarne rimandare ver +rimandarono rimandare ver +rimandarsi rimandare ver +rimandarti rimandare ver +rimandasse rimandare ver +rimandassero rimandare ver +rimandassimo rimandare ver +rimandata rimandare ver +rimandate rimandare ver +rimandati rimandare ver +rimandato rimandare ver +rimandava rimandare ver +rimandavano rimandare ver +rimandavo rimandare ver +rimanderanno rimandare ver +rimanderebbe rimandare ver +rimanderebbero rimandare ver +rimanderei rimandare ver +rimanderà rimandare ver +rimanderò rimandare ver +rimandi rimando nom +rimandiamo rimandare ver +rimandino rimandare ver +rimando rimando nom +rimandò rimandare ver +rimane rimanere ver +rimaneggia rimaneggiare ver +rimaneggiamenti rimaneggiamento nom +rimaneggiamento rimaneggiamento nom +rimaneggiando rimaneggiare ver +rimaneggiare rimaneggiare ver +rimaneggiarla rimaneggiare ver +rimaneggiarle rimaneggiare ver +rimaneggiarli rimaneggiare ver +rimaneggiarlo rimaneggiare ver +rimaneggiarono rimaneggiare ver +rimaneggiata rimaneggiare ver +rimaneggiate rimaneggiare ver +rimaneggiati rimaneggiare ver +rimaneggiato rimaneggiare ver +rimaneggiavano rimaneggiare ver +rimaneggiò rimaneggiare ver +rimanemmo rimanere ver +rimanendo rimanere ver +rimanendoci rimanere ver +rimanendogli rimanere ver +rimanendole rimanere ver +rimanendolo rimanere ver +rimanendomi rimanere ver +rimanendone rimanere ver +rimanendosene rimanere ver +rimanendovi rimanere ver +rimanente rimanente adj +rimanenti rimanente adj +rimanenza rimanenza nom +rimanenze rimanenza nom +rimaner rimanere ver +rimanerci rimanere ver +rimanere rimanere ver +rimanergli rimanere ver +rimanerle rimanere ver +rimanerlo rimanere ver +rimanerne rimanere ver +rimanersene rimanere ver +rimanersi rimanere ver +rimanervi rimanere ver +rimanesse rimanere ver +rimanessero rimanere ver +rimanessi rimanere ver +rimanessimo rimanere ver +rimanete rimanere ver +rimaneva rimanere ver +rimanevamo rimanere ver +rimanevano rimanere ver +rimanevo rimanere ver +rimanga rimanere ver +rimangano rimanere ver +rimangerà rimangiare ver +rimangi rimangiare ver +rimangia rimangiare ver +rimangiandosi rimangiare ver +rimangiare rimangiare ver +rimangiarmi rimangiare ver +rimangiarselo rimangiare ver +rimangiarsi rimangiare ver +rimangiati rimangiare ver +rimangiato rimangiare ver +rimangio rimangiare ver +rimangiò rimangiare ver +rimango rimanere ver +rimangono rimanere ver +rimani rimanere ver +rimaniamo rimanere ver +rimaniate rimanere ver +rimano rimare ver +rimante rimare ver +rimanti rimare ver +rimar rimare ver +rimarca rimarcare ver +rimarcando rimarcare ver +rimarcandone rimarcare ver +rimarcano rimarcare ver +rimarcare rimarcare ver +rimarcarla rimarcare ver +rimarcarle rimarcare ver +rimarcarlo rimarcare ver +rimarcarne rimarcare ver +rimarcarono rimarcare ver +rimarcarsi rimarcare ver +rimarcata rimarcare ver +rimarcate rimarcare ver +rimarcati rimarcare ver +rimarcato rimarcare ver +rimarcava rimarcare ver +rimarcavano rimarcare ver +rimarcherei rimarcare ver +rimarcherà rimarcare ver +rimarchevole rimarchevole adj +rimarchevoli rimarchevole adj +rimarchi rimarcare ver +rimarchiamo rimarcare ver +rimarchiate rimarcare ver +rimarco rimarco nom +rimarcò rimarcare ver +rimare rimare ver +rimargina rimarginare ver +rimarginando rimarginare ver +rimarginano rimarginare ver +rimarginare rimarginare ver +rimarginarono rimarginare ver +rimarginarsi rimarginare ver +rimarginata rimarginare ver +rimarginate rimarginare ver +rimarginato rimarginare ver +rimargineranno rimarginare ver +rimarginerà rimarginare ver +rimarginino rimarginare ver +rimarginò rimarginare ver +rimari rimario nom +rimario rimario nom +rimaritarsi rimaritare ver +rimaritata rimaritare ver +rimaritò rimaritare ver +rimarrai rimanere ver +rimarranno rimanere ver +rimarrebbe rimanere ver +rimarrebbero rimanere ver +rimarrei rimanere ver +rimarremmo rimanere ver +rimarremo rimanere ver +rimarreste rimanere ver +rimarrete rimanere ver +rimarrà rimanere ver +rimarrò rimanere ver +rimase rimanere ver +rimasero rimanere ver +rimasi rimanere ver +rimasse rimare ver +rimassero rimare ver +rimasta rimanere ver +rimaste rimanere ver +rimasti rimanere ver +rimasticare rimasticare ver +rimasticarlo rimasticare ver +rimasticato rimasticare ver +rimasticatura rimasticatura nom +rimasto rimanere ver +rimasugli rimasuglio nom +rimasuglio rimasuglio nom +rimata rimare ver +rimate rimare ver +rimati rimare ver +rimato rimare ver +rimatore rimatore nom +rimatori rimatore nom +rimatrice rimatore nom +rimatrici rimatore nom +rimava rimare ver +rimbalza rimbalzare ver +rimbalzando rimbalzare ver +rimbalzano rimbalzare ver +rimbalzante rimbalzare ver +rimbalzanti rimbalzare ver +rimbalzarci rimbalzare ver +rimbalzare rimbalzare ver +rimbalzarono rimbalzare ver +rimbalzasse rimbalzare ver +rimbalzata rimbalzare ver +rimbalzate rimbalzare ver +rimbalzati rimbalzare ver +rimbalzato rimbalzare ver +rimbalzava rimbalzare ver +rimbalzavano rimbalzare ver +rimbalzello rimbalzello nom +rimbalzeranno rimbalzare ver +rimbalzerà rimbalzare ver +rimbalzi rimbalzo nom +rimbalzino rimbalzare ver +rimbalzo rimbalzo nom +rimbalzò rimbalzare ver +rimbambendo rimbambire ver +rimbambimento rimbambimento nom +rimbambire rimbambire ver +rimbambita rimbambire ver +rimbambiti rimbambito adj +rimbambito rimbambire ver +rimbecca rimbeccare ver +rimbeccare rimbeccare ver +rimbeccato rimbeccare ver +rimbecillisce rimbecillire ver +rimbecilliti rimbecillito adj +rimbecillito rimbecillito nom +rimbocca rimboccare ver +rimboccando rimboccare ver +rimboccandoci rimboccare ver +rimboccandomi rimboccare ver +rimboccandosi rimboccare ver +rimboccano rimboccare ver +rimboccarci rimboccare ver +rimboccare rimboccare ver +rimboccarmi rimboccare ver +rimboccarsele rimboccare ver +rimboccarsi rimboccare ver +rimboccarti rimboccare ver +rimboccata rimboccare ver +rimboccate rimboccare ver +rimboccati rimboccare ver +rimboccato rimboccare ver +rimboccava rimboccare ver +rimboccherei rimboccare ver +rimbocchi rimboccare ver +rimbocchiamoci rimboccare ver +rimbocco rimboccare ver +rimboccò rimboccare ver +rimbomba rimbombare ver +rimbombano rimbombare ver +rimbombante rimbombante adj +rimbombanti rimbombante adj +rimbombare rimbombare ver +rimbombasse rimbombare ver +rimbombava rimbombare ver +rimbombi rimbombo nom +rimbombo rimbombo nom +rimbombò rimbombare ver +rimborsa rimborsare ver +rimborsabile rimborsabile adj +rimborsabili rimborsabile adj +rimborsando rimborsare ver +rimborsano rimborsare ver +rimborsare rimborsare ver +rimborsargli rimborsare ver +rimborsarli rimborsare ver +rimborsarlo rimborsare ver +rimborsarmi rimborsare ver +rimborsarono rimborsare ver +rimborsata rimborsare ver +rimborsate rimborsare ver +rimborsati rimborsare ver +rimborsato rimborsare ver +rimborsavano rimborsare ver +rimborserà rimborsare ver +rimborsi rimborso nom +rimborso rimborso nom +rimborsò rimborsare ver +rimboscamento rimboscamento nom +rimboscata rimboscare ver +rimboschimenti rimboschimento nom +rimboschimento rimboschimento nom +rimboschire rimboschire ver +rimboschita rimboschire ver +rimboschite rimboschire ver +rimboschiti rimboschire ver +rimboschito rimboschire ver +rimbrotta rimbrottare ver +rimbrottandolo rimbrottare ver +rimbrottare rimbrottare ver +rimbrottati rimbrottare ver +rimbrottato rimbrottare ver +rimbrotti rimbrotto nom +rimbrotto rimbrotto nom +rime rima nom +rimedi rimedio nom +rimedia rimediare ver +rimediabile rimediabile adj +rimediabili rimediabile adj +rimediamo rimediare ver +rimediando rimediare ver +rimediandone rimediare ver +rimediano rimediare ver +rimediar rimediare ver +rimediare rimediare ver +rimediarle rimediare ver +rimediarne rimediare ver +rimediarono rimediare ver +rimediarsi rimediare ver +rimediarvi rimediare ver +rimediasse rimediare ver +rimediata rimediare ver +rimediate rimediare ver +rimediati rimediare ver +rimediato rimediare ver +rimediava rimediare ver +rimediavano rimediare ver +rimedieremo rimediare ver +rimedierà rimediare ver +rimedierò rimediare ver +rimedino rimediare ver +rimedio rimedio nom +rimediò rimediare ver +rimembra rimembrare ver +rimembrando rimembrare ver +rimembrano rimembrare ver +rimembrante rimembrare ver +rimembranza rimembranza nom +rimembranze rimembranza nom +rimembrar rimembrare ver +rimembrare rimembrare ver +rimembri rimembrare ver +rimembro rimembrare ver +rimena rimenare ver +rimenando rimenare ver +rimeritare rimeritare ver +rimeritati rimeritare ver +rimeritato rimeritare ver +rimescola rimescolare ver +rimescolando rimescolare ver +rimescolandole rimescolare ver +rimescolandosi rimescolare ver +rimescolano rimescolare ver +rimescolare rimescolare ver +rimescolarsi rimescolare ver +rimescolata rimescolare ver +rimescolate rimescolare ver +rimescolati rimescolare ver +rimescolato rimescolare ver +rimescolio rimescolio nom +rimescolo rimescolare ver +rimescolò rimescolare ver +rimessa rimettere ver +rimessaggi rimessaggio nom +rimessaggio rimessaggio nom +rimesse rimessa nom +rimessi rimettere ver +rimesso rimettere ver +rimesta rimestare ver +rimestando rimestare ver +rimestare rimestare ver +rimestava rimestare ver +rimestino rimestare ver +rimetta rimettere ver +rimettano rimettere ver +rimette rimettere ver +rimettendo rimettere ver +rimettendoci rimettere ver +rimettendogli rimettere ver +rimettendola rimettere ver +rimettendole rimettere ver +rimettendoli rimettere ver +rimettendolo rimettere ver +rimettendomi rimettere ver +rimettendone rimettere ver +rimettendosi rimettere ver +rimettente rimettere ver +rimetter rimettere ver +rimetterai rimettere ver +rimetteranno rimettere ver +rimettercela rimettere ver +rimetterceli rimettere ver +rimettercelo rimettere ver +rimetterci rimettere ver +rimettere rimettere ver +rimetterebbe rimettere ver +rimetterei rimettere ver +rimetteremo rimettere ver +rimetterete rimettere ver +rimettergli rimettere ver +rimetterla rimettere ver +rimetterle rimettere ver +rimetterli rimettere ver +rimetterlo rimettere ver +rimettermi rimettere ver +rimetterne rimettere ver +rimettersela rimettere ver +rimettersi rimettere ver +rimetterti rimettere ver +rimettervi rimettere ver +rimetterà rimettere ver +rimetterò rimettere ver +rimettesse rimettere ver +rimettessero rimettere ver +rimettessi rimettere ver +rimettete rimettere ver +rimettetela rimettere ver +rimettetelo rimettere ver +rimetteva rimettere ver +rimettevano rimettere ver +rimettevo rimettere ver +rimetti rimettere ver +rimettiamo rimettere ver +rimettiamoci rimettere ver +rimettiamola rimettere ver +rimettiamole rimettere ver +rimettilo rimettere ver +rimettiti rimettere ver +rimetto rimettere ver +rimettono rimettere ver +rimi rimare ver +rimino rimare ver +rimira rimirare ver +rimirando rimirare ver +rimirandolo rimirare ver +rimirandosi rimirare ver +rimirano rimirare ver +rimirante rimirare ver +rimiranti rimirare ver +rimirar rimirare ver +rimirare rimirare ver +rimirarla rimirare ver +rimirarsi rimirare ver +rimirarti rimirare ver +rimirasse rimirare ver +rimirato rimirare ver +rimirava rimirare ver +rimiro rimirare ver +rimise rimettere ver +rimisero rimettere ver +rimisi rimettere ver +rimisurare rimisurare ver +rimisurata rimisurare ver +rimisurato rimisurare ver +rimmel rimmel nom +rimo rimare ver +rimodellamento rimodellamento nom +rimodellato rimodellare ver +rimoderna rimodernare ver +rimodernamenti rimodernamento nom +rimodernamento rimodernamento nom +rimodernando rimodernare ver +rimodernare rimodernare ver +rimodernarlo rimodernare ver +rimodernarono rimodernare ver +rimodernasse rimodernare ver +rimodernata rimodernare ver +rimodernate rimodernare ver +rimodernati rimodernare ver +rimodernato rimodernare ver +rimodernava rimodernare ver +rimodernò rimodernare ver +rimonta rimonta nom +rimontati rimontar ver +rimonte rimonta nom +rimorchi rimorchio nom +rimorchia rimorchiare ver +rimorchiando rimorchiare ver +rimorchiandola rimorchiare ver +rimorchiandolo rimorchiare ver +rimorchiano rimorchiare ver +rimorchiare rimorchiare ver +rimorchiarla rimorchiare ver +rimorchiarle rimorchiare ver +rimorchiarli rimorchiare ver +rimorchiarlo rimorchiare ver +rimorchiarono rimorchiare ver +rimorchiata rimorchiare ver +rimorchiate rimorchiare ver +rimorchiati rimorchiare ver +rimorchiato rimorchiare ver +rimorchiatore rimorchiatore adj +rimorchiatori rimorchiatore adj +rimorchiava rimorchiare ver +rimorchiavano rimorchiare ver +rimorchio rimorchio nom +rimorchiò rimorchiare ver +rimorde rimordere ver +rimordere rimordere ver +rimorsi rimorso nom +rimorso rimorso nom +rimossa rimuovere ver +rimosse rimuovere ver +rimossero rimuovere ver +rimossi rimuovere ver +rimosso rimuovere ver +rimostra rimostrare ver +rimostrante rimostrare ver +rimostranti rimostrare ver +rimostranza rimostranza nom +rimostranze rimostranza nom +rimostrare rimostrare ver +rimovente rimuovere ver +rimovibile rimovibile adj +rimovibili rimovibile adj +rimozione rimozione nom +rimozioni rimozione nom +rimpalla rimpallare ver +rimpallandosi rimpallare ver +rimpallano rimpallare ver +rimpallata rimpallare ver +rimpallato rimpallare ver +rimpalli rimpallo nom +rimpallo rimpallo nom +rimpasta rimpastare ver +rimpastata rimpastare ver +rimpasti rimpasto nom +rimpasto rimpasto nom +rimpatri rimpatrio nom +rimpatria rimpatriare ver +rimpatriando rimpatriare ver +rimpatriano rimpatriare ver +rimpatriare rimpatriare ver +rimpatriarli rimpatriare ver +rimpatriarlo rimpatriare ver +rimpatriarono rimpatriare ver +rimpatriata rimpatriata nom +rimpatriate rimpatriare ver +rimpatriati rimpatriare ver +rimpatriato rimpatriare ver +rimpatriava rimpatriare ver +rimpatriavano rimpatriare ver +rimpatrierà rimpatriare ver +rimpatrio rimpatrio nom +rimpatriò rimpatriare ver +rimpetto rimpetto adv +rimpianga rimpiangere ver +rimpiangano rimpiangere ver +rimpiange rimpiangere ver +rimpiangendo rimpiangere ver +rimpiangerai rimpiangere ver +rimpiangeranno rimpiangere ver +rimpiangere rimpiangere ver +rimpiangerebbe rimpiangere ver +rimpiangeremo rimpiangere ver +rimpiangerla rimpiangere ver +rimpiangerlo rimpiangere ver +rimpiangerà rimpiangere ver +rimpiangerò rimpiangere ver +rimpiangeva rimpiangere ver +rimpiangevano rimpiangere ver +rimpiangi rimpiangere ver +rimpiangimi rimpiangere ver +rimpiango rimpiangere ver +rimpiangono rimpiangere ver +rimpianse rimpiangere ver +rimpiansero rimpiangere ver +rimpianta rimpiangere ver +rimpiante rimpiangere ver +rimpianti rimpianto nom +rimpianto rimpianto nom +rimpiattino rimpiattino nom +rimpiazza rimpiazzare ver +rimpiazzando rimpiazzare ver +rimpiazzandola rimpiazzare ver +rimpiazzandole rimpiazzare ver +rimpiazzandoli rimpiazzare ver +rimpiazzandolo rimpiazzare ver +rimpiazzano rimpiazzare ver +rimpiazzante rimpiazzare ver +rimpiazzare rimpiazzare ver +rimpiazzarla rimpiazzare ver +rimpiazzarle rimpiazzare ver +rimpiazzarli rimpiazzare ver +rimpiazzarlo rimpiazzare ver +rimpiazzarono rimpiazzare ver +rimpiazzasse rimpiazzare ver +rimpiazzassero rimpiazzare ver +rimpiazzata rimpiazzare ver +rimpiazzate rimpiazzare ver +rimpiazzati rimpiazzare ver +rimpiazzato rimpiazzare ver +rimpiazzava rimpiazzare ver +rimpiazzavano rimpiazzare ver +rimpiazzeranno rimpiazzare ver +rimpiazzerebbe rimpiazzare ver +rimpiazzerei rimpiazzare ver +rimpiazzerà rimpiazzare ver +rimpiazzi rimpiazzo nom +rimpiazziamo rimpiazzare ver +rimpiazzo rimpiazzo nom +rimpiazzò rimpiazzare ver +rimpiccolire rimpiccolire ver +rimpingua rimpinguare ver +rimpinguando rimpinguare ver +rimpinguare rimpinguare ver +rimpinguarlo rimpinguare ver +rimpinguata rimpinguare ver +rimpinguate rimpinguare ver +rimpinguati rimpinguare ver +rimpinguato rimpinguare ver +rimpinguava rimpinguare ver +rimpinguò rimpinguare ver +rimpinza rimpinzare ver +rimpinzandosi rimpinzare ver +rimpinzano rimpinzare ver +rimpinzare rimpinzare ver +rimpinzarsi rimpinzare ver +rimpinzata rimpinzare ver +rimpinzate rimpinzare ver +rimpinzati rimpinzare ver +rimpinzato rimpinzare ver +rimpolpa rimpolpare ver +rimpolpando rimpolpare ver +rimpolpano rimpolpare ver +rimpolpare rimpolpare ver +rimpolparla rimpolpare ver +rimpolparle rimpolpare ver +rimpolparlo rimpolpare ver +rimpolparono rimpolpare ver +rimpolpasse rimpolpare ver +rimpolpata rimpolpare ver +rimpolpate rimpolpare ver +rimpolpati rimpolpare ver +rimpolpato rimpolpare ver +rimpolperei rimpolpare ver +rimpolpi rimpolpare ver +rimpolpiamo rimpolpare ver +rimpolpo rimpolpare ver +rimpossessa rimpossessarsi ver +rimpossessarono rimpossessarsi ver +rimpossessarsene rimpossessarsi ver +rimpossessarsi rimpossessarsi ver +rimpossessò rimpossessarsi ver +rimprovera rimproverare ver +rimproveragli rimproverare ver +rimproverai rimproverare ver +rimproverami rimproverare ver +rimproverando rimproverare ver +rimproverandogli rimproverare ver +rimproverandola rimproverare ver +rimproverandole rimproverare ver +rimproverandoli rimproverare ver +rimproverandolo rimproverare ver +rimproverano rimproverare ver +rimproverante rimproverare ver +rimproverarci rimproverare ver +rimproverare rimproverare ver +rimproverargli rimproverare ver +rimproverarla rimproverare ver +rimproverarle rimproverare ver +rimproverarli rimproverare ver +rimproverarlo rimproverare ver +rimproverarmi rimproverare ver +rimproverarono rimproverare ver +rimproverarsi rimproverare ver +rimproverarti rimproverare ver +rimproverasse rimproverare ver +rimproverata rimproverare ver +rimproverate rimproverare ver +rimproverati rimproverare ver +rimproverato rimproverare ver +rimproverava rimproverare ver +rimproveravano rimproverare ver +rimproveravo rimproverare ver +rimprovererà rimproverare ver +rimproveri rimprovero nom +rimprovero rimprovero nom +rimproverò rimproverare ver +rimugina rimuginare ver +rimuginando rimuginare ver +rimuginano rimuginare ver +rimuginanti rimuginare ver +rimuginare rimuginare ver +rimuginato rimuginare ver +rimuginava rimuginare ver +rimugino rimuginare ver +rimuginò rimuginare ver +rimunera rimunerare ver +rimunerare rimunerare ver +rimunerate rimunerare ver +rimunerativa rimunerativo adj +rimunerative rimunerativo adj +rimunerativo rimunerativo adj +rimunerato rimunerare ver +rimuneratore rimuneratore nom +rimuneratrice rimuneratore nom +rimunerazione rimunerazione nom +rimuneri rimunerare ver +rimuova rimuovere ver +rimuovano rimuovere ver +rimuove rimuovere ver +rimuovendo rimuovere ver +rimuovendogli rimuovere ver +rimuovendola rimuovere ver +rimuovendole rimuovere ver +rimuovendoli rimuovere ver +rimuovendolo rimuovere ver +rimuovendone rimuovere ver +rimuovendosi rimuovere ver +rimuovendovi rimuovere ver +rimuover rimuovere ver +rimuoveranno rimuovere ver +rimuovere rimuovere ver +rimuoverebbe rimuovere ver +rimuoverei rimuovere ver +rimuoveremmo rimuovere ver +rimuoveremo rimuovere ver +rimuoveresti rimuovere ver +rimuovergli rimuovere ver +rimuoverla rimuovere ver +rimuoverle rimuovere ver +rimuoverli rimuovere ver +rimuoverlo rimuovere ver +rimuoverne rimuovere ver +rimuoversi rimuovere ver +rimuoverà rimuovere ver +rimuoverò rimuovere ver +rimuovesse rimuovere ver +rimuovessi rimuovere ver +rimuovete rimuovere ver +rimuovetela rimuovere ver +rimuovetelo rimuovere ver +rimuoveva rimuovere ver +rimuovevano rimuovere ver +rimuovevo rimuovere ver +rimuovi rimuovere ver +rimuoviamo rimuovere ver +rimuoviamola rimuovere ver +rimuoviamolo rimuovere ver +rimuovila rimuovere ver +rimuovili rimuovere ver +rimuovilo rimuovere ver +rimuovimi rimuovere ver +rimuovine rimuovere ver +rimuovo rimuovere ver +rimuovono rimuovere ver +rimutare rimutare ver +rimutò rimutare ver +rinacque rinascere ver +rinacquero rinascere ver +rinacqui rinascere ver +rinasca rinascere ver +rinascano rinascere ver +rinasce rinascere ver +rinascendo rinascere ver +rinascente rinascere ver +rinascenti rinascere ver +rinascenza rinascenza nom +rinascenze rinascenza nom +rinasceranno rinascere ver +rinascere rinascere ver +rinascerebbe rinascere ver +rinasceremo rinascere ver +rinascervi rinascere ver +rinascerà rinascere ver +rinascerò rinascere ver +rinascesse rinascere ver +rinascessero rinascere ver +rinasceva rinascere ver +rinascevano rinascere ver +rinasciamo rinascere ver +rinascimentale rinascimentale adj +rinascimentali rinascimentale adj +rinascimenti rinascimento nom +rinascimento rinascimento nom +rinascita rinascita nom +rinascite rinascita nom +rinasco rinascere ver +rinascono rinascere ver +rinata rinascere ver +rinate rinascere ver +rinati rinascere ver +rinato rinascere ver +rinazionalizzazione rinazionalizzazione nom +rincagnato rincagnato adj +rincalzi rincalzo nom +rincalzo rincalzo nom +rincara rincarare ver +rincarando rincarare ver +rincarano rincarare ver +rincarare rincarare ver +rincarata rincarare ver +rincarato rincarare ver +rincarerà rincarare ver +rincari rincaro nom +rincaro rincaro nom +rincarò rincarare ver +rincasa rincasare ver +rincasando rincasare ver +rincasano rincasare ver +rincasare rincasare ver +rincasata rincasare ver +rincasati rincasare ver +rincasato rincasare ver +rincasava rincasare ver +rincasavano rincasare ver +rincasò rincasare ver +rinchiuda rinchiudere ver +rinchiudano rinchiudere ver +rinchiude rinchiudere ver +rinchiudendo rinchiudere ver +rinchiudendola rinchiudere ver +rinchiudendole rinchiudere ver +rinchiudendoli rinchiudere ver +rinchiudendolo rinchiudere ver +rinchiudendosi rinchiudere ver +rinchiuderanno rinchiudere ver +rinchiuderci rinchiudere ver +rinchiudere rinchiudere ver +rinchiuderla rinchiudere ver +rinchiuderle rinchiudere ver +rinchiuderli rinchiudere ver +rinchiuderlo rinchiudere ver +rinchiudermi rinchiudere ver +rinchiuderne rinchiudere ver +rinchiudersi rinchiudere ver +rinchiudervi rinchiudere ver +rinchiuderà rinchiudere ver +rinchiudessero rinchiudere ver +rinchiudeva rinchiudere ver +rinchiudevano rinchiudere ver +rinchiudila rinchiudere ver +rinchiudilo rinchiudere ver +rinchiudono rinchiudere ver +rinchiusa rinchiudere ver +rinchiuse rinchiudere ver +rinchiusero rinchiudere ver +rinchiusi rinchiuso nom +rinchiuso rinchiudere ver +rincitrullisce rincitrullire ver +rincitrullito rincitrullire ver +rincoglionire rincoglionire ver +rincoglioniti rincoglionire ver +rincoglionito rincoglionire ver +rincollare rincollare ver +rincollo rincollare ver +rincomincia rincominciare ver +rincominciano rincominciare ver +rincominciare rincominciare ver +rincominciarono rincominciare ver +rincominciata rincominciare ver +rincominciato rincominciare ver +rincominciò rincominciare ver +rincontra rincontrare ver +rincontrando rincontrare ver +rincontrandolo rincontrare ver +rincontrandosi rincontrare ver +rincontrano rincontrare ver +rincontrare rincontrare ver +rincontrarla rincontrare ver +rincontrarlo rincontrare ver +rincontrarono rincontrare ver +rincontrarsi rincontrare ver +rincontrarti rincontrare ver +rincontrassero rincontrare ver +rincontrata rincontrare ver +rincontrati rincontrare ver +rincontrato rincontrare ver +rincontreranno rincontrare ver +rincontreremo rincontrare ver +rincontrerà rincontrare ver +rincontrerò rincontrare ver +rincontri rincontro nom +rincontriamo rincontrare ver +rincontrino rincontrare ver +rincontro rincontro nom +rincontrò rincontrare ver +rincorra rincorrere ver +rincorre rincorrere ver +rincorrendo rincorrere ver +rincorrendola rincorrere ver +rincorrendoli rincorrere ver +rincorrendolo rincorrere ver +rincorrendosi rincorrere ver +rincorrente rincorrere ver +rincorrerci rincorrere ver +rincorrere rincorrere ver +rincorrerla rincorrere ver +rincorrerli rincorrere ver +rincorrerlo rincorrere ver +rincorrersi rincorrere ver +rincorrervi rincorrere ver +rincorrerà rincorrere ver +rincorreva rincorrere ver +rincorrevano rincorrere ver +rincorriamo rincorrere ver +rincorro rincorrere ver +rincorrono rincorrere ver +rincorsa rincorsa nom +rincorse rincorrere ver +rincorsero rincorrere ver +rincorsi rincorrere ver +rincorso rincorrere ver +rincresce rincrescere ver +rincrescerebbe rincrescere ver +rincresceva rincrescere ver +rincrescimento rincrescimento nom +rincresciuto rincrescere ver +rincretinendo rincretinire ver +rincretinire rincretinire ver +rincretinito rincretinire ver +rincula rinculare ver +rinculando rinculare ver +rinculano rinculare ver +rinculante rinculare ver +rinculanti rinculare ver +rinculare rinculare ver +rinculo rinculo nom +rincuora rincuorare ver +rincuorando rincuorare ver +rincuorano rincuorare ver +rincuorante rincuorare ver +rincuorare rincuorare ver +rincuorarla rincuorare ver +rincuorarli rincuorare ver +rincuorarlo rincuorare ver +rincuorarono rincuorare ver +rincuorarsi rincuorare ver +rincuorata rincuorare ver +rincuorate rincuorare ver +rincuorati rincuorare ver +rincuorato rincuorare ver +rincuorava rincuorare ver +rincuorò rincuorare ver +rinegoziando rinegoziare ver +rinegoziare rinegoziare ver +rinegoziata rinegoziare ver +rinegoziati rinegoziare ver +rinegoziato rinegoziare ver +rinegoziazione rinegoziazione nom +rinegoziò rinegoziare ver +rinfacceranno rinfacciare ver +rinfaccerà rinfacciare ver +rinfacci rinfacciare ver +rinfaccia rinfacciare ver +rinfacciai rinfacciare ver +rinfacciando rinfacciare ver +rinfacciandogli rinfacciare ver +rinfacciandole rinfacciare ver +rinfacciandosi rinfacciare ver +rinfacciano rinfacciare ver +rinfacciare rinfacciare ver +rinfacciargli rinfacciare ver +rinfacciarglielo rinfacciare ver +rinfacciarle rinfacciare ver +rinfacciarlo rinfacciare ver +rinfacciarmele rinfacciare ver +rinfacciarmi rinfacciare ver +rinfacciarono rinfacciare ver +rinfacciarsi rinfacciare ver +rinfacciassero rinfacciare ver +rinfacciata rinfacciare ver +rinfacciate rinfacciare ver +rinfacciati rinfacciare ver +rinfacciato rinfacciare ver +rinfacciava rinfacciare ver +rinfacciavano rinfacciare ver +rinfaccio rinfacciare ver +rinfacciò rinfacciare ver +rinfianchi rinfianco nom +rinfianco rinfianco nom +rinfocola rinfocolare ver +rinfocolando rinfocolare ver +rinfocolare rinfocolare ver +rinfocolarsi rinfocolare ver +rinfocolata rinfocolare ver +rinfocolate rinfocolare ver +rinfocolati rinfocolare ver +rinfocolato rinfocolare ver +rinfocolava rinfocolare ver +rinfocolo rinfocolare ver +rinfocolò rinfocolare ver +rinfodera rinfoderare ver +rinfoderando rinfoderare ver +rinfoderare rinfoderare ver +rinfoderata rinfoderare ver +rinfoderava rinfoderare ver +rinfoderi rinfoderare ver +rinfodero rinfoderare ver +rinforza rinforzare ver +rinforzamenti rinforzamento nom +rinforzamento rinforzamento nom +rinforzando rinforzare ver +rinforzandola rinforzare ver +rinforzandole rinforzare ver +rinforzandolo rinforzare ver +rinforzandone rinforzare ver +rinforzandosi rinforzare ver +rinforzano rinforzare ver +rinforzante rinforzare ver +rinforzanti rinforzare ver +rinforzare rinforzare ver +rinforzarla rinforzare ver +rinforzarle rinforzare ver +rinforzarli rinforzare ver +rinforzarlo rinforzare ver +rinforzarne rinforzare ver +rinforzarono rinforzare ver +rinforzarsi rinforzare ver +rinforzasse rinforzare ver +rinforzassero rinforzare ver +rinforzata rinforzare ver +rinforzate rinforzare ver +rinforzati rinforzare ver +rinforzato rinforzare ver +rinforzava rinforzare ver +rinforzavano rinforzare ver +rinforzerebbe rinforzare ver +rinforzerà rinforzare ver +rinforzi rinforzo nom +rinforzino rinforzare ver +rinforzo rinforzo nom +rinforzò rinforzare ver +rinfranca rinfrancare ver +rinfrancar rinfrancare ver +rinfrancare rinfrancare ver +rinfrancarla rinfrancare ver +rinfrancarono rinfrancare ver +rinfrancarsi rinfrancare ver +rinfrancata rinfrancare ver +rinfrancate rinfrancare ver +rinfrancati rinfrancare ver +rinfrancato rinfrancare ver +rinfrancava rinfrancare ver +rinfrancò rinfrancare ver +rinfresca rinfrescare ver +rinfrescamento rinfrescamento nom +rinfrescando rinfrescare ver +rinfrescandosi rinfrescare ver +rinfrescano rinfrescare ver +rinfrescante rinfrescante adj +rinfrescanti rinfrescante adj +rinfrescarci rinfrescare ver +rinfrescare rinfrescare ver +rinfrescargli rinfrescare ver +rinfrescarle rinfrescare ver +rinfrescarli rinfrescare ver +rinfrescarlo rinfrescare ver +rinfrescarmi rinfrescare ver +rinfrescarne rinfrescare ver +rinfrescarsi rinfrescare ver +rinfrescarvi rinfrescare ver +rinfrescasse rinfrescare ver +rinfrescata rinfrescare ver +rinfrescate rinfrescare ver +rinfrescati rinfrescare ver +rinfrescato rinfrescare ver +rinfrescava rinfrescare ver +rinfreschi rinfresco nom +rinfreschiamoci rinfrescare ver +rinfresco rinfresco nom +rinfrescò rinfrescare ver +rinfusa rinfusa nom +rinfuse rinfusa nom +ring ring nom +ringalluzziti ringalluzzito adj +ringalluzzito ringalluzzire ver +ringhi ringhio nom +ringhia ringhiare ver +ringhiando ringhiare ver +ringhiandogli ringhiare ver +ringhiano ringhiare ver +ringhiante ringhiare ver +ringhianti ringhiare ver +ringhiare ringhiare ver +ringhiera ringhiera nom +ringhiere ringhiera nom +ringhio ringhio nom +ringhiosa ringhioso adj +ringhiosi ringhioso adj +ringhioso ringhioso adj +ringhiò ringhiare ver +ringiovanendo ringiovanire ver +ringiovanendolo ringiovanire ver +ringiovanendone ringiovanire ver +ringiovanente ringiovanire ver +ringiovanimenti ringiovanimento nom +ringiovanimento ringiovanimento nom +ringiovanire ringiovanire ver +ringiovanirla ringiovanire ver +ringiovanirono ringiovanire ver +ringiovanirsi ringiovanire ver +ringiovanisca ringiovanire ver +ringiovanisce ringiovanire ver +ringiovaniscono ringiovanire ver +ringiovanita ringiovanire ver +ringiovanite ringiovanire ver +ringiovaniti ringiovanire ver +ringiovanito ringiovanire ver +ringiovaniva ringiovanire ver +ringiovanì ringiovanire ver +ringrazi ringraziare ver +ringrazia ringraziare ver +ringrazialo ringraziare ver +ringraziamenti ringraziamento nom +ringraziamento ringraziamento nom +ringraziamo ringraziare ver +ringraziamone ringraziare ver +ringraziando ringraziare ver +ringraziandola ringraziare ver +ringraziandole ringraziare ver +ringraziandoli ringraziare ver +ringraziandolo ringraziare ver +ringraziandomi ringraziare ver +ringraziandoti ringraziare ver +ringraziandovi ringraziare ver +ringraziano ringraziare ver +ringraziar ringraziare ver +ringraziarci ringraziare ver +ringraziare ringraziare ver +ringraziarla ringraziare ver +ringraziarle ringraziare ver +ringraziarli ringraziare ver +ringraziarlo ringraziare ver +ringraziarmi ringraziare ver +ringraziarono ringraziare ver +ringraziarti ringraziare ver +ringraziarvi ringraziare ver +ringraziasse ringraziare ver +ringraziassero ringraziare ver +ringraziata ringraziare ver +ringraziate ringraziare ver +ringraziatemi ringraziare ver +ringraziati ringraziare ver +ringraziato ringraziare ver +ringraziava ringraziare ver +ringraziavano ringraziare ver +ringraziavi ringraziare ver +ringraziavo ringraziare ver +ringrazierai ringraziare ver +ringrazieranno ringraziare ver +ringrazierei ringraziare ver +ringrazieremo ringraziare ver +ringrazierà ringraziare ver +ringrazierò ringraziare ver +ringrazio ringraziare ver +ringraziò ringraziare ver +ringuainare ringuainare ver +rinite rinite nom +riniti rinite nom +rinnega rinnegare ver +rinnegamento rinnegamento nom +rinnegando rinnegare ver +rinnegandolo rinnegare ver +rinnegano rinnegare ver +rinnegante rinnegare ver +rinnegare rinnegare ver +rinnegarla rinnegare ver +rinnegarli rinnegare ver +rinnegarlo rinnegare ver +rinnegarono rinnegare ver +rinnegasse rinnegare ver +rinnegata rinnegare ver +rinnegate rinnegare ver +rinnegati rinnegato nom +rinnegato rinnegare ver +rinnegava rinnegare ver +rinnegavano rinnegare ver +rinnegherai rinnegare ver +rinnegherà rinnegare ver +rinnegherò rinnegare ver +rinneghi rinnegare ver +rinneghiamo rinnegare ver +rinneghino rinnegare ver +rinnego rinnegare ver +rinnegò rinnegare ver +rinnova rinnovare ver +rinnovabile rinnovabile adj +rinnovabili rinnovabile adj +rinnovai rinnovare ver +rinnovali rinnovare ver +rinnovamenti rinnovamento nom +rinnovamento rinnovamento nom +rinnovando rinnovare ver +rinnovandogli rinnovare ver +rinnovandola rinnovare ver +rinnovandole rinnovare ver +rinnovandoli rinnovare ver +rinnovandolo rinnovare ver +rinnovandone rinnovare ver +rinnovandosi rinnovare ver +rinnovano rinnovare ver +rinnovante rinnovare ver +rinnovar rinnovare ver +rinnovare rinnovare ver +rinnovargli rinnovare ver +rinnovarla rinnovare ver +rinnovarle rinnovare ver +rinnovarli rinnovare ver +rinnovarlo rinnovare ver +rinnovarmi rinnovare ver +rinnovarne rinnovare ver +rinnovarono rinnovare ver +rinnovarsi rinnovare ver +rinnovarti rinnovare ver +rinnovarvi rinnovare ver +rinnovasse rinnovare ver +rinnovata rinnovare ver +rinnovate rinnovare ver +rinnovati rinnovare ver +rinnovato rinnovare ver +rinnovatore rinnovatore adj +rinnovatori rinnovatore adj +rinnovatrice rinnovatore adj +rinnovatrici rinnovatore adj +rinnovava rinnovare ver +rinnovavano rinnovare ver +rinnovazione rinnovazione nom +rinnovazioni rinnovazione nom +rinnovellata rinnovellare ver +rinnovellato rinnovellare ver +rinnovellò rinnovellare ver +rinnoveranno rinnovare ver +rinnoverebbe rinnovare ver +rinnoverei rinnovare ver +rinnoverà rinnovare ver +rinnovi rinnovo nom +rinnoviamo rinnovare ver +rinnovino rinnovare ver +rinnovo rinnovo nom +rinnovò rinnovare ver +rinoceronte rinoceronte nom +rinoceronti rinoceronte nom +rinolalia rinolalia nom +rinomanza rinomanza nom +rinomata rinomato adj +rinomate rinomato adj +rinomati rinomato adj +rinomato rinomato adj +rinoplastica rinoplastica nom +rinorragia rinorragia nom +rinorrea rinorrea nom +rinoscopia rinoscopia nom +rinquarto rinquarto nom +rinsacchi rinsaccare ver +rinsacco rinsaccare ver +rinsalda rinsaldare ver +rinsaldamento rinsaldamento nom +rinsaldando rinsaldare ver +rinsaldano rinsaldare ver +rinsaldare rinsaldare ver +rinsaldarono rinsaldare ver +rinsaldarsi rinsaldare ver +rinsaldasse rinsaldare ver +rinsaldassero rinsaldare ver +rinsaldata rinsaldare ver +rinsaldate rinsaldare ver +rinsaldati rinsaldare ver +rinsaldato rinsaldare ver +rinsaldava rinsaldare ver +rinsaldavano rinsaldare ver +rinsalderanno rinsaldare ver +rinsalderà rinsaldare ver +rinsaldo rinsaldare ver +rinsaldò rinsaldare ver +rinsanguare rinsanguare ver +rinsanire rinsanire ver +rinsavire rinsavire ver +rinsavirlo rinsavire ver +rinsavirà rinsavire ver +rinsavisca rinsavire ver +rinsavisce rinsavire ver +rinsavita rinsavire ver +rinsaviti rinsavire ver +rinsavito rinsavire ver +rinsavì rinsavire ver +rinsecchire rinsecchire ver +rinsecchirsi rinsecchire ver +rinsecchisce rinsecchire ver +rinsecchita rinsecchire ver +rinsecchite rinsecchire ver +rinsecchiti rinsecchire ver +rinsecchito rinsecchire ver +rinserra rinserrare ver +rinserrandosi rinserrare ver +rinserrano rinserrare ver +rinserrare rinserrare ver +rinserrarono rinserrare ver +rinserrarsi rinserrare ver +rinserrata rinserrare ver +rinserrati rinserrare ver +rinserrato rinserrare ver +rinserrava rinserrare ver +rinserrò rinserrare ver +rintana rintanare ver +rintanandosi rintanare ver +rintanano rintanare ver +rintanare rintanare ver +rintanarono rintanare ver +rintanarsi rintanare ver +rintanata rintanare ver +rintanate rintanare ver +rintanati rintanare ver +rintanato rintanare ver +rintanava rintanare ver +rintanavano rintanare ver +rintanerà rintanare ver +rintanò rintanare ver +rinterra rinterrare ver +rinterrare rinterrare ver +rinterrata rinterrare ver +rinterrato rinterrare ver +rinterri rinterrare ver +rinterro rinterrare ver +rinterzo rinterzo nom +rintocca rintoccare ver +rintoccano rintoccare ver +rintoccare rintoccare ver +rintoccato rintoccare ver +rintoccava rintoccare ver +rintocchi rintocco nom +rintocco rintocco nom +rintontito rintontire ver +rintracceranno rintracciare ver +rintraccerebbe rintracciare ver +rintraccerà rintracciare ver +rintracci rintracciare ver +rintraccia rintracciare ver +rintracciabile rintracciabile adj +rintracciabili rintracciabile adj +rintracciabilità rintracciabilità nom +rintracciala rintracciare ver +rintracciamo rintracciare ver +rintracciando rintracciare ver +rintracciandoli rintracciare ver +rintracciandolo rintracciare ver +rintracciandone rintracciare ver +rintracciandovi rintracciare ver +rintracciano rintracciare ver +rintracciante rintracciare ver +rintracciar rintracciare ver +rintracciare rintracciare ver +rintracciarla rintracciare ver +rintracciarle rintracciare ver +rintracciarli rintracciare ver +rintracciarlo rintracciare ver +rintracciarmi rintracciare ver +rintracciarne rintracciare ver +rintracciarono rintracciare ver +rintracciarsi rintracciare ver +rintracciarvi rintracciare ver +rintracciasse rintracciare ver +rintracciata rintracciare ver +rintracciate rintracciare ver +rintracciati rintracciare ver +rintracciato rintracciare ver +rintracciava rintracciare ver +rintracciavano rintracciare ver +rintraccino rintracciare ver +rintraccio rintracciare ver +rintracciò rintracciare ver +rintrona rintronare ver +rintronare rintronare ver +rintronati rintronare ver +rintronato rintronare ver +rintuzza rintuzzare ver +rintuzzando rintuzzare ver +rintuzzare rintuzzare ver +rintuzzarlo rintuzzare ver +rintuzzarono rintuzzare ver +rintuzzasse rintuzzare ver +rintuzzata rintuzzare ver +rintuzzate rintuzzare ver +rintuzzati rintuzzare ver +rintuzzato rintuzzare ver +rintuzzava rintuzzare ver +rintuzzò rintuzzare ver +rinunce rinuncia nom +rinuncerai rinunciare ver +rinunceranno rinunciare ver +rinuncerebbe rinunciare ver +rinuncerebbero rinunciare ver +rinuncerei rinunciare ver +rinunceremo rinunciare ver +rinuncerà rinunciare ver +rinuncerò rinunciare ver +rinunci rinunciare ver +rinuncia rinuncia nom +rinunciai rinunciare ver +rinunciamo rinunciare ver +rinunciando rinunciare ver +rinunciandovi rinunciare ver +rinunciano rinunciare ver +rinunciante rinunciare ver +rinuncianti rinunciare ver +rinunciarci rinunciare ver +rinunciare rinunciare ver +rinunciarne rinunciare ver +rinunciarono rinunciare ver +rinunciarvi rinunciare ver +rinunciasse rinunciare ver +rinunciassero rinunciare ver +rinunciata rinunciare ver +rinunciatari rinunciatario adj +rinunciataria rinunciatario adj +rinunciatarie rinunciatario adj +rinunciatario rinunciatario adj +rinunciate rinunciare ver +rinunciato rinunciare ver +rinunciava rinunciare ver +rinunciavano rinunciare ver +rinunciavo rinunciare ver +rinuncino rinunciare ver +rinuncio rinunciare ver +rinunciò rinunciare ver +rinunzi rinunziare ver +rinunzia rinunzia nom +rinunziando rinunziare ver +rinunziano rinunziare ver +rinunziante rinunziare ver +rinunziar rinunziare ver +rinunziare rinunziare ver +rinunziarono rinunziare ver +rinunziarvi rinunziare ver +rinunziasse rinunziare ver +rinunziassero rinunziare ver +rinunziato rinunziare ver +rinunziava rinunziare ver +rinunzie rinunzia nom +rinunziò rinunziare ver +rinvangando rinvangare ver +rinvangare rinvangare ver +rinvenendo rinvenire ver +rinvenendosi rinvenire ver +rinvenendovi rinvenire ver +rinvengano rinvenire ver +rinvengo rinvenire ver +rinvengono rinvenire ver +rinveniamo rinvenire ver +rinvenibile rinvenibile adj +rinvenimenti rinvenimento nom +rinvenimento rinvenimento nom +rinvenir rinvenire ver +rinvenire rinvenire ver +rinvenirla rinvenire ver +rinvenirle rinvenire ver +rinvenirli rinvenire ver +rinvenirlo rinvenire ver +rinvenirne rinvenire ver +rinvenirsi rinvenire ver +rinvenirvi rinvenire ver +rinvenisse rinvenire ver +rinvenissero rinvenire ver +rinveniva rinvenire ver +rinvenivano rinvenire ver +rinvenne rinvenire ver +rinvennero rinvenire ver +rinvenni rinvenire ver +rinvenuta rinvenire ver +rinvenute rinvenire ver +rinvenuti rinvenire ver +rinvenuto rinvenire ver +rinverdendo rinverdire ver +rinverdire rinverdire ver +rinverdirne rinverdire ver +rinverdisce rinverdire ver +rinverdiscono rinverdire ver +rinverdissero rinverdire ver +rinverdita rinverdire ver +rinverdite rinverdire ver +rinverditi rinverdire ver +rinverdito rinverdire ver +rinverdiva rinverdire ver +rinverdivano rinverdire ver +rinverdì rinverdire ver +rinverranno rinvenire ver +rinverrà rinvenire ver +rinvia rinviare ver +rinviamo rinviare ver +rinviando rinviare ver +rinviandola rinviare ver +rinviandoli rinviare ver +rinviandolo rinviare ver +rinviandone rinviare ver +rinviano rinviare ver +rinviante rinviare ver +rinviare rinviare ver +rinviargli rinviare ver +rinviarla rinviare ver +rinviarle rinviare ver +rinviarli rinviare ver +rinviarlo rinviare ver +rinviarne rinviare ver +rinviarono rinviare ver +rinviarsi rinviare ver +rinviata rinviare ver +rinviate rinviare ver +rinviati rinviare ver +rinviato rinviare ver +rinviava rinviare ver +rinviavano rinviare ver +rinviene rinvenire ver +rinvierebbero rinviare ver +rinvierei rinviare ver +rinvierà rinviare ver +rinvigorendo rinvigorire ver +rinvigorendosi rinvigorire ver +rinvigorente rinvigorire ver +rinvigorenti rinvigorire ver +rinvigorimento rinvigorimento nom +rinvigorire rinvigorire ver +rinvigorirla rinvigorire ver +rinvigorirle rinvigorire ver +rinvigorirlo rinvigorire ver +rinvigorirono rinvigorire ver +rinvigorirsi rinvigorire ver +rinvigorirà rinvigorire ver +rinvigorisce rinvigorire ver +rinvigoriscono rinvigorire ver +rinvigorita rinvigorire ver +rinvigorite rinvigorire ver +rinvigoriti rinvigorire ver +rinvigorito rinvigorire ver +rinvigoriva rinvigorire ver +rinvigorì rinvigorire ver +rinvii rinvio nom +rinviino rinviare ver +rinvio rinvio nom +rinviò rinviare ver +rinzaffi rinzaffo nom +rinzaffo rinzaffo nom +rio rio adj +rioccupa rioccupare ver +rioccupando rioccupare ver +rioccupandola rioccupare ver +rioccupano rioccupare ver +rioccupare rioccupare ver +rioccuparla rioccupare ver +rioccuparlo rioccupare ver +rioccuparono rioccupare ver +rioccupasse rioccupare ver +rioccupassero rioccupare ver +rioccupata rioccupare ver +rioccupate rioccupare ver +rioccupati rioccupare ver +rioccupato rioccupare ver +rioccupava rioccupare ver +rioccupavano rioccupare ver +rioccupazione rioccupazione nom +rioccupazioni rioccupazione nom +rioccupino rioccupare ver +rioccupò rioccupare ver +rionale rionale adj +rionali rionale adj +rione rione nom +rioni rione nom +riordina riordinare ver +riordinamenti riordinamento nom +riordinamento riordinamento nom +riordinando riordinare ver +riordinandola riordinare ver +riordinandole riordinare ver +riordinandoli riordinare ver +riordinano riordinare ver +riordinare riordinare ver +riordinarla riordinare ver +riordinarle riordinare ver +riordinarli riordinare ver +riordinarlo riordinare ver +riordinarne riordinare ver +riordinarono riordinare ver +riordinarsi riordinare ver +riordinasse riordinare ver +riordinata riordinare ver +riordinate riordinare ver +riordinati riordinare ver +riordinato riordinare ver +riordinatore riordinatore adj +riordinava riordinare ver +riordinerei riordinare ver +riordini riordinare ver +riordiniamo riordinare ver +riordinino riordinare ver +riordino riordinare ver +riordinò riordinare ver +riorganizza riorganizzare ver +riorganizzala riorganizzare ver +riorganizzando riorganizzare ver +riorganizzandola riorganizzare ver +riorganizzandole riorganizzare ver +riorganizzandoli riorganizzare ver +riorganizzandolo riorganizzare ver +riorganizzandone riorganizzare ver +riorganizzandosi riorganizzare ver +riorganizzano riorganizzare ver +riorganizzare riorganizzare ver +riorganizzarla riorganizzare ver +riorganizzarle riorganizzare ver +riorganizzarli riorganizzare ver +riorganizzarlo riorganizzare ver +riorganizzarne riorganizzare ver +riorganizzarono riorganizzare ver +riorganizzarsi riorganizzare ver +riorganizzarvi riorganizzare ver +riorganizzasi riorganizzare ver +riorganizzasse riorganizzare ver +riorganizzassero riorganizzare ver +riorganizzata riorganizzare ver +riorganizzate riorganizzare ver +riorganizzatesi riorganizzare ver +riorganizzati riorganizzare ver +riorganizzato riorganizzare ver +riorganizzatore riorganizzatore nom +riorganizzatrice riorganizzatore nom +riorganizzava riorganizzare ver +riorganizzavano riorganizzare ver +riorganizzazione riorganizzazione nom +riorganizzazioni riorganizzazione nom +riorganizzeranno riorganizzare ver +riorganizzerei riorganizzare ver +riorganizzerà riorganizzare ver +riorganizzo riorganizzare ver +riorganizzò riorganizzare ver +riorientamento riorientamento nom +riorientare riorientare ver +riorientarsi riorientare ver +riorientato riorientare ver +riottenere riottenere ver +riottosa riottoso adj +riottose riottoso adj +riottosi riottoso adj +riottosità riottosità nom +riottoso riottoso adj +ripa ripa nom +ripaga ripagare ver +ripagando ripagare ver +ripagandoli ripagare ver +ripagandolo ripagare ver +ripagano ripagare ver +ripagare ripagare ver +ripagargli ripagare ver +ripagarla ripagare ver +ripagarli ripagare ver +ripagarlo ripagare ver +ripagarne ripagare ver +ripagarono ripagare ver +ripagarsi ripagare ver +ripagarti ripagare ver +ripagasse ripagare ver +ripagata ripagare ver +ripagate ripagare ver +ripagati ripagare ver +ripagato ripagare ver +ripagava ripagare ver +ripagavano ripagare ver +ripagherebbe ripagare ver +ripagherà ripagare ver +ripaghi ripagare ver +ripaghino ripagare ver +ripagò ripagare ver +ripara riparare ver +riparabili riparabile nom +riparali riparare ver +riparalo riparare ver +riparando riparare ver +riparandola riparare ver +riparandole riparare ver +riparandoli riparare ver +riparandolo riparare ver +riparandosi riparare ver +riparano riparare ver +riparar riparare ver +ripararci riparare ver +riparare riparare ver +riparargli riparare ver +ripararla riparare ver +ripararle riparare ver +ripararli riparare ver +ripararlo riparare ver +ripararmi riparare ver +ripararne riparare ver +ripararono riparare ver +ripararsi riparare ver +ripararvi riparare ver +riparasi riparare ver +riparasse riparare ver +riparassero riparare ver +riparata riparare ver +riparate riparare ver +riparati riparare ver +riparato riparare ver +riparatore riparatore adj +riparatori riparatore nom +riparatrice riparatore adj +riparatrici riparatore adj +riparava riparare ver +riparavano riparare ver +riparazione riparazione nom +riparazioni riparazione nom +ripareranno riparare ver +riparerei riparare ver +ripareremo riparare ver +riparerà riparare ver +riparerò riparare ver +ripari riparo nom +riparia ripario adj +ripariamo riparare ver +ripariamoci riparare ver +riparie ripario adj +riparino riparare ver +ripario ripario adj +riparla riparlare ver +riparlando riparlare ver +riparlandone riparlare ver +riparlano riparlare ver +riparlare riparlare ver +riparlarne riparlare ver +riparlato riparlare ver +riparleranno riparlare ver +riparlerei riparlare ver +riparleremo riparlare ver +riparlerà riparlare ver +riparlerò riparlare ver +riparli riparlare ver +riparliamo riparlare ver +riparliamone riparlare ver +riparlo riparlare ver +riparlò riparlare ver +riparo riparo nom +riparta ripartire ver +ripartano ripartire ver +riparte ripartire ver +ripartendo ripartire ver +ripartendola ripartire ver +ripartendole ripartire ver +ripartendoli ripartire ver +ripartendolo ripartire ver +ripartendone ripartire ver +ripartendosi ripartire ver +ripartenti ripartire ver +riparti ripartire ver +ripartiamo ripartire ver +ripartii ripartire ver +ripartiranno ripartire ver +ripartire ripartire ver +ripartirebbe ripartire ver +ripartirei ripartire ver +ripartiremo ripartire ver +ripartirla ripartire ver +ripartirle ripartire ver +ripartirli ripartire ver +ripartirlo ripartire ver +ripartirne ripartire ver +ripartirono ripartire ver +ripartirsi ripartire ver +ripartirà ripartire ver +ripartirò ripartire ver +ripartisce ripartire ver +ripartiscono ripartire ver +ripartisse ripartire ver +ripartissero ripartire ver +ripartita ripartire ver +ripartite ripartire ver +ripartiti ripartire ver +ripartito ripartire ver +ripartitore ripartitore nom +ripartitori ripartitore nom +ripartiva ripartire ver +ripartivano ripartire ver +ripartizione ripartizione nom +ripartizioni ripartizione nom +riparto ripartire ver +ripartono ripartire ver +ripartì ripartire ver +riparò riparare ver +ripassa ripassare ver +ripassando ripassare ver +ripassandovi ripassare ver +ripassano ripassare ver +ripassarci ripassare ver +ripassare ripassare ver +ripassarla ripassare ver +ripassarli ripassare ver +ripassarlo ripassare ver +ripassarono ripassare ver +ripassarsi ripassare ver +ripassarti ripassare ver +ripassasse ripassare ver +ripassassi ripassare ver +ripassata ripassata nom +ripassate ripassare ver +ripassati ripassare ver +ripassato ripassare ver +ripassava ripassare ver +ripassavano ripassare ver +ripasserebbe ripassare ver +ripasserà ripassare ver +ripasserò ripassare ver +ripassi ripasso nom +ripassiamo ripassare ver +ripassino ripassare ver +ripasso ripasso nom +ripassò ripassare ver +ripe ripa nom +ripensa ripensare ver +ripensaci ripensare ver +ripensamenti ripensamento nom +ripensamento ripensamento nom +ripensando ripensare ver +ripensandoci ripensare ver +ripensandoli ripensare ver +ripensandone ripensare ver +ripensano ripensare ver +ripensarci ripensare ver +ripensare ripensare ver +ripensarla ripensare ver +ripensarlo ripensare ver +ripensarne ripensare ver +ripensarono ripensare ver +ripensarsi ripensare ver +ripensasse ripensare ver +ripensassi ripensare ver +ripensata ripensare ver +ripensate ripensare ver +ripensati ripensare ver +ripensato ripensare ver +ripensavo ripensare ver +ripenserai ripensare ver +ripenserei ripensare ver +ripenserà ripensare ver +ripenserò ripensare ver +ripensi ripensare ver +ripensiamo ripensare ver +ripensino ripensare ver +ripenso ripensare ver +ripensò ripensare ver +ripentendo ripentirsi ver +ripercorra ripercorrere ver +ripercorrano ripercorrere ver +ripercorre ripercorrere ver +ripercorrendo ripercorrere ver +ripercorrendone ripercorrere ver +ripercorreranno ripercorrere ver +ripercorrere ripercorrere ver +ripercorrerebbe ripercorrere ver +ripercorrerla ripercorrere ver +ripercorrerne ripercorrere ver +ripercorrerà ripercorrere ver +ripercorresse ripercorrere ver +ripercorressero ripercorrere ver +ripercorreva ripercorrere ver +ripercorrevano ripercorrere ver +ripercorriamo ripercorrere ver +ripercorrono ripercorrere ver +ripercorsa ripercorrere ver +ripercorse ripercorrere ver +ripercorsero ripercorrere ver +ripercorsi ripercorrere ver +ripercorso ripercorrere ver +ripercossa ripercuotere ver +ripercosse ripercuotere ver +ripercossero ripercuotere ver +ripercossi ripercuotere ver +ripercosso ripercuotere ver +ripercuota ripercuotere ver +ripercuote ripercuotere ver +ripercuotendo ripercuotere ver +ripercuotendosi ripercuotere ver +ripercuoteranno ripercuotere ver +ripercuotere ripercuotere ver +ripercuoterebbe ripercuotere ver +ripercuoterebbero ripercuotere ver +ripercuotersi ripercuotere ver +ripercuoterà ripercuotere ver +ripercuotesse ripercuotere ver +ripercuoteva ripercuotere ver +ripercuotevano ripercuotere ver +ripercuotono ripercuotere ver +ripercussione ripercussione nom +ripercussioni ripercussione nom +ripesca ripescare ver +ripescando ripescare ver +ripescano ripescare ver +ripescare ripescare ver +ripescarla ripescare ver +ripescarle ripescare ver +ripescarlo ripescare ver +ripescarono ripescare ver +ripescarti ripescare ver +ripescasse ripescare ver +ripescata ripescare ver +ripescate ripescare ver +ripescati ripescare ver +ripescato ripescare ver +ripescava ripescare ver +ripescavano ripescare ver +ripeschiamo ripescare ver +ripesco ripescare ver +ripescò ripescare ver +ripeta ripetere ver +ripetano ripetere ver +ripete ripetere ver +ripetei ripetere ver +ripetendo ripetere ver +ripetendogli ripetere ver +ripetendola ripetere ver +ripetendole ripetere ver +ripetendoli ripetere ver +ripetendolo ripetere ver +ripetendomi ripetere ver +ripetendone ripetere ver +ripetendosi ripetere ver +ripetente ripetente nom +ripetenti ripetente nom +ripeter ripetere ver +ripeterai ripetere ver +ripeteranno ripetere ver +ripeterci ripetere ver +ripetere ripetere ver +ripeterebbe ripetere ver +ripeterei ripetere ver +ripeteremo ripetere ver +ripeterete ripetere ver +ripetergli ripetere ver +ripeterglielo ripetere ver +ripeterla ripetere ver +ripeterle ripetere ver +ripeterli ripetere ver +ripeterlo ripetere ver +ripetermi ripetere ver +ripeterne ripetere ver +ripeterono ripetere ver +ripetersi ripetere ver +ripetertelo ripetere ver +ripeterti ripetere ver +ripetervi ripetere ver +ripeterà ripetere ver +ripeterò ripetere ver +ripetesse ripetere ver +ripetessero ripetere ver +ripetessi ripetere ver +ripetete ripetere ver +ripeteva ripetere ver +ripetevano ripetere ver +ripetevo ripetere ver +ripeti ripetere ver +ripetiamo ripetere ver +ripetiamoci ripetere ver +ripetiamolo ripetere ver +ripetibile ripetibile adj +ripetibili ripetibile adj +ripetibilità ripetibilità nom +ripetili ripetere ver +ripetilo ripetere ver +ripetitiva ripetitivo adj +ripetitive ripetitivo adj +ripetitivi ripetitivo adj +ripetitività ripetitività nom +ripetitivo ripetitivo adj +ripetitore ripetitore nom +ripetitori ripetitore nom +ripetitrice ripetitore adj +ripetitrici ripetitore adj +ripetizione ripetizione nom +ripetizioni ripetizione nom +ripeto ripetere ver +ripetono ripetere ver +ripetuta ripetere ver +ripetutamente ripetutamente adv +ripetute ripetuto adj +ripetuti ripetuto adj +ripetuto ripetere ver +ripetè ripetere ver +ripiani ripiano nom +ripiano ripiano nom +ripicca ripicca nom +ripicche ripicca nom +ripida ripido adj +ripide ripido adj +ripidezza ripidezza nom +ripidi ripido adj +ripido ripido adj +ripiega ripiegare ver +ripiegamenti ripiegamento nom +ripiegamento ripiegamento nom +ripiegando ripiegare ver +ripiegandola ripiegare ver +ripiegandole ripiegare ver +ripiegandolo ripiegare ver +ripiegandosi ripiegare ver +ripiegano ripiegare ver +ripiegare ripiegare ver +ripiegarla ripiegare ver +ripiegarle ripiegare ver +ripiegarlo ripiegare ver +ripiegarne ripiegare ver +ripiegarono ripiegare ver +ripiegarsi ripiegare ver +ripiegata ripiegare ver +ripiegate ripiegare ver +ripiegati ripiegare ver +ripiegato ripiegare ver +ripiegatura ripiegatura nom +ripiegature ripiegatura nom +ripiegava ripiegare ver +ripiegavano ripiegare ver +ripiegavo ripiegare ver +ripiegherebbe ripiegare ver +ripiegherà ripiegare ver +ripiegherò ripiegare ver +ripieghi ripiego nom +ripieghino ripiegare ver +ripiego ripiego nom +ripiegò ripiegare ver +ripiena ripieno adj +ripiene ripieno adj +ripieni ripieno adj +ripieno ripieno nom +ripiglia ripigliare ver +ripigliar ripigliare ver +ripigliare ripigliare ver +ripigliate ripigliare ver +ripigliati ripigliare ver +ripigliato ripigliare ver +ripigliava ripigliare ver +ripiglino ripigliare ver +ripiglio ripigliare ver +ripigliò ripigliare ver +ripiomba ripiombare ver +ripiombando ripiombare ver +ripiombano ripiombare ver +ripiombare ripiombare ver +ripiombarono ripiombare ver +ripiombata ripiombare ver +ripiombato ripiombare ver +ripiombò ripiombare ver +ripone riporre ver +riponendo riporre ver +riponendola riporre ver +riponendolo riporre ver +riponesse riporre ver +riponessero riporre ver +riponete riporre ver +riponetelo riporre ver +riponeva riporre ver +riponevano riporre ver +riponevo riporre ver +riponga riporre ver +ripongo riporre ver +ripongono riporre ver +riponi riporre ver +riponiamo riporre ver +ripopola ripopolare ver +ripopolamenti ripopolamento nom +ripopolamento ripopolamento nom +ripopolando ripopolare ver +ripopolandola ripopolare ver +ripopolandole ripopolare ver +ripopolandosi ripopolare ver +ripopolano ripopolare ver +ripopolare ripopolare ver +ripopolarla ripopolare ver +ripopolarle ripopolare ver +ripopolarli ripopolare ver +ripopolarlo ripopolare ver +ripopolarono ripopolare ver +ripopolarsi ripopolare ver +ripopolata ripopolare ver +ripopolate ripopolare ver +ripopolati ripopolare ver +ripopolato ripopolare ver +ripopoleranno ripopolare ver +ripopolerà ripopolare ver +ripopolò ripopolare ver +ripor riporre ver +riporla riporre ver +riporle riporre ver +riporli riporre ver +riporlo riporre ver +riporranno riporre ver +riporre riporre ver +riporrà riporre ver +riporsi riporre ver +riporta riportare ver +riportai riportare ver +riportala riportare ver +riportale riportare ver +riportali riportare ver +riportalo riportare ver +riportami riportare ver +riportando riportare ver +riportandoci riportare ver +riportandogli riportare ver +riportandola riportare ver +riportandole riportare ver +riportandoli riportare ver +riportandolo riportare ver +riportandomi riportare ver +riportandone riportare ver +riportandosi riportare ver +riportandovi riportare ver +riportane riportare ver +riportano riportare ver +riportante riportare ver +riportanti riportare ver +riportar riportare ver +riportarcela riportare ver +riportarci riportare ver +riportare riportare ver +riportargli riportare ver +riportargliela riportare ver +riportarglielo riportare ver +riportarla riportare ver +riportarle riportare ver +riportarli riportare ver +riportarlo riportare ver +riportarmi riportare ver +riportarne riportare ver +riportarono riportare ver +riportarsela riportare ver +riportarselo riportare ver +riportarsi riportare ver +riportarti riportare ver +riportarvi riportare ver +riportasse riportare ver +riportassero riportare ver +riportassi riportare ver +riportassimo riportare ver +riportata riportare ver +riportate riportare ver +riportateci riportare ver +riportatela riportare ver +riportatele riportare ver +riportatelo riportare ver +riportatemi riportare ver +riportati riportare ver +riportato riportare ver +riportava riportare ver +riportavamo riportare ver +riportavano riportare ver +riportavi riportare ver +riportavo riportare ver +riporteranno riportare ver +riporterebbe riportare ver +riporterebbero riportare ver +riporterei riportare ver +riporteremo riportare ver +riporterà riportare ver +riporterò riportare ver +riporti riporto nom +riportiamo riportare ver +riportiamola riportare ver +riportiate riportare ver +riportino riportare ver +riporto riporto nom +riportò riportare ver +riporvi riporre ver +riposa riposare ver +riposando riposare ver +riposandosi riposare ver +riposano riposare ver +riposante riposante adj +riposanti riposante adj +riposar riposare ver +riposarci riposare ver +riposare riposare ver +riposarmi riposare ver +riposarono riposare ver +riposarsi riposare ver +riposarti riposare ver +riposarvi riposare ver +riposasse riposare ver +riposassero riposare ver +riposata riposare ver +riposate riposato adj +riposati riposare ver +riposato riposare ver +riposava riposare ver +riposavano riposare ver +ripose riporre ver +riposerai riposare ver +riposeranno riposare ver +riposerebbe riposare ver +riposeremo riposare ver +riposero riporre ver +riposerà riposare ver +riposi riposo nom +riposiamo riposare ver +riposino riposare ver +riposo riposo nom +riposta riporre ver +riposte riporre ver +riposti riporre ver +ripostigli ripostiglio nom +ripostiglio ripostiglio nom +riposto riporre ver +riposò riposare ver +riprenda riprendere ver +riprendano riprendere ver +riprende riprendere ver +riprendemmo riprendere ver +riprendendo riprendere ver +riprendendola riprendere ver +riprendendole riprendere ver +riprendendoli riprendere ver +riprendendolo riprendere ver +riprendendone riprendere ver +riprendendosela riprendere ver +riprendendoselo riprendere ver +riprendendosi riprendere ver +riprendente riprendere ver +riprendenti riprendere ver +riprender riprendere ver +riprenderanno riprendere ver +riprenderci riprendere ver +riprendere riprendere ver +riprenderebbe riprendere ver +riprenderebbero riprendere ver +riprenderei riprendere ver +riprenderemmo riprendere ver +riprenderemo riprendere ver +riprendergli riprendere ver +riprenderla riprendere ver +riprenderle riprendere ver +riprenderli riprendere ver +riprenderlo riprendere ver +riprendermi riprendere ver +riprenderne riprendere ver +riprendersela riprendere ver +riprendersele riprendere ver +riprenderseli riprendere ver +riprenderselo riprendere ver +riprendersi riprendere ver +riprenderti riprendere ver +riprendervi riprendere ver +riprenderà riprendere ver +riprenderò riprendere ver +riprendesse riprendere ver +riprendessero riprendere ver +riprendetela riprendere ver +riprendetevi riprendere ver +riprendeva riprendere ver +riprendevano riprendere ver +riprendevo riprendere ver +riprendi riprendere ver +riprendiamo riprendere ver +riprendiamoci riprendere ver +riprendiate riprendere ver +riprendimi riprendere ver +riprenditi riprendere ver +riprendo riprendere ver +riprendono riprendere ver +riprensibile riprensibile adj +riprensione riprensione nom +ripresa ripresa nom +riprese riprendere ver +ripresenta ripresentare ver +ripresentala ripresentare ver +ripresentando ripresentare ver +ripresentandola ripresentare ver +ripresentandosi ripresentare ver +ripresentano ripresentare ver +ripresentare ripresentare ver +ripresentarla ripresentare ver +ripresentarli ripresentare ver +ripresentarlo ripresentare ver +ripresentarne ripresentare ver +ripresentarono ripresentare ver +ripresentarsi ripresentare ver +ripresentarti ripresentare ver +ripresentasse ripresentare ver +ripresentassero ripresentare ver +ripresentata ripresentare ver +ripresentate ripresentare ver +ripresentati ripresentare ver +ripresentato ripresentare ver +ripresentava ripresentare ver +ripresentavano ripresentare ver +ripresentazione ripresentazione nom +ripresenteranno ripresentare ver +ripresenterebbe ripresentare ver +ripresenteremo ripresentare ver +ripresenterà ripresentare ver +ripresenterò ripresentare ver +ripresenti ripresentare ver +ripresentino ripresentare ver +ripresento ripresentare ver +ripresentò ripresentare ver +ripresero riprendere ver +ripresi riprendere ver +ripreso riprendere ver +ripristina ripristinare ver +ripristinala ripristinare ver +ripristinale ripristinare ver +ripristinando ripristinare ver +ripristinandola ripristinare ver +ripristinandole ripristinare ver +ripristinandoli ripristinare ver +ripristinandolo ripristinare ver +ripristinandone ripristinare ver +ripristinano ripristinare ver +ripristinare ripristinare ver +ripristinargli ripristinare ver +ripristinarla ripristinare ver +ripristinarle ripristinare ver +ripristinarli ripristinare ver +ripristinarlo ripristinare ver +ripristinarmela ripristinare ver +ripristinarmi ripristinare ver +ripristinarne ripristinare ver +ripristinarono ripristinare ver +ripristinarsi ripristinare ver +ripristinasse ripristinare ver +ripristinassero ripristinare ver +ripristinassi ripristinare ver +ripristinata ripristinare ver +ripristinate ripristinare ver +ripristinatela ripristinare ver +ripristinatele ripristinare ver +ripristinati ripristinare ver +ripristinato ripristinare ver +ripristinava ripristinare ver +ripristinavano ripristinare ver +ripristineranno ripristinare ver +ripristinerebbe ripristinare ver +ripristinerei ripristinare ver +ripristineremo ripristinare ver +ripristinerà ripristinare ver +ripristinerò ripristinare ver +ripristini ripristino nom +ripristiniamo ripristinare ver +ripristinino ripristinare ver +ripristino ripristino nom +ripristinò ripristinare ver +riprodotta riprodurre ver +riprodotte riprodurre ver +riprodotti riprodurre ver +riprodotto riprodurre ver +riproduca riprodurre ver +riproducano riprodurre ver +riproduce riprodurre ver +riproducendo riprodurre ver +riproducendola riprodurre ver +riproducendole riprodurre ver +riproducendoli riprodurre ver +riproducendolo riprodurre ver +riproducendone riprodurre ver +riproducendosi riprodurre ver +riproducente riprodurre ver +riproducenti riprodurre ver +riproducesse riprodurre ver +riproducessero riprodurre ver +riproducessi riprodurre ver +riproduceva riprodurre ver +riproducevano riprodurre ver +riproduci riprodurre ver +riproduciamo riprodurre ver +riproducibile riproducibile adj +riproducibili riproducibile adj +riproducibilità riproducibilità nom +riproduco riprodurre ver +riproducono riprodurre ver +riprodurla riprodurre ver +riprodurle riprodurre ver +riprodurli riprodurre ver +riprodurlo riprodurre ver +riprodurmi riprodurre ver +riprodurne riprodurre ver +riprodurranno riprodurre ver +riprodurre riprodurre ver +riprodurrebbe riprodurre ver +riprodurrebbero riprodurre ver +riprodurrà riprodurre ver +riprodursi riprodurre ver +riprodurvi riprodurre ver +riprodusse riprodurre ver +riprodussero riprodurre ver +riproduttiva riproduttivo adj +riproduttive riproduttivo adj +riproduttivi riproduttivo adj +riproduttivo riproduttivo adj +riproduttore riproduttore adj +riproduttori riproduttore adj +riproduttrice riproduttore adj +riproduttrici riproduttore adj +riproduzione riproduzione nom +riproduzioni riproduzione nom +riprogrammare riprogrammare ver +riprogrammazione riprogrammazione nom +ripromessa ripromettere ver +ripromesse ripromettere ver +ripromessi ripromettere ver +ripromesso ripromettere ver +ripromette ripromettere ver +ripromettendomi ripromettere ver +ripromettendosi ripromettere ver +ripromettere ripromettere ver +ripromettersi ripromettere ver +riprometteva ripromettere ver +ripromettevano ripromettere ver +ripromettevo ripromettere ver +riprometto ripromettere ver +ripromettono ripromettere ver +ripromise ripromettere ver +ripromisero ripromettere ver +ripromisi ripromettere ver +ripropone riproporre ver +riproponendo riproporre ver +riproponendola riproporre ver +riproponendole riproporre ver +riproponendoli riproporre ver +riproponendolo riproporre ver +riproponendone riproporre ver +riproponendosi riproporre ver +riproponente riproporre ver +riproponesse riproporre ver +riproponessero riproporre ver +riproponete riproporre ver +riproponetela riproporre ver +riproponeva riproporre ver +riproponevano riproporre ver +riproponevo riproporre ver +riproponga riproporre ver +ripropongano riproporre ver +ripropongo riproporre ver +ripropongono riproporre ver +riproponi riproporre ver +riproponiamo riproporre ver +riproponila riproporre ver +riproponilo riproporre ver +riproporla riproporre ver +riproporle riproporre ver +riproporli riproporre ver +riproporlo riproporre ver +ripropormi riproporre ver +riproporne riproporre ver +riproporranno riproporre ver +riproporre riproporre ver +riproporrebbe riproporre ver +riproporrei riproporre ver +riproporremo riproporre ver +riproporrà riproporre ver +riproporrò riproporre ver +riproporsi riproporre ver +ripropose riproporre ver +riproposero riproporre ver +riproposta riproporre ver +riproposte riproporre ver +riproposti riproporre ver +riproposto riproporre ver +riprova riprova nom +riprovai riprovare ver +riprovando riprovare ver +riprovandoci riprovare ver +riprovano riprovare ver +riprovarci riprovare ver +riprovare riprovare ver +riprovarla riprovare ver +riprovarlo riprovare ver +riprovarono riprovare ver +riprovata riprovare ver +riprovate riprovare ver +riprovati riprovare ver +riprovato riprovare ver +riprovava riprovare ver +riprovavano riprovare ver +riprovavo riprovare ver +riprovazione riprovazione nom +riprovazioni riprovazione nom +riprove riprova nom +riproveranno riprovare ver +riproveremo riprovare ver +riproverà riprovare ver +riproverò riprovare ver +riprovevole riprovevole adj +riprovevoli riprovevole adj +riprovi riprovare ver +riproviamo riprovare ver +riproviamoci riprovare ver +riprovino riprovare ver +riprovo riprovare ver +riprovò riprovare ver +ripubblica ripubblicare ver +ripubblicando ripubblicare ver +ripubblicandoli ripubblicare ver +ripubblicandolo ripubblicare ver +ripubblicano ripubblicare ver +ripubblicare ripubblicare ver +ripubblicarla ripubblicare ver +ripubblicarle ripubblicare ver +ripubblicarli ripubblicare ver +ripubblicarlo ripubblicare ver +ripubblicarne ripubblicare ver +ripubblicarono ripubblicare ver +ripubblicata ripubblicare ver +ripubblicate ripubblicare ver +ripubblicati ripubblicare ver +ripubblicato ripubblicare ver +ripubblicava ripubblicare ver +ripubblicazione ripubblicazione nom +ripubblicazioni ripubblicazione nom +ripubblicheranno ripubblicare ver +ripubblicherà ripubblicare ver +ripubblicherò ripubblicare ver +ripubblichi ripubblicare ver +ripubblico ripubblicare ver +ripubblicò ripubblicare ver +ripudi ripudio nom +ripudia ripudiare ver +ripudiando ripudiare ver +ripudiandola ripudiare ver +ripudiandone ripudiare ver +ripudiano ripudiare ver +ripudiare ripudiare ver +ripudiarla ripudiare ver +ripudiarlo ripudiare ver +ripudiarono ripudiare ver +ripudiasse ripudiare ver +ripudiata ripudiare ver +ripudiate ripudiare ver +ripudiati ripudiare ver +ripudiato ripudiare ver +ripudiava ripudiare ver +ripudiavano ripudiare ver +ripudierà ripudiare ver +ripudio ripudio nom +ripudiò ripudiare ver +ripugna ripugnare ver +ripugnano ripugnare ver +ripugnante ripugnante adj +ripugnanti ripugnante adj +ripugnanza ripugnanza nom +ripugnare ripugnare ver +ripugnata ripugnare ver +ripugnate ripugnare ver +ripugnava ripugnare ver +ripugnavano ripugnare ver +ripugni ripugnare ver +ripugno ripugnare ver +ripugnò ripugnare ver +ripulendo ripulire ver +ripulendola ripulire ver +ripulendole ripulire ver +ripulendoli ripulire ver +ripulendolo ripulire ver +ripulendone ripulire ver +ripuliamo ripulire ver +ripuliranno ripulire ver +ripulire ripulire ver +ripulirei ripulire ver +ripuliremo ripulire ver +ripulirla ripulire ver +ripulirle ripulire ver +ripulirli ripulire ver +ripulirlo ripulire ver +ripulirne ripulire ver +ripulirono ripulire ver +ripulirsi ripulire ver +ripulirà ripulire ver +ripulirò ripulire ver +ripulisca ripulire ver +ripuliscano ripulire ver +ripulisce ripulire ver +ripulisci ripulire ver +ripulisco ripulire ver +ripuliscono ripulire ver +ripulisse ripulire ver +ripulissimo ripulire ver +ripulisti ripulisti nom +ripulita ripulire ver +ripulite ripulire ver +ripulitela ripulire ver +ripuliti ripulire ver +ripulito ripulire ver +ripulitura ripulitura nom +ripuliture ripulitura nom +ripuliva ripulire ver +ripulivano ripulire ver +ripulivo ripulire ver +ripulsa ripulsa nom +ripulse ripulso adj +ripulsione ripulsione nom +ripulì ripulire ver +ripunto ripungere ver +riputare riputare ver +riputati riputare ver +riputato riputare ver +riputava riputare ver +riputazione riputazione nom +riquadra riquadrare ver +riquadrando riquadrare ver +riquadrano riquadrare ver +riquadrare riquadrare ver +riquadrata riquadrare ver +riquadrate riquadrare ver +riquadrati riquadrare ver +riquadrato riquadrare ver +riquadratura riquadratura nom +riquadrature riquadratura nom +riquadri riquadro nom +riquadrino riquadrare ver +riquadro riquadro nom +riqualifica riqualificare ver +riqualificando riqualificare ver +riqualificandone riqualificare ver +riqualificandosi riqualificare ver +riqualificare riqualificare ver +riqualificarla riqualificare ver +riqualificarne riqualificare ver +riqualificarono riqualificare ver +riqualificarsi riqualificare ver +riqualificata riqualificare ver +riqualificate riqualificare ver +riqualificati riqualificare ver +riqualificato riqualificare ver +riqualificazione riqualificazione nom +riqualificazioni riqualificazione nom +riqualificherà riqualificare ver +riqualificò riqualificare ver +risa riso nom +risacca risacca nom +risacche risacca nom +risaia risaia nom +risaie risaia nom +risalda risaldare ver +risaldar risaldare ver +risaldare risaldare ver +risale risalire ver +risalendo risalire ver +risalendola risalire ver +risalendolo risalire ver +risalendone risalire ver +risalente risalire ver +risalenti risalire ver +risalga risalire ver +risalgano risalire ver +risalgo risalire ver +risalgono risalire ver +risali risalire ver +risaliamo risalire ver +risalii risalire ver +risalimmo risalire ver +risaliranno risalire ver +risalirci risalire ver +risalire risalire ver +risalirebbe risalire ver +risalirebbero risalire ver +risaliremo risalire ver +risalirla risalire ver +risalirlo risalire ver +risalirne risalire ver +risalirono risalire ver +risalirvi risalire ver +risalirà risalire ver +risalisse risalire ver +risalissero risalire ver +risalita risalita nom +risalite risalita nom +risaliti risalire ver +risalito risalire ver +risaliva risalire ver +risalivano risalire ver +risalta risaltare ver +risaltando risaltare ver +risaltandolo risaltare ver +risaltandone risaltare ver +risaltano risaltare ver +risaltante risaltare ver +risaltanti risaltare ver +risaltare risaltare ver +risaltarlo risaltare ver +risaltarne risaltare ver +risaltarono risaltare ver +risaltasse risaltare ver +risaltassero risaltare ver +risaltata risaltare ver +risaltate risaltare ver +risaltati risaltare ver +risaltato risaltare ver +risaltava risaltare ver +risaltavano risaltare ver +risalterebbe risaltare ver +risalterebbero risaltare ver +risalti risalto nom +risaltino risaltare ver +risalto risalto nom +risaltò risaltare ver +risalì risalire ver +risana risanare ver +risanabile risanabile adj +risanamenti risanamento nom +risanamento risanamento nom +risanando risanare ver +risanano risanare ver +risananti risanare ver +risanare risanare ver +risanarla risanare ver +risanarle risanare ver +risanarlo risanare ver +risanarne risanare ver +risanarono risanare ver +risanarsi risanare ver +risanata risanare ver +risanate risanare ver +risanati risanare ver +risanato risanare ver +risanatore risanatore adj +risanatori risanatore nom +risanatrice risanatore adj +risanatrici risanatore adj +risani risanare ver +risano risanare ver +risanò risanare ver +risapere risapere ver +risaputa risapere ver +risapute risapere ver +risaputi risaputo adj +risaputo risapere ver +risarcendo risarcire ver +risarcendolo risarcire ver +risarcibile risarcibile adj +risarcibili risarcibile adj +risarcimenti risarcimento nom +risarcimento risarcimento nom +risarcire risarcire ver +risarcirgli risarcire ver +risarcirla risarcire ver +risarcirle risarcire ver +risarcirli risarcire ver +risarcirlo risarcire ver +risarcirne risarcire ver +risarcirono risarcire ver +risarcirà risarcire ver +risarcisca risarcire ver +risarcisce risarcire ver +risarciscono risarcire ver +risarcita risarcire ver +risarcite risarcire ver +risarciti risarcire ver +risarcito risarcire ver +risarciva risarcire ver +risarcì risarcire ver +risata risata nom +risate risata nom +riscalda riscaldare ver +riscaldamenti riscaldamento nom +riscaldamento riscaldamento nom +riscaldami riscaldare ver +riscaldando riscaldare ver +riscaldandola riscaldare ver +riscaldandole riscaldare ver +riscaldandolo riscaldare ver +riscaldandosi riscaldare ver +riscaldano riscaldare ver +riscaldante riscaldare ver +riscaldanti riscaldare ver +riscaldare riscaldare ver +riscaldarla riscaldare ver +riscaldarle riscaldare ver +riscaldarli riscaldare ver +riscaldarlo riscaldare ver +riscaldarono riscaldare ver +riscaldarsi riscaldare ver +riscaldarti riscaldare ver +riscaldasse riscaldare ver +riscaldassero riscaldare ver +riscaldata riscaldare ver +riscaldate riscaldare ver +riscaldati riscaldare ver +riscaldato riscaldare ver +riscaldatore riscaldatore nom +riscaldatori riscaldatore nom +riscaldava riscaldare ver +riscaldavano riscaldare ver +riscalderanno riscaldare ver +riscalderebbe riscaldare ver +riscalderebbero riscaldare ver +riscalderà riscaldare ver +riscaldi riscaldare ver +riscaldiamo riscaldare ver +riscaldo riscaldo nom +riscaldò riscaldare ver +riscatta riscattare ver +riscattabile riscattabile adj +riscattabili riscattabile adj +riscattando riscattare ver +riscattandola riscattare ver +riscattandoli riscattare ver +riscattandolo riscattare ver +riscattandone riscattare ver +riscattandosi riscattare ver +riscattano riscattare ver +riscattarci riscattare ver +riscattare riscattare ver +riscattarla riscattare ver +riscattarle riscattare ver +riscattarli riscattare ver +riscattarlo riscattare ver +riscattarmi riscattare ver +riscattarne riscattare ver +riscattarono riscattare ver +riscattarsi riscattare ver +riscattasse riscattare ver +riscattata riscattare ver +riscattate riscattare ver +riscattati riscattare ver +riscattato riscattare ver +riscattava riscattare ver +riscattavano riscattare ver +riscatteranno riscattare ver +riscatterebbe riscattare ver +riscatterà riscattare ver +riscatti riscatto nom +riscatto riscatto nom +riscattò riscattare ver +risceglie riscegliere ver +rischi rischio nom +rischia rischiare ver +rischiai rischiare ver +rischiammo rischiare ver +rischiamo rischiare ver +rischiando rischiare ver +rischiandole rischiare ver +rischiano rischiare ver +rischianti rischiare ver +rischiar rischiare ver +rischiara rischiarare ver +rischiaramento rischiaramento nom +rischiarando rischiarare ver +rischiarano rischiarare ver +rischiarare rischiarare ver +rischiarasse rischiarare ver +rischiarata rischiarare ver +rischiarate rischiarare ver +rischiarati rischiarare ver +rischiarato rischiarare ver +rischiarava rischiarare ver +rischiaravano rischiarare ver +rischiare rischiare ver +rischiarerà rischiarare ver +rischiari rischiarare ver +rischiarla rischiare ver +rischiarlo rischiare ver +rischiarne rischiare ver +rischiarono rischiare ver +rischiarsi rischiare ver +rischiarò rischiarare ver +rischiasse rischiare ver +rischiassero rischiare ver +rischiata rischiare ver +rischiate rischiare ver +rischiati rischiare ver +rischiato rischiare ver +rischiava rischiare ver +rischiavano rischiare ver +rischiavo rischiare ver +rischieranno rischiare ver +rischierebbe rischiare ver +rischierebbero rischiare ver +rischierei rischiare ver +rischieremmo rischiare ver +rischieremo rischiare ver +rischieresti rischiare ver +rischierà rischiare ver +rischierò rischiare ver +rischino rischiare ver +rischio rischio nom +rischiosa rischioso adj +rischiose rischioso adj +rischiosi rischioso adj +rischioso rischioso adj +rischiò rischiare ver +risciacqua risciacquare ver +risciacquano risciacquare ver +risciacquare risciacquare ver +risciacquarsi risciacquare ver +risciacquata risciacquata nom +risciacquate risciacquare ver +risciacquati risciacquare ver +risciacquato risciacquare ver +risciacqui risciacquo nom +risciacquo risciacquo nom +risciogliersi risciogliere ver +risciò risciò nom +riscontare riscontare ver +risconti risconto nom +risconto risconto nom +riscontra riscontrare ver +riscontrabile riscontrabile adj +riscontrabili riscontrabile adj +riscontrai riscontrare ver +riscontrando riscontrare ver +riscontrandone riscontrare ver +riscontrandosi riscontrare ver +riscontrano riscontrare ver +riscontrare riscontrare ver +riscontrarla riscontrare ver +riscontrarle riscontrare ver +riscontrarlo riscontrare ver +riscontrarne riscontrare ver +riscontrarono riscontrare ver +riscontrarsi riscontrare ver +riscontrasi riscontrare ver +riscontrasse riscontrare ver +riscontrassero riscontrare ver +riscontrassi riscontrare ver +riscontrata riscontrare ver +riscontrate riscontrare ver +riscontrati riscontrare ver +riscontrato riscontrare ver +riscontrava riscontrare ver +riscontravano riscontrare ver +riscontravo riscontrare ver +riscontreranno riscontrare ver +riscontrerebbe riscontrare ver +riscontrerebbero riscontrare ver +riscontreremo riscontrare ver +riscontrerà riscontrare ver +riscontri riscontro nom +riscontriamo riscontrare ver +riscontrino riscontrare ver +riscontro riscontro nom +riscontrò riscontrare ver +riscoperta riscoperta nom +riscoperte riscoprire ver +riscoperti riscoprire ver +riscoperto riscoprire ver +riscopra riscoprire ver +riscopre riscoprire ver +riscoprendo riscoprire ver +riscoprendolo riscoprire ver +riscoprendone riscoprire ver +riscoprendosi riscoprire ver +riscopri riscoprire ver +riscopriamo riscoprire ver +riscopriranno riscoprire ver +riscoprire riscoprire ver +riscoprirla riscoprire ver +riscoprirle riscoprire ver +riscoprirli riscoprire ver +riscoprirlo riscoprire ver +riscoprirne riscoprire ver +riscoprirono riscoprire ver +riscoprirsi riscoprire ver +riscoprirà riscoprire ver +riscoprisse riscoprire ver +riscopriva riscoprire ver +riscoprivano riscoprire ver +riscopro riscoprire ver +riscoprono riscoprire ver +riscoprì riscoprire ver +riscorso riscorrere ver +riscossa riscossa nom +riscosse riscuotere ver +riscossero riscuotere ver +riscossi riscuotere ver +riscossione riscossione nom +riscossioni riscossione nom +riscosso riscuotere ver +riscrisse riscrivere ver +riscrissero riscrivere ver +riscrissi riscrivere ver +riscritta riscrivere ver +riscritte riscrivere ver +riscritti riscrivere ver +riscritto riscrivere ver +riscriva riscrivere ver +riscrivano riscrivere ver +riscrive riscrivere ver +riscrivendo riscrivere ver +riscrivendola riscrivere ver +riscrivendole riscrivere ver +riscrivendoli riscrivere ver +riscrivendolo riscrivere ver +riscrivendone riscrivere ver +riscriver riscrivere ver +riscriverai riscrivere ver +riscriveranno riscrivere ver +riscriverci riscrivere ver +riscrivere riscrivere ver +riscriverei riscrivere ver +riscriveremo riscrivere ver +riscriverla riscrivere ver +riscriverle riscrivere ver +riscriverli riscrivere ver +riscriverlo riscrivere ver +riscrivermi riscrivere ver +riscriverne riscrivere ver +riscriversi riscrivere ver +riscrivervi riscrivere ver +riscriverà riscrivere ver +riscriverò riscrivere ver +riscrivesse riscrivere ver +riscrivessi riscrivere ver +riscrivete riscrivere ver +riscrivetela riscrivere ver +riscriveva riscrivere ver +riscrivi riscrivere ver +riscriviamo riscrivere ver +riscriviamola riscrivere ver +riscrivila riscrivere ver +riscrivile riscrivere ver +riscrivilo riscrivere ver +riscriviti riscrivere ver +riscrivo riscrivere ver +riscrivono riscrivere ver +riscuota riscuotere ver +riscuotano riscuotere ver +riscuote riscuotere ver +riscuotendo riscuotere ver +riscuoteranno riscuotere ver +riscuotere riscuotere ver +riscuoterebbe riscuotere ver +riscuoterla riscuotere ver +riscuoterle riscuotere ver +riscuoterli riscuotere ver +riscuoterlo riscuotere ver +riscuoterne riscuotere ver +riscuotersi riscuotere ver +riscuotervi riscuotere ver +riscuoterà riscuotere ver +riscuoterò riscuotere ver +riscuotesse riscuotere ver +riscuotessero riscuotere ver +riscuoteva riscuotere ver +riscuotevano riscuotere ver +riscuotevo riscuotere ver +riscuotibile riscuotibile adj +riscuotibili riscuotibile adj +riscuotono riscuotere ver +rise ridere ver +riseca risecare ver +risedenti risedere ver +risedere risedere ver +risedersi risedere ver +risedette risedere ver +risedettero risedere ver +risedeva risedere ver +risedevano risedere ver +risega risega nom +riseghe risega nom +risei riessere ver +risemina riseminare ver +riseminano riseminare ver +riseminare riseminare ver +riseminarsi riseminare ver +risenta risentire ver +risentano risentire ver +risente risentire ver +risentendo risentire ver +risentendone risentire ver +risenti risentire ver +risentiamo risentire ver +risentiamoci risentire ver +risentii risentire ver +risentimenti risentimento nom +risentimento risentimento nom +risentir risentire ver +risentiranno risentire ver +risentirci risentire ver +risentire risentire ver +risentirebbe risentire ver +risentirebbero risentire ver +risentiremo risentire ver +risentirla risentire ver +risentirlo risentire ver +risentirmi risentire ver +risentirne risentire ver +risentirono risentire ver +risentirsene risentire ver +risentirsi risentire ver +risentirti risentire ver +risentirà risentire ver +risentisse risentire ver +risentissero risentire ver +risentita risentire ver +risentite risentito adj +risentiti risentire ver +risentito risentire ver +risentiva risentire ver +risentivano risentire ver +risento risentire ver +risentono risentire ver +risentì risentire ver +riseppe risapere ver +riserba riserbare ver +riserbare riserbare ver +riserbata riserbare ver +riserbato riserbare ver +riserberà riserbare ver +riserbi riserbare ver +riserbo riserbo nom +riserbò riserbare ver +riseria riseria nom +riserie riseria nom +risero ridere ver +riserva riserva nom +riservagli riservare ver +riservale riservare ver +riservando riservare ver +riservandoci riservare ver +riservandogli riservare ver +riservandola riservare ver +riservandole riservare ver +riservandoli riservare ver +riservandolo riservare ver +riservandomi riservare ver +riservandone riservare ver +riservandosela riservare ver +riservandosene riservare ver +riservandosi riservare ver +riservano riservare ver +riservarci riservare ver +riservare riservare ver +riservargli riservare ver +riservarla riservare ver +riservarle riservare ver +riservarli riservare ver +riservarlo riservare ver +riservarmi riservare ver +riservarne riservare ver +riservarono riservare ver +riservarsi riservare ver +riservarti riservare ver +riservarvi riservare ver +riservasse riservare ver +riservassimo riservare ver +riservata riservare ver +riservate riservare ver +riservategli riservare ver +riservatele riservare ver +riservatezza riservatezza nom +riservatezze riservatezza nom +riservati riservare ver +riservato riservare ver +riservava riservare ver +riservavano riservare ver +riservavo riservare ver +riserve riserva nom +riserveranno riservare ver +riserverei riservare ver +riserverà riservare ver +riserverò riservare ver +riservi riservare ver +riserviamo riservare ver +riserviamole riservare ver +riserviamolo riservare ver +riservino riservare ver +riservista riservista nom +riservisti riservista nom +riservo riservare ver +riservò riservare ver +risguardi risguardo nom +risguardo risguardo nom +risi riso nom +risia riessere ver +risiamo riessere ver +risibile risibile adj +risibili risibile adj +risicola risicolo adj +risicole risicolo adj +risicolo risicolo adj +risicoltura risicoltura nom +risieda risedere|risiedere ver +risiedano risedere|risiedere ver +risiede risedere|risiedere ver +risiedendo risiedere ver +risiedendovi risiedere ver +risiedente risiedere ver +risiedenti risiedere ver +risiederanno risiedere ver +risiedere risiedere ver +risiederebbe risiedere ver +risiederebbero risiedere ver +risiedervi risiedere ver +risiederà risiedere ver +risiedesse risiedere ver +risiedessero risiedere ver +risiedette risiedere ver +risiedettero risiedere ver +risiedeva risiedere ver +risiedevano risiedere ver +risiedi risedere|risiedere ver +risiedo risedere|risiedere ver +risiedono risedere|risiedere ver +risieduta risiedere ver +risiedute risiedere ver +risieduti risiedere ver +risieduto risiedere ver +risiera risiera nom +risiero risiero adj +risina risina nom +risipola risipola nom +risistemato risistemare ver +risistemazione risistemazione nom +risma risma nom +risme risma nom +riso riso nom +risola risolare ver +risoli risolare ver +risolini risolino nom +risolino risolare ver +risolleva risollevare ver +risollevando risollevare ver +risollevandola risollevare ver +risollevandone risollevare ver +risollevandosi risollevare ver +risollevano risollevare ver +risollevante risollevare ver +risollevarci risollevare ver +risollevare risollevare ver +risollevargli risollevare ver +risollevarla risollevare ver +risollevarle risollevare ver +risollevarli risollevare ver +risollevarlo risollevare ver +risollevarmi risollevare ver +risollevarne risollevare ver +risollevarono risollevare ver +risollevarsi risollevare ver +risollevasse risollevare ver +risollevata risollevare ver +risollevate risollevare ver +risollevati risollevare ver +risollevato risollevare ver +risollevava risollevare ver +risollevavano risollevare ver +risolleverà risollevare ver +risollevi risollevare ver +risollevo risollevare ver +risollevò risollevare ver +risolo risolare ver +risolse risolvere ver +risolsero risolvere ver +risolsi risolvere ver +risolta risolvere ver +risolte risolvere ver +risolti risolvere ver +risolto risolvere ver +risolubile risolubile adj +risolubili risolubile adj +risoluta risoluto adj +risolutamente risolutamente adv +risolute risoluto adj +risolutezza risolutezza nom +risoluti risoluto adj +risolutiva risolutivo adj +risolutive risolutivo adj +risolutivi risolutivo adj +risolutivo risolutivo adj +risoluto risoluto adj +risolutore risolutore nom +risolutori risolutore nom +risolutrice risolutore nom +risolutrici risolutore nom +risoluzione risoluzione nom +risoluzioni risoluzione nom +risolva risolvere ver +risolvano risolvere ver +risolve risolvere ver +risolvendo risolvere ver +risolvendola risolvere ver +risolvendole risolvere ver +risolvendoli risolvere ver +risolvendolo risolvere ver +risolvendone risolvere ver +risolvendosi risolvere ver +risolvente risolvere ver +risolventi risolvere ver +risolver risolvere ver +risolverai risolvere ver +risolveranno risolvere ver +risolvere risolvere ver +risolverebbe risolvere ver +risolverebbero risolvere ver +risolverei risolvere ver +risolveremmo risolvere ver +risolveremo risolvere ver +risolveresti risolvere ver +risolverete risolvere ver +risolvergli risolvere ver +risolverla risolvere ver +risolverle risolvere ver +risolverli risolvere ver +risolverlo risolvere ver +risolvermi risolvere ver +risolverne risolvere ver +risolverselo risolvere ver +risolversi risolvere ver +risolverti risolvere ver +risolverà risolvere ver +risolverò risolvere ver +risolvesse risolvere ver +risolvessero risolvere ver +risolvessimo risolvere ver +risolvete risolvere ver +risolvetela risolvere ver +risolvetele risolvere ver +risolveva risolvere ver +risolvevano risolvere ver +risolvi risolvere ver +risolviamo risolvere ver +risolviamola risolvere ver +risolviamoli risolvere ver +risolviamolo risolvere ver +risolvibile risolvibile adj +risolvibili risolvibile adj +risolvili risolvere ver +risolvo risolvere ver +risolvono risolvere ver +risona risonare ver +risonante risonante adj +risonanti risonante adj +risonanza risonanza nom +risonanze risonanza nom +risonar risonare ver +risonare risonare ver +risonatore risonatore nom +risonatori risonatore nom +risonatrice risonatore adj +risonava risonare ver +risone risone nom +risoni risone nom +risorga risorgere ver +risorgano risorgere ver +risorge risorgere ver +risorgendo risorgere ver +risorgente risorgere ver +risorgenti risorgere ver +risorgeranno risorgere ver +risorgere risorgere ver +risorgeremo risorgere ver +risorgerà risorgere ver +risorgerò risorgere ver +risorgesse risorgere ver +risorgeva risorgere ver +risorgevano risorgere ver +risorgi risorgere ver +risorgimentale risorgimentale adj +risorgimentali risorgimentale adj +risorgimenti risorgimento nom +risorgimento risorgimento nom +risorgiva risorgiva nom +risorgive risorgiva nom +risorgo risorgere ver +risorgono risorgere ver +risorsa risorsa nom +risorse risorsa nom +risorsero risorgere ver +risorsi risorgere ver +risorta risorgere ver +risorte risorgere ver +risorti risorgere ver +risorto risorgere ver +risospinge risospingere ver +risospinti risospingere ver +risospinto risospingere ver +risotti risotto nom +risotto risotto nom +risovvenire risovvenire ver +risovviene risovvenire ver +risparmi risparmio nom +risparmia risparmiare ver +risparmiacele risparmiare ver +risparmiaci risparmiare ver +risparmiami risparmiare ver +risparmiamo risparmiare ver +risparmiamocela risparmiare ver +risparmiamoci risparmiare ver +risparmiando risparmiare ver +risparmiandoci risparmiare ver +risparmiandogli risparmiare ver +risparmiandola risparmiare ver +risparmiandole risparmiare ver +risparmiandoli risparmiare ver +risparmiandolo risparmiare ver +risparmiandone risparmiare ver +risparmiandosi risparmiare ver +risparmiandovi risparmiare ver +risparmiano risparmiare ver +risparmiar risparmiare ver +risparmiarcela risparmiare ver +risparmiarci risparmiare ver +risparmiare risparmiare ver +risparmiargli risparmiare ver +risparmiarla risparmiare ver +risparmiarle risparmiare ver +risparmiarli risparmiare ver +risparmiarlo risparmiare ver +risparmiarmela risparmiare ver +risparmiarmele risparmiare ver +risparmiarmelo risparmiare ver +risparmiarmi risparmiare ver +risparmiarne risparmiare ver +risparmiarono risparmiare ver +risparmiarsela risparmiare ver +risparmiarsele risparmiare ver +risparmiarselo risparmiare ver +risparmiarsi risparmiare ver +risparmiartela risparmiare ver +risparmiartelo risparmiare ver +risparmiarti risparmiare ver +risparmiarvelo risparmiare ver +risparmiarvi risparmiare ver +risparmiasse risparmiare ver +risparmiassero risparmiare ver +risparmiassi risparmiare ver +risparmiata risparmiare ver +risparmiate risparmiare ver +risparmiateci risparmiare ver +risparmiatelo risparmiare ver +risparmiatemi risparmiare ver +risparmiatevi risparmiare ver +risparmiati risparmiare ver +risparmiato risparmiare ver +risparmiatore risparmiatore nom +risparmiatori risparmiatore nom +risparmiatrice risparmiatore nom +risparmiava risparmiare ver +risparmiavamo risparmiare ver +risparmiavano risparmiare ver +risparmiavi risparmiare ver +risparmierai risparmiare ver +risparmieranno risparmiare ver +risparmierebbe risparmiare ver +risparmierebbero risparmiare ver +risparmierei risparmiare ver +risparmieremmo risparmiare ver +risparmieremo risparmiare ver +risparmieresti risparmiare ver +risparmierà risparmiare ver +risparmierò risparmiare ver +risparmino risparmiare ver +risparmio risparmio nom +risparmiò risparmiare ver +rispecchi rispecchiare ver +rispecchia rispecchiare ver +rispecchiamo rispecchiare ver +rispecchiando rispecchiare ver +rispecchiandosi rispecchiare ver +rispecchiano rispecchiare ver +rispecchiante rispecchiare ver +rispecchianti rispecchiare ver +rispecchiare rispecchiare ver +rispecchiarne rispecchiare ver +rispecchiarono rispecchiare ver +rispecchiarsi rispecchiare ver +rispecchiasse rispecchiare ver +rispecchiassero rispecchiare ver +rispecchiata rispecchiare ver +rispecchiate rispecchiare ver +rispecchiati rispecchiare ver +rispecchiato rispecchiare ver +rispecchiava rispecchiare ver +rispecchiavano rispecchiare ver +rispecchieranno rispecchiare ver +rispecchierebbe rispecchiare ver +rispecchierebbero rispecchiare ver +rispecchierà rispecchiare ver +rispecchino rispecchiare ver +rispecchio rispecchiare ver +rispecchiò rispecchiare ver +rispedendo rispedire ver +rispedendola rispedire ver +rispedendole rispedire ver +rispedendoli rispedire ver +rispedendolo rispedire ver +rispediranno rispedire ver +rispedire rispedire ver +rispedirei rispedire ver +rispedirla rispedire ver +rispedirle rispedire ver +rispedirli rispedire ver +rispedirlo rispedire ver +rispedirono rispedire ver +rispedirà rispedire ver +rispedisca rispedire ver +rispedisce rispedire ver +rispedisco rispedire ver +rispediscono rispedire ver +rispedita rispedire ver +rispedite rispedire ver +rispediti rispedire ver +rispedito rispedire ver +rispediva rispedire ver +rispedizione rispedizione nom +rispedì rispedire ver +rispetta rispettare ver +rispettabile rispettabile adj +rispettabili rispettabile adj +rispettabilità rispettabilità nom +rispettando rispettare ver +rispettandola rispettare ver +rispettandole rispettare ver +rispettandoli rispettare ver +rispettandolo rispettare ver +rispettandone rispettare ver +rispettandosi rispettare ver +rispettane rispettare ver +rispettano rispettare ver +rispettante rispettare ver +rispettanti rispettare ver +rispettar rispettare ver +rispettarci rispettare ver +rispettare rispettare ver +rispettarla rispettare ver +rispettarle rispettare ver +rispettarli rispettare ver +rispettarlo rispettare ver +rispettarne rispettare ver +rispettarono rispettare ver +rispettarsi rispettare ver +rispettarti rispettare ver +rispettasse rispettare ver +rispettassero rispettare ver +rispettassi rispettare ver +rispettata rispettare ver +rispettate rispettare ver +rispettatele rispettare ver +rispettati rispettare ver +rispettato rispettare ver +rispettava rispettare ver +rispettavano rispettare ver +rispettavi rispettare ver +rispettavo rispettare ver +rispetterai rispettare ver +rispetteranno rispettare ver +rispetterebbe rispettare ver +rispetterebbero rispettare ver +rispetterei rispettare ver +rispetteremo rispettare ver +rispetterà rispettare ver +rispetterò rispettare ver +rispetti rispettare ver +rispettiamo rispettare ver +rispettiamoci rispettare ver +rispettiamola rispettare ver +rispettiamole rispettare ver +rispettiamoli rispettare ver +rispettiamolo rispettare ver +rispettiate rispettare ver +rispettino rispettare ver +rispettiva rispettivo adj +rispettivamente rispettivamente adv +rispettive rispettivo adj +rispettivi rispettivo adj +rispettivo rispettivo adj +rispetto rispetto nom_sup +rispettosa rispettoso adj +rispettose rispettoso adj +rispettosi rispettoso adj +rispettoso rispettoso adj +rispettò rispettare ver +rispiega rispiegare ver +rispiegando rispiegare ver +rispiegare rispiegare ver +rispiegarlo rispiegare ver +rispiegarmelo rispiegare ver +rispiegarmi rispiegare ver +rispiegarti rispiegare ver +rispiegatemelo rispiegare ver +rispiegati rispiegare ver +rispiegato rispiegare ver +rispieghi rispiegare ver +rispieghiamo rispiegare ver +rispiego rispiegare ver +risplenda risplendere ver +risplende risplendere ver +risplendendo risplendere ver +risplendente risplendente adj +risplendenti risplendente adj +risplendere risplendere ver +risplenderà risplendere ver +risplendesse risplendere ver +risplendeva risplendere ver +risplendevano risplendere ver +risplendi risplendere ver +risplendo risplendere ver +risplendono risplendere ver +risplendè risplendere ver +rispolvera rispolverare ver +rispolverando rispolverare ver +rispolverano rispolverare ver +rispolverare rispolverare ver +rispolverarla rispolverare ver +rispolverarono rispolverare ver +rispolverata rispolverare ver +rispolverate rispolverare ver +rispolverati rispolverare ver +rispolverato rispolverare ver +rispolvererà rispolverare ver +rispolveri rispolverare ver +rispolvero rispolverare ver +rispolverò rispolverare ver +risponda rispondere ver +rispondano rispondere ver +risponde rispondere ver +rispondemmo rispondere ver +rispondendo rispondere ver +rispondendogli rispondere ver +rispondendole rispondere ver +rispondendomi rispondere ver +rispondendone rispondere ver +rispondendosi rispondere ver +rispondendoti rispondere ver +rispondendovi rispondere ver +rispondente rispondente adj +rispondenti rispondente adj +rispondenza rispondenza nom +rispondenze rispondenza nom +risponder rispondere ver +risponderai rispondere ver +risponderanno rispondere ver +risponderci rispondere ver +rispondere rispondere ver +risponderebbe rispondere ver +risponderebbero rispondere ver +risponderei rispondere ver +risponderemo rispondere ver +rispondereste rispondere ver +risponderesti rispondere ver +risponderete rispondere ver +rispondergli rispondere ver +risponderle rispondere ver +rispondermi rispondere ver +risponderne rispondere ver +rispondersi rispondere ver +risponderti rispondere ver +rispondervi rispondere ver +risponderà rispondere ver +risponderò rispondere ver +rispondesse rispondere ver +rispondessero rispondere ver +rispondessi rispondere ver +rispondeste rispondere ver +rispondesti rispondere ver +rispondete rispondere ver +rispondetegli rispondere ver +rispondetemi rispondere ver +rispondetevi rispondere ver +rispondeva rispondere ver +rispondevamo rispondere ver +rispondevano rispondere ver +rispondevi rispondere ver +rispondevo rispondere ver +rispondi rispondere ver +rispondiamo rispondere ver +rispondiamone rispondere ver +rispondiate rispondere ver +rispondigli rispondere ver +rispondimi rispondere ver +rispondo rispondere ver +rispondono rispondere ver +risposa risposare ver +risposandosi risposare ver +risposano risposare ver +risposare risposare ver +risposarla risposare ver +risposarlo risposare ver +risposarono risposare ver +risposarsi risposare ver +risposasse risposare ver +risposata risposare ver +risposate risposare ver +risposati risposare ver +risposato risposare ver +risposavano risposare ver +rispose rispondere ver +risposeranno risposare ver +risposero rispondere ver +risposerà risposare ver +risposi risposare ver +risposiamoci risposare ver +risposo risposare ver +risposta risposta nom +risposte risposta nom +risposti rispondere ver +risposto rispondere ver +risposò risposare ver +rispunta rispuntare ver +rispuntano rispuntare ver +rispuntare rispuntare ver +rispuntata rispuntare ver +rispuntate rispuntare ver +rispuntati rispuntare ver +rispuntato rispuntare ver +rispuntavano rispuntare ver +rispunterà rispuntare ver +rispuntò rispuntare ver +rissa rissa nom +rissaiolo rissaiolo adj +rissala rissare ver +rissale rissare ver +risse rissa nom +rissi rissare ver +risso rissare ver +rissosa rissoso adj +rissose rissoso adj +rissosi rissoso adj +rissoso rissoso adj +rista ristare ver +ristabilendo ristabilire ver +ristabilendone ristabilire ver +ristabilendosi ristabilire ver +ristabilendovi ristabilire ver +ristabiliamo ristabilire ver +ristabilimenti ristabilimento nom +ristabilimento ristabilimento nom +ristabiliranno ristabilire ver +ristabilire ristabilire ver +ristabilirla ristabilire ver +ristabilirle ristabilire ver +ristabilirli ristabilire ver +ristabilirlo ristabilire ver +ristabilirne ristabilire ver +ristabilirono ristabilire ver +ristabilirsi ristabilire ver +ristabilirvi ristabilire ver +ristabilirà ristabilire ver +ristabilisca ristabilire ver +ristabiliscano ristabilire ver +ristabilisce ristabilire ver +ristabiliscono ristabilire ver +ristabilisse ristabilire ver +ristabilissero ristabilire ver +ristabilita ristabilire ver +ristabilite ristabilire ver +ristabiliti ristabilire ver +ristabilito ristabilire ver +ristabiliva ristabilire ver +ristabilivano ristabilire ver +ristabilì ristabilire ver +ristagna ristagnare ver +ristagnando ristagnare ver +ristagnano ristagnare ver +ristagnante ristagnare ver +ristagnanti ristagnare ver +ristagnare ristagnare ver +ristagnato ristagnare ver +ristagnava ristagnare ver +ristagnavano ristagnare ver +ristagnerebbero ristagnare ver +ristagni ristagno nom +ristagno ristagno nom +ristagnò ristagnare ver +ristallo ristallo nom +ristampa ristampa nom +ristampando ristampare ver +ristampandolo ristampare ver +ristampano ristampare ver +ristampare ristampare ver +ristamparli ristampare ver +ristamparlo ristampare ver +ristamparono ristampare ver +ristampata ristampare ver +ristampate ristampare ver +ristampati ristampare ver +ristampato ristampare ver +ristampava ristampare ver +ristampavano ristampare ver +ristampe ristampa nom +ristamperà ristampare ver +ristampo ristampare ver +ristampò ristampare ver +ristar ristare ver +ristare ristare ver +ristarò ristare ver +ristette ristare ver +ristettero ristare ver +ristetti ristare ver +ristiano ristare ver +risto ristare ver +ristora ristorare ver +ristorando ristorare ver +ristorane ristorare ver +ristorano ristorare ver +ristorante ristorante nom +ristoranti ristorante nom +ristorare ristorare ver +ristorarsi ristorare ver +ristorata ristorare ver +ristorate ristorare ver +ristorati ristorare ver +ristorato ristorare ver +ristoratore ristoratore adj +ristoratori ristoratore nom +ristoratrice ristoratore adj +ristoratrici ristoratore nom +ristorava ristorare ver +ristoravano ristorare ver +ristorazione ristorazione nom +ristorazioni ristorazione nom +ristorerà ristorare ver +ristorerò ristorare ver +ristori ristoro nom +ristoro ristoro nom +ristorò ristorare ver +ristretta restringere|ristringere ver +ristrette restringere|ristringere ver +ristrettezza ristrettezza nom +ristrettezze ristrettezza nom +ristretti restringere|ristringere ver +ristrettissimo ristrettissimo nom +ristretto restringere|ristringere ver +ristringe ristringere ver +ristringere ristringere ver +ristringersi ristringere ver +ristruttura ristrutturare ver +ristrutturali ristrutturare ver +ristrutturando ristrutturare ver +ristrutturandola ristrutturare ver +ristrutturandole ristrutturare ver +ristrutturandolo ristrutturare ver +ristrutturandone ristrutturare ver +ristrutturano ristrutturare ver +ristrutturare ristrutturare ver +ristrutturarla ristrutturare ver +ristrutturarle ristrutturare ver +ristrutturarli ristrutturare ver +ristrutturarlo ristrutturare ver +ristrutturarne ristrutturare ver +ristrutturarono ristrutturare ver +ristrutturarsi ristrutturare ver +ristrutturasse ristrutturare ver +ristrutturata ristrutturare ver +ristrutturate ristrutturare ver +ristrutturati ristrutturare ver +ristrutturato ristrutturare ver +ristrutturava ristrutturare ver +ristrutturazione ristrutturazione nom +ristrutturazioni ristrutturazione nom +ristrutturerei ristrutturare ver +ristrutturiamo ristrutturare ver +ristrutturo ristrutturare ver +ristrutturò ristrutturare ver +ristudiando ristudiare ver +ristudiare ristudiare ver +ristudiarlo ristudiare ver +ristudiata ristudiare ver +ristudiati ristudiare ver +ristudiato ristudiare ver +ristudio ristudiare ver +ristudiò ristudiare ver +risucchi risucchio nom +risucchia risucchiare ver +risucchiando risucchiare ver +risucchiandola risucchiare ver +risucchiandoli risucchiare ver +risucchiandolo risucchiare ver +risucchiandone risucchiare ver +risucchiano risucchiare ver +risucchiare risucchiare ver +risucchiarla risucchiare ver +risucchiarli risucchiare ver +risucchiarlo risucchiare ver +risucchiarne risucchiare ver +risucchiarono risucchiare ver +risucchiata risucchiare ver +risucchiate risucchiare ver +risucchiati risucchiare ver +risucchiato risucchiare ver +risucchiava risucchiare ver +risucchierà risucchiare ver +risucchio risucchio nom +risucchiò risucchiare ver +risulta risultare ver +risultai risultare ver +risultando risultare ver +risultandogli risultare ver +risultandone risultare ver +risultano risultare ver +risultante risultante adj +risultanti risultare ver +risultanza risultanza nom +risultanze risultanza nom +risultar risultare ver +risultare risultare ver +risultargli risultare ver +risultarle risultare ver +risultarmi risultare ver +risultarne risultare ver +risultarono risultare ver +risultarti risultare ver +risultarvi risultare ver +risultasse risultare ver +risultassero risultare ver +risultassi risultare ver +risultata risultare ver +risultate risultare ver +risultati risultato nom +risultato risultato nom +risultava risultare ver +risultavano risultare ver +risultavi risultare ver +risultavo risultare ver +risulteranno risultare ver +risulterebbe risultare ver +risulterebbero risultare ver +risulterei risultare ver +risulterà risultare ver +risulterò risultare ver +risulti risultare ver +risultiamo risultare ver +risultino risultare ver +risulto risultare ver +risultò risultare ver +risuolare risuolare ver +risuolarono risuolare ver +risuona risuonare ver +risuonando risuonare ver +risuonano risuonare ver +risuonante risuonare ver +risuonanti risuonare ver +risuonar risuonare ver +risuonare risuonare ver +risuonarle risuonare ver +risuonarono risuonare ver +risuonasse risuonare ver +risuonassero risuonare ver +risuonata risuonare ver +risuonate risuonare ver +risuonati risuonare ver +risuonato risuonare ver +risuonava risuonare ver +risuonavano risuonare ver +risuonerebbe risuonare ver +risuonerà risuonare ver +risuoni risuonare ver +risuonino risuonare ver +risuonò risuonare ver +risurrezione risurrezione nom +risurrezioni risurrezione nom +risuscita risuscitare ver +risuscitando risuscitare ver +risuscitandolo risuscitare ver +risuscitano risuscitare ver +risuscitare risuscitare ver +risuscitarono risuscitare ver +risuscitasse risuscitare ver +risuscitata risuscitare ver +risuscitate risuscitare ver +risuscitati risuscitare ver +risuscitato risuscitare ver +risusciteranno risuscitare ver +risusciterà risuscitare ver +risusciterò risuscitare ver +risusciti risuscitare ver +risuscito risuscitare ver +risuscitò risuscitare ver +risvegli risvegliare ver +risveglia risvegliare ver +risvegliamo risvegliare ver +risvegliamoci risvegliare ver +risvegliando risvegliare ver +risvegliandola risvegliare ver +risvegliandoli risvegliare ver +risvegliandolo risvegliare ver +risvegliandone risvegliare ver +risvegliandosi risvegliare ver +risvegliano risvegliare ver +risvegliante risvegliare ver +risvegliarci risvegliare ver +risvegliare risvegliare ver +risvegliarla risvegliare ver +risvegliarle risvegliare ver +risvegliarli risvegliare ver +risvegliarlo risvegliare ver +risvegliarmi risvegliare ver +risvegliarne risvegliare ver +risvegliarono risvegliare ver +risvegliarsi risvegliare ver +risvegliasse risvegliare ver +risvegliassero risvegliare ver +risvegliata risvegliare ver +risvegliate risvegliare ver +risvegliatesi risvegliare ver +risvegliati risvegliare ver +risvegliato risvegliare ver +risvegliatosi risvegliare ver +risvegliava risvegliare ver +risvegliavano risvegliare ver +risveglierai risvegliare ver +risveglieranno risvegliare ver +risveglierebbe risvegliare ver +risveglierà risvegliare ver +risveglino risvegliare ver +risveglio risveglio nom +risvegliò risvegliare ver +risvolti risvolto nom +risvolto risvolto nom +ritagli ritaglio nom +ritaglia ritagliare ver +ritagliamo ritagliare ver +ritagliando ritagliare ver +ritagliandola ritagliare ver +ritagliandole ritagliare ver +ritagliandolo ritagliare ver +ritagliandosi ritagliare ver +ritagliano ritagliare ver +ritagliarci ritagliare ver +ritagliare ritagliare ver +ritagliarla ritagliare ver +ritagliarle ritagliare ver +ritagliarlo ritagliare ver +ritagliarmi ritagliare ver +ritagliarono ritagliare ver +ritagliarsi ritagliare ver +ritagliata ritagliare ver +ritagliate ritagliare ver +ritagliati ritagliare ver +ritagliato ritagliare ver +ritagliava ritagliare ver +ritaglieranno ritagliare ver +ritaglierà ritagliare ver +ritaglio ritagliare ver +ritagliò ritagliare ver +ritarda ritardare ver +ritardando ritardare ver +ritardandola ritardare ver +ritardandoli ritardare ver +ritardandolo ritardare ver +ritardandone ritardare ver +ritardano ritardare ver +ritardante ritardare ver +ritardanti ritardare ver +ritardare ritardare ver +ritardarla ritardare ver +ritardarli ritardare ver +ritardarlo ritardare ver +ritardarne ritardare ver +ritardarono ritardare ver +ritardarsi ritardare ver +ritardasse ritardare ver +ritardata ritardare ver +ritardatari ritardatario nom +ritardataria ritardatario nom +ritardatario ritardatario nom +ritardate ritardare ver +ritardati ritardare ver +ritardato ritardare ver +ritardava ritardare ver +ritardavano ritardare ver +ritarderanno ritardare ver +ritarderebbe ritardare ver +ritarderà ritardare ver +ritardi ritardo nom +ritardiamo ritardare ver +ritardo ritardo nom +ritardò ritardare ver +ritegni ritegno nom +ritegno ritegno nom +ritempra ritemprare ver +ritemprando ritemprare ver +ritemprante ritemprare ver +ritemprare ritemprare ver +ritemprarsi ritemprare ver +ritemprata ritemprare ver +ritemprati ritemprare ver +ritemprava ritemprare ver +ritempri ritemprare ver +ritenemmo ritenere ver +ritenendo ritenere ver +ritenendola ritenere ver +ritenendole ritenere ver +ritenendoli ritenere ver +ritenendolo ritenere ver +ritenendomi ritenere ver +ritenendone ritenere ver +ritenendosene ritenere ver +ritenendosi ritenere ver +ritenenti ritenere ver +ritener ritenere ver +ritenerci ritenere ver +ritenere ritenere ver +ritenerla ritenere ver +ritenerle ritenere ver +ritenerli ritenere ver +ritenerlo ritenere ver +ritenermi ritenere ver +ritenerne ritenere ver +ritenersene ritenere ver +ritenersi ritenere ver +ritenerti ritenere ver +ritenesse ritenere ver +ritenessero ritenere ver +ritenessi ritenere ver +ritenessimo ritenere ver +riteneste ritenere ver +ritenete ritenere ver +ritenetevi ritenere ver +riteneva ritenere ver +ritenevamo ritenere ver +ritenevano ritenere ver +ritenevate ritenere ver +ritenevi ritenere ver +ritenevo ritenere ver +ritenga ritenere ver +ritengano ritenere ver +ritengo ritenere ver +ritengono ritenere ver +riteniamo ritenere ver +riteniate ritenere ver +ritenne ritenere ver +ritennero ritenere ver +ritenni ritenere ver +ritenta ritentare ver +ritentando ritentare ver +ritentano ritentare ver +ritentare ritentare ver +ritentarono ritentare ver +ritentata ritentare ver +ritentato ritentare ver +ritentava ritentare ver +ritenterà ritentare ver +ritenti ritentare ver +ritentiva ritentivo adj +ritentivi ritentivo adj +ritentivo ritentivo adj +ritento ritentare ver +ritentò ritentare ver +ritenuta ritenere ver +ritenute ritenere ver +ritenuti ritenere ver +ritenuto ritenere ver +ritenzione ritenzione nom +ritenzioni ritenzione nom +riterrai ritenere ver +riterranno ritenere ver +riterrebbe ritenere ver +riterrebbero ritenere ver +riterrei ritenere ver +riterremmo ritenere ver +riterremo ritenere ver +riterreste ritenere ver +riterresti ritenere ver +riterrete ritenere ver +riterrà ritenere ver +riterrò ritenere ver +riti rito nom +ritiene ritenere ver +ritieni ritenere ver +ritienimi ritenere ver +ritieniti ritenere ver +ritinte ritingere ver +ritinti ritingere ver +ritintura ritintura nom +ritira ritirare ver +ritirabili ritirabile adj +ritirai ritirare ver +ritirammo ritirare ver +ritirando ritirare ver +ritirandogli ritirare ver +ritirandola ritirare ver +ritirandolo ritirare ver +ritirandosi ritirare ver +ritirano ritirare ver +ritirar ritirare ver +ritirarci ritirare ver +ritirare ritirare ver +ritirargli ritirare ver +ritirarla ritirare ver +ritirarle ritirare ver +ritirarli ritirare ver +ritirarlo ritirare ver +ritirarmi ritirare ver +ritirarne ritirare ver +ritirarono ritirare ver +ritirarsene ritirare ver +ritirarsi ritirare ver +ritirarti ritirare ver +ritirarvi ritirare ver +ritirasi ritirare ver +ritirasse ritirare ver +ritirassero ritirare ver +ritirassi ritirare ver +ritirata ritirata nom +ritirate ritirare ver +ritiratelo ritirare ver +ritiratesi ritirare ver +ritiratevi ritirare ver +ritirati ritirare ver +ritirato ritirare ver +ritirava ritirare ver +ritiravano ritirare ver +ritiravo ritirare ver +ritirerai ritirare ver +ritireranno ritirare ver +ritirerebbe ritirare ver +ritirerei ritirare ver +ritireremo ritirare ver +ritirerà ritirare ver +ritirerò ritirare ver +ritiri ritiro nom +ritiriamo ritirare ver +ritirino ritirare ver +ritiro ritiro nom +ritirò ritirare ver +ritma ritmare ver +ritmando ritmare ver +ritmano ritmare ver +ritmare ritmare ver +ritmarsi ritmare ver +ritmata ritmare ver +ritmate ritmare ver +ritmati ritmare ver +ritmato ritmare ver +ritmi ritmo nom +ritmica ritmico adj +ritmiche ritmico adj +ritmici ritmico adj +ritmicità ritmicità nom +ritmico ritmico adj +ritmo ritmo nom +rito rito nom +ritocca ritoccare ver +ritoccando ritoccare ver +ritoccandola ritoccare ver +ritoccandone ritoccare ver +ritoccano ritoccare ver +ritoccare ritoccare ver +ritoccarla ritoccare ver +ritoccarle ritoccare ver +ritoccarli ritoccare ver +ritoccarlo ritoccare ver +ritoccarono ritoccare ver +ritoccata ritoccare ver +ritoccate ritoccare ver +ritoccati ritoccare ver +ritoccato ritoccare ver +ritoccatore ritoccatore nom +ritoccatrice ritoccatore nom +ritoccava ritoccare ver +ritoccherei ritoccare ver +ritoccherà ritoccare ver +ritocchi ritocco nom +ritocchiamo ritoccare ver +ritocchino ritoccare ver +ritocco ritocco nom +ritoccò ritoccare ver +ritoglie ritogliere ver +ritogliere ritogliere ver +ritolgo ritogliere ver +ritolse ritogliere ver +ritolta ritogliere ver +ritolti ritogliere ver +ritolto ritogliere ver +ritorca ritorcere ver +ritorcano ritorcere ver +ritorce ritorcere ver +ritorcendo ritorcere ver +ritorcendogli ritorcere ver +ritorcendola ritorcere ver +ritorceranno ritorcere ver +ritorcere ritorcere ver +ritorcerle ritorcere ver +ritorcerli ritorcere ver +ritorcersi ritorcere ver +ritorcerà ritorcere ver +ritorcesse ritorcere ver +ritorcevano ritorcere ver +ritorcitura ritorcitura nom +ritorcono ritorcere ver +ritorna ritornare ver +ritornaci ritornare ver +ritornai ritornare ver +ritornale ritornare ver +ritornammo ritornare ver +ritornando ritornare ver +ritornandoci ritornare ver +ritornandolo ritornare ver +ritornandone ritornare ver +ritornandosene ritornare ver +ritornandovi ritornare ver +ritornano ritornare ver +ritornante ritornare ver +ritornanti ritornare ver +ritornar ritornare ver +ritornarci ritornare ver +ritornare ritornare ver +ritornarlo ritornare ver +ritornarne ritornare ver +ritornarono ritornare ver +ritornarsene ritornare ver +ritornarvi ritornare ver +ritornasse ritornare ver +ritornassero ritornare ver +ritornata ritornare ver +ritornate ritornare ver +ritornati ritornare ver +ritornato ritornare ver +ritornava ritornare ver +ritornavamo ritornare ver +ritornavano ritornare ver +ritornavo ritornare ver +ritornelli ritornello nom +ritornello ritornello nom +ritornerai ritornare ver +ritorneranno ritornare ver +ritornerebbe ritornare ver +ritornerebbero ritornare ver +ritornerei ritornare ver +ritorneremo ritornare ver +ritornerete ritornare ver +ritornerà ritornare ver +ritornerò ritornare ver +ritorni ritorno nom +ritorniamo ritornare ver +ritornino ritornare ver +ritorno ritorno nom +ritornò ritornare ver +ritorse ritorcere ver +ritorsero ritorcere ver +ritorsione ritorsione nom +ritorsioni ritorsione nom +ritorta ritorcere ver +ritorte ritorcere ver +ritorti ritorcere ver +ritorto ritorcere ver +ritrae ritrarre ver +ritraendo ritrarre ver +ritraendola ritrarre ver +ritraendole ritrarre ver +ritraendoli ritrarre ver +ritraendolo ritrarre ver +ritraendosi ritrarre ver +ritraente ritrarre ver +ritraenti ritrarre ver +ritraesse ritrarre ver +ritraessero ritrarre ver +ritraessi ritrarre ver +ritraeva ritrarre ver +ritraevano ritrarre ver +ritragga ritrarre ver +ritraggano ritrarre ver +ritraggo ritrarre ver +ritraggono ritrarre ver +ritrai ritrarre ver +ritrarla ritrarre ver +ritrarle ritrarre ver +ritrarli ritrarre ver +ritrarlo ritrarre ver +ritrarne ritrarre ver +ritrarre ritrarre ver +ritrarrebbe ritrarre ver +ritrarrebbero ritrarre ver +ritrarrà ritrarre ver +ritrarsi ritrarre ver +ritrasmessa ritrasmettere ver +ritrasmesse ritrasmettere ver +ritrasmessi ritrasmettere ver +ritrasmesso ritrasmettere ver +ritrasmetta ritrasmettere ver +ritrasmette ritrasmettere ver +ritrasmettendo ritrasmettere ver +ritrasmettere ritrasmettere ver +ritrasmetterla ritrasmettere ver +ritrasmetterle ritrasmettere ver +ritrasmetterli ritrasmettere ver +ritrasmetterlo ritrasmettere ver +ritrasmettersi ritrasmettere ver +ritrasmetterà ritrasmettere ver +ritrasmetteva ritrasmettere ver +ritrasmettevano ritrasmettere ver +ritrasmettono ritrasmettere ver +ritrasmise ritrasmettere ver +ritrasmisero ritrasmettere ver +ritrasmissione ritrasmissione nom +ritrasmissioni ritrasmissione nom +ritrasse ritrarre ver +ritrassero ritrarre ver +ritratta ritrarre ver +ritrattabile ritrattabile adj +ritrattamento ritrattamento nom +ritrattando ritrattare ver +ritrattano ritrattare ver +ritrattare ritrattare ver +ritrattarla ritrattare ver +ritrattarne ritrattare ver +ritrattarono ritrattare ver +ritrattasse ritrattare ver +ritrattata ritrattare ver +ritrattate ritrattare ver +ritrattati ritrattare ver +ritrattato ritrattare ver +ritrattava ritrattare ver +ritrattavano ritrattare ver +ritrattazione ritrattazione nom +ritrattazioni ritrattazione nom +ritratte ritrarre ver +ritratterei ritrattare ver +ritratterà ritrattare ver +ritratti ritratto nom +ritrattista ritrattista nom +ritrattisti ritrattista nom +ritrattistica ritrattistica nom +ritrattistiche ritrattistica nom +ritratto ritrarre ver +ritrattò ritrattare ver +ritrazione ritrazione nom +ritrita ritrito adj +ritrite ritrito adj +ritriti ritrito adj +ritrito ritrito adj +ritrosa ritroso adj +ritrose ritroso adj +ritrosi ritroso adj +ritrosia ritrosia nom +ritrosie ritrosia nom +ritroso ritroso nom +ritrova ritrovare ver +ritrovai ritrovare ver +ritrovamenti ritrovamento nom +ritrovamento ritrovamento nom +ritrovammo ritrovare ver +ritrovando ritrovare ver +ritrovandoci ritrovare ver +ritrovandola ritrovare ver +ritrovandoli ritrovare ver +ritrovandolo ritrovare ver +ritrovandomi ritrovare ver +ritrovandone ritrovare ver +ritrovandosi ritrovare ver +ritrovandovi ritrovare ver +ritrovano ritrovare ver +ritrovar ritrovare ver +ritrovarci ritrovare ver +ritrovare ritrovare ver +ritrovarla ritrovare ver +ritrovarle ritrovare ver +ritrovarli ritrovare ver +ritrovarlo ritrovare ver +ritrovarmelo ritrovare ver +ritrovarmi ritrovare ver +ritrovarne ritrovare ver +ritrovarono ritrovare ver +ritrovarsela ritrovare ver +ritrovarsele ritrovare ver +ritrovarselo ritrovare ver +ritrovarsi ritrovare ver +ritrovarti ritrovare ver +ritrovarvi ritrovare ver +ritrovasi ritrovare ver +ritrovasse ritrovare ver +ritrovassero ritrovare ver +ritrovassi ritrovare ver +ritrovassimo ritrovare ver +ritrovata ritrovare ver +ritrovate ritrovare ver +ritrovatesi ritrovare ver +ritrovatevi ritrovare ver +ritrovati ritrovare ver +ritrovato ritrovare ver +ritrovatore ritrovatore nom +ritrovatori ritrovatore nom +ritrovava ritrovare ver +ritrovavamo ritrovare ver +ritrovavano ritrovare ver +ritrovavo ritrovare ver +ritroverai ritrovare ver +ritroveranno ritrovare ver +ritroverebbe ritrovare ver +ritroverebbero ritrovare ver +ritroverei ritrovare ver +ritroveremmo ritrovare ver +ritroveremo ritrovare ver +ritrovereste ritrovare ver +ritroveresti ritrovare ver +ritroverete ritrovare ver +ritroverà ritrovare ver +ritroverò ritrovare ver +ritrovi ritrovo nom +ritroviamo ritrovare ver +ritroviamoci ritrovare ver +ritroviate ritrovare ver +ritrovino ritrovare ver +ritrovo ritrovo nom +ritrovò ritrovare ver +ritta ritto adj +ritte ritto adj +ritti ritto adj +ritto ritto adj +rituale rituale adj +rituali rituale adj +ritualismi ritualismo nom +ritualismo ritualismo nom +ritualista ritualista nom +ritualisti ritualista nom +ritualistica ritualistico adj +ritualistiche ritualistico adj +ritualistici ritualistico adj +ritualistico ritualistico adj +ritualità ritualità nom +rituffa rituffare ver +rituffandosi rituffare ver +rituffano rituffare ver +rituffarsi rituffare ver +rituffò rituffare ver +ritura riturare ver +rituri riturare ver +riunendo riunire ver +riunendola riunire ver +riunendole riunire ver +riunendoli riunire ver +riunendolo riunire ver +riunendone riunire ver +riunendosi riunire ver +riunendovi riunire ver +riunente riunire ver +riuniamo riunire ver +riunificare riunificare ver +riunificazione riunificazione nom +riunificazioni riunificazione nom +riunii riunire ver +riunimmo riunire ver +riunione riunione nom +riunioni riunione nom +riuniranno riunire ver +riunirci riunire ver +riunire riunire ver +riunirebbe riunire ver +riunirebbero riunire ver +riunirei riunire ver +riuniremo riunire ver +riunirla riunire ver +riunirle riunire ver +riunirli riunire ver +riunirlo riunire ver +riunirmi riunire ver +riunirono riunire ver +riunirsi riunire ver +riunirvi riunire ver +riunirà riunire ver +riunirò riunire ver +riunisca riunire ver +riuniscano riunire ver +riunisce riunire ver +riunisci riunire ver +riunisco riunire ver +riuniscono riunire ver +riunisse riunire ver +riunissero riunire ver +riunita riunire ver +riunitasi riunire ver +riunite riunito adj +riunitesi riunire ver +riunitevi riunire ver +riuniti riunire ver +riunito riunire ver +riunitosi riunire ver +riuniva riunire ver +riunivamo riunire ver +riunivano riunire ver +riunì riunire ver +riuscendo riuscire ver +riuscendoci riuscire ver +riuscendogli riuscire ver +riuscendola riuscire ver +riuscendole riuscire ver +riuscendoli riuscire ver +riuscendolo riuscire ver +riuscendone riuscire ver +riuscendosi riuscire ver +riuscendovi riuscire ver +riusciamo riuscire ver +riusciate riuscire ver +riuscii riuscire ver +riuscimmo riuscire ver +riuscir riuscire ver +riuscirai riuscire ver +riusciranno riuscire ver +riuscirci riuscire ver +riuscire riuscire ver_sup +riuscirebbe riuscire ver +riuscirebbero riuscire ver +riuscirei riuscire ver +riusciremmo riuscire ver +riusciremo riuscire ver +riuscireste riuscire ver +riusciresti riuscire ver +riuscirete riuscire ver +riuscirla riuscire ver +riuscirlo riuscire ver +riuscirne riuscire ver +riuscirono riuscire ver +riuscirsi riuscire ver +riuscirti riuscire ver +riuscirvi riuscire ver +riuscirà riuscire ver +riuscirò riuscire ver +riuscisse riuscire ver +riuscissero riuscire ver +riuscissi riuscire ver +riuscissimo riuscire ver +riusciste riuscire ver +riuscisti riuscire ver +riuscita riuscire ver +riuscite riuscire ver +riusciti riuscire ver +riuscito riuscire ver +riusciva riuscire ver +riuscivamo riuscire ver +riuscivano riuscire ver +riuscivi riuscire ver +riuscivo riuscire ver +riuscì riuscire ver +riutilizza riutilizzare ver +riutilizzando riutilizzare ver +riutilizzandola riutilizzare ver +riutilizzandone riutilizzare ver +riutilizzano riutilizzare ver +riutilizzare riutilizzare ver +riutilizzarla riutilizzare ver +riutilizzarle riutilizzare ver +riutilizzarli riutilizzare ver +riutilizzarlo riutilizzare ver +riutilizzarne riutilizzare ver +riutilizzarono riutilizzare ver +riutilizzasse riutilizzare ver +riutilizzata riutilizzare ver +riutilizzate riutilizzare ver +riutilizzati riutilizzare ver +riutilizzato riutilizzare ver +riutilizzava riutilizzare ver +riutilizzavano riutilizzare ver +riutilizzazione riutilizzazione nom +riutilizzeranno riutilizzare ver +riutilizzerei riutilizzare ver +riutilizzerà riutilizzare ver +riutilizzi riutilizzare ver +riutilizzino riutilizzare ver +riutilizzo riutilizzare ver +riutilizzò riutilizzare ver +riva riva nom +rivaccinazione rivaccinazione nom +rivale rivale nom +rivaleggerà rivaleggiare ver +rivaleggi rivaleggiare ver +rivaleggia rivaleggiare ver +rivaleggiando rivaleggiare ver +rivaleggiano rivaleggiare ver +rivaleggianti rivaleggiare ver +rivaleggiare rivaleggiare ver +rivaleggiarono rivaleggiare ver +rivaleggiasse rivaleggiare ver +rivaleggiata rivaleggiare ver +rivaleggiati rivaleggiare ver +rivaleggiato rivaleggiare ver +rivaleggiava rivaleggiare ver +rivaleggiavano rivaleggiare ver +rivaleggiò rivaleggiare ver +rivalendosi rivalersi ver +rivalere rivalersi ver +rivalersi rivalersi ver +rivalevano rivalersi ver +rivalgo rivalersi ver +rivali rivale nom +rivalità rivalità nom +rivalorizzando rivalorizzare ver +rivalorizzare rivalorizzare ver +rivalorizzati rivalorizzare ver +rivalorizzazione rivalorizzazione nom +rivalsa rivalsa nom +rivalse rivalsa nom +rivalsero rivalersi ver +rivaluta rivalutare ver +rivalutando rivalutare ver +rivalutandone rivalutare ver +rivalutano rivalutare ver +rivalutare rivalutare ver +rivalutarla rivalutare ver +rivalutarli rivalutare ver +rivalutarlo rivalutare ver +rivalutarne rivalutare ver +rivalutarono rivalutare ver +rivalutarsi rivalutare ver +rivalutasse rivalutare ver +rivalutata rivalutare ver +rivalutate rivalutare ver +rivalutati rivalutare ver +rivalutato rivalutare ver +rivalutava rivalutare ver +rivalutavano rivalutare ver +rivalutazione rivalutazione nom +rivalutazioni rivalutazione nom +rivaluteranno rivalutare ver +rivaluteremo rivalutare ver +rivaluterà rivalutare ver +rivaluti rivalutare ver +rivalutiamo rivalutare ver +rivaluto rivalutare ver +rivalutò rivalutare ver +rivanga rivangare ver +rivangando rivangare ver +rivangano rivangare ver +rivangare rivangare ver +rivangarli rivangare ver +rivangato rivangare ver +rivangò rivangare ver +rivarrà rivalersi ver +rivarrò rivalersi ver +rive riva nom +riveda rivedere ver +rivedano rivedere ver +rivede rivedere ver +rivedemmo rivedere ver +rivedendo rivedere ver +rivedendola rivedere ver +rivedendole rivedere ver +rivedendolo rivedere ver +rivedendone rivedere ver +rivedendosi rivedere ver +rivedendoti rivedere ver +riveder rivedere ver +rivederci rivedere ver +rivedere rivedere ver +rivederla rivedere ver +rivederle rivedere ver +rivederli rivedere ver +rivederlo rivedere ver +rivedermi rivedere ver +rivederne rivedere ver +rivedersi rivedere ver +rivederti rivedere ver +rivedervi rivedere ver +rivedesse rivedere ver +rivedessero rivedere ver +rivedessi rivedere ver +rivedete rivedere ver +rivedeva rivedere ver +rivedevano rivedere ver +rivedevo rivedere ver +rivedi rivedere ver +rivediamo rivedere ver +rivediamoci rivedere ver +rivediamola rivedere ver +rivediamoli rivedere ver +rivedibile rivedibile adj +rivedibili rivedibile adj +rivediti rivedere ver +rivedo rivedere ver +rivedono rivedere ver +rivedrai rivedere ver +rivedranno rivedere ver +rivedrei rivedere ver +rivedremo rivedere ver +rivedrete rivedere ver +rivedrà rivedere ver +rivedrò rivedere ver +riveduta rivedere ver +rivedute riveduta nom +riveduti rivedere ver +riveduto rivedere ver +rivela rivelare ver +rivelando rivelare ver +rivelandoci rivelare ver +rivelandogli rivelare ver +rivelandola rivelare ver +rivelandole rivelare ver +rivelandoli rivelare ver +rivelandolo rivelare ver +rivelandone rivelare ver +rivelandosi rivelare ver +rivelano rivelare ver +rivelante rivelare ver +rivelanti rivelare ver +rivelar rivelare ver +rivelarci rivelare ver +rivelare rivelare ver +rivelargli rivelare ver +rivelargliela rivelare ver +rivelarglieli rivelare ver +rivelarglielo rivelare ver +rivelargliene rivelare ver +rivelarla rivelare ver +rivelarle rivelare ver +rivelarli rivelare ver +rivelarlo rivelare ver +rivelarmi rivelare ver +rivelarne rivelare ver +rivelarono rivelare ver +rivelarsi rivelare ver +rivelarti rivelare ver +rivelarvi rivelare ver +rivelasse rivelare ver +rivelassero rivelare ver +rivelata rivelare ver +rivelate rivelare ver +rivelategli rivelare ver +rivelatesi rivelare ver +rivelati rivelare ver +rivelato rivelare ver +rivelatore rivelatore nom +rivelatori rivelatore nom +rivelatosi rivelare ver +rivelatrice rivelatore adj +rivelatrici rivelatore adj +rivelava rivelare ver +rivelavano rivelare ver +rivelazione rivelazione nom +rivelazioni rivelazione nom +riveleranno rivelare ver +rivelerebbe rivelare ver +rivelerebbero rivelare ver +rivelerà rivelare ver +rivelerò rivelare ver +riveli rivelare ver +riveliamo rivelare ver +rivelino rivelare ver +rivelo rivelare ver +rivelò rivelare ver +rivenda rivendere ver +rivende rivendere ver +rivendendo rivendere ver +rivendendola rivendere ver +rivendendole rivendere ver +rivendendoli rivendere ver +rivendendolo rivendere ver +rivendendone rivendere ver +rivendere rivendere ver +rivendergli rivendere ver +rivenderla rivendere ver +rivenderle rivendere ver +rivenderli rivendere ver +rivenderlo rivendere ver +rivenderne rivendere ver +rivendersela rivendere ver +rivendersi rivendere ver +rivenderà rivendere ver +rivendette rivendere ver +rivendettero rivendere ver +rivendeva rivendere ver +rivendevano rivendere ver +rivendi rivendere ver +rivendica rivendicare ver +rivendicai rivendicare ver +rivendicando rivendicare ver +rivendicandole rivendicare ver +rivendicandolo rivendicare ver +rivendicandone rivendicare ver +rivendicano rivendicare ver +rivendicante rivendicare ver +rivendicanti rivendicare ver +rivendicare rivendicare ver +rivendicarla rivendicare ver +rivendicarli rivendicare ver +rivendicarlo rivendicare ver +rivendicarne rivendicare ver +rivendicarono rivendicare ver +rivendicarsi rivendicare ver +rivendicasse rivendicare ver +rivendicassero rivendicare ver +rivendicata rivendicare ver +rivendicate rivendicare ver +rivendicati rivendicare ver +rivendicativa rivendicativo adj +rivendicative rivendicativo adj +rivendicativi rivendicativo adj +rivendicativo rivendicativo adj +rivendicato rivendicare ver +rivendicatore rivendicatore nom +rivendicatori rivendicatore nom +rivendicatrice rivendicatore adj +rivendicava rivendicare ver +rivendicavano rivendicare ver +rivendicavo rivendicare ver +rivendicazione rivendicazione nom +rivendicazioni rivendicazione nom +rivendicazionismi rivendicazionismo nom +rivendicazionismo rivendicazionismo nom +rivendicheranno rivendicare ver +rivendicherà rivendicare ver +rivendichi rivendicare ver +rivendichiamo rivendicare ver +rivendichino rivendicare ver +rivendico rivendicare ver +rivendicò rivendicare ver +rivendita rivendita nom +rivendite rivendita nom +rivenditore rivenditore nom +rivenditori rivenditore nom +rivenditrice rivenditore nom +rivenditrici rivenditore nom +rivendo rivendere ver +rivendono rivendere ver +rivendugliolo rivendugliolo nom +rivenduta rivendere ver +rivendute rivendere ver +rivenduti rivendere ver +rivenduto rivendere ver +riverbera riverberare ver +riverberando riverberare ver +riverberandosi riverberare ver +riverberano riverberare ver +riverberante riverberare ver +riverberanti riverberare ver +riverberare riverberare ver +riverberarono riverberare ver +riverberarsi riverberare ver +riverberata riverberare ver +riverberate riverberare ver +riverberati riverberare ver +riverberato riverberare ver +riverberava riverberare ver +riverberavano riverberare ver +riverberazione riverberazione nom +riverberazioni riverberazione nom +riverbereranno riverberare ver +riverberi riverbero nom +riverbero riverbero nom +riverberò riverberare ver +riverendo riverire ver +riverente riverente adj +riverenti riverente adj +riverenza riverenza nom +riverenze riverenza nom +riverenziale riverenziale adj +riverir riverire ver +riverire riverire ver +riverirla riverire ver +riverirlo riverire ver +riverisce riverire ver +riverisci riverire ver +riverisco riverire ver +riveriscono riverire ver +riverita riverire ver +riverite riverire ver +riveriti riverire ver +riverito riverire ver +riveriva riverire ver +riverivano riverire ver +rivernicia riverniciare ver +riverniciando riverniciare ver +riverniciare riverniciare ver +riverniciata riverniciare ver +riverniciate riverniciare ver +riverniciati riverniciare ver +riverniciato riverniciare ver +riversa riversare ver +riversamenti riversamento nom +riversamento riversamento nom +riversammo riversare ver +riversando riversare ver +riversandola riversare ver +riversandolo riversare ver +riversandone riversare ver +riversandosi riversare ver +riversano riversare ver +riversarci riversare ver +riversare riversare ver +riversargli riversare ver +riversarla riversare ver +riversarle riversare ver +riversarli riversare ver +riversarlo riversare ver +riversarne riversare ver +riversarono riversare ver +riversarsi riversare ver +riversasse riversare ver +riversassero riversare ver +riversata riversare ver +riversate riversare ver +riversati riversare ver +riversato riversare ver +riversava riversare ver +riversavano riversare ver +riverse riverso adj +riverseranno riversare ver +riverserebbe riversare ver +riverserà riversare ver +riversi riverso adj +riversiamo riversare ver +riversino riversare ver +riverso riverso adj +riversò riversare ver +rivesta rivestire ver +rivestano rivestire ver +riveste rivestire ver +rivestendo rivestire ver +rivestendola rivestire ver +rivestendoli rivestire ver +rivestendolo rivestire ver +rivestendone rivestire ver +rivestendosi rivestire ver +rivestenti rivestire ver +rivesti rivestire ver +rivestiamo rivestire ver +rivestimenti rivestimento nom +rivestimento rivestimento nom +rivestirai rivestire ver +rivestiranno rivestire ver +rivestire rivestire ver +rivestirebbe rivestire ver +rivestirla rivestire ver +rivestirle rivestire ver +rivestirli rivestire ver +rivestirlo rivestire ver +rivestirne rivestire ver +rivestirono rivestire ver +rivestirsi rivestire ver +rivestirvi rivestire ver +rivestirà rivestire ver +rivestisse rivestire ver +rivestissero rivestire ver +rivestita rivestire ver +rivestite rivestire ver +rivestitevi rivestire ver +rivestiti rivestire ver +rivestito rivestire ver +rivestitura rivestitura nom +rivestiva rivestire ver +rivestivano rivestire ver +rivestivo rivestire ver +rivesto rivestire ver +rivestono rivestire ver +rivestì rivestire ver +rivetta rivettare ver +rivettata rivettare ver +rivettate rivettare ver +rivettati rivettare ver +rivettato rivettare ver +rivetti rivetto nom +rivetto rivetto nom +rivi rivo nom +rivide rivedere ver +rividero rivedere ver +rividi rivedere ver +riviera riviera nom +rivierasca rivierasco adj +rivierasche rivierasco adj +rivieraschi rivierasco adj +rivierasco rivierasco adj +riviere riviera nom +rivince rivincere ver +rivincendo rivincere ver +rivincere rivincere ver +rivincerlo rivincere ver +rivincerà rivincere ver +rivincita rivincita nom +rivincite rivincita nom +rivincono rivincere ver +rivinse rivincere ver +rivinsero rivincere ver +rivinta rivincere ver +rivinto rivincere ver +rivisita rivisitare ver +rivisitando rivisitare ver +rivisitandola rivisitare ver +rivisitandolo rivisitare ver +rivisitandone rivisitare ver +rivisitano rivisitare ver +rivisitare rivisitare ver +rivisitarla rivisitare ver +rivisitarle rivisitare ver +rivisitarlo rivisitare ver +rivisitarono rivisitare ver +rivisitata rivisitare ver +rivisitate rivisitare ver +rivisitati rivisitare ver +rivisitato rivisitare ver +rivisitava rivisitare ver +rivisiteranno rivisitare ver +rivisiterà rivisitare ver +rivisito rivisitare ver +rivisitò rivisitare ver +rivisse rivivere ver +rivissero rivivere ver +rivissuta rivivere ver +rivissute rivivere ver +rivissuti rivivere ver +rivissuto rivivere ver +rivista rivisto adj +rivistaiolo rivistaiolo adj +riviste rivista nom +rivisti rivedere ver +rivisto rivedere ver +rivitalizzare rivitalizzare ver +rivitalizzarli rivitalizzare ver +riviva rivivere ver +rivive rivivere ver +rivivendo rivivere ver +rivivendola rivivere ver +rivivendolo rivivere ver +riviventi rivivere ver +riviver rivivere ver +rivivere rivivere ver +riviverla rivivere ver +riviverle rivivere ver +riviverlo rivivere ver +riviverne rivivere ver +rivivesse rivivere ver +rivivessero rivivere ver +riviveva rivivere ver +rivivevano rivivere ver +rivivi rivivere ver +riviviamo rivivere ver +riviviscenza riviviscenza nom +rivivo rivivere ver +rivivono rivivere ver +rivivranno rivivere ver +rivivremo rivivere ver +rivivrà rivivere ver +rivo rivo nom +rivogliamo rivolere ver +rivoglio rivolere ver +rivogliono rivolere ver +rivolere rivolere ver +rivolerla rivolere ver +rivolerlo rivolere ver +rivolete rivolere ver +rivoleva rivolere ver +rivolevano rivolere ver +rivolga rivolgere ver +rivolgano rivolgere ver +rivolge rivolgere ver +rivolgendo rivolgere ver +rivolgendoci rivolgere ver +rivolgendogli rivolgere ver +rivolgendola rivolgere ver +rivolgendole rivolgere ver +rivolgendoli rivolgere ver +rivolgendolo rivolgere ver +rivolgendomi rivolgere ver +rivolgendosi rivolgere ver +rivolgendoti rivolgere ver +rivolgendovi rivolgere ver +rivolgente rivolgere ver +rivolger rivolgere ver +rivolgerai rivolgere ver +rivolgeranno rivolgere ver +rivolgerci rivolgere ver +rivolgere rivolgere ver +rivolgerebbe rivolgere ver +rivolgerebbero rivolgere ver +rivolgerei rivolgere ver +rivolgeremo rivolgere ver +rivolgereste rivolgere ver +rivolgeresti rivolgere ver +rivolgergli rivolgere ver +rivolgerla rivolgere ver +rivolgerle rivolgere ver +rivolgerli rivolgere ver +rivolgerlo rivolgere ver +rivolgermi rivolgere ver +rivolgersi rivolgere ver +rivolgerti rivolgere ver +rivolgervi rivolgere ver +rivolgerà rivolgere ver +rivolgerò rivolgere ver +rivolgesse rivolgere ver +rivolgessero rivolgere ver +rivolgessi rivolgere ver +rivolgete rivolgere ver +rivolgetevi rivolgere ver +rivolgeva rivolgere ver +rivolgevano rivolgere ver +rivolgevi rivolgere ver +rivolgevo rivolgere ver +rivolgi rivolgere ver +rivolgiamo rivolgere ver +rivolgimenti rivolgimento nom +rivolgimento rivolgimento nom +rivolgiti rivolgere ver +rivolgo rivolgere ver +rivolgono rivolgere ver +rivoli rivolo nom +rivolle rivolere ver +rivollero rivolere ver +rivolo rivolo nom +rivolse rivolgere ver +rivolsero rivolgere ver +rivolsi rivolgere ver +rivolta rivolta nom +rivoltagli rivoltare ver +rivoltale rivoltare ver +rivoltami rivoltare ver +rivoltammo rivoltare ver +rivoltando rivoltare ver +rivoltandoli rivoltare ver +rivoltandosi rivoltare ver +rivoltano rivoltare ver +rivoltante rivoltante adj +rivoltanti rivoltante adj +rivoltar rivoltare ver +rivoltarci rivoltare ver +rivoltare rivoltare ver +rivoltargli rivoltare ver +rivoltarla rivoltare ver +rivoltarle rivoltare ver +rivoltarli rivoltare ver +rivoltarlo rivoltare ver +rivoltarono rivoltare ver +rivoltarsi rivoltare ver +rivoltasi rivoltare ver +rivoltasse rivoltare ver +rivoltassero rivoltare ver +rivoltata rivoltare ver +rivoltate rivoltare ver +rivoltatesi rivoltare ver +rivoltati rivoltare ver +rivoltato rivoltare ver +rivoltava rivoltare ver +rivoltavano rivoltare ver +rivoltavo rivoltare ver +rivolte rivolgere ver +rivoltegli rivolgere ver +rivoltella rivoltella nom +rivoltellata rivoltellata nom +rivoltellate rivoltellata nom +rivoltelle rivoltella nom +rivolteranno rivoltare ver +rivolterebbe rivoltare ver +rivolterà rivoltare ver +rivolti rivolgere ver +rivoltino rivoltare ver +rivolto rivolgere ver +rivoltosa rivoltoso adj +rivoltose rivoltoso adj +rivoltosi rivoltoso nom +rivoltoso rivoltoso adj +rivoltò rivoltare ver +rivoluta rivolere ver +rivoluto rivolere ver +rivoluziona rivoluzionare ver +rivoluzionando rivoluzionare ver +rivoluzionandone rivoluzionare ver +rivoluzionano rivoluzionare ver +rivoluzionare rivoluzionare ver +rivoluzionari rivoluzionario adj +rivoluzionaria rivoluzionario adj +rivoluzionarie rivoluzionario adj +rivoluzionario rivoluzionario adj +rivoluzionarismo rivoluzionarismo nom +rivoluzionarla rivoluzionare ver +rivoluzionarlo rivoluzionare ver +rivoluzionarne rivoluzionare ver +rivoluzionarono rivoluzionare ver +rivoluzionasse rivoluzionare ver +rivoluzionata rivoluzionare ver +rivoluzionate rivoluzionare ver +rivoluzionati rivoluzionare ver +rivoluzionato rivoluzionare ver +rivoluzionava rivoluzionare ver +rivoluzione rivoluzione nom +rivoluzioneranno rivoluzionare ver +rivoluzionerebbe rivoluzionare ver +rivoluzionerebbero rivoluzionare ver +rivoluzionerà rivoluzionare ver +rivoluzioni rivoluzione nom +rivoluzioniamo rivoluzionare ver +rivoluzionò rivoluzionare ver +rivorrebbe rivolere ver +rivorrebbero rivolere ver +rivorrei rivolere ver +rivorrà rivolere ver +rivuole rivolere ver +rizoatona rizoatono adj +rizoatone rizoatono adj +rizoatoni rizoatono adj +rizobi rizobio nom +rizobio rizobio nom +rizoma rizoma nom +rizomatosa rizomatoso adj +rizomatose rizomatoso adj +rizomatosi rizomatoso adj +rizomatoso rizomatoso adj +rizomi rizoma nom +rizomorfe rizomorfo adj +rizomorfo rizomorfo adj +rizotonica rizotonico adj +rizotoniche rizotonico adj +rizotonici rizotonico adj +rizza rizza nom +rizzando rizzare ver +rizzano rizzare ver +rizzante rizzare ver +rizzare rizzare ver +rizzarono rizzare ver +rizzarsi rizzare ver +rizzata rizzare ver +rizzate rizzare ver +rizzati rizzare ver +rizzato rizzare ver +rizzava rizzare ver +rizzavano rizzare ver +rizze rizza nom +rizzi rizzare ver +rizzino rizzare ver +rizzo rizzare ver +rizzò rizzare ver +roaming roaming nom +roani roano nom +roano roano nom +roba roba nom +robbia robbia nom +robbie robbia nom +robe roba nom +robinia robinia nom +robinie robinia nom +robiola robiola nom +robiole robiola nom +robivecchi robivecchi nom +roboante roboante adj +roboanti roboante adj +robone robone nom +roboni robone nom +robot robot nom +robotica robotica nom +robotizzata robotizzare ver +robotizzate robotizzare ver +robotizzati robotizzare ver +robotizzato robotizzare ver +robusta robusto adj +robuste robusto adj +robustezza robustezza nom +robusti robusto adj +robusto robusto adj +roca roco adj +rocaille rocaille nom +rocambolesca rocambolesco adj +rocambolesche rocambolesco adj +rocamboleschi rocambolesco adj +rocambolesco rocambolesco adj +rocca rocca nom +roccaforte roccaforte nom +roccaforti roccaforte nom +roccatrice roccatrice nom +roccatura roccatura nom +rocce roccia nom +rocche rocca nom +roccheforti roccheforti nom +rocchetti rocchetto nom +rocchettiera rocchettiera nom +rocchetto rocchetto nom +rocchi rocchio|rocco nom +rocchio rocchio nom +roccia roccia nom +rocciatore rocciatore nom +rocciatori rocciatore nom +rocciosa roccioso adj +rocciose roccioso adj +rocciosi roccioso adj +roccioso roccioso adj +rocco rocco nom +roche roco adj +rochi roco adj +rock rock nom +roco roco adj +rococò rococò adj +roda rodare ver +rodaggio rodaggio nom +rodale rodare ver +rodando rodare ver +rodane rodare ver +rodano rodere ver +rodante rodare ver +rodar rodare ver +rodare rodare ver +rodata rodare ver +rodate rodare ver +rodati rodare ver +rodato rodare ver +rode rodere ver +rodendo rodere ver +rodendone rodere ver +rodendosi rodere ver +rodente rodere ver +rodenticidi rodenticida adj +rodeo rodeo nom +roder rodere ver +rodere rodere ver +rodergli rodere ver +rodersi rodere ver +rodeva rodere ver +rodevano rodere ver +rodi rodio nom +rodia rodiare ver +rodiane rodiare ver +rodiano rodiare ver +rodiare rodiare ver +rodigina rodigino adj +rodigine rodigino adj +rodigini rodigino adj +rodigino rodigino adj +rodimenti rodimento nom +rodimento rodimento nom +rodine rodere ver +rodino rodare|rodiare ver +rodio rodio nom +roditi rodere ver +roditore roditore adj +roditori roditori nom +roditrice roditore adj +rodo rodare|rodere ver +rododendri rododendro nom +rododendro rododendro nom +rodomonte rodomonte nom +rodomonti rodomonte nom +rodono rodere ver +roentgen roentgen nom +roga rogare ver +rogai rogare ver +rogala rogare ver +rogale rogare ver +rogando rogare ver +rogano rogare ver +rogante rogante adj +roganti rogante adj +rogar rogare ver +rogare rogare ver +rogasi rogare ver +rogata rogare ver +rogatari rogatario nom +rogate rogare ver +rogati rogare ver +rogato rogare ver +rogatoria rogatoria nom +rogatorie rogatoria nom +rogatorio rogatorio adj +rogava rogare ver +rogavi rogare ver +rogazione rogazione nom +rogazioni rogazione nom +rogge roggia nom +roggia roggia nom +roghi rogo nom +rogiti rogito nom +rogito rogito nom +rogna rogna nom +rogne rogna nom +rognone rognone nom +rognoni rognone nom +rognosa rognoso adj +rognose rognoso adj +rognosi rognoso adj +rognoso rognoso adj +rogo rogo nom +rogò rogare ver +rolini rolino nom +rolino rolino nom +rolla rollare ver +rollalo rollare ver +rollando rollare ver +rollante rollare ver +rollare rollare ver +rollarsi rollare ver +rollata rollare ver +rollate rollata nom +rollati rollare ver +rollato rollare ver +rollava rollare ver +rolli rollio nom +rollini rollino nom +rollino rollare ver +rollio rollio nom +rollo rollare ver +rollè rollè nom +rollò rollare ver +rom rom nom +romagnola romagnolo adj +romagnole romagnolo adj +romagnoli romagnolo adj +romagnolo romagnolo adj +romaico romaico adj +romana romano adj +romane romano adj +romanesca romanesco adj +romanesche romanesco adj +romaneschi romanesco adj +romanesco romanesco adj +romani romano adj +romanica romanico adj +romaniche romanico adj +romanici romanico adj +romanico romanico adj +romanismo romanismo nom +romanista romanista nom +romaniste romanista nom +romanisti romanista nom +romanistica romanistica nom +romanistiche romanistica nom +romanità romanità nom +romanizzandosi romanizzare ver +romanizzante romanizzare ver +romanizzare romanizzare ver +romanizzarli romanizzare ver +romanizzarono romanizzare ver +romanizzata romanizzare ver +romanizzate romanizzare ver +romanizzati romanizzare ver +romanizzato romanizzare ver +romanizzava romanizzare ver +romano romano adj +romantica romantico adj +romantiche romantico adj +romanticherie romanticheria nom +romantici romantico adj +romanticismi romanticismo nom +romanticismo romanticismo nom +romantico romantico adj +romanza romanzo adj +romanzando romanzare ver +romanzandola romanzare ver +romanzare romanzare ver +romanzata romanzare ver +romanzate romanzare ver +romanzati romanzare ver +romanzato romanzare ver +romanze romanzo adj +romanzesca romanzesco adj +romanzesche romanzesco adj +romanzeschi romanzesco adj +romanzesco romanzesco adj +romanzetti romanzetto nom +romanzetto romanzetto nom +romanzi romanzo nom +romanziera romanziere nom +romanziere romanziere nom +romanzieri romanziere nom +romanzo romanzo nom +romanzò romanzare ver +romba romba nom +rombai rombare ver +rombando rombare ver +rombano rombare ver +rombante rombare ver +rombanti rombare ver +rombasti rombare ver +rombe romba nom +rombi rombo nom +rombica rombico adj +rombiche rombico adj +rombici rombico adj +rombico rombico adj +rombo rombo nom +rombododecaedri rombododecaedro nom +rombododecaedro rombododecaedro nom +romboedri romboedro nom +romboedrica romboedrico adj +romboedriche romboedrico adj +romboedrici romboedrico adj +romboedrico romboedrico adj +romboedro romboedro nom +romboidale romboidale adj +romboidali romboidale adj +romboide romboide nom +romboidi romboide nom +rombò rombare ver +romea romeo adj +romee romeo adj +romei romeo adj +romena romeno adj +romene romeno adj +romeni romeno adj +romeno romeno adj +romeo romeo adj +romita romito adj +romitaggio romitaggio nom +romite romito adj +romiti romito adj +romito romito adj +romitori romitorio nom +romitorio romitorio nom +rompa rompere ver +rompano rompere ver +rompe rompere ver +rompemmo rompere ver +rompendo rompere ver +rompendogli rompere ver +rompendola rompere ver +rompendole rompere ver +rompendoli rompere ver +rompendolo rompere ver +rompendone rompere ver +rompendosi rompere ver +rompente rompere ver +romper rompere ver +romperanno rompere ver +rompercela rompere ver +romperci rompere ver +rompere rompere ver +romperebbe rompere ver +romperebbero rompere ver +romperei rompere ver +romperemo rompere ver +rompergli rompere ver +romperla rompere ver +romperle rompere ver +romperli rompere ver +romperlo rompere ver +rompermi rompere ver +romperne rompere ver +rompersela rompere ver +rompersi rompere ver +romperti rompere ver +rompervi rompere ver +romperà rompere ver +romperò rompere ver +rompesse rompere ver +rompessero rompere ver +rompessimo rompere ver +rompete rompere ver +rompeteci rompere ver +rompetemi rompere ver +rompeva rompere ver +rompevano rompere ver +rompevo rompere ver +rompi rompere ver +rompiamo rompere ver +rompicapi rompicapo nom +rompicapo rompicapo nom +rompicollo rompicollo nom +rompighiacci rompighiaccio nom +rompighiaccio rompighiaccio nom +rompigli rompere ver +rompimenti rompimento nom +rompimento rompimento nom +rompiscatole rompiscatole nom +rompiti rompere ver +rompitore rompitore nom +rompo rompere ver +rompono rompere ver +ronca ronca nom +ronche ronca nom +ronchi ronco nom +ronciglio ronciglio nom +ronco ronco nom +roncola roncola nom +roncole roncola nom +roncoli roncolo nom +roncolo roncolo nom +ronda ronda nom +ronde ronda nom +rondeau rondeau nom +rondeaux rondeaux nom +rondella rondella nom +rondelle rondella nom +rondine rondine nom +rondinella rondinella nom +rondinelle rondinella nom +rondini rondine nom +rondinini rondinino nom +rondinino rondinino nom +rondista rondista nom +rondisti rondista nom +rondone rondone nom +rondoni rondone nom +rondò rondò nom +ronfa ronfare ver +ronfando ronfare ver +ronfare ronfare ver +ronfo ronfare ver +ronza ronzare ver +ronzando ronzare ver +ronzano ronzare ver +ronzante ronzare ver +ronzanti ronzare ver +ronzare ronzare ver +ronzargli ronzare ver +ronzava ronzare ver +ronzavano ronzare ver +ronzi ronzio nom +ronzini ronzino nom +ronzino ronzino nom +ronzio ronzio nom +ronzo ronzare ver +rorida rorido adj +rorido rorido adj +rosa rosa nom +rosacea rosaceo adj +rosacee rosaceo adj +rosacei rosaceo adj +rosaceo rosaceo adj +rosai rosaio nom +rosaio rosaio nom +rosali rosale nom +rosalia rosalia nom +rosalie rosalia nom +rosari rosario nom +rosario rosario nom +rosata rosato adj +rosate rosato adj +rosati rosato adj +rosato rosato adj +rosbif rosbif nom +rose roso adj +rosea roseo adj +rosee roseo adj +rosei roseo adj +roseo roseo adj +roseola roseola nom +rosero rodere ver +roseti roseto nom +roseto roseto nom +rosetta rosetta nom +rosette rosetta nom +rosi roso adj +rosica rosicare ver +rosicando rosicare ver +rosicano rosicare ver +rosicanti rosicante nom +rosicare rosicare ver +rosicata rosicare ver +rosicate rosicare ver +rosicato rosicare ver +rosicchia rosicchiare ver +rosicchiando rosicchiare ver +rosicchiandogli rosicchiare ver +rosicchiandoli rosicchiare ver +rosicchiano rosicchiare ver +rosicchiare rosicchiare ver +rosicchiarono rosicchiare ver +rosicchiata rosicchiare ver +rosicchiate rosicchiare ver +rosicchiati rosicchiare ver +rosicchiato rosicchiare ver +rosicchio rosicchiare ver +rosichi rosicare ver +rosico rosicare ver +rosignoli rosignolo nom +rosignolo rosignolo nom +rosmarini rosmarino nom +rosmarino rosmarino nom +roso rodere ver +rosola rosolare ver +rosolacci rosolaccio nom +rosolaccio rosolaccio nom +rosolano rosolare ver +rosolare rosolare ver +rosolata rosolare ver +rosolate rosolare ver +rosolati rosolare ver +rosolato rosolare ver +rosolatura rosolatura nom +rosoli rosolio nom +rosolia rosolia nom +rosolie rosolia nom +rosolino rosolare ver +rosolio rosolio nom +rosolo rosolare ver +rosone rosone nom +rosoni rosone nom +rospi rospo nom +rospo rospo nom +rossa rosso adj +rossastra rossastro adj +rossastre rossastro adj +rossastri rossastro adj +rossastro rossastro adj +rosse rosso adj +rosseggia rosseggiare ver +rosseggiano rosseggiare ver +rosseggiante rosseggiare ver +rosseggianti rosseggiare ver +rosseggiar rosseggiare ver +rosseggiare rosseggiare ver +rossetta rossetta nom +rossetti rossetto nom +rossetto rossetto nom +rossi rosso adj +rosso rosso adj +rossola rossola nom +rossore rossore nom +rossori rossore nom +rosta rosta nom +roste rosta nom +rosticceria rosticceria nom +rosticcerie rosticceria nom +rostrata rostrato adj +rostrate rostrato adj +rostrati rostrato adj +rostrato rostrato adj +rostri rostro nom +rostro rostro nom +rosé rosé adj +rota rota nom +rotabile rotabile adj +rotabili rotabile nom +rotaci rotare ver +rotacismo rotacismo nom +rotacizzata rotacizzare ver +rotacizzate rotacizzare ver +rotaia rotaia nom +rotaie rotaia nom +rotala rotare ver +rotale rotare ver +rotali rotare ver +rotando rotare ver +rotante rotante adj +rotanti rotante adj +rotar rotare ver +rotare rotare ver +rotasi rotare ver +rotata rotare ver +rotate rotato adj +rotati rotare ver +rotativa rotativo adj +rotative rotativo adj +rotativi rotativo adj +rotativo rotativo adj +rotato rotare ver +rotatori rotatorio adj +rotatoria rotatorio adj +rotatorie rotatoria nom +rotatorio rotatorio adj +rotava rotare ver +rotazionale rotazionale adj +rotazionali rotazionale adj +rotazione rotazione nom +rotazioni rotazione nom +rote rota nom +rotea roteare ver +roteando roteare ver +roteandole roteare ver +roteandolo roteare ver +roteano roteare ver +roteante roteare ver +roteanti roteare ver +roteare roteare ver +rotearono roteare ver +roteata roteare ver +roteati roteare ver +roteato roteare ver +roteava roteare ver +roteavano roteare ver +rotella rotella nom +rotelle rotella nom +roteò roteare ver +roti rotare ver +rotino rotare ver +rotismi rotismo nom +rotismo rotismo nom +roto rotare ver +rotocalchi rotocalco nom +rotocalco rotocalco nom +rotocalcografia rotocalcografia nom +rotocalcografica rotocalcografico adj +rotola rotolare ver +rotolamenti rotolamento nom +rotolamento rotolamento nom +rotolando rotolare ver +rotolandosi rotolare ver +rotolandovi rotolare ver +rotolano rotolare ver +rotolante rotolare ver +rotolanti rotolare ver +rotolar rotolare ver +rotolare rotolare ver +rotolarmi rotolare ver +rotolarono rotolare ver +rotolarsi rotolare ver +rotolasse rotolare ver +rotolassero rotolare ver +rotolata rotolare ver +rotolate rotolare ver +rotolati rotolare ver +rotolato rotolare ver +rotolava rotolare ver +rotolavano rotolare ver +rotoleranno rotolare ver +rotolerà rotolare ver +rotoli rotolio|rotolo nom +rotolino rotolare ver +rotolio rotolio nom +rotolo rotolo nom +rotoloni rotoloni adv +rotolò rotolare ver +rotonda rotondo adj +rotonde rotondo adj +rotondeggiante rotondeggiante adj +rotondeggianti rotondeggiante adj +rotondeggiate rotondeggiare ver +rotondi rotondo adj +rotondità rotondità nom +rotondo rotondo adj +rotore rotore nom +rotori rotore nom +rotorica rotorico adj +rotoriche rotorico adj +rotorici rotorico adj +rotorico rotorico adj +rotta rotta nom +rottamazione rottamazione nom +rottamazioni rottamazione nom +rottame rottame nom +rottami rottame nom +rotte rotto adj +rotti rompere ver +rotto rompere ver +rottura rottura nom +rotture rottura nom +rotula rotula nom +rotule rotula nom +rotò rotare ver +roulette roulette nom +roulotte roulotte nom +round round nom +routine routine nom +rovente rovente adj +roventi rovente adj +rovere rovere nom +rovereti rovereto nom +rovereto rovereto nom +roveri rovere nom +rovesce rovescio adj +rovesceranno rovesciare ver +rovescerei rovesciare ver +rovesceremo rovesciare ver +rovesceresti rovesciare ver +rovescerà rovesciare ver +rovescerò rovesciare ver +rovesci rovescio nom +rovescia rovescia nom +rovesciabili rovesciabile adj +rovesciai rovesciare ver +rovesciamenti rovesciamento nom +rovesciamento rovesciamento nom +rovesciammo rovesciare ver +rovesciamo rovesciare ver +rovesciando rovesciare ver +rovesciandoci rovesciare ver +rovesciandogli rovesciare ver +rovesciandola rovesciare ver +rovesciandole rovesciare ver +rovesciandolo rovesciare ver +rovesciandone rovesciare ver +rovesciandosi rovesciare ver +rovesciano rovesciare ver +rovesciante rovesciare ver +rovesciar rovesciare ver +rovesciare rovesciare ver +rovesciarla rovesciare ver +rovesciarle rovesciare ver +rovesciarli rovesciare ver +rovesciarlo rovesciare ver +rovesciarmi rovesciare ver +rovesciarne rovesciare ver +rovesciarono rovesciare ver +rovesciarsi rovesciare ver +rovesciasse rovesciare ver +rovesciassero rovesciare ver +rovesciata rovesciare ver +rovesciate rovesciare ver +rovesciati rovesciare ver +rovesciato rovesciare ver +rovesciava rovesciare ver +rovesciavano rovesciare ver +rovescino rovesciare ver +rovescio rovescio nom +rovesciò rovesciare ver +roveti roveto nom +roveto roveto nom +rovi rovo nom +rovina rovina nom +rovinando rovinare ver +rovinandogli rovinare ver +rovinandola rovinare ver +rovinandole rovinare ver +rovinandolo rovinare ver +rovinandone rovinare ver +rovinandosi rovinare ver +rovinano rovinare ver +rovinar rovinare ver +rovinarci rovinare ver +rovinare rovinare ver +rovinargli rovinare ver +rovinarla rovinare ver +rovinarle rovinare ver +rovinarli rovinare ver +rovinarlo rovinare ver +rovinarmi rovinare ver +rovinarne rovinare ver +rovinarono rovinare ver +rovinarsela rovinare ver +rovinarsi rovinare ver +rovinarti rovinare ver +rovinasse rovinare ver +rovinassero rovinare ver +rovinata rovinare ver +rovinate rovinare ver +rovinati rovinare ver +rovinato rovinare ver +rovinava rovinare ver +rovinavano rovinare ver +rovine rovina nom +rovineranno rovinare ver +rovinerebbe rovinare ver +rovinerebbero rovinare ver +rovinerà rovinare ver +rovinerò rovinare ver +rovini rovinio nom +roviniamo rovinare ver +rovinino rovinare ver +rovino rovinare ver +rovinosa rovinoso adj +rovinose rovinoso adj +rovinosi rovinoso adj +rovinoso rovinoso adj +rovinò rovinare ver +rovista rovistare ver +rovistando rovistare ver +rovistano rovistare ver +rovistare rovistare ver +rovistarono rovistare ver +rovistata rovistare ver +rovistato rovistare ver +rovistava rovistare ver +rovistavano rovistare ver +rovisto rovistare ver +rovo rovo nom +royalty royalty nom +rozza rozzo adj +rozzamente rozzamente adv +rozze rozzo adj +rozzezza rozzezza nom +rozzezze rozzezza nom +rozzi rozzo adj +rozzo rozzo adj +ruandesi ruandese adj +ruba rubare ver +rubacchia rubacchiare ver +rubacchiando rubacchiare ver +rubacchiano rubacchiare ver +rubacchiare rubacchiare ver +rubacchiate rubacchiare ver +rubacchiato rubacchiare ver +rubacchiavano rubacchiare ver +rubacuori rubacuori adj +rubagli rubare ver +rubai rubare ver +rubamazzo rubamazzo nom +rubami rubare ver +rubammo rubare ver +rubando rubare ver +rubandogli rubare ver +rubandola rubare ver +rubandole rubare ver +rubandoli rubare ver +rubandolo rubare ver +rubandone rubare ver +rubandosi rubare ver +rubano rubare ver +rubar rubare ver +rubarci rubare ver +rubare rubare ver +rubargli rubare ver +rubargliela rubare ver +rubargliele rubare ver +rubarglieli rubare ver +rubarglielo rubare ver +rubarla rubare ver +rubarle rubare ver +rubarli rubare ver +rubarlo rubare ver +rubarmi rubare ver +rubarne rubare ver +rubarono rubare ver +rubarsi rubare ver +rubarti rubare ver +rubarvi rubare ver +rubasca rubasca nom +rubasse rubare ver +rubassero rubare ver +rubata rubare ver +rubate rubato adj +rubatemi rubare ver +rubati rubato adj +rubato rubare ver +rubava rubare ver +rubavano rubare ver +rubbi rubbio nom +rubbia rubbio nom +rubbio rubbio nom +rube ruba nom +ruberai rubare ver +ruberanno rubare ver +ruberebbe rubare ver +ruberei rubare ver +ruberemo rubare ver +ruberia ruberia nom +ruberie ruberia nom +ruberà rubare ver +ruberò rubare ver +rubi rubare ver +rubiacee rubiacee nom +rubiali rubiale nom +rubiamo rubare ver +rubiconda rubicondo adj +rubicondi rubicondo adj +rubicondo rubicondo adj +rubidi rubidio nom +rubidio rubidio nom +rubinetteria rubinetteria nom +rubinetterie rubinetteria nom +rubinetti rubinetto nom +rubinetto rubinetto nom +rubini rubino nom +rubino rubino nom +rubizzi rubizzo adj +rubizzo rubizzo adj +rubli rublo nom +rublo rublo nom +rubo rubare ver +rubrica rubrica nom +rubricare rubricare ver +rubricata rubricare ver +rubricate rubricare ver +rubricati rubricare ver +rubricato rubricare ver +rubriche rubrica nom +rubrichi rubricare ver +rubricò rubricare ver +rubò rubare ver +ruchetta ruchetta nom +rude rude adj +rudere rudere nom +ruderi rudere nom +rudezza rudezza nom +rudezze rudezza nom +rudi rude adj +rudimentale rudimentale adj +rudimentali rudimentale adj +rudimenti rudimento nom +rudimento rudimento nom +rudista rudista nom +ruffiana ruffiano nom +ruffiane ruffiano nom +ruffianeria ruffianeria nom +ruffiani ruffiano nom +ruffiano ruffiano nom +ruga ruga nom +rugbista rugbista nom +rugbiste rugbista nom +rugbisti rugbista nom +rugby rugby nom +ruggendo ruggire ver +ruggente ruggente adj +ruggenti ruggente adj +ruggine ruggine adj +ruggini ruggine nom +rugginosa rugginoso adj +rugginose rugginoso adj +rugginosi rugginoso adj +rugginoso rugginoso adj +ruggire ruggire ver +ruggisce ruggire ver +ruggisci ruggire ver +ruggiscono ruggire ver +ruggiti ruggito nom +ruggito ruggito nom +ruggiva ruggire ver +ruggì ruggire ver +rughe ruga nom +rugiada rugiada nom +rugiade rugiada nom +rugiadosa rugiadoso adj +rugiadosi rugiadoso adj +rugiadoso rugiadoso adj +ruglia rugliare ver +rugliano rugliare ver +rugosa rugoso adj +rugose rugoso adj +rugosi rugoso adj +rugosità rugosità nom +rugoso rugoso adj +rulla rullare ver +rullaggi rullaggio nom +rullaggio rullaggio nom +rullando rullare ver +rullano rullare ver +rullante rullare ver +rullanti rullare ver +rullare rullare ver +rullata rullata nom +rullate rullata nom +rullato rullare ver +rullatura rullatura nom +rullava rullare ver +rulli rullio|rullo nom +rullini rullino nom +rullino rullino nom +rullio rullio nom +rullo rullo nom +rullò rullare ver +rum rum nom +rumba rumba nom +rumbe rumba nom +rumena rumeno adj +rumene rumeno adj +rumeni rumeno adj +rumeno rumeno adj +rumina ruminare ver +ruminale ruminare ver +ruminali ruminare ver +ruminando ruminare ver +ruminante ruminante nom +ruminanti ruminante nom +ruminare ruminare ver +ruminate ruminare ver +ruminazione ruminazione nom +rumine rumine nom +rumino ruminare ver +rumore rumore nom +rumoreggia rumoreggiare ver +rumoreggiamenti rumoreggiamento nom +rumoreggiano rumoreggiare ver +rumoreggiante rumoreggiare ver +rumoreggiare rumoreggiare ver +rumoreggiarono rumoreggiare ver +rumoreggiati rumoreggiare ver +rumoreggiato rumoreggiare ver +rumoreggiava rumoreggiare ver +rumoreggiavano rumoreggiare ver +rumoreggiò rumoreggiare ver +rumori rumore|rumorio nom +rumorista rumorista nom +rumoriste rumorista nom +rumoristi rumorista nom +rumorosa rumoroso adj +rumorose rumoroso adj +rumorosi rumoroso adj +rumorosità rumorosità nom +rumoroso rumoroso adj +runa runa nom +rune runa nom +runica runico adj +runiche runico adj +runici runico adj +runico runico adj +ruoli ruolo nom +ruolini ruolino nom +ruolino ruolino nom +ruolo ruolo nom +ruota ruota nom +ruotando ruotare ver +ruotandola ruotare ver +ruotandole ruotare ver +ruotandoli ruotare ver +ruotandolo ruotare ver +ruotano ruotare ver +ruotante ruotare ver +ruotanti ruotare ver +ruotare ruotare ver +ruotargli ruotare ver +ruotarla ruotare ver +ruotarle ruotare ver +ruotarli ruotare ver +ruotarlo ruotare ver +ruotarono ruotare ver +ruotasse ruotare ver +ruotassero ruotare ver +ruotata ruotare ver +ruotate ruotare ver +ruotati ruotare ver +ruotato ruotare ver +ruotava ruotare ver +ruotavano ruotare ver +ruote ruota nom +ruoteranno ruotare ver +ruoterebbe ruotare ver +ruoterebbero ruotare ver +ruoterà ruotare ver +ruoti ruotare ver +ruotiamo ruotare ver +ruotino ruotare ver +ruoto ruotare ver +ruotò ruotare ver +rupe rupe nom +rupestre rupestre adj +rupestri rupestre adj +rupi rupe nom +rupia rupia nom +rupicola rupicolo adj +rupicole rupicolo adj +rupicoli rupicolo adj +rupicolo rupicolo adj +rupie rupia nom +ruppe rompere ver +ruppero rompere ver +ruppi rompere ver +rurale rurale adj +rurali rurale adj +ruralità ruralità nom +rush rush nom +ruspa ruspa nom +ruspante ruspante adj +ruspanti ruspante adj +ruspare ruspare ver +ruspe ruspa nom +ruspi ruspare ver +ruspo ruspare ver +russa russo adj +russando russare ver +russano russare ver +russante russare ver +russare russare ver +russata russare ver +russava russare ver +russe russo adj +russi russo adj +russificazione russificazione nom +russino russare ver +russo russo adj +rustica rustico adj +rusticana rusticano adj +rusticane rusticano adj +rusticani rusticano adj +rusticano rusticano adj +rustiche rustico adj +rustici rustico adj +rusticità rusticità nom +rustico rustico adj +ruta ruta nom +rutacee rutacee nom +rute ruta nom +ruteni rutenio nom +rutenio rutenio nom +rutherford rutherford nom +rutherfordi rutherfordio nom +rutherfordio rutherfordio nom +rutila rutilo adj +rutile rutilo adj +rutili rutilo adj +rutilo rutilo adj +rutta ruttare ver +ruttando ruttare ver +ruttar ruttare ver +ruttare ruttare ver +rutterò ruttare ver +rutti rutto nom +ruttino ruttare ver +rutto rutto nom +ruttore ruttore nom +ruttori ruttore nom +ruvida ruvido adj +ruvide ruvido adj +ruvidezza ruvidezza nom +ruvidezze ruvidezza nom +ruvidi ruvido adj +ruvidità ruvidità nom +ruvido ruvido adj +ruzza ruzzare ver +ruzzante ruzzare ver +ruzzare ruzzare ver +ruzzi ruzzo nom +ruzzo ruzzo nom +ruzzola ruzzola nom +ruzzolai ruzzolare ver +ruzzolando ruzzolare ver +ruzzolano ruzzolare ver +ruzzolare ruzzolare ver +ruzzole ruzzola nom +ruzzoli ruzzolare ver +ruzzolone ruzzolone nom +ruzzoloni ruzzolone nom +ruzzolò ruzzolare ver +réclame réclame nom +röntgen röntgen nom +s s sw +sa sapere ver_sup +sabati sabato nom +sabato sabato nom +sabauda sabaudo adj +sabaude sabaudo adj +sabaudi sabaudo adj +sabaudo sabaudo adj +sabba sabba nom +sabbati sabbati nom +sabbatica sabbatico adj +sabbatiche sabbatico adj +sabbatici sabbatico adj +sabbatico sabbatico adj +sabbi sabbiare ver +sabbia sabbia nom +sabbiare sabbiare ver +sabbiata sabbiare ver +sabbiate sabbiare ver +sabbiati sabbiare ver +sabbiato sabbiare ver +sabbiatrice sabbiatrice nom +sabbiatrici sabbiatrice nom +sabbiatura sabbiatura nom +sabbiature sabbiatura nom +sabbiavelo sabbiare ver +sabbie sabbia nom +sabbino sabbiare ver +sabbio sabbiare ver +sabbione sabbione nom +sabbioni sabbione nom +sabbiosa sabbioso adj +sabbiose sabbioso adj +sabbiosi sabbioso adj +sabbioso sabbioso adj +sabina sabina nom +sabine sabina nom +sabota sabotare ver +sabotaggi sabotaggio nom +sabotaggio sabotaggio nom +sabotando sabotare ver +sabotano sabotare ver +sabotare sabotare ver +sabotargli sabotare ver +sabotarla sabotare ver +sabotarle sabotare ver +sabotarli sabotare ver +sabotarlo sabotare ver +sabotarne sabotare ver +sabotarono sabotare ver +sabotata sabotare ver +sabotate sabotare ver +sabotati sabotare ver +sabotato sabotare ver +sabotava sabotare ver +sabotavano sabotare ver +saboteranno sabotare ver +saboterà sabotare ver +sabotino sabotare ver +sabotò sabotare ver +sacca sacca nom +saccarasi saccarasi nom +saccaride saccaride nom +saccaridi saccaride nom +saccarifera saccarifero adj +saccarifere saccarifero adj +saccariferi saccarifero adj +saccarifero saccarifero adj +saccarificazione saccarificazione nom +saccarina saccarina nom +saccaroide saccaroide nom +saccaroidi saccaroide nom +saccaromicete saccaromicete nom +saccaromiceti saccaromicete nom +saccarosio saccarosio nom +saccata saccata nom +saccate saccata nom +saccente saccente adj +saccenteria saccenteria nom +saccenti saccente adj +sacche sacca nom +saccheggi saccheggio nom +saccheggia saccheggiare ver +saccheggiammo saccheggiare ver +saccheggiando saccheggiare ver +saccheggiandola saccheggiare ver +saccheggiandole saccheggiare ver +saccheggiandoli saccheggiare ver +saccheggiandolo saccheggiare ver +saccheggiandone saccheggiare ver +saccheggiano saccheggiare ver +saccheggiare saccheggiare ver +saccheggiarla saccheggiare ver +saccheggiarle saccheggiare ver +saccheggiarli saccheggiare ver +saccheggiarlo saccheggiare ver +saccheggiarne saccheggiare ver +saccheggiarono saccheggiare ver +saccheggiasse saccheggiare ver +saccheggiassero saccheggiare ver +saccheggiata saccheggiare ver +saccheggiate saccheggiare ver +saccheggiati saccheggiare ver +saccheggiato saccheggiare ver +saccheggiatore saccheggiatore nom +saccheggiatori saccheggiatore nom +saccheggiatrici saccheggiatore nom +saccheggiava saccheggiare ver +saccheggiavano saccheggiare ver +saccheggino saccheggiare ver +saccheggio saccheggio nom +saccheggiò saccheggiare ver +sacchetti sacchetto nom +sacchetto sacchetto nom +sacchi sacco nom +sacciforme sacciforme adj +sacciformi sacciforme adj +sacco sacco nom +saccocce saccoccia nom +saccoccia saccoccia nom +saccone saccone nom +sacconi saccone nom +sacelli sacello nom +sacello sacello nom +sacerdotale sacerdotale adj +sacerdotali sacerdotale adj +sacerdote sacerdote nom +sacerdotessa sacerdote nom +sacerdotesse sacerdote nom +sacerdoti sacerdote nom +sacerdozi sacerdozio nom +sacerdozio sacerdozio nom +sacra sacro adj +sacrale sacrale adj +sacrali sacrale adj +sacralità sacralità nom +sacramenta sacramentare ver +sacramentale sacramentale adj +sacramentali sacramentale adj +sacramentare sacramentare ver +sacramentata sacramentare ver +sacramentato sacramentare ver +sacramenti sacramento nom +sacramento sacramento nom +sacrari sacrario nom +sacrario sacrario nom +sacre sacro adj +sacrestana sacrestano nom +sacrestani sacrestano nom +sacrestano sacrestano nom +sacrestia sacrestia nom +sacrestie sacrestia nom +sacri sacro adj +sacrifica sacrificare ver +sacrificala sacrificare ver +sacrificale sacrificale adj +sacrificali sacrificale adj +sacrificalo sacrificare ver +sacrificando sacrificare ver +sacrificandogli sacrificare ver +sacrificandola sacrificare ver +sacrificandole sacrificare ver +sacrificandoli sacrificare ver +sacrificandolo sacrificare ver +sacrificandone sacrificare ver +sacrificandosi sacrificare ver +sacrificano sacrificare ver +sacrificante sacrificare ver +sacrificanti sacrificare ver +sacrificar sacrificare ver +sacrificarci sacrificare ver +sacrificare sacrificare ver +sacrificargli sacrificare ver +sacrificargliela sacrificare ver +sacrificarla sacrificare ver +sacrificarle sacrificare ver +sacrificarli sacrificare ver +sacrificarlo sacrificare ver +sacrificarmi sacrificare ver +sacrificarne sacrificare ver +sacrificarono sacrificare ver +sacrificarsi sacrificare ver +sacrificarti sacrificare ver +sacrificasse sacrificare ver +sacrificassero sacrificare ver +sacrificata sacrificare ver +sacrificate sacrificare ver +sacrificati sacrificare ver +sacrificato sacrificare ver +sacrificava sacrificare ver +sacrificavano sacrificare ver +sacrificherai sacrificare ver +sacrificheranno sacrificare ver +sacrificherebbe sacrificare ver +sacrificherebbero sacrificare ver +sacrificherete sacrificare ver +sacrificherà sacrificare ver +sacrificherò sacrificare ver +sacrifichi sacrificare ver +sacrifichiamo sacrificare ver +sacrifichino sacrificare ver +sacrifici sacrificio nom +sacrificio sacrificio nom +sacrifico sacrificare ver +sacrificò sacrificare ver +sacrilega sacrilego adj +sacrileghe sacrilego adj +sacrileghi sacrilego adj +sacrilegi sacrilegio nom +sacrilegio sacrilegio nom +sacrilego sacrilego adj +sacripante sacripante nom +sacripanti sacripante nom +sacrista sacrista nom +sacristi sacrista nom +sacristia sacristia nom +sacristie sacristia nom +sacro sacro nom +sacrosanta sacrosanto adj +sacrosante sacrosanto adj +sacrosanti sacrosanto adj +sacrosanto sacrosanto adj +sadica sadico adj +sadiche sadico adj +sadici sadico adj +sadico sadico adj +sadismo sadismo nom +sadomasochismi sadomasochismo nom +sadomasochismo sadomasochismo nom +saetta saetta nom +saettando saettare ver +saettano saettare ver +saettante saettare ver +saettanti saettare ver +saettare saettare ver +saettata saettare ver +saettavano saettare ver +saette saetta nom +saetti saettare ver +saettiformi saettiforme adj +saettino saettare ver +saettone saettone nom +saettoni saettone nom +safari safari nom +safena safena nom +saffica saffico adj +saffiche saffico adj +saffici saffico adj +saffico saffico adj +saffismo saffismo nom +saga saga nom +sagace sagace adj +sagaci sagace adj +sagacia sagacia nom +sagacità sagacità nom +sagge saggio adj +saggezza saggezza nom +saggezze saggezza nom +saggi saggio nom +saggia saggio adj +saggiamente saggiamente adv +saggiamo saggiare ver +saggiando saggiare ver +saggiandolo saggiare ver +saggiano saggiare ver +saggiante saggiare ver +saggiare saggiare ver +saggiarla saggiare ver +saggiarne saggiare ver +saggiarono saggiare ver +saggiata saggiare ver +saggiate saggiare ver +saggiati saggiare ver +saggiato saggiare ver +saggiatore saggiatore nom +saggie saggio nom +saggina saggina nom +sagginale sagginare ver +sagginati sagginare ver +sagginato sagginare ver +saggine saggina nom +saggini sagginare ver +saggio saggio nom +saggista saggista nom +saggisti saggista nom +saggistica saggistico adj +saggistiche saggistico adj +saggistici saggistico adj +saggistico saggistico adj +saggiò saggiare ver +saghe saga nom +sagittale sagittale adj +sagittali sagittale adj +sagittari sagittario nom +sagittaria sagittario nom +sagittarie sagittario nom +sagittario sagittario nom +sagittata sagittato adj +sagittate sagittato adj +sagittato sagittato adj +saglia saglia nom +saglie saglia nom +sagola sagola nom +sagole sagola nom +sagoma sagoma nom +sagomando sagomare ver +sagomano sagomare ver +sagomanti sagomare ver +sagomare sagomare ver +sagomarla sagomare ver +sagomata sagomare ver +sagomate sagomare ver +sagomati sagomare ver +sagomato sagomare ver +sagomatura sagomatura nom +sagomature sagomatura nom +sagomava sagomare ver +sagomavano sagomare ver +sagome sagoma nom +sagra sagra nom +sagrati sagrato nom +sagrato sagrato nom +sagre sagra nom +sagrestana sagrestano nom +sagrestani sagrestano nom +sagrestano sagrestano nom +sagrestia sagrestia nom +sagrestie sagrestia nom +sagrì sagrì nom +sagù sagù nom +sahib sahib nom +sahrawi sahrawi npr +sai saio nom +saio saio nom +sakè sakè nom +sala sala nom +salacca salacca nom +salace salace adj +salaci salace adj +salacità salacità nom +salagione salagione nom +salai salare ver +salala salare ver +salale salare ver +salama salama nom +salamandra salamandra nom +salamandre salamandra nom +salamanna salamanna nom +salame salama|salame nom +salamelecchi salamelecco nom +salamelecco salamelecco nom +salami salame nom +salamoia salamoia nom +salamoie salamoia nom +salando salare ver +salane salare ver +salangana salangana nom +salangane salangana nom +salano salare ver +salante salare ver +salanti salare ver +salar salare ver +salare salare ver +salari salario nom +salaria salariare ver +salariale salariale adj +salariali salariale adj +salariare salariare ver +salariata salariato adj +salariate salariato adj +salariati salariato nom +salariato salariato adj +salario salario nom +salasi salare ver +salassa salassare ver +salassata salassare ver +salassate salassare ver +salassato salassare ver +salassava salassare ver +salasse salare ver +salassi salasso nom +salasso salasso nom +salata salato adj +salate salato adj +salati salato adj +salatini salatino nom +salatino salatino nom +salato salato adj +salatura salatura nom +salava salare ver +salavano salare ver +salcicce salciccia nom +salciccia salciccia nom +salda saldo adj +saldali saldare ver +saldamente saldamente adv +saldando saldare ver +saldandole saldare ver +saldandoli saldare ver +saldandone saldare ver +saldandosi saldare ver +saldandovi saldare ver +saldano saldare ver +saldante saldare ver +saldanti saldare ver +saldare saldare ver +saldarla saldare ver +saldarli saldare ver +saldarlo saldare ver +saldarne saldare ver +saldarono saldare ver +saldarsi saldare ver +saldasse saldare ver +saldassero saldare ver +saldata saldare ver +saldate saldare ver +saldati saldare ver +saldato saldare ver +saldatore saldatore nom +saldatori saldatore nom +saldatrice saldatore|saldatrice nom +saldatrici saldatore|saldatrice nom +saldatura saldatura nom +saldature saldatura nom +saldava saldare ver +saldavano saldare ver +salde saldo adj +salderanno saldare ver +salderà saldare ver +saldezza saldezza nom +saldi saldo adj +saldino saldare ver +saldo saldo nom +saldò saldare ver +sale sala|sale nom +salendo salire ver +salendoci salire ver +salendogli salire ver +salendola salire ver +salendovi salire ver +salente salire ver +salenti salire ver +salesiana salesiano adj +salesiane salesiano adj +salesiani salesiano adj +salesiano salesiano adj +salga salire ver +salgano salire ver +salgemma salgemma nom +salgo salire ver +salgono salire ver +sali sale nom +saliamo salare|salire ver +salica salico adj +salicacee salicacee nom +salice salice nom +saliceti saliceto nom +saliceto saliceto nom +saliche salico adj +salici salico adj +salicilati salicilato nom +salicilato salicilato nom +salicilica salicilico adj +salicilico salicilico adj +salicina salicina nom +salico salico adj +saliente saliente adj +salienti saliente adj +salienza salienza nom +salienze salienza nom +saliera saliera nom +saliere saliera nom +salifera salifero adj +saliferi salifero adj +salifero salifero adj +salificata salificare ver +salificato salificare ver +saligna saligno adj +salii salire ver +salila salire ver +salimi salire ver +salimmo salire ver +salina salino adj +salinai salinaio nom +salinaio salinaio nom +salinar salinare ver +saline salino adj +salini salino adj +salinità salinità nom +salino salino adj +salir salire ver +salirai salire ver +saliranno salire ver +salirci salire ver +salire salire ver +salirebbe salire ver +salirebbero salire ver +salirei salire ver +saliremo salire ver +salirete salire ver +salirgli salire ver +salirla salire ver +salirle salire ver +salirli salire ver +salirne salire ver +salirono salire ver +salirvi salire ver +salirà salire ver +salirò salire ver +saliscendi saliscendi nom +salisse salire ver +salissero salire ver +salissimo salire ver +saliste salire ver +salita salita nom +salite salita nom +saliti salire ver +salito salire ver +saliva saliva nom +salivali salivare ver +salivamo salire ver +salivano salire ver +salivante salivare ver +salivar salivare ver +salivare salivare adj +salivari salivare adj +salivavano salivare ver +salivazione salivazione nom +salive saliva nom +salivo salire ver +salma salma nom +salmastra salmastro adj +salmastre salmastro adj +salmastri salmastro adj +salmastro salmastro adj +salme salma nom +salmeggia salmeggiare ver +salmeggiando salmeggiare ver +salmeggiavano salmeggiare ver +salmeria salmeria nom +salmerie salmeria nom +salmi salmo nom +salmista salmista nom +salmisti salmista nom +salmistrata salmistrato adj +salmo salmo nom +salmodia salmodia nom +salmodiando salmodiare ver +salmodiante salmodiare ver +salmodianti salmodiare ver +salmodiare salmodiare ver +salmodiata salmodiare ver +salmodiate salmodiare ver +salmodiati salmodiare ver +salmodiato salmodiare ver +salmodie salmodia nom +salmone salmone nom +salmonella salmonella nom +salmonelle salmonella nom +salmonellosi salmonellosi nom +salmoni salmone nom +salmì salmì nom +salnitro salnitro nom +salo salare ver +salone salone nom +saloni salone nom +saloon saloon nom +salopette salopette nom +salotti salotto nom +salottiera salottiero adj +salottiere salottiero adj +salottieri salottiero adj +salottiero salottiero adj +salotto salotto nom +salpa salpa nom +salpando salpare ver +salpano salpare ver +salpare salpare ver +salparla salpare ver +salparono salpare ver +salpasse salpare ver +salpata salpare ver +salpate salpare ver +salpati salpare ver +salpato salpare ver +salpava salpare ver +salpavano salpare ver +salpe salpa nom +salperanno salpare ver +salperà salpare ver +salpi salpare ver +salpinge salpinge nom +salpingi salpinge nom +salpingite salpingite nom +salpingiti salpingite nom +salpino salpare ver +salpo salpare ver +salpò salpare ver +salsa salso adj +salsamenteria salsamenteria nom +salsapariglia salsapariglia nom +salse salsa nom +salsedine salsedine nom +salsi salso adj +salsicce salsiccia nom +salsiccia salsiccia nom +salsicciaio salsicciaio nom +salsicciotti salsicciotto nom +salsicciotto salsicciotto nom +salsiera salsiera nom +salsiere salsiera nom +salso salso adj +salsoiodica salsoiodico adj +salsoiodiche salsoiodico adj +salta saltare ver +saltabeccando saltabeccare ver +saltabeccare saltabeccare ver +saltaci saltare ver +saltai saltare ver +saltamartini saltamartino nom +saltami saltare ver +saltando saltare ver +saltandoci saltare ver +saltandogli saltare ver +saltandola saltare ver +saltandole saltare ver +saltandoli saltare ver +saltandone saltare ver +saltano saltare ver +saltante saltare ver +saltanti saltare ver +saltar saltare ver +saltarci saltare ver +saltare saltare ver +saltarelli saltarello nom +saltarello saltarello nom +saltargli saltare ver +saltarla saltare ver +saltarle saltare ver +saltarli saltare ver +saltarlo saltare ver +saltarmi saltare ver +saltarne saltare ver +saltarono saltare ver +saltarsi saltare ver +saltarvi saltare ver +saltasse saltare ver +saltassero saltare ver +saltata saltare ver +saltate saltare ver +saltateci saltare ver +saltati saltare ver +saltato saltare ver +saltatore saltatore adj +saltatori saltatore adj +saltatrice saltatore adj +saltatrici saltatore adj +saltava saltare ver +saltavano saltare ver +saltavo saltare ver +saltella saltellare ver +saltellando saltellare ver +saltellandogli saltellare ver +saltellano saltellare ver +saltellante saltellare ver +saltellanti saltellare ver +saltellare saltellare ver +saltellato saltellare ver +saltellava saltellare ver +saltellavano saltellare ver +saltellerà saltellare ver +saltelli saltello nom +saltello saltello nom +salteranno saltare ver +salterebbe saltare ver +salterebbero saltare ver +salterellare salterellare ver +salterelli salterello nom +salterello salterello nom +salteremo saltare ver +salterete saltare ver +salteri salterio nom +salterio salterio nom +salterà saltare ver +salterò saltare ver +salti salto nom +saltiamo saltare ver +saltimbanchi saltimbanco nom +saltimbanco saltimbanco nom +saltimbocca saltimbocca nom +saltino saltare ver +salto salto nom +saltuari saltuario nom +saltuaria saltuario nom +saltuariamente saltuariamente adv +saltuarie saltuario nom +saltuarietà saltuarietà nom +saltuario saltuario nom +saltò saltare ver +salubre salubre adj +salubri salubre adj +salubrità salubrità nom +salumai salumaio nom +salumaio salumaio nom +salume salume nom +salumeria salumeria nom +salumerie salumeria nom +salumi salume nom +salumiera salumiere nom +salumiere salumiere nom +salumieri salumiere nom +salumifici salumificio nom +salumificio salumificio nom +saluta salutare ver +salutaci salutare ver +salutai salutare ver +salutala salutare ver +salutamelo salutare ver +salutami salutare ver +salutando salutare ver +salutandola salutare ver +salutandoli salutare ver +salutandolo salutare ver +salutandosi salutare ver +salutandoti salutare ver +salutandovi salutare ver +salutano salutare ver +salutar salutare ver +salutarci salutare ver +salutare salutare adj +salutargli salutare ver +salutari salutare adj +salutarla salutare ver +salutarle salutare ver +salutarli salutare ver +salutarlo salutare ver +salutarmi salutare ver +salutarne salutare ver +salutarono salutare ver +salutarsi salutare ver +salutarti salutare ver +salutarvi salutare ver +salutasse salutare ver +salutata salutare ver +salutate salutare ver +salutatelo salutare ver +salutatemi salutare ver +salutatevi salutare ver +salutati salutare ver +salutato salutare ver +salutava salutare ver +salutavano salutare ver +salutazione salutazione nom +salute salute nom +saluteranno salutare ver +saluterei salutare ver +saluteremo salutare ver +saluterà salutare ver +saluterò salutare ver +saluti saluto nom +salutiamo salutare ver +salutifera salutifero adj +salutifere salutifero adj +salutiferi salutifero adj +salutifero salutifero adj +salutino salutare ver +salutista salutista nom +salutiste salutista nom +salutisti salutista nom +saluto saluto nom +salutò salutare ver +salva salvo adj +salvabile salvabile adj +salvabili salvabile adj +salvaci salvare ver +salvacondotti salvacondotto nom +salvacondotto salvacondotto nom +salvadanai salvadanaio nom +salvadanaio salvadanaio nom +salvadoregna salvadoregno adj +salvadoregne salvadoregno adj +salvadoregni salvadoregno adj +salvadoregno salvadoregno adj +salvagente salvagente nom +salvagenti salvagente nom +salvagli salvare ver +salvaguarda salvaguardare ver +salvaguardando salvaguardare ver +salvaguardandola salvaguardare ver +salvaguardandole salvaguardare ver +salvaguardandoli salvaguardare ver +salvaguardandone salvaguardare ver +salvaguardano salvaguardare ver +salvaguardarci salvaguardare ver +salvaguardare salvaguardare ver +salvaguardarla salvaguardare ver +salvaguardarle salvaguardare ver +salvaguardarli salvaguardare ver +salvaguardarlo salvaguardare ver +salvaguardarne salvaguardare ver +salvaguardarono salvaguardare ver +salvaguardarsi salvaguardare ver +salvaguardasse salvaguardare ver +salvaguardassero salvaguardare ver +salvaguardata salvaguardare ver +salvaguardate salvaguardare ver +salvaguardati salvaguardare ver +salvaguardato salvaguardare ver +salvaguardava salvaguardare ver +salvaguardavano salvaguardare ver +salvaguarderebbe salvaguardare ver +salvaguarderà salvaguardare ver +salvaguardi salvaguardare ver +salvaguardia salvaguardia nom +salvaguardiamo salvaguardare ver +salvaguardie salvaguardia nom +salvaguardino salvaguardare ver +salvaguardò salvaguardare ver +salvai salvare ver +salvala salvare ver +salvale salvare ver +salvali salvare ver +salvalo salvare ver +salvamenti salvamento nom +salvamento salvamento nom +salvami salvare ver +salvammo salvare ver +salvamotore salvamotore nom +salvamotori salvamotore nom +salvando salvare ver +salvandogli salvare ver +salvandola salvare ver +salvandole salvare ver +salvandoli salvare ver +salvandolo salvare ver +salvandone salvare ver +salvandosi salvare ver +salvano salvare ver +salvanti salvare ver +salvar salvare ver +salvarci salvare ver +salvare salvare ver +salvargli salvare ver +salvargliela salvare ver +salvarla salvare ver +salvarle salvare ver +salvarli salvare ver +salvarlo salvare ver +salvarmi salvare ver +salvarne salvare ver +salvarono salvare ver +salvarsela salvare ver +salvarselo salvare ver +salvarsi salvare ver +salvarti salvare ver +salvarvele salvare ver +salvarvi salvare ver +salvasse salvare ver +salvassero salvare ver +salvassi salvare ver +salvaste salvare ver +salvasti salvare ver +salvata salvare ver +salvataggi salvataggio nom +salvataggio salvataggio nom +salvate salvare ver +salvateci salvare ver +salvatela salvare ver +salvateli salvare ver +salvatelo salvare ver +salvatemi salvare ver +salvatesi salvare ver +salvatevi salvare ver +salvati salvare ver +salvato salvare ver +salvatore salvatore nom +salvatori salvatore nom +salvatrice salvatore nom +salvatrici salvatore nom +salvava salvare ver +salvavano salvare ver +salvavi salvare ver +salvavita salvavita adj +salvavo salvare ver +salvazione salvazione nom +salve salvo adj +salverai salvare ver +salveranno salvare ver +salverebbe salvare ver +salverebbero salvare ver +salveregina salveregina nom +salverei salvare ver +salveremo salvare ver +salveresti salvare ver +salverete salvare ver +salverà salvare ver +salverò salvare ver +salvezza salvezza nom +salvezze salvezza nom +salvi salvo adj +salvia salvia nom +salviamo salvare ver +salviamoci salvare ver +salviamola salvare ver +salviamole salvare ver +salviamoli salvare ver +salviamolo salvare ver +salviate salvare ver +salvie salvia nom +salvietta salvietta nom +salviette salvietta nom +salvifica salvifico adj +salvifiche salvifico adj +salvifici salvifico adj +salvifico salvifico adj +salvino salvare ver +salvo salvo con +salvò salvare ver +salì salire ver +salò salare ver +samara samara nom +samari samario nom +samario samario nom +samaritana samaritano nom +samaritane samaritano adj +samaritani samaritano nom +samaritano samaritano adj +samba samba nom +sambuca sambuca nom +sambuche sambuca nom +sambuchi sambuco nom +sambuco sambuco nom +sammarinese sammarinese adj +sammarinesi sammarinese adj +samovar samovar nom +sampan sampan nom +sampang sampang nom +sampietrini sampietrino nom +sampietrino sampietrino nom +sampietro sampietro nom +samurai samurai nom +sana sano adj +sanabile sanabile adj +sanabili sanabile adj +sanai sanare ver +sanami sanare ver +sanando sanare ver +sanante sanare ver +sanar sanare ver +sanare sanare ver +sanarla sanare ver +sanarle sanare ver +sanarli sanare ver +sanarlo sanare ver +sanarmi sanare ver +sanarne sanare ver +sanarono sanare ver +sanarsi sanare ver +sanasi sanare ver +sanata sanare ver +sanate sanare ver +sanati sanare ver +sanato sanare ver +sanatori sanatorio nom +sanatoria sanatoria nom +sanatoriale sanatoriale adj +sanatoriali sanatoriale adj +sanatorie sanatoria nom +sanatorio sanatorio nom +sanava sanare ver +sanavo sanare ver +sancendo sancire ver +sancendone sancire ver +sancii sancire ver +sanciranno sancire ver +sancire sancire ver +sancirebbe sancire ver +sancirebbero sancire ver +sancirlo sancire ver +sancirne sancire ver +sancirono sancire ver +sancirsi sancire ver +sancirà sancire ver +sancisca sancire ver +sanciscano sancire ver +sancisce sancire ver +sanciscono sancire ver +sancisse sancire ver +sancissero sancire ver +sancita sancire ver +sancite sancire ver +sanciti sancire ver +sancito sancire ver +sanciva sancire ver +sancivano sancire ver +sanctus sanctus nom +sanculotta sanculotto nom +sanculotte sanculotto nom +sanculotti sanculotto nom +sanculotto sanculotto nom +sancì sancire ver +sandali sandalo nom +sandalo sandalo nom +sandinista sandinista nom +sandiniste sandinista nom +sandinisti sandinista nom +sandolini sandolino nom +sandolino sandolino nom +sandracca sandracca nom +sandwich sandwich adj +sane sano adj +sanerebbe sanare ver +sanfedismo sanfedismo nom +sanfedista sanfedista nom +sanfediste sanfedista nom +sanfedisti sanfedista nom +sanforizzato sanforizzare ver +sanforizzazione sanforizzazione nom +sangalli sangallo nom +sangallo sangallo nom +sangiovese sangiovese nom +sangria sangria nom +sangue sangue nom +sanguemisto sanguemisto nom +sanguetta sanguetta nom +sanguiferi sanguifero adj +sanguifero sanguifero adj +sanguigna sanguigno adj +sanguigne sanguigno adj +sanguigni sanguigno adj +sanguigno sanguigno adj +sanguina sanguinare ver +sanguinacci sanguinaccio nom +sanguinaccio sanguinaccio nom +sanguinando sanguinare ver +sanguinano sanguinare ver +sanguinante sanguinante adj +sanguinanti sanguinante adj +sanguinar sanguinare ver +sanguinare sanguinare ver +sanguinargli sanguinare ver +sanguinari sanguinario adj +sanguinaria sanguinario adj +sanguinarie sanguinario adj +sanguinario sanguinario adj +sanguinarono sanguinare ver +sanguinato sanguinare ver +sanguinava sanguinare ver +sanguinavano sanguinare ver +sanguine sanguine nom +sanguinella sanguinella nom +sanguineranno sanguinare ver +sanguini sanguine nom +sanguino sanguinare ver +sanguinolenta sanguinolento adj +sanguinolente sanguinolento adj +sanguinolenti sanguinolento adj +sanguinolento sanguinolento adj +sanguinosa sanguinoso adj +sanguinose sanguinoso adj +sanguinosi sanguinoso adj +sanguinoso sanguinoso adj +sanguinò sanguinare ver +sanguisuga sanguisuga nom +sanguisughe sanguisuga nom +sani sano adj +sanino sanare ver +sanitari sanitario adj +sanitaria sanitario adj +sanitarie sanitario adj +sanitario sanitario adj +sanità sanità nom +sannita sannita adj +sannite sannita adj +sanniti sannita nom +sannitica sannitico adj +sannitiche sannitico adj +sannitici sannitico adj +sannitico sannitico adj +sanno sapere ver_sup +sano sano adj +sanrocchini sanrocchino nom +sanrocchino sanrocchino nom +sansa sansa nom +sanscrita sanscrito adj +sanscrite sanscrito adj +sanscriti sanscrito adj +sanscritista sanscritista nom +sanscritisti sanscritista nom +sanscrito sanscrito adj +sanse sansa nom +sansevieria sansevieria nom +sant sant sw +santa santo adj +santabarbara santabarbara nom +santarellina santarellina nom +sante santo adj +santerelli santerello nom +santi santo adj +santifica santificare ver +santificando santificare ver +santificandolo santificare ver +santificandosi santificare ver +santificano santificare ver +santificante santificante adj +santificare santificare ver +santificarla santificare ver +santificarlo santificare ver +santificarsi santificare ver +santificata santificare ver +santificate santificare ver +santificati santificare ver +santificato santificare ver +santificava santificare ver +santificazione santificazione nom +santificazioni santificazione nom +santifichi santificare ver +santifico santificare ver +santificò santificare ver +santini santino nom +santino santino nom +santissima santissimo adj +santissime santissimo adj +santissimi santissimo adj +santissimo santissimo adj +santità santità nom +santo santo adj_sup +santocchi santocchio nom +santona santone nom +santone santone nom +santoni santone nom +santonina santonina nom +santoreggia santoreggia nom +santuari santuario nom +santuario santuario nom +sanza sanza pre +sanziona sanzionare ver +sanzionando sanzionare ver +sanzionandola sanzionare ver +sanzionandolo sanzionare ver +sanzionano sanzionare ver +sanzionante sanzionare ver +sanzionare sanzionare ver +sanzionarla sanzionare ver +sanzionarli sanzionare ver +sanzionarlo sanzionare ver +sanzionarmi sanzionare ver +sanzionarne sanzionare ver +sanzionarono sanzionare ver +sanzionarti sanzionare ver +sanzionasse sanzionare ver +sanzionassimo sanzionare ver +sanzionata sanzionare ver +sanzionate sanzionare ver +sanzionati sanzionare ver +sanzionato sanzionare ver +sanzionatori sanzionatorio adj +sanzionatorie sanzionatorio adj +sanzionatorio sanzionatorio adj +sanzionava sanzionare ver +sanzione sanzione nom +sanzionerei sanzionare ver +sanzionerà sanzionare ver +sanzioni sanzione nom +sanzioniamo sanzionare ver +sanzionino sanzionare ver +sanziono sanzionare ver +sanzionò sanzionare ver +sanò sanare ver +sapemmo sapere ver +sapendo sapere ver +sapendola sapere ver +sapendole sapere ver +sapendoli sapere ver +sapendolo sapere ver +sapendone sapere ver +sapendosi sapere ver +sapendoti sapere ver +saper sapere ver_sup +saperci sapere ver +sapere sapere ver +sapergli sapere ver +saperla sapere ver +saperle sapere ver +saperli sapere ver +saperlo sapere ver +sapermi sapere ver +saperne sapere ver +sapersela sapere ver +sapersele sapere ver +sapersene sapere ver +sapersi sapere ver +saperti sapere ver +sapervi sapere ver +sapesse sapere ver +sapessero sapere ver +sapessi sapere ver +sapessimo sapere ver +sapeste sapere ver +sapesti sapere ver +sapete sapere ver_sup +sapeva sapere ver_sup +sapevamo sapere ver +sapevano sapere ver_sup +sapevate sapere ver +sapevi sapere ver +sapevo sapere ver +sapida sapido adj +sapide sapido adj +sapidi sapido adj +sapidità sapidità nom +sapido sapido adj +sapiente sapiente adj +sapientemente sapientemente adv +sapienti sapiente adj_sup +sapientona sapientone nom +sapientone sapientone nom +sapientoni sapientone nom +sapienza sapienza nom +sapienze sapienza nom +saponacea saponaceo adj +saponai saponaio nom +saponaio saponaio nom +saponari saponario adj +saponaria saponario adj +saponario saponario adj +saponata saponata nom +saponate saponata nom +sapone sapone nom +saponeria saponeria nom +saponerie saponeria nom +saponetta saponetta nom +saponette saponetta nom +saponi sapone nom +saponiera saponiero adj +saponiere saponiera|saponiere nom +saponieri saponiero adj +saponificaci saponificare ver +saponificano saponificare ver +saponificare saponificare ver +saponificata saponificare ver +saponificati saponificare ver +saponificatrice saponificatore nom +saponificazione saponificazione nom +saponina saponina nom +saponine saponina nom +saponosa saponoso adj +saponose saponoso adj +saponoso saponoso adj +sapore sapore nom +sapori sapore nom +saporire saporire ver +saporita saporire ver +saporitamente saporitamente adv +saporite saporito adj +saporiti saporire ver +saporito saporire ver +saporosa saporoso adj +saporose saporoso adj +saporosi saporoso adj +saporoso saporoso adj +sappi sapere ver +sappia sapere ver_sup +sappiamo sapere ver_sup +sappiamole sapere ver +sappiano sapere ver_sup +sappiate sapere ver +sappiatelo sapere ver +sappiatemi sapere ver +sappici sapere ver +sappilo sapere ver +sappimi sapere ver +sapra sapra sw +saprai sapere ver +sapranno sapere ver +saprebbe sapere ver_sup +saprebbero sapere ver +saprei sapere ver +sapremmo sapere ver +sapremo sapere ver_sup +sapreste sapere ver +sapresti sapere ver +saprete sapere ver +saprofita saprofito adj +saprofite saprofito adj +saprofiti saprofito adj +saprofitismo saprofitismo nom +saprofito saprofito adj +sapropel sapropel nom +saprà sapere ver_sup +saprò sapere ver +saputa sapere ver +sapute sapere ver +saputella saputello adj +saputelli saputello adj +saputello saputello adj +saputi sapere ver +saputo sapere ver_sup +sara sara sw +sarabanda sarabanda nom +sarabande sarabanda nom +saracca saracca nom +saracchi saracco nom +saracco saracco nom +saracena saraceno adj +saracene saraceno adj +saraceni saraceno nom +saraceno saraceno adj +saracina saracino adj +saracinesca saracinesca nom +saracinesche saracinesca nom +saracini saracino adj +saracino saracino adj +sarago sarago nom +sarai essere ver +saranno essere ver_sup +sarcasmi sarcasmo nom +sarcasmo sarcasmo nom +sarcastica sarcastico adj +sarcastiche sarcastico adj +sarcastici sarcastico adj +sarcastico sarcastico adj +sarchi sarchio nom +sarchiare sarchiare ver +sarchiata sarchiare ver +sarchiate sarchiare ver +sarchiato sarchiare ver +sarchiatrice sarchiatore|sarchiatrice nom +sarchiatrici sarchiatore|sarchiatrice nom +sarchiatura sarchiatura nom +sarchiature sarchiatura nom +sarchielli sarchiello nom +sarcofaghi sarcofago nom +sarcofagi sarcofago nom +sarcofago sarcofago nom +sarcoma sarcoma nom +sarcomatosi sarcomatosi nom +sarcomi sarcoma nom +sarcoplasma sarcoplasma nom +sarda sardo adj +sarde sardo adj +sardella sardella nom +sardelle sardella nom +sardi sardo adj +sardigna sardigna nom +sardina sardina nom +sardine sardina nom +sardismi sardismo nom +sardismo sardismo nom +sardista sardista adj +sardiste sardista adj +sardisti sardista nom +sardo sardo adj +sardonia sardonia nom +sardonica sardonico adj +sardoniche sardonico adj +sardonici sardonico adj +sardonico sardonico adj +sarebbe essere ver_sup +sarebbero essere ver_sup +sarei essere ver +saremmo essere ver_sup +saremo essere ver_sup +sareste essere ver +saresti essere ver +sarete essere ver +sargassi sargasso nom +sargasso sargasso nom +sari sari nom +sarissa sarissa nom +sarmenti sarmento nom +sarmento sarmento nom +sarmentosa sarmentoso adj +sarmentose sarmentoso adj +sarmentoso sarmentoso adj +sarong sarong nom +sarta sarta|sarto nom +sarte sarta|sarto nom +sarti sarto nom +sartia sartia nom +sartiame sartiame nom +sartiano sartiare ver +sartie sartia nom +sartino sartiare ver +sarto sarto nom +sartori sartorio nom +sartoria sartoria nom +sartoriale sartoriale adj +sartoriali sartoriale adj +sartorie sartoria nom +sartorio sartorio nom +sarà essere ver_sup +sarò essere ver +sassafrasso sassafrasso nom +sassaia sassaia nom +sassaie sassaia nom +sassaiola sassaiola nom +sassaiole sassaiola nom +sassata sassata nom +sassate sassata nom +sassella sassella nom +sasselli sassello nom +sassello sassello nom +sasseto sasseto nom +sassi sasso nom +sassifraga sassifraga nom +sassifragacee sassifragacee nom +sassifraghe sassifraga nom +sasso sasso nom +sassofoni sassofono nom +sassofonista sassofonista nom +sassofonisti sassofonista nom +sassofono sassofono nom +sassofrasso sassofrasso nom +sassola sassola nom +sassone sassone adj +sassoni sassone nom +sassosa sassoso adj +sassose sassoso adj +sassosi sassoso adj +sassoso sassoso adj +satana satana nom +satanassi satanasso nom +satanasso satanasso nom +satanica satanico adj +sataniche satanico adj +satanici satanico adj +satanico satanico adj +satanismi satanismo nom +satanismo satanismo nom +satellitare satellitare adj +satellitari satellitare adj +satellite satellite adj +satelliti satellite nom +satin satin nom +satina satinare ver +satinata satinare ver +satinate satinare ver +satinati satinare ver +satinato satinare ver +satinatura satinatura nom +satinature satinatura nom +satira satira nom +satire satira nom +satireggia satireggiare ver +satireggiando satireggiare ver +satireggiante satireggiare ver +satireggiare satireggiare ver +satireggiasse satireggiare ver +satireggiata satireggiare ver +satireggiate satireggiare ver +satireggiati satireggiare ver +satireggiato satireggiare ver +satireggiava satireggiare ver +satireggiò satireggiare ver +satiresca satiresco adj +satireschi satiresco adj +satiresco satiresco adj +satiri satiro nom +satiriasi satiriasi nom +satirica satirico adj +satiriche satirico adj +satirici satirico adj +satirico satirico adj +satirione satirione nom +satiro satiro nom +sativa sativo adj +sative sativo adj +sativi sativo adj +sativo sativo adj +satolli satollo adj +satollo satollo adj +satrapi satrapo nom +satrapia satrapia nom +satrapie satrapia nom +satrapo satrapo nom +satura saturo adj +saturabile saturabile adj +saturaci saturare ver +saturando saturare ver +saturandola saturare ver +saturandolo saturare ver +saturandone saturare ver +saturandosi saturare ver +saturano saturare ver +saturante saturare ver +saturare saturare ver +saturarlo saturare ver +saturarne saturare ver +saturarono saturare ver +saturarsi saturare ver +saturasi saturare ver +saturata saturare ver +saturate saturare ver +saturati saturare ver +saturato saturare ver +saturava saturare ver +saturavano saturare ver +saturazione saturazione nom +saturazioni saturazione nom +sature saturo adj +satureia satureia nom +saturerà saturare ver +saturi saturo adj +saturnali saturnali nom +saturni saturnio adj +saturnia saturnio adj +saturnie saturnio adj +saturnio saturnio nom +saturnismo saturnismo nom +saturno saturno nom +saturo saturo adj +saturò saturare ver +saudita saudita adj +saudite saudita adj +sauditi saudita adj +sauna sauna nom +saune sauna nom +saura sauro adj +saure sauro adj +sauri sauro adj +sauro sauro adj +savana savana nom +savane savana nom +savarin savarin nom +savi savio adj +savia savio adj +savie savio adj +saviezza saviezza nom +savio savio adj +savoiarda savoiardo adj +savoiarde savoiardo adj +savoiardi savoiardo nom +savoiardo savoiardo adj +savonarola savonarola nom +savonarole savonarola nom +sax sax nom +saxofoni saxofono nom +saxofonista saxofonista nom +saxofonisti saxofonista nom +saxofono saxofono nom +sazi sazio adj +sazia sazio adj +saziami saziare ver +saziano saziare ver +saziante saziare ver +saziare saziare ver +saziarlo saziare ver +saziarmene saziare ver +saziarmi saziare ver +saziarono saziare ver +saziarsi saziare ver +saziata saziare ver +saziate saziare ver +saziati saziare ver +saziato saziare ver +saziava saziare ver +saziavo saziare ver +sazie sazio adj +sazierà saziare ver +sazierò saziare ver +sazietà sazietà nom +sazio sazio adj +saziò saziare ver +sbaciucchiano sbaciucchiare ver +sbaciucchiarla sbaciucchiare ver +sbaciucchiato sbaciucchiare ver +sbadata sbadato adj +sbadataggine sbadataggine nom +sbadataggini sbadataggine nom +sbadati sbadato adj +sbadato sbadato adj +sbadigli sbadiglio nom +sbadiglia sbadigliare ver +sbadigliando sbadigliare ver +sbadigliano sbadigliare ver +sbadigliare sbadigliare ver +sbadigliato sbadigliare ver +sbadiglio sbadiglio nom +sbafare sbafare ver +sbafo sbafo nom +sbagli sbaglio nom +sbaglia sbagliare ver +sbagliai sbagliare ver +sbagliammo sbagliare ver +sbagliamo sbagliare ver +sbagliando sbagliare ver +sbagliandola sbagliare ver +sbagliandolo sbagliare ver +sbagliandomi sbagliare ver +sbagliandone sbagliare ver +sbagliandosi sbagliare ver +sbagliano sbagliare ver +sbagliarci sbagliare ver +sbagliare sbagliare ver +sbagliarmi sbagliare ver +sbagliarne sbagliare ver +sbagliarono sbagliare ver +sbagliarsi sbagliare ver +sbagliarti sbagliare ver +sbagliarvi sbagliare ver +sbagliasse sbagliare ver +sbagliassero sbagliare ver +sbagliassi sbagliare ver +sbagliassimo sbagliare ver +sbagliata sbagliare ver +sbagliate sbagliato adj +sbagliati sbagliato adj +sbagliato sbagliare ver +sbagliava sbagliare ver +sbagliavamo sbagliare ver +sbagliavano sbagliare ver +sbagliavi sbagliare ver +sbagliavo sbagliare ver +sbaglierai sbagliare ver +sbaglieranno sbagliare ver +sbaglierebbe sbagliare ver +sbaglierei sbagliare ver +sbaglieremmo sbagliare ver +sbaglieremo sbagliare ver +sbaglieresti sbagliare ver +sbaglierà sbagliare ver +sbaglierò sbagliare ver +sbaglino sbagliare ver +sbaglio sbaglio nom +sbagliò sbagliare ver +sbalestrati sbalestrare ver +sbalestrato sbalestrare ver +sballa sballare ver +sballando sballare ver +sballano sballare ver +sballare sballare ver +sballarsi sballare ver +sballarti sballare ver +sballata sballare ver +sballate sballato adj +sballati sballato nom +sballato sballare ver +sballava sballare ver +sballavano sballare ver +sballerebbe sballare ver +sballi sballo nom +sballino sballare ver +sballo sballo nom +sballotta sballottare ver +sballottamenti sballottamento nom +sballottare sballottare ver +sballottata sballottare ver +sballottati sballottare ver +sballottato sballottare ver +sbalordendo sbalordire ver +sbalordimento sbalordimento nom +sbalordire sbalordire ver +sbalordirono sbalordire ver +sbalordirà sbalordire ver +sbalordisce sbalordire ver +sbalordisco sbalordire ver +sbalordiscono sbalordire ver +sbalordita sbalordire ver +sbalordite sbalordire ver +sbalorditi sbalordire ver +sbalorditiva sbalorditivo adj +sbalorditive sbalorditivo adj +sbalorditivi sbalorditivo adj +sbalorditivo sbalorditivo adj +sbalordito sbalordire ver +sbalordì sbalordire ver +sbalza sbalzare ver +sbalzando sbalzare ver +sbalzano sbalzare ver +sbalzare sbalzare ver +sbalzarlo sbalzare ver +sbalzata sbalzare ver +sbalzate sbalzare ver +sbalzati sbalzare ver +sbalzato sbalzare ver +sbalzi sbalzo nom +sbalzo sbalzo nom +sbalzò sbalzare ver +sbanca sbancare ver +sbancando sbancare ver +sbancano sbancare ver +sbancare sbancare ver +sbancarono sbancare ver +sbancata sbancare ver +sbancate sbancare ver +sbancato sbancare ver +sbancò sbancare ver +sbanda sbandare ver +sbandamenti sbandamento nom +sbandamento sbandamento nom +sbandando sbandare ver +sbandano sbandare ver +sbandante sbandare ver +sbandare sbandare ver +sbandarono sbandare ver +sbandarsi sbandare ver +sbandata sbandata|sbandato nom +sbandate sbandata|sbandato nom +sbandati sbandato nom +sbandato sbandare ver +sbandava sbandare ver +sbandavano sbandare ver +sbanderà sbandare ver +sbandi sbando nom +sbandiamo sbandare|sbandire ver +sbandiera sbandierare ver +sbandierando sbandierare ver +sbandierandolo sbandierare ver +sbandierano sbandierare ver +sbandieranti sbandierare ver +sbandierare sbandierare ver +sbandierarlo sbandierare ver +sbandierarono sbandierare ver +sbandierata sbandierare ver +sbandierate sbandierare ver +sbandierati sbandierare ver +sbandierato sbandierare ver +sbandierava sbandierare ver +sbandieravano sbandierare ver +sbandieri sbandierare ver +sbandiero sbandierare ver +sbandierò sbandierare ver +sbandire sbandire ver +sbandita sbandire ver +sbanditi sbandire ver +sbando sbando nom +sbandò sbandare ver +sbaraccare sbaraccare ver +sbaragli sbaraglio nom +sbaraglia sbaragliare ver +sbaragliando sbaragliare ver +sbaragliandoli sbaragliare ver +sbaragliandolo sbaragliare ver +sbaragliano sbaragliare ver +sbaragliare sbaragliare ver +sbaragliarli sbaragliare ver +sbaragliarlo sbaragliare ver +sbaragliarono sbaragliare ver +sbaragliata sbaragliare ver +sbaragliate sbaragliare ver +sbaragliati sbaragliare ver +sbaragliato sbaragliare ver +sbaragliava sbaragliare ver +sbaraglieranno sbaragliare ver +sbaraglierà sbaragliare ver +sbaraglio sbaraglio nom +sbaragliò sbaragliare ver +sbarazza sbarazzare ver +sbarazzando sbarazzare ver +sbarazzandosi sbarazzare ver +sbarazzano sbarazzare ver +sbarazzarcene sbarazzare ver +sbarazzarci sbarazzare ver +sbarazzare sbarazzare ver +sbarazzarlo sbarazzare ver +sbarazzarmi sbarazzare ver +sbarazzarono sbarazzare ver +sbarazzarsene sbarazzare ver +sbarazzarsi sbarazzare ver +sbarazzarvi sbarazzare ver +sbarazzasi sbarazzare ver +sbarazzasse sbarazzare ver +sbarazzata sbarazzare ver +sbarazzate sbarazzare ver +sbarazzati sbarazzare ver +sbarazzato sbarazzare ver +sbarazzava sbarazzare ver +sbarazzeranno sbarazzare ver +sbarazzerebbe sbarazzare ver +sbarazzeremo sbarazzare ver +sbarazzerà sbarazzare ver +sbarazzi sbarazzare ver +sbarazziamo sbarazzare ver +sbarazziamoci sbarazzare ver +sbarazzina sbarazzino adj +sbarazzine sbarazzino adj +sbarazzino sbarazzino adj +sbarazzo sbarazzare ver +sbarazzò sbarazzare ver +sbarba sbarbare ver +sbarbano sbarbare ver +sbarbare sbarbare ver +sbarbate sbarbare ver +sbarbatelli sbarbatello nom +sbarbatello sbarbatello nom +sbarbati sbarbare ver +sbarbato sbarbare ver +sbarbava sbarbare ver +sbarbi sbarbare ver +sbarbine sbarbino nom +sbarbo sbarbare ver +sbarca sbarcare ver +sbarcando sbarcare ver +sbarcandoli sbarcare ver +sbarcandovi sbarcare ver +sbarcano sbarcare ver +sbarcanti sbarcare ver +sbarcare sbarcare ver +sbarcarle sbarcare ver +sbarcarli sbarcare ver +sbarcarlo sbarcare ver +sbarcarono sbarcare ver +sbarcarvi sbarcare ver +sbarcasse sbarcare ver +sbarcassero sbarcare ver +sbarcata sbarcare ver +sbarcate sbarcare ver +sbarcati sbarcare ver +sbarcato sbarcare ver +sbarcava sbarcare ver +sbarcavano sbarcare ver +sbarcheranno sbarcare ver +sbarcheremo sbarcare ver +sbarcherà sbarcare ver +sbarchi sbarco nom +sbarchino sbarcare ver +sbarco sbarco nom +sbarcò sbarcare ver +sbarra sbarra nom +sbarragli sbarrare ver +sbarramenti sbarramento nom +sbarramento sbarramento nom +sbarrando sbarrare ver +sbarrandogli sbarrare ver +sbarrandolo sbarrare ver +sbarrandone sbarrare ver +sbarrano sbarrare ver +sbarrar sbarrare ver +sbarrare sbarrare ver +sbarrargli sbarrare ver +sbarrarla sbarrare ver +sbarrarle sbarrare ver +sbarrarne sbarrare ver +sbarrarono sbarrare ver +sbarrata sbarrare ver +sbarrate sbarrare ver +sbarrati sbarrato adj +sbarrato sbarrare ver +sbarrava sbarrare ver +sbarravano sbarrare ver +sbarre sbarra nom +sbarrerà sbarrare ver +sbarretta sbarretta nom +sbarrette sbarretta nom +sbarri sbarrare ver +sbarrino sbarrare ver +sbarro sbarrare ver +sbarrò sbarrare ver +sbassa sbassare ver +sbassato sbassare ver +sbatacchia sbatacchiare ver +sbatacchino sbatacchiare ver +sbatta sbattere ver +sbattano sbattere ver +sbatte sbattere ver +sbattendo sbattere ver +sbattendoci sbattere ver +sbattendogli sbattere ver +sbattendola sbattere ver +sbattendole sbattere ver +sbattendoli sbattere ver +sbattendolo sbattere ver +sbattendosene sbattere ver +sbattendosi sbattere ver +sbattendoti sbattere ver +sbatter sbattere ver +sbatteranno sbattere ver +sbattercela sbattere ver +sbattercene sbattere ver +sbatterci sbattere ver +sbattere sbattere ver +sbatterei sbattere ver +sbattergli sbattere ver +sbatterla sbattere ver +sbatterle sbattere ver +sbatterli sbattere ver +sbatterlo sbattere ver +sbattermi sbattere ver +sbatterono sbattere ver +sbattersene sbattere ver +sbattersi sbattere ver +sbatterti sbattere ver +sbattervi sbattere ver +sbatterà sbattere ver +sbatterò sbattere ver +sbattessero sbattere ver +sbattessi sbattere ver +sbattete sbattere ver +sbatteva sbattere ver +sbattevano sbattere ver +sbattezzare sbattezzare ver +sbattezzarsi sbattezzare ver +sbattezzati sbattezzare ver +sbattezzato sbattezzare ver +sbattezzi sbattezzare ver +sbattezziamoci sbattezzare ver +sbattezzo sbattezzare ver +sbatti sbattere ver +sbattiamo sbattere ver +sbattiamoci sbattere ver +sbattimenti sbattimento nom +sbattimento sbattimento nom +sbattitore sbattitore nom +sbattiuova sbattiuova nom +sbatto sbattere ver +sbattono sbattere ver +sbattuta sbattere ver +sbattute sbattere ver +sbattuti sbattere ver +sbattuto sbattere ver +sbava sbavare ver +sbavando sbavare ver +sbavano sbavare ver +sbavare sbavare ver +sbavato sbavare ver +sbavatura sbavatura nom +sbavature sbavatura nom +sbavavano sbavare ver +sbavo sbavare ver +sbeccati sbeccare ver +sbeccato sbeccare ver +sbellica sbellicarsi ver +sbellicare sbellicarsi ver +sbellicarsi sbellicarsi ver +sbendata sbendare ver +sbendato sbendare ver +sbertuccia sbertucciare ver +sbertucciato sbertucciare ver +sbertuccio sbertucciare ver +sbevazzata sbevazzare ver +sbevazzato sbevazzare ver +sbiadendo sbiadire ver +sbiadendosi sbiadire ver +sbiadire sbiadire ver +sbiadirono sbiadire ver +sbiadirsi sbiadire ver +sbiadirà sbiadire ver +sbiadisca sbiadire ver +sbiadisce sbiadire ver +sbiadiscono sbiadire ver +sbiadita sbiadire ver +sbiadite sbiadito adj +sbiaditi sbiadire ver +sbiadito sbiadire ver +sbiadì sbiadire ver +sbianca sbianca nom +sbiancando sbiancare ver +sbiancano sbiancare ver +sbiancante sbiancare ver +sbiancanti sbiancare ver +sbiancare sbiancare ver +sbiancarla sbiancare ver +sbiancata sbiancare ver +sbiancate sbiancare ver +sbiancati sbiancare ver +sbiancato sbiancare ver +sbieca sbieco adj +sbiechi sbieco adj +sbieco sbieco nom +sbigottimento sbigottimento nom +sbigottir sbigottire ver +sbigottire sbigottire ver +sbigottirà sbigottire ver +sbigottisce sbigottire ver +sbigottita sbigottire ver +sbigottite sbigottire ver +sbigottiti sbigottire ver +sbigottito sbigottire ver +sbigottì sbigottire ver +sbilancerebbe sbilanciare ver +sbilancerei sbilanciare ver +sbilanci sbilancio nom +sbilancia sbilanciare ver +sbilanciamo sbilanciare ver +sbilanciamoci sbilanciare ver +sbilanciando sbilanciare ver +sbilanciandola sbilanciare ver +sbilanciandolo sbilanciare ver +sbilanciandosi sbilanciare ver +sbilanciano sbilanciare ver +sbilanciante sbilanciare ver +sbilanciarci sbilanciare ver +sbilanciare sbilanciare ver +sbilanciarla sbilanciare ver +sbilanciarli sbilanciare ver +sbilanciarlo sbilanciare ver +sbilanciarmi sbilanciare ver +sbilanciarono sbilanciare ver +sbilanciarsi sbilanciare ver +sbilanciasse sbilanciare ver +sbilanciata sbilanciare ver +sbilanciate sbilanciare ver +sbilanciati sbilanciare ver +sbilanciato sbilanciare ver +sbilanciava sbilanciare ver +sbilanciavano sbilanciare ver +sbilancio sbilanciare ver +sbilanciò sbilanciare ver +sbilenca sbilenco adj +sbilenche sbilenco adj +sbilenchi sbilenco adj +sbilenco sbilenco adj +sbirci sbirciare ver +sbircia sbirciare ver +sbirciando sbirciare ver +sbirciano sbirciare ver +sbirciare sbirciare ver +sbirciarlo sbirciare ver +sbirciata sbirciata nom +sbirciate sbirciare ver +sbirciato sbirciare ver +sbirciava sbirciare ver +sbirciavano sbirciare ver +sbircio sbirciare ver +sbirciò sbirciare ver +sbirraglia sbirraglia nom +sbirresco sbirresco adj +sbirri sbirro nom +sbirro sbirro nom +sbizzarrirci sbizzarrire ver +sbizzarrire sbizzarrire ver +sbizzarrirono sbizzarrire ver +sbizzarrirsi sbizzarrire ver +sbizzarrirti sbizzarrire ver +sbizzarrirvi sbizzarrire ver +sbizzarrisca sbizzarrire ver +sbizzarrisce sbizzarrire ver +sbizzarriscono sbizzarrire ver +sbizzarrita sbizzarrire ver +sbizzarritevi sbizzarrire ver +sbizzarriti sbizzarrire ver +sbizzarrito sbizzarrire ver +sblocca sbloccare ver +sbloccalo sbloccare ver +sbloccamento sbloccamento nom +sbloccando sbloccare ver +sbloccandole sbloccare ver +sbloccandolo sbloccare ver +sbloccano sbloccare ver +sbloccante sbloccare ver +sbloccare sbloccare ver +sbloccargli sbloccare ver +sbloccarla sbloccare ver +sbloccarle sbloccare ver +sbloccarli sbloccare ver +sbloccarlo sbloccare ver +sbloccarmi sbloccare ver +sbloccarne sbloccare ver +sbloccarono sbloccare ver +sbloccarsi sbloccare ver +sbloccartela sbloccare ver +sbloccarti sbloccare ver +sbloccasse sbloccare ver +sbloccata sbloccare ver +sbloccate sbloccare ver +sbloccatela sbloccare ver +sbloccateli sbloccare ver +sbloccatelo sbloccare ver +sbloccatemi sbloccare ver +sbloccati sbloccare ver +sbloccato sbloccare ver +sbloccava sbloccare ver +sbloccavano sbloccare ver +sbloccherai sbloccare ver +sbloccheranno sbloccare ver +sbloccherei sbloccare ver +sbloccheremo sbloccare ver +sbloccherete sbloccare ver +sbloccherà sbloccare ver +sbloccherò sbloccare ver +sblocchi sblocco nom +sblocchiamo sbloccare ver +sblocchiamolo sbloccare ver +sblocchino sbloccare ver +sblocco sblocco nom +sbloccò sbloccare ver +sbobba sbobba nom +sbocca sboccare ver +sboccando sboccare ver +sboccano sboccare ver +sboccante sboccare ver +sboccanti sboccare ver +sboccare sboccare ver +sboccarlo sboccare ver +sboccarono sboccare ver +sboccata sboccare ver +sboccate sboccato adj +sboccati sboccato adj +sboccato sboccare ver +sboccatura sboccatura nom +sboccava sboccare ver +sboccavano sboccare ver +sboccerà sbocciare ver +sboccherà sboccare ver +sbocchi sbocco nom +sbocci sboccio nom +sboccia sbocciare ver +sbocciando sbocciare ver +sbocciano sbocciare ver +sbocciante sbocciare ver +sbocciar sbocciare ver +sbocciare sbocciare ver +sbocciarono sbocciare ver +sbocciasse sbocciare ver +sbocciata sbocciare ver +sbocciate sbocciare ver +sbocciati sbocciare ver +sbocciato sbocciare ver +sbocciava sbocciare ver +sbocciavano sbocciare ver +sboccino sbocciare ver +sboccio sboccio nom +sbocciò sbocciare ver +sbocco sbocco nom +sbocconcella sbocconcellare ver +sbocconcellata sbocconcellare ver +sbocconcellato sbocconcellare ver +sboccò sboccare ver +sbollentare sbollentare ver +sbollentata sbollentare ver +sbollentate sbollentare ver +sbollentati sbollentare ver +sbollire sbollire ver +sbollirà sbollire ver +sbollisca sbollire ver +sbollisse sbollire ver +sbollita sbollire ver +sbollite sbollire ver +sbollito sbollire ver +sbologna sbolognare ver +sbolognare sbolognare ver +sbolognarti sbolognare ver +sbolognato sbolognare ver +sbornia sbornia nom +sbornie sbornia nom +sborsa sborsare ver +sborsando sborsare ver +sborsano sborsare ver +sborsare sborsare ver +sborsarono sborsare ver +sborsasse sborsare ver +sborsata sborsare ver +sborsate sborsare ver +sborsati sborsare ver +sborsato sborsare ver +sborso sborso nom +sborsò sborsare ver +sbotta sbottare ver +sbottai sbottare ver +sbottando sbottare ver +sbottare sbottare ver +sbottato sbottare ver +sbottava sbottare ver +sbotti sbotto nom +sbotto sbotto nom +sbottona sbottonare ver +sbottonare sbottonare ver +sbottonarsi sbottonare ver +sbottonata sbottonare ver +sbottonate sbottonare ver +sbottonati sbottonare ver +sbottonato sbottonare ver +sbottò sbottare ver +sbozza sbozzare ver +sbozzare sbozzare ver +sbozzarla sbozzare ver +sbozzarle sbozzare ver +sbozzarli sbozzare ver +sbozzata sbozzare ver +sbozzate sbozzare ver +sbozzati sbozzare ver +sbozzato sbozzare ver +sbozzatore sbozzatore nom +sbozzavano sbozzare ver +sbozziamo sbozzare ver +sbozzo sbozzo nom +sbozzò sbozzare ver +sbraca sbracare ver +sbracata sbracato adj +sbracate sbracato adj +sbracato sbracato adj +sbraccia sbracciarsi ver +sbracciano sbracciarsi ver +sbracciare sbracciarsi ver +sbracciata sbracciato adj +sbracciate sbracciato adj +sbracciato sbracciarsi ver +sbraccio sbraccio nom +sbraita sbraitare ver +sbraitando sbraitare ver +sbraitano sbraitare ver +sbraitante sbraitare ver +sbraitare sbraitare ver +sbraitato sbraitare ver +sbraitava sbraitare ver +sbraitavano sbraitare ver +sbraiti sbraitare ver +sbraito sbraitare ver +sbramato sbramare ver +sbramini sbramino nom +sbrana sbranare ver +sbranamento sbranamento nom +sbranando sbranare ver +sbranandolo sbranare ver +sbranano sbranare ver +sbranarci sbranare ver +sbranare sbranare ver +sbranarlo sbranare ver +sbranarono sbranare ver +sbranarsi sbranare ver +sbranarvi sbranare ver +sbranassero sbranare ver +sbranata sbranare ver +sbranate sbranare ver +sbranati sbranare ver +sbranato sbranare ver +sbranava sbranare ver +sbrancato sbrancare ver +sbraneranno sbranare ver +sbranino sbranare ver +sbranò sbranare ver +sbratta sbrattare ver +sbrecciate sbrecciare ver +sbrecciati sbrecciare ver +sbrecciato sbrecciare ver +sbrego sbrego nom +sbriciola sbriciolare ver +sbriciolamento sbriciolamento nom +sbriciolando sbriciolare ver +sbriciolandola sbriciolare ver +sbriciolandolo sbriciolare ver +sbriciolandosi sbriciolare ver +sbriciolano sbriciolare ver +sbriciolare sbriciolare ver +sbriciolarlo sbriciolare ver +sbriciolarono sbriciolare ver +sbriciolarsi sbriciolare ver +sbriciolata sbriciolare ver +sbriciolate sbriciolare ver +sbriciolati sbriciolare ver +sbriciolato sbriciolare ver +sbricioleranno sbriciolare ver +sbricioli sbriciolare ver +sbriciolò sbriciolare ver +sbriga sbrigare ver +sbrigando sbrigare ver +sbrigano sbrigare ver +sbrigarci sbrigare ver +sbrigare sbrigare ver +sbrigarla sbrigare ver +sbrigarmela sbrigare ver +sbrigarmi sbrigare ver +sbrigarsela sbrigare ver +sbrigarsi sbrigare ver +sbrigartela sbrigare ver +sbrigasse sbrigare ver +sbrigata sbrigare ver +sbrigate sbrigare ver +sbrigatevi sbrigare ver +sbrigati sbrigare ver +sbrigativa sbrigativo adj +sbrigative sbrigativo adj +sbrigativi sbrigativo adj +sbrigativo sbrigativo adj +sbrigato sbrigare ver +sbrigava sbrigare ver +sbrigavano sbrigare ver +sbrigherei sbrigare ver +sbrighi sbrigare ver +sbrighiamo sbrigare ver +sbrighiamoci sbrigare ver +sbrighino sbrigare ver +sbriglia sbrigliare ver +sbrigliare sbrigliare ver +sbrigliata sbrigliato adj +sbrigliati sbrigliato adj +sbrigliato sbrigliato adj +sbrigo sbrigare ver +sbrigò sbrigare ver +sbrinamento sbrinamento nom +sbrinante sbrinare ver +sbrinare sbrinare ver +sbrinatore sbrinatore nom +sbrindellata sbrindellato adj +sbrindellati sbrindellato adj +sbrindellato sbrindellare ver +sbrinz sbrinz nom +sbrodola sbrodolare ver +sbrodolamenti sbrodolamento nom +sbrodolamento sbrodolamento nom +sbrodolano sbrodolare ver +sbrodolare sbrodolare ver +sbrodolata sbrodolare ver +sbrodolato sbrodolare ver +sbrodolone sbrodolone nom +sbroglia sbrogliare ver +sbrogliando sbrogliare ver +sbrogliano sbrogliare ver +sbrogliare sbrogliare ver +sbrogliarsela sbrogliare ver +sbrogliata sbrogliare ver +sbrogliate sbrogliare ver +sbrogliato sbrogliare ver +sbroglierà sbrogliare ver +sbroglio sbrogliare ver +sbronza sbronza nom +sbronzano sbronzarsi ver +sbronzarsi sbronzarsi ver +sbronzata sbronzarsi ver +sbronze sbronza nom +sbronzi sbronzo adj +sbronzo sbronzo adj +sbruffo sbruffo nom +sbruffona sbruffone nom +sbruffone sbruffone nom +sbruffoni sbruffone nom +sbuca sbucare ver +sbucando sbucare ver +sbucano sbucare ver +sbucare sbucare ver +sbucarono sbucare ver +sbucasse sbucare ver +sbucata sbucare ver +sbucate sbucare ver +sbucati sbucare ver +sbucato sbucare ver +sbucava sbucare ver +sbucavano sbucare ver +sbucci sbucciare ver +sbuccia sbucciare ver +sbucciami sbucciare ver +sbucciando sbucciare ver +sbucciapatate sbucciapatate nom +sbucciare sbucciare ver +sbucciarlo sbucciare ver +sbucciata sbucciare ver +sbucciate sbucciare ver +sbucciati sbucciare ver +sbucciato sbucciare ver +sbucciatore sbucciatore nom +sbucciatura sbucciatura nom +sbucciava sbucciare ver +sbucheranno sbucare ver +sbucherà sbucare ver +sbuchi sbucare ver +sbucò sbucare ver +sbudella sbudellare ver +sbudellare sbudellare ver +sbudellati sbudellare ver +sbudellato sbudellare ver +sbudello sbudellare ver +sbuffa sbuffare ver +sbuffando sbuffare ver +sbuffano sbuffare ver +sbuffante sbuffante adj +sbuffanti sbuffante adj +sbuffare sbuffare ver +sbuffate sbuffare ver +sbuffato sbuffare ver +sbuffava sbuffare ver +sbuffi sbuffo nom +sbuffino sbuffare ver +sbuffo sbuffo nom +sbugiarda sbugiardare ver +sbugiardano sbugiardare ver +sbugiardare sbugiardare ver +sbugiardata sbugiardare ver +sbugiardate sbugiardare ver +sbugiardati sbugiardare ver +sbugiardato sbugiardare ver +sbugiardò sbugiardare ver +scabbia scabbia nom +scabbiosa scabbioso adj +scabbiosi scabbioso adj +scabini scabino nom +scabino scabino nom +scabra scabro adj +scabre scabro adj +scabrezza scabrezza nom +scabri scabro adj +scabro scabro adj +scabrosa scabroso adj +scabrose scabroso adj +scabrosi scabroso adj +scabrosità scabrosità nom +scabroso scabroso adj +scacceranno scacciare ver +scaccerà scacciare ver +scaccerò scacciare ver +scacchi scacco nom +scacchia scacchiare ver +scacchiatura scacchiatura nom +scacchiera scacchiera nom +scacchiere scacchiera|scacchiere nom +scacchieri scacchiere nom +scacchio scacchiare ver +scacchista scacchista nom +scacchiste scacchista nom +scacchisti scacchista nom +scacchistica scacchistico adj +scacchistiche scacchistico adj +scacchistici scacchistico adj +scacchistico scacchistico adj +scacci scacciare ver +scaccia scacciare ver +scacciacani scacciacani nom +scacciamo scacciare ver +scacciando scacciare ver +scacciandola scacciare ver +scacciandole scacciare ver +scacciandoli scacciare ver +scacciandolo scacciare ver +scacciandone scacciare ver +scacciandovi scacciare ver +scacciano scacciare ver +scacciante scacciare ver +scacciapensieri scacciapensieri nom +scacciar scacciare ver +scacciare scacciare ver +scacciarla scacciare ver +scacciarle scacciare ver +scacciarli scacciare ver +scacciarlo scacciare ver +scacciarne scacciare ver +scacciarono scacciare ver +scacciarvi scacciare ver +scacciasse scacciare ver +scacciassero scacciare ver +scacciata scacciare ver +scacciate scacciare ver +scacciateli scacciare ver +scacciati scacciare ver +scacciato scacciare ver +scacciava scacciare ver +scacciavano scacciare ver +scaccini scaccino nom +scaccino scacciare ver +scaccio scacciare ver +scacciò scacciare ver +scacco scacco nom +scaccomatto scaccomatto nom +scada scadere ver +scadano scadere ver +scadde scadere ver +scaddero scadere ver +scade scadere ver +scadendo scadere ver +scadente scadente adj +scadenti scadente adj +scadenza scadenza nom +scadenzario scadenzario nom +scadenze scadenza nom +scadere scadere ver +scadesse scadere ver +scadessero scadere ver +scadeva scadere ver +scadevano scadere ver +scadi scadere ver +scadiamo scadere ver +scadimenti scadimento nom +scadimento scadimento nom +scadono scadere ver +scadranno scadere ver +scadrebbe scadere ver +scadrebbero scadere ver +scadrà scadere ver +scaduta scadere ver +scadute scadere ver +scaduti scadere ver +scaduto scadere ver +scafa scafare ver +scafali scafare ver +scafandri scafandro nom +scafandro scafandro nom +scafata scafare ver +scafatesi scafare ver +scafati scafare ver +scafato scafare ver +scaffalatura scaffalatura nom +scaffalature scaffalatura nom +scaffale scaffale nom +scaffali scaffale nom +scafi scafo nom +scafista scafista nom +scafisti scafista nom +scafo scafo nom +scafocefalia scafocefalia nom +scagiona scagionare ver +scagionalo scagionare ver +scagionando scagionare ver +scagionandola scagionare ver +scagionandoli scagionare ver +scagionandolo scagionare ver +scagionano scagionare ver +scagionare scagionare ver +scagionarla scagionare ver +scagionarli scagionare ver +scagionarlo scagionare ver +scagionarmi scagionare ver +scagionarono scagionare ver +scagionarsi scagionare ver +scagionasse scagionare ver +scagionassero scagionare ver +scagionata scagionare ver +scagionate scagionare ver +scagionati scagionare ver +scagionato scagionare ver +scagionava scagionare ver +scagionavano scagionare ver +scagionerebbe scagionare ver +scagionerebbero scagionare ver +scagionerà scagionare ver +scagioni scagionare ver +scagionino scagionare ver +scagionò scagionare ver +scagli scagliare ver +scaglia scaglia nom +scagliamo scagliare ver +scagliando scagliare ver +scagliandogli scagliare ver +scagliandola scagliare ver +scagliandole scagliare ver +scagliandoli scagliare ver +scagliandolo scagliare ver +scagliandosi scagliare ver +scagliandovi scagliare ver +scagliano scagliare ver +scagliante scagliare ver +scaglianti scagliare ver +scagliar scagliare ver +scagliare scagliare ver +scagliargli scagliare ver +scagliarla scagliare ver +scagliarle scagliare ver +scagliarli scagliare ver +scagliarlo scagliare ver +scagliarmi scagliare ver +scagliarne scagliare ver +scagliarono scagliare ver +scagliarsi scagliare ver +scagliarti scagliare ver +scagliarvi scagliare ver +scagliasse scagliare ver +scagliassero scagliare ver +scagliata scagliare ver +scagliate scagliare ver +scagliati scagliare ver +scagliato scagliare ver +scagliava scagliare ver +scagliavano scagliare ver +scaglie scaglia nom +scaglieranno scagliare ver +scaglierebbe scagliare ver +scaglierà scagliare ver +scaglino scagliare ver +scaglio scagliare ver +scagliola scagliola nom +scagliole scagliola nom +scaglionamento scaglionamento nom +scaglionandosi scaglionare ver +scaglionano scaglionare ver +scaglionare scaglionare ver +scaglionarle scaglionare ver +scaglionata scaglionare ver +scaglionate scaglionare ver +scaglionati scaglionare ver +scaglionato scaglionare ver +scaglione scaglione nom +scaglioni scaglione nom +scagliosa scaglioso adj +scagliose scaglioso adj +scagliosi scaglioso adj +scaglioso scaglioso adj +scagliò scagliare ver +scagnozza scagnozzo nom +scagnozze scagnozzo nom +scagnozzi scagnozzo nom +scagnozzo scagnozzo nom +scala scala nom +scalando scalare ver +scalandola scalare ver +scalandolo scalare ver +scalandone scalare ver +scalandrone scalandrone nom +scalandroni scalandrone nom +scalano scalare ver +scalar scalare ver +scalare scalare adj +scalari scalare adj +scalarla scalare ver +scalarle scalare ver +scalarli scalare ver +scalarlo scalare ver +scalarne scalare ver +scalarono scalare ver +scalasse scalare ver +scalata scalata nom +scalate scalata nom +scalati scalare ver +scalato scalare ver +scalatore scalatore nom +scalatori scalatore nom +scalatrice scalatore nom +scalatrici scalatore nom +scalava scalare ver +scalavano scalare ver +scalcagnata scalcagnato adj +scalcagnate scalcagnato adj +scalcagnati scalcagnato adj +scalcagnato scalcagnato adj +scalchi scalco nom +scalci scalciare ver +scalcia scalciare ver +scalciando scalciare ver +scalciano scalciare ver +scalciante scalciare ver +scalciare scalciare ver +scalciata scalciare ver +scalciato scalciare ver +scalciava scalciare ver +scalcinata scalcinato adj +scalcinate scalcinato adj +scalcinati scalcinato adj +scalcinato scalcinato adj +scalcini scalcinare ver +scalcio scalciare ver +scalciò scalciare ver +scalco scalco nom +scalda scaldare ver +scaldaacqua scaldaacqua nom +scaldabagni scaldabagno nom +scaldabagno scaldabagno nom +scaldaci scaldare ver +scaldacqua scaldacqua nom +scaldaletti scaldaletto nom +scaldaletto scaldaletto nom +scaldalo scaldare ver +scaldami scaldare ver +scaldando scaldare ver +scaldandola scaldare ver +scaldandoli scaldare ver +scaldandolo scaldare ver +scaldandosi scaldare ver +scaldano scaldare ver +scaldante scaldare ver +scaldanti scaldare ver +scaldapiedi scaldapiedi nom +scaldar scaldare ver +scaldarci scaldare ver +scaldare scaldare ver +scaldarla scaldare ver +scaldarle scaldare ver +scaldarli scaldare ver +scaldarlo scaldare ver +scaldarmi scaldare ver +scaldarono scaldare ver +scaldarsi scaldare ver +scaldarti scaldare ver +scaldata scaldare ver +scaldate scaldare ver +scaldatevi scaldare ver +scaldati scaldare ver +scaldato scaldare ver +scaldava scaldare ver +scaldavano scaldare ver +scaldavivande scaldavivande nom +scalderai scaldare ver +scalderanno scaldare ver +scalderebbe scaldare ver +scalderebbero scaldare ver +scalderei scaldare ver +scalderete scaldare ver +scalderà scaldare ver +scaldi scaldare ver +scaldiamo scaldare ver +scaldiamoci scaldare ver +scaldini scaldino nom +scaldino scaldino nom +scaldo scaldare ver +scaldò scaldare ver +scale scala nom +scalea scalea nom +scalee scalea nom +scalena scaleno adj +scalene scaleno adj +scaleni scaleno adj +scaleno scaleno adj +scalenoedro scalenoedro nom +scaleo scaleo nom +scalerà scalare ver +scaletta scaletta nom +scalette scaletta nom +scalfati scalfare ver +scalfendo scalfire ver +scalfi scalfo nom +scalfiranno scalfire ver +scalfire scalfire ver +scalfirla scalfire ver +scalfirlo scalfire ver +scalfirne scalfire ver +scalfirono scalfire ver +scalfirsi scalfire ver +scalfirà scalfire ver +scalfisce scalfire ver +scalfiscono scalfire ver +scalfita scalfire ver +scalfite scalfire ver +scalfiti scalfire ver +scalfito scalfire ver +scalfittura scalfittura nom +scalfitture scalfittura nom +scalfiva scalfire ver +scalfivano scalfire ver +scalfo scalfo nom +scalfì scalfire ver +scali scalo nom +scaligera scaligero adj +scaligere scaligero adj +scaligeri scaligero adj +scaligero scaligero adj +scalina scalinare ver +scalinata scalinata nom +scalinate scalinata nom +scalinati scalinare ver +scalinato scalinare ver +scalini scalino nom +scalino scalino nom +scalmanarsi scalmanarsi ver +scalmanata scalmanato adj +scalmanate scalmanato adj +scalmanati scalmanato nom +scalmanato scalmanato adj +scalmane scalmana nom +scalmani scalmanarsi ver +scalmiere scalmiera nom +scalo scalo nom +scalogna scalogna nom +scalognati scalognato adj +scalognato scalognato adj +scalone scalone nom +scaloni scalone nom +scaloppina scaloppina nom +scaloppine scaloppina nom +scalparono scalpare ver +scalpati scalpare ver +scalpato scalpare ver +scalpellando scalpellare ver +scalpellare scalpellare ver +scalpellata scalpellare ver +scalpellate scalpellare ver +scalpellati scalpellare ver +scalpellato scalpellare ver +scalpelli scalpello nom +scalpellini scalpellino nom +scalpellino scalpellino nom +scalpello scalpello nom +scalpellò scalpellare ver +scalpi scalpo nom +scalpiccio scalpiccio nom +scalpita scalpitare ver +scalpitando scalpitare ver +scalpitano scalpitare ver +scalpitante scalpitare ver +scalpitanti scalpitare ver +scalpitare scalpitare ver +scalpitava scalpitare ver +scalpitavano scalpitare ver +scalpiti scalpitio nom +scalpitio scalpitio nom +scalpito scalpitare ver +scalpo scalpo nom +scalpore scalpore nom +scalpori scalpore nom +scaltra scaltro adj +scaltre scaltro adj +scaltrezza scaltrezza nom +scaltrezze scaltrezza nom +scaltri scaltro adj +scaltrissimo scaltrire ver +scaltrita scaltrire ver +scaltriti scaltrire ver +scaltrito scaltrire ver +scaltro scaltro adj +scalza scalzo adj +scalzacani scalzacani nom +scalzando scalzare ver +scalzano scalzare ver +scalzare scalzare ver +scalzarla scalzare ver +scalzarli scalzare ver +scalzarlo scalzare ver +scalzarono scalzare ver +scalzata scalzare ver +scalzate scalzare ver +scalzati scalzare ver +scalzato scalzare ver +scalzava scalzare ver +scalze scalzo adj +scalzi scalzo adj +scalzo scalzo adj +scalzò scalzare ver +scalò scalare ver +scambi scambio nom +scambia scambiare ver +scambiai scambiare ver +scambiamo scambiare ver +scambiamoci scambiare ver +scambiando scambiare ver +scambiandola scambiare ver +scambiandole scambiare ver +scambiandoli scambiare ver +scambiandolo scambiare ver +scambiandone scambiare ver +scambiandosi scambiare ver +scambiano scambiare ver +scambiante scambiare ver +scambiarci scambiare ver +scambiare scambiare ver +scambiarla scambiare ver +scambiarle scambiare ver +scambiarli scambiare ver +scambiarlo scambiare ver +scambiarne scambiare ver +scambiarono scambiare ver +scambiarsele scambiare ver +scambiarseli scambiare ver +scambiarsi scambiare ver +scambiarvi scambiare ver +scambiasse scambiare ver +scambiassero scambiare ver +scambiata scambiare ver +scambiate scambiare ver +scambiatevi scambiare ver +scambiati scambiare ver +scambiato scambiare ver +scambiatore scambiatore nom +scambiatori scambiatore nom +scambiatrice scambiatore nom +scambiatrici scambiatore nom +scambiava scambiare ver +scambiavamo scambiare ver +scambiavano scambiare ver +scambieranno scambiare ver +scambierebbe scambiare ver +scambierebbero scambiare ver +scambierei scambiare ver +scambieremo scambiare ver +scambierà scambiare ver +scambierò scambiare ver +scambievole scambievole adj +scambievoli scambievole adj +scambino scambiare ver +scambio scambio nom +scambista scambista nom +scambisti scambista nom +scambiò scambiare ver +scamiciata scamiciato adj +scamiciati scamiciato adj +scamiciato scamiciato nom +scamorza scamorza nom +scamorze scamorza nom +scamosciata scamosciato adj +scamosciate scamosciato adj +scamosciato scamosciato adj +scamozzata scamozzare ver +scamozzati scamozzare ver +scamozzi scamozzare ver +scampa scampare ver +scampagnata scampagnata nom +scampagnate scampagnata nom +scampanare scampanare ver +scampanata scampanare ver +scampanate scampanato adj +scampando scampare ver +scampanellare scampanellare ver +scampanellata scampanellata nom +scampanellate scampanellata nom +scampanellio scampanellio nom +scampanio scampanio nom +scampano scampanare|scampare ver +scampar scampare ver +scampare scampare ver +scamparla scampare ver +scamparle scampare ver +scamparli scampare ver +scamparne scampare ver +scamparono scampare ver +scamparsela scampare ver +scamparvi scampare ver +scampasse scampare ver +scampata scampare ver +scampate scampare ver +scampati scampare ver +scampato scampare ver +scampava scampare ver +scampavano scampare ver +scamperanno scampare ver +scamperà scampare ver +scampi scampo nom +scampo scampo nom +scampoli scampolo nom +scampolo scampolo nom +scampò scampare ver +scanalare scanalare ver +scanalata scanalare ver +scanalate scanalare ver +scanalati scanalare ver +scanalato scanalare ver +scanalatura scanalatura nom +scanalature scanalatura nom +scanda scandere ver +scandagli scandaglio nom +scandaglia scandagliare ver +scandagliando scandagliare ver +scandagliano scandagliare ver +scandagliare scandagliare ver +scandagliarne scandagliare ver +scandagliata scandagliare ver +scandagliate scandagliare ver +scandagliati scandagliare ver +scandagliato scandagliare ver +scandagliava scandagliare ver +scandaglio scandaglio nom +scandagliò scandagliare ver +scandali scandalo nom +scandalismi scandalismo nom +scandalismo scandalismo nom +scandalistica scandalistico adj +scandalistiche scandalistico adj +scandalistici scandalistico adj +scandalistico scandalistico adj +scandalizza scandalizzare ver +scandalizzando scandalizzare ver +scandalizzandosi scandalizzare ver +scandalizzano scandalizzare ver +scandalizzarci scandalizzare ver +scandalizzare scandalizzare ver +scandalizzarmi scandalizzare ver +scandalizzarono scandalizzare ver +scandalizzarsi scandalizzare ver +scandalizzarti scandalizzare ver +scandalizzata scandalizzare ver +scandalizzate scandalizzare ver +scandalizzati scandalizzare ver +scandalizzato scandalizzare ver +scandalizzava scandalizzare ver +scandalizzavano scandalizzare ver +scandalizzeranno scandalizzare ver +scandalizzerebbe scandalizzare ver +scandalizzerei scandalizzare ver +scandalizzerà scandalizzare ver +scandalizzi scandalizzare ver +scandalizziamo scandalizzare ver +scandalizziamoci scandalizzare ver +scandalizzino scandalizzare ver +scandalizzo scandalizzare ver +scandalizzò scandalizzare ver +scandalo scandalo nom +scandalosa scandaloso adj +scandalose scandaloso adj +scandalosi scandaloso adj +scandaloso scandaloso adj +scandendo scandere|scandire ver +scandendola scandere|scandire ver +scandendolo scandere|scandire ver +scandente scandere|scandire ver +scandenti scandere|scandire ver +scander scandere ver +scandere scandere ver +scandi scandere ver +scandici scandere ver +scandinava scandinavo adj +scandinave scandinavo adj +scandinavi scandinavo adj +scandinavo scandinavo adj +scandio scandio nom +scandiranno scandire ver +scandire scandire ver +scandirne scandire ver +scandirono scandire ver +scandirà scandire ver +scandisca scandire ver +scandisce scandire ver +scandiscono scandire ver +scandita scandire ver +scandite scandire ver +scanditi scandire ver +scandito scandire ver +scandiva scandire ver +scandivano scandire ver +scando scandere ver +scandì scandire ver +scanna scannare ver +scannando scannare ver +scannandoci scannare ver +scannane scannare ver +scannano scannare ver +scannarci scannare ver +scannare scannare ver +scannarli scannare ver +scannarmi scannare ver +scannarono scannare ver +scannarsi scannare ver +scannarvi scannare ver +scannata scannare ver +scannate scannare ver +scannatevi scannare ver +scannati scannare ver +scannato scannare ver +scannatoio scannatoio nom +scannatori scannatore nom +scannavano scannare ver +scannella scannellare ver +scannellata scannellare ver +scannellate scannellare ver +scannelli scannello nom +scanner scanner nom +scannerebbero scannare ver +scanni scanno nom +scanniamo scannare ver +scanniamoci scannare ver +scannino scannare ver +scanno scanno nom +scannò scannare ver +scansa scansare ver +scansafatiche scansafatiche nom +scansando scansare ver +scansandosi scansare ver +scansano scansare ver +scansare scansare ver +scansarlo scansare ver +scansarsi scansare ver +scansasse scansare ver +scansata scansare ver +scansati scansare ver +scansato scansare ver +scansava scansare ver +scansi scanso nom +scansia scansia nom +scansie scansia nom +scansino scansare ver +scansione scansione nom +scansioni scansione nom +scanso scanso nom +scansò scansare ver +scantinati scantinato nom +scantinato scantinato nom +scantona scantonare ver +scantonando scantonare ver +scantonare scantonare ver +scantonata scantonare ver +scantonati scantonare ver +scantonato scantonare ver +scanzonata scanzonato adj +scanzonate scanzonato adj +scanzonati scanzonato adj +scanzonato scanzonato adj +scapaccione scapaccione nom +scapaccioni scapaccione nom +scapestrata scapestrato adj +scapestrate scapestrato adj +scapestrati scapestrato adj +scapestrato scapestrato adj +scapezzano scapezzare ver +scapezzata scapezzare ver +scapezzato scapezzare ver +scapi scapo nom +scapicollarmi scapicollarsi ver +scapicollato scapicollarsi ver +scapicolli scapicollarsi ver +scapigliata scapigliato adj +scapigliate scapigliato adj +scapigliati scapigliato adj +scapigliato scapigliato adj +scapigliatura scapigliatura nom +scapigliature scapigliatura nom +scapita scapitare ver +scapito scapito nom +scapitozzata scapitozzare ver +scapitozzate scapitozzare ver +scapo scapo nom +scapola scapola nom +scapolare scapolare adj +scapolari scapolare adj +scapole scapola nom +scapoli scapolo adj +scapolo scapolo adj +scapolone scapolone nom +scapoloni scapolone nom +scappa scappare ver +scappai scappare ver +scappamenti scappamento nom +scappamento scappamento nom +scappando scappare ver +scappano scappare ver +scappar scappare ver +scapparci scappare ver +scappare scappare ver +scappargli scappare ver +scapparmi scappare ver +scapparne scappare ver +scapparono scappare ver +scapparsene scappare ver +scappasse scappare ver +scappassero scappare ver +scappata scappare ver +scappate scappare ver +scappatella scappatella nom +scappatelle scappatella nom +scappati scappare ver +scappato scappare ver +scappatoia scappatoia nom +scappatoie scappatoia nom +scappava scappare ver +scappavano scappare ver +scappellandosi scappellare ver +scappellino scappellare ver +scappellotti scappellotto nom +scappellotto scappellotto nom +scapperanno scappare ver +scapperebbe scappare ver +scapperei scappare ver +scapperete scappare ver +scapperà scappare ver +scapperò scappare ver +scappi scappare ver +scappiamo scappare ver +scappino scappare ver +scappo scappare ver +scappò scappare ver +scarabattola scarabattola nom +scarabattoli scarabattolo nom +scarabei scarabeo nom +scarabeo scarabeo nom +scarabocchi scarabocchio nom +scarabocchia scarabocchiare ver +scarabocchiami scarabocchiare ver +scarabocchiando scarabocchiare ver +scarabocchiano scarabocchiare ver +scarabocchiare scarabocchiare ver +scarabocchiata scarabocchiare ver +scarabocchiati scarabocchiare ver +scarabocchiato scarabocchiare ver +scarabocchiava scarabocchiare ver +scarabocchio scarabocchio nom +scarabocchiò scarabocchiare ver +scarafaggi scarafaggio nom +scarafaggio scarafaggio nom +scaramantica scaramantico adj +scaramantiche scaramantico adj +scaramantici scaramantico adj +scaramantico scaramantico adj +scaramanzia scaramanzia nom +scaramanzie scaramanzia nom +scaramucce scaramuccia nom +scaramuccia scaramuccia nom +scaraventa scaraventare ver +scaraventando scaraventare ver +scaraventandogli scaraventare ver +scaraventandola scaraventare ver +scaraventandoli scaraventare ver +scaraventandolo scaraventare ver +scaraventandosi scaraventare ver +scaraventano scaraventare ver +scaraventare scaraventare ver +scaraventarla scaraventare ver +scaraventarle scaraventare ver +scaraventarli scaraventare ver +scaraventarlo scaraventare ver +scaraventarono scaraventare ver +scaraventarsi scaraventare ver +scaraventata scaraventare ver +scaraventate scaraventare ver +scaraventati scaraventare ver +scaraventato scaraventare ver +scaraventava scaraventare ver +scaraventavano scaraventare ver +scaraventerà scaraventare ver +scaraventi scaraventare ver +scaraventò scaraventare ver +scarcera scarcerare ver +scarcerano scarcerare ver +scarcerare scarcerare ver +scarcerarla scarcerare ver +scarcerarli scarcerare ver +scarcerarlo scarcerare ver +scarcerarono scarcerare ver +scarcerata scarcerare ver +scarcerate scarcerare ver +scarcerati scarcerare ver +scarcerato scarcerare ver +scarcerazione scarcerazione nom +scarcerazioni scarcerazione nom +scarcerò scarcerare ver +scardina scardinare ver +scardinale scardinare ver +scardinando scardinare ver +scardinano scardinare ver +scardinante scardinare ver +scardinare scardinare ver +scardinarlo scardinare ver +scardinarono scardinare ver +scardinata scardinare ver +scardinate scardinare ver +scardinato scardinare ver +scardinava scardinare ver +scardino scardinare ver +scardinò scardinare ver +scarica scarica nom +scaricabarile scaricabarile nom +scaricabarili scaricabarili nom +scaricaglielo scaricare ver +scaricai scaricare ver +scaricalo scaricare ver +scaricamenti scaricamento nom +scaricamento scaricamento nom +scaricando scaricare ver +scaricandogli scaricare ver +scaricandola scaricare ver +scaricandole scaricare ver +scaricandoli scaricare ver +scaricandolo scaricare ver +scaricandone scaricare ver +scaricandosi scaricare ver +scaricandovi scaricare ver +scaricano scaricare ver +scaricante scaricare ver +scaricanti scaricare ver +scaricar scaricare ver +scaricarci scaricare ver +scaricare scaricare ver +scaricarla scaricare ver +scaricarle scaricare ver +scaricarli scaricare ver +scaricarlo scaricare ver +scaricarmi scaricare ver +scaricarne scaricare ver +scaricarono scaricare ver +scaricarselo scaricare ver +scaricarsi scaricare ver +scaricarti scaricare ver +scaricarvi scaricare ver +scaricasse scaricare ver +scaricassero scaricare ver +scaricata scaricare ver +scaricate scaricare ver +scaricatelo scaricare ver +scaricati scaricare ver +scaricato scaricare ver +scaricatoio scaricatoio nom +scaricatore scaricatore nom +scaricatori scaricatore nom +scaricava scaricare ver +scaricavano scaricare ver +scaricavi scaricare ver +scariche scarica nom +scaricheranno scaricare ver +scaricherebbe scaricare ver +scaricherebbero scaricare ver +scaricherà scaricare ver +scaricherò scaricare ver +scarichi scarico nom +scarichiamo scaricare ver +scarichiamoli scaricare ver +scarichino scaricare ver +scarico scarico nom +scaricò scaricare ver +scarificare scarificare ver +scarificata scarificare ver +scarificate scarificare ver +scarificati scarificare ver +scarificato scarificare ver +scarificazione scarificazione nom +scarificazioni scarificazione nom +scariola scariola nom +scariolanti scariolante nom +scarmiglia scarmigliare ver +scarmigliata scarmigliare ver +scarmigliati scarmigliare ver +scarmigliato scarmigliare ver +scarna scarno adj +scarne scarno adj +scarni scarno adj +scarnifica scarnificare ver +scarnificando scarnificare ver +scarnificano scarnificare ver +scarnificare scarnificare ver +scarnificarsi scarnificare ver +scarnificata scarnificare ver +scarnificate scarnificare ver +scarnificati scarnificare ver +scarnificato scarnificare ver +scarnificavano scarnificare ver +scarnificazione scarnificazione nom +scarnissimo scarnire ver +scarniti scarnire ver +scarno scarno adj +scarola scarola nom +scarole scarola nom +scarpa scarpa nom +scarpai scarpaio nom +scarpata scarpata nom +scarpate scarpata nom +scarpe scarpa nom +scarpetta scarpetta nom +scarpette scarpetta nom +scarpina scarpinare ver +scarpinata scarpinata nom +scarpinato scarpinare ver +scarpini scarpino nom +scarpino scarpino nom +scarpone scarpone nom +scarponi scarpone nom +scarroccio scarroccio nom +scarrozza scarrozzare ver +scarrozzano scarrozzare ver +scarrozzanti scarrozzare ver +scarrozzare scarrozzare ver +scarrozzati scarrozzare ver +scarrozzato scarrozzare ver +scarrozzava scarrozzare ver +scarruffati scarruffare ver +scarsa scarso adj +scarsamente scarsamente adv +scarse scarso adj +scarseggi scarseggiare ver +scarseggia scarseggiare ver +scarseggiamo scarseggiare ver +scarseggiando scarseggiare ver +scarseggiano scarseggiare ver +scarseggiante scarseggiare ver +scarseggianti scarseggiare ver +scarseggiare scarseggiare ver +scarseggiarono scarseggiare ver +scarseggiati scarseggiare ver +scarseggiava scarseggiare ver +scarseggiavano scarseggiare ver +scarseggino scarseggiare ver +scarseggiò scarseggiare ver +scarsella scarsella nom +scarselle scarsella nom +scarsezza scarsezza nom +scarsezze scarsezza nom +scarsi scarso adj +scarsissima scarsissimo adj +scarsissimi scarsissimo adj +scarsissimo scarsissimo adj +scarsità scarsità nom +scarso scarso adj +scarta scartare ver +scartabella scartabellare ver +scartabellando scartabellare ver +scartabellare scartabellare ver +scartabellarsi scartabellare ver +scartabellato scartabellare ver +scartabelli scartabellare ver +scartabello scartabellare ver +scartafacci scartafaccio nom +scartafaccio scartafaccio nom +scartai scartare ver +scartamenti scartamento nom +scartamento scartamento nom +scartammo scartare ver +scartando scartare ver +scartandole scartare ver +scartandoli scartare ver +scartandolo scartare ver +scartandone scartare ver +scartano scartare ver +scartare scartare ver +scartarla scartare ver +scartarle scartare ver +scartarli scartare ver +scartarlo scartare ver +scartarne scartare ver +scartarono scartare ver +scartarsi scartare ver +scartasse scartare ver +scartata scartare ver +scartate scartare ver +scartati scartare ver +scartato scartare ver +scartava scartare ver +scartavano scartare ver +scartavetrare scartavetrare ver +scarteranno scartare ver +scarterei scartare ver +scarterà scartare ver +scarti scarto nom +scartiamo scartare ver +scartina scartina nom +scartine scartina nom +scartino scartare ver +scarto scarto nom +scartocci scartocciare ver +scartoffia scartoffia nom +scartoffie scartoffia nom +scartò scartare ver +scassa scassare ver +scassando scassare ver +scassano scassare ver +scassare scassare ver +scassata scassare ver +scassate scassare ver +scassatemi scassare ver +scassati scassare ver +scassato scassare ver +scassi scasso nom +scassina scassinare ver +scassinando scassinare ver +scassinandone scassinare ver +scassinano scassinare ver +scassinare scassinare ver +scassinarla scassinare ver +scassinarono scassinare ver +scassinata scassinare ver +scassinate scassinare ver +scassinato scassinare ver +scassinatore scassinatore nom +scassinatori scassinatore nom +scassinatrice scassinatore nom +scassinò scassinare ver +scasso scasso nom +scatarro scatarrare ver +scatena scatenare ver +scatenamento scatenamento nom +scatenando scatenare ver +scatenandogli scatenare ver +scatenandoli scatenare ver +scatenandone scatenare ver +scatenandosi scatenare ver +scatenano scatenare ver +scatenante scatenare ver +scatenanti scatenare ver +scatenarci scatenare ver +scatenare scatenare ver +scatenargli scatenare ver +scatenarla scatenare ver +scatenarle scatenare ver +scatenarli scatenare ver +scatenarlo scatenare ver +scatenarmi scatenare ver +scatenarne scatenare ver +scatenarono scatenare ver +scatenarsi scatenare ver +scatenarti scatenare ver +scatenasse scatenare ver +scatenassero scatenare ver +scatenata scatenare ver +scatenate scatenato adj +scatenatesi scatenare ver +scatenati scatenato adj +scatenato scatenare ver +scatenava scatenare ver +scatenavano scatenare ver +scateneranno scatenare ver +scatenerebbe scatenare ver +scatenerebbero scatenare ver +scatenerete scatenare ver +scatenerà scatenare ver +scatenerò scatenare ver +scateni scatenare ver +scateniamo scatenare ver +scateniamoci scatenare ver +scatenino scatenare ver +scateno scatenare ver +scatenò scatenare ver +scatola scatola nom +scatolame scatolame nom +scatolare scatolare adj +scatolari scatolare adj +scatole scatola nom +scatoletta scatoletta nom +scatolifici scatolificio nom +scatolificio scatolificio nom +scatologia scatologia nom +scatoloni scatolono nom +scatta scattare ver +scattai scattare ver +scattale scattare ver +scattando scattare ver +scattandogli scattare ver +scattandole scattare ver +scattandosi scattare ver +scattano scattare ver +scattante scattante adj +scattanti scattante adj +scattar scattare ver +scattare scattare ver +scattargli scattare ver +scattarla scattare ver +scattarle scattare ver +scattarne scattare ver +scattarono scattare ver +scattarsi scattare ver +scattasse scattare ver +scattassero scattare ver +scattata scattare ver +scattate scattare ver +scattati scattare ver +scattato scattare ver +scattava scattare ver +scattavano scattare ver +scatteranno scattare ver +scatterebbe scattare ver +scatterebbero scattare ver +scattering scattering nom +scatterà scattare ver +scatterò scattare ver +scatti scatto nom +scattino scattare ver +scattista scattista nom +scattisti scattista nom +scatto scatto nom +scattò scattare ver +scaturendo scaturire ver +scaturendone scaturire ver +scaturente scaturire ver +scaturenti scaturire ver +scaturigine scaturigine nom +scaturigini scaturigine nom +scaturiranno scaturire ver +scaturire scaturire ver +scaturirebbe scaturire ver +scaturirebbero scaturire ver +scaturirne scaturire ver +scaturirono scaturire ver +scaturirsi scaturire ver +scaturirà scaturire ver +scaturisca scaturire ver +scaturiscano scaturire ver +scaturisce scaturire ver +scaturiscono scaturire ver +scaturisse scaturire ver +scaturissero scaturire ver +scaturita scaturire ver +scaturite scaturire ver +scaturiti scaturire ver +scaturito scaturire ver +scaturiva scaturire ver +scaturivano scaturire ver +scaturì scaturire ver +scava scavare ver +scavai scavare ver +scavalca scavalcare ver +scavalcai scavalcare ver +scavalcando scavalcare ver +scavalcandola scavalcare ver +scavalcandolo scavalcare ver +scavalcandone scavalcare ver +scavalcano scavalcare ver +scavalcar scavalcare ver +scavalcare scavalcare ver +scavalcarla scavalcare ver +scavalcarle scavalcare ver +scavalcarli scavalcare ver +scavalcarlo scavalcare ver +scavalcarne scavalcare ver +scavalcarono scavalcare ver +scavalcarsi scavalcare ver +scavalcasse scavalcare ver +scavalcassero scavalcare ver +scavalcata scavalcare ver +scavalcate scavalcare ver +scavalcati scavalcare ver +scavalcato scavalcare ver +scavalcava scavalcare ver +scavalcavano scavalcare ver +scavalcherà scavalcare ver +scavalchi scavalcare ver +scavalchiamo scavalcare ver +scavalchino scavalcare ver +scavalco scavalcare ver +scavalcò scavalcare ver +scavando scavare ver +scavandola scavare ver +scavandole scavare ver +scavandone scavare ver +scavandosi scavare ver +scavandovi scavare ver +scavano scavare ver +scavante scavare ver +scavar scavare ver +scavarci scavare ver +scavare scavare ver +scavarla scavare ver +scavarle scavare ver +scavarlo scavare ver +scavarne scavare ver +scavarono scavare ver +scavarsi scavare ver +scavarvi scavare ver +scavasse scavare ver +scavassero scavare ver +scavata scavare ver +scavate scavare ver +scavatemi scavare ver +scavati scavare ver +scavato scavare ver +scavatore scavatore adj +scavatori scavatore nom +scavatrice scavatore adj +scavatrici scavatore adj +scavatura scavatura nom +scavature scavatura nom +scavava scavare ver +scavavano scavare ver +scaveranno scavare ver +scaverà scavare ver +scavezza scavezzare ver +scavezzacolli scavezzacolli nom +scavezzacollo scavezzacollo nom +scavezzo scavezzare ver +scavi scavo nom +scavini scavino nom +scavino scavare ver +scavo scavo nom +scavò scavare ver +scazzottano scazzottare ver +scazzottata scazzottata nom +scazzottate scazzottata nom +scegli scegliere ver +scegliamo scegliere ver +scegliamoci scegliere ver +scegliate scegliere ver +sceglie scegliere ver +scegliemmo scegliere ver +scegliendo scegliere ver +scegliendola scegliere ver +scegliendole scegliere ver +scegliendoli scegliere ver +scegliendolo scegliere ver +scegliendone scegliere ver +scegliendosi scegliere ver +sceglienti scegliere ver +sceglier scegliere ver +sceglierai scegliere ver +sceglieranno scegliere ver +sceglierci scegliere ver +scegliere scegliere ver +sceglierebbe scegliere ver +sceglierebbero scegliere ver +sceglierei scegliere ver +sceglieremo scegliere ver +scegliereste scegliere ver +sceglierete scegliere ver +scegliergli scegliere ver +sceglierla scegliere ver +sceglierle scegliere ver +sceglierli scegliere ver +sceglierlo scegliere ver +scegliermi scegliere ver +sceglierne scegliere ver +scegliersene scegliere ver +scegliersi scegliere ver +sceglierti scegliere ver +scegliervi scegliere ver +sceglierà scegliere ver +sceglierò scegliere ver +scegliesse scegliere ver +scegliessero scegliere ver +scegliessi scegliere ver +scegliessimo scegliere ver +sceglieste scegliere ver +scegliesti scegliere ver +scegliete scegliere ver +sceglietene scegliere ver +sceglietevi scegliere ver +sceglieva scegliere ver +sceglievano scegliere ver +sceglievi scegliere ver +sceglievo scegliere ver +sceglilo scegliere ver +scegline scegliere ver +scegliti scegliere ver +sceicchi sceicco nom +sceicco sceicco nom +scelga scegliere ver +scelgano scegliere ver +scelgo scegliere ver +scelgono scegliere ver +scellerata scellerato adj +scellerataggine scellerataggine nom +scellerate scellerato adj +scelleratezza scelleratezza nom +scelleratezze scelleratezza nom +scellerati scellerato adj +scellerato scellerato adj +scellini scellino nom +scellino scellino nom +scelse scegliere ver +scelsero scegliere ver +scelsi scegliere ver +scelta scelta nom +scelte scelta nom +scelti scegliere ver +scelto scegliere ver +scema scemo adj +scemando scemare ver +scemano scemare ver +scemante scemare ver +scemare scemare ver +scemarne scemare ver +scemarono scemare ver +scemasse scemare ver +scemata scemare ver +scemate scemata nom +scemati scemare ver +scemato scemare ver +scemava scemare ver +sceme scemo adj +scemenza scemenza nom +scemenze scemenza nom +scemeranno scemare ver +scemerebbe scemare ver +scemerà scemare ver +scemi scemo adj +scemo scemo adj +scempi scempio nom +scempia scempio adj +scempiaggine scempiaggine nom +scempiaggini scempiaggine nom +scempiato scempiare ver +scempie scempio adj +scempio scempio nom +scemò scemare ver +scena scena nom +scenari scenario nom +scenario scenario nom +scenarista scenarista nom +scenariste scenarista nom +scenaristi scenarista nom +scenata scenata nom +scenate scenata nom +scenda scendere ver +scendano scendere ver +scende scendere ver +scendemmo scendere ver +scendendo scendere ver +scendente scendere ver +scendenti scendere ver +scender scendere ver +scenderanno scendere ver +scendere scendere|scernere ver +scenderebbe scendere ver +scenderebbero scendere ver +scenderei scendere ver +scenderemo scendere ver +scenderla scendere ver +scenderle scendere ver +scenderne scendere ver +scendervi scendere ver +scenderà scendere ver +scenderò scendere ver +scendesse scendere ver +scendessero scendere ver +scendesti scendere ver +scendete scendere ver +scendeva scendere ver +scendevano scendere ver +scendevi scendere ver +scendevo scendere ver +scendi scendere ver +scendiamo scendere ver +scendiletto scendiletto nom +scendo scendere ver +scendono scendere ver +scene scena nom +sceneggerà sceneggiare ver +sceneggia sceneggiare ver +sceneggiando sceneggiare ver +sceneggiandone sceneggiare ver +sceneggiano sceneggiare ver +sceneggiare sceneggiare ver +sceneggiarono sceneggiare ver +sceneggiata sceneggiata nom +sceneggiate sceneggiata nom +sceneggiati sceneggiato nom +sceneggiato sceneggiato adj +sceneggiatore sceneggiatore nom +sceneggiatori sceneggiatore nom +sceneggiatrice sceneggiatore nom +sceneggiatrici sceneggiatore nom +sceneggiatura sceneggiatura nom +sceneggiature sceneggiatura nom +sceneggiava sceneggiare ver +sceneggiò sceneggiare ver +scenetta scenetta nom +scenette scenetta nom +scenica scenico adj +sceniche scenico adj +scenici scenico adj +scenico scenico adj +scenografa scenografo nom +scenografi scenografo nom +scenografia scenografia nom +scenografica scenografico adj +scenografiche scenografico adj +scenografici scenografico adj +scenografico scenografico adj +scenografie scenografia nom +scenografo scenografo nom +scenotecnica scenotecnica nom +scenotecniche scenotecnica nom +scepsi scepsi nom +sceriffi sceriffo nom +sceriffo sceriffo nom +scerna scernere ver +scerne scernere ver +scernere scernere ver +scerni scernere ver +scerno scernere ver +scervella scervellarsi ver +scervellando scervellarsi ver +scervellante scervellarsi ver +scervellare scervellarsi ver +scervellarmi scervellarsi ver +scervellarsi scervellarsi ver +scervellata scervellarsi ver +scervellato scervellarsi ver +scervelli scervellarsi ver +scervello scervellarsi ver +scesa scendere|scernere ver +scese scendere|scernere ver +scesero scendere|scernere ver +scesi scendere|scernere ver +sceso scendere|scernere ver +scettica scettico adj +scettiche scettico adj +scettici scettico adj +scetticismi scetticismo nom +scetticismo scetticismo nom +scettico scettico adj +scettri scettro nom +scettro scettro nom +sceverare sceverare ver +sceverate sceverare ver +scevra scevro adj +scevre scevro adj +scevri scevro adj +scevro scevro adj +scheda scheda nom +schedai schedare ver +schedando schedare ver +schedano schedare ver +schedar schedare ver +schedare schedare ver +schedari schedario nom +schedario schedario nom +schedarono schedare ver +schedata schedare ver +schedate schedare ver +schedati schedare ver +schedato schedare ver +schedatori schedatore nom +schedatura schedatura nom +schedature schedatura nom +schede scheda nom +schedina schedina nom +schedine schedina nom +schedino schedare ver +schedò schedare ver +schegge scheggia nom +scheggi scheggiare ver +scheggia scheggia nom +scheggiando scheggiare ver +scheggiano scheggiare ver +scheggiare scheggiare ver +scheggiarne scheggiare ver +scheggiarsi scheggiare ver +scheggiata scheggiare ver +scheggiate scheggiare ver +scheggiati scheggiare ver +scheggiato scheggiare ver +scheggiatura scheggiatura nom +scheggiature scheggiatura nom +scheggino scheggiare ver +scheggio scheggiare ver +scheggiò scheggiare ver +scheletri scheletro nom +scheletrica scheletrico adj +scheletriche scheletrico adj +scheletrici scheletrico adj +scheletrico scheletrico adj +scheletrita scheletrito adj +scheletrite scheletrito adj +scheletriti scheletrito adj +scheletrito scheletrire ver +scheletro scheletro nom +schelmi schelmo nom +schema schema nom +schematica schematico adj +schematiche schematico adj +schematici schematico adj +schematicità schematicità nom +schematico schematico adj +schematismi schematismo nom +schematismo schematismo nom +schematizza schematizzare ver +schematizzando schematizzare ver +schematizzandole schematizzare ver +schematizzano schematizzare ver +schematizzanti schematizzare ver +schematizzare schematizzare ver +schematizzarsi schematizzare ver +schematizzata schematizzare ver +schematizzate schematizzare ver +schematizzati schematizzare ver +schematizzato schematizzare ver +schematizzazione schematizzazione nom +schematizzazioni schematizzazione nom +schematizzi schematizzare ver +schematizziamo schematizzare ver +schematizzò schematizzare ver +schemi schema nom +scherani scherano nom +scherano scherano nom +scherma scherma nom +schermaglia schermaglia nom +schermaglie schermaglia nom +schermando schermare ver +schermandola schermare ver +schermandoli schermare ver +schermandosi schermare ver +schermano schermare ver +schermante schermare ver +schermanti schermare ver +schermare schermare ver +schermarla schermare ver +schermarli schermare ver +schermarlo schermare ver +schermarne schermare ver +schermarsi schermare ver +schermata schermare ver +schermate schermare ver +schermati schermare ver +schermato schermare ver +schermatura schermatura nom +schermature schermatura nom +schermava schermare ver +scherme scherma nom +schermendosi schermire ver +schermi schermo nom +schermidore schermidore nom +schermidori schermidore nom +schermire schermire ver +schermirsi schermire ver +schermisce schermire ver +schermita schermire ver +schermito schermire ver +schermitore schermitore nom +schermitori schermitore nom +schermitrice schermitore nom +schermitrici schermitore nom +schermiva schermire ver +schermo schermo nom +schermì schermire ver +schermò schermare ver +schernendo schernire ver +schernendola schernire ver +schernendolo schernire ver +scherni scherno nom +schernire schernire ver +schernirla schernire ver +schernirlo schernire ver +schernirono schernire ver +schernisce schernire ver +scherniscono schernire ver +schernita schernire ver +schernite schernire ver +scherniti schernire ver +schernito schernire ver +schernitore schernitore nom +scherniva schernire ver +schernivano schernire ver +scherno scherno nom +schernì schernire ver +scherza scherzare ver +scherzaci scherzare ver +scherzammo scherzare ver +scherzando scherzare ver +scherzandoci scherzare ver +scherzano scherzare ver +scherzarci scherzare ver +scherzare scherzare ver +scherzarono scherzare ver +scherzarvi scherzare ver +scherzasi scherzare ver +scherzasse scherzare ver +scherzassi scherzare ver +scherzate scherzare ver +scherzato scherzare ver +scherzava scherzare ver +scherzavamo scherzare ver +scherzavano scherzare ver +scherzavi scherzare ver +scherzavo scherzare ver +scherzerei scherzare ver +scherzerà scherzare ver +scherzerò scherzare ver +scherzevole scherzevole adj +scherzevoli scherzevole adj +scherzi scherzo nom +scherziamo scherzare ver +scherzino scherzare ver +scherzo scherzo nom +scherzosa scherzoso adj +scherzosamente scherzosamente adv +scherzose scherzoso adj +scherzosi scherzoso adj +scherzoso scherzoso adj +scherzò scherzare ver +schettina schettinare ver +schettinaggio schettinaggio nom +schettini schettino nom +schettino schettino nom +schiacce schiaccia nom +schiacceranno schiacciare ver +schiaccerebbe schiacciare ver +schiaccerete schiacciare ver +schiaccerà schiacciare ver +schiaccerò schiacciare ver +schiacci schiacciare ver +schiaccia schiacciare ver +schiaccialo schiacciare ver +schiacciamenti schiacciamento nom +schiacciamento schiacciamento nom +schiacciamo schiacciare ver +schiacciando schiacciare ver +schiacciandogli schiacciare ver +schiacciandola schiacciare ver +schiacciandole schiacciare ver +schiacciandoli schiacciare ver +schiacciandolo schiacciare ver +schiacciandone schiacciare ver +schiacciandosi schiacciare ver +schiacciano schiacciare ver +schiaccianoci schiaccianoci nom +schiacciante schiacciante adj +schiaccianti schiacciante adj +schiacciapatate schiacciapatate nom +schiacciarci schiacciare ver +schiacciare schiacciare ver +schiacciargli schiacciare ver +schiacciargliela schiacciare ver +schiacciarla schiacciare ver +schiacciarle schiacciare ver +schiacciarli schiacciare ver +schiacciarlo schiacciare ver +schiacciarmi schiacciare ver +schiacciarne schiacciare ver +schiacciarono schiacciare ver +schiacciarsi schiacciare ver +schiacciarti schiacciare ver +schiacciarvi schiacciare ver +schiacciasassi schiacciasassi nom +schiacciasse schiacciare ver +schiacciassero schiacciare ver +schiacciata schiacciare ver +schiacciate schiacciare ver +schiacciati schiacciare ver +schiacciato schiacciare ver +schiacciava schiacciare ver +schiacciavano schiacciare ver +schiacciavo schiacciare ver +schiaccino schiacciare ver +schiaccio schiacciare ver +schiacciò schiacciare ver +schiaffa schiaffare ver +schiaffare schiaffare ver +schiaffarti schiaffare ver +schiaffata schiaffare ver +schiaffate schiaffare ver +schiaffati schiaffare ver +schiaffato schiaffare ver +schiaffeggerà schiaffeggiare ver +schiaffeggia schiaffeggiare ver +schiaffeggiando schiaffeggiare ver +schiaffeggiandola schiaffeggiare ver +schiaffeggiandoli schiaffeggiare ver +schiaffeggiandolo schiaffeggiare ver +schiaffeggiano schiaffeggiare ver +schiaffeggianti schiaffeggiare ver +schiaffeggiare schiaffeggiare ver +schiaffeggiarla schiaffeggiare ver +schiaffeggiarli schiaffeggiare ver +schiaffeggiarlo schiaffeggiare ver +schiaffeggiarmi schiaffeggiare ver +schiaffeggiata schiaffeggiare ver +schiaffeggiati schiaffeggiare ver +schiaffeggiato schiaffeggiare ver +schiaffeggio schiaffeggiare ver +schiaffeggiò schiaffeggiare ver +schiafferà schiaffare ver +schiaffi schiaffo nom +schiaffiamo schiaffare ver +schiaffino schiaffare ver +schiaffo schiaffo nom +schiamazza schiamazzare ver +schiamazzando schiamazzare ver +schiamazzano schiamazzare ver +schiamazzante schiamazzare ver +schiamazzanti schiamazzare ver +schiamazzare schiamazzare ver +schiamazzi schiamazzo nom +schiamazzo schiamazzo nom +schianta schiantare ver +schiantando schiantare ver +schiantandolo schiantare ver +schiantandosi schiantare ver +schiantano schiantare ver +schiantare schiantare ver +schiantarlo schiantare ver +schiantarono schiantare ver +schiantarsi schiantare ver +schiantasse schiantare ver +schiantassero schiantare ver +schiantata schiantare ver +schiantate schiantare ver +schiantatesi schiantare ver +schiantati schiantare ver +schiantato schiantare ver +schiantava schiantare ver +schianterebbe schiantare ver +schianterà schiantare ver +schianti schianto nom +schiantino schiantare ver +schianto schianto nom +schiantò schiantare ver +schiappa schiappa nom +schiappe schiappa nom +schiarendo schiarire ver +schiarendosi schiarire ver +schiarente schiarire ver +schiarenti schiarire ver +schiarimenti schiarimento nom +schiarimento schiarimento nom +schiarirci schiarire ver +schiarire schiarire ver +schiarirei schiarire ver +schiarirla schiarire ver +schiarirlo schiarire ver +schiarirmi schiarire ver +schiarirono schiarire ver +schiarirsi schiarire ver +schiarirti schiarire ver +schiarisce schiarire ver +schiarisci schiarire ver +schiariscono schiarire ver +schiarita schiarita nom +schiarite schiarita nom +schiariti schiarire ver +schiarito schiarire ver +schiariva schiarire ver +schiarivano schiarire ver +schiarì schiarire ver +schiatta schiatta nom +schiattano schiattare ver +schiattare schiattare ver +schiattate schiattare ver +schiattati schiattare ver +schiattato schiattare ver +schiatte schiatta nom +schiatti schiattare ver +schiava schiavo nom +schiave schiavo nom +schiavi schiavo nom +schiavismo schiavismo nom +schiavista schiavista nom +schiaviste schiavista nom +schiavisti schiavista nom +schiavistica schiavistico adj +schiavistiche schiavistico adj +schiavistici schiavistico adj +schiavistico schiavistico adj +schiavitù schiavitù nom +schiavizza schiavizzare ver +schiavizzando schiavizzare ver +schiavizzandolo schiavizzare ver +schiavizzandone schiavizzare ver +schiavizzano schiavizzare ver +schiavizzare schiavizzare ver +schiavizzarle schiavizzare ver +schiavizzarli schiavizzare ver +schiavizzarlo schiavizzare ver +schiavizzarne schiavizzare ver +schiavizzarono schiavizzare ver +schiavizzata schiavizzare ver +schiavizzate schiavizzare ver +schiavizzati schiavizzare ver +schiavizzato schiavizzare ver +schiavizzava schiavizzare ver +schiavizzavano schiavizzare ver +schiavizzò schiavizzare ver +schiavo schiavo adj +schidione schidione nom +schiena schiena nom +schienale schienale nom +schienali schienale nom +schienata schienata nom +schiene schiena nom +schiera schiera nom +schieramenti schieramento nom +schieramento schieramento nom +schierando schierare ver +schierandola schierare ver +schierandoli schierare ver +schierandolo schierare ver +schierandomi schierare ver +schierandone schierare ver +schierandosi schierare ver +schierano schierare ver +schieranti schierare ver +schierare schierare ver +schierarla schierare ver +schierarle schierare ver +schierarli schierare ver +schierarlo schierare ver +schierarmi schierare ver +schierarne schierare ver +schierarono schierare ver +schierarsi schierare ver +schierarti schierare ver +schierarvi schierare ver +schierasse schierare ver +schierassero schierare ver +schierata schierare ver +schierate schierare ver +schieratesi schierare ver +schieratevi schierare ver +schierati schierare ver +schierato schierare ver +schierava schierare ver +schieravano schierare ver +schiere schiera nom +schiereranno schierare ver +schiereremo schierare ver +schiererà schierare ver +schieri schierare ver +schierino schierare ver +schiero schierare ver +schierò schierare ver +schietta schietto adj +schiette schietto adj +schiettezza schiettezza nom +schiettezze schiettezza nom +schietti schietto adj +schietto schietto adj +schifa schifare ver +schifano schifare ver +schifar schifare ver +schifare schifare ver +schifata schifare ver +schifate schifare ver +schifati schifare ver +schifato schifare ver +schifezza schifezza nom +schifezze schifezza nom +schifiamo schifare ver +schifiltoso schifiltoso adj +schifino schifare ver +schifo schifo nom +schifosa schifoso nom +schifose schifoso nom +schifosi schifoso nom +schifoso schifoso nom +schiniere schiniere nom +schinieri schiniere nom +schiocca schioccare ver +schioccando schioccare ver +schioccano schioccare ver +schioccante schioccare ver +schioccanti schioccare ver +schioccare schioccare ver +schioccato schioccare ver +schiocchi schiocco nom +schiocco schiocco nom +schioccò schioccare ver +schioda schiodare ver +schiodando schiodare ver +schiodano schiodare ver +schiodare schiodare ver +schiodarsi schiodare ver +schiodato schiodare ver +schiodatura schiodatura nom +schiodature schiodatura nom +schiodi schiodare ver +schiodo schiodare ver +schioppettata schioppettata nom +schioppettate schioppettata nom +schioppi schioppo nom +schioppo schioppo nom +schisi schisi nom +schisti schisto nom +schisto schisto nom +schiuda schiudere ver +schiudano schiudere ver +schiude schiudere ver +schiudendo schiudere ver +schiudendosi schiudere ver +schiuderanno schiudere ver +schiudere schiudere ver +schiudersi schiudere ver +schiuderà schiudere ver +schiudessero schiudere ver +schiudeva schiudere ver +schiudevano schiudere ver +schiudi schiudere ver +schiuditi schiudere ver +schiudo schiudere ver +schiudono schiudere ver +schiuma schiuma nom +schiumando schiumare ver +schiumano schiumare ver +schiumante schiumare ver +schiumanti schiumare ver +schiumare schiumare ver +schiumarola schiumarola nom +schiumarole schiumarola nom +schiumata schiumare ver +schiumati schiumare ver +schiumato schiumare ver +schiumatura schiumatura nom +schiume schiuma nom +schiumino schiumare ver +schiumogene schiumogeno adj +schiumogeni schiumogeno adj +schiumogeno schiumogeno adj +schiumosa schiumoso adj +schiumose schiumoso adj +schiumosi schiumoso adj +schiumoso schiumoso adj +schiusa schiusa nom +schiuse schiudere ver +schiusero schiudere ver +schiusi schiudere ver +schiuso schiudere ver +schiva schivo adj +schivami schivare ver +schivando schivare ver +schivano schivare ver +schivare schivare ver +schivarla schivare ver +schivarle schivare ver +schivarli schivare ver +schivarlo schivare ver +schivarne schivare ver +schivarono schivare ver +schivata schivata nom +schivate schivata nom +schivati schivare ver +schivato schivare ver +schivava schivare ver +schive schivo adj +schiverà schivare ver +schivi schivo adj +schivo schivo adj +schivò schivare ver +schizofrenia schizofrenia nom +schizofrenica schizofrenico adj +schizofreniche schizofrenico adj +schizofrenici schizofrenico adj +schizofrenico schizofrenico adj +schizofrenie schizofrenia nom +schizoide schizoide adj +schizoidi schizoide adj +schizomiceti schizomicete nom +schizza schizzare ver +schizzando schizzare ver +schizzano schizzare ver +schizzar schizzare ver +schizzare schizzare ver +schizzarla schizzare ver +schizzarono schizzare ver +schizzarsi schizzare ver +schizzata schizzare ver +schizzate schizzare ver +schizzati schizzare ver +schizzato schizzare ver +schizzava schizzare ver +schizzavano schizzare ver +schizzeranno schizzare ver +schizzetto schizzetto nom +schizzi schizzo nom +schizzinosa schizzinoso adj +schizzinose schizzinoso adj +schizzinosi schizzinoso adj +schizzinoso schizzinoso adj +schizzo schizzo nom +schizzò schizzare ver +schnauzer schnauzer nom +schnorchel schnorchel nom +school school nom +schooner schooner nom +sci sci nom +scia scia nom +sciabica sciabica nom +sciabiche sciabica nom +sciabile sciabile adj +sciabili sciabile adj +sciabola sciabola nom +sciabolare sciabolare ver +sciabolata sciabolata nom +sciabolate sciabolata nom +sciabolati sciabolare ver +sciabolato sciabolare ver +sciabolatore sciabolatore nom +sciabolatori sciabolatore nom +sciabole sciabola nom +sciabordare sciabordare ver +sciabordio sciabordio nom +sciacalli sciacallo nom +sciacallo sciacallo nom +sciacchetrà sciacchetrà nom +sciacqua sciacquare ver +sciacquando sciacquare ver +sciacquano sciacquare ver +sciacquare sciacquare ver +sciacquarli sciacquare ver +sciacquarsi sciacquare ver +sciacquata sciacquata nom +sciacquate sciacquare ver +sciacquati sciacquare ver +sciacquato sciacquare ver +sciacquatura sciacquatura nom +sciacquava sciacquare ver +sciacqui sciacquio|sciacquo nom +sciacquone sciacquone nom +sciacquoni sciacquone nom +sciagura sciagura nom +sciagurata sciagurato adj +sciagurate sciagurato adj +sciagurati sciagurato adj +sciagurato sciagurato adj +sciagure sciagura nom +sciala scialare ver +scialacqua scialacquare ver +scialacquando scialacquare ver +scialacquare scialacquare ver +scialacquarono scialacquare ver +scialacquate scialacquare ver +scialacquati scialacquare ver +scialacquato scialacquare ver +scialacquatore scialacquatore nom +scialacquatori scialacquatore nom +scialacquatrice scialacquatore nom +scialacquone scialacquone nom +scialacquò scialacquare ver +scialare scialare ver +scialba scialbo adj +scialbata scialbare ver +scialbate scialbare ver +scialbati scialbare ver +scialbato scialbare ver +scialbe scialbo adj +scialbi scialbo adj +scialbo scialbo adj +sciali scialo nom +scialino scialare ver +scialitica scialitico adj +sciallati sciallato adj +sciallato sciallato adj +scialle scialle nom +scialli scialle nom +scialo scialo nom +scialpinismo scialpinismo nom +scialuppa scialuppa nom +scialuppe scialuppa nom +scialò scialare ver +sciama sciamare ver +sciamando sciamare ver +sciamane sciamare ver +sciamani sciamano nom +sciamanna sciamannare ver +sciamannati sciamannato adj +sciamanno sciamannare ver +sciamano sciamano nom +sciamante sciamare ver +sciamanti sciamare ver +sciamare sciamare ver +sciamarono sciamare ver +sciamata sciamare ver +sciamate sciamare ver +sciamati sciamare ver +sciamato sciamare ver +sciamatura sciamatura nom +sciamature sciamatura nom +sciamavano sciamare ver +sciame sciame nom +sciameranno sciamare ver +sciami sciame nom +sciampagna sciampagna nom +sciampagnotta sciampagnotta adj +sciampagnotte sciampagnotta nom +sciamò sciamare ver +scianca sciancare ver +sciancata sciancare ver +sciancati sciancato adj +sciancato sciancato adj +scianchi sciancare ver +scianco sciancare ver +sciancrata sciancrato adj +sciancrati sciancrato adj +sciancrato sciancrato adj +sciando sciare ver +sciangai sciangai nom +sciano sciare ver +sciantosa sciantosa nom +sciantose sciantosa nom +sciantung sciantung nom +sciarada sciarada nom +sciarade sciarada nom +sciare sciare ver +sciarpa sciarpa nom +sciarpe sciarpa nom +sciarti sciare ver +sciata sciare ver +sciatalgia sciatalgia nom +sciate sciare ver +sciati sciare ver +sciatica sciatico adj +sciatiche sciatico adj +sciatici sciatico adj +sciatico sciatico adj +sciato sciare ver +sciatore sciatore nom +sciatori sciatore nom +sciatrice sciatore nom +sciatrici sciatore nom +sciatta sciatto adj +sciatte sciatto adj +sciatteria sciatteria nom +sciatterie sciatteria nom +sciatti sciatto adj +sciatto sciatto adj +sciattone sciattone nom +sciattoni sciattone nom +sciava sciare ver +sciavo sciare ver +scibile scibile nom +scibili scibile nom +sciccherie sciccheria nom +scie scia nom +science science nom +sciente sciente adj +scientemente scientemente adv +scienti sciente adj +scientifica scientifico adj +scientificamente scientificamente adv +scientifiche scientifico adj +scientifici scientifico adj +scientifico scientifico adj +scientismo scientismo nom +scienza scienza nom +scienze scienza nom +scienziata scienziato nom +scienziate scienziato nom +scienziati scienziato nom +scienziato scienziato nom +scifi scifo nom +scifo scifo nom +scii sciare ver +sciistica sciistico adj +sciistiche sciistico adj +sciistici sciistico adj +sciistico sciistico adj +sciita sciita adj +sciite sciita adj +sciiti sciita adj +scilla scilla nom +scille scilla nom +scimitarra scimitarra nom +scimitarre scimitarra nom +scimmia scimmia nom +scimmie scimmia nom +scimmiesca scimmiesco adj +scimmiesche scimmiesco adj +scimmieschi scimmiesco adj +scimmiesco scimmiesco adj +scimmiotta scimmiottare ver +scimmiottando scimmiottare ver +scimmiottano scimmiottare ver +scimmiottare scimmiottare ver +scimmiottava scimmiottare ver +scimmiottino scimmiottare ver +scimmiotto scimmiotto nom +scimpanzé scimpanzé nom +scimuniti scimunito adj +scimunito scimunito adj +scinchi scinco nom +scinco scinco nom +scindano scindere ver +scinde scindere ver +scindendo scindere ver +scindendola scindere ver +scindendoli scindere ver +scindendolo scindere ver +scindendosi scindere ver +scinderanno scindere ver +scindere scindere ver +scinderei scindere ver +scinderla scindere ver +scinderle scindere ver +scinderli scindere ver +scinderlo scindere ver +scinderne scindere ver +scindersi scindere ver +scinderà scindere ver +scindesse scindere ver +scindeva scindere ver +scindiamo scindere ver +scindibile scindibile adj +scindibili scindibile adj +scindo scindere ver +scindono scindere ver +scintigrafia scintigrafia nom +scintigrafie scintigrafia nom +scintilla scintilla nom +scintillando scintillare ver +scintillano scintillare ver +scintillante scintillare ver +scintillanti scintillare ver +scintillare scintillare ver +scintillasse scintillare ver +scintillava scintillare ver +scintillavano scintillare ver +scintillazione scintillazione nom +scintille scintilla nom +scintilli scintillio nom +scintillio scintillio nom +scintillò scintillare ver +scintoismo scintoismo nom +scintoista scintoista nom +scintoiste scintoista nom +scintoisti scintoista nom +scio sciare ver +sciocca sciocco adj +scioccando scioccare ver +scioccante scioccare ver +scioccanti scioccare ver +scioccare scioccare ver +scioccarono scioccare ver +scioccata scioccare ver +scioccate scioccare ver +scioccati scioccare ver +scioccato scioccare ver +sciocche sciocco adj +scioccherà scioccare ver +sciocchezza sciocchezza nom +sciocchezze sciocchezza nom +sciocchi sciocco adj +sciocchino scioccare ver +sciocco sciocco adj +scioccò scioccare ver +sciogli sciogliere ver +sciogliamo sciogliere ver +scioglibile scioglibile adj +scioglie sciogliere ver +sciogliemmo sciogliere ver +sciogliendo sciogliere ver +sciogliendola sciogliere ver +sciogliendole sciogliere ver +sciogliendoli sciogliere ver +sciogliendolo sciogliere ver +sciogliendone sciogliere ver +sciogliendosi sciogliere ver +scioglier sciogliere ver +scioglierai sciogliere ver +scioglieranno sciogliere ver +scioglierci sciogliere ver +sciogliere sciogliere ver +scioglierebbe sciogliere ver +scioglierebbero sciogliere ver +scioglieremo sciogliere ver +scioglierete sciogliere ver +scioglierla sciogliere ver +scioglierle sciogliere ver +scioglierli sciogliere ver +scioglierlo sciogliere ver +scioglierne sciogliere ver +sciogliersi sciogliere ver +sciogliervi sciogliere ver +scioglierà sciogliere ver +scioglierò sciogliere ver +sciogliesse sciogliere ver +sciogliessero sciogliere ver +sciogliete sciogliere ver +scioglietevi sciogliere ver +scioglieva sciogliere ver +scioglievano sciogliere ver +scioglilingua scioglilingua nom +scioglimenti scioglimento nom +scioglimento scioglimento nom +sciolga sciogliere ver +sciolgano sciogliere ver +sciolgo sciogliere ver +sciolgono sciogliere ver +sciolina sciolina nom +sciolinare sciolinare ver +sciolinatura sciolinatura nom +scioline sciolina nom +sciolino sciolinare ver +sciolse sciogliere ver +sciolsero sciogliere ver +sciolsi sciogliere ver +sciolta sciogliere ver +sciolte sciogliere ver +scioltezza scioltezza nom +sciolti sciogliere ver +sciolto sciogliere ver +sciopera scioperare ver +scioperando scioperare ver +scioperano scioperare ver +scioperante scioperante nom +scioperanti scioperante nom +scioperare scioperare ver +scioperarono scioperare ver +scioperata scioperato adj +scioperati scioperare ver +scioperato scioperare ver +scioperava scioperare ver +scioperavano scioperare ver +scioperi sciopero nom +sciopero sciopero nom +scioperò scioperare ver +sciorina sciorinare ver +sciorinando sciorinare ver +sciorinano sciorinare ver +sciorinare sciorinare ver +sciorinarono sciorinare ver +sciorinata sciorinare ver +sciorinate sciorinare ver +sciorinati sciorinare ver +sciorinato sciorinare ver +sciovia sciovia nom +sciovie sciovia nom +sciovinismo sciovinismo nom +sciovinista sciovinista nom +scioviniste sciovinista nom +sciovinisti sciovinista nom +sciovinistica sciovinistico adj +sciovinistiche sciovinistico adj +sciovinistico sciovinistico adj +scipita scipito adj +scipiti scipito adj +scippa scippare ver +scippando scippare ver +scippano scippare ver +scippare scippare ver +scippargli scippare ver +scipparono scippare ver +scippata scippare ver +scippati scippare ver +scippato scippare ver +scippatore scippatore nom +scippatori scippatore nom +scippi scippo nom +scippo scippo nom +scippò scippare ver +scirocchi scirocco nom +scirocco scirocco nom +sciropparsi sciroppare ver +sciroppata sciroppare ver +sciroppate sciroppare ver +sciroppati sciroppare ver +sciroppato sciroppare ver +sciroppi sciroppo nom +sciroppo sciroppo nom +sciropposa sciropposo adj +sciroppose sciropposo adj +sciropposi sciropposo adj +sciropposo sciropposo adj +scisma scisma nom +scismatica scismatico adj +scismatiche scismatico adj +scismatici scismatico adj +scismatico scismatico adj +scismi scisma nom +scissa scindere ver +scisse scindere ver +scissi scindere ver +scissile scissile adj +scissione scissione nom +scissioni scissione nom +scissionismo scissionismo nom +scissionista scissionista nom +scissioniste scissionista nom +scissionisti scissionista nom +scisso scindere ver +scissura scissura nom +scissure scissura nom +scisti scisto nom +scisto scisto nom +scistosa scistoso adj +scistose scistoso adj +scistosi scistoso adj +scistosità scistosità nom +scistoso scistoso adj +sciupa sciupare ver +sciupando sciupare ver +sciupano sciupare ver +sciupare sciupare ver +sciupasse sciupare ver +sciupata sciupare ver +sciupate sciupare ver +sciupati sciupare ver +sciupato sciupare ver +sciupiamo sciupare ver +sciupio sciupio nom +sciupone sciupone nom +sciupò sciupare ver +sciuscià sciuscià nom +scivola scivolare ver +scivolamento scivolamento nom +scivolando scivolare ver +scivolano scivolare ver +scivolante scivolare ver +scivolanti scivolare ver +scivolar scivolare ver +scivolare scivolare ver +scivolarle scivolare ver +scivolarono scivolare ver +scivolarvi scivolare ver +scivolasse scivolare ver +scivolassero scivolare ver +scivolata scivolata nom +scivolate scivolata nom +scivolati scivolare ver +scivolato scivolare ver +scivolava scivolare ver +scivolavano scivolare ver +scivolerebbe scivolare ver +scivolerebbero scivolare ver +scivolerà scivolare ver +scivoli scivolo nom +scivoliamo scivolare ver +scivolino scivolare ver +scivolo scivolo nom +scivolone scivolone nom +scivoloni scivolone nom +scivolosa scivoloso adj +scivolose scivoloso adj +scivolosi scivoloso adj +scivoloso scivoloso adj +scivolò scivolare ver +scià scià nom +sciò sciare ver +sclera sclera nom +sclerale sclerale adj +sclerali sclerale adj +sclere sclera nom +sclerenchima sclerenchima nom +sclerenchimi sclerenchima nom +sclerodermia sclerodermia nom +sclerometro sclerometro nom +sclerosa sclerosare ver +sclerosante sclerosare ver +sclerosanti sclerosare ver +sclerosi sclerosi nom +sclerotica sclerotico adj +sclerotiche sclerotico adj +sclerotici sclerotico adj +sclerotico sclerotico adj +sclerotizzante sclerotizzare ver +sclerotizzarsi sclerotizzare ver +sclerotizzata sclerotizzare ver +sclerotizzate sclerotizzare ver +sclerotizzati sclerotizzare ver +sclerotizzato sclerotizzare ver +scocca scocca nom +scoccando scoccare ver +scoccano scoccare ver +scoccante scoccare ver +scoccar scoccare ver +scoccare scoccare ver +scoccarono scoccare ver +scoccasse scoccare ver +scoccata scoccare ver +scoccate scoccare ver +scoccati scoccare ver +scoccato scoccare ver +scoccava scoccare ver +scoccavano scoccare ver +scoccerebbe scocciare ver +scoccerà scocciare ver +scocche scocca nom +scoccheranno scoccare ver +scoccherà scoccare ver +scocchi scoccare ver +scocci scocciare ver +scoccia scocciare ver +scocciando scocciare ver +scocciano scocciare ver +scocciante scocciare ver +scoccianti scocciare ver +scocciare scocciare ver +scocciarmi scocciare ver +scocciarsi scocciare ver +scocciarvi scocciare ver +scocciata scocciare ver +scocciate scocciare ver +scocciati scocciare ver +scocciato scocciare ver +scocciatore scocciatore nom +scocciatori scocciatore nom +scocciatrice scocciatore nom +scocciatura scocciatura nom +scocciature scocciatura nom +scocciava scocciare ver +scoccio scocciare ver +scocciò scocciare ver +scocco scocco nom +scoccò scoccare ver +scodata scodare ver +scodate scodare ver +scodato scodare ver +scodella scodella nom +scodellare scodellare ver +scodellata scodellare ver +scodellati scodellare ver +scodellato scodellare ver +scodelle scodella nom +scodellini scodellino nom +scodellino scodellino nom +scodinzola scodinzolare ver +scodinzolando scodinzolare ver +scodinzolante scodinzolare ver +scodinzolare scodinzolare ver +scogli scoglio nom +scoglie scoglia nom +scogliera scogliera nom +scogliere scogliera nom +scoglio scoglio nom +scogliosa scoglioso adj +scogliose scoglioso adj +scogliosi scoglioso adj +scoglioso scoglioso adj +scoia scoiare ver +scoiattoli scoiattolo nom +scoiattolo scoiattolo nom +scola scolare ver +scolabottiglie scolabottiglie nom +scolando scolare ver +scolandosi scolare ver +scolano scolare ver +scolante scolare ver +scolanti scolare ver +scolapasta scolapasta nom +scolapiatti scolapiatti nom +scolar scolare ver +scolara scolaro nom +scolare scolare adj +scolaresca scolaresca nom +scolaresche scolaresca nom +scolaretta scolaretto nom +scolaretti scolaretto nom +scolaretto scolaretto nom +scolari scolare adj +scolarità scolarità nom +scolarizzazione scolarizzazione nom +scolarla scolare ver +scolarli scolare ver +scolaro scolaro nom +scolarsi scolare ver +scolasse scolare ver +scolastica scolastico adj +scolastiche scolastico adj +scolastici scolastico adj +scolastico scolastico adj +scolata scolare ver +scolate scolare ver +scolati scolare ver +scolato scolare ver +scolatoi scolatoio nom +scolatoio scolatoio nom +scolatura scolatura nom +scoli scolio|scolo nom +scoliasta scoliasta nom +scoliaste scoliaste nom +scoliasti scoliasta|scoliaste nom +scolice scolice nom +scolici scolice nom +scolino scolare ver +scolio scolio nom +scoliosi scoliosi nom +scoliotica scoliotico adj +scoliotico scoliotico adj +scolla scollare ver +scollacciata scollacciato adj +scollacciate scollacciato adj +scollacciati scollacciato adj +scollacciato scollacciarsi ver +scollamenti scollamento nom +scollamento scollamento nom +scollano scollare ver +scollare scollare ver +scollarsi scollare ver +scollata scollare ver +scollate scollato adj +scollati scollato adj +scollato scollare ver +scollatura scollatura nom +scollature scollatura nom +scolli scollo nom +scollo scollo nom +scollò scollare ver +scolmatore scolmatore nom +scolmatori scolmatore nom +scolo scolo nom +scolopendra scolopendra nom +scolopendre scolopendra nom +scolopi scolopio nom +scolopio scolopio nom +scolora scolorare ver +scoloramento scoloramento nom +scolorano scolorare ver +scolorare scolorare ver +scolorendo scolorire ver +scolorimenti scolorimento nom +scolorimento scolorimento nom +scolorina scolorina nom +scolorire scolorire ver +scolorirono scolorire ver +scolorirsi scolorire ver +scolorisce scolorire ver +scoloriscono scolorire ver +scolorita scolorire ver +scolorite scolorire ver +scoloriti scolorire ver +scolorito scolorire ver +scolparsi scolpare ver +scolpato scolpare ver +scolpendo scolpire ver +scolpendole scolpire ver +scolpire scolpire ver +scolpirla scolpire ver +scolpirlo scolpire ver +scolpirne scolpire ver +scolpirono scolpire ver +scolpirà scolpire ver +scolpisce scolpire ver +scolpisci scolpire ver +scolpisco scolpire ver +scolpiscono scolpire ver +scolpisse scolpire ver +scolpita scolpire ver +scolpite scolpire ver +scolpiti scolpire ver +scolpito scolpire ver +scolpiva scolpire ver +scolpivano scolpire ver +scolpì scolpire ver +scolta scolta nom +scolte scolta nom +scolò scolare ver +scombiccherate scombiccherare ver +scombina scombinare ver +scombinando scombinare ver +scombinano scombinare ver +scombinare scombinare ver +scombinata scombinato adj +scombinate scombinato adj +scombinati scombinare ver +scombinato scombinare ver +scombinerà scombinare ver +scombinò scombinare ver +scombro scombro nom +scombussola scombussolare ver +scombussolamenti scombussolamento nom +scombussolamento scombussolamento nom +scombussolando scombussolare ver +scombussolano scombussolare ver +scombussolare scombussolare ver +scombussolarono scombussolare ver +scombussolata scombussolare ver +scombussolati scombussolare ver +scombussolato scombussolare ver +scombussolerebbe scombussolare ver +scombussolerà scombussolare ver +scombussolò scombussolare ver +scommessa scommessa nom +scommesse scommessa nom +scommessi scommettere ver +scommesso scommettere ver +scommetta scommettere ver +scommette scommettere ver +scommettendo scommettere ver +scommetterci scommettere ver +scommettere scommettere ver +scommetterei scommettere ver +scommetterla scommettere ver +scommetterli scommettere ver +scommettete scommettere ver +scommetteva scommettere ver +scommettevano scommettere ver +scommetti scommettere ver +scommettiamo scommettere ver +scommettitore scommettitore nom +scommettitori scommettitore nom +scommetto scommettere ver +scommettono scommettere ver +scommise scommettere ver +scommisero scommettere ver +scomoda scomodo adj +scomodando scomodare ver +scomodano scomodare ver +scomodare scomodare ver +scomodarmi scomodare ver +scomodarono scomodare ver +scomodarsi scomodare ver +scomodata scomodare ver +scomodate scomodare ver +scomodati scomodare ver +scomodato scomodare ver +scomode scomodo adj +scomoderei scomodare ver +scomodi scomodo adj +scomodiamo scomodare ver +scomodità scomodità nom +scomodo scomodo adj +scomodò scomodare ver +scompagina scompaginare ver +scompaginamento scompaginamento nom +scompaginando scompaginare ver +scompaginandone scompaginare ver +scompaginano scompaginare ver +scompaginare scompaginare ver +scompaginarle scompaginare ver +scompaginarne scompaginare ver +scompaginarono scompaginare ver +scompaginarsi scompaginare ver +scompaginasse scompaginare ver +scompaginata scompaginare ver +scompaginate scompaginare ver +scompaginati scompaginare ver +scompaginato scompaginare ver +scompaginava scompaginare ver +scompaginavano scompaginare ver +scompaginò scompaginare ver +scompagnata scompagnare ver +scompagnate scompagnare ver +scompagnato scompagnato adj +scompaia scomparire ver +scompaiano scomparire ver +scompaio scomparire ver +scompaiono scomparire ver +scompare scomparire ver +scomparendo scomparire ver +scomparendoci scomparire ver +scompari scomparire ver +scompariranno scomparire ver +scomparire scomparire ver +scomparirebbe scomparire ver +scomparirebbero scomparire ver +scompariremo scomparire ver +scomparirne scomparire ver +scomparirono scomparire ver +scomparirà scomparire ver +scomparisse scomparire ver +scomparissero scomparire ver +scomparite scomparire ver +scompariva scomparire ver +scomparivano scomparire ver +scomparsa scomparsa|scomparso nom +scomparse scomparso adj +scomparsi scomparire ver +scomparso scomparire ver +scomparti scomparto nom +scompartimenti scompartimento nom +scompartimento scompartimento nom +scompartire scompartire ver +scompartita scompartire ver +scompartite scompartire ver +scompartiti scompartire ver +scompartito scompartire ver +scomparto scomparto nom +scomparve scomparire ver +scompensata scompensare ver +scompensati scompensato nom +scompensato scompensato adj +scompensi scompenso nom +scompenso scompenso nom +scompigli scompiglio nom +scompiglia scompigliare ver +scompigliando scompigliare ver +scompigliano scompigliare ver +scompigliare scompigliare ver +scompigliarne scompigliare ver +scompigliarono scompigliare ver +scompigliarsi scompigliare ver +scompigliata scompigliare ver +scompigliate scompigliare ver +scompigliati scompigliare ver +scompigliato scompigliare ver +scompigliava scompigliare ver +scompigliavano scompigliare ver +scompiglio scompiglio nom +scompigliò scompigliare ver +scompone scomporre ver +scomponendo scomporre ver +scomponendole scomporre ver +scomponendoli scomporre ver +scomponendolo scomporre ver +scomponendone scomporre ver +scomponendosi scomporre ver +scomponesse scomporre ver +scomponeva scomporre ver +scomponevano scomporre ver +scomponga scomporre ver +scompongo scomporre ver +scompongono scomporre ver +scomponi scomporre ver +scomponiamo scomporre ver +scomponibile scomponibile adj +scomponibili scomponibile adj +scomponibilità scomponibilità nom +scomporla scomporre ver +scomporlo scomporre ver +scomporre scomporre ver +scomporrà scomporre ver +scomporsi scomporre ver +scompose scomporre ver +scomposero scomporre ver +scomposizione scomposizione nom +scomposizioni scomposizione nom +scomposta scomporre ver +scomposte scomporre ver +scompostezza scompostezza nom +scomposti scomporre ver +scomposto scomporre ver +scomunica scomunica nom +scomunicami scomunicare ver +scomunicando scomunicare ver +scomunicandolo scomunicare ver +scomunicandone scomunicare ver +scomunicandosi scomunicare ver +scomunicano scomunicare ver +scomunicare scomunicare ver +scomunicarlo scomunicare ver +scomunicarono scomunicare ver +scomunicasse scomunicare ver +scomunicata scomunicare ver +scomunicate scomunicato nom +scomunicati scomunicare ver +scomunicato scomunicare ver +scomunicava scomunicare ver +scomunicavano scomunicare ver +scomuniche scomunica nom +scomunicherà scomunicare ver +scomunichiamo scomunicare ver +scomunico scomunicare ver +scomunicò scomunicare ver +sconce sconcio adj +sconcerta sconcertare ver +sconcertando sconcertare ver +sconcertano sconcertare ver +sconcertante sconcertante adj +sconcertanti sconcertante adj +sconcertare sconcertare ver +sconcertarmi sconcertare ver +sconcertarono sconcertare ver +sconcertata sconcertare ver +sconcertate sconcertato adj +sconcertati sconcertare ver +sconcertato sconcertare ver +sconcertava sconcertare ver +sconcertavano sconcertare ver +sconcerti sconcerto nom +sconcerto sconcerto nom +sconcertò sconcertare ver +sconcezza sconcezza nom +sconcezze sconcezza nom +sconci sconcio adj +sconcia sconcio adj +sconciata sconciare ver +sconcio sconcio adj +sconclusionata sconclusionato adj +sconclusionate sconclusionato adj +sconclusionati sconclusionato adj +sconclusionato sconclusionato adj +scondita scondito adj +sconditi scondito adj +scondito scondito adj +sconfessa sconfessare ver +sconfessando sconfessare ver +sconfessano sconfessare ver +sconfessare sconfessare ver +sconfessarla sconfessare ver +sconfessarlo sconfessare ver +sconfessarne sconfessare ver +sconfessarono sconfessare ver +sconfessata sconfessare ver +sconfessate sconfessare ver +sconfessati sconfessare ver +sconfessato sconfessare ver +sconfessava sconfessare ver +sconfessavano sconfessare ver +sconfesserebbe sconfessare ver +sconfesserà sconfessare ver +sconfessi sconfessare ver +sconfessino sconfessare ver +sconfessione sconfessione nom +sconfesso sconfessare ver +sconfessò sconfessare ver +sconfigga sconfiggere ver +sconfiggano sconfiggere ver +sconfigge sconfiggere ver +sconfiggendo sconfiggere ver +sconfiggendola sconfiggere ver +sconfiggendole sconfiggere ver +sconfiggendoli sconfiggere ver +sconfiggendolo sconfiggere ver +sconfiggendone sconfiggere ver +sconfiggendovi sconfiggere ver +sconfigger sconfiggere ver +sconfiggeranno sconfiggere ver +sconfiggere sconfiggere ver +sconfiggerei sconfiggere ver +sconfiggeremo sconfiggere ver +sconfiggerete sconfiggere ver +sconfiggerla sconfiggere ver +sconfiggerle sconfiggere ver +sconfiggerli sconfiggere ver +sconfiggerlo sconfiggere ver +sconfiggermi sconfiggere ver +sconfiggerne sconfiggere ver +sconfiggersi sconfiggere ver +sconfiggerti sconfiggere ver +sconfiggerà sconfiggere ver +sconfiggerò sconfiggere ver +sconfiggesse sconfiggere ver +sconfiggessero sconfiggere ver +sconfiggete sconfiggere ver +sconfiggeva sconfiggere ver +sconfiggevano sconfiggere ver +sconfiggi sconfiggere ver +sconfiggiamo sconfiggere ver +sconfiggili sconfiggere ver +sconfiggilo sconfiggere ver +sconfiggono sconfiggere ver +sconfina sconfinare|sconfinato ver +sconfinamenti sconfinamento nom +sconfinamento sconfinamento nom +sconfinando sconfinare|sconfinato ver +sconfinano sconfinare|sconfinato ver +sconfinante sconfinare|sconfinato ver +sconfinanti sconfinare|sconfinato ver +sconfinare sconfinare|sconfinato ver +sconfinarono sconfinare|sconfinato ver +sconfinasse sconfinare|sconfinato ver +sconfinassero sconfinare|sconfinato ver +sconfinata sconfinare|sconfinato ver +sconfinate sconfinare|sconfinato ver +sconfinati sconfinare|sconfinato ver +sconfinato sconfinare|sconfinato ver +sconfinava sconfinare|sconfinato ver +sconfinavano sconfinare|sconfinato ver +sconfineranno sconfinare|sconfinato ver +sconfinerebbe sconfinare|sconfinato ver +sconfinerà sconfinare|sconfinato ver +sconfini sconfinare|sconfinato ver +sconfiniamo sconfinare|sconfinato ver +sconfinino sconfinare|sconfinato ver +sconfinò sconfinare|sconfinato ver +sconfisse sconfiggere ver +sconfissero sconfiggere ver +sconfissi sconfiggere ver +sconfitta sconfitta|sconfitto nom +sconfitte sconfitta|sconfitto nom +sconfitti sconfiggere ver +sconfitto sconfiggere ver +sconfortante sconfortante adj +sconfortanti sconfortante adj +sconfortata sconfortato adj +sconfortati sconfortato adj +sconfortato sconfortato adj +sconforti sconforto nom +sconforto sconforto nom +scongela scongelare ver +scongelando scongelare ver +scongelano scongelare ver +scongelare scongelare ver +scongelarsi scongelare ver +scongelata scongelare ver +scongelate scongelare ver +scongelati scongelare ver +scongelato scongelare ver +scongelò scongelare ver +scongiura scongiurare ver +scongiurai scongiurare ver +scongiurando scongiurare ver +scongiurandoli scongiurare ver +scongiurandolo scongiurare ver +scongiurandone scongiurare ver +scongiurano scongiurare ver +scongiurare scongiurare ver +scongiurarla scongiurare ver +scongiurarle scongiurare ver +scongiurarli scongiurare ver +scongiurarlo scongiurare ver +scongiurarne scongiurare ver +scongiurarono scongiurare ver +scongiurasse scongiurare ver +scongiurassero scongiurare ver +scongiurata scongiurare ver +scongiurate scongiurare ver +scongiurati scongiurare ver +scongiurato scongiurare ver +scongiurava scongiurare ver +scongiuravano scongiurare ver +scongiurerà scongiurare ver +scongiuri scongiuro nom +scongiuriamo scongiurare ver +scongiurino scongiurare ver +scongiuro scongiuro nom +scongiurò scongiurare ver +sconnessa sconnettere ver +sconnesse sconnesso adj +sconnessi sconnesso adj +sconnessione sconnessione nom +sconnessioni sconnessione nom +sconnesso sconnettere ver +sconnette sconnettere ver +sconnettendo sconnettere ver +sconnettere sconnettere ver +sconnettersi sconnettere ver +sconnettono sconnettere ver +sconosce sconoscere ver +sconoscenza sconoscenza nom +sconoscere sconoscere ver +sconosceva sconoscere ver +sconoscevo sconoscere ver +sconosci sconoscere ver +sconosciamo sconoscere ver +sconosciuta sconoscere ver +sconosciute sconoscere ver +sconosciuti sconoscere ver +sconosciuto sconosciuto adj +sconosco sconoscere ver +sconquassa sconquassare ver +sconquassando sconquassare ver +sconquassare sconquassare ver +sconquassarono sconquassare ver +sconquassata sconquassare ver +sconquassate sconquassare ver +sconquassati sconquassare ver +sconquassato sconquassare ver +sconquassavano sconquassare ver +sconquassi sconquasso nom +sconquasso sconquasso nom +sconquassò sconquassare ver +sconsacrare sconsacrare ver +sconsacrata sconsacrare ver +sconsacrate sconsacrare ver +sconsacrati sconsacrare ver +sconsacrato sconsacrare ver +sconsacrò sconsacrare ver +sconsiderata sconsiderato adj +sconsiderate sconsiderato adj +sconsideratezza sconsideratezza nom +sconsideratezze sconsideratezza nom +sconsiderati sconsiderato adj +sconsiderato sconsiderato adj +sconsigli sconsigliare ver +sconsiglia sconsigliare ver +sconsigliammo sconsigliare ver +sconsigliamo sconsigliare ver +sconsigliando sconsigliare ver +sconsigliandogli sconsigliare ver +sconsigliandolo sconsigliare ver +sconsigliandone sconsigliare ver +sconsigliano sconsigliare ver +sconsigliare sconsigliare ver +sconsigliarle sconsigliare ver +sconsigliarlo sconsigliare ver +sconsigliarne sconsigliare ver +sconsigliarono sconsigliare ver +sconsigliarti sconsigliare ver +sconsigliasse sconsigliare ver +sconsigliassero sconsigliare ver +sconsigliata sconsigliare ver +sconsigliate sconsigliare ver +sconsigliati sconsigliare ver +sconsigliato sconsigliare ver +sconsigliava sconsigliare ver +sconsigliavano sconsigliare ver +sconsiglierebbe sconsigliare ver +sconsiglierebbero sconsigliare ver +sconsiglierei sconsigliare ver +sconsiglino sconsigliare ver +sconsiglio sconsigliare ver +sconsigliò sconsigliare ver +sconsolante sconsolante adj +sconsolata sconsolare ver +sconsolate sconsolato adj +sconsolati sconsolato adj +sconsolato sconsolare ver +sconta scontare ver +scontabili scontabile adj +scontando scontare ver +scontandone scontare ver +scontano scontare ver +scontante scontante adj +scontare scontare ver +scontarla scontare ver +scontarli scontare ver +scontarono scontare ver +scontarsi scontare ver +scontarvi scontare ver +scontasse scontare ver +scontata scontare ver +scontatario scontatario nom +scontate scontato adj +scontati scontato adj +scontato scontare ver +scontava scontare ver +scontavano scontare ver +scontenta scontento adj +scontentando scontentare ver +scontentano scontentare ver +scontentare scontentare ver +scontentarla scontentare ver +scontentarlo scontentare ver +scontentati scontentare ver +scontentato scontentare ver +scontentava scontentare ver +scontente scontento adj +scontenterebbe scontentare ver +scontenterà scontentare ver +scontentezza scontentezza nom +scontenti scontento adj +scontentiamo scontentare ver +scontento scontento nom +scontentò scontentare ver +sconteranno scontare ver +sconterà scontare ver +sconti sconto nom +scontiamo scontare ver +sconto sconto nom +scontra scontrare ver +scontrando scontrare ver +scontrandomi scontrare ver +scontrandosi scontrare ver +scontrano scontrare ver +scontrar scontrare ver +scontrarci scontrare ver +scontrare scontrare ver +scontrarmi scontrare ver +scontrarono scontrare ver +scontrarsi scontrare ver +scontrarti scontrare ver +scontrarvi scontrare ver +scontrasi scontrare ver +scontrasse scontrare ver +scontrassero scontrare ver +scontrata scontrare ver +scontrate scontrare ver +scontrati scontrare ver +scontrato scontrare ver +scontrava scontrare ver +scontravano scontrare ver +scontreranno scontrare ver +scontrerebbe scontrare ver +scontreremmo scontrare ver +scontrerà scontrare ver +scontri scontro nom +scontriamo scontrare ver +scontrini scontrino nom +scontrino scontrino nom +scontro scontro nom +scontrosa scontroso adj +scontrose scontroso adj +scontrosi scontroso adj +scontrosità scontrosità nom +scontroso scontroso adj +scontrò scontrare ver +scontò scontare ver +sconveniente sconveniente adj +sconvenienti sconveniente adj +sconvenienza sconvenienza nom +sconvenienze sconvenienza nom +sconvenire sconvenire ver +sconvolga sconvolgere ver +sconvolge sconvolgere ver +sconvolgendo sconvolgere ver +sconvolgendogli sconvolgere ver +sconvolgendola sconvolgere ver +sconvolgendole sconvolgere ver +sconvolgendolo sconvolgere ver +sconvolgendone sconvolgere ver +sconvolgente sconvolgente adj +sconvolgenti sconvolgente adj +sconvolgeranno sconvolgere ver +sconvolgere sconvolgere ver +sconvolgerebbe sconvolgere ver +sconvolgerebbero sconvolgere ver +sconvolgergli sconvolgere ver +sconvolgerla sconvolgere ver +sconvolgerli sconvolgere ver +sconvolgerlo sconvolgere ver +sconvolgermi sconvolgere ver +sconvolgerne sconvolgere ver +sconvolgersi sconvolgere ver +sconvolgerti sconvolgere ver +sconvolgerà sconvolgere ver +sconvolgesse sconvolgere ver +sconvolgessero sconvolgere ver +sconvolgeva sconvolgere ver +sconvolgevano sconvolgere ver +sconvolgi sconvolgere ver +sconvolgimenti sconvolgimento nom +sconvolgimento sconvolgimento nom +sconvolgono sconvolgere ver +sconvolse sconvolgere ver +sconvolsero sconvolgere ver +sconvolta sconvolgere ver +sconvolte sconvolgere ver +sconvolti sconvolgere ver +sconvolto sconvolgere ver +scoop scoop nom +scoordinamento scoordinamento nom +scoordinati scoordinati adj +scooter scooter nom +scooteristi scooterista nom +scopa scopa nom +scopamene scopare ver +scopami scopare ver +scopare scopare ver +scoparmi scopare ver +scoparsi scopare ver +scoparti scopare ver +scopata scopata nom +scopate scopata nom +scopato scopare ver +scopatore scopatore nom +scopatori scopatore nom +scope scopa nom +scoperchia scoperchiare ver +scoperchiando scoperchiare ver +scoperchiandola scoperchiare ver +scoperchiandolo scoperchiare ver +scoperchiano scoperchiare ver +scoperchiare scoperchiare ver +scoperchiarlo scoperchiare ver +scoperchiarono scoperchiare ver +scoperchiata scoperchiare ver +scoperchiate scoperchiare ver +scoperchiati scoperchiare ver +scoperchiato scoperchiare ver +scoperchiò scoperchiare ver +scoperta scoperta nom +scoperte scoperta nom +scoperti scoprire ver +scoperto scoprire ver +scopi scopo nom +scopiazza scopiazzare ver +scopiazzando scopiazzare ver +scopiazzano scopiazzare ver +scopiazzare scopiazzare ver +scopiazzarla scopiazzare ver +scopiazzata scopiazzare ver +scopiazzate scopiazzare ver +scopiazzati scopiazzare ver +scopiazzato scopiazzare ver +scopiazzavano scopiazzare ver +scopiazzo scopiazzare ver +scopini scopino nom +scopino scopino nom +scopo scopo nom +scopolamina scopolamina nom +scopolamine scopolamina nom +scopone scopone nom +scoponi scopone nom +scoppi scoppio nom +scoppia scoppiare ver +scoppiai scoppiare ver +scoppiammo scoppiare ver +scoppiando scoppiare ver +scoppiano scoppiare ver +scoppiante scoppiare ver +scoppianti scoppiare ver +scoppiar scoppiare ver +scoppiare scoppiare ver +scoppiarono scoppiare ver +scoppiasse scoppiare ver +scoppiassero scoppiare ver +scoppiata scoppiare ver +scoppiate scoppiare ver +scoppiati scoppiare ver +scoppiato scoppiare ver +scoppiava scoppiare ver +scoppiavano scoppiare ver +scoppieranno scoppiare ver +scoppierebbe scoppiare ver +scoppierà scoppiare ver +scoppietta scoppiettare ver +scoppiettando scoppiettare ver +scoppiettante scoppiettare ver +scoppiettanti scoppiettare ver +scoppiettare scoppiettare ver +scoppiettate scoppiettare ver +scoppiettava scoppiettare ver +scoppietti scoppiettare ver +scoppiettii scoppiettio nom +scoppiettio scoppiettio nom +scoppietto scoppiettare ver +scoppino scoppiare ver +scoppio scoppio nom +scoppiò scoppiare ver +scoppola scoppola nom +scoppole scoppola nom +scopra scoprire ver +scoprano scoprire ver +scopre scoprire ver +scoprendo scoprire ver +scoprendola scoprire ver +scoprendole scoprire ver +scoprendoli scoprire ver +scoprendolo scoprire ver +scoprendomi scoprire ver +scoprendone scoprire ver +scoprendosi scoprire ver +scoprendovi scoprire ver +scopri scoprire ver +scopriamo scoprire ver +scoprii scoprire ver +scoprilo scoprire ver +scoprimento scoprimento nom +scoprimmo scoprire ver +scoprir scoprire ver +scoprirai scoprire ver +scopriranno scoprire ver +scoprire scoprire ver +scoprirebbe scoprire ver +scoprirebbero scoprire ver +scopriremmo scoprire ver +scopriremo scoprire ver +scopriresti scoprire ver +scoprirete scoprire ver +scoprirgli scoprire ver +scoprirla scoprire ver +scoprirle scoprire ver +scoprirli scoprire ver +scoprirlo scoprire ver +scoprirmi scoprire ver +scoprirne scoprire ver +scoprirono scoprire ver +scoprirsi scoprire ver +scoprirvi scoprire ver +scoprirà scoprire ver +scoprirò scoprire ver +scoprisse scoprire ver +scoprissero scoprire ver +scoprissi scoprire ver +scoprissimo scoprire ver +scoprite scoprire ver +scopritelo scoprire ver +scopritore scopritore nom +scopritori scopritore nom +scopritrice scopritore nom +scopriva scoprire ver +scoprivamo scoprire ver +scoprivano scoprire ver +scoprivi scoprire ver +scoprivo scoprire ver +scopro scoprire ver +scoprono scoprire ver +scoprì scoprire ver +scora scorare ver +scoraggeranno scoraggiare ver +scoraggerebbe scoraggiare ver +scoraggerebbero scoraggiare ver +scoraggerei scoraggiare ver +scoraggeremo scoraggiare ver +scoraggerà scoraggiare ver +scoraggi scoraggiare ver +scoraggia scoraggiare ver +scoraggiamenti scoraggiamento nom +scoraggiamento scoraggiamento nom +scoraggiamo scoraggiare ver +scoraggiamoci scoraggiare ver +scoraggiando scoraggiare ver +scoraggiandone scoraggiare ver +scoraggiano scoraggiare ver +scoraggiante scoraggiare ver +scoraggianti scoraggiare ver +scoraggiarci scoraggiare ver +scoraggiare scoraggiare ver +scoraggiarla scoraggiare ver +scoraggiarli scoraggiare ver +scoraggiarlo scoraggiare ver +scoraggiarne scoraggiare ver +scoraggiarono scoraggiare ver +scoraggiarsi scoraggiare ver +scoraggiarti scoraggiare ver +scoraggiasse scoraggiare ver +scoraggiassero scoraggiare ver +scoraggiata scoraggiare ver +scoraggiate scoraggiare ver +scoraggiati scoraggiare ver +scoraggiato scoraggiare ver +scoraggiava scoraggiare ver +scoraggiavano scoraggiare ver +scoraggino scoraggiare ver +scoraggio scoraggiare ver +scoraggiò scoraggiare ver +scoramenti scoramento nom +scoramento scoramento nom +scorano scorare ver +scorare scorare ver +scorata scorare ver +scorati scorare ver +scorbutica scorbutico adj +scorbutiche scorbutico adj +scorbutici scorbutico adj +scorbutico scorbutico adj +scorbuto scorbuto nom +scorci scorcio nom +scorcia scorciare ver +scorciando scorciare ver +scorciare scorciare ver +scorciata scorciare ver +scorciate scorciare ver +scorciati scorciare ver +scorciato scorciare ver +scorciatoia scorciatoia nom +scorciatoie scorciatoia nom +scorcio scorcio nom +scorda scordare ver +scordai scordare ver +scordami scordare ver +scordando scordare ver +scordandomi scordare ver +scordandosi scordare ver +scordano scordare ver +scordar scordare ver +scordarci scordare ver +scordare scordare ver +scordarle scordare ver +scordarlo scordare ver +scordarmene scordare ver +scordarmi scordare ver +scordarne scordare ver +scordarono scordare ver +scordarselo scordare ver +scordarsene scordare ver +scordarsi scordare ver +scordarti scordare ver +scordarvi scordare ver +scordasse scordare ver +scordata scordare ver +scordate scordare ver +scordatelo scordare ver +scordatevelo scordare ver +scordatevi scordare ver +scordati scordare ver +scordato scordare ver +scordava scordare ver +scordavo scordare ver +scorderai scordare ver +scorderanno scordare ver +scorderà scordare ver +scorderò scordare ver +scordi scordare ver +scordiamo scordare ver +scordiamocelo scordare ver +scordiamoci scordare ver +scordiamolo scordare ver +scordino scordare ver +scordo scordare ver +scordò scordare ver +score score nom +scoregge scoreggia nom +scoreggia scoreggia nom +scoreggiare scoreggiare ver +scorfani scorfano nom +scorfano scorfano nom +scorga scorgere ver +scorgano scorgere ver +scorge scorgere ver +scorgemmo scorgere ver +scorgendo scorgere ver +scorgendolo scorgere ver +scorgendone scorgere ver +scorgendovi scorgere ver +scorgeranno scorgere ver +scorgere scorgere ver +scorgerla scorgere ver +scorgerli scorgere ver +scorgerlo scorgere ver +scorgerne scorgere ver +scorgersi scorgere ver +scorgervi scorgere ver +scorgerà scorgere ver +scorgesse scorgere ver +scorgessero scorgere ver +scorgeva scorgere ver +scorgevano scorgere ver +scorgevo scorgere ver +scorgi scorgere ver +scorgiamo scorgere ver +scorgo scorgere ver +scorgono scorgere ver +scoria scoria nom +scorie scoria nom +scorna scornare ver +scornarsi scornare ver +scornarvi scornare ver +scornate scornare ver +scornati scornare ver +scornato scornare ver +scorni scorno nom +scorno scorno nom +scoro scorare ver +scorpacciata scorpacciata nom +scorpacciate scorpacciata nom +scorpene scorpena nom +scorpioide scorpioide adj +scorpioidi scorpioide adj +scorpione scorpione nom +scorpioni scorpione nom +scorpora scorporare ver +scorporai scorporare ver +scorporando scorporare ver +scorporandola scorporare ver +scorporandole scorporare ver +scorporandoli scorporare ver +scorporandolo scorporare ver +scorporandone scorporare ver +scorporano scorporare ver +scorporare scorporare ver +scorporarla scorporare ver +scorporarle scorporare ver +scorporarli scorporare ver +scorporarlo scorporare ver +scorporarne scorporare ver +scorporarsi scorporare ver +scorporassimo scorporare ver +scorporata scorporare ver +scorporate scorporare ver +scorporati scorporare ver +scorporato scorporare ver +scorporerei scorporare ver +scorporerà scorporare ver +scorpori scorporo nom +scorporiamo scorporare ver +scorporo scorporo nom +scorporò scorporare ver +scorra scorrere ver +scorrano scorrere ver +scorrazza scorrazzare ver +scorrazzando scorrazzare ver +scorrazzano scorrazzare ver +scorrazzante scorrazzare ver +scorrazzare scorrazzare ver +scorrazzarono scorrazzare ver +scorrazzate scorrazzare ver +scorrazzato scorrazzare ver +scorrazzava scorrazzare ver +scorrazzavano scorrazzare ver +scorrazzo scorrazzare ver +scorrazzò scorrazzare ver +scorre scorrere ver +scorrendo scorrere ver +scorrendola scorrere ver +scorrendoli scorrere ver +scorrendolo scorrere ver +scorrendone scorrere ver +scorrente scorrere ver +scorrenti scorrere ver +scorrer scorrere ver +scorreranno scorrere ver +scorrerci scorrere ver +scorrere scorrere ver +scorrerebbe scorrere ver +scorrerebbero scorrere ver +scorrergli scorrere ver +scorreria scorreria nom +scorrerie scorreria nom +scorrerla scorrere ver +scorrerle scorrere ver +scorrerli scorrere ver +scorrerlo scorrere ver +scorrermi scorrere ver +scorrerne scorrere ver +scorrersi scorrere ver +scorrerti scorrere ver +scorrervi scorrere ver +scorrerà scorrere ver +scorresse scorrere ver +scorressero scorrere ver +scorrete scorrere ver +scorretta scorretto adj +scorrettamente scorrettamente adv +scorrette scorretto adj +scorrettezza scorrettezza nom +scorrettezze scorrettezza nom +scorretti scorretto adj +scorretto scorretto adj +scorreva scorrere ver +scorrevano scorrere ver +scorrevole scorrevole adj +scorrevolezza scorrevolezza nom +scorrevoli scorrevole adj +scorri scorrere ver +scorriamo scorrere ver +scorribanda scorribanda nom +scorribande scorribanda nom +scorrimenti scorrimento nom +scorrimento scorrimento nom +scorro scorrere ver +scorrono scorrere ver +scorsa scorso adj +scorse scorso adj +scorsero scorgere|scorrere ver +scorsi scorso adj +scorso scorso adj +scorsoi scorsoio adj +scorsoio scorsoio adj +scorta scorta nom +scortando scortare ver +scortandola scortare ver +scortandoli scortare ver +scortandolo scortare ver +scortano scortare ver +scortare scortare ver +scortarla scortare ver +scortarle scortare ver +scortarli scortare ver +scortarlo scortare ver +scortarne scortare ver +scortarono scortare ver +scortarvi scortare ver +scortasse scortare ver +scortassero scortare ver +scortata scortare ver +scortate scortare ver +scortati scortare ver +scortato scortare ver +scortava scortare ver +scortavano scortare ver +scorte scorta nom +scortecci scortecciare ver +scorteccia scortecciare ver +scortecciando scortecciare ver +scortecciare scortecciare ver +scortecciata scortecciare ver +scortecciati scortecciare ver +scortecciato scortecciare ver +scorteranno scortare ver +scorterà scortare ver +scortese scortese adj +scortesi scortese adj +scortesia scortesia nom +scortesie scortesia nom +scorti scorgere ver +scortica scorticare ver +scorticandogli scorticare ver +scorticandola scorticare ver +scorticandosi scorticare ver +scorticano scorticare ver +scorticare scorticare ver +scorticarla scorticare ver +scorticarlo scorticare ver +scorticarono scorticare ver +scorticata scorticare ver +scorticate scorticare ver +scorticateli scorticare ver +scorticati scorticare ver +scorticato scorticare ver +scorticatore scorticatore nom +scorticatori scorticatore nom +scorticatura scorticatura nom +scorticavano scorticare ver +scortichini scortichino nom +scortichino scortichino nom +scortico scorticare ver +scorticò scorticare ver +scortino scortare ver +scorto scorgere ver +scortò scortare ver +scorza scorza nom +scorze scorza nom +scorzonera scorzonera nom +scoscende scoscendere ver +scoscendimenti scoscendimento nom +scoscendimento scoscendimento nom +scoscesa scosceso adj +scoscese scosceso adj +scoscesi scosceso adj +scosceso scoscendere ver +scossa scossa nom +scosse scossa nom +scossero scuocere|scuotere ver +scossi scosso adj +scosso scuotere ver +scossone scossone nom +scossoni scossone nom +scosta scostare ver +scostando scostare ver +scostandosi scostare ver +scostano scostare ver +scostante scostante adj +scostanti scostante adj +scostare scostare ver +scostarono scostare ver +scostarsene scostare ver +scostarsi scostare ver +scostasse scostare ver +scostata scostare ver +scostate scostare ver +scostati scostare ver +scostato scostare ver +scostava scostare ver +scostavano scostare ver +scosti scostare ver +scostino scostare ver +scostumata scostumato adj +scostumate scostumato adj +scostumatezza scostumatezza nom +scostumatezze scostumatezza nom +scostumati scostumato adj +scostumato scostumato adj +scostò scostare ver +scotch scotch nom +scotennarono scotennare ver +scotennata scotennare ver +scotennati scotennare ver +scotennato scotennare ver +scotennatrice scotennatore nom +scotolati scotolare ver +scotoma scotoma nom +scotomi scotoma nom +scotta scottare ver +scottadito scottadito adv +scottandosi scottare ver +scottano scottare ver +scottante scottante adj +scottanti scottante adj +scottare scottare ver +scottarsi scottare ver +scottarti scottare ver +scottata scottare ver +scottate scottare ver +scottati scottare ver +scottato scottare ver +scottatura scottatura nom +scottature scottatura nom +scottava scottare ver +scotte scotta nom +scotti scuocere ver +scottino scottare ver +scotto scotto nom +scottò scottare ver +scout scout adj +scoutismo scoutismo nom +scoutistica scoutistico adj +scoutistiche scoutistico adj +scoutistico scoutistico adj +scova scovare ver +scovai scovare ver +scovando scovare ver +scovandole scovare ver +scovandoli scovare ver +scovandolo scovare ver +scovano scovare ver +scovare scovare ver +scovarla scovare ver +scovarle scovare ver +scovarli scovare ver +scovarlo scovare ver +scovarne scovare ver +scovarono scovare ver +scovarti scovare ver +scovassi scovare ver +scovata scovare ver +scovate scovare ver +scovati scovare ver +scovato scovare ver +scovava scovare ver +scoveranno scovare ver +scoverà scovare ver +scovi scovare ver +scoviamo scovare ver +scovino scovare ver +scovo scovare ver +scovoli scovolo nom +scovolini scovolino nom +scovolino scovolino nom +scovolo scovolo nom +scovò scovare ver +scozia scozia nom +scozie scozia nom +scozzese scozzese adj +scozzesi scozzese adj +scozzi scozzare ver +scozzonare scozzonare ver +scrambler scrambler nom +screanzati screanzato nom +screanzato screanzato adj +scredita screditare ver +screditando screditare ver +screditandoli screditare ver +screditandolo screditare ver +screditandone screditare ver +screditano screditare ver +screditanti screditare ver +screditarci screditare ver +screditare screditare ver +screditarla screditare ver +screditarle screditare ver +screditarli screditare ver +screditarlo screditare ver +screditarmi screditare ver +screditarne screditare ver +screditarono screditare ver +screditarsi screditare ver +screditarti screditare ver +screditasse screditare ver +screditata screditare ver +screditate screditare ver +screditati screditare ver +screditato screditare ver +screditava screditare ver +screditavano screditare ver +screditerebbe screditare ver +screditi screditare ver +screditino screditare ver +scredito scredito nom +screditò screditare ver +screening screening nom +screma scremare ver +scremando scremare ver +scremandola scremare ver +scremare scremare ver +scremata scremare ver +scremate scremare ver +scremati scremare ver +scremato scremare ver +scrematrice scrematrice nom +scrematrici scrematrice nom +scrematura scrematura nom +scremature scrematura nom +scremiamo scremare ver +scremo scremare ver +scremò scremare ver +screpola screpolare ver +screpolandosi screpolare ver +screpolante screpolare ver +screpolarsi screpolare ver +screpolata screpolare ver +screpolate screpolare ver +screpolati screpolare ver +screpolato screpolare ver +screpolatura screpolatura nom +screpolature screpolatura nom +screzi screzio nom +screziano screziare ver +screziata screziare ver +screziate screziare ver +screziati screziare ver +screziato screziare ver +screziatura screziatura nom +screziature screziatura nom +screzio screzio nom +scriba scriba nom +scribacchiami scribacchiare ver +scribacchiare scribacchiare ver +scribacchiato scribacchiare ver +scribacchini scribacchino nom +scribacchino scribacchino nom +scribacchiò scribacchiare ver +scribi scriba nom +scricchiola scricchiolare ver +scricchiolando scricchiolare ver +scricchiolano scricchiolare ver +scricchiolante scricchiolare ver +scricchiolanti scricchiolare ver +scricchiolare scricchiolare ver +scricchiolava scricchiolare ver +scricchiolii scricchiolio nom +scricchiolio scricchiolio nom +scricchiolò scricchiolare ver +scriccioli scricciolo nom +scricciolo scricciolo nom +scrigni scrigno nom +scrigno scrigno nom +scriminatura scriminatura nom +scriminature scriminatura nom +scrisse scrivere ver +scrissero scrivere ver +scrissi scrivere ver +scristianizzate scristianizzare ver +scriteriata scriteriato adj +scriteriate scriteriato adj +scriteriati scriteriato adj +scriteriato scriteriato adj +scritta scritto adj +scritte scritto adj +scritti scritto nom +scritto scrivere ver +scrittoi scrittoio nom +scrittoio scrittoio nom +scrittore scrittore nom +scrittori scrittore nom +scrittoria scrittorio adj +scrittorie scrittorio adj +scrittorio scrittorio adj +scrittrice scrittore nom +scrittrici scrittore nom +scrittura scrittura nom +scritturale scritturale adj +scritturali scritturale adj +scritturando scritturare ver +scritturandola scritturare ver +scritturandolo scritturare ver +scritturano scritturare ver +scritturare scritturare ver +scritturarla scritturare ver +scritturarli scritturare ver +scritturarlo scritturare ver +scritturarono scritturare ver +scritturasse scritturare ver +scritturata scritturare ver +scritturate scritturare ver +scritturati scritturare ver +scritturato scritturare ver +scritturava scritturare ver +scritture scrittura nom +scritturerà scritturare ver +scritturò scritturare ver +scriva scrivere ver +scrivani scrivano nom +scrivania scrivania nom +scrivanie scrivania nom +scrivano scrivere ver +scrive scrivere ver +scrivemmo scrivere ver +scrivendo scrivere ver +scrivendoci scrivere ver +scrivendogli scrivere ver +scrivendola scrivere ver +scrivendole scrivere ver +scrivendoli scrivere ver +scrivendolo scrivere ver +scrivendomi scrivere ver +scrivendone scrivere ver +scrivendosi scrivere ver +scrivendoti scrivere ver +scrivendovi scrivere ver +scrivente scrivente nom +scriventi scrivente nom +scriver scrivere ver +scriverai scrivere ver +scriveranno scrivere ver +scrivercelo scrivere ver +scriverci scrivere ver +scrivere scrivere ver +scriverebbe scrivere ver +scriverebbero scrivere ver +scriverei scrivere ver +scriveremmo scrivere ver +scriveremo scrivere ver +scrivereste scrivere ver +scriveresti scrivere ver +scriverete scrivere ver +scrivergli scrivere ver +scrivergliela scrivere ver +scriverglielo scrivere ver +scriverla scrivere ver +scriverle scrivere ver +scriverli scrivere ver +scriverlo scrivere ver +scrivermela scrivere ver +scrivermele scrivere ver +scrivermelo scrivere ver +scrivermi scrivere ver +scriverne scrivere ver +scriversela scrivere ver +scriversele scrivere ver +scriverseli scrivere ver +scriversi scrivere ver +scrivertelo scrivere ver +scriverti scrivere ver +scrivervi scrivere ver +scriverà scrivere ver +scriverò scrivere ver +scrivesse scrivere ver +scrivessero scrivere ver +scrivessi scrivere ver +scrivessimo scrivere ver +scriveste scrivere ver +scrivesti scrivere ver +scrivete scrivere ver +scrivetecelo scrivere ver +scriveteci scrivere ver +scrivetegli scrivere ver +scrivetele scrivere ver +scriveteli scrivere ver +scrivetelo scrivere ver +scrivetemelo scrivere ver +scrivetemi scrivere ver +scriveva scrivere ver +scrivevamo scrivere ver +scrivevano scrivere ver +scrivevate scrivere ver +scrivevi scrivere ver +scrivevo scrivere ver +scrivi scrivere ver +scriviamo scrivere ver +scriviamoci scrivere ver +scriviamogli scrivere ver +scriviamola scrivere ver +scriviamole scrivere ver +scriviamolo scrivere ver +scriviate scrivere ver +scrivici scrivere ver +scrivigli scrivere ver +scrivila scrivere ver +scrivile scrivere ver +scrivili scrivere ver +scrivilo scrivere ver +scrivimi scrivere ver +scrivine scrivere ver +scriviti scrivere ver +scrivo scrivere ver +scrivono scrivere ver +scrocca scroccare ver +scroccando scroccare ver +scroccano scroccare ver +scroccare scroccare ver +scroccargli scroccare ver +scroccato scroccare ver +scroccherei scroccare ver +scrocchi scrocco nom +scrocco scrocco nom +scroccona scroccone nom +scroccone scroccone nom +scrocconi scroccone nom +scrofa scrofa nom +scrofe scrofa nom +scrofola scrofola nom +scrofole scrofola nom +scrofolosa scrofoloso adj +scrofolosi scrofoloso adj +scrofulariacee scrofulariacee nom +scrolla scrollare ver +scrollando scrollare ver +scrollandosi scrollare ver +scrollano scrollare ver +scrollare scrollare ver +scrollarmi scrollare ver +scrollarono scrollare ver +scrollarselo scrollare ver +scrollarsi scrollare ver +scrollata scrollata nom +scrollate scrollata nom +scrollati scrollare ver +scrollato scrollare ver +scrollerebbe scrollare ver +scrollerà scrollare ver +scrolli scrollo nom +scrollo scrollo nom +scrollò scrollare ver +scrosci scroscio nom +scroscia scrosciare ver +scrosciano scrosciare ver +scrosciante scrosciante adj +scroscianti scrosciante adj +scrosciare scrosciare ver +scrosciava scrosciare ver +scroscio scroscio nom +scrosta scrostare ver +scrostando scrostare ver +scrostare scrostare ver +scrostarono scrostare ver +scrostata scrostare ver +scrostate scrostare ver +scrostati scrostare ver +scrostato scrostare ver +scrostatura scrostatura nom +scrostature scrostatura nom +scroto scroto nom +scrupoli scrupolo nom +scrupolo scrupolo nom +scrupolosa scrupoloso adj +scrupolosamente scrupolosamente adv +scrupolose scrupoloso adj +scrupolosi scrupoloso adj +scrupolosità scrupolosità nom +scrupoloso scrupoloso adj +scruta scrutare ver +scrutando scrutare ver +scrutano scrutare ver +scrutare scrutare ver +scrutarla scrutare ver +scrutarlo scrutare ver +scrutarono scrutare ver +scrutasse scrutare ver +scrutata scrutare ver +scrutate scrutare ver +scrutati scrutare ver +scrutato scrutare ver +scrutatore scrutatore nom +scrutatori scrutatore nom +scrutava scrutare ver +scrutavano scrutare ver +scruti scrutare ver +scrutinare scrutinare ver +scrutinata scrutinare ver +scrutinate scrutinare ver +scrutinati scrutinare ver +scrutinato scrutinare ver +scrutinatore scrutinatore nom +scrutinatori scrutinatore nom +scrutini scrutinio nom +scrutinio scrutinio nom +scrutino scrutinare ver +scruto scrutare ver +scrutò scrutare ver +scuce scucire ver +scucendo scucire ver +scuci scucire ver +scucire scucire ver +scucirgli scucire ver +scucirle scucire ver +scuciti scucito adj +scucito scucire ver +scuciture scucitura nom +scuderia scuderia nom +scuderie scuderia nom +scudetti scudetto nom +scudetto scudetto nom +scudi scudo nom +scudieri scudiero nom +scudiero scudiero nom +scudisci scudiscio nom +scudisciate scudisciata nom +scudiscio scudiscio nom +scudo scudo nom +scuffia scuffia nom +scuffie scuffia nom +scugnizzi scugnizzo nom +scugnizzo scugnizzo nom +sculaccerò sculacciare ver +sculacci sculacciare ver +sculaccia sculacciare ver +sculacciando sculacciare ver +sculacciandolo sculacciare ver +sculacciare sculacciare ver +sculacciarli sculacciare ver +sculacciarlo sculacciare ver +sculacciata sculacciata nom +sculacciate sculacciare ver +sculacciato sculacciare ver +sculaccione sculaccione nom +sculaccioni sculaccione nom +sculacciò sculacciare ver +sculetta sculettare ver +sculettando sculettare ver +sculettare sculettare ver +scultore scultore nom +scultorea scultoreo adj +scultoree scultoreo adj +scultorei scultoreo adj +scultoreo scultoreo adj +scultori scultore nom +scultoria scultorio adj +scultorie scultorio adj +scultorio scultorio adj +scultrice scultore nom +scultrici scultore nom +scultura scultura nom +sculture scultura nom +scuoi scuoiare ver +scuoia scuoiare ver +scuoiando scuoiare ver +scuoiandolo scuoiare ver +scuoiare scuoiare ver +scuoiarle scuoiare ver +scuoiarlo scuoiare ver +scuoiarono scuoiare ver +scuoiata scuoiare ver +scuoiate scuoiare ver +scuoiati scuoiare ver +scuoiato scuoiare ver +scuoiò scuoiare ver +scuola scuola nom +scuolabus scuolabus nom +scuole scuola nom +scuota scuotere ver +scuotano scuotere ver +scuote scuotere ver +scuotendo scuotere ver +scuotendola scuotere ver +scuotendole scuotere ver +scuotendoli scuotere ver +scuotendolo scuotere ver +scuotendosi scuotere ver +scuotente scuotere ver +scuoter scuotere ver +scuoterci scuotere ver +scuotere scuotere ver +scuoterla scuotere ver +scuoterle scuotere ver +scuoterli scuotere ver +scuoterlo scuotere ver +scuoterne scuotere ver +scuotersi scuotere ver +scuoterà scuotere ver +scuotesse scuotere ver +scuoteva scuotere ver +scuotevano scuotere ver +scuoti scuotere ver +scuotiamoci scuotere ver +scuotili scuotere ver +scuotimenti scuotimento nom +scuotimento scuotimento nom +scuotiti scuotere ver +scuoto scuotere ver +scuotono scuotere ver +scura scuro adj +scure scuro adj +scurendo scurire ver +scurendosi scurire ver +scuretto scuretto nom +scuri scuro adj +scuriranno scurire ver +scurire scurire ver +scurirei scurire ver +scurirlo scurire ver +scurirono scurire ver +scurirsi scurire ver +scurisca scurire ver +scurisce scurire ver +scuriscono scurire ver +scurissimo scurire ver +scurita scurire ver +scurite scurire ver +scuriti scurire ver +scurito scurire ver +scuriva scurire ver +scuro scuro adj +scurrile scurrile adj +scurrili scurrile adj +scurrilità scurrilità nom +scurì scurire ver +scusa scusa nom +scusabile scusabile adj +scusabili scusabile adj +scusaci scusare ver +scusai scusare ver +scusami scusare ver +scusando scusare ver +scusandomi scusare ver +scusandosi scusare ver +scusandoti scusare ver +scusano scusare ver +scusante scusante nom +scusanti scusante nom +scusarci scusare ver +scusare scusare ver +scusarla scusare ver +scusarlo scusare ver +scusarmene scusare ver +scusarmi scusare ver +scusarono scusare ver +scusarsi scusare ver +scusarti scusare ver +scusasse scusare ver +scusassero scusare ver +scusassi scusare ver +scusata scusare ver +scusate scusare ver +scusateci scusare ver +scusatela scusare ver +scusatelo scusare ver +scusatemi scusare ver +scusatevi scusare ver +scusati scusare ver +scusato scusare ver +scusava scusare ver +scusavano scusare ver +scusavo scusare ver +scuse scusa nom +scuserai scusare ver +scuseranno scusare ver +scuserebbe scusare ver +scuserete scusare ver +scuserà scusare ver +scuserò scusare ver +scusi scusare ver +scusiamo scusare ver +scusino scusare ver +scuso scusare ver +scusò scusare ver +sdebita sdebitare ver +sdebitare sdebitare ver +sdebitarmi sdebitare ver +sdebitarsi sdebitare ver +sdebitato sdebitare ver +sdebiterà sdebitare ver +sdebitò sdebitare ver +sdegna sdegnare ver +sdegnando sdegnare ver +sdegnano sdegnare ver +sdegnare sdegnare ver +sdegnarono sdegnare ver +sdegnarsi sdegnare ver +sdegnata sdegnare ver +sdegnate sdegnare ver +sdegnati sdegnare ver +sdegnato sdegnare ver +sdegnava sdegnare ver +sdegni sdegnare ver +sdegno sdegno nom +sdegnosa sdegnoso adj +sdegnose sdegnoso adj +sdegnosi sdegnoso adj +sdegnoso sdegnoso adj +sdegnò sdegnare ver +sdentata sdentato adj +sdentate sdentato adj +sdentati sdentati|sdentato nom +sdentato sdentato adj +sdilinquimenti sdilinquimento nom +sdogana sdoganare ver +sdoganamento sdoganamento nom +sdoganando sdoganare ver +sdoganano sdoganare ver +sdoganare sdoganare ver +sdoganarli sdoganare ver +sdoganarsi sdoganare ver +sdoganata sdoganare ver +sdoganate sdoganare ver +sdoganati sdoganare ver +sdoganato sdoganare ver +sdoganava sdoganare ver +sdoganiamo sdoganare ver +sdoganò sdoganare ver +sdolcinata sdolcinato adj +sdolcinate sdolcinato adj +sdolcinatezza sdolcinatezza nom +sdolcinatezze sdolcinatezza nom +sdolcinati sdolcinato adj +sdolcinato sdolcinato adj +sdolcinature sdolcinatura nom +sdoppia sdoppiare ver +sdoppiamenti sdoppiamento nom +sdoppiamento sdoppiamento nom +sdoppiando sdoppiare ver +sdoppiandosi sdoppiare ver +sdoppiano sdoppiare ver +sdoppiante sdoppiare ver +sdoppiare sdoppiare ver +sdoppiarla sdoppiare ver +sdoppiarlo sdoppiare ver +sdoppiarono sdoppiare ver +sdoppiarsi sdoppiare ver +sdoppiata sdoppiare ver +sdoppiate sdoppiare ver +sdoppiati sdoppiare ver +sdoppiato sdoppiare ver +sdoppiava sdoppiare ver +sdoppiavano sdoppiare ver +sdoppierebbe sdoppiare ver +sdoppierà sdoppiare ver +sdoppio sdoppiare ver +sdoppiò sdoppiare ver +sdrai sdraio nom +sdraia sdraiare ver +sdraiamoci sdraiare ver +sdraiandosi sdraiare ver +sdraiano sdraiare ver +sdraiare sdraiare ver +sdraiarlo sdraiare ver +sdraiarmi sdraiare ver +sdraiarono sdraiare ver +sdraiarsi sdraiare ver +sdraiata sdraiare ver +sdraiate sdraiare ver +sdraiati sdraiare ver +sdraiato sdraiare ver +sdraiava sdraiare ver +sdraie sdraia nom +sdraierà sdraiare ver +sdraio sdraio nom +sdraiò sdraiare ver +sdrammatizza sdrammatizzare ver +sdrammatizzando sdrammatizzare ver +sdrammatizzano sdrammatizzare ver +sdrammatizzante sdrammatizzare ver +sdrammatizzanti sdrammatizzare ver +sdrammatizzare sdrammatizzare ver +sdrammatizzate sdrammatizzare ver +sdrammatizzato sdrammatizzare ver +sdrammatizzava sdrammatizzare ver +sdrammatizziamo sdrammatizzare ver +sdrammatizzo sdrammatizzare ver +sdrucciola sdrucciolo adj +sdrucciolare sdrucciolare ver +sdrucciolato sdrucciolare ver +sdrucciole sdrucciolo adj +sdrucciolevole sdrucciolevole adj +sdrucciolevoli sdrucciolevole adj +sdruccioli sdrucciolo adj +sdrucciolo sdrucciolo adj +sdrucire sdrucire ver +sdrucita sdrucire ver +sdrucite sdrucire ver +sdruciti sdrucire ver +sdrucito sdrucire ver +se se con +sebacea sebaceo adj +sebacee sebaceo adj +sebacei sebaceo adj +sebaceo sebaceo adj +sebbene sebbene con +sebi sebo nom +sebo sebo nom +seborrea seborrea nom +secante secante adj +secanti secante nom +secca secco adj +seccai seccare ver +seccando seccare ver +seccandosi seccare ver +seccano seccare ver +seccante seccante adj +seccanti seccante adj +seccar seccare ver +seccare seccare ver +seccarli seccare ver +seccarlo seccare ver +seccarmi seccare ver +seccarono seccare ver +seccarsi seccare ver +seccata seccare ver +seccate seccare ver +seccatemi seccare ver +seccati seccare ver +seccato seccare ver +seccatore seccatore nom +seccatori seccatore nom +seccatura seccatura nom +seccature seccatura nom +seccava seccare ver +seccavano seccare ver +seccavo seccare ver +secche secco adj +seccherai seccare ver +seccherebbe seccare ver +seccherà seccare ver +secchezza secchezza nom +secchezze secchezza nom +secchi secco adj +secchia secchia nom +secchiate seccare ver +secchie secchia nom +secchielli secchiello nom +secchiello secchiello nom +secchino seccare ver +secchio secchio nom +secchiona secchione nom +secchione secchione nom +secchioni secchione nom +secco secco adj +seccume seccume nom +seccò seccare ver +secentesca secentesco adj +secentesche secentesco adj +secenteschi secentesco adj +secentesco secentesco adj +secentismo secentismo nom +secentista secentista nom +secentisti secentista nom +secento secento nom +secernano secernere ver +secerne secernere ver +secernendo secernere ver +secernendoli secernere ver +secernente secernere ver +secernenti secernere ver +secerneranno secernere ver +secernere secernere ver +secernerà secernere ver +secerneva secernere ver +secernevano secernere ver +secernono secernere ver +secessione secessione nom +secessioni secessione nom +secessionismi secessionismo nom +secessionismo secessionismo nom +secessionista secessionista nom +secessioniste secessionista nom +secessionisti secessionista nom +seco seco pro +secolare secolare adj +secolari secolare adj +secolarità secolarità nom +secolarizza secolarizzare ver +secolarizzando secolarizzare ver +secolarizzante secolarizzare ver +secolarizzare secolarizzare ver +secolarizzarono secolarizzare ver +secolarizzarsi secolarizzare ver +secolarizzata secolarizzare ver +secolarizzate secolarizzare ver +secolarizzati secolarizzare ver +secolarizzato secolarizzare ver +secolarizzavano secolarizzare ver +secolarizzazione secolarizzazione nom +secolarizzazioni secolarizzazione nom +secolarizzò secolarizzare ver +secoli secolo nom +secolo secolo nom +seconda secondo adj_sup +secondando secondare ver +secondar secondare ver +secondare secondare ver +secondari secondario adj +secondaria secondario adj +secondariamente secondariamente adv +secondarie secondario adj +secondario secondario adj +secondata secondare ver +secondato secondare ver +seconde secondo adj +secondi secondo adj +secondini secondino nom +secondino secondino nom +secondo secondo pre +secondoché secondoché con +secondogenita secondogenito adj +secondogeniti secondogenito nom +secondogenito secondogenito adj +secondogenitura secondogenitura nom +secondò secondare ver +secretati secretare ver +secreti secreto nom +secreto secreto nom +secretori secretorio adj +secretoria secretorio adj +secretorie secretorio adj +secretorio secretorio adj +secrezione secrezione nom +secrezioni secrezione nom +secrétaire secrétaire nom +seda sedare ver +sedai sedare ver +sedale sedare ver +sedando sedare ver +sedani sedano nom +sedano sedano nom +sedante sedare ver +sedanti sedare ver +sedar sedare ver +sedare sedare ver +sedarla sedare ver +sedarle sedare ver +sedarli sedare ver +sedarlo sedare ver +sedarono sedare ver +sedasse sedare ver +sedassero sedare ver +sedata sedare ver +sedate sedare ver +sedati sedare ver +sedativa sedativo adj +sedative sedativo adj +sedativi sedativo adj +sedativo sedativo adj +sedato sedare ver +sedavano sedare ver +sedavi sedare ver +sede sede nom +sedemmo sedere ver +sedendo sedere ver +sedendogli sedere ver +sedendosi sedere ver +sedendoti sedere ver +sedendovi sedere ver +sedentari sedentario adj +sedentaria sedentario adj +sedentarie sedentario adj +sedentario sedentario adj +sedente sedente adj +sedenti sedente adj +seder sedere ver +sederci sedere ver +sedere sedere ver +sederi sedere nom +sedermi sedere ver +sedersi sedere ver +sederti sedere ver +sedervi sedere ver +sederà sedare|sedere ver +sedesse sedere ver +sedessero sedere ver +sedesti sedere ver +sedete sedere ver +sedetevi sedere ver +sedette sedere ver +sedettero sedere ver +sedetti sedere ver +sedeva sedere ver +sedevamo sedere ver +sedevano sedere ver +sedevi sedere ver +sedevo sedere ver +sedi sede nom +sedia sedia nom +sediamo sedare|sedere ver +sediamoci sedare|sedere ver +sediari sediario nom +sediario sediario nom +sediate sedare|sedere ver +sedicenne sedicenne adj +sedicenni sedicenne adj +sedicente sedicente adj +sedicenti sedicente adj +sedicesima sedicesimo adj +sedicesime sedicesimo adj +sedicesimi sedicesimo nom +sedicesimo sedicesimo adj +sedici sedici adj +sedie sedia nom +sedile sedile nom +sedili sedile nom +sedimenta sedimentare ver +sedimentaci sedimentare ver +sedimentali sedimentare ver +sedimentando sedimentare ver +sedimentandosi sedimentare ver +sedimentano sedimentare ver +sedimentar sedimentare ver +sedimentare sedimentare ver +sedimentari sedimentario adj +sedimentaria sedimentario adj +sedimentarie sedimentario adj +sedimentario sedimentario adj +sedimentarono sedimentare ver +sedimentarsi sedimentare ver +sedimentata sedimentare ver +sedimentate sedimentare ver +sedimentatesi sedimentare ver +sedimentati sedimentare ver +sedimentato sedimentare ver +sedimentavano sedimentare ver +sedimentazione sedimentazione nom +sedimentazioni sedimentazione nom +sedimenterà sedimentare ver +sedimenti sedimento nom +sedimentino sedimentare ver +sedimento sedimento nom +sedimentò sedimentare ver +sedino sedare ver +sedioli sediolo nom +sediolo sediolo nom +sedizione sedizione nom +sedizioni sedizione nom +sediziosa sedizioso adj +sediziose sedizioso adj +sediziosi sedizioso adj +sedizioso sedizioso adj +sedo sedare ver +sedotta sedurre ver +sedotte sedurre ver +sedotti sedurre ver +sedotto sedurre ver +seduca sedurre ver +seduce sedurre ver +seducendo sedurre ver +seducendola sedurre ver +seducendolo sedurre ver +seducendone sedurre ver +seducente seducente adj +seducenti seducente adj +seduceva sedurre ver +seduco sedurre ver +seducono sedurre ver +sedur sedurre ver +sedurla sedurre ver +sedurle sedurre ver +sedurli sedurre ver +sedurlo sedurre ver +sedurmi sedurre ver +sedurne sedurre ver +sedurranno sedurre ver +sedurre sedurre ver +sedurrà sedurre ver +sedurti sedurre ver +sedusse sedurre ver +sedussero sedurre ver +seduta seduta nom +sedute seduta nom +seduti sedere ver +seduto sedere ver +seduttore seduttore nom +seduttori seduttore nom +seduttrice seduttore adj +seduttrici seduttore nom +seduzione seduzione nom +seduzioni seduzione nom +sedò sedare ver +sega sega nom +segaci segare ver +segai segare ver +segala segala nom +segale segala|segale nom +segali segale nom +segaligna segaligno adj +segaligno segaligno adj +segalina segalino adj +segalini segalino adj +segando segare ver +segandole segare ver +segandolo segare ver +segandone segare ver +segano segare ver +seganti segare ver +segantini segantino nom +segantino segantino nom +segar segare ver +segarci segare ver +segare segare ver +segargli segare ver +segarla segare ver +segarle segare ver +segarli segare ver +segarlo segare ver +segarono segare ver +segarsi segare ver +segasse segare ver +segata segare ver +segate segare ver +segati segare ver +segato segare ver +segatrice segatrice nom +segatrici segatrice nom +segatura segatura nom +segature segatura nom +seggi seggio nom +seggio seggio nom +seggiola seggiola nom +seggiolai seggiolaio nom +seggiolaio seggiolaio nom +seggiole seggiola nom +seggiolini seggiolino nom +seggiolino seggiolino nom +seggiolone seggiolone nom +seggioloni seggiolone nom +seggiovia seggiovia nom +seggiovie seggiovia nom +seghe sega nom +segherei segare ver +segheria segheria nom +segherie segheria nom +seghetta seghettare ver +seghettata seghettare ver +seghettate seghettare ver +seghettati seghettare ver +seghettato seghettare ver +seghetti seghetto nom +seghetto seghetto nom +seghi segare ver +seghiamo segare ver +seghino segare ver +segi sego nom +segmenta segmentare ver +segmentaci segmentare ver +segmentale segmentare ver +segmentali segmentare ver +segmentando segmentare ver +segmentano segmentare ver +segmentare segmentare ver +segmentarsi segmentare ver +segmentata segmentare ver +segmentate segmentare ver +segmentati segmentare ver +segmentato segmentare ver +segmentavano segmentare ver +segmentazione segmentazione nom +segmentazioni segmentazione nom +segmenti segmento nom +segmento segmento nom +segna segnare ver +segnacaso segnacaso nom +segnacoli segnacolo nom +segnacolo segnacolo nom +segnai segnare ver +segnala segnalare ver +segnalaceli segnalare ver +segnalacelo segnalare ver +segnalaci segnalare ver +segnalai segnalare ver +segnalala segnalare ver +segnalale segnalare ver +segnalali segnalare ver +segnalalo segnalare ver +segnalamela segnalare ver +segnalamele segnalare ver +segnalameli segnalare ver +segnalamelo segnalare ver +segnalamenti segnalamento nom +segnalamento segnalamento nom +segnalami segnalare ver +segnalando segnalare ver +segnalandoci segnalare ver +segnalandogli segnalare ver +segnalandola segnalare ver +segnalandole segnalare ver +segnalandoli segnalare ver +segnalandolo segnalare ver +segnalandomi segnalare ver +segnalandone segnalare ver +segnalandosi segnalare ver +segnalandoti segnalare ver +segnalane segnalare ver +segnalano segnalare ver +segnalante segnalare ver +segnalanti segnalare ver +segnalarcele segnalare ver +segnalarceli segnalare ver +segnalarcelo segnalare ver +segnalarci segnalare ver +segnalare segnalare ver +segnalargli segnalare ver +segnalargliela segnalare ver +segnalarglielo segnalare ver +segnalarla segnalare ver +segnalarle segnalare ver +segnalarli segnalare ver +segnalarlo segnalare ver +segnalarmele segnalare ver +segnalarmelo segnalare ver +segnalarmene segnalare ver +segnalarmi segnalare ver +segnalarne segnalare ver +segnalarono segnalare ver +segnalarsi segnalare ver +segnalarteli segnalare ver +segnalartelo segnalare ver +segnalarti segnalare ver +segnalarvelo segnalare ver +segnalarvi segnalare ver +segnalasi segnalare ver +segnalasse segnalare ver +segnalassero segnalare ver +segnalassi segnalare ver +segnalassimo segnalare ver +segnalaste segnalare ver +segnalata segnalare ver +segnalate segnalare ver +segnalatecelo segnalare ver +segnalateci segnalare ver +segnalategli segnalare ver +segnalatela segnalare ver +segnalatele segnalare ver +segnalateli segnalare ver +segnalatelo segnalare ver +segnalatemele segnalare ver +segnalatemeli segnalare ver +segnalatemelo segnalare ver +segnalatemi segnalare ver +segnalatesi segnalare ver +segnalatevi segnalare ver +segnalati segnalare ver +segnalato segnalare ver +segnalatore segnalatore nom +segnalatori segnalatore nom +segnalatrici segnalatore nom +segnalava segnalare ver +segnalavano segnalare ver +segnalavi segnalare ver +segnalavo segnalare ver +segnalazione segnalazione nom +segnalazioni segnalazione nom +segnale segnale nom +segnaleranno segnalare ver +segnalerebbe segnalare ver +segnalerebbero segnalare ver +segnalerei segnalare ver +segnaleremo segnalare ver +segnaleresti segnalare ver +segnalerete segnalare ver +segnalerà segnalare ver +segnalerò segnalare ver +segnaletica segnaletica nom +segnaletiche segnaletico adj +segnaletici segnaletico adj +segnaletico segnaletico adj +segnali segnale nom +segnaliamo segnalare ver +segnaliamola segnalare ver +segnaliamoli segnalare ver +segnaliamolo segnalare ver +segnaliate segnalare ver +segnalibri segnalibro nom +segnalibro segnalibro nom +segnalinee segnalinee nom +segnalino segnalare ver +segnalo segnalare ver +segnalò segnalare ver +segnami segnare ver +segnando segnare ver +segnandola segnare ver +segnandole segnare ver +segnandoli segnare ver +segnandolo segnare ver +segnandomi segnare ver +segnandone segnare ver +segnandosi segnare ver +segnandoti segnare ver +segnandovi segnare ver +segnano segnare ver +segnante segnare ver +segnanti segnare ver +segnaposti segnaposto nom +segnaposto segnaposto nom +segnapunti segnapunti nom +segnar segnare ver +segnarci segnare ver +segnare segnare ver +segnargli segnare ver +segnarla segnare ver +segnarle segnare ver +segnarli segnare ver +segnarlo segnare ver +segnarmi segnare ver +segnarne segnare ver +segnarono segnare ver +segnarsela segnare ver +segnarselo segnare ver +segnarsi segnare ver +segnarti segnare ver +segnarvi segnare ver +segnasse segnare ver +segnassero segnare ver +segnassi segnare ver +segnasti segnare ver +segnata segnare ver +segnatamente segnatamente adv +segnatasse segnatasse nom +segnate segnato adj +segnatempo segnatempo nom +segnatevi segnare ver +segnati segnato adj +segnato segnare ver +segnatore segnatore nom +segnatori segnatore nom +segnatrice segnatore nom +segnatura segnatura nom +segnature segnatura nom +segnava segnare ver +segnavano segnare ver +segnavento segnavento adj +segnavia segnavia nom +segnavo segnare ver +segneranno segnare ver +segnerebbe segnare ver +segnerei segnare ver +segnerà segnare ver +segni segno nom +segniamo segnare ver +segnica segnico adj +segniche segnico adj +segnici segnico adj +segnico segnico adj +segnino segnare ver +segno segno nom +segnò segnare ver +sego sego nom +segrega segregare ver +segregaci segregare ver +segregando segregare ver +segregandola segregare ver +segregandole segregare ver +segregandoli segregare ver +segregano segregare ver +segreganti segregare ver +segregare segregare ver +segregarla segregare ver +segregarli segregare ver +segregarlo segregare ver +segregarono segregare ver +segregarsi segregare ver +segregarvi segregare ver +segregata segregare ver +segregate segregare ver +segregati segregare ver +segregato segregare ver +segregava segregare ver +segregavano segregare ver +segregazione segregazione nom +segregazioni segregazione nom +segregazionismo segregazionismo nom +segregazionista segregazionista nom +segregazioniste segregazionista nom +segregazionisti segregazionista nom +segreghi segregare ver +segregò segregare ver +segreta segreto adj +segretamente segretamente adv +segretari segretario nom +segretaria segretario nom +segretariati segretariato nom +segretariato segretariato nom +segretarie segretario nom +segretario segretario nom +segrete segreto adj +segreteria segreteria nom +segreterie segreteria nom +segretezza segretezza nom +segreti segreto adj +segreto segreto nom +segua seguire ver +seguace seguace nom +seguaci seguace nom +seguano seguire ver +segue seguire ver +seguendo seguire ver +seguendola seguire ver +seguendole seguire ver +seguendoli seguire ver +seguendolo seguire ver +seguendone seguire ver +seguendovi seguire ver +seguente seguente adj +seguenti seguente adj +segugi segugio nom +segugio segugio nom +segui seguire ver +seguiamo seguire ver +seguiamole seguire ver +seguiamoli seguire ver +seguiamolo seguire ver +seguiate seguire ver +seguici seguire ver +seguii seguire ver +seguila seguire ver +seguile seguire ver +seguilo seguire ver +seguimi seguire ver +seguimmo seguire ver +seguine seguire ver +seguir seguire ver +seguirai seguire ver +seguiranno seguire ver +seguirci seguire ver +seguire seguire ver +seguirebbe seguire ver +seguirebbero seguire ver +seguirei seguire ver +seguiremmo seguire ver +seguiremo seguire ver +seguirete seguire ver +seguirla seguire ver +seguirle seguire ver +seguirli seguire ver +seguirlo seguire ver +seguirmi seguire ver +seguirne seguire ver +seguirono seguire ver +seguirsi seguire ver +seguirti seguire ver +seguirvi seguire ver +seguirà seguire ver +seguirò seguire ver +seguisse seguire ver +seguissero seguire ver +seguissi seguire ver +seguissimo seguire ver +seguita seguire ver +seguitai seguitare ver +seguitando seguitare ver +seguitano seguitare ver +seguitar seguitare ver +seguitare seguitare ver +seguitarono seguitare ver +seguitarsi seguitare ver +seguitasse seguitare ver +seguitassero seguitare ver +seguitata seguitare ver +seguitate seguitare ver +seguitati seguitare ver +seguitato seguitare ver +seguitava seguitare ver +seguitavano seguitare ver +seguite seguire ver +seguiteci seguire ver +seguitela seguire ver +seguitemi seguire ver +seguiteranno seguitare ver +seguiterà seguitare ver +seguiterò seguitare ver +seguiti seguire ver +seguitiamo seguitare ver +seguito seguito nom +seguitò seguitare ver +seguiva seguire ver +seguivamo seguire ver +seguivano seguire ver +seguivi seguire ver +seguivo seguire ver +seguo seguire ver +seguono seguire ver +seguì seguire ver +segò segare ver +sei sei adj_sup +seicentesca seicentesco adj +seicentesche seicentesco adj +seicenteschi seicentesco adj +seicentesco seicentesco adj +seicento seicento nom +seienne seienne adj +seigiorni seigiorni nom +seigiornista seigiornista nom +seimila seimila adj +selce selce nom +selci selce nom +selcia selciare ver +selciano selciare ver +selciare selciare ver +selciata selciato adj +selciate selciato adj +selciati selciato adj +selciato selciato nom +selciatori selciatore nom +selciatura selciatura nom +seleni selenio nom +selenica selenico adj +selenico selenico adj +selenio selenio nom +selenita selenita nom +selenite selenita|selenite nom +seleniti selenita|selenite nom +selenografia selenografia nom +selenologia selenologia nom +selettiva selettivo adj +selettive selettivo adj +selettivi selettivo adj +selettività selettività nom +selettivo selettivo adj +selettore selettore nom +selettori selettore nom +seleziona selezionare ver +selezionale selezionare ver +selezionali selezionare ver +selezionalo selezionare ver +selezionamento selezionamento nom +selezionando selezionare ver +selezionandola selezionare ver +selezionandole selezionare ver +selezionandoli selezionare ver +selezionandolo selezionare ver +selezionandone selezionare ver +selezionano selezionare ver +selezionante selezionare ver +selezionare selezionare ver +selezionarla selezionare ver +selezionarle selezionare ver +selezionarli selezionare ver +selezionarlo selezionare ver +selezionarne selezionare ver +selezionarono selezionare ver +selezionasse selezionare ver +selezionassero selezionare ver +selezionata selezionare ver +selezionate selezionare ver +selezionatele selezionare ver +selezionati selezionato adj +selezionato selezionare ver +selezionatore selezionatore adj +selezionatori selezionatore nom +selezionatrice selezionatore adj +selezionatrici selezionatore adj +selezionava selezionare ver +selezionavano selezionare ver +selezione selezione nom +selezioneranno selezionare ver +selezionerei selezionare ver +selezioneremo selezionare ver +selezionerà selezionare ver +selezioni selezione nom +selezioniamo selezionare ver +selezionino selezionare ver +seleziono selezionare ver +selezionò selezionare ver +sella sella nom +sellai sellaio nom +sellaio sellaio nom +sellami sellare ver +sellano sellare ver +sellar sellare ver +sellare sellare ver +sellata sellare ver +sellati sellare ver +sellato sellare ver +selle sella nom +selleria selleria nom +sellerie selleria nom +selli sellare ver +sellini sellino nom +sellino sellino nom +sello sellare ver +sellò sellare ver +seltz seltz nom +selva selva nom +selvagge selvaggio adj +selvaggi selvaggio adj +selvaggia selvaggio adj +selvaggina selvaggina nom +selvaggio selvaggio adj +selvatica selvatico adj +selvatiche selvatico adj +selvatichezza selvatichezza nom +selvatici selvatico adj +selvatico selvatico adj +selve selva nom +selvicoltori selvicoltore nom +selvicoltura selvicoltura nom +selvosa selvoso adj +selvose selvoso adj +selvosi selvoso adj +selvoso selvoso adj +selz selz nom +semafori semaforo nom +semaforica semaforico adj +semaforiche semaforico adj +semaforici semaforico adj +semaforico semaforico adj +semaforo semaforo nom +semantema semantema nom +semantemi semantema nom +semantica semantico adj +semantiche semantico adj +semantici semantico adj +semantico semantico adj +semasiologia semasiologia nom +semasiologie semasiologia nom +sembiante sembiante nom +sembianti sembiante nom +sembianza sembianza nom +sembianze sembianza nom +sembra sembrare ver_sup +sembrami sembrare ver +sembrando sembrare ver +sembrandogli sembrare ver +sembrandomi sembrare ver +sembrano sembrare ver_sup +sembrar sembrare ver +sembrarci sembrare ver +sembrare sembrare ver_sup +sembrargli sembrare ver +sembrarle sembrare ver +sembrarlo sembrare ver +sembrarmi sembrare ver +sembrarne sembrare ver +sembrarono sembrare ver +sembrarti sembrare ver +sembrarvi sembrare ver +sembrasse sembrare ver +sembrassero sembrare ver +sembrata sembrare ver +sembrate sembrare ver +sembrati sembrare ver +sembrato sembrare ver_sup +sembrava sembrare ver_sup +sembravamo sembrare ver_sup +sembravano sembrare ver +sembravate sembrare ver +sembravi sembrare ver +sembravo sembrare ver +sembrerai sembrare ver +sembreranno sembrare ver +sembrerebbe sembrare ver +sembrerebbero sembrare ver +sembrerei sembrare ver +sembreremmo sembrare ver +sembreremo sembrare ver +sembrerà sembrare ver +sembrerò sembrare ver +sembri sembrare ver +sembriamo sembrare ver +sembrino sembrare ver +sembro sembrare ver +sembrò sembrare ver +seme seme nom +semeiotica semeiotica nom +semeiotiche semeiotica nom +sementa sementa nom +semente sementa|semente nom +sementi semente nom +semenza semenza nom +semenzai semenzaio nom +semenzaio semenzaio nom +semenzale semenzale nom +semenzali semenzale nom +semenze semenza nom +semestrale semestrale adj +semestrali semestrale adj +semestralmente semestralmente adv +semestre semestre nom +semestri semestre nom +semi seme nom +semiacerbe semiacerbo adj +semianalfabeta semianalfabeta adj +semianalfabete semianalfabeta adj +semianalfabeti semianalfabeta nom +semiaperta semiaperto adj +semiaperte semiaperto adj +semiaperti semiaperto adj +semiaperto semiaperto adj +semiasse semiasse nom +semiassi semiasse nom +semiautomatica semiautomatico adj +semiautomatiche semiautomatico adj +semiautomatici semiautomatico adj +semiautomatico semiautomatico adj +semiautonome semiautonomo adj +semicerchi semicerchio nom +semicerchio semicerchio nom +semichiusa semichiuso adj +semichiuse semichiuso adj +semichiusi semichiuso adj +semichiuso semichiuso adj +semicingolata semicingolato adj +semicingolati semicingolato adj +semicingolato semicingolato adj +semicircolare semicircolare adj +semicircolari semicircolare adj +semicirconferenza semicirconferenza nom +semicirconferenze semicirconferenza nom +semiconduttore semiconduttore nom +semiconduttori semiconduttore nom +semiconsonante semiconsonante nom +semiconsonanti semiconsonante nom +semicupio semicupio nom +semidea semidea nom +semidei semidei nom +semideponente semideponente adj +semideponenti semideponente adj +semidio semidio nom +semiellittica semiellittico adj +semiellittiche semiellittico adj +semiellittico semiellittico adj +semifinale semifinale nom +semifinali semifinale nom +semifinalista semifinalista nom +semifinaliste semifinalista nom +semifinalisti semifinalista nom +semifreddi semifreddo nom +semifreddo semifreddo nom +semilavorata semilavorato adj +semilavorate semilavorato adj +semilavorati semilavorato nom +semilavorato semilavorato adj +semilibertà semilibertà nom +semilunare semilunare adj +semilunari semilunare adj +semimetalli semimetallo nom +semimetallo semimetallo nom +semina semina nom +seminabili seminabile adj +seminaci seminare ver +seminagione seminagione nom +seminagioni seminagione nom +seminai seminare ver +seminale seminale adj +seminali seminale adj +seminando seminare ver +seminandole seminare ver +seminandovi seminare ver +seminano seminare ver +seminar seminare ver +seminare seminare ver +seminari seminario nom +seminario seminario nom +seminarista seminarista nom +seminariste seminarista nom +seminaristi seminarista nom +seminarla seminare ver +seminarle seminare ver +seminarli seminare ver +seminarlo seminare ver +seminarne seminare ver +seminarono seminare ver +seminarvi seminare ver +seminata seminare ver +seminate seminare ver +seminati seminare ver +seminativi seminativi nom +seminato seminare ver +seminatore seminatore nom +seminatori seminatore nom +seminatrice seminatore|seminatrice nom +seminatrici seminatore|seminatrice nom +seminaturali seminaturale adj +seminava seminare ver +seminavano seminare ver +semine semina nom +semineranno seminare ver +seminerà seminare ver +seminfermità seminfermità nom +seminfermo seminfermo nom +semini seminare ver +seminiamo seminare ver +semino seminare ver +seminterrati seminterrato nom +seminterrato seminterrato nom +seminuda seminudo adj +seminude seminudo adj +seminudi seminudo adj +seminudo seminudo adj +seminò seminare ver +semiografia semiografia nom +semiologia semiologia nom +semiologie semiologia nom +semioscurità semioscurità nom +semiotica semiotica nom +semipermanente semipermanente adj +semipermeabile semipermeabile adj +semipermeabili semipermeabile adj +semipiani semipiano nom +semipiano semipiano nom +semipiena semipieno adj +semipiene semipieno adj +semipieni semipieno adj +semipieno semipieno adj +semiresidenziali semiresidenziale adj +semiretta semiretta nom +semirette semiretta nom +semirimorchi semirimorchio nom +semirimorchio semirimorchio nom +semirurale semirurale adj +semiseri semiserio adj +semiseria semiserio adj +semiserie semiserio adj +semiserio semiserio adj +semisfera semisfera nom +semisfere semisfera nom +semispazi semispazio nom +semispazio semispazio nom +semita semita adj +semitappa semitappa nom +semitappe semitappa nom +semite semita adj +semiti semita adj +semitica semitico adj +semitiche semitico adj +semitici semitico adj +semitico semitico adj +semitoni semitono nom +semitono semitono nom +semitrasparente semitrasparente adj +semitrasparenti semitrasparente adj +semivocale semivocale nom +semivocali semivocale nom +semmai semmai adv_sup +semola semola nom +semolati semolato adj +semolato semolato adj +semole semola nom +semolini semolino nom +semolino semolino nom +semovente semovente adj +semoventi semovente adj +sempiterna sempiterno adj +sempiterne sempiterno adj +sempiterni sempiterno adj +sempiterno sempiterno adj +semplice semplice adj +semplicemente semplicemente adv_sup +semplici semplice adj +semplicione semplicione nom +sempliciotta sempliciotto adj +sempliciotti sempliciotto adj +sempliciotto sempliciotto adj +semplicismo semplicismo nom +semplicista semplicista adj +semplicistica semplicistico adj +semplicisticamente semplicisticamente adv +semplicistiche semplicistico adj +semplicistici semplicistico adj +semplicistico semplicistico adj +semplicità semplicità nom +semplifica semplificare ver +semplificando semplificare ver +semplificandola semplificare ver +semplificandole semplificare ver +semplificandoli semplificare ver +semplificandolo semplificare ver +semplificandone semplificare ver +semplificandosi semplificare ver +semplificano semplificare ver +semplificarci semplificare ver +semplificare semplificare ver +semplificargli semplificare ver +semplificarla semplificare ver +semplificarle semplificare ver +semplificarli semplificare ver +semplificarlo semplificare ver +semplificarmi semplificare ver +semplificarne semplificare ver +semplificarono semplificare ver +semplificarsi semplificare ver +semplificarti semplificare ver +semplificasse semplificare ver +semplificassero semplificare ver +semplificata semplificare ver +semplificate semplificare ver +semplificati semplificare ver +semplificato semplificare ver +semplificava semplificare ver +semplificavano semplificare ver +semplificazione semplificazione nom +semplificazioni semplificazione nom +semplificherebbe semplificare ver +semplificherebbero semplificare ver +semplificherei semplificare ver +semplificherà semplificare ver +semplificherò semplificare ver +semplifichi semplificare ver +semplifichiamo semplificare ver +semplifichiamoci semplificare ver +semplifichino semplificare ver +semplifico semplificare ver +semplificò semplificare ver +sempre sempre adv_sup +sempreché sempreché con +sempreverde sempreverde adj +sempreverdi sempreverde adj +semprevivi semprevivo nom +semprevivo semprevivo nom +sena sena nom +senapa senapa nom +senapata senapato adj +senapati senapato adj +senape senapa|senape nom +senapi senape nom +senari senario adj +senaria senario adj +senario senario adj +senati senato nom +senato senato nom +senatore senatore nom +senatori senatorio adj +senatoria senatorio adj +senatoriale senatoriale adj +senatoriali senatoriale adj +senatorie senatorio adj +senatorio senatorio adj +senatrice senatore nom +senatrici senatore nom +sene sena nom +senegalese senegalese adj +senegalesi senegalese adj +senescente senescente adj +senescenti senescente adj +senescenza senescenza nom +senese senese adj +senesi senese adj +seni seno nom +senile senile adj +senili senile adj +senilità senilità nom +senior senior adj +seniores seniores nom +senna senna nom +senne senna nom +senni senno nom +senno senno nom +sennonché sennonché con +sennò sennò adv +seno seno nom +senonché senonché con +sensale sensale nom +sensali sensale nom +sensata sensato adj +sensate sensato adj +sensatezza sensatezza nom +sensati sensato adj +sensato sensato adj +sensazionale sensazionale adj +sensazionali sensazionale adj +sensazionalismo sensazionalismo nom +sensazione sensazione nom +sensazioni sensazione nom +senseria senseria nom +sensi senso nom +sensibile sensibile adj +sensibili sensibile adj +sensibilità sensibilità nom +sensibilizza sensibilizzare ver +sensibilizzando sensibilizzare ver +sensibilizzano sensibilizzare ver +sensibilizzante sensibilizzare ver +sensibilizzanti sensibilizzare ver +sensibilizzare sensibilizzare ver +sensibilizzarli sensibilizzare ver +sensibilizzarlo sensibilizzare ver +sensibilizzasse sensibilizzare ver +sensibilizzata sensibilizzare ver +sensibilizzate sensibilizzare ver +sensibilizzati sensibilizzare ver +sensibilizzato sensibilizzare ver +sensibilizzava sensibilizzare ver +sensibilizzò sensibilizzare ver +sensibilmente sensibilmente adv +sensismo sensismo nom +sensista sensista nom +sensisti sensista nom +sensistica sensistico adj +sensistiche sensistico adj +sensistico sensistico adj +sensitiva sensitivo adj +sensitive sensitivo adj +sensitivi sensitivo adj +sensitività sensitività nom +sensitivo sensitivo adj +senso senso nom +sensore sensore nom +sensori sensorio adj +sensoria sensorio adj +sensoriale sensoriale adj +sensoriali sensoriale adj +sensorie sensorio adj +sensorio sensorio adj +sensuale sensuale adj +sensuali sensuale adj +sensualità sensualità nom +senta sentire ver +sentano sentire ver +sente sentire ver +sentendo sentire ver +sentendoci sentire ver +sentendogli sentire ver +sentendola sentire ver +sentendole sentire ver +sentendoli sentire ver +sentendolo sentire ver +sentendomi sentire ver +sentendone sentire ver +sentendosela sentire ver +sentendosene sentire ver +sentendosi sentire ver +sententi sentire ver +sentenza sentenza nom +sentenze sentenza nom +sentenzi sentenziare ver +sentenzia sentenziare ver +sentenziale sentenziare ver +sentenziamo sentenziare ver +sentenziando sentenziare ver +sentenziano sentenziare ver +sentenziare sentenziare ver +sentenziarono sentenziare ver +sentenziata sentenziare ver +sentenziate sentenziare ver +sentenziati sentenziare ver +sentenziato sentenziare ver +sentenziava sentenziare ver +sentenzierà sentenziare ver +sentenzio sentenziare ver +sentenziosa sentenzioso adj +sentenziose sentenzioso adj +sentenziosi sentenzioso adj +sentenzioso sentenzioso adj +sentenziò sentenziare ver +senti sentire ver +sentiamo sentire ver +sentiamoci sentire ver +sentiate sentire ver +sentieri sentiero nom +sentiero sentiero nom +sentii sentire ver +sentila sentire ver +sentimentale sentimentale adj +sentimentali sentimentale adj +sentimentalismi sentimentalismo nom +sentimentalismo sentimentalismo nom +sentimentalità sentimentalità nom +sentimenti sentimento nom +sentimento sentimento nom +sentimi sentire ver +sentimmo sentire ver +sentina sentina nom +sentine sentina nom +sentinella sentinella nom +sentinelle sentinella nom +sentir sentire ver +sentirai sentire ver +sentiranno sentire ver +sentirci sentire ver +sentire sentire ver +sentirebbe sentire ver +sentirebbero sentire ver +sentirei sentire ver +sentiremmo sentire ver +sentiremo sentire ver +sentireste sentire ver +sentiresti sentire ver +sentirete sentire ver +sentirgli sentire ver +sentirla sentire ver +sentirle sentire ver +sentirli sentire ver +sentirlo sentire ver +sentirmelo sentire ver +sentirmi sentire ver +sentirne sentire ver +sentirono sentire ver +sentirsela sentire ver +sentirselo sentire ver +sentirsene sentire ver +sentirsi sentire ver +sentirti sentire ver +sentirvelo sentire ver +sentirvi sentire ver +sentirà sentire ver +sentirò sentire ver +sentisse sentire ver +sentissero sentire ver +sentissi sentire ver +sentissimo sentire ver +sentiste sentire ver +sentita sentire ver +sentitamente sentitamente adv +sentite sentire ver +sentitevi sentire ver +sentiti sentire ver +sentito sentire ver +sentiva sentire ver +sentivamo sentire ver +sentivano sentire ver +sentivi sentire ver +sentivo sentire ver +sento sentire ver +sentono sentire ver +sentore sentore nom +sentori sentore nom +sentì sentire ver +senz senz sw +senza senza pre +senzadio senzadio nom +senzatetto senzatetto nom +senziente senziente adj +senzienti senziente adj +sepali sepalo nom +sepalo sepalo nom +separa separare ver +separabile separabile adj +separabili separabile adj +separaci separare ver +separale separare ver +separammo separare ver +separando separare ver +separandola separare ver +separandole separare ver +separandoli separare ver +separandolo separare ver +separandone separare ver +separandosene separare ver +separandosi separare ver +separano separare ver +separante separare ver +separanti separare ver +separar separare ver +separarci separare ver +separare separare ver +separarla separare ver +separarle separare ver +separarli separare ver +separarlo separare ver +separarmene separare ver +separarmi separare ver +separarne separare ver +separarono separare ver +separarsene separare ver +separarsi separare ver +separasi separare ver +separasse separare ver +separassero separare ver +separata separare ver +separatamente separatamente adv +separate separare ver +separatesi separare ver +separati separare ver +separatismi separatismo nom +separatismo separatismo nom +separatista separatista nom +separatiste separatista nom +separatisti separatista nom +separatistica separatistico adj +separatistiche separatistico adj +separatistici separatistico adj +separativa separativo adj +separative separativo adj +separativi separativo adj +separativo separativo adj +separato separare ver +separatore separatore nom +separatori separatore nom +separatrice separatore adj +separava separare ver +separavano separare ver +separazione separazione nom +separazioni separazione nom +separerai separare ver +separeranno separare ver +separerebbe separare ver +separerebbero separare ver +separerei separare ver +separeremo separare ver +separerà separare ver +separerò separare ver +separi separare ver +separiamo separare ver +separiamoci separare ver +separino separare ver +separo separare ver +separò separare ver +sepiolite sepiolite nom +sepolcrale sepolcrale adj +sepolcrali sepolcrale adj +sepolcreti sepolcreto nom +sepolcreto sepolcreto nom +sepolcri sepolcro nom +sepolcro sepolcro nom +sepolta sepolto adj +sepolte sepolto adj +sepolti sepolto adj +sepolto sepolto adj +sepoltura sepoltura nom +sepolture sepoltura nom +seppe sapere ver +seppellendo seppellire ver +seppellendola seppellire ver +seppellendole seppellire ver +seppellendoli seppellire ver +seppellendolo seppellire ver +seppellendosi seppellire ver +seppellendovi seppellire ver +seppelliamo seppellire ver +seppellimenti seppellimento nom +seppellimento seppellimento nom +seppellirai seppellire ver +seppelliranno seppellire ver +seppellirci seppellire ver +seppellire seppellire ver +seppellirebbe seppellire ver +seppelliremo seppellire ver +seppellirla seppellire ver +seppellirle seppellire ver +seppellirli seppellire ver +seppellirlo seppellire ver +seppellirmi seppellire ver +seppellirne seppellire ver +seppellirono seppellire ver +seppellirsi seppellire ver +seppellirvi seppellire ver +seppellirà seppellire ver +seppellirò seppellire ver +seppellisca seppellire ver +seppelliscano seppellire ver +seppellisce seppellire ver +seppellisco seppellire ver +seppelliscono seppellire ver +seppellisse seppellire ver +seppellissero seppellire ver +seppellita seppellire ver +seppellite seppellire ver +seppellitela seppellire ver +seppellitelo seppellire ver +seppellitemi seppellire ver +seppelliti seppellire ver +seppellito seppellire ver +seppellitore seppellitore nom +seppellitori seppellitore nom +seppelliva seppellire ver +seppellivano seppellire ver +seppellì seppellire ver +seppero sapere ver +seppi sapere ver +seppia seppia adj +seppie seppia nom +seppur seppure con +seppure seppure con +sepsi sepsi nom +sequela sequela nom +sequele sequela nom +sequenza sequenza nom +sequenze sequenza nom +sequenziale sequenziale adj +sequestra sequestrare ver +sequestrando sequestrare ver +sequestrandogli sequestrare ver +sequestrandone sequestrare ver +sequestrano sequestrare ver +sequestrante sequestrare ver +sequestranti sequestrare ver +sequestrare sequestrare ver +sequestrargli sequestrare ver +sequestrarla sequestrare ver +sequestrarle sequestrare ver +sequestrarli sequestrare ver +sequestrarlo sequestrare ver +sequestrarmi sequestrare ver +sequestrarne sequestrare ver +sequestrarono sequestrare ver +sequestrassero sequestrare ver +sequestrata sequestrare ver +sequestratario sequestratario nom +sequestrate sequestrare ver +sequestrati sequestrare ver +sequestrato sequestrare ver +sequestratore sequestratore nom +sequestratori sequestratore nom +sequestratrice sequestratore nom +sequestrava sequestrare ver +sequestravano sequestrare ver +sequestrerà sequestrare ver +sequestri sequestro nom +sequestrino sequestrare ver +sequestro sequestro nom +sequestrò sequestrare ver +sequoia sequoia nom +sequoie sequoia nom +sera sera nom +seraccata seraccata nom +seracchi seracco nom +seracco seracco nom +serafica serafico adj +serafiche serafico adj +serafico serafico adj +serafini serafino nom +serafino serafino nom +serale serale adj +serali serale adj +serata serata nom +serate serata nom +serba serbare ver +serbami serbare ver +serbando serbare ver +serbandone serbare ver +serbano serbare ver +serbar serbare ver +serbare serbare ver +serbargli serbare ver +serbarla serbare ver +serbarle serbare ver +serbarmi serbare ver +serbarono serbare ver +serbasse serbare ver +serbata serbare ver +serbate serbare ver +serbati serbare ver +serbato serbare ver +serbatoi serbatoio nom +serbatoio serbatoio nom +serbava serbare ver +serbavano serbare ver +serbavo serbare ver +serbe serbo adj +serberai serbare ver +serberemo serbare ver +serberà serbare ver +serberò serbare ver +serbi serbo nom +serbiamoci serbare ver +serbo serbo nom +serbò serbare ver +sere sera nom +serena sereno adj +serenamente serenamente adv +serenante serenare ver +serenata serenata nom +serenate serenata nom +serenatela serenare ver +serene sereno adj +serenella serenella nom +sereni sereno adj +serenissima serenissima nom +serenissime serenissime|serenissimo adj +serenissimi serenissimo adj +serenissimo serenissimo adj +serenità serenità nom +sereno sereno adj +sergente sergente nom +sergenti sergente nom +seri serio adj +seria serio adj +serial serial nom +seriale seriale adj +seriali seriale adj +seriamente seriamente adv +seriane seriare ver +seriano seriare ver +seriata seriare ver +seriate seriare ver +seriatesi seriare ver +seriati seriare ver +seriato seriare ver +seriazione seriazione nom +serica serico adj +sericea sericeo adj +sericee sericeo adj +sericei sericeo adj +sericeo sericeo adj +seriche serico adj +serici serico adj +sericite sericite nom +serico serico adj +sericoli sericolo adj +sericoltura sericoltura nom +serie serie nom +serietà serietà nom +serigrafia serigrafia nom +serigrafie serigrafia nom +serino seriare ver +serio serio adj +seriore seriore adj +seriori seriore adj +seriosa serioso adj +seriose serioso adj +seriosi serioso adj +serioso serioso adj +seritteri seritterio nom +sermone sermone nom +sermoneggiare sermoneggiare ver +sermoni sermone nom +serotina serotino adj +serotine serotino adj +serotini serotino adj +serotino serotino adj +serotonina serotonina nom +serotonine serotonina nom +serpa serpere ver +serpaio serpaio nom +serpe serpa|serpe nom +serpeggi serpeggiare ver +serpeggia serpeggiare ver +serpeggiando serpeggiare ver +serpeggiano serpeggiare ver +serpeggiante serpeggiante adj +serpeggianti serpeggiante adj +serpeggiare serpeggiare ver +serpeggiarono serpeggiare ver +serpeggiasse serpeggiare ver +serpeggiato serpeggiare ver +serpeggiava serpeggiare ver +serpeggiavano serpeggiare ver +serpeggio serpeggiare ver +serpeggiò serpeggiare ver +serpendo serpere ver +serpentari serpentario nom +serpentario serpentario nom +serpente serpente nom +serpenti serpente nom +serpentiforme serpentiforme adj +serpentiformi serpentiforme adj +serpentina serpentino adj +serpentine serpentino adj +serpentini serpentino adj +serpentino serpentino adj +serper serpere ver +serpere serpere ver +serpette serpere ver +serpi serpe nom +serpiginosa serpiginoso adj +serpine serpere ver +serpo serpere ver +serra serra nom +serrafili serrafilo nom +serragli serraglio nom +serraglio serraglio nom +serrai serrare ver +serramanico serramanico nom +serrame serrame nom +serramenti serramento nom +serramento serramento nom +serranda serranda nom +serrande serranda nom +serrando serrare ver +serrandola serrare ver +serrandolo serrare ver +serrano serrare ver +serranti serrare ver +serrar serrare ver +serrare serrare ver +serrarle serrare ver +serrarli serrare ver +serrarono serrare ver +serrarsi serrare ver +serrassi serrare ver +serrata serrare ver +serrate serrato adj +serratesi serrare ver +serrati serrato adj +serrato serrato adj +serratura serratura nom +serrature serratura nom +serrava serrare ver +serravano serrare ver +serre serra nom +serri serrare ver +serro serrare ver +serrò serrare ver +serti serto nom +serto serto nom +serva servire ver +servaggio servaggio nom +servano servire ver +serve servire ver +servendo servire ver +servendoci servire ver +servendogli servire ver +servendola servire ver +servendole servire ver +servendoli servire ver +servendolo servire ver +servendomi servire ver +servendone servire ver +servendosene servire ver +servendosi servire ver +servendoti servire ver +servendovi servire ver +servente servente adj +serventese serventese nom +serventi servente nom +server server nom +servi servo nom +serviamo servire ver +serviate servire ver +servibile servibile adj +servibili servibile adj +servici servire ver +servigi servigio nom +servigio servigio nom +servigli servire ver +servii servire ver +servile servile adj +servili servile adj +servilismo servilismo nom +servilità servilità nom +servilo servire ver +servimmo servire ver +servine servire ver +servir servire ver +servirai servire ver +serviranno servire ver +servircene servire ver +servirci servire ver +servire servire ver +servirebbe servire ver +servirebbero servire ver +serviremo servire ver +servirete servire ver +servirgli servire ver +servirla servire ver +servirle servire ver +servirli servire ver +servirlo servire ver +servirmene servire ver +servirmi servire ver +servirne servire ver +servirono servire ver +servirsene servire ver +servirsi servire ver +servirti servire ver +servirvi servire ver +servirà servire ver +servirò servire ver +servisi servire ver +servisse servire ver +servissero servire ver +servissi servire ver +servita servire ver +servite servire ver +servitelo servire ver +servitevi servire ver +serviti servire ver +servito servire ver +servitore servitore nom +servitori servitore nom +servitù servitù nom +serviva servire ver +servivamo servire ver +servivano servire ver +servivi servire ver +servivo servire ver +servizi servizio nom +servizievole servizievole adj +servizievoli servizievole adj +servizio servizio nom +servizî servizio nom +servo servo nom +servocomandi servocomando nom +servocomando servocomando nom +servofreni servofreno nom +servofreno servofreno nom +servomeccanismi servomeccanismo nom +servomeccanismo servomeccanismo nom +servomotore servomotore nom +servomotori servomotore nom +servono servire ver +servosistema servosistema nom +servosistemi servosistema nom +servosterzo servosterzo nom +servì servire ver +sesami sesamo nom +sesamo sesamo nom +sesamoide sesamoide nom +sesamoidi sesamoide nom +sesquipedale sesquipedale adj +sesquipedali sesquipedale adj +sessa sessa nom +sessagenario sessagenario adj +sessagesima sessagesima nom +sessagesimale sessagesimale adj +sessagesimali sessagesimale adj +sessagesimi sessagesimo adj +sessanta sessanta adj +sessantacinque sessantacinque adj +sessantacinquenni sessantacinquenni nom +sessantenne sessantenne adj +sessantenni sessantenne|sessantennio nom +sessantennio sessantennio nom +sessantesima sessantesimo adj +sessantesimi sessantesimo nom +sessantesimo sessantesimo adj +sessantina sessantina nom +sessantottesco sessantottesco adj +sessantotto sessantotto nom +sessantuno sessantuno adj +sesse sessa nom +sessennio sessennio nom +sessi sesso nom +sessile sessile adj +sessili sessile adj +sessione sessione nom +sessioni sessione nom +sessismo sessismo nom +sessista sessista adj +sessiste sessista adj +sessisti sessista adj +sesso sesso nom +sessola sessola nom +sessuale sessuale adj +sessuali sessuale adj +sessualità sessualità nom +sessualmente sessualmente adv +sessuata sessuato adj +sessuate sessuato adj +sessuati sessuato adj +sessuato sessuato adj +sessuofobia sessuofobia nom +sessuologia sessuologia nom +sesta sesto adj +sestante sestante nom +sestanti sestante nom +seste sesto adj +sesterzi sesterzio nom +sesterzio sesterzio nom +sestetti sestetto nom +sestetto sestetto nom +sesti sesto adj +sestiere sestiere nom +sestieri sestiere nom +sestina sestina nom +sestine sestina nom +sesto sesto adj +sestultima sestultimo adj +sestupla sestuplo adj +sestuple sestuplo adj +sestupli sestuplo adj +sestuplo sestuplo adj +set set nom +seta seta nom +setacci setaccio nom +setaccia setacciare ver +setacciamo setacciare ver +setacciando setacciare ver +setacciano setacciare ver +setacciare setacciare ver +setacciarla setacciare ver +setacciarne setacciare ver +setacciarono setacciare ver +setacciata setacciare ver +setacciate setacciare ver +setacciati setacciare ver +setacciato setacciare ver +setacciatura setacciatura nom +setacciava setacciare ver +setacciavano setacciare ver +setaccio setaccio nom +setacciò setacciare ver +setacea setaceo adj +setacei setaceo adj +setaceo setaceo adj +setaioli setaiolo nom +setaiolo setaiolo nom +setale setale nom +sete seta|sete nom +seteria seteria nom +seterie seteria nom +seti sete nom +setifici setificio nom +setificio setificio nom +setola setola nom +setole setola nom +setolosa setoloso adj +setolose setoloso adj +setolosi setoloso adj +setoloso setoloso adj +setta setta nom +settanta settanta adj +settantenne settantenne adj +settantenni settantenne adj +settantennio settantennio nom +settantesima settantesimo adj +settantesimo settantesimo adj +settantina settantina nom +settantotto settantotto adj +settantuno settantuno adj +settari settario adj +settaria settario adj +settarie settario adj +settario settario adj +settarismi settarismo nom +settarismo settarismo nom +sette sette adj_sup +settebelli settebello nom +settebello settebello nom +settecentesca settecentesco adj +settecentesche settecentesco adj +settecenteschi settecentesco adj +settecentesco settecentesco adj +settecentisti settecentista nom +settecento settecento nom +settembre settembre nom +settembri settembre nom +settembrina settembrino adj +settembrine settembrino adj +settembrini settembrino adj +settembrino settembrino adj +settemila settemila adj +settemviro settemviro nom +settenari settenario adj +settenaria settenario adj +settenario settenario nom +settennale settennale adj +settennali settennale adj +settenne settenne adj +settenni settennio nom +settennio settennio nom +settentrionale settentrionale adj +settentrionali settentrionale adj +settentrione settentrione nom +settentrioni settentrione nom +setter setter nom +setti setto nom +settica settico adj +setticemia setticemia nom +setticemica setticemica adj +setticemie setticemia nom +settiche settico adj +settici settico adj +setticlavio setticlavio nom +settico settico adj +settile settile adj +settima settimo adj +settimana settimana nom +settimanale settimanale adj +settimanali settimanale adj +settimanalmente settimanalmente adv +settimane settimana nom +settime settimo adj +settimi settimo adj +settimina settimino adj +settimini settimino adj +settimino settimino adj +settimo settimo adj +setto setto nom +settore settore nom +settori settore nom +settoriale settoriale adj +settoriali settoriale adj +settorialità settorialità nom +settuagenarie settuagenario adj +settuagenario settuagenario adj +settuagesima settuagesima nom +settupla settuplo adj +settuplo settuplo adj +severa severo adj +severamente severamente adv +severe severo adj +severi severo adj +severità severità nom +severo severo adj +sevi sevo nom +sevizi seviziare ver +sevizia seviziare ver +seviziando seviziare ver +seviziano seviziare ver +seviziare seviziare ver +seviziarla seviziare ver +seviziarli seviziare ver +seviziarono seviziare ver +seviziata seviziare ver +seviziate seviziare ver +seviziati seviziare ver +seviziato seviziare ver +seviziatori seviziatore nom +seviziava seviziare ver +sevizie sevizia nom +sevizio seviziare ver +seviziò seviziare ver +sevo sevo nom +sexy sexy adj +seziona sezionare ver +sezionale sezionare ver +sezionali sezionare ver +sezionamenti sezionamento nom +sezionamento sezionamento nom +sezionando sezionare ver +sezionandolo sezionare ver +sezionano sezionare ver +sezionare sezionare ver +sezionarla sezionare ver +sezionarli sezionare ver +sezionarlo sezionare ver +sezionata sezionare ver +sezionate sezionare ver +sezionati sezionare ver +sezionato sezionare ver +sezionava sezionare ver +sezione sezione nom +sezioni sezione nom +sezionò sezionare ver +sfa sfare ver +sfaccendata sfaccendato adj +sfaccendati sfaccendato nom +sfaccendato sfaccendato adj +sfaccetta sfaccettare ver +sfaccettano sfaccettare ver +sfaccettare sfaccettare ver +sfaccettata sfaccettare ver +sfaccettate sfaccettare ver +sfaccettati sfaccettare ver +sfaccettato sfaccettare ver +sfaccettatura sfaccettatura nom +sfaccettature sfaccettatura nom +sfacchinata sfacchinata nom +sfacciata sfacciato adj +sfacciataggine sfacciataggine nom +sfacciate sfacciato adj +sfacciati sfacciato adj +sfacciato sfacciato adj +sfaceli sfacelo nom +sfacelo sfacelo nom +sfacendo sfare ver +sfagiola sfagiolare ver +sfaglia sfagliare ver +sfagni sfagno nom +sfagno sfagno nom +sfai sfare ver +sfalda sfaldare ver +sfaldabile sfaldabile adj +sfaldabili sfaldabile adj +sfaldamenti sfaldamento nom +sfaldamento sfaldamento nom +sfaldando sfaldare ver +sfaldandosi sfaldare ver +sfaldano sfaldare ver +sfaldare sfaldare ver +sfaldarono sfaldare ver +sfaldarsi sfaldare ver +sfaldata sfaldare ver +sfaldate sfaldare ver +sfaldato sfaldare ver +sfaldatura sfaldatura nom +sfaldature sfaldatura nom +sfaldava sfaldare ver +sfalderà sfaldare ver +sfaldò sfaldare ver +sfalsa sfalsare ver +sfalsando sfalsare ver +sfalsandole sfalsare ver +sfalsano sfalsare ver +sfalsare sfalsare ver +sfalsata sfalsare ver +sfalsate sfalsare ver +sfalsati sfalsare ver +sfalsato sfalsare ver +sfalsava sfalsare ver +sfama sfamare ver +sfamando sfamare ver +sfamandoli sfamare ver +sfamandolo sfamare ver +sfamano sfamare ver +sfamarci sfamare ver +sfamare sfamare ver +sfamarla sfamare ver +sfamarle sfamare ver +sfamarli sfamare ver +sfamarlo sfamare ver +sfamarono sfamare ver +sfamarsi sfamare ver +sfamata sfamare ver +sfamati sfamare ver +sfamato sfamare ver +sfamava sfamare ver +sfamavano sfamare ver +sfamerà sfamare ver +sfamino sfamare ver +sfamò sfamare ver +sfar sfare ver +sfare sfare ver +sfarfalla sfarfallare ver +sfarfallamenti sfarfallamento nom +sfarfallamento sfarfallamento nom +sfarfallando sfarfallare ver +sfarfallano sfarfallare ver +sfarfallante sfarfallare ver +sfarfallanti sfarfallare ver +sfarfallare sfarfallare ver +sfarfallate sfarfallare ver +sfarfallati sfarfallare ver +sfarfalleranno sfarfallare ver +sfarfallio sfarfallio nom +sfarinata sfarinare ver +sfarinati sfarinare ver +sfarinato sfarinare ver +sfarzi sfarzo nom +sfarzo sfarzo nom +sfarzosa sfarzoso adj +sfarzose sfarzoso adj +sfarzosi sfarzoso adj +sfarzosità sfarzosità nom +sfarzoso sfarzoso adj +sfasa sfasare ver +sfasamenti sfasamento nom +sfasamento sfasamento nom +sfasando sfasare ver +sfasano sfasare ver +sfasare sfasare ver +sfasarsi sfasare ver +sfasata sfasare ver +sfasate sfasare ver +sfasati sfasato adj +sfasato sfasare ver +sfascerà sfasciare ver +sfasci sfasciare ver +sfascia sfasciare ver +sfasciando sfasciare ver +sfasciandogli sfasciare ver +sfasciandosi sfasciare ver +sfasciano sfasciare ver +sfasciare sfasciare ver +sfasciargli sfasciare ver +sfasciarono sfasciare ver +sfasciarsi sfasciare ver +sfasciata sfasciare ver +sfasciate sfasciare ver +sfasciati sfasciare ver +sfasciato sfasciare ver +sfascio sfascio nom +sfasciume sfasciume nom +sfasciumi sfasciume nom +sfasciò sfasciare ver +sfata sfatare ver +sfatando sfatare ver +sfatano sfatare ver +sfatare sfatare ver +sfatarono sfatare ver +sfatata sfatare ver +sfatati sfatare ver +sfatato sfatare ver +sfatava sfatare ver +sfatavano sfatare ver +sfatiamo sfatare ver +sfaticata sfaticato adj +sfaticati sfaticato adj +sfaticato sfaticato adj +sfatta sfare ver +sfatte sfatto adj +sfatti sfatto adj +sfatto sfare ver +sfatò sfatare ver +sfavilla sfavillare ver +sfavillando sfavillare ver +sfavillano sfavillare ver +sfavillante sfavillare ver +sfavillanti sfavillare ver +sfavillare sfavillare ver +sfavillava sfavillare ver +sfavilli sfavillio nom +sfavillio sfavillio nom +sfavillo sfavillare ver +sfavore sfavore nom +sfavorevole sfavorevole adj +sfavorevoli sfavorevole adj +sfavori sfavore nom +sfavorita sfavorire ver +sfavorite sfavorire ver +sfavoriti sfavorire ver +sfebbra sfebbrare ver +sfebbrare sfebbrare ver +sfegatata sfegatato adj +sfegatate sfegatato adj +sfegatati sfegatato adj +sfegatato sfegatarsi ver +sfenoide sfenoide nom +sfera sfera nom +sfere sfera nom +sferica sferico adj +sferiche sferico adj +sferici sferico adj +sfericità sfericità nom +sferico sferico adj +sferisteri sferisterio nom +sferisterio sferisterio nom +sferoidale sferoidale adj +sferoidali sferoidale adj +sferoide sferoide nom +sferoidi sferoide nom +sferra sferrare ver +sferragliando sferragliare ver +sferragliante sferragliare ver +sferragliare sferragliare ver +sferragliate sferragliare ver +sferrando sferrare ver +sferrandogli sferrare ver +sferrano sferrare ver +sferrare sferrare ver +sferrargli sferrare ver +sferrarono sferrare ver +sferrarsi sferrare ver +sferrasse sferrare ver +sferrata sferrare ver +sferrate sferrare ver +sferrati sferrare ver +sferrato sferrare ver +sferrava sferrare ver +sferravano sferrare ver +sferrerà sferrare ver +sferri sferrare ver +sferro sferrare ver +sferruzza sferruzzare ver +sferruzzando sferruzzare ver +sferrò sferrare ver +sferula sferula nom +sferule sferula nom +sferza sferza nom +sferzando sferzare ver +sferzandola sferzare ver +sferzano sferzare ver +sferzante sferzante adj +sferzanti sferzante adj +sferzare sferzare ver +sferzata sferzata nom +sferzate sferzata nom +sferzati sferzare ver +sferzato sferzare ver +sferzava sferzare ver +sferzi sferzare ver +sferzò sferzare ver +sfiammante sfiammare ver +sfiammata sfiammare ver +sfiammate sfiammare ver +sfianca sfiancare ver +sfiancando sfiancare ver +sfiancano sfiancare ver +sfiancante sfiancare ver +sfiancanti sfiancare ver +sfiancare sfiancare ver +sfiancarlo sfiancare ver +sfiancarono sfiancare ver +sfiancarsi sfiancare ver +sfiancata sfiancare ver +sfiancate sfiancare ver +sfiancati sfiancare ver +sfiancato sfiancare ver +sfiancò sfiancare ver +sfiata sfiatare ver +sfiatata sfiatare ver +sfiatati sfiatare ver +sfiatatoi sfiatatoio nom +sfiatatoio sfiatatoio nom +sfiati sfiato nom +sfiato sfiato nom +sfibra sfibrare ver +sfibrano sfibrare ver +sfibrante sfibrare ver +sfibranti sfibrare ver +sfibrare sfibrare ver +sfibrarsi sfibrare ver +sfibrata sfibrare ver +sfibrati sfibrare ver +sfibrato sfibrare ver +sfida sfida nom +sfidai sfidare ver +sfidando sfidare ver +sfidandola sfidare ver +sfidandole sfidare ver +sfidandoli sfidare ver +sfidandolo sfidare ver +sfidandone sfidare ver +sfidandosi sfidare ver +sfidano sfidare ver +sfidante sfidante nom +sfidanti sfidante nom +sfidar sfidare ver +sfidarci sfidare ver +sfidare sfidare ver +sfidarla sfidare ver +sfidarle sfidare ver +sfidarli sfidare ver +sfidarlo sfidare ver +sfidarmi sfidare ver +sfidarne sfidare ver +sfidarono sfidare ver +sfidarsi sfidare ver +sfidasse sfidare ver +sfidassero sfidare ver +sfidata sfidare ver +sfidate sfidare ver +sfidati sfidare ver +sfidato sfidare ver +sfidava sfidare ver +sfidavano sfidare ver +sfide sfida nom +sfideranno sfidare ver +sfiderei sfidare ver +sfideremo sfidare ver +sfiderà sfidare ver +sfiderò sfidare ver +sfidi sfidare ver +sfidiamo sfidare ver +sfidino sfidare ver +sfido sfidare ver +sfiducia sfiducia nom +sfiduciando sfiduciare ver +sfiduciandolo sfiduciare ver +sfiduciano sfiduciare ver +sfiduciare sfiduciare ver +sfiduciarlo sfiduciare ver +sfiduciarono sfiduciare ver +sfiduciata sfiduciare ver +sfiduciate sfiduciare ver +sfiduciati sfiduciare ver +sfiduciato sfiduciare ver +sfiducie sfiducia nom +sfiducio sfiduciare ver +sfiduciò sfiduciare ver +sfidò sfidare ver +sfigmomanometri sfigmomanometro nom +sfigmomanometro sfigmomanometro nom +sfigura sfigurare ver +sfigurando sfigurare ver +sfigurandola sfigurare ver +sfigurandole sfigurare ver +sfigurandoli sfigurare ver +sfigurandolo sfigurare ver +sfigurandone sfigurare ver +sfigurano sfigurare ver +sfigurante sfigurare ver +sfiguranti sfigurare ver +sfigurare sfigurare ver +sfigurarla sfigurare ver +sfigurarono sfigurare ver +sfigurarsi sfigurare ver +sfigurasse sfigurare ver +sfigurata sfigurare ver +sfigurate sfigurare ver +sfigurati sfigurare ver +sfigurato sfigurare ver +sfigurava sfigurare ver +sfiguravano sfigurare ver +sfigurerebbe sfigurare ver +sfigurerebbero sfigurare ver +sfigurerà sfigurare ver +sfiguri sfigurare ver +sfigurò sfigurare ver +sfila sfilare ver +sfilacci sfilacciare ver +sfilaccia sfilacciare ver +sfilacciandosi sfilacciare ver +sfilacciano sfilacciare ver +sfilacciare sfilacciare ver +sfilacciarsi sfilacciare ver +sfilacciata sfilacciato adj +sfilacciate sfilacciato adj +sfilacciati sfilacciato adj +sfilacciato sfilacciare ver +sfilacciatura sfilacciatura nom +sfilacciature sfilacciatura nom +sfilando sfilare ver +sfilandogli sfilare ver +sfilandola sfilare ver +sfilandosi sfilare ver +sfilano sfilare ver +sfilante sfilare ver +sfilanti sfilare ver +sfilare sfilare ver +sfilargli sfilare ver +sfilarglielo sfilare ver +sfilarlo sfilare ver +sfilarono sfilare ver +sfilarsele sfilare ver +sfilarsi sfilare ver +sfilasse sfilare ver +sfilassero sfilare ver +sfilata sfilata nom +sfilate sfilata nom +sfilati sfilare ver +sfilatini sfilatino nom +sfilatino sfilatino nom +sfilato sfilare ver +sfilava sfilare ver +sfilavano sfilare ver +sfileranno sfilare ver +sfilerà sfilare ver +sfili sfilare ver +sfilino sfilare ver +sfilo sfilare ver +sfilza sfilza nom +sfilze sfilza nom +sfilò sfilare ver +sfinge sfinge nom +sfingi sfinge nom +sfinimento sfinimento nom +sfinirci sfinire ver +sfinire sfinire ver +sfinirli sfinire ver +sfinirlo sfinire ver +sfinisce sfinire ver +sfiniscono sfinire ver +sfinita sfinire ver +sfinite sfinire ver +sfiniti sfinire ver +sfinito sfinire ver +sfiniva sfinire ver +sfintere sfintere nom +sfinteri sfintere nom +sfinì sfinire ver +sfiora sfiorare ver +sfiorai sfiorare ver +sfioralo sfiorare ver +sfiorando sfiorare ver +sfiorandola sfiorare ver +sfiorandole sfiorare ver +sfiorandoli sfiorare ver +sfiorandolo sfiorare ver +sfiorandone sfiorare ver +sfiorandosi sfiorare ver +sfiorandoti sfiorare ver +sfiorano sfiorare ver +sfiorante sfiorare ver +sfiorare sfiorare ver +sfiorargli sfiorare ver +sfiorarla sfiorare ver +sfiorarle sfiorare ver +sfiorarlo sfiorare ver +sfiorarne sfiorare ver +sfiorarono sfiorare ver +sfiorarsi sfiorare ver +sfiorasse sfiorare ver +sfiorassero sfiorare ver +sfiorata sfiorare ver +sfiorate sfiorare ver +sfiorati sfiorare ver +sfiorato sfiorare ver +sfioratore sfioratore nom +sfioratori sfioratore nom +sfiorava sfiorare ver +sfioravano sfiorare ver +sfiorerà sfiorare ver +sfiori sfiorare ver +sfioriamo sfiorare|sfiorire ver +sfiorino sfiorare ver +sfiorire sfiorire ver +sfiorisce sfiorire ver +sfiorisci sfiorire ver +sfioriscono sfiorire ver +sfiorita sfiorire ver +sfiorite sfiorire ver +sfiorito sfiorire ver +sfiorivano sfiorire ver +sfioro sfiorare ver +sfiorò sfiorare ver +sfitta sfitto adj +sfitte sfitto adj +sfitti sfitto adj +sfitto sfitto adj +sfizi sfizio nom +sfizio sfizio nom +sfiziosa sfizioso adj +sfiziose sfizioso adj +sfiziosi sfizioso adj +sfizioso sfizioso adj +sfoca sfocare ver +sfocando sfocare ver +sfocano sfocare ver +sfocare sfocare ver +sfocassero sfocare ver +sfocata sfocare ver +sfocate sfocato adj +sfocati sfocare ver +sfocato sfocare ver +sfocatura sfocatura nom +sfocature sfocatura nom +sfoceranno sfociare ver +sfocerebbe sfociare ver +sfocerà sfociare ver +sfoci sfocio nom +sfocia sfociare ver +sfociando sfociare ver +sfociano sfociare ver +sfociante sfociare ver +sfocianti sfociare ver +sfociar sfociare ver +sfociare sfociare ver +sfociarono sfociare ver +sfociarvi sfociare ver +sfociasse sfociare ver +sfociassero sfociare ver +sfociata sfociare ver +sfociate sfociare ver +sfociati sfociare ver +sfociato sfociare ver +sfociava sfociare ver +sfociavano sfociare ver +sfocino sfociare ver +sfocio sfociare ver +sfociò sfociare ver +sfodera sfoderare ver +sfoderando sfoderare ver +sfoderandola sfoderare ver +sfoderano sfoderare ver +sfoderare sfoderare ver +sfoderarono sfoderare ver +sfoderata sfoderare ver +sfoderate sfoderare ver +sfoderati sfoderato adj +sfoderato sfoderare ver +sfoderava sfoderare ver +sfodererà sfoderare ver +sfoderi sfoderare ver +sfoderò sfoderare ver +sfoga sfogare ver +sfogando sfogare ver +sfogandosi sfogare ver +sfogano sfogare ver +sfogare sfogare ver +sfogarla sfogare ver +sfogarli sfogare ver +sfogarlo sfogare ver +sfogarmi sfogare ver +sfogarono sfogare ver +sfogarsi sfogare ver +sfogarti sfogare ver +sfogarvi sfogare ver +sfogassero sfogare ver +sfogata sfogare ver +sfogate sfogare ver +sfogatevi sfogare ver +sfogati sfogare ver +sfogato sfogare ver +sfogava sfogare ver +sfogavano sfogare ver +sfoggerà sfoggiare ver +sfoggi sfoggio nom +sfoggia sfoggiare ver +sfoggiando sfoggiare ver +sfoggiano sfoggiare ver +sfoggiante sfoggiare ver +sfoggianti sfoggiare ver +sfoggiare sfoggiare ver +sfoggiarla sfoggiare ver +sfoggiarlo sfoggiare ver +sfoggiarono sfoggiare ver +sfoggiasse sfoggiare ver +sfoggiata sfoggiare ver +sfoggiate sfoggiare ver +sfoggiati sfoggiare ver +sfoggiato sfoggiare ver +sfoggiava sfoggiare ver +sfoggiavano sfoggiare ver +sfoggio sfoggio nom +sfoggiò sfoggiare ver +sfogheranno sfogare ver +sfogherà sfogare ver +sfoghi sfogo nom +sfoghiamo sfogare ver +sfogli sfogliare ver +sfoglia sfoglia nom +sfogliamo sfogliare ver +sfogliando sfogliare ver +sfogliandola sfogliare ver +sfogliandolo sfogliare ver +sfogliandone sfogliare ver +sfogliandosi sfogliare ver +sfogliano sfogliare ver +sfogliare sfogliare ver +sfogliarle sfogliare ver +sfogliarli sfogliare ver +sfogliarlo sfogliare ver +sfogliarne sfogliare ver +sfogliarsi sfogliare ver +sfogliata sfogliare ver +sfogliate sfogliare ver +sfogliatella sfogliatella nom +sfogliatelle sfogliatella nom +sfogliati sfogliare ver +sfogliato sfogliare ver +sfogliatura sfogliatura nom +sfogliature sfogliatura nom +sfogliava sfogliare ver +sfogliavano sfogliare ver +sfogliavo sfogliare ver +sfoglie sfoglia nom +sfoglierà sfogliare ver +sfoglino sfogliare ver +sfoglio sfogliare ver +sfogliò sfogliare ver +sfogo sfogo nom +sfogò sfogare ver +sfolgora sfolgorare ver +sfolgorante sfolgorante adj +sfolgoranti sfolgorante adj +sfolgorare sfolgorare ver +sfolgorava sfolgorare ver +sfolgorio sfolgorio nom +sfolgorò sfolgorare ver +sfolla sfollare ver +sfollagente sfollagente nom +sfollamento sfollamento nom +sfollando sfollare ver +sfollano sfollare ver +sfollare sfollare ver +sfollarla sfollare ver +sfollarono sfollare ver +sfollata sfollare ver +sfollate sfollare ver +sfollati sfollato nom +sfollato sfollare ver +sfollò sfollare ver +sfoltendo sfoltire ver +sfoltiamo sfoltire ver +sfoltimenti sfoltimento nom +sfoltimento sfoltimento nom +sfoltiranno sfoltire ver +sfoltire sfoltire ver +sfoltirebbe sfoltire ver +sfoltirei sfoltire ver +sfoltiremo sfoltire ver +sfoltirla sfoltire ver +sfoltirle sfoltire ver +sfoltirli sfoltire ver +sfoltirlo sfoltire ver +sfoltirsi sfoltire ver +sfoltisca sfoltire ver +sfoltisce sfoltire ver +sfoltisci sfoltire ver +sfoltisco sfoltire ver +sfoltiscono sfoltire ver +sfoltita sfoltire ver +sfoltite sfoltire ver +sfoltiti sfoltire ver +sfoltito sfoltire ver +sfoltì sfoltire ver +sfonda sfondare ver +sfondamenti sfondamento nom +sfondamento sfondamento nom +sfondando sfondare ver +sfondandogli sfondare ver +sfondandola sfondare ver +sfondandole sfondare ver +sfondandolo sfondare ver +sfondandone sfondare ver +sfondano sfondare ver +sfondante sfondare ver +sfondare sfondare ver +sfondarla sfondare ver +sfondarle sfondare ver +sfondarne sfondare ver +sfondarono sfondare ver +sfondasse sfondare ver +sfondassero sfondare ver +sfondata sfondare ver +sfondate sfondare ver +sfondati sfondare ver +sfondato sfondare ver +sfondava sfondare ver +sfondavano sfondare ver +sfonderà sfondare ver +sfondi sfondo nom +sfondiamo sfondare ver +sfondino sfondare ver +sfondo sfondo nom +sfondone sfondone nom +sfondoni sfondone nom +sfondò sfondare ver +sforbicia sforbiciare ver +sforbiciare sforbiciare ver +sforbiciata sforbiciata nom +sforbiciate sforbiciare ver +sforbiciati sforbiciare ver +sforbiciato sforbiciare ver +sformano sformare ver +sformare sformare ver +sformata sformato adj +sformate sformato adj +sformati sformare ver +sformato sformare ver +sformiamo sformare ver +sformo sformare ver +sforna sfornare ver +sfornando sfornare ver +sfornano sfornare ver +sfornare sfornare ver +sfornarono sfornare ver +sfornata sfornare ver +sfornate sfornare ver +sfornati sfornare ver +sfornato sfornare ver +sfornava sfornare ver +sfornavano sfornare ver +sforneranno sfornare ver +sfornerà sfornare ver +sforni sfornare ver +sfornino sfornare ver +sfornita sfornire ver +sfornite sfornire ver +sforniti sfornire ver +sfornito sfornire ver +sforno sfornare ver +sfornò sfornare ver +sfortuna sfortuna nom +sfortunata sfortunato adj +sfortunatamente sfortunatamente adv +sfortunate sfortunato adj +sfortunati sfortunato adj +sfortunato sfortunato adj +sfortune sfortuna nom +sforza sforzare ver +sforzai sforzare ver +sforzando sforzare ver +sforzandoci sforzare ver +sforzandomi sforzare ver +sforzandosi sforzare ver +sforzano sforzare ver +sforzar sforzare ver +sforzarci sforzare ver +sforzare sforzare ver +sforzarmi sforzare ver +sforzarono sforzare ver +sforzarsi sforzare ver +sforzarti sforzare ver +sforzarvi sforzare ver +sforzasse sforzare ver +sforzassero sforzare ver +sforzassi sforzare ver +sforzassimo sforzare ver +sforzata sforzare ver +sforzate sforzare ver +sforzatevi sforzare ver +sforzati sforzare ver +sforzato sforzare ver +sforzava sforzare ver +sforzavano sforzare ver +sforzavo sforzare ver +sforzeranno sforzare ver +sforzerebbero sforzare ver +sforzerei sforzare ver +sforzeremo sforzare ver +sforzerà sforzare ver +sforzerò sforzare ver +sforzi sforzo nom +sforziamo sforzare ver +sforziamoci sforzare ver +sforzino sforzare ver +sforzo sforzo nom +sforzò sforzare ver +sfotta sfottere ver +sfotte sfottere ver +sfottendo sfottere ver +sfottente sfottere ver +sfotter sfottere ver +sfottere sfottere ver +sfotterli sfottere ver +sfotterti sfottere ver +sfottete sfottere ver +sfotti sfottere ver +sfotto sfottere ver +sfottono sfottere ver +sfottute sfottere ver +sfottuto sfottere ver +sfracella sfracellare ver +sfracellando sfracellare ver +sfracellandosi sfracellare ver +sfracellano sfracellare ver +sfracellare sfracellare ver +sfracellarono sfracellare ver +sfracellarsi sfracellare ver +sfracellata sfracellare ver +sfracellate sfracellare ver +sfracellati sfracellare ver +sfracellato sfracellare ver +sfracellava sfracellare ver +sfracellavano sfracellare ver +sfracelli sfracellare ver +sfracello sfracellare ver +sfracellò sfracellare ver +sfragistica sfragistica nom +sfragistiche sfragistica nom +sfrangiandosi sfrangiare ver +sfrangiano sfrangiare ver +sfrangiarsi sfrangiare ver +sfrangiata sfrangiare ver +sfrangiate sfrangiare ver +sfrangiati sfrangiare ver +sfrangiato sfrangiare ver +sfratato sfratarsi ver +sfratta sfrattare ver +sfrattando sfrattare ver +sfrattandone sfrattare ver +sfrattano sfrattare ver +sfrattare sfrattare ver +sfrattarli sfrattare ver +sfrattarlo sfrattare ver +sfrattata sfrattare ver +sfrattate sfrattare ver +sfrattati sfrattare ver +sfrattato sfrattare ver +sfratteranno sfrattare ver +sfratti sfratto nom +sfratto sfratto nom +sfrattò sfrattare ver +sfreccia sfrecciare ver +sfrecciando sfrecciare ver +sfrecciano sfrecciare ver +sfrecciante sfrecciare ver +sfreccianti sfrecciare ver +sfrecciare sfrecciare ver +sfrecciava sfrecciare ver +sfrecciavano sfrecciare ver +sfrecciò sfrecciare ver +sfrega sfregare ver +sfregamenti sfregamento nom +sfregamento sfregamento nom +sfregando sfregare ver +sfregandola sfregare ver +sfregandole sfregare ver +sfregandoli sfregare ver +sfregandolo sfregare ver +sfregandosi sfregare ver +sfregandovi sfregare ver +sfregano sfregare ver +sfregare sfregare ver +sfregarla sfregare ver +sfregarle sfregare ver +sfregarlo sfregare ver +sfregarsi sfregare ver +sfregarvi sfregare ver +sfregata sfregare ver +sfregate sfregare ver +sfregati sfregare ver +sfregato sfregare ver +sfregava sfregare ver +sfregavano sfregare ver +sfregi sfregio nom +sfregia sfregiare ver +sfregiai sfregiare ver +sfregiando sfregiare ver +sfregiandogli sfregiare ver +sfregiandola sfregiare ver +sfregiandone sfregiare ver +sfregiano sfregiare ver +sfregiare sfregiare ver +sfregiargli sfregiare ver +sfregiarla sfregiare ver +sfregiarlo sfregiare ver +sfregiarono sfregiare ver +sfregiarsi sfregiare ver +sfregiassero sfregiare ver +sfregiata sfregiare ver +sfregiate sfregiare ver +sfregiati sfregiato adj +sfregiato sfregiare ver +sfregiavano sfregiare ver +sfregio sfregio nom +sfregiò sfregiare ver +sfregò sfregare ver +sfrenare sfrenare ver +sfrenata sfrenato adj +sfrenate sfrenato adj +sfrenatezza sfrenatezza nom +sfrenatezze sfrenatezza nom +sfrenati sfrenato adj +sfrenato sfrenato adj +sfridi sfrido nom +sfrido sfrido nom +sfrigola sfrigolare ver +sfrigolante sfrigolare ver +sfrigolanti sfrigolare ver +sfrigolio sfrigolio nom +sfronda sfrondare ver +sfrondando sfrondare ver +sfrondandola sfrondare ver +sfrondandoli sfrondare ver +sfrondandolo sfrondare ver +sfrondare sfrondare ver +sfrondarla sfrondare ver +sfrondarlo sfrondare ver +sfrondata sfrondare ver +sfrondate sfrondare ver +sfrondati sfrondare ver +sfrondato sfrondare ver +sfronderei sfrondare ver +sfrondi sfrondare ver +sfrondiamo sfrondare ver +sfrondò sfrondare ver +sfrontata sfrontato adj +sfrontate sfrontato adj +sfrontatezza sfrontatezza nom +sfrontati sfrontato adj +sfrontato sfrontato adj +sfrutta sfruttare ver +sfruttabile sfruttabile adj +sfruttabili sfruttabile adj +sfruttai sfruttare ver +sfruttalo sfruttare ver +sfruttamenti sfruttamento nom +sfruttamento sfruttamento nom +sfruttando sfruttare ver +sfruttandola sfruttare ver +sfruttandole sfruttare ver +sfruttandoli sfruttare ver +sfruttandolo sfruttare ver +sfruttandone sfruttare ver +sfruttano sfruttare ver +sfruttante sfruttare ver +sfruttanti sfruttare ver +sfruttarci sfruttare ver +sfruttare sfruttare ver +sfruttarla sfruttare ver +sfruttarle sfruttare ver +sfruttarli sfruttare ver +sfruttarlo sfruttare ver +sfruttarne sfruttare ver +sfruttarono sfruttare ver +sfruttarsi sfruttare ver +sfruttarti sfruttare ver +sfruttarvi sfruttare ver +sfruttasse sfruttare ver +sfruttassero sfruttare ver +sfruttata sfruttare ver +sfruttate sfruttare ver +sfruttateli sfruttare ver +sfruttati sfruttare ver +sfruttato sfruttare ver +sfruttatore sfruttatore nom +sfruttatori sfruttatore nom +sfruttatrice sfruttatore nom +sfruttatrici sfruttatore nom +sfruttava sfruttare ver +sfruttavano sfruttare ver +sfrutteranno sfruttare ver +sfrutterebbe sfruttare ver +sfrutterei sfruttare ver +sfrutterà sfruttare ver +sfrutterò sfruttare ver +sfrutti sfruttare ver +sfruttiamo sfruttare ver +sfruttiamola sfruttare ver +sfruttiamole sfruttare ver +sfruttiamoli sfruttare ver +sfruttino sfruttare ver +sfrutto sfruttare ver +sfruttò sfruttare ver +sfugga sfuggire ver +sfuggano sfuggire ver +sfugge sfuggire ver +sfuggendo sfuggire ver +sfuggendogli sfuggire ver +sfuggendomi sfuggire ver +sfuggendone sfuggire ver +sfuggente sfuggente adj +sfuggenti sfuggente adj +sfuggevole sfuggevole adj +sfuggevoli sfuggevole adj +sfuggi sfuggire ver +sfuggir sfuggire ver +sfuggirai sfuggire ver +sfuggiranno sfuggire ver +sfuggirci sfuggire ver +sfuggire sfuggire ver +sfuggirebbe sfuggire ver +sfuggirebbero sfuggire ver +sfuggiremo sfuggire ver +sfuggirgli sfuggire ver +sfuggirla sfuggire ver +sfuggirle sfuggire ver +sfuggirli sfuggire ver +sfuggirmi sfuggire ver +sfuggirne sfuggire ver +sfuggirono sfuggire ver +sfuggirti sfuggire ver +sfuggirvi sfuggire ver +sfuggirà sfuggire ver +sfuggirò sfuggire ver +sfuggisse sfuggire ver +sfuggita sfuggire ver +sfuggite sfuggire ver +sfuggitegli sfuggire ver +sfuggiti sfuggire ver +sfuggito sfuggire ver +sfuggiva sfuggire ver +sfuggivano sfuggire ver +sfuggo sfuggire ver +sfuggono sfuggire ver +sfuggì sfuggire ver +sfuma sfumare ver +sfumando sfumare ver +sfumandone sfumare ver +sfumano sfumare ver +sfumanti sfumare ver +sfumare sfumare ver +sfumarono sfumare ver +sfumarsi sfumare ver +sfumasse sfumare ver +sfumata sfumare ver +sfumate sfumato adj +sfumati sfumato adj +sfumato sfumare ver +sfumatura sfumatura nom +sfumature sfumatura nom +sfumava sfumare ver +sfumavano sfumare ver +sfumeranno sfumare ver +sfumerebbero sfumare ver +sfumerà sfumare ver +sfumi sfumo nom +sfumini sfumino nom +sfumino sfumino nom +sfumo sfumo nom +sfumò sfumare ver +sfuoca sfuocare ver +sfuocare sfuocare ver +sfuocata sfuocare ver +sfuocate sfuocare ver +sfuocati sfuocare ver +sfuocato sfuocare ver +sfuria sfuriare ver +sfuriata sfuriata nom +sfuriate sfuriata nom +sfusa sfuso adj +sfuse sfuso adj +sfusi sfuso adj +sfuso sfuso adj +sgabelli sgabello nom +sgabello sgabello nom +sgabuzzini sgabuzzino nom +sgabuzzino sgabuzzino nom +sgambata sgambare ver +sgambate sgambata nom +sgambati sgambare ver +sgambato sgambare ver +sgambatura sgambatura nom +sgambetta sgambettare ver +sgambettandolo sgambettare ver +sgambettano sgambettare ver +sgambettante sgambettare ver +sgambettare sgambettare ver +sgambettati sgambettare ver +sgambettato sgambettare ver +sgambettava sgambettare ver +sgambetti sgambetto nom +sgambetto sgambetto nom +sganasciare sganasciare ver +sganasciate sganasciare ver +sgancerei sganciare ver +sgancerà sganciare ver +sganci sgancio nom +sgancia sganciare ver +sganciamenti sganciamento nom +sganciamento sganciamento nom +sganciando sganciare ver +sganciandola sganciare ver +sganciandoli sganciare ver +sganciandosi sganciare ver +sganciano sganciare ver +sganciarci sganciare ver +sganciare sganciare ver +sganciarla sganciare ver +sganciarle sganciare ver +sganciarlo sganciare ver +sganciarmi sganciare ver +sganciarono sganciare ver +sganciarsi sganciare ver +sganciassero sganciare ver +sganciata sganciare ver +sganciate sganciare ver +sganciati sganciare ver +sganciato sganciare ver +sganciava sganciare ver +sganciavano sganciare ver +sgancio sgancio nom +sganciò sganciare ver +sgangherata sgangherato adj +sgangherate sgangherato adj +sgangherati sgangherato adj +sgangherato sgangherare ver +sgarbata sgarbato adj +sgarbate sgarbato adj +sgarbatezza sgarbatezza nom +sgarbati sgarbato adj +sgarbato sgarbato adj +sgarbi sgarbo nom +sgarbo sgarbo nom +sgargiante sgargiante adj +sgargianti sgargiante adj +sgarra sgarrare ver +sgarrano sgarrare ver +sgarrare sgarrare ver +sgarrata sgarrare ver +sgarrato sgarrare ver +sgarri sgarro nom +sgarro sgarro nom +sgarza sgarza nom +sgarze sgarza nom +sgattaiola sgattaiolare ver +sgattaiolare sgattaiolare ver +sgattaiolarono sgattaiolare ver +sgattaiolato sgattaiolare ver +sgattaiolava sgattaiolare ver +sgattaiolò sgattaiolare ver +sgela sgelare ver +sgelare sgelare ver +sgelo sgelo nom +sghemba sghembo adj +sghembe sghembo adj +sghembi sghembo adj +sghembo sghembo adj +sgherri sgherro nom +sgherro sgherro nom +sghiaccianti sghiacciare ver +sghignazza sghignazzare ver +sghignazzando sghignazzare ver +sghignazzano sghignazzare ver +sghignazzante sghignazzare ver +sghignazzanti sghignazzare ver +sghignazzare sghignazzare ver +sghignazzata sghignazzata nom +sghignazzate sghignazzata nom +sghignazzi sghignazzare ver +sghignazzino sghignazzare ver +sghignazzo sghignazzare ver +sghimbescio sghimbescio adj +sghiribizzo sghiribizzo nom +sgobba sgobbare ver +sgobbano sgobbare ver +sgobbare sgobbare ver +sgobbate sgobbata nom +sgobbato sgobbare ver +sgobbi sgobbo nom +sgobbo sgobbo nom +sgobbone sgobbone nom +sgobboni sgobbone nom +sgocciola sgocciolare ver +sgocciolando sgocciolare ver +sgocciolante sgocciolare ver +sgocciolare sgocciolare ver +sgocciolarlo sgocciolare ver +sgocciolata sgocciolare ver +sgocciolato sgocciolare ver +sgocciolatoi sgocciolatoio nom +sgocciolatura sgocciolatura nom +sgocciolature sgocciolatura nom +sgocciolava sgocciolare ver +sgoccioli sgocciolio|sgocciolo nom +sgocciolio sgocciolio nom +sgola sgolarsi ver +sgolarsi sgolarsi ver +sgolata sgolarsi ver +sgolato sgolarsi ver +sgoliamo sgolarsi ver +sgombera sgomberare ver +sgomberando sgomberare ver +sgomberano sgomberare ver +sgomberare sgomberare ver +sgomberarla sgomberare ver +sgomberarono sgomberare ver +sgomberasse sgomberare ver +sgomberata sgomberare ver +sgomberate sgomberare ver +sgomberati sgomberare ver +sgomberato sgomberare ver +sgomberava sgomberare ver +sgomberi sgombero nom +sgomberiamo sgomberare ver +sgombero sgombero nom +sgomberò sgomberare ver +sgombra sgombro adj +sgombrando sgombrare ver +sgombraneve sgombraneve nom +sgombrano sgombrare ver +sgombrare sgombrare ver +sgombrarla sgombrare ver +sgombrarono sgombrare ver +sgombrasse sgombrare ver +sgombrassero sgombrare ver +sgombrata sgombrare ver +sgombrate sgombrare ver +sgombrati sgombrare ver +sgombrato sgombrare ver +sgombrava sgombrare ver +sgombravano sgombrare ver +sgombre sgombro adj +sgombri sgombro adj +sgombriamo sgombrare ver +sgombrino sgombrare ver +sgombro sgombro adj +sgombrò sgombrare ver +sgomenta sgomento adj +sgomentando sgomentare ver +sgomentare sgomentare ver +sgomentato sgomentare ver +sgomente sgomento adj +sgomenti sgomento adj +sgomento sgomento nom +sgomentò sgomentare ver +sgomina sgominare ver +sgominando sgominare ver +sgominandola sgominare ver +sgominandoli sgominare ver +sgominandolo sgominare ver +sgominano sgominare ver +sgominare sgominare ver +sgominarli sgominare ver +sgominarlo sgominare ver +sgominarono sgominare ver +sgominata sgominare ver +sgominate sgominare ver +sgominati sgominare ver +sgominato sgominare ver +sgominava sgominare ver +sgomineranno sgominare ver +sgominerà sgominare ver +sgominò sgominare ver +sgommando sgommare ver +sgommata sgommare ver +sgommate sgommare ver +sgommati sgommare ver +sgommato sgommare ver +sgommatura sgommatura nom +sgommavo sgommare ver +sgonfi sgonfio adj +sgonfia sgonfiare ver +sgonfiamento sgonfiamento nom +sgonfiando sgonfiare ver +sgonfiandosi sgonfiare ver +sgonfiano sgonfiare ver +sgonfiare sgonfiare ver +sgonfiarlo sgonfiare ver +sgonfiarsi sgonfiare ver +sgonfiata sgonfiare ver +sgonfiate sgonfiare ver +sgonfiati sgonfiato adj +sgonfiato sgonfiare ver +sgonfiavano sgonfiare ver +sgonfie sgonfio adj +sgonfieranno sgonfiare ver +sgonfierà sgonfiare ver +sgonfio sgonfio adj +sgonfiò sgonfiare ver +sgorbi sgorbio nom +sgorbia sgorbia nom +sgorbiatura sgorbiatura nom +sgorbie sgorbia nom +sgorbio sgorbio nom +sgorga sgorgare ver +sgorgando sgorgare ver +sgorgano sgorgare ver +sgorgante sgorgare ver +sgorganti sgorgare ver +sgorgare sgorgare ver +sgorgarono sgorgare ver +sgorgasse sgorgare ver +sgorgata sgorgare ver +sgorgate sgorgare ver +sgorgato sgorgare ver +sgorgava sgorgare ver +sgorgavano sgorgare ver +sgorgheranno sgorgare ver +sgorgherà sgorgare ver +sgorghi sgorgo nom +sgorghino sgorgare ver +sgorgo sgorgo nom +sgorgò sgorgare ver +sgottare sgottare ver +sgotti sgottare ver +sgotto sgottare ver +sgozza sgozzare ver +sgozzando sgozzare ver +sgozzandola sgozzare ver +sgozzandoli sgozzare ver +sgozzandolo sgozzare ver +sgozzano sgozzare ver +sgozzarci sgozzare ver +sgozzare sgozzare ver +sgozzarla sgozzare ver +sgozzarlo sgozzare ver +sgozzarono sgozzare ver +sgozzata sgozzare ver +sgozzate sgozzare ver +sgozzati sgozzare ver +sgozzato sgozzare ver +sgozzava sgozzare ver +sgozzavano sgozzare ver +sgozzeranno sgozzare ver +sgozzò sgozzare ver +sgradevole sgradevole adj +sgradevoli sgradevole adj +sgradita sgradire ver +sgradite sgradito adj +sgraditi sgradire ver +sgradito sgradire ver +sgradiva sgradire ver +sgraffigna sgraffignare ver +sgraffignando sgraffignare ver +sgraffignare sgraffignare ver +sgraffignato sgraffignare ver +sgraffio sgraffio nom +sgrammatica sgrammaticare ver +sgrammaticata sgrammaticare ver +sgrammaticate sgrammaticato adj +sgrammaticati sgrammaticato adj +sgrammaticato sgrammaticato adj +sgrammaticature sgrammaticatura nom +sgrammatico sgrammaticare ver +sgrana sgranare ver +sgranamento sgranamento nom +sgranando sgranare ver +sgranano sgranare ver +sgranare sgranare ver +sgranarla sgranare ver +sgranarsi sgranare ver +sgranata sgranare ver +sgranate sgranare ver +sgranati sgranare ver +sgranato sgranare ver +sgranatrice sgranatrice nom +sgranatrici sgranatrice nom +sgranatura sgranatura nom +sgranature sgranatura nom +sgranava sgranare ver +sgranchire sgranchire ver +sgranchirmi sgranchire ver +sgranchirsi sgranchire ver +sgranocchi sgranocchiare ver +sgranocchia sgranocchiare ver +sgranocchiando sgranocchiare ver +sgranocchiare sgranocchiare ver +sgranocchio sgranocchiare ver +sgranò sgranare ver +sgrassa sgrassare ver +sgrassante sgrassare ver +sgrassanti sgrassare ver +sgrassare sgrassare ver +sgrassarla sgrassare ver +sgrassata sgrassare ver +sgrassati sgrassare ver +sgrassato sgrassare ver +sgrava sgravare ver +sgravando sgravare ver +sgravandola sgravare ver +sgravano sgravare ver +sgravarci sgravare ver +sgravare sgravare ver +sgravarsi sgravare ver +sgravata sgravare ver +sgravati sgravare ver +sgravato sgravare ver +sgravi sgravio nom +sgravio sgravio nom +sgravo sgravare ver +sgravò sgravare ver +sgraziata sgraziato adj +sgraziate sgraziato adj +sgraziati sgraziato adj +sgraziato sgraziato adj +sgretola sgretolare ver +sgretolamenti sgretolamento nom +sgretolamento sgretolamento nom +sgretolando sgretolare ver +sgretolandosi sgretolare ver +sgretolano sgretolare ver +sgretolante sgretolare ver +sgretolare sgretolare ver +sgretolarla sgretolare ver +sgretolarle sgretolare ver +sgretolarono sgretolare ver +sgretolarsi sgretolare ver +sgretolata sgretolare ver +sgretolate sgretolare ver +sgretolati sgretolare ver +sgretolato sgretolare ver +sgretolava sgretolare ver +sgretolerebbe sgretolare ver +sgretolerà sgretolare ver +sgretolò sgretolare ver +sgrida sgridare ver +sgridami sgridare ver +sgridando sgridare ver +sgridandola sgridare ver +sgridandolo sgridare ver +sgridano sgridare ver +sgridare sgridare ver +sgridarla sgridare ver +sgridarli sgridare ver +sgridarlo sgridare ver +sgridasse sgridare ver +sgridata sgridata nom +sgridate sgridata nom +sgridatemi sgridare ver +sgridati sgridare ver +sgridato sgridare ver +sgridava sgridare ver +sgriderà sgridare ver +sgridi sgridare ver +sgrido sgridare ver +sgridò sgridare ver +sgrinfia sgrinfia nom +sgrondano sgrondare ver +sgrondante sgrondare ver +sgrondare sgrondare ver +sgrondo sgrondo nom +sgroppate sgroppata nom +sgroppino sgroppare ver +sgrossando sgrossare ver +sgrossante sgrossare ver +sgrossare sgrossare ver +sgrossata sgrossare ver +sgrossate sgrossare ver +sgrossati sgrossare ver +sgrossato sgrossare ver +sgrossatura sgrossatura nom +sgrosso sgrossare ver +sguaiata sguaiato adj +sguaiate sguaiato adj +sguaiati sguaiato adj +sguaiato sguaiato adj +sguaina sguainare ver +sguainando sguainare ver +sguainano sguainare ver +sguainare sguainare ver +sguainarono sguainare ver +sguainata sguainare ver +sguainate sguainare ver +sguainato sguainare ver +sguainavano sguainare ver +sguainò sguainare ver +sgualcire sgualcire ver +sgualcita sgualcire ver +sgualciti sgualcire ver +sgualcito sgualcire ver +sgualdrina sgualdrina nom +sgualdrine sgualdrina nom +sguanci sguancio nom +sguancio sguancio nom +sguardi sguardo nom +sguardo sguardo nom +sguarnendo sguarnire ver +sguarnire sguarnire ver +sguarnirono sguarnire ver +sguarnisce sguarnire ver +sguarnita sguarnire ver +sguarnite sguarnire ver +sguarniti sguarnire ver +sguarnito sguarnire ver +sguarniva sguarnire ver +sguarnì sguarnire ver +sguattera sguattero nom +sguattere sguattero nom +sguatteri sguattero nom +sguattero sguattero nom +sguazza sguazzare ver +sguazzando sguazzare ver +sguazzano sguazzare ver +sguazzanti sguazzare ver +sguazzare sguazzare ver +sguazzato sguazzare ver +sguazzava sguazzare ver +sguazzavano sguazzare ver +sguazzino sguazzare ver +sguazzo sguazzare ver +sguinci sguincio nom +sguincio sguincio nom +sguinzaglia sguinzagliare ver +sguinzagliamo sguinzagliare ver +sguinzagliando sguinzagliare ver +sguinzagliano sguinzagliare ver +sguinzagliare sguinzagliare ver +sguinzagliarono sguinzagliare ver +sguinzagliate sguinzagliare ver +sguinzagliati sguinzagliare ver +sguinzagliato sguinzagliare ver +sguinzaglierà sguinzagliare ver +sguinzaglio sguinzagliare ver +sguinzagliò sguinzagliare ver +sguiscio sguisciare ver +sgusci sguscio nom +sguscia sgusciare ver +sgusciando sgusciare ver +sgusciano sgusciare ver +sgusciante sgusciare ver +sgusciar sgusciare ver +sgusciare sgusciare ver +sgusciata sgusciare ver +sgusciate sgusciare ver +sgusciati sgusciare ver +sgusciato sgusciare ver +sgusciatura sgusciatura nom +sguscio sguscio nom +sgusciò sgusciare ver +shake shake nom +shaker shaker nom +shampoo shampoo nom +shampooing shampooing nom +shantung shantung nom +sherpa sherpa nom +sherry sherry nom +shetland shetland nom +shimmy shimmy nom +shintoismo shintoismo nom +shintoista shintoista nom +shintoiste shintoista nom +shintoisti shintoista nom +shocca shoccare ver +shoccante shoccare ver +shoccata shoccare ver +shoccati shoccare ver +shoccato shoccare ver +shock shock nom +shocka shockare ver +shockando shockare ver +shockante shockare ver +shockanti shockare ver +shockare shockare ver +shockata shockare ver +shockati shockare ver +shockato shockare ver +shockò shockare ver +shopping shopping nom +short short nom +shorts shorts nom +show show nom +showboat showboat nom +showman showman nom +showmen showmen nom +shrapnel shrapnel nom +shunt shunt nom +shuttle shuttle nom +si si pro +sia essere ver_sup +sial sial nom +siamese siamese adj +siamesi siamese adj +siamo essere ver_sup +siamolo essere ver +siano essere ver_sup +siate essere ver +siatele essere ver +siatelo essere ver +siatene essere ver +sibarita sibarita nom +sibarite sibarita nom +sibariti sibarita nom +sibaritica sibaritico adj +siberia siberia nom +siberiana siberiano adj +siberiane siberiano adj +siberiani siberiano adj +siberiano siberiano adj +siberie siberia nom +sibila sibilare ver +sibilando sibilare ver +sibilano sibilare ver +sibilante sibilante adj +sibilanti sibilante adj +sibilar sibilare ver +sibilare sibilare ver +sibilata sibilare ver +sibilavano sibilare ver +sibili sibilo nom +sibilla sibilla nom +sibille sibilla nom +sibillina sibillino adj +sibilline sibillino adj +sibillini sibillino adj +sibillino sibillino adj +sibilo sibilo nom +sic sic adv +sica sica nom +sicari sicario nom +sicario sicario nom +siccative siccativo adj +siccativi siccativo adj +siccativo siccativo adj +sicchè sicchè con +sicché sicché con +siccitosa siccitoso adj +siccitose siccitoso adj +siccitosi siccitoso adj +siccitoso siccitoso adj +siccità siccità nom +siccome siccome con +siche sica nom +siciliana siciliano adj +siciliane siciliano adj +siciliani siciliano adj +siciliano siciliano adj +sicofante sicofante nom +sicofanti sicofante nom +sicomori sicomoro nom +sicomoro sicomoro nom +siconi siconio nom +siconio siconio nom +sicosi sicosi nom +sicula siculo adj +sicule siculo adj +siculi siculo adj +siculo siculo adj +sicumera sicumera nom +sicura sicuro adj +sicuramente sicuramente adv +sicure sicuro adj +sicurezza sicurezza nom +sicurezze sicurezza nom +sicuri sicuro adj +sicuro sicuro adj +sicurtà sicurtà nom +sidecar sidecar nom +siderale siderale adj +siderali siderale adj +siderea sidereo adj +sideree sidereo adj +siderei sidereo adj +sidereo sidereo adj +siderite siderite nom +sideriti siderite nom +siderurgia siderurgia nom +siderurgica siderurgico adj +siderurgiche siderurgico adj +siderurgici siderurgico adj +siderurgico siderurgico adj +sidri sidro nom +sidro sidro nom +sieda sedere ver +siedano sedere ver +siede sedere ver +siedi sedere ver +siediti sedere ver +siedo sedere ver +siedono sedere ver +siemens siemens nom +sienite sienite nom +sieniti sienite nom +siepe siepe nom +siepi siepe nom +sieri siero nom +siero siero nom +sierogruppi sierogruppo nom +sierologia sierologia nom +sierologie sierologia nom +sieropositiva sieropositivo adj +sieropositive sieropositivo adj +sieropositivi sieropositivo adj +sieropositività sieropositività nom +sieropositivo sieropositivo adj +sieroprofilassi sieroprofilassi nom +sierosa sieroso adj +sierose sieroso adj +sierosi sieroso adj +sierosità sierosità nom +sieroso sieroso adj +sieroterapia sieroterapia nom +sieroterapico sieroterapico adj +sierra sierra nom +sierre sierra nom +siesta siesta nom +sieste siesta nom +siete essere ver_sup +siffatta siffatto adj +siffatte siffatto adj +siffatti siffatto adj +siffatto siffatto adj +sifilide sifilide nom +sifilitica sifilitico adj +sifilitiche sifilitico adj +sifilitici sifilitico adj +sifilitico sifilitico adj +sifone sifone nom +sifoni sifone nom +sigaraia sigaraia|sigaraio nom +sigaraie sigaraia|sigaraio nom +sigaraio sigaraio nom +sigaretta sigaretta nom +sigarette sigaretta nom +sigaretto sigaretto nom +sigari sigaro nom +sigaro sigaro nom +sigilla sigillare ver +sigillando sigillare ver +sigillandola sigillare ver +sigillandole sigillare ver +sigillandoli sigillare ver +sigillandolo sigillare ver +sigillandone sigillare ver +sigillano sigillare ver +sigillante sigillare ver +sigillanti sigillare ver +sigillare sigillare ver +sigillaria sigillaria nom +sigillarla sigillare ver +sigillarle sigillare ver +sigillarli sigillare ver +sigillarlo sigillare ver +sigillarne sigillare ver +sigillarono sigillare ver +sigillarsi sigillare ver +sigillasse sigillare ver +sigillata sigillare ver +sigillate sigillare ver +sigillati sigillare ver +sigillato sigillare ver +sigillatura sigillatura nom +sigillature sigillatura nom +sigillava sigillare ver +sigillavano sigillare ver +sigillerà sigillare ver +sigilli sigillo nom +sigillino sigillare ver +sigillo sigillo nom +sigillò sigillare ver +sigla sigla nom +siglando siglare ver +siglano siglare ver +siglare siglare ver +siglarono siglare ver +siglasse siglare ver +siglata siglare ver +siglate siglare ver +siglati siglare ver +siglato siglare ver +siglava siglare ver +sigle sigla nom +sigleranno siglare ver +siglerà siglare ver +sigli siglare ver +siglino siglare ver +siglo siglare ver +siglò siglare ver +sigma sigma nom +significa significare ver +significaci significare ver +significai significare ver +significando significare ver +significandone significare ver +significano significare ver +significante significante adj +significanti significante adj +significar significare ver +significare significare ver +significarne significare ver +significarono significare ver +significarvi significare ver +significasse significare ver +significassero significare ver +significata significare ver +significate significare ver +significati significato nom +significativa significativo adj +significativamente significativamente adv +significative significativo adj +significativi significativo adj +significativo significativo adj +significato significato nom +significava significare ver +significavano significare ver +significavo significare ver +significazione significazione nom +significazioni significazione nom +significheranno significare ver +significherebbe significare ver +significherebbero significare ver +significherà significare ver +significhi significare ver +significhino significare ver +significo significare ver +significò significare ver +signor signor nom +signora signore nom +signore signore nom +signoreggerà signoreggiare ver +signoreggia signoreggiare ver +signoreggiando signoreggiare ver +signoreggiare signoreggiare ver +signoreggiarono signoreggiare ver +signoreggiata signoreggiare ver +signoreggiato signoreggiare ver +signoreggiava signoreggiare ver +signoreggiò signoreggiare ver +signori signore nom +signoria signoria nom +signorie signoria nom +signorile signorile adj +signorili signorile adj +signorilità signorilità nom +signorina signorina nom +signorine signorina nom +signorini signorino nom +signorino signorino nom +signornò signornò adv +signoroni signorone nom +signorotti signorotto nom +signorotto signorotto nom +signorsì signorsì adv +sii essere ver +siile essere ver +siine essere ver +silente silente adj +silenti silente adj +silenzi silenzio nom +silenzia silenziare ver +silenziandolo silenziare ver +silenziare silenziare ver +silenziata silenziare ver +silenziate silenziare ver +silenziati silenziare ver +silenziato silenziare ver +silenziatore silenziatore nom +silenziatori silenziatore nom +silenzio silenzio nom +silenziosa silenzioso adj +silenziose silenzioso adj +silenziosi silenzioso adj +silenzioso silenzioso adj +silfi silfo nom +silfide silfide nom +silfidi silfide nom +silfo silfo nom +silhouette silhouette nom +sili silo nom +silicati silicato nom +silicato silicato nom +silice silice nom +silicea siliceo adj +silicee siliceo adj +silicei siliceo adj +siliceo siliceo adj +silici silice|silicio nom +silicica silicico adj +silicici silicico adj +silicico silicico adj +silicio silicio nom +silicizzate silicizzato adj +silicizzati silicizzato adj +silicizzato silicizzato adj +silicone silicone nom +siliconi silicone nom +silicosi silicosi nom +siliqua siliqua nom +silique siliqua nom +sillaba sillaba nom +sillabando sillabare ver +sillabare sillabare ver +sillabari sillabario nom +sillabario sillabario nom +sillabata sillabare ver +sillabate sillabare ver +sillabati sillabare ver +sillabato sillabare ver +sillabazione sillabazione nom +sillabe sillaba nom +sillabi sillabo nom +sillabica sillabico adj +sillabiche sillabico adj +sillabici sillabico adj +sillabico sillabico adj +sillabo sillabo nom +sillessi sillessi nom +silloge silloge nom +sillogi silloge nom +sillogismi sillogismo nom +sillogismo sillogismo nom +sillogistica sillogistico adj +sillogistiche sillogistico adj +sillogistici sillogistico adj +sillogistico sillogistico adj +sillogizzare sillogizzare ver +sillogizzò sillogizzare ver +silo silo nom +silografia silografia nom +silografica silografico adj +silografiche silografico adj +silografie silografia nom +silografo silografo nom +silos silos nom +silura silurare ver +silurai silurare ver +siluramenti siluramento nom +siluramento siluramento nom +silurando silurare ver +silurano silurare ver +silurante silurante adj +siluranti silurante adj +silurare silurare ver +silurarla silurare ver +silurarlo silurare ver +silurarono silurare ver +silurata silurare ver +silurate silurare ver +silurati silurare ver +silurato silurare ver +silurava silurare ver +siluri siluro nom +siluriana siluriano adj +siluriane siluriano adj +siluriani siluriano adj +siluriano siluriano nom +silurico silurico adj +silurifici silurificio nom +silurificio silurificio nom +siluriforme siluriforme adj +siluriformi siluriforme adj +silurino silurare ver +siluripedio siluripedio nom +siluro siluro nom +silurò silurare ver +silvana silvano adj +silvane silvano adj +silvani silvano adj +silvano silvano adj +silvestre silvestre adj +silvestri silvestre adj +silvia silvia nom +silvicola silvicolo adj +silvicole silvicolo adj +silvicoltori silvicoltore nom +silvicoltura silvicoltura nom +silvicultura silvicultura nom +silvie silvia nom +sima sima nom +simbionte simbionte nom +simbionti simbionte nom +simbiosi simbiosi nom +simbiotica simbiotico adj +simbiotiche simbiotico adj +simbiotici simbiotico adj +simbiotico simbiotico adj +simboleggerebbe simboleggiare ver +simboleggerebbero simboleggiare ver +simboleggerà simboleggiare ver +simboleggi simboleggiare ver +simboleggia simboleggiare ver +simboleggiando simboleggiare ver +simboleggiano simboleggiare ver +simboleggiante simboleggiare ver +simboleggianti simboleggiare ver +simboleggiare simboleggiare ver +simboleggiarne simboleggiare ver +simboleggiarono simboleggiare ver +simboleggiasse simboleggiare ver +simboleggiassero simboleggiare ver +simboleggiata simboleggiare ver +simboleggiate simboleggiare ver +simboleggiati simboleggiare ver +simboleggiato simboleggiare ver +simboleggiava simboleggiare ver +simboleggiavano simboleggiare ver +simboleggino simboleggiare ver +simboleggiò simboleggiare ver +simboli simbolo nom +simbolica simbolico adj +simboliche simbolico adj +simbolici simbolico adj +simbolico simbolico adj +simbolismi simbolismo nom +simbolismo simbolismo nom +simbolista simbolista adj +simboliste simbolista adj +simbolisti simbolista adj +simbolistica simbolistico adj +simbolistiche simbolistico adj +simbolistici simbolistico adj +simbolistico simbolistico adj +simbolizzato simbolizzare ver +simbolo simbolo nom +simbologia simbologia nom +simbologie simbologia nom +simi sima nom +similare similare adj +similari similare adj +simile simile adj_sup +simili simile adj_sup +similitudine similitudine nom +similitudini similitudine nom +similoro similoro nom +similpelle similpelle nom +simmetria simmetria nom +simmetrica simmetrico adj +simmetriche simmetrico adj +simmetrici simmetrico adj +simmetrico simmetrico adj +simmetrie simmetria nom +simonia simonia nom +simoniaca simoniaco adj +simoniache simoniaco adj +simoniaci simoniaco adj +simoniaco simoniaco adj +simonie simonia nom +simpamina simpamina nom +simpatetica simpatetico adj +simpatetici simpatetico adj +simpatetico simpatetico adj +simpatia simpatia nom +simpatica simpatico adj +simpatiche simpatico adj +simpatici simpatico adj +simpatico simpatico adj +simpatie simpatia nom +simpatizza simpatizzare ver +simpatizzando simpatizzare ver +simpatizzano simpatizzare ver +simpatizzante simpatizzante nom +simpatizzanti simpatizzante nom +simpatizzare simpatizzare ver +simpatizzarono simpatizzare ver +simpatizzasse simpatizzare ver +simpatizzassero simpatizzare ver +simpatizzati simpatizzare ver +simpatizzato simpatizzare ver +simpatizzava simpatizzare ver +simpatizzavano simpatizzare ver +simpatizziamo simpatizzare ver +simpatizzo simpatizzare ver +simpatizzò simpatizzare ver +simplex simplex nom +simposi simposio nom +simposio simposio nom +simula simulare ver +simulaci simulare ver +simulacri simulacro nom +simulacro simulacro nom +simulando simulare ver +simulandone simulare ver +simulano simulare ver +simulante simulare ver +simulanti simulare ver +simulare simulare ver +simularla simulare ver +simularle simulare ver +simularli simulare ver +simularlo simulare ver +simularne simulare ver +simularono simulare ver +simulasi simulare ver +simulasse simulare ver +simulassero simulare ver +simulata simulare ver +simulate simulare ver +simulati simulare ver +simulato simulare ver +simulatore simulatore nom +simulatori simulatore nom +simulatoria simulatorio adj +simulatorio simulatorio adj +simulatrice simulatore nom +simulava simulare ver +simulavano simulare ver +simulazione simulazione nom +simulazioni simulazione nom +simuleranno simulare ver +simulerà simulare ver +simuli simulare ver +simuliamo simulare ver +simulino simulare ver +simulo simulare ver +simultanea simultaneo adj +simultaneamente simultaneamente adv +simultanee simultaneo adj +simultanei simultaneo adj +simultaneità simultaneità nom +simultaneo simultaneo adj +simulò simulare ver +simun simun nom +sin sin pre +sinagoga sinagoga nom +sinagoghe sinagoga nom +sinalefe sinalefe nom +sinalefi sinalefe nom +sinapsi sinapsi nom +sinartrosi sinartrosi nom +sincarpici sincarpico adj +sincarpico sincarpico adj +sincarpo sincarpo adj +sincera sincero adj +sinceramente sinceramente adv +sincerandosi sincerare ver +sincerano sincerare ver +sincerarci sincerare ver +sincerare sincerare ver +sincerarmi sincerare ver +sincerarsene sincerare ver +sincerarsi sincerare ver +sincerartene sincerare ver +sincerarvi sincerare ver +sincerati sincerare ver +sincerato sincerare ver +sinceravi sincerare ver +sincere sincero adj +sinceri sincero adj +sincerità sincerità nom +sincero sincero adj +sincerò sincerare ver +sinché sinché con +sinclinale sinclinale nom +sinclinali sinclinale nom +sincopale sincopare ver +sincopali sincopare ver +sincopare sincopare ver +sincopata sincopato adj +sincopate sincopato adj +sincopati sincopato adj +sincopato sincopare ver +sincope sincope nom +sincopi sincope nom +sincretismi sincretismo nom +sincretismo sincretismo nom +sincrociclotrone sincrociclotrone nom +sincrona sincrono adj +sincrone sincrono adj +sincroni sincrono adj +sincronia sincronia nom +sincronica sincronico adj +sincroniche sincronico adj +sincronici sincronico adj +sincronico sincronico adj +sincronie sincronia nom +sincronismi sincronismo nom +sincronismo sincronismo nom +sincronizza sincronizzare ver +sincronizzando sincronizzare ver +sincronizzandola sincronizzare ver +sincronizzandoli sincronizzare ver +sincronizzandone sincronizzare ver +sincronizzandosi sincronizzare ver +sincronizzano sincronizzare ver +sincronizzante sincronizzare ver +sincronizzanti sincronizzare ver +sincronizzare sincronizzare ver +sincronizzarla sincronizzare ver +sincronizzarle sincronizzare ver +sincronizzarli sincronizzare ver +sincronizzarlo sincronizzare ver +sincronizzarne sincronizzare ver +sincronizzarsi sincronizzare ver +sincronizzata sincronizzare ver +sincronizzate sincronizzare ver +sincronizzati sincronizzare ver +sincronizzato sincronizzare ver +sincronizzatore sincronizzatore nom +sincronizzatori sincronizzatore nom +sincronizzava sincronizzare ver +sincronizzazione sincronizzazione nom +sincronizzazioni sincronizzazione nom +sincronizzerà sincronizzare ver +sincronizzi sincronizzare ver +sincronizzino sincronizzare ver +sincronizzo sincronizzare ver +sincronizzò sincronizzare ver +sincrono sincrono adj +sincrotone sincrotone nom +sindaca sindacare ver +sindacabile sindacabile adj +sindacabili sindacabile adj +sindacale sindacale adj +sindacali sindacale adj +sindacalismo sindacalismo nom +sindacalista sindacalista nom +sindacaliste sindacalista nom +sindacalisti sindacalista nom +sindacalizzare sindacalizzare ver +sindacalizzata sindacalizzare ver +sindacalizzate sindacalizzare ver +sindacalizzati sindacalizzare ver +sindacalizzato sindacalizzare ver +sindacando sindacare ver +sindacare sindacare ver +sindacata sindacare ver +sindacate sindacare ver +sindacati sindacato nom +sindacato sindacato nom +sindacatori sindacatore nom +sindacava sindacare ver +sindachessa sindachessa nom +sindachiamo sindacare ver +sindaci sindaco nom +sindaco sindaco nom +sindacò sindacare ver +sinderesi sinderesi nom +sindone sindone nom +sindoni sindone nom +sindrome sindrome nom +sindromi sindrome nom +sinecura sinecura nom +sinecure sinecura nom +sineddoche sineddoche nom +sineddochi sineddoche nom +sinedrio sinedrio nom +sineresi sineresi nom +sinergia sinergia nom +sinergica sinergico adj +sinergici sinergico adj +sinergico sinergico adj +sinergie sinergia nom +sinergismi sinergismo nom +sinergismo sinergismo nom +sinfisi sinfisi nom +sinfonia sinfonia nom +sinfonica sinfonico adj +sinfoniche sinfonico adj +sinfonici sinfonico adj +sinfonico sinfonico adj +sinfonie sinfonia nom +singhiozza singhiozzare ver +singhiozzando singhiozzare ver +singhiozzano singhiozzare ver +singhiozzante singhiozzare ver +singhiozzare singhiozzare ver +singhiozzava singhiozzare ver +singhiozzi singhiozzo nom +singhiozzo singhiozzo nom +singhiozzò singhiozzare ver +singleton singleton nom +singola singolo adj +singolare singolare adj +singolari singolare adj +singolarità singolarità nom +singolarmente singolarmente adv +singole singolo adj +singoli singolo adj +singolo singolo adj +singulti singulto nom +singulto singulto nom +siniscalchi siniscalco nom +siniscalco siniscalco nom +sinistra sinistra nom +sinistrata sinistrare ver +sinistrate sinistrare ver +sinistrati sinistrato nom +sinistrato sinistrare ver +sinistre sinistra nom +sinistri sinistro adj +sinistrismo sinistrismo nom +sinistro sinistro adj +sinistroide sinistroide nom +sinistroidi sinistroide nom +sinistrorsa sinistrorso adj +sinistrorse sinistrorso adj +sinistrorsi sinistrorso adj +sinistrorso sinistrorso adj +sinistrò sinistrare ver +sino sino pre +sinodale sinodale adj +sinodali sinodale adj +sinodi sinodo nom +sinodica sinodico adj +sinodiche sinodico adj +sinodici sinodico adj +sinodico sinodico adj +sinodo sinodo nom +sinologa sinologo nom +sinologhi sinologo nom +sinologi sinologo nom +sinologia sinologia nom +sinologie sinologia nom +sinologo sinologo nom +sinonimi sinonimo nom +sinonimia sinonimia nom +sinonimie sinonimia nom +sinonimo sinonimo nom +sinopia sinopia nom +sinopie sinopia nom +sinora sinora adv_sup +sinossi sinossi nom +sinottica sinottico adj +sinottiche sinottico adj +sinottici sinottico adj +sinottico sinottico adj +sinovia sinovia nom +sinoviale sinoviale adj +sinoviali sinoviale adj +sinovie sinovia nom +sinovite sinovite nom +sinoviti sinovite nom +sintagma sintagma nom +sintagmatica sintagmatico adj +sintagmatiche sintagmatico adj +sintagmatici sintagmatico adj +sintagmatico sintagmatico adj +sintagmi sintagma nom +sintassi sintassi nom +sintattica sintattico adj +sintattiche sintattico adj +sintattici sintattico adj +sintattico sintattico adj +sinterizza sinterizzare ver +sinterizzare sinterizzare ver +sinterizzata sinterizzare ver +sinterizzate sinterizzare ver +sinterizzati sinterizzare ver +sinterizzato sinterizzare ver +sinterizzazione sinterizzazione nom +sinterizzazioni sinterizzazione nom +sintesi sintesi nom +sintetica sintetico adj +sinteticamente sinteticamente adv +sintetiche sintetico adj +sintetici sintetico adj +sintetico sintetico adj +sintetizza sintetizzare ver +sintetizzando sintetizzare ver +sintetizzandola sintetizzare ver +sintetizzandole sintetizzare ver +sintetizzandoli sintetizzare ver +sintetizzandolo sintetizzare ver +sintetizzandone sintetizzare ver +sintetizzano sintetizzare ver +sintetizzante sintetizzare ver +sintetizzanti sintetizzare ver +sintetizzare sintetizzare ver +sintetizzarla sintetizzare ver +sintetizzarle sintetizzare ver +sintetizzarli sintetizzare ver +sintetizzarlo sintetizzare ver +sintetizzarne sintetizzare ver +sintetizzarono sintetizzare ver +sintetizzarsi sintetizzare ver +sintetizzata sintetizzare ver +sintetizzate sintetizzare ver +sintetizzati sintetizzare ver +sintetizzato sintetizzare ver +sintetizzatore sintetizzatore nom +sintetizzatori sintetizzatore nom +sintetizzava sintetizzare ver +sintetizzavano sintetizzare ver +sintetizzerei sintetizzare ver +sintetizzerà sintetizzare ver +sintetizzi sintetizzare ver +sintetizziamo sintetizzare ver +sintetizziamolo sintetizzare ver +sintetizzino sintetizzare ver +sintetizzo sintetizzare ver +sintetizzò sintetizzare ver +sintomatica sintomatico adj +sintomatiche sintomatico adj +sintomatici sintomatico adj +sintomatico sintomatico adj +sintomatologia sintomatologia nom +sintomatologie sintomatologia nom +sintomi sintomo nom +sintomo sintomo nom +sintonia sintonia nom +sintonica sintonico adj +sintonici sintonico adj +sintonico sintonico adj +sintonie sintonia nom +sintonizza sintonizzare ver +sintonizzando sintonizzare ver +sintonizzandosi sintonizzare ver +sintonizzano sintonizzare ver +sintonizzare sintonizzare ver +sintonizzarmi sintonizzare ver +sintonizzarono sintonizzare ver +sintonizzarsi sintonizzare ver +sintonizzata sintonizzare ver +sintonizzate sintonizzare ver +sintonizzati sintonizzare ver +sintonizzato sintonizzare ver +sintonizzatore sintonizzatore nom +sintonizzatori sintonizzatore nom +sintonizzavano sintonizzare ver +sintonizzazione sintonizzazione nom +sintonizzerà sintonizzare ver +sintonizzò sintonizzare ver +sinuosa sinuoso adj +sinuose sinuoso adj +sinuosi sinuoso adj +sinuosità sinuosità nom +sinuoso sinuoso adj +sinusite sinusite nom +sinusiti sinusite nom +sinusoidale sinusoidale adj +sinusoidali sinusoidale adj +sinusoide sinusoide nom +sinusoidi sinusoide nom +sionismi sionismo nom +sionismo sionismo nom +sionista sionista nom +sioniste sionista nom +sionisti sionista nom +sior sior nom +siora siora nom +siore siora nom +sipari sipario nom +siparietti siparietto nom +siparietto siparietto nom +sipario sipario nom +sire sire nom +sirena sirena nom +sirene sirena nom +siri sire nom +siriana siriano adj +siriane siriano adj +siriani siriano adj +siriano siriano adj +sirima sirima nom +siringhe siringa nom +sirte sirte nom +sirti sirte nom +sirventese sirventese nom +sirventesi sirventese nom +sisal sisal nom +sisma sisma nom +sismi sisma|sismo nom +sismica sismico adj +sismiche sismico adj +sismici sismico adj +sismicità sismicità nom +sismico sismico adj +sismo sismo nom +sismografi sismografo nom +sismografo sismografo nom +sismogramma sismogramma nom +sismogrammi sismogramma nom +sismologa sismologo nom +sismologi sismologo nom +sismologia sismologia nom +sismologie sismologia nom +sismologo sismologo nom +sissignore sissignore int +sistema sistema nom +sistemai sistemare ver +sistemala sistemare ver +sistemali sistemare ver +sistemalo sistemare ver +sistemammo sistemare ver +sistemando sistemare ver +sistemandola sistemare ver +sistemandole sistemare ver +sistemandoli sistemare ver +sistemandolo sistemare ver +sistemandone sistemare ver +sistemandosi sistemare ver +sistemandovi sistemare ver +sistemano sistemare ver +sistemarci sistemare ver +sistemare sistemare ver +sistemargli sistemare ver +sistemarla sistemare ver +sistemarle sistemare ver +sistemarli sistemare ver +sistemarlo sistemare ver +sistemarmi sistemare ver +sistemarne sistemare ver +sistemarono sistemare ver +sistemarsi sistemare ver +sistemarti sistemare ver +sistemarvi sistemare ver +sistemasse sistemare ver +sistemassero sistemare ver +sistemassi sistemare ver +sistemata sistemare ver +sistemate sistemare ver +sistematela sistemare ver +sistematelo sistemare ver +sistemati sistemare ver +sistematica sistematico adj +sistematicamente sistematicamente adv +sistematiche sistematico adj +sistematici sistematico adj +sistematicità sistematicità nom +sistematico sistematico adj +sistematizzare sistematizzare ver +sistematizzata sistematizzare ver +sistematizzate sistematizzare ver +sistematizzazione sistematizzazione nom +sistemato sistemare ver +sistemava sistemare ver +sistemavano sistemare ver +sistemavo sistemare ver +sistemazione sistemazione nom +sistemazioni sistemazione nom +sistemeranno sistemare ver +sistemerebbe sistemare ver +sistemerei sistemare ver +sistemeremo sistemare ver +sistemeresti sistemare ver +sistemerà sistemare ver +sistemerò sistemare ver +sistemi sistema nom +sistemiamo sistemare ver +sistemiamola sistemare ver +sistemica sistemico adj +sistemiche sistemico adj +sistemici sistemico adj +sistemico sistemico adj +sistemino sistemare ver +sistemista sistemista nom +sistemiste sistemista nom +sistemisti sistemista nom +sistemo sistemare ver +sistemò sistemare ver +sistola sistola nom +sistole sistola|sistole nom +sistri sistro nom +sistro sistro nom +sita sito adj +site sito adj +siti sito nom +sitibonda sitibondo adj +sitibondi sitibondo adj +sitibondo sitibondo adj +sito sito adj +situa situare ver +situaci situare ver +situando situare ver +situandola situare ver +situandolo situare ver +situandosi situare ver +situano situare ver +situar situare ver +situare situare ver +situarla situare ver +situarle situare ver +situarlo situare ver +situarono situare ver +situarsi situare ver +situarvi situare ver +situasse situare ver +situata situare ver +situate situare ver +situati situare ver +situato situare ver +situava situare ver +situavano situare ver +situazione situazione nom +situazioni situazione nom +situeranno situare ver +situerebbe situare ver +situerebbero situare ver +situerà situare ver +situi situare ver +situino situare ver +situo situare ver +situò situare ver +siviera siviera nom +siviere siviera nom +sizigia sizigia nom +sizigiale sizigiale adj +sizigie sizigia nom +skai skai nom +skating skating nom +skeleton skeleton nom +sketch sketch nom +skinhead skinhead nom +skunk skunk nom +slabbrate slabbrare ver +slabbrato slabbrare ver +slaccia slacciare ver +slacciare slacciare ver +slacciarlo slacciare ver +slacciarsi slacciare ver +slacciata slacciare ver +slacciate slacciare ver +slacciati slacciare ver +slacciato slacciare ver +slacciò slacciare ver +slalom slalom nom +slalomista slalomista nom +slalomisti slalomista nom +slam slam nom +slanci slancio nom +slancia slanciare ver +slanciai slanciare ver +slanciando slanciare ver +slanciandosi slanciare ver +slanciano slanciare ver +slanciare slanciare ver +slanciarono slanciare ver +slanciarsi slanciare ver +slanciata slanciato adj +slanciate slanciato adj +slanciati slanciato adj +slanciato slanciato adj +slanciava slanciare ver +slanciavano slanciare ver +slancio slancio nom +slanciò slanciare ver +slang slang nom +slarga slargare ver +slargare slargare ver +slargata slargare ver +slargate slargare ver +slargati slargare ver +slargato slargare ver +slarghi slargo nom +slargo slargo nom +slatta slattare ver +slattato slattare ver +slava slavo adj +slavata slavato adj +slavate slavato adj +slavati slavato adj +slavato slavato adj +slave slavo adj +slavi slavo adj +slavina slavina nom +slavine slavina nom +slavismo slavismo nom +slavistica slavistica nom +slavistiche slavistica nom +slavo slavo adj +sleale sleale adj +sleali sleale adj +slealtà slealtà nom +slega slegare ver +slegando slegare ver +slegandole slegare ver +slegandolo slegare ver +slegandosi slegare ver +slegano slegare ver +slegar slegare ver +slegare slegare ver +slegarle slegare ver +slegarli slegare ver +slegarlo slegare ver +slegarsi slegare ver +slegassero slegare ver +slegata slegare ver +slegate slegare ver +slegati slegare ver +slegato slegare ver +slegava slegare ver +slego slegare ver +slegò slegare ver +slinky slinky nom +slip slip nom +slitta slitta nom +slittamenti slittamento nom +slittamento slittamento nom +slittami slittare ver +slittando slittare ver +slittano slittare ver +slittante slittare ver +slittanti slittare ver +slittare slittare ver +slittarono slittare ver +slittasse slittare ver +slittassero slittare ver +slittata slittare ver +slittate slittare ver +slittati slittare ver +slittato slittare ver +slittava slittare ver +slittavano slittare ver +slitte slitta nom +slitteranno slittare ver +slitterebbe slittare ver +slitterebbero slittare ver +slitterà slittare ver +slitti slittare ver +slittino slittare ver +slittovia slittovia nom +slittovie slittovia nom +slittò slittare ver +sloga slogare ver +slogan slogan nom +slogandosi slogare ver +slogano slogare ver +slogare slogare ver +slogarsi slogare ver +slogata slogare ver +slogato slogare ver +slogatura slogatura nom +slogature slogatura nom +sloggiando sloggiare ver +sloggiandone sloggiare ver +sloggiare sloggiare ver +sloggiarli sloggiare ver +sloggiarlo sloggiare ver +sloggiarono sloggiare ver +sloggiata sloggiare ver +sloggiate sloggiare ver +sloggiati sloggiare ver +sloggiato sloggiare ver +sloggiava sloggiare ver +sloggiavano sloggiare ver +sloghi slogare ver +slogò slogare ver +sloop sloop nom +slovacca slovacca adj +slovacche slovacca adj +slovacchi slovacca adj +slovacco slovacca adj +slovena sloveno adj +slovene sloveno adj +sloveni sloveno adj +sloveno sloveno adj +slow slow nom +slum slum nom +smaccata smaccato adj +smaccate smaccato adj +smaccati smaccato adj +smaccato smaccato adj +smacchi smacco nom +smacchia smacchiare ver +smacchiante smacchiare ver +smacchiare smacchiare ver +smacchiatore smacchiatore nom +smacchiatori smacchiatore nom +smacchiatura smacchiatura nom +smacco smacco nom +smagliante smagliante adj +smaglianti smagliante adj +smagliare smagliare ver +smagliatura smagliatura nom +smagliature smagliatura nom +smagnetizza smagnetizzare ver +smagnetizzando smagnetizzare ver +smagnetizzano smagnetizzare ver +smagnetizzanti smagnetizzare ver +smagnetizzare smagnetizzare ver +smagnetizzarsi smagnetizzare ver +smagnetizzata smagnetizzare ver +smagnetizzato smagnetizzare ver +smagnetizzazione smagnetizzazione nom +smagnetizzazioni smagnetizzazione nom +smagrendo smagrire ver +smagrire smagrire ver +smagrirla smagrire ver +smagrisce smagrire ver +smagrita smagrire ver +smagriti smagrire ver +smagrito smagrire ver +smaliziare smaliziare ver +smaliziata smaliziare ver +smaliziate smaliziare ver +smaliziati smaliziare ver +smaliziato smaliziare ver +smalta smaltare ver +smaltano smaltare ver +smaltare smaltare ver +smaltata smaltare ver +smaltate smaltare ver +smaltati smaltare ver +smaltato smaltare ver +smaltatore smaltatore nom +smaltatori smaltatore nom +smaltatura smaltatura nom +smaltature smaltatura nom +smaltendo smaltire ver +smalteria smalteria nom +smalterie smalteria nom +smalti smalto nom +smaltiamo smaltare|smaltire ver +smaltimenti smaltimento nom +smaltimento smaltimento nom +smaltire smaltire ver +smaltirla smaltire ver +smaltirle smaltire ver +smaltirli smaltire ver +smaltirlo smaltire ver +smaltirne smaltire ver +smaltirà smaltire ver +smaltisca smaltire ver +smaltisce smaltire ver +smaltisco smaltire ver +smaltiscono smaltire ver +smaltita smaltire ver +smaltite smaltire ver +smaltiti smaltire ver +smaltito smaltire ver +smaltiva smaltire ver +smaltivano smaltire ver +smalto smalto nom +smanceria smanceria nom +smancerie smanceria nom +smani smaniare ver +smania smania nom +smaniano smaniare ver +smaniare smaniare ver +smaniava smaniare ver +smanie smania nom +smanio smaniare ver +smaniosa smanioso adj +smaniose smanioso adj +smaniosi smanioso adj +smanioso smanioso adj +smantella smantellare ver +smantellamenti smantellamento nom +smantellamento smantellamento nom +smantellando smantellare ver +smantellandolo smantellare ver +smantellandone smantellare ver +smantellano smantellare ver +smantellare smantellare ver +smantellarla smantellare ver +smantellarle smantellare ver +smantellarlo smantellare ver +smantellarne smantellare ver +smantellarono smantellare ver +smantellata smantellare ver +smantellate smantellare ver +smantellati smantellare ver +smantellato smantellare ver +smantellava smantellare ver +smantelleranno smantellare ver +smantellerà smantellare ver +smantellò smantellare ver +smarca smarcare ver +smarcandosi smarcare ver +smarcano smarcare ver +smarcante smarcare ver +smarcanti smarcare ver +smarcare smarcare ver +smarcarsi smarcare ver +smarcasse smarcare ver +smarcati smarcare ver +smarcato smarcare ver +smarco smarcare ver +smargiassate smargiassata nom +smargiassi smargiasso nom +smargiasso smargiasso nom +smarginata smarginare ver +smarginate smarginare ver +smarginati smarginare ver +smarginato smarginare ver +smarrendo smarrire ver +smarrendosi smarrire ver +smarrimenti smarrimento nom +smarrimento smarrimento nom +smarrire smarrire ver +smarrirebbe smarrire ver +smarrirono smarrire ver +smarrirsi smarrire ver +smarrirà smarrire ver +smarrisca smarrire ver +smarriscano smarrire ver +smarrisce smarrire ver +smarriscono smarrire ver +smarrita smarrire ver +smarrite smarrito adj +smarriti smarrito adj +smarrito smarrire ver +smarriva smarrire ver +smarrì smarrire ver +smascella smascellare ver +smaschera smascherare ver +smascheramenti smascheramento nom +smascheramento smascheramento nom +smascherando smascherare ver +smascherandolo smascherare ver +smascherandone smascherare ver +smascherandosi smascherare ver +smascherano smascherare ver +smascherare smascherare ver +smascherarla smascherare ver +smascherarli smascherare ver +smascherarlo smascherare ver +smascherarne smascherare ver +smascherarono smascherare ver +smascherarsi smascherare ver +smascherata smascherare ver +smascherate smascherare ver +smascherati smascherare ver +smascherato smascherare ver +smascheratore smascheratore nom +smascherava smascherare ver +smaschereranno smascherare ver +smaschererà smascherare ver +smascheri smascherare ver +smascherino smascherare ver +smascherò smascherare ver +smash smash nom +smaterializza smaterializzare ver +smaterializzando smaterializzare ver +smaterializzandosi smaterializzare ver +smaterializzano smaterializzare ver +smaterializzante smaterializzare ver +smaterializzanti smaterializzare ver +smaterializzare smaterializzare ver +smaterializzarla smaterializzare ver +smaterializzarsi smaterializzare ver +smaterializzata smaterializzare ver +smaterializzate smaterializzare ver +smaterializzato smaterializzare ver +smaterializzò smaterializzare ver +smazzata smazzata nom +smazzate smazzata nom +smembra smembrare ver +smembramenti smembramento nom +smembramento smembramento nom +smembrando smembrare ver +smembrandola smembrare ver +smembrandole smembrare ver +smembrandoli smembrare ver +smembrandolo smembrare ver +smembrandone smembrare ver +smembrandosi smembrare ver +smembrano smembrare ver +smembrare smembrare ver +smembrarla smembrare ver +smembrarle smembrare ver +smembrarli smembrare ver +smembrarlo smembrare ver +smembrarne smembrare ver +smembrarono smembrare ver +smembrarsi smembrare ver +smembrasse smembrare ver +smembrassero smembrare ver +smembrata smembrare ver +smembrate smembrare ver +smembrati smembrare ver +smembrato smembrare ver +smembrava smembrare ver +smembravano smembrare ver +smembrerei smembrare ver +smembrerà smembrare ver +smembrò smembrare ver +smemorata smemorato adj +smemorati smemorato nom +smemorato smemorato nom +smentendo smentire ver +smentendone smentire ver +smentiamo smentire ver +smentiranno smentire ver +smentire smentire ver +smentirebbe smentire ver +smentirebbero smentire ver +smentirla smentire ver +smentirle smentire ver +smentirli smentire ver +smentirlo smentire ver +smentirmi smentire ver +smentirne smentire ver +smentirono smentire ver +smentirsi smentire ver +smentirti smentire ver +smentirvi smentire ver +smentirà smentire ver +smentisca smentire ver +smentiscano smentire ver +smentisce smentire ver +smentisci smentire ver +smentiscimi smentire ver +smentisco smentire ver +smentiscono smentire ver +smentisse smentire ver +smentissi smentire ver +smentita smentire ver +smentite smentire ver +smentitemi smentire ver +smentiti smentire ver +smentito smentire ver +smentiva smentire ver +smentivano smentire ver +smentì smentire ver +smeraldi smeraldo nom +smeraldina smeraldino adj +smeraldine smeraldino adj +smeraldini smeraldino adj +smeraldino smeraldino adj +smeraldo smeraldo adj +smerceranno smerciare ver +smerci smercio nom +smercia smerciare ver +smerciando smerciare ver +smerciano smerciare ver +smerciare smerciare ver +smerciarla smerciare ver +smerciata smerciare ver +smerciate smerciare ver +smerciati smerciare ver +smerciato smerciare ver +smerciava smerciare ver +smerciavano smerciare ver +smercio smercio nom +smerghi smergo nom +smergo smergo nom +smerigli smeriglio nom +smeriglia smerigliare ver +smerigliare smerigliare ver +smerigliata smerigliato adj +smerigliate smerigliato adj +smerigliati smerigliato adj +smerigliato smerigliato adj +smerigliatrice smerigliatore|smerigliatrice nom +smerigliatrici smerigliatore|smerigliatrice nom +smerigliatura smerigliatura nom +smeriglio smeriglio nom +smerlata smerlare ver +smerlate smerlare ver +smerlati smerlare ver +smerlato smerlare ver +smerli smerlo nom +smerlo smerlo nom +smessa smettere ver +smesse smettere ver +smessi smettere ver +smesso smettere ver +smetta smettere ver +smettano smettere ver +smette smettere ver +smettemmo smettere ver +smettendo smettere ver +smettendola smettere ver +smetter smettere ver +smetterai smettere ver +smetteranno smettere ver +smettere smettere ver +smetterebbe smettere ver +smetterebbero smettere ver +smetterei smettere ver +smetteremmo smettere ver +smetteremo smettere ver +smetteresti smettere ver +smetterete smettere ver +smetterla smettere ver +smettersela smettere ver +smetterà smettere ver +smetterò smettere ver +smettesse smettere ver +smettessero smettere ver +smettessi smettere ver +smettessimo smettere ver +smettete smettere ver +smettetela smettere ver +smetteva smettere ver +smettevano smettere ver +smetti smettere ver +smettiamo smettere ver +smettiamola smettere ver +smettiate smettere ver +smettila smettere ver +smetto smettere ver +smettono smettere ver +smezzare smezzare ver +smezzato smezzare ver +smidollati smidollato adj +smidollato smidollare ver +smielata smielare ver +smielati smielare ver +smielato smielare ver +smielatore smielatore nom +smielatura smielatura nom +smilitarizzando smilitarizzare ver +smilitarizzare smilitarizzare ver +smilitarizzata smilitarizzare ver +smilitarizzate smilitarizzare ver +smilitarizzati smilitarizzare ver +smilitarizzato smilitarizzare ver +smilitarizzazione smilitarizzazione nom +smilza smilzo adj +smilze smilzo adj +smilzi smilzo adj +smilzo smilzo adj +sminamento sminamento nom +sminare sminare ver +sminuendo sminuire ver +sminuendola sminuire ver +sminuendolo sminuire ver +sminuendone sminuire ver +sminuendosi sminuire ver +sminuente sminuire ver +sminuenti sminuire ver +sminuiamo sminuire ver +sminuire sminuire ver +sminuirebbe sminuire ver +sminuirle sminuire ver +sminuirli sminuire ver +sminuirlo sminuire ver +sminuirmi sminuire ver +sminuirne sminuire ver +sminuirono sminuire ver +sminuirsi sminuire ver +sminuirti sminuire ver +sminuisca sminuire ver +sminuiscano sminuire ver +sminuisce sminuire ver +sminuisci sminuire ver +sminuisco sminuire ver +sminuiscono sminuire ver +sminuissero sminuire ver +sminuita sminuire ver +sminuite sminuire ver +sminuiti sminuire ver +sminuito sminuire ver +sminuiva sminuire ver +sminuivano sminuire ver +sminuzza sminuzzare ver +sminuzzando sminuzzare ver +sminuzzandole sminuzzare ver +sminuzzandolo sminuzzare ver +sminuzzano sminuzzare ver +sminuzzare sminuzzare ver +sminuzzata sminuzzare ver +sminuzzate sminuzzare ver +sminuzzati sminuzzare ver +sminuzzato sminuzzare ver +sminuzzavano sminuzzare ver +sminuì sminuire ver +smise smettere ver +smisero smettere ver +smisi smettere ver +smista smistare ver +smistamenti smistamento nom +smistamento smistamento nom +smistando smistare ver +smistano smistare ver +smistare smistare ver +smistarla smistare ver +smistarle smistare ver +smistarli smistare ver +smistarlo smistare ver +smistata smistare ver +smistate smistare ver +smistati smistare ver +smistato smistare ver +smistava smistare ver +smistavano smistare ver +smisterà smistare ver +smisti smistare ver +smisurata smisurato adj +smisurate smisurato adj +smisurati smisurato adj +smisurato smisurato adj +smitizzare smitizzare ver +smitizzata smitizzare ver +smitizzato smitizzare ver +smobilita smobilitare ver +smobilitando smobilitare ver +smobilitare smobilitare ver +smobilitarono smobilitare ver +smobilitarsi smobilitare ver +smobilitata smobilitare ver +smobilitate smobilitare ver +smobilitati smobilitare ver +smobilitato smobilitare ver +smobilitava smobilitare ver +smobilitavano smobilitare ver +smobilitazione smobilitazione nom +smobilitazioni smobilitazione nom +smobilitò smobilitare ver +smobilizzo smobilizzo nom +smoccolargli smoccolare ver +smodata smodato adj +smodate smodato adj +smodati smodato adj +smodato smodato adj +smoderatezza smoderatezza nom +smoderato smoderato adj +smog smog nom +smoking smoking nom +smonta smontare ver +smontabile smontabile adj +smontabili smontabile adj +smontaggi smontaggio nom +smontaggio smontaggio nom +smontammo smontare ver +smontando smontare ver +smontandole smontare ver +smontandoli smontare ver +smontandolo smontare ver +smontandone smontare ver +smontano smontare ver +smontante smontare ver +smontare smontare ver +smontarla smontare ver +smontarle smontare ver +smontarli smontare ver +smontarlo smontare ver +smontarne smontare ver +smontarono smontare ver +smontarsele smontare ver +smontarsi smontare ver +smontasse smontare ver +smontassero smontare ver +smontata smontare ver +smontate smontare ver +smontati smontare ver +smontato smontare ver +smontava smontare ver +smontavano smontare ver +smonti smontare ver +smontiamo smontare ver +smontino smontare ver +smonto smontare ver +smontò smontare ver +smorfia smorfia nom +smorfie smorfia nom +smorfiosa smorfioso adj +smorfioso smorfioso adj +smorta smorto adj +smorte smorto adj +smorti smorto adj +smorto smorto adj +smorza smorzare ver +smorzamenti smorzamento nom +smorzamento smorzamento nom +smorzando smorzare ver +smorzandone smorzare ver +smorzandosi smorzare ver +smorzano smorzare ver +smorzante smorzare ver +smorzanti smorzare ver +smorzare smorzare ver +smorzarla smorzare ver +smorzarle smorzare ver +smorzarli smorzare ver +smorzarne smorzare ver +smorzarono smorzare ver +smorzarsi smorzare ver +smorzassero smorzare ver +smorzata smorzare ver +smorzate smorzare ver +smorzati smorzare ver +smorzato smorzare ver +smorzatore smorzatore nom +smorzatori smorzatore nom +smorzava smorzare ver +smorzeranno smorzare ver +smorzerebbe smorzare ver +smorzerà smorzare ver +smorzi smorzare ver +smorziamo smorzare ver +smorzino smorzare ver +smorzo smorzare ver +smorzò smorzare ver +smossa smuovere ver +smosse smuovere ver +smossero smuovere ver +smossi smuovere ver +smosso smuovere ver +smotta smottare ver +smottamenti smottamento nom +smottamento smottamento nom +smottare smottare ver +smozzicata smozzicare ver +smozzicate smozzicare ver +smozzicati smozzicare ver +smozzicato smozzicare ver +smozzichi smozzicare ver +smunta smunto adj +smunti smungere ver +smunto smunto adj +smuova smuovere ver +smuovano smuovere ver +smuove smuovere ver +smuovendo smuovere ver +smuoveranno smuovere ver +smuovere smuovere ver +smuoveremmo smuovere ver +smuoverla smuovere ver +smuoverli smuovere ver +smuoverlo smuovere ver +smuoverne smuovere ver +smuoversi smuovere ver +smuoverà smuovere ver +smuovesse smuovere ver +smuoveva smuovere ver +smuovevano smuovere ver +smuovi smuovere ver +smuovo smuovere ver +smuovono smuovere ver +smura smurare ver +smurando smurare ver +smurata smurare ver +smurate smurare ver +smussa smussare ver +smussando smussare ver +smussandone smussare ver +smussano smussare ver +smussare smussare ver +smussarli smussare ver +smussarne smussare ver +smussarsi smussare ver +smussasse smussare ver +smussassi smussare ver +smussata smussare ver +smussate smussare ver +smussati smussare ver +smussato smussare ver +smussatura smussatura nom +smussature smussatura nom +smusserei smussare ver +smusserà smussare ver +smussi smusso nom +smusso smusso nom +smussò smussare ver +sn sn sw +snatura snaturare ver +snaturando snaturare ver +snaturandolo snaturare ver +snaturandone snaturare ver +snaturano snaturare ver +snaturanti snaturare ver +snaturare snaturare ver +snaturarla snaturare ver +snaturarle snaturare ver +snaturarli snaturare ver +snaturarlo snaturare ver +snaturarne snaturare ver +snaturarono snaturare ver +snaturarsi snaturare ver +snaturasse snaturare ver +snaturata snaturare ver +snaturate snaturare ver +snaturati snaturato adj +snaturato snaturare ver +snaturava snaturare ver +snaturavano snaturare ver +snaturerebbe snaturare ver +snaturerebbero snaturare ver +snaturi snaturare ver +snaturino snaturare ver +snaturò snaturare ver +snazionalizzarsi snazionalizzare ver +snebbiata snebbiare ver +snella snello adj +snelle snello adj +snellendo snellire ver +snellendola snellire ver +snellendolo snellire ver +snellezza snellezza nom +snellezze snellezza nom +snelli snello adj +snelliamo snellire ver +snellii snellire ver +snellimenti snellimento nom +snellimento snellimento nom +snellire snellire ver +snellirebbe snellire ver +snellirei snellire ver +snellirla snellire ver +snellirle snellire ver +snellirlo snellire ver +snellirsi snellire ver +snellirà snellire ver +snellisca snellire ver +snelliscano snellire ver +snellisce snellire ver +snelliscono snellire ver +snellisse snellire ver +snellita snellire ver +snellite snellire ver +snelliti snellire ver +snellito snellire ver +snelliva snellire ver +snello snello adj +snellì snellire ver +snervamento snervamento nom +snervando snervare ver +snervante snervante adj +snervanti snervante adj +snervare snervare ver +snervarsi snervare ver +snervata snervare ver +snervati snervato adj +snervato snervare ver +snida snidare ver +snidando snidare ver +snidano snidare ver +snidare snidare ver +snidarla snidare ver +snidarli snidare ver +snidarlo snidare ver +snidarono snidare ver +snidati snidare ver +snidato snidare ver +snidò snidare ver +snipe snipe nom +snob snob nom +snobba snobbare ver +snobbando snobbare ver +snobbano snobbare ver +snobbare snobbare ver +snobbarla snobbare ver +snobbarle snobbare ver +snobbarlo snobbare ver +snobbarono snobbare ver +snobbasse snobbare ver +snobbata snobbare ver +snobbate snobbare ver +snobbati snobbare ver +snobbato snobbare ver +snobbava snobbare ver +snobbavano snobbare ver +snobbi snobbare ver +snobbiamo snobbare ver +snobbo snobbare ver +snobbò snobbare ver +snobismi snobismo nom +snobismo snobismo nom +snobistica snobistico adj +snobistiche snobistico adj +snobistici snobistico adj +snobistico snobistico adj +snocciola snocciolare ver +snocciolando snocciolare ver +snocciolano snocciolare ver +snocciolare snocciolare ver +snocciolata snocciolare ver +snocciolate snocciolare ver +snocciolati snocciolare ver +snocciolato snocciolare ver +snocciolò snocciolare ver +snoda snodare ver +snodabile snodabile adj +snodabili snodabile adj +snodando snodare ver +snodandosi snodare ver +snodano snodare ver +snodare snodare ver +snodarono snodare ver +snodarsi snodare ver +snodasse snodare ver +snodata snodare ver +snodate snodare ver +snodati snodare ver +snodato snodare ver +snodatura snodatura nom +snodava snodare ver +snodavano snodare ver +snoderanno snodare ver +snoderebbe snodare ver +snoderà snodare ver +snodi snodo nom +snodo snodo nom +snodò snodare ver +snudata snudare ver +so sapere ver_sup +soave soave adj +soavi soave adj +soavità soavità nom +sobbalza sobbalzare ver +sobbalzando sobbalzare ver +sobbalzanti sobbalzare ver +sobbalzare sobbalzare ver +sobbalzarono sobbalzare ver +sobbalzato sobbalzare ver +sobbalzava sobbalzare ver +sobbalzi sobbalzo nom +sobbalzo sobbalzo nom +sobbalzò sobbalzare ver +sobbarca sobbarcare ver +sobbarcandosi sobbarcare ver +sobbarcano sobbarcare ver +sobbarcarci sobbarcare ver +sobbarcare sobbarcare ver +sobbarcarmi sobbarcare ver +sobbarcarono sobbarcare ver +sobbarcarsi sobbarcare ver +sobbarcarti sobbarcare ver +sobbarcata sobbarcare ver +sobbarcate sobbarcare ver +sobbarcati sobbarcare ver +sobbarcato sobbarcare ver +sobbarcava sobbarcare ver +sobbarcherà sobbarcare ver +sobbarcherò sobbarcare ver +sobbarchiamo sobbarcare ver +sobbarcò sobbarcare ver +sobbollire sobbollire ver +sobborghi sobborgo nom +sobborgo sobborgo nom +sobilla sobillare ver +sobillando sobillare ver +sobillano sobillare ver +sobillare sobillare ver +sobillarono sobillare ver +sobillasse sobillare ver +sobillata sobillare ver +sobillate sobillare ver +sobillati sobillare ver +sobillato sobillare ver +sobillatore sobillatore nom +sobillatori sobillatore nom +sobillatrice sobillatore adj +sobillava sobillare ver +sobillavano sobillare ver +sobillò sobillare ver +sobri sobrio adj +sobria sobrio adj +sobrie sobrio adj +sobrietà sobrietà nom +sobrio sobrio adj +socchi socco nom +socchiude socchiudere ver +socchiudendo socchiudere ver +socchiudere socchiudere ver +socchiudeva socchiudere ver +socchiudi socchiudere ver +socchiudo socchiudere ver +socchiusa socchiudere ver +socchiuse socchiudere ver +socchiusi socchiudere ver +socchiuso socchiudere ver +soccida soccida nom +socco socco nom +soccomba soccombere ver +soccombano soccombere ver +soccombe soccombere ver +soccombendo soccombere ver +soccombente soccombente adj +soccombenti soccombente adj +soccomberanno soccombere ver +soccombere soccombere ver +soccomberebbe soccombere ver +soccomberà soccombere ver +soccombesse soccombere ver +soccombette soccombere ver +soccombettero soccombere ver +soccombeva soccombere ver +soccombevano soccombere ver +soccombono soccombere ver +soccorrere soccorrere ver +soccorritore soccorritore nom +soccorritori soccorritore nom +soccorritrice soccorritore adj +soccorritrici soccorritore adj +soccorsi soccorso nom +soccorso soccorso nom +soci socio nom +socia socio nom +socialcomunista socialcomunista adj +socialdemocratica socialdemocratico adj +socialdemocratiche socialdemocratico adj +socialdemocratici socialdemocratico adj +socialdemocratico socialdemocratico adj +socialdemocrazia socialdemocrazia nom +socialdemocrazie socialdemocrazia nom +sociale sociale adj +sociali sociale adj +socialismi socialismo nom +socialismo socialismo nom +socialista socialista adj +socialiste socialista adj +socialisti socialista adj +socialistica socialistico adj +socialistiche socialistico adj +socialistici socialistico adj +socialistico socialistico adj +socialità socialità nom +socializza socializzare ver +socializzando socializzare ver +socializzandoli socializzare ver +socializzano socializzare ver +socializzante socializzare ver +socializzanti socializzare ver +socializzare socializzare ver +socializzarono socializzare ver +socializzarsi socializzare ver +socializzata socializzare ver +socializzate socializzare ver +socializzati socializzare ver +socializzato socializzare ver +socializzava socializzare ver +socializzazione socializzazione nom +socializzazioni socializzazione nom +socializzino socializzare ver +socializzò socializzare ver +socialmente socialmente adv +socie socio nom +societari societario adj +societaria societario adj +societarie societario adj +societario societario adj +società società nom +socievole socievole adj +socievolezza socievolezza nom +socievoli socievole adj +socio socio nom +sociobiologia sociobiologia nom +sociobiologie sociobiologia nom +socioculturale socioculturale adj +socioculturali socioculturale adj +socioeconomica socioeconomico adj +socioeconomiche socioeconomico adj +socioeconomici socioeconomico adj +socioeconomico socioeconomico adj +sociologa sociologo nom +sociologi sociologo nom +sociologia sociologia nom +sociologica sociologico adj +sociologiche sociologico adj +sociologici sociologico adj +sociologico sociologico adj +sociologie sociologia nom +sociologo sociologo nom +sociopolitiche sociopolitico adj +sociosanitari sociosanitario adj +sociosanitaria sociosanitario adj +sociosanitario sociosanitario adj +socratica socratico adj +socratiche socratico adj +socratici socratico adj +socratico socratico adj +soda sodo adj +sodaglie sodaglia nom +sodai sodare ver +sodale sodare ver +sodali sodare ver +sodalizi sodalizio nom +sodalizio sodalizio nom +sodano sodare ver +sodar sodare ver +sodare sodare ver +sodata sodare ver +sodate sodare ver +sodati sodare ver +sodato sodare ver +soddisfa soddisfare ver +soddisfacendo soddisfare ver +soddisfacendone soddisfare ver +soddisfacente soddisfacente adj +soddisfacentemente soddisfacentemente adv +soddisfacenti soddisfacente adj +soddisfacesse soddisfare ver +soddisfacessero soddisfare ver +soddisfaceva soddisfare ver +soddisfacevano soddisfare ver +soddisfacimento soddisfacimento nom +soddisfando soddisfare ver +soddisfano soddisfare ver +soddisfar soddisfare ver +soddisfare soddisfare ver +soddisfarla soddisfare ver +soddisfarle soddisfare ver +soddisfarli soddisfare ver +soddisfarlo soddisfare ver +soddisfarmi soddisfare ver +soddisfarne soddisfare ver +soddisfarsi soddisfare ver +soddisfarti soddisfare ver +soddisfarvi soddisfare ver +soddisfate soddisfare ver +soddisfati soddisfare ver +soddisfatta soddisfare ver +soddisfatte soddisfare ver +soddisfatti soddisfare ver +soddisfatto soddisfare ver +soddisfavano soddisfare ver +soddisfazione soddisfazione nom +soddisfazioni soddisfazione nom +soddisfece soddisfare ver +soddisfecero soddisfare ver +soddisferanno soddisfare ver +soddisferebbe soddisfare ver +soddisferebbero soddisfare ver +soddisferemo soddisfare ver +soddisferà soddisfare ver +soddisferò soddisfare ver +soddisfi soddisfare ver +soddisfiamo soddisfare ver +soddisfino soddisfare ver +soddisfo soddisfare ver +sode sodo adj +sodi sodo adj +sodica sodico adj +sodiche sodico adj +sodici sodico adj +sodico sodico adj +sodio sodio nom +sodo sodo adj +sodomia sodomia nom +sodomie sodomia nom +sodomita sodomita nom +sodomite sodomita nom +sodomiti sodomita nom +sofferente sofferente adj +sofferenti sofferente adj +sofferenza sofferenza nom +sofferenze sofferenza nom +sofferma soffermare ver +soffermando soffermare ver +soffermandoci soffermare ver +soffermandomi soffermare ver +soffermandosi soffermare ver +soffermandoti soffermare ver +soffermano soffermare ver +soffermarci soffermare ver +soffermare soffermare ver +soffermarmi soffermare ver +soffermarono soffermare ver +soffermarsi soffermare ver +soffermarti soffermare ver +soffermarvi soffermare ver +soffermasse soffermare ver +soffermassero soffermare ver +soffermata soffermare ver +soffermate soffermare ver +soffermati soffermare ver +soffermato soffermare ver +soffermava soffermare ver +soffermavano soffermare ver +soffermerei soffermare ver +soffermeremo soffermare ver +soffermerà soffermare ver +soffermerò soffermare ver +soffermi soffermare ver +soffermiamo soffermare ver +soffermiamoci soffermare ver +soffermino soffermare ver +soffermo soffermare ver +soffermò soffermare ver +sofferta sofferto adj +sofferte soffrire ver +sofferti soffrire ver +sofferto soffrire ver +soffi soffio nom +soffia soffiare ver +soffiaci soffiare ver +soffiando soffiare ver +soffiandoci soffiare ver +soffiandogli soffiare ver +soffiandola soffiare ver +soffiandolo soffiare ver +soffiandosi soffiare ver +soffiandovi soffiare ver +soffiano soffiare ver +soffiante soffiare ver +soffianti soffiare ver +soffiar soffiare ver +soffiarci soffiare ver +soffiare soffiare ver +soffiargli soffiare ver +soffiarglielo soffiare ver +soffiarle soffiare ver +soffiarmi soffiare ver +soffiarono soffiare ver +soffiarsi soffiare ver +soffiarvi soffiare ver +soffiasse soffiare ver +soffiassero soffiare ver +soffiata soffiata nom +soffiate soffiata nom +soffiati soffiare ver +soffiato soffiare ver +soffiatore soffiatore nom +soffiatori soffiatore nom +soffiatrice soffiatore nom +soffiatrici soffiatore nom +soffiatura soffiatura nom +soffiature soffiatura nom +soffiava soffiare ver +soffiavano soffiare ver +soffice soffice adj +soffici soffice adj +soffierebbe soffiare ver +soffierà soffiare ver +soffietti soffietto nom +soffietto soffietto nom +soffino soffiare ver +soffio soffio nom +soffione soffione nom +soffioni soffione nom +soffitta soffitta nom +soffittata soffittare ver +soffittato soffittare ver +soffittatura soffittatura nom +soffittature soffittatura nom +soffitte soffitta nom +soffitti soffitto nom +soffitto soffitto nom +soffiò soffiare ver +soffoca soffocare ver +soffocamenti soffocamento nom +soffocamento soffocamento nom +soffocando soffocare ver +soffocandola soffocare ver +soffocandole soffocare ver +soffocandoli soffocare ver +soffocandolo soffocare ver +soffocandone soffocare ver +soffocandosi soffocare ver +soffocano soffocare ver +soffocante soffocante adj +soffocanti soffocante adj +soffocarci soffocare ver +soffocare soffocare ver +soffocarla soffocare ver +soffocarli soffocare ver +soffocarlo soffocare ver +soffocarne soffocare ver +soffocarono soffocare ver +soffocarsi soffocare ver +soffocasse soffocare ver +soffocata soffocare ver +soffocate soffocare ver +soffocati soffocare ver +soffocato soffocare ver +soffocava soffocare ver +soffocavano soffocare ver +soffocazione soffocazione nom +soffocherà soffocare ver +soffochi soffocare ver +soffoco soffocare ver +soffocò soffocare ver +soffonde soffondere ver +soffondeva soffondere ver +soffra soffrire ver +soffrano soffrire ver +soffre soffrire ver +soffrendo soffrire ver +soffrendone soffrire ver +soffri soffrire ver +soffriamo soffrire ver +soffrigge soffriggere ver +soffriggendo soffriggere ver +soffriggere soffriggere ver +soffrii soffrire ver +soffrimmo soffrire ver +soffrir soffrire ver +soffrirai soffrire ver +soffriranno soffrire ver +soffrire soffrire ver +soffrirebbe soffrire ver +soffrirebbero soffrire ver +soffrirei soffrire ver +soffriremo soffrire ver +soffrirete soffrire ver +soffrirlo soffrire ver +soffrirne soffrire ver +soffrirono soffrire ver +soffrirà soffrire ver +soffrirò soffrire ver +soffrisse soffrire ver +soffrissero soffriggere ver +soffrissi soffrire ver +soffrite soffrire ver +soffritta soffriggere ver +soffritte soffriggere ver +soffritti soffriggere ver +soffritto soffritto nom +soffriva soffrire ver +soffrivano soffrire ver +soffrivo soffrire ver +soffro soffrire ver +soffrono soffrire ver +soffrì soffrire ver +soffusa soffuso adj +soffuse soffuso adj +soffusi soffuso adj +soffuso soffondere ver +sofisma sofisma nom +sofismi sofisma nom +sofista sofista nom +sofiste sofista nom +sofisti sofista nom +sofistica sofistica|sofistico nom +sofisticare sofisticare ver +sofisticarsi sofisticare ver +sofisticata sofisticato adj +sofisticate sofisticato adj +sofisticati sofisticato adj +sofisticato sofisticato adj +sofisticazione sofisticazione nom +sofisticazioni sofisticazione nom +sofistiche sofistico adj +sofisticheria sofisticheria nom +sofisticherie sofisticheria nom +sofistici sofistico adj +sofistico sofistico adj +soft soft adj +softball softball nom +software software nom +sofà sofà nom +soggetta soggetto adj +soggette soggetto adj +soggetti soggetto nom +soggettista soggettista nom +soggettisti soggettista nom +soggettiva soggettivo adj +soggettivarsi soggettivare ver +soggettivata soggettivare ver +soggettivato soggettivare ver +soggettive soggettivo adj +soggettivi soggettivo adj +soggettivismo soggettivismo nom +soggettivista soggettivista nom +soggettiviste soggettivista nom +soggettivisti soggettivista nom +soggettivistica soggettivistico adj +soggettivistiche soggettivistico adj +soggettivistico soggettivistico adj +soggettività soggettività nom +soggettivo soggettivo adj +soggetto soggetto nom +soggezione soggezione nom +soggezioni soggezione nom +sogghigna sogghignare ver +sogghignando sogghignare ver +sogghignano sogghignare ver +sogghignante sogghignare ver +sogghignanti sogghignare ver +sogghignare sogghignare ver +sogghignava sogghignare ver +sogghigni sogghigno nom +sogghigno sogghigno nom +sogghignò sogghignare ver +soggiaccia soggiacere ver +soggiacciano soggiacere ver +soggiacciono soggiacere ver +soggiace soggiacere ver +soggiacendo soggiacere ver +soggiacente soggiacere ver +soggiacenti soggiacere ver +soggiacere soggiacere ver +soggiacesse soggiacere ver +soggiacessero soggiacere ver +soggiaceva soggiacere ver +soggiacevano soggiacere ver +soggiaciuto soggiacere ver +soggiacque soggiacere ver +soggiacquero soggiacere ver +soggioga soggiogare ver +soggiogai soggiogare ver +soggiogando soggiogare ver +soggiogandola soggiogare ver +soggiogandole soggiogare ver +soggiogandoli soggiogare ver +soggiogandolo soggiogare ver +soggiogandone soggiogare ver +soggiogano soggiogare ver +soggiogante soggiogare ver +soggiogar soggiogare ver +soggiogarci soggiogare ver +soggiogare soggiogare ver +soggiogarla soggiogare ver +soggiogarle soggiogare ver +soggiogarli soggiogare ver +soggiogarlo soggiogare ver +soggiogarono soggiogare ver +soggiogata soggiogare ver +soggiogate soggiogare ver +soggiogatela soggiogare ver +soggiogati soggiogare ver +soggiogato soggiogare ver +soggiogava soggiogare ver +soggiogavano soggiogare ver +soggiogò soggiogare ver +soggiorna soggiornare ver +soggiornando soggiornare ver +soggiornandovi soggiornare ver +soggiornano soggiornare ver +soggiornante soggiornare ver +soggiornanti soggiornare ver +soggiornarci soggiornare ver +soggiornare soggiornare ver +soggiornarono soggiornare ver +soggiornarvi soggiornare ver +soggiornasse soggiornare ver +soggiornato soggiornare ver +soggiornava soggiornare ver +soggiornavano soggiornare ver +soggiorneranno soggiornare ver +soggiornerà soggiornare ver +soggiorni soggiorno nom +soggiornino soggiornare ver +soggiorno soggiorno nom +soggiornò soggiornare ver +soggiunge soggiungere ver +soggiungendo soggiungere ver +soggiungere soggiungere ver +soggiungeva soggiungere ver +soggiungo soggiungere ver +soggiungono soggiungere ver +soggiunse soggiungere ver +soggiunto soggiungere ver +soggoli soggolo nom +soggolo soggolo nom +sogli soglio nom +soglia soglia nom +sogliamo solere ver +sogliano solere ver +sogliate solere ver +soglie soglia nom +soglio soglio nom +sogliola sogliola nom +sogliole sogliola nom +sogliono solere ver +sogna sognare ver +sognai sognare ver +sognami sognare ver +sognando sognare ver +sognano sognare ver +sognante sognante adj +sognanti sognante adj +sognar sognare ver +sognare sognare ver +sognarla sognare ver +sognarli sognare ver +sognarlo sognare ver +sognarmi sognare ver +sognarono sognare ver +sognarsi sognare ver +sognarti sognare ver +sognasse sognare ver +sognata sognare ver +sognate sognare ver +sognati sognare ver +sognato sognare ver +sognatore sognatore adj +sognatori sognatore adj +sognatrice sognatore adj +sognatrici sognatore adj +sognava sognare ver +sognavamo sognare ver +sognavano sognare ver +sognavate sognare ver +sognavo sognare ver +sognerai sognare ver +sognerebbe sognare ver +sognerebbero sognare ver +sognerei sognare ver +sogneremmo sognare ver +sogneresti sognare ver +sognerà sognare ver +sognerò sognare ver +sogni sogno nom +sogniamo sognare ver +sogniate sognare ver +sognino sognare ver +sogno sogno nom +sognò sognare ver +soia soia nom +soie soia nom +soirée soirée nom +soja soja nom +sol sol nom +sola solo adj +solai solaio nom +solaio solaio nom +solamene solare ver +solamente solamente adv +solanacee solanacee nom +solando solare ver +solane solare ver +solano solare ver +solanti solare ver +solar solare ver +solare solare adj +solari solare adj +solarium solarium nom +solarne solare ver +solata solare ver +solati solatio adj +solatia solatio adj +solatie solatio adj +solatio solatio adj +solato solare ver +solca solcare ver +solcando solcare ver +solcano solcare ver +solcar solcare ver +solcare solcare ver +solcarono solcare ver +solcasse solcare ver +solcata solcare ver +solcate solcare ver +solcati solcare ver +solcato solcare ver +solcatura solcatura nom +solcature solcatura nom +solcava solcare ver +solcavano solcare ver +solcherà solcare ver +solchi solco nom +solco solco nom +solcometri solcometro nom +solcometro solcometro nom +solcò solcare ver +soldataglia soldataglia nom +soldataglie soldataglia nom +soldatesca soldatesco adj +soldatesche soldatesca nom +soldatesco soldatesco adj +soldati soldato nom +soldatini soldatino nom +soldatino soldatino nom +soldato soldato nom +soldi soldo nom +soldo soldo nom +sole solo adj +solecchio solecchio nom +solecismi solecismo nom +solecismo solecismo nom +soleggiata soleggiato adj +soleggiate soleggiato adj +soleggiati soleggiato adj +soleggiato soleggiato adj +solenne solenne adj +solennemente solennemente adv +solenni solenne adj +solennità solennità nom +solennizza solennizzare ver +solennizzano solennizzare ver +solennizzare solennizzare ver +solennizzata solennizzare ver +solennizzate solennizzare ver +solennizzato solennizzare ver +solennizzava solennizzare ver +solenoide solenoide nom +solenoidi solenoide nom +solente solere ver +soler solere ver +solere solere ver +solerte solerte adj +solerti solerte adj +solerzia solerzia nom +solesse solere ver +solesti solere ver +solete solere ver +soletta soletta nom +solette soletta nom +soleva solere ver +solevano solere ver +solevi solere ver +solfa solfa nom +solfara solfara nom +solfare solfara nom +solfatara solfatara nom +solfatare solfatara nom +solfati solfato nom +solfato solfato nom +solfe solfa nom +solfeggi solfeggio nom +solfeggiante solfeggiare ver +solfeggiare solfeggiare ver +solfeggio solfeggio nom +solfi solfo nom +solfidrico solfidrico adj +solfifera solfifero adj +solfiferi solfifero adj +solfifero solfifero adj +solfiti solfito nom +solfito solfito nom +solfo solfo nom +solforante solforare ver +solforata solforare ver +solforate solforato adj +solforati solforato adj +solforato solforato adj +solforica solforico adj +solforiche solforico adj +solforici solforico adj +solforico solforico adj +solforosa solforoso adj +solforose solforoso adj +solforosi solforoso adj +solforoso solforoso adj +solfuri solfuro nom +solfuro solfuro nom +soli sole|solo nom +solida solido adj +solidale solidale adj +solidali solidale adj +solidarietà solidarietà nom +solidaristico solidaristico adj +solidarizza solidarizzare ver +solidarizzando solidarizzare ver +solidarizzano solidarizzare ver +solidarizzare solidarizzare ver +solidarizzarono solidarizzare ver +solidarizzati solidarizzare ver +solidarizzato solidarizzare ver +solidarizzava solidarizzare ver +solidarizzavano solidarizzare ver +solidarizzino solidarizzare ver +solidarizzo solidarizzare ver +solidarizzò solidarizzare ver +solide solido adj +solidi solido adj +solidifica solidificare ver +solidificaci solidificare ver +solidificando solidificare ver +solidificandolo solidificare ver +solidificandosi solidificare ver +solidificano solidificare ver +solidificare solidificare ver +solidificarono solidificare ver +solidificarsi solidificare ver +solidificata solidificare ver +solidificate solidificare ver +solidificati solidificare ver +solidificato solidificare ver +solidificava solidificare ver +solidificazione solidificazione nom +solidificazioni solidificazione nom +solidificherebbe solidificare ver +solidificherà solidificare ver +solidifichi solidificare ver +solidificò solidificare ver +solidità solidità nom +solido solido adj +soliflussione soliflussione nom +soliflusso soliflusso nom +soliloqui soliloquio nom +soliloquio soliloquio nom +soling soling nom +solinga solingo adj +solingo solingo adj +solini solino nom +solino solare ver +solipsismo solipsismo nom +solista solista adj +soliste solista adj +solisti solista adj +solistica solistico adj +solistiche solistico adj +solistici solistico adj +solistico solistico adj +solita solito adj +solitamente solitamente adv_sup +solitari solitario adj +solitaria solitario adj +solitarie solitario adj +solitario solitario adj +solite solito adj_sup +soliti solito adj +solito solito nom_sup +solitudine solitudine nom +solitudini solitudine nom +sollazza sollazzare ver +sollazzando sollazzare ver +sollazzare sollazzare ver +sollazzarsi sollazzare ver +sollazzasse sollazzare ver +sollazzi sollazzo nom +sollazzino sollazzare ver +sollazzo sollazzo nom +solle solere ver +sollecita sollecitare ver +sollecitamente sollecitamente adv +sollecitando sollecitare ver +sollecitandoli sollecitare ver +sollecitandolo sollecitare ver +sollecitandone sollecitare ver +sollecitano sollecitare ver +sollecitante sollecitare ver +sollecitanti sollecitare ver +sollecitare sollecitare ver +sollecitarla sollecitare ver +sollecitarle sollecitare ver +sollecitarli sollecitare ver +sollecitarlo sollecitare ver +sollecitarmi sollecitare ver +sollecitarne sollecitare ver +sollecitarono sollecitare ver +sollecitarsi sollecitare ver +sollecitasse sollecitare ver +sollecitassi sollecitare ver +sollecitata sollecitare ver +sollecitate sollecitare ver +sollecitati sollecitare ver +sollecitato sollecitare ver +sollecitava sollecitare ver +sollecitavano sollecitare ver +sollecitazione sollecitazione nom +sollecitazioni sollecitazione nom +sollecite sollecito adj +solleciterei sollecitare ver +solleciterà sollecitare ver +solleciterò sollecitare ver +solleciti sollecito nom +sollecitiamo sollecitare ver +sollecitino sollecitare ver +sollecito sollecito adj +sollecitudine sollecitudine nom +sollecitudini sollecitudine nom +sollecitò sollecitare ver +solleone solleone nom +solletica solleticare ver +solleticando solleticare ver +solleticandolo solleticare ver +solleticare solleticare ver +solleticarono solleticare ver +solleticata solleticare ver +solleticati solleticare ver +solleticato solleticare ver +solleticava solleticare ver +solletichino solleticare ver +solletico solletico nom +solleticò solleticare ver +solleva sollevare ver +sollevabile sollevabile adj +sollevabili sollevabile adj +sollevai sollevare ver +sollevamenti sollevamento nom +sollevamento sollevamento nom +sollevando sollevare ver +sollevandogli sollevare ver +sollevandola sollevare ver +sollevandole sollevare ver +sollevandoli sollevare ver +sollevandolo sollevare ver +sollevandomi sollevare ver +sollevandone sollevare ver +sollevandosi sollevare ver +sollevano sollevare ver +sollevante sollevare ver +sollevar sollevare ver +sollevarci sollevare ver +sollevare sollevare ver +sollevargli sollevare ver +sollevarla sollevare ver +sollevarle sollevare ver +sollevarli sollevare ver +sollevarlo sollevare ver +sollevarmi sollevare ver +sollevarne sollevare ver +sollevarono sollevare ver +sollevarsi sollevare ver +sollevasse sollevare ver +sollevassero sollevare ver +sollevata sollevare ver +sollevate sollevare ver +sollevatesi sollevare ver +sollevati sollevare ver +sollevato sollevare ver +sollevatore sollevatore nom +sollevatori sollevatore adj +sollevatrice sollevatore adj +sollevava sollevare ver +sollevavano sollevare ver +sollevavo sollevare ver +sollevazione sollevazione nom +sollevazioni sollevazione nom +solleverai sollevare ver +solleveranno sollevare ver +solleverebbe sollevare ver +solleverei sollevare ver +solleveremo sollevare ver +solleverà sollevare ver +solleverò sollevare ver +sollevi sollevare ver +solleviamo sollevare ver +solleviamoci sollevare ver +sollevino sollevare ver +sollevo sollevare ver +sollevò sollevare ver +solli solere ver +sollievi sollievo nom +sollievo sollievo nom +solmisazione solmisazione nom +solo solo adv_sup +solstizi solstizio nom +solstiziale solstiziale adj +solstiziali solstiziale adj +solstizio solstizio nom +soltanto soltanto adv_sup +solubile solubile adj +solubili solubile adj +solubilità solubilità nom +solubilizzati solubilizzare ver +solubilizzato solubilizzare ver +soluta solere ver +solute solere ver +soluti soluto nom +soluto soluto nom +solutore solutore nom +solutori solutore nom +soluzione soluzione nom +soluzioni soluzione nom +solvente solvente nom +solventi solvente nom +solvenza solvenza nom +solvibile solvibile adj +solvibili solvibile adj +solvibilità solvibilità nom +soma soma nom +somala somalo adj +somale somalo adj +somali somalo adj +somalo somalo adj +somara somaro nom +somare somaro adj +somari somaro nom +somaro somaro nom +somatica somatico adj +somatiche somatico adj +somatici somatico adj +somatico somatico adj +somatizza somatizzare ver +somatizzanti somatizzare ver +somatizzare somatizzare ver +somatizzate somatizzare ver +sombrero sombrero nom +some soma nom +someggiata someggiare ver +someggiate someggiare ver +someggiati someggiare ver +someggiato someggiare ver +someggio someggiare ver +somi soma nom +somiere somiere nom +somieri somiere nom +somigli somigliare ver +somiglia somigliare ver +somigliamo somigliare ver +somigliando somigliare ver +somigliano somigliare ver +somigliante somigliante adj +somiglianti somigliante adj +somiglianza somiglianza nom +somiglianze somiglianza nom +somigliare somigliare ver +somigliargli somigliare ver +somigliarle somigliare ver +somigliarsi somigliare ver +somigliarti somigliare ver +somigliasse somigliare ver +somigliassero somigliare ver +somigliate somigliare ver +somigliato somigliare ver +somigliava somigliare ver +somigliavamo somigliare ver +somigliavano somigliare ver +somigliavo somigliare ver +somiglieranno somigliare ver +somiglierebbe somigliare ver +somiglierà somigliare ver +somiglino somigliare ver +somiglio somigliare ver +somigliò somigliare ver +somma somma nom +sommacchi sommacco nom +sommacco sommacco nom +sommali sommare ver +sommando sommare ver +sommandola sommare ver +sommandole sommare ver +sommandoli sommare ver +sommandolo sommare ver +sommandosi sommare ver +sommano sommare ver +sommar sommare ver +sommarci sommare ver +sommare sommare ver +sommari sommario adj +sommaria sommario adj +sommarie sommario adj +sommario sommario adj +sommarla sommare ver +sommarle sommare ver +sommarli sommare ver +sommarlo sommare ver +sommarne sommare ver +sommarono sommare ver +sommarsi sommare ver +sommarti sommare ver +sommasse sommare ver +sommassero sommare ver +sommassimo sommare ver +sommata sommare ver +sommate sommare ver +sommatesi sommare ver +sommati sommare ver +sommato sommare ver +sommava sommare ver +sommavano sommare ver +somme sommo adj +sommeranno sommare ver +sommerebbe sommare ver +sommerebbero sommare ver +sommerga sommergere ver +sommerge sommergere ver +sommergendo sommergere ver +sommergendola sommergere ver +sommergendole sommergere ver +sommergendoli sommergere ver +sommergendolo sommergere ver +sommergendosi sommergere ver +sommergente sommergere ver +sommergeranno sommergere ver +sommergere sommergere ver +sommergerebbe sommergere ver +sommergerla sommergere ver +sommergerli sommergere ver +sommergerlo sommergere ver +sommergersi sommergere ver +sommergerà sommergere ver +sommergeva sommergere ver +sommergevano sommergere ver +sommergibile sommergibile adj +sommergibili sommergibile adj +sommergibilista sommergibilista nom +sommergibilisti sommergibilista nom +sommergili sommergere ver +sommergono sommergere ver +sommersa sommergere ver +sommerse sommerso adj +sommersero sommergere ver +sommersi sommerso adj +sommerso sommergere ver +sommerà sommare ver +sommessa sommesso adj +sommesse sommesso adj +sommessi sommesso adj +sommesso sommesso adj +sommi sommo adj +sommiamo sommare ver +sommier sommier nom +somministra somministrare ver +somministrando somministrare ver +somministrandogli somministrare ver +somministrandola somministrare ver +somministrandole somministrare ver +somministrandolo somministrare ver +somministrandosi somministrare ver +somministrano somministrare ver +somministrante somministrare ver +somministrar somministrare ver +somministrare somministrare ver +somministrargli somministrare ver +somministrarla somministrare ver +somministrarle somministrare ver +somministrarli somministrare ver +somministrarlo somministrare ver +somministrarne somministrare ver +somministrarono somministrare ver +somministrarsi somministrare ver +somministrata somministrare ver +somministrate somministrare ver +somministrategli somministrare ver +somministratele somministrare ver +somministrati somministrare ver +somministrato somministrare ver +somministrava somministrare ver +somministravano somministrare ver +somministrazione somministrazione nom +somministrazioni somministrazione nom +somministreranno somministrare ver +somministrerà somministrare ver +somministrerò somministrare ver +somministri somministrare ver +somministrino somministrare ver +somministrò somministrare ver +sommino sommare ver +sommissione sommissione nom +sommissioni sommissione nom +sommità sommità nom +sommo sommo adj +sommossa sommossa nom +sommosse sommossa nom +sommosso sommuovere ver +sommovimenti sommovimento nom +sommovimento sommovimento nom +sommozzatore sommozzatore nom +sommozzatori sommozzatore nom +sommuovere sommuovere ver +sommò sommare ver +son son sw +sona sonare ver +sonagli sonaglio nom +sonagliera sonagliera nom +sonagliere sonagliera nom +sonaglio sonaglio nom +sonai sonare ver +sonale sonare ver +sonali sonare ver +sonando sonare ver +sonano sonare ver +sonante sonante adj +sonanti sonante adj +sonar sonar nom +sonare sonare ver +sonarsi sonare ver +sonata sonare ver +sonate sonata nom +sonati sonato adj +sonato sonare ver +sonatore sonatore nom +sonatori sonatore nom +sonava sonare ver +sonavano sonare ver +sonda sonda nom +sondaggi sondaggio nom +sondaggio sondaggio nom +sondalo sondare ver +sondando sondare ver +sondano sondare ver +sondare sondare ver +sondarlo sondare ver +sondarne sondare ver +sondarono sondare ver +sondata sondare ver +sondate sondare ver +sondati sondare ver +sondato sondare ver +sondava sondare ver +sonde sonda nom +sondi sondare ver +sondino sondare ver +sondo sondare ver +sondò sondare ver +soneria soneria nom +sonetti sonetto nom +sonettisti sonettista nom +sonetto sonetto nom +soni sono nom +sonica sonico adj +soniche sonico adj +sonici sonico adj +sonico sonico adj +sonino sonare ver +sonnacchiosa sonnacchioso adj +sonnacchiosi sonnacchioso adj +sonnacchioso sonnacchioso adj +sonnambula sonnambulo nom +sonnambule sonnambulo adj +sonnambuli sonnambulo nom +sonnambulismo sonnambulismo nom +sonnambulo sonnambulo adj +sonnecchia sonnecchiare ver +sonnecchiando sonnecchiare ver +sonnecchiano sonnecchiare ver +sonnecchiante sonnecchiare ver +sonnecchianti sonnecchiare ver +sonnecchiare sonnecchiare ver +sonnecchiato sonnecchiare ver +sonnecchiava sonnecchiare ver +sonnellini sonnellino nom +sonnellino sonnellino nom +sonni sonno nom +sonnifera sonnifero adj +sonnifere sonnifero adj +sonniferi sonnifero nom +sonnifero sonnifero nom +sonno sonno nom +sonnolenta sonnolento adj +sonnolenti sonnolento adj +sonnolento sonnolento adj +sonnolenza sonnolenza nom +sono essere|sonare ver_sup +sonora sonoro adj +sonore sonoro adj +sonori sonoro adj +sonorità sonorità nom +sonorizza sonorizzare ver +sonorizzando sonorizzare ver +sonorizzandosi sonorizzare ver +sonorizzano sonorizzare ver +sonorizzare sonorizzare ver +sonorizzata sonorizzare ver +sonorizzate sonorizzare ver +sonorizzati sonorizzare ver +sonorizzato sonorizzare ver +sonorizzazione sonorizzazione nom +sonorizzazioni sonorizzazione nom +sonoro sonoro adj +sontuosa sontuoso adj +sontuose sontuoso adj +sontuosi sontuoso adj +sontuosità sontuosità nom +sontuoso sontuoso adj +sonò sonare ver +soperchieria soperchieria nom +soperchierie soperchieria nom +sopire sopire ver +sopirle sopire ver +sopirli sopire ver +sopirono sopire ver +sopirsi sopire ver +sopisce sopire ver +sopiste sopire ver +sopita sopire ver +sopite sopire ver +sopiti sopire ver +sopito sopire ver +sopore sopore nom +sopori sopore nom +soporifera soporifero adj +soporifere soporifero adj +soporiferi soporifero adj +soporifero soporifero adj +soppalchi soppalco nom +soppalco soppalco nom +sopperendo sopperire ver +sopperire sopperire ver +sopperirono sopperire ver +sopperirvi sopperire ver +sopperiscano sopperire ver +sopperisce sopperire ver +sopperisco sopperire ver +sopperiscono sopperire ver +sopperisse sopperire ver +sopperita sopperire ver +sopperite sopperire ver +sopperiti sopperire ver +sopperito sopperire ver +sopperiva sopperire ver +sopperivano sopperire ver +sopperì sopperire ver +soppesa soppesare ver +soppesando soppesare ver +soppesandone soppesare ver +soppesano soppesare ver +soppesare soppesare ver +soppesata soppesare ver +soppesate soppesare ver +soppesati soppesare ver +soppesato soppesare ver +soppianta soppiantare ver +soppiantando soppiantare ver +soppiantandolo soppiantare ver +soppiantano soppiantare ver +soppiantare soppiantare ver +soppiantarla soppiantare ver +soppiantarli soppiantare ver +soppiantarlo soppiantare ver +soppiantarne soppiantare ver +soppiantarono soppiantare ver +soppiantasse soppiantare ver +soppiantata soppiantare ver +soppiantate soppiantare ver +soppiantati soppiantare ver +soppiantato soppiantare ver +soppiantava soppiantare ver +soppianteranno soppiantare ver +soppianterebbe soppiantare ver +soppianterà soppiantare ver +soppianto soppianto adj +soppiantò soppiantare ver +sopporta sopportare ver +sopportabile sopportabile adj +sopportabili sopportabile adj +sopportabilità sopportabilità nom +sopportai sopportare ver +sopportalo sopportare ver +sopportando sopportare ver +sopportandola sopportare ver +sopportandone sopportare ver +sopportano sopportare ver +sopportante sopportare ver +sopportar sopportare ver +sopportarci sopportare ver +sopportare sopportare ver +sopportarla sopportare ver +sopportarle sopportare ver +sopportarli sopportare ver +sopportarlo sopportare ver +sopportarmi sopportare ver +sopportarne sopportare ver +sopportarono sopportare ver +sopportarsi sopportare ver +sopportasse sopportare ver +sopportassero sopportare ver +sopportata sopportare ver +sopportate sopportare ver +sopportatemi sopportare ver +sopportatevi sopportare ver +sopportati sopportare ver +sopportato sopportare ver +sopportava sopportare ver +sopportavano sopportare ver +sopportavo sopportare ver +sopportazione sopportazione nom +sopportazioni sopportazione nom +sopporterai sopportare ver +sopporteranno sopportare ver +sopporterebbe sopportare ver +sopporterebbero sopportare ver +sopporterei sopportare ver +sopporteremo sopportare ver +sopporterete sopportare ver +sopporterà sopportare ver +sopporterò sopportare ver +sopporti sopportare ver +sopportiamo sopportare ver +sopportino sopportare ver +sopporto sopportare ver +sopportò sopportare ver +soppressa sopprimere ver +soppressata soppressata nom +soppressate soppressata nom +soppresse soppresso adj +soppressero sopprimere ver +soppressi soppresso adj +soppressione soppressione nom +soppressioni soppressione nom +soppresso sopprimere ver +sopprima sopprimere ver +sopprime sopprimere ver +sopprimendo sopprimere ver +sopprimendola sopprimere ver +sopprimendolo sopprimere ver +sopprimendone sopprimere ver +sopprimeranno sopprimere ver +sopprimere sopprimere ver +sopprimerla sopprimere ver +sopprimerle sopprimere ver +sopprimerli sopprimere ver +sopprimerlo sopprimere ver +sopprimerne sopprimere ver +sopprimerà sopprimere ver +sopprimessero sopprimere ver +sopprimeva sopprimere ver +sopprimevano sopprimere ver +sopprimiamo sopprimere ver +sopprimo sopprimere ver +sopprimono sopprimere ver +sopra sopra adv_sup +soprabiti soprabito nom +soprabito soprabito nom +sopraccennata sopraccennato adj +sopraccennati sopraccennato adj +sopraccigli sopracciglio nom +sopracciglia sopracciglia nom +sopraccigliare sopraccigliare ver +sopracciglio sopracciglio nom +sopracciliare sopracciliare ver +sopraccitata sopraccitato adj +sopraccitate sopraccitato adj +sopraccitati sopraccitato adj +sopraccitato sopraccitato adj +sopracciò sopracciò nom +sopraccoda sopraccoda nom +sopraccoperta sopraccoperta adj +sopracitata sopracitare ver +sopracitate sopracitare ver +sopracitati sopracitare ver +sopracitato sopracitare ver +sopraddetta sopraddetto adj +sopraddette sopraddetto adj +sopraddetti sopraddetto adj +sopraddetto sopraddetto adj +sopradescritta sopradescrivere ver +sopradescritto sopradescrivere ver +sopradominante sopradominante nom +sopraelencate sopraelencare ver +sopraelencati sopraelencare ver +sopraeleva sopraelevare ver +sopraelevando sopraelevare ver +sopraelevandola sopraelevare ver +sopraelevano sopraelevare ver +sopraelevare sopraelevare ver +sopraelevarla sopraelevare ver +sopraelevarono sopraelevare ver +sopraelevata sopraelevare ver +sopraelevate sopraelevare ver +sopraelevati sopraelevare ver +sopraelevato sopraelevare ver +sopraelevavano sopraelevare ver +sopraelevò sopraelevare ver +sopraffa sopraffare ver +sopraffacendo sopraffare ver +sopraffacendolo sopraffare ver +sopraffacesse sopraffare ver +sopraffacessero sopraffare ver +sopraffaceva sopraffare ver +sopraffacevano sopraffare ver +sopraffanno sopraffare ver +sopraffare sopraffare ver +sopraffarla sopraffare ver +sopraffarle sopraffare ver +sopraffarli sopraffare ver +sopraffarlo sopraffare ver +sopraffarsi sopraffare ver +sopraffarà sopraffare ver +sopraffatta sopraffare ver +sopraffatte sopraffare ver +sopraffatti sopraffare ver +sopraffatto sopraffare ver +sopraffattori sopraffattore adj +sopraffazione sopraffazione nom +sopraffazioni sopraffazione nom +sopraffece sopraffare ver +sopraffecero sopraffare ver +sopraffina sopraffino adj +sopraffine sopraffino adj +sopraffini sopraffino adj +sopraffino sopraffino adj +sopraffusione sopraffusione nom +sopraggitto sopraggitto nom +sopraggiunga sopraggiungere ver +sopraggiungano sopraggiungere ver +sopraggiunge sopraggiungere ver +sopraggiungendo sopraggiungere ver +sopraggiungente sopraggiungere ver +sopraggiungenti sopraggiungere ver +sopraggiungeranno sopraggiungere ver +sopraggiungere sopraggiungere ver +sopraggiungerà sopraggiungere ver +sopraggiungesse sopraggiungere ver +sopraggiungessero sopraggiungere ver +sopraggiungeva sopraggiungere ver +sopraggiungevano sopraggiungere ver +sopraggiungo sopraggiungere ver +sopraggiungono sopraggiungere ver +sopraggiunse sopraggiungere ver +sopraggiunsero sopraggiungere ver +sopraggiunta sopraggiungere ver +sopraggiunte sopraggiungere ver +sopraggiunti sopraggiungere ver +sopraggiunto sopraggiungere ver +sopraindicata sopraindicato adj +sopraindicate sopraindicato adj +sopraindicati sopraindicato adj +sopraindicato sopraindicato adj +sopralluoghi sopralluogo nom +sopralluogo sopralluogo nom +sopralzi sopralzo nom +sopralzo sopralzo nom +sopramenzionata sopramenzionare ver +sopramenzionate sopramenzionare ver +sopramenzionati sopramenzionare ver +sopramenzionato sopramenzionare ver +soprammaniche soprammanica nom +soprammercato soprammercato nom +soprammettere soprammettere ver +soprammobile soprammobile nom +soprammobili soprammobile nom +soprana soprano adj +sopranazionale sopranazionale adj +sopranazionali sopranazionale adj +soprane soprano adj +soprani soprano adj +soprannaturale soprannaturale adj +soprannaturali soprannaturale adj +soprannazionale soprannazionale adj +soprannazionali soprannazionale adj +soprannome soprannome nom +soprannomi soprannome nom +soprannomina soprannominare ver +soprannominando soprannominare ver +soprannominandola soprannominare ver +soprannominandoli soprannominare ver +soprannominandolo soprannominare ver +soprannominandosi soprannominare ver +soprannominano soprannominare ver +soprannominare soprannominare ver +soprannominarla soprannominare ver +soprannominarlo soprannominare ver +soprannominarono soprannominare ver +soprannominarsi soprannominare ver +soprannominata soprannominare ver +soprannominate soprannominare ver +soprannominati soprannominare ver +soprannominato soprannominare ver +soprannominava soprannominare ver +soprannominavano soprannominare ver +soprannomineranno soprannominare ver +soprannominerà soprannominare ver +soprannomino soprannominare ver +soprannominò soprannominare ver +soprannumerari soprannumerario adj +soprannumeraria soprannumerario adj +soprannumerarie soprannumerario adj +soprannumerario soprannumerario adj +soprannumero soprannumero adv +soprano soprano nom +soprappensiero soprappensiero adv +soprappiù soprappiù nom +soprapporta soprapporta nom +soprapporte soprapporta nom +soprascarpe soprascarpa nom +soprascritta soprascritta nom +soprascritte soprascritta nom +soprasensibile soprasensibile adj +soprasensibili soprasensibile adj +soprassalti soprassalto nom +soprassalto soprassalto nom +soprassata soprassata nom +soprassedendo soprassedere ver +soprassedere soprassedere ver +soprassederei soprassedere ver +soprassedesse soprassedere ver +soprassedette soprassedere ver +soprassedeva soprassedere ver +soprassediamo soprassedere ver +soprasseduti soprassedere ver +soprasseduto soprassedere ver +soprassegnate soprassegnare ver +soprassiede soprassedere ver +soprassiedo soprassedere ver +soprassiedono soprassedere ver +soprassuoli soprassuolo nom +soprassuolo soprassuolo nom +soprastampa soprastampare ver +soprastampando soprastampare ver +soprastampare soprastampare ver +soprastampata soprastampare ver +soprastampate soprastampare ver +soprastampati soprastampare ver +soprastampato soprastampare ver +soprastante soprastare ver +soprastanti soprastare ver +soprastare soprastare ver +soprastruttura soprastruttura nom +soprastrutture soprastruttura nom +sopratonica sopratonica nom +soprattassa soprattassa nom +soprattutto soprattutto adv_sup +sopratutto sopratutto sw +sopravalutato sopravalutare ver +sopravalutazione sopravalutazione nom +sopravanza sopravanzare ver +sopravanzando sopravanzare ver +sopravanzandoli sopravanzare ver +sopravanzandolo sopravanzare ver +sopravanzano sopravanzare ver +sopravanzante sopravanzare ver +sopravanzare sopravanzare ver +sopravanzarli sopravanzare ver +sopravanzarlo sopravanzare ver +sopravanzarono sopravanzare ver +sopravanzata sopravanzare ver +sopravanzate sopravanzare ver +sopravanzati sopravanzare ver +sopravanzato sopravanzare ver +sopravanzava sopravanzare ver +sopravanzavano sopravanzare ver +sopravanzerebbero sopravanzare ver +sopravanzi sopravanzo nom +sopravanzino sopravanzare ver +sopravanzo sopravanzo nom +sopravanzò sopravanzare ver +sopravvaluta sopravvalutare ver +sopravvalutando sopravvalutare ver +sopravvalutano sopravvalutare ver +sopravvalutare sopravvalutare ver +sopravvalutarlo sopravvalutare ver +sopravvalutarne sopravvalutare ver +sopravvalutarono sopravvalutare ver +sopravvalutarsi sopravvalutare ver +sopravvalutata sopravvalutare ver +sopravvalutate sopravvalutare ver +sopravvalutati sopravvalutare ver +sopravvalutato sopravvalutare ver +sopravvalutava sopravvalutare ver +sopravvalutavano sopravvalutare ver +sopravvalutazione sopravvalutazione nom +sopravvaluti sopravvalutare ver +sopravvalutino sopravvalutare ver +sopravvalutò sopravvalutare ver +sopravvenendo sopravvenire ver +sopravvenga sopravvenire ver +sopravvengano sopravvenire ver +sopravvengono sopravvenire ver +sopravvenienza sopravvenienza nom +sopravvenienze sopravvenienza nom +sopravvenire sopravvenire ver +sopravvenisse sopravvenire ver +sopravveniva sopravvenire ver +sopravvenivano sopravvenire ver +sopravvenne sopravvenire ver +sopravvennero sopravvenire ver +sopravvento sopravvento nom +sopravvenuta sopravvenire ver +sopravvenute sopravvenire ver +sopravvenuti sopravvenire ver +sopravvenuto sopravvenire ver +sopravveste sopravveste nom +sopravvesti sopravveste nom +sopravviene sopravvenire ver +sopravvisse sopravvivere ver +sopravvissero sopravvivere ver +sopravvissuta sopravvivere ver +sopravvissute sopravvivere ver +sopravvissuti sopravvissuto nom +sopravvissuto sopravvivere ver +sopravviva sopravvivere ver +sopravvivano sopravvivere ver +sopravvive sopravvivere ver +sopravvivendo sopravvivere ver +sopravvivendogli sopravvivere ver +sopravvivente sopravvivere ver +sopravviventi sopravvivere ver +sopravvivenza sopravvivenza nom +sopravvivenze sopravvivenza nom +sopravviver sopravvivere ver +sopravviverci sopravvivere ver +sopravvivere sopravvivere ver +sopravvivergli sopravvivere ver +sopravviverne sopravvivere ver +sopravvivervi sopravvivere ver +sopravvivesse sopravvivere ver +sopravvivessero sopravvivere ver +sopravviveva sopravvivere ver +sopravvivevano sopravvivere ver +sopravvivi sopravvivere ver +sopravviviamo sopravvivere ver +sopravvivo sopravvivere ver +sopravvivono sopravvivere ver +sopravvivranno sopravvivere ver +sopravvivrebbe sopravvivere ver +sopravvivrebbero sopravvivere ver +sopravvivrà sopravvivere ver +sopravvivrò sopravvivere ver +soprelevandola soprelevare ver +soprelevare soprelevare ver +soprelevata soprelevato adj +soprelevate soprelevato adj +soprelevati soprelevato adj +soprelevato soprelevare ver +soprelevazione soprelevazione nom +soprelevazioni soprelevazione nom +soprintende soprintendere ver +soprintendendo soprintendere ver +soprintendente soprintendente nom +soprintendenti soprintendente nom +soprintendenza soprintendenza nom +soprintendenze soprintendenza nom +soprintendere soprintendere ver +soprintendeva soprintendere ver +soprintendevano soprintendere ver +soprintendono soprintendere ver +soprintese soprintendere ver +soprusi sopruso nom +sopruso sopruso nom +sopì sopire ver +soqquadro soqquadro nom +sor sor nom +sora sora nom +sorba sorba nom +sorbe sorba nom +sorbendo sorbire ver +sorbetti sorbetto nom +sorbettiere sorbettiera nom +sorbetto sorbetto nom +sorbi sorbo nom +sorbir sorbire ver +sorbirci sorbire ver +sorbire sorbire ver +sorbirmeli sorbire ver +sorbirmi sorbire ver +sorbirsi sorbire ver +sorbirti sorbire ver +sorbisce sorbire ver +sorbita sorbire ver +sorbite sorbire ver +sorbiti sorbire ver +sorbito sorbire ver +sorbo sorbo nom +sorca sorca nom +sorci sorcio nom +sorcio sorcio nom +sorda sordo adj +sorde sordo adj +sordi sordo adj +sordida sordido adj +sordide sordido adj +sordidi sordido adj +sordido sordido adj +sordina sordina nom +sordine sordina nom +sordità sordità nom +sordo sordo adj +sordomuta sordomuto adj +sordomute sordomuto adj +sordomuti sordomuto adj +sordomutismo sordomutismo nom +sordomuto sordomuto adj +sore sora nom +sorella sorella nom +sorellanza sorellanza nom +sorellanze sorellanza nom +sorellastra sorellastra nom +sorellastre sorellastra nom +sorelle sorella nom +sorga sorgere ver +sorgano sorgere ver +sorge sorgere ver +sorgemmo sorgere ver +sorgendo sorgere ver +sorgente sorgente nom +sorgenti sorgente nom +sorger sorgere ver +sorgerai sorgere ver +sorgeranno sorgere ver +sorgere sorgere ver +sorgerebbe sorgere ver +sorgerebbero sorgere ver +sorgerne sorgere ver +sorgervi sorgere ver +sorgerà sorgere ver +sorgesse sorgere ver +sorgessero sorgere ver +sorgesti sorgere ver +sorgete sorgere ver +sorgeva sorgere ver +sorgevano sorgere ver +sorghi sorgo nom +sorgi sorgere ver +sorgiamo sorgere ver +sorgiva sorgivo adj +sorgive sorgivo adj +sorgivi sorgivo adj +sorgivo sorgivo adj +sorgo sorgo nom +sorgono sorgere ver +sori soro nom +soriana soriano adj +soriane soriano adj +soriani soriano adj +soriano soriano adj +sormonta sormontare ver +sormontando sormontare ver +sormontano sormontare ver +sormontante sormontare ver +sormontanti sormontare ver +sormontare sormontare ver +sormontata sormontare ver +sormontate sormontare ver +sormontati sormontare ver +sormontato sormontare ver +sormontava sormontare ver +sormontavano sormontare ver +sormonterà sormontare ver +sormonti sormontare ver +sormonto sormontare ver +sormontò sormontare ver +sornione sornione adj +sornioni sornione adj +soro soro nom +sororale sororale adj +sorosio sorosio nom +sorpassa sorpassare ver +sorpassando sorpassare ver +sorpassandola sorpassare ver +sorpassandoli sorpassare ver +sorpassandolo sorpassare ver +sorpassandosi sorpassare ver +sorpassano sorpassare ver +sorpassante sorpassare ver +sorpassanti sorpassare ver +sorpassare sorpassare ver +sorpassarla sorpassare ver +sorpassarli sorpassare ver +sorpassarlo sorpassare ver +sorpassarono sorpassare ver +sorpassarsi sorpassare ver +sorpassasse sorpassare ver +sorpassata sorpassare ver +sorpassate sorpassare ver +sorpassati sorpassare ver +sorpassato sorpassare ver +sorpassava sorpassare ver +sorpassavano sorpassare ver +sorpasserebbe sorpassare ver +sorpasserà sorpassare ver +sorpassi sorpasso nom +sorpassiamo sorpassare ver +sorpassino sorpassare ver +sorpasso sorpasso nom +sorpassò sorpassare ver +sorprenda sorprendere ver +sorprendano sorprendere ver +sorprende sorprendere ver +sorprendendo sorprendere ver +sorprendendola sorprendere ver +sorprendendole sorprendere ver +sorprendendoli sorprendere ver +sorprendendolo sorprendere ver +sorprendendosi sorprendere ver +sorprendente sorprendente adj +sorprendentemente sorprendentemente adv +sorprendenti sorprendente adj +sorprenderanno sorprendere ver +sorprenderci sorprendere ver +sorprendere sorprendere ver +sorprenderebbe sorprendere ver +sorprenderei sorprendere ver +sorprenderete sorprendere ver +sorprenderla sorprendere ver +sorprenderli sorprendere ver +sorprenderlo sorprendere ver +sorprendermi sorprendere ver +sorprendersi sorprendere ver +sorprenderti sorprendere ver +sorprendervi sorprendere ver +sorprenderà sorprendere ver +sorprenderò sorprendere ver +sorprendesse sorprendere ver +sorprendete sorprendere ver +sorprendetevi sorprendere ver +sorprendeva sorprendere ver +sorprendevano sorprendere ver +sorprendi sorprendere ver +sorprendiamoci sorprendere ver +sorprendimi sorprendere ver +sorprendo sorprendere ver +sorprendono sorprendere ver +sorpresa sorpresa nom +sorprese sorpresa nom +sorpresero sorprendere ver +sorpresi sorprendere ver +sorpresina sorpresina nom +sorpresine sorpresina nom +sorpreso sorprendere ver +sorregga sorreggere ver +sorreggano sorreggere ver +sorregge sorreggere ver +sorreggendo sorreggere ver +sorreggendogli sorreggere ver +sorreggendolo sorreggere ver +sorreggendone sorreggere ver +sorreggendosi sorreggere ver +sorreggente sorreggere ver +sorreggenti sorreggere ver +sorreggere sorreggere ver +sorreggerla sorreggere ver +sorreggerle sorreggere ver +sorreggerlo sorreggere ver +sorreggerne sorreggere ver +sorreggersi sorreggere ver +sorreggerà sorreggere ver +sorreggeva sorreggere ver +sorreggevano sorreggere ver +sorreggi sorreggere ver +sorreggo sorreggere ver +sorreggono sorreggere ver +sorresse sorreggere ver +sorressero sorreggere ver +sorretta sorreggere ver +sorrette sorreggere ver +sorretti sorreggere ver +sorretto sorreggere ver +sorrida sorridere ver +sorride sorridere ver +sorridendo sorridere ver +sorridendogli sorridere ver +sorridendone sorridere ver +sorridendosi sorridere ver +sorridente sorridente adj +sorridenti sorridente adj +sorriderai sorridere ver +sorrideranno sorridere ver +sorriderci sorridere ver +sorridere sorridere ver +sorridergli sorridere ver +sorridermi sorridere ver +sorridersi sorridere ver +sorriderà sorridere ver +sorriderò sorridere ver +sorridesse sorridere ver +sorridesti sorridere ver +sorridete sorridere ver +sorrideva sorridere ver +sorridevano sorridere ver +sorridevo sorridere ver +sorridi sorridere ver +sorridiamo sorridere ver +sorridiamoci sorridere ver +sorridimi sorridere ver +sorrido sorridere ver +sorridono sorridere ver +sorrisa sorridere ver +sorrise sorridere ver +sorrisero sorridere ver +sorrisi sorriso nom +sorriso sorriso nom +sorsata sorsata nom +sorsate sorsata nom +sorse sorgere ver +sorseggia sorseggiare ver +sorseggiando sorseggiare ver +sorseggiano sorseggiare ver +sorseggiare sorseggiare ver +sorseggiato sorseggiare ver +sorseggiava sorseggiare ver +sorseggiavano sorseggiare ver +sorsero sorgere ver +sorsi sorso nom +sorso sorso nom +sorta sorta nom +sorte sorta|sorte nom +sorteggi sorteggio nom +sorteggia sorteggiare ver +sorteggiando sorteggiare ver +sorteggiano sorteggiare ver +sorteggiare sorteggiare ver +sorteggiata sorteggiare ver +sorteggiate sorteggiare ver +sorteggiati sorteggiare ver +sorteggiato sorteggiare ver +sorteggiava sorteggiare ver +sorteggio sorteggio nom +sorteggiò sorteggiare ver +sortendo sortire ver +sorti sorta|sorte nom +sortilegi sortilegio nom +sortilegio sortilegio nom +sortir sortire ver +sortiranno sortire ver +sortire sortire ver +sortirebbe sortire ver +sortirebbero sortire ver +sortiremo sortire ver +sortirne sortire ver +sortirono sortire ver +sortirà sortire ver +sortisca sortire ver +sortiscano sortire ver +sortisce sortire ver +sortiscono sortire ver +sortisse sortire ver +sortissero sortire ver +sortita sortita nom +sortite sortita nom +sortiti sortire ver +sortito sortire ver +sortiva sortire ver +sortivano sortire ver +sortivi sortire ver +sortivo sortire ver +sorto sorgere ver +sortono sortire ver +sortì sortire ver +sorva sorvolo ver +sorvali sorvolo ver +sorvegli sorvegliare ver +sorveglia sorvegliare ver +sorvegliando sorvegliare ver +sorvegliandola sorvegliare ver +sorvegliandolo sorvegliare ver +sorvegliandone sorvegliare ver +sorvegliano sorvegliare ver +sorvegliante sorvegliante nom +sorveglianti sorvegliante nom +sorveglianza sorveglianza nom +sorveglianze sorveglianza nom +sorvegliare sorvegliare ver +sorvegliarla sorvegliare ver +sorvegliarle sorvegliare ver +sorvegliarli sorvegliare ver +sorvegliarlo sorvegliare ver +sorvegliarne sorvegliare ver +sorvegliarono sorvegliare ver +sorvegliarsi sorvegliare ver +sorvegliasse sorvegliare ver +sorvegliassero sorvegliare ver +sorvegliata sorvegliare ver +sorvegliate sorvegliare ver +sorvegliati sorvegliare ver +sorvegliato sorvegliare ver +sorvegliava sorvegliare ver +sorvegliavano sorvegliare ver +sorveglieranno sorvegliare ver +sorveglierà sorvegliare ver +sorveglino sorvegliare ver +sorveglio sorvegliare ver +sorvegliò sorvegliare ver +sorvino sorvolo ver +sorvola sorvolare ver +sorvolando sorvolare ver +sorvolandola sorvolare ver +sorvolano sorvolare ver +sorvolante sorvolare ver +sorvolare sorvolare ver +sorvolarle sorvolare ver +sorvolarlo sorvolare ver +sorvolarono sorvolare ver +sorvolasse sorvolare ver +sorvolata sorvolare ver +sorvolate sorvolare ver +sorvolati sorvolare ver +sorvolato sorvolare ver +sorvolava sorvolare ver +sorvolavano sorvolare ver +sorvolerei sorvolare ver +sorvolerà sorvolare ver +sorvoli sorvolare ver +sorvoliamo sorvolare ver +sorvolino sorvolare ver +sorvolo sorvolare ver +sorvolò sorvolare ver +sosia sosia nom +sospenda sospendere ver +sospendano sospendere ver +sospende sospendere ver +sospendendo sospendere ver +sospendendola sospendere ver +sospendendolo sospendere ver +sospendendone sospendere ver +sospendendosi sospendere ver +sospendente sospendere ver +sospendenti sospendere ver +sospender sospendere ver +sospenderanno sospendere ver +sospendere sospendere ver +sospenderebbero sospendere ver +sospenderei sospendere ver +sospendergli sospendere ver +sospenderla sospendere ver +sospenderle sospendere ver +sospenderli sospendere ver +sospenderlo sospendere ver +sospendermi sospendere ver +sospenderne sospendere ver +sospendersi sospendere ver +sospenderà sospendere ver +sospenderò sospendere ver +sospendesse sospendere ver +sospendessero sospendere ver +sospendete sospendere ver +sospendeva sospendere ver +sospendevano sospendere ver +sospendi sospendere ver +sospendiamo sospendere ver +sospendo sospendere ver +sospendono sospendere ver +sospensione sospensione nom +sospensioni sospensione nom +sospensiva sospensivo adj +sospensive sospensivo adj +sospensivi sospensivo adj +sospensivo sospensivo adj +sospensore sospensore nom +sospensori sospensore|sospensorio nom +sospensorio sospensorio adj +sospesa sospendere ver +sospese sospendere ver +sospesero sospendere ver +sospesi sospeso adj +sospeso sospendere ver +sospetta sospetto adj +sospettabile sospettabile adj +sospettabili sospettabile adj +sospettai sospettare ver +sospettando sospettare ver +sospettandola sospettare ver +sospettandoli sospettare ver +sospettandolo sospettare ver +sospettano sospettare ver +sospettare sospettare ver +sospettarla sospettare ver +sospettarli sospettare ver +sospettarlo sospettare ver +sospettarmi sospettare ver +sospettarne sospettare ver +sospettarono sospettare ver +sospettarsi sospettare ver +sospettasse sospettare ver +sospettassero sospettare ver +sospettassi sospettare ver +sospettata sospettare ver +sospettate sospettare ver +sospettati sospettare ver +sospettato sospettare ver +sospettava sospettare ver +sospettavamo sospettare ver +sospettavano sospettare ver +sospettavi sospettare ver +sospettavo sospettare ver +sospette sospetto adj +sospetteranno sospettare ver +sospetterebbe sospettare ver +sospetterei sospettare ver +sospetterà sospettare ver +sospetti sospetto nom +sospettiamo sospettare ver +sospettino sospettare ver +sospetto sospetto nom +sospettosa sospettoso adj +sospettose sospettoso adj +sospettosi sospettoso adj +sospettoso sospettoso adj +sospettò sospettare ver +sospinge sospingere ver +sospingendo sospingere ver +sospingendola sospingere ver +sospingendoli sospingere ver +sospingendosi sospingere ver +sospingere sospingere ver +sospingerla sospingere ver +sospingerlo sospingere ver +sospingeva sospingere ver +sospingevano sospingere ver +sospingono sospingere ver +sospinse sospingere ver +sospinsero sospingere ver +sospinta sospingere ver +sospinte sospingere ver +sospinti sospingere ver +sospinto sospingere ver +sospira sospirare ver +sospirando sospirare ver +sospirano sospirare ver +sospirante sospirare ver +sospirar sospirare ver +sospirare sospirare ver +sospirata sospirare ver +sospirate sospirare ver +sospirati sospirare ver +sospirato sospirare ver +sospirava sospirare ver +sospiravano sospirare ver +sospiri sospiro nom +sospiro sospiro nom +sospirosa sospiroso adj +sospiroso sospiroso adj +sospirò sospirare ver +sossopra sossopra adv +sosta sosta nom +sostando sostare ver +sostandovi sostare ver +sostano sostare ver +sostante sostare ver +sostantiva sostantivo adj +sostantivale sostantivare ver +sostantivali sostantivare ver +sostantivante sostantivare ver +sostantivare sostantivare ver +sostantivarsi sostantivare ver +sostantivata sostantivare ver +sostantivate sostantivare ver +sostantivati sostantivare ver +sostantivato sostantivare ver +sostantive sostantivo adj +sostantivi sostantivo nom +sostantivo sostantivo nom +sostanza sostanza nom +sostanze sostanza nom +sostanzi sostanziare ver +sostanzia sostanziare ver +sostanziale sostanziale adj +sostanziali sostanziale adj +sostanzialità sostanzialità nom +sostanzialmente sostanzialmente adv_sup +sostanziando sostanziare ver +sostanziano sostanziare ver +sostanziare sostanziare ver +sostanziarono sostanziare ver +sostanziarsi sostanziare ver +sostanziata sostanziare ver +sostanziate sostanziare ver +sostanziati sostanziare ver +sostanziato sostanziare ver +sostanziava sostanziare ver +sostanziavano sostanziare ver +sostanzierebbe sostanziare ver +sostanzino sostanziare ver +sostanziosa sostanzioso adj +sostanziose sostanzioso adj +sostanziosi sostanzioso adj +sostanzioso sostanzioso adj +sostanziò sostanziare ver +sostar sostare ver +sostare sostare ver +sostarono sostare ver +sostarvi sostare ver +sostasse sostare ver +sostata sostare ver +sostato sostare ver +sostava sostare ver +sostavano sostare ver +soste sosta nom +sostegni sostegno nom +sostegno sostegno nom +sostenemmo sostenere ver +sostenendo sostenere ver +sostenendola sostenere ver +sostenendole sostenere ver +sostenendoli sostenere ver +sostenendolo sostenere ver +sostenendone sostenere ver +sostenendosi sostenere ver +sostenendovi sostenere ver +sostenente sostenere ver +sostenenti sostenere ver +sostener sostenere ver +sostenerci sostenere ver +sostenere sostenere ver +sostenerla sostenere ver +sostenerle sostenere ver +sostenerli sostenere ver +sostenerlo sostenere ver +sostenermi sostenere ver +sostenerne sostenere ver +sostenersi sostenere ver +sostenerti sostenere ver +sostenervi sostenere ver +sostenesse sostenere ver +sostenessero sostenere ver +sostenessi sostenere ver +sostenete sostenere ver +sosteneva sostenere ver +sostenevamo sostenere ver +sostenevano sostenere ver +sostenevi sostenere ver +sostenevo sostenere ver +sostenga sostenere ver +sostengano sostenere ver +sostengo sostenere ver +sostengono sostenere ver +sosteniamo sostenere ver +sostenibile sostenibile adj +sostenibili sostenibile adj +sostenibilità sostenibilità nom +sostenimenti sostenimento nom +sostenimento sostenimento nom +sostenitore sostenitore nom +sostenitori sostenitore nom +sostenitrice sostenitore nom +sostenitrici sostenitore nom +sostenne sostenere ver +sostennero sostenere ver +sostenni sostenere ver +sostenta sostentare ver +sostentamenti sostentamento nom +sostentamento sostentamento nom +sostentando sostentare ver +sostentandosi sostentare ver +sostentano sostentare ver +sostentante sostentare ver +sostentare sostentare ver +sostentarla sostentare ver +sostentarlo sostentare ver +sostentarsi sostentare ver +sostentasse sostentare ver +sostentata sostentare ver +sostentate sostentare ver +sostentati sostentare ver +sostentato sostentare ver +sostentava sostentare ver +sostentavano sostentare ver +sostentazione sostentazione nom +sostenti sostentare ver +sostentò sostentare ver +sostenuta sostenere ver +sostenute sostenere ver +sostenutezza sostenutezza nom +sostenuti sostenere ver +sostenuto sostenere ver +sosteranno sostare ver +sosterebbe sostare ver +sosterebbero sostare ver +sosterrai sostenere ver +sosterranno sostenere ver +sosterrebbe sostenere ver +sosterrebbero sostenere ver +sosterrei sostenere ver +sosterremo sostenere ver +sosterrà sostenere ver +sosterrò sostenere ver +sosterà sostare ver +sosti sostare ver +sostiene sostenere ver +sostieni sostenere ver +sostienici sostenere ver +sostino sostare ver +sostituendo sostituire ver +sostituendoci sostituire ver +sostituendogli sostituire ver +sostituendola sostituire ver +sostituendole sostituire ver +sostituendoli sostituire ver +sostituendolo sostituire ver +sostituendone sostituire ver +sostituendosi sostituire ver +sostituendovi sostituire ver +sostituente sostituire ver +sostituenti sostituire ver +sostituiamo sostituire ver +sostituiamola sostituire ver +sostituiamolo sostituire ver +sostituibile sostituibile adj +sostituibili sostituibile adj +sostituibilità sostituibilità nom +sostituiranno sostituire ver +sostituirci sostituire ver +sostituire sostituire ver +sostituirebbe sostituire ver +sostituirebbero sostituire ver +sostituirei sostituire ver +sostituiremo sostituire ver +sostituirla sostituire ver +sostituirle sostituire ver +sostituirli sostituire ver +sostituirlo sostituire ver +sostituirmi sostituire ver +sostituirne sostituire ver +sostituirono sostituire ver +sostituirsi sostituire ver +sostituirvi sostituire ver +sostituirà sostituire ver +sostituirò sostituire ver +sostituisca sostituire ver +sostituiscano sostituire ver +sostituisce sostituire ver +sostituisci sostituire ver +sostituiscila sostituire ver +sostituiscile sostituire ver +sostituiscilo sostituire ver +sostituisco sostituire ver +sostituiscono sostituire ver +sostituisse sostituire ver +sostituissero sostituire ver +sostituissi sostituire ver +sostituissimo sostituire ver +sostituita sostituire ver +sostituite sostituire ver +sostituitela sostituire ver +sostituitesi sostituire ver +sostituiti sostituire ver +sostituito sostituire ver +sostituiva sostituire ver +sostituivano sostituire ver +sostituivi sostituire ver +sostituivo sostituire ver +sostituta sostituto nom +sostitute sostituto nom +sostituti sostituto nom +sostitutiva sostitutivo adj +sostitutive sostitutivo adj +sostitutivi sostitutivo adj +sostitutivo sostitutivo adj +sostituto sostituto nom +sostituzione sostituzione nom +sostituzioni sostituzione nom +sostituì sostituire ver +sosto sostare ver +sostrati sostrato nom +sostrato sostrato nom +sostò sostare ver +soteriologia soteriologia nom +soteriologie soteriologia nom +sottace sottacere ver +sottacere sottacere ver +sottacersi sottacere ver +sottaceto sottaceto adj +sottaciuta sottacere ver +sottaciute sottacere ver +sottaciuti sottacere ver +sottaciuto sottacere ver +sottana sottano adj +sottane sottano adj +sottani sottano adj +sottano sottano adj +sottarchi sottarco nom +sottarco sottarco nom +sottecchi sottecchi adv +sottenda sottendere ver +sottende sottendere ver +sottendere sottendere ver +sottenderebbe sottendere ver +sottendesse sottendere ver +sottendeva sottendere ver +sottendevano sottendere ver +sottendono sottendere ver +sotterfugi sotterfugio nom +sotterfugio sotterfugio nom +sotterra sotterrare ver +sotterramento sotterramento nom +sotterrando sotterrare ver +sotterrandola sotterrare ver +sotterrandole sotterrare ver +sotterrandolo sotterrare ver +sotterrane sotterrare ver +sotterranea sotterraneo adj +sotterranee sotterraneo adj +sotterranei sotterraneo adj +sotterraneo sotterraneo adj +sotterrano sotterrare ver +sotterrare sotterrare ver +sotterrarla sotterrare ver +sotterrarle sotterrare ver +sotterrarli sotterrare ver +sotterrarlo sotterrare ver +sotterrarmi sotterrare ver +sotterrarne sotterrare ver +sotterrarono sotterrare ver +sotterrarsi sotterrare ver +sotterrata sotterrare ver +sotterrate sotterrare ver +sotterrati sotterrare ver +sotterrato sotterrare ver +sotterrava sotterrare ver +sotterravano sotterrare ver +sotterriamo sotterrare ver +sotterrò sotterrare ver +sottesa sottendere ver +sottese sotteso adj +sottesi sotteso adj +sotteso sottendere ver +sottigliezza sottigliezza nom +sottigliezze sottigliezza nom +sottile sottile adj +sottili sottile adj +sottilizzare sottilizzare ver +sottilizziamo sottilizzare ver +sottilmente sottilmente adv +sottintenda sottintendere ver +sottintendano sottintendere ver +sottintende sottintendere ver +sottintendendo sottintendere ver +sottintendendone sottintendere ver +sottintendente sottintendere ver +sottintendenti sottintendere ver +sottintendere sottintendere ver +sottintenderebbe sottintendere ver +sottintenderne sottintendere ver +sottintendersi sottintendere ver +sottintendesse sottintendere ver +sottintendeva sottintendere ver +sottintendevano sottintendere ver +sottintendevo sottintendere ver +sottintendi sottintendere ver +sottintendiamo sottintendere ver +sottintendo sottintendere ver +sottintendono sottintendere ver +sottintesa sottintendere ver +sottintese sottintendere ver +sottintesi sottinteso nom +sottinteso sottintendere ver +sotto sotto adv_sup +sottoalimentazione sottoalimentazione nom +sottobanco sottobanco adv +sottobicchiere sottobicchiere nom +sottobicchieri sottobicchiere nom +sottoboschi sottobosco nom +sottobosco sottobosco nom +sottobraccio sottobraccio adv +sottocapitoli sottocapitolo nom +sottocategorie sottocategoria nom +sottocchio sottocchio adv +sottoccupati sottoccupato adj +sottoccupato sottoccupato adj +sottoccupazione sottoccupazione nom +sottochiave sottochiave adv +sottoclasse sottoclasse nom +sottoclassi sottoclasse nom +sottocoda sottocoda nom +sottocodici sottocodice nom +sottocomitati sottocomitato nom +sottocomitato sottocomitato nom +sottocommissione sottocommissione nom +sottocommissioni sottocommissione nom +sottoconsumo sottoconsumo nom +sottocoperta sottocoperta adv +sottocoppa sottocoppa nom +sottocosta sottocosta nom +sottocosto sottocosto adj +sottocultura sottocultura nom +sottoculture sottocultura nom +sottocutanea sottocutaneo adj +sottocutanee sottocutaneo adj +sottocutanei sottocutaneo adj +sottocutaneo sottocutaneo adj +sottocute sottocute adv +sottodivisioni sottodivisione nom +sottodominante sottodominante nom +sottodominanti sottodominante nom +sottoesponendo sottoesporre ver +sottoesporre sottoesporre ver +sottoesposizione sottoesposizione nom +sottoesposizioni sottoesposizione nom +sottoesposta sottoesporre ver +sottoesposte sottoesporre ver +sottoesposto sottoesporre ver +sottofamiglia sottofamiglia nom +sottofamiglie sottofamiglia nom +sottofondazione sottofondazione nom +sottofondazioni sottofondazione nom +sottofondi sottofondo nom +sottofondo sottofondo nom +sottogamba sottogamba adv +sottogola sottogola nom +sottogonna sottogonna nom +sottogonne sottogonna nom +sottogoverno sottogoverno nom +sottogruppi sottogruppo nom +sottogruppo sottogruppo nom +sottoinsieme sottoinsieme nom +sottolinea sottolineare ver +sottolineando sottolineare ver +sottolineandole sottolineare ver +sottolineandolo sottolineare ver +sottolineandone sottolineare ver +sottolineano sottolineare ver +sottolineante sottolineare ver +sottolineare sottolineare ver +sottolineargli sottolineare ver +sottolinearla sottolineare ver +sottolinearle sottolineare ver +sottolinearli sottolineare ver +sottolinearlo sottolineare ver +sottolinearne sottolineare ver +sottolinearono sottolineare ver +sottolinearsi sottolineare ver +sottolinearti sottolineare ver +sottolineasse sottolineare ver +sottolineassero sottolineare ver +sottolineassi sottolineare ver +sottolineata sottolineare ver +sottolineate sottolineare ver +sottolineati sottolineare ver +sottolineato sottolineare ver +sottolineatura sottolineatura nom +sottolineature sottolineatura nom +sottolineava sottolineare ver +sottolineavano sottolineare ver +sottolineavi sottolineare ver +sottolineavo sottolineare ver +sottolineeranno sottolineare ver +sottolineerebbe sottolineare ver +sottolineerebbero sottolineare ver +sottolineerei sottolineare ver +sottolineerà sottolineare ver +sottolinei sottolineare ver +sottolineiamo sottolineare ver +sottolineiamolo sottolineare ver +sottolineino sottolineare ver +sottolineo sottolineare ver +sottolineò sottolineare ver +sottolio sottolio adj +sottomano sottomano adv +sottomarina sottomarino adj +sottomarine sottomarino adj +sottomarini sottomarino adj +sottomarino sottomarino adj +sottomessa sottomettere ver +sottomesse sottomettere ver +sottomessi sottomettere ver +sottomesso sottomettere ver +sottometta sottomettere ver +sottomettano sottomettere ver +sottomette sottomettere ver +sottomettendo sottomettere ver +sottomettendogli sottomettere ver +sottomettendola sottomettere ver +sottomettendole sottomettere ver +sottomettendoli sottomettere ver +sottomettendolo sottomettere ver +sottomettendosi sottomettere ver +sottometteranno sottomettere ver +sottometterci sottomettere ver +sottomettere sottomettere ver +sottometteremo sottomettere ver +sottometterla sottomettere ver +sottometterle sottomettere ver +sottometterli sottomettere ver +sottometterlo sottomettere ver +sottomettermi sottomettere ver +sottometterne sottomettere ver +sottomettersi sottomettere ver +sottometterti sottomettere ver +sottometterà sottomettere ver +sottometterò sottomettere ver +sottomettesse sottomettere ver +sottomettessero sottomettere ver +sottomettetela sottomettere ver +sottometteva sottomettere ver +sottomettevano sottomettere ver +sottomettiamo sottomettere ver +sottometto sottomettere ver +sottomettono sottomettere ver +sottomise sottomettere ver +sottomisero sottomettere ver +sottomisi sottomettere ver +sottomissione sottomissione nom +sottomissioni sottomissione nom +sottomultipla sottomultiplo adj +sottomultiple sottomultiplo adj +sottomultipli sottomultiplo adj +sottomultiplo sottomultiplo nom +sottooccupazione sottooccupazione nom +sottopagato sottopagare ver +sottopalco sottopalco nom +sottopancia sottopancia nom +sottoparagrafo sottoparagrafo nom +sottopassaggi sottopassaggio nom +sottopassaggio sottopassaggio nom +sottopiatti sottopiatto nom +sottopiatto sottopiatto nom +sottopiede sottopiede nom +sottopiedi sottopiede nom +sottopone sottoporre ver +sottoponendo sottoporre ver +sottoponendogli sottoporre ver +sottoponendola sottoporre ver +sottoponendole sottoporre ver +sottoponendoli sottoporre ver +sottoponendolo sottoporre ver +sottoponendone sottoporre ver +sottoponendosi sottoporre ver +sottoponesse sottoporre ver +sottoponessero sottoporre ver +sottoponeva sottoporre ver +sottoponevano sottoporre ver +sottoponga sottoporre ver +sottopongano sottoporre ver +sottopongo sottoporre ver +sottopongono sottoporre ver +sottoponiamo sottoporre ver +sottoponiamola sottoporre ver +sottoporci sottoporre ver +sottoporgli sottoporre ver +sottoporglielo sottoporre ver +sottoporla sottoporre ver +sottoporle sottoporre ver +sottoporli sottoporre ver +sottoporlo sottoporre ver +sottopormi sottoporre ver +sottoporne sottoporre ver +sottoporranno sottoporre ver +sottoporre sottoporre ver +sottoporrebbe sottoporre ver +sottoporrebbero sottoporre ver +sottoporrei sottoporre ver +sottoporrà sottoporre ver +sottoporrò sottoporre ver +sottoporsi sottoporre ver +sottoporti sottoporre ver +sottoporvi sottoporre ver +sottopose sottoporre ver +sottoposero sottoporre ver +sottoposi sottoporre ver +sottoposta sottoporre ver +sottopostagli sottoporre ver +sottoposte sottoporre ver +sottoposti sottoporre ver +sottoposto sottoporre ver +sottoprodotti sottoprodotto nom +sottoprodotto sottoprodotto nom +sottoproduzione sottoproduzione nom +sottoprogetti sottoprogetto nom +sottoprogetto sottoprogetto nom +sottoprogramma sottoprogramma nom +sottoprogrammi sottoprogramma nom +sottoproletari sottoproletario nom +sottoproletaria sottoproletario nom +sottoproletariato sottoproletariato nom +sottoproletarie sottoproletario nom +sottoproletario sottoproletario nom +sottorappresentanza sottorappresentanza nom +sottorappresentata sottorappresentare ver +sottorappresentate sottorappresentare ver +sottorappresentati sottorappresentare ver +sottorappresentato sottorappresentare ver +sottorappresentazione sottorappresentazione nom +sottordine sottordine adv +sottordini sottordine nom +sottoregioni sottoregione nom +sottoscala sottoscala nom +sottoscrisse sottoscrivere ver +sottoscrissero sottoscrivere ver +sottoscritta sottoscrivere ver +sottoscritte sottoscrivere ver +sottoscritti sottoscrivere ver +sottoscritto sottoscrivere ver +sottoscrittore sottoscrittore nom +sottoscrittori sottoscrittore nom +sottoscrittrici sottoscrittore nom +sottoscriva sottoscrivere ver +sottoscrivano sottoscrivere ver +sottoscrive sottoscrivere ver +sottoscrivendo sottoscrivere ver +sottoscrivendolo sottoscrivere ver +sottoscrivendone sottoscrivere ver +sottoscrivendosi sottoscrivere ver +sottoscrivente sottoscrivere ver +sottoscriventi sottoscrivere ver +sottoscriveranno sottoscrivere ver +sottoscrivere sottoscrivere ver +sottoscriverei sottoscrivere ver +sottoscriverla sottoscrivere ver +sottoscriverle sottoscrivere ver +sottoscriverli sottoscrivere ver +sottoscriverlo sottoscrivere ver +sottoscriverne sottoscrivere ver +sottoscriverà sottoscrivere ver +sottoscrivesse sottoscrivere ver +sottoscrivessero sottoscrivere ver +sottoscriveva sottoscrivere ver +sottoscrivevano sottoscrivere ver +sottoscrivi sottoscrivere ver +sottoscriviamo sottoscrivere ver +sottoscrivo sottoscrivere ver +sottoscrivono sottoscrivere ver +sottoscrizione sottoscrizione nom +sottoscrizioni sottoscrizione nom +sottosegretari sottosegretario nom +sottosegretaria sottosegretario nom +sottosegretariato sottosegretariato nom +sottosegretario sottosegretario nom +sottosettore sottosettore nom +sottosettori sottosettore nom +sottosezione sottosezione nom +sottosezioni sottosezione nom +sottosistema sottosistema nom +sottosistemi sottosistema nom +sottosopra sottosopra adj +sottospecie sottospecie nom +sottosta sottostare ver +sottostando sottostare ver +sottostanno sottostare ver +sottostante sottostante adj +sottostanti sottostante adj +sottostare sottostare ver +sottostata sottostare ver +sottostate sottostare ver +sottostati sottostare ver +sottostato sottostare ver +sottostava sottostare ver +sottostavano sottostare ver +sottostazione sottostazione nom +sottostazioni sottostazione nom +sottosterzante sottosterzante adj +sottosterzanti sottosterzante adj +sottostette sottostare ver +sottostiano sottostare ver +sottostima sottostima nom +sottostimati sottostimare ver +sottosuoli sottosuolo nom +sottosuolo sottosuolo nom +sottosviluppata sottosviluppato adj +sottosviluppate sottosviluppato adj +sottosviluppati sottosviluppato adj +sottosviluppato sottosviluppato adj +sottosviluppo sottosviluppo nom +sottotenente sottotenente nom +sottotenenti sottotenente nom +sottoterra sottoterra adj +sottotetti sottotetto nom +sottotetto sottotetto nom +sottotitolazione sottotitolazione nom +sottotitoli sottotitolo nom +sottotitolo sottotitolo nom +sottoutilizzata sottoutilizzare ver +sottoutilizzato sottoutilizzare ver +sottoutilizzazione sottoutilizzazione nom +sottoutilizzo sottoutilizzo nom +sottovaluta sottovalutare ver +sottovalutando sottovalutare ver +sottovalutandolo sottovalutare ver +sottovalutano sottovalutare ver +sottovalutare sottovalutare ver +sottovalutarla sottovalutare ver +sottovalutarli sottovalutare ver +sottovalutarlo sottovalutare ver +sottovalutarmi sottovalutare ver +sottovalutarne sottovalutare ver +sottovalutarono sottovalutare ver +sottovalutarsi sottovalutare ver +sottovalutasse sottovalutare ver +sottovalutassero sottovalutare ver +sottovalutata sottovalutare ver +sottovalutate sottovalutare ver +sottovalutati sottovalutare ver +sottovalutato sottovalutare ver +sottovalutava sottovalutare ver +sottovalutavano sottovalutare ver +sottovalutazione sottovalutazione nom +sottovaluterei sottovalutare ver +sottovaluti sottovalutare ver +sottovalutiamo sottovalutare ver +sottovalutino sottovalutare ver +sottovaluto sottovalutare ver +sottovalutò sottovalutare ver +sottovasi sottovaso nom +sottovaso sottovaso nom +sottovento sottovento adj +sottoveste sottoveste nom +sottovesti sottoveste nom +sottovia sottovia nom +sottovoce sottovoce adv +sottovuoto sottovuoto adv +sottozona sottozona nom +sottozone sottozona nom +sottrae sottrarre ver +sottraemmo sottrarre ver +sottraendo sottrarre ver +sottraendogli sottrarre ver +sottraendola sottrarre ver +sottraendole sottrarre ver +sottraendoli sottrarre ver +sottraendolo sottrarre ver +sottraendomi sottrarre ver +sottraendone sottrarre ver +sottraendosi sottrarre ver +sottraendovi sottrarre ver +sottraesse sottrarre ver +sottraessero sottrarre ver +sottraeva sottrarre ver +sottraevano sottrarre ver +sottragga sottrarre ver +sottraggano sottrarre ver +sottraggo sottrarre ver +sottraggono sottrarre ver +sottrai sottrarre ver +sottraiamo sottrarre ver +sottrarci sottrarre ver +sottrargli sottrarre ver +sottrargliela sottrarre ver +sottrarglieli sottrarre ver +sottrarglielo sottrarre ver +sottrargliene sottrarre ver +sottrarla sottrarre ver +sottrarle sottrarre ver +sottrarli sottrarre ver +sottrarlo sottrarre ver +sottrarmi sottrarre ver +sottrarne sottrarre ver +sottrarranno sottrarre ver +sottrarre sottrarre ver +sottrarrebbe sottrarre ver +sottrarrebbero sottrarre ver +sottrarremo sottrarre ver +sottrarrà sottrarre ver +sottrarrò sottrarre ver +sottrarsene sottrarre ver +sottrarsi sottrarre ver +sottrartene sottrarre ver +sottrarti sottrarre ver +sottrarvi sottrarre ver +sottrasse sottrarre ver +sottrassero sottrarre ver +sottrassi sottrarre ver +sottratta sottrarre ver +sottratte sottrarre ver +sottratti sottrarre ver +sottratto sottrarre ver +sottrazione sottrazione nom +sottrazioni sottrazione nom +sottufficiale sottufficiale nom +sottufficiali sottufficiale nom +soubrette soubrette nom +soufflé soufflé nom +souplesse souplesse nom +souvenir souvenir nom +sovchoz sovchoz nom +sovente sovente adv +soverchi soverchio adj +soverchia soverchio adj +soverchiando soverchiare ver +soverchiano soverchiare ver +soverchiante soverchiare ver +soverchianti soverchiare ver +soverchiare soverchiare ver +soverchiarli soverchiare ver +soverchiarlo soverchiare ver +soverchiarono soverchiare ver +soverchiata soverchiare ver +soverchiate soverchiare ver +soverchiati soverchiare ver +soverchiato soverchiare ver +soverchiatore soverchiatore nom +soverchiava soverchiare ver +soverchie soverchio adj +soverchieria soverchieria nom +soverchierie soverchieria nom +soverchio soverchio adj +soverchiò soverchiare ver +sovescio sovescio nom +soviet soviet nom +sovietica sovietico adj +sovietiche sovietico adj +sovietici sovietico adj +sovietico sovietico adj +sovrabbondante sovrabbondante adj +sovrabbondanti sovrabbondante adj +sovrabbondanza sovrabbondanza nom +sovrabbondanze sovrabbondanza nom +sovrabbondare sovrabbondare ver +sovrabbondata sovrabbondare ver +sovrabbondato sovrabbondare ver +sovracapacità sovracapacità nom +sovraccarica sovraccarico adj +sovraccaricando sovraccaricare ver +sovraccaricandoli sovraccaricare ver +sovraccaricandolo sovraccaricare ver +sovraccaricandosi sovraccaricare ver +sovraccaricano sovraccaricare ver +sovraccaricare sovraccaricare ver +sovraccaricarli sovraccaricare ver +sovraccaricarlo sovraccaricare ver +sovraccaricarono sovraccaricare ver +sovraccaricarsi sovraccaricare ver +sovraccaricasse sovraccaricare ver +sovraccaricata sovraccaricare ver +sovraccaricate sovraccaricare ver +sovraccaricati sovraccaricare ver +sovraccaricato sovraccaricare ver +sovraccariche sovraccarico adj +sovraccaricherà sovraccaricare ver +sovraccarichi sovraccarico nom +sovraccarichiamo sovraccaricare ver +sovraccarico sovraccarico nom +sovraccaricò sovraccaricare ver +sovraccoperta sovraccoperta nom +sovracomunali sovracomunale adj +sovracorrente sovracorrente nom +sovracorrenti sovracorrente nom +sovraesponendo sovraesporre ver +sovraesporre sovraesporre ver +sovraesporsi sovraesporre ver +sovraesposizione sovraesposizione nom +sovraesposizioni sovraesposizione nom +sovraesposta sovraesporre ver +sovraesposte sovraesporre ver +sovraesposti sovraesporre ver +sovraesposto sovraesporre ver +sovraffaticarsi sovraffaticare ver +sovraffollamento sovraffollamento nom +sovraffollate sovraffollato adj +sovraindebitamento sovraindebitamento nom +sovralimentata sovralimentato adj +sovralimentate sovralimentato adj +sovralimentati sovralimentato adj +sovralimentato sovralimentato adj +sovralimentazione sovralimentazione nom +sovralimentazioni sovralimentazione nom +sovrallenamento sovrallenamento nom +sovrana sovrano adj +sovranazionale sovranazionale adj +sovranazionalità sovranazionalità nom +sovrane sovrano adj +sovrani sovrano adj +sovranità sovranità nom +sovrannaturale sovrannaturale adj +sovrannaturali sovrannaturale adj +sovrano sovrano nom +sovrappassi sovrappasso nom +sovrappasso sovrappasso nom +sovrappiù sovrappiù nom +sovrappone sovrapporre ver +sovrapponendo sovrapporre ver +sovrapponendoci sovrapporre ver +sovrapponendogli sovrapporre ver +sovrapponendola sovrapporre ver +sovrapponendole sovrapporre ver +sovrapponendoli sovrapporre ver +sovrapponendolo sovrapporre ver +sovrapponendosi sovrapporre ver +sovrapponendovi sovrapporre ver +sovrapponesse sovrapporre ver +sovrapponessero sovrapporre ver +sovrapponete sovrapporre ver +sovrapponeva sovrapporre ver +sovrapponevano sovrapporre ver +sovrapponga sovrapporre ver +sovrappongano sovrapporre ver +sovrappongo sovrapporre ver +sovrappongono sovrapporre ver +sovrapponiamo sovrapporre ver +sovrapponibile sovrapponibile adj +sovrapponibili sovrapponibile adj +sovrappopolasse sovrappopolare ver +sovrappopolata sovrappopolare ver +sovrappopolate sovrappopolare ver +sovrappopolati sovrappopolare ver +sovrappopolato sovrappopolare ver +sovrappopolazione sovrappopolazione nom +sovrapporci sovrapporre ver +sovrapporla sovrapporre ver +sovrapporle sovrapporre ver +sovrapporli sovrapporre ver +sovrapporlo sovrapporre ver +sovrappormi sovrapporre ver +sovrapporne sovrapporre ver +sovrapporranno sovrapporre ver +sovrapporre sovrapporre ver +sovrapporrebbero sovrapporre ver +sovrapporrà sovrapporre ver +sovrapporsi sovrapporre ver +sovrapporti sovrapporre ver +sovrappose sovrapporre ver +sovrapposero sovrapporre ver +sovrapposizione sovrapposizione nom +sovrapposizioni sovrapposizione nom +sovrapposta sovrapporre ver +sovrapposte sovrapporre ver +sovrapposti sovrapporre ver +sovrapposto sovrapporre ver +sovrapprezzi sovrapprezzo nom +sovrapprezzo sovrapprezzo nom +sovrapproduzione sovrapproduzione nom +sovrapproduzioni sovrapproduzione nom +sovrapressione sovrapressione nom +sovraregionale sovraregionale adj +sovrascorrimenti sovrascorrimento nom +sovrascorrimento sovrascorrimento nom +sovrasensibile sovrasensibile adj +sovrasfruttamento sovrasfruttamento nom +sovrasta sovrastare ver +sovrastampa sovrastampa nom +sovrastampando sovrastampare ver +sovrastampare sovrastampare ver +sovrastamparono sovrastampare ver +sovrastampata sovrastampare ver +sovrastampate sovrastampare ver +sovrastampati sovrastampare ver +sovrastampato sovrastampare ver +sovrastampe sovrastampa nom +sovrastando sovrastare ver +sovrastante sovrastante adj +sovrastanti sovrastante adj +sovrastare sovrastare ver +sovrastarla sovrastare ver +sovrastarli sovrastare ver +sovrastarlo sovrastare ver +sovrastata sovrastare ver +sovrastate sovrastare ver +sovrastati sovrastare ver +sovrastato sovrastare ver +sovrastava sovrastare ver +sovrastavano sovrastare ver +sovrasterzante sovrasterzante adj +sovrasterzanti sovrasterzante adj +sovrastimati sovrastimare ver +sovrastruttura sovrastruttura nom +sovrastrutture sovrastruttura nom +sovratensione sovratensione nom +sovratensioni sovratensione nom +sovrattassa sovrattassa nom +sovrattasse sovrattassa nom +sovreccitata sovreccitare ver +sovreccitato sovreccitare ver +sovreccitazione sovreccitazione nom +sovrimposta sovrimposta nom +sovrimposte sovrimposta nom +sovrimpressione sovrimpressione nom +sovrimpressioni sovrimpressione nom +sovrintenda sovrintendere ver +sovrintende sovrintendere ver +sovrintendendo sovrintendere ver +sovrintendente sovrintendere ver +sovrintendenti sovrintendere ver +sovrintendere sovrintendere ver +sovrintenderne sovrintendere ver +sovrintenderà sovrintendere ver +sovrintendesse sovrintendere ver +sovrintendete sovrintendere ver +sovrintendeva sovrintendere ver +sovrintendevano sovrintendere ver +sovrintendono sovrintendere ver +sovrintesa sovrintendere ver +sovrintese sovrintendere ver +sovrintesi sovrintendere ver +sovrinteso sovrintendere ver +sovrumana sovrumano adj +sovrumane sovrumano adj +sovrumani sovrumano adj +sovrumano sovrumano adj +sovvenga sovvenire ver +sovvengano sovvenire ver +sovvengono sovvenire ver +sovvenir sovvenire ver +sovvenire sovvenire ver +sovveniva sovvenire ver +sovvenivano sovvenire ver +sovvenne sovvenire ver +sovventore sovventore nom +sovventori sovventore nom +sovvenuta sovvenire ver +sovvenute sovvenire ver +sovvenuto sovvenire ver +sovvenziona sovvenzionare ver +sovvenzionamenti sovvenzionamento nom +sovvenzionamento sovvenzionamento nom +sovvenzionando sovvenzionare ver +sovvenzionandola sovvenzionare ver +sovvenzionano sovvenzionare ver +sovvenzionare sovvenzionare ver +sovvenzionarlo sovvenzionare ver +sovvenzionarne sovvenzionare ver +sovvenzionarono sovvenzionare ver +sovvenzionarsi sovvenzionare ver +sovvenzionata sovvenzionare ver +sovvenzionate sovvenzionare ver +sovvenzionati sovvenzionare ver +sovvenzionato sovvenzionare ver +sovvenzionava sovvenzionare ver +sovvenzionavano sovvenzionare ver +sovvenzione sovvenzione nom +sovvenzioni sovvenzione nom +sovvenzionò sovvenzionare ver +sovversione sovversione nom +sovversioni sovversione nom +sovversiva sovversivo adj +sovversive sovversivo adj +sovversivi sovversivo adj +sovversivismo sovversivismo nom +sovversivo sovversivo adj +sovverte sovvertire ver +sovvertendo sovvertire ver +sovvertendoli sovvertire ver +sovvertendone sovvertire ver +sovvertimenti sovvertimento nom +sovvertimento sovvertimento nom +sovvertire sovvertire ver +sovvertirla sovvertire ver +sovvertirlo sovvertire ver +sovvertirne sovvertire ver +sovvertirono sovvertire ver +sovvertisse sovvertire ver +sovvertita sovvertire ver +sovvertite sovvertire ver +sovvertiti sovvertire ver +sovvertito sovvertire ver +sovvertitore sovvertitore adj +sovvertitori sovvertitore adj +sovvertitrice sovvertitore adj +sovvertitrici sovvertitore adj +sovvertiva sovvertire ver +sovvertono sovvertire ver +sovvertì sovvertire ver +sovviene sovvenire ver +sovvieni sovvenire ver +sozza sozzo adj +sozze sozzo adj +sozzi sozzo adj +sozzo sozzo adj +sozzura sozzura nom +sozzure sozzura nom +spa spa nom +spacca spaccare ver +spaccalegna spaccalegna nom +spaccamela spaccare ver +spaccami spaccare ver +spaccamonti spaccamonti nom +spaccando spaccare ver +spaccandogli spaccare ver +spaccandola spaccare ver +spaccandole spaccare ver +spaccandolo spaccare ver +spaccandone spaccare ver +spaccandosi spaccare ver +spaccano spaccare ver +spaccaossa spaccaossa nom +spaccapietre spaccapietre nom +spaccar spaccare ver +spaccarci spaccare ver +spaccare spaccare ver +spaccargli spaccare ver +spaccargliene spaccare ver +spaccarla spaccare ver +spaccarle spaccare ver +spaccarlo spaccare ver +spaccarne spaccare ver +spaccarono spaccare ver +spaccarsi spaccare ver +spaccarti spaccare ver +spaccasse spaccare ver +spaccata spaccato adj +spaccate spaccare ver +spaccati spaccare ver +spaccato spaccato nom +spaccatura spaccatura nom +spaccature spaccatura nom +spaccava spaccare ver +spaccavano spaccare ver +spaccerà spacciare ver +spaccheranno spaccare ver +spaccherebbe spaccare ver +spaccherà spaccare ver +spacchettare spacchettare ver +spacchettata spacchettare ver +spacchettato spacchettare ver +spacchetti spacchetto nom +spacchettiamo spacchettare ver +spacchi spacco nom +spacchiamo spaccare ver +spacchiamoci spaccare ver +spacchino spaccare ver +spacci spaccio nom +spaccia spacciare ver +spacciamo spacciare ver +spacciando spacciare ver +spacciandola spacciare ver +spacciandole spacciare ver +spacciandoli spacciare ver +spacciandolo spacciare ver +spacciandosi spacciare ver +spacciandoti spacciare ver +spacciano spacciare ver +spacciante spacciare ver +spacciare spacciare ver +spacciarla spacciare ver +spacciarle spacciare ver +spacciarli spacciare ver +spacciarlo spacciare ver +spacciarmi spacciare ver +spacciarono spacciare ver +spacciarsi spacciare ver +spacciasse spacciare ver +spacciassero spacciare ver +spacciata spacciare ver +spacciate spacciare ver +spacciati spacciare ver +spacciato spacciare ver +spacciatore spacciatore nom +spacciatori spacciatore nom +spacciatrice spacciatore nom +spacciava spacciare ver +spacciavano spacciare ver +spaccino spacciare ver +spaccio spaccio nom +spacciò spacciare ver +spacco spacco nom +spaccona spaccone nom +spacconata spacconata nom +spacconate spacconata nom +spaccone spaccone nom +spacconi spaccone nom +spaccò spaccare ver +spada spada nom +spadaccina spadaccino nom +spadaccine spadaccino nom +spadaccini spadaccino nom +spadaccino spadaccino nom +spadai spadaio nom +spadaio spadaio nom +spade spada nom +spadice spadice nom +spadici spadice nom +spadini spadino nom +spadino spadino nom +spadista spadista nom +spadisti spadista nom +spadona spadona nom +spadone spadona|spadone nom +spadoni spadone nom +spadroneggia spadroneggiare ver +spadroneggiando spadroneggiare ver +spadroneggiano spadroneggiare ver +spadroneggiare spadroneggiare ver +spadroneggiarono spadroneggiare ver +spadroneggiato spadroneggiare ver +spadroneggiava spadroneggiare ver +spadroneggiavano spadroneggiare ver +spadroneggiò spadroneggiare ver +spaesata spaesato adj +spaesate spaesato adj +spaesati spaesato adj +spaesato spaesato adj +spaghettata spaghettata nom +spaghettate spaghettata nom +spaghetti spaghetto nom +spaghetto spaghetto nom +spaghi spago nom +spaglia spagliare ver +spagliano spagliare ver +spagliare spagliare ver +spagliato spagliare ver +spagliava spagliare ver +spagliavano spagliare ver +spaglio spaglio nom +spagnola spagnolo adj +spagnole spagnolo adj +spagnolesca spagnolesco adj +spagnoleschi spagnolesco adj +spagnolesco spagnolesco adj +spagnoletta spagnoletta nom +spagnolette spagnoletta nom +spagnoli spagnolo adj +spagnolismo spagnolismo nom +spagnolo spagnolo adj +spago spago nom +spai spaiare ver +spaia spaiare ver +spaiata spaiato adj +spaiate spaiato adj +spaiati spaiato adj +spaiato spaiato adj +spala spalare ver +spalanca spalancare ver +spalancando spalancare ver +spalancano spalancare ver +spalancare spalancare ver +spalancargli spalancare ver +spalancarle spalancare ver +spalancarne spalancare ver +spalancarono spalancare ver +spalancarsi spalancare ver +spalancata spalancare ver +spalancate spalancare ver +spalancati spalancare ver +spalancato spalancare ver +spalancava spalancare ver +spalancavano spalancare ver +spalancheranno spalancare ver +spalancherà spalancare ver +spalanchi spalancare ver +spalanchiamo spalancare ver +spalancò spalancare ver +spalando spalare ver +spalano spalare ver +spalarci spalare ver +spalare spalare ver +spalarmi spalare ver +spalarono spalare ver +spalata spalare ver +spalato spalare ver +spalatore spalatore nom +spalatori spalatore nom +spali spalare ver +spalla spalla nom +spallacci spallaccio nom +spallaccio spallaccio nom +spallata spallata nom +spallate spallata nom +spalle spalla nom +spalleggia spalleggiare ver +spalleggiando spalleggiare ver +spalleggiandosi spalleggiare ver +spalleggiano spalleggiare ver +spalleggiare spalleggiare ver +spalleggiarla spalleggiare ver +spalleggiarlo spalleggiare ver +spalleggiarono spalleggiare ver +spalleggiarsi spalleggiare ver +spalleggiata spalleggiare ver +spalleggiate spalleggiare ver +spalleggiati spalleggiare ver +spalleggiato spalleggiare ver +spalleggiava spalleggiare ver +spalleggiò spalleggiare ver +spalletta spalletta nom +spallette spalletta nom +spalliera spalliera nom +spalliere spalliera nom +spallina spallina nom +spalline spallina nom +spallucce spalluccia nom +spalluccia spalluccia nom +spalma spalmare ver +spalmando spalmare ver +spalmandola spalmare ver +spalmandole spalmare ver +spalmandolo spalmare ver +spalmano spalmare ver +spalmare spalmare ver +spalmarla spalmare ver +spalmarle spalmare ver +spalmarli spalmare ver +spalmarlo spalmare ver +spalmarne spalmare ver +spalmarsi spalmare ver +spalmata spalmare ver +spalmate spalmare ver +spalmati spalmare ver +spalmato spalmare ver +spalmatura spalmatura nom +spalmature spalmatura nom +spalmava spalmare ver +spalmavano spalmare ver +spalmo spalmare ver +spalmò spalmare ver +spalo spalare ver +spalti spalto nom +spalto spalto nom +spampanato spampanare ver +spampanatura spampanatura nom +spampani spampanare ver +spana spanare ver +spanar spanare ver +spanata spanare ver +spanate spanare ver +spanato spanare ver +spancia spanciare ver +spanciare spanciare ver +spanciarsi spanciare ver +spanciata spanciata nom +spanciato spanciare ver +spanda spandere ver +spandano spandere ver +spande spandere ver +spandendo spandere ver +spandendosi spandere ver +spandere spandere ver +spandersi spandere ver +spanderà spandere ver +spandeva spandere ver +spandevano spandere ver +spandi spandere ver +spandiconcime spandiconcime nom +spandine spandere ver +spando spandere ver +spandono spandere ver +spani spanare|spaniare ver +spania spaniare ver +spaniel spaniel nom +spanio spaniare ver +spanna spanna nom +spannare spannare ver +spanne spanna nom +spannocchi spannocchiare ver +spannocchia spannocchiare ver +spano spanare ver +spanse spandere ver +spansero spandere ver +spansi spandere ver +spanò spanare ver +spaparanzati spaparanzarsi ver +spaparanzato spaparanzarsi ver +spappola spappolare ver +spappolando spappolare ver +spappolandogli spappolare ver +spappolandola spappolare ver +spappolano spappolare ver +spappolare spappolare ver +spappolargli spappolare ver +spappolata spappolare ver +spappolati spappolare ver +spappolato spappolare ver +spappolava spappolare ver +spappolò spappolare ver +spara sparare ver +sparaci sparare ver +sparagio sparagio nom +sparagli sparare ver +sparai sparare ver +sparale sparare ver +sparami sparare ver +sparando sparare ver +sparandoci sparare ver +sparandogli sparare ver +sparandola sparare ver +sparandole sparare ver +sparandoli sparare ver +sparandolo sparare ver +sparandosi sparare ver +sparandovi sparare ver +sparano sparare ver +sparante sparare ver +sparanti sparare ver +sparar sparare ver +spararci sparare ver +sparare sparare ver +sparargli sparare ver +spararla sparare ver +spararle sparare ver +spararli sparare ver +spararlo sparare ver +spararmi sparare ver +spararne sparare ver +spararono sparare ver +spararsi sparare ver +spararti sparare ver +spararvi sparare ver +sparasse sparare ver +sparassero sparare ver +sparata sparare ver +sparate sparare ver +sparategli sparare ver +sparatemi sparare ver +sparatevi sparare ver +sparati sparare ver +sparato sparare ver +sparatore sparatore nom +sparatori sparatore nom +sparatoria sparatoria nom +sparatorie sparatoria nom +sparava sparare ver +sparavamo sparare ver +sparavano sparare ver +sparecchiare sparecchiare ver +sparecchiava sparecchiare ver +spareggi spareggio nom +spareggio spareggio nom +sparendo sparire ver +sparente sparire ver +spareranno sparare ver +sparerebbe sparare ver +sparerebbero sparare ver +sparerei sparare ver +sparerà sparare ver +sparerò sparare ver +sparga spargere ver +sparge spargere ver +spargendo spargere ver +spargendola spargere ver +spargendolo spargere ver +spargendone spargere ver +spargendosi spargere ver +spargendovi spargere ver +sparger spargere ver +spargerai spargere ver +spargeranno spargere ver +spargere spargere ver +spargerebbe spargere ver +spargerei spargere ver +spargerete spargere ver +spargerla spargere ver +spargerle spargere ver +spargerli spargere ver +spargerlo spargere ver +spargerne spargere ver +spargersi spargere ver +spargerà spargere ver +spargerò spargere ver +spargesse spargere ver +spargesti spargere ver +spargete spargere ver +spargeva spargere ver +spargevano spargere ver +spargi spargere ver +spargiamo spargere ver +spargimenti spargimento nom +spargimento spargimento nom +spargo spargere ver +spargono spargere ver +spari sparo nom +spariamo sparare|sparire ver +spariamola sparare|sparire ver +spariglia sparigliare ver +sparigliare sparigliare ver +spariglio sparigliare ver +sparino sparare ver +sparir sparire ver +spariranno sparire ver +sparire sparire ver +sparirebbe sparire ver +sparirebbero sparire ver +sparirono sparire ver +sparirvi sparire ver +sparirà sparire ver +sparirò sparire ver +sparisca sparire ver +spariscano sparire ver +sparisce sparire ver +sparisci sparire ver +sparisco sparire ver +spariscono sparire ver +sparisse sparire ver +sparissero sparire ver +sparita sparire ver +sparite sparire ver +spariti sparire ver +sparito sparire ver +spariva sparire ver +sparivano sparire ver +sparizione sparizione nom +sparizioni sparizione nom +sparla sparlare ver +sparlando sparlare ver +sparlano sparlare ver +sparlare sparlare ver +sparlato sparlare ver +sparlava sparlare ver +sparlavano sparlare ver +sparlerà sparlare ver +sparli sparlare ver +sparo sparo nom +sparpaglia sparpagliare ver +sparpagliamenti sparpagliamento nom +sparpagliamento sparpagliamento nom +sparpagliando sparpagliare ver +sparpagliandole sparpagliare ver +sparpagliandoli sparpagliare ver +sparpagliandosi sparpagliare ver +sparpagliano sparpagliare ver +sparpagliare sparpagliare ver +sparpagliarono sparpagliare ver +sparpagliarsi sparpagliare ver +sparpagliata sparpagliare ver +sparpagliate sparpagliare ver +sparpagliati sparpagliare ver +sparpagliato sparpagliare ver +sparpagliava sparpagliare ver +sparpagliavano sparpagliare ver +sparpaglierebbero sparpagliare ver +sparpagliò sparpagliare ver +sparsa spargere ver +sparse sparso adj +sparsero spargere ver +sparsi sparso adj +sparso spargere ver +sparta sparto adj +spartana spartano adj +spartane spartano adj +spartani spartano adj +spartano spartano adj +sparte sparto adj +sparteina sparteina nom +sparteine sparteina nom +spartendo spartire ver +spartendosi spartire ver +sparti sparto adj +spartiacque spartiacque nom +spartiamo spartire ver +spartiate spartire ver +spartii spartire ver +spartineve spartineve nom +spartiranno spartire ver +spartire spartire ver +spartirla spartire ver +spartirlo spartire ver +spartirono spartire ver +spartirsene spartire ver +spartirsi spartire ver +spartirvi spartire ver +spartirà spartire ver +spartisca spartire ver +spartisce spartire ver +spartiscono spartire ver +spartissero spartire ver +spartita spartire ver +spartite spartire ver +spartiti spartito nom +spartito spartito nom +spartitraffico spartitraffico nom +spartitrici spartitore nom +spartiva spartire ver +spartivano spartire ver +spartizione spartizione nom +spartizioni spartizione nom +sparto sparto adj +spartì spartire ver +sparuta sparuto adj +sparute sparuto adj +sparuti sparuto adj +sparuto sparuto adj +sparviere sparviere nom +sparvieri sparviere|sparviero nom +sparviero sparviero nom +sparì sparire ver +sparò sparare ver +spasima spasimare ver +spasimante spasimante nom +spasimanti spasimante nom +spasimare spasimare ver +spasimati spasimare ver +spasimato spasimare ver +spasimi spasimo nom +spasimo spasimo nom +spasmi spasmo nom +spasmo spasmo nom +spasmodica spasmodico adj +spasmodiche spasmodico adj +spasmodici spasmodico adj +spasmodico spasmodico adj +spasmofilia spasmofilia nom +spasmolitica spasmolitico adj +spasmolitiche spasmolitico adj +spasmolitici spasmolitico adj +spasmolitico spasmolitico adj +spassa spassare ver +spassando spassare ver +spassano spassare ver +spassarcela spassare ver +spassare spassare ver +spassarsela spassare ver +spassata spassare ver +spassato spassare ver +spassava spassare ver +spassi spasso nom +spassionata spassionato adj +spassionate spassionato adj +spassionati spassionato adj +spassionato spassionato adj +spasso spasso nom +spassosa spassoso adj +spassose spassoso adj +spassosi spassoso adj +spassoso spassoso adj +spastica spastico adj +spastiche spastico adj +spastici spastico adj +spastico spastico adj +spata spata nom +spate spata nom +spati spato nom +spato spato nom +spatola spatola nom +spatolata spatolato adj +spatolate spatolato adj +spatolati spatolato adj +spatolato spatolato adj +spatole spatola nom +spauracchi spauracchio nom +spauracchio spauracchio nom +spaurire spaurire ver +spaurita spaurito adj +spaurito spaurito adj +spavalda spavaldo adj +spavalde spavaldo adj +spavalderia spavalderia nom +spavaldi spavaldo adj +spavaldo spavaldo adj +spaventa spaventare ver +spaventando spaventare ver +spaventandola spaventare ver +spaventandole spaventare ver +spaventandoli spaventare ver +spaventandolo spaventare ver +spaventandosi spaventare ver +spaventano spaventare ver +spaventapasseri spaventapasseri nom +spaventarci spaventare ver +spaventare spaventare ver +spaventarla spaventare ver +spaventarle spaventare ver +spaventarli spaventare ver +spaventarlo spaventare ver +spaventarmi spaventare ver +spaventarono spaventare ver +spaventarsi spaventare ver +spaventarti spaventare ver +spaventasse spaventare ver +spaventassero spaventare ver +spaventata spaventare ver +spaventate spaventare ver +spaventatevi spaventare ver +spaventati spaventare ver +spaventato spaventare ver +spaventava spaventare ver +spaventavano spaventare ver +spaventerai spaventare ver +spaventeranno spaventare ver +spaventerebbe spaventare ver +spaventerebbero spaventare ver +spaventerei spaventare ver +spaventerà spaventare ver +spaventerò spaventare ver +spaventevole spaventevole adj +spaventevoli spaventevole adj +spaventi spavento nom +spaventiamo spaventare ver +spaventino spaventare ver +spavento spavento nom +spaventosa spaventoso adj +spaventose spaventoso adj +spaventosi spaventoso adj +spaventoso spaventoso adj +spaventò spaventare ver +spazi spazio nom +spazia spaziare ver +spaziale spaziale adj +spaziali spaziale adj +spazialità spazialità nom +spaziando spaziare ver +spaziano spaziare ver +spaziante spaziare ver +spazianti spaziare ver +spaziare spaziare ver +spaziarlo spaziare ver +spaziarono spaziare ver +spaziasse spaziare ver +spaziata spaziare ver +spaziate spaziare ver +spaziati spaziare ver +spaziato spaziare ver +spaziatore spaziatore adj +spaziatori spaziatore adj +spaziatrice spaziatore adj +spaziatrici spaziatore adj +spaziatura spaziatura nom +spaziature spaziatura nom +spaziava spaziare ver +spaziavano spaziare ver +spazientire spazientire ver +spazientirono spazientire ver +spazientirsi spazientire ver +spazientisce spazientire ver +spazientita spazientire ver +spazientite spazientire ver +spazientiti spazientire ver +spazientito spazientire ver +spazientì spazientire ver +spazieranno spaziare ver +spazierà spaziare ver +spazio spazio nom +spaziosa spazioso adj +spaziose spazioso adj +spaziosi spazioso adj +spaziosità spaziosità nom +spazioso spazioso adj +spaziò spaziare ver +spazza spazzare ver +spazzacamini spazzacamino nom +spazzacamino spazzacamino nom +spazzale spazzare ver +spazzali spazzare ver +spazzalo spazzare ver +spazzamine spazzamine nom +spazzando spazzare ver +spazzandola spazzare ver +spazzandoli spazzare ver +spazzandolo spazzare ver +spazzandone spazzare ver +spazzaneve spazzaneve nom +spazzano spazzare ver +spazzar spazzare ver +spazzare spazzare ver +spazzarla spazzare ver +spazzarle spazzare ver +spazzarli spazzare ver +spazzarlo spazzare ver +spazzarono spazzare ver +spazzasse spazzare ver +spazzata spazzare ver +spazzate spazzare ver +spazzateli spazzare ver +spazzati spazzare ver +spazzato spazzare ver +spazzatrice spazzatrice nom +spazzatrici spazzatrice nom +spazzatura spazzatura nom +spazzature spazzatura nom +spazzava spazzare ver +spazzavano spazzare ver +spazzeranno spazzare ver +spazzerebbe spazzare ver +spazzerei spazzare ver +spazzeremo spazzare ver +spazzerà spazzare ver +spazzi spazzare ver +spazziamo spazzare ver +spazzina spazzino nom +spazzine spazzino nom +spazzini spazzino nom +spazzino spazzino nom +spazzo spazzare ver +spazzola spazzola nom +spazzolando spazzolare ver +spazzolano spazzolare ver +spazzolare spazzolare ver +spazzolarli spazzolare ver +spazzolarlo spazzolare ver +spazzolata spazzolata nom +spazzolate spazzolata nom +spazzolati spazzolare ver +spazzolato spazzolare ver +spazzolava spazzolare ver +spazzole spazzola nom +spazzoli spazzolare ver +spazzolini spazzolino nom +spazzolino spazzolino nom +spazzolone spazzolone nom +spazzoloni spazzolone nom +spazzò spazzare ver +spe spa nom +speaker speaker nom +specchi specchio nom +specchia specchiarsi ver +specchiando specchiarsi ver +specchiandosi specchiarsi ver +specchiano specchiarsi ver +specchiante specchiarsi ver +specchianti specchiarsi ver +specchiarci specchiarsi ver +specchiare specchiarsi ver +specchiarla specchiarsi ver +specchiarmi specchiarsi ver +specchiarsi specchiarsi ver +specchiasse specchiarsi ver +specchiasti specchiarsi ver +specchiata specchiato adj +specchiate specchiato adj +specchiati specchiato adj +specchiato specchiarsi ver +specchiavano specchiarsi ver +specchiera specchiera nom +specchiere specchiera nom +specchierebbe specchiarsi ver +specchietti specchietto nom +specchietto specchietto nom +specchio specchio nom +specchiò specchiarsi ver +spechi speco nom +special special nom +speciale speciale adj +speciali speciale adj +specialista specialista nom +specialiste specialista nom +specialisti specialista nom +specialistica specialistico adj +specialistiche specialistico adj +specialistici specialistico adj +specialistico specialistico adj +specialità specialità nom +specializza specializzare ver +specializzando specializzare ver +specializzandole specializzare ver +specializzandosi specializzare ver +specializzano specializzare ver +specializzanti specializzare ver +specializzare specializzare ver +specializzarono specializzare ver +specializzarsi specializzare ver +specializzasse specializzare ver +specializzata specializzare ver +specializzate specializzato adj +specializzatesi specializzare ver +specializzati specializzato adj +specializzato specializzare ver +specializzava specializzare ver +specializzavano specializzare ver +specializzazione specializzazione nom +specializzazioni specializzazione nom +specializzerebbero specializzare ver +specializzerà specializzare ver +specializzi specializzare ver +specializzo specializzare ver +specializzò specializzare ver +specialmente specialmente adv_sup +specie specie adv +specifica specifico adj +specificai specificare ver +specificala specificare ver +specificalo specificare ver +specificamente specificamente adv +specificando specificare ver +specificandola specificare ver +specificandole specificare ver +specificandolo specificare ver +specificandone specificare ver +specificano specificare ver +specificante specificare ver +specificar specificare ver +specificare specificare ver +specificargli specificare ver +specificarla specificare ver +specificarle specificare ver +specificarli specificare ver +specificarlo specificare ver +specificarmi specificare ver +specificarne specificare ver +specificarono specificare ver +specificarsi specificare ver +specificasse specificare ver +specificassero specificare ver +specificassi specificare ver +specificata specificare ver +specificatamente specificatamente adv +specificate specificare ver +specificatelo specificare ver +specificati specificare ver +specificato specificare ver +specificava specificare ver +specificavano specificare ver +specificavi specificare ver +specificavo specificare ver +specificazione specificazione nom +specificazioni specificazione nom +specifiche specifico adj +specificherei specificare ver +specificheremo specificare ver +specificherà specificare ver +specificherò specificare ver +specifichi specificare ver +specifichiamo specificare ver +specifichiamolo specificare ver +specifichino specificare ver +specifici specifico adj +specificità specificità nom +specifico specifico adj +specificò specificare ver +specillo specillo nom +specimen specimen nom +specimina specimina nom +speciosa specioso adj +speciose specioso adj +speciosi specioso adj +speciosità speciosità nom +specioso specioso adj +speck speck nom +speco speco nom +specola specola nom +specula speculare ver +speculando speculare ver +speculano speculare ver +specular speculare ver +speculare speculare adj +speculari speculare adj +specularmene speculare ver +specularono speculare ver +speculata speculare ver +speculate speculare ver +speculati speculare ver +speculativa speculativo adj +speculative speculativo adj +speculativi speculativo adj +speculativo speculativo adj +speculato speculare ver +speculatore speculatore nom +speculatori speculatore nom +speculatrice speculatore adj +speculava speculare ver +speculavano speculare ver +speculazione speculazione nom +speculazioni speculazione nom +speculi speculare ver +speculo speculare ver +speculò speculare ver +spedalità spedalità nom +spedalizzo spedalizzare ver +spedendo spedire ver +spedendogli spedire ver +spedendola spedire ver +spedendole spedire ver +spedendoli spedire ver +spedendolo spedire ver +spedendone spedire ver +spediamo spedire ver +spedii spedire ver +spediranno spedire ver +spedire spedire ver +spedirebbe spedire ver +spedirgli spedire ver +spedirgliela spedire ver +spedirla spedire ver +spedirle spedire ver +spedirli spedire ver +spedirlo spedire ver +spedirmela spedire ver +spedirmi spedire ver +spedirne spedire ver +spedirono spedire ver +spedirsi spedire ver +spedirtela spedire ver +spedirti spedire ver +spedirvi spedire ver +spedirà spedire ver +spedirò spedire ver +spedisca spedire ver +spediscano spedire ver +spedisce spedire ver +spedisci spedire ver +spediscimi spedire ver +spedisco spedire ver +spediscono spedire ver +spedisse spedire ver +spedissero spedire ver +spedissi spedire ver +spedita spedire ver +speditamente speditamente adv +spedite spedire ver +speditezza speditezza nom +spediti spedire ver +spedito spedire ver +speditore speditore nom +spediva spedire ver +spedivano spedire ver +spedizione spedizione nom +spedizioni spedizione nom +spedizioniere spedizioniere nom +spedizionieri spedizioniere nom +spedì spedire ver +speedway speedway nom +spegna spegnare ver +spegnare spegnare ver +spegnarsi spegnare ver +spegne spegnere ver +spegnemmo spegnere ver +spegnendo spegnere ver +spegnendole spegnere ver +spegnendolo spegnere ver +spegnendone spegnere ver +spegnendosi spegnere ver +spegneranno spegnare|spegnere ver +spegnere spegnere|spengere ver +spegnerebbe spegnare|spegnere ver +spegnerebbero spegnare|spegnere ver +spegnerla spegnere ver +spegnerle spegnere ver +spegnerli spegnere ver +spegnerlo spegnere ver +spegnermi spegnere ver +spegnerne spegnere ver +spegnersi spegnere ver +spegnerà spegnare|spegnere ver +spegnesse spegnere ver +spegnessero spegnere ver +spegneste spegnere ver +spegnesti spegnere ver +spegnete spegnere ver +spegnetela spegnere ver +spegneva spegnere ver +spegnevano spegnere ver +spegni spegnare|spegnere ver +spegniamo spegnare|spegnere ver +spegnimenti spegnimento nom +spegnimento spegnimento nom +spegnino spegnare ver +spegniti spegnere ver +spegnitoio spegnitoio nom +spela spelare ver +spelacchiata spelacchiare ver +spelacchiate spelacchiato adj +spelacchiati spelacchiato adj +spelacchiato spelacchiare ver +spelar spelare ver +spelare spelare ver +spelate spelare ver +spelea speleo adj +speleo speleo adj +speleologa speleologo nom +speleologi speleologo nom +speleologia speleologia nom +speleologica speleologico adj +speleologiche speleologico adj +speleologici speleologico adj +speleologico speleologico adj +speleologie speleologia nom +speleologo speleologo nom +spella spellare ver +spellano spellare ver +spellar spellare ver +spellare spellare ver +spellarmi spellare ver +spellarsi spellare ver +spellata spellare ver +spellate spellare ver +spellati spellare ver +spellato spellare ver +spellatura spellatura nom +spelli spellare ver +spello spellare ver +spelonca spelonca nom +spelonche spelonca nom +speme speme nom +spencer spencer nom +spenda spendere ver +spendacciona spendaccione nom +spendaccione spendaccione nom +spendaccioni spendaccione nom +spendano spendere ver +spende spendere ver +spendendo spendere ver +spendendola spendere ver +spendendoli spendere ver +spendendolo spendere ver +spendendone spendere ver +spendendosi spendere ver +spendendovi spendere ver +spendente spendere ver +spender spendere ver +spenderai spendere ver +spenderanno spendere ver +spenderci spendere ver +spendere spendere ver +spenderebbe spendere ver +spenderebbero spendere ver +spendereccia spendereccio adj +spenderei spendere ver +spenderete spendere ver +spenderla spendere ver +spenderle spendere ver +spenderli spendere ver +spenderlo spendere ver +spendermi spendere ver +spenderne spendere ver +spendersi spendere ver +spendervi spendere ver +spenderà spendere ver +spenderò spendere ver +spendesse spendere ver +spendessero spendere ver +spendessi spendere ver +spendete spendere ver +spendeva spendere ver +spendevano spendere ver +spendevo spendere ver +spendi spendere ver +spendiamo spendere ver +spendo spendere ver +spendono spendere ver +spenga spegnere|spengere ver +spengano spegnere|spengere ver +spenge spengere ver +spengendo spengere ver +spengersi spengere ver +spengeva spengere ver +spengiti spengere ver +spengo spegnere|spengere ver +spengono spegnere|spengere ver +spenna spennare ver +spennando spennare ver +spennano spennare ver +spennare spennare ver +spennata spennare ver +spennati spennare ver +spennato spennare ver +spennella spennellare ver +spennellando spennellare ver +spennellandoli spennellare ver +spennellare spennellare ver +spennellata spennellare ver +spennellati spennellare ver +spennellato spennellare ver +spennellature spennellatura nom +spense spegnere|spengere ver +spensero spegnere|spengere ver +spensi spegnere|spengere ver +spensierata spensierato adj +spensierate spensierato adj +spensieratezza spensieratezza nom +spensierati spensierato adj +spensierato spensierato adj +spenta spegnere|spengere ver +spente spegnere|spengere ver +spenti spegnere|spengere ver +spento spegnere|spengere ver +spera sperare ver +sperabile sperabile adj +sperai sperare ver +sperando sperare ver +sperandolo sperare ver +sperano sperare ver +sperante sperare ver +speranza speranza nom +speranze speranza nom +speranzosa speranzoso adj +speranzose speranzoso adj +speranzosi speranzoso adj +speranzoso speranzoso adj +sperar sperare ver +sperarci sperare ver +sperare sperare ver +sperarlo sperare ver +sperarne sperare ver +sperarono sperare ver +sperasse sperare ver +sperassero sperare ver +sperassi sperare ver +sperata sperare ver +sperate sperare ver +sperati sperare ver +sperato sperare ver +speratura speratura nom +sperava sperare ver +speravamo sperare ver +speravano sperare ver +speravi sperare ver +speravo sperare ver +sperder sperdere ver +sperdere sperdere ver +sperduta sperduto adj +sperdute sperduto adj +sperduti sperduto adj +sperduto sperduto adj +spere spera nom +sperequata sperequare ver +sperequato sperequare ver +sperequazione sperequazione nom +sperequazioni sperequazione nom +spererai sperare ver +spererebbe sperare ver +spererebbero sperare ver +spererei sperare ver +sperereste sperare ver +spererà sperare ver +spergiura spergiuro adj +spergiurando spergiurare ver +spergiurare spergiurare ver +spergiurato spergiurare ver +spergiuri spergiuro nom +spergiuro spergiuro nom +spergiurò spergiurare ver +speri sperare ver +speriamo sperare ver +spericolata spericolato adj +spericolate spericolato adj +spericolati spericolato adj +spericolato spericolato adj +sperimenta sperimentare ver +sperimentai sperimentare ver +sperimentale sperimentale adj +sperimentali sperimentale adj +sperimentalismi sperimentalismo nom +sperimentalismo sperimentalismo nom +sperimentalmente sperimentalmente adv +sperimentando sperimentare ver +sperimentandola sperimentare ver +sperimentandole sperimentare ver +sperimentandoli sperimentare ver +sperimentandolo sperimentare ver +sperimentandone sperimentare ver +sperimentandosi sperimentare ver +sperimentandovi sperimentare ver +sperimentano sperimentare ver +sperimentare sperimentare ver +sperimentarla sperimentare ver +sperimentarle sperimentare ver +sperimentarli sperimentare ver +sperimentarlo sperimentare ver +sperimentarne sperimentare ver +sperimentarono sperimentare ver +sperimentarsi sperimentare ver +sperimentasse sperimentare ver +sperimentassero sperimentare ver +sperimentata sperimentare ver +sperimentate sperimentare ver +sperimentati sperimentare ver +sperimentato sperimentare ver +sperimentatore sperimentatore nom +sperimentatori sperimentatore nom +sperimentatrice sperimentatore nom +sperimentava sperimentare ver +sperimentavano sperimentare ver +sperimentazione sperimentazione nom +sperimentazioni sperimentazione nom +sperimenteranno sperimentare ver +sperimenterebbe sperimentare ver +sperimenterebbero sperimentare ver +sperimenterà sperimentare ver +sperimenti sperimentare ver +sperimentiamo sperimentare ver +sperimentino sperimentare ver +sperimento sperimentare ver +sperimentò sperimentare ver +sperino sperare ver +sperma sperma nom +spermaceti spermaceti nom +spermatica spermatico adj +spermatiche spermatico adj +spermatici spermatico adj +spermatico spermatico adj +spermatozoi spermatozoo nom +spermatozoo spermatozoo nom +spermi sperma nom +spermicida spermicida adj +spermicide spermicida adj +spermicidi spermicida adj +spero sperare ver +sperona speronare ver +speronando speronare ver +speronandola speronare ver +speronandole speronare ver +speronandoli speronare ver +speronandolo speronare ver +speronandosi speronare ver +speronano speronare ver +speronare speronare ver +speronarla speronare ver +speronarli speronare ver +speronarlo speronare ver +speronata speronare ver +speronate speronato adj +speronati speronare ver +speronato speronare ver +sperone sperone nom +speroni sperone nom +speronò speronare ver +sperpera sperperare ver +sperperando sperperare ver +sperperano sperperare ver +sperperare sperperare ver +sperperarono sperperare ver +sperperata sperperare ver +sperperate sperperare ver +sperperati sperperare ver +sperperato sperperare ver +sperperava sperperare ver +sperperavano sperperare ver +sperpererà sperperare ver +sperperi sperperio|sperpero nom +sperpero sperpero nom +sperperò sperperare ver +spersa sperdere ver +sperse sperdere ver +spersi sperdere ver +sperso sperdere ver +spersonalizza spersonalizzare ver +spersonalizzante spersonalizzare ver +spersonalizzanti spersonalizzare ver +spersonalizzarci spersonalizzare ver +spersonalizzare spersonalizzare ver +spersonalizzata spersonalizzare ver +spersonalizzate spersonalizzare ver +spersonalizzati spersonalizzare ver +spersonalizzato spersonalizzare ver +spersonalizzava spersonalizzare ver +spersonalizzazione spersonalizzazione nom +spertica sperticare ver +sperticano sperticare ver +sperticare sperticare ver +sperticata sperticare ver +sperticate sperticato adj +sperticati sperticato adj +sperò sperare ver +spesa spesa nom +spesando spesare ver +spesare spesare ver +spesata spesare ver +spesate spesare ver +spesati spesare ver +spesato spesare ver +spese spesa nom +spesero spendere ver +spesi spendere ver +speso spendere ver +spessa spesso adj +spesse spesso adj +spessi spesso adj +spessimetri spessimetro nom +spessimetro spessimetro nom +spessissimo spessissimo adj +spesso spesso adv_sup +spessore spessore nom +spessori spessore nom +spetta spettare ver +spettabile spettabile adj +spettabili spettabile adj +spettacolare spettacolare adj +spettacolari spettacolare adj +spettacolarizzazione spettacolarizzazione nom +spettacolarmente spettacolarmente adv +spettacoli spettacolo nom +spettacolo spettacolo nom +spettacolosa spettacoloso adj +spettacoloso spettacoloso adj +spettando spettare ver +spettano spettare ver +spettante spettare ver +spettanti spettare ver +spettanza spettanza nom +spettanze spettanza nom +spettare spettare ver +spettargli spettare ver +spettarle spettare ver +spettarono spettare ver +spettasse spettare ver +spettassero spettare ver +spettata spettare ver +spettate spettare ver +spettati spettare ver +spettato spettare ver +spettatore spettatore nom +spettatori spettatore adj +spettatrice spettatore adj +spettatrici spettatore nom +spettava spettare ver +spettavano spettare ver +spettegola spettegolare ver +spettegolando spettegolare ver +spettegolano spettegolare ver +spettegolare spettegolare ver +spettegolate spettegolare ver +spettegolato spettegolare ver +spetteranno spettare ver +spetterebbe spettare ver +spetterebbero spettare ver +spetterà spettare ver +spetti spettare ver +spettiamo spettare ver +spettina spettinare ver +spettinare spettinare ver +spettinata spettinare ver +spettinate spettinare ver +spettinati spettinare ver +spettinato spettinare ver +spettino spettare ver +spetto spettare ver +spettrale spettrale adj +spettrali spettrale adj +spettri spettro nom +spettro spettro nom +spettrografi spettrografo nom +spettrografia spettrografia nom +spettrografo spettrografo nom +spettroscopi spettroscopio nom +spettroscopia spettroscopia nom +spettroscopica spettroscopico adj +spettroscopiche spettroscopico adj +spettroscopici spettroscopico adj +spettroscopico spettroscopico adj +spettroscopie spettroscopia nom +spettroscopio spettroscopio nom +spettò spettare ver +speziale speziale nom +speziali speziale nom +spezie spezie nom +spezieria spezieria nom +spezierie spezieria nom +spezza spezzare ver +spezzami spezzare ver +spezzando spezzare ver +spezzandogli spezzare ver +spezzandogliela spezzare ver +spezzandoglielo spezzare ver +spezzandola spezzare ver +spezzandole spezzare ver +spezzandoli spezzare ver +spezzandolo spezzare ver +spezzandone spezzare ver +spezzandosi spezzare ver +spezzano spezzare ver +spezzar spezzare ver +spezzare spezzare ver +spezzargli spezzare ver +spezzarglielo spezzare ver +spezzarla spezzare ver +spezzarle spezzare ver +spezzarli spezzare ver +spezzarlo spezzare ver +spezzarmi spezzare ver +spezzarne spezzare ver +spezzarono spezzare ver +spezzarsi spezzare ver +spezzarti spezzare ver +spezzarvi spezzare ver +spezzasse spezzare ver +spezzassero spezzare ver +spezzata spezzare ver +spezzate spezzato adj +spezzati spezzato adj +spezzatini spezzatino nom +spezzatino spezzatino nom +spezzato spezzare ver +spezzatura spezzatura nom +spezzature spezzatura nom +spezzava spezzare ver +spezzavano spezzare ver +spezzavo spezzare ver +spezzerai spezzare ver +spezzeranno spezzare ver +spezzerebbe spezzare ver +spezzerebbero spezzare ver +spezzerei spezzare ver +spezzeremo spezzare ver +spezzerete spezzare ver +spezzerà spezzare ver +spezzerò spezzare ver +spezzetta spezzettare ver +spezzettamenti spezzettamento nom +spezzettamento spezzettamento nom +spezzettando spezzettare ver +spezzettandosi spezzettare ver +spezzettano spezzettare ver +spezzettare spezzettare ver +spezzettarla spezzettare ver +spezzettarlo spezzettare ver +spezzettarono spezzettare ver +spezzettarsi spezzettare ver +spezzettata spezzettare ver +spezzettate spezzettare ver +spezzettati spezzettare ver +spezzettato spezzettare ver +spezzetterà spezzettare ver +spezzetti spezzettare ver +spezzettò spezzettare ver +spezzi spezzare ver +spezziamo spezzare ver +spezzino spezzare ver +spezzo spezzare ver +spezzonano spezzonare ver +spezzone spezzone nom +spezzoni spezzone nom +spezzono spezzonare ver +spezzò spezzare ver +spia spia nom +spiaccia spiacere ver +spiaccica spiaccicare ver +spiaccicandosi spiaccicare ver +spiaccicare spiaccicare ver +spiaccicarsi spiaccicare ver +spiaccicata spiaccicare ver +spiaccicati spiaccicare ver +spiaccicato spiaccicare ver +spiaccicava spiaccicare ver +spiaccio spiacere ver +spiacciono spiacere ver +spiace spiacere ver +spiacente spiacente adj +spiacenti spiacente adj +spiacere spiacere ver +spiacerebbe spiacere ver +spiacerebbero spiacere ver +spiacerà spiacere ver +spiaceva spiacere ver +spiacevole spiacevole adj +spiacevoli spiacevole adj +spiaciuti spiacere ver +spiaciuto spiacere ver +spiacque spiacere ver +spiagge spiaggia nom +spiaggia spiaggia nom +spiana spianare ver +spianamenti spianamento nom +spianamento spianamento nom +spianando spianare ver +spianandone spianare ver +spianandosi spianare ver +spianano spianare ver +spianare spianare ver +spianargli spianare ver +spianarla spianare ver +spianarle spianare ver +spianarli spianare ver +spianarono spianare ver +spianarsi spianare ver +spianata spianata nom +spianate spianata nom +spianati spianare ver +spianato spianare ver +spianatoia spianatoia nom +spianatrice spianatrice nom +spianava spianare ver +spiando spiare ver +spiandola spiare ver +spiandoli spiare ver +spiandolo spiare ver +spianerà spianare ver +spiano spiano nom +spianta spiantare ver +spiantata spiantato nom +spiantati spiantato adj +spiantato spiantato adj +spianto spianto nom +spianò spianare ver +spiare spiare ver +spiarla spiare ver +spiarle spiare ver +spiarli spiare ver +spiarlo spiare ver +spiarne spiare ver +spiarsi spiare ver +spiarti spiare ver +spiassero spiare ver +spiata spiata nom +spiate spiare ver +spiati spiare ver +spiato spiare ver +spiattella spiattellare ver +spiattellare spiattellare ver +spiattellata spiattellare ver +spiattellate spiattellare ver +spiattellato spiattellare ver +spiava spiare ver +spiavano spiare ver +spiavi spiare ver +spiavo spiare ver +spiazza spiazzare ver +spiazzale spiazzare ver +spiazzali spiazzare ver +spiazzando spiazzare ver +spiazzano spiazzare ver +spiazzante spiazzare ver +spiazzanti spiazzare ver +spiazzare spiazzare ver +spiazzarlo spiazzare ver +spiazzarono spiazzare ver +spiazzata spiazzare ver +spiazzate spiazzare ver +spiazzati spiazzare ver +spiazzato spiazzare ver +spiazzerà spiazzare ver +spiazzi spiazzo nom +spiazzo spiazzo nom +spiazzò spiazzare ver +spicca spiccare ver +spiccala spiccare ver +spiccando spiccare ver +spiccano spiccare ver +spiccante spiccare ver +spiccanti spiccare ver +spiccar spiccare ver +spiccare spiccare ver +spiccargli spiccare ver +spiccarlo spiccare ver +spiccarono spiccare ver +spiccasse spiccare ver +spiccassero spiccare ver +spiccata spiccato adj +spiccatamente spiccatamente adv +spiccate spiccato adj +spiccati spiccato adj +spiccato spiccato adj +spiccava spiccare ver +spiccavano spiccare ver +spicce spiccio adj +spiccheranno spiccare ver +spiccherebbe spiccare ver +spiccherà spiccare ver +spicchi spicchio|spicco nom +spicchino spiccare ver +spicchio spicchio nom +spicci spiccio adj +spiccia spiccio adj +spicciamoci spicciare ver +spicciano spicciare ver +spicciarsi spicciare ver +spiccica spiccicare ver +spiccicare spiccicare ver +spiccicata spiccicare ver +spiccicato spiccicare ver +spiccio spiccio adj +spicciola spicciolo adj +spicciolata spicciolare ver +spicciolati spicciolare ver +spicciolato spicciolare ver +spicciole spicciolo adj +spiccioli spicciolo nom +spicciolo spicciolo adj +spicco spicco nom +spiccò spiccare ver +spicola spicola nom +spicole spicola nom +spider spider nom +spidocchiarsi spidocchiare ver +spie spia nom +spiedi spiedo nom +spiedini spiedino nom +spiedino spiedino nom +spiedo spiedo nom +spiega spiegare ver +spiegabile spiegabile adj +spiegabili spiegabile adj +spiegacelo spiegare ver +spiegaci spiegare ver +spiegagli spiegare ver +spiegai spiegare ver +spiegale spiegare ver +spiegalo spiegare ver +spiegamelo spiegare ver +spiegamenti spiegamento nom +spiegamento spiegamento nom +spiegami spiegare ver +spiegando spiegare ver +spiegandoci spiegare ver +spiegandogli spiegare ver +spiegandola spiegare ver +spiegandole spiegare ver +spiegandoli spiegare ver +spiegandolo spiegare ver +spiegandomi spiegare ver +spiegandone spiegare ver +spiegandosi spiegare ver +spiegandoti spiegare ver +spiegano spiegare ver +spiegante spiegare ver +spiegar spiegare ver +spiegarcelo spiegare ver +spiegarci spiegare ver +spiegare spiegare ver +spiegargli spiegare ver +spiegargliela spiegare ver +spiegargliele spiegare ver +spiegarglieli spiegare ver +spiegarglielo spiegare ver +spiegargliene spiegare ver +spiegarla spiegare ver +spiegarle spiegare ver +spiegarli spiegare ver +spiegarlo spiegare ver +spiegarmela spiegare ver +spiegarmelo spiegare ver +spiegarmene spiegare ver +spiegarmi spiegare ver +spiegarne spiegare ver +spiegarono spiegare ver +spiegarselo spiegare ver +spiegarsene spiegare ver +spiegarsi spiegare ver +spiegartela spiegare ver +spiegartele spiegare ver +spiegartelo spiegare ver +spiegarti spiegare ver +spiegarvelo spiegare ver +spiegarvi spiegare ver +spiegasse spiegare ver +spiegassero spiegare ver +spiegassi spiegare ver +spiegaste spiegare ver +spiegasti spiegare ver +spiegata spiegare ver +spiegate spiegare ver +spiegateci spiegare ver +spiegategli spiegare ver +spiegatelo spiegare ver +spiegatemelo spiegare ver +spiegatemi spiegare ver +spiegatevi spiegare ver +spiegati spiegare ver +spiegato spiegare ver +spiegava spiegare ver +spiegavano spiegare ver +spiegavo spiegare ver +spiegazione spiegazione nom +spiegazioni spiegazione nom +spiegazzata spiegazzare ver +spiegazzate spiegazzare ver +spiegazzati spiegazzare ver +spiegazzato spiegazzare ver +spiegherai spiegare ver +spiegheranno spiegare ver +spiegherebbe spiegare ver +spiegherebbero spiegare ver +spiegherei spiegare ver +spiegheremmo spiegare ver +spiegheremo spiegare ver +spieghereste spiegare ver +spiegheresti spiegare ver +spiegherete spiegare ver +spiegherà spiegare ver +spiegherò spiegare ver +spieghi spiegare ver +spieghiamo spiegare ver +spieghiamoci spiegare ver +spieghiamolo spiegare ver +spieghiate spiegare ver +spieghino spiegare ver +spiego spiegare ver +spiegò spiegare ver +spierà spiare ver +spietata spietato adj +spietate spietato adj +spietati spietato adj +spietato spietato adj +spiffera spifferare ver +spifferano spifferare ver +spifferare spifferare ver +spifferargli spifferare ver +spifferarlo spifferare ver +spifferato spifferare ver +spifferava spifferare ver +spiffererà spifferare ver +spifferi spiffero nom +spiffero spiffero nom +spifferò spifferare ver +spiga spiga nom +spigai spigare ver +spigando spigare ver +spigandone spigare ver +spigare spigare ver +spigarle spigare ver +spigarmi spigare ver +spigata spigare ver +spigato spigare ver +spighe spiga nom +spighetta spighetta nom +spighette spighetta nom +spighi spigo nom +spigliata spigliato adj +spigliate spigliato adj +spigliatezza spigliatezza nom +spigliati spigliato adj +spigliato spigliato adj +spigo spigo nom +spigola spigola nom +spigolando spigolare ver +spigolare spigolare ver +spigolatrice spigolatore nom +spigolatrici spigolatore nom +spigolatura spigolatura nom +spigolature spigolatura nom +spigole spigola nom +spigoli spigolo nom +spigolino spigolare ver +spigolo spigolo nom +spigolosa spigoloso adj +spigolose spigoloso adj +spigolosi spigoloso adj +spigoloso spigoloso adj +spigonardo spigonardo nom +spigò spigare ver +spii spiare ver +spilla spilla|spillo nom +spillando spillare ver +spillandogli spillare ver +spillane spillare ver +spillano spillare ver +spillar spillare ver +spillare spillare ver +spillargli spillare ver +spillarle spillare ver +spillata spillare ver +spillate spillare ver +spillati spillare ver +spillatico spillatico adj +spillato spillare ver +spillava spillare ver +spillavano spillare ver +spille spilla|spillo nom +spillerà spillare ver +spilli spillo nom +spillo spillo nom +spillone spillone nom +spilloni spillone nom +spillò spillare ver +spilorceria spilorceria nom +spilorcia spilorcio adj +spilorcio spilorcio adj +spilungona spilungone nom +spilungone spilungone nom +spilungoni spilungone nom +spina spina|spino nom +spinaci spinacio nom +spinacio spinacio nom +spinale spinale adj +spinali spinale adj +spinare spinare ver +spinarelli spinarello nom +spinarello spinarello nom +spinaroli spinarolo nom +spinarolo spinarolo nom +spinasse spinare ver +spinassi spinare ver +spinata spinato adj +spinate spinato adj +spinati spinato adj +spinato spinato adj +spine spina|spino nom +spinelli spinello nom +spinello spinello nom +spineti spineto nom +spineto spineto nom +spinetta spinetta nom +spinette spinetta nom +spinga spingere ver +spingano spingere ver +spingarda spingarda nom +spingarde spingarda nom +spinge spingere ver +spingendo spingere ver +spingendoci spingere ver +spingendogli spingere ver +spingendola spingere ver +spingendole spingere ver +spingendoli spingere ver +spingendolo spingere ver +spingendomi spingere ver +spingendone spingere ver +spingendosi spingere ver +spingendovi spingere ver +spingente spingere ver +spingenti spingere ver +spinger spingere ver +spingeranno spingere ver +spingerci spingere ver +spingere spingere ver +spingerebbe spingere ver +spingerebbero spingere ver +spingerei spingere ver +spingerla spingere ver +spingerle spingere ver +spingerli spingere ver +spingerlo spingere ver +spingermi spingere ver +spingerne spingere ver +spingersi spingere ver +spingerti spingere ver +spingervi spingere ver +spingerà spingere ver +spingerò spingere ver +spingesse spingere ver +spingessero spingere ver +spingessimo spingere ver +spingete spingere ver +spingetele spingere ver +spingeva spingere ver +spingevamo spingere ver +spingevano spingere ver +spingi spingere ver +spingiamo spingere ver +spingo spingere ver +spingono spingere ver +spini spino adj +spinnaker spinnaker nom +spino spino adj +spinone spinone nom +spinoni spinone nom +spinosa spinoso adj +spinose spinoso adj +spinosi spinoso adj +spinoso spinoso adj +spinotti spinotto nom +spinotto spinotto nom +spinse spingere ver +spinsero spingere ver +spinsi spingere ver +spinta spinta nom +spintarella spintarella nom +spintarelle spintarella nom +spinte spingere ver +spinterogeni spinterogeno nom +spinterogeno spinterogeno nom +spinterometri spinterometro nom +spinterometro spinterometro nom +spinti spingere ver +spinto spingere ver +spintona spintonare ver +spintonando spintonare ver +spintonare spintonare ver +spintonata spintonare ver +spintonato spintonare ver +spintoni spintonare ver +spintonò spintonare ver +spinò spinare ver +spio spiare ver +spiombi spiombare ver +spiona spione nom +spionaggi spionaggio nom +spionaggio spionaggio nom +spioncini spioncino nom +spioncino spioncino nom +spione spione nom +spioni spione nom +spionistica spionistico adj +spionistiche spionistico adj +spionistici spionistico adj +spionistico spionistico adj +spiova spiovere ver +spiove spiovere ver +spiovente spiovente adj +spioventi spiovente nom +spiovere spiovere ver +spira spira nom +spiragli spiraglio nom +spiraglio spiraglio nom +spirala spirare ver +spirale spirale nom +spirali spirale adj +spiralo spirare ver +spirando spirare ver +spirano spirare ver +spirante spirante adj +spiranti spirante nom +spirar spirare ver +spirare spirare ver +spirarono spirare ver +spirasse spirare ver +spirata spirare ver +spirate spirare ver +spirati spirare ver +spirato spirare ver +spirava spirare ver +spiravano spirare ver +spire spira nom +spirerà spirare ver +spiri spiro nom +spirino spirare ver +spiritata spiritato adj +spiritate spiritato adj +spiritati spiritato adj +spiritato spiritato adj +spiritelli spiritello nom +spiritello spiritello nom +spiriti spirito nom +spiritica spiritico adj +spiritiche spiritico adj +spiritici spiritico adj +spiritico spiritico adj +spiritismo spiritismo nom +spiritista spiritista nom +spiritiste spiritista nom +spiritisti spiritista nom +spiritistica spiritistico adj +spiritistiche spiritistico adj +spiritistici spiritistico adj +spirito spirito nom +spiritosa spiritoso adj +spiritosaggine spiritosaggine nom +spiritosaggini spiritosaggine nom +spiritose spiritoso adj +spiritosi spiritoso adj +spiritoso spiritoso adj +spiritual spiritual nom +spirituale spirituale adj +spirituali spirituale adj +spiritualismi spiritualismo nom +spiritualismo spiritualismo nom +spiritualista spiritualista nom +spiritualiste spiritualista nom +spiritualisti spiritualista nom +spiritualità spiritualità nom +spiritualizzante spiritualizzare ver +spiritualizzare spiritualizzare ver +spiritualizzata spiritualizzare ver +spiritualizzato spiritualizzare ver +spiritualizzazione spiritualizzazione nom +spiritualmente spiritualmente adv +spiro spiro nom +spirocheta spirocheta nom +spirochete spirocheta nom +spiroidale spiroidale adj +spirometria spirometria nom +spirometrie spirometria nom +spirti spirto nom +spirto spirto nom +spirò spirare ver +spiumare spiumare ver +spiumato spiumare ver +spizzica spizzicare ver +spizzicando spizzicare ver +spizzicare spizzicare ver +spizzichi spizzico nom +spizzichino spizzicare ver +spizzico spizzico nom +spiò spiare ver +splashdown splashdown nom +spleen spleen nom +splendida splendido adj +splendide splendido adj +splendidi splendido adj +splendido splendido adj +splendore splendore nom +splendori splendore nom +splenectomia splenectomia nom +splenica splenico adj +spleniche splenico adj +splenici splenico adj +splenico splenico adj +splenomegalia splenomegalia nom +splenomegalie splenomegalia nom +spocchia spocchia nom +spocchiosa spocchioso adj +spocchiose spocchioso adj +spocchiosi spocchioso adj +spocchioso spocchioso adj +spodesta spodestare ver +spodestando spodestare ver +spodestano spodestare ver +spodestare spodestare ver +spodestarla spodestare ver +spodestarlo spodestare ver +spodestarono spodestare ver +spodestassero spodestare ver +spodestata spodestare ver +spodestate spodestare ver +spodestati spodestare ver +spodestato spodestare ver +spodesterà spodestare ver +spodestò spodestare ver +spogli spoglio adj +spoglia spoglio adj +spogliai spogliare ver +spogliamoci spogliare ver +spogliando spogliare ver +spogliandola spogliare ver +spogliandoli spogliare ver +spogliandolo spogliare ver +spogliandosi spogliare ver +spogliano spogliare ver +spogliante spogliare ver +spoglianti spogliare ver +spogliar spogliare ver +spogliarci spogliare ver +spogliare spogliare ver +spogliarelli spogliarello nom +spogliarellista spogliarellista nom +spogliarelliste spogliarellista nom +spogliarello spogliarello nom +spogliarla spogliare ver +spogliarle spogliare ver +spogliarli spogliare ver +spogliarlo spogliare ver +spogliarmi spogliare ver +spogliarne spogliare ver +spogliarono spogliare ver +spogliarsi spogliare ver +spogliarvi spogliare ver +spogliasse spogliare ver +spogliassero spogliare ver +spogliata spogliare ver +spogliate spogliare ver +spogliati spogliare ver +spogliato spogliare ver +spogliatoi spogliatoio nom +spogliatoio spogliatoio nom +spogliava spogliare ver +spogliavano spogliare ver +spoglie spoglia nom +spoglieranno spogliare ver +spoglierei spogliare ver +spoglierà spogliare ver +spoglio spoglio nom +spogliò spogliare ver +spoiler spoiler nom +spola spola nom +spolatrice spolatrice nom +spole spola nom +spoletta spoletta nom +spolette spoletta nom +spoliazione spoliazione nom +spoliazioni spoliazione nom +spolpa spolpare ver +spolpano spolpare ver +spolpare spolpare ver +spolpargli spolpare ver +spolpata spolpare ver +spolpate spolpare ver +spolpati spolpare ver +spolpato spolpare ver +spolpava spolpare ver +spolpò spolpare ver +spolvera spolverare ver +spolverando spolverare ver +spolverandoli spolverare ver +spolverano spolverare ver +spolverare spolverare ver +spolverarlo spolverare ver +spolverata spolverata nom +spolverate spolverare ver +spolverati spolverare ver +spolverato spolverare ver +spolveratura spolveratura nom +spolveri spolvero nom +spolverini spolverino nom +spolverino spolverino nom +spolverizzata spolverizzare ver +spolvero spolvero nom +sponda sponda nom +spondaica spondaico adj +spondaico spondaico adj +sponde sponda nom +spondei spondeo nom +spondeo spondeo nom +spondilite spondilite nom +spondiliti spondilite nom +spondilo spondilo nom +spongia spongia nom +spongiforme spongiforme adj +spongiformi spongiforme adj +sponsale sponsale adj +sponsali sponsale adj +sponsor sponsor nom +sponsorizza sponsorizzare ver +sponsorizzando sponsorizzare ver +sponsorizzano sponsorizzare ver +sponsorizzante sponsorizzare ver +sponsorizzanti sponsorizzare ver +sponsorizzare sponsorizzare ver +sponsorizzarla sponsorizzare ver +sponsorizzarlo sponsorizzare ver +sponsorizzarne sponsorizzare ver +sponsorizzarono sponsorizzare ver +sponsorizzarsi sponsorizzare ver +sponsorizzasse sponsorizzare ver +sponsorizzassero sponsorizzare ver +sponsorizzata sponsorizzare ver +sponsorizzate sponsorizzare ver +sponsorizzati sponsorizzare ver +sponsorizzato sponsorizzare ver +sponsorizzava sponsorizzare ver +sponsorizzavano sponsorizzare ver +sponsorizzazione sponsorizzazione nom +sponsorizzazioni sponsorizzazione nom +sponsorizzerà sponsorizzare ver +sponsorizzi sponsorizzare ver +sponsorizzino sponsorizzare ver +sponsorizzo sponsorizzare ver +sponsorizzò sponsorizzare ver +spontanea spontaneo adj +spontaneamente spontaneamente adv +spontanee spontaneo adj +spontanei spontaneo adj +spontaneismo spontaneismo nom +spontaneista spontaneista nom +spontaneisti spontaneista nom +spontaneità spontaneità nom +spontaneo spontaneo adj +spopola spopolare ver +spopolamento spopolamento nom +spopolando spopolare ver +spopolandola spopolare ver +spopolandosi spopolare ver +spopolano spopolare ver +spopolare spopolare ver +spopolarono spopolare ver +spopolarsi spopolare ver +spopolata spopolare ver +spopolate spopolare ver +spopolati spopolare ver +spopolato spopolare ver +spopolava spopolare ver +spopolavano spopolare ver +spopolerà spopolare ver +spopoli spopolare ver +spopolo spopolare ver +spopolò spopolare ver +spora spora nom +sporadica sporadico adj +sporadicamente sporadicamente adv +sporadiche sporadico adj +sporadici sporadico adj +sporadicità sporadicità nom +sporadico sporadico adj +sporangi sporangio nom +sporangio sporangio nom +sporca sporco adj +sporcacciona sporcaccione nom +sporcaccione sporcaccione adj +sporcaccioni sporcaccione nom +sporcando sporcare ver +sporcandola sporcare ver +sporcandolo sporcare ver +sporcandosi sporcare ver +sporcano sporcare ver +sporcante sporcare ver +sporcanti sporcare ver +sporcarci sporcare ver +sporcare sporcare ver +sporcargli sporcare ver +sporcarli sporcare ver +sporcarlo sporcare ver +sporcarmi sporcare ver +sporcarsi sporcare ver +sporcarti sporcare ver +sporcasse sporcare ver +sporcassero sporcare ver +sporcata sporcare ver +sporcate sporcare ver +sporcati sporcare ver +sporcato sporcare ver +sporcava sporcare ver +sporche sporco adj +sporcherebbe sporcare ver +sporcherebbero sporcare ver +sporcherà sporcare ver +sporchi sporco adj +sporchino sporcare ver +sporcizia sporcizia nom +sporcizie sporcizia nom +sporco sporco adj +sporcò sporcare ver +spore spora nom +sporga sporgere ver +sporge sporgere ver +sporgendo sporgere ver +sporgendosi sporgere ver +sporgente sporgente adj +sporgenti sporgente adj +sporgenza sporgenza nom +sporgenze sporgenza nom +sporgere sporgere ver +sporgersi sporgere ver +sporgerà sporgere ver +sporgesse sporgere ver +sporgessero sporgere ver +sporgeva sporgere ver +sporgevano sporgere ver +sporgo sporgere ver +sporgono sporgere ver +sporogonia sporogonia nom +sporse sporgere ver +sporsero sporgere ver +sport sport nom +sporta sporgere ver +sporte sporta nom +sportelli sportello nom +sportellista sportellista nom +sportellisti sportellista nom +sportello sportello nom +sporti sporto nom +sportiva sportivo adj +sportivamente sportivamente adv +sportive sportivo adj +sportivi sportivo adj +sportività sportività nom +sportivo sportivo adj +sporto sporgere ver +sportsman sportsman nom +sportsmen sportsmen nom +sportula sportula nom +sporulazione sporulazione nom +sposa sposa|sposo nom +sposai sposare ver +sposalizi sposalizio nom +sposalizio sposalizio nom +sposami sposare ver +sposammo sposare ver +sposando sposare ver +sposandola sposare ver +sposandole sposare ver +sposandolo sposare ver +sposandone sposare ver +sposandosi sposare ver +sposandovi sposare ver +sposano sposare ver +sposar sposare ver +sposarci sposare ver +sposare sposare ver +sposarla sposare ver +sposarle sposare ver +sposarli sposare ver +sposarlo sposare ver +sposarmi sposare ver +sposarne sposare ver +sposarono sposare ver +sposarsela sposare ver +sposarsi sposare ver +sposarti sposare ver +sposasi sposare ver +sposasse sposare ver +sposassero sposare ver +sposata sposare ver +sposate sposare ver +sposatesi sposare ver +sposatevi sposare ver +sposati sposare ver +sposato sposare ver +sposava sposare ver +sposavano sposare ver +spose sposa|sposo nom +sposerai sposare ver +sposeranno sposare ver +sposerebbe sposare ver +sposerei sposare ver +sposeremo sposare ver +sposeresti sposare ver +sposerà sposare ver +sposerò sposare ver +sposi sposo nom +sposiamo sposare ver +sposiamoci sposare ver +sposino sposare ver +sposo sposo nom +spossa spossare ver +spossamento spossamento nom +spossano spossare ver +spossante spossante adj +spossanti spossante adj +spossare spossare ver +spossata spossare ver +spossate spossato adj +spossatezza spossatezza nom +spossati spossare ver +spossato spossare ver +spossavano spossare ver +spossessarsene spossessare ver +spossessata spossessare ver +spossessati spossessare ver +spossessato spossessare ver +sposta spostare ver +spostaci spostare ver +spostai spostare ver +spostala spostare ver +spostale spostare ver +spostali spostare ver +spostalo spostare ver +spostamenti spostamento nom +spostamento spostamento nom +spostammo spostare ver +spostando spostare ver +spostandoci spostare ver +spostandola spostare ver +spostandole spostare ver +spostandoli spostare ver +spostandolo spostare ver +spostandomi spostare ver +spostandone spostare ver +spostandosi spostare ver +spostandovi spostare ver +spostano spostare ver +spostante spostare ver +spostar spostare ver +spostarci spostare ver +spostare spostare ver +spostarla spostare ver +spostarle spostare ver +spostarli spostare ver +spostarlo spostare ver +spostarmi spostare ver +spostarne spostare ver +spostarono spostare ver +spostarsene spostare ver +spostarsi spostare ver +spostarti spostare ver +spostarvi spostare ver +spostasi spostare ver +spostasse spostare ver +spostassero spostare ver +spostassi spostare ver +spostassimo spostare ver +spostaste spostare ver +spostata spostare ver +spostate spostare ver +spostatela spostare ver +spostatele spostare ver +spostateli spostare ver +spostatelo spostare ver +spostatesi spostare ver +spostatevi spostare ver +spostati spostare ver +spostato spostare ver +spostava spostare ver +spostavamo spostare ver +spostavano spostare ver +spostavo spostare ver +sposterai spostare ver +sposteranno spostare ver +sposterebbe spostare ver +sposterebbero spostare ver +sposterei spostare ver +sposteremo spostare ver +sposteresti spostare ver +sposterà spostare ver +sposterò spostare ver +sposti spostare ver +spostiamo spostare ver +spostiamoci spostare ver +spostiamola spostare ver +spostiamole spostare ver +spostiamoli spostare ver +spostiamolo spostare ver +spostino spostare ver +sposto spostare ver +spostò spostare ver +sposò sposare ver +spot spot nom +spranga spranga nom +sprangando sprangare ver +sprangare sprangare ver +sprangata sprangare ver +sprangate sprangare ver +sprangati sprangare ver +sprangato sprangare ver +spranghe spranga nom +spranghi sprangare ver +spray spray nom +sprazzi sprazzo nom +sprazzo sprazzo nom +spreca sprecare ver +sprecando sprecare ver +sprecano sprecare ver +sprecar sprecare ver +sprecarci sprecare ver +sprecare sprecare ver +sprecarla sprecare ver +sprecarle sprecare ver +sprecarli sprecare ver +sprecarlo sprecare ver +sprecarne sprecare ver +sprecarono sprecare ver +sprecarsi sprecare ver +sprecasse sprecare ver +sprecassero sprecare ver +sprecassi sprecare ver +sprecassimo sprecare ver +sprecata sprecare ver +sprecate sprecare ver +sprecati sprecare ver +sprecato sprecare ver +sprecava sprecare ver +sprecavano sprecare ver +sprecheranno sprecare ver +sprecherebbe sprecare ver +sprecherebbero sprecare ver +sprecherei sprecare ver +sprecheremmo sprecare ver +sprecherà sprecare ver +sprecherò sprecare ver +sprechi spreco nom +sprechiamo sprecare ver +sprechino sprecare ver +spreco spreco nom +sprecona sprecone nom +sprecone sprecone adj +spreconi sprecone nom +sprecò sprecare ver +spregevole spregevole adj +spregevoli spregevole adj +spregiare spregiare ver +spregiata spregiare ver +spregiati spregiare ver +spregiativa spregiativo adj +spregiative spregiativo adj +spregiativi spregiativo adj +spregiativo spregiativo adj +spregiato spregiare ver +spregiatore spregiatore nom +spregiatori spregiatore nom +spregiava spregiare ver +spregio spregio nom +spregiudicata spregiudicato adj +spregiudicate spregiudicato adj +spregiudicatezza spregiudicatezza nom +spregiudicatezze spregiudicatezza nom +spregiudicati spregiudicato adj +spregiudicato spregiudicato adj +spregiò spregiare ver +sprema spremere ver +spreme spremere ver +spremendo spremere ver +spremendosi spremere ver +spremere spremere ver +spremerli spremere ver +spremerlo spremere ver +spremerne spremere ver +spremersi spremere ver +spremerà spremere ver +spremete spremere ver +spremevano spremere ver +spremi spremere ver +spremiagrumi spremiagrumi nom +spremiamo spremere ver +spremiti spremere ver +spremitura spremitura nom +spremiture spremitura nom +spremo spremere ver +spremono spremere ver +spremuta spremuta nom +spremute spremere ver +spremuti spremere ver +spremuto spremere ver +spreta spretarsi ver +spretato spretarsi ver +spreti spretarsi ver +sprezza sprezzare ver +sprezzami sprezzare ver +sprezzando sprezzare ver +sprezzano sprezzare ver +sprezzante sprezzante adj +sprezzanti sprezzante adj +sprezzata sprezzare ver +sprezzato sprezzare ver +sprezzi sprezzo nom +sprezzo sprezzo nom +sprezzò sprezzare ver +sprigiona sprigionare ver +sprigionando sprigionare ver +sprigionandosi sprigionare ver +sprigionano sprigionare ver +sprigionanti sprigionare ver +sprigionare sprigionare ver +sprigionarono sprigionare ver +sprigionarsi sprigionare ver +sprigionasse sprigionare ver +sprigionata sprigionare ver +sprigionate sprigionare ver +sprigionatesi sprigionare ver +sprigionati sprigionare ver +sprigionato sprigionare ver +sprigionava sprigionare ver +sprigionavano sprigionare ver +sprigionerebbe sprigionare ver +sprigionerà sprigionare ver +sprigioni sprigionare ver +sprigionò sprigionare ver +sprint sprint adj +sprinta sprintare ver +sprintano sprintare ver +sprintare sprintare ver +sprinter sprinter nom +sprizza sprizzare ver +sprizzando sprizzare ver +sprizzano sprizzare ver +sprizzante sprizzare ver +sprizzanti sprizzare ver +sprizzare sprizzare ver +sprizzata sprizzare ver +sprizzato sprizzare ver +sprizzava sprizzare ver +sprizzavano sprizzare ver +sprizzi sprizzo nom +sprizzo sprizzo nom +sprizzò sprizzare ver +sprofonda sprofondare ver +sprofondamenti sprofondamento nom +sprofondamento sprofondamento nom +sprofondando sprofondare ver +sprofondandola sprofondare ver +sprofondano sprofondare ver +sprofondarci sprofondare ver +sprofondare sprofondare ver +sprofondarlo sprofondare ver +sprofondarono sprofondare ver +sprofondarsi sprofondare ver +sprofondarvi sprofondare ver +sprofondasse sprofondare ver +sprofondata sprofondare ver +sprofondate sprofondare ver +sprofondati sprofondare ver +sprofondato sprofondare ver +sprofondava sprofondare ver +sprofondavano sprofondare ver +sprofonderanno sprofondare ver +sprofonderebbe sprofondare ver +sprofonderà sprofondare ver +sprofondi sprofondare ver +sprofondino sprofondare ver +sprofondo sprofondare ver +sprofondò sprofondare ver +sproloqui sproloquio nom +sproloquia sproloquiare ver +sproloquiando sproloquiare ver +sproloquiano sproloquiare ver +sproloquiare sproloquiare ver +sproloquiato sproloquiare ver +sproloquierà sproloquiare ver +sproloquio sproloquio nom +sprona spronare ver +spronando spronare ver +spronandola spronare ver +spronandoli spronare ver +spronandolo spronare ver +spronano spronare ver +spronarci spronare ver +spronare spronare ver +spronarla spronare ver +spronarli spronare ver +spronarlo spronare ver +spronarono spronare ver +spronasse spronare ver +spronata spronare ver +spronate spronare ver +spronati spronare ver +spronato spronare ver +spronava spronare ver +spronavano spronare ver +sprone sprone nom +sproneranno spronare ver +spronerà spronare ver +sproni sprone nom +sprono spronare ver +spronò spronare ver +sproporzionata sproporzionato adj +sproporzionatamente sproporzionatamente adv +sproporzionate sproporzionato adj +sproporzionati sproporzionato adj +sproporzionato sproporzionato adj +sproporzione sproporzione nom +sproporzioni sproporzione nom +spropositata spropositato adj +spropositate spropositato adj +spropositati spropositato adj +spropositato spropositare ver +spropositi sproposito nom +sproposito sproposito nom +sprovveduta sprovveduto adj +sprovvedute sprovveduto adj +sprovveduti sprovveduto adj +sprovveduto sprovveduto adj +sprovvista sprovvedere ver +sprovviste sprovvedere ver +sprovvisti sprovvedere ver +sprovvisto sprovvedere ver +spruzza spruzzare ver +spruzzando spruzzare ver +spruzzandogli spruzzare ver +spruzzandola spruzzare ver +spruzzandole spruzzare ver +spruzzandolo spruzzare ver +spruzzandone spruzzare ver +spruzzano spruzzare ver +spruzzare spruzzare ver +spruzzarla spruzzare ver +spruzzarono spruzzare ver +spruzzarsela spruzzare ver +spruzzarsi spruzzare ver +spruzzata spruzzare ver +spruzzate spruzzata nom +spruzzati spruzzare ver +spruzzato spruzzare ver +spruzzatore spruzzatore nom +spruzzatori spruzzatore nom +spruzzava spruzzare ver +spruzzavano spruzzare ver +spruzzerà spruzzare ver +spruzzetta spruzzetta nom +spruzzette spruzzetta nom +spruzzi spruzzo nom +spruzzino spruzzare ver +spruzzo spruzzo nom +spruzzò spruzzare ver +spudorata spudorato adj +spudorate spudorato adj +spudoratezza spudoratezza nom +spudorati spudorato adj +spudorato spudorato adj +spugna spugna nom +spugnatura spugnatura nom +spugnature spugnatura nom +spugne spugna|spugne nom +spugnetta spugnetta nom +spugnette spugnetta nom +spugnola spugnola nom +spugnole spugnola nom +spugnosa spugnoso adj +spugnose spugnoso adj +spugnosi spugnoso adj +spugnosità spugnosità nom +spugnoso spugnoso adj +spulcerò spulciare ver +spulci spulciare ver +spulcia spulciare ver +spulciamo spulciare ver +spulciando spulciare ver +spulciandomi spulciare ver +spulciandosi spulciare ver +spulciano spulciare ver +spulciarci spulciare ver +spulciare spulciare ver +spulciarla spulciare ver +spulciarle spulciare ver +spulciarli spulciare ver +spulciarmele spulciare ver +spulciarmi spulciare ver +spulciarsele spulciare ver +spulciarsi spulciare ver +spulciarti spulciare ver +spulciarvi spulciare ver +spulciasse spulciare ver +spulciata spulciare ver +spulciate spulciare ver +spulciati spulciare ver +spulciato spulciare ver +spulcio spulciare ver +spulo spulare ver +spuma spuma nom +spumante spumante adj +spumanti spumante adj +spume spuma nom +spumeggia spumeggiare ver +spumeggiando spumeggiare ver +spumeggiano spumeggiare ver +spumeggiante spumeggiante adj +spumeggianti spumeggiante adj +spumeggiar spumeggiare ver +spumeggiava spumeggiare ver +spumone spumone nom +spumoni spumone nom +spumosa spumoso adj +spumose spumoso adj +spumosi spumoso adj +spumoso spumoso adj +spunta spuntare ver +spuntai spuntare ver +spuntando spuntare ver +spuntandola spuntare ver +spuntano spuntare ver +spuntante spuntare ver +spuntanti spuntare ver +spuntar spuntare ver +spuntare spuntare ver +spuntarla spuntare ver +spuntarono spuntare ver +spuntarsi spuntare ver +spuntasse spuntare ver +spuntassero spuntare ver +spuntata spuntare ver +spuntate spuntare ver +spuntati spuntare ver +spuntato spuntare ver +spuntatura spuntatura nom +spuntature spuntatura nom +spuntava spuntare ver +spuntavano spuntare ver +spunte spunta nom +spunterai spuntare ver +spunteranno spuntare ver +spunterebbe spuntare ver +spunterebbero spuntare ver +spunterà spuntare ver +spunti spunto nom +spuntiamo spuntare ver +spuntini spuntino nom +spuntino spuntino nom +spunto spunto nom +spuntone spuntone nom +spuntoni spuntone nom +spuntò spuntare ver +spunzone spunzone nom +spunzoni spunzone nom +spurgare spurgare ver +spurgata spurgare ver +spurgato spurgare ver +spurghi spurgo nom +spurgo spurgo nom +spuri spurio adj +spuria spurio adj +spurie spurio adj +spurio spurio adj +sputa sputare ver +sputacchiante sputacchiare ver +sputacchiarono sputacchiare ver +sputacchiati sputacchiare ver +sputacchiera sputacchiera nom +sputacchiere sputacchiera nom +sputacchina sputacchina nom +sputacchine sputacchina nom +sputaci sputare ver +sputai sputare ver +sputando sputare ver +sputandogli sputare ver +sputandole sputare ver +sputandolo sputare ver +sputano sputare ver +sputante sputare ver +sputar sputare ver +sputarci sputare ver +sputare sputare ver +sputargli sputare ver +sputarla sputare ver +sputarle sputare ver +sputarli sputare ver +sputarlo sputare ver +sputarmi sputare ver +sputarono sputare ver +sputarsi sputare ver +sputasentenze sputasentenze nom +sputasse sputare ver +sputata sputare ver +sputate sputare ver +sputatemi sputare ver +sputati sputare ver +sputato sputare ver +sputava sputare ver +sputavano sputare ver +sputavo sputare ver +sputerà sputare ver +sputerò sputare ver +sputi sputo nom +sputiamo sputare ver +sputnik sputnik nom +sputo sputo nom +sputtana sputtanare ver +sputtanano sputtanare ver +sputtanarci sputtanare ver +sputtanare sputtanare ver +sputtanarlo sputtanare ver +sputtanarsi sputtanare ver +sputtanarti sputtanare ver +sputtanata sputtanare ver +sputtanati sputtanare ver +sputtanato sputtanare ver +sputò sputare ver +squaderna squadernare ver +squadernata squadernare ver +squadernato squadernare ver +squadra squadra nom +squadraccia squadraccia nom +squadrando squadrare ver +squadranti squadrare ver +squadrare squadrare ver +squadrata squadrare ver +squadrate squadrare ver +squadrati squadrare ver +squadrato squadrare ver +squadratura squadratura nom +squadrature squadratura nom +squadre squadra nom +squadri squadro nom +squadriglia squadriglia nom +squadriglie squadriglia nom +squadrismo squadrismo nom +squadrista squadrista nom +squadriste squadrista nom +squadristi squadrista nom +squadro squadro nom +squadrone squadrone nom +squadroni squadrone nom +squaglia squagliare ver +squagliano squagliare ver +squagliare squagliare ver +squagliarsela squagliare ver +squagliarsi squagliare ver +squagliata squagliare ver +squagliato squagliare ver +squali squalo nom +squalifica squalifica nom +squalificando squalificare ver +squalificandolo squalificare ver +squalificano squalificare ver +squalificante squalificare ver +squalificanti squalificare ver +squalificare squalificare ver +squalificarla squalificare ver +squalificarli squalificare ver +squalificarlo squalificare ver +squalificarono squalificare ver +squalificata squalificare ver +squalificate squalificare ver +squalificati squalificare ver +squalificato squalificare ver +squalifiche squalifica nom +squalificheranno squalificare ver +squalificherebbe squalificare ver +squalifichino squalificare ver +squalificò squalificare ver +squallida squallido adj +squallide squallido adj +squallidi squallido adj +squallido squallido adj +squallore squallore nom +squallori squallore nom +squalo squalo nom +squama squama nom +squamata squamare ver +squamate squamato adj +squamati squamato adj +squamato squamare ver +squame squama nom +squamiforme squamiforme adj +squamiformi squamiforme adj +squamo squamare ver +squamosa squamoso adj +squamose squamoso adj +squamosi squamoso adj +squamoso squamoso adj +squarcerà squarciare ver +squarci squarcio nom +squarcia squarciare ver +squarciagola squarciagola adv +squarciami squarciare ver +squarciando squarciare ver +squarciandogli squarciare ver +squarciandola squarciare ver +squarciandolo squarciare ver +squarciandone squarciare ver +squarciandosi squarciare ver +squarciano squarciare ver +squarciare squarciare ver +squarciargli squarciare ver +squarciarono squarciare ver +squarciarsi squarciare ver +squarciasse squarciare ver +squarciata squarciare ver +squarciate squarciare ver +squarciati squarciare ver +squarciato squarciare ver +squarciava squarciare ver +squarciavano squarciare ver +squarcino squarciare ver +squarcio squarcio nom +squarciò squarciare ver +squarta squartare ver +squartai squartare ver +squartando squartare ver +squartandogli squartare ver +squartandola squartare ver +squartandoli squartare ver +squartandolo squartare ver +squartano squartare ver +squartante squartare ver +squartare squartare ver +squartarle squartare ver +squartarlo squartare ver +squartarono squartare ver +squartata squartare ver +squartate squartare ver +squartati squartare ver +squartato squartare ver +squartatore squartatore nom +squartatori squartatore nom +squartatrice squartatore nom +squartava squartare ver +squarti squartare ver +squarto squartare ver +squartò squartare ver +squassa squassare ver +squassando squassare ver +squassano squassare ver +squassanti squassare ver +squassare squassare ver +squassarono squassare ver +squassata squassare ver +squassati squassare ver +squassato squassare ver +squassavano squassare ver +squassi squassare ver +squasso squassare ver +squassò squassare ver +squattrinata squattrinato adj +squattrinati squattrinato adj +squattrinato squattrinato adj +squaw squaw nom +squeri squero nom +squero squero nom +squilibra squilibrare ver +squilibrando squilibrare ver +squilibrare squilibrare ver +squilibrarlo squilibrare ver +squilibrata squilibrare ver +squilibrate squilibrare ver +squilibrati squilibrato adj +squilibrato squilibrato nom +squilibrerebbe squilibrare ver +squilibri squilibrio nom +squilibrio squilibrio nom +squilibro squilibrare ver +squilla squillare ver +squillaci squillare ver +squillami squillare ver +squillando squillare ver +squillano squillare ver +squillante squillante adj +squillanti squillante adj +squillar squillare ver +squillare squillare ver +squillati squillare ver +squillato squillare ver +squillava squillare ver +squille squilla nom +squilli squillo nom +squillino squillare ver +squillo squillo adj +squillò squillare ver +squincio squincio nom +squinternata squinternato adj +squinternati squinternato adj +squinternato squinternato adj +squisita squisito adj +squisitamente squisitamente adv +squisite squisito adj +squisitezza squisitezza nom +squisitezze squisitezza nom +squisiti squisito adj +squisito squisito adj +squittendo squittire ver +squitti squittio nom +squittii squittire ver +squittio squittio nom +squittire squittire ver +squittisce squittire ver +squittiscono squittire ver +sradica sradicare ver +sradicamento sradicamento nom +sradicando sradicare ver +sradicandola sradicare ver +sradicandone sradicare ver +sradicano sradicare ver +sradicare sradicare ver +sradicarla sradicare ver +sradicarle sradicare ver +sradicarlo sradicare ver +sradicarne sradicare ver +sradicarono sradicare ver +sradicarsi sradicare ver +sradicasse sradicare ver +sradicata sradicare ver +sradicate sradicare ver +sradicati sradicato adj +sradicato sradicare ver +sradicavano sradicare ver +sradicherei sradicare ver +sradichi sradicare ver +sradicò sradicare ver +sragiona sragionare ver +sragionando sragionare ver +sragionare sragionare ver +sregolata sregolato adj +sregolate sregolato adj +sregolatezza sregolatezza nom +sregolatezze sregolatezza nom +sregolati sregolato adj +sregolato sregolato adj +srotola srotolare ver +srotolando srotolare ver +srotolano srotolare ver +srotolare srotolare ver +srotolarla srotolare ver +srotolarlo srotolare ver +srotolarsi srotolare ver +srotolata srotolare ver +srotolate srotolare ver +srotolati srotolare ver +srotolato srotolare ver +srotolava srotolare ver +srotoli srotolare ver +srotolò srotolare ver +sta stare ver_sup +stabbia stabbiare ver +stabbiano stabbiare ver +stabbio stabbio nom +stabile stabile adj +stabilendo stabilire ver +stabilendola stabilire ver +stabilendole stabilire ver +stabilendone stabilire ver +stabilendosi stabilire ver +stabilendovi stabilire ver +stabilente stabilire ver +stabili stabile adj +stabiliamo stabilire ver +stabilii stabilire ver +stabilimenti stabilimento nom +stabilimento stabilimento nom +stabilimmo stabilire ver +stabilir stabilire ver +stabiliranno stabilire ver +stabilirci stabilire ver +stabilire stabilire ver +stabilirebbe stabilire ver +stabilirebbero stabilire ver +stabilirei stabilire ver +stabiliremo stabilire ver +stabilirla stabilire ver +stabilirle stabilire ver +stabilirli stabilire ver +stabilirlo stabilire ver +stabilirne stabilire ver +stabilirono stabilire ver +stabilirsi stabilire ver +stabilirvi stabilire ver +stabilirvisi stabilire ver +stabilirà stabilire ver +stabilirò stabilire ver +stabilisca stabilire ver +stabiliscano stabilire ver +stabilisce stabilire ver +stabilisci stabilire ver +stabilisciti stabilire ver +stabilisco stabilire ver +stabiliscono stabilire ver +stabilisse stabilire ver +stabilissero stabilire ver +stabilissimo stabilire ver +stabilita stabilire ver +stabilite stabilire ver +stabilitesi stabilire ver +stabiliti stabilire ver +stabilito stabilire ver +stabilità stabilità nom +stabiliva stabilire ver +stabilivano stabilire ver +stabilizza stabilizzare ver +stabilizzando stabilizzare ver +stabilizzandola stabilizzare ver +stabilizzandole stabilizzare ver +stabilizzandolo stabilizzare ver +stabilizzandone stabilizzare ver +stabilizzandosi stabilizzare ver +stabilizzano stabilizzare ver +stabilizzante stabilizzare ver +stabilizzanti stabilizzare ver +stabilizzare stabilizzare ver +stabilizzarla stabilizzare ver +stabilizzarle stabilizzare ver +stabilizzarli stabilizzare ver +stabilizzarlo stabilizzare ver +stabilizzarne stabilizzare ver +stabilizzarono stabilizzare ver +stabilizzarsi stabilizzare ver +stabilizzasse stabilizzare ver +stabilizzassero stabilizzare ver +stabilizzata stabilizzare ver +stabilizzate stabilizzare ver +stabilizzatesi stabilizzare ver +stabilizzati stabilizzare ver +stabilizzato stabilizzare ver +stabilizzatore stabilizzatore adj +stabilizzatori stabilizzatore nom +stabilizzatrice stabilizzatore adj +stabilizzatrici stabilizzatore adj +stabilizzava stabilizzare ver +stabilizzavano stabilizzare ver +stabilizzazione stabilizzazione nom +stabilizzazioni stabilizzazione nom +stabilizzeranno stabilizzare ver +stabilizzerà stabilizzare ver +stabilizzi stabilizzare ver +stabilizzino stabilizzare ver +stabilizzò stabilizzare ver +stabilmente stabilmente adv +stabilì stabilire ver +stabulazione stabulazione nom +stacanovismo stacanovismo nom +stacanovista stacanovista adj +stacanovisti stacanovista adj +stacca staccare ver +staccabile staccabile adj +staccabili staccabile adj +staccai staccare ver +staccando staccare ver +staccandogli staccare ver +staccandola staccare ver +staccandole staccare ver +staccandoli staccare ver +staccandolo staccare ver +staccandone staccare ver +staccandosene staccare ver +staccandosi staccare ver +staccano staccare ver +staccar staccare ver +staccarci staccare ver +staccare staccare ver +staccargli staccare ver +staccarla staccare ver +staccarle staccare ver +staccarli staccare ver +staccarlo staccare ver +staccarmi staccare ver +staccarne staccare ver +staccarono staccare ver +staccarsene staccare ver +staccarsi staccare ver +staccartene staccare ver +staccarti staccare ver +staccasse staccare ver +staccassero staccare ver +staccassi staccare ver +staccata staccare ver +staccate staccare ver +staccatesi staccare ver +staccati staccare ver +staccato staccare ver +staccava staccare ver +staccavano staccare ver +staccheranno staccare ver +staccherei staccare ver +staccherà staccare ver +staccherò staccare ver +stacchi stacco nom +stacchiamo staccare ver +stacchino staccare ver +stacci staccio nom +staccia stacciare ver +stacciata stacciare ver +stacciato stacciare ver +stacciatura stacciatura nom +staccio staccio nom +staccionata staccionata nom +staccionate staccionata nom +stacco stacco nom +staccò staccare ver +stadera stadera nom +stadere stadera nom +stadi stadio nom +stadia stadia nom +stadie stadia nom +stadio stadio nom +staff staff nom +staffa staffa nom +staffe staffa nom +staffetta staffetta nom +staffette staffetta nom +staffettista staffettista nom +staffettiste staffettista nom +staffettisti staffettista nom +staffiere staffiere nom +staffieri staffiere nom +staffilano staffilare ver +staffilata staffilata nom +staffilate staffilata nom +staffile staffile nom +staffili staffile nom +stafilococchi stafilococco nom +stafilococco stafilococco nom +stage stage nom +stagflazione stagflazione nom +staggi staggio nom +staggio staggio nom +stagiona stagionare ver +stagionale stagionale adj +stagionali stagionale adj +stagionalità stagionalità nom +stagionando stagionare ver +stagionante stagionare ver +stagionanti stagionare ver +stagionare stagionare ver +stagionata stagionato adj +stagionate stagionato adj +stagionati stagionato adj +stagionato stagionare ver +stagionatura stagionatura nom +stagionature stagionatura nom +stagione stagione nom +stagioni stagione nom +stagli stagliare ver +staglia stagliare ver +stagliandosi stagliare ver +stagliano stagliare ver +stagliare stagliare ver +stagliarsi stagliare ver +stagliata stagliare ver +stagliate stagliare ver +stagliati stagliare ver +stagliato stagliare ver +stagliava stagliare ver +stagliavano stagliare ver +staglino stagliare ver +staglio stagliare ver +stagna stagno adj +stagnai stagnaio nom +stagnaio stagnaio nom +stagnali stagnare ver +stagnando stagnare ver +stagnano stagnare ver +stagnante stagnante adj +stagnanti stagnante adj +stagnare stagnare ver +stagnari stagnaro nom +stagnaro stagnaro nom +stagnata stagnare ver +stagnate stagnare ver +stagnati stagnare ver +stagnato stagnare ver +stagnatura stagnatura nom +stagnava stagnare ver +stagnavano stagnare ver +stagnazione stagnazione nom +stagne stagno adj +stagni stagno adj +stagnino stagnare ver +stagno stagno nom +stagnola stagnolo adj +stagnoli stagnolo adj +stagnolo stagnolo adj +stagnò stagnare ver +stai stare ver +staia staia nom +staicele stare ver +staila stare ver +staine stare ver +staio staio nom +staiti stare ver +stalagmite stalagmite nom +stalagmiti stalagmite nom +stalattite stalattite nom +stalattiti stalattite nom +staliniana staliniano adj +staliniane staliniano adj +staliniani staliniano adj +staliniano staliniano adj +stalinismi stalinismo nom +stalinismo stalinismo nom +stalinista stalinista adj +staliniste stalinista adj +stalinisti stalinista adj +stalla stalla nom +stallaggi stallaggio nom +stallaggio stallaggio nom +stallatico stallatico nom +stalle stalla nom +stalli stallo nom +stallie stallia nom +stalliera stalliere nom +stalliere stalliere nom +stallieri stalliere nom +stallo stallo nom +stallone stallone nom +stalloni stallone nom +stamane stamane adv +stamani stamani adv +stamattina stamattina adv +stambecchi stambecco nom +stambecco stambecco nom +stamberga stamberga nom +stamberghe stamberga nom +stamburata stamburare ver +stame stame nom +stami stame nom +stamigna stamigna nom +stampa stampa nom +stampaggi stampaggio nom +stampaggio stampaggio nom +stampalo stampare ver +stampando stampare ver +stampandola stampare ver +stampandole stampare ver +stampandoli stampare ver +stampandolo stampare ver +stampandone stampare ver +stampandovi stampare ver +stampano stampare ver +stampante stampante nom +stampanti stampante nom +stampar stampare ver +stampare stampare ver +stamparla stampare ver +stamparle stampare ver +stamparli stampare ver +stamparlo stampare ver +stamparmi stampare ver +stamparne stampare ver +stamparono stampare ver +stamparsi stampare ver +stamparvi stampare ver +stampasse stampare ver +stampata stampato adj +stampate stampare ver +stampatello stampatello nom +stampati stampare ver +stampato stampare ver +stampatore stampatore nom +stampatori stampatore nom +stampatrice stampatore|stampatrice nom +stampatrici stampatore|stampatrice nom +stampava stampare ver +stampavano stampare ver +stampe stampa nom +stampella stampella nom +stampelle stampella nom +stamperanno stampare ver +stamperebbe stampare ver +stamperei stampare ver +stamperia stamperia nom +stamperie stamperia nom +stamperà stampare ver +stampi stampo nom +stampiamo stampare ver +stampiglia stampiglia nom +stampigliando stampigliare ver +stampigliare stampigliare ver +stampigliata stampigliare ver +stampigliate stampigliare ver +stampigliati stampigliare ver +stampigliato stampigliare ver +stampigliatura stampigliatura nom +stampini stampino nom +stampino stampino nom +stampista stampista nom +stampo stampo nom +stampò stampare ver +stana stanare ver +stanando stanare ver +stanandole stanare ver +stanandolo stanare ver +stanano stanare ver +stanare stanare ver +stanarla stanare ver +stanarli stanare ver +stanarlo stanare ver +stanata stanare ver +stanati stanare ver +stanato stanare ver +stanca stanco adj +stancami stancare ver +stancando stancare ver +stancandosi stancare ver +stancano stancare ver +stancante stancare ver +stancanti stancare ver +stancar stancare ver +stancarci stancare ver +stancare stancare ver +stancarla stancare ver +stancarli stancare ver +stancarlo stancare ver +stancarmi stancare ver +stancarono stancare ver +stancarsi stancare ver +stancarti stancare ver +stancasse stancare ver +stancassero stancare ver +stancassi stancare ver +stancata stancare ver +stancate stancare ver +stancatevi stancare ver +stancati stancare ver +stancato stancare ver +stancava stancare ver +stancavano stancare ver +stanche stanco adj +stancheranno stancare ver +stancherebbero stancare ver +stancherei stancare ver +stancheremo stancare ver +stancherete stancare ver +stancherà stancare ver +stancherò stancare ver +stanchezza stanchezza nom +stanchezze stanchezza nom +stanchi stanco adj +stanchino stancare ver +stanco stanco adj +stancò stancare ver +stand stand nom +standard standard adj +standardizza standardizzare ver +standardizzando standardizzare ver +standardizzandola standardizzare ver +standardizzano standardizzare ver +standardizzante standardizzare ver +standardizzare standardizzare ver +standardizzarla standardizzare ver +standardizzarle standardizzare ver +standardizzarlo standardizzare ver +standardizzarne standardizzare ver +standardizzarono standardizzare ver +standardizzarsi standardizzare ver +standardizzasse standardizzare ver +standardizzata standardizzare ver +standardizzate standardizzare ver +standardizzati standardizzare ver +standardizzato standardizzare ver +standardizzazione standardizzazione nom +standardizzazioni standardizzazione nom +standardizzerei standardizzare ver +standardizzerà standardizzare ver +standardizzi standardizzare ver +standardizziamo standardizzare ver +standardizzo standardizzare ver +standardizzò standardizzare ver +standing standing nom +standista standista nom +standisti standista nom +stando stare ver_sup +standoci stare ver +standogli stare ver +standole stare ver +standoli stare ver +standomene stare ver +standomi stare ver +standone stare ver +standosene stare ver +standosi stare ver +standovi stare ver +stanga stanga nom +stangarlo stangare ver +stangata stangata nom +stangate stangata nom +stangati stangare ver +stangato stangare ver +stanghe stanga nom +stanghetta stanghetta nom +stanghette stanghetta nom +stanghi stangare ver +stango stangare ver +stani stanare ver +stanno stare ver_sup +stano stanare ver +stanotte stanotte adv +stante stare ver +stanti stante|stantio adj +stantia stantio adj +stantie stantio adj +stantio stantio adj +stantuffi stantuffo nom +stantuffo stantuffo nom +stanza stanza nom +stanze stanza nom +stanzi stanziare ver +stanzia stanziare ver +stanziale stanziale adj +stanziali stanziale adj +stanziamenti stanziamento nom +stanziamento stanziamento nom +stanziando stanziare ver +stanziandoli stanziare ver +stanziandosi stanziare ver +stanziano stanziare ver +stanzianti stanziare ver +stanziare stanziare ver +stanziarono stanziare ver +stanziarsi stanziare ver +stanziasse stanziare ver +stanziassero stanziare ver +stanziata stanziare ver +stanziate stanziare ver +stanziatesi stanziare ver +stanziati stanziare ver +stanziato stanziare ver +stanziava stanziare ver +stanziavano stanziare ver +stanzierebbe stanziare ver +stanzierà stanziare ver +stanzini stanzino nom +stanzino stanzino nom +stanzio stanziare ver +stanziò stanziare ver +stanò stanare ver +stappa stappare ver +stappali stappare ver +stappando stappare ver +stappano stappare ver +stappare stappare ver +stappata stappare ver +stappate stappare ver +stappato stappare ver +stappava stappare ver +stapperemo stappare ver +stapperà stappare ver +stapperò stappare ver +stappi stappare ver +stappiamo stappare ver +stappo stappare ver +star stare ver_sup +stara stara sw +starai stare ver +staranno stare ver +starcene stare ver +starci stare ver +stare stare ver_sup +starebbe stare ver_sup +starebbero stare ver +starei stare ver +staremmo stare ver +staremo stare ver +stareste stare ver +staresti stare ver +starete stare ver +stargli stare ver +starla stare ver +starle stare ver +starlet starlet nom +starli stare ver +starmene stare ver +starmi stare ver +starna starna nom +starnazza starnazzare ver +starnazzare starnazzare ver +starnazzavano starnazzare ver +starnazzi starnazzare ver +starne stare ver +starnutare starnutare ver +starnutendo starnutire ver +starnuti starnuto nom +starnutire starnutire ver +starnutisce starnutire ver +starnutiscono starnutire ver +starnutito starnutire ver +starnuto starnuto nom +starnutì starnutire ver +starsene stare ver +starsi stare ver +start start nom +startene stare ver +starter starter nom +starti stare ver +starvi stare ver +starà stare ver_sup +starò stare ver +stasa stasare ver +stasera stasera adv +stasi stasi nom +stasimi stasimo nom +stasimo stasimo nom +stasino stasare ver +staso stasare ver +stata essere|stare ver_sup +statale statale adj +statali statale adj +statalismo statalismo nom +statalizza statalizzare ver +statalizzando statalizzare ver +statalizzare statalizzare ver +statalizzata statalizzare ver +statalizzate statalizzare ver +statalizzati statalizzare ver +statalizzato statalizzare ver +statalizzazione statalizzazione nom +statalizzò statalizzare ver +state essere|stare ver_sup +stateci stare ver +stategli stare ver +statele stare ver +statemi stare ver +statene stare ver +statere statere nom +stateri statere nom +statevene stare ver +statevi stare ver +stati stato nom_sup +statica statico adj +statiche statico adj +statici statico adj +staticità staticità nom +statico statico adj +statista statista nom +statisti statista nom +statistica statistico adj +statisticamente statisticamente adv +statistiche statistica|statistico nom +statistici statistico adj +statistico statistico adj +stativi stativo nom +stativo stativo nom +statizzata statizzare ver +statizzate statizzare ver +statizzato statizzare ver +statizzazione statizzazione nom +stato essere|stare ver_sup +statolatria statolatria nom +statore statore nom +statoreattore statoreattore nom +statoreattori statoreattore nom +statori statore nom +statua statua nom +statuale statuale adj +statuali statuale adj +statuari statuario adj +statuaria statuaria nom +statuarie statuario adj +statuario statuario adj +statue statua nom +statuendo statuire ver +statuenti statuire ver +statuire statuire ver +statuisce statuire ver +statuiscono statuire ver +statuita statuire ver +statuite statuire ver +statuiti statuire ver +statuito statuire ver +statuiva statuire ver +statuizione statuizione nom +statuizioni statuizione nom +statunitense statunitense adj +statunitensi statunitense adj +statura statura nom +stature statura nom +status status nom +statutari statutario adj +statutaria statutario adj +statutarie statutario adj +statutario statutario adj +statuti statuto nom +statuto statuto nom +statuì statuire ver +stauroteca stauroteca nom +stauroteche stauroteca nom +stava stare ver_sup +stavamo stare ver +stavano stare ver_sup +stavate stare ver +stavi stare ver +stavo stare ver +stavolta stavolta adv_sup +stayer stayer nom +staziona stazionare ver +stazionale stazionale adj +stazionali stazionale adj +stazionamenti stazionamento nom +stazionamento stazionamento nom +stazionando stazionare ver +stazionandovi stazionare ver +stazionano stazionare ver +stazionanti stazionare ver +stazionare stazionare ver +stazionari stazionario adj +stazionaria stazionario adj +stazionarie stazionario adj +stazionario stazionario adj +stazionarono stazionare ver +stazionarvi stazionare ver +stazionasse stazionare ver +stazionassero stazionare ver +stazionata stazionare ver +stazionate stazionare ver +stazionati stazionare ver +stazionato stazionare ver +stazionava stazionare ver +stazionavano stazionare ver +stazione stazione nom +stazioneranno stazionare ver +stazioneremo stazionare ver +stazionerà stazionare ver +stazioni stazione nom +stazionino stazionare ver +stazionò stazionare ver +stazza stazza nom +stazzano stazzare ver +stazzanti stazzare ver +stazzare stazzare ver +stazzatura stazzatura nom +stazzava stazzare ver +stazzavano stazzare ver +stazze stazza nom +stazzi stazzo nom +stazzo stazzo nom +stazzona stazzonare ver +stazzonando stazzonare ver +steamer steamer nom +stearica stearico adj +steariche stearico adj +stearico stearico adj +stearina stearina nom +steatite steatite nom +stecca stecca nom +steccando steccare ver +steccano steccare ver +steccare steccare ver +steccarsi steccare ver +steccata steccata nom +steccate steccata nom +steccati steccato nom +steccato steccato nom +stecche stecca nom +stecchetti stecchetto nom +stecchetto stecchetto nom +stecchi stecco nom +stecchini stecchino nom +stecchino steccare ver +stecchita stecchire ver +stecchite stecchito adj +stecchiti stecchire ver +stecchito stecchire ver +stecco stecco nom +stecconata stecconata nom +stecconi steccone nom +steccò steccare ver +stechiometria stechiometria nom +stechiometrica stechiometrico adj +stechiometriche stechiometrico adj +stechiometrici stechiometrico adj +stechiometrico stechiometrico adj +stechiometrie stechiometria nom +steeplechase steeplechase nom +stegola stegola nom +stegole stegola nom +stegosauri stegosauro nom +stegosauro stegosauro nom +stele stele nom +steli stele|stelo nom +stella stella nom +stellante stellante adj +stellanti stellante adj +stellare stellare adj +stellari stellare adj +stellata stellato adj +stellate stellato adj +stellati stellato adj +stellato stellato adj +stelle stella nom +stelletta stelletta nom +stellette stelletta nom +stellina stellina nom +stelline stellina nom +stelloncino stelloncino nom +stelo stelo nom +stemma stemma nom +stemmi stemma nom +stemmo stare ver +stempera stemperare ver +stemperando stemperare ver +stemperandone stemperare ver +stemperandosi stemperare ver +stemperano stemperare ver +stemperare stemperare ver +stemperarla stemperare ver +stemperarle stemperare ver +stemperarne stemperare ver +stemperarono stemperare ver +stemperarsi stemperare ver +stemperata stemperare ver +stemperate stemperare ver +stemperati stemperare ver +stemperato stemperare ver +stemperava stemperare ver +stempererà stemperare ver +stemperò stemperare ver +stempiata stempiarsi ver +stempiato stempiarsi ver +stenda stendere ver +stendardi stendardo nom +stendardo stendardo nom +stende stendere ver +stendendo stendere ver +stendendola stendere ver +stendendole stendere ver +stendendoli stendere ver +stendendolo stendere ver +stendendosi stendere ver +stender stendere ver +stenderanno stendere ver +stenderci stendere ver +stendere stendere ver +stenderei stendere ver +stenderla stendere ver +stenderle stendere ver +stenderli stendere ver +stenderlo stendere ver +stenderne stendere ver +stendersi stendere ver +stenderti stendere ver +stenderà stendere ver +stenderò stendere ver +stendesse stendere ver +stendete stendere ver +stendeva stendere ver +stendevano stendere ver +stendi stendere ver +stendiamo stendere ver +stendimi stendere ver +stenditoi stenditoio nom +stenditoio stenditoio nom +stendo stendere ver +stendono stendere ver +stenia stenia nom +stenodattilografa stenodattilografo nom +stenodattilografia stenodattilografia nom +stenodattilografo stenodattilografo nom +stenografa stenografo nom +stenografando stenografare ver +stenografare stenografare ver +stenografata stenografare ver +stenografate stenografare ver +stenografati stenografare ver +stenografe stenografo nom +stenografi stenografo nom +stenografia stenografia nom +stenografica stenografico adj +stenografiche stenografico adj +stenografici stenografico adj +stenografico stenografico adj +stenografie stenografia nom +stenografo stenografo nom +stenografò stenografare ver +stenogramma stenogramma nom +stenogrammi stenogramma nom +stenosi stenosi nom +stenotermi stenotermo adj +stenotipia stenotipia nom +stenta stentare ver +stentando stentare ver +stentano stentare ver +stentare stentare ver +stentarono stentare ver +stentasse stentare ver +stentata stentato adj +stentate stentato adj +stentati stentato adj +stentato stentato adj +stentava stentare ver +stentavano stentare ver +stente stento adj +stenterelli stenterello nom +stenterello stenterello nom +stenterà stentare ver +stenti stento nom +stentiamo stentare ver +stentino stentare ver +stento stento nom +stentorea stentoreo adj +stentoree stentoreo adj +stentoreo stentoreo adj +stentò stentare ver +steppa steppa nom +steppe steppa nom +stepposa stepposo adj +steppose stepposo adj +stepposi stepposo adj +stepposo stepposo adj +steradiante steradiante nom +steradianti steradiante nom +sterchi sterco nom +sterco sterco nom +stercorari stercorario adj +stercoraria stercorario adj +stercorario stercorario adj +sterculiacee sterculiacee nom +stereo stereo adj +stereofonia stereofonia nom +stereofonica stereofonico adj +stereofoniche stereofonico adj +stereofonici stereofonico adj +stereofonico stereofonico adj +stereofonie stereofonia nom +stereofotografia stereofotografia nom +stereofotografie stereofotografia nom +stereografia stereografia nom +stereogramma stereogramma nom +stereogrammi stereogramma nom +stereoisomeria stereoisomeria nom +stereometria stereometria nom +stereometrie stereometria nom +stereoscopi stereoscopio nom +stereoscopia stereoscopia nom +stereoscopica stereoscopico adj +stereoscopiche stereoscopico adj +stereoscopici stereoscopico adj +stereoscopico stereoscopico adj +stereoscopie stereoscopia nom +stereoscopio stereoscopio nom +stereotipa stereotipo adj +stereotipata stereotipato adj +stereotipate stereotipato adj +stereotipati stereotipato adj +stereotipato stereotipato adj +stereotipe stereotipo adj +stereotipi stereotipo nom +stereotipia stereotipia nom +stereotipie stereotipia nom +stereotipo stereotipo nom +sterile sterile adj +sterili sterile adj +sterilità sterilità nom +sterilizza sterilizzare ver +sterilizzando sterilizzare ver +sterilizzano sterilizzare ver +sterilizzante sterilizzare ver +sterilizzanti sterilizzare ver +sterilizzare sterilizzare ver +sterilizzarla sterilizzare ver +sterilizzarli sterilizzare ver +sterilizzarlo sterilizzare ver +sterilizzarono sterilizzare ver +sterilizzata sterilizzare ver +sterilizzate sterilizzare ver +sterilizzati sterilizzare ver +sterilizzato sterilizzare ver +sterilizzatore sterilizzatore nom +sterilizzatori sterilizzatore nom +sterilizzatrice sterilizzatore adj +sterilizzazione sterilizzazione nom +sterilizzazioni sterilizzazione nom +sterilizzò sterilizzare ver +sterlina sterlina nom +sterline sterlina nom +stermina sterminare ver +sterminando sterminare ver +sterminandola sterminare ver +sterminandole sterminare ver +sterminandoli sterminare ver +sterminandone sterminare ver +sterminano sterminare ver +sterminanti sterminare ver +sterminare sterminare ver +sterminarla sterminare ver +sterminarle sterminare ver +sterminarli sterminare ver +sterminarlo sterminare ver +sterminarne sterminare ver +sterminarono sterminare ver +sterminasse sterminare ver +sterminata sterminare ver +sterminate sterminato adj +sterminateli sterminare ver +sterminati sterminare ver +sterminato sterminare ver +sterminatore sterminatore nom +sterminatori sterminatore nom +sterminatrice sterminatore nom +sterminatrici sterminatore adj +sterminava sterminare ver +sterminavano sterminare ver +stermineranno sterminare ver +sterminerà sterminare ver +sterminerò sterminare ver +stermini sterminio nom +sterminiamo sterminare ver +sterminiamoli sterminare ver +sterminino sterminare ver +sterminio sterminio nom +stermino sterminare ver +sterminò sterminare ver +sterni sterno nom +sterno sterno nom +sternocleidomastoidei sternocleidomastoideo adj +sternocleidomastoideo sternocleidomastoideo adj +steroide steroide nom +steroidi steroide nom +sterpaglia sterpaglia nom +sterpaglie sterpaglia nom +sterpaia sterpaia nom +sterpaie sterpaia nom +sterpaio sterpaio nom +sterpazzola sterpazzola nom +sterpazzole sterpazzola nom +sterpi sterpo nom +sterpo sterpo nom +sterra sterrare ver +sterrata sterrare ver +sterrate sterrare ver +sterrati sterrare ver +sterrato sterrare ver +sterratore sterratore nom +sterratori sterratore nom +sterri sterrare ver +sterro sterrare ver +sterza sterzare ver +sterzando sterzare ver +sterzano sterzare ver +sterzante sterzare ver +sterzanti sterzare ver +sterzare sterzare ver +sterzata sterzata nom +sterzate sterzata nom +sterzato sterzare ver +sterzava sterzare ver +sterzerà sterzare ver +sterzi sterzo nom +sterzo sterzo nom +sterzò sterzare ver +stesa stendere ver +stese stendere ver +stesero stendere ver +stesi stendere ver +steso stendere ver +stessa stesso adj_sup +stesse stesso adj_sup +stessero stare ver +stessi stesso adj_sup +stessimo stare ver +stesso stesso adj_sup +steste stare ver +stesti stare ver +stesura stesura nom +stesure stesura nom +stetoscopi stetoscopio nom +stetoscopio stetoscopio nom +stette stare ver +stettero stare ver +stetti stare ver +steward steward nom +stia stare ver_sup +stiacciato stiacciato nom +stiamo stare ver_sup +stiamoci stare ver +stiancia stiancia nom +stiano stare ver +stiate stare ver +stick stick nom +stie stia nom +stiffelius stiffelius nom +stigli stiglio nom +stiglio stiglio nom +stigma stigma nom +stigmate stigmate nom +stigmatica stigmatico adj +stigmatiche stigmatico adj +stigmatici stigmatico adj +stigmatico stigmatico adj +stigmatizza stigmatizzare ver +stigmatizzando stigmatizzare ver +stigmatizzandola stigmatizzare ver +stigmatizzandole stigmatizzare ver +stigmatizzandolo stigmatizzare ver +stigmatizzandone stigmatizzare ver +stigmatizzano stigmatizzare ver +stigmatizzante stigmatizzare ver +stigmatizzare stigmatizzare ver +stigmatizzarle stigmatizzare ver +stigmatizzarli stigmatizzare ver +stigmatizzarlo stigmatizzare ver +stigmatizzarne stigmatizzare ver +stigmatizzarono stigmatizzare ver +stigmatizzasse stigmatizzare ver +stigmatizzata stigmatizzare ver +stigmatizzate stigmatizzare ver +stigmatizzati stigmatizzare ver +stigmatizzato stigmatizzare ver +stigmatizzava stigmatizzare ver +stigmatizzavano stigmatizzare ver +stigmatizzavo stigmatizzare ver +stigmatizzerei stigmatizzare ver +stigmatizzi stigmatizzare ver +stigmatizziamo stigmatizzare ver +stigmatizzo stigmatizzare ver +stigmatizzò stigmatizzare ver +stigmi stigma nom +stila stilare ver +stilando stilare ver +stilandone stilare ver +stilano stilare ver +stilar stilare ver +stilare stilare ver +stilarla stilare ver +stilarli stilare ver +stilarmi stilare ver +stilarne stilare ver +stilarono stilare ver +stilasse stilare ver +stilata stilare ver +stilate stilare ver +stilati stilare ver +stilato stilare ver +stilava stilare ver +stilavano stilare ver +stilb stilb nom +stile stile nom +stilema stilema nom +stilemi stilema nom +stilerei stilare ver +stilerà stilare ver +stilettata stilettata nom +stilettate stilettata nom +stiletti stiletto nom +stiletto stiletto nom +stili stile|stilo nom +stiliamo stilare ver +stilista stilista nom +stiliste stilista nom +stilisti stilista nom +stilistica stilistico adj +stilistiche stilistico adj +stilistici stilistico adj +stilistico stilistico adj +stilita stilita nom +stiliti stilita nom +stilizza stilizzare ver +stilizzando stilizzare ver +stilizzandoli stilizzare ver +stilizzandolo stilizzare ver +stilizzandone stilizzare ver +stilizzandosi stilizzare ver +stilizzare stilizzare ver +stilizzarli stilizzare ver +stilizzarono stilizzare ver +stilizzata stilizzare ver +stilizzate stilizzare ver +stilizzati stilizzare ver +stilizzato stilizzare ver +stilizzava stilizzare ver +stilla stilla nom +stillano stillare ver +stillante stillante adj +stillanti stillante adj +stillare stillare ver +stillarono stillare ver +stillata stillare ver +stillate stillare ver +stillati stillare ver +stillato stillare ver +stillava stillare ver +stille stilla nom +stilli stillare ver +stillicidi stillicidio nom +stillicidio stillicidio nom +stillo stillare ver +stillò stillare ver +stilnovismo stilnovismo nom +stilnovista stilnovista nom +stilnoviste stilnovista nom +stilnovisti stilnovista nom +stilnovo stilnovo nom +stilo stilo nom +stilobate stilobate nom +stilografica stilografico adj +stilografiche stilografico adj +stilò stilare ver +stima stima nom +stimabile stimabile adj +stimabili stimabile adj +stimai stimare ver +stimammo stimare ver +stimando stimare ver +stimandola stimare ver +stimandolo stimare ver +stimandone stimare ver +stimandosi stimare ver +stimano stimare ver +stimar stimare ver +stimare stimare ver +stimarla stimare ver +stimarli stimare ver +stimarlo stimare ver +stimarne stimare ver +stimarono stimare ver +stimarsi stimare ver +stimasse stimare ver +stimata stimare ver +stimate stimare ver +stimati stimare ver +stimato stimare ver +stimatore stimatore nom +stimatori stimatore nom +stimatrice stimatore nom +stimava stimare ver +stimavano stimare ver +stimavo stimare ver +stime stima nom +stimeranno stimare ver +stimerei stimare ver +stimerà stimare ver +stimi stimare ver +stimiamo stimare ver +stimino stimare ver +stimma stimma nom +stimmate stimmate nom +stimmatizzato stimmatizzare ver +stimmi stimma nom +stimo stimare ver +stimola stimolare ver +stimolando stimolare ver +stimolandola stimolare ver +stimolandoli stimolare ver +stimolandolo stimolare ver +stimolandone stimolare ver +stimolandosi stimolare ver +stimolano stimolare ver +stimolante stimolante adj +stimolanti stimolante adj +stimolarci stimolare ver +stimolare stimolare ver +stimolargli stimolare ver +stimolarla stimolare ver +stimolarli stimolare ver +stimolarlo stimolare ver +stimolarne stimolare ver +stimolarono stimolare ver +stimolarsi stimolare ver +stimolarti stimolare ver +stimolasse stimolare ver +stimolassero stimolare ver +stimolata stimolare ver +stimolate stimolare ver +stimolati stimolare ver +stimolato stimolare ver +stimolava stimolare ver +stimolavano stimolare ver +stimolazione stimolazione nom +stimolazioni stimolazione nom +stimolerebbe stimolare ver +stimolerebbero stimolare ver +stimolerà stimolare ver +stimoli stimolo nom +stimolino stimolare ver +stimolo stimolo nom +stimolò stimolare ver +stimò stimare ver +stinchi stinco nom +stinco stinco nom +stinga stingere ver +stinge stingere ver +stingendo stingere ver +stingenti stingere ver +stinger stingere ver +stingere stingere ver +stingersi stingere ver +stingi stingere ver +stingo stingere ver +stingono stingere ver +stinsero stingere ver +stinta stingere ver +stinte stingere ver +stinti stingere ver +stinto stingere ver +stipa stipa nom +stipando stipare ver +stipano stipare ver +stipare stipare ver +stiparono stipare ver +stiparsi stipare ver +stiparvi stipare ver +stipata stipare ver +stipate stipare ver +stipati stipare ver +stipato stipare ver +stipavano stipare ver +stipe stipa nom +stipendi stipendio nom +stipendia stipendiare ver +stipendiale stipendiare ver +stipendiali stipendiare ver +stipendiando stipendiare ver +stipendiare stipendiare ver +stipendiarlo stipendiare ver +stipendiata stipendiare ver +stipendiate stipendiare ver +stipendiati stipendiare ver +stipendiato stipendiare ver +stipendiava stipendiare ver +stipendio stipendio nom +stipendiò stipendiare ver +stipettaio stipettaio nom +stipi stipo nom +stipite stipite nom +stipiti stipite nom +stipo stipo nom +stipola stipola nom +stipolate stipolato adj +stipolato stipolato adj +stipole stipola nom +stipsi stipsi nom +stipula stipulare ver +stipulando stipulare ver +stipulano stipulare ver +stipulante stipulante nom +stipulanti stipulante adj +stipulare stipulare ver +stipularlo stipulare ver +stipularono stipulare ver +stipularsi stipulare ver +stipulasse stipulare ver +stipulassero stipulare ver +stipulata stipulare ver +stipulate stipulare ver +stipulati stipulare ver +stipulato stipulare ver +stipulava stipulare ver +stipulavano stipulare ver +stipulazione stipulazione nom +stipulazioni stipulazione nom +stipuleranno stipulare ver +stipulerà stipulare ver +stipuli stipulare ver +stipulino stipulare ver +stipulò stipulare ver +stipò stipare ver +stira stirare ver +stiracchia stiracchiare ver +stiracchiando stiracchiare ver +stiracchiano stiracchiare ver +stiracchiare stiracchiare ver +stiracchiarsi stiracchiare ver +stiracchiata stiracchiare ver +stiracchiate stiracchiare ver +stiracchiati stiracchiato adj +stiracchiato stiracchiato adj +stiramenti stiramento nom +stiramento stiramento nom +stirando stirare ver +stirandolo stirare ver +stirandosi stirare ver +stirano stirare ver +stiranti stirare ver +stirare stirare ver +stirarle stirare ver +stirarlo stirare ver +stirarsi stirare ver +stirata stirare ver +stirate stirare ver +stirati stirare ver +stirato stirare ver +stiratrice stiratrice nom +stiratrici stiratrice nom +stiratura stiratura nom +stirava stirare ver +stireria stireria nom +stiri stiro nom +stiro stiro nom +stirolo stirolo nom +stirpe stirpe nom +stirpi stirpe nom +stitichezza stitichezza nom +stitici stitico adj +stitico stitico adj +stiva stiva nom +stivaggio stivaggio nom +stivala stivare ver +stivale stivale nom +stivaletti stivaletto nom +stivaletto stivaletto nom +stivali stivale nom +stivaloni stivalone nom +stivando stivare ver +stivano stivare ver +stivare stivare ver +stivata stivare ver +stivate stivare ver +stivati stivare ver +stivato stivare ver +stivatore stivatore nom +stivavano stivare ver +stive stiva nom +stivi stivare ver +stivo stivare ver +stivò stivare ver +stizza stizza nom +stizze stizza nom +stizzire stizzire ver +stizzirsi stizzire ver +stizzisce stizzire ver +stizzita stizzire ver +stizzite stizzire ver +stizziti stizzire ver +stizzito stizzire ver +stizzosa stizzoso adj +stizzose stizzoso adj +stizzosi stizzoso adj +stizzoso stizzoso adj +stizzì stizzire ver +sto stare ver_sup +stocastica stocastico adj +stocastiche stocastico adj +stocastici stocastico adj +stocastico stocastico adj +stoccafissi stoccafisso nom +stoccafisso stoccafisso nom +stoccaggi stoccaggio nom +stoccaggio stoccaggio nom +stoccata stoccata nom +stoccate stoccata nom +stoccati stoccare ver +stoccato stoccare ver +stoccatori stoccatore nom +stocchi stocco nom +stocco stocco nom +stock stock nom +stoffa stoffa nom +stoffe stoffa nom +stoica stoico adj +stoiche stoico adj +stoici stoico nom +stoicismo stoicismo nom +stoico stoico adj +stoini stoino nom +stoino stoino nom +stola stola nom +stole stola nom +stolida stolido adj +stolide stolido adj +stolidi stolido adj +stolidità stolidità nom +stolido stolido adj +stolli stollo nom +stollo stollo nom +stolta stolto adj +stolte stolto adj +stoltezza stoltezza nom +stoltezze stoltezza nom +stolti stolto nom +stolto stolto adj +stoma stoma nom +stomacale stomacare ver +stomacali stomacare ver +stomachevole stomachevole adj +stomachevoli stomachevole adj +stomachi stomaco nom +stomachici stomachico nom +stomachico stomachico nom +stomaci stomaco nom +stomaco stomaco nom +stomatica stomatico adj +stomatiche stomatico adj +stomatico stomatico adj +stomatite stomatite nom +stomatiti stomatite nom +stomatologi stomatologo nom +stomatologia stomatologia nom +stomatologie stomatologia nom +stomatologo stomatologo nom +stomi stoma nom +stona stonare ver +stonando stonare ver +stonano stonare ver +stonante stonare ver +stonar stonare ver +stonare stonare ver +stonasse stonare ver +stonata stonare ver +stonate stonato adj +stonati stonato adj +stonato stonare ver +stonatura stonatura nom +stonature stonatura nom +stonava stonare ver +stonavano stonare ver +stonerebbe stonare ver +stonerebbero stonare ver +stoni stonare ver +stonino stonare ver +stono stonare ver +stop stop nom +stoppa stoppa nom +stoppacci stoppaccio nom +stoppaccio stoppaccio nom +stoppando stoppare ver +stoppare stoppare ver +stopparlo stoppare ver +stopparono stoppare ver +stoppata stoppata nom +stoppate stoppata nom +stoppati stoppare ver +stoppato stoppare ver +stoppe stoppa nom +stopper stopper nom +stopperà stoppare ver +stoppi stoppare ver +stoppia stoppia nom +stoppie stoppia nom +stoppini stoppino nom +stoppino stoppino nom +stoppo stoppare ver +stopposa stopposo adj +stoppose stopposo adj +stopposo stopposo adj +stoppò stoppare ver +storace storace nom +storaci storace nom +storca storcere ver +storce storcere ver +storcendo storcere ver +storceranno storcere ver +storcere storcere ver +storcerebbero storcere ver +storcerei storcere ver +storcerà storcere ver +storceva storcere ver +storci storcere ver +storco storcere ver +storcono storcere ver +stordendo stordire ver +stordendola stordire ver +stordendole stordire ver +stordendoli stordire ver +stordendolo stordire ver +stordente stordire ver +stordenti stordire ver +stordimenti stordimento nom +stordimento stordimento nom +stordiranno stordire ver +stordire stordire ver +stordirla stordire ver +stordirle stordire ver +stordirli stordire ver +stordirlo stordire ver +stordirono stordire ver +stordirsi stordire ver +stordirà stordire ver +stordisce stordire ver +stordisco stordire ver +stordiscono stordire ver +stordita stordire ver +storditaggine storditaggine nom +stordite stordire ver +storditi stordire ver +stordito stordire ver +stordiva stordire ver +stordì stordire ver +storia storia nom +storica storico adj +storicamente storicamente adv +storiche storico adj +storici storico adj +storicismi storicismo nom +storicismo storicismo nom +storicità storicità nom +storicizza storicizzare ver +storicizzando storicizzare ver +storicizzano storicizzare ver +storicizzante storicizzare ver +storicizzare storicizzare ver +storicizzarlo storicizzare ver +storicizzata storicizzare ver +storicizzate storicizzare ver +storicizzati storicizzare ver +storicizzato storicizzare ver +storico storico adj +storie storia nom +storiella storiella nom +storielle storiella nom +storiografa storiografo nom +storiografe storiografo nom +storiografi storiografo nom +storiografia storiografia nom +storiografica storiografico adj +storiografiche storiografico adj +storiografici storiografico adj +storiografico storiografico adj +storiografie storiografia nom +storiografo storiografo nom +storione storione nom +storioni storione nom +stormi stormo nom +stormii stormire ver +stormir stormire ver +stormire stormire ver +stormiscono stormire ver +stormo stormo nom +storna storno adj +stornando stornare ver +stornare stornare ver +stornarlo stornare ver +stornarne stornare ver +stornata stornare ver +stornate stornare ver +stornati stornare ver +stornato stornare ver +stornava stornare ver +stornella stornellare ver +stornellando stornellare ver +stornellare stornellare ver +stornellata stornellare ver +stornellate stornellare ver +stornelli stornello nom +stornellino stornellare ver +stornello stornello nom +storni storno adj +stornino stornare ver +storno storno adj +stornò stornare ver +storpi storpio nom +storpia storpio adj +storpiamento storpiamento nom +storpiando storpiare ver +storpiandola storpiare ver +storpiandolo storpiare ver +storpiandone storpiare ver +storpiano storpiare ver +storpiare storpiare ver +storpiarlo storpiare ver +storpiarono storpiare ver +storpiata storpiare ver +storpiate storpiare ver +storpiati storpiare ver +storpiato storpiare ver +storpiatura storpiatura nom +storpiature storpiatura nom +storpiava storpiare ver +storpiavano storpiare ver +storpie storpio adj +storpio storpio nom +storpiò storpiare ver +storse storcere ver +storsero storcere ver +storta storto adj +storte storto adj +storti storto adj +storto storto adv +stortura stortura nom +storture stortura nom +story story nom +stoviglia stoviglia nom +stoviglie stoviglia nom +stoviglieria stoviglieria nom +stoviglierie stoviglieria nom +stozzatrice stozzatrice nom +strabica strabico adj +strabiche strabico adj +strabici strabico adj +strabico strabico adj +strabilia strabiliare ver +strabiliando strabiliare ver +strabiliante strabiliante adj +strabilianti strabiliante adj +strabiliare strabiliare ver +strabiliata strabiliare ver +strabiliati strabiliare ver +strabiliato strabiliare ver +strabilierà strabiliare ver +strabiliò strabiliare ver +strabismo strabismo nom +straboccante straboccare ver +straboccanti straboccare ver +straboccare straboccare ver +strabocchevole strabocchevole adj +strabuzza strabuzzare ver +strabuzzare strabuzzare ver +strabuzzati strabuzzare ver +strabuzzato strabuzzare ver +stracarica stracarico adj +stracariche stracarico adj +stracarico stracarico adj +stracca straccare ver +straccale straccale adj +straccali straccale adj +straccerai stracciare ver +straccerebbe stracciare ver +straccerei stracciare ver +straccerà stracciare ver +straccerò stracciare ver +stracchi stracco nom +stracchini stracchino nom +stracchino stracchino nom +stracci straccio nom +straccia straccio adj +stracciamo stracciare ver +stracciamola stracciare ver +stracciando stracciare ver +stracciandosi stracciare ver +stracciano stracciare ver +stracciarci stracciare ver +stracciare stracciare ver +stracciarlo stracciare ver +stracciarmi stracciare ver +stracciarono stracciare ver +stracciarsi stracciare ver +stracciasse stracciare ver +stracciata stracciare ver +stracciate stracciato adj +stracciatella stracciatella nom +stracciati stracciato adj +stracciato stracciare ver +straccio straccio nom +stracciona straccione nom +straccione straccione nom +straccioni straccione nom +straccivendoli straccivendolo nom +straccivendolo straccivendolo nom +stracciò stracciare ver +stracco stracco nom +stracittà stracittà nom +stracotta stracotto adj +stracotte stracotto adj +stracotti stracuocere ver +stracotto stracotto nom +strada strada nom +stradale stradale adj +stradali stradale adj +stradari stradario nom +stradario stradario nom +strade strada nom +stradina stradino nom +stradine stradino nom +stradini stradino nom +stradino stradino nom +stradista stradista nom +stradiste stradista nom +stradisti stradista nom +stradivari stradivario nom +stradivario stradivario nom +stradone stradone nom +stradoni stradone nom +strafa strafare ver +strafalcione strafalcione nom +strafalcioni strafalcione nom +strafare strafare ver +strafatta strafare ver +strafatti strafare ver +strafatto strafare ver +straforo straforo nom +strafotte strafottere ver +strafottente strafottente adj +strafottenti strafottente adj +strafottenza strafottenza nom +strafottersene strafottere ver +strafotto strafottere ver +strage strage nom +stragi strage nom +stragiudiziale stragiudiziale adj +stragiudiziali stragiudiziale adj +stragli straglio nom +straglio straglio nom +stragrande stragrande adj +stralci stralcio nom +stralcia stralciare ver +stralciando stralciare ver +stralciare stralciare ver +stralciarono stralciare ver +stralciata stralciare ver +stralciate stralciare ver +stralciati stralciare ver +stralciato stralciare ver +stralcio stralcio nom +stralciò stralciare ver +strale strale nom +strali strale nom +stralli strallo nom +strallo strallo nom +straluna stralunare ver +stralunata stralunato adj +stralunate stralunato adj +stralunati stralunato adj +stralunato stralunato adj +stralunava stralunare ver +stramaledetta stramaledire ver +stramaledette stramaledire ver +stramaledetti stramaledire ver +stramaledetto stramaledire ver +stramaledica stramaledire ver +stramazza stramazzare ver +stramazzando stramazzare ver +stramazzante stramazzare ver +stramazzare stramazzare ver +stramazzarono stramazzare ver +stramazzati stramazzare ver +stramazzato stramazzare ver +stramazzi stramazzo nom +stramazzo stramazzo nom +stramazzò stramazzare ver +stramba strambo adj +strambe strambo adj +stramberia stramberia nom +stramberie stramberia nom +strambi strambo adj +strambo strambo adj +strambotti strambotto nom +strambotto strambotto nom +strame strame nom +strami strame nom +stramonio stramonio nom +strampalata strampalato adj +strampalate strampalato adj +strampalati strampalato adj +strampalato strampalato adj +strana strano adj +stranamente stranamente adv +strane strano adj +stranezza stranezza nom +stranezze stranezza nom +strangola strangolare ver +strangolai strangolare ver +strangolamenti strangolamento nom +strangolamento strangolamento nom +strangolammo strangolare ver +strangolando strangolare ver +strangolandola strangolare ver +strangolandole strangolare ver +strangolandoli strangolare ver +strangolandolo strangolare ver +strangolandosi strangolare ver +strangolano strangolare ver +strangolarci strangolare ver +strangolare strangolare ver +strangolarla strangolare ver +strangolarle strangolare ver +strangolarli strangolare ver +strangolarlo strangolare ver +strangolarono strangolare ver +strangolarsi strangolare ver +strangolata strangolare ver +strangolate strangolare ver +strangolati strangolare ver +strangolato strangolare ver +strangolatore strangolatore nom +strangolatori strangolatore nom +strangolatrice strangolatore nom +strangolava strangolare ver +strangolavano strangolare ver +strangolerà strangolare ver +strangoli strangoli nom +strangolo strangolare ver +strangolò strangolare ver +strani strano adj +straniante straniare ver +stranianti straniare ver +straniare straniare ver +straniata straniare ver +straniati straniare ver +straniato straniare ver +straniera straniero adj +straniere straniero adj +stranieri straniero adj +straniero straniero adj +stranita stranito adj +stranite stranito adj +straniti stranito adj +stranito stranito adj +strano strano adj +straordinari straordinario adj +straordinaria straordinario adj +straordinariamente straordinariamente adv +straordinarie straordinario adj +straordinarietà straordinarietà nom +straordinario straordinario adj +strapaesana strapaesano adj +strapaesane strapaesano adj +strapaesani strapaesano adj +strapaesano strapaesano adj +strapaese strapaese nom +strapagati strapagare ver +strapagato strapagare ver +straparla straparlare ver +straparlando straparlare ver +straparlare straparlare ver +straparlato straparlare ver +straparlerà straparlare ver +straparlo straparlare ver +strapazza strapazzare ver +strapazzami strapazzare ver +strapazzando strapazzare ver +strapazzare strapazzare ver +strapazzarlo strapazzare ver +strapazzata strapazzare ver +strapazzate strapazzato adj +strapazzati strapazzare ver +strapazzato strapazzare ver +strapazzi strapazzo nom +strapazzo strapazzo nom +strapazzò strapazzare ver +strapiena strapieno adj +strapiene strapieno adj +strapieni strapieno adj +strapieno strapieno adj +strapiomba strapiombare ver +strapiombante strapiombare ver +strapiombanti strapiombare ver +strapiombare strapiombare ver +strapiombi strapiombo nom +strapiombo strapiombo nom +strapotente strapotente adj +strapotenti strapotente adj +strapotenza strapotenza nom +strapotere strapotere nom +strappa strappare ver +strappacuore strappacuore adj +strappagli strappare ver +strappai strappare ver +strappalacrime strappalacrime adj +strappami strappare ver +strappando strappare ver +strappandogli strappare ver +strappandoglielo strappare ver +strappandola strappare ver +strappandole strappare ver +strappandoli strappare ver +strappandolo strappare ver +strappandone strappare ver +strappandosi strappare ver +strappano strappare ver +strappar strappare ver +strapparci strappare ver +strappare strappare ver +strappargli strappare ver +strappargliela strappare ver +strapparglieli strappare ver +strapparglielo strappare ver +strapparla strappare ver +strapparle strappare ver +strapparli strappare ver +strapparlo strappare ver +strapparmi strappare ver +strapparne strappare ver +strapparono strappare ver +strapparsela strappare ver +strapparsi strappare ver +strapparti strappare ver +strappasse strappare ver +strappassero strappare ver +strappata strappare ver +strappate strappare ver +strappategli strappare ver +strappatesi strappare ver +strappati strappare ver +strappato strappare ver +strappava strappare ver +strappavano strappare ver +strapperanno strappare ver +strapperei strappare ver +strapperemo strappare ver +strapperà strappare ver +strapperò strappare ver +strappi strappo nom +strappiamo strappare ver +strappino strappare ver +strappo strappo nom +strappò strappare ver +strapuntini strapuntino nom +strapuntino strapuntino nom +straricca straricco adj +straricchi straricco adj +straricco straricco adj +straripa straripare ver +straripamenti straripamento nom +straripamento straripamento nom +straripando straripare ver +straripano straripare ver +straripante straripare ver +straripanti straripare ver +straripare straripare ver +strariparono straripare ver +straripata straripare ver +straripati straripare ver +straripato straripare ver +straripava straripare ver +straripavano straripare ver +straripi straripare ver +straripò straripare ver +strascica strascicare ver +strascicando strascicare ver +strascicano strascicare ver +strascicante strascicare ver +strascicare strascicare ver +strascicata strascicare ver +strascicati strascicare ver +strascicato strascicare ver +strascichi strascico nom +strascico strascico nom +strascina strascinare ver +strascinare strascinare ver +strascinata strascinare ver +strascinate strascinare ver +strascinati strascinare ver +strascinato strascinare ver +strascino strascinare ver +strass strass nom +stratagemma stratagemma nom +stratagemmi stratagemma nom +stratega stratega|stratego nom +strateghe stratega|stratego nom +strateghi stratega|stratego nom +strategia strategia nom +strategica strategico adj +strategicamente strategicamente adv +strategiche strategico adj +strategici strategico adj +strategico strategico adj +strategie strategia nom +stratego stratego nom +strati strato nom +stratifica stratificare ver +stratificando stratificare ver +stratificandosi stratificare ver +stratificano stratificare ver +stratificare stratificare ver +stratificarono stratificare ver +stratificarsi stratificare ver +stratificata stratificare ver +stratificate stratificare ver +stratificatesi stratificare ver +stratificati stratificare ver +stratificato stratificare ver +stratificazione stratificazione nom +stratificazioni stratificazione nom +stratifichino stratificare ver +stratiforme stratiforme adj +stratiformi stratiforme adj +stratigrafia stratigrafia nom +stratigrafica stratigrafico adj +stratigrafiche stratigrafico adj +stratigrafici stratigrafico adj +stratigrafico stratigrafico adj +stratigrafie stratigrafia nom +strato strato nom +stratocumuli stratocumulo nom +stratocumulo stratocumulo nom +stratosfera stratosfera nom +stratosfere stratosfera nom +stratosferica stratosferico adj +stratosferiche stratosferico adj +stratosferici stratosferico adj +stratosferico stratosferico adj +strattona strattonare ver +strattonando strattonare ver +strattonandola strattonare ver +strattonandolo strattonare ver +strattonano strattonare ver +strattonare strattonare ver +strattonarono strattonare ver +strattonarsi strattonare ver +strattonata strattonare ver +strattonate strattonare ver +strattonato strattonare ver +strattonava strattonare ver +strattone strattone nom +strattoni strattone nom +stravaccati stravaccarsi ver +stravaccato stravaccato adj +stravagante stravagante adj +stravaganti stravagante adj +stravaganza stravaganza nom +stravaganze stravaganza nom +stravecchi stravecchio adj +stravecchia stravecchio adj +stravecchie stravecchio adj +stravecchio stravecchio adj +stravede stravedere ver +stravedere stravedere ver +stravedeva stravedere ver +stravedevano stravedere ver +stravedo stravedere ver +stravedono stravedere ver +stravince stravincere ver +stravincendo stravincere ver +stravincere stravincere ver +stravinci stravincere ver +stravinco stravincere ver +stravincono stravincere ver +stravinse stravincere ver +stravinte stravincere ver +stravinto stravincere ver +stravisto stravedere ver +stravizi stravizio nom +stravizio stravizio nom +stravolga stravolgere ver +stravolgano stravolgere ver +stravolge stravolgere ver +stravolgendo stravolgere ver +stravolgendola stravolgere ver +stravolgendole stravolgere ver +stravolgendoli stravolgere ver +stravolgendolo stravolgere ver +stravolgendone stravolgere ver +stravolgente stravolgere ver +stravolgenti stravolgere ver +stravolgeranno stravolgere ver +stravolgere stravolgere ver +stravolgerebbe stravolgere ver +stravolgerla stravolgere ver +stravolgerle stravolgere ver +stravolgerli stravolgere ver +stravolgerlo stravolgere ver +stravolgerne stravolgere ver +stravolgersi stravolgere ver +stravolgerà stravolgere ver +stravolgesse stravolgere ver +stravolgessero stravolgere ver +stravolgeva stravolgere ver +stravolgevano stravolgere ver +stravolgi stravolgere ver +stravolgo stravolgere ver +stravolgono stravolgere ver +stravolse stravolgere ver +stravolsero stravolgere ver +stravolta stravolgere ver +stravolte stravolgere ver +stravolti stravolgere ver +stravolto stravolgere ver +strazi strazio nom +strazia straziare ver +straziami straziare ver +straziando straziare ver +straziandone straziare ver +straziano straziare ver +straziante straziante adj +strazianti straziante adj +straziare straziare ver +straziarla straziare ver +straziarono straziare ver +straziata straziare ver +straziate straziare ver +straziati straziato adj +straziato straziare ver +straziava straziare ver +straziavano straziare ver +strazieranno straziare ver +strazio strazio nom +straziò straziare ver +strega strega nom +stregale stregare ver +stregami stregare ver +stregano stregare ver +stregare stregare ver +stregarla stregare ver +stregata stregare ver +stregate stregare ver +stregati stregare ver +stregato stregare ver +streghe strega nom +streghi stregare ver +streghino stregare ver +strego stregare ver +stregona stregone nom +stregone stregone nom +stregoneria stregoneria nom +stregonerie stregoneria nom +stregoni stregone nom +stregua stregua nom +stregue stregua nom +stregò stregare ver +strelitzia strelitzia nom +strema stremare ver +stremante stremare ver +stremarne stremare ver +stremarono stremare ver +stremata stremare ver +stremate stremare ver +stremati stremare ver +stremato stremare ver +stremi stremo nom +stremo stremo nom +stremò stremare ver +strenna strenna nom +strenne strenna nom +strepa strepere ver +strepita strepitare ver +strepitando strepitare ver +strepitano strepitare ver +strepitante strepitare ver +strepitare strepitare ver +strepitato strepitare ver +strepiti strepitio|strepito nom +strepitio strepitio nom +strepito strepito nom +strepitosa strepitoso adj +strepitose strepitoso adj +strepitosi strepitoso adj +strepitoso strepitoso adj +streptococchi streptococco nom +streptococco streptococco nom +streptomicina streptomicina nom +stress stress nom +stressa stressare ver +stressando stressare ver +stressano stressare ver +stressante stressante adj +stressanti stressante adj +stressare stressare ver +stressarmi stressare ver +stressarono stressare ver +stressarsi stressare ver +stressarvi stressare ver +stressata stressare ver +stressate stressare ver +stressati stressare ver +stressato stressare ver +stressava stressare ver +stressavano stressare ver +stressavo stressare ver +stresserà stressare ver +stressi stressare ver +stressino stressare ver +stresso stressare ver +stressò stressare ver +stretta stretto adj +strettamente strettamente adv +strette stretto adj +strettezza strettezza nom +strettezze strettezza nom +stretti stretto adj +strettissimo strettissimo adj +stretto stretto adj +strettoia strettoia nom +strettoie strettoia nom +stri striare ver +stria stria nom +striale striare ver +striano striare ver +striare striare ver +striata striato adj +striate striato adj +striati striato adj +striato striare ver +striatura striatura nom +striature striatura nom +stricnina stricnina nom +strida strida nom +stride stridere ver +stridendo stridere ver +stridente stridente adj +stridenti stridente adj +strider stridere ver +stridere stridere ver +strideva stridere ver +stridevano stridere ver +stridi stridio|strido nom +stridio stridio nom +strido strido nom +stridono stridere ver +stridore stridore nom +stridori stridore nom +stridula stridulo adj +stridule stridulo adj +striduli stridulo adj +stridulo stridulo adj +strie stria nom +strige strige nom +strigi strige nom +striglia striglia nom +strigliare strigliare ver +strigliata strigliata nom +strigliate strigliata nom +strigliati strigliare ver +strigliato strigliare ver +strigliava strigliare ver +strilla strillare ver +strillando strillare ver +strillano strillare ver +strillante strillare ver +strillanti strillare ver +strillare strillare ver +strillata strillare ver +strillate strillare ver +strillato strillare ver +strillava strillare ver +strillavano strillare ver +strilleranno strillare ver +strilli strillo nom +strillo strillo nom +strillone strillone nom +strilloni strillone nom +strillozzi strillozzo nom +strillozzo strillozzo nom +strillò strillare ver +striminzita striminzire ver +striminzite striminzito adj +striminziti striminzire ver +striminzito striminzire ver +strimpella strimpellare ver +strimpellando strimpellare ver +strimpellano strimpellare ver +strimpellare strimpellare ver +strimpellata strimpellare ver +strimpellato strimpellare ver +strimpellatore strimpellatore nom +strimpellatori strimpellatore nom +strimpellava strimpellare ver +strina strinare ver +strinata strinare ver +strinati strinare ver +strinato strinare ver +stringa stringa nom +stringano stringere ver +stringare stringare ver +stringata stringare ver +stringate stringato adj +stringatezza stringatezza nom +stringati stringato adj +stringato stringare ver +stringe stringere ver +stringemmo stringere ver +stringendo stringere ver +stringendoci stringere ver +stringendogli stringere ver +stringendola stringere ver +stringendole stringere ver +stringendoli stringere ver +stringendolo stringere ver +stringendomi stringere ver +stringendone stringere ver +stringendosi stringere ver +stringendoti stringere ver +stringente stringente adj +stringenti stringente adj +stringer stringere ver +stringeranno stringere ver +stringerci stringere ver +stringere stringere ver +stringerei stringere ver +stringergli stringere ver +stringerla stringere ver +stringerle stringere ver +stringerli stringere ver +stringerlo stringere ver +stringermi stringere ver +stringerne stringere ver +stringersi stringere ver +stringerti stringere ver +stringervi stringere ver +stringerà stringere ver +stringerò stringere ver +stringesse stringere ver +stringessero stringere ver +stringete stringere ver +stringetevi stringere ver +stringeva stringere ver +stringevano stringere ver +stringevo stringere ver +stringhe stringa nom +stringi stringere ver +stringiamo stringere ver +stringiamoci stringere ver +stringimento stringimento nom +stringimi stringere ver +stringiti stringere ver +stringo stringare|stringere ver +stringono stringere ver +strini strinare ver +strino striare ver +strinse stringere ver +strinsero stringere ver +strinsi stringere ver +strio striare ver +strippata strippata nom +strisce striscia nom +striscerebbe strisciare ver +strisci striscio nom +striscia striscia nom +strisciando strisciare ver +strisciandola strisciare ver +strisciandovi strisciare ver +strisciano strisciare ver +strisciante strisciante adj +striscianti strisciante adj +strisciare strisciare ver +strisciarono strisciare ver +strisciasse strisciare ver +strisciata strisciata nom +strisciate strisciata nom +strisciati strisciare ver +strisciato strisciare ver +strisciava strisciare ver +strisciavano strisciare ver +striscio striscio nom +striscione striscione nom +striscioni striscione nom +strisciò strisciare ver +stritola stritolare ver +stritolamento stritolamento nom +stritolando stritolare ver +stritolandogli stritolare ver +stritolandola stritolare ver +stritolandole stritolare ver +stritolandoli stritolare ver +stritolandolo stritolare ver +stritolano stritolare ver +stritolante stritolare ver +stritolanti stritolare ver +stritolare stritolare ver +stritolarla stritolare ver +stritolarli stritolare ver +stritolarlo stritolare ver +stritolata stritolare ver +stritolate stritolare ver +stritolati stritolare ver +stritolato stritolare ver +stritolerà stritolare ver +strizza strizzare ver +strizzami strizzare ver +strizzando strizzare ver +strizzano strizzare ver +strizzare strizzare ver +strizzarle strizzare ver +strizzarono strizzare ver +strizzasse strizzare ver +strizzata strizzare ver +strizzate strizzare ver +strizzati strizzare ver +strizzato strizzare ver +strizzava strizzare ver +strizzavano strizzare ver +strizzi strizzare ver +strizziamo strizzare ver +strizzo strizzare ver +strobili strobilo nom +strobilo strobilo nom +stroboscopio stroboscopio nom +strofa strofa nom +strofanto strofanto nom +strofe strofa|strofe nom +strofi strofe nom +strofica strofico adj +strofiche strofico adj +strofici strofico adj +strofico strofico adj +strofina strofinare ver +strofinacci strofinaccio nom +strofinaccio strofinaccio nom +strofinamenti strofinamento nom +strofinamento strofinamento nom +strofinando strofinare ver +strofinandogli strofinare ver +strofinandola strofinare ver +strofinandole strofinare ver +strofinandoli strofinare ver +strofinandolo strofinare ver +strofinandosi strofinare ver +strofinandovi strofinare ver +strofinano strofinare ver +strofinare strofinare ver +strofinarle strofinare ver +strofinarli strofinare ver +strofinarlo strofinare ver +strofinarsi strofinare ver +strofinata strofinare ver +strofinate strofinare ver +strofinati strofinare ver +strofinato strofinare ver +strofinava strofinare ver +strofinavano strofinare ver +strofinio strofinio nom +strofinò strofinare ver +strolaga strolaga nom +strolaghe strolaga nom +stroma stroma nom +strombatura strombatura nom +strombature strombatura nom +strombazzando strombazzare ver +strombazzante strombazzare ver +strombazzare strombazzare ver +strombazzate strombazzare ver +strombazzati strombazzare ver +strombazzatori strombazzatore nom +strombi strombo nom +strombo strombo nom +stromi stroma nom +stronca stroncare ver +stroncai stroncare ver +stroncando stroncare ver +stroncandola stroncare ver +stroncandole stroncare ver +stroncandoli stroncare ver +stroncandolo stroncare ver +stroncandone stroncare ver +stroncano stroncare ver +stroncanti stroncare ver +stroncare stroncare ver +stroncargli stroncare ver +stroncarla stroncare ver +stroncarle stroncare ver +stroncarlo stroncare ver +stroncarne stroncare ver +stroncarono stroncare ver +stroncasse stroncare ver +stroncata stroncare ver +stroncate stroncare ver +stroncati stroncare ver +stroncato stroncare ver +stroncatore stroncatore nom +stroncatori stroncatore nom +stroncatura stroncatura nom +stroncature stroncatura nom +stroncava stroncare ver +stroncherebbe stroncare ver +stroncherei stroncare ver +stroncherà stroncare ver +stronchi stroncare ver +stronchiamo stroncare ver +stronchino stroncare ver +stronco stroncare ver +stroncò stroncare ver +stronza stronzo nom +stronzi stronzio|stronzo nom +stronzio stronzio nom +stronzo stronzo nom +stropicci stropicciare ver +stropiccia stropicciare ver +stropicciandosi stropicciare ver +stropicciare stropicciare ver +stropicciarsi stropicciare ver +stropicciata stropicciare ver +stropicciate stropicciare ver +stropicciati stropicciare ver +stropicciato stropicciare ver +stroppi stroppo nom +stroppia stroppiare ver +stroppio stroppiare ver +stroppo stroppo nom +strozza strozza nom +strozzamento strozzamento nom +strozzando strozzare ver +strozzandola strozzare ver +strozzandolo strozzare ver +strozzandosi strozzare ver +strozzano strozzare ver +strozzante strozzare ver +strozzare strozzare ver +strozzarla strozzare ver +strozzarlo strozzare ver +strozzarmi strozzare ver +strozzarono strozzare ver +strozzarsi strozzare ver +strozzata strozzare ver +strozzate strozzato adj +strozzati strozzare ver +strozzato strozzare ver +strozzatura strozzatura nom +strozzature strozzatura nom +strozzava strozzare ver +strozzavano strozzare ver +strozzerei strozzare ver +strozzi strozzare ver +strozzina strozzino nom +strozzinaggio strozzinaggio nom +strozzini strozzino nom +strozzino strozzino nom +strozzo strozzare ver +strozzò strozzare ver +struccata struccare ver +strucchi struccare ver +strucco struccare ver +strudel strudel nom +struffoli struffolo nom +strugge struggere ver +struggendosi struggere ver +struggente struggente adj +struggenti struggente adj +strugger struggere ver +struggere struggere ver +struggersi struggere ver +struggeva struggere ver +struggi struggere ver +struggiamo struggere ver +struggimenti struggimento nom +struggimento struggimento nom +struggo struggere ver +struggono struggere ver +strumentale strumentale adj +strumentali strumentale adj +strumentalizza strumentalizzare ver +strumentalizzando strumentalizzare ver +strumentalizzandola strumentalizzare ver +strumentalizzandole strumentalizzare ver +strumentalizzano strumentalizzare ver +strumentalizzante strumentalizzare ver +strumentalizzare strumentalizzare ver +strumentalizzarli strumentalizzare ver +strumentalizzarlo strumentalizzare ver +strumentalizzata strumentalizzare ver +strumentalizzate strumentalizzare ver +strumentalizzati strumentalizzare ver +strumentalizzato strumentalizzare ver +strumentalizzava strumentalizzare ver +strumentalizzazione strumentalizzazione nom +strumentalizzazioni strumentalizzazione nom +strumentalizzi strumentalizzare ver +strumentalizzò strumentalizzare ver +strumentare strumentare ver +strumentario strumentario nom +strumentata strumentare ver +strumentate strumentare ver +strumentati strumentare ver +strumentato strumentare ver +strumentatore strumentatore nom +strumentazione strumentazione nom +strumentazioni strumentazione nom +strumenti strumento nom +strumentini strumentino nom +strumentista strumentista nom +strumentiste strumentista nom +strumentisti strumentista nom +strumento strumento nom +strumentò strumentare ver +struscia strusciare ver +strusciando strusciare ver +strusciandoci strusciare ver +strusciandosi strusciare ver +strusciare strusciare ver +strusciarsi strusciare ver +strusciata strusciare ver +strusciato strusciare ver +strusciavano strusciare ver +struscio struscio nom +strusse struggere ver +strutta struggere ver +strutte strutto adj +strutto struggere ver +struttura struttura nom +strutturale strutturale adj +strutturali strutturale adj +strutturalismo strutturalismo nom +strutturalista strutturalista nom +strutturaliste strutturalista nom +strutturalisti strutturalista nom +strutturalmente strutturalmente adv +strutturando strutturare ver +strutturandola strutturare ver +strutturandole strutturare ver +strutturandolo strutturare ver +strutturandosi strutturare ver +strutturano strutturare ver +strutturante strutturare ver +strutturanti strutturare ver +strutturare strutturare ver +strutturarla strutturare ver +strutturarle strutturare ver +strutturarli strutturare ver +strutturarlo strutturare ver +strutturarne strutturare ver +strutturarono strutturare ver +strutturarsi strutturare ver +strutturata strutturare ver +strutturate strutturare ver +strutturati strutturare ver +strutturato strutturare ver +strutturava strutturare ver +strutturavano strutturare ver +strutturazione strutturazione nom +strutturazioni strutturazione nom +strutture struttura nom +struttureranno strutturare ver +strutturerei strutturare ver +strutturerà strutturare ver +strutturi strutturare ver +strutturiamo strutturare ver +strutturino strutturare ver +strutturistica strutturistica nom +strutturo strutturare ver +strutturò strutturare ver +struzzi struzzo nom +struzzo struzzo nom +stucca stucco adj +stuccare stuccare ver +stuccata stuccare ver +stuccate stuccare ver +stuccati stuccare ver +stuccato stuccare ver +stuccatore stuccatore nom +stuccatori stuccatore nom +stuccatrice stuccatore nom +stuccatura stuccatura nom +stuccature stuccatura nom +stucchevole stucchevole adj +stucchevoli stucchevole adj +stucchi stucco nom +stucco stucco nom +studente studente nom +studentesca studentesco adj +studentesche studentesco adj +studenteschi studentesco adj +studentesco studentesco adj +studentessa studente nom +studentesse studente nom +studenti studente nom +studi studio nom +studia studiare ver +studiai studiare ver +studiale studiare ver +studiamo studiare ver +studiamoci studiare ver +studiando studiare ver +studiandola studiare ver +studiandole studiare ver +studiandoli studiare ver +studiandolo studiare ver +studiandomi studiare ver +studiandone studiare ver +studiandosi studiare ver +studiandovi studiare ver +studiano studiare ver +studiar studiare ver +studiarci studiare ver +studiare studiare ver +studiarla studiare ver +studiarle studiare ver +studiarli studiare ver +studiarlo studiare ver +studiarmela studiare ver +studiarmele studiare ver +studiarmelo studiare ver +studiarmi studiare ver +studiarne studiare ver +studiarono studiare ver +studiarsi studiare ver +studiarti studiare ver +studiarvi studiare ver +studiasse studiare ver +studiassero studiare ver +studiassi studiare ver +studiata studiare ver +studiatamente studiatamente adv +studiate studiare ver +studiatevi studiare ver +studiati studiare ver +studiato studiare ver +studiava studiare ver +studiavamo studiare ver +studiavano studiare ver +studiavo studiare ver +studierai studiare ver +studieranno studiare ver +studierebbe studiare ver +studierebbero studiare ver +studierei studiare ver +studieremo studiare ver +studierà studiare ver +studierò studiare ver +studino studiare ver +studio studio nom +studioli studiolo nom +studiolo studiolo nom +studiosa studioso nom +studiose studioso nom +studiosi studioso nom +studioso studioso nom +studiò studiare ver +stufa stufa nom +stufando stufare ver +stufano stufare ver +stufare stufare ver +stufarmi stufare ver +stufarono stufare ver +stufarsi stufare ver +stufata stufare ver +stufate stufato adj +stufati stufare ver +stufato stufare ver +stufe stufa nom +stuferanno stufare ver +stuferà stufare ver +stuferò stufare ver +stufi stufo adj +stufo stufo adj +stufò stufare ver +stuka stuka nom +stuoia stuoia nom +stuoie stuoia nom +stuoli stuolo nom +stuolo stuolo nom +stupa stupa nom +stupe stupa nom +stupefacendo stupefare ver +stupefacente stupefacente adj +stupefacenti stupefacente adj +stupefare stupefare ver +stupefatta stupefare ver +stupefatte stupefare ver +stupefatti stupefare ver +stupefatto stupefare ver +stupefazione stupefazione nom +stupenda stupendo adj +stupende stupendo adj +stupendi stupendo adj +stupendo stupendo adj +stupendoli stupire ver +stupendolo stupire ver +stupendomi stupire ver +stupendosi stupire ver +stupiamo stupire ver +stupiamoci stupire ver +stupiate stupire ver +stupida stupido adj +stupidaggine stupidaggine nom +stupidaggini stupidaggine nom +stupide stupido adj +stupidi stupido adj +stupidisco stupidire ver +stupidissimo stupidire ver +stupidita stupidire ver +stupidità stupidità nom +stupido stupido adj +stupir stupire ver +stupirai stupire ver +stupiranno stupire ver +stupirci stupire ver +stupire stupire ver +stupirebbe stupire ver +stupirei stupire ver +stupiremo stupire ver +stupirete stupire ver +stupirla stupire ver +stupirli stupire ver +stupirlo stupire ver +stupirmi stupire ver +stupirono stupire ver +stupirsene stupire ver +stupirsi stupire ver +stupirti stupire ver +stupirvi stupire ver +stupirà stupire ver +stupirò stupire ver +stupisca stupire ver +stupiscano stupire ver +stupisce stupire ver +stupisci stupire ver +stupiscimi stupire ver +stupisco stupire ver +stupiscono stupire ver +stupisse stupire ver +stupita stupire ver +stupite stupire ver +stupitemi stupire ver +stupitevi stupire ver +stupiti stupire ver +stupito stupire ver +stupiva stupire ver +stupivano stupire ver +stupivo stupire ver +stupore stupore nom +stupori stupore nom +stuporoso stuporoso adj +stupra stuprare ver +stuprando stuprare ver +stuprandola stuprare ver +stuprandole stuprare ver +stuprano stuprare ver +stuprare stuprare ver +stuprarla stuprare ver +stuprarle stuprare ver +stuprarlo stuprare ver +stuprarono stuprare ver +stuprasse stuprare ver +stuprata stuprare ver +stuprate stuprare ver +stuprati stuprare ver +stuprato stuprare ver +stupratore stupratore nom +stupratori stupratore nom +stupratrice stupratore nom +stuprava stuprare ver +stupravano stuprare ver +stuprerà stuprare ver +stupri stupro nom +stupro stupro nom +stuprò stuprare ver +stupì stupire ver +stura stura nom +sturare sturare ver +sture stura nom +sturi sturare ver +stuzzica stuzzicare ver +stuzzicadenti stuzzicadenti nom +stuzzicando stuzzicare ver +stuzzicandola stuzzicare ver +stuzzicandolo stuzzicare ver +stuzzicano stuzzicare ver +stuzzicante stuzzicante adj +stuzzicanti stuzzicante adj +stuzzicar stuzzicare ver +stuzzicarci stuzzicare ver +stuzzicare stuzzicare ver +stuzzicarla stuzzicare ver +stuzzicarle stuzzicare ver +stuzzicarli stuzzicare ver +stuzzicarlo stuzzicare ver +stuzzicarne stuzzicare ver +stuzzicarsi stuzzicare ver +stuzzicasse stuzzicare ver +stuzzicata stuzzicare ver +stuzzicate stuzzicare ver +stuzzicati stuzzicare ver +stuzzicato stuzzicare ver +stuzzicava stuzzicare ver +stuzzicavano stuzzicare ver +stuzzico stuzzicare ver +stuzzicò stuzzicare ver +stà stà ver +su su pre +sua suo pro +suada suadere ver +suade suadere ver +suadente suadente adj +suadenti suadente adj +suadere suadere ver +suasa suaso adj +suase suaso adj +suasi suaso adj +suasiva suasivo adj +suasivo suasivo adj +suaso suaso adj +sub sub nom +subacquea subacqueo adj +subacquee subacqueo adj +subacquei subacqueo adj +subacqueo subacqueo adj +subaffitta subaffittare ver +subaffittare subaffittare ver +subaffittarle subaffittare ver +subaffittarono subaffittare ver +subaffittata subaffittare ver +subaffittato subaffittare ver +subaffitto subaffittare ver +subaffittò subaffittare ver +subalpina subalpino adj +subalpine subalpino adj +subalpini subalpino adj +subalpino subalpino adj +subalterna subalterno adj +subalterne subalterno adj +subalterni subalterno nom +subalterno subalterno adj +subappalta subappaltare ver +subappaltando subappaltare ver +subappaltano subappaltare ver +subappaltante subappaltare ver +subappaltanti subappaltare ver +subappaltare subappaltare ver +subappaltata subappaltare ver +subappaltati subappaltare ver +subappaltato subappaltare ver +subappaltatore subappaltatore nom +subappaltatori subappaltatore nom +subappaltatrice subappaltatrice adj +subappaltatrici subappaltatrice adj +subappaltavano subappaltare ver +subappalti subappalto nom +subappalto subappalto nom +subappaltò subappaltare ver +subartica subartico adj +subartiche subartico adj +subartici subartico adj +subartico subartico adj +subasta subasta nom +subatomica subatomico adj +subatomiche subatomico adj +subatomici subatomico adj +subatomico subatomico adj +subbi subbio nom +subbia subbia nom +subbie subbia nom +subbio subbio nom +subbugli subbuglio nom +subbuglio subbuglio nom +subconsci subconscio adj +subconscia subconscio adj +subconscie subconscio adj +subconscio subconscio nom +subcontinente subcontinente nom +subcontinenti subcontinente nom +subcosciente subcosciente nom +subcultura subcultura nom +subdesertiche subdesertico adj +subdesertico subdesertico adj +subdola subdolo adj +subdole subdolo adj +subdoli subdolo adj +subdolo subdolo adj +subendo subire ver +subendole subire ver +subendoli subire ver +subendolo subire ver +subendone subire ver +subenfiteusi subenfiteusi nom +subente subire ver +subentra subentrare ver +subentragli subentrare ver +subentrando subentrare ver +subentrandogli subentrare ver +subentrano subentrare ver +subentrante subentrare ver +subentranti subentrare ver +subentrare subentrare ver +subentrargli subentrare ver +subentrarle subentrare ver +subentrarne subentrare ver +subentrarono subentrare ver +subentrarvi subentrare ver +subentrasse subentrare ver +subentrassero subentrare ver +subentrata subentrare ver +subentrate subentrare ver +subentrati subentrare ver +subentrato subentrare ver +subentrava subentrare ver +subentravano subentrare ver +subentreranno subentrare ver +subentrerebbe subentrare ver +subentrerà subentrare ver +subentri subentrare ver +subentrino subentrare ver +subentro subentro nom +subentrò subentrare ver +subequatoriale subequatoriale adj +subequatoriali subequatoriale adj +suberificazione suberificazione nom +suberificazioni suberificazione nom +subfornitura subfornitura nom +subforniture subfornitura nom +subiamo subire ver +subiate subire ver +subii subire ver +subimmo subire ver +subir subire ver +subirai subire ver +subiranno subire ver +subire subire ver +subirebbe subire ver +subirebbero subire ver +subirla subire ver +subirle subire ver +subirli subire ver +subirlo subire ver +subirne subire ver +subirono subire ver +subirsi subire ver +subirvi subire ver +subirà subire ver +subisca subire ver +subiscano subire ver +subisce subire ver +subisci subire ver +subisco subire ver +subiscono subire ver +subissando subissare ver +subissare subissare ver +subissata subissare ver +subissate subissare ver +subissati subissare ver +subissato subissare ver +subisse subire ver +subissero subire ver +subisso subisso nom +subissò subissare ver +subita subire ver +subitanea subitaneo adj +subitanee subitaneo adj +subitanei subitaneo adj +subitaneo subitaneo adj +subite subito adj +subiti subire ver +subito subito adv_sup +subiva subire ver +subivano subire ver +sublima sublime adj +sublimaci sublimare ver +sublimando sublimare ver +sublimandolo sublimare ver +sublimandosi sublimare ver +sublimano sublimare ver +sublimante sublimare ver +sublimare sublimare ver +sublimarsi sublimare ver +sublimata sublimare ver +sublimate sublimare ver +sublimati sublimare ver +sublimato sublimare ver +sublimava sublimare ver +sublimazione sublimazione nom +sublimazioni sublimazione nom +sublime sublime adj +sublimerà sublimare ver +sublimi sublime adj +subliminale subliminale adj +subliminali subliminale adj +sublimino sublimare ver +sublimità sublimità nom +sublimò sublimare ver +sublocazione sublocazione nom +sublocazioni sublocazione nom +subloco sublocare ver +sublunare sublunare adj +sublunari sublunare adj +subnormale subnormale adj +subnormali subnormale adj +subodora subodorare ver +subodorando subodorare ver +subodorare subodorare ver +subodorato subodorare ver +subodoro subodorare ver +subodorò subodorare ver +suborbitale suborbitale adj +suborbitali suborbitale adj +subordina subordinare ver +subordinando subordinare ver +subordinandola subordinare ver +subordinandole subordinare ver +subordinandoli subordinare ver +subordinandolo subordinare ver +subordinandone subordinare ver +subordinandosi subordinare ver +subordinano subordinare ver +subordinante subordinare ver +subordinanti subordinare ver +subordinare subordinare ver +subordinarlo subordinare ver +subordinarono subordinare ver +subordinarsi subordinare ver +subordinasse subordinare ver +subordinassero subordinare ver +subordinata subordinare ver +subordinatamente subordinatamente adv +subordinate subordinare ver +subordinati subordinato nom +subordinato subordinare ver +subordinava subordinare ver +subordinazione subordinazione nom +subordinazioni subordinazione nom +subordine subordine nom +subordinerà subordinare ver +subordini subordinare ver +subordinò subordinare ver +subornare subornare ver +subornata subornare ver +subornati subornare ver +subornato subornare ver +subornazione subornazione nom +subregionale subregionale adj +subregionali subregionale adj +subregioni subregioni nom +subrettina subrettina nom +subrettine subrettina nom +subsahariana subsahariano adj +subsidente subsidente adj +subsidenti subsidente adj +subsidenza subsidenza nom +subsidenze subsidenza nom +subsonica subsonico adj +subsoniche subsonico adj +subsonici subsonico adj +subsonico subsonico adj +substrati substrato nom +substrato substrato nom +subtotali subtotale nom +subtropicale subtropicale adj +subtropicali subtropicale adj +subumane subumano adj +subumani subumano adj +subumano subumano adj +suburbana suburbano adj +suburbane suburbano adj +suburbani suburbano adj +suburbano suburbano adj +suburbi suburbio nom +suburbio suburbio nom +suburra suburra nom +subì subire ver +succeda succedere ver +succedanea succedaneo adj +succedanee succedaneo adj +succedanei succedaneo adj +succedaneo succedaneo nom +succedano succedere ver +succede succedere ver +succedendo succedere ver +succedendogli succedere ver +succedendosi succedere ver +succedenti succedere ver +succeder succedere ver +succederanno succedere ver +succedere succedere ver +succederebbe succedere ver +succederebbero succedere ver +succedergli succedere ver +succederla succedere ver +succederle succedere ver +succederli succedere ver +succederlo succedere ver +succedermi succedere ver +succedersi succedere ver +succederti succedere ver +succederà succedere ver +succedesse succedere ver +succedessero succedere ver +succedette succedere ver +succedettero succedere ver +succedeva succedere ver +succedevano succedere ver +succeditrice succeditrice nom +succeditrici succeditrice nom +succedono succedere ver +succeduta succedere ver +succedute succedere ver +succeduti succedere ver +succedutisi succedere ver +succeduto succedere ver +successe succedere ver +successi successo nom +successione successione nom +successioni successione nom +successiva successivo adj +successivamente successivamente adv_sup +successive successivo adj +successivi successivo adj +successivo successivo adj +successo succedere ver +successore successore nom +successori successore nom +successoria successorio adj +successorie successorio adj +successorio successorio adj +succhi succhio|succo nom +succhia succhiare ver +succhialo succhiare ver +succhiamelo succhiare ver +succhiami succhiare ver +succhiando succhiare ver +succhiandogli succhiare ver +succhiandola succhiare ver +succhiandole succhiare ver +succhiandone succhiare ver +succhiandosi succhiare ver +succhiano succhiare ver +succhiante succhiare ver +succhianti succhiare ver +succhiare succhiare ver +succhiargli succhiare ver +succhiarle succhiare ver +succhiarlo succhiare ver +succhiarne succhiare ver +succhiarono succhiare ver +succhiarsi succhiare ver +succhiarti succhiare ver +succhiata succhiare ver +succhiate succhiare ver +succhiati succhiare ver +succhiato succhiare ver +succhiatore succhiatore nom +succhiatori succhiatore nom +succhiatrice succhiatore nom +succhiatrici succhiatore nom +succhiava succhiare ver +succhiavano succhiare ver +succhielli succhiello nom +succhiello succhiello nom +succhieranno succhiare ver +succhierà succhiare ver +succhino succhiare ver +succhio succhio nom +succhiotti succhiotto nom +succhiotto succhiotto nom +succhiò succhiare ver +succiacapre succiacapre nom +succiamele succiamele nom +succida succidere ver +succidere succidere ver +succinta succinto adj +succinte succingere ver +succinti succinto adj +succinto succinto adj +succisa succidere ver +succiso succidere ver +succitata succitata adj +succitati succitati adj +succlavi succlavio adj +succlavia succlavio adj +succlavie succlavio adj +succlavio succlavio adj +succo succo nom +succosa succoso adj +succose succoso adj +succosi succoso adj +succoso succoso adj +succuba succubo adj +succube succube|succubo adj +succubi succube|succubo adj +succubo succubo adj +succulenta succulento adj +succulente succulento adj +succulenti succulento adj +succulento succulento adj +succursale succursale nom +succursali succursale nom +sud sud nom +suda sudare ver +sudafricana sudafricano adj +sudafricane sudafricano adj +sudafricani sudafricano adj +sudafricano sudafricano adj +sudamericana sudamericano adj +sudamericane sudamericano adj +sudamericani sudamericano adj +sudamericano sudamericano adj +sudando sudare ver +sudanese sudanese adj +sudanesi sudanese adj +sudano sudare ver +sudante sudare ver +sudar sudare ver +sudare sudare ver +sudari sudario nom +sudario sudario nom +sudarono sudare ver +sudarsi sudare ver +sudasse sudare ver +sudata sudato adj +sudate sudato adj +sudati sudare ver +sudaticcia sudaticcio adj +sudaticcio sudaticcio adj +sudato sudare ver +sudava sudare ver +sudavo sudare ver +sudcoreani sudcoreano adj +sudcoreano sudcoreano adj +suddetta suddetto adj +suddette suddetto adj +suddetti suddetto adj +suddetto suddetto adj +suddiaconato suddiaconato nom +suddiaconi suddiacono nom +suddiacono suddiacono nom +suddita suddito nom +sudditanza sudditanza nom +sudditanze sudditanza nom +suddite suddito nom +sudditi suddito nom +suddito suddito nom +suddivida suddividere ver +suddividano suddividere ver +suddivide suddividere ver +suddividendo suddividere ver +suddividendola suddividere ver +suddividendole suddividere ver +suddividendoli suddividere ver +suddividendolo suddividere ver +suddividendone suddividere ver +suddividendosi suddividere ver +suddivideranno suddividere ver +suddividere suddividere ver +suddividerebbe suddividere ver +suddividerei suddividere ver +suddividerla suddividere ver +suddividerle suddividere ver +suddividerli suddividere ver +suddividerlo suddividere ver +suddividersi suddividere ver +suddividerà suddividere ver +suddivideva suddividere ver +suddividevano suddividere ver +suddividi suddividere ver +suddividiamo suddividere ver +suddivido suddividere ver +suddividono suddividere ver +suddivisa suddividere ver +suddivise suddividere ver +suddivisero suddividere ver +suddivisi suddividere ver +suddivisibile suddivisibile adj +suddivisibili suddivisibile adj +suddivisione suddivisione nom +suddivisioni suddivisione nom +suddiviso suddividere ver +sudi sudare ver +sudiamocela sudare ver +sudice sudicio adj +sudiceria sudiceria nom +sudici sudicio adj +sudicia sudicio adj +sudicie sudicio adj +sudicio sudicio adj +sudiciume sudiciume nom +sudista sudista nom +sudiste sudista nom +sudisti sudista nom +sudo sudare ver +sudoccidentale sudoccidentale adj +sudorazione sudorazione nom +sudorazioni sudorazione nom +sudore sudore nom +sudori sudore nom +sudorientale sudorientale adj +sudorifera sudorifero adj +sudorifere sudorifero adj +sudorifero sudorifero adj +sudoripara sudoriparo adj +sudoripare sudoriparo adj +sudoripari sudoriparo adj +sudoriparo sudoriparo adj +sudovest sudovest nom +sudò sudare ver +sue suo pro +suesposti suesposto adj +suesposto suesposto adj +sufficiente sufficiente adj +sufficientemente sufficientemente adv +sufficienti sufficiente adj +sufficienza sufficienza nom +sufficienze sufficienza nom +suffissi suffisso nom +suffisso suffisso nom +suffissoide suffissoide nom +suffissoidi suffissoide nom +suffraga suffragare ver +suffragando suffragare ver +suffragane suffragare ver +suffragano suffragare ver +suffragante suffragare ver +suffraganti suffragare ver +suffragare suffragare ver +suffragarla suffragare ver +suffragarne suffragare ver +suffragasse suffragare ver +suffragassero suffragare ver +suffragata suffragare ver +suffragate suffragare ver +suffragati suffragare ver +suffragato suffragare ver +suffragetta suffragetta nom +suffragette suffragetta nom +suffragherebbe suffragare ver +suffraghi suffragare ver +suffraghino suffragare ver +suffragi suffragio nom +suffragio suffragio nom +suffragista suffragista nom +suffragiste suffragista nom +suffragisti suffragista nom +suffragò suffragare ver +suffrutice suffrutice nom +suffrutici suffrutice nom +suffruticosa suffruticoso adj +suffruticose suffruticoso adj +suffruticosi suffruticoso adj +suffruticoso suffruticoso adj +suffumigi suffumigio nom +suffumigio suffumigio nom +sugarelli sugarello nom +sugga suggere ver +sugge suggere ver +suggella suggellare ver +suggellando suggellare ver +suggellano suggellare ver +suggellare suggellare ver +suggellarne suggellare ver +suggellarono suggellare ver +suggellata suggellare ver +suggellate suggellare ver +suggellati suggellare ver +suggellato suggellare ver +suggellava suggellare ver +suggelleranno suggellare ver +suggellerà suggellare ver +suggelli suggello nom +suggello suggello nom +suggellò suggellare ver +suggendo suggere ver +sugger suggere ver +suggere suggere ver +suggerendo suggerire ver +suggerendoci suggerire ver +suggerendogli suggerire ver +suggerendola suggerire ver +suggerendole suggerire ver +suggerendomi suggerire ver +suggerendone suggerire ver +suggerendoti suggerire ver +suggeriamo suggerire ver +suggerii suggerire ver +suggerimenti suggerimento nom +suggerimento suggerimento nom +suggerir suggerire ver +suggerirai suggerire ver +suggeriranno suggerire ver +suggerirci suggerire ver +suggerire suggerire ver +suggerirebbe suggerire ver +suggerirebbero suggerire ver +suggerirei suggerire ver +suggerireste suggerire ver +suggeriresti suggerire ver +suggerirgli suggerire ver +suggerirglielo suggerire ver +suggerirla suggerire ver +suggerirle suggerire ver +suggerirli suggerire ver +suggerirlo suggerire ver +suggerirmi suggerire ver +suggerirne suggerire ver +suggerirono suggerire ver +suggerirti suggerire ver +suggerirvi suggerire ver +suggerirà suggerire ver +suggerirò suggerire ver +suggerisca suggerire ver +suggeriscano suggerire ver +suggerisce suggerire ver +suggerisci suggerire ver +suggeriscili suggerire ver +suggeriscimi suggerire ver +suggeriscine suggerire ver +suggerisco suggerire ver +suggeriscono suggerire ver +suggerisse suggerire ver +suggerissero suggerire ver +suggerissi suggerire ver +suggerita suggerire ver +suggerite suggerire ver +suggeritegli suggerire ver +suggeritele suggerire ver +suggeritemi suggerire ver +suggeriti suggerire ver +suggerito suggerire ver +suggeritore suggeritore nom +suggeritori suggeritore nom +suggeritrice suggeritore nom +suggeriva suggerire ver +suggerivano suggerire ver +suggerivi suggerire ver +suggerivo suggerire ver +suggerne suggere ver +suggerti suggere ver +suggerì suggerire ver +suggestiona suggestionare ver +suggestionabile suggestionabile adj +suggestionabili suggestionabile adj +suggestionante suggestionare ver +suggestionare suggestionare ver +suggestionarsi suggestionare ver +suggestionata suggestionare ver +suggestionate suggestionato adj +suggestionati suggestionare ver +suggestionato suggestionare ver +suggestione suggestione nom +suggestioni suggestione nom +suggestiva suggestivo adj +suggestive suggestivo adj +suggestivi suggestivo adj +suggestività suggestività nom +suggestivo suggestivo adj +suggeva suggere ver +suggi suggere ver +suggono suggere ver +sughera sughera nom +sughere sughera nom +sughereti sughereto nom +sughereto sughereto nom +sugheri sughero nom +sugherificio sugherificio nom +sughero sughero nom +sugherosa sugheroso adj +sugherosi sugheroso adj +sughi sugo nom +sugli sul pre +sugna sugna nom +sugo sugo nom +sugosa sugoso adj +sugose sugoso adj +sui sul pre +suicida suicida adj +suicidando suicidarsi ver +suicidandosi suicidarsi ver +suicidano suicidarsi ver +suicidare suicidarsi ver +suicidarmi suicidarsi ver +suicidarono suicidarsi ver +suicidarsi suicidarsi ver +suicidarti suicidarsi ver +suicidasse suicidarsi ver +suicidata suicidarsi ver +suicidate suicidarsi ver +suicidati suicidarsi ver +suicidato suicidarsi ver +suicidava suicidarsi ver +suicidavano suicidarsi ver +suicide suicida adj +suicideranno suicidarsi ver +suiciderà suicidarsi ver +suicidi suicida adj +suicidia suicidio nom +suicidii suicidio nom +suicidio suicidio nom +suicido suicidarsi ver +suicidò suicidarsi ver +suina suino adj +suindicata suindicato adj +suindicati suindicato adj +suindicato suindicato adj +suine suino adj +suini suino adj +suino suino nom +suite suite nom +suiveur suiveur nom +sul sul pre +sulfamidica sulfamidico adj +sulfamidici sulfamidico adj +sulfamidico sulfamidico nom +sulfurea sulfureo adj +sulfuree sulfureo adj +sulfurei sulfureo adj +sulfureo sulfureo adj +sulky sulky nom +sull sull sw +sulla sul pre +sulle sul pre +sullo sul pre +sultana sultano nom +sultanati sultanato nom +sultanato sultanato nom +sultane sultano nom +sultani sultano nom +sultanina sultanina nom +sultanine sultanina nom +sultano sultano nom +summa summa nom +summe summa nom +summenzionata summenzionato adj +summenzionate summenzionato adj +summenzionati summenzionare ver +summenzionato summenzionato adj +summit summit nom +sunnita sunnita adj +sunnominata sunnominato adj +sunnominate sunnominato adj +sunnominati sunnominato adj +sunnominato sunnominato adj +sunteggia sunteggiare ver +sunteggiare sunteggiare ver +sunteggiò sunteggiare ver +sunti sunto nom +sunto sunto nom +suo suo pro +suocera suocero nom +suocere suocero nom +suoceri suocero nom +suocero suocero nom +suoi suo pro +suola suola nom +suolate suolare ver +suole solere ver +suoli suolo nom +suolo suolo nom +suona suonare ver +suonai suonare ver +suonala suonare ver +suonalo suonare ver +suonami suonare ver +suonammo suonare ver +suonando suonare ver +suonandola suonare ver +suonandole suonare ver +suonandoli suonare ver +suonandolo suonare ver +suonandone suonare ver +suonano suonare ver +suonante suonare ver +suonanti suonare ver +suonar suonare ver +suonarci suonare ver +suonare suonare ver +suonargli suonare ver +suonarla suonare ver +suonarle suonare ver +suonarli suonare ver +suonarlo suonare ver +suonarmi suonare ver +suonarne suonare ver +suonarono suonare ver +suonarsela suonare ver +suonarsele suonare ver +suonarsi suonare ver +suonarvela suonare ver +suonarvi suonare ver +suonasse suonare ver +suonassero suonare ver +suonassi suonare ver +suonassimo suonare ver +suonata suonare ver +suonate suonare ver +suonati suonare ver +suonato suonare ver +suonatore suonatore nom +suonatori suonatore nom +suonatrice suonatore nom +suonatrici suonatore nom +suonava suonare ver +suonavamo suonare ver +suonavano suonare ver +suonavi suonare ver +suonavo suonare ver +suoneranno suonare ver +suonerebbe suonare ver +suonerebbero suonare ver +suoneremo suonare ver +suonerete suonare ver +suoneria suoneria nom +suonerie suoneria nom +suonerà suonare ver +suonerò suonare ver +suoni suono nom +suoniamo suonare ver +suoniate suonare ver +suonino suonare ver +suono suono nom +suonò suonare ver +suor suor nom +suora suora nom +suore suora nom +super super adj +supera superare ver +superabile superabile adj +superabili superabile adj +superaci superare ver +superaffollata superaffollato adj +superaffollate superaffollato adj +superaffollato superaffollato adj +superai superare ver +superalcolici superalcolico nom +superallenamento superallenamento nom +superamenti superamento nom +superamento superamento nom +superammo superare ver +superando superare ver +superandola superare ver +superandole superare ver +superandoli superare ver +superandolo superare ver +superandone superare ver +superandosi superare ver +superano superare ver +superante superare ver +superanti superare ver +superar superare ver +superarci superare ver +superare superare ver +superarla superare ver +superarle superare ver +superarli superare ver +superarlo superare ver +superarmi superare ver +superarne superare ver +superarono superare ver +superarsi superare ver +superasse superare ver +superassero superare ver +superassi superare ver +superata superare ver +superate superare ver +superatele superare ver +superati superare ver +superato superare ver +superattico superattico nom +superava superare ver +superavano superare ver +superavi superare ver +superba superbo adj +superbe superbo adj +superbi superbo adj +superbia superbia nom +superbo superbo adj +supercarburante supercarburante nom +superconduttiva superconduttivo adj +superconduttive superconduttivo adj +superconduttivi superconduttivo adj +superconduttività superconduttività nom +superconduttivo superconduttivo adj +superdecorato superdecorato nom +superdonna superdonna nom +superdonne superdonna nom +supere supero adj +superego superego nom +supererai superare ver +supereranno superare ver +supererebbe superare ver +supererebbero superare ver +supererei superare ver +supereremmo superare ver +supereremo superare ver +supererete superare ver +supererà superare ver +supererò superare ver +supereterodina supereterodina nom +superfici superficie nom +superficiale superficiale adj +superficiali superficiale adj +superficialmente superficialmente adv +superficie superficie nom +superflua superfluo adj +superflue superfluo adj +superflui superfluo adj +superfluità superfluità nom +superfluo superfluo adj +superi superare ver +superiamo superare ver +superino superare ver +superiora superiora adj +superiore superiore adj +superiori superiore adj +superiorità superiorità nom +superlativa superlativo adj +superlative superlativo adj +superlativi superlativo nom +superlativo superlativo nom +superlavoro superlavoro nom +supermarket supermarket nom +supermercati supermercato nom +supermercato supermercato nom +superna superno adj +supernazionale supernazionale adj +superne superno adj +superni superno adj +superno superno adj +supernova supernova nom +supernovae supernovae nom +supero supero adj +superpartito superpartito nom +superpotenza superpotenza nom +superpotenze superpotenza nom +supersonica supersonico adj +supersoniche supersonico adj +supersonici supersonico adj +supersonico supersonico adj +superstar superstar nom +superstite superstite adj +superstiti superstite nom +superstizione superstizione nom +superstizioni superstizione nom +superstiziosa superstizioso adj +superstiziose superstizioso adj +superstiziosi superstizioso adj +superstizioso superstizioso adj +superstrada superstrada nom +superstrade superstrada nom +superteste superteste nom +supertesti superteste nom +supertestimone supertestimone nom +supertestimoni supertestimone nom +superuomini superuomo nom +superuomo superuomo nom +superveloci superveloce adj +supervisione supervisione nom +supervisioni supervisione nom +supervisore supervisore nom +supervisori supervisore nom +superò superare ver +supina supino adj +supinatore supinatore adj +supinatori supinatore adj +supinazione supinazione nom +supine supino adj +supini supino adj +supino supino adj +suppellettile suppellettile nom +suppellettili suppellettile nom +suppergiù suppergiù adv +supplementare supplementare adj +supplementari supplementare adj +supplementi supplemento nom +supplemento supplemento nom +supplendo supplire ver +supplente supplente nom +supplenti supplente nom +supplenza supplenza nom +supplenze supplenza nom +suppletiva suppletivo adj +suppletive suppletivo adj +suppletivi suppletivo adj +suppletivo suppletivo adj +supplica supplica nom +supplicai supplicare ver +supplicando supplicare ver +supplicandola supplicare ver +supplicandole supplicare ver +supplicandoli supplicare ver +supplicandolo supplicare ver +supplicano supplicare ver +supplicante supplicante adj +supplicanti supplicante nom +supplicar supplicare ver +supplicare supplicare ver +supplicarlo supplicare ver +supplicarono supplicare ver +supplicasse supplicare ver +supplicata supplicare ver +supplicate supplicare ver +supplicati supplicare ver +supplicato supplicare ver +supplicava supplicare ver +supplicavano supplicare ver +supplicavo supplicare ver +supplice supplice adj +suppliche supplica nom +supplicherà supplicare ver +supplicherò supplicare ver +supplichevole supplichevole adj +supplichevoli supplichevole adj +supplichi supplicare ver +supplichiamo supplicare ver +supplici supplice adj +supplico supplicare ver +supplicò supplicare ver +supplire supplire ver +supplirla supplire ver +supplirlo supplire ver +supplirono supplire ver +supplirà supplire ver +supplisca supplire ver +suppliscano supplire ver +supplisce supplire ver +supplisco supplire ver +suppliscono supplire ver +supplissero supplire ver +supplita supplire ver +supplite supplire ver +suppliti supplire ver +supplito supplire ver +suppliva supplire ver +supplivano supplire ver +supplizi supplizio nom +supplizia suppliziare ver +suppliziante suppliziare ver +supplizianti suppliziare ver +suppliziare suppliziare ver +suppliziata suppliziare ver +suppliziati suppliziare ver +suppliziato suppliziare ver +supplizio supplizio nom +supplì supplì nom +suppone supporre ver +supponendo supporre ver +supponendola supporre ver +supponendolo supporre ver +supponendosi supporre ver +supponente supponente adj +supponenti supponente adj +supponesse supporre ver +supponete supporre ver +supponeva supporre ver +supponevano supporre ver +supponevo supporre ver +supponga supporre ver +suppongano supporre ver +suppongo supporre ver +suppongono supporre ver +supponi supporre ver +supponiamo supporre ver +supponiamola supporre ver +suppor supporre ver +supporle supporre ver +supporlo supporre ver +supporne supporre ver +supporre supporre ver +supporrebbe supporre ver +supporrei supporre ver +supporremo supporre ver +supporrà supporre ver +supporsi supporre ver +supporta supportare ver +supportai supportare ver +supportando supportare ver +supportandola supportare ver +supportandole supportare ver +supportandoli supportare ver +supportandolo supportare ver +supportandone supportare ver +supportandosi supportare ver +supportano supportare ver +supportante supportare ver +supportanti supportare ver +supportare supportare ver +supportarla supportare ver +supportarle supportare ver +supportarli supportare ver +supportarlo supportare ver +supportarmi supportare ver +supportarne supportare ver +supportarono supportare ver +supportarsi supportare ver +supportasse supportare ver +supportassero supportare ver +supportata supportare ver +supportate supportare ver +supportati supportare ver +supportato supportare ver +supportava supportare ver +supportavano supportare ver +supportavo supportare ver +supporter supporter nom +supporteranno supportare ver +supporterebbe supportare ver +supporterebbero supportare ver +supporterei supportare ver +supporteremo supportare ver +supporterà supportare ver +supporterò supportare ver +supporti supporto nom +supportiamo supportare ver +supportino supportare ver +supporto supporto nom +supportò supportare ver +suppose supporre ver +supposero supporre ver +supposi supporre ver +suppositori suppositorio nom +supposizione supposizione nom +supposizioni supposizione nom +supposta supporre ver +supposte supposta nom +supposti supporre ver +supposto supporre ver +suppuranti suppurare ver +suppurare suppurare ver +suppurata suppurare ver +suppurativa suppurativo adj +suppurative suppurativo adj +suppurativi suppurativo adj +suppurativo suppurativo adj +suppurazione suppurazione nom +suppurazioni suppurazione nom +suprema supremo adj +supremazia supremazia nom +supremazie supremazia nom +supreme supremo adj +supremi supremo adj +supremo supremo adj +suprême suprême nom +surah surah nom +surclassa surclassare ver +surclassando surclassare ver +surclassano surclassare ver +surclassare surclassare ver +surclassarono surclassare ver +surclassasse surclassare ver +surclassata surclassare ver +surclassate surclassare ver +surclassati surclassare ver +surclassato surclassare ver +surclassava surclassare ver +surclassavano surclassare ver +surclassò surclassare ver +surf surf nom +surfing surfing nom +surgela surgelare ver +surgelamento surgelamento nom +surgelare surgelare ver +surgelata surgelare ver +surgelate surgelato adj +surgelati surgelato adj +surgelato surgelato adj +surmenage surmenage nom +surplace surplace nom +surplus surplus nom +surreale surreale adj +surreali surreale adj +surrealismo surrealismo nom +surrealista surrealista adj +surrealiste surrealista adj +surrealisti surrealista adj +surrealistica surrealistico adj +surrealistiche surrealistico adj +surrealistici surrealistico adj +surrealistico surrealistico adj +surrenale surrenale adj +surrenali surrenale adj +surrene surrene nom +surreni surrene nom +surrettizi surrettizio adj +surrettizia surrettizio adj +surrettizie surrettizio adj +surrettizio surrettizio adj +surriscalda surriscaldare ver +surriscaldamenti surriscaldamento nom +surriscaldamento surriscaldamento nom +surriscaldando surriscaldare ver +surriscaldandosi surriscaldare ver +surriscaldano surriscaldare ver +surriscaldare surriscaldare ver +surriscaldarono surriscaldare ver +surriscaldarsi surriscaldare ver +surriscaldasse surriscaldare ver +surriscaldata surriscaldare ver +surriscaldate surriscaldato adj +surriscaldati surriscaldato adj +surriscaldato surriscaldato adj +surriscaldatore surriscaldatore nom +surriscaldatori surriscaldatore nom +surriscaldava surriscaldare ver +surriscaldavano surriscaldare ver +surriscalderebbe surriscaldare ver +surriscalderà surriscaldare ver +surriscaldi surriscaldare ver +surriscaldo surriscaldare ver +surriscaldò surriscaldare ver +surroga surrogare ver +surrogabili surrogabile adj +surrogando surrogare ver +surrogano surrogare ver +surrogante surrogare ver +surrogare surrogare ver +surrogarla surrogare ver +surrogarlo surrogare ver +surrogata surrogato adj +surrogate surrogato adj +surrogati surrogato nom +surrogato surrogato nom +surrogo surrogare ver +suscettibile suscettibile adj +suscettibili suscettibile adj +suscettibilità suscettibilità nom +suscettività suscettività nom +suscita suscitare ver +suscitando suscitare ver +suscitandogli suscitare ver +suscitandole suscitare ver +suscitandone suscitare ver +suscitano suscitare ver +suscitar suscitare ver +suscitare suscitare ver +suscitargli suscitare ver +suscitarla suscitare ver +suscitarmi suscitare ver +suscitarne suscitare ver +suscitarono suscitare ver +suscitarsi suscitare ver +suscitasse suscitare ver +suscitassero suscitare ver +suscitata suscitare ver +suscitate suscitare ver +suscitategli suscitare ver +suscitati suscitare ver +suscitato suscitare ver +suscitatore suscitatore adj +suscitatori suscitatore nom +suscitava suscitare ver +suscitavano suscitare ver +susciteranno suscitare ver +susciterebbe suscitare ver +susciterebbero suscitare ver +susciterà suscitare ver +susciterò suscitare ver +susciti suscitare ver +suscitino suscitare ver +suscito suscitare ver +suscitò suscitare ver +susina susina nom +susini susino nom +susino susino nom +suspense suspense nom +suspicione suspicione nom +sussegua susseguire ver +susseguano susseguire ver +sussegue susseguire ver +susseguendo susseguire ver +susseguendosi susseguire ver +susseguente susseguente adj +susseguenti susseguente adj +susseguiranno susseguire ver +susseguire susseguire ver +susseguirono susseguire ver +susseguirsi susseguire ver +susseguirà susseguire ver +susseguissero susseguire ver +susseguita susseguire ver +susseguite susseguire ver +susseguitesi susseguire ver +susseguiti susseguire ver +susseguito susseguire ver +susseguiva susseguire ver +susseguivano susseguire ver +susseguono susseguire ver +susseguì susseguire ver +sussidi sussidio nom +sussidia sussidiare ver +sussidiale sussidiare ver +sussidiano sussidiare ver +sussidiare sussidiare ver +sussidiari sussidiario adj +sussidiaria sussidiario adj +sussidiariamente sussidiariamente adv +sussidiarie sussidiario adj +sussidiarietà sussidiarietà nom +sussidiario sussidiario adj +sussidiata sussidiare ver +sussidiate sussidiare ver +sussidiati sussidiare ver +sussidiato sussidiare ver +sussidio sussidio nom +sussiego sussiego nom +sussiegosa sussiegoso adj +sussiegosi sussiegoso adj +sussiegoso sussiegoso adj +sussista sussistere ver +sussistano sussistere ver +sussiste sussistere ver +sussistendo sussistere ver +sussistendone sussistere ver +sussistendovi sussistere ver +sussistente sussistente adj +sussistenti sussistente adj +sussistenza sussistenza nom +sussistenze sussistenza nom +sussisteranno sussistere ver +sussistere sussistere ver +sussisterebbe sussistere ver +sussisterebbero sussistere ver +sussisterà sussistere ver +sussistesse sussistere ver +sussistessero sussistere ver +sussisteva sussistere ver +sussistevano sussistere ver +sussistita sussistere ver +sussistite sussistere ver +sussistito sussistere ver +sussistono sussistere ver +sussulta sussultare ver +sussultando sussultare ver +sussultar sussultare ver +sussultare sussultare ver +sussulterei sussultare ver +sussulti sussulto nom +sussulto sussulto nom +sussultori sussultorio adj +sussultoria sussultorio adj +sussultorie sussultorio adj +sussultorio sussultorio adj +sussunzione sussunzione nom +sussurra sussurrare ver +sussurrando sussurrare ver +sussurrandogli sussurrare ver +sussurrandole sussurrare ver +sussurrano sussurrare ver +sussurrante sussurrare ver +sussurranti sussurrare ver +sussurrar sussurrare ver +sussurrare sussurrare ver +sussurrargli sussurrare ver +sussurrarle sussurrare ver +sussurrarono sussurrare ver +sussurrarvi sussurrare ver +sussurrasse sussurrare ver +sussurrassero sussurrare ver +sussurrata sussurrare ver +sussurrate sussurrare ver +sussurrati sussurrare ver +sussurrato sussurrare ver +sussurrava sussurrare ver +sussurravano sussurrare ver +sussurrerà sussurrare ver +sussurri sussurrio|sussurro nom +sussurro sussurro nom +sussurrò sussurrare ver +susta susta nom +suste susta nom +sutura sutura nom +suturale suturare ver +suturali suturare ver +suturando suturare ver +suturano suturare ver +suturare suturare ver +suturata suturare ver +suturate suturare ver +suturati suturare ver +suturato suturare ver +suture sutura nom +suvvia suvvia int +suzione suzione nom +suzioni suzione nom +svaga svagare ver +svagano svagare ver +svagarci svagare ver +svagare svagare ver +svagarmi svagare ver +svagarsi svagare ver +svagata svagato adj +svagati svagato adj +svagato svagare ver +svagava svagare ver +svaghi svago nom +svago svago nom +svaligia svaligiare ver +svaligiammo svaligiare ver +svaligiando svaligiare ver +svaligiano svaligiare ver +svaligiare svaligiare ver +svaligiargli svaligiare ver +svaligiarla svaligiare ver +svaligiarono svaligiare ver +svaligiata svaligiare ver +svaligiate svaligiare ver +svaligiati svaligiare ver +svaligiato svaligiare ver +svaligiatore svaligiatore nom +svaligiatori svaligiatore nom +svaligiò svaligiare ver +svaluta svalutare ver +svalutando svalutare ver +svalutano svalutare ver +svalutante svalutare ver +svalutare svalutare ver +svalutarono svalutare ver +svalutarsi svalutare ver +svalutata svalutare ver +svalutate svalutare ver +svalutati svalutare ver +svalutato svalutare ver +svalutava svalutare ver +svalutavano svalutare ver +svalutazione svalutazione nom +svalutazioni svalutazione nom +svaluterebbe svalutare ver +svaluto svalutare ver +svalutò svalutare ver +svampita svampito adj +svampiti svampito adj +svampito svampito adj +svanendo svanire ver +svanente svanire ver +svanir svanire ver +svaniranno svanire ver +svanire svanire ver +svanirebbe svanire ver +svanirebbero svanire ver +svaniremo svanire ver +svanirono svanire ver +svanirà svanire ver +svanisca svanire ver +svaniscano svanire ver +svanisce svanire ver +svanisci svanire ver +svaniscono svanire ver +svanisse svanire ver +svanissero svanire ver +svanita svanire ver +svanite svanire ver +svaniti svanire ver +svanito svanire ver +svaniva svanire ver +svanivano svanire ver +svantaggi svantaggio nom +svantaggia svantaggiare ver +svantaggiano svantaggiare ver +svantaggiare svantaggiare ver +svantaggiata svantaggiato adj +svantaggiate svantaggiato adj +svantaggiati svantaggiato adj +svantaggiato svantaggiato adj +svantaggio svantaggio nom +svantaggiosa svantaggioso adj +svantaggiose svantaggioso adj +svantaggiosi svantaggioso adj +svantaggioso svantaggioso adj +svanzica svanzica nom +svanziche svanzica nom +svanì svanire ver +svapora svaporare ver +svaporare svaporare ver +svapori svaporare ver +svari svariare ver +svaria svariare ver +svariando svariare ver +svariano svariare ver +svarianti svariare ver +svariare svariare ver +svariata svariato adj +svariate svariato adj +svariati svariato adj +svariato svariato adj +svariava svariare ver +svariavano svariare ver +svario svariare ver +svarione svarione nom +svarioni svarione nom +svasa svasare ver +svasata svasare ver +svasate svasare ver +svasati svasare ver +svasato svasare ver +svasatura svasatura nom +svasature svasatura nom +svasi svasare ver +svaso svasare ver +svassi svasso nom +svasso svasso nom +svastica svastica nom +svastiche svastica nom +svecchiamento svecchiamento nom +svecchiando svecchiare ver +svecchiandosi svecchiare ver +svecchiare svecchiare ver +svecchiarla svecchiare ver +svecchiarlo svecchiare ver +svecchiarne svecchiare ver +svecchiata svecchiare ver +svecchiati svecchiare ver +svecchiato svecchiare ver +svecchierà svecchiare ver +svecchiò svecchiare ver +svedese svedese adj +svedesi svedese adj +svegli sveglio adj +sveglia svegliare ver +svegliai svegliare ver +svegliami svegliare ver +svegliammo svegliare ver +svegliamo svegliare ver +svegliamoci svegliare ver +svegliando svegliare ver +svegliandola svegliare ver +svegliandoli svegliare ver +svegliandolo svegliare ver +svegliandomi svegliare ver +svegliandosi svegliare ver +svegliano svegliare ver +svegliar svegliare ver +svegliarci svegliare ver +svegliare svegliare ver +svegliarla svegliare ver +svegliarli svegliare ver +svegliarlo svegliare ver +svegliarmi svegliare ver +svegliarono svegliare ver +svegliarsi svegliare ver +svegliarti svegliare ver +svegliarvi svegliare ver +svegliasse svegliare ver +svegliassero svegliare ver +svegliassi svegliare ver +svegliata svegliare ver +svegliate svegliare ver +svegliateci svegliare ver +svegliatesi svegliare ver +svegliatevi svegliare ver +svegliati svegliare ver +svegliato svegliare ver +svegliava svegliare ver +svegliavano svegliare ver +svegliavo svegliare ver +sveglie sveglio adj +sveglierai svegliare ver +sveglieranno svegliare ver +sveglierà svegliare ver +sveglierò svegliare ver +sveglino svegliare ver +sveglio sveglio adj +svegliò svegliare ver +svela svelare ver +svelaci svelare ver +svelando svelare ver +svelandoci svelare ver +svelandogli svelare ver +svelandole svelare ver +svelandolo svelare ver +svelandone svelare ver +svelandosi svelare ver +svelano svelare ver +svelanti svelare ver +svelarci svelare ver +svelare svelare ver +svelargli svelare ver +svelarglielo svelare ver +svelarle svelare ver +svelarlo svelare ver +svelarmi svelare ver +svelarne svelare ver +svelarono svelare ver +svelarsi svelare ver +svelarti svelare ver +svelasse svelare ver +svelassero svelare ver +svelata svelare ver +svelate svelare ver +svelategli svelare ver +svelati svelare ver +svelato svelare ver +svelava svelare ver +svelavano svelare ver +svelenire svelenire ver +svelerai svelare ver +sveleranno svelare ver +svelerebbe svelare ver +svelerà svelare ver +svelerò svelare ver +sveli svelare ver +sveliamo svelare ver +svelino svelare ver +svelle svellere ver +svellendo svellere ver +sveller svellere ver +svellerli svellere ver +svello svellere ver +svellono svellere ver +svelo svelare ver +svelse svellere ver +svelta svelto adj +svelte svelto adj +sveltezza sveltezza nom +svelti svellere ver +sveltire sveltire ver +sveltirne sveltire ver +sveltito sveltire ver +sveltivano sveltire ver +svelto svellere ver +svelò svelare ver +svena svenare ver +svenando svenare ver +svenandoli svenare ver +svenandosi svenare ver +svenar svenare ver +svenare svenare ver +svenato svenare ver +svende svendere ver +svendendo svendere ver +svendendolo svendere ver +svendere svendere ver +svenderlo svendere ver +svendersi svendere ver +svendette svendere ver +svendevano svendere ver +svendita svendita nom +svendite svendita nom +svendo svendere ver +svendono svendere ver +svenduta svendere ver +svendute svendere ver +svenduti svendere ver +svenduto svendere ver +svenendo svenire ver +svenerà svenare ver +svenevole svenevole adj +svenevolezze svenevolezza nom +svenevoli svenevole adj +svenga svenire ver +svengo svenire ver +svengono svenire ver +sveni svenare ver +svenimenti svenimento nom +svenimento svenimento nom +svenire svenire ver +svenite svenire ver +sveniva svenire ver +svenivano svenire ver +svenne svenire ver +svennero svenire ver +sveno svenare ver +sventa sventare ver +sventaglia sventagliare ver +sventagliare sventagliare ver +sventagliata sventagliata nom +sventagliate sventagliata nom +sventando sventare ver +sventandone sventare ver +sventano sventare ver +sventare sventare ver +sventarla sventare ver +sventarle sventare ver +sventarli sventare ver +sventarlo sventare ver +sventarne sventare ver +sventarono sventare ver +sventata sventare ver +sventate sventare ver +sventatezza sventatezza nom +sventatezze sventatezza nom +sventati sventare ver +sventato sventare ver +sventava sventare ver +sventeranno sventare ver +sventerà sventare ver +svento sventare ver +sventola sventolare ver +sventolamento sventolamento nom +sventolando sventolare ver +sventolandogli sventolare ver +sventolano sventolare ver +sventolante sventolare ver +sventolanti sventolare ver +sventolar sventolare ver +sventolare sventolare ver +sventolarla sventolare ver +sventolarle sventolare ver +sventolarlo sventolare ver +sventolarono sventolare ver +sventolarsi sventolare ver +sventolasse sventolare ver +sventolassero sventolare ver +sventolata sventolare ver +sventolate sventolare ver +sventolati sventolare ver +sventolato sventolare ver +sventolava sventolare ver +sventolavano sventolare ver +sventole sventola nom +sventolerà sventolare ver +sventoli sventolio nom +sventoliamo sventolare ver +sventolio sventolio nom +sventolo sventolare ver +sventolò sventolare ver +sventra sventrare ver +sventramenti sventramento nom +sventramento sventramento nom +sventrando sventrare ver +sventrandola sventrare ver +sventrandoli sventrare ver +sventrandolo sventrare ver +sventrano sventrare ver +sventrare sventrare ver +sventrarle sventrare ver +sventrarli sventrare ver +sventrarlo sventrare ver +sventrarono sventrare ver +sventrata sventrare ver +sventrate sventrare ver +sventrati sventrare ver +sventrato sventrare ver +sventrava sventrare ver +sventravano sventrare ver +sventrò sventrare ver +sventura sventura nom +sventurata sventurato adj +sventurate sventurato adj +sventurati sventurato nom +sventurato sventurato adj +sventure sventura nom +sventò sventare ver +svenuta svenire ver +svenute svenire ver +svenuti svenire ver +svenuto svenire ver +sverginare sverginare ver +sverginata sverginare ver +sverginato sverginare ver +svergogna svergognare ver +svergognando svergognare ver +svergognandolo svergognare ver +svergognare svergognare ver +svergognarli svergognare ver +svergognata svergognato nom +svergognate svergognare ver +svergognati svergognato nom +svergognato svergognare ver +svergognò svergognare ver +svergolamenti svergolamento nom +svergolamento svergolamento nom +sverna svernare ver +svernamento svernamento nom +svernando svernare ver +svernano svernare ver +svernante svernare ver +svernanti svernare ver +svernare svernare ver +svernarono svernare ver +svernarvi svernare ver +svernassero svernare ver +svernato svernare ver +svernava svernare ver +svernavano svernare ver +sverno svernare ver +svernò svernare ver +sverrà svenire ver +svesta svestire ver +sveste svestire ver +svestendo svestire ver +svestire svestire ver +svestirlo svestire ver +svestirsi svestire ver +svestisse svestire ver +svestita svestire ver +svestite svestire ver +svestiti svestire ver +svestito svestire ver +svestono svestire ver +svestì svestire ver +svetta svettare ver +svettando svettare ver +svettano svettare ver +svettante svettare ver +svettanti svettare ver +svettare svettare ver +svettato svettare ver +svettava svettare ver +svettavano svettare ver +svettò svettare ver +svezza svezzare ver +svezzamento svezzamento nom +svezzando svezzare ver +svezzano svezzare ver +svezzare svezzare ver +svezzarlo svezzare ver +svezzata svezzare ver +svezzate svezzare ver +svezzati svezzare ver +svezzato svezzare ver +svezzò svezzare ver +svia sviare ver +sviamenti sviamento nom +sviamento sviamento nom +sviamo sviare ver +sviando sviare ver +sviandola sviare ver +sviandoli sviare ver +sviandolo sviare ver +sviano sviare ver +sviante sviare ver +svianti sviare ver +sviare sviare ver +sviarla sviare ver +sviarle sviare ver +sviarli sviare ver +sviarlo sviare ver +sviarne sviare ver +sviarono sviare ver +sviata sviare ver +sviate sviare ver +sviati sviare ver +sviato sviare ver +sviava sviare ver +svicola svicolare ver +svicolando svicolare ver +svicolano svicolare ver +svicolare svicolare ver +svicolarsi svicolare ver +svicolato svicolare ver +svicoli svicolare ver +svicolo svicolare ver +sviene svenire ver +svierà sviare ver +svigna svignare ver +svignandosela svignare ver +svignano svignare ver +svignarsela svignare ver +svignata svignare ver +svignava svignare ver +svigorite svigorire ver +svii sviare ver +svilendo svilire ver +svilente svilire ver +svilenti svilire ver +svilimento svilimento nom +svilire svilire ver +svilirebbe svilire ver +svilirei svilire ver +svilirne svilire ver +svilisce svilire ver +sviliscono svilire ver +svilisse svilire ver +svilita svilire ver +svilite svilire ver +sviliti svilire ver +svilito svilire ver +svillaneggiare svillaneggiare ver +svillaneggiato svillaneggiare ver +svillaneggiava svillaneggiare ver +sviluppa sviluppare ver +sviluppabile sviluppabile adj +sviluppabili sviluppabile adj +sviluppai sviluppare ver +sviluppando sviluppare ver +sviluppandola sviluppare ver +sviluppandole sviluppare ver +sviluppandoli sviluppare ver +sviluppandolo sviluppare ver +sviluppandone sviluppare ver +sviluppandosi sviluppare ver +sviluppandovi sviluppare ver +sviluppano sviluppare ver +sviluppante sviluppare ver +sviluppanti sviluppare ver +sviluppar sviluppare ver +svilupparci sviluppare ver +sviluppare sviluppare ver +svilupparla sviluppare ver +svilupparle sviluppare ver +svilupparli sviluppare ver +svilupparlo sviluppare ver +svilupparne sviluppare ver +svilupparono sviluppare ver +svilupparsi sviluppare ver +svilupparvi sviluppare ver +sviluppasse sviluppare ver +sviluppassero sviluppare ver +sviluppata sviluppare ver +sviluppate sviluppare ver +sviluppatesi sviluppare ver +sviluppati sviluppare ver +sviluppato sviluppare ver +sviluppatore sviluppatore nom +sviluppatori sviluppatore nom +sviluppatrice sviluppatore|sviluppatrice nom +sviluppatrici sviluppatore|sviluppatrice nom +sviluppava sviluppare ver +sviluppavano sviluppare ver +svilupperanno sviluppare ver +svilupperebbe sviluppare ver +svilupperebbero sviluppare ver +svilupperei sviluppare ver +svilupperemo sviluppare ver +svilupperà sviluppare ver +svilupperò sviluppare ver +sviluppi sviluppo nom +sviluppiamo sviluppare ver +sviluppino sviluppare ver +sviluppo sviluppo nom +sviluppò sviluppare ver +svilì svilire ver +svina svinare ver +svinare svinare ver +svinato svinare ver +svinatura svinatura nom +svincola svincolare ver +svincolando svincolare ver +svincolandola svincolare ver +svincolandole svincolare ver +svincolandoli svincolare ver +svincolandolo svincolare ver +svincolandosi svincolare ver +svincolano svincolare ver +svincolare svincolare ver +svincolarle svincolare ver +svincolarli svincolare ver +svincolarlo svincolare ver +svincolarono svincolare ver +svincolarsene svincolare ver +svincolarsi svincolare ver +svincolarti svincolare ver +svincolasse svincolare ver +svincolata svincolare ver +svincolate svincolare ver +svincolati svincolare ver +svincolato svincolare ver +svincolava svincolare ver +svincolavano svincolare ver +svincolerà svincolare ver +svincoli svincolo nom +svincoliamo svincolare ver +svincolo svincolo nom +svincolò svincolare ver +svini svinare ver +svino svinare ver +svio sviare ver +sviolinante sviolinare ver +sviolinata sviolinata nom +sviolinate sviolinata nom +svirilizzato svirilizzare ver +svisa svisare ver +sviscera sviscerare ver +sviscerando sviscerare ver +sviscerano sviscerare ver +sviscerare sviscerare ver +sviscerarla sviscerare ver +sviscerarne sviscerare ver +sviscerata sviscerare ver +sviscerate sviscerare ver +sviscerati sviscerare ver +sviscerato sviscerare ver +sviscerava sviscerare ver +sviscerino sviscerare ver +sviscerò sviscerare ver +svista svista nom +sviste svista nom +svita svitare ver +svitando svitare ver +svitare svitare ver +svitarsi svitare ver +svitata svitato nom +svitate svitare ver +svitati svitato adj +svitato svitato nom +svitava svitare ver +sviti svitare ver +svito svitare ver +svizzera svizzero adj +svizzere svizzero adj +svizzeri svizzero adj +svizzero svizzero adj +sviò sviare ver +svogliata svogliato adj +svogliate svogliato adj +svogliatezza svogliatezza nom +svogliati svogliato adj +svogliato svogliato adj +svolazza svolazzare ver +svolazzando svolazzare ver +svolazzano svolazzare ver +svolazzante svolazzare ver +svolazzanti svolazzare ver +svolazzar svolazzare ver +svolazzare svolazzare ver +svolazzava svolazzare ver +svolazzavano svolazzare ver +svolazzi svolazzo nom +svolazzino svolazzare ver +svolazzo svolazzo nom +svolga svolgere ver +svolgano svolgere ver +svolge svolgere ver +svolgendo svolgere ver +svolgendole svolgere ver +svolgendoli svolgere ver +svolgendolo svolgere ver +svolgendone svolgere ver +svolgendosi svolgere ver +svolgendovi svolgere ver +svolgente svolgere ver +svolgenti svolgere ver +svolger svolgere ver +svolgerai svolgere ver +svolgeranno svolgere ver +svolgere svolgere ver +svolgerebbe svolgere ver +svolgerebbero svolgere ver +svolgerei svolgere ver +svolgeresti svolgere ver +svolgerla svolgere ver +svolgerle svolgere ver +svolgerli svolgere ver +svolgerlo svolgere ver +svolgerne svolgere ver +svolgersi svolgere ver +svolgervi svolgere ver +svolgerà svolgere ver +svolgerò svolgere ver +svolgesse svolgere ver +svolgessero svolgere ver +svolgete svolgere ver +svolgeva svolgere ver +svolgevano svolgere ver +svolgevo svolgere ver +svolgi svolgere ver +svolgiamo svolgere ver +svolgimenti svolgimento nom +svolgimento svolgimento nom +svolgo svolgere ver +svolgono svolgere ver +svolse svolgere ver +svolsero svolgere ver +svolta svolgere ver +svoltando svoltare ver +svoltano svoltare ver +svoltare svoltare ver +svoltarono svoltare ver +svoltasi svoltare ver +svoltasse svoltare ver +svoltate svoltare ver +svoltato svoltare ver +svoltava svoltare ver +svoltavano svoltare ver +svolte svolgere ver +svolterà svoltare ver +svoltesi svolgere ver +svolti svolgere ver +svoltisi svolgere ver +svolto svolgere ver +svoltosi svolgere ver +svoltò svoltare ver +svuota svuotare ver +svuotala svuotare ver +svuotalo svuotare ver +svuotamenti svuotamento nom +svuotamento svuotamento nom +svuotando svuotare ver +svuotandola svuotare ver +svuotandole svuotare ver +svuotandoli svuotare ver +svuotandolo svuotare ver +svuotandone svuotare ver +svuotandosi svuotare ver +svuotano svuotare ver +svuotare svuotare ver +svuotargli svuotare ver +svuotarla svuotare ver +svuotarle svuotare ver +svuotarli svuotare ver +svuotarlo svuotare ver +svuotarne svuotare ver +svuotarono svuotare ver +svuotarsi svuotare ver +svuotasse svuotare ver +svuotata svuotare ver +svuotate svuotare ver +svuotatela svuotare ver +svuotati svuotare ver +svuotato svuotare ver +svuotava svuotare ver +svuotavano svuotare ver +svuoteranno svuotare ver +svuoterebbe svuotare ver +svuoterei svuotare ver +svuoterà svuotare ver +svuoti svuotare ver +svuotiamo svuotare ver +svuotino svuotare ver +svuoto svuotare ver +svuotò svuotare ver +sweater sweater nom +swing swing nom +symposium symposium nom +sè sè pro +sé sé nom_sup +séparé séparé nom +sì sì adv_sup +t t sw +tabaccai tabaccaio nom +tabaccaia tabaccaio nom +tabaccaio tabaccaio nom +tabaccata tabaccare ver +tabaccheria tabaccheria nom +tabaccherie tabaccheria nom +tabacchi tabacco nom +tabacchicoltura tabacchicoltura nom +tabacchiera tabacchiera nom +tabacchiere tabacchiera nom +tabacchine tabacchina nom +tabacchino tabaccare ver +tabacco tabacco nom +tabagismo tabagismo nom +tabarin tabarin nom +tabarri tabarro nom +tabarro tabarro nom +tabe tabe nom +tabella tabella nom +tabelle tabella nom +tabellione tabellione nom +tabellone tabellone nom +tabelloni tabellone nom +tabernacoli tabernacolo nom +tabernacolo tabernacolo nom +tabetica tabetico adj +tabetico tabetico adj +tabi tabe nom +tabloid tabloid nom +tabloide tabloide nom +tabula tabulare ver +tabulando tabulare ver +tabulano tabulare ver +tabular tabulare ver +tabulare tabulare adj +tabulari tabulare adj +tabulata tabulare ver +tabulate tabulare ver +tabulati tabulato nom +tabulato tabulato nom +tabulatore tabulatore nom +tabulatori tabulatore nom +tabulazione tabulazione nom +tabulazioni tabulazione nom +tabuli tabulare ver +tabulo tabulare ver +tabù tabù nom +tacca tacca nom +taccagna taccagno adj +taccagneria taccagneria nom +taccagni taccagno adj +taccagno taccagno adj +tacce taccia nom +taccerei tacciare ver +tacche tacca nom +taccheggiano taccheggiare ver +taccheggiare taccheggiare ver +taccheggiatore taccheggiatore nom +taccheggiatori taccheggiatore nom +taccheggio taccheggio nom +tacchetti tacchettio|tacchetto nom +tacchetto tacchetto nom +tacchi tacco nom +tacchina tacchino nom +tacchini tacchino nom +tacchino tacchino nom +tacci tacciare ver +taccia taccia nom +tacciabile tacciabile adj +tacciabili tacciabile adj +tacciamo tacciare|tacere ver +tacciando tacciare ver +tacciandola tacciare ver +tacciandole tacciare ver +tacciandoli tacciare ver +tacciandolo tacciare ver +tacciandomi tacciare ver +tacciano tacciare ver +tacciare tacciare ver +tacciarla tacciare ver +tacciarlo tacciare ver +tacciarmi tacciare ver +tacciarono tacciare ver +tacciata tacciare ver +tacciate tacciare ver +tacciati tacciare ver +tacciato tacciare ver +tacciava tacciare ver +tacciavano tacciare ver +taccio tacciare|tacere ver +tacciono tacere ver +tacciò tacciare ver +tacco tacco nom +taccola taccola nom +taccole taccola nom +taccuini taccuino nom +taccuino taccuino nom +tace tacere ver +tacendo tacere ver +tacendole tacere ver +tacendone tacere ver +tacente tacere ver +tacer tacere ver +taceranno tacere ver +tacere tacere ver +tacerla tacere ver +tacerlo tacere ver +tacerne tacere ver +tacersi tacere ver +tacerti tacere ver +tacerà tacere ver +tacerò tacere ver +tacesse tacere ver +tacessero tacere ver +tacessi tacere ver +tacesti tacere ver +tacete tacere ver +taceva tacere ver +tacevano tacere ver +tacevo tacere ver +tacheometri tacheometro nom +tacheometria tacheometria nom +tacheometro tacheometro nom +tachicardia tachicardia nom +tachicardie tachicardia nom +tachigrafo tachigrafo nom +tachimetri tachimetro nom +tachimetro tachimetro nom +tachione tachione nom +tachioni tachione nom +tachipnea tachipnea nom +taci tacere ver +tacita tacito adj +tacitamente tacitamente adv +tacitando tacitare ver +tacitare tacitare ver +tacitarla tacitare ver +tacitarli tacitare ver +tacitarlo tacitare ver +tacitarono tacitare ver +tacitata tacitare ver +tacitate tacitare ver +tacitati tacitare ver +tacitato tacitare ver +tacite tacito adj +taciti tacito adj +tacitiana tacitiano adj +tacitiane tacitiano adj +tacitiano tacitiano adj +tacito tacito adj +taciturna taciturno adj +taciturne taciturno adj +taciturni taciturno adj +taciturno taciturno adj +tacitò tacitare ver +taciuta tacere ver +taciute tacere ver +taciuti tacere ver +taciuto tacere ver +tackle tackle nom +tacque tacere ver +tacquero tacere ver +tacqui tacere ver +tafani tafano nom +tafano tafano nom +tafferugli tafferuglio nom +tafferuglio tafferuglio nom +taffettà taffettà nom +tafofobia tafofobia nom +tagli taglio nom +taglia taglia nom +tagliaborse tagliaborse nom +tagliaboschi tagliaboschi nom +tagliacarte tagliacarte nom +tagliagli tagliare ver +tagliai tagliare ver +tagliala tagliare ver +tagliale tagliare ver +taglialegna taglialegna nom +taglialo tagliare ver +tagliamare tagliamare nom +tagliami tagliare ver +tagliamo tagliare ver +tagliandi tagliando nom +tagliando tagliare ver +tagliandogli tagliare ver +tagliandola tagliare ver +tagliandole tagliare ver +tagliandoli tagliare ver +tagliandolo tagliare ver +tagliandone tagliare ver +tagliandosi tagliare ver +tagliano tagliare ver +tagliante tagliante adj +taglianti tagliante adj +tagliapasta tagliapasta nom +tagliapietre tagliapietre nom +tagliar tagliare ver +tagliarci tagliare ver +tagliare tagliare ver +tagliargli tagliare ver +tagliarglieli tagliare ver +tagliarla tagliare ver +tagliarle tagliare ver +tagliarli tagliare ver +tagliarlo tagliare ver +tagliarmi tagliare ver +tagliarne tagliare ver +tagliarono tagliare ver +tagliarsela tagliare ver +tagliarseli tagliare ver +tagliarsi tagliare ver +tagliarti tagliare ver +tagliarvi tagliare ver +tagliasse tagliare ver +tagliassero tagliare ver +tagliata tagliare ver +tagliate tagliare ver +tagliateci tagliare ver +tagliategli tagliare ver +tagliatela tagliare ver +tagliatele tagliare ver +tagliatella tagliatella nom +tagliatelle tagliatella nom +tagliatelo tagliare ver +tagliatemi tagliare ver +tagliati tagliare ver +tagliato tagliare ver +tagliatore tagliatore nom +tagliatori tagliatore nom +tagliatrice tagliatore|tagliatrice nom +tagliatrici tagliatore|tagliatrice nom +tagliatura tagliatura nom +tagliature tagliatura nom +tagliaunghie tagliaunghie nom +tagliava tagliare ver +tagliavano tagliare ver +tagliavi tagliare ver +tagliavo tagliare ver +taglie taglia nom +taglieggia taglieggiare ver +taglieggiando taglieggiare ver +taglieggiano taglieggiare ver +taglieggiare taglieggiare ver +taglieggiarono taglieggiare ver +taglieggiati taglieggiare ver +taglieggiato taglieggiare ver +taglieggiava taglieggiare ver +taglieggiavano taglieggiare ver +tagliente tagliente adj +taglienti tagliente adj +taglierai tagliare ver +taglieranno tagliare ver +tagliere tagliere nom +taglierebbe tagliare ver +taglierebbero tagliare ver +taglierei tagliare ver +taglieresti tagliare ver +taglieri tagliere nom +taglierina taglierina nom +taglierine taglierina nom +taglierini taglierino nom +taglierino taglierino nom +taglierà tagliare ver +taglierò tagliare ver +taglino tagliare ver +taglio taglio nom +tagliola tagliola nom +tagliole tagliola nom +taglioli tagliolo nom +tagliolini tagliolino nom +tagliolo tagliolo nom +taglione taglione nom +taglioni taglione nom +tagliuzzano tagliuzzare ver +tagliuzzare tagliuzzare ver +tagliuzzarle tagliuzzare ver +tagliuzzata tagliuzzare ver +tagliuzzate tagliuzzare ver +tagliuzzati tagliuzzare ver +tagliuzzato tagliuzzare ver +tagliò tagliare ver +taiga taiga nom +taighe taiga nom +tailandese tailandese adj +tailandesi tailandese adj +tailleur tailleur nom +tal tale pro +talaltro talaltro pro +talami talamo nom +talamo talamo nom +talare talare adj +talari talare adj +talassica talassico adj +talassici talassico adj +talassocrazia talassocrazia nom +talassocrazie talassocrazia nom +talassoterapia talassoterapia nom +talchi talco nom +talché talché con +talco talco nom +tale tale pro +talea talea nom +talee talea nom +taleggio taleggio nom +talenta talentare ver +talentaccio talentaccio nom +talentato talentare ver +talenti talento nom +talentino talentare ver +talento talento nom +tali tale pro +talismani talismano nom +talismano talismano nom +talleri tallero nom +tallero tallero nom +talli tallio|tallo nom +tallio tallio nom +tallo tallo nom +tallofite tallofita nom +tallona tallonare ver +tallonamento tallonamento nom +tallonando tallonare ver +tallonano tallonare ver +tallonare tallonare ver +tallonarlo tallonare ver +tallonata tallonare ver +tallonate tallonare ver +tallonati tallonare ver +tallonato tallonare ver +tallonava tallonare ver +tallonavano tallonare ver +talloncini talloncino nom +talloncino talloncino nom +tallone tallone nom +talloni tallone nom +tallonò tallonare ver +talmente talmente adv_sup +talmud talmud nom +talora talora adv_sup +talpa talpa nom +talpe talpa nom +taluna taluno pro +talune taluno pro +taluni taluno pro +taluno taluno pro +talvolta talvolta adv_sup +tamarindi tamarindo nom +tamarindo tamarindo nom +tamarisci tamarisco nom +tamarisco tamarisco nom +tambura tamburare ver +tamburati tamburato adj +tamburato tamburato adj +tambureggiamento tambureggiamento nom +tambureggiante tambureggiare ver +tambureggiare tambureggiare ver +tamburella tamburellare ver +tamburellando tamburellare ver +tamburellano tamburellare ver +tamburellante tamburellare ver +tamburellare tamburellare ver +tamburelli tamburello nom +tamburello tamburello nom +tamburi tamburo nom +tamburini tamburino nom +tamburino tamburino nom +tamburo tamburo nom +tamerice tamerice nom +tamerici tamerice nom +tamia tamia nom +tampina tampinare ver +tampinare tampinare ver +tampinata tampinare ver +tampinati tampinare ver +tampinato tampinare ver +tampini tampinare ver +tampoco tampoco adv +tampona tamponare ver +tamponamenti tamponamento nom +tamponamento tamponamento nom +tamponando tamponare ver +tamponandolo tamponare ver +tamponano tamponare ver +tamponante tamponare ver +tamponanti tamponare ver +tamponare tamponare ver +tamponarlo tamponare ver +tamponarono tamponare ver +tamponarsi tamponare ver +tamponata tamponare ver +tamponate tamponare ver +tamponati tamponare ver +tamponato tamponare ver +tamponava tamponare ver +tampone tampone adj +tamponi tampone nom +tamponò tamponare ver +tamtam tamtam nom +tamurè tamurè nom +tana tana nom +tanagli tanagliare ver +tanaglia tanaglia nom +tanagliato tanagliare ver +tanatofobia tanatofobia nom +tanca tanca nom +tanche tanca nom +tandem tandem nom +tane tana nom +tanfo tanfo nom +tanga tanga nom +tange tangere ver +tangendo tangere ver +tangente tangente adj +tangenti tangente nom +tangenza tangenza nom +tangenze tangenza nom +tangenziale tangenziale adj +tangenziali tangenziale adj +tanger tangere ver +tangere tangere ver +tangerebbe tangere ver +tangerne tangere ver +tangeva tangere ver +tanghera tanghero nom +tanghero tanghero nom +tanghi tango nom +tangi tangere ver +tangibile tangibile adj +tangibili tangibile adj +tangibilità tangibilità nom +tango tango adj +tangono tangere ver +tanica tanica nom +taniche tanica nom +tannica tannico adj +tanniche tannico adj +tannici tannico adj +tannico tannico adj +tannini tannino nom +tannino tannino nom +tansi tangere ver +tant tant sw +tanta tanto adj_sup +tantali tantalio nom +tantalio tantalio nom +tante tanto adj_sup +tanti tanto pro +tantine tantino adj +tantini tantino adj +tantino tantino adv +tanto tanto adv_sup +tantomeno tantomeno adv +tanzaniana tanzaniano adj +tanzaniane tanzaniano adj +tanzaniani tanzaniano adj +tanzaniano tanzaniano adj +tao tao nom +taoismo taoismo nom +tapina tapino adj +tapini tapino adj +tapino tapino adj +tapioca tapioca nom +tapiri tapiro nom +tapiro tapiro nom +tappa tappa nom +tappabuchi tappabuchi nom +tappando tappare ver +tappandomi tappare ver +tappandosi tappare ver +tappano tappare ver +tapparci tappare ver +tappare tappare ver +tapparella tapparella nom +tapparelle tapparella nom +tappargli tappare ver +tapparle tappare ver +tapparli tappare ver +tapparlo tappare ver +tapparmi tappare ver +tapparono tappare ver +tapparsi tappare ver +tapparti tappare ver +tappata tappare ver +tappate tappare ver +tappatevi tappare ver +tappati tappare ver +tappato tappare ver +tappava tappare ver +tappe tappa nom +tappeti tappeto nom +tappeto tappeto nom +tappezza tappezzare ver +tappezzando tappezzare ver +tappezzano tappezzare ver +tappezzante tappezzare ver +tappezzanti tappezzare ver +tappezzare tappezzare ver +tappezzarono tappezzare ver +tappezzata tappezzare ver +tappezzate tappezzare ver +tappezzati tappezzare ver +tappezzato tappezzare ver +tappezzeria tappezzeria nom +tappezzerie tappezzeria nom +tappezziere tappezziere nom +tappezzieri tappezziere nom +tappezzò tappezzare ver +tappi tappo nom +tappiamo tappare ver +tappino tappare ver +tappo tappo nom +tappò tappare ver +tara tara nom +tarabusi tarabuso nom +tarabuso tarabuso nom +taragli tarare ver +tarai tarare ver +tarala tarare ver +taralli tarallo nom +tarallo tarallo nom +tarando tarare ver +tarandolo tarare ver +tarano tarare ver +tarante tarare ver +tarantella tarantella nom +tarantelle tarantella nom +taranti tarare ver +tarantismo tarantismo nom +tarantola tarantola nom +tarantole tarantola nom +tarar tarare ver +tarare tarare ver +tarassachi tarassaco nom +tarassaco tarassaco nom +tarassi tarare ver +tarasti tarare ver +tarata tarare ver +tarate tarare ver +tarati tarare ver +tarato tarare ver +taratura taratura nom +tarature taratura nom +tarava tarare ver +taravo tarare ver +tarchiata tarchiato adj +tarchiate tarchiato adj +tarchiati tarchiato adj +tarchiato tarchiato adj +tarda tardo adj +tardammo tardare ver +tardando tardare ver +tardano tardare ver +tardar tardare ver +tardare tardare ver +tardarono tardare ver +tardasse tardare ver +tardata tardare ver +tardate tardare ver +tardato tardare ver +tardava tardare ver +tardavano tardare ver +tarde tardo adj +tarderanno tardare ver +tarderebbe tardare ver +tarderà tardare ver +tarderò tardare ver +tardi tardo adj_sup +tardino tardare ver +tardiva tardivo adj +tardivamente tardivamente adv +tardive tardivo adj +tardivi tardivo adj +tardività tardività nom +tardivo tardivo adj +tardo tardo adj +tardona tardona nom +tardone tardona nom +tardò tardare ver +tare tara nom +targa targare ver +targante targare ver +targare targare ver +targata targare ver +targate targare ver +targati targare ver +targato targare ver +targatura targatura nom +targature targatura nom +target target nom +targhe targa nom +targhetta targhetta nom +targhette targhetta nom +targo targare ver +tari tarso nom +tariffa tariffa nom +tariffari tariffario adj +tariffaria tariffario adj +tariffarie tariffario adj +tariffario tariffario adj +tariffazione tariffazione nom +tariffazioni tariffazione nom +tariffe tariffa nom +tariffi tariffare ver +tarino tarare ver +tario tarso nom +tarla tarlare ver +tarlando tarlare ver +tarlata tarlare ver +tarlatana tarlatana nom +tarlati tarlare ver +tarlato tarlare ver +tarlatura tarlatura nom +tarli tarlo nom +tarlo tarlo nom +tarma tarma nom +tarmata tarmare ver +tarme tarma nom +tarmo tarmare ver +taro tarare ver +tarocchi tarocco nom +tarocco tarocco nom +tarpa tarpare ver +tarpan tarpan nom +tarpana tarpano adj +tarpando tarpare ver +tarpani tarpano adj +tarpano tarpano adj +tarpare tarpare ver +tarpargli tarpare ver +tarparti tarpare ver +tarpata tarpare ver +tarpate tarpare ver +tarpato tarpare ver +tarpino tarpare ver +tarpò tarpare ver +tarsi tarsio nom +tarsia tarsia nom +tarsie tarsia nom +tarsio tarsio nom +tartagli tartagliare ver +tartaglia tartagliare ver +tartaglino tartagliare ver +tartaglione tartaglione adj +tartan tartan nom +tartana tartana nom +tartane tartana nom +tartara tartaro adj +tartare tartaro adj +tartarea tartareo adj +tartaree tartareo adj +tartarei tartareo adj +tartareo tartareo adj +tartari tartaro nom +tartarica tartarico adj +tartarici tartarico adj +tartarico tartarico adj +tartaro tartaro adj +tartaruga tartaruga nom +tartarughe tartaruga nom +tartassa tartassare ver +tartassando tartassare ver +tartassare tartassare ver +tartassarono tartassare ver +tartassata tartassare ver +tartassate tartassare ver +tartassati tartassare ver +tartassato tartassare ver +tartassò tartassare ver +tartina tartina nom +tartine tartina nom +tartrati tartrato nom +tartrato tartrato nom +tartufai tartufare ver +tartufaia tartufaia nom +tartufata tartufata nom +tartufati tartufare ver +tartufato tartufare ver +tartufi tartufo nom +tartufo tartufo nom +tarì tarì nom +tarò tarare ver +tasca tasca nom +tascabile tascabile adj +tascabili tascabile adj +tascapane tascapane nom +tasche tasca nom +taschini taschino nom +taschino taschino nom +tassa tassa nom +tassabile tassabile adj +tassabili tassabile adj +tassai tassare ver +tassali tassare ver +tassametri tassametro nom +tassametro tassametro nom +tassando tassare ver +tassandole tassare ver +tassano tassare ver +tassare tassare ver +tassarla tassare ver +tassarli tassare ver +tassarono tassare ver +tassarsi tassare ver +tassasse tassare ver +tassata tassare ver +tassate tassare ver +tassati tassare ver +tassativa tassativo adj +tassativamente tassativamente adv +tassative tassativo adj +tassativi tassativo adj +tassativo tassativo adj +tassato tassare ver +tassava tassare ver +tassavano tassare ver +tassazione tassazione nom +tassazioni tassazione nom +tasse tassa nom +tassella tassellare ver +tassellano tassellare ver +tassellare tassellare ver +tassellata tassellare ver +tassellate tassellare ver +tassellati tassellare ver +tassellato tassellare ver +tasselli tassello nom +tassello tassello nom +tassi tasso nom +tassia tassia nom +tassiamo tassare ver +tassidermia tassidermia nom +tassie tassia nom +tassinara tassinaro nom +tassinare tassinaro nom +tassinari tassinaro nom +tassinaro tassinaro nom +tassino tassare ver +tassista tassista nom +tassisti tassista nom +tasso tasso nom +tassonomia tassonomia nom +tassonomica tassonomico adj +tassonomiche tassonomico adj +tassonomici tassonomico adj +tassonomico tassonomico adj +tassonomie tassonomia nom +tassì tassì nom +tassò tassare ver +tasta tastare ver +tastando tastare ver +tastano tastare ver +tastar tastare ver +tastare tastare ver +tastarla tastare ver +tastata tastare ver +tastate tastata nom +tastatemi tastare ver +tastati tastare ver +tastato tastare ver +tasti tasto nom +tastiera tastiera nom +tastiere tastiera nom +tastierista tastierista nom +tastieristi tastierista nom +tastino tastare ver +tasto tasto nom +tastoni tastoni adv +tastò tastare ver +tata tata nom +tate tata nom +tatti tatto nom +tattica tattico adj +tattiche tattica nom +tattici tattico adj +tatticismi tatticismo nom +tatticismo tatticismo nom +tattico tattico adj +tattile tattile adj +tattili tattile adj +tatto tatto nom +tatua tatuare ver +tatuaggi tatuaggio nom +tatuaggio tatuaggio nom +tatuando tatuare ver +tatuandosi tatuare ver +tatuano tatuare ver +tatuare tatuare ver +tatuarono tatuare ver +tatuarsi tatuare ver +tatuata tatuare ver +tatuate tatuare ver +tatuati tatuare ver +tatuato tatuare ver +tatuavano tatuare ver +tatui tatuare ver +tatuo tatuare ver +tatuò tatuare ver +taumaturga taumaturgo nom +taumaturghi taumaturgo nom +taumaturgi taumaturgo nom +taumaturgia taumaturgia nom +taumaturgica taumaturgico adj +taumaturgiche taumaturgico adj +taumaturgici taumaturgico adj +taumaturgico taumaturgico adj +taumaturgie taumaturgia nom +taumaturgo taumaturgo nom +taurina taurino adj +taurine taurino adj +taurini taurino adj +taurino taurino adj +tauromachia tauromachia nom +tauromachie tauromachia nom +tautogramma tautogramma nom +tautogrammi tautogramma nom +tautologia tautologia nom +tautologica tautologico adj +tautologiche tautologico adj +tautologici tautologico adj +tautologico tautologico adj +tautologie tautologia nom +tautomere tautomero adj +tautomeri tautomero adj +tautomeria tautomeria nom +tautomerie tautomeria nom +tautomero tautomero adj +tavella tavella nom +tavelle tavella nom +taverna taverna nom +taverne taverna nom +tavernetta tavernetta nom +tavernette tavernetta nom +taverniera taverniere nom +taverniere taverniere nom +tavernieri taverniere nom +tavola tavola|tavolo nom +tavolacci tavolaccio nom +tavolaccio tavolaccio nom +tavolata tavolata nom +tavolate tavolata nom +tavolati tavolato nom +tavolato tavolato nom +tavole tavola|tavolo nom +tavoletta tavoletta nom +tavolette tavoletta nom +tavoli tavolo nom +tavoliere tavoliere nom +tavolieri tavoliere nom +tavolini tavolino nom +tavolino tavolino nom +tavolo tavolo nom +tavolozza tavolozza nom +tavolozze tavolozza nom +taxi taxi nom +taylorismo taylorismo nom +tazza tazza nom +tazze tazza nom +tazzina tazzina nom +tazzine tazzina nom +tbc tbc nom +te te pro +tea tea adj +teak teak nom +team team nom +teatina teatino adj +teatine teatino adj +teatini teatino adj +teatino teatino adj +teatrale teatrale adj +teatrali teatrale adj +teatralità teatralità nom +teatrante teatrante nom +teatranti teatrante nom +teatri teatro nom +teatrini teatrino nom +teatrino teatrino nom +teatro teatro nom +teca teca nom +teche teca nom +technicolor technicolor nom +teck teck nom +tecnezio tecnezio nom +tecnica tecnica|tecnico nom +tecnicamente tecnicamente adv +tecniche tecnica|tecnico nom +tecnici tecnico adj +tecnicismi tecnicismo nom +tecnicismo tecnicismo nom +tecnicistico tecnicistico adj +tecnicità tecnicità nom +tecnicizzati tecnicizzare ver +tecnicizzato tecnicizzare ver +tecnico tecnico adj +tecnigrafi tecnigrafo nom +tecnigrafo tecnigrafo nom +tecnocrate tecnocrate nom +tecnocrati tecnocrate nom +tecnocrazia tecnocrazia nom +tecnocrazie tecnocrazia nom +tecnofibra tecnofibra nom +tecnofibre tecnofibra nom +tecnologi tecnologo nom +tecnologia tecnologia nom +tecnologica tecnologico adj +tecnologicamente tecnologicamente adv +tecnologiche tecnologico adj +tecnologici tecnologico adj +tecnologico tecnologico adj +tecnologie tecnologia nom +tecnopatia tecnopatia nom +tecnopatie tecnopatia nom +tecnostruttura tecnostruttura nom +teco teco adv +tectite tectite nom +tectiti tectite nom +teda teda nom +tede teda nom +tedesca tedesco adj +tedesche tedesco adj +tedeschi tedesco adj +tedesco tedesco adj +tedescofilo tedescofilo nom +tedeum tedeum nom +tedi tedio nom +tedia tediare ver +tediante tediare ver +tediare tediare ver +tediarlo tediare ver +tediarmi tediare ver +tediarvi tediare ver +tediato tediare ver +tedino tediare ver +tedio tedio nom +tediosa tedioso adj +tediose tedioso adj +tediosi tedioso adj +tedioso tedioso adj +tedofora tedoforo adj +tedofori tedoforo nom +tedoforo tedoforo adj +tee tee adj +teflon teflon nom +tegame tegame nom +tegami tegame nom +tegamino tegamino nom +teglia teglia nom +teglie teglia nom +tegola tegola nom +tegole tegola nom +tegumenti tegumento nom +tegumento tegumento nom +teiera teiera nom +teiere teiera nom +teina teina nom +teine teina nom +teismo teismo nom +teista teista nom +teiste teista nom +teisti teista nom +tek tek nom +tela tela nom +telai telaio nom +telaio telaio nom +telamone telamone nom +telamoni telamone nom +telata telato adj +telati telato adj +telato telato adj +tele tela nom +telecabina telecabina nom +telecabine telecabina nom +telecamera telecamera nom +telecamere telecamera nom +telecentri telecentro nom +telecomanda telecomandare ver +telecomandare telecomandare ver +telecomandata telecomandare ver +telecomandate telecomandato adj +telecomandati telecomandato adj +telecomandato telecomandare ver +telecomandi telecomando nom +telecomando telecomando nom +telecomunica telecomunicare ver +telecomunicaci telecomunicare ver +telecomunicati telecomunicare ver +telecomunicato telecomunicare ver +telecomunicazione telecomunicazione nom +telecomunicazioni telecomunicazione nom +teleconferenze teleconferenza nom +telecronaca telecronaca nom +telecronache telecronaca nom +telecronista telecronista nom +telecronisti telecronista nom +telediffusione telediffusione nom +telefax telefax nom +teleferica teleferica nom +teleferiche teleferica nom +teleferico teleferico adj +teleferisti teleferista nom +telefilm telefilm nom +telefona telefonare ver +telefonai telefonare ver +telefonami telefonare ver +telefonando telefonare ver +telefonandogli telefonare ver +telefonandole telefonare ver +telefonano telefonare ver +telefonare telefonare ver +telefonargli telefonare ver +telefonarle telefonare ver +telefonarmi telefonare ver +telefonarono telefonare ver +telefonarsi telefonare ver +telefonarti telefonare ver +telefonasse telefonare ver +telefonata telefonata nom +telefonate telefonata nom +telefonatemi telefonare ver +telefonati telefonare ver +telefonato telefonare ver +telefonava telefonare ver +telefonavano telefonare ver +telefonerai telefonare ver +telefonerei telefonare ver +telefonerà telefonare ver +telefonerò telefonare ver +telefoni telefono nom +telefonia telefonia nom +telefoniamo telefonare ver +telefonica telefonico adj +telefonicamente telefonicamente adv +telefoniche telefonico adj +telefonici telefonico adj +telefonico telefonico adj +telefonie telefonia nom +telefonino telefonare ver +telefonista telefonista nom +telefoniste telefonista nom +telefonisti telefonista nom +telefono telefono nom +telefonò telefonare ver +telefoto telefoto nom +telefotografie telefotografia nom +telegeniche telegenico adj +telegenici telegenico adj +telegenico telegenico adj +telegiornale telegiornale nom +telegiornali telegiornale nom +telegrafa telegrafare ver +telegrafando telegrafare ver +telegrafare telegrafare ver +telegrafarono telegrafare ver +telegrafata telegrafare ver +telegrafati telegrafare ver +telegrafato telegrafare ver +telegrafava telegrafare ver +telegrafi telegrafo nom +telegrafia telegrafia nom +telegrafica telegrafico adj +telegraficamente telegraficamente adv +telegrafiche telegrafico adj +telegrafici telegrafico adj +telegrafico telegrafico adj +telegrafie telegrafia nom +telegrafista telegrafista nom +telegrafiste telegrafista nom +telegrafisti telegrafista nom +telegrafo telegrafo nom +telegrafò telegrafare ver +telegramma telegramma nom +telegrammi telegramma nom +teleguida teleguida nom +teleguidare teleguidare ver +teleguidata teleguidare ver +teleguidate teleguidato adj +teleguidati teleguidato adj +teleguidato teleguidare ver +telelavorare telelavorare ver +telelavoratori telelavoratore nom +telelavoro telelavoro nom +telematica telematico adj +telematiche telematico adj +telematici telematico adj +telematico telematico adj +telemedicina telemedicina nom +telemetri telemetro nom +telemetria telemetria nom +telemetrie telemetria nom +telemetro telemetro nom +telencefalo telencefalo nom +teleobiettivi teleobiettivo nom +teleobiettivo teleobiettivo nom +teleologia teleologia nom +teleologica teleologico adj +teleologiche teleologico adj +teleologici teleologico adj +teleologico teleologico adj +teleologie teleologia nom +telepatia telepatia nom +telepatica telepatico adj +telepatiche telepatico adj +telepatici telepatico adj +telepatico telepatico adj +telepatie telepatia nom +teleprocessing teleprocessing nom +telequiz telequiz nom +teleria teleria nom +telerie teleria nom +telerilevamenti telerilevamento nom +telerilevamento telerilevamento nom +teleriscaldamento teleriscaldamento nom +teleromanzi teleromanzo nom +teleromanzo teleromanzo nom +teleschermi teleschermo nom +teleschermo teleschermo nom +telescopi telescopio nom +telescopia telescopia nom +telescopica telescopico adj +telescopiche telescopico adj +telescopici telescopico adj +telescopico telescopico adj +telescopio telescopio nom +telescrivente telescrivente nom +telescriventi telescrivente nom +telescriventista telescriventista nom +teleselettivi teleselettivo adj +teleselettivo teleselettivo adj +teleselezione teleselezione nom +telespettatore telespettatore nom +telespettatori telespettatore nom +telespettatrice telespettatore nom +telespettatrici telespettatore nom +telestesia telestesia nom +teletext teletext nom +teletrasmessa teletrasmettere ver +teletrasmesse teletrasmettere ver +teletrasmessi teletrasmettere ver +teletrasmesso teletrasmettere ver +teletrasmette teletrasmettere ver +teletrasmettere teletrasmettere ver +teletrasmissione teletrasmissione nom +teletrasmissioni teletrasmissione nom +teletta teletta nom +telette teletta nom +teleutente teleutente nom +teleutenti teleutente nom +televendita televendita nom +televendite televendita nom +televideo televideo nom +televisione televisione nom +televisioni televisione nom +televisiva televisivo adj +televisive televisivo adj +televisivi televisivo adj +televisivo televisivo adj +televisore televisore nom +televisori televisore nom +telex telex nom +teli telo nom +tellina tellina nom +telline tellina nom +tellurica tellurico adj +telluriche tellurico adj +tellurici tellurico adj +tellurico tellurico adj +telo telo nom +telone telone nom +teloni telone nom +tema tema nom +temano temere ver +tematica tematico adj +tematiche tematica nom +tematici tematico adj +tematico tematico adj +teme temere ver +temei temere ver +temendo temere ver +temendoli temere ver +temendolo temere ver +temendone temere ver +temendosi temere ver +temente temere ver +temer temere ver +temerai temere ver +temeranno temere ver +temerari temerario adj +temeraria temerario adj +temerarie temerario adj +temerarietà temerarietà nom +temerario temerario adj +temere temere ver +temerebbero temere ver +temerei temere ver +temerità temerità nom +temerla temere ver +temerle temere ver +temerli temere ver +temerlo temere ver +temerne temere ver +temerono temere ver +temerselo temere ver +temersi temere ver +temerà temere ver +temerò temere ver +temesse temere ver +temessero temere ver +temessi temere ver +temete temere ver +temeva temere ver +temevamo temere ver +temevano temere ver +temevi temere ver +temevo temere ver +temi tema nom +temiamo temere ver +temibile temibile adj +temibili temibile adj +temile temere ver +temine temere ver +temo temere ver +temono temere ver +tempaccio tempaccio nom +tempera tempera nom +temperamatite temperamatite nom +temperamenti temperamento nom +temperamento temperamento nom +temperando temperare ver +temperano temperare ver +temperante temperante adj +temperanti temperante adj +temperanza temperanza nom +temperare temperare ver +temperarli temperare ver +temperarono temperare ver +temperarsi temperare ver +temperasse temperare ver +temperata temperato adj +temperate temperato adj +temperati temperato adj +temperato temperato adj +temperatura temperatura nom +temperature temperatura nom +temperava temperare ver +tempere tempera nom +temperie temperie nom +temperini temperino nom +temperino temperino nom +tempero temperare ver +temperò temperare ver +tempest tempest nom +tempesta tempesta nom +tempestando tempestare ver +tempestandoli tempestare ver +tempestandolo tempestare ver +tempestano tempestare ver +tempestare tempestare ver +tempestarla tempestare ver +tempestarlo tempestare ver +tempestarmi tempestare ver +tempestarono tempestare ver +tempestata tempestare ver +tempestate tempestare ver +tempestati tempestare ver +tempestato tempestare ver +tempestava tempestare ver +tempestavano tempestare ver +tempeste tempesta nom +tempesti tempestio nom +tempestino tempestare ver +tempestiva tempestivo adj +tempestivamente tempestivamente adv +tempestive tempestivo adj +tempestivi tempestivo adj +tempestività tempestività nom +tempestivo tempestivo adj +tempesto tempestare ver +tempestosa tempestoso adj +tempestose tempestoso adj +tempestosi tempestoso adj +tempestoso tempestoso adj +tempestò tempestare ver +tempi tempo nom +tempia tempia nom +tempie tempia nom +tempifica tempificare ver +tempio tempio nom +tempismi tempismo nom +tempismo tempismo nom +templa templare ver +templante templare ver +templar templare ver +templare templare ver +templata templare ver +template templare ver +templati templare ver +templato templare ver +templi tempio|templo nom +templo templo nom +tempo tempo nom_sup +tempora tempora nom +temporale temporale adj +temporalesca temporalesco adj +temporalesche temporalesco adj +temporaleschi temporalesco adj +temporalesco temporalesco adj +temporali temporale adj +temporanea temporaneo adj +temporaneamente temporaneamente adv +temporanee temporaneo adj +temporanei temporaneo adj +temporaneità temporaneità nom +temporaneo temporaneo adj +temporeggia temporeggiare ver +temporeggiamenti temporeggiamento nom +temporeggiamento temporeggiamento nom +temporeggiando temporeggiare ver +temporeggiano temporeggiare ver +temporeggiare temporeggiare ver +temporeggiarono temporeggiare ver +temporeggiato temporeggiare ver +temporeggiatore temporeggiatore nom +temporeggiatrice temporeggiatore nom +temporeggiatrici temporeggiatore nom +temporeggiava temporeggiare ver +temporeggiò temporeggiare ver +temporizzatore temporizzatore nom +temporizzatori temporizzatore nom +tempra tempra nom +temprando temprare ver +temprandone temprare ver +temprano temprare ver +tempranti temprare ver +temprare temprare ver +temprarlo temprare ver +temprarne temprare ver +temprata temprare ver +temprate temprare ver +temprati temprare ver +temprato temprare ver +tempre tempra nom +temprerà temprare ver +tempro temprare ver +temprò temprare ver +temuta temere ver +temute temere ver +temuti temere ver +temuto temere ver +tenace tenace adj +tenacemente tenacemente adv +tenaci tenace adj +tenacia tenacia nom +tenacità tenacità nom +tenaglia tenaglia nom +tenaglie tenaglia nom +tenare tenare adj +tenari tenare adj +tenda tenda nom +tendaggi tendaggio nom +tendaggio tendaggio nom +tendano tendere ver +tende tendere ver +tendendo tendere ver +tendendogli tendere ver +tendendole tendere ver +tendendolo tendere ver +tendendosi tendere ver +tendente tendere ver +tendenti tendere ver +tendenza tendenza nom +tendenze tendenza nom +tendenziale tendenziale adj +tendenziali tendenziale adj +tendenzialmente tendenzialmente adv +tendenziosa tendenzioso adj +tendenziose tendenzioso adj +tendenziosi tendenzioso adj +tendenziosità tendenziosità nom +tendenzioso tendenzioso adj +tender tendere ver +tenderanno tendere ver +tenderci tendere ver +tendere tendere ver +tenderebbe tendere ver +tenderebbero tendere ver +tenderei tendere ver +tenderemo tendere ver +tenderete tendere ver +tendergli tendere ver +tenderla tendere ver +tenderle tendere ver +tenderlo tendere ver +tendersi tendere ver +tendervi tendere ver +tenderà tendere ver +tenderò tendere ver +tendesse tendere ver +tendessero tendere ver +tendete tendere ver +tendeva tendere ver +tendevano tendere ver +tendevi tendere ver +tendi tendere ver +tendiamo tendere ver +tendicatena tendicatena nom +tendicollo tendicollo nom +tendina tendina nom +tendine tendina|tendine nom +tendini tendine nom +tenditore tenditore nom +tenditori tenditore nom +tenditrice tenditore nom +tendo tendere ver +tendone tendone nom +tendoni tendone nom +tendono tendere ver +tendopoli tendopoli nom +tenebra tenebra nom +tenebre tenebra nom +tenebrosa tenebroso adj +tenebrose tenebroso adj +tenebrosi tenebroso adj +tenebroso tenebroso adj +tenemmo tenere ver +tenendo tenere ver +tenendoci tenere ver +tenendogli tenere ver +tenendola tenere ver +tenendole tenere ver +tenendoli tenere ver +tenendolo tenere ver +tenendomi tenere ver +tenendone tenere ver +tenendoselo tenere ver +tenendosi tenere ver +tenendoti tenere ver +tenendovi tenere ver +tenente tenente nom +tenenti tenente nom +tenenza tenenza nom +tenenze tenenza nom +tener tenere ver +tenera tenero adj +tenercela tenere ver +tenercele tenere ver +tenerceli tenere ver +tenercelo tenere ver +tenercene tenere ver +tenerci tenere ver +tenere tenere ver +tenerezza tenerezza nom +tenerezze tenerezza nom +tenergli tenere ver +tenerglielo tenere ver +teneri tenero adj +tenerla tenere ver +tenerle tenere ver +tenerli tenere ver +tenerlo tenere ver +tenermela tenere ver +tenermelo tenere ver +tenermi tenere ver +tenerne tenere ver +tenero tenero adj +tenersela tenere ver +tenersele tenere ver +tenerseli tenere ver +tenerselo tenere ver +tenersene tenere ver +tenersi tenere ver +tenerteli tenere ver +tenerti tenere ver +tenervelo tenere ver +tenervi tenere ver +tenesmo tenesmo nom +tenesse tenere ver +tenessero tenere ver +tenessi tenere ver +tenessimo tenere ver +teneste tenere ver +tenesti tenere ver +tenete tenere ver +teneteci tenere ver +tenetela tenere ver +teneteli tenere ver +tenetelo tenere ver +tenetemi tenere ver +tenetene tenere ver +tenetevela tenere ver +teneteveli tenere ver +tenetevelo tenere ver +tenetevi tenere ver +teneva tenere ver +tenevamo tenere ver +tenevano tenere ver +tenevate tenere ver +tenevi tenere ver +tenevo tenere ver +tenga tenere ver +tengano tenere ver +tengo tenere ver +tengono tenere ver +tenia tenia nom +teniamo tenere ver +teniamocela tenere ver +teniamocele tenere ver +teniamoceli tenere ver +teniamocelo tenere ver +teniamoci tenere ver +teniamola tenere ver +teniamole tenere ver +teniamoli tenere ver +teniamolo tenere ver +teniamone tenere ver +teniasi teniasi nom +teniate tenere ver +tenie tenia nom +tenne tenere ver +tennero tenere ver +tenni tenno nom +tennis tennis nom +tennista tennista nom +tenniste tennista nom +tennisti tennista nom +tennistica tennistico adj +tennistiche tennistico adj +tennistici tennistico adj +tennistico tennistico adj +tenno tenno nom +tenore tenore nom +tenori tenore nom +tenorile tenorile adj +tenorili tenorile adj +tensioattiva tensioattivo adj +tensioattive tensioattivo adj +tensioattivi tensioattivo adj +tensioattivo tensioattivo nom +tensione tensione nom +tensioni tensione nom +tensore tensore nom +tensori tensore nom +tensoriale tensoriale adj +tensoriali tensoriale adj +tenta tentare ver +tentaci tentare ver +tentacolare tentacolare adj +tentacolari tentacolare adj +tentacoli tentacolo nom +tentacolo tentacolo nom +tentai tentare ver +tentami tentare ver +tentammo tentare ver +tentando tentare ver +tentandolo tentare ver +tentandone tentare ver +tentano tentare ver +tentar tentare ver +tentarci tentare ver +tentare tentare ver +tentarla tentare ver +tentarli tentare ver +tentarlo tentare ver +tentarmi tentare ver +tentarne tentare ver +tentarono tentare ver +tentarvi tentare ver +tentasse tentare ver +tentassero tentare ver +tentassi tentare ver +tentassimo tentare ver +tentata tentare ver +tentate tentare ver +tentati tentare ver +tentativi tentativo nom +tentativo tentativo nom +tentato tentare ver +tentatore tentatore nom +tentatori tentatore adj +tentatrice tentatore adj +tentatrici tentatore adj +tentava tentare ver +tentavamo tentare ver +tentavano tentare ver +tentavi tentare ver +tentavo tentare ver +tentazione tentazione nom +tentazioni tentazione nom +tentenna tentenna nom +tentennamenti tentennamento nom +tentennamento tentennamento nom +tentennano tentennare ver +tentennante tentennante adj +tentennanti tentennante adj +tentennare tentennare ver +tentennarono tentennare ver +tentennato tentennare ver +tentennava tentennare ver +tentennavano tentennare ver +tentennerà tentennare ver +tentenni tentennare ver +tentenno tentennare ver +tentennò tentennare ver +tenterai tentare ver +tenteranno tentare ver +tenterebbe tentare ver +tenterebbero tentare ver +tenterei tentare ver +tenteremo tentare ver +tenterà tentare ver +tenterò tentare ver +tenti tentare ver +tentiamo tentare ver +tentino tentare ver +tento tentare ver +tentoni tentoni adv +tentò tentare ver +tenue tenue adj +tenui tenue adj +tenuità tenuità nom +tenuta tenuta nom +tenutari tenutario nom +tenutaria tenutario nom +tenutarie tenutario nom +tenutario tenutario nom +tenutasi tenere ver +tenute tenere ver +tenutesi tenere ver +tenuti tenere ver +tenuto tenere ver +tenutosi tenere ver +tenzone tenzone nom +tenzoni tenzone nom +teobromina teobromina nom +teocratica teocratico adj +teocratiche teocratico adj +teocratici teocratico adj +teocratico teocratico adj +teocrazia teocrazia nom +teocrazie teocrazia nom +teodolite teodolite nom +teodoliti teodolite nom +teofania teofania nom +teofanie teofania nom +teogonia teogonia nom +teogonie teogonia nom +teologa teologo nom +teologale teologale adj +teologali teologale adj +teologhe teologo nom +teologi teologo nom +teologia teologia nom +teologica teologico adj +teologiche teologico adj +teologici teologico adj +teologico teologico adj +teologie teologia nom +teologo teologo nom +teorema teorema nom +teorematica teorematico adj +teoremi teorema nom +teoretica teoretico adj +teoretiche teoretico adj +teoretici teoretico adj +teoretico teoretico adj +teoria teoria nom +teorica teorico adj +teoricamente teoricamente adv +teoriche teorico adj +teorici teorico adj +teorico teorico adj +teorie teoria nom +teorizza teorizzare ver +teorizzando teorizzare ver +teorizzano teorizzare ver +teorizzare teorizzare ver +teorizzarla teorizzare ver +teorizzarne teorizzare ver +teorizzarono teorizzare ver +teorizzata teorizzare ver +teorizzate teorizzare ver +teorizzati teorizzare ver +teorizzato teorizzare ver +teorizzava teorizzare ver +teorizzavano teorizzare ver +teorizzerà teorizzare ver +teorizzò teorizzare ver +teosofa teosofo nom +teosofi teosofo nom +teosofia teosofia nom +teosofica teosofico adj +teosofiche teosofico adj +teosofici teosofico adj +teosofico teosofico adj +teosofie teosofia nom +teosofo teosofo nom +tepali tepalo nom +tepalo tepalo nom +tepee tepee nom +tepida tepido adj +tepidari tepidario nom +tepidario tepidario nom +tepide tepido adj +tepidezza tepidezza nom +tepidi tepido adj +tepore tepore nom +tepori tepore nom +teppa teppa nom +teppaglia teppaglia nom +teppe teppa nom +teppismo teppismo nom +teppista teppista nom +teppiste teppista nom +teppisti teppista nom +tequila tequila nom +ter ter adj +terapeutica terapeutico adj +terapeutiche terapeutico adj +terapeutici terapeutico adj +terapeutico terapeutico adj +terapia terapia nom +terapica terapico adj +terapiche terapico adj +terapici terapico adj +terapico terapico adj +terapie terapia nom +teratogenicità teratogenicità nom +teratologia teratologia nom +teratologie teratologia nom +terbi terbio nom +terbio terbio nom +terebinti terebinto nom +terebinto terebinto nom +teredine teredine nom +teredini teredine nom +terga tergere ver +terge tergere ver +tergere tergere ver +tergersi tergere ver +tergeste tergere ver +tergesti tergere ver +tergete tergere ver +terghi tergo nom +tergi tergere ver +tergicristalli tergicristallo nom +tergicristallo tergicristallo nom +tergiti tergere ver +tergiversa tergiversare ver +tergiversando tergiversare ver +tergiversare tergiversare ver +tergiversarono tergiversare ver +tergiversato tergiversare ver +tergiversava tergiversare ver +tergiverso tergiversare ver +tergiversò tergiversare ver +tergo tergo nom +terilene terilene nom +terital terital nom +termale termale adj +termali termale adj +terme terme nom +termica termico adj +termicamente termicamente adv +termiche termico adj +termici termico adj +termico termico adj +termidoro termidoro nom +termina terminare ver +terminabile terminabile adj +terminabili terminabile adj +terminaci terminare ver +terminai terminare ver +terminal terminal nom +terminale terminale adj +terminali terminale adj +terminalo terminare ver +terminando terminare ver +terminandola terminare ver +terminandole terminare ver +terminandoli terminare ver +terminandolo terminare ver +terminandone terminare ver +terminandovi terminare ver +terminano terminare ver +terminante terminare ver +terminanti terminare ver +terminar terminare ver +terminare terminare ver +terminarla terminare ver +terminarle terminare ver +terminarli terminare ver +terminarlo terminare ver +terminarne terminare ver +terminarono terminare ver +terminarsi terminare ver +terminarvi terminare ver +terminasi terminare ver +terminasse terminare ver +terminassero terminare ver +terminata terminare ver +terminate terminare ver +terminati terminare ver +terminato terminare ver +terminava terminare ver +terminavano terminare ver +terminazione terminazione nom +terminazioni terminazione nom +termine termine nom +termineranno terminare ver +terminerebbe terminare ver +terminerebbero terminare ver +termineremo terminare ver +terminerà terminare ver +terminerò terminare ver +termini termine nom +terminiamo terminare ver +terminino terminare ver +termino terminare ver +terminologia terminologia nom +terminologica terminologico adj +terminologici terminologico adj +terminologico terminologico adj +terminologie terminologia nom +terminò terminare ver +termistore termistore nom +termistori termistore nom +termitai termitaio nom +termitaio termitaio nom +termite termite nom +termiti termite nom +termochimica termochimica nom +termochimiche termochimica nom +termoconvettore termoconvettore nom +termoconvettori termoconvettore nom +termocoppia termocoppia nom +termocoppie termocoppia nom +termodinamica termodinamico adj +termodinamiche termodinamico adj +termodinamici termodinamico adj +termodinamico termodinamico adj +termoelettrica termoelettrico adj +termoelettriche termoelettrico adj +termoelettrici termoelettrico adj +termoelettricità termoelettricità nom +termoelettrico termoelettrico adj +termoelettronica termoelettronico adj +termoelettroniche termoelettronico adj +termoelettronici termoelettronico adj +termoelettronico termoelettronico adj +termogenesi termogenesi nom +termografi termografo nom +termografo termografo nom +termoindurente termoindurente adj +termoindurenti termoindurente adj +termoionica termoionico adj +termoioniche termoionico adj +termoionici termoionico adj +termoionico termoionico adj +termoisolante termoisolante adj +termoisolanti termoisolante adj +termolabile termolabile adj +termolabili termolabile adj +termologia termologia nom +termoluminescenza termoluminescenza nom +termometri termometro nom +termometria termometria nom +termometrica termometrico adj +termometriche termometrico adj +termometrici termometrico adj +termometrico termometrico adj +termometro termometro nom +termonucleare termonucleare adj +termonucleari termonucleare adj +termoplastica termoplastico adj +termoplastiche termoplastico adj +termoplastici termoplastico adj +termoplastico termoplastico adj +termoregolatore termoregolatore nom +termoregolatori termoregolatore nom +termoregolazione termoregolazione nom +termos termos nom +termoscopio termoscopio nom +termosensibile termosensibile adj +termosensibili termosensibile adj +termosifone termosifone nom +termosifoni termosifone nom +termosolari termosolare adj +termostabile termostabile adj +termostabili termostabile adj +termostati termostato nom +termostato termostato nom +termotecnica termotecnica nom +termoterapia termoterapia nom +terna terna nom +terne terna nom +terni terno nom +terno terno nom +terpene terpene nom +terpeni terpene nom +terpenica terpenico adj +terpeniche terpenico adj +terpenici terpenico adj +terpenico terpenico adj +terra terra nom +terracotta terracotta nom +terracquea terracqueo adj +terracqueo terracqueo adj +terraferma terraferma nom +terraglia terraglia nom +terraglie terraglia nom +terrai tenere ver +terramara terramara nom +terramare terramara nom +terranno tenere ver +terranova terranova nom +terrapieni terrapieno nom +terrapieno terrapieno nom +terraqueo terraqueo adj +terrazza terrazza|terrazzo nom +terrazzamenti terrazzamento nom +terrazzamento terrazzamento nom +terrazzano terrazzare ver +terrazzare terrazzare ver +terrazzata terrazzare ver +terrazzate terrazzato adj +terrazzati terrazzato adj +terrazzato terrazzare ver +terrazze terrazza|terrazzo nom +terrazzi terrazzo nom +terrazziere terrazziere nom +terrazzieri terrazziere nom +terrazzini terrazzino nom +terrazzino terrazzino nom +terrazzo terrazzo nom +terre terra nom +terrea terreo adj +terrebbe tenere ver +terrebbero tenere ver +terrecotte terrecotte nom +terree terreo adj +terreferme terreferme nom +terrei tenere ver +terremare terremare nom +terremmo tenere ver +terremo tenere ver +terremotata terremotato adj +terremotate terremotato adj +terremotati terremotato nom +terremotato terremotato adj +terremoti terremoto nom +terremoto terremoto nom +terrena terreno adj +terrene terreno adj +terreni terreno nom +terreno terreno nom +terreo terreo adj +terreste tenere ver +terresti tenere ver +terrestre terrestre adj +terrestri terrestre adj +terrete tenere ver +terribile terribile adj +terribili terribile adj +terricci terriccio nom +terricciato terricciato nom +terriccio terriccio nom +terricola terricolo adj +terricole terricolo adj +terricoli terricolo adj +terricolo terricolo adj +terrier terrier nom +terrifica terrificare ver +terrificante terrificare ver +terrificanti terrificare ver +terrificare terrificare ver +terrificata terrificare ver +terrificati terrificare ver +terrificato terrificare ver +terrifico terrificare ver +terrigena terrigeno adj +terrigene terrigeno adj +terrigeni terrigeno adj +terrigeno terrigeno adj +terrina terrina nom +terrine terrina nom +territori territorio nom +territoriale territoriale adj +territoriali territoriale adj +territorialità territorialità nom +territorio territorio nom +territorî territorio nom +terrona terrone nom +terrone terrone nom +terroni terrone nom +terrore terrore nom +terrori terrore nom +terrorismi terrorismo nom +terrorismo terrorismo nom +terrorista terrorista adj +terroriste terrorista adj +terroristi terrorista nom +terroristica terroristico adj +terroristiche terroristico adj +terroristici terroristico adj +terroristico terroristico adj +terrorizza terrorizzare ver +terrorizzando terrorizzare ver +terrorizzandola terrorizzare ver +terrorizzandoli terrorizzare ver +terrorizzandolo terrorizzare ver +terrorizzano terrorizzare ver +terrorizzante terrorizzare ver +terrorizzanti terrorizzare ver +terrorizzare terrorizzare ver +terrorizzarla terrorizzare ver +terrorizzarle terrorizzare ver +terrorizzarli terrorizzare ver +terrorizzarlo terrorizzare ver +terrorizzarmi terrorizzare ver +terrorizzarono terrorizzare ver +terrorizzarvi terrorizzare ver +terrorizzasse terrorizzare ver +terrorizzata terrorizzare ver +terrorizzate terrorizzare ver +terrorizzati terrorizzare ver +terrorizzato terrorizzare ver +terrorizzava terrorizzare ver +terrorizzavano terrorizzare ver +terrorizzerà terrorizzare ver +terrorizzi terrorizzare ver +terrorizzò terrorizzare ver +terrosa terroso adj +terrose terroso adj +terrosi terroso adj +terroso terroso adj +terrà tenere ver +terrò tenere ver +tersa terso adj +terse terso adj +tersero tergere ver +tersi terso adj +terso terso adj +terza terzo adj +terzana terzana nom +terzarola terzarolare ver +terzaroli terzarolo nom +terzarolo terzarolo nom +terze terzo adj +terzerie terzeria nom +terzetta terzetta nom +terzette terzetta nom +terzetti terzetto nom +terzetto terzetto nom +terzi terzo nom +terziari terziario adj +terziaria terziario adj +terziarie terziario adj +terziario terziario adj +terziarizzazione terziarizzazione nom +terziere terziere nom +terzieri terziere nom +terziglio terziglio nom +terzina terzina nom +terzinati terzinare ver +terzinato terzinare ver +terzine terzina nom +terzini terzino nom +terzino terzino nom +terzo terzo adj_sup +terzultimi terzultimo nom +terzultimo terzultimo nom +terzuoli terzuolo nom +terzuolo terzuolo nom +tesa tendere ver +tesagli tesare ver +tesale tesare ver +tesar tesare ver +tesare tesare ver +tesata tesata nom +tesate tesare ver +tesati tesare ver +tesatura tesatura nom +tesaurizza tesaurizzare ver +tesaurizzare tesaurizzare ver +tesaurizzata tesaurizzare ver +tesaurizzate tesaurizzare ver +tesaurizzati tesaurizzare ver +tesaurizzato tesaurizzare ver +teschi teschio nom +teschio teschio nom +tese teso adj +tesero tendere ver +tesi tesi nom +tesino tesare ver +tesla tesla nom +teso tendere ver +tesoreria tesoreria nom +tesorerie tesoreria nom +tesori tesoro nom +tesoriera tesoriere nom +tesoriere tesoriere nom +tesorieri tesoriere nom +tesoro tesoro nom +tesse tessere ver +tessendo tessere ver +tessendone tessere ver +tesser tessere ver +tessera tessera nom +tesseramenti tesseramento nom +tesseramento tesseramento nom +tesserando tesserare ver +tesserandosi tesserare ver +tesseranno tessere ver +tesserano tesserare ver +tesserare tesserare ver +tesserarlo tesserare ver +tesserarne tesserare ver +tesserarono tesserare ver +tesserarsi tesserare ver +tesserasse tesserare ver +tesserata tesserare ver +tesserate tesserato nom +tesserati tesserato nom +tesserato tesserare ver +tesserava tesserare ver +tessere tessera nom +tesserete tessere ver +tesserino tesserare ver +tesserla tessere ver +tesserle tessere ver +tesserne tessere ver +tessero tesserare ver +tesserono tessere ver +tessersi tessere ver +tesserà tessere ver +tesserò tessere ver +tesseva tessere ver +tessevano tessere ver +tessi tessere ver +tessile tessile adj +tessili tessile adj +tessino tessere ver +tessitore tessitore nom +tessitori tessitore nom +tessitrice tessitore nom +tessitrici tessitore nom +tessitura tessitura nom +tessiture tessitura nom +tesso tessere ver +tessono tessere ver +tessuta tessere ver +tessutale tessutale adj +tessutali tessutale adj +tessute tessere ver +tessuti tessuto nom +tessuto tessuto nom +test test nom +testa testa nom +testacea testaceo adj +testacee testaceo adj +testacei testacei nom +testai testare ver +testalo testare ver +testamentari testamentario adj +testamentaria testamentario adj +testamentarie testamentario adj +testamentario testamentario adj +testamenti testamento nom +testamento testamento nom +testando testare ver +testandole testare ver +testandoli testare ver +testano testare ver +testante testare ver +testarda testardo adj +testardaggine testardaggine nom +testardaggini testardaggine nom +testarde testardo adj +testardi testardo adj +testardo testardo adj +testare testare ver +testarla testare ver +testarle testare ver +testarli testare ver +testarlo testare ver +testarne testare ver +testarono testare ver +testassero testare ver +testata testata nom +testate testata nom +testati testare ver +testatico testatico adj +testato testare ver +testatore testatore nom +testatori testatore nom +testava testare ver +testavano testare ver +teste testa|teste nom +tester tester nom +testeranno testare ver +testerà testare ver +testi teste|testo nom +testiamo testare ver +testicolare testicolare adj +testicolari testicolare adj +testicoli testicolo nom +testicolo testicolo nom +testiera testiera nom +testiere testiera nom +testificano testificare ver +testificare testificare ver +testimone testimone nom +testimoni testimone|testimonio nom +testimonia testimoniare ver +testimoniai testimoniare ver +testimoniale testimoniale adj +testimoniali testimoniale adj +testimoniamo testimoniare ver +testimoniando testimoniare ver +testimoniandoci testimoniare ver +testimoniandone testimoniare ver +testimoniano testimoniare ver +testimoniante testimoniare ver +testimonianti testimoniare ver +testimonianza testimonianza nom +testimonianze testimonianza nom +testimoniarci testimoniare ver +testimoniare testimoniare ver +testimoniargli testimoniare ver +testimoniarla testimoniare ver +testimoniarle testimoniare ver +testimoniarlo testimoniare ver +testimoniarne testimoniare ver +testimoniarono testimoniare ver +testimoniarvi testimoniare ver +testimoniasse testimoniare ver +testimoniassero testimoniare ver +testimoniata testimoniare ver +testimoniate testimoniare ver +testimoniati testimoniare ver +testimoniato testimoniare ver +testimoniava testimoniare ver +testimoniavano testimoniare ver +testimonieranno testimoniare ver +testimonierebbe testimoniare ver +testimonierebbero testimoniare ver +testimonierà testimoniare ver +testimonierò testimoniare ver +testimonino testimoniare ver +testimonio testimonio nom +testimoniò testimoniare ver +testina testina nom +testine testina nom +testino testare ver +testo testo nom +testolina testolina nom +testoline testolina nom +testona testone nom +testone testone nom +testoni testone nom +testosterone testosterone nom +testosteroni testosterone nom +testuale testuale adj +testuali testuale adj +testualmente testualmente adv +testuggine testuggine nom +testuggini testuggine nom +testé testé adv +testò testare ver +tesò tesare ver +tetani tetano nom +tetanica tetanico adj +tetaniche tetanico adj +tetanico tetanico adj +tetano tetano nom +tetra tetro adj +tetraciclina tetraciclina nom +tetracicline tetraciclina nom +tetracloruro tetracloruro nom +tetracordi tetracordo nom +tetracordo tetracordo nom +tetradimensionale tetradimensionale adj +tetraedri tetraedro nom +tetraedro tetraedro nom +tetraetile tetraetile adj +tetrafluoruro tetrafluoruro nom +tetraggine tetraggine nom +tetragona tetragono adj +tetragonale tetragonale adj +tetragonali tetragonale adj +tetragoni tetragono adj +tetragono tetragono adj +tetralogia tetralogia nom +tetralogie tetralogia nom +tetrametri tetrametro nom +tetrametro tetrametro nom +tetraone tetraone nom +tetraoni tetraone nom +tetrapak tetrapak nom +tetrarca tetrarca nom +tetrarchi tetrarca nom +tetrarchia tetrarchia nom +tetrarchie tetrarchia nom +tetrastiche tetrastico adj +tetrastico tetrastico adj +tetrastila tetrastilo adj +tetrastile tetrastilo adj +tetrastilo tetrastilo adj +tetravalente tetravalente adj +tetravalenti tetravalente adj +tetre tetro adj +tetri tetro adj +tetro tetro adj +tetrodi tetrodo nom +tetrodo tetrodo nom +tetta tetta nom +tettarella tettarella nom +tettarelle tettarella nom +tette tetta nom +tetti tetto nom +tetto tetto nom +tettoia tettoia nom +tettoie tettoia nom +tettonica tettonico adj +tettoniche tettonico adj +tettonici tettonico adj +tettonico tettonico adj +tettucci tettuccio nom +tettuccio tettuccio nom +teutonica teutonico adj +teutoniche teutonico adj +teutonici teutonico adj +teutonico teutonico adj +texana texano adj +texane texano adj +texani texano nom +texano texano adj +thailandese thailandese adj +thailandesi thailandese adj +the the nom_sup +thermos thermos nom +thriller thriller nom +thrilling thrilling adj +thyratron thyratron nom +ti ti pro +tiara tiara nom +tiare tiara nom +tiberina tiberino adj +tiberine tiberino adj +tiberini tiberino adj +tiberino tiberino adj +tibetana tibetana adj +tibetane tibetano adj +tibetani tibetano adj +tibetano tibetano adj +tibia tibia nom +tibiale tibiale adj +tibiali tibiale adj +tibie tibia nom +tiburi tiburio nom +tiburio tiburio nom +tic tic nom +ticche ticche nom +ticchetta ticchettare ver +ticchettante ticchettare ver +ticchettare ticchettare ver +ticchettava ticchettare ver +ticchettio ticchettio nom +ticchi ticchio nom +ticchiolatura ticchiolatura nom +tici torre ver +ticket ticket nom +tiene tenere ver +tieni tenere ver +tienici tenere ver +tienila tenere ver +tienile tenere ver +tienili tenere ver +tienilo tenere ver +tienimi tenere ver +tienine tenere ver +tienitela tenere ver +tienitelo tenere ver +tieniti tenere ver +tiepida tiepido adj +tiepide tiepido adj +tiepidezza tiepidezza nom +tiepidi tiepido adj +tiepido tiepido adj +tifa tifare ver +tifando tifare ver +tifane tifare ver +tifano tifare ver +tifare tifare ver +tifarlo tifare ver +tifarono tifare ver +tifasse tifare ver +tifata tifare ver +tifate tifare ver +tifato tifare ver +tifava tifare ver +tifavano tifare ver +tifavo tifare ver +tiferà tifare ver +tifi tifo nom +tifiamo tifare ver +tifico tifico adj +tifino tifare ver +tifo tifo nom +tifoide tifoide adj +tifoidea tifoideo adj +tifoidee tifoideo adj +tifoidi tifoide adj +tifone tifone nom +tifoni tifone nom +tifosa tifoso adj +tifose tifoso adj +tifoseria tifoseria nom +tifoserie tifoseria nom +tifosi tifoso nom +tifoso tifoso nom +tight tight nom +tigli tiglio nom +tiglio tiglio nom +tigna tigna nom +tigne tigna nom +tignola tignola nom +tignole tignola nom +tignosa tignoso adj +tignosi tignoso adj +tignoso tignoso adj +tigrata tigrato adj +tigrate tigrato adj +tigrati tigrato adj +tigrato tigrato adj +tigratura tigratura nom +tigrature tigratura nom +tigre tigre nom +tigri tigre nom +tigrotti tigrotto nom +tigrotto tigrotto nom +tila torre ver +tilde tilde nom +tildi tilde nom +tile torre ver +tili torre ver +tilo torre ver +tilt tilt nom +timballi timballo nom +timballo timballo nom +timbra timbrare ver +timbrando timbrare ver +timbrano timbrare ver +timbrare timbrare ver +timbrarlo timbrare ver +timbrata timbrare ver +timbrate timbrare ver +timbrati timbrare ver +timbrato timbrare ver +timbratura timbratura nom +timbrature timbratura nom +timbravano timbrare ver +timbreranno timbrare ver +timbrerebbe timbrare ver +timbrerà timbrare ver +timbri timbro nom +timbrica timbrico adj +timbriche timbrico adj +timbrici timbrico adj +timbrico timbrico adj +timbro timbro nom +timbrò timbrare ver +timele timele nom +timeli timele nom +timer timer nom +timi timo nom +timida timido adj +timidamente timidamente adv +timide timido adj +timidezza timidezza nom +timidezze timidezza nom +timidi timido adj +timido timido adj +timo timo nom +timolo timolo nom +timone timone nom +timonella timonella nom +timoni timone nom +timoniera timoniera nom +timoniere timoniero adj +timonieri timoniero adj +timorata timorato adj +timorate timorato adj +timorati timorato adj +timorato timorato adj +timore timore nom +timori timore nom +timorosa timoroso adj +timorose timoroso adj +timorosi timoroso adj +timoroso timoroso adj +timpani timpano nom +timpanica timpanico adj +timpaniche timpanico adj +timpanici timpanico adj +timpanico timpanico adj +timpanista timpanista nom +timpanisti timpanista nom +timpano timpano nom +tinca tinca nom +tinche tinca nom +tine torre ver +tinelli tinello nom +tinello tinello nom +tinga tingere ver +tingano tingere ver +tinge tingere ver +tingemmo tingere ver +tingendo tingere ver +tingendole tingere ver +tingendosi tingere ver +tinger tingere ver +tingeranno tingere ver +tingere tingere ver +tingerle tingere ver +tingerli tingere ver +tingermi tingere ver +tingerseli tingere ver +tingersi tingere ver +tingerà tingere ver +tingesse tingere ver +tingeva tingere ver +tingevano tingere ver +tingi tingere ver +tingo tingere ver +tingono tingere ver +tini tino nom +tinniti tinnito nom +tinnito tinnito nom +tino tino nom +tinozza tinozza nom +tinozze tinozza nom +tinse tingere ver +tinsero tingere ver +tinta tinta nom +tintarella tintarella nom +tinte tinta nom +tinteggi tinteggiare ver +tinteggia tinteggiare ver +tinteggiando tinteggiare ver +tinteggiare tinteggiare ver +tinteggiata tinteggiare ver +tinteggiate tinteggiare ver +tinteggiati tinteggiare ver +tinteggiato tinteggiare ver +tinteggiatura tinteggiatura nom +tinteggiature tinteggiatura nom +tinteggio tinteggiare ver +tinti tinto adj +tintinna tintinnare ver +tintinnano tintinnare ver +tintinnante tintinnare ver +tintinnanti tintinnare ver +tintinnar tintinnare ver +tintinnare tintinnare ver +tintinnato tintinnare ver +tintinni tintinnio|tintinno nom +tintinnio tintinnio nom +tintinno tintinno nom +tinto tinto adj +tintora tintore nom +tintore tintore nom +tintori tintorio adj +tintoria tintorio adj +tintorie tintoria nom +tintorio tintorio adj +tintura tintura nom +tinture tintura nom +tiorba tiorba nom +tiorbe tiorba nom +tipa tipo nom +tipe tipo nom +tipi tipo nom +tipica tipico adj +tipicamente tipicamente adv +tipiche tipico adj +tipici tipico adj +tipicità tipicità nom +tipico tipico adj +tipizza tipizzare ver +tipizzando tipizzare ver +tipizzano tipizzare ver +tipizzanti tipizzare ver +tipizzare tipizzare ver +tipizzata tipizzare ver +tipizzate tipizzare ver +tipizzati tipizzare ver +tipizzato tipizzare ver +tipizzazione tipizzazione nom +tipizzazioni tipizzazione nom +tipo tipo nom_sup +tipografa tipografo nom +tipografi tipografo nom +tipografia tipografia nom +tipografica tipografico adj +tipografiche tipografico adj +tipografici tipografico adj +tipografico tipografico adj +tipografie tipografia nom +tipografo tipografo nom +tipologia tipologia nom +tipologica tipologico adj +tipologiche tipologico adj +tipologici tipologico adj +tipologico tipologico adj +tipologie tipologia nom +tipometria tipometria nom +tipometro tipometro nom +tiptologia tiptologia nom +tira tirare ver +tirabaci tirabaci nom +tiraggio tiraggio nom +tiragli tirare ver +tirai tirare ver +tirala tirare ver +tiralatte tiralatte nom +tirali tirare ver +tiralinee tiralinee nom +tiralo tirare ver +tirami tirare ver +tirando tirare ver +tirandogli tirare ver +tirandogliene tirare ver +tirandola tirare ver +tirandole tirare ver +tirandoli tirare ver +tirandolo tirare ver +tirandomi tirare ver +tirandone tirare ver +tirandosi tirare ver +tirane tirare ver +tiranna tiranno adj +tiranneggia tiranneggiare ver +tiranneggiando tiranneggiare ver +tiranneggiandolo tiranneggiare ver +tiranneggiano tiranneggiare ver +tiranneggiare tiranneggiare ver +tiranneggiarla tiranneggiare ver +tiranneggiarono tiranneggiare ver +tiranneggiata tiranneggiare ver +tiranneggiati tiranneggiare ver +tiranneggiato tiranneggiare ver +tiranneggiava tiranneggiare ver +tiranneggiavano tiranneggiare ver +tiranneggiò tiranneggiare ver +tiranni tiranno adj +tirannia tirannia nom +tirannica tirannico adj +tiranniche tirannico adj +tirannici tirannico adj +tirannicida tirannicida nom +tirannicidi tirannicida|tirannicidio nom +tirannicidio tirannicidio nom +tirannico tirannico adj +tirannide tirannide nom +tirannidi tirannide nom +tirannie tirannia nom +tiranno tiranno nom +tirannosauri tirannosauro nom +tirannosauro tirannosauro nom +tirano tirare ver +tirante tirante nom +tiranti tirante nom +tirapiedi tirapiedi nom +tirapugni tirapugni nom +tirar tirare ver +tirarcela tirare ver +tirarci tirare ver +tirare tirare ver +tirargli tirare ver +tirarla tirare ver +tirarle tirare ver +tirarli tirare ver +tirarlo tirare ver +tirarmela tirare ver +tirarmi tirare ver +tirarne tirare ver +tirarono tirare ver +tirarsela tirare ver +tirarsene tirare ver +tirarsi tirare ver +tirarti tirare ver +tirarvi tirare ver +tirasse tirare ver +tirassero tirare ver +tirassi tirare ver +tirata tirare ver +tirate tirare ver +tiratele tirare ver +tiratemi tirare ver +tiratevi tirare ver +tirati tirare ver +tirato tirare ver +tiratore tiratore nom +tiratori tiratore nom +tiratrice tiratore nom +tiratrici tiratore nom +tiratura tiratura nom +tirature tiratura nom +tirava tirare ver +tiravamo tirare ver +tiravano tirare ver +tiravo tirare ver +tirchi tirchio adj +tirchia tirchio adj +tirchieria tirchieria nom +tirchio tirchio adj +tirella tirella nom +tirelle tirella nom +tiremmolla tiremmolla nom +tireostatici tireostatico adj +tireranno tirare ver +tirerebbe tirare ver +tirerei tirare ver +tireremo tirare ver +tireresti tirare ver +tirerà tirare ver +tirerò tirare ver +tiretto tiretto nom +tiri tiro nom +tiriamo tirare ver +tiriamoci tirare ver +tiriamola tirare ver +tiriamole tirare ver +tiriamolo tirare ver +tirino tirare ver +tiritera tiritera nom +tiritere tiritera nom +tirlindana tirlindana nom +tiro tiro nom +tirocinante tirocinante nom +tirocinanti tirocinante nom +tirocini tirocinio nom +tirocinio tirocinio nom +tiroide tiroide nom +tiroidea tiroideo adj +tiroidee tiroideo adj +tiroidei tiroideo adj +tiroideo tiroideo adj +tirolese tirolese adj +tirolesi tirolese adj +tiroxina tiroxina nom +tirrena tirreno adj +tirrene tirreno adj +tirreni tirreno adj +tirrenica tirrenico adj +tirreniche tirrenico adj +tirrenici tirrenico adj +tirrenico tirrenico adj +tirreno tirreno adj +tirsi tirso nom +tirso tirso nom +tirò tirare ver +tisana tisana nom +tisane tisana nom +tisi tisi nom +tisica tisico adj +tisici tisico nom +tisico tisico adj +tisiologi tisiologo nom +tisiologia tisiologia nom +tisiologo tisiologo nom +tissulare tissulare adj +tita titolo ver +titale titolo ver +titane titolo ver +titani titanio|titano nom +titanica titanico adj +titaniche titanico adj +titanici titanico adj +titanico titanico adj +titanio titanio nom +titanismo titanismo nom +titano titano nom +titaste titolo ver +titavi titolo ver +titele torre ver +titi titolo ver +titilla titillare ver +titillare titillare ver +titillo titillare ver +titino titolo ver +tito titolo ver +titol titolo ver +titola titolare ver +titolami titolare ver +titolando titolare ver +titolandola titolare ver +titolandoli titolare ver +titolandolo titolare ver +titolano titolare ver +titolante titolare ver +titolanti titolare ver +titolar titolare ver +titolare titolare nom +titolari titolare nom +titolarità titolarità nom +titolarla titolare ver +titolarle titolare ver +titolarlo titolare ver +titolarono titolare ver +titolarsi titolare ver +titolata titolare ver +titolate titolare ver +titolati titolato nom +titolato titolare ver +titolava titolare ver +titolavano titolare ver +titolazione titolazione nom +titolazioni titolazione nom +titolerei titolare ver +titolerà titolare ver +titoli titolo nom +titolino titolare ver +titollo titolo ver +titolo titolo nom +titolone titolone nom +titoloni titolone nom +titolò titolare ver +tituba titubare ver +titubante titubante adj +titubanti titubante adj +titubanza titubanza nom +titubanze titubanza nom +titubare titubare ver +titubarono titubare ver +titubato titubare ver +titubi titubare ver +tivela torre ver +tivi torre ver +tixotropia tixotropia nom +tizi tizio nom +tizia tizio nom +tizianesca tizianesco adj +tizianesche tizianesco adj +tizianeschi tizianesco adj +tizianesco tizianesco adj +tizie tizio nom +tizio tizio nom +tizzi tizzo nom +tizzo tizzo nom +tizzone tizzone nom +tizzoni tizzone nom +tmesi tmesi nom +toast toast nom +toate torre ver +toboga toboga nom +tocai tocai nom +tocca toccare ver +toccabile toccabile adj +toccabili toccabile adj +toccaceli toccare ver +toccacelo toccare ver +toccai toccare ver +toccami toccare ver +toccando toccare ver +toccandogli toccare ver +toccandola toccare ver +toccandole toccare ver +toccandoli toccare ver +toccandolo toccare ver +toccandone toccare ver +toccandosi toccare ver +toccano toccare ver +toccante toccante adj +toccanti toccante adj +toccar toccare ver +toccare toccare ver +toccargli toccare ver +toccargliela toccare ver +toccarla toccare ver +toccarle toccare ver +toccarli toccare ver +toccarlo toccare ver +toccarmi toccare ver +toccarne toccare ver +toccarono toccare ver +toccarsi toccare ver +toccarti toccare ver +toccasana toccasana nom +toccasse toccare ver +toccassero toccare ver +toccassi toccare ver +toccata toccare ver +toccate toccare ver +toccategli toccare ver +toccatele toccare ver +toccatelo toccare ver +toccatemi toccare ver +toccatevi toccare ver +toccati toccare ver +toccato toccare ver +toccava toccare ver +toccavano toccare ver +toccavi toccare ver +toccavo toccare ver +tocche tocco adj +toccherai toccare ver +toccheranno toccare ver +toccherebbe toccare ver +toccherebbero toccare ver +toccherei toccare ver +toccheremo toccare ver +toccherete toccare ver +toccherà toccare ver +toccherò toccare ver +tocchi tocco adj +tocchiamo toccare ver +tocchino toccare ver +tocco tocco nom +toccò toccare ver +toe torre ver +toeletta toeletta nom +toelette toeletta nom +toeva torre ver +toga toga nom +togata togato adj +togate togato adj +togati togato adj +togato togato adj +toge toga nom +togli togliere ver +togliamo togliere ver +togliamoci togliere ver +togliamogli togliere ver +togliamola togliere ver +togliamole togliere ver +togliamoli togliere ver +togliamolo togliere ver +togliamone togliere ver +togliate togliere ver +toglici togliere ver +toglie togliere ver +togliendo togliere ver +togliendoci togliere ver +togliendogli togliere ver +togliendola togliere ver +togliendole togliere ver +togliendoli togliere ver +togliendolo togliere ver +togliendomi togliere ver +togliendone togliere ver +togliendoseli togliere ver +togliendosi togliere ver +togliendoti togliere ver +togliendovi togliere ver +toglier togliere ver +toglierai togliere ver +toglieranno togliere ver +togliercelo togliere ver +toglierci togliere ver +togliere togliere ver +toglierebbe togliere ver +toglierebbero togliere ver +toglierei togliere ver +toglieremmo togliere ver +toglieremo togliere ver +toglieresti togliere ver +toglierete togliere ver +togliergli togliere ver +togliergliela togliere ver +toglierglieli togliere ver +toglierglielo togliere ver +toglierla togliere ver +toglierle togliere ver +toglierli togliere ver +toglierlo togliere ver +togliermela togliere ver +togliermelo togliere ver +togliermi togliere ver +toglierne togliere ver +togliersela togliere ver +togliersele togliere ver +toglierseli togliere ver +toglierselo togliere ver +togliersi togliere ver +toglierti togliere ver +togliervi togliere ver +toglierà togliere ver +toglierò togliere ver +togliesse togliere ver +togliessero togliere ver +togliessi togliere ver +togliessimo togliere ver +toglieste togliere ver +togliesti togliere ver +togliete togliere ver +toglieteci togliere ver +toglietegli togliere ver +toglietela togliere ver +toglietele togliere ver +toglieteli togliere ver +toglietelo togliere ver +toglietemi togliere ver +toglietevelo togliere ver +toglietevi togliere ver +toglieva togliere ver +toglievano togliere ver +toglievo togliere ver +toglila togliere ver +toglile togliere ver +toglili togliere ver +toglilo togliere ver +toglimi togliere ver +togline togliere ver +toglitela togliere ver +togliti togliere ver +toilette toilette nom +tokaj tokaj nom +tolda tolda nom +tolde tolda nom +tolemaica tolemaico adj +tolemaiche tolemaico adj +tolemaici tolemaico adj +tolemaico tolemaico adj +toletta toletta nom +tolga togliere ver +tolgano togliere ver +tolgo togliere ver +tolgono togliere ver +tollera tollerare ver +tollerabile tollerabile adj +tollerabili tollerabile adj +tollerando tollerare ver +tollerandone tollerare ver +tollerano tollerare ver +tollerante tollerante adj +tolleranti tollerante adj +tolleranza tolleranza nom +tolleranze tolleranza nom +tollerare tollerare ver +tollerarla tollerare ver +tollerarli tollerare ver +tollerarlo tollerare ver +tollerarne tollerare ver +tollerarono tollerare ver +tollerasse tollerare ver +tollerassero tollerare ver +tollerata tollerare ver +tollerate tollerare ver +tollerati tollerare ver +tollerato tollerare ver +tollerava tollerare ver +tolleravano tollerare ver +tollererebbe tollerare ver +tollererei tollerare ver +tollereremo tollerare ver +tollererà tollerare ver +tollererò tollerare ver +tolleri tollerare ver +tolleriamo tollerare ver +tollerino tollerare ver +tollero tollerare ver +tollerò tollerare ver +tolse togliere ver +tolsero togliere ver +tolsi togliere ver +tolta togliere ver +tolte togliere ver +tolti togliere ver +tolto togliere ver +toluene toluene nom +tolueni toluene nom +toluolo toluolo nom +tomahawk tomahawk nom +tomai tomaio nom +tomaia tomaia nom +tomaie tomaia nom +tomaio tomaio nom +tomba tomba nom +tombale tombale adj +tombali tombale adj +tombaroli tombarolo nom +tombarolo tombarolo nom +tombe tomba nom +tombini tombino nom +tombino tombino nom +tombola tombola nom +tombolata tombolare ver +tombolate tombolare ver +tombolato tombolare ver +tombole tombola nom +tomboli tombolo nom +tombolino tombolare ver +tombolo tombolo nom +tomi tomo nom +tomini tomino nom +tomino tomino nom +tomismo tomismo nom +tomista tomista nom +tomiste tomista nom +tomisti tomista nom +tomistica tomistico adj +tomistiche tomistico adj +tomistici tomistico adj +tomistico tomistico adj +tomo tomo nom +tomografia tomografia nom +tomografie tomografia nom +tomoli tomolo nom +tomolo tomolo nom +ton ton nom +tona tonare ver +tonaca tonaca nom +tonache tonaca nom +tonale tonale adj +tonali tonale adj +tonalismo tonalismo nom +tonalità tonalità nom +tonami tonare ver +tonando tonare ver +tonante tonante adj +tonanti tonante adj +tonar tonare ver +tonare tonare ver +tonassi tonare ver +tonate tonare ver +tonati tonare ver +tonato tonare ver +tonava tonare ver +tonchio tonchio nom +tonda tondo adj +tonde tondo adj +tondeggiante tondeggiante adj +tondeggianti tondeggiante adj +tondelli tondello nom +tondello tondello nom +tondi tondo adj +tondini tondino nom +tondino tondino nom +tondo tondo adj +toneranno tonare ver +tonfa tonfare ver +tonfano tonfare ver +tonfare tonfare ver +tonfi tonfo nom +tonfo tonfo nom +toni tono nom +tonica tonico adj +toniche tonico adj +tonici tonico adj +tonico tonico adj +tonifica tonificare ver +tonificando tonificare ver +tonificano tonificare ver +tonificante tonificante adj +tonificanti tonificante adj +tonificare tonificare ver +tonificato tonificare ver +tonino tonare ver +tonnara tonnara nom +tonnare tonnara nom +tonnata tonnato adj +tonnato tonnato adj +tonneau tonneau nom +tonneaux tonneaux nom +tonneggiare tonneggiare ver +tonneggio tonneggio nom +tonnellaggi tonnellaggio nom +tonnellaggio tonnellaggio nom +tonnellata tonnellata nom +tonnellate tonnellata nom +tonnetti tonnetto nom +tonnetto tonnetto nom +tonni tonno nom +tonnini tonnino nom +tonno tonno nom +tono tono nom +tonsilla tonsilla nom +tonsillare tonsillare adj +tonsillari tonsillare adj +tonsille tonsilla nom +tonsillectomia tonsillectomia nom +tonsillectomie tonsillectomia nom +tonsillite tonsillite nom +tonsilliti tonsillite nom +tonsura tonsura nom +tonsurante tonsurare ver +tonsurare tonsurare ver +tonsurate tonsurare ver +tonsurati tonsurare ver +tonsurato tonsurare ver +tonsure tonsura nom +tonta tonto adj +tonti tonto adj +tonto tonto adj +top top adj +topaia topaia nom +topaie topaia nom +topazi topazio nom +topazio topazio nom +topi topo nom +topica topico adj +topiche topico adj +topici topico adj +topicida topicida nom +topicidi topicida nom +topico topico adj +topinambur topinambur nom +topless topless nom +topo topo nom +topografi topografo adj +topografia topografia nom +topografica topografico adj +topografiche topografico adj +topografici topografico adj +topografico topografico adj +topografie topografia nom +topografo topografo adj +topolini topolino nom +topolino topolino nom +topologia topologia nom +topologica topologico adj +topologiche topologico adj +topologici topologico adj +topologico topologico adj +topologie topologia nom +toponimi toponimo nom +toponimia toponimia nom +toponimie toponimia nom +toponimo toponimo nom +toponomastica toponomastica nom +toponomastiche toponomastica nom +toporagni toporagno nom +toporagno toporagno nom +toppa toppa nom +toppe toppa nom +toppi toppo nom +toppo toppo nom +toque toque nom +tor tor nom +torace torace nom +toracentesi toracentesi nom +toraci torace nom +toracica toracico adj +toraciche toracico adj +toracici toracico adj +toracico toracico adj +toracoscopia toracoscopia nom +torba torba nom +torbe torba nom +torbida torbido adj +torbide torbido adj +torbidezza torbidezza nom +torbidi torbido nom +torbido torbido adj +torbiera torbiera nom +torbiere torbiera nom +torca torcere ver +torce torcia nom +torcendo torcere ver +torcendogli torcere ver +torcendoli torcere ver +torcendolo torcere ver +torcendosi torcere ver +torcente torcente adj +torcenti torcente adj +torcere torcere ver +torcergli torcere ver +torcerle torcere ver +torcerne torcere ver +torcersi torcere ver +torcerà torcere ver +torcete torcere ver +torceva torcere ver +torcevano torcere ver +torchi torchio nom +torchia torchiare ver +torchiano torchiare ver +torchiare torchiare ver +torchiata torchiare ver +torchiate torchiare ver +torchiati torchiare ver +torchiato torchiare ver +torchiatura torchiatura nom +torchiature torchiatura nom +torchietti torchietto nom +torchietto torchietto nom +torchio torchio nom +torci torcere ver +torcia torcia nom +torcicolli torcicollo nom +torcicollo torcicollo nom +torciera torciera nom +torciere torciera nom +torciglione torciglione nom +torciglioni torciglione nom +torcitoi torcitoio nom +torcitoio torcitoio nom +torcitori torcitore nom +torcitura torcitura nom +torcoliere torcoliere nom +torcono torcere ver +tordela tordela nom +tordi tordo nom +tordo tordo nom +torea toreare ver +toreador toreador nom +toreare toreare ver +torelli torello nom +torello torello nom +toreo toreare ver +torero torero nom +toreutica toreutica nom +tori torio|toro nom +tories tories nom +torinese torinese adj +torinesi torinese adj +torio torio nom +torlo torlo nom +torma torma nom +tormalina tormalina nom +tormaline tormalina nom +tormenta tormenta nom +tormentando tormentare ver +tormentandolo tormentare ver +tormentandosi tormentare ver +tormentano tormentare ver +tormentar tormentare ver +tormentarci tormentare ver +tormentare tormentare ver +tormentarla tormentare ver +tormentarli tormentare ver +tormentarlo tormentare ver +tormentarmi tormentare ver +tormentarono tormentare ver +tormentarsi tormentare ver +tormentarvi tormentare ver +tormentasse tormentare ver +tormentata tormentare ver +tormentate tormentato adj +tormentati tormentare ver +tormentato tormentare ver +tormentatore tormentatore nom +tormentatori tormentatore nom +tormentava tormentare ver +tormentavano tormentare ver +tormente tormenta nom +tormenteranno tormentare ver +tormenterà tormentare ver +tormenterò tormentare ver +tormenti tormento nom +tormentino tormentare ver +tormento tormento nom +tormentosa tormentoso adj +tormentose tormentoso adj +tormentosi tormentoso adj +tormentoso tormentoso adj +tormentò tormentare ver +tormi torma nom +torna tornare ver +tornaci tornare ver +tornaconti tornaconto nom +tornaconto tornaconto nom +tornado tornado nom +tornai tornare ver +tornala tornare ver +tornale tornare ver +tornami tornare ver +tornammo tornare ver +tornando tornare ver +tornandoci tornare ver +tornandogli tornare ver +tornandone tornare ver +tornandosene tornare ver +tornandosi tornare ver +tornandovi tornare ver +tornano tornare ver +tornante tornante nom +tornanti tornante nom +tornar tornare ver +tornarci tornare ver +tornare tornare ver +tornargli tornare ver +tornarle tornare ver +tornarlo tornare ver +tornarmene tornare ver +tornarmi tornare ver +tornarne tornare ver +tornarono tornare ver +tornarsene tornare ver +tornarsi tornare ver +tornarti tornare ver +tornarvi tornare ver +tornasi tornare ver +tornasole tornasole nom +tornasse tornare ver +tornassero tornare ver +tornassi tornare ver +tornassimo tornare ver +tornata tornare ver +tornate tornata nom +tornatene tornare ver +tornatevene tornare ver +tornati tornare ver +tornato tornare ver +tornatura tornatura nom +tornature tornatura nom +tornava tornare ver +tornavamo tornare ver +tornavano tornare ver +tornavi tornare ver +tornavo tornare ver +tornea torneare ver +torneare torneare ver +tornei torneo nom +torneino torneare ver +tornella tornella nom +torneo torneo nom +tornerai tornare ver +torneranno tornare ver +tornerebbe tornare ver +tornerebbero tornare ver +tornerei tornare ver +torneremmo tornare ver +torneremo tornare ver +torneresti tornare ver +tornerete tornare ver +tornerà tornare ver +tornerò tornare ver +tornese tornese nom +tornesi tornese nom +torneò torneare ver +torni tornio|torno nom +torniamo tornare|tornire ver +torniate tornare|tornire ver +tornino tornare ver +tornio tornio nom +tornire tornire ver +tornisce tornire ver +tornita tornire ver +tornite tornito adj +torniti tornire ver +tornito tornire ver +tornitore tornitore nom +tornitori tornitore nom +tornitura tornitura nom +torniture tornitura nom +torno torno nom +tornò tornare ver +toro toro nom +torpedine torpedine nom +torpedini torpedine nom +torpediniera torpediniera nom +torpediniere torpediniera nom +torpedo torpedo nom +torpedone torpedone nom +torpedoni torpedone nom +torpida torpido adj +torpidi torpido adj +torpido torpido adj +torpore torpore nom +torr torr nom +torrazzi torrazzo nom +torrazzo torrazzo nom +torre torre nom +torrefare torrefare ver +torrefatti torrefare ver +torrefatto torrefare ver +torrefazione torrefazione nom +torrefazioni torrefazione nom +torreggia torreggiare ver +torreggiando torreggiare ver +torreggiano torreggiare ver +torreggiante torreggiare ver +torreggianti torreggiare ver +torreggiare torreggiare ver +torreggiava torreggiare ver +torreggio torreggiare ver +torreggiò torreggiare ver +torrente torrente nom +torrenti torrente nom +torrentizi torrentizio adj +torrentizia torrentizio adj +torrentizie torrentizio adj +torrentizio torrentizio adj +torretta torretta nom +torrette torretta nom +torri torre nom +torrida torrido adj +torride torrido adj +torridi torrido adj +torrido torrido adj +torrione torrione nom +torrioni torrione nom +torrone torrone nom +torroni torrone nom +torse torcere ver +torsero torcere ver +torsi torso nom +torsiometri torsiometro nom +torsiometro torsiometro nom +torsionale torsionale adj +torsionali torsionale adj +torsione torsione nom +torsioni torsione nom +torso torso nom +torsoli torsolo nom +torsolo torsolo nom +torta torta nom +torte torta nom +tortelli tortello nom +tortellini tortellino nom +tortellino tortellino nom +tortello tortello nom +torti torto nom +tortiera tortiera nom +tortiere tortiera nom +tortiglione tortiglione nom +tortiglioni tortiglione nom +tortile tortile adj +tortili tortile adj +tortini tortino nom +tortino tortino nom +torto torto nom +tortora tortora adj +tortore tortora nom +tortrice tortrice nom +tortuosa tortuoso adj +tortuose tortuoso adj +tortuosi tortuoso adj +tortuosità tortuosità nom +tortuoso tortuoso adj +tortura tortura nom +torturando torturare ver +torturandola torturare ver +torturandoli torturare ver +torturandolo torturare ver +torturandosi torturare ver +torturano torturare ver +torturante torturare ver +torturar torturare ver +torturare torturare ver +torturarla torturare ver +torturarle torturare ver +torturarli torturare ver +torturarlo torturare ver +torturarne torturare ver +torturarono torturare ver +torturarsi torturare ver +torturasse torturare ver +torturata torturare ver +torturate torturare ver +torturati torturare ver +torturato torturare ver +torturava torturare ver +torturavamo torturare ver +torturavano torturare ver +torture tortura nom +torturerà torturare ver +torturino torturare ver +torturo torturare ver +torturò torturare ver +torva torvo adj +torve torvo adj +torvi torvo adj +torvo torvo adj +tory tory nom +tosa tosare ver +tosacani tosacani nom +tosaerba tosaerba nom +tosando tosare ver +tosar tosare ver +tosare tosare ver +tosarlo tosare ver +tosata tosare ver +tosate tosare ver +tosati tosare ver +tosato tosare ver +tosatore tosatore nom +tosatori tosatore nom +tosatrice tosatore|tosatrice nom +tosatura tosatura nom +tosature tosatura nom +tosca tosco adj +toscana toscano adj +toscane toscano adj +toscaneggiante toscaneggiare ver +toscaneggianti toscaneggiare ver +toscani toscano adj +toscanismi toscanismo nom +toscanismo toscanismo nom +toscanità toscanità nom +toscanizzati toscanizzare ver +toscanizzato toscanizzare ver +toscano toscano adj +tosche tosco adj +toschi tosco adj +tosco tosco adj +tosi tosare ver +toso tosare ver +tosone tosone nom +tosoni tosone nom +tosse tosse nom +tossendo tossire ver +tossi tosse nom +tossica tossico adj +tossiche tossico adj +tossici tossico adj +tossicità tossicità nom +tossico tossico adj +tossicodipendente tossicodipendente adj +tossicodipendenti tossicodipendente nom +tossicodipendenza tossicodipendenza nom +tossicodipendenze tossicodipendenza nom +tossicologia tossicologia nom +tossicologica tossicologico adj +tossicologici tossicologico adj +tossicologico tossicologico adj +tossicomane tossicomane nom +tossicomani tossicomane nom +tossicomania tossicomania nom +tossicomanie tossicomania nom +tossicosi tossicosi nom +tossina tossina nom +tossine tossina nom +tossire tossire ver +tossisce tossire ver +tossiscono tossire ver +tossito tossire ver +tossiva tossire ver +tossì tossire ver +tosta tosto adj +tostando tostare ver +tostano tostare ver +tostapane tostapane nom +tostare tostare ver +tostata tostare ver +tostate tostare ver +tostati tostare ver +tostato tostare ver +tostatura tostatura nom +tostature tostatura nom +tostavano tostare ver +toste tosto adj +tosti tosto adj +tostino tostare ver +tosto tosto adj +tot tot adj +totale totale nom_sup +totali totale adj +totalitari totalitario adj +totalitaria totalitario adj +totalitarie totalitario adj +totalitario totalitario adj +totalitarismi totalitarismo nom +totalitarismo totalitarismo nom +totalità totalità nom +totalizza totalizzare ver +totalizzando totalizzare ver +totalizzandone totalizzare ver +totalizzandovi totalizzare ver +totalizzano totalizzare ver +totalizzante totalizzante adj +totalizzanti totalizzante adj +totalizzare totalizzare ver +totalizzarne totalizzare ver +totalizzarono totalizzare ver +totalizzate totalizzare ver +totalizzati totalizzare ver +totalizzato totalizzare ver +totalizzatore totalizzatore nom +totalizzatori totalizzatore nom +totalizzava totalizzare ver +totalizzavano totalizzare ver +totalizzazione totalizzazione nom +totalizzeranno totalizzare ver +totalizzerà totalizzare ver +totalizzi totalizzare ver +totalizzò totalizzare ver +totalmente totalmente adv +totani totano nom +totano totano nom +totem totem nom +totemica totemico adj +totemiche totemico adj +totemici totemico adj +totemico totemico adj +totemismo totemismo nom +totip totip nom +totocalcio totocalcio nom +toupet toupet nom +toupie toupie nom +tour tour nom +touring touring nom +tournedos tournedos nom +tourniquet tourniquet nom +tournée tournée nom +tovaglia tovaglia nom +tovagliati tovagliato nom +tovagliato tovagliato nom +tovaglie tovaglia nom +tovaglioli tovagliolo nom +tovagliolo tovagliolo nom +toxoplasma toxoplasma nom +toxoplasmosi toxoplasmosi nom +tozza tozzo adj +tozze tozzo adj +tozzi tozzo adj +tozzo tozzo adj +tra tra pre +traballa traballare ver +traballando traballare ver +traballano traballare ver +traballante traballare ver +traballanti traballare ver +traballare traballare ver +traballava traballare ver +traballo traballare ver +trabalza trabalzare ver +trabalzi trabalzare ver +trabeazione trabeazione nom +trabeazioni trabeazione nom +trabiccoli trabiccolo nom +trabiccolo trabiccolo nom +trabocca traboccare ver +traboccando traboccare ver +traboccano traboccare ver +traboccante traboccare ver +traboccanti traboccare ver +traboccare traboccare ver +traboccarono traboccare ver +traboccasse traboccare ver +traboccata traboccare ver +traboccato traboccare ver +traboccava traboccare ver +traboccavano traboccare ver +trabocchetti trabocchetto nom +trabocchetto trabocchetto adj +trabocchevole trabocchevole adj +trabocchi traboccare ver +trabocchino traboccare ver +trabocco traboccare ver +traboccò traboccare ver +trabucchi trabucco nom +trabucco trabucco nom +trac trac nom +tracagnotto tracagnotto adj +tracce traccia nom +tracceranno tracciare ver +traccerebbe tracciare ver +traccerà tracciare ver +traccheggiare traccheggiare ver +tracci tracciare ver +traccia traccia nom +tracciabilità tracciabilità nom +tracciamenti tracciamento nom +tracciamento tracciamento nom +tracciamo tracciare ver +tracciando tracciare ver +tracciandolo tracciare ver +tracciandone tracciare ver +tracciandovi tracciare ver +tracciano tracciare ver +tracciante tracciante nom +traccianti tracciante nom +tracciare tracciare ver +tracciarla tracciare ver +tracciarle tracciare ver +tracciarli tracciare ver +tracciarlo tracciare ver +tracciarne tracciare ver +tracciarono tracciare ver +tracciarsi tracciare ver +tracciarvi tracciare ver +tracciasse tracciare ver +tracciassero tracciare ver +tracciata tracciare ver +tracciate tracciare ver +tracciati tracciato nom +tracciato tracciato nom +tracciatore tracciatore nom +tracciatori tracciatore nom +tracciatura tracciatura nom +tracciature tracciatura nom +tracciava tracciare ver +tracciavano tracciare ver +traccino tracciare ver +traccio tracciare ver +tracciò tracciare ver +trachea trachea nom +tracheale tracheale adj +tracheali tracheale adj +trachee trachea nom +tracheite tracheite nom +tracheiti tracheite nom +tracheotomia tracheotomia nom +tracheotomie tracheotomia nom +trachini trachino nom +trachino trachino nom +trachite trachite nom +trachiti trachite nom +tracima tracimare ver +tracimando tracimare ver +tracimano tracimare ver +tracimante tracimare ver +tracimanti tracimare ver +tracimare tracimare ver +tracimarono tracimare ver +tracimasse tracimare ver +tracimata tracimare ver +tracimate tracimare ver +tracimato tracimare ver +tracimava tracimare ver +tracimavano tracimare ver +tracimazione tracimazione nom +tracimazioni tracimazione nom +tracimeranno tracimare ver +tracimò tracimare ver +tracolla tracolla nom +tracollando tracollare ver +tracollare tracollare ver +tracolle tracolla nom +tracolli tracollo nom +tracollo tracollo nom +tracollò tracollare ver +tracoma tracoma nom +tracotante tracotante adj +tracotanti tracotante adj +tracotanza tracotanza nom +tradendo tradire ver +tradendoci tradire ver +tradendola tradire ver +tradendoli tradire ver +tradendolo tradire ver +tradendone tradire ver +tradendosi tradire ver +tradii tradire ver +tradimenti tradimento nom +tradimento tradimento nom +trading trading nom +tradir tradire ver +tradiranno tradire ver +tradirci tradire ver +tradire tradire ver +tradirebbe tradire ver +tradirebbero tradire ver +tradirei tradire ver +tradiremo tradire ver +tradirla tradire ver +tradirle tradire ver +tradirli tradire ver +tradirlo tradire ver +tradirmi tradire ver +tradirne tradire ver +tradirono tradire ver +tradirsi tradire ver +tradirti tradire ver +tradirà tradire ver +tradirò tradire ver +tradisca tradire ver +tradiscano tradire ver +tradisce tradire ver +tradisci tradire ver +tradiscimi tradire ver +tradisco tradire ver +tradiscono tradire ver +tradisse tradire ver +tradissero tradire ver +tradisti tradire ver +tradita tradire ver +tradite tradire ver +traditi tradire ver +tradito tradire ver +traditore traditore nom +traditori traditore nom +traditrice traditore adj +traditrici traditore adj +tradiva tradire ver +tradivano tradire ver +tradizionale tradizionale adj +tradizionali tradizionale adj +tradizionalismi tradizionalismo nom +tradizionalismo tradizionalismo nom +tradizionalista tradizionalista nom +tradizionaliste tradizionalista nom +tradizionalisti tradizionalista nom +tradizionalistica tradizionalistico adj +tradizionalistiche tradizionalistico adj +tradizionalistico tradizionalistico adj +tradizionalmente tradizionalmente adv +tradizione tradizione nom +tradizioni tradizione nom +tradotta tradurre ver +tradotte tradurre ver +tradotti tradurre ver +tradotto tradurre ver +traduca tradurre ver +traducano tradurre ver +traduce tradurre ver +traducendo tradurre ver +traducendola tradurre ver +traducendole tradurre ver +traducendoli tradurre ver +traducendolo tradurre ver +traducendone tradurre ver +traducendosi tradurre ver +traducente tradurre ver +traducenti tradurre ver +traducesse tradurre ver +traducessero tradurre ver +traducessi tradurre ver +traducessimo tradurre ver +traducete tradurre ver +traducetelo tradurre ver +traduceva tradurre ver +traducevano tradurre ver +traducevo tradurre ver +traduci tradurre ver +traduciamo tradurre ver +traduciamolo tradurre ver +traducibile traducibile adj +traducibili traducibile adj +traducila tradurre ver +traducile tradurre ver +traducilo tradurre ver +traduco tradurre ver +traducono tradurre ver +tradur tradurre ver +tradurcela tradurre ver +tradurgli tradurre ver +tradurla tradurre ver +tradurle tradurre ver +tradurli tradurre ver +tradurlo tradurre ver +tradurmela tradurre ver +tradurmi tradurre ver +tradurne tradurre ver +tradurranno tradurre ver +tradurre tradurre ver +tradurrebbe tradurre ver +tradurrebbero tradurre ver +tradurrei tradurre ver +tradurremo tradurre ver +tradurreste tradurre ver +tradurresti tradurre ver +tradurrà tradurre ver +tradurrò tradurre ver +tradursi tradurre ver +tradurtela tradurre ver +tradusse tradurre ver +tradussero tradurre ver +tradussi tradurre ver +traduttore traduttore nom +traduttori traduttore nom +traduttrice traduttore nom +traduttrici traduttore nom +traduzione traduzione nom +traduzioni traduzione nom +tradì tradire ver +trae trarre ver +traemmo trarre ver +traendo trarre ver +traendola trarre ver +traendole trarre ver +traendoli trarre ver +traendolo trarre ver +traendone trarre ver +traente traente adj +traenti traente adj +traesse trarre ver +traessero trarre ver +traessi trarre ver +traeste trarre ver +traesti trarre ver +traete trarre ver +traetene trarre ver +traeva trarre ver +traevano trarre ver +traevi trarre ver +traevo trarre ver +trafelata trafelato adj +trafelati trafelato adj +trafelato trafelato adj +traffica trafficare ver +trafficando trafficare ver +trafficano trafficare ver +trafficante trafficante nom +trafficanti trafficante nom +trafficare trafficare ver +trafficata trafficare ver +trafficate trafficare ver +trafficati trafficare ver +trafficato trafficare ver +trafficava trafficare ver +trafficavano trafficare ver +traffichi trafficare ver +traffichino traffichino nom +traffici traffico nom +traffico traffico nom +trafficò trafficare ver +trafigga trafiggere ver +trafigge trafiggere ver +trafiggendo trafiggere ver +trafiggendogli trafiggere ver +trafiggendola trafiggere ver +trafiggendole trafiggere ver +trafiggendoli trafiggere ver +trafiggendolo trafiggere ver +trafiggendone trafiggere ver +trafiggendosi trafiggere ver +trafiggente trafiggere ver +trafiggenti trafiggere ver +trafiggere trafiggere ver +trafiggergli trafiggere ver +trafiggerla trafiggere ver +trafiggerle trafiggere ver +trafiggerli trafiggere ver +trafiggerlo trafiggere ver +trafiggermi trafiggere ver +trafiggerne trafiggere ver +trafiggersi trafiggere ver +trafiggerà trafiggere ver +trafiggeva trafiggere ver +trafiggevano trafiggere ver +trafiggi trafiggere ver +trafiggono trafiggere ver +trafila trafila nom +trafilare trafilare ver +trafilata trafilare ver +trafilate trafilato adj +trafilati trafilato adj +trafilato trafilare ver +trafilava trafilare ver +trafile trafila nom +trafili trafilare ver +trafilo trafilare ver +trafisse trafiggere ver +trafissero trafiggere ver +trafugamenti trafugamento nom +trafugamento trafugamento nom +trafugati trafugare ver +trafugato trafugare ver +tragedia tragedia nom +tragedie tragedia nom +tragediografa tragediografo nom +tragediografi tragediografo nom +tragediografo tragediografo nom +tragga trarre ver +traggano trarre ver +traggo trarre ver +traggono trarre ver +traghetta traghettare ver +traghettamento traghettamento nom +traghettando traghettare ver +traghettandoli traghettare ver +traghettandolo traghettare ver +traghettano traghettare ver +traghettare traghettare ver +traghettarla traghettare ver +traghettarli traghettare ver +traghettarlo traghettare ver +traghettarono traghettare ver +traghettata traghettare ver +traghettate traghettare ver +traghettati traghettare ver +traghettato traghettare ver +traghettatore traghettatore nom +traghettatori traghettatore nom +traghettatrice traghettatore nom +traghettava traghettare ver +traghetteranno traghettare ver +traghetterà traghettare ver +traghetti traghetto nom +traghetto traghetto adj +traghettò traghettare ver +tragica tragico adj +tragicamente tragicamente adv +tragiche tragico adj +tragici tragico adj +tragicità tragicità nom +tragico tragico adj +tragicomica tragicomico adj +tragicomiche tragicomico adj +tragicomici tragicomico adj +tragicomico tragicomico adj +tragicommedia tragicommedia nom +tragicommedie tragicommedia nom +tragitta tragittare ver +tragitti tragitto nom +tragitto tragitto nom +tragittò tragittare ver +traguardi traguardo nom +traguardo traguardo nom +trai trarre ver +traiamo trarre ver +traiamone trarre ver +traici trarre ver +traiettoria traiettoria nom +traiettorie traiettoria nom +traile trarre ver +trailo trarre ver +traina traina nom +trainando trainare ver +trainandola trainare ver +trainandolo trainare ver +trainano trainare ver +trainante trainante adj +trainanti trainante adj +trainare trainare ver +trainarla trainare ver +trainarli trainare ver +trainarlo trainare ver +trainarne trainare ver +trainarono trainare ver +trainasse trainare ver +trainassero trainare ver +trainata trainare ver +trainate trainare ver +trainati trainare ver +trainato trainare ver +trainava trainare ver +trainavano trainare ver +traine traina nom +trainer trainer nom +traineranno trainare ver +trainerà trainare ver +traini traino nom +training training nom +traino traino nom +trainò trainare ver +tralascerei tralasciare ver +tralasceremo tralasciare ver +tralascerà tralasciare ver +tralasci tralasciare ver +tralascia tralasciare ver +tralasciai tralasciare ver +tralasciamo tralasciare ver +tralasciando tralasciare ver +tralasciandone tralasciare ver +tralasciano tralasciare ver +tralasciare tralasciare ver +tralasciarla tralasciare ver +tralasciarle tralasciare ver +tralasciarlo tralasciare ver +tralasciarne tralasciare ver +tralasciarono tralasciare ver +tralasciarsi tralasciare ver +tralasciassero tralasciare ver +tralasciata tralasciare ver +tralasciate tralasciare ver +tralasciati tralasciare ver +tralasciato tralasciare ver +tralasciava tralasciare ver +tralasciavano tralasciare ver +tralascio tralasciare ver +tralasciò tralasciare ver +tralci tralcio nom +tralcio tralcio nom +tralicci traliccio nom +traliccio traliccio nom +tralice tralice nom +traligna tralignare ver +tralignato tralignare ver +traluce tralucere ver +tralucente tralucere ver +tram tram nom +trama trama nom +tramaci tramare ver +tramagli tramaglio nom +tramaglio tramaglio nom +tramanda tramandare ver +tramandai tramandare ver +tramandando tramandare ver +tramandandoci tramandare ver +tramandandola tramandare ver +tramandandolo tramandare ver +tramandandone tramandare ver +tramandano tramandare ver +tramandanti tramandare ver +tramandarci tramandare ver +tramandare tramandare ver +tramandargli tramandare ver +tramandarla tramandare ver +tramandarle tramandare ver +tramandarli tramandare ver +tramandarlo tramandare ver +tramandarne tramandare ver +tramandarono tramandare ver +tramandarsi tramandare ver +tramandasse tramandare ver +tramandassero tramandare ver +tramandata tramandare ver +tramandate tramandare ver +tramandateci tramandare ver +tramandategli tramandare ver +tramandatesi tramandare ver +tramandati tramandare ver +tramandato tramandare ver +tramandava tramandare ver +tramandavano tramandare ver +tramanderanno tramandare ver +tramanderebbe tramandare ver +tramanderà tramandare ver +tramandi tramandare ver +tramandiamo tramandare ver +tramandino tramandare ver +tramando tramare ver +tramandò tramandare ver +tramano tramare ver +tramanti tramare ver +tramar tramare ver +tramare tramare ver +tramarono tramare ver +tramasse tramare ver +tramassero tramare ver +tramata tramare ver +tramati tramare ver +tramato tramare ver +tramava tramare ver +tramavano tramare ver +trambusti trambusto nom +trambusto trambusto nom +trame trama nom +tramerà tramare ver +tramestio tramestio nom +tramezza tramezzare ver +tramezzare tramezzare ver +tramezzata tramezzare ver +tramezzate tramezzare ver +tramezzati tramezzare ver +tramezzato tramezzare ver +tramezzi tramezzo nom +tramezzini tramezzino nom +tramezzino tramezzino nom +tramezzo tramezzo nom +trami tramare ver +tramino tramare ver +tramite tramite pre +tramiti tramite nom +tramo tramare ver +tramogge tramoggia nom +tramoggia tramoggia nom +tramonta tramontare ver +tramontana tramontana nom +tramontando tramontare ver +tramontane tramontana nom +tramontano tramontare ver +tramontante tramontare ver +tramontar tramontare ver +tramontare tramontare ver +tramontarne tramontare ver +tramontarono tramontare ver +tramontasse tramontare ver +tramontata tramontare ver +tramontate tramontare ver +tramontati tramontare ver +tramontato tramontare ver +tramontava tramontare ver +tramontavano tramontare ver +tramonterà tramontare ver +tramonti tramonto nom +tramontino tramontare ver +tramonto tramonto nom +tramontò tramontare ver +tramortendo tramortire ver +tramortendola tramortire ver +tramortendoli tramortire ver +tramortendolo tramortire ver +tramortiranno tramortire ver +tramortire tramortire ver +tramortirla tramortire ver +tramortirlo tramortire ver +tramortirono tramortire ver +tramortirà tramortire ver +tramortisce tramortire ver +tramortiscono tramortire ver +tramortita tramortire ver +tramortite tramortire ver +tramortiti tramortire ver +tramortito tramortire ver +tramortì tramortire ver +trampoli trampolo nom +trampoliere trampoliere adj +trampolieri trampoliere nom +trampolini trampolino nom +trampolino trampolino nom +trampolo trampolo nom +tramuta tramutare ver +tramutando tramutare ver +tramutandola tramutare ver +tramutandole tramutare ver +tramutandoli tramutare ver +tramutandolo tramutare ver +tramutandosi tramutare ver +tramutano tramutare ver +tramutante tramutare ver +tramutanti tramutare ver +tramutare tramutare ver +tramutarla tramutare ver +tramutarle tramutare ver +tramutarli tramutare ver +tramutarlo tramutare ver +tramutarono tramutare ver +tramutarsi tramutare ver +tramutasse tramutare ver +tramutata tramutare ver +tramutate tramutare ver +tramutatesi tramutare ver +tramutati tramutare ver +tramutato tramutare ver +tramutava tramutare ver +tramutavano tramutare ver +tramuteranno tramutare ver +tramuterebbe tramutare ver +tramuterei tramutare ver +tramuterà tramutare ver +tramuti tramutare ver +tramutino tramutare ver +tramuto tramutare ver +tramutò tramutare ver +tramvai tramvai nom +tramvia tramvia nom +tramvie tramvia nom +tramò tramare ver +trance trance|trancia nom +tranche tranche nom +tranci trancio nom +trancia tranciare ver +tranciando tranciare ver +tranciandogli tranciare ver +tranciandole tranciare ver +tranciandolo tranciare ver +tranciandone tranciare ver +tranciano tranciare ver +tranciante tranciare ver +trancianti tranciare ver +tranciare tranciare ver +tranciargli tranciare ver +tranciarlo tranciare ver +tranciarono tranciare ver +tranciata tranciare ver +tranciate tranciare ver +tranciati tranciare ver +tranciato tranciare ver +tranciatura tranciatura nom +tranciava tranciare ver +trancino tranciare ver +trancio trancio nom +tranciò tranciare ver +tranelli tranello nom +tranello tranello nom +trangugia trangugiare ver +trangugiando trangugiare ver +trangugiare trangugiare ver +trangugiato trangugiare ver +tranne tranne pre +tranquilla tranquillo adj +tranquillamente tranquillamente adv +tranquillante tranquillante nom +tranquillanti tranquillante nom +tranquille tranquillo adj +tranquilli tranquillo adj +tranquillino tranquillare ver +tranquillità tranquillità nom +tranquillizza tranquillizzare ver +tranquillizzando tranquillizzare ver +tranquillizzandola tranquillizzare ver +tranquillizzano tranquillizzare ver +tranquillizzante tranquillizzare ver +tranquillizzanti tranquillizzare ver +tranquillizzarci tranquillizzare ver +tranquillizzare tranquillizzare ver +tranquillizzarla tranquillizzare ver +tranquillizzarle tranquillizzare ver +tranquillizzarli tranquillizzare ver +tranquillizzarlo tranquillizzare ver +tranquillizzarmi tranquillizzare ver +tranquillizzarsi tranquillizzare ver +tranquillizzarti tranquillizzare ver +tranquillizzata tranquillizzare ver +tranquillizzati tranquillizzare ver +tranquillizzato tranquillizzare ver +tranquillizzavo tranquillizzare ver +tranquillizzi tranquillizzare ver +tranquillizzo tranquillizzare ver +tranquillizzò tranquillizzare ver +tranquillo tranquillo adj +transalpina transalpino adj +transalpine transalpino adj +transalpini transalpino adj +transalpino transalpino adj +transatlantica transatlantico adj +transatlantiche transatlantico adj +transatlantici transatlantico adj +transatlantico transatlantico adj +transazione transazione nom +transazioni transazione nom +transcaucasica transcaucasica adj +transcaucasiche transcaucasica adj +transcaucasici transcaucasica adj +transcaucasico transcaucasica adj +transcontinentale transcontinentale adj +transcontinentali transcontinentale adj +transdisciplinare transdisciplinare adj +transeat transeat int +transenna transenna nom +transennata transennare ver +transennate transennare ver +transennato transennare ver +transenne transenna nom +transessuale transessuale adj +transessuali transessuale adj +transetti transetto nom +transetto transetto nom +transeunte transeunte adj +transeunti transeunte adj +transeuropea transeuropeo adj +transeuropee transeuropeo adj +transeuropei transeuropeo adj +transeuropeo transeuropeo adj +transfert transfert nom +transfrontaliera transfrontaliero adj +transfrontaliere transfrontaliero adj +transfrontalieri transfrontaliero adj +transfrontaliero transfrontaliero adj +transfuga transfuga nom +transfughe transfuga nom +transfughi transfuga nom +transiberiana transiberiano adj +transiberiano transiberiano adj +transiga transigere ver +transige transigere ver +transigente transigere ver +transigenti transigere ver +transigere transigere ver +transigeva transigere ver +transigo transigere ver +transigono transigere ver +transistor transistor nom +transistore transistore nom +transistori transistore nom +transistorizzata transistorizzare ver +transistorizzati transistorizzare ver +transistorizzato transistorizzare ver +transita transitare ver +transitabile transitabile adj +transitabili transitabile adj +transitabilità transitabilità nom +transitando transitare ver +transitandovi transitare ver +transitano transitare ver +transitante transitare ver +transitanti transitare ver +transitare transitare ver +transitarono transitare ver +transitarvi transitare ver +transitasse transitare ver +transitassero transitare ver +transitata transitare ver +transitate transitare ver +transitati transitare ver +transitato transitare ver +transitava transitare ver +transitavano transitare ver +transiteranno transitare ver +transiterebbe transitare ver +transiterà transitare ver +transiti transito nom +transitino transitare ver +transitiva transitivo adj +transitive transitivo adj +transitivi transitivo adj +transitivo transitivo adj +transito transito nom +transitori transitorio adj +transitoria transitorio adj +transitoriamente transitoriamente adv +transitorie transitorio adj +transitorietà transitorietà nom +transitorio transitorio adj +transitò transitare ver +transizione transizione nom +transizioni transizione nom +transmutazione transmutazione nom +transnazionale transnazionale adj +transnazionali transnazionale adj +transnazionalità transnazionalità nom +transoceanica transoceanico adj +transoceaniche transoceanico adj +transoceanici transoceanico adj +transoceanico transoceanico adj +transonica transonico adj +transoniche transonico adj +transonici transonico adj +transonico transonico adj +transpadana transpadano adj +transpadane transpadano adj +transpadani transpadano adj +transpolari transpolare adj +transregionale transregionale adj +transumane transumare ver +transumano transumare ver +transumante transumare ver +transumanti transumare ver +transumanza transumanza nom +transumanze transumanza nom +transumare transumare ver +transumava transumare ver +transumavano transumare ver +transuranici transuranico adj +transuranico transuranico adj +transustanziazione transustanziazione nom +trantran trantran int +tranvai tranvai nom +tranvia tranvia nom +tranviari tranviario adj +tranviaria tranviario adj +tranviarie tranviario adj +tranviario tranviario adj +tranvie tranvia nom +tranviere tranviere nom +tranvieri tranviere nom +trapana trapanare ver +trapanando trapanare ver +trapanano trapanare ver +trapanar trapanare ver +trapanare trapanare ver +trapanasi trapanare ver +trapanata trapanare ver +trapanati trapanare ver +trapanato trapanare ver +trapanatura trapanatura nom +trapanature trapanatura nom +trapanazione trapanazione nom +trapanazioni trapanazione nom +trapani trapano nom +trapano trapano nom +trapassa trapassare ver +trapassando trapassare ver +trapassandogli trapassare ver +trapassandola trapassare ver +trapassandole trapassare ver +trapassandolo trapassare ver +trapassano trapassare ver +trapassante trapassare ver +trapassar trapassare ver +trapassare trapassare ver +trapassarla trapassare ver +trapassarlo trapassare ver +trapassarono trapassare ver +trapassasse trapassare ver +trapassata trapassare ver +trapassate trapassato adj +trapassati trapassato nom +trapassato trapassato nom +trapassava trapassare ver +trapassavano trapassare ver +trapasserà trapassare ver +trapassi trapasso nom +trapasso trapasso nom +trapassò trapassare ver +trapela trapelare ver +trapelano trapelare ver +trapelare trapelare ver +trapelarono trapelare ver +trapelasse trapelare ver +trapelata trapelare ver +trapelate trapelare ver +trapelati trapelare ver +trapelato trapelare ver +trapelava trapelare ver +trapelavano trapelare ver +trapeli trapelo nom +trapelino trapelare ver +trapelo trapelo nom +trapelò trapelare ver +trapezi trapezio nom +trapezio trapezio nom +trapezista trapezista nom +trapeziste trapezista nom +trapezisti trapezista nom +trapezoidale trapezoidale adj +trapezoidali trapezoidale adj +trapianta trapiantare ver +trapiantando trapiantare ver +trapiantandole trapiantare ver +trapiantandosi trapiantare ver +trapiantano trapiantare ver +trapiantare trapiantare ver +trapiantargli trapiantare ver +trapiantarla trapiantare ver +trapiantarli trapiantare ver +trapiantarlo trapiantare ver +trapiantarono trapiantare ver +trapiantarsi trapiantare ver +trapiantata trapiantare ver +trapiantate trapiantare ver +trapiantati trapiantare ver +trapiantato trapiantare ver +trapiantatrice trapiantatrice nom +trapiantatrici trapiantatrice nom +trapiantavano trapiantare ver +trapianti trapianto nom +trapianto trapianto nom +trapiantò trapiantare ver +trappa trappa nom +trappe trappa nom +trappista trappista nom +trappisti trappista nom +trappola trappola nom +trappole trappola nom +trapunta trapunta nom +trapuntata trapuntare ver +trapuntate trapuntare ver +trapuntato trapuntare ver +trapunte trapunta nom +trapunto trapungere ver +trar trarre ver +trarci trarre ver +trarla trarre ver +trarle trarre ver +trarli trarre ver +trarlo trarre ver +trarne trarre ver +trarrai trarre ver +trarranno trarre ver +trarre trarre ver +trarrebbe trarre ver +trarrebbero trarre ver +trarrei trarre ver +trarremmo trarre ver +trarremo trarre ver +trarrete trarre ver +trarrà trarre ver +trarrò trarre ver +trarsi trarre ver +trarvi trarre ver +trasalimenti trasalimento nom +trasalimento trasalimento nom +trasalire trasalire ver +trasalisce trasalire ver +trasalito trasalire ver +trasalì trasalire ver +trasandata trasandato adj +trasandate trasandato adj +trasandati trasandato adj +trasandato trasandato adj +trasborda trasbordare ver +trasbordando trasbordare ver +trasbordano trasbordare ver +trasbordante trasbordare ver +trasbordare trasbordare ver +trasbordarli trasbordare ver +trasbordarne trasbordare ver +trasbordarono trasbordare ver +trasbordate trasbordare ver +trasbordati trasbordare ver +trasbordato trasbordare ver +trasbordi trasbordo nom +trasbordo trasbordo nom +trasbordò trasbordare ver +trascegliere trascegliere ver +trascelti trascegliere ver +trascenda trascendere ver +trascendano trascendere ver +trascende trascendere ver +trascendendo trascendere ver +trascendendoli trascendere ver +trascendentale trascendentale adj +trascendentali trascendentale adj +trascendentalismo trascendentalismo nom +trascendente trascendente adj +trascendenti trascendente adj +trascendenza trascendenza nom +trascendere trascendere ver +trascenderebbero trascendere ver +trascenderla trascendere ver +trascenderlo trascendere ver +trascenderà trascendere ver +trascendesse trascendere ver +trascendessero trascendere ver +trascendeva trascendere ver +trascendevano trascendere ver +trascendi trascendere ver +trascendiamo trascendere ver +trascendo trascendere ver +trascendono trascendere ver +trascesa trascendere ver +trascese trascendere ver +trascesero trascendere ver +trascesi trascendere ver +trasceso trascendere ver +trascina trascinare ver +trascinale trascinare ver +trascinamento trascinamento nom +trascinando trascinare ver +trascinandola trascinare ver +trascinandole trascinare ver +trascinandoli trascinare ver +trascinandolo trascinare ver +trascinandone trascinare ver +trascinandosi trascinare ver +trascinandovi trascinare ver +trascinano trascinare ver +trascinante trascinare ver +trascinanti trascinare ver +trascinar trascinare ver +trascinarci trascinare ver +trascinare trascinare ver +trascinarla trascinare ver +trascinarle trascinare ver +trascinarli trascinare ver +trascinarlo trascinare ver +trascinarmi trascinare ver +trascinarne trascinare ver +trascinarono trascinare ver +trascinarsi trascinare ver +trascinarti trascinare ver +trascinarvi trascinare ver +trascinasse trascinare ver +trascinassero trascinare ver +trascinata trascinare ver +trascinate trascinare ver +trascinati trascinare ver +trascinato trascinare ver +trascinatore trascinatore nom +trascinatori trascinatore nom +trascinatrice trascinatore adj +trascinava trascinare ver +trascinavano trascinare ver +trascineranno trascinare ver +trascinerebbe trascinare ver +trascinerebbero trascinare ver +trascineremo trascinare ver +trascinerà trascinare ver +trascini trascinare ver +trasciniamo trascinare ver +trascinino trascinare ver +trascino trascinare ver +trascinò trascinare ver +trascolora trascolorare ver +trascolorano trascolorare ver +trascorra trascorrere ver +trascorrano trascorrere ver +trascorre trascorrere ver +trascorrendo trascorrere ver +trascorrendovi trascorrere ver +trascorrente trascorrere ver +trascorrenti trascorrere ver +trascorrer trascorrere ver +trascorreranno trascorrere ver +trascorrerci trascorrere ver +trascorrere trascorrere ver +trascorrerebbero trascorrere ver +trascorrerla trascorrere ver +trascorrerle trascorrere ver +trascorrerlo trascorrere ver +trascorrervi trascorrere ver +trascorrerà trascorrere ver +trascorrerò trascorrere ver +trascorresse trascorrere ver +trascorressero trascorrere ver +trascorrete trascorrere ver +trascorreva trascorrere ver +trascorrevano trascorrere ver +trascorri trascorrere ver +trascorriamo trascorrere ver +trascorro trascorrere ver +trascorrono trascorrere ver +trascorsa trascorrere ver +trascorse trascorrere ver +trascorsero trascorrere ver +trascorsi trascorso adj +trascorso trascorrere ver +trascrisse trascrivere ver +trascrissero trascrivere ver +trascrissi trascrivere ver +trascritta trascrivere ver +trascritte trascrivere ver +trascritti trascrivere ver +trascritto trascrivere ver +trascrittore trascrittore nom +trascrittori trascrittore nom +trascriva trascrivere ver +trascrive trascrivere ver +trascrivendo trascrivere ver +trascrivendola trascrivere ver +trascrivendole trascrivere ver +trascrivendoli trascrivere ver +trascrivendolo trascrivere ver +trascrivendone trascrivere ver +trascrivente trascrivere ver +trascriveranno trascrivere ver +trascrivere trascrivere ver +trascriverebbe trascrivere ver +trascriverla trascrivere ver +trascriverle trascrivere ver +trascriverli trascrivere ver +trascriverlo trascrivere ver +trascriverne trascrivere ver +trascriversi trascrivere ver +trascriverà trascrivere ver +trascriveva trascrivere ver +trascrivevano trascrivere ver +trascriviamo trascrivere ver +trascrivo trascrivere ver +trascrivono trascrivere ver +trascrizione trascrizione nom +trascrizioni trascrizione nom +trascura trascurare ver +trascurabile trascurabile adj +trascurabili trascurabile adj +trascurale trascurare ver +trascurando trascurare ver +trascurandola trascurare ver +trascurandolo trascurare ver +trascurandone trascurare ver +trascurano trascurare ver +trascurare trascurare ver +trascurarla trascurare ver +trascurarle trascurare ver +trascurarlo trascurare ver +trascurarne trascurare ver +trascurarono trascurare ver +trascurarsi trascurare ver +trascurasse trascurare ver +trascurassero trascurare ver +trascurata trascurare ver +trascurate trascurare ver +trascuratezza trascuratezza nom +trascuratezze trascuratezza nom +trascurati trascurare ver +trascurato trascurare ver +trascurava trascurare ver +trascuravano trascurare ver +trascurerei trascurare ver +trascureremo trascurare ver +trascurerà trascurare ver +trascuri trascurare ver +trascuriamo trascurare ver +trascurino trascurare ver +trascuro trascurare ver +trascurò trascurare ver +trasdotte trasdurre ver +trasdotti trasdurre ver +trasdotto trasdurre ver +trasduce trasdurre ver +trasducendo trasdurre ver +trasducono trasdurre ver +trasdurre trasdurre ver +trasdurrà trasdurre ver +trasduttore trasduttore nom +trasduttori trasduttore nom +trasecola trasecolare ver +trasecolando trasecolare ver +trasecolare trasecolare ver +trasecolato trasecolare ver +trasecolo trasecolare ver +trasferendo trasferire ver +trasferendogli trasferire ver +trasferendola trasferire ver +trasferendole trasferire ver +trasferendoli trasferire ver +trasferendolo trasferire ver +trasferendone trasferire ver +trasferendosi trasferire ver +trasferendovi trasferire ver +trasferiamo trasferire ver +trasferiamoci trasferire ver +trasferiamola trasferire ver +trasferiamolo trasferire ver +trasferibile trasferibile adj +trasferibili trasferibile adj +trasferibilità trasferibilità nom +trasferii trasferire ver +trasferimenti trasferimento nom +trasferimento trasferimento nom +trasferimmo trasferire ver +trasferir trasferire ver +trasferiranno trasferire ver +trasferirci trasferire ver +trasferire trasferire ver +trasferirebbe trasferire ver +trasferirei trasferire ver +trasferiremo trasferire ver +trasferirgli trasferire ver +trasferirla trasferire ver +trasferirle trasferire ver +trasferirli trasferire ver +trasferirlo trasferire ver +trasferirmi trasferire ver +trasferirne trasferire ver +trasferirono trasferire ver +trasferirsi trasferire ver +trasferirti trasferire ver +trasferirvi trasferire ver +trasferirà trasferire ver +trasferirò trasferire ver +trasferisca trasferire ver +trasferiscano trasferire ver +trasferisce trasferire ver +trasferisci trasferire ver +trasferiscili trasferire ver +trasferisciti trasferire ver +trasferisco trasferire ver +trasferiscono trasferire ver +trasferisse trasferire ver +trasferissero trasferire ver +trasferissimo trasferire ver +trasferisti trasferire ver +trasferita trasferire ver +trasferite trasferire ver +trasferitesi trasferire ver +trasferitevi trasferire ver +trasferiti trasferire ver +trasferito trasferire ver +trasferiva trasferire ver +trasferivano trasferire ver +trasferivi trasferire ver +trasferivo trasferire ver +trasferta trasferta nom +trasferte trasferta nom +trasferì trasferire ver +trasfigura trasfigurare ver +trasfigurando trasfigurare ver +trasfigurandola trasfigurare ver +trasfigurandole trasfigurare ver +trasfigurandoli trasfigurare ver +trasfigurandolo trasfigurare ver +trasfigurandone trasfigurare ver +trasfigurandosi trasfigurare ver +trasfigurano trasfigurare ver +trasfigurante trasfigurare ver +trasfiguranti trasfigurare ver +trasfigurare trasfigurare ver +trasfigurarla trasfigurare ver +trasfigurarlo trasfigurare ver +trasfigurarsi trasfigurare ver +trasfigurata trasfigurare ver +trasfigurate trasfigurare ver +trasfigurati trasfigurare ver +trasfigurato trasfigurare ver +trasfigurava trasfigurare ver +trasfigurazione trasfigurazione nom +trasfigurazioni trasfigurazione nom +trasfigurò trasfigurare ver +trasfonda trasfondere ver +trasfonde trasfondere ver +trasfondendo trasfondere ver +trasfondendole trasfondere ver +trasfondendovi trasfondere ver +trasfondere trasfondere ver +trasfonderlo trasfondere ver +trasfondervi trasfondere ver +trasfondeva trasfondere ver +trasfondono trasfondere ver +trasforma trasformare ver +trasformabile trasformabile adj +trasformabili trasformabile adj +trasformai trasformare ver +trasformala trasformare ver +trasformale trasformare ver +trasformali trasformare ver +trasformalo trasformare ver +trasformando trasformare ver +trasformandola trasformare ver +trasformandole trasformare ver +trasformandoli trasformare ver +trasformandolo trasformare ver +trasformandone trasformare ver +trasformandosi trasformare ver +trasformano trasformare ver +trasformante trasformare ver +trasformanti trasformare ver +trasformar trasformare ver +trasformarci trasformare ver +trasformare trasformare ver +trasformarla trasformare ver +trasformarle trasformare ver +trasformarli trasformare ver +trasformarlo trasformare ver +trasformarmi trasformare ver +trasformarne trasformare ver +trasformarono trasformare ver +trasformarsi trasformare ver +trasformarti trasformare ver +trasformasi trasformare ver +trasformasse trasformare ver +trasformassero trasformare ver +trasformassimo trasformare ver +trasformata trasformare ver +trasformate trasformare ver +trasformatela trasformare ver +trasformatelo trasformare ver +trasformatesi trasformare ver +trasformatevi trasformare ver +trasformati trasformato adj +trasformato trasformare ver +trasformatore trasformatore nom +trasformatori trasformatore nom +trasformava trasformare ver +trasformavano trasformare ver +trasformavo trasformare ver +trasformazionale trasformazionale adj +trasformazionali trasformazionale adj +trasformazione trasformazione nom +trasformazioni trasformazione nom +trasformerai trasformare ver +trasformeranno trasformare ver +trasformerebbe trasformare ver +trasformerebbero trasformare ver +trasformerei trasformare ver +trasformeremmo trasformare ver +trasformeremo trasformare ver +trasformeresti trasformare ver +trasformerà trasformare ver +trasformerò trasformare ver +trasformi trasformare ver +trasformiamo trasformare ver +trasformiamoci trasformare ver +trasformiamola trasformare ver +trasformiamolo trasformare ver +trasformino trasformare ver +trasformismi trasformismo nom +trasformismo trasformismo nom +trasformista trasformista nom +trasformiste trasformista nom +trasformisti trasformista nom +trasformo trasformare ver +trasformò trasformare ver +trasfusa trasfondere ver +trasfuse trasfondere ver +trasfusi trasfondere ver +trasfusionale trasfusionale adj +trasfusionali trasfusionale adj +trasfusione trasfusione nom +trasfusioni trasfusione nom +trasfuso trasfondere ver +trasgredendo trasgredire ver +trasgrediamo trasgredire ver +trasgredire trasgredire ver +trasgredirla trasgredire ver +trasgredirle trasgredire ver +trasgredirli trasgredire ver +trasgredirono trasgredire ver +trasgredirà trasgredire ver +trasgredisca trasgredire ver +trasgrediscano trasgredire ver +trasgredisce trasgredire ver +trasgredisco trasgredire ver +trasgrediscono trasgredire ver +trasgredisse trasgredire ver +trasgredita trasgredire ver +trasgredite trasgredire ver +trasgrediti trasgredire ver +trasgredito trasgredire ver +trasgrediva trasgredire ver +trasgredivano trasgredire ver +trasgredì trasgredire ver +trasgressione trasgressione nom +trasgressioni trasgressione nom +trasgressore trasgressore nom +trasgressori trasgressore nom +trasla traslare ver +traslaci traslare ver +traslando traslare ver +traslandole traslare ver +traslandolo traslare ver +traslano traslare ver +traslante traslare ver +traslanti traslare ver +traslare traslare ver +traslarla traslare ver +traslarle traslare ver +traslarlo traslare ver +traslarne traslare ver +traslarono traslare ver +traslarsi traslare ver +traslata traslare ver +traslate traslare ver +traslati traslare ver +traslato traslare ver +traslatori traslatorio adj +traslatorio traslatorio adj +traslava traslare ver +traslazione traslazione nom +traslazioni traslazione nom +trasli traslare ver +traslittera traslitterare ver +traslitterando traslitterare ver +traslitterandone traslitterare ver +traslitterano traslitterare ver +traslitterare traslitterare ver +traslitterarla traslitterare ver +traslitterarle traslitterare ver +traslitterarlo traslitterare ver +traslitterata traslitterare ver +traslitterate traslitterare ver +traslitterati traslitterare ver +traslitterato traslitterare ver +traslitterava traslitterare ver +traslitterazione traslitterazione nom +traslitterazioni traslitterazione nom +traslitteriamo traslitterare ver +traslo traslare ver +trasloca traslocare ver +traslocando traslocare ver +traslocandole traslocare ver +traslocano traslocare ver +traslocante traslocare ver +traslocare traslocare ver +traslocarono traslocare ver +traslocasi traslocare ver +traslocata traslocare ver +traslocate traslocare ver +traslocati traslocare ver +traslocato traslocare ver +traslocava traslocare ver +traslocherà traslocare ver +traslochi trasloco nom +trasloco trasloco nom +traslocò traslocare ver +traslucida traslucido adj +traslucide traslucido adj +traslucidi traslucido adj +traslucido traslucido adj +traslò traslare ver +trasmessa trasmettere ver +trasmesse trasmettere ver +trasmessi trasmettere ver +trasmesso trasmettere ver +trasmetta trasmettere ver +trasmettano trasmettere ver +trasmette trasmettere ver +trasmettendo trasmettere ver +trasmettendoci trasmettere ver +trasmettendogli trasmettere ver +trasmettendola trasmettere ver +trasmettendole trasmettere ver +trasmettendoli trasmettere ver +trasmettendolo trasmettere ver +trasmettendone trasmettere ver +trasmettendosi trasmettere ver +trasmettendovi trasmettere ver +trasmettente trasmettere ver +trasmettenti trasmettere ver +trasmetter trasmettere ver +trasmetteranno trasmettere ver +trasmetterci trasmettere ver +trasmettere trasmettere ver +trasmetterebbe trasmettere ver +trasmetterebbero trasmettere ver +trasmetterei trasmettere ver +trasmetteremo trasmettere ver +trasmettergli trasmettere ver +trasmetterla trasmettere ver +trasmetterle trasmettere ver +trasmetterli trasmettere ver +trasmetterlo trasmettere ver +trasmetterne trasmettere ver +trasmettersi trasmettere ver +trasmetterti trasmettere ver +trasmettervi trasmettere ver +trasmetterà trasmettere ver +trasmetterò trasmettere ver +trasmettesse trasmettere ver +trasmettessero trasmettere ver +trasmettessi trasmettere ver +trasmettete trasmettere ver +trasmetteva trasmettere ver +trasmettevano trasmettere ver +trasmetti trasmettere ver +trasmettiamo trasmettere ver +trasmettitore trasmettitore nom +trasmettitori trasmettitore nom +trasmettitrice trasmettitore nom +trasmettitrici trasmettitore nom +trasmetto trasmettere ver +trasmettono trasmettere ver +trasmigra trasmigrare ver +trasmigrando trasmigrare ver +trasmigrano trasmigrare ver +trasmigrare trasmigrare ver +trasmigrata trasmigrare ver +trasmigrate trasmigrare ver +trasmigrati trasmigrare ver +trasmigrato trasmigrare ver +trasmigravate trasmigrare ver +trasmigrazione trasmigrazione nom +trasmigrazioni trasmigrazione nom +trasmigrerà trasmigrare ver +trasmigrò trasmigrare ver +trasmise trasmettere ver +trasmisero trasmettere ver +trasmisi trasmettere ver +trasmissibile trasmissibile adj +trasmissibili trasmissibile adj +trasmissibilità trasmissibilità nom +trasmissione trasmissione nom +trasmissioni trasmissione nom +trasmittente trasmittente adj +trasmittenti trasmittente adj +trasmoda trasmodare ver +trasognante trasognare ver +trasognata trasognato adj +trasognate trasognato adj +trasognati trasognato adj +trasognato trasognato adj +traspadana traspadano adj +traspare trasparire ver +trasparendo trasparire ver +trasparente trasparente nom +trasparenti trasparente adj +trasparenza trasparenza nom +trasparenze trasparenza nom +traspariranno trasparire ver +trasparire trasparire ver +trasparirebbe trasparire ver +trasparirà trasparire ver +trasparisse trasparire ver +traspariva trasparire ver +trasparivano trasparire ver +traspira traspirare ver +traspirando traspirare ver +traspirano traspirare ver +traspirante traspirare ver +traspiranti traspirare ver +traspirare traspirare ver +traspirata traspirare ver +traspirati traspirare ver +traspirato traspirare ver +traspirava traspirare ver +traspirazione traspirazione nom +traspone trasporre ver +trasponendo trasporre ver +trasponendola trasporre ver +trasponendoli trasporre ver +trasponendone trasporre ver +trasponendovi trasporre ver +trasponeva trasporre ver +trasponevano trasporre ver +trasponga trasporre ver +traspongono trasporre ver +trasponiamo trasporre ver +traspor trasporre ver +trasporla trasporre ver +trasporle trasporre ver +trasporlo trasporre ver +trasporne trasporre ver +trasporre trasporre ver +trasporta trasportare ver +trasportabile trasportabile adj +trasportabili trasportabile adj +trasportala trasportare ver +trasportale trasportare ver +trasportali trasportare ver +trasportalo trasportare ver +trasportando trasportare ver +trasportandola trasportare ver +trasportandole trasportare ver +trasportandoli trasportare ver +trasportandolo trasportare ver +trasportandone trasportare ver +trasportandovi trasportare ver +trasportano trasportare ver +trasportante trasportare ver +trasportanti trasportare ver +trasportar trasportare ver +trasportarci trasportare ver +trasportare trasportare ver +trasportarla trasportare ver +trasportarle trasportare ver +trasportarli trasportare ver +trasportarlo trasportare ver +trasportarne trasportare ver +trasportarono trasportare ver +trasportarsi trasportare ver +trasportarvi trasportare ver +trasportasse trasportare ver +trasportassero trasportare ver +trasportata trasportare ver +trasportate trasportare ver +trasportati trasportare ver +trasportato trasportare ver +trasportatore trasportatore nom +trasportatori trasportatore nom +trasportatrice trasportatore nom +trasportatrici trasportatore nom +trasportava trasportare ver +trasportavano trasportare ver +trasporteranno trasportare ver +trasporterebbe trasportare ver +trasporterebbero trasportare ver +trasporterei trasportare ver +trasporterà trasportare ver +trasporterò trasportare ver +trasporti trasporto nom +trasportiamo trasportare ver +trasportino trasportare ver +trasporto trasporto nom +trasportò trasportare ver +traspose trasporre ver +trasposero trasporre ver +trasposizione trasposizione nom +trasposizioni trasposizione nom +trasposta trasporre ver +trasposte trasporre ver +trasposti trasporre ver +trasposto trasporre ver +trassati trassato adj +trasse trarre ver +trassero trarre ver +trassi trarre ver +trastulla trastullare ver +trastullando trastullare ver +trastullandosi trastullare ver +trastullano trastullare ver +trastullarsi trastullare ver +trastullavano trastullare ver +trastulli trastullo nom +trastullo trastullo nom +trasuda trasudare ver +trasudano trasudare ver +trasudante trasudare ver +trasudare trasudare ver +trasudarono trasudare ver +trasudati trasudato nom +trasudatizi trasudatizio nom +trasudatizio trasudatizio nom +trasudato trasudato nom +trasudava trasudare ver +trasudavano trasudare ver +trasudazione trasudazione nom +trasudi trasudare ver +trasudò trasudare ver +trasumanar trasumanare ver +trasumanare trasumanare ver +trasversale trasversale adj +trasversali trasversale adj +trasvola trasvolare ver +trasvolando trasvolare ver +trasvolare trasvolare ver +trasvolata trasvolata nom +trasvolate trasvolata nom +trasvolato trasvolare ver +trasvolatore trasvolatore nom +trasvolatori trasvolatore nom +trasvolatrice trasvolatore nom +trasvolo trasvolare ver +trasvolò trasvolare ver +tratta trattare ver +trattabile trattabile adj +trattabili trattabile adj +trattai trattare ver +trattala trattare ver +trattali trattare ver +trattalo trattare ver +trattamenti trattamento nom +trattamento trattamento nom +trattami trattare ver +trattando trattare ver +trattandola trattare ver +trattandole trattare ver +trattandoli trattare ver +trattandolo trattare ver +trattandomi trattare ver +trattandone trattare ver +trattandosi trattare ver +trattane trattare ver +trattano trattare ver +trattante trattare ver +trattanti trattare ver +trattar trattare ver +trattarci trattare ver +trattare trattare ver +trattari trattario nom +trattario trattario nom +trattarla trattare ver +trattarle trattare ver +trattarli trattare ver +trattarlo trattare ver +trattarmi trattare ver +trattarne trattare ver +trattarono trattare ver +trattarsi trattare ver +trattarti trattare ver +trattarvi trattare ver +trattasi trattare ver +trattasse trattare ver +trattassero trattare ver +trattassi trattare ver +trattata trattare ver +trattate trattare ver +trattatelo trattare ver +trattatemi trattare ver +trattati trattare ver +trattatista trattatista nom +trattatisti trattatista nom +trattativa trattativa nom +trattative trattativa nom +trattato trattato nom +trattava trattare ver +trattavano trattare ver +trattavo trattare ver +trattazione trattazione nom +trattazioni trattazione nom +tratte trarre ver +tratteggi tratteggio nom +tratteggia tratteggiare ver +tratteggiando tratteggiare ver +tratteggiandola tratteggiare ver +tratteggiandone tratteggiare ver +tratteggiano tratteggiare ver +tratteggiare tratteggiare ver +tratteggiarla tratteggiare ver +tratteggiarne tratteggiare ver +tratteggiarono tratteggiare ver +tratteggiata tratteggiare ver +tratteggiate tratteggiare ver +tratteggiati tratteggiare ver +tratteggiato tratteggiare ver +tratteggiava tratteggiare ver +tratteggiavano tratteggiare ver +tratteggio tratteggio nom +tratteggiò tratteggiare ver +trattenendo trattenere ver +trattenendola trattenere ver +trattenendole trattenere ver +trattenendoli trattenere ver +trattenendolo trattenere ver +trattenendomi trattenere ver +trattenendone trattenere ver +trattenendosi trattenere ver +trattenente trattenere ver +trattener trattenere ver +trattenerci trattenere ver +trattenere trattenere ver +trattenerla trattenere ver +trattenerle trattenere ver +trattenerli trattenere ver +trattenerlo trattenere ver +trattenermi trattenere ver +trattenerne trattenere ver +trattenersi trattenere ver +trattenerti trattenere ver +trattenervi trattenere ver +trattenesse trattenere ver +trattenessero trattenere ver +trattenesti trattenere ver +trattenete trattenere ver +tratteneva trattenere ver +trattenevano trattenere ver +trattenga trattenere ver +trattengano trattenere ver +trattengo trattenere ver +trattengono trattenere ver +trattenimenti trattenimento nom +trattenimento trattenimento nom +trattenne trattenere ver +trattennero trattenere ver +trattenni trattenere ver +trattenuta trattenere ver +trattenute trattenere ver +trattenuti trattenere ver +trattenuto trattenere ver +tratterai trattare ver +tratteranno trattare ver +tratterebbe trattare ver +tratterebbero trattare ver +tratterei trattare ver +tratteremo trattare ver +tratterranno trattenere ver +tratterrebbe trattenere ver +tratterrà trattenere ver +tratterrò trattenere ver +tratterà trattare ver +tratterò trattare ver +tratti trattare ver +trattiamo trattare ver +trattiamola trattare ver +trattiamolo trattare ver +trattiene trattenere ver +trattieni trattenere ver +trattienili trattenere ver +trattini trattino nom +trattino trattino nom +tratto tratto nom +trattore trattore nom +trattori trattore nom +trattoria trattoria nom +trattorie trattoria nom +trattorista trattorista nom +trattrice trattore|trattrice nom +trattrici trattore|trattrice nom +trattura trattura nom +tratture trattura nom +tratturi tratturo nom +tratturo tratturo nom +trattò trattare ver +trauma trauma nom +traumatica traumatico adj +traumatiche traumatico adj +traumatici traumatico adj +traumatico traumatico adj +traumatismo traumatismo nom +traumatizza traumatizzare ver +traumatizzando traumatizzare ver +traumatizzano traumatizzare ver +traumatizzante traumatizzare ver +traumatizzanti traumatizzare ver +traumatizzare traumatizzare ver +traumatizzarono traumatizzare ver +traumatizzata traumatizzare ver +traumatizzate traumatizzato adj +traumatizzati traumatizzare ver +traumatizzato traumatizzare ver +traumatizzerà traumatizzare ver +traumatizzò traumatizzare ver +traumatologi traumatologo nom +traumatologia traumatologia nom +traumatologica traumatologico adj +traumatologiche traumatologico adj +traumatologici traumatologico adj +traumatologico traumatologico adj +traumatologie traumatologia nom +traumatologo traumatologo nom +traumi trauma nom +travagli travaglio nom +travaglia travagliare ver +travagliando travagliare ver +travagliano travagliare ver +travagliar travagliare ver +travagliare travagliare ver +travagliarono travagliare ver +travagliata travagliare ver +travagliate travagliare ver +travagliatesi travagliare ver +travagliati travagliare ver +travagliato travagliare ver +travagliava travagliare ver +travagliavano travagliare ver +travaglino travagliare ver +travaglio travaglio nom +travagliò travagliare ver +travalicano travalicare ver +travasa travasare ver +travasando travasare ver +travasano travasare ver +travasare travasare ver +travasata travasare ver +travasate travasare ver +travasati travasare ver +travasato travasare ver +travaserà travasare ver +travasi travaso nom +travasino travasare ver +travaso travaso nom +travata travata nom +travate travata nom +travato travato adj +travatura travatura nom +travature travatura nom +trave trave nom +travedere travedere ver +travedo travedere ver +traveggole traveggole nom +traversa traversa nom +traversai traversare ver +traversale traversare ver +traversali traversare ver +traversando traversare ver +traversano traversare ver +traversante traversare ver +traversar traversare ver +traversare traversare ver +traversarono traversare ver +traversasse traversare ver +traversata traversata nom +traversate traversata nom +traversati traversare ver +traversato traversare ver +traversava traversare ver +traversavano traversare ver +traverse traverso adj +traversi traverso adj +traversia traversia nom +traversie traversia nom +traversina traversina nom +traversine traversina nom +traversino traversare ver +traverso traverso adj +traversone traversone nom +traversoni traversone nom +traversò traversare ver +travertini travertino nom +travertino travertino nom +travesta travestire ver +traveste travestire ver +travestendo travestire ver +travestendoli travestire ver +travestendolo travestire ver +travestendosi travestire ver +travesti travestire ver +travestimenti travestimento nom +travestimento travestimento nom +travestiranno travestire ver +travestirci travestire ver +travestire travestire ver +travestirla travestire ver +travestirlo travestire ver +travestirono travestire ver +travestirsi travestire ver +travestirti travestire ver +travestirà travestire ver +travestisse travestire ver +travestissero travestire ver +travestita travestire ver +travestite travestire ver +travestiti travestire ver +travestitismo travestitismo nom +travestito travestire ver +travestiva travestire ver +travestivano travestire ver +travesto travestire ver +travestono travestire ver +travestì travestire ver +travet travet nom +travi trave nom +travia traviare ver +traviamenti traviamento nom +traviamento traviamento nom +traviando traviare ver +traviano traviare ver +traviare traviare ver +traviarlo traviare ver +traviata traviare ver +traviate traviare ver +traviati traviare ver +traviato traviare ver +travicelli travicello nom +travicello travicello nom +travierà traviare ver +travisa travisare ver +travisamenti travisamento nom +travisamento travisamento nom +travisando travisare ver +travisandone travisare ver +travisano travisare ver +travisare travisare ver +travisarono travisare ver +travisarsi travisare ver +travisasse travisare ver +travisata travisare ver +travisate travisare ver +travisati travisare ver +travisato travisare ver +travisava travisare ver +travisi travisare ver +travisiamo travisare ver +traviso travisare ver +travisò travisare ver +traviò traviare ver +travolga travolgere ver +travolge travolgere ver +travolgendo travolgere ver +travolgendola travolgere ver +travolgendole travolgere ver +travolgendoli travolgere ver +travolgendolo travolgere ver +travolgendone travolgere ver +travolgente travolgente adj +travolgenti travolgente adj +travolgeranno travolgere ver +travolgere travolgere ver +travolgerebbe travolgere ver +travolgerla travolgere ver +travolgerle travolgere ver +travolgerli travolgere ver +travolgerlo travolgere ver +travolgerà travolgere ver +travolgesse travolgere ver +travolgeva travolgere ver +travolgevano travolgere ver +travolgo travolgere ver +travolgono travolgere ver +travolse travolgere ver +travolsero travolgere ver +travolta travolgere ver +travolte travolgere ver +travolti travolgere ver +travolto travolgere ver +trazione trazione nom +trazioni trazione nom +tre tre adj_sup +trealberi trealberi nom +treatment treatment nom +trebbi trebbiare ver +trebbia trebbia nom +trebbiani trebbiano nom +trebbiano trebbiano nom +trebbiare trebbiare ver +trebbiato trebbiare ver +trebbiatore trebbiatore nom +trebbiatrice trebbiatore|trebbiatrice nom +trebbiatrici trebbiatore|trebbiatrice nom +trebbiatura trebbiatura nom +trebbiature trebbiatura nom +trebbie trebbia nom +trebbio trebbiare ver +trecce treccia nom +treccia treccia nom +trecentesca trecentesco adj +trecentesche trecentesco adj +trecenteschi trecentesco adj +trecentesco trecentesco adj +trecentista trecentista adj +trecentisti trecentista nom +trecento trecento adj +trecentomila trecentomila adj +tredicenne tredicenne adj +tredicenni tredicenne adj +tredicesima tredicesimo adj +tredicesime tredicesima|tredicesimo nom +tredicesimi tredicesimo adj +tredicesimo tredicesimo adj +tredici tredici adj +tredicista tredicista nom +trefoli trefolo nom +trefolo trefolo nom +tregenda tregenda nom +tregua tregua nom +tregue tregua nom +trekking trekking nom +trema tremare ver +tremando tremare ver +tremano tremare ver +tremante tremante adj +tremanti tremante adj +tremar tremare ver +tremare tremare ver +tremarella tremarella nom +tremargli tremare ver +tremarono tremare ver +tremasse tremare ver +tremate tremare ver +tremati tremare ver +tremato tremare ver +tremava tremare ver +tremavano tremare ver +tremavo tremare ver +tremebondo tremebondo adj +tremenda tremendo adj +tremende tremendo adj +tremendi tremendo adj +tremendo tremendo adj +trementina trementina nom +trementine trementina nom +tremeranno tremare ver +tremerà tremare ver +tremi tremare ver +tremila tremila adj +tremino tremare ver +tremiti tremito nom +tremito tremito nom +tremo tremare ver +tremola tremolare ver +tremolano tremolare ver +tremolante tremolante adj +tremolanti tremolante adj +tremolare tremolare ver +tremolate tremolare ver +tremolava tremolare ver +tremolavano tremolare ver +tremoli tremolio|tremolo nom +tremolio tremolio nom +tremolo tremolo nom +tremore tremore nom +tremori tremore nom +tremula tremulo adj +tremule tremulo adj +tremuli tremulo adj +tremulo tremulo adj +tremò tremare ver +trench trench nom +trend trend nom +trenette trenetta nom +treni treno nom +trenini trenino nom +trenino trenino nom +treno treno nom +trenta trenta adj +trentamila trentamila adj +trentennale trentennale adj +trentennali trentennale adj +trentenne trentenne adj +trentenni trentenne adj +trentennio trentennio nom +trentesima trentesimo adj +trentesimi trentesimo nom +trentesimo trentesimo adj +trentina trentina|trentino nom +trentine trentino adj +trentini trentino adj +trentino trentino adj +trentotto trentotto adj +trentuno trentuno adj +trepida trepido adj +trepidano trepidare ver +trepidante trepidante adj +trepidanti trepidante adj +trepidare trepidare ver +trepidava trepidare ver +trepidazione trepidazione nom +trepidazioni trepidazione nom +trepide trepido adj +trepido trepido adj +trepidò trepidare ver +treponema treponema nom +treponemi treponema nom +treppiede treppiede nom +treppiedi treppiede nom +trequarti trequarti nom +tresca tresca nom +trescano trescare ver +trescare trescare ver +tresche tresca nom +treschi trescare ver +tresco trescare ver +trescone trescone nom +tresette tresette nom +trespoli trespolo nom +trespolo trespolo nom +tressette tressette nom +triaca triaca nom +triade triade nom +triadi triade nom +trial trial nom +trialogo trialogo nom +triangola triangolare ver +triangolando triangolare ver +triangolare triangolare adj +triangolari triangolare adj +triangolata triangolare ver +triangolate triangolare ver +triangolati triangolare ver +triangolato triangolare ver +triangolazione triangolazione nom +triangolazioni triangolazione nom +triangoli triangolo nom +triangolino triangolare ver +triangolo triangolo nom +triari triario nom +triario triario nom +trias trias nom +triassica triassico adj +triassiche triassico adj +triassici triassico adj +triassico triassico adj +triatomica triatomico adj +triatomico triatomico adj +tribale tribale adj +tribali tribale adj +triboelettricità triboelettricità nom +tribolare tribolare ver +tribolata tribolato adj +tribolate tribolato adj +tribolati tribolato adj +tribolato tribolare ver +tribolazione tribolazione nom +tribolazioni tribolazione nom +triboli tribolo nom +tribolo tribolo nom +triboluminescenza triboluminescenza nom +tribordo tribordo nom +tribuna tribuna nom +tribunale tribunale nom +tribunali tribunale nom +tribunati tribunato nom +tribunato tribunato nom +tribune tribuna nom +tribuni tribuno nom +tribuno tribuno nom +tributa tributare ver +tributando tributare ver +tributandogli tributare ver +tributandole tributare ver +tributandone tributare ver +tributano tributare ver +tributare tributare ver +tributargli tributare ver +tributari tributario adj +tributaria tributario adj +tributarie tributario adj +tributario tributario adj +tributarle tributare ver +tributarono tributare ver +tributasse tributare ver +tributata tributare ver +tributate tributare ver +tributati tributare ver +tributato tributare ver +tributava tributare ver +tributavano tributare ver +tributeranno tributare ver +tributerà tributare ver +tributi tributo nom +tributo tributo nom +tributò tributare ver +tribù tribù nom +triceratopi triceratopo nom +triceratopo triceratopo nom +tricheco tricheco adj +trichina trichina nom +trichinellosi trichinellosi nom +trichinosi trichinosi nom +tricicli triciclo nom +triciclo triciclo nom +tricipite tricipite adj +tricipiti tricipite adj +triclina triclino adj +triclini triclino adj +triclinio triclinio nom +triclino triclino adj +tricologia tricologia nom +tricolore tricolore adj +tricolori tricolore adj +tricorni tricorno nom +tricorno tricorno nom +tricot tricot nom +tricotomia tricotomia nom +tricromia tricromia nom +tricuspidale tricuspidale adj +tridacna tridacna nom +tridattila tridattilo adj +tridattile tridattilo adj +tridattili tridattilo adj +tridattilo tridattilo adj +tridente tridente nom +tridenti tridente nom +tridentina tridentino adj +tridentine tridentino adj +tridentini tridentino adj +tridentino tridentino adj +tridimensionale tridimensionale adj +tridimensionali tridimensionale adj +tridimensionalità tridimensionalità nom +tridui triduo nom +triduo triduo nom +triedri triedro nom +triedro triedro nom +trielina trielina nom +triennale triennale adj +triennali triennale adj +trienni triennio nom +triennio triennio nom +triere triere nom +trieri triere nom +triestina triestino adj +triestine triestino adj +triestini triestino adj +triestino triestino adj +trifase trifase adj +trifasi trifase adj +trifida trifido adj +trifide trifido adj +trifidi trifido adj +trifido trifido adj +trifogli trifoglio nom +trifogliata trifogliato adj +trifogliate trifogliato adj +trifogliati trifogliato adj +trifogliato trifogliato adj +trifoglio trifoglio nom +trifola trifola nom +trifolate trifolato adj +trifolati trifolato adj +trifolato trifolato adj +trifole trifola nom +trifora trifora nom +trifore trifora nom +triforme triforme adj +trigemina trigemino adj +trigemine trigemino adj +trigemini trigemino adj +trigemino trigemino adj +trigesima trigesimo adj +trigesimo trigesimo nom +triglia triglia nom +triglie triglia nom +triglifi triglifo nom +triglifo triglifo nom +trigonometria trigonometria nom +trigonometrica trigonometrico adj +trigonometriche trigonometrico adj +trigonometrici trigonometrico adj +trigonometrico trigonometrico adj +trigonometrie trigonometria nom +trii trio nom +trilatera trilatero adj +trilaterale trilaterale adj +trilatero trilatero adj +trilingue trilingue adj +trilingui trilingue adj +trilione trilione nom +trilioni trilione nom +trilite trilite nom +trilla trillare ver +trillante trillare ver +trillare trillare ver +trillati trillare ver +trilli trillo nom +trillo trillo nom +trillò trillare ver +trilobata trilobato adj +trilobate trilobato adj +trilobati trilobato adj +trilobato trilobato adj +trilobite trilobite nom +trilobiti trilobite nom +trilogia trilogia nom +trilogie trilogia nom +trimestrale trimestrale adj +trimestrali trimestrale adj +trimestralmente trimestralmente adv +trimestre trimestre nom +trimestri trimestre nom +trimetri trimetro nom +trimetro trimetro nom +trimotore trimotore adj +trimotori trimotore adj +trimurti trimurti nom +trina trino adj +trinata trinato adj +trinate trinato adj +trinati trinato adj +trinato trinato adj +trinca trinca nom +trincale trincare ver +trincante trincare ver +trincar trincare ver +trincare trincare ver +trincato trincare ver +trincea trincea nom +trincee trincea nom +trincera trincerare ver +trinceramenti trinceramento nom +trinceramento trinceramento nom +trincerando trincerare ver +trincerandosi trincerare ver +trincerandoti trincerare ver +trincerano trincerare ver +trincerare trincerare ver +trincerarlo trincerare ver +trincerarono trincerare ver +trincerarsi trincerare ver +trincerata trincerare ver +trincerate trincerare ver +trinceratesi trincerare ver +trincerati trincerare ver +trincerato trincerare ver +trinceravano trincerare ver +trinceri trincerare ver +trincerò trinciare ver +trincetto trincetto nom +trinchetto trinchetto nom +trinchi trincare ver +trinchino trincare ver +trinci trinciare ver +trincia trinciare ver +trinciano trinciare ver +trinciante trinciante adj +trinciapollo trinciapollo nom +trinciare trinciare ver +trinciata trinciare ver +trinciati trinciato adj +trinciato trinciato adj +trinciatrice trinciatore adj +trinciatrici trinciatore|trinciatrice nom +trinciatura trinciatura nom +trinciature trinciatura nom +trinco trincare ver +trine trino adj +trini trino adj +trinitari trinitario adj +trinitaria trinitario adj +trinitarie trinitario adj +trinitario trinitario adj +trinitrotoluolo trinitrotoluolo nom +trinità trinità nom +trino trino adj +trinomi trinomio nom +trinomio trinomio nom +trio trio nom +triodi triodo nom +triodo triodo nom +trionfa trionfare ver +trionfale trionfale adj +trionfali trionfale adj +trionfalismi trionfalismo nom +trionfalismo trionfalismo nom +trionfalistica trionfalistico adj +trionfalistiche trionfalistico adj +trionfalistici trionfalistico adj +trionfalistico trionfalistico adj +trionfando trionfare ver +trionfandovi trionfare ver +trionfano trionfare ver +trionfante trionfante adj +trionfanti trionfante adj +trionfar trionfare ver +trionfare trionfare ver +trionfarono trionfare ver +trionfasse trionfare ver +trionfata trionfare ver +trionfato trionfare ver +trionfatore trionfatore nom +trionfatori trionfatore nom +trionfatrice trionfatore nom +trionfava trionfare ver +trionfavano trionfare ver +trionferanno trionfare ver +trionferebbe trionfare ver +trionferemo trionfare ver +trionferà trionfare ver +trionfi trionfo nom +trionfino trionfare ver +trionfo trionfo nom +trionfò trionfare ver +triossido triossido nom +trip trip nom +tripanosoma tripanosoma nom +tripanosomi tripanosoma nom +tripanosomiasi tripanosomiasi nom +tripartendo tripartire ver +tripartire tripartire ver +tripartisce tripartire ver +tripartiscono tripartire ver +tripartita tripartire ver +tripartite tripartito adj +tripartiti tripartire ver +tripartitica tripartitico adj +tripartitico tripartitico adj +tripartito tripartito adj +tripartizione tripartizione nom +tripla triplo adj +triplana triplano adj +triplane triplano adj +triplani triplano adj +triplano triplano adj +triple triplo adj +tripletta tripletta nom +triplette tripletta nom +tripli triplo adj +triplica triplicare ver +triplicando triplicare ver +triplicandosi triplicare ver +triplicano triplicare ver +triplicare triplicare ver +triplicarne triplicare ver +triplicarono triplicare ver +triplicarsi triplicare ver +triplicata triplicare ver +triplicate triplicare ver +triplicati triplicare ver +triplicato triplicare ver +triplicava triplicare ver +triplicavano triplicare ver +triplice triplice adj +triplicherà triplicare ver +triplici triplice adj +triplicò triplicare ver +triplista triplista nom +triplisti triplista nom +triplo triplo adj_sup +tripode tripode nom +tripodi tripode nom +tripolare tripolare adj +tripoli tripoli nom +tripolina tripolino adj +tripoline tripolino adj +tripolini tripolino adj +tripolino tripolino adj +tripolitana tripolitano adj +tripolitane tripolitano adj +tripolitani tripolitano adj +tripolitano tripolitano adj +triposto triposto adj +trippa trippa nom +trippe trippa nom +tripperia tripperia nom +trippone trippone nom +tripponi trippone nom +tripsina tripsina nom +tripudi tripudio nom +tripudia tripudiare ver +tripudianti tripudiare ver +tripudiare tripudiare ver +tripudio tripudio nom +triregno triregno nom +trireme trireme nom +triremi trireme nom +tris tris adj +trisavola trisavolo nom +trisavole trisavolo nom +trisavoli trisavolo nom +trisavolo trisavolo nom +trisezione trisezione nom +trisillaba trisillabo adj +trisillabe trisillabo adj +trisillabi trisillabo adj +trisillabo trisillabo adj +trisma trisma nom +trista tristo adj +triste triste|tristo adj +tristemente tristemente adv +tristezza tristezza nom +tristezze tristezza nom +tristi triste|tristo adj +tristizia tristizia nom +tristo tristo adj +trita trito adj +tritacarne tritacarne nom +tritaghiaccio tritaghiaccio nom +tritando tritare ver +tritano tritare ver +tritanti tritare ver +tritar tritare ver +tritare tritare ver +tritata tritare ver +tritate tritare ver +tritati tritare ver +tritato tritare ver +tritatutto tritatutto nom +tritavano tritare ver +trite trito adj +tritelli tritello nom +tritello tritello nom +triti trito adj +tritio tritio nom +trito trito adj +tritoli tritolo nom +tritolo tritolo nom +tritone tritone nom +tritoni tritone nom +trittici trittico nom +trittico trittico nom +trittonghi trittongo nom +trittongo trittongo nom +tritura triturare ver +triturando triturare ver +triturano triturare ver +triturante triturare ver +trituranti triturare ver +triturare triturare ver +triturata triturare ver +triturate triturare ver +triturati triturare ver +triturato triturare ver +trituratore trituratore adj +trituratori trituratore nom +trituratrice trituratore adj +triturava triturare ver +trituravano triturare ver +triturazione triturazione nom +trituro triturare ver +triumvirati triumvirato nom +triumvirato triumvirato nom +triumviri triumviro nom +triumviro triumviro nom +triunvirato triunvirato nom +triunviri triunviro nom +triunviro triunviro nom +trivalente trivalente adj +trivalenti trivalente adj +trivella trivella nom +trivellamento trivellamento nom +trivellando trivellare ver +trivellano trivellare ver +trivellare trivellare ver +trivellati trivellare ver +trivellato trivellare ver +trivellazione trivellazione nom +trivellazioni trivellazione nom +trivelle trivella nom +trivelli trivello nom +trivellino trivellare ver +trivellò trivellare ver +triveneta triveneto adj +trivenete triveneto adj +triveneti triveneto adj +triveneto triveneto adj +triviale triviale adj +triviali triviale adj +trivialità trivialità nom +trizio trizio nom +trocaica trocaico adj +trocaiche trocaico adj +trocaici trocaico adj +trocaico trocaico adj +trocantere trocantere nom +trocanteri trocantere nom +trochei trocheo nom +trocheo trocheo nom +trofei trofeo nom +trofeo trofeo nom +trofica trofico adj +trofiche trofico adj +trofici trofico adj +trofico trofico adj +trofismo trofismo nom +troglodita troglodita nom +troglodite troglodita nom +trogloditi troglodita nom +trogloditica trogloditico adj +trogloditiche trogloditico adj +trogloditici trogloditico adj +trogloditico trogloditico adj +trogloditismo trogloditismo nom +trogoli trogolo nom +trogolo trogolo nom +troia troia nom +troiaio troiaio nom +troica troica nom +troice troica nom +troie troia nom +troika troika nom +troike troika nom +trolley trolley nom +trolleybus trolleybus nom +tromba tromba nom +trombare trombare ver +trombata trombare ver +trombati trombare ver +trombato trombare ver +trombe tromba nom +trombetta trombetta nom +trombette trombetta nom +trombettiere trombettiere nom +trombettieri trombettiere nom +trombettista trombettista nom +trombettisti trombettista nom +trombi trombo nom +trombino trombare ver +trombo trombo nom +trombocitopenia trombocitopenia nom +trombone trombone nom +tromboni trombone nom +trombosi trombosi nom +tronca tronco adj +troncale troncare ver +troncamenti troncamento nom +troncamento troncamento nom +troncando troncare ver +troncandone troncare ver +troncano troncare ver +troncante troncare ver +troncanti troncare ver +troncare troncare ver +troncargli troncare ver +troncarla troncare ver +troncarle troncare ver +troncarne troncare ver +troncarono troncare ver +troncarsi troncare ver +troncasse troncare ver +troncata troncare ver +troncate troncato adj +troncati troncare ver +troncato troncato adj +troncatrice troncatrice nom +troncatrici troncatrice nom +troncava troncare ver +troncavano troncare ver +tronche tronco adj +troncheranno troncare ver +troncherei troncare ver +troncherà troncare ver +tronchese tronchese nom +tronchesi tronchese nom +tronchesine tronchesina nom +tronchi tronco nom +tronchiamo troncare ver +tronchino troncare ver +tronco tronco nom +troncoconica troncoconico adj +troncoconiche troncoconico adj +troncoconici troncoconico adj +troncoconico troncoconico adj +troncone troncone nom +tronconi troncone nom +troncò troncare ver +troneggia troneggiare ver +troneggiano troneggiare ver +troneggiante troneggiare ver +troneggiare troneggiare ver +troneggiato troneggiare ver +troneggiava troneggiare ver +troneggiavano troneggiare ver +tronfi tronfio adj +tronfia tronfio adj +tronfie tronfio adj +tronfio tronfio adj +troni trono nom +trono trono nom +tropi tropo nom +tropicale tropicale adj +tropicali tropicale adj +tropici tropico nom +tropico tropico nom +tropismi tropismo nom +tropismo tropismo nom +tropo tropo nom +tropologia tropologia nom +tropopausa tropopausa nom +tropopause tropopausa nom +troposfera troposfera nom +troposferico troposferico adj +troppa troppo adj_sup +troppe troppo adj_sup +troppi troppo adj_sup +troppo troppo adv_sup +troppopieno troppopieno nom +trota trota nom +trote trota nom +trotta trottare ver +trottando trottare ver +trottano trottare ver +trottante trottare ver +trottare trottare ver +trottato trottare ver +trottatore trottatore nom +trottatori trottatore nom +trotter trotter nom +trotterella trotterellare ver +trotterellando trotterellare ver +trotterellano trotterellare ver +trotterellante trotterellare ver +trotterellare trotterellare ver +trotti trotto nom +trotto trotto nom +trottola trottola nom +trottole trottola nom +trottolina trottolino nom +trottolino trottolino nom +trotzkismo trotzkismo nom +trotzkista trotzkista nom +trotzkiste trotzkista nom +trotzkisti trotzkista nom +troupe troupe nom +trousse trousse nom +trova trovare ver +trovaci trovare ver +trovadore trovadore nom +trovadori trovadore nom +trovagli trovare ver +trovai trovare ver +trovala trovare ver +trovalo trovare ver +trovami trovare ver +trovammo trovare ver +trovando trovare ver +trovandoci trovare ver +trovandogli trovare ver +trovandola trovare ver +trovandole trovare ver +trovandoli trovare ver +trovandolo trovare ver +trovandomi trovare ver +trovandone trovare ver +trovandoselo trovare ver +trovandosene trovare ver +trovandosi trovare ver +trovandovi trovare ver +trovane trovare ver +trovano trovare ver +trovante trovare ver +trovanti trovare ver +trovar trovare ver +trovarci trovare ver +trovare trovare ver +trovargli trovare ver +trovargliene trovare ver +trovarla trovare ver +trovarle trovare ver +trovarli trovare ver +trovarlo trovare ver +trovarmelo trovare ver +trovarmene trovare ver +trovarmi trovare ver +trovarne trovare ver +trovarobe trovarobe nom +trovarono trovare ver +trovarsela trovare ver +trovarsele trovare ver +trovarseli trovare ver +trovarselo trovare ver +trovarsene trovare ver +trovarsi trovare ver +trovartela trovare ver +trovarti trovare ver +trovarvi trovare ver +trovasi trovare ver +trovasse trovare ver +trovassero trovare ver +trovassi trovare ver +trovassimo trovare ver +trovaste trovare ver +trovasti trovare ver +trovata trovare ver +trovate trovare ver +trovatella trovatello nom +trovatelli trovatello nom +trovatello trovatello nom +trovatemi trovare ver +trovatene trovare ver +trovatesi trovare ver +trovatevi trovare ver +trovati trovare ver +trovato trovare ver +trovatore trovatore nom +trovatori trovatore nom +trovava trovare ver +trovavamo trovare ver +trovavano trovare ver +trovavi trovare ver +trovavo trovare ver +troverai trovare ver +troveranno trovare ver +troverebbe trovare ver +troverebbero trovare ver +troverei trovare ver +troveremmo trovare ver +troveremo trovare ver +trovereste trovare ver +troveresti trovare ver +troverete trovare ver +troverà trovare ver +troverò trovare ver +trovi trovare ver +troviamo trovare ver +troviamoci trovare ver +troviamogli trovare ver +troviamolo trovare ver +troviamone trovare ver +troviate trovare ver +trovieri troviero nom +troviero troviero nom +trovino trovare ver +trovo trovare ver +trovò trovare ver +trozkismo trozkismo nom +trucca truccare ver +truccando truccare ver +truccandola truccare ver +truccandolo truccare ver +truccandosi truccare ver +truccano truccare ver +truccare truccare ver +truccarla truccare ver +truccarmi truccare ver +truccarono truccare ver +truccarsi truccare ver +truccasse truccare ver +truccassero truccare ver +truccata truccare ver +truccate truccare ver +truccati truccare ver +truccato truccare ver +truccatore truccatore nom +truccatori truccatore nom +truccatrice truccatore nom +truccatrici truccatore nom +truccatura truccatura nom +truccava truccare ver +truccavano truccare ver +truccherà truccare ver +trucchi trucco nom +trucco trucco nom +truccò truccare ver +truce truce adj +truci truce adj +trucida trucidare ver +trucidando trucidare ver +trucidano trucidare ver +trucidare trucidare ver +trucidarli trucidare ver +trucidarlo trucidare ver +trucidarono trucidare ver +trucidarsi trucidare ver +trucidasse trucidare ver +trucidata trucidare ver +trucidate trucidare ver +trucidati trucidare ver +trucidato trucidare ver +trucidava trucidare ver +trucidavano trucidare ver +trucidi trucidare ver +trucido trucidare ver +trucidò trucidare ver +truciolato truciolato nom +trucioli truciolo nom +truciolo truciolo nom +truculenta truculento adj +truculente truculento adj +truculenti truculento adj +truculento truculento adj +truffa truffa nom +truffaldina truffaldino adj +truffaldine truffaldino adj +truffaldini truffaldino adj +truffaldino truffaldino adj +truffando truffare ver +truffano truffare ver +truffare truffare ver +truffarla truffare ver +truffarli truffare ver +truffarlo truffare ver +truffata truffare ver +truffate truffare ver +truffati truffare ver +truffato truffare ver +truffatore truffatore nom +truffatori truffatore nom +truffatrice truffatore nom +truffatrici truffatore nom +truffava truffare ver +truffavano truffare ver +truffe truffa nom +truffi truffare ver +truffo truffare ver +truffò truffare ver +trulli trullo nom +trullo trullo nom +trumeau trumeau nom +truogoli truogolo nom +truogolo truogolo nom +truppa truppa nom +truppe truppa nom +truschini truschino nom +truschino truschino nom +trust trust nom +tu tu pro +tua tuo pro +tuareg tuareg adj +tuaregh tuaregh adj +tuba tuba nom +tubala tubare ver +tubanti tubare ver +tubar tubare ver +tubare tubare ver +tubata tubare ver +tubatura tubatura nom +tubature tubatura nom +tubazione tubazione nom +tubazioni tubazione nom +tube tuba nom +tubercolare tubercolare adj +tubercolari tubercolare adj +tubercoli tubercolo nom +tubercolina tubercolina nom +tubercolo tubercolo nom +tubercolosa tubercoloso adj +tubercolosi tubercolosi|tubercoloso nom +tubercoloso tubercoloso adj +tubercolotica tubercolotico adj +tubercolotici tubercolotico adj +tubercolotico tubercolotico adj +tuberi tubero nom +tubero tubero nom +tuberosa tuberoso adj +tuberose tuberoso adj +tuberosi tuberoso adj +tuberosità tuberosità nom +tuberoso tuberoso adj +tubetti tubetto nom +tubetto tubetto nom +tubi tubo nom +tubiamo tubare ver +tubini tubino nom +tubino tubino nom +tubista tubista nom +tubo tubo nom +tubolare tubolare adj +tubolari tubolare adj +tubuli tubulo nom +tubulo tubulo nom +tubulosa tubuloso adj +tubulose tubuloso adj +tubulosi tubuloso adj +tubuloso tubuloso adj +tucani tucano nom +tucano tucano nom +tucul tucul nom +tue tuo pro +tufacea tufaceo adj +tufacee tufaceo adj +tufacei tufaceo adj +tufaceo tufaceo adj +tuffa tuffare ver +tuffando tuffare ver +tuffandosi tuffare ver +tuffano tuffare ver +tuffante tuffare ver +tuffanti tuffare ver +tuffarci tuffare ver +tuffare tuffare ver +tuffarmi tuffare ver +tuffarono tuffare ver +tuffarsi tuffare ver +tuffasse tuffare ver +tuffata tuffare ver +tuffate tuffare ver +tuffati tuffare ver +tuffato tuffare ver +tuffatore tuffatore nom +tuffatori tuffatore nom +tuffatrice tuffatore nom +tuffatrici tuffatore nom +tuffava tuffare ver +tuffavano tuffare ver +tufferanno tuffare ver +tufferò tuffare ver +tuffetti tuffetto nom +tuffetto tuffetto nom +tuffi tuffo nom +tuffino tuffare ver +tuffo tuffo nom +tuffò tuffare ver +tufi tufo nom +tufo tufo nom +tuga tuga nom +tughe tuga nom +tuguri tugurio nom +tugurio tugurio nom +tuia tuia nom +tuie tuia nom +tularemia tularemia nom +tuli tulio nom +tulio tulio nom +tulipani tulipano nom +tulipano tulipano nom +tulle tulle nom +tumefare tumefare ver +tumefatta tumefare ver +tumefatte tumefatto adj +tumefatti tumefare ver +tumefatto tumefatto adj +tumefazione tumefazione nom +tumefazioni tumefazione nom +tumescenza tumescenza nom +tumida tumido adj +tumide tumido adj +tumidi tumido adj +tumido tumido adj +tumorale tumorale adj +tumorali tumorale adj +tumore tumore nom +tumori tumore nom +tumula tumulare ver +tumulare tumulare ver +tumularli tumulare ver +tumularlo tumulare ver +tumulata tumulare ver +tumulate tumulare ver +tumulati tumulare ver +tumulato tumulare ver +tumulazione tumulazione nom +tumulazioni tumulazione nom +tumuli tumulo nom +tumulo tumulo nom +tumulti tumulto nom +tumulto tumulto nom +tumultua tumultuare ver +tumultuante tumultuante adj +tumultuanti tumultuante adj +tumultuare tumultuare ver +tumultuaria tumultuario adj +tumultuarie tumultuario adj +tumultuario tumultuario adj +tumultuarono tumultuare ver +tumultuosa tumultuoso adj +tumultuose tumultuoso adj +tumultuosi tumultuoso adj +tumultuoso tumultuoso adj +tundra tundra nom +tundre tundra nom +tungsteno tungsteno nom +tunica tunica nom +tuniche tunica nom +tunisina tunisino adj +tunisine tunisino adj +tunisini tunisino adj +tunisino tunisino adj +tunnel tunnel nom +tuo tuo pro +tuoi tuo pro +tuona tuonare ver +tuonai tuonare ver +tuonando tuonare ver +tuonano tuonare ver +tuonante tuonare ver +tuonanti tuonare ver +tuonare tuonare ver +tuonarono tuonare ver +tuonato tuonare ver +tuonava tuonare ver +tuonavano tuonare ver +tuonerà tuonare ver +tuoni tuono nom +tuonino tuonare ver +tuono tuono nom +tuonò tuonare ver +tuori tuorio nom +tupamaro tupamaro nom +tupè tupè nom +tura turare ver +turaccioli turacciolo nom +turacciolo turacciolo nom +turaci turare ver +turai turare ver +turali turare ver +turando turare ver +turandomi turare ver +turandosi turare ver +turano turare ver +turar turare ver +turare turare ver +turarmi turare ver +turarsi turare ver +turata turare ver +turate turare ver +turatesi turare ver +turati turare ver +turato turare ver +turava turare ver +turba turba nom +turbai turbare ver +turbamenti turbamento nom +turbamento turbamento nom +turbando turbare ver +turbane turbare ver +turbano turbare ver +turbante turbante nom +turbanti turbante nom +turbar turbare ver +turbarci turbare ver +turbare turbare ver +turbarla turbare ver +turbarli turbare ver +turbarlo turbare ver +turbarmi turbare ver +turbarne turbare ver +turbarono turbare ver +turbarsi turbare ver +turbarti turbare ver +turbarvi turbare ver +turbasse turbare ver +turbata turbare ver +turbate turbato adj +turbati turbare ver +turbativa turbativa nom +turbative turbativa nom +turbato turbare ver +turbava turbare ver +turbavano turbare ver +turbe turba nom +turberanno turbare ver +turberebbe turbare ver +turberà turbare ver +turbi turbare ver +turbina turbina nom +turbinando turbinare ver +turbinante turbinare ver +turbinanti turbinare ver +turbinare turbinare ver +turbinata turbinare ver +turbinate turbinare ver +turbinati turbinato nom +turbinato turbinato nom +turbine turbina|turbine nom +turbini turbine|turbinio nom +turbinio turbinio nom +turbino turbinare ver +turbinosa turbinoso adj +turbinose turbinoso adj +turbinosi turbinoso adj +turbinoso turbinoso adj +turbo turbo adj +turboalternatore turboalternatore nom +turboalternatori turboalternatore nom +turbocisterna turbocisterna nom +turbocompressore turbocompressore nom +turbocompressori turbocompressore nom +turboelica turboelica nom +turboeliche turboelica nom +turbogetti turbogetto nom +turbogetto turbogetto nom +turbolenta turbolento adj +turbolente turbolento adj +turbolenti turbolento adj +turbolento turbolento adj +turbolenza turbolenza nom +turbolenze turbolenza nom +turbomotori turbomotore nom +turbonave turbonave nom +turbonavi turbonave nom +turboreattore turboreattore nom +turboreattori turboreattore nom +turbò turbare ver +turca turco adj +turcassi turcasso nom +turcasso turcasso nom +turche turco adj +turchese turchese adj +turchesi turchese nom +turchi turco nom +turchina turchino adj +turchine turchino adj +turchini turchino adj +turchino turchino adj +turco turco adj +turcofoni turcofono adj +turgida turgido adj +turgide turgido adj +turgidi turgido adj +turgidità turgidità nom +turgido turgido adj +turgore turgore nom +turi turare ver +turiamoci turare ver +turiboli turibolo nom +turibolo turibolo nom +turiferario turiferario nom +turino turare ver +turione turione nom +turioni turione nom +turismo turismo nom +turista turista nom +turiste turista nom +turisti turista nom +turistica turistico adj +turistiche turistico adj +turistici turistico adj +turistico turistico adj +turlupinare turlupinare ver +turlupinato turlupinare ver +turma turma nom +turme turma nom +turnario turnario adj +turni turno nom +turnista turnista nom +turnisti turnista nom +turno turno nom +turo turare ver +turpe turpe adj +turpi turpe adj +turpiloqui turpiloquio nom +turpiloquio turpiloquio nom +turpitudine turpitudine nom +turpitudini turpitudine nom +turrita turrito adj +turrite turrito adj +turriti turrito adj +turrito turrito adj +turò turare ver +tuscania tuscanio adj +tussah tussah nom +tuta tuta nom +tute tuta nom +tutela tutela nom +tutelando tutelare ver +tutelandola tutelare ver +tutelandolo tutelare ver +tutelandone tutelare ver +tutelano tutelare ver +tutelante tutelare ver +tutelanti tutelare ver +tutelar tutelare ver +tutelarci tutelare ver +tutelare tutelare ver +tutelari tutelare adj +tutelarla tutelare ver +tutelarle tutelare ver +tutelarli tutelare ver +tutelarlo tutelare ver +tutelarmi tutelare ver +tutelarne tutelare ver +tutelarono tutelare ver +tutelarsi tutelare ver +tutelarti tutelare ver +tutelasse tutelare ver +tutelassero tutelare ver +tutelata tutelare ver +tutelate tutelare ver +tutelati tutelare ver +tutelato tutelare ver +tutelava tutelare ver +tutelavano tutelare ver +tutele tutela nom +tutelerebbe tutelare ver +tuteleremo tutelare ver +tutelerà tutelare ver +tuteli tutelare ver +tuteliamo tutelare ver +tutelino tutelare ver +tutelo tutelare ver +tutelò tutelare ver +tutina tutina nom +tutine tutina nom +tutoli tutolo nom +tutolo tutolo nom +tutore tutore nom +tutori tutore nom +tutoria tutorio adj +tutrice tutore nom +tutrici tutore nom +tutsi tutsi adj +tutt tutt sw +tutta tutto adj_sup +tuttavia tuttavia adv_sup +tutte tutto adj_sup +tutti tutto pro +tutto tutto adv_sup +tuttofare tuttofare adj +tuttora tuttora adv_sup +tuttotondo tuttotondo nom +tutù tutù nom +tv tv nom +tweed tweed nom +twill twill nom +twist twist nom +tzigana tzigano adj +tzigane tzigano adj +tzigani tzigano adj +tzigano tzigano adj +tè tè nom +u u sw +uadi uadi nom +ubbidendo ubbidire ver +ubbidendogli ubbidire ver +ubbidendole ubbidire ver +ubbidiamo ubbidire ver +ubbidiente ubbidiente adj +ubbidienti ubbidiente adj +ubbidienza ubbidienza nom +ubbidire ubbidire ver +ubbidiremo ubbidire ver +ubbidirgli ubbidire ver +ubbidirono ubbidire ver +ubbidirà ubbidire ver +ubbidirò ubbidire ver +ubbidisca ubbidire ver +ubbidiscano ubbidire ver +ubbidisce ubbidire ver +ubbidisci ubbidire ver +ubbidisco ubbidire ver +ubbidiscono ubbidire ver +ubbidisse ubbidire ver +ubbidita ubbidire ver +ubbidite ubbidire ver +ubbidito ubbidire ver +ubbidiva ubbidire ver +ubbidivano ubbidire ver +ubbidì ubbidire ver +ubbie ubbia nom +ubertosa ubertoso adj +ubertose ubertoso adj +ubertosi ubertoso adj +ubertoso ubertoso adj +ubertà ubertà nom +ubica ubicare ver +ubicaci ubicare ver +ubicando ubicare ver +ubicandosi ubicare ver +ubicano ubicare ver +ubicare ubicare ver +ubicarla ubicare ver +ubicarli ubicare ver +ubicarlo ubicare ver +ubicarono ubicare ver +ubicarsi ubicare ver +ubicarvi ubicare ver +ubicata ubicare ver +ubicate ubicare ver +ubicati ubicare ver +ubicato ubicare ver +ubicava ubicare ver +ubicavano ubicare ver +ubicazione ubicazione nom +ubicazioni ubicazione nom +ubico ubicare ver +ubicò ubicare ver +ubiquità ubiquità nom +ubriaca ubriaco adj +ubriacando ubriacare ver +ubriacandolo ubriacare ver +ubriacandosi ubriacare ver +ubriacano ubriacare ver +ubriacante ubriacare ver +ubriacanti ubriacare ver +ubriacarci ubriacare ver +ubriacare ubriacare ver +ubriacarla ubriacare ver +ubriacarlo ubriacare ver +ubriacarmi ubriacare ver +ubriacarono ubriacare ver +ubriacarsi ubriacare ver +ubriacarti ubriacare ver +ubriacarvi ubriacare ver +ubriacassero ubriacare ver +ubriacata ubriacare ver +ubriacate ubriacare ver +ubriacatevi ubriacare ver +ubriacati ubriacare ver +ubriacato ubriacare ver +ubriacatura ubriacatura nom +ubriacature ubriacatura nom +ubriacava ubriacare ver +ubriacavano ubriacare ver +ubriache ubriaco adj +ubriachezza ubriachezza nom +ubriachezze ubriachezza nom +ubriachi ubriaco adj +ubriaco ubriaco adj +ubriacona ubriacone nom +ubriacone ubriacone nom +ubriaconi ubriacone nom +ubriacò ubriacare ver +uccella uccellare ver +uccellagione uccellagione nom +uccellaio uccellaio nom +uccellanda uccellanda nom +uccellar uccellare ver +uccellare uccellare ver +uccellatore uccellatore nom +uccellatori uccellatore nom +uccellatrice uccellatore nom +uccelletti uccelletto nom +uccelletto uccelletto nom +uccelli uccello nom +uccelliera uccelliera nom +uccelliere uccelliera nom +uccellini uccellino nom +uccellino uccellino nom +uccello uccello nom +uccida uccidere ver +uccidano uccidere ver +uccide uccidere ver +uccidemmo uccidere ver +uccidendo uccidere ver +uccidendogli uccidere ver +uccidendola uccidere ver +uccidendole uccidere ver +uccidendoli uccidere ver +uccidendolo uccidere ver +uccidendomi uccidere ver +uccidendone uccidere ver +uccidendosi uccidere ver +uccidendovi uccidere ver +uccidente uccidere ver +uccider uccidere ver +ucciderai uccidere ver +uccideranno uccidere ver +ucciderci uccidere ver +uccidere uccidere ver +ucciderebbe uccidere ver +ucciderebbero uccidere ver +ucciderei uccidere ver +uccideremo uccidere ver +ucciderete uccidere ver +uccidergli uccidere ver +ucciderla uccidere ver +ucciderle uccidere ver +ucciderli uccidere ver +ucciderlo uccidere ver +uccidermi uccidere ver +ucciderne uccidere ver +uccidersi uccidere ver +ucciderti uccidere ver +uccidervi uccidere ver +ucciderà uccidere ver +ucciderò uccidere ver +uccidesse uccidere ver +uccidessero uccidere ver +uccidessi uccidere ver +uccideste uccidere ver +uccidesti uccidere ver +uccidete uccidere ver +uccideteli uccidere ver +uccidetelo uccidere ver +uccidetemi uccidere ver +uccideva uccidere ver +uccidevamo uccidere ver +uccidevano uccidere ver +uccidevo uccidere ver +uccidi uccidere ver +uccidiamo uccidere ver +uccidiamoli uccidere ver +uccidiamolo uccidere ver +uccidila uccidere ver +uccidili uccidere ver +uccidilo uccidere ver +uccidimi uccidere ver +ucciditi uccidere ver +uccido uccidere ver +uccidono uccidere ver +uccisa uccidere ver +uccise ucciso nom +uccisero uccidere ver +uccisi ucciso nom +uccisione uccisione nom +uccisioni uccisione nom +ucciso uccidere ver +uccisore uccisore nom +uccisori uccisore nom +ucraina ucraino adj +ucraine ucraino adj +ucraini ucraino adj +ucraino ucraino adj +udendo udire ver +udendola udire ver +udendolo udire ver +udendosi udire ver +udente udire ver +udenti udire ver +udiamo udire ver +udibile udibile adj +udibili udibile adj +udibilità udibilità nom +udienza udienza nom +udienze udienza nom +udii udire ver +udimmo udire ver +udir udire ver +udiranno udire ver +udire udire ver +udirebbe udire ver +udirebbero udire ver +udiremo udire ver +udirete udire ver +udirla udire ver +udirle udire ver +udirli udire ver +udirlo udire ver +udirne udire ver +udirono udire ver +udirsi udire ver +udirà udire ver +udisse udire ver +udissero udire ver +udissi udire ver +udiste udire ver +udisti udire ver +udita udire ver +udite udire ver +uditi udire ver +uditiva uditivo adj +uditive uditivo adj +uditivi uditivo adj +uditivo uditivo adj +udito udire ver +uditore uditore adj +uditori uditore|uditorio nom +uditorio uditorio adj +uditrice uditore nom +udiva udire ver +udivano udire ver +udivo udire ver +udì udire ver +uff uff int +uffa uffa int +uffici ufficio nom +ufficia ufficiare ver +ufficiale ufficiale adj +ufficiali ufficiale adj +ufficialità ufficialità nom +ufficializza ufficializzare ver +ufficializzando ufficializzare ver +ufficializzandolo ufficializzare ver +ufficializzandone ufficializzare ver +ufficializzano ufficializzare ver +ufficializzare ufficializzare ver +ufficializzarla ufficializzare ver +ufficializzarlo ufficializzare ver +ufficializzarne ufficializzare ver +ufficializzarono ufficializzare ver +ufficializzasse ufficializzare ver +ufficializzata ufficializzare ver +ufficializzate ufficializzare ver +ufficializzati ufficializzare ver +ufficializzato ufficializzare ver +ufficializzava ufficializzare ver +ufficializzavano ufficializzare ver +ufficializzazione ufficializzazione nom +ufficializzeranno ufficializzare ver +ufficializzerà ufficializzare ver +ufficializziamo ufficializzare ver +ufficializzo ufficializzare ver +ufficializzò ufficializzare ver +ufficialmente ufficialmente adv +ufficiante ufficiare ver +ufficiare ufficiare ver +ufficiata ufficiare ver +ufficiato ufficiare ver +ufficiatura ufficiatura nom +ufficiature ufficiatura nom +ufficiava ufficiare ver +ufficio ufficio nom +ufficiosa ufficioso adj +ufficiose ufficioso adj +ufficiosi ufficioso adj +ufficiosità ufficiosità nom +ufficioso ufficioso adj +ufficiò ufficiare ver +uffizi uffizio nom +uffizio uffizio nom +ufo ufo nom +ufologa ufologo nom +ufologi ufologo nom +ufologia ufologia nom +ufologie ufologia nom +ufologo ufologo nom +ugelli ugello nom +ugello ugello nom +uggia uggia nom +uggiola uggiolare ver +uggiolare uggiolare ver +uggiosa uggioso adj +uggiose uggioso adj +uggiosi uggioso adj +uggioso uggioso adj +ugna ugna nom +ugne ugna nom +ugola ugola nom +ugole ugola nom +ugonotta ugonotto adj +ugonotte ugonotto adj +ugonotti ugonotto nom +ugonotto ugonotto adj +uguagli uguagliare ver +uguaglia uguagliare ver +uguagliamento uguagliamento nom +uguagliamo uguagliare ver +uguagliando uguagliare ver +uguagliandola uguagliare ver +uguagliandole uguagliare ver +uguagliano uguagliare ver +uguaglianti uguagliare ver +uguaglianza uguaglianza nom +uguaglianze uguaglianza nom +uguagliare uguagliare ver +uguagliarla uguagliare ver +uguagliarlo uguagliare ver +uguagliarono uguagliare ver +uguagliarsi uguagliare ver +uguagliasse uguagliare ver +uguagliata uguagliare ver +uguagliate uguagliare ver +uguagliati uguagliare ver +uguagliato uguagliare ver +uguagliava uguagliare ver +uguagliavano uguagliare ver +uguaglierà uguagliare ver +uguagliò uguagliare ver +uguale uguale adj_sup +uguali uguale adj_sup +ugualitaria ugualitario adj +ugualitario ugualitario adj +ugualmente ugualmente adv +uh uh int +uhi uhi int +uhm uhm int +uistitì uistitì nom +ukase ukase nom +ukulele ukulele nom +ulani ulano nom +ulano ulano nom +ulcera ulcera nom +ulcerano ulcerare ver +ulceranti ulcerare ver +ulcerare ulcerare ver +ulcerarsi ulcerare ver +ulcerata ulcerare ver +ulcerate ulcerare ver +ulcerati ulcerare ver +ulcerativa ulcerativo adj +ulcerative ulcerativo adj +ulcerativi ulcerativo adj +ulcerativo ulcerativo adj +ulcerato ulcerare ver +ulcerava ulcerare ver +ulcerazione ulcerazione nom +ulcerazioni ulcerazione nom +ulcere ulcera nom +ulceri ulcerare ver +ulcero ulcerare ver +ulcerosa ulceroso adj +ulcerose ulceroso adj +ulcerosi ulceroso adj +ulceroso ulceroso adj +ulite ulite nom +uliva uliva adj +ulive uliva nom +ulivi ulivo nom +ulivo ulivo nom +ulmacee ulmacee nom +ulna ulna nom +ulnare ulnare adj +ulnari ulnare adj +ulne ulna nom +ulster ulster nom +ulta ulto adj +ulteriore ulteriore adj +ulteriori ulteriore adj +ulteriormente ulteriormente adv +ulti ulto adj +ultima ultimo adj +ultimali ultimare ver +ultimamente ultimamente adv +ultimando ultimare ver +ultimandoli ultimare ver +ultimandolo ultimare ver +ultimandone ultimare ver +ultimandosi ultimare ver +ultimano ultimare ver +ultimare ultimare ver +ultimarla ultimare ver +ultimarle ultimare ver +ultimarli ultimare ver +ultimarlo ultimare ver +ultimarne ultimare ver +ultimarono ultimare ver +ultimarsi ultimare ver +ultimasse ultimare ver +ultimata ultimare ver +ultimate ultimare ver +ultimati ultimare ver +ultimativa ultimativo adj +ultimative ultimativo adj +ultimativi ultimativo adj +ultimativo ultimativo adj +ultimato ultimare ver +ultimatum ultimatum nom +ultimava ultimare ver +ultimazione ultimazione nom +ultimazioni ultimazione nom +ultime ultimo adj +ultimerà ultimare ver +ultimerò ultimare ver +ultimi ultimo adj +ultimino ultimare ver +ultimissima ultimissima nom +ultimissime ultimissima nom +ultimo ultimo adj_sup +ultimò ultimare ver +ultore ultore adj +ultra ultra adj +ultracorte ultracorto adj +ultracorti ultracorto adj +ultramicroscopiche ultramicroscopico adj +ultramicroscopio ultramicroscopio nom +ultramicrotomi ultramicrotomo nom +ultramicrotomo ultramicrotomo nom +ultramoderna ultramoderno adj +ultramoderne ultramoderno adj +ultramoderni ultramoderno adj +ultramoderno ultramoderno adj +ultranazionalismo ultranazionalismo nom +ultraottantenni ultraottantenne adj +ultraperiferica ultraperiferica adj +ultraperiferiche ultraperiferica adj +ultrarapida ultrarapido adj +ultrarapide ultrarapido adj +ultrarapidi ultrarapido adj +ultrarapido ultrarapido adj +ultrasensibile ultrasensibile adj +ultrasensibili ultrasensibile adj +ultrasessantacinquenni ultrasessantacinquenne nom +ultrasessantenni ultrasessantenni nom +ultrasinistra ultrasinistra nom +ultrasonica ultrasonico adj +ultrasoniche ultrasonico adj +ultrasonici ultrasonico adj +ultrasonico ultrasonico adj +ultrasonora ultrasonoro adj +ultrasonore ultrasonoro adj +ultrasonori ultrasonoro adj +ultrasonoro ultrasonoro adj +ultrasuoni ultrasuono nom +ultrasuono ultrasuono nom +ultraterrena ultraterreno adj +ultraterrene ultraterreno adj +ultraterreni ultraterreno adj +ultraterreno ultraterreno adj +ultravioletta ultravioletto adj +ultraviolette ultravioletto adj +ultravioletti ultravioletto adj +ultravioletto ultravioletto adj +ultrice ultore adj +ultrà ultrà adj +ulula ululare ver +ululando ululare ver +ululano ululare ver +ululante ululare ver +ululanti ululare ver +ululare ululare ver +ululata ululare ver +ululati ululato nom +ululato ululato nom +ululava ululare ver +ululavano ululare ver +ululi ululo nom +ululino ululare ver +ululo ululo nom +ululone ululone nom +ulva ulva nom +ulve ulva nom +umana umano adj +umanamente umanamente adv +umane umano adj +umanesimi umanesimo nom +umanesimo umanesimo nom +umani umano adj +umanista umanista nom +umaniste umanista nom +umanisti umanista nom +umanistica umanistico adj +umanistiche umanistico adj +umanistici umanistico adj +umanistico umanistico adj +umanitari umanitario adj +umanitaria umanitario adj +umanitarie umanitario adj +umanitario umanitario adj +umanitarismo umanitarismo nom +umanità umanità nom +umanizza umanizzare ver +umanizzandolo umanizzare ver +umanizzante umanizzare ver +umanizzare umanizzare ver +umanizzarli umanizzare ver +umanizzarlo umanizzare ver +umanizzata umanizzare ver +umanizzate umanizzare ver +umanizzati umanizzare ver +umanizzato umanizzare ver +umanizzazione umanizzazione nom +umano umano adj +umanoide umanoide adj +umanoidi umanoide adj +umbertina umbertino adj +umbertine umbertino adj +umbertini umbertino adj +umbertino umbertino adj +umbra umbro adj +umbratile umbratile adj +umbratili umbratile adj +umbre umbro adj +umbri umbro adj +umbro umbro adj +umettano umettare ver +umettante umettare ver +umettanti umettare ver +umettata umettare ver +umica umico adj +umiche umico adj +umici umico adj +umico umico adj +umida umido adj +umide umido adj +umidi umido adj +umidicci umidiccio adj +umidiccio umidiccio adj +umidifica umidificare ver +umidificando umidificare ver +umidificano umidificare ver +umidificante umidificare ver +umidificare umidificare ver +umidificata umidificare ver +umidificate umidificare ver +umidificati umidificare ver +umidificato umidificare ver +umidificatore umidificatore nom +umidificatori umidificatore nom +umidità umidità nom +umido umido adj +umidore umidore nom +umiferi umifero adj +umifero umifero adj +umificazione umificazione nom +umile umile adj +umili umile adj +umilia umiliare ver +umiliando umiliare ver +umiliandola umiliare ver +umiliandole umiliare ver +umiliandoli umiliare ver +umiliandolo umiliare ver +umiliandosi umiliare ver +umiliano umiliare ver +umiliante umiliante adj +umilianti umiliante adj +umiliare umiliare ver +umiliarla umiliare ver +umiliarle umiliare ver +umiliarli umiliare ver +umiliarlo umiliare ver +umiliarmi umiliare ver +umiliarono umiliare ver +umiliarsi umiliare ver +umiliata umiliare ver +umiliate umiliare ver +umiliati umiliare ver +umiliato umiliare ver +umiliava umiliare ver +umiliavano umiliare ver +umiliazione umiliazione nom +umiliazioni umiliazione nom +umilieranno umiliare ver +umilierebbe umiliare ver +umilierà umiliare ver +umilio umiliare ver +umiliò umiliare ver +umiltà umiltà nom +umore umore nom +umoresca umoresca nom +umoresche umoresca nom +umori umore nom +umorismi umorismo nom +umorismo umorismo nom +umorista umorista nom +umoristi umorista nom +umoristica umoristico adj +umoristiche umoristico adj +umoristici umoristico adj +umoristico umoristico adj +un un det +una una det +unanime unanime adj +unanimemente unanimemente adv +unanimi unanime adj +unanimismo unanimismo nom +unanimità unanimità nom +uncina uncinare ver +uncinando uncinare ver +uncinano uncinare ver +uncinare uncinare ver +uncinata uncinato adj +uncinate uncinato adj +uncinati uncinato adj +uncinato uncinato adj +uncinetti uncinetto nom +uncinetto uncinetto nom +uncini uncino nom +uncino uncino nom +undecima undecimo adj +undecimo undecimo adj +under under adj +underground underground adj +undicenne undicenne adj +undicenni undicenne adj +undicesima undicesimo adj +undicesime undicesimo adj +undicesimi undicesimo adj +undicesimo undicesimo adj +undici undici adj +unendo unire ver +unendogli unire ver +unendola unire ver +unendole unire ver +unendoli unire ver +unendolo unire ver +unendomi unire ver +unendone unire ver +unendosi unire ver +unendovi unire ver +unente unire ver +unenti unire ver +unga ungere ver +ungarica ungarico adj +ungariche ungarico adj +ungarici ungarico adj +ungarico ungarico adj +unge ungere ver +ungendo ungere ver +ungendole ungere ver +ungendoli ungere ver +ungendolo ungere ver +ungendone ungere ver +ungenti ungere ver +unger ungere ver +ungere ungere ver +ungerla ungere ver +ungerle ungere ver +ungerli ungere ver +ungerlo ungere ver +ungersi ungere ver +ungeva ungere ver +ungevano ungere ver +ungherese ungherese adj +ungheresi ungherese adj +unghia unghia nom +unghiata unghiato adj +unghiate unghiato adj +unghiati unghiato adj +unghiato unghiato adj +unghie unghia nom +unghielli unghiello nom +unghione unghione nom +unghioni unghione nom +unghiuta unghiuto adj +unghiute unghiuto adj +ungi ungere ver +ungo ungere ver +ungono ungere ver +ungueale ungueale adj +ungueali ungueale adj +unguenti unguento nom +unguento unguento nom +ungula ungula nom +ungulati ungulati nom +uni uni sw +uniamo unire ver +uniamoci unire ver +uniamola unire ver +uniamole unire ver +uniamoli unire ver +uniamolo unire ver +uniate unire ver +unibile unibile adj +unibili unibile adj +unica unico adj +unicamente unicamente adv +unicamerale unicamerale adj +unicamerali unicamerale adj +unicameralismo unicameralismo nom +unicellulare unicellulare adj +unicellulari unicellulare adj +uniche unico adj +unici unico adj +unicità unicità nom +unico unico adj +unicorne unicorno adj +unicorni unicorno nom +unicorno unicorno adj +unicum unicum nom +unidirezionale unidirezionale adj +unidirezionali unidirezionale adj +unifamiliare unifamiliare adj +unifamiliari unifamiliare adj +unifica unificare ver +unificabile unificabile adj +unificabili unificabile adj +unificaci unificare ver +unificando unificare ver +unificandola unificare ver +unificandole unificare ver +unificandoli unificare ver +unificandolo unificare ver +unificandone unificare ver +unificandosi unificare ver +unificano unificare ver +unificante unificare ver +unificanti unificare ver +unificare unificare ver +unificarla unificare ver +unificarle unificare ver +unificarli unificare ver +unificarlo unificare ver +unificarne unificare ver +unificarono unificare ver +unificarsi unificare ver +unificasse unificare ver +unificassero unificare ver +unificata unificare ver +unificate unificare ver +unificati unificare ver +unificato unificare ver +unificatore unificatore adj +unificatori unificatore adj +unificatrice unificatore adj +unificatrici unificatore adj +unificava unificare ver +unificavano unificare ver +unificazione unificazione nom +unificazioni unificazione nom +unificheranno unificare ver +unificherebbe unificare ver +unificherei unificare ver +unificherà unificare ver +unifichi unificare ver +unifichiamo unificare ver +unifichino unificare ver +unifico unificare ver +unificò unificare ver +uniforma uniformare ver +uniformando uniformare ver +uniformandola uniformare ver +uniformandoli uniformare ver +uniformandolo uniformare ver +uniformandomi uniformare ver +uniformandone uniformare ver +uniformandosi uniformare ver +uniformano uniformare ver +uniformante uniformare ver +uniformarci uniformare ver +uniformare uniformare ver +uniformarla uniformare ver +uniformarle uniformare ver +uniformarli uniformare ver +uniformarlo uniformare ver +uniformarmi uniformare ver +uniformarne uniformare ver +uniformarono uniformare ver +uniformarsi uniformare ver +uniformarti uniformare ver +uniformarvisi uniformare ver +uniformasse uniformare ver +uniformata uniformare ver +uniformate uniformare ver +uniformati uniformare ver +uniformato uniformare ver +uniformava uniformare ver +uniformazione uniformazione nom +uniforme uniforme adj +uniformemente uniformemente adv +uniformeranno uniformare ver +uniformerebbe uniformare ver +uniformerei uniformare ver +uniformeremo uniformare ver +uniformerà uniformare ver +uniformerò uniformare ver +uniformi uniforme adj +uniformiamo uniformare ver +uniformità uniformità nom +uniformo uniformare ver +uniformò uniformare ver +unigenita unigenito adj +unigenite unigenito adj +unigeniti unigenito adj +unigenito unigenito adj +unii unire ver +unilaterale unilaterale adj +unilaterali unilaterale adj +unilateralità unilateralità nom +unilateralmente unilateralmente adv +unimmo unire ver +uninominale uninominale adj +uninominali uninominale adj +unione unione nom +unioni unione nom +unionista unionista adj +unioniste unionista adj +unionisti unionista adj +unipara uniparo adj +unipari uniparo adj +uniparo uniparo adj +unir unire ver +unirai unire ver +uniranno unire ver +unirci unire ver +unire unire ver +unirebbe unire ver +unirebbero unire ver +unirei unire ver +uniremo unire ver +unirete unire ver +unirla unire ver +unirle unire ver +unirli unire ver +unirlo unire ver +unirmi unire ver +unirne unire ver +unirono unire ver +unirsi unire ver +unirti unire ver +unirvi unire ver +unirà unire ver +unirò unire ver +unisca unire ver +uniscano unire ver +unisce unire ver +unisci unire ver +uniscila unire ver +unisciti unire ver +unisco unire ver +uniscono unire ver +unisessuale unisessuale adj +unisessuali unisessuale adj +unisessuati unisessuato adj +unisex unisex adj +unisone unisono adj +unisoni unisono nom +unisono unisono adj +unisse unire ver +unissero unire ver +unissi unire ver +unissimo unire ver +uniste unire ver +unisti unire ver +unita unire ver +unitamente unitamente adv +unitari unitario adj +unitaria unitario adj +unitariamente unitariamente adv +unitarie unitario adj +unitarietà unitarietà nom +unitario unitario adj +unitarismo unitarismo nom +unite unito adj +unitela unire ver +unitele unire ver +unitesi unire ver +unitevi unire ver +uniti unito adj +unito unire ver +unità unità nom +univa unire ver +univano unire ver +universa universo adj +universale universale adj +universali universale adj +universalismi universalismo nom +universalismo universalismo nom +universalista universalista nom +universalisti universalista nom +universalità universalità nom +universalizza universalizzare ver +universalizzante universalizzare ver +universalizzare universalizzare ver +universalizzata universalizzare ver +universalizzato universalizzare ver +universalmente universalmente adv +universe universo adj +universi universo nom +universiade universiade nom +universiadi universiade nom +universitari universitario adj +universitaria universitario adj +universitarie universitario adj +universitario universitario adj +università università nom +universo universo adj +univi unire ver +univo unire ver +univoca univoco adj +univocamente univocamente adv +univoche univoco adj +univoci univoco adj +univocità univocità nom +univoco univoco adj +uno uno det +unse ungere ver +unsero ungere ver +unsi ungere ver +unta ungere ver +unte ungere ver +unti ungere ver +unticcia unticcio adj +unto ungere ver +untore untore nom +untori untore nom +untume untume nom +untuosa untuoso adj +untuose untuoso adj +untuosi untuoso adj +untuosità untuosità nom +untuoso untuoso adj +unzione unzione nom +unzioni unzione nom +unì unire ver +uomini uomo nom +uomo uomo nom +uopo uopo nom +uosa uosa nom +uova uovo nom +uovo uovo nom +uppercut uppercut nom +upupa upupa nom +upupe upupa nom +uragani uragano nom +uragano uragano nom +urani urano nom +uranifera uranifero adj +uranifere uranifero adj +uraniferi uranifero adj +uranifero uranifero adj +uraninite uraninite nom +uranio uranio nom +urano urano nom +uranografia uranografia nom +urbana urbano adj +urbane urbano adj +urbanesimo urbanesimo nom +urbani urbano adj +urbanismo urbanismo nom +urbanista urbanista nom +urbaniste urbanista nom +urbanisti urbanista nom +urbanistica urbanistico adj +urbanistiche urbanistico adj +urbanistici urbanistico adj +urbanistico urbanistico adj +urbanità urbanità nom +urbanizza urbanizzare ver +urbanizzando urbanizzare ver +urbanizzare urbanizzare ver +urbanizzarono urbanizzare ver +urbanizzata urbanizzare ver +urbanizzate urbanizzare ver +urbanizzati urbanizzare ver +urbanizzato urbanizzare ver +urbanizzazione urbanizzazione nom +urbanizzazioni urbanizzazione nom +urbanizzò urbanizzare ver +urbano urbano adj +urbe urbe nom +urea urea nom +uree urea nom +ureica ureico adj +ureiche ureico adj +ureici ureico adj +ureico ureico adj +uremia uremia nom +uremica uremico adj +uremiche uremico adj +uremico uremico adj +urente urente adj +urenti urente adj +ureterale ureterale adj +ureterali ureterale adj +uretere uretere nom +ureteri uretere nom +uretra uretra nom +uretrale uretrale adj +uretrali uretrale adj +uretrite uretrite nom +uretriti uretrite nom +urga urgere ver +urgano urgere ver +urge urgere ver +urgendo urgere ver +urgente urgente adj +urgentemente urgentemente adv +urgenti urgente adj +urgenza urgenza nom +urgenze urgenza nom +urgere urgere ver +urgeva urgere ver +urgevano urgere ver +urgono urgere ver +uri uro nom +uria uria nom +urica urico adj +uricemia uricemia nom +uricemico uricemico adj +urici urico adj +urico urico adj +urie uria nom +urina urina nom +urinale urinare ver +urinali urinare ver +urinando urinare ver +urinano urinare ver +urinar urinare ver +urinarci urinare ver +urinare urinare ver +urinargli urinare ver +urinari urinario adj +urinaria urinario adj +urinarie urinario adj +urinario urinario adj +urinarono urinare ver +urinarsi urinare ver +urinato urinare ver +urinava urinare ver +urinavano urinare ver +urine urina nom +urini urinare ver +urino urinare ver +urinò urinare ver +urla urlo nom +urlai urlare ver +urlando urlare ver +urlandogli urlare ver +urlandole urlare ver +urlane urlare ver +urlano urlare ver +urlante urlare ver +urlanti urlare ver +urlar urlare ver +urlare urlare ver +urlargli urlare ver +urlarle urlare ver +urlarli urlare ver +urlarlo urlare ver +urlarmi urlare ver +urlarono urlare ver +urlarsi urlare ver +urlasse urlare ver +urlassero urlare ver +urlata urlare ver +urlate urlare ver +urlati urlare ver +urlato urlare ver +urlatore urlatore adj +urlatori urlatore adj +urlatrice urlatore adj +urlatrici urlatore adj +urlava urlare ver +urlavano urlare ver +urlavo urlare ver +urleranno urlare ver +urlerà urlare ver +urlerò urlare ver +urli urlio|urlo nom +urliamo urlare ver +urlio urlio nom +urlo urlo nom +urlò urlare ver +urna urna nom +urne urna nom +uro uro nom +urodeli urodeli nom +urogalli urogallo nom +urogallo urogallo nom +urogenitale urogenitale adj +urogenitali urogenitale adj +urografia urografia nom +urologa urologo nom +urologi urologo nom +urologia urologia nom +urologie urologia nom +urologo urologo nom +uropigi uropigio nom +uropigio uropigio nom +uroscopia uroscopia nom +urotropina urotropina nom +urrà urrà int +urta urtare ver +urtando urtare ver +urtandola urtare ver +urtandoli urtare ver +urtandolo urtare ver +urtandone urtare ver +urtandosi urtare ver +urtano urtare ver +urtante urtante adj +urtanti urtante adj +urtar urtare ver +urtare urtare ver +urtarla urtare ver +urtarli urtare ver +urtarlo urtare ver +urtarono urtare ver +urtarsi urtare ver +urtasse urtare ver +urtata urtare ver +urtate urtare ver +urtati urtare ver +urtato urtare ver +urtava urtare ver +urtavano urtare ver +urterei urtare ver +urterà urtare ver +urti urto nom +urticacee urticacee nom +urticali urticale nom +urticante urticante adj +urticanti urticante adj +urticaria urticaria nom +urtino urtare ver +urto urto nom +urtò urtare ver +uruguayana uruguayano adj +uruguayane uruguayano adj +uruguayani uruguayano adj +uruguayano uruguayano adj +usa usare ver +usabile usabile adj +usabili usabile adj +usai usare ver +usala usare ver +usale usare ver +usali usare ver +usalo usare ver +usami usare ver +usammo usare ver +usando usare ver +usandogli usare ver +usandola usare ver +usandole usare ver +usandoli usare ver +usandolo usare ver +usandone usare ver +usandosi usare ver +usane usare ver +usano usare ver +usante usare ver +usanti usare ver +usanza usanza nom +usanze usanza nom +usar usare ver +usarci usare ver +usare usare ver +usargli usare ver +usarla usare ver +usarle usare ver +usarli usare ver +usarlo usare ver +usarmi usare ver +usarne usare ver +usarono usare ver +usarsi usare ver +usarti usare ver +usasse usare ver +usassero usare ver +usassi usare ver +usassimo usare ver +usaste usare ver +usata usare ver +usate usare ver +usateci usare ver +usatela usare ver +usatele usare ver +usateli usare ver +usatelo usare ver +usatemi usare ver +usati usare ver +usato usare ver +usava usare ver +usavamo usare ver +usavano usare ver +usavate usare ver +usavi usare ver +usavo usare ver +usberghi usbergo nom +usbergo usbergo nom +uscendo uscire ver +uscendone uscire ver +uscendosene uscire ver +uscendovi uscire ver +uscente uscente adj +uscenti uscente adj +usci uscio nom +usciamo uscire ver +usciate uscire ver +usciere usciere nom +uscieri usciere nom +uscii uscire ver +uscimmo uscire ver +uscio uscio nom +uscir uscire ver +uscirai uscire ver +usciranno uscire ver +uscirci uscire ver +uscire uscire ver +uscirebbe uscire ver +uscirebbero uscire ver +uscirei uscire ver +usciremmo uscire ver +usciremo uscire ver +uscirete uscire ver +uscirgli uscire ver +uscirle uscire ver +uscirne uscire ver +uscirono uscire ver +uscirsene uscire ver +uscirtene uscire ver +uscirvi uscire ver +uscirà uscire ver +uscirò uscire ver +uscisse uscire ver +uscissero uscire ver +uscissi uscire ver +uscissimo uscire ver +uscisti uscire ver +uscita uscire ver +uscite uscita nom +uscitene uscire ver +usciti uscire ver +uscito uscire ver +usciva uscire ver +uscivamo uscire ver +uscivano uscire ver +uscivi uscire ver +uscivo uscire ver +uscì uscire ver +use uso adj +userai usare ver +useranno usare ver +userebbe usare ver +userebbero usare ver +userei usare ver +useremmo usare ver +useremo usare ver +usereste usare ver +useresti usare ver +userete usare ver +userà usare ver +userò usare ver +usi uso nom +usiamo usare ver +usiamola usare ver +usiamole usare ver +usiamoli usare ver +usiamolo usare ver +usiate usare ver +usignoli usignolo nom +usignolo usignolo nom +usino usare ver +usitata usitato adj +uso uso nom +ussari ussaro nom +ussaro ussaro nom +usta usto adj +uste usto adj +usti usto adj +ustiona ustionare ver +ustionando ustionare ver +ustionandolo ustionare ver +ustionandosi ustionare ver +ustionante ustionare ver +ustionanti ustionare ver +ustionare ustionare ver +ustionarli ustionare ver +ustionarono ustionare ver +ustionarsi ustionare ver +ustionarti ustionare ver +ustionasse ustionare ver +ustionata ustionare ver +ustionate ustionare ver +ustionati ustionato nom +ustionato ustionare ver +ustione ustione nom +ustionerà ustionare ver +ustioni ustione nom +ustionò ustionare ver +usto usto adj +ustori ustorio adj +ustorio ustorio adj +usuale usuale adj +usuali usuale adj +usualmente usualmente adv +usucapione usucapione nom +usucapire usucapire ver +usucapite usucapire ver +usucapito usucapire ver +usucapiva usucapire ver +usufruendo usufruire ver +usufruendone usufruire ver +usufruenti usufruire ver +usufruibile usufruibile adj +usufruibili usufruibile adj +usufruiranno usufruire ver +usufruire usufruire ver +usufruirebbe usufruire ver +usufruirne usufruire ver +usufruirono usufruire ver +usufruirà usufruire ver +usufruisca usufruire ver +usufruiscano usufruire ver +usufruisce usufruire ver +usufruisco usufruire ver +usufruiscono usufruire ver +usufruisse usufruire ver +usufruissero usufruire ver +usufruita usufruire ver +usufruite usufruire ver +usufruiti usufruire ver +usufruito usufruire ver +usufruiva usufruire ver +usufruivano usufruire ver +usufrutto usufrutto nom +usufruttuari usufruttuario nom +usufruttuaria usufruttuario nom +usufruttuario usufruttuario nom +usufruì usufruire ver +usura usura nom +usurai usuraio nom +usuraia usuraio nom +usuraio usuraio nom +usurano usurare ver +usurante usurare ver +usuranti usurare ver +usurare usurare ver +usurari usurario adj +usuraria usurario adj +usurario usurario adj +usurarsi usurare ver +usurata usurare ver +usurate usurare ver +usurati usurare ver +usurato usurare ver +usurava usurare ver +usuravano usurare ver +usure usura nom +usuri usurare ver +usurino usurare ver +usurpa usurpare ver +usurpando usurpare ver +usurpandogli usurpare ver +usurpandole usurpare ver +usurpandone usurpare ver +usurpano usurpare ver +usurpare usurpare ver +usurpargli usurpare ver +usurparli usurpare ver +usurparlo usurpare ver +usurparne usurpare ver +usurparono usurpare ver +usurpasse usurpare ver +usurpata usurpare ver +usurpate usurpare ver +usurpati usurpare ver +usurpato usurpare ver +usurpatore usurpatore adj +usurpatori usurpatore adj +usurpatrice usurpatore adj +usurpava usurpare ver +usurpavano usurpare ver +usurpazione usurpazione nom +usurpazioni usurpazione nom +usurperà usurpare ver +usurpino usurpare ver +usurpo usurpare ver +usurpò usurpare ver +usò usare ver +ut ut nom +utensile utensile adj +utensileria utensileria nom +utensilerie utensileria nom +utensili utensile nom +utente utente nom +utenti utente nom +utenza utenza nom +utenze utenza nom +uteri utero nom +uterini uterino nom +uterino uterino nom +utero utero nom +utile utile adj +utili utile adj +utilissima utilissimo adj +utilissimo utilissimo adj +utilitari utilitario adj +utilitaria utilitario adj +utilitarie utilitaria|utilitario nom +utilitario utilitario adj +utilitarismo utilitarismo nom +utilitarista utilitarista nom +utilitariste utilitarista nom +utilitaristi utilitarista nom +utilitaristica utilitaristico adj +utilitaristiche utilitaristico adj +utilitaristici utilitaristico adj +utilitaristico utilitaristico adj +utilità utilità nom +utilizza utilizzare ver +utilizzabile utilizzabile adj +utilizzabili utilizzabile adj +utilizzai utilizzare ver +utilizzale utilizzare ver +utilizzalo utilizzare ver +utilizzammo utilizzare ver +utilizzando utilizzare ver +utilizzandola utilizzare ver +utilizzandole utilizzare ver +utilizzandoli utilizzare ver +utilizzandolo utilizzare ver +utilizzandone utilizzare ver +utilizzandovi utilizzare ver +utilizzane utilizzare ver +utilizzano utilizzare ver +utilizzante utilizzare ver +utilizzanti utilizzare ver +utilizzar utilizzare ver +utilizzarci utilizzare ver +utilizzare utilizzare ver +utilizzarla utilizzare ver +utilizzarle utilizzare ver +utilizzarli utilizzare ver +utilizzarlo utilizzare ver +utilizzarne utilizzare ver +utilizzarono utilizzare ver +utilizzarsi utilizzare ver +utilizzasse utilizzare ver +utilizzassero utilizzare ver +utilizzassi utilizzare ver +utilizzassimo utilizzare ver +utilizzata utilizzare ver +utilizzate utilizzare ver +utilizzatelo utilizzare ver +utilizzati utilizzare ver +utilizzato utilizzare ver +utilizzatore utilizzatore nom +utilizzatori utilizzatore nom +utilizzava utilizzare ver +utilizzavamo utilizzare ver +utilizzavano utilizzare ver +utilizzavi utilizzare ver +utilizzavo utilizzare ver +utilizzazione utilizzazione nom +utilizzazioni utilizzazione nom +utilizzerai utilizzare ver +utilizzeranno utilizzare ver +utilizzerebbe utilizzare ver +utilizzerebbero utilizzare ver +utilizzerei utilizzare ver +utilizzeremmo utilizzare ver +utilizzeremo utilizzare ver +utilizzeresti utilizzare ver +utilizzerà utilizzare ver +utilizzerò utilizzare ver +utilizzi utilizzo nom +utilizziamo utilizzare ver +utilizziamola utilizzare ver +utilizziamolo utilizzare ver +utilizziate utilizzare ver +utilizzino utilizzare ver +utilizzo utilizzo nom +utilizzò utilizzare ver +utilmente utilmente adv +utopia utopia nom +utopica utopico adj +utopiche utopico adj +utopici utopico adj +utopico utopico adj +utopie utopia nom +utopista utopista nom +utopisti utopista nom +utopistica utopistico adj +utopistiche utopistico adj +utopistici utopistico adj +utopistico utopistico adj +utu utu adj +uva uva nom +uve uva nom +uvea uvea nom +uvetta uvetta nom +uvette uvetta nom +uvifera uvifero adj +uxori uxorio adj +uxoria uxorio adj +uxoricida uxoricida nom +uxoricide uxoricida nom +uxoricidi uxoricida|uxoricidio nom +uxoricidio uxoricidio nom +uxorio uxorio adj +uzza uzza nom +uzzolo uzzolo nom +v v sw +va andare ver_sup +vaca vacare ver +vacale vacare ver +vacando vacare ver +vacano vacare ver +vacante vacante adj +vacanti vacante adj +vacanza vacanza nom +vacanze vacanza nom +vacanziera vacanziere nom +vacanziere vacanziere nom +vacanzieri vacanziere nom +vacare vacare ver +vacate vacare ver +vacati vacare ver +vacazione vacazione nom +vacca vacca nom +vaccai vaccaio nom +vaccaio vaccaio nom +vaccari vaccaro nom +vaccaro vaccaro nom +vaccata vaccata nom +vaccate vaccata nom +vacche vacca nom +vaccheria vaccheria nom +vaccherie vaccheria nom +vacchetta vacchetta nom +vaccina vaccina nom +vaccinale vaccinare ver +vaccinali vaccinare ver +vaccinando vaccinare ver +vaccinano vaccinare ver +vaccinare vaccinare ver +vaccinarono vaccinare ver +vaccinarsi vaccinare ver +vaccinata vaccinare ver +vaccinate vaccinare ver +vaccinati vaccinare ver +vaccinato vaccinare ver +vaccinazione vaccinazione nom +vaccinazioni vaccinazione nom +vaccine vaccina nom +vaccini vaccino nom +vaccinica vaccinico adj +vaccinico vaccinico adj +vaccino vaccino nom +vaccinoprofilassi vaccinoprofilassi nom +vaccinoterapia vaccinoterapia nom +vacelo andare ver +vaci andare ver +vacilla vacillare ver +vacillamento vacillamento nom +vacillando vacillare ver +vacillano vacillare ver +vacillante vacillare ver +vacillanti vacillare ver +vacillar vacillare ver +vacillare vacillare ver +vacillarono vacillare ver +vacillate vacillare ver +vacillato vacillare ver +vacillava vacillare ver +vacillavano vacillare ver +vacillerà vacillare ver +vacilli vacillare ver +vacillo vacillare ver +vacillò vacillare ver +vaco vacare ver +vacua vacuo adj +vacue vacuo adj +vacui vacuo adj +vacuità vacuità nom +vacuo vacuo adj +vacuoli vacuolo nom +vacuolo vacuolo nom +vacuometri vacuometro nom +vacuometro vacuometro nom +vada andare ver_sup +vadano andare ver_sup +vademecum vademecum nom +vado andare ver_sup +vaga vago adj +vagabonda vagabondo adj +vagabondaggi vagabondaggio nom +vagabondaggio vagabondaggio nom +vagabondando vagabondare ver +vagabondano vagabondare ver +vagabondare vagabondare ver +vagabondarono vagabondare ver +vagabondato vagabondare ver +vagabondava vagabondare ver +vagabondavano vagabondare ver +vagabondavo vagabondare ver +vagabonde vagabondo adj +vagabondi vagabondo nom +vagabondo vagabondo nom +vagabondò vagabondare ver +vagai vagare ver +vagale vagare ver +vagali vagare ver +vagamente vagamente adv +vagando vagare ver +vagano vagare ver +vagante vagare ver +vaganti vagare ver +vagar vagare ver +vagare vagare ver +vagarono vagare ver +vagasse vagare ver +vagassero vagare ver +vagato vagare ver +vagava vagare ver +vagavano vagare ver +vagavo vagare ver +vaghe vago adj +vagheggi vagheggiare ver +vagheggia vagheggiare ver +vagheggiamenti vagheggiamento nom +vagheggiamento vagheggiamento nom +vagheggiando vagheggiare ver +vagheggiano vagheggiare ver +vagheggiare vagheggiare ver +vagheggiata vagheggiare ver +vagheggiate vagheggiare ver +vagheggiati vagheggiare ver +vagheggiato vagheggiare ver +vagheggiava vagheggiare ver +vagheggiavano vagheggiare ver +vagheggiò vagheggiare ver +vagheranno vagare ver +vagherà vagare ver +vaghezza vaghezza nom +vaghezze vaghezza nom +vaghi vago adj +vaghino vagare ver +vagina vagina nom +vaginale vaginale adj +vaginali vaginale adj +vagine vagina nom +vaginite vaginite nom +vaginiti vaginite nom +vagir vagire ver +vagire vagire ver +vagiti vagire ver +vagito vagire ver +vagli vaglio nom +vaglia vaglia nom +vagliagli vagliare ver +vagliamo vagliare ver +vagliamola vagliare ver +vagliamole vagliare ver +vagliando vagliare ver +vagliandola vagliare ver +vagliano vagliare ver +vaglianti vagliare ver +vagliare vagliare ver +vagliarla vagliare ver +vagliarle vagliare ver +vagliarne vagliare ver +vagliarono vagliare ver +vagliata vagliare ver +vagliate vagliare ver +vagliati vagliare ver +vagliato vagliare ver +vagliatura vagliatura nom +vagliava vagliare ver +vagliavano vagliare ver +vaglielo andare ver +vaglieranno vagliare ver +vaglierei vagliare ver +vaglierà vagliare ver +vaglierò vagliare ver +vaglino vagliare ver +vaglio vaglio nom +vagliò vagliare ver +vago vago adj +vagola vagolare ver +vagoncini vagoncino nom +vagoncino vagoncino nom +vagone vagone nom +vagoni vagone nom +vagò vagare ver +vai vaio adj_sup +vaia vaio adj +vaiata vaiato adj +vaiato vaiato adj +vaie vaio adj +vainiglia vainiglia nom +vaio vaio nom +vaiolo vaiolo nom +vaiolosa vaioloso adj +vaiolose vaioloso adj +vaiolosi vaioloso adj +vaioloso vaioloso adj +vala andare ver +valanga valanga nom +valanghe valanga nom +valchiria valchiria nom +valchirie valchiria nom +valdese valdese adj +valdesi valdese nom +valdismo valdismo nom +vale valere ver +valenciennes valenciennes nom +valendo valere ver +valendogli valere ver +valendomi valere ver +valendosi valere ver +valente valente adj +valenti valente adj +valentia valentia nom +valentie valentia nom +valentuomini valentuomo nom +valentuomo valentuomo nom +valenza valenza nom +valenze valenza nom +valer valere ver +valere valere ver +valergli valere ver +valeriana valeriana nom +valerianacee valerianacee nom +valeriane valeriana nom +valerianella valerianella nom +valerle valere ver +valermi valere ver +valerne valere ver +valersene valere ver +valersi valere ver +valesse valere ver +valessero valere ver +valesti valere ver +valete valere ver +valetudinaria valetudinario adj +valetudinario valetudinario adj +valeva valere ver +valevano valere ver +valevi valere ver +valevo valere ver +valevole valevole adj +valevoli valevole adj +valga valgo adj +valgano valere ver +valgismo valgismo nom +valgo valgo adj +valgono valere ver +vali valere ver +valiamo valere ver +valiate valere ver +valica valicare ver +valicabile valicabile adj +valicabili valicabile adj +valicando valicare ver +valicano valicare ver +valicante valicare ver +valicare valicare ver +valicarli valicare ver +valicarlo valicare ver +valicarono valicare ver +valicasse valicare ver +valicata valicare ver +valicate valicare ver +valicati valicare ver +valicato valicare ver +valicava valicare ver +valicavano valicare ver +valicherà valicare ver +valichi valico nom +valichiamo valicare ver +valici valere ver +valico valico nom +valicò valicare ver +valida valido adj +validaci validare ver +validamente validamente adv +validando validare ver +validano validare ver +validante validare ver +validanti validare ver +validare validare ver +validarla validare ver +validarli validare ver +validarlo validare ver +validarne validare ver +validarono validare ver +validata validare ver +validate validare ver +validati validare ver +validato validare ver +validazione validazione nom +valide valido adj +validi valido adj +validino validare ver +validissimi validissimo adj +validità validità nom +valido valido adj +validò validare ver +valige valigia nom +valigeria valigeria nom +valigia valigia nom +valigie valigia nom +valila valere ver +valili valere ver +valine valere ver +valisi valere ver +valla vallare ver +vallante vallare ver +vallar vallare ver +vallare vallare ver +vallarsi vallare ver +vallata vallata nom +vallate vallata nom +vallati vallare ver +vallato vallare ver +valle valle nom +vallea vallea nom +vallee vallea nom +valleranno vallare ver +valletta valletta|valletto nom +vallette valletta|valletto nom +valletti valletto nom +valletto valletto nom +valli valle|vallo nom +vallicoltura vallicoltura nom +valligiana valligiano adj +valligiane valligiano adj +valligiani valligiano nom +valligiano valligiano adj +vallino vallare ver +valliva vallivo adj +vallive vallivo adj +vallivi vallivo adj +vallivo vallivo adj +vallo vallo nom +vallone vallone nom +valloni vallone nom +vallò vallare ver +valo andare ver +valore valore nom +valori valore nom +valorizza valorizzare ver +valorizzando valorizzare ver +valorizzandola valorizzare ver +valorizzandole valorizzare ver +valorizzandoli valorizzare ver +valorizzandolo valorizzare ver +valorizzandone valorizzare ver +valorizzano valorizzare ver +valorizzante valorizzare ver +valorizzare valorizzare ver +valorizzarla valorizzare ver +valorizzarle valorizzare ver +valorizzarli valorizzare ver +valorizzarlo valorizzare ver +valorizzarne valorizzare ver +valorizzarono valorizzare ver +valorizzarsi valorizzare ver +valorizzasse valorizzare ver +valorizzassero valorizzare ver +valorizzata valorizzare ver +valorizzate valorizzare ver +valorizzati valorizzare ver +valorizzato valorizzare ver +valorizzava valorizzare ver +valorizzavano valorizzare ver +valorizzazione valorizzazione nom +valorizzazioni valorizzazione nom +valorizzerebbe valorizzare ver +valorizzerà valorizzare ver +valorizzi valorizzare ver +valorizziamo valorizzare ver +valorizziamolo valorizzare ver +valorizzino valorizzare ver +valorizzò valorizzare ver +valorosa valoroso adj +valorose valoroso adj +valorosi valoroso adj +valoroso valoroso adj +valpolicella valpolicella nom +valsa valere ver +valse valere ver +valsero valere ver +valsi valere ver +valso valere ver +valuta valuta nom +valutabile valutabile adj +valutabili valutabile adj +valutalo valutare ver +valutando valutare ver +valutandola valutare ver +valutandole valutare ver +valutandoli valutare ver +valutandolo valutare ver +valutandone valutare ver +valutandosi valutare ver +valutano valutare ver +valutar valutare ver +valutare valutare ver +valutari valutario adj +valutaria valutario adj +valutarie valutario adj +valutario valutario adj +valutarla valutare ver +valutarle valutare ver +valutarli valutare ver +valutarlo valutare ver +valutarne valutare ver +valutarono valutare ver +valutarsi valutare ver +valutasse valutare ver +valutassero valutare ver +valutassi valutare ver +valutassimo valutare ver +valutaste valutare ver +valutata valutare ver +valutate valutare ver +valutati valutare ver +valutativa valutativo adj +valutativi valutativo adj +valutativo valutativo adj +valutato valutare ver +valutava valutare ver +valutavano valutare ver +valutavo valutare ver +valutazione valutazione nom +valutazioni valutazione nom +valute valuta nom +valuteranno valutare ver +valuterebbe valutare ver +valuterebbero valutare ver +valuterei valutare ver +valuteremo valutare ver +valutereste valutare ver +valuterete valutare ver +valuterà valutare ver +valuterò valutare ver +valuti valutare ver +valutiamo valutare ver +valutiamone valutare ver +valutiate valutare ver +valutino valutare ver +valuto valutare ver +valutò valutare ver +valva valva nom +valvassini valvassino nom +valvassino valvassino nom +valvassore valvassore nom +valvassori valvassore nom +valve valva nom +valvola valvola nom +valvole valvola nom +valzer valzer nom +vamp vamp nom +vampa vampa nom +vampata vampata nom +vampate vampata nom +vampe vampa nom +vampira vampiro nom +vampire vampiro nom +vampiri vampiro nom +vampirismo vampirismo nom +vampiro vampiro nom +vana vano adj +vanadi vanadio nom +vanadio vanadio nom +vanagloria vanagloria nom +vanagloriosa vanaglorioso adj +vanagloriosi vanaglorioso adj +vanaglorioso vanaglorioso adj +vandala vandalo adj +vandale vandalo adj +vandali vandalo nom +vandalica vandalico adj +vandaliche vandalico adj +vandalici vandalico adj +vandalico vandalico adj +vandalismi vandalismo nom +vandalismo vandalismo nom +vandalo vandalo adj +vane vano adj +vaneggi vaneggiare ver +vaneggia vaneggiare ver +vaneggiamenti vaneggiamento nom +vaneggiamento vaneggiamento nom +vaneggiando vaneggiare ver +vaneggiante vaneggiare ver +vaneggianti vaneggiare ver +vaneggiare vaneggiare ver +vaneggiato vaneggiare ver +vaneggio vaneggiare ver +vanesi vanesio adj +vanesia vanesio adj +vanesie vanesio adj +vanesio vanesio adj +vanessa vanessa nom +vanesse vanessa nom +vanga vanga nom +vangala vangare ver +vangali vangare ver +vangano vangare ver +vangar vangare ver +vangare vangare ver +vangato vangare ver +vangatori vangatore nom +vangatrice vangatore nom +vangatrici vangatore nom +vangatura vangatura nom +vangeli vangelo nom +vangelo vangelo nom +vanghe vanga nom +vangile vangile nom +vango vangare ver +vani vano adj +vanifica vanificare ver +vanificando vanificare ver +vanificandone vanificare ver +vanificano vanificare ver +vanificanti vanificare ver +vanificare vanificare ver +vanificarli vanificare ver +vanificarlo vanificare ver +vanificarne vanificare ver +vanificarono vanificare ver +vanificarsi vanificare ver +vanificata vanificare ver +vanificate vanificare ver +vanificati vanificare ver +vanificato vanificare ver +vanificava vanificare ver +vanificavano vanificare ver +vanificazione vanificazione nom +vanificherebbe vanificare ver +vanificherebbero vanificare ver +vanificherà vanificare ver +vanifichi vanificare ver +vanifichiamo vanificare ver +vanificò vanificare ver +vaniglia vaniglia nom +vanigliato vanigliato adj +vanillina vanillina nom +vanilline vanillina nom +vaniloqui vaniloquio nom +vaniloquio vaniloquio nom +vanitosa vanitoso adj +vanitose vanitoso adj +vanitosi vanitoso adj +vanitoso vanitoso adj +vanità vanità nom +vanno andare ver_sup +vano vano adj +vanta vantare ver +vantaggi vantaggio nom +vantaggio vantaggio nom +vantaggiosa vantaggioso adj +vantaggiose vantaggioso adj +vantaggiosi vantaggioso adj +vantaggioso vantaggioso adj +vantando vantare ver +vantandone vantare ver +vantandosene vantare ver +vantandosi vantare ver +vantano vantare ver +vantante vantare ver +vantanti vantare ver +vantar vantare ver +vantarcene vantare ver +vantarci vantare ver +vantare vantare ver +vantarla vantare ver +vantarmene vantare ver +vantarmi vantare ver +vantarne vantare ver +vantarono vantare ver +vantarsene vantare ver +vantarsi vantare ver +vantarti vantare ver +vantasse vantare ver +vantassero vantare ver +vantata vantare ver +vantate vantare ver +vantati vantare ver +vantato vantare ver +vantava vantare ver +vantavano vantare ver +vanteranno vantare ver +vanterebbe vantare ver +vanteria vanteria nom +vanterie vanteria nom +vanterà vantare ver +vanti vanto nom +vantiamo vantare ver +vantino vantare ver +vanto vanto nom +vantò vantare ver +vanvera vanvera nom +vapiti vapiti nom +vaporano vaporare ver +vapore vapore nom +vaporetti vaporetto nom +vaporetto vaporetto nom +vapori vapore nom +vaporiera vaporiera nom +vaporiere vaporiera nom +vaporino vaporare ver +vaporizza vaporizzare ver +vaporizzando vaporizzare ver +vaporizzandola vaporizzare ver +vaporizzandosi vaporizzare ver +vaporizzano vaporizzare ver +vaporizzanti vaporizzare ver +vaporizzare vaporizzare ver +vaporizzarla vaporizzare ver +vaporizzarsi vaporizzare ver +vaporizzata vaporizzare ver +vaporizzate vaporizzare ver +vaporizzati vaporizzare ver +vaporizzato vaporizzare ver +vaporizzatore vaporizzatore nom +vaporizzatori vaporizzatore nom +vaporizzava vaporizzare ver +vaporizzavano vaporizzare ver +vaporizzazione vaporizzazione nom +vaporizzazioni vaporizzazione nom +vaporizzerebbe vaporizzare ver +vaporizzò vaporizzare ver +vaporo vaporare ver +vaporosa vaporoso adj +vaporose vaporoso adj +vaporosi vaporoso adj +vaporosità vaporosità nom +vaporoso vaporoso adj +vaquero vaquero nom +vara varo adj +varala varare ver +varale varare ver +varando varare ver +varane varare ver +varani varano nom +varano varano nom +varante varare ver +varar varare ver +varare varare ver +vararla varare ver +vararlo varare ver +vararne varare ver +vararono varare ver +varasi varare ver +varasse varare ver +varata varata nom +varate varare ver +varati varare ver +varato varare ver +varava varare ver +varavi varare ver +varavo varare ver +varca varcare ver +varcando varcare ver +varcandone varcare ver +varcano varcare ver +varcar varcare ver +varcare varcare ver +varcarla varcare ver +varcarlo varcare ver +varcarne varcare ver +varcarono varcare ver +varcasse varcare ver +varcata varcare ver +varcate varcare ver +varcati varcare ver +varcato varcare ver +varcava varcare ver +varcavano varcare ver +varcherà varcare ver +varchi varco nom +varchiamo varcare ver +varco varco nom +varcò varcare ver +vare varo adj +varechina varechina nom +varerà varare ver +varesina varesino adj +varesine varesino adj +varesini varesino adj +varesino varesino adj +vari vario|varo adj_sup +varia vario adj +variabile variabile adj +variabili variabile nom +variabilità variabilità nom +variaci variare ver +variale variare ver +variamo varare|variare ver +variando variare ver +variandola variare ver +variandolo variare ver +variandone variare ver +variandosi variare ver +variane variare ver +variano variare ver +variante variante nom +varianti variante nom +variar variare ver +variare variare ver +variarla variare ver +variarli variare ver +variarlo variare ver +variarne variare ver +variarono variare ver +variasi variare ver +variasse variare ver +variassero variare ver +variassi variare ver +variata variare ver +variate variare ver +variati variare ver +variato variare ver +variatore variatore nom +variatori variatore nom +variava variare ver +variavano variare ver +variazione variazione nom +variazioni variazione nom +varice varice nom +varicella varicella nom +varicelle varicella nom +varici varice nom +varicosa varicoso adj +varicose varicoso adj +varicosi varicoso adj +varie vario adj_sup +variegata variegato adj +variegate variegato adj +variegati variegato adj +variegato variegato adj +variegatura variegatura nom +variegature variegatura nom +varieranno variare ver +varierebbe variare ver +varierebbero variare ver +varierà variare ver +varietà varietà nom +varino varare|variare ver +vario vario pro +variolata variolato adj +variometro variometro nom +variopinta variopinto adj +variopinte variopinto adj +variopinti variopinto adj +variopinto variopinto adj +varismo varismo nom +variété variété nom +variò variare ver +varo varo nom +varranno valere ver +varrebbe valere ver +varrebbero valere ver +varreste valere ver +varrà valere ver +varrò valere ver +varî vario nom +varò varare ver +vasai vasaio nom +vasaio vasaio nom +vasale vasale adj +vasali vasale adj +vasari vasaro nom +vasaro vasaro nom +vasca vasca nom +vascelli vascello nom +vascello vascello nom +vasche vasca nom +vaschetta vaschetta nom +vaschette vaschetta nom +vascolare vascolare adj +vascolari vascolare adj +vascolarizzata vascolarizzato adj +vascolarizzate vascolarizzato adj +vascolarizzati vascolarizzato adj +vascolarizzato vascolarizzato adj +vascolarizzazione vascolarizzazione nom +vasectomia vasectomia nom +vasectomie vasectomia nom +vaselina vaselina nom +vaseline vaselina nom +vasellame vasellame nom +vasellami vasellame nom +vasi vaso nom +vasistas vasistas nom +vaso vaso nom +vasocostrittore vasocostrittore adj +vasocostrittori vasocostrittore adj +vasocostrittrice vasocostrittore adj +vasocostrittrici vasocostrittore adj +vasocostrizione vasocostrizione nom +vasodilatatore vasodilatatore adj +vasodilatatori vasodilatatore adj +vasodilatatrice vasodilatatore adj +vasodilatatrici vasodilatatore adj +vasodilatazione vasodilatazione nom +vasomotore vasomotore adj +vasomotori vasomotore|vasomotorio adj +vasomotoria vasomotorio adj +vasomotorie vasomotorio adj +vasomotorio vasomotorio adj +vassalla vassallo adj +vassallaggi vassallaggio nom +vassallaggio vassallaggio nom +vassalle vassallo adj +vassalli vassallo adj +vassallo vassallo adj +vassoi vassoio nom +vassoio vassoio nom +vasta vasto adj +vaste vasto adj +vasti vasto adj +vastissima vastissimo adj +vastissimo vastissimo adj +vastità vastità nom +vasto vasto adj +vate vate nom +vati vate nom +vaticana vaticano adj +vaticane vaticano adj +vaticani vaticano adj +vaticanista vaticanista nom +vaticanisti vaticanista nom +vaticano vaticano adj +vaticina vaticinare ver +vaticinando vaticinare ver +vaticinante vaticinare ver +vaticinare vaticinare ver +vaticinarono vaticinare ver +vaticinata vaticinare ver +vaticinato vaticinare ver +vaticinava vaticinare ver +vaticinavano vaticinare ver +vaticini vaticinio nom +vaticinio vaticinio nom +vaticino vaticinare ver +vaticinò vaticinare ver +vattelappesca vattelappesca int +vaudeville vaudeville nom +vavelo andare ver +ve ve pro +vecce veccia nom +vecchi vecchio adj +vecchia vecchio adj +vecchiaia vecchiaia nom +vecchiaie vecchiaia nom +vecchie vecchio adj +vecchierella vecchierello nom +vecchierelli vecchierello nom +vecchietta vecchietto nom +vecchiette vecchietto nom +vecchietti vecchietto nom +vecchietto vecchietto nom +vecchiezza vecchiezza nom +vecchio vecchio adj +vecchiotta vecchiotto adj +vecchiotte vecchiotto adj +vecchiotti vecchiotto adj +vecchiotto vecchiotto adj +vecchiume vecchiume nom +vecchiumi vecchiume nom +veccia veccia nom +vece vece nom +veci vece nom +veda vedere ver +vedano vedere ver +vedasi vedere ver +vede vedere ver +vedemmo vedere ver +vedendo vedere ver +vedendoci vedere ver +vedendola vedere ver +vedendole vedere ver +vedendoli vedere ver +vedendolo vedere ver +vedendomi vedere ver +vedendone vedere ver +vedendosela vedere ver +vedendoselo vedere ver +vedendosene vedere ver +vedendosi vedere ver +vedendoti vedere ver +vedendovi vedere ver +vedente vedente adj +vedenti vedente adj +veder vedere ver +vedercela vedere ver +vedercelo vedere ver +vederci vedere ver +vedere vedere ver +vedergli vedere ver +vederla vedere ver +vederle vedere ver +vederli vedere ver +vederlo vedere ver +vedermela vedere ver +vedermele vedere ver +vedermelo vedere ver +vedermi vedere ver +vederne vedere ver +vedersela vedere ver +vedersele vedere ver +vederseli vedere ver +vederselo vedere ver +vedersene vedere ver +vedersi vedere ver +vedertela vedere ver +vedertelo vedere ver +vederti vedere ver +vedervela vedere ver +vedervi vedere ver +vedesse vedere ver +vedessero vedere ver +vedessi vedere ver +vedessimo vedere ver +vedeste vedere ver +vedesti vedere ver +vedete vedere ver +vedetela vedere ver +vedetelo vedere ver +vedetevela vedere ver +vedetevi vedere ver +vedetta vedetta nom +vedette vedetta|vedette nom +vedeva vedere ver +vedevamo vedere ver +vedevano vedere ver +vedevi vedere ver +vedevo vedere ver +vedi vedere ver +vediamo vedere ver +vediamoci vedere ver +vediamola vedere ver +vediamole vedere ver +vediamoli vedere ver +vediamolo vedere ver +vediamone vedere ver +vediate vedere ver +vedici vedere ver +vedila vedere ver +vedili vedere ver +vedilo vedere ver +vedine vedere ver +veditela vedere ver +vediti vedere ver +vedo vedere ver +vedono vedere ver +vedova vedova|vedovo nom +vedovanza vedovanza nom +vedovati vedovare ver +vedovato vedovare ver +vedove vedova|vedovo nom +vedovi vedovo nom +vedovile vedovile adj +vedovili vedovile adj +vedovino vedovare ver +vedovo vedovo nom +vedrai vedere ver +vedranno vedere ver +vedrebbe vedere ver +vedrebbero vedere ver +vedrei vedere ver +vedremmo vedere ver +vedremo vedere ver +vedreste vedere ver +vedresti vedere ver +vedrete vedere ver +vedretta vedretta nom +vedrette vedretta nom +vedrà vedere ver +vedrò vedere ver +veduta veduta nom +vedute veduta nom +vedutismo vedutismo nom +vedutista vedutista nom +vedutisti vedutista nom +veemente veemente adj +veementi veemente adj +veemenza veemenza nom +vegeta vegeto adj +vegetaci vegetare ver +vegetale vegetale adj +vegetali vegetale adj +vegetando vegetare ver +vegetano vegetare ver +vegetante vegetare ver +vegetanti vegetare ver +vegetare vegetare ver +vegetariana vegetariano nom +vegetariane vegetariano nom +vegetariani vegetariano nom +vegetarianismo vegetarianismo nom +vegetariano vegetariano nom +vegetata vegetare ver +vegetate vegetare ver +vegetati vegetare ver +vegetativa vegetativo adj +vegetative vegetativo adj +vegetativi vegetativo adj +vegetativo vegetativo adj +vegetato vegetare ver +vegetava vegetare ver +vegetavano vegetare ver +vegetazione vegetazione nom +vegetazioni vegetazione nom +vegete vegeto adj +vegeti vegeto adj +vegetino vegetare ver +vegeto vegeto adj +vegetominerale vegetominerale adj +veggente veggente nom +veggenti veggente nom +veggenza veggenza nom +vegli vegliare ver +veglia veglia|veglio nom +vegliai vegliare ver +vegliamo vegliare ver +vegliando vegliare ver +vegliano vegliare ver +vegliante vegliare ver +veglianti vegliare ver +vegliar vegliare ver +vegliarda vegliardo nom +vegliarde vegliardo nom +vegliardi vegliardo nom +vegliardo vegliardo nom +vegliare vegliare ver +vegliarla vegliare ver +vegliarlo vegliare ver +vegliarono vegliare ver +vegliasse vegliare ver +vegliassero vegliare ver +vegliata vegliare ver +vegliate vegliare ver +vegliati vegliare ver +vegliato vegliare ver +vegliava vegliare ver +vegliavano vegliare ver +veglie veglia|veglio nom +veglieranno vegliare ver +veglierebbe vegliare ver +veglieremo vegliare ver +veglierà vegliare ver +veglino vegliare ver +veglio veglio nom +veglione veglione nom +veglioni veglione nom +veglionissimi veglionissimo nom +veglionissimo veglionissimo nom +vegliò vegliare ver +veh veh int +veicola veicolare ver +veicolando veicolare ver +veicolandola veicolare ver +veicolano veicolare ver +veicolante veicolare ver +veicolanti veicolare ver +veicolare veicolare adj +veicolari veicolare adj +veicolarli veicolare ver +veicolarlo veicolare ver +veicolarne veicolare ver +veicolata veicolare ver +veicolate veicolare ver +veicolati veicolare ver +veicolato veicolare ver +veicolava veicolare ver +veicolavano veicolare ver +veicolerebbe veicolare ver +veicolerà veicolare ver +veicoli veicolo nom +veicolino veicolare ver +veicolo veicolo nom +veicolò veicolare ver +veilleuse veilleuse nom +vela vela nom +velaccino velaccino nom +velaccio velaccio nom +velai velare ver +velame velame nom +velando velare ver +velano velare ver +velar velare ver +velare velare adj +velari velare adj +velario velario nom +velarizzazione velarizzazione nom +velarsi velare ver +velata velato adj +velatamente velatamente adv +velate velato adj +velatesi velare ver +velati velare ver +velato velare ver +velatura velatura nom +velature velatura nom +velava velare ver +velavano velare ver +velcro velcro nom +vele vela nom +veleggia veleggiare ver +veleggiando veleggiare ver +veleggiano veleggiare ver +veleggiante veleggiare ver +veleggianti veleggiare ver +veleggiare veleggiare ver +veleggiarono veleggiare ver +veleggiato veleggiare ver +veleggiatore veleggiatore nom +veleggiatori veleggiatore adj +veleggiava veleggiare ver +veleggiavano veleggiare ver +veleggio veleggiare ver +veleggiò veleggiare ver +veleni veleno nom +velenifera velenifero adj +velenifere velenifero adj +veleniferi velenifero adj +velenifero velenifero adj +veleno veleno nom +velenosa velenoso adj +velenose velenoso adj +velenosi velenoso adj +velenosità velenosità nom +velenoso velenoso adj +veletta veletta nom +velette veletta nom +veli velo nom +velia velia nom +velica velico adj +veliche velico adj +velici velico adj +velico velico adj +velie velia nom +veliera veliero adj +veliere veliero adj +velieri veliero adj +veliero veliero adj +velina velina adj +veline veline adj +velini velino nom +velino velino nom +velista velista nom +veliste velista nom +velisti velista nom +velite velite nom +veliti velite nom +velivoli velivolo nom +velivolo velivolo nom +velleitari velleitario adj +velleitaria velleitario adj +velleitarie velleitario adj +velleitario velleitario adj +velleitarismo velleitarismo nom +velleità velleità nom +velli vello nom +vello vello nom +velluta velluto adj +vellutata vellutato adj +vellutate vellutato adj +vellutati vellutato adj +vellutato vellutare ver +velluti velluto adj +vellutini vellutino nom +velluto velluto nom +velo velo nom +veloce veloce adj +velocemente velocemente adv +veloci veloce adj +velocipede velocipede nom +velocipedi velocipede nom +velocipedista velocipedista nom +velocipedisti velocipedista nom +velocipedistica velocipedistico adj +velocipedistiche velocipedistico adj +velocipedistico velocipedistico adj +velocista velocista nom +velociste velocista nom +velocisti velocista nom +velocità velocità nom +velodromi velodromo nom +velodromo velodromo nom +velours velours nom +veltri veltro nom +veltro veltro nom +velò velare ver +vena vena nom +venale venale adj +venali venale adj +venalità venalità nom +venando venare ver +venano venare ver +venanti venare ver +venar venare ver +venata venare ver +venate venare ver +venati venare ver +venato venare ver +venatori venatorio adj +venatoria venatorio adj +venatorie venatorio adj +venatorio venatorio adj +venatura venatura nom +venature venatura nom +venda vendere ver +vendano vendere ver +vende vendere ver +vendemmia vendemmia nom +vendemmiaio vendemmiaio nom +vendemmiale vendemmiare ver +vendemmiali vendemmiare ver +vendemmiano vendemmiare ver +vendemmiante vendemmiare ver +vendemmianti vendemmiare ver +vendemmiare vendemmiare ver +vendemmiata vendemmiare ver +vendemmiate vendemmiare ver +vendemmiati vendemmiare ver +vendemmiatore vendemmiatore nom +vendemmiatori vendemmiatore nom +vendemmiatrice vendemmiatore nom +vendemmiatrici vendemmiatore nom +vendemmie vendemmia nom +vendemmo vendere ver +vendendo vendere ver +vendendogli vendere ver +vendendola vendere ver +vendendole vendere ver +vendendoli vendere ver +vendendolo vendere ver +vendendone vendere ver +vendendosi vendere ver +vender vendere ver +venderai vendere ver +venderanno vendere ver +venderci vendere ver +vendere vendere ver +venderebbe vendere ver +venderebbero vendere ver +venderei vendere ver +venderemo vendere ver +venderesti vendere ver +vendergli vendere ver +vendergliela vendere ver +venderglieli vendere ver +venderglielo vendere ver +venderla vendere ver +venderle vendere ver +venderli vendere ver +venderlo vendere ver +vendermi vendere ver +venderne vendere ver +vendersi vendere ver +venderti vendere ver +vendervi vendere ver +venderà vendere ver +venderò vendere ver +vendesse vendere ver +vendessero vendere ver +vendessi vendere ver +vendessimo vendere ver +vendete vendere ver +vendeteci vendere ver +vendetelo vendere ver +vendetemi vendere ver +vendetta vendetta nom +vendette vendere ver +vendettero vendere ver +vendetti vendere ver +vendeuse vendeuse nom +vendeva vendere ver +vendevamo vendere ver +vendevano vendere ver +vendevo vendere ver +vendi vendere ver +vendiamo vendere ver +vendibile vendibile adj +vendibili vendibile adj +vendica vendicare ver +vendicai vendicare ver +vendicami vendicare ver +vendicammo vendicare ver +vendicando vendicare ver +vendicandola vendicare ver +vendicandolo vendicare ver +vendicandone vendicare ver +vendicandosi vendicare ver +vendicano vendicare ver +vendicar vendicare ver +vendicarci vendicare ver +vendicare vendicare ver +vendicarla vendicare ver +vendicarle vendicare ver +vendicarli vendicare ver +vendicarlo vendicare ver +vendicarmi vendicare ver +vendicarne vendicare ver +vendicarono vendicare ver +vendicarsene vendicare ver +vendicarsi vendicare ver +vendicarti vendicare ver +vendicarvi vendicare ver +vendicasse vendicare ver +vendicassero vendicare ver +vendicata vendicare ver +vendicate vendicare ver +vendicatemi vendicare ver +vendicati vendicare ver +vendicativa vendicativo adj +vendicative vendicativo adj +vendicativi vendicativo adj +vendicativo vendicativo adj +vendicato vendicare ver +vendicatore vendicatore nom +vendicatori vendicatore nom +vendicatrice vendicatore adj +vendicatrici vendicatore adj +vendicava vendicare ver +vendicavano vendicare ver +vendicherai vendicare ver +vendicheranno vendicare ver +vendicherebbe vendicare ver +vendicherebbero vendicare ver +vendicheremo vendicare ver +vendicherà vendicare ver +vendicherò vendicare ver +vendichi vendicare ver +vendico vendicare ver +vendicò vendicare ver +vendilo vendere ver +vendine vendere ver +vendita vendita nom +vendite vendita nom +venditi vendere ver +venditore venditore nom +venditori venditore nom +venditrice venditore nom +venditrici venditore adj +vendo vendere ver +vendono vendere ver +venduta vendere ver +vendute vendere ver +venduti vendere ver +venduto vendere ver +vene vena nom +venefici veneficio nom +veneficio veneficio nom +venendo venire ver +venendoci venire ver +venendogli venire ver +venendole venire ver +venendomi venire ver +venendone venire ver +venendosi venire ver +venendoti venire ver +venendovi venire ver +venera venerare ver +venerabile venerabile adj +venerabili venerabile adj +venerabilità venerabilità nom +veneraci venerare ver +veneranda venerando adj +venerande venerando adj +venerandi venerando adj +venerando venerando adj +venerandola venerare ver +venerandolo venerare ver +venerano venerare ver +venerante venerare ver +veneranti venerare ver +venerare venerare ver +venerarla venerare ver +venerarle venerare ver +venerarli venerare ver +venerarlo venerare ver +venerarne venerare ver +venerarono venerare ver +venerarti venerare ver +venerarvi venerare ver +venerasse venerare ver +venerassero venerare ver +venerata venerare ver +venerate venerare ver +venerati venerare ver +venerato venerare ver +venerava venerare ver +veneravano venerare ver +venerazione venerazione nom +venerazioni venerazione nom +venerdì venerdì nom +venere venere nom +venerea venereo adj +veneree venereo adj +venerei venereo adj +venereo venereo adj +venererà venerare ver +venererò venerare ver +veneri venere nom +veneriamo venerare ver +venerino venerare ver +venero venerare ver +venerò venare ver +veneta veneto adj +venete veneto adj +veneti veneto adj +veneto veneto adj +veneziana veneziano adj +veneziane veneziano adj +veneziani veneziano adj +veneziano veneziano adj +venezuelana venezuelano adj +venezuelane venezuelano adj +venezuelani venezuelano adj +venezuelano venezuelano adj +venga venire ver_sup +vengano venire ver_sup +vengo venire ver_sup +vengono venire ver_sup +veni venare ver +venia venia nom +veniale veniale adj +veniali veniale adj +veniamo venare|venire ver_sup +veniamoci venare|venire ver +veniamone venare|venire ver +veniate venare|venire ver +venie venia nom +venimmo venire ver +venino venare ver +venir venire ver +venirci venire ver +venire venire ver_sup +venirgli venire ver +venirla venire ver +venirle venire ver +venirli venire ver +venirlo venire ver +venirmelo venire ver +venirmi venire ver +venirne venire ver +venirsene venire ver +venirsi venire ver +venirti venire ver +venirvi venire ver +venisse venire ver +venissero venire ver_sup +venissi venire ver +venissimo venire ver +veniste venire ver +venisti venire ver +venite venire ver +veniteci venire ver +venitemelo venire ver +venitemi venire ver +venitevi venire ver +veniva venire ver +venivamo venire ver +venivano venire ver_sup +venivate venire ver +venivi venire ver +venivo venire ver +venne venire ver_sup +vennero venire ver +venni venire ver +veno venare ver +vent vent sw +ventagli ventaglio nom +ventaglia ventaglia nom +ventaglio ventaglio nom +ventata ventata nom +ventate ventata nom +ventennale ventennale adj +ventennali ventennale adj +ventenne ventenne adj +ventenni ventenne adj +ventennio ventennio nom +ventesima ventesimo adj +ventesimi ventesimo adj +ventesimo ventesimo adj +venti venti adj_sup +venticinque venticinque adj +venticinquesimo venticinquesimo adj +ventidue ventidue adj +ventila ventilare ver +ventilabri ventilabro nom +ventilabro ventilabro nom +ventilaci ventilare ver +ventilando ventilare ver +ventilandogli ventilare ver +ventilandole ventilare ver +ventilano ventilare ver +ventilante ventilare ver +ventilanti ventilare ver +ventilare ventilare ver +ventilarono ventilare ver +ventilata ventilare ver +ventilate ventilato adj +ventilati ventilato adj +ventilato ventilare ver +ventilatore ventilatore nom +ventilatori ventilatore nom +ventilatrici ventilatore adj +ventilava ventilare ver +ventilavano ventilare ver +ventilazione ventilazione nom +ventilazioni ventilazione nom +ventili ventilare ver +ventilo ventilare ver +ventilò ventilare ver +ventimila ventimila adj +ventina ventina nom +ventine ventina nom +ventini ventino nom +ventino ventino nom +ventinove ventinove adj +ventiquattresimo ventiquattresimo adj +ventiquattro ventiquattro adj +ventiquattrore ventiquattrore nom +ventisei ventisei adj +ventiseiesimo ventiseiesimo adj +ventisette ventisette adj +ventisettesimo ventisettesimo adj +ventitreesimo ventitreesimo adj +ventitré ventitré adj +vento vento nom +ventola ventola nom +ventole ventola nom +ventosa ventoso adj +ventose ventoso adj +ventosi ventoso adj +ventosità ventosità nom +ventoso ventoso adj +ventotto ventotto adj +ventrale ventrale adj +ventrali ventrale adj +ventre ventre nom +ventresca ventresca nom +ventresche ventresca nom +ventri ventre nom +ventricolare ventricolare adj +ventricolari ventricolare adj +ventricoli ventricolo nom +ventricolo ventricolo nom +ventrigli ventriglio nom +ventriglio ventriglio nom +ventriloqua ventriloquo nom +ventriloque ventriloquo nom +ventriloqui ventriloquio|ventriloquo nom +ventriloquio ventriloquio nom +ventriloquo ventriloquo nom +ventunesimo ventunesimo adj +ventuno ventuno adj +ventura venturo adj +venture ventura nom +venturi venturo adj +venturimetro venturimetro nom +venturo venturo adj +venturosa venturoso adj +venturoso venturoso adj +venula venula nom +venule venula nom +venusiana venusiano adj +venusiane venusiano adj +venusiani venusiano adj +venusiano venusiano adj +venusta venusto adj +venuste venusto adj +venusti venusto adj +venusto venusto adj +venustà venustà nom +venuta venire ver_sup +venutasi venire ver +venute venire ver +venutesi venire ver +venuti venire ver_sup +venutisi venire ver +venuto venire ver_sup +vera vero adj +verace verace adj +veraci verace adj +veracità veracità nom +veramente veramente adv_sup +veranda veranda nom +verande veranda nom +veratro veratro nom +verbale verbale adj +verbali verbale adj +verbalismo verbalismo nom +verbalizza verbalizzare ver +verbalizzando verbalizzare ver +verbalizzante verbalizzare ver +verbalizzare verbalizzare ver +verbalizzata verbalizzare ver +verbalizzate verbalizzare ver +verbalizzati verbalizzare ver +verbalizzato verbalizzare ver +verbalizzò verbalizzare ver +verbalmente verbalmente adv +verbasco verbasco nom +verbena verbena nom +verbenacee verbenacee nom +verbene verbena nom +verbi verbo nom +verbigrazia verbigrazia adv +verbo verbo nom +verbosa verboso adj +verbose verboso adj +verbosi verboso adj +verbosità verbosità nom +verboso verboso adj +vercellese vercellese adj +vercellesi vercellese adj +verdastra verdastro adj +verdastre verdastro adj +verdastri verdastro adj +verdastro verdastro adj +verdazzurri verdazzurro adj +verdazzurro verdazzurro adj +verde verde adj +verdeggia verdeggiare ver +verdeggiano verdeggiare ver +verdeggiante verdeggiante adj +verdeggianti verdeggiante adj +verdeggiar verdeggiare ver +verdeggiare verdeggiare ver +verdelli verdello nom +verdello verdello nom +verdemare verdemare adj +verderame verderame adj +verdesca verdesca nom +verdesche verdesca nom +verdetti verdetto nom +verdetto verdetto nom +verdi verde adj +verdicce verdiccio adj +verdicchi verdicchio nom +verdicchio verdicchio nom +verdicci verdiccio adj +verdiccio verdiccio adj +verdognola verdognolo adj +verdognole verdognolo adj +verdognoli verdognolo adj +verdognolo verdognolo adj +verdolina verdolino adj +verdoline verdolino adj +verdolini verdolino adj +verdolino verdolino adj +verdone verdone adj +verdoni verdone adj +verdura verdura nom +verdure verdura nom +vere vero adj +vereconda verecondo adj +verecondi verecondo adj +verecondia verecondia nom +verecondo verecondo adj +verga verga nom +vergai vergare ver +vergando vergare ver +vergano vergare ver +vergante vergare ver +verganti vergare ver +vergare vergare ver +vergata vergato adj +vergate vergata nom +vergati vergato adj +vergato vergato adj +vergatura vergatura nom +vergava vergare ver +vergella vergella nom +vergelle vergella nom +verghe verga nom +verginale verginale adj +vergine vergine nom +vergineo vergineo adj +vergini vergine adj +verginità verginità nom +vergo vergare ver +vergogna vergogna nom +vergognandomi vergognarsi ver +vergognandosene vergognarsi ver +vergognandosi vergognarsi ver +vergognano vergognarsi ver +vergognarci vergognarsi ver +vergognare vergognarsi ver +vergognarmene vergognarsi ver +vergognarmi vergognarsi ver +vergognarono vergognarsi ver +vergognarsene vergognarsi ver +vergognarsi vergognarsi ver +vergognarti vergognarsi ver +vergognarvi vergognarsi ver +vergognasse vergognarsi ver +vergognata vergognarsi ver +vergognate vergognarsi ver +vergognatevi vergognarsi ver +vergognati vergognarsi ver +vergognato vergognarsi ver +vergognava vergognarsi ver +vergognavano vergognarsi ver +vergognavo vergognarsi ver +vergogne vergogna nom +vergognerei vergognarsi ver +vergognerà vergognarsi ver +vergogni vergognarsi ver +vergogniamo vergognarsi ver +vergognino vergognarsi ver +vergogno vergognarsi ver +vergognosa vergognoso adj +vergognosamente vergognosamente adv +vergognose vergognoso adj +vergognosi vergognoso adj +vergognoso vergognoso adj +vergognò vergognarsi ver +vergò vergare ver +veri vero adj +veridica veridico adj +veridiche veridico adj +veridici veridico adj +veridicità veridicità nom +veridico veridico adj +verifica verificare ver +verificabile verificabile adj +verificabili verificabile adj +verificabilità verificabilità nom +verificaci verificare ver +verificai verificare ver +verificale verificare ver +verificalo verificare ver +verificando verificare ver +verificandoli verificare ver +verificandolo verificare ver +verificandone verificare ver +verificandosi verificare ver +verificano verificare ver +verificanti verificare ver +verificarci verificare ver +verificare verificare ver +verificarla verificare ver +verificarle verificare ver +verificarli verificare ver +verificarlo verificare ver +verificarne verificare ver +verificarono verificare ver +verificarsi verificare ver +verificasi verificare ver +verificasse verificare ver +verificassero verificare ver +verificassi verificare ver +verificaste verificare ver +verificata verificare ver +verificatasi verificare ver +verificate verificare ver +verificatesi verificare ver +verificati verificare ver +verificatisi verificare ver +verificato verificare ver +verificatore verificatore nom +verificatori verificatore nom +verificatosi verificare ver +verificatrice verificatore|verificatrice nom +verificava verificare ver +verificavano verificare ver +verificavo verificare ver +verificazione verificazione nom +verificazioni verificazione nom +verifiche verifica nom +verificheranno verificare ver +verificherebbe verificare ver +verificherebbero verificare ver +verificherei verificare ver +verificheremo verificare ver +verificherà verificare ver +verificherò verificare ver +verifichi verificare ver +verifichiamo verificare ver +verifichiamolo verificare ver +verifichino verificare ver +verifico verificare ver +verificò verificare ver +verisimiglianza verisimiglianza nom +verisimile verisimile adj +verisimili verisimile adj +verismi verismo nom +verismo verismo nom +verista verista adj +veriste verista adj +veristi verista adj +veristica veristico adj +veristiche veristico adj +veristici veristico adj +veristico veristico adj +veritiera veritiero adj +veritiere veritiero adj +veritieri veritiero adj +veritiero veritiero adj +verità verità nom +verla verla nom +verle verla nom +verme verme nom +vermeil vermeil nom +vermene vermena nom +vermi verme nom +vermicelli vermicello nom +vermicello vermicello nom +vermicolari vermicolare adj +vermiculite vermiculite nom +vermiculiti vermiculite nom +vermiforme vermiforme adj +vermiformi vermiforme adj +vermifuga vermifugo adj +vermifughi vermifugo nom +vermifugo vermifugo adj +vermigli vermiglio adj +vermiglia vermiglio adj +vermiglie vermiglio adj +vermiglio vermiglio adj +verminosa verminoso adj +verminoso verminoso adj +vermouth vermouth nom +vermut vermut nom +vernaccia vernaccia nom +vernacola vernacolo adj +vernacole vernacolo adj +vernacoli vernacolo nom +vernacolo vernacolo nom +vernice vernice nom +verniceranno verniciare ver +vernici vernice nom +vernicia verniciare ver +verniciando verniciare ver +verniciandoli verniciare ver +verniciano verniciare ver +verniciante verniciare ver +vernicianti verniciare ver +verniciare verniciare ver +verniciarla verniciare ver +verniciarle verniciare ver +verniciarono verniciare ver +verniciata verniciare ver +verniciate verniciare ver +verniciati verniciare ver +verniciato verniciare ver +verniciatore verniciatore nom +verniciatura verniciatura nom +verniciature verniciatura nom +verniciò verniciare ver +vernissage vernissage nom +vero vero adj +veronal veronal nom +verone verone nom +veronese veronese adj +veronesi veronese adj +verongia verongia nom +veroni verone nom +veronica veronica nom +veroniche veronica nom +verosimigliante verosimigliante adj +verosimiglianza verosimiglianza nom +verosimiglianze verosimiglianza nom +verosimile verosimile adj +verosimili verosimile adj +verosimilmente verosimilmente adv +verra verra sw +verrai venire ver +verranno venire ver_sup +verrebbe venire ver_sup +verrebbero venire ver +verrei venire ver +verremmo venire ver +verremo venire ver +verreste venire ver +verresti venire ver +verrete venire ver +verri verro nom +verricelli verricello nom +verricello verricello nom +verro verro nom_sup +verruca verruca nom +verruche verruca nom +verrucosa verrucoso adj +verrucose verrucoso adj +verrucosi verrucoso adj +verrucoso verrucoso adj +verrà venire ver_sup +verrò venire ver_sup +versa verso adj +versacci versaccio nom +versaccio versaccio nom +versaci versare ver +versagli versare ver +versai versare ver +versale versare ver +versamenti versamento nom +versamento versamento nom +versami versare ver +versammo versare ver +versando versare ver +versandoci versare ver +versandogli versare ver +versandola versare ver +versandole versare ver +versandoli versare ver +versandolo versare ver +versandone versare ver +versandosi versare ver +versandovi versare ver +versano versare ver +versante versante nom +versanti versante nom +versar versare ver +versarci versare ver +versare versare ver +versargli versare ver +versarglielo versare ver +versarla versare ver +versarle versare ver +versarli versare ver +versarlo versare ver +versarne versare ver +versarono versare ver +versarsi versare ver +versarvi versare ver +versasse versare ver +versassero versare ver +versata versare ver +versate versare ver +versategli versare ver +versatevi versare ver +versati versare ver +versatile versatile adj +versatili versatile adj +versatilità versatilità nom +versato versare ver +versava versare ver +versavano versare ver +verse verso adj +verseggiare verseggiare ver +verseggiate verseggiare ver +verseggiatore verseggiatore nom +verseggiatori verseggiatore nom +verseggiatura verseggiatura nom +verseggiò verseggiare ver +verseranno versare ver +verserebbe versare ver +verserebbero versare ver +verseremo versare ver +verserete versare ver +verserà versare ver +verserò versare ver +versetti versetto nom +versetto versetto nom +versi verso nom +versiamo versare ver +versiate versare ver +versiera versiera nom +versificare versificare ver +versificata versificare ver +versificato versificare ver +versificatore versificatore nom +versificatori versificatore nom +versificazione versificazione nom +versificazioni versificazione nom +versificò versificare ver +versino versare ver +versione versione nom +versioni versione nom +verso verso pre +versoi versoio nom +versoio versoio nom +versore versore nom +versori versore nom +versta versta nom +verste versta nom +versura versura nom +versure versura nom +versò versare ver +verta vertere ver +vertano vertere ver +verte vertere ver +vertebra vertebra nom +vertebrale vertebrale adj +vertebrali vertebrale adj +vertebrata vertebrato adj +vertebrate vertebrato adj +vertebrati vertebrati|vertebrato nom +vertebrato vertebrato nom +vertebre vertebra nom +vertendo vertere ver +vertente vertere ver +vertenti vertere ver +vertenza vertenza nom +vertenze vertenza nom +verter vertere ver +verteranno vertere ver +vertere vertere ver +verterà vertere ver +vertesse vertere ver +vertessero vertere ver +verteva vertere ver +vertevano vertere ver +verti vertere ver +verticale verticale adj +verticali verticale adj +verticalità verticalità nom +verticalmente verticalmente adv +vertice vertice nom +vertici vertice nom +verticillata verticillato adj +verticillate verticillato adj +verticillati verticillato adj +verticillato verticillato adj +verticilli verticillo nom +verticillo verticillo nom +verticismo verticismo nom +verticistico verticistico adj +vertigine vertigine nom +vertigini vertigine nom +vertiginosa vertiginoso adj +vertiginosamente vertiginosamente adv +vertiginose vertiginoso adj +vertiginosi vertiginoso adj +vertiginoso vertiginoso adj +vertigli vertere ver +vertine vertere ver +verto vertere ver +vertono vertere ver +veruna veruno adj +veruni veruno adj +veruno veruno adj +verve verve nom +verza verza nom +verze verza nom +verzellini verzellino nom +verzellino verzellino nom +verziere verziere nom +verzieri verziere nom +verzotti verzotto nom +verzotto verzotto nom +verzura verzura nom +verzure verzura nom +vesce vescia nom +vescia vescia nom +vescica vescica nom +vescicante vescicante adj +vescicanti vescicante adj +vescicatori vescicatorio adj +vescicatorie vescicatorio adj +vesciche vescica nom +vescicola vescicola nom +vescicolare vescicolare adj +vescicolari vescicolare adj +vescicole vescicola nom +vescovadi vescovado nom +vescovado vescovado nom +vescovi vescovo nom +vescovile vescovile adj +vescovili vescovile adj +vescovo vescovo nom +vespa vespa nom +vespai vespaio nom +vespaio vespaio nom +vespasiani vespasiano nom +vespasiano vespasiano nom +vespe vespa nom +vesperali vesperale adj +vesperi vespero nom +vespero vespero nom +vespertina vespertino adj +vespertine vespertino adj +vespertini vespertino adj +vespertino vespertino adj +vespista vespista nom +vespisti vespista nom +vespri vespro nom +vespro vespro nom +vessa vessare ver +vessando vessare ver +vessano vessare ver +vessante vessare ver +vessare vessare ver +vessarlo vessare ver +vessarmi vessare ver +vessata vessare ver +vessate vessare ver +vessati vessare ver +vessato vessare ver +vessatore vessatore nom +vessatori vessatore|vessatorio adj +vessatoria vessatorio adj +vessatorie vessatorio adj +vessatorio vessatorio adj +vessatrice vessatore adj +vessava vessare ver +vessavano vessare ver +vessazione vessazione nom +vessazioni vessazione nom +vessi vessare ver +vessilli vessillo nom +vessillifera vessillifero nom +vessillifere vessillifero nom +vessilliferi vessillifero nom +vessillifero vessillifero nom +vessillo vessillo nom +vesso vessare ver +vessò vessare ver +vesta vestire ver +vestaglia vestaglia nom +vestaglie vestaglia nom +vestaglietta vestaglietta nom +vestale vestale nom +vestali vestale nom +vestano vestire ver +veste veste nom +vestendo vestire ver +vestendola vestire ver +vestendole vestire ver +vestendoli vestire ver +vestendolo vestire ver +vestendone vestire ver +vestendosi vestire ver +vesti veste nom +vestiamo vestire ver +vestiari vestiario nom +vestiario vestiario nom +vestibolare vestibolare adj +vestibolari vestibolare adj +vestiboli vestibolo nom +vestibolo vestibolo nom +vestigi vestigio nom +vestigia vestigia nom +vestigio vestigio nom +vestii vestire ver +vestimenti vestimento nom +vestimento vestimento nom +vestina vestina nom +vestine vestina nom +vestir vestire ver +vestirai vestire ver +vestiranno vestire ver +vestirci vestire ver +vestire vestire ver +vestirebbe vestire ver +vestiremo vestire ver +vestirete vestire ver +vestiri vestire nom +vestirla vestire ver +vestirli vestire ver +vestirlo vestire ver +vestirmi vestire ver +vestirne vestire ver +vestirono vestire ver +vestirsi vestire ver +vestirti vestire ver +vestirvi vestire ver +vestirà vestire ver +vestirò vestire ver +vestisse vestire ver +vestissero vestire ver +vestisti vestire ver +vestita vestire ver +vestite vestire ver +vestiti vestito nom +vestito vestire ver +vestiva vestire ver +vestivamo vestire ver +vestivano vestire ver +vestivi vestire ver +vestivo vestire ver +vestizione vestizione nom +vestizioni vestizione nom +vesto vestire ver +vestono vestire ver +vestì vestire ver +vesuviana vesuviano adj +vesuviane vesuviano adj +vesuviani vesuviano adj +vesuviano vesuviano adj +veterana veterano adj +veterane veterano adj +veterani veterano nom +veterano veterano adj +veterinari veterinario adj +veterinaria veterinario adj +veterinarie veterinario adj +veterinario veterinario adj +veti veto nom +veto veto nom +vetrai vetraio nom +vetraio vetraio nom +vetrari vetrario adj +vetraria vetrario adj +vetrarie vetrario adj +vetrario vetrario adj +vetrata vetrata nom +vetrate vetrata nom +vetrati vetrato adj +vetrato vetrato adj +vetreria vetreria nom +vetrerie vetreria nom +vetri vetro nom +vetrice vetrice nom +vetrifica vetrificare ver +vetrificano vetrificare ver +vetrificante vetrificante nom +vetrificanti vetrificante adj +vetrificare vetrificare ver +vetrificata vetrificare ver +vetrificate vetrificare ver +vetrificati vetrificare ver +vetrificato vetrificare ver +vetrificazione vetrificazione nom +vetrina vetrina nom +vetrine vetrina nom +vetrini vetrino nom +vetrinista vetrinista nom +vetrinisti vetrinista nom +vetrinistica vetrinistica nom +vetrino vetrino nom +vetrioli vetriolo nom +vetriolo vetriolo nom +vetro vetro nom +vetrocemento vetrocemento nom +vetrofania vetrofania nom +vetrofanie vetrofania nom +vetrosa vetroso adj +vetrose vetroso adj +vetrosi vetroso adj +vetroso vetroso adj +vetta vetta nom +vette vetta nom +vettore vettore adj +vettori vettore adj +vettoriale vettoriale adj +vettoriali vettoriale adj +vettovaglia vettovaglia nom +vettovagliamenti vettovagliamento nom +vettovagliamento vettovagliamento nom +vettovagliare vettovagliare ver +vettovaglie vettovaglia nom +vettrice vettore adj +vettrici vettore adj +vettura vettura nom +vetturale vetturale nom +vetturali vetturale nom +vetture vettura nom +vetturetta vetturetta nom +vetturette vetturetta nom +vetturini vetturino nom +vetturino vetturino nom +vetusta vetusto adj +vetuste vetusto adj +vetusti vetusto adj +vetusto vetusto adj +vetustà vetustà nom +vezzeggia vezzeggiare ver +vezzeggiando vezzeggiare ver +vezzeggiano vezzeggiare ver +vezzeggiare vezzeggiare ver +vezzeggiata vezzeggiare ver +vezzeggiati vezzeggiare ver +vezzeggiativa vezzeggiativo adj +vezzeggiative vezzeggiativo adj +vezzeggiativi vezzeggiativo adj +vezzeggiativo vezzeggiativo adj +vezzeggiato vezzeggiare ver +vezzeggiava vezzeggiare ver +vezzi vezzo nom +vezzo vezzo nom +vezzosa vezzoso adj +vezzose vezzoso adj +vezzosi vezzoso adj +vezzoso vezzoso adj +vi vi adv_sup +via via nom +viabile viabile adj +viabili viabile adj +viabilistica viabilistico adj +viabilistiche viabilistico adj +viabilistici viabilistico adj +viabilistico viabilistico adj +viabilità viabilità nom +viadotti viadotto nom +viadotto viadotto nom +viaggerai viaggiare ver +viaggeranno viaggiare ver +viaggerebbe viaggiare ver +viaggerebbero viaggiare ver +viaggerà viaggiare ver +viaggerò viaggiare ver +viaggi viaggio nom +viaggia viaggiare ver +viaggiai viaggiare ver +viaggiamo viaggiare ver +viaggiando viaggiare ver +viaggiandoci viaggiare ver +viaggiandovi viaggiare ver +viaggiano viaggiare ver +viaggiante viaggiare ver +viaggianti viaggiare ver +viaggiar viaggiare ver +viaggiarci viaggiare ver +viaggiare viaggiare ver +viaggiarono viaggiare ver +viaggiarvi viaggiare ver +viaggiasse viaggiare ver +viaggiassero viaggiare ver +viaggiata viaggiare ver +viaggiate viaggiare ver +viaggiati viaggiare ver +viaggiato viaggiare ver +viaggiatore viaggiatore nom +viaggiatori viaggiatore adj +viaggiatrice viaggiatore nom +viaggiatrici viaggiatore adj +viaggiava viaggiare ver +viaggiavamo viaggiare ver +viaggiavano viaggiare ver +viaggiavo viaggiare ver +viaggino viaggiare ver +viaggio viaggio nom +viaggiò viaggiare ver +viale viale nom +viali viale nom +viandante viandante nom +viandanti viandante nom +viari viario adj +viaria viario adj +viarie viario adj +viario viario adj +viatico viatico nom +viavai viavai nom +vibra vibrare ver +vibraci vibrare ver +vibrafoni vibrafono nom +vibrafonista vibrafonista nom +vibrafonisti vibrafonista nom +vibrafono vibrafono nom +vibrai vibrare ver +vibrando vibrare ver +vibrano vibrare ver +vibrante vibrante adj +vibranti vibrante adj +vibrar vibrare ver +vibrare vibrare ver +vibrarono vibrare ver +vibrata vibrato adj +vibrate vibrato adj +vibrati vibrato adj +vibratile vibratile adj +vibratili vibratile adj +vibrato vibrato nom +vibratore vibratore nom +vibratori vibratore|vibratorio adj +vibratoria vibratorio adj +vibratorie vibratorio adj +vibratorio vibratorio adj +vibrava vibrare ver +vibravano vibrare ver +vibrazione vibrazione nom +vibrazioni vibrazione nom +vibreranno vibrare ver +vibrerà vibrare ver +vibri vibrare ver +vibrino vibrare ver +vibrione vibrione nom +vibrioni vibrione nom +vibrissa vibrissa nom +vibrisse vibrissa nom +vibro vibrare ver +vibrò vibrare ver +vicari vicario adj +vicaria vicaria|vicario nom +vicariante vicariante adj +vicarianti vicariante adj +vicariati vicariato nom +vicariato vicariato nom +vicarie vicario adj +vicario vicario adj +vice vice nom +viceammiragli viceammiraglio nom +viceammiraglio viceammiraglio nom +vicebrigadiere vicebrigadiere nom +vicecomitale vicecomitale adj +vicecomitali vicecomitale adj +vicedirettore vicedirettore nom +vicedirettori vicedirettore nom +vicedirettrice vicedirettore nom +vicenda vicenda nom +vicende vicenda nom +vicendevole vicendevole adj +vicendevoli vicendevole adj +vicendevolmente vicendevolmente adv +vicentina vicentino adj +vicentine vicentino adj +vicentini vicentino adj +vicentino vicentino adj +viceprefetti viceprefetto nom +viceprefetto viceprefetto nom +vicepreside vicepreside nom +vicepresidente vicepresidente nom +vicepresidentessa vicepresidente nom +vicepresidentesse vicepresidente nom +vicepresidenti vicepresidente nom +vicepresidenza vicepresidenza nom +vicepresidi vicepreside nom +vicereale vicereale adj +vicereali vicereale adj +vicereame vicereame nom +vicereami vicereame nom +viceregina viceregina nom +viceré viceré nom +vicesegretari vicesegretario nom +vicesegretaria vicesegretario nom +vicesegretario vicesegretario nom +vicesindaci vicesindaco nom +vicesindaco vicesindaco nom +viceversa viceversa adv_sup +vichi vico nom +vichinga vichingo adj +vichinghe vichingo adj +vichinghi vichingo nom +vichingo vichingo adj +vicina vicino adj +vicinale vicinale adj +vicinali vicinale adj +vicinanza vicinanza nom +vicinanze vicinanza nom +vicinati vicinato nom +vicinato vicinato nom +vicine vicino adj +vicini vicino adj +viciniore viciniore adj +viciniori viciniore adj +vicino vicino adj +vicissitudine vicissitudine nom +vicissitudini vicissitudine nom +vico vico nom +vicoli vicolo nom +vicolo vicolo nom +victoria victoria nom +victorie victoria nom +vide vedere ver +videi video nom +video video adj +videocassetta videocassetta nom +videocassette videocassetta nom +videocitofoni videocitofono nom +videocitofono videocitofono nom +videoclip videoclip nom +videodischi videodisco nom +videodisco videodisco nom +videofono videofono nom +videogame videogame nom +videogames videogame nom +videogiochi videogioco nom +videogioco videogioco nom +videomusic videomusic nom +videonastri videonastro nom +videonastro videonastro nom +videoregistratore videoregistratore nom +videoregistratori videoregistratore nom +videotape videotape nom +videoteca videoteca nom +videoteche videoteca nom +videotel videotel nom +videotelefoni videotelefono nom +videotelefonia videotelefonia nom +videotelefono videotelefono nom +videoterminale videoterminale nom +videoterminali videoterminale nom +videotex videotex nom +videro vedere ver +vidi vedere ver +vidicon vidicon nom +vidiconoscopio vidiconoscopio nom +vidigrafi vidigrafo nom +vidigrafo vidigrafo nom +vidima vidimare ver +vidimar vidimare ver +vidimare vidimare ver +vidimata vidimare ver +vidimate vidimare ver +vidimati vidimare ver +vidimato vidimare ver +vidimazione vidimazione nom +vidimo vidimare ver +vie via nom +viene venire ver_sup +vieni venire ver +vienici venire ver +vienimi venire ver +viennese viennese adj +viennesi viennese adj +viepiù viepiù adv +vieppiù vieppiù adv +vieta vietare ver +vietando vietare ver +vietandogli vietare ver +vietandole vietare ver +vietandoli vietare ver +vietandolo vietare ver +vietandone vietare ver +vietano vietare ver +vietarcelo vietare ver +vietarci vietare ver +vietare vietare ver +vietargli vietare ver +vietarla vietare ver +vietarle vietare ver +vietarli vietare ver +vietarlo vietare ver +vietarmi vietare ver +vietarne vietare ver +vietarono vietare ver +vietarsi vietare ver +vietartelo vietare ver +vietasse vietare ver +vietassero vietare ver +vietassimo vietare ver +vietata vietare ver +vietate vietare ver +vietati vietare ver +vietato vietare ver +vietava vietare ver +vietavano vietare ver +viete vieto adj +vieteranno vietare ver +vieterebbe vietare ver +vieterei vietare ver +vieterà vietare ver +vieti vietare ver +vietiamo vietare ver +vietino vietare ver +vietnamita vietnamita adj +vietnamite vietnamita adj +vietnamiti vietnamita adj +vieto vieto adj +vietò vietare ver +viga vigere ver +vigano vigere ver +vige vigere ver +vigendo vigere ver +vigente vigente adj +vigenti vigente adj +viger vigere ver +vigere vigere ver +vigerebbe vigere ver +vigerà vigere ver +vigesima vigesimo adj +vigesimi vigesimo adj +vigesimo vigesimo adj +vigesse vigere ver +vigessero vigere ver +vigeva vigere ver +vigevano vigere ver +vigila vigilare ver +vigilando vigilare ver +vigilano vigilare ver +vigilante vigilante nom +vigilanti vigilante nom +vigilanza vigilanza nom +vigilanze vigilanza nom +vigilar vigilare ver +vigilare vigilare ver +vigilarlo vigilare ver +vigilarono vigilare ver +vigilasse vigilare ver +vigilata vigilato adj +vigilate vigilare ver +vigilati vigilare ver +vigilato vigilare ver +vigilatore vigilatore nom +vigilatori vigilatore nom +vigilatrice vigilatore|vigilatrice nom +vigilatrici vigilatore|vigilatrice nom +vigilava vigilare ver +vigilavano vigilare ver +vigile vigile adj +vigileranno vigilare ver +vigilerà vigilare ver +vigilessa vigile nom +vigilesse vigile nom +vigili vigile nom +vigilia vigilia nom +vigiliamo vigilare ver +vigilie vigilia nom +vigilo vigilare ver +vigilò vigilare ver +vigliacca vigliacco adj +vigliacche vigliacco adj +vigliaccheria vigliaccheria nom +vigliaccherie vigliaccheria nom +vigliacchi vigliacco nom +vigliacco vigliacco adj +vigna vigna nom +vignaiole vignaiolo nom +vignaioli vignaiolo nom +vignaiolo vignaiolo nom +vigne vigna nom +vigneti vigneto nom +vigneto vigneto nom +vignetta vignetta nom +vignette vignetta nom +vignettista vignettista nom +vignettisti vignettista nom +vigogna vigogna nom +vigogne vigogna nom +vigono vigere ver +vigore vigore nom +vigori vigore nom +vigoria vigoria nom +vigorosa vigoroso adj +vigorosamente vigorosamente adv +vigorose vigoroso adj +vigorosi vigoroso adj +vigoroso vigoroso adj +viii viii num +vile vile adj +vili vile adj +vilipendano vilipendere ver +vilipende vilipendere ver +vilipendere vilipendere ver +vilipendi vilipendio nom +vilipendio vilipendio nom +vilipesa vilipendere ver +vilipesi vilipendere ver +vilipeso vilipendere ver +villa villa nom +villaggi villaggio nom +villaggio villaggio nom +villana villano adj +villane villano adj +villanella villanella nom +villanelle villanella nom +villani villano adj +villania villania nom +villanie villania nom +villano villano adj +villanoviana villanoviano adj +villanoviane villanoviano adj +villanoviani villanoviano adj +villanoviano villanoviano adj +ville villa nom +villeggi villeggiare ver +villeggiando villeggiare ver +villeggiano villeggiare ver +villeggiante villeggiante nom +villeggianti villeggiante nom +villeggiare villeggiare ver +villeggiarvi villeggiare ver +villeggiatura villeggiatura nom +villeggiature villeggiatura nom +villeggiava villeggiare ver +villeggiavano villeggiare ver +villeggio villeggiare ver +villeggiò villeggiare ver +villerecci villereccio adj +villereccia villereccio adj +villereccio villereccio adj +villetta villetta nom +villette villetta nom +villi villo nom +villini villino nom +villino villino nom +villo villo nom +villosa villoso adj +villose villoso adj +villosi villoso adj +villosità villosità nom +villoso villoso adj +villotta villotta nom +villotte villotta nom +viltà viltà nom +vilucchio vilucchio nom +viluppi viluppo nom +viluppo viluppo nom +vimine vimine nom +vimini vimine nom +vinacce vinaccia nom +vinaccia vinaccia nom +vinaccioli vinacciolo nom +vinacciolo vinacciolo nom +vinai vinaio nom +vinaia vinaio nom +vinaio vinaio nom +vinari vinario adj +vinaria vinario adj +vinarie vinario adj +vinario vinario adj +vinavil vinavil nom +vinca vincere ver +vincano vincere ver +vince vincere ver +vincemmo vincere ver +vincendo vincere ver +vincendogli vincere ver +vincendola vincere ver +vincendole vincere ver +vincendoli vincere ver +vincendolo vincere ver +vincendone vincere ver +vincendovi vincere ver +vincente vincente adj +vincenti vincente adj +vincer vincere ver +vincerai vincere ver +vinceranno vincere ver +vincere vincere ver +vincerebbe vincere ver +vincerebbero vincere ver +vincerei vincere ver +vinceremmo vincere ver +vinceremo vincere ver +vinceresti vincere ver +vincerete vincere ver +vincergli vincere ver +vincerla vincere ver +vincerle vincere ver +vincerli vincere ver +vincerlo vincere ver +vincermi vincere ver +vincerne vincere ver +vincersi vincere ver +vincerà vincere ver +vincerò vincere ver +vincesse vincere ver +vincessero vincere ver +vincessi vincere ver +vinceste vincere ver +vincesti vincere ver +vincete vincere ver +vinceva vincere ver +vincevano vincere ver +vincevo vincere ver +vincheto vincheto nom +vinchi vinco nom +vinci vincere ver +vinciamo vincere ver +vinciamole vincere ver +vinciate vincere ver +vincibile vincibile adj +vincita vincita nom +vincite vincita nom +vincitore vincitore adj +vincitori vincitore nom +vincitrice vincitore adj +vincitrici vincitore adj +vinco vinco nom +vincola vincolare ver +vincolando vincolare ver +vincolandola vincolare ver +vincolandoli vincolare ver +vincolandolo vincolare ver +vincolandosi vincolare ver +vincolano vincolare ver +vincolante vincolante adj +vincolanti vincolante adj +vincolare vincolare ver +vincolari vincolare adj +vincolarla vincolare ver +vincolarli vincolare ver +vincolarlo vincolare ver +vincolarono vincolare ver +vincolarsi vincolare ver +vincolasse vincolare ver +vincolassero vincolare ver +vincolata vincolare ver +vincolate vincolare ver +vincolati vincolare ver +vincolato vincolare ver +vincolava vincolare ver +vincolavano vincolare ver +vincolerebbe vincolare ver +vincolerebbero vincolare ver +vincolerà vincolare ver +vincoli vincolo nom +vincolino vincolare ver +vincolistica vincolistico adj +vincolistiche vincolistico adj +vincolistico vincolistico adj +vincolo vincolo nom +vincolò vincolare ver +vincono vincere ver +vindice vindice adj +vindici vindice adj +vinelli vinello nom +vinello vinello nom +vini vino nom +vinicola vinicolo adj +vinicole vinicolo adj +vinicoli vinicolo adj +vinicolo vinicolo adj +vinifica vinificare ver +vinificandolo vinificare ver +vinificano vinificare ver +vinificare vinificare ver +vinificata vinificare ver +vinificate vinificare ver +vinificati vinificare ver +vinificato vinificare ver +vinificazione vinificazione nom +vinificazioni vinificazione nom +vinile vinile nom +vinili vinile nom +vinilica vinilico adj +viniliche vinilico adj +vinilici vinilico adj +vinilico vinilico adj +vino vino nom +vinosa vinoso adj +vinose vinoso adj +vinosi vinoso adj +vinoso vinoso adj +vinsanti vinsanto nom +vinsanto vinsanto nom +vinse vincere ver +vinsero vincere ver +vinsi vincere ver +vinta vincere ver +vinte vinto adj +vinti vinto adj +vinto vincere ver +viola viola adj +violacciocca violacciocca nom +violacciocche violacciocca nom +violacea violaceo adj +violacee violaceo adj +violacei violaceo adj +violaceo violaceo adj +violaci violare ver +violando violare ver +violandone violare ver +violano violare ver +violante violare ver +violanti violare ver +violar violare ver +violare violare ver +violarla violare ver +violarle violare ver +violarli violare ver +violarlo violare ver +violarne violare ver +violarono violare ver +violasse violare ver +violassero violare ver +violassi violare ver +violata violare ver +violate violare ver +violati violare ver +violato violare ver +violava violare ver +violavano violare ver +violavo violare ver +violazione violazione nom +violazioni violazione nom +viole viola nom +violenta violento adj +violentami violentare ver +violentando violentare ver +violentandola violentare ver +violentandole violentare ver +violentandolo violentare ver +violentandone violentare ver +violentano violentare ver +violentare violentare ver +violentarla violentare ver +violentarle violentare ver +violentarli violentare ver +violentarlo violentare ver +violentarne violentare ver +violentarono violentare ver +violentarsi violentare ver +violentasse violentare ver +violentata violentare ver +violentate violentare ver +violentati violentare ver +violentato violentare ver +violentatori violentatore nom +violentava violentare ver +violentavano violentare ver +violente violento adj +violenterà violentare ver +violenti violento adj +violento violento adj +violentò violentare ver +violenza violenza nom +violenze violenza nom +violeranno violare ver +violerebbe violare ver +violerebbero violare ver +violerei violare ver +violeremmo violare ver +violeresti violare ver +violerà violare ver +violetta violetto adj +violette violetto adj +violetti violetto adj +violetto violetto adj +violi violare ver +violiamo violare ver +violini violino nom +violinista violinista nom +violiniste violinista nom +violinisti violinista nom +violinistica violinistico adj +violinistiche violinistico adj +violinistici violinistico adj +violinistico violinistico adj +violino violino nom +violista violista nom +violisti violista nom +violo violare ver +violoncelli violoncello nom +violoncellista violoncellista nom +violoncelliste violoncellista nom +violoncellisti violoncellista nom +violoncello violoncello nom +violò violare ver +viottola viottola nom +viottole viottola nom +viottoli viottolo nom +viottolo viottolo nom +vip vip nom +vipera vipera nom +vipere vipera nom +viperina viperino adj +viperini viperino adj +viperino viperino adj +vira virare ver +viraggi viraggio nom +viraggio viraggio nom +virago virago nom +virale virale adj +virali virale adj +virando virare ver +virano virare ver +virante virare ver +viranti virare ver +virar virare ver +virare virare ver +virarono virare ver +virasse virare ver +virata virata nom +virate virata nom +virati virare ver +virato virare ver +virava virare ver +viravamo virare ver +viravano virare ver +virente virente adj +virerà virare ver +virginale virginale adj +virginali virginale adj +virginea virgineo adj +virginei virgineo adj +virgineo virgineo adj +virginia virginia nom +virginità virginità nom +virgola virgola nom +virgole virgola nom +virgoletta virgoletta nom +virgolettando virgolettare ver +virgolettare virgolettare ver +virgolettarlo virgolettare ver +virgolettata virgolettare ver +virgolettate virgolettare ver +virgolettati virgolettare ver +virgolettato virgolettare ver +virgolette virgoletta nom +virgoletti virgolettare ver +virgoletto virgolettare ver +virgulti virgulto nom +virgulto virgulto nom +viri virare ver +viriate virare ver +virile virile adj +virili virile adj +virilismo virilismo nom +virilità virilità nom +virilizzanti virilizzare ver +virino virare ver +viro virare ver +virologia virologia nom +virologie virologia nom +virosi virosi nom +virtuale virtuale adj +virtuali virtuale adj +virtualità virtualità nom +virtualmente virtualmente adv +virtuosa virtuoso adj +virtuose virtuoso adj +virtuosi virtuoso adj +virtuosismi virtuosismo nom +virtuosismo virtuosismo nom +virtuosità virtuosità nom +virtuoso virtuoso adj +virtù virtù nom +virulenta virulento adj +virulente virulento adj +virulenti virulento adj +virulento virulento adj +virulenza virulenza nom +virus virus nom +virò virare ver +visagista visagista nom +viscerale viscerale adj +viscerali viscerale adj +viscere viscere nom +visceri viscere nom +vischi vischio nom +vischio vischio nom +vischiosa vischioso adj +vischiose vischioso adj +vischiosi vischioso adj +vischiosità vischiosità nom +vischioso vischioso adj +viscida viscido adj +viscide viscido adj +viscidi viscido adj +viscido viscido adj +viscidume viscidume nom +visciola visciola nom +visciole visciola nom +viscioli visciolo nom +visciolo visciolo nom +visconte visconte nom +viscontea visconteo adj +viscontee visconteo adj +viscontei visconteo adj +visconteo visconteo adj +viscontessa visconte|viscontessa nom +visconti visconte nom +viscosa viscoso adj +viscose viscoso adj +viscosi viscoso adj +viscosimetri viscosimetro nom +viscosimetro viscosimetro nom +viscosità viscosità nom +viscoso viscoso adj +visetti visetto nom +visetto visetto nom +visi viso nom +visibile visibile adj +visibili visibile adj +visibilio visibilio nom +visibilità visibilità nom +visibilmente visibilmente adv +visiera visiera nom +visiere visiera nom +visiona visionare ver +visionando visionare ver +visionandola visionare ver +visionano visionare ver +visionare visionare ver +visionari visionario adj +visionaria visionario adj +visionarie visionario adj +visionario visionario adj +visionarla visionare ver +visionarle visionare ver +visionarli visionare ver +visionarlo visionare ver +visionarne visionare ver +visionarono visionare ver +visionassero visionare ver +visionata visionare ver +visionate visionare ver +visionati visionare ver +visionato visionare ver +visionava visionare ver +visionavano visionare ver +visione visione nom +visionerò visionare ver +visioni visione nom +visiono visionare ver +visionò visionare ver +visir visir nom +visita visita nom +visitaci visitare ver +visitai visitare ver +visitali visitare ver +visitando visitare ver +visitandola visitare ver +visitandole visitare ver +visitandoli visitare ver +visitandolo visitare ver +visitandone visitare ver +visitano visitare ver +visitante visitare ver +visitanti visitare ver +visitar visitare ver +visitarci visitare ver +visitare visitare ver +visitarla visitare ver +visitarle visitare ver +visitarli visitare ver +visitarlo visitare ver +visitarmi visitare ver +visitarne visitare ver +visitarono visitare ver +visitarsi visitare ver +visitarvi visitare ver +visitasse visitare ver +visitassero visitare ver +visitassi visitare ver +visitata visitare ver +visitate visitare ver +visitateci visitare ver +visitatelo visitare ver +visitati visitare ver +visitato visitare ver +visitatore visitatore nom +visitatori visitatore nom +visitatrice visitatore nom +visitatrici visitatore nom +visitava visitare ver +visitavano visitare ver +visitavi visitare ver +visitavo visitare ver +visitazione visitazione nom +visitazioni visitazione nom +visite visita nom +visiterai visitare ver +visiteranno visitare ver +visiterebbe visitare ver +visiteremo visitare ver +visiterete visitare ver +visiterà visitare ver +visiterò visitare ver +visiti visitare ver +visitiamo visitare ver +visitino visitare ver +visito visitare ver +visitò visitare ver +visiva visivo adj +visive visivo adj +visivi visivo adj +visivo visivo adj +viso viso nom +visone visone nom +visoni visone nom +visore visore nom +visori visore nom +vispa vispo adj +vispe vispo adj +vispi vispo adj +vispo vispo adj +visse vivere ver +vissero vivere ver +vissi vivere ver +vissuta vivere ver +vissute vivere ver +vissuti vivere ver +vissuto vivere ver +vista vista nom +vistando vistare ver +vistane vistare ver +vistare vistare ver +vistarla vistare ver +vistasi vistare ver +vistata vistare ver +vistati vistare ver +vistato vistare ver +viste vedere ver +visti vedere ver +visto visto con +vistosa vistoso adj +vistose vistoso adj +vistosi vistoso adj +vistosità vistosità nom +vistoso vistoso adj +vistò vistare ver +visuale visuale adj +visuali visuale adj +visualizza visualizzare ver +visualizzando visualizzare ver +visualizzandola visualizzare ver +visualizzandole visualizzare ver +visualizzandoli visualizzare ver +visualizzandolo visualizzare ver +visualizzandone visualizzare ver +visualizzano visualizzare ver +visualizzante visualizzare ver +visualizzare visualizzare ver +visualizzarla visualizzare ver +visualizzarle visualizzare ver +visualizzarli visualizzare ver +visualizzarlo visualizzare ver +visualizzarne visualizzare ver +visualizzarsi visualizzare ver +visualizzasse visualizzare ver +visualizzata visualizzare ver +visualizzate visualizzare ver +visualizzati visualizzare ver +visualizzato visualizzare ver +visualizzatore visualizzatore nom +visualizzatori visualizzatore nom +visualizzava visualizzare ver +visualizzavano visualizzare ver +visualizzavo visualizzare ver +visualizzazione visualizzazione nom +visualizzazioni visualizzazione nom +visualizzeranno visualizzare ver +visualizzerebbe visualizzare ver +visualizzeremo visualizzare ver +visualizzerà visualizzare ver +visualizzi visualizzare ver +visualizziamo visualizzare ver +visualizzino visualizzare ver +visualizzo visualizzare ver +visualizzò visualizzare ver +visus visus nom +vita vita nom +vitacee vitacee nom +vitaioli vitaiolo nom +vitalba vitalba nom +vitalbe vitalba nom +vitale vitale adj +vitali vitale adj +vitalità vitalità nom +vitalizi vitalizio adj +vitalizia vitalizio adj +vitalizie vitalizio adj +vitalizio vitalizio nom +vitamina vitamina nom +vitamine vitamina nom +vitaminica vitaminico adj +vitaminiche vitaminico adj +vitaminici vitaminico adj +vitaminico vitaminico adj +vitaminizzanti vitaminizzare ver +vitaminizzata vitaminizzare ver +vitaminizzate vitaminizzare ver +vitaminizzato vitaminizzare ver +vitata vitato adj +vitate vitato adj +vitati vitato adj +vitato vitato adj +vite vita|vite nom +vitella vitella|vitello nom +vitelle vitella|vitello nom +vitelli vitello nom +vitellina vitellino adj +vitelline vitellino adj +vitellini vitellino adj +vitellino vitellino adj +vitello vitello nom +vitellone vitellone nom +vitelloni vitellone nom +viti vite nom +viticci viticcio nom +viticcio viticcio nom +viticola viticolo adj +viticole viticolo adj +viticoli viticolo adj +viticolo viticolo adj +viticoltore viticoltore nom +viticoltori viticoltore nom +viticoltrice viticoltore nom +viticoltura viticoltura nom +vitigni vitigno nom +vitigno vitigno nom +vitiligine vitiligine nom +vitivinicola vitivinicolo adj +vitivinicole vitivinicolo adj +vitivinicoli vitivinicolo adj +vitivinicolo vitivinicolo adj +vitrea vitreo adj +vitree vitreo adj +vitrei vitreo adj +vitreo vitreo adj +vitro vitro nom +vitti vitto nom +vittima vittima nom +vittime vittima nom +vittimismi vittimismo nom +vittimismo vittimismo nom +vitto vitto nom +vittoria vittoria nom +vittoriana vittoriano adj +vittorie vittoria nom +vittoriosa vittorioso adj +vittoriose vittorioso adj +vittoriosi vittorioso adj +vittorioso vittorioso adj +vitupera vituperare ver +vituperata vituperare ver +vituperate vituperare ver +vituperati vituperare ver +vituperato vituperare ver +vituperi vituperio nom +vituperio vituperio nom +vituperosa vituperoso adj +vituperose vituperoso adj +vituperoso vituperoso adj +viuzza viuzza nom +viuzze viuzza nom +viva vivo adj +vivacchia vivacchiare ver +vivacchiano vivacchiare ver +vivacchiare vivacchiare ver +vivacchiava vivacchiare ver +vivacchiò vivacchiare ver +vivace vivace adj +vivaci vivace adj +vivacità vivacità nom +vivacizza vivacizzare ver +vivacizzando vivacizzare ver +vivacizzano vivacizzare ver +vivacizzare vivacizzare ver +vivacizzarono vivacizzare ver +vivacizzata vivacizzare ver +vivacizzate vivacizzare ver +vivacizzati vivacizzare ver +vivacizzato vivacizzare ver +vivacizzavano vivacizzare ver +vivagno vivagno nom +vivai vivaio nom +vivaio vivaio nom +vivaista vivaista nom +vivaisti vivaista nom +vivamente vivamente adv +vivanda vivanda nom +vivande vivanda nom +vivandiera vivandiere nom +vivandiere vivandiere nom +vivandieri vivandiere nom +vivano vivere ver +vive vivo adj +vivemmo vivere ver +vivendo vivere ver +vivendoci vivere ver +vivendola vivere ver +vivendole vivere ver +vivendoli vivere ver +vivendolo vivere ver +vivendone vivere ver +vivendovi vivere ver +vivente vivente adj +viventi vivente adj +viver vivere ver +viverci vivere ver +vivere vivere ver +vivergli vivere ver +viveri viveri nom +viverla vivere ver +viverle vivere ver +viverli vivere ver +viverlo vivere ver +vivermi vivere ver +viverne vivere ver +viverra viverra nom +viverre viverra nom +viversi vivere ver +vivervi vivere ver +vivesse vivere ver +vivessero vivere ver +vivessi vivere ver +vivessimo vivere ver +vivesti vivere ver +vivete vivere ver +viveur viveur nom +viveva vivere ver +vivevamo vivere ver +vivevano vivere ver +vivevate vivere ver +vivevo vivere ver +vivezza vivezza nom +vivi vivo adj +viviamo vivere ver +vivibile vivibile adj +vivibili vivibile adj +vivida vivido adj +vivide vivido adj +vividi vivido adj +vivido vivido adj +vivifica vivificare ver +vivificando vivificare ver +vivificandolo vivificare ver +vivificano vivificare ver +vivificante vivificare ver +vivificanti vivificare ver +vivificare vivificare ver +vivificarsi vivificare ver +vivificata vivificare ver +vivificati vivificare ver +vivificato vivificare ver +vivificatore vivificatore adj +vivificatori vivificatore adj +vivificatrice vivificatore adj +vivificazione vivificazione nom +vivifico vivificare ver +vivificò vivificare ver +vivila vivere ver +vivilo vivere ver +vivimi vivere ver +vivipara viviparo adj +vivipare viviparo adj +vivipari viviparo adj +viviparo viviparo adj +viviseziona vivisezionare ver +vivisezionando vivisezionare ver +vivisezionare vivisezionare ver +vivisezionarli vivisezionare ver +vivisezionati vivisezionare ver +vivisezionato vivisezionare ver +vivisezione vivisezione nom +vivisezioni vivisezione nom +vivo vivo nom +vivono vivere ver +vivrai vivere ver +vivranno vivere ver +vivrebbe vivere ver +vivrebbero vivere ver +vivrei vivere ver +vivremmo vivere ver +vivremo vivere ver +vivreste vivere ver +vivresti vivere ver +vivrete vivere ver +vivrà vivere ver +vivrò vivere ver +vizi vizio nom +vizia viziare ver +vizialo viziare ver +viziando viziare ver +viziano viziare ver +viziare viziare ver +viziarli viziare ver +viziarlo viziare ver +viziarono viziare ver +viziata viziato adj +viziate viziare ver +viziati viziato adj +viziato viziare ver +viziavano viziare ver +vizio vizio nom +viziosa vizioso adj +viziose vizioso adj +viziosi vizioso adj +viziosità viziosità nom +vizioso vizioso adj +viziò viziare ver +vizza vizzo adj +vizze vizzo adj +vizzi vizzo adj +vizzo vizzo adj +vocabolari vocabolario nom +vocabolario vocabolario nom +vocabolaristi vocabolarista nom +vocaboli vocabolo nom +vocabolo vocabolo nom +vocale vocale adj +vocali vocale adj +vocalica vocalico adj +vocaliche vocalico adj +vocalici vocalico adj +vocalico vocalico adj +vocalismi vocalismo nom +vocalismo vocalismo nom +vocalist vocalist nom +vocalità vocalità nom +vocalizza vocalizzare ver +vocalizzando vocalizzare ver +vocalizzano vocalizzare ver +vocalizzante vocalizzare ver +vocalizzare vocalizzare ver +vocalizzarsi vocalizzare ver +vocalizzata vocalizzare ver +vocalizzate vocalizzare ver +vocalizzati vocalizzare ver +vocalizzato vocalizzare ver +vocalizzazione vocalizzazione nom +vocalizzazioni vocalizzazione nom +vocalizzi vocalizzo nom +vocalizzo vocalizzo nom +vocate vocato adj +vocati vocato adj +vocativa vocativo adj +vocative vocativo adj +vocativi vocativo nom +vocativo vocativo adj +vocazione vocazione nom +vocazioni vocazione nom +voce voce nom +voci voce|vocio nom +vociando vociare ver +vociano vociare ver +vociante vociare ver +vocianti vociare ver +vociar vociare ver +vociare vociare nom +vocifera vociferare ver +vociferano vociferare ver +vociferare vociferare ver +vociferata vociferare ver +vociferato vociferare ver +vociferava vociferare ver +vociferavano vociferare ver +vociferazioni vociferazione nom +vociferi vociferare ver +vocifero vociferare ver +vociferò vociferare ver +vocino vociare ver +vocio vocio nom +vodka vodka nom +voga voga nom +vogala vogare ver +vogando vogare ver +vogano vogare ver +vogante vogare ver +voganti vogare ver +vogar vogare ver +vogare vogare ver +vogata vogare ver +vogatore vogatore nom +vogatori vogatore nom +vogava vogare ver +vogavano vogare ver +voghe voga nom +voglia volere ver +vogliamo volere ver_sup +vogliamoci volere ver +vogliano volere ver +vogliate volere ver +vogliatemene volere ver +vogliatemi volere ver +vogliatene volere ver +voglie voglia nom +voglio volere ver_sup +vogliono volere ver_sup +vogliosa voglioso adj +vogliose voglioso adj +vogliosi voglioso adj +voglioso voglioso adj +vogo vogare ver +voi voi nom_sup +voialtri voialtri pro +voile voile nom +voivoda voivoda nom +voivodi voivoda nom +voivodina voivodina nom +vola volare ver +volai volare ver +volami volare ver +volammo volare ver +volando volare ver +volandoci volare ver +volandogli volare ver +volane volare ver +volani volano nom +volano volano nom +volant volant nom +volante volante adj +volanti volante adj +volantinaggi volantinaggio nom +volantinaggio volantinaggio nom +volantini volantino nom +volantino volantino nom +volar volare ver +volarci volare ver +volare volare ver +volargli volare ver +volarono volare ver +volasse volare ver +volassero volare ver +volata volata nom +volate volata nom +volati volare ver +volatica volatica nom +volatile volatile adj +volatili volatile adj +volatilità volatilità nom +volatilizza volatilizzare ver +volatilizzandosi volatilizzare ver +volatilizzano volatilizzare ver +volatilizzare volatilizzare ver +volatilizzarono volatilizzare ver +volatilizzarsi volatilizzare ver +volatilizzata volatilizzare ver +volatilizzati volatilizzare ver +volatilizzato volatilizzare ver +volatilizzazione volatilizzazione nom +volato volare ver +volatore volatore nom +volatori volatore nom +volatrice volatore nom +volatrici volatore nom +volava volare ver +volavamo volare ver +volavano volare ver +volavo volare ver +volemmo volere ver +volendo volere ver +volendoci volere ver +volendogli volere ver +volendola volere ver +volendole volere ver +volendoli volere ver +volendolo volere ver +volendomi volere ver +volendone volere ver +volendosene volere ver +volendosi volere ver +volendoti volere ver +volente volente adj +volenterosa volenteroso adj +volenterose volenteroso adj +volenterosi volenteroso adj +volenteroso volenteroso adj +volenti volente adj +volentieri volentieri adv_sup +voler volere ver_sup +volerai volare ver +voleranno volare ver +volercelo volere ver +volerci volere ver +volere volere ver +volerebbe volare ver +volerebbero volare ver +volerei volare ver +voleremo volare ver +volergli volere ver +volerglielo volere ver +voleri volere nom +volerla volere ver +volerle volere ver +volerli volere ver +volerlo volere ver_sup +volermele volere ver +volermene volere ver +volermi volere ver +volerne volere ver +volersela volere ver +volersene volere ver +volersi volere ver +volertene volere ver +volerti volere ver +volervene volere ver +volervi volere ver +volerà volare ver +volerò volare ver +volesse volere ver +volessero volere ver +volessi volere ver +volessimo volere ver +voleste volere ver +volesti volere ver +volete volere ver_sup +voleva volere ver +volevamo volere ver +volevano volere ver_sup +volevate volere ver +volevi volere ver +volevo volere ver +volframio volframio nom +volga volgere ver +volgano volgere ver +volgare volgare adj +volgari volgare adj +volgarità volgarità nom +volgarizza volgarizzare ver +volgarizzamenti volgarizzamento nom +volgarizzamento volgarizzamento nom +volgarizzando volgarizzare ver +volgarizzare volgarizzare ver +volgarizzata volgarizzare ver +volgarizzate volgarizzare ver +volgarizzati volgarizzare ver +volgarizzato volgarizzare ver +volgarizzatore volgarizzatore nom +volgarizzatori volgarizzatore nom +volgarizzazione volgarizzazione nom +volgarizzazioni volgarizzazione nom +volgarizzò volgarizzare ver +volgarmente volgarmente adv +volgata volgata nom +volge volgere ver +volgemmo volgere ver +volgendo volgere ver +volgendola volgere ver +volgendole volgere ver +volgendoli volgere ver +volgendolo volgere ver +volgendosi volgere ver +volgente volgere ver +volgenti volgere ver +volger volgere ver +volgeranno volgere ver +volgere volgere ver +volgerebbe volgere ver +volgerla volgere ver +volgerle volgere ver +volgerlo volgere ver +volgersi volgere ver +volgerà volgere ver +volgesse volgere ver +volgessero volgere ver +volgeste volgere ver +volgete volgere ver +volgetevi volgere ver +volgeva volgere ver +volgevano volgere ver +volgevo volgere ver +volgi volgere ver +volgiamo volgere ver +volgiti volgere ver +volgo volgo nom +volgono volgere ver +voli volo nom +voliamo volare ver +voliera voliera nom +voliere voliera nom +volino volare ver +volitiva volitivo adj +volitive volitivo adj +volitivi volitivo adj +volitivo volitivo adj +volle volere ver +vollero volere ver +volli volere ver +volo volo nom +volontari volontario nom +volontaria volontario adj +volontariamente volontariamente adv +volontariati volontariato nom +volontariato volontariato nom +volontarie volontario adj +volontarietà volontarietà nom +volontario volontario adj +volontarismo volontarismo nom +volontarista volontarista nom +volontaristica volontaristico adj +volontaristiche volontaristico adj +volontaristici volontaristico adj +volontaristico volontaristico adj +volonterosa volonteroso adj +volonterose volonteroso adj +volonterosi volonteroso adj +volonteroso volonteroso adj +volontà volontà nom +volovelismo volovelismo nom +volovelisti volovelista nom +volpacchiotti volpacchiotto nom +volpacchiotto volpacchiotto nom +volpe volpe nom +volpi volpe nom +volpina volpino adj +volpine volpino adj +volpini volpino adj +volpino volpino adj +volpoca volpoca nom +volpoche volpoca nom +volpone volpone nom +volponi volpone nom +volse volgere ver +volsero volgere ver +volsi volgere ver +volt volt nom +volta volta nom_sup +voltafaccia voltafaccia nom +voltafieno voltafieno nom +voltagabbana voltagabbana nom +voltaggi voltaggio nom +voltaggio voltaggio nom +voltai voltare ver +voltaica voltaico adj +voltaiche voltaico adj +voltaici voltaico adj +voltaico voltaico adj +voltali voltare ver +voltametri voltametro nom +voltametro voltametro nom +voltami voltare ver +voltampere voltampere nom +voltando voltare ver +voltandoci voltare ver +voltandogli voltare ver +voltandole voltare ver +voltandosi voltare ver +voltano voltare ver +voltante voltare ver +voltapietre voltapietre nom +voltar voltare ver +voltare voltare ver +voltargli voltare ver +voltarla voltare ver +voltarle voltare ver +voltarlo voltare ver +voltarmi voltare ver +voltarono voltare ver +voltarsi voltare ver +voltarti voltare ver +voltarvi voltare ver +voltasi voltare ver +voltasse voltare ver +voltassero voltare ver +voltastomaco voltastomaco nom +voltata voltare ver +voltate voltare ver +voltati voltare ver +voltato voltare ver +voltava voltare ver +voltavano voltare ver +volte volta nom_sup +volteggi volteggio nom +volteggia volteggiare ver +volteggiando volteggiare ver +volteggiano volteggiare ver +volteggiante volteggiare ver +volteggianti volteggiare ver +volteggiare volteggiare ver +volteggiato volteggiare ver +volteggiava volteggiare ver +volteggiavano volteggiare ver +volteggio volteggio nom +volteggiò volteggiare ver +volterebbe voltare ver +volterrana volterrana nom +volterrane volterrana nom +volterà voltare ver +volti volto nom +voltiamo voltare ver +voltino voltare ver +voltmetri voltmetro nom +voltmetro voltmetro nom +volto volto nom +voltolini voltolino nom +voltolino voltolare ver +voltura voltura nom +volturata volturare ver +volture voltura nom +volturi volturare ver +volturino volturare ver +volturo volturare ver +voltò voltare ver +volubile volubile adj +volubili volubile adj +volubilità volubilità nom +volume volume nom +volumetria volumetria nom +volumetrica volumetrico adj +volumetriche volumetrico adj +volumetrici volumetrico adj +volumetrico volumetrico adj +volumetrie volumetria nom +volumi volume nom +voluminosa voluminoso adj +voluminose voluminoso adj +voluminosi voluminoso adj +voluminosità voluminosità nom +voluminoso voluminoso adj +voluta volere ver_sup +volutamente volutamente adv +volute voluta nom_sup +voluti volere ver +voluto volere ver_sup +voluttuari voluttuario adj +voluttuaria voluttuario adj +voluttuarie voluttuario adj +voluttuario voluttuario adj +voluttuosa voluttuoso adj +voluttuose voluttuoso adj +voluttuosi voluttuoso adj +voluttuosità voluttuosità nom +voluttuoso voluttuoso adj +voluttà voluttà nom +volva volva nom +volve volva nom +volvolo volvolo nom +volée volée nom +volò volare ver +vombati vombato nom +vombato vombato nom +vomere vomere nom +vomeri vomere nom +vomica vomico adj +vomita vomitare ver +vomitando vomitare ver +vomitano vomitare ver +vomitante vomitare ver +vomitanti vomitare ver +vomitare vomitare ver +vomitarli vomitare ver +vomitarlo vomitare ver +vomitarono vomitare ver +vomitata vomitare ver +vomitate vomitare ver +vomitati vomitare ver +vomitato vomitare ver +vomitava vomitare ver +vomitevole vomitevole adj +vomitevoli vomitevole adj +vomiti vomito nom +vomito vomito nom +vomitò vomitare ver +vongola vongola nom +vongole vongola nom +vorace vorace adj +voraci vorace adj +voracità voracità nom +voragine voragine nom +voragini voragine nom +voraginosa voraginoso adj +vorra vorra sw +vorrai volere ver +vorranno volere ver +vorrebbe volere ver_sup +vorrebbero volere ver_sup +vorrei volere ver_sup +vorremmo volere ver_sup +vorremo volere ver +vorreste volere ver +vorresti volere ver +vorrete volere ver +vorrà volere ver_sup +vorrò volere ver +vortica vorticare ver +vorticando vorticare ver +vorticano vorticare ver +vorticante vorticare ver +vorticanti vorticare ver +vorticare vorticare ver +vortice vortice nom +vorticella vorticella nom +vortici vortice nom +vorticosa vorticoso adj +vorticose vorticoso adj +vorticosi vorticoso adj +vorticoso vorticoso adj +vossignoria vossignoria pro +vostra vostro pro +vostre vostro pro +vostri vostro pro +vostro vostro pro +vota votare ver +votaci votare ver +votagli votare ver +votai votare ver +votami votare ver +votando votare ver +votandogli votare ver +votandola votare ver +votandolo votare ver +votandomi votare ver +votandosi votare ver +votano votare ver +votante votante nom +votanti votante nom +votar votare ver +votarci votare ver +votare votare ver +votargli votare ver +votarla votare ver +votarle votare ver +votarli votare ver +votarlo votare ver +votarmi votare ver +votarne votare ver +votarono votare ver +votarsi votare ver +votarti votare ver +votarvi votare ver +votasse votare ver +votassero votare ver +votassi votare ver +votassimo votare ver +votaste votare ver +votasti votare ver +votata votare ver +votate votare ver +votatelo votare ver +votatemi votare ver +votati votare ver +votato votare ver +votava votare ver +votavano votare ver +votavate votare ver +votavi votare ver +votavo votare ver +votazione votazione nom +votazioni votazione nom +voterai votare ver +voteranno votare ver +voterebbe votare ver +voterebbero votare ver +voterei votare ver +voteremmo votare ver +voteremo votare ver +votereste votare ver +voteresti votare ver +voterete votare ver +voterà votare ver +voterò votare ver +voti voto nom +votiamo votare ver +votiamola votare ver +votiate votare ver +votino votare ver +votiva votivo adj +votive votivo adj +votivi votivo adj +votivo votivo adj +voto voto nom +votò votare ver +voyeur voyeur nom +voyeurismi voyeurismo nom +voyeurismo voyeurismo nom +vu vu nom +vuduismo vuduismo nom +vuduista vuduista nom +vuduiste vuduista nom +vuduisti vuduista nom +vudù vudù nom +vuelta vuelta nom +vulcanesimo vulcanesimo nom +vulcani vulcano nom +vulcanica vulcanico adj +vulcaniche vulcanico adj +vulcanici vulcanico adj +vulcanico vulcanico adj +vulcanismo vulcanismo nom +vulcanite vulcanite nom +vulcaniti vulcanite nom +vulcanizzano vulcanizzare ver +vulcanizzante vulcanizzare ver +vulcanizzare vulcanizzare ver +vulcanizzata vulcanizzare ver +vulcanizzati vulcanizzare ver +vulcanizzato vulcanizzare ver +vulcanizzazione vulcanizzazione nom +vulcano vulcano nom +vulcanologia vulcanologia nom +vulgata vulgata nom +vulgate vulgato adj +vulgato vulgato adj +vulnera vulnerare ver +vulnerabile vulnerabile adj +vulnerabili vulnerabile adj +vulnerabilità vulnerabilità nom +vulnerante vulnerare ver +vulneranti vulnerare ver +vulnerari vulnerario adj +vulneraria vulnerario adj +vulnerarie vulnerario adj +vulnerario vulnerario adj +vulnerasti vulnerare ver +vulnerata vulnerare ver +vulnerati vulnerare ver +vulnero vulnerare ver +vulva vulva nom +vulve vulva nom +vuoi volere ver +vuol volere ver_sup +vuole volere ver_sup +vuota vuoto adj +vuotaggine vuotaggine nom +vuotai vuotare ver +vuotando vuotare ver +vuotano vuotare ver +vuotare vuotare ver +vuotarla vuotare ver +vuotarlo vuotare ver +vuotarono vuotare ver +vuotarsi vuotare ver +vuotata vuotare ver +vuotate vuotare ver +vuotati vuotare ver +vuotato vuotare ver +vuotatura vuotatura nom +vuotava vuotare ver +vuotavano vuotare ver +vuote vuoto adj +vuoti vuoto adj +vuoto vuoto adj +vuotometri vuotometro nom +vuotometro vuotometro nom +vuotò vuotare ver +và và ver +w w sw +wafer wafer nom +walzer walzer nom +wampun wampun nom +wapiti wapiti nom +warrant warrant nom +wassermann wassermann adj +water water nom +waterproof waterproof adj +watt watt nom +wattmetri wattmetro nom +wattmetro wattmetro nom +wattora wattora nom +watussi watusso nom +weber weber nom +welfare welfare nom +welter welter nom +west west nom +western western adj +whig whig nom +whisky whisky nom +whist whist nom +widia widia nom +wigwam wigwam nom +winchester winchester nom +windsurf windsurf nom +wolframio wolframio nom +workshop workshop nom +www www sw +würstel würstel nom +x x adj_sup +xche xche sw +xchè xchè sw +xd xd sw +xeni xeno nom +xeno xeno nom +xenofoba xenofobo adj +xenofobe xenofobo adj +xenofobi xenofobo adj +xenofobia xenofobia nom +xenofobie xenofobia nom +xenofobo xenofobo adj +xeres xeres nom +xerocopia xerocopia nom +xerofita xerofito adj +xerofite xerofito adj +xerofiti xerofito adj +xerofito xerofito adj +xerografia xerografia nom +xerografica xerografico adj +xerografico xerografico adj +xerografie xerografia nom +xerosi xerosi nom +xii xii num +xilema xilema nom +xilemi xilema nom +xilofoni xilofono nom +xilofonista xilofonista nom +xilofono xilofono nom +xilografia xilografia nom +xilografie xilografia nom +xk xk sw +xke xke sw +xkè xkè sw +xo xo sw +xv xv num +xvi xvi num +xvii xvii num +xx xx num +xxi xxi num +xò xò sw +y y sw +yacht yacht nom +yachting yachting nom +yachtsman yachtsman nom +yachtsmen yachtsmen nom +yak yak nom +yankee yankee adj +yard yard nom +yawl yawl nom +yemenite yemenita adj +yemeniti yemenita adj +yen yen nom +yeti yeti nom +yiddish yiddish adj +yoga yoga adj +yogurt yogurt nom +yole yole nom +yoli yole nom +ypsilon ypsilon nom +yucca yucca nom +yucche yucca nom +yuppie yuppie adj +zabaglione zabaglione nom +zabaione zabaione nom +zacchera zacchera nom +zaffa zaffare ver +zaffata zaffata nom +zaffate zaffata nom +zafferani zafferano nom +zafferano zafferano nom +zaffi zaffo nom +zaffino zaffare ver +zaffiri zaffiro nom +zaffiro zaffiro nom +zaffo zaffo nom +zagaglia zagaglia nom +zagaglie zagaglia nom +zagara zagara nom +zagare zagara nom +zaini zaino nom +zaino zaino nom +zambiana zambiano adj +zambiane zambiano adj +zambiani zambiano adj +zambiano zambiano adj +zampa zampa nom +zampano zampare ver +zampar zampare ver +zampata zampata nom +zampate zampata nom +zampati zampare ver +zampe zampa nom +zampetta zampettare ver +zampettando zampettare ver +zampettano zampettare ver +zampettare zampettare ver +zampetti zampetto nom +zampi zampare ver +zampilla zampillare ver +zampillano zampillare ver +zampillante zampillante adj +zampillanti zampillante adj +zampillare zampillare ver +zampillava zampillare ver +zampillavano zampillare ver +zampilli zampillo nom +zampillo zampillo nom +zampillò zampillare ver +zampina zampina nom +zampine zampina nom +zampini zampino nom +zampino zampino nom +zampirone zampirone nom +zampironi zampirone nom +zampo zampare ver +zampogna zampogna nom +zampognari zampognaro nom +zampognaro zampognaro nom +zampogne zampogna nom +zampone zampone nom +zamponi zampone nom +zana zana nom +zane zana nom +zangola zangola nom +zangole zangola nom +zanna zanna nom +zanne zanna nom +zanni zanni nom +zannuta zannuto adj +zannute zannuto adj +zannuti zannuto adj +zannuto zannuto adj +zanzara zanzara nom +zanzare zanzara nom +zanzariera zanzariera nom +zanzariere zanzariera nom +zappa zappa nom +zappai zappare ver +zappala zappare ver +zappando zappare ver +zappare zappare ver +zapparle zappare ver +zappata zappare ver +zappaterra zappaterra nom +zappato zappare ver +zappatore zappatore nom +zappatori zappatore nom +zappatrice zappatore|zappatrice nom +zappatrici zappatore|zappatrice nom +zappatura zappatura nom +zappava zappare ver +zappe zappa nom +zappetta zappetta nom +zappette zappetta nom +zappi zappare ver +zappiamo zappare ver +zappino zappare ver +zar zar nom +zara zara nom +zare zara nom +zarevic zarevic nom +zarina zarina nom +zarine zarina nom +zarista zarista adj +zariste zarista adj +zaristi zarista adj +zattera zattera nom +zattere zattera nom +zatterone zatterone nom +zatteroni zatterone nom +zavorra zavorra nom +zavorramento zavorramento nom +zavorrano zavorrare ver +zavorrare zavorrare ver +zavorrata zavorrare ver +zavorrate zavorrare ver +zavorrati zavorrare ver +zavorrato zavorrare ver +zavorre zavorra nom +zazzera zazzera nom +zazzere zazzera nom +zebra zebra nom +zebrata zebrato adj +zebrate zebrato adj +zebrati zebrato adj +zebrato zebrato adj +zebratura zebratura nom +zebrature zebratura nom +zebre zebra nom +zebù zebù nom +zecca zecca nom +zecche zecca nom +zecchinetta zecchinetta nom +zecchini zecchino nom +zecchino zecchino nom +zeffiri zeffiro nom +zeffiro zeffiro nom +zefir zefir nom +zefiri zefiro nom +zefiro zefiro nom +zelante zelante adj +zelanti zelante adj +zelatore zelatore nom +zelatori zelatore nom +zelatrici zelatore nom +zeli zelo nom +zelo zelo nom +zen zen adj +zendadi zendado nom +zendado zendado nom +zenit zenit nom +zenitale zenitale adj +zenitali zenitale adj +zenzero zenzero nom +zeolite zeolite nom +zeoliti zeolite nom +zephir zephir nom +zeppa zeppo adj +zeppe zeppo adj +zeppelin zeppelin nom +zeppi zeppo adj +zeppo zeppo adj +zeppola zeppola nom +zeppole zeppola nom +zerbini zerbino nom +zerbino zerbino nom +zerbinotti zerbinotto nom +zerbinotto zerbinotto nom +zeri zero nom +zero zero adj +zeta zeta nom +zete zete nom +zeugma zeugma nom +zeugmi zeugma nom +zia zia|zio nom +zibaldone zibaldone nom +zibaldoni zibaldone nom +zibellini zibellino nom +zibellino zibellino nom +zibetti zibetto nom +zibetto zibetto nom +zibibbi zibibbo nom +zibibbo zibibbo nom +zie zia|zio nom +ziga zigare ver +zigai zigare ver +zigana zigano adj +zigane zigano adj +zigani zigano adj +zigano zigano adj +zigante zigare ver +ziganti zigare ver +zigare zigare ver +ziggurat ziggurat nom +zighi zigare ver +zigo zigare ver +zigodattili zigodattilo adj +zigodattilo zigodattilo adj +zigoli zigolo nom +zigolo zigolo nom +zigomatica zigomatico adj +zigomatiche zigomatico adj +zigomatici zigomatico adj +zigomatico zigomatico adj +zigomi zigomo nom +zigomo zigomo nom +zigote zigote nom +zigoti zigote nom +zigrinata zigrinato adj +zigrinate zigrinato adj +zigrinati zigrinato adj +zigrinato zigrinare ver +zigrino zigrino nom +zigzag zigzag nom +zigzagando zigzagare ver +zigzagante zigzagare ver +zigzaganti zigzagare ver +zigzagare zigzagare ver +zigzagate zigzagare ver +zigzagati zigzagare ver +zigzagato zigzagare ver +zigzago zigzagare ver +zii zio nom +zilla zillare ver +zilli zillo nom +zillo zillo nom +zimasi zimasi nom +zimbelli zimbello nom +zimbello zimbello nom +zimino zimino nom +zinca zincare ver +zincali zincare ver +zincar zincare ver +zincare zincare ver +zincata zincato adj +zincate zincato adj +zincati zincato adj +zincato zincato adj +zincatura zincatura nom +zincature zincatura nom +zinchi zinco nom +zinco zinco nom +zincografia zincografia nom +zincografiche zincografico adj +zincografo zincografo nom +zingara zingaro nom +zingare zingaro nom +zingaresca zingaresco adj +zingaresche zingaresco adj +zingaresco zingaresco adj +zingari zingaro nom +zingaro zingaro nom +zinna zinna nom +zinne zinna nom +zinnia zinnia nom +zinnie zinnia nom +zinzino zinzino nom +zio zio nom +zip zip nom +zipoli zipolo nom +zipolo zipolo nom +zircone zircone nom +zirconi zircone|zirconio nom +zirconio zirconio nom +zirla zirlare ver +zirlare zirlare ver +zirlino zirlare ver +zita zita nom +zite zita nom +zitella zitella nom +zitelle zitella nom +zitellona zitellone nom +zitelloni zitellone nom +zitta zitto adj +zitte zitto adj +zittendo zittire ver +zitti zitto adj +zittire zittire ver +zittirla zittire ver +zittirlo zittire ver +zittirmi zittire ver +zittirono zittire ver +zittirsi zittire ver +zittirà zittire ver +zittisce zittire ver +zittisco zittire ver +zittiscono zittire ver +zittita zittire ver +zittite zittire ver +zittiti zittire ver +zittito zittire ver +zitto zitto adj +zittì zittire ver +zizza zizza nom +zizzania zizzania nom +zizzanie zizzania nom +zizze zizza nom +zoccola zoccolare ver +zoccolai zoccolaio nom +zoccolaio zoccolaio nom +zoccolante zoccolante adj +zoccolanti zoccolante nom +zoccoli zoccolo nom +zoccolino zoccolare ver +zoccolo zoccolo nom +zodiacale zodiacale adj +zodiacali zodiacale adj +zodiaci zodiaco nom +zodiaco zodiaco nom +zolfanelli zolfanello nom +zolfanello zolfanello nom +zolfatare zolfatara nom +zolfi zolfo nom +zolfo zolfo nom +zolla zolla nom +zolle zolla nom +zolletta zolletta nom +zollette zolletta nom +zombi zombi nom +zombie zombie nom +zompa zompare ver +zompato zompare ver +zompi zompare ver +zompo zompare ver +zona zona nom +zonale zonale adj +zonali zonale adj +zonatura zonatura nom +zonature zonatura nom +zone zona nom +zonizzazione zonizzazione nom +zonizzazioni zonizzazione nom +zonzi zonzo nom +zonzo zonzo nom +zoo zoo nom +zoofila zoofilo adj +zoofile zoofilo adj +zoofili zoofilo adj +zoofilia zoofilia nom +zoofilie zoofilia nom +zoofilo zoofilo adj +zoofobia zoofobia nom +zooforo zooforo nom +zoogeografia zoogeografia nom +zooiatria zooiatria nom +zoologia zoologia nom +zoologica zoologico adj +zoologiche zoologico adj +zoologici zoologico adj +zoologico zoologico adj +zoologie zoologia nom +zoologista zoologista nom +zoologiste zoologista nom +zoom zoom nom +zooma zoomare ver +zoomando zoomare ver +zoomare zoomare ver +zoomata zoomare ver +zoomate zoomare ver +zoomato zoomare ver +zoomorfa zoomorfo adj +zoomorfe zoomorfo adj +zoomorfi zoomorfo adj +zoomorfo zoomorfo adj +zoonosi zoonosi nom +zoonotica zoonotico adj +zoonotiche zoonotico adj +zoonotici zoonotico adj +zoonotico zoonotico adj +zootecnia zootecnia nom +zootecnica zootecnico adj +zootecniche zootecnico adj +zootecnici zootecnico adj +zootecnico zootecnico adj +zootomia zootomia nom +zootomie zootomia nom +zoppa zoppo adj +zoppe zoppo adj +zoppi zoppo adj +zoppia zoppia nom +zoppica zoppicare ver +zoppicamento zoppicamento nom +zoppicando zoppicare ver +zoppicano zoppicare ver +zoppicante zoppicante adj +zoppicanti zoppicante adj +zoppicare zoppicare ver +zoppicava zoppicare ver +zoppichi zoppicare ver +zoppicò zoppicare ver +zoppo zoppo adj +zorilla zorilla nom +zorille zorilla nom +zoster zoster adj +zotica zotico adj +zotici zotico adj +zotico zotico adj +zozza zozza nom +zozze zozza nom +zuava zuavo adj +zuave zuavo adj +zuavi zuavo nom +zuavo zuavo nom +zucca zucca nom +zuccata zuccata nom +zuccate zuccata nom +zucche zucca nom +zucchera zuccherare ver +zuccheraggio zuccheraggio nom +zuccherare zuccherare ver +zuccherata zuccherare ver +zuccherate zuccherato adj +zuccherati zuccherare ver +zuccherato zuccherare ver +zuccheri zucchero nom +zuccheriera zuccheriera nom +zuccheriere zuccheriero adj +zuccherieri zuccheriero adj +zuccherifici zuccherificio nom +zuccherificio zuccherificio nom +zuccherina zuccherino adj +zuccherine zuccherino adj +zuccherini zuccherino adj +zuccherino zuccherino adj +zucchero zucchero nom +zuccherosa zuccheroso adj +zuccherose zuccheroso adj +zuccherosi zuccheroso adj +zuccheroso zuccheroso adj +zucchetta zucchetta nom +zucchette zucchetta nom +zucchetti zucchetto nom +zucchetto zucchetto nom +zucchina zucchina nom +zucchine zucchina nom +zucchini zucchino nom +zucchino zucchino nom +zuccona zuccone nom +zuccone zuccone adj +zucconi zuccone adj +zuccotti zuccotto nom +zuccotto zuccotto nom +zuffa zuffa nom +zuffe zuffa nom +zufola zufolare ver +zufolare zufolare ver +zufoli zufolio|zufolo nom +zufolo zufolo nom +zulù zulù adj +zuma zumare ver +zumagli zumare ver +zumali zumare ver +zumano zumare ver +zumar zumare ver +zumi zumare ver +zumino zumare ver +zumo zumare ver +zuppa zuppa nom +zuppe zuppa nom +zuppi zuppo adj +zuppiera zuppiera nom +zuppiere zuppiera nom +zuppo zuppo adj +zuzzerellone zuzzerellone nom +zuzzurellone zuzzurellone nom +zuzzurelloni zuzzurellone nom +zzz zzz int +è essere ver_sup +é é sw +écru écru adj +épagneul épagneul nom +étagère étagère nom +ù ù sw +a_dispetto a_dispetto sw +a_dispetto_di a_dispetto_di sw +a_forza a_forza sw +a_partire_da a_partire_da sw +a_partire_da_ora a_partire_da_ora sw +a_priori a_priori sw +a_proposito a_proposito sw +a_questo_punto a_questo_punto sw +a_rigore a_rigore sw +a_rischio_ a_rischio sw +a_rischio_di_ a_rischio_di sw +a_sangue_freddo a_sangue_freddo sw +a_tutt_oggi a_tutt_oggi sw +ad_esempio ad_esempio sw +ad_oggi ad_oggi sw +ai_ferri_corti ai_ferri_corti sw +ai_quali ai_quali sw +al_confronto al_confronto sw +al_contrario al_contrario sw +al_di_la al_di_la sw +al_di_sopra al_di_sopra sw +al_fine_ al_fine_ sw +al_fine_di al_fine_di sw +al_momento al_momento sw +al_posto al_posto sw +al_posto_di al_posto_di sw +al_punto al_punto sw +al_quale al_quale sw +al_riguardo al_riguardo sw +alla_quale alla_quale sw +alla_volta alla_volta sw +allo_stesso_tempo allo_stesso_tempo sw +andare_e_venire andare_e_venire sw +a_questo a_questo sw +arriere_pensee arriere_pensee sw +ben_altro ben_altro sw +bla_bla bla_bla sw +bric_a_brac_ bric_a_brac sw +buon_giorno buon_giorno sw +buon_lavoro buon_lavoro sw +buona_notte buona_notte sw +buona_sera_ buona_sera sw +che_magari che_magari sw +che_poi che_poi sw +ci_sembra_che ci_sembra_che sw +cio_che cio_che sw +cio_detto cio_detto sw +cioe_a_dire cioe_a_dire sw +cioe_la cioe_la sw +cioe_se cioe_se sw +colpo_d_occhio colpo_d_occhio sw +come_dire come_dire sw +come_dire_che come_dire_che sw +come_noi come_noi sw +d_accordo d_accordo sw +da_che da_che sw +da_cio da_cio sw +d_ora_in_poi d_ora_in_poi sw +da_ora_in_poi da_ora_in_poi sw +da_quando da_quando sw +da_qui_a da_qui_a sw +dalle_parti dalle_parti sw +dalle_parti_di dalle_parti_di sw +dato_che dato_che sw +del_genere del_genere sw +del_momento del_momento sw +del_resto del_resto sw +detto_altrimenti detto_altrimenti sw +detto_cio detto_cio sw +detto_questo detto_questo sw +di_conseguenza di_conseguenza sw +di_continuo di_continuo sw +di_contro di_contro sw +di_cui di_cui sw +di_fronte di_fronte sw +di_fuori di_fuori sw +di_lesa_maesta di_lesa_maesta sw +di_natura di_natura sw +di_piu di_piu sw +di_questa di_questa sw +di_questo di_questo sw +di_seguito di_seguito sw +di_seguito di_seguito sw +di_traverso di_traverso sw +di_una di_una sw +dopo_domani dopo_domani sw +e_che e_che sw +e_che e_che sw +e_come e_come sw +e_perche e_perche sw +e_poi e_poi sw +e_quindi e_quindi sw +e_vero e_vero sw +ex_libris_ ex_libris sw +ex_voto_ ex_voto sw +faccia_a_faccia faccia_a_faccia sw +far_parte far_parte sw +far_parte_di far_parte_di sw +fatta_da fatta_da sw +fatti_da fatti_da sw +fatto_da fatto_da sw +fatto_salvo_che fatto_salvo_che sw +grazia_di_dio grazia_di_dio sw +ha_detto ha_detto sw +hanno_detto hanno_detto sw +ieri_l_altro ieri_l_altro sw +in_alto in_alto sw +in_basso in_basso sw +in_che in_che sw +in_conclusione in_conclusione sw +in_corso in_corso sw +in_cui in_cui sw +in_definitiva in_definitiva sw +in_effetti in_effetti sw +in_fondo in_fondo sw +in_generale in_generale sw +in_loco in_loco sw +in_luogo in_luogo sw +in_modo in_modo sw +in_modo_che in_modo_che sw +in_ogni_caso in_ogni_caso sw +in_ogni_modo in_ogni_modo sw +in_particolare in_particolare sw +in_piu in_piu sw +in_qualche_modo in_qualche_modo sw +in_questo in_questo sw +in_realta in_realta sw +in_senso_lato in_senso_lato sw +in_testa in_testa sw +in_tutti_i_casi in_tutti_i_casi sw +in_vano in_vano sw +in_vista_di in_vista_di sw +la_davanti la_davanti sw +la_sopra la_sopra sw +la_sotto la_sotto sw +lasciar_fare lasciar_fare sw +lasciare_fare lasciare_fare sw +lesa_maesta lesa_maesta sw +lontando_dal lontando_dal sw +messa_in_atto messa_in_atto sw +messa_in_opera messa_in_opera sw +metterci_una_pezza metterci_una_pezza sw +mezzo_male mezzo_male sw +mi_sembra_che mi_sembra_che sw +neanche_per_niente neanche_per_niente sw +nei_confronti nei_confronti sw +nel_caso nel_caso sw +nel_caso_in_cui nel_caso_in_cui sw +nel_senso nel_senso sw +nel_momento_in_cui nel_momento_in_cui sw +nella_misura_in_cui nella_misura_in_cui sw +non_importa_ non_importa sw +non_so non_so sw +non_lo_so non_lo_so sw +o_meno o_meno sw +passa_tempo passa_tempo sw +per_altro per_altro sw +per_andare per_andare sw +per_augurio per_augurio sw +per_concludere per_concludere sw +per_cosi_dire per_cosi_dire sw +per_cui per_cui sw +per_esempio per_esempio sw +per_essere_chiari per_essere_chiari sw +per_fare_un_esempio per_fare_un_esempio sw +per_finire per_finire sw +per_forza per_forza sw +per_la_ragione_che per_la_ragione_che sw +per_natura per_natura sw +per_niente per_niente sw +per_parlare_chiaro per_parlare_chiaro sw +per_questo per_questo sw +per_riguardo per_riguardo sw +pero_insomma pero_insomma sw +piu_di piu_di sw +piu_o_meno piu_o_meno sw +popo_a_poco popo_a_poco sw +prima_di_tutto prima_di_tutto sw +puo_darsi puo_darsi sw +puo_essere puo_essere sw +puo_essere_che puo_essere_che sw +qualche_cosa qualche_cosa sw +quanto_a_ quanto_a sw +quanto_a_me quanto_a_me sw +quanto_a_noi quanto_a_noi sw +quanto_a_te quanto_a_te sw +quanto_a_voi quanto_a_voi sw +quelli_che quelli_che sw +quelli_la quelli_la sw +quelli_li quelli_li sw +quello_che quello_che sw +quello_la quello_la sw +quello_li quello_li sw +rispetto_al rispetto_al sw +rispetto_alle rispetto_alle sw +se_dicente se_dicente sw +secondo_me secondo_me sw +se_poi se_poi sw +se_uno se_uno sw +sono_stati sono_stati sw +sotto_sotto sotto_sotto sw +sotto_terra sotto_terra sw +stando_ai_fatti stando_ai_fatti sw +stando_cio stando_cio sw +stando_cosi_le_cose stando_cosi_le_cose sw +tanto_che tanto_che sw +tanto_ha_fatto_che tanto_ha_fatto_che sw +tanto_per_dire tanto_per_dire sw +tanto_per_fare tanto_per_fare sw +tenuto_conto tenuto_conto sw +tra_chi tra_chi sw +tra_loro tra_loro sw +tra_noi tra_noi sw +tre_quarti tre_quarti sw +tutt_a_un_tratto tutt_a_un_tratto sw +tutti_i_santi tutti_i_santi sw +una_grande_cosa una_grande_cosa sw +un_attimo un_attimo sw +un_certo un_certo sw +un_po un_po sw +una_volta una_volta sw +va_e_viene va_e_viene sw +vicino_a_ vicino_a sw +vicino_ai vicino_ai sw diff --git a/dictionnaires/lexiqueac.txt b/dictionnaires/lexiqueac.txt new file mode 100644 index 0000000..8a741ff --- /dev/null +++ b/dictionnaires/lexiqueac.txt @@ -0,0 +1,125754 @@ +île île NOM f s 58.35 108.24 50.20 83.58 +îles île NOM f p 58.35 108.24 8.15 24.66 +îlette îlette NOM f s 0.00 0.07 0.00 0.07 +îlot îlot NOM m s 1.20 10.68 0.42 6.49 +îlotier îlotier NOM m s 0.04 0.00 0.04 0.00 +îlots îlot NOM m p 1.20 10.68 0.78 4.19 +œuvre œuvre NOM s 12.04 0.00 12.04 0.00 +ô ô ONO 16.08 33.11 16.08 33.11 +ôta ôter VER 16.81 42.03 0.46 8.04 ind:pas:3s; +ôtai ôter VER 16.81 42.03 0.00 0.68 ind:pas:1s; +ôtaient ôter VER 16.81 42.03 0.01 1.08 ind:imp:3p; +ôtais ôter VER 16.81 42.03 0.03 0.68 ind:imp:1s;ind:imp:2s; +ôtait ôter VER 16.81 42.03 0.16 4.53 ind:imp:3s; +ôtant ôter VER 16.81 42.03 0.43 2.50 par:pre; +ôte ôter VER 16.81 42.03 3.05 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ôtent ôter VER 16.81 42.03 0.29 0.41 ind:pre:3p; +ôter ôter VER 16.81 42.03 5.57 10.00 ind:pre:2p;inf; +ôtera ôter VER 16.81 42.03 0.26 0.34 ind:fut:3s; +ôterai ôter VER 16.81 42.03 0.09 0.07 ind:fut:1s; +ôterais ôter VER 16.81 42.03 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +ôterait ôter VER 16.81 42.03 0.03 0.54 cnd:pre:3s; +ôteras ôter VER 16.81 42.03 0.17 0.14 ind:fut:2s; +ôterez ôter VER 16.81 42.03 0.17 0.20 ind:fut:2p; +ôterions ôter VER 16.81 42.03 0.00 0.07 cnd:pre:1p; +ôtes ôter VER 16.81 42.03 0.65 0.00 ind:pre:2s; +ôtez ôter VER 16.81 42.03 1.30 0.81 imp:pre:2p;ind:pre:2p; +ôtiez ôter VER 16.81 42.03 0.17 0.00 ind:imp:2p; +ôtons ôter VER 16.81 42.03 0.02 0.07 ind:pre:1p; +ôtât ôter VER 16.81 42.03 0.00 0.14 sub:imp:3s; +ôtèrent ôter VER 16.81 42.03 0.00 0.27 ind:pas:3p; +ôté ôter VER m s 16.81 42.03 3.18 5.47 par:pas; +ôtée ôter VER f s 16.81 42.03 0.42 0.54 par:pas; +ôtées ôter VER f p 16.81 42.03 0.16 0.07 par:pas; +ôtés ôter VER m p 16.81 42.03 0.04 0.14 par:pas; +a_capella a_capella ADV 0.04 0.07 0.04 0.07 +a_cappella a_cappella ADV 0.04 0.07 0.04 0.07 +a_contrario a_contrario ADV 0.00 0.27 0.00 0.27 +a_fortiori a_fortiori ADV 0.04 0.88 0.04 0.88 +a_giorno a_giorno ADV 0.00 0.27 0.00 0.27 +à_jeun à_jeun ADV 1.45 3.85 0.18 0.00 +a_l_instar a_l_instar PRE 0.26 0.00 0.26 0.00 +a_posteriori a_posteriori ADV 0.05 0.20 0.01 0.14 +a_priori a_priori ADV 1.04 3.85 0.63 2.57 +a avoir AUX 18559.23 12800.81 6350.91 2926.69 ind:pre:3s; +aînesse aînesse NOM f s 0.07 0.47 0.07 0.47 +aîné aîné ADJ m s 6.27 16.42 4.66 10.00 +aînée aîné NOM f s 8.92 22.84 2.79 5.07 +aînées aîné NOM f p 8.92 22.84 0.05 0.54 +aînés aîné NOM m p 8.92 22.84 1.46 4.19 +aître aître NOM m s 0.00 0.14 0.00 0.07 +aîtres aître NOM m p 0.00 0.14 0.00 0.07 +aï aï NOM m s 2.31 0.00 2.31 0.00 +aïd aïd NOM m 0.54 0.34 0.54 0.34 +aïe aïe ONO 18.25 8.38 18.25 8.38 +aïeul aïeul NOM m s 3.13 10.61 1.08 4.46 +aïeule aïeul NOM f s 3.13 10.61 0.14 3.24 +aïeules aïeul NOM f p 3.13 10.61 0.03 0.54 +aïeuls aïeul NOM m p 3.13 10.61 0.14 0.27 +aïeux aïeul NOM m p 3.13 10.61 1.75 2.09 +aïkido aïkido NOM m s 0.02 0.07 0.02 0.07 +aïoli aïoli NOM m s 0.01 0.27 0.01 0.27 +aa aa NOM m s 0.01 0.00 0.01 0.00 +ab_absurdo ab_absurdo ADV 0.00 0.07 0.00 0.07 +ab_initio ab_initio ADV 0.01 0.07 0.01 0.07 +ab_ovo ab_ovo ADV 0.00 0.27 0.00 0.27 +abîma abîmer VER 15.83 21.69 0.10 0.74 ind:pas:3s; +abîmai abîmer VER 15.83 21.69 0.00 0.14 ind:pas:1s; +abîmaient abîmer VER 15.83 21.69 0.10 0.20 ind:imp:3p; +abîmait abîmer VER 15.83 21.69 0.01 1.22 ind:imp:3s; +abîmant abîmer VER 15.83 21.69 0.01 0.54 par:pre; +abîme abîme NOM m s 6.01 20.61 5.03 14.59 +abîment abîmer VER 15.83 21.69 0.31 0.88 ind:pre:3p; +abîmer abîmer VER 15.83 21.69 5.40 5.95 inf; +abîmera abîmer VER 15.83 21.69 0.04 0.14 ind:fut:3s; +abîmerai abîmer VER 15.83 21.69 0.01 0.00 ind:fut:1s; +abîmerais abîmer VER 15.83 21.69 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +abîmerait abîmer VER 15.83 21.69 0.08 0.20 cnd:pre:3s; +abîmeras abîmer VER 15.83 21.69 0.00 0.14 ind:fut:2s; +abîmerez abîmer VER 15.83 21.69 0.01 0.00 ind:fut:2p; +abîmeront abîmer VER 15.83 21.69 0.02 0.14 ind:fut:3p; +abîmes abîme NOM m p 6.01 20.61 0.98 6.01 +abîmez abîmer VER 15.83 21.69 0.30 0.20 imp:pre:2p;ind:pre:2p; +abîmions abîmer VER 15.83 21.69 0.00 0.14 ind:imp:1p; +abîmons abîmer VER 15.83 21.69 0.00 0.07 ind:pre:1p; +abîmé abîmer VER m s 15.83 21.69 3.57 4.73 par:pas; +abîmée abîmer VER f s 15.83 21.69 1.73 1.76 par:pas; +abîmées abîmer VER f p 15.83 21.69 0.56 0.74 par:pas; +abîmés abîmer VER m p 15.83 21.69 0.61 1.35 par:pas; +abaca abaca NOM m s 0.01 0.00 0.01 0.00 +abaissa abaisser VER 4.93 18.04 0.00 2.64 ind:pas:3s; +abaissai abaisser VER 4.93 18.04 0.10 0.07 ind:pas:1s; +abaissaient abaisser VER 4.93 18.04 0.00 0.41 ind:imp:3p; +abaissait abaisser VER 4.93 18.04 0.02 2.50 ind:imp:3s; +abaissant abaissant ADJ m s 0.04 0.27 0.03 0.27 +abaissante abaissant ADJ f s 0.04 0.27 0.01 0.00 +abaisse_langue abaisse_langue NOM m 0.04 0.14 0.04 0.14 +abaisse abaisser VER 4.93 18.04 1.28 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abaissement abaissement NOM m s 0.31 2.16 0.31 2.16 +abaissent abaisser VER 4.93 18.04 0.05 0.95 ind:pre:3p; +abaisser abaisser VER 4.93 18.04 1.09 2.91 inf; +abaissera abaisser VER 4.93 18.04 0.19 0.07 ind:fut:3s; +abaisserai abaisser VER 4.93 18.04 0.10 0.07 ind:fut:1s; +abaisseraient abaisser VER 4.93 18.04 0.01 0.07 cnd:pre:3p; +abaisserais abaisser VER 4.93 18.04 0.13 0.00 cnd:pre:1s;cnd:pre:2s; +abaisserait abaisser VER 4.93 18.04 0.02 0.20 cnd:pre:3s; +abaisses abaisser VER 4.93 18.04 0.16 0.07 ind:pre:2s; +abaissez abaisser VER 4.93 18.04 0.53 0.07 imp:pre:2p;ind:pre:2p; +abaissons abaisser VER 4.93 18.04 0.02 0.00 imp:pre:1p; +abaissèrent abaisser VER 4.93 18.04 0.00 0.41 ind:pas:3p; +abaissé abaisser VER m s 4.93 18.04 0.74 1.35 par:pas; +abaissée abaisser VER f s 4.93 18.04 0.17 0.27 par:pas; +abaissées abaissée ADJ f p 0.02 0.00 0.02 0.00 +abaissés abaisser VER m p 4.93 18.04 0.30 0.07 par:pas; +abalone abalone NOM m s 0.01 0.07 0.01 0.00 +abalones abalone NOM m p 0.01 0.07 0.00 0.07 +abandon abandon NOM m s 4.84 27.36 4.77 25.20 +abandonna abandonner VER 110.86 128.45 0.59 8.92 ind:pas:3s; +abandonnai abandonner VER 110.86 128.45 0.27 2.16 ind:pas:1s; +abandonnaient abandonner VER 110.86 128.45 0.07 1.55 ind:imp:3p; +abandonnais abandonner VER 110.86 128.45 0.35 1.49 ind:imp:1s;ind:imp:2s; +abandonnait abandonner VER 110.86 128.45 1.04 9.46 ind:imp:3s; +abandonnant abandonner VER 110.86 128.45 1.15 9.93 par:pre; +abandonnas abandonner VER 110.86 128.45 0.00 0.14 ind:pas:2s; +abandonne abandonner VER 110.86 128.45 24.04 15.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +abandonnent abandonner VER 110.86 128.45 2.44 2.64 ind:pre:3p;sub:pre:3p; +abandonner abandonner VER 110.86 128.45 28.36 27.70 inf; +abandonnera abandonner VER 110.86 128.45 1.52 0.81 ind:fut:3s; +abandonnerai abandonner VER 110.86 128.45 2.39 0.41 ind:fut:1s; +abandonneraient abandonner VER 110.86 128.45 0.02 0.14 cnd:pre:3p; +abandonnerais abandonner VER 110.86 128.45 0.93 0.27 cnd:pre:1s;cnd:pre:2s; +abandonnerait abandonner VER 110.86 128.45 0.23 0.88 cnd:pre:3s; +abandonneras abandonner VER 110.86 128.45 0.30 0.20 ind:fut:2s; +abandonnerez abandonner VER 110.86 128.45 0.14 0.00 ind:fut:2p; +abandonneriez abandonner VER 110.86 128.45 0.23 0.20 cnd:pre:2p; +abandonnerions abandonner VER 110.86 128.45 0.01 0.00 cnd:pre:1p; +abandonnerons abandonner VER 110.86 128.45 0.39 0.14 ind:fut:1p; +abandonneront abandonner VER 110.86 128.45 0.41 0.27 ind:fut:3p; +abandonnes abandonner VER 110.86 128.45 4.13 0.14 ind:pre:2s;sub:pre:2s; +abandonneurs abandonneur NOM m p 0.00 0.07 0.00 0.07 +abandonnez abandonner VER 110.86 128.45 5.72 0.88 imp:pre:2p;ind:pre:2p; +abandonniez abandonner VER 110.86 128.45 0.14 0.14 ind:imp:2p; +abandonnions abandonner VER 110.86 128.45 0.06 0.54 ind:imp:1p; +abandonnique abandonnique ADJ s 0.00 0.07 0.00 0.07 +abandonnâmes abandonner VER 110.86 128.45 0.00 0.27 ind:pas:1p; +abandonnons abandonner VER 110.86 128.45 1.06 0.68 imp:pre:1p;ind:pre:1p; +abandonnât abandonner VER 110.86 128.45 0.00 0.34 sub:imp:3s; +abandonnèrent abandonner VER 110.86 128.45 0.16 1.42 ind:pas:3p; +abandonné abandonner VER m s 110.86 128.45 22.56 23.92 par:pas; +abandonnée abandonner VER f s 110.86 128.45 7.34 9.66 par:pas; +abandonnées abandonner VER f p 110.86 128.45 1.27 2.70 par:pas; +abandonnés abandonner VER m p 110.86 128.45 3.55 4.93 par:pas; +abandons abandon NOM m p 4.84 27.36 0.07 2.16 +abaque abaque NOM m s 0.00 0.07 0.00 0.07 +abasourdi abasourdir VER m s 0.55 2.97 0.35 2.09 par:pas; +abasourdie abasourdi ADJ f s 0.40 2.64 0.14 0.54 +abasourdir abasourdir VER 0.55 2.97 0.01 0.14 inf; +abasourdis abasourdir VER m p 0.55 2.97 0.07 0.20 par:pas; +abasourdissant abasourdissant ADJ m s 0.01 0.07 0.01 0.00 +abasourdissants abasourdissant ADJ m p 0.01 0.07 0.00 0.07 +abat_jour abat_jour NOM m 0.51 8.24 0.51 8.24 +abat_son abat_son NOM m 0.00 0.27 0.00 0.27 +abat abattre VER 43.47 50.61 2.15 4.93 ind:pre:3s; +abatage abatage NOM m s 0.00 0.07 0.00 0.07 +abatis abatis NOM m 0.00 0.88 0.00 0.88 +abats abattre VER 43.47 50.61 1.79 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +abattage abattage NOM m s 0.65 1.28 0.63 1.15 +abattages abattage NOM m p 0.65 1.28 0.02 0.14 +abattaient abattre VER 43.47 50.61 0.06 2.36 ind:imp:3p; +abattais abattre VER 43.47 50.61 0.02 0.27 ind:imp:1s; +abattait abattre VER 43.47 50.61 0.42 3.45 ind:imp:3s; +abattant abattre VER 43.47 50.61 0.31 1.96 par:pre; +abattants abattant NOM m p 0.07 0.61 0.01 0.07 +abatte abattre VER 43.47 50.61 0.58 0.61 sub:pre:1s;sub:pre:3s; +abattement abattement NOM m s 0.18 2.64 0.17 2.36 +abattements abattement NOM m p 0.18 2.64 0.01 0.27 +abattent abattre VER 43.47 50.61 0.69 2.03 ind:pre:3p; +abattes abattre VER 43.47 50.61 0.11 0.00 sub:pre:2s; +abatteur abatteur NOM m s 0.14 0.27 0.14 0.20 +abatteurs abatteur NOM m p 0.14 0.27 0.00 0.07 +abattez abattre VER 43.47 50.61 2.21 0.00 imp:pre:2p;ind:pre:2p; +abattiez abattre VER 43.47 50.61 0.06 0.00 ind:imp:2p; +abattions abattre VER 43.47 50.61 0.00 0.07 ind:imp:1p; +abattirent abattre VER 43.47 50.61 0.03 0.95 ind:pas:3p; +abattis abattis NOM m 0.14 1.08 0.14 1.08 +abattit abattre VER 43.47 50.61 0.34 5.07 ind:pas:3s; +abattoir abattoir NOM m s 3.16 4.66 2.67 2.36 +abattoirs abattoir NOM m p 3.16 4.66 0.48 2.30 +abattons abattre VER 43.47 50.61 0.33 0.00 imp:pre:1p;ind:pre:1p; +abattra abattre VER 43.47 50.61 1.51 0.61 ind:fut:3s; +abattrai abattre VER 43.47 50.61 0.39 0.00 ind:fut:1s; +abattraient abattre VER 43.47 50.61 0.03 0.07 cnd:pre:3p; +abattrais abattre VER 43.47 50.61 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +abattrait abattre VER 43.47 50.61 0.63 0.41 cnd:pre:3s; +abattras abattre VER 43.47 50.61 0.03 0.00 ind:fut:2s; +abattre abattre VER 43.47 50.61 14.43 14.32 inf; +abattrez abattre VER 43.47 50.61 0.26 0.00 ind:fut:2p; +abattriez abattre VER 43.47 50.61 0.02 0.00 cnd:pre:2p; +abattrons abattre VER 43.47 50.61 0.11 0.00 ind:fut:1p; +abattront abattre VER 43.47 50.61 0.34 0.07 ind:fut:3p; +abattu abattre VER m s 43.47 50.61 11.48 7.43 par:pas; +abattue abattre VER f s 43.47 50.61 2.19 2.43 par:pas; +abattues abattre VER f p 43.47 50.61 0.44 0.27 par:pas; +abattures abatture NOM f p 0.00 0.14 0.00 0.14 +abattus abattre VER m p 43.47 50.61 2.42 2.43 par:pas; +abbatial abbatial ADJ m s 0.00 0.61 0.00 0.27 +abbatiale abbatial ADJ f s 0.00 0.61 0.00 0.27 +abbatiales abbatial ADJ f p 0.00 0.61 0.00 0.07 +abbaye abbaye NOM f s 3.94 3.78 3.66 3.31 +abbayes abbaye NOM f p 3.94 3.78 0.28 0.47 +abbesse abbé NOM f s 4.46 33.51 0.26 0.41 +abbesses abbé NOM f p 4.46 33.51 0.00 0.61 +abbé abbé NOM m s 4.46 33.51 4.19 31.28 +abbés abbé NOM m p 4.46 33.51 0.02 1.22 +abc abc NOM m 0.04 0.00 0.04 0.00 +abcès abcès NOM m 1.79 3.31 1.79 3.31 +abdication abdication NOM f s 0.05 1.96 0.05 1.82 +abdications abdication NOM f p 0.05 1.96 0.00 0.14 +abdiqua abdiquer VER 0.47 2.77 0.00 0.20 ind:pas:3s; +abdiquai abdiquer VER 0.47 2.77 0.00 0.07 ind:pas:1s; +abdiquaient abdiquer VER 0.47 2.77 0.00 0.07 ind:imp:3p; +abdiquais abdiquer VER 0.47 2.77 0.00 0.14 ind:imp:1s; +abdiquait abdiquer VER 0.47 2.77 0.00 0.20 ind:imp:3s; +abdiquant abdiquer VER 0.47 2.77 0.00 0.07 par:pre; +abdique abdiquer VER 0.47 2.77 0.23 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abdiquer abdiquer VER 0.47 2.77 0.08 0.41 inf; +abdiquera abdiquer VER 0.47 2.77 0.01 0.07 ind:fut:3s; +abdiquerais abdiquer VER 0.47 2.77 0.00 0.07 cnd:pre:1s; +abdiquerait abdiquer VER 0.47 2.77 0.00 0.07 cnd:pre:3s; +abdiquez abdiquer VER 0.47 2.77 0.03 0.00 imp:pre:2p;ind:pre:2p; +abdiqué abdiquer VER m s 0.47 2.77 0.11 0.95 par:pas; +abdiquée abdiquer VER f s 0.47 2.77 0.00 0.07 par:pas; +abdomen abdomen NOM m s 2.76 1.55 2.76 1.55 +abdominal abdominal ADJ m s 2.56 0.74 0.50 0.00 +abdominale abdominal ADJ f s 2.56 0.74 1.30 0.61 +abdominales abdominal ADJ f p 2.56 0.74 0.70 0.00 +abdominaux abdominal NOM m p 0.09 0.68 0.09 0.68 +abdos abdos NOM m p 0.86 0.00 0.86 0.00 +abducteur abducteur ADJ m s 0.01 0.00 0.01 0.00 +abduction abduction NOM f s 0.05 0.00 0.05 0.00 +abeille abeille NOM f s 9.11 9.86 3.53 3.18 +abeilles abeille NOM f p 9.11 9.86 5.59 6.69 +aber aber NOM m s 0.25 0.00 0.25 0.00 +aberrant aberrant ADJ m s 0.84 2.50 0.58 1.08 +aberrante aberrant ADJ f s 0.84 2.50 0.04 0.61 +aberrantes aberrant ADJ f p 0.84 2.50 0.20 0.34 +aberrants aberrant ADJ m p 0.84 2.50 0.02 0.47 +aberration aberration NOM f s 1.16 4.46 0.89 3.31 +aberrations aberration NOM f p 1.16 4.46 0.27 1.15 +abhorrais abhorrer VER 0.27 1.35 0.01 0.07 ind:imp:1s; +abhorrait abhorrer VER 0.27 1.35 0.01 0.68 ind:imp:3s; +abhorrant abhorrer VER 0.27 1.35 0.01 0.07 par:pre; +abhorre abhorrer VER 0.27 1.35 0.20 0.00 ind:pre:1s;ind:pre:3s; +abhorrer abhorrer VER 0.27 1.35 0.00 0.14 inf; +abhorrez abhorrer VER 0.27 1.35 0.03 0.00 ind:pre:2p; +abhorré abhorrer VER m s 0.27 1.35 0.01 0.27 par:pas; +abhorrée abhorré ADJ f s 0.01 0.27 0.01 0.07 +abhorrés abhorrer VER m p 0.27 1.35 0.00 0.07 par:pas; +abject abject ADJ m s 2.19 3.92 1.40 1.69 +abjecte abject ADJ f s 2.19 3.92 0.69 1.49 +abjectement abjectement ADV 0.10 0.07 0.10 0.07 +abjectes abject ADJ f p 2.19 3.92 0.05 0.20 +abjection abjection NOM f s 0.51 2.30 0.37 2.16 +abjections abjection NOM f p 0.51 2.30 0.14 0.14 +abjects abject ADJ m p 2.19 3.92 0.05 0.54 +abjurant abjurer VER 1.53 1.28 0.14 0.00 par:pre; +abjuration abjuration NOM f s 0.00 0.47 0.00 0.41 +abjurations abjuration NOM f p 0.00 0.47 0.00 0.07 +abjure abjurer VER 1.53 1.28 0.77 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abjurer abjurer VER 1.53 1.28 0.22 0.68 inf; +abjurez abjurer VER 1.53 1.28 0.40 0.00 imp:pre:2p;ind:pre:2p; +abjurons abjurer VER 1.53 1.28 0.00 0.07 ind:pre:1p; +abjuré abjurer VER m s 1.53 1.28 0.00 0.41 par:pas; +abkhaze abkhaze ADJ f s 0.00 0.07 0.00 0.07 +ablatif ablatif NOM m s 0.00 0.14 0.00 0.14 +ablation ablation NOM f s 0.45 1.35 0.43 1.28 +ablations ablation NOM f p 0.45 1.35 0.03 0.07 +able able NOM m s 0.68 0.14 0.68 0.14 +ablette ablette NOM f s 0.14 0.95 0.00 0.41 +ablettes ablette NOM f p 0.14 0.95 0.14 0.54 +ablution ablution NOM f s 0.48 1.55 0.01 0.14 +ablutions ablution NOM f p 0.48 1.55 0.47 1.42 +abnégation abnégation NOM f s 0.91 3.58 0.91 3.58 +aboi aboi NOM m s 0.78 3.58 0.00 0.88 +aboie aboyer VER 7.43 11.82 2.91 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aboiement aboiement NOM m s 1.79 5.95 0.44 2.36 +aboiements aboiement NOM m p 1.79 5.95 1.35 3.58 +aboient aboyer VER 7.43 11.82 0.54 0.81 ind:pre:3p; +aboiera aboyer VER 7.43 11.82 0.21 0.00 ind:fut:3s; +aboierait aboyer VER 7.43 11.82 0.01 0.07 cnd:pre:3s; +aboieront aboyer VER 7.43 11.82 0.01 0.07 ind:fut:3p; +aboies aboyer VER 7.43 11.82 0.42 0.00 ind:pre:2s; +abois aboi NOM m p 0.78 3.58 0.78 2.70 +aboli abolir VER m s 3.08 9.32 1.10 1.42 par:pas; +abolie aboli ADJ f s 0.08 2.57 0.06 0.61 +abolies abolir VER f p 3.08 9.32 0.11 0.34 par:pas; +abolir abolir VER 3.08 9.32 1.08 2.97 inf; +abolira abolir VER 3.08 9.32 0.01 0.34 ind:fut:3s; +abolirait abolir VER 3.08 9.32 0.00 0.07 cnd:pre:3s; +aboliras abolir VER 3.08 9.32 0.01 0.00 ind:fut:2s; +abolis abolir VER m p 3.08 9.32 0.14 0.41 ind:pre:1s;par:pas; +abolissaient abolir VER 3.08 9.32 0.00 0.41 ind:imp:3p; +abolissais abolir VER 3.08 9.32 0.00 0.07 ind:imp:1s; +abolissait abolir VER 3.08 9.32 0.00 0.74 ind:imp:3s; +abolissant abolir VER 3.08 9.32 0.25 0.54 par:pre; +abolissent abolir VER 3.08 9.32 0.00 0.14 ind:pre:3p; +abolissions abolir VER 3.08 9.32 0.00 0.07 ind:imp:1p; +abolissons abolir VER 3.08 9.32 0.02 0.00 imp:pre:1p;ind:pre:1p; +abolit abolir VER 3.08 9.32 0.29 1.28 ind:pre:3s;ind:pas:3s; +abolition abolition NOM f s 0.45 1.49 0.45 1.49 +abolitionniste abolitionniste NOM s 0.17 0.07 0.07 0.00 +abolitionnistes abolitionniste NOM p 0.17 0.07 0.10 0.07 +abominable abominable ADJ s 5.39 11.22 4.78 8.99 +abominablement abominablement ADV 0.01 0.68 0.01 0.68 +abominables abominable ADJ p 5.39 11.22 0.62 2.23 +abominaient abominer VER 0.00 0.54 0.00 0.07 ind:imp:3p; +abomination abomination NOM f s 1.94 4.53 1.24 3.04 +abominations abomination NOM f p 1.94 4.53 0.69 1.49 +abomine abominer VER 0.00 0.54 0.00 0.41 ind:pre:1s;ind:pre:3s; +abominer abominer VER 0.00 0.54 0.00 0.07 inf; +abonda abonder VER 1.13 4.59 0.00 0.27 ind:pas:3s; +abondai abonder VER 1.13 4.59 0.00 0.07 ind:pas:1s; +abondaient abonder VER 1.13 4.59 0.12 1.42 ind:imp:3p; +abondais abonder VER 1.13 4.59 0.01 0.14 ind:imp:1s; +abondait abonder VER 1.13 4.59 0.02 0.47 ind:imp:3s; +abondamment abondamment ADV 0.30 4.93 0.30 4.93 +abondance abondance NOM f s 2.76 9.39 2.76 9.39 +abondant abondant ADJ m s 1.36 7.03 0.09 1.42 +abondante abondant ADJ f s 1.36 7.03 0.89 3.45 +abondantes abondant ADJ f p 1.36 7.03 0.33 1.22 +abondants abondant ADJ m p 1.36 7.03 0.05 0.95 +abondassent abonder VER 1.13 4.59 0.00 0.07 sub:imp:3p; +abonde abonder VER 1.13 4.59 0.28 0.81 ind:pre:1s;ind:pre:3s; +abondent abonder VER 1.13 4.59 0.63 0.47 ind:pre:3p; +abonder abonder VER 1.13 4.59 0.03 0.61 inf; +abondé abonder VER m s 1.13 4.59 0.01 0.20 par:pas; +abonnai abonner VER 1.10 2.09 0.00 0.07 ind:pas:1s; +abonnant abonner VER 1.10 2.09 0.01 0.00 par:pre; +abonne abonner VER 1.10 2.09 0.18 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abonnement abonnement NOM m s 4.82 1.62 3.37 1.55 +abonnements abonnement NOM m p 4.82 1.62 1.45 0.07 +abonner abonner VER 1.10 2.09 0.27 0.14 inf; +abonnez abonner VER 1.10 2.09 0.03 0.07 imp:pre:2p;ind:pre:2p; +abonnât abonner VER 1.10 2.09 0.00 0.07 sub:imp:3s; +abonné abonner VER m s 1.10 2.09 0.30 0.88 par:pas; +abonnée abonner VER f s 1.10 2.09 0.15 0.68 par:pas; +abonnées abonné NOM f p 0.87 2.23 0.02 0.20 +abonnés abonné NOM m p 0.87 2.23 0.52 1.55 +abord abord NOM m s 2.22 19.05 0.89 7.30 +aborda aborder VER 12.55 33.18 0.16 3.99 ind:pas:3s; +abordable abordable ADJ s 0.47 0.20 0.34 0.20 +abordables abordable ADJ p 0.47 0.20 0.13 0.00 +abordage abordage NOM m s 1.22 1.49 1.17 1.42 +abordages abordage NOM m p 1.22 1.49 0.05 0.07 +abordai aborder VER 12.55 33.18 0.00 0.61 ind:pas:1s; +abordaient aborder VER 12.55 33.18 0.03 1.28 ind:imp:3p; +abordais aborder VER 12.55 33.18 0.00 0.54 ind:imp:1s; +abordait aborder VER 12.55 33.18 0.47 2.50 ind:imp:3s; +abordant aborder VER 12.55 33.18 0.03 1.42 par:pre; +aborde aborder VER 12.55 33.18 1.76 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abordent aborder VER 12.55 33.18 0.09 0.54 ind:pre:3p; +aborder aborder VER 12.55 33.18 5.65 12.91 inf; +abordera aborder VER 12.55 33.18 0.20 0.34 ind:fut:3s; +aborderai aborder VER 12.55 33.18 0.08 0.14 ind:fut:1s; +aborderaient aborder VER 12.55 33.18 0.00 0.07 cnd:pre:3p; +aborderais aborder VER 12.55 33.18 0.02 0.07 cnd:pre:1s; +aborderait aborder VER 12.55 33.18 0.02 0.14 cnd:pre:3s; +aborderiez aborder VER 12.55 33.18 0.01 0.00 cnd:pre:2p; +aborderions aborder VER 12.55 33.18 0.00 0.14 cnd:pre:1p; +aborderons aborder VER 12.55 33.18 0.09 0.07 ind:fut:1p; +aborderont aborder VER 12.55 33.18 0.04 0.14 ind:fut:3p; +abordes aborder VER 12.55 33.18 0.36 0.07 ind:pre:2s; +abordez aborder VER 12.55 33.18 0.75 0.00 imp:pre:2p;ind:pre:2p; +abordiez aborder VER 12.55 33.18 0.02 0.07 ind:imp:2p; +abordions aborder VER 12.55 33.18 0.04 0.34 ind:imp:1p; +abordâmes aborder VER 12.55 33.18 0.00 0.27 ind:pas:1p; +abordons aborder VER 12.55 33.18 0.72 0.41 imp:pre:1p;ind:pre:1p; +abords abord NOM m p 2.22 19.05 1.33 11.76 +abordèrent aborder VER 12.55 33.18 0.01 0.68 ind:pas:3p; +abordé aborder VER m s 12.55 33.18 1.36 2.97 par:pas; +abordée aborder VER f s 12.55 33.18 0.34 0.54 par:pas; +abordées aborder VER f p 12.55 33.18 0.05 0.20 par:pas; +abordés aborder VER m p 12.55 33.18 0.26 0.41 par:pas; +aborigène aborigène NOM s 0.60 0.14 0.21 0.00 +aborigènes aborigène NOM p 0.60 0.14 0.39 0.14 +abornement abornement NOM m s 0.00 0.07 0.00 0.07 +abortif abortif ADJ m s 0.04 0.34 0.01 0.00 +abortive abortif ADJ f s 0.04 0.34 0.01 0.14 +abortives abortif ADJ f p 0.04 0.34 0.02 0.20 +abâtardi abâtardir VER m s 0.14 0.41 0.00 0.20 par:pas; +abâtardie abâtardi ADJ f s 0.01 0.07 0.01 0.07 +abâtardies abâtardir VER f p 0.14 0.41 0.00 0.07 par:pas; +abâtardir abâtardir VER 0.14 0.41 0.00 0.07 inf; +abâtardirai abâtardir VER 0.14 0.41 0.00 0.07 ind:fut:1s; +abâtardissant abâtardir VER 0.14 0.41 0.14 0.00 par:pre; +abouchaient aboucher VER 0.00 0.81 0.00 0.07 ind:imp:3p; +abouchais aboucher VER 0.00 0.81 0.00 0.07 ind:imp:1s; +abouchait aboucher VER 0.00 0.81 0.00 0.07 ind:imp:3s; +abouchant aboucher VER 0.00 0.81 0.00 0.07 par:pre; +abouchements abouchement NOM m p 0.00 0.07 0.00 0.07 +aboucher aboucher VER 0.00 0.81 0.00 0.34 inf; +abouché aboucher VER m s 0.00 0.81 0.00 0.07 par:pas; +abouchée aboucher VER f s 0.00 0.81 0.00 0.07 par:pas; +abouchés aboucher VER m p 0.00 0.81 0.00 0.07 par:pas; +aboule abouler VER 1.80 0.61 1.43 0.34 imp:pre:2s;ind:pre:3s; +abouler abouler VER 1.80 0.61 0.11 0.14 inf; +aboules abouler VER 1.80 0.61 0.01 0.00 ind:pre:2s; +aboulez abouler VER 1.80 0.61 0.25 0.14 imp:pre:2p; +aboulie aboulie NOM f s 0.00 0.14 0.00 0.14 +aboulique aboulique NOM s 0.00 0.07 0.00 0.07 +abouliques aboulique ADJ p 0.00 0.14 0.00 0.14 +abounas abouna NOM m p 0.00 0.07 0.00 0.07 +about about NOM m s 5.94 0.47 5.94 0.47 +aboutîmes aboutir VER 5.34 25.81 0.00 0.14 ind:pas:1p; +aboutait abouter VER 0.00 0.14 0.00 0.07 ind:imp:3s; +abouti aboutir VER m s 5.34 25.81 1.24 2.84 par:pas; +aboutie abouti ADJ f s 0.11 0.20 0.04 0.07 +aboutir aboutir VER 5.34 25.81 1.34 9.80 inf; +aboutira aboutir VER 5.34 25.81 0.29 0.41 ind:fut:3s; +aboutirai aboutir VER 5.34 25.81 0.00 0.07 ind:fut:1s; +aboutiraient aboutir VER 5.34 25.81 0.01 0.14 cnd:pre:3p; +aboutirais aboutir VER 5.34 25.81 0.00 0.14 cnd:pre:1s; +aboutirait aboutir VER 5.34 25.81 0.05 0.61 cnd:pre:3s; +aboutiras aboutir VER 5.34 25.81 0.00 0.07 ind:fut:2s; +aboutirent aboutir VER 5.34 25.81 0.00 0.68 ind:pas:3p; +aboutirons aboutir VER 5.34 25.81 0.01 0.00 ind:fut:1p; +aboutiront aboutir VER 5.34 25.81 0.04 0.27 ind:fut:3p; +aboutis aboutir VER m p 5.34 25.81 0.07 0.34 ind:pre:1s;ind:pre:2s;par:pas; +aboutissaient aboutir VER 5.34 25.81 0.15 1.15 ind:imp:3p; +aboutissait aboutir VER 5.34 25.81 0.03 2.50 ind:imp:3s; +aboutissant aboutir VER 5.34 25.81 0.00 1.15 par:pre; +aboutissants aboutissant NOM m p 0.09 0.95 0.09 0.81 +aboutisse aboutir VER 5.34 25.81 0.08 0.41 sub:pre:1s;sub:pre:3s; +aboutissement aboutissement NOM m s 0.50 4.05 0.50 4.05 +aboutissent aboutir VER 5.34 25.81 0.47 1.49 ind:pre:3p; +aboutissez aboutir VER 5.34 25.81 0.02 0.07 ind:pre:2p; +aboutissiez aboutir VER 5.34 25.81 0.00 0.07 ind:imp:2p; +aboutissions aboutir VER 5.34 25.81 0.00 0.07 ind:imp:1p; +aboutit aboutir VER 5.34 25.81 1.50 3.45 ind:pre:3s;ind:pas:3s; +aboutonnai aboutonner VER 0.00 0.07 0.00 0.07 ind:pas:1s; +aboutons abouter VER 0.00 0.14 0.00 0.07 imp:pre:1p; +aboya aboyer VER 7.43 11.82 0.00 1.42 ind:pas:3s; +aboyaient aboyer VER 7.43 11.82 0.05 0.68 ind:imp:3p; +aboyait aboyer VER 7.43 11.82 0.33 1.55 ind:imp:3s; +aboyant aboyer VER 7.43 11.82 0.18 1.28 par:pre; +aboyante aboyant ADJ f s 0.01 0.20 0.00 0.07 +aboyer aboyer VER 7.43 11.82 2.39 3.04 inf; +aboyeur aboyeur NOM m s 0.06 0.61 0.05 0.34 +aboyeurs aboyeur NOM m p 0.06 0.61 0.01 0.27 +aboyons aboyer VER 7.43 11.82 0.10 0.07 ind:pre:1p; +aboyèrent aboyer VER 7.43 11.82 0.00 0.27 ind:pas:3p; +aboyé aboyer VER m s 7.43 11.82 0.28 0.54 par:pas; +abracadabra abracadabra NOM m s 0.98 0.27 0.98 0.27 +abracadabrant abracadabrant ADJ m s 0.26 0.68 0.03 0.20 +abracadabrante abracadabrant ADJ f s 0.26 0.68 0.13 0.00 +abracadabrantes abracadabrant ADJ f p 0.26 0.68 0.10 0.34 +abracadabrants abracadabrant ADJ m p 0.26 0.68 0.00 0.14 +abracadabré abracadabrer VER m s 0.01 0.00 0.01 0.00 par:pas; +abrasif abrasif NOM m s 0.15 0.41 0.13 0.34 +abrasifs abrasif NOM m p 0.15 0.41 0.03 0.07 +abrasion abrasion NOM f s 0.19 0.14 0.19 0.14 +abrasive abrasif ADJ f s 0.09 0.27 0.04 0.00 +abrasé abraser VER m s 0.00 0.07 0.00 0.07 par:pas; +abraxas abraxas NOM m 0.29 0.00 0.29 0.00 +abreuva abreuver VER 1.13 6.22 0.00 0.27 ind:pas:3s; +abreuvage abreuvage NOM m s 0.00 0.07 0.00 0.07 +abreuvaient abreuver VER 1.13 6.22 0.00 0.27 ind:imp:3p; +abreuvait abreuver VER 1.13 6.22 0.03 0.47 ind:imp:3s; +abreuvant abreuver VER 1.13 6.22 0.01 0.34 par:pre; +abreuve abreuver VER 1.13 6.22 0.23 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abreuvent abreuver VER 1.13 6.22 0.04 0.34 ind:pre:3p; +abreuver abreuver VER 1.13 6.22 0.48 2.09 inf; +abreuvera abreuver VER 1.13 6.22 0.11 0.00 ind:fut:3s; +abreuveraient abreuver VER 1.13 6.22 0.00 0.07 cnd:pre:3p; +abreuvez abreuver VER 1.13 6.22 0.03 0.00 imp:pre:2p;ind:pre:2p; +abreuvoir abreuvoir NOM m s 0.35 3.92 0.34 3.24 +abreuvoirs abreuvoir NOM m p 0.35 3.92 0.01 0.68 +abreuvons abreuver VER 1.13 6.22 0.01 0.07 imp:pre:1p; +abreuvé abreuver VER m s 1.13 6.22 0.04 0.68 par:pas; +abreuvée abreuver VER f s 1.13 6.22 0.10 0.27 par:pas; +abreuvés abreuver VER m p 1.13 6.22 0.04 0.27 par:pas; +abri_refuge abri_refuge NOM m s 0.00 0.07 0.00 0.07 +abri abri NOM m s 25.90 56.76 22.70 51.08 +abribus abribus NOM m 0.04 0.14 0.04 0.14 +abricot abricot NOM m s 1.24 2.50 0.50 1.15 +abricotez abricoter VER 0.01 0.00 0.01 0.00 imp:pre:2p; +abricotier abricotier NOM m s 0.02 0.41 0.02 0.14 +abricotiers abricotier NOM m p 0.02 0.41 0.00 0.27 +abricotine abricotine NOM f s 0.00 0.07 0.00 0.07 +abricots abricot NOM m p 1.24 2.50 0.74 1.35 +abris abri NOM m p 25.90 56.76 3.20 5.68 +abrita abriter VER 7.91 26.22 0.02 0.68 ind:pas:3s; +abritai abriter VER 7.91 26.22 0.00 0.07 ind:pas:1s; +abritaient abriter VER 7.91 26.22 0.14 1.49 ind:imp:3p; +abritais abriter VER 7.91 26.22 0.01 0.14 ind:imp:1s; +abritait abriter VER 7.91 26.22 0.23 4.53 ind:imp:3s; +abritant abriter VER 7.91 26.22 0.25 1.82 par:pre; +abrite abriter VER 7.91 26.22 2.09 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abritent abriter VER 7.91 26.22 0.33 1.15 ind:pre:3p; +abriter abriter VER 7.91 26.22 2.36 6.96 ind:pre:2p;inf; +abritera abriter VER 7.91 26.22 0.10 0.07 ind:fut:3s; +abriterait abriter VER 7.91 26.22 0.04 0.20 cnd:pre:3s; +abriterons abriter VER 7.91 26.22 0.03 0.00 ind:fut:1p; +abriteront abriter VER 7.91 26.22 0.01 0.07 ind:fut:3p; +abrites abriter VER 7.91 26.22 0.14 0.07 ind:pre:2s; +abritez abriter VER 7.91 26.22 1.08 0.20 imp:pre:2p;ind:pre:2p; +abritiez abriter VER 7.91 26.22 0.01 0.00 ind:imp:2p; +abritions abriter VER 7.91 26.22 0.01 0.14 ind:imp:1p; +abritâmes abriter VER 7.91 26.22 0.01 0.00 ind:pas:1p; +abritons abriter VER 7.91 26.22 0.40 0.00 imp:pre:1p;ind:pre:1p; +abritèrent abriter VER 7.91 26.22 0.00 0.07 ind:pas:3p; +abrité abriter VER m s 7.91 26.22 0.35 3.11 par:pas; +abritée abriter VER f s 7.91 26.22 0.04 1.15 par:pas; +abritées abriter VER f p 7.91 26.22 0.24 0.54 par:pas; +abrités abrité ADJ m p 0.17 1.08 0.03 0.07 +abrogation abrogation NOM f s 0.16 0.14 0.16 0.14 +abrogent abroger VER 0.71 0.34 0.23 0.00 ind:pre:3p; +abroger abroger VER 0.71 0.34 0.09 0.07 inf; +abrogé abroger VER m s 0.71 0.34 0.11 0.00 par:pas; +abrogée abroger VER f s 0.71 0.34 0.28 0.00 par:pas; +abrogées abroger VER f p 0.71 0.34 0.00 0.14 par:pas; +abrogés abroger VER m p 0.71 0.34 0.01 0.14 par:pas; +abrège abréger VER 4.21 4.86 1.25 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abrègent abréger VER 4.21 4.86 0.22 0.34 ind:pre:3p; +abrégea abréger VER 4.21 4.86 0.02 0.14 ind:pas:3s; +abrégeai abréger VER 4.21 4.86 0.00 0.07 ind:pas:1s; +abrégeaient abréger VER 4.21 4.86 0.00 0.07 ind:imp:3p; +abrégeait abréger VER 4.21 4.86 0.00 0.20 ind:imp:3s; +abrégeant abréger VER 4.21 4.86 0.00 0.07 par:pre; +abrégeons abréger VER 4.21 4.86 0.12 0.07 imp:pre:1p; +abrégeât abréger VER 4.21 4.86 0.00 0.07 sub:imp:3s; +abréger abréger VER 4.21 4.86 1.61 1.82 inf; +abrégera abréger VER 4.21 4.86 0.01 0.00 ind:fut:3s; +abrégerai abréger VER 4.21 4.86 0.01 0.00 ind:fut:1s; +abrégerait abréger VER 4.21 4.86 0.00 0.07 cnd:pre:3s; +abrégez abréger VER 4.21 4.86 0.73 0.07 imp:pre:2p; +abrégé abréger VER m s 4.21 4.86 0.19 0.41 par:pas; +abrégée abrégé ADJ f s 0.20 0.41 0.13 0.20 +abrégés abrégé NOM m p 0.12 0.54 0.01 0.07 +abrupt abrupt ADJ m s 1.36 7.43 0.54 2.23 +abrupte abrupt ADJ f s 1.36 7.43 0.43 2.84 +abruptement abruptement ADV 0.07 2.03 0.07 2.03 +abruptes abrupt ADJ f p 1.36 7.43 0.24 1.55 +abrupts abrupt ADJ m p 1.36 7.43 0.14 0.81 +abruti abruti NOM m s 25.64 6.69 19.13 4.39 +abrutie abruti NOM f s 25.64 6.69 0.38 0.47 +abruties abruti ADJ f p 6.13 4.66 0.03 0.07 +abrutir abrutir VER 2.56 6.01 0.11 0.95 inf; +abrutira abrutir VER 2.56 6.01 0.00 0.07 ind:fut:3s; +abrutis abruti NOM m p 25.64 6.69 6.10 1.82 +abrutissaient abrutir VER 2.56 6.01 0.00 0.20 ind:imp:3p; +abrutissais abrutir VER 2.56 6.01 0.00 0.07 ind:imp:1s; +abrutissait abrutir VER 2.56 6.01 0.14 0.27 ind:imp:3s; +abrutissant abrutissant ADJ m s 0.19 0.41 0.14 0.14 +abrutissante abrutissant ADJ f s 0.19 0.41 0.00 0.27 +abrutissantes abrutissant ADJ f p 0.19 0.41 0.02 0.00 +abrutissants abrutissant ADJ m p 0.19 0.41 0.03 0.00 +abrutissement abrutissement NOM m s 0.13 1.42 0.13 1.42 +abrutissent abrutir VER 2.56 6.01 0.16 0.00 ind:pre:3p; +abrutisseur abrutisseur NOM m s 0.00 0.07 0.00 0.07 +abrutissions abrutir VER 2.56 6.01 0.00 0.07 ind:imp:1p; +abrutit abrutir VER 2.56 6.01 0.19 0.41 ind:pre:3s;ind:pas:3s; +abréviatif abréviatif ADJ m s 0.00 0.07 0.00 0.07 +abréviation abréviation NOM f s 0.46 0.95 0.37 0.41 +abréviations abréviation NOM f p 0.46 0.95 0.09 0.54 +abscisse abscisse NOM f s 0.02 0.00 0.02 0.00 +abscission abscission NOM f s 0.00 0.07 0.00 0.07 +abscons abscons ADJ m 0.12 0.68 0.12 0.54 +absconse abscons ADJ f s 0.12 0.68 0.00 0.07 +absconses abscons ADJ f p 0.12 0.68 0.00 0.07 +absence absence NOM f s 22.86 76.28 22.02 72.50 +absences absence NOM f p 22.86 76.28 0.84 3.78 +absent absent ADJ m s 14.91 29.80 9.46 18.18 +absenta absenter VER 6.14 6.01 0.00 0.34 ind:pas:3s; +absentai absenter VER 6.14 6.01 0.00 0.07 ind:pas:1s; +absentaient absenter VER 6.14 6.01 0.00 0.14 ind:imp:3p; +absentais absenter VER 6.14 6.01 0.04 0.14 ind:imp:1s;ind:imp:2s; +absentait absenter VER 6.14 6.01 0.16 1.15 ind:imp:3s; +absentant absenter VER 6.14 6.01 0.00 0.07 par:pre; +absente absent ADJ f s 14.91 29.80 3.49 6.22 +absenter absenter VER 6.14 6.01 2.90 1.49 inf; +absentera absenter VER 6.14 6.01 0.03 0.14 ind:fut:3s; +absenterai absenter VER 6.14 6.01 0.03 0.07 ind:fut:1s; +absenterait absenter VER 6.14 6.01 0.00 0.07 cnd:pre:3s; +absentes absenter VER 6.14 6.01 0.07 0.00 ind:pre:2s; +absents absent ADJ m p 14.91 29.80 1.91 4.80 +absentèrent absenter VER 6.14 6.01 0.00 0.07 ind:pas:3p; +absenté absenter VER m s 6.14 6.01 0.89 0.34 par:pas; +absentée absenter VER f s 6.14 6.01 0.42 0.20 par:pas; +absentéisme absentéisme NOM m s 0.14 0.20 0.14 0.20 +absentéiste absentéiste ADJ m s 0.01 0.00 0.01 0.00 +absentéiste absentéiste NOM s 0.01 0.00 0.01 0.00 +absentés absenter VER m p 6.14 6.01 0.15 0.07 par:pas; +abside abside NOM f s 0.00 1.62 0.00 1.55 +absides abside NOM f p 0.00 1.62 0.00 0.07 +absidiales absidial ADJ f p 0.00 0.14 0.00 0.14 +absidiole absidiole NOM f s 0.00 0.07 0.00 0.07 +absinthant absinther VER 0.00 0.07 0.00 0.07 par:pre; +absinthe absinthe NOM f s 1.28 2.91 1.28 2.91 +absolu absolu ADJ m s 17.25 34.39 8.55 16.42 +absolue absolu ADJ f s 17.25 34.39 8.44 16.15 +absolues absolu ADJ f p 17.25 34.39 0.20 1.01 +absolument absolument ADV 89.79 63.45 89.79 63.45 +absolus absolu ADJ m p 17.25 34.39 0.06 0.81 +absolution absolution NOM f s 1.06 2.50 1.06 2.50 +absolutisme absolutisme NOM m s 0.12 0.68 0.12 0.68 +absolvaient absoudre VER 2.66 3.72 0.00 0.07 ind:imp:3p; +absolvait absoudre VER 2.66 3.72 0.00 0.27 ind:imp:3s; +absolvant absolvant ADJ m s 0.00 0.14 0.00 0.14 +absolve absoudre VER 2.66 3.72 0.16 0.00 sub:pre:3s; +absolvent absoudre VER 2.66 3.72 0.00 0.20 ind:pre:3p; +absolves absoudre VER 2.66 3.72 0.01 0.00 sub:pre:2s; +absorba absorber VER 6.66 28.65 0.11 2.03 ind:pas:3s; +absorbables absorbable ADJ m p 0.00 0.07 0.00 0.07 +absorbai absorber VER 6.66 28.65 0.00 0.07 ind:pas:1s; +absorbaient absorber VER 6.66 28.65 0.04 0.68 ind:imp:3p; +absorbais absorber VER 6.66 28.65 0.00 0.27 ind:imp:1s; +absorbait absorber VER 6.66 28.65 0.20 3.11 ind:imp:3s; +absorbant absorbant ADJ m s 0.14 1.35 0.08 0.81 +absorbante absorbant ADJ f s 0.14 1.35 0.04 0.27 +absorbantes absorbant ADJ f p 0.14 1.35 0.01 0.20 +absorbants absorbant ADJ m p 0.14 1.35 0.01 0.07 +absorbe absorber VER 6.66 28.65 1.61 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +absorbent absorber VER 6.66 28.65 0.33 0.61 ind:pre:3p; +absorber absorber VER 6.66 28.65 1.86 4.53 inf; +absorbera absorber VER 6.66 28.65 0.23 0.07 ind:fut:3s; +absorberai absorber VER 6.66 28.65 0.02 0.00 ind:fut:1s; +absorberaient absorber VER 6.66 28.65 0.11 0.07 cnd:pre:3p; +absorberait absorber VER 6.66 28.65 0.04 0.14 cnd:pre:3s; +absorbeur absorbeur NOM m s 0.03 0.00 0.03 0.00 +absorbez absorber VER 6.66 28.65 0.06 0.00 imp:pre:2p;ind:pre:2p; +absorbions absorber VER 6.66 28.65 0.00 0.07 ind:imp:1p; +absorbons absorber VER 6.66 28.65 0.00 0.07 ind:pre:1p; +absorbèrent absorber VER 6.66 28.65 0.01 0.41 ind:pas:3p; +absorbé absorber VER m s 6.66 28.65 1.35 7.84 par:pas; +absorbée absorber VER f s 6.66 28.65 0.40 2.30 par:pas; +absorbées absorber VER f p 6.66 28.65 0.07 0.41 par:pas; +absorbés absorber VER m p 6.66 28.65 0.16 1.69 par:pas; +absorption absorption NOM f s 0.58 2.03 0.58 1.89 +absorptions absorption NOM f p 0.58 2.03 0.00 0.14 +absoudrai absoudre VER 2.66 3.72 0.01 0.00 ind:fut:1s; +absoudrait absoudre VER 2.66 3.72 0.14 0.14 cnd:pre:3s; +absoudre absoudre VER 2.66 3.72 1.08 1.55 inf; +absoudriez absoudre VER 2.66 3.72 0.01 0.07 cnd:pre:2p; +absous absoudre VER m 2.66 3.72 1.15 1.08 imp:pre:2s;ind:pre:1s;par:pas;par:pas;par:pas; +absout absoudre VER 2.66 3.72 0.11 0.20 ind:pre:3s; +absoute absoute NOM f s 0.00 0.14 0.00 0.14 +absoutes absoudre VER f p 2.66 3.72 0.00 0.07 par:pas; +abstînt abstenir VER 4.52 8.78 0.00 0.27 sub:imp:3s; +abstenaient abstenir VER 4.52 8.78 0.00 0.07 ind:imp:3p; +abstenais abstenir VER 4.52 8.78 0.01 0.34 ind:imp:1s; +abstenait abstenir VER 4.52 8.78 0.00 0.81 ind:imp:3s; +abstenant abstenir VER 4.52 8.78 0.12 0.41 par:pre; +abstenez abstenir VER 4.52 8.78 0.57 0.07 imp:pre:2p;ind:pre:2p; +absteniez abstenir VER 4.52 8.78 0.01 0.00 ind:imp:2p; +abstenions abstenir VER 4.52 8.78 0.00 0.07 ind:imp:1p; +abstenir abstenir VER 4.52 8.78 1.80 2.77 inf; +abstenons abstenir VER 4.52 8.78 0.02 0.20 imp:pre:1p;ind:pre:1p; +abstention abstention NOM f s 0.14 1.28 0.14 1.28 +abstentionniste abstentionniste NOM s 0.01 0.14 0.01 0.00 +abstentionnistes abstentionniste NOM p 0.01 0.14 0.00 0.14 +abstenu abstenir VER m s 4.52 8.78 0.17 0.81 par:pas; +abstenue abstenir VER f s 4.52 8.78 0.05 0.47 par:pas; +abstenues abstenir VER f p 4.52 8.78 0.14 0.00 par:pas; +abstenus abstenir VER m p 4.52 8.78 0.00 0.14 par:pas; +abstiendrai abstenir VER 4.52 8.78 0.04 0.00 ind:fut:1s; +abstiendraient abstenir VER 4.52 8.78 0.00 0.07 cnd:pre:3p; +abstiendrais abstenir VER 4.52 8.78 0.03 0.00 cnd:pre:1s; +abstiendrait abstenir VER 4.52 8.78 0.02 0.07 cnd:pre:3s; +abstiendras abstenir VER 4.52 8.78 0.01 0.07 ind:fut:2s; +abstiendrions abstenir VER 4.52 8.78 0.00 0.14 cnd:pre:1p; +abstiendrons abstenir VER 4.52 8.78 0.12 0.00 ind:fut:1p; +abstiendront abstenir VER 4.52 8.78 0.12 0.00 ind:fut:3p; +abstienne abstenir VER 4.52 8.78 0.02 0.07 sub:pre:1s;sub:pre:3s; +abstiennent abstenir VER 4.52 8.78 0.02 0.20 ind:pre:3p; +abstiennes abstenir VER 4.52 8.78 0.02 0.00 sub:pre:2s; +abstiens abstenir VER 4.52 8.78 0.84 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +abstient abstenir VER 4.52 8.78 0.17 0.34 ind:pre:3s; +abstinence abstinence NOM f s 1.62 1.62 1.60 1.42 +abstinences abstinence NOM f p 1.62 1.62 0.02 0.20 +abstinent abstinent ADJ m s 0.11 0.00 0.10 0.00 +abstinente abstinent ADJ f s 0.11 0.00 0.01 0.00 +abstinrent abstenir VER 4.52 8.78 0.01 0.07 ind:pas:3p; +abstins abstenir VER 4.52 8.78 0.00 0.41 ind:pas:1s; +abstint abstenir VER 4.52 8.78 0.20 0.81 ind:pas:3s; +abstraction abstraction NOM f s 0.68 2.97 0.66 2.09 +abstractions abstraction NOM f p 0.68 2.97 0.03 0.88 +abstraire abstraire VER 0.27 3.18 0.02 0.74 inf; +abstrais abstraire VER 0.27 3.18 0.00 0.07 ind:pre:1s; +abstrait abstrait ADJ m s 1.62 11.35 0.61 3.85 +abstraite abstrait ADJ f s 1.62 11.35 0.69 4.80 +abstraitement abstraitement ADV 0.00 0.34 0.00 0.34 +abstraites abstraire VER f p 0.27 3.18 0.11 0.20 par:pas; +abstraits abstrait ADJ m p 1.62 11.35 0.25 1.15 +abstrus abstrus ADJ m p 0.00 0.54 0.00 0.34 +abstruse abstrus ADJ f s 0.00 0.54 0.00 0.14 +abstruses abstrus ADJ f p 0.00 0.54 0.00 0.07 +absurde absurde ADJ s 23.59 30.95 21.56 24.80 +absurdement absurdement ADV 0.14 3.72 0.14 3.72 +absurdes absurde ADJ p 23.59 30.95 2.03 6.15 +absurdistes absurdiste NOM p 0.00 0.07 0.00 0.07 +absurdité absurdité NOM f s 2.34 6.28 1.44 5.54 +absurdités absurdité NOM f p 2.34 6.28 0.90 0.74 +abécédaire abécédaire NOM m s 0.18 0.07 0.18 0.07 +abus abus NOM m 4.75 8.58 4.75 8.58 +abusa abuser VER 19.98 14.26 0.02 0.20 ind:pas:3s; +abusai abuser VER 19.98 14.26 0.00 0.07 ind:pas:1s; +abusaient abuser VER 19.98 14.26 0.04 0.27 ind:imp:3p; +abusais abuser VER 19.98 14.26 0.03 0.27 ind:imp:1s; +abusait abuser VER 19.98 14.26 0.53 1.82 ind:imp:3s; +abusant abuser VER 19.98 14.26 0.24 0.81 par:pre; +abuse abuser VER 19.98 14.26 4.08 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +abusent abuser VER 19.98 14.26 1.02 0.88 ind:pre:3p; +abuser abuser VER 19.98 14.26 5.87 4.12 inf; +abusera abuser VER 19.98 14.26 0.04 0.00 ind:fut:3s; +abuserai abuser VER 19.98 14.26 0.03 0.07 ind:fut:1s; +abuserais abuser VER 19.98 14.26 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +abuserait abuser VER 19.98 14.26 0.02 0.07 cnd:pre:3s; +abuserez abuser VER 19.98 14.26 0.01 0.07 ind:fut:2p; +abuseriez abuser VER 19.98 14.26 0.02 0.00 cnd:pre:2p; +abuses abuser VER 19.98 14.26 0.50 0.07 ind:pre:2s; +abuseur abuseur NOM m s 0.04 0.00 0.04 0.00 +abusez abuser VER 19.98 14.26 1.93 0.34 imp:pre:2p;ind:pre:2p; +abusiez abuser VER 19.98 14.26 0.02 0.00 ind:imp:2p; +abusif abusif ADJ m s 0.85 1.82 0.37 0.61 +abusifs abusif ADJ m p 0.85 1.82 0.05 0.14 +abusive abusif ADJ f s 0.85 1.82 0.39 0.74 +abusivement abusivement ADV 0.16 1.15 0.16 1.15 +abusives abusif ADJ f p 0.85 1.82 0.03 0.34 +abusons abuser VER 19.98 14.26 0.37 0.00 imp:pre:1p;ind:pre:1p; +abusèrent abuser VER 19.98 14.26 0.00 0.07 ind:pas:3p; +abusé abuser VER m s 19.98 14.26 4.59 2.70 par:pas; +abusée abuser VER f s 19.98 14.26 0.29 0.27 par:pas; +abusées abusé ADJ f p 0.20 0.74 0.03 0.00 +abusés abuser VER m p 19.98 14.26 0.22 0.34 par:pas; +abêti abêtir VER m s 0.01 1.28 0.00 0.47 par:pas; +abêties abêti ADJ f p 0.00 0.27 0.00 0.07 +abêtir abêtir VER 0.01 1.28 0.01 0.54 inf; +abêtis abêtir VER 0.01 1.28 0.00 0.07 ind:pre:2s; +abêtissait abêtir VER 0.01 1.28 0.00 0.14 ind:imp:3s; +abêtissement abêtissement NOM m s 0.00 0.54 0.00 0.54 +abêtit abêtir VER 0.01 1.28 0.00 0.07 ind:pas:3s; +abyme abyme NOM m s 0.04 0.07 0.04 0.07 +abyssal abyssal ADJ m s 0.11 0.74 0.03 0.34 +abyssale abyssal ADJ f s 0.11 0.74 0.05 0.20 +abyssales abyssal ADJ f p 0.11 0.74 0.02 0.20 +abysse abysse NOM m s 1.07 0.41 0.53 0.07 +abysses abysse NOM m p 1.07 0.41 0.54 0.34 +abyssin abyssin NOM m s 0.14 0.14 0.14 0.14 +abyssinien abyssinien ADJ m s 0.10 0.00 0.10 0.00 +abyssinienne abyssinien NOM f s 0.01 0.00 0.01 0.00 +abyssins abyssin ADJ m p 0.00 0.20 0.00 0.07 +acabit acabit NOM m s 0.17 1.62 0.17 1.55 +acabits acabit NOM m p 0.17 1.62 0.00 0.07 +acacia acacia NOM m s 0.26 6.35 0.05 3.24 +acacias acacia NOM m p 0.26 6.35 0.21 3.11 +acadien acadien NOM m s 0.16 0.07 0.14 0.00 +acadienne acadienne NOM f s 0.03 0.00 0.03 0.00 +acadiens acadien NOM m p 0.16 0.07 0.01 0.07 +académicien académicien NOM m s 0.35 1.55 0.14 0.74 +académiciens académicien NOM m p 0.35 1.55 0.21 0.81 +académie académie NOM f s 10.03 9.46 9.91 8.31 +académies académie NOM f p 10.03 9.46 0.12 1.15 +académique académique ADJ s 1.41 1.15 0.87 0.61 +académiquement académiquement ADV 0.01 0.14 0.01 0.14 +académiques académique ADJ p 1.41 1.15 0.54 0.54 +académisme académisme NOM m s 0.00 0.27 0.00 0.27 +académisé académiser VER m s 0.00 0.07 0.00 0.07 par:pas; +acagnardai acagnarder VER 0.00 0.74 0.00 0.07 ind:pas:1s; +acagnardait acagnarder VER 0.00 0.74 0.00 0.14 ind:imp:3s; +acagnarder acagnarder VER 0.00 0.74 0.00 0.14 inf; +acagnardé acagnarder VER m s 0.00 0.74 0.00 0.34 par:pas; +acagnardée acagnarder VER f s 0.00 0.74 0.00 0.07 par:pas; +acajou acajou NOM m s 0.52 5.95 0.52 5.81 +acajous acajou NOM m p 0.52 5.95 0.00 0.14 +acanthe acanthe NOM f s 0.04 0.61 0.04 0.27 +acanthes acanthe NOM f p 0.04 0.61 0.00 0.34 +acariens acarien NOM m p 0.07 0.07 0.07 0.07 +acariâtre acariâtre ADJ s 0.14 1.55 0.13 1.22 +acariâtres acariâtre ADJ f p 0.14 1.55 0.01 0.34 +accabla accabler VER 5.55 21.28 0.14 0.95 ind:pas:3s; +accablai accabler VER 5.55 21.28 0.00 0.07 ind:pas:1s; +accablaient accabler VER 5.55 21.28 0.03 1.42 ind:imp:3p; +accablais accabler VER 5.55 21.28 0.00 0.27 ind:imp:1s; +accablait accabler VER 5.55 21.28 0.22 3.11 ind:imp:3s; +accablant accablant ADJ m s 1.41 5.41 0.37 1.42 +accablante accablant ADJ f s 1.41 5.41 0.71 2.43 +accablantes accablant ADJ f p 1.41 5.41 0.29 0.81 +accablants accablant ADJ m p 1.41 5.41 0.04 0.74 +accable accabler VER 5.55 21.28 2.01 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accablement accablement NOM m s 0.23 3.72 0.21 3.58 +accablements accablement NOM m p 0.23 3.72 0.01 0.14 +accablent accabler VER 5.55 21.28 0.28 0.74 ind:pre:3p; +accabler accabler VER 5.55 21.28 0.65 3.58 inf; +accableraient accabler VER 5.55 21.28 0.00 0.14 cnd:pre:3p; +accablez accabler VER 5.55 21.28 0.17 0.14 imp:pre:2p;ind:pre:2p; +accablions accabler VER 5.55 21.28 0.00 0.07 ind:imp:1p; +accablât accabler VER 5.55 21.28 0.00 0.07 sub:imp:3s; +accablèrent accabler VER 5.55 21.28 0.00 0.20 ind:pas:3p; +accablé accabler VER m s 5.55 21.28 0.92 4.05 par:pas; +accablée accabler VER f s 5.55 21.28 0.60 2.23 par:pas; +accablées accabler VER f p 5.55 21.28 0.02 0.34 par:pas; +accablés accabler VER m p 5.55 21.28 0.47 1.22 par:pas; +accalmie accalmie NOM f s 0.50 3.72 0.46 2.97 +accalmies accalmie NOM f p 0.50 3.72 0.04 0.74 +accalmit accalmir VER 0.00 0.07 0.00 0.07 ind:pas:3s; +accapara accaparer VER 0.97 3.99 0.01 0.07 ind:pas:3s; +accaparaient accaparer VER 0.97 3.99 0.00 0.34 ind:imp:3p; +accaparait accaparer VER 0.97 3.99 0.01 0.74 ind:imp:3s; +accaparant accaparer VER 0.97 3.99 0.03 0.20 par:pre; +accaparante accaparant ADJ f s 0.02 0.07 0.00 0.07 +accapare accaparer VER 0.97 3.99 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accaparer accaparer VER 0.97 3.99 0.20 0.68 inf; +accaparerait accaparer VER 0.97 3.99 0.00 0.07 cnd:pre:3s; +accapareur accapareur ADJ m s 0.02 0.00 0.02 0.00 +accaparez accaparer VER 0.97 3.99 0.02 0.00 ind:pre:2p; +accaparé accaparer VER m s 0.97 3.99 0.30 0.68 par:pas; +accaparée accaparer VER f s 0.97 3.99 0.06 0.34 par:pas; +accaparées accaparer VER f p 0.97 3.99 0.00 0.07 par:pas; +accaparés accaparer VER m p 0.97 3.99 0.00 0.20 par:pas; +accastillage accastillage NOM m s 0.04 0.20 0.04 0.14 +accastillages accastillage NOM m p 0.04 0.20 0.00 0.07 +accelerando accelerando ADV 0.00 0.14 0.00 0.14 +accent accent NOM m s 14.56 45.54 12.98 38.31 +accenteur accenteur NOM m s 0.01 0.00 0.01 0.00 +accents accent NOM m p 14.56 45.54 1.58 7.23 +accentua accentuer VER 1.28 16.15 0.00 1.96 ind:pas:3s; +accentuai accentuer VER 1.28 16.15 0.00 0.07 ind:pas:1s; +accentuaient accentuer VER 1.28 16.15 0.00 1.22 ind:imp:3p; +accentuais accentuer VER 1.28 16.15 0.00 0.07 ind:imp:1s; +accentuait accentuer VER 1.28 16.15 0.01 4.05 ind:imp:3s; +accentuant accentuer VER 1.28 16.15 0.03 1.76 par:pre; +accentuation accentuation NOM f s 0.06 0.14 0.06 0.14 +accentue accentuer VER 1.28 16.15 0.11 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accentuent accentuer VER 1.28 16.15 0.07 0.54 ind:pre:3p; +accentuer accentuer VER 1.28 16.15 0.67 2.03 inf; +accentuerait accentuer VER 1.28 16.15 0.01 0.07 cnd:pre:3s; +accentuez accentuer VER 1.28 16.15 0.12 0.00 imp:pre:2p;ind:pre:2p; +accentuât accentuer VER 1.28 16.15 0.00 0.07 sub:imp:3s; +accentuèrent accentuer VER 1.28 16.15 0.00 0.20 ind:pas:3p; +accentué accentuer VER m s 1.28 16.15 0.21 0.81 par:pas; +accentuée accentuer VER f s 1.28 16.15 0.03 0.95 par:pas; +accentuées accentuer VER f p 1.28 16.15 0.02 0.27 par:pas; +accentués accentuer VER m p 1.28 16.15 0.01 0.34 par:pas; +accepta accepter VER 165.84 144.66 0.82 10.54 ind:pas:3s; +acceptable acceptable ADJ s 3.96 4.39 3.27 3.51 +acceptables acceptable ADJ p 3.96 4.39 0.70 0.88 +acceptai accepter VER 165.84 144.66 0.03 3.38 ind:pas:1s; +acceptaient accepter VER 165.84 144.66 0.34 2.91 ind:imp:3p; +acceptais accepter VER 165.84 144.66 0.94 3.99 ind:imp:1s;ind:imp:2s; +acceptait accepter VER 165.84 144.66 1.48 10.00 ind:imp:3s; +acceptant accepter VER 165.84 144.66 1.35 2.97 par:pre; +acceptassent accepter VER 165.84 144.66 0.00 0.07 sub:imp:3p; +acceptasses accepter VER 165.84 144.66 0.00 0.07 sub:imp:2s; +acceptation acceptation NOM f s 1.24 4.39 1.24 4.19 +acceptations acceptation NOM f p 1.24 4.39 0.00 0.20 +accepte accepter VER 165.84 144.66 38.41 18.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +acceptent accepter VER 165.84 144.66 4.45 3.24 ind:pre:3p; +accepter accepter VER 165.84 144.66 43.39 36.62 inf; +acceptera accepter VER 165.84 144.66 3.98 1.96 ind:fut:3s; +accepterai accepter VER 165.84 144.66 2.73 1.22 ind:fut:1s; +accepteraient accepter VER 165.84 144.66 0.57 0.95 cnd:pre:3p; +accepterais accepter VER 165.84 144.66 2.25 1.96 cnd:pre:1s;cnd:pre:2s; +accepterait accepter VER 165.84 144.66 1.54 4.05 cnd:pre:3s; +accepteras accepter VER 165.84 144.66 0.65 0.27 ind:fut:2s; +accepterez accepter VER 165.84 144.66 0.94 0.20 ind:fut:2p; +accepteriez accepter VER 165.84 144.66 2.01 0.54 cnd:pre:2p; +accepterions accepter VER 165.84 144.66 0.03 0.34 cnd:pre:1p; +accepterons accepter VER 165.84 144.66 0.31 0.14 ind:fut:1p; +accepteront accepter VER 165.84 144.66 1.34 0.20 ind:fut:3p; +acceptes accepter VER 165.84 144.66 6.79 1.28 ind:pre:2s; +acceptez accepter VER 165.84 144.66 12.53 2.16 imp:pre:2p;ind:pre:2p; +acceptiez accepter VER 165.84 144.66 1.00 0.54 ind:imp:2p; +acception acception NOM f s 0.15 0.47 0.15 0.27 +acceptions accepter VER 165.84 144.66 0.21 1.35 ind:imp:1p; +acceptâmes accepter VER 165.84 144.66 0.00 0.14 ind:pas:1p; +acceptons accepter VER 165.84 144.66 2.72 0.95 imp:pre:1p;ind:pre:1p; +acceptât accepter VER 165.84 144.66 0.01 1.42 sub:imp:3s; +acceptèrent accepter VER 165.84 144.66 0.04 0.74 ind:pas:3p; +accepté accepter VER m s 165.84 144.66 28.46 27.16 par:pas; +acceptée accepter VER f s 165.84 144.66 4.30 3.24 par:pas; +acceptées accepter VER f p 165.84 144.66 0.93 0.68 par:pas; +acceptés accepter VER m p 165.84 144.66 1.29 0.74 par:pas; +accesseurs accesseur NOM m p 0.00 0.07 0.00 0.07 +accessibilité accessibilité NOM f s 0.03 0.00 0.03 0.00 +accessible accessible ADJ s 2.06 5.74 1.49 4.12 +accessibles accessible ADJ p 2.06 5.74 0.57 1.62 +accession accession NOM f s 0.16 1.22 0.16 1.22 +accessit accessit NOM m s 0.02 0.07 0.02 0.07 +accessoire accessoire NOM m s 3.87 7.30 1.11 1.08 +accessoirement accessoirement ADV 0.17 0.88 0.17 0.88 +accessoires accessoire NOM m p 3.87 7.30 2.76 6.22 +accessoirise accessoiriser VER 0.07 0.00 0.01 0.00 ind:pre:1s; +accessoiriser accessoiriser VER 0.07 0.00 0.07 0.00 inf; +accessoiriste accessoiriste NOM s 0.62 0.14 0.51 0.00 +accessoiristes accessoiriste NOM p 0.62 0.14 0.11 0.14 +accident accident NOM m s 108.21 44.80 100.11 36.62 +accidente accidenter VER 0.19 0.27 0.01 0.07 ind:pre:3s; +accidentel accidentel ADJ m s 2.78 3.45 1.09 1.42 +accidentelle accidentel ADJ f s 2.78 3.45 1.44 1.28 +accidentellement accidentellement ADV 3.39 0.81 3.39 0.81 +accidentelles accidentel ADJ f p 2.78 3.45 0.17 0.34 +accidentels accidentel ADJ m p 2.78 3.45 0.08 0.41 +accidenter accidenter VER 0.19 0.27 0.02 0.00 inf; +accidents accident NOM m p 108.21 44.80 8.10 8.18 +accidenté accidenté NOM m s 0.57 0.61 0.28 0.34 +accidentée accidenté ADJ f s 0.30 1.42 0.08 0.34 +accidentées accidenté ADJ f p 0.30 1.42 0.02 0.20 +accidentés accidenté NOM m p 0.57 0.61 0.28 0.00 +acclama acclamer VER 1.75 5.81 0.00 0.34 ind:pas:3s; +acclamaient acclamer VER 1.75 5.81 0.09 0.68 ind:imp:3p; +acclamait acclamer VER 1.75 5.81 0.04 0.54 ind:imp:3s; +acclamant acclamer VER 1.75 5.81 0.00 0.27 par:pre; +acclamation acclamation NOM f s 2.84 4.66 0.20 0.27 +acclamations acclamation NOM f p 2.84 4.66 2.65 4.39 +acclame acclamer VER 1.75 5.81 0.19 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acclament acclamer VER 1.75 5.81 0.18 0.14 ind:pre:3p; +acclamer acclamer VER 1.75 5.81 0.20 1.01 inf; +acclamera acclamer VER 1.75 5.81 0.04 0.00 ind:fut:3s; +acclamerait acclamer VER 1.75 5.81 0.01 0.07 cnd:pre:3s; +acclameront acclamer VER 1.75 5.81 0.03 0.00 ind:fut:3p; +acclamez acclamer VER 1.75 5.81 0.25 0.00 imp:pre:2p; +acclamiez acclamer VER 1.75 5.81 0.01 0.00 ind:imp:2p; +acclamons acclamer VER 1.75 5.81 0.05 0.07 imp:pre:1p;ind:pre:1p; +acclamé acclamer VER m s 1.75 5.81 0.44 1.28 par:pas; +acclamée acclamer VER f s 1.75 5.81 0.17 0.07 par:pas; +acclamées acclamer VER f p 1.75 5.81 0.02 0.07 par:pas; +acclamés acclamer VER m p 1.75 5.81 0.04 0.47 par:pas; +acclimata acclimater VER 0.52 1.96 0.00 0.07 ind:pas:3s; +acclimatai acclimater VER 0.52 1.96 0.00 0.07 ind:pas:1s; +acclimatation acclimatation NOM f s 0.14 0.81 0.14 0.81 +acclimate acclimater VER 0.52 1.96 0.01 0.20 ind:pre:1s;ind:pre:3s; +acclimatement acclimatement NOM m s 0.00 0.14 0.00 0.14 +acclimatent acclimater VER 0.52 1.96 0.01 0.00 ind:pre:3p; +acclimater acclimater VER 0.52 1.96 0.45 1.08 inf; +acclimaterait acclimater VER 0.52 1.96 0.00 0.07 cnd:pre:3s; +acclimates acclimater VER 0.52 1.96 0.00 0.07 ind:pre:2s; +acclimatez acclimater VER 0.52 1.96 0.02 0.00 imp:pre:2p;ind:pre:2p; +acclimaté acclimater VER m s 0.52 1.96 0.02 0.27 par:pas; +acclimatés acclimater VER m p 0.52 1.96 0.01 0.14 par:pas; +accointance accointance NOM f s 0.14 0.88 0.14 0.20 +accointances accointance NOM f p 0.14 0.88 0.00 0.68 +accointé accointer VER m s 0.00 0.14 0.00 0.07 par:pas; +accointés accointer VER m p 0.00 0.14 0.00 0.07 par:pas; +accola accoler VER 0.32 2.70 0.00 0.07 ind:pas:3s; +accolade accolade NOM f s 0.96 2.23 0.84 1.69 +accolades accolade NOM f p 0.96 2.23 0.12 0.54 +accolait accoler VER 0.32 2.70 0.00 0.14 ind:imp:3s; +accolant accoler VER 0.32 2.70 0.14 0.00 par:pre; +accole accoler VER 0.32 2.70 0.00 0.14 ind:pre:3s; +accolement accolement NOM m s 0.00 0.07 0.00 0.07 +accolent accoler VER 0.32 2.70 0.00 0.07 ind:pre:3p; +accoler accoler VER 0.32 2.70 0.00 0.27 inf; +accolerais accoler VER 0.32 2.70 0.01 0.00 cnd:pre:1s; +accolé accoler VER m s 0.32 2.70 0.03 0.74 par:pas; +accolée accoler VER f s 0.32 2.70 0.14 0.41 par:pas; +accolées accoler VER f p 0.32 2.70 0.00 0.41 par:pas; +accolés accoler VER m p 0.32 2.70 0.00 0.47 par:pas; +accommoda accommoder VER 2.25 14.19 0.00 0.68 ind:pas:3s; +accommodai accommoder VER 2.25 14.19 0.00 0.07 ind:pas:1s; +accommodaient accommoder VER 2.25 14.19 0.00 1.15 ind:imp:3p; +accommodais accommoder VER 2.25 14.19 0.01 0.27 ind:imp:1s; +accommodait accommoder VER 2.25 14.19 0.01 2.23 ind:imp:3s; +accommodant accommodant ADJ m s 0.41 0.47 0.22 0.14 +accommodante accommodant ADJ f s 0.41 0.47 0.14 0.20 +accommodantes accommodant ADJ f p 0.41 0.47 0.00 0.07 +accommodants accommodant ADJ m p 0.41 0.47 0.04 0.07 +accommodation accommodation NOM f s 0.04 0.41 0.04 0.41 +accommodatrices accommodateur ADJ f p 0.00 0.07 0.00 0.07 +accommode accommoder VER 2.25 14.19 0.78 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accommodement accommodement NOM m s 0.11 1.01 0.11 0.61 +accommodements accommodement NOM m p 0.11 1.01 0.00 0.41 +accommodent accommoder VER 2.25 14.19 0.13 0.34 ind:pre:3p; +accommoder accommoder VER 2.25 14.19 0.69 4.26 inf; +accommodera accommoder VER 2.25 14.19 0.01 0.07 ind:fut:3s; +accommoderai accommoder VER 2.25 14.19 0.06 0.14 ind:fut:1s; +accommoderaient accommoder VER 2.25 14.19 0.00 0.14 cnd:pre:3p; +accommoderais accommoder VER 2.25 14.19 0.16 0.20 cnd:pre:1s; +accommoderait accommoder VER 2.25 14.19 0.11 0.27 cnd:pre:3s; +accommoderez accommoder VER 2.25 14.19 0.02 0.00 ind:fut:2p; +accommoderions accommoder VER 2.25 14.19 0.00 0.07 cnd:pre:1p; +accommoderont accommoder VER 2.25 14.19 0.01 0.20 ind:fut:3p; +accommodions accommoder VER 2.25 14.19 0.00 0.07 ind:imp:1p; +accommodons accommoder VER 2.25 14.19 0.00 0.07 ind:pre:1p; +accommodât accommoder VER 2.25 14.19 0.00 0.14 sub:imp:3s; +accommodèrent accommoder VER 2.25 14.19 0.10 0.07 ind:pas:3p; +accommodé accommoder VER m s 2.25 14.19 0.13 0.54 par:pas; +accommodée accommoder VER f s 2.25 14.19 0.03 0.27 par:pas; +accommodés accommoder VER m p 2.25 14.19 0.00 0.41 par:pas; +accompagna accompagner VER 90.56 124.46 0.15 9.46 ind:pas:3s; +accompagnai accompagner VER 90.56 124.46 0.03 1.28 ind:pas:1s; +accompagnaient accompagner VER 90.56 124.46 0.43 4.73 ind:imp:3p; +accompagnais accompagner VER 90.56 124.46 0.40 1.76 ind:imp:1s;ind:imp:2s; +accompagnait accompagner VER 90.56 124.46 2.04 15.68 ind:imp:3s; +accompagnant accompagner VER 90.56 124.46 0.61 5.00 par:pre; +accompagnateur accompagnateur NOM m s 0.78 1.01 0.40 0.27 +accompagnateurs accompagnateur NOM m p 0.78 1.01 0.29 0.68 +accompagnatrice accompagnateur NOM f s 0.78 1.01 0.09 0.07 +accompagnatrices accompagnatrice NOM f p 0.02 0.00 0.02 0.00 +accompagne accompagner VER 90.56 124.46 33.28 15.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +accompagnement accompagnement NOM m s 0.65 2.57 0.61 2.50 +accompagnements accompagnement NOM m p 0.65 2.57 0.03 0.07 +accompagnent accompagner VER 90.56 124.46 2.08 4.05 ind:pre:3p; +accompagner accompagner VER 90.56 124.46 24.87 22.23 ind:pre:2p;inf; +accompagnera accompagner VER 90.56 124.46 1.81 0.61 ind:fut:3s; +accompagnerai accompagner VER 90.56 124.46 1.01 0.61 ind:fut:1s; +accompagneraient accompagner VER 90.56 124.46 0.00 0.27 cnd:pre:3p; +accompagnerais accompagner VER 90.56 124.46 0.16 0.27 cnd:pre:1s;cnd:pre:2s; +accompagnerait accompagner VER 90.56 124.46 0.09 1.22 cnd:pre:3s; +accompagneras accompagner VER 90.56 124.46 0.52 0.27 ind:fut:2s; +accompagnerez accompagner VER 90.56 124.46 0.65 0.27 ind:fut:2p; +accompagneriez accompagner VER 90.56 124.46 0.12 0.00 cnd:pre:2p; +accompagnerons accompagner VER 90.56 124.46 0.25 0.00 ind:fut:1p; +accompagneront accompagner VER 90.56 124.46 0.52 0.14 ind:fut:3p; +accompagnes accompagner VER 90.56 124.46 5.48 0.68 ind:pre:2s;sub:pre:2s; +accompagnez accompagner VER 90.56 124.46 4.41 0.95 imp:pre:2p;ind:pre:2p; +accompagniez accompagner VER 90.56 124.46 0.45 0.07 ind:imp:2p;sub:pre:2p; +accompagnions accompagner VER 90.56 124.46 0.02 0.00 ind:imp:1p; +accompagnâmes accompagner VER 90.56 124.46 0.00 0.14 ind:pas:1p; +accompagnons accompagner VER 90.56 124.46 0.73 0.27 imp:pre:1p;ind:pre:1p; +accompagnât accompagner VER 90.56 124.46 0.00 0.54 sub:imp:3s; +accompagnèrent accompagner VER 90.56 124.46 0.00 0.95 ind:pas:3p; +accompagné accompagner VER m s 90.56 124.46 5.67 21.49 par:pas; +accompagnée accompagner VER f s 90.56 124.46 3.67 9.93 par:pas; +accompagnées accompagner VER f p 90.56 124.46 0.10 2.03 par:pas; +accompagnés accompagner VER m p 90.56 124.46 1.00 4.46 par:pas; +accomplît accomplir VER 25.00 55.20 0.00 0.20 sub:imp:3s; +accompli accomplir VER m s 25.00 55.20 5.98 9.59 par:pas; +accomplie accompli ADJ f s 4.79 10.54 3.00 3.04 +accomplies accomplir VER f p 25.00 55.20 0.23 1.08 par:pas; +accomplir accomplir VER 25.00 55.20 9.31 22.23 inf; +accomplira accomplir VER 25.00 55.20 0.55 0.61 ind:fut:3s; +accomplirai accomplir VER 25.00 55.20 0.33 0.14 ind:fut:1s; +accompliraient accomplir VER 25.00 55.20 0.01 0.20 cnd:pre:3p; +accomplirais accomplir VER 25.00 55.20 0.00 0.14 cnd:pre:1s; +accomplirait accomplir VER 25.00 55.20 0.12 0.47 cnd:pre:3s; +accompliras accomplir VER 25.00 55.20 0.05 0.00 ind:fut:2s; +accomplirent accomplir VER 25.00 55.20 0.01 0.27 ind:pas:3p; +accomplirez accomplir VER 25.00 55.20 0.09 0.14 ind:fut:2p; +accomplirons accomplir VER 25.00 55.20 0.17 0.14 ind:fut:1p; +accompliront accomplir VER 25.00 55.20 0.04 0.07 ind:fut:3p; +accomplis accomplir VER m p 25.00 55.20 1.51 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +accomplissaient accomplir VER 25.00 55.20 0.00 0.68 ind:imp:3p; +accomplissais accomplir VER 25.00 55.20 0.02 0.74 ind:imp:1s; +accomplissait accomplir VER 25.00 55.20 0.05 3.78 ind:imp:3s; +accomplissant accomplir VER 25.00 55.20 0.17 2.36 par:pre; +accomplisse accomplir VER 25.00 55.20 1.04 0.95 sub:pre:1s;sub:pre:3s; +accomplissement accomplissement NOM m s 1.50 4.46 1.27 4.26 +accomplissements accomplissement NOM m p 1.50 4.46 0.22 0.20 +accomplissent accomplir VER 25.00 55.20 1.12 0.95 ind:pre:3p; +accomplissez accomplir VER 25.00 55.20 0.54 0.00 imp:pre:2p;ind:pre:2p; +accomplissiez accomplir VER 25.00 55.20 0.02 0.00 ind:imp:2p; +accomplissions accomplir VER 25.00 55.20 0.16 0.34 ind:imp:1p; +accomplissons accomplir VER 25.00 55.20 0.28 0.14 imp:pre:1p;ind:pre:1p; +accomplit accomplir VER 25.00 55.20 2.14 4.73 ind:pre:3s;ind:pas:3s; +accord accord NOM m s 766.20 136.15 761.77 124.66 +accorda accorder VER 52.27 67.84 0.38 2.97 ind:pas:3s; +accordai accorder VER 52.27 67.84 0.00 0.54 ind:pas:1s; +accordaient accorder VER 52.27 67.84 0.17 2.43 ind:imp:3p; +accordailles accordailles NOM f p 0.00 0.07 0.00 0.07 +accordais accorder VER 52.27 67.84 0.44 1.55 ind:imp:1s;ind:imp:2s; +accordait accorder VER 52.27 67.84 0.70 9.66 ind:imp:3s; +accordant accorder VER 52.27 67.84 0.24 1.76 par:pre; +accordas accorder VER 52.27 67.84 0.01 0.07 ind:pas:2s; +accordassent accorder VER 52.27 67.84 0.00 0.14 sub:imp:3p; +accorde accorder VER 52.27 67.84 17.04 11.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +accordement accordement NOM m s 0.00 0.07 0.00 0.07 +accordent accorder VER 52.27 67.84 1.31 2.50 ind:pre:3p; +accorder accorder VER 52.27 67.84 10.59 14.73 inf; +accordera accorder VER 52.27 67.84 0.98 0.14 ind:fut:3s; +accorderai accorder VER 52.27 67.84 0.46 0.00 ind:fut:1s; +accorderaient accorder VER 52.27 67.84 0.00 0.20 cnd:pre:3p; +accorderais accorder VER 52.27 67.84 0.24 0.14 cnd:pre:1s;cnd:pre:2s; +accorderait accorder VER 52.27 67.84 0.08 0.74 cnd:pre:3s; +accorderas accorder VER 52.27 67.84 0.06 0.07 ind:fut:2s; +accorderez accorder VER 52.27 67.84 0.52 0.20 ind:fut:2p; +accorderiez accorder VER 52.27 67.84 0.14 0.07 cnd:pre:2p; +accorderons accorder VER 52.27 67.84 0.14 0.00 ind:fut:1p; +accorderont accorder VER 52.27 67.84 0.14 0.20 ind:fut:3p; +accordes accorder VER 52.27 67.84 1.23 0.07 ind:pre:2s; +accordeur accordeur NOM m s 0.25 0.61 0.25 0.61 +accordez accorder VER 52.27 67.84 6.00 0.81 imp:pre:2p;ind:pre:2p; +accordiez accorder VER 52.27 67.84 0.30 0.00 ind:imp:2p;sub:pre:2p; +accordions accorder VER 52.27 67.84 0.05 0.20 ind:imp:1p; +accordo accordo NOM m s 0.01 0.07 0.01 0.07 +accordons accorder VER 52.27 67.84 0.75 0.47 imp:pre:1p;ind:pre:1p; +accordât accorder VER 52.27 67.84 0.00 0.88 sub:imp:3s; +accords accord NOM m p 766.20 136.15 4.42 11.49 +accordèrent accorder VER 52.27 67.84 0.01 0.54 ind:pas:3p; +accordé accorder VER m s 52.27 67.84 6.87 7.43 par:pas; +accordée accorder VER f s 52.27 67.84 2.23 4.93 par:pas; +accordées accorder VER f p 52.27 67.84 0.36 1.22 par:pas; +accordéon accordéon NOM m s 3.24 5.47 3.02 4.80 +accordéoniste accordéoniste NOM s 0.26 1.69 0.26 1.42 +accordéonistes accordéoniste NOM p 0.26 1.69 0.00 0.27 +accordéons accordéon NOM m p 3.24 5.47 0.22 0.68 +accordés accorder VER m p 52.27 67.84 0.85 1.42 par:pas; +accore accore ADJ f s 0.00 0.14 0.00 0.14 +accores accore NOM m p 0.00 0.07 0.00 0.07 +accort accort ADJ m s 0.03 0.68 0.01 0.20 +accorte accort ADJ f s 0.03 0.68 0.02 0.27 +accortes accort ADJ f p 0.03 0.68 0.00 0.14 +accorts accort ADJ m p 0.03 0.68 0.00 0.07 +accosta accoster VER 1.86 4.19 0.11 0.54 ind:pas:3s; +accostage accostage NOM m s 0.47 0.88 0.47 0.88 +accostaient accoster VER 1.86 4.19 0.00 0.14 ind:imp:3p; +accostais accoster VER 1.86 4.19 0.00 0.07 ind:imp:1s; +accostait accoster VER 1.86 4.19 0.11 0.47 ind:imp:3s; +accostant accoster VER 1.86 4.19 0.01 0.27 par:pre; +accoste accoster VER 1.86 4.19 0.27 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accostent accoster VER 1.86 4.19 0.13 0.27 ind:pre:3p; +accoster accoster VER 1.86 4.19 0.67 1.35 inf; +accosterez accoster VER 1.86 4.19 0.03 0.00 ind:fut:2p; +accosterons accoster VER 1.86 4.19 0.01 0.00 ind:fut:1p; +accostez accoster VER 1.86 4.19 0.14 0.00 imp:pre:2p;ind:pre:2p; +accostiez accoster VER 1.86 4.19 0.01 0.07 ind:imp:2p; +accostons accoster VER 1.86 4.19 0.01 0.00 imp:pre:1p; +accosté accoster VER m s 1.86 4.19 0.23 0.27 par:pas; +accostée accoster VER f s 1.86 4.19 0.15 0.14 par:pas; +accostées accoster VER f p 1.86 4.19 0.00 0.07 par:pas; +accota accoter VER 0.00 2.43 0.00 0.27 ind:pas:3s; +accotaient accoter VER 0.00 2.43 0.00 0.14 ind:imp:3p; +accotait accoter VER 0.00 2.43 0.00 0.14 ind:imp:3s; +accotant accoter VER 0.00 2.43 0.00 0.34 par:pre; +accote accoter VER 0.00 2.43 0.00 0.14 ind:pre:3s; +accotement accotement NOM m s 0.01 1.42 0.01 1.08 +accotements accotement NOM m p 0.01 1.42 0.00 0.34 +accotent accoter VER 0.00 2.43 0.00 0.07 ind:pre:3p; +accoter accoter VER 0.00 2.43 0.00 0.07 inf; +accotoirs accotoir NOM m p 0.00 0.07 0.00 0.07 +accotons accoter VER 0.00 2.43 0.00 0.07 ind:pre:1p; +accotèrent accoter VER 0.00 2.43 0.00 0.07 ind:pas:3p; +accoté accoter VER m s 0.00 2.43 0.00 0.54 par:pas; +accotée accoter VER f s 0.00 2.43 0.00 0.27 par:pas; +accotées accoter VER f p 0.00 2.43 0.00 0.14 par:pas; +accotés accoter VER m p 0.00 2.43 0.00 0.20 par:pas; +accoucha accoucher VER 16.49 7.43 0.14 0.54 ind:pas:3s; +accouchaient accoucher VER 16.49 7.43 0.03 0.20 ind:imp:3p; +accouchais accoucher VER 16.49 7.43 0.05 0.00 ind:imp:1s; +accouchait accoucher VER 16.49 7.43 0.17 0.41 ind:imp:3s; +accouchant accoucher VER 16.49 7.43 0.58 0.00 par:pre; +accouche accoucher VER 16.49 7.43 4.54 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accouchement accouchement NOM m s 5.96 3.92 5.47 3.24 +accouchements accouchement NOM m p 5.96 3.92 0.48 0.68 +accouchent accoucher VER 16.49 7.43 0.08 0.14 ind:pre:3p; +accoucher accoucher VER 16.49 7.43 6.56 3.51 inf; +accouchera accoucher VER 16.49 7.43 0.04 0.00 ind:fut:3s; +accoucherait accoucher VER 16.49 7.43 0.16 0.07 cnd:pre:3s; +accoucheras accoucher VER 16.49 7.43 0.14 0.00 ind:fut:2s; +accouches accoucher VER 16.49 7.43 0.46 0.20 ind:pre:2s; +accoucheur accoucheur NOM m s 0.19 0.81 0.06 0.47 +accoucheurs accoucheur NOM m p 0.19 0.81 0.00 0.14 +accoucheuse accoucheur NOM f s 0.19 0.81 0.13 0.20 +accouchez accoucher VER 16.49 7.43 0.29 0.00 imp:pre:2p;ind:pre:2p; +accouché accoucher VER m s 16.49 7.43 3.08 1.08 par:pas; +accouchée accoucher VER f s 16.49 7.43 0.16 0.00 par:pas; +accouchées accouchée NOM f p 0.39 1.15 0.37 0.34 +accouchés accoucher VER m p 16.49 7.43 0.01 0.07 par:pas; +accouda accouder VER 0.34 17.70 0.00 2.97 ind:pas:3s; +accoudai accouder VER 0.34 17.70 0.00 0.47 ind:pas:1s; +accoudaient accouder VER 0.34 17.70 0.00 0.27 ind:imp:3p; +accoudais accouder VER 0.34 17.70 0.00 0.20 ind:imp:1s; +accoudait accouder VER 0.34 17.70 0.00 0.61 ind:imp:3s; +accoudant accouder VER 0.34 17.70 0.00 0.95 par:pre; +accoude accouder VER 0.34 17.70 0.02 1.22 ind:pre:3s; +accouder accouder VER 0.34 17.70 0.01 1.42 inf; +accoudions accouder VER 0.34 17.70 0.00 0.07 ind:imp:1p; +accoudoir accoudoir NOM m s 0.46 5.20 0.40 2.23 +accoudoirs accoudoir NOM m p 0.46 5.20 0.06 2.97 +accoudons accouder VER 0.34 17.70 0.00 0.07 ind:pre:1p; +accoudèrent accouder VER 0.34 17.70 0.00 0.27 ind:pas:3p; +accoudé accouder VER m s 0.34 17.70 0.25 5.00 par:pas; +accoudée accouder VER f s 0.34 17.70 0.03 2.50 par:pas; +accoudées accouder VER f p 0.34 17.70 0.00 0.14 par:pas; +accoudés accouder VER m p 0.34 17.70 0.03 1.55 par:pas; +accoupla accoupler VER 2.11 3.24 0.01 0.07 ind:pas:3s; +accouplaient accoupler VER 2.11 3.24 0.01 0.27 ind:imp:3p; +accouplais accoupler VER 2.11 3.24 0.00 0.07 ind:imp:1s; +accouplait accoupler VER 2.11 3.24 0.01 0.20 ind:imp:3s; +accouplant accoupler VER 2.11 3.24 0.06 0.07 par:pre; +accouple accoupler VER 2.11 3.24 0.34 0.07 ind:pre:1s;ind:pre:3s; +accouplement accouplement NOM m s 0.78 2.50 0.72 1.69 +accouplements accouplement NOM m p 0.78 2.50 0.05 0.81 +accouplent accoupler VER 2.11 3.24 0.49 0.34 ind:pre:3p; +accoupler accoupler VER 2.11 3.24 0.81 0.74 inf; +accouplera accoupler VER 2.11 3.24 0.05 0.00 ind:fut:3s; +accouplerait accoupler VER 2.11 3.24 0.00 0.07 cnd:pre:3s; +accoupleront accoupler VER 2.11 3.24 0.03 0.00 ind:fut:3p; +accouplèrent accoupler VER 2.11 3.24 0.00 0.07 ind:pas:3p; +accouplé accoupler VER m s 2.11 3.24 0.06 0.27 par:pas; +accouplée accoupler VER f s 2.11 3.24 0.01 0.07 par:pas; +accouplées accoupler VER f p 2.11 3.24 0.11 0.20 par:pas; +accouplés accoupler VER m p 2.11 3.24 0.12 0.74 par:pas; +accourût accourir VER 5.17 19.05 0.00 0.07 sub:imp:3s; +accouraient accourir VER 5.17 19.05 0.04 1.49 ind:imp:3p; +accourais accourir VER 5.17 19.05 0.01 0.14 ind:imp:1s; +accourait accourir VER 5.17 19.05 0.16 2.43 ind:imp:3s; +accourant accourir VER 5.17 19.05 0.02 0.34 par:pre; +accourcissant accourcir VER 0.00 0.07 0.00 0.07 par:pre; +accoure accourir VER 5.17 19.05 0.15 0.14 sub:pre:1s;sub:pre:3s; +accourent accourir VER 5.17 19.05 0.32 0.81 ind:pre:3p; +accoures accourir VER 5.17 19.05 0.01 0.00 sub:pre:2s; +accourez accourir VER 5.17 19.05 0.37 0.14 imp:pre:2p;ind:pre:2p; +accouriez accourir VER 5.17 19.05 0.01 0.00 ind:imp:2p; +accourir accourir VER 5.17 19.05 0.57 2.84 inf; +accourons accourir VER 5.17 19.05 0.29 0.07 ind:pre:1p; +accourra accourir VER 5.17 19.05 0.05 0.07 ind:fut:3s; +accourrai accourir VER 5.17 19.05 0.03 0.07 ind:fut:1s; +accourraient accourir VER 5.17 19.05 0.00 0.14 cnd:pre:3p; +accourrais accourir VER 5.17 19.05 0.02 0.00 cnd:pre:1s; +accourrait accourir VER 5.17 19.05 0.04 0.20 cnd:pre:3s; +accourront accourir VER 5.17 19.05 0.04 0.07 ind:fut:3p; +accours accourir VER 5.17 19.05 0.70 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +accourt accourir VER 5.17 19.05 0.91 2.57 ind:pre:3s; +accouru accourir VER m s 5.17 19.05 0.60 1.82 par:pas; +accourue accourir VER f s 5.17 19.05 0.01 0.47 par:pas; +accourues accourir VER f p 5.17 19.05 0.14 0.41 par:pas; +accoururent accourir VER 5.17 19.05 0.21 0.74 ind:pas:3p; +accourus accourir VER m p 5.17 19.05 0.34 1.69 ind:pas:1s;par:pas; +accourussent accourir VER 5.17 19.05 0.00 0.07 sub:imp:3p; +accourut accourir VER 5.17 19.05 0.14 1.96 ind:pas:3s; +accoutre accoutrer VER 0.06 0.54 0.00 0.07 ind:pre:3s; +accoutrement accoutrement NOM m s 1.29 2.70 1.19 2.09 +accoutrements accoutrement NOM m p 1.29 2.70 0.11 0.61 +accoutré accoutrer VER m s 0.06 0.54 0.04 0.27 par:pas; +accoutrée accoutré ADJ f s 0.02 0.41 0.00 0.20 +accoutrés accoutrer VER m p 0.06 0.54 0.02 0.14 par:pas; +accoutuma accoutumer VER 0.89 9.12 0.00 0.07 ind:pas:3s; +accoutumai accoutumer VER 0.89 9.12 0.00 0.07 ind:pas:1s; +accoutumaient accoutumer VER 0.89 9.12 0.00 0.20 ind:imp:3p; +accoutumais accoutumer VER 0.89 9.12 0.00 0.07 ind:imp:1s; +accoutumait accoutumer VER 0.89 9.12 0.00 0.20 ind:imp:3s; +accoutumance accoutumance NOM f s 0.30 1.28 0.20 1.28 +accoutumances accoutumance NOM f p 0.30 1.28 0.10 0.00 +accoutumant accoutumer VER 0.89 9.12 0.00 0.14 par:pre; +accoutume accoutumer VER 0.89 9.12 0.03 0.54 ind:pre:1s;ind:pre:3s; +accoutument accoutumer VER 0.89 9.12 0.00 0.20 ind:pre:3p; +accoutumer accoutumer VER 0.89 9.12 0.33 1.08 inf; +accoutumerait accoutumer VER 0.89 9.12 0.00 0.07 cnd:pre:3s; +accoutumé accoutumer VER m s 0.89 9.12 0.39 3.58 par:pas; +accoutumée accoutumer VER f s 0.89 9.12 0.11 1.35 par:pas; +accoutumées accoutumé ADJ f p 0.26 5.00 0.14 0.07 +accoutumés accoutumer VER m p 0.89 9.12 0.02 1.22 par:pas; +accouvée accouver VER f s 0.00 0.07 0.00 0.07 par:pas; +accrût accroître VER 3.51 11.15 0.00 0.07 sub:imp:3s; +accras accra NOM m p 0.10 0.00 0.10 0.00 +accro accro ADJ m s 6.81 0.68 6.22 0.61 +accroît accroître VER 3.51 11.15 1.12 1.76 ind:pre:3s; +accroîtra accroître VER 3.51 11.15 0.12 0.00 ind:fut:3s; +accroîtrait accroître VER 3.51 11.15 0.01 0.00 cnd:pre:3s; +accroître accroître VER 3.51 11.15 1.46 3.99 inf; +accroîtront accroître VER 3.51 11.15 0.01 0.07 ind:fut:3p; +accroc accroc NOM m s 1.90 3.11 1.67 2.57 +accrocha accrocher VER 51.56 99.93 0.02 5.68 ind:pas:3s; +accrochage accrochage NOM m s 2.06 1.49 1.44 0.88 +accrochages accrochage NOM m p 2.06 1.49 0.62 0.61 +accrochai accrocher VER 51.56 99.93 0.00 1.01 ind:pas:1s; +accrochaient accrocher VER 51.56 99.93 0.06 4.73 ind:imp:3p; +accrochais accrocher VER 51.56 99.93 0.47 1.01 ind:imp:1s;ind:imp:2s; +accrochait accrocher VER 51.56 99.93 0.56 10.34 ind:imp:3s; +accrochant accrocher VER 51.56 99.93 0.43 4.59 par:pre; +accroche_coeur accroche_coeur NOM m s 0.00 0.74 0.00 0.34 +accroche_coeur accroche_coeur NOM m p 0.00 0.74 0.00 0.41 +accroche accrocher VER 51.56 99.93 16.39 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accrochent accrocher VER 51.56 99.93 1.37 2.64 ind:pre:3p; +accrocher accrocher VER 51.56 99.93 10.46 14.32 inf; +accrochera accrocher VER 51.56 99.93 0.15 0.07 ind:fut:3s; +accrocherai accrocher VER 51.56 99.93 0.38 0.14 ind:fut:1s; +accrocheraient accrocher VER 51.56 99.93 0.00 0.07 cnd:pre:3p; +accrocherais accrocher VER 51.56 99.93 0.04 0.20 cnd:pre:1s; +accrocherait accrocher VER 51.56 99.93 0.04 0.07 cnd:pre:3s; +accrocherez accrocher VER 51.56 99.93 0.17 0.00 ind:fut:2p; +accrocheriez accrocher VER 51.56 99.93 0.00 0.07 cnd:pre:2p; +accrocheront accrocher VER 51.56 99.93 0.02 0.00 ind:fut:3p; +accroches accrocher VER 51.56 99.93 2.09 0.07 ind:pre:2s;sub:pre:2s; +accrocheur accrocheur ADJ m s 0.59 0.34 0.55 0.14 +accrocheurs accrocheur ADJ m p 0.59 0.34 0.03 0.14 +accrocheuse accrocheur ADJ f s 0.59 0.34 0.02 0.00 +accrocheuses accrocheur ADJ f p 0.59 0.34 0.00 0.07 +accrochez accrocher VER 51.56 99.93 8.03 0.27 imp:pre:2p;ind:pre:2p; +accrochiez accrocher VER 51.56 99.93 0.17 0.00 ind:imp:2p; +accrochions accrocher VER 51.56 99.93 0.02 0.47 ind:imp:1p; +accrochons accrocher VER 51.56 99.93 0.12 0.07 imp:pre:1p;ind:pre:1p; +accrochât accrocher VER 51.56 99.93 0.00 0.14 sub:imp:3s; +accrochèrent accrocher VER 51.56 99.93 0.02 0.61 ind:pas:3p; +accroché accrocher VER m s 51.56 99.93 6.13 15.95 par:pas; +accrochée accrocher VER f s 51.56 99.93 2.06 9.86 par:pas; +accrochées accrocher VER f p 51.56 99.93 0.80 5.81 par:pas; +accrochés accrocher VER m p 51.56 99.93 1.56 8.58 par:pas; +accrocs accroc NOM m p 1.90 3.11 0.23 0.54 +accroire accroire VER 0.02 0.54 0.02 0.54 inf; +accrois accroître VER 3.51 11.15 0.01 0.07 ind:pre:1s; +accroissaient accroître VER 3.51 11.15 0.01 0.20 ind:imp:3p; +accroissait accroître VER 3.51 11.15 0.00 0.95 ind:imp:3s; +accroissant accroître VER 3.51 11.15 0.04 0.14 par:pre; +accroisse accroître VER 3.51 11.15 0.00 0.07 sub:pre:3s; +accroissement accroissement NOM m s 0.41 1.28 0.41 1.28 +accroissent accroître VER 3.51 11.15 0.04 0.27 ind:pre:3p; +accroissez accroître VER 3.51 11.15 0.04 0.00 imp:pre:2p;ind:pre:2p; +accros accro NOM m p 2.56 0.07 0.90 0.07 +accroupi accroupir VER m s 2.00 24.93 0.72 8.24 par:pas; +accroupie accroupir VER f s 2.00 24.93 0.47 3.31 par:pas; +accroupies accroupir VER f p 2.00 24.93 0.00 0.81 par:pas; +accroupir accroupir VER 2.00 24.93 0.09 2.70 inf; +accroupirent accroupir VER 2.00 24.93 0.00 0.47 ind:pas:3p; +accroupis accroupir VER m p 2.00 24.93 0.23 2.84 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +accroupissaient accroupir VER 2.00 24.93 0.00 0.27 ind:imp:3p; +accroupissais accroupir VER 2.00 24.93 0.01 0.07 ind:imp:1s; +accroupissait accroupir VER 2.00 24.93 0.15 0.07 ind:imp:3s; +accroupissant accroupir VER 2.00 24.93 0.00 0.34 par:pre; +accroupisse accroupir VER 2.00 24.93 0.01 0.07 sub:pre:1s;sub:pre:3s; +accroupissement accroupissement NOM m s 0.00 0.20 0.00 0.20 +accroupissent accroupir VER 2.00 24.93 0.02 0.34 ind:pre:3p; +accroupissons accroupir VER 2.00 24.93 0.00 0.14 ind:pre:1p; +accroupit accroupir VER 2.00 24.93 0.29 5.27 ind:pre:3s;ind:pas:3s; +accru accroître VER m s 3.51 11.15 0.39 1.08 par:pas; +accrédita accréditer VER 0.36 1.55 0.00 0.07 ind:pas:3s; +accréditaient accréditer VER 0.36 1.55 0.01 0.07 ind:imp:3p; +accréditait accréditer VER 0.36 1.55 0.00 0.07 ind:imp:3s; +accréditant accréditer VER 0.36 1.55 0.00 0.07 par:pre; +accréditation accréditation NOM f s 0.27 0.00 0.19 0.00 +accréditations accréditation NOM f p 0.27 0.00 0.07 0.00 +accréditer accréditer VER 0.36 1.55 0.03 0.74 inf; +accréditif accréditif NOM m s 0.00 0.07 0.00 0.07 +accrédité accrédité ADJ m s 0.14 0.27 0.07 0.20 +accréditée accréditer VER f s 0.36 1.55 0.04 0.14 par:pas; +accrédités accréditer VER m p 0.36 1.55 0.23 0.07 par:pas; +accrue accru ADJ f s 0.57 3.04 0.29 2.09 +accrues accroître VER f p 3.51 11.15 0.10 0.20 par:pas; +accrurent accroître VER 3.51 11.15 0.01 0.27 ind:pas:3p; +accrus accroître VER m p 3.51 11.15 0.04 0.14 par:pas; +accrut accroître VER 3.51 11.15 0.02 0.81 ind:pas:3s; +accrétion accrétion NOM f s 0.03 0.00 0.03 0.00 +accède accéder VER 8.58 12.97 0.95 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +accèdent accéder VER 8.58 12.97 0.06 0.41 ind:pre:3p; +accèdes accéder VER 8.58 12.97 0.04 0.00 ind:pre:2s; +accès accès NOM m 29.53 23.78 29.53 23.78 +accu accu NOM m s 0.11 0.34 0.00 0.07 +accéda accéder VER 8.58 12.97 0.03 0.34 ind:pas:3s; +accédai accéder VER 8.58 12.97 0.00 0.14 ind:pas:1s; +accédaient accéder VER 8.58 12.97 0.00 0.34 ind:imp:3p; +accédais accéder VER 8.58 12.97 0.04 0.20 ind:imp:1s; +accédait accéder VER 8.58 12.97 0.22 2.70 ind:imp:3s; +accédant accéder VER 8.58 12.97 0.03 0.20 par:pre; +accéder accéder VER 8.58 12.97 6.29 5.81 inf; +accédera accéder VER 8.58 12.97 0.05 0.07 ind:fut:3s; +accéderai accéder VER 8.58 12.97 0.03 0.00 ind:fut:1s; +accéderaient accéder VER 8.58 12.97 0.00 0.14 cnd:pre:3p; +accéderais accéder VER 8.58 12.97 0.02 0.14 cnd:pre:1s; +accéderait accéder VER 8.58 12.97 0.01 0.07 cnd:pre:3s; +accéderas accéder VER 8.58 12.97 0.02 0.00 ind:fut:2s; +accédez accéder VER 8.58 12.97 0.11 0.00 imp:pre:2p;ind:pre:2p; +accédâmes accéder VER 8.58 12.97 0.00 0.07 ind:pas:1p; +accédons accéder VER 8.58 12.97 0.00 0.20 ind:pre:1p; +accédé accéder VER m s 8.58 12.97 0.68 0.74 par:pas; +accueil accueil NOM m s 13.83 16.42 13.83 16.22 +accueillît accueillir VER 31.98 54.73 0.00 0.20 sub:imp:3s; +accueillaient accueillir VER 31.98 54.73 0.00 1.08 ind:imp:3p; +accueillais accueillir VER 31.98 54.73 0.26 0.34 ind:imp:1s;ind:imp:2s; +accueillait accueillir VER 31.98 54.73 0.42 5.88 ind:imp:3s; +accueillant accueillant ADJ m s 2.07 5.07 1.21 1.82 +accueillante accueillant ADJ f s 2.07 5.07 0.47 2.09 +accueillantes accueillant ADJ f p 2.07 5.07 0.14 0.27 +accueillants accueillant ADJ m p 2.07 5.07 0.25 0.88 +accueille accueillir VER 31.98 54.73 4.58 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accueillent accueillir VER 31.98 54.73 0.90 1.76 ind:pre:3p; +accueillera accueillir VER 31.98 54.73 1.07 0.47 ind:fut:3s; +accueillerai accueillir VER 31.98 54.73 0.25 0.07 ind:fut:1s; +accueilleraient accueillir VER 31.98 54.73 0.17 0.00 cnd:pre:3p; +accueillerait accueillir VER 31.98 54.73 0.16 0.74 cnd:pre:3s; +accueilleras accueillir VER 31.98 54.73 0.01 0.00 ind:fut:2s; +accueillerez accueillir VER 31.98 54.73 0.24 0.07 ind:fut:2p; +accueilleriez accueillir VER 31.98 54.73 0.02 0.00 cnd:pre:2p; +accueillerons accueillir VER 31.98 54.73 0.13 0.07 ind:fut:1p; +accueilleront accueillir VER 31.98 54.73 0.10 0.27 ind:fut:3p; +accueilles accueillir VER 31.98 54.73 0.22 0.07 ind:pre:2s; +accueillez accueillir VER 31.98 54.73 0.97 0.14 imp:pre:2p;ind:pre:2p; +accueilli accueillir VER m s 31.98 54.73 3.79 7.91 par:pas; +accueillie accueillir VER f s 31.98 54.73 0.65 2.23 par:pas; +accueillies accueillir VER f p 31.98 54.73 0.05 0.61 par:pas; +accueillir accueillir VER 31.98 54.73 14.39 13.99 inf; +accueillirent accueillir VER 31.98 54.73 0.03 1.49 ind:pas:3p; +accueillis accueillir VER m p 31.98 54.73 0.98 3.18 ind:pas:1s;par:pas; +accueillit accueillir VER 31.98 54.73 0.50 6.69 ind:pas:3s; +accueillons accueillir VER 31.98 54.73 1.88 0.07 imp:pre:1p;ind:pre:1p; +accueils accueil NOM m p 13.83 16.42 0.00 0.20 +accula acculer VER 1.03 4.93 0.00 0.07 ind:pas:3s; +acculaient acculer VER 1.03 4.93 0.00 0.20 ind:imp:3p; +acculais acculer VER 1.03 4.93 0.00 0.14 ind:imp:1s; +acculait acculer VER 1.03 4.93 0.00 0.27 ind:imp:3s; +acculant acculer VER 1.03 4.93 0.00 0.14 par:pre; +accule acculer VER 1.03 4.93 0.29 0.14 ind:pre:1s;ind:pre:3s; +acculent acculer VER 1.03 4.93 0.01 0.14 ind:pre:3p; +acculer acculer VER 1.03 4.93 0.13 0.88 inf; +acculera acculer VER 1.03 4.93 0.01 0.00 ind:fut:3s; +acculeraient acculer VER 1.03 4.93 0.00 0.07 cnd:pre:3p; +acculez acculer VER 1.03 4.93 0.04 0.00 imp:pre:2p;ind:pre:2p; +acculât acculer VER 1.03 4.93 0.00 0.07 sub:imp:3s; +accélère accélérer VER 15.78 17.97 7.32 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accélèrent accélérer VER 15.78 17.97 0.23 0.54 ind:pre:3p; +acculèrent acculer VER 1.03 4.93 0.00 0.07 ind:pas:3p; +accélères accélérer VER 15.78 17.97 0.31 0.07 ind:pre:2s;sub:pre:2s; +acculturation acculturation NOM f s 0.01 0.00 0.01 0.00 +acculé acculer VER m s 1.03 4.93 0.43 1.76 par:pas; +acculée acculer VER f s 1.03 4.93 0.04 0.34 par:pas; +acculées acculer VER f p 1.03 4.93 0.01 0.07 par:pas; +accéléra accélérer VER 15.78 17.97 0.14 1.96 ind:pas:3s; +accélérai accélérer VER 15.78 17.97 0.00 0.34 ind:pas:1s; +accéléraient accélérer VER 15.78 17.97 0.00 0.41 ind:imp:3p; +accélérais accélérer VER 15.78 17.97 0.11 0.27 ind:imp:1s; +accélérait accélérer VER 15.78 17.97 0.13 2.64 ind:imp:3s; +accélérant accélérer VER 15.78 17.97 0.22 1.08 par:pre; +accélérants accélérant ADJ m p 0.23 0.00 0.02 0.00 +accélérateur accélérateur NOM m s 2.22 3.51 2.16 3.38 +accélérateurs accélérateur NOM m p 2.22 3.51 0.06 0.14 +accélération accélération NOM f s 1.50 3.11 1.46 2.64 +accélérations accélération NOM f p 1.50 3.11 0.04 0.47 +accélératrice accélérateur ADJ f s 0.34 0.14 0.01 0.00 +accélérer accélérer VER 15.78 17.97 4.41 2.91 inf; +accélérera accélérer VER 15.78 17.97 0.02 0.00 ind:fut:3s; +accélérerait accélérer VER 15.78 17.97 0.08 0.07 cnd:pre:3s; +accéléreras accélérer VER 15.78 17.97 0.01 0.00 ind:fut:2s; +accélérez accélérer VER 15.78 17.97 1.39 0.00 imp:pre:2p;ind:pre:2p; +accélériez accélérer VER 15.78 17.97 0.01 0.00 ind:imp:2p; +accélérons accélérer VER 15.78 17.97 0.15 0.00 imp:pre:1p;ind:pre:1p; +accélérèrent accélérer VER 15.78 17.97 0.00 0.20 ind:pas:3p; +accéléré accélérer VER m s 15.78 17.97 0.95 0.95 par:pas; +accélérée accélérer VER f s 15.78 17.97 0.23 2.23 par:pas; +accélérées accélérer VER f p 15.78 17.97 0.05 0.20 par:pas; +accélérés accéléré ADJ m p 0.28 2.03 0.01 0.41 +acculés acculer VER m p 1.03 4.93 0.06 0.61 par:pas; +accumula accumuler VER 4.46 24.53 0.00 0.14 ind:pas:3s; +accumulai accumuler VER 4.46 24.53 0.00 0.07 ind:pas:1s; +accumulaient accumuler VER 4.46 24.53 0.04 1.76 ind:imp:3p; +accumulais accumuler VER 4.46 24.53 0.02 0.27 ind:imp:1s; +accumulait accumuler VER 4.46 24.53 0.04 2.57 ind:imp:3s; +accumulant accumuler VER 4.46 24.53 0.24 1.55 par:pre; +accumulateur accumulateur NOM m s 0.03 0.14 0.03 0.07 +accumulateurs accumulateur NOM m p 0.03 0.14 0.00 0.07 +accumulation accumulation NOM f s 0.67 3.78 0.67 3.72 +accumulations accumulation NOM f p 0.67 3.78 0.00 0.07 +accumule accumuler VER 4.46 24.53 1.01 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +accumulent accumuler VER 4.46 24.53 0.77 0.95 ind:pre:3p; +accumuler accumuler VER 4.46 24.53 0.85 3.72 inf; +accumulerez accumuler VER 4.46 24.53 0.01 0.00 ind:fut:2p; +accumulez accumuler VER 4.46 24.53 0.23 0.00 imp:pre:2p;ind:pre:2p; +accumulèrent accumuler VER 4.46 24.53 0.00 0.14 ind:pas:3p; +accumulé accumuler VER m s 4.46 24.53 0.55 3.04 par:pas; +accumulée accumuler VER f s 4.46 24.53 0.09 3.31 par:pas; +accumulées accumuler VER f p 4.46 24.53 0.30 3.04 par:pas; +accumulés accumuler VER m p 4.46 24.53 0.30 2.50 par:pas; +accus accu NOM m p 0.11 0.34 0.11 0.27 +accusa accuser VER 52.72 39.93 0.18 3.18 ind:pas:3s; +accusai accuser VER 52.72 39.93 0.03 0.47 ind:pas:1s; +accusaient accuser VER 52.72 39.93 0.09 2.09 ind:imp:3p; +accusais accuser VER 52.72 39.93 0.29 0.68 ind:imp:1s;ind:imp:2s; +accusait accuser VER 52.72 39.93 1.57 6.55 ind:imp:3s; +accusant accuser VER 52.72 39.93 0.68 2.64 par:pre; +accusateur accusateur NOM m s 0.35 1.28 0.25 0.41 +accusateurs accusateur ADJ m p 0.32 1.42 0.12 0.47 +accusatif accusatif NOM m s 0.11 0.07 0.11 0.07 +accusation accusation NOM f s 19.72 8.85 12.62 5.74 +accusations accusation NOM f p 19.72 8.85 7.11 3.11 +accusatoire accusatoire ADJ s 0.01 0.00 0.01 0.00 +accusatrice accusateur ADJ f s 0.32 1.42 0.00 0.14 +accusatrices accusateur NOM f p 0.35 1.28 0.00 0.07 +accuse accuser VER 52.72 39.93 13.28 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +accusent accuser VER 52.72 39.93 1.77 1.22 ind:pre:3p; +accuser accuser VER 52.72 39.93 10.06 7.03 inf; +accusera accuser VER 52.72 39.93 0.65 0.34 ind:fut:3s; +accuseraient accuser VER 52.72 39.93 0.03 0.14 cnd:pre:3p; +accuserais accuser VER 52.72 39.93 0.42 0.07 cnd:pre:1s;cnd:pre:2s; +accuserait accuser VER 52.72 39.93 0.30 0.54 cnd:pre:3s; +accuserez accuser VER 52.72 39.93 0.04 0.00 ind:fut:2p; +accuseriez accuser VER 52.72 39.93 0.03 0.07 cnd:pre:2p; +accuserions accuser VER 52.72 39.93 0.00 0.07 cnd:pre:1p; +accuserons accuser VER 52.72 39.93 0.02 0.00 ind:fut:1p; +accuseront accuser VER 52.72 39.93 0.22 0.00 ind:fut:3p; +accuses accuser VER 52.72 39.93 2.72 0.07 ind:pre:2s; +accusez accuser VER 52.72 39.93 3.22 0.88 imp:pre:2p;ind:pre:2p; +accusiez accuser VER 52.72 39.93 0.13 0.00 ind:imp:2p; +accusions accuser VER 52.72 39.93 0.01 0.07 ind:imp:1p; +accusons accuser VER 52.72 39.93 0.16 0.14 imp:pre:1p;ind:pre:1p; +accusât accuser VER 52.72 39.93 0.00 0.20 sub:imp:3s; +accusèrent accuser VER 52.72 39.93 0.01 0.20 ind:pas:3p; +accusé accuser VER m s 52.72 39.93 11.73 5.20 par:pas; +accusée accuser VER f s 52.72 39.93 3.20 1.01 par:pas; +accusées accuser VER f p 52.72 39.93 0.33 0.14 par:pas; +accusés accusé NOM m p 13.74 11.69 2.69 4.32 +ace ace NOM m s 2.48 0.00 2.48 0.00 +acellulaire acellulaire ADJ m s 0.03 0.00 0.03 0.00 +acerbe acerbe ADJ s 0.16 1.22 0.13 1.08 +acerbes acerbe ADJ f p 0.16 1.22 0.03 0.14 +acerbité acerbité NOM m s 0.02 0.07 0.02 0.07 +acetabulum acetabulum NOM m s 0.01 0.00 0.01 0.00 +achalandage achalandage NOM m s 0.00 0.07 0.00 0.07 +achalandaient achalander VER 0.01 0.07 0.00 0.07 ind:imp:3p; +achalandé achalandé ADJ m s 0.02 0.34 0.01 0.07 +achalandée achalandé ADJ f s 0.02 0.34 0.01 0.07 +achalandées achalandé ADJ f p 0.02 0.34 0.00 0.07 +achalandés achalander VER m p 0.01 0.07 0.01 0.00 par:pas; +achaler achaler VER 0.01 0.00 0.01 0.00 inf; +achards achards NOM m p 0.03 0.00 0.03 0.00 +acharna acharner VER 2.99 22.64 0.01 1.22 ind:pas:3s; +acharnai acharner VER 2.99 22.64 0.00 0.07 ind:pas:1s; +acharnaient acharner VER 2.99 22.64 0.03 1.62 ind:imp:3p; +acharnais acharner VER 2.99 22.64 0.01 0.47 ind:imp:1s; +acharnait acharner VER 2.99 22.64 0.11 3.24 ind:imp:3s; +acharnant acharner VER 2.99 22.64 0.00 1.49 par:pre; +acharne acharner VER 2.99 22.64 0.86 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acharnement acharnement NOM m s 0.60 8.24 0.60 8.11 +acharnements acharnement NOM m p 0.60 8.24 0.00 0.14 +acharnent acharner VER 2.99 22.64 0.23 1.08 ind:pre:3p; +acharner acharner VER 2.99 22.64 0.35 1.62 inf; +acharnera acharner VER 2.99 22.64 0.01 0.14 ind:fut:3s; +acharnerai acharner VER 2.99 22.64 0.02 0.00 ind:fut:1s; +acharnerait acharner VER 2.99 22.64 0.01 0.00 cnd:pre:3s; +acharnes acharner VER 2.99 22.64 0.26 0.14 ind:pre:2s; +acharnez acharner VER 2.99 22.64 0.10 0.07 imp:pre:2p;ind:pre:2p; +acharnèrent acharner VER 2.99 22.64 0.00 0.34 ind:pas:3p; +acharné acharné ADJ m s 1.61 5.41 0.59 2.23 +acharnée acharné ADJ f s 1.61 5.41 0.66 1.69 +acharnées acharné ADJ f p 1.61 5.41 0.02 0.41 +acharnés acharné ADJ m p 1.61 5.41 0.34 1.08 +achat achat NOM m s 9.75 16.96 5.20 10.95 +achats achat NOM m p 9.75 16.96 4.55 6.01 +ache ache NOM f s 0.00 0.20 0.00 0.14 +achemina acheminer VER 0.83 6.15 0.01 0.41 ind:pas:3s; +acheminai acheminer VER 0.83 6.15 0.00 0.14 ind:pas:1s; +acheminaient acheminer VER 0.83 6.15 0.00 0.27 ind:imp:3p; +acheminait acheminer VER 0.83 6.15 0.01 0.88 ind:imp:3s; +acheminant acheminer VER 0.83 6.15 0.02 0.27 par:pre; +achemine acheminer VER 0.83 6.15 0.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acheminement acheminement NOM m s 0.20 0.47 0.20 0.47 +acheminent acheminer VER 0.83 6.15 0.01 0.61 ind:pre:3p; +acheminer acheminer VER 0.83 6.15 0.55 1.22 inf; +achemineront acheminer VER 0.83 6.15 0.00 0.07 ind:fut:3p; +acheminâmes acheminer VER 0.83 6.15 0.00 0.07 ind:pas:1p; +acheminons acheminer VER 0.83 6.15 0.00 0.27 ind:pre:1p; +acheminèrent acheminer VER 0.83 6.15 0.00 0.14 ind:pas:3p; +acheminé acheminer VER m s 0.83 6.15 0.04 0.41 par:pas; +acheminée acheminer VER f s 0.83 6.15 0.05 0.14 par:pas; +acheminées acheminer VER f p 0.83 6.15 0.03 0.27 par:pas; +acheminés acheminer VER m p 0.83 6.15 0.02 0.27 par:pas; +aches ache NOM f p 0.00 0.20 0.00 0.07 +acheta acheter VER 290.69 148.38 0.37 7.09 ind:pas:3s; +achetable achetable ADJ s 0.00 0.14 0.00 0.14 +achetai acheter VER 290.69 148.38 0.28 2.23 ind:pas:1s; +achetaient acheter VER 290.69 148.38 0.64 2.16 ind:imp:3p; +achetais acheter VER 290.69 148.38 1.32 1.49 ind:imp:1s;ind:imp:2s; +achetait acheter VER 290.69 148.38 3.43 6.22 ind:imp:3s; +achetant acheter VER 290.69 148.38 1.23 1.42 par:pre; +achetassent acheter VER 290.69 148.38 0.00 0.07 sub:imp:3p; +acheter acheter VER 290.69 148.38 115.26 57.09 inf; +acheteur acheteur NOM m s 6.55 5.47 3.89 2.97 +acheteurs acheteur NOM m p 6.55 5.47 2.50 2.16 +acheteuse acheteur NOM f s 6.55 5.47 0.16 0.14 +acheteuses acheteuse NOM f p 0.02 0.00 0.02 0.00 +achetez acheter VER 290.69 148.38 10.51 1.22 imp:pre:2p;ind:pre:2p; +achetiez acheter VER 290.69 148.38 0.28 0.14 ind:imp:2p; +achetions acheter VER 290.69 148.38 0.06 0.74 ind:imp:1p; +achetâmes acheter VER 290.69 148.38 0.00 0.20 ind:pas:1p; +achetons acheter VER 290.69 148.38 1.38 0.47 imp:pre:1p;ind:pre:1p; +achetât acheter VER 290.69 148.38 0.00 0.20 sub:imp:3s; +achetèrent acheter VER 290.69 148.38 0.06 0.95 ind:pas:3p; +acheté acheter VER m s 290.69 148.38 72.38 28.72 par:pas;par:pas;par:pas; +achetée acheter VER f s 290.69 148.38 8.67 5.88 par:pas; +achetées acheter VER f p 290.69 148.38 1.90 2.84 ind:imp:3s;par:pas; +achetés acheter VER m p 290.69 148.38 3.52 3.85 par:pas; +acheva achever VER 22.97 81.42 0.23 11.69 ind:pas:3s; +achevai achever VER 22.97 81.42 0.01 0.54 ind:pas:1s; +achevaient achever VER 22.97 81.42 0.12 4.19 ind:imp:3p; +achevais achever VER 22.97 81.42 0.00 0.54 ind:imp:1s; +achevait achever VER 22.97 81.42 0.34 12.64 ind:imp:3s; +achevant achever VER 22.97 81.42 0.02 2.57 par:pre; +achever achever VER 22.97 81.42 6.49 15.00 inf; +achevez achever VER 22.97 81.42 1.00 0.07 imp:pre:2p;ind:pre:2p; +acheviez achever VER 22.97 81.42 0.01 0.00 ind:imp:2p; +achevions achever VER 22.97 81.42 0.00 0.41 ind:imp:1p; +achevâmes achever VER 22.97 81.42 0.00 0.07 ind:pas:1p; +achevons achever VER 22.97 81.42 0.07 0.41 imp:pre:1p;ind:pre:1p; +achevât achever VER 22.97 81.42 0.00 0.61 sub:imp:3s; +achevèrent achever VER 22.97 81.42 0.01 1.22 ind:pas:3p; +achevé achever VER m s 22.97 81.42 2.70 12.64 par:pas; +achevée achever VER f s 22.97 81.42 1.54 2.91 par:pas; +achevées achevé ADJ f p 1.61 6.69 0.19 0.81 +achevés achever VER m p 22.97 81.42 0.08 0.41 par:pas; +achillée achillée NOM f s 0.01 0.00 0.01 0.00 +achondroplasie achondroplasie NOM f s 0.04 0.00 0.03 0.00 +achondroplasies achondroplasie NOM f p 0.04 0.00 0.01 0.00 +achoppa achopper VER 0.01 0.81 0.00 0.07 ind:pas:3s; +achoppai achopper VER 0.01 0.81 0.00 0.07 ind:pas:1s; +achoppaient achopper VER 0.01 0.81 0.00 0.07 ind:imp:3p; +achoppais achopper VER 0.01 0.81 0.00 0.20 ind:imp:1s; +achoppait achopper VER 0.01 0.81 0.00 0.07 ind:imp:3s; +achoppe achopper VER 0.01 0.81 0.00 0.14 ind:pre:1s;ind:pre:3s; +achoppement achoppement NOM m s 0.01 0.14 0.01 0.14 +achopper achopper VER 0.01 0.81 0.01 0.00 inf; +achoppé achopper VER m s 0.01 0.81 0.00 0.14 par:pas; +achoppée achopper VER f s 0.01 0.81 0.00 0.07 par:pas; +achète acheter VER 290.69 148.38 39.82 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +achètent acheter VER 290.69 148.38 5.44 2.70 ind:pre:3p; +achètera acheter VER 290.69 148.38 3.98 0.74 ind:fut:3s; +achèterai acheter VER 290.69 148.38 7.09 2.30 ind:fut:1s; +achèteraient acheter VER 290.69 148.38 0.03 0.41 cnd:pre:3p; +achèterais acheter VER 290.69 148.38 1.75 0.74 cnd:pre:1s;cnd:pre:2s; +achèterait acheter VER 290.69 148.38 1.02 1.22 cnd:pre:3s; +achèteras acheter VER 290.69 148.38 1.55 0.61 ind:fut:2s; +achèterez acheter VER 290.69 148.38 0.48 0.20 ind:fut:2p; +achèteriez acheter VER 290.69 148.38 0.17 0.07 cnd:pre:2p; +achèterions acheter VER 290.69 148.38 0.00 0.07 cnd:pre:1p; +achèterons acheter VER 290.69 148.38 0.47 0.41 ind:fut:1p; +achèteront acheter VER 290.69 148.38 0.31 0.54 ind:fut:3p; +achètes acheter VER 290.69 148.38 7.28 0.88 ind:pre:2s;sub:pre:2s; +achève achever VER 22.97 81.42 8.31 11.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +achèvement achèvement NOM m s 0.52 1.82 0.52 1.76 +achèvements achèvement NOM m p 0.52 1.82 0.00 0.07 +achèvent achever VER 22.97 81.42 0.14 2.70 ind:pre:3p; +achèvera achever VER 22.97 81.42 1.00 0.27 ind:fut:3s; +achèverai achever VER 22.97 81.42 0.06 0.00 ind:fut:1s; +achèveraient achever VER 22.97 81.42 0.00 0.14 cnd:pre:3p; +achèverait achever VER 22.97 81.42 0.10 0.88 cnd:pre:3s; +achèverez achever VER 22.97 81.42 0.02 0.00 ind:fut:2p; +achèverons achever VER 22.97 81.42 0.06 0.00 ind:fut:1p; +achèveront achever VER 22.97 81.42 0.13 0.20 ind:fut:3p; +achèves achever VER 22.97 81.42 0.39 0.00 ind:pre:2s; +achélème achélème NOM m s 0.00 1.69 0.00 0.95 +achélèmes achélème NOM m p 0.00 1.69 0.00 0.74 +acid_jazz acid_jazz NOM m s 0.03 0.00 0.03 0.00 +acide acide NOM m s 9.46 4.80 8.44 3.85 +acides acide NOM m p 9.46 4.80 1.02 0.95 +acidité acidité NOM f s 0.29 0.95 0.27 0.81 +acidités acidité NOM f p 0.29 0.95 0.02 0.14 +acidocétose acidocétose NOM f s 0.08 0.00 0.08 0.00 +acidose acidose NOM f s 0.22 0.00 0.22 0.00 +acidulé acidulé ADJ m s 0.15 1.55 0.02 0.47 +acidulée acidulé ADJ f s 0.15 1.55 0.04 0.27 +acidulées acidulé ADJ f p 0.15 1.55 0.01 0.27 +acidulés acidulé ADJ m p 0.15 1.55 0.08 0.54 +acier acier NOM m s 13.88 34.46 13.85 33.38 +aciers acier NOM m p 13.88 34.46 0.03 1.08 +aciérie aciérie NOM f s 2.21 0.27 0.67 0.14 +aciéries aciérie NOM f p 2.21 0.27 1.53 0.14 +acmé acmé NOM f s 0.01 0.00 0.01 0.00 +acné acné NOM f s 1.90 0.88 1.90 0.81 +acnéiques acnéique ADJ m p 0.00 0.14 0.00 0.14 +acnés acné NOM f p 1.90 0.88 0.00 0.07 +acolyte acolyte NOM m s 1.45 1.96 0.75 0.61 +acolytes acolyte NOM m p 1.45 1.96 0.70 1.35 +acompte acompte NOM m s 3.67 1.15 3.33 1.01 +acomptes acompte NOM m p 3.67 1.15 0.34 0.14 +aconiers aconier NOM m p 0.00 0.07 0.00 0.07 +aconit aconit NOM m s 0.14 0.34 0.14 0.34 +acoquina acoquiner VER 0.23 1.01 0.01 0.07 ind:pas:3s; +acoquine acoquiner VER 0.23 1.01 0.04 0.07 ind:pre:1s;ind:pre:3s; +acoquiner acoquiner VER 0.23 1.01 0.12 0.41 inf; +acoquiné acoquiner VER m s 0.23 1.01 0.03 0.07 par:pas; +acoquinée acoquiner VER f s 0.23 1.01 0.02 0.14 par:pas; +acoquinés acoquiner VER m p 0.23 1.01 0.01 0.27 par:pas; +acouphène acouphène NOM m s 0.18 0.00 0.18 0.00 +acoustique acoustique NOM f s 0.57 0.34 0.55 0.34 +acoustiques acoustique ADJ p 0.56 0.81 0.07 0.07 +acqua_toffana acqua_toffana NOM f s 0.00 0.07 0.00 0.07 +acquerra acquérir VER 8.30 29.66 0.01 0.00 ind:fut:3s; +acquerrai acquérir VER 8.30 29.66 0.01 0.07 ind:fut:1s; +acquerraient acquérir VER 8.30 29.66 0.00 0.14 cnd:pre:3p; +acquerront acquérir VER 8.30 29.66 0.01 0.07 ind:fut:3p; +acquiers acquérir VER 8.30 29.66 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +acquiert acquérir VER 8.30 29.66 0.68 1.42 ind:pre:3s; +acquiesce acquiescer VER 1.15 12.43 0.33 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +acquiescement acquiescement NOM m s 0.15 2.84 0.15 2.36 +acquiescements acquiescement NOM m p 0.15 2.84 0.00 0.47 +acquiescent acquiescer VER 1.15 12.43 0.26 0.07 ind:pre:3p; +acquiescer acquiescer VER 1.15 12.43 0.18 1.49 inf; +acquiesceront acquiescer VER 1.15 12.43 0.00 0.07 ind:fut:3p; +acquiesces acquiescer VER 1.15 12.43 0.02 0.00 ind:pre:2s; +acquiescèrent acquiescer VER 1.15 12.43 0.00 0.14 ind:pas:3p; +acquiescé acquiescer VER m s 1.15 12.43 0.31 1.08 par:pas; +acquiesça acquiescer VER 1.15 12.43 0.01 4.59 ind:pas:3s; +acquiesçai acquiescer VER 1.15 12.43 0.00 0.74 ind:pas:1s; +acquiesçaient acquiescer VER 1.15 12.43 0.00 0.14 ind:imp:3p; +acquiesçais acquiescer VER 1.15 12.43 0.02 0.34 ind:imp:1s; +acquiesçait acquiescer VER 1.15 12.43 0.00 1.15 ind:imp:3s; +acquiesçant acquiescer VER 1.15 12.43 0.02 0.20 par:pre; +acquiesçons acquiescer VER 1.15 12.43 0.00 0.07 ind:pre:1p; +acquirent acquérir VER 8.30 29.66 0.00 0.14 ind:pas:3p; +acquis acquérir VER m 8.30 29.66 3.52 13.65 ind:pas:1s;par:pas;par:pas; +acquise acquérir VER f s 8.30 29.66 1.05 2.97 par:pas; +acquises acquérir VER f p 8.30 29.66 0.34 0.88 par:pas; +acquisition acquisition NOM f s 2.15 3.78 1.35 2.84 +acquisitions acquisition NOM f p 2.15 3.78 0.81 0.95 +acquit acquit NOM m s 0.29 2.23 0.29 2.16 +acquière acquérir VER 8.30 29.66 0.04 0.20 sub:pre:1s;sub:pre:3s; +acquièrent acquérir VER 8.30 29.66 0.12 0.74 ind:pre:3p; +acquits acquit NOM m p 0.29 2.23 0.00 0.07 +acquitta acquitter VER 5.29 6.82 0.00 0.47 ind:pas:3s; +acquittai acquitter VER 5.29 6.82 0.00 0.07 ind:pas:1s; +acquittaient acquitter VER 5.29 6.82 0.00 0.20 ind:imp:3p; +acquittais acquitter VER 5.29 6.82 0.00 0.34 ind:imp:1s; +acquittait acquitter VER 5.29 6.82 0.04 0.81 ind:imp:3s; +acquittant acquitter VER 5.29 6.82 0.01 0.20 par:pre; +acquitte acquitter VER 5.29 6.82 1.17 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +acquittement acquittement NOM m s 0.60 0.34 0.60 0.34 +acquittent acquitter VER 5.29 6.82 0.07 0.00 ind:pre:3p; +acquitter acquitter VER 5.29 6.82 1.13 1.82 inf; +acquittera acquitter VER 5.29 6.82 0.04 0.07 ind:fut:3s; +acquitterai acquitter VER 5.29 6.82 0.01 0.07 ind:fut:1s; +acquitterais acquitter VER 5.29 6.82 0.01 0.00 cnd:pre:1s; +acquitterait acquitter VER 5.29 6.82 0.03 0.07 cnd:pre:3s; +acquitterez acquitter VER 5.29 6.82 0.03 0.07 ind:fut:2p; +acquittes acquitter VER 5.29 6.82 0.14 0.07 ind:pre:2s; +acquittez acquitter VER 5.29 6.82 0.16 0.00 imp:pre:2p;ind:pre:2p; +acquittions acquitter VER 5.29 6.82 0.01 0.07 ind:imp:1p; +acquittât acquitter VER 5.29 6.82 0.00 0.07 sub:imp:3s; +acquitté acquitter VER m s 5.29 6.82 1.92 1.28 par:pas; +acquittée acquitter VER f s 5.29 6.82 0.26 0.34 par:pas; +acquittés acquitter VER m p 5.29 6.82 0.27 0.07 par:pas; +acquéraient acquérir VER 8.30 29.66 0.10 0.20 ind:imp:3p; +acquérais acquérir VER 8.30 29.66 0.01 0.27 ind:imp:1s; +acquérait acquérir VER 8.30 29.66 0.11 0.95 ind:imp:3s; +acquérant acquérir VER 8.30 29.66 0.05 0.20 par:pre; +acquéreur acquéreur NOM m s 0.58 1.08 0.23 0.88 +acquéreurs acquéreur NOM m p 0.58 1.08 0.35 0.20 +acquérions acquérir VER 8.30 29.66 0.00 0.07 ind:imp:1p; +acquérir acquérir VER 8.30 29.66 2.15 7.43 inf; +acquérons acquérir VER 8.30 29.66 0.01 0.07 ind:pre:1p; +acquêt acquêt NOM m s 0.14 0.20 0.00 0.07 +acquêts acquêt NOM m p 0.14 0.20 0.14 0.14 +acra acra NOM m s 0.27 0.14 0.27 0.14 +acre acre NOM f s 0.83 0.41 0.27 0.07 +acres acre NOM f p 0.83 0.41 0.56 0.34 +acrimonie acrimonie NOM f s 0.06 0.81 0.06 0.81 +acrimonieuse acrimonieux ADJ f s 0.04 0.14 0.01 0.07 +acrimonieusement acrimonieusement ADV 0.00 0.07 0.00 0.07 +acrimonieuses acrimonieux ADJ f p 0.04 0.14 0.00 0.07 +acrimonieux acrimonieux ADJ m s 0.04 0.14 0.02 0.00 +acrobate acrobate NOM s 2.34 4.12 1.46 2.57 +acrobates acrobate NOM p 2.34 4.12 0.89 1.55 +acrobatie acrobatie NOM f s 0.81 2.57 0.32 0.81 +acrobaties acrobatie NOM f p 0.81 2.57 0.50 1.76 +acrobatique acrobatique ADJ s 0.47 1.01 0.31 0.61 +acrobatiquement acrobatiquement ADV 0.01 0.07 0.01 0.07 +acrobatiques acrobatique ADJ p 0.47 1.01 0.17 0.41 +acrocéphale acrocéphale ADJ s 0.00 0.07 0.00 0.07 +acromion acromion NOM m s 0.01 0.14 0.01 0.14 +acronyme acronyme NOM m s 0.19 0.07 0.19 0.07 +acrophobie acrophobie NOM f s 0.08 0.00 0.08 0.00 +acropole acropole NOM f s 0.00 0.81 0.00 0.81 +acrostiche acrostiche NOM m s 0.02 0.00 0.02 0.00 +acrotère acrotère NOM m s 0.00 0.07 0.00 0.07 +acré acré ONO 0.00 0.20 0.00 0.20 +acrylique acrylique NOM m s 0.50 0.14 0.40 0.07 +acryliques acrylique NOM m p 0.50 0.14 0.10 0.07 +acrylonitrile acrylonitrile NOM m s 0.01 0.00 0.01 0.00 +acta acter VER 0.29 0.07 0.00 0.07 ind:pas:3s; +acte acte NOM m s 56.81 57.30 39.19 35.88 +actes acte NOM m p 56.81 57.30 17.62 21.42 +acteur acteur NOM m s 72.27 38.31 30.51 15.47 +acteurs acteur NOM m p 72.27 38.31 17.92 12.30 +actif actif ADJ m s 10.15 13.65 4.12 3.58 +actifs actif ADJ m p 10.15 13.65 1.33 1.35 +actine actine NOM f s 0.01 0.00 0.01 0.00 +actinies actinie NOM f p 0.00 0.41 0.00 0.41 +action_painting action_painting NOM f s 0.00 0.07 0.00 0.07 +action action NOM f s 69.27 87.43 49.97 72.91 +actionna actionner VER 2.01 5.61 0.00 0.47 ind:pas:3s; +actionnai actionner VER 2.01 5.61 0.00 0.20 ind:pas:1s; +actionnaient actionner VER 2.01 5.61 0.14 0.41 ind:imp:3p; +actionnaire actionnaire NOM s 3.72 0.74 1.21 0.27 +actionnaires actionnaire NOM p 3.72 0.74 2.51 0.47 +actionnais actionner VER 2.01 5.61 0.01 0.07 ind:imp:1s; +actionnait actionner VER 2.01 5.61 0.00 0.81 ind:imp:3s; +actionnant actionner VER 2.01 5.61 0.02 0.61 par:pre; +actionnariat actionnariat NOM m s 0.01 0.00 0.01 0.00 +actionne actionner VER 2.01 5.61 0.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +actionnement actionnement NOM m s 0.01 0.07 0.01 0.07 +actionnent actionner VER 2.01 5.61 0.04 0.00 ind:pre:3p; +actionner actionner VER 2.01 5.61 0.43 1.22 inf; +actionneront actionner VER 2.01 5.61 0.00 0.07 ind:fut:3p; +actionneur actionneur NOM m s 0.01 0.00 0.01 0.00 +actionnez actionner VER 2.01 5.61 0.34 0.00 imp:pre:2p;ind:pre:2p; +actionnât actionner VER 2.01 5.61 0.00 0.07 sub:imp:3s; +actionné actionner VER m s 2.01 5.61 0.20 0.81 par:pas; +actionnée actionner VER f s 2.01 5.61 0.05 0.07 par:pas; +actionnées actionner VER f p 2.01 5.61 0.00 0.07 par:pas; +actionnés actionner VER m p 2.01 5.61 0.14 0.00 par:pas; +actions action NOM f p 69.27 87.43 19.30 14.53 +activa activer VER 12.58 6.62 0.00 0.27 ind:pas:3s; +activai activer VER 12.58 6.62 0.00 0.07 ind:pas:1s; +activaient activer VER 12.58 6.62 0.10 0.74 ind:imp:3p; +activait activer VER 12.58 6.62 0.05 1.08 ind:imp:3s; +activant activer VER 12.58 6.62 0.10 0.47 par:pre; +activateur activateur NOM m s 0.10 0.00 0.10 0.00 +activation activation NOM f s 2.27 0.07 2.21 0.07 +activations activation NOM f p 2.27 0.07 0.07 0.00 +active actif ADJ f s 10.15 13.65 4.21 7.16 +activement activement ADV 1.18 3.51 1.18 3.51 +activent activer VER 12.58 6.62 0.15 0.61 ind:pre:3p; +activer activer VER 12.58 6.62 2.98 1.35 inf; +activera activer VER 12.58 6.62 0.13 0.00 ind:fut:3s; +activerai activer VER 12.58 6.62 0.06 0.00 ind:fut:1s; +activerait activer VER 12.58 6.62 0.02 0.00 cnd:pre:3s; +activeras activer VER 12.58 6.62 0.01 0.00 ind:fut:2s; +actives actif ADJ f p 10.15 13.65 0.50 1.55 +activez activer VER 12.58 6.62 2.34 0.00 imp:pre:2p;ind:pre:2p; +activisme activisme NOM m s 0.15 0.20 0.15 0.20 +activiste activiste NOM s 0.88 0.54 0.23 0.07 +activistes activiste NOM p 0.88 0.54 0.65 0.47 +activité activité NOM f s 23.47 38.92 13.05 25.81 +activités activité NOM f p 23.47 38.92 10.42 13.11 +activons activer VER 12.58 6.62 0.33 0.34 imp:pre:1p;ind:pre:1p; +activèrent activer VER 12.58 6.62 0.00 0.14 ind:pas:3p; +activé activer VER m s 12.58 6.62 2.13 0.14 par:pas; +activée activé ADJ f s 2.57 0.07 0.81 0.00 +activées activé ADJ f p 2.57 0.07 0.34 0.00 +activés activé ADJ m p 2.57 0.07 0.48 0.00 +actrice acteur NOM f s 72.27 38.31 23.83 7.57 +actrices actrice NOM f p 2.50 0.00 2.50 0.00 +actuaire actuaire NOM s 0.03 0.00 0.03 0.00 +actualisation actualisation NOM f s 0.03 0.07 0.03 0.07 +actualise actualiser VER 0.17 0.34 0.01 0.07 ind:pre:3s; +actualiser actualiser VER 0.17 0.34 0.06 0.07 inf; +actualisez actualiser VER 0.17 0.34 0.04 0.00 imp:pre:2p; +actualisé actualiser VER m s 0.17 0.34 0.02 0.07 par:pas; +actualisée actualiser VER f s 0.17 0.34 0.02 0.07 par:pas; +actualisées actualiser VER f p 0.17 0.34 0.01 0.07 par:pas; +actualité actualité NOM f s 3.25 8.72 1.79 5.68 +actualités actualité NOM f p 3.25 8.72 1.45 3.04 +actuariel actuariel ADJ m s 0.02 0.00 0.02 0.00 +actuation actuation NOM f s 0.01 0.00 0.01 0.00 +actuel actuel ADJ m s 14.86 20.68 4.69 6.49 +actuelle actuel ADJ f s 14.86 20.68 7.80 8.58 +actuellement actuellement ADV 11.39 16.69 11.39 16.69 +actuelles actuel ADJ f p 14.86 20.68 1.14 2.64 +actuels actuel ADJ m p 14.86 20.68 1.23 2.97 +acuité acuité NOM f s 0.56 3.18 0.56 3.18 +acumen acumen NOM m s 0.00 0.07 0.00 0.07 +acéphale acéphale NOM m s 0.00 0.20 0.00 0.14 +acéphales acéphale NOM m p 0.00 0.20 0.00 0.07 +acuponcteur acuponcteur NOM m s 0.23 0.00 0.23 0.00 +acuponcture acuponcture NOM f s 0.17 0.00 0.17 0.00 +acupuncteur acupuncteur NOM m s 0.11 0.07 0.11 0.07 +acupuncture acupuncture NOM f s 0.79 0.41 0.79 0.41 +acéré acéré ADJ m s 0.81 2.43 0.14 0.74 +acérée acéré ADJ f s 0.81 2.43 0.11 0.54 +acérées acéré ADJ f p 0.81 2.43 0.51 0.68 +acérés acéré ADJ m p 0.81 2.43 0.06 0.47 +acétate acétate NOM m s 0.20 0.14 0.20 0.14 +acétique acétique ADJ m s 0.05 0.07 0.05 0.07 +acétone acétone NOM f s 0.21 0.27 0.21 0.27 +acétylcholine acétylcholine NOM f s 0.25 0.00 0.25 0.00 +acétylsalicylique acétylsalicylique ADJ m s 0.03 0.00 0.03 0.00 +acétylène acétylène NOM m s 0.18 1.96 0.18 1.96 +ad_hoc ad_hoc ADJ 0.11 0.81 0.11 0.81 +ad_infinitum ad_infinitum ADV 0.05 0.00 0.05 0.00 +ad_libitum ad_libitum ADV 0.00 0.14 0.00 0.14 +ad_limina ad_limina ADV 0.00 0.07 0.00 0.07 +ad_majorem_dei_gloriam ad_majorem_dei_gloriam ADV 0.00 0.14 0.00 0.14 +ad_nutum ad_nutum ADV 0.00 0.07 0.00 0.07 +ad_patres ad_patres ADV 0.02 0.27 0.02 0.27 +ad_vitam_aeternam ad_vitam_aeternam ADV 0.00 0.20 0.00 0.20 +ada ada NOM m s 0.05 0.00 0.05 0.00 +adage adage NOM m s 0.62 0.74 0.61 0.54 +adages adage NOM m p 0.62 0.74 0.01 0.20 +adagio adagio NOM m s 0.13 0.34 0.13 0.34 +adamantin adamantin ADJ m s 0.01 0.20 0.00 0.14 +adamantine adamantin ADJ f s 0.01 0.20 0.01 0.07 +adamique adamique ADJ m s 0.00 0.14 0.00 0.14 +adapta adapter VER 13.44 12.57 0.01 0.14 ind:pas:3s; +adaptabilité adaptabilité NOM f s 0.16 0.00 0.16 0.00 +adaptable adaptable ADJ s 0.10 0.20 0.07 0.07 +adaptables adaptable ADJ m p 0.10 0.20 0.02 0.14 +adaptai adapter VER 13.44 12.57 0.00 0.07 ind:pas:1s; +adaptaient adapter VER 13.44 12.57 0.01 0.14 ind:imp:3p; +adaptais adapter VER 13.44 12.57 0.00 0.20 ind:imp:1s; +adaptait adapter VER 13.44 12.57 0.04 0.68 ind:imp:3s; +adaptant adapter VER 13.44 12.57 0.05 0.47 par:pre; +adaptateur adaptateur NOM m s 0.15 0.41 0.12 0.41 +adaptateurs adaptateur NOM m p 0.15 0.41 0.04 0.00 +adaptatif adaptatif ADJ m s 0.04 0.07 0.04 0.00 +adaptatifs adaptatif ADJ m p 0.04 0.07 0.00 0.07 +adaptation adaptation NOM f s 2.48 4.66 2.46 4.46 +adaptations adaptation NOM f p 2.48 4.66 0.03 0.20 +adapte adapter VER 13.44 12.57 1.75 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adaptent adapter VER 13.44 12.57 0.39 0.07 ind:pre:3p; +adapter adapter VER 13.44 12.57 5.63 3.72 inf; +adaptera adapter VER 13.44 12.57 0.18 0.07 ind:fut:3s; +adapterai adapter VER 13.44 12.57 0.05 0.07 ind:fut:1s; +adapterais adapter VER 13.44 12.57 0.00 0.07 cnd:pre:1s; +adapterait adapter VER 13.44 12.57 0.01 0.07 cnd:pre:3s; +adapteras adapter VER 13.44 12.57 0.04 0.00 ind:fut:2s; +adapterez adapter VER 13.44 12.57 0.05 0.00 ind:fut:2p; +adapterons adapter VER 13.44 12.57 0.05 0.07 ind:fut:1p; +adapteront adapter VER 13.44 12.57 0.01 0.07 ind:fut:3p; +adaptes adapter VER 13.44 12.57 0.16 0.07 ind:pre:2s; +adaptez adapter VER 13.44 12.57 0.07 0.07 imp:pre:2p;ind:pre:2p; +adaptât adapter VER 13.44 12.57 0.00 0.07 sub:imp:3s; +adaptèrent adapter VER 13.44 12.57 0.01 0.07 ind:pas:3p; +adapté adapter VER m s 13.44 12.57 3.16 2.36 imp:pre:2s;par:pas; +adaptée adapter VER f s 13.44 12.57 0.78 1.42 par:pas; +adaptées adapter VER f p 13.44 12.57 0.66 0.61 par:pas; +adaptés adapter VER m p 13.44 12.57 0.34 0.81 par:pas; +addenda addenda NOM m 0.07 0.00 0.07 0.00 +addendum addendum NOM m s 0.01 0.07 0.01 0.07 +addiction addiction NOM f s 0.41 0.07 0.41 0.07 +additif additif NOM m s 0.21 0.14 0.15 0.14 +additifs additif NOM m p 0.21 0.14 0.06 0.00 +addition addition NOM f s 8.61 9.53 8.24 7.36 +additionnaient additionner VER 1.25 2.64 0.00 0.07 ind:imp:3p; +additionnais additionner VER 1.25 2.64 0.00 0.07 ind:imp:1s; +additionnait additionner VER 1.25 2.64 0.00 0.07 ind:imp:3s; +additionnant additionner VER 1.25 2.64 0.19 0.34 par:pre; +additionne additionner VER 1.25 2.64 0.22 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +additionnel additionnel ADJ m s 0.25 0.34 0.04 0.20 +additionnelle additionnel ADJ f s 0.25 0.34 0.11 0.00 +additionnelles additionnel ADJ f p 0.25 0.34 0.05 0.14 +additionnels additionnel ADJ m p 0.25 0.34 0.05 0.00 +additionnent additionner VER 1.25 2.64 0.13 0.20 ind:pre:3p; +additionner additionner VER 1.25 2.64 0.33 0.41 inf; +additionneraient additionner VER 1.25 2.64 0.14 0.07 cnd:pre:3p; +additionnerait additionner VER 1.25 2.64 0.00 0.07 cnd:pre:3s; +additionnez additionner VER 1.25 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +additionné additionner VER m s 1.25 2.64 0.06 0.07 par:pas; +additionnée additionner VER f s 1.25 2.64 0.01 0.20 par:pas; +additionnées additionner VER f p 1.25 2.64 0.14 0.27 par:pas; +additionnés additionner VER m p 1.25 2.64 0.01 0.20 par:pas; +additions addition NOM f p 8.61 9.53 0.37 2.16 +adducteur adducteur NOM m s 0.02 0.00 0.01 0.00 +adducteurs adducteur NOM m p 0.02 0.00 0.01 0.00 +adduction adduction NOM f s 0.04 0.14 0.04 0.14 +adent adent NOM m s 0.01 0.00 0.01 0.00 +adepte adepte NOM s 2.73 2.84 0.88 0.88 +adeptes adepte NOM p 2.73 2.84 1.85 1.96 +adhère adhérer VER 2.67 5.07 0.73 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adhèrent adhérer VER 2.67 5.07 0.21 0.34 ind:pre:3p; +adhéra adhérer VER 2.67 5.07 0.02 0.00 ind:pas:3s; +adhéraient adhérer VER 2.67 5.07 0.01 0.27 ind:imp:3p; +adhérais adhérer VER 2.67 5.07 0.03 0.07 ind:imp:1s; +adhérait adhérer VER 2.67 5.07 0.01 0.95 ind:imp:3s; +adhérant adhérer VER 2.67 5.07 0.03 0.41 par:pre; +adhérence adhérence NOM f s 0.11 0.54 0.06 0.14 +adhérences adhérence NOM f p 0.11 0.54 0.04 0.41 +adhérent adhérent NOM m s 0.57 1.01 0.16 0.14 +adhérente adhérent ADJ f s 0.16 0.27 0.01 0.00 +adhérentes adhérent ADJ f p 0.16 0.27 0.00 0.14 +adhérents adhérent NOM m p 0.57 1.01 0.42 0.88 +adhérer adhérer VER 2.67 5.07 0.82 1.82 inf; +adhérez adhérer VER 2.67 5.07 0.48 0.00 imp:pre:2p;ind:pre:2p; +adhéré adhérer VER m s 2.67 5.07 0.32 0.34 par:pas; +adhésif adhésif ADJ m s 1.05 0.81 0.73 0.47 +adhésifs adhésif ADJ m p 1.05 0.81 0.07 0.20 +adhésion adhésion NOM f s 0.50 6.55 0.45 6.15 +adhésions adhésion NOM f p 0.50 6.55 0.04 0.41 +adhésive adhésif ADJ f s 1.05 0.81 0.17 0.14 +adhésives adhésif ADJ f p 1.05 0.81 0.07 0.00 +adieu adieu ONO 39.70 7.36 39.70 7.36 +adieux adieu NOM m p 44.44 38.04 7.57 10.54 +adipeuse adipeux ADJ f s 0.22 1.28 0.01 0.27 +adipeuses adipeux ADJ f p 0.22 1.28 0.10 0.07 +adipeux adipeux ADJ m 0.22 1.28 0.11 0.95 +adipique adipique ADJ m s 0.03 0.00 0.03 0.00 +adiposité adiposité NOM f s 0.00 0.07 0.00 0.07 +adira adire VER 0.16 0.00 0.16 0.00 ind:fut:3s; +adja adja NOM m s 0.00 1.01 0.00 0.34 +adjacent adjacent ADJ m s 0.59 0.95 0.16 0.14 +adjacente adjacent ADJ f s 0.59 0.95 0.06 0.34 +adjacentes adjacent ADJ f p 0.59 0.95 0.15 0.47 +adjacents adjacent ADJ m p 0.59 0.95 0.22 0.00 +adjas adja NOM m p 0.00 1.01 0.00 0.68 +adjectif adjectif NOM m s 0.45 3.51 0.28 1.96 +adjectifs adjectif NOM m p 0.45 3.51 0.17 1.55 +adjective adjectif ADJ f s 0.01 0.14 0.00 0.07 +adjoignît adjoindre VER 1.71 2.97 0.00 0.07 sub:imp:3s; +adjoignait adjoindre VER 1.71 2.97 0.00 0.07 ind:imp:3s; +adjoignant adjoindre VER 1.71 2.97 0.00 0.07 par:pre; +adjoigne adjoindre VER 1.71 2.97 0.00 0.07 sub:pre:1s; +adjoignit adjoindre VER 1.71 2.97 0.00 0.14 ind:pas:3s; +adjoindra adjoindre VER 1.71 2.97 0.02 0.00 ind:fut:3s; +adjoindre adjoindre VER 1.71 2.97 0.05 0.68 inf; +adjoindront adjoindre VER 1.71 2.97 0.00 0.07 ind:fut:3p; +adjoins adjoindre VER 1.71 2.97 0.14 0.07 ind:pre:1s; +adjoint adjoint NOM m s 9.42 5.14 6.54 4.05 +adjointe adjoint ADJ f s 6.77 2.16 0.25 0.00 +adjointes adjoint NOM f p 9.42 5.14 0.01 0.00 +adjoints adjoint NOM m p 9.42 5.14 2.66 0.95 +adjonction adjonction NOM f s 0.02 0.41 0.02 0.41 +adjudant_chef adjudant_chef NOM m s 2.57 2.70 2.57 2.57 +adjudant_major adjudant_major NOM m s 0.05 0.00 0.05 0.00 +adjudant adjudant NOM m s 16.60 22.23 16.49 21.15 +adjudant_chef adjudant_chef NOM m p 2.57 2.70 0.00 0.14 +adjudants adjudant NOM m p 16.60 22.23 0.11 1.08 +adjudication adjudication NOM f s 0.37 0.20 0.02 0.14 +adjudications adjudication NOM f p 0.37 0.20 0.34 0.07 +adjuge adjuger VER 1.64 0.68 0.05 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adjugeait adjuger VER 1.64 0.68 0.00 0.14 ind:imp:3s; +adjugeant adjuger VER 1.64 0.68 0.00 0.07 par:pre; +adjuger adjuger VER 1.64 0.68 0.03 0.00 inf; +adjugez adjuger VER 1.64 0.68 0.01 0.00 imp:pre:2p; +adjugé adjuger VER m s 1.64 0.68 1.50 0.34 par:pas; +adjugée adjuger VER f s 1.64 0.68 0.04 0.00 par:pas; +adjugés adjuger VER m p 1.64 0.68 0.02 0.00 par:pas; +adjupète adjupète NOM m s 0.00 0.14 0.00 0.07 +adjupètes adjupète NOM m p 0.00 0.14 0.00 0.07 +adjura adjurer VER 0.32 2.97 0.00 0.14 ind:pas:3s; +adjurai adjurer VER 0.32 2.97 0.00 0.20 ind:pas:1s; +adjuraient adjurer VER 0.32 2.97 0.00 0.07 ind:imp:3p; +adjurais adjurer VER 0.32 2.97 0.00 0.14 ind:imp:1s; +adjurait adjurer VER 0.32 2.97 0.01 0.61 ind:imp:3s; +adjurant adjurer VER 0.32 2.97 0.00 0.54 par:pre; +adjuration adjuration NOM f s 0.00 0.34 0.00 0.20 +adjurations adjuration NOM f p 0.00 0.34 0.00 0.14 +adjure adjurer VER 0.32 2.97 0.29 0.41 ind:pre:1s;ind:pre:3s; +adjurer adjurer VER 0.32 2.97 0.00 0.47 inf; +adjurerai adjurer VER 0.32 2.97 0.01 0.00 ind:fut:1s; +adjurerait adjurer VER 0.32 2.97 0.00 0.07 cnd:pre:3s; +adjuré adjurer VER m s 0.32 2.97 0.01 0.34 par:pas; +adjutrice adjutrice NOM f s 0.00 0.07 0.00 0.07 +adjuvants adjuvant NOM m p 0.01 0.07 0.01 0.07 +admît admettre VER 50.05 59.46 0.00 0.34 sub:imp:3s; +admet admettre VER 50.05 59.46 2.83 3.45 ind:pre:3s; +admets admettre VER 50.05 59.46 10.14 3.92 imp:pre:2s;ind:pre:1s;ind:pre:2s; +admettaient admettre VER 50.05 59.46 0.04 1.01 ind:imp:3p; +admettais admettre VER 50.05 59.46 0.20 0.88 ind:imp:1s;ind:imp:2s; +admettait admettre VER 50.05 59.46 0.07 3.78 ind:imp:3s; +admettant admettre VER 50.05 59.46 0.55 3.31 par:pre; +admette admettre VER 50.05 59.46 0.44 0.34 sub:pre:1s;sub:pre:3s; +admettent admettre VER 50.05 59.46 0.37 0.47 ind:pre:3p; +admettes admettre VER 50.05 59.46 0.30 0.00 sub:pre:2s; +admettez admettre VER 50.05 59.46 2.22 0.47 imp:pre:2p;ind:pre:2p; +admettiez admettre VER 50.05 59.46 0.21 0.07 ind:imp:2p; +admettions admettre VER 50.05 59.46 0.03 0.20 ind:imp:1p; +admettons admettre VER 50.05 59.46 4.30 2.70 imp:pre:1p;ind:pre:1p; +admettra admettre VER 50.05 59.46 0.45 0.20 ind:fut:3s; +admettrai admettre VER 50.05 59.46 0.28 0.34 ind:fut:1s; +admettraient admettre VER 50.05 59.46 0.00 0.14 cnd:pre:3p; +admettrais admettre VER 50.05 59.46 0.06 0.20 cnd:pre:1s;cnd:pre:2s; +admettrait admettre VER 50.05 59.46 0.25 0.54 cnd:pre:3s; +admettras admettre VER 50.05 59.46 0.09 0.20 ind:fut:2s; +admettre admettre VER 50.05 59.46 17.92 19.73 inf; +admettrez admettre VER 50.05 59.46 0.22 0.20 ind:fut:2p; +admettriez admettre VER 50.05 59.46 0.03 0.00 cnd:pre:2p; +admettrons admettre VER 50.05 59.46 0.02 0.14 ind:fut:1p; +admettront admettre VER 50.05 59.46 0.09 0.00 ind:fut:3p; +administra administrer VER 3.53 8.04 0.00 0.47 ind:pas:3s; +administrai administrer VER 3.53 8.04 0.00 0.07 ind:pas:1s; +administraient administrer VER 3.53 8.04 0.01 0.34 ind:imp:3p; +administrais administrer VER 3.53 8.04 0.01 0.14 ind:imp:1s; +administrait administrer VER 3.53 8.04 0.04 0.74 ind:imp:3s; +administrant administrer VER 3.53 8.04 0.06 0.27 par:pre; +administrateur administrateur NOM m s 4.95 4.73 4.05 3.78 +administrateurs administrateur NOM m p 4.95 4.73 0.80 0.95 +administratif administratif ADJ m s 3.27 11.08 1.34 2.97 +administratifs administratif ADJ m p 3.27 11.08 0.63 1.62 +administration administration NOM f s 13.40 26.42 13.24 23.85 +administrations administration NOM f p 13.40 26.42 0.16 2.57 +administrative administratif ADJ f s 3.27 11.08 0.70 4.26 +administrativement administrativement ADV 0.05 0.14 0.05 0.14 +administratives administratif ADJ f p 3.27 11.08 0.60 2.23 +administratrice administrateur NOM f s 4.95 4.73 0.10 0.00 +administre administrer VER 3.53 8.04 0.92 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +administrent administrer VER 3.53 8.04 0.04 0.34 ind:pre:3p; +administrer administrer VER 3.53 8.04 1.12 2.84 inf; +administrera administrer VER 3.53 8.04 0.05 0.07 ind:fut:3s; +administrerai administrer VER 3.53 8.04 0.16 0.00 ind:fut:1s; +administrerons administrer VER 3.53 8.04 0.03 0.00 ind:fut:1p; +administres administrer VER 3.53 8.04 0.01 0.07 ind:pre:2s; +administrez administrer VER 3.53 8.04 0.10 0.07 imp:pre:2p;ind:pre:2p; +administrât administrer VER 3.53 8.04 0.00 0.07 sub:imp:3s; +administré administrer VER m s 3.53 8.04 0.63 1.08 par:pas; +administrée administrer VER f s 3.53 8.04 0.19 0.41 par:pas; +administrées administrer VER f p 3.53 8.04 0.01 0.14 par:pas; +administrés administré NOM m p 0.47 0.61 0.27 0.34 +admira admirer VER 32.39 68.18 0.01 3.04 ind:pas:3s; +admirable admirable ADJ s 6.51 31.55 6.02 23.92 +admirablement admirablement ADV 0.71 4.73 0.71 4.73 +admirables admirable ADJ p 6.51 31.55 0.49 7.64 +admirai admirer VER 32.39 68.18 0.14 0.81 ind:pas:1s; +admiraient admirer VER 32.39 68.18 0.06 1.82 ind:imp:3p; +admirais admirer VER 32.39 68.18 3.11 6.35 ind:imp:1s;ind:imp:2s; +admirait admirer VER 32.39 68.18 0.99 11.49 ind:imp:3s; +admirant admirer VER 32.39 68.18 0.08 1.82 par:pre; +admirateur admirateur NOM m s 5.28 5.14 2.63 1.28 +admirateurs admirateur NOM m p 5.28 5.14 2.33 2.91 +admiratif admiratif ADJ m s 0.41 6.96 0.26 2.57 +admiratifs admiratif ADJ m p 0.41 6.96 0.00 1.49 +admiration admiration NOM f s 4.54 32.70 4.54 32.30 +admirations admiration NOM f p 4.54 32.70 0.00 0.41 +admirative admiratif ADJ f s 0.41 6.96 0.02 2.30 +admirativement admirativement ADV 0.00 0.20 0.00 0.20 +admiratives admiratif ADJ f p 0.41 6.96 0.14 0.61 +admiratrice admirateur NOM f s 5.28 5.14 0.32 0.27 +admiratrices admiratrice NOM f p 0.36 0.00 0.36 0.00 +admire admirer VER 32.39 68.18 13.85 13.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +admirent admirer VER 32.39 68.18 0.86 0.95 ind:pre:3p; +admirer admirer VER 32.39 68.18 6.50 17.64 inf;; +admirera admirer VER 32.39 68.18 0.05 0.07 ind:fut:3s; +admirerai admirer VER 32.39 68.18 0.04 0.07 ind:fut:1s; +admirerais admirer VER 32.39 68.18 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +admirerait admirer VER 32.39 68.18 0.03 0.27 cnd:pre:3s; +admirerez admirer VER 32.39 68.18 0.01 0.07 ind:fut:2p; +admireront admirer VER 32.39 68.18 0.04 0.14 ind:fut:3p; +admires admirer VER 32.39 68.18 0.82 0.41 ind:pre:2s; +admirez admirer VER 32.39 68.18 2.25 1.42 imp:pre:2p;ind:pre:2p; +admiriez admirer VER 32.39 68.18 0.22 0.00 ind:imp:2p; +admirions admirer VER 32.39 68.18 0.12 0.81 ind:imp:1p; +admirâmes admirer VER 32.39 68.18 0.00 0.07 ind:pas:1p; +admirons admirer VER 32.39 68.18 0.43 0.61 imp:pre:1p;ind:pre:1p; +admirèrent admirer VER 32.39 68.18 0.00 0.74 ind:pas:3p; +admiré admirer VER m s 32.39 68.18 2.00 4.12 par:pas; +admirée admirer VER f s 32.39 68.18 0.66 1.15 par:pas; +admirées admirer VER f p 32.39 68.18 0.04 0.27 par:pas; +admirés admirer VER m p 32.39 68.18 0.05 0.54 par:pas; +admis admettre VER m 50.05 59.46 6.74 11.35 ind:pas:1s;par:pas;par:pas; +admise admettre VER f s 50.05 59.46 1.75 2.03 par:pas; +admises admettre VER f p 50.05 59.46 0.20 0.54 par:pas; +admissibilité admissibilité NOM f s 0.02 0.07 0.02 0.07 +admissible admissible ADJ m s 0.49 0.61 0.44 0.54 +admissibles admissible ADJ f p 0.49 0.61 0.05 0.07 +admission admission NOM f s 3.42 1.82 2.34 1.82 +admissions admission NOM f p 3.42 1.82 1.08 0.00 +admit admettre VER 50.05 59.46 0.24 2.84 ind:pas:3s; +admixtion admixtion NOM f s 0.00 0.07 0.00 0.07 +admonesta admonester VER 0.03 0.61 0.00 0.07 ind:pas:3s; +admonestait admonester VER 0.03 0.61 0.00 0.07 ind:imp:3s; +admonestation admonestation NOM f s 0.00 0.47 0.00 0.34 +admonestations admonestation NOM f p 0.00 0.47 0.00 0.14 +admoneste admonester VER 0.03 0.61 0.02 0.20 ind:pre:3s; +admonester admonester VER 0.03 0.61 0.01 0.00 inf; +admonestât admonester VER 0.03 0.61 0.00 0.07 sub:imp:3s; +admonesté admonester VER m s 0.03 0.61 0.00 0.07 par:pas; +admonestés admonester VER m p 0.03 0.61 0.00 0.14 par:pas; +admonition admonition NOM f s 0.12 0.20 0.01 0.14 +admonitions admonition NOM f p 0.12 0.20 0.11 0.07 +ado ado NOM s 3.40 0.20 3.40 0.20 +adobe adobe NOM m s 0.08 0.00 0.08 0.00 +adolescence adolescence NOM f s 2.88 13.78 2.88 13.72 +adolescences adolescence NOM f p 2.88 13.78 0.00 0.07 +adolescent adolescent NOM m s 6.84 25.20 2.38 9.66 +adolescente adolescent NOM f s 6.84 25.20 1.59 7.57 +adolescentes adolescent NOM f p 6.84 25.20 0.53 1.28 +adolescents adolescent NOM m p 6.84 25.20 2.34 6.69 +adon adon NOM m s 0.01 0.00 0.01 0.00 +adonc adonc ADV 0.00 0.07 0.00 0.07 +adoncques adoncques ADV 0.00 0.07 0.00 0.07 +adonies adonies NOM f p 0.00 0.07 0.00 0.07 +adonis adonis NOM m 0.28 0.00 0.28 0.00 +adonisant adoniser VER 0.00 0.07 0.00 0.07 par:pre; +adonna adonner VER 1.60 5.74 0.00 0.47 ind:pas:3s; +adonnai adonner VER 1.60 5.74 0.00 0.14 ind:pas:1s; +adonnaient adonner VER 1.60 5.74 0.16 0.61 ind:imp:3p; +adonnais adonner VER 1.60 5.74 0.01 0.14 ind:imp:1s; +adonnait adonner VER 1.60 5.74 0.09 0.81 ind:imp:3s; +adonnant adonner VER 1.60 5.74 0.02 0.07 par:pre; +adonne adonner VER 1.60 5.74 0.55 0.81 ind:pre:1s;ind:pre:3s; +adonnent adonner VER 1.60 5.74 0.20 0.34 ind:pre:3p; +adonner adonner VER 1.60 5.74 0.48 1.08 inf; +adonnerait adonner VER 1.60 5.74 0.00 0.07 cnd:pre:3s; +adonnez adonner VER 1.60 5.74 0.01 0.00 ind:pre:2p; +adonnions adonner VER 1.60 5.74 0.00 0.14 ind:imp:1p; +adonné adonner VER m s 1.60 5.74 0.04 0.61 par:pas; +adonnée adonner VER f s 1.60 5.74 0.02 0.00 par:pas; +adonnées adonner VER f p 1.60 5.74 0.00 0.07 par:pas; +adonnés adonner VER m p 1.60 5.74 0.01 0.41 par:pas; +adopta adopter VER 15.18 29.86 0.05 1.49 ind:pas:3s; +adoptable adoptable ADJ f s 0.00 0.07 0.00 0.07 +adoptai adopter VER 15.18 29.86 0.02 0.41 ind:pas:1s; +adoptaient adopter VER 15.18 29.86 0.01 0.14 ind:imp:3p; +adoptais adopter VER 15.18 29.86 0.00 0.14 ind:imp:1s; +adoptait adopter VER 15.18 29.86 0.13 1.89 ind:imp:3s; +adoptant adoptant ADJ m s 0.00 0.07 0.00 0.07 +adoptant adopter VER 15.18 29.86 0.06 0.81 par:pre; +adopte adopter VER 15.18 29.86 1.28 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adoptent adopter VER 15.18 29.86 0.11 0.41 ind:pre:3p; +adopter adopter VER 15.18 29.86 7.25 9.19 inf; +adoptera adopter VER 15.18 29.86 0.14 0.00 ind:fut:3s; +adopterai adopter VER 15.18 29.86 0.05 0.07 ind:fut:1s; +adopteraient adopter VER 15.18 29.86 0.00 0.14 cnd:pre:3p; +adopterait adopter VER 15.18 29.86 0.02 0.34 cnd:pre:3s; +adopterez adopter VER 15.18 29.86 0.02 0.14 ind:fut:2p; +adopterons adopter VER 15.18 29.86 0.02 0.00 ind:fut:1p; +adopteront adopter VER 15.18 29.86 0.04 0.14 ind:fut:3p; +adoptez adopter VER 15.18 29.86 0.23 0.07 imp:pre:2p;ind:pre:2p; +adoptif adoptif ADJ m s 3.98 3.38 2.15 1.96 +adoptifs adoptif ADJ m p 3.98 3.38 1.12 0.20 +adoption adoption NOM f s 4.06 2.91 3.97 2.84 +adoptions adoption NOM f p 4.06 2.91 0.09 0.07 +adoptive adoptif ADJ f s 3.98 3.38 0.70 1.15 +adoptives adoptif ADJ f p 3.98 3.38 0.01 0.07 +adoptons adopter VER 15.18 29.86 0.28 0.14 imp:pre:1p;ind:pre:1p; +adoptât adopter VER 15.18 29.86 0.00 0.41 sub:imp:3s; +adoptèrent adopter VER 15.18 29.86 0.02 0.47 ind:pas:3p; +adopté adopter VER m s 15.18 29.86 3.77 7.36 par:pas; +adoptée adopter VER f s 15.18 29.86 1.25 2.64 par:pas; +adoptées adopter VER f p 15.18 29.86 0.17 0.61 par:pas; +adoptés adopter VER m p 15.18 29.86 0.23 0.47 par:pas; +adora adorer VER 193.67 44.59 0.06 0.07 ind:pas:3s; +adorable adorable ADJ s 25.95 7.97 23.00 6.28 +adorablement adorablement ADV 0.20 0.27 0.20 0.27 +adorables adorable ADJ p 25.95 7.97 2.94 1.69 +adorai adorer VER 193.67 44.59 0.03 0.14 ind:pas:1s; +adoraient adorer VER 193.67 44.59 1.29 2.09 ind:imp:3p; +adorais adorer VER 193.67 44.59 6.44 2.30 ind:imp:1s;ind:imp:2s; +adorait adorer VER 193.67 44.59 7.02 9.46 ind:imp:3s; +adorant adorer VER 193.67 44.59 0.14 0.14 par:pre; +adorante adorant ADJ f s 0.01 0.20 0.00 0.07 +adorants adorant ADJ m p 0.01 0.20 0.00 0.07 +adorateur adorateur NOM m s 1.22 1.82 0.30 0.34 +adorateurs adorateur NOM m p 1.22 1.82 0.71 1.42 +adoration adoration NOM f s 0.88 5.07 0.88 4.86 +adorations adoration NOM f p 0.88 5.07 0.00 0.20 +adoratrice adorateur NOM f s 1.22 1.82 0.21 0.00 +adoratrices adoratrice NOM f p 0.11 0.00 0.11 0.00 +adore adorer VER 193.67 44.59 121.69 16.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +adorent adorer VER 193.67 44.59 10.76 2.91 ind:pre:3p;sub:pre:3p; +adorer adorer VER 193.67 44.59 11.79 3.31 inf; +adorera adorer VER 193.67 44.59 0.75 0.14 ind:fut:3s; +adorerai adorer VER 193.67 44.59 0.36 0.00 ind:fut:1s; +adoreraient adorer VER 193.67 44.59 0.52 0.00 cnd:pre:3p; +adorerais adorer VER 193.67 44.59 7.39 0.07 cnd:pre:1s;cnd:pre:2s; +adorerait adorer VER 193.67 44.59 1.32 0.07 cnd:pre:3s; +adoreras adorer VER 193.67 44.59 0.60 0.00 ind:fut:2s; +adorerez adorer VER 193.67 44.59 0.51 0.00 ind:fut:2p; +adoreriez adorer VER 193.67 44.59 0.08 0.00 cnd:pre:2p; +adorerions adorer VER 193.67 44.59 0.12 0.00 cnd:pre:1p; +adorerons adorer VER 193.67 44.59 0.01 0.00 ind:fut:1p; +adoreront adorer VER 193.67 44.59 0.24 0.07 ind:fut:3p; +adores adorer VER 193.67 44.59 4.37 0.27 ind:pre:2s; +adorez adorer VER 193.67 44.59 1.11 0.14 imp:pre:2p;ind:pre:2p; +adoriez adorer VER 193.67 44.59 0.26 0.07 ind:imp:2p; +adorions adorer VER 193.67 44.59 0.09 0.20 ind:imp:1p; +adornaient adorner VER 0.01 0.47 0.00 0.20 ind:imp:3p; +adornait adorner VER 0.01 0.47 0.00 0.14 ind:imp:3s; +adorne adorner VER 0.01 0.47 0.01 0.07 imp:pre:2s;ind:pre:3s; +adorné adorner VER m s 0.01 0.47 0.00 0.07 par:pas; +adorons adorer VER 193.67 44.59 1.22 0.54 imp:pre:1p;ind:pre:1p; +adorèrent adorer VER 193.67 44.59 0.02 0.00 ind:pas:3p; +adoré adorer VER m s 193.67 44.59 12.81 3.11 par:pas; +adorée adorer VER f s 193.67 44.59 2.27 1.82 par:pas; +adorées adorer VER f p 193.67 44.59 0.19 0.27 par:pas; +adorés adorer VER m p 193.67 44.59 0.24 0.68 par:pas; +ados ados NOM m 3.27 0.27 3.27 0.27 +adossa adosser VER 0.80 16.89 0.00 2.23 ind:pas:3s; +adossai adosser VER 0.80 16.89 0.10 0.07 ind:pas:1s; +adossaient adosser VER 0.80 16.89 0.00 0.27 ind:imp:3p; +adossais adosser VER 0.80 16.89 0.01 0.14 ind:imp:1s; +adossait adosser VER 0.80 16.89 0.00 0.68 ind:imp:3s; +adossant adosser VER 0.80 16.89 0.01 0.14 par:pre; +adosse adosser VER 0.80 16.89 0.28 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +adossent adosser VER 0.80 16.89 0.00 0.07 ind:pre:3p; +adosser adosser VER 0.80 16.89 0.07 1.35 inf; +adossez adosser VER 0.80 16.89 0.04 0.00 imp:pre:2p;ind:pre:2p; +adossèrent adosser VER 0.80 16.89 0.00 0.14 ind:pas:3p; +adossé adosser VER m s 0.80 16.89 0.28 6.49 par:pas; +adossée adossé ADJ f s 0.13 0.34 0.10 0.14 +adossées adosser VER f p 0.80 16.89 0.01 0.34 par:pas; +adossés adosser VER m p 0.80 16.89 0.00 1.49 par:pas; +adouba adouber VER 0.04 0.34 0.00 0.07 ind:pas:3s; +adoubement adoubement NOM m s 0.01 0.27 0.01 0.27 +adouber adouber VER 0.04 0.34 0.01 0.00 inf; +adoubé adouber VER m s 0.04 0.34 0.03 0.27 par:pas; +adoucît adoucir VER 3.27 11.01 0.00 0.07 sub:imp:3s; +adouci adoucir VER m s 3.27 11.01 0.44 1.01 par:pas; +adoucie adoucir VER f s 3.27 11.01 0.29 1.08 par:pas; +adoucies adoucir VER f p 3.27 11.01 0.02 0.27 par:pas; +adoucir adoucir VER 3.27 11.01 1.56 3.58 inf; +adoucira adoucir VER 3.27 11.01 0.09 0.14 ind:fut:3s; +adoucirait adoucir VER 3.27 11.01 0.02 0.14 cnd:pre:3s; +adoucirent adoucir VER 3.27 11.01 0.00 0.07 ind:pas:3p; +adoucis adoucir VER m p 3.27 11.01 0.20 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +adoucissaient adoucir VER 3.27 11.01 0.00 0.27 ind:imp:3p; +adoucissait adoucir VER 3.27 11.01 0.02 1.35 ind:imp:3s; +adoucissant adoucissant NOM m s 0.06 0.00 0.06 0.00 +adoucissantes adoucissant ADJ f p 0.00 0.14 0.00 0.07 +adoucisse adoucir VER 3.27 11.01 0.01 0.07 sub:pre:1s;sub:pre:3s; +adoucissement adoucissement NOM m s 0.01 0.61 0.01 0.54 +adoucissements adoucissement NOM m p 0.01 0.61 0.00 0.07 +adoucissent adoucir VER 3.27 11.01 0.02 0.34 ind:pre:3p; +adoucisseur adoucisseur NOM m s 0.04 0.14 0.03 0.00 +adoucisseurs adoucisseur NOM m p 0.04 0.14 0.01 0.14 +adoucissez adoucir VER 3.27 11.01 0.13 0.00 imp:pre:2p; +adoucit adoucir VER 3.27 11.01 0.46 2.09 ind:pre:3s;ind:pas:3s; +adp adp NOM m s 0.04 0.00 0.04 0.00 +adragante adragant ADJ f s 0.00 0.07 0.00 0.07 +adressa adresser VER 30.71 98.04 0.19 11.15 ind:pas:3s; +adressage adressage NOM m s 0.01 0.00 0.01 0.00 +adressai adresser VER 30.71 98.04 0.00 2.57 ind:pas:1s; +adressaient adresser VER 30.71 98.04 0.06 3.04 ind:imp:3p; +adressais adresser VER 30.71 98.04 0.24 1.49 ind:imp:1s;ind:imp:2s; +adressait adresser VER 30.71 98.04 0.76 14.12 ind:imp:3s; +adressant adresser VER 30.71 98.04 0.41 9.39 par:pre; +adressassent adresser VER 30.71 98.04 0.00 0.07 sub:imp:3p; +adresse adresse NOM f s 73.92 49.80 67.28 43.92 +adressent adresser VER 30.71 98.04 0.71 1.55 ind:pre:3p; +adresser adresser VER 30.71 98.04 7.95 17.91 inf; +adressera adresser VER 30.71 98.04 0.66 0.34 ind:fut:3s; +adresserai adresser VER 30.71 98.04 0.34 0.34 ind:fut:1s; +adresseraient adresser VER 30.71 98.04 0.00 0.14 cnd:pre:3p; +adresserais adresser VER 30.71 98.04 0.04 0.20 cnd:pre:1s;cnd:pre:2s; +adresserait adresser VER 30.71 98.04 0.02 0.81 cnd:pre:3s; +adresseras adresser VER 30.71 98.04 0.03 0.00 ind:fut:2s; +adresserez adresser VER 30.71 98.04 0.11 0.07 ind:fut:2p; +adresserons adresser VER 30.71 98.04 0.11 0.07 ind:fut:1p; +adresseront adresser VER 30.71 98.04 0.17 0.07 ind:fut:3p; +adresses adresse NOM f p 73.92 49.80 6.65 5.88 +adressez adresser VER 30.71 98.04 2.77 0.47 imp:pre:2p;ind:pre:2p; +adressiez adresser VER 30.71 98.04 0.34 0.00 ind:imp:2p; +adressions adresser VER 30.71 98.04 0.00 0.41 ind:imp:1p; +adressâmes adresser VER 30.71 98.04 0.00 0.14 ind:pas:1p; +adressons adresser VER 30.71 98.04 0.20 0.47 imp:pre:1p;ind:pre:1p; +adressât adresser VER 30.71 98.04 0.00 0.68 sub:imp:3s; +adressèrent adresser VER 30.71 98.04 0.02 0.34 ind:pas:3p; +adressé adresser VER m s 30.71 98.04 2.66 9.73 par:pas; +adressée adresser VER f s 30.71 98.04 1.76 5.20 par:pas; +adressées adresser VER f p 30.71 98.04 0.41 2.09 par:pas; +adressés adresser VER m p 30.71 98.04 0.51 0.88 par:pas; +adret adret NOM m s 0.00 0.07 0.00 0.07 +adriatique adriatique ADJ s 0.14 0.14 0.14 0.07 +adriatiques adriatique ADJ p 0.14 0.14 0.00 0.07 +adroit adroit ADJ m s 1.87 4.86 1.13 3.51 +adroite adroit ADJ f s 1.87 4.86 0.41 0.74 +adroitement adroitement ADV 0.85 1.96 0.85 1.96 +adroites adroit ADJ f p 1.87 4.86 0.25 0.07 +adroits adroit ADJ m p 1.87 4.86 0.09 0.54 +adrénaline adrénaline NOM f s 3.57 0.68 3.56 0.68 +adrénalines adrénaline NOM f p 3.57 0.68 0.01 0.00 +adulaient aduler VER 0.51 1.62 0.00 0.07 ind:imp:3p; +adulais aduler VER 0.51 1.62 0.02 0.00 ind:imp:1s; +adulait aduler VER 0.51 1.62 0.02 0.07 ind:imp:3s; +adulateur adulateur NOM m s 0.10 0.07 0.10 0.07 +adulation adulation NOM f s 0.16 0.81 0.16 0.61 +adulations adulation NOM f p 0.16 0.81 0.00 0.20 +adulent aduler VER 0.51 1.62 0.27 0.00 ind:pre:3p; +aduler aduler VER 0.51 1.62 0.04 0.07 inf; +adultat adultat NOM m s 0.00 0.14 0.00 0.14 +adulte adulte NOM s 23.34 27.64 9.78 10.41 +adultes adulte NOM p 23.34 27.64 13.56 17.23 +adultère adultère NOM m s 3.69 3.65 3.54 3.18 +adultères adultère NOM m p 3.69 3.65 0.15 0.47 +adultéraient adultérer VER 0.01 0.14 0.00 0.07 ind:imp:3p; +adultération adultération NOM f s 0.00 0.07 0.00 0.07 +adultérin adultérin ADJ m s 0.02 0.34 0.01 0.00 +adultérine adultérin ADJ f s 0.02 0.34 0.01 0.14 +adultérins adultérin ADJ m p 0.02 0.34 0.00 0.20 +adultéré adultérer VER m s 0.01 0.14 0.01 0.00 par:pas; +adultérées adultérer VER f p 0.01 0.14 0.00 0.07 par:pas; +adulé aduler VER m s 0.51 1.62 0.09 0.61 par:pas; +adulée aduler VER f s 0.51 1.62 0.03 0.47 par:pas; +adulés aduler VER m p 0.51 1.62 0.04 0.34 par:pas; +adénine adénine NOM f s 0.01 0.00 0.01 0.00 +adénocarcinome adénocarcinome NOM m s 0.04 0.00 0.04 0.00 +adénome adénome NOM m s 0.05 0.07 0.05 0.07 +adénopathie adénopathie NOM f s 0.01 0.00 0.01 0.00 +adénosine adénosine NOM f s 0.07 0.00 0.07 0.00 +adénovirus adénovirus NOM m 0.01 0.00 0.01 0.00 +adéquat adéquat ADJ m s 3.28 4.80 1.35 1.82 +adéquate adéquat ADJ f s 3.28 4.80 1.23 1.69 +adéquatement adéquatement ADV 0.03 0.00 0.03 0.00 +adéquates adéquat ADJ f p 3.28 4.80 0.50 0.47 +adéquation adéquation NOM f s 0.14 0.34 0.14 0.34 +adéquats adéquat ADJ m p 3.28 4.80 0.21 0.81 +advînt advenir VER 7.94 9.39 0.00 0.34 sub:imp:3s; +advenait advenir VER 7.94 9.39 0.11 0.74 ind:imp:3s; +advenir advenir VER 7.94 9.39 1.03 1.15 inf; +adventices adventice ADJ m p 0.00 0.20 0.00 0.20 +adventiste adventiste NOM s 0.27 0.00 0.27 0.00 +advenu advenir VER m s 7.94 9.39 0.99 1.62 par:pas; +advenue advenir VER f s 7.94 9.39 0.00 0.20 par:pas; +advenues advenir VER f p 7.94 9.39 0.00 0.07 par:pas; +adverbe adverbe NOM m s 0.11 0.61 0.09 0.27 +adverbes adverbe NOM m p 0.11 0.61 0.02 0.34 +adversaire adversaire NOM s 10.96 25.14 7.61 15.95 +adversaires adversaire NOM p 10.96 25.14 3.36 9.19 +adverse adverse ADJ s 1.93 4.32 1.83 2.50 +adverses adverse ADJ p 1.93 4.32 0.10 1.82 +adversité adversité NOM f s 1.30 2.16 1.27 2.09 +adversités adversité NOM f p 1.30 2.16 0.02 0.07 +adviendra advenir VER 7.94 9.39 2.53 0.68 ind:fut:3s; +adviendrait advenir VER 7.94 9.39 0.25 0.68 cnd:pre:3s; +advienne advenir VER 7.94 9.39 1.24 1.01 sub:pre:1s;sub:pre:3s; +adviennent advenir VER 7.94 9.39 0.00 0.07 ind:pre:3p; +advient advenir VER 7.94 9.39 0.58 1.49 ind:pre:3s; +advint advenir VER 7.94 9.39 1.20 1.35 ind:pas:3s; +aegipans aegipan NOM m p 0.00 0.07 0.00 0.07 +affût affût NOM m s 1.42 11.35 1.36 10.81 +affûta affûter VER 0.77 3.65 0.00 0.14 ind:pas:3s; +affûtage affûtage NOM m s 0.04 0.14 0.04 0.14 +affûtait affûter VER 0.77 3.65 0.00 0.14 ind:imp:3s; +affûtant affûter VER 0.77 3.65 0.00 0.20 par:pre; +affûte affûter VER 0.77 3.65 0.11 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affûter affûter VER 0.77 3.65 0.20 0.74 inf; +affûterai affûter VER 0.77 3.65 0.01 0.00 ind:fut:1s; +affûteur affûteur NOM m s 0.01 0.07 0.01 0.07 +affûtez affûter VER 0.77 3.65 0.01 0.00 imp:pre:2p; +affûtât affûter VER 0.77 3.65 0.00 0.07 sub:imp:3s; +affûts affût NOM m p 1.42 11.35 0.06 0.54 +affûté affûter VER m s 0.77 3.65 0.23 0.81 par:pas; +affûtée affûter VER f s 0.77 3.65 0.12 0.68 par:pas; +affûtées affûter VER f p 0.77 3.65 0.02 0.07 par:pas; +affûtés affûter VER m p 0.77 3.65 0.06 0.41 par:pas; +affabilité affabilité NOM f s 0.13 1.28 0.13 1.22 +affabilités affabilité NOM f p 0.13 1.28 0.00 0.07 +affable affable ADJ s 0.39 3.78 0.37 3.11 +affablement affablement ADV 0.00 0.20 0.00 0.20 +affables affable ADJ p 0.39 3.78 0.02 0.68 +affabulation affabulation NOM f s 0.22 1.22 0.20 1.01 +affabulations affabulation NOM f p 0.22 1.22 0.02 0.20 +affabulatrice affabulateur NOM f s 0.14 0.00 0.14 0.00 +affabule affabuler VER 0.28 0.27 0.15 0.14 ind:pre:1s;ind:pre:3s; +affabuler affabuler VER 0.28 0.27 0.00 0.07 inf; +affabules affabuler VER 0.28 0.27 0.14 0.00 ind:pre:2s; +affabulé affabuler VER m s 0.28 0.27 0.00 0.07 par:pas; +affacturage affacturage NOM m s 0.01 0.00 0.01 0.00 +affadi affadir VER m s 0.01 1.35 0.00 0.20 par:pas; +affadie affadir VER f s 0.01 1.35 0.00 0.27 par:pas; +affadies affadir VER f p 0.01 1.35 0.00 0.07 par:pas; +affadir affadir VER 0.01 1.35 0.00 0.14 inf; +affadis affadir VER m p 0.01 1.35 0.00 0.07 par:pas; +affadissaient affadir VER 0.01 1.35 0.00 0.07 ind:imp:3p; +affadissait affadir VER 0.01 1.35 0.00 0.34 ind:imp:3s; +affadissant affadir VER 0.01 1.35 0.00 0.07 par:pre; +affadisse affadir VER 0.01 1.35 0.01 0.07 sub:pre:1s;sub:pre:3s; +affadissement affadissement NOM m s 0.00 0.20 0.00 0.20 +affadit affadir VER 0.01 1.35 0.00 0.07 ind:pas:3s; +affaibli affaiblir VER m s 6.66 7.84 1.62 1.49 par:pas; +affaiblie affaiblir VER f s 6.66 7.84 0.38 0.61 par:pas; +affaiblies affaiblir VER f p 6.66 7.84 0.02 0.27 par:pas; +affaiblir affaiblir VER 6.66 7.84 1.13 1.35 inf; +affaiblira affaiblir VER 6.66 7.84 0.30 0.07 ind:fut:3s; +affaiblis affaiblir VER m p 6.66 7.84 0.84 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +affaiblissaient affaiblir VER 6.66 7.84 0.00 0.14 ind:imp:3p; +affaiblissais affaiblir VER 6.66 7.84 0.00 0.07 ind:imp:1s; +affaiblissait affaiblir VER 6.66 7.84 0.23 1.01 ind:imp:3s; +affaiblissant affaiblir VER 6.66 7.84 0.17 0.61 par:pre; +affaiblisse affaiblir VER 6.66 7.84 0.05 0.00 sub:pre:1s;sub:pre:3s; +affaiblissement affaiblissement NOM m s 0.23 1.49 0.23 1.49 +affaiblissent affaiblir VER 6.66 7.84 0.30 0.41 ind:pre:3p; +affaiblissez affaiblir VER 6.66 7.84 0.04 0.00 ind:pre:2p; +affaiblissons affaiblir VER 6.66 7.84 0.02 0.00 ind:pre:1p; +affaiblit affaiblir VER 6.66 7.84 1.56 1.22 ind:pre:3s;ind:pas:3s; +affaira affairer VER 2.75 13.38 0.00 0.68 ind:pas:3s; +affairai affairer VER 2.75 13.38 0.00 0.07 ind:pas:1s; +affairaient affairer VER 2.75 13.38 0.01 2.43 ind:imp:3p; +affairais affairer VER 2.75 13.38 0.00 0.07 ind:imp:1s; +affairait affairer VER 2.75 13.38 0.01 2.70 ind:imp:3s; +affairant affairer VER 2.75 13.38 0.00 0.47 par:pre; +affaire affaire NOM f s 393.83 253.38 207.50 150.54 +affairement affairement NOM m s 0.00 0.54 0.00 0.34 +affairements affairement NOM m p 0.00 0.54 0.00 0.20 +affairent affairer VER 2.75 13.38 0.44 1.42 ind:pre:3p; +affairer affairer VER 2.75 13.38 0.28 1.42 inf; +affaireraient affairer VER 2.75 13.38 0.00 0.07 cnd:pre:3p; +affaires affaire NOM f p 393.83 253.38 186.32 102.84 +affairions affairer VER 2.75 13.38 0.00 0.07 ind:imp:1p; +affairisme affairisme NOM m s 0.00 0.07 0.00 0.07 +affairiste affairiste ADJ m s 0.01 0.14 0.01 0.14 +affairistes affairiste NOM p 0.14 0.14 0.14 0.07 +affairons affairer VER 2.75 13.38 0.00 0.07 ind:pre:1p; +affairèrent affairer VER 2.75 13.38 0.00 0.20 ind:pas:3p; +affairé affairer VER m s 2.75 13.38 0.16 0.41 par:pas; +affairée affairé ADJ f s 0.21 2.64 0.04 0.61 +affairées affairé ADJ f p 0.21 2.64 0.01 0.27 +affairés affairé ADJ m p 0.21 2.64 0.12 0.74 +affaissa affaisser VER 1.03 11.22 0.00 1.08 ind:pas:3s; +affaissaient affaisser VER 1.03 11.22 0.01 0.41 ind:imp:3p; +affaissait affaisser VER 1.03 11.22 0.03 0.74 ind:imp:3s; +affaissant affaisser VER 1.03 11.22 0.01 0.61 par:pre; +affaisse affaisser VER 1.03 11.22 0.31 1.49 imp:pre:2s;ind:pre:3s; +affaissement affaissement NOM m s 0.08 1.55 0.07 1.35 +affaissements affaissement NOM m p 0.08 1.55 0.01 0.20 +affaissent affaisser VER 1.03 11.22 0.34 1.08 ind:pre:3p; +affaisser affaisser VER 1.03 11.22 0.03 0.88 inf; +affaisseraient affaisser VER 1.03 11.22 0.00 0.14 cnd:pre:3p; +affaisserait affaisser VER 1.03 11.22 0.00 0.07 cnd:pre:3s; +affaissions affaisser VER 1.03 11.22 0.00 0.07 ind:imp:1p; +affaissèrent affaisser VER 1.03 11.22 0.00 0.14 ind:pas:3p; +affaissé affaisser VER m s 1.03 11.22 0.14 2.50 par:pas; +affaissée affaisser VER f s 1.03 11.22 0.05 1.15 par:pas; +affaissées affaisser VER f p 1.03 11.22 0.00 0.41 par:pas; +affaissés affaisser VER m p 1.03 11.22 0.11 0.47 par:pas; +affala affaler VER 1.01 14.05 0.00 2.09 ind:pas:3s; +affalai affaler VER 1.01 14.05 0.00 0.07 ind:pas:1s; +affalaient affaler VER 1.01 14.05 0.00 0.20 ind:imp:3p; +affalais affaler VER 1.01 14.05 0.00 0.14 ind:imp:1s; +affalait affaler VER 1.01 14.05 0.01 0.54 ind:imp:3s; +affalant affaler VER 1.01 14.05 0.01 0.74 par:pre; +affale affaler VER 1.01 14.05 0.10 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affalement affalement NOM m s 0.01 0.14 0.01 0.14 +affalent affaler VER 1.01 14.05 0.01 0.27 ind:pre:3p; +affaler affaler VER 1.01 14.05 0.27 1.89 inf; +affalez affaler VER 1.01 14.05 0.05 0.00 imp:pre:2p; +affalons affaler VER 1.01 14.05 0.00 0.07 ind:pre:1p; +affalèrent affaler VER 1.01 14.05 0.00 0.14 ind:pas:3p; +affalé affaler VER m s 1.01 14.05 0.38 3.92 par:pas; +affalée affaler VER f s 1.01 14.05 0.04 1.01 par:pas; +affalées affaler VER f p 1.01 14.05 0.02 0.54 par:pas; +affalés affaler VER m p 1.01 14.05 0.13 1.08 par:pas; +affamaient affamer VER 6.01 3.72 0.01 0.07 ind:imp:3p; +affamait affamer VER 6.01 3.72 0.03 0.34 ind:imp:3s; +affamant affamer VER 6.01 3.72 0.17 0.07 par:pre; +affamantes affamant ADJ f p 0.00 0.07 0.00 0.07 +affame affamer VER 6.01 3.72 0.25 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affament affamer VER 6.01 3.72 0.18 0.00 ind:pre:3p; +affamer affamer VER 6.01 3.72 0.33 0.14 inf; +affamera affamer VER 6.01 3.72 0.01 0.00 ind:fut:3s; +affamez affamer VER 6.01 3.72 0.05 0.00 imp:pre:2p;ind:pre:2p; +affamé affamer VER m s 6.01 3.72 2.99 1.15 par:pas; +affamée affamé ADJ f s 5.67 6.08 0.73 1.35 +affamées affamé ADJ f p 5.67 6.08 0.59 0.68 +affamés affamé ADJ m p 5.67 6.08 1.92 2.50 +affect affect NOM m s 0.26 0.00 0.26 0.00 +affecta affecter VER 16.08 25.34 0.03 1.28 ind:pas:3s; +affectai affecter VER 16.08 25.34 0.00 0.14 ind:pas:1s; +affectaient affecter VER 16.08 25.34 0.07 1.62 ind:imp:3p; +affectais affecter VER 16.08 25.34 0.01 0.34 ind:imp:1s; +affectait affecter VER 16.08 25.34 0.36 4.12 ind:imp:3s; +affectant affecter VER 16.08 25.34 0.27 2.36 par:pre; +affectassent affecter VER 16.08 25.34 0.00 0.07 sub:imp:3p; +affectation affectation NOM f s 2.93 5.27 2.65 5.00 +affectations affectation NOM f p 2.93 5.27 0.28 0.27 +affecte affecter VER 16.08 25.34 4.38 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affectent affecter VER 16.08 25.34 0.61 1.01 ind:pre:3p; +affecter affecter VER 16.08 25.34 2.33 2.23 inf; +affectera affecter VER 16.08 25.34 0.72 0.14 ind:fut:3s; +affecterai affecter VER 16.08 25.34 0.03 0.07 ind:fut:1s; +affecteraient affecter VER 16.08 25.34 0.02 0.00 cnd:pre:3p; +affecterait affecter VER 16.08 25.34 0.32 0.00 cnd:pre:3s; +affecteriez affecter VER 16.08 25.34 0.01 0.00 cnd:pre:2p; +affecteront affecter VER 16.08 25.34 0.04 0.00 ind:fut:3p; +affectez affecter VER 16.08 25.34 0.20 0.07 imp:pre:2p;ind:pre:2p; +affectiez affecter VER 16.08 25.34 0.01 0.07 ind:imp:2p; +affectif affectif ADJ m s 2.05 2.91 0.94 1.28 +affectifs affectif ADJ m p 2.05 2.91 0.27 0.34 +affection affection NOM f s 13.06 31.22 12.68 29.53 +affectionnaient affectionner VER 0.40 4.12 0.00 0.20 ind:imp:3p; +affectionnais affectionner VER 0.40 4.12 0.00 0.14 ind:imp:1s; +affectionnait affectionner VER 0.40 4.12 0.07 1.49 ind:imp:3s; +affectionnant affectionner VER 0.40 4.12 0.00 0.14 par:pre; +affectionne affectionner VER 0.40 4.12 0.22 1.01 ind:pre:1s;ind:pre:3s; +affectionnent affectionner VER 0.40 4.12 0.00 0.74 ind:pre:3p; +affectionner affectionner VER 0.40 4.12 0.00 0.20 inf; +affectionnez affectionner VER 0.40 4.12 0.01 0.14 imp:pre:2p;ind:pre:2p; +affectionné affectionner VER m s 0.40 4.12 0.10 0.00 par:pas; +affectionnée affectionné ADJ f s 0.01 0.41 0.00 0.27 +affectionnés affectionné ADJ m p 0.01 0.41 0.00 0.07 +affections affection NOM f p 13.06 31.22 0.38 1.69 +affective affectif ADJ f s 2.05 2.91 0.66 1.08 +affectivement affectivement ADV 0.30 0.20 0.30 0.20 +affectives affectif ADJ f p 2.05 2.91 0.18 0.20 +affectivité affectivité NOM f s 0.01 0.41 0.01 0.41 +affectâmes affecter VER 16.08 25.34 0.00 0.07 ind:pas:1p; +affectons affecter VER 16.08 25.34 0.03 0.20 imp:pre:1p;ind:pre:1p; +affectât affecter VER 16.08 25.34 0.00 0.14 sub:imp:3s; +affectèrent affecter VER 16.08 25.34 0.00 0.61 ind:pas:3p; +affecté affecter VER m s 16.08 25.34 4.43 4.93 par:pas; +affectée affecter VER f s 16.08 25.34 1.17 1.35 par:pas; +affectées affecter VER f p 16.08 25.34 0.29 0.74 par:pas; +affectueuse affectueux ADJ f s 5.20 14.59 1.56 5.41 +affectueusement affectueusement ADV 1.11 3.38 1.11 3.38 +affectueuses affectueux ADJ f p 5.20 14.59 0.08 1.22 +affectueux affectueux ADJ m 5.20 14.59 3.56 7.97 +affectés affecter VER m p 16.08 25.34 0.73 1.22 par:pas; +affermi affermir VER m s 0.23 5.61 0.02 0.34 par:pas; +affermie affermir VER f s 0.23 5.61 0.01 0.54 par:pas; +affermir affermir VER 0.23 5.61 0.02 1.69 inf; +affermira affermir VER 0.23 5.61 0.02 0.00 ind:fut:3s; +affermis affermir VER m p 0.23 5.61 0.00 0.41 ind:pre:1s;par:pas; +affermissaient affermir VER 0.23 5.61 0.00 0.20 ind:imp:3p; +affermissait affermir VER 0.23 5.61 0.00 0.34 ind:imp:3s; +affermissant affermir VER 0.23 5.61 0.01 0.34 par:pre; +affermisse affermir VER 0.23 5.61 0.00 0.07 sub:pre:3s; +affermissement affermissement NOM m s 0.00 0.14 0.00 0.14 +affermissent affermir VER 0.23 5.61 0.01 0.20 ind:pre:3p; +affermit affermir VER 0.23 5.61 0.14 1.49 ind:pre:3s;ind:pas:3s; +afficha afficher VER 8.35 19.26 0.00 0.47 ind:pas:3s; +affichage affichage NOM m s 1.30 1.49 1.29 1.42 +affichages affichage NOM m p 1.30 1.49 0.01 0.07 +affichaient afficher VER 8.35 19.26 0.01 1.35 ind:imp:3p; +affichais afficher VER 8.35 19.26 0.02 0.68 ind:imp:1s;ind:imp:2s; +affichait afficher VER 8.35 19.26 0.15 4.93 ind:imp:3s; +affichant afficher VER 8.35 19.26 0.19 1.49 par:pre; +affiche affiche NOM f s 9.78 19.86 5.38 8.38 +affichent afficher VER 8.35 19.26 0.52 0.68 ind:pre:3p; +afficher afficher VER 8.35 19.26 2.06 3.78 ind:pre:2p;inf; +affichera afficher VER 8.35 19.26 0.04 0.07 ind:fut:3s; +afficherai afficher VER 8.35 19.26 0.07 0.00 ind:fut:1s; +afficherait afficher VER 8.35 19.26 0.01 0.14 cnd:pre:3s; +affiches affiche NOM f p 9.78 19.86 4.39 11.49 +affichette affichette NOM f s 0.26 1.35 0.19 1.08 +affichettes affichette NOM f p 0.26 1.35 0.07 0.27 +afficheur afficheur NOM m s 0.03 0.27 0.01 0.27 +afficheurs afficheur NOM m p 0.03 0.27 0.01 0.00 +affichez afficher VER 8.35 19.26 0.41 0.07 imp:pre:2p;ind:pre:2p; +affichions afficher VER 8.35 19.26 0.00 0.14 ind:imp:1p; +affichiste affichiste NOM s 0.00 0.20 0.00 0.14 +affichistes affichiste NOM p 0.00 0.20 0.00 0.07 +affichons afficher VER 8.35 19.26 0.16 0.00 imp:pre:1p;ind:pre:1p; +affichât afficher VER 8.35 19.26 0.00 0.07 sub:imp:3s; +affichèrent afficher VER 8.35 19.26 0.00 0.20 ind:pas:3p; +affiché afficher VER m s 8.35 19.26 1.79 1.62 par:pas; +affichée afficher VER f s 8.35 19.26 0.29 0.88 par:pas; +affichées afficher VER f p 8.35 19.26 0.17 0.47 par:pas; +affichés afficher VER m p 8.35 19.26 0.11 0.74 par:pas; +affidavit affidavit NOM m s 0.06 0.00 0.06 0.00 +affidé affidé NOM m s 0.01 0.27 0.01 0.14 +affidée affidé ADJ f s 0.00 0.07 0.00 0.07 +affidés affidé NOM m p 0.01 0.27 0.00 0.14 +affile affiler VER 0.04 0.07 0.00 0.07 ind:pre:3s; +affiler affiler VER 0.04 0.07 0.03 0.00 inf; +affilia affilier VER 0.36 0.74 0.00 0.07 ind:pas:3s; +affiliaient affilier VER 0.36 0.74 0.00 0.07 ind:imp:3p; +affiliant affilier VER 0.36 0.74 0.00 0.07 par:pre; +affiliation affiliation NOM f s 0.33 0.14 0.26 0.14 +affiliations affiliation NOM f p 0.33 0.14 0.07 0.00 +affilier affilier VER 0.36 0.74 0.01 0.27 inf; +affilié affilier VER m s 0.36 0.74 0.15 0.20 par:pas; +affiliée affilier VER f s 0.36 0.74 0.04 0.00 par:pas; +affiliées affilié NOM f p 0.14 0.41 0.04 0.00 +affiliés affilier VER m p 0.36 0.74 0.17 0.07 par:pas; +affilé affilé ADJ m s 3.04 4.19 0.17 0.07 +affilée affilé ADJ f s 3.04 4.19 2.80 3.92 +affilées affilé ADJ f p 3.04 4.19 0.04 0.14 +affilés affilé ADJ m p 3.04 4.19 0.04 0.07 +affin affin ADJ m s 0.02 0.00 0.02 0.00 +affina affiner VER 0.76 3.38 0.00 0.07 ind:pas:3s; +affinage affinage NOM m s 0.00 0.07 0.00 0.07 +affinaient affiner VER 0.76 3.38 0.00 0.07 ind:imp:3p; +affinait affiner VER 0.76 3.38 0.00 0.88 ind:imp:3s; +affinant affiner VER 0.76 3.38 0.00 0.41 par:pre; +affine affiner VER 0.76 3.38 0.18 0.34 ind:pre:1s;ind:pre:3s; +affinement affinement NOM m s 0.01 0.20 0.01 0.20 +affinent affiner VER 0.76 3.38 0.01 0.20 ind:pre:3p; +affiner affiner VER 0.76 3.38 0.43 0.68 inf; +affinera affiner VER 0.76 3.38 0.02 0.00 ind:fut:3s; +affinerait affiner VER 0.76 3.38 0.01 0.07 cnd:pre:3s; +affinité affinité NOM f s 1.23 4.46 0.60 2.16 +affinités affinité NOM f p 1.23 4.46 0.62 2.30 +affinons affiner VER 0.76 3.38 0.01 0.00 ind:pre:1p; +affiné affiné ADJ m s 0.12 0.27 0.12 0.20 +affinée affiner VER f s 0.76 3.38 0.01 0.14 par:pas; +affinées affiner VER f p 0.76 3.38 0.02 0.20 par:pas; +affiquets affiquet NOM m p 0.00 0.07 0.00 0.07 +affirma affirmer VER 15.61 63.51 0.06 10.07 ind:pas:3s; +affirmai affirmer VER 15.61 63.51 0.00 0.81 ind:pas:1s; +affirmaient affirmer VER 15.61 63.51 0.03 2.36 ind:imp:3p; +affirmais affirmer VER 15.61 63.51 0.03 1.22 ind:imp:1s;ind:imp:2s; +affirmait affirmer VER 15.61 63.51 0.53 11.08 ind:imp:3s; +affirmant affirmer VER 15.61 63.51 0.51 3.92 par:pre; +affirmatif affirmatif ADJ m s 4.91 1.89 4.82 1.35 +affirmatifs affirmatif ADJ m p 4.91 1.89 0.00 0.14 +affirmation affirmation NOM f s 1.96 6.42 1.27 4.66 +affirmations affirmation NOM f p 1.96 6.42 0.69 1.76 +affirmative affirmative NOM f s 0.16 0.61 0.16 0.61 +affirmativement affirmativement ADV 0.00 0.74 0.00 0.74 +affirme affirmer VER 15.61 63.51 5.46 9.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +affirment affirmer VER 15.61 63.51 1.67 2.70 ind:pre:3p; +affirmer affirmer VER 15.61 63.51 4.26 13.58 inf; +affirmerai affirmer VER 15.61 63.51 0.00 0.07 ind:fut:1s; +affirmerait affirmer VER 15.61 63.51 0.01 0.14 cnd:pre:3s; +affirmeras affirmer VER 15.61 63.51 0.01 0.07 ind:fut:2s; +affirmerez affirmer VER 15.61 63.51 0.01 0.00 ind:fut:2p; +affirmeriez affirmer VER 15.61 63.51 0.01 0.00 cnd:pre:2p; +affirmeront affirmer VER 15.61 63.51 0.03 0.07 ind:fut:3p; +affirmes affirmer VER 15.61 63.51 0.09 0.20 ind:pre:2s; +affirmez affirmer VER 15.61 63.51 0.87 0.41 imp:pre:2p;ind:pre:2p; +affirmiez affirmer VER 15.61 63.51 0.15 0.07 ind:imp:2p; +affirmions affirmer VER 15.61 63.51 0.00 0.14 ind:imp:1p; +affirmons affirmer VER 15.61 63.51 0.06 0.27 imp:pre:1p;ind:pre:1p; +affirmât affirmer VER 15.61 63.51 0.00 0.14 sub:imp:3s; +affirmèrent affirmer VER 15.61 63.51 0.01 0.81 ind:pas:3p; +affirmé affirmer VER m s 15.61 63.51 1.66 4.59 imp:pre:2s;par:pas;par:pas; +affirmée affirmer VER f s 15.61 63.51 0.04 0.41 par:pas; +affirmées affirmer VER f p 15.61 63.51 0.00 0.20 par:pas; +affirmés affirmer VER m p 15.61 63.51 0.10 0.27 par:pas; +affixé affixé ADJ m s 0.00 0.07 0.00 0.07 +afflanqué afflanquer VER m s 0.00 0.07 0.00 0.07 par:pas; +affleura affleurer VER 0.15 6.01 0.00 0.47 ind:pas:3s; +affleuraient affleurer VER 0.15 6.01 0.01 0.34 ind:imp:3p; +affleurait affleurer VER 0.15 6.01 0.11 1.08 ind:imp:3s; +affleurant affleurer VER 0.15 6.01 0.00 0.14 par:pre; +affleure affleurer VER 0.15 6.01 0.02 1.55 imp:pre:2s;ind:pre:3s; +affleurement affleurement NOM m s 0.03 0.88 0.03 0.47 +affleurements affleurement NOM m p 0.03 0.88 0.00 0.41 +affleurent affleurer VER 0.15 6.01 0.01 0.95 ind:pre:3p; +affleurer affleurer VER 0.15 6.01 0.00 1.08 inf; +affleurât affleurer VER 0.15 6.01 0.00 0.07 sub:imp:3s; +affleurèrent affleurer VER 0.15 6.01 0.00 0.14 ind:pas:3p; +affleuré affleurer VER m s 0.15 6.01 0.00 0.20 par:pas; +affliction affliction NOM f s 1.27 2.77 1.09 2.50 +afflictions affliction NOM f p 1.27 2.77 0.18 0.27 +afflige affliger VER 3.21 5.95 0.74 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affligea affliger VER 3.21 5.95 0.03 0.20 ind:pas:3s; +affligeaient affliger VER 3.21 5.95 0.01 0.07 ind:imp:3p; +affligeait affliger VER 3.21 5.95 0.01 0.20 ind:imp:3s; +affligeant affligeant ADJ m s 0.60 1.62 0.38 0.54 +affligeante affligeant ADJ f s 0.60 1.62 0.08 0.68 +affligeantes affligeant ADJ f p 0.60 1.62 0.02 0.27 +affligeants affligeant ADJ m p 0.60 1.62 0.12 0.14 +affligent affliger VER 3.21 5.95 0.20 0.14 ind:pre:3p; +affliger affliger VER 3.21 5.95 0.38 0.20 inf; +affligez affliger VER 3.21 5.95 0.03 0.07 imp:pre:2p; +affligèrent affliger VER 3.21 5.95 0.01 0.07 ind:pas:3p; +affligé affliger VER m s 3.21 5.95 1.11 2.30 par:pas; +affligée affliger VER f s 3.21 5.95 0.49 0.95 par:pas; +affligés affligé ADJ m p 1.66 1.49 0.60 0.34 +afflua affluer VER 1.51 7.50 0.00 0.27 ind:pas:3s; +affluaient affluer VER 1.51 7.50 0.04 1.69 ind:imp:3p; +affluait affluer VER 1.51 7.50 0.02 0.54 ind:imp:3s; +affluant affluer VER 1.51 7.50 0.11 0.27 par:pre; +afflue affluer VER 1.51 7.50 0.39 0.61 ind:pre:3s; +affluence affluence NOM f s 0.51 2.64 0.51 2.64 +affluent affluer VER 1.51 7.50 0.61 1.49 ind:pre:3p; +affluentes affluent ADJ f p 0.16 0.41 0.00 0.07 +affluents affluent NOM m p 0.39 0.95 0.34 0.41 +affluer affluer VER 1.51 7.50 0.21 1.35 inf; +afflueraient affluer VER 1.51 7.50 0.01 0.07 cnd:pre:3p; +affluèrent affluer VER 1.51 7.50 0.00 0.81 ind:pas:3p; +afflué affluer VER m s 1.51 7.50 0.12 0.41 par:pas; +afflux afflux NOM m 0.25 2.30 0.25 2.30 +affola affoler VER 5.92 20.54 0.00 2.16 ind:pas:3s; +affolai affoler VER 5.92 20.54 0.00 0.14 ind:pas:1s; +affolaient affoler VER 5.92 20.54 0.01 0.54 ind:imp:3p; +affolais affoler VER 5.92 20.54 0.01 0.27 ind:imp:1s; +affolait affoler VER 5.92 20.54 0.02 2.70 ind:imp:3s; +affolant affolant ADJ m s 0.10 2.57 0.10 1.35 +affolante affolant ADJ f s 0.10 2.57 0.00 0.74 +affolantes affolant ADJ f p 0.10 2.57 0.00 0.20 +affolants affolant ADJ m p 0.10 2.57 0.00 0.27 +affole affoler VER 5.92 20.54 1.63 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +affolement affolement NOM m s 0.89 5.34 0.89 5.34 +affolent affoler VER 5.92 20.54 0.28 0.68 ind:pre:3p; +affoler affoler VER 5.92 20.54 1.00 2.50 inf;; +affolera affoler VER 5.92 20.54 0.14 0.07 ind:fut:3s; +affolerais affoler VER 5.92 20.54 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +affolerait affoler VER 5.92 20.54 0.14 0.07 cnd:pre:3s; +affoleront affoler VER 5.92 20.54 0.01 0.00 ind:fut:3p; +affoles affoler VER 5.92 20.54 0.23 0.20 ind:pre:2s; +affolez affoler VER 5.92 20.54 0.93 0.27 imp:pre:2p;ind:pre:2p; +affoliez affoler VER 5.92 20.54 0.01 0.00 ind:imp:2p; +affolons affoler VER 5.92 20.54 0.04 0.27 imp:pre:1p;ind:pre:1p; +affolât affoler VER 5.92 20.54 0.00 0.07 sub:imp:3s; +affolèrent affoler VER 5.92 20.54 0.00 0.14 ind:pas:3p; +affolé affoler VER m s 5.92 20.54 0.76 2.84 par:pas; +affolée affoler VER f s 5.92 20.54 0.51 1.22 par:pas; +affolées affolé ADJ f p 0.91 11.49 0.10 0.74 +affolés affolé ADJ m p 0.91 11.49 0.18 2.57 +affouage affouage NOM m s 0.00 0.14 0.00 0.07 +affouages affouage NOM m p 0.00 0.14 0.00 0.07 +affouillait affouiller VER 0.00 0.14 0.00 0.07 ind:imp:3s; +affouillement affouillement NOM m s 0.00 0.14 0.00 0.07 +affouillements affouillement NOM m p 0.00 0.14 0.00 0.07 +affouillé affouiller VER m s 0.00 0.14 0.00 0.07 par:pas; +affranchi affranchi NOM m s 1.34 1.49 0.46 0.61 +affranchie affranchir VER f s 1.87 11.42 0.19 1.01 par:pas; +affranchies affranchi ADJ f p 0.24 1.82 0.00 0.34 +affranchir affranchir VER 1.87 11.42 0.55 5.20 inf; +affranchirait affranchir VER 1.87 11.42 0.00 0.14 cnd:pre:3s; +affranchis affranchi NOM m p 1.34 1.49 0.76 0.61 +affranchissais affranchir VER 1.87 11.42 0.01 0.07 ind:imp:1s;ind:imp:2s; +affranchissait affranchir VER 1.87 11.42 0.00 0.27 ind:imp:3s; +affranchissant affranchir VER 1.87 11.42 0.00 0.27 par:pre; +affranchisse affranchir VER 1.87 11.42 0.01 0.47 sub:pre:1s;sub:pre:3s; +affranchissement affranchissement NOM m s 0.05 0.47 0.05 0.47 +affranchit affranchir VER 1.87 11.42 0.29 1.15 ind:pre:3s;ind:pas:3s; +affres affre NOM f p 1.23 2.36 1.23 2.36 +affreuse affreux ADJ f s 34.96 39.46 7.86 12.64 +affreusement affreusement ADV 3.13 5.61 3.13 5.61 +affreuses affreux ADJ f p 34.96 39.46 1.77 4.59 +affreux affreux ADJ m 34.96 39.46 25.34 22.23 +affriandai affriander VER 0.00 0.27 0.00 0.07 ind:pas:1s; +affriander affriander VER 0.00 0.27 0.00 0.07 inf; +affriandé affriander VER m s 0.00 0.27 0.00 0.07 par:pas; +affriandés affriander VER m p 0.00 0.27 0.00 0.07 par:pas; +affriolait affrioler VER 0.02 0.27 0.00 0.07 ind:imp:3s; +affriolant affriolant ADJ m s 0.26 0.20 0.12 0.14 +affriolante affriolant ADJ f s 0.26 0.20 0.03 0.07 +affriolantes affriolant ADJ f p 0.26 0.20 0.04 0.00 +affriolants affriolant ADJ m p 0.26 0.20 0.07 0.00 +affriole affrioler VER 0.02 0.27 0.01 0.00 ind:pre:3s; +affrioler affrioler VER 0.02 0.27 0.00 0.07 inf; +affriolerait affrioler VER 0.02 0.27 0.01 0.00 cnd:pre:3s; +affriolés affrioler VER m p 0.02 0.27 0.00 0.07 par:pas; +affront affront NOM m s 3.36 3.85 3.11 2.77 +affronta affronter VER 30.72 22.43 0.03 0.54 ind:pas:3s; +affrontai affronter VER 30.72 22.43 0.00 0.07 ind:pas:1s; +affrontaient affronter VER 30.72 22.43 0.20 1.62 ind:imp:3p; +affrontais affronter VER 30.72 22.43 0.17 0.27 ind:imp:1s;ind:imp:2s; +affrontait affronter VER 30.72 22.43 0.14 0.88 ind:imp:3s; +affrontant affronter VER 30.72 22.43 0.63 0.88 par:pre; +affronte affronter VER 30.72 22.43 2.96 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +affrontement affrontement NOM m s 2.66 4.05 1.72 2.43 +affrontements affrontement NOM m p 2.66 4.05 0.94 1.62 +affrontent affronter VER 30.72 22.43 0.74 1.49 ind:pre:3p; +affronter affronter VER 30.72 22.43 19.57 13.38 inf;; +affrontera affronter VER 30.72 22.43 0.63 0.07 ind:fut:3s; +affronterai affronter VER 30.72 22.43 0.56 0.00 ind:fut:1s; +affronteraient affronter VER 30.72 22.43 0.01 0.14 cnd:pre:3p; +affronterais affronter VER 30.72 22.43 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +affronterait affronter VER 30.72 22.43 0.08 0.41 cnd:pre:3s; +affronteras affronter VER 30.72 22.43 0.20 0.00 ind:fut:2s; +affronterez affronter VER 30.72 22.43 0.14 0.00 ind:fut:2p; +affronterons affronter VER 30.72 22.43 0.22 0.00 ind:fut:1p; +affronteront affronter VER 30.72 22.43 0.20 0.00 ind:fut:3p; +affrontes affronter VER 30.72 22.43 0.58 0.07 ind:pre:2s; +affrontez affronter VER 30.72 22.43 0.51 0.00 imp:pre:2p;ind:pre:2p; +affrontiez affronter VER 30.72 22.43 0.02 0.07 ind:imp:2p; +affrontions affronter VER 30.72 22.43 0.16 0.14 ind:imp:1p; +affrontons affronter VER 30.72 22.43 0.60 0.14 imp:pre:1p;ind:pre:1p; +affronts affront NOM m p 3.36 3.85 0.25 1.08 +affrontèrent affronter VER 30.72 22.43 0.02 0.14 ind:pas:3p; +affronté affronter VER m s 30.72 22.43 1.92 0.81 par:pas; +affrontée affronter VER f s 30.72 22.43 0.11 0.14 par:pas; +affrontées affronter VER f p 30.72 22.43 0.04 0.14 par:pas; +affrontés affronter VER m p 30.72 22.43 0.23 0.20 par:pas; +affrète affréter VER 0.67 0.47 0.04 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +affrètement affrètement NOM m s 0.03 0.00 0.03 0.00 +affréter affréter VER 0.67 0.47 0.28 0.27 inf; +affréterons affréter VER 0.67 0.47 0.00 0.07 ind:fut:1p; +affréteur affréteur NOM m s 0.02 0.07 0.02 0.07 +affrétez affréter VER 0.67 0.47 0.18 0.00 imp:pre:2p;ind:pre:2p; +affrété affréter VER m s 0.67 0.47 0.18 0.07 par:pas; +affubla affubler VER 0.48 6.55 0.00 0.14 ind:pas:3s; +affublait affubler VER 0.48 6.55 0.00 0.41 ind:imp:3s; +affublant affubler VER 0.48 6.55 0.01 0.54 par:pre; +affuble affubler VER 0.48 6.55 0.03 0.47 ind:pre:1s;ind:pre:3s; +affublement affublement NOM m s 0.00 0.14 0.00 0.14 +affublent affubler VER 0.48 6.55 0.02 0.34 ind:pre:3p; +affubler affubler VER 0.48 6.55 0.14 0.68 inf; +affublerais affubler VER 0.48 6.55 0.00 0.07 cnd:pre:1s; +affublerait affubler VER 0.48 6.55 0.00 0.14 cnd:pre:3s; +affublons affubler VER 0.48 6.55 0.00 0.07 ind:pre:1p; +affublé affubler VER m s 0.48 6.55 0.23 2.03 par:pas; +affublée affubler VER f s 0.48 6.55 0.03 0.34 par:pas; +affublées affubler VER f p 0.48 6.55 0.00 0.14 par:pas; +affublés affubler VER m p 0.48 6.55 0.02 1.22 par:pas; +affurait affurer VER 0.00 1.49 0.00 0.07 ind:imp:3s; +affure affurer VER 0.00 1.49 0.00 0.81 ind:pre:3s; +afférent afférent ADJ m s 0.06 0.34 0.04 0.00 +afférente afférent ADJ f s 0.06 0.34 0.01 0.00 +afférentes afférent ADJ f p 0.06 0.34 0.01 0.20 +afférents afférent ADJ m p 0.06 0.34 0.00 0.14 +affurer affurer VER 0.00 1.49 0.00 0.41 inf; +affures affurer VER 0.00 1.49 0.00 0.07 ind:pre:2s; +affuré affurer VER m s 0.00 1.49 0.00 0.07 par:pas; +affurée affurer VER f s 0.00 1.49 0.00 0.07 par:pas; +affusions affusion NOM f p 0.00 0.07 0.00 0.07 +afféterie afféterie NOM f s 0.00 0.41 0.00 0.20 +afféteries afféterie NOM f p 0.00 0.41 0.00 0.20 +affétées affété ADJ f p 0.00 0.07 0.00 0.07 +afghan afghan ADJ m s 1.48 0.68 0.68 0.34 +afghane afghan ADJ f s 1.48 0.68 0.39 0.07 +afghanes afghan ADJ f p 1.48 0.68 0.16 0.14 +afghans afghan NOM m p 1.12 0.20 0.47 0.07 +aficionado aficionado NOM m s 0.21 0.68 0.04 0.20 +aficionados aficionado NOM m p 0.21 0.68 0.17 0.47 +afin_d afin_d PRE 0.04 0.07 0.04 0.07 +afin_de afin_de PRE 15.64 43.18 15.64 43.18 +afin_qu afin_qu CON 0.05 0.00 0.05 0.00 +afin_que afin_que CON 9.63 14.93 9.63 14.93 +afin afin ADV 0.76 0.95 0.76 0.95 +africain africain ADJ m s 5.46 12.09 2.34 3.65 +africaine africain ADJ f s 5.46 12.09 1.40 4.32 +africaines africain ADJ f p 5.46 12.09 0.52 1.35 +africains africain NOM m p 2.28 4.05 1.48 1.76 +africanisme africanisme NOM m s 0.10 0.00 0.10 0.00 +afrikaans afrikaans NOM m 0.05 0.00 0.05 0.00 +afrikaner afrikaner NOM s 0.14 0.00 0.05 0.00 +afrikaners afrikaner NOM p 0.14 0.00 0.09 0.00 +afro_américain afro_américain NOM m s 0.95 0.00 0.48 0.00 +afro_américain afro_américain ADJ f s 0.67 0.00 0.23 0.00 +afro_américain afro_américain NOM m p 0.95 0.00 0.39 0.00 +afro_asiatique afro_asiatique ADJ f s 0.01 0.00 0.01 0.00 +afro_brésilien afro_brésilien ADJ f s 0.01 0.00 0.01 0.00 +afro_cubain afro_cubain ADJ m s 0.03 0.07 0.01 0.00 +afro_cubain afro_cubain ADJ f s 0.03 0.07 0.02 0.00 +afro_cubain afro_cubain ADJ m p 0.03 0.07 0.00 0.07 +afro afro ADJ 1.21 0.27 1.21 0.27 +after_shave after_shave NOM m 0.51 0.68 0.47 0.61 +after_shave after_shave NOM m 0.51 0.68 0.03 0.07 +agît agir VER 195.94 219.73 0.07 1.08 sub:imp:3s; +aga aga NOM m s 0.65 6.01 0.65 5.95 +agace agacer VER 6.34 30.68 2.30 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agacement agacement NOM m s 0.21 7.57 0.21 7.30 +agacements agacement NOM m p 0.21 7.57 0.00 0.27 +agacent agacer VER 6.34 30.68 0.44 1.08 ind:pre:3p; +agacer agacer VER 6.34 30.68 1.18 2.77 inf; +agacera agacer VER 6.34 30.68 0.01 0.14 ind:fut:3s; +agacerait agacer VER 6.34 30.68 0.01 0.14 cnd:pre:3s; +agaceras agacer VER 6.34 30.68 0.01 0.00 ind:fut:2s; +agacerie agacerie NOM f s 0.01 0.54 0.00 0.07 +agaceries agacerie NOM f p 0.01 0.54 0.01 0.47 +agaceront agacer VER 6.34 30.68 0.00 0.07 ind:fut:3p; +agaces agacer VER 6.34 30.68 0.46 0.27 ind:pre:2s; +agaceur agaceur NOM m s 0.00 0.07 0.00 0.07 +agacez agacer VER 6.34 30.68 0.35 0.14 imp:pre:2p;ind:pre:2p; +agacèrent agacer VER 6.34 30.68 0.00 0.14 ind:pas:3p; +agacé agacer VER m s 6.34 30.68 0.74 8.45 par:pas; +agacée agacer VER f s 6.34 30.68 0.28 3.11 par:pas; +agacées agacer VER f p 6.34 30.68 0.00 0.34 par:pas; +agacés agacer VER m p 6.34 30.68 0.13 0.47 par:pas; +agames agame NOM m p 0.01 0.00 0.01 0.00 +agami agami NOM m s 0.00 0.07 0.00 0.07 +agapanthe agapanthe NOM f s 0.01 0.07 0.01 0.00 +agapanthes agapanthe NOM f p 0.01 0.07 0.00 0.07 +agape agape NOM f s 0.04 0.68 0.00 0.07 +agapes agape NOM f p 0.04 0.68 0.04 0.61 +agar_agar agar_agar NOM m s 0.00 0.07 0.00 0.07 +agas aga NOM m p 0.65 6.01 0.00 0.07 +agasses agasse NOM f p 0.00 0.07 0.00 0.07 +agate agate NOM f s 0.01 1.22 0.01 0.61 +agates agate NOM f p 0.01 1.22 0.00 0.61 +agaça agacer VER 6.34 30.68 0.00 1.22 ind:pas:3s; +agaçaient agacer VER 6.34 30.68 0.01 1.96 ind:imp:3p; +agaçais agacer VER 6.34 30.68 0.00 0.27 ind:imp:1s; +agaçait agacer VER 6.34 30.68 0.35 6.42 ind:imp:3s; +agaçant agaçant ADJ m s 1.99 4.19 1.45 2.50 +agaçante agaçant ADJ f s 1.99 4.19 0.40 1.22 +agaçantes agaçant ADJ f p 1.99 4.19 0.07 0.14 +agaçants agaçant ADJ m p 1.99 4.19 0.07 0.34 +agathe agathe NOM f s 0.00 0.14 0.00 0.14 +agave agave NOM m s 0.01 0.47 0.00 0.07 +agaves agave NOM m p 0.01 0.47 0.01 0.41 +age age NOM m s 3.37 0.47 3.25 0.47 +agence agence NOM f s 23.15 17.77 20.38 14.12 +agencement agencement NOM m s 0.19 1.89 0.19 1.69 +agencements agencement NOM m p 0.19 1.89 0.00 0.20 +agencer agencer VER 0.48 2.91 0.02 0.61 inf; +agences agence NOM f p 23.15 17.77 2.77 3.65 +agencé agencer VER m s 0.48 2.91 0.16 0.61 par:pas; +agencée agencer VER f s 0.48 2.91 0.00 0.54 par:pas; +agencées agencer VER f p 0.48 2.91 0.01 0.27 par:pas; +agencés agencer VER m p 0.48 2.91 0.01 0.41 par:pas; +agenda agenda NOM m s 5.84 6.08 5.69 5.41 +agendas agenda NOM m p 5.84 6.08 0.16 0.68 +agenouilla agenouiller VER 5.20 23.31 0.03 5.54 ind:pas:3s; +agenouillai agenouiller VER 5.20 23.31 0.11 0.47 ind:pas:1s; +agenouillaient agenouiller VER 5.20 23.31 0.01 0.61 ind:imp:3p; +agenouillais agenouiller VER 5.20 23.31 0.00 0.27 ind:imp:1s; +agenouillait agenouiller VER 5.20 23.31 0.06 1.15 ind:imp:3s; +agenouillant agenouiller VER 5.20 23.31 0.01 0.88 par:pre; +agenouille agenouiller VER 5.20 23.31 1.52 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agenouillement agenouillement NOM m s 0.27 0.27 0.27 0.27 +agenouillent agenouiller VER 5.20 23.31 0.14 0.61 ind:pre:3p; +agenouiller agenouiller VER 5.20 23.31 1.64 3.72 inf; +agenouillera agenouiller VER 5.20 23.31 0.06 0.00 ind:fut:3s; +agenouilleront agenouiller VER 5.20 23.31 0.01 0.00 ind:fut:3p; +agenouilles agenouiller VER 5.20 23.31 0.04 0.00 ind:pre:2s; +agenouillez agenouiller VER 5.20 23.31 0.33 0.00 imp:pre:2p;ind:pre:2p; +agenouillons agenouiller VER 5.20 23.31 0.12 0.07 imp:pre:1p;ind:pre:1p; +agenouillât agenouiller VER 5.20 23.31 0.00 0.07 sub:imp:3s; +agenouillèrent agenouiller VER 5.20 23.31 0.01 0.41 ind:pas:3p; +agenouillé agenouiller VER m s 5.20 23.31 1.04 3.72 par:pas; +agenouillée agenouiller VER f s 5.20 23.31 0.06 2.23 par:pas; +agenouillées agenouillé ADJ f p 0.15 2.36 0.00 0.41 +agenouillés agenouiller VER m p 5.20 23.31 0.02 1.08 par:pas; +agent agent NOM m s 117.60 39.26 92.42 22.50 +agente agente NOM f s 0.30 0.00 0.30 0.00 +agença agencer VER 0.48 2.91 0.00 0.07 ind:pas:3s; +agençaient agencer VER 0.48 2.91 0.01 0.07 ind:imp:3p; +agençait agencer VER 0.48 2.91 0.01 0.07 ind:imp:3s; +agençant agencer VER 0.48 2.91 0.00 0.07 par:pre; +agents agent NOM m p 117.60 39.26 25.00 16.69 +ages age NOM m p 3.37 0.47 0.13 0.00 +aggiornamento aggiornamento NOM m s 0.04 0.07 0.04 0.07 +agglo agglo NOM m s 0.00 0.07 0.00 0.07 +agglomère agglomérer VER 0.01 1.62 0.00 0.07 ind:pre:3s; +agglomèrent agglomérer VER 0.01 1.62 0.00 0.41 ind:pre:3p; +aggloméraient agglomérer VER 0.01 1.62 0.00 0.14 ind:imp:3p; +agglomérant agglomérer VER 0.01 1.62 0.00 0.07 par:pre; +agglomérat agglomérat NOM m s 0.00 0.47 0.00 0.47 +agglomération agglomération NOM f s 0.12 2.16 0.10 1.62 +agglomérations agglomération NOM f p 0.12 2.16 0.02 0.54 +agglomérer agglomérer VER 0.01 1.62 0.00 0.20 inf; +agglomérera agglomérer VER 0.01 1.62 0.00 0.07 ind:fut:3s; +aggloméreront agglomérer VER 0.01 1.62 0.00 0.07 ind:fut:3p; +aggloméré aggloméré NOM m s 0.06 0.34 0.06 0.27 +agglomérée agglomérer VER f s 0.01 1.62 0.00 0.14 par:pas; +agglomérées agglomérer VER f p 0.01 1.62 0.01 0.27 par:pas; +agglomérés aggloméré ADJ m p 0.00 0.47 0.00 0.41 +agglutina agglutiner VER 0.24 6.55 0.00 0.07 ind:pas:3s; +agglutinaient agglutiner VER 0.24 6.55 0.00 0.95 ind:imp:3p; +agglutinait agglutiner VER 0.24 6.55 0.00 0.34 ind:imp:3s; +agglutinant agglutiner VER 0.24 6.55 0.00 0.41 par:pre; +agglutinatif agglutinatif ADJ m s 0.00 0.07 0.00 0.07 +agglutination agglutination NOM f s 0.01 0.14 0.01 0.14 +agglutine agglutiner VER 0.24 6.55 0.00 0.27 ind:pre:3s; +agglutinement agglutinement NOM m s 0.00 0.07 0.00 0.07 +agglutinent agglutiner VER 0.24 6.55 0.04 1.01 ind:pre:3p; +agglutiner agglutiner VER 0.24 6.55 0.02 0.27 inf; +agglutinez agglutiner VER 0.24 6.55 0.01 0.00 imp:pre:2p; +agglutinogène agglutinogène NOM m s 0.00 0.07 0.00 0.07 +agglutinèrent agglutiner VER 0.24 6.55 0.00 0.14 ind:pas:3p; +agglutiné agglutiner VER m s 0.24 6.55 0.01 0.20 par:pas; +agglutinée agglutiner VER f s 0.24 6.55 0.00 0.14 par:pas; +agglutinées agglutiner VER f p 0.24 6.55 0.01 0.88 par:pas; +agglutinés agglutiner VER m p 0.24 6.55 0.15 1.89 par:pas; +aggrava aggraver VER 7.61 10.54 0.02 0.68 ind:pas:3s; +aggravai aggraver VER 7.61 10.54 0.00 0.07 ind:pas:1s; +aggravaient aggraver VER 7.61 10.54 0.00 0.68 ind:imp:3p; +aggravait aggraver VER 7.61 10.54 0.06 2.43 ind:imp:3s; +aggravant aggraver VER 7.61 10.54 0.02 0.41 par:pre; +aggravante aggravant ADJ f s 0.26 0.54 0.02 0.34 +aggravantes aggravant ADJ f p 0.26 0.54 0.24 0.20 +aggravation aggravation NOM f s 0.45 0.74 0.45 0.74 +aggrave aggraver VER 7.61 10.54 2.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aggravent aggraver VER 7.61 10.54 0.17 0.34 ind:pre:3p; +aggraver aggraver VER 7.61 10.54 2.32 2.43 inf; +aggravera aggraver VER 7.61 10.54 0.04 0.07 ind:fut:3s; +aggraverait aggraver VER 7.61 10.54 0.07 0.00 cnd:pre:3s; +aggraveriez aggraver VER 7.61 10.54 0.00 0.07 cnd:pre:2p; +aggravez aggraver VER 7.61 10.54 0.78 0.00 imp:pre:2p;ind:pre:2p; +aggraviez aggraver VER 7.61 10.54 0.00 0.07 ind:imp:2p; +aggravons aggraver VER 7.61 10.54 0.05 0.00 imp:pre:1p;ind:pre:1p; +aggravèrent aggraver VER 7.61 10.54 0.00 0.14 ind:pas:3p; +aggravé aggraver VER m s 7.61 10.54 1.36 0.88 par:pas; +aggravée aggraver VER f s 7.61 10.54 0.39 1.28 par:pas; +aggravées aggraver VER f p 7.61 10.54 0.04 0.07 par:pas; +aggravés aggraver VER m p 7.61 10.54 0.16 0.07 par:pas; +aghas agha NOM m p 0.00 0.07 0.00 0.07 +agi agir VER m s 195.94 219.73 13.69 13.31 par:pas; +agie agir VER f s 195.94 219.73 0.14 0.00 par:pas; +agile agile ADJ s 2.17 5.00 1.69 3.31 +agiles agile ADJ p 2.17 5.00 0.47 1.69 +agilité agilité NOM f s 1.00 3.38 1.00 3.31 +agilités agilité NOM f p 1.00 3.38 0.00 0.07 +agios agio NOM m p 0.17 0.07 0.17 0.07 +agioteur agioteur NOM m s 0.01 0.07 0.01 0.07 +agir agir VER 195.94 219.73 37.48 29.66 inf; +agira agir VER 195.94 219.73 1.25 1.08 ind:fut:3s; +agirai agir VER 195.94 219.73 0.79 0.34 ind:fut:1s; +agiraient agir VER 195.94 219.73 0.03 0.14 cnd:pre:3p; +agirais agir VER 195.94 219.73 0.29 0.07 cnd:pre:1s;cnd:pre:2s; +agirait agir VER 195.94 219.73 2.08 3.85 cnd:pre:3s; +agiras agir VER 195.94 219.73 0.10 0.07 ind:fut:2s; +agirent agir VER 195.94 219.73 0.00 0.14 ind:pas:3p; +agirez agir VER 195.94 219.73 0.14 0.20 ind:fut:2p; +agiriez agir VER 195.94 219.73 0.09 0.00 cnd:pre:2p; +agirons agir VER 195.94 219.73 0.36 0.00 ind:fut:1p; +agiront agir VER 195.94 219.73 0.09 0.27 ind:fut:3p; +agis agir VER m p 195.94 219.73 6.61 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +agissaient agir VER 195.94 219.73 0.32 1.49 ind:imp:3p; +agissais agir VER 195.94 219.73 0.49 0.95 ind:imp:1s;ind:imp:2s; +agissait agir VER 195.94 219.73 12.30 80.47 ind:imp:3s; +agissant agir VER 195.94 219.73 1.26 4.32 par:pre; +agissante agissant ADJ f s 0.16 0.68 0.11 0.41 +agissantes agissant ADJ f p 0.16 0.68 0.00 0.14 +agisse agir VER 195.94 219.73 2.80 4.53 sub:pre:1s;sub:pre:3s; +agissement agissement NOM m s 1.34 1.08 0.16 0.14 +agissements agissement NOM m p 1.34 1.08 1.18 0.95 +agissent agir VER 195.94 219.73 3.61 1.69 ind:pre:3p; +agisses agir VER 195.94 219.73 0.27 0.00 sub:pre:2s; +agissez agir VER 195.94 219.73 4.20 0.74 imp:pre:2p;ind:pre:2p; +agissiez agir VER 195.94 219.73 0.23 0.14 ind:imp:2p; +agissions agir VER 195.94 219.73 0.12 0.07 ind:imp:1p; +agissons agir VER 195.94 219.73 2.14 0.61 imp:pre:1p;ind:pre:1p; +agit_prop agit_prop NOM f 0.10 0.00 0.10 0.00 +agit agir VER 195.94 219.73 105.02 73.72 ind:pre:3s;ind:pas:3s; +agita agiter VER 14.62 89.19 0.06 6.76 ind:pas:3s; +agitai agiter VER 14.62 89.19 0.00 0.14 ind:pas:1s; +agitaient agiter VER 14.62 89.19 0.08 9.93 ind:imp:3p; +agitais agiter VER 14.62 89.19 0.20 0.41 ind:imp:1s;ind:imp:2s; +agitait agiter VER 14.62 89.19 0.47 17.09 ind:imp:3s; +agitant agiter VER 14.62 89.19 0.82 11.22 par:pre; +agitassent agiter VER 14.62 89.19 0.00 0.07 sub:imp:3p; +agitateur agitateur NOM m s 1.72 1.89 0.86 0.68 +agitateurs agitateur NOM m p 1.72 1.89 0.85 1.22 +agitation agitation NOM f s 4.73 21.35 4.46 20.07 +agitations agitation NOM f p 4.73 21.35 0.27 1.28 +agitato agitato ADV 0.17 0.07 0.17 0.07 +agitatrice agitateur NOM f s 1.72 1.89 0.01 0.00 +agite agiter VER 14.62 89.19 3.51 12.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agitent agiter VER 14.62 89.19 1.53 5.54 ind:pre:3p; +agiter agiter VER 14.62 89.19 2.72 11.89 inf; +agitera agiter VER 14.62 89.19 0.03 0.07 ind:fut:3s; +agiterai agiter VER 14.62 89.19 0.02 0.00 ind:fut:1s; +agiterait agiter VER 14.62 89.19 0.01 0.27 cnd:pre:3s; +agiteront agiter VER 14.62 89.19 0.06 0.14 ind:fut:3p; +agites agiter VER 14.62 89.19 0.84 0.07 ind:pre:2s; +agitez agiter VER 14.62 89.19 0.76 0.14 imp:pre:2p;ind:pre:2p; +agitiez agiter VER 14.62 89.19 0.04 0.00 ind:imp:2p; +agitions agiter VER 14.62 89.19 0.00 0.07 ind:imp:1p; +agitons agiter VER 14.62 89.19 0.01 0.14 ind:pre:1p; +agitât agiter VER 14.62 89.19 0.00 0.07 sub:imp:3s; +agitèrent agiter VER 14.62 89.19 0.01 1.22 ind:pas:3p; +agité agité ADJ m s 5.37 9.86 2.90 3.38 +agitée agité ADJ f s 5.37 9.86 1.76 3.38 +agitées agité ADJ f p 5.37 9.86 0.20 1.49 +agités agité ADJ m p 5.37 9.86 0.51 1.62 +aglagla aglagla ADV 0.00 0.07 0.00 0.07 +agnat agnat NOM m s 0.03 0.07 0.03 0.07 +agnathes agnathe NOM m p 0.00 0.07 0.00 0.07 +agneau agneau NOM m s 16.13 8.78 13.01 5.95 +agneaux agneau NOM m p 16.13 8.78 3.12 2.84 +agnela agneler VER 0.00 0.47 0.00 0.47 ind:pas:3s; +agnelage agnelage NOM m s 0.00 0.07 0.00 0.07 +agnelet agnelet NOM m s 0.11 0.07 0.11 0.07 +agneline agneline NOM f s 0.00 0.07 0.00 0.07 +agnelle agnel NOM f s 0.14 0.41 0.14 0.14 +agnelles agnel NOM f p 0.14 0.41 0.00 0.27 +agnosie agnosie NOM f s 0.02 0.00 0.02 0.00 +agnostique agnostique ADJ f s 0.08 0.47 0.08 0.41 +agnostiques agnostique NOM p 0.03 0.14 0.01 0.07 +agnus_dei agnus_dei NOM m 0.00 0.07 0.00 0.07 +agnus_dei agnus_dei NOM m 0.47 0.14 0.47 0.14 +agonie agonie NOM f s 4.68 14.59 4.44 13.38 +agonies agonie NOM f p 4.68 14.59 0.25 1.22 +agonique agonique ADJ f s 0.01 0.00 0.01 0.00 +agoniques agonique NOM p 0.00 0.14 0.00 0.07 +agonir agonir VER 0.03 0.95 0.01 0.61 inf; +agonirent agonir VER 0.03 0.95 0.00 0.07 ind:pas:3p; +agonisa agoniser VER 1.36 5.34 0.00 0.14 ind:pas:3s; +agonisai agoniser VER 1.36 5.34 0.00 0.07 ind:pas:1s; +agonisaient agoniser VER 1.36 5.34 0.00 0.34 ind:imp:3p; +agonisais agoniser VER 1.36 5.34 0.03 0.07 ind:imp:1s; +agonisait agoniser VER 1.36 5.34 0.23 1.62 ind:imp:3s; +agonisant agonisant ADJ m s 0.52 2.30 0.41 1.08 +agonisante agonisant ADJ f s 0.52 2.30 0.07 0.88 +agonisantes agonisant ADJ f p 0.52 2.30 0.01 0.27 +agonisants agonisant NOM m p 0.23 3.38 0.17 1.35 +agonise agoniser VER 1.36 5.34 0.45 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agonisent agoniser VER 1.36 5.34 0.14 0.34 ind:pre:3p; +agoniser agoniser VER 1.36 5.34 0.10 1.01 inf; +agonisez agoniser VER 1.36 5.34 0.02 0.07 imp:pre:2p; +agonisiez agoniser VER 1.36 5.34 0.02 0.07 ind:imp:2p; +agonissait agonir VER 0.03 0.95 0.00 0.07 ind:imp:3s; +agoniste agoniste ADJ s 0.00 0.07 0.00 0.07 +agonisé agoniser VER m s 1.36 5.34 0.26 0.00 par:pas; +agonit agonir VER 0.03 0.95 0.00 0.14 ind:pre:3s;ind:pas:3s; +agora agora NOM f s 0.03 0.68 0.03 0.68 +agoraphobe agoraphobe ADJ m s 0.07 0.00 0.07 0.00 +agoraphobes agoraphobe NOM p 0.01 0.07 0.00 0.07 +agoraphobie agoraphobie NOM f s 0.23 0.07 0.23 0.07 +agouti agouti NOM m s 0.01 0.41 0.01 0.34 +agoutis agouti NOM m p 0.01 0.41 0.00 0.07 +agoyate agoyate NOM m s 0.00 0.41 0.00 0.27 +agoyates agoyate NOM m p 0.00 0.41 0.00 0.14 +agrafa agrafer VER 1.34 2.36 0.00 0.07 ind:pas:3s; +agrafage agrafage NOM m s 0.03 0.00 0.03 0.00 +agrafait agrafer VER 1.34 2.36 0.00 0.47 ind:imp:3s; +agrafant agrafer VER 1.34 2.36 0.00 0.14 par:pre; +agrafe agrafe NOM f s 0.86 2.43 0.34 0.88 +agrafent agrafer VER 1.34 2.36 0.01 0.07 ind:pre:3p; +agrafer agrafer VER 1.34 2.36 0.85 0.47 inf; +agraferai agrafer VER 1.34 2.36 0.01 0.00 ind:fut:1s; +agrafes agrafe NOM f p 0.86 2.43 0.52 1.55 +agrafeur agrafeur NOM m s 0.75 0.14 0.03 0.00 +agrafeuse agrafeur NOM f s 0.75 0.14 0.73 0.07 +agrafeuses agrafeuse NOM f p 0.06 0.00 0.06 0.00 +agrafez agrafer VER 1.34 2.36 0.06 0.00 imp:pre:2p;ind:pre:2p; +agrafons agrafer VER 1.34 2.36 0.02 0.00 imp:pre:1p; +agrafé agrafer VER m s 1.34 2.36 0.15 0.41 par:pas; +agrafée agrafer VER f s 1.34 2.36 0.04 0.41 par:pas; +agrafées agrafer VER f p 1.34 2.36 0.00 0.07 par:pas; +agrafés agrafer VER m p 1.34 2.36 0.03 0.07 par:pas; +agrainage agrainage NOM m s 0.00 0.07 0.00 0.07 +agraire agraire ADJ s 0.35 0.54 0.31 0.41 +agraires agraire ADJ p 0.35 0.54 0.04 0.14 +agrandît agrandir VER 7.26 16.15 0.00 0.07 sub:imp:3s; +agrandi agrandir VER m s 7.26 16.15 0.53 1.96 par:pas; +agrandie agrandir VER f s 7.26 16.15 0.45 1.62 par:pas; +agrandies agrandir VER f p 7.26 16.15 0.00 0.68 par:pas; +agrandir agrandir VER 7.26 16.15 3.89 2.70 inf; +agrandira agrandir VER 7.26 16.15 0.14 0.14 ind:fut:3s; +agrandirai agrandir VER 7.26 16.15 0.01 0.00 ind:fut:1s; +agrandirait agrandir VER 7.26 16.15 0.28 0.00 cnd:pre:3s; +agrandirent agrandir VER 7.26 16.15 0.00 0.61 ind:pas:3p; +agrandiront agrandir VER 7.26 16.15 0.01 0.00 ind:fut:3p; +agrandis agrandir VER m p 7.26 16.15 0.41 3.85 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +agrandissaient agrandir VER 7.26 16.15 0.00 0.74 ind:imp:3p; +agrandissait agrandir VER 7.26 16.15 0.04 1.01 ind:imp:3s; +agrandissant agrandir VER 7.26 16.15 0.16 0.47 par:pre; +agrandissement agrandissement NOM m s 0.90 1.69 0.68 1.28 +agrandissements agrandissement NOM m p 0.90 1.69 0.21 0.41 +agrandissent agrandir VER 7.26 16.15 0.03 0.54 ind:pre:3p; +agrandisseur agrandisseur NOM m s 0.13 0.27 0.13 0.20 +agrandisseurs agrandisseur NOM m p 0.13 0.27 0.00 0.07 +agrandissez agrandir VER 7.26 16.15 0.44 0.14 imp:pre:2p;ind:pre:2p; +agrandissons agrandir VER 7.26 16.15 0.04 0.00 imp:pre:1p; +agrandit agrandir VER 7.26 16.15 0.86 1.62 ind:pre:3s;ind:pas:3s; +agranulocytose agranulocytose NOM f s 0.01 0.00 0.01 0.00 +agrarien agrarien ADJ m s 0.00 0.14 0.00 0.14 +agressa agresser VER 13.39 2.97 0.01 0.07 ind:pas:3s; +agressaient agresser VER 13.39 2.97 0.02 0.07 ind:imp:3p; +agressais agresser VER 13.39 2.97 0.02 0.07 ind:imp:1s;ind:imp:2s; +agressait agresser VER 13.39 2.97 0.08 0.14 ind:imp:3s; +agressant agresser VER 13.39 2.97 0.05 0.07 par:pre; +agresse agresser VER 13.39 2.97 1.46 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agressent agresser VER 13.39 2.97 0.07 0.07 ind:pre:3p; +agresser agresser VER 13.39 2.97 2.42 0.34 inf; +agresseraient agresser VER 13.39 2.97 0.01 0.00 cnd:pre:3p; +agresserait agresser VER 13.39 2.97 0.01 0.00 cnd:pre:3s; +agresseur agresseur NOM m s 6.87 3.78 5.03 2.43 +agresseurs agresseur NOM m p 6.87 3.78 1.84 1.35 +agressez agresser VER 13.39 2.97 0.17 0.00 ind:pre:2p; +agressif agressif ADJ m s 9.83 15.88 5.76 6.82 +agressifs agressif ADJ m p 9.83 15.88 1.20 1.69 +agression agression NOM f s 12.91 6.15 10.92 4.53 +agressions agression NOM f p 12.91 6.15 1.99 1.62 +agressive agressif ADJ f s 9.83 15.88 2.48 6.22 +agressivement agressivement ADV 0.11 1.01 0.11 1.01 +agressives agressif ADJ f p 9.83 15.88 0.39 1.15 +agressivité agressivité NOM f s 2.54 5.00 2.54 4.86 +agressivités agressivité NOM f p 2.54 5.00 0.00 0.14 +agressé agresser VER m s 13.39 2.97 5.33 0.81 par:pas; +agressée agresser VER f s 13.39 2.97 2.56 0.41 par:pas; +agressées agresser VER f p 13.39 2.97 0.25 0.07 par:pas; +agressés agresser VER m p 13.39 2.97 0.92 0.20 par:pas; +agreste agreste ADJ s 0.10 0.81 0.10 0.68 +agrestes agreste ADJ f p 0.10 0.81 0.00 0.14 +agriche agricher VER 0.00 0.14 0.00 0.07 ind:pre:3s; +agriches agricher VER 0.00 0.14 0.00 0.07 ind:pre:2s; +agricole agricole ADJ s 3.31 7.36 2.03 4.32 +agricoles agricole ADJ p 3.31 7.36 1.28 3.04 +agriculteur agriculteur NOM m s 1.06 1.76 0.42 0.54 +agriculteurs agriculteur NOM m p 1.06 1.76 0.63 1.08 +agricultrice agriculteur NOM f s 1.06 1.76 0.01 0.00 +agricultrices agriculteur NOM f p 1.06 1.76 0.00 0.14 +agriculture agriculture NOM f s 3.39 2.77 3.39 2.77 +agrippa agripper VER 2.81 17.57 0.12 2.50 ind:pas:3s; +agrippai agripper VER 2.81 17.57 0.00 0.54 ind:pas:1s; +agrippaient agripper VER 2.81 17.57 0.00 1.08 ind:imp:3p; +agrippais agripper VER 2.81 17.57 0.01 0.07 ind:imp:1s;ind:imp:2s; +agrippait agripper VER 2.81 17.57 0.33 1.82 ind:imp:3s; +agrippant agripper VER 2.81 17.57 0.08 2.03 par:pre; +agrippants agrippant ADJ m p 0.00 0.14 0.00 0.07 +agrippe agripper VER 2.81 17.57 0.72 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +agrippement agrippement NOM m s 0.00 0.07 0.00 0.07 +agrippent agripper VER 2.81 17.57 0.09 1.08 ind:pre:3p; +agripper agripper VER 2.81 17.57 0.44 1.28 imp:pre:2p;inf; +agrippes agripper VER 2.81 17.57 0.09 0.07 ind:pre:2s; +agrippez agripper VER 2.81 17.57 0.11 0.00 imp:pre:2p;ind:pre:2p; +agrippions agripper VER 2.81 17.57 0.00 0.07 ind:imp:1p; +agrippèrent agripper VER 2.81 17.57 0.00 0.41 ind:pas:3p; +agrippé agripper VER m s 2.81 17.57 0.56 2.30 par:pas; +agrippée agripper VER f s 2.81 17.57 0.23 1.01 par:pas; +agrippées agripper VER f p 2.81 17.57 0.03 0.61 par:pas; +agrippés agripper VER m p 2.81 17.57 0.01 0.81 par:pas; +agro_alimentaire agro_alimentaire ADJ f s 0.15 0.00 0.15 0.00 +agro agro NOM s 0.00 0.20 0.00 0.20 +agroalimentaire agroalimentaire NOM m s 0.04 0.00 0.04 0.00 +agronome agronome NOM s 0.40 0.34 0.40 0.20 +agronomes agronome NOM p 0.40 0.34 0.00 0.14 +agronomie agronomie NOM f s 0.07 0.07 0.07 0.07 +agronomique agronomique ADJ s 0.03 0.07 0.03 0.07 +agrovilles agroville NOM f p 0.00 0.07 0.00 0.07 +agrège agréger VER 0.46 0.81 0.00 0.07 ind:pre:3s; +agrègent agréger VER 0.46 0.81 0.00 0.07 ind:pre:3p; +agrès agrès NOM m 0.24 1.01 0.24 1.01 +agréa agréer VER 1.09 5.07 0.14 0.20 ind:pas:3s; +agréable agréable ADJ s 40.24 36.01 37.71 31.35 +agréablement agréablement ADV 0.63 3.65 0.63 3.65 +agréables agréable ADJ p 40.24 36.01 2.54 4.66 +agréaient agréer VER 1.09 5.07 0.00 0.14 ind:imp:3p; +agréais agréer VER 1.09 5.07 0.00 0.14 ind:imp:1s; +agréait agréer VER 1.09 5.07 0.00 0.47 ind:imp:3s; +agrée agréer VER 1.09 5.07 0.07 0.20 ind:pre:1s;ind:pre:3s; +agréent agréer VER 1.09 5.07 0.02 0.00 ind:pre:3p; +agréer agréer VER 1.09 5.07 0.45 3.18 inf; +agréera agréer VER 1.09 5.07 0.01 0.00 ind:fut:3s; +agréerait agréer VER 1.09 5.07 0.00 0.07 cnd:pre:3s; +agrées agréer VER 1.09 5.07 0.00 0.07 ind:pre:2s; +agréez agréer VER 1.09 5.07 0.14 0.14 imp:pre:2p;ind:pre:2p; +agrég agrég NOM f s 0.14 0.00 0.14 0.00 +agrégat agrégat NOM m s 0.03 0.61 0.02 0.47 +agrégatif agrégatif NOM m s 0.00 0.47 0.00 0.41 +agrégatifs agrégatif NOM m p 0.00 0.47 0.00 0.07 +agrégation agrégation NOM f s 0.29 2.97 0.29 2.97 +agrégative agrégative NOM f s 0.00 0.07 0.00 0.07 +agrégats agrégat NOM m p 0.03 0.61 0.01 0.14 +agrégeaient agréger VER 0.46 0.81 0.00 0.07 ind:imp:3p; +agrégeait agréger VER 0.46 0.81 0.00 0.07 ind:imp:3s; +agréger agréger VER 0.46 0.81 0.00 0.07 inf; +agrégé agréger VER m s 0.46 0.81 0.34 0.20 par:pas; +agrégée agréger VER f s 0.46 0.81 0.10 0.20 par:pas; +agrégées agréger VER f p 0.46 0.81 0.01 0.00 par:pas; +agrégés agrégé NOM m p 0.32 1.15 0.20 0.41 +agréions agréer VER 1.09 5.07 0.00 0.07 ind:imp:1p; +agrume agrume NOM m s 0.41 0.54 0.01 0.07 +agrément agrément NOM m s 1.75 7.16 1.50 6.01 +agrémenta agrémenter VER 0.35 5.68 0.01 0.20 ind:pas:3s; +agrémentaient agrémenter VER 0.35 5.68 0.00 0.20 ind:imp:3p; +agrémentait agrémenter VER 0.35 5.68 0.01 0.61 ind:imp:3s; +agrémentant agrémenter VER 0.35 5.68 0.00 0.20 par:pre; +agrémente agrémenter VER 0.35 5.68 0.03 0.14 ind:pre:3s; +agrémentent agrémenter VER 0.35 5.68 0.00 0.14 ind:pre:3p; +agrémenter agrémenter VER 0.35 5.68 0.03 0.41 inf; +agréments agrément NOM m p 1.75 7.16 0.25 1.15 +agrémenté agrémenté ADJ m s 0.14 0.14 0.14 0.00 +agrémentée agrémenter VER f s 0.35 5.68 0.06 0.88 par:pas; +agrémentées agrémenter VER f p 0.35 5.68 0.00 0.68 par:pas; +agrémentés agrémenter VER m p 0.35 5.68 0.10 0.68 par:pas; +agrumes agrume NOM m p 0.41 0.54 0.40 0.47 +agréé agréer VER m s 1.09 5.07 0.22 0.14 par:pas; +agréée agréé ADJ f s 0.17 0.68 0.04 0.00 +agréées agréer VER f p 1.09 5.07 0.02 0.00 par:pas; +agréés agréé ADJ m p 0.17 0.68 0.00 0.20 +aguardiente aguardiente NOM f s 0.03 0.00 0.03 0.00 +aguerri aguerri ADJ m s 0.66 1.01 0.59 0.41 +aguerrie aguerri ADJ f s 0.66 1.01 0.04 0.14 +aguerries aguerri ADJ f p 0.66 1.01 0.01 0.07 +aguerrir aguerrir VER 0.21 0.81 0.07 0.20 inf; +aguerrira aguerrir VER 0.21 0.81 0.01 0.00 ind:fut:3s; +aguerris aguerri ADJ m p 0.66 1.01 0.01 0.41 +aguerrissait aguerrir VER 0.21 0.81 0.00 0.07 ind:imp:3s; +aguerrit aguerrir VER 0.21 0.81 0.01 0.00 ind:pre:3s; +aguichage aguichage NOM m s 0.01 0.00 0.01 0.00 +aguichait aguicher VER 0.30 0.88 0.03 0.20 ind:imp:3s; +aguichant aguichant ADJ m s 0.14 0.54 0.04 0.07 +aguichante aguichant ADJ f s 0.14 0.54 0.07 0.27 +aguichantes aguichant ADJ f p 0.14 0.54 0.03 0.20 +aguiche aguicher VER 0.30 0.88 0.04 0.14 ind:pre:3s; +aguichent aguicher VER 0.30 0.88 0.03 0.14 ind:pre:3p; +aguicher aguicher VER 0.30 0.88 0.21 0.41 inf; +aguicheur aguicheur ADJ m s 0.23 0.47 0.06 0.07 +aguicheurs aguicheur ADJ m p 0.23 0.47 0.00 0.07 +aguicheuse aguicheur NOM f s 0.04 0.14 0.04 0.14 +aguicheuses aguicheur ADJ f p 0.23 0.47 0.17 0.14 +aguillera aguiller VER 0.01 0.00 0.01 0.00 ind:fut:3s; +ah ah ONO 576.53 297.16 576.53 297.16 +ahan ahan NOM m s 0.00 0.54 0.00 0.34 +ahana ahaner VER 0.01 2.16 0.00 0.20 ind:pas:3s; +ahanaient ahaner VER 0.01 2.16 0.00 0.14 ind:imp:3p; +ahanait ahaner VER 0.01 2.16 0.00 0.34 ind:imp:3s; +ahanant ahaner VER 0.01 2.16 0.00 0.61 par:pre; +ahanante ahanant ADJ f s 0.00 0.41 0.00 0.14 +ahane ahaner VER 0.01 2.16 0.01 0.34 ind:pre:1s;ind:pre:3s; +ahanement ahanement NOM m s 0.00 0.34 0.00 0.07 +ahanements ahanement NOM m p 0.00 0.34 0.00 0.27 +ahanent ahaner VER 0.01 2.16 0.00 0.14 ind:pre:3p; +ahaner ahaner VER 0.01 2.16 0.00 0.27 inf; +ahans ahan NOM m p 0.00 0.54 0.00 0.20 +ahané ahaner VER m s 0.01 2.16 0.00 0.14 par:pas; +ahi ahi ADV 0.06 0.27 0.06 0.27 +ahou ahou ADV 0.01 0.00 0.01 0.00 +ahuri ahuri NOM m s 0.41 3.04 0.37 1.76 +ahurie ahuri ADJ f s 0.39 7.70 0.04 2.03 +ahuries ahuri ADJ f p 0.39 7.70 0.00 0.27 +ahurir ahurir VER 0.34 3.38 0.00 0.41 inf; +ahuris ahuri NOM m p 0.41 3.04 0.04 1.22 +ahurissait ahurir VER 0.34 3.38 0.00 0.27 ind:imp:3s; +ahurissant ahurissant ADJ m s 0.70 2.16 0.42 1.15 +ahurissante ahurissant ADJ f s 0.70 2.16 0.21 0.61 +ahurissantes ahurissant ADJ f p 0.70 2.16 0.05 0.14 +ahurissants ahurissant ADJ m p 0.70 2.16 0.03 0.27 +ahurissement ahurissement NOM m s 0.00 1.82 0.00 1.76 +ahurissements ahurissement NOM m p 0.00 1.82 0.00 0.07 +ahurit ahurir VER 0.34 3.38 0.00 0.41 ind:pre:3s;ind:pas:3s; +ai avoir AUX 18559.23 12800.81 4902.10 2119.12 ind:pre:1s; +aicher aicher VER 0.10 0.00 0.10 0.00 inf; +aida aider VER 688.71 158.65 0.81 7.09 ind:pas:3s; +aidai aider VER 688.71 158.65 0.03 1.08 ind:pas:1s; +aidaient aider VER 688.71 158.65 1.04 3.31 ind:imp:3p; +aidais aider VER 688.71 158.65 3.18 1.49 ind:imp:1s;ind:imp:2s; +aidait aider VER 688.71 158.65 3.47 9.73 ind:imp:3s; +aidant aider VER 688.71 158.65 1.70 11.49 par:pre; +aidassent aider VER 688.71 158.65 0.00 0.14 sub:imp:3p; +aide_bourreau aide_bourreau NOM s 0.00 0.14 0.00 0.14 +aide_comptable aide_comptable NOM m s 0.04 0.07 0.04 0.07 +aide_cuisinier aide_cuisinier NOM m s 0.02 0.14 0.02 0.14 +aide_infirmier aide_infirmier NOM s 0.04 0.00 0.04 0.00 +aide_jardinier aide_jardinier NOM m s 0.01 0.07 0.01 0.07 +aide_major aide_major NOM m 0.00 0.14 0.00 0.14 +aide_mémoire aide_mémoire NOM m 0.04 0.41 0.04 0.41 +aide_ménagère aide_ménagère NOM f s 0.00 0.27 0.00 0.27 +aide_pharmacien aide_pharmacien NOM s 0.00 0.07 0.00 0.07 +aide_soignant aide_soignant NOM m s 0.40 0.27 0.20 0.00 +aide_soignant aide_soignant NOM f s 0.40 0.27 0.12 0.14 +aide aide NOM s 175.59 55.54 171.41 52.30 +aident aider VER 688.71 158.65 6.75 2.57 ind:pre:3p;sub:pre:3p; +aider aider VER 688.71 158.65 362.77 60.41 inf;;inf;;inf;;inf;; +aidera aider VER 688.71 158.65 19.59 2.97 ind:fut:3s; +aiderai aider VER 688.71 158.65 10.91 2.03 ind:fut:1s; +aideraient aider VER 688.71 158.65 0.41 0.41 cnd:pre:3p; +aiderais aider VER 688.71 158.65 2.60 0.20 cnd:pre:1s;cnd:pre:2s; +aiderait aider VER 688.71 158.65 7.82 3.58 cnd:pre:3s; +aideras aider VER 688.71 158.65 3.29 0.81 ind:fut:2s; +aiderez aider VER 688.71 158.65 2.18 0.54 ind:fut:2p; +aideriez aider VER 688.71 158.65 0.96 0.20 cnd:pre:2p; +aiderions aider VER 688.71 158.65 0.02 0.07 cnd:pre:1p; +aiderons aider VER 688.71 158.65 1.47 0.14 ind:fut:1p; +aideront aider VER 688.71 158.65 3.19 0.74 ind:fut:3p; +aide_soignant aide_soignant NOM f p 0.40 0.27 0.00 0.14 +aide_soignant aide_soignant NOM m p 0.40 0.27 0.08 0.00 +aides aider VER 688.71 158.65 19.22 1.49 ind:pre:2s;sub:pre:2s; +aidez aider VER 688.71 158.65 64.36 2.77 imp:pre:2p;ind:pre:2p; +aidiez aider VER 688.71 158.65 2.21 0.20 ind:imp:2p;sub:pre:2p; +aidions aider VER 688.71 158.65 0.14 0.27 ind:imp:1p; +aidons aider VER 688.71 158.65 1.75 0.47 imp:pre:1p;ind:pre:1p; +aidât aider VER 688.71 158.65 0.00 0.54 sub:imp:3s; +aidèrent aider VER 688.71 158.65 0.03 1.76 ind:pas:3p; +aidé aider VER m s 688.71 158.65 34.74 15.61 par:pas; +aidée aider VER f s 688.71 158.65 8.64 4.80 par:pas; +aidées aider VER f p 688.71 158.65 0.62 0.34 par:pas; +aidés aider VER m p 688.71 158.65 5.13 3.04 par:pas; +aie avoir AUX 18559.23 12800.81 31.75 21.69 sub:pre:1s; +aient avoir AUX 18559.23 12800.81 12.67 19.80 sub:pre:3p; +aies avoir AUX 18559.23 12800.81 22.71 4.93 sub:pre:2s; +aigle aigle NOM s 6.90 11.35 5.50 7.91 +aiglefin aiglefin NOM m s 0.00 0.07 0.00 0.07 +aigles aigle NOM p 6.90 11.35 1.40 3.45 +aiglon aiglon NOM m s 0.47 0.95 0.42 0.68 +aiglons aiglon NOM m p 0.47 0.95 0.05 0.27 +aigre_doux aigre_doux ADJ f s 0.29 1.08 0.08 0.54 +aigre_doux aigre_doux ADJ m 0.29 1.08 0.20 0.34 +aigre aigre ADJ s 0.55 10.47 0.42 8.38 +aigrelet aigrelet ADJ m s 0.14 3.58 0.00 1.35 +aigrelets aigrelet ADJ m p 0.14 3.58 0.14 0.20 +aigrelette aigrelet ADJ f s 0.14 3.58 0.01 1.76 +aigrelettes aigrelet ADJ f p 0.14 3.58 0.00 0.27 +aigrement aigrement ADV 0.00 1.42 0.00 1.42 +aigre_douce aigre_douce ADJ f p 0.01 0.20 0.01 0.20 +aigre_doux aigre_doux ADJ m p 0.29 1.08 0.01 0.20 +aigres aigre ADJ p 0.55 10.47 0.13 2.09 +aigrette aigrette NOM f s 0.72 2.64 0.02 1.22 +aigrettes aigrette NOM f p 0.72 2.64 0.70 1.42 +aigreur aigreur NOM f s 0.56 4.32 0.21 2.91 +aigreurs aigreur NOM f p 0.56 4.32 0.35 1.42 +aigri aigri ADJ m s 1.06 1.08 0.79 0.54 +aigrie aigri ADJ f s 1.06 1.08 0.24 0.20 +aigries aigri ADJ f p 1.06 1.08 0.02 0.00 +aigrir aigrir VER 0.65 2.09 0.01 0.41 inf; +aigrirent aigrir VER 0.65 2.09 0.00 0.14 ind:pas:3p; +aigris aigri NOM m p 0.40 0.54 0.17 0.20 +aigrissaient aigrir VER 0.65 2.09 0.00 0.14 ind:imp:3p; +aigrissait aigrir VER 0.65 2.09 0.00 0.14 ind:imp:3s; +aigrissent aigrir VER 0.65 2.09 0.00 0.07 ind:pre:3p; +aigrit aigrir VER 0.65 2.09 0.10 0.07 ind:pre:3s;ind:pas:3s; +aigu aigu ADJ m s 4.46 32.09 1.75 11.96 +aiguade aiguade NOM f s 0.00 0.14 0.00 0.14 +aiguail aiguail NOM m s 0.00 0.27 0.00 0.27 +aigue_marine aigue_marine NOM f s 0.00 0.81 0.00 0.47 +aigue aiguer VER 0.17 0.00 0.17 0.00 ind:pre:3s; +aigue_marine aigue_marine NOM f p 0.00 0.81 0.00 0.34 +aiguilla aiguiller VER 1.13 3.24 0.00 0.34 ind:pas:3s; +aiguillage aiguillage NOM m s 0.60 2.16 0.48 1.42 +aiguillages aiguillage NOM m p 0.60 2.16 0.12 0.74 +aiguillant aiguiller VER 1.13 3.24 0.00 0.20 par:pre; +aiguillat aiguillat NOM m s 0.02 0.00 0.02 0.00 +aiguille aiguille NOM f s 14.34 34.19 10.40 18.38 +aiguiller aiguiller VER 1.13 3.24 0.21 0.27 inf; +aiguilles aiguille NOM f p 14.34 34.19 3.94 15.81 +aiguillettes aiguillette NOM f p 0.07 0.20 0.07 0.20 +aiguilleur aiguilleur NOM m s 0.35 0.41 0.29 0.34 +aiguilleurs aiguilleur NOM m p 0.35 0.41 0.06 0.07 +aiguillon aiguillon NOM m s 0.36 2.50 0.35 2.09 +aiguillonnaient aiguillonner VER 0.17 1.55 0.00 0.14 ind:imp:3p; +aiguillonnait aiguillonner VER 0.17 1.55 0.00 0.20 ind:imp:3s; +aiguillonnant aiguillonner VER 0.17 1.55 0.00 0.07 par:pre; +aiguillonnante aiguillonnant ADJ f s 0.00 0.07 0.00 0.07 +aiguillonne aiguillonner VER 0.17 1.55 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aiguillonnent aiguillonner VER 0.17 1.55 0.10 0.07 ind:pre:3p; +aiguillonner aiguillonner VER 0.17 1.55 0.03 0.27 inf; +aiguillonné aiguillonner VER m s 0.17 1.55 0.00 0.34 par:pas; +aiguillonnée aiguillonner VER f s 0.17 1.55 0.00 0.14 par:pas; +aiguillonnées aiguillonner VER f p 0.17 1.55 0.00 0.07 par:pas; +aiguillonnés aiguillonner VER m p 0.17 1.55 0.01 0.20 par:pas; +aiguillons aiguillon NOM m p 0.36 2.50 0.01 0.41 +aiguillé aiguiller VER m s 1.13 3.24 0.22 0.20 par:pas; +aiguillée aiguiller VER f s 1.13 3.24 0.04 0.14 par:pas; +aiguillées aiguiller VER f p 1.13 3.24 0.00 0.14 par:pas; +aiguillés aiguiller VER m p 1.13 3.24 0.03 0.00 par:pas; +aiguisa aiguiser VER 2.62 7.36 0.00 0.20 ind:pas:3s; +aiguisai aiguiser VER 2.62 7.36 0.00 0.07 ind:pas:1s; +aiguisaient aiguiser VER 2.62 7.36 0.00 0.34 ind:imp:3p; +aiguisait aiguiser VER 2.62 7.36 0.01 1.01 ind:imp:3s; +aiguisant aiguiser VER 2.62 7.36 0.01 0.61 par:pre; +aiguisas aiguiser VER 2.62 7.36 0.00 0.07 ind:pas:2s; +aiguise aiguiser VER 2.62 7.36 0.53 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aiguisent aiguiser VER 2.62 7.36 0.23 0.41 ind:pre:3p; +aiguiser aiguiser VER 2.62 7.36 0.84 1.62 inf; +aiguisera aiguiser VER 2.62 7.36 0.01 0.00 ind:fut:3s; +aiguiserai aiguiser VER 2.62 7.36 0.00 0.07 ind:fut:1s; +aiguiseur aiguiseur NOM m s 0.04 0.00 0.04 0.00 +aiguisez aiguiser VER 2.62 7.36 0.25 0.00 imp:pre:2p;ind:pre:2p; +aiguisoir aiguisoir NOM m s 0.01 0.07 0.01 0.07 +aiguisons aiguiser VER 2.62 7.36 0.03 0.00 imp:pre:1p; +aiguisèrent aiguiser VER 2.62 7.36 0.00 0.20 ind:pas:3p; +aiguisé aiguisé ADJ m s 1.47 1.69 0.66 0.34 +aiguisée aiguisé ADJ f s 1.47 1.69 0.39 0.61 +aiguisées aiguisé ADJ f p 1.47 1.69 0.11 0.41 +aiguisés aiguisé ADJ m p 1.47 1.69 0.31 0.34 +aiguière aiguière NOM f s 0.00 0.27 0.00 0.27 +aigus aigu ADJ m p 4.46 32.09 0.31 5.00 +aiguë aigu ADJ f s 4.46 32.09 2.13 11.49 +aiguës aigu ADJ f p 4.46 32.09 0.27 3.65 +ail ail NOM m s 9.14 7.97 9.14 7.97 +aile aile NOM f s 33.45 60.47 15.00 20.47 +aileron aileron NOM m s 0.79 1.49 0.42 0.41 +ailerons aileron NOM m p 0.79 1.49 0.37 1.08 +ailes aile NOM f p 33.45 60.47 18.45 40.00 +ailette ailette NOM f s 0.03 0.54 0.01 0.14 +ailettes ailette NOM f p 0.03 0.54 0.02 0.41 +ailier ailier NOM m s 1.40 1.35 1.35 1.22 +ailiers ailier NOM m p 1.40 1.35 0.05 0.14 +aillais ailler VER 0.20 0.61 0.14 0.00 ind:imp:1s; +aille aller VER 9992.78 2854.93 89.81 36.55 sub:pre:1s;sub:pre:3s; +aillent aller VER 9992.78 2854.93 5.93 4.86 sub:pre:3p; +ailler ailler VER 0.20 0.61 0.01 0.00 inf; +ailles aller VER 9992.78 2854.93 14.98 2.43 sub:pre:2s; +ailleurs ailleurs ADV 128.74 346.35 128.74 346.35 +aillions ailler VER 0.20 0.61 0.03 0.00 ind:imp:1p; +aillons ailler VER 0.20 0.61 0.01 0.00 ind:pre:1p; +aillé ailler VER m s 0.20 0.61 0.01 0.27 par:pas; +aillée ailler VER f s 0.20 0.61 0.00 0.07 par:pas; +aillés ailler VER m p 0.20 0.61 0.00 0.27 par:pas; +ailé ailé ADJ m s 1.19 3.04 0.71 1.42 +ailée ailer VER f s 0.21 0.74 0.16 0.20 par:pas; +ailées ailé ADJ f p 1.19 3.04 0.07 0.27 +ailés ailé ADJ m p 1.19 3.04 0.29 0.54 +aima aimer VER 1655.04 795.61 0.41 1.69 ind:pas:3s; +aimable aimable ADJ s 23.41 29.26 21.98 24.59 +aimablement aimablement ADV 0.52 3.85 0.52 3.85 +aimables aimable ADJ p 23.41 29.26 1.43 4.66 +aimai aimer VER 1655.04 795.61 0.20 0.81 ind:pas:1s; +aimaient aimer VER 1655.04 795.61 6.20 16.42 ind:imp:3p; +aimais aimer VER 1655.04 795.61 58.07 57.16 ind:imp:1s;ind:imp:2s; +aimait aimer VER 1655.04 795.61 49.57 128.72 ind:imp:3s; +aimant aimer VER 1655.04 795.61 2.60 3.92 par:pre; +aimantaient aimanter VER 0.35 2.30 0.00 0.14 ind:imp:3p; +aimantait aimanter VER 0.35 2.30 0.00 0.07 ind:imp:3s; +aimantation aimantation NOM f s 0.00 0.47 0.00 0.47 +aimante aimant ADJ f s 2.86 2.70 1.37 1.42 +aimanter aimanter VER 0.35 2.30 0.02 0.14 inf; +aimantes aimant ADJ f p 2.86 2.70 0.07 0.14 +aimants aimant NOM m p 2.31 2.97 0.61 0.27 +aimanté aimanter VER m s 0.35 2.30 0.14 0.34 par:pas; +aimantée aimanter VER f s 0.35 2.30 0.04 0.54 par:pas; +aimantées aimanter VER f p 0.35 2.30 0.12 0.20 par:pas; +aimantés aimanter VER m p 0.35 2.30 0.02 0.41 par:pas; +aimasse aimer VER 1655.04 795.61 0.02 0.00 sub:imp:1s; +aimassent aimer VER 1655.04 795.61 0.00 0.20 sub:imp:3p; +aimassions aimer VER 1655.04 795.61 0.00 0.07 sub:imp:1p; +aime aimer VER 1655.04 795.61 751.29 257.57 imp:pre:2s;ind:pre:1s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +aiment aimer VER 1655.04 795.61 48.46 26.96 ind:pre:3p;sub:pre:3p; +aimer aimer VER 1655.04 795.61 90.41 84.46 inf;;inf;;inf;;inf;;inf;; +aimera aimer VER 1655.04 795.61 8.10 2.57 ind:fut:3s; +aimerai aimer VER 1655.04 795.61 13.99 2.97 ind:fut:1s; +aimeraient aimer VER 1655.04 795.61 5.08 2.03 cnd:pre:3p; +aimerais aimer VER 1655.04 795.61 227.66 36.01 cnd:pre:1s;cnd:pre:2s; +aimerait aimer VER 1655.04 795.61 21.70 12.43 cnd:pre:3s; +aimeras aimer VER 1655.04 795.61 4.30 1.28 ind:fut:2s; +aimerez aimer VER 1655.04 795.61 2.71 1.01 ind:fut:2p; +aimeriez aimer VER 1655.04 795.61 8.88 0.88 cnd:pre:2p; +aimerions aimer VER 1655.04 795.61 7.21 1.01 cnd:pre:1p; +aimerons aimer VER 1655.04 795.61 0.46 0.27 ind:fut:1p; +aimeront aimer VER 1655.04 795.61 1.32 0.34 ind:fut:3p; +aimes aimer VER 1655.04 795.61 170.38 25.61 ind:pre:2s;sub:pre:2s; +aimeuse aimeur NOM f s 0.00 0.07 0.00 0.07 +aimez aimer VER 1655.04 795.61 62.25 18.38 imp:pre:2p;ind:pre:2p; +aimiez aimer VER 1655.04 795.61 6.92 2.64 ind:imp:2p;sub:pre:2p; +aimions aimer VER 1655.04 795.61 2.03 6.55 ind:imp:1p;sub:pre:1p; +aimâmes aimer VER 1655.04 795.61 0.00 0.14 ind:pas:1p; +aimons aimer VER 1655.04 795.61 11.58 6.22 imp:pre:1p;ind:pre:1p; +aimât aimer VER 1655.04 795.61 0.10 2.03 sub:imp:3s; +aimâtes aimer VER 1655.04 795.61 0.03 0.00 ind:pas:2p; +aimèrent aimer VER 1655.04 795.61 0.16 0.47 ind:pas:3p; +aimé aimer VER m s 1655.04 795.61 75.92 71.96 par:pas; +aimée aimer VER f s 1655.04 795.61 12.66 14.80 par:pas; +aimées aimer VER f p 1655.04 795.61 0.43 1.62 par:pas; +aimés aimer VER m p 1655.04 795.61 3.94 6.42 par:pas; +aine aine NOM f s 0.64 2.77 0.64 2.64 +aines aine NOM f p 0.64 2.77 0.00 0.14 +ains ains CON 0.02 0.00 0.02 0.00 +ainsi ainsi ADV 207.68 469.46 207.68 469.46 +air_air air_air ADJ m 0.09 0.00 0.09 0.00 +air_mer air_mer ADJ 0.02 0.00 0.02 0.00 +air_sol air_sol ADJ m p 0.13 0.00 0.13 0.00 +air_bag air_bag NOM m s 0.02 0.00 0.02 0.00 +air air NOM m s 485.18 690.81 473.50 661.01 +airain airain NOM m s 0.17 1.69 0.17 1.69 +airbag airbag NOM m s 1.11 0.00 0.44 0.00 +airbags airbag NOM m p 1.11 0.00 0.67 0.00 +airbus airbus NOM m 0.01 0.00 0.01 0.00 +aire aire NOM f s 5.54 5.14 4.55 4.46 +airedale airedale NOM m s 0.01 0.00 0.01 0.00 +airelle airelle NOM f s 1.12 0.41 0.08 0.07 +airelles airelle NOM f p 1.12 0.41 1.04 0.34 +aires aire NOM f p 5.54 5.14 0.99 0.68 +airs air NOM m p 485.18 690.81 11.68 29.80 +ais ais NOM m 10.14 0.47 10.14 0.47 +aisance aisance NOM f s 1.50 15.41 1.44 15.20 +aisances aisance NOM f p 1.50 15.41 0.06 0.20 +aise aise NOM f s 32.73 52.64 31.64 50.81 +aises aise NOM f p 32.73 52.64 1.09 1.82 +aisseau aisseau NOM m s 0.01 0.00 0.01 0.00 +aisselle aisselle NOM f s 1.29 8.99 0.54 3.72 +aisselles aisselle NOM f p 1.29 8.99 0.75 5.27 +aisé aisé ADJ m s 3.03 7.77 1.44 3.11 +aisée aisé ADJ f s 3.03 7.77 1.04 2.91 +aisées aisé ADJ f p 3.03 7.77 0.22 0.68 +aisément aisément ADV 2.51 11.69 2.51 11.69 +aisés aisé ADJ m p 3.03 7.77 0.33 1.08 +ait avoir AUX 18559.23 12800.81 95.36 99.53 sub:pre:3s; +aixois aixois NOM m 0.00 0.14 0.00 0.14 +ajaccienne ajaccienne NOM f s 0.00 0.07 0.00 0.07 +ajax ajax NOM m s 0.00 0.07 0.00 0.07 +ajistes ajiste ADJ f p 0.00 0.07 0.00 0.07 +ajointer ajointer VER 0.00 0.20 0.00 0.07 inf; +ajointée ajointer VER f s 0.00 0.20 0.00 0.14 par:pas; +ajonc ajonc NOM m s 0.00 1.69 0.00 0.20 +ajoncs ajonc NOM m p 0.00 1.69 0.00 1.49 +ajouraient ajourer VER 0.00 1.42 0.00 0.07 ind:imp:3p; +ajourait ajourer VER 0.00 1.42 0.00 0.14 ind:imp:3s; +ajourant ajourer VER 0.00 1.42 0.00 0.14 par:pre; +ajourna ajourner VER 1.48 0.88 0.00 0.07 ind:pas:3s; +ajournait ajourner VER 1.48 0.88 0.00 0.07 ind:imp:3s; +ajourne ajourner VER 1.48 0.88 0.19 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ajournement ajournement NOM m s 0.47 0.14 0.45 0.07 +ajournements ajournement NOM m p 0.47 0.14 0.02 0.07 +ajourner ajourner VER 1.48 0.88 0.28 0.47 inf; +ajournez ajourner VER 1.48 0.88 0.01 0.00 imp:pre:2p; +ajourné ajourner VER m s 1.48 0.88 0.27 0.14 par:pas; +ajournée ajourner VER f s 1.48 0.88 0.71 0.14 par:pas; +ajournés ajourner VER m p 1.48 0.88 0.01 0.00 par:pas; +ajours ajour NOM m p 0.00 0.14 0.00 0.14 +ajouré ajouré ADJ m s 0.02 2.70 0.00 0.81 +ajourée ajouré ADJ f s 0.02 2.70 0.00 0.81 +ajourées ajouré ADJ f p 0.02 2.70 0.02 0.68 +ajourés ajouré ADJ m p 0.02 2.70 0.00 0.41 +ajout ajout NOM m s 0.94 0.47 0.73 0.20 +ajouta ajouter VER 38.88 224.66 0.39 85.00 ind:pas:3s; +ajoutai ajouter VER 38.88 224.66 0.04 5.34 ind:pas:1s; +ajoutaient ajouter VER 38.88 224.66 0.09 4.26 ind:imp:3p; +ajoutais ajouter VER 38.88 224.66 0.19 1.42 ind:imp:1s;ind:imp:2s; +ajoutait ajouter VER 38.88 224.66 0.35 22.57 ind:imp:3s; +ajoutant ajouter VER 38.88 224.66 0.63 11.08 par:pre; +ajoutassent ajouter VER 38.88 224.66 0.00 0.07 sub:imp:3p; +ajoute ajouter VER 38.88 224.66 8.34 29.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ajoutent ajouter VER 38.88 224.66 0.79 1.89 ind:pre:3p; +ajouter ajouter VER 38.88 224.66 15.45 33.85 imp:pre:2p;inf; +ajoutera ajouter VER 38.88 224.66 0.50 0.68 ind:fut:3s; +ajouterai ajouter VER 38.88 224.66 1.09 1.22 ind:fut:1s; +ajouteraient ajouter VER 38.88 224.66 0.00 0.27 cnd:pre:3p; +ajouterais ajouter VER 38.88 224.66 0.65 0.41 cnd:pre:1s;cnd:pre:2s; +ajouterait ajouter VER 38.88 224.66 0.27 0.74 cnd:pre:3s; +ajouteras ajouter VER 38.88 224.66 0.01 0.00 ind:fut:2s; +ajouterez ajouter VER 38.88 224.66 0.02 0.41 ind:fut:2p; +ajouterons ajouter VER 38.88 224.66 0.08 0.00 ind:fut:1p; +ajouteront ajouter VER 38.88 224.66 0.03 0.41 ind:fut:3p; +ajoutes ajouter VER 38.88 224.66 0.70 0.61 ind:pre:2s; +ajoutez ajouter VER 38.88 224.66 3.09 2.30 imp:pre:2p;ind:pre:2p; +ajoutiez ajouter VER 38.88 224.66 0.03 0.14 ind:imp:2p; +ajoutions ajouter VER 38.88 224.66 0.14 0.14 ind:imp:1p; +ajoutons ajouter VER 38.88 224.66 0.57 0.68 imp:pre:1p;ind:pre:1p; +ajoutât ajouter VER 38.88 224.66 0.00 0.27 sub:imp:3s; +ajouts ajout NOM m p 0.94 0.47 0.21 0.27 +ajoutèrent ajouter VER 38.88 224.66 0.27 0.68 ind:pas:3p; +ajouté ajouter VER m s 38.88 224.66 4.42 18.99 imp:pre:2s;par:pas;par:pas; +ajoutée ajouter VER f s 38.88 224.66 0.43 0.95 par:pas; +ajoutées ajouter VER f p 38.88 224.66 0.15 0.74 par:pas; +ajoutés ajouter VER m p 38.88 224.66 0.17 0.41 par:pas; +ajusta ajuster VER 4.88 10.41 0.01 2.50 ind:pas:3s; +ajustable ajustable ADJ s 0.07 0.07 0.07 0.07 +ajustables ajustable ADJ p 0.07 0.07 0.01 0.00 +ajustage ajustage NOM m s 0.01 0.14 0.01 0.14 +ajustaient ajuster VER 4.88 10.41 0.02 0.07 ind:imp:3p; +ajustais ajuster VER 4.88 10.41 0.02 0.00 ind:imp:1s;ind:imp:2s; +ajustait ajuster VER 4.88 10.41 0.02 0.81 ind:imp:3s; +ajustant ajuster VER 4.88 10.41 0.08 1.01 par:pre; +ajuste ajuster VER 4.88 10.41 1.68 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ajustement ajustement NOM m s 0.85 0.88 0.40 0.61 +ajustements ajustement NOM m p 0.85 0.88 0.46 0.27 +ajustent ajuster VER 4.88 10.41 0.10 0.27 ind:pre:3p; +ajuster ajuster VER 4.88 10.41 1.77 1.76 inf; +ajusterai ajuster VER 4.88 10.41 0.01 0.07 ind:fut:1s; +ajusteur ajusteur NOM m s 0.62 0.61 0.62 0.54 +ajusteurs ajusteur NOM m p 0.62 0.61 0.00 0.07 +ajustez ajuster VER 4.88 10.41 0.43 0.00 imp:pre:2p;ind:pre:2p; +ajustons ajuster VER 4.88 10.41 0.04 0.07 imp:pre:1p;ind:pre:1p; +ajustèrent ajuster VER 4.88 10.41 0.00 0.07 ind:pas:3p; +ajusté ajusté ADJ m s 0.42 3.24 0.28 1.22 +ajustée ajusté ADJ f s 0.42 3.24 0.04 1.08 +ajustées ajuster VER f p 4.88 10.41 0.15 0.34 par:pas; +ajusture ajusture NOM f s 0.00 0.07 0.00 0.07 +ajustés ajuster VER m p 4.88 10.41 0.28 0.41 par:pas; +ajutage ajutage NOM m s 0.10 0.00 0.10 0.00 +akkadien akkadien NOM m s 0.03 0.00 0.03 0.00 +akkadienne akkadienne ADJ f s 0.01 0.00 0.01 0.00 +ako ako NOM m s 0.08 0.00 0.08 0.00 +akvavit akvavit NOM m s 0.01 0.20 0.01 0.20 +al_dente al_dente ADV 0.40 0.14 0.40 0.14 +alabandines alabandine NOM f p 0.00 0.07 0.00 0.07 +alacrité alacrité NOM f s 0.01 0.61 0.01 0.61 +alain alain NOM s 0.14 0.00 0.14 0.00 +alaire alaire ADJ s 0.14 0.00 0.14 0.00 +alaise alaise NOM f s 0.02 0.07 0.02 0.07 +alambic alambic NOM m s 0.70 1.22 0.65 1.08 +alambics alambic NOM m p 0.70 1.22 0.05 0.14 +alambiqué alambiquer VER m s 0.04 0.00 0.02 0.00 par:pas; +alambiquée alambiqué ADJ f s 0.09 0.14 0.01 0.00 +alambiquées alambiqué ADJ f p 0.09 0.14 0.04 0.07 +alambiqués alambiqué ADJ m p 0.09 0.14 0.03 0.07 +alangui alangui ADJ m s 0.04 2.30 0.02 0.95 +alanguie alanguir VER f s 0.13 1.89 0.12 0.34 par:pas; +alanguies alangui ADJ f p 0.04 2.30 0.00 0.20 +alanguir alanguir VER 0.13 1.89 0.00 0.20 inf; +alanguis alangui ADJ m p 0.04 2.30 0.00 0.27 +alanguissaient alanguir VER 0.13 1.89 0.00 0.14 ind:imp:3p; +alanguissait alanguir VER 0.13 1.89 0.01 0.20 ind:imp:3s; +alanguissant alanguir VER 0.13 1.89 0.00 0.14 par:pre; +alanguissante alanguissant ADJ f s 0.00 0.07 0.00 0.07 +alanguissement alanguissement NOM m s 0.00 0.47 0.00 0.34 +alanguissements alanguissement NOM m p 0.00 0.47 0.00 0.14 +alanguissent alanguir VER 0.13 1.89 0.00 0.07 ind:pre:3p; +alanguit alanguir VER 0.13 1.89 0.00 0.34 ind:pre:3s;ind:pas:3s; +alarma alarmer VER 2.45 6.28 0.14 0.81 ind:pas:3s; +alarmai alarmer VER 2.45 6.28 0.00 0.07 ind:pas:1s; +alarmaient alarmer VER 2.45 6.28 0.00 0.07 ind:imp:3p; +alarmait alarmer VER 2.45 6.28 0.00 1.08 ind:imp:3s; +alarmant alarmant ADJ m s 1.54 2.84 1.12 0.81 +alarmante alarmant ADJ f s 1.54 2.84 0.22 0.68 +alarmantes alarmant ADJ f p 1.54 2.84 0.16 0.54 +alarmants alarmant ADJ m p 1.54 2.84 0.03 0.81 +alarme alarme NOM f s 19.29 7.84 16.71 6.35 +alarmer alarmer VER 2.45 6.28 1.19 1.22 inf; +alarmeraient alarmer VER 2.45 6.28 0.01 0.00 cnd:pre:3p; +alarmerait alarmer VER 2.45 6.28 0.02 0.07 cnd:pre:3s; +alarmes alarme NOM f p 19.29 7.84 2.58 1.49 +alarmez alarmer VER 2.45 6.28 0.41 0.07 imp:pre:2p;ind:pre:2p; +alarmisme alarmisme NOM m s 0.00 0.07 0.00 0.07 +alarmiste alarmiste ADJ f s 0.24 0.27 0.19 0.00 +alarmistes alarmiste ADJ p 0.24 0.27 0.04 0.27 +alarmé alarmer VER m s 2.45 6.28 0.14 1.15 par:pas; +alarmée alarmer VER f s 2.45 6.28 0.13 0.54 par:pas; +alarmées alarmer VER f p 2.45 6.28 0.00 0.20 par:pas; +alarmés alarmer VER m p 2.45 6.28 0.03 0.41 par:pas; +alba alba NOM f s 0.00 0.20 0.00 0.20 +albacore albacore NOM m s 0.09 0.00 0.09 0.00 +albanais albanais ADJ m 0.68 1.28 0.39 0.74 +albanaise albanais ADJ f s 0.68 1.28 0.28 0.47 +albanaises albanais ADJ f p 0.68 1.28 0.00 0.07 +albanophone albanophone ADJ m s 0.01 0.00 0.01 0.00 +albatros albatros NOM m 2.01 1.15 2.01 1.15 +albe albe NOM m s 0.01 0.00 0.01 0.00 +albertine albertine NOM f s 0.00 0.07 0.00 0.07 +albigeois albigeois ADJ m 0.00 0.14 0.00 0.14 +albigeois albigeois NOM m 0.00 0.14 0.00 0.14 +albinisme albinisme NOM m s 0.02 0.00 0.02 0.00 +albinos albinos ADJ 0.47 0.74 0.47 0.74 +alboche alboche NOM s 0.00 0.07 0.00 0.07 +albâtre albâtre NOM m s 0.57 3.11 0.57 2.97 +albâtres albâtre NOM m p 0.57 3.11 0.00 0.14 +albène albène NOM m s 0.00 0.07 0.00 0.07 +albugo albugo NOM m s 0.00 0.07 0.00 0.07 +album album NOM m s 11.29 18.38 9.36 13.31 +albumine albumine NOM f s 0.19 0.14 0.17 0.14 +albumines albumine NOM f p 0.19 0.14 0.02 0.00 +albumineuse albumineux ADJ f s 0.00 0.14 0.00 0.14 +albums album NOM m p 11.29 18.38 1.93 5.07 +alcôve alcôve NOM f s 0.84 4.59 0.79 4.32 +alcôves alcôve NOM f p 0.84 4.59 0.05 0.27 +alcade alcade NOM m s 0.30 0.20 0.30 0.20 +alcalde alcalde NOM m s 0.05 0.00 0.05 0.00 +alcali alcali NOM m s 0.11 0.27 0.08 0.27 +alcalin alcalin ADJ m s 0.24 0.14 0.09 0.07 +alcaline alcalin ADJ f s 0.24 0.14 0.08 0.00 +alcalines alcalin ADJ f p 0.24 0.14 0.03 0.00 +alcaliniser alcaliniser VER 0.02 0.00 0.02 0.00 inf; +alcalinité alcalinité NOM f s 0.03 0.00 0.03 0.00 +alcalins alcalin ADJ m p 0.24 0.14 0.04 0.07 +alcalis alcali NOM m p 0.11 0.27 0.03 0.00 +alcaloïde alcaloïde NOM m s 0.16 0.00 0.16 0.00 +alcalose alcalose NOM f s 0.02 0.00 0.02 0.00 +alcatraz alcatraz NOM m 1.09 0.20 1.09 0.20 +alcazar alcazar NOM m s 0.53 1.69 0.53 1.69 +alchimie alchimie NOM f s 1.05 1.96 0.95 1.82 +alchimies alchimie NOM f p 1.05 1.96 0.10 0.14 +alchimique alchimique ADJ s 0.02 1.15 0.02 0.81 +alchimiques alchimique ADJ f p 0.02 1.15 0.00 0.34 +alchimiste alchimiste NOM s 2.87 2.84 2.65 2.16 +alchimistes alchimiste NOM p 2.87 2.84 0.22 0.68 +alcibiade alcibiade NOM m s 0.01 0.00 0.01 0.00 +alcool alcool NOM m s 41.30 42.84 40.29 39.73 +alcoolique alcoolique ADJ s 3.73 2.16 3.54 1.55 +alcooliques alcoolique NOM p 4.12 1.55 1.37 0.61 +alcoolise alcooliser VER 0.33 0.34 0.00 0.07 ind:pre:3s; +alcoolisme alcoolisme NOM m s 1.84 0.95 1.84 0.95 +alcoolisé alcoolisé ADJ m s 0.60 1.55 0.31 0.47 +alcoolisée alcoolisé ADJ f s 0.60 1.55 0.04 0.20 +alcoolisées alcoolisé ADJ f p 0.60 1.55 0.23 0.68 +alcoolisés alcoolisé ADJ m p 0.60 1.55 0.01 0.20 +alcoolo alcoolo ADJ s 1.16 0.47 1.08 0.27 +alcoolos alcoolo NOM p 1.40 0.88 0.41 0.20 +alcools alcool NOM m p 41.30 42.84 1.00 3.11 +alcoolémie alcoolémie NOM f s 0.58 0.20 0.58 0.20 +alcoomètre alcoomètre NOM m s 0.00 0.07 0.00 0.07 +alcootest alcootest NOM m s 0.31 0.20 0.31 0.20 +alcoran alcoran NOM m s 0.00 0.07 0.00 0.07 +alcées alcée NOM f p 0.00 0.07 0.00 0.07 +alcyon alcyon NOM m s 0.13 0.74 0.13 0.61 +alcyons alcyon NOM m p 0.13 0.74 0.00 0.14 +alde alde NOM m s 0.22 0.00 0.22 0.00 +alderman alderman NOM m s 0.14 0.00 0.14 0.00 +aldol aldol NOM m s 0.05 0.00 0.05 0.00 +aldéhyde aldéhyde NOM m s 0.01 0.07 0.01 0.07 +ale ale NOM f s 2.10 0.14 2.10 0.14 +alea_jacta_est alea_jacta_est ADV 0.30 0.07 0.30 0.07 +alençonnais alençonnais ADJ m s 0.00 0.27 0.00 0.07 +alençonnaise alençonnais ADJ f s 0.00 0.27 0.00 0.20 +alenti alentir VER m s 0.00 0.47 0.00 0.14 par:pas; +alentie alentir VER f s 0.00 0.47 0.00 0.07 par:pas; +alenties alentir VER f p 0.00 0.47 0.00 0.07 par:pas; +alentis alentir VER m p 0.00 0.47 0.00 0.20 ind:pre:1s;par:pas; +alentour alentour ADV 1.63 8.92 1.63 8.92 +alentours alentour NOM m p 4.77 9.12 4.77 9.12 +aleph aleph NOM m 0.05 0.41 0.05 0.41 +alerta alerter VER 6.40 12.91 0.04 0.88 ind:pas:3s; +alertait alerter VER 6.40 12.91 0.03 0.61 ind:imp:3s; +alertant alerter VER 6.40 12.91 0.17 0.14 par:pre; +alerte alerte ONO 5.41 0.81 5.41 0.81 +alertement alertement ADV 0.00 0.27 0.00 0.27 +alertent alerter VER 6.40 12.91 0.06 0.00 ind:pre:3p; +alerter alerter VER 6.40 12.91 1.61 2.91 inf; +alertera alerter VER 6.40 12.91 0.12 0.00 ind:fut:3s; +alerterai alerter VER 6.40 12.91 0.20 0.00 ind:fut:1s; +alerterais alerter VER 6.40 12.91 0.02 0.00 cnd:pre:1s; +alerterait alerter VER 6.40 12.91 0.05 0.27 cnd:pre:3s; +alerterez alerter VER 6.40 12.91 0.01 0.00 ind:fut:2p; +alerteront alerter VER 6.40 12.91 0.14 0.00 ind:fut:3p; +alertes alerte NOM f p 13.45 13.11 0.78 2.64 +alertez alerter VER 6.40 12.91 1.13 0.07 imp:pre:2p;ind:pre:2p; +alertions alerter VER 6.40 12.91 0.00 0.07 ind:imp:1p; +alertons alerter VER 6.40 12.91 0.09 0.00 imp:pre:1p;ind:pre:1p; +alertât alerter VER 6.40 12.91 0.00 0.07 sub:imp:3s; +alertèrent alerter VER 6.40 12.91 0.01 0.14 ind:pas:3p; +alerté alerter VER m s 6.40 12.91 0.90 3.65 par:pas; +alertée alerter VER f s 6.40 12.91 0.25 1.22 par:pas; +alertées alerter VER f p 6.40 12.91 0.01 0.14 par:pas; +alertés alerter VER m p 6.40 12.91 0.34 1.62 par:pas; +alevin alevin NOM m s 0.02 0.68 0.01 0.07 +alevins alevin NOM m p 0.02 0.68 0.01 0.61 +alexandra alexandra NOM m s 0.51 0.47 0.51 0.47 +alexandrin alexandrin NOM m s 0.82 1.89 0.54 0.41 +alexandrine alexandrin ADJ f s 0.37 0.14 0.00 0.07 +alexandrines alexandrin ADJ f p 0.37 0.14 0.10 0.00 +alexandrins alexandrin NOM m p 0.82 1.89 0.29 1.49 +alexie alexie NOM f s 0.01 0.00 0.01 0.00 +alexithymie alexithymie NOM m s 0.03 0.00 0.03 0.00 +alezan alezan NOM m s 0.12 1.35 0.11 1.01 +alezane alezan ADJ f s 0.04 2.36 0.02 1.82 +alezanes alezan ADJ f p 0.04 2.36 0.00 0.07 +alezans alezan NOM m p 0.12 1.35 0.01 0.34 +alfa alfa NOM m s 0.10 1.01 0.10 0.88 +alfas alfa NOM m p 0.10 1.01 0.00 0.14 +alfénides alfénide NOM m p 0.00 0.07 0.00 0.07 +algarade algarade NOM f s 0.02 1.96 0.02 1.62 +algarades algarade NOM f p 0.02 1.96 0.00 0.34 +algie algie NOM f s 0.27 0.00 0.27 0.00 +algonquin algonquin NOM m s 0.09 0.54 0.09 0.47 +algonquines algonquin NOM f p 0.09 0.54 0.00 0.07 +algorithme algorithme NOM m s 0.72 0.00 0.51 0.00 +algorithmes algorithme NOM m p 0.72 0.00 0.21 0.00 +algorithmique algorithmique ADJ s 0.13 0.07 0.13 0.07 +algèbre algèbre NOM f s 1.37 2.03 1.37 2.03 +algébrique algébrique ADJ s 0.14 0.54 0.11 0.27 +algébriquement algébriquement ADV 0.00 0.07 0.00 0.07 +algébriques algébrique ADJ p 0.14 0.54 0.03 0.27 +algébriste algébriste NOM s 0.00 0.14 0.00 0.07 +algébristes algébriste NOM p 0.00 0.14 0.00 0.07 +algue algue NOM f s 2.66 12.03 0.29 1.62 +algues algue NOM f p 2.66 12.03 2.36 10.41 +algérien algérien ADJ m s 0.83 7.43 0.46 3.18 +algérienne algérien ADJ f s 0.83 7.43 0.25 2.03 +algériennes algérien ADJ f p 0.83 7.43 0.01 0.74 +algériens algérien NOM m p 0.79 5.81 0.34 2.91 +algérois algérois ADJ m 0.00 0.74 0.00 0.61 +algéroise algérois ADJ f s 0.00 0.74 0.00 0.14 +alhambra alhambra NOM f s 0.00 1.76 0.00 1.76 +alias alias ADV 5.45 3.85 5.45 3.85 +alibi alibi NOM m s 11.13 6.82 10.28 5.47 +alibis alibi NOM m p 11.13 6.82 0.85 1.35 +alidade alidade NOM f s 0.00 0.07 0.00 0.07 +aligna aligner VER 7.80 26.69 0.00 0.61 ind:pas:3s; +alignaient aligner VER 7.80 26.69 0.05 5.07 ind:imp:3p; +alignais aligner VER 7.80 26.69 0.11 0.27 ind:imp:1s;ind:imp:2s; +alignait aligner VER 7.80 26.69 0.06 1.89 ind:imp:3s; +alignant aligner VER 7.80 26.69 0.08 0.41 par:pre; +aligne aligner VER 7.80 26.69 1.48 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alignement alignement NOM m s 1.68 5.14 1.66 4.12 +alignements alignement NOM m p 1.68 5.14 0.02 1.01 +alignent aligner VER 7.80 26.69 0.46 2.30 ind:pre:3p; +aligner aligner VER 7.80 26.69 1.61 3.78 inf; +alignera aligner VER 7.80 26.69 0.03 0.07 ind:fut:3s; +aligneraient aligner VER 7.80 26.69 0.02 0.07 cnd:pre:3p; +alignerez aligner VER 7.80 26.69 0.02 0.00 ind:fut:2p; +alignerons aligner VER 7.80 26.69 0.02 0.00 ind:fut:1p; +aligneront aligner VER 7.80 26.69 0.19 0.07 ind:fut:3p; +alignes aligner VER 7.80 26.69 0.19 0.20 ind:pre:2s; +alignez aligner VER 7.80 26.69 1.39 0.07 imp:pre:2p;ind:pre:2p; +alignons aligner VER 7.80 26.69 0.12 0.07 imp:pre:1p;ind:pre:1p; +alignèrent aligner VER 7.80 26.69 0.00 0.27 ind:pas:3p; +aligné aligner VER m s 7.80 26.69 0.47 0.88 par:pas; +alignée aligner VER f s 7.80 26.69 0.19 0.61 par:pas; +alignées aligner VER f p 7.80 26.69 0.48 3.58 par:pas; +alignés aligner VER m p 7.80 26.69 0.84 5.20 par:pas; +aligot aligot NOM m s 0.03 0.00 0.03 0.00 +aligoté aligoté ADJ m s 0.00 0.20 0.00 0.20 +aligoté aligoté NOM m s 0.00 0.20 0.00 0.20 +alim alim NOM f s 0.21 0.00 0.21 0.00 +aliment aliment NOM m s 4.67 6.62 1.11 1.76 +alimenta alimenter VER 6.24 8.92 0.00 0.20 ind:pas:3s; +alimentaient alimenter VER 6.24 8.92 0.02 0.95 ind:imp:3p; +alimentaire alimentaire ADJ s 5.85 4.80 4.50 2.57 +alimentaires alimentaire ADJ p 5.85 4.80 1.35 2.23 +alimentais alimenter VER 6.24 8.92 0.01 0.07 ind:imp:1s; +alimentait alimenter VER 6.24 8.92 0.31 1.01 ind:imp:3s; +alimentant alimenter VER 6.24 8.92 0.23 0.07 par:pre; +alimentation alimentation NOM f s 5.64 4.19 5.59 4.19 +alimentations alimentation NOM f p 5.64 4.19 0.05 0.00 +alimente alimenter VER 6.24 8.92 1.32 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alimentent alimenter VER 6.24 8.92 0.20 0.54 ind:pre:3p; +alimenter alimenter VER 6.24 8.92 2.62 3.85 inf; +alimentera alimenter VER 6.24 8.92 0.17 0.14 ind:fut:3s; +alimentez alimenter VER 6.24 8.92 0.08 0.00 imp:pre:2p;ind:pre:2p; +alimentons alimenter VER 6.24 8.92 0.04 0.00 imp:pre:1p;ind:pre:1p; +aliments aliment NOM m p 4.67 6.62 3.56 4.86 +alimentèrent alimenter VER 6.24 8.92 0.00 0.07 ind:pas:3p; +alimenté alimenter VER m s 6.24 8.92 0.82 0.27 par:pas; +alimentée alimenter VER f s 6.24 8.92 0.20 0.81 par:pas; +alimentées alimenter VER f p 6.24 8.92 0.03 0.20 par:pas; +alimentés alimenter VER m p 6.24 8.92 0.19 0.20 par:pas; +alinéa alinéa NOM m s 0.75 0.68 0.73 0.47 +alinéas alinéa NOM m p 0.75 0.68 0.01 0.20 +alise alise NOM f s 0.05 0.07 0.01 0.00 +alises alise NOM f p 0.05 0.07 0.04 0.07 +alisier alisier NOM m s 0.00 0.07 0.00 0.07 +alita aliter VER 0.90 1.49 0.01 0.27 ind:pas:3s; +alitai aliter VER 0.90 1.49 0.00 0.07 ind:pas:1s; +alitait aliter VER 0.90 1.49 0.00 0.07 ind:imp:3s; +alitement alitement NOM m s 0.01 0.00 0.01 0.00 +aliter aliter VER 0.90 1.49 0.02 0.20 inf; +aliène aliéner VER 0.49 2.23 0.19 0.00 ind:pre:1s;ind:pre:3s; +alité aliter VER m s 0.90 1.49 0.55 0.41 par:pas; +alitée aliter VER f s 0.90 1.49 0.32 0.34 par:pas; +alitées aliter VER f p 0.90 1.49 0.00 0.14 par:pas; +aliéna aliéner VER 0.49 2.23 0.00 0.74 ind:pas:3s; +aliénant aliénant ADJ m s 0.14 1.22 0.14 0.14 +aliénante aliénant ADJ f s 0.14 1.22 0.00 1.08 +aliénation aliénation NOM f s 1.19 1.49 1.19 1.49 +aliéner aliéner VER 0.49 2.23 0.12 0.54 inf; +aliénerait aliéner VER 0.49 2.23 0.00 0.07 cnd:pre:3s; +aliénerez aliéner VER 0.49 2.23 0.01 0.00 ind:fut:2p; +aliéniez aliéner VER 0.49 2.23 0.01 0.00 ind:imp:2p; +aliéniste aliéniste NOM s 0.05 0.00 0.05 0.00 +aliénât aliéner VER 0.49 2.23 0.00 0.07 sub:imp:3s; +aliéné aliéné NOM m s 2.28 0.61 0.54 0.14 +aliénée aliéné NOM f s 2.28 0.61 0.19 0.00 +aliénées aliéner VER f p 0.49 2.23 0.00 0.07 par:pas; +aliénés aliéné NOM m p 2.28 0.61 1.56 0.47 +alizé alizé NOM m s 0.33 0.68 0.10 0.41 +alizés alizé NOM m p 0.33 0.68 0.22 0.27 +alkali alkali NOM m s 0.06 0.00 0.06 0.00 +all_right all_right ADV 1.53 0.20 1.53 0.20 +allô allô ONO 116.05 14.32 116.05 14.32 +alla aller VER 9992.78 2854.93 4.67 67.57 ind:pas:3s; +allai aller VER 9992.78 2854.93 1.12 18.92 ind:pas:1s; +allaient aller VER 9992.78 2854.93 16.55 80.88 ind:imp:3p; +allais aller VER 9992.78 2854.93 108.69 91.01 ind:imp:1s;ind:imp:2s; +allait aller VER 9992.78 2854.93 132.04 370.61 ind:imp:3s; +allaitais allaiter VER 1.73 1.55 0.14 0.00 ind:imp:1s; +allaitait allaiter VER 1.73 1.55 0.16 0.20 ind:imp:3s; +allaitant allaiter VER 1.73 1.55 0.01 0.14 par:pre; +allaitante allaitant ADJ f s 0.03 0.14 0.01 0.00 +allaitantes allaitant ADJ f p 0.03 0.14 0.01 0.07 +allaite allaiter VER 1.73 1.55 0.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allaitement allaitement NOM m s 0.29 0.14 0.29 0.14 +allaitent allaiter VER 1.73 1.55 0.01 0.14 ind:pre:3p; +allaiter allaiter VER 1.73 1.55 0.60 0.61 inf; +allaiterait allaiter VER 1.73 1.55 0.00 0.07 cnd:pre:3s; +allaité allaiter VER m s 1.73 1.55 0.16 0.14 par:pas; +allaitée allaiter VER f s 1.73 1.55 0.12 0.00 par:pas; +allaités allaiter VER m p 1.73 1.55 0.00 0.20 par:pas; +allant aller VER 9992.78 2854.93 8.11 24.39 par:pre; +allante allant ADJ f s 0.86 4.19 0.10 0.00 +allas aller VER 9992.78 2854.93 0.00 0.07 ind:pas:2s; +allassent aller VER 9992.78 2854.93 0.00 0.20 sub:imp:3p; +allegretto allegretto ADV 0.00 0.27 0.00 0.27 +allegro allegro ADV 0.11 0.47 0.11 0.47 +allemagne allemagne NOM f s 0.08 0.27 0.08 0.27 +allemand allemand ADJ m s 41.32 86.55 19.91 27.97 +allemande allemand ADJ f s 41.32 86.55 10.82 25.34 +allemandes allemand ADJ f p 41.32 86.55 2.69 12.97 +allemands allemand NOM m p 49.08 91.55 30.66 61.42 +aller_retour aller_retour NOM m s 2.33 2.43 1.83 2.36 +aller aller VER 9992.78 2854.93 816.76 368.04 inf;;inf;;inf;; +allergie allergie NOM f s 5.00 0.61 3.12 0.61 +allergies allergie NOM f p 5.00 0.61 1.88 0.00 +allergique allergique ADJ s 8.15 0.74 7.76 0.61 +allergiques allergique ADJ p 8.15 0.74 0.39 0.14 +allergologie allergologie NOM f s 0.14 0.00 0.14 0.00 +allergologue allergologue NOM s 0.03 0.00 0.03 0.00 +allergène allergène NOM m s 0.08 0.00 0.04 0.00 +allergènes allergène NOM m p 0.08 0.00 0.04 0.00 +aller_retour aller_retour NOM m p 2.33 2.43 0.50 0.07 +allers aller NOM m p 17.78 8.78 0.56 0.68 +allez aller VER 9992.78 2854.93 1414.85 155.54 imp:pre:2p;ind:pre:2p; +allia allier VER 4.62 7.97 0.01 0.14 ind:pas:3s; +alliacé alliacé ADJ m s 0.00 0.14 0.00 0.14 +alliage alliage NOM m s 1.07 1.01 0.81 0.95 +alliages alliage NOM m p 1.07 1.01 0.27 0.07 +alliait allier VER 4.62 7.97 0.01 0.81 ind:imp:3s; +alliance alliance NOM f s 18.85 24.73 16.73 20.81 +alliances alliance NOM f p 18.85 24.73 2.12 3.92 +alliant allier VER 4.62 7.97 0.25 0.27 par:pre; +allie allier VER 4.62 7.97 1.15 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allient allier VER 4.62 7.97 0.34 0.07 ind:pre:3p; +allier allier VER 4.62 7.97 1.14 0.88 inf; +alliera allier VER 4.62 7.97 0.02 0.00 ind:fut:3s; +allierait allier VER 4.62 7.97 0.02 0.00 cnd:pre:3s; +alliez aller VER 9992.78 2854.93 16.49 3.31 ind:imp:2p; +alligator alligator NOM m s 2.80 0.47 1.63 0.20 +alligators alligator NOM m p 2.80 0.47 1.17 0.27 +allions aller VER 9992.78 2854.93 8.62 23.65 ind:imp:1p; +alliât allier VER 4.62 7.97 0.00 0.07 sub:imp:3s; +allitératif allitératif ADJ m s 0.01 0.00 0.01 0.00 +allitération allitération NOM f s 0.09 0.00 0.05 0.00 +allitérations allitération NOM f p 0.09 0.00 0.03 0.00 +allié allié NOM m s 11.64 55.34 2.40 4.05 +alliée allié NOM f s 11.64 55.34 1.47 2.16 +alliées allié ADJ f p 2.66 25.68 0.64 9.53 +allium allium NOM m s 0.02 0.00 0.02 0.00 +alliés allié NOM m p 11.64 55.34 7.59 48.51 +allo allo ONO 31.11 2.16 31.11 2.16 +allobarbital allobarbital NOM m 0.00 0.07 0.00 0.07 +allobroges allobroge ADJ p 0.00 0.27 0.00 0.27 +alloc alloc NOM f s 0.59 0.14 0.18 0.00 +allocataires allocataire NOM p 0.03 0.00 0.03 0.00 +allocation allocation NOM f s 3.16 1.55 1.35 0.41 +allocations allocation NOM f p 3.16 1.55 1.81 1.15 +allochtone allochtone NOM m s 0.01 0.00 0.01 0.00 +allocs alloc NOM f p 0.59 0.14 0.41 0.14 +allocution allocution NOM f s 0.33 4.12 0.31 3.11 +allocutions allocution NOM f p 0.33 4.12 0.02 1.01 +allogreffe allogreffe NOM f s 0.01 0.00 0.01 0.00 +allogènes allogène ADJ f p 0.00 0.07 0.00 0.07 +allâmes aller VER 9992.78 2854.93 0.06 3.45 ind:pas:1p; +allonge allonger VER 41.05 89.66 11.81 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +allongea allonger VER 41.05 89.66 0.12 8.99 ind:pas:3s; +allongeai allonger VER 41.05 89.66 0.02 0.88 ind:pas:1s; +allongeaient allonger VER 41.05 89.66 0.03 2.43 ind:imp:3p; +allongeais allonger VER 41.05 89.66 0.47 0.95 ind:imp:1s;ind:imp:2s; +allongeait allonger VER 41.05 89.66 0.32 6.35 ind:imp:3s; +allongeant allonger VER 41.05 89.66 0.40 3.58 par:pre; +allongement allongement NOM m s 0.09 0.68 0.09 0.68 +allongent allonger VER 41.05 89.66 0.97 2.57 ind:pre:3p; +allongeâmes allonger VER 41.05 89.66 0.00 0.20 ind:pas:1p; +allongeons allonger VER 41.05 89.66 0.11 0.14 imp:pre:1p;ind:pre:1p; +allongeât allonger VER 41.05 89.66 0.00 0.07 sub:imp:3s; +allonger allonger VER 41.05 89.66 9.96 12.16 ind:pre:2p;inf; +allongera allonger VER 41.05 89.66 0.04 0.20 ind:fut:3s; +allongerai allonger VER 41.05 89.66 0.05 0.14 ind:fut:1s; +allongeraient allonger VER 41.05 89.66 0.01 0.07 cnd:pre:3p; +allongerais allonger VER 41.05 89.66 0.04 0.20 cnd:pre:1s;cnd:pre:2s; +allongerait allonger VER 41.05 89.66 0.00 0.47 cnd:pre:3s; +allongeras allonger VER 41.05 89.66 0.04 0.00 ind:fut:2s; +allonges allonger VER 41.05 89.66 1.02 0.07 ind:pre:2s; +allongez allonger VER 41.05 89.66 4.13 0.34 imp:pre:2p;ind:pre:2p; +allongiez allonger VER 41.05 89.66 0.10 0.07 ind:imp:2p; +allongions allonger VER 41.05 89.66 0.01 0.27 ind:imp:1p; +allongèrent allonger VER 41.05 89.66 0.00 0.88 ind:pas:3p; +allongé allonger VER m s 41.05 89.66 5.92 20.20 par:pas; +allongée allonger VER f s 41.05 89.66 4.04 10.88 par:pas; +allongées allongé ADJ f p 3.42 12.57 0.14 2.09 +allongés allonger VER m p 41.05 89.66 1.37 5.61 par:pas; +allons aller VER 9992.78 2854.93 500.21 129.80 imp:pre:1p;ind:pre:1p; +allopathie allopathie NOM f s 0.14 0.00 0.14 0.00 +allostérique allostérique ADJ m s 0.01 0.00 0.01 0.00 +allât aller VER 9992.78 2854.93 0.01 2.97 sub:imp:3s; +alloua allouer VER 0.57 2.09 0.00 0.14 ind:pas:3s; +allouait allouer VER 0.57 2.09 0.00 0.54 ind:imp:3s; +allouant allouer VER 0.57 2.09 0.00 0.07 par:pre; +alloue allouer VER 0.57 2.09 0.04 0.00 ind:pre:1s;ind:pre:3s; +allouer allouer VER 0.57 2.09 0.09 0.34 inf; +allouerait allouer VER 0.57 2.09 0.00 0.14 cnd:pre:3s; +alloué allouer VER m s 0.57 2.09 0.21 0.41 par:pas; +allouée allouer VER f s 0.57 2.09 0.14 0.20 par:pas; +alloués allouer VER m p 0.57 2.09 0.09 0.27 par:pas; +allèche allécher VER 0.07 2.09 0.00 0.07 ind:pre:3s; +allège alléger VER 3.65 6.89 0.36 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allègement allègement NOM m s 0.04 0.20 0.04 0.20 +allègent alléger VER 3.65 6.89 0.01 0.27 ind:pre:3p; +allègre allègre ADJ s 0.13 4.93 0.13 4.46 +allègrement allègrement ADV 0.33 2.03 0.33 2.03 +allègres allègre ADJ p 0.13 4.93 0.00 0.47 +allègue alléguer VER 0.07 2.97 0.01 0.07 ind:pre:1s;ind:pre:3s; +allèle allèle NOM m s 0.04 0.00 0.04 0.00 +allèrent aller VER 9992.78 2854.93 0.42 11.69 ind:pas:3p; +allé aller VER m s 9992.78 2854.93 123.26 57.30 par:pas; +allécha allécher VER 0.07 2.09 0.00 0.07 ind:pas:3s; +alléchait allécher VER 0.07 2.09 0.00 0.07 ind:imp:3s; +alléchant alléchant ADJ m s 0.60 2.09 0.25 0.68 +alléchante alléchant ADJ f s 0.60 2.09 0.29 0.61 +alléchantes alléchant ADJ f p 0.60 2.09 0.03 0.41 +alléchants alléchant ADJ m p 0.60 2.09 0.03 0.41 +allécher allécher VER 0.07 2.09 0.04 0.20 inf; +allécherait allécher VER 0.07 2.09 0.00 0.07 cnd:pre:3s; +alléché allécher VER m s 0.07 2.09 0.01 1.01 par:pas; +alléchée allécher VER f s 0.07 2.09 0.00 0.34 par:pas; +alléchés allécher VER m p 0.07 2.09 0.01 0.20 par:pas; +allée aller VER f s 9992.78 2854.93 52.93 25.00 par:pas; +allées aller VER f p 9992.78 2854.93 3.15 2.23 par:pas; +allégation allégation NOM f s 1.87 0.54 0.28 0.07 +allégations allégation NOM f p 1.87 0.54 1.59 0.47 +allégea alléger VER 3.65 6.89 0.10 0.07 ind:pas:3s; +allégeaient alléger VER 3.65 6.89 0.01 0.20 ind:imp:3p; +allégeais alléger VER 3.65 6.89 0.00 0.07 ind:imp:1s; +allégeait alléger VER 3.65 6.89 0.00 0.88 ind:imp:3s; +allégeance allégeance NOM f s 1.64 1.42 1.61 1.35 +allégeances allégeance NOM f p 1.64 1.42 0.04 0.07 +allégeant alléger VER 3.65 6.89 0.02 0.27 par:pre; +allégement allégement NOM m s 0.03 0.54 0.03 0.47 +allégements allégement NOM m p 0.03 0.54 0.00 0.07 +alléger alléger VER 3.65 6.89 1.40 1.69 inf; +allégera alléger VER 3.65 6.89 0.04 0.00 ind:fut:3s; +allégerait alléger VER 3.65 6.89 0.04 0.07 cnd:pre:3s; +allégez alléger VER 3.65 6.89 0.06 0.07 imp:pre:2p;ind:pre:2p; +allégorie allégorie NOM f s 0.41 2.16 0.38 1.15 +allégories allégorie NOM f p 0.41 2.16 0.04 1.01 +allégorique allégorique ADJ s 0.04 1.35 0.04 0.68 +allégoriquement allégoriquement ADV 0.10 0.07 0.10 0.07 +allégoriques allégorique ADJ p 0.04 1.35 0.00 0.68 +allégorisé allégoriser VER m s 0.00 0.07 0.00 0.07 par:pas; +allégrement allégrement ADV 0.03 2.77 0.03 2.77 +allégresse allégresse NOM f s 2.36 11.89 2.36 11.82 +allégresses allégresse NOM f p 2.36 11.89 0.00 0.07 +allégé alléger VER m s 3.65 6.89 1.16 1.08 par:pas; +allégua alléguer VER 0.07 2.97 0.00 0.20 ind:pas:3s; +alléguaient alléguer VER 0.07 2.97 0.00 0.20 ind:imp:3p; +alléguais alléguer VER 0.07 2.97 0.00 0.07 ind:imp:1s; +alléguait alléguer VER 0.07 2.97 0.00 0.27 ind:imp:3s; +alléguant alléguer VER 0.07 2.97 0.02 1.82 par:pre; +allégée alléger VER f s 3.65 6.89 0.18 1.08 par:pas; +alléguer alléguer VER 0.07 2.97 0.00 0.20 inf; +alléguera alléguer VER 0.07 2.97 0.00 0.07 ind:fut:3s; +allégées alléger VER f p 3.65 6.89 0.16 0.14 par:pas; +allégés alléger VER m p 3.65 6.89 0.10 0.07 par:pas; +allégué alléguer VER m s 0.07 2.97 0.03 0.07 par:pas; +alléguée alléguer VER f s 0.07 2.97 0.01 0.00 par:pas; +alléluia alléluia ONO 2.62 0.41 2.62 0.41 +alléluias alléluia NOM m p 0.99 0.34 0.28 0.14 +alluma allumer VER 54.80 116.28 0.33 23.78 ind:pas:3s; +allumage allumage NOM m s 1.75 1.35 1.75 1.35 +allumai allumer VER 54.80 116.28 0.01 2.09 ind:pas:1s; +allumaient allumer VER 54.80 116.28 0.17 4.53 ind:imp:3p; +allumais allumer VER 54.80 116.28 0.40 1.22 ind:imp:1s;ind:imp:2s; +allumait allumer VER 54.80 116.28 0.78 8.11 ind:imp:3s; +allumant allumer VER 54.80 116.28 0.33 4.05 par:pre; +allume_cigare allume_cigare NOM m s 0.19 0.14 0.19 0.14 +allume_cigares allume_cigares NOM m 0.14 0.14 0.14 0.14 +allume_feu allume_feu NOM m 0.04 0.27 0.04 0.27 +allume_gaz allume_gaz NOM m 0.20 0.14 0.20 0.14 +allume allumer VER 54.80 116.28 19.22 18.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +allument allumer VER 54.80 116.28 1.23 3.24 ind:pre:3p; +allumer allumer VER 54.80 116.28 11.98 20.74 inf; +allumera allumer VER 54.80 116.28 0.74 0.34 ind:fut:3s; +allumerai allumer VER 54.80 116.28 0.97 0.14 ind:fut:1s; +allumeraient allumer VER 54.80 116.28 0.00 0.34 cnd:pre:3p; +allumerais allumer VER 54.80 116.28 0.04 0.07 cnd:pre:1s; +allumerait allumer VER 54.80 116.28 0.03 0.34 cnd:pre:3s; +allumeras allumer VER 54.80 116.28 0.07 0.07 ind:fut:2s; +allumerons allumer VER 54.80 116.28 0.02 0.14 ind:fut:1p; +allumeront allumer VER 54.80 116.28 0.45 0.20 ind:fut:3p; +allumes allumer VER 54.80 116.28 1.69 0.27 ind:pre:2s;sub:pre:2s; +allumette allumette NOM f s 15.65 20.88 4.43 9.73 +allumettes allumette NOM f p 15.65 20.88 11.22 11.15 +allumeur allumeur NOM m s 1.41 1.15 0.32 0.14 +allumeurs allumeur NOM m p 1.41 1.15 0.07 0.07 +allumeuse allumeur NOM f s 1.41 1.15 1.02 0.74 +allumeuses allumeuse NOM f p 0.09 0.00 0.09 0.00 +allumez allumer VER 54.80 116.28 5.27 0.47 imp:pre:2p;ind:pre:2p; +allumiez allumer VER 54.80 116.28 0.25 0.00 ind:imp:2p; +allumions allumer VER 54.80 116.28 0.01 0.34 ind:imp:1p; +allumoir allumoir NOM m s 0.00 0.07 0.00 0.07 +allumâmes allumer VER 54.80 116.28 0.00 0.14 ind:pas:1p; +allumons allumer VER 54.80 116.28 0.53 0.47 imp:pre:1p;ind:pre:1p; +allumât allumer VER 54.80 116.28 0.00 0.20 sub:imp:3s; +allumèrent allumer VER 54.80 116.28 0.02 2.50 ind:pas:3p; +allumé allumer VER m s 54.80 116.28 6.76 15.54 par:pas; +allumée allumé ADJ f s 5.76 14.59 3.59 5.74 +allumées allumer VER f p 54.80 116.28 0.80 1.89 par:pas; +allumés allumer VER m p 54.80 116.28 0.62 1.49 par:pas; +allure allure NOM f s 10.57 65.88 10.00 57.09 +allures allure NOM f p 10.57 65.88 0.56 8.78 +alluré alluré ADJ m s 0.00 0.07 0.00 0.07 +allés aller VER m p 9992.78 2854.93 26.37 17.23 par:pas; +allusif allusif ADJ m s 0.00 1.22 0.00 0.34 +allusifs allusif ADJ m p 0.00 1.22 0.00 0.20 +allusion allusion NOM f s 4.72 31.15 3.88 23.18 +allusionne allusionner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +allusions allusion NOM f p 4.72 31.15 0.84 7.97 +allusive allusif ADJ f s 0.00 1.22 0.00 0.41 +allusivement allusivement ADV 0.10 0.14 0.10 0.14 +allusives allusif ADJ f p 0.00 1.22 0.00 0.27 +alluvion alluvion NOM f s 0.16 0.95 0.01 0.14 +alluvions alluvion NOM f p 0.16 0.95 0.14 0.81 +alma alma NOM f s 0.86 0.14 0.86 0.14 +almanach almanach NOM m s 1.00 1.89 0.89 1.22 +almanachs almanach NOM m p 1.00 1.89 0.11 0.68 +almohade almohade NOM s 0.10 0.14 0.10 0.07 +almohades almohade NOM p 0.10 0.14 0.00 0.07 +almée almée NOM f s 0.00 0.27 0.00 0.14 +almées almée NOM f p 0.00 0.27 0.00 0.14 +aloi aloi NOM m s 0.22 1.89 0.22 1.89 +alopécie alopécie NOM f s 0.05 0.07 0.05 0.07 +alors alors ADV 1777.65 1033.78 1777.65 1033.78 +alose alose NOM f s 0.04 0.47 0.04 0.20 +aloses alose NOM f p 0.04 0.47 0.00 0.27 +aloès aloès NOM m 0.23 1.15 0.23 1.15 +alouette alouette NOM f s 1.41 4.32 1.32 1.82 +alouettes alouette NOM f p 1.41 4.32 0.09 2.50 +alourdît alourdir VER 0.66 15.34 0.00 0.07 sub:imp:3s; +alourdi alourdir VER m s 0.66 15.34 0.07 2.50 par:pas; +alourdie alourdir VER f s 0.66 15.34 0.01 2.64 par:pas; +alourdies alourdir VER f p 0.66 15.34 0.00 1.28 par:pas; +alourdir alourdir VER 0.66 15.34 0.38 1.82 inf; +alourdirai alourdir VER 0.66 15.34 0.01 0.00 ind:fut:1s; +alourdiraient alourdir VER 0.66 15.34 0.00 0.07 cnd:pre:3p; +alourdirent alourdir VER 0.66 15.34 0.00 0.20 ind:pas:3p; +alourdis alourdir VER m p 0.66 15.34 0.13 1.55 imp:pre:2s;ind:pre:1s;par:pas; +alourdissaient alourdir VER 0.66 15.34 0.01 0.68 ind:imp:3p; +alourdissait alourdir VER 0.66 15.34 0.00 1.69 ind:imp:3s; +alourdissant alourdir VER 0.66 15.34 0.00 0.41 par:pre; +alourdissement alourdissement NOM m s 0.00 0.14 0.00 0.14 +alourdissent alourdir VER 0.66 15.34 0.00 0.68 ind:pre:3p; +alourdit alourdir VER 0.66 15.34 0.04 1.76 ind:pre:3s;ind:pas:3s; +aloyau aloyau NOM m s 0.27 0.27 0.27 0.27 +alpa alper VER 0.30 0.07 0.30 0.07 ind:pas:3s; +alpaga alpaga NOM m s 0.12 1.28 0.12 1.28 +alpage alpage NOM m s 0.01 0.81 0.00 0.34 +alpages alpage NOM m p 0.01 0.81 0.01 0.47 +alpaguait alpaguer VER 0.34 2.16 0.01 0.07 ind:imp:3s; +alpague alpaguer VER 0.34 2.16 0.19 0.88 ind:pre:1s;ind:pre:3s; +alpaguent alpaguer VER 0.34 2.16 0.02 0.07 ind:pre:3p; +alpaguer alpaguer VER 0.34 2.16 0.09 0.74 inf; +alpaguerait alpaguer VER 0.34 2.16 0.00 0.07 cnd:pre:3s; +alpagué alpaguer VER m s 0.34 2.16 0.03 0.20 par:pas; +alpaguée alpaguer VER f s 0.34 2.16 0.00 0.07 par:pas; +alpagués alpaguer VER m p 0.34 2.16 0.00 0.07 par:pas; +alpe alpe NOM f s 0.14 0.27 0.00 0.20 +alpenstock alpenstock NOM m s 0.00 0.34 0.00 0.34 +alpes alpe NOM f p 0.14 0.27 0.14 0.07 +alpestre alpestre ADJ s 0.10 0.47 0.10 0.27 +alpestres alpestre ADJ m p 0.10 0.47 0.00 0.20 +alpha alpha NOM m 2.09 0.61 2.09 0.61 +alphabet alphabet NOM m s 3.16 4.73 3.14 4.39 +alphabets alphabet NOM m p 3.16 4.73 0.02 0.34 +alphabétique alphabétique ADJ s 1.00 1.69 1.00 1.69 +alphabétiquement alphabétiquement ADV 0.14 0.07 0.14 0.07 +alphabétisation alphabétisation NOM f s 0.30 0.07 0.30 0.07 +alphabétiser alphabétiser VER 0.02 0.00 0.02 0.00 inf; +alphabétisé alphabétisé ADJ m s 0.01 0.00 0.01 0.00 +alphanumérique alphanumérique ADJ m s 0.07 0.00 0.07 0.00 +alpin alpin ADJ m s 1.19 3.04 0.18 0.95 +alpine alpin ADJ f s 1.19 3.04 0.43 0.47 +alpines alpin ADJ f p 1.19 3.04 0.00 0.20 +alpinisme alpinisme NOM m s 0.67 0.61 0.67 0.61 +alpiniste alpiniste NOM s 1.96 1.49 0.95 1.15 +alpinistes alpiniste NOM p 1.96 1.49 1.00 0.34 +alpins alpin ADJ m p 1.19 3.04 0.58 1.42 +alsacien alsacien ADJ m s 0.04 3.99 0.02 1.89 +alsacienne alsacien ADJ f s 0.04 3.99 0.00 1.55 +alsaciennes alsacien ADJ f p 0.04 3.99 0.00 0.20 +alsaciens alsacien ADJ m p 0.04 3.99 0.03 0.34 +alstonia alstonia NOM f s 0.14 0.00 0.14 0.00 +alter_ego alter_ego NOM m 0.30 0.54 0.30 0.54 +alter alter ADV 0.00 0.07 0.00 0.07 +altercation altercation NOM f s 1.20 1.49 1.12 1.42 +altercations altercation NOM f p 1.20 1.49 0.09 0.07 +alterna alterner VER 1.49 6.82 0.00 0.07 ind:pas:3s; +alternaient alterner VER 1.49 6.82 0.02 1.76 ind:imp:3p; +alternait alterner VER 1.49 6.82 0.04 0.34 ind:imp:3s; +alternance alternance NOM f s 0.20 3.78 0.20 2.84 +alternances alternance NOM f p 0.20 3.78 0.00 0.95 +alternant alterner VER 1.49 6.82 0.26 1.62 par:pre; +alternateur alternateur NOM m s 0.14 0.00 0.14 0.00 +alternatif alternatif ADJ m s 2.02 0.95 1.02 0.14 +alternatifs alternatif ADJ m p 2.02 0.95 0.23 0.07 +alternative alternative NOM f s 5.89 2.23 4.96 1.89 +alternativement alternativement ADV 0.16 5.88 0.16 5.88 +alternatives alternative NOM f p 5.89 2.23 0.93 0.34 +alterne alterner VER 1.49 6.82 0.19 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +alternent alterner VER 1.49 6.82 0.02 0.68 ind:pre:3p; +alterner alterner VER 1.49 6.82 0.70 0.74 inf; +alternera alterner VER 1.49 6.82 0.01 0.00 ind:fut:3s; +alternez alterner VER 1.49 6.82 0.06 0.00 imp:pre:2p;ind:pre:2p; +alternions alterner VER 1.49 6.82 0.01 0.00 ind:imp:1p; +alternèrent alterner VER 1.49 6.82 0.00 0.07 ind:pas:3p; +alterné alterner VER m s 1.49 6.82 0.16 0.14 par:pas; +alternée alterné ADJ f s 0.09 0.81 0.07 0.00 +alternées alterné ADJ f p 0.09 0.81 0.01 0.41 +alternés alterner VER m p 1.49 6.82 0.00 0.41 par:pas; +altesse altesse NOM f s 12.93 4.05 12.72 1.08 +altesses altesse NOM f p 12.93 4.05 0.20 2.97 +althaea althaea NOM f s 0.01 0.00 0.01 0.00 +alène alène NOM f s 0.24 0.34 0.24 0.34 +alèse alèse NOM f s 0.01 0.61 0.01 0.61 +alèze alèze NOM f s 0.00 0.07 0.00 0.07 +altier altier ADJ m s 0.56 2.91 0.14 0.88 +altiers altier ADJ m p 0.56 2.91 0.01 0.07 +altimètre altimètre NOM m s 0.75 0.14 0.72 0.14 +altimètres altimètre NOM m p 0.75 0.14 0.02 0.00 +altière altier ADJ f s 0.56 2.91 0.41 1.69 +altièrement altièrement ADV 0.00 0.07 0.00 0.07 +altières altier ADJ f p 0.56 2.91 0.00 0.27 +altitude altitude NOM f s 6.39 6.96 6.37 6.35 +altitudes altitude NOM f p 6.39 6.96 0.03 0.61 +alto alto NOM s 0.45 1.08 0.35 0.95 +altos alto NOM p 0.45 1.08 0.10 0.14 +altruisme altruisme NOM m s 0.31 0.74 0.31 0.74 +altruiste altruiste ADJ s 0.86 0.00 0.52 0.00 +altruistes altruiste ADJ p 0.86 0.00 0.34 0.00 +altère altérer VER 2.62 7.50 0.51 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +altèrent altérer VER 2.62 7.50 0.20 0.41 ind:pre:3p; +altuglas altuglas NOM m 0.00 0.07 0.00 0.07 +altéra altérer VER 2.62 7.50 0.00 0.27 ind:pas:3s; +altérable altérable ADJ s 0.01 0.00 0.01 0.00 +altéraient altérer VER 2.62 7.50 0.00 0.41 ind:imp:3p; +altérait altérer VER 2.62 7.50 0.01 0.61 ind:imp:3s; +altérant altérer VER 2.62 7.50 0.06 0.07 par:pre; +altération altération NOM f s 0.64 1.49 0.59 0.95 +altérations altération NOM f p 0.64 1.49 0.05 0.54 +altérer altérer VER 2.62 7.50 0.83 1.89 inf; +altérera altérer VER 2.62 7.50 0.02 0.07 ind:fut:3s; +altéreront altérer VER 2.62 7.50 0.02 0.00 ind:fut:3p; +altérez altérer VER 2.62 7.50 0.01 0.00 ind:pre:2p; +altériez altérer VER 2.62 7.50 0.01 0.00 ind:imp:2p; +altérité altérité NOM f s 0.02 0.20 0.02 0.20 +altérât altérer VER 2.62 7.50 0.01 0.20 sub:imp:3s; +altérèrent altérer VER 2.62 7.50 0.00 0.07 ind:pas:3p; +altéré altérer VER m s 2.62 7.50 0.69 1.35 par:pas; +altérée altérer VER f s 2.62 7.50 0.14 0.81 par:pas; +altérées altérer VER f p 2.62 7.50 0.07 0.20 par:pas; +altérés altérer VER m p 2.62 7.50 0.04 0.20 par:pas; +alu alu NOM m 1.06 0.95 1.06 0.95 +aléa aléa NOM m s 0.34 1.01 0.02 0.20 +aléas aléa NOM m p 0.34 1.01 0.32 0.81 +aléatoire aléatoire ADJ s 2.04 2.16 1.36 1.96 +aléatoirement aléatoirement ADV 0.09 0.00 0.09 0.00 +aléatoires aléatoire ADJ p 2.04 2.16 0.69 0.20 +aludes alude NOM f p 0.14 0.00 0.14 0.00 +aluette aluette NOM f s 0.01 0.00 0.01 0.00 +alémaniques alémanique ADJ p 0.00 0.07 0.00 0.07 +aluminium aluminium NOM m s 2.38 4.32 2.38 4.32 +alun alun NOM m s 0.00 0.74 0.00 0.74 +aluni alunir VER m s 0.43 0.07 0.06 0.00 par:pas; +alunir alunir VER 0.43 0.07 0.25 0.07 inf; +alunira alunir VER 0.43 0.07 0.13 0.00 ind:fut:3s; +alunissage alunissage NOM m s 0.52 0.00 0.51 0.00 +alunissages alunissage NOM m p 0.52 0.00 0.01 0.00 +aléoutien aléoutien ADJ m s 0.02 0.00 0.02 0.00 +alésait aléser VER 0.00 0.14 0.00 0.07 ind:imp:3s; +aléser aléser VER 0.00 0.14 0.00 0.07 inf; +alvar alvar NOM m s 0.05 0.00 0.05 0.00 +alvin alvin ADJ m s 0.12 0.00 0.12 0.00 +alvéolaire alvéolaire ADJ f s 0.04 0.00 0.04 0.00 +alvéole alvéole NOM m s 0.20 3.18 0.11 1.62 +alvéoles alvéole NOM m p 0.20 3.18 0.09 1.55 +alvéolé alvéolé ADJ m s 0.00 0.34 0.00 0.07 +alvéolée alvéolé ADJ f s 0.00 0.34 0.00 0.14 +alvéolées alvéolé ADJ f p 0.00 0.34 0.00 0.07 +alvéolés alvéolé ADJ m p 0.00 0.34 0.00 0.07 +alysse alysse NOM m s 0.03 0.27 0.03 0.27 +am_stram_gram am_stram_gram ONO 0.08 0.14 0.08 0.14 +amabilité amabilité NOM f s 2.91 5.34 2.81 3.78 +amabilités amabilité NOM f p 2.91 5.34 0.11 1.55 +amadou amadou NOM m s 0.01 1.76 0.01 1.76 +amadoua amadouer VER 1.51 3.58 0.00 0.20 ind:pas:3s; +amadouaient amadouer VER 1.51 3.58 0.00 0.07 ind:imp:3p; +amadouait amadouer VER 1.51 3.58 0.01 0.14 ind:imp:3s; +amadouant amadouer VER 1.51 3.58 0.02 0.14 par:pre; +amadoue amadouer VER 1.51 3.58 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amadouer amadouer VER 1.51 3.58 1.01 2.70 inf; +amadoueras amadouer VER 1.51 3.58 0.01 0.00 ind:fut:2s; +amadouez amadouer VER 1.51 3.58 0.01 0.00 ind:pre:2p; +amadoué amadouer VER m s 1.51 3.58 0.23 0.27 par:pas; +amaigri amaigrir VER m s 0.04 1.01 0.03 0.54 par:pas; +amaigrie amaigri ADJ f s 0.02 2.16 0.00 0.54 +amaigries amaigri ADJ f p 0.02 2.16 0.00 0.14 +amaigris amaigri ADJ m p 0.02 2.16 0.00 0.41 +amaigrissait amaigrir VER 0.04 1.01 0.00 0.07 ind:imp:3s; +amaigrissant amaigrissant ADJ m s 0.09 0.14 0.03 0.07 +amaigrissante amaigrissant ADJ f s 0.09 0.14 0.01 0.00 +amaigrissantes amaigrissant ADJ f p 0.09 0.14 0.04 0.00 +amaigrissants amaigrissant ADJ m p 0.09 0.14 0.00 0.07 +amaigrissement amaigrissement NOM m s 0.20 0.54 0.20 0.54 +amaigrit amaigrir VER 0.04 1.01 0.01 0.07 ind:pre:3s;ind:pas:3s; +amalfitaine amalfitain ADJ f s 0.00 0.07 0.00 0.07 +amalgamaient amalgamer VER 0.44 1.22 0.00 0.14 ind:imp:3p; +amalgamais amalgamer VER 0.44 1.22 0.00 0.07 ind:imp:1s; +amalgamait amalgamer VER 0.44 1.22 0.00 0.07 ind:imp:3s; +amalgamant amalgamer VER 0.44 1.22 0.10 0.00 par:pre; +amalgame amalgame NOM m s 0.31 2.03 0.30 1.82 +amalgamer amalgamer VER 0.44 1.22 0.00 0.27 inf; +amalgames amalgame NOM m p 0.31 2.03 0.01 0.20 +amalgamez amalgamer VER 0.44 1.22 0.00 0.07 ind:pre:2p; +amalgamé amalgamer VER m s 0.44 1.22 0.27 0.14 par:pas; +amalgamée amalgamer VER f s 0.44 1.22 0.04 0.00 par:pas; +amalgamées amalgamer VER f p 0.44 1.22 0.00 0.14 par:pas; +amalgamés amalgamer VER m p 0.44 1.22 0.02 0.34 par:pas; +aman aman NOM m s 0.04 0.14 0.04 0.14 +amande amande NOM f s 2.19 8.18 1.07 3.99 +amandes amande NOM f p 2.19 8.18 1.13 4.19 +amandier amandier NOM m s 0.40 2.23 0.14 0.34 +amandiers amandier NOM m p 0.40 2.23 0.27 1.89 +amandine amandin NOM f s 0.01 0.07 0.01 0.00 +amandines amandine NOM f p 0.02 0.00 0.02 0.00 +amanite amanite NOM f s 0.10 0.27 0.00 0.14 +amanites amanite NOM f p 0.10 0.27 0.10 0.14 +amant amant NOM m s 35.03 69.59 23.28 46.76 +amante amante NOM f s 1.55 6.76 1.04 5.54 +amantes amante NOM f p 1.55 6.76 0.52 1.22 +amants amant NOM m p 35.03 69.59 11.75 22.84 +amarante amarante NOM s 0.05 0.61 0.02 0.27 +amarantes amarante NOM p 0.05 0.61 0.03 0.34 +amaro amaro NOM m s 2.02 0.00 2.02 0.00 +amarra amarrer VER 1.44 6.69 0.08 0.34 ind:pas:3s; +amarrage amarrage NOM m s 0.46 0.61 0.45 0.54 +amarrages amarrage NOM m p 0.46 0.61 0.01 0.07 +amarrai amarrer VER 1.44 6.69 0.00 0.07 ind:pas:1s; +amarraient amarrer VER 1.44 6.69 0.00 0.27 ind:imp:3p; +amarrais amarrer VER 1.44 6.69 0.00 0.07 ind:imp:1s; +amarrait amarrer VER 1.44 6.69 0.04 0.20 ind:imp:3s; +amarrant amarrer VER 1.44 6.69 0.00 0.14 par:pre; +amarre amarre NOM f s 1.66 4.66 0.58 1.42 +amarrent amarrer VER 1.44 6.69 0.00 0.07 ind:pre:3p; +amarrer amarrer VER 1.44 6.69 0.22 1.01 inf; +amarres amarre NOM f p 1.66 4.66 1.08 3.24 +amarrez amarrer VER 1.44 6.69 0.16 0.00 imp:pre:2p; +amarré amarrer VER m s 1.44 6.69 0.49 1.89 par:pas; +amarrée amarrer VER f s 1.44 6.69 0.15 0.88 par:pas; +amarrées amarrer VER f p 1.44 6.69 0.00 0.68 par:pas; +amarrés amarrer VER m p 1.44 6.69 0.08 0.81 par:pas; +amaryllis amaryllis NOM f 0.03 1.22 0.03 1.22 +amas amas NOM m 1.56 9.32 1.56 9.32 +amassa amasser VER 3.46 8.24 0.02 0.34 ind:pas:3s; +amassai amasser VER 3.46 8.24 0.00 0.07 ind:pas:1s; +amassaient amasser VER 3.46 8.24 0.01 0.61 ind:imp:3p; +amassait amasser VER 3.46 8.24 0.02 0.68 ind:imp:3s; +amassant amasser VER 3.46 8.24 0.03 0.54 par:pre; +amasse amasser VER 3.46 8.24 0.71 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amassent amasser VER 3.46 8.24 0.19 0.27 ind:pre:3p; +amasser amasser VER 3.46 8.24 0.47 1.55 inf; +amassera amasser VER 3.46 8.24 0.14 0.00 ind:fut:3s; +amassez amasser VER 3.46 8.24 0.62 0.00 imp:pre:2p;ind:pre:2p; +amassons amasser VER 3.46 8.24 0.01 0.00 ind:pre:1p; +amassèrent amasser VER 3.46 8.24 0.00 0.07 ind:pas:3p; +amassé amasser VER m s 3.46 8.24 0.91 1.55 par:pas; +amassée amasser VER f s 3.46 8.24 0.03 0.61 par:pas; +amassées amasser VER f p 3.46 8.24 0.17 0.41 par:pas; +amassés amasser VER m p 3.46 8.24 0.12 0.95 par:pas; +amateur amateur NOM s 11.66 16.15 5.53 7.16 +amateurisme amateurisme NOM m s 0.12 0.34 0.12 0.34 +amateurs amateur NOM p 11.66 16.15 6.04 8.99 +amati amatir VER m s 0.00 0.14 0.00 0.14 par:pas; +amatrice amateur NOM f s 11.66 16.15 0.09 0.00 +amaurose amaurose NOM f s 0.00 0.07 0.00 0.07 +amazone amazone NOM f s 0.55 2.23 0.25 1.89 +amazones amazone NOM f p 0.55 2.23 0.30 0.34 +amazonien amazonien ADJ m s 0.36 0.14 0.03 0.07 +amazonienne amazonien ADJ f s 0.36 0.14 0.30 0.00 +amazoniennes amazonien ADJ f p 0.36 0.14 0.04 0.07 +ambages ambages NOM f p 0.29 0.88 0.29 0.88 +ambassade ambassade NOM f s 9.49 15.34 8.85 13.38 +ambassades ambassade NOM f p 9.49 15.34 0.65 1.96 +ambassadeur ambassadeur NOM m s 13.85 33.72 11.57 26.15 +ambassadeurs ambassadeur NOM m p 13.85 33.72 0.96 3.85 +ambassadrice ambassadeur NOM f s 13.85 33.72 1.32 3.58 +ambassadrices ambassadeur NOM f p 13.85 33.72 0.00 0.14 +ambiance ambiance NOM f s 12.37 11.55 12.33 11.08 +ambiances ambiance NOM f p 12.37 11.55 0.03 0.47 +ambiant ambiant ADJ m s 0.75 4.05 0.20 1.49 +ambiante ambiant ADJ f s 0.75 4.05 0.50 2.23 +ambiantes ambiant ADJ f p 0.75 4.05 0.01 0.34 +ambiants ambiant ADJ m p 0.75 4.05 0.04 0.00 +ambidextre ambidextre ADJ f s 0.32 0.00 0.32 0.00 +ambigu ambigu ADJ m s 2.58 8.99 1.77 4.05 +ambiguïté ambiguïté NOM f s 0.52 3.04 0.39 2.84 +ambiguïtés ambiguïté NOM f p 0.52 3.04 0.14 0.20 +ambigus ambigu ADJ m p 2.58 8.99 0.27 1.55 +ambiguë ambigu ADJ f s 2.58 8.99 0.51 2.57 +ambiguës ambigu ADJ f p 2.58 8.99 0.04 0.81 +ambitieuse ambitieux ADJ f s 6.08 4.73 1.09 0.81 +ambitieuses ambitieux ADJ f p 6.08 4.73 0.17 0.20 +ambitieux ambitieux ADJ m 6.08 4.73 4.82 3.72 +ambition ambition NOM f s 11.15 30.34 7.98 19.32 +ambitionnais ambitionner VER 0.06 1.49 0.02 0.14 ind:imp:1s; +ambitionnait ambitionner VER 0.06 1.49 0.00 0.41 ind:imp:3s; +ambitionnant ambitionner VER 0.06 1.49 0.00 0.07 par:pre; +ambitionne ambitionner VER 0.06 1.49 0.03 0.41 ind:pre:1s;ind:pre:3s; +ambitionnent ambitionner VER 0.06 1.49 0.01 0.07 ind:pre:3p; +ambitionner ambitionner VER 0.06 1.49 0.00 0.14 inf; +ambitionnez ambitionner VER 0.06 1.49 0.00 0.07 ind:pre:2p; +ambitionné ambitionner VER m s 0.06 1.49 0.00 0.20 par:pas; +ambitions ambition NOM f p 11.15 30.34 3.17 11.01 +ambivalence ambivalence NOM f s 0.28 0.41 0.28 0.34 +ambivalences ambivalence NOM f p 0.28 0.41 0.00 0.07 +ambivalent ambivalent ADJ m s 0.17 0.20 0.11 0.14 +ambivalente ambivalent ADJ f s 0.17 0.20 0.06 0.07 +amble amble NOM m s 0.30 0.47 0.30 0.47 +ambler ambler VER 0.05 0.00 0.05 0.00 inf; +amboine amboine NOM s 0.00 0.07 0.00 0.07 +ambon ambon NOM m s 0.00 0.07 0.00 0.07 +ambras ambrer VER 0.04 0.54 0.00 0.07 ind:pas:2s; +ambre ambre NOM m s 0.93 4.39 0.93 4.39 +ambrer ambrer VER 0.04 0.54 0.01 0.00 inf; +ambroisie ambroisie NOM f s 0.51 0.14 0.51 0.14 +ambré ambré ADJ m s 0.19 2.16 0.01 0.74 +ambrée ambré ADJ f s 0.19 2.16 0.17 1.08 +ambrées ambrer VER f p 0.04 0.54 0.01 0.00 par:pas; +ambrés ambré ADJ m p 0.19 2.16 0.01 0.20 +ambulance ambulance NOM f s 27.55 11.69 25.94 9.26 +ambulances ambulance NOM f p 27.55 11.69 1.61 2.43 +ambulancier ambulancier NOM m s 1.64 1.69 0.57 0.61 +ambulanciers ambulancier NOM m p 1.64 1.69 1.01 0.88 +ambulancière ambulancier NOM f s 1.64 1.69 0.04 0.14 +ambulancières ambulancier NOM f p 1.64 1.69 0.00 0.07 +ambulant ambulant ADJ m s 3.08 5.41 1.82 3.04 +ambulante ambulant ADJ f s 3.08 5.41 0.98 1.15 +ambulantes ambulant ADJ f p 3.08 5.41 0.13 0.07 +ambulants ambulant ADJ m p 3.08 5.41 0.15 1.15 +ambulatoire ambulatoire ADJ s 0.14 0.07 0.14 0.07 +amen amen ONO 19.70 2.23 19.70 2.23 +amena amener VER 190.32 93.92 0.74 5.27 ind:pas:3s; +amenai amener VER 190.32 93.92 0.02 0.34 ind:pas:1s; +amenaient amener VER 190.32 93.92 0.37 2.16 ind:imp:3p; +amenais amener VER 190.32 93.92 1.17 0.34 ind:imp:1s;ind:imp:2s; +amenait amener VER 190.32 93.92 1.87 9.46 ind:imp:3s; +amenant amener VER 190.32 93.92 0.66 2.43 par:pre; +amendai amender VER 1.49 1.08 0.00 0.07 ind:pas:1s; +amendait amender VER 1.49 1.08 0.00 0.07 ind:imp:3s; +amende amende NOM f s 9.37 4.80 8.38 3.65 +amendement amendement NOM m s 3.75 0.68 3.28 0.14 +amendements amendement NOM m p 3.75 0.68 0.47 0.54 +amendent amender VER 1.49 1.08 0.01 0.14 ind:pre:3p; +amender amender VER 1.49 1.08 1.06 0.47 inf; +amenderez amender VER 1.49 1.08 0.00 0.07 ind:fut:2p; +amendes amende NOM f p 9.37 4.80 0.99 1.15 +amendez amender VER 1.49 1.08 0.04 0.00 imp:pre:2p;ind:pre:2p; +amendât amender VER 1.49 1.08 0.00 0.07 sub:imp:3s; +amendé amender VER m s 1.49 1.08 0.05 0.07 par:pas; +amendée amender VER f s 1.49 1.08 0.05 0.00 par:pas; +amener amener VER 190.32 93.92 35.60 18.18 inf;; +amenez amener VER 190.32 93.92 21.53 1.28 imp:pre:2p;ind:pre:2p; +ameniez amener VER 190.32 93.92 0.25 0.07 ind:imp:2p; +amenions amener VER 190.32 93.92 0.25 0.14 ind:imp:1p; +amenons amener VER 190.32 93.92 1.02 0.00 imp:pre:1p;ind:pre:1p; +amenât amener VER 190.32 93.92 0.00 0.20 sub:imp:3s; +amenèrent amener VER 190.32 93.92 0.61 1.08 ind:pas:3p; +amené amener VER m s 190.32 93.92 38.14 20.00 par:pas; +amenée amener VER f s 190.32 93.92 7.87 5.81 par:pas; +amenées amener VER f p 190.32 93.92 0.73 0.88 par:pas; +amenuisaient amenuiser VER 0.42 4.19 0.00 0.14 ind:imp:3p; +amenuisait amenuiser VER 0.42 4.19 0.02 0.95 ind:imp:3s; +amenuisant amenuiser VER 0.42 4.19 0.00 0.88 par:pre; +amenuise amenuiser VER 0.42 4.19 0.14 0.61 ind:pre:3s; +amenuisement amenuisement NOM m s 0.00 0.14 0.00 0.14 +amenuisent amenuiser VER 0.42 4.19 0.23 0.41 ind:pre:3p; +amenuiser amenuiser VER 0.42 4.19 0.01 0.47 inf; +amenuiserait amenuiser VER 0.42 4.19 0.03 0.14 cnd:pre:3s; +amenuisèrent amenuiser VER 0.42 4.19 0.00 0.14 ind:pas:3p; +amenuisé amenuiser VER m s 0.42 4.19 0.00 0.14 par:pas; +amenuisée amenuiser VER f s 0.42 4.19 0.00 0.27 par:pas; +amenuisés amenuiser VER m p 0.42 4.19 0.00 0.07 par:pas; +amenés amener VER m p 190.32 93.92 4.71 6.15 par:pas; +amer amer ADJ m s 11.94 30.07 5.82 11.69 +amerlo amerlo NOM s 0.10 0.47 0.00 0.14 +amerloque amerloque NOM s 1.05 1.76 0.61 1.01 +amerloques amerloque NOM p 1.05 1.76 0.44 0.74 +amerlos amerlo NOM p 0.10 0.47 0.10 0.34 +amerri amerrir VER m s 0.13 0.07 0.04 0.00 par:pas; +amerrir amerrir VER 0.13 0.07 0.06 0.07 inf; +amerrissage amerrissage NOM m s 0.16 0.00 0.16 0.00 +amerrit amerrir VER 0.13 0.07 0.02 0.00 ind:pre:3s;ind:pas:3s; +amers amer ADJ m p 11.94 30.07 1.25 2.57 +amertume amertume NOM f s 4.64 19.39 4.64 19.05 +amertumes amertume NOM f p 4.64 19.39 0.00 0.34 +ameublement ameublement NOM m s 0.12 0.95 0.12 0.88 +ameublements ameublement NOM m p 0.12 0.95 0.00 0.07 +ameuta ameuter VER 1.48 3.51 0.00 0.14 ind:pas:3s; +ameutaient ameuter VER 1.48 3.51 0.00 0.14 ind:imp:3p; +ameutait ameuter VER 1.48 3.51 0.00 0.07 ind:imp:3s; +ameutant ameuter VER 1.48 3.51 0.00 0.27 par:pre; +ameute ameuter VER 1.48 3.51 0.30 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ameutent ameuter VER 1.48 3.51 0.01 0.07 ind:pre:3p; +ameuter ameuter VER 1.48 3.51 0.89 1.62 inf; +ameutera ameuter VER 1.48 3.51 0.01 0.00 ind:fut:3s; +ameuterait ameuter VER 1.48 3.51 0.01 0.14 cnd:pre:3s; +ameutât ameuter VER 1.48 3.51 0.00 0.07 sub:imp:3s; +ameuté ameuter VER m s 1.48 3.51 0.25 0.47 par:pas; +ameutée ameuter VER f s 1.48 3.51 0.00 0.07 par:pas; +ameutées ameuter VER f p 1.48 3.51 0.00 0.07 par:pas; +ameutés ameuter VER m p 1.48 3.51 0.01 0.14 par:pas; +amharique amharique NOM m s 0.27 0.00 0.27 0.00 +ami ami NOM m s 747.98 354.12 360.90 140.14 +amiable amiable ADJ m s 1.06 1.82 1.06 1.82 +amiante amiante NOM m s 0.82 0.54 0.82 0.54 +amibe amibe NOM f s 0.40 0.20 0.27 0.14 +amibes amibe NOM f p 0.40 0.20 0.13 0.07 +amibienne amibien ADJ f s 0.05 0.14 0.05 0.14 +amical amical ADJ m s 9.88 23.04 4.26 11.22 +amicale amical ADJ f s 9.88 23.04 3.67 7.57 +amicalement amicalement ADV 1.15 4.12 1.15 4.12 +amicales amical ADJ f p 9.88 23.04 0.60 2.57 +amicalités amicalité NOM f p 0.00 0.07 0.00 0.07 +amicaux amical ADJ m p 9.88 23.04 1.35 1.69 +amidon amidon NOM m s 0.49 0.74 0.49 0.74 +amidonnaient amidonner VER 0.33 1.89 0.00 0.07 ind:imp:3p; +amidonnent amidonner VER 0.33 1.89 0.02 0.00 ind:pre:3p; +amidonner amidonner VER 0.33 1.89 0.04 0.20 inf; +amidonnez amidonner VER 0.33 1.89 0.02 0.00 imp:pre:2p;ind:pre:2p; +amidonné amidonner VER m s 0.33 1.89 0.04 0.54 par:pas; +amidonnée amidonner VER f s 0.33 1.89 0.02 0.34 par:pas; +amidonnées amidonner VER f p 0.33 1.89 0.15 0.20 par:pas; +amidonnés amidonner VER m p 0.33 1.89 0.04 0.54 par:pas; +amie ami NOM f s 747.98 354.12 113.54 54.32 +amies ami NOM f p 747.98 354.12 20.88 16.22 +amignoter amignoter VER 0.00 0.07 0.00 0.07 inf; +amigo amigo NOM m s 6.91 1.08 4.75 0.95 +amigos amigo NOM m p 6.91 1.08 2.15 0.14 +aminci aminci ADJ m s 0.10 0.47 0.10 0.14 +amincie amincir VER f s 0.25 2.30 0.00 0.14 par:pas; +amincies aminci ADJ f p 0.10 0.47 0.00 0.20 +amincir amincir VER 0.25 2.30 0.03 0.27 inf; +amincis aminci ADJ m p 0.10 0.47 0.00 0.07 +amincissaient amincir VER 0.25 2.30 0.00 0.27 ind:imp:3p; +amincissait amincir VER 0.25 2.30 0.03 0.20 ind:imp:3s; +amincissant amincissant ADJ m s 0.09 0.07 0.03 0.07 +amincissante amincissant ADJ f s 0.09 0.07 0.04 0.00 +amincissantes amincissant ADJ f p 0.09 0.07 0.01 0.00 +amincissants amincissant NOM m p 0.03 0.14 0.01 0.00 +amincissement amincissement NOM m s 0.10 0.14 0.10 0.14 +amincissent amincir VER 0.25 2.30 0.00 0.34 ind:pre:3p; +amincit amincir VER 0.25 2.30 0.19 0.68 ind:pre:3s;ind:pas:3s; +amine amine NOM f s 0.01 0.00 0.01 0.00 +aminoacides aminoacide NOM m p 0.02 0.00 0.02 0.00 +aminophylline aminophylline NOM f s 0.01 0.00 0.01 0.00 +aminé aminé ADJ m s 0.36 0.00 0.04 0.00 +aminés aminé ADJ m p 0.36 0.00 0.31 0.00 +amiral amiral NOM m s 6.00 13.51 5.60 11.22 +amirale amiral ADJ f s 4.04 8.58 0.01 0.14 +amirauté amirauté NOM f s 0.22 6.96 0.22 6.89 +amirautés amirauté NOM f p 0.22 6.96 0.00 0.07 +amiraux amiral NOM m p 6.00 13.51 0.39 2.30 +amis ami NOM m p 747.98 354.12 252.66 143.45 +amish amish ADJ m s 0.14 0.00 0.14 0.00 +amitieuse amitieux ADJ f s 0.00 0.07 0.00 0.07 +amitié amitié NOM f s 36.69 77.77 32.39 67.70 +amitiés amitié NOM f p 36.69 77.77 4.30 10.07 +ammoniac ammoniac NOM m s 0.28 0.14 0.28 0.14 +ammoniacale ammoniacal ADJ f s 0.00 0.54 0.00 0.41 +ammoniacales ammoniacal ADJ f p 0.00 0.54 0.00 0.07 +ammoniacaux ammoniacal ADJ m p 0.00 0.54 0.00 0.07 +ammoniaque ammoniaque NOM f s 0.40 0.27 0.40 0.27 +ammoniaqué ammoniaqué ADJ m s 0.00 0.27 0.00 0.14 +ammoniaquée ammoniaqué ADJ f s 0.00 0.27 0.00 0.07 +ammoniaquées ammoniaqué ADJ f p 0.00 0.27 0.00 0.07 +ammonite ammonite NOM f s 0.40 0.14 0.40 0.14 +ammonitrate ammonitrate NOM m 0.00 0.14 0.00 0.14 +ammonium ammonium NOM m s 0.36 0.00 0.36 0.00 +amniocentèse amniocentèse NOM f s 0.38 0.00 0.38 0.00 +amnios amnios NOM m 0.04 0.00 0.04 0.00 +amniotique amniotique ADJ m s 0.14 0.14 0.14 0.14 +amnistiable amnistiable ADJ s 0.00 0.07 0.00 0.07 +amnistiante amnistiant ADJ f s 0.00 0.07 0.00 0.07 +amnistie amnistie NOM f s 2.93 1.89 2.66 1.82 +amnistier amnistier VER 0.52 0.41 0.20 0.07 inf; +amnistierons amnistier VER 0.52 0.41 0.00 0.07 ind:fut:1p; +amnisties amnistie NOM f p 2.93 1.89 0.27 0.07 +amnistié amnistier VER m s 0.52 0.41 0.07 0.27 par:pas; +amnistiée amnistier VER f s 0.52 0.41 0.11 0.00 par:pas; +amnistiés amnistier VER m p 0.52 0.41 0.02 0.00 par:pas; +amnésie amnésie NOM f s 3.74 1.15 3.59 1.08 +amnésies amnésie NOM f p 3.74 1.15 0.15 0.07 +amnésique amnésique ADJ s 2.48 0.54 2.44 0.47 +amnésiques amnésique NOM p 1.33 0.20 0.17 0.00 +amochait amocher VER 3.80 2.77 0.00 0.07 ind:imp:3s; +amoche amocher VER 3.80 2.77 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amocher amocher VER 3.80 2.77 0.41 0.27 inf; +amochez amocher VER 3.80 2.77 0.02 0.00 imp:pre:2p;ind:pre:2p; +amochie amochir VER f s 0.00 0.07 0.00 0.07 par:pas; +amoché amocher VER m s 3.80 2.77 2.00 1.42 par:pas; +amochée amocher VER f s 3.80 2.77 1.03 0.47 par:pas; +amochés amocher VER m p 3.80 2.77 0.26 0.47 par:pas; +amoindri amoindrir VER m s 0.60 2.36 0.34 0.47 par:pas; +amoindrie amoindrir VER f s 0.60 2.36 0.04 0.34 par:pas; +amoindries amoindrir VER f p 0.60 2.36 0.00 0.07 par:pas; +amoindrir amoindrir VER 0.60 2.36 0.12 0.81 inf; +amoindrira amoindrir VER 0.60 2.36 0.02 0.00 ind:fut:3s; +amoindris amoindrir VER m p 0.60 2.36 0.04 0.14 ind:pre:2s;par:pas; +amoindrissait amoindrir VER 0.60 2.36 0.00 0.27 ind:imp:3s; +amoindrissement amoindrissement NOM m s 0.01 0.07 0.01 0.07 +amoindrit amoindrir VER 0.60 2.36 0.04 0.27 ind:pre:3s;ind:pas:3s; +amok amok NOM m s 0.01 0.07 0.01 0.07 +amolli amollir VER m s 0.17 5.41 0.11 0.95 par:pas; +amollie amollir VER f s 0.17 5.41 0.00 0.68 par:pas; +amollies amollir VER f p 0.17 5.41 0.00 0.41 par:pas; +amollir amollir VER 0.17 5.41 0.03 0.54 inf; +amollirent amollir VER 0.17 5.41 0.00 0.14 ind:pas:3p; +amollis amollir VER m p 0.17 5.41 0.01 0.47 ind:pre:1s;ind:pre:2s;par:pas; +amollissaient amollir VER 0.17 5.41 0.00 0.20 ind:imp:3p; +amollissait amollir VER 0.17 5.41 0.00 0.27 ind:imp:3s; +amollissant amollissant ADJ m s 0.00 0.14 0.00 0.14 +amollissement amollissement NOM m s 0.00 0.14 0.00 0.14 +amollissent amollir VER 0.17 5.41 0.01 0.27 ind:pre:3p; +amollit amollir VER 0.17 5.41 0.01 1.42 ind:pre:3s;ind:pas:3s; +amoncelaient amonceler VER 0.16 4.86 0.02 1.69 ind:imp:3p; +amoncelait amonceler VER 0.16 4.86 0.10 0.34 ind:imp:3s; +amoncelant amonceler VER 0.16 4.86 0.00 0.14 par:pre; +amonceler amonceler VER 0.16 4.86 0.01 0.14 inf; +amoncelle amonceler VER 0.16 4.86 0.00 0.34 ind:pre:3s; +amoncellement amoncellement NOM m s 0.07 6.08 0.07 4.32 +amoncellements amoncellement NOM m p 0.07 6.08 0.00 1.76 +amoncellent amonceler VER 0.16 4.86 0.02 0.34 ind:pre:3p; +amoncelleraient amonceler VER 0.16 4.86 0.00 0.07 cnd:pre:3p; +amoncelèrent amonceler VER 0.16 4.86 0.00 0.07 ind:pas:3p; +amoncelé amonceler VER m s 0.16 4.86 0.01 0.20 par:pas; +amoncelée amonceler VER f s 0.16 4.86 0.00 0.07 par:pas; +amoncelées amonceler VER f p 0.16 4.86 0.00 0.41 par:pas; +amoncelés amonceler VER m p 0.16 4.86 0.00 1.08 par:pas; +amont amont NOM m s 1.40 3.85 1.40 3.85 +amontillado amontillado NOM m s 0.29 0.14 0.29 0.14 +amoral amoral ADJ m s 0.68 0.68 0.61 0.20 +amorale amoral ADJ f s 0.68 0.68 0.03 0.41 +amoraliste amoraliste NOM s 0.05 0.00 0.05 0.00 +amoralité amoralité NOM f s 0.04 0.07 0.04 0.07 +amoraux amoral ADJ m p 0.68 0.68 0.04 0.07 +amorce amorce NOM f s 1.76 4.59 1.19 3.92 +amorcent amorcer VER 2.06 11.89 0.04 0.00 ind:pre:3p; +amorcer amorcer VER 2.06 11.89 0.40 2.64 inf; +amorcerait amorcer VER 2.06 11.89 0.01 0.07 cnd:pre:3s; +amorces amorce NOM f p 1.76 4.59 0.57 0.68 +amorcez amorcer VER 2.06 11.89 0.18 0.00 imp:pre:2p; +amorcèrent amorcer VER 2.06 11.89 0.00 0.27 ind:pas:3p; +amorcé amorcer VER m s 2.06 11.89 0.20 1.69 par:pas; +amorcée amorcer VER f s 2.06 11.89 0.30 1.01 par:pas; +amorcées amorcer VER f p 2.06 11.89 0.05 0.14 par:pas; +amorcés amorcer VER m p 2.06 11.89 0.08 0.34 par:pas; +amoroso amoroso ADV 0.45 0.07 0.45 0.07 +amorphe amorphe ADJ s 0.25 1.42 0.14 0.88 +amorphes amorphe ADJ p 0.25 1.42 0.11 0.54 +amorça amorcer VER 2.06 11.89 0.02 0.68 ind:pas:3s; +amorçage amorçage NOM m s 0.09 0.07 0.09 0.07 +amorçai amorcer VER 2.06 11.89 0.00 0.14 ind:pas:1s; +amorçaient amorcer VER 2.06 11.89 0.01 0.27 ind:imp:3p; +amorçais amorcer VER 2.06 11.89 0.00 0.07 ind:imp:1s; +amorçait amorcer VER 2.06 11.89 0.00 2.03 ind:imp:3s; +amorçant amorcer VER 2.06 11.89 0.01 0.41 par:pre; +amorçoir amorçoir NOM m s 0.00 0.07 0.00 0.07 +amorçons amorcer VER 2.06 11.89 0.40 0.00 imp:pre:1p;ind:pre:1p; +amorti amortir VER m s 1.69 4.93 0.51 0.68 par:pas; +amortie amortir VER f s 1.69 4.93 0.13 0.41 par:pas; +amorties amorti ADJ f p 0.20 1.55 0.14 0.27 +amortir amortir VER 1.69 4.93 0.41 1.62 inf; +amortirent amortir VER 1.69 4.93 0.00 0.14 ind:pas:3p; +amortiront amortir VER 1.69 4.93 0.01 0.00 ind:fut:3p; +amortis amortir VER m p 1.69 4.93 0.26 0.14 ind:pre:1s;par:pas; +amortissaient amortir VER 1.69 4.93 0.01 0.14 ind:imp:3p; +amortissait amortir VER 1.69 4.93 0.00 0.34 ind:imp:3s; +amortissant amortir VER 1.69 4.93 0.01 0.27 par:pre; +amortisse amortir VER 1.69 4.93 0.04 0.14 sub:pre:1s;sub:pre:3s; +amortissement amortissement NOM m s 0.42 0.20 0.42 0.20 +amortissent amortir VER 1.69 4.93 0.00 0.07 ind:pre:3p; +amortisseur amortisseur NOM m s 0.85 0.47 0.20 0.00 +amortisseurs amortisseur NOM m p 0.85 0.47 0.66 0.47 +amortit amortir VER 1.69 4.93 0.32 0.95 ind:pre:3s;ind:pas:3s; +amour_goût amour_goût NOM m s 0.00 0.07 0.00 0.07 +amour_passion amour_passion NOM m s 0.00 0.41 0.00 0.41 +amour_propre amour_propre NOM m s 2.54 6.89 2.54 6.76 +amour amour NOM m s 458.27 403.92 450.46 373.58 +amouracha amouracher VER 1.03 1.15 0.00 0.14 ind:pas:3s; +amourache amouracher VER 1.03 1.15 0.06 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amourachent amouracher VER 1.03 1.15 0.02 0.00 ind:pre:3p; +amouracher amouracher VER 1.03 1.15 0.44 0.20 inf; +amourachera amouracher VER 1.03 1.15 0.00 0.07 ind:fut:3s; +amouraches amouracher VER 1.03 1.15 0.02 0.07 ind:pre:2s; +amouraché amouracher VER m s 1.03 1.15 0.28 0.20 par:pas; +amourachée amouracher VER f s 1.03 1.15 0.22 0.34 par:pas; +amourer amourer VER 0.00 0.07 0.00 0.07 inf; +amourette amourette NOM f s 0.66 1.15 0.54 0.47 +amourettes amourette NOM f p 0.66 1.15 0.12 0.68 +amoureuse amoureux ADJ f s 107.79 58.45 41.65 23.11 +amoureusement amoureusement ADV 0.22 2.50 0.22 2.50 +amoureuses amoureux ADJ f p 107.79 58.45 2.73 4.05 +amoureux amoureux ADJ m 107.79 58.45 63.41 31.28 +amour_propre amour_propre NOM m p 2.54 6.89 0.00 0.14 +amours amour NOM p 458.27 403.92 7.81 30.34 +amovible amovible ADJ s 0.38 0.68 0.11 0.20 +amovibles amovible ADJ p 0.38 0.68 0.27 0.47 +amphi amphi NOM m s 0.29 1.08 0.29 0.61 +amphibie amphibie ADJ s 0.71 0.61 0.38 0.47 +amphibien amphibien NOM m s 0.20 0.00 0.12 0.00 +amphibiens amphibien NOM m p 0.20 0.00 0.08 0.00 +amphibies amphibie ADJ p 0.71 0.61 0.33 0.14 +amphigouri amphigouri NOM m s 0.02 0.27 0.00 0.27 +amphigourique amphigourique ADJ s 0.00 0.20 0.00 0.07 +amphigouriques amphigourique ADJ m p 0.00 0.20 0.00 0.14 +amphigouris amphigouri NOM m p 0.02 0.27 0.02 0.00 +amphis amphi NOM m p 0.29 1.08 0.00 0.47 +amphithéâtre amphithéâtre NOM m s 0.59 2.57 0.46 2.09 +amphithéâtres amphithéâtre NOM m p 0.59 2.57 0.14 0.47 +amphitrite amphitrite NOM f s 0.00 0.07 0.00 0.07 +amphitryon amphitryon NOM m s 0.13 0.07 0.13 0.07 +amphore amphore NOM f s 0.46 1.35 0.45 0.81 +amphores amphore NOM f p 0.46 1.35 0.01 0.54 +amphés amphé NOM m p 0.36 0.14 0.36 0.14 +amphétamine amphétamine NOM f s 1.13 0.54 0.27 0.14 +amphétamines amphétamine NOM f p 1.13 0.54 0.86 0.41 +ample ample ADJ s 1.30 11.89 0.82 8.04 +amplement amplement ADV 1.33 1.82 1.33 1.82 +amples ample ADJ p 1.30 11.89 0.48 3.85 +ampleur ampleur NOM f s 2.38 7.57 2.38 7.43 +ampleurs ampleur NOM f p 2.38 7.57 0.00 0.14 +ampli_tuner ampli_tuner NOM m s 0.01 0.00 0.01 0.00 +ampli ampli NOM m s 0.98 1.15 0.74 0.54 +amplifia amplifier VER 1.63 8.65 0.00 0.68 ind:pas:3s; +amplifiaient amplifier VER 1.63 8.65 0.00 0.47 ind:imp:3p; +amplifiait amplifier VER 1.63 8.65 0.05 2.43 ind:imp:3s; +amplifiant amplifier VER 1.63 8.65 0.01 0.54 par:pre; +amplificateur amplificateur NOM m s 0.29 0.20 0.26 0.20 +amplificateurs amplificateur NOM m p 0.29 0.20 0.04 0.00 +amplification amplification NOM f s 0.21 0.54 0.19 0.54 +amplifications amplification NOM f p 0.21 0.54 0.02 0.00 +amplifie amplifier VER 1.63 8.65 0.43 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +amplifient amplifier VER 1.63 8.65 0.20 0.41 ind:pre:3p; +amplifier amplifier VER 1.63 8.65 0.37 0.61 inf; +amplifiera amplifier VER 1.63 8.65 0.05 0.00 ind:fut:3s; +amplifierais amplifier VER 1.63 8.65 0.00 0.07 cnd:pre:1s; +amplifiez amplifier VER 1.63 8.65 0.09 0.00 imp:pre:2p;ind:pre:2p; +amplifions amplifier VER 1.63 8.65 0.03 0.00 imp:pre:1p; +amplifièrent amplifier VER 1.63 8.65 0.00 0.20 ind:pas:3p; +amplifié amplifier VER m s 1.63 8.65 0.14 0.95 par:pas; +amplifiée amplifier VER f s 1.63 8.65 0.09 0.27 par:pas; +amplifiées amplifier VER f p 1.63 8.65 0.05 0.20 par:pas; +amplifiés amplifier VER m p 1.63 8.65 0.11 0.61 par:pas; +amplis ampli NOM m p 0.98 1.15 0.24 0.61 +amplitude amplitude NOM f s 0.29 1.76 0.29 1.76 +ampoule ampoule NOM f s 7.66 19.12 4.80 11.49 +ampoules ampoule NOM f p 7.66 19.12 2.85 7.64 +ampoulé ampoulé ADJ m s 0.07 0.95 0.05 0.54 +ampoulée ampoulé ADJ f s 0.07 0.95 0.01 0.20 +ampoulées ampoulé ADJ f p 0.07 0.95 0.00 0.20 +ampoulés ampoulé ADJ m p 0.07 0.95 0.01 0.00 +ampère ampère NOM m s 0.26 0.07 0.01 0.00 +ampèremètre ampèremètre NOM m s 0.02 0.00 0.02 0.00 +ampères ampère NOM m p 0.26 0.07 0.25 0.07 +ampélopsis ampélopsis NOM m 0.00 0.07 0.00 0.07 +ampérage ampérage NOM m s 0.01 0.00 0.01 0.00 +amputa amputer VER 3.62 2.77 0.01 0.07 ind:pas:3s; +amputait amputer VER 3.62 2.77 0.03 0.07 ind:imp:3s; +amputant amputer VER 3.62 2.77 0.00 0.14 par:pre; +amputation amputation NOM f s 0.79 1.62 0.55 1.28 +amputations amputation NOM f p 0.79 1.62 0.23 0.34 +ampute amputer VER 3.62 2.77 0.71 0.20 ind:pre:1s;ind:pre:3s; +amputent amputer VER 3.62 2.77 0.02 0.00 ind:pre:3p; +amputer amputer VER 3.62 2.77 1.17 1.01 inf; +amputerai amputer VER 3.62 2.77 0.10 0.00 ind:fut:1s; +amputerait amputer VER 3.62 2.77 0.01 0.00 cnd:pre:3s; +amputez amputer VER 3.62 2.77 0.16 0.00 imp:pre:2p;ind:pre:2p; +amputé amputer VER m s 3.62 2.77 0.81 0.54 par:pas; +amputée amputer VER f s 3.62 2.77 0.40 0.61 par:pas; +amputées amputer VER f p 3.62 2.77 0.16 0.00 par:pas; +amputés amputé ADJ m p 1.28 1.49 0.81 0.27 +amène amener VER 190.32 93.92 59.80 13.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +amènent amener VER 190.32 93.92 2.29 1.62 ind:pre:3p;sub:pre:3p; +amènera amener VER 190.32 93.92 1.90 0.74 ind:fut:3s; +amènerai amener VER 190.32 93.92 2.39 0.34 ind:fut:1s; +amèneraient amener VER 190.32 93.92 0.03 0.41 cnd:pre:3p; +amènerais amener VER 190.32 93.92 0.88 0.14 cnd:pre:1s;cnd:pre:2s; +amènerait amener VER 190.32 93.92 0.36 2.16 cnd:pre:3s; +amèneras amener VER 190.32 93.92 0.28 0.07 ind:fut:2s; +amènerez amener VER 190.32 93.92 0.32 0.07 ind:fut:2p; +amèneriez amener VER 190.32 93.92 0.02 0.00 cnd:pre:2p; +amènerions amener VER 190.32 93.92 0.01 0.00 cnd:pre:1p; +amènerons amener VER 190.32 93.92 0.22 0.07 ind:fut:1p; +amèneront amener VER 190.32 93.92 0.50 0.14 ind:fut:3p; +amènes amener VER 190.32 93.92 5.79 0.81 ind:pre:2s;sub:pre:2s; +amère amer ADJ f s 11.94 30.07 3.65 12.03 +amèrement amèrement ADV 0.63 5.20 0.63 5.20 +amères amer ADJ f p 11.94 30.07 1.22 3.78 +amé amé NOM m s 0.01 0.00 0.01 0.00 +amulette amulette NOM f s 3.08 1.08 2.45 0.41 +amulettes amulette NOM f p 3.08 1.08 0.63 0.68 +améliora améliorer VER 22.34 8.65 0.03 0.14 ind:pas:3s; +améliorable améliorable ADJ s 0.00 0.07 0.00 0.07 +amélioraient améliorer VER 22.34 8.65 0.10 0.20 ind:imp:3p; +améliorait améliorer VER 22.34 8.65 0.10 0.54 ind:imp:3s; +améliorant améliorer VER 22.34 8.65 0.14 0.34 par:pre; +améliorateur améliorateur ADJ m s 0.04 0.00 0.04 0.00 +amélioration amélioration NOM f s 2.87 2.43 2.08 2.23 +améliorations amélioration NOM f p 2.87 2.43 0.79 0.20 +améliore améliorer VER 22.34 8.65 4.75 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +améliorent améliorer VER 22.34 8.65 0.56 0.34 ind:pre:3p; +améliorer améliorer VER 22.34 8.65 10.66 3.65 inf; +améliorera améliorer VER 22.34 8.65 0.79 0.20 ind:fut:3s; +améliorerait améliorer VER 22.34 8.65 0.09 0.07 cnd:pre:3s; +amélioreront améliorer VER 22.34 8.65 0.05 0.14 ind:fut:3p; +améliores améliorer VER 22.34 8.65 0.67 0.07 ind:pre:2s; +améliorez améliorer VER 22.34 8.65 0.23 0.07 imp:pre:2p;ind:pre:2p; +améliorons améliorer VER 22.34 8.65 0.07 0.00 imp:pre:1p;ind:pre:1p; +améliorèrent améliorer VER 22.34 8.65 0.01 0.00 ind:pas:3p; +amélioré améliorer VER m s 22.34 8.65 2.75 0.88 par:pas; +améliorée améliorer VER f s 22.34 8.65 1.01 0.34 par:pas; +améliorées améliorer VER f p 22.34 8.65 0.23 0.27 par:pas; +améliorés améliorer VER m p 22.34 8.65 0.10 0.20 par:pas; +aménage aménager VER 1.95 12.57 0.02 0.07 ind:pre:3s; +aménagea aménager VER 1.95 12.57 0.00 0.41 ind:pas:3s; +aménageai aménager VER 1.95 12.57 0.00 0.14 ind:pas:1s; +aménageaient aménager VER 1.95 12.57 0.01 0.07 ind:imp:3p; +aménageait aménager VER 1.95 12.57 0.00 0.14 ind:imp:3s; +aménageant aménager VER 1.95 12.57 0.00 0.14 par:pre; +aménagement aménagement NOM m s 0.69 2.77 0.41 1.82 +aménagements aménagement NOM m p 0.69 2.77 0.29 0.95 +aménagent aménager VER 1.95 12.57 0.00 0.20 ind:pre:3p; +aménager aménager VER 1.95 12.57 1.10 2.64 inf; +aménagerai aménager VER 1.95 12.57 0.01 0.07 ind:fut:1s; +aménagerait aménager VER 1.95 12.57 0.00 0.07 cnd:pre:3s; +aménagez aménager VER 1.95 12.57 0.00 0.07 imp:pre:2p; +aménagèrent aménager VER 1.95 12.57 0.00 0.14 ind:pas:3p; +aménagé aménager VER m s 1.95 12.57 0.48 3.72 par:pas; +aménagée aménager VER f s 1.95 12.57 0.29 3.31 par:pas; +aménagées aménager VER f p 1.95 12.57 0.01 0.68 par:pas; +aménagés aménager VER m p 1.95 12.57 0.03 0.74 par:pas; +aménité aménité NOM f s 0.01 1.96 0.00 1.82 +aménités aménité NOM f p 0.01 1.96 0.01 0.14 +aménorrhée aménorrhée NOM f s 0.28 0.14 0.28 0.14 +amura amurer VER 0.03 0.00 0.03 0.00 ind:pas:3s; +amure amure NOM f s 0.01 0.27 0.00 0.14 +amures amure NOM f p 0.01 0.27 0.01 0.14 +américain américain ADJ m s 63.92 74.73 30.93 25.95 +américaine américain ADJ f s 63.92 74.73 17.49 19.53 +américaines américain ADJ f p 63.92 74.73 3.48 10.47 +américains américain NOM m p 45.64 47.43 24.90 26.28 +américanisais américaniser VER 0.03 0.14 0.00 0.07 ind:imp:1s; +américanisation américanisation NOM f s 0.02 0.07 0.02 0.07 +américaniser américaniser VER 0.03 0.14 0.01 0.00 inf; +américanisme américanisme NOM m s 0.03 0.14 0.03 0.07 +américanismes américanisme NOM m p 0.03 0.14 0.00 0.07 +américanisé américaniser VER m s 0.03 0.14 0.02 0.00 par:pas; +américanisés américaniser VER m p 0.03 0.14 0.00 0.07 par:pas; +américanité américanité NOM f s 0.00 0.07 0.00 0.07 +américano_britannique américano_britannique ADJ s 0.01 0.00 0.01 0.00 +américano_japonais américano_japonais ADJ f s 0.01 0.00 0.01 0.00 +américano_russe américano_russe ADJ f s 0.01 0.00 0.01 0.00 +américano_soviétique américano_soviétique ADJ m s 0.03 0.00 0.03 0.00 +américano_suédois américano_suédois ADJ f s 0.01 0.00 0.01 0.00 +américano américano NOM m s 0.01 0.27 0.01 0.20 +américanophile américanophile ADJ s 0.00 0.27 0.00 0.20 +américanophiles américanophile ADJ p 0.00 0.27 0.00 0.07 +américanos américano NOM m p 0.01 0.27 0.00 0.07 +américium américium NOM m s 0.03 0.00 0.03 0.00 +amérindien amérindien ADJ m s 0.14 0.07 0.04 0.00 +amérindienne amérindien ADJ f s 0.14 0.07 0.06 0.00 +amérindiennes amérindien ADJ f p 0.14 0.07 0.01 0.07 +amérindiens amérindien NOM m p 0.12 0.00 0.08 0.00 +amérique amérique NOM f s 0.34 1.08 0.34 1.08 +amusa amuser VER 141.41 120.95 0.11 4.26 ind:pas:3s; +amusai amuser VER 141.41 120.95 0.01 0.54 ind:pas:1s; +amusaient amuser VER 141.41 120.95 0.75 4.53 ind:imp:3p; +amusais amuser VER 141.41 120.95 1.78 3.18 ind:imp:1s;ind:imp:2s; +amusait amuser VER 141.41 120.95 4.59 18.24 ind:imp:3s; +amusant amusant ADJ m s 29.36 18.85 25.24 13.04 +amusante amusant ADJ f s 29.36 18.85 2.34 3.11 +amusantes amusant ADJ f p 29.36 18.85 0.96 1.15 +amusants amusant ADJ m p 29.36 18.85 0.81 1.55 +amuse_bouche amuse_bouche NOM m 0.05 0.00 0.03 0.00 +amuse_bouche amuse_bouche NOM m p 0.05 0.00 0.02 0.00 +amuse_gueule amuse_gueule NOM m 1.23 0.81 0.53 0.81 +amuse_gueule amuse_gueule NOM m p 1.23 0.81 0.70 0.00 +amuse amuser VER 141.41 120.95 39.85 24.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +amusement amusement NOM m s 4.29 7.30 3.88 6.35 +amusements amusement NOM m p 4.29 7.30 0.41 0.95 +amusent amuser VER 141.41 120.95 4.03 4.26 ind:pre:3p; +amuser amuser VER 141.41 120.95 43.77 25.34 inf;;inf;;inf;; +amusera amuser VER 141.41 120.95 1.25 1.08 ind:fut:3s; +amuserai amuser VER 141.41 120.95 0.25 0.07 ind:fut:1s; +amuseraient amuser VER 141.41 120.95 0.12 0.41 cnd:pre:3p; +amuserais amuser VER 141.41 120.95 0.42 0.27 cnd:pre:1s;cnd:pre:2s; +amuserait amuser VER 141.41 120.95 1.04 2.16 cnd:pre:3s; +amuseras amuser VER 141.41 120.95 0.58 0.07 ind:fut:2s; +amuserez amuser VER 141.41 120.95 0.22 0.07 ind:fut:2p; +amuseriez amuser VER 141.41 120.95 0.03 0.00 cnd:pre:2p; +amuserons amuser VER 141.41 120.95 0.16 0.00 ind:fut:1p; +amuseront amuser VER 141.41 120.95 0.15 0.14 ind:fut:3p; +amuses amuser VER 141.41 120.95 7.11 0.54 ind:pre:2s;sub:pre:2s; +amusette amusette NOM f s 0.03 1.15 0.03 0.61 +amusettes amusette NOM f p 0.03 1.15 0.00 0.54 +amuseur amuseur NOM m s 0.24 0.34 0.18 0.20 +amuseurs amuseur NOM m p 0.24 0.34 0.06 0.14 +amusez amuser VER 141.41 120.95 14.84 1.15 imp:pre:2p;ind:pre:2p; +amusiez amuser VER 141.41 120.95 0.46 0.14 ind:imp:2p; +amusions amuser VER 141.41 120.95 0.36 0.47 ind:imp:1p; +amusâmes amuser VER 141.41 120.95 0.00 0.20 ind:pas:1p; +amusons amuser VER 141.41 120.95 1.48 0.41 imp:pre:1p;ind:pre:1p; +amusât amuser VER 141.41 120.95 0.01 0.34 sub:imp:3s; +amusèrent amuser VER 141.41 120.95 0.01 0.95 ind:pas:3p; +amusé amuser VER m s 141.41 120.95 6.99 12.16 par:pas; +amusée amuser VER f s 141.41 120.95 3.92 7.43 par:pas; +amusées amuser VER f p 141.41 120.95 0.33 0.74 par:pas; +amusés amuser VER m p 141.41 120.95 4.41 2.91 par:pas; +améthyste améthyste NOM f s 0.22 0.81 0.20 0.27 +améthystes améthyste NOM f p 0.22 0.81 0.02 0.54 +amygdale amygdale NOM f s 1.50 0.95 0.21 0.07 +amygdalectomie amygdalectomie NOM f s 0.14 0.00 0.13 0.00 +amygdalectomies amygdalectomie NOM f p 0.14 0.00 0.01 0.00 +amygdales amygdale NOM f p 1.50 0.95 1.29 0.88 +amygdalien amygdalien ADJ m s 0.02 0.00 0.02 0.00 +amygdalite amygdalite NOM f s 0.23 0.00 0.23 0.00 +amylase amylase NOM f s 0.09 0.00 0.09 0.00 +amyle amyle NOM m s 0.02 0.27 0.02 0.27 +amylique amylique ADJ m s 0.02 0.00 0.02 0.00 +amyotrophique amyotrophique ADJ f s 0.05 0.07 0.05 0.07 +an an NOM m s 866.58 685.81 148.41 76.76 +ana ana NOM m 4.91 0.14 4.91 0.14 +anabaptiste anabaptiste ADJ s 0.01 0.41 0.01 0.34 +anabaptistes anabaptiste NOM p 0.00 0.34 0.00 0.34 +anabase anabase NOM f s 0.00 0.14 0.00 0.14 +anabolisant anabolisant ADJ m s 0.02 0.00 0.01 0.00 +anabolisant anabolisant NOM m s 0.09 0.00 0.01 0.00 +anabolisants anabolisant NOM m p 0.09 0.00 0.08 0.00 +anachorète anachorète NOM m s 0.11 0.47 0.10 0.41 +anachorètes anachorète NOM m p 0.11 0.47 0.01 0.07 +anachronique anachronique ADJ s 0.04 2.36 0.04 1.69 +anachroniquement anachroniquement ADV 0.00 0.07 0.00 0.07 +anachroniques anachronique ADJ p 0.04 2.36 0.00 0.68 +anachronisme anachronisme NOM m s 0.26 0.88 0.24 0.54 +anachronismes anachronisme NOM m p 0.26 0.88 0.02 0.34 +anacoluthe anacoluthe NOM f s 0.10 0.07 0.10 0.07 +anaconda anaconda NOM m s 0.49 0.00 0.43 0.00 +anacondas anaconda NOM m p 0.49 0.00 0.06 0.00 +anadyomène anadyomène ADJ f s 0.00 0.14 0.00 0.14 +anaglyphe anaglyphe NOM m s 0.04 0.00 0.04 0.00 +anagramme anagramme NOM f s 0.60 0.20 0.47 0.07 +anagrammes anagramme NOM f p 0.60 0.20 0.13 0.14 +anal anal ADJ m s 2.18 0.74 1.43 0.54 +anale anal ADJ f s 2.18 0.74 0.35 0.07 +analeptiques analeptique NOM m p 0.01 0.00 0.01 0.00 +anales anal ADJ f p 2.18 0.74 0.23 0.14 +analgésie analgésie NOM f s 0.01 0.00 0.01 0.00 +analgésique analgésique NOM m s 0.64 0.07 0.27 0.00 +analgésiques analgésique NOM m p 0.64 0.07 0.37 0.07 +analogie analogie NOM f s 0.98 2.03 0.84 1.49 +analogies analogie NOM f p 0.98 2.03 0.14 0.54 +analogique analogique ADJ s 0.35 0.14 0.28 0.07 +analogiques analogique ADJ p 0.35 0.14 0.07 0.07 +analogue analogue ADJ s 0.53 6.82 0.38 4.66 +analogues analogue ADJ p 0.53 6.82 0.16 2.16 +analphabète analphabète ADJ s 1.18 1.22 0.78 0.88 +analphabètes analphabète NOM p 1.09 1.15 0.73 0.68 +analphabétisme analphabétisme NOM m s 0.13 0.20 0.13 0.20 +analysa analyser VER 15.40 7.43 0.00 0.41 ind:pas:3s; +analysaient analyser VER 15.40 7.43 0.02 0.14 ind:imp:3p; +analysais analyser VER 15.40 7.43 0.04 0.14 ind:imp:1s; +analysait analyser VER 15.40 7.43 0.18 0.81 ind:imp:3s; +analysant analyser VER 15.40 7.43 0.16 0.14 par:pre; +analysants analysant NOM m p 0.02 0.20 0.00 0.14 +analyse analyse NOM f s 23.26 12.43 14.87 8.31 +analysent analyser VER 15.40 7.43 0.11 0.00 ind:pre:3p; +analyser analyser VER 15.40 7.43 6.90 3.38 inf; +analysera analyser VER 15.40 7.43 0.15 0.00 ind:fut:3s; +analyserai analyser VER 15.40 7.43 0.04 0.14 ind:fut:1s; +analyserait analyser VER 15.40 7.43 0.01 0.00 cnd:pre:3s; +analyserons analyser VER 15.40 7.43 0.13 0.00 ind:fut:1p; +analyseront analyser VER 15.40 7.43 0.03 0.07 ind:fut:3p; +analyses analyse NOM f p 23.26 12.43 8.39 4.12 +analyseur analyseur NOM m s 0.45 0.00 0.29 0.00 +analyseurs analyseur NOM m p 0.45 0.00 0.16 0.00 +analysez analyser VER 15.40 7.43 0.42 0.00 imp:pre:2p;ind:pre:2p; +analysions analyser VER 15.40 7.43 0.01 0.07 ind:imp:1p; +analysons analyser VER 15.40 7.43 0.57 0.14 imp:pre:1p;ind:pre:1p; +analyste analyste NOM s 2.44 1.08 1.82 0.88 +analystes analyste NOM p 2.44 1.08 0.62 0.20 +analysèrent analyser VER 15.40 7.43 0.01 0.07 ind:pas:3p; +analysé analyser VER m s 15.40 7.43 3.36 0.61 par:pas; +analysée analyser VER f s 15.40 7.43 0.47 0.07 par:pas; +analysées analyser VER f p 15.40 7.43 0.29 0.07 par:pas; +analysés analyser VER m p 15.40 7.43 0.07 0.00 par:pas; +analytique analytique ADJ s 0.38 0.34 0.38 0.34 +analytiquement analytiquement ADV 0.01 0.07 0.01 0.07 +anamnèse anamnèse NOM f s 0.00 0.07 0.00 0.07 +anamorphose anamorphose NOM f s 0.00 0.27 0.00 0.27 +ananas ananas NOM m 2.02 3.51 2.02 3.51 +anaphase anaphase NOM f s 0.03 0.00 0.03 0.00 +anaphoriquement anaphoriquement ADV 0.00 0.14 0.00 0.14 +anaphylactique anaphylactique ADJ s 0.52 0.00 0.52 0.00 +anaphylaxie anaphylaxie NOM f s 0.06 0.00 0.06 0.00 +anar anar NOM s 0.01 0.74 0.01 0.34 +anarchie anarchie NOM f s 4.18 4.80 4.18 4.80 +anarchique anarchique ADJ s 0.18 1.15 0.18 1.08 +anarchiquement anarchiquement ADV 0.01 0.14 0.01 0.14 +anarchiques anarchique ADJ p 0.18 1.15 0.00 0.07 +anarchisant anarchisant ADJ m s 0.01 0.00 0.01 0.00 +anarchisme anarchisme NOM m s 0.71 0.47 0.71 0.47 +anarchiste anarchiste ADJ s 1.69 2.84 1.19 2.16 +anarchistes anarchiste NOM p 2.02 4.46 1.03 2.30 +anarcho_syndicalisme anarcho_syndicalisme NOM m s 0.00 0.07 0.00 0.07 +anarcho_syndicaliste anarcho_syndicaliste ADJ s 0.00 0.14 0.00 0.07 +anarcho_syndicaliste anarcho_syndicaliste ADJ m p 0.00 0.14 0.00 0.07 +anars anar NOM p 0.01 0.74 0.00 0.41 +anas anas NOM m 0.02 0.07 0.02 0.07 +anastomose anastomose NOM f s 0.08 0.07 0.08 0.00 +anastomoses anastomose NOM f p 0.08 0.07 0.00 0.07 +anathème anathème NOM m s 1.12 1.08 1.08 0.88 +anathèmes anathème NOM m p 1.12 1.08 0.03 0.20 +anathématisait anathématiser VER 0.00 0.14 0.00 0.07 ind:imp:3s; +anathématisé anathématiser VER m s 0.00 0.14 0.00 0.07 par:pas; +anatidés anatidé NOM m p 0.00 0.07 0.00 0.07 +anatifes anatife NOM m p 0.01 0.07 0.01 0.07 +anatomie anatomie NOM f s 3.63 4.80 3.37 4.66 +anatomies anatomie NOM f p 3.63 4.80 0.26 0.14 +anatomique anatomique ADJ s 0.26 1.69 0.10 1.15 +anatomiquement anatomiquement ADV 0.09 0.20 0.09 0.20 +anatomiques anatomique ADJ p 0.26 1.69 0.16 0.54 +anatomiser anatomiser VER 0.00 0.07 0.00 0.07 inf; +anatomiste anatomiste NOM s 0.00 0.34 0.00 0.27 +anatomistes anatomiste NOM p 0.00 0.34 0.00 0.07 +anatomophysiologique anatomophysiologique ADJ m s 0.00 0.07 0.00 0.07 +anaérobie anaérobie ADJ m s 0.05 0.00 0.05 0.00 +anaux anal ADJ m p 2.18 0.74 0.16 0.00 +ancestral ancestral ADJ m s 2.22 5.41 1.04 1.89 +ancestrale ancestral ADJ f s 2.22 5.41 0.97 2.03 +ancestralement ancestralement ADV 0.01 0.14 0.01 0.14 +ancestrales ancestral ADJ f p 2.22 5.41 0.12 1.35 +ancestralité ancestralité NOM f s 0.00 0.07 0.00 0.07 +ancestraux ancestral ADJ m p 2.22 5.41 0.09 0.14 +anch_io_son_pittore anch_io_son_pittore ADV 0.00 0.07 0.00 0.07 +anche anche NOM f s 0.17 0.27 0.17 0.27 +anchilops anchilops NOM m 0.00 0.07 0.00 0.07 +anchoïade anchoïade NOM f s 0.00 0.07 0.00 0.07 +anchois anchois NOM m 1.30 2.57 1.30 2.57 +ancien ancien ADJ m s 73.16 154.86 32.41 59.26 +ancienne ancien ADJ f s 73.16 154.86 19.82 37.09 +anciennement anciennement ADV 0.45 1.01 0.45 1.01 +anciennes ancien ADJ f p 73.16 154.86 6.22 18.65 +ancienneté ancienneté NOM f s 0.90 1.55 0.90 1.55 +anciens ancien ADJ m p 73.16 154.86 14.72 39.86 +ancillaire ancillaire ADJ f s 0.01 0.88 0.00 0.34 +ancillaires ancillaire ADJ p 0.01 0.88 0.01 0.54 +ancolie ancolie NOM f s 0.00 0.07 0.00 0.07 +ancra ancrer VER 1.79 5.54 0.10 0.20 ind:pas:3s; +ancrage ancrage NOM m s 0.19 0.41 0.19 0.41 +ancraient ancrer VER 1.79 5.54 0.00 0.07 ind:imp:3p; +ancrais ancrer VER 1.79 5.54 0.00 0.07 ind:imp:1s; +ancrait ancrer VER 1.79 5.54 0.01 0.14 ind:imp:3s; +ancrant ancrer VER 1.79 5.54 0.00 0.07 par:pre; +ancre ancre NOM f s 4.75 5.81 4.63 4.53 +ancrer ancrer VER 1.79 5.54 0.26 0.61 inf; +ancrera ancrer VER 1.79 5.54 0.02 0.00 ind:fut:3s; +ancres ancre NOM f p 4.75 5.81 0.11 1.28 +ancrez ancrer VER 1.79 5.54 0.02 0.00 imp:pre:2p; +ancré ancrer VER m s 1.79 5.54 0.64 2.16 par:pas; +ancrée ancrer VER f s 1.79 5.54 0.42 1.08 par:pas; +ancrées ancrer VER f p 1.79 5.54 0.05 0.34 par:pas; +ancrés ancré ADJ m p 0.40 1.08 0.14 0.20 +ancêtre ancêtre NOM s 12.75 22.23 1.61 6.28 +ancêtres ancêtre NOM p 12.75 22.23 11.14 15.95 +anda anda NOM m s 1.13 0.14 1.13 0.14 +andain andain NOM m s 0.00 0.20 0.00 0.07 +andains andain NOM m p 0.00 0.20 0.00 0.14 +andalou andalou ADJ m s 0.21 2.23 0.20 1.08 +andalous andalou NOM m p 0.14 1.15 0.14 0.27 +andalouse andalouse NOM f s 0.02 0.47 0.02 0.47 +andalouses andalou ADJ f p 0.21 2.23 0.01 0.20 +andante andante NOM m s 0.14 0.47 0.14 0.47 +andine andin ADJ f s 0.01 0.14 0.01 0.07 +andines andin ADJ f p 0.01 0.14 0.00 0.07 +andorranes andorran ADJ f p 0.00 0.07 0.00 0.07 +andouille andouille NOM f s 6.94 6.28 6.29 4.86 +andouiller andouiller NOM m s 0.02 1.28 0.00 0.20 +andouillers andouiller NOM m p 0.02 1.28 0.02 1.08 +andouilles andouille NOM f p 6.94 6.28 0.65 1.42 +andouillette andouillette NOM f s 0.07 0.74 0.04 0.54 +andouillettes andouillette NOM f p 0.07 0.74 0.03 0.20 +andrinople andrinople NOM f s 0.00 0.20 0.00 0.20 +androïde androïde NOM m s 0.82 0.07 0.44 0.07 +androïdes androïde NOM m p 0.82 0.07 0.38 0.00 +androgènes androgène NOM m p 0.01 0.00 0.01 0.00 +androgyne androgyne NOM s 0.17 0.41 0.16 0.41 +androgynes androgyne ADJ p 0.06 0.54 0.01 0.27 +androgynie androgynie NOM f s 0.00 0.07 0.00 0.07 +androgynique androgynique ADJ s 0.00 0.07 0.00 0.07 +andropause andropause NOM f s 0.23 0.14 0.23 0.14 +anecdote anecdote NOM f s 2.12 12.91 1.13 5.34 +anecdotes anecdote NOM f p 2.12 12.91 0.99 7.57 +anecdotier anecdotier NOM m s 0.01 0.00 0.01 0.00 +anecdotique anecdotique ADJ s 0.18 0.81 0.14 0.61 +anecdotiquement anecdotiquement ADV 0.00 0.14 0.00 0.14 +anecdotiques anecdotique ADJ p 0.18 0.81 0.04 0.20 +anesthésia anesthésier VER 1.18 1.55 0.00 0.07 ind:pas:3s; +anesthésiaient anesthésier VER 1.18 1.55 0.00 0.14 ind:imp:3p; +anesthésiait anesthésier VER 1.18 1.55 0.00 0.07 ind:imp:3s; +anesthésiant anesthésiant NOM m s 0.44 0.14 0.44 0.07 +anesthésiante anesthésiant ADJ f s 0.32 0.20 0.00 0.07 +anesthésiantes anesthésiant ADJ f p 0.32 0.20 0.02 0.14 +anesthésiants anesthésiant ADJ m p 0.32 0.20 0.02 0.00 +anesthésie anesthésie NOM f s 3.74 2.70 3.71 2.64 +anesthésient anesthésier VER 1.18 1.55 0.01 0.07 ind:pre:3p; +anesthésier anesthésier VER 1.18 1.55 0.37 0.07 inf; +anesthésierai anesthésier VER 1.18 1.55 0.01 0.00 ind:fut:1s; +anesthésies anesthésie NOM f p 3.74 2.70 0.02 0.07 +anesthésiez anesthésier VER 1.18 1.55 0.16 0.00 imp:pre:2p;ind:pre:2p; +anesthésions anesthésier VER 1.18 1.55 0.02 0.00 ind:pre:1p; +anesthésique anesthésique NOM m s 0.47 0.34 0.44 0.34 +anesthésiques anesthésique NOM m p 0.47 0.34 0.03 0.00 +anesthésiste anesthésiste NOM s 1.07 0.61 0.82 0.61 +anesthésistes anesthésiste NOM p 1.07 0.61 0.25 0.00 +anesthésié anesthésier VER m s 1.18 1.55 0.14 0.20 par:pas; +anesthésiée anesthésier VER f s 1.18 1.55 0.08 0.54 par:pas; +anesthésiées anesthésier VER f p 1.18 1.55 0.00 0.07 par:pas; +anesthésiés anesthésier VER m p 1.18 1.55 0.01 0.20 par:pas; +aneth aneth NOM m s 0.07 0.61 0.07 0.61 +anfractuosité anfractuosité NOM f s 0.14 1.28 0.14 0.54 +anfractuosités anfractuosité NOM f p 0.14 1.28 0.00 0.74 +ange ange NOM m s 69.27 42.50 47.90 21.62 +angelot angelot NOM m s 0.69 1.49 0.37 0.74 +angelots angelot NOM m p 0.69 1.49 0.32 0.74 +anges ange NOM m p 69.27 42.50 21.38 20.88 +angevin angevin ADJ m s 0.10 0.07 0.10 0.00 +angevine angevin NOM f s 0.00 0.14 0.00 0.07 +angevins angevin NOM m p 0.00 0.14 0.00 0.07 +angine angine NOM f s 1.39 2.57 1.20 2.30 +angines angine NOM f p 1.39 2.57 0.19 0.27 +angiocholite angiocholite NOM f s 0.01 0.00 0.01 0.00 +angiographie angiographie NOM f s 0.32 0.00 0.32 0.00 +angiome angiome NOM m s 0.13 0.00 0.13 0.00 +angioplastie angioplastie NOM f s 0.19 0.00 0.19 0.00 +anglais anglais NOM m 51.01 79.53 48.81 69.46 +anglaise anglais ADJ f s 32.22 61.69 8.21 18.58 +anglaises anglais ADJ f p 32.22 61.69 1.00 6.42 +angle angle NOM m s 13.29 57.64 11.56 46.89 +angler angler VER 0.22 0.20 0.01 0.07 inf; +angles angle NOM m p 13.29 57.64 1.73 10.74 +angleterre angleterre NOM f s 0.20 0.47 0.20 0.47 +anglican anglican ADJ m s 0.16 0.61 0.06 0.34 +anglicane anglican ADJ f s 0.16 0.61 0.10 0.14 +anglicans anglican NOM m p 0.04 0.07 0.01 0.00 +angliche angliche NOM s 0.44 0.41 0.32 0.20 +angliches angliche NOM p 0.44 0.41 0.12 0.20 +anglicisation anglicisation NOM f s 0.00 0.07 0.00 0.07 +angliciser angliciser VER 0.11 0.00 0.01 0.00 inf; +anglicismes anglicisme NOM m p 0.00 0.07 0.00 0.07 +anglicisé angliciser VER m s 0.11 0.00 0.10 0.00 par:pas; +anglo_albanais anglo_albanais ADJ m s 0.00 0.07 0.00 0.07 +anglo_allemand anglo_allemand ADJ m s 0.01 0.00 0.01 0.00 +anglo_américain anglo_américain ADJ m s 0.05 0.20 0.01 0.07 +anglo_américain anglo_américain ADJ f s 0.05 0.20 0.02 0.07 +anglo_américain anglo_américain ADJ f p 0.05 0.20 0.00 0.07 +anglo_américain anglo_américain ADJ m p 0.05 0.20 0.02 0.00 +anglo_arabe anglo_arabe ADJ s 0.00 0.27 0.00 0.14 +anglo_arabe anglo_arabe ADJ m p 0.00 0.27 0.00 0.14 +anglo_chinois anglo_chinois ADJ m s 0.01 0.00 0.01 0.00 +anglo_français anglo_français ADJ m s 0.02 0.14 0.01 0.07 +anglo_français anglo_français ADJ f s 0.02 0.14 0.01 0.07 +anglo_hellénique anglo_hellénique ADJ f s 0.00 0.07 0.00 0.07 +anglo_irlandais anglo_irlandais ADJ m s 0.00 0.27 0.00 0.27 +anglo_normand anglo_normand ADJ m s 0.04 0.34 0.00 0.14 +anglo_normand anglo_normand ADJ f s 0.04 0.34 0.00 0.20 +anglo_normand anglo_normand ADJ f p 0.04 0.34 0.04 0.00 +anglo_russe anglo_russe ADJ m s 0.02 0.00 0.01 0.00 +anglo_russe anglo_russe ADJ f p 0.02 0.00 0.01 0.00 +anglo_saxon anglo_saxon ADJ m s 0.48 4.12 0.23 1.08 +anglo_saxon anglo_saxon ADJ f s 0.48 4.12 0.04 0.74 +anglo_saxon anglo_saxon ADJ f p 0.48 4.12 0.18 0.88 +anglo_saxon anglo_saxon ADJ m p 0.48 4.12 0.03 1.42 +anglo_soviétique anglo_soviétique ADJ s 0.02 0.07 0.02 0.07 +anglo_égyptien anglo_égyptien ADJ m s 0.01 0.41 0.00 0.20 +anglo_égyptien anglo_égyptien ADJ f s 0.01 0.41 0.01 0.20 +anglo_éthiopien anglo_éthiopien ADJ m s 0.00 0.07 0.00 0.07 +anglomane anglomane ADJ s 0.00 0.14 0.00 0.07 +anglomanes anglomane ADJ p 0.00 0.14 0.00 0.07 +anglomanie anglomanie NOM f s 0.00 0.07 0.00 0.07 +anglophile anglophile ADJ f s 0.02 0.20 0.02 0.20 +anglophobe anglophobe ADJ s 0.01 0.00 0.01 0.00 +anglophobes anglophobe NOM p 0.00 0.07 0.00 0.07 +anglophobie anglophobie NOM f s 0.00 0.07 0.00 0.07 +anglophone anglophone ADJ s 0.10 0.14 0.09 0.14 +anglophones anglophone NOM p 0.01 0.07 0.01 0.07 +angoissa angoisser VER 5.84 5.88 0.00 0.14 ind:pas:3s; +angoissaient angoisser VER 5.84 5.88 0.01 0.14 ind:imp:3p; +angoissais angoisser VER 5.84 5.88 0.06 0.00 ind:imp:1s; +angoissait angoisser VER 5.84 5.88 0.07 1.35 ind:imp:3s; +angoissant angoissant ADJ m s 1.87 4.19 0.80 1.96 +angoissante angoissant ADJ f s 1.87 4.19 1.05 1.42 +angoissantes angoissant ADJ f p 1.87 4.19 0.01 0.27 +angoissants angoissant ADJ m p 1.87 4.19 0.01 0.54 +angoisse angoisse NOM f s 17.82 68.99 14.98 60.68 +angoissent angoisser VER 5.84 5.88 0.25 0.00 ind:pre:3p; +angoisser angoisser VER 5.84 5.88 0.98 0.27 inf; +angoisserait angoisser VER 5.84 5.88 0.01 0.00 cnd:pre:3s; +angoisses angoisse NOM f p 17.82 68.99 2.84 8.31 +angoissez angoisser VER 5.84 5.88 0.02 0.00 ind:pre:2p; +angoissiez angoisser VER 5.84 5.88 0.01 0.00 ind:imp:2p; +angoissé angoisser VER m s 5.84 5.88 0.55 0.95 par:pas; +angoissée angoissé ADJ f s 1.17 5.27 0.88 2.09 +angoissées angoissé NOM f p 0.16 1.22 0.01 0.07 +angoissés angoissé ADJ m p 1.17 5.27 0.01 0.27 +angolais angolais ADJ m p 0.20 0.07 0.20 0.07 +angon angon NOM m s 0.00 0.41 0.00 0.41 +angor angor NOM m s 0.01 0.00 0.01 0.00 +angora angora NOM m s 0.29 0.47 0.29 0.34 +angoras angora NOM m p 0.29 0.47 0.00 0.14 +angström angström NOM m s 0.01 0.20 0.01 0.20 +anguille anguille NOM f s 4.32 3.31 1.74 2.03 +anguilles anguille NOM f p 4.32 3.31 2.58 1.28 +anguillules anguillule NOM f p 0.00 0.07 0.00 0.07 +anguis anguis NOM m 0.00 0.07 0.00 0.07 +angéite angéite NOM f s 0.01 0.00 0.01 0.00 +angulaire angulaire ADJ s 0.36 0.47 0.32 0.34 +angulaires angulaire ADJ p 0.36 0.47 0.05 0.14 +anguleuse anguleux ADJ f s 0.63 3.24 0.45 0.81 +anguleuses anguleux ADJ f p 0.63 3.24 0.01 0.61 +anguleux anguleux ADJ m 0.63 3.24 0.17 1.82 +angélique angélique ADJ s 0.59 4.86 0.41 3.85 +angéliquement angéliquement ADV 0.00 0.14 0.00 0.14 +angéliques angélique ADJ p 0.59 4.86 0.17 1.01 +angélisme angélisme NOM m s 0.00 0.47 0.00 0.47 +angulosité angulosité NOM f s 0.00 0.07 0.00 0.07 +angélus angélus NOM m 0.80 1.28 0.80 1.28 +angustura angustura NOM f s 0.00 0.27 0.00 0.27 +anhèle anhéler VER 0.00 0.07 0.00 0.07 ind:pre:3s; +anhélations anhélation NOM f p 0.00 0.07 0.00 0.07 +anhydre anhydre ADJ f s 0.04 0.00 0.04 0.00 +anhydride anhydride NOM m s 0.04 0.07 0.04 0.07 +anicroche anicroche NOM f s 0.12 0.74 0.06 0.54 +anicroches anicroche NOM f p 0.12 0.74 0.06 0.20 +aniline aniline NOM f s 0.01 0.27 0.01 0.27 +anima animer VER 6.28 33.78 0.29 1.89 ind:pas:3s; +animai animer VER 6.28 33.78 0.34 0.07 ind:pas:1s; +animaient animer VER 6.28 33.78 0.12 1.42 ind:imp:3p; +animais animer VER 6.28 33.78 0.03 0.07 ind:imp:1s; +animait animer VER 6.28 33.78 0.46 6.28 ind:imp:3s; +animal_roi animal_roi NOM m s 0.00 0.07 0.00 0.07 +animal animal NOM m s 80.50 82.64 36.89 47.23 +animalcule animalcule NOM m s 0.00 0.14 0.00 0.14 +animale animal ADJ f s 6.33 14.19 1.96 6.49 +animalement animalement ADV 0.00 0.27 0.00 0.27 +animalerie animalerie NOM f s 0.42 0.07 0.42 0.07 +animales animal ADJ f p 6.33 14.19 1.03 1.69 +animalier animalier ADJ m s 0.48 0.61 0.32 0.20 +animaliers animalier ADJ m p 0.48 0.61 0.12 0.00 +animalisait animaliser VER 0.00 0.14 0.00 0.07 ind:imp:3s; +animalise animaliser VER 0.00 0.14 0.00 0.07 ind:pre:3s; +animalière animalier ADJ f s 0.48 0.61 0.01 0.34 +animalières animalier ADJ f p 0.48 0.61 0.03 0.07 +animalité animalité NOM f s 0.01 1.42 0.01 1.42 +animant animer VER 6.28 33.78 0.01 0.81 par:pre; +animas animer VER 6.28 33.78 0.03 0.00 ind:pas:2s; +animateur animateur NOM m s 2.72 2.23 1.90 1.42 +animateurs animateur NOM m p 2.72 2.23 0.12 0.61 +animation animation NOM f s 1.53 8.31 1.45 8.18 +animations animation NOM f p 1.53 8.31 0.08 0.14 +animatrice animateur NOM f s 2.72 2.23 0.69 0.14 +animatrices animateur NOM f p 2.72 2.23 0.00 0.07 +animaux_espions animaux_espions NOM m p 0.01 0.00 0.01 0.00 +animaux animal NOM m p 80.50 82.64 43.62 35.41 +anime animer VER 6.28 33.78 1.82 5.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +animent animer VER 6.28 33.78 0.12 1.22 ind:pre:3p; +animer animer VER 6.28 33.78 0.94 4.12 inf; +animeraient animer VER 6.28 33.78 0.00 0.14 cnd:pre:3p; +animerait animer VER 6.28 33.78 0.00 0.27 cnd:pre:3s; +animes animer VER 6.28 33.78 0.07 0.00 ind:pre:2s; +animique animique ADJ s 0.00 0.07 0.00 0.07 +animisme animisme NOM m s 0.00 0.07 0.00 0.07 +animiste animiste ADJ f s 0.00 0.07 0.00 0.07 +animosité animosité NOM f s 1.09 2.64 1.07 2.57 +animosités animosité NOM f p 1.09 2.64 0.01 0.07 +animât animer VER 6.28 33.78 0.00 0.20 sub:imp:3s; +animèrent animer VER 6.28 33.78 0.00 0.81 ind:pas:3p; +animé animé ADJ m s 6.21 8.92 2.79 3.18 +animée animer VER f s 6.28 33.78 0.37 3.78 par:pas; +animées animé ADJ f p 6.21 8.92 0.42 1.22 +animés animé ADJ m p 6.21 8.92 2.66 1.42 +animus animus NOM m 0.02 0.00 0.02 0.00 +anionique anionique ADJ m s 0.01 0.00 0.01 0.00 +anis anis NOM m 1.05 2.50 1.05 2.50 +anise aniser VER 0.11 0.20 0.10 0.00 imp:pre:2s; +anisette anisette NOM f s 0.15 1.15 0.15 1.01 +anisettes anisette NOM f p 0.15 1.15 0.00 0.14 +anisé aniser VER m s 0.11 0.20 0.00 0.07 par:pas; +anisée aniser VER f s 0.11 0.20 0.01 0.07 par:pas; +anisées aniser VER f p 0.11 0.20 0.00 0.07 par:pas; +ankh ankh NOM m s 0.07 0.07 0.07 0.07 +ankylosait ankyloser VER 0.00 0.88 0.00 0.14 ind:imp:3s; +ankylose ankylose NOM f s 0.12 0.95 0.12 0.88 +ankyloser ankyloser VER 0.00 0.88 0.00 0.14 inf; +ankyloses ankylose NOM f p 0.12 0.95 0.00 0.07 +ankylosé ankylosé ADJ m s 0.13 1.28 0.11 0.47 +ankylosée ankylosé ADJ f s 0.13 1.28 0.01 0.41 +ankylosées ankylosé ADJ f p 0.13 1.28 0.00 0.20 +ankylosés ankylosé ADJ m p 0.13 1.28 0.00 0.20 +annales annales NOM f 0.78 1.76 0.78 1.76 +annamite annamite NOM s 0.00 0.34 0.00 0.14 +annamites annamite NOM p 0.00 0.34 0.00 0.20 +anneau anneau NOM m s 21.61 17.50 17.59 9.53 +anneaux anneau NOM m p 21.61 17.50 4.01 7.97 +annelets annelet NOM m p 0.00 0.07 0.00 0.07 +annelé annelé ADJ m s 0.00 1.22 0.00 0.27 +annelée annelé ADJ f s 0.00 1.22 0.00 0.41 +annelées annelé ADJ f p 0.00 1.22 0.00 0.34 +annelures annelure NOM f p 0.00 0.07 0.00 0.07 +annelés annelé ADJ m p 0.00 1.22 0.00 0.20 +annexa annexer VER 0.90 3.45 0.00 0.07 ind:pas:3s; +annexaient annexer VER 0.90 3.45 0.00 0.34 ind:imp:3p; +annexait annexer VER 0.90 3.45 0.00 0.14 ind:imp:3s; +annexant annexer VER 0.90 3.45 0.02 0.07 par:pre; +annexe annexe NOM f s 1.36 2.97 1.27 2.03 +annexer annexer VER 0.90 3.45 0.51 0.81 inf; +annexes annexe ADJ p 1.17 1.22 0.46 0.61 +annexion annexion NOM f s 0.37 0.74 0.37 0.61 +annexions annexion NOM f p 0.37 0.74 0.00 0.14 +annexèrent annexer VER 0.90 3.45 0.00 0.07 ind:pas:3p; +annexé annexer VER m s 0.90 3.45 0.14 0.88 par:pas; +annexée annexer VER f s 0.90 3.45 0.02 0.41 par:pas; +annexées annexer VER f p 0.90 3.45 0.00 0.14 par:pas; +annexés annexer VER m p 0.90 3.45 0.04 0.14 par:pas; +annihila annihiler VER 0.84 0.74 0.00 0.07 ind:pas:3s; +annihilait annihiler VER 0.84 0.74 0.00 0.14 ind:imp:3s; +annihilant annihiler VER 0.84 0.74 0.01 0.00 par:pre; +annihilante annihilant ADJ f s 0.00 0.14 0.00 0.07 +annihilateur annihilateur ADJ m s 0.12 0.00 0.12 0.00 +annihilation annihilation NOM f s 0.46 0.07 0.46 0.07 +annihile annihiler VER 0.84 0.74 0.06 0.00 imp:pre:2s;ind:pre:3s; +annihilent annihiler VER 0.84 0.74 0.00 0.14 ind:pre:3p; +annihiler annihiler VER 0.84 0.74 0.36 0.27 inf; +annihilez annihiler VER 0.84 0.74 0.01 0.00 ind:pre:2p; +annihilons annihiler VER 0.84 0.74 0.01 0.00 imp:pre:1p; +annihilé annihiler VER m s 0.84 0.74 0.32 0.07 par:pas; +annihilée annihiler VER f s 0.84 0.74 0.08 0.07 par:pas; +anniv anniv NOM m s 0.26 0.00 0.26 0.00 +anniversaire anniversaire NOM m s 82.79 12.97 80.24 12.09 +anniversaires anniversaire NOM m p 82.79 12.97 2.55 0.88 +annonce annonce NOM f s 23.76 16.62 18.93 13.18 +annoncent annoncer VER 55.67 133.92 1.79 2.77 ind:pre:3p; +annoncer annoncer VER 55.67 133.92 21.14 23.38 inf; +annoncera annoncer VER 55.67 133.92 0.74 0.27 ind:fut:3s; +annoncerai annoncer VER 55.67 133.92 0.88 0.07 ind:fut:1s; +annonceraient annoncer VER 55.67 133.92 0.00 0.07 cnd:pre:3p; +annoncerais annoncer VER 55.67 133.92 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +annoncerait annoncer VER 55.67 133.92 0.04 0.54 cnd:pre:3s; +annonceras annoncer VER 55.67 133.92 0.04 0.07 ind:fut:2s; +annoncerez annoncer VER 55.67 133.92 0.23 0.07 ind:fut:2p; +annoncerons annoncer VER 55.67 133.92 0.13 0.07 ind:fut:1p; +annonceront annoncer VER 55.67 133.92 0.10 0.07 ind:fut:3p; +annonces annonce NOM f p 23.76 16.62 4.83 3.45 +annonceur annonceur NOM m s 0.58 0.54 0.09 0.20 +annonceurs annonceur NOM m p 0.58 0.54 0.50 0.07 +annonceuse annonceur NOM f s 0.58 0.54 0.00 0.27 +annoncez annoncer VER 55.67 133.92 2.00 0.47 imp:pre:2p;ind:pre:2p; +annonciateur annonciateur ADJ m s 0.28 2.30 0.25 0.88 +annonciateurs annonciateur ADJ m p 0.28 2.30 0.03 0.88 +annonciation annonciation NOM f s 0.01 0.61 0.00 0.54 +annonciations annonciation NOM f p 0.01 0.61 0.01 0.07 +annonciatrice annonciateur ADJ f s 0.28 2.30 0.00 0.34 +annonciatrices annonciateur ADJ f p 0.28 2.30 0.00 0.20 +annonciez annoncer VER 55.67 133.92 0.06 0.07 ind:imp:2p; +annoncions annoncer VER 55.67 133.92 0.13 0.07 ind:imp:1p; +annoncèrent annoncer VER 55.67 133.92 0.03 1.15 ind:pas:3p; +annoncé annoncer VER m s 55.67 133.92 9.15 15.68 par:pas; +annoncée annoncer VER f s 55.67 133.92 0.85 2.91 par:pas; +annoncées annoncer VER f p 55.67 133.92 0.18 0.88 par:pas; +annoncés annoncer VER m p 55.67 133.92 0.28 0.41 par:pas; +annonça annoncer VER 55.67 133.92 0.56 23.38 ind:pas:3s; +annonçai annoncer VER 55.67 133.92 0.02 1.76 ind:pas:1s; +annonçaient annoncer VER 55.67 133.92 0.28 5.14 ind:imp:3p; +annonçais annoncer VER 55.67 133.92 0.13 0.88 ind:imp:1s;ind:imp:2s; +annonçait annoncer VER 55.67 133.92 1.03 21.96 ind:imp:3s; +annonçant annoncer VER 55.67 133.92 1.22 9.05 par:pre; +annonçons annoncer VER 55.67 133.92 0.26 0.00 imp:pre:1p;ind:pre:1p; +annonçât annoncer VER 55.67 133.92 0.00 0.74 sub:imp:3s; +annotais annoter VER 0.12 0.81 0.00 0.14 ind:imp:1s; +annotait annoter VER 0.12 0.81 0.00 0.14 ind:imp:3s; +annotant annoter VER 0.12 0.81 0.00 0.07 par:pre; +annotation annotation NOM f s 0.25 0.88 0.19 0.14 +annotations annotation NOM f p 0.25 0.88 0.05 0.74 +annote annoter VER 0.12 0.81 0.02 0.07 ind:pre:1s;ind:pre:3s; +annoter annoter VER 0.12 0.81 0.03 0.00 inf; +annoté annoter VER m s 0.12 0.81 0.02 0.20 par:pas; +annotée annoter VER f s 0.12 0.81 0.01 0.14 par:pas; +annotés annoter VER m p 0.12 0.81 0.04 0.07 par:pas; +annuaire annuaire NOM m s 4.56 3.78 4.43 3.04 +annuaires annuaire NOM m p 4.56 3.78 0.14 0.74 +année_lumière année_lumière NOM f s 1.16 1.01 0.03 0.07 +année année NOM f s 316.25 375.54 129.64 128.99 +annuel annuel ADJ m s 4.47 4.12 3.28 1.35 +annuelle annuelle ADJ f s 1.30 0.00 1.30 0.00 +annuellement annuellement ADV 0.15 0.14 0.15 0.14 +annuelles annuel ADJ f p 4.47 4.12 0.22 0.47 +annuels annuel ADJ m p 4.47 4.12 0.41 0.47 +année_homme année_homme NOM f p 0.01 0.00 0.01 0.00 +année_lumière année_lumière NOM f p 1.16 1.01 1.13 0.95 +années année NOM f p 316.25 375.54 186.61 246.55 +annula annuler VER 42.11 5.47 0.00 0.20 ind:pas:3s; +annulai annuler VER 42.11 5.47 0.00 0.07 ind:pas:1s; +annulaient annuler VER 42.11 5.47 0.12 0.27 ind:imp:3p; +annulaire annulaire NOM m s 0.55 2.64 0.55 2.64 +annulais annuler VER 42.11 5.47 0.36 0.07 ind:imp:1s;ind:imp:2s; +annulait annuler VER 42.11 5.47 0.09 0.68 ind:imp:3s; +annulant annuler VER 42.11 5.47 0.30 0.34 par:pre; +annulation annulation NOM f s 2.46 0.88 2.28 0.74 +annulations annulation NOM f p 2.46 0.88 0.18 0.14 +annule annuler VER 42.11 5.47 7.34 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +annulent annuler VER 42.11 5.47 0.52 0.27 ind:pre:3p; +annuler annuler VER 42.11 5.47 14.08 1.15 inf; +annulera annuler VER 42.11 5.47 0.26 0.00 ind:fut:3s; +annulerai annuler VER 42.11 5.47 0.17 0.00 ind:fut:1s; +annuleraient annuler VER 42.11 5.47 0.02 0.07 cnd:pre:3p; +annulerais annuler VER 42.11 5.47 0.08 0.00 cnd:pre:1s; +annulerait annuler VER 42.11 5.47 0.17 0.20 cnd:pre:3s; +annulerez annuler VER 42.11 5.47 0.11 0.00 ind:fut:2p; +annulerons annuler VER 42.11 5.47 0.04 0.00 ind:fut:1p; +annuleront annuler VER 42.11 5.47 0.08 0.00 ind:fut:3p; +annules annuler VER 42.11 5.47 0.39 0.00 ind:pre:2s; +annulez annuler VER 42.11 5.47 3.02 0.14 imp:pre:2p;ind:pre:2p; +annuliez annuler VER 42.11 5.47 0.07 0.00 ind:imp:2p; +annulons annuler VER 42.11 5.47 0.12 0.00 imp:pre:1p;ind:pre:1p; +annulèrent annuler VER 42.11 5.47 0.01 0.14 ind:pas:3p; +annulé annuler VER m s 42.11 5.47 10.94 0.41 par:pas; +annulée annuler VER f s 42.11 5.47 3.08 0.27 par:pas; +annulées annuler VER f p 42.11 5.47 0.27 0.14 par:pas; +annulés annuler VER m p 42.11 5.47 0.46 0.20 par:pas; +anobli anoblir VER m s 0.47 0.68 0.08 0.20 par:pas; +anoblie anoblir VER f s 0.47 0.68 0.27 0.00 par:pas; +anoblies anobli ADJ f p 0.02 0.07 0.00 0.07 +anoblir anoblir VER 0.47 0.68 0.01 0.20 inf; +anoblissait anoblir VER 0.47 0.68 0.00 0.07 ind:imp:3s; +anoblissant anoblir VER 0.47 0.68 0.00 0.07 par:pre; +anoblissante anoblissant ADJ f s 0.00 0.07 0.00 0.07 +anoblissement anoblissement NOM m s 0.00 0.14 0.00 0.14 +anoblit anoblir VER 0.47 0.68 0.11 0.14 ind:pre:3s;ind:pas:3s; +anode anode NOM f s 0.02 0.00 0.02 0.00 +anodin anodin ADJ m s 1.03 8.65 0.38 2.97 +anodine anodin ADJ f s 1.03 8.65 0.20 2.03 +anodines anodin ADJ f p 1.03 8.65 0.20 2.09 +anodins anodin ADJ m p 1.03 8.65 0.25 1.55 +anodique anodique ADJ f s 0.20 0.00 0.20 0.00 +anodisé anodiser VER m s 0.21 0.07 0.21 0.07 par:pas; +anomalie anomalie NOM f s 3.96 2.16 2.75 1.55 +anomalies anomalie NOM f p 3.96 2.16 1.21 0.61 +anomoure anomoure NOM m s 0.00 0.07 0.00 0.07 +anonymat anonymat NOM m s 1.41 3.04 1.41 3.04 +anonyme anonyme ADJ s 11.65 14.80 7.74 9.26 +anonymement anonymement ADV 0.42 0.14 0.42 0.14 +anonymes anonyme ADJ p 11.65 14.80 3.92 5.54 +anonymographe anonymographe NOM m s 0.00 0.14 0.00 0.14 +anophèle anophèle NOM m s 0.01 0.00 0.01 0.00 +anorak anorak NOM m s 0.49 0.88 0.25 0.81 +anoraks anorak NOM m p 0.49 0.88 0.25 0.07 +anorexie anorexie NOM f s 0.88 0.81 0.87 0.74 +anorexies anorexie NOM f p 0.88 0.81 0.01 0.07 +anorexique anorexique ADJ s 0.38 0.41 0.31 0.34 +anorexiques anorexique NOM p 0.25 0.14 0.16 0.00 +anormal anormal ADJ m s 7.40 7.91 4.80 4.46 +anormale anormal ADJ f s 7.40 7.91 1.23 2.57 +anormalement anormalement ADV 1.08 1.15 1.08 1.15 +anormales anormal ADJ f p 7.40 7.91 0.61 0.27 +anormalité anormalité NOM f s 0.20 0.20 0.20 0.20 +anormaux anormal ADJ m p 7.40 7.91 0.76 0.61 +anosmie anosmie NOM f s 0.07 0.00 0.07 0.00 +anosmique anosmique ADJ m s 0.01 0.07 0.01 0.07 +anoxie anoxie NOM f s 0.09 0.00 0.09 0.00 +ans an NOM m p 866.58 685.81 718.17 609.05 +anse anse NOM f s 0.47 6.08 0.33 4.86 +anses anse NOM f p 0.47 6.08 0.14 1.22 +ansée ansé ADJ f s 0.02 0.07 0.01 0.00 +ansées ansé ADJ f p 0.02 0.07 0.01 0.07 +antagonique antagonique ADJ s 0.03 0.00 0.03 0.00 +antagonisme antagonisme NOM m s 0.17 1.55 0.16 1.15 +antagonismes antagonisme NOM m p 0.17 1.55 0.02 0.41 +antagoniste antagoniste NOM s 0.14 0.68 0.12 0.27 +antagonistes antagoniste ADJ p 0.10 0.88 0.03 0.68 +antalgique antalgique NOM m s 0.50 0.00 0.15 0.00 +antalgiques antalgique NOM m p 0.50 0.00 0.35 0.00 +antan antan NOM m s 1.53 4.86 1.53 4.86 +antarctique antarctique ADJ s 0.06 0.07 0.06 0.00 +antarctiques antarctique ADJ p 0.06 0.07 0.00 0.07 +ante ante NOM f s 1.12 0.27 1.12 0.27 +antenne antenne NOM f s 11.59 8.45 10.08 3.65 +antennes antenne NOM f p 11.59 8.45 1.50 4.80 +anthologie anthologie NOM f s 0.48 0.81 0.48 0.68 +anthologies anthologie NOM f p 0.48 0.81 0.00 0.14 +anthonome anthonome NOM m s 0.01 0.00 0.01 0.00 +anthracine anthracine NOM m s 0.04 0.00 0.04 0.00 +anthracite anthracite ADJ 0.07 1.15 0.07 1.15 +anthracites anthracite NOM m p 0.01 1.82 0.00 0.07 +anthracose anthracose NOM f s 0.01 0.00 0.01 0.00 +anthracène anthracène NOM m s 0.01 0.00 0.01 0.00 +anthraquinone anthraquinone NOM f s 0.01 0.00 0.01 0.00 +anthrax anthrax NOM m 1.26 0.47 1.26 0.47 +anthropiques anthropique ADJ p 0.02 0.00 0.02 0.00 +anthropoïde anthropoïde NOM s 0.03 0.20 0.02 0.07 +anthropoïdes anthropoïde NOM p 0.03 0.20 0.01 0.14 +anthropologie anthropologie NOM f s 0.78 0.41 0.78 0.41 +anthropologique anthropologique ADJ s 0.27 0.20 0.16 0.07 +anthropologiquement anthropologiquement ADV 0.01 0.00 0.01 0.00 +anthropologiques anthropologique ADJ f p 0.27 0.20 0.11 0.14 +anthropologiste anthropologiste NOM s 0.11 0.00 0.11 0.00 +anthropologue anthropologue NOM s 1.46 0.20 1.18 0.07 +anthropologues anthropologue NOM p 1.46 0.20 0.28 0.14 +anthropomorphe anthropomorphe ADJ f s 0.01 0.07 0.01 0.07 +anthropomorphique anthropomorphique ADJ f s 0.03 0.07 0.03 0.07 +anthropomorphiser anthropomorphiser VER 0.01 0.00 0.01 0.00 inf; +anthropomorphisme anthropomorphisme NOM m s 0.01 0.34 0.01 0.34 +anthropométrie anthropométrie NOM f s 0.00 0.27 0.00 0.27 +anthropométrique anthropométrique ADJ s 0.00 0.41 0.00 0.34 +anthropométriques anthropométrique ADJ f p 0.00 0.41 0.00 0.07 +anthropophage anthropophage ADJ m s 0.14 0.00 0.03 0.00 +anthropophages anthropophage ADJ p 0.14 0.00 0.11 0.00 +anthropophagie anthropophagie NOM f s 0.11 0.61 0.11 0.61 +anthropophagiques anthropophagique ADJ f p 0.00 0.07 0.00 0.07 +anthropopithèque anthropopithèque NOM m s 0.00 0.14 0.00 0.07 +anthropopithèques anthropopithèque NOM m p 0.00 0.14 0.00 0.07 +anthume anthume ADJ s 0.00 0.20 0.00 0.20 +anti_acné anti_acné NOM f s 0.02 0.00 0.02 0.00 +anti_agression anti_agression NOM f s 0.03 0.07 0.03 0.07 +anti_allergie anti_allergie NOM f s 0.01 0.00 0.01 0.00 +anti_anatomique anti_anatomique ADJ s 0.01 0.00 0.01 0.00 +anti_apartheid anti_apartheid NOM m s 0.00 0.07 0.00 0.07 +anti_aphrodisiaque anti_aphrodisiaque ADJ f s 0.00 0.07 0.00 0.07 +anti_asthmatique anti_asthmatique NOM s 0.01 0.00 0.01 0.00 +anti_atomique anti_atomique ADJ m s 0.06 0.07 0.05 0.00 +anti_atomique anti_atomique ADJ m p 0.06 0.07 0.01 0.07 +anti_aérien anti_aérien ADJ m s 0.41 0.27 0.20 0.07 +anti_aérien anti_aérien ADJ f s 0.41 0.27 0.17 0.07 +anti_aérien anti_aérien ADJ m p 0.41 0.27 0.04 0.14 +anti_avortement anti_avortement NOM m s 0.12 0.00 0.12 0.00 +anti_beauf anti_beauf NOM m s 0.01 0.00 0.01 0.00 +anti_bison anti_bison NOM m s 0.00 0.07 0.00 0.07 +anti_blindage anti_blindage NOM m s 0.04 0.00 0.04 0.00 +anti_blouson anti_blouson NOM m s 0.00 0.07 0.00 0.07 +anti_bombe anti_bombe NOM f s 0.10 0.07 0.09 0.00 +anti_bombe anti_bombe NOM f p 0.10 0.07 0.01 0.07 +anti_boson anti_boson NOM m p 0.04 0.00 0.04 0.00 +anti_braquage anti_braquage NOM m s 0.01 0.00 0.01 0.00 +anti_brouillard anti_brouillard ADJ s 0.12 0.00 0.12 0.00 +anti_bruit anti_bruit NOM m s 0.16 0.00 0.16 0.00 +anti_calcique anti_calcique ADJ f p 0.01 0.00 0.01 0.00 +anti_cancer anti_cancer NOM m s 0.04 0.00 0.04 0.00 +anti_capitaliste anti_capitaliste ADJ m s 0.03 0.00 0.03 0.00 +anti_castriste anti_castriste ADJ s 0.02 0.00 0.02 0.00 +anti_castriste anti_castriste NOM p 0.01 0.00 0.01 0.00 +anti_cellulite anti_cellulite NOM f s 0.01 0.00 0.01 0.00 +anti_chambre anti_chambre NOM f s 0.00 0.14 0.00 0.07 +anti_chambre anti_chambre NOM f p 0.00 0.14 0.00 0.07 +anti_char anti_char NOM m s 0.12 0.20 0.00 0.14 +anti_char anti_char NOM m p 0.12 0.20 0.12 0.07 +anti_chien anti_chien NOM m p 0.00 0.07 0.00 0.07 +anti_cité anti_cité NOM f s 0.00 0.07 0.00 0.07 +anti_civilisation anti_civilisation NOM f s 0.00 0.07 0.00 0.07 +anti_club anti_club NOM m s 0.02 0.00 0.02 0.00 +anti_coco anti_coco NOM p 0.01 0.00 0.01 0.00 +anti_colère anti_colère NOM f s 0.01 0.00 0.01 0.00 +anti_communisme anti_communisme NOM m s 0.00 0.14 0.00 0.14 +anti_communiste anti_communiste ADJ s 0.03 0.07 0.03 0.07 +anti_conformisme anti_conformisme NOM m s 0.01 0.14 0.01 0.14 +anti_conformiste anti_conformiste NOM s 0.01 0.00 0.01 0.00 +anti_conglutinatif anti_conglutinatif ADJ m s 0.00 0.07 0.00 0.07 +anti_corps anti_corps NOM m 0.08 0.00 0.08 0.00 +anti_corruption anti_corruption NOM f s 0.04 0.00 0.04 0.00 +anti_crash anti_crash NOM m s 0.01 0.00 0.01 0.00 +anti_crime anti_crime NOM m s 0.03 0.00 0.03 0.00 +anti_criminalité anti_criminalité NOM f s 0.01 0.00 0.01 0.00 +anti_célibataire anti_célibataire ADJ f p 0.01 0.00 0.01 0.00 +anti_dauphin anti_dauphin NOM m p 0.01 0.00 0.01 0.00 +anti_desperado anti_desperado NOM m s 0.01 0.00 0.01 0.00 +anti_dieu anti_dieu NOM m s 0.03 0.00 0.03 0.00 +anti_discrimination anti_discrimination NOM f s 0.02 0.00 0.02 0.00 +anti_dopage anti_dopage NOM m s 0.06 0.00 0.06 0.00 +anti_douleur anti_douleur NOM f s 0.46 0.00 0.30 0.00 +anti_douleur anti_douleur NOM f p 0.46 0.00 0.15 0.00 +anti_drague anti_drague NOM f s 0.01 0.00 0.01 0.00 +anti_dramatique anti_dramatique ADJ s 0.00 0.07 0.00 0.07 +anti_drogue anti_drogue NOM f s 0.42 0.00 0.35 0.00 +anti_drogue anti_drogue NOM f p 0.42 0.00 0.07 0.00 +anti_débauche anti_débauche NOM f s 0.00 0.07 0.00 0.07 +anti_démocratique anti_démocratique ADJ f s 0.14 0.07 0.14 0.07 +anti_démocratique anti_démocratique ADJ f p 0.14 0.07 0.01 0.00 +anti_démon anti_démon NOM m s 0.04 0.00 0.04 0.00 +anti_espionne anti_espionne NOM f p 0.01 0.00 0.01 0.00 +anti_establishment anti_establishment NOM m s 0.02 0.00 0.02 0.00 +anti_existence anti_existence NOM f s 0.00 0.07 0.00 0.07 +anti_explosion anti_explosion NOM f s 0.04 0.00 0.04 0.00 +anti_fantôme anti_fantôme NOM m p 0.02 0.00 0.02 0.00 +anti_fasciste anti_fasciste ADJ f s 0.02 0.00 0.02 0.00 +anti_femme anti_femme NOM f s 0.01 0.00 0.01 0.00 +anti_flingage anti_flingage NOM m s 0.00 0.07 0.00 0.07 +anti_flip anti_flip NOM m s 0.00 0.07 0.00 0.07 +anti_frigo anti_frigo NOM m s 0.00 0.07 0.00 0.07 +anti_féministe anti_féministe NOM s 0.03 0.07 0.03 0.07 +anti_fusionnel anti_fusionnel ADJ m s 0.01 0.00 0.01 0.00 +anti_fusée anti_fusée NOM f p 0.00 0.20 0.00 0.20 +anti_g anti_g ADJ f p 0.01 0.00 0.01 0.00 +anti_gang anti_gang NOM m s 0.33 0.00 0.33 0.00 +anti_gel anti_gel NOM m s 0.05 0.00 0.05 0.00 +anti_gerce anti_gerce NOM f s 0.01 0.00 0.01 0.00 +anti_gouvernement anti_gouvernement NOM m s 0.10 0.00 0.10 0.00 +anti_graffiti anti_graffiti NOM m 0.01 0.00 0.01 0.00 +anti_gravité anti_gravité NOM f s 0.06 0.00 0.06 0.00 +anti_grimace anti_grimace NOM f p 0.01 0.00 0.01 0.00 +anti_gros anti_gros ADJ m 0.01 0.00 0.01 0.00 +anti_hanneton anti_hanneton NOM m p 0.00 0.07 0.00 0.07 +anti_hypertenseur anti_hypertenseur ADJ m s 0.01 0.00 0.01 0.00 +anti_immigration anti_immigration NOM f s 0.02 0.00 0.02 0.00 +anti_immigré anti_immigré ADJ p 0.00 0.07 0.00 0.07 +anti_impérialiste anti_impérialiste ADJ s 0.11 0.07 0.11 0.07 +anti_incendie anti_incendie NOM m s 0.16 0.00 0.16 0.00 +anti_inertie anti_inertie NOM f s 0.01 0.00 0.01 0.00 +anti_infectieux anti_infectieux ADJ m p 0.01 0.00 0.01 0.00 +anti_inflammatoire anti_inflammatoire NOM m s 0.07 0.07 0.07 0.07 +anti_insecte anti_insecte NOM m s 0.03 0.07 0.01 0.00 +anti_insecte anti_insecte NOM m p 0.03 0.07 0.02 0.07 +anti_instinct anti_instinct NOM m s 0.00 0.07 0.00 0.07 +anti_insurrectionnel anti_insurrectionnel ADJ m s 0.01 0.00 0.01 0.00 +anti_intimité anti_intimité NOM f s 0.04 0.00 0.04 0.00 +anti_japon anti_japon NOM m s 0.00 0.07 0.00 0.07 +anti_jeunes anti_jeunes ADJ m s 0.00 0.07 0.00 0.07 +anti_mafia anti_mafia NOM f s 0.01 0.07 0.01 0.07 +anti_maison anti_maison NOM f s 0.00 0.14 0.00 0.14 +anti_manipulation anti_manipulation NOM f s 0.01 0.00 0.01 0.00 +anti_manoir anti_manoir NOM m s 0.00 0.07 0.00 0.07 +anti_mariage anti_mariage NOM m s 0.03 0.00 0.03 0.00 +anti_matière anti_matière NOM f s 0.09 0.00 0.08 0.00 +anti_matière anti_matière NOM f p 0.09 0.00 0.01 0.00 +anti_mec anti_mec NOM m p 0.02 0.00 0.02 0.00 +anti_militariste anti_militariste NOM s 0.01 0.00 0.01 0.00 +anti_missile anti_missile NOM m p 0.03 0.00 0.03 0.00 +anti_mite anti_mite NOM f s 0.10 0.14 0.03 0.07 +anti_mite anti_mite NOM f p 0.10 0.14 0.08 0.07 +anti_monde anti_monde NOM m s 0.00 0.07 0.00 0.07 +anti_monstre anti_monstre ADJ f p 0.01 0.00 0.01 0.00 +anti_moustique anti_moustique NOM m s 0.58 0.07 0.41 0.00 +anti_moustique anti_moustique NOM m p 0.58 0.07 0.17 0.07 +anti_médicament anti_médicament NOM m p 0.01 0.00 0.01 0.00 +anti_métaphysique anti_métaphysique ADJ m s 0.00 0.07 0.00 0.07 +anti_météorite anti_météorite NOM f p 0.20 0.00 0.20 0.00 +anti_nausée anti_nausée NOM f s 0.01 0.00 0.01 0.00 +anti_navire anti_navire NOM m s 0.01 0.00 0.01 0.00 +anti_nucléaire anti_nucléaire ADJ m s 0.06 0.00 0.05 0.00 +anti_nucléaire anti_nucléaire ADJ p 0.06 0.00 0.01 0.00 +anti_nucléaire anti_nucléaire NOM m p 0.01 0.00 0.01 0.00 +anti_odeur anti_odeur NOM f s 0.02 0.14 0.01 0.07 +anti_odeur anti_odeur NOM f p 0.02 0.14 0.01 0.07 +anti_odorant anti_odorant ADJ m p 0.00 0.07 0.00 0.07 +anti_âge anti_âge ADJ 0.04 0.74 0.04 0.74 +anti_origine anti_origine NOM f s 0.00 0.07 0.00 0.07 +anti_panache anti_panache NOM m s 0.00 0.07 0.00 0.07 +anti_particule anti_particule NOM f s 0.01 0.00 0.01 0.00 +anti_pasteur anti_pasteur NOM m s 0.00 0.07 0.00 0.07 +anti_patriote anti_patriote NOM s 0.01 0.00 0.01 0.00 +anti_patriotique anti_patriotique ADJ f s 0.06 0.00 0.06 0.00 +anti_pelliculaire anti_pelliculaire ADJ m s 0.13 0.07 0.13 0.07 +anti_piratage anti_piratage NOM m s 0.01 0.00 0.01 0.00 +anti_pirate anti_pirate ADJ s 0.01 0.00 0.01 0.00 +anti_poison anti_poison NOM m s 0.04 0.14 0.04 0.14 +anti_poisse anti_poisse NOM f s 0.05 0.07 0.05 0.07 +anti_pollution anti_pollution NOM f s 0.04 0.00 0.04 0.00 +anti_poux anti_poux NOM m p 0.04 0.00 0.04 0.00 +anti_progressiste anti_progressiste NOM p 0.00 0.07 0.00 0.07 +anti_psychotique anti_psychotique ADJ s 0.01 0.00 0.01 0.00 +anti_pub anti_pub NOM s 0.00 0.07 0.00 0.07 +anti_puce anti_puce NOM f p 0.14 0.00 0.14 0.00 +anti_pédérastique anti_pédérastique ADJ p 0.00 0.07 0.00 0.07 +anti_racket anti_racket NOM m s 0.06 0.00 0.06 0.00 +anti_radiation anti_radiation NOM f p 0.08 0.00 0.08 0.00 +anti_rapt anti_rapt NOM m s 0.00 0.07 0.00 0.07 +anti_reflet anti_reflet NOM m p 0.00 0.07 0.00 0.07 +anti_rejet anti_rejet NOM m s 0.20 0.00 0.20 0.00 +anti_religion anti_religion NOM f s 0.01 0.00 0.01 0.00 +anti_rhume anti_rhume NOM m s 0.02 0.00 0.02 0.00 +anti_ride anti_ride NOM f p 0.06 0.00 0.06 0.00 +anti_romain anti_romain NOM m s 0.00 0.07 0.00 0.07 +anti_romantique anti_romantique ADJ s 0.01 0.00 0.01 0.00 +anti_rouille anti_rouille NOM f s 0.01 0.00 0.01 0.00 +anti_russe anti_russe ADJ m s 0.11 0.00 0.11 0.00 +anti_sida anti_sida NOM m s 0.02 0.00 0.02 0.00 +anti_socialiste anti_socialiste ADJ p 0.01 0.00 0.01 0.00 +anti_sociaux anti_sociaux ADJ m p 0.04 0.00 0.04 0.00 +anti_société anti_société NOM f s 0.00 0.07 0.00 0.07 +anti_somnolence anti_somnolence NOM f s 0.01 0.00 0.01 0.00 +anti_souffle anti_souffle NOM m s 0.03 0.00 0.03 0.00 +anti_sous_marin anti_sous_marin ADJ m s 0.02 0.00 0.02 0.00 +anti_soviétique anti_soviétique ADJ f s 0.00 0.07 0.00 0.07 +anti_sèche anti_sèche ADJ f s 0.01 0.07 0.01 0.00 +anti_sèche anti_sèche ADJ f p 0.01 0.07 0.00 0.07 +anti_stress anti_stress NOM m 0.35 0.00 0.35 0.00 +anti_sémite anti_sémite ADJ s 0.04 0.00 0.02 0.00 +anti_sémite anti_sémite ADJ f p 0.04 0.00 0.02 0.00 +anti_sémitisme anti_sémitisme NOM m s 0.08 0.00 0.08 0.00 +anti_syndical anti_syndical ADJ m s 0.01 0.00 0.01 0.00 +anti_tabac anti_tabac ADJ s 0.17 0.00 0.17 0.00 +anti_tache anti_tache NOM f p 0.15 0.00 0.15 0.00 +anti_tank anti_tank NOM m s 0.03 0.00 0.03 0.00 +anti_tapisserie anti_tapisserie NOM f s 0.00 0.07 0.00 0.07 +anti_temps anti_temps NOM m 0.00 0.27 0.00 0.27 +anti_tension anti_tension NOM f s 0.01 0.00 0.01 0.00 +anti_terrorisme anti_terrorisme NOM m s 0.53 0.00 0.53 0.00 +anti_terroriste anti_terroriste ADJ s 0.26 0.00 0.26 0.00 +anti_tornade anti_tornade NOM f p 0.01 0.00 0.01 0.00 +anti_toux anti_toux NOM f 0.01 0.00 0.01 0.00 +anti_truie anti_truie NOM f s 0.01 0.00 0.01 0.00 +anti_trust anti_trust NOM m p 0.02 0.00 0.02 0.00 +anti_émeute anti_émeute ADJ s 0.15 0.00 0.10 0.00 +anti_émeute anti_émeute ADJ p 0.15 0.00 0.05 0.00 +anti_émotionnelle anti_émotionnelle ADJ f s 0.00 0.07 0.00 0.07 +anti_évasion anti_évasion NOM f s 0.01 0.00 0.01 0.00 +anti_venin anti_venin NOM m s 0.18 0.00 0.18 0.00 +anti_vieillissement anti_vieillissement NOM m s 0.04 0.00 0.04 0.00 +anti_viol anti_viol NOM m s 0.09 0.00 0.09 0.00 +anti_violence anti_violence NOM f s 0.01 0.00 0.01 0.00 +anti_viral anti_viral ADJ m s 0.13 0.00 0.13 0.00 +anti_virus anti_virus NOM m 0.09 0.00 0.09 0.00 +anti_vol anti_vol NOM m s 0.36 0.27 0.35 0.27 +anti_vol anti_vol NOM m p 0.36 0.27 0.01 0.00 +anti anti ADV 0.09 0.81 0.09 0.81 +antiacide antiacide ADJ s 0.12 0.00 0.07 0.00 +antiacides antiacide ADJ m p 0.12 0.00 0.04 0.00 +antialcoolique antialcoolique ADJ f s 0.02 0.00 0.02 0.00 +antiallemands antiallemand ADJ m p 0.00 0.07 0.00 0.07 +antiaméricain antiaméricain ADJ m s 0.06 0.14 0.05 0.00 +antiaméricaine antiaméricain ADJ f s 0.06 0.14 0.00 0.14 +antiaméricaines antiaméricain ADJ f p 0.06 0.14 0.01 0.00 +antiaméricanisme antiaméricanisme NOM m s 0.02 0.07 0.02 0.07 +antiatomique antiatomique ADJ m s 0.31 0.00 0.31 0.00 +antiaérien antiaérien ADJ m s 0.75 1.35 0.25 0.20 +antiaérienne antiaérien ADJ f s 0.75 1.35 0.29 0.54 +antiaériennes antiaérien ADJ f p 0.75 1.35 0.17 0.27 +antiaériens antiaérien ADJ m p 0.75 1.35 0.05 0.34 +antibactérien antibactérien ADJ m s 0.03 0.00 0.03 0.00 +antibiotique antibiotique NOM m s 5.22 1.55 1.04 0.14 +antibiotiques antibiotique NOM m p 5.22 1.55 4.18 1.42 +antiblocage antiblocage ADJ m s 0.03 0.07 0.03 0.07 +antibois antibois NOM m 0.14 0.00 0.14 0.00 +antibolcheviques antibolchevique ADJ m p 0.00 0.07 0.00 0.07 +antibolchevisme antibolchevisme NOM m s 0.00 0.14 0.00 0.14 +antibourgeois antibourgeois ADJ m 0.00 0.07 0.00 0.07 +antibrouillard antibrouillard ADJ m p 0.00 0.07 0.00 0.07 +antibruit antibruit ADJ f s 0.01 0.00 0.01 0.00 +anticalcaire anticalcaire ADJ m s 0.00 0.07 0.00 0.07 +anticapitaliste anticapitaliste ADJ s 0.10 0.14 0.10 0.14 +anticastriste anticastriste ADJ s 0.03 0.07 0.01 0.07 +anticastristes anticastriste ADJ p 0.03 0.07 0.02 0.00 +anticatalyseurs anticatalyseur NOM m p 0.00 0.07 0.00 0.07 +anticatholique anticatholique ADJ f s 0.00 0.07 0.00 0.07 +antichambre antichambre NOM f s 0.89 8.58 0.89 7.84 +antichambres antichambre NOM f p 0.89 8.58 0.00 0.74 +antichar antichar ADJ s 0.33 1.89 0.07 0.20 +antichars antichar ADJ p 0.33 1.89 0.27 1.69 +antichoc antichoc ADJ f p 0.04 0.00 0.04 0.00 +anticholinergique anticholinergique ADJ s 0.01 0.00 0.01 0.00 +antichristianisme antichristianisme NOM m s 0.00 0.07 0.00 0.07 +antichrétien antichrétien ADJ m s 0.00 0.14 0.00 0.07 +antichrétienne antichrétien ADJ f s 0.00 0.14 0.00 0.07 +anticipa anticiper VER 4.14 3.31 0.01 0.07 ind:pas:3s; +anticipais anticiper VER 4.14 3.31 0.04 0.14 ind:imp:1s; +anticipait anticiper VER 4.14 3.31 0.20 0.34 ind:imp:3s; +anticipant anticiper VER 4.14 3.31 0.06 0.47 par:pre; +anticipateur anticipateur ADJ m s 0.00 0.20 0.00 0.14 +anticipation anticipation NOM f s 0.63 2.23 0.63 2.16 +anticipations anticipation NOM f p 0.63 2.23 0.00 0.07 +anticipatoire anticipatoire ADJ f s 0.00 0.07 0.00 0.07 +anticipatrice anticipateur ADJ f s 0.00 0.20 0.00 0.07 +anticipe anticiper VER 4.14 3.31 1.24 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +anticipent anticiper VER 4.14 3.31 0.03 0.07 ind:pre:3p; +anticiper anticiper VER 4.14 3.31 1.29 0.27 inf; +anticipera anticiper VER 4.14 3.31 0.03 0.07 ind:fut:3s; +anticiperait anticiper VER 4.14 3.31 0.01 0.07 cnd:pre:3s; +anticipez anticiper VER 4.14 3.31 0.17 0.07 imp:pre:2p;ind:pre:2p; +anticipons anticiper VER 4.14 3.31 0.16 0.20 imp:pre:1p;ind:pre:1p; +anticipé anticiper VER m s 4.14 3.31 0.56 0.14 par:pas; +anticipée anticipé ADJ f s 1.64 1.08 1.40 0.54 +anticipées anticiper VER f p 4.14 3.31 0.14 0.00 par:pas; +anticipés anticipé ADJ m p 1.64 1.08 0.03 0.00 +anticlérical anticlérical ADJ m s 0.16 1.15 0.16 0.41 +anticléricale anticlérical ADJ f s 0.16 1.15 0.00 0.47 +anticléricales anticlérical ADJ f p 0.16 1.15 0.00 0.07 +anticléricalisme anticléricalisme NOM m s 0.00 0.34 0.00 0.34 +anticléricaux anticlérical ADJ m p 0.16 1.15 0.00 0.20 +anticoagulant anticoagulant NOM m s 0.21 0.00 0.14 0.00 +anticoagulants anticoagulant NOM m p 0.21 0.00 0.06 0.00 +anticolonialisme anticolonialisme NOM m s 0.00 0.07 0.00 0.07 +anticommunisme anticommunisme NOM m s 0.10 0.88 0.10 0.88 +anticommuniste anticommuniste ADJ s 0.19 1.82 0.17 1.22 +anticommunistes anticommuniste ADJ p 0.19 1.82 0.01 0.61 +anticonceptionnelle anticonceptionnel ADJ f s 0.20 0.14 0.20 0.00 +anticonceptionnelles anticonceptionnel ADJ f p 0.20 0.14 0.00 0.07 +anticonceptionnels anticonceptionnel ADJ m p 0.20 0.14 0.00 0.07 +anticonformisme anticonformisme NOM m s 0.00 0.07 0.00 0.07 +anticonformiste anticonformiste ADJ m s 0.05 0.00 0.05 0.00 +anticonstitutionnel anticonstitutionnel ADJ m s 0.19 0.00 0.14 0.00 +anticonstitutionnelle anticonstitutionnel ADJ f s 0.19 0.00 0.05 0.00 +anticonstitutionnellement anticonstitutionnellement ADV 0.01 0.00 0.01 0.00 +anticorps anticorps NOM m 1.35 0.41 1.35 0.41 +anticyclique anticyclique ADJ f s 0.01 0.00 0.01 0.00 +anticyclone anticyclone NOM m s 0.03 0.07 0.03 0.07 +anticycloniques anticyclonique ADJ m p 0.00 0.07 0.00 0.07 +antidatait antidater VER 0.01 0.27 0.00 0.07 ind:imp:3s; +antidater antidater VER 0.01 0.27 0.00 0.07 inf; +antidaté antidater VER m s 0.01 0.27 0.01 0.07 par:pas; +antidatée antidater VER f s 0.01 0.27 0.00 0.07 par:pas; +antidictatoriaux antidictatorial ADJ m p 0.00 0.07 0.00 0.07 +antidopage antidopage ADJ m s 0.01 0.00 0.01 0.00 +antidote antidote NOM m s 4.48 1.35 4.38 1.08 +antidotes antidote NOM m p 4.48 1.35 0.09 0.27 +antidouleur antidouleur ADJ s 0.34 0.00 0.34 0.00 +antidreyfusard antidreyfusard NOM m s 0.14 0.07 0.14 0.00 +antidreyfusarde antidreyfusard ADJ f s 0.14 0.00 0.14 0.00 +antidreyfusards antidreyfusard NOM m p 0.14 0.07 0.00 0.07 +antidreyfusisme antidreyfusisme NOM m s 0.00 0.07 0.00 0.07 +antidrogue antidrogue ADJ s 0.08 0.07 0.08 0.07 +antidémarrage antidémarrage NOM m s 0.01 0.00 0.01 0.00 +antidémocratique antidémocratique ADJ s 0.02 0.07 0.02 0.07 +antidépresseur antidépresseur NOM m s 0.98 0.27 0.26 0.00 +antidépresseurs antidépresseur NOM m p 0.98 0.27 0.72 0.27 +antidérapant antidérapant ADJ m s 0.07 0.14 0.03 0.00 +antidérapante antidérapant ADJ f s 0.07 0.14 0.01 0.00 +antidérapantes antidérapant ADJ f p 0.07 0.14 0.01 0.14 +antidérapants antidérapant ADJ m p 0.07 0.14 0.02 0.00 +antienne antienne NOM f s 0.00 1.62 0.00 1.49 +antiennes antienne NOM f p 0.00 1.62 0.00 0.14 +antiesclavagiste antiesclavagiste NOM s 0.01 0.00 0.01 0.00 +antifading antifading NOM m s 0.00 0.07 0.00 0.07 +antifascisme antifascisme NOM m s 0.00 0.07 0.00 0.07 +antifasciste antifasciste NOM s 0.26 0.27 0.10 0.07 +antifascistes antifasciste NOM p 0.26 0.27 0.16 0.20 +antifongique antifongique NOM m s 0.03 0.00 0.03 0.00 +antifrançaise antifrançais ADJ f s 0.00 0.34 0.00 0.20 +antifrançaises antifrançais ADJ f p 0.00 0.34 0.00 0.14 +antiféminisme antiféminisme NOM m s 0.00 0.07 0.00 0.07 +antifumée antifumée ADJ m p 0.01 0.00 0.01 0.00 +antigang antigang ADJ f s 0.16 0.07 0.16 0.07 +antigangs antigang NOM p 0.12 0.14 0.01 0.00 +antigaullistes antigaulliste ADJ f p 0.00 0.07 0.00 0.07 +antigel antigel NOM m s 0.20 0.00 0.20 0.00 +antigermanisme antigermanisme NOM m s 0.00 0.07 0.00 0.07 +antigravitation antigravitation NOM f s 0.01 0.00 0.01 0.00 +antigravitationnel antigravitationnel ADJ m s 0.04 0.00 0.04 0.00 +antigravité antigravité NOM f s 0.01 0.00 0.01 0.00 +antigrippe antigrippe NOM f s 0.16 0.00 0.16 0.00 +antigène antigène NOM m s 0.28 0.34 0.11 0.27 +antigènes antigène NOM m p 0.28 0.34 0.17 0.07 +antihistaminique antihistaminique NOM m s 0.25 0.00 0.10 0.00 +antihistaminiques antihistaminique NOM m p 0.25 0.00 0.15 0.00 +antihémorragiques antihémorragique ADJ p 0.00 0.07 0.00 0.07 +antihéros antihéros NOM m 0.04 0.00 0.04 0.00 +antihygiénique antihygiénique ADJ f s 0.01 0.07 0.01 0.07 +antillais antillais NOM m 0.14 4.12 0.12 3.72 +antillaise antillais NOM f s 0.14 4.12 0.01 0.20 +antillaises antillais NOM f p 0.14 4.12 0.00 0.20 +antilogique antilogique ADJ s 0.01 0.00 0.01 0.00 +antilope antilope NOM f s 0.88 2.16 0.73 1.28 +antilopes antilope NOM f p 0.88 2.16 0.16 0.88 +antimarxiste antimarxiste ADJ f s 0.00 0.07 0.00 0.07 +antimaçonniques antimaçonnique ADJ p 0.00 0.07 0.00 0.07 +antimatière antimatière NOM f s 0.13 0.14 0.13 0.14 +antimicrobien antimicrobien ADJ m s 0.01 0.00 0.01 0.00 +antimigraineux antimigraineux ADJ m 0.02 0.00 0.02 0.00 +antimilitarisme antimilitarisme NOM m s 0.00 0.34 0.00 0.34 +antimilitariste antimilitariste ADJ m s 0.12 0.81 0.11 0.54 +antimilitaristes antimilitariste ADJ p 0.12 0.81 0.01 0.27 +antimissile antimissile ADJ s 0.04 0.00 0.04 0.00 +antimissiles antimissile NOM m p 0.06 0.00 0.06 0.00 +antimite antimite NOM m s 0.05 0.61 0.04 0.27 +antimites antimite NOM m p 0.05 0.61 0.01 0.34 +antimitotiques antimitotique NOM m p 0.01 0.00 0.01 0.00 +antimoine antimoine NOM m s 0.01 0.27 0.01 0.27 +antimonde antimonde ADJ s 0.00 0.07 0.00 0.07 +antinationale antinational ADJ f s 0.00 0.14 0.00 0.07 +antinationales antinational ADJ f p 0.00 0.14 0.00 0.07 +antinationaliste antinationaliste ADJ s 0.00 0.14 0.00 0.14 +antinaturel antinaturel ADJ m s 0.00 0.14 0.00 0.07 +antinaturelle antinaturel ADJ f s 0.00 0.14 0.00 0.07 +antinazie antinazi ADJ f s 0.10 0.07 0.10 0.00 +antinazis antinazi NOM m p 0.01 0.00 0.01 0.00 +antinomie antinomie NOM f s 0.01 0.34 0.00 0.27 +antinomies antinomie NOM f p 0.01 0.34 0.01 0.07 +antinomique antinomique ADJ s 0.03 0.20 0.03 0.14 +antinomiques antinomique ADJ m p 0.03 0.20 0.00 0.07 +antinucléaire antinucléaire ADJ s 0.11 0.14 0.03 0.14 +antinucléaires antinucléaire ADJ f p 0.11 0.14 0.07 0.00 +antioxydant antioxydant NOM m s 0.05 0.00 0.02 0.00 +antioxydants antioxydant NOM m p 0.05 0.00 0.03 0.00 +antipape antipape NOM m s 0.11 0.14 0.11 0.07 +antipapes antipape NOM m p 0.11 0.14 0.00 0.07 +antiparasitage antiparasitage ADJ f s 0.00 0.07 0.00 0.07 +antiparasite antiparasite ADJ f s 0.01 0.07 0.01 0.07 +antiparasites antiparasite NOM m p 0.02 0.14 0.01 0.14 +antipathie antipathie NOM f s 0.71 1.82 0.57 1.69 +antipathies antipathie NOM f p 0.71 1.82 0.14 0.14 +antipathique antipathique ADJ s 0.97 2.03 0.96 1.55 +antipathiques antipathique ADJ p 0.97 2.03 0.01 0.47 +antipatriote antipatriote ADJ m s 0.01 0.00 0.01 0.00 +antipatriotiques antipatriotique ADJ f p 0.01 0.00 0.01 0.00 +antipelliculaire antipelliculaire ADJ m s 0.01 0.00 0.01 0.00 +antipersonnel antipersonnel ADJ 0.41 0.00 0.37 0.00 +antipersonnelle antipersonnel ADJ f s 0.41 0.00 0.03 0.00 +antipersonnelles antipersonnel ADJ f p 0.41 0.00 0.01 0.00 +antiphonaires antiphonaire NOM m p 0.00 0.14 0.00 0.14 +antiphrase antiphrase NOM f s 0.00 0.34 0.00 0.34 +antiphysiques antiphysique ADJ p 0.00 0.07 0.00 0.07 +antipodaire antipodaire ADJ m s 0.00 0.07 0.00 0.07 +antipode antipode NOM m s 1.21 2.43 0.02 0.14 +antipodes antipode NOM m p 1.21 2.43 1.19 2.30 +antipodiste antipodiste NOM s 0.00 0.14 0.00 0.07 +antipodistes antipodiste NOM p 0.00 0.14 0.00 0.07 +antipoison antipoison ADJ m s 0.16 0.07 0.16 0.07 +antipoisons antipoison NOM m p 0.00 0.07 0.00 0.07 +antipoliomyélitique antipoliomyélitique ADJ m s 0.00 0.07 0.00 0.07 +antipollution antipollution ADJ 0.05 0.00 0.05 0.00 +antipopulaire antipopulaire ADJ m s 0.00 0.07 0.00 0.07 +antiproton antiproton NOM m s 0.07 0.00 0.04 0.00 +antiprotons antiproton NOM m p 0.07 0.00 0.03 0.00 +antiprotéase antiprotéase NOM f s 0.01 0.00 0.01 0.00 +antipsychiatrie antipsychiatrie NOM f s 0.01 0.14 0.01 0.14 +antipsychotique antipsychotique ADJ m s 0.07 0.00 0.04 0.00 +antipsychotique antipsychotique NOM m s 0.10 0.00 0.04 0.00 +antipsychotiques antipsychotique NOM m p 0.10 0.00 0.06 0.00 +antiquaille antiquaille NOM f s 0.14 0.41 0.00 0.14 +antiquailleries antiquaillerie NOM f p 0.00 0.07 0.00 0.07 +antiquailles antiquaille NOM f p 0.14 0.41 0.14 0.27 +antiquaire antiquaire NOM s 2.33 7.03 1.52 3.58 +antiquaires antiquaire NOM p 2.33 7.03 0.81 3.45 +antiquark antiquark NOM m s 0.01 0.00 0.01 0.00 +antique antique ADJ s 7.21 15.54 5.59 10.61 +antiques antique ADJ p 7.21 15.54 1.63 4.93 +antiquité antiquité NOM f s 4.92 6.55 2.12 3.65 +antiquités antiquité NOM f p 4.92 6.55 2.80 2.91 +antirabique antirabique ADJ m s 0.01 0.07 0.01 0.07 +antiracisme antiracisme NOM m s 0.11 0.00 0.11 0.00 +antiracistes antiraciste ADJ m p 0.02 0.27 0.02 0.27 +antiradiation antiradiation ADJ p 0.02 0.00 0.02 0.00 +antireligieuse antireligieux ADJ f s 0.02 0.14 0.02 0.00 +antireligieux antireligieux ADJ m 0.02 0.14 0.00 0.14 +antirides antirides ADJ 0.02 0.07 0.02 0.07 +antirouille antirouille ADJ s 0.06 0.00 0.06 0.00 +antirépublicain antirépublicain ADJ m s 0.00 0.07 0.00 0.07 +antirusse antirusse ADJ m s 0.00 0.07 0.00 0.07 +antisatellite antisatellite ADJ 0.03 0.00 0.03 0.00 +antiscientifique antiscientifique ADJ f s 0.14 0.07 0.14 0.07 +antisepsie antisepsie NOM f s 0.00 0.07 0.00 0.07 +antiseptique antiseptique ADJ s 0.32 0.14 0.30 0.00 +antiseptiques antiseptique ADJ p 0.32 0.14 0.03 0.14 +antisexistes antisexiste ADJ m p 0.00 0.07 0.00 0.07 +antisexuel antisexuel ADJ m s 0.00 0.07 0.00 0.07 +antisionistes antisioniste ADJ p 0.00 0.07 0.00 0.07 +antiskating antiskating ADJ f p 0.00 0.07 0.00 0.07 +antisocial antisocial ADJ m s 0.77 0.07 0.12 0.00 +antisociale antisocial ADJ f s 0.77 0.07 0.17 0.00 +antisociales antisocial ADJ f p 0.77 0.07 0.02 0.07 +antisociaux antisocial ADJ m p 0.77 0.07 0.46 0.00 +antisolaire antisolaire ADJ f s 0.00 0.14 0.00 0.07 +antisolaires antisolaire ADJ f p 0.00 0.14 0.00 0.07 +antisoviétique antisoviétique ADJ s 0.00 0.34 0.00 0.27 +antisoviétiques antisoviétique ADJ p 0.00 0.34 0.00 0.07 +antisoviétisme antisoviétisme NOM m s 0.00 0.07 0.00 0.07 +antispasmodique antispasmodique NOM m s 0.02 0.00 0.02 0.00 +antisportif antisportif ADJ m s 0.01 0.00 0.01 0.00 +antistalinien antistalinien ADJ m s 0.00 0.27 0.00 0.20 +antistaliniens antistalinien ADJ m p 0.00 0.27 0.00 0.07 +antistatique antistatique ADJ f s 0.01 0.07 0.01 0.00 +antistatiques antistatique ADJ p 0.01 0.07 0.00 0.07 +antisèche antisèche NOM s 0.23 0.14 0.15 0.00 +antisèches antisèche NOM p 0.23 0.14 0.08 0.14 +antistress antistress ADJ m s 0.01 0.00 0.01 0.00 +antisémite antisémite ADJ s 0.96 1.55 0.72 0.61 +antisémites antisémite ADJ p 0.96 1.55 0.23 0.95 +antisémitisme antisémitisme NOM m s 0.36 1.62 0.36 1.62 +antisérum antisérum NOM m s 0.09 0.00 0.09 0.00 +antitabac antitabac ADJ f s 0.07 0.00 0.07 0.00 +antiterrorisme antiterrorisme NOM m s 0.01 0.00 0.01 0.00 +antiterroriste antiterroriste ADJ s 0.66 0.27 0.66 0.27 +antithèse antithèse NOM f s 0.11 0.88 0.11 0.81 +antithèses antithèse NOM f p 0.11 0.88 0.00 0.07 +antithétiques antithétique ADJ p 0.00 0.07 0.00 0.07 +antitout antitout NOM m s 0.00 0.07 0.00 0.07 +antitoxine antitoxine NOM f s 0.08 0.00 0.08 0.00 +antitoxique antitoxique ADJ s 0.10 0.00 0.10 0.00 +antitrust antitrust ADJ 0.24 0.00 0.24 0.00 +antituberculeux antituberculeux NOM m 0.00 0.14 0.00 0.14 +antitussif antitussif ADJ m s 0.01 0.07 0.01 0.00 +antitussives antitussif ADJ f p 0.01 0.07 0.00 0.07 +antitétanique antitétanique ADJ s 0.22 0.14 0.22 0.14 +antityphoïdique antityphoïdique ADJ m s 0.00 0.07 0.00 0.07 +antiémeute antiémeute ADJ s 0.01 0.00 0.01 0.00 +antiémétique antiémétique NOM m s 0.01 0.00 0.01 0.00 +antivariolique antivariolique ADJ m s 0.01 0.00 0.01 0.00 +antivenimeux antivenimeux ADJ m s 0.03 0.00 0.03 0.00 +antiviolence antiviolence ADJ s 0.02 0.00 0.02 0.00 +antiviral antiviral ADJ m s 0.05 0.00 0.02 0.00 +antiviraux antiviral NOM m p 0.16 0.00 0.14 0.00 +antivirus antivirus NOM m 0.66 0.00 0.66 0.00 +antivol antivol NOM m s 0.30 0.14 0.30 0.14 +antonin antonin ADJ m s 0.14 0.14 0.14 0.14 +antonomase antonomase NOM f s 0.00 0.07 0.00 0.07 +antonyme antonyme NOM m s 0.00 0.14 0.00 0.07 +antonymes antonyme NOM m p 0.00 0.14 0.00 0.07 +antre antre NOM m s 2.96 4.66 2.96 4.39 +antres antre NOM m p 2.96 4.66 0.01 0.27 +anté anter VER 0.00 0.07 0.00 0.07 imp:pre:2s; +antéchrist antéchrist NOM m s 2.89 1.08 2.83 1.08 +antéchrists antéchrist NOM m p 2.89 1.08 0.06 0.00 +antécédent antécédent NOM m s 5.71 0.68 0.38 0.00 +antécédents antécédent NOM m p 5.71 0.68 5.33 0.68 +antédiluvien antédiluvien ADJ m s 0.03 0.88 0.01 0.41 +antédiluvienne antédiluvien ADJ f s 0.03 0.88 0.01 0.20 +antédiluviennes antédiluvien ADJ f p 0.03 0.88 0.00 0.27 +antédiluviens antédiluvien ADJ m p 0.03 0.88 0.01 0.00 +antépénultième antépénultième NOM f s 0.00 0.20 0.00 0.14 +antépénultièmes antépénultième NOM f p 0.00 0.20 0.00 0.07 +antérieur antérieur ADJ m s 3.82 10.27 0.88 2.43 +antérieure antérieur ADJ f s 3.82 10.27 1.82 3.92 +antérieurement antérieurement ADV 0.36 1.01 0.36 1.01 +antérieures antérieur ADJ f p 3.82 10.27 0.66 1.69 +antérieurs antérieur ADJ m p 3.82 10.27 0.46 2.23 +antérograde antérograde ADJ f s 0.00 0.07 0.00 0.07 +anéanti anéantir VER m s 13.18 12.70 3.27 2.84 par:pas; +anéantie anéantir VER f s 13.18 12.70 1.55 1.96 par:pas; +anéanties anéantir VER f p 13.18 12.70 0.19 0.41 par:pas; +anéantir anéantir VER 13.18 12.70 4.41 3.78 inf; +anéantira anéantir VER 13.18 12.70 0.47 0.07 ind:fut:3s; +anéantirai anéantir VER 13.18 12.70 0.05 0.00 ind:fut:1s; +anéantiraient anéantir VER 13.18 12.70 0.01 0.07 cnd:pre:3p; +anéantirait anéantir VER 13.18 12.70 0.27 0.07 cnd:pre:3s; +anéantirent anéantir VER 13.18 12.70 0.00 0.14 ind:pas:3p; +anéantiriez anéantir VER 13.18 12.70 0.02 0.00 cnd:pre:2p; +anéantirons anéantir VER 13.18 12.70 0.06 0.00 ind:fut:1p; +anéantiront anéantir VER 13.18 12.70 0.09 0.00 ind:fut:3p; +anéantis anéantir VER m p 13.18 12.70 1.62 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +anéantissaient anéantir VER 13.18 12.70 0.00 0.27 ind:imp:3p; +anéantissait anéantir VER 13.18 12.70 0.00 0.47 ind:imp:3s; +anéantissant anéantir VER 13.18 12.70 0.04 0.14 par:pre; +anéantissante anéantissant ADJ f s 0.01 0.14 0.01 0.07 +anéantissantes anéantissant ADJ f p 0.01 0.14 0.00 0.07 +anéantisse anéantir VER 13.18 12.70 0.36 0.07 sub:pre:1s;sub:pre:3s; +anéantissement anéantissement NOM m s 0.63 3.38 0.62 3.24 +anéantissements anéantissement NOM m p 0.63 3.38 0.01 0.14 +anéantissent anéantir VER 13.18 12.70 0.14 0.14 ind:pre:3p; +anéantissez anéantir VER 13.18 12.70 0.08 0.00 imp:pre:2p;ind:pre:2p; +anéantissons anéantir VER 13.18 12.70 0.02 0.00 imp:pre:1p;ind:pre:1p; +anéantit anéantir VER 13.18 12.70 0.52 0.68 ind:pre:3s;ind:pas:3s; +anuité anuiter VER m s 0.00 0.20 0.00 0.14 par:pas; +anuitées anuiter VER f p 0.00 0.20 0.00 0.07 par:pas; +anémiais anémier VER 0.04 0.14 0.00 0.07 ind:imp:1s; +anémiante anémiant ADJ f s 0.00 0.07 0.00 0.07 +anémie anémie NOM f s 1.31 0.41 1.31 0.41 +anémique anémique ADJ s 0.75 1.15 0.52 0.81 +anémiques anémique ADJ p 0.75 1.15 0.23 0.34 +anémié anémier VER m s 0.04 0.14 0.01 0.00 par:pas; +anémiée anémié ADJ f s 0.02 0.14 0.01 0.00 +anémiés anémié ADJ m p 0.02 0.14 0.01 0.07 +anémomètre anémomètre NOM m s 0.02 0.14 0.02 0.14 +anémométrique anémométrique ADJ s 0.00 0.07 0.00 0.07 +anémone anémone NOM f s 0.17 3.45 0.05 0.68 +anémones anémone NOM f p 0.17 3.45 0.12 2.77 +anus anus NOM m 1.63 1.82 1.63 1.82 +anuscopie anuscopie NOM f s 0.01 0.00 0.01 0.00 +anévrisme anévrisme NOM m s 1.33 0.07 1.28 0.07 +anévrismes anévrisme NOM m p 1.33 0.07 0.05 0.00 +anxieuse anxieux ADJ f s 3.76 10.47 0.91 3.58 +anxieusement anxieusement ADV 0.17 2.36 0.17 2.36 +anxieuses anxieux ADJ f p 3.76 10.47 0.02 0.54 +anxieux anxieux ADJ m 3.76 10.47 2.83 6.35 +anxiolytique anxiolytique NOM m s 0.28 0.00 0.21 0.00 +anxiolytiques anxiolytique NOM m p 0.28 0.00 0.07 0.00 +anxiété anxiété NOM f s 3.06 10.27 2.92 9.86 +anxiétés anxiété NOM f p 3.06 10.27 0.14 0.41 +anya anya NOM m s 0.26 0.00 0.26 0.00 +août août NOM m 12.65 49.66 12.65 49.66 +aoûtat aoûtat NOM m s 0.08 0.00 0.08 0.00 +aoûtien aoûtien NOM m s 0.00 0.07 0.00 0.07 +aoriste aoriste NOM m s 0.00 0.07 0.00 0.07 +aorte aorte NOM f s 1.16 0.20 1.16 0.20 +aortique aortique ADJ s 0.21 0.07 0.15 0.07 +aortiques aortique ADJ p 0.21 0.07 0.06 0.00 +aouls aoul NOM m p 0.00 0.07 0.00 0.07 +apôtre apôtre NOM m s 2.89 6.28 1.36 2.03 +apôtres apôtre NOM m p 2.89 6.28 1.53 4.26 +apache apache ADJ s 0.60 0.20 0.40 0.20 +apaches apache ADJ p 0.60 0.20 0.20 0.00 +apaisa apaiser VER 8.52 35.00 0.12 3.04 ind:pas:3s; +apaisai apaiser VER 8.52 35.00 0.00 0.07 ind:pas:1s; +apaisaient apaiser VER 8.52 35.00 0.00 0.54 ind:imp:3p; +apaisais apaiser VER 8.52 35.00 0.02 0.07 ind:imp:1s;ind:imp:2s; +apaisait apaiser VER 8.52 35.00 0.04 3.18 ind:imp:3s; +apaisant apaisant ADJ m s 1.28 6.62 0.70 2.30 +apaisante apaisant ADJ f s 1.28 6.62 0.48 2.43 +apaisantes apaisant ADJ f p 1.28 6.62 0.06 0.95 +apaisants apaisant ADJ m p 1.28 6.62 0.04 0.95 +apaise apaiser VER 8.52 35.00 2.01 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apaisement apaisement NOM m s 0.47 7.23 0.46 6.69 +apaisements apaisement NOM m p 0.47 7.23 0.01 0.54 +apaisent apaiser VER 8.52 35.00 0.11 0.88 ind:pre:3p; +apaiser apaiser VER 8.52 35.00 3.49 8.85 inf; +apaisera apaiser VER 8.52 35.00 0.60 0.20 ind:fut:3s; +apaiseraient apaiser VER 8.52 35.00 0.01 0.14 cnd:pre:3p; +apaiserais apaiser VER 8.52 35.00 0.01 0.07 cnd:pre:1s; +apaiserait apaiser VER 8.52 35.00 0.09 0.54 cnd:pre:3s; +apaisez apaiser VER 8.52 35.00 0.19 0.07 imp:pre:2p; +apaisiez apaiser VER 8.52 35.00 0.01 0.00 ind:imp:2p; +apaisons apaiser VER 8.52 35.00 0.00 0.07 imp:pre:1p; +apaisât apaiser VER 8.52 35.00 0.00 0.27 sub:imp:3s; +apaisèrent apaiser VER 8.52 35.00 0.00 0.68 ind:pas:3p; +apaisé apaiser VER m s 8.52 35.00 1.08 4.66 par:pas; +apaisée apaiser VER f s 8.52 35.00 0.47 4.05 par:pas; +apaisées apaiser VER f p 8.52 35.00 0.04 0.74 par:pas; +apaisés apaiser VER m p 8.52 35.00 0.17 1.15 par:pas; +apanage apanage NOM m s 0.27 1.22 0.27 1.15 +apanages apanage NOM m p 0.27 1.22 0.00 0.07 +apartheid apartheid NOM m s 0.53 0.07 0.53 0.07 +aparté aparté NOM m s 0.24 1.69 0.20 1.15 +apartés aparté NOM m p 0.24 1.69 0.04 0.54 +apathie apathie NOM f s 0.91 1.49 0.91 1.49 +apathique apathique ADJ s 0.52 0.54 0.46 0.41 +apathiques apathique ADJ m p 0.52 0.54 0.06 0.14 +apatride apatride ADJ m s 0.32 0.54 0.30 0.27 +apatrides apatride ADJ m p 0.32 0.54 0.02 0.27 +apax apax NOM m 0.00 0.07 0.00 0.07 +ape ape NOM m s 0.23 0.14 0.23 0.07 +aperceptions aperception NOM f p 0.00 0.14 0.00 0.14 +apercevaient apercevoir VER 34.56 233.11 0.00 2.30 ind:imp:3p; +apercevais apercevoir VER 34.56 233.11 0.15 6.55 ind:imp:1s;ind:imp:2s; +apercevait apercevoir VER 34.56 233.11 0.79 25.68 ind:imp:3s; +apercevant apercevoir VER 34.56 233.11 0.08 8.45 par:pre; +apercevez apercevoir VER 34.56 233.11 0.49 0.41 ind:pre:2p; +aperceviez apercevoir VER 34.56 233.11 0.14 0.00 ind:imp:2p; +apercevions apercevoir VER 34.56 233.11 0.03 1.08 ind:imp:1p;sub:pre:1p; +apercevoir apercevoir VER 34.56 233.11 6.16 35.20 inf; +apercevons apercevoir VER 34.56 233.11 0.06 0.95 ind:pre:1p; +apercevra apercevoir VER 34.56 233.11 1.27 1.42 ind:fut:3s; +apercevrai apercevoir VER 34.56 233.11 0.03 0.20 ind:fut:1s; +apercevraient apercevoir VER 34.56 233.11 0.00 0.07 cnd:pre:3p; +apercevrais apercevoir VER 34.56 233.11 0.08 0.34 cnd:pre:1s;cnd:pre:2s; +apercevrait apercevoir VER 34.56 233.11 0.37 1.22 cnd:pre:3s; +apercevras apercevoir VER 34.56 233.11 0.35 0.27 ind:fut:2s; +apercevrez apercevoir VER 34.56 233.11 0.23 0.68 ind:fut:2p; +apercevrons apercevoir VER 34.56 233.11 0.02 0.14 ind:fut:1p; +apercevront apercevoir VER 34.56 233.11 0.61 0.47 ind:fut:3p; +aperçûmes apercevoir VER 34.56 233.11 0.12 0.81 ind:pas:1p; +aperçût apercevoir VER 34.56 233.11 0.00 1.62 sub:imp:3s; +aperçois apercevoir VER 34.56 233.11 3.82 14.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +aperçoit apercevoir VER 34.56 233.11 3.15 21.82 ind:pre:3s; +aperçoive apercevoir VER 34.56 233.11 2.42 4.05 sub:pre:1s;sub:pre:3s; +aperçoivent apercevoir VER 34.56 233.11 0.43 1.62 ind:pre:3p; +aperçoives apercevoir VER 34.56 233.11 0.34 0.14 sub:pre:2s; +aperçu apercevoir VER m s 34.56 233.11 8.28 27.23 par:pas; +aperçue apercevoir VER f s 34.56 233.11 2.77 8.58 par:pas; +aperçues apercevoir VER f p 34.56 233.11 0.04 0.88 par:pas; +aperçurent apercevoir VER 34.56 233.11 0.25 3.85 ind:pas:3p; +aperçus apercevoir VER m p 34.56 233.11 1.34 16.69 ind:pas:1s;par:pas; +aperçussent apercevoir VER 34.56 233.11 0.00 0.07 sub:imp:3p; +aperçut apercevoir VER 34.56 233.11 0.76 45.47 ind:pas:3s; +apes ape NOM m p 0.23 0.14 0.00 0.07 +apesanteur apesanteur NOM f s 0.93 0.81 0.93 0.81 +apeura apeurer VER 0.36 1.76 0.00 0.07 ind:pas:3s; +apeuraient apeurer VER 0.36 1.76 0.00 0.07 ind:imp:3p; +apeurait apeurer VER 0.36 1.76 0.00 0.14 ind:imp:3s; +apeure apeurer VER 0.36 1.76 0.01 0.07 ind:pre:3s; +apeurer apeurer VER 0.36 1.76 0.01 0.20 inf; +apeuré apeuré ADJ m s 1.31 5.68 0.69 2.36 +apeurée apeuré ADJ f s 1.31 5.68 0.47 1.22 +apeurées apeuré ADJ f p 1.31 5.68 0.01 0.34 +apeurés apeuré ADJ m p 1.31 5.68 0.14 1.76 +apex apex NOM m 0.33 0.07 0.33 0.07 +aphaniptères aphaniptère NOM m p 0.00 0.07 0.00 0.07 +aphasie aphasie NOM f s 0.20 0.27 0.20 0.27 +aphasique aphasique ADJ s 0.03 0.47 0.02 0.27 +aphasiques aphasique ADJ m p 0.03 0.47 0.01 0.20 +aphone aphone ADJ s 0.27 1.01 0.25 0.74 +aphones aphone ADJ m p 0.27 1.01 0.02 0.27 +aphonie aphonie NOM f s 0.00 0.14 0.00 0.14 +aphorisme aphorisme NOM m s 0.04 0.88 0.02 0.14 +aphorismes aphorisme NOM m p 0.04 0.88 0.02 0.74 +aphrodisiaque aphrodisiaque NOM m s 1.27 0.27 1.09 0.14 +aphrodisiaques aphrodisiaque NOM m p 1.27 0.27 0.17 0.14 +aphrodisie aphrodisie NOM f s 0.00 0.14 0.00 0.14 +aphrodite aphrodite NOM f s 0.01 0.00 0.01 0.00 +aphtes aphte NOM m p 0.05 0.00 0.05 0.00 +aphteuse aphteux ADJ f s 0.17 0.34 0.16 0.34 +aphteux aphteux ADJ m 0.17 0.34 0.01 0.00 +aphérèse aphérèse NOM f s 0.00 0.07 0.00 0.07 +api api NOM m s 0.16 0.20 0.16 0.20 +apiculteur apiculteur NOM m s 0.10 0.07 0.04 0.07 +apiculteurs apiculteur NOM m p 0.10 0.07 0.02 0.00 +apicultrice apiculteur NOM f s 0.10 0.07 0.04 0.00 +apiculture apiculture NOM f s 0.04 0.00 0.04 0.00 +apion apion NOM m s 0.00 0.07 0.00 0.07 +apis apis NOM m 0.01 0.00 0.01 0.00 +apitoie apitoyer VER 2.52 6.22 0.69 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apitoiement apitoiement NOM m s 0.29 0.61 0.29 0.61 +apitoient apitoyer VER 2.52 6.22 0.01 0.20 ind:pre:3p; +apitoierai apitoyer VER 2.52 6.22 0.03 0.00 ind:fut:1s; +apitoierait apitoyer VER 2.52 6.22 0.00 0.07 cnd:pre:3s; +apitoies apitoyer VER 2.52 6.22 0.14 0.00 ind:pre:2s; +apitoya apitoyer VER 2.52 6.22 0.00 0.61 ind:pas:3s; +apitoyaient apitoyer VER 2.52 6.22 0.00 0.14 ind:imp:3p; +apitoyait apitoyer VER 2.52 6.22 0.01 0.47 ind:imp:3s; +apitoyant apitoyer VER 2.52 6.22 0.07 0.27 par:pre; +apitoyer apitoyer VER 2.52 6.22 1.32 1.62 inf; +apitoyez apitoyer VER 2.52 6.22 0.08 0.00 imp:pre:2p;ind:pre:2p; +apitoyons apitoyer VER 2.52 6.22 0.01 0.14 imp:pre:1p;ind:pre:1p; +apitoyèrent apitoyer VER 2.52 6.22 0.00 0.07 ind:pas:3p; +apitoyé apitoyer VER m s 2.52 6.22 0.04 1.15 par:pas; +apitoyée apitoyer VER f s 2.52 6.22 0.01 0.61 par:pas; +apitoyées apitoyer VER f p 2.52 6.22 0.00 0.14 par:pas; +apitoyés apitoyer VER m p 2.52 6.22 0.10 0.41 par:pas; +apivore apivore ADJ s 0.00 0.07 0.00 0.07 +aplani aplanir VER m s 0.61 2.57 0.05 0.61 par:pas; +aplanie aplanir VER f s 0.61 2.57 0.01 0.20 par:pas; +aplanies aplanir VER f p 0.61 2.57 0.00 0.14 par:pas; +aplanir aplanir VER 0.61 2.57 0.35 0.41 inf; +aplanira aplanir VER 0.61 2.57 0.00 0.07 ind:fut:3s; +aplaniront aplanir VER 0.61 2.57 0.00 0.14 ind:fut:3p; +aplanis aplanir VER 0.61 2.57 0.01 0.07 imp:pre:2s;ind:pre:1s; +aplanissaient aplanir VER 0.61 2.57 0.00 0.20 ind:imp:3p; +aplanissait aplanir VER 0.61 2.57 0.01 0.47 ind:imp:3s; +aplanissant aplanir VER 0.61 2.57 0.01 0.14 par:pre; +aplanissement aplanissement NOM m s 0.01 0.34 0.01 0.34 +aplanissez aplanir VER 0.61 2.57 0.14 0.00 imp:pre:2p; +aplanissons aplanir VER 0.61 2.57 0.00 0.07 imp:pre:1p; +aplanit aplanir VER 0.61 2.57 0.01 0.07 ind:pre:3s; +aplasie aplasie NOM f s 0.01 0.00 0.01 0.00 +aplat aplat NOM m s 0.01 0.27 0.00 0.07 +aplati aplatir VER m s 1.91 14.53 0.32 2.77 par:pas; +aplatie aplatir VER f s 1.91 14.53 0.21 1.28 par:pas; +aplaties aplatir VER f p 1.91 14.53 0.02 0.47 par:pas; +aplatir aplatir VER 1.91 14.53 0.67 2.30 inf; +aplatirais aplatir VER 1.91 14.53 0.02 0.00 cnd:pre:1s; +aplatirait aplatir VER 1.91 14.53 0.02 0.07 cnd:pre:3s; +aplatirent aplatir VER 1.91 14.53 0.00 0.20 ind:pas:3p; +aplatirez aplatir VER 1.91 14.53 0.00 0.07 ind:fut:2p; +aplatis aplatir VER m p 1.91 14.53 0.34 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +aplatissaient aplatir VER 1.91 14.53 0.01 0.20 ind:imp:3p; +aplatissais aplatir VER 1.91 14.53 0.00 0.14 ind:imp:1s; +aplatissait aplatir VER 1.91 14.53 0.00 0.81 ind:imp:3s; +aplatissant aplatir VER 1.91 14.53 0.00 0.95 par:pre; +aplatisse aplatir VER 1.91 14.53 0.03 0.14 sub:pre:1s;sub:pre:3s; +aplatissement aplatissement NOM m s 0.03 0.54 0.03 0.41 +aplatissements aplatissement NOM m p 0.03 0.54 0.00 0.14 +aplatissent aplatir VER 1.91 14.53 0.02 0.54 ind:pre:3p; +aplatissez aplatir VER 1.91 14.53 0.06 0.07 imp:pre:2p;ind:pre:2p; +aplatit aplatir VER 1.91 14.53 0.19 2.84 ind:pre:3s;ind:pas:3s; +aplats aplat NOM m p 0.01 0.27 0.01 0.20 +aplomb aplomb NOM m s 1.61 9.05 1.61 8.99 +aplombs aplomb NOM m p 1.61 9.05 0.00 0.07 +apnée apnée NOM f s 0.60 0.27 0.60 0.27 +apocalypse apocalypse NOM f s 4.87 6.35 4.85 6.01 +apocalypses apocalypse NOM f p 4.87 6.35 0.03 0.34 +apocalyptique apocalyptique ADJ s 0.58 1.76 0.38 1.01 +apocalyptiques apocalyptique ADJ p 0.58 1.76 0.20 0.74 +apocope apocope NOM f s 0.01 0.00 0.01 0.00 +apocryphe apocryphe ADJ s 0.01 0.27 0.01 0.14 +apocryphes apocryphe NOM m p 0.04 0.14 0.03 0.00 +apodictique apodictique ADJ f s 0.00 0.07 0.00 0.07 +apogée apogée NOM m s 1.40 1.76 1.40 1.76 +apâli apâlir VER m s 0.00 0.14 0.00 0.07 par:pas; +apâlis apâlir VER m p 0.00 0.14 0.00 0.07 par:pas; +apolitique apolitique ADJ m s 0.60 0.20 0.58 0.14 +apolitiques apolitique NOM p 0.20 0.07 0.10 0.07 +apolitisme apolitisme NOM m s 0.00 0.07 0.00 0.07 +apollon apollon NOM m s 0.04 0.14 0.04 0.00 +apollons apollon NOM m p 0.04 0.14 0.01 0.14 +apologie apologie NOM f s 0.17 1.22 0.17 1.22 +apologiste apologiste NOM s 0.02 0.20 0.01 0.14 +apologistes apologiste NOM p 0.02 0.20 0.01 0.07 +apologue apologue NOM m s 0.00 0.61 0.00 0.61 +apologétique apologétique NOM s 0.00 0.47 0.00 0.47 +apologétiques apologétique ADJ m p 0.00 0.14 0.00 0.07 +aponévroses aponévrose NOM f p 0.01 0.07 0.01 0.07 +aponévrotique aponévrotique ADJ f s 0.01 0.00 0.01 0.00 +apophtegmes apophtegme NOM m p 0.00 0.20 0.00 0.20 +apoplectique apoplectique ADJ s 0.15 0.88 0.14 0.88 +apoplectiques apoplectique ADJ p 0.15 0.88 0.01 0.00 +apoplexie apoplexie NOM f s 0.33 0.95 0.33 0.88 +apoplexies apoplexie NOM f p 0.33 0.95 0.00 0.07 +apoptose apoptose NOM f s 0.03 0.00 0.03 0.00 +apostasie apostasie NOM f s 0.01 0.41 0.01 0.41 +apostasié apostasier VER m s 0.00 0.07 0.00 0.07 par:pas; +apostat apostat NOM m s 0.46 0.27 0.25 0.20 +apostate apostat NOM f s 0.46 0.27 0.00 0.07 +apostats apostat NOM m p 0.46 0.27 0.21 0.00 +apostillée apostiller VER f s 0.00 0.07 0.00 0.07 par:pas; +apostolat apostolat NOM m s 0.10 1.08 0.10 1.08 +apostolique apostolique ADJ s 0.72 1.96 0.72 1.89 +apostoliques apostolique ADJ f p 0.72 1.96 0.00 0.07 +apostropha apostropher VER 0.05 3.31 0.00 0.68 ind:pas:3s; +apostrophaient apostropher VER 0.05 3.31 0.00 0.20 ind:imp:3p; +apostrophait apostropher VER 0.05 3.31 0.00 0.61 ind:imp:3s; +apostrophant apostropher VER 0.05 3.31 0.00 0.34 par:pre; +apostrophe apostrophe NOM f s 0.15 1.76 0.15 1.15 +apostrophent apostropher VER 0.05 3.31 0.00 0.14 ind:pre:3p; +apostropher apostropher VER 0.05 3.31 0.01 0.27 inf; +apostrophes apostrophe NOM f p 0.15 1.76 0.00 0.61 +apostrophèrent apostropher VER 0.05 3.31 0.00 0.07 ind:pas:3p; +apostrophé apostropher VER m s 0.05 3.31 0.00 0.34 par:pas; +apostrophée apostropher VER f s 0.05 3.31 0.00 0.20 par:pas; +apostées aposter VER f p 0.00 0.07 0.00 0.07 par:pas; +apostume apostume NOM m s 0.00 0.07 0.00 0.07 +apothicaire apothicaire NOM m s 0.32 1.28 0.32 1.15 +apothicairerie apothicairerie NOM f s 0.00 0.07 0.00 0.07 +apothicaires apothicaire NOM m p 0.32 1.28 0.00 0.14 +apothéose apothéose NOM f s 0.49 4.26 0.49 4.12 +apothéoses apothéose NOM f p 0.49 4.26 0.00 0.14 +apparût apparaître VER 43.78 159.26 0.01 0.74 sub:imp:3s; +apparaît apparaître VER 43.78 159.26 11.14 27.91 ind:pre:3s; +apparaîtra apparaître VER 43.78 159.26 1.77 1.08 ind:fut:3s; +apparaîtrai apparaître VER 43.78 159.26 0.03 0.07 ind:fut:1s; +apparaîtraient apparaître VER 43.78 159.26 0.02 0.20 cnd:pre:3p; +apparaîtrais apparaître VER 43.78 159.26 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +apparaîtrait apparaître VER 43.78 159.26 0.31 1.35 cnd:pre:3s; +apparaîtras apparaître VER 43.78 159.26 0.02 0.07 ind:fut:2s; +apparaître apparaître VER 43.78 159.26 6.30 24.46 inf; +apparaîtrez apparaître VER 43.78 159.26 0.03 0.07 ind:fut:2p; +apparaîtrions apparaître VER 43.78 159.26 0.01 0.07 cnd:pre:1p; +apparaîtrons apparaître VER 43.78 159.26 0.01 0.20 ind:fut:1p; +apparaîtront apparaître VER 43.78 159.26 0.41 0.61 ind:fut:3p; +apparais apparaître VER 43.78 159.26 0.90 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +apparaissaient apparaître VER 43.78 159.26 0.32 8.51 ind:imp:3p; +apparaissais apparaître VER 43.78 159.26 0.03 0.34 ind:imp:1s;ind:imp:2s; +apparaissait apparaître VER 43.78 159.26 1.06 27.09 ind:imp:3s; +apparaissant apparaître VER 43.78 159.26 0.27 2.43 par:pre; +apparaisse apparaître VER 43.78 159.26 0.93 2.03 sub:pre:1s;sub:pre:3s; +apparaissent apparaître VER 43.78 159.26 3.89 7.97 ind:pre:3p; +apparaissez apparaître VER 43.78 159.26 0.38 0.27 imp:pre:2p;ind:pre:2p; +apparaissiez apparaître VER 43.78 159.26 0.05 0.14 ind:imp:2p; +apparaissions apparaître VER 43.78 159.26 0.00 0.07 ind:imp:1p; +apparaissons apparaître VER 43.78 159.26 0.05 0.07 imp:pre:1p;ind:pre:1p; +apparat apparat NOM m s 0.51 4.86 0.51 4.80 +apparatchik apparatchik NOM m s 0.01 0.34 0.01 0.27 +apparatchiks apparatchik NOM m p 0.01 0.34 0.00 0.07 +apparats apparat NOM m p 0.51 4.86 0.00 0.07 +apparaux apparaux NOM m p 0.00 0.20 0.00 0.20 +appareil_photo appareil_photo NOM m s 0.32 0.27 0.32 0.27 +appareil appareil NOM m s 51.53 44.66 44.20 35.88 +appareilla appareiller VER 1.24 2.97 0.00 0.34 ind:pas:3s; +appareillage appareillage NOM m s 0.29 1.89 0.29 1.62 +appareillages appareillage NOM m p 0.29 1.89 0.00 0.27 +appareillaient appareiller VER 1.24 2.97 0.00 0.07 ind:imp:3p; +appareillait appareiller VER 1.24 2.97 0.00 0.41 ind:imp:3s; +appareillant appareiller VER 1.24 2.97 0.00 0.14 par:pre; +appareille appareiller VER 1.24 2.97 0.22 0.27 ind:pre:1s;ind:pre:3s; +appareillent appareiller VER 1.24 2.97 0.01 0.07 ind:pre:3p; +appareiller appareiller VER 1.24 2.97 0.51 0.81 inf; +appareilleraient appareiller VER 1.24 2.97 0.00 0.07 cnd:pre:3p; +appareillez appareiller VER 1.24 2.97 0.06 0.00 imp:pre:2p; +appareillions appareiller VER 1.24 2.97 0.00 0.07 ind:imp:1p; +appareillons appareiller VER 1.24 2.97 0.40 0.14 imp:pre:1p;ind:pre:1p; +appareillé appareiller VER m s 1.24 2.97 0.04 0.41 par:pas; +appareillés appareiller VER m p 1.24 2.97 0.01 0.20 par:pas; +appareils appareil NOM m p 51.53 44.66 7.34 8.78 +apparemment apparemment ADV 43.08 29.53 43.08 29.53 +apparence apparence NOM f s 17.64 48.51 11.85 34.32 +apparences apparence NOM f p 17.64 48.51 5.79 14.19 +apparent apparent ADJ m s 2.88 19.32 1.08 4.86 +apparentaient apparenter VER 0.77 4.86 0.01 0.54 ind:imp:3p; +apparentait apparenter VER 0.77 4.86 0.02 0.74 ind:imp:3s; +apparentant apparenter VER 0.77 4.86 0.01 0.27 par:pre; +apparente apparent ADJ f s 2.88 19.32 1.35 10.34 +apparentement apparentement NOM m s 0.03 0.07 0.03 0.07 +apparentent apparenter VER 0.77 4.86 0.03 0.41 ind:pre:3p; +apparenter apparenter VER 0.77 4.86 0.03 0.34 inf; +apparentes apparent ADJ f p 2.88 19.32 0.18 2.30 +apparents apparent ADJ m p 2.88 19.32 0.27 1.82 +apparenté apparenter VER m s 0.77 4.86 0.27 0.74 par:pas; +apparentée apparenter VER f s 0.77 4.86 0.05 0.47 par:pas; +apparentés apparenter VER m p 0.77 4.86 0.13 0.14 par:pas; +appariait apparier VER 0.19 0.81 0.00 0.14 ind:imp:3s; +appariant apparier VER 0.19 0.81 0.00 0.14 par:pre; +apparie apparier VER 0.19 0.81 0.00 0.07 ind:pre:3s; +apparier apparier VER 0.19 0.81 0.00 0.07 inf; +appariteur appariteur NOM m s 0.28 0.61 0.28 0.34 +appariteurs appariteur NOM m p 0.28 0.61 0.00 0.27 +apparition apparition NOM f s 8.02 32.64 6.93 28.65 +apparitions apparition NOM f p 8.02 32.64 1.08 3.99 +apparié apparier VER m s 0.19 0.81 0.01 0.07 par:pas; +appariée apparier VER f s 0.19 0.81 0.00 0.07 par:pas; +appariées apparier VER f p 0.19 0.81 0.00 0.14 par:pas; +appariés apparier VER m p 0.19 0.81 0.18 0.14 par:pas; +appart appart NOM m s 18.07 2.03 17.48 1.96 +appartînt appartenir VER 80.57 92.36 0.00 0.74 sub:imp:3s; +appartement_roi appartement_roi NOM m s 0.00 0.07 0.00 0.07 +appartement appartement NOM m s 76.33 99.26 69.77 86.01 +appartements appartement NOM m p 76.33 99.26 6.56 13.24 +appartenaient appartenir VER 80.57 92.36 2.26 9.05 ind:imp:3p; +appartenais appartenir VER 80.57 92.36 0.86 1.96 ind:imp:1s;ind:imp:2s; +appartenait appartenir VER 80.57 92.36 8.89 24.19 ind:imp:3s; +appartenance appartenance NOM f s 1.83 3.45 1.82 3.24 +appartenances appartenance NOM f p 1.83 3.45 0.01 0.20 +appartenant appartenir VER 80.57 92.36 2.90 5.47 par:pre; +appartenez appartenir VER 80.57 92.36 0.89 0.74 imp:pre:2p;ind:pre:2p; +apparteniez appartenir VER 80.57 92.36 0.19 0.14 ind:imp:2p; +appartenions appartenir VER 80.57 92.36 0.04 0.68 ind:imp:1p; +appartenir appartenir VER 80.57 92.36 3.74 9.12 inf; +appartenons appartenir VER 80.57 92.36 0.71 0.81 imp:pre:1p;ind:pre:1p; +appartenu appartenir VER m s 80.57 92.36 2.23 4.66 par:pas; +appartenues appartenir VER f p 80.57 92.36 0.01 0.00 par:pas; +appartiendra appartenir VER 80.57 92.36 1.23 1.01 ind:fut:3s; +appartiendrai appartenir VER 80.57 92.36 0.02 0.14 ind:fut:1s; +appartiendraient appartenir VER 80.57 92.36 0.22 0.47 cnd:pre:3p; +appartiendrais appartenir VER 80.57 92.36 0.00 0.14 cnd:pre:1s;cnd:pre:2s; +appartiendrait appartenir VER 80.57 92.36 0.36 1.42 cnd:pre:3s; +appartiendras appartenir VER 80.57 92.36 0.12 0.00 ind:fut:2s; +appartiendrons appartenir VER 80.57 92.36 0.01 0.00 ind:fut:1p; +appartiendront appartenir VER 80.57 92.36 0.07 0.07 ind:fut:3p; +appartienne appartenir VER 80.57 92.36 0.63 0.74 sub:pre:1s;sub:pre:3s; +appartiennent appartenir VER 80.57 92.36 6.86 6.76 ind:pre:3p; +appartiens appartenir VER 80.57 92.36 7.37 2.84 imp:pre:2s;ind:pre:1s;ind:pre:2s; +appartient appartenir VER 80.57 92.36 40.94 20.27 ind:pre:3s; +appartins appartenir VER 80.57 92.36 0.00 0.07 ind:pas:1s; +appartinssent appartenir VER 80.57 92.36 0.00 0.14 sub:imp:3p; +appartint appartenir VER 80.57 92.36 0.00 0.74 ind:pas:3s; +apparts appart NOM m p 18.07 2.03 0.59 0.07 +apparu apparaître VER m s 43.78 159.26 6.43 9.12 par:pas; +apparue apparaître VER f s 43.78 159.26 4.21 6.55 par:pas; +apparues apparaître VER f p 43.78 159.26 0.81 1.15 par:pas; +apparurent apparaître VER 43.78 159.26 0.52 5.95 ind:pas:3p; +apparus apparaître VER m p 43.78 159.26 1.74 2.09 ind:pas:1s;par:pas; +apparussent apparaître VER 43.78 159.26 0.00 0.14 sub:imp:3p; +apparut apparaître VER 43.78 159.26 2.10 28.04 ind:pas:3s; +appas appas NOM m p 0.40 0.95 0.40 0.95 +appauvri appauvrir VER m s 0.56 1.89 0.20 0.41 par:pas; +appauvrie appauvrir VER f s 0.56 1.89 0.12 0.41 par:pas; +appauvries appauvrir VER f p 0.56 1.89 0.03 0.07 par:pas; +appauvrir appauvrir VER 0.56 1.89 0.14 0.27 inf; +appauvris appauvrir VER m p 0.56 1.89 0.03 0.20 par:pas; +appauvrissaient appauvrir VER 0.56 1.89 0.00 0.14 ind:imp:3p; +appauvrissait appauvrir VER 0.56 1.89 0.00 0.07 ind:imp:3s; +appauvrissant appauvrissant ADJ m s 0.00 0.20 0.00 0.14 +appauvrissante appauvrissant ADJ f s 0.00 0.20 0.00 0.07 +appauvrissement appauvrissement NOM m s 0.00 0.74 0.00 0.74 +appauvrissez appauvrir VER 0.56 1.89 0.02 0.07 imp:pre:2p;ind:pre:2p; +appauvrissions appauvrir VER 0.56 1.89 0.00 0.07 ind:imp:1p; +appauvrissons appauvrir VER 0.56 1.89 0.00 0.07 imp:pre:1p; +appauvrit appauvrir VER 0.56 1.89 0.03 0.14 ind:pre:3s;ind:pas:3s; +appeau appeau NOM m s 0.08 0.41 0.06 0.27 +appeaux appeau NOM m p 0.08 0.41 0.02 0.14 +appel appel NOM m s 100.18 73.45 80.88 56.69 +appela appeler VER 1165.45 465.34 1.67 24.26 ind:pas:3s; +appelai appeler VER 1165.45 465.34 0.14 3.92 ind:pas:1s; +appelaient appeler VER 1165.45 465.34 4.61 14.93 ind:imp:3p; +appelais appeler VER 1165.45 465.34 8.02 6.62 ind:imp:1s;ind:imp:2s; +appelait appeler VER 1165.45 465.34 47.44 104.59 ind:imp:3s; +appelant appeler VER 1165.45 465.34 2.40 7.16 par:pre; +appelants appelant NOM m p 0.42 0.54 0.10 0.07 +appeler appeler VER 1165.45 465.34 192.66 63.92 ind:imp:3s;inf; +appeleur appeleur NOM m s 0.00 0.07 0.00 0.07 +appelez appeler VER 1165.45 465.34 95.78 11.42 imp:pre:2p;ind:pre:2p; +appeliez appeler VER 1165.45 465.34 2.53 0.81 ind:imp:2p;sub:pre:2p; +appelions appeler VER 1165.45 465.34 0.70 3.38 ind:imp:1p; +appellation appellation NOM f s 0.36 3.31 0.28 2.43 +appellations appellation NOM f p 0.36 3.31 0.08 0.88 +appelle appeler VER 1165.45 465.34 485.77 132.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +appellent appeler VER 1165.45 465.34 23.89 16.01 ind:pre:3p; +appellera appeler VER 1165.45 465.34 9.29 2.50 ind:fut:3s; +appellerai appeler VER 1165.45 465.34 20.71 3.58 ind:fut:1s; +appelleraient appeler VER 1165.45 465.34 0.38 0.34 cnd:pre:3p; +appellerais appeler VER 1165.45 465.34 4.08 0.61 cnd:pre:1s;cnd:pre:2s; +appellerait appeler VER 1165.45 465.34 2.66 3.85 cnd:pre:3s; +appelleras appeler VER 1165.45 465.34 2.66 0.81 ind:fut:2s; +appellerez appeler VER 1165.45 465.34 1.30 0.20 ind:fut:2p; +appelleriez appeler VER 1165.45 465.34 0.77 0.20 cnd:pre:2p; +appellerions appeler VER 1165.45 465.34 0.10 0.14 cnd:pre:1p; +appellerons appeler VER 1165.45 465.34 0.88 0.54 ind:fut:1p; +appelleront appeler VER 1165.45 465.34 1.59 0.47 ind:fut:3p; +appelles appeler VER 1165.45 465.34 67.07 8.72 ind:pre:2s;sub:pre:2s; +appelons appeler VER 1165.45 465.34 8.38 5.68 imp:pre:1p;ind:pre:1p; +appelât appeler VER 1165.45 465.34 0.01 1.28 sub:imp:3s; +appels appel NOM m p 100.18 73.45 19.30 16.76 +appelèrent appeler VER 1165.45 465.34 0.17 1.49 ind:pas:3p; +appelé appeler VER m s 1165.45 465.34 144.29 30.61 par:pas; +appelée appeler VER f s 1165.45 465.34 27.50 9.12 par:pas; +appelées appeler VER f p 1165.45 465.34 0.95 2.03 par:pas; +appelés appeler VER m p 1165.45 465.34 7.04 3.78 par:pas; +appendait appendre VER 0.04 0.41 0.00 0.07 ind:imp:3s; +appendice appendice NOM m s 1.59 1.96 1.50 1.35 +appendicectomie appendicectomie NOM f s 0.25 0.00 0.25 0.00 +appendices appendice NOM m p 1.59 1.96 0.09 0.61 +appendicite appendicite NOM f s 1.75 1.08 1.75 1.08 +appendrait appendre VER 0.04 0.41 0.00 0.07 cnd:pre:3s; +appendre appendre VER 0.04 0.41 0.03 0.07 inf; +appends appendre VER 0.04 0.41 0.01 0.00 imp:pre:2s; +appendu appendre VER m s 0.04 0.41 0.00 0.07 par:pas; +appendues appendre VER f p 0.04 0.41 0.00 0.07 par:pas; +appendus appendre VER m p 0.04 0.41 0.00 0.07 par:pas; +appentis appentis NOM m 0.08 2.64 0.08 2.64 +appert appert VER 0.00 0.14 0.00 0.14 inf; +appesanti appesantir VER m s 0.02 3.04 0.00 0.27 par:pas; +appesantie appesantir VER f s 0.02 3.04 0.00 0.41 par:pas; +appesanties appesantir VER f p 0.02 3.04 0.00 0.14 par:pas; +appesantir appesantir VER 0.02 3.04 0.01 0.61 inf; +appesantis appesantir VER m p 0.02 3.04 0.00 0.20 ind:pre:1s;par:pas; +appesantissais appesantir VER 0.02 3.04 0.01 0.07 ind:imp:1s; +appesantissait appesantir VER 0.02 3.04 0.00 0.61 ind:imp:3s; +appesantissant appesantir VER 0.02 3.04 0.00 0.07 par:pre; +appesantissement appesantissement NOM m s 0.00 0.07 0.00 0.07 +appesantit appesantir VER 0.02 3.04 0.00 0.68 ind:pre:3s;ind:pas:3s; +applaudîmes applaudir VER 15.82 17.97 0.00 0.07 ind:pas:1p; +applaudît applaudir VER 15.82 17.97 0.00 0.07 sub:imp:3s; +applaudi applaudir VER m s 15.82 17.97 1.56 2.03 par:pas; +applaudie applaudir VER f s 15.82 17.97 0.15 0.27 par:pas; +applaudies applaudir VER f p 15.82 17.97 0.01 0.20 par:pas; +applaudimètre applaudimètre NOM m s 0.02 0.00 0.02 0.00 +applaudir applaudir VER 15.82 17.97 3.16 4.46 inf; +applaudira applaudir VER 15.82 17.97 0.07 0.07 ind:fut:3s; +applaudirai applaudir VER 15.82 17.97 0.25 0.00 ind:fut:1s; +applaudiraient applaudir VER 15.82 17.97 0.02 0.14 cnd:pre:3p; +applaudirais applaudir VER 15.82 17.97 0.17 0.07 cnd:pre:1s; +applaudirait applaudir VER 15.82 17.97 0.03 0.07 cnd:pre:3s; +applaudirent applaudir VER 15.82 17.97 0.00 0.61 ind:pas:3p; +applaudirez applaudir VER 15.82 17.97 0.02 0.07 ind:fut:2p; +applaudirons applaudir VER 15.82 17.97 0.02 0.00 ind:fut:1p; +applaudis applaudir VER m p 15.82 17.97 0.60 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +applaudissaient applaudir VER 15.82 17.97 0.27 1.15 ind:imp:3p; +applaudissais applaudir VER 15.82 17.97 0.22 0.14 ind:imp:1s;ind:imp:2s; +applaudissait applaudir VER 15.82 17.97 0.49 2.16 ind:imp:3s; +applaudissant applaudir VER 15.82 17.97 0.20 0.14 par:pre; +applaudisse applaudir VER 15.82 17.97 0.10 0.00 sub:pre:1s;sub:pre:3s; +applaudissement applaudissement NOM m s 7.04 9.26 0.50 0.34 +applaudissements applaudissement NOM m p 7.04 9.26 6.54 8.92 +applaudissent applaudir VER 15.82 17.97 0.47 0.95 ind:pre:3p;sub:imp:3p; +applaudisseur applaudisseur NOM m s 0.01 0.00 0.01 0.00 +applaudissez applaudir VER 15.82 17.97 2.75 0.07 imp:pre:2p;ind:pre:2p; +applaudissiez applaudir VER 15.82 17.97 0.02 0.00 ind:imp:2p; +applaudissions applaudir VER 15.82 17.97 0.00 0.07 ind:imp:1p; +applaudissons applaudir VER 15.82 17.97 0.89 0.07 imp:pre:1p;ind:pre:1p; +applaudit applaudir VER 15.82 17.97 4.37 3.99 ind:pre:3s;ind:pas:3s; +applicabilité applicabilité NOM f s 0.02 0.00 0.02 0.00 +applicable applicable ADJ s 0.30 1.01 0.14 0.61 +applicables applicable ADJ p 0.30 1.01 0.16 0.41 +applicateur applicateur NOM m s 0.28 0.00 0.28 0.00 +application application NOM f s 2.81 15.88 2.10 15.34 +applications application NOM f p 2.81 15.88 0.70 0.54 +appliqua appliquer VER 17.89 47.84 0.01 3.11 ind:pas:3s; +appliquai appliquer VER 17.89 47.84 0.01 1.01 ind:pas:1s; +appliquaient appliquer VER 17.89 47.84 0.04 1.22 ind:imp:3p; +appliquais appliquer VER 17.89 47.84 0.46 1.35 ind:imp:1s;ind:imp:2s; +appliquait appliquer VER 17.89 47.84 0.14 7.09 ind:imp:3s; +appliquant appliquer VER 17.89 47.84 0.16 4.26 par:pre; +appliquasse appliquer VER 17.89 47.84 0.00 0.07 sub:imp:1s; +appliquassions appliquer VER 17.89 47.84 0.00 0.07 sub:imp:1p; +applique appliquer VER 17.89 47.84 5.85 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +appliquent appliquer VER 17.89 47.84 1.23 1.62 ind:pre:3p; +appliquer appliquer VER 17.89 47.84 4.77 10.61 inf; +appliquera appliquer VER 17.89 47.84 0.09 0.34 ind:fut:3s; +appliquerai appliquer VER 17.89 47.84 0.23 0.14 ind:fut:1s; +appliquerais appliquer VER 17.89 47.84 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +appliquerait appliquer VER 17.89 47.84 0.04 0.27 cnd:pre:3s; +appliqueras appliquer VER 17.89 47.84 0.00 0.07 ind:fut:2s; +appliquerez appliquer VER 17.89 47.84 0.12 0.00 ind:fut:2p; +appliquerons appliquer VER 17.89 47.84 0.02 0.07 ind:fut:1p; +appliques appliquer VER 17.89 47.84 0.50 0.14 ind:pre:2s; +appliquez appliquer VER 17.89 47.84 0.86 0.00 imp:pre:2p;ind:pre:2p; +appliquions appliquer VER 17.89 47.84 0.00 0.07 ind:imp:1p; +appliquons appliquer VER 17.89 47.84 0.14 0.07 imp:pre:1p;ind:pre:1p; +appliquât appliquer VER 17.89 47.84 0.00 0.41 sub:imp:3s; +appliquèrent appliquer VER 17.89 47.84 0.00 0.54 ind:pas:3p; +appliqué appliquer VER m s 17.89 47.84 1.85 5.07 par:pas; +appliquée appliquer VER f s 17.89 47.84 0.91 2.43 par:pas; +appliquées appliquer VER f p 17.89 47.84 0.26 1.08 par:pas; +appliqués appliqué ADJ m p 0.59 6.01 0.08 0.74 +appoggiature appoggiature NOM f s 0.01 0.07 0.01 0.00 +appoggiatures appoggiature NOM f p 0.01 0.07 0.00 0.07 +appoint appoint NOM m s 0.35 1.76 0.35 1.76 +appointaient appointer VER 0.02 0.74 0.00 0.07 ind:imp:3p; +appointait appointer VER 0.02 0.74 0.00 0.07 ind:imp:3s; +appointe appointer VER 0.02 0.74 0.00 0.14 ind:pre:3s; +appointements appointement NOM m p 0.03 0.74 0.03 0.74 +appointer appointer VER 0.02 0.74 0.00 0.07 inf; +appointé appointé ADJ m s 0.02 0.34 0.02 0.07 +appointée appointer VER f s 0.02 0.74 0.00 0.27 par:pas; +appointés appointer VER m p 0.02 0.74 0.01 0.00 par:pas; +appontage appontage NOM m s 0.20 0.00 0.20 0.00 +appontement appontement NOM m s 0.05 0.47 0.05 0.47 +apponter apponter VER 0.09 0.00 0.09 0.00 inf; +apport apport NOM m s 1.80 1.82 1.63 1.35 +apporta apporter VER 209.89 159.32 0.93 16.82 ind:pas:3s; +apportai apporter VER 209.89 159.32 0.02 1.08 ind:pas:1s; +apportaient apporter VER 209.89 159.32 0.53 5.61 ind:imp:3p; +apportais apporter VER 209.89 159.32 1.78 2.09 ind:imp:1s;ind:imp:2s; +apportait apporter VER 209.89 159.32 3.24 24.86 ind:imp:3s; +apportant apporter VER 209.89 159.32 0.81 5.88 par:pre; +apportas apporter VER 209.89 159.32 0.00 0.07 ind:pas:2s; +apporte apporter VER 209.89 159.32 65.97 22.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +apportent apporter VER 209.89 159.32 3.04 4.12 ind:pre:3p; +apporter apporter VER 209.89 159.32 34.40 29.53 inf;; +apportera apporter VER 209.89 159.32 4.78 1.28 ind:fut:3s; +apporterai apporter VER 209.89 159.32 6.29 1.49 ind:fut:1s; +apporteraient apporter VER 209.89 159.32 0.14 0.41 cnd:pre:3p; +apporterais apporter VER 209.89 159.32 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +apporterait apporter VER 209.89 159.32 0.81 2.09 cnd:pre:3s; +apporteras apporter VER 209.89 159.32 0.69 0.54 ind:fut:2s; +apporterez apporter VER 209.89 159.32 0.41 0.20 ind:fut:2p; +apporteriez apporter VER 209.89 159.32 0.22 0.07 cnd:pre:2p; +apporterons apporter VER 209.89 159.32 0.32 0.00 ind:fut:1p; +apporteront apporter VER 209.89 159.32 0.68 0.07 ind:fut:3p; +apportes apporter VER 209.89 159.32 5.41 0.88 ind:pre:2s; +apportez apporter VER 209.89 159.32 18.50 1.69 imp:pre:2p;ind:pre:2p; +apportiez apporter VER 209.89 159.32 0.33 0.07 ind:imp:2p; +apportions apporter VER 209.89 159.32 0.01 0.47 ind:imp:1p; +apportons apporter VER 209.89 159.32 1.04 0.41 imp:pre:1p;ind:pre:1p; +apportât apporter VER 209.89 159.32 0.00 0.54 sub:imp:3s; +apports apport NOM m p 1.80 1.82 0.17 0.47 +apportèrent apporter VER 209.89 159.32 0.03 1.42 ind:pas:3p; +apporté apporter VER m s 209.89 159.32 54.44 24.53 par:pas; +apportée apporter VER f s 209.89 159.32 2.49 3.38 par:pas; +apportées apporter VER f p 209.89 159.32 1.27 2.43 par:pas; +apportés apporter VER m p 209.89 159.32 0.99 4.19 par:pas; +apposa apposer VER 0.95 3.04 0.01 0.27 ind:pas:3s; +apposai apposer VER 0.95 3.04 0.00 0.07 ind:pas:1s; +apposait apposer VER 0.95 3.04 0.01 0.14 ind:imp:3s; +apposant apposer VER 0.95 3.04 0.01 0.00 par:pre; +appose apposer VER 0.95 3.04 0.40 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apposent apposer VER 0.95 3.04 0.00 0.07 ind:pre:3p; +apposer apposer VER 0.95 3.04 0.28 0.81 inf; +apposerait apposer VER 0.95 3.04 0.00 0.14 cnd:pre:3s; +apposeras apposer VER 0.95 3.04 0.01 0.00 ind:fut:2s; +apposez apposer VER 0.95 3.04 0.04 0.00 imp:pre:2p; +apposition apposition NOM f s 0.01 0.14 0.01 0.14 +apposé apposer VER m s 0.95 3.04 0.04 0.54 par:pas; +apposée apposer VER f s 0.95 3.04 0.00 0.34 par:pas; +apposées apposer VER f p 0.95 3.04 0.00 0.34 par:pas; +apposés apposer VER m p 0.95 3.04 0.14 0.20 par:pas; +appât appât NOM m s 6.74 3.92 5.97 3.24 +appâtais appâter VER 1.59 1.55 0.01 0.07 ind:imp:1s; +appâtant appâter VER 1.59 1.55 0.01 0.07 par:pre; +appâte appâter VER 1.59 1.55 0.14 0.00 ind:pre:1s;ind:pre:3s; +appâtent appâter VER 1.59 1.55 0.02 0.07 ind:pre:3p; +appâter appâter VER 1.59 1.55 0.92 0.68 inf; +appâtera appâter VER 1.59 1.55 0.01 0.00 ind:fut:3s; +appâterait appâter VER 1.59 1.55 0.00 0.07 cnd:pre:3s; +appâtes appâter VER 1.59 1.55 0.02 0.00 ind:pre:2s; +appâtez appâter VER 1.59 1.55 0.02 0.00 imp:pre:2p;ind:pre:2p; +appâtons appâter VER 1.59 1.55 0.01 0.00 imp:pre:1p; +appâts appât NOM m p 6.74 3.92 0.77 0.68 +appâté appâter VER m s 1.59 1.55 0.31 0.41 par:pas; +appâtée appâter VER f s 1.59 1.55 0.00 0.14 par:pas; +appâtées appâter VER f p 1.59 1.55 0.00 0.07 par:pas; +appâtés appâter VER m p 1.59 1.55 0.11 0.00 par:pas; +apprîmes apprendre VER 348.45 286.69 0.04 1.08 ind:pas:1p; +apprît apprendre VER 348.45 286.69 0.01 0.81 sub:imp:3s; +apprenaient apprendre VER 348.45 286.69 0.74 2.43 ind:imp:3p; +apprenais apprendre VER 348.45 286.69 1.61 5.47 ind:imp:1s;ind:imp:2s; +apprenait apprendre VER 348.45 286.69 3.27 11.76 ind:imp:3s; +apprenant apprendre VER 348.45 286.69 2.88 7.23 par:pre; +apprend apprendre VER 348.45 286.69 27.11 17.16 ind:pre:3s; +apprendra apprendre VER 348.45 286.69 11.14 5.07 ind:fut:3s; +apprendrai apprendre VER 348.45 286.69 7.16 3.58 ind:fut:1s; +apprendraient apprendre VER 348.45 286.69 0.05 0.88 cnd:pre:3p; +apprendrais apprendre VER 348.45 286.69 1.36 1.28 cnd:pre:1s;cnd:pre:2s; +apprendrait apprendre VER 348.45 286.69 0.77 3.78 cnd:pre:3s; +apprendras apprendre VER 348.45 286.69 6.43 1.49 ind:fut:2s; +apprendre apprendre VER 348.45 286.69 101.75 71.22 inf; +apprendrez apprendre VER 348.45 286.69 3.35 0.74 ind:fut:2p; +apprendriez apprendre VER 348.45 286.69 0.10 0.27 cnd:pre:2p; +apprendrions apprendre VER 348.45 286.69 0.00 0.27 cnd:pre:1p; +apprendrons apprendre VER 348.45 286.69 0.63 0.68 ind:fut:1p; +apprendront apprendre VER 348.45 286.69 1.38 1.08 ind:fut:3p; +apprends apprendre VER 348.45 286.69 27.50 8.38 imp:pre:2s;ind:pre:1s;ind:pre:2s; +apprenez apprendre VER 348.45 286.69 7.34 2.23 imp:pre:2p;ind:pre:2p; +appreniez apprendre VER 348.45 286.69 0.72 0.41 ind:imp:2p;sub:pre:2p; +apprenions apprendre VER 348.45 286.69 0.09 1.76 ind:imp:1p; +apprenne apprendre VER 348.45 286.69 6.25 4.19 sub:pre:1s;sub:pre:3s; +apprennent apprendre VER 348.45 286.69 7.79 4.66 ind:pre:3p; +apprennes apprendre VER 348.45 286.69 2.51 0.88 sub:pre:2s; +apprenons apprendre VER 348.45 286.69 1.39 0.68 imp:pre:1p;ind:pre:1p; +apprenti_pilote apprenti_pilote NOM m s 0.02 0.00 0.02 0.00 +apprenti_sorcier apprenti_sorcier NOM m s 0.00 0.14 0.00 0.14 +apprenti apprenti NOM m s 2.52 17.64 1.96 10.95 +apprentie apprenti NOM f s 2.52 17.64 0.23 0.47 +apprenties apprenti NOM f p 2.52 17.64 0.02 0.27 +apprentis apprenti NOM m p 2.52 17.64 0.31 5.95 +apprentissage apprentissage NOM m s 1.86 10.47 1.86 10.14 +apprentissages apprentissage NOM m p 1.86 10.47 0.00 0.34 +apprirent apprendre VER 348.45 286.69 0.15 2.23 ind:pas:3p; +appris apprendre VER m 348.45 286.69 120.98 97.70 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +apprise apprendre VER f s 348.45 286.69 1.81 3.45 par:pas; +apprises apprendre VER f p 348.45 286.69 0.64 1.82 par:pas; +apprissent apprendre VER 348.45 286.69 0.00 0.07 sub:imp:3p; +apprit apprendre VER 348.45 286.69 1.48 21.96 ind:pas:3s; +apprivoisa apprivoiser VER 2.40 10.54 0.00 0.20 ind:pas:3s; +apprivoisaient apprivoiser VER 2.40 10.54 0.00 0.07 ind:imp:3p; +apprivoisais apprivoiser VER 2.40 10.54 0.00 0.14 ind:imp:1s; +apprivoisait apprivoiser VER 2.40 10.54 0.00 0.41 ind:imp:3s; +apprivoisant apprivoiser VER 2.40 10.54 0.01 0.14 par:pre; +apprivoise apprivoiser VER 2.40 10.54 0.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprivoisent apprivoiser VER 2.40 10.54 0.01 0.27 ind:pre:3p; +apprivoiser apprivoiser VER 2.40 10.54 0.42 5.14 inf; +apprivoiserai apprivoiser VER 2.40 10.54 0.14 0.20 ind:fut:1s; +apprivoiseur apprivoiseur ADJ m s 0.00 0.07 0.00 0.07 +apprivoisez apprivoiser VER 2.40 10.54 0.03 0.07 imp:pre:2p;ind:pre:2p; +apprivoisons apprivoiser VER 2.40 10.54 0.01 0.00 ind:pre:1p; +apprivoisèrent apprivoiser VER 2.40 10.54 0.00 0.14 ind:pas:3p; +apprivoisé apprivoiser VER m s 2.40 10.54 0.98 1.28 par:pas; +apprivoisée apprivoiser VER f s 2.40 10.54 0.17 1.15 par:pas; +apprivoisées apprivoiser VER f p 2.40 10.54 0.04 0.27 par:pas; +apprivoisés apprivoiser VER m p 2.40 10.54 0.36 0.34 par:pas; +approbateur approbateur ADJ m s 0.00 1.55 0.00 1.08 +approbateurs approbateur ADJ m p 0.00 1.55 0.00 0.27 +approbatif approbatif ADJ m s 0.00 0.07 0.00 0.07 +approbation approbation NOM f s 2.56 9.80 2.55 9.19 +approbations approbation NOM f p 2.56 9.80 0.01 0.61 +approbativement approbativement ADV 0.00 0.07 0.00 0.07 +approbatrice approbateur ADJ f s 0.00 1.55 0.00 0.20 +approcha approcher VER 117.65 196.15 1.09 42.70 ind:pas:3s; +approchai approcher VER 117.65 196.15 0.20 4.32 ind:pas:1s; +approchaient approcher VER 117.65 196.15 0.45 6.62 ind:imp:3p; +approchais approcher VER 117.65 196.15 0.53 2.09 ind:imp:1s;ind:imp:2s; +approchait approcher VER 117.65 196.15 2.79 27.70 ind:imp:3s; +approchant approcher VER 117.65 196.15 0.90 10.74 par:pre; +approchants approchant ADJ m p 0.41 1.82 0.01 0.14 +approchassent approcher VER 117.65 196.15 0.00 0.07 sub:imp:3p; +approche approcher VER 117.65 196.15 44.17 31.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +approchent approcher VER 117.65 196.15 5.66 4.93 ind:pre:3p; +approcher approcher VER 117.65 196.15 19.62 35.27 ind:pre:2p;inf; +approchera approcher VER 117.65 196.15 0.83 0.20 ind:fut:3s; +approcherai approcher VER 117.65 196.15 0.33 0.00 ind:fut:1s; +approcherais approcher VER 117.65 196.15 0.18 0.14 cnd:pre:1s; +approcherait approcher VER 117.65 196.15 0.07 0.34 cnd:pre:3s; +approcheras approcher VER 117.65 196.15 0.13 0.00 ind:fut:2s; +approcherez approcher VER 117.65 196.15 0.17 0.20 ind:fut:2p; +approcherions approcher VER 117.65 196.15 0.00 0.07 cnd:pre:1p; +approcherons approcher VER 117.65 196.15 0.05 0.00 ind:fut:1p; +approcheront approcher VER 117.65 196.15 0.11 0.07 ind:fut:3p; +approches approcher VER 117.65 196.15 2.97 0.61 ind:pre:2s;sub:pre:2s; +approchez approcher VER 117.65 196.15 27.75 2.43 imp:pre:2p;ind:pre:2p; +approchiez approcher VER 117.65 196.15 0.24 0.07 ind:imp:2p; +approchions approcher VER 117.65 196.15 0.09 1.76 ind:imp:1p; +approchâmes approcher VER 117.65 196.15 0.01 0.34 ind:pas:1p; +approchons approcher VER 117.65 196.15 2.45 1.55 imp:pre:1p;ind:pre:1p; +approchât approcher VER 117.65 196.15 0.00 0.20 sub:imp:3s; +approchèrent approcher VER 117.65 196.15 0.02 3.38 ind:pas:3p; +approché approcher VER m s 117.65 196.15 4.75 11.96 par:pas; +approchée approcher VER f s 117.65 196.15 1.36 5.14 par:pas; +approchées approcher VER f p 117.65 196.15 0.25 0.34 par:pas; +approchés approcher VER m p 117.65 196.15 0.50 1.76 par:pas; +approfondît approfondir VER 1.69 7.57 0.00 0.14 sub:imp:3s; +approfondi approfondi ADJ m s 1.46 1.69 0.34 0.61 +approfondie approfondi ADJ f s 1.46 1.69 0.83 0.81 +approfondies approfondir VER f p 1.69 7.57 0.09 0.20 par:pas; +approfondir approfondir VER 1.69 7.57 1.04 3.58 inf; +approfondirai approfondir VER 1.69 7.57 0.00 0.07 ind:fut:1s; +approfondirent approfondir VER 1.69 7.57 0.00 0.14 ind:pas:3p; +approfondirions approfondir VER 1.69 7.57 0.00 0.07 cnd:pre:1p; +approfondirons approfondir VER 1.69 7.57 0.01 0.07 ind:fut:1p; +approfondis approfondi ADJ m p 1.46 1.69 0.20 0.07 +approfondissaient approfondir VER 1.69 7.57 0.00 0.20 ind:imp:3p; +approfondissais approfondir VER 1.69 7.57 0.00 0.14 ind:imp:1s; +approfondissait approfondir VER 1.69 7.57 0.01 0.27 ind:imp:3s; +approfondissant approfondir VER 1.69 7.57 0.01 0.27 par:pre; +approfondisse approfondir VER 1.69 7.57 0.02 0.07 sub:pre:1s;sub:pre:3s; +approfondissement approfondissement NOM m s 0.02 0.00 0.02 0.00 +approfondissent approfondir VER 1.69 7.57 0.01 0.14 ind:pre:3p; +approfondissons approfondir VER 1.69 7.57 0.01 0.00 ind:pre:1p; +approfondit approfondir VER 1.69 7.57 0.13 0.88 ind:pre:3s;ind:pas:3s; +appropriaient approprier VER 5.73 5.47 0.10 0.20 ind:imp:3p; +appropriait approprier VER 5.73 5.47 0.00 0.20 ind:imp:3s; +appropriant approprier VER 5.73 5.47 0.17 0.14 par:pre; +appropriation appropriation NOM f s 0.19 0.34 0.04 0.34 +appropriations appropriation NOM f p 0.19 0.34 0.15 0.00 +approprie approprier VER 5.73 5.47 0.33 0.27 ind:pre:3s;sub:pre:3s; +approprient approprier VER 5.73 5.47 0.05 0.07 ind:pre:3p; +approprier approprier VER 5.73 5.47 1.30 1.76 inf; +approprieraient approprier VER 5.73 5.47 0.00 0.07 cnd:pre:3p; +approprierais approprier VER 5.73 5.47 0.01 0.00 cnd:pre:1s; +approprierait approprier VER 5.73 5.47 0.00 0.07 cnd:pre:3s; +approprieront approprier VER 5.73 5.47 0.02 0.00 ind:fut:3p; +appropriez approprier VER 5.73 5.47 0.02 0.00 ind:pre:2p; +approprié approprié ADJ m s 4.77 3.38 2.84 1.08 +appropriée approprié ADJ f s 4.77 3.38 0.89 1.15 +appropriées approprié ADJ f p 4.77 3.38 0.47 0.20 +appropriés approprié ADJ m p 4.77 3.38 0.57 0.95 +approuva approuver VER 15.39 36.08 0.01 7.43 ind:pas:3s; +approuvai approuver VER 15.39 36.08 0.00 0.61 ind:pas:1s; +approuvaient approuver VER 15.39 36.08 0.20 0.81 ind:imp:3p; +approuvais approuver VER 15.39 36.08 0.26 0.68 ind:imp:1s;ind:imp:2s; +approuvait approuver VER 15.39 36.08 0.65 4.73 ind:imp:3s; +approuvant approuver VER 15.39 36.08 0.07 1.15 par:pre; +approuve approuver VER 15.39 36.08 4.44 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +approuvent approuver VER 15.39 36.08 0.97 0.61 ind:pre:3p; +approuver approuver VER 15.39 36.08 1.67 5.61 inf; +approuvera approuver VER 15.39 36.08 0.33 0.14 ind:fut:3s; +approuverai approuver VER 15.39 36.08 0.05 0.00 ind:fut:1s; +approuverais approuver VER 15.39 36.08 0.12 0.00 cnd:pre:1s;cnd:pre:2s; +approuverait approuver VER 15.39 36.08 0.39 0.20 cnd:pre:3s; +approuveras approuver VER 15.39 36.08 0.04 0.07 ind:fut:2s; +approuverons approuver VER 15.39 36.08 0.03 0.00 ind:fut:1p; +approuveront approuver VER 15.39 36.08 0.01 0.07 ind:fut:3p; +approuves approuver VER 15.39 36.08 0.58 0.07 ind:pre:2s; +approuvez approuver VER 15.39 36.08 0.85 0.41 imp:pre:2p;ind:pre:2p; +approuviez approuver VER 15.39 36.08 0.43 0.14 ind:imp:2p; +approuvions approuver VER 15.39 36.08 0.01 0.20 ind:imp:1p; +approuvâmes approuver VER 15.39 36.08 0.00 0.07 ind:pas:1p; +approuvons approuver VER 15.39 36.08 0.20 0.27 imp:pre:1p;ind:pre:1p; +approuvât approuver VER 15.39 36.08 0.10 0.14 sub:imp:3s; +approuvèrent approuver VER 15.39 36.08 0.00 0.88 ind:pas:3p; +approuvé approuver VER m s 15.39 36.08 3.26 3.18 par:pas; +approuvée approuver VER f s 15.39 36.08 0.45 0.27 par:pas; +approuvées approuvé ADJ f p 1.23 0.27 0.21 0.00 +approuvés approuver VER m p 15.39 36.08 0.18 0.61 par:pas; +approvisionnait approvisionner VER 1.55 2.16 0.02 0.14 ind:imp:3s; +approvisionnant approvisionner VER 1.55 2.16 0.01 0.00 par:pre; +approvisionne approvisionner VER 1.55 2.16 0.33 0.00 ind:pre:1s;ind:pre:3s; +approvisionnement approvisionnement NOM m s 2.07 2.57 2.02 1.49 +approvisionnements approvisionnement NOM m p 2.07 2.57 0.05 1.08 +approvisionnent approvisionner VER 1.55 2.16 0.05 0.07 ind:pre:3p; +approvisionner approvisionner VER 1.55 2.16 0.75 1.01 inf; +approvisionnera approvisionner VER 1.55 2.16 0.01 0.00 ind:fut:3s; +approvisionniez approvisionner VER 1.55 2.16 0.01 0.00 ind:imp:2p; +approvisionnons approvisionner VER 1.55 2.16 0.03 0.00 ind:pre:1p; +approvisionné approvisionner VER m s 1.55 2.16 0.28 0.27 par:pas; +approvisionnée approvisionner VER f s 1.55 2.16 0.01 0.14 par:pas; +approvisionnées approvisionner VER f p 1.55 2.16 0.01 0.27 par:pas; +approvisionnés approvisionner VER m p 1.55 2.16 0.02 0.27 par:pas; +approximatif approximatif ADJ m s 1.07 3.65 0.39 1.49 +approximatifs approximatif ADJ m p 1.07 3.65 0.17 0.61 +approximation approximation NOM f s 0.24 1.35 0.20 0.54 +approximations approximation NOM f p 0.24 1.35 0.04 0.81 +approximative approximatif ADJ f s 1.07 3.65 0.49 1.35 +approximativement approximativement ADV 1.64 1.96 1.64 1.96 +approximatives approximatif ADJ f p 1.07 3.65 0.02 0.20 +apprécia apprécier VER 77.21 44.12 0.00 2.57 ind:pas:3s; +appréciable appréciable ADJ s 0.46 3.18 0.46 2.91 +appréciables appréciable ADJ m p 0.46 3.18 0.00 0.27 +appréciai apprécier VER 77.21 44.12 0.07 0.41 ind:pas:1s; +appréciaient apprécier VER 77.21 44.12 0.62 1.22 ind:imp:3p; +appréciais apprécier VER 77.21 44.12 0.70 1.49 ind:imp:1s;ind:imp:2s; +appréciait apprécier VER 77.21 44.12 1.47 6.76 ind:imp:3s; +appréciant apprécier VER 77.21 44.12 0.09 1.15 par:pre; +appréciateur appréciateur NOM m s 0.00 0.54 0.00 0.41 +appréciation appréciation NOM f s 0.94 3.99 0.86 2.97 +appréciations appréciation NOM f p 0.94 3.99 0.08 1.01 +appréciatrice appréciateur NOM f s 0.00 0.54 0.00 0.14 +apprécie apprécier VER 77.21 44.12 32.23 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprécient apprécier VER 77.21 44.12 3.28 1.08 ind:pre:3p;sub:pre:3p; +apprécier apprécier VER 77.21 44.12 11.53 11.28 inf; +appréciera apprécier VER 77.21 44.12 1.19 0.20 ind:fut:3s; +apprécierai apprécier VER 77.21 44.12 0.28 0.00 ind:fut:1s; +apprécieraient apprécier VER 77.21 44.12 0.35 0.07 cnd:pre:3p; +apprécierais apprécier VER 77.21 44.12 3.02 0.14 cnd:pre:1s;cnd:pre:2s; +apprécierait apprécier VER 77.21 44.12 1.41 0.41 cnd:pre:3s; +apprécieras apprécier VER 77.21 44.12 0.34 0.00 ind:fut:2s; +apprécierez apprécier VER 77.21 44.12 1.27 0.14 ind:fut:2p; +apprécieriez apprécier VER 77.21 44.12 0.19 0.00 cnd:pre:2p; +apprécierions apprécier VER 77.21 44.12 0.10 0.00 cnd:pre:1p; +apprécierons apprécier VER 77.21 44.12 0.09 0.00 ind:fut:1p; +apprécieront apprécier VER 77.21 44.12 0.57 0.27 ind:fut:3p; +apprécies apprécier VER 77.21 44.12 2.19 0.27 ind:pre:2s; +appréciez apprécier VER 77.21 44.12 2.41 0.34 imp:pre:2p;ind:pre:2p; +appréciions apprécier VER 77.21 44.12 0.00 0.07 ind:imp:1p; +apprécions apprécier VER 77.21 44.12 1.77 0.34 imp:pre:1p;ind:pre:1p; +appréciât apprécier VER 77.21 44.12 0.00 0.14 sub:imp:3s; +apprécièrent apprécier VER 77.21 44.12 0.11 0.14 ind:pas:3p; +apprécié apprécier VER m s 77.21 44.12 9.32 5.47 par:pas; +appréciée apprécier VER f s 77.21 44.12 1.85 1.82 par:pas; +appréciées apprécier VER f p 77.21 44.12 0.31 0.14 par:pas; +appréciés apprécier VER m p 77.21 44.12 0.45 0.74 par:pas; +appréhendai appréhender VER 4.22 5.34 0.00 0.07 ind:pas:1s; +appréhendaient appréhender VER 4.22 5.34 0.01 0.14 ind:imp:3p; +appréhendais appréhender VER 4.22 5.34 0.17 1.08 ind:imp:1s;ind:imp:2s; +appréhendait appréhender VER 4.22 5.34 0.04 0.74 ind:imp:3s; +appréhendant appréhender VER 4.22 5.34 0.04 0.68 par:pre; +appréhende appréhender VER 4.22 5.34 0.95 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +appréhendent appréhender VER 4.22 5.34 0.14 0.07 ind:pre:3p; +appréhender appréhender VER 4.22 5.34 1.51 0.95 inf; +appréhendera appréhender VER 4.22 5.34 0.02 0.00 ind:fut:3s; +appréhenderons appréhender VER 4.22 5.34 0.01 0.00 ind:fut:1p; +appréhendez appréhender VER 4.22 5.34 0.07 0.07 imp:pre:2p;ind:pre:2p; +appréhendions appréhender VER 4.22 5.34 0.00 0.07 ind:imp:1p; +appréhendons appréhender VER 4.22 5.34 0.02 0.00 ind:pre:1p; +appréhendé appréhender VER m s 4.22 5.34 1.00 0.74 par:pas; +appréhendée appréhender VER f s 4.22 5.34 0.05 0.07 par:pas; +appréhendées appréhender VER f p 4.22 5.34 0.02 0.00 par:pas; +appréhendés appréhender VER m p 4.22 5.34 0.17 0.14 par:pas; +appréhensif appréhensif ADJ m s 0.01 0.00 0.01 0.00 +appréhension appréhension NOM f s 1.28 10.20 0.80 8.92 +appréhensions appréhension NOM f p 1.28 10.20 0.48 1.28 +apprêt apprêt NOM m s 0.14 1.42 0.11 0.81 +apprêta apprêter VER 9.13 29.46 0.01 0.41 ind:pas:3s; +apprêtai apprêter VER 9.13 29.46 0.01 0.14 ind:pas:1s; +apprêtaient apprêter VER 9.13 29.46 0.26 2.84 ind:imp:3p; +apprêtais apprêter VER 9.13 29.46 1.19 2.91 ind:imp:1s;ind:imp:2s; +apprêtait apprêter VER 9.13 29.46 1.21 11.96 ind:imp:3s; +apprêtant apprêter VER 9.13 29.46 0.07 1.15 par:pre; +apprête apprêter VER 9.13 29.46 4.16 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +apprêtent apprêter VER 9.13 29.46 0.87 1.35 ind:pre:3p; +apprêter apprêter VER 9.13 29.46 0.10 0.68 inf; +apprêterait apprêter VER 9.13 29.46 0.00 0.14 cnd:pre:3s; +apprêtes apprêter VER 9.13 29.46 0.29 0.00 ind:pre:2s;sub:pre:2s; +apprêtez apprêter VER 9.13 29.46 0.39 0.07 imp:pre:2p;ind:pre:2p; +apprêtiez apprêter VER 9.13 29.46 0.16 0.00 ind:imp:2p; +apprêtions apprêter VER 9.13 29.46 0.05 0.27 ind:imp:1p; +apprêts apprêt NOM m p 0.14 1.42 0.03 0.61 +apprêtèrent apprêter VER 9.13 29.46 0.20 0.14 ind:pas:3p; +apprêté apprêté ADJ m s 0.13 1.22 0.11 0.27 +apprêtée apprêter VER f s 9.13 29.46 0.14 0.07 par:pas; +apprêtées apprêté ADJ f p 0.13 1.22 0.01 0.14 +apprêtés apprêté ADJ m p 0.13 1.22 0.01 0.14 +appui_main appui_main NOM m s 0.00 0.14 0.00 0.14 +appui_tête appui_tête NOM m s 0.01 0.00 0.01 0.00 +appui appui NOM m s 8.81 30.81 7.83 28.65 +appuie_tête appuie_tête NOM m 0.05 0.14 0.05 0.14 +appuie appuyer VER 40.94 126.01 14.57 15.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +appuient appuyer VER 40.94 126.01 0.60 1.49 ind:pre:3p; +appuiera appuyer VER 40.94 126.01 0.20 0.20 ind:fut:3s; +appuierai appuyer VER 40.94 126.01 0.25 0.07 ind:fut:1s; +appuieraient appuyer VER 40.94 126.01 0.00 0.07 cnd:pre:3p; +appuierais appuyer VER 40.94 126.01 0.11 0.07 cnd:pre:1s;cnd:pre:2s; +appuierait appuyer VER 40.94 126.01 0.16 0.27 cnd:pre:3s; +appuieras appuyer VER 40.94 126.01 0.21 0.00 ind:fut:2s; +appuierez appuyer VER 40.94 126.01 0.05 0.07 ind:fut:2p; +appuierons appuyer VER 40.94 126.01 0.01 0.00 ind:fut:1p; +appuieront appuyer VER 40.94 126.01 0.06 0.07 ind:fut:3p; +appuies appuyer VER 40.94 126.01 2.89 0.41 ind:pre:2s;sub:pre:2s; +appuis appui NOM m p 8.81 30.81 0.98 2.16 +appétence appétence NOM f s 0.00 0.34 0.00 0.27 +appétences appétence NOM f p 0.00 0.34 0.00 0.07 +appétissant appétissant ADJ m s 1.74 2.77 0.77 0.88 +appétissante appétissant ADJ f s 1.74 2.77 0.59 1.01 +appétissantes appétissant ADJ f p 1.74 2.77 0.32 0.41 +appétissants appétissant ADJ m p 1.74 2.77 0.06 0.47 +appétit appétit NOM m s 20.98 26.76 20.68 23.78 +appétits appétit NOM m p 20.98 26.76 0.30 2.97 +appuya appuyer VER 40.94 126.01 0.12 17.84 ind:pas:3s; +appuyai appuyer VER 40.94 126.01 0.10 1.28 ind:pas:1s; +appuyaient appuyer VER 40.94 126.01 0.16 1.35 ind:imp:3p; +appuyais appuyer VER 40.94 126.01 0.19 1.01 ind:imp:1s;ind:imp:2s; +appuyait appuyer VER 40.94 126.01 0.23 11.89 ind:imp:3s; +appuyant appuyer VER 40.94 126.01 1.01 13.18 par:pre; +appuyer appuyer VER 40.94 126.01 9.77 16.49 inf; +appuyez appuyer VER 40.94 126.01 5.55 0.54 imp:pre:2p;ind:pre:2p; +appuyiez appuyer VER 40.94 126.01 0.03 0.00 ind:imp:2p; +appuyâmes appuyer VER 40.94 126.01 0.00 0.14 ind:pas:1p; +appuyons appuyer VER 40.94 126.01 0.07 0.00 imp:pre:1p;ind:pre:1p; +appuyât appuyer VER 40.94 126.01 0.00 0.07 sub:imp:3s; +appuyèrent appuyer VER 40.94 126.01 0.11 0.54 ind:pas:3p; +appuyé appuyer VER m s 40.94 126.01 4.00 22.97 par:pas; +appuyée appuyer VER f s 40.94 126.01 0.31 11.82 par:pas; +appuyées appuyer VER f p 40.94 126.01 0.13 3.18 par:pas; +appuyés appuyer VER m p 40.94 126.01 0.05 5.34 par:pas; +aprèm aprèm NOM f s 0.22 1.35 0.22 0.07 +aprème aprèm NOM f s 0.22 1.35 0.00 1.28 +après_coup après_coup NOM m s 0.02 0.00 0.02 0.00 +après_dîner après_dîner NOM m s 0.02 0.74 0.02 0.61 +après_dîner après_dîner NOM m p 0.02 0.74 0.00 0.14 +après_demain après_demain ADV 11.77 6.76 11.77 6.76 +après_déjeuner après_déjeuner VER 0.00 0.14 0.00 0.14 inf; +après_guerre après_guerre NOM s 0.73 3.24 0.73 3.24 +après_mort après_mort NOM f s 0.00 0.07 0.00 0.07 +après_rasage après_rasage NOM m s 0.45 0.00 0.45 0.00 +après_repas après_repas NOM m 0.01 0.07 0.01 0.07 +après_shampoing après_shampoing NOM m s 0.04 0.00 0.04 0.00 +après_shampooing après_shampooing NOM m s 0.04 0.07 0.04 0.07 +après_ski après_ski NOM m s 0.06 0.20 0.06 0.20 +après_vente après_vente ADJ s 0.05 0.00 0.05 0.00 +après après PRE 593.92 821.55 593.92 821.55 +apte apte ADJ s 2.93 4.59 1.77 2.77 +aptes apte ADJ p 2.93 4.59 1.16 1.82 +aptitude aptitude NOM f s 2.74 4.59 1.76 2.70 +aptitudes aptitude NOM f p 2.74 4.59 0.98 1.89 +aptère aptère ADJ s 0.00 0.14 0.00 0.07 +aptères aptère ADJ p 0.00 0.14 0.00 0.07 +apurait apurer VER 0.01 0.41 0.00 0.07 ind:imp:3s; +apurer apurer VER 0.01 0.41 0.01 0.20 inf; +apéritif apéritif NOM m s 3.29 9.46 2.57 7.09 +apéritifs apéritif NOM m p 3.29 9.46 0.72 2.36 +apéritive apéritif ADJ f s 0.28 1.28 0.00 0.14 +apéritives apéritif ADJ f p 0.28 1.28 0.00 0.14 +apéro apéro NOM m s 0.78 4.05 0.61 3.45 +apéros apéro NOM m p 0.78 4.05 0.17 0.61 +apuré apurer VER m s 0.01 0.41 0.00 0.07 par:pas; +apurés apurer VER m p 0.01 0.41 0.00 0.07 par:pas; +aquaculture aquaculture NOM f s 0.01 0.00 0.01 0.00 +aquagym aquagym NOM f s 0.04 0.00 0.04 0.00 +aquaplane aquaplane NOM m s 0.02 0.07 0.02 0.07 +aquarellait aquareller VER 0.00 0.07 0.00 0.07 ind:imp:3s; +aquarelle aquarelle NOM f s 0.23 8.85 0.14 6.55 +aquarelles aquarelle NOM f p 0.23 8.85 0.09 2.30 +aquarelliste aquarelliste NOM s 0.00 0.14 0.00 0.07 +aquarellistes aquarelliste NOM p 0.00 0.14 0.00 0.07 +aquarellés aquarellé ADJ m p 0.00 0.07 0.00 0.07 +aquariophilie aquariophilie NOM f s 0.03 0.00 0.03 0.00 +aquarium aquarium NOM m s 4.26 5.88 3.94 5.20 +aquariums aquarium NOM m p 4.26 5.88 0.32 0.68 +aquatinte aquatinte NOM f s 0.10 0.00 0.10 0.00 +aquatique aquatique ADJ s 1.52 1.89 1.18 0.88 +aquatiques aquatique ADJ p 1.52 1.89 0.34 1.01 +aquavit aquavit NOM m s 0.18 0.14 0.18 0.14 +aqueduc aqueduc NOM m s 0.44 1.15 0.23 0.81 +aqueducs aqueduc NOM m p 0.44 1.15 0.21 0.34 +aqueuse aqueux ADJ f s 0.09 0.88 0.05 0.41 +aqueuses aqueux ADJ f p 0.09 0.88 0.01 0.14 +aqueux aqueux ADJ m 0.09 0.88 0.02 0.34 +aquifère aquifère ADJ f s 0.01 0.00 0.01 0.00 +aquilin aquilin ADJ m s 0.02 1.08 0.02 1.08 +aquilon aquilon NOM m s 0.00 0.54 0.00 0.47 +aquilons aquilon NOM m p 0.00 0.54 0.00 0.07 +aquitain aquitain ADJ m s 0.00 0.07 0.00 0.07 +arôme arôme NOM m s 1.43 2.70 1.12 2.43 +arômes arôme NOM m p 1.43 2.70 0.32 0.27 +ara ara NOM m s 0.85 0.54 0.81 0.41 +arabe arabe NOM s 13.62 32.64 6.71 17.57 +arabes arabe NOM p 13.62 32.64 6.91 15.07 +arabesque arabesque NOM f s 0.10 4.53 0.08 0.74 +arabesques arabesque NOM f p 0.10 4.53 0.02 3.78 +arabica arabica NOM m s 0.16 0.27 0.16 0.14 +arabicas arabica NOM m p 0.16 0.27 0.00 0.14 +arabique arabique ADJ s 0.05 0.27 0.05 0.27 +arabisant arabiser VER 0.00 0.20 0.00 0.14 par:pre; +arabisants arabisant NOM m p 0.00 0.27 0.00 0.27 +arabisé arabiser VER m s 0.00 0.20 0.00 0.07 par:pas; +arable arable ADJ f s 0.18 0.00 0.04 0.00 +arables arable ADJ p 0.18 0.00 0.13 0.00 +arac arac NOM m s 0.03 0.00 0.03 0.00 +arachide arachide NOM f s 0.51 0.61 0.26 0.34 +arachides arachide NOM f p 0.51 0.61 0.25 0.27 +arachnide arachnide NOM m s 0.39 0.00 0.06 0.00 +arachnides arachnide NOM m p 0.39 0.00 0.33 0.00 +arachnoïde arachnoïde NOM f s 0.01 0.14 0.00 0.07 +arachnoïdes arachnoïde NOM f p 0.01 0.14 0.01 0.07 +arachnéen arachnéen ADJ m s 0.02 0.68 0.02 0.20 +arachnéenne arachnéen ADJ f s 0.02 0.68 0.00 0.27 +arachnéennes arachnéen ADJ f p 0.02 0.68 0.00 0.20 +aragonais aragonais NOM m 0.00 0.20 0.00 0.20 +aragonaise aragonais ADJ f s 0.00 0.20 0.00 0.14 +aragonite aragonite NOM f s 0.01 0.00 0.01 0.00 +araigne araigne NOM f s 0.00 0.07 0.00 0.07 +araignée_crabe araignée_crabe NOM f s 0.00 0.07 0.00 0.07 +araignée araignée NOM f s 18.20 17.84 12.21 12.36 +araignées araignée NOM f p 18.20 17.84 6.00 5.47 +araire araire NOM m s 0.01 0.00 0.01 0.00 +arak arak NOM m s 0.41 0.07 0.41 0.07 +araldite araldite NOM m 0.01 0.00 0.01 0.00 +aralia aralia NOM m s 0.00 0.07 0.00 0.07 +aramide aramide ADJ f s 0.01 0.00 0.01 0.00 +aramon aramon NOM m s 0.00 0.41 0.00 0.41 +araméen araméen NOM m s 0.45 0.20 0.45 0.20 +araméenne araméen ADJ f s 0.05 0.07 0.01 0.00 +aranéeuse aranéeux ADJ f s 0.00 0.07 0.00 0.07 +arapèdes arapède NOM m p 0.00 0.20 0.00 0.20 +aras ara NOM m p 0.85 0.54 0.04 0.14 +arasant araser VER 0.10 0.14 0.00 0.07 par:pre; +araser araser VER 0.10 0.14 0.10 0.00 inf; +arasée araser VER f s 0.10 0.14 0.00 0.07 par:pas; +aratoire aratoire ADJ m s 0.00 0.47 0.00 0.07 +aratoires aratoire ADJ m p 0.00 0.47 0.00 0.41 +araucan araucan NOM m s 0.00 0.07 0.00 0.07 +araucanien araucanien ADJ m s 0.00 0.27 0.00 0.07 +araucaniennes araucanien ADJ f p 0.00 0.27 0.00 0.07 +araucaniens araucanien ADJ m p 0.00 0.27 0.00 0.14 +araucaria araucaria NOM m s 0.01 0.54 0.01 0.34 +araucarias araucaria NOM m p 0.01 0.54 0.00 0.20 +arbalète arbalète NOM f s 0.55 1.55 0.52 1.35 +arbalètes arbalète NOM f p 0.55 1.55 0.03 0.20 +arbalétrier arbalétrier NOM m s 0.01 0.88 0.00 0.14 +arbalétriers arbalétrier NOM m p 0.01 0.88 0.01 0.74 +arbi arbi NOM m s 0.00 0.27 0.00 0.14 +arbis arbi NOM m p 0.00 0.27 0.00 0.14 +arbitrage arbitrage NOM m s 0.52 0.88 0.48 0.88 +arbitrages arbitrage NOM m p 0.52 0.88 0.04 0.00 +arbitraire arbitraire ADJ s 1.29 3.78 0.73 2.50 +arbitrairement arbitrairement ADV 0.12 0.95 0.12 0.95 +arbitraires arbitraire ADJ p 1.29 3.78 0.56 1.28 +arbitrait arbitrer VER 0.90 1.08 0.00 0.27 ind:imp:3s; +arbitrale arbitral ADJ f s 0.01 0.00 0.01 0.00 +arbitre arbitre NOM s 7.59 5.34 6.92 5.20 +arbitrer arbitrer VER 0.90 1.08 0.34 0.27 inf; +arbitrera arbitrer VER 0.90 1.08 0.02 0.07 ind:fut:3s; +arbitres arbitre NOM p 7.59 5.34 0.67 0.14 +arbitré arbitrer VER m s 0.90 1.08 0.01 0.14 par:pas; +arbitrée arbitrer VER f s 0.90 1.08 0.00 0.07 par:pas; +arbitrées arbitrer VER f p 0.90 1.08 0.01 0.07 par:pas; +arbois arbois NOM s 0.00 0.07 0.00 0.07 +arbora arborer VER 0.53 10.61 0.01 0.14 ind:pas:3s; +arboraient arborer VER 0.53 10.61 0.04 1.42 ind:imp:3p; +arborais arborer VER 0.53 10.61 0.00 0.20 ind:imp:1s; +arborait arborer VER 0.53 10.61 0.08 3.72 ind:imp:3s; +arborant arborer VER 0.53 10.61 0.06 1.55 par:pre; +arbore arborer VER 0.53 10.61 0.10 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arborent arborer VER 0.53 10.61 0.12 0.54 ind:pre:3p; +arborer arborer VER 0.53 10.61 0.06 1.08 inf; +arborerait arborer VER 0.53 10.61 0.00 0.07 cnd:pre:3s; +arbores arborer VER 0.53 10.61 0.00 0.07 ind:pre:2s; +arborescence arborescence NOM f s 0.02 0.20 0.02 0.07 +arborescences arborescence NOM f p 0.02 0.20 0.00 0.14 +arborescent arborescent ADJ m s 0.16 0.27 0.02 0.00 +arborescentes arborescent ADJ f p 0.16 0.27 0.00 0.20 +arborescents arborescent ADJ m p 0.16 0.27 0.14 0.07 +arboretum arboretum NOM m s 0.09 0.00 0.09 0.00 +arborez arborer VER 0.53 10.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +arboricole arboricole ADJ f s 0.01 0.00 0.01 0.00 +arboriculteur arboriculteur NOM m s 0.01 0.00 0.01 0.00 +arboriculture arboriculture NOM f s 0.01 0.07 0.01 0.07 +arborions arborer VER 0.53 10.61 0.00 0.07 ind:imp:1p; +arborisations arborisation NOM f p 0.00 0.07 0.00 0.07 +arborât arborer VER 0.53 10.61 0.01 0.07 sub:imp:3s; +arborèrent arborer VER 0.53 10.61 0.00 0.07 ind:pas:3p; +arboré arborer VER m s 0.53 10.61 0.01 0.41 par:pas; +arborée arborer VER f s 0.53 10.61 0.00 0.14 par:pas; +arborés arborer VER m p 0.53 10.61 0.00 0.14 par:pas; +arbouse arbouse NOM f s 0.10 0.41 0.10 0.00 +arbouses arbouse NOM f p 0.10 0.41 0.00 0.41 +arbousiers arbousier NOM m p 0.14 0.41 0.14 0.41 +arbre arbre NOM m s 81.69 208.58 49.29 67.16 +arbres_refuge arbres_refuge NOM m p 0.00 0.07 0.00 0.07 +arbres arbre NOM m p 81.69 208.58 32.40 141.42 +arbrisseau arbrisseau NOM m s 0.26 1.28 0.22 0.34 +arbrisseaux arbrisseau NOM m p 0.26 1.28 0.04 0.95 +arbuste arbuste NOM m s 1.00 7.30 0.28 1.89 +arbustes arbuste NOM m p 1.00 7.30 0.71 5.41 +arc_bouter arc_bouter VER 0.17 5.00 0.00 0.47 ind:pas:3s; +arc_bouter arc_bouter VER 0.17 5.00 0.04 0.27 ind:imp:1s;ind:imp:2s; +arc_bouter arc_bouter VER 0.17 5.00 0.00 0.34 ind:imp:3s; +arc_boutant arc_boutant NOM m s 0.14 0.54 0.14 0.20 +arc_boutant arc_boutant NOM m p 0.14 0.54 0.01 0.00 +arc_bouter arc_bouter VER 0.17 5.00 0.10 0.88 ind:pre:1s;ind:pre:3s; +arc_boutement arc_boutement NOM m s 0.00 0.07 0.00 0.07 +arc_bouter arc_bouter VER 0.17 5.00 0.01 0.20 ind:pre:3p; +arc_bouter arc_bouter VER 0.17 5.00 0.00 0.07 inf; +arc_bouter arc_bouter VER 0.17 5.00 0.01 0.00 ind:fut:3s; +arc_bouter arc_bouter VER 0.17 5.00 0.00 0.07 ind:pas:3p; +arc_bouter arc_bouter VER m s 0.17 5.00 0.01 1.15 par:pas; +arc_bouter arc_bouter VER f s 0.17 5.00 0.00 0.41 par:pas; +arc_bouter arc_bouter VER f p 0.17 5.00 0.00 0.27 par:pas; +arc_bouter arc_bouter VER m p 0.17 5.00 0.00 0.27 par:pas; +arc_en_ciel arc_en_ciel NOM m s 3.00 4.46 2.56 3.92 +arc arc NOM m s 5.25 17.30 4.52 14.05 +arcade arcade NOM f s 1.25 12.36 0.91 2.23 +arcades arcade NOM f p 1.25 12.36 0.35 10.14 +arcadien arcadien ADJ m s 0.10 0.20 0.10 0.07 +arcadienne arcadien ADJ f s 0.10 0.20 0.00 0.07 +arcadiens arcadien NOM m p 0.01 0.00 0.01 0.00 +arcan arcan NOM m s 0.02 0.74 0.00 0.27 +arcane arcane NOM m s 0.09 1.35 0.05 0.74 +arcanes arcane NOM m p 0.09 1.35 0.04 0.61 +arcans arcan NOM m p 0.02 0.74 0.02 0.47 +arcatures arcature NOM f p 0.00 0.07 0.00 0.07 +arceau arceau NOM m s 0.17 3.04 0.14 0.27 +arceaux arceau NOM m p 0.17 3.04 0.03 2.77 +archaïque archaïque ADJ s 1.15 2.50 0.88 1.96 +archaïques archaïque ADJ p 1.15 2.50 0.27 0.54 +archaïsant archaïsant NOM m s 0.00 0.07 0.00 0.07 +archaïsme archaïsme NOM m s 0.01 0.54 0.01 0.54 +archange archange NOM m s 1.30 4.46 0.98 3.58 +archanges archange NOM m p 1.30 4.46 0.32 0.88 +archangélique archangélique ADJ m s 0.00 0.20 0.00 0.20 +arche arche NOM f s 3.19 7.16 2.83 5.68 +archer archer NOM m s 3.77 2.50 2.24 0.41 +archers archer NOM m p 3.77 2.50 1.53 2.03 +arches arche NOM f p 3.19 7.16 0.36 1.49 +archet archet NOM m s 0.47 2.30 0.46 1.96 +archets archet NOM m p 0.47 2.30 0.01 0.34 +archevêché archevêché NOM m s 0.40 1.08 0.40 1.01 +archevêchés archevêché NOM m p 0.40 1.08 0.00 0.07 +archevêque archevêque NOM m s 3.42 6.28 3.23 5.81 +archevêques archevêque NOM m p 3.42 6.28 0.20 0.47 +archi_blet archi_blet ADJ m s 0.00 0.07 0.00 0.07 +archi_chiant archi_chiant ADJ m p 0.01 0.00 0.01 0.00 +archi_connu archi_connu ADJ m s 0.01 0.07 0.01 0.00 +archi_connu archi_connu ADJ m p 0.01 0.07 0.00 0.07 +archiduc archiduc NOM f s 0.48 4.46 0.01 0.00 +archi_dégueu archi_dégueu ADJ s 0.00 0.07 0.00 0.07 +archi_faux archi_faux ADJ m 0.05 0.00 0.05 0.00 +archi_libre archi_libre ADJ f s 0.00 0.07 0.00 0.07 +archi_mortels archi_mortels NOM m 0.01 0.00 0.01 0.00 +archi_mort archi_mort NOM f p 0.00 0.07 0.00 0.07 +archi_méfiance archi_méfiance NOM f s 0.00 0.07 0.00 0.07 +archi_nul archi_nul NOM m s 0.01 0.00 0.01 0.00 +archi_nuls archi_nuls NOM m 0.23 0.00 0.23 0.00 +archi_plein archi_plein NOM m s 0.00 0.07 0.00 0.07 +archi_prouvé archi_prouvé ADJ m s 0.00 0.07 0.00 0.07 +archi_prudent archi_prudent NOM m s 0.00 0.07 0.00 0.07 +archi_ringard archi_ringard NOM m s 0.00 0.07 0.00 0.07 +archi_sophistiqué archi_sophistiqué ADJ f s 0.01 0.00 0.01 0.00 +archi_sèche archi_sèche ADJ f p 0.01 0.00 0.01 0.00 +archi_usé archi_usé ADJ m s 0.01 0.00 0.01 0.00 +archi_vieux archi_vieux ADJ m 0.00 0.07 0.00 0.07 +archi archi NOM m s 0.75 0.74 0.75 0.74 +archiatre archiatre NOM m s 0.00 0.20 0.00 0.20 +archicomble archicomble ADJ s 0.01 0.14 0.01 0.07 +archicombles archicomble ADJ p 0.01 0.14 0.00 0.07 +archiconnu archiconnu ADJ m s 0.00 0.07 0.00 0.07 +archidiacre archidiacre NOM m s 0.26 0.07 0.26 0.07 +archidiocèse archidiocèse NOM m s 0.19 0.00 0.19 0.00 +archiduc archiduc NOM m s 0.48 4.46 0.36 4.05 +archiduchesse archiduc NOM f s 0.48 4.46 0.11 0.27 +archiducs archiduc NOM m p 0.48 4.46 0.00 0.14 +archie archi-e NOM m 0.01 0.00 0.01 0.00 +archifaux archifaux ADJ m 0.04 0.07 0.04 0.07 +archimandrite archimandrite NOM m s 0.00 0.61 0.00 0.61 +archinulles archinul ADJ f p 0.00 0.07 0.00 0.07 +archipel archipel NOM m s 0.49 3.85 0.48 2.97 +archipels archipel NOM m p 0.49 3.85 0.01 0.88 +archiprêtre archiprêtre NOM m s 0.01 0.95 0.01 0.95 +architecte architecte NOM s 9.98 7.70 8.39 4.93 +architectes architecte NOM f p 9.98 7.70 1.60 2.77 +architectonie architectonie NOM f s 0.14 0.00 0.14 0.00 +architectonique architectonique ADJ s 0.00 0.14 0.00 0.14 +architectural architectural ADJ m s 0.28 2.70 0.15 0.88 +architecturale architectural ADJ f s 0.28 2.70 0.08 1.01 +architecturalement architecturalement ADV 0.01 0.07 0.01 0.07 +architecturales architectural ADJ f p 0.28 2.70 0.01 0.74 +architecturant architecturer VER 0.11 0.20 0.00 0.07 par:pre; +architecturaux architectural ADJ m p 0.28 2.70 0.04 0.07 +architecture architecture NOM f s 4.07 12.23 3.90 10.47 +architecturent architecturer VER 0.11 0.20 0.00 0.07 ind:pre:3p; +architectures architecture NOM f p 4.07 12.23 0.17 1.76 +architecturées architecturer VER f p 0.11 0.20 0.00 0.07 par:pas; +architrave architrave NOM f s 0.00 0.20 0.00 0.20 +archiépiscopal archiépiscopal ADJ m s 0.00 0.07 0.00 0.07 +archivage archivage NOM m s 0.06 0.00 0.06 0.00 +archive archive NOM f s 9.42 8.51 0.13 0.20 +archiver archiver VER 0.90 0.07 0.13 0.07 inf; +archives archive NOM f p 9.42 8.51 9.29 8.31 +archivez archiver VER 0.90 0.07 0.02 0.00 imp:pre:2p;ind:pre:2p; +archivions archiver VER 0.90 0.07 0.10 0.00 ind:imp:1p; +archiviste_paléographe archiviste_paléographe NOM s 0.00 0.14 0.00 0.07 +archiviste archiviste NOM s 0.41 1.55 0.41 1.22 +archiviste_paléographe archiviste_paléographe NOM p 0.00 0.14 0.00 0.07 +archivistes archiviste NOM p 0.41 1.55 0.01 0.34 +archivolte archivolte NOM f s 0.00 0.41 0.00 0.14 +archivoltes archivolte NOM f p 0.00 0.41 0.00 0.27 +archivons archiver VER 0.90 0.07 0.01 0.00 ind:pre:1p; +archivé archiver VER m s 0.90 0.07 0.33 0.00 par:pas; +archivées archiver VER f p 0.90 0.07 0.02 0.00 par:pas; +archivés archiver VER m p 0.90 0.07 0.07 0.00 par:pas; +archonte archonte NOM m s 0.00 0.14 0.00 0.14 +archères archer NOM f p 3.77 2.50 0.00 0.07 +archéologie archéologie NOM f s 1.42 1.69 1.42 1.69 +archéologique archéologique ADJ s 0.76 0.81 0.52 0.41 +archéologiques archéologique ADJ p 0.76 0.81 0.24 0.41 +archéologue archéologue NOM s 2.11 4.59 1.19 2.64 +archéologues archéologue NOM p 2.11 4.59 0.92 1.96 +archéoptéryx archéoptéryx NOM m 0.05 0.20 0.05 0.20 +archétypale archétypal ADJ f s 0.11 0.00 0.01 0.00 +archétypaux archétypal ADJ m p 0.11 0.00 0.10 0.00 +archétype archétype NOM m s 0.67 0.88 0.61 0.68 +archétypes archétype NOM m p 0.67 0.88 0.05 0.20 +arc_boutant arc_boutant NOM m p 0.14 0.54 0.00 0.34 +arc_en_ciel arc_en_ciel NOM m p 3.00 4.46 0.44 0.54 +arcs arc NOM m p 5.25 17.30 0.73 3.24 +arctique arctique ADJ s 0.39 0.61 0.37 0.27 +arctiques arctique ADJ p 0.39 0.61 0.02 0.34 +ardûment ardûment ADV 0.00 0.14 0.00 0.14 +ardais arder VER 0.51 0.34 0.00 0.07 ind:imp:1s; +ardait arder VER 0.51 0.34 0.00 0.14 ind:imp:3s; +ardant arder VER 0.51 0.34 0.01 0.00 par:pre; +arde arder VER 0.51 0.34 0.38 0.07 imp:pre:2s;ind:pre:3s; +ardemment ardemment ADV 1.39 5.20 1.39 5.20 +ardennais ardennais NOM m 0.20 0.34 0.20 0.27 +ardennaise ardennais NOM f s 0.20 0.34 0.00 0.07 +ardent ardent ADJ m s 8.43 21.89 4.16 6.15 +ardente ardent ADJ f s 8.43 21.89 2.12 8.85 +ardentes ardent ADJ f p 8.43 21.89 0.97 2.43 +ardents ardent ADJ m p 8.43 21.89 1.17 4.46 +arder arder VER 0.51 0.34 0.11 0.00 inf; +ardeur ardeur NOM f s 7.08 25.74 5.60 23.24 +ardeurs ardeur NOM f p 7.08 25.74 1.47 2.50 +ardillon ardillon NOM m s 0.00 0.68 0.00 0.54 +ardillons ardillon NOM m p 0.00 0.68 0.00 0.14 +ardin ardin NOM m s 0.01 0.07 0.01 0.07 +ardito ardito ADV 0.00 0.07 0.00 0.07 +ardoise ardoise NOM f s 3.45 9.80 3.35 5.95 +ardoises ardoise NOM f p 3.45 9.80 0.10 3.85 +ardoisière ardoisier NOM f s 0.00 0.07 0.00 0.07 +ardoisée ardoisé ADJ f s 0.00 0.14 0.00 0.07 +ardoisées ardoiser VER f p 0.00 0.07 0.00 0.07 par:pas; +ardoisés ardoisé ADJ m p 0.00 0.14 0.00 0.07 +ardre ardre VER 0.00 0.07 0.00 0.07 inf; +ardé arder VER m s 0.51 0.34 0.00 0.07 par:pas; +ardu ardu ADJ m s 1.42 5.00 0.61 2.43 +ardéchois ardéchois NOM m 0.00 0.07 0.00 0.07 +ardéchoise ardéchois ADJ f s 0.00 0.14 0.00 0.14 +ardue ardu ADJ f s 1.42 5.00 0.61 1.42 +ardues ardu ADJ f p 1.42 5.00 0.06 0.34 +ardus ardu ADJ m p 1.42 5.00 0.14 0.81 +are are NOM m s 15.80 1.28 15.55 1.22 +area area NOM f s 0.12 0.07 0.12 0.07 +arec arec NOM m s 0.27 0.07 0.27 0.07 +ares are NOM m p 15.80 1.28 0.25 0.07 +arganier arganier NOM m s 0.00 0.34 0.00 0.07 +arganiers arganier NOM m p 0.00 0.34 0.00 0.27 +argans argan NOM m p 0.00 0.07 0.00 0.07 +argent argent NOM m s 515.10 194.39 515.04 194.32 +argentait argenter VER 0.62 3.99 0.00 0.34 ind:imp:3s; +argente argenter VER 0.62 3.99 0.17 0.14 ind:pre:3s; +argenterie argenterie NOM f s 3.11 3.99 3.01 3.92 +argenteries argenterie NOM f p 3.11 3.99 0.10 0.07 +argentier argentier NOM m s 0.00 0.41 0.00 0.41 +argentifères argentifère ADJ f p 0.00 0.14 0.00 0.14 +argentin argentin ADJ m s 2.23 5.47 1.26 2.57 +argentine argentin ADJ f s 2.23 5.47 0.46 1.62 +argentines argentin ADJ f p 2.23 5.47 0.03 0.68 +argentins argentin NOM m p 1.83 1.49 0.79 0.34 +argenton argenton NOM m s 0.00 0.07 0.00 0.07 +argents argent NOM m p 515.10 194.39 0.06 0.07 +argenté argenté ADJ m s 1.87 10.54 0.68 3.99 +argentée argenté ADJ f s 1.87 10.54 0.53 1.89 +argentées argenté ADJ f p 1.87 10.54 0.52 1.96 +argentés argenté ADJ m p 1.87 10.54 0.14 2.70 +argile argile NOM f s 4.26 9.66 4.25 9.32 +argiles argile NOM f p 4.26 9.66 0.01 0.34 +argileuse argileux ADJ f s 0.00 0.54 0.00 0.20 +argileux argileux ADJ m s 0.00 0.54 0.00 0.34 +argilière argilière NOM f s 0.02 0.00 0.02 0.00 +argol argol NOM m s 0.00 0.14 0.00 0.14 +argon argon NOM m s 0.38 0.07 0.38 0.07 +argonaute argonaute NOM m s 0.10 0.07 0.10 0.07 +argot argot NOM m s 1.06 4.86 1.06 4.46 +argotique argotique ADJ s 0.05 0.95 0.05 0.68 +argotiques argotique ADJ p 0.05 0.95 0.00 0.27 +argots argot NOM m p 1.06 4.86 0.00 0.41 +argougnasses argougner VER 0.00 0.27 0.00 0.07 sub:imp:2s; +argougne argougner VER 0.00 0.27 0.00 0.20 ind:pre:1s; +argousin argousin NOM m s 0.00 1.35 0.00 0.61 +argousins argousin NOM m p 0.00 1.35 0.00 0.74 +argua arguer VER 0.27 1.89 0.00 0.20 ind:pas:3s; +arguais arguer VER 0.27 1.89 0.01 0.00 ind:imp:2s; +arguait arguer VER 0.27 1.89 0.00 0.07 ind:imp:3s; +arguant arguer VER 0.27 1.89 0.08 1.15 par:pre; +argue arguer VER 0.27 1.89 0.11 0.07 imp:pre:2s;ind:pre:3s; +arguer arguer VER 0.27 1.89 0.05 0.41 inf; +argument argument NOM m s 9.58 18.18 5.07 8.24 +argumenta argumenter VER 0.88 1.49 0.00 0.14 ind:pas:3s; +argumentaire argumentaire NOM m s 0.13 0.00 0.13 0.00 +argumentait argumenter VER 0.88 1.49 0.03 0.20 ind:imp:3s; +argumentant argumenter VER 0.88 1.49 0.03 0.00 par:pre; +argumentateur argumentateur NOM m s 0.01 0.00 0.01 0.00 +argumentatif argumentatif NOM m s 0.02 0.00 0.02 0.00 +argumentation argumentation NOM f s 0.54 0.88 0.44 0.68 +argumentations argumentation NOM f p 0.54 0.88 0.10 0.20 +argumente argumenter VER 0.88 1.49 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +argumentent argumenter VER 0.88 1.49 0.04 0.00 ind:pre:3p; +argumenter argumenter VER 0.88 1.49 0.61 0.54 inf; +argumenterai argumenter VER 0.88 1.49 0.02 0.00 ind:fut:1s; +argumentes argumenter VER 0.88 1.49 0.01 0.00 ind:pre:2s; +argumentez argumenter VER 0.88 1.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +arguments argument NOM m p 9.58 18.18 4.51 9.93 +argumenté argumenter VER m s 0.88 1.49 0.05 0.14 par:pas; +argus argus NOM m 0.09 0.68 0.09 0.68 +argutie argutie NOM f s 0.03 0.54 0.00 0.14 +arguties argutie NOM f p 0.03 0.54 0.03 0.41 +argué arguer VER m s 0.27 1.89 0.02 0.00 par:pas; +aria aria NOM s 0.81 0.47 0.48 0.34 +arianisme arianisme NOM m s 0.00 0.07 0.00 0.07 +arias aria NOM m p 0.81 0.47 0.33 0.14 +aride aride ADJ s 1.30 6.15 1.17 4.26 +arides aride ADJ p 1.30 6.15 0.14 1.89 +aridité aridité NOM f s 0.14 1.55 0.14 1.55 +arien arien ADJ m s 0.72 0.07 0.29 0.00 +arienne arien ADJ f s 0.72 0.07 0.44 0.00 +ariens arien NOM m p 0.04 0.07 0.04 0.00 +ariettes ariette NOM f p 0.00 0.07 0.00 0.07 +arioso arioso NOM m s 0.00 0.14 0.00 0.14 +aristarque aristarque NOM m s 0.00 0.14 0.00 0.07 +aristarques aristarque NOM m p 0.00 0.14 0.00 0.07 +aristo aristo NOM s 0.40 1.08 0.28 0.81 +aristocrate aristocrate NOM s 3.13 3.58 1.76 2.23 +aristocrates aristocrate NOM p 3.13 3.58 1.37 1.35 +aristocratie aristocratie NOM f s 1.60 3.92 1.60 3.92 +aristocratique aristocratique ADJ s 0.15 2.91 0.12 2.36 +aristocratiquement aristocratiquement ADV 0.00 0.07 0.00 0.07 +aristocratiques aristocratique ADJ p 0.15 2.91 0.03 0.54 +aristocratisme aristocratisme NOM m s 0.00 0.07 0.00 0.07 +aristoloche aristoloche NOM f s 0.00 0.14 0.00 0.07 +aristoloches aristoloche NOM f p 0.00 0.14 0.00 0.07 +aristos aristo NOM p 0.40 1.08 0.12 0.27 +aristotélicien aristotélicien ADJ m s 0.01 0.14 0.00 0.07 +aristotélicienne aristotélicien ADJ f s 0.01 0.14 0.01 0.07 +arithmomètre arithmomètre NOM m s 0.00 0.07 0.00 0.07 +arithmétique arithmétique NOM f s 0.57 2.23 0.57 2.23 +arithmétiquement arithmétiquement ADV 0.01 0.07 0.01 0.07 +arithmétiques arithmétique ADJ p 0.20 0.47 0.00 0.07 +ariégeois ariégeois ADJ m s 0.00 0.14 0.00 0.07 +ariégeoise ariégeois ADJ f s 0.00 0.14 0.00 0.07 +arkose arkose NOM f s 0.00 0.14 0.00 0.14 +arlequin arlequin NOM m s 0.04 0.47 0.04 0.07 +arlequins arlequin NOM m p 0.04 0.47 0.00 0.41 +arlésien arlésien NOM m s 0.00 0.14 0.00 0.07 +arlésienne arlésienne NOM f s 0.02 0.20 0.00 0.20 +arlésiennes arlésienne NOM f p 0.02 0.20 0.02 0.00 +arma armer VER 29.77 28.45 0.38 1.22 ind:pas:3s; +armada armada NOM f s 1.05 1.35 1.04 1.15 +armadas armada NOM f p 1.05 1.35 0.01 0.20 +armadille armadille NOM f s 0.00 0.07 0.00 0.07 +armagnac armagnac NOM m s 0.66 0.74 0.66 0.61 +armagnacs armagnac NOM m p 0.66 0.74 0.00 0.14 +armai armer VER 29.77 28.45 0.00 0.07 ind:pas:1s; +armaient armer VER 29.77 28.45 0.00 0.14 ind:imp:3p; +armait armer VER 29.77 28.45 0.16 0.54 ind:imp:3s; +armant armer VER 29.77 28.45 0.01 0.27 par:pre; +armateur armateur NOM m s 0.59 2.30 0.56 1.42 +armateurs armateur NOM m p 0.59 2.30 0.03 0.88 +armature armature NOM f s 0.77 2.91 0.54 2.30 +armaturent armaturer VER 0.00 0.07 0.00 0.07 ind:pre:3p; +armatures armature NOM f p 0.77 2.91 0.23 0.61 +arme_miracle arme_miracle NOM f s 0.10 0.00 0.10 0.00 +arme arme NOM f s 220.22 111.49 114.40 37.09 +armement armement NOM m s 3.34 9.80 3.01 9.05 +armements armement NOM m p 3.34 9.80 0.33 0.74 +arment armer VER 29.77 28.45 0.17 0.20 ind:pre:3p; +armer armer VER 29.77 28.45 1.33 2.64 inf; +armeraient armer VER 29.77 28.45 0.00 0.07 cnd:pre:3p; +armerais armer VER 29.77 28.45 0.01 0.07 cnd:pre:1s; +armeront armer VER 29.77 28.45 0.01 0.00 ind:fut:3p; +armes arme NOM f p 220.22 111.49 105.82 74.39 +armez armer VER 29.77 28.45 2.68 0.07 imp:pre:2p;ind:pre:2p; +armistice armistice NOM m s 1.05 15.54 1.05 14.93 +armistices armistice NOM m p 1.05 15.54 0.00 0.61 +armoire armoire NOM f s 9.79 45.54 9.05 38.58 +armoires armoire NOM f p 9.79 45.54 0.73 6.96 +armoirie armoirie NOM f s 0.36 1.89 0.01 0.14 +armoiries armoirie NOM f p 0.36 1.89 0.35 1.76 +armoise armoise NOM f s 0.38 0.27 0.36 0.20 +armoises armoise NOM f p 0.38 0.27 0.01 0.07 +armon armon NOM m s 0.01 0.00 0.01 0.00 +armons armer VER 29.77 28.45 0.14 0.20 imp:pre:1p;ind:pre:1p; +armorial armorial NOM m s 0.00 0.34 0.00 0.34 +armoricaine armoricain ADJ f s 0.00 0.20 0.00 0.20 +armorié armorier VER m s 0.00 0.61 0.00 0.27 par:pas; +armoriée armorier VER f s 0.00 0.61 0.00 0.07 par:pas; +armoriées armorier VER f p 0.00 0.61 0.00 0.14 par:pas; +armoriés armorier VER m p 0.00 0.61 0.00 0.14 par:pas; +armât armer VER 29.77 28.45 0.00 0.07 sub:imp:3s; +armé armer VER m s 29.77 28.45 10.97 8.31 par:pas; +armée armée NOM f s 101.07 146.55 93.97 114.46 +armées armée NOM f p 101.07 146.55 7.10 32.09 +arménien arménien ADJ m s 1.07 0.95 0.21 0.27 +arménienne arménien ADJ f s 1.07 0.95 0.28 0.54 +arméniennes arménien ADJ f p 1.07 0.95 0.00 0.07 +arméniens arménien ADJ m p 1.07 0.95 0.58 0.07 +arménoïde arménoïde ADJ m s 0.00 0.07 0.00 0.07 +armure armure NOM f s 5.46 8.11 5.00 5.47 +armurerie armurerie NOM f s 0.94 0.27 0.89 0.27 +armureries armurerie NOM f p 0.94 0.27 0.05 0.00 +armures armure NOM f p 5.46 8.11 0.46 2.64 +arméria arméria NOM f s 0.00 0.14 0.00 0.07 +armérias arméria NOM f p 0.00 0.14 0.00 0.07 +armurier armurier NOM m s 0.75 1.69 0.60 1.22 +armuriers armurier NOM m p 0.75 1.69 0.14 0.47 +armés armer VER m p 29.77 28.45 6.70 7.91 par:pas; +arnaquait arnaquer VER 6.37 0.68 0.15 0.00 ind:imp:3s; +arnaquant arnaquer VER 6.37 0.68 0.16 0.00 par:pre; +arnaque arnaque NOM f s 6.27 5.14 5.49 4.59 +arnaquent arnaquer VER 6.37 0.68 0.32 0.00 ind:pre:3p; +arnaquer arnaquer VER 6.37 0.68 2.65 0.47 inf; +arnaquera arnaquer VER 6.37 0.68 0.02 0.00 ind:fut:3s; +arnaques arnaque NOM f p 6.27 5.14 0.78 0.54 +arnaqueur arnaqueur NOM m s 1.47 0.54 0.99 0.07 +arnaqueurs arnaqueur NOM m p 1.47 0.54 0.32 0.47 +arnaqueuse arnaqueur NOM f s 1.47 0.54 0.16 0.00 +arnaquez arnaquer VER 6.37 0.68 0.20 0.00 imp:pre:2p;ind:pre:2p; +arnaqué arnaquer VER m s 6.37 0.68 1.46 0.14 par:pas; +arnaquée arnaquer VER f s 6.37 0.68 0.06 0.00 par:pas; +arnaqués arnaquer VER m p 6.37 0.68 0.50 0.00 par:pas; +arnica arnica NOM s 0.02 0.61 0.02 0.61 +arobase arobase NOM f s 0.14 0.00 0.14 0.00 +aromate aromate NOM m s 0.11 0.88 0.01 0.00 +aromates aromate NOM m p 0.11 0.88 0.10 0.88 +aromathérapie aromathérapie NOM f s 0.18 0.00 0.18 0.00 +aromatique aromatique ADJ s 0.10 0.74 0.02 0.20 +aromatiques aromatique ADJ p 0.10 0.74 0.07 0.54 +aromatiser aromatiser VER 0.20 0.54 0.01 0.00 inf; +aromatisé aromatiser VER m s 0.20 0.54 0.16 0.34 par:pas; +aromatisée aromatiser VER f s 0.20 0.54 0.01 0.07 par:pas; +aromatisées aromatiser VER f p 0.20 0.54 0.00 0.14 par:pas; +aromatisés aromatiser VER m p 0.20 0.54 0.01 0.00 par:pas; +aronde aronde NOM f s 0.00 0.47 0.00 0.47 +arousal arousal NOM m s 0.00 0.07 0.00 0.07 +arpent arpent NOM m s 0.56 0.95 0.17 0.14 +arpenta arpenter VER 2.00 9.53 0.10 0.47 ind:pas:3s; +arpentage arpentage NOM m s 0.20 0.27 0.20 0.20 +arpentages arpentage NOM m p 0.20 0.27 0.00 0.07 +arpentai arpenter VER 2.00 9.53 0.01 0.27 ind:pas:1s; +arpentaient arpenter VER 2.00 9.53 0.00 0.47 ind:imp:3p; +arpentais arpenter VER 2.00 9.53 0.00 0.27 ind:imp:1s; +arpentait arpenter VER 2.00 9.53 0.04 1.76 ind:imp:3s; +arpentant arpenter VER 2.00 9.53 0.02 1.49 par:pre; +arpente arpenter VER 2.00 9.53 0.62 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arpentent arpenter VER 2.00 9.53 0.08 0.61 ind:pre:3p; +arpenter arpenter VER 2.00 9.53 0.64 2.30 inf; +arpenterai arpenter VER 2.00 9.53 0.03 0.00 ind:fut:1s; +arpenteront arpenter VER 2.00 9.53 0.01 0.00 ind:fut:3p; +arpenteur arpenteur NOM m s 0.25 1.49 0.16 0.74 +arpenteurs arpenteur NOM m p 0.25 1.49 0.09 0.74 +arpentez arpenter VER 2.00 9.53 0.02 0.00 imp:pre:2p;ind:pre:2p; +arpentions arpenter VER 2.00 9.53 0.00 0.14 ind:imp:1p; +arpentons arpenter VER 2.00 9.53 0.00 0.07 ind:pre:1p; +arpents arpent NOM m p 0.56 0.95 0.38 0.81 +arpentèrent arpenter VER 2.00 9.53 0.00 0.07 ind:pas:3p; +arpenté arpenter VER m s 2.00 9.53 0.41 0.47 par:pas; +arpentée arpenter VER f s 2.00 9.53 0.00 0.07 par:pas; +arpentés arpenter VER m p 2.00 9.53 0.00 0.07 par:pas; +arpette arpette NOM s 0.01 0.00 0.01 0.00 +arpion arpion NOM m s 0.03 1.08 0.00 0.07 +arpions arpion NOM m p 0.03 1.08 0.03 1.01 +arpège arpège NOM m s 0.20 1.49 0.03 1.15 +arpèges arpège NOM m p 0.20 1.49 0.18 0.34 +arpète arpète NOM s 0.00 1.15 0.00 0.88 +arpètes arpète NOM p 0.00 1.15 0.00 0.27 +arpégé arpéger VER m s 0.14 0.00 0.14 0.00 par:pas; +arqua arquer VER 0.34 2.36 0.00 0.07 ind:pas:3s; +arquaient arquer VER 0.34 2.36 0.00 0.41 ind:imp:3p; +arquait arquer VER 0.34 2.36 0.00 0.14 ind:imp:3s; +arquant arquer VER 0.34 2.36 0.00 0.14 par:pre; +arque arquer VER 0.34 2.36 0.00 0.07 ind:pre:1s; +arquebusade arquebusade NOM f s 0.00 0.14 0.00 0.14 +arquebuse arquebuse NOM f s 0.41 8.72 0.39 8.51 +arquebuses arquebuse NOM f p 0.41 8.72 0.02 0.20 +arquebusiers arquebusier NOM m p 0.40 0.00 0.40 0.00 +arquebusât arquebuser VER 0.01 0.00 0.01 0.00 sub:imp:3s; +arquent arquer VER 0.34 2.36 0.00 0.20 ind:pre:3p; +arquepince arquepincer VER 0.00 0.07 0.00 0.07 imp:pre:2s; +arquer arquer VER 0.34 2.36 0.31 0.47 inf; +arqué arqué ADJ m s 0.14 2.97 0.02 0.47 +arquée arquer VER f s 0.34 2.36 0.01 0.14 par:pas; +arquées arqué ADJ f p 0.14 2.97 0.10 1.49 +arqués arqué ADJ m p 0.14 2.97 0.01 0.61 +arracha arracher VER 54.19 113.38 0.33 11.82 ind:pas:3s; +arrachage arrachage NOM m s 0.10 0.27 0.10 0.27 +arrachai arracher VER 54.19 113.38 0.04 1.15 ind:pas:1s; +arrachaient arracher VER 54.19 113.38 0.18 2.16 ind:imp:3p; +arrachais arracher VER 54.19 113.38 0.84 0.74 ind:imp:1s;ind:imp:2s; +arrachait arracher VER 54.19 113.38 0.31 9.59 ind:imp:3s; +arrachant arracher VER 54.19 113.38 0.46 7.43 par:pre; +arrache_clou arrache_clou NOM m s 0.00 0.07 0.00 0.07 +arrache arracher VER 54.19 113.38 13.52 14.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrachement arrachement NOM m s 0.02 3.11 0.02 2.64 +arrachements arrachement NOM m p 0.02 3.11 0.00 0.47 +arrachent arracher VER 54.19 113.38 1.23 2.57 ind:pre:3p; +arracher arracher VER 54.19 113.38 17.20 34.32 ind:pre:2p;inf; +arrachera arracher VER 54.19 113.38 0.90 0.68 ind:fut:3s; +arracherai arracher VER 54.19 113.38 1.68 0.27 ind:fut:1s; +arracheraient arracher VER 54.19 113.38 0.05 0.20 cnd:pre:3p; +arracherais arracher VER 54.19 113.38 0.49 0.20 cnd:pre:1s;cnd:pre:2s; +arracherait arracher VER 54.19 113.38 0.35 1.01 cnd:pre:3s; +arracheras arracher VER 54.19 113.38 0.01 0.07 ind:fut:2s; +arracherons arracher VER 54.19 113.38 0.43 0.07 ind:fut:1p; +arracheront arracher VER 54.19 113.38 0.50 0.14 ind:fut:3p; +arraches arracher VER 54.19 113.38 0.82 0.07 ind:pre:2s; +arracheur arracheur NOM m s 0.34 0.74 0.31 0.41 +arracheurs arracheur NOM m p 0.34 0.74 0.00 0.27 +arracheuse arracheur NOM f s 0.34 0.74 0.04 0.00 +arracheuses arracheur NOM f p 0.34 0.74 0.00 0.07 +arrachez arracher VER 54.19 113.38 1.42 0.27 imp:pre:2p;ind:pre:2p; +arrachiez arracher VER 54.19 113.38 0.04 0.00 ind:imp:2p; +arrachions arracher VER 54.19 113.38 0.00 0.07 ind:imp:1p; +arrachons arracher VER 54.19 113.38 0.42 0.14 imp:pre:1p;ind:pre:1p; +arrachât arracher VER 54.19 113.38 0.00 0.61 sub:imp:3s; +arrachèrent arracher VER 54.19 113.38 0.28 0.88 ind:pas:3p; +arraché arracher VER m s 54.19 113.38 9.53 13.04 par:pas; +arrachée arracher VER f s 54.19 113.38 1.40 5.74 par:pas; +arrachées arracher VER f p 54.19 113.38 0.69 2.09 par:pas; +arrachures arrachure NOM f p 0.00 0.07 0.00 0.07 +arrachés arracher VER m p 54.19 113.38 1.09 3.11 par:pas; +arraisonner arraisonner VER 0.14 0.61 0.05 0.07 inf; +arraisonnerons arraisonner VER 0.14 0.61 0.00 0.07 ind:fut:1p; +arraisonné arraisonner VER m s 0.14 0.61 0.07 0.27 par:pas; +arraisonnées arraisonner VER f p 0.14 0.61 0.00 0.07 par:pas; +arraisonnés arraisonner VER m p 0.14 0.61 0.02 0.14 par:pas; +arrange arranger VER 116.14 75.81 22.14 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arrangea arranger VER 116.14 75.81 0.25 2.43 ind:pas:3s; +arrangeai arranger VER 116.14 75.81 0.01 0.27 ind:pas:1s; +arrangeaient arranger VER 116.14 75.81 0.12 1.62 ind:imp:3p; +arrangeais arranger VER 116.14 75.81 0.45 0.74 ind:imp:1s;ind:imp:2s; +arrangeait arranger VER 116.14 75.81 1.19 9.46 ind:imp:3s; +arrangeant arranger VER 116.14 75.81 0.18 1.42 par:pre; +arrangeante arrangeant ADJ f s 0.10 0.47 0.04 0.07 +arrangeantes arrangeant ADJ f p 0.10 0.47 0.00 0.14 +arrangeants arrangeant ADJ m p 0.10 0.47 0.03 0.07 +arrangement arrangement NOM m s 10.23 9.39 8.62 5.81 +arrangements arrangement NOM m p 10.23 9.39 1.61 3.58 +arrangent arranger VER 116.14 75.81 1.30 2.50 ind:pre:3p;sub:pre:3p; +arrangeons arranger VER 116.14 75.81 0.29 0.07 imp:pre:1p;ind:pre:1p; +arrangeât arranger VER 116.14 75.81 0.00 0.07 sub:imp:3s; +arranger arranger VER 116.14 75.81 48.51 18.45 imp:pre:2p;inf; +arrangera arranger VER 116.14 75.81 8.40 2.30 ind:fut:3s; +arrangerai arranger VER 116.14 75.81 3.51 2.57 ind:fut:1s; +arrangeraient arranger VER 116.14 75.81 0.01 0.41 cnd:pre:3p; +arrangerais arranger VER 116.14 75.81 0.61 0.34 cnd:pre:1s;cnd:pre:2s; +arrangerait arranger VER 116.14 75.81 3.05 3.31 cnd:pre:3s; +arrangeras arranger VER 116.14 75.81 0.24 0.20 ind:fut:2s; +arrangerez arranger VER 116.14 75.81 0.14 0.34 ind:fut:2p; +arrangerions arranger VER 116.14 75.81 0.00 0.07 cnd:pre:1p; +arrangerons arranger VER 116.14 75.81 0.39 0.47 ind:fut:1p; +arrangeront arranger VER 116.14 75.81 0.30 0.41 ind:fut:3p; +arranges arranger VER 116.14 75.81 1.50 0.47 ind:pre:2s; +arrangeur arrangeur NOM m s 0.10 0.07 0.06 0.00 +arrangeurs arrangeur NOM m p 0.10 0.07 0.04 0.07 +arrangez arranger VER 116.14 75.81 2.42 0.74 imp:pre:2p;ind:pre:2p; +arrangiez arranger VER 116.14 75.81 0.01 0.07 ind:imp:2p; +arrangions arranger VER 116.14 75.81 0.04 0.20 ind:imp:1p; +arrangèrent arranger VER 116.14 75.81 0.01 0.34 ind:pas:3p; +arrangé arranger VER m s 116.14 75.81 18.24 9.93 par:pas; +arrangée arranger VER f s 116.14 75.81 1.29 2.50 par:pas; +arrangées arranger VER f p 116.14 75.81 0.41 0.34 par:pas; +arrangés arranger VER m p 116.14 75.81 1.13 0.81 par:pas; +arrestation arrestation NOM f s 20.59 10.41 17.59 8.58 +arrestations arrestation NOM f p 20.59 10.41 3.00 1.82 +arrhes arrhe NOM f p 0.30 0.41 0.30 0.41 +arrima arrimer VER 0.97 2.91 0.00 0.07 ind:pas:3s; +arrimage arrimage NOM m s 0.61 0.20 0.61 0.20 +arrimais arrimer VER 0.97 2.91 0.00 0.07 ind:imp:1s; +arrimait arrimer VER 0.97 2.91 0.00 0.20 ind:imp:3s; +arrimant arrimer VER 0.97 2.91 0.10 0.07 par:pre; +arrime arrimer VER 0.97 2.91 0.05 0.00 imp:pre:2s;ind:pre:3s; +arriment arrimer VER 0.97 2.91 0.03 0.07 ind:pre:3p; +arrimer arrimer VER 0.97 2.91 0.32 0.41 inf; +arrimez arrimer VER 0.97 2.91 0.08 0.00 imp:pre:2p; +arrimé arrimer VER m s 0.97 2.91 0.16 0.68 par:pas; +arrimée arrimer VER f s 0.97 2.91 0.05 0.74 par:pas; +arrimées arrimer VER f p 0.97 2.91 0.11 0.27 par:pas; +arrimés arrimer VER m p 0.97 2.91 0.08 0.34 par:pas; +arrière_automne arrière_automne NOM m 0.00 0.14 0.00 0.14 +arrière_ban arrière_ban NOM m s 0.00 0.20 0.00 0.20 +arrière_boutique arrière_boutique NOM f s 0.31 6.35 0.31 5.95 +arrière_boutique arrière_boutique NOM f p 0.31 6.35 0.00 0.41 +arrière_cabinet arrière_cabinet NOM m p 0.00 0.07 0.00 0.07 +arrière_cour arrière_cour NOM f s 0.45 1.35 0.41 1.01 +arrière_cour arrière_cour NOM f p 0.45 1.35 0.03 0.34 +arrière_cousin arrière_cousin NOM m s 0.12 0.00 0.12 0.00 +arrière_cuisine arrière_cuisine NOM f s 0.02 0.14 0.02 0.07 +arrière_cuisine arrière_cuisine NOM f p 0.02 0.14 0.00 0.07 +arrière_fond arrière_fond NOM m s 0.04 0.95 0.04 0.95 +arrière_garde arrière_garde NOM f s 0.47 2.03 0.47 1.69 +arrière_garde arrière_garde NOM f p 0.47 2.03 0.00 0.34 +arrière_goût arrière_goût NOM m s 0.55 1.28 0.55 1.22 +arrière_goût arrière_goût NOM m p 0.55 1.28 0.00 0.07 +arrière_gorge arrière_gorge NOM f s 0.00 0.27 0.00 0.27 +arrière_grand_mère arrière_grand_mère NOM f s 0.85 2.57 0.83 2.30 +arrière_grand_mère arrière_grand_mère NOM f p 0.85 2.57 0.00 0.20 +arrière_grand_oncle arrière_grand_oncle NOM m s 0.04 0.41 0.04 0.41 +arrière_grand_père arrière_grand_père NOM m s 1.48 4.12 1.48 3.78 +arrière_grand_tante arrière_grand_tante NOM f s 0.00 0.20 0.00 0.14 +arrière_grand_tante arrière_grand_tante NOM f p 0.00 0.20 0.00 0.07 +arrière_grand_mère arrière_grand_mère NOM f p 0.85 2.57 0.02 0.07 +arrière_grand_parent arrière_grand_parent NOM m p 0.16 1.08 0.16 1.08 +arrière_grand_père arrière_grand_père NOM m p 1.48 4.12 0.00 0.34 +arrière_loge arrière_loge NOM m s 0.00 0.07 0.00 0.07 +arrière_magasin arrière_magasin NOM m 0.00 0.07 0.00 0.07 +arrière_main arrière_main NOM s 0.00 0.07 0.00 0.07 +arrière_monde arrière_monde NOM m s 0.00 0.14 0.00 0.14 +arrière_neveux arrière_neveux NOM m p 0.00 0.07 0.00 0.07 +arrière_pays arrière_pays NOM m 0.37 1.15 0.37 1.15 +arrière_pensée arrière_pensée NOM f s 0.91 5.95 0.79 3.58 +arrière_pensée arrière_pensée NOM f p 0.91 5.95 0.13 2.36 +arrière_petit_fils arrière_petit_fils NOM m 0.14 0.61 0.14 0.61 +arrière_petit_neveu arrière_petit_neveu NOM m s 0.01 0.27 0.01 0.27 +arrière_petite_fille arrière_petite_fille NOM f s 0.13 0.81 0.13 0.47 +arrière_petite_nièce arrière_petite_nièce NOM f s 0.00 0.14 0.00 0.07 +arrière_petite_fille arrière_petite_fille NOM f p 0.13 0.81 0.00 0.34 +arrière_petite_nièce arrière_petite_nièce NOM f p 0.00 0.14 0.00 0.07 +arrière_petit_enfant arrière_petit_enfant NOM m p 0.36 0.27 0.36 0.27 +arrière_petits_fils arrière_petits_fils NOM m p 0.00 0.41 0.00 0.41 +arrière_petits_neveux arrière_petits_neveux NOM m p 0.00 0.07 0.00 0.07 +arrière_plan arrière_plan NOM m s 0.94 2.70 0.91 2.03 +arrière_plan arrière_plan NOM m p 0.94 2.70 0.02 0.68 +arrière_saison arrière_saison NOM f s 0.00 1.22 0.00 1.22 +arrière_salle arrière_salle NOM f s 0.28 2.36 0.24 2.16 +arrière_salle arrière_salle NOM f p 0.28 2.36 0.04 0.20 +arrière_train arrière_train NOM m s 0.66 1.69 0.64 1.62 +arrière_train arrière_train NOM m p 0.66 1.69 0.03 0.07 +arrière arrière ONO 2.75 0.14 2.75 0.14 +arrières arrière NOM m p 52.15 95.00 4.76 4.73 +arriération arriération NOM f s 0.03 0.27 0.03 0.27 +arriéré arriéré NOM m s 0.79 2.03 0.22 0.54 +arriérée arriéré ADJ f s 0.57 1.62 0.20 0.34 +arriérées arriéré ADJ f p 0.57 1.62 0.04 0.14 +arriérés arriéré NOM m p 0.79 2.03 0.54 1.35 +arriva arriver VER 1252.39 723.04 5.75 47.50 ind:pas:3s; +arrivage arrivage NOM m s 0.82 1.96 0.76 1.55 +arrivages arrivage NOM m p 0.82 1.96 0.07 0.41 +arrivai arriver VER 1252.39 723.04 0.49 6.76 ind:pas:1s; +arrivaient arriver VER 1252.39 723.04 2.72 22.91 ind:imp:3p; +arrivais arriver VER 1252.39 723.04 11.24 18.51 ind:imp:1s;ind:imp:2s; +arrivait arriver VER 1252.39 723.04 22.16 105.00 ind:imp:3s; +arrivant arriver VER 1252.39 723.04 9.19 22.57 par:pre; +arrivante arrivant NOM f s 0.48 5.07 0.03 0.27 +arrivants arrivant NOM m p 0.48 5.07 0.27 2.64 +arrivas arriver VER 1252.39 723.04 0.02 0.07 ind:pas:2s; +arrivassent arriver VER 1252.39 723.04 0.00 0.07 sub:imp:3p; +arrive arriver VER 1252.39 723.04 525.10 164.12 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrivent arriver VER 1252.39 723.04 58.12 21.82 ind:pre:3p;sub:pre:3p; +arriver arriver VER 1252.39 723.04 182.85 95.00 inf;; +arrivera arriver VER 1252.39 723.04 53.86 10.07 ind:fut:3s; +arriverai arriver VER 1252.39 723.04 13.08 3.85 ind:fut:1s; +arriveraient arriver VER 1252.39 723.04 0.58 1.22 cnd:pre:3p; +arriverais arriver VER 1252.39 723.04 3.93 1.76 cnd:pre:1s;cnd:pre:2s; +arriverait arriver VER 1252.39 723.04 11.06 9.73 cnd:pre:3s; +arriveras arriver VER 1252.39 723.04 8.98 1.96 ind:fut:2s; +arriverez arriver VER 1252.39 723.04 5.30 1.22 ind:fut:2p; +arriveriez arriver VER 1252.39 723.04 0.46 0.07 cnd:pre:2p; +arriverions arriver VER 1252.39 723.04 0.25 0.27 cnd:pre:1p; +arriverons arriver VER 1252.39 723.04 3.61 1.42 ind:fut:1p; +arriveront arriver VER 1252.39 723.04 5.17 1.62 ind:fut:3p; +arrives arriver VER 1252.39 723.04 28.82 3.31 ind:pre:2s; +arrivez arriver VER 1252.39 723.04 10.69 2.23 imp:pre:2p;ind:pre:2p; +arriviez arriver VER 1252.39 723.04 1.30 0.88 ind:imp:2p; +arrivions arriver VER 1252.39 723.04 0.99 4.59 ind:imp:1p; +arrivisme arrivisme NOM m s 0.16 0.27 0.16 0.27 +arriviste arriviste NOM s 0.77 0.41 0.60 0.20 +arrivistes arriviste NOM p 0.77 0.41 0.17 0.20 +arrivâmes arriver VER 1252.39 723.04 0.46 3.18 ind:pas:1p; +arrivons arriver VER 1252.39 723.04 6.09 4.86 imp:pre:1p;ind:pre:1p; +arrivât arriver VER 1252.39 723.04 0.43 2.09 sub:imp:3s; +arrivâtes arriver VER 1252.39 723.04 0.01 0.07 ind:pas:2p; +arrivèrent arriver VER 1252.39 723.04 1.36 12.57 ind:pas:3p; +arrivé arriver VER m s 1252.39 723.04 203.06 97.91 par:pas;par:pas;par:pas; +arrivée arrivée NOM f s 42.66 80.00 41.90 77.84 +arrivées arriver VER f p 1252.39 723.04 4.24 2.91 par:pas; +arrivés arriver VER m p 1252.39 723.04 32.78 25.81 par:pas; +arrogamment arrogamment ADV 0.00 0.47 0.00 0.47 +arrogance arrogance NOM f s 3.92 3.85 3.92 3.85 +arrogant arrogant ADJ m s 5.29 4.05 2.98 2.16 +arrogante arrogant ADJ f s 5.29 4.05 1.53 1.01 +arrogantes arrogant ADJ f p 5.29 4.05 0.18 0.20 +arrogants arrogant ADJ m p 5.29 4.05 0.59 0.68 +arroge arroger VER 0.39 1.01 0.22 0.14 ind:pre:1s;ind:pre:3s; +arrogeaient arroger VER 0.39 1.01 0.00 0.07 ind:imp:3p; +arrogeait arroger VER 0.39 1.01 0.00 0.07 ind:imp:3s; +arrogeant arroger VER 0.39 1.01 0.00 0.07 par:pre; +arrogent arroger VER 0.39 1.01 0.14 0.00 ind:pre:3p; +arroger arroger VER 0.39 1.01 0.00 0.54 inf; +arrogèrent arroger VER 0.39 1.01 0.01 0.00 ind:pas:3p; +arrogé arroger VER m s 0.39 1.01 0.02 0.07 par:pas; +arrogée arroger VER f s 0.39 1.01 0.00 0.07 par:pas; +arroi arroi NOM m s 0.00 0.68 0.00 0.68 +arrondi arrondi ADJ m s 0.57 7.84 0.20 2.91 +arrondie arrondi ADJ f s 0.57 7.84 0.17 1.96 +arrondies arrondi ADJ f p 0.57 7.84 0.04 0.95 +arrondir arrondir VER 2.04 14.53 1.06 2.23 inf; +arrondira arrondir VER 2.04 14.53 0.15 0.07 ind:fut:3s; +arrondirait arrondir VER 2.04 14.53 0.01 0.07 cnd:pre:3s; +arrondirent arrondir VER 2.04 14.53 0.00 0.20 ind:pas:3p; +arrondis arrondir VER m p 2.04 14.53 0.22 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +arrondissaient arrondir VER 2.04 14.53 0.00 0.74 ind:imp:3p; +arrondissait arrondir VER 2.04 14.53 0.20 2.43 ind:imp:3s; +arrondissant arrondir VER 2.04 14.53 0.01 0.74 par:pre; +arrondissement arrondissement NOM m s 0.95 8.38 0.94 7.30 +arrondissements arrondissement NOM m p 0.95 8.38 0.01 1.08 +arrondissent arrondir VER 2.04 14.53 0.05 1.08 ind:pre:3p; +arrondissons arrondir VER 2.04 14.53 0.04 0.00 imp:pre:1p; +arrondit arrondir VER 2.04 14.53 0.14 2.30 ind:pre:3s;ind:pas:3s; +arrosa arroser VER 14.07 19.73 0.00 0.54 ind:pas:3s; +arrosage arrosage NOM m s 1.72 1.89 1.72 1.89 +arrosaient arroser VER 14.07 19.73 0.04 0.68 ind:imp:3p; +arrosais arroser VER 14.07 19.73 0.11 0.07 ind:imp:1s;ind:imp:2s; +arrosait arroser VER 14.07 19.73 0.62 2.64 ind:imp:3s; +arrosant arroser VER 14.07 19.73 0.30 1.35 par:pre; +arrose arroser VER 14.07 19.73 3.34 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +arrosent arroser VER 14.07 19.73 0.22 0.61 ind:pre:3p; +arroser arroser VER 14.07 19.73 5.53 4.46 inf; +arrosera arroser VER 14.07 19.73 0.02 0.00 ind:fut:3s; +arroserais arroser VER 14.07 19.73 0.00 0.14 cnd:pre:1s; +arroserait arroser VER 14.07 19.73 0.02 0.14 cnd:pre:3s; +arroseras arroser VER 14.07 19.73 0.02 0.00 ind:fut:2s; +arroserez arroser VER 14.07 19.73 0.00 0.07 ind:fut:2p; +arroseront arroser VER 14.07 19.73 0.01 0.07 ind:fut:3p; +arroses arroser VER 14.07 19.73 0.19 0.07 ind:pre:2s; +arroseur arroseur NOM m s 0.43 0.47 0.22 0.14 +arroseurs arroseur NOM m p 0.43 0.47 0.19 0.07 +arroseuse arroseur NOM f s 0.43 0.47 0.02 0.20 +arroseuses arroseuse NOM f p 0.01 0.00 0.01 0.00 +arrosez arroser VER 14.07 19.73 0.70 0.14 imp:pre:2p;ind:pre:2p; +arrosiez arroser VER 14.07 19.73 0.00 0.07 ind:imp:2p; +arrosions arroser VER 14.07 19.73 0.00 0.14 ind:imp:1p; +arrosoir arrosoir NOM m s 0.37 3.58 0.37 3.04 +arrosoirs arrosoir NOM m p 0.37 3.58 0.00 0.54 +arrosons arroser VER 14.07 19.73 0.40 0.14 imp:pre:1p;ind:pre:1p; +arrosèrent arroser VER 14.07 19.73 0.01 0.14 ind:pas:3p; +arrosé arroser VER m s 14.07 19.73 1.70 2.97 par:pas; +arrosée arroser VER f s 14.07 19.73 0.28 1.22 par:pas; +arrosées arroser VER f p 14.07 19.73 0.26 0.81 par:pas; +arrosés arroser VER m p 14.07 19.73 0.31 0.88 par:pas; +arrérages arrérage NOM m p 0.20 0.14 0.20 0.14 +arrêt_buffet arrêt_buffet NOM m s 0.01 0.07 0.00 0.07 +arrêt arrêt NOM m s 50.88 53.92 46.80 46.82 +arrêta arrêter VER 993.79 462.50 1.68 93.31 ind:pas:3s; +arrêtai arrêter VER 993.79 462.50 0.48 6.15 ind:pas:1s; +arrêtaient arrêter VER 993.79 462.50 1.13 9.59 ind:imp:3p; +arrêtais arrêter VER 993.79 462.50 3.70 4.66 ind:imp:1s;ind:imp:2s; +arrêtait arrêter VER 993.79 462.50 8.97 37.09 ind:imp:3s; +arrêtant arrêter VER 993.79 462.50 1.00 16.01 par:pre; +arrêtassent arrêter VER 993.79 462.50 0.00 0.20 sub:imp:3p; +arrête_boeuf arrête_boeuf NOM m s 0.00 0.07 0.00 0.07 +arrête arrêter VER 993.79 462.50 456.59 85.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +arrêtent arrêter VER 993.79 462.50 9.22 10.81 ind:pre:3p;sub:pre:3p; +arrêter arrêter VER 993.79 462.50 178.62 80.61 inf;;inf;;inf;;inf;; +arrêtera arrêter VER 993.79 462.50 14.42 2.70 ind:fut:3s; +arrêterai arrêter VER 993.79 462.50 4.00 0.54 ind:fut:1s; +arrêteraient arrêter VER 993.79 462.50 0.75 0.34 cnd:pre:3p; +arrêterais arrêter VER 993.79 462.50 2.13 0.61 cnd:pre:1s;cnd:pre:2s; +arrêterait arrêter VER 993.79 462.50 1.77 2.84 cnd:pre:3s; +arrêteras arrêter VER 993.79 462.50 1.40 0.34 ind:fut:2s; +arrêterez arrêter VER 993.79 462.50 1.27 0.07 ind:fut:2p; +arrêteriez arrêter VER 993.79 462.50 0.18 0.14 cnd:pre:2p; +arrêterions arrêter VER 993.79 462.50 0.04 0.07 cnd:pre:1p; +arrêterons arrêter VER 993.79 462.50 0.90 0.68 ind:fut:1p; +arrêteront arrêter VER 993.79 462.50 2.49 0.88 ind:fut:3p; +arrêtes arrêter VER 993.79 462.50 21.90 1.96 ind:pre:2s;sub:pre:2s; +arrêtez arrêter VER 993.79 462.50 174.12 6.69 imp:pre:2p;ind:pre:2p; +arrêtiez arrêter VER 993.79 462.50 1.56 0.20 ind:imp:2p; +arrêtions arrêter VER 993.79 462.50 0.55 1.42 ind:imp:1p;sub:pre:1p; +arrêtâmes arrêter VER 993.79 462.50 0.01 1.22 ind:pas:1p; +arrêtons arrêter VER 993.79 462.50 6.60 2.70 imp:pre:1p;ind:pre:1p; +arrêtât arrêter VER 993.79 462.50 0.00 1.42 sub:imp:3s; +arrêt_buffet arrêt_buffet NOM m p 0.01 0.07 0.01 0.00 +arrêts arrêt NOM m p 50.88 53.92 4.08 7.09 +arrêtèrent arrêter VER 993.79 462.50 0.24 10.00 ind:pas:3p; +arrêté arrêter VER m s 993.79 462.50 77.28 48.24 par:pas; +arrêtée arrêter VER f s 993.79 462.50 11.22 17.97 par:pas; +arrêtées arrêter VER f p 993.79 462.50 1.47 3.38 par:pas; +arrêtés arrêter VER m p 993.79 462.50 8.11 14.59 par:pas; +ars ars NOM m 0.94 0.07 0.94 0.07 +arsacide arsacide NOM s 0.00 0.07 0.00 0.07 +arsenal arsenal NOM m s 2.36 5.74 2.27 4.86 +arsenaux arsenal NOM m p 2.36 5.74 0.09 0.88 +arsenic arsenic NOM m s 1.10 1.22 1.10 1.22 +arsenicales arsenical ADJ f p 0.00 0.07 0.00 0.07 +arsouille arsouille NOM s 0.23 0.54 0.23 0.41 +arsouiller arsouiller VER 0.00 0.07 0.00 0.07 inf; +arsouilles arsouille NOM p 0.23 0.54 0.00 0.14 +arsénieux arsénieux ADJ m s 0.00 0.07 0.00 0.07 +art art NOM m s 72.79 91.49 65.93 81.49 +artefact artefact NOM m s 0.67 0.14 0.34 0.00 +artefacts artefact NOM m p 0.67 0.14 0.33 0.14 +arène arène NOM f s 2.50 5.54 2.25 4.12 +arènes arène NOM f p 2.50 5.54 0.25 1.42 +arçon arçon NOM m s 0.02 0.95 0.01 0.81 +arçons arçon NOM m p 0.02 0.95 0.01 0.14 +arthrite arthrite NOM f s 1.75 0.34 1.75 0.27 +arthrites arthrite NOM f p 1.75 0.34 0.00 0.07 +arthritique arthritique ADJ s 0.14 0.41 0.03 0.34 +arthritiques arthritique ADJ m p 0.14 0.41 0.11 0.07 +arthrodèse arthrodèse NOM f s 0.00 0.14 0.00 0.14 +arthropathie arthropathie NOM f s 0.01 0.00 0.01 0.00 +arthroplastie arthroplastie NOM f s 0.01 0.00 0.01 0.00 +arthropodes arthropode NOM m p 0.04 0.07 0.04 0.07 +arthroscopie arthroscopie NOM f s 0.01 0.00 0.01 0.00 +arthrose arthrose NOM f s 0.86 0.61 0.86 0.47 +arthroses arthrose NOM f p 0.86 0.61 0.00 0.14 +arthurien arthurien ADJ m s 0.04 0.20 0.01 0.07 +arthurienne arthurien ADJ f s 0.04 0.20 0.03 0.07 +arthuriens arthurien ADJ m p 0.04 0.20 0.00 0.07 +artichaut artichaut NOM m s 2.39 2.57 1.45 0.95 +artichauts artichaut NOM m p 2.39 2.57 0.94 1.62 +artiche artiche NOM m s 0.01 1.82 0.01 1.82 +article_choc article_choc NOM m s 0.00 0.07 0.00 0.07 +article article NOM m s 44.45 50.34 33.39 31.69 +articles article NOM m p 44.45 50.34 11.06 18.65 +articula articuler VER 1.21 12.97 0.00 1.82 ind:pas:3s; +articulai articuler VER 1.21 12.97 0.00 0.07 ind:pas:1s; +articulaient articuler VER 1.21 12.97 0.00 0.07 ind:imp:3p; +articulaire articulaire ADJ s 0.17 0.07 0.09 0.00 +articulaires articulaire ADJ p 0.17 0.07 0.08 0.07 +articulait articuler VER 1.21 12.97 0.04 0.68 ind:imp:3s; +articulant articuler VER 1.21 12.97 0.02 1.28 par:pre; +articulation articulation NOM f s 1.51 6.01 0.54 2.16 +articulations articulation NOM f p 1.51 6.01 0.97 3.85 +articule articuler VER 1.21 12.97 0.50 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +articulent articuler VER 1.21 12.97 0.02 0.07 ind:pre:3p; +articuler articuler VER 1.21 12.97 0.34 4.32 inf; +articulet articulet NOM m s 0.00 0.14 0.00 0.14 +articulez articuler VER 1.21 12.97 0.19 0.07 imp:pre:2p;ind:pre:2p; +articulé articulé ADJ m s 0.27 3.65 0.13 1.42 +articulée articuler VER f s 1.21 12.97 0.01 0.34 par:pas; +articulées articulé ADJ f p 0.27 3.65 0.12 0.41 +articulés articulé ADJ m p 0.27 3.65 0.03 1.08 +artifice artifice NOM m s 6.95 10.95 5.38 8.51 +artifices artifice NOM m p 6.95 10.95 1.57 2.43 +artificialité artificialité NOM f s 0.01 0.00 0.01 0.00 +artificiel artificiel ADJ m s 7.12 12.16 2.55 3.51 +artificielle artificiel ADJ f s 7.12 12.16 2.99 4.39 +artificiellement artificiellement ADV 0.48 1.42 0.48 1.42 +artificielles artificiel ADJ f p 7.12 12.16 0.87 2.57 +artificiels artificiel ADJ m p 7.12 12.16 0.71 1.69 +artificier artificier NOM m s 0.79 1.35 0.44 0.68 +artificiers artificier NOM m p 0.79 1.35 0.34 0.68 +artificieuse artificieux ADJ f s 0.14 0.14 0.00 0.07 +artificieuses artificieux ADJ f p 0.14 0.14 0.14 0.07 +artiflot artiflot NOM m s 0.00 0.34 0.00 0.07 +artiflots artiflot NOM m p 0.00 0.34 0.00 0.27 +artillerie artillerie NOM f s 8.63 17.36 8.63 17.36 +artilleur artilleur NOM m s 0.79 8.45 0.47 2.16 +artilleurs artilleur NOM m p 0.79 8.45 0.32 6.28 +artimon artimon NOM m s 0.22 0.07 0.22 0.07 +artisan artisan NOM m s 3.09 10.74 1.79 5.00 +artisanal artisanal ADJ m s 0.75 1.62 0.15 0.41 +artisanale artisanal ADJ f s 0.75 1.62 0.30 0.68 +artisanalement artisanalement ADV 0.01 0.07 0.01 0.07 +artisanales artisanal ADJ f p 0.75 1.62 0.25 0.27 +artisanat artisanat NOM m s 0.77 1.15 0.77 1.15 +artisanaux artisanal ADJ m p 0.75 1.62 0.05 0.27 +artisane artisan NOM f s 3.09 10.74 0.00 0.07 +artisans artisan NOM m p 3.09 10.74 1.30 5.68 +artison artison NOM m s 0.00 0.07 0.00 0.07 +artiste_peintre artiste_peintre NOM s 0.02 0.14 0.02 0.14 +artiste artiste NOM s 40.78 45.88 28.00 28.85 +artistement artistement ADV 0.00 0.81 0.00 0.81 +artistes artiste NOM p 40.78 45.88 12.78 17.03 +artistique artistique ADJ s 10.00 10.00 8.08 6.76 +artistiquement artistiquement ADV 0.26 0.61 0.26 0.61 +artistiques artistique ADJ p 10.00 10.00 1.92 3.24 +arts art NOM m p 72.79 91.49 6.86 10.00 +artère artère NOM f s 5.13 7.09 3.13 2.16 +artères artère NOM f p 5.13 7.09 2.00 4.93 +artéfact artéfact NOM m s 0.13 0.00 0.13 0.00 +artériectomie artériectomie NOM f s 0.00 0.07 0.00 0.07 +artériel artériel ADJ m s 1.76 0.61 0.19 0.20 +artérielle artériel ADJ f s 1.76 0.61 1.55 0.41 +artérielles artériel ADJ f p 1.76 0.61 0.02 0.00 +artériographie artériographie NOM f s 0.09 0.00 0.09 0.00 +artériole artériole NOM f s 0.03 0.14 0.01 0.00 +artérioles artériole NOM f p 0.03 0.14 0.01 0.14 +artériopathie artériopathie NOM f s 0.16 0.00 0.16 0.00 +artériosclérose artériosclérose NOM f s 0.17 0.27 0.17 0.27 +artérite artérite NOM f s 0.03 0.07 0.03 0.07 +artésien artésien ADJ m s 0.01 0.27 0.01 0.27 +aréflexie aréflexie NOM f s 0.02 0.00 0.02 0.00 +arum arum NOM m s 0.09 0.61 0.02 0.00 +arums arum NOM m p 0.09 0.61 0.07 0.61 +aréna aréna NOM m s 0.05 0.00 0.05 0.00 +aréole aréole NOM f s 0.04 0.54 0.04 0.34 +aréoles aréole NOM f p 0.04 0.54 0.00 0.20 +aréopage aréopage NOM m s 0.10 1.08 0.10 1.01 +aréopages aréopage NOM m p 0.10 1.08 0.00 0.07 +aréopagite aréopagite NOM m s 0.00 0.07 0.00 0.07 +aréquier aréquier NOM m s 0.14 0.00 0.14 0.00 +aruspice aruspice NOM m s 0.15 0.07 0.15 0.00 +aruspices aruspice NOM m p 0.15 0.07 0.00 0.07 +arête arête NOM f s 1.60 10.81 0.70 6.01 +arêtes arête NOM f p 1.60 10.81 0.90 4.80 +arétin arétin NOM m s 0.00 0.07 0.00 0.07 +arverne arverne NOM s 0.00 0.14 0.00 0.07 +arvernes arverne NOM p 0.00 0.14 0.00 0.07 +aryen aryen ADJ m s 1.84 0.61 0.22 0.14 +aryenne aryen ADJ f s 1.84 0.61 1.09 0.34 +aryennes aryen ADJ f p 1.84 0.61 0.03 0.07 +aryens aryen ADJ m p 1.84 0.61 0.50 0.07 +arythmie arythmie NOM f s 0.64 0.07 0.64 0.07 +arythmique arythmique ADJ m s 0.03 0.00 0.03 0.00 +arzels arzel NOM m p 0.00 0.07 0.00 0.07 +as_rois as_rois NOM m 0.01 0.00 0.01 0.00 +as avoir AUX 18559.23 12800.81 2144.15 294.46 ind:pre:2s; +asa asa NOM m 0.02 0.00 0.02 0.00 +asana asana NOM f s 0.02 0.00 0.02 0.00 +asbeste asbeste NOM m s 0.01 0.00 0.01 0.00 +asbestose asbestose NOM f s 0.01 0.00 0.01 0.00 +ascaris ascaris NOM m 0.20 0.07 0.20 0.07 +ascendance ascendance NOM f s 0.24 2.23 0.24 1.89 +ascendances ascendance NOM f p 0.24 2.23 0.00 0.34 +ascendant ascendant ADJ m s 1.26 2.36 1.10 1.08 +ascendante ascendant ADJ f s 1.26 2.36 0.13 0.88 +ascendantes ascendant ADJ f p 1.26 2.36 0.00 0.27 +ascendants ascendant ADJ m p 1.26 2.36 0.03 0.14 +ascendre ascendre VER 0.05 0.00 0.04 0.00 inf; +ascendu ascendre VER m s 0.05 0.00 0.01 0.00 par:pas; +ascenseur ascenseur NOM m s 25.34 25.88 22.87 23.65 +ascenseurs ascenseur NOM m p 25.34 25.88 2.48 2.23 +ascension ascension NOM f s 3.87 8.04 3.65 7.70 +ascensionne ascensionner VER 0.01 0.07 0.00 0.07 ind:pre:3s; +ascensionnel ascensionnel ADJ m s 0.05 0.34 0.02 0.14 +ascensionnelle ascensionnel ADJ f s 0.05 0.34 0.02 0.20 +ascensionnelles ascensionnel ADJ f p 0.05 0.34 0.01 0.00 +ascensionner ascensionner VER 0.01 0.07 0.01 0.00 inf; +ascensions ascension NOM f p 3.87 8.04 0.22 0.34 +ascite ascite NOM f s 0.04 0.00 0.04 0.00 +asclépias asclépias NOM m 0.01 0.14 0.01 0.14 +ascorbique ascorbique ADJ m s 0.01 0.00 0.01 0.00 +ascot ascot NOM s 0.03 0.00 0.03 0.00 +ascèse ascèse NOM f s 0.00 1.35 0.00 1.28 +ascèses ascèse NOM f p 0.00 1.35 0.00 0.07 +ascète ascète NOM s 0.06 0.74 0.02 0.54 +ascètes ascète NOM p 0.06 0.74 0.04 0.20 +ascétique ascétique ADJ s 0.65 1.22 0.11 0.88 +ascétiques ascétique ADJ p 0.65 1.22 0.54 0.34 +ascétisme ascétisme NOM m s 0.14 0.74 0.14 0.74 +asdic asdic NOM m s 0.10 0.07 0.10 0.07 +ase as NOM f s 18.80 6.62 0.02 0.20 +asepsie asepsie NOM f s 0.00 0.07 0.00 0.07 +aseptique aseptique ADJ s 0.01 0.27 0.01 0.20 +aseptiques aseptique ADJ p 0.01 0.27 0.00 0.07 +aseptisant aseptiser VER 0.04 0.07 0.01 0.00 par:pre; +aseptisation aseptisation NOM f s 0.00 0.14 0.00 0.14 +aseptisé aseptisé ADJ m s 0.14 0.68 0.09 0.34 +aseptisée aseptisé ADJ f s 0.14 0.68 0.02 0.14 +aseptisées aseptisé ADJ f p 0.14 0.68 0.00 0.07 +aseptisés aseptisé ADJ m p 0.14 0.68 0.03 0.14 +asexualité asexualité NOM f s 0.01 0.00 0.01 0.00 +asexuelle asexuel ADJ f s 0.02 0.00 0.02 0.00 +asexué asexué ADJ m s 0.33 0.95 0.13 0.14 +asexuée asexué ADJ f s 0.33 0.95 0.12 0.54 +asexuées asexué ADJ f p 0.33 0.95 0.02 0.14 +asexués asexué ADJ m p 0.33 0.95 0.07 0.14 +ashanti ashanti NOM s 0.00 0.07 0.00 0.07 +ashkénaze ashkénaze NOM s 0.00 0.27 0.00 0.07 +ashkénazes ashkénaze NOM p 0.00 0.27 0.00 0.20 +ashram ashram NOM m s 0.16 0.07 0.16 0.07 +asiate asiate ADJ s 0.01 0.47 0.01 0.47 +asiatique asiatique ADJ s 3.00 2.77 2.46 1.82 +asiatiques asiatique NOM p 1.30 0.74 0.69 0.47 +asiatisé asiatiser VER m s 0.00 0.07 0.00 0.07 par:pas; +asilaire asilaire ADJ m s 0.00 0.07 0.00 0.07 +asile asile NOM m s 26.56 13.58 25.52 11.55 +asiles asile NOM m p 26.56 13.58 1.04 2.03 +asociabilité asociabilité NOM f s 0.01 0.07 0.01 0.07 +asocial asocial ADJ m s 0.40 0.74 0.07 0.54 +asociale asocial ADJ f s 0.40 0.74 0.03 0.00 +asociales asocial ADJ f p 0.40 0.74 0.03 0.07 +asociaux asocial ADJ m p 0.40 0.74 0.28 0.14 +asparagus asparagus NOM m 0.01 0.41 0.01 0.41 +aspartam aspartam NOM m s 0.07 0.00 0.07 0.00 +aspartame aspartame NOM m s 0.01 0.00 0.01 0.00 +aspartique aspartique ADJ m s 0.01 0.00 0.01 0.00 +aspect aspect NOM m s 12.78 41.28 9.88 36.01 +aspects aspect NOM m p 12.78 41.28 2.90 5.27 +asperge asperge NOM f s 1.74 8.65 0.71 5.88 +aspergea asperger VER 2.48 7.23 0.00 0.74 ind:pas:3s; +aspergeaient asperger VER 2.48 7.23 0.00 0.34 ind:imp:3p; +aspergeait asperger VER 2.48 7.23 0.07 0.61 ind:imp:3s; +aspergeant asperger VER 2.48 7.23 0.03 0.61 par:pre; +aspergent asperger VER 2.48 7.23 0.16 0.07 ind:pre:3p; +asperger asperger VER 2.48 7.23 0.79 1.28 inf; +aspergerait asperger VER 2.48 7.23 0.00 0.14 cnd:pre:3s; +asperges asperge NOM f p 1.74 8.65 1.03 2.77 +aspergez asperger VER 2.48 7.23 0.10 0.07 imp:pre:2p;ind:pre:2p; +aspergillose aspergillose NOM f s 0.02 0.00 0.02 0.00 +aspergillus aspergillus NOM m 0.07 0.00 0.07 0.00 +aspergèrent asperger VER 2.48 7.23 0.00 0.20 ind:pas:3p; +aspergé asperger VER m s 2.48 7.23 0.61 1.08 par:pas; +aspergée asperger VER f s 2.48 7.23 0.11 0.41 par:pas; +aspergées asperger VER f p 2.48 7.23 0.01 0.14 par:pas; +aspergés asperger VER m p 2.48 7.23 0.06 0.07 par:pas; +aspersion aspersion NOM f s 0.06 0.68 0.06 0.47 +aspersions aspersion NOM f p 0.06 0.68 0.00 0.20 +asphalte asphalte NOM m s 1.40 6.89 1.40 6.89 +asphalter asphalter VER 0.12 0.47 0.01 0.00 inf; +asphalté asphalter VER m s 0.12 0.47 0.01 0.14 par:pas; +asphaltée asphalter VER f s 0.12 0.47 0.10 0.14 par:pas; +asphaltées asphalter VER f p 0.12 0.47 0.00 0.07 par:pas; +asphaltés asphalter VER m p 0.12 0.47 0.00 0.07 par:pas; +asphodèle asphodèle NOM m s 0.03 0.61 0.02 0.14 +asphodèles asphodèle NOM m p 0.03 0.61 0.01 0.47 +asphyxia asphyxier VER 1.52 2.91 0.00 0.14 ind:pas:3s; +asphyxiaient asphyxier VER 1.52 2.91 0.01 0.07 ind:imp:3p; +asphyxiait asphyxier VER 1.52 2.91 0.00 0.27 ind:imp:3s; +asphyxiant asphyxiant ADJ m s 0.03 1.08 0.03 0.47 +asphyxiante asphyxiant ADJ f s 0.03 1.08 0.00 0.34 +asphyxiants asphyxiant ADJ m p 0.03 1.08 0.00 0.27 +asphyxie asphyxie NOM f s 1.19 1.35 1.19 1.35 +asphyxient asphyxier VER 1.52 2.91 0.17 0.14 ind:pre:3p; +asphyxier asphyxier VER 1.52 2.91 0.39 0.27 inf; +asphyxiera asphyxier VER 1.52 2.91 0.00 0.07 ind:fut:3s; +asphyxié asphyxier VER m s 1.52 2.91 0.67 0.68 par:pas; +asphyxiée asphyxier VER f s 1.52 2.91 0.03 0.27 par:pas; +asphyxiées asphyxié ADJ f p 0.10 1.08 0.04 0.14 +asphyxiés asphyxier VER m p 1.52 2.91 0.10 0.47 par:pas; +aspi aspi NOM s 0.14 0.07 0.14 0.00 +aspic aspic NOM m s 0.54 1.08 0.52 0.88 +aspics aspic NOM m p 0.54 1.08 0.02 0.20 +aspidistra aspidistra NOM m s 0.01 0.41 0.01 0.07 +aspidistras aspidistra NOM m p 0.01 0.41 0.00 0.34 +aspira aspirer VER 12.07 28.85 0.03 3.04 ind:pas:3s; +aspirai aspirer VER 12.07 28.85 0.00 0.27 ind:pas:1s; +aspiraient aspirer VER 12.07 28.85 0.02 0.88 ind:imp:3p; +aspirais aspirer VER 12.07 28.85 0.32 1.49 ind:imp:1s; +aspirait aspirer VER 12.07 28.85 0.25 5.27 ind:imp:3s; +aspirant aspirant NOM m s 1.35 1.82 1.11 0.95 +aspirante aspirant ADJ f s 1.13 1.15 0.36 0.07 +aspirantes aspirant ADJ f p 1.13 1.15 0.02 0.07 +aspirants aspirant NOM m p 1.35 1.82 0.23 0.88 +aspirateur aspirateur NOM m s 4.52 3.31 4.33 3.04 +aspirateurs_traîneaux aspirateurs_traîneaux NOM m p 0.00 0.07 0.00 0.07 +aspirateurs aspirateur NOM m p 4.52 3.31 0.19 0.27 +aspiration aspiration NOM f s 3.99 6.22 2.49 2.97 +aspirations aspiration NOM f p 3.99 6.22 1.50 3.24 +aspire aspirer VER 12.07 28.85 4.24 5.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +aspirent aspirer VER 12.07 28.85 0.67 1.08 ind:pre:3p; +aspirer aspirer VER 12.07 28.85 2.36 3.92 inf; +aspirera aspirer VER 12.07 28.85 0.08 0.07 ind:fut:3s; +aspireraient aspirer VER 12.07 28.85 0.01 0.07 cnd:pre:3p; +aspirerait aspirer VER 12.07 28.85 0.02 0.07 cnd:pre:3s; +aspires aspirer VER 12.07 28.85 0.54 0.07 ind:pre:2s; +aspirez aspirer VER 12.07 28.85 0.47 0.41 imp:pre:2p;ind:pre:2p; +aspiriez aspirer VER 12.07 28.85 0.03 0.07 ind:imp:2p; +aspirine aspirine NOM f s 9.18 4.93 8.55 4.53 +aspirines aspirine NOM f p 9.18 4.93 0.62 0.41 +aspirions aspirer VER 12.07 28.85 0.02 0.07 ind:imp:1p; +aspirons aspirer VER 12.07 28.85 0.16 0.14 imp:pre:1p;ind:pre:1p; +aspirât aspirer VER 12.07 28.85 0.00 0.07 sub:imp:3s; +aspiré aspirer VER m s 12.07 28.85 2.00 2.70 par:pas; +aspirée aspirer VER f s 12.07 28.85 0.32 1.15 par:pas; +aspirées aspirer VER f p 12.07 28.85 0.07 0.14 par:pas; +aspirés aspirer VER m p 12.07 28.85 0.15 0.41 par:pas; +aspis aspi NOM p 0.14 0.07 0.00 0.07 +aspre aspre NOM f s 0.00 0.07 0.00 0.07 +aspécifique aspécifique ADJ s 0.01 0.00 0.01 0.00 +aspérité aspérité NOM f s 0.06 2.77 0.00 0.74 +aspérités aspérité NOM f p 0.06 2.77 0.06 2.03 +assîmes asseoir VER 322.71 395.27 0.00 0.88 ind:pas:1p; +assît asseoir VER 322.71 395.27 0.00 0.41 sub:imp:3s; +assa_foetida assa_foetida NOM f s 0.27 0.00 0.27 0.00 +assagi assagir VER m s 0.42 0.95 0.14 0.27 par:pas; +assagie assagir VER f s 0.42 0.95 0.03 0.07 par:pas; +assagir assagir VER 0.42 0.95 0.15 0.41 inf; +assagirai assagir VER 0.42 0.95 0.01 0.00 ind:fut:1s; +assagis assagir VER 0.42 0.95 0.01 0.00 ind:pre:1s; +assagissant assagir VER 0.42 0.95 0.01 0.00 par:pre; +assagisse assagir VER 0.42 0.95 0.03 0.00 sub:pre:3s; +assagit assagir VER 0.42 0.95 0.04 0.20 ind:pre:3s;ind:pas:3s; +assaillaient assaillir VER 2.84 10.54 0.19 1.08 ind:imp:3p; +assaillait assaillir VER 2.84 10.54 0.00 0.74 ind:imp:3s; +assaillant assaillant NOM m s 0.87 3.72 0.60 0.88 +assaillante assaillant ADJ f s 0.01 0.20 0.01 0.00 +assaillants assaillant NOM m p 0.87 3.72 0.27 2.84 +assaille assaillir VER 2.84 10.54 0.41 0.81 ind:pre:1s;ind:pre:3s; +assaillent assaillir VER 2.84 10.54 0.55 1.22 ind:pre:3p; +assailles assaillir VER 2.84 10.54 0.01 0.00 ind:pre:2s; +assailli assaillir VER m s 2.84 10.54 0.81 2.64 par:pas; +assaillie assaillir VER f s 2.84 10.54 0.35 0.41 par:pas; +assaillies assaillir VER f p 2.84 10.54 0.00 0.20 par:pas; +assaillir assaillir VER 2.84 10.54 0.42 1.69 inf; +assaillira assaillir VER 2.84 10.54 0.00 0.07 ind:fut:3s; +assaillirent assaillir VER 2.84 10.54 0.02 0.41 ind:pas:3p; +assaillis assaillir VER m p 2.84 10.54 0.08 0.47 ind:pas:1s;par:pas; +assaillit assaillir VER 2.84 10.54 0.00 0.61 ind:pas:3s; +assaillons assaillir VER 2.84 10.54 0.01 0.00 imp:pre:1p; +assaini assainir VER m s 0.54 1.01 0.18 0.14 par:pas; +assainie assainir VER f s 0.54 1.01 0.03 0.00 par:pas; +assainir assainir VER 0.54 1.01 0.33 0.68 inf; +assainirait assainir VER 0.54 1.01 0.00 0.07 cnd:pre:3s; +assainis assainir VER m p 0.54 1.01 0.00 0.14 ind:pre:1s;par:pas; +assainissement assainissement NOM m s 0.26 0.34 0.26 0.34 +assaisonna assaisonner VER 0.36 2.36 0.00 0.14 ind:pas:3s; +assaisonnait assaisonner VER 0.36 2.36 0.01 0.27 ind:imp:3s; +assaisonne assaisonner VER 0.36 2.36 0.01 0.14 imp:pre:2s;ind:pre:3s; +assaisonnement assaisonnement NOM m s 0.52 0.41 0.50 0.34 +assaisonnements assaisonnement NOM m p 0.52 0.41 0.02 0.07 +assaisonner assaisonner VER 0.36 2.36 0.09 0.61 inf; +assaisonnerait assaisonner VER 0.36 2.36 0.00 0.14 cnd:pre:3s; +assaisonnèrent assaisonner VER 0.36 2.36 0.00 0.07 ind:pas:3p; +assaisonné assaisonner VER m s 0.36 2.36 0.18 0.54 par:pas; +assaisonnée assaisonner VER f s 0.36 2.36 0.06 0.14 par:pas; +assaisonnées assaisonner VER f p 0.36 2.36 0.01 0.07 par:pas; +assaisonnés assaisonner VER m p 0.36 2.36 0.00 0.27 par:pas; +assassin assassin NOM m s 55.37 20.34 43.17 14.39 +assassina assassiner VER 30.87 15.27 0.27 0.41 ind:pas:3s; +assassinai assassiner VER 30.87 15.27 0.00 0.07 ind:pas:1s; +assassinaient assassiner VER 30.87 15.27 0.04 0.14 ind:imp:3p; +assassinais assassiner VER 30.87 15.27 0.01 0.00 ind:imp:2s; +assassinait assassiner VER 30.87 15.27 0.09 0.47 ind:imp:3s; +assassinant assassiner VER 30.87 15.27 0.17 0.27 par:pre; +assassinat assassinat NOM m s 8.38 12.16 7.26 9.73 +assassinats assassinat NOM m p 8.38 12.16 1.13 2.43 +assassine assassiner VER 30.87 15.27 1.32 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assassinent assassiner VER 30.87 15.27 0.36 0.20 ind:pre:3p; +assassiner assassiner VER 30.87 15.27 6.16 4.39 imp:pre:2p;inf; +assassinera assassiner VER 30.87 15.27 0.07 0.00 ind:fut:3s; +assassinerai assassiner VER 30.87 15.27 0.01 0.00 ind:fut:1s; +assassinerais assassiner VER 30.87 15.27 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +assassinerez assassiner VER 30.87 15.27 0.01 0.00 ind:fut:2p; +assassines assassiner VER 30.87 15.27 0.31 0.14 ind:pre:2s; +assassinez assassiner VER 30.87 15.27 0.10 0.00 imp:pre:2p;ind:pre:2p; +assassinons assassiner VER 30.87 15.27 0.01 0.00 imp:pre:1p; +assassins assassin NOM m p 55.37 20.34 12.20 5.95 +assassiné assassiner VER m s 30.87 15.27 15.08 5.14 par:pas; +assassinée assassiner VER f s 30.87 15.27 4.88 1.08 par:pas; +assassinées assassiner VER f p 30.87 15.27 0.47 0.14 par:pas; +assassinés assassiner VER m p 30.87 15.27 1.50 1.28 par:pas; +assaut assaut NOM m s 12.12 32.16 11.23 27.36 +assauts assaut NOM m p 12.12 32.16 0.90 4.80 +assavoir assavoir VER 0.00 0.14 0.00 0.14 inf; +asse asse NOM f s 0.66 0.14 0.66 0.14 +asseau asseau NOM m s 0.03 0.00 0.03 0.00 +assembla assembler VER 3.86 7.03 0.00 0.20 ind:pas:3s; +assemblage assemblage NOM m s 1.01 5.88 0.99 4.86 +assemblages assemblage NOM m p 1.01 5.88 0.02 1.01 +assemblaient assembler VER 3.86 7.03 0.02 0.74 ind:imp:3p; +assemblait assembler VER 3.86 7.03 0.02 0.47 ind:imp:3s; +assemblant assembler VER 3.86 7.03 0.04 0.07 par:pre; +assemble assembler VER 3.86 7.03 0.68 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assemblent assembler VER 3.86 7.03 0.61 0.54 ind:pre:3p; +assembler assembler VER 3.86 7.03 1.13 1.55 inf; +assemblera assembler VER 3.86 7.03 0.10 0.00 ind:fut:3s; +assemblerez assembler VER 3.86 7.03 0.01 0.00 ind:fut:2p; +assembleur assembleur NOM m s 0.12 0.14 0.01 0.07 +assembleurs assembleur NOM m p 0.12 0.14 0.11 0.07 +assemblez assembler VER 3.86 7.03 0.16 0.07 imp:pre:2p;ind:pre:2p; +assemblons assembler VER 3.86 7.03 0.16 0.07 imp:pre:1p;ind:pre:1p; +assemblé assembler VER m s 3.86 7.03 0.48 0.41 par:pas; +assemblée assemblée NOM f s 7.34 35.14 7.03 31.08 +assemblées assemblée NOM f p 7.34 35.14 0.30 4.05 +assemblés assembler VER m p 3.86 7.03 0.19 0.81 par:pas; +assena assener VER 0.11 5.47 0.00 0.74 ind:pas:3s; +assenai assener VER 0.11 5.47 0.00 0.14 ind:pas:1s; +assenaient assener VER 0.11 5.47 0.00 0.20 ind:imp:3p; +assenais assener VER 0.11 5.47 0.00 0.14 ind:imp:1s; +assenait assener VER 0.11 5.47 0.00 0.41 ind:imp:3s; +assenant assener VER 0.11 5.47 0.00 0.41 par:pre; +assener assener VER 0.11 5.47 0.03 0.74 inf; +assentiment assentiment NOM m s 0.17 3.45 0.17 3.38 +assentiments assentiment NOM m p 0.17 3.45 0.00 0.07 +assené assener VER m s 0.11 5.47 0.00 0.61 par:pas; +assenée assener VER f s 0.11 5.47 0.00 0.34 par:pas; +assenées assener VER f p 0.11 5.47 0.01 0.20 par:pas; +assenés assener VER m p 0.11 5.47 0.02 0.47 par:pas; +asseoir asseoir VER 322.71 395.27 65.10 66.08 inf; +assermenter assermenter VER 0.16 0.34 0.03 0.00 inf; +assermentez assermenter VER 0.16 0.34 0.02 0.00 imp:pre:2p;ind:pre:2p; +assermenté assermenté ADJ m s 0.37 0.27 0.32 0.07 +assermentée assermenter VER f s 0.16 0.34 0.02 0.07 par:pas; +assermentés assermenter VER m p 0.16 0.34 0.06 0.00 par:pas; +assertion assertion NOM f s 0.10 1.42 0.07 0.54 +assertions assertion NOM f p 0.10 1.42 0.04 0.88 +asservi asservir VER m s 1.33 2.36 0.42 0.41 par:pas; +asservie asservir VER f s 1.33 2.36 0.04 0.07 par:pas; +asservies asservir VER f p 1.33 2.36 0.11 0.14 par:pas; +asservir asservir VER 1.33 2.36 0.37 0.88 inf; +asservirai asservir VER 1.33 2.36 0.01 0.00 ind:fut:1s; +asservirait asservir VER 1.33 2.36 0.00 0.07 cnd:pre:3s; +asserviront asservir VER 1.33 2.36 0.01 0.07 ind:fut:3p; +asservis asservir VER m p 1.33 2.36 0.27 0.34 par:pas; +asservissaient asservir VER 1.33 2.36 0.00 0.07 ind:imp:3p; +asservissait asservir VER 1.33 2.36 0.00 0.20 ind:imp:3s; +asservissant asservir VER 1.33 2.36 0.02 0.07 par:pre; +asservissement asservissement NOM m s 0.11 1.15 0.11 1.08 +asservissements asservissement NOM m p 0.11 1.15 0.00 0.07 +asservissent asservir VER 1.33 2.36 0.05 0.00 ind:pre:3p; +asservit asservir VER 1.33 2.36 0.02 0.07 ind:pre:3s;ind:pas:3s; +assesseur assesseur NOM m s 0.73 1.28 0.59 0.54 +assesseurs assesseur NOM m p 0.73 1.28 0.14 0.74 +asseyaient asseoir VER 322.71 395.27 0.36 2.77 ind:imp:3p; +asseyais asseoir VER 322.71 395.27 1.25 2.23 ind:imp:1s;ind:imp:2s; +asseyait asseoir VER 322.71 395.27 2.21 11.62 ind:imp:3s; +asseyant asseoir VER 322.71 395.27 0.12 5.81 par:pre; +asseye asseoir VER 322.71 395.27 0.61 0.14 sub:pre:1s;sub:pre:3s; +asseyent asseoir VER 322.71 395.27 0.31 0.81 ind:pre:3p; +asseyes asseoir VER 322.71 395.27 0.21 0.00 sub:pre:2s; +asseyez asseoir VER 322.71 395.27 80.07 7.84 imp:pre:2p;ind:pre:2p; +asseyiez asseoir VER 322.71 395.27 0.04 0.00 ind:imp:2p; +asseyions asseoir VER 322.71 395.27 0.04 0.81 ind:imp:1p; +asseyons asseoir VER 322.71 395.27 4.64 1.69 imp:pre:1p;ind:pre:1p; +assez assez ADV 407.75 420.14 407.75 420.14 +assidûment assidûment ADV 0.09 1.96 0.09 1.96 +assidu assidu ADJ m s 0.68 2.91 0.50 1.01 +assidue assidu ADJ f s 0.68 2.91 0.12 0.95 +assidues assidu ADJ f p 0.68 2.91 0.03 0.14 +assiduité assiduité NOM f s 0.36 1.82 0.19 1.62 +assiduités assiduité NOM f p 0.36 1.82 0.17 0.20 +assidus assidu ADJ m p 0.68 2.91 0.02 0.81 +assied asseoir VER 322.71 395.27 4.74 9.26 ind:pre:3s; +assieds asseoir VER 322.71 395.27 79.85 9.12 imp:pre:2s;ind:pre:1s;ind:pre:2s; +assiette assiette NOM f s 21.24 56.62 14.88 36.28 +assiettes assiette NOM f p 21.24 56.62 6.36 20.34 +assiettée assiettée NOM f s 0.00 0.95 0.00 0.41 +assiettées assiettée NOM f p 0.00 0.95 0.00 0.54 +assigna assigner VER 4.25 4.93 0.01 0.27 ind:pas:3s; +assignai assigner VER 4.25 4.93 0.00 0.07 ind:pas:1s; +assignais assigner VER 4.25 4.93 0.00 0.07 ind:imp:1s; +assignait assigner VER 4.25 4.93 0.03 0.74 ind:imp:3s; +assignant assigner VER 4.25 4.93 0.01 0.14 par:pre; +assignation assignation NOM f s 1.68 0.47 1.43 0.20 +assignations assignation NOM f p 1.68 0.47 0.25 0.27 +assignats assignat NOM m p 0.15 0.07 0.15 0.07 +assigne assigner VER 4.25 4.93 0.39 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assignement assignement NOM m s 0.01 0.00 0.01 0.00 +assignent assigner VER 4.25 4.93 0.04 0.00 ind:pre:3p; +assigner assigner VER 4.25 4.93 0.68 0.74 inf; +assignera assigner VER 4.25 4.93 0.05 0.00 ind:fut:3s; +assignerai assigner VER 4.25 4.93 0.04 0.00 ind:fut:1s; +assignerait assigner VER 4.25 4.93 0.01 0.07 cnd:pre:3s; +assignerons assigner VER 4.25 4.93 0.05 0.00 ind:fut:1p; +assigneront assigner VER 4.25 4.93 0.03 0.07 ind:fut:3p; +assignes assigner VER 4.25 4.93 0.00 0.07 ind:pre:2s; +assigné assigner VER m s 4.25 4.93 1.88 1.08 par:pas; +assignée assigner VER f s 4.25 4.93 0.43 1.08 par:pas; +assignées assigner VER f p 4.25 4.93 0.09 0.27 par:pas; +assignés assigner VER m p 4.25 4.93 0.52 0.07 par:pas; +assimila assimiler VER 1.36 8.38 0.00 0.14 ind:pas:3s; +assimilable assimilable ADJ s 0.02 0.54 0.02 0.41 +assimilables assimilable ADJ p 0.02 0.54 0.00 0.14 +assimilaient assimiler VER 1.36 8.38 0.00 0.07 ind:imp:3p; +assimilais assimiler VER 1.36 8.38 0.01 0.20 ind:imp:1s; +assimilait assimiler VER 1.36 8.38 0.00 0.95 ind:imp:3s; +assimilant assimiler VER 1.36 8.38 0.00 0.41 par:pre; +assimilateurs assimilateur ADJ m p 0.00 0.07 0.00 0.07 +assimilation assimilation NOM f s 0.14 1.49 0.14 1.42 +assimilations assimilation NOM f p 0.14 1.49 0.00 0.07 +assimile assimiler VER 1.36 8.38 0.20 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assimilent assimiler VER 1.36 8.38 0.00 0.14 ind:pre:3p; +assimiler assimiler VER 1.36 8.38 0.70 3.04 inf; +assimilerait assimiler VER 1.36 8.38 0.00 0.07 cnd:pre:3s; +assimilez assimiler VER 1.36 8.38 0.04 0.14 imp:pre:2p;ind:pre:2p; +assimilèrent assimiler VER 1.36 8.38 0.01 0.20 ind:pas:3p; +assimilé assimiler VER m s 1.36 8.38 0.35 1.62 par:pas; +assimilée assimiler VER f s 1.36 8.38 0.03 0.34 par:pas; +assimilées assimiler VER f p 1.36 8.38 0.00 0.20 par:pas; +assimilés assimilé NOM m p 0.04 0.34 0.03 0.34 +assirent asseoir VER 322.71 395.27 0.04 6.76 ind:pas:3p; +assis asseoir VER m 322.71 395.27 52.34 150.07 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +assise asseoir VER f s 322.71 395.27 15.99 51.69 par:pas; +assises assise NOM f p 3.88 9.66 1.88 6.55 +assista assister VER 30.57 62.23 0.13 2.30 ind:pas:3s; +assistai assister VER 30.57 62.23 0.02 2.16 ind:pas:1s; +assistaient assister VER 30.57 62.23 0.36 1.49 ind:imp:3p; +assistais assister VER 30.57 62.23 0.30 2.57 ind:imp:1s;ind:imp:2s; +assistait assister VER 30.57 62.23 0.63 6.01 ind:imp:3s; +assistanat assistanat NOM m s 0.00 0.14 0.00 0.14 +assistance assistance NOM f s 10.23 20.00 10.20 19.93 +assistances assistance NOM f p 10.23 20.00 0.03 0.07 +assistant assistant NOM m s 31.93 16.22 15.70 5.14 +assistante assistant NOM f s 31.93 16.22 12.34 5.54 +assistantes assistant NOM f p 31.93 16.22 0.59 0.95 +assistants assistant NOM m p 31.93 16.22 3.30 4.59 +assistas assister VER 30.57 62.23 0.00 0.07 ind:pas:2s; +assiste assister VER 30.57 62.23 4.21 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assistent assister VER 30.57 62.23 0.41 0.95 ind:pre:3p; +assister assister VER 30.57 62.23 12.49 23.18 ind:pre:2p;inf; +assistera assister VER 30.57 62.23 0.85 0.07 ind:fut:3s; +assisterai assister VER 30.57 62.23 0.25 0.27 ind:fut:1s; +assisteraient assister VER 30.57 62.23 0.00 0.27 cnd:pre:3p; +assisterais assister VER 30.57 62.23 0.02 0.07 cnd:pre:1s; +assisterait assister VER 30.57 62.23 0.07 0.34 cnd:pre:3s; +assisteras assister VER 30.57 62.23 0.09 0.07 ind:fut:2s; +assisterez assister VER 30.57 62.23 0.41 0.14 ind:fut:2p; +assisteriez assister VER 30.57 62.23 0.02 0.00 cnd:pre:2p; +assisterons assister VER 30.57 62.23 0.30 0.27 ind:fut:1p; +assisteront assister VER 30.57 62.23 0.15 0.00 ind:fut:3p; +assistez assister VER 30.57 62.23 0.61 0.20 imp:pre:2p;ind:pre:2p; +assistiez assister VER 30.57 62.23 0.52 0.14 ind:imp:2p; +assistions assister VER 30.57 62.23 0.01 0.61 ind:imp:1p; +assistâmes assister VER 30.57 62.23 0.00 0.74 ind:pas:1p; +assistons assister VER 30.57 62.23 0.51 0.34 imp:pre:1p;ind:pre:1p; +assistât assister VER 30.57 62.23 0.00 0.14 sub:imp:3s; +assistèrent assister VER 30.57 62.23 0.05 0.54 ind:pas:3p; +assisté assister VER m s 30.57 62.23 6.91 12.64 par:pas; +assistée assisté ADJ f s 0.88 0.68 0.33 0.20 +assistées assisté ADJ f p 0.88 0.68 0.04 0.07 +assistés assisté NOM m p 0.39 0.47 0.20 0.20 +assit asseoir VER 322.71 395.27 0.82 48.72 ind:pas:3s; +assiège assiéger VER 1.36 5.81 0.15 0.34 ind:pre:3s; +assiègent assiéger VER 1.36 5.81 0.41 0.61 ind:pre:3p; +assiégea assiéger VER 1.36 5.81 0.00 0.07 ind:pas:3s; +assiégeaient assiéger VER 1.36 5.81 0.01 0.61 ind:imp:3p; +assiégeait assiéger VER 1.36 5.81 0.01 0.47 ind:imp:3s; +assiégeant assiéger VER 1.36 5.81 0.00 0.27 par:pre; +assiégeantes assiégeant ADJ f p 0.00 0.07 0.00 0.07 +assiégeants assiégeant NOM m p 0.04 0.95 0.04 0.74 +assiéger assiéger VER 1.36 5.81 0.09 0.88 inf; +assiégera assiéger VER 1.36 5.81 0.01 0.00 ind:fut:3s; +assiégeraient assiéger VER 1.36 5.81 0.00 0.07 cnd:pre:3p; +assiégé assiéger VER m s 1.36 5.81 0.23 0.47 par:pas; +assiégée assiéger VER f s 1.36 5.81 0.14 1.15 par:pas; +assiégées assiéger VER f p 1.36 5.81 0.02 0.27 par:pas; +assiégés assiéger VER m p 1.36 5.81 0.28 0.61 par:pas; +assiéra asseoir VER 322.71 395.27 0.31 0.07 ind:fut:3s; +assiérai asseoir VER 322.71 395.27 0.33 0.14 ind:fut:1s; +assiérais asseoir VER 322.71 395.27 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +assiérait asseoir VER 322.71 395.27 0.07 0.34 cnd:pre:3s; +assiéras asseoir VER 322.71 395.27 0.02 0.00 ind:fut:2s; +assiérions asseoir VER 322.71 395.27 0.00 0.07 cnd:pre:1p; +assiéront asseoir VER 322.71 395.27 0.19 0.00 ind:fut:3p; +associa associer VER 13.67 14.19 0.12 0.41 ind:pas:3s; +associai associer VER 13.67 14.19 0.00 0.14 ind:pas:1s; +associaient associer VER 13.67 14.19 0.02 0.27 ind:imp:3p; +associais associer VER 13.67 14.19 0.02 0.07 ind:imp:1s; +associait associer VER 13.67 14.19 0.11 1.08 ind:imp:3s; +associant associer VER 13.67 14.19 0.27 0.68 par:pre; +associassent associer VER 13.67 14.19 0.00 0.07 sub:imp:3p; +associatifs associatif ADJ m p 0.11 0.07 0.01 0.00 +association association NOM f s 12.02 10.61 10.49 8.65 +associations association NOM f p 12.02 10.61 1.53 1.96 +associative associatif ADJ f s 0.11 0.07 0.10 0.07 +associe associer VER 13.67 14.19 1.81 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +associent associer VER 13.67 14.19 0.42 0.41 ind:pre:3p; +associer associer VER 13.67 14.19 2.86 4.53 inf; +associera associer VER 13.67 14.19 0.06 0.00 ind:fut:3s; +associerai associer VER 13.67 14.19 0.31 0.07 ind:fut:1s; +associeraient associer VER 13.67 14.19 0.01 0.07 cnd:pre:3p; +associerais associer VER 13.67 14.19 0.04 0.07 cnd:pre:1s; +associerait associer VER 13.67 14.19 0.01 0.14 cnd:pre:3s; +associeront associer VER 13.67 14.19 0.00 0.07 ind:fut:3p; +associez associer VER 13.67 14.19 0.35 0.07 imp:pre:2p;ind:pre:2p; +associions associer VER 13.67 14.19 0.00 0.07 ind:imp:1p; +associons associer VER 13.67 14.19 0.19 0.00 imp:pre:1p;ind:pre:1p; +associât associer VER 13.67 14.19 0.00 0.14 sub:imp:3s; +associèrent associer VER 13.67 14.19 0.01 0.07 ind:pas:3p; +associé associé NOM m s 22.51 4.12 14.18 2.09 +associée associé NOM f s 22.51 4.12 1.72 0.14 +associées associer VER f p 13.67 14.19 0.38 0.27 par:pas; +associés associé NOM m p 22.51 4.12 6.46 1.89 +assoie asseoir VER 322.71 395.27 1.14 0.14 sub:pre:1s;sub:pre:3s; +assoient asseoir VER 322.71 395.27 0.96 0.88 ind:pre:3p; +assoies asseoir VER 322.71 395.27 0.26 0.07 sub:pre:2s; +assoiffent assoiffer VER 2.19 2.91 0.00 0.07 ind:pre:3p; +assoiffer assoiffer VER 2.19 2.91 0.02 0.00 inf; +assoiffez assoiffer VER 2.19 2.91 0.01 0.00 imp:pre:2p; +assoiffé assoiffer VER m s 2.19 2.91 0.81 1.08 par:pas; +assoiffée assoiffer VER f s 2.19 2.91 0.38 0.54 par:pas; +assoiffées assoiffer VER f p 2.19 2.91 0.09 0.27 par:pas; +assoiffés assoiffer VER m p 2.19 2.91 0.88 0.95 par:pas; +assoira asseoir VER 322.71 395.27 0.25 0.00 ind:fut:3s; +assoirai asseoir VER 322.71 395.27 0.15 0.27 ind:fut:1s; +assoiraient asseoir VER 322.71 395.27 0.00 0.07 cnd:pre:3p; +assoirais asseoir VER 322.71 395.27 0.14 0.00 cnd:pre:1s; +assoirait asseoir VER 322.71 395.27 0.01 0.14 cnd:pre:3s; +assoiras asseoir VER 322.71 395.27 0.14 0.00 ind:fut:2s; +assoiront asseoir VER 322.71 395.27 0.01 0.20 ind:fut:3p; +assois asseoir VER 322.71 395.27 4.94 2.64 imp:pre:2s;ind:pre:1s;ind:pre:2s; +assoit asseoir VER 322.71 395.27 3.31 6.42 ind:pre:3s; +assombrît assombrir VER 1.83 13.78 0.00 0.07 sub:imp:3s; +assombri assombrir VER m s 1.83 13.78 0.33 2.43 par:pas; +assombrie assombrir VER f s 1.83 13.78 0.16 1.08 par:pas; +assombries assombrir VER f p 1.83 13.78 0.01 0.61 par:pas; +assombrir assombrir VER 1.83 13.78 0.34 1.62 inf; +assombrira assombrir VER 1.83 13.78 0.04 0.07 ind:fut:3s; +assombrirent assombrir VER 1.83 13.78 0.00 0.20 ind:pas:3p; +assombris assombrir VER m p 1.83 13.78 0.03 0.81 ind:pre:2s;par:pas; +assombrissaient assombrir VER 1.83 13.78 0.01 0.27 ind:imp:3p; +assombrissait assombrir VER 1.83 13.78 0.03 2.43 ind:imp:3s; +assombrissant assombrir VER 1.83 13.78 0.00 0.34 par:pre; +assombrissement assombrissement NOM m s 0.00 0.14 0.00 0.14 +assombrissent assombrir VER 1.83 13.78 0.19 0.20 ind:pre:3p; +assombrit assombrir VER 1.83 13.78 0.69 3.65 ind:pre:3s;ind:pas:3s; +assomma assommer VER 13.09 17.23 0.00 0.68 ind:pas:3s; +assommaient assommer VER 13.09 17.23 0.00 0.34 ind:imp:3p; +assommait assommer VER 13.09 17.23 0.14 1.35 ind:imp:3s; +assommant assommant ADJ m s 1.50 3.04 1.06 1.15 +assommante assommant ADJ f s 1.50 3.04 0.26 0.47 +assommantes assommant ADJ f p 1.50 3.04 0.09 0.81 +assommants assommant ADJ m p 1.50 3.04 0.09 0.61 +assomme assommer VER 13.09 17.23 3.17 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assomment assommer VER 13.09 17.23 0.25 0.41 ind:pre:3p; +assommer assommer VER 13.09 17.23 3.45 3.51 inf; +assommera assommer VER 13.09 17.23 0.07 0.07 ind:fut:3s; +assommerai assommer VER 13.09 17.23 0.03 0.00 ind:fut:1s; +assommeraient assommer VER 13.09 17.23 0.10 0.07 cnd:pre:3p; +assommerais assommer VER 13.09 17.23 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +assommerait assommer VER 13.09 17.23 0.05 0.07 cnd:pre:3s; +assommeras assommer VER 13.09 17.23 0.05 0.00 ind:fut:2s; +assommes assommer VER 13.09 17.23 0.35 0.07 ind:pre:2s; +assommeur assommeur NOM m s 0.01 0.14 0.01 0.14 +assommez assommer VER 13.09 17.23 0.62 0.07 imp:pre:2p;ind:pre:2p; +assommiez assommer VER 13.09 17.23 0.02 0.07 ind:imp:2p; +assommoir assommoir NOM m s 0.02 0.68 0.02 0.54 +assommoirs assommoir NOM m p 0.02 0.68 0.00 0.14 +assommons assommer VER 13.09 17.23 0.12 0.27 imp:pre:1p; +assommât assommer VER 13.09 17.23 0.00 0.07 sub:imp:3s; +assommé assommer VER m s 13.09 17.23 3.54 4.80 par:pas; +assommée assommer VER f s 13.09 17.23 0.72 1.69 par:pas; +assommées assommer VER f p 13.09 17.23 0.01 0.14 par:pas; +assommés assommer VER m p 13.09 17.23 0.24 1.22 par:pas; +assomption assomption NOM f s 0.03 0.47 0.00 0.41 +assomptions assomption NOM f p 0.03 0.47 0.03 0.07 +assonance assonance NOM f s 0.01 0.27 0.00 0.07 +assonances assonance NOM f p 0.01 0.27 0.01 0.20 +assonants assonant ADJ m p 0.00 0.07 0.00 0.07 +assorti assorti ADJ m s 1.71 4.05 0.53 0.95 +assortie assortir VER f s 2.00 5.95 0.45 1.22 par:pas; +assorties assortir VER f p 2.00 5.95 0.42 0.95 par:pas; +assortiment assortiment NOM m s 1.12 2.23 1.09 2.16 +assortiments assortiment NOM m p 1.12 2.23 0.03 0.07 +assortir assortir VER 2.00 5.95 0.16 0.54 inf; +assortirai assortir VER 2.00 5.95 0.01 0.00 ind:fut:1s; +assortirais assortir VER 2.00 5.95 0.01 0.00 cnd:pre:1s; +assortis assorti ADJ m p 1.71 4.05 0.68 1.69 +assortissaient assortir VER 2.00 5.95 0.00 0.14 ind:imp:3p; +assortissais assortir VER 2.00 5.95 0.00 0.07 ind:imp:1s; +assortissait assortir VER 2.00 5.95 0.10 0.07 ind:imp:3s; +assortissant assortir VER 2.00 5.95 0.00 0.07 par:pre; +assortissent assortir VER 2.00 5.95 0.00 0.07 ind:pre:3p; +assortit assortir VER 2.00 5.95 0.00 0.27 ind:pre:3s;ind:pas:3s; +assoté assoter VER m s 0.00 0.14 0.00 0.07 par:pas; +assotés assoter VER m p 0.00 0.14 0.00 0.07 par:pas; +assoupi assoupir VER m s 2.18 11.01 0.88 2.36 par:pas; +assoupie assoupir VER f s 2.18 11.01 0.25 1.22 par:pas; +assoupies assoupir VER f p 2.18 11.01 0.14 0.00 par:pas; +assoupir assoupir VER 2.18 11.01 0.40 3.24 inf; +assoupira assoupir VER 2.18 11.01 0.01 0.00 ind:fut:3s; +assoupirais assoupir VER 2.18 11.01 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +assoupis assoupir VER m p 2.18 11.01 0.34 1.01 ind:pre:1s;ind:pre:2s;par:pas; +assoupissaient assoupir VER 2.18 11.01 0.00 0.34 ind:imp:3p; +assoupissais assoupir VER 2.18 11.01 0.00 0.14 ind:imp:1s; +assoupissait assoupir VER 2.18 11.01 0.00 0.74 ind:imp:3s; +assoupissant assoupir VER 2.18 11.01 0.00 0.07 par:pre; +assoupisse assoupir VER 2.18 11.01 0.02 0.14 sub:pre:1s;sub:pre:3s; +assoupissement assoupissement NOM m s 0.10 1.01 0.10 1.01 +assoupissent assoupir VER 2.18 11.01 0.02 0.27 ind:pre:3p; +assoupit assoupir VER 2.18 11.01 0.03 1.42 ind:pre:3s;ind:pas:3s; +assoupli assouplir VER m s 0.51 2.23 0.02 0.20 par:pas; +assouplie assouplir VER f s 0.51 2.23 0.00 0.14 par:pas; +assouplies assouplir VER f p 0.51 2.23 0.00 0.07 par:pas; +assouplir assouplir VER 0.51 2.23 0.42 0.88 inf; +assouplira assouplir VER 0.51 2.23 0.02 0.00 ind:fut:3s; +assouplis assouplir VER m p 0.51 2.23 0.01 0.07 imp:pre:2s;par:pas; +assouplissaient assouplir VER 0.51 2.23 0.01 0.07 ind:imp:3p; +assouplissait assouplir VER 0.51 2.23 0.00 0.34 ind:imp:3s; +assouplissant assouplissant NOM m s 0.03 0.00 0.03 0.00 +assouplissement assouplissement NOM m s 0.09 0.54 0.04 0.54 +assouplissements assouplissement NOM m p 0.09 0.54 0.04 0.00 +assouplissent assouplir VER 0.51 2.23 0.00 0.14 ind:pre:3p; +assouplit assouplir VER 0.51 2.23 0.03 0.34 ind:pre:3s;ind:pas:3s; +assourdi assourdir VER m s 0.17 7.70 0.02 2.91 par:pas; +assourdie assourdir VER f s 0.17 7.70 0.02 0.88 par:pas; +assourdies assourdir VER f p 0.17 7.70 0.00 0.27 par:pas; +assourdir assourdir VER 0.17 7.70 0.01 0.34 inf; +assourdiraient assourdir VER 0.17 7.70 0.00 0.07 cnd:pre:3p; +assourdiras assourdir VER 0.17 7.70 0.00 0.07 ind:fut:2s; +assourdirent assourdir VER 0.17 7.70 0.00 0.07 ind:pas:3p; +assourdis assourdir VER m p 0.17 7.70 0.04 0.88 ind:pre:1s;ind:pre:2s;par:pas; +assourdissaient assourdir VER 0.17 7.70 0.00 0.27 ind:imp:3p; +assourdissait assourdir VER 0.17 7.70 0.01 0.41 ind:imp:3s; +assourdissant assourdissant ADJ m s 0.73 6.49 0.57 4.86 +assourdissante assourdissant ADJ f s 0.73 6.49 0.02 0.81 +assourdissantes assourdissant ADJ f p 0.73 6.49 0.01 0.41 +assourdissants assourdissant ADJ m p 0.73 6.49 0.12 0.41 +assourdissement assourdissement NOM m s 0.00 0.14 0.00 0.14 +assourdissent assourdir VER 0.17 7.70 0.01 0.34 ind:pre:3p; +assourdit assourdir VER 0.17 7.70 0.02 0.61 ind:pre:3s;ind:pas:3s; +assouvi assouvir VER m s 2.15 5.41 0.18 0.54 par:pas; +assouvie assouvir VER f s 2.15 5.41 0.28 0.54 par:pas; +assouvies assouvir VER f p 2.15 5.41 0.01 0.14 par:pas; +assouvir assouvir VER 2.15 5.41 0.96 2.57 inf; +assouvira assouvir VER 2.15 5.41 0.00 0.20 ind:fut:3s; +assouvirai assouvir VER 2.15 5.41 0.00 0.07 ind:fut:1s; +assouvirait assouvir VER 2.15 5.41 0.00 0.07 cnd:pre:3s; +assouviras assouvir VER 2.15 5.41 0.01 0.07 ind:fut:2s; +assouvirent assouvir VER 2.15 5.41 0.01 0.00 ind:pas:3p; +assouvis assouvir VER m p 2.15 5.41 0.27 0.34 ind:pre:1s;ind:pre:2s;par:pas; +assouvissaient assouvir VER 2.15 5.41 0.01 0.00 ind:imp:3p; +assouvissait assouvir VER 2.15 5.41 0.02 0.34 ind:imp:3s; +assouvissant assouvir VER 2.15 5.41 0.00 0.07 par:pre; +assouvisse assouvir VER 2.15 5.41 0.00 0.07 sub:pre:3s; +assouvissement assouvissement NOM m s 0.03 1.22 0.03 1.22 +assouvissent assouvir VER 2.15 5.41 0.38 0.07 ind:pre:3p; +assouvit assouvir VER 2.15 5.41 0.02 0.34 ind:pre:3s;ind:pas:3s; +assoyait asseoir VER 322.71 395.27 0.00 0.07 ind:imp:3s; +assoyez asseoir VER 322.71 395.27 0.87 0.00 imp:pre:2p;ind:pre:2p; +assoyons asseoir VER 322.71 395.27 0.00 0.07 ind:pre:1p; +assèche assécher VER 2.48 3.58 0.48 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assèchement assèchement NOM m s 0.23 0.47 0.23 0.47 +assèchent assécher VER 2.48 3.58 0.29 0.00 ind:pre:3p; +assène assener VER 0.11 5.47 0.03 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +assènent assener VER 0.11 5.47 0.00 0.20 ind:pre:3p; +assènerai assener VER 0.11 5.47 0.01 0.00 ind:fut:1s; +assécha assécher VER 2.48 3.58 0.00 0.14 ind:pas:3s; +asséchaient assécher VER 2.48 3.58 0.01 0.07 ind:imp:3p; +asséchais assécher VER 2.48 3.58 0.01 0.07 ind:imp:1s; +asséchait assécher VER 2.48 3.58 0.02 0.41 ind:imp:3s; +asséchant assécher VER 2.48 3.58 0.01 0.14 par:pre; +assécher assécher VER 2.48 3.58 0.84 0.81 inf; +assécherait assécher VER 2.48 3.58 0.00 0.07 cnd:pre:3s; +asséchez assécher VER 2.48 3.58 0.02 0.00 imp:pre:2p;ind:pre:2p; +asséchons assécher VER 2.48 3.58 0.14 0.00 imp:pre:1p; +asséché assécher VER m s 2.48 3.58 0.43 0.61 par:pas; +asséchée assécher VER f s 2.48 3.58 0.11 0.47 par:pas; +asséchées assécher VER f p 2.48 3.58 0.01 0.14 par:pas; +asséchés assécher VER m p 2.48 3.58 0.11 0.14 par:pas; +assujetti assujettir VER m s 0.15 3.24 0.04 0.81 par:pas; +assujettie assujettir VER f s 0.15 3.24 0.03 0.20 par:pas; +assujetties assujettir VER f p 0.15 3.24 0.01 0.20 par:pas; +assujettir assujettir VER 0.15 3.24 0.04 1.01 inf; +assujettiraient assujettir VER 0.15 3.24 0.00 0.07 cnd:pre:3p; +assujettis assujetti ADJ m p 0.05 0.27 0.03 0.14 +assujettissaient assujettir VER 0.15 3.24 0.00 0.07 ind:imp:3p; +assujettissait assujettir VER 0.15 3.24 0.00 0.07 ind:imp:3s; +assujettissant assujettissant ADJ m s 0.01 0.00 0.01 0.00 +assujettisse assujettir VER 0.15 3.24 0.01 0.00 sub:pre:3s; +assujettissement assujettissement NOM m s 0.03 0.34 0.03 0.34 +assujettissent assujettir VER 0.15 3.24 0.00 0.07 ind:pre:3p; +assujettit assujettir VER 0.15 3.24 0.00 0.47 ind:pre:3s;ind:pas:3s; +assuma assumer VER 12.83 14.80 0.03 0.27 ind:pas:3s; +assumai assumer VER 12.83 14.80 0.00 0.07 ind:pas:1s; +assumaient assumer VER 12.83 14.80 0.00 0.27 ind:imp:3p; +assumais assumer VER 12.83 14.80 0.04 0.07 ind:imp:1s; +assumait assumer VER 12.83 14.80 0.17 1.96 ind:imp:3s; +assumant assumer VER 12.83 14.80 0.11 0.41 par:pre; +assume assumer VER 12.83 14.80 4.17 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assument assumer VER 12.83 14.80 0.33 0.47 ind:pre:3p; +assumer assumer VER 12.83 14.80 5.70 6.35 inf; +assumera assumer VER 12.83 14.80 0.20 0.00 ind:fut:3s; +assumerai assumer VER 12.83 14.80 0.36 0.07 ind:fut:1s; +assumeraient assumer VER 12.83 14.80 0.00 0.07 cnd:pre:3p; +assumerais assumer VER 12.83 14.80 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +assumerait assumer VER 12.83 14.80 0.04 0.20 cnd:pre:3s; +assumeras assumer VER 12.83 14.80 0.14 0.00 ind:fut:2s; +assumerez assumer VER 12.83 14.80 0.09 0.07 ind:fut:2p; +assumerions assumer VER 12.83 14.80 0.01 0.00 cnd:pre:1p; +assumerons assumer VER 12.83 14.80 0.00 0.07 ind:fut:1p; +assumez assumer VER 12.83 14.80 0.38 0.14 imp:pre:2p;ind:pre:2p; +assumions assumer VER 12.83 14.80 0.01 0.00 ind:imp:1p; +assumons assumer VER 12.83 14.80 0.48 0.27 imp:pre:1p;ind:pre:1p; +assumât assumer VER 12.83 14.80 0.00 0.07 sub:imp:3s; +assumèrent assumer VER 12.83 14.80 0.00 0.07 ind:pas:3p; +assumé assumer VER m s 12.83 14.80 0.53 1.42 par:pas; +assumée assumer VER f s 12.83 14.80 0.01 0.47 par:pas; +assumées assumer VER f p 12.83 14.80 0.00 0.20 par:pas; +assumés assumer VER m p 12.83 14.80 0.02 0.07 par:pas; +asséna asséner VER 0.14 0.47 0.01 0.07 ind:pas:3s; +assénait asséner VER 0.14 0.47 0.01 0.07 ind:imp:3s; +asséner asséner VER 0.14 0.47 0.06 0.14 inf; +asséné asséner VER m s 0.14 0.47 0.05 0.14 par:pas; +assénées asséner VER f p 0.14 0.47 0.00 0.07 par:pas; +assura assurer VER 107.63 126.55 0.22 11.62 ind:pas:3s; +assurable assurable ADJ m s 0.01 0.00 0.01 0.00 +assurage assurage NOM m s 0.02 0.00 0.02 0.00 +assurai assurer VER 107.63 126.55 0.01 1.42 ind:pas:1s; +assuraient assurer VER 107.63 126.55 0.11 3.38 ind:imp:3p; +assurais assurer VER 107.63 126.55 0.59 0.54 ind:imp:1s;ind:imp:2s; +assurait assurer VER 107.63 126.55 0.85 11.49 ind:imp:3s; +assurance_accidents assurance_accidents NOM f s 0.10 0.00 0.10 0.00 +assurance_chômage assurance_chômage NOM f s 0.01 0.00 0.01 0.00 +assurance_maladie assurance_maladie NOM f s 0.04 0.07 0.04 0.07 +assurance_vie assurance_vie NOM f s 1.32 0.27 1.26 0.27 +assurance assurance NOM f s 29.80 33.24 24.30 25.14 +assurance_vie assurance_vie NOM f p 1.32 0.27 0.06 0.00 +assurances assurance NOM f p 29.80 33.24 5.50 8.11 +assurant assurer VER 107.63 126.55 0.43 5.27 par:pre; +assurassent assurer VER 107.63 126.55 0.00 0.07 sub:imp:3p; +assure assurer VER 107.63 126.55 43.77 27.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +assurent assurer VER 107.63 126.55 1.89 2.43 ind:pre:3p; +assurer assurer VER 107.63 126.55 34.84 38.85 inf; +assurera assurer VER 107.63 126.55 0.79 1.15 ind:fut:3s; +assurerai assurer VER 107.63 126.55 1.69 0.00 ind:fut:1s; +assureraient assurer VER 107.63 126.55 0.03 0.54 cnd:pre:3p; +assurerais assurer VER 107.63 126.55 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +assurerait assurer VER 107.63 126.55 0.11 1.08 cnd:pre:3s; +assureras assurer VER 107.63 126.55 0.09 0.07 ind:fut:2s; +assurerez assurer VER 107.63 126.55 0.14 0.07 ind:fut:2p; +assurerons assurer VER 107.63 126.55 0.24 0.00 ind:fut:1p; +assureront assurer VER 107.63 126.55 0.21 0.20 ind:fut:3p; +assures assurer VER 107.63 126.55 2.57 0.34 ind:pre:2s;sub:pre:2s; +assureur_conseil assureur_conseil NOM m s 0.00 0.07 0.00 0.07 +assureur assureur NOM m s 1.93 0.41 1.48 0.20 +assureurs assureur NOM m p 1.93 0.41 0.45 0.20 +assurez assurer VER 107.63 126.55 6.16 0.54 imp:pre:2p;ind:pre:2p; +assuriez assurer VER 107.63 126.55 0.10 0.07 ind:imp:2p; +assurions assurer VER 107.63 126.55 0.03 0.14 ind:imp:1p; +assurons assurer VER 107.63 126.55 0.80 0.07 imp:pre:1p;ind:pre:1p; +assurât assurer VER 107.63 126.55 0.00 0.41 sub:imp:3s; +assurèrent assurer VER 107.63 126.55 0.00 0.68 ind:pas:3p; +assuré assurer VER m s 107.63 126.55 8.40 12.91 par:pas; +assurée assurer VER f s 107.63 126.55 1.94 3.51 par:pas; +assurées assurer VER f p 107.63 126.55 0.14 1.01 par:pas; +assurément assurément ADV 3.19 10.41 3.19 10.41 +assurés assurer VER m p 107.63 126.55 1.35 1.55 par:pas; +assuétude assuétude NOM f s 0.01 0.00 0.01 0.00 +assyrien assyrien ADJ m s 0.01 0.27 0.01 0.00 +assyrienne assyrien ADJ f s 0.01 0.27 0.00 0.14 +assyriennes assyrien ADJ f p 0.01 0.27 0.00 0.07 +assyriens assyrien NOM m p 0.04 0.14 0.03 0.14 +assyro assyro ADV 0.00 0.20 0.00 0.20 +astarté astarté NOM f s 0.01 0.07 0.01 0.07 +aste aste NOM f s 0.02 0.00 0.02 0.00 +aster aster NOM m s 0.42 0.47 0.42 0.00 +asters aster NOM m p 0.42 0.47 0.00 0.47 +asthmatique asthmatique ADJ s 1.37 1.22 1.20 1.15 +asthmatiques asthmatique ADJ p 1.37 1.22 0.18 0.07 +asthme asthme NOM m s 3.14 3.18 3.13 3.11 +asthmes asthme NOM m p 3.14 3.18 0.01 0.07 +asthénie asthénie NOM f s 0.02 0.47 0.02 0.07 +asthénies asthénie NOM f p 0.02 0.47 0.00 0.41 +asti asti NOM m s 0.01 0.20 0.01 0.20 +astic astic NOM m s 0.00 0.07 0.00 0.07 +asticot asticot NOM m s 2.18 2.23 0.95 0.88 +asticota asticoter VER 0.58 1.89 0.00 0.07 ind:pas:3s; +asticotages asticotage NOM m p 0.00 0.07 0.00 0.07 +asticotaient asticoter VER 0.58 1.89 0.01 0.07 ind:imp:3p; +asticotais asticoter VER 0.58 1.89 0.01 0.14 ind:imp:1s; +asticotait asticoter VER 0.58 1.89 0.01 0.20 ind:imp:3s; +asticotant asticoter VER 0.58 1.89 0.00 0.07 par:pre; +asticote asticoter VER 0.58 1.89 0.11 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +asticotent asticoter VER 0.58 1.89 0.04 0.00 ind:pre:3p; +asticoter asticoter VER 0.58 1.89 0.24 0.74 inf;; +asticotez asticoter VER 0.58 1.89 0.03 0.00 imp:pre:2p; +asticots asticot NOM m p 2.18 2.23 1.23 1.35 +asticoté asticoter VER m s 0.58 1.89 0.13 0.34 par:pas; +asticotés asticoter VER m p 0.58 1.89 0.00 0.07 par:pas; +astigmate astigmate ADJ m s 0.06 0.00 0.06 0.00 +astigmatisme astigmatisme NOM m s 0.00 0.07 0.00 0.07 +astiqua astiquer VER 2.98 9.80 0.00 0.20 ind:pas:3s; +astiquage astiquage NOM m s 0.01 0.47 0.01 0.47 +astiquaient astiquer VER 2.98 9.80 0.01 0.07 ind:imp:3p; +astiquais astiquer VER 2.98 9.80 0.06 0.00 ind:imp:1s; +astiquait astiquer VER 2.98 9.80 0.03 1.15 ind:imp:3s; +astiquant astiquer VER 2.98 9.80 0.00 0.41 par:pre; +astique astiquer VER 2.98 9.80 1.04 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +astiquent astiquer VER 2.98 9.80 0.01 0.27 ind:pre:3p; +astiquer astiquer VER 2.98 9.80 0.90 2.23 inf; +astiquera astiquer VER 2.98 9.80 0.12 0.00 ind:fut:3s; +astiquerai astiquer VER 2.98 9.80 0.02 0.07 ind:fut:1s; +astiquerons astiquer VER 2.98 9.80 0.00 0.07 ind:fut:1p; +astiqueur astiqueur NOM m s 0.01 0.00 0.01 0.00 +astiquez astiquer VER 2.98 9.80 0.12 0.07 imp:pre:2p;ind:pre:2p; +astiqué astiquer VER m s 2.98 9.80 0.48 1.49 par:pas; +astiquée astiquer VER f s 2.98 9.80 0.02 1.01 par:pas; +astiquées astiquer VER f p 2.98 9.80 0.16 0.47 par:pas; +astiqués astiquer VER m p 2.98 9.80 0.01 1.35 par:pas; +astragale astragale NOM m s 0.00 0.47 0.00 0.34 +astragales astragale NOM m p 0.00 0.47 0.00 0.14 +astrakan astrakan NOM m s 0.14 1.69 0.14 1.69 +astral astral ADJ m s 2.02 1.69 0.78 1.15 +astrale astral ADJ f s 2.02 1.69 0.66 0.41 +astrales astral ADJ f p 2.02 1.69 0.55 0.14 +astraux astral ADJ m p 2.02 1.69 0.04 0.00 +astre astre NOM m s 3.13 12.30 1.89 4.32 +astreignais astreindre VER 0.09 3.78 0.00 0.20 ind:imp:1s; +astreignait astreindre VER 0.09 3.78 0.01 1.01 ind:imp:3s; +astreignant astreignant ADJ m s 0.11 0.34 0.09 0.20 +astreignante astreignant ADJ f s 0.11 0.34 0.01 0.00 +astreignantes astreignant ADJ f p 0.11 0.34 0.01 0.14 +astreigne astreindre VER 0.09 3.78 0.00 0.07 sub:pre:3s; +astreignions astreindre VER 0.09 3.78 0.00 0.07 ind:imp:1p; +astreignis astreindre VER 0.09 3.78 0.00 0.07 ind:pas:1s; +astreignit astreindre VER 0.09 3.78 0.00 0.20 ind:pas:3s; +astreindre astreindre VER 0.09 3.78 0.02 0.68 inf; +astreins astreindre VER 0.09 3.78 0.00 0.14 ind:pre:1s; +astreint astreindre VER m s 0.09 3.78 0.04 0.81 ind:pre:3s;par:pas; +astreinte astreinte NOM f s 0.03 0.07 0.02 0.07 +astreintes astreinte NOM f p 0.03 0.07 0.01 0.00 +astreints astreindre VER m p 0.09 3.78 0.01 0.27 par:pas; +astres astre NOM m p 3.13 12.30 1.24 7.97 +astringent astringent ADJ m s 0.17 0.47 0.16 0.00 +astringente astringent ADJ f s 0.17 0.47 0.01 0.20 +astringentes astringent ADJ f p 0.17 0.47 0.00 0.27 +astro astro ADV 0.14 0.00 0.14 0.00 +astrochimie astrochimie NOM f s 0.04 0.00 0.04 0.00 +astrolabe astrolabe NOM m s 0.01 0.14 0.01 0.07 +astrolabes astrolabe NOM m p 0.01 0.14 0.00 0.07 +astrologie astrologie NOM f s 0.87 0.54 0.87 0.54 +astrologique astrologique ADJ s 0.48 0.61 0.44 0.14 +astrologiquement astrologiquement ADV 0.01 0.00 0.01 0.00 +astrologiques astrologique ADJ p 0.48 0.61 0.04 0.47 +astrologue astrologue NOM s 0.79 1.08 0.39 0.47 +astrologues astrologue NOM p 0.79 1.08 0.40 0.61 +astrolâtres astrolâtre NOM p 0.00 0.07 0.00 0.07 +astrométrie astrométrie NOM f s 0.01 0.00 0.01 0.00 +astronaute astronaute NOM s 6.45 0.41 3.71 0.14 +astronautes astronaute NOM p 6.45 0.41 2.73 0.27 +astronautique astronautique NOM f s 0.05 0.07 0.05 0.07 +astronef astronef NOM m s 0.27 0.00 0.27 0.00 +astronome astronome NOM s 0.50 1.42 0.30 0.54 +astronomes astronome NOM p 0.50 1.42 0.19 0.88 +astronomie astronomie NOM f s 0.91 1.01 0.91 1.01 +astronomique astronomique ADJ s 1.11 1.89 0.92 0.95 +astronomiquement astronomiquement ADV 0.02 0.00 0.02 0.00 +astronomiques astronomique ADJ p 1.11 1.89 0.19 0.95 +astrophore astrophore NOM m s 0.00 0.14 0.00 0.14 +astrophysicien astrophysicien NOM m s 0.14 0.00 0.12 0.00 +astrophysicienne astrophysicien NOM f s 0.14 0.00 0.01 0.00 +astrophysiciens astrophysicien NOM m p 0.14 0.00 0.01 0.00 +astrophysique astrophysique NOM f s 0.28 0.00 0.28 0.00 +astroport astroport NOM m s 0.06 0.00 0.06 0.00 +astroscope astroscope NOM m s 0.01 0.00 0.01 0.00 +astuce astuce NOM f s 3.36 5.07 2.74 3.58 +astuces astuce NOM f p 3.36 5.07 0.62 1.49 +astucieuse astucieux ADJ f s 3.75 2.36 0.18 0.81 +astucieusement astucieusement ADV 0.05 0.41 0.05 0.41 +astucieuses astucieux ADJ f p 3.75 2.36 0.04 0.27 +astucieux astucieux ADJ m 3.75 2.36 3.52 1.28 +asturienne asturienne NOM f s 0.00 0.07 0.00 0.07 +astérisme astérisme NOM m s 0.14 0.00 0.14 0.00 +astérisque astérisque NOM m s 0.04 0.34 0.04 0.27 +astérisques astérisque NOM m p 0.04 0.34 0.00 0.07 +astéroïde astéroïde NOM m s 2.28 0.07 1.52 0.00 +astéroïdes astéroïde NOM m p 2.28 0.07 0.76 0.07 +asymptomatique asymptomatique ADJ m s 0.09 0.20 0.05 0.00 +asymptomatiques asymptomatique ADJ m p 0.09 0.20 0.04 0.20 +asymétrie asymétrie NOM f s 0.49 0.34 0.49 0.34 +asymétrique asymétrique ADJ s 0.35 1.08 0.26 0.47 +asymétriquement asymétriquement ADV 0.00 0.20 0.00 0.20 +asymétriques asymétrique ADJ p 0.35 1.08 0.09 0.61 +asynchrone asynchrone ADJ s 0.01 0.00 0.01 0.00 +asystolie asystolie NOM f s 0.27 0.00 0.27 0.00 +atabeg atabeg NOM m s 0.00 0.20 0.00 0.07 +atabegs atabeg NOM m p 0.00 0.20 0.00 0.14 +ataman ataman NOM m s 0.10 0.14 0.10 0.07 +atamans ataman NOM m p 0.10 0.14 0.00 0.07 +ataraxie ataraxie NOM f s 0.02 0.07 0.02 0.07 +atavique atavique ADJ s 0.24 1.28 0.23 1.15 +ataviques atavique ADJ p 0.24 1.28 0.01 0.14 +atavisme atavisme NOM m s 0.03 1.22 0.03 1.08 +atavismes atavisme NOM m p 0.03 1.22 0.00 0.14 +ataxie ataxie NOM f s 0.01 0.00 0.01 0.00 +atchoum atchoum ONO 0.14 0.27 0.14 0.27 +atelier atelier NOM m s 16.95 45.07 15.21 35.88 +ateliers atelier NOM m p 16.95 45.07 1.73 9.19 +atellanes atellane NOM f p 0.00 0.07 0.00 0.07 +atermoiement atermoiement NOM m s 0.28 1.08 0.00 0.14 +atermoiements atermoiement NOM m p 0.28 1.08 0.28 0.95 +atermoyé atermoyer VER m s 0.00 0.07 0.00 0.07 par:pas; +athanor athanor NOM m s 0.00 0.68 0.00 0.68 +aède aède NOM m s 0.11 0.27 0.10 0.20 +aèdes aède NOM m p 0.11 0.27 0.01 0.07 +athlète athlète NOM s 4.75 4.32 3.09 3.11 +athlètes athlète NOM p 4.75 4.32 1.66 1.22 +athlétique athlétique ADJ s 0.74 2.57 0.65 2.16 +athlétiques athlétique ADJ p 0.74 2.57 0.09 0.41 +athlétisme athlétisme NOM m s 0.56 0.47 0.56 0.47 +aère aérer VER 2.65 4.12 0.32 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +athée athée NOM s 1.77 2.70 1.50 1.69 +athées athée NOM p 1.77 2.70 0.27 1.01 +athéisme athéisme NOM m s 0.29 1.76 0.29 1.76 +athéiste athéiste ADJ f s 0.01 0.00 0.01 0.00 +athénien athénien ADJ m s 0.33 0.88 0.20 0.14 +athénienne athénien ADJ f s 0.33 0.88 0.13 0.34 +athéniennes athénienne NOM f p 0.10 0.41 0.10 0.07 +athéniens athénien NOM m p 0.08 1.08 0.08 0.74 +athénée athénée NOM m s 0.01 0.00 0.01 0.00 +atlante atlante NOM m s 0.28 0.41 0.05 0.27 +atlantes atlante NOM m p 0.28 0.41 0.23 0.14 +atlantique atlantique ADJ s 0.39 1.89 0.23 1.62 +atlantiques atlantique ADJ p 0.39 1.89 0.16 0.27 +atlas atlas NOM m 0.93 2.16 0.93 2.16 +atmosphère atmosphère NOM f s 13.85 36.69 13.45 36.15 +atmosphères atmosphère NOM f p 13.85 36.69 0.40 0.54 +atmosphérique atmosphérique ADJ s 1.89 1.42 1.14 0.95 +atmosphériques atmosphérique ADJ p 1.89 1.42 0.76 0.47 +atoll atoll NOM m s 0.15 0.61 0.12 0.54 +atolls atoll NOM m p 0.15 0.61 0.03 0.07 +atome atome NOM m s 2.85 4.12 1.30 1.82 +atomes atome NOM m p 2.85 4.12 1.55 2.30 +atomique atomique ADJ s 6.33 8.31 5.30 6.22 +atomiques atomique ADJ p 6.33 8.31 1.02 2.09 +atomisait atomiser VER 0.33 0.20 0.00 0.07 ind:imp:3s; +atomise atomiser VER 0.33 0.20 0.04 0.14 ind:pre:1s;ind:pre:3s; +atomisent atomiser VER 0.33 0.20 0.01 0.00 ind:pre:3p; +atomiser atomiser VER 0.33 0.20 0.17 0.00 inf; +atomiseur atomiseur NOM m s 0.11 0.00 0.11 0.00 +atomisez atomiser VER 0.33 0.20 0.02 0.00 imp:pre:2p; +atomiste atomiste NOM s 0.01 0.14 0.01 0.07 +atomistes atomiste ADJ p 0.01 0.20 0.01 0.14 +atomisé atomiser VER m s 0.33 0.20 0.06 0.00 par:pas; +atomisée atomiser VER f s 0.33 0.20 0.03 0.00 par:pas; +atomisés atomiser VER m p 0.33 0.20 0.01 0.00 par:pas; +atonal atonal ADJ m s 0.03 0.20 0.01 0.07 +atonale atonal ADJ f s 0.03 0.20 0.01 0.07 +atonales atonal ADJ f p 0.03 0.20 0.00 0.07 +atone atone ADJ s 0.02 0.88 0.02 0.74 +atones atone ADJ m p 0.02 0.88 0.00 0.14 +atonie atonie NOM f s 0.01 0.54 0.01 0.54 +atour atour NOM m s 1.09 1.35 0.14 0.07 +atourné atourner VER m s 0.00 0.07 0.00 0.07 par:pas; +atours atour NOM m p 1.09 1.35 0.95 1.28 +atout atout NOM m s 5.74 4.53 3.66 2.84 +atouts atout NOM m p 5.74 4.53 2.08 1.69 +atrabilaire atrabilaire NOM s 0.01 0.00 0.01 0.00 +atrium atrium NOM m s 0.30 0.14 0.30 0.14 +atroce atroce ADJ s 10.94 17.43 8.41 13.24 +atrocement atrocement ADV 2.27 3.18 2.27 3.18 +atroces atroce ADJ p 10.94 17.43 2.53 4.19 +atrocité atrocité NOM f s 3.92 2.50 0.96 0.74 +atrocités atrocité NOM f p 3.92 2.50 2.96 1.76 +atrophiait atrophier VER 0.51 0.74 0.00 0.07 ind:imp:3s; +atrophie atrophie NOM f s 0.39 0.27 0.39 0.27 +atrophient atrophier VER 0.51 0.74 0.11 0.00 ind:pre:3p; +atrophier atrophier VER 0.51 0.74 0.05 0.07 inf; +atrophieraient atrophier VER 0.51 0.74 0.01 0.00 cnd:pre:3p; +atrophies atrophier VER 0.51 0.74 0.01 0.00 ind:pre:2s; +atrophié atrophié ADJ m s 0.21 1.22 0.04 0.61 +atrophiée atrophier VER f s 0.51 0.74 0.15 0.20 par:pas; +atrophiées atrophié ADJ f p 0.21 1.22 0.01 0.27 +atrophiés atrophier VER m p 0.51 0.74 0.08 0.14 par:pas; +atropine atropine NOM f s 0.86 0.07 0.86 0.07 +atrésie atrésie NOM f s 0.04 0.00 0.04 0.00 +attabla attabler VER 0.20 7.84 0.00 0.41 ind:pas:3s; +attablai attabler VER 0.20 7.84 0.00 0.07 ind:pas:1s; +attablaient attabler VER 0.20 7.84 0.00 0.27 ind:imp:3p; +attablais attabler VER 0.20 7.84 0.00 0.14 ind:imp:1s; +attablait attabler VER 0.20 7.84 0.00 0.20 ind:imp:3s; +attablant attabler VER 0.20 7.84 0.00 0.07 par:pre; +attable attabler VER 0.20 7.84 0.00 0.34 ind:pre:1s;ind:pre:3s; +attablent attabler VER 0.20 7.84 0.00 0.14 ind:pre:3p; +attabler attabler VER 0.20 7.84 0.02 0.54 inf; +attablions attabler VER 0.20 7.84 0.00 0.14 ind:imp:1p; +attablons attabler VER 0.20 7.84 0.00 0.07 imp:pre:1p; +attablèrent attabler VER 0.20 7.84 0.00 0.20 ind:pas:3p; +attablé attabler VER m s 0.20 7.84 0.02 1.96 par:pas; +attablée attabler VER f s 0.20 7.84 0.02 0.41 par:pas; +attablées attablé ADJ f p 0.13 1.08 0.01 0.07 +attablés attabler VER m p 0.20 7.84 0.13 2.57 par:pas; +attacha attacher VER 46.37 71.01 0.04 2.84 ind:pas:3s; +attachai attacher VER 46.37 71.01 0.02 0.47 ind:pas:1s; +attachaient attacher VER 46.37 71.01 0.23 2.09 ind:imp:3p; +attachais attacher VER 46.37 71.01 0.26 0.74 ind:imp:1s;ind:imp:2s; +attachait attacher VER 46.37 71.01 0.48 6.62 ind:imp:3s; +attachant attachant ADJ m s 1.22 2.03 0.69 1.35 +attachante attachant ADJ f s 1.22 2.03 0.50 0.47 +attachants attachant ADJ m p 1.22 2.03 0.04 0.20 +attache attacher VER 46.37 71.01 10.42 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attachement attachement NOM m s 3.33 10.95 2.87 9.59 +attachements attachement NOM m p 3.33 10.95 0.46 1.35 +attachent attacher VER 46.37 71.01 0.70 1.96 ind:pre:3p; +attacher attacher VER 46.37 71.01 9.86 11.69 inf;; +attachera attacher VER 46.37 71.01 0.42 0.00 ind:fut:3s; +attacherai attacher VER 46.37 71.01 0.29 0.20 ind:fut:1s; +attacherais attacher VER 46.37 71.01 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +attacherait attacher VER 46.37 71.01 0.19 0.41 cnd:pre:3s; +attacheras attacher VER 46.37 71.01 0.17 0.07 ind:fut:2s; +attacherez attacher VER 46.37 71.01 0.01 0.07 ind:fut:2p; +attacherions attacher VER 46.37 71.01 0.00 0.07 cnd:pre:1p; +attacheront attacher VER 46.37 71.01 0.02 0.14 ind:fut:3p; +attaches attache NOM f p 2.95 7.16 1.13 3.18 +attachez attacher VER 46.37 71.01 4.49 1.01 imp:pre:2p;ind:pre:2p; +attachiez attacher VER 46.37 71.01 0.10 0.14 ind:imp:2p;sub:pre:2p; +attachions attacher VER 46.37 71.01 0.01 0.27 ind:imp:1p; +attachons attacher VER 46.37 71.01 0.56 0.14 imp:pre:1p;ind:pre:1p; +attachât attacher VER 46.37 71.01 0.00 0.54 sub:imp:3s; +attachèrent attacher VER 46.37 71.01 0.10 0.54 ind:pas:3p; +attaché_case attaché_case NOM m s 0.01 0.54 0.00 0.54 +attaché attacher VER m s 46.37 71.01 8.76 13.85 par:pas; +attachée attacher VER f s 46.37 71.01 5.33 6.28 par:pas; +attachées attacher VER f p 46.37 71.01 0.61 1.89 par:pas; +attaché_case attaché_case NOM m p 0.01 0.54 0.01 0.00 +attachés attacher VER m p 46.37 71.01 1.83 6.96 par:pas; +attaqua attaquer VER 99.64 70.41 0.26 5.00 ind:pas:3s; +attaquable attaquable ADJ s 0.01 0.00 0.01 0.00 +attaquai attaquer VER 99.64 70.41 0.01 0.74 ind:pas:1s; +attaquaient attaquer VER 99.64 70.41 0.42 2.84 ind:imp:3p; +attaquais attaquer VER 99.64 70.41 0.12 0.47 ind:imp:1s;ind:imp:2s; +attaquait attaquer VER 99.64 70.41 1.88 6.01 ind:imp:3s; +attaquant attaquer VER 99.64 70.41 0.88 2.77 par:pre; +attaquante attaquant ADJ f s 0.25 0.14 0.06 0.07 +attaquants attaquant NOM m p 1.13 0.41 0.56 0.14 +attaque attaque NOM f s 59.92 37.03 52.39 29.93 +attaquent attaquer VER 99.64 70.41 6.82 4.26 ind:pre:3p;sub:pre:3p; +attaquer attaquer VER 99.64 70.41 25.91 17.70 inf;; +attaquera attaquer VER 99.64 70.41 2.25 0.34 ind:fut:3s; +attaquerai attaquer VER 99.64 70.41 0.44 0.41 ind:fut:1s; +attaqueraient attaquer VER 99.64 70.41 0.51 0.34 cnd:pre:3p; +attaquerais attaquer VER 99.64 70.41 0.30 0.14 cnd:pre:1s;cnd:pre:2s; +attaquerait attaquer VER 99.64 70.41 0.75 0.41 cnd:pre:3s; +attaqueras attaquer VER 99.64 70.41 0.05 0.07 ind:fut:2s; +attaquerez attaquer VER 99.64 70.41 0.29 0.07 ind:fut:2p; +attaqueriez attaquer VER 99.64 70.41 0.04 0.00 cnd:pre:2p; +attaquerions attaquer VER 99.64 70.41 0.02 0.00 cnd:pre:1p; +attaquerons attaquer VER 99.64 70.41 1.25 0.07 ind:fut:1p; +attaqueront attaquer VER 99.64 70.41 2.08 0.34 ind:fut:3p; +attaques attaque NOM f p 59.92 37.03 7.53 7.09 +attaqueur attaqueur NOM m s 0.01 0.00 0.01 0.00 +attaquez attaquer VER 99.64 70.41 3.48 0.41 imp:pre:2p;ind:pre:2p; +attaquiez attaquer VER 99.64 70.41 0.10 0.00 ind:imp:2p; +attaquâmes attaquer VER 99.64 70.41 0.00 0.07 ind:pas:1p; +attaquons attaquer VER 99.64 70.41 2.06 0.54 imp:pre:1p;ind:pre:1p; +attaquât attaquer VER 99.64 70.41 0.00 0.14 sub:imp:3s; +attaquèrent attaquer VER 99.64 70.41 0.14 1.08 ind:pas:3p; +attaqué attaquer VER m s 99.64 70.41 20.04 9.12 par:pas; +attaquée attaquer VER f s 99.64 70.41 5.80 2.43 par:pas; +attaquées attaquer VER f p 99.64 70.41 0.46 0.34 par:pas; +attaqués attaquer VER m p 99.64 70.41 5.34 2.84 par:pas; +attarda attarder VER 4.36 29.39 0.01 3.45 ind:pas:3s; +attardai attarder VER 4.36 29.39 0.00 0.54 ind:pas:1s; +attardaient attarder VER 4.36 29.39 0.01 1.82 ind:imp:3p; +attardais attarder VER 4.36 29.39 0.00 1.15 ind:imp:1s; +attardait attarder VER 4.36 29.39 0.13 3.65 ind:imp:3s; +attardant attarder VER 4.36 29.39 0.04 1.22 par:pre; +attarde attarder VER 4.36 29.39 0.84 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +attardement attardement NOM m s 0.00 0.07 0.00 0.07 +attardent attarder VER 4.36 29.39 0.05 1.15 ind:pre:3p; +attarder attarder VER 4.36 29.39 1.61 7.03 inf; +attardera attarder VER 4.36 29.39 0.02 0.07 ind:fut:3s; +attarderai attarder VER 4.36 29.39 0.02 0.00 ind:fut:1s; +attarderaient attarder VER 4.36 29.39 0.00 0.14 cnd:pre:3p; +attarderait attarder VER 4.36 29.39 0.02 0.07 cnd:pre:3s; +attarderont attarder VER 4.36 29.39 0.00 0.07 ind:fut:3p; +attardez attarder VER 4.36 29.39 0.20 0.20 imp:pre:2p;ind:pre:2p; +attardions attarder VER 4.36 29.39 0.01 0.20 ind:imp:1p; +attardâmes attarder VER 4.36 29.39 0.00 0.27 ind:pas:1p; +attardons attarder VER 4.36 29.39 0.09 0.20 imp:pre:1p;ind:pre:1p; +attardât attarder VER 4.36 29.39 0.00 0.20 sub:imp:3s; +attardèrent attarder VER 4.36 29.39 0.00 0.81 ind:pas:3p; +attardé attarder VER m s 4.36 29.39 0.84 1.49 par:pas; +attardée attarder VER f s 4.36 29.39 0.33 0.68 par:pas; +attardées attardé ADJ f p 1.06 3.11 0.02 0.27 +attardés attardé NOM m p 1.58 1.55 0.74 0.88 +atteignîmes atteindre VER 61.83 126.76 0.33 0.95 ind:pas:1p; +atteignît atteindre VER 61.83 126.76 0.00 0.47 sub:imp:3s; +atteignable atteignable ADJ s 0.01 0.00 0.01 0.00 +atteignaient atteindre VER 61.83 126.76 0.04 4.39 ind:imp:3p; +atteignais atteindre VER 61.83 126.76 0.22 0.74 ind:imp:1s;ind:imp:2s; +atteignait atteindre VER 61.83 126.76 0.50 9.59 ind:imp:3s; +atteignant atteindre VER 61.83 126.76 0.54 2.57 par:pre; +atteigne atteindre VER 61.83 126.76 1.82 1.28 sub:pre:1s;sub:pre:3s; +atteignent atteindre VER 61.83 126.76 1.54 2.16 ind:pre:3p; +atteignes atteindre VER 61.83 126.76 0.03 0.00 sub:pre:2s; +atteignez atteindre VER 61.83 126.76 0.28 0.07 imp:pre:2p;ind:pre:2p; +atteignions atteindre VER 61.83 126.76 0.06 0.34 ind:imp:1p; +atteignirent atteindre VER 61.83 126.76 0.24 2.70 ind:pas:3p; +atteignis atteindre VER 61.83 126.76 0.14 1.01 ind:pas:1s; +atteignissent atteindre VER 61.83 126.76 0.00 0.07 sub:imp:3p; +atteignit atteindre VER 61.83 126.76 0.39 10.34 ind:pas:3s; +atteignons atteindre VER 61.83 126.76 0.28 0.95 imp:pre:1p;ind:pre:1p; +atteindra atteindre VER 61.83 126.76 1.90 1.08 ind:fut:3s; +atteindrai atteindre VER 61.83 126.76 0.31 0.27 ind:fut:1s; +atteindraient atteindre VER 61.83 126.76 0.15 0.34 cnd:pre:3p; +atteindrais atteindre VER 61.83 126.76 0.05 0.41 cnd:pre:1s;cnd:pre:2s; +atteindrait atteindre VER 61.83 126.76 0.50 1.08 cnd:pre:3s; +atteindras atteindre VER 61.83 126.76 0.27 0.07 ind:fut:2s; +atteindre atteindre VER 61.83 126.76 24.42 40.47 inf; +atteindrez atteindre VER 61.83 126.76 0.41 0.20 ind:fut:2p; +atteindrons atteindre VER 61.83 126.76 0.60 0.14 ind:fut:1p; +atteindront atteindre VER 61.83 126.76 0.79 0.20 ind:fut:3p; +atteins atteindre VER 61.83 126.76 1.27 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +atteint atteindre VER m s 61.83 126.76 19.99 35.68 ind:pre:3s;par:pas; +atteinte atteindre VER f s 61.83 126.76 2.71 5.20 par:pas; +atteintes atteindre VER f p 61.83 126.76 0.36 1.01 par:pas; +atteints atteindre VER m p 61.83 126.76 1.71 2.03 par:pas; +attela atteler VER 2.12 8.58 0.02 0.41 ind:pas:3s; +attelage attelage NOM m s 1.52 5.61 1.43 4.05 +attelages attelage NOM m p 1.52 5.61 0.10 1.55 +attelai atteler VER 2.12 8.58 0.00 0.14 ind:pas:1s; +attelaient atteler VER 2.12 8.58 0.00 0.20 ind:imp:3p; +attelais atteler VER 2.12 8.58 0.10 0.14 ind:imp:1s; +attelait atteler VER 2.12 8.58 0.02 0.41 ind:imp:3s; +attelant atteler VER 2.12 8.58 0.00 0.07 par:pre; +atteler atteler VER 2.12 8.58 0.97 1.42 inf; +attelez atteler VER 2.12 8.58 0.09 0.00 imp:pre:2p;ind:pre:2p; +attelions atteler VER 2.12 8.58 0.00 0.07 ind:imp:1p; +attelle attelle NOM f s 0.83 0.68 0.73 0.47 +attellent atteler VER 2.12 8.58 0.01 0.07 ind:pre:3p; +attellera atteler VER 2.12 8.58 0.00 0.07 ind:fut:3s; +attellerais atteler VER 2.12 8.58 0.00 0.07 cnd:pre:1s; +attelles attelle NOM f p 0.83 0.68 0.10 0.20 +attelâmes atteler VER 2.12 8.58 0.00 0.07 ind:pas:1p; +attelons atteler VER 2.12 8.58 0.01 0.00 imp:pre:1p; +attelèrent atteler VER 2.12 8.58 0.01 0.20 ind:pas:3p; +attelé atteler VER m s 2.12 8.58 0.15 1.89 par:pas; +attelée atteler VER f s 2.12 8.58 0.03 1.01 par:pas; +attelées atteler VER f p 2.12 8.58 0.00 0.34 par:pas; +attelés atteler VER m p 2.12 8.58 0.09 1.35 par:pas; +attenant attenant ADJ m s 0.40 3.72 0.05 2.23 +attenante attenant ADJ f s 0.40 3.72 0.09 1.35 +attenantes attenant ADJ f p 0.40 3.72 0.26 0.14 +attend attendre VER 1351.44 706.69 173.86 74.46 ind:pre:3s; +attendîmes attendre VER 1351.44 706.69 0.03 0.61 ind:pas:1p; +attendît attendre VER 1351.44 706.69 0.00 0.47 sub:imp:3s; +attendaient attendre VER 1351.44 706.69 5.12 32.77 ind:imp:3p; +attendais attendre VER 1351.44 706.69 59.29 36.82 ind:imp:1s;ind:imp:2s; +attendait attendre VER 1351.44 706.69 25.02 127.09 ind:imp:3s; +attendant attendre VER 1351.44 706.69 40.34 75.47 par:pre; +attende attendre VER 1351.44 706.69 5.18 3.38 sub:pre:1s;sub:pre:3s; +attendent attendre VER 1351.44 706.69 36.95 21.82 ind:pre:3p; +attendes attendre VER 1351.44 706.69 0.69 0.27 sub:pre:2s; +attendez attendre VER 1351.44 706.69 230.66 19.86 imp:pre:2p;ind:pre:2p; +attendiez attendre VER 1351.44 706.69 7.13 0.95 ind:imp:2p;sub:pre:2p; +attendions attendre VER 1351.44 706.69 4.25 5.47 ind:imp:1p; +attendirent attendre VER 1351.44 706.69 0.05 2.97 ind:pas:3p; +attendis attendre VER 1351.44 706.69 0.67 4.86 ind:pas:1s; +attendisse attendre VER 1351.44 706.69 0.00 0.14 sub:imp:1s; +attendissent attendre VER 1351.44 706.69 0.00 0.07 sub:imp:3p; +attendit attendre VER 1351.44 706.69 0.49 28.65 ind:pas:3s; +attendons attendre VER 1351.44 706.69 21.35 6.28 imp:pre:1p;ind:pre:1p; +attendra attendre VER 1351.44 706.69 8.23 3.04 ind:fut:3s; +attendrai attendre VER 1351.44 706.69 18.83 5.20 ind:fut:1s; +attendraient attendre VER 1351.44 706.69 0.25 1.01 cnd:pre:3p; +attendrais attendre VER 1351.44 706.69 2.04 0.61 cnd:pre:1s;cnd:pre:2s; +attendrait attendre VER 1351.44 706.69 1.23 3.51 cnd:pre:3s; +attendras attendre VER 1351.44 706.69 2.28 1.42 ind:fut:2s; +attendre attendre VER 1351.44 706.69 177.43 143.45 inf;; +attendrez attendre VER 1351.44 706.69 1.22 0.68 ind:fut:2p; +attendri attendrir VER m s 2.96 20.95 0.14 5.00 par:pas; +attendrie attendrir VER f s 2.96 20.95 0.31 2.77 par:pas; +attendries attendrir VER f p 2.96 20.95 0.00 0.34 par:pas; +attendriez attendre VER 1351.44 706.69 0.10 0.00 cnd:pre:2p; +attendrions attendre VER 1351.44 706.69 0.03 0.20 cnd:pre:1p; +attendrir attendrir VER 2.96 20.95 1.23 5.07 inf; +attendrirait attendrir VER 2.96 20.95 0.01 0.07 cnd:pre:3s; +attendriras attendrir VER 2.96 20.95 0.01 0.00 ind:fut:2s; +attendrirent attendrir VER 2.96 20.95 0.10 0.27 ind:pas:3p; +attendris attendrir VER m p 2.96 20.95 0.23 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +attendrissaient attendrir VER 2.96 20.95 0.00 0.20 ind:imp:3p; +attendrissais attendrir VER 2.96 20.95 0.00 0.07 ind:imp:1s; +attendrissait attendrir VER 2.96 20.95 0.14 1.76 ind:imp:3s; +attendrissant attendrissant ADJ m s 0.42 3.99 0.37 2.03 +attendrissante attendrissant ADJ f s 0.42 3.99 0.02 0.95 +attendrissantes attendrissant ADJ f p 0.42 3.99 0.00 0.54 +attendrissants attendrissant ADJ m p 0.42 3.99 0.03 0.47 +attendrisse attendrir VER 2.96 20.95 0.01 0.14 sub:pre:1s;sub:pre:3s; +attendrissement attendrissement NOM m s 0.10 7.64 0.10 6.89 +attendrissements attendrissement NOM m p 0.10 7.64 0.00 0.74 +attendrissent attendrir VER 2.96 20.95 0.16 0.54 ind:pre:3p; +attendrisseur attendrisseur NOM m s 0.01 0.00 0.01 0.00 +attendrissons attendrir VER 2.96 20.95 0.00 0.07 ind:pre:1p; +attendrit attendrir VER 2.96 20.95 0.47 2.64 ind:pre:3s;ind:pas:3s; +attendrons attendre VER 1351.44 706.69 3.40 0.61 ind:fut:1p; +attendront attendre VER 1351.44 706.69 1.92 0.81 ind:fut:3p; +attends attendre VER 1351.44 706.69 478.32 62.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +attendu attendre VER m s 1351.44 706.69 38.45 34.66 par:pas; +attendue attendre VER f s 1351.44 706.69 4.69 4.39 par:pas; +attendues attendre VER f p 1351.44 706.69 0.58 0.20 par:pas; +attendus attendre VER m p 1351.44 706.69 1.39 1.89 par:pas; +attenta attenter VER 1.17 1.01 0.00 0.07 ind:pas:3s; +attentais attenter VER 1.17 1.01 0.00 0.07 ind:imp:1s; +attentait attenter VER 1.17 1.01 0.01 0.00 ind:imp:3s; +attentant attenter VER 1.17 1.01 0.02 0.00 par:pre; +attentat attentat NOM m s 14.58 8.72 11.42 5.34 +attentatoire attentatoire ADJ m s 0.00 0.14 0.00 0.07 +attentatoires attentatoire ADJ p 0.00 0.14 0.00 0.07 +attentats attentat NOM m p 14.58 8.72 3.16 3.38 +attente attente NOM f s 25.07 63.85 22.77 61.35 +attenter attenter VER 1.17 1.01 0.39 0.54 inf; +attenterai attenter VER 1.17 1.01 0.00 0.07 ind:fut:1s; +attenterait attenter VER 1.17 1.01 0.01 0.07 cnd:pre:3s; +attentes attente NOM f p 25.07 63.85 2.29 2.50 +attentez attenter VER 1.17 1.01 0.16 0.00 imp:pre:2p;ind:pre:2p; +attentiez attenter VER 1.17 1.01 0.14 0.00 ind:imp:2p; +attentif attentif ADJ m s 6.66 35.74 3.77 17.30 +attentifs attentif ADJ m p 6.66 35.74 1.49 6.22 +attention attention ONO 159.10 21.35 159.10 21.35 +attentionné attentionné ADJ m s 2.64 0.74 1.73 0.34 +attentionnée attentionné ADJ f s 2.64 0.74 0.41 0.27 +attentionnées attentionné ADJ f p 2.64 0.74 0.07 0.00 +attentionnés attentionné ADJ m p 2.64 0.74 0.44 0.14 +attentions attention NOM f p 158.52 124.53 1.63 4.86 +attentisme attentisme NOM m s 0.02 0.81 0.02 0.81 +attentiste attentiste ADJ s 0.02 0.00 0.02 0.00 +attentistes attentiste NOM p 0.00 0.07 0.00 0.07 +attentive attentif ADJ f s 6.66 35.74 1.25 11.15 +attentivement attentivement ADV 8.38 11.82 8.38 11.82 +attentives attentif ADJ f p 6.66 35.74 0.15 1.08 +attenté attenter VER m s 1.17 1.01 0.13 0.07 par:pas; +atterrîmes atterrir VER 26.73 9.39 0.01 0.14 ind:pas:1p; +atterrît atterrir VER 26.73 9.39 0.00 0.07 sub:imp:3s; +atterrages atterrage NOM m p 0.00 0.20 0.00 0.20 +atterraient atterrer VER 0.23 2.91 0.00 0.07 ind:imp:3p; +atterrait atterrer VER 0.23 2.91 0.00 0.07 ind:imp:3s; +atterrant atterrant ADJ m s 0.01 0.20 0.01 0.14 +atterrante atterrant ADJ f s 0.01 0.20 0.00 0.07 +atterre atterrer VER 0.23 2.91 0.02 0.07 ind:pre:1s;ind:pre:3s; +atterri atterrir VER m s 26.73 9.39 8.64 1.89 par:pas; +atterrir atterrir VER 26.73 9.39 10.84 3.04 inf;; +atterrira atterrir VER 26.73 9.39 0.48 0.00 ind:fut:3s; +atterrirai atterrir VER 26.73 9.39 0.06 0.00 ind:fut:1s; +atterrirais atterrir VER 26.73 9.39 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +atterriras atterrir VER 26.73 9.39 0.05 0.00 ind:fut:2s; +atterrirent atterrir VER 26.73 9.39 0.04 0.14 ind:pas:3p; +atterrirez atterrir VER 26.73 9.39 0.05 0.00 ind:fut:2p; +atterrirons atterrir VER 26.73 9.39 0.28 0.00 ind:fut:1p; +atterris atterrir VER m p 26.73 9.39 1.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +atterrissage atterrissage NOM m s 9.06 2.23 8.84 2.16 +atterrissages atterrissage NOM m p 9.06 2.23 0.22 0.07 +atterrissaient atterrir VER 26.73 9.39 0.04 0.34 ind:imp:3p; +atterrissais atterrir VER 26.73 9.39 0.01 0.14 ind:imp:1s; +atterrissait atterrir VER 26.73 9.39 0.08 0.14 ind:imp:3s; +atterrissant atterrir VER 26.73 9.39 0.14 0.14 par:pre; +atterrisse atterrir VER 26.73 9.39 0.40 0.07 sub:pre:1s;sub:pre:3s; +atterrissent atterrir VER 26.73 9.39 0.76 0.41 ind:pre:3p; +atterrisses atterrir VER 26.73 9.39 0.02 0.00 sub:pre:2s; +atterrissez atterrir VER 26.73 9.39 0.52 0.00 imp:pre:2p;ind:pre:2p; +atterrissons atterrir VER 26.73 9.39 0.08 0.00 imp:pre:1p;ind:pre:1p; +atterrit atterrir VER 26.73 9.39 2.96 1.96 ind:pre:3s;ind:pas:3s; +atterrèrent atterrer VER 0.23 2.91 0.00 0.14 ind:pas:3p; +atterré atterrer VER m s 0.23 2.91 0.05 1.62 par:pas; +atterrée atterrer VER f s 0.23 2.91 0.04 0.34 par:pas; +atterrées atterrer VER f p 0.23 2.91 0.00 0.07 par:pas; +atterrés atterrer VER m p 0.23 2.91 0.12 0.54 par:pas; +attesta attester VER 2.67 6.55 0.00 0.07 ind:pas:3s; +attestaient attester VER 2.67 6.55 0.00 0.47 ind:imp:3p; +attestait attester VER 2.67 6.55 0.01 1.15 ind:imp:3s; +attestant attester VER 2.67 6.55 0.14 1.15 par:pre; +attestation attestation NOM f s 1.00 0.20 0.95 0.14 +attestations attestation NOM f p 1.00 0.20 0.05 0.07 +atteste attester VER 2.67 6.55 0.98 1.22 ind:pre:1s;ind:pre:3s; +attestent attester VER 2.67 6.55 0.15 0.54 ind:pre:3p; +attester attester VER 2.67 6.55 0.87 1.08 inf; +attestera attester VER 2.67 6.55 0.05 0.00 ind:fut:3s; +attestons attester VER 2.67 6.55 0.01 0.07 imp:pre:1p;ind:pre:1p; +attestèrent attester VER 2.67 6.55 0.00 0.07 ind:pas:3p; +attesté attester VER m s 2.67 6.55 0.34 0.34 par:pas; +attestée attester VER f s 2.67 6.55 0.11 0.34 par:pas; +attestées attester VER f p 2.67 6.55 0.00 0.07 par:pas; +atèle atèle NOM m s 0.01 0.00 0.01 0.00 +attifa attifer VER 0.30 1.69 0.00 0.07 ind:pas:3s; +attifait attifer VER 0.30 1.69 0.00 0.07 ind:imp:3s; +attifant attifer VER 0.30 1.69 0.00 0.07 par:pre; +attife attifer VER 0.30 1.69 0.00 0.14 ind:pre:3s; +attifer attifer VER 0.30 1.69 0.01 0.20 inf; +attifiaux attifiaux NOM m p 0.00 0.07 0.00 0.07 +attifé attifer VER m s 0.30 1.69 0.25 0.27 par:pas; +attifée attifer VER f s 0.30 1.69 0.02 0.68 par:pas; +attifées attifer VER f p 0.30 1.69 0.00 0.07 par:pas; +attifés attifer VER m p 0.30 1.69 0.02 0.14 par:pas; +attige attiger VER 0.00 0.74 0.00 0.27 ind:pre:1s;ind:pre:3s; +attigeait attiger VER 0.00 0.74 0.00 0.07 ind:imp:3s; +attigent attiger VER 0.00 0.74 0.00 0.14 ind:pre:3p; +attiges attiger VER 0.00 0.74 0.00 0.07 ind:pre:2s; +attigés attiger VER m p 0.00 0.74 0.00 0.20 par:pas; +attique attique ADJ s 0.00 0.34 0.00 0.27 +attiques attique ADJ f p 0.00 0.34 0.00 0.07 +attira attirer VER 54.90 75.27 0.33 7.70 ind:pas:3s; +attirai attirer VER 54.90 75.27 0.00 0.34 ind:pas:1s; +attiraient attirer VER 54.90 75.27 0.43 2.91 ind:imp:3p; +attirail attirail NOM m s 1.52 3.99 1.52 3.99 +attirais attirer VER 54.90 75.27 0.26 0.34 ind:imp:1s;ind:imp:2s; +attirait attirer VER 54.90 75.27 2.03 10.41 ind:imp:3s; +attirance attirance NOM f s 2.39 2.91 2.38 2.77 +attirances attirance NOM f p 2.39 2.91 0.01 0.14 +attirant attirant ADJ m s 5.74 3.85 2.59 1.62 +attirante attirant ADJ f s 5.74 3.85 2.59 1.55 +attirantes attirant ADJ f p 5.74 3.85 0.28 0.54 +attirants attirant ADJ m p 5.74 3.85 0.28 0.14 +attire attirer VER 54.90 75.27 13.43 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attirent attirer VER 54.90 75.27 2.83 2.84 ind:pre:3p; +attirer attirer VER 54.90 75.27 17.08 17.43 inf; +attirera attirer VER 54.90 75.27 0.94 0.14 ind:fut:3s; +attirerai attirer VER 54.90 75.27 0.11 0.00 ind:fut:1s; +attireraient attirer VER 54.90 75.27 0.02 0.14 cnd:pre:3p; +attirerais attirer VER 54.90 75.27 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +attirerait attirer VER 54.90 75.27 0.56 0.61 cnd:pre:3s; +attirerez attirer VER 54.90 75.27 0.04 0.14 ind:fut:2p; +attireriez attirer VER 54.90 75.27 0.01 0.00 cnd:pre:2p; +attirerons attirer VER 54.90 75.27 0.04 0.00 ind:fut:1p; +attireront attirer VER 54.90 75.27 0.04 0.00 ind:fut:3p; +attires attirer VER 54.90 75.27 0.89 0.20 ind:pre:2s; +attirez attirer VER 54.90 75.27 0.82 0.07 imp:pre:2p;ind:pre:2p; +attiriez attirer VER 54.90 75.27 0.40 0.14 ind:imp:2p; +attirions attirer VER 54.90 75.27 0.02 0.07 ind:imp:1p; +attirons attirer VER 54.90 75.27 0.28 0.14 imp:pre:1p;ind:pre:1p; +attirât attirer VER 54.90 75.27 0.00 0.20 sub:imp:3s; +attirèrent attirer VER 54.90 75.27 0.13 0.81 ind:pas:3p; +attiré attirer VER m s 54.90 75.27 8.15 10.47 par:pas; +attirée attirer VER f s 54.90 75.27 2.78 3.85 par:pas; +attirées attirer VER f p 54.90 75.27 0.48 0.47 par:pas; +attirés attirer VER m p 54.90 75.27 2.09 2.57 par:pas; +attisa attiser VER 1.88 3.65 0.01 0.14 ind:pas:3s; +attisaient attiser VER 1.88 3.65 0.01 0.27 ind:imp:3p; +attisait attiser VER 1.88 3.65 0.14 0.54 ind:imp:3s; +attisant attiser VER 1.88 3.65 0.00 0.20 par:pre; +attise attiser VER 1.88 3.65 0.55 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attisement attisement NOM m s 0.00 0.07 0.00 0.07 +attisent attiser VER 1.88 3.65 0.23 0.07 ind:pre:3p; +attiser attiser VER 1.88 3.65 0.33 1.35 inf; +attisera attiser VER 1.88 3.65 0.00 0.07 ind:fut:3s; +attises attiser VER 1.88 3.65 0.02 0.00 ind:pre:2s; +attisez attiser VER 1.88 3.65 0.16 0.00 imp:pre:2p;ind:pre:2p; +attisoir attisoir NOM m s 0.00 0.07 0.00 0.07 +attisons attiser VER 1.88 3.65 0.01 0.00 imp:pre:1p; +attisé attiser VER m s 1.88 3.65 0.29 0.07 par:pas; +attisée attiser VER f s 1.88 3.65 0.12 0.20 par:pas; +attisées attiser VER f p 1.88 3.65 0.00 0.07 par:pas; +attisés attiser VER m p 1.88 3.65 0.00 0.07 par:pas; +attitré attitré ADJ m s 0.41 1.35 0.28 0.54 +attitrée attitrer VER f s 0.19 0.88 0.11 0.20 par:pas; +attitrées attitré ADJ f p 0.41 1.35 0.01 0.07 +attitrés attitré ADJ m p 0.41 1.35 0.03 0.34 +attitude attitude NOM f s 23.03 67.91 21.37 57.50 +attitudes attitude NOM f p 23.03 67.91 1.66 10.41 +attiédi attiédir VER m s 0.00 0.27 0.00 0.07 par:pas; +attiédie attiédir VER f s 0.00 0.27 0.00 0.07 par:pas; +attiédis attiédir VER m p 0.00 0.27 0.00 0.07 par:pas; +attiédissait attiédir VER 0.00 0.27 0.00 0.07 ind:imp:3s; +attorney attorney NOM m s 0.15 0.00 0.15 0.00 +attouchant attoucher VER 0.00 0.07 0.00 0.07 par:pre; +attouchement attouchement NOM m s 0.33 1.76 0.00 0.81 +attouchements attouchement NOM m p 0.33 1.76 0.33 0.95 +attracteur attracteur ADJ m s 0.11 0.00 0.09 0.00 +attracteurs attracteur ADJ m p 0.11 0.00 0.02 0.00 +attractif attractif ADJ m s 0.24 0.41 0.14 0.27 +attractifs attractif ADJ m p 0.24 0.41 0.01 0.00 +attraction_vedette attraction_vedette NOM f s 0.01 0.00 0.01 0.00 +attraction attraction NOM f s 7.45 7.64 4.96 5.74 +attractions attraction NOM f p 7.45 7.64 2.48 1.89 +attractive attractif ADJ f s 0.24 0.41 0.09 0.14 +attrait attrait NOM m s 1.76 9.39 1.18 6.96 +attraits attrait NOM m p 1.76 9.39 0.58 2.43 +attrapa attraper VER 112.52 55.34 0.16 5.74 ind:pas:3s; +attrapage attrapage NOM m s 0.01 0.00 0.01 0.00 +attrapai attraper VER 112.52 55.34 0.00 1.82 ind:pas:1s; +attrapaient attraper VER 112.52 55.34 0.30 0.68 ind:imp:3p; +attrapais attraper VER 112.52 55.34 0.50 0.41 ind:imp:1s;ind:imp:2s; +attrapait attraper VER 112.52 55.34 0.66 3.58 ind:imp:3s; +attrapant attraper VER 112.52 55.34 0.30 1.69 par:pre; +attrape_couillon attrape_couillon NOM m s 0.04 0.07 0.03 0.00 +attrape_couillon attrape_couillon NOM m p 0.04 0.07 0.01 0.07 +attrape_mouche attrape_mouche NOM m s 0.04 0.07 0.01 0.00 +attrape_mouche attrape_mouche NOM m p 0.04 0.07 0.03 0.07 +attrape_nigaud attrape_nigaud NOM m s 0.10 0.20 0.10 0.20 +attrape attraper VER 112.52 55.34 24.29 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +attrapent attraper VER 112.52 55.34 3.79 0.88 ind:pre:3p; +attraper attraper VER 112.52 55.34 35.32 17.09 inf; +attrapera attraper VER 112.52 55.34 1.04 0.27 ind:fut:3s; +attraperai attraper VER 112.52 55.34 1.10 0.14 ind:fut:1s; +attraperaient attraper VER 112.52 55.34 0.22 0.07 cnd:pre:3p; +attraperais attraper VER 112.52 55.34 0.32 0.07 cnd:pre:1s;cnd:pre:2s; +attraperait attraper VER 112.52 55.34 0.22 0.20 cnd:pre:3s; +attraperas attraper VER 112.52 55.34 1.00 0.14 ind:fut:2s; +attraperez attraper VER 112.52 55.34 0.47 0.00 ind:fut:2p; +attraperiez attraper VER 112.52 55.34 0.05 0.00 cnd:pre:2p; +attraperons attraper VER 112.52 55.34 0.22 0.00 ind:fut:1p; +attraperont attraper VER 112.52 55.34 0.88 0.20 ind:fut:3p; +attrapes attraper VER 112.52 55.34 2.14 0.34 ind:pre:2s;sub:pre:2s; +attrapeur attrapeur NOM m s 1.20 0.00 1.20 0.00 +attrapez attraper VER 112.52 55.34 14.91 0.14 imp:pre:2p;ind:pre:2p; +attrapiez attraper VER 112.52 55.34 0.26 0.00 ind:imp:2p; +attrapions attraper VER 112.52 55.34 0.08 0.14 ind:imp:1p; +attrapons attraper VER 112.52 55.34 1.22 0.00 imp:pre:1p;ind:pre:1p; +attrapèrent attraper VER 112.52 55.34 0.02 0.14 ind:pas:3p; +attrapé attraper VER m s 112.52 55.34 19.20 11.35 par:pas; +attrapée attraper VER f s 112.52 55.34 2.41 1.69 par:pas; +attrapées attraper VER f p 112.52 55.34 0.30 0.07 par:pas; +attrapés attraper VER m p 112.52 55.34 1.16 0.54 par:pas; +attrayant attrayant ADJ m s 1.39 1.22 0.89 0.61 +attrayante attrayant ADJ f s 1.39 1.22 0.32 0.41 +attrayantes attrayant ADJ f p 1.39 1.22 0.02 0.14 +attrayants attrayant ADJ m p 1.39 1.22 0.16 0.07 +attribua attribuer VER 7.56 21.89 0.16 1.28 ind:pas:3s; +attribuable attribuable ADJ m s 0.03 0.00 0.03 0.00 +attribuai attribuer VER 7.56 21.89 0.01 0.54 ind:pas:1s; +attribuaient attribuer VER 7.56 21.89 0.00 0.27 ind:imp:3p; +attribuais attribuer VER 7.56 21.89 0.02 0.54 ind:imp:1s; +attribuait attribuer VER 7.56 21.89 0.16 3.11 ind:imp:3s; +attribuant attribuer VER 7.56 21.89 0.13 1.08 par:pre; +attribue attribuer VER 7.56 21.89 1.78 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +attribuent attribuer VER 7.56 21.89 0.09 0.07 ind:pre:3p; +attribuer attribuer VER 7.56 21.89 1.49 5.68 inf; +attribuera attribuer VER 7.56 21.89 0.09 0.14 ind:fut:3s; +attribueraient attribuer VER 7.56 21.89 0.00 0.20 cnd:pre:3p; +attribuerais attribuer VER 7.56 21.89 0.01 0.20 cnd:pre:1s; +attribuerait attribuer VER 7.56 21.89 0.03 0.14 cnd:pre:3s; +attribueront attribuer VER 7.56 21.89 0.02 0.00 ind:fut:3p; +attribues attribuer VER 7.56 21.89 0.19 0.07 ind:pre:2s; +attribuez attribuer VER 7.56 21.89 0.17 0.00 ind:pre:2p; +attribuions attribuer VER 7.56 21.89 0.00 0.07 ind:imp:1p; +attribuâmes attribuer VER 7.56 21.89 0.00 0.07 ind:pas:1p; +attribuons attribuer VER 7.56 21.89 0.14 0.00 imp:pre:1p;ind:pre:1p; +attribuât attribuer VER 7.56 21.89 0.00 0.27 sub:imp:3s; +attribut attribut NOM m s 1.13 6.01 0.08 1.69 +attribuèrent attribuer VER 7.56 21.89 0.10 0.14 ind:pas:3p; +attribution attribution NOM f s 1.40 8.72 0.47 2.23 +attributions attribution NOM f p 1.40 8.72 0.93 6.49 +attributs attribut NOM m p 1.13 6.01 1.05 4.32 +attribué attribuer VER m s 7.56 21.89 1.95 2.97 par:pas; +attribuée attribuer VER f s 7.56 21.89 0.25 1.49 par:pas; +attribuées attribuer VER f p 7.56 21.89 0.14 0.54 par:pas; +attribués attribuer VER m p 7.56 21.89 0.60 0.81 par:pas; +attriquait attriquer VER 0.00 1.62 0.00 0.07 ind:imp:3s; +attriquant attriquer VER 0.00 1.62 0.00 0.07 par:pre; +attrique attriquer VER 0.00 1.62 0.00 0.20 ind:pre:1s;ind:pre:3s; +attriquent attriquer VER 0.00 1.62 0.00 0.07 ind:pre:3p; +attriquer attriquer VER 0.00 1.62 0.00 0.68 inf; +attriquerait attriquer VER 0.00 1.62 0.00 0.07 cnd:pre:3s; +attriqué attriquer VER m s 0.00 1.62 0.00 0.27 par:pas; +attriquée attriquer VER f s 0.00 1.62 0.00 0.20 par:pas; +attrista attrister VER 2.71 6.42 0.01 0.47 ind:pas:3s; +attristai attrister VER 2.71 6.42 0.00 0.20 ind:pas:1s; +attristaient attrister VER 2.71 6.42 0.00 0.27 ind:imp:3p; +attristais attrister VER 2.71 6.42 0.00 0.14 ind:imp:1s; +attristait attrister VER 2.71 6.42 0.01 1.15 ind:imp:3s; +attristant attristant ADJ m s 0.01 0.47 0.01 0.27 +attristante attristant ADJ f s 0.01 0.47 0.00 0.14 +attristantes attristant ADJ f p 0.01 0.47 0.00 0.07 +attriste attrister VER 2.71 6.42 1.54 1.01 ind:pre:1s;ind:pre:3s; +attristent attrister VER 2.71 6.42 0.00 0.47 ind:pre:3p; +attrister attrister VER 2.71 6.42 0.50 1.01 inf; +attristerait attrister VER 2.71 6.42 0.01 0.00 cnd:pre:3s; +attristez attrister VER 2.71 6.42 0.03 0.07 imp:pre:2p;ind:pre:2p; +attristât attrister VER 2.71 6.42 0.00 0.20 sub:imp:3s; +attristèrent attrister VER 2.71 6.42 0.01 0.20 ind:pas:3p; +attristé attrister VER m s 2.71 6.42 0.36 0.41 par:pas; +attristée attrister VER f s 2.71 6.42 0.09 0.14 par:pas; +attristés attrister VER m p 2.71 6.42 0.15 0.14 par:pas; +attrition attrition NOM f s 0.02 0.20 0.02 0.14 +attritions attrition NOM f p 0.02 0.20 0.00 0.07 +attroupa attrouper VER 0.14 2.36 0.00 0.07 ind:pas:3s; +attroupaient attrouper VER 0.14 2.36 0.14 0.34 ind:imp:3p; +attroupait attrouper VER 0.14 2.36 0.00 0.14 ind:imp:3s; +attroupement attroupement NOM m s 0.17 3.85 0.08 3.45 +attroupements attroupement NOM m p 0.17 3.85 0.08 0.41 +attroupent attrouper VER 0.14 2.36 0.00 0.27 ind:pre:3p; +attrouper attrouper VER 0.14 2.36 0.00 0.54 inf; +attrouperaient attrouper VER 0.14 2.36 0.00 0.07 cnd:pre:3p; +attroupèrent attrouper VER 0.14 2.36 0.00 0.14 ind:pas:3p; +attroupé attrouper VER m s 0.14 2.36 0.00 0.20 par:pas; +attroupée attrouper VER f s 0.14 2.36 0.00 0.07 par:pas; +attroupées attrouper VER f p 0.14 2.36 0.00 0.14 par:pas; +attroupés attrouper VER m p 0.14 2.36 0.01 0.41 par:pas; +atténua atténuer VER 2.47 12.64 0.00 0.54 ind:pas:3s; +atténuaient atténuer VER 2.47 12.64 0.00 0.68 ind:imp:3p; +atténuait atténuer VER 2.47 12.64 0.01 1.96 ind:imp:3s; +atténuant atténuer VER 2.47 12.64 0.00 0.41 par:pre; +atténuante atténuant ADJ f s 1.56 2.09 0.30 0.27 +atténuantes atténuant ADJ f p 1.56 2.09 1.27 1.82 +atténuateur atténuateur NOM m s 0.09 0.00 0.09 0.00 +atténuation atténuation NOM f s 0.01 0.07 0.01 0.00 +atténuations atténuation NOM f p 0.01 0.07 0.00 0.07 +atténue atténuer VER 2.47 12.64 0.56 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +atténuent atténuer VER 2.47 12.64 0.08 0.27 ind:pre:3p; +atténuer atténuer VER 2.47 12.64 1.30 4.46 inf; +atténuera atténuer VER 2.47 12.64 0.37 0.14 ind:fut:3s; +atténueraient atténuer VER 2.47 12.64 0.00 0.14 cnd:pre:3p; +atténuez atténuer VER 2.47 12.64 0.03 0.00 imp:pre:2p;ind:pre:2p; +atténuons atténuer VER 2.47 12.64 0.01 0.00 imp:pre:1p; +atténuât atténuer VER 2.47 12.64 0.00 0.20 sub:imp:3s; +atténuèrent atténuer VER 2.47 12.64 0.00 0.07 ind:pas:3p; +atténué atténuer VER m s 2.47 12.64 0.07 1.22 par:pas; +atténuée atténuer VER f s 2.47 12.64 0.01 0.88 par:pas; +atténuées atténuer VER f p 2.47 12.64 0.01 0.41 par:pas; +atténués atténuer VER m p 2.47 12.64 0.02 0.07 par:pas; +atélectasie atélectasie NOM f s 0.03 0.00 0.03 0.00 +atémi atémi NOM m s 0.01 0.00 0.01 0.00 +atypique atypique ADJ s 0.57 0.34 0.26 0.14 +atypiques atypique ADJ p 0.57 0.34 0.31 0.20 +au_dedans au_dedans ADV 0.92 4.86 0.92 4.86 +au_dehors au_dehors ADV 0.91 11.42 0.91 11.42 +au_delà au_delà ADV 21.77 52.91 21.77 52.91 +au_dessous au_dessous ADV 2.98 24.59 2.98 24.59 +au_dessus au_dessus PRE 0.02 0.07 0.02 0.07 +au_devant au_devant ADV 0.98 11.08 0.98 11.08 +au au ART:def m s 3737.75 5322.50 3737.75 5322.50 +aubade aubade NOM f s 0.01 0.47 0.01 0.47 +aubadent aubader VER 0.00 0.07 0.00 0.07 ind:pre:3p; +aubain aubain NOM m s 0.00 14.19 0.00 14.19 +aubaine aubaine NOM f s 1.08 5.81 1.04 5.27 +aubaines aubaine NOM f p 1.08 5.81 0.03 0.54 +aube aube PRE 0.10 0.00 0.10 0.00 +auberge auberge NOM f s 14.44 17.30 14.12 15.47 +auberges auberge NOM f p 14.44 17.30 0.32 1.82 +aubergine aubergine NOM f s 1.44 1.35 0.35 0.61 +aubergines aubergine NOM f p 1.44 1.35 1.09 0.74 +aubergiste aubergiste NOM s 1.93 3.24 1.91 2.91 +aubergistes aubergiste NOM p 1.93 3.24 0.02 0.34 +aubes aube NOM f p 30.32 57.77 0.27 1.96 +aubette aubette NOM f s 0.00 0.34 0.00 0.34 +aubier aubier NOM m s 0.00 0.47 0.00 0.47 +aubour aubour NOM m 0.00 0.07 0.00 0.07 +aubère aubère ADJ s 0.00 0.14 0.00 0.14 +aubères aubère NOM m p 0.00 0.20 0.00 0.14 +aubépine aubépine NOM f s 0.06 2.03 0.05 0.81 +aubépines aubépine NOM f p 0.06 2.03 0.01 1.22 +auburn auburn ADJ 0.23 1.15 0.23 1.15 +aubusson aubusson NOM s 0.00 0.07 0.00 0.07 +aucubas aucuba NOM m p 0.00 0.14 0.00 0.14 +aucun aucun ADJ:ind m s 175.78 180.95 175.78 180.95 +aucune aucune ADJ:ind f s 207.00 174.73 207.00 174.73 +aucunement aucunement ADV 1.01 5.81 1.01 5.81 +aucunes aucunes ADJ:ind f p 1.03 0.14 1.03 0.14 +aucuns aucuns ADJ:ind m p 1.22 3.11 1.22 3.11 +audace audace NOM f s 5.12 19.46 5.10 16.55 +audaces audace NOM f p 5.12 19.46 0.02 2.91 +audacieuse audacieux ADJ f s 4.76 7.03 1.46 1.76 +audacieusement audacieusement ADV 0.09 0.47 0.09 0.47 +audacieuses audacieux ADJ f p 4.76 7.03 0.25 0.81 +audacieux audacieux ADJ m 4.76 7.03 3.06 4.46 +audible audible ADJ s 0.29 2.70 0.22 2.23 +audibles audible ADJ p 0.29 2.70 0.08 0.47 +audience audience NOM f s 14.02 9.53 13.51 7.84 +audiences audience NOM f p 14.02 9.53 0.50 1.69 +audiencia audiencia NOM f s 0.00 0.07 0.00 0.07 +audienciers audiencier ADJ m p 0.00 0.07 0.00 0.07 +audimat audimat NOM m 1.39 0.00 1.37 0.00 +audimats audimat NOM m p 1.39 0.00 0.03 0.00 +audio_visuel audio_visuel ADJ m s 0.06 0.20 0.06 0.20 +audiovisuel audiovisuel ADJ f s 0.88 0.27 0.00 0.14 +audio audio ADJ 1.87 0.00 1.87 0.00 +audioconférence audioconférence NOM f s 0.03 0.00 0.03 0.00 +audiogramme audiogramme NOM m s 0.01 0.00 0.01 0.00 +audiométrie audiométrie NOM f s 0.01 0.00 0.01 0.00 +audiophile audiophile NOM s 0.03 0.00 0.03 0.00 +audiophone audiophone NOM m s 0.02 0.00 0.02 0.00 +audiovisuel audiovisuel NOM m s 0.16 0.14 0.16 0.14 +audiovisuelle audiovisuel ADJ f s 0.88 0.27 0.72 0.00 +audiovisuelles audiovisuel ADJ f p 0.88 0.27 0.00 0.07 +audit audit PRE 0.03 0.20 0.03 0.20 +auditer auditer VER 0.01 0.00 0.01 0.00 inf; +auditeur auditeur NOM m s 3.12 6.49 0.85 1.69 +auditeurs auditeur NOM m p 3.12 6.49 2.21 4.46 +auditif auditif ADJ m s 1.25 1.28 0.45 0.54 +auditifs auditif ADJ m p 1.25 1.28 0.08 0.20 +audition audition NOM f s 11.64 2.64 9.32 1.89 +auditionnais auditionner VER 2.57 0.27 0.10 0.00 ind:imp:1s;ind:imp:2s; +auditionne auditionner VER 2.57 0.27 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +auditionnent auditionner VER 2.57 0.27 0.10 0.00 ind:pre:3p; +auditionner auditionner VER 2.57 0.27 1.27 0.14 inf; +auditionnera auditionner VER 2.57 0.27 0.02 0.00 ind:fut:3s; +auditionnerais auditionner VER 2.57 0.27 0.02 0.00 cnd:pre:1s; +auditionnes auditionner VER 2.57 0.27 0.07 0.00 ind:pre:2s; +auditionnez auditionner VER 2.57 0.27 0.18 0.00 imp:pre:2p;ind:pre:2p; +auditionné auditionner VER m s 2.57 0.27 0.44 0.00 par:pas; +auditionnée auditionner VER f s 2.57 0.27 0.03 0.00 par:pas; +auditions audition NOM f p 11.64 2.64 2.31 0.74 +auditive auditif ADJ f s 1.25 1.28 0.41 0.20 +auditives auditif ADJ f p 1.25 1.28 0.32 0.34 +auditoire auditoire NOM m s 0.62 4.19 0.58 3.92 +auditoires auditoire NOM m p 0.62 4.19 0.04 0.27 +auditorium auditorium NOM m s 0.80 0.74 0.80 0.61 +auditoriums auditorium NOM m p 0.80 0.74 0.00 0.14 +auditrice auditeur NOM f s 3.12 6.49 0.06 0.07 +auditrices auditrice NOM f p 0.04 0.00 0.04 0.00 +audits audit NOM m p 0.54 0.14 0.06 0.00 +auge auge NOM f s 0.52 2.23 0.49 1.76 +auges auge NOM f p 0.52 2.23 0.03 0.47 +augment augment NOM m s 0.20 0.00 0.20 0.00 +augmenta augmenter VER 29.86 20.95 0.05 0.88 ind:pas:3s; +augmentaient augmenter VER 29.86 20.95 0.06 0.95 ind:imp:3p; +augmentais augmenter VER 29.86 20.95 0.04 0.00 ind:imp:1s;ind:imp:2s; +augmentait augmenter VER 29.86 20.95 0.27 4.66 ind:imp:3s; +augmentant augmenter VER 29.86 20.95 0.57 1.01 par:pre; +augmentation augmentation NOM f s 6.85 3.99 6.61 3.24 +augmentations augmentation NOM f p 6.85 3.99 0.24 0.74 +augmente augmenter VER 29.86 20.95 7.58 4.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +augmentent augmenter VER 29.86 20.95 1.23 0.47 ind:pre:3p; +augmenter augmenter VER 29.86 20.95 9.94 4.80 inf; +augmentera augmenter VER 29.86 20.95 0.42 0.20 ind:fut:3s; +augmenterai augmenter VER 29.86 20.95 0.11 0.07 ind:fut:1s; +augmenteraient augmenter VER 29.86 20.95 0.02 0.07 cnd:pre:3p; +augmenterais augmenter VER 29.86 20.95 0.03 0.00 cnd:pre:2s; +augmenterait augmenter VER 29.86 20.95 0.51 0.00 cnd:pre:3s; +augmenteras augmenter VER 29.86 20.95 0.01 0.00 ind:fut:2s; +augmenterez augmenter VER 29.86 20.95 0.01 0.07 ind:fut:2p; +augmenteront augmenter VER 29.86 20.95 0.38 0.00 ind:fut:3p; +augmentez augmenter VER 29.86 20.95 1.31 0.27 imp:pre:2p;ind:pre:2p; +augmentions augmenter VER 29.86 20.95 0.02 0.07 ind:imp:1p; +augmentons augmenter VER 29.86 20.95 0.36 0.00 imp:pre:1p;ind:pre:1p; +augmentât augmenter VER 29.86 20.95 0.00 0.07 sub:imp:3s; +augmentèrent augmenter VER 29.86 20.95 0.11 0.14 ind:pas:3p; +augmenté augmenter VER m s 29.86 20.95 6.15 2.30 par:pas; +augmentée augmenter VER f s 29.86 20.95 0.54 0.34 par:pas; +augmentées augmenter VER f p 29.86 20.95 0.03 0.07 par:pas; +augmentés augmenter VER m p 29.86 20.95 0.13 0.27 par:pas; +augurai augurer VER 0.81 1.76 0.00 0.07 ind:pas:1s; +augurais augurer VER 0.81 1.76 0.01 0.14 ind:imp:1s; +augurait augurer VER 0.81 1.76 0.11 0.68 ind:imp:3s; +augural augural ADJ m s 0.03 0.34 0.03 0.14 +augurale augural ADJ f s 0.03 0.34 0.00 0.20 +augurant augurer VER 0.81 1.76 0.00 0.07 par:pre; +augure augure NOM m s 3.21 3.38 2.13 2.77 +augurent augurer VER 0.81 1.76 0.14 0.07 ind:pre:3p; +augurer augurer VER 0.81 1.76 0.12 0.61 inf; +augurerais augurer VER 0.81 1.76 0.00 0.07 cnd:pre:1s; +augures augure NOM m p 3.21 3.38 1.08 0.61 +auguste auguste ADJ s 1.12 2.09 1.00 1.89 +augustes auguste ADJ p 1.12 2.09 0.11 0.20 +augustin augustin NOM m s 0.00 0.81 0.00 0.07 +augustinien augustinien ADJ m s 0.00 0.07 0.00 0.07 +augustins augustin NOM m p 0.00 0.81 0.00 0.74 +aujourd_hui aujourd_hui ADV 360.17 158.38 360.17 158.38 +aula aula NOM f s 0.01 0.00 0.01 0.00 +aulique aulique ADJ m s 0.00 0.07 0.00 0.07 +aulnaie aulnaie NOM f s 0.00 0.07 0.00 0.07 +aulne aulne NOM m s 0.04 2.16 0.04 0.27 +aulnes aulne NOM m p 0.04 2.16 0.00 1.89 +auloffée auloffée NOM f s 0.00 0.07 0.00 0.07 +aulos aulos NOM m 0.00 0.07 0.00 0.07 +aulx aulx NOM m p 0.00 0.27 0.00 0.27 +aumône aumône NOM f s 3.57 3.78 3.09 3.18 +aumônerie aumônerie NOM f s 0.02 0.07 0.02 0.07 +aumônes aumône NOM f p 3.57 3.78 0.48 0.61 +aumônier aumônier NOM m s 1.51 4.53 1.44 3.72 +aumôniers aumônier NOM m p 1.51 4.53 0.05 0.47 +aumônière aumônier NOM f s 1.51 4.53 0.02 0.27 +aumônières aumônier NOM f p 1.51 4.53 0.00 0.07 +aune aune NOM s 0.72 1.15 0.44 0.68 +auner auner VER 0.00 0.07 0.00 0.07 inf; +aunes aune NOM p 0.72 1.15 0.28 0.47 +auparavant auparavant ADV 14.11 41.62 14.11 41.62 +auprès auprès PRE 29.95 93.45 29.95 93.45 +auquel auquel PRO:rel m s 9.97 52.57 9.68 47.70 +aura avoir AUX 18559.23 12800.81 39.72 39.86 ind:fut:3s; +aérage aérage NOM m s 0.06 0.00 0.06 0.00 +aurai avoir AUX 18559.23 12800.81 32.96 15.54 ind:fut:1s; +aéraient aérer VER 2.65 4.12 0.00 0.07 ind:imp:3p; +auraient avoir AUX 18559.23 12800.81 34.48 69.53 cnd:pre:3p; +aurais avoir AUX 18559.23 12800.81 354.36 236.35 cnd:pre:2s; +aérait aérer VER 2.65 4.12 0.01 0.41 ind:imp:3s; +aurait avoir AUX 18559.23 12800.81 282.17 491.15 cnd:pre:3s; +auras avoir AUX 18559.23 12800.81 16.96 7.03 ind:fut:2s; +aérateur aérateur NOM m s 0.02 0.20 0.01 0.00 +aérateurs aérateur NOM m p 0.02 0.20 0.01 0.20 +aération aération NOM f s 2.02 1.35 2.00 1.35 +aérations aération NOM f p 2.02 1.35 0.03 0.00 +aérer aérer VER 2.65 4.12 1.68 2.03 inf; +aureus aureus NOM m 0.03 0.00 0.03 0.00 +aérez aérer VER 2.65 4.12 0.32 0.07 imp:pre:2p;ind:pre:2p; +aurez avoir AUX 18559.23 12800.81 13.18 5.14 ind:fut:2p; +auriculaire auriculaire NOM m s 0.42 1.01 0.42 0.95 +auriculaires auriculaire NOM m p 0.42 1.01 0.00 0.07 +auricule auricule NOM f s 0.00 0.07 0.00 0.07 +aérien aérien ADJ m s 13.71 21.15 4.84 6.08 +aérienne aérien ADJ f s 13.71 21.15 5.37 6.49 +aériennes aérien ADJ f p 13.71 21.15 2.24 6.15 +aériens aérien ADJ m p 13.71 21.15 1.26 2.43 +auriez avoir AUX 18559.23 12800.81 46.75 16.96 cnd:pre:2p; +aurifiées aurifier VER f p 0.00 0.07 0.00 0.07 par:pas; +aurifère aurifère ADJ s 0.02 0.14 0.01 0.00 +aurifères aurifère ADJ p 0.02 0.14 0.01 0.14 +aurige aurige NOM m s 0.00 0.14 0.00 0.14 +aurions avoir AUX 18559.23 12800.81 10.35 17.57 cnd:pre:1p; +aéro_club aéro_club NOM m s 0.01 0.07 0.01 0.07 +aéro aéro NOM m 0.04 0.20 0.04 0.20 +aérobic aérobic NOM m s 1.21 0.07 1.20 0.07 +aérobics aérobic NOM m p 1.21 0.07 0.01 0.00 +aurochs aurochs NOM m 0.00 0.81 0.00 0.81 +aérodrome aérodrome NOM m s 2.20 4.26 1.92 3.31 +aérodromes aérodrome NOM m p 2.20 4.26 0.28 0.95 +aérodynamique aérodynamique ADJ s 0.51 0.41 0.45 0.20 +aérodynamiques aérodynamique ADJ p 0.51 0.41 0.06 0.20 +aérodynamisme aérodynamisme NOM m s 0.02 0.07 0.02 0.07 +aérofrein aérofrein NOM m s 0.05 0.07 0.01 0.00 +aérofreins aérofrein NOM m p 0.05 0.07 0.04 0.07 +aérogare aérogare NOM f s 0.12 2.23 0.11 2.16 +aérogares aérogare NOM f p 0.12 2.23 0.01 0.07 +aéroglisseur aéroglisseur NOM m s 0.75 0.00 0.73 0.00 +aéroglisseurs aéroglisseur NOM m p 0.75 0.00 0.02 0.00 +aérographe aérographe NOM m s 0.04 0.07 0.04 0.07 +aérolithe aérolithe NOM m s 0.00 0.47 0.00 0.34 +aérolithes aérolithe NOM m p 0.00 0.47 0.00 0.14 +aérologie aérologie NOM f s 0.01 0.00 0.01 0.00 +aéromobile aéromobile ADJ f s 0.06 0.00 0.06 0.00 +aéromodélisme aéromodélisme NOM m s 0.00 0.14 0.00 0.14 +aéronaute aéronaute NOM s 0.03 0.07 0.01 0.00 +aéronautes aéronaute NOM p 0.03 0.07 0.02 0.07 +aéronautique aéronautique NOM f s 0.58 0.41 0.45 0.41 +aéronautiques aéronautique NOM f p 0.58 0.41 0.14 0.00 +aéronaval aéronaval ADJ m s 0.17 0.20 0.10 0.00 +aéronavale aéronavale NOM f s 0.48 0.20 0.48 0.20 +aéronavales aéronaval ADJ f p 0.17 0.20 0.03 0.07 +aéronavals aéronaval ADJ m p 0.17 0.20 0.00 0.07 +aurone aurone NOM f s 0.00 0.07 0.00 0.07 +aéronef aéronef NOM m s 0.03 0.14 0.03 0.07 +aéronefs aéronef NOM m p 0.03 0.14 0.00 0.07 +aérons aérer VER 2.65 4.12 0.01 0.07 imp:pre:1p;ind:pre:1p; +aurons avoir AUX 18559.23 12800.81 4.22 5.14 ind:fut:1p; +auront avoir AUX 18559.23 12800.81 7.46 14.05 ind:fut:3p; +aéropathie aéropathie NOM f s 0.01 0.00 0.01 0.00 +aérophagie aérophagie NOM f s 0.15 0.14 0.15 0.14 +aéroplane aéroplane NOM m s 0.16 1.62 0.16 1.15 +aéroplanes aéroplane NOM m p 0.16 1.62 0.00 0.47 +aéroport aéroport NOM m s 33.13 8.99 31.44 7.91 +aéroports aéroport NOM m p 33.13 8.99 1.69 1.08 +aéroporté aéroporté ADJ m s 0.68 0.34 0.10 0.07 +aéroportée aéroporté ADJ f s 0.68 0.34 0.44 0.07 +aéroportées aéroporté ADJ f p 0.68 0.34 0.09 0.00 +aéroportés aéroporté ADJ m p 0.68 0.34 0.05 0.20 +aéropostale aéropostale NOM f s 0.01 0.00 0.01 0.00 +auroral auroral ADJ m s 0.00 0.07 0.00 0.07 +aurore aurore NOM f s 3.68 11.62 3.01 9.39 +aurores aurore NOM f p 3.68 11.62 0.68 2.23 +aérosol aérosol NOM m s 0.61 0.54 0.44 0.47 +aérosols aérosol NOM m p 0.61 0.54 0.17 0.07 +aérospatial aérospatial ADJ m s 0.17 0.00 0.07 0.00 +aérospatiale aérospatiale NOM f s 0.12 0.00 0.12 0.00 +aérostat aérostat NOM m s 0.16 0.00 0.16 0.00 +aérostier aérostier NOM m s 0.00 0.20 0.00 0.14 +aérostiers aérostier NOM m p 0.00 0.20 0.00 0.07 +aérotrains aérotrain NOM m p 0.00 0.07 0.00 0.07 +aérèrent aérer VER 2.65 4.12 0.00 0.07 ind:pas:3p; +aéré aéré ADJ m s 0.50 2.36 0.28 0.68 +aérée aéré ADJ f s 0.50 2.36 0.05 0.95 +aérées aéré ADJ f p 0.50 2.36 0.00 0.47 +auréola auréoler VER 0.71 3.38 0.00 0.07 ind:pas:3s; +auréolaient auréoler VER 0.71 3.38 0.00 0.27 ind:imp:3p; +auréolaire auréolaire ADJ f s 0.13 0.00 0.13 0.00 +auréolait auréoler VER 0.71 3.38 0.00 0.54 ind:imp:3s; +auréolant auréoler VER 0.71 3.38 0.00 0.07 par:pre; +auréole auréole NOM f s 1.29 6.35 1.04 4.59 +auréoler auréoler VER 0.71 3.38 0.00 0.07 inf; +auréoles auréole NOM f p 1.29 6.35 0.25 1.76 +auréolé auréoler VER m s 0.71 3.38 0.44 1.15 par:pas; +auréolée auréolé ADJ f s 0.21 0.34 0.20 0.07 +auréolées auréoler VER f p 0.71 3.38 0.01 0.14 par:pas; +auréolés auréoler VER m p 0.71 3.38 0.12 0.41 par:pas; +auréomycine auréomycine NOM f s 0.00 0.07 0.00 0.07 +aérés aéré ADJ m p 0.50 2.36 0.17 0.27 +ausculta ausculter VER 1.18 3.58 0.00 0.54 ind:pas:3s; +auscultais ausculter VER 1.18 3.58 0.00 0.14 ind:imp:1s; +auscultait ausculter VER 1.18 3.58 0.02 0.54 ind:imp:3s; +auscultant ausculter VER 1.18 3.58 0.01 0.34 par:pre; +auscultation auscultation NOM f s 0.00 0.74 0.00 0.68 +auscultations auscultation NOM f p 0.00 0.74 0.00 0.07 +ausculte ausculter VER 1.18 3.58 0.34 0.41 ind:pre:1s;ind:pre:3s; +auscultent ausculter VER 1.18 3.58 0.14 0.07 ind:pre:3p; +ausculter ausculter VER 1.18 3.58 0.57 0.88 inf; +auscultez ausculter VER 1.18 3.58 0.04 0.00 imp:pre:2p;ind:pre:2p; +ausculté ausculter VER m s 1.18 3.58 0.07 0.54 par:pas; +auscultées ausculter VER f p 1.18 3.58 0.01 0.00 par:pas; +auscultés ausculter VER m p 1.18 3.58 0.00 0.14 par:pas; +auspices auspice NOM m p 0.21 0.95 0.21 0.95 +aussi aussi ADV 1402.33 1359.86 1402.33 1359.86 +aussitôt aussitôt ADV 13.52 189.93 13.52 189.93 +aussière aussière NOM f s 0.00 0.20 0.00 0.07 +aussières aussière NOM f p 0.00 0.20 0.00 0.14 +austral austral ADJ m s 0.07 0.95 0.03 0.20 +australe austral ADJ f s 0.07 0.95 0.03 0.68 +australes austral ADJ f p 0.07 0.95 0.01 0.07 +australien australien ADJ m s 1.57 1.89 0.76 0.88 +australienne australien ADJ f s 1.57 1.89 0.48 0.41 +australiennes australien ADJ f p 1.57 1.89 0.06 0.00 +australiens australien ADJ m p 1.57 1.89 0.27 0.61 +australopithèque australopithèque NOM m s 0.07 0.07 0.03 0.07 +australopithèques australopithèque NOM m p 0.07 0.07 0.04 0.00 +austro_hongrois austro_hongrois ADJ m s 0.05 0.41 0.05 0.27 +austro_hongrois austro_hongrois ADJ f p 0.05 0.41 0.00 0.14 +austro austro ADV 0.02 0.07 0.02 0.07 +austère austère ADJ s 1.52 10.95 1.26 8.24 +austèrement austèrement ADV 0.00 0.14 0.00 0.14 +austères austère ADJ p 1.52 10.95 0.25 2.70 +austérité austérité NOM f s 0.64 4.73 0.64 4.59 +austérités austérité NOM f p 0.64 4.73 0.00 0.14 +ausweis ausweis NOM m 0.00 0.41 0.00 0.41 +autan autan NOM m s 0.00 0.07 0.00 0.07 +autant autant ADV 152.16 240.41 152.16 240.41 +autarcie autarcie NOM f s 0.17 0.34 0.17 0.34 +autarcique autarcique ADJ s 0.01 0.27 0.01 0.20 +autarciques autarcique ADJ f p 0.01 0.27 0.00 0.07 +autel autel NOM m s 8.27 15.34 7.62 13.31 +autels autel NOM m p 8.27 15.34 0.66 2.03 +auteur auteur NOM m s 23.52 41.89 17.62 32.30 +auteure auteur NOM f s 23.52 41.89 0.01 0.00 +auteurs auteur NOM m p 23.52 41.89 5.88 9.59 +authenticité authenticité NOM f s 1.05 2.43 1.05 2.43 +authentifiait authentifier VER 0.79 0.61 0.00 0.07 ind:imp:3s; +authentification authentification NOM f s 0.33 0.14 0.33 0.14 +authentifie authentifier VER 0.79 0.61 0.06 0.20 ind:pre:1s;ind:pre:3s; +authentifient authentifier VER 0.79 0.61 0.00 0.07 ind:pre:3p; +authentifier authentifier VER 0.79 0.61 0.32 0.14 inf; +authentifierait authentifier VER 0.79 0.61 0.00 0.07 cnd:pre:3s; +authentifiez authentifier VER 0.79 0.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +authentifié authentifier VER m s 0.79 0.61 0.21 0.00 par:pas; +authentifiée authentifier VER f s 0.79 0.61 0.10 0.07 par:pas; +authentifiées authentifier VER f p 0.79 0.61 0.04 0.00 par:pas; +authentifiés authentifier VER m p 0.79 0.61 0.04 0.00 par:pas; +authentiquant authentiquer VER 0.17 0.07 0.00 0.07 par:pre; +authentique authentique ADJ s 9.22 11.35 7.28 8.51 +authentiquement authentiquement ADV 0.17 0.54 0.17 0.54 +authentiques authentique ADJ p 9.22 11.35 1.94 2.84 +autisme autisme NOM m s 0.31 0.00 0.31 0.00 +autiste autiste ADJ s 0.58 0.27 0.46 0.20 +autistes autiste ADJ m p 0.58 0.27 0.12 0.07 +autistique autistique ADJ s 0.04 0.07 0.04 0.07 +auto_adhésif auto_adhésif ADJ f s 0.00 0.07 0.00 0.07 +auto_analyse auto_analyse NOM f s 0.02 0.07 0.02 0.07 +auto_immun auto_immun ADJ m s 0.12 0.00 0.01 0.00 +auto_immun auto_immun ADJ f s 0.12 0.00 0.10 0.00 +auto_intoxication auto_intoxication NOM f s 0.00 0.14 0.00 0.14 +auto_pilote auto_pilote NOM s 0.10 0.00 0.10 0.00 +auto_stop auto_stop NOM m s 1.06 0.74 1.06 0.74 +auto_stoppeur auto_stoppeur NOM m s 0.63 0.20 0.28 0.00 +auto_stoppeur auto_stoppeur NOM m p 0.63 0.20 0.27 0.00 +auto_stoppeur auto_stoppeur NOM f s 0.63 0.20 0.08 0.07 +auto_stoppeuse auto_stoppeuse NOM f p 0.04 0.00 0.04 0.00 +auto_tamponneuse auto_tamponneuse NOM f s 0.26 0.00 0.04 0.00 +auto_tamponneuse auto_tamponneuse NOM f p 0.26 0.00 0.22 0.00 +auto_école auto_école NOM f s 0.58 0.07 0.58 0.07 +auto_érotisme auto_érotisme NOM m s 0.02 0.00 0.02 0.00 +auto auto NOM s 18.66 42.36 16.25 30.34 +autobiographe autobiographe NOM s 0.00 0.20 0.00 0.20 +autobiographie autobiographie NOM f s 1.26 1.35 1.12 0.68 +autobiographies autobiographie NOM f p 1.26 1.35 0.14 0.68 +autobiographique autobiographique ADJ s 0.40 0.68 0.34 0.61 +autobiographiques autobiographique ADJ p 0.40 0.68 0.06 0.07 +autobronzant autobronzant NOM m s 0.16 0.00 0.16 0.00 +autobus autobus NOM m 4.67 26.28 4.67 26.28 +autocar autocar NOM m s 2.33 8.85 2.23 7.70 +autocars autocar NOM m p 2.33 8.85 0.10 1.15 +autocensure autocensure NOM f s 0.35 0.34 0.35 0.34 +autocensurent autocensurer VER 0.01 0.14 0.00 0.07 ind:pre:3p; +autocensurer autocensurer VER 0.01 0.14 0.00 0.07 inf; +autochenille autochenille NOM f s 0.00 0.07 0.00 0.07 +autochtone autochtone ADJ s 0.20 1.15 0.14 0.47 +autochtones autochtone NOM p 0.84 1.69 0.72 1.35 +autoclave autoclave NOM m s 0.01 0.14 0.01 0.14 +autocollant autocollant NOM m s 2.07 0.00 0.73 0.00 +autocollante autocollant ADJ f s 0.09 0.27 0.01 0.00 +autocollantes autocollant ADJ f p 0.09 0.27 0.01 0.14 +autocollants autocollant NOM m p 2.07 0.00 1.34 0.00 +autoconservation autoconservation NOM f s 0.01 0.07 0.01 0.07 +autocrate autocrate ADJ s 0.02 0.00 0.02 0.00 +autocrates autocrate NOM p 0.00 0.07 0.00 0.07 +autocratie autocratie NOM f s 0.10 0.07 0.10 0.07 +autocratique autocratique ADJ s 0.03 0.20 0.03 0.14 +autocratiques autocratique ADJ p 0.03 0.20 0.00 0.07 +autocritique autocritique NOM f s 0.16 1.22 0.16 1.15 +autocritiquer autocritiquer VER 0.01 0.00 0.01 0.00 inf; +autocritiques autocritique NOM f p 0.16 1.22 0.00 0.07 +autocréation autocréation NOM f s 0.00 0.07 0.00 0.07 +autocuiseur autocuiseur NOM m s 0.28 0.00 0.28 0.00 +autodafé autodafé NOM m s 0.07 0.61 0.07 0.41 +autodafés autodafé NOM m p 0.07 0.61 0.00 0.20 +autodestructeur autodestructeur ADJ m s 0.35 0.07 0.20 0.00 +autodestructeurs autodestructeur ADJ m p 0.35 0.07 0.04 0.00 +autodestructible autodestructible ADJ s 0.00 0.07 0.00 0.07 +autodestruction autodestruction NOM f s 2.14 0.47 2.14 0.47 +autodestructrice autodestructeur ADJ f s 0.35 0.07 0.12 0.07 +autodidacte autodidacte NOM s 0.30 0.74 0.27 0.61 +autodidactes autodidacte NOM p 0.30 0.74 0.03 0.14 +autodidactique autodidactique ADJ f s 0.01 0.07 0.01 0.07 +autodirecteur autodirecteur ADJ m s 0.12 0.00 0.12 0.00 +autodiscipline autodiscipline NOM f s 0.18 0.00 0.18 0.00 +autodrome autodrome NOM m s 0.01 0.00 0.01 0.00 +autodéfense autodéfense NOM f s 1.74 0.47 1.74 0.47 +autodénigrement autodénigrement NOM m s 0.01 0.07 0.01 0.07 +autodérision autodérision NOM f s 0.04 0.00 0.04 0.00 +autodétermination autodétermination NOM f s 0.47 0.00 0.47 0.00 +autodétruira autodétruire VER 0.51 0.00 0.07 0.00 ind:fut:3s; +autodétruire autodétruire VER 0.51 0.00 0.21 0.00 inf; +autodétruiront autodétruire VER 0.51 0.00 0.02 0.00 ind:fut:3p; +autodétruisant autodétruire VER 0.51 0.00 0.01 0.00 par:pre; +autodétruisent autodétruire VER 0.51 0.00 0.04 0.00 ind:pre:3p; +autodétruit autodétruire VER m s 0.51 0.00 0.11 0.00 ind:pre:3s;par:pas; +autodétruite autodétruire VER f s 0.51 0.00 0.04 0.00 par:pas; +autofinancement autofinancement NOM m s 0.01 0.00 0.01 0.00 +autofocus autofocus ADJ 0.13 0.00 0.13 0.00 +autogenèse autogenèse NOM f s 0.02 0.00 0.02 0.00 +autogestion autogestion NOM f s 0.14 0.20 0.14 0.20 +autogire autogire NOM m s 0.02 0.07 0.01 0.07 +autogires autogire NOM m p 0.02 0.07 0.01 0.00 +autographe autographe NOM m s 8.52 1.82 7.35 0.95 +autographes autographe NOM m p 8.52 1.82 1.17 0.88 +autographier autographier VER 0.01 0.07 0.00 0.07 inf; +autographié autographier VER m s 0.01 0.07 0.01 0.00 par:pas; +autogène autogène ADJ f s 0.01 0.07 0.01 0.07 +autoguidage autoguidage NOM m s 0.05 0.00 0.05 0.00 +autoguidé autoguidé ADJ m s 0.01 0.00 0.01 0.00 +autogérer autogérer VER 0.13 0.00 0.13 0.00 inf; +autogérée autogéré ADJ f s 0.12 0.00 0.12 0.00 +autolimite autolimiter VER 0.01 0.00 0.01 0.00 ind:pre:3s; +autologues autologue ADJ m p 0.01 0.00 0.01 0.00 +autolysat autolysat NOM m s 0.00 0.07 0.00 0.07 +autolyse autolyse NOM f s 0.01 0.00 0.01 0.00 +automate automate NOM s 0.50 5.54 0.19 4.12 +automates automate NOM p 0.50 5.54 0.30 1.42 +automatico automatico ADV 0.00 0.07 0.00 0.07 +automation automation NOM f s 0.14 0.14 0.14 0.14 +automatique automatique ADJ s 8.60 7.57 6.60 5.74 +automatiquement automatiquement ADV 2.61 3.85 2.61 3.85 +automatiques automatique ADJ p 8.60 7.57 2.00 1.82 +automatisation automatisation NOM f s 0.14 0.14 0.14 0.14 +automatisme automatisme NOM m s 0.18 1.22 0.17 1.08 +automatismes automatisme NOM m p 0.18 1.22 0.01 0.14 +automatisé automatiser VER m s 0.28 0.00 0.20 0.00 par:pas; +automatisée automatiser VER f s 0.28 0.00 0.04 0.00 par:pas; +automatisées automatisé ADJ f p 0.24 0.00 0.04 0.00 +automatisés automatiser VER m p 0.28 0.00 0.04 0.00 par:pas; +automitrailleuse automitrailleur NOM f s 0.10 1.76 0.00 0.47 +automitrailleuses automitrailleur NOM f p 0.10 1.76 0.10 1.28 +automnal automnal ADJ m s 0.32 1.76 0.11 1.08 +automnale automnal ADJ f s 0.32 1.76 0.11 0.47 +automnales automnal ADJ f p 0.32 1.76 0.10 0.20 +automne automne NOM m s 16.91 43.65 16.88 42.97 +automnes automne NOM m p 16.91 43.65 0.03 0.68 +automobile_club automobile_club NOM f s 0.03 0.00 0.03 0.00 +automobile automobile NOM f s 3.71 19.46 2.96 12.70 +automobiles automobile NOM f p 3.71 19.46 0.76 6.76 +automobiliste automobiliste NOM s 0.39 3.78 0.20 1.76 +automobilistes automobiliste NOM p 0.39 3.78 0.19 2.03 +automoteur automoteur ADJ m s 0.02 0.20 0.01 0.00 +automoteurs automoteur ADJ m p 0.02 0.20 0.00 0.07 +automotrice automoteur ADJ f s 0.02 0.20 0.01 0.14 +automédication automédication NOM f s 0.08 0.00 0.08 0.00 +automutilation automutilation NOM f s 0.20 0.27 0.20 0.27 +automutiler automutiler VER 0.10 0.00 0.10 0.00 inf; +autoneige autoneige NOM f s 0.04 0.00 0.04 0.00 +autoneiges autoneige NOM f p 0.04 0.00 0.01 0.00 +autonettoyant autonettoyant ADJ m s 0.03 0.07 0.02 0.07 +autonettoyante autonettoyant ADJ f s 0.03 0.07 0.01 0.00 +autonome autonome ADJ s 2.08 2.91 1.70 1.89 +autonomes autonome ADJ p 2.08 2.91 0.38 1.01 +autonomie autonomie NOM f s 2.76 2.16 2.76 2.16 +autonomique autonomique ADJ m s 0.03 0.00 0.03 0.00 +autonomistes autonomiste NOM p 0.00 0.14 0.00 0.14 +autopilote autopilote NOM m s 0.01 0.00 0.01 0.00 +autoplastie autoplastie NOM f s 0.01 0.00 0.01 0.00 +autoportrait autoportrait NOM m s 0.85 0.34 0.71 0.14 +autoportraits autoportrait NOM m p 0.85 0.34 0.14 0.20 +autoportée autoporté ADJ f s 0.00 0.07 0.00 0.07 +autoproclamé autoproclamer VER m s 0.11 0.00 0.09 0.00 par:pas; +autoproclamée autoproclamer VER f s 0.11 0.00 0.02 0.00 par:pas; +autoproduit autoproduit NOM m s 0.01 0.07 0.01 0.07 +autopropulseur autopropulseur NOM m s 0.01 0.00 0.01 0.00 +autopropulsé autopropulsé ADJ m s 0.07 0.00 0.01 0.00 +autopropulsée autopropulsé ADJ f s 0.07 0.00 0.04 0.00 +autopropulsés autopropulsé ADJ m p 0.07 0.00 0.02 0.00 +autopsia autopsier VER 0.46 0.41 0.00 0.07 ind:pas:3s; +autopsiais autopsier VER 0.46 0.41 0.01 0.07 ind:imp:1s;ind:imp:2s; +autopsie autopsie NOM f s 12.23 1.55 11.57 1.49 +autopsier autopsier VER 0.46 0.41 0.28 0.20 inf; +autopsies autopsie NOM f p 12.23 1.55 0.66 0.07 +autopsié autopsier VER m s 0.46 0.41 0.16 0.07 par:pas; +autopunition autopunition NOM f s 0.03 0.00 0.03 0.00 +autoradio autoradio NOM m s 1.40 0.07 0.81 0.07 +autoradios autoradio NOM m p 1.40 0.07 0.59 0.00 +autorail autorail NOM m s 0.00 0.14 0.00 0.14 +autoreproduction autoreproduction NOM f s 0.01 0.00 0.01 0.00 +autorisa autoriser VER 30.28 20.88 0.07 0.74 ind:pas:3s; +autorisai autoriser VER 30.28 20.88 0.00 0.07 ind:pas:1s; +autorisaient autoriser VER 30.28 20.88 0.03 0.74 ind:imp:3p; +autorisais autoriser VER 30.28 20.88 0.12 0.00 ind:imp:1s; +autorisait autoriser VER 30.28 20.88 0.22 4.53 ind:imp:3s; +autorisant autoriser VER 30.28 20.88 0.83 0.95 par:pre; +autorisassent autoriser VER 30.28 20.88 0.00 0.07 sub:imp:3p; +autorisation autorisation NOM f s 21.10 10.07 19.55 8.92 +autorisations autorisation NOM f p 21.10 10.07 1.55 1.15 +autorise autoriser VER 30.28 20.88 6.57 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +autorisent autoriser VER 30.28 20.88 0.53 0.34 ind:pre:3p; +autoriser autoriser VER 30.28 20.88 3.16 1.69 inf; +autorisera autoriser VER 30.28 20.88 0.20 0.14 ind:fut:3s; +autoriserai autoriser VER 30.28 20.88 0.70 0.00 ind:fut:1s; +autoriserais autoriser VER 30.28 20.88 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +autoriserait autoriser VER 30.28 20.88 0.29 0.41 cnd:pre:3s; +autoriserez autoriser VER 30.28 20.88 0.14 0.00 ind:fut:2p; +autoriserons autoriser VER 30.28 20.88 0.02 0.00 ind:fut:1p; +autoriseront autoriser VER 30.28 20.88 0.09 0.00 ind:fut:3p; +autorises autoriser VER 30.28 20.88 0.44 0.07 ind:pre:2s; +autorisez autoriser VER 30.28 20.88 0.96 0.27 imp:pre:2p;ind:pre:2p; +autorisiez autoriser VER 30.28 20.88 0.03 0.07 ind:imp:2p; +autorisions autoriser VER 30.28 20.88 0.00 0.07 ind:imp:1p; +autorisons autoriser VER 30.28 20.88 0.15 0.00 imp:pre:1p;ind:pre:1p; +autorisât autoriser VER 30.28 20.88 0.00 0.41 sub:imp:3s; +autorisèrent autoriser VER 30.28 20.88 0.00 0.14 ind:pas:3p; +autorisé autoriser VER m s 30.28 20.88 10.22 3.78 par:pas; +autorisée autoriser VER f s 30.28 20.88 2.55 1.22 par:pas; +autorisées autoriser VER f p 30.28 20.88 0.71 0.41 par:pas; +autorisés autoriser VER m p 30.28 20.88 2.19 1.49 par:pas; +autoritaire autoritaire ADJ s 1.35 3.65 1.19 3.31 +autoritairement autoritairement ADV 0.01 0.00 0.01 0.00 +autoritaires autoritaire ADJ p 1.35 3.65 0.16 0.34 +autoritarisme autoritarisme NOM m s 0.02 0.07 0.02 0.07 +autorité autorité NOM f s 32.95 77.03 18.62 56.22 +autorités autorité NOM f p 32.95 77.03 14.32 20.81 +autoroute autoroute NOM f s 14.76 15.00 13.81 12.77 +autoroutes autoroute NOM f p 14.76 15.00 0.95 2.23 +autoroutiers autoroutier ADJ m p 0.03 0.14 0.01 0.07 +autoroutière autoroutier ADJ f s 0.03 0.14 0.01 0.07 +autorégulateur autorégulateur ADJ m s 0.01 0.00 0.01 0.00 +autorégulation autorégulation NOM f s 0.14 0.00 0.14 0.00 +autorégule autoréguler VER 0.01 0.00 0.01 0.00 ind:pre:3s; +autos auto NOM f p 18.66 42.36 2.42 12.03 +autosatisfaction autosatisfaction NOM f s 0.13 0.27 0.13 0.27 +autostop autostop NOM m s 0.07 0.00 0.07 0.00 +autostrade autostrade NOM f s 0.02 0.27 0.02 0.20 +autostrades autostrade NOM f p 0.02 0.27 0.00 0.07 +autosubsistance autosubsistance NOM f s 0.01 0.00 0.01 0.00 +autosuffisance autosuffisance NOM f s 0.04 0.00 0.04 0.00 +autosuffisant autosuffisant ADJ m s 0.04 0.00 0.01 0.00 +autosuffisants autosuffisant ADJ m p 0.04 0.00 0.03 0.00 +autosuggestion autosuggestion NOM f s 0.09 0.14 0.09 0.14 +autosuggestionna autosuggestionner VER 0.00 0.07 0.00 0.07 ind:pas:3s; +autosurveillance autosurveillance NOM f s 0.02 0.00 0.02 0.00 +autour autour ADV 87.02 361.55 87.02 361.55 +autoérotique autoérotique ADJ f s 0.03 0.00 0.03 0.00 +autours autour NOM m p 0.42 2.03 0.16 0.07 +autre autre PRO:ind s 473.33 661.82 473.33 661.82 +autrefois autrefois PRO:ind f s 0.00 0.07 0.00 0.07 +autrement autrement ADV 40.16 62.77 40.16 62.77 +autres autres PRO:ind p 249.70 375.14 249.70 375.14 +autrichien autrichien ADJ m s 2.67 7.36 1.26 2.91 +autrichienne autrichien ADJ f s 2.67 7.36 0.88 1.89 +autrichiennes autrichien ADJ f p 2.67 7.36 0.03 0.88 +autrichiens autrichiens PRO:ind m p 0.00 0.14 0.00 0.14 +autruche autruche NOM f s 3.53 3.04 2.79 2.43 +autruches autruche NOM f p 3.53 3.04 0.74 0.61 +autrui autrui PRO:ind m s 6.56 12.30 6.56 12.30 +auvent auvent NOM m s 0.46 6.89 0.31 6.28 +auvents auvent NOM m p 0.46 6.89 0.14 0.61 +auvergnat auvergnat NOM m s 0.01 2.50 0.00 1.28 +auvergnate auvergnat NOM f s 0.01 2.50 0.01 0.41 +auvergnates auvergnat ADJ f p 0.00 2.23 0.00 0.20 +auvergnats auvergnat NOM m p 0.01 2.50 0.00 0.74 +auvergne auvergne NOM f s 0.00 1.22 0.00 1.22 +auverpin auverpin NOM m s 0.00 0.54 0.00 0.41 +auverpins auverpin NOM m p 0.00 0.54 0.00 0.14 +aux_aguets aux_aguets ADV 0.87 5.88 0.87 5.88 +aux aux ART:def p 835.65 1907.57 835.65 1907.57 +auxdits auxdits PRE 0.00 0.14 0.00 0.14 +auxerrois auxerrois NOM m 0.00 0.07 0.00 0.07 +auxiliaire auxiliaire ADJ s 1.90 2.09 1.52 1.15 +auxiliaires auxiliaire NOM p 1.42 3.51 0.73 2.03 +auxquelles auxquelles PRO:rel f p 3.57 22.09 3.53 20.54 +auxquels auxquels PRO:rel m p 3.35 26.28 3.31 23.72 +avachi avachir VER m s 0.33 2.23 0.23 0.74 par:pas; +avachie avachi ADJ f s 0.24 3.58 0.05 0.74 +avachies avachi ADJ f p 0.24 3.58 0.00 0.41 +avachir avachir VER 0.33 2.23 0.02 0.07 inf; +avachirait avachir VER 0.33 2.23 0.00 0.07 cnd:pre:3s; +avachirons avachir VER 0.33 2.23 0.00 0.07 ind:fut:1p; +avachis avachi ADJ m p 0.24 3.58 0.14 1.08 +avachissait avachir VER 0.33 2.23 0.00 0.07 ind:imp:3s; +avachissement avachissement NOM m s 0.01 0.47 0.01 0.47 +avachissent avachir VER 0.33 2.23 0.01 0.00 ind:pre:3p; +avachit avachir VER 0.33 2.23 0.00 0.47 ind:pre:3s;ind:pas:3s; +avaient avoir AUX 18559.23 12800.81 54.37 524.26 ind:imp:3p; +avais avoir AUX 18559.23 12800.81 412.04 566.76 ind:imp:2s; +avait avoir AUX 18559.23 12800.81 395.71 3116.42 ind:imp:3s; +aval aval NOM m s 2.08 3.99 2.08 3.99 +avala avaler VER 35.89 65.27 0.23 7.97 ind:pas:3s; +avalage avalage NOM m s 0.03 0.07 0.03 0.07 +avalai avaler VER 35.89 65.27 0.00 1.69 ind:pas:1s; +avalaient avaler VER 35.89 65.27 0.16 0.61 ind:imp:3p; +avalais avaler VER 35.89 65.27 0.03 0.74 ind:imp:1s; +avalait avaler VER 35.89 65.27 0.46 5.95 ind:imp:3s; +avalanche avalanche NOM f s 2.75 5.68 1.89 4.86 +avalanches avalanche NOM f p 2.75 5.68 0.86 0.81 +avalant avaler VER 35.89 65.27 0.28 2.84 par:pre; +avale avaler VER 35.89 65.27 8.02 9.26 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avalement avalement NOM m s 0.00 0.14 0.00 0.14 +avalent avaler VER 35.89 65.27 0.62 1.15 ind:pre:3p; +avaler avaler VER 35.89 65.27 11.95 19.39 inf; +avalera avaler VER 35.89 65.27 0.54 0.07 ind:fut:3s; +avalerai avaler VER 35.89 65.27 0.35 0.20 ind:fut:1s; +avaleraient avaler VER 35.89 65.27 0.01 0.00 cnd:pre:3p; +avalerais avaler VER 35.89 65.27 0.39 0.20 cnd:pre:1s; +avalerait avaler VER 35.89 65.27 0.19 0.41 cnd:pre:3s; +avaleras avaler VER 35.89 65.27 0.03 0.07 ind:fut:2s; +avaleriez avaler VER 35.89 65.27 0.02 0.07 cnd:pre:2p; +avaleront avaler VER 35.89 65.27 0.36 0.14 ind:fut:3p; +avales avaler VER 35.89 65.27 1.11 0.14 ind:pre:2s; +avaleur avaleur NOM m s 0.68 0.61 0.17 0.41 +avaleurs avaleur NOM m p 0.68 0.61 0.03 0.20 +avaleuse avaleur NOM f s 0.68 0.61 0.47 0.00 +avalez avaler VER 35.89 65.27 1.73 0.14 imp:pre:2p;ind:pre:2p; +avaliez avaler VER 35.89 65.27 0.01 0.00 ind:imp:2p; +avaliser avaliser VER 0.09 0.14 0.08 0.14 inf; +avaliseur avaliseur NOM m s 0.03 0.00 0.03 0.00 +avalisés avaliser VER m p 0.09 0.14 0.01 0.00 par:pas; +avaloires avaloire NOM f p 0.00 0.07 0.00 0.07 +avalâmes avaler VER 35.89 65.27 0.00 0.07 ind:pas:1p; +avalons avaler VER 35.89 65.27 0.03 0.14 imp:pre:1p;ind:pre:1p; +avalât avaler VER 35.89 65.27 0.00 0.07 sub:imp:3s; +avalèrent avaler VER 35.89 65.27 0.01 0.07 ind:pas:3p; +avalé avaler VER m s 35.89 65.27 7.55 9.46 par:pas; +avalée avaler VER f s 35.89 65.27 0.71 2.77 par:pas; +avalées avaler VER f p 35.89 65.27 0.38 0.74 par:pas; +avalés avaler VER m p 35.89 65.27 0.74 0.95 par:pas; +avance avance NOM f s 69.25 82.30 65.68 77.64 +avancement avancement NOM m s 3.34 3.18 3.30 2.97 +avancements avancement NOM m p 3.34 3.18 0.04 0.20 +avancent avancer VER 95.62 195.00 4.63 7.50 ind:pre:3p; +avancer avancer VER 95.62 195.00 22.65 30.41 inf; +avancera avancer VER 95.62 195.00 1.37 0.74 ind:fut:3s; +avancerai avancer VER 95.62 195.00 0.29 0.20 ind:fut:1s; +avancerais avancer VER 95.62 195.00 0.06 0.07 cnd:pre:1s; +avancerait avancer VER 95.62 195.00 0.84 1.15 cnd:pre:3s; +avancerez avancer VER 95.62 195.00 0.04 0.00 ind:fut:2p; +avancerons avancer VER 95.62 195.00 0.24 0.00 ind:fut:1p; +avanceront avancer VER 95.62 195.00 0.10 0.41 ind:fut:3p; +avances avance NOM f p 69.25 82.30 3.57 4.66 +avancez avancer VER 95.62 195.00 19.95 0.54 imp:pre:2p;ind:pre:2p; +avanciez avancer VER 95.62 195.00 0.06 0.14 ind:imp:2p; +avancions avancer VER 95.62 195.00 0.17 2.43 ind:imp:1p; +avancèrent avancer VER 95.62 195.00 0.04 2.43 ind:pas:3p; +avancé avancer VER m s 95.62 195.00 6.08 12.23 par:pas; +avancée avancé ADJ f s 6.71 11.15 2.19 3.92 +avancées avancée NOM f p 2.25 4.39 0.70 0.81 +avancés avancé ADJ m p 6.71 11.15 1.08 1.28 +avanie avanie NOM f s 0.04 1.42 0.04 0.27 +avanies avanie NOM f p 0.04 1.42 0.00 1.15 +avant_avant_dernier avant_avant_dernier NOM m s 0.00 0.07 0.00 0.07 +avant_bec avant_bec NOM m s 0.01 0.00 0.01 0.00 +avant_bras avant_bras NOM m 0.84 12.70 0.84 12.70 +avant_centre avant_centre NOM m s 0.28 0.20 0.28 0.20 +avant_clou avant_clou NOM m p 0.00 0.07 0.00 0.07 +avant_corps avant_corps NOM m 0.00 0.07 0.00 0.07 +avant_coureur avant_coureur ADJ m s 0.32 1.62 0.02 0.74 +avant_coureur avant_coureur ADJ m p 0.32 1.62 0.29 0.88 +avant_courrier avant_courrier ADJ f s 0.00 0.07 0.00 0.07 +avant_courrier avant_courrier NOM f p 0.00 0.07 0.00 0.07 +avant_cour avant_cour NOM f p 0.00 0.07 0.00 0.07 +avant_dîner avant_dîner NOM m 0.00 0.07 0.00 0.07 +avant_dernier avant_dernier ADJ m s 0.45 1.96 0.11 0.88 +avant_dernier avant_dernier ADJ f s 0.45 1.96 0.34 1.08 +avant_garde avant_garde NOM f s 1.52 7.91 1.52 7.09 +avant_garde avant_garde NOM f p 1.52 7.91 0.00 0.81 +avant_gardiste avant_gardiste ADJ s 0.23 0.20 0.21 0.14 +avant_gardiste avant_gardiste ADJ m p 0.23 0.20 0.03 0.07 +avant_gauche avant_gauche ADJ 0.10 0.00 0.10 0.00 +avant_goût avant_goût NOM m s 1.25 1.62 1.25 1.62 +avant_guerre avant_guerre NOM s 0.65 7.16 0.65 7.16 +avant_hier avant_hier ADV 6.69 8.78 6.69 8.78 +avant_mont avant_mont NOM m p 0.01 0.00 0.01 0.00 +avant_papier avant_papier NOM m s 0.00 0.20 0.00 0.20 +avant_plan avant_plan NOM m s 0.02 0.07 0.02 0.07 +avant_port avant_port NOM m s 0.00 0.07 0.00 0.07 +avant_poste avant_poste NOM m s 2.15 3.72 1.52 0.27 +avant_poste avant_poste NOM m p 2.15 3.72 0.62 3.45 +avant_première avant_première NOM f s 0.50 0.41 0.45 0.41 +avant_première avant_première NOM f p 0.50 0.41 0.05 0.00 +avant_printemps avant_printemps NOM m 0.00 0.07 0.00 0.07 +avant_projet avant_projet NOM m s 0.04 0.00 0.04 0.00 +avant_propos avant_propos NOM m 0.05 0.41 0.05 0.41 +avant_scène avant_scène NOM f s 0.73 0.88 0.73 0.68 +avant_scène avant_scène NOM f p 0.73 0.88 0.00 0.20 +avant_toit avant_toit NOM m s 0.03 0.27 0.01 0.27 +avant_toit avant_toit NOM m p 0.03 0.27 0.02 0.00 +avant_train avant_train NOM m s 0.02 0.34 0.01 0.20 +avant_train avant_train NOM m p 0.02 0.34 0.01 0.14 +avant_trou avant_trou NOM m s 0.01 0.00 0.01 0.00 +avant_veille avant_veille NOM f s 0.01 3.65 0.01 3.65 +avant avant PRE 529.51 574.32 529.51 574.32 +avantage avantage NOM m s 24.63 32.16 16.95 21.28 +avantageaient avantager VER 0.95 2.09 0.01 0.00 ind:imp:3p; +avantageais avantager VER 0.95 2.09 0.00 0.07 ind:imp:1s; +avantageait avantager VER 0.95 2.09 0.03 0.20 ind:imp:3s; +avantageant avantager VER 0.95 2.09 0.00 0.07 par:pre; +avantagent avantager VER 0.95 2.09 0.03 0.00 ind:pre:3p; +avantager avantager VER 0.95 2.09 0.07 0.14 inf; +avantagera avantager VER 0.95 2.09 0.04 0.07 ind:fut:3s; +avantages avantage NOM m p 24.63 32.16 7.68 10.88 +avantageuse avantageux ADJ f s 1.36 5.07 0.36 1.01 +avantageusement avantageusement ADV 0.16 1.42 0.16 1.42 +avantageuses avantageux ADJ f p 1.36 5.07 0.04 0.54 +avantageux avantageux ADJ m 1.36 5.07 0.95 3.51 +avantagé avantager VER m s 0.95 2.09 0.12 0.47 par:pas; +avantagée avantager VER f s 0.95 2.09 0.05 0.07 par:pas; +avantagés avantager VER m p 0.95 2.09 0.01 0.20 par:pas; +avança avancer VER 95.62 195.00 0.48 27.97 ind:pas:3s; +avançai avancer VER 95.62 195.00 0.14 2.16 ind:pas:1s; +avançaient avancer VER 95.62 195.00 0.27 9.05 ind:imp:3p; +avançais avancer VER 95.62 195.00 0.47 4.19 ind:imp:1s;ind:imp:2s; +avançait avancer VER 95.62 195.00 1.70 34.32 ind:imp:3s; +avançant avancer VER 95.62 195.00 0.50 10.41 par:pre; +avançâmes avancer VER 95.62 195.00 0.00 0.20 ind:pas:1p; +avançons avancer VER 95.62 195.00 1.54 1.82 imp:pre:1p;ind:pre:1p; +avançât avancer VER 95.62 195.00 0.00 0.27 sub:imp:3s; +avants avant NOM m p 8.05 21.35 0.11 0.14 +avare avare ADJ s 2.69 7.09 2.26 5.95 +avarement avarement ADV 0.00 0.20 0.00 0.20 +avares avare ADJ p 2.69 7.09 0.43 1.15 +avarice avarice NOM f s 1.18 3.24 1.18 3.18 +avarices avarice NOM f p 1.18 3.24 0.00 0.07 +avaricieuse avaricieux ADJ f s 0.00 0.27 0.00 0.14 +avaricieusement avaricieusement ADV 0.00 0.14 0.00 0.14 +avaricieux avaricieux NOM m 0.01 0.07 0.01 0.07 +avarie avarie NOM f s 1.19 1.08 0.25 0.41 +avarient avarier VER 0.23 0.27 0.00 0.07 ind:pre:3p; +avaries avarie NOM f p 1.19 1.08 0.94 0.68 +avarié avarié ADJ m s 0.92 1.69 0.20 0.54 +avariée avarié ADJ f s 0.92 1.69 0.35 0.41 +avariées avarié ADJ f p 0.92 1.69 0.16 0.27 +avariés avarié ADJ m p 0.92 1.69 0.21 0.47 +avaro avaro NOM m s 0.00 0.41 0.00 0.20 +avaros avaro NOM m p 0.00 0.41 0.00 0.20 +avatar avatar NOM m s 2.55 4.93 2.41 2.91 +avatars avatar NOM m p 2.55 4.93 0.14 2.03 +ave ave NOM m 3.75 2.36 3.75 2.36 +avec avec PRE 3704.89 4000.41 3704.89 4000.41 +avelines aveline NOM f p 0.00 0.07 0.00 0.07 +avenant avenant ADJ m s 0.78 2.84 0.52 0.88 +avenante avenant ADJ f s 0.78 2.84 0.26 1.15 +avenantes avenant ADJ f p 0.78 2.84 0.00 0.61 +avenants avenant NOM m p 0.27 0.88 0.01 0.00 +avenir avenir NOM m s 72.61 113.72 72.47 113.18 +avenirs avenir NOM m p 72.61 113.72 0.14 0.54 +avent avent NOM m s 0.06 0.47 0.06 0.47 +aventura aventurer VER 2.63 12.57 0.14 0.54 ind:pas:3s; +aventurai aventurer VER 2.63 12.57 0.01 0.27 ind:pas:1s; +aventuraient aventurer VER 2.63 12.57 0.03 0.54 ind:imp:3p; +aventurais aventurer VER 2.63 12.57 0.00 0.07 ind:imp:1s; +aventurait aventurer VER 2.63 12.57 0.04 1.01 ind:imp:3s; +aventurant aventurer VER 2.63 12.57 0.01 0.54 par:pre; +aventure aventure NOM f s 29.66 84.86 22.54 54.86 +aventurent aventurer VER 2.63 12.57 0.09 0.54 ind:pre:3p; +aventurer aventurer VER 2.63 12.57 0.60 3.99 inf; +aventurerai aventurer VER 2.63 12.57 0.00 0.07 ind:fut:1s; +aventurerais aventurer VER 2.63 12.57 0.06 0.00 cnd:pre:1s; +aventurerait aventurer VER 2.63 12.57 0.03 0.07 cnd:pre:3s; +aventures aventure NOM f p 29.66 84.86 7.13 30.00 +aventureuse aventureux ADJ f s 0.95 3.65 0.11 1.49 +aventureuses aventureux ADJ f p 0.95 3.65 0.15 0.47 +aventureux aventureux ADJ m 0.95 3.65 0.69 1.69 +aventurez aventurer VER 2.63 12.57 0.07 0.00 imp:pre:2p;ind:pre:2p; +aventurier aventurier NOM m s 2.36 7.50 0.92 3.72 +aventuriers aventurier NOM m p 2.36 7.50 1.05 2.43 +aventurines aventurine NOM f p 0.00 0.07 0.00 0.07 +aventurions aventurer VER 2.63 12.57 0.01 0.14 ind:imp:1p; +aventurière aventurier NOM f s 2.36 7.50 0.39 0.95 +aventurières aventurière NOM f p 0.16 0.00 0.16 0.00 +aventurons aventurer VER 2.63 12.57 0.04 0.14 imp:pre:1p;ind:pre:1p; +aventurât aventurer VER 2.63 12.57 0.00 0.14 sub:imp:3s; +aventurèrent aventurer VER 2.63 12.57 0.00 0.07 ind:pas:3p; +aventuré aventurer VER m s 2.63 12.57 0.23 1.49 par:pas; +aventurée aventurer VER f s 2.63 12.57 0.22 0.68 par:pas; +aventurées aventurer VER f p 2.63 12.57 0.00 0.07 par:pas; +aventurés aventurer VER m p 2.63 12.57 0.14 0.54 par:pas; +avenu avenu ADJ m s 0.07 1.42 0.05 0.41 +avenue avenue NOM f s 8.70 47.70 8.19 40.81 +avenues avenue NOM f p 8.70 47.70 0.52 6.89 +avenus avenu ADJ m p 0.07 1.42 0.03 0.27 +avers avers NOM m 0.00 0.14 0.00 0.14 +averse averse NOM f s 1.77 11.96 1.15 9.80 +averses averse NOM f p 1.77 11.96 0.63 2.16 +aversion aversion NOM f s 0.97 2.64 0.97 2.57 +aversions aversion NOM f p 0.97 2.64 0.00 0.07 +avertît avertir VER 30.80 37.70 0.00 0.14 sub:imp:3s; +averti avertir VER m s 30.80 37.70 6.26 9.73 par:pas; +avertie avertir VER f s 30.80 37.70 2.08 2.23 par:pas; +averties avertir VER f p 30.80 37.70 0.10 0.41 par:pas; +avertir avertir VER 30.80 37.70 13.49 11.01 inf; +avertira avertir VER 30.80 37.70 0.43 0.00 ind:fut:3s; +avertirai avertir VER 30.80 37.70 0.59 0.20 ind:fut:1s; +avertirait avertir VER 30.80 37.70 0.01 0.47 cnd:pre:3s; +avertiras avertir VER 30.80 37.70 0.03 0.00 ind:fut:2s; +avertirent avertir VER 30.80 37.70 0.10 0.34 ind:pas:3p; +avertirez avertir VER 30.80 37.70 0.01 0.07 ind:fut:2p; +avertis avertir VER m p 30.80 37.70 4.75 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +avertissaient avertir VER 30.80 37.70 0.01 0.27 ind:imp:3p; +avertissais avertir VER 30.80 37.70 0.03 0.27 ind:imp:1s;ind:imp:2s; +avertissait avertir VER 30.80 37.70 0.12 2.03 ind:imp:3s; +avertissant avertir VER 30.80 37.70 0.05 0.54 par:pre; +avertisse avertir VER 30.80 37.70 0.30 0.68 sub:pre:1s;sub:pre:3s; +avertissement avertissement NOM m s 9.60 9.53 8.68 7.09 +avertissements avertissement NOM m p 9.60 9.53 0.92 2.43 +avertissent avertir VER 30.80 37.70 0.20 0.41 ind:pre:3p; +avertisseur avertisseur NOM m s 0.15 1.89 0.14 1.08 +avertisseurs avertisseur NOM m p 0.15 1.89 0.01 0.81 +avertisseuses avertisseur ADJ f p 0.04 0.34 0.00 0.07 +avertissez avertir VER 30.80 37.70 1.52 0.20 imp:pre:2p;ind:pre:2p; +avertissiez avertir VER 30.80 37.70 0.03 0.00 ind:imp:2p; +avertissons avertir VER 30.80 37.70 0.09 0.14 imp:pre:1p;ind:pre:1p; +avertit avertir VER 30.80 37.70 0.61 5.07 ind:pre:3s;ind:pas:3s; +aveu aveu NOM m s 11.15 21.55 5.86 13.45 +aveugla aveugler VER 6.50 15.47 0.00 0.47 ind:pas:3s; +aveuglaient aveugler VER 6.50 15.47 0.03 0.74 ind:imp:3p; +aveuglais aveugler VER 6.50 15.47 0.00 0.07 ind:imp:1s; +aveuglait aveugler VER 6.50 15.47 0.14 1.22 ind:imp:3s; +aveuglant aveuglant ADJ m s 1.00 6.15 0.35 2.16 +aveuglante aveuglant ADJ f s 1.00 6.15 0.61 3.11 +aveuglantes aveuglant ADJ f p 1.00 6.15 0.04 0.34 +aveuglants aveuglant ADJ m p 1.00 6.15 0.01 0.54 +aveugle_né aveugle_né NOM m s 0.00 0.14 0.00 0.07 +aveugle_né aveugle_né NOM f s 0.00 0.14 0.00 0.07 +aveugle aveugle ADJ s 38.53 38.51 33.85 30.20 +aveuglement aveuglement NOM m s 1.79 4.46 1.77 4.39 +aveuglements aveuglement NOM m p 1.79 4.46 0.01 0.07 +aveuglent aveugler VER 6.50 15.47 0.21 0.47 ind:pre:3p; +aveugler aveugler VER 6.50 15.47 1.54 1.96 inf; +aveuglera aveugler VER 6.50 15.47 0.30 0.00 ind:fut:3s; +aveuglerait aveugler VER 6.50 15.47 0.04 0.07 cnd:pre:3s; +aveugles aveugle ADJ p 38.53 38.51 4.67 8.31 +aveuglez aveugler VER 6.50 15.47 0.03 0.00 imp:pre:2p; +aveuglons aveugler VER 6.50 15.47 0.01 0.00 imp:pre:1p; +aveuglât aveugler VER 6.50 15.47 0.00 0.07 sub:imp:3s; +aveuglèrent aveugler VER 6.50 15.47 0.00 0.07 ind:pas:3p; +aveuglé aveugler VER m s 6.50 15.47 1.32 4.05 par:pas; +aveuglée aveugler VER f s 6.50 15.47 0.45 1.42 par:pas; +aveuglées aveugler VER f p 6.50 15.47 0.01 0.14 par:pas; +aveuglément aveuglément ADV 1.30 3.31 1.30 3.31 +aveuglés aveugler VER m p 6.50 15.47 0.31 1.96 par:pas; +aveuli aveulir VER m s 0.00 0.07 0.00 0.07 par:pas; +aveulissante aveulissant ADJ f s 0.00 0.07 0.00 0.07 +aveux aveu NOM m p 11.15 21.55 5.29 8.11 +avez avoir AUX 18559.23 12800.81 1122.37 206.82 ind:pre:2p; +aviaire aviaire ADJ s 0.37 0.00 0.37 0.00 +aviateur aviateur NOM m s 3.06 8.85 1.23 4.05 +aviateurs aviateur NOM m p 3.06 8.85 1.68 4.73 +aviation aviation NOM f s 5.18 13.72 5.17 13.38 +aviations aviation NOM f p 5.18 13.72 0.01 0.34 +aviatrice aviateur NOM f s 3.06 8.85 0.16 0.00 +aviatrices aviatrice NOM f p 0.02 0.00 0.02 0.00 +avicole avicole ADJ f s 0.01 0.00 0.01 0.00 +aviculture aviculture NOM f s 0.10 0.00 0.10 0.00 +avide avide ADJ s 3.52 16.22 1.94 10.34 +avidement avidement ADV 0.38 6.08 0.38 6.08 +avides avide ADJ p 3.52 16.22 1.57 5.88 +avidité avidité NOM f s 1.05 7.97 1.05 7.91 +avidités avidité NOM f p 1.05 7.97 0.00 0.07 +aviez avoir AUX 18559.23 12800.81 50.30 16.35 ind:imp:2p; +avignonnais avignonnais NOM m 0.00 0.07 0.00 0.07 +avignonnaise avignonnais ADJ f s 0.00 0.07 0.00 0.07 +avili avilir VER m s 0.69 2.64 0.03 0.41 par:pas; +avilie avilir VER f s 0.69 2.64 0.20 0.07 par:pas; +avilies avilir VER f p 0.69 2.64 0.01 0.07 par:pas; +avilir avilir VER 0.69 2.64 0.27 1.22 inf; +avilis avilir VER m p 0.69 2.64 0.04 0.27 ind:pre:1s;ind:pre:2s;par:pas; +avilissait avilir VER 0.69 2.64 0.01 0.14 ind:imp:3s; +avilissant avilissant ADJ m s 0.62 0.88 0.39 0.41 +avilissante avilissant ADJ f s 0.62 0.88 0.10 0.20 +avilissantes avilissant ADJ f p 0.62 0.88 0.10 0.07 +avilissants avilissant ADJ m p 0.62 0.88 0.03 0.20 +avilissement avilissement NOM m s 0.16 0.34 0.16 0.34 +avilissent avilir VER 0.69 2.64 0.01 0.07 ind:pre:3p; +avilit avilir VER 0.69 2.64 0.09 0.34 ind:pre:3s;ind:pas:3s; +aviné aviné ADJ m s 0.05 1.89 0.01 0.54 +avinée aviné ADJ f s 0.05 1.89 0.01 0.68 +avinées aviné ADJ f p 0.05 1.89 0.00 0.20 +avinés aviné ADJ m p 0.05 1.89 0.03 0.47 +avion_cargo avion_cargo NOM m s 0.20 0.14 0.20 0.00 +avion_citerne avion_citerne NOM m s 0.03 0.00 0.03 0.00 +avion_suicide avion_suicide NOM m s 0.01 0.07 0.01 0.07 +avion_école avion_école NOM m s 0.01 0.00 0.01 0.00 +avion avion NOM m s 125.29 78.04 105.54 46.82 +avionique avionique NOM f s 0.13 0.00 0.13 0.00 +avionnettes avionnette NOM f p 0.00 0.07 0.00 0.07 +avionneurs avionneur NOM m p 0.01 0.00 0.01 0.00 +avion_cargo avion_cargo NOM m p 0.20 0.14 0.00 0.14 +avions_espions avions_espions NOM m p 0.01 0.00 0.01 0.00 +avions avoir AUX 18559.23 12800.81 16.42 81.01 ind:imp:1p; +aviron aviron NOM m s 1.73 2.36 1.35 0.95 +avirons aviron NOM m p 1.73 2.36 0.38 1.42 +avis avis NOM m p 139.22 65.14 139.22 65.14 +avisa aviser VER 9.77 27.50 0.14 4.66 ind:pas:3s; +avisai aviser VER 9.77 27.50 0.01 1.76 ind:pas:1s; +avisaient aviser VER 9.77 27.50 0.01 0.20 ind:imp:3p; +avisais aviser VER 9.77 27.50 0.01 0.20 ind:imp:1s; +avisait aviser VER 9.77 27.50 0.10 2.09 ind:imp:3s; +avisant aviser VER 9.77 27.50 0.02 2.50 par:pre; +avise aviser VER 9.77 27.50 3.52 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avisent aviser VER 9.77 27.50 0.02 0.07 ind:pre:3p; +aviser aviser VER 9.77 27.50 0.65 3.18 inf; +avisera aviser VER 9.77 27.50 0.81 0.54 ind:fut:3s; +aviserai aviser VER 9.77 27.50 0.44 0.20 ind:fut:1s; +aviseraient aviser VER 9.77 27.50 0.00 0.07 cnd:pre:3p; +aviserais aviser VER 9.77 27.50 0.02 0.20 cnd:pre:1s; +aviserait aviser VER 9.77 27.50 0.01 0.68 cnd:pre:3s; +aviseras aviser VER 9.77 27.50 0.00 0.07 ind:fut:2s; +aviserons aviser VER 9.77 27.50 0.65 0.54 ind:fut:1p; +aviseront aviser VER 9.77 27.50 0.05 0.00 ind:fut:3p; +avises aviser VER 9.77 27.50 0.32 0.20 ind:pre:2s; +avisez aviser VER 9.77 27.50 0.89 0.14 imp:pre:2p;ind:pre:2p; +avisions aviser VER 9.77 27.50 0.00 0.07 ind:imp:1p; +aviso aviso NOM m s 0.02 2.23 0.02 1.08 +avisos aviso NOM m p 0.02 2.23 0.00 1.15 +avisât aviser VER 9.77 27.50 0.27 0.34 sub:imp:3s; +avisèrent aviser VER 9.77 27.50 0.12 0.14 ind:pas:3p; +avisé aviser VER m s 9.77 27.50 1.21 3.99 par:pas; +avisée avisé ADJ f s 1.76 2.36 0.32 0.54 +avisées avisé ADJ f p 1.76 2.36 0.01 0.00 +avisés avisé ADJ m p 1.76 2.36 0.56 0.47 +avitailler avitailler VER 0.01 0.00 0.01 0.00 inf; +avitaminose avitaminose NOM f s 0.00 0.07 0.00 0.07 +aviva aviver VER 0.19 4.26 0.01 0.20 ind:pas:3s; +avivaient aviver VER 0.19 4.26 0.00 0.07 ind:imp:3p; +avivait aviver VER 0.19 4.26 0.00 0.74 ind:imp:3s; +avivant aviver VER 0.19 4.26 0.00 0.14 par:pre; +avive aviver VER 0.19 4.26 0.00 0.61 ind:pre:3s; +avivent aviver VER 0.19 4.26 0.11 0.27 ind:pre:3p; +aviver aviver VER 0.19 4.26 0.03 0.54 inf; +avivons aviver VER 0.19 4.26 0.01 0.07 imp:pre:1p;ind:pre:1p; +avivât aviver VER 0.19 4.26 0.00 0.07 sub:imp:3s; +avivèrent aviver VER 0.19 4.26 0.00 0.07 ind:pas:3p; +avivé aviver VER m s 0.19 4.26 0.02 0.47 par:pas; +avivée aviver VER f s 0.19 4.26 0.00 0.68 par:pas; +avivées aviver VER f p 0.19 4.26 0.00 0.27 par:pas; +avivés aviver VER m p 0.19 4.26 0.00 0.07 par:pas; +avocaillon avocaillon NOM m s 0.16 0.00 0.16 0.00 +avocasseries avocasserie NOM f p 0.00 0.07 0.00 0.07 +avocat_conseil avocat_conseil NOM m s 0.08 0.00 0.08 0.00 +avocat avocat NOM m s 112.69 37.64 89.28 24.32 +avocate avocat NOM f s 112.69 37.64 7.56 1.55 +avocates avocat NOM f p 112.69 37.64 0.10 0.00 +avocatier avocatier NOM m s 0.04 0.00 0.04 0.00 +avocats avocat NOM m p 112.69 37.64 15.76 11.76 +avocette avocette NOM f s 0.01 0.14 0.01 0.14 +avoient avoyer VER 0.00 0.14 0.00 0.07 ind:pre:3p; +avoinaient avoiner VER 0.00 0.34 0.00 0.07 ind:imp:3p; +avoine avoine NOM f s 1.54 6.96 1.52 6.35 +avoiner avoiner VER 0.00 0.34 0.00 0.27 inf; +avoines avoine NOM f p 1.54 6.96 0.01 0.61 +avoir avoir AUX 18559.23 12800.81 674.24 649.26 inf; +avoirs avoir NOM m p 3.13 3.31 0.41 0.54 +avoisinaient avoisiner VER 0.26 1.49 0.00 0.07 ind:imp:3p; +avoisinait avoisiner VER 0.26 1.49 0.02 0.47 ind:imp:3s; +avoisinant avoisinant ADJ m s 0.43 1.89 0.05 0.07 +avoisinante avoisinant ADJ f s 0.43 1.89 0.16 0.14 +avoisinantes avoisinant ADJ f p 0.43 1.89 0.18 1.15 +avoisinants avoisinant ADJ m p 0.43 1.89 0.05 0.54 +avoisine avoisiner VER 0.26 1.49 0.20 0.20 ind:pre:3s; +avoisinent avoisiner VER 0.26 1.49 0.00 0.27 ind:pre:3p; +avoisiner avoisiner VER 0.26 1.49 0.00 0.14 inf; +avoisinerait avoisiner VER 0.26 1.49 0.00 0.07 cnd:pre:3s; +avons avoir AUX 18559.23 12800.81 291.71 190.00 ind:pre:1p; +avorta avorter VER 5.43 4.32 0.01 0.07 ind:pas:3s; +avortait avorter VER 5.43 4.32 0.00 0.14 ind:imp:3s; +avortant avorter VER 5.43 4.32 0.01 0.00 par:pre; +avorte avorter VER 5.43 4.32 0.61 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avortement avortement NOM m s 5.24 2.70 4.37 2.16 +avortements avortement NOM m p 5.24 2.70 0.87 0.54 +avortent avorter VER 5.43 4.32 0.00 0.14 ind:pre:3p; +avorter avorter VER 5.43 4.32 3.65 3.11 inf; +avorterai avorter VER 5.43 4.32 0.00 0.07 ind:fut:1s; +avorterait avorter VER 5.43 4.32 0.00 0.14 cnd:pre:3s; +avorteriez avorter VER 5.43 4.32 0.00 0.07 cnd:pre:2p; +avorteur avorteur NOM m s 0.37 0.68 0.01 0.07 +avorteurs avorteur NOM m p 0.37 0.68 0.05 0.07 +avorteuse avorteur NOM f s 0.37 0.68 0.31 0.34 +avorteuses avorteur NOM f p 0.37 0.68 0.00 0.20 +avortez avorter VER 5.43 4.32 0.05 0.00 imp:pre:2p;ind:pre:2p; +avorton avorton NOM m s 1.44 2.30 1.35 1.42 +avortons avorton NOM m p 1.44 2.30 0.09 0.88 +avorté avorter VER m s 5.43 4.32 1.01 0.07 par:pas; +avortée avorté ADJ f s 0.40 1.49 0.08 0.47 +avortées avorter VER f p 5.43 4.32 0.02 0.07 par:pas; +avortés avorté ADJ m p 0.40 1.49 0.20 0.14 +avoua avouer VER 61.54 96.22 0.33 7.50 ind:pas:3s; +avouable avouable ADJ s 0.02 1.08 0.01 0.54 +avouables avouable ADJ p 0.02 1.08 0.01 0.54 +avouai avouer VER 61.54 96.22 0.00 1.22 ind:pas:1s; +avouaient avouer VER 61.54 96.22 0.00 0.68 ind:imp:3p; +avouais avouer VER 61.54 96.22 0.22 0.74 ind:imp:1s;ind:imp:2s; +avouait avouer VER 61.54 96.22 0.31 5.47 ind:imp:3s; +avouant avouer VER 61.54 96.22 0.35 1.76 par:pre; +avouas avouer VER 61.54 96.22 0.00 0.07 ind:pas:2s; +avoue avouer VER 61.54 96.22 24.48 24.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +avouent avouer VER 61.54 96.22 0.35 1.22 ind:pre:3p; +avouer avouer VER 61.54 96.22 18.27 33.72 inf; +avouera avouer VER 61.54 96.22 0.26 0.41 ind:fut:3s; +avouerai avouer VER 61.54 96.22 0.71 1.08 ind:fut:1s; +avoueraient avouer VER 61.54 96.22 0.14 0.20 cnd:pre:3p; +avouerais avouer VER 61.54 96.22 0.17 0.34 cnd:pre:1s;cnd:pre:2s; +avouerait avouer VER 61.54 96.22 0.41 0.61 cnd:pre:3s; +avoueras avouer VER 61.54 96.22 0.07 0.95 ind:fut:2s; +avouerez avouer VER 61.54 96.22 0.08 0.74 ind:fut:2p; +avoueriez avouer VER 61.54 96.22 0.00 0.07 cnd:pre:2p; +avouerions avouer VER 61.54 96.22 0.00 0.07 cnd:pre:1p; +avoueront avouer VER 61.54 96.22 0.01 0.07 ind:fut:3p; +avoues avouer VER 61.54 96.22 1.23 0.68 ind:pre:2s; +avouez avouer VER 61.54 96.22 4.07 3.72 imp:pre:2p;ind:pre:2p; +avouiez avouer VER 61.54 96.22 0.03 0.07 ind:imp:2p; +avouions avouer VER 61.54 96.22 0.00 0.07 ind:imp:1p; +avouâmes avouer VER 61.54 96.22 0.00 0.07 ind:pas:1p; +avouons avouer VER 61.54 96.22 0.39 1.42 imp:pre:1p;ind:pre:1p; +avouât avouer VER 61.54 96.22 0.00 0.20 sub:imp:3s; +avouèrent avouer VER 61.54 96.22 0.10 0.27 ind:pas:3p; +avoué avouer VER m s 61.54 96.22 9.50 7.23 par:pas; +avouée avoué ADJ f s 0.24 1.35 0.10 0.14 +avouées avouer VER f p 61.54 96.22 0.04 0.14 par:pas; +avoués avouer VER m p 61.54 96.22 0.02 0.14 par:pas; +avoyer avoyer VER 0.00 0.14 0.00 0.07 inf; +avril avril NOM m 11.23 32.03 11.23 32.03 +avrillée avrillée NOM f s 0.00 0.07 0.00 0.07 +avènement avènement NOM m s 0.53 3.92 0.53 3.92 +avère avérer VER 9.26 6.96 4.59 0.68 ind:pre:3s;sub:pre:3s; +avèrent avérer VER 9.26 6.96 0.26 0.20 ind:pre:3p; +avé avé NOM m 0.11 0.20 0.11 0.20 +avulsion avulsion NOM f s 0.03 0.00 0.03 0.00 +avunculaire avunculaire ADJ s 0.01 0.14 0.01 0.14 +avunculat avunculat NOM m s 0.00 0.07 0.00 0.07 +avéra avérer VER 9.26 6.96 0.25 1.55 ind:pas:3s; +avérai avérer VER 9.26 6.96 0.00 0.07 ind:pas:1s; +avéraient avérer VER 9.26 6.96 0.12 0.61 ind:imp:3p; +avérait avérer VER 9.26 6.96 0.56 2.03 ind:imp:3s; +avérant avérer VER 9.26 6.96 0.00 0.27 par:pre; +avérer avérer VER 9.26 6.96 0.88 0.27 inf; +avérera avérer VER 9.26 6.96 0.10 0.00 ind:fut:3s; +avéreraient avérer VER 9.26 6.96 0.00 0.14 cnd:pre:3p; +avérerait avérer VER 9.26 6.96 0.08 0.00 cnd:pre:3s; +avérât avérer VER 9.26 6.96 0.00 0.07 sub:imp:3s; +avérèrent avérer VER 9.26 6.96 0.04 0.14 ind:pas:3p; +avéré avérer VER m s 9.26 6.96 1.64 0.61 par:pas; +avérée avérer VER f s 9.26 6.96 0.37 0.27 par:pas; +avérées avérer VER f p 9.26 6.96 0.18 0.00 par:pas; +avérés avérer VER m p 9.26 6.96 0.19 0.07 par:pas; +awacs awacs NOM m 0.12 0.00 0.12 0.00 +axa axer VER 0.61 0.88 0.00 0.07 ind:pas:3s; +axe axe NOM m s 3.05 10.88 2.90 9.53 +axel axel NOM m s 0.06 0.00 0.05 0.00 +axels axel NOM m p 0.06 0.00 0.01 0.00 +axent axer VER 0.61 0.88 0.00 0.07 ind:pre:3p; +axer axer VER 0.61 0.88 0.02 0.00 inf; +axes axe NOM m p 3.05 10.88 0.16 1.35 +axial axial ADJ m s 0.06 0.20 0.01 0.20 +axiale axial ADJ f s 0.06 0.20 0.04 0.00 +axillaire axillaire ADJ s 0.05 0.00 0.05 0.00 +axiomatisation axiomatisation NOM f s 0.00 0.07 0.00 0.07 +axiome axiome NOM m s 0.11 0.61 0.10 0.41 +axiomes axiome NOM m p 0.11 0.61 0.01 0.20 +axis axis NOM m 3.87 0.00 3.87 0.00 +axolotl axolotl NOM m s 0.02 0.07 0.02 0.00 +axolotls axolotl NOM m p 0.02 0.07 0.00 0.07 +axonge axonge NOM f s 0.00 0.07 0.00 0.07 +axé axer VER m s 0.61 0.88 0.19 0.20 par:pas; +axée axer VER f s 0.61 0.88 0.08 0.47 par:pas; +axées axer VER f p 0.61 0.88 0.13 0.00 par:pas; +axés axer VER m p 0.61 0.88 0.05 0.00 par:pas; +aya aya NOM f s 0.03 0.00 0.03 0.00 +ayans ayan NOM m p 0.00 0.07 0.00 0.07 +ayant avoir AUX 18559.23 12800.81 21.68 147.84 par:pre; +ayants_droit ayants_droit NOM m p 0.01 0.14 0.01 0.14 +ayatollah ayatollah NOM m s 0.53 0.27 0.50 0.14 +ayatollahs ayatollah NOM m p 0.53 0.27 0.03 0.14 +aye_aye aye_aye NOM m s 0.01 0.00 0.01 0.00 +ayez avoir AUX 18559.23 12800.81 20.80 5.34 sub:pre:2p; +ayons avoir AUX 18559.23 12800.81 4.36 4.39 sub:pre:1p; +ayuntamiento ayuntamiento NOM m s 0.00 0.07 0.00 0.07 +azalée azalée NOM f s 0.13 1.22 0.05 0.20 +azalées azalée NOM f p 0.13 1.22 0.08 1.01 +azerbaïdjanais azerbaïdjanais ADJ m 0.00 0.07 0.00 0.07 +azerbaïdjanais azerbaïdjanais NOM m 0.00 0.07 0.00 0.07 +azimut azimut NOM m s 0.78 1.69 0.26 0.07 +azimutal azimutal ADJ m s 0.01 0.00 0.01 0.00 +azimuts azimut NOM m p 0.78 1.69 0.52 1.62 +azimuté azimuter VER m s 0.03 0.20 0.03 0.14 par:pas; +azimutée azimuter VER f s 0.03 0.20 0.00 0.07 par:pas; +azoïque azoïque ADJ m s 0.01 0.00 0.01 0.00 +azoospermie azoospermie NOM f s 0.01 0.00 0.01 0.00 +azote azote NOM m s 1.05 0.14 1.05 0.14 +azoture azoture NOM m s 0.01 0.00 0.01 0.00 +aztèque aztèque ADJ s 0.60 0.74 0.51 0.27 +aztèques aztèque ADJ p 0.60 0.74 0.09 0.47 +azulejo azulejo NOM m s 0.10 0.54 0.10 0.00 +azulejos azulejo NOM m p 0.10 0.54 0.00 0.54 +azur azur NOM m s 2.98 9.53 2.98 9.39 +azéri azéri ADJ m s 0.27 0.07 0.27 0.00 +azéris azéri ADJ m p 0.27 0.07 0.00 0.07 +azurs azur NOM m p 2.98 9.53 0.00 0.14 +azuré azuré ADJ m s 0.14 0.68 0.13 0.00 +azurée azuré ADJ f s 0.14 0.68 0.01 0.27 +azurées azuré ADJ f p 0.14 0.68 0.00 0.34 +azurés azuré ADJ m p 0.14 0.68 0.00 0.07 +azygos azygos ADJ f s 0.01 0.00 0.01 0.00 +azyme azyme ADJ m s 0.04 0.41 0.04 0.41 +b b NOM m 31.78 8.65 31.78 8.65 +bôme bôme NOM f s 0.02 0.47 0.02 0.47 +bûchais bûcher VER 0.30 0.54 0.02 0.00 ind:imp:1s; +bûchant bûcher VER 0.30 0.54 0.01 0.07 par:pre; +bûche bûche NOM f s 2.91 13.18 2.09 5.14 +bûchent bûcher VER 0.30 0.54 0.01 0.00 ind:pre:3p; +bûcher bûcher NOM m s 3.82 9.59 3.43 7.09 +bûcheron bûcheron NOM m s 3.33 8.24 2.13 4.12 +bûcheronne bûcheronner VER 0.00 0.20 0.00 0.07 ind:pre:3s; +bûcheronner bûcheronner VER 0.00 0.20 0.00 0.14 inf; +bûcherons bûcheron NOM m p 3.33 8.24 1.20 4.12 +bûchers bûcher NOM m p 3.82 9.59 0.40 2.50 +bûches bûche NOM f p 2.91 13.18 0.82 8.04 +bûchette bûchette NOM f s 0.01 0.61 0.00 0.14 +bûchettes bûchette NOM f p 0.01 0.61 0.01 0.47 +bûcheur bûcheur NOM m s 0.20 0.61 0.04 0.20 +bûcheurs bûcheur NOM m p 0.20 0.61 0.05 0.20 +bûcheuse bûcheur NOM f s 0.20 0.61 0.11 0.14 +bûcheuses bûcheur NOM f p 0.20 0.61 0.00 0.07 +bûchez bûcher VER 0.30 0.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +bûché bûcher VER m s 0.30 0.54 0.07 0.07 par:pas; +bûmes boire VER 339.06 274.32 0.03 1.89 ind:pas:1p; +bût boire VER 339.06 274.32 0.01 0.00 sub:imp:3s; +baïonnette baïonnette NOM f s 2.33 7.57 1.28 4.80 +baïonnettes baïonnette NOM f p 2.33 7.57 1.05 2.77 +baba baba NOM m s 1.05 1.89 0.80 1.42 +baballe baballe NOM f s 0.18 0.34 0.18 0.34 +babas baba NOM m p 1.05 1.89 0.26 0.47 +babasse babasse NOM s 0.00 0.07 0.00 0.07 +babel babel NOM m s 0.05 0.00 0.05 0.00 +babeurre babeurre NOM m s 0.13 0.00 0.13 0.00 +babi babi NOM m s 0.02 0.00 0.02 0.00 +babil babil NOM m s 0.07 0.74 0.07 0.68 +babillage babillage NOM m s 0.34 0.81 0.07 0.54 +babillages babillage NOM m p 0.34 0.81 0.26 0.27 +babillaient babiller VER 0.41 1.42 0.00 0.34 ind:imp:3p; +babillait babiller VER 0.41 1.42 0.02 0.27 ind:imp:3s; +babillant babiller VER 0.41 1.42 0.03 0.07 par:pre; +babillard babillard NOM m s 0.01 0.07 0.01 0.07 +babillarde babillard ADJ f s 0.02 0.20 0.02 0.14 +babille babiller VER 0.41 1.42 0.02 0.07 ind:pre:1s;ind:pre:3s; +babillent babiller VER 0.41 1.42 0.00 0.07 ind:pre:3p; +babiller babiller VER 0.41 1.42 0.34 0.54 inf; +babilles babiller VER 0.41 1.42 0.00 0.07 ind:pre:2s; +babillé babiller VER m s 0.41 1.42 0.01 0.00 par:pas; +babils babil NOM m p 0.07 0.74 0.00 0.07 +babine babine NOM f s 0.33 3.38 0.00 0.47 +babines babine NOM f p 0.33 3.38 0.33 2.91 +babiole babiole NOM f s 1.85 2.03 0.48 0.47 +babioles babiole NOM f p 1.85 2.03 1.36 1.55 +babiroussa babiroussa NOM m s 0.00 0.07 0.00 0.07 +babouche babouche NOM f s 0.08 2.64 0.04 0.34 +babouches babouche NOM f p 0.08 2.64 0.04 2.30 +babouchka babouchka NOM f s 0.12 3.72 0.12 2.91 +babouchkas babouchka NOM f p 0.12 3.72 0.00 0.81 +babouin babouin NOM m s 2.00 1.15 1.41 0.54 +babouine babouin NOM f s 2.00 1.15 0.00 0.14 +babouines babouine NOM f p 0.01 0.00 0.01 0.00 +babouins babouin NOM m p 2.00 1.15 0.58 0.34 +babouvistes babouviste NOM p 0.00 0.14 0.00 0.14 +babélienne babélien ADJ f s 0.00 0.07 0.00 0.07 +baby_boom baby_boom NOM m s 0.05 0.00 0.05 0.00 +baby_foot baby_foot NOM m 0.55 0.74 0.55 0.74 +baby_sitter baby_sitter NOM f s 7.85 0.20 7.00 0.14 +baby_sitter baby_sitter NOM f p 7.85 0.20 0.85 0.07 +baby_sitting baby_sitting NOM m s 1.63 0.41 1.63 0.41 +baby baby NOM m s 13.20 2.84 13.19 2.77 +babylonien babylonien ADJ m s 0.10 0.47 0.08 0.27 +babylonienne babylonien NOM f s 0.11 0.14 0.02 0.00 +babyloniens babylonien NOM m p 0.11 0.14 0.06 0.14 +babys baby NOM m p 13.20 2.84 0.01 0.07 +bac bac NOM m s 9.99 16.08 9.03 13.99 +baccalauréat baccalauréat NOM m s 0.49 1.89 0.49 1.89 +baccara baccara NOM m s 0.22 1.08 0.22 1.08 +baccarat baccarat NOM m s 0.05 0.00 0.05 0.00 +bacchanal bacchanal NOM m s 0.04 0.14 0.04 0.14 +bacchanale bacchanale NOM f s 0.39 0.54 0.37 0.41 +bacchanales bacchanale NOM f p 0.39 0.54 0.02 0.14 +bacchante bacchante NOM f s 0.67 2.70 0.67 1.15 +bacchantes bacchante NOM f p 0.67 2.70 0.00 1.55 +bachaghas bachagha NOM m p 0.00 0.07 0.00 0.07 +bachelier bachelier NOM m s 0.09 1.76 0.05 1.22 +bacheliers bachelier NOM m p 0.09 1.76 0.04 0.41 +bachelière bachelier NOM f s 0.09 1.76 0.00 0.14 +bachi_bouzouk bachi_bouzouk NOM m s 0.00 0.07 0.00 0.07 +bachique bachique ADJ m s 0.00 0.34 0.00 0.07 +bachiques bachique ADJ p 0.00 0.34 0.00 0.27 +bachot bachot NOM m s 0.29 3.85 0.29 3.18 +bachotage bachotage NOM m s 0.02 0.00 0.02 0.00 +bachotaient bachoter VER 0.03 0.20 0.00 0.07 ind:imp:3p; +bachotait bachoter VER 0.03 0.20 0.01 0.07 ind:imp:3s; +bachotant bachoter VER 0.03 0.20 0.00 0.07 par:pre; +bachoter bachoter VER 0.03 0.20 0.01 0.00 inf; +bachots bachot NOM m p 0.29 3.85 0.00 0.68 +bacillaires bacillaire ADJ f p 0.00 0.14 0.00 0.14 +bacille bacille NOM m s 0.45 1.15 0.18 0.34 +bacilles bacille NOM m p 0.45 1.15 0.26 0.81 +back_up back_up NOM m s 0.09 0.00 0.09 0.00 +back back NOM m s 4.82 0.74 4.82 0.74 +backgammon backgammon NOM m s 0.66 0.00 0.66 0.00 +background background NOM m s 0.05 0.07 0.05 0.07 +bacon bacon NOM m s 4.50 0.47 4.50 0.47 +bacs bac NOM m p 9.99 16.08 0.96 2.09 +bactéricide bactéricide ADJ m s 0.02 0.00 0.01 0.00 +bactéricides bactéricide ADJ p 0.02 0.00 0.01 0.00 +bactérie bactérie NOM f s 5.00 0.88 2.22 0.27 +bactérien bactérien ADJ m s 0.49 0.00 0.07 0.00 +bactérienne bactérien ADJ f s 0.49 0.00 0.34 0.00 +bactériennes bactérien ADJ f p 0.49 0.00 0.08 0.00 +bactéries bactérie NOM f p 5.00 0.88 2.79 0.61 +bactériologie bactériologie NOM f s 0.11 0.00 0.11 0.00 +bactériologique bactériologique ADJ s 0.82 0.14 0.45 0.14 +bactériologiques bactériologique ADJ p 0.82 0.14 0.37 0.00 +bactériologiste bactériologiste NOM s 0.01 0.00 0.01 0.00 +bactériophage bactériophage NOM m s 0.07 0.00 0.07 0.00 +bactériémie bactériémie NOM f s 0.01 0.00 0.01 0.00 +bada bader VER 0.40 2.36 0.37 2.16 ind:pas:3s; +badabam badabam ONO 0.00 0.14 0.00 0.14 +badaboum badaboum ONO 0.12 0.74 0.12 0.74 +badamier badamier NOM m s 0.27 0.34 0.27 0.00 +badamiers badamier NOM m p 0.27 0.34 0.00 0.34 +badant bader VER 0.40 2.36 0.00 0.14 par:pre; +badaud badaud NOM m s 0.54 6.82 0.05 0.68 +badauda badauder VER 0.10 0.41 0.00 0.07 ind:pas:3s; +badaudaient badauder VER 0.10 0.41 0.10 0.07 ind:imp:3p; +badaudant badauder VER 0.10 0.41 0.00 0.14 par:pre; +badaude badauder VER 0.10 0.41 0.00 0.07 ind:pre:1s; +badauder badauder VER 0.10 0.41 0.00 0.07 inf; +badauderie badauderie NOM f s 0.00 0.34 0.00 0.20 +badauderies badauderie NOM f p 0.00 0.34 0.00 0.14 +badauds badaud NOM m p 0.54 6.82 0.49 6.15 +bader bader VER 0.40 2.36 0.01 0.07 inf; +baderne baderne NOM f s 0.08 0.47 0.07 0.27 +badernes baderne NOM f p 0.08 0.47 0.01 0.20 +bades bader VER 0.40 2.36 0.02 0.00 ind:pre:2s; +badge badge NOM m s 7.14 1.42 6.03 0.74 +badges badge NOM m p 7.14 1.42 1.12 0.68 +badgés badgé ADJ m p 0.00 0.07 0.00 0.07 +badigeon badigeon NOM m s 0.00 1.01 0.00 0.88 +badigeonna badigeonner VER 0.13 3.31 0.00 0.20 ind:pas:3s; +badigeonnage badigeonnage NOM m s 0.00 0.20 0.00 0.07 +badigeonnages badigeonnage NOM m p 0.00 0.20 0.00 0.14 +badigeonnaient badigeonner VER 0.13 3.31 0.00 0.07 ind:imp:3p; +badigeonnait badigeonner VER 0.13 3.31 0.00 0.14 ind:imp:3s; +badigeonnant badigeonner VER 0.13 3.31 0.00 0.14 par:pre; +badigeonne badigeonner VER 0.13 3.31 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +badigeonner badigeonner VER 0.13 3.31 0.04 0.27 inf; +badigeonnerai badigeonner VER 0.13 3.31 0.02 0.00 ind:fut:1s; +badigeonnerez badigeonner VER 0.13 3.31 0.01 0.07 ind:fut:2p; +badigeonneur badigeonneur NOM m s 0.00 0.07 0.00 0.07 +badigeonnions badigeonner VER 0.13 3.31 0.00 0.07 ind:imp:1p; +badigeonnèrent badigeonner VER 0.13 3.31 0.00 0.07 ind:pas:3p; +badigeonné badigeonner VER m s 0.13 3.31 0.04 0.54 par:pas; +badigeonnée badigeonner VER f s 0.13 3.31 0.00 0.41 par:pas; +badigeonnées badigeonner VER f p 0.13 3.31 0.00 0.27 par:pas; +badigeonnés badigeonner VER m p 0.13 3.31 0.00 0.81 par:pas; +badigeons badigeon NOM m p 0.00 1.01 0.00 0.14 +badigoinces badigoinces NOM f p 0.00 0.20 0.00 0.20 +badin badin ADJ m s 0.44 1.96 0.33 1.35 +badina badiner VER 0.59 1.35 0.00 0.07 ind:pas:3s; +badinage badinage NOM m s 0.16 0.61 0.14 0.47 +badinages badinage NOM m p 0.16 0.61 0.02 0.14 +badinaient badiner VER 0.59 1.35 0.00 0.14 ind:imp:3p; +badinais badiner VER 0.59 1.35 0.01 0.00 ind:imp:1s; +badinait badiner VER 0.59 1.35 0.00 0.34 ind:imp:3s; +badine badiner VER 0.59 1.35 0.22 0.47 imp:pre:2s;ind:pre:3s; +badiner badiner VER 0.59 1.35 0.18 0.27 inf; +badines badiner VER 0.59 1.35 0.01 0.00 ind:pre:2s; +badinez badiner VER 0.59 1.35 0.14 0.07 imp:pre:2p;ind:pre:2p; +badins badin ADJ m p 0.44 1.96 0.00 0.14 +badiné badiner VER m s 0.59 1.35 0.02 0.00 par:pas; +badminton badminton NOM m s 0.18 0.20 0.18 0.20 +badois badois ADJ m 0.00 0.27 0.00 0.07 +badoise badois ADJ f s 0.00 0.27 0.00 0.20 +baffe baffe NOM f s 2.93 3.58 1.41 1.49 +baffer baffer VER 0.62 0.14 0.49 0.00 inf; +baffes baffe NOM f p 2.93 3.58 1.52 2.09 +baffle baffle NOM m s 0.06 0.68 0.00 0.20 +baffles baffle NOM m p 0.06 0.68 0.06 0.47 +baffés baffer VER m p 0.62 0.14 0.00 0.07 par:pas; +bafouais bafouer VER 3.54 3.78 0.00 0.07 ind:imp:1s; +bafouait bafouer VER 3.54 3.78 0.14 0.27 ind:imp:3s; +bafouant bafouer VER 3.54 3.78 0.03 0.27 par:pre; +bafoue bafouer VER 3.54 3.78 0.71 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bafouent bafouer VER 3.54 3.78 0.17 0.14 ind:pre:3p; +bafouer bafouer VER 3.54 3.78 0.54 0.68 inf; +bafoues bafouer VER 3.54 3.78 0.25 0.14 ind:pre:2s; +bafouez bafouer VER 3.54 3.78 0.32 0.00 imp:pre:2p;ind:pre:2p; +bafouilla bafouiller VER 2.08 8.92 0.01 2.23 ind:pas:3s; +bafouillage bafouillage NOM m s 0.01 0.47 0.01 0.27 +bafouillages bafouillage NOM m p 0.01 0.47 0.00 0.20 +bafouillai bafouiller VER 2.08 8.92 0.00 0.14 ind:pas:1s; +bafouillaient bafouiller VER 2.08 8.92 0.00 0.07 ind:imp:3p; +bafouillais bafouiller VER 2.08 8.92 0.00 0.20 ind:imp:1s; +bafouillait bafouiller VER 2.08 8.92 0.02 1.15 ind:imp:3s; +bafouillant bafouillant ADJ m s 0.01 0.34 0.01 0.20 +bafouillante bafouillant ADJ f s 0.01 0.34 0.00 0.07 +bafouillantes bafouillant ADJ f p 0.01 0.34 0.00 0.07 +bafouille bafouiller VER 2.08 8.92 0.93 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bafouillent bafouiller VER 2.08 8.92 0.01 0.27 ind:pre:3p; +bafouiller bafouiller VER 2.08 8.92 0.13 0.68 inf; +bafouilles bafouiller VER 2.08 8.92 0.23 0.14 ind:pre:2s; +bafouilleur bafouilleur NOM m s 0.01 0.00 0.01 0.00 +bafouillez bafouiller VER 2.08 8.92 0.03 0.07 imp:pre:2p;ind:pre:2p; +bafouillis bafouillis NOM m 0.00 0.27 0.00 0.27 +bafouillèrent bafouiller VER 2.08 8.92 0.00 0.07 ind:pas:3p; +bafouillé bafouiller VER m s 2.08 8.92 0.72 0.81 par:pas; +bafoué bafouer VER m s 3.54 3.78 0.52 1.22 par:pas; +bafouée bafouer VER f s 3.54 3.78 0.39 0.61 par:pas; +bafouées bafouer VER f p 3.54 3.78 0.04 0.07 par:pas; +bafoués bafouer VER m p 3.54 3.78 0.43 0.14 par:pas; +bagage bagage NOM m s 29.69 24.39 3.21 7.43 +bagagerie bagagerie NOM f s 0.00 0.14 0.00 0.14 +bagages bagage NOM m p 29.69 24.39 26.48 16.96 +bagagiste bagagiste NOM s 0.30 0.07 0.24 0.07 +bagagistes bagagiste NOM p 0.30 0.07 0.06 0.00 +bagarraient bagarrer VER 5.08 2.23 0.05 0.27 ind:imp:3p; +bagarrais bagarrer VER 5.08 2.23 0.05 0.00 ind:imp:1s;ind:imp:2s; +bagarrait bagarrer VER 5.08 2.23 0.05 0.14 ind:imp:3s; +bagarrant bagarrer VER 5.08 2.23 0.12 0.07 par:pre; +bagarre bagarre NOM f s 19.24 13.85 16.05 9.86 +bagarrent bagarrer VER 5.08 2.23 0.64 0.14 ind:pre:3p; +bagarrer bagarrer VER 5.08 2.23 1.73 0.68 inf;; +bagarrerais bagarrer VER 5.08 2.23 0.02 0.00 cnd:pre:1s; +bagarrerait bagarrer VER 5.08 2.23 0.01 0.00 cnd:pre:3s; +bagarres bagarre NOM f p 19.24 13.85 3.19 3.99 +bagarreur bagarreur ADJ m s 0.65 0.61 0.47 0.41 +bagarreurs bagarreur ADJ m p 0.65 0.61 0.09 0.14 +bagarreuse bagarreur ADJ f s 0.65 0.61 0.07 0.07 +bagarreuses bagarreur ADJ f p 0.65 0.61 0.01 0.00 +bagarrez bagarrer VER 5.08 2.23 0.15 0.00 imp:pre:2p;ind:pre:2p; +bagarrons bagarrer VER 5.08 2.23 0.01 0.00 imp:pre:1p; +bagarré bagarrer VER m s 5.08 2.23 0.70 0.47 par:pas; +bagarrée bagarrer VER f s 5.08 2.23 0.16 0.07 par:pas; +bagarrés bagarrer VER m p 5.08 2.23 0.22 0.00 par:pas; +bagasse bagasse NOM f s 0.15 0.00 0.15 0.00 +bagatelle bagatelle NOM f s 1.08 3.58 1.03 2.64 +bagatelles bagatelle NOM f p 1.08 3.58 0.05 0.95 +bagnard bagnard NOM m s 0.60 2.57 0.50 1.08 +bagnards bagnard NOM m p 0.60 2.57 0.11 1.49 +bagne bagne NOM m s 2.50 3.85 2.49 3.31 +bagnes bagne NOM m p 2.50 3.85 0.01 0.54 +bagnole bagnole NOM f s 23.93 34.26 21.18 26.28 +bagnoles bagnole NOM f p 23.93 34.26 2.75 7.97 +bagote bagoter VER 0.00 0.41 0.00 0.07 ind:pre:3s; +bagoter bagoter VER 0.00 0.41 0.00 0.34 inf; +bagottaient bagotter VER 0.00 0.34 0.00 0.07 ind:imp:3p; +bagottais bagotter VER 0.00 0.34 0.00 0.07 ind:imp:1s; +bagotte bagotter VER 0.00 0.34 0.00 0.14 ind:pre:3s; +bagotter bagotter VER 0.00 0.34 0.00 0.07 inf; +bagou bagou NOM m s 0.01 0.27 0.01 0.27 +bagoulait bagouler VER 0.00 0.14 0.00 0.07 ind:imp:3s; +bagoule bagouler VER 0.00 0.14 0.00 0.07 ind:pre:3s; +bagouse bagouse NOM f s 0.00 0.20 0.00 0.20 +bagousées bagousé ADJ f p 0.00 0.07 0.00 0.07 +bagout bagout NOM m s 0.25 0.81 0.25 0.74 +bagouts bagout NOM m p 0.25 0.81 0.00 0.07 +bagouze bagouze NOM f s 0.03 0.20 0.01 0.14 +bagouzes bagouze NOM f p 0.03 0.20 0.02 0.07 +baguage baguage NOM m s 0.02 0.00 0.02 0.00 +bague bague NOM f s 30.32 22.36 26.14 16.08 +baguenaudaient baguenauder VER 0.18 1.62 0.00 0.07 ind:imp:3p; +baguenaudais baguenauder VER 0.18 1.62 0.00 0.07 ind:imp:1s; +baguenaudait baguenauder VER 0.18 1.62 0.00 0.27 ind:imp:3s; +baguenaudant baguenauder VER 0.18 1.62 0.00 0.27 par:pre; +baguenaude baguenauder VER 0.18 1.62 0.14 0.14 ind:pre:1s;ind:pre:3s; +baguenaudent baguenauder VER 0.18 1.62 0.00 0.07 ind:pre:3p; +baguenauder baguenauder VER 0.18 1.62 0.03 0.61 inf; +baguenauderait baguenauder VER 0.18 1.62 0.00 0.07 cnd:pre:3s; +baguenaudé baguenauder VER m s 0.18 1.62 0.01 0.07 par:pas; +baguer baguer VER 0.23 0.68 0.02 0.07 inf; +bagues bague NOM f p 30.32 22.36 4.19 6.28 +baguette baguette NOM f s 7.74 13.45 5.67 9.46 +baguettes baguette NOM f p 7.74 13.45 2.06 3.99 +bagué baguer VER m s 0.23 0.68 0.14 0.07 par:pas; +baguée bagué ADJ f s 0.01 1.01 0.00 0.34 +baguées bagué ADJ f p 0.01 1.01 0.00 0.20 +bagués bagué ADJ m p 0.01 1.01 0.01 0.41 +bah bah ONO 22.77 12.03 22.77 12.03 +baht baht NOM m s 0.52 0.00 0.07 0.00 +bahts baht NOM m p 0.52 0.00 0.45 0.00 +bahut bahut NOM m s 1.59 8.38 1.50 7.23 +bahute bahuter VER 0.00 0.14 0.00 0.07 ind:pre:3s; +bahutent bahuter VER 0.00 0.14 0.00 0.07 ind:pre:3p; +bahuts bahut NOM m p 1.59 8.38 0.09 1.15 +bai bai ADJ m s 0.89 1.35 0.86 1.22 +baie baie NOM f s 7.09 19.80 5.84 14.86 +baies baie NOM f p 7.09 19.80 1.24 4.93 +baigna baigner VER 26.42 41.42 0.00 0.41 ind:pas:3s; +baignade baignade NOM f s 1.10 2.84 1.00 1.89 +baignades baignade NOM f p 1.10 2.84 0.10 0.95 +baignai baigner VER 26.42 41.42 0.10 0.07 ind:pas:1s; +baignaient baigner VER 26.42 41.42 0.31 3.04 ind:imp:3p; +baignais baigner VER 26.42 41.42 0.17 0.88 ind:imp:1s;ind:imp:2s; +baignait baigner VER 26.42 41.42 0.77 6.62 ind:imp:3s; +baignant baigner VER 26.42 41.42 0.22 2.77 par:pre; +baigne baigner VER 26.42 41.42 7.87 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +baignent baigner VER 26.42 41.42 0.70 1.28 ind:pre:3p; +baigner baigner VER 26.42 41.42 11.33 10.41 inf; +baignera baigner VER 26.42 41.42 0.41 0.00 ind:fut:3s; +baigneraient baigner VER 26.42 41.42 0.00 0.07 cnd:pre:3p; +baignerait baigner VER 26.42 41.42 0.04 0.07 cnd:pre:3s; +baignerons baigner VER 26.42 41.42 0.02 0.07 ind:fut:1p; +baigneront baigner VER 26.42 41.42 0.17 0.07 ind:fut:3p; +baignes baigner VER 26.42 41.42 0.77 0.20 ind:pre:2s; +baigneur baigneur NOM m s 0.39 10.00 0.33 4.73 +baigneurs baigneur NOM m p 0.39 10.00 0.03 3.45 +baigneuse baigneur NOM f s 0.39 10.00 0.03 0.74 +baigneuses baigneuse NOM f p 0.04 0.00 0.01 0.00 +baignez baigner VER 26.42 41.42 0.49 0.27 imp:pre:2p;ind:pre:2p; +baignions baigner VER 26.42 41.42 0.01 0.34 ind:imp:1p; +baignoire baignoire NOM f s 12.39 15.27 11.90 14.12 +baignoires baignoire NOM f p 12.39 15.27 0.50 1.15 +baignons baigner VER 26.42 41.42 0.19 0.14 imp:pre:1p;ind:pre:1p; +baignèrent baigner VER 26.42 41.42 0.00 0.20 ind:pas:3p; +baigné baigner VER m s 26.42 41.42 1.42 3.72 par:pas; +baignée baigner VER f s 26.42 41.42 0.63 1.96 par:pas; +baignées baigner VER f p 26.42 41.42 0.37 0.41 par:pas; +baignés baigner VER m p 26.42 41.42 0.42 1.69 par:pas; +bail bail NOM m s 11.49 2.57 11.49 2.57 +baile baile NOM m s 0.05 0.47 0.05 0.27 +bailes baile NOM m p 0.05 0.47 0.00 0.20 +baillait bailler VER 1.02 0.61 0.03 0.14 ind:imp:3s; +baillant bailler VER 1.02 0.61 0.02 0.14 par:pre; +baille bailler VER 1.02 0.61 0.47 0.07 ind:pre:1s;ind:pre:3s; +bailler bailler VER 1.02 0.61 0.21 0.14 inf; +bailles bailler VER 1.02 0.61 0.16 0.07 ind:pre:2s; +bailleur bailleur NOM m s 0.56 0.47 0.28 0.20 +bailleurs bailleur NOM m p 0.56 0.47 0.28 0.27 +baillez bailler VER 1.02 0.61 0.00 0.07 ind:pre:2p; +bailli bailli NOM m s 0.01 0.47 0.01 0.41 +bailliage bailliage NOM m s 0.00 0.20 0.00 0.20 +baillis bailli NOM m p 0.01 0.47 0.00 0.07 +baillive baillive NOM f s 0.00 0.07 0.00 0.07 +baillé bailler VER m s 1.02 0.61 0.14 0.00 par:pas; +bain_marie bain_marie NOM m s 0.08 0.95 0.08 0.88 +bain bain NOM m s 74.48 83.04 50.52 43.11 +bain_marie bain_marie NOM m p 0.08 0.95 0.00 0.07 +bains bain NOM m p 74.48 83.04 23.96 39.93 +bais bai ADJ m p 0.89 1.35 0.03 0.14 +baisa baiser VER 112.82 44.12 0.00 3.51 ind:pas:3s; +baisable baisable ADJ s 0.35 0.20 0.26 0.14 +baisables baisable ADJ p 0.35 0.20 0.10 0.07 +baisade baisade NOM f s 0.00 0.07 0.00 0.07 +baisai baiser VER 112.82 44.12 0.10 0.41 ind:pas:1s; +baisaient baiser VER 112.82 44.12 0.25 0.74 ind:imp:3p; +baisais baiser VER 112.82 44.12 1.42 0.61 ind:imp:1s;ind:imp:2s; +baisait baiser VER 112.82 44.12 2.25 3.11 ind:imp:3s; +baisant baiser VER 112.82 44.12 1.72 0.95 par:pre; +baise_en_ville baise_en_ville NOM m s 0.03 0.20 0.03 0.20 +baise baiser VER 112.82 44.12 22.02 8.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +baisemain baisemain NOM m s 0.81 0.61 0.81 0.54 +baisemains baisemain NOM m p 0.81 0.61 0.00 0.07 +baisement baisement NOM m s 0.00 0.07 0.00 0.07 +baisent baiser VER 112.82 44.12 3.15 1.69 ind:pre:3p; +baiser baiser VER 112.82 44.12 42.25 15.34 inf; +baisera baiser VER 112.82 44.12 0.99 0.54 ind:fut:3s; +baiserai baiser VER 112.82 44.12 1.33 0.41 ind:fut:1s; +baiseraient baiser VER 112.82 44.12 0.00 0.07 cnd:pre:3p; +baiserais baiser VER 112.82 44.12 1.45 0.14 cnd:pre:1s;cnd:pre:2s; +baiserait baiser VER 112.82 44.12 0.17 0.34 cnd:pre:3s; +baiseras baiser VER 112.82 44.12 0.49 0.07 ind:fut:2s; +baiserez baiser VER 112.82 44.12 0.12 0.00 ind:fut:2p; +baiseriez baiser VER 112.82 44.12 0.01 0.00 cnd:pre:2p; +baiserons baiser VER 112.82 44.12 0.00 0.07 ind:fut:1p; +baiseront baiser VER 112.82 44.12 0.03 0.07 ind:fut:3p; +baisers baiser NOM m p 52.17 54.59 11.25 25.95 +baises baiser VER 112.82 44.12 7.66 0.88 ind:pre:2s;sub:pre:2s; +baiseur baiseur NOM m s 2.00 1.49 1.40 0.61 +baiseurs baiseur NOM m p 2.00 1.49 0.40 0.34 +baiseuse baiseur NOM f s 2.00 1.49 0.20 0.54 +baisez baiser VER 112.82 44.12 1.77 0.47 imp:pre:2p;ind:pre:2p; +baisiez baiser VER 112.82 44.12 0.31 0.00 ind:imp:2p; +baisions baiser VER 112.82 44.12 0.01 0.07 ind:imp:1p; +baisodrome baisodrome NOM m s 0.46 0.07 0.46 0.07 +baisons baiser VER 112.82 44.12 0.17 0.14 imp:pre:1p;ind:pre:1p; +baisotant baisoter VER 0.00 0.07 0.00 0.07 par:pre; +baisouiller baisouiller VER 0.04 0.20 0.04 0.14 inf; +baisouillé baisouiller VER m s 0.04 0.20 0.00 0.07 par:pas; +baissa baisser VER 63.69 115.27 0.27 25.54 ind:pas:3s; +baissai baisser VER 63.69 115.27 0.00 1.28 ind:pas:1s; +baissaient baisser VER 63.69 115.27 0.18 1.42 ind:imp:3p; +baissais baisser VER 63.69 115.27 0.14 1.28 ind:imp:1s;ind:imp:2s; +baissait baisser VER 63.69 115.27 0.23 9.93 ind:imp:3s; +baissant baisser VER 63.69 115.27 0.58 10.54 par:pre; +baisse baisser VER 63.69 115.27 20.10 14.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +baissement baissement NOM m s 0.27 0.00 0.27 0.00 +baissent baisser VER 63.69 115.27 1.11 1.42 ind:pre:3p;sub:pre:3p; +baisser baisser VER 63.69 115.27 12.31 12.70 inf; +baissera baisser VER 63.69 115.27 0.28 0.20 ind:fut:3s; +baisserai baisser VER 63.69 115.27 0.18 0.07 ind:fut:1s; +baisseraient baisser VER 63.69 115.27 0.02 0.00 cnd:pre:3p; +baisserais baisser VER 63.69 115.27 0.11 0.00 cnd:pre:1s; +baisserait baisser VER 63.69 115.27 0.14 0.27 cnd:pre:3s; +baisseras baisser VER 63.69 115.27 0.05 0.07 ind:fut:2s; +baisserez baisser VER 63.69 115.27 0.01 0.00 ind:fut:2p; +baisserons baisser VER 63.69 115.27 0.11 0.00 ind:fut:1p; +baisseront baisser VER 63.69 115.27 0.19 0.14 ind:fut:3p; +baisses baisser VER 63.69 115.27 1.14 0.14 ind:pre:2s;sub:pre:2s; +baissez baisser VER 63.69 115.27 16.45 0.47 imp:pre:2p;ind:pre:2p; +baissier baissier ADJ m s 0.14 0.00 0.14 0.00 +baissiez baisser VER 63.69 115.27 0.27 0.00 ind:imp:2p; +baissions baisser VER 63.69 115.27 0.00 0.07 ind:imp:1p; +baissâmes baisser VER 63.69 115.27 0.00 0.07 ind:pas:1p; +baissons baisser VER 63.69 115.27 0.15 0.27 imp:pre:1p;ind:pre:1p; +baissât baisser VER 63.69 115.27 0.00 0.07 sub:imp:3s; +baissèrent baisser VER 63.69 115.27 0.01 0.74 ind:pas:3p; +baissé baisser VER m s 63.69 115.27 5.70 14.12 par:pas; +baissée baisser VER f s 63.69 115.27 2.36 9.05 ind:imp:3s;par:pas; +baissées baisser VER f p 63.69 115.27 0.34 2.43 par:pas; +baissés baisser VER m p 63.69 115.27 1.25 8.18 par:pas; +baisèrent baiser VER 112.82 44.12 0.00 0.14 ind:pas:3p; +baisé baiser VER m s 112.82 44.12 17.65 4.19 par:pas; +baisée baiser VER f s 112.82 44.12 4.70 1.08 par:pas; +baisées baiser VER f p 112.82 44.12 0.50 0.47 par:pas; +baisés baiser VER m p 112.82 44.12 2.33 0.47 par:pas; +bajoue bajoue NOM f s 0.49 2.50 0.30 0.00 +bajoues bajoue NOM f p 0.49 2.50 0.19 2.50 +bajoyers bajoyer NOM m p 0.00 0.07 0.00 0.07 +bakchich bakchich NOM m s 0.31 0.61 0.17 0.54 +bakchichs bakchich NOM m p 0.31 0.61 0.14 0.07 +baklava baklava NOM m s 0.24 0.34 0.21 0.14 +baklavas baklava NOM m p 0.24 0.34 0.03 0.20 +bakélite bakélite NOM f s 0.04 1.08 0.04 1.08 +bal bal NOM m s 30.25 25.54 28.57 18.31 +balada balader VER 24.30 13.51 0.00 0.07 ind:pas:3s; +baladai balader VER 24.30 13.51 0.00 0.07 ind:pas:1s; +baladaient balader VER 24.30 13.51 0.07 0.54 ind:imp:3p; +baladais balader VER 24.30 13.51 0.87 0.47 ind:imp:1s;ind:imp:2s; +baladait balader VER 24.30 13.51 0.65 1.08 ind:imp:3s; +baladant balader VER 24.30 13.51 0.21 0.47 par:pre; +balade balade NOM f s 7.71 6.28 6.58 4.59 +baladent balader VER 24.30 13.51 1.51 0.88 ind:pre:3p; +balader balader VER 24.30 13.51 12.41 5.41 ind:pre:2p;inf; +baladera balader VER 24.30 13.51 0.21 0.14 ind:fut:3s; +baladerai balader VER 24.30 13.51 0.01 0.00 ind:fut:1s; +baladerais balader VER 24.30 13.51 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +baladerait balader VER 24.30 13.51 0.07 0.14 cnd:pre:3s; +baladerez balader VER 24.30 13.51 0.01 0.07 ind:fut:2p; +balades balader VER 24.30 13.51 1.43 0.34 ind:pre:2s;sub:pre:2s; +baladeur baladeur NOM m s 0.34 0.68 0.32 0.14 +baladeurs baladeur ADJ m p 0.65 0.88 0.02 0.20 +baladeuse baladeur ADJ f s 0.65 0.88 0.04 0.54 +baladeuses baladeur ADJ f p 0.65 0.88 0.48 0.07 +baladez balader VER 24.30 13.51 0.37 0.00 imp:pre:2p;ind:pre:2p; +baladiez balader VER 24.30 13.51 0.04 0.00 ind:imp:2p; +baladin baladin NOM m s 0.14 0.88 0.14 0.20 +baladins baladin NOM m p 0.14 0.88 0.00 0.68 +baladèrent balader VER 24.30 13.51 0.00 0.07 ind:pas:3p; +baladé balader VER m s 24.30 13.51 0.62 0.47 par:pas; +baladée balader VER f s 24.30 13.51 0.37 0.27 par:pas; +baladées balader VER f p 24.30 13.51 0.02 0.14 par:pas; +baladés balader VER m p 24.30 13.51 0.37 0.14 par:pas; +balafon balafon NOM m s 0.00 0.14 0.00 0.07 +balafons balafon NOM m p 0.00 0.14 0.00 0.07 +balafra balafrer VER 0.16 1.55 0.00 0.07 ind:pas:3s; +balafraient balafrer VER 0.16 1.55 0.01 0.14 ind:imp:3p; +balafrait balafrer VER 0.16 1.55 0.00 0.27 ind:imp:3s; +balafre balafre NOM f s 0.57 1.69 0.55 1.15 +balafrent balafrer VER 0.16 1.55 0.00 0.07 ind:pre:3p; +balafrer balafrer VER 0.16 1.55 0.02 0.07 inf; +balafres balafre NOM f p 0.57 1.69 0.03 0.54 +balafrons balafrer VER 0.16 1.55 0.01 0.00 imp:pre:1p; +balafrât balafrer VER 0.16 1.55 0.00 0.07 sub:imp:3s; +balafré balafré ADJ m s 0.57 1.15 0.35 0.88 +balafrée balafré ADJ f s 0.57 1.15 0.21 0.20 +balafrées balafrer VER f p 0.16 1.55 0.00 0.07 par:pas; +balafrés balafrer VER m p 0.16 1.55 0.04 0.00 par:pas; +balai_brosse balai_brosse NOM m s 0.40 0.61 0.29 0.34 +balai balai NOM m s 10.91 17.70 8.24 11.96 +balaie balayer VER 12.17 37.43 1.99 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balaient balayer VER 12.17 37.43 0.20 1.01 ind:pre:3p; +balaiera balayer VER 12.17 37.43 0.18 0.34 ind:fut:3s; +balaierai balayer VER 12.17 37.43 0.28 0.00 ind:fut:1s; +balaieraient balayer VER 12.17 37.43 0.00 0.07 cnd:pre:3p; +balaierait balayer VER 12.17 37.43 0.02 0.20 cnd:pre:3s; +balaieras balayer VER 12.17 37.43 0.02 0.00 ind:fut:2s; +balaierez balayer VER 12.17 37.43 0.00 0.07 ind:fut:2p; +balaies balayer VER 12.17 37.43 0.38 0.00 ind:pre:2s; +balai_brosse balai_brosse NOM m p 0.40 0.61 0.11 0.27 +balais balai NOM m p 10.91 17.70 2.68 5.74 +balaise balaise ADJ m s 0.49 0.34 0.45 0.27 +balaises balaise ADJ m p 0.49 0.34 0.04 0.07 +balalaïka balalaïka NOM f s 0.03 0.41 0.02 0.14 +balalaïkas balalaïka NOM f p 0.03 0.41 0.01 0.27 +balan balan NOM m s 0.00 0.07 0.00 0.07 +balance balancer VER 40.12 67.70 9.66 12.16 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +balancelle balancelle NOM f s 0.18 0.34 0.18 0.27 +balancelles balancelle NOM f p 0.18 0.34 0.00 0.07 +balancement balancement NOM m s 0.83 5.41 0.69 4.93 +balancements balancement NOM m p 0.83 5.41 0.14 0.47 +balancent balancer VER 40.12 67.70 1.73 2.97 ind:pre:3p;sub:pre:3p; +balancer balancer VER 40.12 67.70 10.15 11.89 inf; +balancera balancer VER 40.12 67.70 0.35 0.34 ind:fut:3s; +balancerai balancer VER 40.12 67.70 0.27 0.07 ind:fut:1s; +balanceraient balancer VER 40.12 67.70 0.04 0.07 cnd:pre:3p; +balancerais balancer VER 40.12 67.70 0.29 0.20 cnd:pre:1s;cnd:pre:2s; +balancerait balancer VER 40.12 67.70 0.36 0.07 cnd:pre:3s; +balanceras balancer VER 40.12 67.70 0.05 0.00 ind:fut:2s; +balancerez balancer VER 40.12 67.70 0.01 0.00 ind:fut:2p; +balanceriez balancer VER 40.12 67.70 0.02 0.00 cnd:pre:2p; +balanceront balancer VER 40.12 67.70 0.04 0.00 ind:fut:3p; +balances balancer VER 40.12 67.70 1.39 0.54 ind:pre:2s;sub:pre:2s; +balancez balancer VER 40.12 67.70 1.33 0.20 imp:pre:2p;ind:pre:2p; +balancier balancier NOM m s 0.26 4.05 0.26 3.72 +balanciers balancier NOM m p 0.26 4.05 0.00 0.34 +balanciez balancer VER 40.12 67.70 0.03 0.00 ind:imp:2p; +balancines balancine NOM f p 0.00 0.07 0.00 0.07 +balancions balancer VER 40.12 67.70 0.01 0.07 ind:imp:1p; +balancèrent balancer VER 40.12 67.70 0.00 0.47 ind:pas:3p; +balancé balancer VER m s 40.12 67.70 10.50 8.18 par:pas; +balancée balancer VER f s 40.12 67.70 1.06 1.55 par:pas; +balancées balancer VER f p 40.12 67.70 0.07 0.74 par:pas; +balancés balancer VER m p 40.12 67.70 0.80 1.55 par:pas; +balandras balandras NOM m 0.00 0.07 0.00 0.07 +balanes balane NOM f p 0.01 0.27 0.01 0.27 +balanstiquant balanstiquer VER 0.00 0.41 0.00 0.07 par:pre; +balanstique balanstiquer VER 0.00 0.41 0.00 0.20 imp:pre:2s;ind:pre:3s; +balanstiquer balanstiquer VER 0.00 0.41 0.00 0.14 inf; +balança balancer VER 40.12 67.70 0.01 3.78 ind:pas:3s; +balançage balançage NOM m s 0.00 0.34 0.00 0.20 +balançages balançage NOM m p 0.00 0.34 0.00 0.14 +balançai balancer VER 40.12 67.70 0.00 0.14 ind:pas:1s; +balançaient balancer VER 40.12 67.70 0.29 3.51 ind:imp:3p; +balançais balancer VER 40.12 67.70 0.17 0.88 ind:imp:1s;ind:imp:2s; +balançait balancer VER 40.12 67.70 0.56 9.93 ind:imp:3s; +balançant balancer VER 40.12 67.70 0.71 8.38 par:pre; +balançoire balançoire NOM f s 2.14 3.11 1.93 1.89 +balançoires balançoire NOM f p 2.14 3.11 0.21 1.22 +balançons balancer VER 40.12 67.70 0.22 0.00 imp:pre:1p;ind:pre:1p; +balatum balatum NOM m s 0.00 0.14 0.00 0.14 +balaya balayer VER 12.17 37.43 0.16 2.36 ind:pas:3s; +balayage balayage NOM m s 1.69 0.81 1.56 0.74 +balayages balayage NOM m p 1.69 0.81 0.13 0.07 +balayai balayer VER 12.17 37.43 0.00 0.07 ind:pas:1s; +balayaient balayer VER 12.17 37.43 0.00 2.30 ind:imp:3p; +balayais balayer VER 12.17 37.43 0.05 0.20 ind:imp:1s;ind:imp:2s; +balayait balayer VER 12.17 37.43 0.28 5.07 ind:imp:3s; +balayant balayer VER 12.17 37.43 0.23 3.31 par:pre; +balaye balayer VER 12.17 37.43 1.03 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balayent balayer VER 12.17 37.43 0.04 0.20 ind:pre:3p; +balayer balayer VER 12.17 37.43 3.40 7.23 inf; +balayera balayer VER 12.17 37.43 0.08 0.00 ind:fut:3s; +balayerai balayer VER 12.17 37.43 0.12 0.00 ind:fut:1s; +balayeraient balayer VER 12.17 37.43 0.00 0.07 cnd:pre:3p; +balayerait balayer VER 12.17 37.43 0.04 0.07 cnd:pre:3s; +balayerez balayer VER 12.17 37.43 0.01 0.07 ind:fut:2p; +balayerons balayer VER 12.17 37.43 0.01 0.00 ind:fut:1p; +balayeront balayer VER 12.17 37.43 0.03 0.00 ind:fut:3p; +balayette balayette NOM f s 0.33 0.54 0.33 0.34 +balayettes balayette NOM f p 0.33 0.54 0.00 0.20 +balayeur balayeur NOM m s 0.80 2.97 0.48 1.42 +balayeurs balayeur NOM m p 0.80 2.97 0.11 1.35 +balayeuse balayeur NOM f s 0.80 2.97 0.21 0.07 +balayeuses balayeuse NOM f p 0.02 0.00 0.02 0.00 +balayez balayer VER 12.17 37.43 0.60 0.07 imp:pre:2p;ind:pre:2p; +balayons balayer VER 12.17 37.43 0.05 0.07 imp:pre:1p; +balayât balayer VER 12.17 37.43 0.00 0.14 sub:imp:3s; +balayèrent balayer VER 12.17 37.43 0.00 0.41 ind:pas:3p; +balayé balayer VER m s 12.17 37.43 1.84 5.54 par:pas; +balayée balayer VER f s 12.17 37.43 0.35 1.76 par:pas; +balayées balayer VER f p 12.17 37.43 0.26 0.95 par:pas; +balayure balayure NOM f s 0.00 0.34 0.00 0.14 +balayures balayure NOM f p 0.00 0.34 0.00 0.20 +balayés balayer VER m p 12.17 37.43 0.50 1.69 par:pas; +balboa balboa NOM m s 0.02 0.00 0.02 0.00 +balbutia balbutier VER 0.23 13.99 0.00 5.54 ind:pas:3s; +balbutiai balbutier VER 0.23 13.99 0.00 0.81 ind:pas:1s; +balbutiaient balbutier VER 0.23 13.99 0.00 0.14 ind:imp:3p; +balbutiais balbutier VER 0.23 13.99 0.01 0.20 ind:imp:1s; +balbutiait balbutier VER 0.23 13.99 0.01 1.89 ind:imp:3s; +balbutiant balbutier VER 0.23 13.99 0.14 1.35 par:pre; +balbutiante balbutiant ADJ f s 0.14 1.15 0.01 0.54 +balbutiantes balbutiant ADJ f p 0.14 1.15 0.00 0.14 +balbutie balbutier VER 0.23 13.99 0.03 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +balbutiement balbutiement NOM m s 0.06 1.15 0.00 0.61 +balbutiements balbutiement NOM m p 0.06 1.15 0.06 0.54 +balbutier balbutier VER 0.23 13.99 0.02 1.08 inf; +balbutions balbutier VER 0.23 13.99 0.00 0.07 ind:pre:1p; +balbutièrent balbutier VER 0.23 13.99 0.00 0.14 ind:pas:3p; +balbutié balbutier VER m s 0.23 13.99 0.01 0.74 par:pas; +balbutiées balbutier VER f p 0.23 13.99 0.00 0.07 par:pas; +balbutiés balbutier VER m p 0.23 13.99 0.00 0.14 par:pas; +balbuzard balbuzard NOM m s 0.03 0.07 0.03 0.07 +balcon balcon NOM m s 10.53 40.41 9.90 32.97 +balconnet balconnet NOM m s 0.02 0.54 0.01 0.41 +balconnets balconnet NOM m p 0.02 0.54 0.01 0.14 +balcons balcon NOM m p 10.53 40.41 0.63 7.43 +baldaquin baldaquin NOM m s 0.66 2.77 0.63 2.57 +baldaquins baldaquin NOM m p 0.66 2.77 0.04 0.20 +bale bale NOM f s 0.50 0.00 0.36 0.00 +baleine baleine NOM f s 16.68 5.00 11.52 3.11 +baleineau baleineau NOM m s 0.05 0.00 0.05 0.00 +baleines baleine NOM f p 16.68 5.00 5.17 1.89 +baleinier baleinier NOM m s 0.30 0.81 0.09 0.07 +baleiniers baleinier NOM m p 0.30 0.81 0.20 0.14 +baleinière baleinier NOM f s 0.30 0.81 0.02 0.54 +baleinières baleinier ADJ f p 0.06 0.00 0.01 0.00 +baleiné baleiné ADJ m s 0.00 0.41 0.00 0.07 +baleinée baleiné ADJ f s 0.00 0.41 0.00 0.07 +baleinées baleiné ADJ f p 0.00 0.41 0.00 0.07 +baleinés baleiné ADJ m p 0.00 0.41 0.00 0.20 +bales bale NOM f p 0.50 0.00 0.14 0.00 +balinais balinais ADJ m s 0.03 0.20 0.01 0.14 +balinaise balinais ADJ f s 0.03 0.20 0.02 0.07 +balisage balisage NOM m s 0.12 0.07 0.12 0.07 +balisaient baliser VER 0.65 2.03 0.01 0.20 ind:imp:3p; +balisait baliser VER 0.65 2.03 0.01 0.14 ind:imp:3s; +balisant baliser VER 0.65 2.03 0.00 0.07 par:pre; +balise balise NOM f s 2.82 0.68 2.31 0.27 +balisent baliser VER 0.65 2.03 0.01 0.07 ind:pre:3p; +baliser baliser VER 0.65 2.03 0.06 0.34 inf; +baliseraient baliser VER 0.65 2.03 0.01 0.00 cnd:pre:3p; +balises balise NOM f p 2.82 0.68 0.51 0.41 +baliste baliste NOM f s 0.02 0.14 0.01 0.00 +balistes baliste NOM f p 0.02 0.14 0.01 0.14 +balistique balistique NOM f s 1.06 0.14 1.06 0.14 +balistiquement balistiquement ADV 0.00 0.07 0.00 0.07 +balistiques balistique ADJ p 1.11 0.14 0.31 0.07 +balisé baliser VER m s 0.65 2.03 0.06 0.07 par:pas; +balisée baliser VER f s 0.65 2.03 0.19 0.20 par:pas; +balisées baliser VER f p 0.65 2.03 0.00 0.07 par:pas; +balisés baliser VER m p 0.65 2.03 0.00 0.20 par:pas; +baliveau baliveau NOM m s 0.00 1.08 0.00 0.07 +baliveaux baliveau NOM m p 0.00 1.08 0.00 1.01 +baliverne baliverne NOM f s 2.79 1.55 0.20 0.14 +balivernes baliverne NOM f p 2.79 1.55 2.59 1.42 +balkanique balkanique ADJ s 0.00 1.49 0.00 0.81 +balkaniques balkanique ADJ p 0.00 1.49 0.00 0.68 +balkanisés balkaniser VER m p 0.00 0.07 0.00 0.07 par:pas; +ball_trap ball_trap NOM m s 0.20 0.14 0.20 0.14 +ballade ballade NOM f s 4.54 1.22 3.64 0.95 +ballades ballade NOM f p 4.54 1.22 0.90 0.27 +ballaient baller VER 0.12 0.95 0.10 0.07 ind:imp:3p; +ballant ballant ADJ m s 0.33 6.28 0.02 0.54 +ballante ballant ADJ f s 0.33 6.28 0.00 0.54 +ballantes ballant ADJ f p 0.33 6.28 0.00 0.74 +ballants ballant ADJ m p 0.33 6.28 0.31 4.46 +ballast ballast NOM m s 1.44 2.57 0.40 2.50 +ballasts ballast NOM m p 1.44 2.57 1.04 0.07 +balle_peau balle_peau ONO 0.00 0.07 0.00 0.07 +balle balle NOM f s 122.07 94.59 77.32 44.73 +baller baller VER 0.12 0.95 0.02 0.41 inf; +ballerine ballerine NOM f s 1.75 2.16 1.23 1.22 +ballerines ballerine NOM f p 1.75 2.16 0.51 0.95 +balles balle NOM f p 122.07 94.59 44.75 49.86 +ballet ballet NOM m s 8.66 8.24 7.80 6.01 +ballets ballet NOM m p 8.66 8.24 0.86 2.23 +balloches balloche NOM m p 0.12 0.41 0.12 0.41 +ballon_sonde ballon_sonde NOM m s 0.14 0.00 0.14 0.00 +ballon ballon NOM m s 32.92 21.42 27.27 17.16 +ballonnaient ballonner VER 0.66 1.15 0.00 0.07 ind:imp:3p; +ballonnant ballonnant ADJ m s 0.00 0.27 0.00 0.07 +ballonnante ballonnant ADJ f s 0.00 0.27 0.00 0.14 +ballonnants ballonnant ADJ m p 0.00 0.27 0.00 0.07 +ballonne ballonner VER 0.66 1.15 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ballonnement ballonnement NOM m s 0.04 0.14 0.02 0.07 +ballonnements ballonnement NOM m p 0.04 0.14 0.02 0.07 +ballonnent ballonner VER 0.66 1.15 0.00 0.07 ind:pre:3p; +ballonner ballonner VER 0.66 1.15 0.15 0.14 inf; +ballonnets ballonnet NOM m p 0.01 0.14 0.01 0.14 +ballonné ballonné ADJ m s 0.27 1.15 0.19 0.74 +ballonnée ballonner VER f s 0.66 1.15 0.15 0.14 par:pas; +ballonnées ballonner VER f p 0.66 1.15 0.01 0.07 par:pas; +ballonnées ballonné ADJ f p 0.27 1.15 0.01 0.07 +ballonnés ballonné ADJ m p 0.27 1.15 0.01 0.27 +ballons ballon NOM m p 32.92 21.42 5.65 4.26 +ballot ballot NOM m s 1.01 5.88 0.81 1.82 +ballote ballote NOM f s 0.00 0.07 0.00 0.07 +ballots ballot NOM m p 1.01 5.88 0.20 4.05 +ballottage ballottage NOM m s 0.02 0.14 0.02 0.00 +ballottages ballottage NOM m p 0.02 0.14 0.00 0.14 +ballottaient ballotter VER 0.72 5.68 0.00 0.41 ind:imp:3p; +ballottait ballotter VER 0.72 5.68 0.01 0.54 ind:imp:3s; +ballottant ballotter VER 0.72 5.68 0.00 0.41 par:pre; +ballotte ballotter VER 0.72 5.68 0.02 0.41 ind:pre:1s;ind:pre:3s; +ballottement ballottement NOM m s 0.00 0.14 0.00 0.14 +ballottent ballotter VER 0.72 5.68 0.01 0.27 ind:pre:3p; +ballotter ballotter VER 0.72 5.68 0.02 0.41 inf; +ballottine ballottine NOM f s 0.01 0.07 0.01 0.00 +ballottines ballottine NOM f p 0.01 0.07 0.00 0.07 +ballottèrent ballotter VER 0.72 5.68 0.00 0.07 ind:pas:3p; +ballotté ballotter VER m s 0.72 5.68 0.44 1.49 par:pas; +ballottée ballotter VER f s 0.72 5.68 0.17 0.68 par:pas; +ballottées ballotter VER f p 0.72 5.68 0.00 0.20 par:pas; +ballottés ballotter VER m p 0.72 5.68 0.04 0.81 par:pas; +balluche balluche NOM m s 0.01 0.14 0.00 0.07 +balluches balluche NOM m p 0.01 0.14 0.01 0.07 +balluchon balluchon NOM m s 0.18 0.54 0.16 0.34 +balluchonnage balluchonnage NOM m s 0.00 0.07 0.00 0.07 +balluchonné balluchonner VER m s 0.00 0.07 0.00 0.07 par:pas; +balluchons balluchon NOM m p 0.18 0.54 0.02 0.20 +balnéaire balnéaire ADJ s 0.39 1.22 0.39 0.74 +balnéaires balnéaire ADJ f p 0.39 1.22 0.00 0.47 +balnéothérapie balnéothérapie NOM f s 0.01 0.00 0.01 0.00 +balourd balourd NOM m s 0.73 0.54 0.67 0.41 +balourde balourd ADJ f s 0.82 0.68 0.14 0.00 +balourdise balourdise NOM f s 0.02 0.88 0.02 0.81 +balourdises balourdise NOM f p 0.02 0.88 0.00 0.07 +balourds balourd ADJ m p 0.82 0.68 0.28 0.14 +balpeau balpeau ONO 0.01 0.61 0.01 0.61 +bals bal NOM m p 30.25 25.54 1.67 7.23 +balsa balsa NOM m s 0.13 0.00 0.13 0.00 +balsamier balsamier NOM m s 0.01 0.07 0.00 0.07 +balsamiers balsamier NOM m p 0.01 0.07 0.01 0.00 +balsamine balsamine NOM f s 0.00 0.61 0.00 0.07 +balsamines balsamine NOM f p 0.00 0.61 0.00 0.54 +balsamique balsamique ADJ s 0.10 0.47 0.10 0.41 +balsamiques balsamique ADJ m p 0.10 0.47 0.00 0.07 +balte balte ADJ s 0.52 2.23 0.05 0.34 +baltes balte ADJ p 0.52 2.23 0.47 1.89 +balthazar balthazar NOM m s 0.00 0.54 0.00 0.47 +balthazars balthazar NOM m p 0.00 0.54 0.00 0.07 +balèze balèze ADJ s 1.30 0.81 1.12 0.74 +balèzes balèze ADJ p 1.30 0.81 0.19 0.07 +baltique baltique ADJ s 0.14 0.47 0.14 0.34 +baltiques baltique ADJ f p 0.14 0.47 0.00 0.14 +balto balto ADV 0.00 0.54 0.00 0.54 +baluba baluba NOM s 0.00 0.07 0.00 0.07 +baluchon baluchon NOM m s 0.97 2.30 0.87 1.96 +baluchonnage baluchonnage NOM m s 0.00 0.07 0.00 0.07 +baluchonne baluchonner VER 0.00 0.41 0.00 0.07 ind:pre:3s; +baluchonnent baluchonner VER 0.00 0.41 0.00 0.07 ind:pre:3p; +baluchonner baluchonner VER 0.00 0.41 0.00 0.20 inf; +baluchonneur baluchonneur NOM m s 0.00 0.20 0.00 0.07 +baluchonneurs baluchonneur NOM m p 0.00 0.20 0.00 0.14 +baluchonné baluchonner VER m s 0.00 0.41 0.00 0.07 par:pas; +baluchons baluchon NOM m p 0.97 2.30 0.10 0.34 +balustrade balustrade NOM f s 0.61 11.28 0.61 10.20 +balustrades balustrade NOM f p 0.61 11.28 0.00 1.08 +balustre balustre NOM m s 0.00 1.35 0.00 0.20 +balustres balustre NOM m p 0.00 1.35 0.00 1.15 +balzacien balzacien ADJ m s 0.00 0.61 0.00 0.34 +balzacienne balzacien ADJ f s 0.00 0.61 0.00 0.14 +balzaciennes balzacien ADJ f p 0.00 0.61 0.00 0.07 +balzaciens balzacien ADJ m p 0.00 0.61 0.00 0.07 +balzanes balzane NOM f p 0.00 0.07 0.00 0.07 +bambara bambara ADJ m s 0.00 0.07 0.00 0.07 +bambara bambara NOM s 0.00 0.07 0.00 0.07 +bambin bambin NOM m s 1.35 4.66 0.87 2.16 +bambine bambin NOM f s 1.35 4.66 0.00 0.14 +bambines bambin NOM f p 1.35 4.66 0.00 0.14 +bambinette bambinette NOM f s 0.01 0.07 0.01 0.07 +bambino bambino NOM m s 0.37 0.34 0.33 0.27 +bambinos bambino NOM m p 0.37 0.34 0.04 0.07 +bambins bambin NOM m p 1.35 4.66 0.48 2.23 +bambochait bambocher VER 0.01 0.27 0.00 0.14 ind:imp:3s; +bamboche bamboche NOM f s 0.02 0.07 0.02 0.07 +bambocher bambocher VER 0.01 0.27 0.01 0.00 inf; +bambocheurs bambocheur NOM m p 0.00 0.14 0.00 0.14 +bambou bambou NOM m s 1.73 6.15 1.32 3.78 +bamboula bamboula NOM f s 1.29 0.27 1.29 0.27 +bambous bambou NOM m p 1.73 6.15 0.41 2.36 +ban ban NOM m s 1.66 2.16 0.76 1.76 +banal banal ADJ m s 8.66 26.22 4.88 11.28 +banale banal ADJ f s 8.66 26.22 2.75 9.93 +banalement banalement ADV 0.16 1.22 0.16 1.22 +banales banal ADJ f p 8.66 26.22 0.78 2.84 +banalisait banaliser VER 0.70 0.81 0.01 0.07 ind:imp:3s; +banalisation banalisation NOM f s 0.00 0.07 0.00 0.07 +banalise banaliser VER 0.70 0.81 0.08 0.00 ind:pre:3s; +banalisent banaliser VER 0.70 0.81 0.00 0.07 ind:pre:3p; +banaliser banaliser VER 0.70 0.81 0.16 0.00 inf; +banalisé banaliser VER m s 0.70 0.81 0.08 0.00 par:pas; +banalisée banaliser VER f s 0.70 0.81 0.26 0.47 par:pas; +banalisées banaliser VER f p 0.70 0.81 0.08 0.00 par:pas; +banalisés banaliser VER m p 0.70 0.81 0.04 0.20 par:pas; +banalité banalité NOM f s 1.47 8.65 0.77 5.34 +banalités banalité NOM f p 1.47 8.65 0.71 3.31 +banals banal ADJ m p 8.66 26.22 0.25 2.03 +banana bananer VER 1.04 0.20 0.81 0.14 ind:pas:3s; +bananas bananer VER 1.04 0.20 0.23 0.00 ind:pas:2s; +banane banane NOM f s 11.14 7.57 6.09 4.05 +bananer bananer VER 1.04 0.20 0.00 0.07 inf; +bananeraie bananeraie NOM f s 0.14 0.20 0.14 0.20 +bananes banane NOM f p 11.14 7.57 5.05 3.51 +bananier bananier NOM m s 0.76 3.85 0.18 0.61 +bananiers bananier NOM m p 0.76 3.85 0.57 3.24 +bananière bananier ADJ f s 0.16 0.27 0.02 0.00 +banaux banal ADJ m p 8.66 26.22 0.00 0.14 +banc_titre banc_titre NOM m s 0.14 0.00 0.14 0.00 +banc banc NOM m s 10.76 66.42 8.96 48.31 +bancaire bancaire ADJ s 3.94 1.49 2.71 0.74 +bancaires bancaire ADJ p 3.94 1.49 1.23 0.74 +bancal bancal ADJ m s 0.53 3.18 0.29 1.42 +bancale bancal ADJ f s 0.53 3.18 0.20 1.08 +bancales bancal ADJ f p 0.53 3.18 0.02 0.34 +bancals bancal ADJ m p 0.53 3.18 0.02 0.34 +banche bancher VER 0.01 0.00 0.01 0.00 ind:pre:3s; +banco banco ONO 0.42 0.41 0.42 0.41 +bancos banco NOM m p 0.04 0.27 0.01 0.07 +bancroche bancroche ADJ s 0.01 0.14 0.01 0.00 +bancroches bancroche ADJ p 0.01 0.14 0.00 0.14 +bancs banc NOM m p 10.76 66.42 1.81 18.11 +banda bander VER 14.51 15.54 0.01 0.54 ind:pas:3s; +bandage bandage NOM m s 4.76 2.97 2.79 1.35 +bandages bandage NOM m p 4.76 2.97 1.96 1.62 +bandagiste bandagiste NOM s 0.00 0.14 0.00 0.14 +bandai bander VER 14.51 15.54 0.00 0.07 ind:pas:1s; +bandaient bander VER 14.51 15.54 0.02 0.20 ind:imp:3p; +bandais bander VER 14.51 15.54 0.12 0.61 ind:imp:1s;ind:imp:2s; +bandaison bandaison NOM f s 0.00 0.74 0.00 0.54 +bandaisons bandaison NOM f p 0.00 0.74 0.00 0.20 +bandait bander VER 14.51 15.54 0.18 1.49 ind:imp:3s; +bandana bandana NOM m s 0.50 0.07 0.46 0.07 +bandanas bandana NOM m p 0.50 0.07 0.04 0.00 +bandant bandant ADJ m s 1.46 1.55 0.33 0.27 +bandante bandant ADJ f s 1.46 1.55 1.04 0.68 +bandantes bandant ADJ f p 1.46 1.55 0.05 0.41 +bandants bandant ADJ m p 1.46 1.55 0.04 0.20 +bandasse bander VER 14.51 15.54 0.00 0.07 sub:imp:1s; +bande_annonce bande_annonce NOM f s 0.51 0.00 0.41 0.00 +bande_son bande_son NOM f s 0.09 0.27 0.09 0.27 +bande bande NOM f s 78.36 72.23 69.10 52.36 +bandeau bandeau NOM m s 2.60 6.49 2.34 4.73 +bandeaux bandeau NOM m p 2.60 6.49 0.26 1.76 +bandelette bandelette NOM f s 0.69 1.15 0.09 0.07 +bandelettes bandelette NOM f p 0.69 1.15 0.61 1.08 +bandent bander VER 14.51 15.54 0.14 1.01 ind:pre:3p; +bander bander VER 14.51 15.54 5.34 5.07 inf; +bandera bandera NOM f s 0.17 0.27 0.02 0.20 +banderai bander VER 14.51 15.54 0.15 0.14 ind:fut:1s; +banderaient bander VER 14.51 15.54 0.01 0.07 cnd:pre:3p; +banderait bander VER 14.51 15.54 0.00 0.07 cnd:pre:3s; +banderas bander VER 14.51 15.54 0.14 0.07 ind:fut:2s; +banderille banderille NOM f s 0.00 0.88 0.00 0.41 +banderillero banderillero NOM m s 0.10 0.07 0.10 0.00 +banderilleros banderillero NOM m p 0.10 0.07 0.00 0.07 +banderilles banderille NOM f p 0.00 0.88 0.00 0.47 +banderole banderole NOM f s 1.34 4.19 0.67 2.23 +banderoles banderole NOM f p 1.34 4.19 0.67 1.96 +bande_annonce bande_annonce NOM f p 0.51 0.00 0.10 0.00 +bandes bande NOM f p 78.36 72.23 9.26 19.86 +bandeur bandeur NOM m s 0.07 0.14 0.03 0.00 +bandeurs bandeur NOM m p 0.07 0.14 0.04 0.14 +bandez bander VER 14.51 15.54 0.82 0.14 imp:pre:2p;ind:pre:2p; +bandiez bander VER 14.51 15.54 0.02 0.00 ind:imp:2p; +bandit bandit NOM m s 19.70 8.85 8.26 4.59 +banditisme banditisme NOM m s 0.47 0.95 0.47 0.95 +bandits bandit NOM m p 19.70 8.85 11.45 4.26 +bandoline bandoline NOM f s 0.00 0.07 0.00 0.07 +bandonéon bandonéon NOM m s 0.00 0.20 0.00 0.20 +bandothèque bandothèque NOM f s 0.01 0.00 0.01 0.00 +bandoulière bandoulière NOM f s 0.12 4.19 0.12 4.19 +bandé bander VER m s 14.51 15.54 0.60 0.81 par:pas; +bandée bandé ADJ f s 1.40 3.58 0.33 1.22 +bandées bandé ADJ f p 1.40 3.58 0.00 0.27 +bandés bandé ADJ m p 1.40 3.58 1.03 1.55 +bang bang ONO 1.74 0.20 1.74 0.20 +bangladais bangladais NOM m 0.00 0.07 0.00 0.07 +bangs bang NOM m p 2.37 0.61 0.34 0.27 +banian banian NOM m s 0.05 0.27 0.04 0.20 +banians banian NOM m p 0.05 0.27 0.01 0.07 +banjo banjo NOM m s 3.13 1.08 3.08 0.81 +banjos banjo NOM m p 3.13 1.08 0.06 0.27 +bank_note bank_note NOM f s 0.00 0.20 0.00 0.07 +bank_note bank_note NOM f p 0.00 0.20 0.00 0.14 +banlieue banlieue NOM f s 7.92 23.85 6.96 21.35 +banlieues banlieue NOM f p 7.92 23.85 0.96 2.50 +banlieusard banlieusard NOM m s 0.23 0.68 0.09 0.20 +banlieusarde banlieusard NOM f s 0.23 0.68 0.01 0.14 +banlieusardes banlieusard NOM f p 0.23 0.68 0.02 0.00 +banlieusards banlieusard NOM m p 0.23 0.68 0.10 0.34 +banne banner VER 0.86 0.07 0.40 0.00 imp:pre:2s;ind:pre:3s; +banner banner VER 0.86 0.07 0.46 0.07 inf; +bannes banne NOM f p 0.00 0.07 0.00 0.07 +banni bannir VER m s 7.03 3.31 2.48 1.49 par:pas; +bannie bannir VER f s 7.03 3.31 0.85 0.27 par:pas; +bannies bannir VER f p 7.03 3.31 0.07 0.14 par:pas; +bannir bannir VER 7.03 3.31 1.62 0.61 inf; +bannirait bannir VER 7.03 3.31 0.34 0.14 cnd:pre:3s; +bannirent bannir VER 7.03 3.31 0.02 0.00 ind:pas:3p; +bannis bannir VER m p 7.03 3.31 0.93 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bannissaient bannir VER 7.03 3.31 0.00 0.14 ind:imp:3p; +bannissait bannir VER 7.03 3.31 0.00 0.14 ind:imp:3s; +bannissant bannir VER 7.03 3.31 0.01 0.07 par:pre; +bannisse bannir VER 7.03 3.31 0.02 0.00 sub:pre:3s; +bannissement bannissement NOM m s 0.62 0.47 0.59 0.34 +bannissements bannissement NOM m p 0.62 0.47 0.03 0.14 +bannissez bannir VER 7.03 3.31 0.57 0.07 imp:pre:2p; +bannissons bannir VER 7.03 3.31 0.06 0.00 imp:pre:1p;ind:pre:1p; +bannit bannir VER 7.03 3.31 0.05 0.07 ind:pre:3s;ind:pas:3s; +bannière bannière NOM f s 2.14 6.96 1.83 2.91 +bannières bannière NOM f p 2.14 6.96 0.31 4.05 +banqua banquer VER 0.08 0.47 0.00 0.07 ind:pas:3s; +banque banque NOM f s 79.35 30.88 70.79 25.54 +banquer banquer VER 0.08 0.47 0.04 0.27 inf; +banquerai banquer VER 0.08 0.47 0.00 0.07 ind:fut:1s; +banqueroute banqueroute NOM f s 1.02 0.74 0.82 0.68 +banqueroutes banqueroute NOM f p 1.02 0.74 0.20 0.07 +banqueroutier banqueroutier NOM m s 0.11 0.00 0.01 0.00 +banqueroutiers banqueroutier NOM m p 0.11 0.00 0.10 0.00 +banques banque NOM f p 79.35 30.88 8.56 5.34 +banquet banquet NOM m s 4.41 5.88 3.62 4.12 +banquets banquet NOM m p 4.41 5.88 0.79 1.76 +banquette banquette NOM f s 3.02 30.88 2.66 24.26 +banquettes banquette NOM f p 3.02 30.88 0.36 6.62 +banqueté banqueter VER m s 0.04 0.00 0.04 0.00 par:pas; +banquier banquier NOM m s 6.32 12.70 4.70 8.38 +banquiers banquier NOM m p 6.32 12.70 1.33 3.99 +banquise banquise NOM f s 0.66 1.55 0.65 1.42 +banquises banquise NOM f p 0.66 1.55 0.01 0.14 +banquistes banquiste NOM p 0.00 0.14 0.00 0.14 +banquière banquier NOM f s 6.32 12.70 0.29 0.20 +banquières banquière NOM f p 0.07 0.00 0.03 0.00 +banqué banquer VER m s 0.08 0.47 0.04 0.07 par:pas; +bans ban NOM m p 1.66 2.16 0.90 0.41 +bantou bantou NOM m s 0.14 0.00 0.14 0.00 +bantoue bantou ADJ f s 0.14 0.07 0.02 0.07 +bantu bantu NOM m s 0.01 0.00 0.01 0.00 +banyan banyan NOM m s 0.07 0.00 0.07 0.00 +banyuls banyuls NOM m 0.00 0.74 0.00 0.74 +baobab baobab NOM m s 0.58 1.15 0.18 0.81 +baobabs baobab NOM m p 0.58 1.15 0.40 0.34 +baou baou NOM m s 0.00 0.20 0.00 0.20 +baptisa baptiser VER 9.90 16.35 0.33 1.35 ind:pas:3s; +baptisai baptiser VER 9.90 16.35 0.00 0.07 ind:pas:1s; +baptisaient baptiser VER 9.90 16.35 0.00 0.34 ind:imp:3p; +baptisais baptiser VER 9.90 16.35 0.01 0.07 ind:imp:1s; +baptisait baptiser VER 9.90 16.35 0.05 0.95 ind:imp:3s; +baptisant baptiser VER 9.90 16.35 0.14 0.07 par:pre; +baptise baptiser VER 9.90 16.35 1.96 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +baptisent baptiser VER 9.90 16.35 0.00 0.41 ind:pre:3p; +baptiser baptiser VER 9.90 16.35 1.82 1.96 inf; +baptisera baptiser VER 9.90 16.35 0.20 0.14 ind:fut:3s; +baptiserai baptiser VER 9.90 16.35 0.01 0.00 ind:fut:1s; +baptiseraient baptiser VER 9.90 16.35 0.01 0.00 cnd:pre:3p; +baptiserait baptiser VER 9.90 16.35 0.00 0.14 cnd:pre:3s; +baptiseront baptiser VER 9.90 16.35 0.02 0.07 ind:fut:3p; +baptises baptiser VER 9.90 16.35 0.04 0.14 ind:pre:2s; +baptiseur baptiseur NOM m s 0.02 0.07 0.02 0.07 +baptisez baptiser VER 9.90 16.35 0.06 0.00 imp:pre:2p;ind:pre:2p; +baptisions baptiser VER 9.90 16.35 0.14 0.20 ind:imp:1p; +baptismal baptismal ADJ m s 0.19 1.22 0.00 0.20 +baptismale baptismal ADJ f s 0.19 1.22 0.01 0.20 +baptismales baptismal ADJ f p 0.19 1.22 0.00 0.07 +baptismaux baptismal ADJ m p 0.19 1.22 0.17 0.74 +baptisons baptiser VER 9.90 16.35 0.03 0.07 imp:pre:1p;ind:pre:1p; +baptiste baptiste ADJ s 0.77 0.34 0.69 0.34 +baptistes baptiste NOM p 0.24 0.07 0.19 0.07 +baptisèrent baptiser VER 9.90 16.35 0.06 0.07 ind:pas:3p; +baptistère baptistère NOM m s 0.00 0.41 0.00 0.41 +baptisé baptiser VER m s 9.90 16.35 3.61 5.54 par:pas; +baptisée baptiser VER f s 9.90 16.35 0.99 1.96 par:pas; +baptisées baptiser VER f p 9.90 16.35 0.04 0.27 par:pas; +baptisés baptiser VER m p 9.90 16.35 0.41 1.08 par:pas; +baptême baptême NOM m s 4.84 10.34 4.41 9.39 +baptêmes baptême NOM m p 4.84 10.34 0.43 0.95 +baquet baquet NOM m s 0.48 4.86 0.46 3.65 +baquets baquet NOM m p 0.48 4.86 0.02 1.22 +bar_hôtel bar_hôtel NOM m s 0.01 0.00 0.01 0.00 +bar_mitsva bar_mitsva NOM f 0.41 0.07 0.41 0.07 +bar_restaurant bar_restaurant NOM m s 0.00 0.07 0.00 0.07 +bar_tabac bar_tabac NOM m s 0.03 0.61 0.03 0.61 +bar bar NOM m s 67.57 61.35 60.17 52.57 +baragouin baragouin NOM m s 0.12 0.41 0.11 0.41 +baragouinage baragouinage NOM m s 0.10 0.00 0.10 0.00 +baragouinaient baragouiner VER 0.68 1.49 0.00 0.07 ind:imp:3p; +baragouinait baragouiner VER 0.68 1.49 0.01 0.54 ind:imp:3s; +baragouinant baragouiner VER 0.68 1.49 0.25 0.20 par:pre; +baragouine baragouiner VER 0.68 1.49 0.19 0.20 ind:pre:1s;ind:pre:3s; +baragouinent baragouiner VER 0.68 1.49 0.02 0.14 ind:pre:3p; +baragouiner baragouiner VER 0.68 1.49 0.07 0.20 inf; +baragouines baragouiner VER 0.68 1.49 0.09 0.00 ind:pre:2s; +baragouineur baragouineur NOM m s 0.01 0.00 0.01 0.00 +baragouinez baragouiner VER 0.68 1.49 0.04 0.00 ind:pre:2p; +baragouins baragouin NOM m p 0.12 0.41 0.01 0.00 +baragouiné baragouiner VER m s 0.68 1.49 0.01 0.14 par:pas; +baraka baraka NOM f s 0.18 0.47 0.18 0.47 +baralipton baralipton NOM m s 0.00 0.07 0.00 0.07 +baraque baraque NOM f s 12.27 30.47 11.10 22.84 +baraquement baraquement NOM m s 1.35 2.64 0.68 1.01 +baraquements baraquement NOM m p 1.35 2.64 0.67 1.62 +baraques baraque NOM f p 12.27 30.47 1.17 7.64 +baraqué baraqué ADJ m s 1.04 0.68 0.96 0.41 +baraquée baraqué ADJ f s 1.04 0.68 0.02 0.14 +baraqués baraqué ADJ m p 1.04 0.68 0.06 0.14 +baraterie baraterie NOM f s 0.01 0.00 0.01 0.00 +baratin baratin NOM m s 4.03 2.97 3.90 2.84 +baratinais baratiner VER 1.89 1.15 0.03 0.00 ind:imp:1s;ind:imp:2s; +baratinait baratiner VER 1.89 1.15 0.11 0.07 ind:imp:3s; +baratine baratiner VER 1.89 1.15 0.75 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +baratinent baratiner VER 1.89 1.15 0.01 0.00 ind:pre:3p; +baratiner baratiner VER 1.89 1.15 0.42 0.68 inf; +baratines baratiner VER 1.89 1.15 0.13 0.00 ind:pre:2s; +baratineur baratineur NOM m s 0.74 0.27 0.44 0.20 +baratineurs baratineur NOM m p 0.74 0.27 0.17 0.07 +baratineuse baratineur NOM f s 0.74 0.27 0.13 0.00 +baratinez baratiner VER 1.89 1.15 0.05 0.00 imp:pre:2p;ind:pre:2p; +baratins baratin NOM m p 4.03 2.97 0.14 0.14 +baratiné baratiner VER m s 1.89 1.15 0.21 0.27 par:pas; +baratinée baratiner VER f s 1.89 1.15 0.15 0.00 par:pas; +baratinés baratiner VER m p 1.89 1.15 0.02 0.00 par:pas; +barattage barattage NOM m s 0.10 0.00 0.10 0.00 +barattait baratter VER 0.14 0.47 0.00 0.14 ind:imp:3s; +barattant baratter VER 0.14 0.47 0.00 0.07 par:pre; +baratte baratte NOM f s 0.03 0.41 0.03 0.34 +barattent baratter VER 0.14 0.47 0.00 0.07 ind:pre:3p; +baratter baratter VER 0.14 0.47 0.13 0.07 inf; +barattes baratte NOM f p 0.03 0.41 0.00 0.07 +baratté baratter VER m s 0.14 0.47 0.01 0.00 par:pas; +barattés baratter VER m p 0.14 0.47 0.00 0.07 par:pas; +barba barber VER 0.78 1.69 0.14 0.27 ind:pas:3s; +barbacane barbacane NOM f s 0.02 0.14 0.02 0.07 +barbacanes barbacane NOM f p 0.02 0.14 0.00 0.07 +barbaient barber VER 0.78 1.69 0.01 0.00 ind:imp:3p; +barbait barber VER 0.78 1.69 0.03 0.14 ind:imp:3s; +barbant barbant ADJ m s 1.90 0.27 1.02 0.20 +barbante barbant ADJ f s 1.90 0.27 0.65 0.00 +barbantes barbant ADJ f p 1.90 0.27 0.05 0.00 +barbants barbant ADJ m p 1.90 0.27 0.18 0.07 +barbaque barbaque NOM f s 0.24 3.18 0.24 3.18 +barbara barbara NOM s 0.05 0.00 0.05 0.00 +barbare barbare NOM s 5.15 5.47 2.03 1.62 +barbarement barbarement ADV 0.00 0.14 0.00 0.14 +barbares barbare NOM p 5.15 5.47 3.12 3.85 +barbaresque barbaresque ADJ m s 0.00 0.95 0.00 0.41 +barbaresques barbaresque NOM p 0.05 0.61 0.05 0.54 +barbarie barbarie NOM f s 1.37 3.72 1.36 3.58 +barbaries barbarie NOM f p 1.37 3.72 0.01 0.14 +barbarisme barbarisme NOM m s 0.04 0.34 0.04 0.14 +barbarismes barbarisme NOM m p 0.04 0.34 0.00 0.20 +barbe_de_capucin barbe_de_capucin NOM f s 0.00 0.07 0.00 0.07 +barbe barbe NOM s 24.15 50.54 23.40 47.70 +barbeau barbeau NOM m s 0.01 1.08 0.01 0.74 +barbeaux barbeau NOM m p 0.01 1.08 0.00 0.34 +barbecue barbecue NOM m s 5.87 0.47 5.47 0.47 +barbecues barbecue NOM m p 5.87 0.47 0.39 0.00 +barbelé barbelé ADJ m s 0.86 2.97 0.35 0.81 +barbelée barbelé ADJ f s 0.86 2.97 0.05 0.41 +barbelées barbelé ADJ f p 0.86 2.97 0.12 0.14 +barbelés barbelé NOM m p 3.56 8.38 3.25 7.36 +barbent barber VER 0.78 1.69 0.00 0.14 ind:pre:3p; +barber barber VER 0.78 1.69 0.06 0.20 inf; +barbera barber VER 0.78 1.69 0.00 0.07 ind:fut:3s; +barberait barber VER 0.78 1.69 0.00 0.07 cnd:pre:3s; +barbes barbe NOM p 24.15 50.54 0.75 2.84 +barbet barbet NOM m s 0.00 0.41 0.00 0.34 +barbets barbet NOM m p 0.00 0.41 0.00 0.07 +barbette barbette ADJ f s 0.01 0.00 0.01 0.00 +barbiche barbiche NOM f s 0.18 3.78 0.18 3.65 +barbiches barbiche NOM f p 0.18 3.78 0.00 0.14 +barbichette barbichette NOM f s 0.38 0.81 0.38 0.81 +barbichu barbichu ADJ m s 0.01 0.68 0.01 0.61 +barbichus barbichu ADJ m p 0.01 0.68 0.00 0.07 +barbier barbier NOM m s 3.62 22.50 3.57 22.16 +barbiers barbier NOM m p 3.62 22.50 0.05 0.34 +barbillon barbillon NOM m s 0.01 0.81 0.00 0.34 +barbillons barbillon NOM m p 0.01 0.81 0.01 0.47 +barbiquet barbiquet NOM m s 0.00 0.41 0.00 0.07 +barbiquets barbiquet NOM m p 0.00 0.41 0.00 0.34 +barbiturique barbiturique NOM m s 0.80 0.61 0.10 0.14 +barbituriques barbiturique NOM m p 0.80 0.61 0.70 0.47 +barbon barbon NOM m s 0.03 0.61 0.02 0.54 +barbons barbon NOM m p 0.03 0.61 0.01 0.07 +barbot barbot NOM m s 0.00 0.20 0.00 0.20 +barbota barboter VER 0.75 3.18 0.00 0.14 ind:pas:3s; +barbotages barbotage NOM m p 0.00 0.07 0.00 0.07 +barbotaient barboter VER 0.75 3.18 0.00 0.14 ind:imp:3p; +barbotait barboter VER 0.75 3.18 0.00 0.88 ind:imp:3s; +barbotant barboter VER 0.75 3.18 0.01 0.41 par:pre; +barbote barboter VER 0.75 3.18 0.04 0.20 ind:pre:1s;ind:pre:3s; +barbotent barboter VER 0.75 3.18 0.00 0.14 ind:pre:3p; +barboter barboter VER 0.75 3.18 0.26 0.88 inf; +barboterais barboter VER 0.75 3.18 0.00 0.07 cnd:pre:1s; +barboterait barboter VER 0.75 3.18 0.00 0.07 cnd:pre:3s; +barboteuse barboteur NOM f s 0.02 0.34 0.02 0.20 +barboteuses barboteuse NOM f p 0.01 0.00 0.01 0.00 +barbotière barbotière NOM f s 0.00 0.07 0.00 0.07 +barbotons barboter VER 0.75 3.18 0.16 0.14 imp:pre:1p;ind:pre:1p; +barbotte barbotte NOM f s 0.03 0.07 0.02 0.07 +barbottes barbotte NOM f p 0.03 0.07 0.01 0.00 +barboté barboter VER m s 0.75 3.18 0.28 0.14 par:pas; +barbouilla barbouiller VER 1.31 8.99 0.00 0.27 ind:pas:3s; +barbouillage barbouillage NOM m s 0.30 0.81 0.00 0.41 +barbouillages barbouillage NOM m p 0.30 0.81 0.30 0.41 +barbouillai barbouiller VER 1.31 8.99 0.00 0.07 ind:pas:1s; +barbouillaient barbouiller VER 1.31 8.99 0.00 0.20 ind:imp:3p; +barbouillais barbouiller VER 1.31 8.99 0.00 0.14 ind:imp:1s; +barbouillait barbouiller VER 1.31 8.99 0.00 0.74 ind:imp:3s; +barbouillant barbouiller VER 1.31 8.99 0.01 0.41 par:pre; +barbouille barbouiller VER 1.31 8.99 0.29 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +barbouillent barbouiller VER 1.31 8.99 0.00 0.20 ind:pre:3p; +barbouiller barbouiller VER 1.31 8.99 0.67 1.15 inf; +barbouilles barbouiller VER 1.31 8.99 0.10 0.14 ind:pre:2s; +barbouilleur barbouilleur NOM m s 0.00 1.22 0.00 0.81 +barbouilleurs barbouilleur NOM m p 0.00 1.22 0.00 0.41 +barbouillis barbouillis NOM m 0.00 0.07 0.00 0.07 +barbouillèrent barbouiller VER 1.31 8.99 0.00 0.14 ind:pas:3p; +barbouillé barbouillé ADJ m s 0.62 1.55 0.35 1.15 +barbouillée barbouillé ADJ f s 0.62 1.55 0.12 0.07 +barbouillées barbouillé ADJ f p 0.62 1.55 0.01 0.20 +barbouillés barbouillé ADJ m p 0.62 1.55 0.14 0.14 +barbouze barbouze NOM s 0.33 0.68 0.16 0.34 +barbouzes barbouze NOM p 0.33 0.68 0.17 0.34 +barbé barber VER m s 0.78 1.69 0.04 0.07 par:pas; +barbu barbu NOM m s 1.70 3.65 1.37 2.77 +barbue barbu ADJ f s 1.46 8.31 0.08 0.74 +barbues barbu ADJ f p 1.46 8.31 0.00 0.14 +barbules barbule NOM f p 0.01 0.00 0.01 0.00 +barbés barber VER m p 0.78 1.69 0.10 0.07 par:pas; +barbus barbu NOM m p 1.70 3.65 0.34 0.88 +barca barca ADV 0.16 0.20 0.16 0.20 +barcarolle barcarolle NOM f s 0.03 0.14 0.03 0.14 +barcasse barcasse NOM f s 0.00 0.68 0.00 0.41 +barcasses barcasse NOM f p 0.00 0.68 0.00 0.27 +barda barda NOM m s 1.62 2.16 1.46 1.55 +bardage bardage NOM m s 0.01 0.00 0.01 0.00 +bardaient barder VER 2.58 6.55 0.00 0.14 ind:imp:3p; +bardait barder VER 2.58 6.55 0.05 0.41 ind:imp:3s; +bardane bardane NOM f s 0.04 0.34 0.04 0.20 +bardanes bardane NOM f p 0.04 0.34 0.00 0.14 +bardas barda NOM m p 1.62 2.16 0.16 0.61 +barde barder VER 2.58 6.55 0.30 0.20 ind:pre:3s; +bardeau bardeau NOM m s 0.08 0.41 0.00 0.14 +bardeaux bardeau NOM m p 0.08 0.41 0.08 0.27 +barder barder VER 2.58 6.55 1.84 0.47 inf; +bardera barder VER 2.58 6.55 0.15 0.07 ind:fut:3s; +barderait barder VER 2.58 6.55 0.00 0.07 cnd:pre:3s; +bardes barde NOM p 0.18 0.68 0.00 0.27 +bardeurs bardeur NOM m p 0.00 0.07 0.00 0.07 +bardiques bardique ADJ f p 0.00 0.07 0.00 0.07 +bardo bardo NOM m s 0.11 0.20 0.11 0.20 +bardolino bardolino NOM m s 0.14 0.00 0.14 0.00 +bardot bardot NOM m s 0.27 0.20 0.27 0.07 +bardots bardot NOM m p 0.27 0.20 0.00 0.14 +bardé barder VER m s 2.58 6.55 0.07 2.30 par:pas; +bardée barder VER f s 2.58 6.55 0.01 1.22 par:pas; +bardées barder VER f p 2.58 6.55 0.01 0.54 par:pas; +bardés barder VER m p 2.58 6.55 0.14 1.15 par:pas; +baret baret NOM m s 0.00 0.07 0.00 0.07 +barge barge ADJ s 1.70 0.14 1.60 0.07 +barges barge NOM f p 1.00 0.74 0.28 0.34 +barguigna barguigner VER 0.14 0.34 0.00 0.07 ind:pas:3s; +barguigner barguigner VER 0.14 0.34 0.14 0.20 inf; +barguigné barguigner VER m s 0.14 0.34 0.00 0.07 par:pas; +baril baril NOM m s 2.71 3.04 1.81 2.03 +barillet barillet NOM m s 0.69 2.03 0.67 1.96 +barillets barillet NOM m p 0.69 2.03 0.03 0.07 +barils baril NOM m p 2.71 3.04 0.90 1.01 +barine barine NOM m s 0.22 0.00 0.22 0.00 +bariolage bariolage NOM m s 0.00 0.61 0.00 0.41 +bariolages bariolage NOM m p 0.00 0.61 0.00 0.20 +bariolaient barioler VER 0.03 2.64 0.00 0.07 ind:imp:3p; +bariolant barioler VER 0.03 2.64 0.00 0.14 par:pre; +bariole barioler VER 0.03 2.64 0.00 0.07 ind:pre:3s; +bariolé bariolé ADJ m s 0.21 5.47 0.02 1.35 +bariolée bariolé ADJ f s 0.21 5.47 0.03 1.76 +bariolées bariolé ADJ f p 0.21 5.47 0.01 0.88 +bariolures bariolure NOM f p 0.00 0.07 0.00 0.07 +bariolés bariolé ADJ m p 0.21 5.47 0.16 1.49 +barje barje ADJ m s 0.00 0.27 0.00 0.20 +barjes barje ADJ p 0.00 0.27 0.00 0.07 +barjo barjo ADJ m s 1.02 0.14 0.95 0.14 +barjos barjo NOM m p 1.01 0.14 0.28 0.00 +barjot barjot ADJ m s 0.84 0.47 0.63 0.34 +barjots barjot ADJ m p 0.84 0.47 0.21 0.14 +barmaid barmaid NOM f s 0.67 1.82 0.65 1.76 +barmaids barmaid NOM f p 0.67 1.82 0.02 0.07 +barman barman NOM m s 7.91 11.01 7.53 10.14 +barmans barman NOM m p 7.91 11.01 0.14 0.00 +barmen barman NOM m p 7.91 11.01 0.24 0.88 +barnum barnum NOM m s 0.03 0.20 0.03 0.20 +barolo barolo NOM m s 0.05 0.00 0.05 0.00 +baromètre baromètre NOM m s 0.57 2.91 0.56 2.30 +baromètres baromètre NOM m p 0.57 2.91 0.01 0.61 +barométrique barométrique ADJ s 0.04 0.14 0.04 0.14 +baron baron NOM m s 20.80 28.24 16.07 17.64 +baronet baronet NOM m s 0.07 0.07 0.07 0.07 +baronnait baronner VER 0.00 0.20 0.00 0.07 ind:imp:3s; +baronne baron NOM f s 20.80 28.24 4.17 7.03 +baronner baronner VER 0.00 0.20 0.00 0.07 inf; +baronnes baronne NOM f p 0.02 0.00 0.02 0.00 +baronnet baronnet NOM m s 0.10 0.34 0.10 0.07 +baronnets baronnet NOM m p 0.10 0.34 0.00 0.27 +baronnez baronner VER 0.00 0.20 0.00 0.07 ind:pre:2p; +baronnie baronnie NOM f s 0.02 0.14 0.02 0.07 +baronnies baronnie NOM f p 0.02 0.14 0.00 0.07 +barons baron NOM m p 20.80 28.24 0.56 3.51 +baroque baroque ADJ s 1.24 4.86 0.91 2.91 +baroques baroque ADJ p 1.24 4.86 0.34 1.96 +barotraumatisme barotraumatisme NOM m s 0.01 0.00 0.01 0.00 +baroud baroud NOM m s 0.04 1.35 0.04 1.35 +baroudeur baroudeur NOM m s 0.32 0.68 0.05 0.34 +baroudeurs baroudeur NOM m p 0.32 0.68 0.13 0.14 +baroudeuse baroudeur NOM f s 0.32 0.68 0.14 0.20 +baroudé barouder VER m s 0.28 0.00 0.28 0.00 par:pas; +barouf barouf NOM m s 0.28 0.68 0.28 0.68 +barque barque NOM f s 10.40 41.28 9.52 29.93 +barques barque NOM f p 10.40 41.28 0.89 11.35 +barquette barquette NOM f s 0.27 0.54 0.15 0.14 +barquettes barquette NOM f p 0.27 0.54 0.12 0.41 +barra barrer VER 26.71 32.36 0.13 1.01 ind:pas:3s; +barracuda barracuda NOM m s 2.26 0.34 2.19 0.34 +barracudas barracuda NOM m p 2.26 0.34 0.08 0.00 +barrage barrage NOM m s 13.40 19.66 9.60 10.68 +barrages barrage NOM m p 13.40 19.66 3.80 8.99 +barrai barrer VER 26.71 32.36 0.00 0.14 ind:pas:1s; +barraient barrer VER 26.71 32.36 0.03 1.35 ind:imp:3p; +barrais barrer VER 26.71 32.36 0.04 0.27 ind:imp:1s;ind:imp:2s; +barrait barrer VER 26.71 32.36 0.34 4.39 ind:imp:3s; +barrant barrer VER 26.71 32.36 0.03 2.23 par:pre; +barre barre NOM f s 18.78 29.39 15.59 23.18 +barreau barreau NOM m s 7.61 19.53 2.15 3.99 +barreaudées barreaudé ADJ f p 0.00 0.07 0.00 0.07 +barreaux barreau NOM m p 7.61 19.53 5.46 15.54 +barrent barrer VER 26.71 32.36 0.75 0.95 ind:pre:3p; +barrer barrer VER 26.71 32.36 4.58 4.80 inf; +barrera barrer VER 26.71 32.36 0.06 0.41 ind:fut:3s; +barrerai barrer VER 26.71 32.36 0.01 0.07 ind:fut:1s; +barrerais barrer VER 26.71 32.36 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +barreront barrer VER 26.71 32.36 0.03 0.14 ind:fut:3p; +barres barre NOM f p 18.78 29.39 3.19 6.22 +barrette barrette NOM f s 0.46 2.50 0.33 1.42 +barrettes barrette NOM f p 0.46 2.50 0.13 1.08 +barreur barreur NOM m s 0.07 0.00 0.05 0.00 +barreurs barreur NOM m p 0.07 0.00 0.01 0.00 +barreuse barreur NOM f s 0.07 0.00 0.01 0.00 +barrez barrer VER 26.71 32.36 4.38 0.68 imp:pre:2p;ind:pre:2p; +barri barrir VER m s 0.10 0.54 0.01 0.07 par:pas; +barricada barricader VER 2.46 5.41 0.00 0.07 ind:pas:3s; +barricadai barricader VER 2.46 5.41 0.00 0.14 ind:pas:1s; +barricadaient barricader VER 2.46 5.41 0.00 0.20 ind:imp:3p; +barricadait barricader VER 2.46 5.41 0.00 0.54 ind:imp:3s; +barricade barricade NOM f s 2.68 7.57 0.94 3.11 +barricadent barricader VER 2.46 5.41 0.05 0.41 ind:pre:3p; +barricader barricader VER 2.46 5.41 0.51 0.95 inf; +barricaderait barricader VER 2.46 5.41 0.00 0.14 cnd:pre:3s; +barricades barricade NOM f p 2.68 7.57 1.74 4.46 +barricadez barricader VER 2.46 5.41 0.56 0.07 imp:pre:2p;ind:pre:2p; +barricadier barricadier NOM m s 0.00 0.14 0.00 0.07 +barricadières barricadier NOM f p 0.00 0.14 0.00 0.07 +barricadons barricader VER 2.46 5.41 0.07 0.00 imp:pre:1p;ind:pre:1p; +barricadèrent barricader VER 2.46 5.41 0.01 0.07 ind:pas:3p; +barricadé barricader VER m s 2.46 5.41 0.52 1.08 par:pas; +barricadée barricader VER f s 2.46 5.41 0.07 0.34 par:pas; +barricadées barricader VER f p 2.46 5.41 0.06 0.47 par:pas; +barricadés barricader VER m p 2.46 5.41 0.14 0.61 par:pas; +barrique barrique NOM f s 0.99 1.55 0.68 0.81 +barriques barrique NOM f p 0.99 1.55 0.31 0.74 +barris barrir VER m p 0.10 0.54 0.07 0.00 imp:pre:2s;par:pas; +barrissait barrir VER 0.10 0.54 0.00 0.20 ind:imp:3s; +barrissant barrir VER 0.10 0.54 0.03 0.07 par:pre; +barrissement barrissement NOM m s 0.01 0.88 0.00 0.54 +barrissements barrissement NOM m p 0.01 0.88 0.01 0.34 +barrissent barrir VER 0.10 0.54 0.00 0.07 ind:pre:3p; +barriste barriste NOM s 0.00 0.07 0.00 0.07 +barrit barrir VER 0.10 0.54 0.00 0.14 ind:pre:3s; +barrière barrière NOM f s 9.13 22.91 7.33 17.36 +barrières barrière NOM f p 9.13 22.91 1.80 5.54 +barrons barrer VER 26.71 32.36 0.85 0.20 imp:pre:1p;ind:pre:1p; +barrèrent barrer VER 26.71 32.36 0.01 0.14 ind:pas:3p; +barré barrer VER m s 26.71 32.36 4.04 4.80 par:pas; +barrée barrer VER f s 26.71 32.36 1.88 3.18 par:pas; +barrées barrer VER f p 26.71 32.36 0.25 0.61 par:pas; +barrés barré ADJ m p 3.36 2.64 0.69 0.81 +barrésien barrésien NOM m s 0.00 0.07 0.00 0.07 +bars bar NOM m p 67.57 61.35 7.39 8.78 +bartavelle bartavelle NOM f s 1.61 1.08 0.67 0.00 +bartavelles bartavelle NOM f p 1.61 1.08 0.94 1.08 +barème barème NOM m s 0.31 0.54 0.17 0.34 +barèmes barème NOM m p 0.31 0.54 0.14 0.20 +barye barye NOM f s 0.01 0.00 0.01 0.00 +baryon baryon NOM m s 0.01 0.00 0.01 0.00 +baryte baryte NOM f s 0.00 0.07 0.00 0.07 +baryton baryton NOM m s 0.83 2.70 0.78 2.50 +barytonnant barytonner VER 0.00 0.14 0.00 0.07 par:pre; +barytonner barytonner VER 0.00 0.14 0.00 0.07 inf; +barytons baryton NOM m p 0.83 2.70 0.05 0.20 +baryté baryté ADJ m s 0.01 0.00 0.01 0.00 +baryum baryum NOM m s 0.06 0.14 0.06 0.14 +barzoï barzoï NOM m s 0.07 0.07 0.07 0.07 +bas_bleu bas_bleu NOM m s 0.01 0.47 0.01 0.34 +bas_bleu bas_bleu NOM m p 0.01 0.47 0.00 0.14 +bas_côté bas_côté NOM m s 0.60 5.34 0.58 3.58 +bas_côté bas_côté NOM m p 0.60 5.34 0.02 1.76 +bas_empire bas_empire NOM m 0.00 0.07 0.00 0.07 +bas_flanc bas_flanc NOM m 0.00 0.14 0.00 0.14 +bas_fond bas_fond NOM m s 1.05 3.72 0.02 1.62 +bas_fond bas_fond NOM m p 1.05 3.72 1.03 2.09 +bas_relief bas_relief NOM m s 0.09 1.22 0.08 0.34 +bas_relief bas_relief NOM m p 0.09 1.22 0.01 0.88 +bas_ventre bas_ventre NOM m s 0.23 2.30 0.23 2.30 +bas bas ADJ m 85.56 187.09 73.86 99.80 +basa baser VER 15.61 2.70 0.02 0.00 ind:pas:3s; +basaient baser VER 15.61 2.70 0.10 0.07 ind:imp:3p; +basait baser VER 15.61 2.70 0.04 0.14 ind:imp:3s; +basal basal ADJ m s 0.15 0.00 0.15 0.00 +basalte basalte NOM m s 0.03 1.01 0.03 0.95 +basaltes basalte NOM m p 0.03 1.01 0.00 0.07 +basaltique basaltique ADJ s 0.00 0.34 0.00 0.34 +basane basane NOM f s 0.01 0.95 0.00 0.88 +basanes basane NOM f p 0.01 0.95 0.01 0.07 +basant baser VER 15.61 2.70 1.47 0.00 par:pre; +basané basané ADJ m s 0.44 2.50 0.32 1.69 +basanée basané ADJ f s 0.44 2.50 0.01 0.47 +basanées basané ADJ f p 0.44 2.50 0.01 0.14 +basanés basané ADJ m p 0.44 2.50 0.10 0.20 +bascula basculer VER 5.29 31.35 0.22 3.78 ind:pas:3s; +basculai basculer VER 5.29 31.35 0.00 0.27 ind:pas:1s; +basculaient basculer VER 5.29 31.35 0.10 0.74 ind:imp:3p; +basculais basculer VER 5.29 31.35 0.00 0.14 ind:imp:1s;ind:imp:2s; +basculait basculer VER 5.29 31.35 0.01 2.50 ind:imp:3s; +basculant basculant ADJ m s 0.06 0.95 0.04 0.54 +basculante basculant ADJ f s 0.06 0.95 0.00 0.27 +basculants basculant ADJ m p 0.06 0.95 0.03 0.14 +bascule basculer VER 5.29 31.35 1.12 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +basculement basculement NOM m s 0.04 0.14 0.04 0.14 +basculent basculer VER 5.29 31.35 0.02 0.74 ind:pre:3p; +basculer basculer VER 5.29 31.35 2.33 10.95 inf; +basculera basculer VER 5.29 31.35 0.00 0.20 ind:fut:3s; +basculerai basculer VER 5.29 31.35 0.00 0.07 ind:fut:1s; +basculerais basculer VER 5.29 31.35 0.14 0.00 cnd:pre:2s; +basculerait basculer VER 5.29 31.35 0.01 0.14 cnd:pre:3s; +basculeront basculer VER 5.29 31.35 0.14 0.07 ind:fut:3p; +bascules basculer VER 5.29 31.35 0.03 0.07 ind:pre:2s; +basculez basculer VER 5.29 31.35 0.15 0.00 imp:pre:2p;ind:pre:2p; +basculions basculer VER 5.29 31.35 0.00 0.07 ind:imp:1p; +basculâmes basculer VER 5.29 31.35 0.00 0.07 ind:pas:1p; +basculât basculer VER 5.29 31.35 0.00 0.07 sub:imp:3s; +basculèrent basculer VER 5.29 31.35 0.00 0.34 ind:pas:3p; +basculé basculer VER m s 5.29 31.35 1.02 3.72 par:pas; +basculée basculer VER f s 5.29 31.35 0.00 0.54 par:pas; +basculées basculer VER f p 5.29 31.35 0.01 0.07 par:pas; +basculés basculer VER m p 5.29 31.35 0.01 0.20 par:pas; +base_ball base_ball NOM m s 10.12 1.28 10.12 1.28 +base base NOM f s 59.22 44.46 51.69 31.96 +baseball baseball NOM m s 6.95 0.00 6.95 0.00 +basent baser VER 15.61 2.70 0.23 0.00 ind:pre:3p; +baser baser VER 15.61 2.70 0.44 0.07 inf; +basera baser VER 15.61 2.70 0.01 0.00 ind:fut:3s; +baseront baser VER 15.61 2.70 0.03 0.00 ind:fut:3p; +bases base NOM f p 59.22 44.46 7.53 12.50 +basez baser VER 15.61 2.70 0.35 0.07 imp:pre:2p;ind:pre:2p; +basic basic NOM m s 0.03 0.00 0.03 0.00 +basilaire basilaire ADJ s 0.04 0.00 0.04 0.00 +basileus basileus NOM m 0.04 0.00 0.04 0.00 +basilic basilic NOM m s 1.86 1.01 1.86 1.01 +basilicum basilicum NOM m s 0.00 0.07 0.00 0.07 +basilique basilique NOM f s 0.66 4.19 0.52 3.92 +basiliques basilique NOM f p 0.66 4.19 0.14 0.27 +basin basin NOM m s 0.00 0.07 0.00 0.07 +basique basique ADJ s 1.30 0.00 0.85 0.00 +basiques basique ADJ p 1.30 0.00 0.45 0.00 +basket_ball basket_ball NOM m s 1.38 0.34 1.38 0.34 +basket basket NOM s 16.48 3.45 10.91 0.88 +baskets basket NOM p 16.48 3.45 5.56 2.57 +basketteur basketteur NOM m s 0.43 0.20 0.31 0.07 +basketteurs basketteur NOM m p 0.43 0.20 0.10 0.07 +basketteuse basketteur NOM f s 0.43 0.20 0.01 0.00 +basketteuses basketteur NOM f p 0.43 0.20 0.01 0.07 +basmati basmati NOM m s 0.03 0.00 0.03 0.00 +basoche basoche NOM f s 0.00 0.07 0.00 0.07 +basons baser VER 15.61 2.70 0.02 0.07 imp:pre:1p;ind:pre:1p; +basquaise basquais ADJ f s 0.13 0.14 0.13 0.14 +basque basque ADJ s 8.73 3.58 7.51 3.24 +basques basque NOM p 4.12 2.64 3.52 2.16 +bassa bassa NOM s 0.00 0.14 0.00 0.07 +bassas bassa NOM p 0.00 0.14 0.00 0.07 +basse_cour basse_cour NOM f s 0.81 3.85 0.57 3.65 +basse_fosse basse_fosse NOM f s 0.01 0.20 0.01 0.14 +basse_taille basse_taille NOM f s 0.00 0.14 0.00 0.14 +basse bas ADJ f s 85.56 187.09 9.54 71.28 +bassement bassement ADV 0.35 0.54 0.35 0.54 +basse_cour basse_cour NOM f p 0.81 3.85 0.23 0.20 +basse_fosse basse_fosse NOM f p 0.01 0.20 0.00 0.07 +basses bas ADJ f p 85.56 187.09 2.15 16.01 +bassesse bassesse NOM f s 1.72 3.65 1.15 2.50 +bassesses bassesse NOM f p 1.72 3.65 0.57 1.15 +basset basset NOM m s 0.70 1.49 0.53 1.28 +bassets basset NOM m p 0.70 1.49 0.17 0.20 +bassette bassette NOM f s 0.01 0.07 0.01 0.07 +bassin bassin NOM m s 5.03 25.20 4.51 21.22 +bassinaient bassiner VER 0.46 1.42 0.00 0.07 ind:imp:3p; +bassinais bassiner VER 0.46 1.42 0.00 0.07 ind:imp:1s; +bassinait bassiner VER 0.46 1.42 0.02 0.07 ind:imp:3s; +bassinant bassiner VER 0.46 1.42 0.00 0.07 par:pre; +bassine bassine NOM f s 1.59 8.99 1.55 6.55 +bassiner bassiner VER 0.46 1.42 0.23 0.54 inf; +bassines bassine NOM f p 1.59 8.99 0.04 2.43 +bassinet bassinet NOM m s 0.16 0.34 0.16 0.34 +bassinez bassiner VER 0.46 1.42 0.01 0.00 ind:pre:2p; +bassinoire bassinoire NOM f s 0.01 0.47 0.00 0.41 +bassinoires bassinoire NOM f p 0.01 0.47 0.01 0.07 +bassins bassin NOM m p 5.03 25.20 0.52 3.99 +bassiné bassiner VER m s 0.46 1.42 0.07 0.14 par:pas; +bassiste bassiste NOM s 0.94 0.81 0.93 0.74 +bassistes bassiste NOM p 0.94 0.81 0.02 0.07 +basson basson NOM m s 0.07 0.07 0.07 0.07 +basta basta ONO 2.15 1.49 2.15 1.49 +baste baste ONO 0.42 0.14 0.42 0.14 +baster baster VER 0.10 0.20 0.01 0.00 inf; +bastide bastide NOM f s 1.14 0.41 0.73 0.27 +bastides bastide NOM f p 1.14 0.41 0.40 0.14 +bastille bastille NOM f s 1.81 4.32 1.81 4.12 +bastilles bastille NOM f p 1.81 4.32 0.00 0.20 +bastingage bastingage NOM m s 0.23 2.03 0.23 1.82 +bastingages bastingage NOM m p 0.23 2.03 0.00 0.20 +bastion bastion NOM m s 1.49 2.70 1.44 1.89 +bastionnée bastionner VER f s 0.00 0.07 0.00 0.07 par:pas; +bastions bastion NOM m p 1.49 2.70 0.04 0.81 +baston baston NOM m s 1.51 0.88 1.43 0.81 +bastonnade bastonnade NOM f s 0.13 0.47 0.12 0.41 +bastonnades bastonnade NOM f p 0.13 0.47 0.01 0.07 +bastonne bastonner VER 0.62 0.68 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bastonnent bastonner VER 0.62 0.68 0.01 0.00 ind:pre:3p; +bastonner bastonner VER 0.62 0.68 0.17 0.20 inf; +bastonneurs bastonneur NOM m p 0.02 0.00 0.02 0.00 +bastonné bastonner VER m s 0.62 0.68 0.06 0.27 par:pas; +bastonnée bastonner VER f s 0.62 0.68 0.10 0.07 par:pas; +bastonnés bastonner VER m p 0.62 0.68 0.02 0.00 par:pas; +bastons baston NOM m p 1.51 0.88 0.09 0.07 +bastos bastos NOM f 0.42 1.62 0.42 1.62 +bastringue bastringue NOM m s 0.50 1.08 0.42 1.01 +bastringues bastringue NOM m p 0.50 1.08 0.08 0.07 +basé baser VER m s 15.61 2.70 4.86 0.41 par:pas; +basée baser VER f s 15.61 2.70 3.60 0.74 par:pas; +basées baser VER f p 15.61 2.70 1.14 0.27 par:pas; +basés baser VER m p 15.61 2.70 1.15 0.61 par:pas; +bat_flanc bat_flanc NOM m 0.00 2.84 0.00 2.84 +bat_l_eau bat_l_eau NOM m s 0.00 0.07 0.00 0.07 +bat battre VER 200.32 182.36 27.36 17.97 ind:pre:3s; +bataclan bataclan NOM m s 0.25 1.08 0.25 1.08 +batailla batailler VER 0.34 1.76 0.00 0.07 ind:pas:3s; +bataillait batailler VER 0.34 1.76 0.00 0.27 ind:imp:3s; +bataillant batailler VER 0.34 1.76 0.01 0.27 par:pre; +bataille bataille NOM f s 32.02 77.77 28.31 64.19 +bataillent batailler VER 0.34 1.76 0.00 0.14 ind:pre:3p; +batailler batailler VER 0.34 1.76 0.10 0.61 inf; +batailles bataille NOM f p 32.02 77.77 3.71 13.58 +batailleur batailleur NOM m s 0.01 0.00 0.01 0.00 +batailleurs batailleur ADJ m p 0.00 1.35 0.00 0.47 +batailleuse batailleur ADJ f s 0.00 1.35 0.00 0.20 +batailleuses batailleur ADJ f p 0.00 1.35 0.00 0.07 +bataillon bataillon NOM m s 8.13 29.53 6.84 20.07 +bataillonnaire bataillonnaire NOM m s 0.00 0.14 0.00 0.07 +bataillonnaires bataillonnaire NOM m p 0.00 0.14 0.00 0.07 +bataillons bataillon NOM m p 8.13 29.53 1.28 9.46 +bataillèrent batailler VER 0.34 1.76 0.00 0.07 ind:pas:3p; +bataillé batailler VER m s 0.34 1.76 0.06 0.07 par:pas; +bataillés batailler VER m p 0.34 1.76 0.00 0.07 par:pas; +batak batak NOM m s 0.05 0.00 0.05 0.00 +batardeau batardeau NOM m s 0.02 0.00 0.02 0.00 +batave batave ADJ s 0.01 0.27 0.01 0.14 +bataves batave ADJ p 0.01 0.27 0.00 0.14 +bateau_citerne bateau_citerne NOM m s 0.03 0.00 0.03 0.00 +bateau_lavoir bateau_lavoir NOM m s 0.00 0.20 0.00 0.14 +bateau_mouche bateau_mouche NOM m s 0.01 0.74 0.01 0.34 +bateau_pilote bateau_pilote NOM m s 0.01 0.00 0.01 0.00 +bateau_pompe bateau_pompe NOM m s 0.00 0.07 0.00 0.07 +bateau bateau NOM m s 124.82 82.36 106.55 61.22 +bateau_lavoir bateau_lavoir NOM m p 0.00 0.20 0.00 0.07 +bateau_mouche bateau_mouche NOM m p 0.01 0.74 0.00 0.41 +bateaux bateau NOM m p 124.82 82.36 18.27 21.15 +batelets batelet NOM m p 0.00 0.20 0.00 0.20 +bateleur bateleur NOM m s 0.00 1.08 0.00 0.61 +bateleurs bateleur NOM m p 0.00 1.08 0.00 0.47 +batelier batelier NOM m s 0.36 1.89 0.25 0.61 +bateliers batelier NOM m p 0.36 1.89 0.11 1.28 +batellerie batellerie NOM f s 0.00 0.20 0.00 0.20 +bath bath ADJ 0.29 4.73 0.29 4.73 +bathyale bathyal ADJ f s 0.01 0.00 0.01 0.00 +bathymètre bathymètre NOM m s 0.01 0.00 0.01 0.00 +bathymétrique bathymétrique ADJ m s 0.01 0.00 0.01 0.00 +bathyscaphe bathyscaphe NOM m s 0.05 0.00 0.05 0.00 +bathysphère bathysphère NOM f s 0.01 0.00 0.01 0.00 +batifola batifoler VER 1.21 0.88 0.00 0.07 ind:pas:3s; +batifolage batifolage NOM m s 0.25 0.14 0.23 0.07 +batifolages batifolage NOM m p 0.25 0.14 0.01 0.07 +batifolaient batifoler VER 1.21 0.88 0.01 0.14 ind:imp:3p; +batifolais batifoler VER 1.21 0.88 0.01 0.00 ind:imp:1s; +batifolait batifoler VER 1.21 0.88 0.01 0.14 ind:imp:3s; +batifolant batifoler VER 1.21 0.88 0.17 0.20 par:pre; +batifole batifoler VER 1.21 0.88 0.17 0.07 ind:pre:1s;ind:pre:3s; +batifolent batifoler VER 1.21 0.88 0.03 0.00 ind:pre:3p; +batifoler batifoler VER 1.21 0.88 0.72 0.20 inf; +batifoles batifoler VER 1.21 0.88 0.01 0.00 ind:pre:2s; +batifoleurs batifoleur NOM m p 0.00 0.14 0.00 0.14 +batifolez batifoler VER 1.21 0.88 0.02 0.00 imp:pre:2p;ind:pre:2p; +batifolé batifoler VER m s 1.21 0.88 0.05 0.07 par:pas; +batik batik NOM m s 0.00 0.14 0.00 0.14 +batiste batiste NOM f s 0.00 0.88 0.00 0.88 +batracien batracien NOM m s 0.03 0.54 0.03 0.27 +batracienne batracien ADJ f s 0.01 0.07 0.01 0.07 +batraciens batracien NOM m p 0.03 0.54 0.00 0.27 +bats battre VER 200.32 182.36 13.72 2.77 imp:pre:2s;ind:pre:1s;ind:pre:2s; +battîmes battre VER 200.32 182.36 0.00 0.07 ind:pas:1p; +battît battre VER 200.32 182.36 0.00 0.14 sub:imp:3s; +battage battage NOM m s 0.18 0.34 0.18 0.27 +battages battage NOM m p 0.18 0.34 0.00 0.07 +battaient battre VER 200.32 182.36 2.14 11.15 ind:imp:3p; +battais battre VER 200.32 182.36 1.24 1.62 ind:imp:1s;ind:imp:2s; +battait battre VER 200.32 182.36 6.78 28.38 ind:imp:3s; +battant battre VER 200.32 182.36 2.00 8.31 par:pre; +battante battant NOM f s 1.73 11.42 0.42 0.07 +battantes battant ADJ f p 1.07 12.84 0.01 1.28 +battants battant NOM m p 1.73 11.42 0.39 3.99 +batte batte NOM f s 6.87 0.41 6.39 0.27 +battement battement NOM m s 5.28 19.26 2.59 10.81 +battements battement NOM m p 5.28 19.26 2.69 8.45 +battent battre VER 200.32 182.36 8.87 7.91 ind:pre:3p; +batterie batterie NOM f s 14.24 15.54 10.61 9.73 +batteries batterie NOM f p 14.24 15.54 3.63 5.81 +battes battre VER 200.32 182.36 0.65 0.14 sub:pre:2s; +batteur batteur NOM m s 4.50 3.99 3.34 1.82 +batteurs batteur NOM m p 4.50 3.99 0.89 0.61 +batteuse batteur NOM f s 4.50 3.99 0.27 1.42 +batteuses batteuse NOM f p 0.11 0.00 0.11 0.00 +battez battre VER 200.32 182.36 7.69 0.68 imp:pre:2p;ind:pre:2p; +battiez battre VER 200.32 182.36 0.52 0.27 ind:imp:2p; +battions battre VER 200.32 182.36 0.22 0.54 ind:imp:1p; +battirent battre VER 200.32 182.36 0.27 1.22 ind:pas:3p; +battis battre VER 200.32 182.36 0.14 0.41 ind:pas:1s; +battit battre VER 200.32 182.36 0.36 6.42 ind:pas:3s; +battle_dress battle_dress NOM m 0.00 0.14 0.00 0.14 +battoir battoir NOM m s 0.06 2.43 0.02 1.35 +battoires battoire NOM m p 0.00 0.07 0.00 0.07 +battoirs battoir NOM m p 0.06 2.43 0.03 1.08 +battons battre VER 200.32 182.36 2.26 1.55 imp:pre:1p;ind:pre:1p; +battra battre VER 200.32 182.36 2.74 0.81 ind:fut:3s; +battrai battre VER 200.32 182.36 2.54 0.47 ind:fut:1s; +battraient battre VER 200.32 182.36 0.17 0.68 cnd:pre:3p; +battrais battre VER 200.32 182.36 1.15 0.07 cnd:pre:1s;cnd:pre:2s; +battrait battre VER 200.32 182.36 1.02 1.55 cnd:pre:3s; +battras battre VER 200.32 182.36 0.52 0.27 ind:fut:2s; +battre battre VER 200.32 182.36 75.89 57.36 inf;; +battrez battre VER 200.32 182.36 0.41 0.14 ind:fut:2p; +battriez battre VER 200.32 182.36 0.12 0.00 cnd:pre:2p; +battrions battre VER 200.32 182.36 0.01 0.00 cnd:pre:1p; +battrons battre VER 200.32 182.36 1.07 0.47 ind:fut:1p; +battront battre VER 200.32 182.36 0.84 0.00 ind:fut:3p; +battu battre VER m s 200.32 182.36 24.13 17.36 par:pas; +battue battre VER f s 200.32 182.36 5.87 4.93 par:pas; +battues battre VER f p 200.32 182.36 0.41 0.95 par:pas; +battus battre VER m p 200.32 182.36 6.89 6.49 par:pas; +batée batée NOM f s 0.01 0.07 0.01 0.07 +bau bau NOM m s 0.22 0.07 0.22 0.07 +baud baud NOM m s 0.01 0.00 0.01 0.00 +baudelairien baudelairien ADJ m s 0.00 0.27 0.00 0.07 +baudelairiennes baudelairien ADJ f p 0.00 0.27 0.00 0.07 +baudelairiens baudelairien ADJ m p 0.00 0.27 0.00 0.14 +baudet baudet NOM m s 0.13 0.54 0.11 0.41 +baudets baudet NOM m p 0.13 0.54 0.03 0.14 +baudrier baudrier NOM m s 0.18 3.45 0.17 2.50 +baudriers baudrier NOM m p 0.18 3.45 0.01 0.95 +baudroie baudroie NOM f s 0.01 0.07 0.01 0.00 +baudroies baudroie NOM f p 0.01 0.07 0.00 0.07 +baudruche baudruche NOM f s 0.32 0.88 0.28 0.81 +baudruches baudruche NOM f p 0.32 0.88 0.04 0.07 +bauge bauge NOM f s 0.14 1.35 0.14 1.22 +bauges bauge NOM f p 0.14 1.35 0.00 0.14 +baugé bauger VER m s 0.00 0.07 0.00 0.07 par:pas; +baume baume NOM s 1.94 3.65 1.79 2.91 +baumes baume NOM p 1.94 3.65 0.16 0.74 +baumier baumier NOM m s 0.01 0.07 0.01 0.00 +baumiers baumier NOM m p 0.01 0.07 0.00 0.07 +baux bail,bau NOM m p 0.19 0.34 0.19 0.34 +bauxite bauxite NOM f s 0.18 0.41 0.18 0.41 +bava baver VER 9.79 12.36 0.02 0.20 ind:pas:3s; +bavaient baver VER 9.79 12.36 0.02 0.41 ind:imp:3p; +bavais baver VER 9.79 12.36 0.06 0.54 ind:imp:1s; +bavait baver VER 9.79 12.36 0.39 1.62 ind:imp:3s; +bavant baver VER 9.79 12.36 0.14 1.35 par:pre; +bavard bavard ADJ m s 4.85 12.30 2.39 4.86 +bavarda bavarder VER 16.43 24.19 0.00 0.47 ind:pas:3s; +bavardage bavardage NOM m s 3.57 9.73 1.48 5.34 +bavardages bavardage NOM m p 3.57 9.73 2.08 4.39 +bavardai bavarder VER 16.43 24.19 0.01 0.07 ind:pas:1s; +bavardaient bavarder VER 16.43 24.19 0.04 2.23 ind:imp:3p; +bavardais bavarder VER 16.43 24.19 0.07 0.20 ind:imp:1s; +bavardait bavarder VER 16.43 24.19 0.89 2.16 ind:imp:3s; +bavardant bavarder VER 16.43 24.19 0.18 2.64 par:pre; +bavarde bavarder VER 16.43 24.19 1.55 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bavardent bavarder VER 16.43 24.19 0.48 0.88 ind:pre:3p; +bavarder bavarder VER 16.43 24.19 8.66 8.99 inf; +bavardera bavarder VER 16.43 24.19 0.48 0.14 ind:fut:3s; +bavarderai bavarder VER 16.43 24.19 0.00 0.14 ind:fut:1s; +bavarderait bavarder VER 16.43 24.19 0.10 0.07 cnd:pre:3s; +bavarderas bavarder VER 16.43 24.19 0.01 0.00 ind:fut:2s; +bavarderons bavarder VER 16.43 24.19 0.32 0.07 ind:fut:1p; +bavardes bavard ADJ f p 4.85 12.30 0.61 0.61 +bavardez bavarder VER 16.43 24.19 0.63 0.07 imp:pre:2p;ind:pre:2p; +bavardiez bavarder VER 16.43 24.19 0.01 0.07 ind:imp:2p; +bavardions bavarder VER 16.43 24.19 0.06 0.74 ind:imp:1p; +bavardons bavarder VER 16.43 24.19 0.98 0.47 imp:pre:1p;ind:pre:1p; +bavards bavard ADJ m p 4.85 12.30 0.69 2.09 +bavardèrent bavarder VER 16.43 24.19 0.00 0.47 ind:pas:3p; +bavardé bavarder VER m s 16.43 24.19 1.90 2.16 par:pas; +bavarois bavarois ADJ m 0.52 1.82 0.29 0.95 +bavaroise bavarois ADJ f s 0.52 1.82 0.20 0.27 +bavaroises bavarois ADJ f p 0.52 1.82 0.02 0.61 +bavassaient bavasser VER 0.91 0.95 0.00 0.07 ind:imp:3p; +bavassait bavasser VER 0.91 0.95 0.16 0.14 ind:imp:3s; +bavassant bavasser VER 0.91 0.95 0.01 0.07 par:pre; +bavasse bavasser VER 0.91 0.95 0.18 0.07 ind:pre:1s;ind:pre:3s; +bavassent bavasser VER 0.91 0.95 0.01 0.14 ind:pre:3p; +bavasser bavasser VER 0.91 0.95 0.48 0.41 inf; +bavasses bavasser VER 0.91 0.95 0.03 0.07 ind:pre:2s; +bavasseur bavasseur ADJ m s 0.01 0.00 0.01 0.00 +bavassiez bavasser VER 0.91 0.95 0.01 0.00 ind:imp:2p; +bavassé bavasser VER m s 0.91 0.95 0.03 0.00 par:pas; +bave bave NOM f s 2.10 3.99 2.08 3.78 +bavent baver VER 9.79 12.36 0.74 0.61 ind:pre:3p; +baver baver VER 9.79 12.36 3.04 4.12 inf; +baverais baver VER 9.79 12.36 0.00 0.07 cnd:pre:1s; +baveras baver VER 9.79 12.36 0.17 0.00 ind:fut:2s; +baverez baver VER 9.79 12.36 0.02 0.07 ind:fut:2p; +baveront baver VER 9.79 12.36 0.01 0.07 ind:fut:3p; +baves baver VER 9.79 12.36 0.97 0.00 ind:pre:2s; +bavette bavette NOM f s 0.35 0.95 0.19 0.88 +bavettes bavette NOM f p 0.35 0.95 0.16 0.07 +baveur baveur ADJ m s 0.05 0.20 0.05 0.14 +baveurs baveur ADJ m p 0.05 0.20 0.00 0.07 +baveuse baveux ADJ f s 1.31 4.05 0.17 0.95 +baveuses baveux ADJ f p 1.31 4.05 0.11 0.34 +baveux baveux ADJ m 1.31 4.05 1.02 2.77 +bavez baver VER 9.79 12.36 0.08 0.14 imp:pre:2p;ind:pre:2p; +bavocher bavocher VER 0.00 0.07 0.00 0.07 inf; +bavoir bavoir NOM m s 0.26 0.61 0.22 0.41 +bavoirs bavoir NOM m p 0.26 0.61 0.04 0.20 +bavons baver VER 9.79 12.36 0.16 0.00 imp:pre:1p;ind:pre:1p; +bavotait bavoter VER 0.00 0.14 0.00 0.07 ind:imp:3s; +bavotant bavoter VER 0.00 0.14 0.00 0.07 par:pre; +bavé baver VER m s 9.79 12.36 2.52 1.42 par:pas; +bavure bavure NOM f s 1.65 4.12 1.28 1.69 +bavures bavure NOM f p 1.65 4.12 0.38 2.43 +bayadère bayadère NOM f s 0.21 0.27 0.10 0.14 +bayadères bayadère NOM f p 0.21 0.27 0.11 0.14 +bayaient bayer VER 0.05 0.54 0.00 0.07 ind:imp:3p; +bayant bayer VER 0.05 0.54 0.00 0.07 par:pre; +bayard bayard NOM m s 0.00 0.07 0.00 0.07 +baye bayer VER 0.05 0.54 0.00 0.07 ind:pre:3s; +bayer bayer VER 0.05 0.54 0.01 0.20 inf; +bayons bayer VER 0.05 0.54 0.01 0.00 imp:pre:1p; +bayou bayou NOM m s 0.81 0.14 0.76 0.00 +bayous bayou NOM m p 0.81 0.14 0.05 0.14 +bayé bayer VER m s 0.05 0.54 0.00 0.14 par:pas; +bazar bazar NOM m s 8.36 7.43 8.18 6.42 +bazard bazard NOM m s 0.20 0.00 0.20 0.00 +bazardait bazarder VER 1.07 1.42 0.00 0.14 ind:imp:3s; +bazardant bazarder VER 1.07 1.42 0.00 0.07 par:pre; +bazarde bazarder VER 1.07 1.42 0.40 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bazarder bazarder VER 1.07 1.42 0.30 0.61 inf; +bazarderez bazarder VER 1.07 1.42 0.00 0.07 ind:fut:2p; +bazardes bazarder VER 1.07 1.42 0.17 0.00 ind:pre:2s; +bazardeur bazardeur NOM m s 0.00 0.07 0.00 0.07 +bazardé bazarder VER m s 1.07 1.42 0.14 0.20 par:pas; +bazardée bazarder VER f s 1.07 1.42 0.05 0.00 par:pas; +bazardées bazarder VER f p 1.07 1.42 0.01 0.07 par:pas; +bazars bazar NOM m p 8.36 7.43 0.17 1.01 +bazooka bazooka NOM m s 1.57 0.88 1.21 0.81 +bazookas bazooka NOM m p 1.57 0.88 0.36 0.07 +bcbg bcbg ADJ 0.14 0.14 0.14 0.14 +be_bop be_bop NOM m 0.31 0.34 0.31 0.34 +beagle beagle NOM m s 0.15 0.00 0.08 0.00 +beagles beagle NOM m p 0.15 0.00 0.07 0.00 +beat_generation beat_generation NOM f s 0.00 0.14 0.00 0.14 +beat beat ADJ s 1.34 0.20 1.34 0.20 +beatnik beatnik NOM s 0.45 0.07 0.33 0.00 +beatniks beatnik NOM p 0.45 0.07 0.12 0.07 +beau_fils beau_fils NOM m 1.29 1.01 1.27 1.01 +beau_frère beau_frère NOM m s 13.14 15.68 9.13 8.65 +beau_papa beau_papa NOM m s 0.23 0.14 0.23 0.14 +beau_parent beau_parent NOM m s 0.01 0.00 0.01 0.00 +beau_père beau_père NOM m s 16.54 14.05 9.29 7.09 +beau beau ADJ m s 671.86 620.07 281.23 270.07 +beauceron beauceron ADJ m s 0.00 1.35 0.00 0.47 +beauceronne beauceron ADJ f s 0.00 1.35 0.00 0.47 +beauceronnes beauceron ADJ f p 0.00 1.35 0.00 0.07 +beaucerons beauceron ADJ m p 0.00 1.35 0.00 0.34 +beaucoup beaucoup ADV 626.00 461.42 626.00 461.42 +beauf beauf NOM m s 1.07 0.41 0.96 0.34 +beaufs beauf NOM m p 1.07 0.41 0.11 0.07 +beaujolais beaujolais NOM m 0.04 1.49 0.04 1.49 +beaujolpif beaujolpif NOM m s 0.00 0.41 0.00 0.41 +beaupré beaupré NOM m s 0.01 0.07 0.01 0.07 +beauté beauté NOM f s 72.56 92.64 68.57 87.64 +beautés beauté NOM f p 72.56 92.64 3.99 5.00 +beauvais beauvais NOM s 0.00 0.07 0.00 0.07 +beaux_arts beaux_arts NOM m p 2.19 3.38 2.19 3.38 +beaux_enfants beaux_enfants NOM m p 0.06 0.00 0.06 0.00 +beau_fils beau_fils NOM m p 1.29 1.01 0.03 0.00 +beau_frère beau_frère NOM m p 13.14 15.68 0.62 1.01 +beaux_parents beaux_parents NOM m p 1.52 1.22 1.52 1.22 +beaux beau ADJ m p 671.86 620.07 57.20 63.78 +bec_de_cane bec_de_cane NOM m s 0.01 1.42 0.01 1.42 +bec_de_lièvre bec_de_lièvre NOM m s 0.10 0.61 0.10 0.61 +bec bec NOM m s 7.39 26.96 6.74 23.31 +because because CON 2.78 1.01 2.78 1.01 +becfigue becfigue NOM m s 0.27 0.07 0.14 0.00 +becfigues becfigue NOM m p 0.27 0.07 0.14 0.07 +becquant becquer VER 0.04 0.54 0.00 0.54 par:pre; +becquer becquer VER 0.04 0.54 0.01 0.00 inf; +becquet becquet NOM m s 0.02 0.07 0.02 0.00 +becquetaient becqueter VER 0.10 1.89 0.00 0.20 ind:imp:3p; +becquetait becqueter VER 0.10 1.89 0.00 0.14 ind:imp:3s; +becquetance becquetance NOM f s 0.00 0.07 0.00 0.07 +becquetant becqueter VER 0.10 1.89 0.00 0.07 par:pre; +becqueter becqueter VER 0.10 1.89 0.10 1.08 inf; +becquets becquet NOM m p 0.02 0.07 0.00 0.07 +becquette becqueter VER 0.10 1.89 0.00 0.07 imp:pre:2s; +becqueté becqueter VER m s 0.10 1.89 0.00 0.20 par:pas; +becquetés becqueter VER m p 0.10 1.89 0.00 0.14 par:pas; +becqué becquer VER m s 0.04 0.54 0.03 0.00 par:pas; +becquée becquée NOM f s 0.02 0.41 0.02 0.41 +becs bec NOM m p 7.39 26.96 0.66 3.65 +becta becter VER 0.17 4.53 0.00 0.07 ind:pas:3s; +bectais becter VER 0.17 4.53 0.00 0.14 ind:imp:1s; +bectait becter VER 0.17 4.53 0.00 0.34 ind:imp:3s; +bectance bectance NOM f s 0.10 0.95 0.10 0.95 +bectant becter VER 0.17 4.53 0.00 0.14 par:pre; +becte becter VER 0.17 4.53 0.14 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bectent becter VER 0.17 4.53 0.00 0.14 ind:pre:3p; +becter becter VER 0.17 4.53 0.02 2.09 inf; +becterais becter VER 0.17 4.53 0.00 0.07 cnd:pre:1s; +becteras becter VER 0.17 4.53 0.00 0.07 ind:fut:2s; +becté becter VER m s 0.17 4.53 0.00 1.01 par:pas; +bectées becter VER f p 0.17 4.53 0.01 0.07 par:pas; +bectés becter VER m p 0.17 4.53 0.00 0.07 par:pas; +bedaine bedaine NOM f s 0.89 1.62 0.89 1.42 +bedaines bedaine NOM f p 0.89 1.62 0.00 0.20 +bedeau bedeau NOM m s 0.25 1.76 0.25 1.69 +bedeaux bedeau NOM m p 0.25 1.76 0.00 0.07 +bedon bedon NOM m s 0.04 0.27 0.04 0.20 +bedonnant bedonnant ADJ m s 0.33 1.49 0.14 1.01 +bedonnante bedonnant ADJ f s 0.33 1.49 0.01 0.07 +bedonnantes bedonnant ADJ f p 0.33 1.49 0.14 0.20 +bedonnants bedonnant ADJ m p 0.33 1.49 0.05 0.20 +bedonne bedonner VER 0.03 0.34 0.00 0.07 ind:pre:3s; +bedons bedon NOM m p 0.04 0.27 0.00 0.07 +beefsteak beefsteak NOM m s 0.21 0.34 0.20 0.20 +beefsteaks beefsteak NOM m p 0.21 0.34 0.01 0.14 +beeper beeper NOM m s 0.34 0.00 0.34 0.00 +beethovénien beethovénien ADJ m s 0.00 0.07 0.00 0.07 +beffroi beffroi NOM m s 0.47 0.74 0.47 0.74 +behavioriste behavioriste ADJ s 0.01 0.00 0.01 0.00 +behavioriste behavioriste NOM s 0.01 0.00 0.01 0.00 +beige beige ADJ m s 1.03 8.11 1.02 6.82 +beigeasses beigeasse ADJ p 0.00 0.07 0.00 0.07 +beiges beige NOM p 0.27 1.49 0.03 0.34 +beigne beigne NOM f s 0.58 2.16 0.48 1.42 +beignes beigne NOM f p 0.58 2.16 0.10 0.74 +beignet beignet NOM m s 8.69 2.77 2.52 0.61 +beignets beignet NOM m p 8.69 2.77 6.17 2.16 +bel_canto bel_canto NOM m 0.26 0.41 0.26 0.41 +bel bel ADJ m s 31.35 37.09 31.35 37.09 +belette belette NOM f s 2.01 0.88 1.74 0.68 +belettes belette NOM f p 2.01 0.88 0.27 0.20 +belge belge ADJ s 3.03 8.99 2.83 6.55 +belges belge NOM p 2.00 5.07 0.68 2.70 +belgicains belgicain NOM m p 0.00 0.07 0.00 0.07 +belgique belgique NOM f s 0.02 0.27 0.02 0.27 +belladone belladone NOM f s 0.15 0.47 0.15 0.41 +belladones belladone NOM f p 0.15 0.47 0.00 0.07 +belle_doche belle_doche NOM f s 0.05 0.07 0.05 0.07 +belle_famille belle_famille NOM f s 0.71 1.22 0.71 1.15 +belle_fille belle_fille NOM f s 3.32 2.57 3.29 2.50 +belle_maman belle_maman NOM f s 0.85 0.34 0.85 0.34 +beau_père beau_père NOM f s 16.54 14.05 7.17 6.82 +belle_à_voir belle_à_voir NOM f s 0.00 0.27 0.00 0.27 +beau_frère beau_frère NOM f s 13.14 15.68 3.36 5.47 +belle_lurette belle_lurette NOM f s 0.75 2.64 0.75 2.64 +belle beau ADJ f s 671.86 620.07 284.08 223.65 +bellement bellement ADV 0.14 0.54 0.14 0.54 +belle_de_jour belle_de_jour NOM f p 0.00 0.07 0.00 0.07 +belle_de_nuit belle_de_nuit NOM f p 0.00 0.34 0.00 0.34 +belle_famille belle_famille NOM f p 0.71 1.22 0.00 0.07 +belle_fille belle_fille NOM f p 3.32 2.57 0.04 0.07 +belle_lettre belle_lettre NOM f p 0.00 0.41 0.00 0.41 +beau_père beau_père NOM f p 16.54 14.05 0.08 0.14 +beau_frère beau_frère NOM f p 13.14 15.68 0.04 0.54 +belles beau ADJ f p 671.86 620.07 49.35 62.57 +bellevillois bellevillois ADJ m 0.00 0.20 0.00 0.07 +bellevilloise bellevillois ADJ f s 0.00 0.20 0.00 0.14 +belliciste belliciste NOM s 0.07 0.07 0.05 0.00 +bellicistes belliciste ADJ p 0.21 0.14 0.17 0.07 +belligérance belligérance NOM f s 0.01 0.34 0.01 0.34 +belligérant belligérant ADJ m s 0.11 1.15 0.01 0.14 +belligérante belligérant ADJ f s 0.11 1.15 0.00 0.54 +belligérantes belligérant ADJ f p 0.11 1.15 0.10 0.14 +belligérants belligérant NOM m p 0.07 0.88 0.05 0.81 +belliqueuse belliqueux ADJ f s 0.51 2.30 0.06 0.81 +belliqueusement belliqueusement ADV 0.00 0.07 0.00 0.07 +belliqueuses belliqueux ADJ f p 0.51 2.30 0.04 0.20 +belliqueux belliqueux ADJ m 0.51 2.30 0.41 1.28 +bellissime bellissime ADJ f s 0.01 0.07 0.01 0.07 +bellot bellot ADJ m s 0.01 0.00 0.01 0.00 +bellâtre bellâtre NOM m s 0.32 1.01 0.32 1.01 +belluaire belluaire NOM m s 0.00 0.14 0.00 0.14 +belon belon NOM f s 0.00 1.01 0.00 0.54 +belons belon NOM f p 0.00 1.01 0.00 0.47 +belote belote NOM f s 0.26 4.19 0.26 3.99 +beloter beloter VER 0.00 0.14 0.00 0.14 inf; +belotes belote NOM f p 0.26 4.19 0.00 0.20 +beloteurs beloteur NOM m p 0.00 0.20 0.00 0.20 +belotte belotter VER 0.00 0.07 0.00 0.07 ind:pre:1s; +beluga beluga NOM m s 0.04 0.07 0.04 0.07 +belvédère belvédère NOM m s 0.18 0.74 0.17 0.54 +belvédères belvédère NOM m p 0.18 0.74 0.01 0.20 +ben ben NOM m 61.43 24.19 61.43 24.19 +benedictus benedictus NOM m 0.11 0.07 0.11 0.07 +bengalais bengalais NOM m 0.27 0.00 0.27 0.00 +bengali bengali NOM m s 0.26 0.61 0.16 0.41 +bengalis bengali NOM m p 0.26 0.61 0.10 0.20 +benjamin benjamin NOM m s 0.81 0.81 0.33 0.47 +benjamine benjamin NOM f s 0.81 0.81 0.44 0.27 +benjamins benjamin NOM m p 0.81 0.81 0.04 0.07 +benjoin benjoin NOM m s 0.00 0.88 0.00 0.88 +benne benne NOM f s 2.38 3.11 2.12 1.76 +bennes benne NOM f p 2.38 3.11 0.27 1.35 +benoît benoît ADJ m s 0.90 0.20 0.90 0.07 +benoîte benoît ADJ f s 0.90 0.20 0.00 0.14 +benoîtement benoîtement ADV 0.00 0.81 0.00 0.81 +benthique benthique ADJ m s 0.01 0.00 0.01 0.00 +benêt benêt NOM m s 1.30 1.49 1.20 1.08 +benêts benêt NOM m p 1.30 1.49 0.10 0.41 +benzidine benzidine NOM f s 0.01 0.00 0.01 0.00 +benzine benzine NOM f s 0.01 0.41 0.01 0.41 +benzoate benzoate NOM m s 0.04 0.00 0.04 0.00 +benzodiazépine benzodiazépine NOM f s 0.02 0.00 0.02 0.00 +benzonaphtol benzonaphtol NOM m s 0.10 0.00 0.10 0.00 +benzène benzène NOM m s 0.12 0.00 0.12 0.00 +benzédrine benzédrine NOM f s 0.07 0.27 0.07 0.27 +benzylique benzylique ADJ m s 0.01 0.00 0.01 0.00 +ber ber NOM m s 0.16 0.07 0.16 0.07 +berbère berbère ADJ s 0.03 1.22 0.01 0.81 +berbères berbère ADJ p 0.03 1.22 0.02 0.41 +bercail bercail NOM m s 2.33 1.96 2.33 1.96 +berce bercer VER 4.46 18.04 0.94 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +berceau berceau NOM m s 7.05 13.31 6.72 12.43 +berceaux berceau NOM m p 7.05 13.31 0.33 0.88 +bercelonnette bercelonnette NOM f s 0.00 0.07 0.00 0.07 +bercement bercement NOM m s 0.00 0.74 0.00 0.68 +bercements bercement NOM m p 0.00 0.74 0.00 0.07 +bercent bercer VER 4.46 18.04 0.35 0.54 ind:pre:3p; +bercer bercer VER 4.46 18.04 1.17 3.92 inf; +bercera bercer VER 4.46 18.04 0.03 0.00 ind:fut:3s; +bercerai bercer VER 4.46 18.04 0.05 0.00 ind:fut:1s; +bercerait bercer VER 4.46 18.04 0.01 0.07 cnd:pre:3s; +bercerez bercer VER 4.46 18.04 0.10 0.07 ind:fut:2p; +berces bercer VER 4.46 18.04 0.16 0.00 ind:pre:2s; +berceur berceur ADJ m s 0.13 1.01 0.01 0.41 +berceurs berceur ADJ m p 0.13 1.01 0.00 0.07 +berceuse berceur NOM f s 1.58 1.55 1.58 1.22 +berceuses berceuse NOM f p 0.25 0.00 0.25 0.00 +bercez bercer VER 4.46 18.04 0.30 0.00 imp:pre:2p;ind:pre:2p; +bercèrent bercer VER 4.46 18.04 0.00 0.07 ind:pas:3p; +bercé bercer VER m s 4.46 18.04 0.85 3.78 par:pas; +bercée bercer VER f s 4.46 18.04 0.08 1.89 par:pas; +bercés bercer VER m p 4.46 18.04 0.19 0.88 par:pas; +berdouillette berdouillette NOM f s 0.00 0.20 0.00 0.20 +berg berg NOM m s 0.04 0.00 0.04 0.00 +bergamasques bergamasque NOM f p 0.00 0.07 0.00 0.07 +bergamote bergamote NOM f s 0.16 0.07 0.16 0.07 +berge berge NOM f s 2.77 16.49 1.79 8.72 +berger berger NOM m s 11.49 24.80 8.33 11.15 +bergerie bergerie NOM f s 0.99 3.45 0.99 2.84 +bergeries bergerie NOM f p 0.99 3.45 0.00 0.61 +bergeronnette bergeronnette NOM f s 0.01 0.41 0.01 0.14 +bergeronnettes bergeronnette NOM f p 0.01 0.41 0.00 0.27 +bergers berger NOM m p 11.49 24.80 1.89 4.19 +berges berge NOM f p 2.77 16.49 0.98 7.77 +bergère berger NOM f s 11.49 24.80 1.27 6.76 +bergères bergère NOM f p 0.34 0.00 0.34 0.00 +berk berk ONO 1.35 0.95 1.35 0.95 +berle berle NOM f s 0.13 0.00 0.13 0.00 +berlin berlin NOM s 0.00 0.07 0.00 0.07 +berline berline NOM f s 1.03 2.30 0.62 2.09 +berlines berline NOM f p 1.03 2.30 0.42 0.20 +berlingot berlingot NOM m s 0.15 1.76 0.06 0.41 +berlingots berlingot NOM m p 0.15 1.76 0.09 1.35 +berlingue berlingue NOM m 0.00 0.34 0.00 0.34 +berlinois berlinois ADJ m 0.82 1.69 0.32 1.08 +berlinoise berlinois ADJ f s 0.82 1.69 0.50 0.54 +berlinoises berlinois NOM f p 0.18 0.47 0.00 0.14 +berloque berloque NOM f s 0.00 0.14 0.00 0.14 +berlue berlue NOM f s 0.30 1.35 0.30 1.08 +berlues berlue NOM f p 0.30 1.35 0.00 0.27 +berlurais berlurer VER 0.00 1.01 0.00 0.20 ind:imp:1s; +berlurait berlurer VER 0.00 1.01 0.00 0.14 ind:imp:3s; +berlure berlure NOM f s 0.00 1.08 0.00 0.68 +berlurent berlurer VER 0.00 1.01 0.00 0.14 ind:pre:3p; +berlurer berlurer VER 0.00 1.01 0.00 0.34 inf; +berlures berlure NOM f p 0.00 1.08 0.00 0.41 +berluré berlurer VER m s 0.00 1.01 0.00 0.14 par:pas; +berlurée berlurer VER f s 0.00 1.01 0.00 0.07 par:pas; +berme berme NOM f s 0.04 0.27 0.03 0.14 +bermes berme NOM f p 0.04 0.27 0.01 0.14 +bermuda bermuda NOM m s 0.12 0.61 0.08 0.41 +bermudas bermuda NOM m p 0.12 0.61 0.04 0.20 +bernache bernache NOM f s 0.08 0.41 0.03 0.14 +bernaches bernache NOM f p 0.08 0.41 0.05 0.27 +bernait berner VER 3.56 2.64 0.01 0.14 ind:imp:3s; +bernant berner VER 3.56 2.64 0.01 0.00 par:pre; +bernard_l_ermite bernard_l_ermite NOM m 0.00 0.34 0.00 0.34 +bernard_l_hermite bernard_l_hermite NOM m 0.01 0.14 0.01 0.14 +bernardines bernardin NOM f p 0.00 0.54 0.00 0.54 +berne berner VER 3.56 2.64 0.12 0.20 ind:pre:1s;ind:pre:3s; +berner berner VER 3.56 2.64 2.04 0.54 inf; +berneras berner VER 3.56 2.64 0.02 0.00 ind:fut:2s; +bernez berner VER 3.56 2.64 0.01 0.00 ind:pre:2p; +bernicle bernicle NOM f s 0.07 0.34 0.07 0.00 +bernicles bernicle NOM f p 0.07 0.34 0.01 0.34 +bernique bernique ONO 0.00 0.47 0.00 0.47 +berniques bernique NOM f p 0.01 0.61 0.00 0.20 +bernois bernois ADJ m p 0.00 0.41 0.00 0.07 +bernoise bernois NOM f s 0.01 0.14 0.01 0.07 +bernoises bernois ADJ f p 0.00 0.41 0.00 0.34 +berné berner VER m s 3.56 2.64 0.53 1.15 par:pas; +bernée berner VER f s 3.56 2.64 0.28 0.27 par:pas; +bernées berner VER f p 3.56 2.64 0.00 0.07 par:pas; +bernés berner VER m p 3.56 2.64 0.53 0.27 par:pas; +berrichon berrichon ADJ m s 0.27 0.88 0.00 0.61 +berrichonne berrichon ADJ f s 0.27 0.88 0.27 0.27 +bersaglier bersaglier NOM m s 0.23 0.07 0.10 0.00 +bersagliers bersaglier NOM m p 0.23 0.07 0.14 0.07 +berça bercer VER 4.46 18.04 0.01 0.61 ind:pas:3s; +bertha bertha NOM f s 0.00 0.20 0.00 0.14 +berçaient bercer VER 4.46 18.04 0.01 0.61 ind:imp:3p; +berçais bercer VER 4.46 18.04 0.01 0.47 ind:imp:1s;ind:imp:2s; +berçait bercer VER 4.46 18.04 0.06 2.16 ind:imp:3s; +berçant bercer VER 4.46 18.04 0.14 1.01 par:pre; +berthas bertha NOM f p 0.00 0.20 0.00 0.07 +berthe berthe NOM f s 0.00 0.61 0.00 0.61 +berzingue berzingue NOM f s 0.28 1.49 0.28 1.49 +besace besace NOM f s 0.13 2.70 0.13 2.43 +besaces besace NOM f p 0.13 2.70 0.00 0.27 +besaiguë besaiguë NOM f s 0.00 0.07 0.00 0.07 +besant besant NOM m s 0.04 0.07 0.01 0.00 +besants besant NOM m p 0.04 0.07 0.03 0.07 +besef besef ADV 0.00 0.07 0.00 0.07 +besicles besicles NOM f p 0.01 0.27 0.01 0.27 +besogna besogner VER 0.60 2.30 0.00 0.34 ind:pas:3s; +besognaient besogner VER 0.60 2.30 0.00 0.14 ind:imp:3p; +besognais besogner VER 0.60 2.30 0.11 0.00 ind:imp:1s;ind:imp:2s; +besognait besogner VER 0.60 2.30 0.14 0.68 ind:imp:3s; +besognant besogner VER 0.60 2.30 0.01 0.41 par:pre; +besogne besogne NOM f s 2.71 15.61 2.54 10.74 +besognent besogner VER 0.60 2.30 0.01 0.07 ind:pre:3p; +besogner besogner VER 0.60 2.30 0.20 0.20 inf; +besogneras besogner VER 0.60 2.30 0.00 0.07 ind:fut:2s; +besognes besogne NOM f p 2.71 15.61 0.17 4.86 +besogneuse besogneux ADJ f s 0.02 1.82 0.02 0.34 +besogneuses besogneux ADJ f p 0.02 1.82 0.00 0.20 +besogneux besogneux NOM m 0.12 0.47 0.12 0.47 +besognèrent besogner VER 0.60 2.30 0.00 0.20 ind:pas:3p; +besogné besogner VER m s 0.60 2.30 0.01 0.00 par:pas; +besoin besoin NOM m s 771.24 266.62 758.04 251.76 +besoins besoin NOM m p 771.24 266.62 13.20 14.86 +besson besson NOM m s 0.01 0.14 0.01 0.00 +bessons besson NOM m p 0.01 0.14 0.00 0.14 +best_seller best_seller NOM m s 1.09 0.81 0.82 0.54 +best_seller best_seller NOM m p 1.09 0.81 0.27 0.27 +best_of best_of NOM m s 0.17 0.00 0.17 0.00 +best best NOM m s 0.52 0.34 0.52 0.34 +bestiaire bestiaire NOM m s 0.00 1.28 0.00 1.22 +bestiaires bestiaire NOM m p 0.00 1.28 0.00 0.07 +bestial bestial ADJ m s 1.54 3.04 0.69 1.42 +bestiale bestial ADJ f s 1.54 3.04 0.63 0.68 +bestialement bestialement ADV 0.02 0.00 0.02 0.00 +bestiales bestial ADJ f p 1.54 3.04 0.06 0.47 +bestialité bestialité NOM f s 0.42 1.49 0.42 1.42 +bestialités bestialité NOM f p 0.42 1.49 0.00 0.07 +bestiasse bestiasse NOM f s 0.00 0.14 0.00 0.14 +bestiau bestiau NOM m s 2.54 6.35 1.26 0.81 +bestiaux bestiau NOM m p 2.54 6.35 1.28 5.54 +bestiole bestiole NOM f s 5.07 6.76 2.50 3.04 +bestioles bestiole NOM f p 5.07 6.76 2.57 3.72 +bette bette NOM f s 1.60 0.41 1.55 0.20 +betterave betterave NOM f s 1.47 4.12 0.77 1.35 +betteraves betterave NOM f p 1.47 4.12 0.69 2.77 +betteravier betteravier NOM m s 0.00 0.07 0.00 0.07 +bettes bette NOM f p 1.60 0.41 0.05 0.20 +betting betting NOM m 0.03 0.00 0.03 0.00 +beu beu ONO 0.73 0.95 0.73 0.95 +beuark beuark ONO 0.01 0.07 0.01 0.07 +beugla beugler VER 0.75 5.74 0.00 1.08 ind:pas:3s; +beuglaient beugler VER 0.75 5.74 0.01 0.14 ind:imp:3p; +beuglais beugler VER 0.75 5.74 0.02 0.20 ind:imp:1s;ind:imp:2s; +beuglait beugler VER 0.75 5.74 0.11 0.95 ind:imp:3s; +beuglant beugler VER 0.75 5.74 0.04 0.88 par:pre; +beuglante beuglante NOM f s 0.01 0.00 0.01 0.00 +beuglantes beuglant NOM f p 0.03 0.88 0.00 0.14 +beuglants beuglant NOM m p 0.03 0.88 0.00 0.34 +beugle beugler VER 0.75 5.74 0.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +beuglement beuglement NOM m s 0.19 1.15 0.00 0.27 +beuglements beuglement NOM m p 0.19 1.15 0.19 0.88 +beuglent beugler VER 0.75 5.74 0.02 0.27 ind:pre:3p; +beugler beugler VER 0.75 5.74 0.17 0.88 inf; +beuglions beugler VER 0.75 5.74 0.00 0.07 ind:imp:1p; +beuglé beugler VER m s 0.75 5.74 0.16 0.27 par:pas; +beuglée beugler VER f s 0.75 5.74 0.00 0.07 par:pas; +beuh beuh ADV 1.06 0.88 1.06 0.88 +beur beur ADJ m s 0.14 0.14 0.14 0.14 +beurk beurk ONO 4.01 0.54 4.01 0.54 +beurra beurrer VER 0.92 2.97 0.00 0.34 ind:pas:3s; +beurrage beurrage NOM m s 0.00 0.07 0.00 0.07 +beurraient beurrer VER 0.92 2.97 0.00 0.07 ind:imp:3p; +beurrais beurrer VER 0.92 2.97 0.11 0.14 ind:imp:1s; +beurrait beurrer VER 0.92 2.97 0.01 0.54 ind:imp:3s; +beurrant beurrer VER 0.92 2.97 0.01 0.14 par:pre; +beurre beurre NOM m s 15.14 27.97 15.12 27.50 +beurrer beurrer VER 0.92 2.97 0.32 0.61 inf; +beurres beurre NOM m p 15.14 27.97 0.02 0.47 +beurrier beurrier NOM m s 0.12 0.07 0.12 0.07 +beurré beurré ADJ m s 0.84 2.50 0.43 0.74 +beurrée beurré ADJ f s 0.84 2.50 0.07 0.47 +beurrées beurré ADJ f p 0.84 2.50 0.11 1.15 +beurrés beurré ADJ m p 0.84 2.50 0.23 0.14 +beuverie beuverie NOM f s 0.79 1.55 0.54 0.47 +beuveries beuverie NOM f p 0.79 1.55 0.26 1.08 +bey bey NOM m s 2.06 2.91 2.06 2.91 +bezef bezef ADV 0.00 0.14 0.00 0.14 +bi bi NOM m s 1.27 0.34 1.27 0.34 +biafrais biafrais NOM m 0.00 0.14 0.00 0.14 +biais biais NOM m 1.60 16.69 1.60 16.69 +biaisai biaiser VER 0.05 0.68 0.00 0.07 ind:pas:1s; +biaise biaiser VER 0.05 0.68 0.00 0.27 ind:pre:1s;ind:pre:3s; +biaisements biaisement NOM m p 0.00 0.07 0.00 0.07 +biaiser biaiser VER 0.05 0.68 0.03 0.27 inf; +biaises biais ADJ f p 0.04 0.61 0.00 0.07 +biaisé biaisé ADJ m s 0.03 0.00 0.02 0.00 +biaisée biaiser VER f s 0.05 0.68 0.01 0.00 par:pas; +biathlon biathlon NOM m s 0.30 0.00 0.30 0.00 +bib bib NOM m 0.01 0.00 0.01 0.00 +bibard bibard NOM m s 0.00 0.20 0.00 0.20 +bibelot bibelot NOM m s 1.52 7.43 0.63 0.81 +bibelots bibelot NOM m p 1.52 7.43 0.90 6.62 +bibendum bibendum NOM m s 0.09 0.20 0.09 0.20 +biberon biberon NOM m s 6.65 5.68 5.25 3.85 +biberonnait biberonner VER 0.04 0.95 0.01 0.20 ind:imp:3s; +biberonne biberonner VER 0.04 0.95 0.01 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +biberonner biberonner VER 0.04 0.95 0.02 0.41 inf; +biberonneurs biberonneur NOM m p 0.00 0.07 0.00 0.07 +biberonné biberonner VER m s 0.04 0.95 0.00 0.14 par:pas; +biberons biberon NOM m p 6.65 5.68 1.40 1.82 +bibi bibi NOM m s 0.56 1.15 0.54 0.54 +bibiche bibiche NOM f s 0.05 3.04 0.05 3.04 +bibine bibine NOM f s 0.73 3.99 0.71 3.85 +bibines bibine NOM f p 0.73 3.99 0.02 0.14 +bibis bibi NOM m p 0.56 1.15 0.02 0.61 +bibite bibite NOM f s 0.00 0.27 0.00 0.27 +bible bible NOM f s 17.79 17.84 17.03 17.16 +bibles bible NOM f p 17.79 17.84 0.76 0.68 +bibliobus bibliobus NOM m 0.05 0.07 0.05 0.07 +bibliographe bibliographe NOM s 0.00 0.07 0.00 0.07 +bibliographie bibliographie NOM f s 0.17 0.81 0.17 0.68 +bibliographies bibliographie NOM f p 0.17 0.81 0.00 0.14 +bibliographique bibliographique ADJ s 0.01 0.14 0.01 0.00 +bibliographiques bibliographique ADJ f p 0.01 0.14 0.00 0.14 +bibliophile bibliophile NOM s 0.03 0.68 0.02 0.27 +bibliophiles bibliophile NOM p 0.03 0.68 0.01 0.41 +bibliophilie bibliophilie NOM f s 0.00 0.14 0.00 0.14 +bibliophilique bibliophilique ADJ f s 0.00 0.07 0.00 0.07 +bibliothèque bibliothèque NOM f s 19.86 40.74 18.22 36.82 +bibliothèques bibliothèque NOM f p 19.86 40.74 1.63 3.92 +bibliothécaire bibliothécaire NOM s 2.25 2.50 2.09 2.30 +bibliothécaires bibliothécaire NOM p 2.25 2.50 0.16 0.20 +biblique biblique ADJ s 2.77 4.19 2.09 3.04 +bibliquement bibliquement ADV 0.13 0.07 0.13 0.07 +bibliques biblique ADJ p 2.77 4.19 0.69 1.15 +bic bic NOM m s 0.44 0.41 0.44 0.41 +bicamérale bicaméral ADJ f s 0.01 0.00 0.01 0.00 +bicarbonate bicarbonate NOM m s 1.20 0.34 1.20 0.27 +bicarbonates bicarbonate NOM m p 1.20 0.34 0.00 0.07 +bicause bicause PRE 0.00 0.68 0.00 0.68 +bicentenaire bicentenaire NOM m s 0.36 0.07 0.36 0.07 +biceps biceps NOM m 1.62 3.72 1.62 3.72 +bichais bicher VER 0.27 1.89 0.00 0.20 ind:imp:1s; +bichait bicher VER 0.27 1.89 0.01 0.47 ind:imp:3s; +bichant bicher VER 0.27 1.89 0.00 0.07 par:pre; +biche biche NOM f s 5.80 13.92 5.29 7.30 +bicher bicher VER 0.27 1.89 0.02 0.34 inf; +biches biche NOM f p 5.80 13.92 0.51 6.62 +bichette bichette NOM f s 0.09 0.07 0.09 0.07 +bichez bicher VER 0.27 1.89 0.01 0.00 ind:pre:2p; +bichon bichon NOM m s 0.46 0.68 0.46 0.68 +bichonnait bichonner VER 1.40 1.42 0.02 0.20 ind:imp:3s; +bichonnant bichonner VER 1.40 1.42 0.00 0.07 par:pre; +bichonne bichonner VER 1.40 1.42 0.57 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bichonner bichonner VER 1.40 1.42 0.72 0.41 inf; +bichonnerai bichonner VER 1.40 1.42 0.02 0.00 ind:fut:1s; +bichonnez bichonner VER 1.40 1.42 0.03 0.00 imp:pre:2p;ind:pre:2p; +bichonné bichonner VER m s 1.40 1.42 0.03 0.34 par:pas; +bichonnée bichonner VER f s 1.40 1.42 0.02 0.14 par:pas; +biché bicher VER m s 0.27 1.89 0.00 0.07 par:pas; +biclou biclou NOM m s 0.01 0.14 0.00 0.07 +biclous biclou NOM m p 0.01 0.14 0.01 0.07 +bicolore bicolore ADJ s 0.30 0.68 0.15 0.47 +bicolores bicolore ADJ p 0.30 0.68 0.14 0.20 +biconvexes biconvexe ADJ p 0.02 0.00 0.02 0.00 +bicoque bicoque NOM f s 0.94 3.85 0.89 3.11 +bicoques bicoque NOM f p 0.94 3.85 0.05 0.74 +bicorne bicorne NOM m s 0.16 2.64 0.16 2.16 +bicornes bicorne ADJ m p 0.01 0.14 0.01 0.00 +bicot bicot NOM m s 0.11 4.46 0.11 3.72 +bicots bicot NOM m p 0.11 4.46 0.00 0.74 +biculturelle biculturel ADJ f s 0.01 0.00 0.01 0.00 +bicéphale bicéphale ADJ s 0.04 0.54 0.04 0.47 +bicéphales bicéphale ADJ p 0.04 0.54 0.00 0.07 +bicéphalie bicéphalie NOM f s 0.00 0.20 0.00 0.20 +bicuspide bicuspide ADJ s 0.01 0.00 0.01 0.00 +bicycle bicycle NOM m s 0.29 0.00 0.28 0.00 +bicycles bicycle NOM m p 0.29 0.00 0.01 0.00 +bicyclette bicyclette NOM f s 8.06 28.51 7.34 23.51 +bicyclettes bicyclette NOM f p 8.06 28.51 0.72 5.00 +bicycliste bicycliste ADJ s 0.00 0.07 0.00 0.07 +bidasse bidasse NOM m s 0.37 0.81 0.21 0.34 +bidasses bidasse NOM m p 0.37 0.81 0.16 0.47 +bide bide NOM m s 3.73 8.58 3.66 8.38 +bides bide NOM m p 3.73 8.58 0.07 0.20 +bidet bidet NOM m s 0.69 3.45 0.69 2.97 +bidets bidet NOM m p 0.69 3.45 0.00 0.47 +bidimensionnel bidimensionnel ADJ m s 0.00 0.07 0.00 0.07 +bidoche bidoche NOM f s 0.33 3.78 0.33 3.31 +bidoches bidoche NOM f p 0.33 3.78 0.00 0.47 +bidon bidon ADJ 7.78 3.72 7.78 3.72 +bidonnage bidonnage NOM m s 0.00 0.14 0.00 0.14 +bidonnaient bidonner VER 1.00 1.89 0.00 0.07 ind:imp:3p; +bidonnais bidonner VER 1.00 1.89 0.03 0.00 ind:imp:1s;ind:imp:2s; +bidonnait bidonner VER 1.00 1.89 0.00 0.14 ind:imp:3s; +bidonnant bidonnant ADJ m s 0.14 0.14 0.12 0.14 +bidonnante bidonnant ADJ f s 0.14 0.14 0.03 0.00 +bidonne bidonner VER 1.00 1.89 0.00 0.61 ind:pre:3s; +bidonnent bidonner VER 1.00 1.89 0.01 0.27 ind:pre:3p; +bidonner bidonner VER 1.00 1.89 0.33 0.34 inf; +bidonnera bidonner VER 1.00 1.89 0.01 0.00 ind:fut:3s; +bidonnez bidonner VER 1.00 1.89 0.01 0.00 ind:pre:2p; +bidonné bidonner VER m s 1.00 1.89 0.30 0.00 par:pas; +bidonnée bidonner VER f s 1.00 1.89 0.01 0.00 par:pas; +bidonnées bidonner VER f p 1.00 1.89 0.29 0.00 par:pas; +bidonnés bidonner VER m p 1.00 1.89 0.00 0.07 par:pas; +bidons bidon NOM m p 8.02 16.28 2.66 6.62 +bidonville bidonville NOM m s 0.72 1.55 0.43 0.81 +bidonvilles bidonville NOM m p 0.72 1.55 0.29 0.74 +bidouilla bidouiller VER 0.45 0.14 0.00 0.07 ind:pas:3s; +bidouillage bidouillage NOM m s 0.05 0.00 0.05 0.00 +bidouille bidouille NOM f s 0.19 0.00 0.19 0.00 +bidouiller bidouiller VER 0.45 0.14 0.12 0.00 inf; +bidouillerai bidouiller VER 0.45 0.14 0.03 0.00 ind:fut:1s; +bidouillé bidouiller VER m s 0.45 0.14 0.13 0.00 par:pas; +bidouillée bidouiller VER f s 0.45 0.14 0.15 0.07 par:pas; +bidouillés bidouiller VER m p 0.45 0.14 0.02 0.00 par:pas; +bidule bidule NOM m s 1.10 2.03 0.94 1.22 +bidules bidule NOM m p 1.10 2.03 0.17 0.81 +bief bief NOM m s 0.10 0.61 0.10 0.54 +biefs bief NOM m p 0.10 0.61 0.00 0.07 +bielle bielle NOM f s 1.86 1.22 1.70 0.20 +bielles bielle NOM f p 1.86 1.22 0.16 1.01 +bien_aimé bien_aimé NOM m s 8.50 4.66 4.51 1.89 +bien_aimé bien_aimé NOM f s 8.50 4.66 3.76 2.43 +bien_aimé bien_aimé ADJ f p 8.19 4.39 0.04 0.20 +bien_aimé bien_aimé ADJ m p 8.19 4.39 0.68 0.54 +bien_disant bien_disant ADJ m p 0.00 0.07 0.00 0.07 +bien_fonds bien_fonds NOM m 0.00 0.07 0.00 0.07 +bien_fondé bien_fondé NOM m s 0.31 0.81 0.31 0.81 +bien_manger bien_manger NOM m 0.00 0.14 0.00 0.14 +bien_pensant bien_pensant ADJ m s 0.06 2.16 0.01 1.28 +bien_pensant bien_pensant ADJ f s 0.06 2.16 0.02 0.47 +bien_pensant bien_pensant ADJ m p 0.06 2.16 0.03 0.41 +bien_portant bien_portant ADJ m s 0.03 0.41 0.00 0.14 +bien_portant bien_portant ADJ m p 0.03 0.41 0.03 0.27 +bien_être bien_être NOM m 4.28 8.78 4.28 8.78 +bien bien ADV 4213.78 2535.14 4213.78 2535.14 +bienfaisance bienfaisance NOM f s 1.69 1.96 1.69 1.96 +bienfaisant bienfaisant ADJ m s 0.64 4.05 0.29 1.08 +bienfaisante bienfaisant ADJ f s 0.64 4.05 0.31 2.30 +bienfaisantes bienfaisant ADJ f p 0.64 4.05 0.00 0.54 +bienfaisants bienfaisant ADJ m p 0.64 4.05 0.04 0.14 +bienfait bienfait NOM m s 2.51 4.26 0.98 1.01 +bienfaiteur bienfaiteur NOM m s 3.38 3.45 2.46 1.62 +bienfaiteurs bienfaiteur NOM m p 3.38 3.45 0.26 0.81 +bienfaitrice bienfaiteur NOM f s 3.38 3.45 0.66 1.01 +bienfaitrices bienfaitrice NOM f p 0.01 0.00 0.01 0.00 +bienfaits bienfait NOM m p 2.51 4.26 1.53 3.24 +bienheureuse bienheureux NOM f s 1.22 2.43 0.30 0.34 +bienheureusement bienheureusement ADV 0.00 0.27 0.00 0.27 +bienheureuses bienheureux ADJ f p 2.25 5.20 0.00 0.14 +bienheureux bienheureux ADJ m 2.25 5.20 2.09 2.84 +biennale biennale NOM f s 0.05 0.14 0.05 0.14 +biens bien NOM m p 106.60 70.20 16.99 13.31 +bienséance bienséance NOM f s 0.64 2.23 0.57 2.09 +bienséances bienséance NOM f p 0.64 2.23 0.06 0.14 +bienséant bienséant ADJ m s 0.06 1.08 0.04 0.47 +bienséante bienséant ADJ f s 0.06 1.08 0.03 0.41 +bienséantes bienséant ADJ f p 0.06 1.08 0.00 0.07 +bienséants bienséant ADJ m p 0.06 1.08 0.00 0.14 +bientôt bientôt ADV 184.96 169.59 184.96 169.59 +bienveillamment bienveillamment ADV 0.10 0.00 0.10 0.00 +bienveillance bienveillance NOM f s 2.32 7.30 2.32 7.23 +bienveillances bienveillance NOM f p 2.32 7.30 0.00 0.07 +bienveillant bienveillant ADJ m s 1.47 7.50 0.84 2.97 +bienveillante bienveillant ADJ f s 1.47 7.50 0.30 3.24 +bienveillantes bienveillant ADJ f p 1.47 7.50 0.06 0.41 +bienveillants bienveillant ADJ m p 1.47 7.50 0.27 0.88 +bienvenu bienvenu NOM m s 14.30 1.82 9.82 1.22 +bienvenue bienvenue NOM f s 22.63 5.27 21.81 5.14 +bienvenues bienvenue NOM f p 22.63 5.27 0.82 0.14 +bienvenus bienvenu NOM m p 14.30 1.82 4.48 0.61 +bif bif NOM m s 0.02 0.14 0.02 0.14 +biface biface NOM m s 0.00 0.07 0.00 0.07 +bifaces biface ADJ m p 0.00 0.07 0.00 0.07 +biffa biffer VER 0.11 1.62 0.00 0.41 ind:pas:3s; +biffaient biffer VER 0.11 1.62 0.00 0.07 ind:imp:3p; +biffais biffer VER 0.11 1.62 0.00 0.07 ind:imp:1s; +biffant biffer VER 0.11 1.62 0.01 0.07 par:pre; +biffe biffe NOM f s 0.33 0.54 0.33 0.54 +biffer biffer VER 0.11 1.62 0.07 0.47 inf; +biffeton biffeton NOM m s 0.29 2.64 0.01 0.88 +biffetons biffeton NOM m p 0.29 2.64 0.28 1.76 +biffin biffin NOM m s 0.05 1.62 0.03 0.88 +biffins biffin NOM m p 0.05 1.62 0.02 0.74 +biffé biffer VER m s 0.11 1.62 0.02 0.07 par:pas; +bifide bifide ADJ s 0.01 0.61 0.01 0.47 +bifides bifide ADJ f p 0.01 0.61 0.00 0.14 +bifrons bifron ADJ p 0.00 0.20 0.00 0.20 +bifteck bifteck NOM m s 1.45 5.14 1.30 3.58 +biftecks bifteck NOM m p 1.45 5.14 0.14 1.55 +bifton bifton NOM m s 0.64 2.84 0.16 1.08 +biftons bifton NOM m p 0.64 2.84 0.49 1.76 +biftèque biftèque NOM m s 0.00 0.47 0.00 0.14 +biftèques biftèque NOM m p 0.00 0.47 0.00 0.34 +bifurcation bifurcation NOM f s 0.33 0.54 0.29 0.41 +bifurcations bifurcation NOM f p 0.33 0.54 0.04 0.14 +bifurqua bifurquer VER 0.68 2.03 0.00 0.14 ind:pas:3s; +bifurquait bifurquer VER 0.68 2.03 0.00 0.20 ind:imp:3s; +bifurquant bifurquer VER 0.68 2.03 0.00 0.20 par:pre; +bifurque bifurquer VER 0.68 2.03 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bifurquent bifurquer VER 0.68 2.03 0.00 0.07 ind:pre:3p; +bifurquer bifurquer VER 0.68 2.03 0.14 0.20 inf; +bifurqueront bifurquer VER 0.68 2.03 0.00 0.07 ind:fut:3p; +bifurqué bifurquer VER m s 0.68 2.03 0.36 0.61 par:pas; +bifurquée bifurquer VER f s 0.68 2.03 0.00 0.14 par:pas; +big_bang big_bang NOM m 0.03 0.41 0.03 0.41 +big_band big_band NOM m 0.05 0.00 0.05 0.00 +big_bang big_bang NOM m 0.38 1.62 0.38 1.62 +bigaille bigaille NOM f s 0.00 0.27 0.00 0.27 +bigame bigame ADJ m s 0.23 0.00 0.23 0.00 +bigamie bigamie NOM f s 0.37 0.47 0.37 0.47 +bigarreau bigarreau NOM m s 0.00 0.07 0.00 0.07 +bigarrer bigarrer VER 0.11 0.81 0.00 0.07 inf; +bigarré bigarrer VER m s 0.11 0.81 0.10 0.20 par:pas; +bigarrée bigarré ADJ f s 0.17 1.62 0.02 0.88 +bigarrées bigarré ADJ f p 0.17 1.62 0.00 0.07 +bigarrure bigarrure NOM f s 0.00 0.74 0.00 0.61 +bigarrures bigarrure NOM f p 0.00 0.74 0.00 0.14 +bigarrés bigarré ADJ m p 0.17 1.62 0.14 0.34 +bighorn bighorn NOM m s 0.20 0.14 0.18 0.07 +bighorns bighorn NOM m p 0.20 0.14 0.03 0.07 +biglaient bigler VER 0.00 2.16 0.00 0.07 ind:imp:3p; +biglais bigler VER 0.00 2.16 0.00 0.07 ind:imp:1s; +biglait bigler VER 0.00 2.16 0.00 0.20 ind:imp:3s; +biglant bigler VER 0.00 2.16 0.00 0.20 par:pre; +bigle bigler VER 0.00 2.16 0.00 0.34 ind:pre:1s;ind:pre:3s; +biglent bigler VER 0.00 2.16 0.00 0.14 ind:pre:3p; +bigler bigler VER 0.00 2.16 0.00 0.54 inf; +bigles bigle ADJ m p 0.00 0.34 0.00 0.07 +bigleuse bigleux NOM f s 1.88 0.20 0.14 0.07 +bigleux bigleux NOM m 1.88 0.20 1.75 0.14 +biglez bigler VER 0.00 2.16 0.00 0.07 imp:pre:2p; +biglé bigler VER m s 0.00 2.16 0.00 0.34 par:pas; +biglée bigler VER f s 0.00 2.16 0.00 0.14 par:pas; +biglés bigler VER m p 0.00 2.16 0.00 0.07 par:pas; +bigne bigne NOM f s 0.00 0.20 0.00 0.20 +bignolait bignoler VER 0.00 0.07 0.00 0.07 ind:imp:3s; +bignole bignole NOM f s 0.00 5.74 0.00 5.14 +bignoles bignole NOM f p 0.00 5.74 0.00 0.61 +bignolle bignolle NOM f s 0.00 0.07 0.00 0.07 +bignon bignon NOM m s 0.00 0.07 0.00 0.07 +bignones bignone NOM f p 0.00 0.07 0.00 0.07 +bignonias bignonia NOM m p 0.00 0.07 0.00 0.07 +bigo bigo NOM m s 0.05 0.54 0.05 0.54 +bigophone bigophone NOM m s 0.17 0.68 0.17 0.68 +bigophoner bigophoner VER 0.03 0.81 0.00 0.41 inf; +bigophones bigophoner VER 0.03 0.81 0.01 0.00 ind:pre:2s; +bigophoné bigophoner VER m s 0.03 0.81 0.00 0.27 par:pas; +bigorne bigorne NOM f s 0.00 0.20 0.00 0.14 +bigorneau bigorneau NOM m s 1.01 1.55 0.19 0.74 +bigorneaux bigorneau NOM m p 1.01 1.55 0.82 0.81 +bigorner bigorner VER 0.00 0.61 0.00 0.27 inf; +bigornes bigorne NOM f p 0.00 0.20 0.00 0.07 +bigorné bigorner VER m s 0.00 0.61 0.00 0.20 par:pas; +bigornés bigorner VER m p 0.00 0.61 0.00 0.07 par:pas; +bigot bigot ADJ m s 0.20 0.27 0.17 0.20 +bigote bigot NOM f s 0.50 1.01 0.34 0.41 +bigoterie bigoterie NOM f s 0.14 0.20 0.14 0.20 +bigotes bigot NOM f p 0.50 1.01 0.00 0.41 +bigots bigot NOM m p 0.50 1.01 0.06 0.07 +bigouden bigouden ADJ f s 0.00 0.34 0.00 0.34 +bigoudens bigouden NOM p 0.00 0.07 0.00 0.07 +bigoudi bigoudi NOM m s 0.73 3.45 0.18 0.61 +bigoudis bigoudi NOM m p 0.73 3.45 0.55 2.84 +bigre bigre ONO 0.47 0.54 0.47 0.54 +bigrement bigrement ADV 0.28 1.49 0.28 1.49 +bigue bigue NOM f s 0.00 0.14 0.00 0.14 +biguine biguine NOM f s 0.10 0.34 0.10 0.34 +bihebdomadaire bihebdomadaire ADJ s 0.01 0.14 0.00 0.07 +bihebdomadaires bihebdomadaire ADJ p 0.01 0.14 0.01 0.07 +bihoreau bihoreau NOM m s 0.00 0.27 0.00 0.27 +bijou bijou NOM m s 8.37 11.96 8.37 11.96 +bijouterie bijouterie NOM f s 2.41 1.55 2.15 1.15 +bijouteries bijouterie NOM f p 2.41 1.55 0.26 0.41 +bijoutier bijoutier NOM m s 1.64 2.70 1.54 1.62 +bijoutiers bijoutier NOM m p 1.64 2.70 0.10 0.68 +bijoutière bijoutier NOM f s 1.64 2.70 0.00 0.41 +bijoux bijoux NOM m p 20.64 21.01 20.64 21.01 +bikini bikini NOM m s 2.98 2.09 2.34 1.49 +bikinis bikini NOM m p 2.98 2.09 0.65 0.61 +bilais biler VER 2.95 2.84 0.01 0.07 ind:imp:1s; +bilait biler VER 2.95 2.84 0.00 0.07 ind:imp:3s; +bilan bilan NOM m s 6.13 7.36 5.63 6.22 +bilans bilan NOM m p 6.13 7.36 0.50 1.15 +bilatéral bilatéral ADJ m s 0.51 0.34 0.14 0.14 +bilatérale bilatéral ADJ f s 0.51 0.34 0.23 0.14 +bilatéralement bilatéralement ADV 0.03 0.00 0.03 0.00 +bilatéraux bilatéral ADJ m p 0.51 0.34 0.14 0.07 +bilbergia bilbergia NOM f s 0.00 0.07 0.00 0.07 +bilboquet bilboquet NOM m s 0.04 1.15 0.04 1.01 +bilboquets bilboquet NOM m p 0.04 1.15 0.00 0.14 +bile bile NOM f s 2.78 4.66 2.59 4.66 +biler biler VER 2.95 2.84 0.10 1.15 inf; +biles biler VER 2.95 2.84 0.29 0.00 ind:pre:2s; +bileux bileux ADJ m 0.01 0.00 0.01 0.00 +bilez biler VER 2.95 2.84 0.22 0.47 imp:pre:2p;ind:pre:2p; +bilharziose bilharziose NOM f s 0.01 0.20 0.01 0.20 +biliaire biliaire ADJ s 0.75 0.47 0.57 0.47 +biliaires biliaire ADJ p 0.75 0.47 0.18 0.00 +bilieuse bilieux ADJ f s 0.03 0.68 0.03 0.20 +bilieuses bilieux ADJ f p 0.03 0.68 0.00 0.07 +bilieux bilieux ADJ m s 0.03 0.68 0.00 0.41 +bilingue bilingue NOM s 0.39 0.00 0.38 0.00 +bilingues bilingue ADJ p 0.34 0.88 0.04 0.34 +bilinguisme bilinguisme NOM m s 0.00 0.07 0.00 0.07 +bilirubine bilirubine NOM f s 0.07 0.00 0.07 0.00 +bill bill NOM m s 0.56 0.07 0.47 0.07 +billard billard NOM m s 7.84 12.23 7.56 11.35 +billards billard NOM m p 7.84 12.23 0.28 0.88 +bille bille NOM f s 5.21 19.53 2.50 8.58 +biller biller VER 0.07 0.00 0.04 0.00 inf; +billes bille NOM f p 5.21 19.53 2.70 10.95 +billet billet NOM m s 83.87 63.58 41.47 32.23 +billets billet NOM m p 83.87 63.58 42.40 31.35 +billetterie billetterie NOM f s 0.19 0.00 0.17 0.00 +billetteries billetterie NOM f p 0.19 0.00 0.02 0.00 +billettes billette NOM f p 0.00 0.07 0.00 0.07 +billevesée billevesée NOM f s 0.27 0.54 0.00 0.07 +billevesées billevesée NOM f p 0.27 0.54 0.27 0.47 +billion billion NOM m s 0.42 0.07 0.19 0.00 +billions billion NOM m p 0.42 0.07 0.23 0.07 +billon billon NOM m s 0.00 0.14 0.00 0.14 +billot billot NOM m s 0.69 2.50 0.68 2.03 +billots billot NOM m p 0.69 2.50 0.01 0.47 +bills bill NOM m p 0.56 0.07 0.09 0.00 +bilobée bilobé ADJ f s 0.01 0.00 0.01 0.00 +bim bim ONO 0.52 0.20 0.52 0.20 +bimbeloterie bimbeloterie NOM f s 0.03 0.61 0.02 0.47 +bimbeloteries bimbeloterie NOM f p 0.03 0.61 0.01 0.14 +bimensuel bimensuel ADJ m s 0.04 0.14 0.01 0.07 +bimensuelle bimensuel ADJ f s 0.04 0.14 0.02 0.07 +bimensuelles bimensuel ADJ f p 0.04 0.14 0.01 0.00 +bimestre bimestre NOM m s 0.01 0.00 0.01 0.00 +bimoteur bimoteur NOM m s 0.08 0.34 0.08 0.27 +bimoteurs bimoteur NOM m p 0.08 0.34 0.00 0.07 +bimétallisme bimétallisme NOM m s 0.00 0.14 0.00 0.14 +bin_s bin_s NOM m 0.03 0.00 0.03 0.00 +binôme binôme NOM m s 0.27 0.14 0.20 0.07 +binômes binôme NOM m p 0.27 0.14 0.06 0.07 +binaire binaire ADJ s 0.68 0.34 0.45 0.27 +binaires binaire ADJ p 0.68 0.34 0.23 0.07 +binait biner VER 0.33 0.68 0.00 0.14 ind:imp:3s; +binant biner VER 0.33 0.68 0.00 0.14 par:pre; +biner biner VER 0.33 0.68 0.33 0.34 inf; +binet_simon binet_simon NOM m s 0.00 0.07 0.00 0.07 +binette binette NOM f s 0.27 1.49 0.25 1.08 +binettes binette NOM f p 0.27 1.49 0.03 0.41 +bing bing ONO 1.81 1.76 1.81 1.76 +bingo bingo NOM m s 9.08 0.14 9.08 0.14 +biniou biniou NOM m s 0.29 0.81 0.29 0.74 +binious biniou NOM m p 0.29 0.81 0.00 0.07 +binoclard binoclard ADJ m s 2.29 2.43 2.22 2.09 +binoclarde binoclard ADJ f s 2.29 2.43 0.02 0.14 +binoclards binoclard ADJ m p 2.29 2.43 0.04 0.20 +binocle binocle NOM m s 0.18 1.01 0.01 0.47 +binocles binocle NOM m p 0.18 1.01 0.17 0.54 +binoculaire binoculaire ADJ f s 0.03 0.07 0.03 0.07 +bintje bintje NOM f s 0.00 0.07 0.00 0.07 +biné biner VER m s 0.33 0.68 0.00 0.07 par:pas; +binz binz NOM s 0.27 0.14 0.27 0.14 +bio bio ADJ 3.30 0.41 3.30 0.41 +biochimie biochimie NOM f s 0.63 0.00 0.63 0.00 +biochimique biochimique ADJ s 0.32 0.14 0.22 0.14 +biochimiquement biochimiquement ADV 0.02 0.00 0.02 0.00 +biochimiques biochimique ADJ p 0.32 0.14 0.11 0.00 +biochimiste biochimiste NOM s 0.35 0.00 0.30 0.00 +biochimistes biochimiste NOM p 0.35 0.00 0.05 0.00 +biodiversité biodiversité NOM f s 0.05 0.00 0.05 0.00 +biodégradable biodégradable ADJ m s 0.16 0.07 0.10 0.07 +biodégradables biodégradable ADJ f p 0.16 0.07 0.06 0.00 +biographe biographe NOM s 0.75 0.88 0.75 0.61 +biographes biographe NOM p 0.75 0.88 0.00 0.27 +biographie biographie NOM f s 2.82 5.34 2.36 4.19 +biographies biographie NOM f p 2.82 5.34 0.46 1.15 +biographique biographique ADJ s 0.18 0.88 0.14 0.34 +biographiques biographique ADJ p 0.18 0.88 0.03 0.54 +biogénique biogénique ADJ m s 0.01 0.00 0.01 0.00 +biogénétique biogénétique ADJ s 0.14 0.00 0.14 0.00 +biologie biologie NOM f s 4.13 1.22 4.13 1.22 +biologique biologique ADJ s 7.34 2.36 5.35 1.69 +biologiquement biologiquement ADV 0.46 0.34 0.46 0.34 +biologiques biologique ADJ p 7.34 2.36 2.00 0.68 +biologiste biologiste NOM s 1.08 0.34 0.84 0.34 +biologistes biologiste NOM p 1.08 0.34 0.24 0.00 +biologisé biologiser VER m s 0.01 0.00 0.01 0.00 par:pas; +bioluminescence bioluminescence NOM f s 0.05 0.00 0.05 0.00 +bioluminescente bioluminescent ADJ f s 0.01 0.00 0.01 0.00 +biomasse biomasse NOM f s 0.03 0.00 0.03 0.00 +biomécanique biomécanique NOM f s 0.16 0.00 0.16 0.00 +biomécanisme biomécanisme NOM m s 0.01 0.00 0.01 0.00 +biomédical biomédical ADJ m s 0.10 0.00 0.06 0.00 +biomédicale biomédical ADJ f s 0.10 0.00 0.03 0.00 +biomédicaux biomédical ADJ m p 0.10 0.00 0.01 0.00 +biométrie biométrie NOM f s 0.03 0.00 0.03 0.00 +biométrique biométrique ADJ s 0.19 0.00 0.12 0.00 +biométriques biométrique ADJ p 0.19 0.00 0.07 0.00 +bionique bionique ADJ s 0.34 0.00 0.24 0.00 +bioniques bionique ADJ p 0.34 0.00 0.10 0.00 +biophysique biophysique NOM f s 0.06 0.00 0.06 0.00 +biopsie biopsie NOM f s 2.19 0.47 2.04 0.47 +biopsies biopsie NOM f p 2.19 0.47 0.15 0.00 +biorythme biorythme NOM m s 0.06 0.00 0.01 0.00 +biorythmes biorythme NOM m p 0.06 0.00 0.04 0.00 +biosphère biosphère NOM f s 0.08 0.00 0.08 0.00 +biosynthétiques biosynthétique ADJ p 0.01 0.00 0.01 0.00 +biotechnique biotechnique NOM f s 0.15 0.00 0.15 0.00 +biotechnologie biotechnologie NOM f s 0.22 0.00 0.22 0.00 +biotique biotique ADJ s 0.02 0.00 0.02 0.00 +biotite biotite NOM f s 0.03 0.00 0.03 0.00 +biotope biotope NOM m s 0.07 0.00 0.07 0.00 +bioélectrique bioélectrique ADJ s 0.01 0.00 0.01 0.00 +bioxyde bioxyde NOM m s 0.02 0.07 0.02 0.07 +bip_bip bip_bip NOM m s 0.47 0.00 0.47 0.00 +bip bip NOM m s 7.68 1.28 6.94 1.28 +bipais biper VER 4.07 0.00 0.01 0.00 ind:imp:1s; +bipartisan bipartisan ADJ m s 0.01 0.00 0.01 0.00 +bipartisme bipartisme NOM m s 0.07 0.00 0.07 0.00 +bipartite bipartite ADJ s 0.15 0.00 0.15 0.00 +bipe biper VER 4.07 0.00 0.77 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +biper biper VER 4.07 0.00 0.96 0.00 inf; +biperai biper VER 4.07 0.00 0.06 0.00 ind:fut:1s; +biperait biper VER 4.07 0.00 0.01 0.00 cnd:pre:3s; +bipes biper VER 4.07 0.00 0.09 0.00 ind:pre:2s; +bipez biper VER 4.07 0.00 0.43 0.00 imp:pre:2p;ind:pre:2p; +biphényle biphényle NOM m s 0.01 0.00 0.01 0.00 +biplace biplace ADJ s 0.16 0.07 0.02 0.00 +biplaces biplace ADJ p 0.16 0.07 0.14 0.07 +biplan biplan NOM m s 0.32 0.68 0.32 0.54 +biplans biplan NOM m p 0.32 0.68 0.00 0.14 +bipolaire bipolaire ADJ f s 0.29 0.00 0.26 0.00 +bipolaires bipolaire ADJ m p 0.29 0.00 0.04 0.00 +bipolarité bipolarité NOM f s 0.00 0.07 0.00 0.07 +bips bip NOM m p 7.68 1.28 0.74 0.00 +bipède bipède NOM m s 0.78 0.47 0.58 0.20 +bipèdes bipède NOM m p 0.78 0.47 0.20 0.27 +bipé biper VER m s 4.07 0.00 1.27 0.00 par:pas; +bipée biper VER f s 4.07 0.00 0.40 0.00 par:pas; +bipés biper VER m p 4.07 0.00 0.05 0.00 par:pas; +bique bique NOM f s 0.94 4.39 0.56 2.97 +biques bique NOM f p 0.94 4.39 0.38 1.42 +biquet biquet NOM m s 0.54 2.77 0.54 1.28 +biquets biquet NOM m p 0.54 2.77 0.00 1.49 +biquette biquette NOM f s 0.46 1.35 0.05 1.01 +biquettes biquette NOM f p 0.46 1.35 0.40 0.34 +biquotidienne biquotidien ADJ f s 0.00 0.20 0.00 0.07 +biquotidiens biquotidien ADJ m p 0.00 0.20 0.00 0.14 +birbe birbe NOM m s 0.02 0.47 0.00 0.34 +birbes birbe NOM m p 0.02 0.47 0.02 0.14 +birchers bircher NOM m p 0.05 0.00 0.05 0.00 +bire bire NOM f s 0.00 0.07 0.00 0.07 +biribi biribi NOM m s 0.00 0.74 0.00 0.74 +birman birman ADJ m s 0.36 0.00 0.16 0.00 +birmane birman ADJ f s 0.36 0.00 0.08 0.00 +birmanes birman ADJ f p 0.36 0.00 0.02 0.00 +birmans birman NOM m p 0.29 0.00 0.25 0.00 +biroute biroute NOM f s 0.18 0.95 0.18 0.81 +biroutes biroute NOM f p 0.18 0.95 0.00 0.14 +birth_control birth_control NOM m 0.01 0.14 0.01 0.14 +biréfringence biréfringence NOM f s 0.01 0.00 0.01 0.00 +bis bis ADJ m 3.48 4.32 0.86 1.82 +bisaïeul bisaïeul NOM m s 0.05 0.20 0.05 0.07 +bisaïeule bisaïeul NOM f s 0.05 0.20 0.00 0.14 +bisannuel bisannuel ADJ m s 0.01 0.07 0.01 0.00 +bisannuelles bisannuel ADJ f p 0.01 0.07 0.00 0.07 +bisbille bisbille NOM f s 0.08 0.34 0.07 0.20 +bisbilles bisbille NOM f p 0.08 0.34 0.01 0.14 +biscaïen biscaïen NOM m s 0.00 0.20 0.00 0.20 +bischof bischof NOM m s 0.14 0.00 0.14 0.00 +biscornu biscornu ADJ m s 0.06 3.04 0.01 0.88 +biscornue biscornu ADJ f s 0.06 3.04 0.03 0.74 +biscornues biscornu ADJ f p 0.06 3.04 0.01 0.61 +biscornus biscornu ADJ m p 0.06 3.04 0.01 0.81 +biscoteaux biscoteau NOM m p 0.21 0.00 0.21 0.00 +biscotos biscoto NOM m p 0.01 0.34 0.01 0.34 +biscotte biscotte NOM f s 1.95 2.43 1.53 0.88 +biscottes biscotte NOM f p 1.95 2.43 0.42 1.55 +biscuit biscuit NOM m s 12.72 11.55 4.75 2.77 +biscuiterie biscuiterie NOM f s 0.06 0.68 0.06 0.68 +biscuits biscuit NOM m p 12.72 11.55 7.96 8.78 +bise bise NOM f s 3.84 8.72 2.69 8.11 +biseau biseau NOM m s 0.02 0.95 0.02 0.88 +biseauté biseauter VER m s 0.17 0.68 0.01 0.00 par:pas; +biseautée biseauter VER f s 0.17 0.68 0.00 0.07 par:pas; +biseautées biseauter VER f p 0.17 0.68 0.01 0.34 par:pas; +biseautés biseauter VER m p 0.17 0.68 0.14 0.27 par:pas; +biseaux biseau NOM m p 0.02 0.95 0.00 0.07 +biseness biseness NOM m 0.00 0.14 0.00 0.14 +biser biser VER 0.14 0.20 0.14 0.00 inf; +bises bise NOM f p 3.84 8.72 1.14 0.61 +bisets biset NOM m p 0.00 0.14 0.00 0.14 +bisette bisette NOM f s 0.00 0.07 0.00 0.07 +bisexualité bisexualité NOM f s 0.05 0.07 0.05 0.07 +bisexuel bisexuel ADJ m s 1.77 0.14 0.88 0.14 +bisexuelle bisexuel ADJ f s 1.77 0.14 0.21 0.00 +bisexuelles bisexuelle ADJ f p 0.03 0.00 0.03 0.00 +bisexuels bisexuel ADJ m p 1.77 0.14 0.69 0.00 +bisexué bisexué ADJ m s 0.01 0.07 0.00 0.07 +bisexués bisexué ADJ m p 0.01 0.07 0.01 0.00 +bishop bishop NOM m s 0.02 0.00 0.02 0.00 +bismarckien bismarckien ADJ m s 0.00 0.07 0.00 0.07 +bismuth bismuth NOM m s 0.02 0.14 0.02 0.14 +bisness bisness NOM m 0.00 0.14 0.00 0.14 +bison bison NOM m s 2.65 3.38 1.49 1.28 +bisons bison NOM m p 2.65 3.38 1.16 2.09 +bisou_éclair bisou_éclair NOM m s 0.01 0.00 0.01 0.00 +bisou bisou NOM m s 18.40 1.08 13.99 0.54 +bisous bisou NOM m p 18.40 1.08 4.40 0.54 +bisque bisque NOM f s 0.41 0.61 0.41 0.54 +bisquent bisquer VER 0.17 0.27 0.00 0.07 ind:pre:3p; +bisquer bisquer VER 0.17 0.27 0.02 0.07 inf; +bisques bisque NOM f p 0.41 0.61 0.00 0.07 +bissac bissac NOM m s 0.01 0.34 0.01 0.27 +bissacs bissac NOM m p 0.01 0.34 0.00 0.07 +bissant bisser VER 0.03 0.27 0.00 0.07 par:pre; +bisse bisser VER 0.03 0.27 0.01 0.07 imp:pre:2s;ind:pre:3s; +bissel bissel NOM m s 0.02 0.00 0.02 0.00 +bisser bisser VER 0.03 0.27 0.01 0.00 inf; +bissextile bissextile ADJ f s 0.07 0.47 0.03 0.07 +bissextiles bissextile ADJ f p 0.07 0.47 0.03 0.41 +bissé bisser VER m s 0.03 0.27 0.01 0.14 par:pas; +bistorte bistorte NOM f s 0.14 0.07 0.14 0.07 +bistouille bistouille NOM f s 0.00 0.07 0.00 0.07 +bistouquette bistouquette NOM f s 0.22 0.07 0.22 0.07 +bistouri bistouri NOM m s 0.79 2.36 0.79 2.03 +bistouris bistouri NOM m p 0.79 2.36 0.00 0.34 +bistouriser bistouriser VER 0.00 0.07 0.00 0.07 inf; +bistre bistre ADJ 0.00 2.16 0.00 2.16 +bistres bistre NOM m p 0.00 1.69 0.00 0.41 +bistro bistro NOM m s 0.63 3.04 0.60 2.43 +bistroquet bistroquet NOM m s 0.00 0.47 0.00 0.47 +bistros bistro NOM m p 0.63 3.04 0.02 0.61 +bistrot bistrot NOM m s 3.30 27.50 2.80 21.69 +bistrote bistrot NOM f s 3.30 27.50 0.00 0.07 +bistrotier bistrotier NOM m s 0.00 0.41 0.00 0.20 +bistrotiers bistrotier NOM m p 0.00 0.41 0.00 0.07 +bistrotière bistrotier NOM f s 0.00 0.41 0.00 0.07 +bistrotières bistrotier NOM f p 0.00 0.41 0.00 0.07 +bistrots bistrot NOM m p 3.30 27.50 0.50 5.74 +bistrouille bistrouille NOM f s 0.00 0.20 0.00 0.20 +bistré bistrer VER m s 0.00 0.41 0.00 0.07 par:pas; +bistrée bistré ADJ f s 0.00 0.34 0.00 0.20 +bistrées bistrer VER f p 0.00 0.41 0.00 0.14 par:pas; +bistrés bistré ADJ m p 0.00 0.34 0.00 0.14 +bisulfite bisulfite NOM m s 0.00 0.07 0.00 0.07 +bit bit NOM m s 1.24 0.14 1.04 0.14 +bite bite NOM f s 26.41 6.08 22.93 4.93 +bitent biter VER 0.02 0.14 0.00 0.07 ind:pre:3p; +bites bite NOM f p 26.41 6.08 3.49 1.15 +bière bière NOM f s 81.67 38.11 68.55 35.34 +bières bière NOM f p 81.67 38.11 13.12 2.77 +bithynien bithynien NOM m s 0.00 0.41 0.00 0.27 +bithyniens bithynien NOM m p 0.00 0.41 0.00 0.14 +bitoniau bitoniau NOM m s 0.01 0.00 0.01 0.00 +bitos bitos NOM m 0.00 0.74 0.00 0.74 +bits bit NOM m p 1.24 0.14 0.20 0.00 +bitte bitte NOM f s 0.72 1.01 0.69 0.74 +bitter bitter VER 0.23 0.00 0.23 0.00 inf; +bitters bitter NOM m p 0.16 0.00 0.02 0.00 +bittes bitte NOM f p 0.72 1.01 0.03 0.27 +bité biter VER m s 0.02 0.14 0.02 0.07 par:pas; +bitume bitume NOM m s 1.12 6.01 0.99 5.88 +bitumes bitume NOM m p 1.12 6.01 0.14 0.14 +bitumeuse bitumeux ADJ f s 0.00 0.34 0.00 0.14 +bitumeux bitumeux ADJ m p 0.00 0.34 0.00 0.20 +bitumineuse bitumineux ADJ f s 0.03 0.07 0.02 0.07 +bitumineux bitumineux ADJ m p 0.03 0.07 0.01 0.00 +bitumé bitumer VER m s 0.01 0.68 0.00 0.41 par:pas; +bitumée bitumer VER f s 0.01 0.68 0.00 0.20 par:pas; +bitumées bitumer VER f p 0.01 0.68 0.01 0.07 par:pas; +biture biture NOM f s 0.12 1.22 0.09 1.01 +biturer biturer VER 0.19 0.20 0.02 0.00 inf; +bitures biture NOM f p 0.12 1.22 0.03 0.20 +biturin biturin NOM m s 0.00 0.27 0.00 0.20 +biturins biturin NOM m p 0.00 0.27 0.00 0.07 +bituré biturer VER m s 0.19 0.20 0.16 0.07 par:pas; +biturés biturer VER m p 0.19 0.20 0.00 0.14 par:pas; +bivalente bivalent ADJ f s 0.00 0.07 0.00 0.07 +bivalve bivalve NOM m s 0.01 0.00 0.01 0.00 +bivalves bivalve ADJ p 0.02 0.00 0.02 0.00 +bivouac bivouac NOM m s 0.41 3.85 0.26 2.23 +bivouacs bivouac NOM m p 0.41 3.85 0.14 1.62 +bivouaquaient bivouaquer VER 0.75 0.61 0.00 0.14 ind:imp:3p; +bivouaquait bivouaquer VER 0.75 0.61 0.00 0.14 ind:imp:3s; +bivouaque bivouaquer VER 0.75 0.61 0.25 0.00 ind:pre:3s; +bivouaquent bivouaquer VER 0.75 0.61 0.11 0.20 ind:pre:3p; +bivouaquer bivouaquer VER 0.75 0.61 0.09 0.00 inf; +bivouaquerons bivouaquer VER 0.75 0.61 0.16 0.00 ind:fut:1p; +bivouaquons bivouaquer VER 0.75 0.61 0.02 0.00 imp:pre:1p; +bivouaqué bivouaquer VER m s 0.75 0.61 0.13 0.07 par:pas; +bivouaquée bivouaquer VER f s 0.75 0.61 0.00 0.07 par:pas; +bizarde bizarde ADJ f s 0.00 0.27 0.00 0.27 +bizarre bizarre ADJ s 131.41 52.23 117.31 41.76 +bizarrement bizarrement ADV 7.12 11.82 7.12 11.82 +bizarrerie bizarrerie NOM f s 1.12 3.38 0.70 1.82 +bizarreries bizarrerie NOM f p 1.12 3.38 0.42 1.55 +bizarres bizarre ADJ p 131.41 52.23 14.10 10.47 +bizarroïde bizarroïde ADJ s 0.16 0.27 0.14 0.14 +bizarroïdes bizarroïde ADJ p 0.16 0.27 0.03 0.14 +bizness bizness NOM m 2.02 0.68 2.02 0.68 +bizou bizou NOM m s 0.00 0.07 0.00 0.07 +bizut bizut NOM m s 2.30 0.07 2.05 0.07 +bizutage bizutage NOM m s 1.02 0.14 1.00 0.07 +bizutages bizutage NOM m p 1.02 0.14 0.01 0.07 +bizuter bizuter VER 0.14 0.00 0.10 0.00 inf; +bizuteurs bizuteur NOM m p 0.01 0.00 0.01 0.00 +bizuth bizuth NOM m s 0.02 0.00 0.02 0.00 +bizuts bizut NOM m p 2.30 0.07 0.25 0.00 +bizuté bizuter VER m s 0.14 0.00 0.04 0.00 par:pas; +bla_bla_bla bla_bla_bla NOM m 0.41 0.34 0.41 0.34 +bla_bla bla_bla NOM m 1.51 1.49 1.11 1.49 +bla_bla bla_bla NOM m 1.51 1.49 0.40 0.00 +blabla blabla NOM m 0.81 1.42 0.81 1.42 +blablabla blablabla NOM m 0.88 0.34 0.88 0.34 +blablatait blablater VER 0.04 0.14 0.00 0.07 ind:imp:3s; +blablater blablater VER 0.04 0.14 0.03 0.00 inf; +blablateurs blablateur NOM m p 0.00 0.07 0.00 0.07 +blablatez blablater VER 0.04 0.14 0.01 0.00 ind:pre:2p; +blablaté blablater VER m s 0.04 0.14 0.00 0.07 par:pas; +black_bass black_bass NOM m 0.00 0.07 0.00 0.07 +black_jack black_jack NOM m s 0.75 0.00 0.75 0.00 +black_out black_out NOM m 1.00 0.88 1.00 0.88 +black black ADJ m s 2.67 0.47 2.45 0.47 +blackboule blackbouler VER 0.06 0.07 0.01 0.00 ind:pre:3s; +blackbouler blackbouler VER 0.06 0.07 0.04 0.07 inf; +blackboulé blackbouler VER m s 0.06 0.07 0.01 0.00 par:pas; +blacks black NOM m p 4.07 1.42 2.13 1.01 +blafard blafard ADJ m s 0.64 10.27 0.37 4.80 +blafarde blafard ADJ f s 0.64 10.27 0.16 3.72 +blafardes blafard ADJ f p 0.64 10.27 0.00 0.74 +blafards blafard ADJ m p 0.64 10.27 0.11 1.01 +blagua blaguer VER 9.41 3.24 0.00 0.14 ind:pas:3s; +blaguaient blaguer VER 9.41 3.24 0.04 0.20 ind:imp:3p; +blaguais blaguer VER 9.41 3.24 2.23 0.27 ind:imp:1s;ind:imp:2s; +blaguait blaguer VER 9.41 3.24 0.69 0.14 ind:imp:3s; +blaguant blaguer VER 9.41 3.24 0.04 0.20 par:pre; +blague blague NOM f s 72.63 22.70 60.33 16.82 +blaguent blaguer VER 9.41 3.24 0.06 0.20 ind:pre:3p; +blaguer blaguer VER 9.41 3.24 1.22 0.74 inf; +blaguerais blaguer VER 9.41 3.24 0.03 0.00 cnd:pre:1s; +blagues blague NOM f p 72.63 22.70 12.30 5.88 +blagueur blagueur NOM m s 0.35 0.00 0.29 0.00 +blagueurs blagueur NOM m p 0.35 0.00 0.05 0.00 +blagueuse blagueur NOM f s 0.35 0.00 0.01 0.00 +blagueuses blagueur ADJ f p 0.08 0.74 0.00 0.07 +blaguez blaguer VER 9.41 3.24 0.34 0.20 imp:pre:2p;ind:pre:2p; +blaguons blaguer VER 9.41 3.24 0.01 0.00 ind:pre:1p; +blagué blaguer VER m s 9.41 3.24 0.28 0.20 par:pas; +blair blair NOM m s 0.06 1.35 0.05 1.28 +blairaient blairer VER 1.39 2.03 0.00 0.07 ind:imp:3p; +blairait blairer VER 1.39 2.03 0.00 0.20 ind:imp:3s; +blaire blairer VER 1.39 2.03 0.09 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +blaireau blaireau NOM m s 3.75 3.78 2.64 2.70 +blaireaux blaireau NOM m p 3.75 3.78 1.11 1.08 +blairer blairer VER 1.39 2.03 1.30 1.01 inf; +blairs blair NOM m p 0.06 1.35 0.01 0.07 +blairé blairer VER m s 1.39 2.03 0.00 0.07 par:pas; +blaise blaiser VER 0.00 0.27 0.00 0.27 ind:pre:1s;ind:pre:3s; +blaisois blaisois NOM m 0.00 0.07 0.00 0.07 +blanc_bec blanc_bec NOM m s 1.50 0.61 1.39 0.47 +blanc_bleu blanc_bleu NOM m s 0.16 0.41 0.16 0.41 +blanc_gris blanc_gris ADJ m s 0.00 0.07 0.00 0.07 +blanc_seing blanc_seing NOM m s 0.01 0.27 0.01 0.27 +blanc blanc ADJ m s 118.74 430.54 53.93 152.03 +blanche blanc ADJ f s 118.74 430.54 35.92 145.07 +blanchecaille blanchecaille NOM f s 0.00 0.54 0.00 0.41 +blanchecailles blanchecaille NOM f p 0.00 0.54 0.00 0.14 +blanchement blanchement NOM m s 0.00 0.07 0.00 0.07 +blanches blanc ADJ f p 118.74 430.54 11.43 60.68 +blanchet blanchet NOM m s 0.00 1.15 0.00 1.15 +blancheur blancheur NOM f s 1.23 15.27 1.23 14.73 +blancheurs blancheur NOM f p 1.23 15.27 0.00 0.54 +blanchi blanchir VER m s 5.34 12.23 1.09 2.23 par:pas; +blanchie blanchir VER f s 5.34 12.23 0.06 0.68 par:pas; +blanchies blanchir VER f p 5.34 12.23 0.02 1.49 par:pas; +blanchiment blanchiment NOM m s 0.75 0.07 0.74 0.00 +blanchiments blanchiment NOM m p 0.75 0.07 0.01 0.07 +blanchir blanchir VER 5.34 12.23 1.86 2.64 inf; +blanchira blanchir VER 5.34 12.23 0.17 0.00 ind:fut:3s; +blanchiraient blanchir VER 5.34 12.23 0.00 0.14 cnd:pre:3p; +blanchirait blanchir VER 5.34 12.23 0.01 0.14 cnd:pre:3s; +blanchirent blanchir VER 5.34 12.23 0.00 0.14 ind:pas:3p; +blanchirez blanchir VER 5.34 12.23 0.02 0.00 ind:fut:2p; +blanchiront blanchir VER 5.34 12.23 0.01 0.07 ind:fut:3p; +blanchis blanchir VER m p 5.34 12.23 0.78 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +blanchissage blanchissage NOM m s 0.31 0.27 0.31 0.27 +blanchissaient blanchir VER 5.34 12.23 0.02 0.81 ind:imp:3p; +blanchissait blanchir VER 5.34 12.23 0.07 1.28 ind:imp:3s; +blanchissant blanchissant ADJ m s 0.04 0.61 0.03 0.27 +blanchissante blanchissant ADJ f s 0.04 0.61 0.01 0.14 +blanchissantes blanchissant ADJ f p 0.04 0.61 0.00 0.07 +blanchissants blanchissant ADJ m p 0.04 0.61 0.00 0.14 +blanchisse blanchir VER 5.34 12.23 0.02 0.07 sub:pre:3s; +blanchissement blanchissement NOM m s 0.09 0.14 0.09 0.14 +blanchissent blanchir VER 5.34 12.23 0.26 0.34 ind:pre:3p; +blanchisserie blanchisserie NOM f s 1.23 3.45 1.23 3.45 +blanchisses blanchir VER 5.34 12.23 0.01 0.00 sub:pre:2s; +blanchisseur blanchisseur NOM m s 0.95 3.65 0.44 0.27 +blanchisseurs blanchisseur NOM m p 0.95 3.65 0.09 0.54 +blanchisseuse blanchisseur NOM f s 0.95 3.65 0.42 1.55 +blanchisseuses blanchisseuse NOM f p 0.16 0.00 0.16 0.00 +blanchissez blanchir VER 5.34 12.23 0.01 0.00 ind:pre:2p; +blanchit blanchir VER 5.34 12.23 0.91 0.95 ind:pre:3s;ind:pas:3s; +blanchoie blanchoyer VER 0.00 0.27 0.00 0.14 ind:pre:3s; +blanchoiement blanchoiement NOM m 0.00 0.07 0.00 0.07 +blanchon blanchon NOM m s 0.06 1.28 0.06 1.28 +blanchâtre blanchâtre ADJ s 0.05 7.23 0.05 4.66 +blanchâtres blanchâtre ADJ p 0.05 7.23 0.00 2.57 +blanchoyait blanchoyer VER 0.00 0.27 0.00 0.07 ind:imp:3s; +blanchoyant blanchoyer VER 0.00 0.27 0.00 0.07 par:pre; +blanc_bec blanc_bec NOM m p 1.50 0.61 0.12 0.14 +blancs_manteaux blancs_manteaux ADJ m p 0.00 0.07 0.00 0.07 +blancs blanc NOM m p 46.88 72.36 19.31 12.64 +blandices blandice NOM f p 0.00 0.14 0.00 0.14 +blanque blanque NOM f s 0.00 0.07 0.00 0.07 +blanquette blanquette NOM f s 0.17 1.01 0.17 0.88 +blanquettes blanquette NOM f p 0.17 1.01 0.00 0.14 +blasait blaser VER 0.31 1.89 0.00 0.14 ind:imp:3s; +blase blase NOM m s 0.12 1.55 0.12 1.35 +blaser blaser VER 0.31 1.89 0.01 0.14 inf; +blases blase NOM m p 0.12 1.55 0.00 0.20 +blason blason NOM m s 0.33 3.45 0.29 3.04 +blasonnait blasonner VER 0.00 0.41 0.00 0.07 ind:imp:3s; +blasonné blasonner VER m s 0.00 0.41 0.00 0.14 par:pas; +blasonnée blasonner VER f s 0.00 0.41 0.00 0.07 par:pas; +blasonnées blasonner VER f p 0.00 0.41 0.00 0.07 par:pas; +blasonnés blasonner VER m p 0.00 0.41 0.00 0.07 par:pas; +blasons blason NOM m p 0.33 3.45 0.04 0.41 +blasphème blasphème NOM m s 5.51 2.97 4.46 1.69 +blasphèment blasphémer VER 4.11 1.96 0.10 0.07 ind:pre:3p; +blasphèmes blasphème NOM m p 5.51 2.97 1.06 1.28 +blasphéma blasphémer VER 4.11 1.96 0.00 0.14 ind:pas:3s; +blasphémaient blasphémer VER 4.11 1.96 0.01 0.14 ind:imp:3p; +blasphémais blasphémer VER 4.11 1.96 0.00 0.07 ind:imp:1s; +blasphémait blasphémer VER 4.11 1.96 0.15 0.00 ind:imp:3s; +blasphémant blasphémer VER 4.11 1.96 0.01 0.07 par:pre; +blasphémateur blasphémateur NOM m s 0.68 0.27 0.36 0.20 +blasphémateurs blasphémateur NOM m p 0.68 0.27 0.29 0.07 +blasphématoire blasphématoire ADJ s 0.62 0.81 0.61 0.54 +blasphématoires blasphématoire ADJ f p 0.62 0.81 0.01 0.27 +blasphématrice blasphémateur NOM f s 0.68 0.27 0.03 0.00 +blasphémer blasphémer VER 4.11 1.96 1.28 0.61 inf; +blasphémez blasphémer VER 4.11 1.96 0.44 0.00 imp:pre:2p;ind:pre:2p; +blasphémé blasphémer VER m s 4.11 1.96 0.90 0.41 par:pas; +blastula blastula NOM f s 0.01 0.00 0.01 0.00 +blasé blasé ADJ m s 1.00 3.92 0.66 2.43 +blasée blasé ADJ f s 1.00 3.92 0.08 0.61 +blasées blasé ADJ f p 1.00 3.92 0.01 0.07 +blasés blasé ADJ m p 1.00 3.92 0.25 0.81 +blatte blatte NOM f s 0.86 0.68 0.41 0.14 +blattes blatte NOM f p 0.86 0.68 0.45 0.54 +blatérant blatérer VER 0.00 0.07 0.00 0.07 par:pre; +blaze blaze NOM m s 0.53 3.18 0.48 2.77 +blazer blazer NOM m s 0.36 3.24 0.32 2.70 +blazers blazer NOM m p 0.36 3.24 0.04 0.54 +blazes blaze NOM m p 0.53 3.18 0.05 0.41 +bled bled NOM m s 5.67 8.04 5.55 7.23 +bleds bled NOM m p 5.67 8.04 0.12 0.81 +blennies blennie NOM f p 0.00 0.07 0.00 0.07 +blennorragie blennorragie NOM f s 0.14 0.07 0.14 0.07 +blessa blesser VER 103.74 43.31 0.30 0.74 ind:pas:3s; +blessaient blesser VER 103.74 43.31 0.03 1.08 ind:imp:3p; +blessais blesser VER 103.74 43.31 0.05 0.14 ind:imp:1s;ind:imp:2s; +blessait blesser VER 103.74 43.31 0.19 3.65 ind:imp:3s; +blessant blessant ADJ m s 1.20 2.91 0.82 1.08 +blessante blessant ADJ f s 1.20 2.91 0.23 1.08 +blessantes blessant ADJ f p 1.20 2.91 0.09 0.34 +blessants blessant ADJ m p 1.20 2.91 0.06 0.41 +blesse blesser VER 103.74 43.31 9.22 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +blessent blesser VER 103.74 43.31 1.08 1.15 ind:pre:3p; +blesser blesser VER 103.74 43.31 19.93 8.31 ind:pre:2p;inf; +blessera blesser VER 103.74 43.31 0.49 0.07 ind:fut:3s; +blesserai blesser VER 103.74 43.31 0.31 0.14 ind:fut:1s; +blesseraient blesser VER 103.74 43.31 0.01 0.07 cnd:pre:3p; +blesserais blesser VER 103.74 43.31 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +blesserait blesser VER 103.74 43.31 0.55 0.14 cnd:pre:3s; +blesseras blesser VER 103.74 43.31 0.13 0.00 ind:fut:2s; +blesserez blesser VER 103.74 43.31 0.04 0.00 ind:fut:2p; +blesseriez blesser VER 103.74 43.31 0.12 0.00 cnd:pre:2p; +blesserons blesser VER 103.74 43.31 0.01 0.00 ind:fut:1p; +blesseront blesser VER 103.74 43.31 0.15 0.20 ind:fut:3p; +blesses blesser VER 103.74 43.31 2.67 0.07 ind:pre:2s; +blessez blesser VER 103.74 43.31 1.79 0.00 imp:pre:2p;ind:pre:2p; +blessiez blesser VER 103.74 43.31 0.07 0.00 ind:imp:2p; +blessing blessing NOM m s 0.01 0.00 0.01 0.00 +blessât blesser VER 103.74 43.31 0.00 0.14 sub:imp:3s; +blessèrent blesser VER 103.74 43.31 0.01 0.14 ind:pas:3p; +blessé blesser VER m s 103.74 43.31 49.12 17.43 par:pas;par:pas;par:pas;par:pas; +blessée blesser VER f s 103.74 43.31 13.00 3.51 par:pas; +blessées blesser VER f p 103.74 43.31 0.64 0.54 par:pas; +blessure blessure NOM f s 41.81 32.57 23.05 19.39 +blessures blessure NOM f p 41.81 32.57 18.77 13.18 +blessés blessé NOM m p 21.88 30.34 12.21 17.70 +blet blet ADJ m s 0.04 1.42 0.00 0.47 +blets blet ADJ m p 0.04 1.42 0.01 0.07 +blette blet ADJ f s 0.04 1.42 0.02 0.61 +blettes blette NOM f p 0.16 0.20 0.16 0.20 +blettir blettir VER 0.00 0.14 0.00 0.07 inf; +blettissait blettir VER 0.00 0.14 0.00 0.07 ind:imp:3s; +blettissement blettissement NOM m s 0.00 0.14 0.00 0.14 +bleu_ciel bleu_ciel ADJ m s 0.00 0.07 0.00 0.07 +bleu_noir bleu_noir ADJ 0.01 1.01 0.01 1.01 +bleu_roi bleu_roi NOM m s 0.02 0.00 0.02 0.00 +bleu_vert bleu_vert ADJ 0.13 0.47 0.13 0.47 +bleu bleu ADJ 70.61 207.64 31.24 100.41 +bleuît bleuir VER 0.16 3.11 0.00 0.07 sub:imp:3s; +bleubite bleubite NOM m s 0.00 0.27 0.00 0.20 +bleubites bleubite NOM m p 0.00 0.27 0.00 0.07 +bleue bleu ADJ f s 70.61 207.64 21.63 53.11 +bleues bleu ADJ f p 70.61 207.64 4.77 21.28 +bleuet bleuet NOM m s 1.98 1.22 1.02 0.14 +bleuets bleuet NOM m p 1.98 1.22 0.95 1.08 +bleuette bleuette NOM f s 0.03 0.00 0.03 0.00 +bleui bleuir VER m s 0.16 3.11 0.01 0.20 par:pas; +bleuie bleui ADJ f s 0.00 1.08 0.00 0.27 +bleuies bleuir VER f p 0.16 3.11 0.10 0.74 par:pas; +bleuir bleuir VER 0.16 3.11 0.00 0.20 inf; +bleuira bleuir VER 0.16 3.11 0.00 0.07 ind:fut:3s; +bleuis bleuir VER m p 0.16 3.11 0.00 0.14 par:pas; +bleuissaient bleuir VER 0.16 3.11 0.00 0.27 ind:imp:3p; +bleuissait bleuir VER 0.16 3.11 0.00 0.54 ind:imp:3s; +bleuissante bleuissant ADJ f s 0.00 0.27 0.00 0.14 +bleuissantes bleuissant ADJ f p 0.00 0.27 0.00 0.14 +bleuissent bleuir VER 0.16 3.11 0.03 0.20 ind:pre:3p; +bleuit bleuir VER 0.16 3.11 0.03 0.47 ind:pre:3s;ind:pas:3s; +bleuâtre bleuâtre ADJ s 0.09 7.23 0.04 4.66 +bleuâtres bleuâtre ADJ p 0.09 7.23 0.04 2.57 +bleus bleu ADJ m p 70.61 207.64 12.97 32.84 +bleusaille bleusaille NOM f s 0.38 0.20 0.37 0.20 +bleusailles bleusaille NOM f p 0.38 0.20 0.01 0.00 +bleuté bleuté ADJ m s 0.46 7.09 0.07 2.23 +bleutée bleuté ADJ f s 0.46 7.09 0.25 2.09 +bleutées bleuté ADJ f p 0.46 7.09 0.00 1.28 +bleutés bleuté ADJ m p 0.46 7.09 0.14 1.49 +bliaut bliaut NOM m s 0.00 0.27 0.00 0.27 +blindage blindage NOM m s 0.59 1.01 0.43 0.74 +blindages blindage NOM m p 0.59 1.01 0.16 0.27 +blindant blinder VER 2.37 3.58 0.00 0.07 par:pre; +blinde blinde NOM f s 0.12 0.47 0.10 0.41 +blindent blinder VER 2.37 3.58 0.00 0.07 ind:pre:3p; +blinder blinder VER 2.37 3.58 0.10 0.34 inf; +blindera blinder VER 2.37 3.58 0.00 0.07 ind:fut:3s; +blindes blinde NOM f p 0.12 0.47 0.02 0.07 +blindez blinder VER 2.37 3.58 0.01 0.00 imp:pre:2p; +blindé blindé ADJ m s 3.95 9.05 1.44 1.35 +blindée blindé ADJ f s 3.95 9.05 1.17 4.46 +blindées blindé ADJ f p 3.95 9.05 0.97 1.96 +blindés blindé NOM m p 1.37 3.31 1.11 2.91 +blini blini NOM m s 0.93 0.14 0.02 0.00 +blinis blini NOM m p 0.93 0.14 0.91 0.14 +blitzkrieg blitzkrieg NOM m s 0.09 0.00 0.09 0.00 +blizzard blizzard NOM m s 1.12 0.47 0.76 0.47 +blizzards blizzard NOM m p 1.12 0.47 0.36 0.00 +blob blob NOM m s 0.19 0.00 0.19 0.00 +bloc_cylindres bloc_cylindres NOM m 0.01 0.00 0.01 0.00 +bloc_moteur bloc_moteur NOM m s 0.01 0.00 0.01 0.00 +bloc_notes bloc_notes NOM m 0.47 0.61 0.47 0.61 +bloc bloc NOM m s 17.28 38.78 14.25 28.31 +blocage blocage NOM m s 1.73 1.82 1.57 1.49 +blocages blocage NOM m p 1.73 1.82 0.16 0.34 +blocaille blocaille NOM f s 0.02 0.07 0.02 0.07 +block block NOM m s 1.06 0.27 0.70 0.00 +blockhaus blockhaus NOM m 1.77 6.15 1.77 6.15 +blocks block NOM m p 1.06 0.27 0.36 0.27 +blocs_notes blocs_notes NOM m p 0.07 0.07 0.07 0.07 +blocs bloc NOM m p 17.28 38.78 3.03 10.47 +blocus blocus NOM m 1.43 2.36 1.43 2.36 +blâma blâmer VER 9.38 6.42 0.01 0.14 ind:pas:3s; +blâmable blâmable ADJ f s 0.04 0.41 0.04 0.41 +blâmaient blâmer VER 9.38 6.42 0.00 0.41 ind:imp:3p; +blâmais blâmer VER 9.38 6.42 0.02 0.20 ind:imp:1s; +blâmait blâmer VER 9.38 6.42 0.03 0.74 ind:imp:3s; +blâmant blâmer VER 9.38 6.42 0.02 0.14 par:pre; +blâme blâmer VER 9.38 6.42 2.91 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +blâment blâmer VER 9.38 6.42 0.20 0.07 ind:pre:3p; +blâmer blâmer VER 9.38 6.42 4.37 2.03 inf;;inf;;inf;; +blâmera blâmer VER 9.38 6.42 0.27 0.00 ind:fut:3s; +blâmerais blâmer VER 9.38 6.42 0.07 0.00 cnd:pre:1s; +blâmerait blâmer VER 9.38 6.42 0.09 0.07 cnd:pre:3s; +blâmeras blâmer VER 9.38 6.42 0.02 0.00 ind:fut:2s; +blâmerions blâmer VER 9.38 6.42 0.01 0.00 cnd:pre:1p; +blâmeront blâmer VER 9.38 6.42 0.03 0.07 ind:fut:3p; +blâmes blâme NOM m p 2.04 4.73 0.19 0.68 +blâmez blâmer VER 9.38 6.42 0.42 0.07 imp:pre:2p;ind:pre:2p; +blâmons blâmer VER 9.38 6.42 0.41 0.00 imp:pre:1p;ind:pre:1p; +blâmé blâmer VER m s 9.38 6.42 0.21 0.54 par:pas; +blâmée blâmer VER f s 9.38 6.42 0.05 0.20 par:pas; +blâmées blâmer VER f p 9.38 6.42 0.03 0.07 par:pas; +blâmés blâmer VER m p 9.38 6.42 0.03 0.07 par:pas; +blond blond ADJ m s 21.45 76.76 8.73 21.28 +blondasse blondasse ADJ s 0.82 0.88 0.77 0.74 +blondasses blondasse ADJ m p 0.82 0.88 0.05 0.14 +blonde blond NOM f s 22.65 33.45 14.06 21.28 +blondes blond NOM f p 22.65 33.45 4.54 2.77 +blondeur blondeur NOM f s 0.20 2.64 0.20 2.57 +blondeurs blondeur NOM f p 0.20 2.64 0.01 0.07 +blondi blondir VER m s 0.82 1.15 0.36 0.14 par:pas; +blondie blondir VER f s 0.82 1.15 0.46 0.47 par:pas; +blondin blondin ADJ m s 0.03 0.14 0.02 0.07 +blondine blondin ADJ f s 0.03 0.14 0.00 0.07 +blondines blondin ADJ f p 0.03 0.14 0.01 0.00 +blondinet blondinet NOM m s 0.45 0.95 0.44 0.95 +blondinets blondinet NOM m p 0.45 0.95 0.01 0.00 +blondinette blondinet ADJ f s 0.63 0.68 0.40 0.20 +blondir blondir VER 0.82 1.15 0.00 0.14 inf; +blondis blondir VER m p 0.82 1.15 0.00 0.07 par:pas; +blondissait blondir VER 0.82 1.15 0.00 0.20 ind:imp:3s; +blondit blondir VER 0.82 1.15 0.00 0.14 ind:pre:3s; +blonds blond ADJ m p 21.45 76.76 3.45 18.38 +bloody_mary bloody_mary NOM m s 1.32 0.20 1.32 0.20 +bloom bloom NOM m s 0.01 0.00 0.01 0.00 +bloomer bloomer NOM m s 0.01 0.00 0.01 0.00 +bloqua bloquer VER 38.62 23.11 0.02 1.28 ind:pas:3s; +bloquai bloquer VER 38.62 23.11 0.00 0.07 ind:pas:1s; +bloquaient bloquer VER 38.62 23.11 0.43 0.54 ind:imp:3p; +bloquais bloquer VER 38.62 23.11 0.17 0.20 ind:imp:1s;ind:imp:2s; +bloquait bloquer VER 38.62 23.11 0.43 2.03 ind:imp:3s; +bloquant bloquer VER 38.62 23.11 0.39 1.28 par:pre; +bloque bloquer VER 38.62 23.11 5.92 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +bloquent bloquer VER 38.62 23.11 1.10 0.54 ind:pre:3p; +bloquer bloquer VER 38.62 23.11 4.38 3.18 inf; +bloquera bloquer VER 38.62 23.11 0.33 0.07 ind:fut:3s; +bloquerai bloquer VER 38.62 23.11 0.08 0.00 ind:fut:1s; +bloquerais bloquer VER 38.62 23.11 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +bloquerait bloquer VER 38.62 23.11 0.07 0.07 cnd:pre:3s; +bloqueront bloquer VER 38.62 23.11 0.23 0.00 ind:fut:3p; +bloques bloquer VER 38.62 23.11 0.73 0.14 ind:pre:2s;sub:pre:2s; +bloqueur bloqueur NOM m s 0.24 0.00 0.19 0.00 +bloqueurs bloqueur NOM m p 0.24 0.00 0.05 0.00 +bloquez bloquer VER 38.62 23.11 4.45 0.00 imp:pre:2p;ind:pre:2p; +bloquiez bloquer VER 38.62 23.11 0.06 0.00 ind:imp:2p; +bloquons bloquer VER 38.62 23.11 0.12 0.14 imp:pre:1p;ind:pre:1p; +bloquât bloquer VER 38.62 23.11 0.00 0.07 sub:imp:3s; +bloquèrent bloquer VER 38.62 23.11 0.01 0.14 ind:pas:3p; +bloqué bloquer VER m s 38.62 23.11 11.55 4.86 par:pas; +bloquée bloquer VER f s 38.62 23.11 4.59 2.30 par:pas; +bloquées bloquer VER f p 38.62 23.11 1.13 1.08 par:pas; +bloqués bloquer VER m p 38.62 23.11 2.41 2.09 par:pas; +blot blot NOM m s 0.71 1.76 0.71 1.49 +blots blot NOM m p 0.71 1.76 0.00 0.27 +blotti blottir VER m s 1.70 12.84 0.22 2.30 par:pas; +blottie blottir VER f s 1.70 12.84 0.27 2.64 par:pas; +blotties blottir VER f p 1.70 12.84 0.00 0.34 par:pas; +blottir blottir VER 1.70 12.84 0.33 2.64 inf; +blottirai blottir VER 1.70 12.84 0.01 0.00 ind:fut:1s; +blottirait blottir VER 1.70 12.84 0.00 0.07 cnd:pre:3s; +blottirent blottir VER 1.70 12.84 0.00 0.07 ind:pas:3p; +blottis blottir VER m p 1.70 12.84 0.42 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +blottissaient blottir VER 1.70 12.84 0.00 0.41 ind:imp:3p; +blottissais blottir VER 1.70 12.84 0.01 0.14 ind:imp:1s; +blottissait blottir VER 1.70 12.84 0.15 0.47 ind:imp:3s; +blottissant blottir VER 1.70 12.84 0.01 0.20 par:pre; +blottisse blottir VER 1.70 12.84 0.01 0.07 sub:pre:3s; +blottissement blottissement NOM m 0.00 0.07 0.00 0.07 +blottissent blottir VER 1.70 12.84 0.11 0.14 ind:pre:3p; +blottissions blottir VER 1.70 12.84 0.00 0.07 ind:imp:1p; +blottit blottir VER 1.70 12.84 0.16 2.09 ind:pre:3s;ind:pas:3s; +bloum bloum NOM m s 0.00 0.07 0.00 0.07 +blousantes blousant ADJ f p 0.00 0.07 0.00 0.07 +blouse blouse NOM f s 5.68 32.64 5.29 28.51 +blousent blouser VER 0.53 0.54 0.02 0.00 ind:pre:3p; +blouser blouser VER 0.53 0.54 0.33 0.14 inf; +blouses blouse NOM f p 5.68 32.64 0.39 4.12 +blouson blouson NOM m s 7.15 25.20 6.62 22.57 +blousons blouson NOM m p 7.15 25.20 0.53 2.64 +blousé blouser VER m s 0.53 0.54 0.13 0.14 par:pas; +blousée blouser VER f s 0.53 0.54 0.00 0.14 par:pas; +blousés blouser VER m p 0.53 0.54 0.02 0.14 par:pas; +blèche blèche ADJ s 0.00 0.34 0.00 0.20 +blèches blèche ADJ p 0.00 0.34 0.00 0.14 +blèsement blèsement NOM m s 0.00 0.07 0.00 0.07 +blé blé NOM m s 19.98 28.65 19.07 23.24 +blédard blédard NOM m s 0.00 0.14 0.00 0.07 +blédards blédard NOM m p 0.00 0.14 0.00 0.07 +blue_jean blue_jean NOM m s 0.17 2.03 0.05 1.08 +blue_jean blue_jean NOM m p 0.17 2.03 0.10 0.95 +blue_jean blue_jean NOM m p 0.17 2.03 0.01 0.00 +blue_note blue_note NOM f s 0.02 0.00 0.02 0.00 +blues blues NOM m 7.81 5.68 7.81 5.68 +bluets bluet NOM m p 0.00 0.07 0.00 0.07 +bluette bluette NOM f s 0.01 0.61 0.00 0.34 +bluettes bluette NOM f p 0.01 0.61 0.01 0.27 +bluff bluff NOM m s 3.02 1.62 3.00 1.55 +bluffa bluffer VER 6.30 2.36 0.00 0.07 ind:pas:3s; +bluffaient bluffer VER 6.30 2.36 0.03 0.07 ind:imp:3p; +bluffais bluffer VER 6.30 2.36 0.31 0.00 ind:imp:1s;ind:imp:2s; +bluffait bluffer VER 6.30 2.36 0.19 0.27 ind:imp:3s; +bluffant bluffer VER 6.30 2.36 0.05 0.00 par:pre; +bluffe bluffer VER 6.30 2.36 2.03 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bluffent bluffer VER 6.30 2.36 0.12 0.14 ind:pre:3p; +bluffer bluffer VER 6.30 2.36 1.47 0.61 inf; +blufferais bluffer VER 6.30 2.36 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +blufferez bluffer VER 6.30 2.36 0.02 0.00 ind:fut:2p; +bluffes bluffer VER 6.30 2.36 0.60 0.14 ind:pre:2s; +bluffeur bluffeur NOM m s 0.30 0.27 0.28 0.14 +bluffeurs bluffeur NOM m p 0.30 0.27 0.02 0.07 +bluffeuses bluffeur NOM f p 0.30 0.27 0.00 0.07 +bluffez bluffer VER 6.30 2.36 0.56 0.00 imp:pre:2p;ind:pre:2p; +bluffiez bluffer VER 6.30 2.36 0.03 0.00 ind:imp:2p; +bluffons bluffer VER 6.30 2.36 0.10 0.00 imp:pre:1p;ind:pre:1p; +bluffs bluff NOM m p 3.02 1.62 0.02 0.07 +bluffé bluffer VER m s 6.30 2.36 0.42 0.14 par:pas; +bluffée bluffer VER f s 6.30 2.36 0.14 0.07 par:pas; +bluffées bluffer VER f p 6.30 2.36 0.00 0.07 par:pas; +bluffés bluffer VER m p 6.30 2.36 0.23 0.07 par:pas; +blême blême ADJ s 1.48 14.73 1.16 11.62 +blêmes blême ADJ p 1.48 14.73 0.31 3.11 +blêmi blêmir VER m s 0.42 2.70 0.01 0.47 par:pas; +blêmies blêmir VER f p 0.42 2.70 0.00 0.07 par:pas; +blêmir blêmir VER 0.42 2.70 0.14 0.54 inf; +blêmis blêmir VER 0.42 2.70 0.00 0.14 ind:pre:1s;ind:pas:1s; +blêmissais blêmir VER 0.42 2.70 0.00 0.07 ind:imp:1s; +blêmissait blêmir VER 0.42 2.70 0.00 0.20 ind:imp:3s; +blêmissant blêmir VER 0.42 2.70 0.00 0.07 par:pre; +blêmissante blêmissant ADJ f s 0.00 0.07 0.00 0.07 +blêmit blêmir VER 0.42 2.70 0.28 1.15 ind:pre:3s;ind:pas:3s; +blépharite blépharite NOM f s 0.00 0.14 0.00 0.14 +blés blé NOM m p 19.98 28.65 0.91 5.41 +blush blush NOM m s 0.20 0.14 0.20 0.14 +bluter bluter VER 0.00 0.07 0.00 0.07 inf; +blutoir blutoir NOM m s 0.00 0.07 0.00 0.07 +boîte boîte NOM f s 88.81 134.05 74.58 94.32 +boîtes_repas boîtes_repas NOM f p 0.00 0.07 0.00 0.07 +boîtes boîte NOM f p 88.81 134.05 14.23 39.73 +boîtier boîtier NOM m s 1.04 0.88 0.72 0.81 +boîtiers boîtier NOM m p 1.04 0.88 0.32 0.07 +boa boa NOM m s 1.62 2.30 1.56 1.96 +boas boa NOM m p 1.62 2.30 0.06 0.34 +boat_people boat_people NOM m 0.02 0.07 0.02 0.07 +bob bob NOM m s 0.71 0.88 0.69 0.27 +bobard bobard NOM m s 3.13 1.96 1.00 0.41 +bobards bobard NOM m p 3.13 1.96 2.13 1.55 +bobbies bobbies NOM m p 0.00 0.20 0.00 0.20 +bobby bobby NOM m s 0.32 0.00 0.32 0.00 +bobinage bobinage NOM m s 0.02 0.14 0.02 0.14 +bobinait bobiner VER 0.01 0.14 0.00 0.07 ind:imp:3s; +bobinard bobinard NOM m s 0.00 0.41 0.00 0.34 +bobinards bobinard NOM m p 0.00 0.41 0.00 0.07 +bobine bobine NOM f s 3.63 5.88 1.69 2.91 +bobineau bobineau NOM m s 0.03 0.07 0.03 0.07 +bobines bobine NOM f p 3.63 5.88 1.94 2.97 +bobinette bobinette NOM f s 0.14 0.20 0.11 0.20 +bobinettes bobinette NOM f p 0.14 0.20 0.03 0.00 +bobineuse bobineur NOM f s 0.00 0.20 0.00 0.14 +bobineuses bobineur NOM f p 0.00 0.20 0.00 0.07 +bobino bobino NOM m s 0.00 0.41 0.00 0.41 +bobo bobo NOM m s 2.42 2.23 1.89 1.55 +bobonne bobonne NOM f s 0.79 1.15 0.79 1.08 +bobonnes bobonne NOM f p 0.79 1.15 0.00 0.07 +bâbord bâbord NOM m s 1.97 0.95 1.97 0.95 +bobos bobo NOM m p 2.42 2.23 0.53 0.68 +bobosse bobosse NOM s 0.00 0.61 0.00 0.61 +bobs bob NOM m p 0.71 0.88 0.02 0.61 +bobsleigh bobsleigh NOM m s 0.91 0.20 0.91 0.20 +bobèche bobèche NOM f s 0.00 0.14 0.00 0.07 +bobèches bobèche NOM f p 0.00 0.14 0.00 0.07 +boc boc NOM m s 0.00 0.07 0.00 0.07 +bocage bocage NOM m s 0.14 2.84 0.14 2.50 +bocages bocage NOM m p 0.14 2.84 0.00 0.34 +bocagères bocager ADJ f p 0.00 0.07 0.00 0.07 +bocal bocal NOM m s 3.83 7.50 2.73 4.66 +bocard bocard NOM m s 0.00 0.07 0.00 0.07 +bocaux bocal NOM m p 3.83 7.50 1.10 2.84 +bâche bâche NOM f s 2.40 13.38 2.30 10.07 +boche boche NOM s 8.63 25.14 2.24 3.38 +bâcher bâcher VER 0.04 0.47 0.01 0.00 inf; +bâches bâche NOM f p 2.40 13.38 0.10 3.31 +boches boche NOM p 8.63 25.14 6.38 21.76 +bochiman bochiman NOM m s 0.01 0.00 0.01 0.00 +bâché bâché ADJ m s 0.02 0.81 0.01 0.34 +bâchée bâcher VER f s 0.04 0.47 0.00 0.14 par:pas; +bâchées bâché ADJ f p 0.02 0.81 0.00 0.14 +bâchés bâché ADJ m p 0.02 0.81 0.01 0.27 +bock bock NOM m s 0.11 1.35 0.10 0.88 +bocks bock NOM m p 0.11 1.35 0.01 0.47 +bâcla bâcler VER 1.39 3.99 0.00 0.14 ind:pas:3s; +bâclai bâcler VER 1.39 3.99 0.00 0.07 ind:pas:1s; +bâclaient bâcler VER 1.39 3.99 0.00 0.07 ind:imp:3p; +bâclais bâcler VER 1.39 3.99 0.01 0.07 ind:imp:1s; +bâclait bâcler VER 1.39 3.99 0.01 0.20 ind:imp:3s; +bâclant bâcler VER 1.39 3.99 0.01 0.27 par:pre; +bâcle bâcler VER 1.39 3.99 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâcler bâcler VER 1.39 3.99 0.12 0.68 inf; +bâclera bâcler VER 1.39 3.99 0.00 0.07 ind:fut:3s; +bâclerait bâcler VER 1.39 3.99 0.00 0.07 cnd:pre:3s; +bâcles bâcler VER 1.39 3.99 0.02 0.07 ind:pre:2s; +bâcleurs bâcleur NOM m p 0.00 0.07 0.00 0.07 +bâclez bâcler VER 1.39 3.99 0.01 0.07 ind:pre:2p; +bâclons bâcler VER 1.39 3.99 0.00 0.07 ind:pre:1p; +bâclé bâcler VER m s 1.39 3.99 0.82 1.01 par:pas; +bâclée bâcler VER f s 1.39 3.99 0.20 0.41 par:pas; +bâclées bâcler VER f p 1.39 3.99 0.01 0.07 par:pas; +bâclés bâcler VER m p 1.39 3.99 0.01 0.27 par:pas; +bocson bocson NOM m s 0.00 0.27 0.00 0.27 +bodega bodega NOM f s 0.65 0.14 0.63 0.14 +bodegas bodega NOM f p 0.65 0.14 0.03 0.00 +bodhi bodhi NOM f s 2.21 0.00 2.21 0.00 +bodhisattva bodhisattva NOM m s 0.38 0.00 0.38 0.00 +bodo bodo NOM m s 1.00 0.07 1.00 0.07 +body_building body_building NOM m s 0.01 0.00 0.01 0.00 +body body NOM m s 1.24 0.07 1.24 0.07 +bodybuilding bodybuilding NOM m s 0.01 0.00 0.01 0.00 +boer boer NOM m s 0.01 0.41 0.01 0.14 +boers boer NOM m p 0.01 0.41 0.00 0.27 +boeuf boeuf NOM m s 10.39 21.01 8.58 14.32 +boeufs boeuf NOM m p 10.39 21.01 1.81 6.69 +bof bof ONO 4.70 2.84 4.70 2.84 +bâfra bâfrer VER 0.72 1.96 0.00 0.14 ind:pas:3s; +bâfraient bâfrer VER 0.72 1.96 0.00 0.07 ind:imp:3p; +bâfrais bâfrer VER 0.72 1.96 0.00 0.07 ind:imp:1s; +bâfrait bâfrer VER 0.72 1.96 0.01 0.20 ind:imp:3s; +bâfrant bâfrer VER 0.72 1.96 0.00 0.20 par:pre; +bâfre bâfrer VER 0.72 1.96 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâfrements bâfrement NOM m p 0.00 0.07 0.00 0.07 +bâfrer bâfrer VER 0.72 1.96 0.26 0.54 inf; +bâfres bâfrer VER 0.72 1.96 0.17 0.00 ind:pre:2s; +bâfreur bâfreur NOM m s 0.07 0.07 0.05 0.07 +bâfreurs bâfreur NOM m p 0.07 0.07 0.02 0.00 +bâfrez bâfrer VER 0.72 1.96 0.01 0.07 imp:pre:2p;ind:pre:2p; +bâfrèrent bâfrer VER 0.72 1.96 0.00 0.07 ind:pas:3p; +bâfré bâfrer VER m s 0.72 1.96 0.11 0.34 par:pas; +boggie boggie NOM m s 0.02 0.41 0.02 0.00 +boggies boggie NOM m p 0.02 0.41 0.00 0.41 +boghei boghei NOM m s 0.02 2.64 0.02 2.64 +bogie bogie NOM m s 0.14 0.00 0.14 0.00 +bogomiles bogomile NOM m p 0.00 0.07 0.00 0.07 +bogue boguer VER 0.16 0.00 0.14 0.00 ind:pre:3s; +boguer boguer VER 0.16 0.00 0.01 0.00 inf; +bogues bogue NOM p 0.17 0.47 0.05 0.07 +boguet boguet NOM m s 0.00 0.07 0.00 0.07 +bohème bohème NOM s 2.17 2.84 2.01 2.23 +bohèmes bohème NOM p 2.17 2.84 0.16 0.61 +bohême bohême NOM s 0.00 0.54 0.00 0.54 +bohémien bohémien NOM m s 3.94 1.49 0.34 0.27 +bohémienne bohémien NOM f s 3.94 1.49 2.80 0.41 +bohémiennes bohémienne NOM f p 0.14 0.00 0.14 0.00 +bohémiens bohémien NOM m p 3.94 1.49 0.79 0.68 +bâilla bâiller VER 1.87 18.51 0.01 3.85 ind:pas:3s; +bâillai bâiller VER 1.87 18.51 0.00 0.07 ind:pas:1s; +bâillaient bâiller VER 1.87 18.51 0.00 0.74 ind:imp:3p; +bâillais bâiller VER 1.87 18.51 0.01 0.34 ind:imp:1s; +bâillait bâiller VER 1.87 18.51 0.05 2.70 ind:imp:3s; +bâillant bâiller VER 1.87 18.51 0.10 3.58 par:pre; +bâillante bâillant ADJ f s 0.00 0.81 0.00 0.34 +bâillantes bâillant ADJ f p 0.00 0.81 0.00 0.20 +bâille bâiller VER 1.87 18.51 0.62 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâillement bâillement NOM m s 0.53 4.19 0.50 3.11 +bâillements bâillement NOM m p 0.53 4.19 0.03 1.08 +bâillent bâiller VER 1.87 18.51 0.29 0.74 ind:pre:3p; +bâiller bâiller VER 1.87 18.51 0.36 2.77 inf; +bâillera bâiller VER 1.87 18.51 0.01 0.07 ind:fut:3s; +bâillerez bâiller VER 1.87 18.51 0.14 0.00 ind:fut:2p; +bâilles bâiller VER 1.87 18.51 0.12 0.07 ind:pre:2s; +bâillez bâiller VER 1.87 18.51 0.14 0.07 imp:pre:2p;ind:pre:2p; +bâillâmes bâiller VER 1.87 18.51 0.00 0.07 ind:pas:1p; +bâillon bâillon NOM m s 0.64 1.96 0.63 1.89 +bâillonna bâillonner VER 2.61 2.70 0.00 0.20 ind:pas:3s; +bâillonnait bâillonner VER 2.61 2.70 0.01 0.54 ind:imp:3s; +bâillonnant bâillonner VER 2.61 2.70 0.00 0.14 par:pre; +bâillonne bâillonner VER 2.61 2.70 0.60 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bâillonnent bâillonner VER 2.61 2.70 0.00 0.07 ind:pre:3p; +bâillonner bâillonner VER 2.61 2.70 0.36 0.47 inf; +bâillonnera bâillonner VER 2.61 2.70 0.01 0.00 ind:fut:3s; +bâillonnerait bâillonner VER 2.61 2.70 0.02 0.00 cnd:pre:3s; +bâillonnez bâillonner VER 2.61 2.70 0.20 0.00 imp:pre:2p;ind:pre:2p; +bâillonnons bâillonner VER 2.61 2.70 0.01 0.00 imp:pre:1p; +bâillonné bâillonner VER m s 2.61 2.70 0.40 0.88 par:pas; +bâillonnée bâillonner VER f s 2.61 2.70 0.83 0.14 par:pas; +bâillonnés bâillonner VER m p 2.61 2.70 0.16 0.07 par:pas; +bâillons bâillon NOM m p 0.64 1.96 0.01 0.07 +bâillèrent bâiller VER 1.87 18.51 0.00 0.07 ind:pas:3p; +bâillé bâiller VER m s 1.87 18.51 0.02 0.74 par:pas; +boira boire VER 339.06 274.32 2.97 1.55 ind:fut:3s; +boirai boire VER 339.06 274.32 3.13 1.55 ind:fut:1s; +boiraient boire VER 339.06 274.32 0.01 0.34 cnd:pre:3p; +boirais boire VER 339.06 274.32 2.37 1.22 cnd:pre:1s;cnd:pre:2s; +boirait boire VER 339.06 274.32 0.46 1.55 cnd:pre:3s; +boiras boire VER 339.06 274.32 1.14 0.74 ind:fut:2s; +boire boire VER 339.06 274.32 142.15 100.27 inf;; +boirez boire VER 339.06 274.32 0.84 0.54 ind:fut:2p; +boiriez boire VER 339.06 274.32 0.12 0.14 cnd:pre:2p; +boirions boire VER 339.06 274.32 0.03 0.27 cnd:pre:1p; +boirons boire VER 339.06 274.32 0.91 0.95 ind:fut:1p; +boiront boire VER 339.06 274.32 0.11 0.34 ind:fut:3p; +bois bois NOM m 115.56 299.46 115.56 299.46 +boisaient boiser VER 0.06 1.42 0.00 0.07 ind:imp:3p; +boisait boiser VER 0.06 1.42 0.00 0.07 ind:imp:3s; +boisant boiser VER 0.06 1.42 0.00 0.07 par:pre; +boise boiser VER 0.06 1.42 0.01 0.07 ind:pre:3s; +boiserie boiserie NOM f s 0.26 5.00 0.11 0.88 +boiseries boiserie NOM f p 0.26 5.00 0.15 4.12 +boiseur boiseur NOM m s 0.00 0.07 0.00 0.07 +boisseau boisseau NOM m s 0.42 0.61 0.26 0.54 +boisseaux boisseau NOM m p 0.42 0.61 0.16 0.07 +boisselier boisselier NOM m s 0.27 0.00 0.27 0.00 +boisson boisson NOM f s 18.55 13.24 11.73 7.36 +boissonnée boissonner VER f s 0.00 0.07 0.00 0.07 par:pas; +boissons boisson NOM f p 18.55 13.24 6.82 5.88 +boisé boisé ADJ m s 0.46 3.04 0.15 0.61 +boisée boisé ADJ f s 0.46 3.04 0.17 1.28 +boisées boisé ADJ f p 0.46 3.04 0.12 0.95 +boisés boisé ADJ m p 0.46 3.04 0.02 0.20 +boit boire VER 339.06 274.32 25.63 21.08 ind:pre:3s; +boitaient boiter VER 15.43 7.77 0.01 0.41 ind:imp:3p; +boitais boiter VER 15.43 7.77 0.18 0.07 ind:imp:1s;ind:imp:2s; +boitait boiter VER 15.43 7.77 0.64 1.96 ind:imp:3s; +boitant boiter VER 15.43 7.77 0.24 1.69 par:pre; +boite boiter VER 15.43 7.77 11.83 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boitement boitement NOM m s 0.05 0.00 0.05 0.00 +boitent boiter VER 15.43 7.77 0.04 0.07 ind:pre:3p; +boiter boiter VER 15.43 7.77 0.36 0.81 inf; +boitera boiter VER 15.43 7.77 0.05 0.00 ind:fut:3s; +boiterai boiter VER 15.43 7.77 0.02 0.07 ind:fut:1s; +boiteraient boiter VER 15.43 7.77 0.00 0.07 cnd:pre:3p; +boiterait boiter VER 15.43 7.77 0.00 0.07 cnd:pre:3s; +boiteras boiter VER 15.43 7.77 0.16 0.00 ind:fut:2s; +boiterie boiterie NOM f s 0.00 0.54 0.00 0.54 +boites boiter VER 15.43 7.77 1.63 0.27 ind:pre:2s; +boiteuse boiteux ADJ f s 2.83 4.39 0.78 1.96 +boiteuses boiteux ADJ f p 2.83 4.39 0.03 0.20 +boiteux boiteux NOM m 2.32 2.03 2.32 2.03 +boitez boiter VER 15.43 7.77 0.10 0.14 ind:pre:2p; +boitiez boiter VER 15.43 7.77 0.04 0.00 ind:imp:2p; +boitillait boitiller VER 0.04 1.82 0.02 0.41 ind:imp:3s; +boitillant boitiller VER 0.04 1.82 0.00 1.01 par:pre; +boitille boitiller VER 0.04 1.82 0.01 0.27 ind:pre:1s;ind:pre:3s; +boitillement boitillement NOM m s 0.03 0.14 0.03 0.07 +boitillements boitillement NOM m p 0.03 0.14 0.00 0.07 +boitiller boitiller VER 0.04 1.82 0.01 0.14 inf; +boité boiter VER m s 15.43 7.77 0.13 0.27 par:pas; +boive boire VER 339.06 274.32 2.86 1.96 sub:pre:1s;sub:pre:3s; +boivent boire VER 339.06 274.32 5.47 5.95 ind:pre:3p; +boives boire VER 339.06 274.32 0.71 0.20 sub:pre:2s; +bol bol NOM m s 17.62 25.14 16.93 20.07 +bola bola NOM f s 0.25 0.47 0.11 0.27 +bolas bola NOM f p 0.25 0.47 0.14 0.20 +bolchevik bolchevik NOM s 2.11 1.42 0.36 0.27 +bolcheviks bolchevik NOM p 2.11 1.42 1.75 1.15 +bolchevique bolchevique ADJ s 1.24 1.49 0.87 0.74 +bolcheviques bolchevique ADJ p 1.24 1.49 0.37 0.74 +bolchevisme bolchevisme NOM m s 0.11 1.08 0.11 1.08 +bolcheviste bolcheviste ADJ s 0.00 0.14 0.00 0.07 +bolchevistes bolcheviste ADJ p 0.00 0.14 0.00 0.07 +bolcho bolcho NOM s 0.04 0.00 0.04 0.00 +bold bold ADJ m s 0.04 0.00 0.04 0.00 +boldo boldo NOM m s 0.00 0.20 0.00 0.20 +bolduc bolduc NOM m s 0.00 0.34 0.00 0.34 +bolet bolet NOM m s 0.00 0.81 0.00 0.41 +bolets bolet NOM m p 0.00 0.81 0.00 0.41 +bolge bolge NOM f s 0.00 0.07 0.00 0.07 +bolide bolide NOM m s 0.49 2.70 0.38 1.82 +bolides bolide NOM m p 0.49 2.70 0.11 0.88 +bolivar bolivar NOM m s 0.09 0.47 0.09 0.47 +bolivien bolivien ADJ m s 0.22 0.07 0.01 0.00 +bolivienne bolivien NOM f s 0.39 0.00 0.27 0.00 +boliviens bolivien NOM m p 0.39 0.00 0.11 0.00 +bolognais bolognais ADJ m p 0.25 0.34 0.00 0.07 +bolognaise bolognais ADJ f s 0.25 0.34 0.23 0.20 +bolognaises bolognais ADJ f p 0.25 0.34 0.02 0.07 +bolonaise bolonais ADJ f s 0.01 0.00 0.01 0.00 +bols bol NOM m p 17.62 25.14 0.69 5.07 +bolée bolée NOM f s 0.01 0.27 0.01 0.20 +bolées bolée NOM f p 0.01 0.27 0.00 0.07 +boléro boléro NOM m s 0.56 1.22 0.56 1.08 +boléros boléro NOM m p 0.56 1.22 0.00 0.14 +bomba bomber VER 1.34 5.74 0.27 0.41 ind:pas:3s; +bombage bombage NOM m s 0.00 0.20 0.00 0.20 +bombaient bomber VER 1.34 5.74 0.00 0.20 ind:imp:3p; +bombais bomber VER 1.34 5.74 0.00 0.07 ind:imp:1s; +bombait bomber VER 1.34 5.74 0.01 0.81 ind:imp:3s; +bombance bombance NOM f s 0.23 0.54 0.23 0.47 +bombances bombance NOM f p 0.23 0.54 0.00 0.07 +bombant bomber VER 1.34 5.74 0.04 0.88 par:pre; +bombarda bombarder VER 10.86 8.65 0.01 0.54 ind:pas:3s; +bombardaient bombarder VER 10.86 8.65 0.24 0.47 ind:imp:3p; +bombardais bombarder VER 10.86 8.65 0.01 0.14 ind:imp:1s;ind:imp:2s; +bombardait bombarder VER 10.86 8.65 0.19 0.88 ind:imp:3s; +bombardant bombarder VER 10.86 8.65 0.18 0.41 par:pre; +bombarde bombarder VER 10.86 8.65 0.96 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bombardement bombardement NOM m s 6.45 17.16 3.96 11.22 +bombardements bombardement NOM m p 6.45 17.16 2.48 5.95 +bombardent bombarder VER 10.86 8.65 1.68 0.81 ind:pre:3p; +bombarder bombarder VER 10.86 8.65 2.42 2.09 inf; +bombardera bombarder VER 10.86 8.65 0.15 0.00 ind:fut:3s; +bombarderai bombarder VER 10.86 8.65 0.15 0.00 ind:fut:1s; +bombarderaient bombarder VER 10.86 8.65 0.01 0.07 cnd:pre:3p; +bombarderais bombarder VER 10.86 8.65 0.02 0.00 cnd:pre:1s; +bombarderait bombarder VER 10.86 8.65 0.02 0.07 cnd:pre:3s; +bombarderons bombarder VER 10.86 8.65 0.02 0.00 ind:fut:1p; +bombarderont bombarder VER 10.86 8.65 0.23 0.00 ind:fut:3p; +bombardes bombarde NOM f p 0.19 0.95 0.14 0.54 +bombardez bombarder VER 10.86 8.65 0.10 0.00 imp:pre:2p;ind:pre:2p; +bombardier bombardier NOM m s 3.02 3.31 0.89 0.68 +bombardiers bombardier NOM m p 3.02 3.31 2.13 2.64 +bombardions bombarder VER 10.86 8.65 0.01 0.00 ind:imp:1p; +bombardâmes bombarder VER 10.86 8.65 0.00 0.07 ind:pas:1p; +bombardon bombardon NOM m s 0.27 0.00 0.14 0.00 +bombardons bombarder VER 10.86 8.65 0.14 0.07 imp:pre:1p;ind:pre:1p; +bombardèrent bombarder VER 10.86 8.65 0.00 0.07 ind:pas:3p; +bombardé bombarder VER m s 10.86 8.65 2.33 1.42 par:pas; +bombardée bombarder VER f s 10.86 8.65 0.83 0.27 par:pas; +bombardées bombarder VER f p 10.86 8.65 0.25 0.20 par:pas; +bombardés bombarder VER m p 10.86 8.65 0.89 0.68 par:pas; +bombas bomber VER 1.34 5.74 0.00 0.07 ind:pas:2s; +bombasses bomber VER 1.34 5.74 0.01 0.00 sub:imp:2s; +bombe bombe NOM f s 64.39 30.81 48.70 15.00 +bombements bombement NOM m p 0.00 0.07 0.00 0.07 +bombent bomber VER 1.34 5.74 0.00 0.14 ind:pre:3p; +bomber bomber VER 1.34 5.74 0.34 0.61 inf; +bombes_test bombes_test NOM f p 0.01 0.00 0.01 0.00 +bombes bombe NOM f p 64.39 30.81 15.70 15.81 +bombeur bombeur NOM m s 0.03 0.00 0.03 0.00 +bombez bomber VER 1.34 5.74 0.08 0.00 imp:pre:2p; +bombillement bombillement NOM m s 0.00 0.07 0.00 0.07 +bombinette bombinette NOM f s 0.00 0.20 0.00 0.07 +bombinettes bombinette NOM f p 0.00 0.20 0.00 0.14 +bombonne bombonne NOM f s 0.23 0.47 0.16 0.34 +bombonnes bombonne NOM f p 0.23 0.47 0.08 0.14 +bombèrent bomber VER 1.34 5.74 0.00 0.07 ind:pas:3p; +bombé bombé ADJ m s 0.30 5.61 0.16 2.43 +bombée bombé ADJ f s 0.30 5.61 0.03 1.49 +bombées bombé ADJ f p 0.30 5.61 0.11 0.81 +bombés bombé ADJ m p 0.30 5.61 0.00 0.88 +bombyx bombyx NOM m 0.12 0.00 0.12 0.00 +bon_papa bon_papa NOM m s 0.07 1.55 0.07 1.55 +bon bon ONO 521.22 109.86 521.22 109.86 +bonace bonace NOM f s 0.00 0.14 0.00 0.07 +bonaces bonace NOM f p 0.00 0.14 0.00 0.07 +bonapartiste bonapartiste NOM s 0.28 0.14 0.14 0.07 +bonapartistes bonapartiste NOM p 0.28 0.14 0.14 0.07 +bonard bonard ADJ m s 0.01 0.34 0.01 0.27 +bonardes bonard ADJ f p 0.01 0.34 0.00 0.07 +bonasse bonasse ADJ s 0.08 2.03 0.08 1.62 +bonassement bonassement ADV 0.00 0.07 0.00 0.07 +bonasserie bonasserie NOM f s 0.00 0.07 0.00 0.07 +bonasses bonasse ADJ p 0.08 2.03 0.00 0.41 +bonbon bonbon NOM m s 23.45 15.00 6.89 3.72 +bonbonne bonbonne NOM f s 0.47 2.43 0.33 1.62 +bonbonnes bonbonne NOM f p 0.47 2.43 0.15 0.81 +bonbonnière bonbonnière NOM f s 0.14 1.35 0.14 1.08 +bonbonnières bonbonnière NOM f p 0.14 1.35 0.00 0.27 +bonbons bonbon NOM m p 23.45 15.00 16.55 11.28 +bond bond NOM m s 4.69 25.74 3.44 20.07 +bondît bondir VER 5.10 35.41 0.00 0.20 sub:imp:3s; +bondage bondage NOM m s 0.41 0.07 0.41 0.00 +bondages bondage NOM m p 0.41 0.07 0.00 0.07 +bondait bonder VER 1.84 2.30 0.00 0.07 ind:imp:3s; +bonde bonde NOM f s 0.24 0.61 0.23 0.54 +bonder bonder VER 1.84 2.30 0.09 0.00 inf; +bondes bonde NOM f p 0.24 0.61 0.01 0.07 +bondi bondir VER m s 5.10 35.41 0.91 3.85 par:pas; +bondieusard bondieusard NOM m s 0.01 0.00 0.01 0.00 +bondieuserie bondieuserie NOM f s 0.05 0.68 0.00 0.27 +bondieuseries bondieuserie NOM f p 0.05 0.68 0.05 0.41 +bondieuses bondieuser VER 0.00 0.07 0.00 0.07 ind:pre:2s; +bondir bondir VER 5.10 35.41 2.11 9.05 inf; +bondira bondir VER 5.10 35.41 0.16 0.14 ind:fut:3s; +bondirais bondir VER 5.10 35.41 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +bondirait bondir VER 5.10 35.41 0.02 0.20 cnd:pre:3s; +bondirent bondir VER 5.10 35.41 0.11 0.88 ind:pas:3p; +bondis bondir VER m p 5.10 35.41 0.34 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bondissaient bondir VER 5.10 35.41 0.03 0.88 ind:imp:3p; +bondissais bondir VER 5.10 35.41 0.04 0.27 ind:imp:1s;ind:imp:2s; +bondissait bondir VER 5.10 35.41 0.17 2.57 ind:imp:3s; +bondissant bondir VER 5.10 35.41 0.20 2.70 par:pre; +bondissante bondissant ADJ f s 0.34 2.77 0.09 0.95 +bondissantes bondissant ADJ f p 0.34 2.77 0.14 0.68 +bondissants bondissant ADJ m p 0.34 2.77 0.02 0.27 +bondisse bondir VER 5.10 35.41 0.02 0.07 sub:pre:1s;sub:pre:3s; +bondissement bondissement NOM m s 0.00 0.61 0.00 0.54 +bondissements bondissement NOM m p 0.00 0.61 0.00 0.07 +bondissent bondir VER 5.10 35.41 0.04 0.88 ind:pre:3p; +bondissez bondir VER 5.10 35.41 0.11 0.07 imp:pre:2p;ind:pre:2p; +bondissons bondir VER 5.10 35.41 0.00 0.14 imp:pre:1p;ind:pre:1p; +bondit bondir VER 5.10 35.41 0.81 11.96 ind:pre:3s;ind:pas:3s; +bondrée bondrée NOM f s 0.01 0.20 0.01 0.20 +bonds bond NOM m p 4.69 25.74 1.25 5.68 +bondé bonder VER m s 1.84 2.30 1.07 1.15 par:pas; +bondée bonder VER f s 1.84 2.30 0.33 0.34 par:pas; +bondées bonder VER f p 1.84 2.30 0.19 0.27 par:pas; +bondés bonder VER m p 1.84 2.30 0.17 0.47 par:pas; +bongo bongo NOM m s 0.21 0.14 0.09 0.07 +bongos bongo NOM m p 0.21 0.14 0.12 0.07 +bonheur_du_jour bonheur_du_jour NOM m s 0.02 0.14 0.02 0.07 +bonheur bonheur NOM m s 78.74 162.36 78.34 156.35 +bonheur_du_jour bonheur_du_jour NOM m p 0.02 0.14 0.00 0.07 +bonheurs bonheur NOM m p 78.74 162.36 0.41 6.01 +bonhomie bonhomie NOM f s 0.02 4.12 0.02 4.12 +bonhomme bonhomme NOM m s 10.57 29.80 9.96 26.01 +bonhommes bonhomme ADJ m p 4.85 4.46 0.47 0.14 +boni boni NOM m s 0.01 0.68 0.01 0.54 +boniche boniche NOM f s 1.28 1.22 1.16 0.81 +boniches boniche NOM f p 1.28 1.22 0.12 0.41 +bonifiaient bonifier VER 0.14 0.14 0.00 0.07 ind:imp:3p; +bonification bonification NOM f s 0.00 0.07 0.00 0.07 +bonifier bonifier VER 0.14 0.14 0.08 0.00 inf; +bonifierait bonifier VER 0.14 0.14 0.00 0.07 cnd:pre:3s; +bonifiez bonifier VER 0.14 0.14 0.01 0.00 ind:pre:2p; +bonifié bonifier VER m s 0.14 0.14 0.04 0.00 par:pas; +bonifiée bonifier VER f s 0.14 0.14 0.01 0.00 par:pas; +boniment boniment NOM m s 1.30 3.99 0.65 1.55 +bonimentait bonimenter VER 0.00 0.20 0.00 0.07 ind:imp:3s; +bonimente bonimenter VER 0.00 0.20 0.00 0.07 ind:pre:3s; +bonimenter bonimenter VER 0.00 0.20 0.00 0.07 inf; +bonimenteur bonimenteur NOM m s 0.18 0.47 0.18 0.14 +bonimenteurs bonimenteur NOM m p 0.18 0.47 0.00 0.34 +boniments boniment NOM m p 1.30 3.99 0.65 2.43 +bonir bonir VER 0.00 1.08 0.00 0.74 inf; +bonis boni NOM m p 0.01 0.68 0.00 0.14 +bonissait bonir VER 0.00 1.08 0.00 0.14 ind:imp:3s; +bonisse bonir VER 0.00 1.08 0.00 0.07 sub:pre:1s; +bonit bonir VER 0.00 1.08 0.00 0.14 ind:pre:3s; +bonjour bonjour NOM m s 570.57 51.55 569.88 50.74 +bonjours bonjour NOM m p 570.57 51.55 0.69 0.81 +bonnard bonnard ADJ m s 0.18 1.62 0.18 1.08 +bonnarde bonnard ADJ f s 0.18 1.62 0.00 0.27 +bonnardes bonnard ADJ f p 0.18 1.62 0.00 0.07 +bonnards bonnard ADJ m p 0.18 1.62 0.00 0.20 +bonne_maman bonne_maman NOM f s 0.14 2.03 0.14 2.03 +bonne bon ADJ f s 1554.44 789.66 578.93 294.53 +bonnement bonnement ADV 1.37 4.66 1.37 4.66 +bonnes bon ADJ f p 1554.44 789.66 71.25 61.76 +bonnet bonnet NOM m s 8.37 18.58 6.62 14.66 +bonneteau bonneteau NOM m s 0.02 1.35 0.02 1.35 +bonneter bonneter VER 0.00 0.07 0.00 0.07 inf; +bonneterie bonneterie NOM f s 0.14 0.61 0.14 0.54 +bonneteries bonneterie NOM f p 0.14 0.61 0.00 0.07 +bonneteur bonneteur NOM m s 0.01 0.07 0.01 0.00 +bonneteurs bonneteur NOM m p 0.01 0.07 0.00 0.07 +bonnets bonnet NOM m p 8.37 18.58 1.75 3.92 +bonnette bonnette NOM f s 0.14 0.14 0.14 0.00 +bonnettes bonnette NOM f p 0.14 0.14 0.00 0.14 +bonni bonnir VER m s 6.67 2.09 0.01 0.27 par:pas; +bonniche bonniche NOM f s 0.45 2.91 0.43 1.96 +bonniches bonniche NOM f p 0.45 2.91 0.02 0.95 +bonnie bonnir VER f s 6.67 2.09 6.66 0.00 par:pas; +bonnir bonnir VER 6.67 2.09 0.00 0.95 inf; +bonnis bonnir VER 6.67 2.09 0.00 0.07 ind:pre:1s; +bonnisse bonnir VER 6.67 2.09 0.00 0.14 sub:pre:3s; +bonnissent bonnir VER 6.67 2.09 0.00 0.07 ind:pre:3p; +bonnit bonnir VER 6.67 2.09 0.00 0.61 ind:pre:3s; +bon_cadeaux bon_cadeaux ADV 0.01 0.00 0.01 0.00 +bon_chrétien bon_chrétien NOM m p 0.00 0.07 0.00 0.07 +bons bon ADJ m p 1554.44 789.66 67.97 57.09 +bonsaï bonsaï NOM m s 0.23 0.14 0.22 0.14 +bonsaïs bonsaï NOM m p 0.23 0.14 0.01 0.00 +bonshommes bonhomme NOM m p 10.57 29.80 0.60 3.78 +bonsoir bonsoir NOM m s 161.17 22.23 161.16 22.03 +bonsoirs bonsoir NOM m p 161.17 22.23 0.01 0.20 +bonté bonté NOM f s 17.88 19.80 17.31 18.65 +bontés bonté NOM f p 17.88 19.80 0.56 1.15 +bonus bonus NOM m 3.80 0.41 3.80 0.41 +bonzaï bonzaï NOM m s 0.14 0.20 0.14 0.20 +bonze bonze NOM m s 0.91 1.55 0.89 1.22 +bonzes bonze NOM m p 0.91 1.55 0.03 0.34 +boogie_woogie boogie_woogie NOM m s 0.28 0.07 0.28 0.07 +book book NOM m s 2.89 0.54 1.50 0.41 +bookmaker bookmaker NOM m s 2.07 0.20 1.62 0.14 +bookmakers bookmaker NOM m p 2.07 0.20 0.45 0.07 +books book NOM m p 2.89 0.54 1.39 0.14 +boom boom NOM m s 2.83 0.41 2.81 0.41 +boomer boomer NOM m s 2.19 0.07 2.19 0.07 +boomerang boomerang NOM m s 2.17 0.68 2.17 0.68 +booms boom NOM m p 2.83 0.41 0.02 0.00 +booster booster NOM m s 0.63 0.00 0.52 0.00 +boosters booster NOM m p 0.63 0.00 0.11 0.00 +bootlegger bootlegger NOM m s 0.22 0.07 0.10 0.00 +bootleggers bootlegger NOM m p 0.22 0.07 0.13 0.07 +boots boots NOM m p 0.54 0.95 0.54 0.95 +bop bop NOM m s 0.19 0.27 0.19 0.27 +boqueteau boqueteau NOM m s 0.02 3.04 0.02 1.49 +boqueteaux boqueteau NOM m p 0.02 3.04 0.00 1.55 +boquillons boquillon NOM m p 0.00 0.14 0.00 0.14 +bora bora NOM s 0.01 0.14 0.01 0.14 +borax borax NOM m 0.16 0.07 0.16 0.07 +borborygme borborygme NOM m s 0.28 1.96 0.00 0.47 +borborygmes borborygme NOM m p 0.28 1.96 0.28 1.49 +borchtch borchtch NOM m s 0.00 0.07 0.00 0.07 +bord bord NOM m s 79.90 228.11 77.06 197.36 +borda border VER 3.75 34.46 0.00 0.20 ind:pas:3s; +bordage bordage NOM m s 0.02 0.47 0.00 0.47 +bordages bordage NOM m p 0.02 0.47 0.02 0.00 +bordai border VER 3.75 34.46 0.00 0.07 ind:pas:1s; +bordaient border VER 3.75 34.46 0.04 2.43 ind:imp:3p; +bordait border VER 3.75 34.46 0.03 2.03 ind:imp:3s; +bordant border VER 3.75 34.46 0.17 2.50 par:pre; +borde border VER 3.75 34.46 0.72 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s; +bordeau bordeau NOM m s 0.02 0.00 0.02 0.00 +bordeaux bordeaux ADJ 0.70 1.62 0.70 1.62 +bordel bordel NOM m s 98.77 21.89 97.84 18.99 +bordelais bordelais ADJ m 0.06 1.01 0.00 0.61 +bordelaise bordelais NOM f s 0.14 1.28 0.14 1.01 +bordelaises bordelais NOM f p 0.14 1.28 0.00 0.20 +bordelières bordelier NOM f p 0.00 0.07 0.00 0.07 +bordels bordel NOM m p 98.77 21.89 0.93 2.91 +bordent border VER 3.75 34.46 0.26 2.91 ind:pre:3p; +border border VER 3.75 34.46 0.95 1.82 imp:pre:2p;inf; +bordera border VER 3.75 34.46 0.03 0.00 ind:fut:3s; +borderait border VER 3.75 34.46 0.10 0.07 cnd:pre:3s; +bordereau bordereau NOM m s 1.09 0.68 0.71 0.27 +bordereaux bordereau NOM m p 1.09 0.68 0.38 0.41 +borderie borderie NOM f s 0.01 0.00 0.01 0.00 +borderiez border VER 3.75 34.46 0.01 0.00 cnd:pre:2p; +borderline borderline NOM m s 0.14 0.00 0.14 0.00 +bordes border VER 3.75 34.46 0.04 0.07 ind:pre:2s;;ind:pre:2s; +bordez border VER 3.75 34.46 0.20 0.00 imp:pre:2p; +bordier bordier ADJ m s 0.00 0.07 0.00 0.07 +bordille bordille NOM f s 0.00 0.07 0.00 0.07 +bordj bordj NOM m s 0.00 0.74 0.00 0.74 +bords bord NOM m p 79.90 228.11 2.84 30.74 +bordèrent border VER 3.75 34.46 0.00 0.07 ind:pas:3p; +bordé border VER m s 3.75 34.46 0.78 5.14 par:pas; +bordée bordée NOM f s 0.39 3.45 0.38 2.23 +bordées border VER f p 3.75 34.46 0.10 3.72 par:pas; +bordélique bordélique ADJ s 0.65 0.61 0.60 0.54 +bordéliques bordélique ADJ f p 0.65 0.61 0.04 0.07 +bordéliser bordéliser VER 0.00 0.07 0.00 0.07 inf; +bordurant bordurer VER 0.00 0.47 0.00 0.07 par:pre; +bordure bordure NOM f s 1.11 12.91 1.03 11.62 +bordurer bordurer VER 0.00 0.47 0.00 0.14 inf; +bordures bordure NOM f p 1.11 12.91 0.08 1.28 +borduré bordurer VER m s 0.00 0.47 0.00 0.14 par:pas; +bordurée bordurer VER f s 0.00 0.47 0.00 0.14 par:pas; +bordés border VER m p 3.75 34.46 0.01 3.31 par:pas; +bore bore NOM m s 0.17 0.00 0.17 0.00 +borgne borgne ADJ s 1.80 3.99 1.67 3.45 +borgnes borgne ADJ p 1.80 3.99 0.14 0.54 +borgnotaient borgnoter VER 0.00 0.74 0.00 0.07 ind:imp:3p; +borgnotant borgnoter VER 0.00 0.74 0.00 0.07 par:pre; +borgnote borgnoter VER 0.00 0.74 0.00 0.41 ind:pre:1s;ind:pre:3s; +borgnoté borgnoter VER m s 0.00 0.74 0.00 0.20 par:pas; +borie borie NOM f s 0.00 0.61 0.00 0.61 +borique borique ADJ m s 0.11 0.00 0.11 0.00 +borna borner VER 2.19 13.24 0.00 1.28 ind:pas:3s; +bornage bornage NOM m s 0.10 0.61 0.00 0.61 +bornages bornage NOM m p 0.10 0.61 0.10 0.00 +bornai borner VER 2.19 13.24 0.00 0.34 ind:pas:1s; +bornaient borner VER 2.19 13.24 0.01 0.68 ind:imp:3p; +bornais borner VER 2.19 13.24 0.01 0.20 ind:imp:1s; +bornait borner VER 2.19 13.24 0.01 2.97 ind:imp:3s; +bornant borner VER 2.19 13.24 0.00 1.42 par:pre; +borne_fontaine borne_fontaine NOM f s 0.00 0.20 0.00 0.07 +borne borne NOM f s 8.35 20.61 1.69 8.04 +bornent borner VER 2.19 13.24 0.02 0.34 ind:pre:3p; +borner borner VER 2.19 13.24 0.29 0.81 inf; +bornera borner VER 2.19 13.24 0.01 0.00 ind:fut:3s; +bornerai borner VER 2.19 13.24 0.04 0.00 ind:fut:1s; +borneraient borner VER 2.19 13.24 0.00 0.07 cnd:pre:3p; +bornerait borner VER 2.19 13.24 0.00 0.14 cnd:pre:3s; +bornerons borner VER 2.19 13.24 0.00 0.07 ind:fut:1p; +borne_fontaine borne_fontaine NOM f p 0.00 0.20 0.00 0.14 +bornes borne NOM f p 8.35 20.61 6.66 12.57 +bornez borner VER 2.19 13.24 0.01 0.00 imp:pre:2p; +bornions borner VER 2.19 13.24 0.00 0.07 ind:imp:1p; +bornât borner VER 2.19 13.24 0.00 0.07 sub:imp:3s; +bornèrent borner VER 2.19 13.24 0.02 0.14 ind:pas:3p; +borné borné ADJ m s 3.13 4.66 2.07 1.96 +bornée borné ADJ f s 3.13 4.66 0.48 1.08 +bornées borner VER f p 2.19 13.24 0.01 0.00 par:pas; +bornés borné ADJ m p 3.13 4.66 0.58 1.22 +borough borough NOM m s 0.18 0.00 0.18 0.00 +borsalino borsalino NOM m s 0.00 0.07 0.00 0.07 +bortch bortch NOM m s 0.02 0.00 0.02 0.00 +bortsch bortsch NOM m s 1.03 0.27 1.03 0.27 +boréal boréal ADJ m s 0.57 1.49 0.11 0.34 +boréale boréal ADJ f s 0.57 1.49 0.38 0.88 +boréales boréal ADJ f p 0.57 1.49 0.08 0.27 +borée borée NOM f s 0.14 0.00 0.14 0.00 +bosco bosco NOM m s 0.04 1.01 0.04 1.01 +boscotte boscot ADJ f s 0.00 0.20 0.00 0.20 +boskoop boskoop NOM f s 0.00 0.14 0.00 0.14 +bosniaque bosniaque ADJ s 0.82 0.07 0.78 0.00 +bosniaques bosniaque NOM p 0.30 0.27 0.20 0.27 +bosnien bosnien ADJ m s 0.00 0.07 0.00 0.07 +bosquet bosquet NOM m s 0.80 5.81 0.47 2.64 +bosquets bosquet NOM m p 0.80 5.81 0.32 3.18 +boss boss NOM m 13.45 2.50 13.45 2.50 +bossa_nova bossa_nova NOM f s 0.12 0.07 0.12 0.07 +bossa bosser VER 76.28 10.95 0.89 0.00 ind:pas:3s; +bossage bossage NOM m s 0.01 0.00 0.01 0.00 +bossaient bosser VER 76.28 10.95 0.33 0.20 ind:imp:3p; +bossais bosser VER 76.28 10.95 2.79 0.20 ind:imp:1s;ind:imp:2s; +bossait bosser VER 76.28 10.95 2.56 1.22 ind:imp:3s; +bossant bosser VER 76.28 10.95 0.46 0.14 par:pre; +bosse bosser VER 76.28 10.95 21.92 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bossela bosseler VER 0.05 2.36 0.01 0.07 ind:pas:3s; +bosselaient bosseler VER 0.05 2.36 0.00 0.34 ind:imp:3p; +bosselait bosseler VER 0.05 2.36 0.00 0.07 ind:imp:3s; +bosseler bosseler VER 0.05 2.36 0.00 0.07 inf; +bossellement bossellement NOM m s 0.00 0.14 0.00 0.07 +bossellements bossellement NOM m p 0.00 0.14 0.00 0.07 +bosselé bosselé ADJ m s 0.12 2.50 0.09 1.28 +bosselée bosselé ADJ f s 0.12 2.50 0.03 0.34 +bosselées bosseler VER f p 0.05 2.36 0.03 0.27 par:pas; +bosselure bosselure NOM f s 0.01 0.07 0.01 0.07 +bosselés bosselé ADJ m p 0.12 2.50 0.01 0.68 +bossent bosser VER 76.28 10.95 1.93 1.01 ind:pre:3p; +bosser bosser VER 76.28 10.95 26.82 3.78 inf; +bossera bosser VER 76.28 10.95 0.24 0.20 ind:fut:3s; +bosserai bosser VER 76.28 10.95 0.55 0.00 ind:fut:1s; +bosserais bosser VER 76.28 10.95 0.39 0.00 cnd:pre:1s;cnd:pre:2s; +bosserait bosser VER 76.28 10.95 0.18 0.07 cnd:pre:3s; +bosseras bosser VER 76.28 10.95 0.51 0.00 ind:fut:2s; +bosserez bosser VER 76.28 10.95 0.06 0.00 ind:fut:2p; +bosses bosser VER 76.28 10.95 6.95 0.47 ind:pre:2s; +bosseur bosseur NOM m s 0.59 0.34 0.53 0.00 +bosseurs bosseur ADJ m p 0.34 0.14 0.14 0.07 +bosseuse bosseur NOM f s 0.59 0.34 0.02 0.20 +bossez bosser VER 76.28 10.95 1.97 0.00 imp:pre:2p;ind:pre:2p; +bossiez bosser VER 76.28 10.95 0.14 0.00 ind:imp:2p; +bossions bosser VER 76.28 10.95 0.01 0.07 ind:imp:1p; +bossoir bossoir NOM m s 0.09 0.27 0.05 0.07 +bossoirs bossoir NOM m p 0.09 0.27 0.04 0.20 +bosson bosson NOM m s 0.02 0.07 0.00 0.07 +bossons bosser VER 76.28 10.95 0.02 0.00 ind:pre:1p; +bossé bosser VER m s 76.28 10.95 7.56 0.95 par:pas; +bossu bossu NOM m s 4.74 1.82 4.19 1.69 +bossuaient bossuer VER 0.00 0.54 0.00 0.14 ind:imp:3p; +bossue bossu ADJ f s 1.97 4.66 0.35 1.89 +bossues bossu ADJ f p 1.97 4.66 0.01 0.41 +bossus bossu NOM m p 4.74 1.82 0.55 0.14 +bossué bossué ADJ m s 0.00 0.61 0.00 0.34 +bossuée bossué ADJ f s 0.00 0.61 0.00 0.14 +bossuées bossuer VER f p 0.00 0.54 0.00 0.14 par:pas; +bossués bossué ADJ m p 0.00 0.61 0.00 0.14 +boston boston NOM m s 0.44 0.47 0.44 0.47 +bostonien bostonien NOM m s 0.04 0.20 0.02 0.07 +bostonienne bostonien ADJ f s 0.04 0.27 0.02 0.14 +bostoniens bostonien NOM m p 0.04 0.20 0.02 0.14 +bostonner bostonner VER 0.00 0.07 0.00 0.07 inf; +bât bât NOM m s 0.12 2.57 0.12 2.36 +bot bot ADJ m s 0.52 0.54 0.39 0.54 +botanique botanique ADJ s 0.88 0.74 0.70 0.47 +botaniquement botaniquement ADV 0.01 0.00 0.01 0.00 +botaniques botanique ADJ p 0.88 0.74 0.17 0.27 +botaniste botaniste NOM s 0.61 0.74 0.47 0.61 +botanistes botaniste NOM p 0.61 0.74 0.14 0.14 +bâtard bâtard NOM m s 13.66 11.89 9.89 9.12 +bâtarde bâtard NOM f s 13.66 11.89 0.32 0.34 +bâtardes bâtard ADJ f p 2.69 5.74 0.01 0.20 +bâtardise bâtardise NOM f s 0.01 3.04 0.01 2.97 +bâtardises bâtardise NOM f p 0.01 3.04 0.00 0.07 +bâtards bâtard NOM m p 13.66 11.89 3.45 2.23 +bote bot ADJ f s 0.52 0.54 0.13 0.00 +bâter bâter VER 0.16 0.34 0.14 0.07 inf; +bâti bâtir VER m s 18.55 24.53 5.47 5.54 par:pas; +bâtie bâtir VER f s 18.55 24.53 1.58 4.32 par:pas; +bâties bâtir VER f p 18.55 24.53 0.30 1.89 par:pas; +bâtiment bâtiment NOM m s 27.58 36.82 22.73 19.93 +bâtiments bâtiment NOM m p 27.58 36.82 4.85 16.89 +bâtir bâtir VER 18.55 24.53 5.62 8.24 inf; +bâtira bâtir VER 18.55 24.53 0.18 0.07 ind:fut:3s; +bâtirai bâtir VER 18.55 24.53 1.38 0.07 ind:fut:1s; +bâtirais bâtir VER 18.55 24.53 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +bâtirait bâtir VER 18.55 24.53 0.16 0.14 cnd:pre:3s; +bâtirent bâtir VER 18.55 24.53 0.03 0.14 ind:pas:3p; +bâtirions bâtir VER 18.55 24.53 0.02 0.00 cnd:pre:1p; +bâtirons bâtir VER 18.55 24.53 0.28 0.00 ind:fut:1p; +bâtiront bâtir VER 18.55 24.53 0.01 0.00 ind:fut:3p; +bâtis bâtir VER m p 18.55 24.53 0.76 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bâtissaient bâtir VER 18.55 24.53 0.27 0.20 ind:imp:3p; +bâtissais bâtir VER 18.55 24.53 0.04 0.27 ind:imp:1s; +bâtissait bâtir VER 18.55 24.53 0.17 0.95 ind:imp:3s; +bâtissant bâtir VER 18.55 24.53 0.02 0.61 par:pre; +bâtisse bâtisse NOM f s 0.93 9.59 0.78 7.43 +bâtissent bâtir VER 18.55 24.53 0.24 0.14 ind:pre:3p; +bâtisses bâtisse NOM f p 0.93 9.59 0.16 2.16 +bâtisseur bâtisseur NOM m s 1.00 1.01 0.22 0.20 +bâtisseurs bâtisseur NOM m p 1.00 1.01 0.79 0.74 +bâtisseuse bâtisseur NOM f s 1.00 1.01 0.00 0.07 +bâtissez bâtir VER 18.55 24.53 0.21 0.00 imp:pre:2p;ind:pre:2p; +bâtissions bâtir VER 18.55 24.53 0.03 0.00 ind:imp:1p; +bâtissons bâtir VER 18.55 24.53 0.42 0.07 imp:pre:1p;ind:pre:1p; +bâtit bâtir VER 18.55 24.53 1.16 0.81 ind:pre:3s;ind:pas:3s; +bâtière bâtier NOM f s 0.00 0.07 0.00 0.07 +bâton bâton NOM m s 18.11 30.27 13.40 21.22 +bâtonnant bâtonner VER 0.14 0.14 0.14 0.00 par:pre; +bâtonner bâtonner VER 0.14 0.14 0.01 0.00 inf; +bâtonnet bâtonnet NOM m s 0.83 2.84 0.38 1.28 +bâtonnets bâtonnet NOM m p 0.83 2.84 0.46 1.55 +bâtonnier bâtonnier NOM m s 0.16 1.35 0.16 1.35 +bâtonnée bâtonner VER f s 0.14 0.14 0.00 0.14 par:pas; +bâtons bâton NOM m p 18.11 30.27 4.71 9.05 +bâts bât NOM m p 0.12 2.57 0.00 0.20 +botta botter VER 15.54 5.61 0.00 0.14 ind:pas:3s; +bottai botter VER 15.54 5.61 0.00 0.07 ind:pas:1s; +bottaient botter VER 15.54 5.61 0.00 0.27 ind:imp:3p; +bottait botter VER 15.54 5.61 0.13 0.74 ind:imp:3s; +bottant botter VER 15.54 5.61 0.04 0.07 par:pre; +botte botte NOM f s 32.19 44.93 6.38 8.51 +botteler botteler VER 0.00 0.34 0.00 0.14 inf; +bottellent botteler VER 0.00 0.34 0.00 0.07 ind:pre:3p; +bottelé bottelé ADJ m s 0.01 0.00 0.01 0.00 +bottelées botteler VER f p 0.00 0.34 0.00 0.07 par:pas; +bottent botter VER 15.54 5.61 0.08 0.00 ind:pre:3p; +botter botter VER 15.54 5.61 7.63 1.22 imp:pre:2p;ind:pre:2p;inf; +bottera botter VER 15.54 5.61 0.20 0.00 ind:fut:3s; +botterai botter VER 15.54 5.61 0.61 0.07 ind:fut:1s; +botterais botter VER 15.54 5.61 0.24 0.07 cnd:pre:1s;cnd:pre:2s; +botterait botter VER 15.54 5.61 0.21 0.07 cnd:pre:3s; +botteras botter VER 15.54 5.61 0.05 0.00 ind:fut:2s; +botterons botter VER 15.54 5.61 0.01 0.00 ind:fut:1p; +botteront botter VER 15.54 5.61 0.04 0.00 ind:fut:3p; +bottes botte NOM f p 32.19 44.93 25.81 36.42 +botteur botteur NOM m s 0.14 0.00 0.10 0.00 +botteurs botteur NOM m p 0.14 0.00 0.03 0.00 +bottez botter VER 15.54 5.61 0.17 0.00 imp:pre:2p;ind:pre:2p; +botticellienne botticellien NOM f s 0.00 0.07 0.00 0.07 +bottier bottier NOM m s 0.25 0.74 0.25 0.68 +bottiers bottier NOM m p 0.25 0.74 0.00 0.07 +bottiez botter VER 15.54 5.61 0.01 0.00 ind:imp:2p; +bottillon bottillon NOM m s 0.04 0.74 0.00 0.07 +bottillons bottillon NOM m p 0.04 0.74 0.04 0.68 +bottin bottin NOM m s 1.05 1.35 1.05 0.68 +bottine bottine NOM f s 2.27 4.86 0.54 0.61 +bottines bottine NOM f p 2.27 4.86 1.73 4.26 +bottins bottin NOM m p 1.05 1.35 0.00 0.68 +bottiné bottiner VER m s 0.00 0.07 0.00 0.07 par:pas; +bottons botter VER 15.54 5.61 0.12 0.20 imp:pre:1p;ind:pre:1p; +botté botter VER m s 15.54 5.61 1.63 0.47 par:pas; +bottée botté ADJ f s 0.32 2.23 0.10 0.07 +bottées botter VER f p 15.54 5.61 0.03 0.20 par:pas; +bottés botté ADJ m p 0.32 2.23 0.01 0.68 +bâté bâté ADJ m s 0.21 0.47 0.19 0.47 +botulique botulique ADJ f s 0.19 0.00 0.19 0.00 +botulisme botulisme NOM m s 0.15 0.00 0.15 0.00 +bâtés bâté ADJ m p 0.21 0.47 0.03 0.00 +boubou boubou NOM m s 0.11 2.30 0.11 1.55 +bouboule boubouler VER 0.19 0.54 0.18 0.54 imp:pre:2s;ind:pre:3s; +bouboules boubouler VER 0.19 0.54 0.01 0.00 ind:pre:2s; +boubous boubou NOM m p 0.11 2.30 0.00 0.74 +bouc bouc NOM m s 8.49 10.07 7.92 8.92 +boucan boucan NOM m s 3.22 2.36 3.22 2.36 +boucanait boucaner VER 0.00 1.08 0.00 0.07 ind:imp:3s; +boucaner boucaner VER 0.00 1.08 0.00 0.07 inf; +boucanerie boucanerie NOM f s 0.00 0.07 0.00 0.07 +boucanier boucanier NOM m s 0.36 0.14 0.07 0.07 +boucaniers boucanier NOM m p 0.36 0.14 0.29 0.07 +boucané boucaner VER m s 0.00 1.08 0.00 0.20 par:pas; +boucanée boucaner VER f s 0.00 1.08 0.00 0.47 par:pas; +boucanées boucaner VER f p 0.00 1.08 0.00 0.14 par:pas; +boucanés boucaner VER m p 0.00 1.08 0.00 0.14 par:pas; +boucha boucher VER 16.23 21.22 0.00 0.54 ind:pas:3s; +bouchage bouchage NOM m s 0.00 0.07 0.00 0.07 +bouchai boucher VER 16.23 21.22 0.00 0.07 ind:pas:1s; +bouchaient boucher VER 16.23 21.22 0.14 0.88 ind:imp:3p; +bouchais boucher VER 16.23 21.22 0.10 0.27 ind:imp:1s; +bouchait boucher VER 16.23 21.22 0.06 1.55 ind:imp:3s; +bouchant boucher VER 16.23 21.22 0.37 0.88 par:pre; +bouchardant boucharder VER 0.01 0.07 0.00 0.07 par:pre; +boucharde boucharde NOM f s 0.00 0.27 0.00 0.27 +boucharder boucharder VER 0.01 0.07 0.01 0.00 inf; +bouche_à_bouche bouche_à_bouche NOM m 0.00 0.20 0.00 0.20 +bouche_à_oreille bouche_à_oreille NOM m s 0.00 0.07 0.00 0.07 +bouche_trou bouche_trou NOM m s 0.25 0.07 0.22 0.07 +bouche_trou bouche_trou NOM m p 0.25 0.07 0.03 0.00 +bouche bouche NOM f s 90.03 283.45 87.75 267.64 +bouchent boucher VER 16.23 21.22 0.25 0.54 ind:pre:3p; +boucher boucher NOM m s 8.26 11.55 7.15 7.70 +bouchera boucher VER 16.23 21.22 0.09 0.00 ind:fut:3s; +boucheraient boucher VER 16.23 21.22 0.01 0.07 cnd:pre:3p; +boucherais boucher VER 16.23 21.22 0.00 0.07 cnd:pre:1s; +boucherait boucher VER 16.23 21.22 0.05 0.07 cnd:pre:3s; +boucheras boucher VER 16.23 21.22 0.01 0.00 ind:fut:2s; +boucherie boucherie NOM f s 4.11 8.92 4.02 7.43 +boucheries boucherie NOM f p 4.11 8.92 0.08 1.49 +boucherons boucher VER 16.23 21.22 0.01 0.00 ind:fut:1p; +bouchers boucher NOM m p 8.26 11.55 0.93 2.91 +bouches bouche NOM f p 90.03 283.45 2.27 15.81 +bouchez boucher VER 16.23 21.22 0.82 0.00 imp:pre:2p;ind:pre:2p; +bouchions boucher VER 16.23 21.22 0.00 0.07 ind:imp:1p; +bouchon bouchon NOM m s 7.25 14.46 5.47 10.68 +bouchonna bouchonner VER 0.36 0.95 0.00 0.07 ind:pas:3s; +bouchonnaient bouchonner VER 0.36 0.95 0.00 0.07 ind:imp:3p; +bouchonnait bouchonner VER 0.36 0.95 0.00 0.07 ind:imp:3s; +bouchonnant bouchonner VER 0.36 0.95 0.00 0.07 par:pre; +bouchonne bouchonner VER 0.36 0.95 0.29 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouchonner bouchonner VER 0.36 0.95 0.02 0.34 inf; +bouchonneras bouchonner VER 0.36 0.95 0.00 0.07 ind:fut:2s; +bouchonné bouchonner VER m s 0.36 0.95 0.03 0.07 par:pas; +bouchonnée bouchonner VER f s 0.36 0.95 0.01 0.14 par:pas; +bouchons bouchon NOM m p 7.25 14.46 1.77 3.78 +bouchot bouchot NOM m s 0.00 0.14 0.00 0.07 +bouchoteurs bouchoteur NOM m p 0.00 0.07 0.00 0.07 +bouchots bouchot NOM m p 0.00 0.14 0.00 0.07 +bouchère boucher NOM f s 8.26 11.55 0.18 0.81 +bouchèrent boucher VER 16.23 21.22 0.00 0.14 ind:pas:3p; +bouchères boucher NOM f p 8.26 11.55 0.00 0.14 +bouché boucher VER m s 16.23 21.22 3.21 2.57 par:pas; +bouchée bouchée NOM f s 5.61 11.49 4.77 6.28 +bouchées bouchée NOM f p 5.61 11.49 0.84 5.20 +bouchure bouchure NOM f s 0.00 0.07 0.00 0.07 +bouchés boucher VER m p 16.23 21.22 0.63 0.41 par:pas; +boucla boucler VER 24.61 23.45 0.00 1.49 ind:pas:3s; +bouclage bouclage NOM m s 0.27 0.54 0.27 0.54 +bouclaient boucler VER 24.61 23.45 0.14 0.54 ind:imp:3p; +bouclais boucler VER 24.61 23.45 0.05 0.14 ind:imp:1s; +bouclait boucler VER 24.61 23.45 0.05 1.35 ind:imp:3s; +bouclant boucler VER 24.61 23.45 0.03 0.74 par:pre; +boucle boucle NOM f s 18.86 29.86 8.62 11.22 +bouclent boucler VER 24.61 23.45 0.54 0.47 ind:pre:3p; +boucler boucler VER 24.61 23.45 6.91 6.55 inf; +bouclera boucler VER 24.61 23.45 0.26 0.00 ind:fut:3s; +bouclerai boucler VER 24.61 23.45 0.12 0.00 ind:fut:1s; +boucleraient boucler VER 24.61 23.45 0.00 0.07 cnd:pre:3p; +bouclerais boucler VER 24.61 23.45 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +bouclerait boucler VER 24.61 23.45 0.05 0.07 cnd:pre:3s; +boucleras boucler VER 24.61 23.45 0.02 0.14 ind:fut:2s; +bouclerons boucler VER 24.61 23.45 0.02 0.00 ind:fut:1p; +boucleront boucler VER 24.61 23.45 0.03 0.07 ind:fut:3p; +boucles boucle NOM f p 18.86 29.86 10.23 18.65 +bouclette bouclette NOM f s 0.56 1.49 0.05 0.07 +bouclettes bouclette NOM f p 0.56 1.49 0.51 1.42 +bouclez boucler VER 24.61 23.45 3.88 0.68 imp:pre:2p;ind:pre:2p; +bouclier bouclier NOM m s 14.45 7.30 10.47 4.59 +boucliers bouclier NOM m p 14.45 7.30 3.98 2.70 +bouclâmes boucler VER 24.61 23.45 0.00 0.14 ind:pas:1p; +bouclons boucler VER 24.61 23.45 0.18 0.00 imp:pre:1p;ind:pre:1p; +bouclât boucler VER 24.61 23.45 0.00 0.07 sub:imp:3s; +bouclèrent boucler VER 24.61 23.45 0.00 0.07 ind:pas:3p; +bouclé boucler VER m s 24.61 23.45 2.88 3.31 par:pas; +bouclée boucler VER f s 24.61 23.45 1.20 2.64 par:pas; +bouclées boucler VER f p 24.61 23.45 0.05 0.27 par:pas; +bouclés bouclé ADJ m p 2.38 7.16 0.77 2.64 +boucs bouc NOM m p 8.49 10.07 0.57 1.15 +bouda bouder VER 5.11 8.04 0.01 0.61 ind:pas:3s; +boudaient bouder VER 5.11 8.04 0.00 0.34 ind:imp:3p; +boudais bouder VER 5.11 8.04 0.04 0.14 ind:imp:1s;ind:imp:2s; +boudait bouder VER 5.11 8.04 0.03 1.76 ind:imp:3s; +boudant bouder VER 5.11 8.04 0.00 0.14 par:pre; +bouddha bouddha NOM m s 0.57 1.55 0.11 1.08 +bouddhas bouddha NOM m p 0.57 1.55 0.46 0.47 +bouddhique bouddhique ADJ s 0.01 0.20 0.01 0.14 +bouddhiques bouddhique ADJ f p 0.01 0.20 0.00 0.07 +bouddhisme bouddhisme NOM m s 0.42 1.89 0.42 1.89 +bouddhiste bouddhiste ADJ s 1.00 1.69 0.94 1.22 +bouddhistes bouddhiste NOM p 0.32 0.54 0.22 0.27 +boude bouder VER 5.11 8.04 2.31 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boudent bouder VER 5.11 8.04 0.16 0.27 ind:pre:3p; +bouder bouder VER 5.11 8.04 0.95 2.09 inf; +bouderai bouder VER 5.11 8.04 0.00 0.07 ind:fut:1s; +bouderait bouder VER 5.11 8.04 0.00 0.14 cnd:pre:3s; +bouderie bouderie NOM f s 0.12 1.69 0.12 1.15 +bouderies bouderie NOM f p 0.12 1.69 0.00 0.54 +boudes bouder VER 5.11 8.04 1.03 0.27 ind:pre:2s; +boudeur boudeur NOM m s 0.04 0.14 0.02 0.14 +boudeurs boudeur ADJ m p 0.12 4.05 0.00 0.14 +boudeuse boudeur ADJ f s 0.12 4.05 0.11 1.55 +boudeuses boudeur ADJ f p 0.12 4.05 0.00 0.27 +boudez bouder VER 5.11 8.04 0.22 0.14 imp:pre:2p;ind:pre:2p; +boudi boudi ADV 0.01 0.00 0.01 0.00 +boudiez bouder VER 5.11 8.04 0.11 0.07 ind:imp:2p; +boudin boudin NOM m s 2.85 7.57 2.49 5.88 +boudinaient boudiner VER 0.32 1.76 0.00 0.07 ind:imp:3p; +boudinait boudiner VER 0.32 1.76 0.00 0.14 ind:imp:3s; +boudinant boudiner VER 0.32 1.76 0.00 0.14 par:pre; +boudine boudiner VER 0.32 1.76 0.27 0.07 ind:pre:1s;ind:pre:3s; +boudinent boudiner VER 0.32 1.76 0.00 0.07 ind:pre:3p; +boudins boudin NOM m p 2.85 7.57 0.36 1.69 +boudiné boudiner VER m s 0.32 1.76 0.00 0.54 par:pas; +boudinée boudiner VER f s 0.32 1.76 0.02 0.20 par:pas; +boudinées boudiné ADJ f p 0.18 1.35 0.01 0.27 +boudinés boudiné ADJ m p 0.18 1.35 0.15 0.74 +boudiou boudiou ONO 0.00 0.20 0.00 0.20 +boudoir boudoir NOM m s 0.94 3.92 0.93 3.04 +boudoirs boudoir NOM m p 0.94 3.92 0.01 0.88 +boudons bouder VER 5.11 8.04 0.00 0.07 ind:pre:1p; +boudèrent bouder VER 5.11 8.04 0.00 0.07 ind:pas:3p; +boudé bouder VER m s 5.11 8.04 0.23 0.14 par:pas; +boudu boudu ONO 7.37 0.07 7.37 0.07 +boudée bouder VER f s 5.11 8.04 0.01 0.14 par:pas; +boudés bouder VER m p 5.11 8.04 0.00 0.07 par:pas; +boue boue NOM f s 15.10 53.31 15.09 52.30 +boues boue NOM f p 15.10 53.31 0.01 1.01 +boueur boueur NOM m s 0.00 0.07 0.00 0.07 +boueuse boueux ADJ f s 1.38 11.15 0.33 3.78 +boueuses boueux ADJ f p 1.38 11.15 0.16 2.30 +boueux boueux ADJ m 1.38 11.15 0.89 5.07 +bouf bouf ONO 0.02 0.14 0.02 0.14 +bouffable bouffable ADJ s 0.03 0.00 0.03 0.00 +bouffaient bouffer VER 42.72 33.04 0.29 0.34 ind:imp:3p; +bouffais bouffer VER 42.72 33.04 0.25 0.14 ind:imp:1s;ind:imp:2s; +bouffait bouffer VER 42.72 33.04 0.60 2.09 ind:imp:3s; +bouffant bouffer VER 42.72 33.04 0.21 0.41 par:pre; +bouffante bouffant ADJ f s 0.25 3.11 0.01 0.61 +bouffantes bouffant ADJ f p 0.25 3.11 0.14 1.01 +bouffants bouffant ADJ m p 0.25 3.11 0.04 0.88 +bouffarde bouffarde NOM f s 0.20 1.01 0.20 0.95 +bouffardes bouffarde NOM f p 0.20 1.01 0.00 0.07 +bouffe bouffe NOM f s 14.51 7.36 14.40 6.62 +bouffent bouffer VER 42.72 33.04 1.93 1.49 ind:pre:3p; +bouffer bouffer VER 42.72 33.04 18.26 15.61 inf; +bouffera bouffer VER 42.72 33.04 0.38 0.61 ind:fut:3s; +boufferai bouffer VER 42.72 33.04 0.19 0.07 ind:fut:1s; +boufferaient bouffer VER 42.72 33.04 0.26 0.07 cnd:pre:3p; +boufferais bouffer VER 42.72 33.04 0.54 0.20 cnd:pre:1s;cnd:pre:2s; +boufferait bouffer VER 42.72 33.04 0.28 0.41 cnd:pre:3s; +boufferas bouffer VER 42.72 33.04 0.20 0.14 ind:fut:2s; +boufferez bouffer VER 42.72 33.04 0.02 0.00 ind:fut:2p; +boufferont bouffer VER 42.72 33.04 0.36 0.27 ind:fut:3p; +bouffes bouffer VER 42.72 33.04 1.56 0.41 ind:pre:2s; +bouffetance bouffetance NOM f s 0.00 0.14 0.00 0.14 +bouffettes bouffette NOM f p 0.01 0.07 0.01 0.07 +bouffeur bouffeur NOM m s 0.81 0.34 0.32 0.14 +bouffeurs bouffeur NOM m p 0.81 0.34 0.29 0.14 +bouffeuse bouffeur NOM f s 0.81 0.34 0.20 0.00 +bouffeuses bouffeuse NOM f p 0.03 0.00 0.03 0.00 +bouffez bouffer VER 42.72 33.04 0.74 0.14 imp:pre:2p;ind:pre:2p; +bouffi bouffi ADJ m s 1.16 3.92 0.66 2.03 +bouffie bouffi ADJ f s 1.16 3.92 0.32 0.74 +bouffies bouffir VER f p 0.70 3.04 0.01 0.14 par:pas; +bouffiez bouffer VER 42.72 33.04 0.03 0.00 ind:imp:2p; +bouffis bouffi ADJ m p 1.16 3.92 0.18 0.88 +bouffissure bouffissure NOM f s 0.01 0.41 0.00 0.27 +bouffissures bouffissure NOM f p 0.01 0.41 0.01 0.14 +bouffon bouffon NOM m s 6.76 2.57 5.13 1.69 +bouffonna bouffonner VER 0.01 0.54 0.00 0.14 ind:pas:3s; +bouffonnait bouffonner VER 0.01 0.54 0.00 0.14 ind:imp:3s; +bouffonnant bouffonner VER 0.01 0.54 0.00 0.14 par:pre; +bouffonnante bouffonnant ADJ f s 0.00 0.20 0.00 0.14 +bouffonne bouffon NOM f s 6.76 2.57 0.28 0.00 +bouffonnement bouffonnement ADV 0.00 0.07 0.00 0.07 +bouffonner bouffonner VER 0.01 0.54 0.00 0.14 inf; +bouffonnerie bouffonnerie NOM f s 0.42 1.01 0.20 0.81 +bouffonneries bouffonnerie NOM f p 0.42 1.01 0.22 0.20 +bouffonnes bouffon ADJ f p 2.57 2.30 0.01 0.20 +bouffons bouffon NOM m p 6.76 2.57 1.36 0.88 +bouffé bouffer VER m s 42.72 33.04 6.28 3.85 par:pas; +bouffée bouffée NOM f s 2.89 26.35 1.92 14.19 +bouffées bouffée NOM f p 2.89 26.35 0.97 12.16 +bouffés bouffer VER m p 42.72 33.04 0.32 0.54 par:pas; +bouftance bouftance NOM f s 0.00 0.07 0.00 0.07 +bougainvillier bougainvillier NOM m s 0.05 0.14 0.03 0.00 +bougainvilliers bougainvillier NOM m p 0.05 0.14 0.02 0.14 +bougainvillée bougainvillée NOM f s 0.05 1.42 0.04 0.47 +bougainvillées bougainvillée NOM f p 0.05 1.42 0.01 0.95 +bouge bouger VER 211.90 156.76 85.45 30.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bougea bouger VER 211.90 156.76 0.04 11.42 ind:pas:3s; +bougeai bouger VER 211.90 156.76 0.00 0.95 ind:pas:1s; +bougeaient bouger VER 211.90 156.76 1.10 6.28 ind:imp:3p; +bougeais bouger VER 211.90 156.76 0.61 1.76 ind:imp:1s;ind:imp:2s; +bougeait bouger VER 211.90 156.76 2.73 22.97 ind:imp:3s; +bougeant bouger VER 211.90 156.76 0.50 3.31 par:pre; +bougeassent bouger VER 211.90 156.76 0.00 0.07 sub:imp:3p; +bougent bouger VER 211.90 156.76 5.84 5.41 ind:pre:3p; +bougeoir bougeoir NOM m s 0.21 2.57 0.17 1.55 +bougeoirs bougeoir NOM m p 0.21 2.57 0.03 1.01 +bougeons bouger VER 211.90 156.76 1.71 0.34 imp:pre:1p;ind:pre:1p; +bougeât bouger VER 211.90 156.76 0.00 0.54 sub:imp:3s; +bougeotte bougeotte NOM f s 1.04 1.15 1.04 1.15 +bouger bouger VER 211.90 156.76 44.32 46.62 inf; +bougera bouger VER 211.90 156.76 1.89 1.08 ind:fut:3s; +bougerai bouger VER 211.90 156.76 1.95 0.61 ind:fut:1s; +bougeraient bouger VER 211.90 156.76 0.12 0.20 cnd:pre:3p; +bougerais bouger VER 211.90 156.76 0.28 0.14 cnd:pre:1s; +bougerait bouger VER 211.90 156.76 0.14 0.95 cnd:pre:3s; +bougeras bouger VER 211.90 156.76 0.38 0.07 ind:fut:2s; +bougerez bouger VER 211.90 156.76 0.19 0.07 ind:fut:2p; +bougeriez bouger VER 211.90 156.76 0.04 0.00 cnd:pre:2p; +bougerons bouger VER 211.90 156.76 0.10 0.00 ind:fut:1p; +bougeront bouger VER 211.90 156.76 0.40 0.27 ind:fut:3p; +bouges bouger VER 211.90 156.76 9.04 1.08 ind:pre:2s;sub:pre:2s; +bougez bouger VER 211.90 156.76 44.09 2.50 imp:pre:2p;ind:pre:2p; +bougie bougie NOM f s 18.32 29.86 7.40 16.22 +bougies bougie NOM f p 18.32 29.86 10.92 13.65 +bougiez bougier VER 0.30 0.00 0.30 0.00 ind:pre:2p; +bougions bouger VER 211.90 156.76 0.14 0.20 ind:imp:1p; +bougnat bougnat NOM m s 0.00 2.57 0.00 1.76 +bougnats bougnat NOM m p 0.00 2.57 0.00 0.81 +bougne bougner VER 0.00 0.54 0.00 0.47 ind:pre:1s;ind:pre:3s; +bougnes bougner VER 0.00 0.54 0.00 0.07 ind:pre:2s; +bougnoul bougnoul NOM m 0.11 0.00 0.11 0.00 +bougnoule bougnoule NOM s 0.26 3.31 0.12 1.49 +bougnoules bougnoule NOM p 0.26 3.31 0.14 1.82 +bougon bougon ADJ m s 0.17 2.91 0.13 1.96 +bougonna bougonner VER 0.04 5.74 0.00 2.09 ind:pas:3s; +bougonnaient bougonner VER 0.04 5.74 0.00 0.07 ind:imp:3p; +bougonnais bougonner VER 0.04 5.74 0.00 0.07 ind:imp:1s; +bougonnait bougonner VER 0.04 5.74 0.00 0.95 ind:imp:3s; +bougonnant bougonner VER 0.04 5.74 0.01 0.81 par:pre; +bougonne bougon ADJ f s 0.17 2.91 0.04 0.81 +bougonnement bougonnement NOM m s 0.01 0.00 0.01 0.00 +bougonnent bougonner VER 0.04 5.74 0.00 0.07 ind:pre:3p; +bougonner bougonner VER 0.04 5.74 0.00 0.27 inf; +bougonné bougonner VER m s 0.04 5.74 0.01 0.34 par:pas; +bougons bougon ADJ m p 0.17 2.91 0.00 0.14 +bougran bougran NOM m s 0.23 0.00 0.23 0.00 +bougre bougre ONO 0.01 0.74 0.01 0.74 +bougrement bougrement ADV 0.52 1.55 0.52 1.55 +bougrerie bougrerie NOM f s 0.00 0.14 0.00 0.07 +bougreries bougrerie NOM f p 0.00 0.14 0.00 0.07 +bougres bougre NOM m p 4.75 11.22 0.56 2.70 +bougresse bougresse NOM f s 0.02 0.47 0.02 0.47 +bougèrent bouger VER 211.90 156.76 0.01 1.01 ind:pas:3p; +bougé bouger VER m s 211.90 156.76 10.52 17.97 par:pas; +bougée bouger VER f s 211.90 156.76 0.20 0.00 par:pas; +bougées bouger VER f p 211.90 156.76 0.13 0.07 par:pas; +boui_boui boui_boui NOM m s 0.39 0.27 0.35 0.27 +bouiboui bouiboui NOM m s 0.04 0.14 0.04 0.14 +bouibouis bouiboui NOM m p 0.04 0.14 0.01 0.00 +bouif bouif NOM m s 0.00 0.14 0.00 0.14 +bouillabaisse bouillabaisse NOM f s 0.66 0.61 0.66 0.61 +bouillaient bouillir VER 7.62 13.58 0.00 0.20 ind:imp:3p; +bouillais bouillir VER 7.62 13.58 0.03 0.20 ind:imp:1s; +bouillait bouillir VER 7.62 13.58 0.00 1.35 ind:imp:3s; +bouillant bouillant ADJ m s 4.53 8.11 2.34 3.11 +bouillante bouillant ADJ f s 4.53 8.11 2.13 3.72 +bouillantes bouillant ADJ f p 4.53 8.11 0.03 0.47 +bouillants bouillant ADJ m p 4.53 8.11 0.04 0.81 +bouillasse bouillasse NOM f s 0.17 0.61 0.17 0.61 +bouille bouille NOM f s 0.80 6.55 0.70 5.81 +bouillent bouillir VER 7.62 13.58 0.04 0.07 ind:pre:3p; +bouilles bouille NOM f p 0.80 6.55 0.10 0.74 +bouilleur bouilleur NOM m s 0.00 0.34 0.00 0.27 +bouilleurs bouilleur NOM m p 0.00 0.34 0.00 0.07 +bouilli bouilli ADJ m s 1.21 4.26 0.37 2.36 +bouillie bouillie NOM f s 4.42 9.73 4.18 8.58 +bouillies bouillie NOM f p 4.42 9.73 0.23 1.15 +bouillir bouillir VER 7.62 13.58 3.60 4.93 inf; +bouillira bouillir VER 7.62 13.58 0.02 0.00 ind:fut:3s; +bouillirons bouillir VER 7.62 13.58 0.01 0.00 ind:fut:1p; +bouillis bouilli ADJ m p 1.21 4.26 0.25 0.07 +bouilloire bouilloire NOM f s 1.61 3.85 1.52 3.45 +bouilloires bouilloire NOM f p 1.61 3.85 0.09 0.41 +bouillon bouillon NOM m s 4.00 8.92 3.68 6.62 +bouillonnaient bouillonner VER 1.90 6.08 0.01 0.88 ind:imp:3p; +bouillonnais bouillonner VER 1.90 6.08 0.01 0.07 ind:imp:1s; +bouillonnait bouillonner VER 1.90 6.08 0.13 1.15 ind:imp:3s; +bouillonnant bouillonner VER 1.90 6.08 0.26 1.08 par:pre; +bouillonnante bouillonnant ADJ f s 0.42 2.50 0.14 0.95 +bouillonnantes bouillonnant ADJ f p 0.42 2.50 0.00 0.34 +bouillonnants bouillonnant ADJ m p 0.42 2.50 0.11 0.20 +bouillonne bouillonner VER 1.90 6.08 0.99 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouillonnement bouillonnement NOM m s 0.12 3.11 0.11 2.50 +bouillonnements bouillonnement NOM m p 0.12 3.11 0.01 0.61 +bouillonnent bouillonner VER 1.90 6.08 0.14 0.41 ind:pre:3p; +bouillonner bouillonner VER 1.90 6.08 0.35 0.68 inf; +bouillonneux bouillonneux ADJ m s 0.00 0.07 0.00 0.07 +bouillonnèrent bouillonner VER 1.90 6.08 0.00 0.07 ind:pas:3p; +bouillonné bouillonner VER m s 1.90 6.08 0.01 0.07 par:pas; +bouillonnée bouillonner VER f s 1.90 6.08 0.00 0.07 par:pas; +bouillonnées bouillonner VER f p 1.90 6.08 0.00 0.07 par:pas; +bouillonnés bouillonné NOM m p 0.00 0.34 0.00 0.20 +bouillons bouillon NOM m p 4.00 8.92 0.32 2.30 +bouillottait bouillotter VER 0.00 0.07 0.00 0.07 ind:imp:3s; +bouillotte bouillotte NOM f s 0.69 1.96 0.50 1.82 +bouillottes bouillotte NOM f p 0.69 1.96 0.19 0.14 +bouillu bouillu ADJ m s 0.01 0.07 0.01 0.07 +boui_boui boui_boui NOM m p 0.39 0.27 0.04 0.00 +boukha boukha NOM f s 0.14 0.07 0.14 0.07 +boula bouler VER 1.00 1.82 0.00 0.07 ind:pas:3s; +boulait bouler VER 1.00 1.82 0.00 0.07 ind:imp:3s; +boulange boulange NOM f s 0.10 0.27 0.10 0.27 +boulanger_pâtissier boulanger_pâtissier NOM m s 0.00 0.14 0.00 0.14 +boulanger boulanger NOM m s 3.00 13.31 2.44 8.78 +boulangerie boulangerie NOM f s 4.01 8.04 3.76 7.57 +boulangeries boulangerie NOM f p 4.01 8.04 0.25 0.47 +boulangers boulanger NOM m p 3.00 13.31 0.08 2.09 +boulangisme boulangisme NOM m s 0.00 0.07 0.00 0.07 +boulangère boulanger NOM f s 3.00 13.31 0.47 2.30 +boulangères boulanger NOM f p 3.00 13.31 0.00 0.14 +boulants boulant NOM m p 0.00 0.07 0.00 0.07 +boulder boulder NOM m s 0.46 0.00 0.46 0.00 +boule_de_neige boule_de_neige NOM f s 0.07 0.00 0.07 0.00 +boule boule NOM f s 30.68 61.22 19.29 38.31 +bouleau bouleau NOM m s 1.08 4.05 0.58 0.95 +bouleaux bouleau NOM m p 1.08 4.05 0.50 3.11 +bouledogue bouledogue NOM m s 0.81 2.09 0.71 1.96 +bouledogues bouledogue NOM m p 0.81 2.09 0.09 0.14 +boulent bouler VER 1.00 1.82 0.00 0.07 ind:pre:3p; +bouler bouler VER 1.00 1.82 0.45 0.34 inf; +boules boule NOM f p 30.68 61.22 11.40 22.91 +boulet boulet NOM m s 2.95 8.11 1.99 3.78 +boulets boulet NOM m p 2.95 8.11 0.96 4.32 +boulette boulette NOM f s 6.13 5.20 2.34 2.36 +boulettes boulette NOM f p 6.13 5.20 3.79 2.84 +boulevard boulevard NOM m s 4.87 61.15 4.19 52.03 +boulevardier boulevardier NOM m s 0.01 0.07 0.01 0.00 +boulevardiers boulevardier NOM m p 0.01 0.07 0.00 0.07 +boulevardière boulevardier ADJ f s 0.00 0.27 0.00 0.07 +boulevards boulevard NOM m p 4.87 61.15 0.68 9.12 +bouleversa bouleverser VER 13.79 27.03 0.26 2.36 ind:pas:3s; +bouleversaient bouleverser VER 13.79 27.03 0.01 0.47 ind:imp:3p; +bouleversait bouleverser VER 13.79 27.03 0.03 2.36 ind:imp:3s; +bouleversant bouleversant ADJ m s 1.61 5.27 1.24 1.28 +bouleversante bouleversant ADJ f s 1.61 5.27 0.29 2.43 +bouleversantes bouleversant ADJ f p 1.61 5.27 0.04 1.08 +bouleversants bouleversant ADJ m p 1.61 5.27 0.04 0.47 +bouleverse bouleverser VER 13.79 27.03 1.23 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouleversement bouleversement NOM m s 0.46 7.30 0.17 4.26 +bouleversements bouleversement NOM m p 0.46 7.30 0.29 3.04 +bouleversent bouleverser VER 13.79 27.03 0.13 0.74 ind:pre:3p; +bouleverser bouleverser VER 13.79 27.03 1.64 3.92 inf; +bouleversera bouleverser VER 13.79 27.03 0.16 0.00 ind:fut:3s; +bouleverseraient bouleverser VER 13.79 27.03 0.00 0.07 cnd:pre:3p; +bouleverserais bouleverser VER 13.79 27.03 0.01 0.00 cnd:pre:1s; +bouleverserait bouleverser VER 13.79 27.03 0.23 0.20 cnd:pre:3s; +bouleverseras bouleverser VER 13.79 27.03 0.01 0.00 ind:fut:2s; +bouleverserons bouleverser VER 13.79 27.03 0.00 0.07 ind:fut:1p; +bouleverseront bouleverser VER 13.79 27.03 0.00 0.14 ind:fut:3p; +bouleversions bouleverser VER 13.79 27.03 0.00 0.07 ind:imp:1p; +bouleversons bouleverser VER 13.79 27.03 0.01 0.00 imp:pre:1p; +bouleversèrent bouleverser VER 13.79 27.03 0.10 0.27 ind:pas:3p; +bouleversé bouleverser VER m s 13.79 27.03 4.85 8.45 par:pas; +bouleversée bouleverser VER f s 13.79 27.03 4.37 3.24 par:pas; +bouleversées bouleverser VER f p 13.79 27.03 0.03 0.27 par:pas; +bouleversés bouleverser VER m p 13.79 27.03 0.69 0.61 par:pas; +boulgour boulgour NOM m s 0.15 0.07 0.15 0.07 +boulier boulier NOM m s 0.16 1.96 0.15 1.89 +bouliers boulier NOM m p 0.16 1.96 0.01 0.07 +boulimie boulimie NOM f s 0.26 0.54 0.26 0.47 +boulimies boulimie NOM f p 0.26 0.54 0.00 0.07 +boulimique boulimique ADJ s 0.22 0.34 0.21 0.20 +boulimiques boulimique NOM p 0.14 0.07 0.04 0.00 +bouline bouline NOM f s 0.07 0.07 0.07 0.00 +boulines bouline NOM f p 0.07 0.07 0.00 0.07 +boulingrins boulingrin NOM m p 0.00 0.27 0.00 0.27 +boulins boulin NOM m p 0.00 0.07 0.00 0.07 +bouliste bouliste NOM s 0.02 0.61 0.02 0.00 +boulistes bouliste NOM p 0.02 0.61 0.00 0.61 +boulle boulle NOM m s 0.01 0.14 0.01 0.14 +boulochait boulocher VER 0.10 0.00 0.10 0.00 ind:imp:3s; +boulodrome boulodrome NOM m s 0.00 0.07 0.00 0.07 +bouloir bouloir NOM m s 0.01 0.00 0.01 0.00 +boulon boulon NOM m s 2.72 3.51 1.06 1.49 +boulonnage boulonnage NOM m s 0.01 0.00 0.01 0.00 +boulonnais boulonnais ADJ m s 0.00 0.07 0.00 0.07 +boulonnait boulonner VER 0.10 0.61 0.00 0.14 ind:imp:3s; +boulonnant boulonner VER 0.10 0.61 0.00 0.07 par:pre; +boulonne boulonner VER 0.10 0.61 0.01 0.07 imp:pre:2s;ind:pre:3s; +boulonner boulonner VER 0.10 0.61 0.04 0.14 inf; +boulonnerie boulonnerie NOM f s 0.00 0.07 0.00 0.07 +boulonné boulonner VER m s 0.10 0.61 0.03 0.07 par:pas; +boulonnée boulonner VER f s 0.10 0.61 0.01 0.07 par:pas; +boulonnés boulonner VER m p 0.10 0.61 0.01 0.07 par:pas; +boulons boulon NOM m p 2.72 3.51 1.66 2.03 +boulot_refuge boulot_refuge ADJ m s 0.00 0.07 0.00 0.07 +boulot boulot NOM m s 202.97 35.61 198.68 32.57 +boulots boulot NOM m p 202.97 35.61 4.30 3.04 +boulottait boulotter VER 0.16 0.41 0.00 0.07 ind:imp:3s; +boulotte boulotte NOM f s 0.27 0.27 0.26 0.27 +boulotter boulotter VER 0.16 0.41 0.12 0.14 inf; +boulottes boulot ADJ f p 8.21 3.04 0.01 0.07 +boulottées boulotter VER f p 0.16 0.41 0.00 0.07 par:pas; +boulé bouler VER m s 1.00 1.82 0.12 0.47 par:pas; +boulu boulu ADJ m s 0.00 0.14 0.00 0.07 +boulés bouler VER m p 1.00 1.82 0.00 0.14 par:pas; +boulus boulu ADJ m p 0.00 0.14 0.00 0.07 +boum boum ONO 5.20 2.09 5.20 2.09 +boumaient boumer VER 1.90 1.49 0.00 0.07 ind:imp:3p; +boumait boumer VER 1.90 1.49 0.00 0.07 ind:imp:3s; +boume boumer VER 1.90 1.49 1.90 1.15 imp:pre:2s;ind:pre:3s; +boums boum NOM m p 7.01 3.04 0.21 0.41 +boumé boumer VER m s 1.90 1.49 0.00 0.20 par:pas; +bouniouls bounioul NOM m p 0.00 0.07 0.00 0.07 +bouquet bouquet NOM m s 9.35 37.09 8.76 26.01 +bouquetier bouquetier NOM m s 0.00 0.41 0.00 0.07 +bouquetin bouquetin NOM m s 0.16 0.34 0.03 0.20 +bouquetins bouquetin NOM m p 0.16 0.34 0.14 0.14 +bouquetière bouquetier NOM f s 0.00 0.41 0.00 0.34 +bouquets bouquet NOM m p 9.35 37.09 0.59 11.08 +bouqueté bouqueté ADJ m s 0.00 0.07 0.00 0.07 +bouquin bouquin NOM m s 13.49 27.70 8.02 14.46 +bouquinage bouquinage NOM m s 0.00 0.07 0.00 0.07 +bouquinais bouquiner VER 0.81 2.03 0.14 0.14 ind:imp:1s; +bouquinait bouquiner VER 0.81 2.03 0.01 0.20 ind:imp:3s; +bouquinant bouquiner VER 0.81 2.03 0.01 0.07 par:pre; +bouquine bouquiner VER 0.81 2.03 0.45 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bouquiner bouquiner VER 0.81 2.03 0.17 1.08 inf; +bouquinerait bouquiner VER 0.81 2.03 0.00 0.07 cnd:pre:3s; +bouquineur bouquineur NOM m s 0.01 0.00 0.01 0.00 +bouquiniste bouquiniste NOM s 0.41 2.09 0.28 0.95 +bouquinistes bouquiniste NOM p 0.41 2.09 0.12 1.15 +bouquins bouquin NOM m p 13.49 27.70 5.46 13.24 +bouquiné bouquiner VER m s 0.81 2.03 0.03 0.00 par:pas; +bour bour NOM m s 0.09 0.14 0.09 0.14 +bourbe bourbe NOM f s 0.04 0.20 0.04 0.20 +bourbeuse bourbeux ADJ f s 0.03 1.89 0.00 0.61 +bourbeuses bourbeux ADJ f p 0.03 1.89 0.00 0.27 +bourbeux bourbeux ADJ m 0.03 1.89 0.03 1.01 +bourbier bourbier NOM m s 1.12 1.35 1.10 1.01 +bourbiers bourbier NOM m p 1.12 1.35 0.02 0.34 +bourbon bourbon NOM m s 2.76 6.96 2.66 6.96 +bourbonien bourbonien ADJ m s 0.00 0.95 0.00 0.81 +bourbonienne bourbonien ADJ f s 0.00 0.95 0.00 0.14 +bourbons bourbon NOM m p 2.76 6.96 0.10 0.00 +bourdaine bourdaine NOM f s 0.00 0.14 0.00 0.07 +bourdaines bourdaine NOM f p 0.00 0.14 0.00 0.07 +bourdalous bourdalou NOM m p 0.00 0.07 0.00 0.07 +bourde bourde NOM f s 1.54 0.95 1.10 0.54 +bourdes bourde NOM f p 1.54 0.95 0.44 0.41 +bourdillon bourdillon NOM m s 0.14 0.07 0.14 0.07 +bourdon bourdon NOM m s 1.28 5.54 1.17 4.73 +bourdonna bourdonner VER 2.20 9.53 0.00 0.41 ind:pas:3s; +bourdonnaient bourdonner VER 2.20 9.53 0.05 1.76 ind:imp:3p; +bourdonnais bourdonner VER 2.20 9.53 0.00 0.07 ind:imp:1s; +bourdonnait bourdonner VER 2.20 9.53 0.13 2.23 ind:imp:3s; +bourdonnant bourdonner VER 2.20 9.53 0.01 1.01 par:pre; +bourdonnante bourdonnant ADJ f s 0.06 2.97 0.03 1.35 +bourdonnantes bourdonnant ADJ f p 0.06 2.97 0.01 1.01 +bourdonnants bourdonnant ADJ m p 0.06 2.97 0.01 0.34 +bourdonne bourdonner VER 2.20 9.53 0.87 1.42 ind:pre:3s; +bourdonnement bourdonnement NOM m s 1.71 10.54 1.63 9.19 +bourdonnements bourdonnement NOM m p 1.71 10.54 0.08 1.35 +bourdonnent bourdonner VER 2.20 9.53 1.05 1.49 ind:pre:3p; +bourdonner bourdonner VER 2.20 9.53 0.07 1.08 inf; +bourdonné bourdonner VER m s 2.20 9.53 0.01 0.07 par:pas; +bourdons bourdon NOM m p 1.28 5.54 0.11 0.81 +bourg bourg NOM m s 1.60 15.88 1.48 13.85 +bourgade bourgade NOM f s 0.46 3.99 0.44 2.91 +bourgades bourgade NOM f p 0.46 3.99 0.02 1.08 +bourge bourge NOM s 1.22 0.47 0.90 0.07 +bourgeois bourgeois NOM m 6.02 28.65 4.01 23.04 +bourgeoise bourgeois ADJ f s 6.36 23.45 2.80 7.43 +bourgeoisement bourgeoisement ADV 0.00 0.54 0.00 0.54 +bourgeoises bourgeois ADJ f p 6.36 23.45 0.44 4.19 +bourgeoisie bourgeoisie NOM f s 3.65 10.27 3.65 10.14 +bourgeoisies bourgeoisie NOM f p 3.65 10.27 0.00 0.14 +bourgeoisisme bourgeoisisme NOM m s 0.00 0.07 0.00 0.07 +bourgeon bourgeon NOM m s 0.63 2.84 0.47 0.68 +bourgeonnaient bourgeonner VER 0.24 1.22 0.00 0.14 ind:imp:3p; +bourgeonnait bourgeonner VER 0.24 1.22 0.02 0.14 ind:imp:3s; +bourgeonnant bourgeonnant ADJ m s 0.04 0.41 0.01 0.14 +bourgeonnante bourgeonnant ADJ f s 0.04 0.41 0.03 0.07 +bourgeonnants bourgeonnant ADJ m p 0.04 0.41 0.00 0.20 +bourgeonne bourgeonner VER 0.24 1.22 0.03 0.34 ind:pre:1s;ind:pre:3s; +bourgeonnement bourgeonnement NOM m s 0.00 0.27 0.00 0.14 +bourgeonnements bourgeonnement NOM m p 0.00 0.27 0.00 0.14 +bourgeonnent bourgeonner VER 0.24 1.22 0.14 0.00 ind:pre:3p; +bourgeonner bourgeonner VER 0.24 1.22 0.02 0.34 inf; +bourgeonneraient bourgeonner VER 0.24 1.22 0.00 0.07 cnd:pre:3p; +bourgeonneuse bourgeonneux ADJ f s 0.00 0.07 0.00 0.07 +bourgeonné bourgeonner VER m s 0.24 1.22 0.02 0.00 par:pas; +bourgeons bourgeon NOM m p 0.63 2.84 0.16 2.16 +bourgeron bourgeron NOM m s 0.00 1.28 0.00 1.01 +bourgerons bourgeron NOM m p 0.00 1.28 0.00 0.27 +bourges bourge NOM p 1.22 0.47 0.32 0.41 +bourgmestre bourgmestre NOM m s 1.02 1.49 1.01 1.35 +bourgmestres bourgmestre NOM m p 1.02 1.49 0.01 0.14 +bourgogne bourgogne NOM m s 0.52 1.35 0.51 1.01 +bourgognes bourgogne NOM m p 0.52 1.35 0.01 0.34 +bourgs bourg NOM m p 1.60 15.88 0.12 2.03 +bourgueil bourgueil NOM m s 0.00 0.07 0.00 0.07 +bourgues bourgue NOM m p 0.00 0.07 0.00 0.07 +bourguignon bourguignon ADJ m s 0.29 4.19 0.25 2.30 +bourguignonne bourguignon ADJ f s 0.29 4.19 0.04 0.54 +bourguignonnes bourguignon ADJ f p 0.29 4.19 0.01 0.34 +bourguignons bourguignon NOM m p 0.01 1.89 0.00 1.08 +bouriates bouriate ADJ p 0.00 0.07 0.00 0.07 +bouriates bouriate NOM p 0.00 0.07 0.00 0.07 +bourlinguant bourlinguer VER 0.37 0.61 0.01 0.14 par:pre; +bourlingue bourlingue NOM f s 0.01 0.00 0.01 0.00 +bourlinguer bourlinguer VER 0.37 0.61 0.06 0.07 inf; +bourlinguera bourlinguer VER 0.37 0.61 0.00 0.07 ind:fut:3s; +bourlingueur bourlingueur NOM m s 0.02 0.34 0.02 0.27 +bourlingueuses bourlingueur NOM f p 0.02 0.34 0.00 0.07 +bourlinguons bourlinguer VER 0.37 0.61 0.00 0.07 ind:pre:1p; +bourlingué bourlinguer VER m s 0.37 0.61 0.29 0.27 par:pas; +bourra bourrer VER 22.37 29.39 0.00 1.01 ind:pas:3s; +bourrache bourrache NOM f s 0.01 0.07 0.01 0.07 +bourrade bourrade NOM f s 0.00 4.80 0.00 2.70 +bourrades bourrade NOM f p 0.00 4.80 0.00 2.09 +bourrage bourrage NOM m s 0.15 0.27 0.15 0.20 +bourrages bourrage NOM m p 0.15 0.27 0.00 0.07 +bourrai bourrer VER 22.37 29.39 0.00 0.20 ind:pas:1s; +bourraient bourrer VER 22.37 29.39 0.03 0.27 ind:imp:3p; +bourrais bourrer VER 22.37 29.39 0.02 0.14 ind:imp:1s; +bourrait bourrer VER 22.37 29.39 0.40 1.82 ind:imp:3s; +bourrant bourrer VER 22.37 29.39 0.03 0.95 par:pre; +bourrasque bourrasque NOM f s 0.77 6.01 0.55 3.92 +bourrasques bourrasque NOM f p 0.77 6.01 0.22 2.09 +bourratif bourratif ADJ m s 0.03 0.20 0.02 0.07 +bourrative bourratif ADJ f s 0.03 0.20 0.01 0.07 +bourratives bourratif ADJ f p 0.03 0.20 0.00 0.07 +bourre_mou bourre_mou NOM m s 0.01 0.00 0.01 0.00 +bourre_pif bourre_pif NOM m s 0.04 0.07 0.04 0.07 +bourre bourre NOM s 4.37 6.49 4.24 3.92 +bourreau bourreau NOM m s 9.83 12.91 7.28 7.09 +bourreaux bourreau NOM m p 9.83 12.91 2.55 5.81 +bourrelet bourrelet NOM m s 0.49 6.22 0.06 2.64 +bourrelets bourrelet NOM m p 0.49 6.22 0.43 3.58 +bourrelier bourrelier NOM m s 0.00 0.88 0.00 0.81 +bourreliers bourrelier NOM m p 0.00 0.88 0.00 0.07 +bourrellerie bourrellerie NOM f s 0.00 0.27 0.00 0.27 +bourrelé bourreler VER m s 0.00 0.41 0.00 0.27 par:pas; +bourrelée bourreler VER f s 0.00 0.41 0.00 0.07 par:pas; +bourrelés bourreler VER m p 0.00 0.41 0.00 0.07 par:pas; +bourrent bourrer VER 22.37 29.39 0.11 0.54 ind:pre:3p; +bourrer bourrer VER 22.37 29.39 3.48 3.72 inf; +bourrera bourrer VER 22.37 29.39 0.02 0.07 ind:fut:3s; +bourrerai bourrer VER 22.37 29.39 0.02 0.00 ind:fut:1s; +bourres bourrer VER 22.37 29.39 0.33 0.14 ind:pre:2s;sub:pre:2s; +bourreur bourreur NOM m s 0.00 0.14 0.00 0.14 +bourrez bourrer VER 22.37 29.39 0.24 0.07 imp:pre:2p;ind:pre:2p; +bourriche bourriche NOM f s 0.04 0.68 0.04 0.14 +bourriches bourriche NOM f p 0.04 0.68 0.00 0.54 +bourrichon bourrichon NOM m s 0.40 0.20 0.40 0.20 +bourricot bourricot NOM m s 0.52 1.08 0.49 0.34 +bourricots bourricot NOM m p 0.52 1.08 0.03 0.74 +bourrier bourrier NOM m 0.00 0.34 0.00 0.34 +bourrin bourrin NOM m s 0.56 1.62 0.53 1.08 +bourrine bourrine NOM f s 0.01 0.00 0.01 0.00 +bourrins bourrin NOM m p 0.56 1.62 0.04 0.54 +bourriquait bourriquer VER 0.00 0.07 0.00 0.07 ind:imp:3s; +bourrique bourrique NOM f s 1.97 2.97 1.90 2.09 +bourriques bourrique NOM f p 1.97 2.97 0.07 0.88 +bourriquet bourriquet NOM m s 0.16 0.14 0.16 0.07 +bourriquets bourriquet NOM m p 0.16 0.14 0.00 0.07 +bourrons bourrer VER 22.37 29.39 0.02 0.00 imp:pre:1p;ind:pre:1p; +bourrèrent bourrer VER 22.37 29.39 0.00 0.14 ind:pas:3p; +bourré bourrer VER m s 22.37 29.39 11.14 10.41 par:pas; +bourru bourru ADJ m s 0.34 5.20 0.28 3.51 +bourrée bourrer VER f s 22.37 29.39 2.65 2.57 par:pas; +bourrue bourru ADJ f s 0.34 5.20 0.02 1.35 +bourrées bourrer VER f p 22.37 29.39 0.26 2.03 par:pas; +bourrues bourru ADJ f p 0.34 5.20 0.02 0.20 +bourrés bourrer VER m p 22.37 29.39 1.57 3.58 par:pas; +bourrus bourru ADJ m p 0.34 5.20 0.03 0.14 +bourse bourse NOM f s 19.66 13.18 17.48 11.22 +bourses bourse NOM f p 19.66 13.18 2.18 1.96 +boursicot boursicot NOM m s 0.00 0.07 0.00 0.07 +boursicotage boursicotage NOM m s 0.00 0.07 0.00 0.07 +boursicoteur boursicoteur NOM m s 0.04 0.14 0.01 0.14 +boursicoteurs boursicoteur NOM m p 0.04 0.14 0.03 0.00 +boursier boursier ADJ m s 0.73 0.74 0.39 0.20 +boursiers boursier ADJ m p 0.73 0.74 0.13 0.07 +boursière boursier ADJ f s 0.73 0.74 0.15 0.14 +boursières boursier ADJ f p 0.73 0.74 0.07 0.34 +boursouflaient boursoufler VER 0.04 3.04 0.00 0.14 ind:imp:3p; +boursouflait boursoufler VER 0.04 3.04 0.00 0.34 ind:imp:3s; +boursoufle boursoufler VER 0.04 3.04 0.01 0.47 ind:pre:3s; +boursouflement boursouflement NOM m s 0.00 0.07 0.00 0.07 +boursoufler boursoufler VER 0.04 3.04 0.01 0.20 inf; +boursouflé boursouflé ADJ m s 0.25 3.31 0.19 1.22 +boursouflée boursouflé ADJ f s 0.25 3.31 0.03 0.88 +boursouflées boursouflé ADJ f p 0.25 3.31 0.04 0.41 +boursouflure boursouflure NOM f s 0.06 1.82 0.02 0.81 +boursouflures boursouflure NOM f p 0.06 1.82 0.03 1.01 +boursouflés boursouflé ADJ m p 0.25 3.31 0.00 0.81 +bous bouillir VER 7.62 13.58 0.60 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +bousards bousard NOM m p 0.00 0.07 0.00 0.07 +bousbir bousbir NOM m s 0.00 0.54 0.00 0.41 +bousbirs bousbir NOM m p 0.00 0.54 0.00 0.14 +bouscula bousculer VER 8.63 34.46 0.00 2.36 ind:pas:3s; +bousculade bousculade NOM f s 0.90 6.28 0.86 5.34 +bousculades bousculade NOM f p 0.90 6.28 0.03 0.95 +bousculai bousculer VER 8.63 34.46 0.00 0.20 ind:pas:1s; +bousculaient bousculer VER 8.63 34.46 0.05 3.65 ind:imp:3p; +bousculait bousculer VER 8.63 34.46 0.12 3.24 ind:imp:3s; +bousculant bousculer VER 8.63 34.46 0.04 4.53 par:pre; +bouscule bousculer VER 8.63 34.46 2.44 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bousculent bousculer VER 8.63 34.46 0.50 2.36 ind:pre:3p; +bousculer bousculer VER 8.63 34.46 2.17 5.07 inf; +bousculera bousculer VER 8.63 34.46 0.16 0.00 ind:fut:3s; +bousculerait bousculer VER 8.63 34.46 0.03 0.00 cnd:pre:3s; +bousculerons bousculer VER 8.63 34.46 0.00 0.07 ind:fut:1p; +bousculeront bousculer VER 8.63 34.46 0.04 0.14 ind:fut:3p; +bousculez bousculer VER 8.63 34.46 0.47 0.14 imp:pre:2p;ind:pre:2p; +bousculons bousculer VER 8.63 34.46 0.00 0.07 imp:pre:1p; +bousculât bousculer VER 8.63 34.46 0.00 0.07 sub:imp:3s; +bousculèrent bousculer VER 8.63 34.46 0.00 0.88 ind:pas:3p; +bousculé bousculer VER m s 8.63 34.46 2.01 4.19 par:pas; +bousculée bousculer VER f s 8.63 34.46 0.46 1.49 par:pas; +bousculées bousculer VER f p 8.63 34.46 0.01 0.20 par:pas; +bousculés bousculer VER m p 8.63 34.46 0.13 1.69 par:pas; +bouse bouse NOM f s 1.93 5.14 1.71 3.72 +bouses bouse NOM f p 1.93 5.14 0.22 1.42 +bouseuse bouseux NOM f s 2.44 1.22 0.16 0.07 +bouseux bouseux NOM m 2.44 1.22 2.29 1.15 +bousier bousier NOM m s 0.06 0.34 0.03 0.14 +bousiers bousier NOM m p 0.06 0.34 0.03 0.20 +bousillage bousillage NOM m s 0.15 0.27 0.15 0.20 +bousillages bousillage NOM m p 0.15 0.27 0.00 0.07 +bousillaient bousiller VER 12.91 3.24 0.00 0.07 ind:imp:3p; +bousillais bousiller VER 12.91 3.24 0.01 0.07 ind:imp:1s;ind:imp:2s; +bousillait bousiller VER 12.91 3.24 0.03 0.07 ind:imp:3s; +bousillant bousiller VER 12.91 3.24 0.02 0.27 par:pre; +bousille bousiller VER 12.91 3.24 2.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bousillent bousiller VER 12.91 3.24 0.20 0.00 ind:pre:3p; +bousiller bousiller VER 12.91 3.24 4.05 1.15 inf; +bousillera bousiller VER 12.91 3.24 0.19 0.00 ind:fut:3s; +bousillerai bousiller VER 12.91 3.24 0.07 0.00 ind:fut:1s; +bousillerait bousiller VER 12.91 3.24 0.01 0.00 cnd:pre:3s; +bousilleras bousiller VER 12.91 3.24 0.01 0.00 ind:fut:2s; +bousilleront bousiller VER 12.91 3.24 0.01 0.00 ind:fut:3p; +bousilles bousiller VER 12.91 3.24 0.70 0.07 ind:pre:2s; +bousilleur bousilleur NOM m s 0.03 0.00 0.03 0.00 +bousillez bousiller VER 12.91 3.24 0.42 0.07 imp:pre:2p;ind:pre:2p; +bousilliez bousiller VER 12.91 3.24 0.02 0.00 ind:imp:2p; +bousillons bousiller VER 12.91 3.24 0.03 0.00 imp:pre:1p; +bousillé bousiller VER m s 12.91 3.24 4.00 0.74 par:pas; +bousillée bousiller VER f s 12.91 3.24 0.52 0.34 par:pas; +bousillées bousiller VER f p 12.91 3.24 0.16 0.07 par:pas; +bousillés bousiller VER m p 12.91 3.24 0.11 0.20 par:pas; +bousin bousin NOM m s 0.00 0.14 0.00 0.07 +bousine bousine NOM f s 0.00 0.14 0.00 0.14 +bousins bousin NOM m p 0.00 0.14 0.00 0.07 +boussole boussole NOM f s 2.91 4.66 2.71 4.05 +boussoles boussole NOM f p 2.91 4.66 0.20 0.61 +boustifaille boustifaille NOM f s 0.23 0.81 0.23 0.74 +boustifailles boustifaille NOM f p 0.23 0.81 0.00 0.07 +boustifailleuse boustifailleur NOM f s 0.00 0.07 0.00 0.07 +boustrophédon boustrophédon NOM m s 0.00 0.20 0.00 0.20 +bout_dehors bout_dehors NOM m 0.00 0.20 0.00 0.20 +bout_rimé bout_rimé NOM m s 0.14 0.07 0.14 0.00 +bout bout NOM m s 128.33 398.11 121.12 375.68 +bouta bouter VER 0.47 1.55 0.00 0.14 ind:pas:3s; +boutade boutade NOM f s 0.25 1.49 0.19 1.35 +boutades boutade NOM f p 0.25 1.49 0.06 0.14 +boutanche boutanche NOM f s 0.17 2.16 0.16 1.42 +boutanches boutanche NOM f p 0.17 2.16 0.01 0.74 +boutargue boutargue NOM f s 0.00 0.07 0.00 0.07 +boutasse bouter VER 0.47 1.55 0.00 0.54 sub:imp:1s; +boute_en_train boute_en_train NOM m 0.39 0.74 0.39 0.74 +boute bouter VER 0.47 1.55 0.03 0.27 ind:pre:3s; +boutefeu boutefeu NOM s 0.02 0.41 0.02 0.41 +boutefeux boutefeux NOM p 0.00 0.20 0.00 0.20 +bouteille bouteille NOM f s 57.24 104.05 42.31 70.41 +bouteilles bouteille NOM f p 57.24 104.05 14.92 33.65 +bouteillon bouteillon NOM m s 0.00 0.68 0.00 0.47 +bouteillons bouteillon NOM m p 0.00 0.68 0.00 0.20 +bouter bouter VER 0.47 1.55 0.16 0.20 inf; +bouterais bouter VER 0.47 1.55 0.00 0.07 cnd:pre:1s; +bouteur bouteur NOM m s 0.02 0.07 0.02 0.00 +bouteurs bouteur NOM m p 0.02 0.07 0.00 0.07 +bouthéon bouthéon NOM m s 0.00 1.15 0.00 0.68 +bouthéons bouthéon NOM m p 0.00 1.15 0.00 0.47 +boutillier boutillier NOM m s 0.00 0.14 0.00 0.14 +boutique_cadeaux boutique_cadeaux NOM f s 0.02 0.00 0.02 0.00 +boutique boutique NOM f s 26.53 48.92 22.29 36.01 +boutiquer boutiquer VER 0.00 0.14 0.00 0.07 inf; +boutiques boutique NOM f p 26.53 48.92 4.24 12.91 +boutiquier boutiquier ADJ m s 0.14 0.61 0.14 0.41 +boutiquiers boutiquier NOM m p 0.18 1.76 0.04 1.15 +boutiquière boutiquier NOM f s 0.18 1.76 0.00 0.20 +boutiquières boutiquier NOM f p 0.18 1.76 0.00 0.07 +boutiqué boutiquer VER m s 0.00 0.14 0.00 0.07 par:pas; +boutisses boutisse NOM f p 0.00 0.07 0.00 0.07 +boutoir boutoir NOM m s 0.00 2.23 0.00 2.23 +bouton_d_or bouton_d_or NOM m s 0.01 0.20 0.00 0.14 +bouton_pression bouton_pression NOM m s 0.04 0.14 0.02 0.07 +bouton bouton NOM m s 32.44 44.46 21.29 21.55 +boutonna boutonner VER 2.17 6.22 0.00 0.41 ind:pas:3s; +boutonnage boutonnage NOM m s 0.00 0.34 0.00 0.34 +boutonnaient boutonner VER 2.17 6.22 0.00 0.07 ind:imp:3p; +boutonnais boutonner VER 2.17 6.22 0.01 0.07 ind:imp:1s;ind:imp:2s; +boutonnait boutonner VER 2.17 6.22 0.00 0.41 ind:imp:3s; +boutonnant boutonner VER 2.17 6.22 0.01 0.34 par:pre; +boutonne boutonner VER 2.17 6.22 0.98 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boutonnent boutonner VER 2.17 6.22 0.01 0.20 ind:pre:3p; +boutonner boutonner VER 2.17 6.22 0.72 1.35 inf; +boutonnerait boutonner VER 2.17 6.22 0.00 0.07 cnd:pre:3s; +boutonnes boutonner VER 2.17 6.22 0.03 0.00 ind:pre:2s; +boutonneuse boutonneux ADJ f s 0.59 1.76 0.03 0.14 +boutonneuses boutonneux ADJ f p 0.59 1.76 0.01 0.07 +boutonneux boutonneux ADJ m 0.59 1.76 0.55 1.55 +boutonnez boutonner VER 2.17 6.22 0.23 0.00 imp:pre:2p; +boutonnière boutonnière NOM f s 0.73 3.65 0.45 3.18 +boutonnières boutonnière NOM f p 0.73 3.65 0.28 0.47 +boutonné boutonner VER m s 2.17 6.22 0.07 0.81 par:pas; +boutonnée boutonner VER f s 2.17 6.22 0.11 0.95 par:pas; +boutonnées boutonner VER f p 2.17 6.22 0.00 0.34 par:pas; +boutonnés boutonner VER m p 2.17 6.22 0.01 0.27 par:pas; +bouton_d_or bouton_d_or NOM m p 0.01 0.20 0.01 0.07 +bouton_pression bouton_pression NOM m p 0.04 0.14 0.02 0.07 +boutons bouton NOM m p 32.44 44.46 11.16 22.91 +boutre boutre NOM m s 0.00 0.81 0.00 0.68 +boutres boutre NOM m p 0.00 0.81 0.00 0.14 +bout_rimé bout_rimé NOM m p 0.14 0.07 0.00 0.07 +bouts bout NOM m p 128.33 398.11 7.21 22.43 +boëttes boëtte NOM f p 0.00 0.07 0.00 0.07 +bouté bouter VER m s 0.47 1.55 0.14 0.00 par:pas; +boutée bouter VER f s 0.47 1.55 0.00 0.07 par:pas; +boutées bouter VER f p 0.47 1.55 0.00 0.07 par:pas; +bouture bouture NOM f s 0.07 0.47 0.03 0.14 +boutures bouture NOM f p 0.07 0.47 0.04 0.34 +boutés bouter VER m p 0.47 1.55 0.14 0.14 par:pas; +bouée bouée NOM f s 2.04 5.47 1.30 4.59 +bouées bouée NOM f p 2.04 5.47 0.73 0.88 +bouvet bouvet NOM m s 0.00 0.07 0.00 0.07 +bouvier bouvier NOM m s 0.15 1.01 0.12 0.68 +bouviers bouvier NOM m p 0.15 1.01 0.03 0.34 +bouvillon bouvillon NOM m s 0.04 0.20 0.04 0.20 +bouvreuil bouvreuil NOM m s 0.04 0.27 0.01 0.07 +bouvreuils bouvreuil NOM m p 0.04 0.27 0.03 0.20 +bouzine bouzine NOM f s 0.00 0.27 0.00 0.27 +bouzouki bouzouki NOM m s 0.21 0.47 0.21 0.47 +bouzy bouzy NOM m 0.00 0.07 0.00 0.07 +bovidé bovidé NOM m s 0.01 0.68 0.01 0.14 +bovidés bovidé NOM m p 0.01 0.68 0.00 0.54 +bovin bovin ADJ m s 0.28 1.49 0.09 0.47 +bovine bovin ADJ f s 0.28 1.49 0.10 0.68 +bovines bovin ADJ f p 0.28 1.49 0.03 0.07 +bovins bovin NOM m p 0.23 1.49 0.17 1.22 +bow_window bow_window NOM m s 0.00 0.54 0.00 0.27 +bow_window bow_window NOM m p 0.00 0.54 0.00 0.27 +bowling bowling NOM m s 0.00 1.08 0.00 1.08 +box_calf box_calf NOM m s 0.00 0.27 0.00 0.27 +box_office box_office NOM m s 0.35 0.20 0.35 0.14 +box_office box_office NOM m p 0.35 0.20 0.00 0.07 +box box NOM m 2.48 4.05 2.48 4.05 +boxa boxer VER 5.78 2.84 0.01 0.20 ind:pas:3s; +boxaient boxer VER 5.78 2.84 0.00 0.14 ind:imp:3p; +boxais boxer VER 5.78 2.84 0.29 0.00 ind:imp:1s;ind:imp:2s; +boxait boxer VER 5.78 2.84 0.08 0.27 ind:imp:3s; +boxant boxer VER 5.78 2.84 0.05 0.07 par:pre; +boxe boxe NOM f s 9.32 8.58 9.20 7.64 +boxent boxer VER 5.78 2.84 0.01 0.00 ind:pre:3p; +boxer_short boxer_short NOM m s 0.05 0.07 0.05 0.07 +boxer boxer VER 5.78 2.84 3.14 1.28 inf; +boxerai boxer VER 5.78 2.84 0.06 0.00 ind:fut:1s; +boxerais boxer VER 5.78 2.84 0.04 0.00 cnd:pre:1s; +boxerez boxer VER 5.78 2.84 0.02 0.00 ind:fut:2p; +boxers boxer NOM m p 0.75 0.34 0.13 0.14 +boxes boxer VER 5.78 2.84 0.62 0.14 ind:pre:2s; +boxeur boxeur NOM m s 8.71 7.97 6.32 6.15 +boxeurs boxeur NOM m p 8.71 7.97 2.04 1.82 +boxeuse boxeur NOM f s 8.71 7.97 0.35 0.00 +boxez boxer VER 5.78 2.84 0.41 0.07 imp:pre:2p;ind:pre:2p; +boxon boxon NOM m s 0.62 1.01 0.60 0.74 +boxons boxon NOM m p 0.62 1.01 0.02 0.27 +boxé boxer VER m s 5.78 2.84 0.41 0.34 par:pas; +boxés boxer VER m p 5.78 2.84 0.00 0.07 par:pas; +boy_friend boy_friend NOM m s 0.00 0.14 0.00 0.14 +boy_scout boy_scout NOM m s 2.09 1.62 0.86 0.68 +boy_scoutesque boy_scoutesque ADJ f s 0.00 0.07 0.00 0.07 +boy_scout boy_scout NOM m p 2.09 1.62 1.22 0.95 +boy boy NOM m s 12.82 8.51 8.36 6.42 +boyard boyard NOM m s 3.96 0.88 1.72 0.54 +boyards boyard NOM m p 3.96 0.88 2.24 0.34 +boyau boyau NOM m s 2.86 13.58 0.19 8.24 +boyauter boyauter VER 0.00 0.07 0.00 0.07 inf; +boyaux boyau NOM m p 2.86 13.58 2.67 5.34 +boycott boycott NOM m s 0.64 0.00 0.64 0.00 +boycotte boycotter VER 0.67 0.14 0.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +boycottent boycotter VER 0.67 0.14 0.17 0.00 ind:pre:3p; +boycotter boycotter VER 0.67 0.14 0.32 0.07 inf; +boycotterai boycotter VER 0.67 0.14 0.01 0.00 ind:fut:1s; +boycotteront boycotter VER 0.67 0.14 0.00 0.07 ind:fut:3p; +boycottes boycotter VER 0.67 0.14 0.01 0.00 ind:pre:2s; +boycottez boycotter VER 0.67 0.14 0.04 0.00 imp:pre:2p; +boycotté boycotter VER m s 0.67 0.14 0.02 0.00 par:pas; +boys boy NOM m p 12.82 8.51 4.46 2.09 +bozo bozo NOM m s 0.25 0.00 0.25 0.00 +brûla brûler VER 110.28 104.73 0.76 2.77 ind:pas:3s; +brûlage brûlage NOM m s 0.10 0.20 0.10 0.20 +brûlai brûler VER 110.28 104.73 0.01 0.27 ind:pas:1s; +brûlaient brûler VER 110.28 104.73 0.97 7.03 ind:imp:3p; +brûlais brûler VER 110.28 104.73 0.50 1.28 ind:imp:1s;ind:imp:2s; +brûlait brûler VER 110.28 104.73 2.69 18.72 ind:imp:3s; +brûlant brûlant ADJ m s 10.48 36.28 4.48 15.68 +brûlante brûlant ADJ f s 10.48 36.28 3.75 10.74 +brûlantes brûlant ADJ f p 10.48 36.28 1.20 4.73 +brûlants brûlant ADJ m p 10.48 36.28 1.06 5.14 +brûlasse brûler VER 110.28 104.73 0.00 0.07 sub:imp:1s; +brûlassent brûler VER 110.28 104.73 0.00 0.07 sub:imp:3p; +brûle_gueule brûle_gueule NOM m s 0.00 0.41 0.00 0.41 +brûle brûler VER 110.28 104.73 33.66 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +brûlent brûler VER 110.28 104.73 5.41 4.73 ind:pre:3p; +brûler brûler VER 110.28 104.73 23.14 21.15 inf;; +brûlera brûler VER 110.28 104.73 1.75 0.47 ind:fut:3s; +brûlerai brûler VER 110.28 104.73 1.17 0.41 ind:fut:1s; +brûleraient brûler VER 110.28 104.73 0.05 0.20 cnd:pre:3p; +brûlerais brûler VER 110.28 104.73 0.34 0.20 cnd:pre:1s;cnd:pre:2s; +brûlerait brûler VER 110.28 104.73 0.38 1.08 cnd:pre:3s; +brûleras brûler VER 110.28 104.73 0.37 0.07 ind:fut:2s; +brûlerez brûler VER 110.28 104.73 0.18 0.00 ind:fut:2p; +brûlerons brûler VER 110.28 104.73 0.23 0.20 ind:fut:1p; +brûleront brûler VER 110.28 104.73 1.51 0.41 ind:fut:3p; +brûles brûler VER 110.28 104.73 1.57 0.41 ind:pre:2s;sub:pre:2s; +brûleur brûleur NOM m s 0.37 0.34 0.12 0.14 +brûleurs brûleur NOM m p 0.37 0.34 0.23 0.20 +brûleuse brûleur NOM f s 0.37 0.34 0.01 0.00 +brûlez brûler VER 110.28 104.73 4.89 0.61 imp:pre:2p;ind:pre:2p; +brûliez brûler VER 110.28 104.73 0.05 0.00 ind:imp:2p; +brûlions brûler VER 110.28 104.73 0.06 0.07 ind:imp:1p; +brûlis brûlis NOM m 0.11 0.34 0.11 0.34 +brûloirs brûloir NOM m p 0.00 0.07 0.00 0.07 +brûlons brûler VER 110.28 104.73 1.45 0.27 imp:pre:1p;ind:pre:1p; +brûlât brûler VER 110.28 104.73 0.00 0.41 sub:imp:3s; +brûlot brûlot NOM m s 0.14 1.35 0.01 0.74 +brûlots brûlot NOM m p 0.14 1.35 0.14 0.61 +brûlèrent brûler VER 110.28 104.73 0.11 0.54 ind:pas:3p; +brûlé brûler VER m s 110.28 104.73 20.41 11.42 par:pas;par:pas;par:pas; +brûlée brûler VER f s 110.28 104.73 3.57 3.51 par:pas; +brûlées brûler VER f p 110.28 104.73 1.11 1.96 par:pas; +brûlure brûlure NOM f s 6.47 12.50 2.31 9.19 +brûlures brûlure NOM f p 6.47 12.50 4.16 3.31 +brûlés brûler VER m p 110.28 104.73 2.33 3.18 par:pas; +brabant brabant NOM m s 0.20 0.00 0.20 0.00 +brabançon brabançon ADJ m s 0.00 0.27 0.00 0.20 +brabançonne brabançon ADJ f s 0.00 0.27 0.00 0.07 +brabançons brabançon NOM m p 0.00 0.07 0.00 0.07 +bracelet_montre bracelet_montre NOM m s 0.00 2.70 0.00 1.76 +bracelet bracelet NOM m s 13.45 9.53 9.81 5.74 +bracelet_montre bracelet_montre NOM m p 0.00 2.70 0.00 0.95 +bracelets bracelet NOM m p 13.45 9.53 3.63 3.78 +brachial brachial ADJ m s 0.19 0.00 0.12 0.00 +brachiale brachial ADJ f s 0.19 0.00 0.07 0.00 +brachiocéphalique brachiocéphalique ADJ m s 0.01 0.00 0.01 0.00 +brachiosaure brachiosaure NOM m s 0.02 0.00 0.02 0.00 +brachycéphale brachycéphale NOM s 0.00 0.07 0.00 0.07 +brachycéphales brachycéphale ADJ m p 0.00 0.14 0.00 0.14 +braco braco NOM m s 0.00 0.20 0.00 0.20 +braconnage braconnage NOM m s 0.28 0.61 0.27 0.54 +braconnages braconnage NOM m p 0.28 0.61 0.01 0.07 +braconnais braconner VER 0.18 0.95 0.01 0.07 ind:imp:1s; +braconnait braconner VER 0.18 0.95 0.01 0.07 ind:imp:3s; +braconnant braconner VER 0.18 0.95 0.01 0.14 par:pre; +braconne braconner VER 0.18 0.95 0.02 0.14 imp:pre:2s;ind:pre:3s; +braconner braconner VER 0.18 0.95 0.08 0.47 inf; +braconnez braconner VER 0.18 0.95 0.02 0.07 ind:pre:2p; +braconnier braconnier NOM m s 0.85 2.77 0.48 2.03 +braconniers braconnier NOM m p 0.85 2.77 0.36 0.61 +braconnière braconnier NOM f s 0.85 2.77 0.01 0.07 +braconnières braconnier NOM f p 0.85 2.77 0.00 0.07 +braconné braconner VER m s 0.18 0.95 0.02 0.00 par:pas; +bractées bractée NOM f p 0.00 0.20 0.00 0.20 +bradaient brader VER 0.98 1.22 0.00 0.07 ind:imp:3p; +bradait brader VER 0.98 1.22 0.01 0.00 ind:imp:3s; +brade brader VER 0.98 1.22 0.26 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bradent brader VER 0.98 1.22 0.01 0.14 ind:pre:3p; +brader brader VER 0.98 1.22 0.48 0.20 inf; +braderai brader VER 0.98 1.22 0.10 0.00 ind:fut:1s; +braderais brader VER 0.98 1.22 0.01 0.00 cnd:pre:1s; +braderait brader VER 0.98 1.22 0.01 0.00 cnd:pre:3s; +braderie braderie NOM f s 0.31 0.14 0.31 0.07 +braderies braderie NOM f p 0.31 0.14 0.00 0.07 +bradillon bradillon NOM m s 0.00 0.20 0.00 0.07 +bradillons bradillon NOM m p 0.00 0.20 0.00 0.14 +bradons brader VER 0.98 1.22 0.00 0.07 imp:pre:1p; +bradé brader VER m s 0.98 1.22 0.07 0.41 par:pas; +bradée brader VER f s 0.98 1.22 0.03 0.14 par:pas; +bradycardie bradycardie NOM f s 0.17 0.00 0.17 0.00 +bragard bragard NOM m s 0.00 0.07 0.00 0.07 +braguette braguette NOM f s 3.96 6.69 3.85 5.95 +braguettes braguette NOM f p 3.96 6.69 0.11 0.74 +brahmane brahmane NOM m s 0.02 0.47 0.00 0.20 +brahmanes brahmane NOM m p 0.02 0.47 0.02 0.27 +brahmanique brahmanique ADJ m s 0.00 0.07 0.00 0.07 +brahmanisme brahmanisme NOM m s 0.02 0.07 0.02 0.07 +brahmanistes brahmaniste ADJ m p 0.00 0.07 0.00 0.07 +brahmanistes brahmaniste NOM p 0.00 0.07 0.00 0.07 +brai brai NOM m s 0.02 0.00 0.01 0.00 +braie brayer VER 0.01 0.34 0.01 0.14 ind:pre:3s; +braiement braiement NOM m s 0.01 0.07 0.01 0.00 +braiements braiement NOM m p 0.01 0.07 0.00 0.07 +braies braie NOM f p 0.03 0.81 0.03 0.81 +brailla brailler VER 2.90 14.53 0.00 1.42 ind:pas:3s; +braillaient brailler VER 2.90 14.53 0.00 0.95 ind:imp:3p; +braillait brailler VER 2.90 14.53 0.16 1.96 ind:imp:3s; +braillant brailler VER 2.90 14.53 0.11 1.96 par:pre; +braillard braillard ADJ m s 0.21 2.16 0.10 0.20 +braillarde braillard ADJ f s 0.21 2.16 0.04 0.14 +braillardes braillard ADJ f p 0.21 2.16 0.01 0.07 +braillards braillard ADJ m p 0.21 2.16 0.07 1.76 +braille braille NOM m s 0.55 0.47 0.55 0.47 +braillement braillement NOM m s 0.01 0.54 0.01 0.14 +braillements braillement NOM m p 0.01 0.54 0.00 0.41 +braillent brailler VER 2.90 14.53 0.15 0.74 ind:pre:3p; +brailler brailler VER 2.90 14.53 1.62 3.18 inf; +braillera brailler VER 2.90 14.53 0.14 0.00 ind:fut:3s; +braillerai brailler VER 2.90 14.53 0.16 0.00 ind:fut:1s; +brailles brailler VER 2.90 14.53 0.06 0.07 ind:pre:2s; +brailleur brailleur ADJ m s 0.01 0.07 0.01 0.00 +brailleur brailleur NOM m s 0.03 0.07 0.01 0.00 +brailleurs brailleur NOM m p 0.03 0.07 0.01 0.07 +brailleuse brailleur NOM f s 0.03 0.07 0.01 0.00 +braillez brailler VER 2.90 14.53 0.15 0.00 imp:pre:2p;ind:pre:2p; +braillèrent brailler VER 2.90 14.53 0.00 0.27 ind:pas:3p; +braillé brailler VER m s 2.90 14.53 0.07 1.15 par:pas; +braillée brailler VER f s 2.90 14.53 0.00 0.07 par:pas; +braillés brailler VER m p 2.90 14.53 0.00 0.07 par:pas; +braiment braiment NOM m s 7.91 0.34 2.69 0.27 +braiments braiment NOM m p 7.91 0.34 5.22 0.07 +brain_trust brain_trust NOM m s 0.03 0.07 0.03 0.07 +brainstorming brainstorming NOM m s 0.04 0.00 0.04 0.00 +braire braire VER 0.37 0.61 0.34 0.61 inf; +brais brai NOM m p 0.02 0.00 0.01 0.00 +braise braise NOM f s 2.04 12.23 1.12 5.88 +braiser braiser VER 0.08 0.27 0.04 0.00 inf; +braises braise NOM f p 2.04 12.23 0.93 6.35 +braisillant braisillant ADJ m s 0.00 0.14 0.00 0.07 +braisillante braisillant ADJ f s 0.00 0.14 0.00 0.07 +braisé braisé ADJ m s 0.42 0.20 0.28 0.07 +braisée braisé ADJ f s 0.42 0.20 0.14 0.07 +braisés braisé ADJ m p 0.42 0.20 0.01 0.07 +brait braire VER 0.37 0.61 0.03 0.00 ind:pre:3s; +brama bramer VER 0.12 4.26 0.00 0.54 ind:pas:3s; +bramaient bramer VER 0.12 4.26 0.00 0.14 ind:imp:3p; +bramait bramer VER 0.12 4.26 0.00 0.54 ind:imp:3s; +bramant bramer VER 0.12 4.26 0.00 0.34 par:pre; +brame brame NOM m s 0.01 3.58 0.01 3.24 +bramement bramement NOM m s 0.11 0.20 0.10 0.14 +bramements bramement NOM m p 0.11 0.20 0.01 0.07 +brament bramer VER 0.12 4.26 0.00 0.07 ind:pre:3p; +bramer bramer VER 0.12 4.26 0.01 1.28 inf; +brames bramer VER 0.12 4.26 0.10 0.00 ind:pre:2s; +bramé bramer VER m s 0.12 4.26 0.00 0.81 par:pas; +bramées bramer VER f p 0.12 4.26 0.00 0.07 par:pas; +bran bran NOM m s 0.16 0.07 0.16 0.07 +brancard brancard NOM m s 2.47 7.30 1.97 3.11 +brancarder brancarder VER 0.01 0.00 0.01 0.00 inf; +brancardier brancardier NOM m s 1.42 3.92 0.55 0.54 +brancardiers brancardier NOM m p 1.42 3.92 0.86 3.38 +brancards brancard NOM m p 2.47 7.30 0.51 4.19 +brancha brancher VER 20.34 8.04 0.01 0.27 ind:pas:3s; +branchage branchage NOM m s 0.41 4.46 0.00 0.81 +branchages branchage NOM m p 0.41 4.46 0.41 3.65 +branchai brancher VER 20.34 8.04 0.00 0.14 ind:pas:1s; +branchaient brancher VER 20.34 8.04 0.02 0.20 ind:imp:3p; +branchais brancher VER 20.34 8.04 0.05 0.07 ind:imp:1s; +branchait brancher VER 20.34 8.04 0.23 0.54 ind:imp:3s; +branchant brancher VER 20.34 8.04 0.06 0.07 par:pre; +branche branche NOM f s 18.07 85.61 11.85 24.12 +branchement branchement NOM m s 0.52 0.27 0.33 0.20 +branchements branchement NOM m p 0.52 0.27 0.20 0.07 +branchent brancher VER 20.34 8.04 0.30 0.00 ind:pre:3p; +brancher brancher VER 20.34 8.04 4.40 1.55 inf; +branchera brancher VER 20.34 8.04 0.04 0.00 ind:fut:3s; +brancheraient brancher VER 20.34 8.04 0.00 0.07 cnd:pre:3p; +brancherait brancher VER 20.34 8.04 0.39 0.00 cnd:pre:3s; +brancheras brancher VER 20.34 8.04 0.01 0.00 ind:fut:2s; +brancherez brancher VER 20.34 8.04 0.01 0.07 ind:fut:2p; +branches branche NOM f p 18.07 85.61 6.22 61.49 +branchette branchette NOM f s 0.16 2.30 0.16 0.54 +branchettes branchette NOM f p 0.16 2.30 0.00 1.76 +branchez brancher VER 20.34 8.04 1.44 0.00 imp:pre:2p;ind:pre:2p; +branchiale branchial ADJ f s 0.03 0.00 0.03 0.00 +branchie branchie NOM f s 0.50 0.20 0.03 0.00 +branchies branchie NOM f p 0.50 0.20 0.47 0.20 +branchons brancher VER 20.34 8.04 0.06 0.07 imp:pre:1p;ind:pre:1p; +branché brancher VER m s 20.34 8.04 4.72 1.96 par:pas; +branchu branchu ADJ m s 0.01 0.27 0.00 0.07 +branchée brancher VER f s 20.34 8.04 1.23 0.88 par:pas; +branchue branchu ADJ f s 0.01 0.27 0.00 0.07 +branchées branché ADJ f p 4.64 1.42 0.17 0.00 +branchés branché ADJ m p 4.64 1.42 0.83 0.34 +branchus branchu ADJ m p 0.01 0.27 0.01 0.14 +brand brand NOM m s 0.02 0.14 0.02 0.00 +brandît brandir VER 5.40 22.09 0.00 0.07 sub:imp:3s; +brandade brandade NOM f s 0.14 0.14 0.14 0.14 +brande brand NOM f s 0.02 0.14 0.00 0.14 +brandebourgeois brandebourgeois ADJ m s 0.11 0.14 0.11 0.14 +brandebourgs brandebourg NOM m p 0.00 1.15 0.00 1.15 +brandevin brandevin NOM m s 0.01 0.00 0.01 0.00 +brandevinier brandevinier NOM m s 0.00 0.41 0.00 0.41 +brandi brandir VER m s 5.40 22.09 1.08 2.16 par:pas; +brandie brandir VER f s 5.40 22.09 0.27 0.54 par:pas; +brandies brandir VER f p 5.40 22.09 0.03 0.54 par:pas; +brandillon brandillon NOM m s 0.00 0.61 0.00 0.34 +brandillons brandillon NOM m p 0.00 0.61 0.00 0.27 +brandir brandir VER 5.40 22.09 1.01 1.42 inf; +brandira brandir VER 5.40 22.09 0.27 0.07 ind:fut:3s; +brandirait brandir VER 5.40 22.09 0.00 0.07 cnd:pre:3s; +brandirent brandir VER 5.40 22.09 0.00 0.14 ind:pas:3p; +brandiront brandir VER 5.40 22.09 0.14 0.07 ind:fut:3p; +brandis brandir VER m p 5.40 22.09 0.36 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +brandissaient brandir VER 5.40 22.09 0.01 0.88 ind:imp:3p; +brandissais brandir VER 5.40 22.09 0.05 0.34 ind:imp:1s;ind:imp:2s; +brandissait brandir VER 5.40 22.09 0.07 3.18 ind:imp:3s; +brandissant brandir VER 5.40 22.09 0.84 5.54 par:pre; +brandisse brandir VER 5.40 22.09 0.01 0.14 sub:pre:3s; +brandissent brandir VER 5.40 22.09 0.47 0.68 ind:pre:3p; +brandissez brandir VER 5.40 22.09 0.28 0.07 imp:pre:2p;ind:pre:2p; +brandissiez brandir VER 5.40 22.09 0.01 0.00 ind:imp:2p; +brandissions brandir VER 5.40 22.09 0.00 0.07 ind:imp:1p; +brandissons brandir VER 5.40 22.09 0.01 0.07 imp:pre:1p; +brandit brandir VER 5.40 22.09 0.49 5.34 ind:pre:3s;ind:pas:3s; +brandon brandon NOM m s 0.12 0.81 0.02 0.68 +brandons brandon NOM m p 0.12 0.81 0.10 0.14 +brandouille brandouiller VER 0.00 0.07 0.00 0.07 ind:pre:3s; +brandy brandy NOM m s 3.10 0.14 3.10 0.14 +branla branler VER 12.72 9.93 0.00 0.27 ind:pas:3s; +branlage branlage NOM m 0.02 0.07 0.02 0.07 +branlaient branler VER 12.72 9.93 0.03 0.34 ind:imp:3p; +branlais branler VER 12.72 9.93 0.33 0.27 ind:imp:1s;ind:imp:2s; +branlait branler VER 12.72 9.93 0.11 1.49 ind:imp:3s; +branlant branlant ADJ m s 0.56 4.66 0.20 1.55 +branlante branlant ADJ f s 0.56 4.66 0.28 1.76 +branlantes branlant ADJ f p 0.56 4.66 0.07 0.95 +branlants branlant ADJ m p 0.56 4.66 0.01 0.41 +branle_bas branle_bas NOM m 0.29 1.82 0.29 1.82 +branle branler VER 12.72 9.93 5.07 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +branlement branlement NOM m s 0.01 0.07 0.01 0.07 +branlent branler VER 12.72 9.93 0.27 0.34 ind:pre:3p; +branler branler VER 12.72 9.93 4.82 3.04 inf; +branlera branler VER 12.72 9.93 0.02 0.00 ind:fut:3s; +branlerais branler VER 12.72 9.93 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +branlerait branler VER 12.72 9.93 0.00 0.07 cnd:pre:3s; +branles branler VER 12.72 9.93 1.27 0.34 ind:pre:2s; +branlette branlette NOM f s 3.25 0.68 2.68 0.41 +branlettes branlette NOM f p 3.25 0.68 0.57 0.27 +branleur branleur NOM m s 5.08 1.35 2.90 0.34 +branleurs branleur NOM m p 5.08 1.35 2.15 0.81 +branleuse branleur NOM f s 5.08 1.35 0.03 0.14 +branleuses branleuse NOM f p 0.14 0.00 0.14 0.00 +branlez branler VER 12.72 9.93 0.18 0.20 imp:pre:2p;ind:pre:2p; +branlochais branlocher VER 0.00 0.20 0.00 0.07 ind:imp:1s; +branlochant branlocher VER 0.00 0.20 0.00 0.07 par:pre; +branlochent branlocher VER 0.00 0.20 0.00 0.07 ind:pre:3p; +branlé branler VER m s 12.72 9.93 0.41 0.41 par:pas; +branlée branlée NOM f s 0.80 0.47 0.80 0.47 +branlés branler VER m p 12.72 9.93 0.03 0.00 par:pas; +branque branque ADJ s 0.68 3.11 0.42 2.43 +branques branque ADJ m p 0.68 3.11 0.26 0.68 +branquignol branquignol NOM m s 0.05 0.07 0.03 0.00 +branquignols branquignol NOM m p 0.05 0.07 0.02 0.07 +braqua braquer VER 15.67 15.54 0.01 0.54 ind:pas:3s; +braquage braquage NOM m s 7.74 1.62 6.49 1.22 +braquages braquage NOM m p 7.74 1.62 1.26 0.41 +braquai braquer VER 15.67 15.54 0.00 0.14 ind:pas:1s; +braquaient braquer VER 15.67 15.54 0.18 0.14 ind:imp:3p; +braquais braquer VER 15.67 15.54 0.07 0.27 ind:imp:1s;ind:imp:2s; +braquait braquer VER 15.67 15.54 0.32 1.28 ind:imp:3s; +braquant braquer VER 15.67 15.54 0.28 1.01 par:pre; +braque braquer VER 15.67 15.54 1.94 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +braquemart braquemart NOM m s 0.22 0.61 0.19 0.61 +braquemarts braquemart NOM m p 0.22 0.61 0.03 0.00 +braquent braquer VER 15.67 15.54 0.28 0.68 ind:pre:3p; +braquer braquer VER 15.67 15.54 5.19 2.97 inf; +braquera braquer VER 15.67 15.54 0.05 0.00 ind:fut:3s; +braquerais braquer VER 15.67 15.54 0.00 0.07 cnd:pre:2s; +braquerait braquer VER 15.67 15.54 0.05 0.00 cnd:pre:3s; +braques braquer VER 15.67 15.54 0.73 0.07 ind:pre:2s; +braquet braquet NOM m s 0.00 0.20 0.00 0.14 +braquets braquet NOM m p 0.00 0.20 0.00 0.07 +braqueur braqueur NOM m s 2.91 1.01 1.74 0.54 +braqueurs braqueur NOM m p 2.91 1.01 1.14 0.47 +braqueuse braqueur NOM f s 2.91 1.01 0.03 0.00 +braqueuses braqueuse NOM f p 0.21 0.00 0.21 0.00 +braquez braquer VER 15.67 15.54 0.23 0.07 imp:pre:2p;ind:pre:2p; +braquèrent braquer VER 15.67 15.54 0.00 0.14 ind:pas:3p; +braqué braquer VER m s 15.67 15.54 4.79 2.57 par:pas; +braquée braquer VER f s 15.67 15.54 0.47 1.08 par:pas; +braquées braquer VER f p 15.67 15.54 0.40 0.74 par:pas; +braqués braquer VER m p 15.67 15.54 0.70 2.30 par:pas; +bras bras NOM m 149.26 487.97 149.26 487.97 +brasage brasage NOM m s 0.00 0.07 0.00 0.07 +braser braser VER 0.00 0.07 0.00 0.07 inf; +brasero brasero NOM m s 0.04 1.82 0.02 1.15 +braseros brasero NOM m p 0.04 1.82 0.01 0.68 +brasier brasier NOM m s 1.47 6.42 1.43 5.81 +brasiers brasier NOM m p 1.47 6.42 0.04 0.61 +brasillaient brasiller VER 0.00 0.88 0.00 0.34 ind:imp:3p; +brasillait brasiller VER 0.00 0.88 0.00 0.14 ind:imp:3s; +brasillant brasiller VER 0.00 0.88 0.00 0.07 par:pre; +brasille brasiller VER 0.00 0.88 0.00 0.14 ind:pre:3s; +brasillement brasillement NOM m s 0.00 0.20 0.00 0.20 +brasiller brasiller VER 0.00 0.88 0.00 0.20 inf; +brassage brassage NOM m s 0.09 0.81 0.09 0.61 +brassages brassage NOM m p 0.09 0.81 0.00 0.20 +brassai brasser VER 1.03 5.61 0.00 0.07 ind:pas:1s; +brassaient brasser VER 1.03 5.61 0.01 0.27 ind:imp:3p; +brassait brasser VER 1.03 5.61 0.01 0.95 ind:imp:3s; +brassant brasser VER 1.03 5.61 0.01 0.95 par:pre; +brassard brassard NOM m s 0.71 4.93 0.42 3.92 +brassards brassard NOM m p 0.71 4.93 0.29 1.01 +brasse brasse NOM f s 0.67 2.16 0.37 0.81 +brassent brasser VER 1.03 5.61 0.01 0.27 ind:pre:3p; +brasser brasser VER 1.03 5.61 0.43 0.74 inf; +brasserie_hôtel brasserie_hôtel NOM f s 0.00 0.07 0.00 0.07 +brasserie brasserie NOM f s 1.89 9.05 1.31 7.97 +brasseries brasserie NOM f p 1.89 9.05 0.58 1.08 +brasseront brasser VER 1.03 5.61 0.00 0.07 ind:fut:3p; +brasses brasse NOM f p 0.67 2.16 0.30 1.35 +brasseur brasseur NOM m s 0.24 0.54 0.23 0.34 +brasseurs brasseur NOM m p 0.24 0.54 0.01 0.20 +brassez brasser VER 1.03 5.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +brassicourt brassicourt ADJ m s 0.00 0.07 0.00 0.07 +brassions brasser VER 1.03 5.61 0.00 0.14 ind:imp:1p; +brassière brassière NOM f s 0.55 0.54 0.36 0.20 +brassières brassière NOM f p 0.55 0.54 0.18 0.34 +brassé brasser VER m s 1.03 5.61 0.20 0.54 par:pas; +brassée brassée NOM f s 0.06 3.18 0.04 1.96 +brassées brassée NOM f p 0.06 3.18 0.02 1.22 +brassés brasser VER m p 1.03 5.61 0.01 0.14 par:pas; +brasure brasure NOM f s 0.00 0.07 0.00 0.07 +brava braver VER 3.20 5.20 0.22 0.41 ind:pas:3s; +bravache bravache ADJ m s 0.16 0.14 0.14 0.07 +bravaches bravache NOM m p 0.08 0.27 0.01 0.20 +bravade bravade NOM f s 0.15 1.69 0.12 1.42 +bravades bravade NOM f p 0.15 1.69 0.03 0.27 +bravaient braver VER 3.20 5.20 0.00 0.20 ind:imp:3p; +bravais braver VER 3.20 5.20 0.16 0.14 ind:imp:1s;ind:imp:2s; +bravait braver VER 3.20 5.20 0.01 0.41 ind:imp:3s; +bravant braver VER 3.20 5.20 0.36 0.74 par:pre; +brave brave ADJ s 30.93 35.00 24.55 23.31 +bravement bravement ADV 0.59 3.78 0.59 3.78 +bravent braver VER 3.20 5.20 0.02 0.07 ind:pre:3p; +braver braver VER 3.20 5.20 1.48 2.09 inf; +braverai braver VER 3.20 5.20 0.02 0.00 ind:fut:1s; +braveraient braver VER 3.20 5.20 0.01 0.00 cnd:pre:3p; +braverait braver VER 3.20 5.20 0.00 0.07 cnd:pre:3s; +braveries braverie NOM f p 0.00 0.07 0.00 0.07 +braveriez braver VER 3.20 5.20 0.01 0.00 cnd:pre:2p; +braves brave ADJ p 30.93 35.00 6.39 11.69 +bravez braver VER 3.20 5.20 0.03 0.00 imp:pre:2p;ind:pre:2p; +bravissimo bravissimo NOM m s 0.15 0.20 0.15 0.20 +bravo bravo ONO 48.98 7.91 48.98 7.91 +bravons braver VER 3.20 5.20 0.02 0.00 imp:pre:1p; +bravos bravo NOM m p 8.93 4.59 0.73 1.35 +bravoure bravoure NOM f s 2.78 3.18 2.78 3.18 +bravèrent braver VER 3.20 5.20 0.03 0.00 ind:pas:3p; +bravé braver VER m s 3.20 5.20 0.45 0.20 par:pas; +bravée braver VER f s 3.20 5.20 0.00 0.07 par:pas; +brayaient brayer VER 0.01 0.34 0.00 0.07 ind:imp:3p; +brayait brayer VER 0.01 0.34 0.00 0.07 ind:imp:3s; +braye braye NOM f s 0.00 0.61 0.00 0.61 +brayes brayer VER 0.01 0.34 0.00 0.07 ind:pre:2s; +brayons brayon NOM m p 0.00 0.07 0.00 0.07 +break_down break_down NOM m 0.00 0.14 0.00 0.14 +break break NOM m s 7.18 2.09 6.91 1.96 +breakdance breakdance NOM f s 0.10 0.00 0.10 0.00 +breakfast breakfast NOM m s 0.64 1.22 0.60 1.22 +breakfasts breakfast NOM m p 0.64 1.22 0.03 0.00 +breaks break NOM m p 7.18 2.09 0.27 0.14 +brebis brebis NOM f 7.02 7.03 7.02 7.03 +brechtienne brechtien NOM f s 0.00 0.07 0.00 0.07 +bredin bredin NOM m s 0.00 0.07 0.00 0.07 +bredouilla bredouiller VER 0.73 13.38 0.00 4.46 ind:pas:3s; +bredouillage bredouillage NOM m s 0.00 0.14 0.00 0.14 +bredouillai bredouiller VER 0.73 13.38 0.00 0.41 ind:pas:1s; +bredouillaient bredouiller VER 0.73 13.38 0.00 0.41 ind:imp:3p; +bredouillais bredouiller VER 0.73 13.38 0.00 0.41 ind:imp:1s; +bredouillait bredouiller VER 0.73 13.38 0.06 1.01 ind:imp:3s; +bredouillant bredouiller VER 0.73 13.38 0.00 1.42 par:pre; +bredouillante bredouillant ADJ f s 0.00 0.20 0.00 0.07 +bredouille bredouille ADJ s 1.41 2.70 1.18 2.09 +bredouillement bredouillement NOM m s 0.00 0.68 0.00 0.54 +bredouillements bredouillement NOM m p 0.00 0.68 0.00 0.14 +bredouillent bredouiller VER 0.73 13.38 0.00 0.07 ind:pre:3p; +bredouiller bredouiller VER 0.73 13.38 0.11 1.96 inf; +bredouilles bredouille ADJ m p 1.41 2.70 0.23 0.61 +bredouilleurs bredouilleur NOM m p 0.00 0.07 0.00 0.07 +bredouillez bredouiller VER 0.73 13.38 0.11 0.00 imp:pre:2p;ind:pre:2p; +bredouillis bredouillis NOM m 0.00 0.14 0.00 0.14 +bredouillé bredouiller VER m s 0.73 13.38 0.13 1.15 par:pas; +bredouillées bredouiller VER f p 0.73 13.38 0.00 0.14 par:pas; +bref bref ADV 22.26 38.78 22.26 38.78 +brefs bref ADJ m p 15.63 74.80 0.92 10.20 +bregma bregma NOM m s 0.01 0.00 0.01 0.00 +breitschwanz breitschwanz NOM m s 0.00 0.20 0.00 0.20 +brelan brelan NOM m s 1.29 0.54 1.28 0.54 +brelans brelan NOM m p 1.29 0.54 0.01 0.00 +breloque breloque NOM f s 0.56 1.69 0.27 0.95 +breloques breloque NOM f p 0.56 1.69 0.29 0.74 +breneuses breneux ADJ f p 0.00 0.14 0.00 0.07 +breneux breneux ADJ m s 0.00 0.14 0.00 0.07 +bressan bressan ADJ m s 0.00 0.68 0.00 0.20 +bressane bressan ADJ f s 0.00 0.68 0.00 0.34 +bressanes bressan ADJ f p 0.00 0.68 0.00 0.07 +bressans bressan ADJ m p 0.00 0.68 0.00 0.07 +brestois brestois NOM m 0.00 0.20 0.00 0.14 +brestoise brestois NOM f s 0.00 0.20 0.00 0.07 +bretelle bretelle NOM f s 2.63 13.04 1.10 3.72 +bretelles bretelle NOM f p 2.63 13.04 1.54 9.32 +breton breton ADJ m s 0.71 9.86 0.17 3.99 +bretonnant bretonnant ADJ m s 0.00 0.14 0.00 0.07 +bretonnants bretonnant ADJ m p 0.00 0.14 0.00 0.07 +bretonne breton ADJ f s 0.71 9.86 0.54 3.18 +bretonnes bretonne NOM f p 0.03 0.00 0.01 0.00 +bretons breton NOM m p 0.32 4.86 0.18 1.35 +brette brette NOM f s 0.01 0.00 0.01 0.00 +bretteur bretteur NOM m s 0.31 0.20 0.27 0.00 +bretteurs bretteur NOM m p 0.31 0.20 0.04 0.20 +bretzel bretzel NOM s 1.51 0.47 0.47 0.07 +bretzels bretzel NOM p 1.51 0.47 1.04 0.41 +breuil breuil NOM m s 0.00 0.14 0.00 0.07 +breuils breuil NOM m p 0.00 0.14 0.00 0.07 +breuvage breuvage NOM m s 0.88 2.57 0.83 2.09 +breuvages breuvage NOM m p 0.88 2.57 0.04 0.47 +brevet brevet NOM m s 3.10 3.58 1.83 3.11 +breveter breveter VER 0.49 0.41 0.32 0.14 inf; +brevets brevet NOM m p 3.10 3.58 1.27 0.47 +breveté breveté ADJ m s 0.36 0.61 0.30 0.47 +brevetée breveter VER f s 0.49 0.41 0.05 0.07 par:pas; +brevetées breveté ADJ f p 0.36 0.61 0.03 0.07 +brevetés breveter VER m p 0.49 0.41 0.03 0.00 par:pas; +bri bri NOM m s 0.54 0.41 0.54 0.41 +briard briard ADJ m s 0.03 0.20 0.03 0.14 +briarde briard ADJ f s 0.03 0.20 0.00 0.07 +briards briard NOM m p 0.01 0.20 0.00 0.07 +bribe bribe NOM f s 0.88 14.73 0.03 1.55 +bribes bribe NOM f p 0.88 14.73 0.85 13.18 +bric_à_brac bric_à_brac NOM m 0.00 3.24 0.00 3.24 +bric_et_de_broc bric_et_de_broc ADV 0.03 0.47 0.03 0.47 +bricheton bricheton NOM m s 0.00 0.68 0.00 0.68 +brick brick NOM m s 1.51 0.34 1.30 0.14 +bricks brick NOM m p 1.51 0.34 0.21 0.20 +bricola bricoler VER 4.03 6.15 0.00 0.07 ind:pas:3s; +bricolage bricolage NOM m s 0.89 1.76 0.87 1.28 +bricolages bricolage NOM m p 0.89 1.76 0.01 0.47 +bricolaient bricoler VER 4.03 6.15 0.01 0.07 ind:imp:3p; +bricolais bricoler VER 4.03 6.15 0.01 0.14 ind:imp:1s;ind:imp:2s; +bricolait bricoler VER 4.03 6.15 0.19 0.88 ind:imp:3s; +bricolant bricoler VER 4.03 6.15 0.01 0.20 par:pre; +bricole bricoler VER 4.03 6.15 1.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bricolent bricoler VER 4.03 6.15 0.04 0.20 ind:pre:3p; +bricoler bricoler VER 4.03 6.15 1.33 1.82 inf; +bricoles bricole NOM f p 1.83 5.68 1.41 3.99 +bricoleur bricoleur NOM m s 0.58 0.54 0.52 0.27 +bricoleurs bricoleur NOM m p 0.58 0.54 0.04 0.27 +bricoleuse bricoleur NOM f s 0.58 0.54 0.03 0.00 +bricolez bricoler VER 4.03 6.15 0.23 0.07 ind:pre:2p; +bricolo bricolo NOM m s 0.04 0.27 0.04 0.14 +bricolons bricoler VER 4.03 6.15 0.01 0.00 ind:pre:1p; +bricolos bricolo NOM m p 0.04 0.27 0.00 0.14 +bricolé bricoler VER m s 4.03 6.15 0.61 0.88 par:pas; +bricolée bricoler VER f s 4.03 6.15 0.07 0.47 par:pas; +bricolées bricoler VER f p 4.03 6.15 0.01 0.07 par:pas; +bricolés bricoler VER m p 4.03 6.15 0.01 0.14 par:pas; +bridais brider VER 0.91 2.30 0.00 0.07 ind:imp:1s; +bridait brider VER 0.91 2.30 0.00 0.41 ind:imp:3s; +bridant brider VER 0.91 2.30 0.10 0.07 par:pre; +bride bride NOM f s 1.79 10.07 1.63 8.92 +brident brider VER 0.91 2.30 0.04 0.07 ind:pre:3p; +brider brider VER 0.91 2.30 0.27 0.47 inf; +brides bride NOM f p 1.79 10.07 0.16 1.15 +bridez brider VER 0.91 2.30 0.01 0.00 ind:pre:2p; +bridge bridge NOM m s 4.33 4.12 4.31 3.99 +bridgeait bridger VER 0.36 0.61 0.00 0.20 ind:imp:3s; +bridgeant bridger VER 0.36 0.61 0.00 0.07 par:pre; +bridgent bridger VER 0.36 0.61 0.00 0.07 ind:pre:3p; +bridgeons bridger VER 0.36 0.61 0.00 0.07 ind:pre:1p; +bridger bridger VER 0.36 0.61 0.35 0.14 inf; +bridges bridge NOM m p 4.33 4.12 0.02 0.14 +bridgeurs bridgeur NOM m p 0.02 0.07 0.00 0.07 +bridgeuse bridgeur NOM f s 0.02 0.07 0.02 0.00 +bridgez bridger VER 0.36 0.61 0.01 0.00 ind:pre:2p; +bridgées bridger VER f p 0.36 0.61 0.00 0.07 par:pas; +bridon bridon NOM m s 0.00 0.41 0.00 0.34 +bridons bridon NOM m p 0.00 0.41 0.00 0.07 +bridé bridé ADJ m s 1.45 2.64 0.63 0.20 +bridée bridé ADJ f s 1.45 2.64 0.14 0.20 +bridées bridé ADJ f p 1.45 2.64 0.11 0.14 +bridés bridé ADJ m p 1.45 2.64 0.57 2.09 +brie brie NOM s 0.33 0.88 0.33 0.74 +briefe briefer VER 2.04 0.00 0.17 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +briefer briefer VER 2.04 0.00 0.62 0.00 inf; +briefera briefer VER 2.04 0.00 0.09 0.00 ind:fut:3s; +brieferai briefer VER 2.04 0.00 0.20 0.00 ind:fut:1s; +brieferas briefer VER 2.04 0.00 0.05 0.00 ind:fut:2s; +briefes briefer VER 2.04 0.00 0.04 0.00 ind:pre:2s; +briefez briefer VER 2.04 0.00 0.06 0.00 imp:pre:2p; +briefing briefing NOM m s 3.25 0.47 3.00 0.34 +briefings briefing NOM m p 3.25 0.47 0.24 0.14 +briefé briefer VER m s 2.04 0.00 0.49 0.00 par:pas; +briefée briefer VER f s 2.04 0.00 0.07 0.00 par:pas; +briefés briefer VER m p 2.04 0.00 0.24 0.00 par:pas; +bries brie NOM p 0.33 0.88 0.00 0.14 +brifez brifer VER 0.00 0.07 0.00 0.07 imp:pre:2p; +briffe briffer VER 0.12 0.88 0.10 0.34 ind:pre:1s;ind:pre:3s; +briffer briffer VER 0.12 0.88 0.02 0.54 inf; +brigade brigade NOM f s 16.65 12.43 13.75 8.78 +brigades brigade NOM f p 16.65 12.43 2.90 3.65 +brigadier_chef brigadier_chef NOM m s 0.01 1.96 0.01 1.82 +brigadier brigadier NOM m s 2.86 14.53 2.73 13.92 +brigadier_chef brigadier_chef NOM m p 0.01 1.96 0.00 0.14 +brigadiers brigadier NOM m p 2.86 14.53 0.14 0.61 +brigadiste brigadiste ADJ s 0.00 0.07 0.00 0.07 +brigadistes brigadiste NOM p 0.00 0.07 0.00 0.07 +brigand brigand NOM m s 5.14 3.72 2.10 1.35 +brigandage brigandage NOM m s 0.30 0.74 0.30 0.47 +brigandages brigandage NOM m p 0.30 0.74 0.00 0.27 +brigandaient brigander VER 0.11 0.27 0.00 0.07 ind:imp:3p; +brigandasse brigander VER 0.11 0.27 0.00 0.07 sub:imp:1s; +brigande brigander VER 0.11 0.27 0.11 0.14 imp:pre:2s;ind:pre:3s; +brigandeaux brigandeau NOM m p 0.00 0.07 0.00 0.07 +brigands brigand NOM m p 5.14 3.72 3.04 2.36 +brigantin brigantin NOM m s 0.20 0.20 0.20 0.20 +brigantine brigantine NOM f s 0.00 0.07 0.00 0.07 +brignolet brignolet NOM m s 0.00 0.27 0.00 0.27 +briguaient briguer VER 0.81 1.01 0.01 0.07 ind:imp:3p; +briguait briguer VER 0.81 1.01 0.13 0.07 ind:imp:3s; +briguant briguer VER 0.81 1.01 0.00 0.07 par:pre; +brigue briguer VER 0.81 1.01 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +briguer briguer VER 0.81 1.01 0.32 0.54 inf; +briguerait briguer VER 0.81 1.01 0.00 0.07 cnd:pre:3s; +brigues brigue NOM f p 0.00 0.34 0.00 0.34 +briguèrent briguer VER 0.81 1.01 0.00 0.07 ind:pas:3p; +brigué briguer VER m s 0.81 1.01 0.16 0.07 par:pas; +brilla briller VER 28.91 81.22 0.02 1.89 ind:pas:3s; +brillaient briller VER 28.91 81.22 0.27 17.84 ind:imp:3p; +brillais briller VER 28.91 81.22 0.04 0.14 ind:imp:1s;ind:imp:2s; +brillait briller VER 28.91 81.22 1.73 19.39 ind:imp:3s; +brillamment brillamment ADV 0.88 2.30 0.88 2.30 +brillance brillance NOM f s 0.27 0.74 0.27 0.54 +brillances brillance NOM f p 0.27 0.74 0.00 0.20 +brillant brillant ADJ m s 29.89 53.31 14.23 16.62 +brillantage brillantage NOM m s 0.00 0.07 0.00 0.07 +brillante brillant ADJ f s 29.89 53.31 9.20 13.18 +brillantes brillant ADJ f p 29.89 53.31 2.31 7.36 +brillantine brillantine NOM f s 0.10 1.96 0.10 1.96 +brillantiner brillantiner VER 0.03 0.47 0.00 0.07 inf; +brillantinée brillantiner VER f s 0.03 0.47 0.00 0.07 par:pas; +brillantinées brillantiner VER f p 0.03 0.47 0.00 0.07 par:pas; +brillantinés brillantiner VER m p 0.03 0.47 0.03 0.20 par:pas; +brillants brillant ADJ m p 29.89 53.31 4.16 16.15 +brillantés brillanter VER m p 0.08 0.20 0.00 0.07 par:pas; +brille briller VER 28.91 81.22 13.73 10.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brillent briller VER 28.91 81.22 3.93 7.50 ind:pre:3p; +briller briller VER 28.91 81.22 5.08 16.76 inf;; +brillera briller VER 28.91 81.22 1.12 0.14 ind:fut:3s; +brilleraient briller VER 28.91 81.22 0.00 0.34 cnd:pre:3p; +brillerais briller VER 28.91 81.22 0.20 0.07 cnd:pre:2s; +brillerait briller VER 28.91 81.22 0.04 0.41 cnd:pre:3s; +brillerons briller VER 28.91 81.22 0.00 0.07 ind:fut:1p; +brilleront briller VER 28.91 81.22 0.09 0.20 ind:fut:3p; +brilles briller VER 28.91 81.22 0.48 0.07 ind:pre:2s; +brillez briller VER 28.91 81.22 0.06 0.00 imp:pre:2p;ind:pre:2p; +brillions briller VER 28.91 81.22 0.00 0.14 ind:imp:1p; +brillons briller VER 28.91 81.22 0.04 0.00 ind:pre:1p; +brillât briller VER 28.91 81.22 0.00 0.20 sub:imp:3s; +brillèrent briller VER 28.91 81.22 0.00 1.49 ind:pas:3p; +brillé briller VER m s 28.91 81.22 0.80 1.42 par:pas; +brima brimer VER 0.66 2.16 0.31 0.00 ind:pas:3s; +brimade brimade NOM f s 0.10 2.91 0.04 0.95 +brimades brimade NOM f p 0.10 2.91 0.05 1.96 +brimaient brimer VER 0.66 2.16 0.01 0.14 ind:imp:3p; +brimais brimer VER 0.66 2.16 0.00 0.07 ind:imp:1s; +brimait brimer VER 0.66 2.16 0.00 0.14 ind:imp:3s; +brimbala brimbaler VER 0.00 0.27 0.00 0.07 ind:pas:3s; +brimbalant brimbaler VER 0.00 0.27 0.00 0.07 par:pre; +brimbalement brimbalement NOM m s 0.00 0.14 0.00 0.07 +brimbalements brimbalement NOM m p 0.00 0.14 0.00 0.07 +brimbaler brimbaler VER 0.00 0.27 0.00 0.07 inf; +brimbalés brimbaler VER m p 0.00 0.27 0.00 0.07 par:pas; +brimborion brimborion NOM m s 0.00 0.34 0.00 0.14 +brimborions brimborion NOM m p 0.00 0.34 0.00 0.20 +brime brimer VER 0.66 2.16 0.04 0.27 ind:pre:3s; +briment brimer VER 0.66 2.16 0.00 0.07 ind:pre:3p; +brimer brimer VER 0.66 2.16 0.14 0.74 inf; +brimé brimer VER m s 0.66 2.16 0.14 0.34 par:pas; +brimée brimer VER f s 0.66 2.16 0.01 0.14 par:pas; +brimées brimer VER f p 0.66 2.16 0.01 0.14 par:pas; +brimés brimer VER m p 0.66 2.16 0.00 0.14 par:pas; +brin brin NOM m s 5.38 19.26 4.95 13.99 +brindes brinde NOM f p 0.03 0.00 0.03 0.00 +brindezingue brindezingue ADJ s 0.01 0.07 0.01 0.07 +brindille brindille NOM f s 1.25 6.55 0.69 1.62 +brindilles brindille NOM f p 1.25 6.55 0.56 4.93 +bringue bringue NOM f s 1.27 1.42 1.27 1.42 +bringuebalaient bringuebaler VER 0.01 0.95 0.00 0.07 ind:imp:3p; +bringuebalait bringuebaler VER 0.01 0.95 0.00 0.20 ind:imp:3s; +bringuebalant bringuebalant ADJ m s 0.02 0.47 0.02 0.07 +bringuebalante bringuebalant ADJ f s 0.02 0.47 0.00 0.14 +bringuebalantes bringuebalant ADJ f p 0.02 0.47 0.00 0.07 +bringuebalants bringuebalant ADJ m p 0.02 0.47 0.00 0.20 +bringuebale bringuebaler VER 0.01 0.95 0.00 0.34 ind:pre:3s; +bringuebalent bringuebaler VER 0.01 0.95 0.00 0.14 ind:pre:3p; +bringuebaler bringuebaler VER 0.01 0.95 0.01 0.14 inf; +brinquebalait brinquebaler VER 0.12 0.41 0.00 0.14 ind:imp:3s; +brinquebalants brinquebalant ADJ m p 0.00 0.07 0.00 0.07 +brinquebale brinquebaler VER 0.12 0.41 0.11 0.07 ind:pre:3s; +brinquebaler brinquebaler VER 0.12 0.41 0.01 0.07 inf; +brinqueballant brinqueballer VER 0.00 0.27 0.00 0.14 par:pre; +brinqueballé brinqueballer VER m s 0.00 0.27 0.00 0.07 par:pas; +brinqueballés brinqueballer VER m p 0.00 0.27 0.00 0.07 par:pas; +brinquebalé brinquebaler VER m s 0.12 0.41 0.00 0.14 par:pas; +brins brin NOM m p 5.38 19.26 0.44 5.27 +brio brio NOM m s 0.93 1.89 0.93 1.89 +brioche brioche NOM f s 2.55 7.09 1.45 4.66 +brioches brioche NOM f p 2.55 7.09 1.10 2.43 +brioché brioché ADJ m s 0.03 0.07 0.02 0.00 +briochée brioché ADJ f s 0.03 0.07 0.01 0.00 +briochés brioché ADJ m p 0.03 0.07 0.00 0.07 +brions brion NOM m p 0.03 0.00 0.03 0.00 +briquage briquage NOM m s 0.00 0.14 0.00 0.14 +briquaient briquer VER 0.69 2.57 0.00 0.07 ind:imp:3p; +briquais briquer VER 0.69 2.57 0.01 0.00 ind:imp:1s; +briquait briquer VER 0.69 2.57 0.00 0.20 ind:imp:3s; +briquant briquer VER 0.69 2.57 0.00 0.14 par:pre; +brique brique NOM f s 13.56 31.55 4.02 11.69 +briquent briquer VER 0.69 2.57 0.01 0.00 ind:pre:3p; +briquer briquer VER 0.69 2.57 0.40 0.68 inf; +briquerait briquer VER 0.69 2.57 0.00 0.07 cnd:pre:3s; +briques brique NOM f p 13.56 31.55 9.54 19.86 +briquet briquet NOM m s 10.64 13.65 9.98 12.30 +briquetage briquetage NOM m s 0.00 0.14 0.00 0.14 +briqueterie briqueterie NOM f s 0.45 0.41 0.45 0.34 +briqueteries briqueterie NOM f p 0.45 0.41 0.00 0.07 +briquetier briquetier NOM m s 0.00 0.07 0.00 0.07 +briquets briquet NOM m p 10.64 13.65 0.66 1.35 +briquette briquette NOM f s 0.03 0.61 0.01 0.07 +briquettes briquette NOM f p 0.03 0.61 0.02 0.54 +briquetées briqueté ADJ f p 0.00 0.07 0.00 0.07 +briquez briquer VER 0.69 2.57 0.03 0.14 imp:pre:2p; +briqué briquer VER m s 0.69 2.57 0.16 0.34 par:pas; +briquée briquer VER f s 0.69 2.57 0.02 0.20 par:pas; +briquées briquer VER f p 0.69 2.57 0.00 0.27 par:pas; +briqués briquer VER m p 0.69 2.57 0.00 0.27 par:pas; +bris bris NOM m 0.90 1.35 0.90 1.35 +brisa briser VER 55.20 61.62 0.31 3.85 ind:pas:3s; +brisai briser VER 55.20 61.62 0.00 0.07 ind:pas:1s; +brisaient briser VER 55.20 61.62 0.05 1.69 ind:imp:3p; +brisais briser VER 55.20 61.62 0.14 0.41 ind:imp:1s; +brisait briser VER 55.20 61.62 0.43 4.93 ind:imp:3s; +brisant briser VER 55.20 61.62 0.30 2.30 par:pre; +brisante brisant ADJ f s 0.06 0.54 0.00 0.14 +brisantes brisant ADJ f p 0.06 0.54 0.00 0.14 +brisants brisant NOM m p 0.20 1.35 0.18 1.28 +briscard briscard NOM m s 0.18 0.34 0.06 0.14 +briscards briscard NOM m p 0.18 0.34 0.12 0.20 +brise_bise brise_bise NOM m 0.00 0.41 0.00 0.41 +brise_fer brise_fer NOM m 0.01 0.00 0.01 0.00 +brise_glace brise_glace NOM m 0.07 0.20 0.07 0.20 +brise_jet brise_jet NOM m 0.00 0.07 0.00 0.07 +brise_lame brise_lame NOM m s 0.00 0.14 0.00 0.14 +brise_vent brise_vent NOM m 0.01 0.00 0.01 0.00 +brise briser VER 55.20 61.62 8.45 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brisent briser VER 55.20 61.62 1.48 1.49 ind:pre:3p; +briser briser VER 55.20 61.62 14.99 16.28 inf; +brisera briser VER 55.20 61.62 1.44 0.41 ind:fut:3s; +briserai briser VER 55.20 61.62 1.38 0.27 ind:fut:1s; +briseraient briser VER 55.20 61.62 0.01 0.20 cnd:pre:3p; +briserais briser VER 55.20 61.62 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +briserait briser VER 55.20 61.62 0.81 0.88 cnd:pre:3s; +briseras briser VER 55.20 61.62 0.10 0.00 ind:fut:2s; +briserez briser VER 55.20 61.62 0.18 0.00 ind:fut:2p; +briseriez briser VER 55.20 61.62 0.02 0.00 cnd:pre:2p; +briserons briser VER 55.20 61.62 0.23 0.07 ind:fut:1p; +briseront briser VER 55.20 61.62 0.21 0.34 ind:fut:3p; +brises briser VER 55.20 61.62 0.99 0.14 ind:pre:2s; +briseur briseur NOM m s 1.11 1.01 0.66 0.54 +briseurs briseur NOM m p 1.11 1.01 0.16 0.41 +briseuse briseur NOM f s 1.11 1.01 0.29 0.07 +brisez briser VER 55.20 61.62 2.29 0.20 imp:pre:2p;ind:pre:2p; +brisions briser VER 55.20 61.62 0.01 0.20 ind:imp:1p; +brisis brisis NOM m 0.05 0.00 0.05 0.00 +brisons briser VER 55.20 61.62 0.38 0.20 imp:pre:1p;ind:pre:1p; +brisât briser VER 55.20 61.62 0.00 0.27 sub:imp:3s; +brisque brisque NOM f s 0.03 0.00 0.03 0.00 +brisèrent briser VER 55.20 61.62 0.06 0.54 ind:pas:3p; +bristol bristol NOM m s 0.10 1.55 0.08 1.35 +bristols bristol NOM m p 0.10 1.55 0.03 0.20 +brisé briser VER m s 55.20 61.62 15.70 9.32 par:pas; +brisée brisé ADJ f s 10.09 16.42 2.42 6.62 +brisées briser VER f p 55.20 61.62 1.30 5.54 par:pas; +brisure brisure NOM f s 0.01 0.95 0.00 0.74 +brisures brisure NOM f p 0.01 0.95 0.01 0.20 +brisés brisé ADJ m p 10.09 16.42 1.46 3.45 +britannique britannique ADJ s 8.23 68.72 6.57 47.97 +britanniques britannique NOM p 1.97 13.72 1.71 12.84 +brièvement brièvement ADV 1.92 6.22 1.92 6.22 +brièveté brièveté NOM f s 0.13 1.35 0.13 1.35 +british british ADJ s 1.75 1.08 1.75 1.08 +brivadois brivadois NOM m 0.00 0.14 0.00 0.14 +brivadoise brivadois ADJ f s 0.00 0.07 0.00 0.07 +brize brize NOM f s 0.01 0.47 0.01 0.47 +broc broc NOM m s 0.38 4.53 0.38 3.51 +brocante brocante NOM f s 0.86 1.42 0.78 1.35 +brocantes brocante NOM f p 0.86 1.42 0.07 0.07 +brocanteur brocanteur NOM m s 0.29 9.26 0.28 3.58 +brocanteurs brocanteur NOM m p 0.29 9.26 0.01 2.50 +brocanteuse brocanteur NOM f s 0.29 9.26 0.00 3.18 +brocantées brocanter VER f p 0.00 0.07 0.00 0.07 par:pas; +brocard brocard NOM m s 0.14 1.01 0.14 0.41 +brocardaient brocarder VER 0.01 0.27 0.00 0.07 ind:imp:3p; +brocardait brocarder VER 0.01 0.27 0.00 0.07 ind:imp:3s; +brocarde brocarder VER 0.01 0.27 0.01 0.00 ind:pre:3s; +brocarder brocarder VER 0.01 0.27 0.00 0.07 inf; +brocardions brocarder VER 0.01 0.27 0.00 0.07 ind:imp:1p; +brocards brocard NOM m p 0.14 1.01 0.00 0.61 +brocart brocart NOM m s 0.37 3.99 0.27 2.91 +brocarts brocart NOM m p 0.37 3.99 0.10 1.08 +brocatelle brocatelle NOM f s 0.00 0.07 0.00 0.07 +brochage brochage NOM m s 0.00 0.20 0.00 0.14 +brochages brochage NOM m p 0.00 0.20 0.00 0.07 +brochaient brocher VER 0.05 1.08 0.00 0.14 ind:imp:3p; +brochant brochant ADJ m s 6.29 0.07 6.29 0.07 +broche broche NOM f s 4.57 5.74 3.88 4.32 +brocher brocher VER 0.05 1.08 0.00 0.14 inf; +broches broche NOM f p 4.57 5.74 0.70 1.42 +brochet brochet NOM m s 0.46 3.99 0.44 3.18 +brochets brochet NOM m p 0.46 3.99 0.02 0.81 +brochette brochette NOM f s 2.26 3.04 1.08 1.76 +brochettes brochette NOM f p 2.26 3.04 1.18 1.28 +brocheur brocheur NOM m s 0.00 0.34 0.00 0.27 +brocheurs brocheur NOM m p 0.00 0.34 0.00 0.07 +brochoirs brochoir NOM m p 0.00 0.07 0.00 0.07 +broché brocher VER m s 0.05 1.08 0.02 0.20 par:pas; +brochée brocher VER f s 0.05 1.08 0.00 0.20 par:pas; +brochées broché ADJ f p 0.01 0.74 0.00 0.07 +brochure brochure NOM f s 2.88 3.99 1.64 1.76 +brochures brochure NOM f p 2.88 3.99 1.25 2.23 +brochés broché ADJ m p 0.01 0.74 0.01 0.27 +brocoli brocoli NOM m s 1.32 0.07 0.69 0.00 +brocolis brocoli NOM m p 1.32 0.07 0.63 0.07 +brocs broc NOM m p 0.38 4.53 0.00 1.01 +broda broder VER 3.52 14.86 0.01 0.14 ind:pas:3s; +brodaient broder VER 3.52 14.86 0.00 0.27 ind:imp:3p; +brodais broder VER 3.52 14.86 0.37 0.14 ind:imp:1s;ind:imp:2s; +brodait broder VER 3.52 14.86 0.01 0.88 ind:imp:3s; +brodant broder VER 3.52 14.86 0.27 0.41 par:pre; +brode broder VER 3.52 14.86 0.56 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brodent broder VER 3.52 14.86 0.01 0.20 ind:pre:3p; +brodequin brodequin NOM m s 0.07 4.12 0.07 0.61 +brodequins brodequin NOM m p 0.07 4.12 0.00 3.51 +broder broder VER 3.52 14.86 1.01 1.82 inf; +brodera broder VER 3.52 14.86 0.01 0.07 ind:fut:3s; +broderai broder VER 3.52 14.86 0.00 0.07 ind:fut:1s; +broderie broderie NOM f s 0.97 6.22 0.93 2.36 +broderies broderie NOM f p 0.97 6.22 0.04 3.85 +brodes broder VER 3.52 14.86 0.15 0.07 ind:pre:2s; +brodeuse brodeur NOM f s 0.05 0.47 0.05 0.27 +brodeuses brodeuse NOM f p 0.01 0.00 0.01 0.00 +brodez broder VER 3.52 14.86 0.05 0.00 imp:pre:2p; +brodé broder VER m s 3.52 14.86 0.83 4.05 par:pas; +brodée broder VER f s 3.52 14.86 0.06 1.96 par:pas; +brodées brodé ADJ f p 0.57 8.11 0.28 0.88 +brodés broder VER m p 3.52 14.86 0.17 2.50 par:pas; +broie broyer VER 4.08 8.85 0.74 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +broiement broiement NOM m s 0.00 0.20 0.00 0.14 +broiements broiement NOM m p 0.00 0.20 0.00 0.07 +broient broyer VER 4.08 8.85 0.14 0.34 ind:pre:3p; +broiera broyer VER 4.08 8.85 0.00 0.07 ind:fut:3s; +broierai broyer VER 4.08 8.85 0.04 0.00 ind:fut:1s; +broieras broyer VER 4.08 8.85 0.00 0.07 ind:fut:2s; +broies broyer VER 4.08 8.85 0.16 0.00 ind:pre:2s; +broker broker NOM m s 0.02 0.07 0.02 0.07 +brol brol NOM m s 0.01 0.00 0.01 0.00 +brome brome NOM m s 0.01 0.14 0.01 0.14 +bromure bromure NOM m s 0.52 0.47 0.52 0.41 +bromures bromure NOM m p 0.52 0.47 0.00 0.07 +broncha broncher VER 1.97 12.84 0.00 2.50 ind:pas:3s; +bronchai broncher VER 1.97 12.84 0.00 0.14 ind:pas:1s; +bronchaient broncher VER 1.97 12.84 0.03 0.27 ind:imp:3p; +bronchais broncher VER 1.97 12.84 0.00 0.07 ind:imp:1s; +bronchait broncher VER 1.97 12.84 0.10 1.15 ind:imp:3s; +bronchant broncher VER 1.97 12.84 0.00 0.07 par:pre; +bronche broncher VER 1.97 12.84 0.45 1.96 imp:pre:2s;ind:pre:3s; +bronchent broncher VER 1.97 12.84 0.02 0.20 ind:pre:3p; +broncher broncher VER 1.97 12.84 0.65 4.26 inf; +bronchera broncher VER 1.97 12.84 0.14 0.14 ind:fut:3s; +broncherai broncher VER 1.97 12.84 0.02 0.07 ind:fut:1s; +broncherais broncher VER 1.97 12.84 0.01 0.00 cnd:pre:1s; +broncherait broncher VER 1.97 12.84 0.02 0.14 cnd:pre:3s; +broncherons broncher VER 1.97 12.84 0.00 0.07 ind:fut:1p; +broncheront broncher VER 1.97 12.84 0.01 0.00 ind:fut:3p; +bronches bronche NOM f p 0.58 2.23 0.55 2.23 +bronchez broncher VER 1.97 12.84 0.07 0.07 imp:pre:2p;ind:pre:2p; +bronchioles bronchiole NOM f p 0.01 0.14 0.01 0.14 +bronchique bronchique ADJ s 0.24 0.07 0.20 0.00 +bronchiques bronchique ADJ m p 0.24 0.07 0.04 0.07 +bronchite bronchite NOM f s 1.16 2.36 1.15 2.09 +bronchites bronchite NOM f p 1.16 2.36 0.01 0.27 +bronchitique bronchitique ADJ f s 0.00 0.14 0.00 0.07 +bronchitiques bronchitique ADJ p 0.00 0.14 0.00 0.07 +broncho_pneumonie broncho_pneumonie NOM f s 0.00 0.41 0.00 0.41 +broncho_pneumopathie broncho_pneumopathie NOM f s 0.01 0.07 0.01 0.07 +broncho broncho NOM m s 0.03 0.00 0.03 0.00 +bronchons broncher VER 1.97 12.84 0.00 0.07 ind:pre:1p; +bronchoscope bronchoscope NOM m s 0.01 0.00 0.01 0.00 +bronchoscopie bronchoscopie NOM f s 0.13 0.00 0.13 0.00 +bronchât broncher VER 1.97 12.84 0.00 0.07 sub:imp:3s; +bronchèrent broncher VER 1.97 12.84 0.10 0.14 ind:pas:3p; +bronché broncher VER m s 1.97 12.84 0.27 1.49 par:pas; +brontosaure brontosaure NOM m s 0.12 0.07 0.10 0.07 +brontosaures brontosaure NOM m p 0.12 0.07 0.02 0.00 +bronzage bronzage NOM m s 1.67 1.62 1.66 1.55 +bronzages bronzage NOM m p 1.67 1.62 0.01 0.07 +bronzaient bronzer VER 5.10 5.74 0.00 0.07 ind:imp:3p; +bronzait bronzer VER 5.10 5.74 0.00 0.34 ind:imp:3s; +bronzant bronzer VER 5.10 5.74 0.02 0.07 par:pre; +bronzante bronzant ADJ f s 0.04 0.14 0.01 0.14 +bronzants bronzant ADJ m p 0.04 0.14 0.01 0.00 +bronze bronze NOM m s 3.37 19.26 3.15 18.58 +bronzent bronzer VER 5.10 5.74 0.26 0.00 ind:pre:3p; +bronzer bronzer VER 5.10 5.74 1.88 1.89 inf; +bronzes bronzer VER 5.10 5.74 0.44 0.00 ind:pre:2s; +bronzette bronzette NOM f s 0.12 0.14 0.12 0.07 +bronzettes bronzette NOM f p 0.12 0.14 0.00 0.07 +bronzier bronzier NOM m s 0.00 0.07 0.00 0.07 +bronzions bronzer VER 5.10 5.74 0.00 0.07 ind:imp:1p; +bronzé bronzé ADJ m s 2.72 6.69 1.65 2.84 +bronzée bronzé ADJ f s 2.72 6.69 0.60 1.55 +bronzées bronzé ADJ f p 2.72 6.69 0.07 1.22 +bronzés bronzé ADJ m p 2.72 6.69 0.39 1.08 +brook brook NOM m s 0.12 0.00 0.02 0.00 +brooks brook NOM m p 0.12 0.00 0.10 0.00 +broquarts broquart NOM m p 0.00 0.07 0.00 0.07 +broque broque NOM f s 0.00 0.74 0.00 0.68 +broques broque NOM f p 0.00 0.74 0.00 0.07 +broquettes broquette NOM f p 0.04 0.07 0.04 0.07 +broquille broquille NOM f s 0.00 1.15 0.00 0.68 +broquilles broquille NOM f p 0.00 1.15 0.00 0.47 +brossa brosser VER 7.65 10.14 0.00 1.15 ind:pas:3s; +brossage brossage NOM m s 0.20 0.14 0.20 0.14 +brossaient brosser VER 7.65 10.14 0.02 0.14 ind:imp:3p; +brossais brosser VER 7.65 10.14 0.07 0.20 ind:imp:1s;ind:imp:2s; +brossait brosser VER 7.65 10.14 0.19 1.42 ind:imp:3s; +brossant brosser VER 7.65 10.14 0.05 0.41 par:pre; +brosse brosse NOM f s 8.43 19.59 7.29 16.01 +brossent brosser VER 7.65 10.14 0.04 0.14 ind:pre:3p;sub:pre:3p; +brosser brosser VER 7.65 10.14 2.76 2.23 inf; +brossera brosser VER 7.65 10.14 0.06 0.00 ind:fut:3s; +brosserai brosser VER 7.65 10.14 0.03 0.00 ind:fut:1s; +brosseras brosser VER 7.65 10.14 0.03 0.14 ind:fut:2s; +brosserez brosser VER 7.65 10.14 0.14 0.00 ind:fut:2p; +brosses brosse NOM f p 8.43 19.59 1.14 3.58 +brosseur brosseur NOM m s 0.00 0.20 0.00 0.07 +brosseurs brosseur NOM m p 0.00 0.20 0.00 0.14 +brossez brosser VER 7.65 10.14 0.44 0.00 imp:pre:2p;ind:pre:2p; +brossier brossier NOM m s 0.00 0.07 0.00 0.07 +brossé brosser VER m s 7.65 10.14 1.23 1.82 par:pas; +brossée brosser VER f s 7.65 10.14 0.04 0.34 par:pas; +brossées brosser VER f p 7.65 10.14 0.44 0.14 par:pas; +brossés brosser VER m p 7.65 10.14 0.12 0.54 par:pas; +brou brou NOM m s 0.02 0.74 0.02 0.74 +brouet brouet NOM m s 0.06 0.81 0.04 0.74 +brouets brouet NOM m p 0.06 0.81 0.01 0.07 +brouetta brouetter VER 0.00 0.20 0.00 0.07 ind:pas:3s; +brouettait brouetter VER 0.00 0.20 0.00 0.07 ind:imp:3s; +brouette brouette NOM f s 1.16 6.76 1.10 5.14 +brouetter brouetter VER 0.00 0.20 0.00 0.07 inf; +brouettes brouette NOM f p 1.16 6.76 0.06 1.62 +brouettée brouettée NOM f s 0.00 0.27 0.00 0.14 +brouettées brouettée NOM f p 0.00 0.27 0.00 0.14 +brouhaha brouhaha NOM m s 4.98 9.66 4.98 9.39 +brouhahas brouhaha NOM m p 4.98 9.66 0.00 0.27 +brouilla brouiller VER 6.12 24.12 0.00 0.81 ind:pas:3s; +brouillade brouillade NOM f s 0.00 0.07 0.00 0.07 +brouillage brouillage NOM m s 0.62 0.95 0.60 0.74 +brouillages brouillage NOM m p 0.62 0.95 0.02 0.20 +brouillaient brouiller VER 6.12 24.12 0.03 1.49 ind:imp:3p; +brouillait brouiller VER 6.12 24.12 0.01 3.92 ind:imp:3s; +brouillamini brouillamini NOM m s 0.01 0.27 0.01 0.27 +brouillant brouiller VER 6.12 24.12 0.21 0.95 par:pre; +brouillard brouillard NOM m s 10.88 35.20 10.51 32.84 +brouillardeuse brouillardeux ADJ f s 0.00 0.27 0.00 0.07 +brouillardeux brouillardeux ADJ m s 0.00 0.27 0.00 0.20 +brouillards brouillard NOM m p 10.88 35.20 0.37 2.36 +brouillassait brouillasser VER 0.00 0.07 0.00 0.07 ind:imp:3s; +brouillasse brouillasse NOM f s 0.00 0.27 0.00 0.27 +brouille brouiller VER 6.12 24.12 1.20 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brouillent brouiller VER 6.12 24.12 0.29 1.35 ind:pre:3p; +brouiller brouiller VER 6.12 24.12 1.33 4.32 inf; +brouilleraient brouiller VER 6.12 24.12 0.02 0.00 cnd:pre:3p; +brouillerait brouiller VER 6.12 24.12 0.00 0.07 cnd:pre:3s; +brouillerons brouiller VER 6.12 24.12 0.10 0.07 ind:fut:1p; +brouilles brouiller VER 6.12 24.12 0.06 0.07 ind:pre:2s;sub:pre:2s; +brouilleur brouilleur NOM m s 0.78 0.00 0.66 0.00 +brouilleurs brouilleur NOM m p 0.78 0.00 0.12 0.00 +brouillez brouiller VER 6.12 24.12 0.10 0.00 imp:pre:2p;ind:pre:2p; +brouillon brouillon NOM m s 1.17 4.93 1.12 3.18 +brouillonne brouillon ADJ f s 0.39 1.96 0.10 0.47 +brouillonnes brouillon ADJ f p 0.39 1.96 0.00 0.14 +brouillonné brouillonner VER m s 0.00 0.07 0.00 0.07 par:pas; +brouillons brouillon ADJ m p 0.39 1.96 0.19 0.41 +brouillât brouiller VER 6.12 24.12 0.00 0.20 sub:imp:3s; +brouillèrent brouiller VER 6.12 24.12 0.00 0.41 ind:pas:3p; +brouillé brouiller VER m s 6.12 24.12 1.52 3.51 par:pas; +brouillée brouiller VER f s 6.12 24.12 0.24 1.62 par:pas; +brouillées brouillé ADJ f p 2.44 4.32 0.20 0.61 +brouillés brouillé ADJ m p 2.44 4.32 1.72 1.35 +brouis brouir VER 0.00 0.14 0.00 0.07 ind:pas:1s; +brouit brouir VER 0.00 0.14 0.00 0.07 ind:pre:3s; +broum broum ONO 0.19 0.74 0.19 0.74 +broussaille broussaille NOM f s 1.94 7.16 0.50 2.64 +broussailles broussaille NOM f p 1.94 7.16 1.44 4.53 +broussailleuse broussailleux ADJ f s 0.05 1.96 0.02 0.41 +broussailleuses broussailleux ADJ f p 0.05 1.96 0.00 0.20 +broussailleux broussailleux ADJ m 0.05 1.96 0.03 1.35 +broussait brousser VER 0.00 0.07 0.00 0.07 ind:imp:3s; +broussard broussard NOM m s 0.28 0.14 0.28 0.14 +brousse brousse NOM f s 0.95 11.01 0.95 10.88 +brousses brousse NOM f p 0.95 11.01 0.00 0.14 +brout brout NOM m s 0.10 0.81 0.10 0.81 +brouta brouter VER 1.65 6.01 0.00 0.07 ind:pas:3s; +broutage broutage NOM m s 0.03 0.00 0.03 0.00 +broutaient brouter VER 1.65 6.01 0.01 0.88 ind:imp:3p; +broutait brouter VER 1.65 6.01 0.00 0.47 ind:imp:3s; +broutant brouter VER 1.65 6.01 0.01 0.74 par:pre; +broutantes broutant ADJ f p 0.00 0.07 0.00 0.07 +broutard broutard NOM m s 0.01 0.14 0.01 0.14 +broute brouter VER 1.65 6.01 0.36 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +broutent brouter VER 1.65 6.01 0.16 0.34 ind:pre:3p; +brouter brouter VER 1.65 6.01 0.70 2.16 inf; +brouterai brouter VER 1.65 6.01 0.00 0.07 ind:fut:1s; +brouteraient brouter VER 1.65 6.01 0.00 0.07 cnd:pre:3p; +broutes brouter VER 1.65 6.01 0.14 0.07 ind:pre:2s; +brouteur brouteur ADJ m s 0.19 0.41 0.01 0.00 +brouteurs brouteur ADJ m p 0.19 0.41 0.00 0.14 +brouteuse brouteur ADJ f s 0.19 0.41 0.09 0.14 +brouteuses brouteur ADJ f p 0.19 0.41 0.09 0.14 +broutez brouter VER 1.65 6.01 0.02 0.00 imp:pre:2p;ind:pre:2p; +broutille broutille NOM f s 1.87 1.82 0.77 0.61 +broutilles broutille NOM f p 1.87 1.82 1.10 1.22 +broutèrent brouter VER 1.65 6.01 0.00 0.07 ind:pas:3p; +brouté brouter VER m s 1.65 6.01 0.24 0.20 par:pas; +broutée brouter VER f s 1.65 6.01 0.01 0.07 par:pas; +broutés brouter VER m p 1.65 6.01 0.00 0.07 par:pas; +brown_sugar brown_sugar NOM m 0.00 0.07 0.00 0.07 +browning browning NOM m s 0.00 0.20 0.00 0.14 +brownings browning NOM m p 0.00 0.20 0.00 0.07 +broya broyer VER 4.08 8.85 0.01 0.20 ind:pas:3s; +broyage broyage NOM m s 0.08 0.14 0.08 0.07 +broyages broyage NOM m p 0.08 0.14 0.00 0.07 +broyaient broyer VER 4.08 8.85 0.00 0.41 ind:imp:3p; +broyais broyer VER 4.08 8.85 0.04 0.27 ind:imp:1s;ind:imp:2s; +broyait broyer VER 4.08 8.85 0.10 1.28 ind:imp:3s; +broyant broyer VER 4.08 8.85 0.00 1.08 par:pre; +broyer broyer VER 4.08 8.85 1.61 1.89 inf; +broyeur broyeur NOM m s 1.56 0.27 1.54 0.20 +broyeurs broyeur NOM m p 1.56 0.27 0.03 0.07 +broyeuse broyeur ADJ f s 0.12 0.54 0.06 0.41 +broyez broyer VER 4.08 8.85 0.23 0.00 imp:pre:2p;ind:pre:2p; +broyèrent broyer VER 4.08 8.85 0.00 0.07 ind:pas:3p; +broyé broyer VER m s 4.08 8.85 0.55 1.01 par:pas; +broyée broyé ADJ f s 0.75 1.82 0.16 0.54 +broyées broyé ADJ f p 0.75 1.82 0.19 0.14 +broyés broyer VER m p 4.08 8.85 0.27 0.27 par:pas; +brrr brrr ONO 0.31 1.82 0.31 1.82 +brèche_dent brèche_dent NOM p 0.00 0.07 0.00 0.07 +brèche brèche NOM f s 3.83 9.59 3.54 7.70 +brèches brèche NOM f p 3.83 9.59 0.28 1.89 +brème brème NOM f s 0.05 1.49 0.05 0.54 +brèmes brème NOM f p 0.05 1.49 0.00 0.95 +brève bref ADJ f s 15.63 74.80 3.86 20.41 +brèves bref ADJ f p 15.63 74.80 0.52 8.99 +bru bru NOM f s 1.45 3.24 1.44 2.84 +bruant bruant NOM m s 0.00 0.14 0.00 0.07 +bruants bruant NOM m p 0.00 0.14 0.00 0.07 +brucellose brucellose NOM f s 0.03 0.07 0.03 0.07 +bréchet bréchet NOM m s 0.11 0.54 0.11 0.54 +brugeois brugeois ADJ m 0.00 0.34 0.00 0.14 +brugeoise brugeois ADJ f s 0.00 0.34 0.00 0.14 +brugeoises brugeois ADJ f p 0.00 0.34 0.00 0.07 +bruges bruges NOM s 0.00 0.07 0.00 0.07 +brugnon brugnon NOM m s 0.14 0.27 0.00 0.20 +brugnons brugnon NOM m p 0.14 0.27 0.14 0.07 +bréhaigne bréhaigne ADJ f s 0.00 0.27 0.00 0.14 +bréhaignes bréhaigne ADJ f p 0.00 0.27 0.00 0.14 +bruinait bruiner VER 0.14 0.95 0.00 0.54 ind:imp:3s; +bruinasse bruiner VER 0.14 0.95 0.00 0.07 sub:imp:1s; +bruine bruiner VER 0.14 0.95 0.14 0.27 ind:pre:3s; +bruiner bruiner VER 0.14 0.95 0.00 0.07 inf; +bruines bruine NOM f p 0.06 2.77 0.00 0.07 +bruire bruire VER 0.48 2.97 0.23 1.42 inf; +bruissa bruisser VER 0.15 3.45 0.00 0.07 ind:pas:3s; +bruissaient bruisser VER 0.15 3.45 0.00 0.74 ind:imp:3p; +bruissait bruisser VER 0.15 3.45 0.00 1.42 ind:imp:3s; +bruissant bruissant ADJ m s 0.02 4.66 0.01 1.35 +bruissante bruissant ADJ f s 0.02 4.66 0.00 2.09 +bruissantes bruissant ADJ f p 0.02 4.66 0.01 0.68 +bruissants bruissant ADJ m p 0.02 4.66 0.00 0.54 +bruisse bruisser VER 0.15 3.45 0.01 0.14 ind:pre:3s; +bruissement bruissement NOM m s 0.77 8.24 0.75 6.96 +bruissements bruissement NOM m p 0.77 8.24 0.02 1.28 +bruissent bruisser VER 0.15 3.45 0.14 0.47 ind:pre:3p; +bruissé bruisser VER m s 0.15 3.45 0.00 0.07 par:pas; +bruit bruit NOM m s 94.13 281.49 78.94 223.18 +bruita bruiter VER 0.01 0.07 0.01 0.00 ind:pas:3s; +bruitage bruitage NOM m s 0.23 0.54 0.04 0.47 +bruitages bruitage NOM m p 0.23 0.54 0.20 0.07 +bruiter bruiter VER 0.01 0.07 0.00 0.07 inf; +bruiteur bruiteur NOM m s 0.04 0.20 0.03 0.20 +bruiteuse bruiteur NOM f s 0.04 0.20 0.01 0.00 +bruits bruit NOM m p 94.13 281.49 15.18 58.31 +brêles brêler VER 0.02 0.07 0.02 0.07 ind:pre:2s; +brumaille brumaille NOM f s 0.00 0.07 0.00 0.07 +brumaire brumaire NOM m s 0.10 0.27 0.10 0.27 +brumassait brumasser VER 0.00 0.07 0.00 0.07 ind:imp:3s; +brume brume NOM f s 5.07 42.57 4.17 35.88 +brument brumer VER 0.00 0.47 0.00 0.47 ind:pre:3p; +brumes brume NOM f p 5.07 42.57 0.91 6.69 +brumeuse brumeux ADJ f s 1.19 6.89 0.10 2.09 +brumeuses brumeux ADJ f p 1.19 6.89 0.05 0.61 +brumeux brumeux ADJ m 1.19 6.89 1.04 4.19 +brumisateur brumisateur NOM m s 0.01 0.00 0.01 0.00 +brun brun ADJ m s 13.16 68.18 3.39 21.35 +brunch brunch NOM m s 1.63 0.14 1.53 0.00 +brunches brunch NOM m p 1.63 0.14 0.02 0.07 +brunchs brunch NOM m p 1.63 0.14 0.08 0.07 +brune brun ADJ f s 13.16 68.18 6.51 25.34 +brunes brune NOM f p 5.20 7.77 0.76 1.35 +brunet brunet ADJ m s 0.04 0.14 0.00 0.07 +brunette brunette NOM f s 0.35 0.54 0.28 0.47 +brunettes brunette NOM f p 0.35 0.54 0.07 0.07 +bruni bruni ADJ m s 0.01 1.96 0.01 0.81 +brunie brunir VER f s 0.19 3.24 0.01 0.54 par:pas; +brunies brunir VER f p 0.19 3.24 0.00 0.61 par:pas; +brunir brunir VER 0.19 3.24 0.16 0.74 inf; +brunirent brunir VER 0.19 3.24 0.00 0.07 ind:pas:3p; +brunis bruni ADJ m p 0.01 1.96 0.00 0.27 +brunissage brunissage NOM m s 0.02 0.00 0.02 0.00 +brunissaient brunir VER 0.19 3.24 0.00 0.07 ind:imp:3p; +brunissent brunir VER 0.19 3.24 0.01 0.20 ind:pre:3p; +brunissoir brunissoir NOM m s 0.00 0.07 0.00 0.07 +brunissures brunissure NOM f p 0.00 0.07 0.00 0.07 +brunit brunir VER 0.19 3.24 0.00 0.34 ind:pre:3s;ind:pas:3s; +brunâtre brunâtre ADJ s 0.04 5.20 0.03 3.51 +brunâtres brunâtre ADJ p 0.04 5.20 0.01 1.69 +bruns brun ADJ m p 13.16 68.18 2.69 10.88 +brus bru NOM f p 1.45 3.24 0.01 0.41 +brushing brushing NOM m s 0.65 0.34 0.65 0.34 +brésil brésil NOM m s 0.10 0.20 0.10 0.07 +brésilien brésilien NOM m s 2.88 2.43 1.61 0.61 +brésilienne brésilien ADJ f s 1.92 4.32 0.70 1.55 +brésiliennes brésilien ADJ f p 1.92 4.32 0.05 0.61 +brésiliens brésilien NOM m p 2.88 2.43 0.89 1.08 +brésils brésil NOM m p 0.10 0.20 0.00 0.14 +brusqua brusquer VER 1.83 4.05 0.00 0.20 ind:pas:3s; +brusquai brusquer VER 1.83 4.05 0.00 0.07 ind:pas:1s; +brusquait brusquer VER 1.83 4.05 0.00 0.07 ind:imp:3s; +brusquant brusquer VER 1.83 4.05 0.00 0.07 par:pre; +brusque brusque ADJ s 2.69 35.34 1.77 26.76 +brusquement brusquement ADV 4.88 111.42 4.88 111.42 +brusquent brusquer VER 1.83 4.05 0.00 0.07 ind:pre:3p; +brusquer brusquer VER 1.83 4.05 0.83 2.03 inf; +brusquerai brusquer VER 1.83 4.05 0.15 0.00 ind:fut:1s; +brusqueraient brusquer VER 1.83 4.05 0.01 0.00 cnd:pre:3p; +brusquerie brusquerie NOM f s 0.09 4.32 0.09 4.26 +brusqueries brusquerie NOM f p 0.09 4.32 0.00 0.07 +brusques brusque ADJ p 2.69 35.34 0.92 8.58 +brusquette brusquet ADJ f s 0.00 0.07 0.00 0.07 +brusquez brusquer VER 1.83 4.05 0.34 0.20 imp:pre:2p;ind:pre:2p; +brusquons brusquer VER 1.83 4.05 0.17 0.00 imp:pre:1p; +brusquât brusquer VER 1.83 4.05 0.00 0.07 sub:imp:3s; +brusqué brusquer VER m s 1.83 4.05 0.04 0.34 par:pas; +brusquée brusquer VER f s 1.83 4.05 0.14 0.14 par:pas; +brut brut ADJ m s 3.86 8.65 1.38 3.31 +brutal brutal ADJ m s 9.82 35.34 5.29 15.47 +brutale brutal ADJ f s 9.82 35.34 3.29 14.19 +brutalement brutalement ADV 2.89 23.11 2.89 23.11 +brutales brutal ADJ f p 9.82 35.34 0.32 3.24 +brutalisaient brutaliser VER 1.41 1.15 0.02 0.00 ind:imp:3p; +brutalisait brutaliser VER 1.41 1.15 0.08 0.00 ind:imp:3s; +brutalisant brutaliser VER 1.41 1.15 0.01 0.07 par:pre; +brutalise brutaliser VER 1.41 1.15 0.12 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +brutaliser brutaliser VER 1.41 1.15 0.48 0.41 inf; +brutaliserai brutaliser VER 1.41 1.15 0.01 0.00 ind:fut:1s; +brutaliserait brutaliser VER 1.41 1.15 0.00 0.07 cnd:pre:3s; +brutalisez brutaliser VER 1.41 1.15 0.07 0.00 imp:pre:2p;ind:pre:2p; +brutalisé brutaliser VER m s 1.41 1.15 0.49 0.20 par:pas; +brutalisée brutaliser VER f s 1.41 1.15 0.08 0.14 par:pas; +brutalisées brutaliser VER f p 1.41 1.15 0.02 0.00 par:pas; +brutalisés brutaliser VER m p 1.41 1.15 0.03 0.07 par:pas; +brutalité brutalité NOM f s 3.11 11.15 2.87 9.93 +brutalités brutalité NOM f p 3.11 11.15 0.24 1.22 +brutaux brutal ADJ m p 9.82 35.34 0.92 2.43 +brute brute NOM f s 14.03 12.09 9.04 7.57 +brutes brute NOM f p 14.03 12.09 5.00 4.53 +bruts brut ADJ m p 3.86 8.65 0.42 0.74 +bréviaire bréviaire NOM m s 0.21 1.69 0.21 1.69 +bruxellois bruxellois ADJ m 0.00 0.54 0.00 0.47 +bruxelloise bruxellois ADJ f s 0.00 0.54 0.00 0.07 +bruyamment bruyamment ADV 0.95 10.54 0.95 10.54 +bruyant bruyant ADJ m s 5.88 16.82 2.91 4.80 +bruyante bruyant ADJ f s 5.88 16.82 1.17 5.61 +bruyantes bruyant ADJ f p 5.88 16.82 0.45 1.82 +bruyants bruyant ADJ m p 5.88 16.82 1.37 4.59 +bruyère bruyère NOM f s 0.58 6.01 0.53 4.12 +bruyères bruyère NOM f p 0.58 6.01 0.05 1.89 +bègue bègue NOM s 0.24 0.54 0.20 0.41 +bègues bègue NOM p 0.24 0.54 0.04 0.14 +bé bé ONO 0.85 1.15 0.85 1.15 +bu boire VER m s 339.06 274.32 53.10 40.07 par:pas; +béa béer VER 0.23 3.65 0.00 0.20 ind:pas:3s; +bua buer VER 0.09 0.00 0.09 0.00 ind:pas:3s; +béaient béer VER 0.23 3.65 0.00 0.61 ind:imp:3p; +béait béer VER 0.23 3.65 0.10 1.01 ind:imp:3s; +béance béance NOM f s 0.16 0.61 0.16 0.61 +buanderie buanderie NOM f s 0.81 1.69 0.81 1.55 +buanderies buanderie NOM f p 0.81 1.69 0.00 0.14 +béant béant ADJ m s 1.21 10.34 0.34 2.77 +béante béant ADJ f s 1.21 10.34 0.44 4.26 +béantes béant ADJ f p 1.21 10.34 0.21 2.30 +béants béant ADJ m p 1.21 10.34 0.22 1.01 +béarnais béarnais ADJ m p 0.13 0.00 0.01 0.00 +béarnaise béarnais ADJ f s 0.13 0.00 0.12 0.00 +béat béat ADJ m s 0.26 4.73 0.21 1.89 +béate béat ADJ f s 0.26 4.73 0.05 2.36 +béatement béatement ADV 0.01 1.42 0.01 1.42 +béates béat ADJ f p 0.26 4.73 0.00 0.14 +béatification béatification NOM f s 0.05 0.27 0.05 0.20 +béatifications béatification NOM f p 0.05 0.27 0.00 0.07 +béatifier béatifier VER 0.11 0.54 0.00 0.20 inf; +béatifique béatifique ADJ m s 0.00 0.14 0.00 0.14 +béatifié béatifier VER m s 0.11 0.54 0.11 0.14 par:pas; +béatifiée béatifier VER f s 0.11 0.54 0.00 0.07 par:pas; +béatifiés béatifier VER m p 0.11 0.54 0.00 0.14 par:pas; +béatitude béatitude NOM f s 0.58 5.74 0.58 5.47 +béatitudes béatitude NOM f p 0.58 5.74 0.00 0.27 +béats béat ADJ m p 0.26 4.73 0.00 0.34 +bubble_gum bubble_gum NOM m s 0.08 0.07 0.07 0.07 +bubble_gum bubble_gum NOM m s 0.08 0.07 0.01 0.00 +bubon bubon NOM m s 0.22 0.34 0.02 0.14 +bubonique bubonique ADJ s 0.25 0.07 0.25 0.07 +bubons bubon NOM m p 0.22 0.34 0.20 0.20 +bébé bébé NOM m s 191.63 45.20 173.82 36.22 +bébé_éprouvette bébé_éprouvette NOM m p 0.01 0.00 0.01 0.00 +bébés bébé NOM m p 191.63 45.20 17.81 8.99 +bébête bébête ADJ s 0.32 2.91 0.25 2.77 +bébêtes bébête ADJ p 0.32 2.91 0.07 0.14 +bécabunga bécabunga NOM m s 0.00 0.07 0.00 0.07 +bécane bécane NOM f s 1.77 4.80 1.46 3.92 +bécanes bécane NOM f p 1.77 4.80 0.32 0.88 +bécard bécard NOM m s 0.00 0.07 0.00 0.07 +bécarre bécarre NOM m s 0.02 0.07 0.02 0.07 +bécasse bécasse NOM f s 1.56 1.08 1.40 0.54 +bécasses bécasse NOM f p 1.56 1.08 0.16 0.54 +bécassine bécassine NOM f s 0.01 0.20 0.01 0.14 +bécassines bécassine NOM f p 0.01 0.20 0.00 0.07 +buccal buccal ADJ m s 0.54 0.34 0.16 0.14 +buccale buccal ADJ f s 0.54 0.34 0.33 0.07 +buccales buccal ADJ f p 0.54 0.34 0.04 0.07 +buccaux buccal ADJ m p 0.54 0.34 0.03 0.07 +buccin buccin NOM m s 0.00 0.14 0.00 0.14 +buccinateur buccinateur NOM m s 0.00 0.07 0.00 0.07 +bucco_génital bucco_génital ADJ m s 0.11 0.00 0.06 0.00 +bucco_génital bucco_génital ADJ f p 0.11 0.00 0.02 0.00 +bucco_génital bucco_génital ADJ m p 0.11 0.00 0.02 0.00 +bucco bucco NOM m s 0.21 0.20 0.21 0.20 +buccogénitales buccogénital ADJ f p 0.01 0.00 0.01 0.00 +bêchaient bêcher VER 0.55 2.70 0.00 0.14 ind:imp:3p; +bêchait bêcher VER 0.55 2.70 0.01 0.41 ind:imp:3s; +béchamel béchamel NOM f s 0.37 0.41 0.37 0.41 +bêchant bêcher VER 0.55 2.70 0.14 0.14 par:pre; +bêche bêche NOM f s 0.46 3.72 0.42 3.51 +bêchent bêcher VER 0.55 2.70 0.00 0.14 ind:pre:3p; +bécher bécher NOM m s 0.01 0.00 0.01 0.00 +bêcher bêcher VER 0.55 2.70 0.36 1.15 inf; +bêches bêche NOM f p 0.46 3.72 0.04 0.20 +bêcheur bêcheur ADJ m s 0.52 0.95 0.22 0.41 +bêcheurs bêcheur NOM m p 0.35 1.22 0.00 0.20 +bêcheuse bêcheur ADJ f s 0.52 0.95 0.28 0.34 +bêcheuses bêcheuse NOM f p 0.04 0.00 0.04 0.00 +bêché bêcher VER m s 0.55 2.70 0.00 0.47 par:pas; +bucoliastes bucoliaste NOM m p 0.00 0.07 0.00 0.07 +bucolique bucolique ADJ s 0.17 1.22 0.14 0.95 +bucoliques bucolique ADJ m p 0.17 1.22 0.03 0.27 +bécot bécot NOM m s 0.42 0.47 0.41 0.20 +bécotait bécoter VER 1.05 0.88 0.05 0.07 ind:imp:3s; +bécotant bécoter VER 1.05 0.88 0.00 0.14 par:pre; +bécote bécoter VER 1.05 0.88 0.21 0.14 ind:pre:1s;ind:pre:3s;sub:pre:3s; +bécotent bécoter VER 1.05 0.88 0.27 0.07 ind:pre:3p; +bécoter bécoter VER 1.05 0.88 0.28 0.41 inf; +bécoteur bécoteur NOM m s 0.02 0.00 0.02 0.00 +bécots bécot NOM m p 0.42 0.47 0.01 0.27 +bécoté bécoter VER m s 1.05 0.88 0.13 0.00 par:pas; +bécotée bécoter VER f s 1.05 0.88 0.00 0.07 par:pas; +bécotés bécoter VER m p 1.05 0.88 0.11 0.00 par:pas; +bucranes bucrane NOM m p 0.00 0.14 0.00 0.14 +bucéphales bucéphale NOM m p 0.00 0.07 0.00 0.07 +bédane bédane NOM m s 0.00 0.20 0.00 0.20 +buddha buddha NOM m s 0.40 0.00 0.40 0.00 +budget budget NOM m s 11.21 6.62 10.54 5.34 +budgets budget NOM m p 11.21 6.62 0.67 1.28 +budgétaire budgétaire ADJ s 1.08 0.27 0.55 0.07 +budgétairement budgétairement ADV 0.00 0.07 0.00 0.07 +budgétaires budgétaire ADJ p 1.08 0.27 0.53 0.20 +budgétisation budgétisation NOM f s 0.01 0.00 0.01 0.00 +budgétivores budgétivore NOM p 0.00 0.07 0.00 0.07 +bédouin bédouin ADJ m s 0.26 0.47 0.24 0.00 +bédouine bédouin NOM f s 0.23 0.54 0.14 0.00 +bédouines bédouin NOM f p 0.23 0.54 0.02 0.00 +bédouins bédouin NOM m p 0.23 0.54 0.04 0.20 +bédé bédé NOM f s 0.29 0.00 0.09 0.00 +bédéphiles bédéphile NOM p 0.01 0.00 0.01 0.00 +bédés bédé NOM f p 0.29 0.00 0.20 0.00 +bée bé ADJ f s 0.96 5.34 0.96 5.14 +bue bu ADJ f s 3.04 4.86 0.44 2.36 +buen_retiro buen_retiro NOM m 0.00 0.14 0.00 0.14 +béent béer VER 0.23 3.65 0.10 0.14 ind:pre:3p; +béer béer VER 0.23 3.65 0.00 0.27 inf; +bées bé ADJ f p 0.96 5.34 0.00 0.20 +bues bu ADJ f p 3.04 4.86 0.18 0.34 +buffalo buffalo NOM s 0.05 0.00 0.05 0.00 +buffet buffet NOM m s 6.93 21.35 6.63 20.14 +buffets buffet NOM m p 6.93 21.35 0.30 1.22 +buffle buffle NOM m s 1.79 4.19 1.16 1.96 +buffles buffle NOM m p 1.79 4.19 0.62 2.23 +buffleterie buffleterie NOM f s 0.00 0.74 0.00 0.14 +buffleteries buffleterie NOM f p 0.00 0.74 0.00 0.61 +bufflonne bufflon NOM f s 0.00 0.07 0.00 0.07 +bufo bufo NOM m s 0.01 0.00 0.01 0.00 +bug bug NOM m s 1.90 0.00 0.64 0.00 +bégaie bégayer VER 2.61 7.50 0.59 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bégaiement bégaiement NOM m s 0.54 2.23 0.54 1.49 +bégaiements bégaiement NOM m p 0.54 2.23 0.00 0.74 +bégaient bégayer VER 2.61 7.50 0.00 0.07 ind:pre:3p; +bégaiera bégayer VER 2.61 7.50 0.01 0.00 ind:fut:3s; +bégaies bégayer VER 2.61 7.50 0.23 0.07 ind:pre:2s; +bégaya bégayer VER 2.61 7.50 0.01 1.15 ind:pas:3s; +bégayai bégayer VER 2.61 7.50 0.00 0.14 ind:pas:1s; +bégayaient bégayer VER 2.61 7.50 0.00 0.07 ind:imp:3p; +bégayais bégayer VER 2.61 7.50 0.08 0.27 ind:imp:1s;ind:imp:2s; +bégayait bégayer VER 2.61 7.50 0.18 1.76 ind:imp:3s; +bégayant bégayer VER 2.61 7.50 0.00 0.95 par:pre; +bégayante bégayant ADJ f s 0.01 0.68 0.01 0.14 +bégayantes bégayant ADJ f p 0.01 0.68 0.00 0.07 +bégayants bégayant ADJ m p 0.01 0.68 0.00 0.07 +bégaye bégayer VER 2.61 7.50 0.41 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bégayer bégayer VER 2.61 7.50 0.64 1.01 inf; +bégayes bégayer VER 2.61 7.50 0.05 0.00 ind:pre:2s; +bégayeur bégayeur ADJ m s 0.00 0.14 0.00 0.14 +bégayez bégayer VER 2.61 7.50 0.15 0.07 ind:pre:2p; +bégayé bégayer VER m s 2.61 7.50 0.27 0.27 par:pas; +bégayées bégayer VER f p 2.61 7.50 0.00 0.07 par:pas; +buggy buggy NOM m s 0.28 0.00 0.28 0.00 +bugle bugle NOM m s 0.07 0.34 0.06 0.34 +bugler bugler VER 0.07 0.00 0.07 0.00 inf; +bugles bugle NOM p 0.07 0.34 0.01 0.00 +bugne bugne NOM f s 0.01 0.14 0.01 0.07 +bugnes bugne NOM f p 0.01 0.14 0.00 0.07 +bugné bugner VER m s 0.01 0.00 0.01 0.00 par:pas; +bégonias bégonia NOM m p 0.05 1.15 0.05 1.15 +bugs bug NOM m p 1.90 0.00 1.27 0.00 +bégueule bégueule NOM f s 0.07 0.20 0.06 0.07 +bégueulerie bégueulerie NOM f s 0.00 0.07 0.00 0.07 +bégueules bégueule NOM f p 0.07 0.20 0.01 0.14 +béguin béguin NOM m s 3.11 2.57 3.09 2.16 +béguinage béguinage NOM m s 0.00 0.07 0.00 0.07 +béguine béguine NOM f s 0.00 0.14 0.00 0.14 +béguineuse béguineuse NOM f s 0.00 0.14 0.00 0.14 +béguins béguin NOM m p 3.11 2.57 0.02 0.41 +bégum bégum NOM f s 0.00 0.27 0.00 0.27 +béhème béhème NOM f s 0.20 0.00 0.20 0.00 +béhémoth béhémoth NOM m s 0.00 0.47 0.00 0.47 +building building NOM m s 2.01 3.24 1.67 1.42 +buildings building NOM m p 2.01 3.24 0.34 1.82 +buires buire NOM f p 0.00 0.07 0.00 0.07 +buis buis NOM m 0.03 7.23 0.03 7.23 +buisson_ardent buisson_ardent NOM m s 0.01 0.00 0.01 0.00 +buisson buisson NOM m s 7.73 27.09 3.81 10.00 +buissonnant buissonner VER 0.00 0.20 0.00 0.07 par:pre; +buissonnants buissonnant ADJ m p 0.00 0.14 0.00 0.07 +buissonne buissonner VER 0.00 0.20 0.00 0.07 ind:pre:3s; +buissonner buissonner VER 0.00 0.20 0.00 0.07 inf; +buissonneuse buissonneux ADJ f s 0.00 0.41 0.00 0.07 +buissonneuses buissonneux ADJ f p 0.00 0.41 0.00 0.07 +buissonneux buissonneux ADJ m p 0.00 0.41 0.00 0.27 +buissonnière buissonnier ADJ f s 0.79 1.55 0.79 1.22 +buissonnières buissonnier ADJ f p 0.79 1.55 0.00 0.34 +buissons buisson NOM m p 7.73 27.09 3.92 17.09 +béjaune béjaune NOM m s 0.00 0.20 0.00 0.20 +bélître bélître NOM m s 0.01 0.07 0.01 0.07 +bêlaient bêler VER 0.23 1.55 0.00 0.20 ind:imp:3p; +bêlait bêler VER 0.23 1.55 0.00 0.20 ind:imp:3s; +bêlant bêler VER 0.23 1.55 0.03 0.34 par:pre; +bêlantes bêlant ADJ f p 0.16 0.47 0.00 0.27 +bêlants bêlant ADJ m p 0.16 0.47 0.14 0.07 +bulbe bulbe NOM m s 0.47 1.82 0.31 1.01 +bulbes bulbe NOM m p 0.47 1.82 0.16 0.81 +bulbeuse bulbeux ADJ f s 0.16 0.07 0.14 0.00 +bulbeux bulbeux ADJ m s 0.16 0.07 0.02 0.07 +bulbul bulbul NOM m s 0.00 0.47 0.00 0.47 +bêle bêler VER 0.23 1.55 0.17 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bêlement bêlement NOM m s 0.12 1.22 0.12 0.54 +bêlements bêlement NOM m p 0.12 1.22 0.00 0.68 +bêlent bêler VER 0.23 1.55 0.00 0.14 ind:pre:3p; +bêler bêler VER 0.23 1.55 0.02 0.27 inf; +bulgare bulgare ADJ s 1.38 0.95 1.14 0.74 +bulgares bulgare NOM p 0.79 1.08 0.28 0.61 +bulgaro bulgaro ADV 0.00 0.07 0.00 0.07 +bulge bulge NOM m s 0.02 0.00 0.02 0.00 +bélier bélier NOM m s 1.51 3.99 1.32 3.11 +béliers bélier NOM m p 1.51 3.99 0.19 0.88 +bélinogramme bélinogramme NOM m s 0.00 0.07 0.00 0.07 +bull_dog bull_dog NOM m s 0.01 0.68 0.01 0.61 +bull_dog bull_dog NOM m p 0.01 0.68 0.00 0.07 +bull_finch bull_finch NOM m s 0.00 0.14 0.00 0.14 +bull_terrier bull_terrier NOM m s 0.02 0.00 0.02 0.00 +bull bull NOM m s 1.04 0.61 0.61 0.41 +bulla buller VER 0.35 0.20 0.00 0.14 ind:pas:3s; +bullaire bullaire NOM m s 0.01 0.00 0.01 0.00 +bulldog bulldog NOM m s 0.49 0.20 0.30 0.14 +bulldogs bulldog NOM m p 0.49 0.20 0.19 0.07 +bulldozer bulldozer NOM m s 2.33 2.64 1.26 1.89 +bulldozers bulldozer NOM m p 2.33 2.64 1.07 0.74 +bulle bulle NOM f s 8.11 16.55 2.99 6.62 +buller buller VER 0.35 0.20 0.12 0.07 inf; +bulles bulle NOM f p 8.11 16.55 5.12 9.93 +bulletin bulletin NOM m s 6.35 7.50 4.99 5.41 +bulletins bulletin NOM m p 6.35 7.50 1.36 2.09 +bulleux bulleux ADJ m s 0.00 0.14 0.00 0.14 +bullez buller VER 0.35 0.20 0.01 0.00 imp:pre:2p; +bulls bull NOM m p 1.04 0.61 0.43 0.20 +bulot bulot NOM m s 0.01 0.07 0.01 0.00 +bulots bulot NOM m p 0.01 0.07 0.00 0.07 +bélouga bélouga NOM m s 0.02 0.00 0.02 0.00 +bêlé bêler VER m s 0.23 1.55 0.01 0.27 par:pas; +béluga béluga NOM m s 0.02 0.00 0.02 0.00 +bémol bémol NOM m s 0.88 1.01 0.88 0.81 +bémolisé bémoliser VER m s 0.00 0.07 0.00 0.07 par:pas; +bémols bémol NOM m p 0.88 1.01 0.00 0.20 +bumper bumper NOM m 0.14 0.14 0.14 0.14 +buna buna NOM m s 0.01 0.00 0.01 0.00 +bénard bénard NOM m s 0.00 1.82 0.00 1.69 +bénarde bénard ADJ f s 0.00 0.34 0.00 0.14 +bénards bénard NOM m p 0.00 1.82 0.00 0.14 +bénef bénef NOM m s 0.71 0.68 0.43 0.61 +bénefs bénef NOM m p 0.71 0.68 0.28 0.07 +bungalow bungalow NOM m s 0.03 12.84 0.01 12.43 +bungalows bungalow NOM m p 0.03 12.84 0.02 0.41 +béni bénir VER m s 48.77 18.92 10.90 4.26 par:pas; +bénie bénir VER f s 48.77 18.92 5.51 2.16 par:pas; +bénies bénir VER f p 48.77 18.92 0.72 0.47 par:pas; +bénigne bénin ADJ f s 1.56 3.45 0.88 1.69 +bénignement bénignement ADV 0.00 0.07 0.00 0.07 +bénignes bénin ADJ f p 1.56 3.45 0.10 0.81 +bénignité bénignité NOM f s 0.01 0.20 0.01 0.20 +bénin bénin ADJ m s 1.56 3.45 0.56 0.74 +béninois béninois ADJ m s 0.00 0.14 0.00 0.14 +bénins bénin ADJ m p 1.56 3.45 0.03 0.20 +bénir bénir VER 48.77 18.92 2.36 3.38 inf; +bénira bénir VER 48.77 18.92 0.66 0.20 ind:fut:3s; +bénirai bénir VER 48.77 18.92 0.05 0.00 ind:fut:1s; +bénirais bénir VER 48.77 18.92 0.01 0.14 cnd:pre:1s; +bénirait bénir VER 48.77 18.92 0.00 0.07 cnd:pre:3s; +béniras bénir VER 48.77 18.92 0.01 0.00 ind:fut:2s; +bénirez bénir VER 48.77 18.92 0.03 0.00 ind:fut:2p; +bénirons bénir VER 48.77 18.92 0.00 0.07 ind:fut:1p; +béniront bénir VER 48.77 18.92 0.04 0.00 ind:fut:3p; +bénis bénir VER m p 48.77 18.92 6.64 2.64 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +bénissaient bénir VER 48.77 18.92 0.00 0.27 ind:imp:3p; +bénissais bénir VER 48.77 18.92 0.01 0.20 ind:imp:1s; +bénissait bénir VER 48.77 18.92 0.03 1.28 ind:imp:3s; +bénissant bénir VER 48.77 18.92 0.02 0.47 par:pre; +bénisse bénir VER 48.77 18.92 18.82 0.95 sub:pre:1s;sub:pre:3s; +bénissent bénir VER 48.77 18.92 0.47 0.20 ind:pre:3p; +bénisseur bénisseur ADJ m s 0.00 0.61 0.00 0.34 +bénisseurs bénisseur ADJ m p 0.00 0.61 0.00 0.14 +bénisseuse bénisseur ADJ f s 0.00 0.61 0.00 0.14 +bénissez bénir VER 48.77 18.92 1.62 0.20 imp:pre:2p;ind:pre:2p; +bénissions bénir VER 48.77 18.92 0.00 0.14 ind:imp:1p; +bénissons bénir VER 48.77 18.92 0.17 0.00 imp:pre:1p;ind:pre:1p; +bénit bénit ADJ m s 2.81 4.26 0.72 1.15 +bénite bénit ADJ f s 2.81 4.26 2.08 2.64 +bénites bénit ADJ f p 2.81 4.26 0.01 0.27 +bénitier bénitier NOM m s 0.80 1.96 0.72 1.76 +bénitiers bénitier NOM m p 0.80 1.96 0.07 0.20 +bénits bénit ADJ m p 2.81 4.26 0.00 0.20 +bunker bunker NOM m s 4.51 0.81 3.89 0.68 +bunkers bunker NOM m p 4.51 0.81 0.62 0.14 +bénouze bénouze NOM m s 0.00 0.20 0.00 0.20 +bunraku bunraku NOM m s 0.00 0.07 0.00 0.07 +bunsen bunsen NOM m 0.00 0.07 0.00 0.07 +bénédicité bénédicité NOM m s 0.43 0.34 0.41 0.27 +bénédicités bénédicité NOM m p 0.43 0.34 0.02 0.07 +bénédictin bénédictin ADJ m s 0.04 0.95 0.01 0.34 +bénédictine bénédictin NOM f s 0.19 0.74 0.03 0.20 +bénédictines bénédictin NOM f p 0.19 0.74 0.14 0.20 +bénédictins bénédictin NOM m p 0.19 0.74 0.01 0.14 +bénédiction bénédiction NOM f s 11.15 8.18 10.61 7.43 +bénédictions bénédiction NOM f p 11.15 8.18 0.54 0.74 +bénéfice bénéfice NOM m s 8.97 11.42 4.31 8.04 +bénéfices bénéfice NOM m p 8.97 11.42 4.66 3.38 +bénéficia bénéficier VER 3.85 9.66 0.00 0.27 ind:pas:3s; +bénéficiaient bénéficier VER 3.85 9.66 0.01 0.68 ind:imp:3p; +bénéficiaire bénéficiaire NOM s 0.92 1.55 0.77 0.74 +bénéficiaires bénéficiaire NOM p 0.92 1.55 0.15 0.81 +bénéficiais bénéficier VER 3.85 9.66 0.00 0.34 ind:imp:1s; +bénéficiait bénéficier VER 3.85 9.66 0.02 1.28 ind:imp:3s; +bénéficiant bénéficier VER 3.85 9.66 0.17 0.47 par:pre; +bénéficie bénéficier VER 3.85 9.66 1.05 0.88 ind:pre:1s;ind:pre:3s; +bénéficient bénéficier VER 3.85 9.66 0.16 0.47 ind:pre:3p; +bénéficier bénéficier VER 3.85 9.66 1.43 3.24 inf; +bénéficiera bénéficier VER 3.85 9.66 0.26 0.14 ind:fut:3s; +bénéficierai bénéficier VER 3.85 9.66 0.04 0.00 ind:fut:1s; +bénéficierais bénéficier VER 3.85 9.66 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +bénéficierait bénéficier VER 3.85 9.66 0.05 0.14 cnd:pre:3s; +bénéficierez bénéficier VER 3.85 9.66 0.02 0.07 ind:fut:2p; +bénéficierons bénéficier VER 3.85 9.66 0.01 0.00 ind:fut:1p; +bénéficies bénéficier VER 3.85 9.66 0.08 0.00 ind:pre:2s; +bénéficiez bénéficier VER 3.85 9.66 0.19 0.00 imp:pre:2p;ind:pre:2p; +bénéficions bénéficier VER 3.85 9.66 0.04 0.07 ind:pre:1p; +bénéficiât bénéficier VER 3.85 9.66 0.00 0.07 sub:imp:3s; +bénéficièrent bénéficier VER 3.85 9.66 0.00 0.07 ind:pas:3p; +bénéficié bénéficier VER m s 3.85 9.66 0.30 1.49 par:pas; +bénéfique bénéfique ADJ s 1.61 3.24 1.43 2.84 +bénéfiques bénéfique ADJ p 1.61 3.24 0.18 0.41 +bénévolat bénévolat NOM m s 0.98 0.07 0.98 0.07 +bénévole bénévole ADJ s 1.52 2.70 1.23 1.69 +bénévolement bénévolement ADV 0.23 0.54 0.23 0.54 +bénévolence bénévolence NOM f s 0.00 0.07 0.00 0.07 +bénévoles bénévole NOM p 1.33 0.27 0.61 0.14 +béotien béotien NOM m s 0.23 0.47 0.20 0.07 +béotienne béotien ADJ f s 0.06 0.00 0.02 0.00 +béotiens béotien ADJ m p 0.06 0.00 0.03 0.00 +buprestes bupreste NOM m p 0.00 0.07 0.00 0.07 +béquant béquer VER 0.00 0.07 0.00 0.07 par:pre; +béquillant béquiller VER 0.00 0.14 0.00 0.07 par:pre; +béquillard béquillard ADJ m s 0.00 0.07 0.00 0.07 +béquille béquille NOM f s 2.70 6.15 1.05 2.91 +béquillent béquiller VER 0.00 0.14 0.00 0.07 ind:pre:3p; +béquilles béquille NOM f p 2.70 6.15 1.65 3.24 +béquilleux béquilleux ADJ m s 0.00 0.07 0.00 0.07 +buraliste buraliste NOM s 0.57 0.95 0.57 0.88 +buralistes buraliste NOM p 0.57 0.95 0.00 0.07 +bure bure NOM s 0.57 3.18 0.57 3.18 +bureau bureau NOM m s 167.13 150.07 156.68 130.07 +bureaucrate bureaucrate NOM s 1.95 1.28 0.80 0.47 +bureaucrates bureaucrate NOM p 1.95 1.28 1.15 0.81 +bureaucratie bureaucratie NOM f s 1.17 0.81 1.17 0.74 +bureaucraties bureaucratie NOM f p 1.17 0.81 0.00 0.07 +bureaucratique bureaucratique ADJ s 0.70 0.47 0.61 0.41 +bureaucratiquement bureaucratiquement ADV 0.00 0.07 0.00 0.07 +bureaucratiques bureaucratique ADJ p 0.70 0.47 0.09 0.07 +bureaucratisées bureaucratiser VER f p 0.00 0.07 0.00 0.07 par:pas; +bureautique bureautique ADJ f s 0.01 0.00 0.01 0.00 +bureautique bureautique NOM f s 0.01 0.00 0.01 0.00 +bureaux bureau NOM m p 167.13 150.07 10.45 20.00 +burent boire VER 339.06 274.32 0.02 3.99 ind:pas:3p; +béret béret NOM m s 1.50 15.07 1.19 13.31 +bérets béret NOM m p 1.50 15.07 0.31 1.76 +burette burette NOM f s 1.03 1.62 0.61 0.88 +burettes burette NOM f p 1.03 1.62 0.42 0.74 +burg burg NOM m s 0.05 0.20 0.05 0.20 +burger burger NOM m s 2.31 0.07 1.33 0.00 +burgers burger NOM m p 2.31 0.07 0.97 0.07 +burgondes burgonde ADJ m p 0.10 0.07 0.10 0.07 +burgraviat burgraviat NOM m s 0.00 0.07 0.00 0.07 +béribéri béribéri NOM m s 0.18 0.00 0.18 0.00 +burin burin NOM m s 0.59 2.23 0.57 1.96 +burina buriner VER 0.11 0.61 0.10 0.07 ind:pas:3s; +buriner buriner VER 0.11 0.61 0.01 0.07 inf; +burins burin NOM m p 0.59 2.23 0.02 0.27 +buriné buriné ADJ m s 0.02 0.68 0.01 0.47 +burinée buriné ADJ f s 0.02 0.68 0.01 0.07 +burinées buriné ADJ f p 0.02 0.68 0.00 0.07 +burinés buriner VER m p 0.11 0.61 0.00 0.14 par:pas; +burkinabé burkinabé ADJ s 0.01 0.00 0.01 0.00 +burlesque burlesque NOM m s 0.34 0.74 0.33 0.68 +burlesques burlesque ADJ p 0.07 2.36 0.01 0.81 +burlingue burlingue NOM m s 0.00 1.15 0.00 0.88 +burlingues burlingue NOM m p 0.00 1.15 0.00 0.27 +burne burne NOM f s 1.42 1.49 0.09 0.07 +burnes burne NOM f p 1.42 1.49 1.33 1.42 +burnous burnous NOM m 0.13 1.76 0.13 1.76 +burons buron NOM m p 0.00 0.07 0.00 0.07 +bursite bursite NOM f s 0.09 0.00 0.09 0.00 +bérullienne bérullien NOM f s 0.00 0.07 0.00 0.07 +burundais burundais NOM m 0.01 0.00 0.01 0.00 +bérézina bérézina NOM f s 0.00 0.41 0.00 0.41 +béryl béryl NOM m s 0.02 0.27 0.02 0.20 +béryllium béryllium NOM m s 0.20 0.00 0.20 0.00 +béryls béryl NOM m p 0.02 0.27 0.00 0.07 +bus bus NOM m 50.63 10.54 50.63 10.54 +busard busard NOM m s 0.06 0.74 0.02 0.47 +busards busard NOM m p 0.06 0.74 0.04 0.27 +buse buse NOM f s 1.28 2.84 0.82 2.09 +bésef bésef ADV 0.01 0.14 0.01 0.14 +buses buse NOM f p 1.28 2.84 0.46 0.74 +bush bush NOM m s 0.24 0.00 0.24 0.00 +bushi bushi NOM m s 0.01 0.20 0.01 0.20 +bushido bushido NOM m s 0.01 0.00 0.01 0.00 +bushman bushman NOM m s 0.00 0.07 0.00 0.07 +bésiclard bésiclard NOM m s 0.00 0.07 0.00 0.07 +bésicles bésicles NOM f p 0.01 0.20 0.01 0.20 +bésigue bésigue NOM m s 0.06 0.00 0.06 0.00 +business business NOM m 15.62 2.23 15.62 2.23 +businessman businessman NOM m s 1.31 0.34 0.84 0.27 +businessmen businessman NOM m p 1.31 0.34 0.47 0.07 +busqué busqué ADJ m s 0.00 1.76 0.00 1.76 +busse boire VER 339.06 274.32 0.00 0.07 sub:imp:1s; +buste buste NOM m s 2.44 24.46 2.02 21.62 +bustes buste NOM m p 2.44 24.46 0.42 2.84 +bustier bustier NOM m s 0.20 0.34 0.20 0.34 +but but NOM m s 78.43 60.41 73.80 51.89 +bêta bêta NOM m s 2.36 0.81 2.14 0.74 +buta buter VER 31.86 21.62 0.02 2.09 ind:pas:3s; +butadiène butadiène NOM m s 0.03 0.00 0.03 0.00 +butagaz butagaz NOM m 0.14 0.47 0.14 0.47 +butai buter VER 31.86 21.62 0.00 0.27 ind:pas:1s; +butaient buter VER 31.86 21.62 0.00 0.41 ind:imp:3p; +bétail bétail NOM m s 9.71 5.41 9.69 5.41 +bétaillère bétaillère NOM f s 0.16 0.20 0.16 0.14 +bétaillères bétaillère NOM f p 0.16 0.20 0.00 0.07 +bétails bétail NOM m p 9.71 5.41 0.02 0.00 +butais buter VER 31.86 21.62 0.02 0.14 ind:imp:1s; +butait buter VER 31.86 21.62 0.20 2.30 ind:imp:3s; +butane butane NOM m s 0.13 1.08 0.13 1.08 +butant buter VER 31.86 21.62 0.06 1.35 par:pre; +bêtas bêta NOM m p 2.36 0.81 0.01 0.07 +bêtasse bêta NOM f s 2.36 0.81 0.21 0.00 +bêtasses bêta ADJ f p 2.13 0.68 0.00 0.07 +bêtatron bêtatron NOM m s 0.01 0.00 0.01 0.00 +bête bête ADJ s 56.55 41.89 51.33 33.31 +bute buter VER 31.86 21.62 8.21 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +bétel bétel NOM m s 2.94 0.14 2.94 0.14 +bêtement bêtement ADV 4.56 11.28 4.56 11.28 +butent buter VER 31.86 21.62 0.44 0.74 ind:pre:3p; +buter buter VER 31.86 21.62 12.89 6.01 inf; +butera buter VER 31.86 21.62 0.16 0.14 ind:fut:3s; +buterai buter VER 31.86 21.62 0.54 0.00 ind:fut:1s; +buterais buter VER 31.86 21.62 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +buterait buter VER 31.86 21.62 0.03 0.07 cnd:pre:3s; +buteras buter VER 31.86 21.62 0.14 0.00 ind:fut:2s; +buterez buter VER 31.86 21.62 0.02 0.00 ind:fut:2p; +buterions buter VER 31.86 21.62 0.01 0.00 cnd:pre:1p; +buteront buter VER 31.86 21.62 0.07 0.00 ind:fut:3p; +bêtes bête NOM f p 67.67 117.36 23.82 54.19 +butes buter VER 31.86 21.62 0.50 0.27 ind:pre:2s; +buteur buteur NOM m s 0.39 0.00 0.39 0.00 +butez buter VER 31.86 21.62 0.73 0.07 imp:pre:2p;ind:pre:2p; +béèrent béer VER 0.23 3.65 0.00 0.14 ind:pas:3p; +bêtifia bêtifier VER 0.02 0.81 0.00 0.07 ind:pas:3s; +bêtifiaient bêtifier VER 0.02 0.81 0.00 0.14 ind:imp:3p; +bêtifiais bêtifier VER 0.02 0.81 0.00 0.07 ind:imp:1s; +bêtifiait bêtifier VER 0.02 0.81 0.00 0.20 ind:imp:3s; +bêtifiant bêtifiant ADJ m s 0.00 0.20 0.00 0.20 +bêtifie bêtifier VER 0.02 0.81 0.00 0.14 ind:pre:1s;ind:pre:3s; +bêtifier bêtifier VER 0.02 0.81 0.02 0.14 inf; +bêtifié bêtifier VER m s 0.02 0.81 0.00 0.07 par:pas; +butin butin NOM m s 6.35 5.61 6.27 5.20 +butinait butiner VER 0.49 1.69 0.00 0.20 ind:imp:3s; +butinant butiner VER 0.49 1.69 0.14 0.20 par:pre; +butine butiner VER 0.49 1.69 0.17 0.34 ind:pre:1s;ind:pre:3s; +butinent butiner VER 0.49 1.69 0.01 0.34 ind:pre:3p; +butiner butiner VER 0.49 1.69 0.16 0.41 inf; +butines butiner VER 0.49 1.69 0.00 0.07 ind:pre:2s; +butineur butineur ADJ m s 0.03 0.07 0.01 0.00 +butineuse butineur ADJ f s 0.03 0.07 0.01 0.00 +butineuses butineur ADJ f p 0.03 0.07 0.01 0.07 +butins butin NOM m p 6.35 5.61 0.08 0.41 +butiné butiner VER m s 0.49 1.69 0.01 0.00 par:pas; +butinées butiner VER f p 0.49 1.69 0.00 0.07 par:pas; +butinés butiner VER m p 0.49 1.69 0.00 0.07 par:pas; +bêtise bêtise NOM f s 39.31 28.38 14.29 14.73 +bêtises bêtise NOM f p 39.31 28.38 25.03 13.65 +bêtisier bêtisier NOM m s 0.04 0.00 0.04 0.00 +bétoine bétoine NOM f s 0.01 0.00 0.01 0.00 +butoir butoir NOM m s 0.33 0.81 0.31 0.54 +butoirs butoir NOM m p 0.33 0.81 0.02 0.27 +béton béton NOM m s 6.41 15.68 6.41 15.20 +bétonnage bétonnage NOM m s 0.00 0.14 0.00 0.14 +bétonnaient bétonner VER 0.22 0.14 0.01 0.00 ind:imp:3p; +bétonner bétonner VER 0.22 0.14 0.16 0.00 inf; +bétonneurs bétonneur NOM m p 0.17 0.54 0.01 0.07 +bétonneuse bétonneur NOM f s 0.17 0.54 0.16 0.20 +bétonneuses bétonneuse NOM f p 0.14 0.00 0.14 0.00 +bétonnière bétonnière NOM f s 0.23 0.07 0.22 0.00 +bétonnières bétonnière NOM f p 0.23 0.07 0.01 0.07 +bétonné bétonner VER m s 0.22 0.14 0.05 0.00 par:pas; +bétonnée bétonné ADJ f s 0.02 0.61 0.00 0.14 +bétonnées bétonné ADJ f p 0.02 0.61 0.00 0.14 +bétonnés bétonné ADJ m p 0.02 0.61 0.00 0.14 +bétons béton NOM m p 6.41 15.68 0.00 0.47 +butons buter VER 31.86 21.62 0.14 0.07 imp:pre:1p;ind:pre:1p; +butor butor NOM m s 0.28 1.08 0.27 0.88 +butors butor NOM m p 0.28 1.08 0.01 0.20 +buts but NOM m p 78.43 60.41 4.63 8.51 +butte butte NOM f s 1.48 7.03 1.17 5.34 +butter butter VER 1.17 1.01 0.69 0.14 inf; +buttes butte NOM f p 1.48 7.03 0.32 1.69 +butteur butteur NOM m s 0.11 0.00 0.11 0.00 +butèrent buter VER 31.86 21.62 0.00 0.41 ind:pas:3p; +buttoir buttoir NOM m s 0.01 0.07 0.01 0.07 +buttèrent butter VER 1.17 1.01 0.00 0.07 ind:pas:3p; +butté butter VER m s 1.17 1.01 0.16 0.00 par:pas; +buttés butter VER m p 1.17 1.01 0.00 0.74 par:pas; +buté buter VER m s 31.86 21.62 6.71 3.24 par:pas; +butée buter VER f s 31.86 21.62 0.49 0.34 par:pas; +butées buter VER f p 31.86 21.62 0.01 0.00 par:pas; +butés buter VER m p 31.86 21.62 0.34 0.34 par:pas; +béé béer VER m s 0.23 3.65 0.00 0.07 par:pas; +buée buée NOM f s 0.32 13.51 0.32 13.11 +béée béer VER f s 0.23 3.65 0.00 0.07 par:pas; +buées buée NOM f p 0.32 13.51 0.00 0.41 +buvable buvable ADJ s 0.21 0.68 0.21 0.61 +buvables buvable ADJ p 0.21 0.68 0.00 0.07 +buvaient boire VER 339.06 274.32 0.78 7.09 ind:imp:3p; +buvais boire VER 339.06 274.32 4.10 3.11 ind:imp:1s;ind:imp:2s; +buvait boire VER 339.06 274.32 7.06 23.38 ind:imp:3s; +buvant boire VER 339.06 274.32 2.58 11.28 par:pre; +buvard buvard NOM m s 0.12 4.32 0.10 3.58 +buvarde buvarder VER 0.00 0.20 0.00 0.07 ind:pre:3s; +buvards buvard NOM m p 0.12 4.32 0.02 0.74 +buvardé buvarder VER m s 0.00 0.20 0.00 0.07 par:pas; +buvardés buvarder VER m p 0.00 0.20 0.00 0.07 par:pas; +buvette buvette NOM f s 0.76 3.04 0.75 2.91 +buvettes buvette NOM f p 0.76 3.04 0.01 0.14 +buveur buveur NOM m s 2.22 4.66 1.67 1.49 +buveurs buveur NOM m p 2.22 4.66 0.49 2.91 +buveuse buveur NOM f s 2.22 4.66 0.06 0.27 +buvez boire VER 339.06 274.32 25.24 3.72 imp:pre:2p;ind:pre:2p; +buviez boire VER 339.06 274.32 0.72 0.14 ind:imp:2p; +buvions boire VER 339.06 274.32 0.53 2.36 ind:imp:1p; +buvons boire VER 339.06 274.32 13.69 3.04 imp:pre:1p;ind:pre:1p; +bévue bévue NOM f s 0.36 1.22 0.28 0.68 +bévues bévue NOM f p 0.36 1.22 0.08 0.54 +bézef bézef ADV 0.01 0.14 0.01 0.14 +bézoard bézoard NOM m s 0.01 0.00 0.01 0.00 +by_pass by_pass NOM m 0.03 0.00 0.03 0.00 +by_night by_night ADJ m s 0.25 0.41 0.25 0.41 +by by NOM m s 12.49 0.68 12.49 0.68 +bye_bye bye_bye ONO 2.36 0.34 2.36 0.34 +bye bye ONO 23.11 2.03 23.11 2.03 +byronien byronien ADJ m s 0.00 0.07 0.00 0.07 +bytes byte NOM m p 0.09 0.00 0.09 0.00 +bytures byture NOM m p 0.00 0.07 0.00 0.07 +byzantin byzantin ADJ m s 0.13 3.38 0.05 0.81 +byzantine byzantin ADJ f s 0.13 3.38 0.05 1.55 +byzantines byzantin ADJ f p 0.13 3.38 0.03 0.68 +byzantinisant byzantinisant ADJ m s 0.00 0.07 0.00 0.07 +byzantinisme byzantinisme NOM m s 0.00 0.34 0.00 0.34 +byzantins byzantin NOM m p 0.04 0.34 0.04 0.34 +c_est_à_dire c_est_à_dire ADV 0.00 52.03 0.00 52.03 +c c PRO:dem 46.69 4.59 46.69 4.59 +côlon côlon NOM m s 0.23 0.20 0.23 0.20 +cône cône NOM m s 1.08 3.38 0.78 2.57 +cônes cône NOM m p 1.08 3.38 0.30 0.81 +côte côte NOM f s 35.16 112.50 25.86 90.74 +côtelette côtelette NOM f s 3.38 3.45 1.18 1.62 +côtelettes côtelette NOM f p 3.38 3.45 2.19 1.82 +côtelé côtelé ADJ m s 0.17 1.08 0.16 1.08 +côtelée côtelé ADJ f s 0.17 1.08 0.01 0.00 +côtes_du_rhône côtes_du_rhône NOM m s 0.00 0.47 0.00 0.47 +côtes côte NOM f p 35.16 112.50 9.31 21.76 +côtier côtier ADJ m s 0.69 1.96 0.09 0.20 +côtiers côtier ADJ m p 0.69 1.96 0.01 0.14 +côtière côtier ADJ f s 0.69 1.96 0.40 0.95 +côtières côtier ADJ f p 0.69 1.96 0.19 0.68 +côtoie côtoyer VER 2.42 7.43 0.44 1.22 ind:pre:1s;ind:pre:3s; +côtoiements côtoiement NOM m p 0.00 0.07 0.00 0.07 +côtoient côtoyer VER 2.42 7.43 0.19 0.27 ind:pre:3p; +côtoies côtoyer VER 2.42 7.43 0.17 0.07 ind:pre:2s; +côtoya côtoyer VER 2.42 7.43 0.00 0.07 ind:pas:3s; +côtoyaient côtoyer VER 2.42 7.43 0.02 1.22 ind:imp:3p; +côtoyais côtoyer VER 2.42 7.43 0.05 0.20 ind:imp:1s;ind:imp:2s; +côtoyait côtoyer VER 2.42 7.43 0.01 1.15 ind:imp:3s; +côtoyant côtoyer VER 2.42 7.43 0.04 0.27 par:pre; +côtoyer côtoyer VER 2.42 7.43 0.94 0.88 inf; +côtoyons côtoyer VER 2.42 7.43 0.02 0.20 ind:pre:1p; +côtoyé côtoyer VER m s 2.42 7.43 0.36 1.22 par:pas; +côtoyée côtoyer VER f s 2.42 7.43 0.01 0.00 par:pas; +côtoyées côtoyer VER f p 2.42 7.43 0.01 0.14 par:pas; +côtoyés côtoyer VER m p 2.42 7.43 0.17 0.54 par:pas; +côté côté NOM m s 285.99 566.49 250.51 497.43 +côtés côté NOM m p 285.99 566.49 35.48 69.05 +caïd caïd NOM m s 2.63 7.97 2.19 6.82 +caïds caïd NOM m p 2.63 7.97 0.44 1.15 +caïman caïman NOM m s 1.02 0.54 0.90 0.34 +caïmans caïman NOM m p 1.02 0.54 0.13 0.20 +caïque caïque NOM m s 0.00 5.47 0.00 3.24 +caïques caïque NOM m p 0.00 5.47 0.00 2.23 +cañon cañon NOM m s 0.07 0.00 0.07 0.00 +cab cab NOM m s 0.42 0.20 0.40 0.20 +cabale cabale NOM f s 0.73 0.88 0.73 0.41 +cabales cabale NOM f p 0.73 0.88 0.00 0.47 +cabaliste cabaliste NOM s 0.00 0.34 0.00 0.20 +cabalistes cabaliste NOM p 0.00 0.34 0.00 0.14 +cabalistique cabalistique ADJ s 0.05 0.68 0.03 0.14 +cabalistiques cabalistique ADJ p 0.05 0.68 0.02 0.54 +caballero caballero NOM f s 0.11 0.20 0.11 0.20 +caban caban NOM m s 0.14 1.49 0.14 1.28 +cabana cabaner VER 0.02 0.00 0.02 0.00 ind:pas:3s; +cabane cabane NOM f s 15.36 29.46 14.34 25.68 +cabanes cabane NOM f p 15.36 29.46 1.02 3.78 +cabanettes cabanette NOM f p 0.00 0.07 0.00 0.07 +cabanon cabanon NOM m s 1.27 2.09 1.26 1.69 +cabanons cabanon NOM m p 1.27 2.09 0.01 0.41 +cabans caban NOM m p 0.14 1.49 0.00 0.20 +cabaret cabaret NOM m s 4.82 6.69 4.44 4.93 +cabaretier cabaretier NOM m s 0.25 0.74 0.01 0.54 +cabaretiers cabaretier NOM m p 0.25 0.74 0.23 0.07 +cabaretière cabaretier NOM f s 0.25 0.74 0.00 0.14 +cabarets cabaret NOM m p 4.82 6.69 0.38 1.76 +cabas cabas NOM m 0.14 5.68 0.14 5.68 +caberlot caberlot NOM m s 0.04 0.07 0.04 0.07 +cabernet cabernet NOM m s 0.16 0.07 0.16 0.07 +cabestan cabestan NOM m s 0.23 0.34 0.23 0.34 +cabiais cabiai NOM m p 0.01 0.00 0.01 0.00 +cabillaud cabillaud NOM m s 0.25 0.27 0.25 0.27 +cabillots cabillot NOM m p 0.00 0.07 0.00 0.07 +cabine cabine NOM f s 20.00 35.07 17.65 29.86 +cabiner cabiner VER 0.00 0.07 0.00 0.07 inf; +cabines cabine NOM f p 20.00 35.07 2.35 5.20 +cabinet cabinet NOM m s 21.97 36.49 19.45 29.80 +cabinets cabinet NOM m p 21.97 36.49 2.51 6.69 +cabochard cabochard ADJ m s 0.21 0.47 0.18 0.27 +cabocharde cabochard ADJ f s 0.21 0.47 0.01 0.07 +cabochards cabochard ADJ m p 0.21 0.47 0.02 0.14 +caboche caboche NOM f s 1.13 1.49 1.12 1.22 +caboches caboche NOM f p 1.13 1.49 0.01 0.27 +cabochon cabochon NOM m s 0.00 1.35 0.00 0.68 +cabochons cabochon NOM m p 0.00 1.35 0.00 0.68 +cabossa cabosser VER 0.94 4.32 0.00 0.07 ind:pas:3s; +cabossages cabossage NOM m p 0.00 0.07 0.00 0.07 +cabossait cabosser VER 0.94 4.32 0.00 0.07 ind:imp:3s; +cabosse cabosser VER 0.94 4.32 0.01 0.07 imp:pre:2s;ind:pre:3s; +cabosser cabosser VER 0.94 4.32 0.06 0.27 inf; +cabosses cabosse NOM f p 0.00 0.14 0.00 0.07 +cabossé cabosser VER m s 0.94 4.32 0.40 1.62 par:pas; +cabossée cabosser VER f s 0.94 4.32 0.37 1.35 par:pas; +cabossées cabosser VER f p 0.94 4.32 0.05 0.54 par:pas; +cabossés cabosser VER m p 0.94 4.32 0.05 0.34 par:pas; +cabot cabot NOM m s 1.52 1.49 1.45 0.68 +cabotage cabotage NOM m s 0.00 0.20 0.00 0.20 +cabotaient caboter VER 0.02 0.41 0.00 0.07 ind:imp:3p; +cabotait caboter VER 0.02 0.41 0.00 0.14 ind:imp:3s; +cabote caboter VER 0.02 0.41 0.01 0.07 ind:pre:3s; +caboter caboter VER 0.02 0.41 0.01 0.07 inf; +caboteur caboteur NOM m s 0.02 1.01 0.02 1.01 +cabotin cabotin NOM m s 0.20 0.81 0.18 0.47 +cabotinage cabotinage NOM m s 0.05 0.47 0.05 0.47 +cabotine cabotin NOM f s 0.20 0.81 0.01 0.14 +cabotines cabotiner VER 0.01 0.00 0.01 0.00 ind:pre:2s; +cabotins cabotin NOM m p 0.20 0.81 0.01 0.20 +cabots cabot NOM m p 1.52 1.49 0.07 0.81 +caboté caboter VER m s 0.02 0.41 0.00 0.07 par:pas; +caboulot caboulot NOM m s 0.00 0.68 0.00 0.47 +caboulots caboulot NOM m p 0.00 0.68 0.00 0.20 +cabra cabrer VER 0.34 6.55 0.00 0.95 ind:pas:3s; +cabrade cabrade NOM f s 0.00 0.07 0.00 0.07 +cabrage cabrage NOM m s 0.04 0.00 0.04 0.00 +cabraient cabrer VER 0.34 6.55 0.00 0.34 ind:imp:3p; +cabrais cabrer VER 0.34 6.55 0.00 0.07 ind:imp:1s; +cabrait cabrer VER 0.34 6.55 0.00 0.61 ind:imp:3s; +cabrant cabrer VER 0.34 6.55 0.00 0.27 par:pre; +cabre cabrer VER 0.34 6.55 0.20 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cabrent cabrer VER 0.34 6.55 0.00 0.14 ind:pre:3p; +cabrer cabrer VER 0.34 6.55 0.01 1.08 inf; +cabrera cabrer VER 0.34 6.55 0.02 0.00 ind:fut:3s; +cabrerait cabrer VER 0.34 6.55 0.00 0.07 cnd:pre:3s; +cabrette cabrette NOM f s 0.00 0.20 0.00 0.20 +cabri cabri NOM m s 0.08 1.08 0.07 0.41 +cabriolaient cabrioler VER 0.02 0.47 0.00 0.14 ind:imp:3p; +cabriolait cabrioler VER 0.02 0.47 0.01 0.07 ind:imp:3s; +cabriolant cabrioler VER 0.02 0.47 0.00 0.07 par:pre; +cabriole cabriole NOM f s 0.45 1.15 0.31 0.20 +cabrioler cabrioler VER 0.02 0.47 0.00 0.07 inf; +cabrioles cabriole NOM f p 0.45 1.15 0.14 0.95 +cabriolet cabriolet NOM m s 0.65 3.38 0.53 2.91 +cabriolets cabriolet NOM m p 0.65 3.38 0.12 0.47 +cabris cabri NOM m p 0.08 1.08 0.01 0.68 +cabrèrent cabrer VER 0.34 6.55 0.00 0.07 ind:pas:3p; +cabré cabrer VER m s 0.34 6.55 0.10 0.47 par:pas; +cabrée cabrer VER f s 0.34 6.55 0.01 0.34 par:pas; +cabrées cabrer VER f p 0.34 6.55 0.00 0.27 par:pas; +cabrés cabrer VER m p 0.34 6.55 0.00 0.41 par:pas; +cabs cab NOM m p 0.42 0.20 0.02 0.00 +cabèche cabèche NOM f s 0.00 0.54 0.00 0.47 +cabèches cabèche NOM f p 0.00 0.54 0.00 0.07 +cabécous cabécou NOM m p 0.00 0.07 0.00 0.07 +cabus cabus ADJ m s 0.00 0.07 0.00 0.07 +caca caca ADJ 3.16 1.76 3.16 1.76 +cacahouète cacahouète NOM f s 1.00 0.00 0.39 0.00 +cacahouètes cacahouète NOM f p 1.00 0.00 0.62 0.00 +cacahuète cacahuète NOM f s 7.29 3.58 1.71 0.74 +cacahuètes cacahuète NOM f p 7.29 3.58 5.59 2.84 +cacao cacao NOM m s 1.30 1.42 1.29 1.42 +cacaos cacao NOM m p 1.30 1.42 0.01 0.00 +cacaotier cacaotier NOM m s 0.01 0.00 0.01 0.00 +cacaotés cacaoté ADJ m p 0.00 0.07 0.00 0.07 +cacaoyer cacaoyer NOM m s 0.01 0.00 0.01 0.00 +cacarda cacarder VER 0.14 0.20 0.00 0.07 ind:pas:3s; +cacardait cacarder VER 0.14 0.20 0.00 0.07 ind:imp:3s; +cacarde cacarder VER 0.14 0.20 0.14 0.07 ind:pre:1s;ind:pre:3s; +cacas caca NOM m p 3.09 2.23 0.04 0.47 +cacatois cacatois NOM m 0.03 0.07 0.03 0.07 +cacatoès cacatoès NOM m 0.12 0.34 0.12 0.34 +cacha cacher VER 204.10 181.89 1.13 6.82 ind:pas:3s; +cachai cacher VER 204.10 181.89 0.16 1.01 ind:pas:1s; +cachaient cacher VER 204.10 181.89 0.78 9.66 ind:imp:3p; +cachais cacher VER 204.10 181.89 3.61 2.03 ind:imp:1s;ind:imp:2s; +cachait cacher VER 204.10 181.89 5.84 21.89 ind:imp:3s; +cachalot cachalot NOM m s 0.72 0.95 0.70 0.88 +cachalots cachalot NOM m p 0.72 0.95 0.01 0.07 +cachant cacher VER 204.10 181.89 1.84 8.11 par:pre; +cache_brassière cache_brassière NOM m 0.00 0.07 0.00 0.07 +cache_cache cache_cache NOM m 3.42 2.70 3.42 2.70 +cache_coeur cache_coeur NOM s 0.00 0.14 0.00 0.14 +cache_col cache_col NOM m 0.01 1.35 0.01 1.35 +cache_corset cache_corset NOM m 0.00 0.14 0.00 0.14 +cache_nez cache_nez NOM m 0.15 2.09 0.15 2.09 +cache_pot cache_pot NOM m s 0.16 0.81 0.16 0.41 +cache_pot cache_pot NOM m p 0.16 0.81 0.00 0.41 +cache_poussière cache_poussière NOM m 0.01 0.20 0.01 0.20 +cache_sexe cache_sexe NOM m 0.03 0.27 0.03 0.27 +cache_tampon cache_tampon NOM m 0.00 0.20 0.00 0.20 +cache cacher VER 204.10 181.89 44.82 20.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cachectique cachectique ADJ f s 0.00 0.20 0.00 0.14 +cachectiques cachectique ADJ m p 0.00 0.20 0.00 0.07 +cachemire cachemire NOM m s 1.38 2.84 1.35 2.64 +cachemires cachemire NOM m p 1.38 2.84 0.02 0.20 +cachemiris cachemiri NOM m p 0.01 0.00 0.01 0.00 +cachent cacher VER 204.10 181.89 7.50 5.00 ind:pre:3p; +cacher cacher VER 204.10 181.89 61.04 48.45 inf;; +cachera cacher VER 204.10 181.89 0.83 0.27 ind:fut:3s; +cacherai cacher VER 204.10 181.89 1.35 1.01 ind:fut:1s; +cacheraient cacher VER 204.10 181.89 0.07 0.00 cnd:pre:3p; +cacherais cacher VER 204.10 181.89 0.81 0.27 cnd:pre:1s;cnd:pre:2s; +cacherait cacher VER 204.10 181.89 1.02 0.61 cnd:pre:3s; +cacheras cacher VER 204.10 181.89 0.08 0.20 ind:fut:2s; +cacherez cacher VER 204.10 181.89 0.30 0.07 ind:fut:2p; +cacheriez cacher VER 204.10 181.89 0.07 0.00 cnd:pre:2p; +cacherons cacher VER 204.10 181.89 0.12 0.14 ind:fut:1p; +cacheront cacher VER 204.10 181.89 0.08 0.07 ind:fut:3p; +caches cacher VER 204.10 181.89 12.67 1.89 ind:pre:2s;sub:pre:2s; +cachet cachet NOM m s 16.46 10.20 6.97 4.93 +cacheta cacheter VER 0.96 2.64 0.00 0.27 ind:pas:3s; +cachetais cacheter VER 0.96 2.64 0.00 0.07 ind:imp:1s; +cachetait cacheter VER 0.96 2.64 0.00 0.20 ind:imp:3s; +cacheter cacheter VER 0.96 2.64 0.13 0.34 inf; +cacheton cacheton NOM m s 0.59 0.20 0.03 0.14 +cachetonnais cachetonner VER 0.02 0.14 0.00 0.07 ind:imp:1s; +cachetonnait cachetonner VER 0.02 0.14 0.00 0.07 ind:imp:3s; +cachetonne cachetonner VER 0.02 0.14 0.02 0.00 ind:pre:3s; +cachetons cacheton NOM m p 0.59 0.20 0.56 0.07 +cachets cachet NOM m p 16.46 10.20 9.49 5.27 +cachette cachette NOM f s 11.81 16.96 11.21 14.59 +cachettes cachette NOM f p 11.81 16.96 0.59 2.36 +cacheté cacheter VER m s 0.96 2.64 0.14 0.74 par:pas; +cachetée cacheter VER f s 0.96 2.64 0.40 0.41 par:pas; +cachetées cacheter VER f p 0.96 2.64 0.01 0.20 par:pas; +cachetés cacheter VER m p 0.96 2.64 0.00 0.20 par:pas; +cachexie cachexie NOM f s 0.01 0.07 0.01 0.07 +cachez cacher VER 204.10 181.89 10.65 1.35 imp:pre:2p;ind:pre:2p; +cachiez cacher VER 204.10 181.89 0.88 0.00 ind:imp:2p; +cachions cacher VER 204.10 181.89 0.15 0.74 ind:imp:1p; +cachons cacher VER 204.10 181.89 1.75 0.81 imp:pre:1p;ind:pre:1p; +cachât cacher VER 204.10 181.89 0.00 0.61 sub:imp:3s; +cachot cachot NOM m s 3.67 7.09 3.01 5.95 +cachots cachot NOM m p 3.67 7.09 0.66 1.15 +cachotterie cachotterie NOM f s 0.93 0.54 0.01 0.20 +cachotteries cachotterie NOM f p 0.93 0.54 0.92 0.34 +cachottier cachottier NOM m s 0.71 0.47 0.57 0.34 +cachottiers cachottier ADJ m p 0.28 0.41 0.17 0.00 +cachottière cachottier NOM f s 0.71 0.47 0.13 0.14 +cachottières cachottier ADJ f p 0.28 0.41 0.00 0.07 +cachou cachou NOM m s 0.23 0.68 0.17 0.27 +cachous cachou NOM m p 0.23 0.68 0.05 0.41 +cachère cachère ADJ 0.01 0.00 0.01 0.00 +cachèrent cacher VER 204.10 181.89 0.09 0.61 ind:pas:3p; +caché cacher VER m s 204.10 181.89 32.13 25.81 par:pas; +cachée cacher VER f s 204.10 181.89 8.17 11.89 par:pas; +cachées cacher VER f p 204.10 181.89 1.92 4.80 par:pas; +cachés cacher VER m p 204.10 181.89 4.29 7.70 par:pas; +cacique cacique NOM m s 0.00 0.20 0.00 0.14 +caciques cacique NOM m p 0.00 0.20 0.00 0.07 +cacochyme cacochyme ADJ s 0.00 0.74 0.00 0.47 +cacochymes cacochyme ADJ m p 0.00 0.74 0.00 0.27 +cacodylate cacodylate NOM m s 0.00 0.07 0.00 0.07 +cacographes cacographe NOM p 0.00 0.07 0.00 0.07 +cacophonie cacophonie NOM f s 0.05 1.35 0.04 1.22 +cacophonies cacophonie NOM f p 0.05 1.35 0.01 0.14 +cacophonique cacophonique ADJ s 0.00 0.34 0.00 0.27 +cacophoniques cacophonique ADJ m p 0.00 0.34 0.00 0.07 +cactées cactée NOM f p 0.02 0.47 0.02 0.47 +cactus cactus NOM m 2.86 2.30 2.86 2.30 +cadastral cadastral ADJ m s 0.00 1.62 0.00 1.15 +cadastrale cadastral ADJ f s 0.00 1.62 0.00 0.07 +cadastraux cadastral ADJ m p 0.00 1.62 0.00 0.41 +cadastre cadastre NOM m s 0.56 3.58 0.54 3.45 +cadastres cadastre NOM m p 0.56 3.58 0.02 0.14 +cadastré cadastrer VER m s 0.10 0.14 0.10 0.00 par:pas; +cadastrée cadastrer VER f s 0.10 0.14 0.00 0.14 par:pas; +cadavre cadavre NOM m s 47.75 54.05 27.93 32.30 +cadavres cadavre NOM m p 47.75 54.05 19.82 21.76 +cadavéreuse cadavéreux ADJ f s 0.04 0.20 0.00 0.14 +cadavéreux cadavéreux ADJ m 0.04 0.20 0.04 0.07 +cadavérique cadavérique ADJ s 0.34 0.95 0.34 0.68 +cadavériques cadavérique ADJ p 0.34 0.95 0.00 0.27 +cadavérise cadavériser VER 0.00 0.14 0.00 0.07 ind:pre:3s; +cadavérisés cadavériser VER m p 0.00 0.14 0.00 0.07 par:pas; +caddie caddie NOM m s 1.50 2.43 1.35 1.28 +caddies caddie NOM m p 1.50 2.43 0.15 1.15 +caddy caddy NOM m s 0.81 1.49 0.81 1.49 +cade cade NOM m s 0.14 0.00 0.14 0.00 +cadeau cadeau NOM m s 125.79 50.81 98.09 32.77 +cadeaux cadeau NOM m p 125.79 50.81 27.70 18.04 +cadenas cadenas NOM m 2.10 2.43 2.10 2.43 +cadenassaient cadenasser VER 0.21 1.89 0.00 0.07 ind:imp:3p; +cadenassait cadenasser VER 0.21 1.89 0.00 0.14 ind:imp:3s; +cadenassant cadenasser VER 0.21 1.89 0.00 0.07 par:pre; +cadenasse cadenasser VER 0.21 1.89 0.01 0.07 ind:pre:3s; +cadenasser cadenasser VER 0.21 1.89 0.02 0.20 inf; +cadenassez cadenasser VER 0.21 1.89 0.04 0.00 imp:pre:2p; +cadenassé cadenasser VER m s 0.21 1.89 0.09 0.41 par:pas; +cadenassée cadenasser VER f s 0.21 1.89 0.06 0.68 par:pas; +cadenassées cadenasser VER f p 0.21 1.89 0.00 0.27 par:pas; +cadence cadence NOM f s 2.42 13.78 2.12 12.64 +cadencer cadencer VER 0.38 1.22 0.00 0.14 inf; +cadences cadence NOM f p 2.42 13.78 0.30 1.15 +cadencé cadencer VER m s 0.38 1.22 0.10 0.74 par:pas; +cadencée cadencer VER f s 0.38 1.22 0.01 0.14 par:pas; +cadencées cadencé ADJ f p 0.05 1.96 0.00 0.07 +cadencés cadencer VER m p 0.38 1.22 0.14 0.07 par:pas; +cadet cadet NOM m s 7.38 8.85 3.71 4.32 +cadets cadet NOM m p 7.38 8.85 2.44 1.69 +cadette cadet ADJ f s 4.64 3.18 1.52 1.28 +cadettes cadet ADJ f p 4.64 3.18 0.01 0.14 +cadi cadi NOM m s 0.10 2.30 0.10 2.30 +cadmié cadmier VER m s 0.00 0.20 0.00 0.20 par:pas; +cadmium cadmium NOM m s 0.13 0.07 0.13 0.07 +cadogan cadogan NOM m s 0.20 0.00 0.20 0.00 +cador cador NOM m s 0.45 1.96 0.41 1.42 +cadors cador NOM m p 0.45 1.96 0.03 0.54 +cadrage cadrage NOM m s 0.59 0.47 0.58 0.34 +cadrages cadrage NOM m p 0.59 0.47 0.01 0.14 +cadrais cadrer VER 1.55 2.43 0.00 0.07 ind:imp:2s; +cadrait cadrer VER 1.55 2.43 0.02 0.68 ind:imp:3s; +cadran cadran NOM m s 1.58 7.70 1.42 6.55 +cadrans cadran NOM m p 1.58 7.70 0.16 1.15 +cadrant cadrer VER 1.55 2.43 0.03 0.00 par:pre; +cadratin cadratin NOM m s 0.00 0.14 0.00 0.07 +cadratins cadratin NOM m p 0.00 0.14 0.00 0.07 +cadre cadre NOM m s 13.53 42.84 10.98 29.80 +cadrent cadrer VER 1.55 2.43 0.03 0.14 ind:pre:3p; +cadrer cadrer VER 1.55 2.43 0.64 0.34 inf; +cadres cadre NOM m p 13.53 42.84 2.56 13.04 +cadreur cadreur NOM m s 0.14 0.14 0.11 0.07 +cadreurs cadreur NOM m p 0.14 0.14 0.04 0.07 +cadrez cadrer VER 1.55 2.43 0.03 0.00 imp:pre:2p; +cadré cadrer VER m s 1.55 2.43 0.10 0.47 par:pas; +cadrée cadrer VER f s 1.55 2.43 0.01 0.27 par:pas; +cadènes cadène NOM f p 0.00 1.01 0.00 1.01 +caduc caduc ADJ m s 0.24 1.01 0.14 0.74 +caducité caducité NOM f s 0.00 0.07 0.00 0.07 +caducs caduc ADJ m p 0.24 1.01 0.10 0.27 +caducée caducée NOM m s 0.16 0.20 0.16 0.14 +caducées caducée NOM m p 0.16 0.20 0.00 0.07 +caduque caduque ADJ f s 0.23 0.95 0.19 0.47 +caduques caduque ADJ f p 0.23 0.95 0.04 0.47 +caecum caecum NOM m s 0.01 0.00 0.01 0.00 +caesium caesium NOM m s 0.11 0.00 0.11 0.00 +caf caf ADJ s 0.14 0.00 0.14 0.00 +cafard cafard NOM m s 9.87 9.80 5.77 7.84 +cafardage cafardage NOM m s 0.11 0.00 0.11 0.00 +cafarde cafarder VER 0.34 0.34 0.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cafarder cafarder VER 0.34 0.34 0.21 0.27 inf; +cafarderait cafarder VER 0.34 0.34 0.00 0.07 cnd:pre:3s; +cafardeur cafardeur NOM m s 0.29 0.00 0.16 0.00 +cafardeuse cafardeur NOM f s 0.29 0.00 0.14 0.00 +cafardeux cafardeux ADJ m 0.09 0.34 0.07 0.34 +cafards cafard NOM m p 9.87 9.80 4.10 1.96 +cafetais cafeter VER 0.27 0.07 0.00 0.07 ind:imp:1s; +cafetan cafetan NOM m s 0.29 0.07 0.28 0.00 +cafetans cafetan NOM m p 0.29 0.07 0.01 0.07 +cafeter cafeter VER 0.27 0.07 0.25 0.00 inf; +cafeteria cafeteria NOM f s 0.11 1.35 0.11 1.28 +cafeterias cafeteria NOM f p 0.11 1.35 0.00 0.07 +cafeteur cafeteur NOM m s 0.01 0.00 0.01 0.00 +cafetier cafetier NOM m s 0.35 2.97 0.34 2.77 +cafetiers cafetier NOM m p 0.35 2.97 0.01 0.20 +cafetière cafetière NOM f s 2.07 5.88 1.92 5.54 +cafetières cafetière NOM f p 2.07 5.88 0.15 0.34 +cafeton cafeton NOM m s 0.00 0.14 0.00 0.14 +cafeté cafeter VER m s 0.27 0.07 0.02 0.00 par:pas; +cafouilla cafouiller VER 0.43 0.41 0.00 0.14 ind:pas:3s; +cafouillage cafouillage NOM m s 0.33 0.54 0.30 0.41 +cafouillages cafouillage NOM m p 0.33 0.54 0.02 0.14 +cafouillait cafouiller VER 0.43 0.41 0.03 0.07 ind:imp:3s; +cafouillant cafouiller VER 0.43 0.41 0.00 0.07 par:pre; +cafouille cafouiller VER 0.43 0.41 0.19 0.00 ind:pre:1s;ind:pre:3s; +cafouillent cafouiller VER 0.43 0.41 0.01 0.07 ind:pre:3p; +cafouiller cafouiller VER 0.43 0.41 0.02 0.07 inf; +cafouilles cafouiller VER 0.43 0.41 0.01 0.00 ind:pre:2s; +cafouilleuse cafouilleux ADJ f s 0.00 0.27 0.00 0.14 +cafouilleux cafouilleux ADJ m 0.00 0.27 0.00 0.14 +cafouillis cafouillis NOM m 0.00 0.14 0.00 0.14 +cafouillé cafouiller VER m s 0.43 0.41 0.17 0.00 par:pas; +cafre cafre NOM m s 0.03 0.00 0.03 0.00 +caftage caftage NOM m s 0.00 0.07 0.00 0.07 +caftaient cafter VER 1.05 1.22 0.00 0.07 ind:imp:3p; +caftait cafter VER 1.05 1.22 0.01 0.00 ind:imp:3s; +caftan caftan NOM m s 0.15 2.64 0.15 1.89 +caftans caftan NOM m p 0.15 2.64 0.00 0.74 +cafte cafter VER 1.05 1.22 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cafter cafter VER 1.05 1.22 0.32 0.54 inf; +cafterai cafter VER 1.05 1.22 0.01 0.00 ind:fut:1s; +cafterait cafter VER 1.05 1.22 0.00 0.14 cnd:pre:3s; +cafteras cafter VER 1.05 1.22 0.00 0.07 ind:fut:2s; +caftes cafter VER 1.05 1.22 0.14 0.07 ind:pre:2s; +cafteur cafteur NOM m s 0.51 0.47 0.35 0.14 +cafteurs cafteur NOM m p 0.51 0.47 0.15 0.14 +cafteuse cafteur NOM f s 0.51 0.47 0.01 0.20 +cafté cafter VER m s 1.05 1.22 0.37 0.27 par:pas; +caftés cafter VER m p 1.05 1.22 0.01 0.00 par:pas; +café_concert café_concert NOM m s 0.00 0.47 0.00 0.34 +café_crème café_crème NOM m s 0.00 0.95 0.00 0.95 +café_hôtel café_hôtel NOM m s 0.00 0.07 0.00 0.07 +café_restaurant café_restaurant NOM m s 0.00 0.41 0.00 0.41 +café_tabac café_tabac NOM m s 0.00 1.22 0.00 1.22 +café_théâtre café_théâtre NOM m s 0.00 0.27 0.00 0.27 +café café NOM m s 163.56 177.30 157.56 154.93 +caféier caféier NOM m s 0.02 0.07 0.01 0.00 +caféiers caféier NOM m p 0.02 0.07 0.01 0.07 +caféine caféine NOM f s 1.58 0.14 1.58 0.14 +café_concert café_concert NOM m p 0.00 0.47 0.00 0.14 +cafés café NOM m p 163.56 177.30 6.00 22.36 +cafétéria cafétéria NOM f s 4.12 1.28 4.08 1.15 +cafétérias cafétéria NOM f p 4.12 1.28 0.04 0.14 +cagade cagade NOM f s 0.00 0.68 0.00 0.54 +cagades cagade NOM f p 0.00 0.68 0.00 0.14 +cage cage NOM f s 18.30 41.82 16.61 34.86 +cageot cageot NOM m s 1.21 7.36 0.64 3.11 +cageots cageot NOM m p 1.21 7.36 0.57 4.26 +cages cage NOM f p 18.30 41.82 1.69 6.96 +cagette cagette NOM f s 0.01 0.54 0.01 0.07 +cagettes cagette NOM f p 0.01 0.54 0.00 0.47 +cagibi cagibi NOM m s 0.85 5.34 0.85 5.07 +cagibis cagibi NOM m p 0.85 5.34 0.00 0.27 +cagna cagna NOM f s 0.01 2.64 0.01 1.69 +cagnard cagnard ADJ m s 0.17 0.27 0.17 0.20 +cagnards cagnard ADJ m p 0.17 0.27 0.00 0.07 +cagnas cagna NOM f p 0.01 2.64 0.00 0.95 +cagne cagne NOM f s 0.00 0.07 0.00 0.07 +cagneuse cagneux ADJ f s 0.21 1.01 0.01 0.07 +cagneuses cagneux ADJ f p 0.21 1.01 0.00 0.14 +cagneux cagneux ADJ m 0.21 1.01 0.20 0.81 +cagnotte cagnotte NOM f s 1.09 1.01 1.09 1.01 +cagot cagot NOM m s 0.00 0.41 0.00 0.14 +cagote cagot NOM f s 0.00 0.41 0.00 0.07 +cagotes cagot ADJ f p 0.00 0.20 0.00 0.07 +cagots cagot NOM m p 0.00 0.41 0.00 0.20 +cagou cagou NOM m s 0.01 0.00 0.01 0.00 +cagoulard cagoulard NOM m s 0.00 0.54 0.00 0.14 +cagoulards cagoulard NOM m p 0.00 0.54 0.00 0.41 +cagoule cagoule NOM f s 2.84 1.76 1.92 1.28 +cagoules cagoule NOM f p 2.84 1.76 0.93 0.47 +cagoulé cagoulé ADJ m s 0.31 0.20 0.03 0.14 +cagoulés cagoulé ADJ m p 0.31 0.20 0.28 0.07 +caguait caguer VER 0.01 0.88 0.00 0.20 ind:imp:3s; +cague caguer VER 0.01 0.88 0.00 0.27 ind:pre:1s;ind:pre:3s; +caguer caguer VER 0.01 0.88 0.01 0.41 inf; +cahier cahier NOM m s 6.98 31.55 5.04 20.07 +cahiers cahier NOM m p 6.98 31.55 1.94 11.49 +cahin_caha cahin_caha ADV 0.00 1.08 0.00 1.08 +cahors cahors NOM m 0.00 0.14 0.00 0.14 +cahot cahot NOM m s 0.08 4.39 0.01 1.42 +cahota cahoter VER 0.06 4.53 0.00 0.14 ind:pas:3s; +cahotait cahoter VER 0.06 4.53 0.01 0.34 ind:imp:3s; +cahotant cahoter VER 0.06 4.53 0.00 1.42 par:pre; +cahotante cahotant ADJ f s 0.00 1.08 0.00 0.68 +cahote cahoter VER 0.06 4.53 0.01 0.54 ind:pre:3s; +cahotement cahotement NOM m s 0.00 0.27 0.00 0.27 +cahotent cahoter VER 0.06 4.53 0.00 0.14 ind:pre:3p; +cahoter cahoter VER 0.06 4.53 0.03 0.41 inf; +cahoteuse cahoteux ADJ f s 0.15 0.74 0.10 0.07 +cahoteuses cahoteux ADJ f p 0.15 0.74 0.00 0.07 +cahoteux cahoteux ADJ m 0.15 0.74 0.05 0.61 +cahotons cahoter VER 0.06 4.53 0.00 0.07 ind:pre:1p; +cahots cahot NOM m p 0.08 4.39 0.07 2.97 +cahotèrent cahoter VER 0.06 4.53 0.00 0.07 ind:pas:3p; +cahoté cahoter VER m s 0.06 4.53 0.00 0.68 par:pas; +cahotée cahoter VER f s 0.06 4.53 0.01 0.07 par:pas; +cahotées cahoter VER f p 0.06 4.53 0.00 0.14 par:pas; +cahotés cahoter VER m p 0.06 4.53 0.00 0.54 par:pas; +cahute cahute NOM f s 0.17 1.69 0.17 1.01 +cahutes cahute NOM f p 0.17 1.69 0.00 0.68 +cailla cailler VER 1.46 2.91 0.00 0.07 ind:pas:3s; +caillaient cailler VER 1.46 2.91 0.00 0.07 ind:imp:3p; +caillais cailler VER 1.46 2.91 0.00 0.07 ind:imp:1s; +caillait cailler VER 1.46 2.91 0.02 0.47 ind:imp:3s; +caillant cailler VER 1.46 2.91 0.01 0.07 par:pre; +caillasse caillasse NOM f s 0.16 2.70 0.14 1.35 +caillasser caillasser VER 0.03 0.00 0.03 0.00 inf; +caillasses caillasse NOM f p 0.16 2.70 0.02 1.35 +caille caille NOM f s 2.34 4.59 1.81 2.97 +caillebotis caillebotis NOM m 0.01 0.20 0.01 0.20 +caillent cailler VER 1.46 2.91 0.01 0.07 ind:pre:3p; +cailler cailler VER 1.46 2.91 0.21 0.68 inf; +caillera caillera NOM f s 0.03 0.00 0.03 0.00 +caillerait cailler VER 1.46 2.91 0.01 0.00 cnd:pre:3s; +caillerez cailler VER 1.46 2.91 0.01 0.00 ind:fut:2p; +cailles caille NOM f p 2.34 4.59 0.53 1.62 +caillette caillette NOM f s 0.01 0.00 0.01 0.00 +caillot caillot NOM m s 3.09 2.84 2.39 1.82 +caillots caillot NOM m p 3.09 2.84 0.70 1.01 +caillou caillou NOM m s 10.02 38.58 4.11 11.22 +cailloutage cailloutage NOM m s 0.00 0.07 0.00 0.07 +caillouteuse caillouteux ADJ f s 0.34 3.11 0.15 1.42 +caillouteuses caillouteux ADJ f p 0.34 3.11 0.00 0.34 +caillouteux caillouteux ADJ m 0.34 3.11 0.20 1.35 +cailloutis cailloutis NOM m 0.00 0.54 0.00 0.54 +caillouté caillouter VER m s 0.03 0.00 0.03 0.00 par:pas; +cailloux caillou NOM m p 10.02 38.58 5.91 27.36 +caillé caillé ADJ m s 0.21 1.96 0.21 1.96 +caillée cailler VER f s 1.46 2.91 0.00 0.07 par:pas; +caillées cailler VER f p 1.46 2.91 0.00 0.07 par:pas; +cairn cairn NOM m s 0.08 0.07 0.03 0.07 +cairns cairn NOM m p 0.08 0.07 0.05 0.00 +cairote cairote NOM s 0.00 0.14 0.00 0.07 +cairotes cairote NOM p 0.00 0.14 0.00 0.07 +caisse caisse NOM f s 38.03 69.39 29.46 51.01 +caisses caisse NOM f p 38.03 69.39 8.57 18.38 +caissette caissette NOM f s 0.00 1.15 0.00 0.61 +caissettes caissette NOM f p 0.00 1.15 0.00 0.54 +caissier caissier NOM m s 4.07 7.09 1.66 1.96 +caissiers caissier NOM m p 4.07 7.09 0.38 0.20 +caissière caissier NOM f s 4.07 7.09 2.03 4.19 +caissières caissière NOM f p 0.25 0.00 0.25 0.00 +caisson caisson NOM m s 1.72 3.04 1.43 0.81 +caissons caisson NOM m p 1.72 3.04 0.29 2.23 +cajola cajoler VER 1.36 3.45 0.00 0.41 ind:pas:3s; +cajolaient cajoler VER 1.36 3.45 0.00 0.47 ind:imp:3p; +cajolait cajoler VER 1.36 3.45 0.03 0.20 ind:imp:3s; +cajolant cajoler VER 1.36 3.45 0.11 0.27 par:pre; +cajole cajoler VER 1.36 3.45 0.59 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cajolent cajoler VER 1.36 3.45 0.01 0.07 ind:pre:3p; +cajoler cajoler VER 1.36 3.45 0.36 1.15 inf; +cajolera cajoler VER 1.36 3.45 0.01 0.07 ind:fut:3s; +cajolerai cajoler VER 1.36 3.45 0.20 0.00 ind:fut:1s; +cajolerait cajoler VER 1.36 3.45 0.00 0.07 cnd:pre:3s; +cajolerie cajolerie NOM f s 0.03 0.81 0.00 0.20 +cajoleries cajolerie NOM f p 0.03 0.81 0.03 0.61 +cajoleur cajoleur NOM m s 0.10 0.20 0.10 0.07 +cajoleurs cajoleur NOM m p 0.10 0.20 0.00 0.07 +cajoleuse cajoleur ADJ f s 0.11 0.54 0.10 0.14 +cajolèrent cajoler VER 1.36 3.45 0.00 0.14 ind:pas:3p; +cajolé cajoler VER m s 1.36 3.45 0.01 0.20 par:pas; +cajolée cajoler VER f s 1.36 3.45 0.01 0.07 par:pas; +cajolés cajoler VER m p 1.36 3.45 0.02 0.00 par:pas; +cajou cajou NOM m s 0.18 0.14 0.17 0.14 +cajous cajou NOM m p 0.18 0.14 0.01 0.00 +cajun cajun ADJ s 0.47 0.00 0.47 0.00 +cajuns cajun NOM p 0.28 0.00 0.10 0.00 +cake_walk cake_walk NOM m s 0.03 0.00 0.03 0.00 +cake cake NOM m s 3.13 1.96 2.57 1.69 +cakes cake NOM m p 3.13 1.96 0.56 0.27 +cal cal NOM m s 3.54 0.68 3.50 0.34 +cala caler VER 4.19 17.77 0.15 2.16 ind:pas:3s; +calabrais calabrais ADJ m 0.34 0.41 0.34 0.34 +calabraises calabrais ADJ f p 0.34 0.41 0.00 0.07 +calade calade NOM f s 0.00 0.20 0.00 0.20 +calai caler VER 4.19 17.77 0.01 0.14 ind:pas:1s; +calaient caler VER 4.19 17.77 0.00 0.14 ind:imp:3p; +calais caler VER 4.19 17.77 0.01 0.14 ind:imp:1s;ind:imp:2s; +calaisiens calaisien NOM m p 0.00 0.07 0.00 0.07 +calaison calaison NOM f s 0.10 0.00 0.10 0.00 +calait caler VER 4.19 17.77 0.01 0.47 ind:imp:3s; +calamar calamar NOM m s 1.09 0.47 0.40 0.14 +calamars calamar NOM m p 1.09 0.47 0.69 0.34 +calame calame NOM m s 0.14 0.27 0.14 0.20 +calames calame NOM m p 0.14 0.27 0.00 0.07 +calamine calamine NOM f s 0.01 0.20 0.01 0.00 +calamines calamine NOM f p 0.01 0.20 0.00 0.20 +calamistre calamistrer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +calamistré calamistré ADJ m s 0.00 0.41 0.00 0.14 +calamistrée calamistré ADJ f s 0.00 0.41 0.00 0.14 +calamistrés calamistré ADJ m p 0.00 0.41 0.00 0.14 +calamita calamiter VER 0.04 0.27 0.01 0.00 ind:pas:3s; +calamitait calamiter VER 0.04 0.27 0.00 0.07 ind:imp:3s; +calamiteuse calamiteux ADJ f s 0.06 0.81 0.02 0.34 +calamiteuses calamiteux ADJ f p 0.06 0.81 0.00 0.07 +calamiteux calamiteux ADJ m s 0.06 0.81 0.03 0.41 +calamité calamité NOM f s 2.21 2.84 1.63 1.42 +calamités calamité NOM f p 2.21 2.84 0.58 1.42 +calanchaient calancher VER 0.10 0.41 0.00 0.07 ind:imp:3p; +calanchais calancher VER 0.10 0.41 0.00 0.07 ind:imp:1s; +calanche calancher VER 0.10 0.41 0.00 0.07 ind:pre:1s; +calancher calancher VER 0.10 0.41 0.00 0.14 inf; +calanché calancher VER m s 0.10 0.41 0.10 0.07 par:pas; +calandre calandre NOM f s 0.09 0.68 0.09 0.68 +calanque calanque NOM f s 0.40 0.41 0.14 0.14 +calanques calanque NOM f p 0.40 0.41 0.27 0.27 +calant caler VER 4.19 17.77 0.02 0.68 par:pre; +calao calao NOM m s 0.01 0.00 0.01 0.00 +calbar calbar NOM m s 0.02 0.34 0.02 0.20 +calbars calbar NOM m p 0.02 0.34 0.00 0.14 +calbombe calbombe NOM f s 0.00 0.54 0.00 0.47 +calbombes calbombe NOM f p 0.00 0.54 0.00 0.07 +calcaire calcaire NOM m s 0.28 1.55 0.28 1.35 +calcaires calcaire ADJ p 0.15 1.08 0.04 0.68 +calce calcer VER 0.00 0.34 0.00 0.07 ind:pre:3s; +calcer calcer VER 0.00 0.34 0.00 0.20 inf; +calcerais calcer VER 0.00 0.34 0.00 0.07 cnd:pre:1s; +calcif calcif NOM m s 0.10 0.74 0.08 0.54 +calcification calcification NOM f s 0.08 0.14 0.08 0.14 +calcifié calcifier VER m s 0.07 0.00 0.05 0.00 par:pas; +calcifiée calcifier VER f s 0.07 0.00 0.01 0.00 par:pas; +calcifiée calcifié ADJ f s 0.02 0.00 0.01 0.00 +calcifs calcif NOM m p 0.10 0.74 0.02 0.20 +calcinaient calciner VER 0.50 2.16 0.01 0.00 ind:imp:3p; +calcinait calciner VER 0.50 2.16 0.00 0.07 ind:imp:3s; +calcinant calciner VER 0.50 2.16 0.00 0.14 par:pre; +calcination calcination NOM f s 0.00 0.20 0.00 0.20 +calcine calciner VER 0.50 2.16 0.04 0.00 ind:pre:3s; +calciner calciner VER 0.50 2.16 0.02 0.14 inf; +calciné calciner VER m s 0.50 2.16 0.13 0.41 par:pas; +calcinée calciné ADJ f s 0.34 3.18 0.13 0.68 +calcinées calciné ADJ f p 0.34 3.18 0.01 1.15 +calcinés calciner VER m p 0.50 2.16 0.26 0.54 par:pas; +calcite calcite NOM m s 0.01 0.00 0.01 0.00 +calcium calcium NOM m s 0.98 0.74 0.98 0.74 +calcul calcul NOM m s 11.47 19.86 5.95 11.55 +calcula calculer VER 12.19 23.31 0.00 1.76 ind:pas:3s; +calculables calculable ADJ f p 0.00 0.07 0.00 0.07 +calculai calculer VER 12.19 23.31 0.00 0.34 ind:pas:1s; +calculaient calculer VER 12.19 23.31 0.02 0.20 ind:imp:3p; +calculais calculer VER 12.19 23.31 0.13 0.34 ind:imp:1s; +calculait calculer VER 12.19 23.31 0.29 1.49 ind:imp:3s; +calculant calculer VER 12.19 23.31 0.12 1.28 par:pre; +calculateur calculateur ADJ m s 0.52 0.54 0.30 0.20 +calculateurs calculateur NOM m p 0.75 0.88 0.21 0.07 +calculatrice calculateur NOM f s 0.75 0.88 0.51 0.34 +calculatrices calculatrice NOM f p 0.05 0.00 0.05 0.00 +calcule calculer VER 12.19 23.31 1.96 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +calculent calculer VER 12.19 23.31 0.05 0.07 ind:pre:3p; +calculer calculer VER 12.19 23.31 3.09 5.61 inf; +calculera calculer VER 12.19 23.31 0.03 0.07 ind:fut:3s; +calculerai calculer VER 12.19 23.31 0.01 0.00 ind:fut:1s; +calculerait calculer VER 12.19 23.31 0.00 0.07 cnd:pre:3s; +calcules calculer VER 12.19 23.31 0.28 0.07 ind:pre:2s; +calculette calculette NOM f s 0.20 0.20 0.14 0.14 +calculettes calculette NOM f p 0.20 0.20 0.07 0.07 +calculeuse calculeux ADJ f s 0.01 0.00 0.01 0.00 +calculez calculer VER 12.19 23.31 0.28 0.14 imp:pre:2p;ind:pre:2p; +calculiez calculer VER 12.19 23.31 0.01 0.07 ind:imp:2p; +calculons calculer VER 12.19 23.31 0.06 0.00 imp:pre:1p;ind:pre:1p; +calculs calcul NOM m p 11.47 19.86 5.52 8.31 +calculèrent calculer VER 12.19 23.31 0.00 0.27 ind:pas:3p; +calculé calculer VER m s 12.19 23.31 5.29 5.61 par:pas; +calculée calculer VER f s 12.19 23.31 0.37 2.23 par:pas; +calculées calculer VER f p 12.19 23.31 0.02 0.68 par:pas; +calculés calculer VER m p 12.19 23.31 0.18 0.81 par:pas; +calcémie calcémie NOM f s 0.03 0.00 0.03 0.00 +caldarium caldarium NOM m s 0.00 0.07 0.00 0.07 +caldeira caldeira NOM f s 0.05 0.00 0.05 0.00 +cale_pied cale_pied NOM m s 0.00 0.34 0.00 0.07 +cale_pied cale_pied NOM m p 0.00 0.34 0.00 0.27 +cale cale NOM f s 4.08 6.15 3.00 4.80 +calebar calebar NOM m s 0.16 0.00 0.16 0.00 +calebasse calebasse NOM f s 0.12 1.69 0.11 0.95 +calebasses calebasse NOM f p 0.12 1.69 0.01 0.74 +calebassier calebassier NOM m s 0.00 0.07 0.00 0.07 +calebombe calebombe NOM f s 0.00 0.07 0.00 0.07 +calecif calecif NOM m s 0.02 0.14 0.02 0.14 +calembour calembour NOM m s 0.40 2.23 0.23 0.74 +calembours calembour NOM m p 0.40 2.23 0.17 1.49 +calembredaine calembredaine NOM f s 0.00 0.54 0.00 0.14 +calembredaines calembredaine NOM f p 0.00 0.54 0.00 0.41 +calenché calencher VER m s 0.00 0.07 0.00 0.07 par:pas; +calendaire calendaire ADJ f s 0.01 0.00 0.01 0.00 +calendes calendes NOM f p 0.07 0.61 0.07 0.61 +calendo calendo NOM m s 0.00 0.07 0.00 0.07 +calendos calendos NOM m 0.00 0.88 0.00 0.88 +calendre calendre NOM f s 0.01 0.00 0.01 0.00 +calendrier calendrier NOM m s 6.18 14.53 5.37 12.84 +calendriers calendrier NOM m p 6.18 14.53 0.82 1.69 +calendula calendula NOM m s 0.15 0.00 0.15 0.00 +calent caler VER 4.19 17.77 0.16 0.07 ind:pre:3p; +calepin calepin NOM m s 1.17 3.72 1.00 3.11 +calepins calepin NOM m p 1.17 3.72 0.17 0.61 +caler caler VER 4.19 17.77 0.77 2.50 inf; +calerai caler VER 4.19 17.77 0.01 0.00 ind:fut:1s; +calerait caler VER 4.19 17.77 0.00 0.07 cnd:pre:3s; +caleras caler VER 4.19 17.77 0.01 0.14 ind:fut:2s; +cales cale NOM f p 4.08 6.15 1.08 1.35 +caleçon caleçon NOM m s 7.58 6.69 4.63 4.86 +caleçonnade caleçonnade NOM f s 0.00 0.07 0.00 0.07 +caleçons caleçon NOM m p 7.58 6.69 2.95 1.82 +calez caler VER 4.19 17.77 0.22 2.36 imp:pre:2p;ind:pre:2p; +calf calf NOM m s 0.04 0.07 0.04 0.07 +calfat calfat NOM m s 0.00 0.27 0.00 0.07 +calfatage calfatage NOM m s 0.00 0.07 0.00 0.07 +calfatait calfater VER 0.03 0.47 0.00 0.07 ind:imp:3s; +calfatant calfater VER 0.03 0.47 0.01 0.07 par:pre; +calfate calfater VER 0.03 0.47 0.00 0.07 ind:pre:3s; +calfater calfater VER 0.03 0.47 0.01 0.07 inf; +calfats calfat NOM m p 0.00 0.27 0.00 0.20 +calfaté calfater VER m s 0.03 0.47 0.00 0.07 par:pas; +calfatée calfater VER f s 0.03 0.47 0.00 0.07 par:pas; +calfatés calfater VER m p 0.03 0.47 0.01 0.07 par:pas; +calfeutra calfeutrer VER 0.22 3.51 0.00 0.07 ind:pas:3s; +calfeutrage calfeutrage NOM m s 0.14 0.00 0.14 0.00 +calfeutrai calfeutrer VER 0.22 3.51 0.00 0.07 ind:pas:1s; +calfeutraient calfeutrer VER 0.22 3.51 0.00 0.34 ind:imp:3p; +calfeutrais calfeutrer VER 0.22 3.51 0.00 0.07 ind:imp:1s; +calfeutrait calfeutrer VER 0.22 3.51 0.00 0.20 ind:imp:3s; +calfeutrant calfeutrer VER 0.22 3.51 0.00 0.07 par:pre; +calfeutre calfeutrer VER 0.22 3.51 0.14 0.34 imp:pre:2s;ind:pre:3s; +calfeutrer calfeutrer VER 0.22 3.51 0.04 0.41 inf; +calfeutres calfeutrer VER 0.22 3.51 0.00 0.07 ind:pre:2s; +calfeutré calfeutrer VER m s 0.22 3.51 0.03 0.61 par:pas; +calfeutrée calfeutrer VER f s 0.22 3.51 0.01 0.74 par:pas; +calfeutrées calfeutrer VER f p 0.22 3.51 0.00 0.27 par:pas; +calfeutrés calfeutrer VER m p 0.22 3.51 0.00 0.27 par:pas; +calibrage calibrage NOM m s 0.13 0.07 0.12 0.07 +calibrages calibrage NOM m p 0.13 0.07 0.01 0.00 +calibration calibration NOM f s 0.07 0.00 0.07 0.00 +calibre calibre NOM m s 7.32 6.15 6.63 5.00 +calibrer calibrer VER 1.27 0.61 0.27 0.20 inf; +calibres calibre NOM m p 7.32 6.15 0.69 1.15 +calibrez calibrer VER 1.27 0.61 0.01 0.00 imp:pre:2p; +calibré calibrer VER m s 1.27 0.61 0.32 0.14 par:pas; +calibrée calibrer VER f s 1.27 0.61 0.04 0.07 par:pas; +calibrées calibrer VER f p 1.27 0.61 0.16 0.00 par:pas; +calibrés calibrer VER m p 1.27 0.61 0.01 0.07 par:pas; +calice calice NOM m s 1.42 2.97 1.20 2.64 +calices calice NOM m p 1.42 2.97 0.22 0.34 +calicot calicot NOM m s 0.32 2.09 0.17 1.28 +calicots calicot NOM m p 0.32 2.09 0.14 0.81 +califat califat NOM m s 0.00 0.14 0.00 0.14 +calife calife NOM m s 3.51 2.03 3.50 1.96 +califes calife NOM m p 3.51 2.03 0.01 0.07 +californie californie NOM f s 0.09 0.07 0.09 0.07 +californien californien ADJ m s 0.81 1.15 0.53 0.54 +californienne californienne ADJ f s 0.43 0.00 0.35 0.00 +californiennes californienne ADJ f p 0.43 0.00 0.08 0.00 +californiens californien ADJ m p 0.81 1.15 0.22 0.14 +californium californium NOM m s 0.03 0.00 0.03 0.00 +califourchon califourchon ADV 0.44 4.19 0.44 4.19 +calisson calisson NOM m s 0.14 0.07 0.14 0.00 +calissons calisson NOM m p 0.14 0.07 0.00 0.07 +call_girl call_girl NOM f s 1.36 0.14 0.98 0.14 +call_girl call_girl NOM f p 1.36 0.14 0.09 0.00 +call_girl call_girl NOM f s 1.36 0.14 0.25 0.00 +call_girl call_girl NOM f p 1.36 0.14 0.03 0.00 +calla calla NOM f s 0.13 0.07 0.13 0.07 +calle caller VER 0.66 1.42 0.63 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +caller caller VER 0.66 1.42 0.00 0.14 inf; +calles caller VER 0.66 1.42 0.03 0.07 ind:pre:2s; +calleuse calleux ADJ f s 0.64 1.69 0.02 0.20 +calleuses calleux ADJ f p 0.64 1.69 0.25 1.22 +calleux calleux ADJ m 0.64 1.69 0.37 0.27 +calligrammes calligramme NOM m p 0.00 0.07 0.00 0.07 +calligraphe calligraphe NOM s 0.01 0.41 0.01 0.41 +calligraphiais calligraphier VER 0.04 2.16 0.00 0.07 ind:imp:1s; +calligraphiait calligraphier VER 0.04 2.16 0.00 0.07 ind:imp:3s; +calligraphiant calligraphier VER 0.04 2.16 0.00 0.20 par:pre; +calligraphie calligraphie NOM f s 1.09 1.35 1.09 1.22 +calligraphient calligraphier VER 0.04 2.16 0.00 0.07 ind:pre:3p; +calligraphier calligraphier VER 0.04 2.16 0.00 0.14 inf; +calligraphies calligraphie NOM f p 1.09 1.35 0.00 0.14 +calligraphiez calligraphier VER 0.04 2.16 0.01 0.00 ind:pre:2p; +calligraphique calligraphique ADJ f s 0.01 0.07 0.01 0.00 +calligraphiquement calligraphiquement ADV 0.00 0.07 0.00 0.07 +calligraphiques calligraphique ADJ m p 0.01 0.07 0.00 0.07 +calligraphié calligraphier VER m s 0.04 2.16 0.01 0.61 par:pas; +calligraphiée calligraphier VER f s 0.04 2.16 0.00 0.34 par:pas; +calligraphiées calligraphier VER f p 0.04 2.16 0.01 0.07 par:pas; +calligraphiés calligraphier VER m p 0.04 2.16 0.00 0.47 par:pas; +callipyge callipyge ADJ f s 0.00 0.07 0.00 0.07 +callosité callosité NOM f s 0.05 0.20 0.02 0.00 +callosités callosité NOM f p 0.05 0.20 0.03 0.20 +calma calmer VER 168.51 45.07 0.04 2.97 ind:pas:3s; +calmai calmer VER 168.51 45.07 0.01 0.34 ind:pas:1s; +calmaient calmer VER 168.51 45.07 0.14 0.47 ind:imp:3p; +calmais calmer VER 168.51 45.07 0.21 0.20 ind:imp:1s;ind:imp:2s; +calmait calmer VER 168.51 45.07 0.58 3.38 ind:imp:3s; +calmant calmant NOM m s 7.38 1.55 3.46 0.61 +calmante calmant ADJ f s 0.81 1.08 0.03 0.54 +calmants calmant NOM m p 7.38 1.55 3.92 0.95 +calmar calmar NOM m s 1.10 0.61 0.70 0.27 +calmars calmar NOM m p 1.10 0.61 0.40 0.34 +calmas calmer VER 168.51 45.07 0.01 0.00 ind:pas:2s; +calme calme NOM m s 105.20 53.24 105.08 52.03 +calmement calmement ADV 6.74 12.43 6.74 12.43 +calment calmer VER 168.51 45.07 0.66 0.54 ind:pre:3p; +calmer calmer VER 168.51 45.07 22.86 14.66 inf;; +calmera calmer VER 168.51 45.07 2.84 0.61 ind:fut:3s; +calmerai calmer VER 168.51 45.07 0.64 0.00 ind:fut:1s; +calmeraient calmer VER 168.51 45.07 0.01 0.14 cnd:pre:3p; +calmerais calmer VER 168.51 45.07 0.18 0.07 cnd:pre:1s; +calmerait calmer VER 168.51 45.07 0.27 0.20 cnd:pre:3s; +calmeras calmer VER 168.51 45.07 0.11 0.00 ind:fut:2s; +calmerez calmer VER 168.51 45.07 0.03 0.00 ind:fut:2p; +calmerons calmer VER 168.51 45.07 0.00 0.07 ind:fut:1p; +calmeront calmer VER 168.51 45.07 0.20 0.14 ind:fut:3p; +calmes calme ADJ p 66.57 73.65 7.79 7.84 +calmez calmer VER 168.51 45.07 34.63 1.55 imp:pre:2p;ind:pre:2p; +calmi calmir VER m s 0.00 0.20 0.00 0.14 par:pas; +calmiez calmer VER 168.51 45.07 0.12 0.00 ind:imp:2p; +calmir calmir VER 0.00 0.20 0.00 0.07 inf; +calmons calmer VER 168.51 45.07 0.98 0.34 imp:pre:1p;ind:pre:1p; +calmos calmos ONO 1.69 0.88 1.69 0.88 +calmât calmer VER 168.51 45.07 0.00 0.14 sub:imp:3s; +calmèrent calmer VER 168.51 45.07 0.00 0.74 ind:pas:3p; +calmé calmer VER m s 168.51 45.07 4.41 3.65 par:pas; +calmée calmer VER f s 168.51 45.07 1.48 3.45 par:pas; +calmées calmer VER f p 168.51 45.07 0.13 0.27 par:pas; +calmés calmer VER m p 168.51 45.07 0.35 0.47 par:pas; +calo calo NOM m s 0.08 0.00 0.08 0.00 +calomel calomel NOM m s 0.01 0.20 0.01 0.20 +calomniant calomnier VER 1.69 1.55 0.02 0.00 par:pre; +calomniateur calomniateur NOM m s 0.12 0.27 0.01 0.07 +calomniateurs calomniateur NOM m p 0.12 0.27 0.11 0.14 +calomniatrice calomniateur NOM f s 0.12 0.27 0.00 0.07 +calomnie calomnie NOM f s 4.49 3.92 2.71 1.69 +calomnient calomnier VER 1.69 1.55 0.17 0.20 ind:pre:3p; +calomnier calomnier VER 1.69 1.55 0.36 0.34 inf; +calomnies calomnie NOM f p 4.49 3.92 1.77 2.23 +calomnieuse calomnieux ADJ f s 0.11 0.34 0.02 0.20 +calomnieuses calomnieux ADJ f p 0.11 0.34 0.06 0.00 +calomnieux calomnieux ADJ m p 0.11 0.34 0.03 0.14 +calomniez calomnier VER 1.69 1.55 0.05 0.00 imp:pre:2p;ind:pre:2p; +calomnié calomnier VER m s 1.69 1.55 0.34 0.47 par:pas; +calomniée calomnier VER f s 1.69 1.55 0.16 0.27 par:pas; +calomniés calomnier VER m p 1.69 1.55 0.07 0.20 par:pas; +caloporteur caloporteur NOM m s 0.01 0.00 0.01 0.00 +calorie calorie NOM f s 1.43 0.95 0.15 0.00 +calories calorie NOM f p 1.43 0.95 1.28 0.95 +calorifique calorifique ADJ s 0.13 0.00 0.13 0.00 +calorifère calorifère NOM m s 0.05 0.81 0.04 0.54 +calorifères calorifère NOM m p 0.05 0.81 0.01 0.27 +calorifuges calorifuge NOM m p 0.00 0.07 0.00 0.07 +calorique calorique ADJ s 0.10 0.07 0.10 0.07 +calot calot NOM m s 0.23 5.81 0.12 4.19 +calotin calotin NOM m s 0.00 0.14 0.00 0.07 +calotins calotin NOM m p 0.00 0.14 0.00 0.07 +calots calot NOM m p 0.23 5.81 0.11 1.62 +calottais calotter VER 0.04 0.54 0.00 0.07 ind:imp:1s; +calotte calotte NOM f s 0.43 4.73 0.25 3.85 +calottes calotte NOM f p 0.43 4.73 0.18 0.88 +calotté calotter VER m s 0.04 0.54 0.01 0.14 par:pas; +calottées calotter VER f p 0.04 0.54 0.00 0.07 par:pas; +calottés calotter VER m p 0.04 0.54 0.00 0.07 par:pas; +calquaient calquer VER 0.36 1.35 0.00 0.07 ind:imp:3p; +calquait calquer VER 0.36 1.35 0.00 0.27 ind:imp:3s; +calquant calquer VER 0.36 1.35 0.02 0.07 par:pre; +calque calquer VER 0.36 1.35 0.23 0.27 imp:pre:2s;ind:pre:3s; +calquer calquer VER 0.36 1.35 0.03 0.20 inf; +calquera calquer VER 0.36 1.35 0.00 0.07 ind:fut:3s; +calques calque NOM m p 0.07 0.61 0.03 0.20 +calqué calquer VER m s 0.36 1.35 0.08 0.07 par:pas; +calquée calquer VER f s 0.36 1.35 0.00 0.20 par:pas; +calquées calquer VER f p 0.36 1.35 0.00 0.14 par:pas; +cals cal NOM m p 3.54 0.68 0.04 0.34 +calte calter VER 0.47 1.62 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +caltent calter VER 0.47 1.62 0.00 0.14 ind:pre:3p; +calter calter VER 0.47 1.62 0.02 0.54 inf; +caltez calter VER 0.47 1.62 0.43 0.47 imp:pre:2p;ind:pre:2p; +calèche calèche NOM f s 1.36 3.72 1.32 3.24 +calèches calèche NOM f p 1.36 3.72 0.04 0.47 +calèrent caler VER 4.19 17.77 0.00 0.14 ind:pas:3p; +caltons calter VER 0.47 1.62 0.00 0.07 imp:pre:1p; +caltés calter VER m p 0.47 1.62 0.00 0.14 par:pas; +calé caler VER m s 4.19 17.77 1.39 4.46 par:pas; +calédonien calédonien ADJ m s 0.02 0.14 0.02 0.07 +calédonienne calédonienne ADJ f s 0.01 0.00 0.01 0.00 +calédoniens calédonien NOM m p 0.07 0.14 0.07 0.14 +calée caler VER f s 4.19 17.77 0.25 1.49 par:pas; +calées caler VER f p 4.19 17.77 0.00 0.20 par:pas; +caléidoscope caléidoscope NOM m s 0.11 0.00 0.11 0.00 +calumet calumet NOM m s 0.24 0.27 0.23 0.20 +calumets calumet NOM m p 0.24 0.27 0.01 0.07 +calés caler VER m p 4.19 17.77 0.19 0.68 par:pas; +calus calus NOM m 0.00 0.07 0.00 0.07 +calva calva NOM m s 0.03 2.36 0.03 2.23 +calvados calvados NOM m 0.02 1.35 0.02 1.35 +calvaire calvaire NOM m s 2.19 8.24 2.19 7.70 +calvaires calvaire NOM m p 2.19 8.24 0.00 0.54 +calvas calva NOM m p 0.03 2.36 0.00 0.14 +calville calville NOM f s 0.04 0.14 0.04 0.07 +calvilles calville NOM f p 0.04 0.14 0.00 0.07 +calvinisme calvinisme NOM m s 0.10 0.07 0.10 0.07 +calviniste calviniste ADJ f s 0.12 0.34 0.11 0.14 +calvinistes calviniste ADJ p 0.12 0.34 0.01 0.20 +calvitie calvitie NOM f s 1.02 2.84 1.00 2.77 +calvities calvitie NOM f p 1.02 2.84 0.01 0.07 +calypso calypso NOM m s 0.05 0.20 0.05 0.20 +cama camer VER 3.35 1.08 0.20 0.14 ind:pas:3s; +camaïeu camaïeu NOM m s 0.00 0.34 0.00 0.34 +camaïeux camaïeux NOM m p 0.00 0.14 0.00 0.14 +camail camail NOM m s 0.00 0.61 0.00 0.54 +camails camail NOM m p 0.00 0.61 0.00 0.07 +camarade camarade NOM s 77.81 98.99 47.32 38.85 +camaraderie camaraderie NOM f s 1.23 3.58 1.22 3.24 +camaraderies camaraderie NOM f p 1.23 3.58 0.01 0.34 +camarades camarade NOM p 77.81 98.99 30.50 60.14 +camard camard ADJ m s 0.01 0.47 0.01 0.27 +camarde camard NOM f s 0.00 0.20 0.00 0.20 +camards camard ADJ m p 0.01 0.47 0.00 0.07 +camarero camarero NOM m s 0.00 0.14 0.00 0.07 +camareros camarero NOM m p 0.00 0.14 0.00 0.07 +camarguais camarguais ADJ m 0.00 0.14 0.00 0.14 +camarguaises camarguais NOM f p 0.00 0.07 0.00 0.07 +camarilla camarilla NOM f s 0.00 0.07 0.00 0.07 +camarin camarin NOM m s 0.00 0.34 0.00 0.14 +camarins camarin NOM m p 0.00 0.34 0.00 0.20 +camarluche camarluche NOM m s 0.00 0.07 0.00 0.07 +camaro camaro NOM m s 0.38 0.00 0.38 0.00 +camber camber VER 0.09 0.00 0.09 0.00 inf; +cambiste cambiste NOM s 0.01 0.00 0.01 0.00 +cambodgien cambodgien ADJ m s 0.16 0.14 0.06 0.00 +cambodgienne cambodgien ADJ f s 0.16 0.14 0.07 0.07 +cambodgiennes cambodgien ADJ f p 0.16 0.14 0.01 0.00 +cambodgiens cambodgien NOM m p 0.09 0.47 0.07 0.00 +cambouis cambouis NOM m 0.38 4.59 0.38 4.59 +cambra cambrer VER 1.35 3.51 0.01 0.34 ind:pas:3s; +cambrait cambrer VER 1.35 3.51 0.00 0.41 ind:imp:3s; +cambrant cambrer VER 1.35 3.51 0.00 0.27 par:pre; +cambre cambrer VER 1.35 3.51 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cambrement cambrement NOM m s 0.00 0.14 0.00 0.14 +cambrent cambrer VER 1.35 3.51 0.00 0.14 ind:pre:3p; +cambrer cambrer VER 1.35 3.51 0.69 0.20 inf; +cambrera cambrer VER 1.35 3.51 0.00 0.07 ind:fut:3s; +cambres cambrer VER 1.35 3.51 0.00 0.34 ind:pre:2s; +cambrez cambrer VER 1.35 3.51 0.31 0.00 imp:pre:2p; +cambrienne cambrien ADJ f s 0.04 0.00 0.04 0.00 +cambriolage cambriolage NOM m s 8.05 2.77 6.60 2.03 +cambriolages cambriolage NOM m p 8.05 2.77 1.45 0.74 +cambriolaient cambrioler VER 6.80 1.15 0.02 0.07 ind:imp:3p; +cambriolais cambrioler VER 6.80 1.15 0.05 0.07 ind:imp:1s;ind:imp:2s; +cambriolant cambrioler VER 6.80 1.15 0.05 0.00 par:pre; +cambriole cambrioler VER 6.80 1.15 0.49 0.14 ind:pre:1s;ind:pre:3s; +cambriolent cambrioler VER 6.80 1.15 0.09 0.14 ind:pre:3p; +cambrioler cambrioler VER 6.80 1.15 2.27 0.27 inf; +cambrioles cambrioler VER 6.80 1.15 0.06 0.00 ind:pre:2s; +cambrioleur cambrioleur NOM m s 4.70 2.36 3.17 1.08 +cambrioleurs cambrioleur NOM m p 4.70 2.36 1.41 1.28 +cambrioleuse cambrioleur NOM f s 4.70 2.36 0.12 0.00 +cambriolez cambrioler VER 6.80 1.15 0.06 0.00 imp:pre:2p;ind:pre:2p; +cambrioliez cambrioler VER 6.80 1.15 0.02 0.00 ind:imp:2p; +cambriolons cambrioler VER 6.80 1.15 0.01 0.00 ind:pre:1p; +cambriolé cambrioler VER m s 6.80 1.15 2.69 0.27 par:pas; +cambriolée cambrioler VER f s 6.80 1.15 0.34 0.07 par:pas; +cambriolées cambrioler VER f p 6.80 1.15 0.02 0.14 par:pas; +cambriolés cambrioler VER m p 6.80 1.15 0.62 0.00 par:pas; +cambrousse cambrousse NOM f s 1.04 1.96 1.04 1.89 +cambrousses cambrousse NOM f p 1.04 1.96 0.00 0.07 +cambré cambré ADJ m s 0.32 2.77 0.19 0.68 +cambrée cambré ADJ f s 0.32 2.77 0.14 1.01 +cambrées cambrer VER f p 1.35 3.51 0.00 0.14 par:pas; +cambrure cambrure NOM f s 0.20 1.01 0.19 0.95 +cambrures cambrure NOM f p 0.20 1.01 0.01 0.07 +cambrés cambré ADJ m p 0.32 2.77 0.00 0.95 +cambuse cambuse NOM f s 0.06 2.50 0.06 2.43 +cambuses cambuse NOM f p 0.06 2.50 0.00 0.07 +cambusier cambusier NOM m s 0.02 0.00 0.02 0.00 +cambute cambuter VER 0.00 0.27 0.00 0.20 ind:pre:3s; +cambuté cambuter VER m s 0.00 0.27 0.00 0.07 par:pas; +came came NOM f s 16.77 4.73 16.50 4.59 +camellia camellia NOM m s 0.01 0.00 0.01 0.00 +camelot camelot NOM m s 0.48 2.50 0.47 1.28 +camelote camelote NOM f s 3.59 4.80 3.59 4.46 +camelotes camelote NOM f p 3.59 4.80 0.00 0.34 +camelots camelot NOM m p 0.48 2.50 0.01 1.22 +camembert camembert NOM m s 0.80 3.85 0.79 3.18 +camemberts camembert NOM m p 0.80 3.85 0.01 0.68 +cament camer VER 3.35 1.08 0.08 0.07 ind:pre:3p; +camer camer VER 3.35 1.08 0.30 0.00 inf; +camera camer VER 3.35 1.08 1.55 0.41 ind:fut:3s; +cameraman cameraman NOM m s 1.68 0.68 1.54 0.34 +cameramen cameraman NOM m p 1.68 0.68 0.14 0.34 +cameras camer VER 3.35 1.08 0.59 0.14 ind:fut:2s; +camerounais camerounais ADJ m 0.02 0.20 0.01 0.20 +camerounaise camerounais ADJ f s 0.02 0.20 0.01 0.00 +cames came NOM f p 16.77 4.73 0.28 0.14 +camez camer VER 3.35 1.08 0.01 0.00 ind:pre:2p; +camion_benne camion_benne NOM m s 0.06 0.14 0.03 0.00 +camion_citerne camion_citerne NOM m s 0.70 0.47 0.62 0.34 +camion_grue camion_grue NOM m s 0.00 0.14 0.00 0.14 +camion camion NOM m s 59.46 50.74 50.06 30.27 +camionnage camionnage NOM m s 0.18 0.00 0.18 0.00 +camionnette camionnette NOM f s 10.77 17.97 10.05 15.54 +camionnettes camionnette NOM f p 10.77 17.97 0.72 2.43 +camionneur camionneur NOM m s 2.17 2.36 1.17 1.62 +camionneurs camionneur NOM m p 2.17 2.36 1.00 0.74 +camionnée camionner VER f s 0.00 0.07 0.00 0.07 par:pas; +camion_benne camion_benne NOM m p 0.06 0.14 0.03 0.14 +camion_citerne camion_citerne NOM m p 0.70 0.47 0.08 0.14 +camions camion NOM m p 59.46 50.74 9.41 20.47 +camisards camisard NOM m p 0.00 0.07 0.00 0.07 +camisole camisole NOM f s 2.62 1.69 2.52 1.35 +camisoles camisole NOM f p 2.62 1.69 0.10 0.34 +camomille camomille NOM f s 1.16 0.68 1.16 0.54 +camomilles camomille NOM f p 1.16 0.68 0.00 0.14 +camorra camorra NOM f s 0.20 0.07 0.20 0.07 +camoufla camoufler VER 2.19 8.65 0.00 0.14 ind:pas:3s; +camouflage camouflage NOM m s 2.43 2.16 2.41 1.82 +camouflages camouflage NOM m p 2.43 2.16 0.02 0.34 +camouflaient camoufler VER 2.19 8.65 0.01 0.07 ind:imp:3p; +camouflais camoufler VER 2.19 8.65 0.00 0.07 ind:imp:2s; +camouflait camoufler VER 2.19 8.65 0.02 0.68 ind:imp:3s; +camouflant camoufler VER 2.19 8.65 0.02 0.14 par:pre; +camoufle camoufler VER 2.19 8.65 0.30 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +camouflent camoufler VER 2.19 8.65 0.18 0.27 ind:pre:3p; +camoufler camoufler VER 2.19 8.65 0.80 2.23 inf; +camouflerait camoufler VER 2.19 8.65 0.00 0.07 cnd:pre:3s; +camouflet camouflet NOM m s 0.02 0.61 0.02 0.41 +camouflets camouflet NOM m p 0.02 0.61 0.00 0.20 +camouflez camoufler VER 2.19 8.65 0.08 0.07 imp:pre:2p;ind:pre:2p; +camouflé camoufler VER m s 2.19 8.65 0.55 1.28 par:pas; +camouflée camoufler VER f s 2.19 8.65 0.18 1.49 par:pas; +camouflées camoufler VER f p 2.19 8.65 0.01 0.54 par:pas; +camouflés camoufler VER m p 2.19 8.65 0.04 1.15 par:pas; +camp camp NOM m s 114.93 97.23 105.92 75.61 +campa camper VER 6.16 13.85 0.06 0.68 ind:pas:3s; +campagnard campagnard ADJ m s 0.88 6.42 0.32 1.55 +campagnarde campagnard ADJ f s 0.88 6.42 0.24 2.84 +campagnardes campagnard ADJ f p 0.88 6.42 0.28 1.08 +campagnards campagnard NOM m p 0.16 0.74 0.06 0.27 +campagne campagne NOM f s 51.12 107.23 48.61 94.73 +campagnes campagne NOM f p 51.12 107.23 2.51 12.50 +campagnol campagnol NOM m s 0.03 0.41 0.03 0.27 +campagnols campagnol NOM m p 0.03 0.41 0.00 0.14 +campaient camper VER 6.16 13.85 0.04 0.95 ind:imp:3p; +campais camper VER 6.16 13.85 0.04 0.07 ind:imp:1s; +campait camper VER 6.16 13.85 0.15 1.76 ind:imp:3s; +campanaire campanaire ADJ m s 0.00 0.07 0.00 0.07 +campanelles campanelle NOM f p 0.00 0.07 0.00 0.07 +campanile campanile NOM m s 0.02 2.09 0.02 1.42 +campaniles campanile NOM m p 0.02 2.09 0.00 0.68 +campant camper VER 6.16 13.85 0.04 0.41 par:pre; +campanule campanule NOM f s 0.18 0.47 0.11 0.00 +campanules campanule NOM f p 0.18 0.47 0.07 0.47 +campe camper VER 6.16 13.85 0.89 1.49 ind:pre:1s;ind:pre:3s; +campement campement NOM m s 2.52 6.49 2.46 5.34 +campements campement NOM m p 2.52 6.49 0.07 1.15 +campent camper VER 6.16 13.85 0.51 0.54 ind:pre:3p; +camper camper VER 6.16 13.85 3.02 3.92 inf; +campera camper VER 6.16 13.85 0.11 0.00 ind:fut:3s; +camperai camper VER 6.16 13.85 0.02 0.00 ind:fut:1s; +camperait camper VER 6.16 13.85 0.01 0.14 cnd:pre:3s; +camperons camper VER 6.16 13.85 0.10 0.14 ind:fut:1p; +campes camper VER 6.16 13.85 0.16 0.07 ind:pre:2s; +campeur campeur NOM m s 0.68 4.26 0.13 0.47 +campeurs campeur NOM m p 0.68 4.26 0.49 3.72 +campeuse campeur NOM f s 0.68 4.26 0.05 0.00 +campeuses campeur NOM f p 0.68 4.26 0.00 0.07 +campez camper VER 6.16 13.85 0.08 0.00 imp:pre:2p;ind:pre:2p; +camphre camphre NOM m s 0.26 0.74 0.26 0.74 +camphrier camphrier NOM m s 0.00 0.14 0.00 0.14 +camphrée camphré ADJ f s 0.00 0.14 0.00 0.07 +camphrées camphré ADJ f p 0.00 0.14 0.00 0.07 +camping_car camping_car NOM m s 1.06 0.00 1.01 0.00 +camping_car camping_car NOM m p 1.06 0.00 0.05 0.00 +camping_gaz camping_gaz NOM m 0.00 0.47 0.00 0.47 +camping camping NOM m s 4.20 3.24 4.11 2.97 +campings camping NOM m p 4.20 3.24 0.09 0.27 +campions camper VER 6.16 13.85 0.02 0.20 ind:imp:1p; +campo campo NOM m s 0.58 1.49 0.47 1.49 +campâmes camper VER 6.16 13.85 0.00 0.07 ind:pas:1p; +campons camper VER 6.16 13.85 0.16 0.14 imp:pre:1p;ind:pre:1p; +campos campo NOM m p 0.58 1.49 0.11 0.00 +camps camp NOM m p 114.93 97.23 9.01 21.62 +campèrent camper VER 6.16 13.85 0.01 0.00 ind:pas:3p; +campé camper VER m s 6.16 13.85 0.74 1.96 par:pas; +campêche campêche NOM m s 0.00 0.14 0.00 0.14 +campée camper VER f s 6.16 13.85 0.00 0.81 par:pas; +campées camper VER f p 6.16 13.85 0.00 0.14 par:pas; +campés camper VER m p 6.16 13.85 0.01 0.41 par:pas; +campus campus NOM m 6.04 1.62 6.04 1.62 +camé camé NOM m s 2.69 0.54 1.71 0.34 +camée camée NOM m s 0.58 1.01 0.47 0.88 +camées camée NOM m p 0.58 1.01 0.11 0.14 +camélia camélia NOM m s 0.42 2.23 0.04 0.27 +camélias camélia NOM m p 0.42 2.23 0.38 1.96 +camélidé camélidé NOM m s 0.00 0.14 0.00 0.07 +camélidés camélidé NOM m p 0.00 0.14 0.00 0.07 +caméléon caméléon NOM m s 2.51 0.81 2.35 0.68 +caméléons caméléon NOM m p 2.51 0.81 0.16 0.14 +caméra_espion caméra_espion NOM f s 0.01 0.00 0.01 0.00 +caméra caméra NOM f s 56.18 6.35 41.64 4.39 +caméraman caméraman NOM m s 1.28 0.07 1.14 0.07 +caméramans caméraman NOM m p 1.28 0.07 0.14 0.00 +caméras caméra NOM f p 56.18 6.35 14.54 1.96 +camériste camériste NOM f s 0.18 1.01 0.17 0.81 +caméristes camériste NOM f p 0.18 1.01 0.01 0.20 +camés camé NOM m p 2.69 0.54 0.97 0.20 +camus camus NOM m 0.16 0.07 0.16 0.07 +caméscope caméscope NOM m s 0.78 0.00 0.74 0.00 +caméscopes caméscope NOM m p 0.78 0.00 0.04 0.00 +camuse camus ADJ f s 0.14 0.61 0.14 0.07 +cana caner VER 0.86 1.55 0.01 0.07 ind:pas:3s; +canada canada NOM f s 0.03 0.54 0.03 0.54 +canadair canadair NOM m s 0.26 0.00 0.10 0.00 +canadairs canadair NOM m p 0.26 0.00 0.16 0.00 +canadian_river canadian_river NOM s 0.00 0.07 0.00 0.07 +canadien canadien ADJ m s 3.57 4.93 1.86 2.09 +canadienne canadien ADJ f s 3.57 4.93 0.75 1.35 +canadiennes canadien ADJ f p 3.57 4.93 0.41 0.68 +canadiens canadien NOM m p 2.10 5.74 1.36 0.47 +canado canado ADV 0.02 0.00 0.02 0.00 +canaille canaille NOM f s 6.09 2.91 4.70 2.16 +canaillement canaillement ADV 0.00 0.07 0.00 0.07 +canaillerie canaillerie NOM f s 0.00 0.41 0.00 0.41 +canailles canaille NOM f p 6.09 2.91 1.39 0.74 +canal canal NOM m s 17.11 27.43 14.20 20.95 +canalicules canalicule NOM m p 0.00 0.14 0.00 0.14 +canalisa canaliser VER 1.88 1.96 0.00 0.07 ind:pas:3s; +canalisaient canaliser VER 1.88 1.96 0.00 0.14 ind:imp:3p; +canalisait canaliser VER 1.88 1.96 0.00 0.20 ind:imp:3s; +canalisateur canalisateur NOM m s 0.01 0.00 0.01 0.00 +canalisation canalisation NOM f s 1.47 1.28 0.51 0.47 +canalisations canalisation NOM f p 1.47 1.28 0.96 0.81 +canalise canaliser VER 1.88 1.96 0.50 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +canalisent canaliser VER 1.88 1.96 0.01 0.20 ind:pre:3p; +canaliser canaliser VER 1.88 1.96 1.06 0.74 inf; +canalisez canaliser VER 1.88 1.96 0.06 0.00 imp:pre:2p;ind:pre:2p; +canalisons canaliser VER 1.88 1.96 0.02 0.07 ind:pre:1p; +canalisé canaliser VER m s 1.88 1.96 0.11 0.27 par:pas; +canalisée canaliser VER f s 1.88 1.96 0.09 0.14 par:pas; +canalisées canaliser VER f p 1.88 1.96 0.00 0.14 par:pas; +canalisés canaliser VER m p 1.88 1.96 0.02 0.00 par:pas; +cananéen cananéen ADJ m s 0.00 0.07 0.00 0.07 +canapé_lit canapé_lit NOM m s 0.02 1.15 0.00 1.15 +canapé canapé NOM m s 18.58 20.27 17.66 17.97 +canapé_lit canapé_lit NOM m p 0.02 1.15 0.02 0.00 +canapés canapé NOM m p 18.58 20.27 0.93 2.30 +canaque canaque ADJ m s 0.00 0.34 0.00 0.34 +canaques canaque NOM p 0.00 0.07 0.00 0.07 +canard canard NOM m s 23.05 29.05 15.46 16.15 +canardaient canarder VER 1.36 1.35 0.05 0.07 ind:imp:3p; +canardait canarder VER 1.36 1.35 0.04 0.14 ind:imp:3s; +canarde canarder VER 1.36 1.35 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +canardeaux canardeau NOM m p 0.00 0.07 0.00 0.07 +canardent canarder VER 1.36 1.35 0.08 0.20 ind:pre:3p; +canarder canarder VER 1.36 1.35 0.63 0.47 inf; +canardera canarder VER 1.36 1.35 0.02 0.00 ind:fut:3s; +canarderais canarder VER 1.36 1.35 0.01 0.00 cnd:pre:2s; +canarderont canarder VER 1.36 1.35 0.01 0.00 ind:fut:3p; +canardez canarder VER 1.36 1.35 0.03 0.00 imp:pre:2p; +canards canard NOM m p 23.05 29.05 6.66 11.49 +canardé canarder VER m s 1.36 1.35 0.18 0.14 par:pas; +canardée canarder VER f s 1.36 1.35 0.00 0.07 par:pas; +canardés canarder VER m p 1.36 1.35 0.02 0.14 par:pas; +canari canari NOM m s 2.72 2.77 1.51 1.49 +canaris canari NOM m p 2.72 2.77 1.21 1.28 +canas caner VER 0.86 1.55 0.00 0.07 ind:pas:2s; +canasson canasson NOM m s 0.98 1.49 0.58 1.01 +canassons canasson NOM m p 0.98 1.49 0.40 0.47 +canasta canasta NOM f s 0.21 0.68 0.21 0.68 +canaux canal NOM m p 17.11 27.43 2.90 6.49 +cancan cancan NOM m s 1.29 1.76 0.51 0.88 +cancanaient cancaner VER 0.31 0.68 0.00 0.14 ind:imp:3p; +cancanait cancaner VER 0.31 0.68 0.00 0.07 ind:imp:3s; +cancanant cancaner VER 0.31 0.68 0.00 0.20 par:pre; +cancane cancaner VER 0.31 0.68 0.03 0.00 ind:pre:3s; +cancaner cancaner VER 0.31 0.68 0.25 0.27 inf; +cancaneries cancanerie NOM f p 0.00 0.07 0.00 0.07 +cancanes cancaner VER 0.31 0.68 0.03 0.00 ind:pre:2s; +cancanier cancanier NOM m s 0.01 0.07 0.01 0.00 +cancanière cancanier ADJ f s 0.10 0.14 0.10 0.07 +cancanières cancanier NOM f p 0.01 0.07 0.00 0.07 +cancans cancan NOM m p 1.29 1.76 0.78 0.88 +cancel cancel NOM m s 0.27 0.00 0.27 0.00 +cancer cancer NOM m s 23.15 9.46 22.34 8.78 +cancers cancer NOM m p 23.15 9.46 0.81 0.68 +canche canche NOM f s 0.01 0.00 0.01 0.00 +cancoillotte cancoillotte NOM f s 0.00 0.20 0.00 0.20 +cancre cancre NOM m s 0.97 3.78 0.77 2.50 +cancrelat cancrelat NOM m s 0.23 0.95 0.14 0.41 +cancrelats cancrelat NOM m p 0.23 0.95 0.09 0.54 +cancres cancre NOM m p 0.97 3.78 0.20 1.28 +cancéreuse cancéreux ADJ f s 0.62 0.74 0.22 0.34 +cancéreuses cancéreux ADJ f p 0.62 0.74 0.25 0.14 +cancéreux cancéreux ADJ m 0.62 0.74 0.16 0.27 +cancérigène cancérigène ADJ s 0.38 0.27 0.30 0.07 +cancérigènes cancérigène ADJ p 0.38 0.27 0.08 0.20 +cancériser cancériser VER 0.00 0.07 0.00 0.07 inf; +cancérogène cancérogène ADJ m s 0.02 0.00 0.02 0.00 +cancérologie cancérologie NOM f s 0.01 0.00 0.01 0.00 +cancérologue cancérologue NOM s 0.12 0.00 0.09 0.00 +cancérologues cancérologue NOM p 0.12 0.00 0.04 0.00 +candeur candeur NOM f s 1.27 4.59 1.27 4.46 +candeurs candeur NOM f p 1.27 4.59 0.00 0.14 +candi candi ADJ m s 0.24 0.34 0.24 0.27 +candida candida NOM m s 0.13 0.00 0.13 0.00 +candidat candidat NOM m s 17.70 8.04 9.63 2.84 +candidate candidat NOM f s 17.70 8.04 1.80 0.74 +candidates candidat NOM f p 17.70 8.04 0.60 0.47 +candidats candidat NOM m p 17.70 8.04 5.67 3.99 +candidature candidature NOM f s 2.71 1.76 2.15 1.42 +candidatures candidature NOM f p 2.71 1.76 0.56 0.34 +candide candide ADJ s 0.96 4.73 0.89 3.92 +candidement candidement ADV 0.00 0.47 0.00 0.47 +candides candide ADJ p 0.96 4.73 0.07 0.81 +candidose candidose NOM f s 0.04 0.00 0.04 0.00 +candie candir VER f s 0.00 0.74 0.00 0.68 par:pas; +candis candi ADJ m p 0.24 0.34 0.00 0.07 +candélabre candélabre NOM m s 0.50 3.24 0.34 1.42 +candélabres candélabre NOM m p 0.50 3.24 0.16 1.82 +cane canard NOM f s 23.05 29.05 0.94 1.35 +canebière canebière NOM f s 0.00 1.28 0.00 1.28 +canepetière canepetière NOM f s 0.00 0.07 0.00 0.07 +caner caner VER 0.86 1.55 0.04 0.47 inf; +caneras caner VER 0.86 1.55 0.00 0.07 ind:fut:2s; +canes caner VER 0.86 1.55 0.11 0.20 ind:pre:2s; +canetille canetille NOM f s 0.00 0.07 0.00 0.07 +caneton caneton NOM m s 0.69 1.82 0.48 1.15 +canetons caneton NOM m p 0.69 1.82 0.21 0.68 +canette canette NOM f s 1.95 6.62 1.10 3.18 +canettes canette NOM f p 1.95 6.62 0.85 3.45 +canevas canevas NOM m 0.32 1.35 0.32 1.35 +canfouine canfouine NOM f s 0.00 0.41 0.00 0.41 +cangue cangue NOM f s 0.00 0.07 0.00 0.07 +caniche caniche NOM m s 2.56 3.99 2.00 3.72 +caniches caniche NOM m p 2.56 3.99 0.56 0.27 +caniculaire caniculaire ADJ s 0.02 0.54 0.02 0.34 +caniculaires caniculaire ADJ m p 0.02 0.54 0.00 0.20 +canicule canicule NOM f s 0.38 3.58 0.35 3.31 +canicules canicule NOM f p 0.38 3.58 0.02 0.27 +canidés canidé NOM m p 0.07 0.00 0.07 0.00 +canif canif NOM m s 0.95 4.93 0.91 4.32 +canifs canif NOM m p 0.95 4.93 0.04 0.61 +canin canin ADJ m s 0.76 0.61 0.56 0.61 +canine canine ADJ f s 0.54 1.08 0.41 1.01 +canines canine NOM f p 0.47 1.15 0.25 0.47 +caninette caninette NOM f s 0.00 0.07 0.00 0.07 +canins canin ADJ m p 0.76 0.61 0.20 0.00 +canisses canisse NOM f p 0.00 0.07 0.00 0.07 +caniveau caniveau NOM m s 2.94 7.16 2.86 5.27 +caniveaux caniveau NOM m p 2.94 7.16 0.08 1.89 +canna canna NOM m s 0.10 0.54 0.10 0.00 +cannabis cannabis NOM m 1.05 0.14 1.05 0.14 +cannage cannage NOM m s 0.00 0.20 0.00 0.20 +cannait canner VER 0.31 2.57 0.00 0.14 ind:imp:3s; +cannant canner VER 0.31 2.57 0.00 0.07 par:pre; +cannas canna NOM m p 0.10 0.54 0.00 0.54 +canne_épée canne_épée NOM f s 0.01 0.54 0.01 0.34 +canne canne NOM f s 10.91 34.32 10.21 26.62 +canneberge canneberge NOM f s 0.46 0.00 0.17 0.00 +canneberges canneberge NOM f p 0.46 0.00 0.29 0.00 +canneliers cannelier NOM m p 0.00 0.20 0.00 0.20 +cannelle cannelle NOM f s 1.38 2.97 1.38 2.97 +cannelloni cannelloni NOM m s 0.93 0.00 0.67 0.00 +cannellonis cannelloni NOM m p 0.93 0.00 0.27 0.00 +cannelé cannelé ADJ m s 0.01 0.20 0.01 0.00 +cannelée canneler VER f s 0.01 0.07 0.01 0.00 par:pas; +cannelées cannelé ADJ f p 0.01 0.20 0.00 0.07 +cannelure cannelure NOM f s 0.18 0.95 0.01 0.27 +cannelures cannelure NOM f p 0.18 0.95 0.17 0.68 +cannelés cannelé ADJ m p 0.01 0.20 0.00 0.07 +canner canner VER 0.31 2.57 0.28 0.68 inf; +canneraient canner VER 0.31 2.57 0.00 0.07 cnd:pre:3p; +canne_épée canne_épée NOM f p 0.01 0.54 0.00 0.20 +cannes canne NOM f p 10.91 34.32 0.71 7.70 +cannette cannette NOM f s 0.66 0.14 0.42 0.14 +cannettes cannette NOM f p 0.66 0.14 0.25 0.00 +cannibale cannibale NOM s 4.06 0.95 1.11 0.27 +cannibales cannibale NOM p 4.06 0.95 2.95 0.68 +cannibalisme cannibalisme NOM m s 1.61 0.47 1.61 0.47 +canné canner VER m s 0.31 2.57 0.02 0.68 par:pas; +cannée canné ADJ f s 0.00 1.28 0.00 0.47 +cannées canné ADJ f p 0.00 1.28 0.00 0.27 +canon canon NOM m s 22.22 48.99 14.89 28.65 +canoniale canonial ADJ f s 0.00 0.14 0.00 0.07 +canoniales canonial ADJ f p 0.00 0.14 0.00 0.07 +canonique canonique ADJ s 0.22 0.68 0.22 0.47 +canoniquement canoniquement ADV 0.00 0.07 0.00 0.07 +canoniques canonique ADJ f p 0.22 0.68 0.00 0.20 +canonisation canonisation NOM f s 0.06 0.47 0.05 0.34 +canonisations canonisation NOM f p 0.06 0.47 0.01 0.14 +canoniser canoniser VER 0.61 1.01 0.22 0.14 inf; +canonisez canoniser VER 0.61 1.01 0.10 0.07 imp:pre:2p; +canonisé canoniser VER m s 0.61 1.01 0.25 0.27 par:pas; +canonisée canoniser VER f s 0.61 1.01 0.04 0.27 par:pas; +canonisés canoniser VER m p 0.61 1.01 0.00 0.27 par:pas; +canonnade canonnade NOM f s 0.04 2.70 0.04 2.57 +canonnades canonnade NOM f p 0.04 2.70 0.00 0.14 +canonnage canonnage NOM m s 0.01 0.00 0.01 0.00 +canonnait canonner VER 0.01 0.54 0.00 0.07 ind:imp:3s; +canonner canonner VER 0.01 0.54 0.00 0.20 inf; +canonnier canonnier NOM m s 0.39 0.95 0.16 0.47 +canonniers canonnier NOM m p 0.39 0.95 0.23 0.47 +canonnière canonnière NOM f s 0.34 0.61 0.31 0.41 +canonnières canonnière NOM f p 0.34 0.61 0.03 0.20 +canonné canonner VER m s 0.01 0.54 0.00 0.14 par:pas; +canonnées canonner VER f p 0.01 0.54 0.00 0.07 par:pas; +canonnés canonner VER m p 0.01 0.54 0.01 0.07 par:pas; +canons canon NOM m p 22.22 48.99 7.34 20.34 +canope canope NOM m s 0.09 0.00 0.07 0.00 +canopes canope NOM m p 0.09 0.00 0.02 0.00 +canot canot NOM m s 4.58 9.19 3.31 7.16 +canotage canotage NOM m s 0.04 0.34 0.04 0.34 +canotaient canoter VER 0.01 0.47 0.00 0.07 ind:imp:3p; +canote canoter VER 0.01 0.47 0.00 0.07 ind:pre:3s; +canotent canoter VER 0.01 0.47 0.01 0.00 ind:pre:3p; +canoter canoter VER 0.01 0.47 0.00 0.20 inf; +canoteurs canoteur NOM m p 0.00 0.07 0.00 0.07 +canotier canotier NOM m s 0.16 3.04 0.00 2.36 +canotiers canotier NOM m p 0.16 3.04 0.16 0.68 +canotâmes canoter VER 0.01 0.47 0.00 0.07 ind:pas:1p; +canots canot NOM m p 4.58 9.19 1.27 2.03 +canoté canoter VER m s 0.01 0.47 0.00 0.07 par:pas; +canoë canoë NOM m s 1.95 1.49 1.73 1.22 +canoës canoë NOM m p 1.95 1.49 0.22 0.27 +cantabile cantabile NOM m s 0.02 0.61 0.02 0.61 +cantabrique cantabrique ADJ f s 0.00 0.20 0.00 0.07 +cantabriques cantabrique ADJ p 0.00 0.20 0.00 0.14 +cantal cantal NOM m s 0.00 0.27 0.00 0.27 +cantaloup cantaloup NOM m s 0.07 0.07 0.06 0.00 +cantaloups cantaloup NOM m p 0.07 0.07 0.01 0.07 +cantate cantate NOM f s 0.25 0.54 0.24 0.27 +cantates cantate NOM f p 0.25 0.54 0.01 0.27 +cantatrice cantatrice NOM f s 0.59 2.43 0.55 1.76 +cantatrices cantatrice NOM f p 0.59 2.43 0.04 0.68 +canter canter NOM m s 0.02 0.27 0.02 0.27 +canthare canthare NOM m s 0.00 0.20 0.00 0.14 +canthares canthare NOM m p 0.00 0.20 0.00 0.07 +cantharide cantharide NOM f s 0.07 0.14 0.06 0.07 +cantharides cantharide NOM f p 0.07 0.14 0.01 0.07 +cantilever cantilever NOM m s 0.07 0.00 0.07 0.00 +cantilène cantilène NOM f s 0.11 0.34 0.11 0.34 +cantina cantiner VER 0.33 0.34 0.33 0.00 ind:pas:3s; +cantinaient cantiner VER 0.33 0.34 0.00 0.07 ind:imp:3p; +cantine cantine NOM f s 4.23 12.16 3.76 10.61 +cantiner cantiner VER 0.33 0.34 0.00 0.27 inf; +cantines cantine NOM f p 4.23 12.16 0.47 1.55 +cantinier cantinier NOM m s 0.23 1.15 0.05 0.07 +cantiniers cantinier NOM m p 0.23 1.15 0.14 0.20 +cantinière cantinier NOM f s 0.23 1.15 0.04 0.68 +cantinières cantinier NOM f p 0.23 1.15 0.01 0.20 +cantique cantique NOM m s 1.68 6.62 0.83 2.50 +cantiques cantique NOM m p 1.68 6.62 0.84 4.12 +canton canton NOM m s 0.36 4.73 0.34 3.58 +cantonade cantonade NOM f s 0.01 3.45 0.01 3.45 +cantonais cantonais ADJ m s 0.28 0.00 0.27 0.00 +cantonaise cantonais ADJ f s 0.28 0.00 0.02 0.00 +cantonal cantonal ADJ m s 0.34 0.34 0.00 0.07 +cantonale cantonal ADJ f s 0.34 0.34 0.34 0.07 +cantonales cantonal ADJ f p 0.34 0.34 0.00 0.20 +cantonna cantonner VER 0.76 5.00 0.00 0.14 ind:pas:3s; +cantonnai cantonner VER 0.76 5.00 0.00 0.14 ind:pas:1s; +cantonnaient cantonner VER 0.76 5.00 0.10 0.20 ind:imp:3p; +cantonnais cantonner VER 0.76 5.00 0.04 0.00 ind:imp:1s; +cantonnait cantonner VER 0.76 5.00 0.00 0.34 ind:imp:3s; +cantonnant cantonner VER 0.76 5.00 0.01 0.14 par:pre; +cantonne cantonner VER 0.76 5.00 0.21 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cantonnement cantonnement NOM m s 0.81 5.20 0.68 3.24 +cantonnements cantonnement NOM m p 0.81 5.20 0.14 1.96 +cantonnent cantonner VER 0.76 5.00 0.00 0.27 ind:pre:3p; +cantonner cantonner VER 0.76 5.00 0.08 0.47 inf; +cantonneraient cantonner VER 0.76 5.00 0.00 0.07 cnd:pre:3p; +cantonnez cantonner VER 0.76 5.00 0.03 0.00 imp:pre:2p;ind:pre:2p; +cantonnier cantonnier NOM m s 0.19 3.04 0.17 1.96 +cantonniers cantonnier NOM m p 0.19 3.04 0.03 1.01 +cantonnières cantonnier NOM f p 0.19 3.04 0.00 0.07 +cantonnons cantonner VER 0.76 5.00 0.01 0.27 imp:pre:1p;ind:pre:1p; +cantonnèrent cantonner VER 0.76 5.00 0.00 0.07 ind:pas:3p; +cantonné cantonner VER m s 0.76 5.00 0.23 0.88 par:pas; +cantonnée cantonner VER f s 0.76 5.00 0.01 0.41 par:pas; +cantonnées cantonner VER f p 0.76 5.00 0.02 0.34 par:pas; +cantonnés cantonner VER m p 0.76 5.00 0.01 0.81 par:pas; +cantons canton NOM m p 0.36 4.73 0.02 1.15 +cantre cantre NOM m s 0.00 0.07 0.00 0.07 +cané caner VER m s 0.86 1.55 0.04 0.34 par:pas; +canulant canuler VER 0.00 0.07 0.00 0.07 par:pre; +canular canular NOM m s 1.98 0.81 1.71 0.74 +canularesque canularesque ADJ s 0.00 0.07 0.00 0.07 +canulars canular NOM m p 1.98 0.81 0.27 0.07 +canule canule NOM f s 0.23 0.07 0.23 0.07 +canés caner VER m p 0.86 1.55 0.00 0.07 par:pas; +canut canut NOM m s 0.01 0.14 0.00 0.07 +canuts canut NOM m p 0.01 0.14 0.01 0.07 +canyon canyon NOM m s 4.45 0.88 4.18 0.47 +canyons canyon NOM m p 4.45 0.88 0.27 0.41 +canzonettes canzonette NOM f p 0.00 0.07 0.00 0.07 +caoua caoua NOM m s 0.07 2.43 0.07 2.30 +caouas caoua NOM m p 0.07 2.43 0.00 0.14 +caoutchouc caoutchouc NOM m s 5.59 16.55 5.20 16.01 +caoutchoucs caoutchouc NOM m p 5.59 16.55 0.39 0.54 +caoutchouteuse caoutchouteux ADJ f s 0.06 0.88 0.00 0.14 +caoutchouteuses caoutchouteux ADJ f p 0.06 0.88 0.00 0.20 +caoutchouteux caoutchouteux ADJ m 0.06 0.88 0.06 0.54 +caoutchouté caoutchouter VER m s 0.01 0.20 0.01 0.00 par:pas; +caoutchoutée caoutchouté ADJ f s 0.00 1.08 0.00 0.27 +caoutchoutées caoutchouté ADJ f p 0.00 1.08 0.00 0.47 +caoutchoutés caoutchouté ADJ m p 0.00 1.08 0.00 0.07 +cap_hornier cap_hornier NOM m s 0.00 0.07 0.00 0.07 +cap cap NOM m s 19.49 16.55 19.48 15.68 +capable capable ADJ s 76.85 86.35 65.15 69.73 +capables capable ADJ p 76.85 86.35 11.70 16.62 +capacité capacité NOM f s 17.29 14.39 9.42 8.38 +capacités capacité NOM f p 17.29 14.39 7.87 6.01 +capades capade NOM f p 0.06 0.00 0.06 0.00 +caparaçon caparaçon NOM m s 0.00 0.54 0.00 0.27 +caparaçonnait caparaçonner VER 0.00 1.08 0.00 0.07 ind:imp:3s; +caparaçonne caparaçonner VER 0.00 1.08 0.00 0.07 ind:pre:3s; +caparaçonné caparaçonner VER m s 0.00 1.08 0.00 0.41 par:pas; +caparaçonnée caparaçonner VER f s 0.00 1.08 0.00 0.07 par:pas; +caparaçonnées caparaçonner VER f p 0.00 1.08 0.00 0.07 par:pas; +caparaçonnés caparaçonner VER m p 0.00 1.08 0.00 0.41 par:pas; +caparaçons caparaçon NOM m p 0.00 0.54 0.00 0.27 +cape cape NOM f s 6.25 11.69 5.40 10.34 +capelage capelage NOM m s 0.02 0.07 0.02 0.07 +capeline capeline NOM f s 0.11 2.50 0.10 2.09 +capelines capeline NOM f p 0.11 2.50 0.01 0.41 +capelé capeler VER m s 0.00 0.14 0.00 0.14 par:pas; +caper caper VER 0.02 0.00 0.02 0.00 inf; +capes cape NOM f p 6.25 11.69 0.85 1.35 +capharnaüm capharnaüm NOM m s 0.05 1.49 0.05 1.49 +capillaire capillaire ADJ s 0.93 0.47 0.48 0.20 +capillaires capillaire ADJ p 0.93 0.47 0.45 0.27 +capillarité capillarité NOM f s 0.00 0.07 0.00 0.07 +capilliculteur capilliculteur NOM m s 0.01 0.00 0.01 0.00 +capilotade capilotade NOM f s 0.01 0.74 0.01 0.61 +capilotades capilotade NOM f p 0.01 0.74 0.00 0.14 +capisco capisco NOM m s 0.03 0.20 0.03 0.20 +capitaine capitaine NOM m s 152.69 92.57 150.59 88.45 +capitainerie capitainerie NOM f s 0.15 0.14 0.15 0.14 +capitaines capitaine NOM m p 152.69 92.57 2.11 4.12 +capital_risque capital_risque NOM m s 0.04 0.00 0.04 0.00 +capital capital NOM m s 8.53 9.86 5.49 6.96 +capitale capitale NOM f s 11.38 26.62 10.60 23.18 +capitalement capitalement ADV 0.00 0.07 0.00 0.07 +capitales capitale NOM f p 11.38 26.62 0.78 3.45 +capitalisation capitalisation NOM f s 0.03 0.14 0.03 0.14 +capitalise capitaliser VER 0.22 0.20 0.00 0.07 ind:pre:3s; +capitaliser capitaliser VER 0.22 0.20 0.20 0.07 inf; +capitalisme capitalisme NOM m s 2.97 3.65 2.97 3.65 +capitalisons capitaliser VER 0.22 0.20 0.00 0.07 ind:pre:1p; +capitaliste capitaliste ADJ s 1.89 2.03 1.63 1.28 +capitalistes capitaliste NOM p 1.09 1.35 0.58 0.81 +capitalistiques capitalistique ADJ f p 0.00 0.07 0.00 0.07 +capitalisé capitaliser VER m s 0.22 0.20 0.01 0.00 par:pas; +capitalisés capitaliser VER m p 0.22 0.20 0.01 0.00 par:pas; +capitan capitan NOM m s 0.10 0.81 0.10 0.74 +capitanat capitanat NOM m s 0.01 0.00 0.01 0.00 +capitane capitane NOM m s 0.01 0.00 0.01 0.00 +capitans capitan NOM m p 0.10 0.81 0.00 0.07 +capitaux capital NOM m p 8.53 9.86 1.07 2.91 +capiteuse capiteux ADJ f s 0.25 2.30 0.00 0.54 +capiteuses capiteux ADJ f p 0.25 2.30 0.01 0.27 +capiteux capiteux ADJ m 0.25 2.30 0.24 1.49 +capitole capitole NOM m s 0.10 0.07 0.10 0.07 +capiton capiton NOM m s 0.00 0.54 0.00 0.20 +capitonnage capitonnage NOM m s 0.01 0.27 0.01 0.27 +capitonnaient capitonner VER 0.09 2.70 0.00 0.07 ind:imp:3p; +capitonnait capitonner VER 0.09 2.70 0.00 0.07 ind:imp:3s; +capitonner capitonner VER 0.09 2.70 0.00 0.34 inf; +capitonné capitonner VER m s 0.09 2.70 0.02 0.81 par:pas; +capitonnée capitonné ADJ f s 0.32 2.23 0.28 0.74 +capitonnées capitonné ADJ f p 0.32 2.23 0.01 0.41 +capitonnés capitonner VER m p 0.09 2.70 0.02 0.61 par:pas; +capitons capiton NOM m p 0.00 0.54 0.00 0.34 +capitouls capitoul NOM m p 0.00 0.07 0.00 0.07 +capitula capituler VER 2.31 4.80 0.00 0.47 ind:pas:3s; +capitulaient capituler VER 2.31 4.80 0.01 0.14 ind:imp:3p; +capitulaire capitulaire ADJ m s 0.00 0.07 0.00 0.07 +capitulais capituler VER 2.31 4.80 0.00 0.07 ind:imp:1s; +capitulait capituler VER 2.31 4.80 0.01 0.14 ind:imp:3s; +capitulant capituler VER 2.31 4.80 0.01 0.07 par:pre; +capitulard capitulard NOM m s 0.01 0.00 0.01 0.00 +capitulation capitulation NOM f s 0.81 7.77 0.80 7.70 +capitulations capitulation NOM f p 0.81 7.77 0.01 0.07 +capitule capituler VER 2.31 4.80 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +capitulent capituler VER 2.31 4.80 0.13 0.00 ind:pre:3p; +capituler capituler VER 2.31 4.80 0.58 1.82 inf; +capitulera capituler VER 2.31 4.80 0.00 0.07 ind:fut:3s; +capitulerait capituler VER 2.31 4.80 0.02 0.07 cnd:pre:3s; +capitulerez capituler VER 2.31 4.80 0.00 0.14 ind:fut:2p; +capitulerons capituler VER 2.31 4.80 0.04 0.00 ind:fut:1p; +capituleront capituler VER 2.31 4.80 0.01 0.00 ind:fut:3p; +capitules capituler VER 2.31 4.80 0.02 0.00 ind:pre:2s; +capituliez capituler VER 2.31 4.80 0.01 0.00 ind:imp:2p; +capitulions capituler VER 2.31 4.80 0.11 0.00 ind:imp:1p; +capitulons capituler VER 2.31 4.80 0.22 0.00 ind:pre:1p; +capitulèrent capituler VER 2.31 4.80 0.02 0.00 ind:pas:3p; +capitulé capituler VER m s 2.31 4.80 0.84 1.69 par:pas; +capo capo NOM m s 2.17 0.14 2.03 0.14 +capoc capoc NOM m s 0.00 0.07 0.00 0.07 +capon capon ADJ m s 0.14 0.41 0.14 0.34 +capons capon ADJ m p 0.14 0.41 0.01 0.07 +caporal_chef caporal_chef NOM m s 0.52 0.54 0.52 0.54 +caporal caporal NOM m s 10.22 18.99 9.95 17.03 +caporale caporal NOM f s 10.22 18.99 0.04 0.00 +caporaux caporal NOM m p 10.22 18.99 0.23 1.96 +capos capo NOM m p 2.17 0.14 0.14 0.00 +capot capot NOM m s 3.17 8.18 3.13 7.23 +capota capoter VER 0.90 1.15 0.00 0.07 ind:pas:3s; +capotaient capoter VER 0.90 1.15 0.01 0.07 ind:imp:3p; +capote capote NOM f s 7.59 18.04 4.67 13.45 +capoter capoter VER 0.90 1.15 0.54 0.61 inf; +capotes capote NOM f p 7.59 18.04 2.92 4.59 +capots capot NOM m p 3.17 8.18 0.03 0.95 +capoté capoter VER m s 0.90 1.15 0.15 0.20 par:pas; +capotée capoter VER f s 0.90 1.15 0.00 0.07 par:pas; +cappa cappa NOM f s 0.01 0.00 0.01 0.00 +cappuccino cappuccino NOM m s 1.98 0.07 1.79 0.07 +cappuccinos cappuccino NOM m p 1.98 0.07 0.19 0.00 +capricant capricant ADJ m s 0.00 0.14 0.00 0.07 +capricants capricant ADJ m p 0.00 0.14 0.00 0.07 +caprice caprice NOM m s 8.94 18.31 4.63 9.32 +caprices caprice NOM m p 8.94 18.31 4.31 8.99 +capricieuse capricieux ADJ f s 3.37 6.76 0.71 2.16 +capricieusement capricieusement ADV 0.10 0.74 0.10 0.74 +capricieuses capricieux ADJ f p 3.37 6.76 0.54 1.55 +capricieux capricieux ADJ m 3.37 6.76 2.12 3.04 +capricorne capricorne NOM m s 0.34 0.00 0.29 0.00 +capricornes capricorne NOM m p 0.34 0.00 0.05 0.00 +caprine caprin ADJ f s 0.00 0.07 0.00 0.07 +caps cap NOM m p 19.49 16.55 0.01 0.88 +capsulaire capsulaire ADJ f s 0.03 0.00 0.03 0.00 +capsule capsule NOM f s 5.69 3.18 3.96 1.82 +capsules capsule NOM f p 5.69 3.18 1.73 1.35 +capsulé capsuler VER m s 0.02 0.07 0.00 0.07 par:pas; +capta capter VER 9.89 9.59 0.00 0.20 ind:pas:3s; +captage captage NOM m s 0.02 0.00 0.02 0.00 +captaient capter VER 9.89 9.59 0.00 0.07 ind:imp:3p; +captais capter VER 9.89 9.59 0.01 0.27 ind:imp:1s;ind:imp:2s; +captait capter VER 9.89 9.59 0.11 0.47 ind:imp:3s; +captant capter VER 9.89 9.59 0.01 0.27 par:pre; +captation captation NOM f s 0.00 0.14 0.00 0.07 +captations captation NOM f p 0.00 0.14 0.00 0.07 +capte capter VER 9.89 9.59 3.84 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +captent capter VER 9.89 9.59 0.19 0.20 ind:pre:3p; +capter capter VER 9.89 9.59 1.95 3.85 inf; +capterai capter VER 9.89 9.59 0.04 0.00 ind:fut:1s; +capterais capter VER 9.89 9.59 0.01 0.14 cnd:pre:1s; +capterait capter VER 9.89 9.59 0.01 0.07 cnd:pre:3s; +capteront capter VER 9.89 9.59 0.01 0.07 ind:fut:3p; +capteur capteur NOM m s 2.79 0.00 1.10 0.00 +capteurs capteur NOM m p 2.79 0.00 1.69 0.00 +captez capter VER 9.89 9.59 0.62 0.00 imp:pre:2p;ind:pre:2p; +captieuse captieux ADJ f s 0.00 0.14 0.00 0.07 +captieux captieux ADJ m p 0.00 0.14 0.00 0.07 +captif captif ADJ m s 1.11 4.80 0.63 2.16 +captifs captif NOM m p 0.78 2.84 0.46 1.15 +captions capter VER 9.89 9.59 0.27 0.14 ind:imp:1p; +captiva captiver VER 1.35 4.73 0.03 0.07 ind:pas:3s; +captivaient captiver VER 1.35 4.73 0.00 0.27 ind:imp:3p; +captivait captiver VER 1.35 4.73 0.03 1.08 ind:imp:3s; +captivant captivant ADJ m s 0.87 1.55 0.62 0.95 +captivante captivant ADJ f s 0.87 1.55 0.22 0.41 +captivantes captivant ADJ f p 0.87 1.55 0.03 0.20 +captive captiver VER 1.35 4.73 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +captivent captiver VER 1.35 4.73 0.04 0.14 ind:pre:3p; +captiver captiver VER 1.35 4.73 0.14 0.47 inf; +captives captive NOM f p 0.06 0.00 0.06 0.00 +captivité captivité NOM f s 2.15 4.46 2.15 4.46 +captivèrent captiver VER 1.35 4.73 0.00 0.07 ind:pas:3p; +captivé captiver VER m s 1.35 4.73 0.27 1.49 par:pas; +captivée captiver VER f s 1.35 4.73 0.05 0.27 par:pas; +captivés captiver VER m p 1.35 4.73 0.34 0.14 par:pas; +captons capter VER 9.89 9.59 0.34 0.00 imp:pre:1p;ind:pre:1p; +capté capter VER m s 9.89 9.59 2.03 1.62 par:pas; +captée capter VER f s 9.89 9.59 0.22 0.41 par:pas; +captées capter VER f p 9.89 9.59 0.04 0.27 par:pas; +captura capturer VER 17.67 5.81 0.03 0.20 ind:pas:3s; +capturait capturer VER 17.67 5.81 0.02 0.27 ind:imp:3s; +capturant capturer VER 17.67 5.81 0.09 0.07 par:pre; +capture capture NOM f s 3.00 1.76 2.93 1.69 +capturent capturer VER 17.67 5.81 0.23 0.00 ind:pre:3p; +capturer capturer VER 17.67 5.81 6.17 1.82 inf; +capturera capturer VER 17.67 5.81 0.28 0.07 ind:fut:3s; +capturerait capturer VER 17.67 5.81 0.02 0.00 cnd:pre:3s; +captureras capturer VER 17.67 5.81 0.02 0.00 ind:fut:2s; +capturerez capturer VER 17.67 5.81 0.02 0.00 ind:fut:2p; +capturerons capturer VER 17.67 5.81 0.14 0.00 ind:fut:1p; +captureront capturer VER 17.67 5.81 0.02 0.00 ind:fut:3p; +captures capture NOM f p 3.00 1.76 0.07 0.07 +capturez capturer VER 17.67 5.81 0.51 0.00 imp:pre:2p;ind:pre:2p; +capturons capturer VER 17.67 5.81 0.07 0.00 imp:pre:1p;ind:pre:1p; +capturé capturer VER m s 17.67 5.81 6.33 2.09 par:pas; +capturée capturer VER f s 17.67 5.81 0.83 0.27 par:pas; +capturées capturer VER f p 17.67 5.81 0.09 0.20 par:pas; +capturés capturer VER m p 17.67 5.81 1.96 0.68 par:pas; +captés capter VER m p 9.89 9.59 0.20 0.20 par:pas; +capuccino capuccino NOM m s 0.27 0.14 0.27 0.14 +capuche capuche NOM f s 1.60 0.74 1.53 0.61 +capuches capuche NOM f p 1.60 0.74 0.07 0.14 +capuchon capuchon NOM m s 1.02 6.42 1.02 5.81 +capuchonnés capuchonner VER m p 0.00 0.07 0.00 0.07 par:pas; +capuchons capuchon NOM m p 1.02 6.42 0.00 0.61 +capucin capucin NOM m s 0.18 1.15 0.03 0.74 +capucinade capucinade NOM f s 0.00 0.14 0.00 0.07 +capucinades capucinade NOM f p 0.00 0.14 0.00 0.07 +capucine capucine NOM f s 0.13 1.22 0.00 0.27 +capucines capucine NOM f p 0.13 1.22 0.13 0.95 +capucino capucino NOM m 0.00 0.07 0.00 0.07 +capucins capucin NOM m p 0.18 1.15 0.14 0.41 +capulet capulet NOM m s 0.00 0.07 0.00 0.07 +caput_mortuum caput_mortuum NOM m s 0.00 0.07 0.00 0.07 +capétien capétien ADJ m s 0.00 0.34 0.00 0.20 +capétienne capétien ADJ f s 0.00 0.34 0.00 0.07 +capétiennes capétien ADJ f p 0.00 0.34 0.00 0.07 +caque caque NOM f s 0.12 0.54 0.12 0.41 +caquelon caquelon NOM m s 0.00 0.07 0.00 0.07 +caques caque NOM f p 0.12 0.54 0.00 0.14 +caquet caquet NOM m s 0.46 0.61 0.45 0.41 +caquetage caquetage NOM m s 0.14 1.22 0.04 0.74 +caquetages caquetage NOM m p 0.14 1.22 0.11 0.47 +caquetaient caqueter VER 0.53 1.55 0.00 0.54 ind:imp:3p; +caquetait caqueter VER 0.53 1.55 0.00 0.07 ind:imp:3s; +caquetant caqueter VER 0.53 1.55 0.01 0.20 par:pre; +caquetante caquetant ADJ f s 0.02 0.27 0.00 0.14 +caquetantes caquetant ADJ f p 0.02 0.27 0.01 0.07 +caqueter caqueter VER 0.53 1.55 0.31 0.14 inf; +caqueteuse caqueteur NOM f s 0.00 0.07 0.00 0.07 +caquets caquet NOM m p 0.46 0.61 0.01 0.20 +caquette caqueter VER 0.53 1.55 0.07 0.20 ind:pre:1s;ind:pre:3s; +caquettent caqueter VER 0.53 1.55 0.14 0.41 ind:pre:3p; +caquètement caquètement NOM m s 0.04 0.47 0.02 0.27 +caquètements caquètement NOM m p 0.04 0.47 0.01 0.20 +car car CON 237.20 469.32 237.20 469.32 +caraïbe caraïbe NOM s 0.16 0.14 0.10 0.00 +caraïbes caraïbe NOM p 0.16 0.14 0.06 0.14 +carabas carabas NOM m 0.00 0.20 0.00 0.20 +carabe carabe NOM m s 0.01 0.20 0.00 0.07 +carabes carabe NOM m p 0.01 0.20 0.01 0.14 +carabin carabin NOM m s 0.01 0.47 0.00 0.27 +carabine carabine NOM f s 2.71 11.15 2.08 10.07 +carabines carabine NOM f p 2.71 11.15 0.63 1.08 +carabinier carabinier NOM m s 2.91 1.69 0.96 0.20 +carabiniers carabinier NOM m p 2.91 1.69 1.94 1.49 +carabins carabin NOM m p 0.01 0.47 0.01 0.20 +carabiné carabiné ADJ m s 0.21 1.08 0.04 0.20 +carabinée carabiné ADJ f s 0.21 1.08 0.17 0.81 +carabinés carabiné ADJ m p 0.21 1.08 0.00 0.07 +carabosse carabosse NOM f s 0.12 1.62 0.12 1.62 +caracal caracal NOM m s 0.00 0.14 0.00 0.14 +caraco caraco NOM m s 0.28 1.01 0.14 0.81 +caracola caracoler VER 0.09 1.76 0.00 0.14 ind:pas:3s; +caracolade caracolade NOM f s 0.00 0.27 0.00 0.27 +caracolait caracoler VER 0.09 1.76 0.01 0.20 ind:imp:3s; +caracolant caracoler VER 0.09 1.76 0.01 0.27 par:pre; +caracole caracoler VER 0.09 1.76 0.03 0.27 ind:pre:1s;ind:pre:3s; +caracolent caracoler VER 0.09 1.76 0.01 0.27 ind:pre:3p; +caracoler caracoler VER 0.09 1.76 0.02 0.54 inf; +caracolerez caracoler VER 0.09 1.76 0.00 0.07 ind:fut:2p; +caracos caraco NOM m p 0.28 1.01 0.14 0.20 +caractère caractère NOM m s 18.86 62.16 17.22 47.50 +caractères caractère NOM m p 18.86 62.16 1.65 14.66 +caractériel caractériel ADJ m s 0.49 0.68 0.28 0.27 +caractérielle caractériel ADJ f s 0.49 0.68 0.02 0.14 +caractérielles caractériel ADJ f p 0.49 0.68 0.14 0.00 +caractériels caractériel ADJ m p 0.49 0.68 0.05 0.27 +caractérisait caractériser VER 0.91 3.58 0.15 0.47 ind:imp:3s; +caractérisant caractériser VER 0.91 3.58 0.01 0.00 par:pre; +caractérisation caractérisation NOM f s 0.01 0.00 0.01 0.00 +caractérise caractériser VER 0.91 3.58 0.25 2.16 ind:pre:3s; +caractérisent caractériser VER 0.91 3.58 0.04 0.20 ind:pre:3p; +caractériser caractériser VER 0.91 3.58 0.11 0.34 inf; +caractériserais caractériser VER 0.91 3.58 0.01 0.00 cnd:pre:1s; +caractériserait caractériser VER 0.91 3.58 0.00 0.07 cnd:pre:3s; +caractéristique caractéristique ADJ s 1.31 4.73 0.90 3.78 +caractéristiques caractéristique NOM f p 3.69 2.77 2.81 2.09 +caractérisé caractériser VER m s 0.91 3.58 0.29 0.20 par:pas; +caractérisée caractérisé ADJ f s 0.20 0.81 0.13 0.27 +caractérisées caractérisé ADJ f p 0.20 0.81 0.00 0.20 +caractérisés caractériser VER m p 0.91 3.58 0.01 0.00 par:pas; +caractérologie caractérologie NOM f s 0.00 0.07 0.00 0.07 +caracul caracul NOM m s 0.27 0.00 0.27 0.00 +carafe carafe NOM f s 1.04 5.47 1.02 4.46 +carafes carafe NOM f p 1.04 5.47 0.02 1.01 +carafon carafon NOM m s 0.16 0.68 0.01 0.61 +carafons carafon NOM m p 0.16 0.68 0.15 0.07 +caramba caramba ONO 0.77 0.07 0.77 0.07 +carambar carambar NOM m s 0.43 0.34 0.30 0.14 +carambars carambar NOM m p 0.43 0.34 0.13 0.20 +carambolage carambolage NOM m s 0.48 0.47 0.31 0.34 +carambolages carambolage NOM m p 0.48 0.47 0.17 0.14 +carambolaient caramboler VER 0.02 0.95 0.00 0.14 ind:imp:3p; +carambolait caramboler VER 0.02 0.95 0.00 0.07 ind:imp:3s; +carambole caramboler VER 0.02 0.95 0.01 0.20 ind:pre:1s;ind:pre:3s; +carambolent caramboler VER 0.02 0.95 0.00 0.07 ind:pre:3p; +caramboler caramboler VER 0.02 0.95 0.01 0.41 inf; +caramboles carambole NOM f p 0.14 0.07 0.14 0.00 +carambolé caramboler VER m s 0.02 0.95 0.00 0.07 par:pas; +carambouillage carambouillage NOM m s 0.00 0.14 0.00 0.14 +carambouille carambouille NOM f s 0.00 0.27 0.00 0.27 +carambouilleurs carambouilleur NOM m p 0.00 0.20 0.00 0.20 +carambouillé carambouiller VER m s 0.00 0.07 0.00 0.07 par:pas; +caramel caramel NOM m s 2.76 3.38 1.56 2.30 +caramels caramel NOM m p 2.76 3.38 1.20 1.08 +caramélisait caraméliser VER 0.17 0.27 0.00 0.07 ind:imp:3s; +caramélise caraméliser VER 0.17 0.27 0.01 0.14 ind:pre:3s; +caraméliser caraméliser VER 0.17 0.27 0.01 0.00 inf; +caramélisé caraméliser VER m s 0.17 0.27 0.14 0.07 par:pas; +caramélisée caramélisé ADJ f s 0.11 0.27 0.02 0.00 +caramélisées caramélisé ADJ f p 0.11 0.27 0.04 0.00 +caramélisés caramélisé ADJ m p 0.11 0.27 0.03 0.07 +carapace carapace NOM f s 1.25 8.38 1.22 6.62 +carapaces carapace NOM f p 1.25 8.38 0.04 1.76 +carapatait carapater VER 0.14 1.01 0.00 0.07 ind:imp:3s; +carapate carapater VER 0.14 1.01 0.02 0.34 ind:pre:1s;ind:pre:3s; +carapatent carapater VER 0.14 1.01 0.01 0.07 ind:pre:3p; +carapater carapater VER 0.14 1.01 0.01 0.41 inf; +carapaté carapater VER m s 0.14 1.01 0.10 0.07 par:pas; +carapatés carapater VER m p 0.14 1.01 0.00 0.07 par:pas; +caraque caraque NOM f s 0.00 0.20 0.00 0.20 +carat carat NOM m s 1.46 2.23 0.14 1.15 +carats carat NOM m p 1.46 2.23 1.33 1.08 +caravane caravane NOM f s 11.64 6.76 10.34 5.14 +caravanes caravane NOM f p 11.64 6.76 1.30 1.62 +caravanier caravanier NOM m s 0.41 1.22 0.41 0.07 +caravaniers caravanier NOM m p 0.41 1.22 0.00 0.74 +caravaning caravaning NOM m s 0.13 0.20 0.13 0.14 +caravanings caravaning NOM m p 0.13 0.20 0.00 0.07 +caravanière caravanier NOM f s 0.41 1.22 0.00 0.34 +caravanières caravanier NOM f p 0.41 1.22 0.00 0.07 +caravansérail caravansérail NOM m s 0.14 0.81 0.00 0.54 +caravansérails caravansérail NOM m p 0.14 0.81 0.14 0.27 +caravelle caravelle NOM f s 0.32 0.95 0.31 0.20 +caravelles caravelle NOM f p 0.32 0.95 0.01 0.74 +carbets carbet NOM m p 0.00 0.07 0.00 0.07 +carboglace carboglace NOM m s 0.05 0.00 0.05 0.00 +carbonade carbonade NOM f s 0.14 0.00 0.14 0.00 +carbonari carbonari NOM m s 0.00 0.07 0.00 0.07 +carbonate carbonate NOM m s 0.08 0.14 0.08 0.14 +carbone carbone NOM m s 3.18 1.82 3.15 1.62 +carbones carbone NOM m p 3.18 1.82 0.04 0.20 +carbonique carbonique ADJ s 0.89 0.81 0.79 0.74 +carboniques carbonique ADJ m p 0.89 0.81 0.10 0.07 +carbonisa carboniser VER 1.25 2.50 0.00 0.07 ind:pas:3s; +carbonisant carboniser VER 1.25 2.50 0.00 0.07 par:pre; +carbonisation carbonisation NOM f s 0.03 0.00 0.03 0.00 +carboniser carboniser VER 1.25 2.50 0.10 0.34 inf; +carbonisé carboniser VER m s 1.25 2.50 0.60 0.61 par:pas; +carbonisée carboniser VER f s 1.25 2.50 0.10 0.27 par:pas; +carbonisées carboniser VER f p 1.25 2.50 0.13 0.41 par:pas; +carbonisés carboniser VER m p 1.25 2.50 0.32 0.74 par:pas; +carboné carboné ADJ m s 0.01 0.00 0.01 0.00 +carboxyhémoglobine carboxyhémoglobine NOM f s 0.04 0.00 0.04 0.00 +carburaient carburer VER 0.85 1.22 0.01 0.07 ind:imp:3p; +carburais carburer VER 0.85 1.22 0.00 0.07 ind:imp:1s; +carburait carburer VER 0.85 1.22 0.00 0.34 ind:imp:3s; +carburant carburant NOM m s 5.67 1.69 5.56 1.35 +carburants carburant NOM m p 5.67 1.69 0.11 0.34 +carburateur carburateur NOM m s 1.11 1.22 1.05 1.15 +carburateurs carburateur NOM m p 1.11 1.22 0.05 0.07 +carburation carburation NOM f s 0.02 0.14 0.02 0.14 +carbure carburer VER 0.85 1.22 0.43 0.27 ind:pre:1s;ind:pre:3s; +carburent carburer VER 0.85 1.22 0.02 0.07 ind:pre:3p; +carburer carburer VER 0.85 1.22 0.17 0.14 inf; +carburez carburer VER 0.85 1.22 0.02 0.00 imp:pre:2p; +carburé carburer VER m s 0.85 1.22 0.01 0.14 par:pas; +carcajou carcajou NOM m s 0.00 0.07 0.00 0.07 +carcan carcan NOM m s 0.29 4.19 0.28 2.77 +carcans carcan NOM m p 0.29 4.19 0.01 1.42 +carcasse carcasse NOM f s 2.58 13.85 1.89 10.41 +carcasses carcasse NOM f p 2.58 13.85 0.69 3.45 +carcharodon carcharodon NOM m s 0.03 0.00 0.03 0.00 +carcinoïde carcinoïde ADJ s 0.01 0.00 0.01 0.00 +carcinoïde carcinoïde NOM m s 0.01 0.00 0.01 0.00 +carcinome carcinome NOM m s 0.13 0.00 0.13 0.00 +carcéral carcéral ADJ m s 1.11 2.30 0.52 1.15 +carcérale carcéral ADJ f s 1.11 2.30 0.45 0.81 +carcérales carcéral ADJ f p 1.11 2.30 0.14 0.14 +carcéraux carcéral ADJ m p 1.11 2.30 0.00 0.20 +cardage cardage NOM m s 0.00 0.14 0.00 0.14 +cardait carder VER 0.08 1.35 0.00 0.27 ind:imp:3s; +cardamome cardamome NOM f s 0.19 0.34 0.19 0.27 +cardamomes cardamome NOM f p 0.19 0.34 0.00 0.07 +cardan cardan NOM m s 0.23 0.34 0.21 0.34 +cardans cardan NOM m p 0.23 0.34 0.02 0.00 +cardant carder VER 0.08 1.35 0.00 0.27 par:pre; +carde carde NOM f s 0.01 0.27 0.01 0.20 +carder carder VER 0.08 1.35 0.07 0.27 inf; +carderai carder VER 0.08 1.35 0.00 0.07 ind:fut:1s; +carderie carderie NOM f s 0.00 0.20 0.00 0.20 +cardes carde NOM f p 0.01 0.27 0.00 0.07 +cardeur cardeur NOM m s 0.01 1.01 0.01 0.20 +cardeuse cardeur NOM f s 0.01 1.01 0.00 0.14 +cardeuses cardeur NOM f p 0.01 1.01 0.00 0.68 +cardia cardia NOM m s 0.01 0.00 0.01 0.00 +cardiaque cardiaque ADJ s 20.55 3.72 18.34 3.04 +cardiaques cardiaque ADJ p 20.55 3.72 2.21 0.68 +cardigan cardigan NOM m s 0.47 0.61 0.40 0.47 +cardigans cardigan NOM m p 0.47 0.61 0.06 0.14 +cardinal_archevêque cardinal_archevêque NOM m s 0.02 0.07 0.02 0.07 +cardinal_légat cardinal_légat NOM m s 0.00 0.07 0.00 0.07 +cardinal cardinal NOM m s 5.18 6.62 4.78 4.80 +cardinale cardinal ADJ f s 1.09 4.12 0.42 0.68 +cardinales cardinal ADJ f p 1.09 4.12 0.02 0.20 +cardinalice cardinalice ADJ f s 0.01 0.14 0.01 0.07 +cardinalices cardinalice ADJ f p 0.01 0.14 0.00 0.07 +cardinaux cardinal NOM m p 5.18 6.62 0.40 1.82 +cardio_pulmonaire cardio_pulmonaire ADJ s 0.07 0.00 0.07 0.00 +cardio_respiratoire cardio_respiratoire ADJ f s 0.10 0.00 0.10 0.00 +cardio_vasculaire cardio_vasculaire ADJ s 0.14 0.07 0.14 0.07 +cardioïde cardioïde ADJ s 0.00 0.07 0.00 0.07 +cardiogramme cardiogramme NOM m s 0.11 0.00 0.11 0.00 +cardiographe cardiographe NOM m s 0.01 0.00 0.01 0.00 +cardiographie cardiographie NOM f s 0.01 0.00 0.01 0.00 +cardiologie cardiologie NOM f s 0.82 0.00 0.82 0.00 +cardiologue cardiologue NOM s 1.23 0.27 1.17 0.27 +cardiologues cardiologue NOM p 1.23 0.27 0.06 0.00 +cardiomégalie cardiomégalie NOM f s 0.04 0.00 0.04 0.00 +cardiomyopathie cardiomyopathie NOM f s 0.09 0.00 0.09 0.00 +cardiotonique cardiotonique ADJ s 0.11 0.00 0.11 0.00 +cardiovasculaire cardiovasculaire ADJ s 0.24 0.00 0.24 0.00 +cardite cardite NOM f s 0.01 0.00 0.01 0.00 +cardium cardium NOM m s 0.00 0.07 0.00 0.07 +cardon cardon NOM m s 0.06 1.15 0.06 0.07 +cardons cardon NOM m p 0.06 1.15 0.00 1.08 +cardères carder NOM f p 0.00 0.07 0.00 0.07 +cardé carder VER m s 0.08 1.35 0.00 0.34 par:pas; +cardée carder VER f s 0.08 1.35 0.00 0.07 par:pas; +cardés carder VER m p 0.08 1.35 0.00 0.07 par:pas; +care care NOM f s 1.42 0.14 1.42 0.14 +carence carence NOM f s 1.06 1.76 0.91 1.49 +carences carence NOM f p 1.06 1.76 0.15 0.27 +caressa caresser VER 15.69 83.72 0.13 9.46 ind:pas:3s; +caressai caresser VER 15.69 83.72 0.00 0.74 ind:pas:1s; +caressaient caresser VER 15.69 83.72 0.03 2.23 ind:imp:3p; +caressais caresser VER 15.69 83.72 0.49 2.03 ind:imp:1s;ind:imp:2s; +caressait caresser VER 15.69 83.72 0.57 14.46 ind:imp:3s; +caressant caresser VER 15.69 83.72 1.13 8.18 par:pre; +caressante caressant ADJ f s 0.23 4.26 0.13 1.55 +caressantes caressant ADJ f p 0.23 4.26 0.01 0.54 +caressants caressant ADJ m p 0.23 4.26 0.01 0.61 +caresse caresser VER 15.69 83.72 4.60 14.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +caressent caresser VER 15.69 83.72 0.44 1.62 ind:pre:3p; +caresser caresser VER 15.69 83.72 5.66 18.24 inf; +caressera caresser VER 15.69 83.72 0.04 0.20 ind:fut:3s; +caresserai caresser VER 15.69 83.72 0.03 0.07 ind:fut:1s; +caresseraient caresser VER 15.69 83.72 0.00 0.07 cnd:pre:3p; +caresserait caresser VER 15.69 83.72 0.10 0.20 cnd:pre:3s; +caresserez caresser VER 15.69 83.72 0.00 0.07 ind:fut:2p; +caresseront caresser VER 15.69 83.72 0.01 0.14 ind:fut:3p; +caresses caresse NOM f p 5.32 33.04 3.11 16.89 +caresseurs caresseur ADJ m p 0.00 0.07 0.00 0.07 +caresseuse caresseur NOM f s 0.00 0.20 0.00 0.07 +caresseuses caresseur NOM f p 0.00 0.20 0.00 0.14 +caressez caresser VER 15.69 83.72 0.53 0.20 imp:pre:2p;ind:pre:2p; +caressions caresser VER 15.69 83.72 0.01 0.20 ind:imp:1p; +caressât caresser VER 15.69 83.72 0.00 0.14 sub:imp:3s; +caressèrent caresser VER 15.69 83.72 0.00 0.27 ind:pas:3p; +caressé caresser VER m s 15.69 83.72 0.68 5.81 par:pas; +caressée caresser VER f s 15.69 83.72 0.27 2.70 par:pas; +caressées caresser VER f p 15.69 83.72 0.00 0.34 par:pas; +caressés caresser VER m p 15.69 83.72 0.04 1.15 par:pas; +caret caret NOM m s 0.00 0.14 0.00 0.14 +carex carex NOM m 0.00 0.20 0.00 0.20 +cargaison cargaison NOM f s 7.57 4.26 6.82 3.18 +cargaisons cargaison NOM f p 7.57 4.26 0.75 1.08 +cargo cargo NOM m s 5.17 7.09 4.18 3.99 +cargos cargo NOM m p 5.17 7.09 0.99 3.11 +cargua carguer VER 0.03 0.47 0.00 0.14 ind:pas:3s; +carguent carguer VER 0.03 0.47 0.00 0.07 ind:pre:3p; +carguer carguer VER 0.03 0.47 0.00 0.07 inf; +carguez carguer VER 0.03 0.47 0.03 0.00 imp:pre:2p; +carguée carguer VER f s 0.03 0.47 0.00 0.07 par:pas; +carguées carguer VER f p 0.03 0.47 0.00 0.14 par:pas; +cari cari NOM m s 0.08 0.95 0.08 0.07 +cariatide cariatide NOM f s 0.00 0.54 0.00 0.34 +cariatides cariatide NOM f p 0.00 0.54 0.00 0.20 +caribou caribou NOM m s 0.91 0.20 0.74 0.14 +caribous caribou NOM m p 0.91 0.20 0.17 0.07 +caribéenne caribéen ADJ f s 0.03 0.00 0.03 0.00 +caricatural caricatural ADJ m s 0.04 2.09 0.04 1.22 +caricaturale caricatural ADJ f s 0.04 2.09 0.01 0.61 +caricaturales caricatural ADJ f p 0.04 2.09 0.00 0.20 +caricaturaux caricatural ADJ m p 0.04 2.09 0.00 0.07 +caricature caricature NOM f s 1.68 6.49 1.58 4.26 +caricaturer caricaturer VER 0.09 0.27 0.02 0.07 inf; +caricatures caricature NOM f p 1.68 6.49 0.10 2.23 +caricaturiste caricaturiste NOM s 0.02 0.54 0.02 0.27 +caricaturistes caricaturiste NOM p 0.02 0.54 0.00 0.27 +caricaturé caricaturer VER m s 0.09 0.27 0.02 0.00 par:pas; +caricaturées caricaturer VER f p 0.09 0.27 0.01 0.07 par:pas; +caricaturés caricaturer VER m p 0.09 0.27 0.02 0.07 par:pas; +carie carie NOM f s 0.89 1.15 0.38 0.61 +carien carien ADJ m s 0.50 0.07 0.50 0.07 +carier carier VER 0.12 0.07 0.01 0.00 inf; +caries carie NOM f p 0.89 1.15 0.51 0.54 +carillon carillon NOM m s 1.67 5.88 1.56 5.54 +carillonnaient carillonner VER 0.41 1.35 0.00 0.14 ind:imp:3p; +carillonnait carillonner VER 0.41 1.35 0.00 0.14 ind:imp:3s; +carillonnant carillonner VER 0.41 1.35 0.00 0.14 par:pre; +carillonne carillonner VER 0.41 1.35 0.00 0.14 ind:pre:3s; +carillonnent carillonner VER 0.41 1.35 0.16 0.07 ind:pre:3p; +carillonner carillonner VER 0.41 1.35 0.25 0.61 inf; +carillonnes carillonner VER 0.41 1.35 0.00 0.07 ind:pre:2s; +carillonneur carillonneur NOM m s 0.01 0.07 0.00 0.07 +carillonneuse carillonneur NOM f s 0.01 0.07 0.01 0.00 +carillonné carillonner VER m s 0.41 1.35 0.00 0.07 par:pas; +carillonnées carillonné ADJ f p 0.00 0.41 0.00 0.27 +carillonnés carillonné ADJ m p 0.00 0.41 0.00 0.07 +carillons carillon NOM m p 1.67 5.88 0.12 0.34 +carioca carioca ADJ m s 0.14 0.00 0.14 0.00 +caris cari NOM m p 0.08 0.95 0.00 0.88 +carissime carissime ADJ s 0.00 0.07 0.00 0.07 +cariste cariste NOM s 0.04 0.00 0.04 0.00 +caritatif caritatif ADJ m s 0.57 0.27 0.12 0.07 +caritatifs caritatif ADJ m p 0.57 0.27 0.02 0.07 +caritative caritatif ADJ f s 0.57 0.27 0.33 0.07 +caritatives caritatif ADJ f p 0.57 0.27 0.11 0.07 +carié carié ADJ m s 0.40 0.47 0.00 0.14 +cariée carié ADJ f s 0.40 0.47 0.27 0.07 +cariées carié ADJ f p 0.40 0.47 0.13 0.27 +carlin carlin NOM m s 0.96 0.47 0.86 0.34 +carlines carline NOM f p 0.00 0.07 0.00 0.07 +carlingue carlingue NOM f s 0.23 2.77 0.22 2.36 +carlingues carlingue NOM f p 0.23 2.77 0.01 0.41 +carlins carlin NOM m p 0.96 0.47 0.10 0.14 +carlisme carlisme NOM m s 0.20 0.00 0.20 0.00 +carliste carliste ADJ f s 0.70 0.00 0.60 0.00 +carlistes carliste ADJ p 0.70 0.00 0.10 0.00 +carma carmer VER 0.01 1.01 0.01 0.00 ind:pas:3s; +carmagnole carmagnole NOM f s 0.00 0.54 0.00 0.47 +carmagnoles carmagnole NOM f p 0.00 0.54 0.00 0.07 +carmant carmer VER 0.01 1.01 0.00 0.07 par:pre; +carme carme NOM m s 0.14 0.61 0.00 0.14 +carmel carmel NOM m s 0.28 0.20 0.28 0.20 +carmer carmer VER 0.01 1.01 0.00 0.68 inf; +carmes carme NOM m p 0.14 0.61 0.14 0.47 +carmin carmin NOM m s 0.26 0.81 0.26 0.68 +carmina carminer VER 0.23 0.07 0.01 0.00 ind:pas:3s; +carmine carminer VER 0.23 0.07 0.22 0.00 imp:pre:2s;ind:pre:3s; +carmins carmin NOM m p 0.26 0.81 0.00 0.14 +carminé carminé ADJ m s 0.00 0.74 0.00 0.07 +carminée carminé ADJ f s 0.00 0.74 0.00 0.20 +carminées carminé ADJ f p 0.00 0.74 0.00 0.34 +carminés carminé ADJ m p 0.00 0.74 0.00 0.14 +carmé carmer VER m s 0.01 1.01 0.00 0.14 par:pas; +carmée carmer VER f s 0.01 1.01 0.00 0.14 par:pas; +carmélite carmélite NOM f s 0.40 1.35 0.28 0.68 +carmélites carmélite NOM f p 0.40 1.35 0.12 0.68 +carnage carnage NOM m s 5.59 3.38 5.46 3.18 +carnages carnage NOM m p 5.59 3.38 0.14 0.20 +carnassier carnassier NOM m s 0.04 2.09 0.02 0.74 +carnassiers carnassier ADJ m p 0.03 1.82 0.03 0.27 +carnassière carnassier NOM f s 0.04 2.09 0.01 0.34 +carnassières carnassier NOM f p 0.04 2.09 0.00 0.14 +carnation carnation NOM f s 0.30 1.08 0.30 1.08 +carnaval carnaval NOM m s 7.86 5.81 7.83 5.68 +carnavalesque carnavalesque ADJ s 0.01 0.20 0.01 0.20 +carnavals carnaval NOM m p 7.86 5.81 0.03 0.14 +carne carne NOM f s 1.21 2.77 1.09 2.03 +carnes carne NOM f p 1.21 2.77 0.12 0.74 +carnet carnet NOM m s 13.23 31.82 11.06 24.66 +carnets carnet NOM m p 13.23 31.82 2.17 7.16 +carnier carnier NOM m s 0.27 0.27 0.27 0.20 +carniers carnier NOM m p 0.27 0.27 0.00 0.07 +carnivore carnivore ADJ s 0.64 1.01 0.25 0.47 +carnivores carnivore ADJ p 0.64 1.01 0.39 0.54 +carné carné ADJ m s 0.02 0.27 0.00 0.07 +carnée carné ADJ f s 0.02 0.27 0.00 0.07 +carnées carné ADJ f p 0.02 0.27 0.01 0.07 +carnés carné ADJ m p 0.02 0.27 0.01 0.07 +carogne carogne NOM f s 0.14 0.00 0.14 0.00 +carole carole NOM f s 0.00 0.07 0.00 0.07 +caroline carolin ADJ f s 0.03 0.61 0.03 0.14 +carolines carolin ADJ f p 0.03 0.61 0.00 0.14 +carolingien carolingien ADJ m s 0.00 0.20 0.00 0.07 +carolingienne carolingien ADJ f s 0.00 0.20 0.00 0.07 +carolingiens carolingien ADJ m p 0.00 0.20 0.00 0.07 +carolins carolin ADJ m p 0.03 0.61 0.00 0.34 +carolus carolus NOM m 0.10 0.00 0.10 0.00 +caronades caronade NOM f p 0.01 0.14 0.01 0.14 +caroncule caroncule NOM f s 0.01 0.14 0.01 0.14 +carotide carotide NOM f s 0.84 1.28 0.78 0.88 +carotides carotide NOM f p 0.84 1.28 0.06 0.41 +carotidien carotidien ADJ m s 0.12 0.00 0.09 0.00 +carotidienne carotidien ADJ f s 0.12 0.00 0.03 0.00 +carottage carottage NOM m s 0.02 0.00 0.02 0.00 +carottait carotter VER 0.14 0.41 0.00 0.07 ind:imp:3s; +carotte carotte NOM f s 7.12 8.31 2.45 2.97 +carottent carotter VER 0.14 0.41 0.00 0.07 ind:pre:3p; +carotter carotter VER 0.14 0.41 0.03 0.07 inf; +carotterait carotter VER 0.14 0.41 0.00 0.07 cnd:pre:3s; +carottes carotte NOM f p 7.12 8.31 4.67 5.34 +carotteur carotteur ADJ m s 0.12 0.00 0.10 0.00 +carotteuse carotteur ADJ f s 0.12 0.00 0.02 0.00 +carotène carotène NOM m s 0.01 0.00 0.01 0.00 +carottier carottier ADJ m s 0.01 0.00 0.01 0.00 +carotté carotter VER m s 0.14 0.41 0.06 0.00 par:pas; +carottés carotter VER m p 0.14 0.41 0.00 0.07 par:pas; +caroube caroube NOM f s 0.13 0.07 0.13 0.07 +caroubier caroubier NOM m s 0.01 0.34 0.01 0.14 +caroubiers caroubier NOM m p 0.01 0.34 0.00 0.20 +caroublant caroubler VER 0.00 0.14 0.00 0.07 par:pre; +carouble carouble NOM f s 0.00 0.74 0.00 0.07 +caroubler caroubler VER 0.00 0.14 0.00 0.07 inf; +caroubles carouble NOM f p 0.00 0.74 0.00 0.68 +caroubleur caroubleur NOM m s 0.00 0.14 0.00 0.14 +carousse carousse NOM f s 0.00 0.07 0.00 0.07 +carpaccio carpaccio NOM m s 0.18 0.00 0.18 0.00 +carpe carpe NOM s 2.87 3.85 2.42 2.77 +carpes carpe NOM f p 2.87 3.85 0.45 1.08 +carpette carpette NOM f s 0.35 2.36 0.32 2.09 +carpettes carpette NOM f p 0.35 2.36 0.03 0.27 +carpien carpien ADJ m s 0.26 0.00 0.23 0.00 +carpienne carpien ADJ f s 0.26 0.00 0.03 0.00 +carpillon carpillon NOM m s 0.00 0.27 0.00 0.27 +carpé carpé ADJ m s 0.02 0.14 0.02 0.14 +carquois carquois NOM m 0.34 0.68 0.34 0.68 +carra carrer VER 1.13 6.55 0.00 0.47 ind:pas:3s; +carraient carrer VER 1.13 6.55 0.00 0.14 ind:imp:3p; +carrais carrer VER 1.13 6.55 0.00 0.14 ind:imp:1s; +carrait carrer VER 1.13 6.55 0.00 0.14 ind:imp:3s; +carrant carrer VER 1.13 6.55 0.00 0.27 par:pre; +carrare carrare NOM m s 0.00 0.07 0.00 0.07 +carre carrer VER 1.13 6.55 0.17 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +carreau carreau NOM m s 8.10 41.69 4.34 13.51 +carreaux carreau NOM m p 8.10 41.69 3.75 28.18 +carrefour carrefour NOM m s 5.40 35.95 5.00 30.34 +carrefours carrefour NOM m p 5.40 35.95 0.40 5.61 +carrelage carrelage NOM m s 2.40 13.18 2.39 12.36 +carrelages carrelage NOM m p 2.40 13.18 0.01 0.81 +carrelait carreler VER 0.22 3.24 0.00 0.07 ind:imp:3s; +carrelant carreler VER 0.22 3.24 0.01 0.00 par:pre; +carreler carreler VER 0.22 3.24 0.17 0.07 inf; +carrelet carrelet NOM m s 0.05 1.82 0.04 1.69 +carrelets carrelet NOM m p 0.05 1.82 0.01 0.14 +carreleur carreleur NOM m s 0.14 0.34 0.14 0.20 +carreleurs carreleur NOM m p 0.14 0.34 0.00 0.14 +carrelé carreler VER m s 0.22 3.24 0.02 1.62 par:pas; +carrelée carreler VER f s 0.22 3.24 0.02 1.01 par:pas; +carrelées carreler VER f p 0.22 3.24 0.00 0.20 par:pas; +carrelés carreler VER m p 0.22 3.24 0.00 0.27 par:pas; +carrent carrer VER 1.13 6.55 0.00 0.07 ind:pre:3p; +carrer carrer VER 1.13 6.55 0.32 0.88 inf; +carrerais carrer VER 1.13 6.55 0.01 0.00 cnd:pre:1s; +carres carrer VER 1.13 6.55 0.03 0.00 ind:pre:2s;sub:pre:2s; +carrick carrick NOM m s 0.28 0.00 0.28 0.00 +carrier carrier NOM m s 0.01 0.74 0.01 0.47 +carriers carrier NOM m p 0.01 0.74 0.00 0.27 +carriole carriole NOM f s 1.42 10.47 1.25 8.38 +carrioles carriole NOM f p 1.42 10.47 0.17 2.09 +carrière carrière NOM s 36.54 36.15 35.23 33.04 +carrières carrière NOM f p 36.54 36.15 1.31 3.11 +carriérisme carriérisme NOM m s 0.01 0.00 0.01 0.00 +carriériste carriériste NOM s 0.39 0.00 0.34 0.00 +carriéristes carriériste NOM p 0.39 0.00 0.04 0.00 +carron carron NOM m s 0.01 0.00 0.01 0.00 +carrossable carrossable ADJ s 0.14 0.54 0.00 0.47 +carrossables carrossable ADJ f p 0.14 0.54 0.14 0.07 +carrosse carrosse NOM m s 2.77 4.05 2.59 3.72 +carrosser carrosser VER 0.03 0.34 0.00 0.07 inf; +carrosserie carrosserie NOM f s 1.45 6.55 1.22 5.61 +carrosseries carrosserie NOM f p 1.45 6.55 0.23 0.95 +carrosses carrosse NOM m p 2.77 4.05 0.18 0.34 +carrossier carrossier NOM m s 0.04 0.27 0.02 0.20 +carrossiers carrossier NOM m p 0.04 0.27 0.02 0.07 +carrossée carrosser VER f s 0.03 0.34 0.02 0.20 par:pas; +carrossées carrosser VER f p 0.03 0.34 0.00 0.07 par:pas; +carrousel carrousel NOM m s 0.42 2.50 0.40 2.36 +carrousels carrousel NOM m p 0.42 2.50 0.03 0.14 +carré carré NOM m s 3.85 32.23 3.48 25.07 +carrée carré ADJ f s 4.92 27.77 0.84 10.07 +carrées carrer VER f p 1.13 6.55 0.08 0.20 par:pas; +carrément carrément ADV 9.99 16.55 9.99 16.55 +carrure carrure NOM f s 0.94 4.53 0.94 4.39 +carrures carrure NOM f p 0.94 4.53 0.00 0.14 +carrés carré ADJ m p 4.92 27.77 1.36 6.49 +carry carry NOM m s 0.61 0.20 0.61 0.20 +cars car NOM m p 14.84 19.86 0.64 3.99 +carta carter VER 0.30 0.20 0.01 0.14 ind:pas:3s; +cartable cartable NOM m s 1.58 11.28 1.54 9.32 +cartables cartable NOM m p 1.58 11.28 0.04 1.96 +carte_clé carte_clé NOM f s 0.03 0.00 0.03 0.00 +carte_lettre carte_lettre NOM f s 0.00 0.41 0.00 0.34 +carte carte NOM f s 144.96 111.42 96.11 60.95 +cartel cartel NOM m s 2.04 0.81 1.75 0.61 +cartels cartel NOM m p 2.04 0.81 0.28 0.20 +carter carter NOM m s 1.14 0.34 1.12 0.34 +carterie carterie NOM f s 0.07 0.00 0.07 0.00 +carters carter NOM m p 1.14 0.34 0.01 0.00 +carte_lettre carte_lettre NOM f p 0.00 0.41 0.00 0.07 +cartes carte NOM f p 144.96 111.42 48.84 50.47 +carthaginois carthaginois NOM m 0.04 0.27 0.04 0.27 +carthaginoise carthaginois ADJ f s 0.04 0.07 0.01 0.07 +carthame carthame NOM m s 0.02 0.00 0.02 0.00 +carène carène NOM f s 0.11 0.54 0.11 0.34 +carènes carène NOM f p 0.11 0.54 0.00 0.20 +cartilage cartilage NOM m s 0.84 1.42 0.75 0.68 +cartilages cartilage NOM m p 0.84 1.42 0.09 0.74 +cartilagineuse cartilagineux ADJ f s 0.07 0.14 0.02 0.14 +cartilagineuses cartilagineux ADJ f p 0.07 0.14 0.03 0.00 +cartilagineux cartilagineux ADJ m p 0.07 0.14 0.02 0.00 +cartographe cartographe NOM s 0.16 0.61 0.11 0.27 +cartographes cartographe NOM p 0.16 0.61 0.05 0.34 +cartographie cartographie NOM f s 0.37 0.34 0.37 0.34 +cartographient cartographier VER 0.10 0.07 0.00 0.07 ind:pre:3p; +cartographier cartographier VER 0.10 0.07 0.02 0.00 inf; +cartographique cartographique ADJ s 0.26 0.20 0.18 0.07 +cartographiques cartographique ADJ p 0.26 0.20 0.07 0.14 +cartographié cartographier VER m s 0.10 0.07 0.07 0.00 par:pas; +cartographiés cartographier VER m p 0.10 0.07 0.01 0.00 par:pas; +cartomancie cartomancie NOM f s 0.01 0.00 0.01 0.00 +cartomancien cartomancien NOM m s 0.16 1.15 0.00 0.14 +cartomancienne cartomancien NOM f s 0.16 1.15 0.16 0.88 +cartomanciennes cartomancien NOM f p 0.16 1.15 0.00 0.14 +carton_pâte carton_pâte NOM m s 0.17 1.28 0.17 1.28 +carton carton NOM m s 16.01 44.86 10.92 34.80 +cartonnage cartonnage NOM m s 0.00 0.54 0.00 0.14 +cartonnages cartonnage NOM m p 0.00 0.54 0.00 0.41 +cartonnant cartonner VER 2.02 2.16 0.00 0.07 par:pre; +cartonne cartonner VER 2.02 2.16 0.32 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cartonnent cartonner VER 2.02 2.16 0.05 0.00 ind:pre:3p; +cartonner cartonner VER 2.02 2.16 1.09 0.41 inf; +cartonneuse cartonneux ADJ f s 0.00 0.47 0.00 0.20 +cartonneuses cartonneux ADJ f p 0.00 0.47 0.00 0.07 +cartonneux cartonneux ADJ m 0.00 0.47 0.00 0.20 +cartonnier cartonnier NOM m s 0.00 0.34 0.00 0.20 +cartonniers cartonnier NOM m p 0.00 0.34 0.00 0.14 +cartonné cartonner VER m s 2.02 2.16 0.54 0.47 par:pas; +cartonnée cartonner VER f s 2.02 2.16 0.03 0.41 par:pas; +cartonnées cartonner VER f p 2.02 2.16 0.00 0.27 par:pas; +cartonnés cartonner VER m p 2.02 2.16 0.00 0.41 par:pas; +cartons carton NOM m p 16.01 44.86 5.09 10.07 +cartoon cartoon NOM m s 0.76 0.07 0.43 0.00 +cartoons cartoon NOM m p 0.76 0.07 0.33 0.07 +cartothèque cartothèque NOM f s 0.10 0.00 0.10 0.00 +cartouche cartouche NOM s 5.81 9.53 1.76 2.91 +cartoucherie cartoucherie NOM f s 0.00 0.07 0.00 0.07 +cartouches cartouche NOM p 5.81 9.53 4.05 6.62 +cartouchière cartouchière NOM f s 0.17 2.16 0.04 0.47 +cartouchières cartouchière NOM f p 0.17 2.16 0.14 1.69 +carté carter VER m s 0.30 0.20 0.00 0.07 par:pas; +cartulaires cartulaire NOM m p 0.00 0.14 0.00 0.14 +cartésianisme cartésianisme NOM m s 0.00 0.20 0.00 0.20 +cartésien cartésien ADJ m s 0.06 0.68 0.01 0.34 +cartésienne cartésien ADJ f s 0.06 0.68 0.04 0.20 +cartésiennes cartésien ADJ f p 0.06 0.68 0.00 0.07 +cartésiens cartésien ADJ m p 0.06 0.68 0.00 0.07 +carême_prenant carême_prenant NOM m s 0.00 0.07 0.00 0.07 +carême carême NOM m s 0.25 1.96 0.25 1.82 +carêmes carême NOM m p 0.25 1.96 0.00 0.14 +carénage carénage NOM m s 0.04 0.41 0.04 0.34 +carénages carénage NOM m p 0.04 0.41 0.00 0.07 +caréner caréner VER 0.01 0.14 0.01 0.00 inf; +caréné caréné ADJ m s 0.00 0.07 0.00 0.07 +carénées caréner VER f p 0.01 0.14 0.00 0.07 par:pas; +carvi carvi NOM m s 0.04 0.00 0.04 0.00 +cary cary NOM m s 0.01 0.00 0.01 0.00 +caryatides caryatide NOM f p 0.00 0.07 0.00 0.07 +caryotype caryotype NOM m s 0.04 0.00 0.04 0.00 +cas cas NOM m 280.59 217.36 280.59 217.36 +casa casa NOM f s 1.49 2.57 1.49 2.57 +casablancaises casablancais ADJ f p 0.00 0.07 0.00 0.07 +casaient caser VER 4.76 7.70 0.01 0.07 ind:imp:3p; +casait caser VER 4.76 7.70 0.01 0.27 ind:imp:3s; +casanier casanier ADJ m s 0.46 0.81 0.20 0.47 +casaniers casanier ADJ m p 0.46 0.81 0.13 0.07 +casanière casanier ADJ f s 0.46 0.81 0.13 0.20 +casanières casanier ADJ f p 0.46 0.81 0.01 0.07 +casant caser VER 4.76 7.70 0.00 0.07 par:pre; +casaque casaque NOM f s 0.45 2.84 0.18 2.16 +casaques casaque NOM f p 0.45 2.84 0.27 0.68 +casaquin casaquin NOM m s 0.00 0.14 0.00 0.14 +casas caser VER 4.76 7.70 0.11 0.47 ind:pas:2s; +casbah casbah NOM f s 1.76 4.32 1.76 4.32 +cascadaient cascader VER 0.27 1.62 0.00 0.20 ind:imp:3p; +cascadait cascader VER 0.27 1.62 0.00 0.34 ind:imp:3s; +cascadant cascader VER 0.27 1.62 0.00 0.07 par:pre; +cascadas cascader VER 0.27 1.62 0.00 0.07 ind:pas:2s; +cascade cascade NOM f s 4.41 11.55 3.19 7.30 +cascadent cascader VER 0.27 1.62 0.00 0.20 ind:pre:3p; +cascader cascader VER 0.27 1.62 0.27 0.20 inf; +cascades cascade NOM f p 4.41 11.55 1.22 4.26 +cascadeur cascadeur NOM m s 2.81 0.27 1.88 0.14 +cascadeurs cascadeur NOM m p 2.81 0.27 0.65 0.14 +cascadeuse cascadeur NOM f s 2.81 0.27 0.28 0.00 +cascadèrent cascader VER 0.27 1.62 0.00 0.07 ind:pas:3p; +cascadé cascader VER m s 0.27 1.62 0.00 0.07 par:pas; +cascara cascara NOM f s 0.04 0.00 0.04 0.00 +cascatelle cascatelle NOM f s 0.00 0.14 0.00 0.07 +cascatelles cascatelle NOM f p 0.00 0.14 0.00 0.07 +cascher cascher ADJ 0.03 0.00 0.03 0.00 +case case NOM f s 5.18 14.53 4.41 9.46 +casemate casemate NOM f s 0.01 3.18 0.00 1.55 +casemates casemate NOM f p 0.01 3.18 0.01 1.62 +casent caser VER 4.76 7.70 0.02 0.07 ind:pre:3p; +caser caser VER 4.76 7.70 2.12 3.78 ind:pre:2p;inf; +caserai caser VER 4.76 7.70 0.04 0.07 ind:fut:1s; +caserais caser VER 4.76 7.70 0.03 0.07 cnd:pre:1s; +caserait caser VER 4.76 7.70 0.05 0.00 cnd:pre:3s; +caserne caserne NOM f s 8.99 16.49 7.97 12.03 +casernement casernement NOM m s 0.01 0.68 0.01 0.41 +casernements casernement NOM m p 0.01 0.68 0.00 0.27 +caserner caserner VER 0.01 0.34 0.00 0.07 inf; +casernes caserne NOM f p 8.99 16.49 1.03 4.46 +caserné caserner VER m s 0.01 0.34 0.01 0.07 par:pas; +casernés caserner VER m p 0.01 0.34 0.00 0.20 par:pas; +cases case NOM f p 5.18 14.53 0.78 5.07 +casette casette NOM f s 0.06 0.00 0.05 0.00 +casettes casette NOM f p 0.06 0.00 0.01 0.00 +cash cash ADV 7.25 0.61 7.25 0.61 +casher casher ADJ s 0.53 0.07 0.53 0.07 +cashmere cashmere NOM m s 0.46 0.34 0.46 0.34 +casier casier NOM m s 17.81 8.11 15.82 4.46 +casiers casier NOM m p 17.81 8.11 1.98 3.65 +casimir casimir NOM m s 0.01 0.27 0.01 0.27 +casino casino NOM m s 12.75 10.81 10.89 9.80 +casinos casino NOM m p 12.75 10.81 1.86 1.01 +casoar casoar NOM m s 0.14 0.61 0.13 0.41 +casoars casoar NOM m p 0.14 0.61 0.01 0.20 +caspiennes caspienne ADJ f p 0.01 0.00 0.01 0.00 +casquaient casquer VER 1.92 6.69 0.00 0.07 ind:imp:3p; +casquais casquer VER 1.92 6.69 0.01 0.07 ind:imp:1s;ind:imp:2s; +casquait casquer VER 1.92 6.69 0.01 0.14 ind:imp:3s; +casquant casquer VER 1.92 6.69 0.01 0.20 par:pre; +casque casque NOM m s 15.42 29.19 12.11 21.62 +casquent casquer VER 1.92 6.69 0.02 0.00 ind:pre:3p; +casquer casquer VER 1.92 6.69 1.25 1.89 inf; +casquera casquer VER 1.92 6.69 0.02 0.07 ind:fut:3s; +casqueras casquer VER 1.92 6.69 0.00 0.07 ind:fut:2s; +casqueront casquer VER 1.92 6.69 0.00 0.07 ind:fut:3p; +casques casque NOM m p 15.42 29.19 3.32 7.57 +casquette casquette NOM f s 9.73 38.58 8.64 34.39 +casquettes casquette NOM f p 9.73 38.58 1.09 4.19 +casquettiers casquettier NOM m p 0.00 0.07 0.00 0.07 +casquettés casquetté ADJ m p 0.00 0.07 0.00 0.07 +casquez casquer VER 1.92 6.69 0.21 0.14 imp:pre:2p;ind:pre:2p; +casqué casquer VER m s 1.92 6.69 0.11 1.42 par:pas; +casquée casqué ADJ f s 0.12 4.46 0.00 0.61 +casquées casqué ADJ f p 0.12 4.46 0.01 0.34 +casqués casqué ADJ m p 0.12 4.46 0.04 2.57 +cassa casser VER 160.61 92.70 0.12 4.73 ind:pas:3s; +cassable cassable ADJ s 0.02 0.20 0.01 0.14 +cassables cassable ADJ m p 0.02 0.20 0.01 0.07 +cassage cassage NOM m s 0.16 0.54 0.14 0.41 +cassages cassage NOM m p 0.16 0.54 0.03 0.14 +cassai casser VER 160.61 92.70 0.00 0.20 ind:pas:1s; +cassaient casser VER 160.61 92.70 0.12 1.89 ind:imp:3p; +cassais casser VER 160.61 92.70 0.64 0.68 ind:imp:1s;ind:imp:2s; +cassait casser VER 160.61 92.70 0.75 3.78 ind:imp:3s; +cassandre cassandre NOM m s 0.06 0.07 0.06 0.07 +cassant casser VER 160.61 92.70 0.59 2.64 par:pre; +cassante cassant ADJ f s 0.35 2.77 0.04 0.88 +cassantes cassant ADJ f p 0.35 2.77 0.00 0.41 +cassants cassant ADJ m p 0.35 2.77 0.02 0.27 +cassate cassate NOM f s 0.00 0.07 0.00 0.07 +cassation cassation NOM f s 0.85 0.95 0.85 0.88 +cassations cassation NOM f p 0.85 0.95 0.00 0.07 +casse_bonbon casse_bonbon NOM m p 0.10 0.00 0.10 0.00 +casse_burnes casse_burnes NOM m 0.05 0.00 0.05 0.00 +casse_cou casse_cou ADJ s 0.35 0.54 0.35 0.54 +casse_couilles casse_couilles NOM m 1.47 0.20 1.47 0.20 +casse_croûte casse_croûte NOM m s 1.54 4.46 1.52 4.32 +casse_croûte casse_croûte NOM m p 1.54 4.46 0.02 0.14 +casse_cul casse_cul ADJ 0.01 0.00 0.01 0.00 +casse_dalle casse_dalle NOM m 0.29 0.95 0.28 0.81 +casse_dalle casse_dalle NOM m p 0.29 0.95 0.01 0.14 +casse_graine casse_graine NOM m 0.00 0.95 0.00 0.95 +casse_gueule casse_gueule NOM m 0.10 0.07 0.10 0.07 +casse_noisette casse_noisette NOM m s 0.22 0.41 0.22 0.41 +casse_noisettes casse_noisettes NOM m 0.13 0.27 0.13 0.27 +casse_noix casse_noix NOM m 0.12 0.20 0.12 0.20 +casse_pattes casse_pattes NOM m 0.03 0.20 0.03 0.20 +casse_pieds casse_pieds ADJ s 0.87 1.22 0.87 1.22 +casse_pipe casse_pipe NOM m s 0.50 0.74 0.50 0.74 +casse_pipes casse_pipes NOM m 0.02 0.20 0.02 0.20 +casse_tête casse_tête NOM m 0.69 0.88 0.69 0.88 +casse casser VER 160.61 92.70 41.32 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cassement cassement NOM m s 0.00 0.20 0.00 0.14 +cassements cassement NOM m p 0.00 0.20 0.00 0.07 +cassent casser VER 160.61 92.70 3.78 2.50 ind:pre:3p; +casser casser VER 160.61 92.70 36.24 30.14 inf; +cassera casser VER 160.61 92.70 1.47 0.81 ind:fut:3s; +casserai casser VER 160.61 92.70 1.58 0.74 ind:fut:1s; +casseraient casser VER 160.61 92.70 0.04 0.07 cnd:pre:3p; +casserais casser VER 160.61 92.70 0.42 0.41 cnd:pre:1s;cnd:pre:2s; +casserait casser VER 160.61 92.70 0.51 0.61 cnd:pre:3s; +casseras casser VER 160.61 92.70 0.35 0.27 ind:fut:2s; +casserez casser VER 160.61 92.70 0.05 0.00 ind:fut:2p; +casseriez casser VER 160.61 92.70 0.03 0.00 cnd:pre:2p; +casserole casserole NOM f s 4.95 22.84 2.91 16.22 +casseroles casserole NOM f p 4.95 22.84 2.05 6.62 +casserolée casserolée NOM f s 0.00 0.34 0.00 0.27 +casserolées casserolée NOM f p 0.00 0.34 0.00 0.07 +casserons casser VER 160.61 92.70 0.01 0.07 ind:fut:1p; +casseront casser VER 160.61 92.70 0.25 0.27 ind:fut:3p; +casses casser VER 160.61 92.70 7.47 1.55 ind:pre:2s;sub:pre:2s; +cassetins cassetin NOM m p 0.00 0.07 0.00 0.07 +cassette cassette NOM f s 32.40 6.42 23.55 4.05 +cassettes cassette NOM f p 32.40 6.42 8.86 2.36 +casseur casseur NOM m s 1.46 3.18 0.71 1.76 +casseurs casseur NOM m p 1.46 3.18 0.68 1.28 +casseuse casseur NOM f s 1.46 3.18 0.07 0.07 +casseuses casseuse NOM f p 0.01 0.07 0.01 0.00 +cassez casser VER 160.61 92.70 7.91 1.08 imp:pre:2p;ind:pre:2p; +cassier cassier NOM m s 0.00 0.07 0.00 0.07 +cassiez casser VER 160.61 92.70 0.07 0.07 ind:imp:2p; +cassine cassine NOM f s 0.00 1.55 0.00 1.55 +cassis cassis NOM m 0.67 3.18 0.67 3.18 +cassitérite cassitérite NOM f s 0.00 0.07 0.00 0.07 +cassolette cassolette NOM f s 0.01 0.68 0.01 0.20 +cassolettes cassolette NOM f p 0.01 0.68 0.00 0.47 +cassonade cassonade NOM f s 0.32 0.07 0.32 0.07 +cassons casser VER 160.61 92.70 2.13 0.07 imp:pre:1p;ind:pre:1p; +cassoulet cassoulet NOM m s 0.52 1.62 0.52 1.62 +cassèrent casser VER 160.61 92.70 0.00 0.47 ind:pas:3p; +cassé casser VER m s 160.61 92.70 42.71 15.88 par:pas; +cassée casser VER f s 160.61 92.70 9.30 4.12 par:pas; +cassées cassé ADJ f p 22.07 22.84 1.85 3.11 +cassure cassure NOM f s 0.51 3.78 0.44 2.50 +cassures cassure NOM f p 0.51 3.78 0.07 1.28 +cassés cassé ADJ m p 22.07 22.84 2.14 4.05 +castagnait castagner VER 0.10 0.68 0.00 0.14 ind:imp:3s; +castagne castagne NOM f s 0.15 0.95 0.15 0.95 +castagnent castagner VER 0.10 0.68 0.00 0.20 ind:pre:3p; +castagner castagner VER 0.10 0.68 0.04 0.27 inf; +castagnes castagner VER 0.10 0.68 0.03 0.00 ind:pre:2s; +castagnette castagnette NOM f s 0.99 2.57 0.00 0.07 +castagnettes castagnette NOM f p 0.99 2.57 0.99 2.50 +castagné castagner VER m s 0.10 0.68 0.03 0.07 par:pas; +castard castard NOM m s 0.01 0.00 0.01 0.00 +caste caste NOM f s 0.73 4.19 0.50 3.38 +castel castel NOM m s 0.14 1.08 0.14 1.08 +castelet castelet NOM m s 0.00 0.07 0.00 0.07 +castes caste NOM f p 0.73 4.19 0.23 0.81 +castillan castillan NOM m s 0.38 0.61 0.38 0.34 +castillane castillan ADJ f s 0.23 0.81 0.00 0.27 +castillanes castillan ADJ f p 0.23 0.81 0.00 0.07 +castillans castillan ADJ m p 0.23 0.81 0.00 0.07 +castille castille NOM f s 0.01 0.00 0.01 0.00 +castine castine NOM f s 0.07 0.07 0.07 0.07 +casting casting NOM m s 3.03 0.20 2.99 0.20 +castings casting NOM m p 3.03 0.20 0.04 0.00 +castor castor NOM m s 2.86 1.76 2.40 1.08 +castors castor NOM m p 2.86 1.76 0.46 0.68 +castrat castrat NOM m s 0.09 0.41 0.06 0.14 +castrateur castrateur ADJ m s 0.08 0.34 0.01 0.00 +castration castration NOM f s 0.47 1.28 0.47 1.28 +castratrice castratrice ADJ f s 0.07 0.00 0.07 0.00 +castratrices castrateur ADJ f p 0.08 0.34 0.04 0.07 +castrats castrat NOM m p 0.09 0.41 0.03 0.27 +castrer castrer VER 1.58 0.47 0.47 0.14 inf; +castreur castreur NOM m s 0.00 0.20 0.00 0.14 +castreurs castreur NOM m p 0.00 0.20 0.00 0.07 +castrez castrer VER 1.58 0.47 0.04 0.00 imp:pre:2p; +castrisme castrisme NOM m s 0.14 0.00 0.14 0.00 +castriste castriste ADJ f s 0.04 0.07 0.02 0.07 +castristes castriste ADJ m p 0.04 0.07 0.02 0.00 +castrons castrer VER 1.58 0.47 0.01 0.00 imp:pre:1p; +castré castrer VER m s 1.58 0.47 0.97 0.27 par:pas; +castrée castrer VER f s 1.58 0.47 0.01 0.00 par:pas; +castrés castrer VER m p 1.58 0.47 0.07 0.07 par:pas; +casé caser VER m s 4.76 7.70 0.73 0.74 par:pas; +casée caser VER f s 4.76 7.70 0.31 0.41 par:pas; +casuel casuel NOM m s 0.00 0.41 0.00 0.41 +casées caser VER f p 4.76 7.70 0.01 0.14 par:pas; +caséeuse caséeux ADJ f s 0.00 0.07 0.00 0.07 +caséine caséine NOM f s 0.14 0.00 0.14 0.00 +casuistes casuiste NOM m p 0.00 0.07 0.00 0.07 +casuistique casuistique NOM f s 0.01 0.41 0.01 0.41 +casuistiques casuistique ADJ p 0.00 0.20 0.00 0.07 +casus_belli casus_belli NOM m 0.05 0.00 0.05 0.00 +casés caser VER m p 4.76 7.70 0.33 0.34 par:pas; +cata cata NOM f s 0.61 0.34 0.61 0.34 +catabolique catabolique ADJ m s 0.01 0.00 0.01 0.00 +catachrèse catachrèse NOM f s 0.01 0.07 0.01 0.07 +cataclysme cataclysme NOM m s 0.69 5.27 0.62 4.26 +cataclysmes cataclysme NOM m p 0.69 5.27 0.06 1.01 +cataclysmique cataclysmique ADJ s 0.17 0.20 0.13 0.14 +cataclysmiques cataclysmique ADJ p 0.17 0.20 0.04 0.07 +catacombe catacombe NOM f s 2.04 1.96 0.00 0.20 +catacombes catacombe NOM f p 2.04 1.96 2.04 1.76 +catadioptre catadioptre NOM m s 0.00 0.14 0.00 0.07 +catadioptres catadioptre NOM m p 0.00 0.14 0.00 0.07 +catafalque catafalque NOM m s 0.01 1.69 0.01 1.49 +catafalques catafalque NOM m p 0.01 1.69 0.00 0.20 +catalan catalan NOM m s 1.09 0.54 0.96 0.20 +catalane catalan ADJ f s 0.74 0.81 0.37 0.20 +catalanes catalan ADJ f p 0.74 0.81 0.00 0.14 +catalans catalan ADJ m p 0.74 0.81 0.14 0.27 +catalauniques catalaunique ADJ m p 0.01 0.20 0.01 0.20 +catalepsie catalepsie NOM f s 0.51 0.61 0.51 0.47 +catalepsies catalepsie NOM f p 0.51 0.61 0.00 0.14 +cataleptique cataleptique ADJ s 0.23 0.47 0.23 0.47 +cataleptiques cataleptique NOM p 0.00 0.14 0.00 0.07 +catalogage catalogage NOM m s 0.02 0.00 0.02 0.00 +catalogne catalogne NOM f s 0.00 0.07 0.00 0.07 +cataloguais cataloguer VER 1.11 2.50 0.00 0.07 ind:imp:1s; +cataloguant cataloguer VER 1.11 2.50 0.01 0.00 par:pre; +catalogue catalogue NOM m s 4.87 7.16 3.89 5.61 +cataloguent cataloguer VER 1.11 2.50 0.01 0.07 ind:pre:3p; +cataloguer cataloguer VER 1.11 2.50 0.23 0.27 inf; +cataloguerai cataloguer VER 1.11 2.50 0.02 0.00 ind:fut:1s; +catalogues catalogue NOM m p 4.87 7.16 0.98 1.55 +cataloguiez cataloguer VER 1.11 2.50 0.00 0.07 ind:imp:2p; +catalogué cataloguer VER m s 1.11 2.50 0.25 0.81 par:pas; +cataloguée cataloguer VER f s 1.11 2.50 0.18 0.34 par:pas; +cataloguées cataloguer VER f p 1.11 2.50 0.04 0.27 par:pas; +catalogués cataloguer VER m p 1.11 2.50 0.06 0.41 par:pas; +catalpa catalpa NOM m s 0.00 0.47 0.00 0.27 +catalpas catalpa NOM m p 0.00 0.47 0.00 0.20 +catalyser catalyser VER 0.07 0.00 0.05 0.00 inf; +catalyses catalyse NOM f p 0.00 0.07 0.00 0.07 +catalyseur catalyseur NOM m s 1.31 0.20 1.23 0.07 +catalyseurs catalyseur NOM m p 1.31 0.20 0.08 0.14 +catalysé catalyser VER m s 0.07 0.00 0.01 0.00 par:pas; +catalytique catalytique ADJ m s 0.16 0.00 0.14 0.00 +catalytiques catalytique ADJ m p 0.16 0.00 0.01 0.00 +catamaran catamaran NOM m s 0.18 0.27 0.18 0.27 +cataphotes cataphote NOM m p 0.00 0.14 0.00 0.14 +cataplasme cataplasme NOM m s 0.35 1.49 0.08 1.22 +cataplasmes cataplasme NOM m p 0.35 1.49 0.28 0.27 +cataplexie cataplexie NOM f s 0.02 0.00 0.02 0.00 +catapulta catapulter VER 0.29 1.62 0.01 0.07 ind:pas:3s; +catapultait catapulter VER 0.29 1.62 0.00 0.07 ind:imp:3s; +catapulte catapulte NOM f s 1.42 0.74 0.16 0.27 +catapulter catapulter VER 0.29 1.62 0.04 0.14 inf; +catapultera catapulter VER 0.29 1.62 0.01 0.00 ind:fut:3s; +catapultes catapulte NOM f p 1.42 0.74 1.25 0.47 +catapulté catapulter VER m s 0.29 1.62 0.14 0.47 par:pas; +catapultée catapulter VER f s 0.29 1.62 0.02 0.27 par:pas; +catapultées catapulter VER f p 0.29 1.62 0.00 0.07 par:pas; +catapultés catapulter VER m p 0.29 1.62 0.00 0.20 par:pas; +cataracte cataracte NOM f s 0.54 3.51 0.51 2.50 +cataractes cataracte NOM f p 0.54 3.51 0.03 1.01 +catarrhal catarrhal ADJ m s 0.00 0.07 0.00 0.07 +catarrhe catarrhe NOM m s 0.02 0.14 0.02 0.14 +catarrheuse catarrheux ADJ f s 0.00 0.34 0.00 0.07 +catarrheux catarrheux ADJ m 0.00 0.34 0.00 0.27 +catastropha catastropher VER 0.16 0.81 0.00 0.07 ind:pas:3s; +catastrophait catastropher VER 0.16 0.81 0.00 0.07 ind:imp:3s; +catastrophas catastropher VER 0.16 0.81 0.00 0.07 ind:pas:2s; +catastrophe catastrophe NOM f s 16.47 30.14 14.71 22.91 +catastropher catastropher VER 0.16 0.81 0.10 0.00 inf; +catastrophes catastrophe NOM f p 16.47 30.14 1.76 7.23 +catastrophique catastrophique ADJ s 2.78 3.72 1.77 3.24 +catastrophiquement catastrophiquement ADV 0.00 0.14 0.00 0.14 +catastrophiques catastrophique ADJ p 2.78 3.72 1.01 0.47 +catastrophisme catastrophisme NOM m s 0.00 0.07 0.00 0.07 +catastrophiste catastrophiste ADJ s 0.01 0.00 0.01 0.00 +catastrophé catastropher VER m s 0.16 0.81 0.04 0.41 par:pas; +catastrophée catastropher VER f s 0.16 0.81 0.02 0.20 par:pas; +catatonie catatonie NOM f s 0.19 0.00 0.19 0.00 +catatonique catatonique ADJ s 0.37 0.07 0.37 0.07 +catatoniques catatonique NOM p 0.05 0.00 0.03 0.00 +catch catch NOM m s 2.47 0.88 2.47 0.88 +catcher catcher VER 0.50 0.07 0.33 0.00 inf; +catcheur catcheur NOM m s 0.76 0.41 0.60 0.27 +catcheurs catcheur NOM m p 0.76 0.41 0.10 0.07 +catcheuse catcheur NOM f s 0.76 0.41 0.04 0.00 +catcheuses catcheur NOM f p 0.76 0.41 0.02 0.07 +catché catcher VER m s 0.50 0.07 0.17 0.07 par:pas; +caterpillar caterpillar NOM m 0.03 0.00 0.03 0.00 +catgut catgut NOM m s 0.05 0.14 0.05 0.07 +catguts catgut NOM m p 0.05 0.14 0.00 0.07 +cathare cathare ADJ m s 0.00 0.47 0.00 0.14 +cathares cathare NOM m p 0.00 0.68 0.00 0.61 +catharsis catharsis NOM f 0.23 0.07 0.23 0.07 +cathartique cathartique ADJ s 0.19 0.07 0.19 0.07 +catherinette catherinette NOM f s 0.00 0.07 0.00 0.07 +cathexis cathexis NOM f 0.01 0.00 0.01 0.00 +catho catho NOM s 1.19 0.95 1.01 0.41 +cathode cathode NOM f s 0.32 0.00 0.32 0.00 +cathodique cathodique ADJ s 0.19 0.20 0.18 0.07 +cathodiques cathodique ADJ m p 0.19 0.20 0.01 0.14 +catholicisme catholicisme NOM m s 0.77 2.43 0.77 2.43 +catholicité catholicité NOM f s 0.00 0.20 0.00 0.20 +catholique catholique ADJ s 13.26 27.03 10.91 21.28 +catholiquement catholiquement ADV 0.00 0.14 0.00 0.14 +catholiques catholique NOM p 5.28 13.99 2.71 8.04 +cathos catho NOM p 1.19 0.95 0.18 0.54 +cathèdre cathèdre NOM f s 0.00 0.20 0.00 0.07 +cathèdres cathèdre NOM f p 0.00 0.20 0.00 0.14 +cathédral cathédral ADJ m s 0.00 0.07 0.00 0.07 +cathédrale cathédrale NOM f s 4.67 21.28 3.24 17.23 +cathédrales cathédrale NOM f p 4.67 21.28 1.43 4.05 +cathéter cathéter NOM m s 0.73 0.00 0.73 0.00 +cathétérisme cathétérisme NOM m s 0.01 0.00 0.01 0.00 +cati cati NOM m s 0.70 0.00 0.70 0.00 +catiche catiche NOM m s 0.00 0.07 0.00 0.07 +catin catin NOM f s 2.83 1.49 2.21 1.28 +catins catin NOM f p 2.83 1.49 0.63 0.20 +cation cation NOM m s 0.01 0.00 0.01 0.00 +cato cato NOM f s 1.00 0.00 1.00 0.00 +catoblépas catoblépas NOM m 0.00 0.07 0.00 0.07 +catogan catogan NOM m s 0.04 0.54 0.03 0.47 +catogans catogan NOM m p 0.04 0.54 0.01 0.07 +cattleyas cattleya NOM m p 0.00 0.07 0.00 0.07 +caté caté NOM m s 0.06 0.07 0.06 0.07 +catéchisme catéchisme NOM m s 2.36 4.93 2.36 4.80 +catéchismes catéchisme NOM m p 2.36 4.93 0.00 0.14 +catéchiste catéchiste NOM s 0.23 0.14 0.23 0.14 +catéchisée catéchiser VER f s 0.00 0.14 0.00 0.14 par:pas; +catécholamine catécholamine NOM f s 0.01 0.00 0.01 0.00 +catéchèse catéchèse NOM f s 0.00 0.07 0.00 0.07 +catéchumène catéchumène NOM s 0.00 0.34 0.00 0.14 +catéchumènes catéchumène NOM p 0.00 0.34 0.00 0.20 +catégorie catégorie NOM f s 6.28 13.24 5.19 8.31 +catégories catégorie NOM f p 6.28 13.24 1.09 4.93 +catégorique catégorique ADJ s 1.13 5.47 1.08 4.80 +catégoriquement catégoriquement ADV 0.70 1.69 0.70 1.69 +catégoriques catégorique ADJ p 1.13 5.47 0.04 0.68 +catégorisation catégorisation NOM f s 0.03 0.00 0.03 0.00 +catégorise catégoriser VER 0.08 0.07 0.03 0.00 imp:pre:2s;ind:pre:3s; +catégoriser catégoriser VER 0.08 0.07 0.02 0.07 inf; +catégorisé catégoriser VER m s 0.08 0.07 0.03 0.00 par:pas; +caténaire caténaire NOM f s 0.17 0.20 0.17 0.00 +caténaires caténaire NOM f p 0.17 0.20 0.00 0.20 +caucasien caucasien ADJ m s 0.81 0.68 0.59 0.14 +caucasienne caucasien ADJ f s 0.81 0.68 0.22 0.34 +caucasiens caucasien NOM m p 0.19 0.14 0.03 0.14 +caucasique caucasique ADJ s 0.03 0.00 0.03 0.00 +cauchemar cauchemar NOM m s 36.94 26.62 26.80 19.66 +cauchemardais cauchemarder VER 0.08 0.41 0.00 0.07 ind:imp:1s; +cauchemarde cauchemarder VER 0.08 0.41 0.02 0.00 ind:pre:1s; +cauchemarder cauchemarder VER 0.08 0.41 0.04 0.27 inf; +cauchemardes cauchemarder VER 0.08 0.41 0.00 0.07 ind:pre:2s; +cauchemardesque cauchemardesque ADJ s 0.41 0.27 0.36 0.14 +cauchemardesques cauchemardesque ADJ f p 0.41 0.27 0.04 0.14 +cauchemardeuse cauchemardeux ADJ f s 0.00 0.20 0.00 0.07 +cauchemardeuses cauchemardeux ADJ f p 0.00 0.20 0.00 0.07 +cauchemardeux cauchemardeux ADJ m 0.00 0.20 0.00 0.07 +cauchemardé cauchemarder VER m s 0.08 0.41 0.02 0.00 par:pas; +cauchemars cauchemar NOM m p 36.94 26.62 10.14 6.96 +cauchois cauchois ADJ m 0.00 0.27 0.00 0.14 +cauchoise cauchois NOM f s 0.00 0.07 0.00 0.07 +cauchoises cauchois ADJ f p 0.00 0.27 0.00 0.14 +caudal caudal ADJ m s 0.06 0.20 0.04 0.00 +caudale caudal ADJ f s 0.06 0.20 0.02 0.14 +caudales caudal ADJ f p 0.06 0.20 0.00 0.07 +caudebec caudebec NOM m s 0.00 0.14 0.00 0.14 +caudillo caudillo NOM m s 0.00 0.07 0.00 0.07 +caudines caudines ADJ f p 0.00 0.07 0.00 0.07 +cauri cauri NOM m s 0.00 0.74 0.00 0.07 +cauris cauri NOM m p 0.00 0.74 0.00 0.68 +causa causer VER 63.65 69.93 0.38 1.28 ind:pas:3s; +causai causer VER 63.65 69.93 0.01 0.14 ind:pas:1s; +causaient causer VER 63.65 69.93 0.25 2.57 ind:imp:3p; +causais causer VER 63.65 69.93 0.25 0.74 ind:imp:1s;ind:imp:2s; +causait causer VER 63.65 69.93 0.99 6.55 ind:imp:3s; +causal causal ADJ m s 0.01 0.14 0.01 0.14 +causaliste causaliste ADJ s 0.00 0.07 0.00 0.07 +causalité causalité NOM f s 0.23 0.34 0.23 0.20 +causalités causalité NOM f p 0.23 0.34 0.00 0.14 +causant causer VER 63.65 69.93 1.15 1.76 par:pre; +causante causant ADJ f s 0.51 1.96 0.20 0.20 +causantes causant ADJ f p 0.51 1.96 0.00 0.07 +causants causant ADJ m p 0.51 1.96 0.01 0.20 +cause cause NOM f s 218.60 197.30 213.51 188.04 +causent causer VER 63.65 69.93 1.47 2.36 ind:pre:3p; +causer causer VER 63.65 69.93 15.46 18.31 inf; +causera causer VER 63.65 69.93 1.59 0.20 ind:fut:3s; +causerai causer VER 63.65 69.93 0.25 0.14 ind:fut:1s; +causeraient causer VER 63.65 69.93 0.01 0.14 cnd:pre:3p; +causerais causer VER 63.65 69.93 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +causerait causer VER 63.65 69.93 0.91 0.61 cnd:pre:3s; +causeras causer VER 63.65 69.93 0.16 0.00 ind:fut:2s; +causerez causer VER 63.65 69.93 0.08 0.27 ind:fut:2p; +causerie causerie NOM f s 0.30 2.09 0.18 1.01 +causeries causerie NOM f p 0.30 2.09 0.12 1.08 +causerions causer VER 63.65 69.93 0.01 0.14 cnd:pre:1p; +causerons causer VER 63.65 69.93 0.03 0.14 ind:fut:1p; +causeront causer VER 63.65 69.93 0.12 0.00 ind:fut:3p; +causes cause NOM f p 218.60 197.30 5.08 9.26 +causette causette NOM f s 0.71 1.76 0.69 1.62 +causettes causette NOM f p 0.71 1.76 0.02 0.14 +causeur causeur ADJ m s 0.29 0.14 0.29 0.14 +causeurs causeur NOM m p 0.58 0.68 0.00 0.07 +causeuse causeur NOM f s 0.58 0.68 0.05 0.14 +causeuses causeur NOM f p 0.58 0.68 0.40 0.14 +causez causer VER 63.65 69.93 1.24 0.54 imp:pre:2p;ind:pre:2p; +causiez causer VER 63.65 69.93 0.04 0.07 ind:imp:2p; +causions causer VER 63.65 69.93 0.29 1.01 ind:imp:1p; +causâmes causer VER 63.65 69.93 0.00 0.61 ind:pas:1p; +causons causer VER 63.65 69.93 0.58 0.95 imp:pre:1p;ind:pre:1p; +causse causse NOM m s 0.00 0.95 0.00 0.74 +caussenard caussenard ADJ m s 0.00 0.07 0.00 0.07 +causses causse NOM m p 0.00 0.95 0.00 0.20 +causèrent causer VER 63.65 69.93 0.03 0.47 ind:pas:3p; +causticité causticité NOM f s 0.00 0.07 0.00 0.07 +caustique caustique ADJ s 0.36 1.15 0.34 1.15 +caustiques caustique ADJ f p 0.36 1.15 0.02 0.00 +causé causer VER m s 63.65 69.93 14.06 9.66 imp:pre:2s;par:pas;par:pas; +causée causer VER f s 63.65 69.93 2.11 1.49 par:pas; +causées causer VER f p 63.65 69.93 0.94 0.95 par:pas; +causés causer VER m p 63.65 69.93 1.47 1.35 par:pas; +cauteleuse cauteleux ADJ f s 0.00 1.01 0.00 0.20 +cauteleusement cauteleusement ADV 0.00 0.20 0.00 0.20 +cauteleuses cauteleux ADJ f p 0.00 1.01 0.00 0.07 +cauteleux cauteleux ADJ m s 0.00 1.01 0.00 0.74 +caution caution NOM f s 10.88 2.23 10.71 2.23 +cautionnaire cautionnaire NOM s 0.14 0.00 0.14 0.00 +cautionnait cautionner VER 0.93 0.27 0.00 0.07 ind:imp:3s; +cautionne cautionner VER 0.93 0.27 0.20 0.00 ind:pre:1s;ind:pre:3s; +cautionnement cautionnement NOM m s 0.02 0.00 0.02 0.00 +cautionnent cautionner VER 0.93 0.27 0.02 0.07 ind:pre:3p; +cautionner cautionner VER 0.93 0.27 0.27 0.07 inf; +cautionnerait cautionner VER 0.93 0.27 0.02 0.00 cnd:pre:3s; +cautionnes cautionner VER 0.93 0.27 0.06 0.00 ind:pre:2s; +cautionnez cautionner VER 0.93 0.27 0.04 0.00 imp:pre:2p;ind:pre:2p; +cautionné cautionner VER m s 0.93 0.27 0.31 0.00 par:pas; +cautionnée cautionner VER f s 0.93 0.27 0.00 0.07 par:pas; +cautions caution NOM f p 10.88 2.23 0.17 0.00 +cautèle cautèle NOM f s 0.00 0.27 0.00 0.14 +cautèles cautèle NOM f p 0.00 0.27 0.00 0.14 +cautère cautère NOM m s 0.13 0.54 0.12 0.41 +cautères cautère NOM m p 0.13 0.54 0.01 0.14 +cautérisant cautériser VER 0.58 0.41 0.01 0.00 par:pre; +cautérisation cautérisation NOM f s 0.03 0.07 0.03 0.07 +cautérise cautériser VER 0.58 0.41 0.05 0.14 imp:pre:2s;ind:pre:3s; +cautériser cautériser VER 0.58 0.41 0.32 0.27 inf; +cautérisée cautériser VER f s 0.58 0.41 0.04 0.00 par:pas; +cautérisées cautériser VER f p 0.58 0.41 0.16 0.00 par:pas; +cava caver VER 0.17 0.27 0.17 0.00 ind:pas:3s; +cavaillon cavaillon NOM m s 0.00 0.34 0.00 0.34 +cavalaient cavaler VER 2.12 8.99 0.00 0.54 ind:imp:3p; +cavalais cavaler VER 2.12 8.99 0.14 0.20 ind:imp:1s;ind:imp:2s; +cavalait cavaler VER 2.12 8.99 0.15 0.27 ind:imp:3s; +cavalant cavaler VER 2.12 8.99 0.01 0.74 par:pre; +cavalcadaient cavalcader VER 0.00 0.68 0.00 0.14 ind:imp:3p; +cavalcadait cavalcader VER 0.00 0.68 0.00 0.07 ind:imp:3s; +cavalcadant cavalcader VER 0.00 0.68 0.00 0.14 par:pre; +cavalcade cavalcade NOM f s 0.22 3.72 0.04 2.43 +cavalcadent cavalcader VER 0.00 0.68 0.00 0.07 ind:pre:3p; +cavalcader cavalcader VER 0.00 0.68 0.00 0.27 inf; +cavalcades cavalcade NOM f p 0.22 3.72 0.19 1.28 +cavale cavale NOM f s 4.00 4.32 3.87 4.26 +cavalent cavaler VER 2.12 8.99 0.16 0.74 ind:pre:3p; +cavaler cavaler VER 2.12 8.99 0.68 3.04 inf; +cavalerais cavaler VER 2.12 8.99 0.00 0.07 cnd:pre:2s; +cavaleras cavaler VER 2.12 8.99 0.01 0.07 ind:fut:2s; +cavalerie cavalerie NOM f s 6.60 12.70 6.60 12.50 +cavaleries cavalerie NOM f p 6.60 12.70 0.00 0.20 +cavaleront cavaler VER 2.12 8.99 0.01 0.00 ind:fut:3p; +cavales cavaler VER 2.12 8.99 0.17 0.14 ind:pre:2s; +cavaleur cavaleur NOM m s 0.19 0.20 0.17 0.00 +cavaleurs cavaleur NOM m p 0.19 0.20 0.00 0.07 +cavaleuse cavaleur NOM f s 0.19 0.20 0.01 0.14 +cavalez cavaler VER 2.12 8.99 0.02 0.07 imp:pre:2p;ind:pre:2p; +cavalier cavalier NOM m s 10.73 34.19 6.45 13.31 +cavaliers cavalier NOM m p 10.73 34.19 3.06 18.85 +cavalière cavalier NOM f s 10.73 34.19 1.22 1.62 +cavalièrement cavalièrement ADV 0.09 0.34 0.09 0.34 +cavalières cavalière NOM f p 0.22 0.00 0.22 0.00 +cavalé cavaler VER m s 2.12 8.99 0.23 1.08 par:pas; +cave cave NOM f s 22.40 56.35 19.98 42.09 +caveau caveau NOM m s 2.27 5.68 1.99 5.14 +caveaux caveau NOM m p 2.27 5.68 0.29 0.54 +cavecés cavecé ADJ m p 0.00 0.07 0.00 0.07 +caver caver VER 0.17 0.27 0.00 0.14 inf; +caverne caverne NOM f s 6.58 10.54 3.88 6.82 +cavernes caverne NOM f p 6.58 10.54 2.70 3.72 +caverneuse caverneux ADJ f s 0.39 3.04 0.15 1.35 +caverneuses caverneux ADJ f p 0.39 3.04 0.01 0.41 +caverneux caverneux ADJ m 0.39 3.04 0.22 1.28 +cavernicoles cavernicole ADJ p 0.00 0.07 0.00 0.07 +caves cave NOM f p 22.40 56.35 2.42 14.26 +cavette cavette NOM f s 0.14 0.54 0.14 0.47 +cavettes cavette NOM f p 0.14 0.54 0.00 0.07 +caviar caviar NOM m s 6.29 4.26 6.29 4.26 +caviardé caviarder VER m s 0.00 0.07 0.00 0.07 par:pas; +cavillon cavillon NOM m s 0.00 0.27 0.00 0.07 +cavillonne cavillon NOM f s 0.00 0.27 0.00 0.07 +cavillons cavillon NOM m p 0.00 0.27 0.00 0.14 +caviste caviste NOM s 0.14 0.14 0.14 0.14 +cavitation cavitation NOM f s 0.02 0.00 0.02 0.00 +cavité cavité NOM f s 1.89 2.16 1.26 1.49 +cavités cavité NOM f p 1.89 2.16 0.63 0.68 +cavé caver VER m s 0.17 0.27 0.01 0.14 par:pas; +cavée cavée NOM f s 0.00 0.27 0.00 0.14 +cavées cavée NOM f p 0.00 0.27 0.00 0.14 +cavum cavum NOM m 0.01 0.00 0.01 0.00 +cayenne cayenne NOM f s 0.01 0.07 0.01 0.07 +ce ce PRO:dem m s 5219.10 2958.58 5219.10 2958.58 +ceci ceci PRO:dem s 133.07 53.78 133.07 53.78 +ceignait ceindre VER 0.56 4.32 0.00 0.41 ind:imp:3s; +ceignant ceindre VER 0.56 4.32 0.01 0.27 par:pre; +ceignent ceindre VER 0.56 4.32 0.00 0.14 ind:pre:3p; +ceignit ceindre VER 0.56 4.32 0.00 0.27 ind:pas:3s; +ceindra ceindre VER 0.56 4.32 0.14 0.00 ind:fut:3s; +ceindrait ceindre VER 0.56 4.32 0.00 0.14 cnd:pre:3s; +ceindre ceindre VER 0.56 4.32 0.03 0.41 inf; +ceins ceindre VER 0.56 4.32 0.00 0.07 imp:pre:2s; +ceint ceindre VER m s 0.56 4.32 0.17 1.35 ind:pre:3s;par:pas; +ceinte ceindre VER f s 0.56 4.32 0.10 0.61 par:pas; +ceintes ceindre VER f p 0.56 4.32 0.01 0.07 par:pas; +ceints ceindre VER m p 0.56 4.32 0.11 0.61 par:pas; +ceintura ceinturer VER 0.28 6.08 0.00 0.14 ind:pas:3s; +ceinturaient ceinturer VER 0.28 6.08 0.01 0.14 ind:imp:3p; +ceinturait ceinturer VER 0.28 6.08 0.01 0.54 ind:imp:3s; +ceinturant ceinturer VER 0.28 6.08 0.00 0.27 par:pre; +ceinture ceinture NOM f s 22.57 35.20 19.41 32.23 +ceinturent ceinturer VER 0.28 6.08 0.00 0.34 ind:pre:3p; +ceinturer ceinturer VER 0.28 6.08 0.02 0.47 inf; +ceintures ceinture NOM f p 22.57 35.20 3.17 2.97 +ceinturez ceinturer VER 0.28 6.08 0.01 0.00 imp:pre:2p; +ceinturon ceinturon NOM m s 0.91 7.23 0.70 5.88 +ceinturons ceinturon NOM m p 0.91 7.23 0.20 1.35 +ceinturât ceinturer VER 0.28 6.08 0.00 0.07 sub:imp:3s; +ceinturèrent ceinturer VER 0.28 6.08 0.00 0.14 ind:pas:3p; +ceinturé ceinturer VER m s 0.28 6.08 0.00 1.49 par:pas; +ceinturée ceinturer VER f s 0.28 6.08 0.02 0.81 par:pas; +ceinturées ceinturer VER f p 0.28 6.08 0.00 0.41 par:pas; +ceinturés ceinturer VER m p 0.28 6.08 0.02 0.68 par:pas; +cela cela PRO:dem s 492.56 741.82 492.56 741.82 +celait celer VER 0.68 0.34 0.00 0.07 ind:imp:3s; +celer celer VER 0.68 0.34 0.40 0.20 inf; +cella cella NOM f s 0.28 0.81 0.28 0.81 +celle_ci celle_ci PRO:dem f s 38.71 57.57 38.71 57.57 +celle_là celle_là PRO:dem f s 52.63 28.65 52.63 28.65 +celle celle PRO:dem f s 141.28 299.46 141.28 299.46 +celles_ci celles_ci PRO:dem f p 6.64 9.39 6.64 9.39 +celles_là celles_là PRO:dem f p 5.90 6.08 5.90 6.08 +celles celles PRO:dem f p 34.73 107.97 34.73 107.97 +cellier cellier NOM m s 1.11 3.65 1.01 2.97 +celliers cellier NOM m p 1.11 3.65 0.10 0.68 +cellophane cellophane NOM f s 0.39 2.43 0.39 2.43 +cellulaire cellulaire ADJ s 3.19 2.03 2.76 1.62 +cellulairement cellulairement ADV 0.00 0.07 0.00 0.07 +cellulaires cellulaire ADJ p 3.19 2.03 0.43 0.41 +cellular cellular NOM m s 0.01 0.20 0.01 0.20 +cellule cellule NOM f s 42.98 46.28 31.06 35.34 +cellules cellule NOM f p 42.98 46.28 11.92 10.95 +cellulite cellulite NOM f s 0.66 1.15 0.56 1.08 +cellulites cellulite NOM f p 0.66 1.15 0.10 0.07 +celluliteux celluliteux ADJ m s 0.00 0.14 0.00 0.14 +celluloïd celluloïd NOM m s 0.08 3.38 0.08 3.38 +cellulose cellulose NOM f s 0.12 0.27 0.12 0.27 +cellérier cellérier ADJ m s 0.00 0.07 0.00 0.07 +celte celte ADJ s 0.44 1.22 0.32 0.68 +celtes celte ADJ p 0.44 1.22 0.13 0.54 +celtique celtique ADJ s 0.15 1.08 0.09 0.81 +celtiques celtique ADJ p 0.15 1.08 0.06 0.27 +celtisants celtisant ADJ m p 0.00 0.07 0.00 0.07 +celtisme celtisme NOM m s 0.00 0.07 0.00 0.07 +celée celer VER f s 0.68 0.34 0.00 0.07 par:pas; +celui_ci celui_ci PRO:dem m s 45.97 71.76 45.97 71.76 +celui_là celui_là PRO:dem m s 78.13 56.89 78.13 56.89 +celui celui PRO:dem m s 250.13 319.19 250.13 319.19 +cendraient cendrer VER 0.00 0.68 0.00 0.07 ind:imp:3p; +cendrait cendrer VER 0.00 0.68 0.00 0.14 ind:imp:3s; +cendre cendre NOM f s 17.18 28.85 3.24 11.08 +cendres cendre NOM f p 17.18 28.85 13.95 17.77 +cendreuse cendreux ADJ f s 0.00 0.95 0.00 0.34 +cendreuses cendreux ADJ f p 0.00 0.95 0.00 0.20 +cendreux cendreux ADJ m s 0.00 0.95 0.00 0.41 +cendrier cendrier NOM m s 4.35 14.73 3.86 10.95 +cendriers cendrier NOM m p 4.35 14.73 0.48 3.78 +cendrillon cendrillon NOM f s 0.07 0.20 0.02 0.07 +cendrillons cendrillon NOM f p 0.07 0.20 0.05 0.14 +cendré cendré ADJ m s 0.09 2.03 0.03 0.81 +cendrée cendrée ADJ f s 0.03 0.00 0.03 0.00 +cendrées cendré ADJ f p 0.09 2.03 0.02 0.20 +cendrés cendré ADJ m p 0.09 2.03 0.04 0.61 +cens cens NOM m 0.03 0.34 0.03 0.34 +censeur censeur NOM m s 0.88 1.96 0.68 1.08 +censeurs censeur NOM m p 0.88 1.96 0.20 0.88 +censier censier NOM m s 0.00 0.07 0.00 0.07 +censitaire censitaire ADJ m s 0.00 0.14 0.00 0.14 +censé censé ADJ m s 62.52 8.11 38.22 4.53 +censée censé ADJ f s 62.52 8.11 13.51 1.76 +censées censé ADJ f p 62.52 8.11 1.61 0.61 +censément censément ADV 0.05 0.41 0.05 0.41 +censuraient censurer VER 2.17 1.89 0.01 0.07 ind:imp:3p; +censurait censurer VER 2.17 1.89 0.01 0.07 ind:imp:3s; +censurant censurer VER 2.17 1.89 0.00 0.07 par:pre; +censure censure NOM f s 2.87 3.51 2.87 3.04 +censurer censurer VER 2.17 1.89 0.44 0.61 inf; +censures censurer VER 2.17 1.89 0.14 0.00 ind:pre:2s; +censurez censurer VER 2.17 1.89 0.20 0.00 ind:pre:2p; +censuriez censurer VER 2.17 1.89 0.00 0.07 ind:imp:2p; +censuré censurer VER m s 2.17 1.89 0.88 0.54 imp:pre:2s;par:pas; +censurée censurer VER f s 2.17 1.89 0.11 0.27 par:pas; +censurées censurer VER f p 2.17 1.89 0.04 0.07 par:pas; +censurés censurer VER m p 2.17 1.89 0.06 0.00 par:pas; +censés censé ADJ m p 62.52 8.11 9.18 1.22 +cent cent ADJ:num 43.05 135.41 43.05 135.41 +centaine centaine NOM f s 29.22 41.82 6.33 10.54 +centaines centaine NOM f p 29.22 41.82 22.90 31.28 +centaure centaure NOM m s 0.59 0.74 0.42 0.41 +centaures centaure NOM m p 0.59 0.74 0.17 0.34 +centaurée centaurée NOM f s 0.05 0.00 0.05 0.00 +centavo centavo NOM m s 0.20 0.00 0.02 0.00 +centavos centavo NOM m p 0.20 0.00 0.18 0.00 +centenaire centenaire NOM s 0.55 1.28 0.55 1.08 +centenaires centenaire ADJ p 0.72 2.77 0.18 1.49 +centigrade centigrade NOM m s 0.05 0.07 0.04 0.00 +centigrades centigrade NOM m p 0.05 0.07 0.01 0.07 +centigrammes centigramme NOM m p 0.10 0.00 0.10 0.00 +centile centile NOM m s 0.96 0.00 0.96 0.00 +centilitres centilitre NOM m p 0.00 0.14 0.00 0.14 +centime centime NOM m s 7.14 5.68 3.25 1.49 +centimes centime NOM m p 7.14 5.68 3.88 4.19 +centimètre centimètre NOM m s 6.81 27.84 2.48 5.95 +centimètres centimètre NOM m p 6.81 27.84 4.33 21.89 +centième centième ADJ m 0.29 2.64 0.28 2.64 +centièmes centième NOM p 0.35 1.35 0.07 0.07 +centon centon NOM m s 0.32 0.07 0.32 0.07 +centrafricain centrafricain ADJ m s 0.01 0.14 0.01 0.00 +centrafricaine centrafricain ADJ f s 0.01 0.14 0.00 0.14 +centrage centrage NOM m s 0.11 0.00 0.11 0.00 +centrait centrer VER 1.38 1.82 0.00 0.14 ind:imp:3s; +central central ADJ m s 18.14 37.23 10.09 20.74 +centrale centrale NOM f s 8.04 6.01 7.34 4.73 +centrales centrale NOM f p 8.04 6.01 0.69 1.28 +centralisait centraliser VER 0.34 0.81 0.00 0.07 ind:imp:3s; +centralisation centralisation NOM f s 0.16 0.14 0.16 0.14 +centralisatrice centralisateur ADJ f s 0.00 0.07 0.00 0.07 +centralise centraliser VER 0.34 0.81 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +centraliser centraliser VER 0.34 0.81 0.13 0.14 inf; +centralisiez centraliser VER 0.34 0.81 0.01 0.00 ind:imp:2p; +centralisme centralisme NOM m s 0.00 0.41 0.00 0.41 +centralisons centraliser VER 0.34 0.81 0.01 0.00 ind:pre:1p; +centralisé centraliser VER m s 0.34 0.81 0.10 0.20 par:pas; +centralisée centraliser VER f s 0.34 0.81 0.02 0.20 par:pas; +centralisés centraliser VER m p 0.34 0.81 0.01 0.14 par:pas; +centrant centrer VER 1.38 1.82 0.11 0.00 par:pre; +centraux central ADJ m p 18.14 37.23 0.26 0.54 +centre_ville centre_ville NOM m s 2.87 0.54 2.87 0.54 +centre centre NOM m s 57.00 84.46 53.46 80.00 +centrer centrer VER 1.38 1.82 0.11 0.14 inf; +centres centre NOM m p 57.00 84.46 3.54 4.46 +centrifugation centrifugation NOM f s 0.01 0.00 0.01 0.00 +centrifuge centrifuge ADJ s 0.26 2.36 0.25 2.03 +centrifuges centrifuge ADJ f p 0.26 2.36 0.01 0.34 +centrifugeur centrifugeur NOM m s 0.25 0.07 0.01 0.00 +centrifugeuse centrifugeur NOM f s 0.25 0.07 0.24 0.07 +centrifugeuses centrifugeuse NOM f p 0.04 0.00 0.04 0.00 +centriole centriole NOM m s 0.14 0.00 0.14 0.00 +centripète centripète ADJ f s 0.02 0.20 0.02 0.14 +centripètes centripète ADJ p 0.02 0.20 0.00 0.07 +centriste centriste ADJ m s 0.01 0.07 0.01 0.07 +centrouse centrouse NOM f s 0.00 0.20 0.00 0.20 +centré centrer VER m s 1.38 1.82 0.30 0.41 par:pas; +centrée centrer VER f s 1.38 1.82 0.29 0.20 par:pas; +centrées centrer VER f p 1.38 1.82 0.01 0.27 par:pas; +centrum centrum NOM m s 0.14 0.00 0.14 0.00 +centrés centrer VER m p 1.38 1.82 0.07 0.00 par:pas; +cents cents ADJ:num 27.67 80.54 27.67 80.54 +centuple centuple NOM m s 0.31 1.08 0.31 1.08 +centuplé centupler VER m s 0.00 0.14 0.00 0.07 par:pas; +centuplée centupler VER f s 0.00 0.14 0.00 0.07 par:pas; +centurie centurie NOM f s 0.03 1.15 0.02 0.54 +centuries centurie NOM f p 0.03 1.15 0.01 0.61 +centurion centurion NOM m s 1.04 0.88 0.68 0.61 +centurions centurion NOM m p 1.04 0.88 0.36 0.27 +cep cep NOM m s 0.24 1.49 0.12 0.88 +cependant cependant CON 1.54 13.51 1.54 13.51 +ceps cep NOM m p 0.24 1.49 0.12 0.61 +cerbère cerbère NOM m s 0.05 0.47 0.05 0.14 +cerbères cerbère NOM m p 0.05 0.47 0.00 0.34 +cerceau cerceau NOM m s 0.64 2.77 0.52 1.96 +cerceaux cerceau NOM m p 0.64 2.77 0.12 0.81 +cerclage cerclage NOM m s 0.03 0.00 0.03 0.00 +cerclait cercler VER 0.22 5.34 0.00 0.14 ind:imp:3s; +cerclant cercler VER 0.22 5.34 0.00 0.07 par:pre; +cercle cercle NOM m s 21.77 54.26 17.77 42.43 +cercler cercler VER 0.22 5.34 0.00 0.20 inf; +cercles cercle NOM m p 21.77 54.26 4.00 11.82 +cercleux cercleux NOM m 0.00 0.07 0.00 0.07 +cerclé cercler VER m s 0.22 5.34 0.02 1.22 par:pas; +cerclée cercler VER f s 0.22 5.34 0.03 0.74 par:pas; +cerclées cercler VER f p 0.22 5.34 0.01 1.89 par:pas; +cerclés cercler VER m p 0.22 5.34 0.01 0.95 par:pas; +cercueil cercueil NOM m s 22.14 22.16 18.90 19.26 +cercueils cercueil NOM m p 22.14 22.16 3.24 2.91 +cerf_roi cerf_roi NOM m s 0.01 0.00 0.01 0.00 +cerf_volant cerf_volant NOM m s 1.85 1.82 1.40 1.22 +cerf cerf NOM m s 7.56 25.54 6.17 20.27 +cerfeuil cerfeuil NOM m s 0.03 0.95 0.03 0.95 +cerf_volant cerf_volant NOM m p 1.85 1.82 0.46 0.61 +cerfs cerf NOM m p 7.56 25.54 1.39 5.27 +cerisaie cerisaie NOM f s 0.36 0.20 0.36 0.20 +cerise cerise NOM f s 5.26 10.07 2.75 3.31 +cerises cerise NOM f p 5.26 10.07 2.52 6.76 +cerisier cerisier NOM m s 0.88 3.51 0.44 1.49 +cerisiers cerisier NOM m p 0.88 3.51 0.44 2.03 +cerna cerner VER 7.74 21.01 0.00 0.07 ind:pas:3s; +cernable cernable ADJ s 0.00 0.07 0.00 0.07 +cernaient cerner VER 7.74 21.01 0.01 1.49 ind:imp:3p; +cernais cerner VER 7.74 21.01 0.00 0.07 ind:imp:1s; +cernait cerner VER 7.74 21.01 0.05 2.30 ind:imp:3s; +cernant cerner VER 7.74 21.01 0.00 0.34 par:pre; +cerne cerner VER 7.74 21.01 0.43 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cerneau cerneau NOM m s 0.00 0.14 0.00 0.07 +cerneaux cerneau NOM m p 0.00 0.14 0.00 0.07 +cernent cerner VER 7.74 21.01 0.54 1.08 ind:pre:3p; +cerner cerner VER 7.74 21.01 1.73 2.91 inf; +cernes cerne NOM m p 1.30 5.20 1.18 3.78 +cernez cerner VER 7.74 21.01 0.38 0.00 imp:pre:2p;ind:pre:2p; +cerniez cerner VER 7.74 21.01 0.01 0.00 ind:imp:2p; +cernons cerner VER 7.74 21.01 0.04 0.00 ind:pre:1p; +cerné cerner VER m s 7.74 21.01 1.97 4.12 par:pas; +cernée cerner VER f s 7.74 21.01 1.14 2.91 par:pas; +cernées cerner VER f p 7.74 21.01 0.05 1.08 par:pas; +cernés cerner VER m p 7.74 21.01 1.39 2.91 par:pas; +cerque cerque NOM m s 0.14 0.07 0.14 0.07 +certain certain ADJ:ind m s 103.57 182.64 2.18 6.89 +certaine certaine ADJ:ind f s 1.03 4.86 1.03 4.86 +certainement certainement ADV 55.16 59.93 55.16 59.93 +certaines certaines ADJ:ind f p 48.41 51.55 48.41 51.55 +certains certains ADJ:ind m p 57.58 101.28 57.58 101.28 +certes certes ADV 14.88 69.66 14.88 69.66 +certif certif NOM m s 0.14 1.08 0.03 1.01 +certifia certifier VER 2.52 2.91 0.00 0.07 ind:pas:3s; +certifiaient certifier VER 2.52 2.91 0.00 0.07 ind:imp:3p; +certifiait certifier VER 2.52 2.91 0.00 0.47 ind:imp:3s; +certifiant certifier VER 2.52 2.91 0.03 0.20 par:pre; +certificat certificat NOM m s 12.30 9.93 11.27 7.30 +certification certification NOM f s 0.09 0.00 0.09 0.00 +certificats certificat NOM m p 12.30 9.93 1.03 2.64 +certifie certifier VER 2.52 2.91 0.89 0.47 ind:pre:1s;ind:pre:3s;sub:pre:1s; +certifier certifier VER 2.52 2.91 0.59 0.74 inf; +certifierait certifier VER 2.52 2.91 0.00 0.07 cnd:pre:3s; +certifieront certifier VER 2.52 2.91 0.01 0.00 ind:fut:3p; +certifiez certifier VER 2.52 2.91 0.17 0.00 imp:pre:2p;ind:pre:2p; +certifions certifier VER 2.52 2.91 0.03 0.07 imp:pre:1p;ind:pre:1p; +certifié certifier VER m s 2.52 2.91 0.68 0.54 par:pas; +certifiée certifié ADJ f s 0.43 0.74 0.14 0.14 +certifiées certifié ADJ f p 0.43 0.74 0.01 0.07 +certifiés certifier VER m p 2.52 2.91 0.04 0.07 par:pas; +certifs certif NOM m p 0.14 1.08 0.11 0.07 +certitude certitude NOM f s 10.18 41.89 8.94 37.09 +certitudes certitude NOM f p 10.18 41.89 1.24 4.80 +cerveau cerveau NOM m 69.22 46.69 57.67 28.92 +cerveaux cerveau NOM m p 69.22 46.69 3.92 1.96 +cervelas cervelas NOM m 0.03 0.27 0.03 0.27 +cervelet cervelet NOM m s 0.85 0.61 0.85 0.47 +cervelets cervelet NOM m p 0.85 0.61 0.00 0.14 +cervelle cerveau NOM f s 69.22 46.69 7.63 14.05 +cervelles cervelle NOM f p 6.93 0.00 0.40 0.00 +cervical cervical ADJ m s 1.79 1.01 0.29 0.14 +cervicale cervical ADJ f s 1.79 1.01 0.67 0.47 +cervicales cervical ADJ f p 1.79 1.01 0.79 0.41 +cervicaux cervical ADJ m p 1.79 1.01 0.05 0.00 +cervidés cervidé NOM m p 0.00 0.14 0.00 0.14 +cervoise cervoise NOM f s 0.02 0.00 0.02 0.00 +ces ces ADJ:dem p 1222.51 1547.50 1222.51 1547.50 +cessa cesser VER 68.11 177.77 0.64 16.28 ind:pas:3s; +cessai cesser VER 68.11 177.77 0.28 2.16 ind:pas:1s; +cessaient cesser VER 68.11 177.77 0.17 4.53 ind:imp:3p; +cessais cesser VER 68.11 177.77 0.47 1.28 ind:imp:1s;ind:imp:2s; +cessait cesser VER 68.11 177.77 1.56 18.18 ind:imp:3s; +cessant cesser VER 68.11 177.77 0.11 5.00 par:pre; +cessante cessant ADJ f s 0.01 1.55 0.00 0.27 +cessantes cessant ADJ f p 0.01 1.55 0.01 0.27 +cessasse cesser VER 68.11 177.77 0.00 0.07 sub:imp:1s; +cessation cessation NOM f s 0.11 0.95 0.11 0.95 +cesse cesse NOM f s 28.88 71.96 28.86 71.96 +cessent cesser VER 68.11 177.77 2.06 6.49 ind:pre:3p; +cesser cesser VER 68.11 177.77 13.20 21.01 inf; +cessera cesser VER 68.11 177.77 1.92 1.76 ind:fut:3s; +cesserai cesser VER 68.11 177.77 0.64 0.74 ind:fut:1s; +cesseraient cesser VER 68.11 177.77 0.05 0.68 cnd:pre:3p; +cesserais cesser VER 68.11 177.77 0.15 0.41 cnd:pre:1s;cnd:pre:2s; +cesserait cesser VER 68.11 177.77 0.28 1.96 cnd:pre:3s; +cesseras cesser VER 68.11 177.77 0.94 0.34 ind:fut:2s; +cesserez cesser VER 68.11 177.77 0.63 0.27 ind:fut:2p; +cesseriez cesser VER 68.11 177.77 0.06 0.20 cnd:pre:2p; +cesserons cesser VER 68.11 177.77 0.21 0.20 ind:fut:1p; +cesseront cesser VER 68.11 177.77 0.72 0.68 ind:fut:3p; +cesses cesser VER 68.11 177.77 0.91 0.54 ind:pre:2s; +cessez_le_feu cessez_le_feu NOM m 1.54 0.41 1.54 0.41 +cessez cesser VER 68.11 177.77 15.24 1.82 imp:pre:2p;ind:pre:2p; +cessiez cesser VER 68.11 177.77 0.50 0.14 ind:imp:2p; +cession cession NOM f s 0.22 0.47 0.22 0.34 +cessionnaire cessionnaire NOM m s 0.01 0.00 0.01 0.00 +cessions cesser VER 68.11 177.77 0.27 0.74 ind:imp:1p; +cessâmes cesser VER 68.11 177.77 0.01 0.20 ind:pas:1p; +cessons cesser VER 68.11 177.77 1.17 0.81 imp:pre:1p;ind:pre:1p; +cessât cesser VER 68.11 177.77 0.00 1.28 sub:imp:3s; +cessèrent cesser VER 68.11 177.77 0.15 4.19 ind:pas:3p; +cessé cesser VER m s 68.11 177.77 13.89 61.22 par:pas; +cessée cesser VER f s 68.11 177.77 0.02 0.00 par:pas; +ceste ceste NOM m s 0.00 0.07 0.00 0.07 +cet cet ADJ:dem m s 499.91 497.50 499.91 497.50 +cette cette ADJ:dem f s 1902.27 2320.68 1902.27 2320.68 +ceux_ci ceux_ci PRO:dem m p 4.26 20.95 4.26 20.95 +ceux_là ceux_là PRO:dem m p 14.65 25.81 14.65 25.81 +ceux ceux PRO:dem m p 202.02 309.86 202.02 309.86 +ch_timi ch_timi ADJ s 0.27 0.07 0.27 0.00 +ch_timi ch_timi NOM p 0.14 0.20 0.00 0.07 +chômage chômage NOM m s 12.50 5.41 12.50 5.41 +chômaient chômer VER 1.05 1.35 0.00 0.20 ind:imp:3p; +chômait chômer VER 1.05 1.35 0.01 0.34 ind:imp:3s; +chôme chômer VER 1.05 1.35 0.18 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chômedu chômedu NOM m s 0.04 0.47 0.04 0.47 +chôment chômer VER 1.05 1.35 0.03 0.07 ind:pre:3p; +chômer chômer VER 1.05 1.35 0.37 0.20 inf; +chômerez chômer VER 1.05 1.35 0.10 0.00 ind:fut:2p; +chômeur chômeur NOM m s 4.54 4.39 2.23 2.16 +chômeurs chômeur NOM m p 4.54 4.39 2.02 2.09 +chômeuse chômeur NOM f s 4.54 4.39 0.27 0.14 +chômeuses chômeur NOM f p 4.54 4.39 0.01 0.00 +chômez chômer VER 1.05 1.35 0.12 0.00 ind:pre:2p; +chômé chômer VER m s 1.05 1.35 0.24 0.41 par:pas; +chômée chômé ADJ f s 0.02 0.27 0.01 0.00 +chômés chômé ADJ m p 0.02 0.27 0.00 0.07 +cha_cha_cha cha_cha_cha NOM m s 0.61 0.20 0.61 0.20 +chaîne chaîne NOM f s 38.80 57.77 28.40 43.24 +chaînes chaîne NOM f p 38.80 57.77 10.40 14.53 +chaînette chaînette NOM f s 0.26 2.77 0.25 2.16 +chaînettes chaînette NOM f p 0.26 2.77 0.01 0.61 +chaînon chaînon NOM m s 0.70 0.68 0.67 0.47 +chaînons chaînon NOM m p 0.70 0.68 0.04 0.20 +chaîné chaîner VER m s 0.00 0.07 0.00 0.07 par:pas; +chabanais chabanais NOM s 0.00 0.14 0.00 0.14 +chabichou chabichou NOM m s 0.00 0.27 0.00 0.27 +chabler chabler VER 0.00 0.07 0.00 0.07 inf; +chablis chablis NOM m 0.09 0.07 0.09 0.07 +chaboisseaux chaboisseau NOM m p 0.00 0.07 0.00 0.07 +chabot chabot NOM m s 0.14 0.07 0.14 0.00 +chabots chabot NOM m p 0.14 0.07 0.01 0.07 +chabraque chabraque NOM f s 0.00 0.41 0.00 0.41 +chabrot chabrot NOM m s 0.27 0.14 0.27 0.14 +chacal chacal NOM m s 3.02 2.57 1.16 1.55 +chacals chacal NOM m p 3.02 2.57 1.86 1.01 +chachlik chachlik NOM m s 0.10 0.07 0.10 0.07 +chaconne chaconne NOM f s 0.00 0.07 0.00 0.07 +chacun chacun PRO:ind m s 93.61 187.84 93.61 187.84 +chacune chacune PRO:ind f s 12.20 35.95 12.20 35.95 +chafaud chafaud NOM m s 0.00 0.14 0.00 0.07 +chafauds chafaud NOM m p 0.00 0.14 0.00 0.07 +chafouin chafouin ADJ m s 0.04 1.15 0.03 0.41 +chafouine chafouin ADJ f s 0.04 1.15 0.01 0.61 +chafouins chafouin ADJ m p 0.04 1.15 0.00 0.14 +chagatte chagatte NOM f s 0.21 0.88 0.19 0.68 +chagattes chagatte NOM f p 0.21 0.88 0.02 0.20 +chagrin chagrin NOM m s 21.61 44.05 20.39 38.72 +chagrina chagriner VER 1.94 2.97 0.00 0.14 ind:pas:3s; +chagrinaient chagriner VER 1.94 2.97 0.00 0.07 ind:imp:3p; +chagrinait chagriner VER 1.94 2.97 0.00 0.88 ind:imp:3s; +chagrine chagriner VER 1.94 2.97 1.43 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chagrinent chagriner VER 1.94 2.97 0.02 0.07 ind:pre:3p; +chagriner chagriner VER 1.94 2.97 0.20 0.74 inf; +chagrinerait chagriner VER 1.94 2.97 0.05 0.00 cnd:pre:3s; +chagrines chagriner VER 1.94 2.97 0.14 0.00 ind:pre:2s; +chagrins chagrin NOM m p 21.61 44.05 1.21 5.34 +chagriné chagriné ADJ m s 0.06 0.47 0.05 0.20 +chagrinée chagriner VER f s 1.94 2.97 0.04 0.14 par:pas; +chagrinés chagriné ADJ m p 0.06 0.47 0.01 0.14 +chah chah NOM m s 0.04 0.00 0.04 0.00 +chahut chahut NOM m s 1.28 2.70 1.27 2.30 +chahutaient chahuter VER 0.94 3.85 0.01 0.27 ind:imp:3p; +chahutais chahuter VER 0.94 3.85 0.00 0.14 ind:imp:1s; +chahutait chahuter VER 0.94 3.85 0.21 0.34 ind:imp:3s; +chahutant chahuter VER 0.94 3.85 0.01 0.47 par:pre; +chahute chahuter VER 0.94 3.85 0.08 0.27 ind:pre:1s;ind:pre:3s; +chahutent chahuter VER 0.94 3.85 0.15 0.20 ind:pre:3p; +chahuter chahuter VER 0.94 3.85 0.28 1.22 inf; +chahuteraient chahuter VER 0.94 3.85 0.00 0.07 cnd:pre:3p; +chahuteur chahuteur NOM m s 0.09 0.41 0.07 0.14 +chahuteurs chahuteur NOM m p 0.09 0.41 0.00 0.27 +chahuteuse chahuteur NOM f s 0.09 0.41 0.01 0.00 +chahutez chahuter VER 0.94 3.85 0.04 0.00 imp:pre:2p;ind:pre:2p; +chahuts chahut NOM m p 1.28 2.70 0.01 0.41 +chahutèrent chahuter VER 0.94 3.85 0.00 0.07 ind:pas:3p; +chahuté chahuter VER m s 0.94 3.85 0.14 0.41 par:pas; +chahutée chahuter VER f s 0.94 3.85 0.01 0.14 par:pas; +chahutées chahuter VER f p 0.94 3.85 0.00 0.07 par:pas; +chahutés chahuter VER m p 0.94 3.85 0.00 0.20 par:pas; +chai chai NOM m s 0.21 1.62 0.11 0.27 +chair chair NOM f s 37.07 101.69 36.01 90.81 +chaire chaire NOM f s 1.46 5.74 1.46 5.47 +chaires chaire NOM f p 1.46 5.74 0.00 0.27 +chairman chairman NOM m s 0.03 0.27 0.03 0.27 +chairs chair NOM f p 37.07 101.69 1.07 10.88 +chais chai NOM m p 0.21 1.62 0.10 1.35 +chaise chaise NOM f s 40.02 118.31 32.70 86.35 +chaises chaise NOM f p 40.02 118.31 7.33 31.96 +chaisière chaisier NOM f s 0.00 0.68 0.00 0.54 +chaisières chaisier NOM f p 0.00 0.68 0.00 0.14 +chaix chaix NOM m 0.00 0.27 0.00 0.27 +chaland chaland NOM m s 0.53 3.11 0.50 1.49 +chalands chaland NOM m p 0.53 3.11 0.03 1.62 +chalazions chalazion NOM m p 0.00 0.07 0.00 0.07 +chaldaïques chaldaïque ADJ m p 0.00 0.07 0.00 0.07 +chaldéen chaldéen NOM m s 0.03 0.20 0.01 0.00 +chaldéens chaldéen NOM m p 0.03 0.20 0.02 0.20 +chalet chalet NOM m s 4.38 8.11 3.92 7.16 +chalets chalet NOM m p 4.38 8.11 0.46 0.95 +chaleur chaleur NOM f s 39.13 116.22 38.77 112.23 +chaleureuse chaleureux ADJ f s 5.72 11.55 1.29 4.32 +chaleureusement chaleureusement ADV 1.46 1.89 1.46 1.89 +chaleureuses chaleureux ADJ f p 5.72 11.55 0.47 1.01 +chaleureux chaleureux ADJ m 5.72 11.55 3.96 6.22 +chaleurs chaleur NOM f p 39.13 116.22 0.36 3.99 +challenge challenge NOM m s 1.69 0.27 1.41 0.27 +challenger challenger NOM m s 1.47 0.47 0.94 0.41 +challengers challenger NOM m p 1.47 0.47 0.53 0.07 +challenges challenge NOM m p 1.69 0.27 0.29 0.00 +challengeur challengeur NOM m s 0.01 0.00 0.01 0.00 +chalon chalon NOM m s 0.14 2.64 0.14 2.57 +chalonnaises chalonnais ADJ f p 0.00 0.07 0.00 0.07 +chalons chalon NOM m p 0.14 2.64 0.00 0.07 +chaloupait chalouper VER 0.01 1.01 0.00 0.14 ind:imp:3s; +chaloupant chalouper VER 0.01 1.01 0.00 0.20 par:pre; +chaloupe chaloupe NOM f s 0.82 2.50 0.73 1.89 +chalouper chalouper VER 0.01 1.01 0.00 0.07 inf; +chaloupes chaloupe NOM f p 0.82 2.50 0.09 0.61 +chaloupé chalouper VER m s 0.01 1.01 0.00 0.20 par:pas; +chaloupée chaloupé ADJ f s 0.01 0.74 0.01 0.54 +chaloupées chalouper VER f p 0.01 1.01 0.00 0.07 par:pas; +chaloupés chalouper VER m p 0.01 1.01 0.00 0.07 par:pas; +chalumeau chalumeau NOM m s 1.63 2.70 1.59 2.36 +chalumeaux chalumeau NOM m p 1.63 2.70 0.03 0.34 +chalut chalut NOM m s 0.04 0.27 0.04 0.20 +chalutier_patrouilleur chalutier_patrouilleur NOM m s 0.00 0.07 0.00 0.07 +chalutier chalutier NOM m s 1.13 3.18 0.66 1.28 +chalutiers chalutier NOM m p 1.13 3.18 0.47 1.89 +chaluts chalut NOM m p 0.04 0.27 0.00 0.07 +chamade chamade NOM f s 0.75 1.35 0.75 1.35 +chamaillaient chamailler VER 2.11 3.45 0.05 0.88 ind:imp:3p; +chamaillait chamailler VER 2.11 3.45 0.03 0.34 ind:imp:3s; +chamaillant chamailler VER 2.11 3.45 0.04 0.07 par:pre; +chamaille chamailler VER 2.11 3.45 0.21 0.14 ind:pre:1s;ind:pre:3s; +chamaillent chamailler VER 2.11 3.45 0.13 0.47 ind:pre:3p; +chamailler chamailler VER 2.11 3.45 1.22 1.08 inf; +chamaillerie chamaillerie NOM f s 0.77 0.61 0.00 0.07 +chamailleries chamaillerie NOM f p 0.77 0.61 0.77 0.54 +chamailleur chamailleur ADJ m s 0.01 0.20 0.01 0.00 +chamailleurs chamailleur ADJ m p 0.01 0.20 0.00 0.14 +chamailleuse chamailleur ADJ f s 0.01 0.20 0.00 0.07 +chamaillez chamailler VER 2.11 3.45 0.22 0.07 imp:pre:2p;ind:pre:2p; +chamaillions chamailler VER 2.11 3.45 0.00 0.07 ind:imp:1p; +chamaillis chamaillis NOM m 0.00 0.07 0.00 0.07 +chamaillons chamailler VER 2.11 3.45 0.13 0.00 ind:pre:1p; +chamaillèrent chamailler VER 2.11 3.45 0.00 0.07 ind:pas:3p; +chamaillé chamailler VER m s 2.11 3.45 0.02 0.00 par:pas; +chamaillés chamailler VER m p 2.11 3.45 0.08 0.27 par:pas; +chaman chaman NOM m s 1.03 0.41 0.97 0.20 +chamane chamane NOM m s 0.04 0.14 0.02 0.07 +chamanes chamane NOM m p 0.04 0.14 0.01 0.07 +chamanisme chamanisme NOM m s 0.04 0.14 0.04 0.14 +chamans chaman NOM m p 1.03 0.41 0.06 0.20 +chamarré chamarré ADJ m s 0.14 1.82 0.14 0.81 +chamarrée chamarré ADJ f s 0.14 1.82 0.01 0.27 +chamarrées chamarré ADJ f p 0.14 1.82 0.00 0.14 +chamarrures chamarrure NOM f p 0.00 0.07 0.00 0.07 +chamarrés chamarré ADJ m p 0.14 1.82 0.00 0.61 +chambard chambard NOM m s 0.22 0.20 0.22 0.20 +chambarda chambarder VER 0.02 0.34 0.00 0.07 ind:pas:3s; +chambardait chambarder VER 0.02 0.34 0.00 0.07 ind:imp:3s; +chambardement chambardement NOM m s 0.17 0.68 0.17 0.61 +chambardements chambardement NOM m p 0.17 0.68 0.00 0.07 +chambarder chambarder VER 0.02 0.34 0.02 0.07 inf; +chambardé chambarder VER m s 0.02 0.34 0.00 0.07 par:pas; +chambardée chambarder VER f s 0.02 0.34 0.00 0.07 par:pas; +chambellan chambellan NOM m s 0.55 0.88 0.53 0.61 +chambellans chambellan NOM m p 0.55 0.88 0.02 0.27 +chambertin chambertin NOM m s 0.04 0.68 0.04 0.61 +chambertins chambertin NOM m p 0.04 0.68 0.00 0.07 +chamboulaient chambouler VER 2.76 2.23 0.00 0.14 ind:imp:3p; +chamboulait chambouler VER 2.76 2.23 0.00 0.14 ind:imp:3s; +chamboulant chambouler VER 2.76 2.23 0.01 0.07 par:pre; +chamboule chambouler VER 2.76 2.23 0.41 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chamboulement chamboulement NOM m s 0.04 0.20 0.03 0.20 +chamboulements chamboulement NOM m p 0.04 0.20 0.01 0.00 +chamboulent chambouler VER 2.76 2.23 0.17 0.00 ind:pre:3p; +chambouler chambouler VER 2.76 2.23 0.58 0.54 inf; +chambouleras chambouler VER 2.76 2.23 0.00 0.07 ind:fut:2s; +chamboulez chambouler VER 2.76 2.23 0.03 0.00 imp:pre:2p;ind:pre:2p; +chamboulât chambouler VER 2.76 2.23 0.00 0.07 sub:imp:3s; +chamboulé chambouler VER m s 2.76 2.23 0.85 0.34 par:pas; +chamboulée chambouler VER f s 2.76 2.23 0.51 0.68 par:pas; +chamboulées chambouler VER f p 2.76 2.23 0.16 0.07 par:pas; +chamboulés chambouler VER m p 2.76 2.23 0.04 0.07 par:pas; +chambra chambrer VER 1.50 3.31 0.02 0.14 ind:pas:3s; +chambrais chambrer VER 1.50 3.31 0.00 0.07 ind:imp:1s; +chambrait chambrer VER 1.50 3.31 0.00 0.20 ind:imp:3s; +chambranle chambranle NOM m s 0.09 4.26 0.09 4.12 +chambranles chambranle NOM m p 0.09 4.26 0.00 0.14 +chambrant chambrer VER 1.50 3.31 0.00 0.27 par:pre; +chambre_salon chambre_salon NOM f s 0.00 0.07 0.00 0.07 +chambre chambre NOM f s 288.64 413.31 263.93 380.07 +chambrent chambrer VER 1.50 3.31 0.01 0.14 ind:pre:3p; +chambrer chambrer VER 1.50 3.31 0.39 0.41 inf; +chambres chambre NOM f p 288.64 413.31 24.71 33.24 +chambrette chambrette NOM f s 0.24 2.50 0.24 2.50 +chambrez chambrer VER 1.50 3.31 0.01 0.00 ind:pre:2p; +chambrière chambrière NOM f s 0.01 1.35 0.01 0.81 +chambrières chambrière NOM f p 0.01 1.35 0.00 0.54 +chambré chambrer VER m s 1.50 3.31 0.02 0.61 par:pas; +chambrée chambrée NOM f s 0.98 1.89 0.64 1.62 +chambrées chambrée NOM f p 0.98 1.89 0.34 0.27 +chameau chameau NOM m s 10.87 10.54 7.21 5.41 +chameaux chameau NOM m p 10.87 10.54 3.34 4.73 +chamelier chamelier NOM m s 0.12 0.41 0.11 0.20 +chameliers chamelier NOM m p 0.12 0.41 0.01 0.20 +chamelle chameau NOM f s 10.87 10.54 0.32 0.27 +chamelles chamelle NOM f p 0.12 0.00 0.12 0.00 +chamois chamois NOM m 0.61 2.57 0.61 2.57 +chamoisine chamoisine NOM f s 0.00 0.07 0.00 0.07 +champ champ NOM m s 57.22 106.49 0.04 1.76 +champ champ NOM m s 57.22 106.49 38.05 51.76 +champagne champagne NOM m s 32.49 29.86 32.38 29.86 +champagnes champagne NOM m p 32.49 29.86 0.12 0.00 +champagnisés champagniser VER m p 0.00 0.07 0.00 0.07 par:pas; +champenois champenois NOM m 0.00 4.19 0.00 4.12 +champenoise champenois ADJ f s 0.00 1.62 0.00 0.34 +champenoises champenois NOM f p 0.00 4.19 0.00 0.07 +champi champi NOM m s 0.02 0.14 0.00 0.14 +champignon champignon NOM m s 11.03 12.97 3.34 3.99 +champignonnaient champignonner VER 0.00 0.27 0.00 0.07 ind:imp:3p; +champignonnait champignonner VER 0.00 0.27 0.00 0.07 ind:imp:3s; +champignonne champignonner VER 0.00 0.27 0.00 0.07 ind:pre:3s; +champignonnent champignonner VER 0.00 0.27 0.00 0.07 ind:pre:3p; +champignonnière champignonnière NOM f s 0.01 0.34 0.01 0.27 +champignonnières champignonnière NOM f p 0.01 0.34 0.00 0.07 +champignons champignon NOM m p 11.03 12.97 7.69 8.99 +champion champion NOM m s 34.90 15.07 27.69 10.81 +championnat championnat NOM m s 8.24 2.97 6.87 2.57 +championnats championnat NOM m p 8.24 2.97 1.38 0.41 +championne champion NOM f s 34.90 15.07 2.46 1.08 +championnes championne NOM f p 0.12 0.00 0.12 0.00 +champions champion NOM m p 34.90 15.07 4.75 2.97 +champis champi NOM m p 0.02 0.14 0.02 0.00 +champs_élysées champs_élysées NOM m p 0.00 0.14 0.00 0.14 +champs champ NOM m p 57.22 106.49 19.14 52.97 +champêtre champêtre ADJ s 0.70 6.01 0.47 4.66 +champêtres champêtre ADJ p 0.70 6.01 0.23 1.35 +chance chance NOM s 360.60 136.35 334.02 114.05 +chancel chancel NOM m s 0.01 0.00 0.01 0.00 +chancela chanceler VER 1.06 7.50 0.00 1.08 ind:pas:3s; +chancelai chanceler VER 1.06 7.50 0.00 0.07 ind:pas:1s; +chancelaient chanceler VER 1.06 7.50 0.00 0.07 ind:imp:3p; +chancelais chanceler VER 1.06 7.50 0.01 0.14 ind:imp:1s; +chancelait chanceler VER 1.06 7.50 0.03 1.69 ind:imp:3s; +chancelant chanceler VER 1.06 7.50 0.29 0.88 par:pre; +chancelante chancelant ADJ f s 0.23 2.23 0.04 1.08 +chancelantes chancelant ADJ f p 0.23 2.23 0.01 0.27 +chancelants chancelant ADJ m p 0.23 2.23 0.14 0.27 +chanceler chanceler VER 1.06 7.50 0.14 1.22 inf; +chancelier chancelier NOM m s 3.08 2.03 2.97 1.69 +chanceliers chancelier NOM m p 3.08 2.03 0.11 0.20 +chancelions chanceler VER 1.06 7.50 0.00 0.07 ind:imp:1p; +chancelière chancelière NOM f s 0.06 0.00 0.06 0.00 +chancelières chancelier NOM f p 3.08 2.03 0.00 0.14 +chancelle chanceler VER 1.06 7.50 0.56 1.28 ind:pre:1s;ind:pre:3s; +chancellent chanceler VER 1.06 7.50 0.02 0.27 ind:pre:3p; +chancellerie chancellerie NOM f s 1.21 2.70 1.20 1.69 +chancelleries chancellerie NOM f p 1.21 2.70 0.01 1.01 +chancelèrent chanceler VER 1.06 7.50 0.00 0.20 ind:pas:3p; +chancelé chanceler VER m s 1.06 7.50 0.01 0.54 par:pas; +chances chance NOM f p 360.60 136.35 26.58 22.30 +chanceuse chanceux ADJ f s 12.88 1.08 2.49 0.27 +chanceuses chanceux ADJ f p 12.88 1.08 0.15 0.07 +chanceux chanceux ADJ m 12.88 1.08 10.24 0.74 +chanci chancir VER m s 0.00 0.14 0.00 0.14 par:pas; +chancre chancre NOM m s 0.83 1.08 0.53 0.74 +chancres chancre NOM m p 0.83 1.08 0.30 0.34 +chand chand NOM m s 0.00 0.14 0.00 0.14 +chandail chandail NOM m s 0.82 14.19 0.63 11.42 +chandails chandail NOM m p 0.82 14.19 0.19 2.77 +chandeleur chandeleur NOM f s 0.52 0.47 0.52 0.47 +chandelier chandelier NOM m s 1.71 4.12 1.36 1.82 +chandeliers chandelier NOM m p 1.71 4.12 0.34 2.30 +chandelle chandelle NOM f s 5.15 12.57 3.51 7.91 +chandelles chandelle NOM f p 5.15 12.57 1.64 4.66 +chanfrein chanfrein NOM m s 0.00 0.54 0.00 0.54 +chanfreinée chanfreiner VER f s 0.00 0.07 0.00 0.07 par:pas; +change changer VER 411.98 246.49 67.83 30.20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +changea changer VER 411.98 246.49 2.04 12.43 ind:pas:3s; +changeai changer VER 411.98 246.49 0.04 0.61 ind:pas:1s; +changeaient changer VER 411.98 246.49 0.44 4.12 ind:imp:3p; +changeais changer VER 411.98 246.49 1.56 1.89 ind:imp:1s;ind:imp:2s; +changeait changer VER 411.98 246.49 3.30 18.11 ind:imp:3s; +changeant changer VER 411.98 246.49 1.38 6.15 par:pre; +changeante changeant ADJ f s 1.60 5.47 0.36 1.96 +changeantes changeant ADJ f p 1.60 5.47 0.02 0.61 +changeants changeant ADJ m p 1.60 5.47 0.03 1.01 +changeas changer VER 411.98 246.49 0.01 0.00 ind:pas:2s; +changement changement NOM m s 37.70 36.42 27.00 26.28 +changements changement NOM m p 37.70 36.42 10.70 10.14 +changent changer VER 411.98 246.49 12.39 5.34 ind:pre:3p; +changeâmes changer VER 411.98 246.49 0.00 0.27 ind:pas:1p; +changeons changer VER 411.98 246.49 2.74 0.68 imp:pre:1p;ind:pre:1p; +changeât changer VER 411.98 246.49 0.00 0.81 sub:imp:3s; +changer changer VER 411.98 246.49 140.49 72.30 inf;; +changera changer VER 411.98 246.49 16.54 5.07 ind:fut:3s; +changerai changer VER 411.98 246.49 3.15 0.74 ind:fut:1s; +changeraient changer VER 411.98 246.49 0.23 0.61 cnd:pre:3p; +changerais changer VER 411.98 246.49 1.92 0.88 cnd:pre:1s;cnd:pre:2s; +changerait changer VER 411.98 246.49 6.29 4.32 cnd:pre:3s; +changeras changer VER 411.98 246.49 2.92 0.81 ind:fut:2s; +changerez changer VER 411.98 246.49 1.29 0.07 ind:fut:2p; +changeriez changer VER 411.98 246.49 0.29 0.00 cnd:pre:2p; +changerons changer VER 411.98 246.49 0.58 0.27 ind:fut:1p; +changeront changer VER 411.98 246.49 1.65 1.01 ind:fut:3p; +changes changer VER 411.98 246.49 9.22 1.82 ind:pre:2s; +changeur changeur NOM m s 0.47 0.61 0.42 0.41 +changeurs changeur NOM m p 0.47 0.61 0.03 0.20 +changeuse changeur NOM f s 0.47 0.61 0.02 0.00 +changez changer VER 411.98 246.49 10.18 1.28 imp:pre:2p;ind:pre:2p; +changiez changer VER 411.98 246.49 0.80 0.14 ind:imp:2p; +changions changer VER 411.98 246.49 0.03 0.27 ind:imp:1p; +changèrent changer VER 411.98 246.49 0.38 0.95 ind:pas:3p; +changé changer VER m s 411.98 246.49 117.83 68.85 par:pas; +changée changer VER f s 411.98 246.49 3.94 4.32 par:pas; +changées changer VER f p 411.98 246.49 1.01 0.68 par:pas; +changés changer VER m p 411.98 246.49 1.52 1.49 par:pas; +chanoine chanoine NOM m s 0.44 11.96 0.43 11.28 +chanoines chanoine NOM m p 0.44 11.96 0.01 0.68 +chanoinesse chanoinesse NOM f s 0.00 0.54 0.00 0.27 +chanoinesses chanoinesse NOM f p 0.00 0.54 0.00 0.27 +chanson chanson NOM f s 84.92 46.55 64.50 26.15 +chansonner chansonner VER 0.01 0.00 0.01 0.00 inf; +chansonnette chansonnette NOM f s 1.25 2.43 1.00 1.69 +chansonnettes chansonnette NOM f p 1.25 2.43 0.25 0.74 +chansonnier chansonnier NOM m s 0.03 1.62 0.03 0.61 +chansonniers chansonnier NOM m p 0.03 1.62 0.00 1.01 +chansons chanson NOM f p 84.92 46.55 20.42 20.41 +chanstiquait chanstiquer VER 0.00 1.22 0.00 0.07 ind:imp:3s; +chanstique chanstiquer VER 0.00 1.22 0.00 0.41 ind:pre:1s;ind:pre:3s; +chanstiquent chanstiquer VER 0.00 1.22 0.00 0.07 ind:pre:3p; +chanstiquer chanstiquer VER 0.00 1.22 0.00 0.20 inf; +chanstiquèrent chanstiquer VER 0.00 1.22 0.00 0.07 ind:pas:3p; +chanstiqué chanstiquer VER m s 0.00 1.22 0.00 0.34 par:pas; +chanstiquée chanstiquer VER f s 0.00 1.22 0.00 0.07 par:pas; +chant chant NOM m s 25.90 42.03 17.64 28.38 +chanta chanter VER 166.34 125.81 0.43 6.62 ind:pas:3s; +chantage chantage NOM m s 8.51 7.64 8.50 7.43 +chantages chantage NOM m p 8.51 7.64 0.01 0.20 +chantai chanter VER 166.34 125.81 0.00 0.14 ind:pas:1s; +chantaient chanter VER 166.34 125.81 1.98 8.24 ind:imp:3p; +chantais chanter VER 166.34 125.81 3.56 1.22 ind:imp:1s;ind:imp:2s; +chantait chanter VER 166.34 125.81 8.76 22.57 ind:imp:3s; +chantant chanter VER 166.34 125.81 4.34 10.14 par:pre; +chantante chantant ADJ f s 1.03 7.36 0.23 3.24 +chantantes chantant ADJ f p 1.03 7.36 0.02 0.68 +chantants chantant ADJ m p 1.03 7.36 0.21 0.47 +chante chanter VER 166.34 125.81 56.16 18.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chanteau chanteau NOM m s 0.00 0.14 0.00 0.14 +chantent chanter VER 166.34 125.81 7.10 7.70 ind:pre:3p; +chanter chanter VER 166.34 125.81 48.12 34.26 inf; +chantera chanter VER 166.34 125.81 2.39 0.68 ind:fut:3s; +chanterai chanter VER 166.34 125.81 1.31 0.41 ind:fut:1s; +chanteraient chanter VER 166.34 125.81 0.09 0.20 cnd:pre:3p; +chanterais chanter VER 166.34 125.81 0.50 0.07 cnd:pre:1s;cnd:pre:2s; +chanterait chanter VER 166.34 125.81 0.31 0.74 cnd:pre:3s; +chanteras chanter VER 166.34 125.81 0.79 0.07 ind:fut:2s; +chanterelle chanterelle NOM f s 0.05 0.27 0.01 0.14 +chanterelles chanterelle NOM f p 0.05 0.27 0.04 0.14 +chanterez chanter VER 166.34 125.81 0.45 0.14 ind:fut:2p; +chanteriez chanter VER 166.34 125.81 0.04 0.00 cnd:pre:2p; +chanterons chanter VER 166.34 125.81 0.25 0.00 ind:fut:1p; +chanteront chanter VER 166.34 125.81 0.46 0.27 ind:fut:3p; +chantes chanter VER 166.34 125.81 6.97 2.09 ind:pre:2s; +chanteur chanteur NOM m s 20.25 20.07 9.80 9.19 +chanteurs chanteur NOM m p 20.25 20.07 2.65 4.93 +chanteuse_vedette chanteuse_vedette NOM f s 0.00 0.07 0.00 0.07 +chanteuse chanteur NOM f s 20.25 20.07 7.81 4.39 +chanteuses chanteuse NOM f p 0.91 0.00 0.91 0.00 +chantez chanter VER 166.34 125.81 8.26 0.74 imp:pre:2p;ind:pre:2p; +chançard chançard NOM m s 0.17 0.07 0.16 0.07 +chançarde chançard NOM f s 0.17 0.07 0.01 0.00 +chantier chantier NOM m s 12.96 22.50 9.93 15.14 +chantiers chantier NOM m p 12.96 22.50 3.03 7.36 +chantiez chanter VER 166.34 125.81 0.81 0.00 ind:imp:2p; +chantilly chantilly NOM f s 0.59 0.74 0.59 0.74 +chantions chanter VER 166.34 125.81 0.24 0.95 ind:imp:1p; +chantâmes chanter VER 166.34 125.81 0.00 0.14 ind:pas:1p; +chantonna chantonner VER 2.84 14.86 0.00 2.43 ind:pas:3s; +chantonnai chantonner VER 2.84 14.86 0.00 0.07 ind:pas:1s; +chantonnaient chantonner VER 2.84 14.86 0.00 0.41 ind:imp:3p; +chantonnais chantonner VER 2.84 14.86 0.01 0.14 ind:imp:1s; +chantonnait chantonner VER 2.84 14.86 0.02 3.65 ind:imp:3s; +chantonnant chantonner VER 2.84 14.86 0.03 2.57 par:pre; +chantonnante chantonnant ADJ f s 0.00 0.41 0.00 0.20 +chantonne chantonner VER 2.84 14.86 2.27 2.50 imp:pre:2s;ind:pre:3s;sub:pre:3s; +chantonnement chantonnement NOM m s 0.00 0.74 0.00 0.74 +chantonnent chantonner VER 2.84 14.86 0.14 0.34 ind:pre:3p; +chantonner chantonner VER 2.84 14.86 0.35 2.23 inf; +chantonnèrent chantonner VER 2.84 14.86 0.00 0.07 ind:pas:3p; +chantonné chantonner VER m s 2.84 14.86 0.03 0.34 par:pas; +chantonnée chantonner VER f s 2.84 14.86 0.00 0.07 par:pas; +chantonnés chantonner VER m p 2.84 14.86 0.00 0.07 par:pas; +chantons chanter VER 166.34 125.81 3.98 0.54 imp:pre:1p;ind:pre:1p; +chantât chanter VER 166.34 125.81 0.00 0.27 sub:imp:3s; +chantoung chantoung NOM m s 0.00 0.20 0.00 0.20 +chantourner chantourner VER 0.00 0.68 0.00 0.07 inf; +chantourné chantourner VER m s 0.00 0.68 0.00 0.14 par:pas; +chantournées chantourner VER f p 0.00 0.68 0.00 0.27 par:pas; +chantournés chantourner VER m p 0.00 0.68 0.00 0.20 par:pas; +chantre chantre NOM m s 0.46 1.82 0.44 1.35 +chantrerie chantrerie NOM f s 0.01 0.00 0.01 0.00 +chantres chantre NOM m p 0.46 1.82 0.02 0.47 +chants chant NOM m p 25.90 42.03 8.26 13.65 +chantèrent chanter VER 166.34 125.81 0.17 0.95 ind:pas:3p; +chanté chanter VER m s 166.34 125.81 7.81 6.15 par:pas; +chantée chanter VER f s 166.34 125.81 0.94 1.01 par:pas; +chantées chanter VER f p 166.34 125.81 0.06 0.81 par:pas; +chantés chanter VER m p 166.34 125.81 0.08 0.27 par:pas; +chanvre chanvre NOM m s 0.77 2.91 0.77 2.84 +chanvres chanvre NOM m p 0.77 2.91 0.00 0.07 +chao chao ADV 0.15 0.07 0.15 0.07 +chaos chaos NOM m 11.30 10.20 11.30 10.20 +chaotique chaotique ADJ s 0.95 2.57 0.76 1.89 +chaotiquement chaotiquement ADV 0.00 0.07 0.00 0.07 +chaotiques chaotique ADJ p 0.95 2.57 0.20 0.68 +chaouch chaouch NOM m s 0.00 0.54 0.00 0.34 +chaouchs chaouch NOM m p 0.00 0.54 0.00 0.20 +chaparda chaparder VER 0.16 1.28 0.00 0.07 ind:pas:3s; +chapardage chapardage NOM m s 0.09 0.27 0.06 0.07 +chapardages chapardage NOM m p 0.09 0.27 0.02 0.20 +chapardait chaparder VER 0.16 1.28 0.01 0.14 ind:imp:3s; +chapardant chaparder VER 0.16 1.28 0.01 0.00 par:pre; +chapardent chaparder VER 0.16 1.28 0.01 0.14 ind:pre:3p; +chaparder chaparder VER 0.16 1.28 0.08 0.74 inf; +chapardeur chapardeur NOM m s 0.07 0.68 0.02 0.20 +chapardeurs chapardeur NOM m p 0.07 0.68 0.03 0.41 +chapardeuse chapardeur NOM f s 0.07 0.68 0.02 0.07 +chapardé chaparder VER m s 0.16 1.28 0.04 0.07 par:pas; +chapardée chaparder VER f s 0.16 1.28 0.00 0.07 par:pas; +chapardées chaparder VER f p 0.16 1.28 0.00 0.07 par:pas; +chaparral chaparral NOM m s 0.12 0.00 0.10 0.00 +chaparrals chaparral NOM m p 0.12 0.00 0.02 0.00 +chape chape NOM f s 0.10 2.23 0.10 2.16 +chapeau chapeau NOM m s 54.91 88.04 48.61 72.91 +chapeautait chapeauter VER 0.08 1.08 0.01 0.07 ind:imp:3s; +chapeaute chapeauter VER 0.08 1.08 0.04 0.14 ind:pre:1s;ind:pre:3s; +chapeauter chapeauter VER 0.08 1.08 0.01 0.07 inf; +chapeauté chapeauté ADJ m s 0.01 0.95 0.01 0.14 +chapeautée chapeauter VER f s 0.08 1.08 0.02 0.27 par:pas; +chapeautées chapeauté ADJ f p 0.01 0.95 0.00 0.20 +chapeautés chapeauté ADJ m p 0.01 0.95 0.00 0.20 +chapeaux chapeau NOM m p 54.91 88.04 6.29 15.14 +chapelain chapelain NOM m s 0.21 0.74 0.21 0.61 +chapelains chapelain NOM m p 0.21 0.74 0.00 0.14 +chapelet chapelet NOM m s 1.91 12.91 1.54 9.73 +chapelets chapelet NOM m p 1.91 12.91 0.37 3.18 +chapelier chapelier NOM m s 0.24 0.88 0.23 0.61 +chapeliers chapelier NOM m p 0.24 0.88 0.01 0.27 +chapelle chapelle NOM f s 7.42 35.88 7.37 32.36 +chapellerie chapellerie NOM f s 0.00 0.20 0.00 0.20 +chapelles chapelle NOM f p 7.42 35.88 0.05 3.51 +chapelure chapelure NOM f s 0.31 0.54 0.31 0.47 +chapelures chapelure NOM f p 0.31 0.54 0.00 0.07 +chaperon chaperon NOM m s 3.84 1.35 3.71 1.22 +chaperonnais chaperonner VER 0.28 0.54 0.01 0.07 ind:imp:1s; +chaperonnait chaperonner VER 0.28 0.54 0.01 0.20 ind:imp:3s; +chaperonner chaperonner VER 0.28 0.54 0.21 0.07 inf; +chaperonné chaperonner VER m s 0.28 0.54 0.03 0.07 par:pas; +chaperonnée chaperonner VER f s 0.28 0.54 0.01 0.07 par:pas; +chaperonnés chaperonner VER m p 0.28 0.54 0.01 0.07 par:pas; +chaperons chaperon NOM m p 3.84 1.35 0.13 0.14 +chapes chape NOM f p 0.10 2.23 0.00 0.07 +chapiteau chapiteau NOM m s 1.84 3.45 1.83 1.96 +chapiteau_dortoir chapiteau_dortoir NOM m p 0.00 0.07 0.00 0.07 +chapiteaux chapiteau NOM m p 1.84 3.45 0.01 1.49 +chapitre chapitre NOM m s 13.00 38.65 12.10 35.81 +chapitrer chapitrer VER 0.35 1.35 0.02 0.47 inf; +chapitres chapitre NOM m p 13.00 38.65 0.91 2.84 +chapitré chapitrer VER m s 0.35 1.35 0.02 0.20 par:pas; +chapitrée chapitrer VER f s 0.35 1.35 0.01 0.14 par:pas; +chapitrées chapitrer VER f p 0.35 1.35 0.00 0.14 par:pas; +chapka chapka NOM f s 0.23 1.15 0.23 1.15 +chaplinesque chaplinesque ADJ f s 0.00 0.14 0.00 0.14 +chapon chapon NOM m s 1.16 0.41 0.58 0.20 +chapons chapon NOM m p 1.16 0.41 0.58 0.20 +chappe chappe NOM m s 0.00 0.20 0.00 0.20 +chapska chapska NOM m s 0.00 0.20 0.00 0.14 +chapskas chapska NOM m p 0.00 0.20 0.00 0.07 +chapés chapé ADJ m p 0.00 0.07 0.00 0.07 +chaque chaque ADJ:ind s 246.29 486.35 246.29 486.35 +char char NOM m s 11.86 27.57 8.60 7.91 +charabia charabia NOM m s 2.46 1.55 2.46 1.42 +charabias charabia NOM m p 2.46 1.55 0.00 0.14 +charade charade NOM f s 0.53 0.74 0.12 0.27 +charades charade NOM f p 0.53 0.74 0.41 0.47 +charale charale NOM f s 0.03 0.00 0.03 0.00 +charançon charançon NOM m s 0.20 0.47 0.07 0.14 +charançonné charançonné ADJ m s 0.00 0.27 0.00 0.07 +charançonnée charançonné ADJ f s 0.00 0.27 0.00 0.07 +charançonnés charançonné ADJ m p 0.00 0.27 0.00 0.14 +charançons charançon NOM m p 0.20 0.47 0.14 0.34 +charbon charbon NOM m s 9.24 24.59 8.39 21.96 +charbonnages charbonnage NOM m p 0.27 0.68 0.27 0.68 +charbonnaient charbonner VER 0.00 1.28 0.00 0.14 ind:imp:3p; +charbonnait charbonner VER 0.00 1.28 0.00 0.20 ind:imp:3s; +charbonne charbonner VER 0.00 1.28 0.00 0.27 ind:pre:3s; +charbonnent charbonner VER 0.00 1.28 0.00 0.14 ind:pre:3p; +charbonner charbonner VER 0.00 1.28 0.00 0.07 inf; +charbonnette charbonnette NOM f s 0.00 0.14 0.00 0.14 +charbonneuse charbonneux ADJ f s 0.00 4.46 0.00 1.01 +charbonneuses charbonneux ADJ f p 0.00 4.46 0.00 0.95 +charbonneux charbonneux ADJ m 0.00 4.46 0.00 2.50 +charbonnier charbonnier ADJ m s 0.13 0.95 0.10 0.61 +charbonniers charbonnier NOM m p 0.04 2.36 0.03 1.01 +charbonnière charbonnier ADJ f s 0.13 0.95 0.02 0.34 +charbonnières charbonnière NOM f p 0.00 0.47 0.00 0.14 +charbonné charbonner VER m s 0.00 1.28 0.00 0.14 par:pas; +charbonnées charbonner VER f p 0.00 1.28 0.00 0.14 par:pas; +charbonnés charbonner VER m p 0.00 1.28 0.00 0.20 par:pas; +charbons charbon NOM m p 9.24 24.59 0.85 2.64 +charca charca NOM s 0.00 0.47 0.00 0.47 +charcutage charcutage NOM m s 0.04 0.14 0.04 0.14 +charcutaient charcuter VER 1.15 1.15 0.00 0.14 ind:imp:3p; +charcutaille charcutaille NOM f s 0.01 0.27 0.01 0.27 +charcutait charcuter VER 1.15 1.15 0.03 0.07 ind:imp:3s; +charcute charcuter VER 1.15 1.15 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +charcuter charcuter VER 1.15 1.15 0.60 0.47 inf; +charcuterie charcuterie NOM f s 0.94 5.20 0.81 4.32 +charcuteries charcuterie NOM f p 0.94 5.20 0.14 0.88 +charcutez charcuter VER 1.15 1.15 0.01 0.14 imp:pre:2p;ind:pre:2p; +charcutier charcutier NOM m s 0.04 4.73 0.03 2.70 +charcutiers charcutier NOM m p 0.04 4.73 0.01 0.81 +charcutière charcutier NOM f s 0.04 4.73 0.00 0.95 +charcutières charcutier NOM f p 0.04 4.73 0.00 0.27 +charcuté charcuter VER m s 1.15 1.15 0.20 0.00 par:pas; +charcutée charcuter VER f s 1.15 1.15 0.05 0.07 par:pas; +charcutées charcuter VER f p 1.15 1.15 0.01 0.07 par:pas; +charcutés charcuter VER m p 1.15 1.15 0.00 0.07 par:pas; +chardon chardon NOM m s 0.28 3.38 0.20 1.01 +chardonay chardonay NOM m s 0.04 0.00 0.04 0.00 +chardonnay chardonnay NOM m s 0.41 0.00 0.41 0.00 +chardonneret chardonneret NOM m s 0.10 0.34 0.00 0.07 +chardonnerets chardonneret NOM m p 0.10 0.34 0.10 0.27 +chardons chardon NOM m p 0.28 3.38 0.08 2.36 +charentaise charentais NOM f s 0.01 2.09 0.00 0.07 +charentaises charentais NOM f p 0.01 2.09 0.01 2.03 +charge charger VER 93.02 122.16 28.43 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +chargea charger VER 93.02 122.16 0.24 4.46 ind:pas:3s; +chargeai charger VER 93.02 122.16 0.01 1.35 ind:pas:1s; +chargeaient charger VER 93.02 122.16 0.14 2.43 ind:imp:3p; +chargeais charger VER 93.02 122.16 0.43 0.47 ind:imp:1s;ind:imp:2s; +chargeait charger VER 93.02 122.16 0.68 7.16 ind:imp:3s; +chargeant charger VER 93.02 122.16 0.14 1.82 par:pre; +chargement chargement NOM m s 7.14 6.42 6.37 5.68 +chargements chargement NOM m p 7.14 6.42 0.78 0.74 +chargent charger VER 93.02 122.16 1.63 2.03 ind:pre:3p; +chargeons charger VER 93.02 122.16 0.53 0.14 imp:pre:1p;ind:pre:1p; +chargeât charger VER 93.02 122.16 0.00 0.34 sub:imp:3s; +charger charger VER 93.02 122.16 15.58 10.20 inf; +chargera charger VER 93.02 122.16 2.56 0.95 ind:fut:3s; +chargerai charger VER 93.02 122.16 1.92 0.68 ind:fut:1s; +chargeraient charger VER 93.02 122.16 0.14 0.68 cnd:pre:3p; +chargerais charger VER 93.02 122.16 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +chargerait charger VER 93.02 122.16 0.22 1.08 cnd:pre:3s; +chargeras charger VER 93.02 122.16 0.28 0.07 ind:fut:2s; +chargerez charger VER 93.02 122.16 0.37 0.07 ind:fut:2p; +chargerons charger VER 93.02 122.16 0.24 0.14 ind:fut:1p; +chargeront charger VER 93.02 122.16 0.39 0.34 ind:fut:3p; +charges charge NOM f p 32.86 41.28 7.88 5.20 +chargeur chargeur NOM m s 4.63 3.72 3.68 2.77 +chargeurs chargeur NOM m p 4.63 3.72 0.95 0.95 +chargez charger VER 93.02 122.16 5.37 0.54 imp:pre:2p;ind:pre:2p; +chargiez charger VER 93.02 122.16 0.11 0.00 ind:imp:2p; +chargions charger VER 93.02 122.16 0.01 0.20 ind:imp:1p; +chargèrent charger VER 93.02 122.16 0.01 1.15 ind:pas:3p; +chargé charger VER m s 93.02 122.16 23.18 40.07 par:pas; +chargée charger VER f s 93.02 122.16 4.81 13.65 par:pas; +chargées charger VER f p 93.02 122.16 0.81 5.68 par:pas; +chargés charger VER m p 93.02 122.16 3.30 18.24 par:pas; +charia charia NOM f s 0.01 0.00 0.01 0.00 +chariot chariot NOM m s 14.40 14.12 12.12 8.45 +chariots chariot NOM m p 14.40 14.12 2.28 5.68 +charismatique charismatique ADJ s 0.54 0.14 0.54 0.14 +charisme charisme NOM m s 0.75 0.07 0.75 0.07 +charitable charitable ADJ s 4.16 3.78 2.90 2.70 +charitablement charitablement ADV 0.01 0.47 0.01 0.47 +charitables charitable ADJ p 4.16 3.78 1.26 1.08 +charité charité NOM f s 13.75 14.53 13.54 14.32 +charités charité NOM f p 13.75 14.53 0.21 0.20 +charivari charivari NOM m s 0.08 1.08 0.07 0.95 +charivaris charivari NOM m p 0.08 1.08 0.01 0.14 +charlatan charlatan NOM m s 4.44 1.08 3.07 0.47 +charlataner charlataner VER 0.00 0.07 0.00 0.07 inf; +charlatanerie charlatanerie NOM f s 0.02 0.07 0.02 0.07 +charlatanisme charlatanisme NOM m s 0.16 0.34 0.16 0.20 +charlatanismes charlatanisme NOM m p 0.16 0.34 0.00 0.14 +charlatans charlatan NOM m p 4.44 1.08 1.37 0.61 +charleston charleston NOM m s 0.27 0.41 0.27 0.41 +charlot charlot NOM m s 0.46 0.20 0.18 0.00 +charlots charlot NOM m p 0.46 0.20 0.28 0.20 +charlotte charlotte NOM f s 0.99 0.61 0.97 0.54 +charlottes charlotte NOM f p 0.99 0.61 0.01 0.07 +charma charmer VER 5.69 6.96 0.00 0.14 ind:pas:3s; +charmaient charmer VER 5.69 6.96 0.00 0.41 ind:imp:3p; +charmait charmer VER 5.69 6.96 0.13 1.01 ind:imp:3s; +charmant charmant ADJ m s 54.51 41.15 27.52 19.86 +charmante charmant ADJ f s 54.51 41.15 21.04 14.32 +charmantes charmant ADJ f p 54.51 41.15 2.23 3.38 +charmants charmant ADJ m p 54.51 41.15 3.72 3.58 +charme charme NOM m s 22.92 53.45 19.70 43.65 +charment charmer VER 5.69 6.96 0.04 0.34 ind:pre:3p; +charmer charmer VER 5.69 6.96 1.30 0.81 inf; +charmera charmer VER 5.69 6.96 0.01 0.07 ind:fut:3s; +charmes charme NOM m p 22.92 53.45 3.22 9.80 +charmeur charmeur ADJ m s 1.01 1.76 0.93 0.88 +charmeurs charmeur ADJ m p 1.01 1.76 0.03 0.34 +charmeuse charmeuse NOM f s 0.14 0.00 0.14 0.00 +charmeuses charmeur NOM f p 0.94 1.35 0.00 0.47 +charmille charmille NOM f s 0.02 1.55 0.02 1.22 +charmilles charmille NOM f p 0.02 1.55 0.00 0.34 +charmé charmer VER m s 5.69 6.96 1.11 1.22 par:pas; +charmée charmé ADJ f s 0.73 1.08 0.34 0.20 +charmés charmer VER m p 5.69 6.96 0.05 0.00 par:pas; +charnel charnel ADJ m s 2.10 11.01 0.74 3.99 +charnelle charnel ADJ f s 2.10 11.01 0.59 4.46 +charnellement charnellement ADV 0.00 0.61 0.00 0.61 +charnelles charnel ADJ f p 2.10 11.01 0.18 1.62 +charnels charnel ADJ m p 2.10 11.01 0.58 0.95 +charnier charnier NOM m s 0.84 3.72 0.42 3.04 +charniers charnier NOM m p 0.84 3.72 0.41 0.68 +charnière charnière NOM f s 0.38 1.82 0.32 1.08 +charnières charnière NOM f p 0.38 1.82 0.06 0.74 +charnu charnu ADJ m s 0.76 6.15 0.06 1.28 +charnue charnu ADJ f s 0.76 6.15 0.35 2.23 +charnues charnu ADJ f p 0.76 6.15 0.31 1.69 +charnus charnu ADJ m p 0.76 6.15 0.03 0.95 +charognard charognard NOM m s 0.85 2.03 0.37 0.41 +charognards charognard NOM m p 0.85 2.03 0.48 1.62 +charogne charogne NOM f s 3.64 7.16 2.58 5.07 +charognerie charognerie NOM f s 0.00 0.27 0.00 0.27 +charognes charogne NOM f p 3.64 7.16 1.06 2.09 +charolaise charolais NOM f s 0.00 0.14 0.00 0.07 +charolaises charolais NOM f p 0.00 0.14 0.00 0.07 +charpente charpente NOM f s 0.59 5.27 0.58 4.05 +charpenter charpenter VER 0.01 0.34 0.00 0.07 inf; +charpenterie charpenterie NOM f s 0.04 0.00 0.04 0.00 +charpentes charpente NOM f p 0.59 5.27 0.01 1.22 +charpentier charpentier NOM m s 2.57 3.11 2.11 1.82 +charpentiers charpentier NOM m p 2.57 3.11 0.45 1.28 +charpentière charpentier NOM f s 2.57 3.11 0.01 0.00 +charpenté charpenté ADJ m s 0.02 0.47 0.01 0.20 +charpentée charpenté ADJ f s 0.02 0.47 0.01 0.20 +charpentés charpenté ADJ m p 0.02 0.47 0.00 0.07 +charpie charpie NOM f s 0.52 2.50 0.52 2.43 +charpies charpie NOM f p 0.52 2.50 0.00 0.07 +charre charre NOM m s 0.18 2.03 0.18 1.69 +charres charre NOM m p 0.18 2.03 0.00 0.34 +charretier charretier NOM m s 0.19 1.89 0.16 1.01 +charretiers charretier NOM m p 0.19 1.89 0.01 0.54 +charretière charretier NOM f s 0.19 1.89 0.02 0.34 +charreton charreton NOM m s 0.00 0.61 0.00 0.54 +charretons charreton NOM m p 0.00 0.61 0.00 0.07 +charrette charrette NOM f s 6.98 20.95 6.63 16.82 +charrettes charrette NOM f p 6.98 20.95 0.36 4.12 +charretée charretée NOM f s 0.01 0.74 0.01 0.34 +charretées charretée NOM f p 0.01 0.74 0.00 0.41 +charria charrier VER 4.24 12.36 0.26 0.14 ind:pas:3s; +charriage charriage NOM m s 0.00 0.14 0.00 0.14 +charriaient charrier VER 4.24 12.36 0.01 0.54 ind:imp:3p; +charriais charrier VER 4.24 12.36 0.03 0.14 ind:imp:1s; +charriait charrier VER 4.24 12.36 0.02 1.35 ind:imp:3s; +charriant charrier VER 4.24 12.36 0.14 1.49 par:pre; +charrie charrier VER 4.24 12.36 1.37 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +charrient charrier VER 4.24 12.36 0.04 0.61 ind:pre:3p; +charrier charrier VER 4.24 12.36 0.82 3.11 inf; +charrieras charrier VER 4.24 12.36 0.01 0.00 ind:fut:2s; +charrierons charrier VER 4.24 12.36 0.00 0.07 ind:fut:1p; +charrieront charrier VER 4.24 12.36 0.01 0.07 ind:fut:3p; +charries charrier VER 4.24 12.36 0.79 0.61 ind:pre:2s;sub:pre:2s; +charrieurs charrieur NOM m p 0.01 0.00 0.01 0.00 +charriez charrier VER 4.24 12.36 0.41 0.81 imp:pre:2p;ind:pre:2p; +charrions charrier VER 4.24 12.36 0.01 0.00 imp:pre:1p; +charrière charrier NOM f s 0.00 0.20 0.00 0.07 +charrièrent charrier VER 4.24 12.36 0.00 0.07 ind:pas:3p; +charrières charrier NOM f p 0.00 0.20 0.00 0.14 +charrié charrier VER m s 4.24 12.36 0.28 1.22 par:pas; +charriée charrier VER f s 4.24 12.36 0.03 0.20 par:pas; +charriées charrier VER f p 4.24 12.36 0.03 0.20 par:pas; +charriés charrier VER m p 4.24 12.36 0.00 0.14 par:pas; +charroi charroi NOM m s 0.00 1.82 0.00 0.95 +charrois charroi NOM m p 0.00 1.82 0.00 0.88 +charron charron NOM m s 0.03 0.47 0.03 0.34 +charronnées charronner VER f p 0.00 0.07 0.00 0.07 par:pas; +charrons charron NOM m p 0.03 0.47 0.00 0.14 +charrue charrue NOM f s 1.54 4.32 1.50 3.38 +charrues charrue NOM f p 1.54 4.32 0.05 0.95 +charruée charruer VER f s 0.00 0.07 0.00 0.07 par:pas; +chars char NOM m p 11.86 27.57 3.27 19.66 +charte charte NOM f s 1.07 2.30 1.04 1.82 +charter charter NOM m s 0.99 0.74 0.75 0.27 +charters charter NOM m p 0.99 0.74 0.25 0.47 +chartes charte NOM f p 1.07 2.30 0.03 0.47 +chartiste chartiste NOM s 0.00 0.34 0.00 0.20 +chartistes chartiste NOM p 0.00 0.34 0.00 0.14 +chartre chartre NOM f s 0.01 0.00 0.01 0.00 +chartreuse chartreux NOM f s 0.34 1.15 0.06 0.34 +chartreuses chartreux NOM f p 0.34 1.15 0.00 0.14 +chartreux chartreux NOM m 0.34 1.15 0.28 0.68 +charybde charybde NOM m s 0.16 0.68 0.16 0.68 +chas chas NOM m 0.74 0.47 0.74 0.47 +chassa chasser VER 54.93 67.91 0.47 4.46 ind:pas:3s; +chassai chasser VER 54.93 67.91 0.14 0.27 ind:pas:1s; +chassaient chasser VER 54.93 67.91 0.26 2.03 ind:imp:3p; +chassais chasser VER 54.93 67.91 0.93 0.47 ind:imp:1s;ind:imp:2s; +chassait chasser VER 54.93 67.91 0.90 7.30 ind:imp:3s; +chassant chasser VER 54.93 67.91 0.68 3.11 par:pre; +chasse_d_eau chasse_d_eau NOM f s 0.00 0.07 0.00 0.07 +chasse_goupille chasse_goupille NOM f p 0.00 0.20 0.00 0.20 +chasse_mouche chasse_mouche NOM m s 0.00 0.14 0.00 0.14 +chasse_mouches chasse_mouches NOM m 0.12 0.61 0.12 0.61 +chasse_neige chasse_neige NOM m 0.58 0.54 0.58 0.54 +chasse_pierres chasse_pierres NOM m 0.01 0.00 0.01 0.00 +chasse chasse NOM f s 47.99 59.46 46.80 53.38 +chasselas chasselas NOM m 0.01 0.14 0.01 0.14 +chassent chasser VER 54.93 67.91 1.45 0.88 ind:pre:3p; +chasser chasser VER 54.93 67.91 19.86 20.81 inf; +chassera chasser VER 54.93 67.91 1.41 0.61 ind:fut:3s; +chasserai chasser VER 54.93 67.91 0.80 0.20 ind:fut:1s; +chasseraient chasser VER 54.93 67.91 0.02 0.07 cnd:pre:3p; +chasserais chasser VER 54.93 67.91 0.23 0.00 cnd:pre:1s;cnd:pre:2s; +chasserait chasser VER 54.93 67.91 0.15 0.41 cnd:pre:3s; +chasseras chasser VER 54.93 67.91 0.04 0.14 ind:fut:2s; +chasseresse chasseur NOM f s 34.91 41.55 0.46 0.41 +chasseresses chasseresse NOM f p 0.01 0.00 0.01 0.00 +chasserez chasser VER 54.93 67.91 0.07 0.07 ind:fut:2p; +chasserions chasser VER 54.93 67.91 0.01 0.00 cnd:pre:1p; +chasserons chasser VER 54.93 67.91 0.36 0.14 ind:fut:1p; +chasseront chasser VER 54.93 67.91 0.69 0.07 ind:fut:3p; +chasses chasser VER 54.93 67.91 1.71 0.20 ind:pre:2s; +chasseur chasseur NOM m s 34.91 41.55 21.27 23.58 +chasseurs chasseur NOM m p 34.91 41.55 12.88 17.43 +chasseuse chasseur NOM f s 34.91 41.55 0.30 0.07 +chassez chasser VER 54.93 67.91 2.97 0.61 imp:pre:2p;ind:pre:2p; +chassie chassie NOM f s 0.05 0.14 0.05 0.14 +chassieuse chassieux ADJ f s 0.14 1.35 0.00 0.07 +chassieux chassieux ADJ m 0.14 1.35 0.14 1.28 +chassiez chasser VER 54.93 67.91 0.35 0.07 ind:imp:2p; +chassions chasser VER 54.93 67.91 0.04 0.27 ind:imp:1p; +chassons chasser VER 54.93 67.91 0.47 0.07 imp:pre:1p;ind:pre:1p; +chassât chasser VER 54.93 67.91 0.00 0.27 sub:imp:3s; +chassèrent chasser VER 54.93 67.91 0.02 0.27 ind:pas:3p; +chassé_croisé chassé_croisé NOM m s 0.02 1.01 0.00 0.68 +chassé chasser VER m s 54.93 67.91 6.62 10.14 par:pas; +chassée chasser VER f s 54.93 67.91 1.71 2.77 par:pas; +chassées chasser VER f p 54.93 67.91 0.16 0.81 par:pas; +chassé_croisé chassé_croisé NOM m p 0.02 1.01 0.02 0.34 +chassés chasser VER m p 54.93 67.91 1.64 3.04 par:pas; +chaste chaste ADJ s 2.22 5.14 1.50 4.32 +chastement chastement ADV 0.01 0.54 0.01 0.54 +chastes chaste ADJ p 2.22 5.14 0.72 0.81 +chasteté chasteté NOM f s 2.37 3.92 2.37 3.92 +chasuble chasuble NOM f s 0.11 1.76 0.09 0.95 +chasubles chasuble NOM f p 0.11 1.76 0.02 0.81 +chat_huant chat_huant NOM m s 0.00 0.27 0.00 0.27 +chat_tigre chat_tigre NOM m s 0.00 0.14 0.00 0.14 +chat chat NOM m s 90.25 130.74 57.71 59.26 +chateaubriand chateaubriand NOM m s 0.17 0.27 0.15 0.20 +chateaubriands chateaubriand NOM m p 0.17 0.27 0.02 0.07 +chatière chatière NOM f s 0.14 0.54 0.14 0.54 +chatoiement chatoiement NOM m s 0.05 1.35 0.05 1.01 +chatoiements chatoiement NOM m p 0.05 1.35 0.00 0.34 +chatoient chatoyer VER 0.00 0.81 0.00 0.07 ind:pre:3p; +chaton chaton NOM m s 4.41 4.66 3.32 2.50 +chatonne chatonner VER 0.01 0.00 0.01 0.00 ind:pre:3s; +chatons chaton NOM m p 4.41 4.66 1.09 2.16 +chatouilla chatouiller VER 7.04 7.36 0.00 0.41 ind:pas:3s; +chatouillaient chatouiller VER 7.04 7.36 0.01 0.61 ind:imp:3p; +chatouillait chatouiller VER 7.04 7.36 0.37 1.55 ind:imp:3s; +chatouillant chatouiller VER 7.04 7.36 0.11 0.34 par:pre; +chatouille chatouiller VER 7.04 7.36 3.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chatouillement chatouillement NOM m s 0.17 0.81 0.15 0.74 +chatouillements chatouillement NOM m p 0.17 0.81 0.01 0.07 +chatouillent chatouiller VER 7.04 7.36 0.06 0.27 ind:pre:3p; +chatouiller chatouiller VER 7.04 7.36 0.85 1.69 inf; +chatouillera chatouiller VER 7.04 7.36 0.04 0.00 ind:fut:3s; +chatouilles chatouiller VER 7.04 7.36 1.95 0.14 ind:pre:2s; +chatouilleuse chatouilleux ADJ f s 1.00 0.95 0.34 0.20 +chatouilleuses chatouilleux ADJ f p 1.00 0.95 0.03 0.00 +chatouilleux chatouilleux ADJ m 1.00 0.95 0.63 0.74 +chatouillez chatouiller VER 7.04 7.36 0.23 0.07 imp:pre:2p;ind:pre:2p; +chatouillis chatouillis NOM m 0.02 0.34 0.02 0.34 +chatouillons chatouiller VER 7.04 7.36 0.01 0.00 imp:pre:1p; +chatouillât chatouiller VER 7.04 7.36 0.00 0.14 sub:imp:3s; +chatouillèrent chatouiller VER 7.04 7.36 0.00 0.27 ind:pas:3p; +chatouillé chatouiller VER m s 7.04 7.36 0.14 0.47 par:pas; +chatouillée chatouiller VER f s 7.04 7.36 0.01 0.41 par:pas; +chatouillées chatouiller VER f p 7.04 7.36 0.00 0.07 par:pas; +chatouillés chatouiller VER m p 7.04 7.36 0.00 0.20 par:pas; +chatoyaient chatoyer VER 0.00 0.81 0.00 0.14 ind:imp:3p; +chatoyait chatoyer VER 0.00 0.81 0.00 0.07 ind:imp:3s; +chatoyant chatoyant ADJ m s 0.44 2.03 0.29 0.74 +chatoyante chatoyant ADJ f s 0.44 2.03 0.02 0.54 +chatoyantes chatoyant ADJ f p 0.44 2.03 0.10 0.47 +chatoyants chatoyant ADJ m p 0.44 2.03 0.03 0.27 +chatoyer chatoyer VER 0.00 0.81 0.00 0.20 inf; +chats chat NOM m p 90.25 130.74 16.00 38.11 +chattant chatter VER 0.45 0.00 0.14 0.00 par:pre; +chatte chat NOM f s 90.25 130.74 16.54 29.12 +chattemite chattemite NOM f s 0.00 0.14 0.00 0.14 +chatter chatter VER 0.45 0.00 0.30 0.00 inf; +chatterie chatterie NOM f s 0.01 0.54 0.00 0.20 +chatteries chatterie NOM f p 0.01 0.54 0.01 0.34 +chatterton chatterton NOM m s 0.21 0.34 0.21 0.34 +chattes chatte NOM f p 2.75 0.00 2.75 0.00 +chattons chatter VER 0.45 0.00 0.01 0.00 imp:pre:1p; +chaud_froid chaud_froid NOM m s 0.00 0.41 0.00 0.34 +chaud chaud ADJ m s 84.16 113.31 50.20 46.42 +chaude_pisse chaude_pisse NOM f s 0.15 0.34 0.15 0.27 +chaude chaud ADJ f s 84.16 113.31 22.48 45.47 +chaudement chaudement ADV 1.07 2.64 1.07 2.64 +chaude_pisse chaude_pisse NOM f p 0.15 0.34 0.00 0.07 +chaudes chaud ADJ f p 84.16 113.31 4.89 13.18 +chaudière chaudière NOM f s 2.62 3.51 1.89 3.11 +chaudières chaudière NOM f p 2.62 3.51 0.73 0.41 +chaudron chaudron NOM m s 1.12 5.81 0.79 4.26 +chaudronnerie chaudronnerie NOM f s 0.00 0.34 0.00 0.27 +chaudronneries chaudronnerie NOM f p 0.00 0.34 0.00 0.07 +chaudronnier chaudronnier NOM m s 0.02 0.47 0.02 0.34 +chaudronniers chaudronnier NOM m p 0.02 0.47 0.00 0.14 +chaudronné chaudronner VER m s 0.00 0.07 0.00 0.07 par:pas; +chaudronnée chaudronnée NOM f s 0.00 0.07 0.00 0.07 +chaudrons chaudron NOM m p 1.12 5.81 0.33 1.55 +chaud_froid chaud_froid NOM m p 0.00 0.41 0.00 0.07 +chauds chaud ADJ m p 84.16 113.31 6.59 8.24 +chauffa chauffer VER 21.75 29.80 0.00 0.34 ind:pas:3s; +chauffage chauffage NOM m s 4.96 6.08 4.96 6.08 +chauffagiste chauffagiste NOM m s 0.04 0.00 0.04 0.00 +chauffaient chauffer VER 21.75 29.80 0.12 1.01 ind:imp:3p; +chauffais chauffer VER 21.75 29.80 0.03 0.27 ind:imp:1s;ind:imp:2s; +chauffait chauffer VER 21.75 29.80 0.34 3.72 ind:imp:3s; +chauffant chauffant ADJ m s 0.58 0.41 0.09 0.00 +chauffante chauffant ADJ f s 0.58 0.41 0.30 0.34 +chauffantes chauffant ADJ f p 0.58 0.41 0.08 0.07 +chauffants chauffant ADJ m p 0.58 0.41 0.11 0.00 +chauffard chauffard NOM m s 1.62 0.95 1.38 0.47 +chauffards chauffard NOM m p 1.62 0.95 0.24 0.47 +chauffe_biberon chauffe_biberon NOM m s 0.10 0.00 0.10 0.00 +chauffe_eau chauffe_eau NOM m 0.63 0.61 0.63 0.61 +chauffe_plats chauffe_plats NOM m 0.00 0.14 0.00 0.14 +chauffe chauffer VER 21.75 29.80 7.01 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chauffent chauffer VER 21.75 29.80 0.52 0.61 ind:pre:3p; +chauffer chauffer VER 21.75 29.80 9.06 10.14 inf; +chauffera chauffer VER 21.75 29.80 0.28 0.07 ind:fut:3s; +chaufferai chauffer VER 21.75 29.80 0.05 0.00 ind:fut:1s; +chaufferette chaufferette NOM f s 0.12 0.81 0.12 0.68 +chaufferettes chaufferette NOM f p 0.12 0.81 0.00 0.14 +chaufferie chaufferie NOM f s 0.64 0.88 0.63 0.81 +chaufferies chaufferie NOM f p 0.64 0.88 0.01 0.07 +chauffes chauffer VER 21.75 29.80 0.42 0.00 ind:pre:2s; +chauffeur_livreur chauffeur_livreur NOM m s 0.00 0.14 0.00 0.14 +chauffeur chauffeur NOM m s 40.59 49.86 37.35 44.19 +chauffeurs chauffeur NOM m p 40.59 49.86 3.19 5.00 +chauffeuse chauffeur NOM f s 40.59 49.86 0.05 0.68 +chauffez chauffer VER 21.75 29.80 0.70 0.27 imp:pre:2p;ind:pre:2p; +chauffiez chauffer VER 21.75 29.80 0.01 0.00 ind:imp:2p; +chauffions chauffer VER 21.75 29.80 0.00 0.07 ind:imp:1p; +chauffâmes chauffer VER 21.75 29.80 0.00 0.07 ind:pas:1p; +chauffons chauffer VER 21.75 29.80 0.22 0.14 imp:pre:1p;ind:pre:1p; +chauffèrent chauffer VER 21.75 29.80 0.00 0.07 ind:pas:3p; +chauffé chauffer VER m s 21.75 29.80 1.75 3.58 par:pas; +chauffée chauffer VER f s 21.75 29.80 0.78 2.91 par:pas; +chauffées chauffer VER f p 21.75 29.80 0.08 0.74 par:pas; +chauffés chauffer VER m p 21.75 29.80 0.35 1.62 par:pas; +chaule chauler VER 0.00 1.22 0.00 0.07 ind:pre:3s; +chauler chauler VER 0.00 1.22 0.00 0.07 inf; +chaulé chauler VER m s 0.00 1.22 0.00 0.07 par:pas; +chaulée chauler VER f s 0.00 1.22 0.00 0.14 par:pas; +chaulées chauler VER f p 0.00 1.22 0.00 0.20 par:pas; +chaulés chauler VER m p 0.00 1.22 0.00 0.68 par:pas; +chaume chaume NOM m s 0.36 7.09 0.36 4.86 +chaumes chaume NOM m p 0.36 7.09 0.00 2.23 +chaumine chaumine NOM f s 0.11 0.47 0.11 0.41 +chaumines chaumine NOM f p 0.11 0.47 0.00 0.07 +chaumière chaumière NOM f s 1.47 2.77 1.23 1.08 +chaumières chaumière NOM f p 1.47 2.77 0.24 1.69 +chaumé chaumer VER m s 0.00 0.07 0.00 0.07 par:pas; +chaussa chausser VER 1.27 15.61 0.00 1.28 ind:pas:3s; +chaussai chausser VER 1.27 15.61 0.00 0.07 ind:pas:1s; +chaussaient chausser VER 1.27 15.61 0.00 0.20 ind:imp:3p; +chaussait chausser VER 1.27 15.61 0.02 0.88 ind:imp:3s; +chaussant chaussant ADJ m s 0.03 0.00 0.03 0.00 +chausse_pied chausse_pied NOM m s 0.24 0.14 0.24 0.14 +chausse_trape chausse_trape NOM f s 0.00 0.20 0.00 0.07 +chausse_trape chausse_trape NOM f p 0.00 0.20 0.00 0.14 +chausse_trappe chausse_trappe NOM f s 0.00 0.07 0.00 0.07 +chausse chausser VER 1.27 15.61 0.74 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chaussent chausser VER 1.27 15.61 0.01 0.20 ind:pre:3p; +chausser chausser VER 1.27 15.61 0.17 1.42 inf; +chausserai chausser VER 1.27 15.61 0.00 0.07 ind:fut:1s; +chausses chausser VER 1.27 15.61 0.16 0.07 ind:pre:2s; +chaussette chaussette NOM f s 16.45 22.84 3.29 4.39 +chaussettes chaussette NOM f p 16.45 22.84 13.16 18.45 +chausseur chausseur NOM m s 0.07 0.54 0.07 0.41 +chausseurs chausseur NOM m p 0.07 0.54 0.00 0.14 +chaussez chausser VER 1.27 15.61 0.06 0.00 imp:pre:2p;ind:pre:2p; +chausson chausson NOM m s 3.50 5.95 0.67 0.61 +chaussons chausson NOM m p 3.50 5.95 2.83 5.34 +chaussèrent chausser VER 1.27 15.61 0.00 0.14 ind:pas:3p; +chaussé chausser VER m s 1.27 15.61 0.06 4.53 par:pas; +chaussée chaussée NOM f s 1.87 24.32 1.64 22.36 +chaussées chaussée NOM f p 1.87 24.32 0.23 1.96 +chaussure chaussure NOM f s 73.58 56.49 12.49 8.78 +chaussures chaussure NOM f p 73.58 56.49 61.09 47.70 +chaussés chausser VER m p 1.27 15.61 0.03 3.65 par:pas; +chaut chaut VER 0.01 0.34 0.01 0.34 inf; +chauve_souris chauve_souris NOM f s 7.16 4.66 5.43 2.23 +chauve chauve ADJ s 5.92 10.81 5.25 9.46 +chauve_souris chauve_souris NOM f p 7.16 4.66 1.73 2.43 +chauves chauve NOM p 5.20 5.47 0.72 0.34 +chauvin chauvin ADJ m s 0.43 2.50 0.32 2.30 +chauvine chauvin NOM f s 0.04 2.03 0.00 0.07 +chauvines chauvin ADJ f p 0.43 2.50 0.01 0.14 +chauvinisme chauvinisme NOM m s 0.08 0.74 0.08 0.74 +chauviniste chauviniste NOM s 0.03 0.00 0.03 0.00 +chauvins chauvin ADJ m p 0.43 2.50 0.10 0.07 +chauvit chauvir VER 0.00 0.07 0.00 0.07 ind:pas:3s; +chaux chaux NOM f 1.32 7.36 1.32 7.36 +chavignol chavignol NOM m s 0.00 0.07 0.00 0.07 +chavira chavirer VER 2.41 8.65 0.00 0.68 ind:pas:3s; +chavirai chavirer VER 2.41 8.65 0.00 0.07 ind:pas:1s; +chaviraient chavirer VER 2.41 8.65 0.00 0.27 ind:imp:3p; +chavirait chavirer VER 2.41 8.65 0.02 1.08 ind:imp:3s; +chavirant chavirer VER 2.41 8.65 0.00 0.07 par:pre; +chavirante chavirant ADJ f s 0.00 0.27 0.00 0.20 +chavire chavirer VER 2.41 8.65 0.43 0.95 ind:pre:1s;ind:pre:3s; +chavirement chavirement NOM m s 0.14 0.34 0.14 0.20 +chavirements chavirement NOM m p 0.14 0.34 0.00 0.14 +chavirent chavirer VER 2.41 8.65 0.02 0.34 ind:pre:3p; +chavirer chavirer VER 2.41 8.65 1.01 2.36 inf; +chavireraient chavirer VER 2.41 8.65 0.00 0.07 cnd:pre:3p; +chavirerait chavirer VER 2.41 8.65 0.01 0.07 cnd:pre:3s; +chavireront chavirer VER 2.41 8.65 0.00 0.07 ind:fut:3p; +chavirions chavirer VER 2.41 8.65 0.00 0.07 ind:imp:1p; +chavirons chavirer VER 2.41 8.65 0.14 0.07 ind:pre:1p; +chavirèrent chavirer VER 2.41 8.65 0.00 0.14 ind:pas:3p; +chaviré chavirer VER m s 2.41 8.65 0.62 1.49 par:pas; +chavirée chavirer VER f s 2.41 8.65 0.16 0.34 par:pas; +chavirés chavirer VER m p 2.41 8.65 0.01 0.54 par:pas; +cheap cheap ADJ m s 0.50 0.14 0.50 0.14 +check_list check_list NOM f s 0.22 0.00 0.22 0.00 +check_up check_up NOM m 0.69 0.00 0.68 0.00 +check_up check_up NOM m 0.69 0.00 0.01 0.00 +cheddar cheddar NOM m s 0.53 0.00 0.53 0.00 +cheddite cheddite NOM f s 0.00 0.20 0.00 0.20 +cheese_cake cheese_cake NOM m s 0.32 0.00 0.28 0.00 +cheese_cake cheese_cake NOM m p 0.32 0.00 0.05 0.00 +cheeseburger cheeseburger NOM m s 3.06 0.00 2.22 0.00 +cheeseburgers cheeseburger NOM m p 3.06 0.00 0.84 0.00 +chef_adjoint chef_adjoint NOM s 0.04 0.00 0.04 0.00 +chef_d_oeuvre chef_d_oeuvre NOM m s 3.34 12.77 2.56 8.51 +chef_d_oeuvres chef_d_oeuvres NOM s 0.11 0.00 0.11 0.00 +chef_lieu chef_lieu NOM m s 0.19 1.82 0.19 1.82 +chef chef NOM s 205.26 205.95 189.79 172.57 +chef_d_oeuvre chef_d_oeuvre NOM m p 3.34 12.77 0.77 4.26 +chefs_lieux chefs_lieux NOM m p 0.00 0.27 0.00 0.27 +chefs chef NOM p 205.26 205.95 15.46 33.38 +cheftaine cheftaine NOM f s 0.13 0.54 0.13 0.27 +cheftaines cheftaine NOM f p 0.13 0.54 0.00 0.27 +cheik cheik NOM m s 0.48 0.95 0.45 0.88 +cheikh cheikh NOM m s 0.32 0.00 0.32 0.00 +cheiks cheik NOM m p 0.48 0.95 0.04 0.07 +chelem chelem NOM m s 0.31 0.20 0.31 0.20 +chemin chemin NOM m s 125.18 231.42 114.34 197.50 +chemina cheminer VER 0.87 8.99 0.01 0.07 ind:pas:3s; +cheminaient cheminer VER 0.87 8.99 0.00 0.74 ind:imp:3p; +cheminait cheminer VER 0.87 8.99 0.10 0.88 ind:imp:3s; +cheminant cheminer VER 0.87 8.99 0.04 1.42 par:pre; +chemine cheminer VER 0.87 8.99 0.48 1.15 ind:pre:1s;ind:pre:3s; +chemineau chemineau NOM m s 0.04 1.62 0.02 0.95 +chemineaux chemineau NOM m p 0.04 1.62 0.02 0.68 +cheminement cheminement NOM m s 0.18 6.08 0.17 4.86 +cheminements cheminement NOM m p 0.18 6.08 0.01 1.22 +cheminent cheminer VER 0.87 8.99 0.02 0.47 ind:pre:3p; +cheminer cheminer VER 0.87 8.99 0.02 2.23 inf; +chemineraient cheminer VER 0.87 8.99 0.00 0.07 cnd:pre:3p; +cheminerait cheminer VER 0.87 8.99 0.00 0.07 cnd:pre:3s; +cheminerons cheminer VER 0.87 8.99 0.00 0.07 ind:fut:1p; +chemineront cheminer VER 0.87 8.99 0.00 0.07 ind:fut:3p; +cheminions cheminer VER 0.87 8.99 0.00 0.07 ind:imp:1p; +cheminâmes cheminer VER 0.87 8.99 0.00 0.07 ind:pas:1p; +cheminons cheminer VER 0.87 8.99 0.01 0.20 imp:pre:1p;ind:pre:1p; +cheminot cheminot NOM m s 1.42 2.50 1.06 1.01 +cheminots cheminot NOM m p 1.42 2.50 0.35 1.49 +chemins chemin NOM m p 125.18 231.42 10.85 33.92 +cheminèrent cheminer VER 0.87 8.99 0.00 0.14 ind:pas:3p; +cheminé cheminer VER m s 0.87 8.99 0.11 1.15 par:pas; +cheminée cheminée NOM f s 11.39 43.99 9.99 36.28 +cheminées cheminée NOM f p 11.39 43.99 1.40 7.70 +chemise chemise NOM f s 43.66 91.42 36.48 74.59 +chemiser chemiser VER 0.21 0.07 0.14 0.07 inf; +chemiserie chemiserie NOM f s 0.16 0.14 0.16 0.14 +chemises chemise NOM f p 43.66 91.42 7.18 16.82 +chemisette chemisette NOM f s 0.16 4.12 0.15 2.77 +chemisettes chemisette NOM f p 0.16 4.12 0.01 1.35 +chemisier chemisier NOM m s 4.00 7.97 3.77 6.76 +chemisiers chemisier NOM m p 4.00 7.97 0.23 1.22 +chemisée chemiser VER f s 0.21 0.07 0.02 0.00 par:pas; +chemisées chemiser VER f p 0.21 0.07 0.05 0.00 par:pas; +chenal chenal NOM m s 0.24 4.73 0.20 3.65 +chenapan chenapan NOM m s 1.08 0.88 0.72 0.41 +chenapans chenapan NOM m p 1.08 0.88 0.36 0.47 +chenaux chenal NOM m p 0.24 4.73 0.04 1.08 +chenet chenet NOM m s 0.06 0.81 0.01 0.14 +chenets chenet NOM m p 0.06 0.81 0.04 0.68 +chenil chenil NOM m s 1.40 3.24 1.30 2.77 +chenille chenille NOM f s 2.14 5.68 1.38 2.50 +chenilles chenille NOM f p 2.14 5.68 0.76 3.18 +chenillette chenillette NOM f s 0.06 0.34 0.06 0.07 +chenillettes chenillette NOM f p 0.06 0.34 0.00 0.27 +chenillé chenillé ADJ m s 0.00 0.14 0.00 0.07 +chenillés chenillé ADJ m p 0.00 0.14 0.00 0.07 +chenils chenil NOM m p 1.40 3.24 0.09 0.47 +chenu chenu ADJ m s 0.26 1.22 0.14 0.54 +chenue chenu ADJ f s 0.26 1.22 0.01 0.34 +chenues chenu ADJ f p 0.26 1.22 0.10 0.14 +chenus chenu ADJ m p 0.26 1.22 0.00 0.20 +cheptel cheptel NOM m s 0.09 1.35 0.09 1.35 +cher cher ADJ m s 205.75 133.65 130.70 90.47 +chercha chercher VER 712.46 448.99 0.96 27.03 ind:pas:3s; +cherchai chercher VER 712.46 448.99 0.92 4.93 ind:pas:1s; +cherchaient chercher VER 712.46 448.99 4.01 11.76 ind:imp:3p; +cherchais chercher VER 712.46 448.99 26.40 15.34 ind:imp:1s;ind:imp:2s; +cherchait chercher VER 712.46 448.99 16.27 52.50 ind:imp:3s; +cherchant chercher VER 712.46 448.99 5.90 31.62 par:pre; +cherchas chercher VER 712.46 448.99 0.00 0.07 ind:pas:2s; +cherche_midi cherche_midi NOM m 0.01 0.27 0.01 0.27 +cherche chercher VER 712.46 448.99 150.75 66.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +cherchent chercher VER 712.46 448.99 17.53 12.09 ind:pre:3p;sub:pre:3p; +chercher chercher VER 712.46 448.99 341.01 172.36 inf;;inf;;inf;; +cherchera chercher VER 712.46 448.99 2.11 1.01 ind:fut:3s; +chercherai chercher VER 712.46 448.99 2.39 0.74 ind:fut:1s; +chercheraient chercher VER 712.46 448.99 0.40 0.47 cnd:pre:3p; +chercherais chercher VER 712.46 448.99 1.52 0.54 cnd:pre:1s;cnd:pre:2s; +chercherait chercher VER 712.46 448.99 1.06 1.69 cnd:pre:3s; +chercheras chercher VER 712.46 448.99 0.50 0.14 ind:fut:2s; +chercherez chercher VER 712.46 448.99 0.19 0.07 ind:fut:2p; +chercheriez chercher VER 712.46 448.99 0.04 0.14 cnd:pre:2p; +chercherions chercher VER 712.46 448.99 0.00 0.14 cnd:pre:1p; +chercherons chercher VER 712.46 448.99 0.86 0.20 ind:fut:1p; +chercheront chercher VER 712.46 448.99 1.04 0.81 ind:fut:3p; +cherches chercher VER 712.46 448.99 36.45 5.81 ind:pre:2s;sub:pre:2s; +chercheur chercheur NOM m s 5.71 3.78 2.66 1.76 +chercheurs chercheur NOM m p 5.71 3.78 2.58 1.96 +chercheuse chercheur NOM f s 5.71 3.78 0.48 0.07 +chercheuses chercheur ADJ f p 1.35 0.81 0.06 0.00 +cherchez chercher VER 712.46 448.99 42.95 7.36 imp:pre:2p;ind:pre:2p; +cherchiez chercher VER 712.46 448.99 4.79 0.74 ind:imp:2p;sub:pre:2p; +cherchions chercher VER 712.46 448.99 2.04 2.03 ind:imp:1p;sub:pre:1p; +cherchâmes chercher VER 712.46 448.99 0.00 0.20 ind:pas:1p; +cherchons chercher VER 712.46 448.99 13.13 2.03 imp:pre:1p;ind:pre:1p; +cherchât chercher VER 712.46 448.99 0.00 0.95 sub:imp:3s; +cherchèrent chercher VER 712.46 448.99 0.19 2.03 ind:pas:3p; +cherché chercher VER m s 712.46 448.99 32.27 24.53 par:pas; +cherchée chercher VER f s 712.46 448.99 5.56 2.03 par:pas; +cherchées chercher VER f p 712.46 448.99 0.43 0.54 par:pas; +cherchés chercher VER m p 712.46 448.99 0.81 0.41 par:pas; +chergui chergui NOM m s 0.00 0.74 0.00 0.74 +cherokee cherokee NOM m s 0.34 0.27 0.21 0.07 +cherokees cherokee NOM m p 0.34 0.27 0.13 0.20 +cherres cherrer VER 0.00 0.07 0.00 0.07 ind:pre:2s; +cherry cherry NOM m s 0.13 0.34 0.13 0.34 +chers cher ADJ m p 205.75 133.65 28.61 13.99 +cherté cherté NOM f s 0.00 0.47 0.00 0.47 +chester chester NOM m s 0.12 0.07 0.12 0.07 +chevai chever VER 0.45 0.00 0.45 0.00 ind:pas:1s; +cheval_vapeur cheval_vapeur NOM m s 0.03 0.20 0.02 0.07 +cheval cheval NOM m s 129.12 179.26 85.42 110.27 +chevaler chevaler VER 0.00 0.14 0.00 0.07 inf; +chevaleresque chevaleresque ADJ s 0.40 1.22 0.39 0.95 +chevaleresquement chevaleresquement ADV 0.00 0.07 0.00 0.07 +chevaleresques chevaleresque ADJ m p 0.40 1.22 0.01 0.27 +chevalerie chevalerie NOM f s 0.77 2.23 0.77 2.09 +chevaleries chevalerie NOM f p 0.77 2.23 0.00 0.14 +chevalet chevalet NOM m s 0.53 6.22 0.47 4.93 +chevalets chevalet NOM m p 0.53 6.22 0.05 1.28 +chevalier chevalier NOM m s 15.91 36.15 10.77 21.89 +chevaliers chevalier NOM m p 15.91 36.15 5.14 14.26 +chevalin chevalin ADJ m s 0.18 1.82 0.03 0.68 +chevaline chevalin ADJ f s 0.18 1.82 0.14 1.01 +chevalins chevalin ADJ m p 0.18 1.82 0.00 0.14 +chevalière chevalière NOM f s 0.47 2.97 0.45 2.43 +chevalières chevalière NOM f p 0.47 2.97 0.02 0.54 +chevalée chevaler VER f s 0.00 0.14 0.00 0.07 par:pas; +chevance chevance NOM f s 0.00 0.20 0.00 0.20 +chevau_léger chevau_léger NOM m s 0.01 0.14 0.01 0.14 +chevaucha chevaucher VER 3.67 12.77 0.01 0.34 ind:pas:3s; +chevauchaient chevaucher VER 3.67 12.77 0.17 1.62 ind:imp:3p; +chevauchais chevaucher VER 3.67 12.77 0.05 0.07 ind:imp:1s;ind:imp:2s; +chevauchait chevaucher VER 3.67 12.77 0.22 1.69 ind:imp:3s; +chevauchant chevaucher VER 3.67 12.77 0.30 2.09 par:pre; +chevauche chevaucher VER 3.67 12.77 0.79 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chevauchement chevauchement NOM m s 0.14 0.14 0.14 0.14 +chevauchent chevaucher VER 3.67 12.77 0.18 1.69 ind:pre:3p; +chevaucher chevaucher VER 3.67 12.77 1.00 2.16 inf; +chevauchera chevaucher VER 3.67 12.77 0.02 0.00 ind:fut:3s; +chevaucherai chevaucher VER 3.67 12.77 0.26 0.00 ind:fut:1s; +chevaucheraient chevaucher VER 3.67 12.77 0.00 0.07 cnd:pre:3p; +chevaucheur chevaucheur NOM m s 0.00 0.07 0.00 0.07 +chevauchez chevaucher VER 3.67 12.77 0.08 0.00 imp:pre:2p;ind:pre:2p; +chevauchons chevaucher VER 3.67 12.77 0.09 0.14 imp:pre:1p;ind:pre:1p; +chevauchèrent chevaucher VER 3.67 12.77 0.00 0.27 ind:pas:3p; +chevauché chevaucher VER m s 3.67 12.77 0.35 0.61 par:pas; +chevauchée chevauchée NOM f s 0.56 4.19 0.42 2.50 +chevauchées chevauchée NOM f p 0.56 4.19 0.14 1.69 +chevauchés chevaucher VER m p 3.67 12.77 0.00 0.14 par:pas; +cheval_vapeur cheval_vapeur NOM m p 0.03 0.20 0.01 0.14 +chevaux cheval NOM m p 129.12 179.26 43.70 68.99 +chevelu chevelu ADJ m s 1.53 4.66 1.31 2.36 +chevelue chevelu ADJ f s 1.53 4.66 0.04 0.81 +chevelues chevelu ADJ f p 1.53 4.66 0.00 0.34 +chevelure chevelure NOM f s 2.52 27.50 2.50 25.07 +chevelures chevelure NOM f p 2.52 27.50 0.02 2.43 +chevelus chevelu ADJ m p 1.53 4.66 0.18 1.15 +chevesne chevesne NOM m s 0.02 1.35 0.02 0.95 +chevesnes chevesne NOM m p 0.02 1.35 0.00 0.41 +chevet chevet NOM m s 3.27 18.92 3.27 18.51 +chevets chevet NOM m p 3.27 18.92 0.00 0.41 +cheveu cheveu NOM m s 121.27 270.68 5.11 7.50 +cheveux cheveu NOM m p 121.27 270.68 116.16 263.18 +chevillage chevillage NOM m s 0.00 0.07 0.00 0.07 +chevillard chevillard NOM m s 0.00 0.14 0.00 0.07 +chevillards chevillard NOM m p 0.00 0.14 0.00 0.07 +cheville cheville NOM f s 12.24 22.16 8.79 8.99 +chevilles cheville NOM f p 12.24 22.16 3.45 13.18 +chevillette chevillette NOM f s 0.10 0.07 0.10 0.07 +chevillé cheviller VER m s 0.16 0.88 0.14 0.41 par:pas; +chevillée cheviller VER f s 0.16 0.88 0.01 0.41 par:pas; +chevillées cheviller VER f p 0.16 0.88 0.00 0.07 par:pas; +cheviotte cheviotte NOM f s 0.00 0.20 0.00 0.20 +chevir chevir VER 0.27 0.00 0.27 0.00 inf; +chevreau chevreau NOM m s 0.84 3.38 0.44 2.36 +chevreaux chevreau NOM m p 0.84 3.38 0.40 1.01 +chevrette chevrette NOM f s 0.11 0.81 0.11 0.68 +chevrettes chevrette NOM f p 0.11 0.81 0.00 0.14 +chevreuil chevreuil NOM m s 1.58 5.14 1.31 2.97 +chevreuils chevreuil NOM m p 1.58 5.14 0.26 2.16 +chevrier chevrier NOM m s 0.35 0.27 0.20 0.14 +chevriers chevrier NOM m p 0.35 0.27 0.14 0.07 +chevrière chevrier NOM f s 0.35 0.27 0.00 0.07 +chevron chevron NOM m s 1.36 2.50 0.96 0.41 +chevronné chevronné ADJ m s 0.31 1.01 0.11 0.47 +chevronnée chevronner VER f s 0.04 0.14 0.00 0.07 par:pas; +chevronnés chevronné ADJ m p 0.31 1.01 0.20 0.54 +chevrons chevron NOM m p 1.36 2.50 0.40 2.09 +chevrota chevroter VER 0.03 1.28 0.00 0.20 ind:pas:3s; +chevrotais chevroter VER 0.03 1.28 0.00 0.07 ind:imp:1s; +chevrotait chevroter VER 0.03 1.28 0.00 0.34 ind:imp:3s; +chevrotant chevroter VER 0.03 1.28 0.00 0.07 par:pre; +chevrotante chevrotant ADJ f s 0.14 1.15 0.14 1.15 +chevrote chevroter VER 0.03 1.28 0.01 0.27 ind:pre:1s;ind:pre:3s; +chevrotement chevrotement NOM m s 0.00 0.41 0.00 0.34 +chevrotements chevrotement NOM m p 0.00 0.41 0.00 0.07 +chevroter chevroter VER 0.03 1.28 0.02 0.20 inf; +chevrotine chevrotine NOM f s 0.78 1.42 0.43 0.54 +chevrotines chevrotine NOM f p 0.78 1.42 0.35 0.88 +chevroté chevroter VER m s 0.03 1.28 0.00 0.07 par:pas; +chevrotée chevroter VER f s 0.03 1.28 0.00 0.07 par:pas; +chevêche chevêche NOM f s 0.00 0.41 0.00 0.27 +chevêches chevêche NOM f p 0.00 0.41 0.00 0.14 +chewing_gum chewing_gum NOM m s 0.01 3.58 0.00 3.11 +chewing_gum chewing_gum NOM m p 0.01 3.58 0.01 0.41 +chewing_gum chewing_gum NOM m s 0.01 3.58 0.00 0.07 +chez_soi chez_soi NOM m 0.31 0.41 0.31 0.41 +chez chez PRE 842.18 680.54 842.18 680.54 +chi chi NOM m s 1.29 0.54 1.29 0.54 +chia chier VER 67.53 22.64 0.02 0.00 ind:pas:3s; +chiader chiader VER 0.14 0.47 0.05 0.14 inf; +chiadé chiader VER m s 0.14 0.47 0.06 0.27 par:pas; +chiadée chiader VER f s 0.14 0.47 0.02 0.00 par:pas; +chiadées chiader VER f p 0.14 0.47 0.01 0.07 par:pas; +chiaient chier VER 67.53 22.64 0.39 0.00 ind:imp:3p; +chiais chier VER 67.53 22.64 1.30 0.00 ind:imp:1s;ind:imp:2s; +chiait chier VER 67.53 22.64 0.12 0.07 ind:imp:3s; +chiala chialer VER 7.25 13.78 0.00 0.07 ind:pas:3s; +chialaient chialer VER 7.25 13.78 0.01 0.00 ind:imp:3p; +chialais chialer VER 7.25 13.78 0.17 0.41 ind:imp:1s;ind:imp:2s; +chialait chialer VER 7.25 13.78 0.20 0.74 ind:imp:3s; +chialant chialer VER 7.25 13.78 0.01 0.74 par:pre; +chiale chialer VER 7.25 13.78 1.28 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chialent chialer VER 7.25 13.78 0.34 0.14 ind:pre:3p; +chialer chialer VER 7.25 13.78 4.01 6.28 inf; +chialera chialer VER 7.25 13.78 0.03 0.00 ind:fut:3s; +chialeraient chialer VER 7.25 13.78 0.00 0.07 cnd:pre:3p; +chialerais chialer VER 7.25 13.78 0.11 0.20 cnd:pre:1s; +chialerait chialer VER 7.25 13.78 0.00 0.07 cnd:pre:3s; +chialeras chialer VER 7.25 13.78 0.00 0.07 ind:fut:2s; +chialeries chialerie NOM f p 0.00 0.07 0.00 0.07 +chiales chialer VER 7.25 13.78 0.72 0.47 ind:pre:2s; +chialeur chialeur NOM m s 0.04 0.07 0.03 0.00 +chialeuse chialeur NOM f s 0.04 0.07 0.01 0.07 +chialez chialer VER 7.25 13.78 0.01 0.00 ind:pre:2p; +chialèrent chialer VER 7.25 13.78 0.00 0.07 ind:pas:3p; +chialé chialer VER m s 7.25 13.78 0.35 0.95 par:pas; +chiant chiant ADJ m s 11.89 2.84 8.46 1.01 +chiante chiant ADJ f s 11.89 2.84 2.09 1.08 +chiantes chiant ADJ f p 11.89 2.84 0.30 0.20 +chianti chianti NOM m s 0.32 0.95 0.32 0.95 +chiants chiant ADJ m p 11.89 2.84 1.03 0.54 +chiard chiard NOM m s 0.68 0.54 0.47 0.14 +chiards chiard NOM m p 0.68 0.54 0.22 0.41 +chiasma chiasma NOM m s 0.01 0.07 0.01 0.07 +chiasme chiasme NOM m s 0.01 0.00 0.01 0.00 +chiasse chiasse NOM f s 0.94 1.49 0.81 1.28 +chiasses chiasse NOM f p 0.94 1.49 0.14 0.20 +chiasseux chiasseux ADJ m s 0.02 0.20 0.02 0.20 +chiatique chiatique ADJ s 0.11 0.20 0.11 0.14 +chiatiques chiatique ADJ m p 0.11 0.20 0.00 0.07 +chibouk chibouk NOM m s 0.00 0.34 0.00 0.34 +chibre chibre NOM m s 0.25 0.74 0.25 0.74 +chic_type chic_type ADJ m s 0.01 0.00 0.01 0.00 +chic chic ONO 1.20 0.68 1.20 0.68 +chica chica NOM f s 0.71 0.07 0.68 0.07 +chicanait chicaner VER 0.59 0.68 0.01 0.07 ind:imp:3s; +chicanant chicaner VER 0.59 0.68 0.01 0.07 par:pre; +chicane chicane NOM f s 0.45 2.16 0.41 1.22 +chicanent chicaner VER 0.59 0.68 0.00 0.07 ind:pre:3p; +chicaner chicaner VER 0.59 0.68 0.24 0.20 inf; +chicaneries chicanerie NOM f p 0.03 0.00 0.03 0.00 +chicanerons chicaner VER 0.59 0.68 0.00 0.07 ind:fut:1p; +chicanes chicane NOM f p 0.45 2.16 0.04 0.95 +chicaneur chicaneur NOM m s 0.21 0.00 0.21 0.00 +chicanez chicaner VER 0.59 0.68 0.18 0.00 imp:pre:2p;ind:pre:2p; +chicanier chicanier ADJ m s 0.00 0.20 0.00 0.14 +chicaniers chicanier NOM m p 0.01 0.07 0.01 0.07 +chicanière chicanier ADJ f s 0.00 0.20 0.00 0.07 +chicano chicano ADJ m s 0.13 0.00 0.11 0.00 +chicanons chicaner VER 0.59 0.68 0.05 0.00 imp:pre:1p; +chicanos chicano NOM m p 0.25 0.07 0.19 0.00 +chicané chicaner VER m s 0.59 0.68 0.03 0.00 par:pas; +chicanées chicaner VER f p 0.59 0.68 0.00 0.07 par:pas; +chicas chica NOM f p 0.71 0.07 0.03 0.00 +chiche_kebab chiche_kebab NOM m s 0.24 0.07 0.24 0.07 +chiche chiche ONO 0.75 0.74 0.75 0.74 +chichement chichement ADV 0.04 1.42 0.04 1.42 +chiches chiche ADJ p 3.62 3.18 2.12 1.22 +chichi chichi NOM m s 1.46 5.00 0.55 3.04 +chichis chichi NOM m p 1.46 5.00 0.91 1.96 +chichiteuse chichiteux ADJ f s 0.02 0.68 0.01 0.34 +chichiteuses chichiteux ADJ f p 0.02 0.68 0.00 0.27 +chichiteux chichiteux ADJ m p 0.02 0.68 0.01 0.07 +chicon chicon NOM m s 0.05 0.00 0.05 0.00 +chicore chicorer VER 0.00 0.61 0.00 0.27 ind:pre:1s;ind:pre:3s; +chicorent chicorer VER 0.00 0.61 0.00 0.14 ind:pre:3p; +chicorer chicorer VER 0.00 0.61 0.00 0.07 inf; +chicores chicorer VER 0.00 0.61 0.00 0.07 ind:pre:2s; +chicoré chicorer VER m s 0.00 0.61 0.00 0.07 par:pas; +chicorée chicorée NOM f s 0.59 1.69 0.59 1.42 +chicorées chicorée NOM f p 0.59 1.69 0.00 0.27 +chicot chicot NOM m s 0.22 3.58 0.14 0.14 +chicote chicot NOM f s 0.22 3.58 0.03 0.54 +chicoter chicoter VER 0.00 0.14 0.00 0.07 inf; +chicotin chicotin NOM m s 0.01 0.00 0.01 0.00 +chicots chicot NOM m p 0.22 3.58 0.06 2.91 +chicotte chicotte NOM f s 0.00 0.07 0.00 0.07 +chicoté chicoter VER m s 0.00 0.14 0.00 0.07 par:pas; +chics chic ADJ p 19.57 14.32 1.95 1.82 +chie chier VER 67.53 22.64 4.31 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +chien_assis chien_assis NOM m 0.00 0.07 0.00 0.07 +chien_loup chien_loup NOM m s 0.27 1.08 0.14 1.08 +chien_robot chien_robot NOM m s 0.01 0.00 0.01 0.00 +chien_étoile chien_étoile NOM m s 0.00 0.07 0.00 0.07 +chien chien NOM m s 222.38 184.59 158.77 117.64 +chienchien chienchien NOM m s 0.30 0.20 0.30 0.14 +chienchiens chienchien NOM m p 0.30 0.20 0.00 0.07 +chiendent chiendent NOM m s 0.69 2.16 0.69 2.16 +chienlit chienlit NOM s 0.60 0.74 0.60 0.74 +chiennasse chienner VER 0.00 0.07 0.00 0.07 sub:imp:1s; +chienne chien NOM f s 222.38 184.59 12.84 11.55 +chiennerie chiennerie NOM f s 0.30 0.68 0.30 0.61 +chienneries chiennerie NOM f p 0.30 0.68 0.00 0.07 +chiennes chienne NOM f p 1.15 0.00 1.15 0.00 +chien_loup chien_loup NOM m p 0.27 1.08 0.12 0.00 +chiens chien NOM m p 222.38 184.59 50.76 54.53 +chient chier VER 67.53 22.64 0.89 0.34 ind:pre:3p; +chier chier VER 67.53 22.64 53.30 18.11 inf; +chiera chier VER 67.53 22.64 0.15 0.27 ind:fut:3s; +chierai chier VER 67.53 22.64 0.24 0.00 ind:fut:1s; +chierais chier VER 67.53 22.64 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +chieras chier VER 67.53 22.64 0.06 0.00 ind:fut:2s; +chierez chier VER 67.53 22.64 0.02 0.00 ind:fut:2p; +chierie chierie NOM f s 0.53 0.88 0.39 0.74 +chieries chierie NOM f p 0.53 0.88 0.14 0.14 +chieront chier VER 67.53 22.64 0.15 0.00 ind:fut:3p; +chies chier VER 67.53 22.64 1.22 0.14 ind:pre:2s; +chieur chieur NOM m s 2.29 0.88 0.96 0.34 +chieurs chieur NOM m p 2.29 0.88 0.22 0.07 +chieuse chieur NOM f s 2.29 0.88 1.11 0.47 +chieuses chieuse NOM f p 0.01 0.00 0.01 0.00 +chiez chier VER 67.53 22.64 0.21 0.20 imp:pre:2p;ind:pre:2p; +chiffe chiffe NOM f s 0.89 1.62 0.81 1.55 +chiffes chiffe NOM f p 0.89 1.62 0.09 0.07 +chiffon chiffon NOM m s 6.11 18.99 3.67 10.41 +chiffonna chiffonner VER 1.65 2.30 0.00 0.20 ind:pas:3s; +chiffonnade chiffonnade NOM f s 0.02 0.14 0.02 0.07 +chiffonnades chiffonnade NOM f p 0.02 0.14 0.00 0.07 +chiffonnaient chiffonner VER 1.65 2.30 0.01 0.07 ind:imp:3p; +chiffonnait chiffonner VER 1.65 2.30 0.06 0.61 ind:imp:3s; +chiffonnant chiffonner VER 1.65 2.30 0.01 0.14 par:pre; +chiffonne chiffonner VER 1.65 2.30 1.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chiffonner chiffonner VER 1.65 2.30 0.06 0.34 inf; +chiffonnier chiffonnier NOM m s 0.99 3.58 0.76 1.62 +chiffonniers chiffonnier NOM m p 0.99 3.58 0.13 1.35 +chiffonnière chiffonnier NOM f s 0.99 3.58 0.10 0.54 +chiffonnières chiffonnière NOM f p 0.01 0.00 0.01 0.00 +chiffonné chiffonné ADJ m s 0.98 2.16 0.60 0.88 +chiffonnée chiffonné ADJ f s 0.98 2.16 0.25 0.41 +chiffonnées chiffonné ADJ f p 0.98 2.16 0.00 0.47 +chiffonnés chiffonné ADJ m p 0.98 2.16 0.14 0.41 +chiffons chiffon NOM m p 6.11 18.99 2.43 8.58 +chiffrable chiffrable ADJ s 0.01 0.00 0.01 0.00 +chiffrage chiffrage NOM m s 0.00 0.07 0.00 0.07 +chiffrait chiffrer VER 0.64 1.01 0.00 0.07 ind:imp:3s; +chiffrant chiffrer VER 0.64 1.01 0.02 0.00 par:pre; +chiffre chiffre NOM m s 27.28 33.11 9.38 12.70 +chiffrement chiffrement NOM m s 0.13 0.00 0.13 0.00 +chiffrent chiffrer VER 0.64 1.01 0.02 0.07 ind:pre:3p; +chiffrer chiffrer VER 0.64 1.01 0.19 0.27 inf; +chiffres_clé chiffres_clé NOM m p 0.00 0.07 0.00 0.07 +chiffres chiffre NOM m p 27.28 33.11 17.90 20.41 +chiffreur chiffreur NOM m s 0.02 0.00 0.01 0.00 +chiffreuse chiffreur NOM f s 0.02 0.00 0.01 0.00 +chiffré chiffré ADJ m s 0.07 1.35 0.05 0.41 +chiffrée chiffrer VER f s 0.64 1.01 0.16 0.00 par:pas; +chiffrées chiffré ADJ f p 0.07 1.35 0.00 0.20 +chiffrés chiffrer VER m p 0.64 1.01 0.01 0.14 par:pas; +chignole chignole NOM f s 0.31 0.47 0.30 0.34 +chignoles chignole NOM f p 0.31 0.47 0.01 0.14 +chignon chignon NOM m s 1.31 12.77 1.29 11.76 +chignons chignon NOM m p 1.31 12.77 0.02 1.01 +chihuahua chihuahua NOM m s 0.38 0.07 0.30 0.07 +chihuahuas chihuahua NOM m p 0.38 0.07 0.07 0.00 +chiites chiite NOM p 0.00 0.07 0.00 0.07 +chiles chile NOM m p 0.03 0.00 0.03 0.00 +chili chili NOM m s 2.21 0.14 2.18 0.07 +chilien chilien ADJ m s 2.21 1.28 1.03 0.07 +chilienne chilien ADJ f s 2.21 1.28 0.58 0.68 +chiliennes chilien ADJ f p 2.21 1.28 0.16 0.14 +chiliens chilien NOM m p 0.83 0.20 0.64 0.00 +chilis chili NOM m p 2.21 0.14 0.04 0.07 +chilom chilom NOM m s 0.10 0.00 0.10 0.00 +chimie chimie NOM f s 5.29 5.20 5.28 5.00 +chimies chimie NOM f p 5.29 5.20 0.01 0.20 +chimiothérapie chimiothérapie NOM f s 1.05 0.14 1.05 0.14 +chimique chimique ADJ s 10.51 4.59 5.40 1.96 +chimiquement chimiquement ADV 0.54 0.34 0.54 0.34 +chimiques chimique ADJ p 10.51 4.59 5.11 2.64 +chimiste chimiste NOM s 1.90 1.55 1.60 1.15 +chimistes chimiste NOM p 1.90 1.55 0.30 0.41 +chimpanzé chimpanzé NOM m s 2.35 1.69 1.96 1.15 +chimpanzés chimpanzé NOM m p 2.35 1.69 0.39 0.54 +chimère chimère NOM f s 2.94 5.54 1.74 2.23 +chimères chimère NOM f p 2.94 5.54 1.21 3.31 +chimérique chimérique ADJ s 0.55 2.23 0.52 1.15 +chimériquement chimériquement ADV 0.00 0.07 0.00 0.07 +chimériques chimérique ADJ p 0.55 2.23 0.03 1.08 +china chiner VER 0.81 8.45 0.76 7.57 ind:pas:3s; +chinaient chiner VER 0.81 8.45 0.00 0.07 ind:imp:3p; +chinait chiner VER 0.81 8.45 0.00 0.14 ind:imp:3s; +chinant chiner VER 0.81 8.45 0.00 0.07 par:pre; +chinchard chinchard NOM m s 0.00 0.07 0.00 0.07 +chinchilla chinchilla NOM m s 0.13 0.41 0.12 0.34 +chinchillas chinchilla NOM m p 0.13 0.41 0.01 0.07 +chine chine NOM s 0.67 0.54 0.67 0.54 +chiner chiner VER 0.81 8.45 0.04 0.14 inf; +chinera chiner VER 0.81 8.45 0.01 0.00 ind:fut:3s; +chinetoque chinetoque NOM m s 1.80 1.01 1.06 0.61 +chinetoques chinetoque NOM m p 1.80 1.01 0.74 0.41 +chineur chineur NOM m s 0.01 0.34 0.00 0.20 +chineurs chineur NOM m p 0.01 0.34 0.01 0.14 +chinois chinois NOM m s 24.73 16.22 21.88 14.59 +chinoise chinois ADJ f s 21.34 25.14 5.47 5.14 +chinoiser chinoiser VER 0.14 0.07 0.14 0.07 inf; +chinoiserie chinoiserie NOM f s 0.31 0.68 0.00 0.20 +chinoiseries chinoiserie NOM f p 0.31 0.68 0.31 0.47 +chinoises chinois ADJ f p 21.34 25.14 1.25 3.38 +chinook chinook NOM m s 0.05 0.27 0.05 0.27 +chintz chintz NOM m 0.09 0.27 0.09 0.27 +chiné chiné ADJ m s 0.03 0.41 0.03 0.20 +chinée chiné ADJ f s 0.03 0.41 0.00 0.14 +chinées chiner VER f p 0.81 8.45 0.00 0.14 par:pas; +chinés chiné ADJ m p 0.03 0.41 0.00 0.07 +chiot chiot NOM m s 5.67 2.70 3.98 1.49 +chiots chiot NOM m p 5.67 2.70 1.70 1.22 +chiotte chiotte NOM f s 12.86 14.73 1.20 1.42 +chiottes chiotte NOM f p 12.86 14.73 11.66 13.31 +chiourme chiourme NOM f s 0.00 0.20 0.00 0.20 +chip chip NOM s 2.51 0.00 2.51 0.00 +chipa chiper VER 2.34 2.97 0.00 0.14 ind:pas:3s; +chipaient chiper VER 2.34 2.97 0.00 0.14 ind:imp:3p; +chipais chiper VER 2.34 2.97 0.01 0.07 ind:imp:1s; +chipait chiper VER 2.34 2.97 0.14 0.34 ind:imp:3s; +chipant chiper VER 2.34 2.97 0.00 0.07 par:pre; +chipe chiper VER 2.34 2.97 0.45 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chiper chiper VER 2.34 2.97 0.89 0.95 inf; +chiperaient chiper VER 2.34 2.97 0.01 0.00 cnd:pre:3p; +chiperiez chiper VER 2.34 2.97 0.01 0.00 cnd:pre:2p; +chipeur chipeur ADJ m s 0.00 0.07 0.00 0.07 +chipez chiper VER 2.34 2.97 0.02 0.00 imp:pre:2p;ind:pre:2p; +chipie chipie NOM f s 0.76 0.88 0.58 0.68 +chipies chipie NOM f p 0.76 0.88 0.18 0.20 +chipolata chipolata NOM f s 0.23 0.47 0.03 0.27 +chipolatas chipolata NOM f p 0.23 0.47 0.20 0.20 +chipota chipoter VER 0.50 1.22 0.00 0.07 ind:pas:3s; +chipotage chipotage NOM m s 0.04 0.20 0.03 0.14 +chipotages chipotage NOM m p 0.04 0.20 0.02 0.07 +chipotais chipoter VER 0.50 1.22 0.00 0.07 ind:imp:1s; +chipotait chipoter VER 0.50 1.22 0.02 0.34 ind:imp:3s; +chipotant chipoter VER 0.50 1.22 0.00 0.07 par:pre; +chipote chipoter VER 0.50 1.22 0.08 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chipotent chipoter VER 0.50 1.22 0.04 0.00 ind:pre:3p; +chipoter chipoter VER 0.50 1.22 0.27 0.27 inf; +chipotes chipoter VER 0.50 1.22 0.05 0.00 ind:pre:2s; +chipoteur chipoteur ADJ m s 0.00 0.20 0.00 0.14 +chipoteuse chipoteur ADJ f s 0.00 0.20 0.00 0.07 +chipotez chipoter VER 0.50 1.22 0.01 0.00 imp:pre:2p; +chipotons chipoter VER 0.50 1.22 0.03 0.07 imp:pre:1p; +chipoté chipoter VER m s 0.50 1.22 0.00 0.07 par:pas; +chippendale chippendale NOM m s 0.12 0.00 0.01 0.00 +chippendales chippendale NOM m p 0.12 0.00 0.10 0.00 +chips chips NOM p 6.72 0.95 6.72 0.95 +chipèrent chiper VER 2.34 2.97 0.00 0.07 ind:pas:3p; +chipé chiper VER m s 2.34 2.97 0.60 0.74 par:pas; +chipée chiper VER f s 2.34 2.97 0.18 0.14 par:pas; +chipées chiper VER f p 2.34 2.97 0.01 0.14 par:pas; +chipés chiper VER m p 2.34 2.97 0.03 0.14 par:pas; +chiquaient chiquer VER 0.50 2.70 0.00 0.14 ind:imp:3p; +chiquait chiquer VER 0.50 2.70 0.05 0.20 ind:imp:3s; +chiquant chiquer VER 0.50 2.70 0.00 0.47 par:pre; +chique chique NOM f s 0.40 2.23 0.24 2.16 +chiquement chiquement ADV 0.01 0.14 0.01 0.14 +chiquenaude chiquenaude NOM f s 0.03 1.22 0.03 1.15 +chiquenaudes chiquenaude NOM f p 0.03 1.22 0.00 0.07 +chiquent chiquer VER 0.50 2.70 0.02 0.00 ind:pre:3p; +chiquer chiquer VER 0.50 2.70 0.16 1.35 inf; +chiquerai chiquer VER 0.50 2.70 0.00 0.07 ind:fut:1s; +chiqueront chiquer VER 0.50 2.70 0.00 0.07 ind:fut:3p; +chiques chique NOM f p 0.40 2.23 0.16 0.07 +chiqueur chiqueur NOM m s 0.01 0.27 0.01 0.07 +chiqueurs chiqueur NOM m p 0.01 0.27 0.00 0.14 +chiqueuses chiqueur NOM f p 0.01 0.27 0.00 0.07 +chiqué chiqué NOM m s 0.58 1.08 0.58 1.01 +chiqués chiqué NOM m p 0.58 1.08 0.00 0.07 +chiraquien chiraquien ADJ m s 0.00 0.07 0.00 0.07 +chiricahua chiricahua ADJ s 0.10 0.00 0.05 0.00 +chiricahuas chiricahua NOM p 0.19 0.00 0.16 0.00 +chiromancie chiromancie NOM f s 0.02 0.07 0.02 0.07 +chiromancien chiromancien NOM m s 0.16 0.20 0.00 0.07 +chiromancienne chiromancien NOM f s 0.16 0.20 0.14 0.07 +chiromanciens chiromancien NOM m p 0.16 0.20 0.03 0.07 +chiropracteur chiropracteur NOM m s 0.57 0.00 0.57 0.00 +chiropraticien chiropraticien NOM m s 0.06 0.00 0.04 0.00 +chiropraticienne chiropraticien NOM f s 0.06 0.00 0.02 0.00 +chiropratique chiropratique NOM f s 0.02 0.00 0.02 0.00 +chiropraxie chiropraxie NOM f s 0.07 0.00 0.07 0.00 +chiroptère chiroptère NOM m s 0.03 0.00 0.03 0.00 +chiroubles chiroubles NOM m 0.00 0.20 0.00 0.20 +chirurgical chirurgical ADJ m s 3.60 2.16 1.23 0.54 +chirurgicale chirurgical ADJ f s 3.60 2.16 1.84 1.01 +chirurgicalement chirurgicalement ADV 0.33 0.20 0.33 0.20 +chirurgicales chirurgical ADJ f p 3.60 2.16 0.27 0.41 +chirurgicaux chirurgical ADJ m p 3.60 2.16 0.26 0.20 +chirurgie chirurgie NOM f s 11.84 2.03 11.74 2.03 +chirurgien_dentiste chirurgien_dentiste NOM s 0.02 0.27 0.02 0.27 +chirurgien chirurgien NOM m s 15.57 8.45 12.38 6.89 +chirurgienne chirurgien NOM f s 15.57 8.45 0.27 0.00 +chirurgiens chirurgien NOM m p 15.57 8.45 2.92 1.55 +chirurgies chirurgie NOM f p 11.84 2.03 0.10 0.00 +chisel chisel NOM m s 0.01 0.00 0.01 0.00 +chistera chistera NOM m s 0.11 0.00 0.11 0.00 +chitine chitine NOM f s 0.01 0.07 0.01 0.07 +chitineux chitineux ADJ m p 0.00 0.07 0.00 0.07 +chiton chiton NOM m s 0.00 0.07 0.00 0.07 +chié chier VER m s 67.53 22.64 3.72 1.49 par:pas; +chiée chiée NOM f s 0.22 0.95 0.22 0.47 +chiées chier VER f p 67.53 22.64 0.01 0.00 par:pas; +chiure chiure NOM f s 0.56 1.08 0.42 0.27 +chiures chiure NOM f p 0.56 1.08 0.14 0.81 +chiés chier VER m p 67.53 22.64 0.01 0.00 par:pas; +chlamyde chlamyde NOM f s 0.00 0.20 0.00 0.20 +chlamydia chlamydia NOM f s 0.42 0.00 0.30 0.00 +chlamydiae chlamydia NOM f p 0.42 0.00 0.12 0.00 +chlass chlass ADJ 0.03 0.00 0.03 0.00 +chleuh chleuh NOM m s 0.22 0.54 0.04 0.07 +chleuhs chleuh NOM m p 0.22 0.54 0.18 0.47 +chlingue chlinguer VER 0.21 0.07 0.18 0.07 ind:pre:1s;ind:pre:3s; +chlinguer chlinguer VER 0.21 0.07 0.01 0.00 inf; +chlingues chlinguer VER 0.21 0.07 0.02 0.00 ind:pre:2s; +chloral chloral NOM m s 0.20 0.00 0.20 0.00 +chloramphénicol chloramphénicol NOM m s 0.09 0.00 0.09 0.00 +chlorate chlorate NOM m s 0.07 0.14 0.07 0.14 +chlore chlore NOM m s 0.79 0.81 0.79 0.81 +chlorer chlorer VER 0.03 0.00 0.02 0.00 inf; +chlorhydrate chlorhydrate NOM m s 0.17 0.00 0.17 0.00 +chlorhydrique chlorhydrique ADJ m s 0.22 0.07 0.22 0.07 +chlorique chlorique ADJ s 0.01 0.00 0.01 0.00 +chloroformant chloroformer VER 0.22 0.20 0.00 0.07 par:pre; +chloroforme chloroforme NOM m s 0.63 0.41 0.63 0.41 +chloroformer chloroformer VER 0.22 0.20 0.02 0.07 inf; +chloroformes chloroformer VER 0.22 0.20 0.14 0.00 ind:pre:2s; +chloroformez chloroformer VER 0.22 0.20 0.01 0.00 imp:pre:2p; +chloroformisation chloroformisation NOM f s 0.00 0.07 0.00 0.07 +chloroformé chloroformer VER m s 0.22 0.20 0.05 0.07 par:pas; +chlorophylle chlorophylle NOM f s 0.25 0.68 0.25 0.68 +chlorophyllien chlorophyllien ADJ m s 0.00 0.07 0.00 0.07 +chlorophytums chlorophytum NOM m p 0.01 0.00 0.01 0.00 +chloroplaste chloroplaste NOM m s 0.01 0.00 0.01 0.00 +chloroquine chloroquine NOM f s 0.01 0.00 0.01 0.00 +chlorotique chlorotique ADJ f s 0.00 0.27 0.00 0.14 +chlorotiques chlorotique ADJ f p 0.00 0.27 0.00 0.14 +chlorpromazine chlorpromazine NOM f s 0.06 0.00 0.06 0.00 +chloré chloré ADJ m s 0.06 0.07 0.01 0.07 +chlorée chloré ADJ f s 0.06 0.07 0.05 0.00 +chlorure chlorure NOM m s 0.33 0.14 0.32 0.07 +chlorures chlorure NOM m p 0.33 0.14 0.01 0.07 +chnoque chnoque NOM s 0.08 0.54 0.07 0.34 +chnoques chnoque NOM p 0.08 0.54 0.01 0.20 +chnord chnord NOM m s 0.00 0.07 0.00 0.07 +chnouf chnouf NOM f s 0.02 0.07 0.02 0.07 +choanes choane NOM m p 0.01 0.00 0.01 0.00 +choc choc NOM m s 31.46 44.19 30.22 37.57 +chocard chocard NOM m s 0.00 0.07 0.00 0.07 +chochotte chochotte NOM f s 1.65 0.61 1.37 0.27 +chochottes chochotte NOM f p 1.65 0.61 0.28 0.34 +chocolat chocolat NOM m s 31.03 34.86 27.74 30.61 +chocolaterie chocolaterie NOM f s 0.27 0.27 0.27 0.20 +chocolateries chocolaterie NOM f p 0.27 0.27 0.00 0.07 +chocolatier chocolatier NOM m s 0.11 0.27 0.11 0.14 +chocolatière chocolatier NOM f s 0.11 0.27 0.00 0.14 +chocolats chocolat NOM m p 31.03 34.86 3.29 4.26 +chocolaté chocolaté ADJ m s 0.81 0.07 0.17 0.07 +chocolatée chocolaté ADJ f s 0.81 0.07 0.27 0.00 +chocolatées chocolaté ADJ f p 0.81 0.07 0.36 0.00 +chocolatés chocolaté ADJ m p 0.81 0.07 0.01 0.00 +chocottes chocotte NOM f p 0.45 0.95 0.45 0.95 +chocs choc NOM m p 31.46 44.19 1.24 6.62 +choeur choeur NOM m s 7.00 26.69 6.39 24.86 +choeurs choeur NOM m p 7.00 26.69 0.61 1.82 +choie choyer VER 0.40 2.03 0.02 0.20 ind:pre:3s; +choient choyer VER 0.40 2.03 0.01 0.07 ind:pre:3p; +choieront choyer VER 0.40 2.03 0.00 0.07 ind:fut:3p; +choir choir VER 2.05 10.00 0.33 6.89 inf; +choiras choir VER 2.05 10.00 0.00 0.07 ind:fut:2s; +chois choir VER 2.05 10.00 0.01 0.27 imp:pre:2s;ind:pre:1s; +choisîmes choisir VER 170.48 133.92 0.01 0.20 ind:pas:1p; +choisît choisir VER 170.48 133.92 0.00 0.20 sub:imp:3s; +choisi choisir VER m s 170.48 133.92 58.19 44.53 par:pas; +choisie choisir VER f s 170.48 133.92 6.78 5.34 par:pas; +choisies choisir VER f p 170.48 133.92 0.67 1.55 par:pas; +choisir choisir VER 170.48 133.92 47.09 35.00 inf; +choisira choisir VER 170.48 133.92 1.92 1.01 ind:fut:3s; +choisirai choisir VER 170.48 133.92 1.27 0.47 ind:fut:1s; +choisiraient choisir VER 170.48 133.92 0.06 0.20 cnd:pre:3p; +choisirais choisir VER 170.48 133.92 1.68 0.74 cnd:pre:1s;cnd:pre:2s; +choisirait choisir VER 170.48 133.92 0.59 1.22 cnd:pre:3s; +choisiras choisir VER 170.48 133.92 0.88 0.20 ind:fut:2s; +choisirent choisir VER 170.48 133.92 0.06 0.81 ind:pas:3p; +choisirez choisir VER 170.48 133.92 0.73 0.00 ind:fut:2p; +choisiriez choisir VER 170.48 133.92 0.23 0.20 cnd:pre:2p; +choisirions choisir VER 170.48 133.92 0.04 0.07 cnd:pre:1p; +choisirons choisir VER 170.48 133.92 0.36 0.20 ind:fut:1p; +choisiront choisir VER 170.48 133.92 0.13 0.20 ind:fut:3p; +choisis choisir VER m p 170.48 133.92 21.33 8.78 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:1s;par:pas; +choisissaient choisir VER 170.48 133.92 0.16 1.08 ind:imp:3p; +choisissais choisir VER 170.48 133.92 0.41 0.81 ind:imp:1s;ind:imp:2s; +choisissait choisir VER 170.48 133.92 0.64 6.15 ind:imp:3s; +choisissant choisir VER 170.48 133.92 1.18 3.24 par:pre; +choisisse choisir VER 170.48 133.92 1.68 1.15 sub:pre:1s;sub:pre:3s; +choisissent choisir VER 170.48 133.92 2.13 1.96 ind:pre:3p; +choisisses choisir VER 170.48 133.92 0.77 0.00 sub:pre:2s; +choisissez choisir VER 170.48 133.92 9.45 1.55 imp:pre:2p;ind:pre:2p; +choisissiez choisir VER 170.48 133.92 0.23 0.27 ind:imp:2p; +choisissions choisir VER 170.48 133.92 0.08 0.27 ind:imp:1p; +choisissons choisir VER 170.48 133.92 0.50 0.47 imp:pre:1p;ind:pre:1p; +choisit choisir VER 170.48 133.92 11.23 16.01 ind:pre:3s;ind:pas:3s; +choit choir VER 2.05 10.00 0.00 0.68 ind:pre:3s; +choix choix NOM m 113.35 51.42 113.35 51.42 +choke choke NOM m s 0.01 0.00 0.01 0.00 +châle châle NOM m s 2.23 12.09 2.08 9.32 +cholera choler VER 0.02 0.00 0.02 0.00 ind:fut:3s; +châles châle NOM m p 2.23 12.09 0.15 2.77 +cholestérol cholestérol NOM m s 1.81 0.41 1.81 0.41 +choline choline NOM f s 0.11 0.00 0.10 0.00 +cholines choline NOM f p 0.11 0.00 0.01 0.00 +cholinestérase cholinestérase NOM f s 0.02 0.00 0.02 0.00 +cholique cholique ADJ m s 0.01 0.00 0.01 0.00 +châlit châlit NOM m s 0.00 0.41 0.00 0.27 +châlits châlit NOM m p 0.00 0.41 0.00 0.14 +châlonnais châlonnais ADJ m 0.00 0.07 0.00 0.07 +châlonnais châlonnais NOM m 0.00 0.07 0.00 0.07 +cholécystectomie cholécystectomie NOM f s 0.03 0.00 0.03 0.00 +cholécystite cholécystite NOM f s 0.03 0.00 0.03 0.00 +cholédoque cholédoque ADJ m s 0.04 0.00 0.04 0.00 +choléra choléra NOM m s 2.52 2.43 2.52 2.36 +choléras choléra NOM m p 2.52 2.43 0.00 0.07 +cholériques cholérique NOM p 0.01 0.07 0.01 0.07 +chop_suey chop_suey NOM m s 0.13 0.00 0.13 0.00 +chopaient choper VER 17.69 4.05 0.01 0.07 ind:imp:3p; +chopais choper VER 17.69 4.05 0.12 0.07 ind:imp:1s;ind:imp:2s; +chopait choper VER 17.69 4.05 0.14 0.14 ind:imp:3s; +chopant choper VER 17.69 4.05 0.00 0.07 par:pre; +chope choper VER 17.69 4.05 4.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +chopent choper VER 17.69 4.05 0.56 0.41 ind:pre:3p; +choper choper VER 17.69 4.05 6.06 1.28 inf; +chopera choper VER 17.69 4.05 0.31 0.00 ind:fut:3s; +choperai choper VER 17.69 4.05 0.10 0.00 ind:fut:1s; +choperais choper VER 17.69 4.05 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +choperait choper VER 17.69 4.05 0.01 0.00 cnd:pre:3s; +choperas choper VER 17.69 4.05 0.03 0.00 ind:fut:2s; +choperez choper VER 17.69 4.05 0.04 0.00 ind:fut:2p; +choperons choper VER 17.69 4.05 0.01 0.00 ind:fut:1p; +choperont choper VER 17.69 4.05 0.06 0.00 ind:fut:3p; +chopes choper VER 17.69 4.05 0.58 0.00 ind:pre:2s;sub:pre:2s; +chopez choper VER 17.69 4.05 1.27 0.00 imp:pre:2p;ind:pre:2p; +chopine chopine NOM f s 0.03 2.70 0.02 2.09 +chopines chopine NOM f p 0.03 2.70 0.01 0.61 +chopons choper VER 17.69 4.05 0.43 0.00 imp:pre:1p; +choppe chopper VER 1.90 0.20 0.34 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +choppent chopper VER 1.90 0.20 0.03 0.07 ind:pre:3p; +chopper chopper VER 1.90 0.20 0.95 0.07 inf; +choppers chopper NOM m p 0.29 0.20 0.01 0.00 +choppes chopper VER 1.90 0.20 0.01 0.00 ind:pre:2s; +choppez chopper VER 1.90 0.20 0.05 0.00 imp:pre:2p;ind:pre:2p; +choppons chopper VER 1.90 0.20 0.02 0.00 imp:pre:1p; +choppé chopper VER m s 1.90 0.20 0.47 0.00 par:pas; +choppée chopper VER f s 1.90 0.20 0.01 0.00 par:pas; +chopé choper VER m s 17.69 4.05 3.42 1.01 par:pas; +chopée choper VER f s 17.69 4.05 0.34 0.00 par:pas; +chopées choper VER f p 17.69 4.05 0.00 0.07 par:pas; +chopés choper VER m p 17.69 4.05 0.10 0.14 par:pas; +choqua choquer VER 13.56 15.41 0.01 0.61 ind:pas:3s; +choquaient choquer VER 13.56 15.41 0.00 0.54 ind:imp:3p; +choquait choquer VER 13.56 15.41 0.30 2.23 ind:imp:3s; +choquant choquant ADJ m s 3.61 1.69 2.43 0.81 +choquante choquant ADJ f s 3.61 1.69 0.43 0.68 +choquantes choquant ADJ f p 3.61 1.69 0.58 0.20 +choquants choquant ADJ m p 3.61 1.69 0.17 0.00 +choque choquer VER 13.56 15.41 4.01 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +choquent choquer VER 13.56 15.41 0.15 0.34 ind:pre:3p; +choquer choquer VER 13.56 15.41 2.39 3.04 inf;; +choquera choquer VER 13.56 15.41 0.05 0.27 ind:fut:3s; +choqueraient choquer VER 13.56 15.41 0.01 0.07 cnd:pre:3p; +choquerais choquer VER 13.56 15.41 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +choquerait choquer VER 13.56 15.41 0.21 0.20 cnd:pre:3s; +choqueras choquer VER 13.56 15.41 0.01 0.00 ind:fut:2s; +choquez choquer VER 13.56 15.41 0.09 0.00 imp:pre:2p;ind:pre:2p; +choquons choquer VER 13.56 15.41 0.01 0.00 ind:pre:1p; +choquèrent choquer VER 13.56 15.41 0.01 0.07 ind:pas:3p; +choqué choquer VER m s 13.56 15.41 3.44 2.64 par:pas; +choquée choquer VER f s 13.56 15.41 1.35 1.35 par:pas; +choquées choquer VER f p 13.56 15.41 0.14 0.41 par:pas; +choqués choquer VER m p 13.56 15.41 1.00 0.61 par:pas; +choral choral ADJ m s 0.26 0.27 0.14 0.00 +chorale chorale NOM f s 2.63 1.96 2.56 1.76 +chorales chorale NOM f p 2.63 1.96 0.07 0.20 +chorals choral NOM m p 0.01 0.95 0.00 0.07 +choraux choral ADJ m p 0.26 0.27 0.00 0.20 +chorba chorba NOM f s 0.00 0.07 0.00 0.07 +choreutes choreute NOM m p 0.00 0.07 0.00 0.07 +choriste choriste NOM s 0.46 1.35 0.32 0.27 +choristes choriste NOM p 0.46 1.35 0.14 1.08 +chorizo chorizo NOM m s 1.57 0.20 1.37 0.14 +chorizos chorizo NOM m p 1.57 0.20 0.20 0.07 +chortens chorten NOM m p 0.00 0.07 0.00 0.07 +chorée chorée NOM f s 0.04 0.00 0.04 0.00 +chorégraphe chorégraphe NOM s 0.71 0.47 0.48 0.41 +chorégraphes chorégraphe NOM p 0.71 0.47 0.22 0.07 +chorégraphie chorégraphie NOM f s 1.06 0.68 0.99 0.54 +chorégraphier chorégraphier VER 0.21 0.00 0.20 0.00 inf; +chorégraphies chorégraphie NOM f p 1.06 0.68 0.07 0.14 +chorégraphique chorégraphique ADJ m s 0.02 0.34 0.02 0.27 +chorégraphiques chorégraphique ADJ p 0.02 0.34 0.00 0.07 +chorégraphiées chorégraphier VER f p 0.21 0.00 0.01 0.00 par:pas; +chorus chorus NOM m 0.15 1.49 0.15 1.49 +chose chose NOM f s 1773.62 1057.64 1321.79 695.20 +choser choser VER 0.01 0.07 0.00 0.07 inf; +choses chose NOM f p 1773.62 1057.64 451.83 362.43 +chosification chosification NOM f s 0.00 0.07 0.00 0.07 +chosifient chosifier VER 0.01 0.07 0.00 0.07 ind:pre:3p; +chosifier chosifier VER 0.01 0.07 0.01 0.00 inf; +châsse châsse NOM f s 0.29 8.99 0.29 3.18 +châsses châsse NOM m p 0.29 8.99 0.00 5.81 +châssis châssis NOM m 0.97 4.46 0.97 4.46 +châtaigne châtaigne NOM f s 1.24 2.50 0.55 0.88 +châtaignent châtaigner VER 0.14 0.20 0.00 0.07 ind:pre:3p; +châtaigner châtaigner VER 0.14 0.20 0.12 0.07 inf; +châtaigneraie châtaigneraie NOM f s 0.00 0.54 0.00 0.20 +châtaigneraies châtaigneraie NOM f p 0.00 0.54 0.00 0.34 +châtaignes châtaigne NOM f p 1.24 2.50 0.69 1.62 +châtaignier châtaignier NOM m s 0.14 3.38 0.14 1.76 +châtaigniers châtaignier NOM m p 0.14 3.38 0.00 1.62 +châtaigné châtaigner VER m s 0.14 0.20 0.02 0.07 par:pas; +châtain châtain ADJ m s 0.81 4.26 0.34 1.55 +châtaine châtain ADJ f s 0.81 4.26 0.00 0.20 +châtaines châtain ADJ f p 0.81 4.26 0.01 0.07 +châtains châtain ADJ m p 0.81 4.26 0.46 2.43 +château_fort château_fort NOM m s 0.00 0.07 0.00 0.07 +château château NOM m s 43.68 74.12 40.51 63.38 +châteaubriant châteaubriant NOM m s 0.13 0.00 0.13 0.00 +châteaux château NOM m p 43.68 74.12 3.17 10.74 +châtel châtel ADJ s 0.00 0.07 0.00 0.07 +châtelain châtelain NOM m s 0.30 4.26 0.27 1.69 +châtelaine châtelain NOM f s 0.30 4.26 0.01 1.01 +châtelaines châtelain NOM f p 0.30 4.26 0.00 0.07 +châtelains châtelain NOM m p 0.30 4.26 0.02 1.49 +châtelet châtelet NOM m s 0.00 0.14 0.00 0.14 +châtellenie châtellenie NOM f s 0.00 0.07 0.00 0.07 +châtiaient châtier VER 3.25 4.53 0.00 0.07 ind:imp:3p; +châtiait châtier VER 3.25 4.53 0.00 0.20 ind:imp:3s; +châtiant châtier VER 3.25 4.53 0.00 0.07 par:pre; +châtie châtier VER 3.25 4.53 0.54 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +châtier châtier VER 3.25 4.53 1.55 1.89 inf; +châtiera châtier VER 3.25 4.53 0.04 0.00 ind:fut:3s; +châtierai châtier VER 3.25 4.53 0.12 0.00 ind:fut:1s; +châtierait châtier VER 3.25 4.53 0.00 0.07 cnd:pre:3s; +châtiez châtier VER 3.25 4.53 0.16 0.07 imp:pre:2p; +châtiment châtiment NOM m s 7.54 9.12 6.62 7.50 +châtiments châtiment NOM m p 7.54 9.12 0.93 1.62 +châtié châtier VER m s 3.25 4.53 0.47 1.28 par:pas; +châtiée châtier VER f s 3.25 4.53 0.05 0.20 par:pas; +châtiés châtier VER m p 3.25 4.53 0.32 0.34 par:pas; +châtrage châtrage NOM m s 0.00 0.07 0.00 0.07 +châtraient châtrer VER 0.94 0.68 0.00 0.14 ind:imp:3p; +châtre châtrer VER 0.94 0.68 0.01 0.14 ind:pre:1s;ind:pre:3s; +châtrent châtrer VER 0.94 0.68 0.01 0.07 ind:pre:3p; +châtrer châtrer VER 0.94 0.68 0.47 0.20 inf; +châtreront châtrer VER 0.94 0.68 0.00 0.07 ind:fut:3p; +châtron châtron NOM m s 0.00 0.14 0.00 0.07 +châtrons châtron NOM m p 0.00 0.14 0.00 0.07 +châtré châtré ADJ m s 0.21 0.61 0.18 0.34 +châtrés châtrer VER m p 0.94 0.68 0.36 0.00 par:pas; +chotts chott NOM m p 0.00 0.14 0.00 0.14 +chou_fleur chou_fleur NOM m s 0.54 1.01 0.54 1.01 +chou_palmiste chou_palmiste NOM m s 0.00 0.07 0.00 0.07 +chou_rave chou_rave NOM m s 0.00 0.20 0.00 0.20 +chou chou NOM m s 29.86 21.96 25.50 13.99 +chouïa chouïa NOM m s 0.25 1.82 0.25 1.82 +chouan chouan NOM m s 0.14 1.28 0.01 0.20 +chouannerie chouannerie NOM f s 0.00 0.34 0.00 0.34 +chouans chouan NOM m p 0.14 1.28 0.14 1.08 +choucard choucard ADJ m s 0.01 1.49 0.00 0.81 +choucarde choucard ADJ f s 0.01 1.49 0.01 0.47 +choucardes choucard ADJ f p 0.01 1.49 0.00 0.07 +choucards choucard ADJ m p 0.01 1.49 0.00 0.14 +choucas choucas NOM m 0.16 0.14 0.16 0.14 +chouchou chouchou NOM m s 3.44 1.69 3.16 1.49 +chouchous chouchou NOM m p 3.44 1.69 0.28 0.20 +chouchoutage chouchoutage NOM m s 0.00 0.14 0.00 0.14 +chouchoutaient chouchouter VER 0.61 0.74 0.01 0.07 ind:imp:3p; +chouchoutait chouchouter VER 0.61 0.74 0.02 0.07 ind:imp:3s; +chouchoute chouchouter VER 0.61 0.74 0.18 0.07 ind:pre:1s;ind:pre:3s; +chouchouter chouchouter VER 0.61 0.74 0.33 0.07 inf; +chouchouteras chouchouter VER 0.61 0.74 0.01 0.00 ind:fut:2s; +chouchoutes chouchoute NOM f p 0.21 0.14 0.11 0.00 +chouchoutez chouchouter VER 0.61 0.74 0.01 0.00 ind:pre:2p; +chouchouté chouchouter VER m s 0.61 0.74 0.05 0.14 par:pas; +chouchoutée chouchouter VER f s 0.61 0.74 0.00 0.34 par:pas; +choucroute choucroute NOM f s 1.18 3.04 1.16 2.64 +choucroutes choucroute NOM f p 1.18 3.04 0.02 0.41 +chouette chouette ONO 4.00 1.15 4.00 1.15 +chouettement chouettement ADV 0.00 0.07 0.00 0.07 +chouettes chouette ADJ p 23.77 13.78 1.50 1.49 +chougnait chougner VER 0.00 0.14 0.00 0.07 ind:imp:3s; +chougne chougner VER 0.00 0.14 0.00 0.07 ind:pre:3s; +chouia chouia NOM m s 0.32 1.01 0.32 1.01 +chouiner chouiner VER 0.05 0.00 0.05 0.00 inf; +choupette choupette NOM f s 0.10 0.00 0.10 0.00 +chouquet chouquet NOM m s 0.06 0.00 0.06 0.00 +chouquette chouquette NOM f s 0.06 0.07 0.06 0.07 +choura chourer VER 3.96 1.42 3.29 0.47 ind:pas:3s; +chouravait chouraver VER 0.75 2.50 0.00 0.14 ind:imp:3s; +chourave chouraver VER 0.75 2.50 0.01 0.41 imp:pre:2s;ind:pre:3s; +chouravent chouraver VER 0.75 2.50 0.00 0.14 ind:pre:3p; +chouraver chouraver VER 0.75 2.50 0.26 0.74 inf; +chouraveur chouraveur NOM m s 0.00 0.54 0.00 0.07 +chouraveurs chouraveur NOM m p 0.00 0.54 0.00 0.27 +chouraveuse chouraveur NOM f s 0.00 0.54 0.00 0.07 +chouraveuses chouraveur NOM f p 0.00 0.54 0.00 0.14 +chouravé chouraver VER m s 0.75 2.50 0.37 0.74 par:pas; +chouravée chouraver VER f s 0.75 2.50 0.11 0.14 par:pas; +chouravés chouraver VER m p 0.75 2.50 0.00 0.20 par:pas; +choure chourer VER 3.96 1.42 0.03 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chourent chourer VER 3.96 1.42 0.01 0.00 ind:pre:3p; +chourer chourer VER 3.96 1.42 0.20 0.34 inf; +chouriez chourer VER 3.96 1.42 0.00 0.07 ind:imp:2p; +chourineurs chourineur NOM m p 0.00 0.07 0.00 0.07 +chouré chourer VER m s 3.96 1.42 0.41 0.41 par:pas; +chourée chourer VER f s 3.96 1.42 0.01 0.07 par:pas; +chourées chourer VER f p 3.96 1.42 0.01 0.07 par:pas; +choute chou NOM f s 29.86 21.96 0.16 0.27 +choutes chou NOM f p 29.86 21.96 0.01 0.07 +choux_fleurs choux_fleurs NOM m p 0.57 1.28 0.57 1.28 +choux_raves choux_raves NOM m p 0.00 0.07 0.00 0.07 +choux chou NOM m p 29.86 21.96 4.20 7.64 +chouya chouya NOM m s 0.04 0.07 0.04 0.07 +choya choyer VER 0.40 2.03 0.00 0.07 ind:pas:3s; +choyais choyer VER 0.40 2.03 0.01 0.00 ind:imp:1s; +choyait choyer VER 0.40 2.03 0.01 0.20 ind:imp:3s; +choyant choyer VER 0.40 2.03 0.00 0.07 par:pre; +choyer choyer VER 0.40 2.03 0.11 0.41 inf; +choyez choyer VER 0.40 2.03 0.12 0.00 imp:pre:2p;ind:pre:2p; +choyé choyer VER m s 0.40 2.03 0.06 0.41 par:pas; +choyée choyer VER f s 0.40 2.03 0.05 0.41 par:pas; +choyées choyé ADJ f p 0.17 0.68 0.14 0.00 +choyés choyé ADJ m p 0.17 0.68 0.01 0.14 +christ christ NOM m s 1.65 3.18 1.54 2.57 +christiania christiania NOM m s 0.00 0.07 0.00 0.07 +christianisme christianisme NOM m s 2.11 4.32 2.11 4.32 +christianisés christianiser VER m p 0.00 0.14 0.00 0.14 par:pas; +christique christique ADJ f s 0.00 0.27 0.00 0.27 +christmas christmas NOM s 0.08 0.00 0.08 0.00 +christocentrisme christocentrisme NOM m s 0.00 0.20 0.00 0.20 +christologique christologique ADJ s 0.00 0.07 0.00 0.07 +christs christ NOM m p 1.65 3.18 0.11 0.61 +chromage chromage NOM m s 0.01 0.00 0.01 0.00 +chromatique chromatique ADJ s 0.02 0.68 0.01 0.54 +chromatiques chromatique ADJ p 0.02 0.68 0.01 0.14 +chromatisme chromatisme NOM m s 0.00 0.20 0.00 0.14 +chromatismes chromatisme NOM m p 0.00 0.20 0.00 0.07 +chromatogramme chromatogramme NOM m s 0.01 0.00 0.01 0.00 +chromatographie chromatographie NOM f s 0.07 0.00 0.07 0.00 +chrome chrome NOM m s 0.82 3.04 0.75 1.15 +chromes chrome NOM m p 0.82 3.04 0.07 1.89 +chromo chromo NOM s 0.21 2.16 0.19 0.81 +chromogènes chromogène ADJ p 0.01 0.00 0.01 0.00 +chromos chromo NOM p 0.21 2.16 0.02 1.35 +chromosome chromosome NOM m s 1.72 0.81 0.52 0.14 +chromosomes chromosome NOM m p 1.72 0.81 1.20 0.68 +chromosomique chromosomique ADJ s 0.14 0.27 0.08 0.20 +chromosomiques chromosomique ADJ p 0.14 0.27 0.06 0.07 +chromosphère chromosphère NOM f s 0.05 0.00 0.05 0.00 +chromé chromer VER m s 0.36 4.59 0.17 2.30 par:pas; +chromée chromer VER f s 0.36 4.59 0.03 1.28 par:pas; +chromées chromer VER f p 0.36 4.59 0.06 0.14 par:pas; +chromés chromer VER m p 0.36 4.59 0.07 0.61 par:pas; +chroniquais chroniquer VER 0.01 0.34 0.00 0.07 ind:imp:1s; +chronique chronique ADJ s 2.34 4.59 1.73 3.65 +chroniquement chroniquement ADV 0.00 0.07 0.00 0.07 +chroniquer chroniquer VER 0.01 0.34 0.00 0.14 inf; +chroniques chronique NOM f p 2.46 9.59 0.79 2.77 +chroniqueur chroniqueur NOM m s 0.69 2.91 0.49 1.35 +chroniqueurs chroniqueur NOM m p 0.69 2.91 0.15 1.35 +chroniqueuse chroniqueur NOM f s 0.69 2.91 0.05 0.07 +chroniqueuses chroniqueur NOM f p 0.69 2.91 0.00 0.14 +chrono chrono NOM m s 2.67 1.89 2.42 1.82 +chronographe chronographe NOM m s 0.01 0.00 0.01 0.00 +chronologie chronologie NOM f s 0.49 3.24 0.49 3.24 +chronologique chronologique ADJ s 0.64 1.49 0.64 1.35 +chronologiquement chronologiquement ADV 0.10 0.27 0.10 0.27 +chronologiques chronologique ADJ p 0.64 1.49 0.00 0.14 +chronomètre chronomètre NOM m s 1.02 2.23 0.98 2.09 +chronomètres chronométrer VER 1.43 1.08 0.18 0.00 ind:pre:2s; +chronométrage chronométrage NOM m s 0.37 0.20 0.37 0.20 +chronométrait chronométrer VER 1.43 1.08 0.01 0.07 ind:imp:3s; +chronométrant chronométrer VER 1.43 1.08 0.14 0.07 par:pre; +chronométrer chronométrer VER 1.43 1.08 0.26 0.14 inf; +chronométreur chronométreur NOM m s 0.03 0.00 0.03 0.00 +chronométrez chronométrer VER 1.43 1.08 0.06 0.00 imp:pre:2p; +chronométrions chronométrer VER 1.43 1.08 0.00 0.07 ind:imp:1p; +chronométré chronométrer VER m s 1.43 1.08 0.26 0.07 par:pas; +chronométrée chronométrer VER f s 1.43 1.08 0.05 0.07 par:pas; +chronométrées chronométrer VER f p 1.43 1.08 0.01 0.07 par:pas; +chronométrés chronométrer VER m p 1.43 1.08 0.03 0.07 par:pas; +chronophotographie chronophotographie NOM f s 0.02 0.00 0.02 0.00 +chronophotographique chronophotographique ADJ m s 0.01 0.00 0.01 0.00 +chronos chrono NOM m p 2.67 1.89 0.25 0.07 +chrême chrême NOM m s 0.00 0.14 0.00 0.14 +chrétien_démocrate chrétien_démocrate ADJ m s 0.16 0.00 0.01 0.00 +chrétien chrétien ADJ m s 12.33 21.55 4.46 7.23 +chrétienne chrétien ADJ f s 12.33 21.55 4.59 8.99 +chrétiennement chrétiennement ADV 0.13 0.20 0.13 0.20 +chrétiennes chrétien ADJ f p 12.33 21.55 0.74 2.57 +chrétien_démocrate chrétien_démocrate ADJ m p 0.16 0.00 0.14 0.00 +chrétiens chrétien NOM m p 11.82 16.76 6.39 9.19 +chrétienté chrétienté NOM f s 0.88 2.70 0.88 2.70 +chrysalide chrysalide NOM f s 0.10 0.68 0.10 0.47 +chrysalides chrysalide NOM f p 0.10 0.68 0.00 0.20 +chrysanthème chrysanthème NOM m s 0.47 2.09 0.02 0.20 +chrysanthèmes chrysanthème NOM m p 0.47 2.09 0.45 1.89 +chrysolite chrysolite NOM f s 0.01 0.00 0.01 0.00 +chrysolithe chrysolithe NOM f s 0.01 0.00 0.01 0.00 +chrysostome chrysostome NOM m s 0.00 0.07 0.00 0.07 +chtar chtar NOM m s 0.04 0.20 0.04 0.20 +chtarbé chtarbé ADJ m s 0.11 0.07 0.09 0.00 +chtarbée chtarbé ADJ f s 0.11 0.07 0.02 0.00 +chtarbées chtarbé ADJ f p 0.11 0.07 0.00 0.07 +chèche chèche NOM m s 0.01 0.68 0.01 0.54 +chèches chèche NOM m p 0.01 0.68 0.00 0.14 +chènevis chènevis NOM m 0.00 0.27 0.00 0.27 +chthoniennes chthonien ADJ f p 0.00 0.07 0.00 0.07 +chèque_cadeau chèque_cadeau NOM m s 0.05 0.00 0.05 0.00 +chèque chèque NOM m s 32.03 9.86 23.86 6.01 +chèques chèque NOM m p 32.03 9.86 8.18 3.85 +chère cher ADJ f s 205.75 133.65 40.80 23.38 +chèrement chèrement ADV 0.43 0.88 0.43 0.88 +chères cher ADJ f p 205.75 133.65 5.63 5.81 +chèvre_pied chèvre_pied NOM s 0.00 0.14 0.00 0.14 +chèvre chèvre NOM f s 14.08 20.61 8.26 10.14 +chèvrefeuille chèvrefeuille NOM m s 0.11 2.70 0.11 2.16 +chèvrefeuilles chèvrefeuille NOM m p 0.11 2.70 0.00 0.54 +chèvres chèvre NOM f p 14.08 20.61 5.81 10.47 +chtibe chtibe NOM m s 0.00 0.14 0.00 0.14 +chtimi chtimi NOM s 0.00 0.41 0.00 0.34 +chtimis chtimi NOM p 0.00 0.41 0.00 0.07 +chtouille chtouille NOM f s 0.42 0.14 0.42 0.14 +chtourbe chtourbe NOM f s 0.00 0.27 0.00 0.27 +chu choir VER m s 2.05 10.00 1.24 0.81 par:pas; +chébran chébran ADJ m s 0.03 0.07 0.03 0.07 +chéchia chéchia NOM f s 0.27 1.28 0.27 1.08 +chéchias chéchia NOM f p 0.27 1.28 0.00 0.20 +chuchota chuchoter VER 5.20 34.39 0.01 7.09 ind:pas:3s; +chuchotai chuchoter VER 5.20 34.39 0.00 1.69 ind:pas:1s; +chuchotaient chuchoter VER 5.20 34.39 0.14 2.16 ind:imp:3p; +chuchotais chuchoter VER 5.20 34.39 0.06 0.07 ind:imp:1s;ind:imp:2s; +chuchotait chuchoter VER 5.20 34.39 0.38 4.05 ind:imp:3s; +chuchotant chuchoter VER 5.20 34.39 0.06 2.23 par:pre; +chuchotante chuchotant ADJ f s 0.19 1.89 0.17 1.22 +chuchotantes chuchotant ADJ f p 0.19 1.89 0.00 0.34 +chuchotants chuchotant ADJ m p 0.19 1.89 0.00 0.07 +chuchote chuchoter VER 5.20 34.39 1.86 6.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +chuchotement chuchotement NOM m s 1.90 8.11 0.11 4.39 +chuchotements chuchotement NOM m p 1.90 8.11 1.79 3.72 +chuchotent chuchoter VER 5.20 34.39 0.39 1.62 ind:pre:3p; +chuchoter chuchoter VER 5.20 34.39 1.46 3.92 inf; +chuchoteraient chuchoter VER 5.20 34.39 0.00 0.07 cnd:pre:3p; +chuchoterais chuchoter VER 5.20 34.39 0.02 0.00 cnd:pre:1s; +chuchoterait chuchoter VER 5.20 34.39 0.00 0.14 cnd:pre:3s; +chuchoteras chuchoter VER 5.20 34.39 0.01 0.00 ind:fut:2s; +chuchoterez chuchoter VER 5.20 34.39 0.00 0.07 ind:fut:2p; +chuchoteries chuchoterie NOM f p 0.00 0.07 0.00 0.07 +chuchoteur chuchoteur ADJ m s 0.00 0.20 0.00 0.14 +chuchoteuse chuchoteur NOM f s 0.03 0.00 0.03 0.00 +chuchotez chuchoter VER 5.20 34.39 0.43 0.07 imp:pre:2p;ind:pre:2p; +chuchotions chuchoter VER 5.20 34.39 0.00 0.20 ind:imp:1p; +chuchotis chuchotis NOM m 0.13 2.43 0.13 2.43 +chuchotât chuchoter VER 5.20 34.39 0.00 0.07 sub:imp:3s; +chuchotèrent chuchoter VER 5.20 34.39 0.00 0.20 ind:pas:3p; +chuchoté chuchoter VER m s 5.20 34.39 0.33 2.36 par:pas; +chuchotée chuchoter VER f s 5.20 34.39 0.03 0.54 par:pas; +chuchotées chuchoter VER f p 5.20 34.39 0.00 0.68 par:pas; +chuchotés chuchoter VER m p 5.20 34.39 0.03 0.61 par:pas; +chue choir VER f s 2.05 10.00 0.05 0.20 par:pas; +chues choir VER f p 2.05 10.00 0.00 0.07 par:pas; +chéfesse chéfesse NOM f s 0.00 0.34 0.00 0.34 +chuinta chuinter VER 0.00 1.89 0.00 0.14 ind:pas:3s; +chuintaient chuinter VER 0.00 1.89 0.00 0.07 ind:imp:3p; +chuintait chuinter VER 0.00 1.89 0.00 0.34 ind:imp:3s; +chuintant chuinter VER 0.00 1.89 0.00 0.61 par:pre; +chuintante chuintant ADJ f s 0.01 0.81 0.01 0.27 +chuintants chuintant ADJ m p 0.01 0.81 0.00 0.14 +chuinte chuinter VER 0.00 1.89 0.00 0.20 ind:pre:3s; +chuintement chuintement NOM m s 0.07 4.46 0.07 3.58 +chuintements chuintement NOM m p 0.07 4.46 0.00 0.88 +chuinter chuinter VER 0.00 1.89 0.00 0.20 inf; +chuintèrent chuinter VER 0.00 1.89 0.00 0.14 ind:pas:3p; +chuinté chuinter VER m s 0.00 1.89 0.00 0.20 par:pas; +chélate chélate NOM m s 0.01 0.00 0.01 0.00 +chélidoine chélidoine NOM f s 0.00 0.20 0.00 0.14 +chélidoines chélidoine NOM f p 0.00 0.20 0.00 0.07 +chulo chulo NOM m s 0.34 0.00 0.34 0.00 +chéloïde chéloïde NOM f s 0.03 0.00 0.03 0.00 +chum chum NOM m s 0.38 0.00 0.38 0.00 +chênaie chênaie NOM f s 0.06 0.61 0.04 0.47 +chênaies chênaie NOM f p 0.06 0.61 0.01 0.14 +chêne_liège chêne_liège NOM m s 0.00 0.95 0.00 0.14 +chêne chêne NOM m s 5.17 23.51 4.25 16.49 +chéneau chéneau NOM m s 0.00 0.81 0.00 0.47 +chéneaux chéneau NOM m p 0.00 0.81 0.00 0.34 +chêne_liège chêne_liège NOM m p 0.00 0.95 0.00 0.81 +chênes chêne NOM m p 5.17 23.51 0.93 7.03 +chêneteau chêneteau NOM m s 0.00 0.07 0.00 0.07 +chéquier chéquier NOM m s 1.94 0.68 1.72 0.61 +chéquiers chéquier NOM m p 1.94 0.68 0.22 0.07 +chéri chéri NOM s 171.98 36.28 69.08 17.03 +chérie chéri NOM f s 171.98 36.28 98.95 17.64 +chéries chéri NOM f p 171.98 36.28 1.54 0.74 +chérif chérif NOM m s 0.20 6.69 0.20 6.69 +chérifienne chérifien ADJ f s 0.00 0.07 0.00 0.07 +chérir chérir VER 22.66 7.03 1.49 1.15 inf; +chérirai chérir VER 22.66 7.03 0.19 0.00 ind:fut:1s; +chérirais chérir VER 22.66 7.03 0.14 0.00 cnd:pre:1s; +chérirez chérir VER 22.66 7.03 0.01 0.00 ind:fut:2p; +chérirons chérir VER 22.66 7.03 0.01 0.00 ind:fut:1p; +chéris chéri NOM m p 171.98 36.28 2.41 0.88 +chérissaient chérir VER 22.66 7.03 0.03 0.27 ind:imp:3p; +chérissais chérir VER 22.66 7.03 0.07 0.20 ind:imp:1s;ind:imp:2s; +chérissait chérir VER 22.66 7.03 0.16 1.15 ind:imp:3s; +chérissant chérir VER 22.66 7.03 0.00 0.07 par:pre; +chérisse chérir VER 22.66 7.03 0.06 0.07 sub:pre:3s; +chérissent chérir VER 22.66 7.03 0.05 0.27 ind:pre:3p; +chérissez chérir VER 22.66 7.03 0.17 0.07 imp:pre:2p;ind:pre:2p; +chérissons chérir VER 22.66 7.03 0.31 0.07 imp:pre:1p;ind:pre:1p; +chérit chérir VER 22.66 7.03 0.56 0.27 ind:pre:3s;ind:pas:3s; +chérot chérot ADJ m s 0.02 0.14 0.02 0.14 +churrigueresque churrigueresque ADJ s 0.00 0.07 0.00 0.07 +churros churro NOM m p 0.69 0.20 0.69 0.20 +chérubin chérubin NOM m s 2.09 1.82 1.89 0.81 +chérubinique chérubinique ADJ f s 0.00 0.07 0.00 0.07 +chérubins chérubin NOM m p 2.09 1.82 0.20 1.01 +chus choir VER m p 2.05 10.00 0.01 0.07 par:pas; +chut chut ONO 29.81 6.62 29.81 6.62 +chuta chuter VER 5.50 2.77 0.02 0.07 ind:pas:3s; +chutait chuter VER 5.50 2.77 0.06 0.41 ind:imp:3s; +chutant chuter VER 5.50 2.77 0.06 0.20 par:pre; +chute chute NOM f s 25.15 41.28 21.01 35.27 +chutent chuter VER 5.50 2.77 0.28 0.07 ind:pre:3p; +chuter chuter VER 5.50 2.77 0.99 1.08 inf; +chutera chuter VER 5.50 2.77 0.04 0.00 ind:fut:3s; +chuteraient chuter VER 5.50 2.77 0.11 0.07 cnd:pre:3p; +chuterait chuter VER 5.50 2.77 0.01 0.00 cnd:pre:3s; +chuterez chuter VER 5.50 2.77 0.01 0.00 ind:fut:2p; +chutes chute NOM f p 25.15 41.28 4.14 6.01 +chétif chétif ADJ m s 0.91 7.36 0.43 3.65 +chétifs chétif ADJ m p 0.91 7.36 0.07 0.95 +chétive chétif ADJ f s 0.91 7.36 0.38 1.89 +chétivement chétivement ADV 0.00 0.07 0.00 0.07 +chétives chétif ADJ f p 0.91 7.36 0.02 0.88 +chétivité chétivité NOM f s 0.00 0.07 0.00 0.07 +chutney chutney NOM m s 0.23 0.00 0.23 0.00 +chutèrent chuter VER 5.50 2.77 0.02 0.14 ind:pas:3p; +chuté chuter VER m s 5.50 2.77 1.87 0.41 par:pas; +chutée chuter VER f s 5.50 2.77 0.04 0.07 par:pas; +chyle chyle NOM m s 0.00 0.14 0.00 0.14 +chypre chypre NOM m s 0.00 0.14 0.00 0.14 +chypriote chypriote ADJ s 0.01 0.14 0.01 0.14 +ci_après ci_après ADV 0.15 0.61 0.15 0.61 +ci_contre ci_contre ADV 0.00 0.07 0.00 0.07 +ci_dessous ci_dessous ADV 0.13 0.61 0.13 0.61 +ci_dessus ci_dessus ADV 0.20 1.28 0.20 1.28 +ci_gît ci_gît ADV 0.70 0.34 0.70 0.34 +ci_inclus ci_inclus ADJ m 0.03 0.14 0.01 0.07 +ci_inclus ci_inclus ADJ f s 0.03 0.14 0.01 0.07 +ci_inclus ci_inclus ADJ f p 0.03 0.14 0.01 0.00 +ci_joint ci_joint ADJ m s 0.62 1.89 0.59 1.69 +ci_joint ci_joint ADJ f s 0.62 1.89 0.04 0.14 +ci_joint ci_joint ADJ m p 0.62 1.89 0.00 0.07 +ci ci ADV 10.23 3.65 10.23 3.65 +ciao ciao ONO 15.32 3.72 15.32 3.72 +cibiche cibiche NOM f s 0.07 0.81 0.06 0.54 +cibiches cibiche NOM f p 0.07 0.81 0.01 0.27 +cibiste cibiste NOM m s 0.07 0.00 0.04 0.00 +cibistes cibiste NOM m p 0.07 0.00 0.02 0.00 +ciblage ciblage NOM m s 0.34 0.00 0.34 0.00 +ciblais cibler VER 1.90 0.81 0.01 0.07 ind:imp:1s; +ciblait cibler VER 1.90 0.81 0.04 0.14 ind:imp:3s; +cible cible NOM f s 33.55 10.74 28.69 8.65 +cibler cibler VER 1.90 0.81 0.76 0.14 inf; +ciblera cibler VER 1.90 0.81 0.03 0.00 ind:fut:3s; +cibleront cibler VER 1.90 0.81 0.01 0.00 ind:fut:3p; +cibles cible NOM f p 33.55 10.74 4.86 2.09 +ciblez cibler VER 1.90 0.81 0.12 0.00 imp:pre:2p;ind:pre:2p; +ciblons cibler VER 1.90 0.81 0.03 0.00 imp:pre:1p;ind:pre:1p; +ciblé cibler VER m s 1.90 0.81 0.45 0.34 par:pas; +ciblée cibler VER f s 1.90 0.81 0.15 0.00 par:pas; +ciblées cibler VER f p 1.90 0.81 0.06 0.00 par:pas; +ciblés cibler VER m p 1.90 0.81 0.25 0.14 par:pas; +ciboire ciboire NOM m s 0.03 1.15 0.03 0.81 +ciboires ciboire NOM m p 0.03 1.15 0.00 0.34 +ciboule ciboule NOM f s 0.00 0.07 0.00 0.07 +ciboulette ciboulette NOM f s 0.95 0.27 0.95 0.27 +ciboulot ciboulot NOM m s 0.25 1.55 0.25 1.49 +ciboulots ciboulot NOM m p 0.25 1.55 0.00 0.07 +cicatrice cicatrice NOM f s 13.00 12.23 7.58 6.28 +cicatrices cicatrice NOM f p 13.00 12.23 5.42 5.95 +cicatriciel cicatriciel ADJ m s 0.06 0.14 0.06 0.00 +cicatriciels cicatriciel ADJ m p 0.06 0.14 0.00 0.14 +cicatrisa cicatriser VER 2.20 2.16 0.00 0.07 ind:pas:3s; +cicatrisable cicatrisable ADJ s 0.00 0.07 0.00 0.07 +cicatrisait cicatriser VER 2.20 2.16 0.02 0.14 ind:imp:3s; +cicatrisante cicatrisant ADJ f s 0.02 0.07 0.02 0.00 +cicatrisants cicatrisant ADJ m p 0.02 0.07 0.00 0.07 +cicatrisation cicatrisation NOM f s 0.48 0.47 0.48 0.47 +cicatrise cicatriser VER 2.20 2.16 0.39 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cicatrisent cicatriser VER 2.20 2.16 0.08 0.14 ind:pre:3p; +cicatriser cicatriser VER 2.20 2.16 0.48 0.47 inf; +cicatrisera cicatriser VER 2.20 2.16 0.18 0.00 ind:fut:3s; +cicatriserait cicatriser VER 2.20 2.16 0.10 0.07 cnd:pre:3s; +cicatriseront cicatriser VER 2.20 2.16 0.13 0.07 ind:fut:3p; +cicatrisez cicatriser VER 2.20 2.16 0.11 0.00 imp:pre:2p;ind:pre:2p; +cicatrisé cicatriser VER m s 2.20 2.16 0.59 0.27 par:pas; +cicatrisée cicatriser VER f s 2.20 2.16 0.05 0.41 par:pas; +cicatrisées cicatriser VER f p 2.20 2.16 0.03 0.34 par:pas; +cicatrisés cicatriser VER m p 2.20 2.16 0.04 0.00 par:pas; +cicero cicero NOM m s 0.68 0.00 0.68 0.00 +cicindèle cicindèle NOM f s 0.00 0.88 0.00 0.61 +cicindèles cicindèle NOM f p 0.00 0.88 0.00 0.27 +cicérone cicérone NOM m s 0.22 0.34 0.22 0.27 +cicérones cicérone NOM m p 0.22 0.34 0.00 0.07 +cicéronienne cicéronien ADJ f s 0.00 0.14 0.00 0.14 +cidre cidre NOM m s 2.00 3.99 2.00 3.99 +cidrerie cidrerie NOM f s 0.01 0.00 0.01 0.00 +ciel ciel NOM m s 142.32 305.20 142.22 301.76 +ciels ciel NOM m p 142.32 305.20 0.10 3.45 +cierge cierge NOM m s 3.50 15.95 2.02 5.20 +cierges cierge NOM m p 3.50 15.95 1.48 10.74 +cieux cieux NOM m p 20.05 4.93 20.05 4.93 +cigale cigale NOM f s 3.00 4.93 1.43 1.15 +cigales cigale NOM f p 3.00 4.93 1.57 3.78 +cigalon cigalon NOM m s 0.02 0.00 0.02 0.00 +cigalou cigalou NOM m s 0.00 0.07 0.00 0.07 +cigare cigare NOM m s 17.15 24.93 10.63 17.70 +cigares cigare NOM m p 17.15 24.93 6.52 7.23 +cigarette cigarette NOM f s 65.57 114.93 39.22 77.57 +cigarettes cigarette NOM f p 65.57 114.93 26.35 37.36 +cigarettier cigarettier NOM m s 0.01 0.00 0.01 0.00 +cigarillo cigarillo NOM m s 0.13 1.08 0.13 0.68 +cigarillos cigarillo NOM m p 0.13 1.08 0.00 0.41 +cigarière cigarier NOM f s 0.00 0.20 0.00 0.07 +cigarières cigarier NOM f p 0.00 0.20 0.00 0.14 +cigle cigler VER 0.00 0.68 0.00 0.14 ind:pre:3s; +ciglent cigler VER 0.00 0.68 0.00 0.07 ind:pre:3p; +cigler cigler VER 0.00 0.68 0.00 0.27 inf; +ciglé cigler VER m s 0.00 0.68 0.00 0.07 par:pas; +ciglées cigler VER f p 0.00 0.68 0.00 0.07 par:pas; +ciglés cigler VER m p 0.00 0.68 0.00 0.07 par:pas; +cigogne cigogne NOM f s 3.22 2.50 2.21 1.35 +cigognes cigogne NOM f p 3.22 2.50 1.00 1.15 +ciguë ciguë NOM f s 0.20 0.88 0.20 0.68 +ciguës ciguë NOM f p 0.20 0.88 0.00 0.20 +cil cil NOM m s 3.57 19.26 0.77 2.16 +ciliaires ciliaire ADJ m p 0.00 0.07 0.00 0.07 +cilice cilice NOM m s 0.16 0.27 0.16 0.27 +cilla ciller VER 0.28 4.32 0.00 0.61 ind:pas:3s; +cillaient ciller VER 0.28 4.32 0.00 0.47 ind:imp:3p; +cillait ciller VER 0.28 4.32 0.01 0.14 ind:imp:3s; +cillant ciller VER 0.28 4.32 0.00 0.20 par:pre; +cille ciller VER 0.28 4.32 0.05 0.07 ind:pre:3s; +cillement cillement NOM m s 0.00 0.81 0.00 0.74 +cillements cillement NOM m p 0.00 0.81 0.00 0.07 +cillent ciller VER 0.28 4.32 0.00 0.20 ind:pre:3p; +ciller ciller VER 0.28 4.32 0.04 1.82 inf; +cillerait ciller VER 0.28 4.32 0.00 0.07 cnd:pre:3s; +cillèrent ciller VER 0.28 4.32 0.00 0.27 ind:pas:3p; +cillé ciller VER m s 0.28 4.32 0.19 0.47 par:pas; +cils cil NOM m p 3.57 19.26 2.80 17.09 +cimaise cimaise NOM f s 0.00 0.47 0.00 0.14 +cimaises cimaise NOM f p 0.00 0.47 0.00 0.34 +cimarron cimarron NOM m s 0.07 0.00 0.07 0.00 +cime cime NOM f s 1.77 9.73 1.08 4.46 +ciment ciment NOM m s 5.75 18.85 5.60 18.78 +cimentaient cimenter VER 0.16 2.43 0.00 0.07 ind:imp:3p; +cimentait cimenter VER 0.16 2.43 0.00 0.20 ind:imp:3s; +cimentant cimenter VER 0.16 2.43 0.00 0.07 par:pre; +cimente cimenter VER 0.16 2.43 0.02 0.14 imp:pre:2s;ind:pre:3s; +cimentent cimenter VER 0.16 2.43 0.01 0.00 ind:pre:3p; +cimenter cimenter VER 0.16 2.43 0.06 0.14 inf; +cimentera cimenter VER 0.16 2.43 0.00 0.07 ind:fut:3s; +cimenterie cimenterie NOM f s 0.08 0.61 0.08 0.27 +cimenteries cimenterie NOM f p 0.08 0.61 0.00 0.34 +ciments ciment NOM m p 5.75 18.85 0.15 0.07 +cimenté cimenter VER m s 0.16 2.43 0.04 0.47 par:pas; +cimentée cimenter VER f s 0.16 2.43 0.01 0.88 par:pas; +cimentées cimenter VER f p 0.16 2.43 0.00 0.20 par:pas; +cimentés cimenter VER m p 0.16 2.43 0.01 0.20 par:pas; +cimes cime NOM f p 1.77 9.73 0.70 5.27 +cimeterre cimeterre NOM m s 0.14 1.28 0.14 0.95 +cimeterres cimeterre NOM m p 0.14 1.28 0.00 0.34 +cimetière cimetière NOM m s 31.34 44.19 29.07 39.86 +cimetières cimetière NOM m p 31.34 44.19 2.27 4.32 +cimier cimier NOM m s 0.18 0.68 0.17 0.54 +cimiers cimier NOM m p 0.18 0.68 0.01 0.14 +cinabre cinabre NOM m s 0.00 0.14 0.00 0.14 +cinghalais cinghalais ADJ m s 0.00 0.20 0.00 0.14 +cinghalaises cinghalais ADJ f p 0.00 0.20 0.00 0.07 +cingla cingler VER 18.93 9.39 0.02 0.61 ind:pas:3s; +cinglage cinglage NOM m s 0.05 0.00 0.05 0.00 +cinglaient cingler VER 18.93 9.39 0.00 0.61 ind:imp:3p; +cinglait cingler VER 18.93 9.39 0.14 1.62 ind:imp:3s; +cinglant cinglant ADJ m s 0.28 2.77 0.04 0.54 +cinglante cinglant ADJ f s 0.28 2.77 0.20 1.15 +cinglantes cinglant ADJ f p 0.28 2.77 0.03 0.74 +cinglants cinglant ADJ m p 0.28 2.77 0.00 0.34 +cingle cingler VER 18.93 9.39 0.26 1.22 ind:pre:3s; +cinglement cinglement NOM m s 0.00 0.07 0.00 0.07 +cinglent cingler VER 18.93 9.39 0.00 0.27 ind:pre:3p; +cingler cingler VER 18.93 9.39 0.00 0.88 inf; +cinglions cingler VER 18.93 9.39 0.00 0.07 ind:imp:1p; +cinglons cingler VER 18.93 9.39 0.20 0.00 imp:pre:1p; +cinglèrent cingler VER 18.93 9.39 0.00 0.07 ind:pas:3p; +cinglé cingler VER m s 18.93 9.39 12.44 2.30 par:pas; +cinglée cingler VER f s 18.93 9.39 3.46 0.95 par:pas; +cinglées cinglé NOM f p 12.37 5.81 0.28 0.20 +cinglés cinglé NOM m p 12.37 5.81 3.49 1.69 +cinname cinname NOM m s 0.00 0.07 0.00 0.07 +cinoche cinoche NOM m s 1.08 6.35 1.07 6.22 +cinoches cinoche NOM m p 1.08 6.35 0.01 0.14 +cinoque cinoque ADJ m s 0.01 0.27 0.01 0.27 +cinoques cinoque NOM m p 0.00 0.14 0.00 0.14 +cinq cinq ADJ:num 161.96 220.61 161.96 220.61 +cinquantaine cinquantaine NOM f s 1.44 9.93 1.44 9.86 +cinquantaines cinquantaine NOM f p 1.44 9.93 0.00 0.07 +cinquante_cinq cinquante_cinq ADJ:num 0.20 2.50 0.20 2.50 +cinquante_deux cinquante_deux ADJ:num 0.21 1.42 0.21 1.42 +cinquante_huit cinquante_huit ADJ:num 0.06 0.88 0.06 0.88 +cinquante_huitième cinquante_huitième ADJ 0.00 0.07 0.00 0.07 +cinquante_neuf cinquante_neuf ADJ:num 0.03 0.34 0.03 0.34 +cinquante_neuvième cinquante_neuvième ADJ 0.00 0.07 0.00 0.07 +cinquante_quatre cinquante_quatre ADJ:num 0.13 0.68 0.13 0.68 +cinquante_sept cinquante_sept ADJ:num 0.08 0.95 0.08 0.95 +cinquante_septième cinquante_septième ADJ 0.03 0.07 0.03 0.07 +cinquante_six cinquante_six ADJ:num 0.18 0.68 0.18 0.68 +cinquante_sixième cinquante_sixième ADJ 0.00 0.14 0.00 0.14 +cinquante_trois cinquante_trois ADJ:num 0.15 0.81 0.15 0.81 +cinquante_troisième cinquante_troisième ADJ 0.00 0.14 0.00 0.14 +cinquante cinquante ADJ:num 9.26 61.08 9.26 61.08 +cinquantenaire cinquantenaire NOM m s 0.20 0.14 0.18 0.14 +cinquantenaires cinquantenaire NOM m p 0.20 0.14 0.02 0.00 +cinquantième cinquantième NOM s 0.04 0.68 0.04 0.68 +cinquantièmes cinquantième ADJ 0.01 0.54 0.00 0.07 +cinquième cinquième ADJ m 6.14 11.15 6.13 11.01 +cinquièmement cinquièmement ADV 0.16 0.14 0.16 0.14 +cinquièmes cinquième NOM p 5.17 7.91 0.01 0.54 +cintra cintrer VER 0.07 1.49 0.00 0.68 ind:pas:3s; +cintrage cintrage NOM m s 0.01 0.00 0.01 0.00 +cintrait cintrer VER 0.07 1.49 0.00 0.07 ind:imp:3s; +cintrant cintrer VER 0.07 1.49 0.00 0.07 par:pre; +cintras cintrer VER 0.07 1.49 0.00 0.07 ind:pas:2s; +cintre cintre NOM m s 0.85 4.86 0.57 2.91 +cintrer cintrer VER 0.07 1.49 0.01 0.00 inf; +cintres cintre NOM m p 0.85 4.86 0.28 1.96 +cintré cintrer VER m s 0.07 1.49 0.05 0.34 par:pas; +cintrée cintré ADJ f s 0.07 1.42 0.02 0.54 +cintrées cintré ADJ f p 0.07 1.42 0.00 0.27 +cintrés cintré ADJ m p 0.07 1.42 0.03 0.07 +ciné_club ciné_club NOM m s 0.00 0.74 0.00 0.54 +ciné_club ciné_club NOM m p 0.00 0.74 0.00 0.20 +ciné_roman ciné_roman NOM m s 0.00 0.14 0.00 0.14 +ciné ciné NOM m s 10.35 4.73 10.32 4.46 +cinéaste cinéaste NOM s 3.56 1.76 2.45 1.08 +cinéastes cinéaste NOM p 3.56 1.76 1.11 0.68 +cinéma_vérité cinéma_vérité NOM m s 0.20 0.07 0.20 0.07 +cinéma cinéma NOM m s 63.49 78.51 62.23 72.91 +cinémas cinéma NOM m p 63.49 78.51 1.26 5.61 +cinémascope cinémascope NOM m s 0.07 0.20 0.07 0.20 +cinémathèque cinémathèque NOM f s 0.72 0.61 0.71 0.47 +cinémathèques cinémathèque NOM f p 0.72 0.61 0.01 0.14 +cinématique cinématique NOM f s 0.03 0.00 0.03 0.00 +cinématographe cinématographe NOM m s 0.48 0.68 0.48 0.61 +cinématographes cinématographe NOM m p 0.48 0.68 0.00 0.07 +cinématographie cinématographie NOM f s 0.04 0.07 0.04 0.07 +cinématographique cinématographique ADJ s 1.42 2.23 0.85 1.49 +cinématographiquement cinématographiquement ADV 0.01 0.14 0.01 0.14 +cinématographiques cinématographique ADJ p 1.42 2.23 0.57 0.74 +cinémomètres cinémomètre NOM m p 0.00 0.07 0.00 0.07 +cinéphile cinéphile NOM s 0.20 0.27 0.15 0.07 +cinéphiles cinéphile NOM p 0.20 0.27 0.05 0.20 +cinéraire cinéraire ADJ f s 0.00 0.07 0.00 0.07 +cinéraire cinéraire NOM f s 0.00 0.07 0.00 0.07 +cinérama cinérama NOM m s 0.00 0.07 0.00 0.07 +cinés ciné NOM m p 10.35 4.73 0.02 0.27 +cinétique cinétique ADJ s 0.17 0.07 0.17 0.07 +cinzano cinzano NOM m s 0.50 0.88 0.50 0.88 +cipal cipal NOM m s 0.01 0.14 0.01 0.14 +cipaye cipaye NOM m s 0.01 0.41 0.01 0.00 +cipayes cipaye NOM m p 0.01 0.41 0.00 0.41 +cipolin cipolin NOM m s 0.00 0.07 0.00 0.07 +cippes cippe NOM m p 0.00 0.14 0.00 0.14 +cira cirer VER 6.42 20.27 0.00 0.14 ind:pas:3s; +cirage cirage NOM m s 2.08 4.39 2.08 4.39 +ciraient cirer VER 6.42 20.27 0.00 0.07 ind:imp:3p; +cirais cirer VER 6.42 20.27 0.02 0.20 ind:imp:1s;ind:imp:2s; +cirait cirer VER 6.42 20.27 0.04 0.41 ind:imp:3s; +cirant cirer VER 6.42 20.27 0.02 0.14 par:pre; +circadien circadien ADJ m s 0.03 0.00 0.03 0.00 +circassien circassien NOM m s 0.05 0.14 0.05 0.14 +circassienne circassienne NOM f s 0.14 0.20 0.14 0.14 +circassiennes circassienne NOM f p 0.14 0.20 0.00 0.07 +circaète circaète NOM m s 0.00 0.41 0.00 0.41 +circoncire circoncire VER 1.69 1.42 0.53 0.68 inf; +circoncis circoncire VER m 1.69 1.42 1.09 0.68 ind:pre:1s;par:pas;par:pas; +circoncise circoncire VER f s 1.69 1.42 0.03 0.00 par:pas; +circoncisent circoncire VER 1.69 1.42 0.01 0.00 ind:pre:3p; +circoncision circoncision NOM f s 1.31 2.30 1.25 2.30 +circoncisions circoncision NOM f p 1.31 2.30 0.06 0.00 +circoncit circoncire VER 1.69 1.42 0.03 0.07 ind:pre:3s;ind:pas:3s; +circonflexe circonflexe ADJ s 0.16 1.55 0.16 0.95 +circonflexes circonflexe ADJ m p 0.16 1.55 0.00 0.61 +circonférence circonférence NOM f s 0.24 1.28 0.24 1.28 +circonlocutions circonlocution NOM f p 0.00 0.88 0.00 0.88 +circonscription circonscription NOM f s 0.78 0.74 0.67 0.34 +circonscriptions_clé circonscriptions_clé NOM f p 0.01 0.00 0.01 0.00 +circonscriptions circonscription NOM f p 0.78 0.74 0.11 0.41 +circonscrire circonscrire VER 0.13 1.35 0.05 0.27 inf; +circonscris circonscrire VER 0.13 1.35 0.00 0.07 ind:pre:1s; +circonscrit circonscrire VER m s 0.13 1.35 0.03 0.27 ind:pre:3s;par:pas; +circonscrite circonscrire VER f s 0.13 1.35 0.03 0.27 par:pas; +circonscrites circonscrire VER f p 0.13 1.35 0.00 0.07 par:pas; +circonscrits circonscrire VER m p 0.13 1.35 0.02 0.07 par:pas; +circonscrivait circonscrire VER 0.13 1.35 0.00 0.20 ind:imp:3s; +circonscrivent circonscrire VER 0.13 1.35 0.00 0.07 ind:pre:3p; +circonscrivit circonscrire VER 0.13 1.35 0.00 0.07 ind:pas:3s; +circonspect circonspect ADJ m s 0.21 2.91 0.04 1.96 +circonspecte circonspect ADJ f s 0.21 2.91 0.01 0.34 +circonspectes circonspect ADJ f p 0.21 2.91 0.00 0.07 +circonspection circonspection NOM f s 0.04 2.70 0.04 2.64 +circonspections circonspection NOM f p 0.04 2.70 0.00 0.07 +circonspects circonspect ADJ m p 0.21 2.91 0.16 0.54 +circonstance circonstance NOM f s 21.80 58.24 2.48 16.01 +circonstances circonstance NOM f p 21.80 58.24 19.32 42.23 +circonstancia circonstancier VER 0.00 0.41 0.00 0.14 ind:pas:3s; +circonstanciel circonstanciel ADJ m s 0.11 0.07 0.05 0.00 +circonstancielle circonstanciel ADJ f s 0.11 0.07 0.05 0.00 +circonstanciels circonstanciel ADJ m p 0.11 0.07 0.00 0.07 +circonstancié circonstancié ADJ m s 0.03 0.47 0.03 0.14 +circonstanciée circonstancier VER f s 0.00 0.41 0.00 0.07 par:pas; +circonstanciées circonstancié ADJ f p 0.03 0.47 0.00 0.07 +circonstanciés circonstancié ADJ m p 0.03 0.47 0.00 0.27 +circonvallation circonvallation NOM f s 0.00 0.14 0.00 0.07 +circonvallations circonvallation NOM f p 0.00 0.14 0.00 0.07 +circonvenant circonvenir VER 0.09 0.95 0.01 0.00 par:pre; +circonvenir circonvenir VER 0.09 0.95 0.05 0.47 inf; +circonvenu circonvenir VER m s 0.09 0.95 0.01 0.41 par:pas; +circonvenue circonvenir VER f s 0.09 0.95 0.01 0.07 par:pas; +circonvient circonvenir VER 0.09 0.95 0.01 0.00 ind:pre:3s; +circonvolution circonvolution NOM f s 0.05 1.08 0.03 0.20 +circonvolutions circonvolution NOM f p 0.05 1.08 0.02 0.88 +circuit circuit NOM m s 10.23 9.59 7.00 7.77 +circuits circuit NOM m p 10.23 9.59 3.24 1.82 +circula circuler VER 15.19 25.81 0.01 0.54 ind:pas:3s; +circulaient circuler VER 15.19 25.81 0.29 3.92 ind:imp:3p; +circulaire circulaire ADJ s 1.48 9.73 1.35 8.24 +circulairement circulairement ADV 0.00 0.07 0.00 0.07 +circulaires circulaire ADJ p 1.48 9.73 0.14 1.49 +circulais circuler VER 15.19 25.81 0.01 0.34 ind:imp:1s; +circulait circuler VER 15.19 25.81 0.29 4.59 ind:imp:3s; +circulant circuler VER 15.19 25.81 0.06 0.95 par:pre; +circularité circularité NOM f s 0.00 0.14 0.00 0.14 +circulation circulation NOM f s 10.78 14.46 10.78 14.32 +circulations circulation NOM f p 10.78 14.46 0.00 0.14 +circulatoire circulatoire ADJ s 0.51 0.20 0.28 0.00 +circulatoires circulatoire ADJ m p 0.51 0.20 0.23 0.20 +circule circuler VER 15.19 25.81 3.56 4.93 imp:pre:2s;ind:pre:1s;ind:pre:3s; +circulent circuler VER 15.19 25.81 1.73 2.30 ind:pre:3p; +circuler circuler VER 15.19 25.81 4.04 6.42 inf; +circulera circuler VER 15.19 25.81 0.24 0.00 ind:fut:3s; +circuleraient circuler VER 15.19 25.81 0.02 0.07 cnd:pre:3p; +circulerait circuler VER 15.19 25.81 0.02 0.14 cnd:pre:3s; +circuleront circuler VER 15.19 25.81 0.01 0.07 ind:fut:3p; +circules circuler VER 15.19 25.81 0.01 0.07 ind:pre:2s; +circulez circuler VER 15.19 25.81 4.63 0.74 imp:pre:2p;ind:pre:2p; +circulions circuler VER 15.19 25.81 0.00 0.07 ind:imp:1p; +circulons circuler VER 15.19 25.81 0.06 0.00 imp:pre:1p;ind:pre:1p; +circulèrent circuler VER 15.19 25.81 0.00 0.07 ind:pas:3p; +circulé circuler VER m s 15.19 25.81 0.21 0.61 par:pas; +circumnavigation circumnavigation NOM f s 0.14 0.27 0.14 0.27 +cire cire NOM f s 5.59 15.88 5.49 15.41 +cirent cirer VER 6.42 20.27 0.25 0.00 ind:pre:3p; +cirer cirer VER 6.42 20.27 3.29 3.24 inf; +cirerais cirer VER 6.42 20.27 0.00 0.07 cnd:pre:1s; +cirerait cirer VER 6.42 20.27 0.00 0.07 cnd:pre:3s; +cires cire NOM f p 5.59 15.88 0.10 0.47 +cireur cireur NOM m s 0.45 1.22 0.36 0.74 +cireurs cireur NOM m p 0.45 1.22 0.01 0.34 +cireuse cireur NOM f s 0.45 1.22 0.08 0.14 +cireuses cireux ADJ f p 0.15 2.50 0.04 0.41 +cireux cireux ADJ m 0.15 2.50 0.06 1.42 +cirez cirer VER 6.42 20.27 0.14 0.07 imp:pre:2p;ind:pre:2p; +cirions cirer VER 6.42 20.27 0.00 0.07 ind:imp:1p; +ciron ciron NOM m s 0.00 0.14 0.00 0.07 +cirons cirer VER 6.42 20.27 0.00 0.07 imp:pre:1p; +cirque cirque NOM m s 23.25 19.53 22.95 18.38 +cirques cirque NOM m p 23.25 19.53 0.30 1.15 +cirrhose cirrhose NOM f s 0.90 0.27 0.90 0.27 +cirrhotique cirrhotique ADJ s 0.01 0.07 0.01 0.07 +cirrus cirrus NOM m 0.04 0.14 0.04 0.14 +cirses cirse NOM m p 0.00 0.07 0.00 0.07 +ciré ciré ADJ m s 0.36 5.27 0.35 3.58 +cirée cirer VER f s 6.42 20.27 0.14 12.16 par:pas; +cirées cirer VER f p 6.42 20.27 1.28 1.62 par:pas; +cirés ciré NOM m p 0.69 2.70 0.46 0.61 +cis cis ADJ m 0.03 0.00 0.03 0.00 +cisailla cisailler VER 0.11 2.57 0.00 0.20 ind:pas:3s; +cisaillage cisaillage NOM m s 0.00 0.07 0.00 0.07 +cisaillaient cisailler VER 0.11 2.57 0.00 0.34 ind:imp:3p; +cisaillait cisailler VER 0.11 2.57 0.00 0.20 ind:imp:3s; +cisaillant cisailler VER 0.11 2.57 0.00 0.20 par:pre; +cisaille cisaille NOM f s 1.60 0.95 0.36 0.74 +cisaillement cisaillement NOM m s 0.05 0.14 0.05 0.14 +cisaillent cisailler VER 0.11 2.57 0.01 0.07 ind:pre:3p; +cisailler cisailler VER 0.11 2.57 0.05 0.68 inf; +cisailles cisaille NOM f p 1.60 0.95 1.24 0.20 +cisaillèrent cisailler VER 0.11 2.57 0.00 0.07 ind:pas:3p; +cisaillé cisailler VER m s 0.11 2.57 0.01 0.41 par:pas; +cisaillée cisailler VER f s 0.11 2.57 0.00 0.07 par:pas; +cisaillées cisailler VER f p 0.11 2.57 0.00 0.07 par:pas; +cisaillés cisailler VER m p 0.11 2.57 0.00 0.07 par:pas; +ciseau ciseau NOM m s 8.72 13.85 0.86 2.84 +ciseaux ciseau NOM m p 8.72 13.85 7.86 11.01 +ciselaient ciseler VER 0.23 2.03 0.00 0.07 ind:imp:3p; +ciselait ciseler VER 0.23 2.03 0.01 0.14 ind:imp:3s; +ciseler ciseler VER 0.23 2.03 0.01 0.20 inf; +ciselet ciselet NOM m s 0.00 0.07 0.00 0.07 +ciseleurs ciseleur NOM m p 0.00 0.07 0.00 0.07 +ciselions ciseler VER 0.23 2.03 0.01 0.00 ind:imp:1p; +ciselé ciselé ADJ m s 0.07 2.43 0.02 1.15 +ciselée ciselé ADJ f s 0.07 2.43 0.05 0.27 +ciselées ciselé ADJ f p 0.07 2.43 0.00 0.61 +ciselure ciselure NOM f s 0.00 0.27 0.00 0.07 +ciselures ciselure NOM f p 0.00 0.27 0.00 0.20 +ciselés ciseler VER m p 0.23 2.03 0.14 0.07 par:pas; +ciste ciste NOM s 0.02 0.34 0.01 0.00 +cistercien cistercien ADJ m s 0.01 0.34 0.00 0.07 +cistercienne cistercien ADJ f s 0.01 0.34 0.00 0.20 +cisterciennes cistercien NOM f p 0.01 0.07 0.00 0.07 +cisterciens cistercien ADJ m p 0.01 0.34 0.01 0.07 +cistes ciste NOM p 0.02 0.34 0.01 0.34 +cisèle ciseler VER 0.23 2.03 0.01 0.20 ind:pre:3s; +cita citer VER 17.51 27.09 0.00 0.88 ind:pas:3s; +citadelle citadelle NOM f s 0.98 6.42 0.98 5.54 +citadelles citadelle NOM f p 0.98 6.42 0.00 0.88 +citadin citadin NOM m s 1.25 3.72 0.56 0.54 +citadine citadin NOM f s 1.25 3.72 0.10 0.27 +citadines citadin ADJ f p 0.42 2.03 0.11 0.54 +citadins citadin NOM m p 1.25 3.72 0.55 2.84 +citai citer VER 17.51 27.09 0.00 0.68 ind:pas:1s; +citaient citer VER 17.51 27.09 0.02 0.34 ind:imp:3p; +citais citer VER 17.51 27.09 0.19 0.47 ind:imp:1s;ind:imp:2s; +citait citer VER 17.51 27.09 0.15 3.18 ind:imp:3s; +citant citer VER 17.51 27.09 0.46 1.69 par:pre; +citation citation NOM f s 5.01 8.11 3.51 4.19 +citations citation NOM f p 5.01 8.11 1.50 3.92 +cite citer VER 17.51 27.09 5.61 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +citent citer VER 17.51 27.09 0.10 0.34 ind:pre:3p; +citer citer VER 17.51 27.09 4.38 7.16 inf;; +citera citer VER 17.51 27.09 0.11 0.14 ind:fut:3s; +citerai citer VER 17.51 27.09 0.35 0.68 ind:fut:1s; +citerais citer VER 17.51 27.09 0.03 0.14 cnd:pre:1s;cnd:pre:2s; +citerait citer VER 17.51 27.09 0.00 0.14 cnd:pre:3s; +citeras citer VER 17.51 27.09 0.02 0.00 ind:fut:2s; +citerne citerne NOM f s 4.19 2.09 3.74 1.28 +citernes citerne NOM f p 4.19 2.09 0.45 0.81 +cites citer VER 17.51 27.09 0.63 0.27 ind:pre:2s;sub:pre:2s; +citez citer VER 17.51 27.09 1.37 0.68 imp:pre:2p;ind:pre:2p; +cithare cithare NOM f s 0.34 0.95 0.34 0.54 +cithares cithare NOM f p 0.34 0.95 0.00 0.41 +citiez citer VER 17.51 27.09 0.04 0.07 ind:imp:2p; +citions citer VER 17.51 27.09 0.01 0.07 ind:imp:1p; +citizen_band citizen_band NOM f s 0.01 0.00 0.01 0.00 +citons citer VER 17.51 27.09 0.20 0.20 imp:pre:1p;ind:pre:1p; +citât citer VER 17.51 27.09 0.00 0.14 sub:imp:3s; +citoyen citoyen NOM m s 29.01 14.73 11.61 5.20 +citoyenne citoyen NOM f s 29.01 14.73 1.56 0.61 +citoyennes citoyenne NOM f p 0.59 0.00 0.59 0.00 +citoyenneté citoyenneté NOM f s 1.13 0.34 1.13 0.34 +citoyens citoyen NOM m p 29.01 14.73 15.83 8.65 +citrate citrate NOM m s 0.20 0.00 0.20 0.00 +citrine citrine NOM f s 0.06 0.07 0.06 0.07 +citrique citrique ADJ s 0.07 0.14 0.07 0.14 +citron citron NOM m s 10.92 10.81 8.10 9.05 +citronnade citronnade NOM f s 0.58 1.01 0.56 0.95 +citronnades citronnade NOM f p 0.58 1.01 0.02 0.07 +citronnelle citronnelle NOM f s 0.46 0.88 0.46 0.81 +citronnelles citronnelle NOM f p 0.46 0.88 0.00 0.07 +citronnez citronner VER 0.01 0.07 0.00 0.07 imp:pre:2p; +citronnier citronnier NOM m s 0.21 1.49 0.04 0.41 +citronniers citronnier NOM m p 0.21 1.49 0.17 1.08 +citronné citronné ADJ m s 0.06 0.07 0.03 0.07 +citronnée citronné ADJ f s 0.06 0.07 0.03 0.00 +citrons citron NOM m p 10.92 10.81 2.82 1.76 +citrouille citrouille NOM f s 1.88 2.91 1.56 2.43 +citrouilles citrouille NOM f p 1.88 2.91 0.32 0.47 +citrus citrus NOM m 0.17 0.00 0.17 0.00 +citèrent citer VER 17.51 27.09 0.01 0.07 ind:pas:3p; +cité_dortoir cité_dortoir NOM f s 0.00 0.27 0.00 0.14 +cité_jardin cité_jardin NOM f s 0.00 0.20 0.00 0.20 +cité cité NOM f s 16.11 23.99 14.55 20.68 +citée citer VER f s 17.51 27.09 0.53 0.68 par:pas; +citées citer VER f p 17.51 27.09 0.03 0.14 par:pas; +citérieure citérieur ADJ f s 0.00 0.07 0.00 0.07 +cité_dortoir cité_dortoir NOM f p 0.00 0.27 0.00 0.14 +cités cité NOM f p 16.11 23.99 1.56 3.31 +city city NOM f s 0.54 0.27 0.54 0.27 +civadière civadière NOM f s 0.01 0.00 0.01 0.00 +civelles civelle NOM f p 0.30 0.27 0.30 0.27 +civelots civelot NOM m p 0.00 0.14 0.00 0.14 +civet civet NOM m s 0.88 2.43 0.78 2.36 +civets civet NOM m p 0.88 2.43 0.10 0.07 +civette civette NOM f s 0.15 0.54 0.15 0.54 +civil civil ADJ m s 20.46 28.51 5.92 9.46 +civile civil ADJ f s 20.46 28.51 9.76 10.61 +civilement civilement ADV 0.04 0.74 0.04 0.74 +civiles civil ADJ f p 20.46 28.51 1.42 3.04 +civilisateur civilisateur ADJ m s 0.10 0.34 0.00 0.14 +civilisation civilisation NOM f s 12.43 19.32 10.48 16.62 +civilisations civilisation NOM f p 12.43 19.32 1.94 2.70 +civilisatrice civilisateur ADJ f s 0.10 0.34 0.10 0.20 +civilise civiliser VER 2.17 1.08 0.02 0.07 ind:pre:3s; +civiliser civiliser VER 2.17 1.08 0.34 0.20 inf; +civilises civiliser VER 2.17 1.08 0.00 0.07 ind:pre:2s; +civilisé civilisé ADJ m s 5.64 3.78 2.88 1.96 +civilisée civilisé ADJ f s 5.64 3.78 1.11 0.47 +civilisées civilisé ADJ f p 5.64 3.78 0.35 0.27 +civilisés civilisé ADJ m p 5.64 3.78 1.31 1.08 +civilité civilité NOM f s 1.48 1.42 0.90 1.01 +civilités civilité NOM f p 1.48 1.42 0.58 0.41 +civils civil NOM m p 14.23 13.99 8.00 5.54 +civique civique ADJ s 2.97 1.82 1.37 1.35 +civiques civique ADJ p 2.97 1.82 1.60 0.47 +civisme civisme NOM m s 0.26 0.54 0.26 0.54 +civière civière NOM f s 2.42 4.46 1.97 4.12 +civières civière NOM f p 2.42 4.46 0.45 0.34 +clôt clore VER 7.75 31.28 0.23 1.55 ind:pre:3s; +clôtura clôturer VER 1.12 1.82 0.02 0.07 ind:pas:3s; +clôturai clôturer VER 1.12 1.82 0.00 0.20 ind:pas:1s; +clôturaient clôturer VER 1.12 1.82 0.00 0.20 ind:imp:3p; +clôturait clôturer VER 1.12 1.82 0.00 0.20 ind:imp:3s; +clôture clôture NOM f s 6.00 10.68 5.34 7.84 +clôturent clôturer VER 1.12 1.82 0.00 0.07 ind:pre:3p; +clôturer clôturer VER 1.12 1.82 0.55 0.27 inf; +clôturera clôturer VER 1.12 1.82 0.02 0.00 ind:fut:3s; +clôtures clôture NOM f p 6.00 10.68 0.66 2.84 +clôturé clôturer VER m s 1.12 1.82 0.30 0.34 par:pas; +clôturée clôturer VER f s 1.12 1.82 0.03 0.07 par:pas; +clabaudage clabaudage NOM m s 0.02 0.07 0.01 0.00 +clabaudages clabaudage NOM m p 0.02 0.07 0.01 0.07 +clabaudaient clabauder VER 0.01 0.34 0.00 0.14 ind:imp:3p; +clabaudent clabauder VER 0.01 0.34 0.00 0.07 ind:pre:3p; +clabauder clabauder VER 0.01 0.34 0.01 0.07 inf; +clabauderies clabauderie NOM f p 0.00 0.07 0.00 0.07 +clabaudé clabauder VER m s 0.01 0.34 0.00 0.07 par:pas; +clabote claboter VER 0.01 0.47 0.00 0.14 ind:pre:1s;ind:pre:3s; +clabotent claboter VER 0.01 0.47 0.00 0.07 ind:pre:3p; +claboter claboter VER 0.01 0.47 0.00 0.14 inf; +claboté claboter VER m s 0.01 0.47 0.01 0.14 par:pas; +clac clac ONO 0.29 3.72 0.29 3.72 +clafouti clafouti NOM m s 0.00 0.07 0.00 0.07 +clafoutis clafoutis NOM m 0.05 0.54 0.05 0.54 +claie claie NOM f s 0.01 2.43 0.01 1.01 +claies claie NOM f p 0.01 2.43 0.00 1.42 +claim claim NOM m s 0.08 0.00 0.08 0.00 +clair_obscur clair_obscur NOM m s 0.02 1.96 0.02 1.62 +clair clair ADJ m s 122.69 156.69 88.54 91.01 +claire_voie claire_voie NOM f s 0.01 2.43 0.01 1.96 +claire clair ADJ f s 122.69 156.69 21.21 38.04 +clairement clairement ADV 18.75 18.18 18.75 18.18 +claire_voie claire_voie NOM f p 0.01 2.43 0.00 0.47 +claires clair ADJ f p 122.69 156.69 7.05 12.91 +clairet clairet NOM m s 0.02 0.00 0.02 0.00 +clairette clairet ADJ f s 0.00 0.88 0.00 0.88 +clairière clairière NOM f s 1.84 17.77 1.72 14.59 +clairières clairière NOM f p 1.84 17.77 0.12 3.18 +clairon clairon NOM m s 2.19 5.61 2.03 4.32 +claironna claironner VER 0.91 3.24 0.00 0.68 ind:pas:3s; +claironnait claironner VER 0.91 3.24 0.00 0.54 ind:imp:3s; +claironnant claironner VER 0.91 3.24 0.01 0.61 par:pre; +claironnante claironnant ADJ f s 0.00 1.08 0.00 0.74 +claironnantes claironnant ADJ f p 0.00 1.08 0.00 0.07 +claironnants claironnant ADJ m p 0.00 1.08 0.00 0.20 +claironne claironner VER 0.91 3.24 0.42 0.41 ind:pre:1s;ind:pre:3s; +claironnent claironner VER 0.91 3.24 0.27 0.07 ind:pre:3p; +claironner claironner VER 0.91 3.24 0.20 0.61 inf; +claironnions claironner VER 0.91 3.24 0.00 0.07 ind:imp:1p; +claironné claironner VER m s 0.91 3.24 0.01 0.27 par:pas; +clairons clairon NOM m p 2.19 5.61 0.16 1.28 +clair_obscur clair_obscur NOM m p 0.02 1.96 0.00 0.34 +clairs clair ADJ m p 122.69 156.69 5.89 14.73 +clairsemaient clairsemer VER 0.04 1.49 0.00 0.14 ind:imp:3p; +clairsemait clairsemer VER 0.04 1.49 0.00 0.07 ind:imp:3s; +clairsemant clairsemer VER 0.04 1.49 0.00 0.07 par:pre; +clairsemé clairsemé ADJ m s 0.27 3.18 0.01 0.54 +clairsemée clairsemer VER f s 0.04 1.49 0.01 0.41 par:pas; +clairsemées clairsemer VER f p 0.04 1.49 0.01 0.27 par:pas; +clairsemés clairsemé ADJ m p 0.27 3.18 0.26 1.22 +clairvoyance clairvoyance NOM f s 0.67 1.89 0.67 1.82 +clairvoyances clairvoyance NOM f p 0.67 1.89 0.00 0.07 +clairvoyant clairvoyant ADJ m s 0.96 1.69 0.53 1.01 +clairvoyante clairvoyant ADJ f s 0.96 1.69 0.22 0.47 +clairvoyants clairvoyant ADJ m p 0.96 1.69 0.22 0.20 +clam clam NOM m s 0.34 0.20 0.06 0.07 +clama clamer VER 2.61 7.30 0.00 1.15 ind:pas:3s; +clamai clamer VER 2.61 7.30 0.00 0.07 ind:pas:1s; +clamaient clamer VER 2.61 7.30 0.01 0.61 ind:imp:3p; +clamait clamer VER 2.61 7.30 0.11 1.15 ind:imp:3s; +clamant clamer VER 2.61 7.30 0.39 0.88 par:pre; +clame clamer VER 2.61 7.30 0.67 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clamecer clamecer VER 0.00 0.20 0.00 0.07 inf; +clamecé clamecer VER m s 0.00 0.20 0.00 0.07 par:pas; +clamecée clamecer VER f s 0.00 0.20 0.00 0.07 par:pas; +clament clamer VER 2.61 7.30 0.32 0.34 ind:pre:3p; +clamer clamer VER 2.61 7.30 0.71 0.61 inf; +clameraient clamer VER 2.61 7.30 0.00 0.07 cnd:pre:3p; +clameur clameur NOM f s 0.90 9.73 0.73 5.61 +clameurs clameur NOM f p 0.90 9.73 0.16 4.12 +clamez clamer VER 2.61 7.30 0.14 0.00 imp:pre:2p;ind:pre:2p; +clamions clamer VER 2.61 7.30 0.00 0.07 ind:imp:1p; +clamp clamp NOM m s 1.09 0.00 0.97 0.00 +clampe clamper VER 0.41 0.00 0.09 0.00 ind:pre:1s;ind:pre:3s; +clamper clamper VER 0.41 0.00 0.14 0.00 inf; +clampin clampin NOM m s 0.03 0.34 0.02 0.20 +clampins clampin NOM m p 0.03 0.34 0.01 0.14 +clamps clamp NOM m p 1.09 0.00 0.12 0.00 +clampé clamper VER m s 0.41 0.00 0.17 0.00 par:pas; +clams clam NOM m p 0.34 0.20 0.28 0.14 +clamse clamser VER 0.97 1.69 0.26 0.07 ind:pre:3s; +clamser clamser VER 0.97 1.69 0.29 0.74 inf; +clamserai clamser VER 0.97 1.69 0.01 0.20 ind:fut:1s; +clamserait clamser VER 0.97 1.69 0.01 0.14 cnd:pre:3s; +clamsé clamser VER m s 0.97 1.69 0.37 0.20 par:pas; +clamsée clamser VER f s 0.97 1.69 0.01 0.27 par:pas; +clamsés clamser VER m p 0.97 1.69 0.01 0.07 par:pas; +clamèrent clamer VER 2.61 7.30 0.01 0.07 ind:pas:3p; +clamé clamer VER m s 2.61 7.30 0.12 0.34 par:pas; +clamée clamer VER f s 2.61 7.30 0.14 0.07 par:pas; +clamés clamer VER m p 2.61 7.30 0.00 0.07 par:pas; +clan clan NOM m s 8.83 16.42 7.61 13.51 +clandestin clandestin ADJ m s 6.78 17.64 2.79 5.07 +clandestine clandestin ADJ f s 6.78 17.64 1.93 6.22 +clandestinement clandestinement ADV 1.48 2.84 1.48 2.84 +clandestines clandestin NOM f p 2.86 1.76 0.83 0.07 +clandestinité clandestinité NOM f s 0.48 4.80 0.48 4.73 +clandestinités clandestinité NOM f p 0.48 4.80 0.00 0.07 +clandestins clandestin ADJ m p 6.78 17.64 1.46 3.58 +clandé clandé NOM m s 0.19 1.35 0.04 1.28 +clandés clandé NOM m p 0.19 1.35 0.16 0.07 +clans clan NOM m p 8.83 16.42 1.22 2.91 +clap clap NOM m s 1.43 0.54 1.43 0.54 +clapant claper VER 0.00 2.30 0.00 0.47 par:pre; +clape claper VER 0.00 2.30 0.00 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clapent claper VER 0.00 2.30 0.00 0.14 ind:pre:3p; +claper claper VER 0.00 2.30 0.00 0.61 inf; +claperai claper VER 0.00 2.30 0.00 0.07 ind:fut:1s; +clapes claper VER 0.00 2.30 0.00 0.07 ind:pre:2s; +clapet clapet NOM m s 1.15 1.15 0.98 0.68 +clapets clapet NOM m p 1.15 1.15 0.17 0.47 +clapette clapette NOM f s 0.00 0.07 0.00 0.07 +clapier clapier NOM m s 0.30 2.84 0.28 1.42 +clapiers clapier NOM m p 0.30 2.84 0.02 1.42 +clapir clapir VER 0.00 0.14 0.00 0.07 inf; +clapit clapir VER 0.00 0.14 0.00 0.07 ind:pre:3s; +clapot clapot NOM m s 0.16 0.47 0.16 0.47 +clapota clapoter VER 0.09 3.24 0.00 0.14 ind:pas:3s; +clapotaient clapoter VER 0.09 3.24 0.00 0.27 ind:imp:3p; +clapotait clapoter VER 0.09 3.24 0.01 1.01 ind:imp:3s; +clapotant clapotant ADJ m s 0.00 1.22 0.00 0.47 +clapotante clapotant ADJ f s 0.00 1.22 0.00 0.54 +clapotantes clapotant ADJ f p 0.00 1.22 0.00 0.20 +clapote clapoter VER 0.09 3.24 0.03 0.41 imp:pre:2s;ind:pre:3s; +clapotement clapotement NOM m s 0.00 1.08 0.00 0.68 +clapotements clapotement NOM m p 0.00 1.08 0.00 0.41 +clapotent clapoter VER 0.09 3.24 0.01 0.34 ind:pre:3p; +clapoter clapoter VER 0.09 3.24 0.04 0.74 inf; +clapoterait clapoter VER 0.09 3.24 0.00 0.07 cnd:pre:3s; +clapotis clapotis NOM m 0.30 5.41 0.30 5.41 +clappait clapper VER 0.03 0.41 0.00 0.07 ind:imp:3s; +clappant clapper VER 0.03 0.41 0.00 0.20 par:pre; +clappe clapper VER 0.03 0.41 0.00 0.14 ind:pre:3s; +clappement clappement NOM m s 0.01 0.54 0.00 0.27 +clappements clappement NOM m p 0.01 0.54 0.01 0.27 +clapper clapper VER 0.03 0.41 0.03 0.00 inf; +clapé claper VER m s 0.00 2.30 0.00 0.41 par:pas; +claqua claquer VER 15.13 74.19 0.00 7.23 ind:pas:3s; +claquage claquage NOM m s 0.10 0.07 0.10 0.07 +claquai claquer VER 15.13 74.19 0.00 0.14 ind:pas:1s; +claquaient claquer VER 15.13 74.19 0.07 4.39 ind:imp:3p; +claquais claquer VER 15.13 74.19 0.05 0.34 ind:imp:1s;ind:imp:2s; +claquait claquer VER 15.13 74.19 0.15 4.12 ind:imp:3s; +claquant claquer VER 15.13 74.19 0.65 9.19 par:pre; +claquante claquant ADJ f s 0.14 1.42 0.00 0.14 +claquantes claquant ADJ f p 0.14 1.42 0.00 0.14 +claquants claquant ADJ m p 0.14 1.42 0.00 0.20 +claque_merde claque_merde NOM m s 0.19 0.27 0.19 0.27 +claque claque NOM s 6.88 14.26 5.19 8.65 +claquedents claquedent NOM m p 0.00 0.07 0.00 0.07 +claquement claquement NOM m s 0.96 14.73 0.71 9.46 +claquements claquement NOM m p 0.96 14.73 0.25 5.27 +claquemurait claquemurer VER 0.14 1.28 0.00 0.14 ind:imp:3s; +claquemurant claquemurer VER 0.14 1.28 0.14 0.00 par:pre; +claquemurer claquemurer VER 0.14 1.28 0.00 0.07 inf; +claquemures claquemurer VER 0.14 1.28 0.00 0.07 ind:pre:2s; +claquemuré claquemurer VER m s 0.14 1.28 0.01 0.41 par:pas; +claquemurée claquemurer VER f s 0.14 1.28 0.00 0.34 par:pas; +claquemurées claquemurer VER f p 0.14 1.28 0.00 0.20 par:pas; +claquemurés claquemurer VER m p 0.14 1.28 0.00 0.07 par:pas; +claquent claquer VER 15.13 74.19 0.28 5.14 ind:pre:3p; +claquer claquer VER 15.13 74.19 4.50 19.59 inf; +claquera claquer VER 15.13 74.19 0.19 0.20 ind:fut:3s; +claquerai claquer VER 15.13 74.19 0.15 0.07 ind:fut:1s; +claqueraient claquer VER 15.13 74.19 0.00 0.20 cnd:pre:3p; +claquerais claquer VER 15.13 74.19 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +claquerait claquer VER 15.13 74.19 0.25 0.34 cnd:pre:3s; +claqueriez claquer VER 15.13 74.19 0.01 0.00 cnd:pre:2p; +claqueront claquer VER 15.13 74.19 0.01 0.00 ind:fut:3p; +claques claque NOM p 6.88 14.26 1.69 5.61 +claquet claquet NOM m s 0.02 0.00 0.02 0.00 +claquette claquette NOM f s 1.71 1.22 0.10 0.07 +claquettes claquette NOM f p 1.71 1.22 1.61 1.15 +claquetèrent claqueter VER 0.00 0.07 0.00 0.07 ind:pas:3p; +claqueurs claqueur NOM m p 0.00 0.07 0.00 0.07 +claquez claquer VER 15.13 74.19 0.46 0.07 imp:pre:2p;ind:pre:2p; +claquions claquer VER 15.13 74.19 0.00 0.07 ind:imp:1p; +claquoirs claquoir NOM m p 0.01 0.14 0.01 0.14 +claquons claquer VER 15.13 74.19 0.02 0.00 imp:pre:1p; +claquât claquer VER 15.13 74.19 0.00 0.07 sub:imp:3s; +claquèrent claquer VER 15.13 74.19 0.00 1.35 ind:pas:3p; +claqué claquer VER m s 15.13 74.19 2.56 7.30 par:pas; +claquée claquer VER f s 15.13 74.19 0.55 1.15 par:pas; +claquées claquer VER f p 15.13 74.19 0.11 1.15 par:pas; +claqués claquer VER m p 15.13 74.19 0.10 0.27 par:pas; +clarifia clarifier VER 3.64 0.74 0.00 0.14 ind:pas:3s; +clarifiant clarifier VER 3.64 0.74 0.01 0.00 par:pre; +clarification clarification NOM f s 0.07 0.07 0.07 0.07 +clarifie clarifier VER 3.64 0.74 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clarifier clarifier VER 3.64 0.74 2.79 0.27 inf; +clarifions clarifier VER 3.64 0.74 0.26 0.00 imp:pre:1p; +clarifié clarifier VER m s 3.64 0.74 0.33 0.20 par:pas; +clarifiée clarifier VER f s 3.64 0.74 0.02 0.00 par:pas; +clarine clarine NOM f s 0.40 0.54 0.40 0.07 +clarines clarine NOM f p 0.40 0.54 0.00 0.47 +clarinette clarinette NOM f s 2.21 3.58 2.20 3.11 +clarinettes clarinette NOM f p 2.21 3.58 0.01 0.47 +clarinettiste clarinettiste NOM s 0.23 0.20 0.23 0.20 +clarisse clarisse NOM f s 0.33 0.41 0.06 0.00 +clarisses clarisse NOM f p 0.33 0.41 0.27 0.41 +clarissimes clarissime NOM m p 0.00 0.14 0.00 0.14 +clarté clarté NOM f s 4.62 30.68 4.48 28.24 +clartés clarté NOM f p 4.62 30.68 0.14 2.43 +clash clash NOM m s 1.70 1.55 1.70 1.55 +class class ADJ 0.51 1.08 0.51 1.08 +classa classer VER 12.11 12.70 0.02 0.27 ind:pas:3s; +classable classable ADJ s 0.14 0.00 0.14 0.00 +classaient classer VER 12.11 12.70 0.03 0.20 ind:imp:3p; +classais classer VER 12.11 12.70 0.27 0.41 ind:imp:1s;ind:imp:2s; +classait classer VER 12.11 12.70 0.04 1.01 ind:imp:3s; +classant classer VER 12.11 12.70 0.04 0.47 par:pre; +classe classe NOM f s 78.99 108.92 70.46 90.74 +classement classement NOM m s 2.65 2.09 2.34 1.76 +classements classement NOM m p 2.65 2.09 0.31 0.34 +classent classer VER 12.11 12.70 0.05 0.14 ind:pre:3p; +classer classer VER 12.11 12.70 2.02 2.84 inf; +classera classer VER 12.11 12.70 0.03 0.07 ind:fut:3s; +classerai classer VER 12.11 12.70 0.02 0.00 ind:fut:1s; +classeraient classer VER 12.11 12.70 0.00 0.07 cnd:pre:3p; +classerais classer VER 12.11 12.70 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +classerait classer VER 12.11 12.70 0.03 0.14 cnd:pre:3s; +classeras classer VER 12.11 12.70 0.01 0.00 ind:fut:2s; +classes classe NOM f p 78.99 108.92 8.53 18.18 +classeur classeur NOM m s 0.69 3.38 0.56 1.35 +classeurs classeur NOM m p 0.69 3.38 0.13 2.03 +classez classer VER 12.11 12.70 0.34 0.07 imp:pre:2p;ind:pre:2p; +classicisme classicisme NOM m s 0.04 0.34 0.04 0.34 +classico classico ADV 0.01 0.00 0.01 0.00 +classieuse classieux ADJ f s 0.28 0.00 0.13 0.00 +classieux classieux ADJ m 0.28 0.00 0.14 0.00 +classiez classer VER 12.11 12.70 0.01 0.00 sub:pre:2p; +classifiables classifiable ADJ p 0.00 0.07 0.00 0.07 +classificateur classificateur ADJ m s 0.00 0.20 0.00 0.14 +classification classification NOM f s 0.59 1.08 0.57 0.95 +classifications classification NOM f p 0.59 1.08 0.02 0.14 +classificatrice classificateur ADJ f s 0.00 0.20 0.00 0.07 +classifient classifier VER 0.53 0.20 0.00 0.07 ind:pre:3p; +classifier classifier VER 0.53 0.20 0.23 0.14 inf; +classifierais classifier VER 0.53 0.20 0.01 0.00 cnd:pre:2s; +classifié classifier VER m s 0.53 0.20 0.23 0.00 par:pas; +classifiées classifier VER f p 0.53 0.20 0.06 0.00 par:pas; +classique classique ADJ s 15.58 21.01 13.74 15.81 +classiquement classiquement ADV 0.00 0.14 0.00 0.14 +classiques classique NOM p 7.02 4.80 1.87 2.57 +classons classer VER 12.11 12.70 0.05 0.00 imp:pre:1p;ind:pre:1p; +classèrent classer VER 12.11 12.70 0.00 0.14 ind:pas:3p; +classé classer VER m s 12.11 12.70 2.28 1.42 par:pas; +classée classé ADJ f s 4.75 2.70 2.39 0.81 +classées classé ADJ f p 4.75 2.70 0.98 0.34 +classés classer VER m p 12.11 12.70 0.58 0.81 par:pas; +clathres clathre NOM m p 0.00 0.14 0.00 0.14 +claude claude NOM s 0.01 2.64 0.01 2.64 +claudicant claudicant ADJ m s 0.01 0.54 0.00 0.20 +claudicante claudicant ADJ f s 0.01 0.54 0.01 0.27 +claudicants claudicant ADJ m p 0.01 0.54 0.00 0.07 +claudication claudication NOM f s 0.07 0.68 0.07 0.68 +claudiquait claudiquer VER 0.08 0.88 0.00 0.14 ind:imp:3s; +claudiquant claudiquer VER 0.08 0.88 0.01 0.68 par:pre; +claudique claudiquer VER 0.08 0.88 0.05 0.00 imp:pre:2s;ind:pre:1s; +claudiquer claudiquer VER 0.08 0.88 0.01 0.00 inf; +claudiquerait claudiquer VER 0.08 0.88 0.00 0.07 cnd:pre:3s; +claudiquerez claudiquer VER 0.08 0.88 0.01 0.00 ind:fut:2p; +claudélienne claudélien ADJ f s 0.00 0.07 0.00 0.07 +clause clause NOM f s 3.47 1.89 2.94 1.01 +clauses clause NOM f p 3.47 1.89 0.53 0.88 +clausewitziens clausewitzien ADJ m p 0.00 0.07 0.00 0.07 +claustrait claustrer VER 0.00 0.20 0.00 0.07 ind:imp:3s; +claustrale claustral ADJ f s 0.00 0.07 0.00 0.07 +claustration claustration NOM f s 0.02 1.01 0.02 1.01 +claustrophobe claustrophobe ADJ m s 0.90 0.07 0.90 0.07 +claustrophobie claustrophobie NOM f s 0.26 0.07 0.26 0.07 +claustrée claustrer VER f s 0.00 0.20 0.00 0.14 par:pas; +clavaire clavaire NOM f s 0.00 0.20 0.00 0.07 +clavaires clavaire NOM f p 0.00 0.20 0.00 0.14 +claveaux claveau NOM m p 0.00 0.14 0.00 0.14 +clavecin clavecin NOM m s 0.75 2.43 0.75 2.30 +claveciniste claveciniste NOM s 0.00 0.20 0.00 0.20 +clavecins clavecin NOM m p 0.75 2.43 0.00 0.14 +clavette clavette NOM f s 0.01 0.00 0.01 0.00 +clavicule clavicule NOM f s 1.96 1.28 1.74 0.68 +clavicules clavicule NOM f p 1.96 1.28 0.22 0.61 +clavier clavier NOM m s 1.77 3.58 1.62 3.24 +claviers clavier NOM m p 1.77 3.58 0.15 0.34 +clayettes clayette NOM f p 0.00 0.07 0.00 0.07 +claymore claymore NOM f s 0.20 0.00 0.20 0.00 +clayon clayon NOM m s 0.00 0.14 0.00 0.07 +clayonnage clayonnage NOM m s 0.01 0.20 0.01 0.07 +clayonnages clayonnage NOM m p 0.01 0.20 0.00 0.14 +clayonnée clayonner VER f s 0.00 0.27 0.00 0.27 par:pas; +clayons clayon NOM m p 0.00 0.14 0.00 0.07 +clean clean ADJ 4.66 0.74 4.66 0.74 +clearing clearing NOM m s 0.04 0.00 0.04 0.00 +clebs clebs NOM m 2.00 3.11 2.00 3.11 +clef clef NOM f s 24.32 44.86 14.61 35.61 +clefs clef NOM f p 24.32 44.86 9.72 9.26 +clenche clenche NOM f s 0.00 0.47 0.00 0.41 +clenches clenche NOM f p 0.00 0.47 0.00 0.07 +clepsydre clepsydre NOM f s 0.00 1.62 0.00 1.62 +cleptomane cleptomane NOM s 0.09 0.00 0.09 0.00 +cleptomanie cleptomanie NOM f s 0.02 0.00 0.02 0.00 +clerc clerc NOM m s 0.82 9.26 0.73 5.68 +clercs clerc NOM m p 0.82 9.26 0.09 3.58 +clergeon clergeon NOM m s 0.00 0.14 0.00 0.14 +clergé clergé NOM m s 2.08 3.99 2.07 3.78 +clergés clergé NOM m p 2.08 3.99 0.01 0.20 +clergyman clergyman NOM m s 0.05 0.81 0.05 0.61 +clergymen clergyman NOM m p 0.05 0.81 0.00 0.20 +clermontois clermontois NOM m 0.00 0.14 0.00 0.14 +clermontoise clermontois ADJ f s 0.00 0.07 0.00 0.07 +clic_clac clic_clac ONO 0.10 0.07 0.10 0.07 +clic clic ONO 0.20 0.81 0.20 0.81 +clichage clichage NOM m s 0.00 0.07 0.00 0.07 +clicher clicher VER 0.60 0.27 0.01 0.07 inf; +clicherie clicherie NOM f s 0.00 0.27 0.00 0.27 +clicheur clicheur NOM m s 0.00 0.07 0.00 0.07 +cliché cliché NOM m s 7.59 11.96 3.69 5.34 +clichée cliché ADJ f s 1.20 0.54 0.00 0.07 +clichés cliché NOM m p 7.59 11.96 3.89 6.62 +click click NOM m s 0.40 0.00 0.40 0.00 +clics clic NOM m p 1.17 1.08 0.22 0.20 +client_roi client_roi NOM m s 0.00 0.07 0.00 0.07 +client client NOM m s 112.12 81.55 53.63 28.78 +cliente client NOM f s 112.12 81.55 9.22 6.89 +clientes client NOM f p 112.12 81.55 2.24 4.26 +clients client NOM m p 112.12 81.55 47.03 41.62 +clientèle clientèle NOM f s 3.88 18.78 3.87 18.51 +clientèles clientèle NOM f p 3.88 18.78 0.01 0.27 +cligna cligner VER 2.80 18.85 0.02 3.04 ind:pas:3s; +clignaient cligner VER 2.80 18.85 0.16 0.68 ind:imp:3p; +clignais cligner VER 2.80 18.85 0.00 0.27 ind:imp:1s; +clignait cligner VER 2.80 18.85 0.14 1.62 ind:imp:3s; +clignant cligner VER 2.80 18.85 0.22 5.68 par:pre; +cligne cligner VER 2.80 18.85 0.95 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clignement clignement NOM m s 0.14 2.03 0.11 1.22 +clignements clignement NOM m p 0.14 2.03 0.03 0.81 +clignent cligner VER 2.80 18.85 0.31 0.41 ind:pre:3p; +cligner cligner VER 2.80 18.85 0.47 2.77 inf; +clignez cligner VER 2.80 18.85 0.16 0.00 imp:pre:2p;ind:pre:2p; +clignons cligner VER 2.80 18.85 0.00 0.07 ind:pre:1p; +clignota clignoter VER 1.57 5.68 0.00 0.20 ind:pas:3s; +clignotaient clignoter VER 1.57 5.68 0.00 1.62 ind:imp:3p; +clignotait clignoter VER 1.57 5.68 0.08 0.61 ind:imp:3s; +clignotant clignotant NOM m s 1.00 1.35 0.97 1.01 +clignotante clignotant ADJ f s 1.06 2.77 0.07 0.74 +clignotantes clignotant ADJ f p 1.06 2.77 0.05 0.61 +clignotants clignotant ADJ m p 1.06 2.77 0.18 0.81 +clignote clignoter VER 1.57 5.68 0.61 0.88 imp:pre:2s;ind:pre:3s; +clignotement clignotement NOM m s 0.07 1.49 0.07 0.81 +clignotements clignotement NOM m p 0.07 1.49 0.00 0.68 +clignotent clignoter VER 1.57 5.68 0.49 1.01 ind:pre:3p; +clignoter clignoter VER 1.57 5.68 0.16 0.54 inf; +clignotera clignoter VER 1.57 5.68 0.01 0.00 ind:fut:3s; +clignoterait clignoter VER 1.57 5.68 0.00 0.07 cnd:pre:3s; +clignoteur clignoteur NOM m s 0.00 0.07 0.00 0.07 +clignotèrent clignoter VER 1.57 5.68 0.00 0.14 ind:pas:3p; +clignoté clignoter VER m s 1.57 5.68 0.04 0.14 par:pas; +clignèrent cligner VER 2.80 18.85 0.00 0.34 ind:pas:3p; +cligné cligner VER m s 2.80 18.85 0.38 1.15 par:pas; +clignées cligner VER f p 2.80 18.85 0.00 0.14 par:pas; +clignés cligner VER m p 2.80 18.85 0.00 0.20 par:pas; +clilles clille NOM p 0.00 0.27 0.00 0.27 +climat climat NOM m s 7.21 18.99 6.64 17.16 +climatique climatique ADJ s 0.51 0.27 0.26 0.07 +climatiques climatique ADJ p 0.51 0.27 0.25 0.20 +climatisant climatiser VER 0.39 0.41 0.00 0.07 par:pre; +climatisation climatisation NOM f s 1.79 0.20 1.79 0.20 +climatiser climatiser VER 0.39 0.41 0.01 0.00 inf; +climatiseur climatiseur NOM m s 0.85 0.20 0.78 0.14 +climatiseurs climatiseur NOM m p 0.85 0.20 0.07 0.07 +climatisé climatisé ADJ m s 0.37 0.47 0.29 0.27 +climatisée climatiser VER f s 0.39 0.41 0.20 0.20 par:pas; +climatisées climatisé ADJ f p 0.37 0.47 0.02 0.07 +climatisés climatisé ADJ m p 0.37 0.47 0.01 0.07 +climatologue climatologue NOM s 0.02 0.00 0.02 0.00 +climats climat NOM m p 7.21 18.99 0.57 1.82 +climatériques climatérique ADJ f p 0.00 0.07 0.00 0.07 +climax climax NOM m 0.18 0.07 0.18 0.07 +clin_d_oeil clin_d_oeil NOM m s 0.01 0.00 0.01 0.00 +clin clin NOM m s 3.97 19.46 3.63 16.55 +clinche clinche NOM f s 0.00 0.07 0.00 0.07 +clinicat clinicat NOM m s 0.07 0.00 0.07 0.00 +clinicien clinicien NOM m s 0.05 0.20 0.01 0.20 +clinicienne clinicien NOM f s 0.05 0.20 0.01 0.00 +cliniciens clinicien NOM m p 0.05 0.20 0.03 0.00 +clinique clinique NOM f s 18.79 11.82 17.72 10.81 +cliniquement cliniquement ADV 0.92 0.14 0.92 0.14 +cliniques clinique NOM f p 18.79 11.82 1.06 1.01 +clinker clinker NOM m s 0.14 0.00 0.14 0.00 +clinquant clinquant ADJ m s 0.34 1.76 0.07 0.47 +clinquante clinquant ADJ f s 0.34 1.76 0.06 0.34 +clinquantes clinquant ADJ f p 0.34 1.76 0.16 0.34 +clinquants clinquant ADJ m p 0.34 1.76 0.05 0.61 +clins clin NOM m p 3.97 19.46 0.34 2.91 +clip clip NOM m s 2.98 1.28 2.12 0.61 +clipper clipper NOM m s 0.50 0.20 0.40 0.20 +clippers clipper NOM m p 0.50 0.20 0.09 0.00 +clips clip NOM m p 2.98 1.28 0.86 0.68 +cliquant cliquer VER 0.68 0.00 0.02 0.00 par:pre; +clique clique NOM f s 2.78 3.11 2.41 2.84 +cliquer cliquer VER 0.68 0.00 0.27 0.00 inf; +cliques clique NOM f p 2.78 3.11 0.37 0.27 +cliquet cliquet NOM m s 0.16 0.07 0.02 0.07 +cliqueta cliqueter VER 0.69 3.11 0.00 0.14 ind:pas:3s; +cliquetaient cliqueter VER 0.69 3.11 0.02 0.68 ind:imp:3p; +cliquetait cliqueter VER 0.69 3.11 0.00 0.54 ind:imp:3s; +cliquetant cliqueter VER 0.69 3.11 0.03 0.34 par:pre; +cliquetante cliquetant ADJ f s 0.00 0.95 0.00 0.34 +cliquetantes cliquetant ADJ f p 0.00 0.95 0.00 0.20 +cliquetants cliquetant ADJ m p 0.00 0.95 0.00 0.14 +cliqueter cliqueter VER 0.69 3.11 0.19 0.81 inf; +cliquetis cliquetis NOM m 0.38 8.04 0.38 8.04 +cliquets cliquet NOM m p 0.16 0.07 0.14 0.00 +cliquette cliqueter VER 0.69 3.11 0.04 0.47 ind:pre:1s;ind:pre:3s; +cliquettement cliquettement NOM m s 0.00 0.07 0.00 0.07 +cliquettent cliqueter VER 0.69 3.11 0.41 0.14 ind:pre:3p; +cliquettes cliquette NOM f p 0.00 0.07 0.00 0.07 +cliquez cliquer VER 0.68 0.00 0.28 0.00 imp:pre:2p;ind:pre:2p; +cliquètement cliquètement NOM m s 0.00 0.27 0.00 0.20 +cliquètements cliquètement NOM m p 0.00 0.27 0.00 0.07 +cliqué cliquer VER m s 0.68 0.00 0.10 0.00 par:pas; +clissées clisser VER f p 0.00 0.07 0.00 0.07 par:pas; +clito clito NOM m s 0.36 0.41 0.36 0.41 +clitoridectomie clitoridectomie NOM f s 0.03 0.00 0.03 0.00 +clitoridien clitoridien ADJ m s 0.04 0.41 0.04 0.07 +clitoridienne clitoridien ADJ f s 0.04 0.41 0.00 0.34 +clitoris clitoris NOM m 1.28 0.41 1.28 0.41 +clivage clivage NOM m s 0.02 0.61 0.01 0.27 +clivages clivage NOM m p 0.02 0.61 0.01 0.34 +cliver cliver VER 0.01 0.00 0.01 0.00 inf; +clivés clivé ADJ m p 0.03 0.00 0.03 0.00 +cloîtra cloîtrer VER 0.80 2.09 0.00 0.07 ind:pas:3s; +cloîtrai cloîtrer VER 0.80 2.09 0.00 0.07 ind:pas:1s; +cloîtraient cloîtrer VER 0.80 2.09 0.00 0.14 ind:imp:3p; +cloîtrait cloîtrer VER 0.80 2.09 0.00 0.14 ind:imp:3s; +cloîtrant cloîtrer VER 0.80 2.09 0.01 0.00 par:pre; +cloître cloître NOM m s 0.89 7.23 0.84 6.28 +cloîtrer cloîtrer VER 0.80 2.09 0.17 0.27 inf; +cloîtres cloître NOM m p 0.89 7.23 0.05 0.95 +cloîtrâmes cloîtrer VER 0.80 2.09 0.01 0.00 ind:pas:1p; +cloîtré cloîtrer VER m s 0.80 2.09 0.22 0.54 par:pas; +cloîtrée cloîtrer VER f s 0.80 2.09 0.17 0.61 par:pas; +cloîtrées cloîtré ADJ f p 0.33 0.54 0.14 0.07 +cloîtrés cloîtrer VER m p 0.80 2.09 0.05 0.00 par:pas; +cloacal cloacal ADJ m s 0.00 0.07 0.00 0.07 +cloaque cloaque NOM m s 0.75 1.89 0.59 1.76 +cloaques cloaque NOM m p 0.75 1.89 0.16 0.14 +cloc cloc NOM m s 0.00 0.07 0.00 0.07 +clochaient clocher VER 8.93 2.97 0.00 0.07 ind:imp:3p; +clochait clocher VER 8.93 2.97 0.93 1.08 ind:imp:3s; +clochant clocher VER 8.93 2.97 0.00 0.27 par:pre; +clochard clochard NOM m s 3.88 10.88 2.40 5.27 +clocharde clochard NOM f s 3.88 10.88 0.32 1.15 +clochardes clochard NOM f p 3.88 10.88 0.18 0.00 +clochardisait clochardiser VER 0.00 0.34 0.00 0.07 ind:imp:3s; +clochardisation clochardisation NOM f s 0.01 0.20 0.01 0.20 +clochardiser clochardiser VER 0.00 0.34 0.00 0.20 inf; +clochardisé clochardiser VER m s 0.00 0.34 0.00 0.07 par:pas; +clochards clochard NOM m p 3.88 10.88 0.98 4.46 +cloche_pied cloche_pied NOM f s 0.01 0.14 0.01 0.14 +cloche cloche NOM f s 19.72 34.59 9.01 18.24 +clochent clocher VER 8.93 2.97 0.15 0.00 ind:pre:3p; +clocher clocher NOM m s 2.38 13.65 1.87 11.01 +clochers clocher NOM m p 2.38 13.65 0.51 2.64 +cloches cloche NOM f p 19.72 34.59 10.71 16.35 +clocheton clocheton NOM m s 0.00 2.09 0.00 0.88 +clochetons clocheton NOM m p 0.00 2.09 0.00 1.22 +clochette clochette NOM f s 3.43 5.74 2.57 2.50 +clochettes clochette NOM f p 3.43 5.74 0.86 3.24 +clochât clocher VER 8.93 2.97 0.00 0.07 sub:imp:3s; +cloché clocher VER m s 8.93 2.97 0.03 0.00 par:pas; +clodo clodo NOM m s 4.12 4.05 3.36 2.16 +clodos clodo NOM m p 4.12 4.05 0.76 1.89 +cloison cloison NOM f s 2.83 18.24 1.52 12.77 +cloisonnaient cloisonner VER 0.03 0.61 0.00 0.14 ind:imp:3p; +cloisonnais cloisonner VER 0.03 0.61 0.00 0.07 ind:imp:1s; +cloisonnant cloisonner VER 0.03 0.61 0.00 0.07 par:pre; +cloisonne cloisonner VER 0.03 0.61 0.01 0.00 ind:pre:3s; +cloisonnement cloisonnement NOM m s 0.01 0.68 0.01 0.47 +cloisonnements cloisonnement NOM m p 0.01 0.68 0.00 0.20 +cloisonner cloisonner VER 0.03 0.61 0.00 0.07 inf; +cloisonné cloisonné ADJ m s 0.16 0.68 0.01 0.41 +cloisonnée cloisonné ADJ f s 0.16 0.68 0.14 0.00 +cloisonnées cloisonné ADJ f p 0.16 0.68 0.01 0.07 +cloisonnés cloisonner VER m p 0.03 0.61 0.01 0.14 par:pas; +cloisons cloison NOM f p 2.83 18.24 1.31 5.47 +clonage clonage NOM m s 1.05 0.07 1.05 0.07 +clonant cloner VER 1.31 0.00 0.01 0.00 par:pre; +clone clone NOM m s 3.49 0.20 2.48 0.07 +clonent cloner VER 1.31 0.00 0.04 0.00 ind:pre:3p; +cloner cloner VER 1.31 0.00 0.63 0.00 inf; +clones clone NOM m p 3.49 0.20 1.01 0.14 +clonique clonique ADJ f s 0.01 0.00 0.01 0.00 +cloné cloner VER m s 1.31 0.00 0.46 0.00 par:pas; +clonés cloner VER m p 1.31 0.00 0.09 0.00 par:pas; +clopais cloper VER 0.07 0.74 0.01 0.00 ind:imp:1s; +clopant cloper VER 0.07 0.74 0.00 0.14 par:pre; +clope clope NOM s 11.94 4.93 7.87 2.50 +cloper cloper VER 0.07 0.74 0.03 0.34 inf; +clopes clope NOM p 11.94 4.93 4.08 2.43 +clopeur clopeur NOM m s 0.00 0.07 0.00 0.07 +clopin_clopant clopin_clopant ADV 0.00 0.14 0.00 0.14 +clopina clopiner VER 0.12 1.01 0.00 0.14 ind:pas:3s; +clopinait clopiner VER 0.12 1.01 0.02 0.27 ind:imp:3s; +clopinant clopiner VER 0.12 1.01 0.05 0.41 par:pre; +clopine clopiner VER 0.12 1.01 0.02 0.07 ind:pre:3s; +clopinements clopinement NOM m p 0.00 0.07 0.00 0.07 +clopiner clopiner VER 0.12 1.01 0.01 0.07 inf; +clopinettes clopinettes NOM f p 0.94 0.27 0.94 0.27 +clopinez clopiner VER 0.12 1.01 0.02 0.00 imp:pre:2p;ind:pre:2p; +clopinâmes clopiner VER 0.12 1.01 0.00 0.07 ind:pas:1p; +cloporte cloporte NOM m s 0.70 2.97 0.13 1.55 +cloportes cloporte NOM m p 0.70 2.97 0.57 1.42 +cloquait cloquer VER 0.00 3.99 0.00 0.20 ind:imp:3s; +cloquant cloquer VER 0.00 3.99 0.00 0.07 par:pre; +cloque cloque NOM f s 1.43 3.45 1.14 1.89 +cloquent cloquer VER 0.00 3.99 0.00 0.07 ind:pre:3p; +cloquer cloquer VER 0.00 3.99 0.00 0.74 inf; +cloques cloque NOM f p 1.43 3.45 0.28 1.55 +cloqué cloquer VER m s 0.00 3.99 0.00 1.35 par:pas; +cloquée cloquer VER f s 0.00 3.99 0.00 0.34 par:pas; +cloquées cloquer VER f p 0.00 3.99 0.00 0.07 par:pas; +cloqués cloqué ADJ m p 0.00 0.27 0.00 0.14 +clora clore VER 7.75 31.28 0.01 0.00 ind:fut:3s; +clore clore VER 7.75 31.28 1.42 2.57 inf; +clos clore VER m 7.75 31.28 3.70 21.96 imp:pre:2s;ind:pre:1s;par:pas;par:pas; +close_combat close_combat NOM m s 0.04 0.07 0.04 0.07 +close_up close_up NOM m s 0.01 0.07 0.01 0.07 +close clore VER f s 7.75 31.28 2.26 3.24 par:pas;par:pas;sub:pre:1s;sub:pre:3s; +closent clore VER 7.75 31.28 0.00 0.14 ind:pre:3p; +closerie closerie NOM f s 0.01 0.81 0.01 0.81 +closes clos ADJ f p 4.62 19.46 1.90 7.43 +clou clou NOM m s 13.83 27.50 7.79 10.20 +cloua clouer VER 7.51 19.39 0.14 1.35 ind:pas:3s; +clouage clouage NOM m s 0.00 0.07 0.00 0.07 +clouai clouer VER 7.51 19.39 0.00 0.20 ind:pas:1s; +clouaient clouer VER 7.51 19.39 0.23 0.54 ind:imp:3p; +clouait clouer VER 7.51 19.39 0.18 2.09 ind:imp:3s; +clouant clouer VER 7.51 19.39 0.15 0.61 par:pre; +cloue clouer VER 7.51 19.39 1.12 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +clouent clouer VER 7.51 19.39 0.04 0.47 ind:pre:3p; +clouer clouer VER 7.51 19.39 1.39 2.64 inf; +clouera clouer VER 7.51 19.39 0.04 0.00 ind:fut:3s; +clouerai clouer VER 7.51 19.39 0.07 0.00 ind:fut:1s; +cloueraient clouer VER 7.51 19.39 0.01 0.07 cnd:pre:3p; +clouerait clouer VER 7.51 19.39 0.14 0.14 cnd:pre:3s; +cloueras clouer VER 7.51 19.39 0.00 0.07 ind:fut:2s; +clouerez clouer VER 7.51 19.39 0.01 0.00 ind:fut:2p; +cloueur cloueur NOM m s 0.16 0.07 0.00 0.07 +cloueuse cloueur NOM f s 0.16 0.07 0.16 0.00 +clouez clouer VER 7.51 19.39 0.22 0.07 imp:pre:2p;ind:pre:2p; +clouions clouer VER 7.51 19.39 0.00 0.07 ind:imp:1p; +clouons clouer VER 7.51 19.39 0.03 0.00 imp:pre:1p;ind:pre:1p; +clous clou NOM m p 13.83 27.50 6.04 17.30 +cloutage cloutage NOM m s 0.00 0.07 0.00 0.07 +clouèrent clouer VER 7.51 19.39 0.00 0.14 ind:pas:3p; +cloutier cloutier NOM m s 0.62 0.00 0.62 0.00 +clouté clouté ADJ m s 0.80 3.78 0.29 1.62 +cloutée clouté ADJ f s 0.80 3.78 0.05 0.34 +cloutées clouté ADJ f p 0.80 3.78 0.14 0.54 +cloutés clouté ADJ m p 0.80 3.78 0.31 1.28 +cloué clouer VER m s 7.51 19.39 2.40 5.54 par:pas; +clouée clouer VER f s 7.51 19.39 0.53 2.84 par:pas; +clouées clouer VER f p 7.51 19.39 0.32 0.61 par:pas; +cloués clouer VER m p 7.51 19.39 0.49 0.74 par:pas; +clown clown NOM m s 0.06 9.19 0.06 6.49 +clownerie clownerie NOM f s 0.00 0.34 0.00 0.07 +clowneries clownerie NOM f p 0.00 0.34 0.00 0.27 +clownesque clownesque ADJ s 0.10 0.41 0.10 0.34 +clownesques clownesque ADJ p 0.10 0.41 0.00 0.07 +clowns clown NOM m p 0.06 9.19 0.00 2.70 +clé clé NOM f s 118.13 48.58 68.73 35.00 +club_house club_house NOM m s 0.05 0.07 0.05 0.07 +club club NOM m s 67.51 21.42 61.99 18.58 +clébard clébard NOM m s 1.65 4.19 1.27 2.91 +clébards clébard NOM m p 1.65 4.19 0.38 1.28 +clubhouse clubhouse NOM m s 0.05 0.00 0.05 0.00 +clubiste clubiste NOM s 0.03 0.00 0.03 0.00 +clubman clubman NOM m s 0.00 0.07 0.00 0.07 +clubs club NOM m p 67.51 21.42 5.52 2.84 +clématite clématite NOM f s 0.14 0.68 0.14 0.14 +clématites clématite NOM f p 0.14 0.68 0.00 0.54 +clémence clémence NOM f s 3.44 2.43 3.44 2.43 +clément clément ADJ m s 3.36 3.18 2.50 1.96 +clémente clément ADJ f s 3.36 3.18 0.47 0.88 +clémentes clément ADJ f p 3.36 3.18 0.07 0.14 +clémentine clémentine NOM f s 0.02 0.00 0.02 0.00 +cléments clément ADJ m p 3.36 3.18 0.33 0.20 +clunisien clunisien ADJ m s 0.00 0.07 0.00 0.07 +clérical clérical ADJ m s 0.04 1.01 0.01 0.54 +cléricale clérical ADJ f s 0.04 1.01 0.01 0.20 +cléricales clérical ADJ f p 0.04 1.01 0.01 0.14 +cléricalisme cléricalisme NOM m s 0.00 0.20 0.00 0.20 +cléricature cléricature NOM f s 0.00 0.07 0.00 0.07 +cléricaux clérical ADJ m p 0.04 1.01 0.00 0.14 +clés clé NOM f p 118.13 48.58 49.40 13.58 +cluse cluse NOM f s 0.00 0.14 0.00 0.07 +cluses cluse NOM f p 0.00 0.14 0.00 0.07 +cluster cluster NOM m s 0.03 0.00 0.03 0.00 +clystère clystère NOM m s 0.14 0.20 0.14 0.07 +clystères clystère NOM m p 0.14 0.20 0.00 0.14 +cm cm NOM m 10.89 1.01 10.89 1.01 +co_animateur co_animateur NOM m s 0.03 0.00 0.03 0.00 +co_auteur co_auteur NOM m s 0.46 0.00 0.46 0.00 +co_avocat co_avocat NOM m s 0.01 0.00 0.01 0.00 +co_capitaine co_capitaine NOM m s 0.09 0.00 0.09 0.00 +co_dépendance co_dépendance NOM f s 0.01 0.00 0.01 0.00 +co_dépendant co_dépendant ADJ f s 0.01 0.00 0.01 0.00 +co_existence co_existence NOM f s 0.00 0.07 0.00 0.07 +co_exister co_exister VER 0.05 0.00 0.05 0.00 inf; +co_habiter co_habiter VER 0.02 0.00 0.02 0.00 inf; +co_locataire co_locataire NOM s 0.22 0.00 0.22 0.00 +co_pilote co_pilote NOM s 0.49 0.00 0.49 0.00 +co_pilote co_pilote ADJ p 0.28 0.00 0.01 0.00 +co_production co_production NOM f s 0.11 0.00 0.01 0.00 +co_production co_production NOM f p 0.11 0.00 0.10 0.00 +co_proprio co_proprio NOM m s 0.01 0.07 0.01 0.00 +co_proprio co_proprio NOM m p 0.01 0.07 0.00 0.07 +co_propriétaire co_propriétaire NOM s 0.19 0.27 0.05 0.00 +co_propriétaire co_propriétaire NOM p 0.19 0.27 0.14 0.27 +co_propriété co_propriété NOM f s 0.00 0.34 0.00 0.34 +co_président co_président NOM m s 0.02 0.07 0.02 0.07 +co_responsable co_responsable ADJ s 0.01 0.07 0.01 0.07 +co_signer co_signer VER 0.07 0.00 0.07 0.00 inf; +cosigner cosigner VER 0.32 0.00 0.01 0.00 ind:pre:1p; +co_tuteur co_tuteur NOM m s 0.00 0.07 0.00 0.07 +co_éducatif co_éducatif ADJ f s 0.01 0.00 0.01 0.00 +co_équipier co_équipier NOM m s 0.21 0.00 0.21 0.00 +coéquipier coéquipier NOM f s 4.20 0.47 0.06 0.00 +co_vedette co_vedette NOM f s 0.02 0.00 0.02 0.00 +co_voiturage co_voiturage NOM m s 0.07 0.00 0.07 0.00 +co co ADV 0.14 0.00 0.14 0.00 +coïncida coïncider VER 1.93 7.09 0.11 0.54 ind:pas:3s; +coïncidaient coïncider VER 1.93 7.09 0.01 0.27 ind:imp:3p; +coïncidais coïncider VER 1.93 7.09 0.00 0.07 ind:imp:1s; +coïncidait coïncider VER 1.93 7.09 0.07 1.62 ind:imp:3s; +coïncidant coïncider VER 1.93 7.09 0.03 0.47 par:pre; +coïncidassent coïncider VER 1.93 7.09 0.00 0.07 sub:imp:3p; +coïncide coïncider VER 1.93 7.09 0.78 1.22 imp:pre:2s;ind:pre:3s; +coïncidence coïncidence NOM f s 18.04 7.16 15.95 5.61 +coïncidences coïncidence NOM f p 18.04 7.16 2.09 1.55 +coïncident coïncider VER 1.93 7.09 0.44 0.47 ind:pre:3p; +coïncider coïncider VER 1.93 7.09 0.32 1.35 inf; +coïnciderait coïncider VER 1.93 7.09 0.01 0.20 cnd:pre:3s; +coïncidions coïncider VER 1.93 7.09 0.00 0.07 ind:imp:1p; +coïncidât coïncider VER 1.93 7.09 0.00 0.07 sub:imp:3s; +coïncidèrent coïncider VER 1.93 7.09 0.00 0.20 ind:pas:3p; +coïncidé coïncider VER m s 1.93 7.09 0.15 0.47 par:pas; +coït coït NOM m s 0.83 3.38 0.81 2.84 +coïts coït NOM m p 0.83 3.38 0.03 0.54 +coïté coïter VER m s 0.00 0.07 0.00 0.07 par:pas; +coût coût NOM m s 5.04 1.35 3.58 1.22 +coûta coûter VER 83.14 48.11 0.05 1.22 ind:pas:3s; +coûtaient coûter VER 83.14 48.11 0.37 1.35 ind:imp:3p; +coûtais coûter VER 83.14 48.11 0.00 0.14 ind:imp:1s; +coûtait coûter VER 83.14 48.11 0.86 6.35 ind:imp:3s; +coûtant coûtant ADJ m s 0.11 0.07 0.11 0.07 +coûte coûter VER 83.14 48.11 38.84 20.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coûtent coûter VER 83.14 48.11 5.35 1.76 ind:pre:3p; +coûter coûter VER 83.14 48.11 12.58 5.27 inf; +coûtera coûter VER 83.14 48.11 7.11 1.82 ind:fut:3s; +coûterai coûter VER 83.14 48.11 0.02 0.07 ind:fut:1s; +coûteraient coûter VER 83.14 48.11 0.06 0.07 cnd:pre:3p; +coûterait coûter VER 83.14 48.11 2.29 2.30 cnd:pre:3s; +coûteras coûter VER 83.14 48.11 0.01 0.00 ind:fut:2s; +coûteront coûter VER 83.14 48.11 0.41 0.20 ind:fut:3p; +coûtes coûter VER 83.14 48.11 0.44 0.00 ind:pre:2s; +coûteuse coûteux ADJ f s 3.09 5.07 1.23 1.22 +coûteusement coûteusement ADV 0.00 0.07 0.00 0.07 +coûteuses coûteux ADJ f p 3.09 5.07 0.26 0.81 +coûteux coûteux ADJ m 3.09 5.07 1.60 3.04 +coûtez coûter VER 83.14 48.11 0.20 0.07 ind:pre:2p; +coûtions coûter VER 83.14 48.11 0.00 0.07 ind:imp:1p; +coûtât coûter VER 83.14 48.11 0.00 0.47 sub:imp:3s; +coûts coût NOM m p 5.04 1.35 1.46 0.14 +coûté coûter VER m s 83.14 48.11 14.35 6.15 par:pas; +coûtée coûter VER f s 83.14 48.11 0.01 0.07 par:pas; +coûtées coûter VER f p 83.14 48.11 0.01 0.07 par:pas; +coûtés coûter VER m p 83.14 48.11 0.12 0.07 par:pas; +coaccusé coaccusé NOM m s 0.04 0.00 0.04 0.00 +coaccusés coaccusé NOM m p 0.04 0.00 0.01 0.00 +coach coach NOM m s 7.37 0.00 7.33 0.00 +coache coacher VER 0.23 0.00 0.01 0.00 ind:pre:3s; +coacher coacher VER 0.23 0.00 0.10 0.00 inf; +coaches coache NOM m p 0.04 0.00 0.04 0.00 +coachs coach NOM m p 7.37 0.00 0.04 0.00 +coaché coacher VER m s 0.23 0.00 0.12 0.00 par:pas; +coactionnaires coactionnaire NOM p 0.01 0.00 0.01 0.00 +coadjuteur coadjuteur NOM m s 0.00 0.07 0.00 0.07 +coagula coaguler VER 0.51 2.64 0.01 0.07 ind:pas:3s; +coagulaient coaguler VER 0.51 2.64 0.00 0.07 ind:imp:3p; +coagulait coaguler VER 0.51 2.64 0.01 0.34 ind:imp:3s; +coagulant coagulant ADJ m s 0.03 0.07 0.03 0.00 +coagulantes coagulant ADJ f p 0.03 0.07 0.00 0.07 +coagulants coagulant NOM m p 0.15 0.07 0.14 0.00 +coagulation coagulation NOM f s 0.33 0.27 0.33 0.27 +coagule coaguler VER 0.51 2.64 0.15 0.14 ind:pre:3s; +coagulent coaguler VER 0.51 2.64 0.00 0.14 ind:pre:3p; +coaguler coaguler VER 0.51 2.64 0.19 0.27 inf; +coagulera coaguler VER 0.51 2.64 0.01 0.00 ind:fut:3s; +coagulât coaguler VER 0.51 2.64 0.00 0.07 sub:imp:3s; +coagulé coaguler VER m s 0.51 2.64 0.13 0.81 par:pas; +coagulée coaguler VER f s 0.51 2.64 0.00 0.27 par:pas; +coagulées coaguler VER f p 0.51 2.64 0.00 0.07 par:pas; +coagulés coaguler VER m p 0.51 2.64 0.01 0.20 par:pas; +coalisaient coaliser VER 0.00 0.47 0.00 0.14 ind:imp:3p; +coalisent coaliser VER 0.00 0.47 0.00 0.07 ind:pre:3p; +coaliser coaliser VER 0.00 0.47 0.00 0.07 inf; +coalisée coaliser VER f s 0.00 0.47 0.00 0.07 par:pas; +coalisés coalisé NOM m p 0.00 0.34 0.00 0.34 +coalition coalition NOM f s 1.34 3.45 1.29 3.11 +coalitions coalition NOM f p 1.34 3.45 0.05 0.34 +coaltar coaltar NOM m s 0.00 0.20 0.00 0.20 +coassaient coasser VER 0.13 0.61 0.00 0.20 ind:imp:3p; +coassant coasser VER 0.13 0.61 0.01 0.14 par:pre; +coasse coasser VER 0.13 0.61 0.10 0.00 ind:pre:3s; +coassement coassement NOM m s 0.14 0.41 0.01 0.34 +coassements coassement NOM m p 0.14 0.41 0.14 0.07 +coassent coasser VER 0.13 0.61 0.00 0.14 ind:pre:3p; +coasser coasser VER 0.13 0.61 0.02 0.14 inf; +coati coati NOM m s 0.01 0.00 0.01 0.00 +coauteur coauteur NOM m s 0.12 0.07 0.08 0.00 +coauteurs coauteur NOM m p 0.12 0.07 0.04 0.07 +coaxial coaxial ADJ m s 0.14 0.00 0.13 0.00 +coaxiales coaxial ADJ f p 0.14 0.00 0.01 0.00 +cob cob NOM m s 0.04 0.00 0.04 0.00 +cobalt cobalt NOM m s 0.55 0.61 0.55 0.61 +cobaye cobaye NOM m s 4.27 0.95 3.02 0.74 +cobayes cobaye NOM m p 4.27 0.95 1.25 0.20 +cobelligérants cobelligérant NOM m p 0.00 0.07 0.00 0.07 +câbla câbler VER 0.47 0.61 0.00 0.14 ind:pas:3s; +câblage câblage NOM m s 0.44 0.00 0.42 0.00 +câblages câblage NOM m p 0.44 0.00 0.02 0.00 +câblait câbler VER 0.47 0.61 0.00 0.07 ind:imp:3s; +câble câble NOM m s 17.04 6.08 13.36 2.97 +câbler câbler VER 0.47 0.61 0.12 0.00 inf; +câblerais câbler VER 0.47 0.61 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +câblerie câblerie NOM f s 0.02 0.00 0.02 0.00 +câbleront câbler VER 0.47 0.61 0.00 0.07 ind:fut:3p; +câbles câble NOM m p 17.04 6.08 3.67 3.11 +câbleur câbleur NOM m s 0.19 0.07 0.16 0.00 +câbleurs câbleur NOM m p 0.19 0.07 0.02 0.07 +câblez câbler VER 0.47 0.61 0.02 0.07 imp:pre:2p; +câblier câblier NOM m s 0.01 0.00 0.01 0.00 +câblogramme câblogramme NOM m s 0.02 0.00 0.02 0.00 +câblé câbler VER m s 0.47 0.61 0.18 0.20 par:pas; +câblée câblé ADJ f s 0.25 0.07 0.07 0.00 +câblées câblé ADJ f p 0.25 0.07 0.08 0.00 +câblés câbler VER m p 0.47 0.61 0.04 0.00 par:pas; +cobol cobol NOM m s 0.01 0.00 0.01 0.00 +cobra cobra NOM m s 4.24 0.81 3.96 0.74 +cobras cobra NOM m p 4.24 0.81 0.28 0.07 +coca_cola coca_cola NOM m 0.41 1.01 0.41 1.01 +coca coca NOM s 14.53 2.64 14.08 2.64 +cocaïne cocaïne NOM f s 5.57 1.22 5.57 1.22 +cocaïnomane cocaïnomane NOM s 0.08 0.07 0.08 0.07 +cocagne cocagne NOM f s 0.56 0.81 0.56 0.74 +cocagnes cocagne NOM f p 0.56 0.81 0.00 0.07 +cocard cocard NOM m s 0.19 0.34 0.16 0.14 +cocardasse cocarder VER 0.00 0.20 0.00 0.07 sub:imp:1s; +cocarde cocarde NOM f s 0.25 1.49 0.22 1.22 +cocarder cocarder VER 0.00 0.20 0.00 0.07 inf; +cocardes cocarde NOM f p 0.25 1.49 0.03 0.27 +cocardier cocardier ADJ m s 0.02 0.41 0.01 0.14 +cocardiers cocardier ADJ m p 0.02 0.41 0.00 0.14 +cocardière cocardier ADJ f s 0.02 0.41 0.01 0.00 +cocardières cocardier ADJ f p 0.02 0.41 0.00 0.14 +cocards cocard NOM m p 0.19 0.34 0.03 0.20 +cocardés cocarder VER m p 0.00 0.20 0.00 0.07 par:pas; +cocas coca NOM p 14.53 2.64 0.45 0.00 +cocasse cocasse ADJ s 0.21 2.84 0.20 2.03 +cocassement cocassement ADV 0.00 0.20 0.00 0.20 +cocasserie cocasserie NOM f s 0.01 0.47 0.01 0.47 +cocasses cocasse ADJ p 0.21 2.84 0.01 0.81 +coccinelle coccinelle NOM f s 1.33 1.82 1.15 1.35 +coccinelles coccinelle NOM f p 1.33 1.82 0.18 0.47 +coccyx coccyx NOM m 0.69 0.27 0.69 0.27 +cocha cocher VER 2.15 3.24 0.00 0.07 ind:pas:3s; +cochait cocher VER 2.15 3.24 0.01 0.27 ind:imp:3s; +cochant cocher VER 2.15 3.24 0.00 0.20 par:pre; +coche coche NOM s 1.23 1.89 1.23 1.69 +cochelet cochelet NOM m s 0.00 0.07 0.00 0.07 +cochenille cochenille NOM f s 0.09 0.00 0.07 0.00 +cochenilles cochenille NOM f p 0.09 0.00 0.01 0.00 +cocher cocher NOM m s 2.50 5.27 2.10 4.12 +cocheras cocher VER 2.15 3.24 0.01 0.00 ind:fut:2s; +cochers cocher NOM m p 2.50 5.27 0.41 1.15 +coches cocher VER 2.15 3.24 0.04 0.00 ind:pre:2s; +cochez cocher VER 2.15 3.24 0.12 0.00 imp:pre:2p;ind:pre:2p; +cochléaire cochléaire ADJ m s 0.17 0.00 0.04 0.00 +cochléaires cochléaire ADJ m p 0.17 0.00 0.14 0.00 +cochlée cochlée NOM f s 0.01 0.00 0.01 0.00 +cochon cochon NOM m s 31.09 21.42 21.67 12.70 +cochonceté cochonceté NOM f s 0.24 0.20 0.01 0.00 +cochoncetés cochonceté NOM f p 0.24 0.20 0.23 0.20 +cochonnaille cochonnaille NOM f s 0.00 0.47 0.00 0.14 +cochonnailles cochonnaille NOM f p 0.00 0.47 0.00 0.34 +cochonne cochon NOM f s 31.09 21.42 0.92 0.68 +cochonner cochonner VER 0.07 0.41 0.02 0.00 inf; +cochonnerie cochonnerie NOM f s 5.25 4.05 1.22 1.01 +cochonneries cochonnerie NOM f p 5.25 4.05 4.03 3.04 +cochonnes cochon ADJ f p 7.76 5.88 0.87 0.47 +cochonnet cochonnet NOM m s 0.76 0.61 0.53 0.34 +cochonnets cochonnet NOM m p 0.76 0.61 0.22 0.27 +cochonnez cochonner VER 0.07 0.41 0.00 0.07 ind:pre:2p; +cochonné cochonner VER m s 0.07 0.41 0.01 0.20 par:pas; +cochonnée cochonnée NOM f s 0.01 0.00 0.01 0.00 +cochonnées cochonner VER f p 0.07 0.41 0.00 0.07 par:pas; +cochons cochon NOM m p 31.09 21.42 8.50 7.91 +cochât cocher VER 2.15 3.24 0.00 0.07 sub:imp:3s; +cochère cocher ADJ f s 0.45 6.28 0.45 5.14 +cochères cocher ADJ f p 0.45 6.28 0.00 1.15 +coché cocher VER m s 2.15 3.24 0.41 0.41 par:pas; +cochée cocher VER f s 2.15 3.24 0.01 0.00 par:pas; +cochées cocher VER f p 2.15 3.24 0.05 0.07 par:pas; +cochés cocher VER m p 2.15 3.24 0.01 0.00 par:pas; +cochylis cochylis NOM m 0.00 0.07 0.00 0.07 +cocker cocker NOM m s 0.47 1.08 0.47 1.08 +cockney cockney NOM m s 0.24 0.14 0.13 0.14 +cockneys cockney NOM m p 0.24 0.14 0.11 0.00 +cockpit cockpit NOM m s 1.93 0.88 1.93 0.88 +cocktail cocktail NOM m s 10.27 9.59 6.62 5.68 +cocktails cocktail NOM m p 10.27 9.59 3.65 3.92 +coco coco NOM s 8.58 7.77 6.74 6.08 +cocolait cocoler VER 0.00 0.14 0.00 0.07 ind:imp:3s; +cocole cocoler VER 0.00 0.14 0.00 0.07 ind:pre:3s; +cocon cocon NOM m s 1.65 3.24 1.07 2.91 +cocons cocon NOM m p 1.65 3.24 0.58 0.34 +cocoon cocoon NOM m s 0.09 0.00 0.09 0.00 +cocorico cocorico NOM m s 1.27 1.01 1.27 0.81 +cocoricos cocorico NOM m p 1.27 1.01 0.01 0.20 +cocos coco NOM p 8.58 7.77 1.84 1.69 +cocotent cocoter VER 0.00 0.20 0.00 0.07 ind:pre:3p; +cocoter cocoter VER 0.00 0.20 0.00 0.07 inf; +cocoteraies cocoteraie NOM f p 0.00 0.07 0.00 0.07 +cocoterait cocoter VER 0.00 0.20 0.00 0.07 cnd:pre:3s; +cocotier cocotier NOM m s 0.73 2.43 0.39 0.54 +cocotiers cocotier NOM m p 0.73 2.43 0.35 1.89 +cocotte_minute cocotte_minute NOM f s 0.07 0.34 0.07 0.34 +cocotte cocotte NOM f s 3.47 6.15 3.35 4.73 +cocottes cocotte NOM f p 3.47 6.15 0.12 1.42 +coction coction NOM f s 0.00 0.07 0.00 0.07 +cocu cocu NOM m s 3.78 2.03 3.17 1.49 +cocuage cocuage NOM m s 0.00 0.14 0.00 0.07 +cocuages cocuage NOM m p 0.00 0.14 0.00 0.07 +cocue cocu ADJ f s 3.03 3.78 0.45 0.27 +cocues cocu ADJ f p 3.03 3.78 0.00 0.14 +cocufiant cocufier VER 0.14 0.41 0.01 0.00 par:pre; +cocufie cocufier VER 0.14 0.41 0.03 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cocufier cocufier VER 0.14 0.41 0.04 0.07 inf; +cocufiera cocufier VER 0.14 0.41 0.01 0.00 ind:fut:3s; +cocufié cocufier VER m s 0.14 0.41 0.05 0.14 par:pas; +cocus cocu NOM m p 3.78 2.03 0.50 0.54 +coda coda NOM f s 0.14 0.14 0.14 0.14 +codage codage NOM m s 0.30 0.27 0.30 0.14 +codages codage NOM m p 0.30 0.27 0.00 0.14 +codait coder VER 2.19 0.88 0.00 0.07 ind:imp:3s; +codante codant ADJ f s 0.01 0.00 0.01 0.00 +code_barre code_barre NOM m s 0.07 0.00 0.07 0.00 +code_barres code_barres NOM m 0.18 0.00 0.18 0.00 +code_clé code_clé NOM m s 0.01 0.00 0.01 0.00 +code code NOM m s 51.27 15.00 43.85 13.58 +coder coder VER 2.19 0.88 0.16 0.07 inf; +codes_clé codes_clé NOM m p 0.01 0.00 0.01 0.00 +codes code NOM m p 51.27 15.00 7.42 1.42 +codeur codeur NOM m s 0.04 0.00 0.04 0.00 +codex codex NOM m 0.62 0.14 0.62 0.14 +codicille codicille NOM m s 0.05 0.27 0.05 0.14 +codicilles codicille NOM m p 0.05 0.27 0.00 0.14 +codifia codifier VER 0.07 0.88 0.00 0.07 ind:pas:3s; +codifiait codifier VER 0.07 0.88 0.01 0.00 ind:imp:3s; +codifiant codifier VER 0.07 0.88 0.00 0.07 par:pre; +codification codification NOM f s 0.15 0.07 0.15 0.07 +codifier codifier VER 0.07 0.88 0.01 0.07 inf; +codifièrent codifier VER 0.07 0.88 0.00 0.07 ind:pas:3p; +codifié codifier VER m s 0.07 0.88 0.01 0.27 par:pas; +codifiée codifier VER f s 0.07 0.88 0.03 0.27 par:pas; +codifiées codifier VER f p 0.07 0.88 0.01 0.07 par:pas; +codon codon NOM m s 0.01 0.00 0.01 0.00 +codé codé ADJ m s 2.26 0.74 1.22 0.34 +codée codé ADJ f s 2.26 0.74 0.56 0.14 +codées coder VER f p 2.19 0.88 0.35 0.00 par:pas; +codéine codéine NOM f s 0.21 0.07 0.21 0.07 +codés codé ADJ m p 2.26 0.74 0.34 0.20 +codétenu codétenu NOM m s 0.17 0.20 0.13 0.07 +codétenus codétenu NOM m p 0.17 0.20 0.05 0.14 +coefficient coefficient NOM m s 0.99 1.22 0.81 1.08 +coefficients coefficient NOM m p 0.99 1.22 0.18 0.14 +coelacanthe coelacanthe NOM m s 0.06 0.07 0.06 0.07 +coeliaque coeliaque ADJ m s 0.01 0.00 0.01 0.00 +coentreprise coentreprise NOM f s 0.03 0.00 0.03 0.00 +coenzyme coenzyme NOM f s 0.03 0.00 0.03 0.00 +coercitif coercitif ADJ m s 0.01 0.20 0.00 0.07 +coercition coercition NOM f s 0.48 0.14 0.48 0.14 +coercitive coercitif ADJ f s 0.01 0.20 0.01 0.14 +coeur_poumon coeur_poumon NOM m p 0.03 0.07 0.03 0.07 +coeur coeur NOM m s 239.97 400.74 224.98 380.07 +coeurs coeur NOM m p 239.97 400.74 15.00 20.68 +coexistaient coexister VER 0.42 1.28 0.00 0.14 ind:imp:3p; +coexistait coexister VER 0.42 1.28 0.00 0.07 ind:imp:3s; +coexistant coexister VER 0.42 1.28 0.00 0.20 par:pre; +coexistants coexistant ADJ m p 0.01 0.14 0.01 0.14 +coexiste coexister VER 0.42 1.28 0.04 0.07 ind:pre:3s; +coexistence coexistence NOM f s 0.49 0.41 0.49 0.41 +coexistent coexister VER 0.42 1.28 0.02 0.34 ind:pre:3p; +coexister coexister VER 0.42 1.28 0.29 0.41 inf; +coexisteront coexister VER 0.42 1.28 0.00 0.07 ind:fut:3p; +coexistez coexister VER 0.42 1.28 0.03 0.00 ind:pre:2p; +coexistons coexister VER 0.42 1.28 0.03 0.00 ind:pre:1p; +coexisté coexister VER m s 0.42 1.28 0.02 0.00 par:pas; +coffee_shop coffee_shop NOM m s 0.10 0.00 0.10 0.00 +coffin coffin NOM m s 0.33 0.00 0.33 0.00 +coffio coffio NOM m s 0.01 0.74 0.01 0.61 +coffios coffio NOM m p 0.01 0.74 0.00 0.14 +coffiot coffiot NOM m s 0.00 0.34 0.00 0.14 +coffiots coffiot NOM m p 0.00 0.34 0.00 0.20 +coffrage coffrage NOM m s 0.01 0.88 0.01 0.81 +coffrages coffrage NOM m p 0.01 0.88 0.00 0.07 +coffraient coffrer VER 7.75 0.68 0.01 0.00 ind:imp:3p; +coffrait coffrer VER 7.75 0.68 0.12 0.00 ind:imp:3s; +coffre_fort coffre_fort NOM m s 4.62 3.92 4.17 3.24 +coffre coffre NOM m s 39.35 29.32 35.97 25.14 +coffrent coffrer VER 7.75 0.68 0.23 0.00 ind:pre:3p; +coffrer coffrer VER 7.75 0.68 3.33 0.34 inf; +coffrera coffrer VER 7.75 0.68 0.05 0.00 ind:fut:3s; +coffrerai coffrer VER 7.75 0.68 0.03 0.00 ind:fut:1s; +coffrerais coffrer VER 7.75 0.68 0.01 0.00 cnd:pre:1s; +coffrerons coffrer VER 7.75 0.68 0.01 0.00 ind:fut:1p; +coffreront coffrer VER 7.75 0.68 0.29 0.00 ind:fut:3p; +coffre_fort coffre_fort NOM m p 4.62 3.92 0.45 0.68 +coffres coffre NOM m p 39.35 29.32 3.38 4.19 +coffret coffret NOM m s 1.98 6.42 1.77 5.81 +coffrets coffret NOM m p 1.98 6.42 0.22 0.61 +coffrez coffrer VER 7.75 0.68 0.35 0.00 imp:pre:2p;ind:pre:2p; +coffrons coffrer VER 7.75 0.68 0.09 0.00 imp:pre:1p; +coffré coffrer VER m s 7.75 0.68 1.39 0.00 par:pas; +coffrée coffrer VER f s 7.75 0.68 0.07 0.07 par:pas; +coffrées coffrer VER f p 7.75 0.68 0.02 0.00 par:pas; +coffrés coffrer VER m p 7.75 0.68 0.38 0.14 par:pas; +cofinancement cofinancement NOM m s 0.01 0.00 0.01 0.00 +cofondateur cofondateur NOM m s 0.29 0.07 0.25 0.00 +cofondateurs cofondateur NOM m p 0.29 0.07 0.02 0.07 +cofondatrice cofondateur NOM f s 0.29 0.07 0.01 0.00 +cofondé cofondé ADJ m s 0.01 0.00 0.01 0.00 +cogitais cogiter VER 0.70 0.54 0.01 0.00 ind:imp:1s; +cogitait cogiter VER 0.70 0.54 0.02 0.07 ind:imp:3s; +cogitant cogiter VER 0.70 0.54 0.00 0.07 par:pre; +cogitation cogitation NOM f s 0.21 0.61 0.02 0.07 +cogitations cogitation NOM f p 0.21 0.61 0.19 0.54 +cogite cogiter VER 0.70 0.54 0.12 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cogitent cogiter VER 0.70 0.54 0.00 0.07 ind:pre:3p; +cogiter cogiter VER 0.70 0.54 0.43 0.07 inf; +cogito cogito NOM m s 0.01 0.34 0.01 0.34 +cogité cogiter VER m s 0.70 0.54 0.12 0.14 par:pas; +cogna cogner VER 27.01 34.26 0.13 2.09 ind:pas:3s; +cognac cognac NOM m s 12.07 11.01 11.69 10.68 +cognacs cognac NOM m p 12.07 11.01 0.39 0.34 +cognai cogner VER 27.01 34.26 0.01 0.20 ind:pas:1s; +cognaient cogner VER 27.01 34.26 0.08 0.88 ind:imp:3p; +cognais cogner VER 27.01 34.26 0.18 0.47 ind:imp:1s; +cognait cogner VER 27.01 34.26 0.79 4.59 ind:imp:3s; +cognant cogner VER 27.01 34.26 0.44 3.24 par:pre; +cognassier cognassier NOM m s 0.50 0.27 0.10 0.20 +cognassiers cognassier NOM m p 0.50 0.27 0.40 0.07 +cogne cogner VER 27.01 34.26 7.36 8.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +cognement cognement NOM m s 0.03 0.20 0.00 0.14 +cognements cognement NOM m p 0.03 0.20 0.03 0.07 +cognent cogner VER 27.01 34.26 0.48 1.22 ind:pre:3p; +cogner cogner VER 27.01 34.26 7.73 8.65 inf; +cognera cogner VER 27.01 34.26 0.05 0.00 ind:fut:3s; +cognerai cogner VER 27.01 34.26 0.07 0.00 ind:fut:1s; +cogneraient cogner VER 27.01 34.26 0.01 0.00 cnd:pre:3p; +cognerais cogner VER 27.01 34.26 0.05 0.00 cnd:pre:1s; +cognerait cogner VER 27.01 34.26 0.01 0.34 cnd:pre:3s; +cognerez cogner VER 27.01 34.26 0.04 0.00 ind:fut:2p; +cogneront cogner VER 27.01 34.26 0.04 0.07 ind:fut:3p; +cognes cogner VER 27.01 34.26 0.85 0.41 ind:pre:2s; +cogneur cogneur NOM m s 0.48 0.47 0.24 0.34 +cogneurs cogneur NOM m p 0.48 0.47 0.23 0.07 +cogneuse cogneur NOM f s 0.48 0.47 0.01 0.07 +cognez cogner VER 27.01 34.26 0.42 0.00 imp:pre:2p;ind:pre:2p; +cognitif cognitif ADJ m s 0.42 0.07 0.09 0.00 +cognitifs cognitif ADJ m p 0.42 0.07 0.02 0.07 +cognition cognition NOM f s 0.01 0.00 0.01 0.00 +cognitive cognitif ADJ f s 0.42 0.07 0.17 0.00 +cognitives cognitif ADJ f p 0.42 0.07 0.14 0.00 +cognons cogner VER 27.01 34.26 0.13 0.07 imp:pre:1p;ind:pre:1p; +cognèrent cogner VER 27.01 34.26 0.00 0.20 ind:pas:3p; +cogné cogner VER m s 27.01 34.26 6.94 2.84 par:pas; +cognée cogner VER f s 27.01 34.26 1.18 0.34 par:pas; +cognées cognée NOM f p 0.25 1.55 0.00 0.41 +cognés cogner VER m p 27.01 34.26 0.01 0.27 par:pas; +cogérant cogérant NOM m s 0.01 0.00 0.01 0.00 +cohabita cohabiter VER 1.31 1.08 0.00 0.07 ind:pas:3s; +cohabitaient cohabiter VER 1.31 1.08 0.11 0.41 ind:imp:3p; +cohabitait cohabiter VER 1.31 1.08 0.00 0.14 ind:imp:3s; +cohabitant cohabitant ADJ m s 0.01 0.00 0.01 0.00 +cohabitation cohabitation NOM f s 0.20 1.15 0.19 1.15 +cohabitations cohabitation NOM f p 0.20 1.15 0.01 0.00 +cohabite cohabiter VER 1.31 1.08 0.26 0.20 ind:pre:3s; +cohabitent cohabiter VER 1.31 1.08 0.15 0.14 ind:pre:3p; +cohabiter cohabiter VER 1.31 1.08 0.71 0.14 inf; +cohabiteraient cohabiter VER 1.31 1.08 0.02 0.00 cnd:pre:3p; +cohabitiez cohabiter VER 1.31 1.08 0.02 0.00 ind:imp:2p; +cohabité cohabiter VER m s 1.31 1.08 0.04 0.00 par:pas; +cohorte cohorte NOM f s 0.78 4.53 0.49 3.31 +cohortes cohorte NOM f p 0.78 4.53 0.29 1.22 +cohue cohue NOM f s 0.89 7.70 0.88 7.23 +cohues cohue NOM f p 0.89 7.70 0.01 0.47 +cohérence cohérence NOM f s 0.46 3.51 0.46 3.45 +cohérences cohérence NOM f p 0.46 3.51 0.00 0.07 +cohérent cohérent ADJ m s 1.92 4.66 1.23 2.43 +cohérente cohérent ADJ f s 1.92 4.66 0.52 1.35 +cohérentes cohérent ADJ f p 1.92 4.66 0.07 0.41 +cohérents cohérent ADJ m p 1.92 4.66 0.09 0.47 +cohéritier cohéritier NOM m s 0.14 0.07 0.14 0.00 +cohéritiers cohéritier NOM m p 0.14 0.07 0.00 0.07 +cohésion cohésion NOM f s 0.47 4.59 0.47 4.59 +cohésive cohésif ADJ f s 0.02 0.00 0.02 0.00 +coi coi ADJ s 0.50 3.58 0.42 2.16 +coiffa coiffer VER 8.38 42.43 0.01 1.42 ind:pas:3s; +coiffai coiffer VER 8.38 42.43 0.14 0.34 ind:pas:1s; +coiffaient coiffer VER 8.38 42.43 0.00 0.47 ind:imp:3p; +coiffais coiffer VER 8.38 42.43 0.11 0.20 ind:imp:1s;ind:imp:2s; +coiffait coiffer VER 8.38 42.43 0.31 2.50 ind:imp:3s; +coiffant coiffer VER 8.38 42.43 0.04 1.28 par:pre; +coiffante coiffant ADJ f s 0.03 0.20 0.01 0.07 +coiffe coiffer VER 8.38 42.43 1.81 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coiffent coiffer VER 8.38 42.43 0.30 0.34 ind:pre:3p; +coiffer coiffer VER 8.38 42.43 2.67 3.99 inf; +coiffera coiffer VER 8.38 42.43 0.04 0.00 ind:fut:3s; +coifferais coiffer VER 8.38 42.43 0.14 0.07 cnd:pre:2s; +coifferait coiffer VER 8.38 42.43 0.01 0.14 cnd:pre:3s; +coifferas coiffer VER 8.38 42.43 0.00 0.07 ind:fut:2s; +coifferont coiffer VER 8.38 42.43 0.01 0.00 ind:fut:3p; +coiffes coiffer VER 8.38 42.43 0.61 0.00 ind:pre:2s; +coiffeur coiffeur NOM m s 14.05 21.82 11.01 13.38 +coiffeurs coiffeur NOM m p 14.05 21.82 0.78 2.70 +coiffeuse coiffeur NOM f s 14.05 21.82 2.27 5.34 +coiffeuses coiffeuse NOM f p 0.21 0.00 0.21 0.00 +coiffez coiffer VER 8.38 42.43 0.33 0.14 imp:pre:2p;ind:pre:2p; +coiffiez coiffer VER 8.38 42.43 0.13 0.07 ind:imp:2p; +coiffât coiffer VER 8.38 42.43 0.00 0.07 sub:imp:3s; +coiffèrent coiffer VER 8.38 42.43 0.00 0.07 ind:pas:3p; +coiffé coiffer VER m s 8.38 42.43 0.63 11.62 par:pas; +coiffée coiffer VER f s 8.38 42.43 0.80 8.65 par:pas; +coiffées coiffer VER f p 8.38 42.43 0.04 2.03 par:pas; +coiffure coiffure NOM f s 10.46 15.81 10.09 14.05 +coiffures coiffure NOM f p 10.46 15.81 0.37 1.76 +coiffés coiffer VER m p 8.38 42.43 0.27 5.81 par:pas; +coin_coin coin_coin NOM m s 0.19 0.34 0.19 0.34 +coin_repas coin_repas NOM m s 0.02 0.00 0.02 0.00 +coin coin NOM m s 99.51 199.26 93.43 167.09 +coince coincer VER 56.95 30.61 4.26 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +coincent coincer VER 56.95 30.61 0.47 0.34 ind:pre:3p; +coincer coincer VER 56.95 30.61 9.78 4.73 inf; +coincera coincer VER 56.95 30.61 0.98 0.00 ind:fut:3s; +coincerai coincer VER 56.95 30.61 0.69 0.07 ind:fut:1s; +coincerais coincer VER 56.95 30.61 0.04 0.00 cnd:pre:1s; +coincerait coincer VER 56.95 30.61 0.02 0.14 cnd:pre:3s; +coinceriez coincer VER 56.95 30.61 0.01 0.00 cnd:pre:2p; +coincerons coincer VER 56.95 30.61 0.05 0.00 ind:fut:1p; +coinceront coincer VER 56.95 30.61 0.09 0.00 ind:fut:3p; +coinces coincer VER 56.95 30.61 0.13 0.07 ind:pre:2s; +coinceur coinceur NOM m s 0.00 0.07 0.00 0.07 +coincez coincer VER 56.95 30.61 0.43 0.07 imp:pre:2p;ind:pre:2p; +coincher coincher VER 0.00 0.07 0.00 0.07 inf; +coinciez coincer VER 56.95 30.61 0.01 0.00 ind:imp:2p; +coincèrent coincer VER 56.95 30.61 0.00 0.07 ind:pas:3p; +coincé coincer VER m s 56.95 30.61 23.27 10.27 par:pas; +coincée coincer VER f s 56.95 30.61 8.18 5.54 ind:imp:3p;par:pas; +coincées coincer VER f p 56.95 30.61 1.02 0.81 par:pas; +coincés coincer VER m p 56.95 30.61 7.14 2.64 par:pas; +coing coing NOM m s 2.13 0.68 0.67 0.41 +coings coing NOM m p 2.13 0.68 1.46 0.27 +coins coin NOM m p 99.51 199.26 6.08 32.16 +coinstot coinstot NOM m s 0.00 0.74 0.00 0.68 +coinstots coinstot NOM m p 0.00 0.74 0.00 0.07 +coinça coincer VER 56.95 30.61 0.01 0.68 ind:pas:3s; +coinçage coinçage NOM m s 0.00 0.27 0.00 0.20 +coinçages coinçage NOM m p 0.00 0.27 0.00 0.07 +coinçaient coincer VER 56.95 30.61 0.00 0.41 ind:imp:3p; +coinçais coincer VER 56.95 30.61 0.15 0.07 ind:imp:1s; +coinçait coincer VER 56.95 30.61 0.10 1.22 ind:imp:3s; +coinçant coincer VER 56.95 30.61 0.05 0.47 par:pre; +coinçons coincer VER 56.95 30.61 0.05 0.00 imp:pre:1p; +coir coir NOM m s 0.01 0.00 0.01 0.00 +cois coi ADJ p 0.50 3.58 0.08 0.61 +coite coi ADJ f s 0.50 3.58 0.00 0.68 +coites coi ADJ f p 0.50 3.58 0.00 0.14 +coke coke NOM s 8.54 5.47 8.49 5.47 +cokes coke NOM f p 8.54 5.47 0.05 0.00 +col_de_cygne col_de_cygne NOM m s 0.01 0.00 0.01 0.00 +col_vert col_vert NOM m s 0.12 0.14 0.12 0.07 +col col NOM m s 9.76 57.43 8.35 51.82 +cola cola NOM m s 0.45 0.74 0.43 0.34 +colas cola NOM m p 0.45 0.74 0.01 0.41 +colback colback NOM m s 0.00 0.47 0.00 0.41 +colbacks colback NOM m p 0.00 0.47 0.00 0.07 +colchicine colchicine NOM f s 0.13 0.00 0.13 0.00 +colchique colchique NOM m s 0.00 0.34 0.00 0.07 +colchiques colchique NOM m p 0.00 0.34 0.00 0.27 +colcotar colcotar NOM m s 0.00 0.07 0.00 0.07 +cold_cream cold_cream NOM m s 0.03 0.07 0.03 0.07 +cold cold ADJ m s 2.01 0.07 2.01 0.07 +cole cole NOM m s 0.14 0.00 0.14 0.00 +colectomie colectomie NOM f s 0.01 0.00 0.01 0.00 +colibacilles colibacille NOM m p 0.01 0.07 0.01 0.07 +colibri colibri NOM m s 0.33 0.61 0.21 0.34 +colibris colibri NOM m p 0.33 0.61 0.12 0.27 +colifichet colifichet NOM m s 0.32 1.08 0.22 0.07 +colifichets colifichet NOM m p 0.32 1.08 0.09 1.01 +colimaçon colimaçon NOM m s 0.04 1.76 0.04 1.62 +colimaçons colimaçon NOM m p 0.04 1.76 0.00 0.14 +colin_maillard colin_maillard NOM m s 0.93 0.95 0.93 0.95 +câlin câlin NOM m s 6.38 1.96 4.11 0.61 +colin colin NOM m s 0.27 0.54 0.27 0.54 +câlina câliner VER 0.81 1.22 0.14 0.07 ind:pas:3s; +câlinait câliner VER 0.81 1.22 0.00 0.20 ind:imp:3s; +câlinant câliner VER 0.81 1.22 0.01 0.07 par:pre; +câline câlin ADJ f s 1.31 2.84 0.58 1.15 +câlinement câlinement ADV 0.00 0.14 0.00 0.14 +câlinent câliner VER 0.81 1.22 0.01 0.14 ind:pre:3p; +câliner câliner VER 0.81 1.22 0.45 0.41 inf; +câlinerai câliner VER 0.81 1.22 0.01 0.00 ind:fut:1s; +câlinerie câlinerie NOM f s 0.10 0.61 0.10 0.14 +câlineries câlinerie NOM f p 0.10 0.61 0.00 0.47 +câlines câlin ADJ f p 1.31 2.84 0.01 0.20 +câlins câlin NOM m p 6.38 1.96 2.22 0.61 +câliné câliner VER m s 0.81 1.22 0.04 0.14 par:pas; +câlinée câliner VER f s 0.81 1.22 0.00 0.07 par:pas; +colique colique NOM f s 1.40 2.03 1.02 0.95 +coliques colique NOM f p 1.40 2.03 0.37 1.08 +colis_cadeau colis_cadeau NOM m 0.02 0.00 0.02 0.00 +colis_repas colis_repas NOM m 0.00 0.07 0.00 0.07 +colis colis NOM m 7.50 10.54 7.50 10.54 +colistier colistier NOM m s 0.02 0.00 0.02 0.00 +colite colite NOM f s 0.27 0.41 0.25 0.34 +colites colite NOM f p 0.27 0.41 0.02 0.07 +colla coller VER 51.34 107.16 0.26 4.66 ind:pas:3s; +collabo collabo NOM s 0.62 2.43 0.33 0.88 +collabora collaborer VER 7.53 5.41 0.00 0.07 ind:pas:3s; +collaborai collaborer VER 7.53 5.41 0.01 0.07 ind:pas:1s; +collaboraient collaborer VER 7.53 5.41 0.03 0.07 ind:imp:3p; +collaborais collaborer VER 7.53 5.41 0.03 0.14 ind:imp:1s;ind:imp:2s; +collaborait collaborer VER 7.53 5.41 0.45 0.27 ind:imp:3s; +collaborant collaborer VER 7.53 5.41 0.18 0.20 par:pre; +collaborateur collaborateur NOM m s 4.54 11.49 1.27 3.78 +collaborateurs collaborateur NOM m p 4.54 11.49 2.38 6.96 +collaboration collaboration NOM f s 5.12 12.50 5.11 12.43 +collaborationniste collaborationniste ADJ m s 0.00 0.20 0.00 0.14 +collaborationnistes collaborationniste ADJ m p 0.00 0.20 0.00 0.07 +collaborations collaboration NOM f p 5.12 12.50 0.01 0.07 +collaboratrice collaborateur NOM f s 4.54 11.49 0.89 0.47 +collaboratrices collaboratrice NOM f p 0.01 0.00 0.01 0.00 +collabore collaborer VER 7.53 5.41 1.09 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +collaborent collaborer VER 7.53 5.41 0.43 0.41 ind:pre:3p; +collaborer collaborer VER 7.53 5.41 2.71 2.16 inf; +collaborera collaborer VER 7.53 5.41 0.05 0.07 ind:fut:3s; +collaborerai collaborer VER 7.53 5.41 0.07 0.00 ind:fut:1s; +collaboreraient collaborer VER 7.53 5.41 0.01 0.07 cnd:pre:3p; +collaborerez collaborer VER 7.53 5.41 0.02 0.07 ind:fut:2p; +collaborerons collaborer VER 7.53 5.41 0.16 0.00 ind:fut:1p; +collabores collaborer VER 7.53 5.41 0.11 0.00 ind:pre:2s; +collaborez collaborer VER 7.53 5.41 0.40 0.00 imp:pre:2p;ind:pre:2p; +collaborions collaborer VER 7.53 5.41 0.00 0.07 ind:imp:1p; +collaborons collaborer VER 7.53 5.41 0.26 0.00 imp:pre:1p;ind:pre:1p; +collaboré collaborer VER m s 7.53 5.41 1.54 1.01 par:pas; +collabos collabo NOM p 0.62 2.43 0.29 1.55 +collage collage NOM m s 1.31 0.81 1.22 0.74 +collages collage NOM m p 1.31 0.81 0.10 0.07 +collagène collagène NOM m s 1.23 0.14 1.23 0.14 +collai coller VER 51.34 107.16 0.00 0.81 ind:pas:1s; +collaient coller VER 51.34 107.16 0.11 3.78 ind:imp:3p; +collais coller VER 51.34 107.16 0.24 0.34 ind:imp:1s;ind:imp:2s; +collait coller VER 51.34 107.16 2.03 13.18 ind:imp:3s; +collant collant ADJ m s 3.37 4.93 1.75 1.96 +collante collant ADJ f s 3.37 4.93 0.83 1.42 +collantes collant ADJ f p 3.37 4.93 0.08 0.27 +collants collant NOM m p 4.28 4.46 2.60 2.03 +collapse collapser VER 0.02 0.07 0.01 0.07 imp:pre:2s;ind:pre:3s; +collapserait collapser VER 0.02 0.07 0.01 0.00 cnd:pre:3s; +collapsus collapsus NOM m 0.17 0.14 0.17 0.14 +collas coller VER 51.34 107.16 0.00 0.14 ind:pas:2s; +collation collation NOM f s 0.92 2.03 0.88 1.76 +collationne collationner VER 0.13 0.14 0.02 0.07 ind:pre:1s;ind:pre:3s; +collationnement collationnement NOM m s 0.01 0.00 0.01 0.00 +collationner collationner VER 0.13 0.14 0.10 0.00 inf; +collationnés collationner VER m p 0.13 0.14 0.01 0.07 par:pas; +collations collation NOM f p 0.92 2.03 0.04 0.27 +collatéral collatéral ADJ m s 0.66 0.34 0.33 0.07 +collatérale collatéral ADJ f s 0.66 0.34 0.01 0.07 +collatérales collatéral ADJ f p 0.66 0.34 0.01 0.07 +collatéraux collatéral ADJ m p 0.66 0.34 0.30 0.14 +colle coller VER 51.34 107.16 18.32 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +collectait collecter VER 2.17 1.01 0.05 0.00 ind:imp:3s; +collectant collecter VER 2.17 1.01 0.04 0.14 par:pre; +collecte collecte NOM f s 3.13 1.49 2.88 1.28 +collecter collecter VER 2.17 1.01 1.07 0.41 inf; +collectes collecte NOM f p 3.13 1.49 0.25 0.20 +collecteur collecteur NOM m s 0.87 1.28 0.67 0.88 +collecteurs collecteur NOM m p 0.87 1.28 0.20 0.41 +collectez collecter VER 2.17 1.01 0.01 0.00 imp:pre:2p; +collectif collectif NOM m s 3.44 0.27 3.44 0.27 +collectifs collectif ADJ m p 4.60 15.68 0.27 1.35 +collection collection NOM f s 16.93 25.68 16.25 21.62 +collectionna collectionner VER 5.74 5.07 0.00 0.07 ind:pas:3s; +collectionnaient collectionner VER 5.74 5.07 0.01 0.20 ind:imp:3p; +collectionnais collectionner VER 5.74 5.07 0.40 0.41 ind:imp:1s;ind:imp:2s; +collectionnait collectionner VER 5.74 5.07 0.70 1.28 ind:imp:3s; +collectionnant collectionner VER 5.74 5.07 0.01 0.20 par:pre; +collectionne collectionner VER 5.74 5.07 2.63 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +collectionnent collectionner VER 5.74 5.07 0.23 0.20 ind:pre:3p; +collectionner collectionner VER 5.74 5.07 0.65 1.15 inf; +collectionnes collectionner VER 5.74 5.07 0.52 0.07 ind:pre:2s; +collectionneur collectionneur NOM m s 1.72 4.32 1.30 2.36 +collectionneurs collectionneur NOM m p 1.72 4.32 0.36 1.76 +collectionneuse collectionneuse NOM f s 0.10 0.00 0.10 0.00 +collectionnez collectionner VER 5.74 5.07 0.26 0.07 imp:pre:2p;ind:pre:2p; +collectionnions collectionner VER 5.74 5.07 0.00 0.07 ind:imp:1p; +collectionnons collectionner VER 5.74 5.07 0.04 0.00 ind:pre:1p; +collectionné collectionner VER m s 5.74 5.07 0.19 0.14 par:pas; +collectionnées collectionner VER f p 5.74 5.07 0.11 0.07 par:pas; +collectionnés collectionner VER m p 5.74 5.07 0.00 0.14 par:pas; +collections collection NOM f p 16.93 25.68 0.69 4.05 +collective collectif ADJ f s 4.60 15.68 1.88 7.91 +collectivement collectivement ADV 0.22 0.74 0.22 0.74 +collectives collectif ADJ f p 4.60 15.68 0.36 1.69 +collectivisation collectivisation NOM f s 0.04 0.27 0.04 0.27 +collectiviser collectiviser VER 0.19 0.14 0.05 0.00 inf; +collectivisme collectivisme NOM m s 0.14 0.34 0.14 0.34 +collectiviste collectiviste ADJ s 0.01 0.20 0.01 0.20 +collectivisé collectiviser VER m s 0.19 0.14 0.14 0.00 par:pas; +collectivisée collectiviser VER f s 0.19 0.14 0.01 0.07 par:pas; +collectivisés collectiviser VER m p 0.19 0.14 0.00 0.07 par:pas; +collectivité collectivité NOM f s 0.42 2.91 0.41 2.57 +collectivités collectivité NOM f p 0.42 2.91 0.01 0.34 +collectons collecter VER 2.17 1.01 0.09 0.00 ind:pre:1p; +collector collector NOM m s 0.24 0.00 0.24 0.00 +collectrice collecteur ADJ f s 0.01 0.00 0.01 0.00 +collecté collecter VER m s 2.17 1.01 0.35 0.20 par:pas; +collectée collecter VER f s 2.17 1.01 0.04 0.07 par:pas; +collectées collecter VER f p 2.17 1.01 0.05 0.00 par:pas; +collectés collecter VER m p 2.17 1.01 0.08 0.14 par:pas; +collent coller VER 51.34 107.16 1.59 2.97 ind:pre:3p; +coller coller VER 51.34 107.16 10.33 12.36 ind:pre:2p;inf; +collera coller VER 51.34 107.16 0.63 0.34 ind:fut:3s; +collerai coller VER 51.34 107.16 0.65 0.07 ind:fut:1s; +collerais coller VER 51.34 107.16 0.10 0.14 cnd:pre:1s;cnd:pre:2s; +collerait coller VER 51.34 107.16 0.22 0.41 cnd:pre:3s; +colleras coller VER 51.34 107.16 0.03 0.00 ind:fut:2s; +collerette collerette NOM f s 0.04 2.09 0.04 1.62 +collerettes collerette NOM f p 0.04 2.09 0.00 0.47 +collerez coller VER 51.34 107.16 0.06 0.00 ind:fut:2p; +colleront coller VER 51.34 107.16 0.37 0.00 ind:fut:3p; +colles coller VER 51.34 107.16 1.56 0.41 ind:pre:2s;sub:pre:2s; +collet collet NOM m s 1.11 3.72 1.08 2.57 +colletage colletage NOM m s 0.00 0.07 0.00 0.07 +colleter colleter VER 0.07 0.95 0.03 0.41 inf; +colletin colletin NOM m s 0.00 0.14 0.00 0.14 +collets collet NOM m p 1.11 3.72 0.03 1.15 +collette colleter VER 0.07 0.95 0.01 0.14 imp:pre:2s;ind:pre:3s; +colleté colleter VER m s 0.07 0.95 0.03 0.27 par:pas; +colletés colleter VER m p 0.07 0.95 0.00 0.14 par:pas; +colleur colleur NOM m s 0.11 0.34 0.11 0.00 +colleurs colleur NOM m p 0.11 0.34 0.00 0.34 +colleuse colleuse NOM f s 0.01 0.00 0.01 0.00 +colley colley NOM m s 0.28 0.00 0.27 0.00 +colleys colley NOM m p 0.28 0.00 0.01 0.00 +collez coller VER 51.34 107.16 1.68 0.27 imp:pre:2p;ind:pre:2p; +collier collier NOM m s 19.91 20.00 17.79 14.80 +colliers collier NOM m p 19.91 20.00 2.13 5.20 +colliez coller VER 51.34 107.16 0.05 0.00 ind:imp:2p; +collignon collignon NOM m s 2.54 0.20 2.54 0.20 +collimateur collimateur NOM m s 0.69 0.81 0.69 0.81 +collimation collimation NOM f s 0.00 0.07 0.00 0.07 +colline colline NOM f s 26.39 55.61 15.61 30.07 +collines colline NOM f p 26.39 55.61 10.79 25.54 +collions coller VER 51.34 107.16 0.01 0.34 ind:imp:1p; +collision collision NOM f s 3.91 2.23 3.53 1.76 +collisions collision NOM f p 3.91 2.23 0.38 0.47 +colloïdale colloïdal ADJ f s 0.01 0.00 0.01 0.00 +colloïde colloïde NOM m s 0.00 0.07 0.00 0.07 +collodion collodion NOM m s 0.03 0.14 0.03 0.14 +collons coller VER 51.34 107.16 0.14 0.14 imp:pre:1p;ind:pre:1p; +colloquant colloquer VER 0.00 0.54 0.00 0.07 par:pre; +colloque colloque NOM m s 0.70 2.23 0.58 1.55 +colloquer colloquer VER 0.00 0.54 0.00 0.20 inf; +colloques colloque NOM m p 0.70 2.23 0.12 0.68 +colloqué colloquer VER m s 0.00 0.54 0.00 0.20 par:pas; +colloquée colloquer VER f s 0.00 0.54 0.00 0.07 par:pas; +collège collège NOM m s 11.58 26.82 11.30 25.00 +collèges collège NOM m p 11.58 26.82 0.28 1.82 +collègue collègue NOM s 38.93 32.09 18.22 12.16 +collègues collègue NOM p 38.93 32.09 20.72 19.93 +collèrent coller VER 51.34 107.16 0.00 0.34 ind:pas:3p; +collé coller VER m s 51.34 107.16 6.66 20.41 par:pas; +collée coller VER f s 51.34 107.16 2.39 11.28 par:pas; +collées coller VER f p 51.34 107.16 1.19 7.57 par:pas; +collégial collégial ADJ m s 0.20 0.34 0.14 0.00 +collégiale collégial ADJ f s 0.20 0.34 0.05 0.27 +collégiales collégial ADJ f p 0.20 0.34 0.00 0.07 +collégialité collégialité NOM f s 0.00 0.14 0.00 0.14 +collégiaux collégial ADJ m p 0.20 0.34 0.01 0.00 +collégien collégien NOM m s 0.84 4.66 0.30 1.89 +collégienne collégien NOM f s 0.84 4.66 0.26 0.61 +collégiennes collégienne NOM f p 0.05 0.00 0.05 0.00 +collégiens collégien NOM m p 0.84 4.66 0.28 1.76 +collure collure NOM f s 0.03 0.00 0.03 0.00 +collés coller VER m p 51.34 107.16 2.21 11.15 par:pas; +collusion collusion NOM f s 0.10 0.74 0.10 0.54 +collusions collusion NOM f p 0.10 0.74 0.00 0.20 +collutoire collutoire NOM m s 0.00 0.07 0.00 0.07 +collyre collyre NOM m s 0.50 0.47 0.50 0.27 +collyres collyre NOM m p 0.50 0.47 0.00 0.20 +colmatage colmatage NOM m s 0.03 0.07 0.03 0.07 +colmataient colmater VER 1.51 1.76 0.00 0.07 ind:imp:3p; +colmatais colmater VER 1.51 1.76 0.00 0.07 ind:imp:1s; +colmatait colmater VER 1.51 1.76 0.00 0.27 ind:imp:3s; +colmatant colmater VER 1.51 1.76 0.01 0.07 par:pre; +colmate colmater VER 1.51 1.76 0.31 0.20 imp:pre:2s;ind:pre:3s; +colmater colmater VER 1.51 1.76 0.56 0.47 inf; +colmatez colmater VER 1.51 1.76 0.01 0.00 imp:pre:2p; +colmatons colmater VER 1.51 1.76 0.01 0.00 imp:pre:1p; +colmaté colmater VER m s 1.51 1.76 0.14 0.20 par:pas; +colmatée colmater VER f s 1.51 1.76 0.27 0.20 par:pas; +colmatées colmater VER f p 1.51 1.76 0.20 0.14 par:pas; +colmatés colmater VER m p 1.51 1.76 0.00 0.07 par:pas; +colo colo NOM f s 1.11 2.91 1.10 2.77 +colocataire colocataire NOM s 4.88 0.07 3.91 0.00 +colocataires colocataire NOM p 4.88 0.07 0.97 0.07 +colocation colocation NOM f s 0.23 0.07 0.23 0.07 +colombages colombage NOM m p 0.00 0.68 0.00 0.68 +colombe colombe NOM f s 6.84 5.34 5.08 3.51 +colombelle colombelle NOM f s 0.00 1.22 0.00 1.22 +colombes colombe NOM f p 6.84 5.34 1.76 1.82 +colombien colombien ADJ m s 0.54 0.14 0.29 0.00 +colombienne colombien NOM f s 1.11 0.14 0.17 0.14 +colombiens colombien NOM m p 1.11 0.14 0.75 0.00 +colombier colombier NOM m s 0.12 1.49 0.12 1.35 +colombiers colombier NOM m p 0.12 1.49 0.00 0.14 +colombin colombin NOM m s 0.01 0.61 0.01 0.14 +colombine colombin ADJ f s 0.02 0.34 0.01 0.27 +colombines colombin ADJ f p 0.02 0.34 0.00 0.07 +colombins colombin NOM m p 0.01 0.61 0.00 0.47 +colombo colombo NOM m s 0.00 0.07 0.00 0.07 +colombophile colombophile ADJ s 0.27 0.34 0.27 0.34 +colombophilie colombophilie NOM f s 0.14 0.07 0.14 0.07 +colon colon NOM m s 5.46 4.05 1.21 0.88 +colonel colonel NOM m s 103.70 47.03 102.86 42.91 +colonelle colonel NOM f s 103.70 47.03 0.14 1.82 +colonels colonel NOM m p 103.70 47.03 0.71 2.30 +colonial colonial ADJ m s 2.85 12.70 1.12 4.32 +coloniale colonial ADJ f s 2.85 12.70 1.11 5.34 +coloniales colonial ADJ f p 2.85 12.70 0.31 1.49 +colonialisme colonialisme NOM m s 0.34 0.74 0.34 0.68 +colonialismes colonialisme NOM m p 0.34 0.74 0.00 0.07 +colonialiste colonialiste NOM s 0.26 0.07 0.10 0.00 +colonialistes colonialiste NOM p 0.26 0.07 0.16 0.07 +coloniaux colonial ADJ m p 2.85 12.70 0.30 1.55 +colonie colonie NOM f s 8.75 19.05 5.53 10.34 +colonies colonie NOM f p 8.75 19.05 3.22 8.72 +colonisait coloniser VER 0.60 1.62 0.00 0.14 ind:imp:3s; +colonisateur colonisateur NOM m s 0.01 0.20 0.00 0.14 +colonisateurs colonisateur NOM m p 0.01 0.20 0.01 0.07 +colonisation colonisation NOM f s 0.71 0.68 0.71 0.61 +colonisations colonisation NOM f p 0.71 0.68 0.00 0.07 +colonisatrice colonisateur ADJ f s 0.01 0.14 0.01 0.14 +colonise coloniser VER 0.60 1.62 0.01 0.14 ind:pre:3s; +colonisent coloniser VER 0.60 1.62 0.04 0.00 ind:pre:3p; +coloniser coloniser VER 0.60 1.62 0.22 0.41 inf; +coloniserait coloniser VER 0.60 1.62 0.01 0.00 cnd:pre:3s; +colonisez coloniser VER 0.60 1.62 0.01 0.00 ind:pre:2p; +colonisons coloniser VER 0.60 1.62 0.02 0.00 imp:pre:1p;ind:pre:1p; +colonisèrent coloniser VER 0.60 1.62 0.02 0.07 ind:pas:3p; +colonisé coloniser VER m s 0.60 1.62 0.15 0.41 par:pas; +colonisée coloniser VER f s 0.60 1.62 0.06 0.27 par:pas; +colonisées coloniser VER f p 0.60 1.62 0.02 0.00 par:pas; +colonisés coloniser VER m p 0.60 1.62 0.02 0.20 par:pas; +colonnade colonnade NOM f s 0.17 2.84 0.15 1.15 +colonnades colonnade NOM f p 0.17 2.84 0.02 1.69 +colonne colonne NOM f s 9.29 50.07 6.58 25.95 +colonnes colonne NOM f p 9.29 50.07 2.71 24.12 +colonnette colonnette NOM f s 0.00 1.82 0.00 0.74 +colonnettes colonnette NOM f p 0.00 1.82 0.00 1.08 +colonoscopie colonoscopie NOM f s 0.01 0.00 0.01 0.00 +colons colon NOM m p 5.46 4.05 1.58 3.18 +colopathie colopathie NOM f s 0.01 0.00 0.01 0.00 +colophane colophane NOM f s 0.28 0.20 0.28 0.20 +colophané colophaner VER m s 0.10 0.00 0.10 0.00 par:pas; +coloquinte coloquinte NOM f s 0.00 0.27 0.00 0.14 +coloquintes coloquinte NOM f p 0.00 0.27 0.00 0.14 +colora colorer VER 1.10 9.39 0.00 0.81 ind:pas:3s; +colorai colorer VER 1.10 9.39 0.00 0.07 ind:pas:1s; +coloraient colorer VER 1.10 9.39 0.00 0.54 ind:imp:3p; +colorait colorer VER 1.10 9.39 0.00 1.55 ind:imp:3s; +colorant colorant NOM m s 0.42 0.47 0.33 0.20 +colorantes colorant ADJ f p 0.20 0.14 0.00 0.07 +colorants colorant NOM m p 0.42 0.47 0.09 0.27 +coloration coloration NOM f s 0.67 1.49 0.65 1.15 +colorations coloration NOM f p 0.67 1.49 0.01 0.34 +colorature colorature NOM f s 0.14 0.14 0.14 0.14 +colore colorer VER 1.10 9.39 0.13 1.01 imp:pre:2s;ind:pre:3s; +colorectal colorectal ADJ m s 0.01 0.00 0.01 0.00 +colorent colorer VER 1.10 9.39 0.14 0.41 ind:pre:3p; +colorer colorer VER 1.10 9.39 0.16 0.68 inf; +colorez colorer VER 1.10 9.39 0.01 0.07 imp:pre:2p; +coloriage coloriage NOM m s 0.49 0.34 0.31 0.27 +coloriages coloriage NOM m p 0.49 0.34 0.18 0.07 +coloriaient colorier VER 1.10 5.41 0.00 0.07 ind:imp:3p; +coloriait colorier VER 1.10 5.41 0.01 0.20 ind:imp:3s; +colorie colorier VER 1.10 5.41 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +colorient colorier VER 1.10 5.41 0.01 0.07 ind:pre:3p; +colorier colorier VER 1.10 5.41 0.25 0.68 inf; +coloriez colorier VER 1.10 5.41 0.17 0.00 imp:pre:2p;ind:pre:2p; +coloris coloris NOM m 0.39 1.62 0.39 1.62 +colorisation colorisation NOM f s 0.04 0.00 0.04 0.00 +coloriste coloriste NOM s 0.16 0.27 0.16 0.27 +colorisé coloriser VER m s 0.02 0.00 0.02 0.00 par:pas; +colorié colorier VER m s 1.10 5.41 0.18 1.08 par:pas; +coloriée colorier VER f s 1.10 5.41 0.11 0.81 par:pas; +coloriées colorier VER f p 1.10 5.41 0.06 1.49 par:pas; +coloriés colorier VER m p 1.10 5.41 0.25 0.95 par:pas; +colorèrent colorer VER 1.10 9.39 0.00 0.20 ind:pas:3p; +coloré coloré ADJ m s 2.32 9.53 0.78 2.36 +colorée colorer VER f s 1.10 9.39 0.32 1.01 par:pas; +colorées coloré ADJ f p 2.32 9.53 0.60 2.36 +colorés coloré ADJ m p 2.32 9.53 0.78 2.70 +colos colo NOM f p 1.11 2.91 0.01 0.14 +coloscopie coloscopie NOM f s 0.13 0.00 0.13 0.00 +colossal colossal ADJ m s 1.37 9.05 0.81 4.46 +colossale colossal ADJ f s 1.37 9.05 0.48 2.70 +colossales colossal ADJ f p 1.37 9.05 0.02 1.42 +colossaux colossal ADJ m p 1.37 9.05 0.05 0.47 +colosse colosse NOM m s 2.72 6.82 2.46 6.08 +colosses colosse NOM m p 2.72 6.82 0.26 0.74 +colostomie colostomie NOM f s 0.09 0.00 0.09 0.00 +colostrum colostrum NOM m s 0.01 0.00 0.01 0.00 +colporta colporter VER 0.56 2.16 0.00 0.07 ind:pas:3s; +colportage colportage NOM m s 0.01 0.14 0.01 0.14 +colportaient colporter VER 0.56 2.16 0.00 0.14 ind:imp:3p; +colportait colporter VER 0.56 2.16 0.00 0.68 ind:imp:3s; +colportant colporter VER 0.56 2.16 0.01 0.20 par:pre; +colporte colporter VER 0.56 2.16 0.08 0.14 imp:pre:2s;ind:pre:3s; +colportent colporter VER 0.56 2.16 0.03 0.00 ind:pre:3p; +colporter colporter VER 0.56 2.16 0.37 0.47 inf; +colportera colporter VER 0.56 2.16 0.00 0.07 ind:fut:3s; +colportes colporter VER 0.56 2.16 0.00 0.07 ind:pre:2s; +colporteur colporteur NOM m s 0.53 1.42 0.38 0.54 +colporteurs colporteur NOM m p 0.53 1.42 0.15 0.74 +colporteuse colporteur NOM f s 0.53 1.42 0.00 0.14 +colportons colporter VER 0.56 2.16 0.02 0.00 imp:pre:1p;ind:pre:1p; +colporté colporter VER m s 0.56 2.16 0.01 0.14 par:pas; +colportée colporter VER f s 0.56 2.16 0.01 0.14 par:pas; +colportées colporter VER f p 0.56 2.16 0.02 0.07 par:pas; +colposcopie colposcopie NOM f s 0.01 0.00 0.01 0.00 +cols_de_cygne cols_de_cygne NOM m p 0.00 0.07 0.00 0.07 +col_vert col_vert NOM m p 0.12 0.14 0.00 0.07 +cols col NOM m p 9.76 57.43 1.37 5.61 +colt colt NOM m s 0.97 1.82 0.57 1.82 +colère colère NOM f s 68.90 100.07 67.91 92.77 +colères colère NOM f p 68.90 100.07 0.99 7.30 +coltin coltin NOM m s 0.00 0.27 0.00 0.27 +coltina coltiner VER 1.15 3.04 0.00 0.14 ind:pas:3s; +coltinage coltinage NOM m s 0.00 0.34 0.00 0.27 +coltinages coltinage NOM m p 0.00 0.34 0.00 0.07 +coltinais coltiner VER 1.15 3.04 0.02 0.20 ind:imp:1s; +coltinait coltiner VER 1.15 3.04 0.02 0.14 ind:imp:3s; +coltinant coltiner VER 1.15 3.04 0.00 0.14 par:pre; +coltine coltiner VER 1.15 3.04 0.15 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coltinent coltiner VER 1.15 3.04 0.01 0.07 ind:pre:3p; +coltiner coltiner VER 1.15 3.04 0.48 1.22 inf; +coltines coltiner VER 1.15 3.04 0.23 0.14 ind:pre:2s; +coltineur coltineur NOM m s 0.00 0.07 0.00 0.07 +coltinez coltiner VER 1.15 3.04 0.01 0.00 ind:pre:2p; +coltiné coltiner VER m s 1.15 3.04 0.18 0.20 par:pas; +coltinée coltiner VER f s 1.15 3.04 0.04 0.07 par:pas; +coltinés coltiner VER m p 1.15 3.04 0.00 0.14 par:pas; +colts colt NOM m p 0.97 1.82 0.40 0.00 +colée colée NOM f s 0.01 0.07 0.01 0.07 +columbarium columbarium NOM m s 0.00 0.54 0.00 0.54 +coléoptère coléoptère NOM m s 0.64 1.49 0.38 0.61 +coléoptères coléoptère NOM m p 0.64 1.49 0.27 0.88 +colérer colérer VER 0.01 0.00 0.01 0.00 inf; +coléreuse coléreux ADJ f s 1.05 2.64 0.32 0.54 +coléreusement coléreusement ADV 0.00 0.07 0.00 0.07 +coléreux coléreux ADJ m 1.05 2.64 0.73 2.09 +colérique colérique ADJ s 0.44 0.88 0.43 0.61 +colériques colérique ADJ f p 0.44 0.88 0.01 0.27 +colvert colvert NOM m s 0.19 0.68 0.17 0.41 +colverts colvert NOM m p 0.19 0.68 0.03 0.27 +colza colza NOM m s 0.05 0.81 0.05 0.61 +colzas colza NOM m p 0.05 0.81 0.00 0.20 +com com NOM m s 40.90 0.27 40.90 0.27 +coma coma NOM m s 12.66 4.93 12.58 4.86 +comac comac ADJ s 0.16 1.22 0.14 1.08 +comacs comac ADJ m p 0.16 1.22 0.01 0.14 +comanche comanche NOM m s 0.36 0.07 0.36 0.07 +comandant comandant NOM s 0.16 0.27 0.16 0.27 +comas coma NOM m p 12.66 4.93 0.08 0.07 +comateuse comateux ADJ f s 0.55 1.08 0.14 0.14 +comateux comateux ADJ m 0.55 1.08 0.41 0.95 +combat combat NOM m s 64.83 72.57 57.31 52.36 +combatif combatif ADJ m s 0.90 1.42 0.78 0.54 +combatifs combatif ADJ m p 0.90 1.42 0.05 0.07 +combative combatif ADJ f s 0.90 1.42 0.07 0.81 +combativité combativité NOM f s 0.28 0.41 0.28 0.41 +combats combat NOM m p 64.83 72.57 7.53 20.20 +combattît combattre VER 42.89 36.35 0.02 0.07 sub:imp:3s; +combattaient combattre VER 42.89 36.35 0.31 1.62 ind:imp:3p; +combattais combattre VER 42.89 36.35 0.17 0.14 ind:imp:1s;ind:imp:2s; +combattait combattre VER 42.89 36.35 0.50 1.35 ind:imp:3s; +combattant combattant NOM m s 6.28 18.31 2.49 4.46 +combattante combattant NOM f s 6.28 18.31 0.22 0.54 +combattantes combattant NOM f p 6.28 18.31 0.14 0.27 +combattants combattant NOM m p 6.28 18.31 3.43 13.04 +combatte combattre VER 42.89 36.35 0.15 0.14 sub:pre:1s;sub:pre:3s; +combattent combattre VER 42.89 36.35 1.51 2.64 ind:pre:3p; +combattes combattre VER 42.89 36.35 0.04 0.00 sub:pre:2s; +combattez combattre VER 42.89 36.35 1.52 0.34 imp:pre:2p;ind:pre:2p; +combattiez combattre VER 42.89 36.35 0.11 0.00 ind:imp:2p; +combattions combattre VER 42.89 36.35 0.10 0.07 ind:imp:1p; +combattirent combattre VER 42.89 36.35 0.03 0.14 ind:pas:3p; +combattit combattre VER 42.89 36.35 0.05 0.20 ind:pas:3s; +combattons combattre VER 42.89 36.35 1.40 0.27 imp:pre:1p;ind:pre:1p; +combattra combattre VER 42.89 36.35 0.63 0.07 ind:fut:3s; +combattrai combattre VER 42.89 36.35 0.52 0.07 ind:fut:1s; +combattraient combattre VER 42.89 36.35 0.04 0.00 cnd:pre:3p; +combattrais combattre VER 42.89 36.35 0.10 0.00 cnd:pre:1s;cnd:pre:2s; +combattrait combattre VER 42.89 36.35 0.00 0.14 cnd:pre:3s; +combattras combattre VER 42.89 36.35 0.19 0.00 ind:fut:2s; +combattre combattre VER 42.89 36.35 20.96 17.97 inf; +combattrez combattre VER 42.89 36.35 0.19 0.00 ind:fut:2p; +combattriez combattre VER 42.89 36.35 0.02 0.00 cnd:pre:2p; +combattrons combattre VER 42.89 36.35 0.59 0.00 ind:fut:1p; +combattront combattre VER 42.89 36.35 0.07 0.14 ind:fut:3p; +combattu combattre VER m s 42.89 36.35 6.41 3.65 par:pas; +combattue combattre VER f s 42.89 36.35 0.22 0.27 par:pas; +combattues combattre VER f p 42.89 36.35 0.04 0.14 par:pas; +combattus combattre VER m p 42.89 36.35 0.30 0.27 par:pas; +combe combe NOM f s 0.07 4.59 0.07 3.99 +combes combe NOM f p 0.07 4.59 0.00 0.61 +combette combette NOM f s 0.00 0.14 0.00 0.14 +combi combi NOM m s 0.69 0.00 0.67 0.00 +combien combien ADV 390.58 108.04 390.58 108.04 +combientième combientième ADJ s 0.05 0.07 0.05 0.07 +combina combiner VER 4.50 6.35 0.01 0.07 ind:pas:3s; +combinaient combiner VER 4.50 6.35 0.01 0.47 ind:imp:3p; +combinaison combinaison NOM f s 14.56 17.43 11.44 10.81 +combinaisons combinaison NOM f p 14.56 17.43 3.12 6.62 +combinait combiner VER 4.50 6.35 0.04 0.74 ind:imp:3s; +combinant combiner VER 4.50 6.35 0.21 0.81 par:pre; +combinard combinard NOM m s 0.50 0.27 0.39 0.14 +combinards combinard NOM m p 0.50 0.27 0.11 0.14 +combinat combinat NOM m s 0.23 0.00 0.23 0.00 +combinatoire combinatoire ADJ f s 0.10 0.41 0.07 0.34 +combinatoires combinatoire ADJ f p 0.10 0.41 0.03 0.07 +combine combine NOM f s 6.84 8.24 4.32 4.80 +combinent combiner VER 4.50 6.35 0.04 0.41 ind:pre:3p; +combiner combiner VER 4.50 6.35 1.42 1.55 inf; +combineraient combiner VER 4.50 6.35 0.00 0.07 cnd:pre:3p; +combinerait combiner VER 4.50 6.35 0.01 0.00 cnd:pre:3s; +combinerons combiner VER 4.50 6.35 0.02 0.00 ind:fut:1p; +combines combine NOM f p 6.84 8.24 2.52 3.45 +combinez combiner VER 4.50 6.35 0.08 0.00 imp:pre:2p;ind:pre:2p; +combinons combiner VER 4.50 6.35 0.01 0.07 ind:pre:1p; +combiné combiner VER m s 4.50 6.35 1.50 0.88 par:pas; +combinée combiner VER f s 4.50 6.35 0.28 0.54 par:pas; +combinées combiné ADJ f p 0.88 1.69 0.20 0.41 +combinés combiné ADJ m p 0.88 1.69 0.33 0.41 +combis combi NOM m p 0.69 0.00 0.02 0.00 +combisme combisme NOM m s 0.00 0.07 0.00 0.07 +combla combler VER 9.35 25.34 0.03 0.61 ind:pas:3s; +comblaient combler VER 9.35 25.34 0.02 0.47 ind:imp:3p; +comblais combler VER 9.35 25.34 0.01 0.07 ind:imp:1s;ind:imp:2s; +comblait combler VER 9.35 25.34 0.06 4.12 ind:imp:3s; +comblant combler VER 9.35 25.34 0.02 0.41 par:pre; +comblants comblant ADJ m p 0.00 0.27 0.00 0.07 +comble comble NOM m s 8.56 27.30 7.86 22.50 +comblent combler VER 9.35 25.34 0.29 0.20 ind:pre:3p; +combler combler VER 9.35 25.34 2.50 7.97 inf; +comblera combler VER 9.35 25.34 0.27 0.07 ind:fut:3s; +comblerai combler VER 9.35 25.34 0.04 0.07 ind:fut:1s; +combleraient combler VER 9.35 25.34 0.00 0.27 cnd:pre:3p; +comblerais combler VER 9.35 25.34 0.01 0.07 cnd:pre:1s; +comblerait combler VER 9.35 25.34 0.07 0.07 cnd:pre:3s; +comblerez combler VER 9.35 25.34 0.02 0.00 ind:fut:2p; +combleront combler VER 9.35 25.34 0.01 0.27 ind:fut:3p; +combles comble NOM m p 8.56 27.30 0.70 4.80 +comblez combler VER 9.35 25.34 0.56 0.07 imp:pre:2p;ind:pre:2p; +comblons combler VER 9.35 25.34 0.02 0.00 imp:pre:1p; +comblât combler VER 9.35 25.34 0.00 0.07 sub:imp:3s; +comblèrent combler VER 9.35 25.34 0.00 0.14 ind:pas:3p; +comblé combler VER m s 9.35 25.34 2.00 3.58 par:pas; +comblée combler VER f s 9.35 25.34 1.12 1.89 par:pas; +comblées combler VER f p 9.35 25.34 0.03 0.27 par:pas; +comblés combler VER m p 9.35 25.34 0.49 1.55 par:pas; +combo combo NOM m s 0.40 0.00 0.40 0.00 +combourgeois combourgeois NOM m 0.00 0.07 0.00 0.07 +comburant comburant ADJ m s 0.03 0.00 0.03 0.00 +combustible combustible NOM m s 1.27 1.49 1.21 1.01 +combustibles combustible NOM m p 1.27 1.49 0.05 0.47 +combustion combustion NOM f s 3.78 1.89 3.71 1.82 +combustions combustion NOM f p 3.78 1.89 0.07 0.07 +comestibilité comestibilité NOM f s 0.01 0.00 0.01 0.00 +comestible comestible ADJ s 1.20 2.36 1.04 1.22 +comestibles comestible ADJ p 1.20 2.36 0.16 1.15 +comic_book comic_book NOM m s 0.08 0.07 0.01 0.00 +comic_book comic_book NOM m p 0.08 0.07 0.07 0.07 +comice comice NOM s 0.00 0.34 0.00 0.07 +comices comice NOM m p 0.00 0.34 0.00 0.27 +comics comics NOM m p 0.69 0.41 0.69 0.41 +comique comique ADJ s 4.86 13.45 4.33 10.34 +comiquement comiquement ADV 0.14 1.35 0.14 1.35 +comiques comique NOM p 5.17 3.92 0.94 0.41 +comitadji comitadji NOM m s 0.01 0.07 0.01 0.07 +comite comite NOM m s 0.05 0.14 0.05 0.00 +comites comite NOM m p 0.05 0.14 0.00 0.14 +comité comité NOM m s 18.72 63.65 18.34 58.99 +comités comité NOM m p 18.72 63.65 0.38 4.66 +commît commettre VER 47.45 37.16 0.00 0.07 sub:imp:3s; +comma comma NOM m s 0.03 0.00 0.03 0.00 +command command NOM m s 0.44 0.07 0.44 0.07 +commanda commander VER 63.49 80.34 0.22 10.14 ind:pas:3s; +commandai commander VER 63.49 80.34 0.01 0.61 ind:pas:1s; +commandaient commander VER 63.49 80.34 0.05 1.89 ind:imp:3p; +commandais commander VER 63.49 80.34 0.47 0.61 ind:imp:1s;ind:imp:2s; +commandait commander VER 63.49 80.34 0.95 10.81 ind:imp:3s; +commandant commandant NOM m s 55.24 49.80 54.31 47.64 +commandante commandant ADJ f s 17.32 5.14 0.13 0.07 +commandants commandant NOM m p 55.24 49.80 0.93 2.16 +commande commander VER 63.49 80.34 20.50 13.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +commandement commandement NOM m s 20.47 47.23 18.13 43.51 +commandements commandement NOM m p 20.47 47.23 2.34 3.72 +commandent commander VER 63.49 80.34 1.14 2.64 ind:pre:3p; +commander commander VER 63.49 80.34 13.50 11.55 ind:pre:2p;inf; +commandera commander VER 63.49 80.34 0.70 0.14 ind:fut:3s; +commanderai commander VER 63.49 80.34 0.84 0.27 ind:fut:1s; +commanderait commander VER 63.49 80.34 0.04 0.20 cnd:pre:3s; +commanderas commander VER 63.49 80.34 0.28 0.14 ind:fut:2s; +commanderez commander VER 63.49 80.34 0.22 0.00 ind:fut:2p; +commanderie commanderie NOM f s 0.14 0.14 0.14 0.07 +commanderies commanderie NOM f p 0.14 0.14 0.00 0.07 +commanderons commander VER 63.49 80.34 0.03 0.07 ind:fut:1p; +commanderont commander VER 63.49 80.34 0.01 0.07 ind:fut:3p; +commandes commande NOM f p 31.36 18.72 11.96 6.08 +commandeur commandeur NOM m s 2.55 0.74 2.52 0.61 +commandeurs commandeur NOM m p 2.55 0.74 0.03 0.14 +commandez commander VER 63.49 80.34 2.84 0.34 imp:pre:2p;ind:pre:2p; +commandiez commander VER 63.49 80.34 0.32 0.07 ind:imp:2p; +commandions commander VER 63.49 80.34 0.02 0.14 ind:imp:1p; +commanditaire commanditaire NOM s 1.02 1.08 0.82 0.68 +commanditaires commanditaire NOM p 1.02 1.08 0.20 0.41 +commandite commanditer VER 0.68 0.20 0.06 0.00 ind:pre:1s;ind:pre:3s; +commanditer commanditer VER 0.68 0.20 0.06 0.14 inf; +commandites commanditer VER 0.68 0.20 0.10 0.00 ind:pre:2s; +commandité commanditer VER m s 0.68 0.20 0.42 0.00 par:pas; +commanditée commanditer VER f s 0.68 0.20 0.03 0.07 par:pas; +commanditées commanditer VER f p 0.68 0.20 0.01 0.00 par:pas; +commando commando NOM m s 5.39 6.82 4.01 3.85 +commandons commander VER 63.49 80.34 0.69 0.07 imp:pre:1p;ind:pre:1p; +commando_suicide commando_suicide NOM m p 0.01 0.00 0.01 0.00 +commandos commando NOM m p 5.39 6.82 1.38 2.97 +commandât commander VER 63.49 80.34 0.00 0.14 sub:imp:3s; +commandèrent commander VER 63.49 80.34 0.00 1.01 ind:pas:3p; +commandé commander VER m s 63.49 80.34 14.77 12.30 par:pas; +commandée commander VER f s 63.49 80.34 1.30 3.04 par:pas; +commandées commander VER f p 63.49 80.34 0.47 1.28 par:pas; +commandés commander VER m p 63.49 80.34 0.64 1.76 par:pas; +comme comme CON 2326.08 3429.32 2326.08 3429.32 +commedia_dell_arte commedia_dell_arte NOM f s 0.02 0.14 0.02 0.14 +commence commencer VER 436.83 421.89 143.51 82.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +commencement commencement NOM m s 6.41 16.55 6.22 15.68 +commencements commencement NOM m p 6.41 16.55 0.20 0.88 +commencent commencer VER 436.83 421.89 11.69 13.85 ind:pre:3p; +commencer commencer VER 436.83 421.89 92.51 42.50 inf; +commencera commencer VER 436.83 421.89 4.70 1.89 ind:fut:3s; +commencerai commencer VER 436.83 421.89 1.61 0.54 ind:fut:1s; +commenceraient commencer VER 436.83 421.89 0.04 0.68 cnd:pre:3p; +commencerais commencer VER 436.83 421.89 1.01 0.61 cnd:pre:1s;cnd:pre:2s; +commencerait commencer VER 436.83 421.89 0.37 1.82 cnd:pre:3s; +commenceras commencer VER 436.83 421.89 0.54 0.20 ind:fut:2s; +commencerez commencer VER 436.83 421.89 0.51 0.07 ind:fut:2p; +commenceriez commencer VER 436.83 421.89 0.06 0.00 cnd:pre:2p; +commencerions commencer VER 436.83 421.89 0.14 0.00 cnd:pre:1p; +commencerons commencer VER 436.83 421.89 1.55 0.14 ind:fut:1p; +commenceront commencer VER 436.83 421.89 1.02 0.61 ind:fut:3p; +commences commencer VER 436.83 421.89 16.10 2.91 ind:pre:2s;sub:pre:2s; +commencez commencer VER 436.83 421.89 17.43 2.36 imp:pre:2p;ind:pre:2p; +commenciez commencer VER 436.83 421.89 0.91 0.34 ind:imp:2p; +commencions commencer VER 436.83 421.89 0.49 1.69 ind:imp:1p; +commencèrent commencer VER 436.83 421.89 0.88 9.39 ind:pas:3p; +commencé commencer VER m s 436.83 421.89 102.62 73.99 par:pas;par:pas;par:pas; +commencée commencer VER f s 436.83 421.89 1.64 4.32 par:pas; +commencées commencer VER f p 436.83 421.89 0.05 0.74 par:pas; +commencés commencer VER m p 436.83 421.89 0.09 0.88 par:pas; +commensal commensal NOM m s 0.02 0.88 0.00 0.27 +commensalisme commensalisme NOM m s 0.00 0.07 0.00 0.07 +commensaux commensal NOM m p 0.02 0.88 0.02 0.61 +commensurable commensurable ADJ s 0.00 0.14 0.00 0.07 +commensurables commensurable ADJ p 0.00 0.14 0.00 0.07 +comment comment CON 558.33 241.35 558.33 241.35 +commenta commenter VER 2.70 19.93 0.04 3.04 ind:pas:3s; +commentai commenter VER 2.70 19.93 0.00 0.14 ind:pas:1s; +commentaient commenter VER 2.70 19.93 0.00 0.81 ind:imp:3p; +commentaire commentaire NOM m s 13.94 20.81 8.21 8.51 +commentaires commentaire NOM m p 13.94 20.81 5.73 12.30 +commentais commenter VER 2.70 19.93 0.01 0.20 ind:imp:1s;ind:imp:2s; +commentait commenter VER 2.70 19.93 0.00 3.45 ind:imp:3s; +commentant commenter VER 2.70 19.93 0.20 1.49 par:pre; +commentateur commentateur NOM m s 0.61 1.89 0.25 0.68 +commentateurs commentateur NOM m p 0.61 1.89 0.32 1.22 +commentatrice commentateur NOM f s 0.61 1.89 0.04 0.00 +commente commenter VER 2.70 19.93 0.17 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +commentent commenter VER 2.70 19.93 0.01 0.68 ind:pre:3p; +commenter commenter VER 2.70 19.93 1.40 3.51 inf; +commentera commenter VER 2.70 19.93 0.01 0.07 ind:fut:3s; +commenterai commenter VER 2.70 19.93 0.01 0.07 ind:fut:1s; +commenterait commenter VER 2.70 19.93 0.01 0.00 cnd:pre:3s; +commentez commenter VER 2.70 19.93 0.52 0.00 imp:pre:2p;ind:pre:2p; +commença commencer VER 436.83 421.89 3.95 51.35 ind:pas:3s; +commençai commencer VER 436.83 421.89 0.44 6.96 ind:pas:1s; +commençaient commencer VER 436.83 421.89 0.93 20.20 ind:imp:3p; +commençais commencer VER 436.83 421.89 6.38 14.73 ind:imp:1s;ind:imp:2s; +commençait commencer VER 436.83 421.89 7.69 74.66 ind:imp:3s; +commençant commencer VER 436.83 421.89 2.76 8.04 par:pre; +commençante commençant ADJ f s 0.00 1.15 0.00 0.74 +commençantes commençant ADJ f p 0.00 1.15 0.00 0.07 +commençants commençant ADJ m p 0.00 1.15 0.00 0.14 +commenças commencer VER 436.83 421.89 0.00 0.14 ind:pas:2s; +commençâmes commencer VER 436.83 421.89 0.02 0.61 ind:pas:1p; +commençons commencer VER 436.83 421.89 15.20 2.30 imp:pre:1p;ind:pre:1p; +commençât commencer VER 436.83 421.89 0.00 0.88 sub:imp:3s; +commentions commenter VER 2.70 19.93 0.00 0.34 ind:imp:1p; +commenté commenter VER m s 2.70 19.93 0.08 1.42 par:pas; +commentée commenter VER f s 2.70 19.93 0.14 0.68 par:pas; +commentées commenter VER f p 2.70 19.93 0.01 0.47 par:pas; +commentés commenter VER m p 2.70 19.93 0.10 0.47 par:pas; +commerce commerce NOM m s 19.57 29.93 18.55 29.05 +commercent commercer VER 1.01 1.01 0.11 0.00 ind:pre:3p; +commercer commercer VER 1.01 1.01 0.27 0.20 inf; +commerces commerce NOM m p 19.57 29.93 1.01 0.88 +commercial commercial ADJ m s 13.13 9.73 8.47 4.12 +commerciale commercial ADJ f s 13.13 9.73 2.39 2.77 +commercialement commercialement ADV 0.16 0.27 0.16 0.27 +commerciales commercial ADJ f p 13.13 9.73 1.03 1.55 +commercialisable commercialisable ADJ s 0.02 0.00 0.02 0.00 +commercialisation commercialisation NOM f s 0.15 0.41 0.15 0.41 +commercialiser commercialiser VER 0.47 0.20 0.18 0.14 inf; +commercialisera commercialiser VER 0.47 0.20 0.01 0.00 ind:fut:3s; +commercialisé commercialiser VER m s 0.47 0.20 0.28 0.07 par:pas; +commerciaux commercial ADJ m p 13.13 9.73 1.24 1.28 +commerciez commercer VER 1.01 1.01 0.01 0.00 ind:imp:2p; +commercé commercer VER m s 1.01 1.01 0.08 0.07 par:pas; +commerçait commercer VER 1.01 1.01 0.01 0.20 ind:imp:3s; +commerçant commerçant NOM m s 4.34 16.28 1.54 4.19 +commerçante commerçant NOM f s 4.34 16.28 0.11 1.28 +commerçantes commerçant ADJ f p 0.99 2.57 0.02 0.20 +commerçants commerçant NOM m p 4.34 16.28 2.69 10.81 +commerçons commercer VER 1.01 1.01 0.00 0.07 ind:pre:1p; +commet commettre VER 47.45 37.16 3.12 1.62 ind:pre:3s; +commets commettre VER 47.45 37.16 0.97 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +commettaient commettre VER 47.45 37.16 0.05 0.47 ind:imp:3p; +commettais commettre VER 47.45 37.16 0.06 0.41 ind:imp:1s;ind:imp:2s; +commettait commettre VER 47.45 37.16 0.09 0.88 ind:imp:3s; +commettant commettre VER 47.45 37.16 0.14 0.27 par:pre; +commettants commettant NOM m p 0.02 0.07 0.01 0.07 +commette commettre VER 47.45 37.16 0.17 0.27 sub:pre:1s;sub:pre:3s; +commettent commettre VER 47.45 37.16 0.90 0.95 ind:pre:3p; +commettes commettre VER 47.45 37.16 0.04 0.00 sub:pre:2s; +commettez commettre VER 47.45 37.16 0.82 0.00 imp:pre:2p;ind:pre:2p; +commettiez commettre VER 47.45 37.16 0.06 0.00 ind:imp:2p; +commettions commettre VER 47.45 37.16 0.00 0.14 ind:imp:1p; +commettons commettre VER 47.45 37.16 0.27 0.07 imp:pre:1p;ind:pre:1p; +commettra commettre VER 47.45 37.16 0.11 0.20 ind:fut:3s; +commettrai commettre VER 47.45 37.16 0.17 0.34 ind:fut:1s; +commettraient commettre VER 47.45 37.16 0.03 0.27 cnd:pre:3p; +commettrais commettre VER 47.45 37.16 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +commettrait commettre VER 47.45 37.16 0.23 0.27 cnd:pre:3s; +commettras commettre VER 47.45 37.16 0.33 0.07 ind:fut:2s; +commettre commettre VER 47.45 37.16 9.69 8.99 inf; +commettrez commettre VER 47.45 37.16 0.04 0.00 ind:fut:2p; +comminatoire comminatoire ADJ s 0.00 0.68 0.00 0.47 +comminatoires comminatoire ADJ p 0.00 0.68 0.00 0.20 +comminutive comminutif ADJ f s 0.01 0.00 0.01 0.00 +commirent commettre VER 47.45 37.16 0.01 0.27 ind:pas:3p; +commis_voyageur commis_voyageur NOM m s 0.05 0.41 0.05 0.20 +commis_voyageur commis_voyageur NOM m p 0.05 0.41 0.00 0.20 +commis commettre VER m 47.45 37.16 27.91 15.81 ind:pas:1s;par:pas;par:pas; +commise commettre VER f s 47.45 37.16 0.94 1.89 par:pas; +commises commettre VER f p 47.45 37.16 0.94 2.57 par:pas; +commissaire_adjoint commissaire_adjoint NOM s 0.02 0.07 0.02 0.07 +commissaire_priseur commissaire_priseur NOM m s 0.06 0.81 0.06 0.61 +commissaire commissaire NOM s 43.39 36.69 42.99 32.09 +commissaire_priseur commissaire_priseur NOM m p 0.06 0.81 0.00 0.20 +commissaires commissaire NOM p 43.39 36.69 0.40 4.59 +commissariat commissariat NOM m s 15.05 12.70 14.61 11.35 +commissariats commissariat NOM m p 15.05 12.70 0.44 1.35 +commission commission NOM f s 24.50 17.43 22.00 10.81 +commissionnaire commissionnaire NOM s 0.79 1.22 0.79 0.95 +commissionnaires commissionnaire NOM p 0.79 1.22 0.00 0.27 +commissionné commissionner VER m s 0.01 0.07 0.01 0.07 par:pas; +commissions commission NOM f p 24.50 17.43 2.50 6.62 +commissurale commissural ADJ f s 0.00 0.07 0.00 0.07 +commissure commissure NOM f s 0.02 5.41 0.00 2.43 +commissures commissure NOM f p 0.02 5.41 0.02 2.97 +commisération commisération NOM f s 0.14 2.50 0.14 2.50 +commit commettre VER 47.45 37.16 0.20 0.81 ind:pas:3s; +commode_toilette commode_toilette NOM f s 0.00 0.14 0.00 0.14 +commode commode ADJ s 4.96 17.16 4.43 15.74 +commodes commode ADJ p 4.96 17.16 0.52 1.42 +commodité commodité NOM f s 0.40 3.31 0.26 1.89 +commodités commodité NOM f p 0.40 3.31 0.14 1.42 +commodore commodore NOM m s 1.00 0.07 0.95 0.07 +commodores commodore NOM m p 1.00 0.07 0.04 0.00 +commodément commodément ADV 0.09 1.35 0.09 1.35 +commotion commotion NOM f s 2.24 0.81 2.03 0.68 +commotionnerait commotionner VER 0.14 0.54 0.00 0.07 cnd:pre:3s; +commotionné commotionner VER m s 0.14 0.54 0.05 0.20 par:pas; +commotionnée commotionner VER f s 0.14 0.54 0.08 0.14 par:pas; +commotionnés commotionner VER m p 0.14 0.54 0.01 0.14 par:pas; +commotions commotion NOM f p 2.24 0.81 0.21 0.14 +commère commère NOM f s 2.36 3.78 2.01 1.35 +commères commère NOM f p 2.36 3.78 0.34 2.43 +commuais commuer VER 0.47 0.54 0.00 0.07 ind:imp:1s; +commuant commuer VER 0.47 0.54 0.00 0.07 par:pre; +commuent commuer VER 0.47 0.54 0.01 0.00 ind:pre:3p; +commuer commuer VER 0.47 0.54 0.08 0.07 inf; +commémorait commémorer VER 0.64 1.69 0.00 0.14 ind:imp:3s; +commémorant commémorer VER 0.64 1.69 0.04 0.27 par:pre; +commémoratif commémoratif ADJ m s 0.84 1.35 0.16 0.47 +commémoratifs commémoratif ADJ m p 0.84 1.35 0.04 0.07 +commémoration commémoration NOM f s 0.45 1.22 0.42 0.95 +commémorations commémoration NOM f p 0.45 1.22 0.04 0.27 +commémorative commémoratif ADJ f s 0.84 1.35 0.56 0.61 +commémoratives commémoratif ADJ f p 0.84 1.35 0.08 0.20 +commémore commémorer VER 0.64 1.69 0.04 0.34 ind:pre:3s; +commémorent commémorer VER 0.64 1.69 0.01 0.14 ind:pre:3p; +commémorer commémorer VER 0.64 1.69 0.48 0.81 inf; +commémorions commémorer VER 0.64 1.69 0.01 0.00 ind:imp:1p; +commémorons commémorer VER 0.64 1.69 0.04 0.00 ind:pre:1p; +commémoré commémorer VER m s 0.64 1.69 0.01 0.00 par:pas; +commun commun NOM m s 13.98 22.77 13.84 21.49 +communal communal ADJ m s 1.58 9.12 0.53 6.35 +communale communal ADJ f s 1.58 9.12 0.71 2.36 +communales communal ADJ f p 1.58 9.12 0.03 0.41 +communard communard NOM m s 0.10 0.88 0.10 0.14 +communards communard NOM m p 0.10 0.88 0.00 0.74 +communautaire communautaire ADJ s 1.15 1.49 0.89 1.01 +communautaires communautaire ADJ p 1.15 1.49 0.26 0.47 +communauté communauté NOM f s 23.36 12.64 22.10 10.95 +communautés communauté NOM f p 23.36 12.64 1.25 1.69 +communaux communal ADJ m p 1.58 9.12 0.30 0.00 +commune commun ADJ f s 25.08 75.95 7.17 28.58 +communes commun ADJ f p 25.08 75.95 1.54 4.39 +communia communier VER 1.75 6.62 0.00 0.07 ind:pas:3s; +communiaient communier VER 1.75 6.62 0.00 0.54 ind:imp:3p; +communiais communier VER 1.75 6.62 0.11 0.34 ind:imp:1s; +communiait communier VER 1.75 6.62 0.02 0.41 ind:imp:3s; +communiant communiant NOM m s 0.28 3.18 0.14 0.81 +communiante communiant NOM f s 0.28 3.18 0.14 1.35 +communiantes communiant NOM f p 0.28 3.18 0.00 0.27 +communiants communiant NOM m p 0.28 3.18 0.01 0.74 +communiasse communier VER 1.75 6.62 0.00 0.07 sub:imp:1s; +communicabilité communicabilité NOM f s 0.00 0.07 0.00 0.07 +communicable communicable ADJ s 0.01 0.14 0.00 0.07 +communicables communicable ADJ m p 0.01 0.14 0.01 0.07 +communicant communicant NOM m s 0.03 0.00 0.01 0.00 +communicante communicant ADJ f s 0.10 0.61 0.03 0.00 +communicantes communicant ADJ f p 0.10 0.61 0.05 0.27 +communicants communicant ADJ m p 0.10 0.61 0.01 0.34 +communicateur communicateur NOM m s 0.49 0.00 0.44 0.00 +communicateurs communicateur NOM m p 0.49 0.00 0.05 0.00 +communicatif communicatif ADJ m s 0.16 2.70 0.12 1.15 +communicatifs communicatif ADJ m p 0.16 2.70 0.00 0.20 +communication communication NOM f s 18.17 26.82 12.88 17.23 +communications communication NOM f p 18.17 26.82 5.29 9.59 +communicative communicatif ADJ f s 0.16 2.70 0.04 1.35 +communie communier VER 1.75 6.62 0.42 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +communient communier VER 1.75 6.62 0.01 0.34 ind:pre:3p; +communier communier VER 1.75 6.62 0.95 2.36 inf; +communierons communier VER 1.75 6.62 0.00 0.07 ind:fut:1p; +communieront communier VER 1.75 6.62 0.00 0.07 ind:fut:3p; +communiez communier VER 1.75 6.62 0.04 0.14 imp:pre:2p;ind:pre:2p; +communion communion NOM f s 5.01 13.04 4.76 11.96 +communions communion NOM f p 5.01 13.04 0.26 1.08 +communiqua communiquer VER 19.09 26.49 0.00 1.08 ind:pas:3s; +communiquai communiquer VER 19.09 26.49 0.00 0.20 ind:pas:1s; +communiquaient communiquer VER 19.09 26.49 0.30 0.88 ind:imp:3p; +communiquais communiquer VER 19.09 26.49 0.07 0.14 ind:imp:1s;ind:imp:2s; +communiquait communiquer VER 19.09 26.49 0.39 2.36 ind:imp:3s; +communiquant communiquer VER 19.09 26.49 0.09 1.28 par:pre; +communiquassent communiquer VER 19.09 26.49 0.00 0.07 sub:imp:3p; +communique communiquer VER 19.09 26.49 3.17 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +communiquent communiquer VER 19.09 26.49 1.12 1.15 ind:pre:3p; +communiquer communiquer VER 19.09 26.49 10.78 10.61 inf;; +communiquera communiquer VER 19.09 26.49 0.21 0.00 ind:fut:3s; +communiquerai communiquer VER 19.09 26.49 0.08 0.00 ind:fut:1s; +communiqueraient communiquer VER 19.09 26.49 0.01 0.07 cnd:pre:3p; +communiquerait communiquer VER 19.09 26.49 0.00 0.14 cnd:pre:3s; +communiquerez communiquer VER 19.09 26.49 0.02 0.00 ind:fut:2p; +communiquerons communiquer VER 19.09 26.49 0.08 0.07 ind:fut:1p; +communiqueront communiquer VER 19.09 26.49 0.03 0.07 ind:fut:3p; +communiques communiquer VER 19.09 26.49 0.13 0.07 ind:pre:2s; +communiquez communiquer VER 19.09 26.49 0.82 0.07 imp:pre:2p;ind:pre:2p; +communiquiez communiquer VER 19.09 26.49 0.09 0.00 ind:imp:2p; +communiquions communiquer VER 19.09 26.49 0.02 0.20 ind:imp:1p; +communiquons communiquer VER 19.09 26.49 0.25 0.20 imp:pre:1p;ind:pre:1p; +communiquât communiquer VER 19.09 26.49 0.00 0.20 sub:imp:3s; +communiquèrent communiquer VER 19.09 26.49 0.00 0.14 ind:pas:3p; +communiqué communiqué NOM m s 4.29 8.99 3.85 7.03 +communiquée communiquer VER f s 19.09 26.49 0.18 0.88 par:pas; +communiquées communiquer VER f p 19.09 26.49 0.08 0.07 par:pas; +communiqués communiqué NOM m p 4.29 8.99 0.45 1.96 +communisant communisant ADJ m s 0.00 0.20 0.00 0.07 +communisants communisant ADJ m p 0.00 0.20 0.00 0.14 +communisme communisme NOM m s 4.29 9.66 4.29 9.66 +communiste communiste ADJ s 13.47 22.70 10.26 16.35 +communistes communiste NOM p 10.93 26.35 8.49 21.15 +communisée communiser VER f s 0.00 0.07 0.00 0.07 par:pas; +communièrent communier VER 1.75 6.62 0.00 0.07 ind:pas:3p; +communié communier VER m s 1.75 6.62 0.18 1.22 par:pas; +communs commun ADJ m p 25.08 75.95 3.83 10.81 +communément communément ADV 0.54 2.50 0.54 2.50 +commérage commérage NOM m s 1.54 1.28 0.18 0.14 +commérages commérage NOM m p 1.54 1.28 1.36 1.15 +commérait commérer VER 0.04 0.07 0.01 0.07 ind:imp:3s; +commérer commérer VER 0.04 0.07 0.03 0.00 inf; +commutateur commutateur NOM m s 0.48 2.77 0.38 2.57 +commutateurs commutateur NOM m p 0.48 2.77 0.10 0.20 +commutation commutation NOM f s 0.11 0.14 0.11 0.14 +commute commuter VER 0.08 0.00 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +commuter commuter VER 0.08 0.00 0.04 0.00 inf; +commué commuer VER m s 0.47 0.54 0.02 0.00 par:pas; +commuée commuer VER f s 0.47 0.54 0.36 0.34 par:pas; +comnène comnène ADJ m s 0.00 0.07 0.00 0.07 +compacité compacité NOM f s 0.00 0.20 0.00 0.20 +compact compact ADJ m s 1.56 10.47 0.62 3.24 +compactage compactage NOM m s 0.01 0.00 0.01 0.00 +compacte compact ADJ f s 1.56 10.47 0.81 4.66 +compactes compact ADJ f p 1.56 10.47 0.10 0.95 +compacteur compacteur NOM m s 0.13 0.00 0.10 0.00 +compacteurs compacteur NOM m p 0.13 0.00 0.03 0.00 +compacts compact NOM m p 0.15 0.27 0.04 0.00 +compacté compacter VER m s 0.15 0.00 0.01 0.00 par:pas; +compadre compadre NOM m s 0.42 0.00 0.37 0.00 +compadres compadre NOM m p 0.42 0.00 0.05 0.00 +compagne compagnon NOM f s 21.09 80.00 4.90 9.32 +compagnes compagne NOM f p 1.12 0.00 1.12 0.00 +compagnie compagnie NOM f s 73.78 97.16 68.90 90.88 +compagnies compagnie NOM f p 73.78 97.16 4.88 6.28 +compagnon compagnon NOM m s 21.09 80.00 8.40 34.26 +compagnonnage compagnonnage NOM m s 0.14 0.68 0.14 0.61 +compagnonnages compagnonnage NOM m p 0.14 0.68 0.00 0.07 +compagnonnes compagnon NOM f p 21.09 80.00 0.00 0.07 +compagnons compagnon NOM m p 21.09 80.00 7.79 28.85 +compara comparer VER 25.84 26.01 0.02 0.95 ind:pas:3s; +comparaît comparaître VER 2.52 3.31 0.19 0.14 ind:pre:3s; +comparaîtra comparaître VER 2.52 3.31 0.16 0.00 ind:fut:3s; +comparaîtrait comparaître VER 2.52 3.31 0.01 0.07 cnd:pre:3s; +comparaître comparaître VER 2.52 3.31 1.63 1.62 inf; +comparaîtrez comparaître VER 2.52 3.31 0.17 0.00 ind:fut:2p; +comparaîtrons comparaître VER 2.52 3.31 0.00 0.07 ind:fut:1p; +comparabilité comparabilité NOM f s 0.01 0.00 0.01 0.00 +comparable comparable ADJ s 2.04 6.08 1.93 4.73 +comparables comparable ADJ p 2.04 6.08 0.11 1.35 +comparai comparer VER 25.84 26.01 0.01 0.14 ind:pas:1s; +comparaient comparer VER 25.84 26.01 0.02 0.68 ind:imp:3p; +comparais comparaître VER 2.52 3.31 0.17 0.34 ind:pre:1s;ind:pre:2s; +comparaison comparaison NOM f s 5.25 13.72 4.84 11.35 +comparaisons comparaison NOM f p 5.25 13.72 0.41 2.36 +comparaissaient comparaître VER 2.52 3.31 0.00 0.27 ind:imp:3p; +comparaissait comparaître VER 2.52 3.31 0.01 0.00 ind:imp:3s; +comparaissant comparaître VER 2.52 3.31 0.00 0.14 par:pre; +comparaissent comparaître VER 2.52 3.31 0.02 0.00 ind:pre:3p; +comparaisses comparaître VER 2.52 3.31 0.01 0.00 sub:pre:2s; +comparaissons comparaître VER 2.52 3.31 0.01 0.00 ind:pre:1p; +comparait comparer VER 25.84 26.01 0.19 3.31 ind:imp:3s; +comparant comparer VER 25.84 26.01 0.56 1.22 par:pre; +comparateur comparateur NOM m s 0.03 0.00 0.03 0.00 +comparatif comparatif ADJ m s 0.50 0.47 0.14 0.07 +comparatifs comparatif ADJ m p 0.50 0.47 0.04 0.07 +comparative comparatif ADJ f s 0.50 0.47 0.18 0.27 +comparativement comparativement ADV 0.19 0.07 0.19 0.07 +comparatives comparatif ADJ f p 0.50 0.47 0.14 0.07 +compare comparer VER 25.84 26.01 4.00 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +comparent comparer VER 25.84 26.01 0.14 0.34 ind:pre:3p; +comparer comparer VER 25.84 26.01 9.01 8.11 inf; +comparera comparer VER 25.84 26.01 0.21 0.14 ind:fut:3s; +comparerai comparer VER 25.84 26.01 0.05 0.07 ind:fut:1s; +comparerais comparer VER 25.84 26.01 0.04 0.00 cnd:pre:1s; +comparerons comparer VER 25.84 26.01 0.36 0.00 ind:fut:1p; +compareront comparer VER 25.84 26.01 0.00 0.07 ind:fut:3p; +compares comparer VER 25.84 26.01 0.69 0.07 ind:pre:2s; +comparez comparer VER 25.84 26.01 1.60 0.20 imp:pre:2p;ind:pre:2p; +compariez comparer VER 25.84 26.01 0.07 0.07 ind:imp:2p; +comparions comparer VER 25.84 26.01 0.02 0.27 ind:imp:1p; +comparoir comparoir VER 0.01 0.00 0.01 0.00 inf; +comparons comparer VER 25.84 26.01 0.17 0.14 imp:pre:1p;ind:pre:1p; +comparse comparse NOM s 0.18 1.76 0.13 0.54 +comparses comparse NOM p 0.18 1.76 0.05 1.22 +compartiment compartiment NOM m s 6.73 13.58 5.58 10.54 +compartimentage compartimentage NOM m s 0.00 0.07 0.00 0.07 +compartimentaient compartimenter VER 0.10 0.27 0.00 0.07 ind:imp:3p; +compartimentant compartimenter VER 0.10 0.27 0.01 0.07 par:pre; +compartimente compartimenter VER 0.10 0.27 0.01 0.00 imp:pre:2s; +compartimenter compartimenter VER 0.10 0.27 0.07 0.00 inf; +compartiments compartiment NOM m p 6.73 13.58 1.15 3.04 +compartimenté compartimenté ADJ m s 0.02 0.20 0.02 0.14 +compartimentée compartimenter VER f s 0.10 0.27 0.00 0.07 par:pas; +comparé comparer VER m s 25.84 26.01 6.47 2.36 par:pas; +comparu comparaître VER m s 2.52 3.31 0.13 0.41 par:pas; +comparée comparer VER f s 25.84 26.01 1.50 2.09 par:pas; +comparées comparer VER f p 25.84 26.01 0.35 0.68 par:pas; +comparés comparer VER m p 25.84 26.01 0.28 1.28 par:pas; +comparut comparaître VER 2.52 3.31 0.02 0.27 ind:pas:3s; +comparution comparution NOM f s 0.34 0.34 0.34 0.34 +compas compas NOM m 1.50 2.84 1.50 2.84 +compassion compassion NOM f s 10.15 7.30 10.15 7.30 +compassé compassé ADJ m s 0.00 1.76 0.00 0.88 +compassée compassé ADJ f s 0.00 1.76 0.00 0.27 +compassées compassé ADJ f p 0.00 1.76 0.00 0.14 +compassés compassé ADJ m p 0.00 1.76 0.00 0.47 +compati compatir VER m s 3.46 2.57 0.04 0.07 par:pas; +compatibilité compatibilité NOM f s 0.40 0.00 0.40 0.00 +compatible compatible ADJ s 2.52 2.09 1.25 1.62 +compatibles compatible ADJ p 2.52 2.09 1.27 0.47 +compatie compatir VER f s 3.46 2.57 0.06 0.00 par:pas; +compatir compatir VER 3.46 2.57 0.47 0.54 inf; +compatira compatir VER 3.46 2.57 0.02 0.00 ind:fut:3s; +compatirait compatir VER 3.46 2.57 0.03 0.00 cnd:pre:3s; +compatirent compatir VER 3.46 2.57 0.00 0.07 ind:pas:3p; +compatis compatir VER m p 3.46 2.57 2.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +compatissaient compatir VER 3.46 2.57 0.00 0.07 ind:imp:3p; +compatissais compatir VER 3.46 2.57 0.05 0.20 ind:imp:1s;ind:imp:2s; +compatissait compatir VER 3.46 2.57 0.02 0.14 ind:imp:3s; +compatissant compatissant ADJ m s 1.59 3.18 1.01 1.35 +compatissante compatissant ADJ f s 1.59 3.18 0.39 0.88 +compatissantes compatissant ADJ f p 1.59 3.18 0.07 0.20 +compatissants compatissant ADJ m p 1.59 3.18 0.11 0.74 +compatisse compatir VER 3.46 2.57 0.02 0.00 sub:pre:1s;sub:pre:3s; +compatissent compatir VER 3.46 2.57 0.01 0.14 ind:pre:3p; +compatissez compatir VER 3.46 2.57 0.10 0.14 imp:pre:2p;ind:pre:2p; +compatissons compatir VER 3.46 2.57 0.14 0.07 imp:pre:1p;ind:pre:1p; +compatit compatir VER 3.46 2.57 0.41 0.54 ind:pre:3s;ind:pas:3s; +compatriote compatriote NOM s 4.76 9.05 1.48 2.23 +compatriotes compatriote NOM p 4.76 9.05 3.29 6.82 +compendium compendium NOM m s 0.01 0.07 0.01 0.00 +compendiums compendium NOM m p 0.01 0.07 0.00 0.07 +compensa compenser VER 4.59 9.32 0.01 0.20 ind:pas:3s; +compensaient compenser VER 4.59 9.32 0.01 0.54 ind:imp:3p; +compensais compenser VER 4.59 9.32 0.00 0.07 ind:imp:1s; +compensait compenser VER 4.59 9.32 0.04 1.08 ind:imp:3s; +compensant compenser VER 4.59 9.32 0.02 0.41 par:pre; +compensateur compensateur ADJ m s 0.12 0.00 0.05 0.00 +compensateurs compensateur ADJ m p 0.12 0.00 0.06 0.00 +compensation compensation NOM f s 3.33 5.81 2.83 4.39 +compensations compensation NOM f p 3.33 5.81 0.49 1.42 +compensatoire compensatoire ADJ s 0.02 0.34 0.02 0.34 +compense compenser VER 4.59 9.32 0.99 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compensent compenser VER 4.59 9.32 0.26 0.20 ind:pre:3p; +compenser compenser VER 4.59 9.32 2.06 3.99 inf; +compensera compenser VER 4.59 9.32 0.32 0.00 ind:fut:3s; +compenserais compenser VER 4.59 9.32 0.01 0.00 cnd:pre:2s; +compenserait compenser VER 4.59 9.32 0.17 0.41 cnd:pre:3s; +compensez compenser VER 4.59 9.32 0.28 0.00 imp:pre:2p;ind:pre:2p; +compensât compenser VER 4.59 9.32 0.00 0.14 sub:imp:3s; +compensèrent compenser VER 4.59 9.32 0.00 0.07 ind:pas:3p; +compensé compenser VER m s 4.59 9.32 0.31 0.61 par:pas; +compensée compenser VER f s 4.59 9.32 0.06 0.68 par:pas; +compensées compensé ADJ f p 0.21 0.95 0.04 0.61 +compensés compensé ADJ m p 0.21 0.95 0.13 0.00 +compil compil NOM f s 0.19 0.00 0.19 0.00 +compilant compiler VER 0.58 0.54 0.14 0.27 par:pre; +compilateur compilateur NOM m s 0.08 0.14 0.08 0.14 +compilation compilation NOM f s 0.29 0.47 0.26 0.34 +compilations compilation NOM f p 0.29 0.47 0.03 0.14 +compile compiler VER 0.58 0.54 0.09 0.07 imp:pre:2s;ind:pre:3s; +compiler compiler VER 0.58 0.54 0.23 0.00 inf; +compilons compiler VER 0.58 0.54 0.01 0.00 ind:pre:1p; +compilé compiler VER m s 0.58 0.54 0.11 0.07 par:pas; +compilées compiler VER f p 0.58 0.54 0.02 0.14 par:pas; +compissait compisser VER 0.01 0.27 0.00 0.07 ind:imp:3s; +compisse compisser VER 0.01 0.27 0.01 0.07 ind:pre:1s;ind:pre:3s; +compisser compisser VER 0.01 0.27 0.00 0.07 inf; +compissé compisser VER m s 0.01 0.27 0.00 0.07 par:pas; +complaît complaire VER 0.93 4.19 0.16 0.47 ind:pre:3s; +complainte complainte NOM f s 0.66 2.30 0.61 1.62 +complaintes complainte NOM f p 0.66 2.30 0.04 0.68 +complairait complaire VER 0.93 4.19 0.00 0.14 cnd:pre:3s; +complaire complaire VER 0.93 4.19 0.19 1.08 inf; +complais complaire VER 0.93 4.19 0.34 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +complaisaient complaire VER 0.93 4.19 0.00 0.14 ind:imp:3p; +complaisais complaire VER 0.93 4.19 0.00 0.14 ind:imp:1s; +complaisait complaire VER 0.93 4.19 0.00 0.68 ind:imp:3s; +complaisamment complaisamment ADV 0.01 3.18 0.01 3.18 +complaisance complaisance NOM f s 0.94 11.22 0.80 10.00 +complaisances complaisance NOM f p 0.94 11.22 0.14 1.22 +complaisant complaisant ADJ m s 0.61 4.93 0.42 1.82 +complaisante complaisant ADJ f s 0.61 4.93 0.03 1.96 +complaisantes complaisant ADJ f p 0.61 4.93 0.00 0.27 +complaisants complaisant ADJ m p 0.61 4.93 0.16 0.88 +complaise complaire VER 0.93 4.19 0.00 0.14 sub:pre:3s; +complaisent complaire VER 0.93 4.19 0.02 0.20 ind:pre:3p; +complaisez complaire VER 0.93 4.19 0.06 0.07 ind:pre:2p; +complaisiez complaire VER 0.93 4.19 0.00 0.14 ind:imp:2p; +complet_veston complet_veston NOM m s 0.00 0.54 0.00 0.54 +complet complet ADJ m s 29.19 44.12 17.76 20.61 +complets complet ADJ m p 29.19 44.12 1.68 2.03 +complexait complexer VER 0.42 0.68 0.00 0.07 ind:imp:3s; +complexe complexe ADJ s 8.62 8.51 6.70 5.68 +complexer complexer VER 0.42 0.68 0.17 0.14 inf; +complexes complexe ADJ p 8.62 8.51 1.92 2.84 +complexion complexion NOM f s 0.02 0.68 0.02 0.68 +complexité complexité NOM f s 1.28 2.64 0.92 2.64 +complexités complexité NOM f p 1.28 2.64 0.36 0.00 +complexé complexer VER m s 0.42 0.68 0.11 0.14 par:pas; +complexée complexé ADJ f s 0.12 0.41 0.05 0.00 +complexés complexer VER m p 0.42 0.68 0.03 0.00 par:pas; +complication complication NOM f s 4.59 8.38 1.01 3.24 +complications complication NOM f p 4.59 8.38 3.58 5.14 +complice complice NOM s 14.41 14.73 9.22 7.64 +complices complice NOM p 14.41 14.73 5.19 7.09 +complicité complicité NOM f s 5.61 24.46 5.20 22.03 +complicités complicité NOM f p 5.61 24.46 0.42 2.43 +complies complies NOM f p 0.09 0.95 0.09 0.95 +compliment compliment NOM m s 17.18 15.00 8.29 5.54 +complimenta complimenter VER 1.22 1.55 0.00 0.07 ind:pas:3s; +complimentaient complimenter VER 1.22 1.55 0.00 0.14 ind:imp:3p; +complimentais complimenter VER 1.22 1.55 0.04 0.07 ind:imp:1s; +complimentait complimenter VER 1.22 1.55 0.03 0.20 ind:imp:3s; +complimentant complimenter VER 1.22 1.55 0.03 0.07 par:pre; +complimente complimenter VER 1.22 1.55 0.25 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +complimentent complimenter VER 1.22 1.55 0.01 0.07 ind:pre:3p; +complimenter complimenter VER 1.22 1.55 0.68 0.20 ind:pre:2p;inf; +complimenteraient complimenter VER 1.22 1.55 0.00 0.14 cnd:pre:3p; +complimentez complimenter VER 1.22 1.55 0.05 0.00 imp:pre:2p; +complimentât complimenter VER 1.22 1.55 0.00 0.07 sub:imp:3s; +compliments compliment NOM m p 17.18 15.00 8.89 9.46 +complimenté complimenter VER m s 1.22 1.55 0.08 0.14 par:pas; +complimentée complimenter VER f s 1.22 1.55 0.05 0.20 par:pas; +compliqua compliquer VER 22.30 18.85 0.11 0.14 ind:pas:3s; +compliquaient compliquer VER 22.30 18.85 0.15 0.95 ind:imp:3p; +compliquais compliquer VER 22.30 18.85 0.00 0.07 ind:imp:1s; +compliquait compliquer VER 22.30 18.85 0.02 0.81 ind:imp:3s; +compliquant compliquer VER 22.30 18.85 0.00 0.47 par:pre; +complique compliquer VER 22.30 18.85 4.74 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compliquent compliquer VER 22.30 18.85 0.40 0.47 ind:pre:3p; +compliquer compliquer VER 22.30 18.85 1.91 2.70 inf; +compliquera compliquer VER 22.30 18.85 0.02 0.07 ind:fut:3s; +compliquerai compliquer VER 22.30 18.85 0.11 0.00 ind:fut:1s; +compliquerait compliquer VER 22.30 18.85 0.02 0.34 cnd:pre:3s; +compliques compliquer VER 22.30 18.85 0.68 0.41 ind:pre:2s; +compliquez compliquer VER 22.30 18.85 0.90 0.14 imp:pre:2p;ind:pre:2p; +compliquions compliquer VER 22.30 18.85 0.00 0.07 ind:imp:1p; +compliquons compliquer VER 22.30 18.85 0.51 0.14 imp:pre:1p;ind:pre:1p; +compliquèrent compliquer VER 22.30 18.85 0.00 0.07 ind:pas:3p; +compliqué compliqué ADJ m s 23.51 24.46 17.17 12.91 +compliquée compliqué ADJ f s 23.51 24.46 4.44 5.07 +compliquées compliqué ADJ f p 23.51 24.46 0.95 3.04 +compliqués compliqué ADJ m p 23.51 24.46 0.94 3.45 +complot complot NOM m s 10.45 6.49 9.82 4.80 +complotai comploter VER 3.68 2.50 0.00 0.07 ind:pas:1s; +complotaient comploter VER 3.68 2.50 0.26 0.14 ind:imp:3p; +complotais comploter VER 3.68 2.50 0.01 0.00 ind:imp:2s; +complotait comploter VER 3.68 2.50 0.04 0.47 ind:imp:3s; +complotant comploter VER 3.68 2.50 0.19 0.14 par:pre; +complote comploter VER 3.68 2.50 0.61 0.47 ind:pre:1s;ind:pre:3s; +complotent comploter VER 3.68 2.50 0.32 0.14 ind:pre:3p; +comploter comploter VER 3.68 2.50 0.71 0.54 ind:pre:2p;inf; +comploteraient comploter VER 3.68 2.50 0.01 0.00 cnd:pre:3p; +comploterait comploter VER 3.68 2.50 0.01 0.00 cnd:pre:3s; +complotes comploter VER 3.68 2.50 0.20 0.00 ind:pre:2s; +comploteur comploteur NOM m s 0.19 0.34 0.16 0.14 +comploteurs comploteur NOM m p 0.19 0.34 0.01 0.20 +comploteuse comploteur NOM f s 0.19 0.34 0.01 0.00 +complotez comploter VER 3.68 2.50 0.63 0.14 imp:pre:2p;ind:pre:2p; +complotiez comploter VER 3.68 2.50 0.15 0.00 ind:imp:2p; +complotons comploter VER 3.68 2.50 0.00 0.14 ind:pre:1p; +complots complot NOM m p 10.45 6.49 0.63 1.69 +complotèrent comploter VER 3.68 2.50 0.01 0.00 ind:pas:3p; +comploté comploter VER m s 3.68 2.50 0.53 0.27 par:pas; +complète complet ADJ f s 29.19 44.12 8.84 18.18 +complètement complètement ADV 105.33 81.49 105.33 81.49 +complètements complètement NOM m p 0.16 0.00 0.06 0.00 +complètent compléter VER 4.89 14.39 0.37 0.41 ind:pre:3p; +complètes complet ADJ f p 29.19 44.12 0.92 3.31 +complu complu ADJ m s 0.00 0.47 0.00 0.47 +complément complément NOM m s 1.25 3.51 0.96 2.77 +complémentaire complémentaire ADJ s 0.81 3.51 0.47 1.55 +complémentairement complémentairement ADV 0.00 0.14 0.00 0.14 +complémentaires complémentaire ADJ p 0.81 3.51 0.34 1.96 +complémentarité complémentarité NOM f s 0.03 0.14 0.03 0.14 +compléments complément NOM m p 1.25 3.51 0.28 0.74 +complus complaire VER 0.93 4.19 0.00 0.07 ind:pas:1s; +complut complaire VER 0.93 4.19 0.00 0.14 ind:pas:3s; +compléta compléter VER 4.89 14.39 0.00 1.69 ind:pas:3s; +complétai compléter VER 4.89 14.39 0.00 0.14 ind:pas:1s; +complétaient compléter VER 4.89 14.39 0.01 1.15 ind:imp:3p; +complétais compléter VER 4.89 14.39 0.01 0.07 ind:imp:1s; +complétait compléter VER 4.89 14.39 0.21 1.49 ind:imp:3s; +complétant compléter VER 4.89 14.39 0.03 0.54 par:pre; +compléter compléter VER 4.89 14.39 2.02 4.46 inf; +complétera compléter VER 4.89 14.39 0.02 0.20 ind:fut:3s; +compléterai compléter VER 4.89 14.39 0.02 0.00 ind:fut:1s; +compléteraient compléter VER 4.89 14.39 0.00 0.14 cnd:pre:3p; +compléterait compléter VER 4.89 14.39 0.01 0.14 cnd:pre:3s; +compléteras compléter VER 4.89 14.39 0.00 0.07 ind:fut:2s; +compléterez compléter VER 4.89 14.39 0.01 0.07 ind:fut:2p; +compléteront compléter VER 4.89 14.39 0.01 0.00 ind:fut:3p; +complétez compléter VER 4.89 14.39 0.18 0.00 imp:pre:2p;ind:pre:2p; +complétiez compléter VER 4.89 14.39 0.01 0.07 ind:imp:2p; +complétons compléter VER 4.89 14.39 0.14 0.00 imp:pre:1p;ind:pre:1p; +complétèrent compléter VER 4.89 14.39 0.00 0.14 ind:pas:3p; +complété compléter VER m s 4.89 14.39 0.45 1.42 par:pas; +complétude complétude NOM f s 0.14 0.07 0.14 0.07 +complétée compléter VER f s 4.89 14.39 0.11 0.68 par:pas; +complétées compléter VER f p 4.89 14.39 0.01 0.34 par:pas; +complétés compléter VER m p 4.89 14.39 0.12 0.20 par:pas; +compo compo NOM f s 0.06 1.35 0.06 1.35 +componction componction NOM f s 0.01 1.76 0.01 1.76 +components component NOM m p 0.01 0.07 0.01 0.07 +comporta comporter VER 24.59 30.54 0.41 0.47 ind:pas:3s; +comportai comporter VER 24.59 30.54 0.01 0.07 ind:pas:1s; +comportaient comporter VER 24.59 30.54 0.21 1.69 ind:imp:3p; +comportais comporter VER 24.59 30.54 0.23 0.14 ind:imp:1s;ind:imp:2s; +comportait comporter VER 24.59 30.54 1.28 7.77 ind:imp:3s; +comportant comporter VER 24.59 30.54 0.23 1.22 par:pre; +comportassent comporter VER 24.59 30.54 0.00 0.07 sub:imp:3p; +comporte comporter VER 24.59 30.54 7.05 7.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +comportement comportement NOM m s 20.94 17.03 19.68 15.27 +comportemental comportemental ADJ m s 0.79 0.00 0.21 0.00 +comportementale comportemental ADJ f s 0.79 0.00 0.40 0.00 +comportementales comportemental ADJ f p 0.79 0.00 0.10 0.00 +comportementalisme comportementalisme NOM m s 0.00 0.07 0.00 0.07 +comportementaliste comportementaliste ADJ m s 0.04 0.07 0.04 0.07 +comportementaux comportemental ADJ m p 0.79 0.00 0.08 0.00 +comportements comportement NOM m p 20.94 17.03 1.25 1.76 +comportent comporter VER 24.59 30.54 1.26 1.69 ind:pre:3p; +comporter comporter VER 24.59 30.54 6.02 6.49 inf; +comportera comporter VER 24.59 30.54 0.18 0.27 ind:fut:3s; +comporterai comporter VER 24.59 30.54 0.03 0.07 ind:fut:1s; +comporteraient comporter VER 24.59 30.54 0.02 0.20 cnd:pre:3p; +comporterais comporter VER 24.59 30.54 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +comporterait comporter VER 24.59 30.54 0.02 1.08 cnd:pre:3s; +comporterez comporter VER 24.59 30.54 0.05 0.00 ind:fut:2p; +comporteriez comporter VER 24.59 30.54 0.13 0.00 cnd:pre:2p; +comporterions comporter VER 24.59 30.54 0.01 0.07 cnd:pre:1p; +comporteront comporter VER 24.59 30.54 0.02 0.07 ind:fut:3p; +comportes comporter VER 24.59 30.54 2.20 0.07 ind:pre:2s;sub:pre:2s; +comportez comporter VER 24.59 30.54 1.63 0.07 imp:pre:2p;ind:pre:2p; +comportiez comporter VER 24.59 30.54 0.17 0.00 ind:imp:2p; +comportions comporter VER 24.59 30.54 0.01 0.14 ind:imp:1p; +comportons comporter VER 24.59 30.54 0.26 0.00 imp:pre:1p;ind:pre:1p; +comportât comporter VER 24.59 30.54 0.00 0.41 sub:imp:3s; +comporté comporter VER m s 24.59 30.54 1.85 0.68 par:pas; +comportée comporter VER f s 24.59 30.54 0.76 0.47 par:pas; +comportés comporter VER m p 24.59 30.54 0.53 0.07 par:pas; +composa composer VER 14.07 47.57 0.12 2.50 ind:pas:3s; +composai composer VER 14.07 47.57 0.00 0.41 ind:pas:1s; +composaient composer VER 14.07 47.57 0.14 4.39 ind:imp:3p; +composais composer VER 14.07 47.57 0.04 0.34 ind:imp:1s;ind:imp:2s; +composait composer VER 14.07 47.57 0.27 5.54 ind:imp:3s; +composant composant NOM m s 2.81 1.49 0.96 0.07 +composante composant ADJ f s 0.60 0.34 0.15 0.07 +composantes composant NOM f p 2.81 1.49 0.39 0.68 +composants composant NOM m p 2.81 1.49 1.35 0.27 +compose composer VER 14.07 47.57 3.44 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +composent composer VER 14.07 47.57 0.47 3.11 ind:pre:3p; +composer composer VER 14.07 47.57 2.87 7.30 inf; +composera composer VER 14.07 47.57 0.04 0.27 ind:fut:3s; +composerai composer VER 14.07 47.57 0.12 0.00 ind:fut:1s; +composerait composer VER 14.07 47.57 0.01 0.20 cnd:pre:3s; +composeront composer VER 14.07 47.57 0.11 0.07 ind:fut:3p; +composes composer VER 14.07 47.57 0.20 0.07 ind:pre:2s; +composeur composeur NOM m s 0.69 0.00 0.69 0.00 +composez composer VER 14.07 47.57 0.86 0.14 imp:pre:2p;ind:pre:2p; +composiez composer VER 14.07 47.57 0.03 0.00 ind:imp:2p; +composions composer VER 14.07 47.57 0.00 0.14 ind:imp:1p; +composite composite ADJ s 0.16 1.01 0.14 0.88 +composites composite NOM m p 0.10 0.00 0.04 0.00 +compositeur compositeur NOM m s 4.32 3.38 3.62 2.91 +compositeurs compositeur NOM m p 4.32 3.38 0.61 0.47 +composition composition NOM f s 3.99 17.43 3.56 14.59 +compositions composition NOM f p 3.99 17.43 0.43 2.84 +compositrice compositeur NOM f s 4.32 3.38 0.09 0.00 +composons composer VER 14.07 47.57 0.09 0.14 imp:pre:1p;ind:pre:1p; +compost compost NOM m s 0.15 0.14 0.15 0.14 +composter composter VER 0.14 0.34 0.00 0.20 inf; +composteur composteur NOM m s 0.00 0.54 0.00 0.47 +composteurs composteur NOM m p 0.00 0.54 0.00 0.07 +compostez composter VER 0.14 0.34 0.00 0.07 imp:pre:2p; +composèrent composer VER 14.07 47.57 0.00 0.14 ind:pas:3p; +composté composter VER m s 0.14 0.34 0.14 0.07 par:pas; +composé composer VER m s 14.07 47.57 3.34 9.19 par:pas; +composée composer VER f s 14.07 47.57 1.38 4.19 par:pas; +composées composer VER f p 14.07 47.57 0.12 1.01 par:pas; +composés composé NOM m p 0.70 1.08 0.35 0.14 +compote compote NOM f s 3.01 3.31 3.00 2.77 +compotes compote NOM f p 3.01 3.31 0.01 0.54 +compotier compotier NOM m s 0.00 0.68 0.00 0.61 +compotiers compotier NOM m p 0.00 0.68 0.00 0.07 +compound compound ADJ 0.02 0.00 0.02 0.00 +comprîmes comprendre VER 893.40 614.80 0.02 0.20 ind:pas:1p; +comprît comprendre VER 893.40 614.80 0.01 2.64 sub:imp:3s; +comprador comprador NOM m s 0.02 0.00 0.02 0.00 +comprenaient comprendre VER 893.40 614.80 0.61 5.20 ind:imp:3p; +comprenais comprendre VER 893.40 614.80 5.34 24.12 ind:imp:1s;ind:imp:2s; +comprenait comprendre VER 893.40 614.80 4.69 41.28 ind:imp:3s; +comprenant comprendre VER 893.40 614.80 0.55 9.32 par:pre; +comprend comprendre VER 893.40 614.80 41.39 31.82 ind:pre:3s; +comprendra comprendre VER 893.40 614.80 7.10 4.32 ind:fut:3s; +comprendrai comprendre VER 893.40 614.80 2.63 1.42 ind:fut:1s; +comprendraient comprendre VER 893.40 614.80 0.90 1.01 cnd:pre:3p; +comprendrais comprendre VER 893.40 614.80 4.97 2.50 cnd:pre:1s;cnd:pre:2s; +comprendrait comprendre VER 893.40 614.80 3.20 5.00 cnd:pre:3s; +comprendras comprendre VER 893.40 614.80 6.82 2.97 ind:fut:2s; +comprendre comprendre VER 893.40 614.80 135.13 148.51 inf; +comprendrez comprendre VER 893.40 614.80 4.48 2.23 ind:fut:2p; +comprendriez comprendre VER 893.40 614.80 1.52 0.27 cnd:pre:2p; +comprendrions comprendre VER 893.40 614.80 0.04 0.07 cnd:pre:1p; +comprendrons comprendre VER 893.40 614.80 0.42 0.14 ind:fut:1p; +comprendront comprendre VER 893.40 614.80 2.84 1.15 ind:fut:3p; +comprends comprendre VER 893.40 614.80 368.53 103.18 imp:pre:2s;ind:pre:1s;ind:pre:2s; +comprenette comprenette NOM f s 0.03 0.14 0.03 0.14 +comprenez comprendre VER 893.40 614.80 68.86 28.18 imp:pre:2p;ind:pre:2p; +compreniez comprendre VER 893.40 614.80 2.44 1.15 ind:imp:2p; +comprenions comprendre VER 893.40 614.80 0.33 1.82 ind:imp:1p; +comprenne comprendre VER 893.40 614.80 5.98 5.54 sub:pre:1s;sub:pre:3s; +comprennent comprendre VER 893.40 614.80 12.53 8.85 ind:pre:3p;sub:pre:3p; +comprennes comprendre VER 893.40 614.80 4.22 1.15 sub:pre:2s; +comprenons comprendre VER 893.40 614.80 3.83 2.23 imp:pre:1p;ind:pre:1p; +compresse compresse NOM f s 1.86 2.03 0.76 0.68 +compresser compresser VER 0.51 0.61 0.16 0.20 inf; +compresses compresse NOM f p 1.86 2.03 1.09 1.35 +compresseur compresseur NOM m s 0.88 0.14 0.31 0.07 +compresseurs compresseur NOM m p 0.88 0.14 0.57 0.07 +compressible compressible ADJ f s 0.01 0.14 0.01 0.00 +compressibles compressible ADJ p 0.01 0.14 0.00 0.14 +compressif compressif ADJ m s 0.07 0.00 0.07 0.00 +compression compression NOM f s 1.45 0.74 1.21 0.47 +compressions compression NOM f p 1.45 0.74 0.24 0.27 +compressé compresser VER m s 0.51 0.61 0.09 0.14 par:pas; +compressée compresser VER f s 0.51 0.61 0.17 0.07 par:pas; +compressées compressé ADJ f p 0.10 0.68 0.03 0.20 +compressés compressé ADJ m p 0.10 0.68 0.04 0.07 +comprima comprimer VER 1.15 3.99 0.14 0.20 ind:pas:3s; +comprimait comprimer VER 1.15 3.99 0.00 1.01 ind:imp:3s; +comprimant comprimer VER 1.15 3.99 0.00 0.61 par:pre; +comprime comprimer VER 1.15 3.99 0.16 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compriment comprimer VER 1.15 3.99 0.02 0.14 ind:pre:3p; +comprimer comprimer VER 1.15 3.99 0.20 0.61 inf; +comprimez comprimer VER 1.15 3.99 0.08 0.00 imp:pre:2p; +comprimèrent comprimer VER 1.15 3.99 0.00 0.07 ind:pas:3p; +comprimé comprimé NOM m s 4.27 3.99 1.62 1.35 +comprimée comprimé ADJ f s 0.55 1.82 0.03 0.27 +comprimées comprimer VER f p 1.15 3.99 0.01 0.14 par:pas; +comprimés comprimé NOM m p 4.27 3.99 2.65 2.64 +comprirent comprendre VER 893.40 614.80 0.14 1.69 ind:pas:3p; +compris comprendre VER m 893.40 614.80 198.16 136.62 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +comprise comprendre VER f s 893.40 614.80 3.32 2.91 par:pas; +comprises comprendre VER f p 893.40 614.80 0.66 0.41 par:pas; +comprisse comprendre VER 893.40 614.80 0.00 0.27 sub:imp:1s; +comprit comprendre VER 893.40 614.80 1.74 36.62 ind:pas:3s; +compromît compromettre VER 10.28 16.62 0.01 0.07 sub:imp:3s; +compromet compromettre VER 10.28 16.62 0.90 0.41 ind:pre:3s; +compromets compromettre VER 10.28 16.62 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +compromettaient compromettre VER 10.28 16.62 0.03 0.14 ind:imp:3p; +compromettait compromettre VER 10.28 16.62 0.02 1.15 ind:imp:3s; +compromettant compromettant ADJ m s 1.63 2.64 0.75 0.88 +compromettante compromettant ADJ f s 1.63 2.64 0.21 0.54 +compromettantes compromettant ADJ f p 1.63 2.64 0.32 0.47 +compromettants compromettant ADJ m p 1.63 2.64 0.35 0.74 +compromette compromettre VER 10.28 16.62 0.14 0.07 sub:pre:3s; +compromettent compromettre VER 10.28 16.62 0.06 0.27 ind:pre:3p; +compromettes compromettre VER 10.28 16.62 0.01 0.07 sub:pre:2s; +compromettez compromettre VER 10.28 16.62 0.27 0.07 imp:pre:2p;ind:pre:2p; +compromettiez compromettre VER 10.28 16.62 0.04 0.20 ind:imp:2p; +compromettrai compromettre VER 10.28 16.62 0.01 0.07 ind:fut:1s; +compromettrait compromettre VER 10.28 16.62 0.46 0.41 cnd:pre:3s; +compromettre compromettre VER 10.28 16.62 3.83 6.42 inf; +compromettrons compromettre VER 10.28 16.62 0.01 0.00 ind:fut:1p; +compromirent compromettre VER 10.28 16.62 0.00 0.07 ind:pas:3p; +compromis compromis NOM m 6.26 5.88 6.26 5.88 +compromise compromettre VER f s 10.28 16.62 1.08 1.82 par:pas; +compromises compromettre VER f p 10.28 16.62 0.21 0.41 par:pas; +compromission compromission NOM f s 0.29 1.62 0.16 0.34 +compromissions compromission NOM f p 0.29 1.62 0.14 1.28 +compromissoire compromissoire ADJ f s 0.01 0.00 0.01 0.00 +compromit compromettre VER 10.28 16.62 0.00 0.27 ind:pas:3s; +compréhensible compréhensible ADJ s 4.47 3.04 4.25 2.50 +compréhensibles compréhensible ADJ p 4.47 3.04 0.21 0.54 +compréhensif compréhensif ADJ m s 5.21 4.93 2.73 2.36 +compréhensifs compréhensif ADJ m p 5.21 4.93 0.72 0.68 +compréhension compréhension NOM f s 5.85 10.00 5.85 9.93 +compréhensions compréhension NOM f p 5.85 10.00 0.00 0.07 +compréhensive compréhensif ADJ f s 5.21 4.93 1.67 1.55 +compréhensives compréhensif ADJ f p 5.21 4.93 0.08 0.34 +compta compter VER 227.77 203.72 0.95 5.47 ind:pas:3s; +comptabilisait comptabiliser VER 0.40 1.28 0.00 0.20 ind:imp:3s; +comptabilisant comptabiliser VER 0.40 1.28 0.00 0.20 par:pre; +comptabilisation comptabilisation NOM f s 0.00 0.14 0.00 0.14 +comptabilise comptabiliser VER 0.40 1.28 0.04 0.14 ind:pre:1s;ind:pre:3s; +comptabiliser comptabiliser VER 0.40 1.28 0.09 0.61 inf; +comptabilisé comptabiliser VER m s 0.40 1.28 0.23 0.14 par:pas; +comptabilisées comptabiliser VER f p 0.40 1.28 0.01 0.00 par:pas; +comptabilisés comptabiliser VER m p 0.40 1.28 0.03 0.00 par:pas; +comptabilité comptabilité NOM f s 4.37 4.53 4.37 4.39 +comptabilités comptabilité NOM f p 4.37 4.53 0.00 0.14 +comptable comptable NOM s 7.15 4.26 6.43 3.31 +comptables comptable NOM p 7.15 4.26 0.72 0.95 +comptage comptage NOM m s 0.30 0.14 0.30 0.14 +comptai compter VER 227.77 203.72 0.01 0.14 ind:pas:1s; +comptaient compter VER 227.77 203.72 0.93 8.04 ind:imp:3p; +comptais compter VER 227.77 203.72 7.39 7.03 ind:imp:1s;ind:imp:2s; +comptait compter VER 227.77 203.72 7.32 32.50 ind:imp:3s; +comptant compter VER 227.77 203.72 2.47 6.15 par:pre; +compte_fils compte_fils NOM m 0.00 0.34 0.00 0.34 +compte_gouttes compte_gouttes NOM m 0.45 1.42 0.45 1.42 +compte_rendu compte_rendu NOM m s 2.21 0.14 2.06 0.07 +compte_tours compte_tours NOM m 0.04 0.41 0.04 0.41 +compte compte NOM m s 160.95 208.38 138.88 187.23 +comptent compter VER 227.77 203.72 8.09 6.69 ind:pre:3p; +compter compter VER 227.77 203.72 45.04 52.77 ind:pre:2p;inf; +comptera compter VER 227.77 203.72 1.62 0.88 ind:fut:3s; +compterai compter VER 227.77 203.72 0.40 0.27 ind:fut:1s; +compteraient compter VER 227.77 203.72 0.01 0.27 cnd:pre:3p; +compterais compter VER 227.77 203.72 0.49 0.07 cnd:pre:1s;cnd:pre:2s; +compterait compter VER 227.77 203.72 0.39 1.42 cnd:pre:3s; +compteras compter VER 227.77 203.72 0.18 0.00 ind:fut:2s; +compterez compter VER 227.77 203.72 0.04 0.07 ind:fut:2p; +compterons compter VER 227.77 203.72 0.02 0.14 ind:fut:1p; +compteront compter VER 227.77 203.72 0.37 0.27 ind:fut:3p; +compte_rendu compte_rendu NOM m p 2.21 0.14 0.16 0.07 +comptes compte NOM m p 160.95 208.38 22.07 21.15 +compteur compteur NOM m s 4.81 5.95 4.27 4.19 +compteurs compteur NOM m p 4.81 5.95 0.55 1.76 +comptez compter VER 227.77 203.72 21.36 5.88 imp:pre:2p;ind:pre:2p; +compère compère NOM m s 2.13 3.85 1.70 2.36 +compères compère NOM m p 2.13 3.85 0.42 1.49 +compète compéter VER 0.96 0.07 0.80 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +compètes compéter VER 0.96 0.07 0.14 0.00 ind:pre:2s; +comptiez compter VER 227.77 203.72 1.38 0.20 ind:imp:2p;sub:pre:2p; +comptine comptine NOM f s 2.00 1.76 1.73 1.22 +comptines comptine NOM f p 2.00 1.76 0.28 0.54 +comptions compter VER 227.77 203.72 0.26 0.68 ind:imp:1p; +comptoir comptoir NOM m s 8.66 41.55 8.49 39.53 +comptoirs comptoir NOM m p 8.66 41.55 0.17 2.03 +comptons compter VER 227.77 203.72 2.17 2.84 imp:pre:1p;ind:pre:1p; +comptât compter VER 227.77 203.72 0.00 0.20 sub:imp:3s; +comptèrent compter VER 227.77 203.72 0.01 0.20 ind:pas:3p; +compté compter VER m s 227.77 203.72 10.34 11.55 par:pas; +comptée compter VER f s 227.77 203.72 0.12 0.88 par:pas; +comptées compter VER f p 227.77 203.72 0.25 1.28 par:pas; +comptés compter VER m p 227.77 203.72 1.96 2.84 par:pas; +compulsait compulser VER 0.27 1.69 0.00 0.27 ind:imp:3s; +compulsant compulser VER 0.27 1.69 0.01 0.20 par:pre; +compulse compulser VER 0.27 1.69 0.10 0.47 imp:pre:2s;ind:pre:3s; +compulser compulser VER 0.27 1.69 0.03 0.47 inf; +compulsez compulser VER 0.27 1.69 0.10 0.00 imp:pre:2p; +compulsif compulsif ADJ m s 1.04 0.14 0.72 0.07 +compulsifs compulsif ADJ m p 1.04 0.14 0.11 0.00 +compulsion compulsion NOM f s 0.17 0.00 0.17 0.00 +compulsive compulsif ADJ f s 1.04 0.14 0.18 0.00 +compulsivement compulsivement ADV 0.03 0.00 0.03 0.00 +compulsives compulsif ADJ f p 1.04 0.14 0.03 0.07 +compulsoire compulsoire NOM m s 0.00 0.07 0.00 0.07 +compulsons compulser VER 0.27 1.69 0.00 0.07 ind:pre:1p; +compulsé compulser VER m s 0.27 1.69 0.02 0.14 par:pas; +compulsés compulser VER m p 0.27 1.69 0.00 0.07 par:pas; +comput comput NOM m s 0.00 0.14 0.00 0.14 +compétant compéter VER 0.96 0.07 0.02 0.00 par:pre; +computations computation NOM f p 0.00 0.07 0.00 0.07 +compétence compétence NOM f s 5.98 5.07 2.12 3.24 +compétences compétence NOM f p 5.98 5.07 3.86 1.82 +compétent compétent ADJ m s 7.44 3.11 4.45 1.08 +compétente compétent ADJ f s 7.44 3.11 1.05 1.08 +compétentes compétent ADJ f p 7.44 3.11 0.52 0.34 +compétents compétent ADJ m p 7.44 3.11 1.42 0.61 +computer computer NOM m s 0.17 0.14 0.14 0.07 +computers computer NOM m p 0.17 0.14 0.03 0.07 +computeur computeur NOM m s 0.05 0.07 0.04 0.00 +computeurs computeur NOM m p 0.05 0.07 0.01 0.07 +compétiteur compétiteur NOM m s 0.34 0.20 0.28 0.00 +compétiteurs compétiteur NOM m p 0.34 0.20 0.05 0.20 +compétitif compétitif ADJ m s 1.27 0.00 0.53 0.00 +compétitifs compétitif ADJ m p 1.27 0.00 0.22 0.00 +compétition compétition NOM f s 9.15 4.80 8.43 3.85 +compétitions compétition NOM f p 9.15 4.80 0.73 0.95 +compétitive compétitif ADJ f s 1.27 0.00 0.52 0.00 +compétitivité compétitivité NOM f s 0.06 0.00 0.06 0.00 +compétitrice compétiteur NOM f s 0.34 0.20 0.01 0.00 +comtal comtal ADJ m s 0.00 0.20 0.00 0.14 +comtale comtal ADJ f s 0.00 0.20 0.00 0.07 +comte comte NOM m s 27.31 67.77 12.89 51.42 +comtes comte NOM m p 27.31 67.77 0.74 2.64 +comtesse comte NOM f s 27.31 67.77 13.69 12.43 +comtesses comtesse NOM f p 0.05 0.00 0.05 0.00 +comète comète NOM f s 2.28 2.50 1.96 2.30 +comètes comète NOM f p 2.28 2.50 0.32 0.20 +comtois comtois ADJ m 0.00 0.27 0.00 0.07 +comtois comtois NOM m 0.00 0.27 0.00 0.07 +comtoise comtois ADJ f s 0.00 0.27 0.00 0.20 +comtoise comtois NOM f s 0.00 0.27 0.00 0.20 +comté comté NOM m s 11.64 2.36 10.96 2.36 +comtés comté NOM m p 11.64 2.36 0.68 0.00 +comédie comédie NOM f s 22.11 29.73 20.87 25.68 +comédien comédien NOM m s 6.06 10.74 3.02 5.27 +comédienne comédien NOM f s 6.06 10.74 0.75 1.76 +comédiennes comédienne NOM f p 0.44 0.00 0.44 0.00 +comédiens comédien NOM m p 6.06 10.74 2.30 3.11 +comédies comédie NOM f p 22.11 29.73 1.23 4.05 +comédons comédon NOM m p 0.00 0.07 0.00 0.07 +con con PRO:per s 7.87 4.59 7.87 4.59 +conard conard NOM m s 0.19 0.47 0.16 0.27 +conarde conard NOM f s 0.19 0.47 0.00 0.07 +conards conard NOM m p 0.19 0.47 0.03 0.14 +conasse conasse NOM f s 0.34 0.27 0.34 0.20 +conasses conasse NOM f p 0.34 0.27 0.00 0.07 +concassage concassage NOM m s 0.00 0.14 0.00 0.14 +concassait concasser VER 0.09 1.76 0.00 0.07 ind:imp:3s; +concassant concasser VER 0.09 1.76 0.00 0.14 par:pre; +concasse concasser VER 0.09 1.76 0.00 0.07 ind:pre:3s; +concassent concasser VER 0.09 1.76 0.00 0.07 ind:pre:3p; +concasser concasser VER 0.09 1.76 0.01 0.07 inf; +concasseur concasseur NOM m s 0.19 0.68 0.17 0.27 +concasseurs concasseur NOM m p 0.19 0.68 0.01 0.41 +concassé concasser VER m s 0.09 1.76 0.04 0.54 par:pas; +concassée concasser VER f s 0.09 1.76 0.01 0.27 par:pas; +concassées concasser VER f p 0.09 1.76 0.01 0.20 par:pas; +concassés concasser VER m p 0.09 1.76 0.01 0.34 par:pas; +concaténation concaténation NOM f s 0.01 0.00 0.01 0.00 +concave concave ADJ s 0.20 1.22 0.19 1.08 +concaves concave ADJ p 0.20 1.22 0.01 0.14 +concavité concavité NOM f s 0.00 0.34 0.00 0.34 +concentra concentrer VER 39.58 18.92 0.04 1.28 ind:pas:3s; +concentrai concentrer VER 39.58 18.92 0.00 0.27 ind:pas:1s; +concentraient concentrer VER 39.58 18.92 0.15 0.68 ind:imp:3p; +concentrais concentrer VER 39.58 18.92 0.16 0.00 ind:imp:1s;ind:imp:2s; +concentrait concentrer VER 39.58 18.92 0.14 1.42 ind:imp:3s; +concentrant concentrer VER 39.58 18.92 0.43 0.74 par:pre; +concentrateur concentrateur NOM m s 0.12 0.00 0.12 0.00 +concentration concentration NOM f s 8.54 10.41 8.46 10.27 +concentrationnaire concentrationnaire ADJ m s 0.32 0.61 0.32 0.34 +concentrationnaires concentrationnaire ADJ m p 0.32 0.61 0.00 0.27 +concentrations concentration NOM f p 8.54 10.41 0.08 0.14 +concentre concentrer VER 39.58 18.92 12.05 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concentrent concentrer VER 39.58 18.92 0.30 0.20 ind:pre:3p; +concentrer concentrer VER 39.58 18.92 14.13 6.28 ind:pre:2p;inf; +concentrera concentrer VER 39.58 18.92 0.20 0.00 ind:fut:3s; +concentrerai concentrer VER 39.58 18.92 0.06 0.00 ind:fut:1s; +concentrerais concentrer VER 39.58 18.92 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +concentrerait concentrer VER 39.58 18.92 0.04 0.00 cnd:pre:3s; +concentrerons concentrer VER 39.58 18.92 0.05 0.00 ind:fut:1p; +concentreront concentrer VER 39.58 18.92 0.03 0.07 ind:fut:3p; +concentres concentrer VER 39.58 18.92 0.88 0.00 ind:pre:2s;sub:pre:2s; +concentrez concentrer VER 39.58 18.92 4.39 0.00 imp:pre:2p;ind:pre:2p; +concentriez concentrer VER 39.58 18.92 0.12 0.00 ind:imp:2p; +concentrions concentrer VER 39.58 18.92 0.04 0.00 ind:imp:1p; +concentrique concentrique ADJ s 0.16 4.12 0.00 0.54 +concentriques concentrique ADJ p 0.16 4.12 0.16 3.58 +concentrons concentrer VER 39.58 18.92 1.69 0.07 imp:pre:1p;ind:pre:1p; +concentré concentrer VER m s 39.58 18.92 2.55 2.30 par:pas; +concentrée concentrer VER f s 39.58 18.92 0.66 1.69 par:pas; +concentrées concentrer VER f p 39.58 18.92 0.32 0.61 par:pas; +concentrés concentrer VER m p 39.58 18.92 1.08 0.54 par:pas; +concept concept NOM m s 8.66 3.24 7.63 2.03 +concepteur concepteur ADJ m s 0.51 0.00 0.50 0.00 +concepteurs concepteur NOM m p 0.77 0.14 0.23 0.00 +conception conception NOM f s 4.37 11.55 3.84 8.31 +conceptions conception NOM f p 4.37 11.55 0.53 3.24 +conceptrice concepteur NOM f s 0.77 0.14 0.05 0.00 +concepts concept NOM m p 8.66 3.24 1.02 1.22 +conceptualise conceptualiser VER 0.04 0.00 0.01 0.00 ind:pre:1s; +conceptualiser conceptualiser VER 0.04 0.00 0.02 0.00 inf; +conceptualisé conceptualiser VER m s 0.04 0.00 0.01 0.00 par:pas; +conceptuel conceptuel ADJ m s 0.46 0.14 0.32 0.14 +conceptuelle conceptuel ADJ f s 0.46 0.14 0.07 0.00 +conceptuellement conceptuellement ADV 0.01 0.00 0.01 0.00 +conceptuelles conceptuel ADJ f p 0.46 0.14 0.05 0.00 +conceptuels conceptuel ADJ m p 0.46 0.14 0.02 0.00 +concernaient concerner VER 49.31 50.47 0.18 1.76 ind:imp:3p; +concernait concerner VER 49.31 50.47 2.13 10.95 ind:imp:3s; +concernant concernant PRE 13.08 14.26 13.08 14.26 +concerne concerner VER 49.31 50.47 33.49 26.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concernent concerner VER 49.31 50.47 1.64 1.96 ind:pre:3p; +concerner concerner VER 49.31 50.47 0.36 1.22 inf; +concernera concerner VER 49.31 50.47 0.25 0.07 ind:fut:3s; +concerneraient concerner VER 49.31 50.47 0.01 0.07 cnd:pre:3p; +concernerait concerner VER 49.31 50.47 0.17 0.34 cnd:pre:3s; +concernât concerner VER 49.31 50.47 0.00 0.20 sub:imp:3s; +concernèrent concerner VER 49.31 50.47 0.00 0.07 ind:pas:3p; +concerné concerner VER m s 49.31 50.47 3.06 1.49 par:pas; +concernée concerner VER f s 49.31 50.47 1.42 1.08 par:pas; +concernées concerner VER f p 49.31 50.47 0.63 0.14 par:pas; +concernés concerner VER m p 49.31 50.47 2.51 1.08 par:pas; +concert concert NOM m s 31.65 30.14 26.51 24.86 +concertaient concerter VER 0.65 3.78 0.01 0.14 ind:imp:3p; +concertait concerter VER 0.65 3.78 0.00 0.14 ind:imp:3s; +concertant concerter VER 0.65 3.78 0.00 0.07 par:pre; +concertation concertation NOM f s 0.17 0.07 0.15 0.07 +concertations concertation NOM f p 0.17 0.07 0.01 0.00 +concerte concerter VER 0.65 3.78 0.05 0.07 ind:pre:3s; +concertent concerter VER 0.65 3.78 0.02 0.41 ind:pre:3p; +concerter concerter VER 0.65 3.78 0.32 1.15 inf; +concertez concerter VER 0.65 3.78 0.01 0.00 ind:pre:2p; +concertina concertina NOM m s 0.01 0.00 0.01 0.00 +concertiste concertiste NOM s 0.60 0.00 0.60 0.00 +concerto concerto NOM m s 1.63 2.77 1.56 2.36 +concertons concerter VER 0.65 3.78 0.01 0.07 imp:pre:1p;ind:pre:1p; +concertos concerto NOM m p 1.63 2.77 0.07 0.41 +concerts concert NOM m p 31.65 30.14 5.14 5.27 +concertèrent concerter VER 0.65 3.78 0.00 0.20 ind:pas:3p; +concerté concerter VER m s 0.65 3.78 0.17 0.20 par:pas; +concertée concerter VER f s 0.65 3.78 0.03 0.41 par:pas; +concertées concerter VER f p 0.65 3.78 0.00 0.27 par:pas; +concertés concerter VER m p 0.65 3.78 0.02 0.68 par:pas; +concession concession NOM f s 5.31 14.12 3.54 9.32 +concessionnaire concessionnaire NOM s 0.70 0.95 0.63 0.68 +concessionnaires concessionnaire NOM p 0.70 0.95 0.07 0.27 +concessions concession NOM f p 5.31 14.12 1.77 4.80 +concetto concetto NOM m s 0.00 0.07 0.00 0.07 +concevable concevable ADJ s 0.28 2.77 0.27 2.50 +concevables concevable ADJ f p 0.28 2.77 0.01 0.27 +concevaient concevoir VER 18.75 27.84 0.12 0.34 ind:imp:3p; +concevais concevoir VER 18.75 27.84 0.06 1.15 ind:imp:1s; +concevait concevoir VER 18.75 27.84 0.15 2.36 ind:imp:3s; +concevant concevoir VER 18.75 27.84 0.05 0.14 par:pre; +concevez concevoir VER 18.75 27.84 0.06 0.07 imp:pre:2p;ind:pre:2p; +conceviez concevoir VER 18.75 27.84 0.14 0.14 ind:imp:2p; +concevions concevoir VER 18.75 27.84 0.00 0.07 ind:imp:1p; +concevoir concevoir VER 18.75 27.84 3.14 7.57 inf; +concevons concevoir VER 18.75 27.84 0.02 0.20 imp:pre:1p;ind:pre:1p; +concevrais concevoir VER 18.75 27.84 0.00 0.14 cnd:pre:1s; +concevrait concevoir VER 18.75 27.84 0.01 0.27 cnd:pre:3s; +conchiaient conchier VER 0.03 0.54 0.00 0.07 ind:imp:3p; +conchie conchier VER 0.03 0.54 0.01 0.07 ind:pre:1s;ind:pre:3s; +conchier conchier VER 0.03 0.54 0.01 0.34 inf; +conchié conchier VER m s 0.03 0.54 0.01 0.07 par:pas; +conchoïdaux conchoïdal ADJ m p 0.01 0.00 0.01 0.00 +concierge concierge NOM s 11.15 29.05 10.81 25.41 +conciergerie conciergerie NOM f s 0.04 0.74 0.04 0.68 +conciergeries conciergerie NOM f p 0.04 0.74 0.00 0.07 +concierges concierge NOM p 11.15 29.05 0.34 3.65 +concile concile NOM m s 0.17 3.11 0.17 2.57 +conciles concile NOM m p 0.17 3.11 0.00 0.54 +conciliable conciliable ADJ s 0.00 0.34 0.00 0.27 +conciliables conciliable ADJ p 0.00 0.34 0.00 0.07 +conciliabule conciliabule NOM m s 0.28 3.58 0.02 1.76 +conciliabules conciliabule NOM m p 0.28 3.58 0.26 1.82 +conciliaient concilier VER 0.85 5.00 0.00 0.07 ind:imp:3p; +conciliaires conciliaire ADJ m p 0.00 0.07 0.00 0.07 +conciliait concilier VER 0.85 5.00 0.00 0.34 ind:imp:3s; +conciliant conciliant ADJ m s 0.63 3.85 0.30 2.09 +conciliante conciliant ADJ f s 0.63 3.85 0.12 1.22 +conciliantes conciliant ADJ f p 0.63 3.85 0.03 0.20 +conciliants conciliant ADJ m p 0.63 3.85 0.17 0.34 +conciliateur conciliateur NOM m s 0.10 0.14 0.07 0.14 +conciliateurs conciliateur NOM m p 0.10 0.14 0.01 0.00 +conciliation conciliation NOM f s 0.64 1.82 0.37 1.69 +conciliations conciliation NOM f p 0.64 1.82 0.27 0.14 +conciliatrice conciliateur NOM f s 0.10 0.14 0.01 0.00 +concilie concilier VER 0.85 5.00 0.20 0.14 ind:pre:3s; +concilier concilier VER 0.85 5.00 0.60 3.18 inf; +concilierait concilier VER 0.85 5.00 0.00 0.07 cnd:pre:3s; +concilies concilier VER 0.85 5.00 0.00 0.07 ind:pre:2s; +concilié concilier VER m s 0.85 5.00 0.02 0.14 par:pas; +conciliées concilier VER f p 0.85 5.00 0.00 0.07 par:pas; +conciliés concilier VER m p 0.85 5.00 0.00 0.07 par:pas; +concis concis ADJ m 1.42 0.68 0.77 0.61 +concise concis ADJ f s 1.42 0.68 0.65 0.07 +concision concision NOM f s 0.31 0.61 0.31 0.61 +concitoyen concitoyen NOM m s 4.36 1.62 0.33 0.07 +concitoyenne concitoyen NOM f s 4.36 1.62 0.11 0.07 +concitoyennes concitoyenne NOM f p 0.10 0.00 0.10 0.00 +concitoyens concitoyen NOM m p 4.36 1.62 3.92 1.49 +conclûmes conclure VER 27.26 51.76 0.00 0.07 ind:pas:1p; +conclût conclure VER 27.26 51.76 0.00 0.07 sub:imp:3s; +conclave conclave NOM m s 0.00 0.47 0.00 0.47 +conclaviste conclaviste NOM m s 0.00 0.07 0.00 0.07 +conclu conclure VER m s 27.26 51.76 11.88 10.61 par:pas; +concluaient conclure VER 27.26 51.76 0.00 0.47 ind:imp:3p; +concluais conclure VER 27.26 51.76 0.02 0.68 ind:imp:1s; +concluait conclure VER 27.26 51.76 0.06 2.50 ind:imp:3s; +concluant concluant ADJ m s 1.49 0.95 0.71 0.41 +concluante concluant ADJ f s 1.49 0.95 0.33 0.34 +concluantes concluant ADJ f p 1.49 0.95 0.10 0.00 +concluants concluant ADJ m p 1.49 0.95 0.35 0.20 +conclue conclure VER f s 27.26 51.76 1.82 1.49 par:pas;sub:pre:1s;sub:pre:3s; +concluent conclure VER 27.26 51.76 0.20 0.61 ind:pre:3p; +conclues conclure VER f p 27.26 51.76 0.06 0.20 par:pas;sub:pre:2s; +concluez conclure VER 27.26 51.76 0.57 0.07 imp:pre:2p;ind:pre:2p; +concluions conclure VER 27.26 51.76 0.02 0.07 ind:imp:1p; +concluons conclure VER 27.26 51.76 0.75 0.07 imp:pre:1p;ind:pre:1p; +conclura conclure VER 27.26 51.76 0.24 0.07 ind:fut:3s; +conclurai conclure VER 27.26 51.76 0.27 0.07 ind:fut:1s; +conclurais conclure VER 27.26 51.76 0.03 0.00 cnd:pre:1s; +conclurait conclure VER 27.26 51.76 0.04 0.00 cnd:pre:3s; +conclure conclure VER 27.26 51.76 7.57 10.34 inf; +conclurent conclure VER 27.26 51.76 0.03 0.27 ind:pas:3p; +conclurez conclure VER 27.26 51.76 0.01 0.00 ind:fut:2p; +conclurions conclure VER 27.26 51.76 0.01 0.07 cnd:pre:1p; +conclurons conclure VER 27.26 51.76 0.07 0.00 ind:fut:1p; +concluront conclure VER 27.26 51.76 0.03 0.07 ind:fut:3p; +conclus conclure VER m p 27.26 51.76 1.88 4.32 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +conclusion conclusion NOM f s 13.90 20.68 8.19 14.32 +conclusions conclusion NOM f p 13.90 20.68 5.71 6.35 +conclusive conclusif ADJ f s 0.01 0.00 0.01 0.00 +conclut conclure VER 27.26 51.76 1.65 18.92 ind:pre:3s;ind:pas:3s; +concocta concocter VER 1.00 1.01 0.01 0.00 ind:pas:3s; +concoctait concocter VER 1.00 1.01 0.01 0.14 ind:imp:3s; +concoctent concocter VER 1.00 1.01 0.02 0.00 ind:pre:3p; +concocter concocter VER 1.00 1.01 0.34 0.41 inf; +concocteras concocter VER 1.00 1.01 0.01 0.07 ind:fut:2s; +concoction concoction NOM f s 0.06 0.20 0.06 0.20 +concocté concocter VER m s 1.00 1.01 0.57 0.27 par:pas; +concoctée concocter VER f s 1.00 1.01 0.04 0.07 par:pas; +concoctés concocter VER m p 1.00 1.01 0.01 0.07 par:pas; +concombre concombre NOM m s 2.75 4.12 1.82 1.15 +concombres concombre NOM m p 2.75 4.12 0.94 2.97 +concomitance concomitance NOM f s 0.01 0.07 0.01 0.07 +concomitant concomitant ADJ m s 0.02 0.41 0.00 0.14 +concomitante concomitant ADJ f s 0.02 0.41 0.01 0.14 +concomitantes concomitant ADJ f p 0.02 0.41 0.01 0.14 +concordaient concorder VER 2.45 0.81 0.02 0.14 ind:imp:3p; +concordait concorder VER 2.45 0.81 0.13 0.27 ind:imp:3s; +concordance concordance NOM f s 0.45 0.54 0.45 0.54 +concordant concorder VER 2.45 0.81 0.03 0.00 par:pre; +concordante concordant ADJ f s 0.23 0.14 0.03 0.00 +concordantes concordant ADJ f p 0.23 0.14 0.02 0.00 +concordants concordant ADJ m p 0.23 0.14 0.16 0.07 +concordat concordat NOM m s 0.00 0.07 0.00 0.07 +concorde concorder VER 2.45 0.81 1.40 0.07 imp:pre:2s;ind:pre:3s; +concordent concorder VER 2.45 0.81 0.71 0.20 ind:pre:3p; +concorder concorder VER 2.45 0.81 0.15 0.14 inf; +concordez concorder VER 2.45 0.81 0.01 0.00 imp:pre:2p; +concordistes concordiste NOM p 0.00 0.07 0.00 0.07 +concourût concourir VER 1.35 3.72 0.00 0.07 sub:imp:3s; +concouraient concourir VER 1.35 3.72 0.03 0.20 ind:imp:3p; +concourait concourir VER 1.35 3.72 0.01 0.34 ind:imp:3s; +concourant concourant ADJ m s 0.01 0.00 0.01 0.00 +concoure concourir VER 1.35 3.72 0.02 0.00 sub:pre:3s; +concourent concourir VER 1.35 3.72 0.08 0.47 ind:pre:3p; +concourez concourir VER 1.35 3.72 0.04 0.00 ind:pre:2p; +concourir concourir VER 1.35 3.72 0.55 1.28 inf; +concourrai concourir VER 1.35 3.72 0.01 0.00 ind:fut:1s; +concourrait concourir VER 1.35 3.72 0.01 0.14 cnd:pre:3s; +concourront concourir VER 1.35 3.72 0.00 0.07 ind:fut:3p; +concours concours NOM m 23.89 31.69 23.89 31.69 +concourt concourir VER 1.35 3.72 0.17 0.54 ind:pre:3s; +concouru concourir VER m s 1.35 3.72 0.10 0.54 par:pas; +concret concret ADJ m s 3.48 7.09 1.88 2.09 +concrets concret ADJ m p 3.48 7.09 0.24 1.22 +concrète concret ADJ f s 3.48 7.09 0.93 2.84 +concrètement concrètement ADV 2.04 1.15 2.04 1.15 +concrètes concret ADJ f p 3.48 7.09 0.42 0.95 +concrétion concrétion NOM f s 0.01 0.81 0.01 0.47 +concrétions concrétion NOM f p 0.01 0.81 0.00 0.34 +concrétisant concrétiser VER 0.83 1.35 0.01 0.07 par:pre; +concrétisation concrétisation NOM f s 0.04 0.07 0.04 0.07 +concrétise concrétiser VER 0.83 1.35 0.20 0.14 ind:pre:1s;ind:pre:3s; +concrétisent concrétiser VER 0.83 1.35 0.01 0.00 ind:pre:3p; +concrétiser concrétiser VER 0.83 1.35 0.39 0.54 inf; +concrétisèrent concrétiser VER 0.83 1.35 0.00 0.14 ind:pas:3p; +concrétisé concrétiser VER m s 0.83 1.35 0.05 0.27 par:pas; +concrétisée concrétiser VER f s 0.83 1.35 0.16 0.14 par:pas; +concrétisées concrétiser VER f p 0.83 1.35 0.01 0.00 par:pas; +concrétisés concrétiser VER m p 0.83 1.35 0.00 0.07 par:pas; +concède concéder VER 1.79 5.74 0.75 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +concèdes concéder VER 1.79 5.74 0.02 0.00 ind:pre:2s; +concubin concubin NOM m s 1.98 2.84 0.02 0.61 +concubinage concubinage NOM m s 0.77 0.68 0.77 0.61 +concubinages concubinage NOM m p 0.77 0.68 0.00 0.07 +concubinait concubiner VER 0.00 0.07 0.00 0.07 ind:imp:3s; +concubine concubin NOM f s 1.98 2.84 1.56 1.69 +concubines concubin NOM f p 1.98 2.84 0.40 0.47 +concubins concubin NOM m p 1.98 2.84 0.00 0.07 +concéda concéder VER 1.79 5.74 0.01 1.28 ind:pas:3s; +concédai concéder VER 1.79 5.74 0.00 0.07 ind:pas:1s; +concédaient concéder VER 1.79 5.74 0.10 0.20 ind:imp:3p; +concédais concéder VER 1.79 5.74 0.00 0.14 ind:imp:1s; +concédait concéder VER 1.79 5.74 0.00 0.74 ind:imp:3s; +concédant concédant NOM m s 0.00 0.07 0.00 0.07 +concéder concéder VER 1.79 5.74 0.39 0.81 inf; +concéderait concéder VER 1.79 5.74 0.01 0.07 cnd:pre:3s; +concédez concéder VER 1.79 5.74 0.03 0.00 ind:pre:2p; +concédons concéder VER 1.79 5.74 0.00 0.07 ind:pre:1p; +concédât concéder VER 1.79 5.74 0.00 0.14 sub:imp:3s; +concédé concéder VER m s 1.79 5.74 0.25 0.88 par:pas; +concédée concéder VER f s 1.79 5.74 0.23 0.47 par:pas; +concédés concéder VER m p 1.79 5.74 0.00 0.20 par:pas; +concélèbrent concélébrer VER 0.37 0.00 0.37 0.00 ind:pre:3p; +concupiscence concupiscence NOM f s 0.38 2.09 0.38 2.03 +concupiscences concupiscence NOM f p 0.38 2.09 0.00 0.07 +concupiscent concupiscent ADJ m s 0.11 0.54 0.11 0.14 +concupiscente concupiscent ADJ f s 0.11 0.54 0.00 0.14 +concupiscentes concupiscent ADJ f p 0.11 0.54 0.00 0.14 +concupiscents concupiscent ADJ m p 0.11 0.54 0.00 0.14 +concurremment concurremment ADV 0.00 0.41 0.00 0.41 +concurrence concurrence NOM f s 6.00 5.00 6.00 4.73 +concurrencer concurrencer VER 0.33 0.74 0.30 0.07 inf; +concurrences concurrence NOM f p 6.00 5.00 0.00 0.27 +concurrencé concurrencer VER m s 0.33 0.74 0.01 0.14 par:pas; +concurrencée concurrencer VER f s 0.33 0.74 0.00 0.07 par:pas; +concurrent concurrent NOM m s 6.36 3.51 1.65 1.49 +concurrente concurrent ADJ f s 1.45 1.62 0.71 0.54 +concurrentes concurrent ADJ f p 1.45 1.62 0.27 0.41 +concurrençait concurrencer VER 0.33 0.74 0.00 0.27 ind:imp:3s; +concurrentiel concurrentiel ADJ m s 0.09 0.14 0.07 0.07 +concurrentielle concurrentiel ADJ f s 0.09 0.14 0.02 0.00 +concurrentiels concurrentiel ADJ m p 0.09 0.14 0.00 0.07 +concurrents concurrent NOM m p 6.36 3.51 4.71 2.03 +concussion concussion NOM f s 0.07 0.20 0.07 0.20 +concussionnaire concussionnaire ADJ f s 0.00 0.07 0.00 0.07 +condamna condamner VER 44.14 44.59 0.59 0.47 ind:pas:3s; +condamnable condamnable ADJ s 0.44 0.88 0.44 0.61 +condamnables condamnable ADJ m p 0.44 0.88 0.00 0.27 +condamnai condamner VER 44.14 44.59 0.00 0.07 ind:pas:1s; +condamnaient condamner VER 44.14 44.59 0.04 1.35 ind:imp:3p; +condamnais condamner VER 44.14 44.59 0.02 0.27 ind:imp:1s;ind:imp:2s; +condamnait condamner VER 44.14 44.59 0.17 3.51 ind:imp:3s; +condamnant condamner VER 44.14 44.59 0.31 1.49 par:pre; +condamnation condamnation NOM f s 6.79 8.85 5.18 7.64 +condamnations condamnation NOM f p 6.79 8.85 1.62 1.22 +condamne condamner VER 44.14 44.59 6.56 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +condamnent condamner VER 44.14 44.59 0.94 1.15 ind:pre:3p;sub:pre:3p; +condamner condamner VER 44.14 44.59 5.53 4.73 inf; +condamnera condamner VER 44.14 44.59 0.60 0.27 ind:fut:3s; +condamnerai condamner VER 44.14 44.59 0.02 0.00 ind:fut:1s; +condamneraient condamner VER 44.14 44.59 0.02 0.00 cnd:pre:3p; +condamnerais condamner VER 44.14 44.59 0.04 0.20 cnd:pre:1s; +condamnerait condamner VER 44.14 44.59 0.22 0.00 cnd:pre:3s; +condamneras condamner VER 44.14 44.59 0.03 0.00 ind:fut:2s; +condamnerons condamner VER 44.14 44.59 0.00 0.07 ind:fut:1p; +condamneront condamner VER 44.14 44.59 0.32 0.14 ind:fut:3p; +condamnes condamner VER 44.14 44.59 0.16 0.14 ind:pre:2s; +condamnez condamner VER 44.14 44.59 1.17 0.07 imp:pre:2p;ind:pre:2p; +condamniez condamner VER 44.14 44.59 0.01 0.14 ind:imp:2p; +condamnions condamner VER 44.14 44.59 0.00 0.07 ind:imp:1p; +condamnons condamner VER 44.14 44.59 0.93 0.07 imp:pre:1p;ind:pre:1p; +condamnât condamner VER 44.14 44.59 0.00 0.14 sub:imp:3s; +condamnèrent condamner VER 44.14 44.59 0.14 0.20 ind:pas:3p; +condamné condamner VER m s 44.14 44.59 17.10 12.30 par:pas; +condamnée condamner VER f s 44.14 44.59 3.42 6.42 par:pas; +condamnées condamner VER f p 44.14 44.59 0.65 1.01 par:pas; +condamnés condamner VER m p 44.14 44.59 5.14 5.07 par:pas; +condensa condenser VER 0.59 2.70 0.00 0.20 ind:pas:3s; +condensaient condenser VER 0.59 2.70 0.00 0.20 ind:imp:3p; +condensait condenser VER 0.59 2.70 0.00 0.54 ind:imp:3s; +condensant condenser VER 0.59 2.70 0.10 0.07 par:pre; +condensateur condensateur NOM m s 1.02 0.07 0.77 0.07 +condensateurs condensateur NOM m p 1.02 0.07 0.26 0.00 +condensation condensation NOM f s 0.28 1.22 0.28 1.22 +condense condenser VER 0.59 2.70 0.14 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +condensent condenser VER 0.59 2.70 0.00 0.14 ind:pre:3p; +condenser condenser VER 0.59 2.70 0.17 0.41 inf; +condensera condenser VER 0.59 2.70 0.01 0.00 ind:fut:3s; +condenseur condenseur NOM m s 0.01 0.00 0.01 0.00 +condensèrent condenser VER 0.59 2.70 0.00 0.07 ind:pas:3p; +condensé condenser VER m s 0.59 2.70 0.16 0.14 par:pas; +condensée condensé ADJ f s 0.05 1.15 0.02 0.00 +condensées condenser VER f p 0.59 2.70 0.03 0.14 par:pas; +condensés condensé ADJ m p 0.05 1.15 0.01 0.07 +condescend condescendre VER 0.17 1.01 0.00 0.14 ind:pre:3s; +condescendait condescendre VER 0.17 1.01 0.00 0.07 ind:imp:3s; +condescendance condescendance NOM f s 0.70 4.53 0.70 4.53 +condescendant condescendant ADJ m s 1.35 2.09 0.95 0.95 +condescendante condescendant ADJ f s 1.35 2.09 0.30 0.88 +condescendants condescendant ADJ m p 1.35 2.09 0.09 0.27 +condescendit condescendre VER 0.17 1.01 0.01 0.20 ind:pas:3s; +condescendrais condescendre VER 0.17 1.01 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +condescendre condescendre VER 0.17 1.01 0.01 0.20 inf; +condescendu condescendre VER m s 0.17 1.01 0.00 0.07 par:pas; +condiment condiment NOM m s 0.68 0.61 0.11 0.07 +condiments condiment NOM m p 0.68 0.61 0.56 0.54 +condisciple condisciple NOM s 0.15 3.11 0.01 0.74 +condisciples condisciple NOM p 0.15 3.11 0.14 2.36 +condition condition NOM f s 46.73 91.62 25.61 45.81 +conditionnait conditionner VER 1.58 1.55 0.02 0.00 ind:imp:3s; +conditionnant conditionner VER 1.58 1.55 0.02 0.07 par:pre; +conditionne conditionner VER 1.58 1.55 0.32 0.14 ind:pre:1s;ind:pre:3s; +conditionnel conditionnel NOM m s 0.07 0.81 0.06 0.74 +conditionnelle conditionnel ADJ f s 4.76 0.74 4.59 0.74 +conditionnellement conditionnellement ADV 0.00 0.07 0.00 0.07 +conditionnelles conditionnel ADJ f p 4.76 0.74 0.16 0.00 +conditionnels conditionnel NOM m p 0.07 0.81 0.01 0.07 +conditionnement conditionnement NOM m s 0.52 0.95 0.52 0.74 +conditionnements conditionnement NOM m p 0.52 0.95 0.00 0.20 +conditionnent conditionner VER 1.58 1.55 0.14 0.00 ind:pre:3p; +conditionner conditionner VER 1.58 1.55 0.32 0.27 inf; +conditionnerons conditionner VER 1.58 1.55 0.01 0.00 ind:fut:1p; +conditionneur conditionneur NOM m s 0.06 0.14 0.04 0.00 +conditionneurs conditionneur NOM m p 0.06 0.14 0.02 0.14 +conditionnons conditionner VER 1.58 1.55 0.01 0.00 ind:pre:1p; +conditionné conditionné ADJ m s 2.09 1.82 2.02 1.55 +conditionnée conditionner VER f s 1.58 1.55 0.14 0.14 par:pas; +conditionnées conditionner VER f p 1.58 1.55 0.02 0.14 par:pas; +conditionnés conditionner VER m p 1.58 1.55 0.07 0.20 par:pas; +conditions condition NOM f p 46.73 91.62 21.12 45.81 +condo condo NOM m s 1.01 0.00 0.61 0.00 +condoléance condoléance NOM f s 10.82 4.32 0.03 0.14 +condoléances condoléance NOM f p 10.82 4.32 10.80 4.19 +condoléants condoléant ADJ m p 0.00 0.07 0.00 0.07 +condom condom NOM m s 0.18 0.00 0.18 0.00 +condominium condominium NOM m s 0.02 0.14 0.02 0.14 +condor condor NOM m s 1.33 0.61 1.30 0.47 +condors condor NOM m p 1.33 0.61 0.02 0.14 +condos condo NOM m p 1.01 0.00 0.40 0.00 +condottiere condottiere NOM m s 0.00 0.61 0.00 0.54 +condottieres condottiere NOM m p 0.00 0.61 0.00 0.07 +condottieri condottieri NOM m p 0.00 0.07 0.00 0.07 +condé condé NOM m s 0.10 6.49 0.05 2.64 +conductance conductance NOM f s 0.03 0.00 0.03 0.00 +conducteur conducteur NOM m s 10.91 15.14 8.67 11.08 +conducteurs conducteur NOM m p 10.91 15.14 1.66 3.24 +conductibilité conductibilité NOM f s 0.01 0.00 0.01 0.00 +conduction conduction NOM f s 0.07 0.00 0.07 0.00 +conductivité conductivité NOM f s 0.02 0.00 0.02 0.00 +conductrice conducteur NOM f s 10.91 15.14 0.58 0.61 +conductrices conductrice NOM f p 0.03 0.00 0.03 0.00 +conduira conduire VER 169.61 144.66 3.67 2.03 ind:fut:3s; +conduirai conduire VER 169.61 144.66 2.53 0.68 ind:fut:1s; +conduiraient conduire VER 169.61 144.66 0.01 0.47 cnd:pre:3p; +conduirais conduire VER 169.61 144.66 0.59 0.07 cnd:pre:1s;cnd:pre:2s; +conduirait conduire VER 169.61 144.66 0.62 2.30 cnd:pre:3s; +conduiras conduire VER 169.61 144.66 0.61 0.20 ind:fut:2s; +conduire conduire VER 169.61 144.66 60.52 40.27 imp:pre:2p;inf; +conduirez conduire VER 169.61 144.66 0.44 0.14 ind:fut:2p; +conduiriez conduire VER 169.61 144.66 0.10 0.00 cnd:pre:2p; +conduirons conduire VER 169.61 144.66 0.22 0.14 ind:fut:1p; +conduiront conduire VER 169.61 144.66 1.26 0.34 ind:fut:3p; +conduis conduire VER 169.61 144.66 29.82 3.58 imp:pre:2s;ind:pre:1s;ind:pre:2s; +conduisît conduire VER 169.61 144.66 0.00 0.47 sub:imp:3s; +conduisaient conduire VER 169.61 144.66 0.51 2.43 ind:imp:3p; +conduisais conduire VER 169.61 144.66 2.58 1.28 ind:imp:1s;ind:imp:2s; +conduisait conduire VER 169.61 144.66 6.37 20.41 ind:imp:3s; +conduisant conduire VER 169.61 144.66 1.73 7.36 par:pre; +conduise conduire VER 169.61 144.66 2.82 1.62 sub:pre:1s;sub:pre:3s; +conduisent conduire VER 169.61 144.66 2.90 3.31 ind:pre:3p; +conduises conduire VER 169.61 144.66 0.77 0.07 sub:pre:2s; +conduisez conduire VER 169.61 144.66 8.11 0.68 imp:pre:2p;ind:pre:2p; +conduisiez conduire VER 169.61 144.66 0.63 0.07 ind:imp:2p; +conduisions conduire VER 169.61 144.66 0.04 0.20 ind:imp:1p; +conduisirent conduire VER 169.61 144.66 0.15 1.01 ind:pas:3p; +conduisis conduire VER 169.61 144.66 0.02 0.68 ind:pas:1s; +conduisit conduire VER 169.61 144.66 0.72 7.77 ind:pas:3s; +conduisons conduire VER 169.61 144.66 0.22 0.14 imp:pre:1p;ind:pre:1p; +conduit conduire VER m s 169.61 144.66 34.51 33.45 ind:pre:3s;par:pas; +conduite_intérieure conduite_intérieure NOM f s 0.00 0.27 0.00 0.27 +conduite conduite NOM f s 19.20 26.76 18.75 25.34 +conduites conduite NOM f p 19.20 26.76 0.44 1.42 +conduits conduire VER m p 169.61 144.66 2.61 5.47 par:pas; +condés condé NOM m p 0.10 6.49 0.05 3.85 +condyle condyle NOM m s 0.01 0.14 0.01 0.07 +condyles condyle NOM m p 0.01 0.14 0.00 0.07 +confabulaient confabuler VER 0.00 0.14 0.00 0.14 ind:imp:3p; +confection confection NOM f s 0.61 3.51 0.61 3.51 +confectionna confectionner VER 0.66 10.00 0.00 0.74 ind:pas:3s; +confectionnai confectionner VER 0.66 10.00 0.00 0.20 ind:pas:1s; +confectionnaient confectionner VER 0.66 10.00 0.00 0.41 ind:imp:3p; +confectionnais confectionner VER 0.66 10.00 0.01 0.07 ind:imp:1s; +confectionnait confectionner VER 0.66 10.00 0.01 2.09 ind:imp:3s; +confectionne confectionner VER 0.66 10.00 0.02 0.88 ind:pre:1s;ind:pre:3s; +confectionner confectionner VER 0.66 10.00 0.04 2.70 inf; +confectionnerai confectionner VER 0.66 10.00 0.01 0.07 ind:fut:1s; +confectionnerais confectionner VER 0.66 10.00 0.00 0.07 cnd:pre:1s; +confectionnerait confectionner VER 0.66 10.00 0.00 0.07 cnd:pre:3s; +confectionneur confectionneur NOM m s 0.14 0.47 0.14 0.14 +confectionneurs confectionneur NOM m p 0.14 0.47 0.00 0.20 +confectionneuse confectionneur NOM f s 0.14 0.47 0.00 0.07 +confectionneuses confectionneur NOM f p 0.14 0.47 0.00 0.07 +confectionnez confectionner VER 0.66 10.00 0.02 0.07 imp:pre:2p;ind:pre:2p; +confectionnions confectionner VER 0.66 10.00 0.00 0.14 ind:imp:1p; +confectionnâmes confectionner VER 0.66 10.00 0.00 0.07 ind:pas:1p; +confectionnât confectionner VER 0.66 10.00 0.00 0.07 sub:imp:3s; +confectionnèrent confectionner VER 0.66 10.00 0.01 0.07 ind:pas:3p; +confectionné confectionner VER m s 0.66 10.00 0.49 1.35 par:pas; +confectionnée confectionner VER f s 0.66 10.00 0.02 0.47 par:pas; +confectionnées confectionner VER f p 0.66 10.00 0.01 0.27 par:pas; +confectionnés confectionner VER m p 0.66 10.00 0.01 0.20 par:pas; +confessa confesser VER 16.05 10.20 0.16 0.07 ind:pas:3s; +confessai confesser VER 16.05 10.20 0.00 0.07 ind:pas:1s; +confessaient confesser VER 16.05 10.20 0.14 0.07 ind:imp:3p; +confessais confesser VER 16.05 10.20 0.19 0.14 ind:imp:1s;ind:imp:2s; +confessait confesser VER 16.05 10.20 0.15 0.74 ind:imp:3s; +confessant confesser VER 16.05 10.20 0.04 0.34 par:pre; +confesse confesser VER 16.05 10.20 3.05 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confessent confesser VER 16.05 10.20 0.06 0.34 ind:pre:3p; +confesser confesser VER 16.05 10.20 8.09 4.32 inf; +confesserai confesser VER 16.05 10.20 0.26 0.07 ind:fut:1s; +confesserait confesser VER 16.05 10.20 0.00 0.20 cnd:pre:3s; +confesseras confesser VER 16.05 10.20 0.00 0.07 ind:fut:2s; +confesserez confesser VER 16.05 10.20 0.01 0.00 ind:fut:2p; +confesseur confesseur NOM m s 1.86 2.70 1.63 2.16 +confesseurs confesseur NOM m p 1.86 2.70 0.23 0.54 +confessez confesser VER 16.05 10.20 1.21 0.00 imp:pre:2p;ind:pre:2p; +confessiez confesser VER 16.05 10.20 0.02 0.07 ind:imp:2p; +confession confession NOM f s 12.84 10.00 10.78 7.77 +confessionnal confessionnal NOM m s 1.40 1.89 1.29 1.82 +confessionnaux confessionnal NOM m p 1.40 1.89 0.10 0.07 +confessionnel confessionnel ADJ m s 0.12 0.34 0.01 0.14 +confessionnelle confessionnel ADJ f s 0.12 0.34 0.11 0.14 +confessionnels confessionnel ADJ m p 0.12 0.34 0.00 0.07 +confessions confession NOM f p 12.84 10.00 2.05 2.23 +confessons confesser VER 16.05 10.20 0.04 0.07 imp:pre:1p;ind:pre:1p; +confessé confesser VER m s 16.05 10.20 2.04 1.42 par:pas; +confessée confesser VER f s 16.05 10.20 0.26 0.27 par:pas; +confessés confesser VER m p 16.05 10.20 0.34 0.07 par:pas; +confetti confetti NOM m s 1.08 3.78 0.04 1.49 +confettis confetti NOM m p 1.08 3.78 1.04 2.30 +confia confier VER 41.48 69.53 0.51 9.73 ind:pas:3s; +confiai confier VER 41.48 69.53 0.00 0.61 ind:pas:1s; +confiaient confier VER 41.48 69.53 0.16 0.74 ind:imp:3p; +confiais confier VER 41.48 69.53 0.10 0.34 ind:imp:1s;ind:imp:2s; +confiait confier VER 41.48 69.53 0.43 5.81 ind:imp:3s; +confiance confiance NOM f s 162.90 91.96 162.88 91.76 +confiances confiance NOM f p 162.90 91.96 0.03 0.20 +confiant confiant ADJ m s 4.14 10.34 2.46 4.73 +confiante confiant ADJ f s 4.14 10.34 1.26 3.45 +confiantes confiant ADJ f p 4.14 10.34 0.06 0.47 +confiants confiant ADJ m p 4.14 10.34 0.36 1.69 +confidence confidence NOM f s 3.28 24.53 2.23 10.14 +confidences confidence NOM f p 3.28 24.53 1.04 14.39 +confident confident NOM m s 1.28 5.54 0.80 3.18 +confidente confident NOM f s 1.28 5.54 0.23 1.55 +confidentes confident NOM f p 1.28 5.54 0.00 0.41 +confidentialité confidentialité NOM f s 1.31 0.00 1.31 0.00 +confidentiel confidentiel ADJ m s 9.57 4.73 5.68 2.77 +confidentielle confidentiel ADJ f s 9.57 4.73 1.72 0.88 +confidentiellement confidentiellement ADV 0.37 0.41 0.37 0.41 +confidentielles confidentiel ADJ f p 9.57 4.73 0.84 0.68 +confidentiels confidentiel ADJ m p 9.57 4.73 1.33 0.41 +confidents confident NOM m p 1.28 5.54 0.26 0.41 +confie confier VER 41.48 69.53 8.29 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confient confier VER 41.48 69.53 0.38 0.81 ind:pre:3p; +confier confier VER 41.48 69.53 11.59 16.62 ind:pre:2p;inf; +confiera confier VER 41.48 69.53 0.24 0.27 ind:fut:3s; +confierai confier VER 41.48 69.53 0.31 0.54 ind:fut:1s; +confieraient confier VER 41.48 69.53 0.01 0.14 cnd:pre:3p; +confierais confier VER 41.48 69.53 0.27 0.07 cnd:pre:1s; +confierait confier VER 41.48 69.53 0.23 0.95 cnd:pre:3s; +confieras confier VER 41.48 69.53 0.10 0.00 ind:fut:2s; +confierez confier VER 41.48 69.53 0.04 0.07 ind:fut:2p; +confieriez confier VER 41.48 69.53 0.04 0.07 cnd:pre:2p; +confiez confier VER 41.48 69.53 1.15 0.88 imp:pre:2p;ind:pre:2p; +configuration configuration NOM f s 1.15 1.55 1.00 1.55 +configurations configuration NOM f p 1.15 1.55 0.15 0.00 +configure configurer VER 0.18 0.00 0.05 0.00 imp:pre:2s;ind:pre:1s; +configurer configurer VER 0.18 0.00 0.07 0.00 inf; +configuré configurer VER m s 0.18 0.00 0.07 0.00 par:pas; +confiions confier VER 41.48 69.53 0.00 0.07 ind:imp:1p; +confina confiner VER 1.83 5.34 0.00 0.07 ind:pas:3s; +confinaient confiner VER 1.83 5.34 0.00 0.54 ind:imp:3p; +confinait confiner VER 1.83 5.34 0.00 0.68 ind:imp:3s; +confinant confiner VER 1.83 5.34 0.01 0.20 par:pre; +confine confiner VER 1.83 5.34 0.20 0.61 ind:pre:3s; +confinement confinement NOM m s 1.01 0.34 1.01 0.34 +confinent confiner VER 1.83 5.34 0.00 0.20 ind:pre:3p; +confiner confiner VER 1.83 5.34 0.23 0.34 inf; +confinerez confiner VER 1.83 5.34 0.01 0.00 ind:fut:2p; +confins confins NOM m p 1.66 7.30 1.66 7.30 +confiné confiner VER m s 1.83 5.34 0.78 1.08 par:pas; +confinée confiner VER f s 1.83 5.34 0.20 0.88 par:pas; +confinées confiner VER f p 1.83 5.34 0.02 0.20 par:pas; +confinés confiner VER m p 1.83 5.34 0.38 0.54 par:pas; +confiâmes confier VER 41.48 69.53 0.00 0.07 ind:pas:1p; +confions confier VER 41.48 69.53 0.89 0.14 imp:pre:1p;ind:pre:1p; +confiât confier VER 41.48 69.53 0.00 0.47 sub:imp:3s; +confiote confiote NOM f s 0.02 0.20 0.02 0.14 +confiotes confiote NOM f p 0.02 0.20 0.00 0.07 +confire confire VER 0.30 0.95 0.01 0.00 inf; +confirma confirmer VER 33.80 27.57 0.06 3.45 ind:pas:3s; +confirmai confirmer VER 33.80 27.57 0.00 0.54 ind:pas:1s; +confirmaient confirmer VER 33.80 27.57 0.17 0.74 ind:imp:3p; +confirmais confirmer VER 33.80 27.57 0.01 0.14 ind:imp:1s; +confirmait confirmer VER 33.80 27.57 0.05 2.57 ind:imp:3s; +confirmant confirmer VER 33.80 27.57 0.50 1.08 par:pre; +confirmation confirmation NOM f s 5.55 5.27 5.15 5.14 +confirmations confirmation NOM f p 5.55 5.27 0.40 0.14 +confirme confirmer VER 33.80 27.57 9.27 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confirment confirmer VER 33.80 27.57 1.75 0.68 ind:pre:3p; +confirmer confirmer VER 33.80 27.57 7.26 6.96 ind:pre:2p;inf; +confirmera confirmer VER 33.80 27.57 1.35 0.27 ind:fut:3s; +confirmerai confirmer VER 33.80 27.57 0.11 0.07 ind:fut:1s; +confirmeraient confirmer VER 33.80 27.57 0.03 0.00 cnd:pre:3p; +confirmerait confirmer VER 33.80 27.57 0.17 0.68 cnd:pre:3s; +confirmerez confirmer VER 33.80 27.57 0.05 0.00 ind:fut:2p; +confirmeront confirmer VER 33.80 27.57 0.38 0.14 ind:fut:3p; +confirmes confirmer VER 33.80 27.57 0.31 0.07 ind:pre:2s; +confirmez confirmer VER 33.80 27.57 2.63 0.00 imp:pre:2p;ind:pre:2p; +confirmions confirmer VER 33.80 27.57 0.01 0.07 ind:imp:1p; +confirmâmes confirmer VER 33.80 27.57 0.10 0.00 ind:pas:1p; +confirmons confirmer VER 33.80 27.57 0.31 0.00 imp:pre:1p;ind:pre:1p; +confirmât confirmer VER 33.80 27.57 0.00 0.20 sub:imp:3s; +confirmèrent confirmer VER 33.80 27.57 0.01 0.61 ind:pas:3p; +confirmé confirmer VER m s 33.80 27.57 7.73 3.92 par:pas; +confirmée confirmé ADJ f s 3.84 1.28 1.04 0.27 +confirmées confirmer VER f p 33.80 27.57 0.40 0.14 par:pas; +confirmés confirmé ADJ m p 3.84 1.28 0.40 0.14 +confiscation confiscation NOM f s 0.47 0.81 0.41 0.74 +confiscations confiscation NOM f p 0.47 0.81 0.05 0.07 +confiserie confiserie NOM f s 1.56 1.69 0.91 0.95 +confiseries confiserie NOM f p 1.56 1.69 0.66 0.74 +confiseur confiseur NOM m s 0.27 1.15 0.22 0.54 +confiseurs confiseur NOM m p 0.27 1.15 0.04 0.61 +confiseuse confiseur NOM f s 0.27 1.15 0.01 0.00 +confisqua confisquer VER 5.92 3.58 0.02 0.34 ind:pas:3s; +confisquaient confisquer VER 5.92 3.58 0.01 0.07 ind:imp:3p; +confisquait confisquer VER 5.92 3.58 0.01 0.47 ind:imp:3s; +confisquant confisquer VER 5.92 3.58 0.01 0.14 par:pre; +confisque confisquer VER 5.92 3.58 1.11 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confisquent confisquer VER 5.92 3.58 0.20 0.14 ind:pre:3p; +confisquer confisquer VER 5.92 3.58 1.03 0.54 inf; +confisquera confisquer VER 5.92 3.58 0.01 0.07 ind:fut:3s; +confisquerai confisquer VER 5.92 3.58 0.03 0.00 ind:fut:1s; +confisqueraient confisquer VER 5.92 3.58 0.01 0.00 cnd:pre:3p; +confisquerait confisquer VER 5.92 3.58 0.01 0.00 cnd:pre:3s; +confisquerons confisquer VER 5.92 3.58 0.34 0.00 ind:fut:1p; +confisqueront confisquer VER 5.92 3.58 0.03 0.00 ind:fut:3p; +confisquez confisquer VER 5.92 3.58 0.16 0.00 imp:pre:2p;ind:pre:2p; +confisquons confisquer VER 5.92 3.58 0.02 0.00 ind:pre:1p; +confisquât confisquer VER 5.92 3.58 0.00 0.07 sub:imp:3s; +confisquèrent confisquer VER 5.92 3.58 0.00 0.07 ind:pas:3p; +confisqué confisquer VER m s 5.92 3.58 2.06 0.68 par:pas; +confisquée confisquer VER f s 5.92 3.58 0.36 0.41 par:pas; +confisquées confisquer VER f p 5.92 3.58 0.19 0.27 par:pas; +confisqués confisquer VER m p 5.92 3.58 0.30 0.20 par:pas; +confit confit ADJ m s 0.71 2.43 0.25 0.20 +confite confit ADJ f s 0.71 2.43 0.15 0.34 +confiteor confiteor NOM m 0.00 0.41 0.00 0.41 +confites confit ADJ f p 0.71 2.43 0.17 0.34 +confièrent confier VER 41.48 69.53 0.11 0.47 ind:pas:3p; +confits confit ADJ m p 0.71 2.43 0.15 1.55 +confiture confiture NOM f s 7.41 15.41 6.71 8.72 +confitures confiture NOM f p 7.41 15.41 0.70 6.69 +confituriers confiturier NOM m p 0.01 0.14 0.00 0.14 +confiturière confiturier NOM f s 0.01 0.14 0.01 0.00 +confié confier VER m s 41.48 69.53 10.71 15.00 par:pas; +confiée confier VER f s 41.48 69.53 3.38 4.19 par:pas; +confiées confier VER f p 41.48 69.53 0.69 0.68 par:pas; +confiés confier VER m p 41.48 69.53 0.92 0.95 par:pas; +conflagration conflagration NOM f s 0.00 0.41 0.00 0.41 +conflictuel conflictuel ADJ m s 0.70 0.00 0.18 0.00 +conflictuelle conflictuel ADJ f s 0.70 0.00 0.33 0.00 +conflictuelles conflictuel ADJ f p 0.70 0.00 0.06 0.00 +conflictuels conflictuel ADJ m p 0.70 0.00 0.13 0.00 +conflit conflit NOM m s 13.79 14.12 9.63 11.08 +conflits conflit NOM m p 13.79 14.12 4.16 3.04 +confluaient confluer VER 0.07 0.68 0.00 0.14 ind:imp:3p; +confluait confluer VER 0.07 0.68 0.00 0.14 ind:imp:3s; +confluant confluer VER 0.07 0.68 0.00 0.07 par:pre; +conflue confluer VER 0.07 0.68 0.01 0.07 ind:pre:3s; +confluence confluence NOM f s 0.27 0.27 0.27 0.27 +confluent confluent NOM m s 0.21 0.88 0.21 0.81 +confluents confluent NOM m p 0.21 0.88 0.00 0.07 +confluer confluer VER 0.07 0.68 0.05 0.14 inf; +conflué confluer VER m s 0.07 0.68 0.00 0.07 par:pas; +confond confondre VER 16.09 53.85 2.09 5.47 ind:pre:3s; +confondît confondre VER 16.09 53.85 0.00 0.14 sub:imp:3s; +confondaient confondre VER 16.09 53.85 0.05 4.73 ind:imp:3p; +confondais confondre VER 16.09 53.85 0.16 0.81 ind:imp:1s;ind:imp:2s; +confondait confondre VER 16.09 53.85 0.21 8.58 ind:imp:3s; +confondant confondre VER 16.09 53.85 0.03 2.23 par:pre; +confondante confondant ADJ f s 0.01 0.95 0.01 0.14 +confondantes confondant ADJ f p 0.01 0.95 0.00 0.20 +confondants confondant ADJ m p 0.01 0.95 0.00 0.20 +confonde confondre VER 16.09 53.85 0.22 0.68 sub:pre:1s;sub:pre:3s; +confondent confondre VER 16.09 53.85 1.01 4.19 ind:pre:3p; +confondez confondre VER 16.09 53.85 0.89 0.74 imp:pre:2p;ind:pre:2p; +confondions confondre VER 16.09 53.85 0.00 0.47 ind:imp:1p; +confondirent confondre VER 16.09 53.85 0.00 0.41 ind:pas:3p; +confondis confondre VER 16.09 53.85 0.00 0.14 ind:pas:1s; +confondit confondre VER 16.09 53.85 0.04 1.08 ind:pas:3s; +confondons confondre VER 16.09 53.85 0.16 0.27 imp:pre:1p; +confondra confondre VER 16.09 53.85 0.20 0.34 ind:fut:3s; +confondrai confondre VER 16.09 53.85 0.01 0.00 ind:fut:1s; +confondrais confondre VER 16.09 53.85 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +confondrait confondre VER 16.09 53.85 0.41 0.27 cnd:pre:3s; +confondre confondre VER 16.09 53.85 4.83 13.18 inf; +confondrez confondre VER 16.09 53.85 0.01 0.07 ind:fut:2p; +confondront confondre VER 16.09 53.85 0.31 0.14 ind:fut:3p; +confonds confondre VER 16.09 53.85 2.50 1.82 imp:pre:2s;ind:pre:1s;ind:pre:2s; +confondu confondre VER m s 16.09 53.85 2.50 3.65 par:pas; +confondue confondre VER f s 16.09 53.85 0.32 1.62 par:pas; +confondues confondu ADJ f p 0.30 3.85 0.06 1.42 +confondus confondu ADJ m p 0.30 3.85 0.21 1.69 +conformai conformer VER 1.62 5.00 0.00 0.07 ind:pas:1s; +conformaient conformer VER 1.62 5.00 0.00 0.07 ind:imp:3p; +conformais conformer VER 1.62 5.00 0.00 0.14 ind:imp:1s; +conformait conformer VER 1.62 5.00 0.01 0.54 ind:imp:3s; +conformant conformer VER 1.62 5.00 0.25 0.41 par:pre; +conformation conformation NOM f s 0.01 0.27 0.01 0.27 +conforme conforme ADJ s 2.07 10.20 1.63 8.18 +conforment conformer VER 1.62 5.00 0.13 0.20 ind:pre:3p; +conformer conformer VER 1.62 5.00 0.60 2.16 inf; +conformera conformer VER 1.62 5.00 0.06 0.00 ind:fut:3s; +conformerai conformer VER 1.62 5.00 0.15 0.00 ind:fut:1s; +conformeraient conformer VER 1.62 5.00 0.00 0.07 cnd:pre:3p; +conformerez conformer VER 1.62 5.00 0.01 0.00 ind:fut:2p; +conformes conforme ADJ p 2.07 10.20 0.44 2.03 +conformisme conformisme NOM m s 1.22 3.31 1.22 3.24 +conformismes conformisme NOM m p 1.22 3.31 0.00 0.07 +conformiste conformiste NOM s 0.42 0.95 0.32 0.47 +conformistes conformiste NOM p 0.42 0.95 0.10 0.47 +conformité conformité NOM f s 0.52 1.22 0.52 1.22 +conformât conformer VER 1.62 5.00 0.00 0.20 sub:imp:3s; +conformé conformer VER m s 1.62 5.00 0.04 0.14 par:pas; +conformée conformer VER f s 1.62 5.00 0.01 0.07 par:pas; +conformément conformément ADV 3.09 4.26 3.09 4.26 +confort confort NOM m s 6.02 17.03 5.97 16.62 +conforta conforter VER 0.47 1.82 0.00 0.14 ind:pas:3s; +confortable confortable ADJ s 13.78 15.20 12.04 12.30 +confortablement confortablement ADV 1.54 3.24 1.54 3.24 +confortables confortable ADJ p 13.78 15.20 1.74 2.91 +confortaient conforter VER 0.47 1.82 0.00 0.07 ind:imp:3p; +confortait conforter VER 0.47 1.82 0.00 0.07 ind:imp:3s; +confortant conforter VER 0.47 1.82 0.01 0.00 par:pre; +conforte conforter VER 0.47 1.82 0.16 0.14 ind:pre:1s;ind:pre:3s; +conforter conforter VER 0.47 1.82 0.23 0.61 inf; +conforterait conforter VER 0.47 1.82 0.01 0.07 cnd:pre:3s; +conforts confort NOM m p 6.02 17.03 0.05 0.41 +conforté conforter VER m s 0.47 1.82 0.05 0.41 par:pas; +confortée conforter VER f s 0.47 1.82 0.01 0.34 par:pas; +confraternel confraternel ADJ m s 0.01 0.41 0.01 0.14 +confraternelle confraternel ADJ f s 0.01 0.41 0.00 0.07 +confraternellement confraternellement ADV 0.00 0.07 0.00 0.07 +confraternelles confraternel ADJ f p 0.01 0.41 0.00 0.14 +confraternels confraternel ADJ m p 0.01 0.41 0.00 0.07 +confraternité confraternité NOM f s 0.00 0.07 0.00 0.07 +confrontai confronter VER 8.14 5.41 0.00 0.07 ind:pas:1s; +confrontaient confronter VER 8.14 5.41 0.00 0.14 ind:imp:3p; +confrontais confronter VER 8.14 5.41 0.01 0.14 ind:imp:1s; +confrontait confronter VER 8.14 5.41 0.01 0.14 ind:imp:3s; +confrontant confronter VER 8.14 5.41 0.05 0.27 par:pre; +confrontation confrontation NOM f s 2.44 3.45 2.12 2.84 +confrontations confrontation NOM f p 2.44 3.45 0.32 0.61 +confronte confronter VER 8.14 5.41 0.59 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +confrontent confronter VER 8.14 5.41 0.16 0.20 ind:pre:3p; +confronter confronter VER 8.14 5.41 2.11 1.35 inf; +confrontez confronter VER 8.14 5.41 0.08 0.00 imp:pre:2p;ind:pre:2p; +confrontons confronter VER 8.14 5.41 0.06 0.00 imp:pre:1p;ind:pre:1p; +confrontèrent confronter VER 8.14 5.41 0.00 0.07 ind:pas:3p; +confronté confronter VER m s 8.14 5.41 2.76 1.28 par:pas; +confrontée confronter VER f s 8.14 5.41 0.69 0.61 par:pas; +confrontées confronter VER f p 8.14 5.41 0.19 0.27 par:pas; +confrontés confronter VER m p 8.14 5.41 1.43 0.68 par:pas; +confrère confrère NOM m s 3.98 11.28 2.76 5.00 +confrères confrère NOM m p 3.98 11.28 1.22 6.28 +confrérie confrérie NOM f s 3.02 1.69 2.86 1.49 +confréries confrérie NOM f p 3.02 1.69 0.16 0.20 +confère conférer VER 2.99 13.18 0.78 3.11 ind:pre:1s;ind:pre:3s; +confèrent conférer VER 2.99 13.18 0.17 0.54 ind:pre:3p; +confucianisme confucianisme NOM m s 0.02 0.14 0.02 0.14 +confucéenne confucéen ADJ f s 0.00 0.07 0.00 0.07 +confédéral confédéral ADJ m s 0.00 0.14 0.00 0.07 +confédération confédération NOM f s 0.56 1.15 0.56 1.15 +confédéraux confédéral ADJ m p 0.00 0.14 0.00 0.07 +confédérer confédérer VER 0.03 0.07 0.00 0.07 inf; +confédéré confédéré ADJ m s 0.79 0.00 0.36 0.00 +confédérée confédéré ADJ f s 0.79 0.00 0.11 0.00 +confédérés confédéré NOM m p 0.95 0.07 0.86 0.07 +conféra conférer VER 2.99 13.18 0.00 0.14 ind:pas:3s; +conféraient conférer VER 2.99 13.18 0.00 0.81 ind:imp:3p; +conférais conférer VER 2.99 13.18 0.00 0.07 ind:imp:1s; +conférait conférer VER 2.99 13.18 0.04 3.24 ind:imp:3s; +conférant conférer VER 2.99 13.18 0.03 0.95 par:pre; +conférence conférence NOM f s 19.86 22.03 17.37 16.28 +conférences_débat conférences_débat NOM f p 0.00 0.07 0.00 0.07 +conférences conférence NOM f p 19.86 22.03 2.49 5.74 +conférencier conférencier NOM m s 0.43 0.95 0.26 0.61 +conférenciers conférencier NOM m p 0.43 0.95 0.15 0.34 +conférencière conférencier NOM f s 0.43 0.95 0.03 0.00 +conférents conférent NOM m p 0.00 0.07 0.00 0.07 +conférer conférer VER 2.99 13.18 0.09 2.30 inf; +conférera conférer VER 2.99 13.18 0.01 0.07 ind:fut:3s; +conféreraient conférer VER 2.99 13.18 0.00 0.07 cnd:pre:3p; +conférerait conférer VER 2.99 13.18 0.00 0.14 cnd:pre:3s; +conférerez conférer VER 2.99 13.18 0.00 0.07 ind:fut:2p; +conféreront conférer VER 2.99 13.18 0.01 0.07 ind:fut:3p; +conférez conférer VER 2.99 13.18 0.01 0.00 ind:pre:2p; +conférât conférer VER 2.99 13.18 0.00 0.07 sub:imp:3s; +conférèrent conférer VER 2.99 13.18 0.00 0.07 ind:pas:3p; +conféré conférer VER m s 2.99 13.18 0.22 0.95 par:pas; +conférée conférer VER f s 2.99 13.18 0.18 0.27 par:pas; +conférées conférer VER f p 2.99 13.18 0.01 0.07 par:pas; +conférés conférer VER m p 2.99 13.18 1.45 0.20 par:pas; +confus confus ADJ m 11.02 37.23 7.48 19.86 +confuse confus ADJ f s 11.02 37.23 2.76 12.70 +confuses confus ADJ f p 11.02 37.23 0.77 4.66 +confusion confusion NOM f s 8.53 20.61 8.12 20.07 +confusionnisme confusionnisme NOM m s 0.01 0.07 0.01 0.07 +confusions confusion NOM f p 8.53 20.61 0.41 0.54 +confusément confusément ADV 0.03 10.00 0.03 10.00 +conga conga NOM f s 0.20 0.07 0.14 0.07 +congaïs congaï NOM f p 0.00 0.07 0.00 0.07 +congas conga NOM f p 0.20 0.07 0.06 0.00 +congayes congaye NOM f p 0.00 0.07 0.00 0.07 +congela congeler VER 3.85 0.74 0.02 0.00 ind:pas:3s; +congelait congeler VER 3.85 0.74 0.01 0.00 ind:imp:3s; +congelant congeler VER 3.85 0.74 0.01 0.00 par:pre; +congeler congeler VER 3.85 0.74 1.12 0.14 inf; +congelez congeler VER 3.85 0.74 0.04 0.00 imp:pre:2p;ind:pre:2p; +congelons congeler VER 3.85 0.74 0.16 0.00 ind:pre:1p; +congelé congelé ADJ m s 1.87 0.68 1.16 0.27 +congelée congeler VER f s 3.85 0.74 0.57 0.14 par:pas; +congelées congelé ADJ f p 1.87 0.68 0.23 0.07 +congelés congelé ADJ m p 1.87 0.68 0.31 0.27 +congestif congestif ADJ m s 0.07 0.00 0.03 0.00 +congestion congestion NOM f s 1.10 1.76 1.08 1.69 +congestionnaient congestionner VER 0.16 1.42 0.00 0.07 ind:imp:3p; +congestionnait congestionner VER 0.16 1.42 0.00 0.20 ind:imp:3s; +congestionne congestionner VER 0.16 1.42 0.01 0.07 ind:pre:3s; +congestionnent congestionner VER 0.16 1.42 0.11 0.00 ind:pre:3p; +congestionné congestionner VER m s 0.16 1.42 0.03 0.74 par:pas; +congestionnée congestionné ADJ f s 0.10 2.43 0.04 0.27 +congestionnées congestionné ADJ f p 0.10 2.43 0.04 0.20 +congestionnés congestionné ADJ m p 0.10 2.43 0.01 0.54 +congestions congestion NOM f p 1.10 1.76 0.03 0.07 +congestive congestif ADJ f s 0.07 0.00 0.04 0.00 +conglobation conglobation NOM f s 0.00 0.07 0.00 0.07 +conglomérat conglomérat NOM m s 0.44 0.54 0.38 0.41 +conglomérats conglomérat NOM m p 0.44 0.54 0.06 0.14 +conglomérée conglomérer VER f s 0.00 0.07 0.00 0.07 par:pas; +congolais congolais ADJ m 0.30 0.20 0.28 0.07 +congolaise congolais ADJ f s 0.30 0.20 0.01 0.14 +congrûment congrûment ADV 0.00 0.07 0.00 0.07 +congratula congratuler VER 0.19 2.30 0.00 0.07 ind:pas:3s; +congratulaient congratuler VER 0.19 2.30 0.00 0.41 ind:imp:3p; +congratulait congratuler VER 0.19 2.30 0.00 0.47 ind:imp:3s; +congratulant congratuler VER 0.19 2.30 0.00 0.07 par:pre; +congratulations congratulation NOM f p 0.09 0.41 0.09 0.41 +congratule congratuler VER 0.19 2.30 0.01 0.14 ind:pre:3s; +congratulent congratuler VER 0.19 2.30 0.00 0.27 ind:pre:3p; +congratuler congratuler VER 0.19 2.30 0.17 0.47 inf; +congratulions congratuler VER 0.19 2.30 0.00 0.07 ind:imp:1p; +congratulâmes congratuler VER 0.19 2.30 0.00 0.07 ind:pas:1p; +congratulèrent congratuler VER 0.19 2.30 0.00 0.14 ind:pas:3p; +congratulé congratuler VER m s 0.19 2.30 0.01 0.07 par:pas; +congratulés congratuler VER m p 0.19 2.30 0.00 0.07 par:pas; +congre congre NOM m s 0.44 0.20 0.01 0.14 +congres congre NOM m p 0.44 0.20 0.43 0.07 +congressistes congressiste NOM p 0.04 0.20 0.04 0.20 +congrès congrès NOM m 15.77 8.78 15.77 8.78 +congrue congru ADJ f s 0.00 0.34 0.00 0.34 +congréganiste congréganiste NOM s 0.00 0.07 0.00 0.07 +congrégation congrégation NOM f s 1.34 0.61 1.33 0.34 +congrégationaliste congrégationaliste ADJ f s 0.01 0.00 0.01 0.00 +congrégations congrégation NOM f p 1.34 0.61 0.01 0.27 +congèle congeler VER 3.85 0.74 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +congèlera congeler VER 3.85 0.74 0.11 0.00 ind:fut:3s; +congèlerais congeler VER 3.85 0.74 0.01 0.00 cnd:pre:1s; +congère congère NOM f s 0.05 1.15 0.02 0.34 +congères congère NOM f p 0.05 1.15 0.03 0.81 +congé congé NOM m s 20.74 21.62 18.16 17.64 +congédia congédier VER 2.17 3.45 0.00 0.68 ind:pas:3s; +congédiai congédier VER 2.17 3.45 0.00 0.07 ind:pas:1s; +congédiait congédier VER 2.17 3.45 0.00 0.14 ind:imp:3s; +congédiant congédier VER 2.17 3.45 0.00 0.20 par:pre; +congédie congédier VER 2.17 3.45 0.38 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +congédiement congédiement NOM m s 0.02 0.14 0.02 0.14 +congédient congédier VER 2.17 3.45 0.01 0.00 ind:pre:3p; +congédier congédier VER 2.17 3.45 0.68 0.81 inf; +congédiez congédier VER 2.17 3.45 0.08 0.00 imp:pre:2p;ind:pre:2p; +congédié congédier VER m s 2.17 3.45 0.69 0.68 par:pas; +congédiée congédier VER f s 2.17 3.45 0.26 0.00 par:pas; +congédiées congédier VER f p 2.17 3.45 0.00 0.07 par:pas; +congédiés congédier VER m p 2.17 3.45 0.07 0.14 par:pas; +congélateur congélateur NOM m s 2.00 0.34 1.96 0.34 +congélateurs congélateur NOM m p 2.00 0.34 0.04 0.00 +congélation congélation NOM f s 0.49 0.47 0.49 0.47 +congénital congénital ADJ m s 0.82 1.96 0.34 0.61 +congénitale congénital ADJ f s 0.82 1.96 0.34 1.08 +congénitalement congénitalement ADV 0.00 0.20 0.00 0.20 +congénitales congénital ADJ f p 0.82 1.96 0.13 0.14 +congénitaux congénital ADJ m p 0.82 1.96 0.02 0.14 +congénère congénère NOM s 0.38 1.89 0.02 0.27 +congénères congénère NOM p 0.38 1.89 0.36 1.62 +congés congé NOM m p 20.74 21.62 2.58 3.99 +conifère conifère NOM m s 0.15 0.81 0.02 0.07 +conifères conifère NOM m p 0.15 0.81 0.13 0.74 +conique conique ADJ s 0.07 2.64 0.06 1.76 +coniques conique ADJ p 0.07 2.64 0.01 0.88 +conjecturai conjecturer VER 0.23 0.20 0.01 0.00 ind:pas:1s; +conjectural conjectural ADJ m s 0.01 0.07 0.00 0.07 +conjecturale conjectural ADJ f s 0.01 0.07 0.01 0.00 +conjecture conjecture NOM f s 0.65 1.55 0.28 0.27 +conjecturent conjecturer VER 0.23 0.20 0.01 0.00 ind:pre:3p; +conjecturer conjecturer VER 0.23 0.20 0.14 0.20 inf; +conjectures conjecture NOM f p 0.65 1.55 0.37 1.28 +conjoindre conjoindre VER 0.05 0.14 0.01 0.00 inf; +conjoint conjoint NOM m s 0.98 1.76 0.55 1.08 +conjointe conjoint ADJ f s 0.48 0.95 0.30 0.68 +conjointement conjointement ADV 0.23 1.35 0.23 1.35 +conjointes conjoint ADJ f p 0.48 0.95 0.06 0.07 +conjoints conjoint NOM m p 0.98 1.76 0.41 0.54 +conjoncteur conjoncteur NOM m s 0.01 0.00 0.01 0.00 +conjonctif conjonctif ADJ m s 0.11 0.07 0.09 0.00 +conjonction conjonction NOM f s 0.41 2.43 0.41 1.96 +conjonctions conjonction NOM f p 0.41 2.43 0.00 0.47 +conjonctive conjonctif ADJ f s 0.11 0.07 0.01 0.00 +conjonctive conjonctive NOM f s 0.01 0.07 0.01 0.00 +conjonctives conjonctif ADJ f p 0.11 0.07 0.01 0.07 +conjonctivite conjonctivite NOM f s 0.54 0.47 0.39 0.34 +conjonctivites conjonctivite NOM f p 0.54 0.47 0.16 0.14 +conjoncture conjoncture NOM f s 0.80 2.50 0.79 2.16 +conjonctures conjoncture NOM f p 0.80 2.50 0.01 0.34 +conjugaison conjugaison NOM f s 0.14 1.15 0.04 0.74 +conjugaisons conjugaison NOM f p 0.14 1.15 0.10 0.41 +conjugal conjugal ADJ m s 4.88 9.59 1.42 4.46 +conjugale conjugal ADJ f s 4.88 9.59 2.08 3.18 +conjugalement conjugalement ADV 0.00 0.07 0.00 0.07 +conjugales conjugal ADJ f p 4.88 9.59 0.67 1.08 +conjugalité conjugalité NOM f s 0.00 0.27 0.00 0.27 +conjugaux conjugal ADJ m p 4.88 9.59 0.72 0.88 +conjuguaient conjuguer VER 0.59 5.74 0.00 0.20 ind:imp:3p; +conjuguait conjuguer VER 0.59 5.74 0.00 0.27 ind:imp:3s; +conjuguant conjuguer VER 0.59 5.74 0.00 0.07 par:pre; +conjugue conjuguer VER 0.59 5.74 0.27 0.20 imp:pre:2s;ind:pre:3s; +conjuguent conjuguer VER 0.59 5.74 0.00 0.54 ind:pre:3p; +conjuguer conjuguer VER 0.59 5.74 0.21 1.01 inf; +conjuguerions conjuguer VER 0.59 5.74 0.00 0.07 cnd:pre:1p; +conjugues conjuguer VER 0.59 5.74 0.00 0.14 ind:pre:2s; +conjugué conjugué ADJ m s 0.15 0.41 0.15 0.34 +conjuguée conjuguer VER f s 0.59 5.74 0.00 0.74 par:pas; +conjuguées conjuguer VER f p 0.59 5.74 0.00 0.68 par:pas; +conjugués conjuguer VER m p 0.59 5.74 0.12 1.08 par:pas; +conjungo conjungo NOM m s 0.00 0.27 0.00 0.20 +conjungos conjungo NOM m p 0.00 0.27 0.00 0.07 +conjura conjurer VER 5.88 6.35 0.00 0.20 ind:pas:3s; +conjurait conjurer VER 5.88 6.35 0.00 0.20 ind:imp:3s; +conjurant conjurer VER 5.88 6.35 0.02 0.07 par:pre; +conjurateur conjurateur NOM m s 0.01 0.00 0.01 0.00 +conjuration conjuration NOM f s 0.32 1.69 0.32 1.35 +conjurations conjuration NOM f p 0.32 1.69 0.00 0.34 +conjuratoire conjuratoire ADJ f s 0.01 0.00 0.01 0.00 +conjure conjurer VER 5.88 6.35 5.01 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conjurer conjurer VER 5.88 6.35 0.49 3.78 inf; +conjurera conjurer VER 5.88 6.35 0.00 0.07 ind:fut:3s; +conjuré conjurer VER m s 5.88 6.35 0.21 0.27 par:pas; +conjurée conjuré NOM f s 0.56 0.47 0.01 0.07 +conjurées conjurer VER f p 5.88 6.35 0.00 0.07 par:pas; +conjurés conjuré NOM m p 0.56 0.47 0.55 0.34 +connûmes connaître VER 961.03 629.19 0.01 0.20 ind:pas:1p; +connût connaître VER 961.03 629.19 0.00 2.23 sub:imp:3s; +connaît connaître VER 961.03 629.19 103.42 57.03 ind:pre:3s; +connaîtra connaître VER 961.03 629.19 2.67 1.69 ind:fut:3s; +connaîtrai connaître VER 961.03 629.19 1.17 1.96 ind:fut:1s; +connaîtraient connaître VER 961.03 629.19 0.07 0.95 cnd:pre:3p; +connaîtrais connaître VER 961.03 629.19 1.54 1.62 cnd:pre:1s;cnd:pre:2s; +connaîtrait connaître VER 961.03 629.19 0.72 2.77 cnd:pre:3s; +connaîtras connaître VER 961.03 629.19 1.85 1.42 ind:fut:2s; +connaître connaître VER 961.03 629.19 88.63 90.07 inf;; +connaîtrez connaître VER 961.03 629.19 1.47 0.74 ind:fut:2p; +connaîtriez connaître VER 961.03 629.19 0.70 0.20 cnd:pre:2p; +connaîtrions connaître VER 961.03 629.19 0.03 0.14 cnd:pre:1p; +connaîtrons connaître VER 961.03 629.19 0.76 0.88 ind:fut:1p; +connaîtront connaître VER 961.03 629.19 0.81 0.74 ind:fut:3p; +connais connaître VER 961.03 629.19 415.87 111.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +connaissable connaissable ADJ m s 0.01 0.20 0.01 0.14 +connaissables connaissable ADJ p 0.01 0.20 0.00 0.07 +connaissaient connaître VER 961.03 629.19 5.23 16.08 ind:imp:3p; +connaissais connaître VER 961.03 629.19 34.19 41.82 ind:imp:1s;ind:imp:2s; +connaissait connaître VER 961.03 629.19 20.02 90.68 ind:imp:3s; +connaissance connaissance NOM f s 43.08 67.50 36.60 55.81 +connaissances connaissance NOM f p 43.08 67.50 6.47 11.69 +connaissant connaître VER 961.03 629.19 2.65 8.51 par:pre; +connaisse connaître VER 961.03 629.19 10.78 4.32 sub:pre:1s;sub:pre:3s; +connaissement connaissement NOM m s 0.06 0.07 0.06 0.00 +connaissements connaissement NOM m p 0.06 0.07 0.00 0.07 +connaissent connaître VER 961.03 629.19 18.32 16.89 ind:pre:3p; +connaisses connaître VER 961.03 629.19 1.90 0.74 sub:pre:2s; +connaisseur connaisseur NOM m s 1.36 5.61 1.09 3.04 +connaisseurs connaisseur NOM m p 1.36 5.61 0.24 1.76 +connaisseuse connaisseur NOM f s 1.36 5.61 0.04 0.68 +connaisseuses connaisseur NOM f p 1.36 5.61 0.00 0.14 +connaissez connaître VER 961.03 629.19 125.09 29.53 imp:pre:2p;ind:pre:2p; +connaissiez connaître VER 961.03 629.19 13.71 2.84 ind:imp:2p;sub:pre:2p; +connaissions connaître VER 961.03 629.19 1.40 5.61 ind:imp:1p; +connaissons connaître VER 961.03 629.19 11.78 6.89 imp:pre:1p;ind:pre:1p; +connard connard NOM m s 50.13 6.28 40.70 4.53 +connards connard NOM m p 50.13 6.28 9.44 1.76 +connasse connasse NOM f s 5.29 2.03 5.10 1.55 +connasses connasse NOM f p 5.29 2.03 0.20 0.47 +conne con NOM f s 121.91 68.99 8.57 3.78 +conneau conneau NOM m s 0.16 0.27 0.16 0.14 +conneaux conneau NOM m p 0.16 0.27 0.00 0.14 +connectant connecter VER 8.88 0.54 0.15 0.00 par:pre; +connecte connecter VER 8.88 0.54 1.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +connectent connecter VER 8.88 0.54 0.05 0.00 ind:pre:3p; +connecter connecter VER 8.88 0.54 1.73 0.14 inf; +connectera connecter VER 8.88 0.54 0.01 0.00 ind:fut:3s; +connecteur connecteur NOM m s 0.08 0.00 0.08 0.00 +connectez connecter VER 8.88 0.54 0.34 0.00 imp:pre:2p;ind:pre:2p; +connectiez connecter VER 8.88 0.54 0.01 0.00 ind:imp:2p; +connections connecter VER 8.88 0.54 0.75 0.14 ind:imp:1p; +connectivité connectivité NOM f s 0.06 0.00 0.06 0.00 +connectons connecter VER 8.88 0.54 0.01 0.00 ind:pre:1p; +connecté connecter VER m s 8.88 0.54 3.15 0.07 par:pas; +connectée connecter VER f s 8.88 0.54 0.48 0.00 par:pas; +connectées connecter VER f p 8.88 0.54 0.18 0.07 par:pas; +connectés connecter VER m p 8.88 0.54 0.90 0.14 par:pas; +connement connement ADV 0.00 1.28 0.00 1.28 +connerie connerie NOM f s 95.42 29.73 19.68 12.50 +conneries connerie NOM f p 95.42 29.73 75.75 17.23 +connes conne NOM f p 0.71 0.00 0.71 0.00 +connexe connexe ADJ m s 0.00 0.20 0.00 0.14 +connexes connexe ADJ p 0.00 0.20 0.00 0.07 +connexion connexion NOM f s 4.45 0.95 3.71 0.47 +connexions connexion NOM f p 4.45 0.95 0.74 0.47 +connils connil NOM m p 0.00 0.07 0.00 0.07 +connivence connivence NOM f s 0.74 6.69 0.60 6.08 +connivences connivence NOM f p 0.74 6.69 0.14 0.61 +connotation connotation NOM f s 0.54 0.14 0.50 0.07 +connotations connotation NOM f p 0.54 0.14 0.04 0.07 +connu connaître VER m s 961.03 629.19 70.33 84.53 par:pas; +connue connaître VER f s 961.03 629.19 13.32 17.77 par:pas; +connues connaître VER f p 961.03 629.19 2.03 5.34 par:pas; +connurent connaître VER 961.03 629.19 0.33 1.55 ind:pas:3p; +connus connaître VER m p 961.03 629.19 9.39 14.26 ind:pas:1s;ind:pas:2s;par:pas; +connusse connaître VER 961.03 629.19 0.00 0.34 sub:imp:1s; +connussent connaître VER 961.03 629.19 0.00 0.34 sub:imp:3p; +connusses connaître VER 961.03 629.19 0.00 0.07 sub:imp:2s; +connut connaître VER 961.03 629.19 0.84 7.09 ind:pas:3s; +connétable connétable NOM m s 0.11 2.03 0.11 1.49 +connétables connétable NOM m p 0.11 2.03 0.00 0.54 +conoïdaux conoïdal ADJ m p 0.00 0.07 0.00 0.07 +conoïde conoïde ADJ s 0.00 0.07 0.00 0.07 +conquît conquérir VER 14.89 17.64 0.00 0.14 sub:imp:3s; +conque conque NOM f s 0.48 2.23 0.44 1.89 +conquerra conquérir VER 14.89 17.64 0.11 0.00 ind:fut:3s; +conquerraient conquérir VER 14.89 17.64 0.00 0.07 cnd:pre:3p; +conquerrons conquérir VER 14.89 17.64 0.02 0.00 ind:fut:1p; +conquerront conquérir VER 14.89 17.64 0.02 0.14 ind:fut:3p; +conques conque NOM f p 0.48 2.23 0.04 0.34 +conquiers conquérir VER 14.89 17.64 0.13 0.07 imp:pre:2s;ind:pre:1s; +conquiert conquérir VER 14.89 17.64 0.49 0.68 ind:pre:3s; +conquirent conquérir VER 14.89 17.64 0.02 0.07 ind:pas:3p; +conquis conquérir VER m 14.89 17.64 5.40 7.97 par:pas; +conquise conquérir VER f s 14.89 17.64 0.77 0.95 par:pas; +conquises conquis ADJ f p 0.88 2.70 0.13 0.47 +conquistador conquistador NOM m s 0.38 1.69 0.12 0.74 +conquistadores conquistador NOM m p 0.38 1.69 0.01 0.54 +conquistadors conquistador NOM m p 0.38 1.69 0.25 0.41 +conquit conquérir VER 14.89 17.64 0.29 0.81 ind:pas:3s; +conquière conquérir VER 14.89 17.64 0.02 0.07 sub:pre:1s;sub:pre:3s; +conquièrent conquérir VER 14.89 17.64 0.05 0.27 ind:pre:3p; +conquérait conquérir VER 14.89 17.64 0.01 0.07 ind:imp:3s; +conquérant conquérant NOM m s 1.34 5.20 0.82 2.64 +conquérante conquérant ADJ f s 0.53 2.64 0.29 1.01 +conquérantes conquérant ADJ f p 0.53 2.64 0.00 0.27 +conquérants conquérant NOM m p 1.34 5.20 0.52 2.36 +conquérez conquérir VER 14.89 17.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +conquérir conquérir VER 14.89 17.64 7.11 5.54 inf; +conquérons conquérir VER 14.89 17.64 0.01 0.07 ind:pre:1p; +conquête conquête NOM f s 5.95 16.42 3.85 10.88 +conquêtes conquête NOM f p 5.95 16.42 2.10 5.54 +cons con NOM m p 121.91 68.99 19.90 19.05 +consacra consacrer VER 18.27 38.18 0.29 1.89 ind:pas:3s; +consacrai consacrer VER 18.27 38.18 0.01 0.34 ind:pas:1s; +consacraient consacrer VER 18.27 38.18 0.14 0.41 ind:imp:3p; +consacrais consacrer VER 18.27 38.18 0.04 0.41 ind:imp:1s;ind:imp:2s; +consacrait consacrer VER 18.27 38.18 0.34 2.64 ind:imp:3s; +consacrant consacrer VER 18.27 38.18 0.07 1.15 par:pre; +consacre consacrer VER 18.27 38.18 2.94 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +consacrent consacrer VER 18.27 38.18 0.48 0.27 ind:pre:3p; +consacrer consacrer VER 18.27 38.18 5.10 11.89 inf; +consacrera consacrer VER 18.27 38.18 0.14 0.07 ind:fut:3s; +consacrerai consacrer VER 18.27 38.18 0.78 0.14 ind:fut:1s; +consacreraient consacrer VER 18.27 38.18 0.00 0.07 cnd:pre:3p; +consacrerais consacrer VER 18.27 38.18 0.02 0.07 cnd:pre:1s; +consacrerait consacrer VER 18.27 38.18 0.12 0.47 cnd:pre:3s; +consacreras consacrer VER 18.27 38.18 0.10 0.00 ind:fut:2s; +consacrerez consacrer VER 18.27 38.18 0.01 0.00 ind:fut:2p; +consacreriez consacrer VER 18.27 38.18 0.00 0.07 cnd:pre:2p; +consacrerions consacrer VER 18.27 38.18 0.00 0.07 cnd:pre:1p; +consacreront consacrer VER 18.27 38.18 0.11 0.00 ind:fut:3p; +consacres consacrer VER 18.27 38.18 0.31 0.20 ind:pre:2s; +consacrez consacrer VER 18.27 38.18 0.28 0.07 imp:pre:2p;ind:pre:2p; +consacriez consacrer VER 18.27 38.18 0.04 0.07 ind:imp:2p; +consacrons consacrer VER 18.27 38.18 0.39 0.07 imp:pre:1p;ind:pre:1p; +consacrèrent consacrer VER 18.27 38.18 0.00 0.20 ind:pas:3p; +consacré consacrer VER m s 18.27 38.18 4.13 6.15 par:pas; +consacrée consacrer VER f s 18.27 38.18 2.15 4.53 par:pas; +consacrées consacré ADJ f p 1.53 2.77 0.12 0.61 +consacrés consacrer VER m p 18.27 38.18 0.22 2.30 par:pas; +consanguin consanguin ADJ m s 0.13 0.61 0.02 0.14 +consanguine consanguin ADJ f s 0.13 0.61 0.02 0.07 +consanguinité consanguinité NOM f s 0.22 0.27 0.22 0.20 +consanguinités consanguinité NOM f p 0.22 0.27 0.00 0.07 +consanguins consanguin ADJ m p 0.13 0.61 0.09 0.41 +consciemment consciemment ADV 0.92 2.36 0.92 2.36 +conscience conscience NOM f s 45.53 81.55 44.46 80.07 +consciences conscience NOM f p 45.53 81.55 1.07 1.49 +consciencieuse consciencieux ADJ f s 1.64 3.38 0.17 0.68 +consciencieusement consciencieusement ADV 0.25 4.86 0.25 4.86 +consciencieuses consciencieux ADJ f p 1.64 3.38 0.01 0.41 +consciencieux consciencieux ADJ m 1.64 3.38 1.45 2.30 +conscient conscient ADJ m s 15.15 14.59 8.51 7.43 +consciente conscient ADJ f s 15.15 14.59 4.00 4.32 +conscientes conscient ADJ f p 15.15 14.59 0.34 0.47 +conscients conscient ADJ m p 15.15 14.59 2.30 2.36 +conscription conscription NOM f s 0.16 0.20 0.16 0.20 +conscrit conscrit NOM m s 0.27 1.89 0.02 0.88 +conscrits conscrit NOM m p 0.27 1.89 0.25 1.01 +conseil conseil NOM m s 87.14 84.46 68.86 58.18 +conseilla conseiller VER 32.11 34.93 0.03 4.59 ind:pas:3s; +conseillai conseiller VER 32.11 34.93 0.00 0.68 ind:pas:1s; +conseillaient conseiller VER 32.11 34.93 0.20 0.47 ind:imp:3p; +conseillais conseiller VER 32.11 34.93 0.22 0.74 ind:imp:1s;ind:imp:2s; +conseillait conseiller VER 32.11 34.93 0.09 3.51 ind:imp:3s; +conseillant conseiller VER 32.11 34.93 0.18 0.88 par:pre; +conseille conseiller VER 32.11 34.93 13.40 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +conseillent conseiller VER 32.11 34.93 0.29 0.14 ind:pre:3p; +conseiller conseiller NOM m s 22.97 19.32 16.42 11.62 +conseillera conseiller VER 32.11 34.93 0.08 0.14 ind:fut:3s; +conseillerai conseiller VER 32.11 34.93 0.24 0.14 ind:fut:1s; +conseillerais conseiller VER 32.11 34.93 0.72 0.47 cnd:pre:1s; +conseillerait conseiller VER 32.11 34.93 0.07 0.20 cnd:pre:3s; +conseillerez conseiller VER 32.11 34.93 0.12 0.14 ind:fut:2p; +conseilleriez conseiller VER 32.11 34.93 0.07 0.07 cnd:pre:2p; +conseillers conseiller NOM m p 22.97 19.32 4.74 6.89 +conseilles conseiller VER 32.11 34.93 0.83 0.20 ind:pre:2s; +conseilleurs conseilleur NOM m p 0.00 0.07 0.00 0.07 +conseillez conseiller VER 32.11 34.93 1.63 0.61 imp:pre:2p;ind:pre:2p; +conseillons conseiller VER 32.11 34.93 0.78 0.00 imp:pre:1p;ind:pre:1p; +conseillère conseiller NOM f s 22.97 19.32 1.82 0.74 +conseillèrent conseiller VER 32.11 34.93 0.01 0.27 ind:pas:3p; +conseillères conseillère NOM f p 0.04 0.00 0.04 0.00 +conseillé conseiller VER m s 32.11 34.93 5.63 8.18 par:pas; +conseillée conseiller VER f s 32.11 34.93 0.16 0.41 par:pas; +conseillées conseiller VER f p 32.11 34.93 0.01 0.20 par:pas; +conseillés conseiller VER m p 32.11 34.93 0.52 0.41 par:pas; +conseils conseil NOM m p 87.14 84.46 18.29 26.28 +consens consentir VER 6.03 34.46 1.12 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +consensuel consensuel ADJ m s 0.24 0.07 0.13 0.07 +consensuelle consensuel ADJ f s 0.24 0.07 0.11 0.00 +consensus consensus NOM m 0.65 0.34 0.65 0.34 +consent consentir VER 6.03 34.46 0.90 3.11 ind:pre:3s; +consentît consentir VER 6.03 34.46 0.01 1.35 sub:imp:3s; +consentaient consentir VER 6.03 34.46 0.00 0.88 ind:imp:3p; +consentais consentir VER 6.03 34.46 0.21 0.61 ind:imp:1s;ind:imp:2s; +consentait consentir VER 6.03 34.46 0.14 4.12 ind:imp:3s; +consentant consentant ADJ m s 1.47 2.77 0.51 0.68 +consentante consentant ADJ f s 1.47 2.77 0.55 1.55 +consentantes consentant ADJ f p 1.47 2.77 0.05 0.27 +consentants consentant ADJ m p 1.47 2.77 0.35 0.27 +consente consentir VER 6.03 34.46 0.02 0.61 sub:pre:1s;sub:pre:3s; +consentement consentement NOM m s 3.56 5.95 2.96 5.68 +consentements consentement NOM m p 3.56 5.95 0.59 0.27 +consentent consentir VER 6.03 34.46 0.28 0.95 ind:pre:3p; +consentes consentir VER 6.03 34.46 0.01 0.14 sub:pre:2s; +consentez consentir VER 6.03 34.46 0.69 0.27 imp:pre:2p;ind:pre:2p; +consenti consentir VER m s 6.03 34.46 0.98 6.82 par:pas; +consentie consentir VER f s 6.03 34.46 0.09 1.08 par:pas; +consenties consentir VER f p 6.03 34.46 0.03 0.34 par:pas; +consentiez consentir VER 6.03 34.46 0.01 0.07 ind:imp:2p; +consentions consentir VER 6.03 34.46 0.00 0.34 ind:imp:1p; +consentir consentir VER 6.03 34.46 0.50 4.32 inf; +consentira consentir VER 6.03 34.46 0.05 0.47 ind:fut:3s; +consentirai consentir VER 6.03 34.46 0.09 0.07 ind:fut:1s; +consentiraient consentir VER 6.03 34.46 0.00 0.07 cnd:pre:3p; +consentirais consentir VER 6.03 34.46 0.16 0.20 cnd:pre:1s;cnd:pre:2s; +consentirait consentir VER 6.03 34.46 0.06 1.35 cnd:pre:3s; +consentiras consentir VER 6.03 34.46 0.01 0.07 ind:fut:2s; +consentirent consentir VER 6.03 34.46 0.00 0.27 ind:pas:3p; +consentirez consentir VER 6.03 34.46 0.16 0.07 ind:fut:2p; +consentiriez consentir VER 6.03 34.46 0.01 0.14 cnd:pre:2p; +consentirions consentir VER 6.03 34.46 0.00 0.07 cnd:pre:1p; +consentiront consentir VER 6.03 34.46 0.13 0.00 ind:fut:3p; +consentis consentir VER m p 6.03 34.46 0.08 0.88 ind:pas:1s;par:pas; +consentisse consentir VER 6.03 34.46 0.00 0.07 sub:imp:1s; +consentissent consentir VER 6.03 34.46 0.00 0.14 sub:imp:3p; +consentit consentir VER 6.03 34.46 0.19 4.19 ind:pas:3s; +consentons consentir VER 6.03 34.46 0.05 0.07 ind:pre:1p; +conserva conserver VER 15.08 55.14 0.34 1.22 ind:pas:3s; +conservai conserver VER 15.08 55.14 0.00 0.34 ind:pas:1s; +conservaient conserver VER 15.08 55.14 0.04 1.49 ind:imp:3p; +conservais conserver VER 15.08 55.14 0.06 0.20 ind:imp:1s; +conservait conserver VER 15.08 55.14 0.27 7.03 ind:imp:3s; +conservant conserver VER 15.08 55.14 0.35 2.70 par:pre; +conservateur conservateur ADJ m s 2.96 3.78 1.37 2.36 +conservateurs conservateur NOM m p 1.68 5.20 0.68 1.82 +conservation conservation NOM f s 0.85 3.24 0.85 3.24 +conservatisme conservatisme NOM m s 0.01 0.54 0.01 0.54 +conservatoire conservatoire NOM m s 4.68 2.97 4.67 2.77 +conservatoires conservatoire NOM m p 4.68 2.97 0.01 0.20 +conservatrice conservateur ADJ f s 2.96 3.78 0.85 0.47 +conservatrices conservateur ADJ f p 2.96 3.78 0.07 0.14 +conserve conserver VER 15.08 55.14 3.42 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conservent conserver VER 15.08 55.14 0.41 1.42 ind:pre:3p; +conserver conserver VER 15.08 55.14 5.39 17.57 inf; +conservera conserver VER 15.08 55.14 0.31 0.27 ind:fut:3s; +conserverai conserver VER 15.08 55.14 0.03 0.14 ind:fut:1s; +conserveraient conserver VER 15.08 55.14 0.00 0.07 cnd:pre:3p; +conserverais conserver VER 15.08 55.14 0.04 0.07 cnd:pre:1s; +conserverait conserver VER 15.08 55.14 0.19 0.47 cnd:pre:3s; +conserveras conserver VER 15.08 55.14 0.02 0.00 ind:fut:2s; +conserverez conserver VER 15.08 55.14 0.04 0.14 ind:fut:2p; +conserverie conserverie NOM f s 0.68 0.74 0.66 0.68 +conserveries conserverie NOM f p 0.68 0.74 0.02 0.07 +conserverons conserver VER 15.08 55.14 0.02 0.07 ind:fut:1p; +conserveront conserver VER 15.08 55.14 0.01 0.20 ind:fut:3p; +conserves conserve NOM f p 5.50 14.26 2.76 7.36 +conservez conserver VER 15.08 55.14 0.46 0.14 imp:pre:2p;ind:pre:2p; +conserviez conserver VER 15.08 55.14 0.06 0.00 ind:imp:2p; +conservions conserver VER 15.08 55.14 0.00 0.14 ind:imp:1p; +conservons conserver VER 15.08 55.14 0.14 0.34 imp:pre:1p;ind:pre:1p; +conservât conserver VER 15.08 55.14 0.00 0.14 sub:imp:3s; +conservèrent conserver VER 15.08 55.14 0.00 0.20 ind:pas:3p; +conservé conserver VER m s 15.08 55.14 2.31 11.08 par:pas; +conservée conserver VER f s 15.08 55.14 0.39 1.62 par:pas; +conservées conserver VER f p 15.08 55.14 0.10 1.01 par:pas; +conservés conserver VER m p 15.08 55.14 0.60 1.22 par:pas; +considère considérer VER 43.00 87.43 12.53 13.72 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +considèrent considérer VER 43.00 87.43 2.06 2.57 ind:pre:3p; +considères considérer VER 43.00 87.43 1.04 0.14 ind:pre:2s; +considéra considérer VER 43.00 87.43 0.04 7.84 ind:pas:3s; +considérable considérable ADJ s 2.98 20.95 2.31 16.01 +considérablement considérablement ADV 1.00 4.39 1.00 4.39 +considérables considérable ADJ p 2.98 20.95 0.68 4.93 +considérai considérer VER 43.00 87.43 0.00 0.41 ind:pas:1s; +considéraient considérer VER 43.00 87.43 0.40 2.97 ind:imp:3p; +considérais considérer VER 43.00 87.43 0.52 2.03 ind:imp:1s;ind:imp:2s; +considérait considérer VER 43.00 87.43 1.03 14.59 ind:imp:3s; +considérant considérer VER 43.00 87.43 1.47 4.66 par:pre; +considérants considérant NOM m p 0.05 0.27 0.00 0.14 +considérassent considérer VER 43.00 87.43 0.00 0.07 sub:imp:3p; +considération considération NOM f s 5.60 20.34 5.04 12.36 +considérations considération NOM f p 5.60 20.34 0.57 7.97 +considérer considérer VER 43.00 87.43 5.59 19.32 inf; +considérera considérer VER 43.00 87.43 0.08 0.20 ind:fut:3s; +considérerai considérer VER 43.00 87.43 0.09 0.20 ind:fut:1s; +considéreraient considérer VER 43.00 87.43 0.04 0.14 cnd:pre:3p; +considérerais considérer VER 43.00 87.43 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +considérerait considérer VER 43.00 87.43 0.10 0.41 cnd:pre:3s; +considéreras considérer VER 43.00 87.43 0.03 0.07 ind:fut:2s; +considéreriez considérer VER 43.00 87.43 0.09 0.00 cnd:pre:2p; +considérerions considérer VER 43.00 87.43 0.01 0.07 cnd:pre:1p; +considérerons considérer VER 43.00 87.43 0.14 0.07 ind:fut:1p; +considérez considérer VER 43.00 87.43 4.83 1.15 imp:pre:2p;ind:pre:2p; +considériez considérer VER 43.00 87.43 0.25 0.14 ind:imp:2p; +considérions considérer VER 43.00 87.43 0.05 0.61 ind:imp:1p; +considérons considérer VER 43.00 87.43 1.30 1.08 imp:pre:1p;ind:pre:1p; +considérât considérer VER 43.00 87.43 0.00 0.54 sub:imp:3s; +considérèrent considérer VER 43.00 87.43 0.00 0.27 ind:pas:3p; +considéré considérer VER m s 43.00 87.43 6.78 8.11 par:pas; +considérée considérer VER f s 43.00 87.43 2.58 3.04 par:pas; +considérées considérer VER f p 43.00 87.43 0.20 1.08 par:pas; +considérés considérer VER m p 43.00 87.43 1.64 1.89 par:pas; +consigna consigner VER 3.46 5.47 0.04 0.34 ind:pas:3s; +consignais consigner VER 3.46 5.47 0.00 0.07 ind:imp:1s; +consignait consigner VER 3.46 5.47 0.02 0.41 ind:imp:3s; +consignant consigner VER 3.46 5.47 0.00 0.07 par:pre; +consignataire consignataire NOM s 0.01 0.07 0.01 0.07 +consignation consignation NOM f s 0.40 0.20 0.40 0.07 +consignations consignation NOM f p 0.40 0.20 0.00 0.14 +consigne consigne NOM f s 5.24 15.81 3.04 7.91 +consignent consigner VER 3.46 5.47 0.04 0.07 ind:pre:3p; +consigner consigner VER 3.46 5.47 0.69 1.55 inf; +consignera consigner VER 3.46 5.47 0.10 0.00 ind:fut:3s; +consignerais consigner VER 3.46 5.47 0.00 0.07 cnd:pre:1s; +consignes consigne NOM f p 5.24 15.81 2.19 7.91 +consignez consigner VER 3.46 5.47 0.22 0.07 imp:pre:2p;ind:pre:2p; +consigné consigner VER m s 3.46 5.47 1.32 1.35 par:pas; +consignée consigner VER f s 3.46 5.47 0.44 0.27 par:pas; +consignées consigner VER f p 3.46 5.47 0.18 0.20 par:pas; +consignés consigné ADJ m p 0.72 0.27 0.39 0.00 +consista consister VER 7.51 31.35 0.00 0.68 ind:pas:3s; +consistaient consister VER 7.51 31.35 0.17 1.08 ind:imp:3p; +consistait consister VER 7.51 31.35 1.10 11.22 ind:imp:3s; +consistance consistance NOM f s 1.31 7.43 1.31 7.36 +consistances consistance NOM f p 1.31 7.43 0.00 0.07 +consistant consistant ADJ m s 1.06 1.55 0.67 1.01 +consistante consistant ADJ f s 1.06 1.55 0.37 0.20 +consistantes consistant ADJ f p 1.06 1.55 0.01 0.07 +consistants consistant ADJ m p 1.06 1.55 0.02 0.27 +consiste consister VER 7.51 31.35 5.55 12.84 imp:pre:2s;ind:pre:3s;sub:pre:3s; +consistent consister VER 7.51 31.35 0.14 0.95 ind:pre:3p; +consister consister VER 7.51 31.35 0.06 0.88 inf; +consistera consister VER 7.51 31.35 0.14 0.27 ind:fut:3s; +consisteraient consister VER 7.51 31.35 0.00 0.07 cnd:pre:3p; +consisterait consister VER 7.51 31.35 0.15 0.61 cnd:pre:3s; +consistoire consistoire NOM m s 0.00 0.14 0.00 0.14 +consistorial consistorial ADJ m s 0.00 0.20 0.00 0.14 +consistoriales consistorial ADJ f p 0.00 0.20 0.00 0.07 +consistèrent consister VER 7.51 31.35 0.00 0.07 ind:pas:3p; +consisté consister VER m s 7.51 31.35 0.08 1.01 par:pas; +conso conso NOM f s 0.19 0.14 0.13 0.07 +consoeur consoeur NOM f s 0.17 0.68 0.15 0.47 +consoeurs consoeur NOM f p 0.17 0.68 0.02 0.20 +consola consoler VER 14.41 33.18 0.04 1.42 ind:pas:3s; +consolai consoler VER 14.41 33.18 0.01 0.14 ind:pas:1s; +consolaient consoler VER 14.41 33.18 0.01 0.47 ind:imp:3p; +consolais consoler VER 14.41 33.18 0.25 0.61 ind:imp:1s;ind:imp:2s; +consolait consoler VER 14.41 33.18 0.28 2.77 ind:imp:3s; +consolant consoler VER 14.41 33.18 0.13 0.81 par:pre; +consolante consolant ADJ f s 0.12 2.16 0.01 0.68 +consolantes consolant ADJ f p 0.12 2.16 0.00 0.34 +consolants consolant ADJ m p 0.12 2.16 0.00 0.27 +consolasse consoler VER 14.41 33.18 0.00 0.07 sub:imp:1s; +consolateur consolateur ADJ m s 0.16 0.95 0.14 0.20 +consolateurs consolateur ADJ m p 0.16 0.95 0.01 0.14 +consolation consolation NOM f s 4.84 10.74 4.62 8.72 +consolations consolation NOM f p 4.84 10.74 0.22 2.03 +consolatrice consolateur NOM f s 0.29 0.47 0.27 0.20 +consolatrices consolateur ADJ f p 0.16 0.95 0.00 0.27 +console consoler VER 14.41 33.18 3.71 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consolent consoler VER 14.41 33.18 0.42 0.88 ind:pre:3p; +consoler consoler VER 14.41 33.18 6.63 16.15 inf; +consolera consoler VER 14.41 33.18 0.46 0.34 ind:fut:3s; +consolerai consoler VER 14.41 33.18 0.25 0.07 ind:fut:1s; +consoleraient consoler VER 14.41 33.18 0.00 0.14 cnd:pre:3p; +consolerais consoler VER 14.41 33.18 0.12 0.14 cnd:pre:1s; +consolerait consoler VER 14.41 33.18 0.28 0.27 cnd:pre:3s; +consoleras consoler VER 14.41 33.18 0.11 0.07 ind:fut:2s; +consolerez consoler VER 14.41 33.18 0.02 0.00 ind:fut:2p; +consolerons consoler VER 14.41 33.18 0.11 0.07 ind:fut:1p; +consoleront consoler VER 14.41 33.18 0.04 0.00 ind:fut:3p; +consoles console NOM f p 2.78 3.72 0.13 1.15 +consolez consoler VER 14.41 33.18 0.29 0.07 imp:pre:2p; +consolidaient consolider VER 1.38 4.19 0.00 0.20 ind:imp:3p; +consolidais consolider VER 1.38 4.19 0.00 0.07 ind:imp:1s; +consolidait consolider VER 1.38 4.19 0.00 0.54 ind:imp:3s; +consolidant consolider VER 1.38 4.19 0.01 0.27 par:pre; +consolidation consolidation NOM f s 0.20 0.41 0.20 0.41 +consolide consolider VER 1.38 4.19 0.18 0.20 ind:pre:1s;ind:pre:3s; +consolident consolider VER 1.38 4.19 0.04 0.07 ind:pre:3p; +consolider consolider VER 1.38 4.19 1.00 1.89 inf; +consolideraient consolider VER 1.38 4.19 0.00 0.07 cnd:pre:3p; +consolidons consolider VER 1.38 4.19 0.01 0.00 imp:pre:1p; +consolidé consolider VER m s 1.38 4.19 0.08 0.20 par:pas; +consolidée consolider VER f s 1.38 4.19 0.04 0.41 par:pas; +consolidées consolidé ADJ f p 0.05 0.41 0.04 0.00 +consolidés consolider VER m p 1.38 4.19 0.01 0.14 par:pas; +consoliez consoler VER 14.41 33.18 0.00 0.07 ind:imp:2p; +consolions consoler VER 14.41 33.18 0.00 0.07 ind:imp:1p; +consolât consoler VER 14.41 33.18 0.00 0.07 sub:imp:3s; +consolèrent consoler VER 14.41 33.18 0.00 0.27 ind:pas:3p; +consolé consoler VER m s 14.41 33.18 0.47 1.96 par:pas; +consolée consoler VER f s 14.41 33.18 0.41 1.08 par:pas; +consolées consoler VER f p 14.41 33.18 0.00 0.27 par:pas; +consolés consoler VER m p 14.41 33.18 0.31 0.27 par:pas; +consomma consommer VER 7.54 11.35 0.02 0.20 ind:pas:3s; +consommable consommable ADJ s 0.04 0.61 0.01 0.47 +consommables consommable ADJ p 0.04 0.61 0.02 0.14 +consommai consommer VER 7.54 11.35 0.00 0.07 ind:pas:1s; +consommaient consommer VER 7.54 11.35 0.03 0.27 ind:imp:3p; +consommait consommer VER 7.54 11.35 0.20 1.82 ind:imp:3s; +consommant consommer VER 7.54 11.35 0.07 0.20 par:pre; +consommateur consommateur NOM m s 1.88 6.22 0.79 1.69 +consommateurs consommateur NOM m p 1.88 6.22 1.04 4.05 +consommation consommation NOM f s 3.70 9.66 3.38 7.36 +consommations consommation NOM f p 3.70 9.66 0.32 2.30 +consommatrice consommateur NOM f s 1.88 6.22 0.05 0.34 +consommatrices consommatrice NOM f p 0.02 0.00 0.02 0.00 +consomme consommer VER 7.54 11.35 1.44 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consomment consommer VER 7.54 11.35 0.42 0.88 ind:pre:3p; +consommer consommer VER 7.54 11.35 3.00 4.12 inf; +consommerait consommer VER 7.54 11.35 0.01 0.07 cnd:pre:3s; +consommeront consommer VER 7.54 11.35 0.03 0.00 ind:fut:3p; +consommez consommer VER 7.54 11.35 0.63 0.00 imp:pre:2p;ind:pre:2p; +consommions consommer VER 7.54 11.35 0.00 0.14 ind:imp:1p; +consommons consommer VER 7.54 11.35 0.16 0.00 imp:pre:1p;ind:pre:1p; +consommé consommer VER m s 7.54 11.35 1.07 2.09 par:pas; +consommée consommer VER f s 7.54 11.35 0.34 0.34 par:pas; +consommées consommer VER f p 7.54 11.35 0.02 0.07 par:pas; +consommés consommer VER m p 7.54 11.35 0.10 0.14 par:pas; +consomption consomption NOM f s 0.27 0.20 0.27 0.20 +consomptive consomptif ADJ f s 0.00 0.07 0.00 0.07 +consonance consonance NOM f s 0.19 1.89 0.17 1.01 +consonances consonance NOM f p 0.19 1.89 0.02 0.88 +consonne consonne NOM f s 0.45 1.69 0.20 0.07 +consonnes consonne NOM f p 0.45 1.69 0.25 1.62 +consort consort ADJ m s 0.04 0.41 0.02 0.27 +consortium consortium NOM m s 0.81 0.07 0.79 0.07 +consortiums consortium NOM m p 0.81 0.07 0.03 0.00 +consorts consort NOM m p 0.30 0.41 0.28 0.34 +consos conso NOM f p 0.19 0.14 0.06 0.07 +consoude consoude NOM f s 0.00 0.07 0.00 0.07 +conspiraient conspirer VER 1.66 1.35 0.06 0.14 ind:imp:3p; +conspirait conspirer VER 1.66 1.35 0.12 0.41 ind:imp:3s; +conspirant conspirer VER 1.66 1.35 0.09 0.00 par:pre; +conspirateur conspirateur NOM m s 0.85 1.89 0.16 0.61 +conspirateurs conspirateur NOM m p 0.85 1.89 0.69 1.15 +conspiratif conspiratif ADJ m s 0.00 0.07 0.00 0.07 +conspiration conspiration NOM f s 5.24 2.91 4.93 2.30 +conspirations conspiration NOM f p 5.24 2.91 0.30 0.61 +conspiratrice conspirateur ADJ f s 0.29 0.07 0.03 0.00 +conspiratrices conspirateur NOM f p 0.85 1.89 0.00 0.07 +conspire conspirer VER 1.66 1.35 0.41 0.47 ind:pre:1s;ind:pre:3s; +conspirent conspirer VER 1.66 1.35 0.16 0.00 ind:pre:3p; +conspirer conspirer VER 1.66 1.35 0.41 0.20 inf; +conspirez conspirer VER 1.66 1.35 0.08 0.00 ind:pre:2p; +conspiré conspirer VER m s 1.66 1.35 0.33 0.14 par:pas; +conspuaient conspuer VER 0.04 1.15 0.00 0.20 ind:imp:3p; +conspuant conspuer VER 0.04 1.15 0.00 0.14 par:pre; +conspue conspuer VER 0.04 1.15 0.01 0.07 ind:pre:3s; +conspuer conspuer VER 0.04 1.15 0.02 0.27 inf; +conspuèrent conspuer VER 0.04 1.15 0.00 0.14 ind:pas:3p; +conspué conspuer VER m s 0.04 1.15 0.01 0.27 par:pas; +conspués conspuer VER m p 0.04 1.15 0.00 0.07 par:pas; +constable constable NOM m s 0.05 0.14 0.05 0.14 +constamment constamment ADV 8.18 15.68 8.18 15.68 +constance constance NOM f s 0.99 2.97 0.96 2.84 +constances constance NOM f p 0.99 2.97 0.03 0.14 +constant constant ADJ m s 5.76 16.82 1.88 6.55 +constante constant ADJ f s 5.76 16.82 2.92 7.30 +constantes constante NOM f p 1.54 0.47 1.14 0.07 +constants constant ADJ m p 5.76 16.82 0.63 1.55 +constat constat NOM m s 1.38 3.45 1.36 2.77 +constata constater VER 10.58 57.43 0.16 8.99 ind:pas:3s; +constatai constater VER 10.58 57.43 0.41 2.16 ind:pas:1s; +constataient constater VER 10.58 57.43 0.00 0.54 ind:imp:3p; +constatais constater VER 10.58 57.43 0.00 1.28 ind:imp:1s; +constatait constater VER 10.58 57.43 0.01 2.64 ind:imp:3s; +constatant constater VER 10.58 57.43 0.15 3.58 par:pre; +constatation constatation NOM f s 0.54 4.86 0.47 3.65 +constatations constatation NOM f p 0.54 4.86 0.07 1.22 +constate constater VER 10.58 57.43 2.17 9.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +constatent constater VER 10.58 57.43 0.04 0.68 ind:pre:3p; +constater constater VER 10.58 57.43 3.48 19.66 inf; +constatera constater VER 10.58 57.43 0.06 0.14 ind:fut:3s; +constaterai constater VER 10.58 57.43 0.00 0.07 ind:fut:1s; +constateraient constater VER 10.58 57.43 0.01 0.14 cnd:pre:3p; +constaterais constater VER 10.58 57.43 0.00 0.07 cnd:pre:1s; +constaterait constater VER 10.58 57.43 0.00 0.07 cnd:pre:3s; +constateras constater VER 10.58 57.43 0.13 0.20 ind:fut:2s; +constaterez constater VER 10.58 57.43 0.30 0.00 ind:fut:2p; +constateriez constater VER 10.58 57.43 0.02 0.00 cnd:pre:2p; +constatez constater VER 10.58 57.43 0.83 0.34 imp:pre:2p;ind:pre:2p; +constatiez constater VER 10.58 57.43 0.06 0.07 ind:imp:2p; +constations constater VER 10.58 57.43 0.01 0.07 ind:imp:1p; +constatâmes constater VER 10.58 57.43 0.00 0.07 ind:pas:1p; +constatons constater VER 10.58 57.43 0.34 0.68 imp:pre:1p;ind:pre:1p; +constats constat NOM m p 1.38 3.45 0.03 0.68 +constatèrent constater VER 10.58 57.43 0.00 0.14 ind:pas:3p; +constaté constater VER m s 10.58 57.43 2.30 5.61 imp:pre:2s;par:pas; +constatée constater VER f s 10.58 57.43 0.06 0.27 par:pas; +constatées constater VER f p 10.58 57.43 0.01 0.14 par:pas; +constatés constater VER m p 10.58 57.43 0.04 0.07 par:pas; +constellaient consteller VER 0.14 4.39 0.00 0.20 ind:imp:3p; +constellait consteller VER 0.14 4.39 0.00 0.07 ind:imp:3s; +constellant consteller VER 0.14 4.39 0.00 0.07 par:pre; +constellation constellation NOM f s 1.86 6.76 1.61 3.58 +constellations constellation NOM f p 1.86 6.76 0.25 3.18 +constelle consteller VER 0.14 4.39 0.00 0.07 ind:pre:3s; +constellent consteller VER 0.14 4.39 0.00 0.14 ind:pre:3p; +constellé consteller VER m s 0.14 4.39 0.01 1.76 par:pas; +constellée consteller VER f s 0.14 4.39 0.13 1.15 par:pas; +constellées consteller VER f p 0.14 4.39 0.00 0.47 par:pas; +constellés consteller VER m p 0.14 4.39 0.00 0.47 par:pas; +consterna consterner VER 0.85 4.26 0.02 0.47 ind:pas:3s; +consternait consterner VER 0.85 4.26 0.00 0.88 ind:imp:3s; +consternant consternant ADJ m s 0.53 1.49 0.48 0.61 +consternante consternant ADJ f s 0.53 1.49 0.03 0.47 +consternantes consternant ADJ f p 0.53 1.49 0.01 0.20 +consternants consternant ADJ m p 0.53 1.49 0.01 0.20 +consternation consternation NOM f s 0.69 4.53 0.69 4.53 +consterne consterner VER 0.85 4.26 0.06 0.07 ind:pre:3s; +consternent consterner VER 0.85 4.26 0.00 0.07 ind:pre:3p; +consterné consterner VER m s 0.85 4.26 0.52 1.42 par:pas; +consternée consterner VER f s 0.85 4.26 0.07 0.68 par:pas; +consternées consterné ADJ f p 0.46 3.58 0.00 0.27 +consternés consterné ADJ m p 0.46 3.58 0.23 0.54 +constipant constipant ADJ m s 0.00 0.07 0.00 0.07 +constipation constipation NOM f s 0.41 1.69 0.38 1.55 +constipations constipation NOM f p 0.41 1.69 0.03 0.14 +constipe constiper VER 0.55 0.74 0.06 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +constipé constipé ADJ m s 0.66 0.54 0.35 0.34 +constipée constipé ADJ f s 0.66 0.54 0.26 0.07 +constipées constipé NOM f p 0.34 0.34 0.00 0.07 +constipés constipé NOM m p 0.34 0.34 0.14 0.07 +constitua constituer VER 8.99 54.39 0.05 0.54 ind:pas:3s; +constituaient constituer VER 8.99 54.39 0.11 6.22 ind:imp:3p; +constituais constituer VER 8.99 54.39 0.01 0.14 ind:imp:1s; +constituait constituer VER 8.99 54.39 0.50 9.80 ind:imp:3s; +constituant constituer VER 8.99 54.39 0.17 1.82 par:pre; +constituante constituant NOM f s 0.27 1.01 0.23 0.68 +constituantes constituant ADJ f p 0.02 3.92 0.00 0.07 +constituants constituant NOM m p 0.27 1.01 0.04 0.20 +constitue constituer VER 8.99 54.39 2.89 7.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +constituent constituer VER 8.99 54.39 1.32 5.47 ind:pre:3p; +constituer constituer VER 8.99 54.39 1.56 9.46 inf; +constituera constituer VER 8.99 54.39 0.05 0.27 ind:fut:3s; +constituerai constituer VER 8.99 54.39 0.00 0.14 ind:fut:1s; +constitueraient constituer VER 8.99 54.39 0.02 0.47 cnd:pre:3p; +constituerais constituer VER 8.99 54.39 0.00 0.07 cnd:pre:1s; +constituerait constituer VER 8.99 54.39 0.23 0.74 cnd:pre:3s; +constitueras constituer VER 8.99 54.39 0.00 0.07 ind:fut:2s; +constitueront constituer VER 8.99 54.39 0.02 0.20 ind:fut:3p; +constituez constituer VER 8.99 54.39 0.08 0.14 imp:pre:2p;ind:pre:2p; +constituions constituer VER 8.99 54.39 0.00 0.20 ind:imp:1p; +constituons constituer VER 8.99 54.39 0.12 0.20 imp:pre:1p;ind:pre:1p; +constituât constituer VER 8.99 54.39 0.00 0.20 sub:imp:3s; +constituèrent constituer VER 8.99 54.39 0.01 0.54 ind:pas:3p; +constitutif constitutif ADJ m s 0.19 0.34 0.14 0.14 +constitutifs constitutif ADJ m p 0.19 0.34 0.05 0.20 +constitution constitution NOM f s 6.74 9.12 6.72 8.92 +constitutionnaliste constitutionnaliste NOM s 0.10 0.00 0.10 0.00 +constitutionnalité constitutionnalité NOM f s 0.02 0.00 0.02 0.00 +constitutionnel constitutionnel ADJ m s 1.60 2.50 0.72 0.88 +constitutionnelle constitutionnel ADJ f s 1.60 2.50 0.40 1.01 +constitutionnellement constitutionnellement ADV 0.03 0.07 0.03 0.07 +constitutionnelles constitutionnel ADJ f p 1.60 2.50 0.03 0.34 +constitutionnels constitutionnel ADJ m p 1.60 2.50 0.45 0.27 +constitutions constitution NOM f p 6.74 9.12 0.02 0.20 +constitué constituer VER m s 8.99 54.39 0.98 6.82 par:pas; +constituée constituer VER f s 8.99 54.39 0.64 2.16 par:pas; +constituées constitué ADJ f p 0.19 2.91 0.11 0.68 +constitués constituer VER m p 8.99 54.39 0.16 0.81 par:pas; +constricteur constricteur NOM m s 0.11 0.07 0.11 0.00 +constricteurs constricteur NOM m p 0.11 0.07 0.00 0.07 +constriction constriction NOM f s 0.01 0.61 0.01 0.61 +constrictive constrictif ADJ f s 0.01 0.00 0.01 0.00 +constrictor constrictor ADJ m s 0.16 0.41 0.16 0.34 +constrictors constrictor NOM m p 0.05 0.00 0.03 0.00 +constructeur constructeur NOM m s 1.81 1.82 0.88 0.81 +constructeurs constructeur NOM m p 1.81 1.82 0.93 1.01 +constructif constructif ADJ m s 1.25 1.28 0.39 0.54 +constructifs constructif ADJ m p 1.25 1.28 0.01 0.07 +construction construction NOM f s 13.12 24.12 11.30 18.24 +constructions construction NOM f p 13.12 24.12 1.83 5.88 +constructive constructif ADJ f s 1.25 1.28 0.58 0.41 +constructives constructif ADJ f p 1.25 1.28 0.26 0.27 +constructivisme constructivisme NOM m s 0.01 0.00 0.01 0.00 +construira construire VER 67.59 52.64 0.93 0.41 ind:fut:3s; +construirai construire VER 67.59 52.64 0.68 0.00 ind:fut:1s; +construiraient construire VER 67.59 52.64 0.02 0.07 cnd:pre:3p; +construirais construire VER 67.59 52.64 0.12 0.14 cnd:pre:1s; +construirait construire VER 67.59 52.64 0.30 0.20 cnd:pre:3s; +construiras construire VER 67.59 52.64 0.17 0.00 ind:fut:2s; +construire construire VER 67.59 52.64 26.94 18.38 inf; +construirez construire VER 67.59 52.64 0.29 0.07 ind:fut:2p; +construiriez construire VER 67.59 52.64 0.02 0.00 cnd:pre:2p; +construirons construire VER 67.59 52.64 1.19 0.07 ind:fut:1p; +construiront construire VER 67.59 52.64 0.37 0.00 ind:fut:3p; +construis construire VER 67.59 52.64 2.33 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +construisît construire VER 67.59 52.64 0.00 0.07 sub:imp:3s; +construisaient construire VER 67.59 52.64 0.27 0.81 ind:imp:3p; +construisais construire VER 67.59 52.64 0.29 0.34 ind:imp:1s;ind:imp:2s; +construisait construire VER 67.59 52.64 0.98 1.76 ind:imp:3s; +construisant construire VER 67.59 52.64 0.54 0.95 par:pre; +construise construire VER 67.59 52.64 0.40 0.20 sub:pre:1s;sub:pre:3s; +construisent construire VER 67.59 52.64 1.37 1.15 ind:pre:3p; +construisez construire VER 67.59 52.64 1.01 0.00 imp:pre:2p;ind:pre:2p; +construisiez construire VER 67.59 52.64 0.06 0.00 ind:imp:2p; +construisions construire VER 67.59 52.64 0.05 0.00 ind:imp:1p; +construisirent construire VER 67.59 52.64 0.06 0.14 ind:pas:3p; +construisis construire VER 67.59 52.64 0.11 0.14 ind:pas:1s; +construisit construire VER 67.59 52.64 0.21 1.62 ind:pas:3s; +construisons construire VER 67.59 52.64 1.23 0.14 imp:pre:1p;ind:pre:1p; +construit construire VER m s 67.59 52.64 21.48 15.61 ind:pre:3s;par:pas; +construite construire VER f s 67.59 52.64 4.64 5.41 par:pas; +construites construire VER f p 67.59 52.64 0.47 1.82 par:pas; +construits construire VER m p 67.59 52.64 1.08 2.70 par:pas; +consubstantiel consubstantiel ADJ m s 0.00 0.61 0.00 0.20 +consubstantielle consubstantiel ADJ f s 0.00 0.61 0.00 0.27 +consubstantiels consubstantiel ADJ m p 0.00 0.61 0.00 0.14 +consécration consécration NOM f s 0.37 1.15 0.37 1.15 +consécutif consécutif ADJ m s 1.16 1.82 0.12 0.20 +consécutifs consécutif ADJ m p 1.16 1.82 0.46 0.68 +consécution consécution NOM f s 0.00 0.07 0.00 0.07 +consécutive consécutif ADJ f s 1.16 1.82 0.15 0.47 +consécutivement consécutivement ADV 0.02 0.14 0.02 0.14 +consécutives consécutif ADJ f p 1.16 1.82 0.43 0.47 +consul consul NOM m s 3.95 10.07 3.56 8.11 +consulaire consulaire ADJ s 0.31 0.81 0.31 0.41 +consulaires consulaire ADJ p 0.31 0.81 0.00 0.41 +consulat consulat NOM m s 3.84 2.43 3.77 1.96 +consulats consulat NOM m p 3.84 2.43 0.07 0.47 +consuls consul NOM m p 3.95 10.07 0.39 1.96 +consulta consulter VER 18.45 36.22 0.01 4.12 ind:pas:3s; +consultable consultable ADJ f s 0.00 0.07 0.00 0.07 +consultai consulter VER 18.45 36.22 0.02 0.61 ind:pas:1s; +consultaient consulter VER 18.45 36.22 0.00 0.68 ind:imp:3p; +consultais consulter VER 18.45 36.22 0.22 0.34 ind:imp:1s;ind:imp:2s; +consultait consulter VER 18.45 36.22 0.13 2.70 ind:imp:3s; +consultant consultant NOM m s 1.76 0.20 1.29 0.07 +consultante consultant NOM f s 1.76 0.20 0.18 0.07 +consultants consultant NOM m p 1.76 0.20 0.29 0.07 +consultatif consultatif ADJ m s 0.13 6.28 0.13 0.74 +consultatifs consultatif ADJ m p 0.13 6.28 0.00 0.14 +consultation consultation NOM f s 4.59 8.24 3.61 6.49 +consultations consultation NOM f p 4.59 8.24 0.98 1.76 +consultative consultatif ADJ f s 0.13 6.28 0.00 5.41 +consulte consulter VER 18.45 36.22 2.21 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consultent consulter VER 18.45 36.22 0.10 0.27 ind:pre:3p; +consulter consulter VER 18.45 36.22 9.05 13.04 inf; +consultera consulter VER 18.45 36.22 0.03 0.20 ind:fut:3s; +consulterai consulter VER 18.45 36.22 0.18 0.07 ind:fut:1s; +consulteraient consulter VER 18.45 36.22 0.00 0.07 cnd:pre:3p; +consulterais consulter VER 18.45 36.22 0.22 0.07 cnd:pre:1s;cnd:pre:2s; +consulteras consulter VER 18.45 36.22 0.01 0.00 ind:fut:2s; +consulterons consulter VER 18.45 36.22 0.01 0.00 ind:fut:1p; +consulteront consulter VER 18.45 36.22 0.00 0.07 ind:fut:3p; +consultes consulter VER 18.45 36.22 0.23 0.00 ind:pre:2s; +consultez consulter VER 18.45 36.22 1.04 0.34 imp:pre:2p;ind:pre:2p; +consultions consulter VER 18.45 36.22 0.01 0.07 ind:imp:1p; +consultâmes consulter VER 18.45 36.22 0.00 0.07 ind:pas:1p; +consultons consulter VER 18.45 36.22 0.24 0.07 imp:pre:1p;ind:pre:1p; +consultèrent consulter VER 18.45 36.22 0.00 0.81 ind:pas:3p; +consulté consulter VER m s 18.45 36.22 4.05 5.00 par:pas; +consultée consulter VER f s 18.45 36.22 0.14 0.88 par:pas; +consultées consulter VER f p 18.45 36.22 0.03 0.07 par:pas; +consultés consulter VER m p 18.45 36.22 0.22 1.42 par:pas; +consuma consumer VER 6.54 9.93 0.16 0.07 ind:pas:3s; +consumable consumable ADJ s 0.00 0.07 0.00 0.07 +consumai consumer VER 6.54 9.93 0.00 0.07 ind:pas:1s; +consumaient consumer VER 6.54 9.93 0.01 0.47 ind:imp:3p; +consumais consumer VER 6.54 9.93 0.00 0.14 ind:imp:1s; +consumait consumer VER 6.54 9.93 0.19 1.49 ind:imp:3s; +consumant consumer VER 6.54 9.93 0.36 0.20 par:pre; +consumation consumation NOM f s 0.00 0.07 0.00 0.07 +consume consumer VER 6.54 9.93 2.21 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +consument consumer VER 6.54 9.93 0.38 0.47 ind:pre:3p; +consumer consumer VER 6.54 9.93 0.89 2.09 inf; +consumera consumer VER 6.54 9.93 0.25 0.14 ind:fut:3s; +consumerait consumer VER 6.54 9.93 0.01 0.07 cnd:pre:3s; +consumeront consumer VER 6.54 9.93 0.04 0.07 ind:fut:3p; +consumes consumer VER 6.54 9.93 0.00 0.07 ind:pre:2s; +consumez consumer VER 6.54 9.93 0.05 0.00 imp:pre:2p;ind:pre:2p; +consumât consumer VER 6.54 9.93 0.00 0.07 sub:imp:3s; +consumèrent consumer VER 6.54 9.93 0.00 0.07 ind:pas:3p; +consumé consumer VER m s 6.54 9.93 1.07 0.81 par:pas; +consumée consumer VER f s 6.54 9.93 0.52 1.15 par:pas; +consumées consumer VER f p 6.54 9.93 0.03 0.61 par:pas; +consumérisme consumérisme NOM m s 0.43 0.00 0.43 0.00 +consumériste consumériste ADJ f s 0.20 0.00 0.20 0.00 +consumés consumer VER m p 6.54 9.93 0.37 0.20 par:pas; +conséquemment conséquemment ADV 0.03 0.41 0.03 0.41 +conséquence conséquence NOM f s 19.27 34.86 5.91 16.89 +conséquences conséquence NOM f p 19.27 34.86 13.36 17.97 +conséquent conséquent ADJ m s 6.45 12.43 6.05 11.55 +conséquente conséquent ADJ f s 6.45 12.43 0.26 0.54 +conséquentes conséquent ADJ f p 6.45 12.43 0.12 0.07 +conséquents conséquent ADJ m p 6.45 12.43 0.02 0.27 +contînt contenir VER 30.07 58.92 0.00 0.34 sub:imp:3s; +conta conter VER 3.76 8.99 0.01 0.88 ind:pas:3s; +contact contact NOM m s 69.85 65.47 59.58 55.68 +contacta contacter VER 38.96 2.03 0.01 0.41 ind:pas:3s; +contactais contacter VER 38.96 2.03 0.14 0.00 ind:imp:1s;ind:imp:2s; +contactait contacter VER 38.96 2.03 0.08 0.07 ind:imp:3s; +contactant contacter VER 38.96 2.03 0.05 0.07 par:pre; +contacte contacter VER 38.96 2.03 3.89 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contactent contacter VER 38.96 2.03 0.14 0.00 ind:pre:3p; +contacter contacter VER 38.96 2.03 16.11 0.95 ind:pre:2p;inf; +contactera contacter VER 38.96 2.03 1.18 0.00 ind:fut:3s; +contacterai contacter VER 38.96 2.03 1.69 0.00 ind:fut:1s; +contacteraient contacter VER 38.96 2.03 0.01 0.00 cnd:pre:3p; +contacterais contacter VER 38.96 2.03 0.03 0.00 cnd:pre:1s; +contacterait contacter VER 38.96 2.03 0.05 0.00 cnd:pre:3s; +contacteras contacter VER 38.96 2.03 0.01 0.00 ind:fut:2s; +contacterez contacter VER 38.96 2.03 0.10 0.00 ind:fut:2p; +contacterons contacter VER 38.96 2.03 0.30 0.00 ind:fut:1p; +contacteront contacter VER 38.96 2.03 0.23 0.00 ind:fut:3p; +contacteur contacteur NOM m s 0.05 0.07 0.05 0.07 +contactez contacter VER 38.96 2.03 4.20 0.07 imp:pre:2p;ind:pre:2p; +contactiez contacter VER 38.96 2.03 0.37 0.00 ind:imp:2p; +contactions contacter VER 38.96 2.03 0.11 0.00 ind:imp:1p; +contactons contacter VER 38.96 2.03 0.22 0.00 imp:pre:1p;ind:pre:1p; +contacts contact NOM m p 69.85 65.47 10.27 9.80 +contacté contacter VER m s 38.96 2.03 7.12 0.41 par:pas; +contactée contacter VER f s 38.96 2.03 1.27 0.00 par:pas; +contactées contacter VER f p 38.96 2.03 0.08 0.00 par:pas; +contactés contacter VER m p 38.96 2.03 1.56 0.07 par:pas; +contagieuse contagieux ADJ f s 6.01 4.05 1.74 1.82 +contagieuses contagieux ADJ f p 6.01 4.05 0.57 0.61 +contagieux contagieux ADJ m 6.01 4.05 3.71 1.62 +contagion contagion NOM f s 1.21 3.72 1.21 3.72 +contai conter VER 3.76 8.99 0.00 0.14 ind:pas:1s; +contaient conter VER 3.76 8.99 0.01 0.34 ind:imp:3p; +container container NOM m s 3.00 1.01 2.09 0.27 +containers container NOM m p 3.00 1.01 0.92 0.74 +containeur containeur NOM m s 0.01 0.00 0.01 0.00 +contais conter VER 3.76 8.99 0.01 0.00 ind:imp:1s; +contait conter VER 3.76 8.99 0.16 0.88 ind:imp:3s; +contaminaient contaminer VER 9.63 4.32 0.00 0.07 ind:imp:3p; +contaminait contaminer VER 9.63 4.32 0.01 0.27 ind:imp:3s; +contaminant contaminant ADJ m s 0.13 0.07 0.02 0.07 +contaminants contaminant ADJ m p 0.13 0.07 0.11 0.00 +contaminateur contaminateur NOM m s 0.01 0.00 0.01 0.00 +contamination contamination NOM f s 2.27 1.35 2.26 1.22 +contaminations contamination NOM f p 2.27 1.35 0.01 0.14 +contamine contaminer VER 9.63 4.32 1.39 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contaminer contaminer VER 9.63 4.32 1.27 0.61 inf; +contaminera contaminer VER 9.63 4.32 0.01 0.00 ind:fut:3s; +contamineras contaminer VER 9.63 4.32 0.01 0.00 ind:fut:2s; +contamines contaminer VER 9.63 4.32 0.05 0.00 ind:pre:2s; +contaminons contaminer VER 9.63 4.32 0.01 0.00 imp:pre:1p; +contaminât contaminer VER 9.63 4.32 0.00 0.07 sub:imp:3s; +contaminé contaminer VER m s 9.63 4.32 2.68 1.08 par:pas; +contaminée contaminer VER f s 9.63 4.32 2.19 0.81 par:pas; +contaminées contaminer VER f p 9.63 4.32 0.55 0.34 par:pas; +contaminés contaminer VER m p 9.63 4.32 1.44 0.61 par:pas; +contant conter VER 3.76 8.99 0.19 0.41 par:pre; +conte conte NOM m s 13.30 15.07 8.84 6.69 +contempla contempler VER 8.58 64.46 0.17 5.34 ind:pas:3s; +contemplai contempler VER 8.58 64.46 0.01 1.35 ind:pas:1s; +contemplaient contempler VER 8.58 64.46 0.01 3.04 ind:imp:3p; +contemplais contempler VER 8.58 64.46 0.45 2.91 ind:imp:1s;ind:imp:2s; +contemplait contempler VER 8.58 64.46 0.30 11.35 ind:imp:3s; +contemplant contempler VER 8.58 64.46 0.35 6.55 par:pre; +contemplateur contemplateur NOM m s 0.00 0.20 0.00 0.14 +contemplatif contemplatif NOM m s 0.17 0.41 0.17 0.20 +contemplatifs contemplatif ADJ m p 0.10 1.42 0.00 0.20 +contemplation contemplation NOM f s 0.44 9.66 0.44 9.32 +contemplations contemplation NOM f p 0.44 9.66 0.00 0.34 +contemplative contemplatif ADJ f s 0.10 1.42 0.03 0.81 +contemplativement contemplativement ADV 0.00 0.07 0.00 0.07 +contemplatives contemplatif ADJ f p 0.10 1.42 0.01 0.20 +contemplatrice contemplateur NOM f s 0.00 0.20 0.00 0.07 +contemple contempler VER 8.58 64.46 2.28 7.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contemplent contempler VER 8.58 64.46 0.33 1.55 ind:pre:3p; +contempler contempler VER 8.58 64.46 2.90 18.11 inf; +contemplera contempler VER 8.58 64.46 0.11 0.00 ind:fut:3s; +contemplerai contempler VER 8.58 64.46 0.12 0.00 ind:fut:1s; +contempleraient contempler VER 8.58 64.46 0.00 0.07 cnd:pre:3p; +contemplerait contempler VER 8.58 64.46 0.00 0.07 cnd:pre:3s; +contempleront contempler VER 8.58 64.46 0.01 0.07 ind:fut:3p; +contemples contempler VER 8.58 64.46 0.07 0.20 ind:pre:2s; +contemplez contempler VER 8.58 64.46 0.63 0.27 imp:pre:2p;ind:pre:2p; +contempliez contempler VER 8.58 64.46 0.11 0.00 ind:imp:2p; +contemplions contempler VER 8.58 64.46 0.00 0.61 ind:imp:1p; +contemplâmes contempler VER 8.58 64.46 0.00 0.14 ind:pas:1p; +contemplons contempler VER 8.58 64.46 0.07 0.27 imp:pre:1p;ind:pre:1p; +contemplèrent contempler VER 8.58 64.46 0.00 0.61 ind:pas:3p; +contemplé contempler VER m s 8.58 64.46 0.62 3.38 par:pas; +contemplée contempler VER f s 8.58 64.46 0.03 0.68 par:pas; +contemplées contempler VER f p 8.58 64.46 0.00 0.14 par:pas; +contemplés contempler VER m p 8.58 64.46 0.00 0.61 par:pas; +contemporain contemporain ADJ m s 1.98 6.62 0.94 1.89 +contemporaine contemporain ADJ f s 1.98 6.62 0.79 2.77 +contemporaines contemporain ADJ f p 1.98 6.62 0.05 0.61 +contemporains contemporain NOM m p 0.53 5.54 0.39 4.32 +contempteur contempteur NOM m s 0.14 0.27 0.01 0.27 +contempteurs contempteur NOM m p 0.14 0.27 0.14 0.00 +contenaient contenir VER 30.07 58.92 0.81 3.65 ind:imp:3p; +contenais contenir VER 30.07 58.92 0.00 0.14 ind:imp:1s; +contenait contenir VER 30.07 58.92 3.47 15.41 ind:imp:3s; +contenance contenance NOM f s 0.41 6.15 0.41 6.01 +contenances contenance NOM f p 0.41 6.15 0.00 0.14 +contenant contenir VER 30.07 58.92 2.75 9.53 par:pre; +contenants contenant NOM m p 0.50 0.74 0.04 0.07 +conteneur conteneur NOM m s 2.92 0.07 2.37 0.07 +conteneurs conteneur NOM m p 2.92 0.07 0.55 0.00 +contenez contenir VER 30.07 58.92 0.11 0.00 imp:pre:2p; +contenir contenir VER 30.07 58.92 4.81 9.86 inf; +content content ADJ m s 178.94 86.49 114.75 51.22 +contenta contenter VER 29.04 60.61 0.12 8.24 ind:pas:3s; +contentai contenter VER 29.04 60.61 0.00 1.08 ind:pas:1s; +contentaient contenter VER 29.04 60.61 0.26 2.84 ind:imp:3p; +contentais contenter VER 29.04 60.61 0.36 1.89 ind:imp:1s;ind:imp:2s; +contentait contenter VER 29.04 60.61 0.37 9.32 ind:imp:3s; +contentant contenter VER 29.04 60.61 0.24 4.46 par:pre; +contentassent contenter VER 29.04 60.61 0.00 0.07 sub:imp:3p; +contente content ADJ f s 178.94 86.49 50.76 24.32 +contentement contentement NOM m s 0.15 6.35 0.15 6.08 +contentements contentement NOM m p 0.15 6.35 0.00 0.27 +contentent contenter VER 29.04 60.61 1.27 1.35 ind:pre:3p; +contenter contenter VER 29.04 60.61 5.98 11.35 inf; +contentera contenter VER 29.04 60.61 0.86 0.20 ind:fut:3s; +contenterai contenter VER 29.04 60.61 0.84 0.27 ind:fut:1s; +contenteraient contenter VER 29.04 60.61 0.02 0.14 cnd:pre:3p; +contenterais contenter VER 29.04 60.61 0.70 0.14 cnd:pre:1s;cnd:pre:2s; +contenterait contenter VER 29.04 60.61 0.21 0.68 cnd:pre:3s; +contenteras contenter VER 29.04 60.61 0.05 0.00 ind:fut:2s; +contenterez contenter VER 29.04 60.61 0.04 0.14 ind:fut:2p; +contenteriez contenter VER 29.04 60.61 0.01 0.00 cnd:pre:2p; +contenterions contenter VER 29.04 60.61 0.01 0.14 cnd:pre:1p; +contenterons contenter VER 29.04 60.61 0.49 0.00 ind:fut:1p; +contenteront contenter VER 29.04 60.61 0.09 0.14 ind:fut:3p; +contentes content ADJ f p 178.94 86.49 1.46 0.41 +contentez contenter VER 29.04 60.61 1.77 0.61 imp:pre:2p;ind:pre:2p; +contentieux contentieux NOM m 0.28 0.47 0.28 0.47 +contentiez contenter VER 29.04 60.61 0.05 0.07 ind:imp:2p; +contention contention NOM f s 0.17 0.41 0.06 0.41 +contentions contention NOM f p 0.17 0.41 0.11 0.00 +contentons contenter VER 29.04 60.61 0.51 0.34 imp:pre:1p;ind:pre:1p; +contents content ADJ m p 178.94 86.49 11.96 10.54 +contentèrent contenter VER 29.04 60.61 0.00 0.27 ind:pas:3p; +contenté contenter VER m s 29.04 60.61 0.91 5.47 par:pas; +contentée contenter VER f s 29.04 60.61 0.30 1.96 par:pas; +contentées contenter VER f p 29.04 60.61 0.00 0.07 par:pas; +contentés contenter VER m p 29.04 60.61 0.12 0.68 par:pas; +contenu contenu NOM m s 6.34 16.82 6.31 16.42 +contenue contenir VER f s 30.07 58.92 0.55 2.70 par:pas; +contenues contenir VER f p 30.07 58.92 0.22 0.74 par:pas; +contenus contenir VER m p 30.07 58.92 0.09 0.61 par:pas; +conter conter VER 3.76 8.99 1.32 2.64 inf; +contera conter VER 3.76 8.99 0.03 0.00 ind:fut:3s; +conterai conter VER 3.76 8.99 0.17 0.07 ind:fut:1s; +conterait conter VER 3.76 8.99 0.00 0.07 cnd:pre:3s; +conteras conter VER 3.76 8.99 0.00 0.14 ind:fut:2s; +conterez conter VER 3.76 8.99 0.00 0.07 ind:fut:2p; +conterons conter VER 3.76 8.99 0.00 0.07 ind:fut:1p; +contes conte NOM m p 13.30 15.07 4.46 8.38 +contesta contester VER 4.84 8.58 0.00 0.07 ind:pas:3s; +contestable contestable ADJ s 0.26 1.69 0.26 1.15 +contestables contestable ADJ p 0.26 1.69 0.00 0.54 +contestaient contester VER 4.84 8.58 0.11 0.20 ind:imp:3p; +contestais contester VER 4.84 8.58 0.14 0.20 ind:imp:1s;ind:imp:2s; +contestait contester VER 4.84 8.58 0.01 0.68 ind:imp:3s; +contestant contester VER 4.84 8.58 0.03 0.27 par:pre; +contestataire contestataire ADJ s 0.21 0.47 0.14 0.14 +contestataires contestataire NOM p 0.26 0.54 0.19 0.34 +contestation contestation NOM f s 0.97 3.24 0.69 2.70 +contestations contestation NOM f p 0.97 3.24 0.29 0.54 +conteste contester VER 4.84 8.58 1.21 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contestent contester VER 4.84 8.58 0.10 0.41 ind:pre:3p; +contester contester VER 4.84 8.58 1.48 2.70 inf; +contestera contester VER 4.84 8.58 0.09 0.07 ind:fut:3s; +contesterai contester VER 4.84 8.58 0.03 0.07 ind:fut:1s; +contesterait contester VER 4.84 8.58 0.01 0.07 cnd:pre:3s; +contesteriez contester VER 4.84 8.58 0.00 0.07 cnd:pre:2p; +contesterons contester VER 4.84 8.58 0.01 0.00 ind:fut:1p; +contestes contester VER 4.84 8.58 0.29 0.20 ind:pre:2s; +contestez contester VER 4.84 8.58 0.17 0.00 imp:pre:2p;ind:pre:2p; +contestiez contester VER 4.84 8.58 0.00 0.07 ind:imp:2p; +contestons contester VER 4.84 8.58 0.02 0.07 ind:pre:1p; +contesté contester VER m s 4.84 8.58 0.69 0.81 par:pas; +contestée contester VER f s 4.84 8.58 0.11 0.74 par:pas; +contestées contester VER f p 4.84 8.58 0.26 0.41 par:pas; +contestés contester VER m p 4.84 8.58 0.08 0.27 par:pas; +conteur conteur NOM m s 1.29 4.46 0.84 2.84 +conteurs conteur NOM m p 1.29 4.46 0.30 1.01 +conteuse conteur NOM f s 1.29 4.46 0.15 0.61 +contexte contexte NOM m s 4.50 2.30 4.34 2.16 +contextes contexte NOM m p 4.50 2.30 0.16 0.14 +contextualiser contextualiser VER 0.01 0.00 0.01 0.00 inf; +contextuel contextuel ADJ m s 0.01 0.00 0.01 0.00 +contez conter VER 3.76 8.99 0.38 0.00 imp:pre:2p; +conçois concevoir VER 18.75 27.84 1.31 1.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +conçoit concevoir VER 18.75 27.84 0.42 2.03 ind:pre:3s; +conçoivent concevoir VER 18.75 27.84 0.29 0.47 ind:pre:3p; +conçu concevoir VER m s 18.75 27.84 9.04 6.01 par:pas; +conçue concevoir VER f s 18.75 27.84 2.50 1.62 par:pas; +conçues concevoir VER f p 18.75 27.84 0.35 0.68 par:pas; +conçurent concevoir VER 18.75 27.84 0.01 0.27 ind:pas:3p; +conçus concevoir VER m p 18.75 27.84 0.86 1.42 ind:pas:1s;ind:pas:2s;par:pas; +conçut concevoir VER 18.75 27.84 0.22 1.62 ind:pas:3s; +contiendra contenir VER 30.07 58.92 0.22 0.27 ind:fut:3s; +contiendrai contenir VER 30.07 58.92 0.01 0.00 ind:fut:1s; +contiendraient contenir VER 30.07 58.92 0.00 0.20 cnd:pre:3p; +contiendrait contenir VER 30.07 58.92 0.07 0.47 cnd:pre:3s; +contienne contenir VER 30.07 58.92 0.17 0.20 sub:pre:1s;sub:pre:3s; +contiennent contenir VER 30.07 58.92 2.10 1.69 ind:pre:3p; +contiens contenir VER 30.07 58.92 0.33 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +contient contenir VER 30.07 58.92 13.23 7.36 ind:pre:3s; +contigu contigu ADJ m s 0.08 2.30 0.02 0.47 +contiguïté contiguïté NOM f s 0.00 0.07 0.00 0.07 +contigus contigu ADJ m p 0.08 2.30 0.00 0.20 +contiguë contigu ADJ f s 0.08 2.30 0.02 1.35 +contiguës contigu ADJ f p 0.08 2.30 0.04 0.27 +continûment continûment ADV 0.01 0.88 0.01 0.88 +continence continence NOM f s 0.10 0.61 0.10 0.61 +continent continent NOM m s 6.92 15.95 5.79 12.16 +continental continental ADJ m s 0.71 1.22 0.48 0.54 +continentale continental NOM f s 1.00 0.34 0.29 0.07 +continentales continental ADJ f p 0.71 1.22 0.03 0.07 +continentaux continental NOM m p 1.00 0.34 0.29 0.20 +continents continent NOM m p 6.92 15.95 1.13 3.78 +contingence contingence NOM f s 0.11 1.76 0.06 0.27 +contingences contingence NOM f p 0.11 1.76 0.04 1.49 +contingent contingent NOM m s 0.77 2.64 0.76 1.69 +contingente contingent ADJ f s 0.13 0.41 0.01 0.00 +contingentement contingentement NOM m s 0.01 0.00 0.01 0.00 +contingentes contingent ADJ f p 0.13 0.41 0.00 0.07 +contingents contingent NOM m p 0.77 2.64 0.01 0.95 +contingenté contingenter VER m s 0.00 0.14 0.00 0.14 par:pas; +continrent contenir VER 30.07 58.92 0.00 0.14 ind:pas:3p; +contins contenir VER 30.07 58.92 0.02 0.07 ind:pas:1s; +contint contenir VER 30.07 58.92 0.00 1.55 ind:pas:3s; +continu continu ADJ m s 2.79 9.66 1.58 8.92 +continua continuer VER 269.95 282.77 1.18 28.38 ind:pas:3s; +continuai continuer VER 269.95 282.77 0.03 3.51 ind:pas:1s; +continuaient continuer VER 269.95 282.77 0.70 16.96 ind:imp:3p; +continuais continuer VER 269.95 282.77 1.47 6.08 ind:imp:1s;ind:imp:2s; +continuait continuer VER 269.95 282.77 2.32 60.27 ind:imp:3s; +continuant continuer VER 269.95 282.77 1.27 15.34 par:pre; +continuassent continuer VER 269.95 282.77 0.00 0.14 sub:imp:3p; +continuateur continuateur NOM m s 0.11 0.34 0.11 0.20 +continuateurs continuateur NOM m p 0.11 0.34 0.00 0.14 +continuation continuation NOM f s 1.09 1.01 1.09 1.01 +continue continuer VER 269.95 282.77 76.64 50.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +continuel continuel ADJ m s 1.22 6.76 0.21 1.49 +continuelle continuel ADJ f s 1.22 6.76 0.70 2.70 +continuellement continuellement ADV 1.67 4.80 1.67 4.80 +continuelles continuel ADJ f p 1.22 6.76 0.20 1.69 +continuels continuel ADJ m p 1.22 6.76 0.11 0.88 +continuent continuer VER 269.95 282.77 7.61 9.59 ind:pre:3p; +continuer continuer VER 269.95 282.77 82.29 43.51 inf; +continuera continuer VER 269.95 282.77 6.04 2.57 ind:fut:3s; +continuerai continuer VER 269.95 282.77 3.73 1.08 ind:fut:1s; +continueraient continuer VER 269.95 282.77 0.13 1.22 cnd:pre:3p; +continuerais continuer VER 269.95 282.77 1.02 0.54 cnd:pre:1s;cnd:pre:2s; +continuerait continuer VER 269.95 282.77 0.85 2.91 cnd:pre:3s; +continueras continuer VER 269.95 282.77 1.03 0.41 ind:fut:2s; +continuerez continuer VER 269.95 282.77 0.58 0.61 ind:fut:2p; +continueriez continuer VER 269.95 282.77 0.02 0.00 cnd:pre:2p; +continuerons continuer VER 269.95 282.77 1.55 0.54 ind:fut:1p; +continueront continuer VER 269.95 282.77 1.36 1.42 ind:fut:3p; +continues continuer VER 269.95 282.77 11.66 2.23 ind:pre:2s;sub:pre:2s; +continuez continuer VER 269.95 282.77 47.08 4.73 imp:pre:2p;ind:pre:2p; +continuiez continuer VER 269.95 282.77 0.31 0.00 ind:imp:2p; +continuions continuer VER 269.95 282.77 0.19 1.42 ind:imp:1p;sub:pre:1p; +continuité continuité NOM f s 0.45 4.73 0.45 4.73 +continuâmes continuer VER 269.95 282.77 0.05 0.34 ind:pas:1p; +continuons continuer VER 269.95 282.77 8.06 2.77 imp:pre:1p;ind:pre:1p; +continuât continuer VER 269.95 282.77 0.00 1.76 sub:imp:3s; +continus continu ADJ m p 2.79 9.66 0.17 0.41 +continuèrent continuer VER 269.95 282.77 0.54 4.39 ind:pas:3p; +continué continuer VER m s 269.95 282.77 12.03 18.65 par:pas; +continuée continuer VER f s 269.95 282.77 0.17 0.54 par:pas; +continuées continuer VER f p 269.95 282.77 0.00 0.27 par:pas; +continuum continuum NOM m s 0.55 0.27 0.55 0.27 +continués continuer VER m p 269.95 282.77 0.03 0.07 par:pas; +contions conter VER 3.76 8.99 0.00 0.07 ind:imp:1p; +contondant contondant ADJ m s 0.82 0.47 0.78 0.07 +contondante contondant ADJ f s 0.82 0.47 0.01 0.00 +contondants contondant ADJ m p 0.82 0.47 0.04 0.41 +contorsion contorsion NOM f s 0.16 2.23 0.02 0.47 +contorsionna contorsionner VER 0.20 2.09 0.00 0.07 ind:pas:3s; +contorsionnaient contorsionner VER 0.20 2.09 0.00 0.07 ind:imp:3p; +contorsionnait contorsionner VER 0.20 2.09 0.00 0.34 ind:imp:3s; +contorsionnant contorsionner VER 0.20 2.09 0.00 0.54 par:pre; +contorsionne contorsionner VER 0.20 2.09 0.13 0.20 imp:pre:2s;ind:pre:3s; +contorsionnent contorsionner VER 0.20 2.09 0.01 0.14 ind:pre:3p; +contorsionner contorsionner VER 0.20 2.09 0.04 0.07 inf; +contorsionniste contorsionniste NOM s 0.37 0.14 0.34 0.14 +contorsionnistes contorsionniste NOM p 0.37 0.14 0.04 0.00 +contorsionné contorsionner VER m s 0.20 2.09 0.01 0.27 par:pas; +contorsionnée contorsionner VER f s 0.20 2.09 0.00 0.14 par:pas; +contorsionnées contorsionner VER f p 0.20 2.09 0.00 0.07 par:pas; +contorsionnés contorsionner VER m p 0.20 2.09 0.00 0.20 par:pas; +contorsions contorsion NOM f p 0.16 2.23 0.14 1.76 +contât conter VER 3.76 8.99 0.00 0.07 sub:imp:3s; +contour contour NOM m s 2.09 16.28 0.87 5.00 +contourna contourner VER 6.68 19.59 0.00 2.84 ind:pas:3s; +contournai contourner VER 6.68 19.59 0.00 0.47 ind:pas:1s; +contournaient contourner VER 6.68 19.59 0.01 0.47 ind:imp:3p; +contournais contourner VER 6.68 19.59 0.00 0.07 ind:imp:1s; +contournait contourner VER 6.68 19.59 0.17 1.76 ind:imp:3s; +contournant contourner VER 6.68 19.59 0.23 2.91 par:pre; +contourne contourner VER 6.68 19.59 0.99 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contournement contournement NOM m s 0.14 0.07 0.13 0.00 +contournements contournement NOM m p 0.14 0.07 0.01 0.07 +contournent contourner VER 6.68 19.59 0.08 0.54 ind:pre:3p; +contourner contourner VER 6.68 19.59 3.63 5.47 inf; +contournera contourner VER 6.68 19.59 0.10 0.00 ind:fut:3s; +contournerai contourner VER 6.68 19.59 0.02 0.07 ind:fut:1s; +contournerais contourner VER 6.68 19.59 0.01 0.00 cnd:pre:1s; +contournerez contourner VER 6.68 19.59 0.11 0.00 ind:fut:2p; +contournerons contourner VER 6.68 19.59 0.02 0.07 ind:fut:1p; +contournes contourner VER 6.68 19.59 0.17 0.07 ind:pre:2s; +contournez contourner VER 6.68 19.59 0.20 0.00 imp:pre:2p;ind:pre:2p; +contournions contourner VER 6.68 19.59 0.01 0.14 ind:imp:1p; +contournons contourner VER 6.68 19.59 0.27 0.20 imp:pre:1p;ind:pre:1p; +contournèrent contourner VER 6.68 19.59 0.01 0.47 ind:pas:3p; +contourné contourner VER m s 6.68 19.59 0.59 1.82 par:pas; +contournée contourné ADJ f s 0.05 1.28 0.04 0.34 +contournées contourner VER f p 6.68 19.59 0.03 0.07 par:pas; +contournés contourner VER m p 6.68 19.59 0.01 0.07 par:pas; +contours contour NOM m p 2.09 16.28 1.22 11.28 +contrôla contrôler VER 61.13 21.01 0.00 0.41 ind:pas:3s; +contrôlable contrôlable ADJ s 0.12 0.14 0.08 0.14 +contrôlables contrôlable ADJ p 0.12 0.14 0.04 0.00 +contrôlai contrôler VER 61.13 21.01 0.00 0.20 ind:pas:1s; +contrôlaient contrôler VER 61.13 21.01 0.44 0.47 ind:imp:3p; +contrôlais contrôler VER 61.13 21.01 0.60 0.27 ind:imp:1s;ind:imp:2s; +contrôlait contrôler VER 61.13 21.01 1.17 2.57 ind:imp:3s; +contrôlant contrôler VER 61.13 21.01 0.28 0.81 par:pre; +contrôle contrôle NOM m s 66.28 19.66 63.48 17.43 +contrôlent contrôler VER 61.13 21.01 2.22 0.41 ind:pre:3p; +contrôler contrôler VER 61.13 21.01 24.91 7.57 inf; +contrôlera contrôler VER 61.13 21.01 0.33 0.00 ind:fut:3s; +contrôlerai contrôler VER 61.13 21.01 0.26 0.00 ind:fut:1s; +contrôlerais contrôler VER 61.13 21.01 0.02 0.00 cnd:pre:1s; +contrôlerait contrôler VER 61.13 21.01 0.22 0.07 cnd:pre:3s; +contrôleras contrôler VER 61.13 21.01 0.05 0.00 ind:fut:2s; +contrôlerez contrôler VER 61.13 21.01 0.06 0.00 ind:fut:2p; +contrôleriez contrôler VER 61.13 21.01 0.01 0.00 cnd:pre:2p; +contrôlerons contrôler VER 61.13 21.01 0.67 0.00 ind:fut:1p; +contrôleront contrôler VER 61.13 21.01 0.22 0.00 ind:fut:3p; +contrôles contrôle NOM m p 66.28 19.66 2.80 2.23 +contrôleur contrôleur NOM m s 8.93 5.14 7.43 4.26 +contrôleurs contrôleur NOM m p 8.93 5.14 1.00 0.88 +contrôleuse contrôleur NOM f s 8.93 5.14 0.49 0.00 +contrôlez contrôler VER 61.13 21.01 3.36 0.14 imp:pre:2p;ind:pre:2p; +contrôliez contrôler VER 61.13 21.01 0.09 0.00 ind:imp:2p; +contrôlions contrôler VER 61.13 21.01 0.06 0.14 ind:imp:1p; +contrôlâmes contrôler VER 61.13 21.01 0.00 0.07 ind:pas:1p; +contrôlons contrôler VER 61.13 21.01 1.62 0.00 imp:pre:1p;ind:pre:1p; +contrôlèrent contrôler VER 61.13 21.01 0.01 0.00 ind:pas:3p; +contrôlé contrôler VER m s 61.13 21.01 4.70 2.43 par:pas; +contrôlée contrôler VER f s 61.13 21.01 1.43 1.15 par:pas; +contrôlées contrôler VER f p 61.13 21.01 0.79 0.61 par:pas; +contrôlés contrôler VER m p 61.13 21.01 0.70 0.47 par:pas; +contra contrer VER 19.15 18.72 0.12 0.14 ind:pas:3s; +contraceptif contraceptif NOM m s 0.55 0.07 0.26 0.00 +contraceptifs contraceptif NOM m p 0.55 0.07 0.29 0.07 +contraception contraception NOM f s 0.66 0.68 0.66 0.68 +contraceptive contraceptif ADJ f s 0.56 0.20 0.10 0.00 +contraceptives contraceptif ADJ f p 0.56 0.20 0.38 0.20 +contracta contracter VER 3.31 12.30 0.01 0.95 ind:pas:3s; +contractai contracter VER 3.31 12.30 0.00 0.14 ind:pas:1s; +contractaient contracter VER 3.31 12.30 0.00 0.68 ind:imp:3p; +contractais contracter VER 3.31 12.30 0.00 0.07 ind:imp:1s; +contractait contracter VER 3.31 12.30 0.00 0.95 ind:imp:3s; +contractant contractant ADJ m s 0.20 0.07 0.10 0.00 +contractantes contractant ADJ f p 0.20 0.07 0.10 0.07 +contractants contractant NOM m p 0.06 0.14 0.04 0.14 +contracte contracter VER 3.31 12.30 0.61 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contractent contracter VER 3.31 12.30 0.40 0.47 ind:pre:3p; +contracter contracter VER 3.31 12.30 0.48 1.42 inf; +contracterait contracter VER 3.31 12.30 0.00 0.07 cnd:pre:3s; +contractez contracter VER 3.31 12.30 0.11 0.00 imp:pre:2p; +contractile contractile ADJ s 0.01 0.00 0.01 0.00 +contraction contraction NOM f s 3.05 2.97 1.00 2.23 +contractions contraction NOM f p 3.05 2.97 2.05 0.74 +contractons contracter VER 3.31 12.30 0.00 0.07 ind:pre:1p; +contractèrent contracter VER 3.31 12.30 0.00 0.27 ind:pas:3p; +contracté contracter VER m s 3.31 12.30 1.22 2.97 par:pas; +contractée contracter VER f s 3.31 12.30 0.36 0.88 par:pas; +contractuel contractuel NOM m s 0.68 0.34 0.07 0.00 +contractuelle contractuel NOM f s 0.68 0.34 0.58 0.07 +contractuellement contractuellement ADV 0.13 0.00 0.13 0.00 +contractuelles contractuel ADJ f p 0.35 0.47 0.17 0.00 +contractuels contractuel NOM m p 0.68 0.34 0.02 0.27 +contractées contracter VER f p 3.31 12.30 0.06 0.41 par:pas; +contracture contracture NOM f s 0.04 0.34 0.03 0.27 +contractures contracture NOM f p 0.04 0.34 0.01 0.07 +contractés contracter VER m p 3.31 12.30 0.03 0.34 par:pas; +contradicteur contradicteur NOM m s 0.02 0.14 0.01 0.00 +contradicteurs contradicteur NOM m p 0.02 0.14 0.01 0.14 +contradiction contradiction NOM f s 2.09 12.97 1.28 7.36 +contradictions contradiction NOM f p 2.09 12.97 0.81 5.61 +contradictoire contradictoire ADJ s 2.42 9.05 1.56 2.43 +contradictoirement contradictoirement ADV 0.00 0.20 0.00 0.20 +contradictoires contradictoire ADJ p 2.42 9.05 0.87 6.62 +contraignît contraindre VER 6.66 24.73 0.00 0.14 sub:imp:3s; +contraignaient contraindre VER 6.66 24.73 0.00 0.41 ind:imp:3p; +contraignais contraindre VER 6.66 24.73 0.00 0.14 ind:imp:1s; +contraignait contraindre VER 6.66 24.73 0.10 1.89 ind:imp:3s; +contraignant contraignant ADJ m s 0.16 1.15 0.11 0.68 +contraignante contraignant ADJ f s 0.16 1.15 0.04 0.34 +contraignantes contraignant ADJ f p 0.16 1.15 0.02 0.14 +contraigne contraindre VER 6.66 24.73 0.04 0.07 sub:pre:3s; +contraignent contraindre VER 6.66 24.73 0.26 0.88 ind:pre:3p; +contraignit contraindre VER 6.66 24.73 0.00 1.96 ind:pas:3s; +contraindra contraindre VER 6.66 24.73 0.02 0.07 ind:fut:3s; +contraindrai contraindre VER 6.66 24.73 0.01 0.07 ind:fut:1s; +contraindraient contraindre VER 6.66 24.73 0.00 0.07 cnd:pre:3p; +contraindrais contraindre VER 6.66 24.73 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +contraindrait contraindre VER 6.66 24.73 0.00 0.14 cnd:pre:3s; +contraindre contraindre VER 6.66 24.73 1.21 3.99 inf; +contrains contraindre VER 6.66 24.73 0.06 0.27 ind:pre:1s;ind:pre:2s; +contraint contraindre VER m s 6.66 24.73 3.42 8.92 ind:pre:3s;par:pas; +contrainte contrainte NOM f s 2.94 5.81 2.94 5.81 +contraintes contraint NOM f p 1.13 3.31 1.13 3.31 +contraints contraindre VER m p 6.66 24.73 0.95 2.23 par:pas; +contraire contraire NOM m s 62.13 126.01 62.03 125.47 +contrairement contrairement ADV 8.79 10.41 8.79 10.41 +contraires contraire ADJ p 6.90 14.53 0.51 3.78 +contrait contrer VER 19.15 18.72 0.01 0.14 ind:imp:3s; +contralto contralto NOM m s 0.28 0.27 0.28 0.20 +contraltos contralto NOM m p 0.28 0.27 0.01 0.07 +contrant contrer VER 19.15 18.72 0.00 0.07 par:pre; +contrapunctique contrapunctique ADJ m s 0.00 0.07 0.00 0.07 +contrapuntique contrapuntique ADJ f s 0.02 0.00 0.02 0.00 +contraria contrarier VER 11.03 13.31 0.10 0.61 ind:pas:3s; +contrariaient contrarier VER 11.03 13.31 0.01 0.20 ind:imp:3p; +contrariais contrarier VER 11.03 13.31 0.01 0.07 ind:imp:1s; +contrariait contrarier VER 11.03 13.31 0.27 1.49 ind:imp:3s; +contrariant contrariant ADJ m s 0.84 1.55 0.76 1.15 +contrariante contrariant ADJ f s 0.84 1.55 0.04 0.20 +contrariantes contrariant ADJ f p 0.84 1.55 0.03 0.14 +contrariants contrariant ADJ m p 0.84 1.55 0.01 0.07 +contrarie contrarier VER 11.03 13.31 1.77 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contrarient contrarier VER 11.03 13.31 0.08 0.41 ind:pre:3p; +contrarier contrarier VER 11.03 13.31 2.72 5.81 inf; +contrarierai contrarier VER 11.03 13.31 0.00 0.14 ind:fut:1s; +contrarierait contrarier VER 11.03 13.31 0.23 0.20 cnd:pre:3s; +contrariez contrarier VER 11.03 13.31 0.23 0.00 imp:pre:2p;ind:pre:2p; +contrarions contrarier VER 11.03 13.31 0.02 0.07 imp:pre:1p; +contrariât contrarier VER 11.03 13.31 0.00 0.07 sub:imp:3s; +contrarié contrarier VER m s 11.03 13.31 3.29 1.55 par:pas; +contrariée contrarier VER f s 11.03 13.31 1.94 1.15 par:pas; +contrariées contrarié ADJ f p 2.62 4.12 0.03 0.27 +contrariés contrarié ADJ m p 2.62 4.12 0.41 0.27 +contrariété contrariété NOM f s 0.58 3.99 0.38 3.18 +contrariétés contrariété NOM f p 0.58 3.99 0.21 0.81 +contras contra NOM m p 0.20 0.00 0.08 0.00 +contrasta contraster VER 0.21 8.58 0.00 0.07 ind:pas:3s; +contrastaient contraster VER 0.21 8.58 0.00 1.28 ind:imp:3p; +contrastait contraster VER 0.21 8.58 0.00 3.65 ind:imp:3s; +contrastant contraster VER 0.21 8.58 0.02 1.42 par:pre; +contraste contraste NOM m s 1.48 12.50 1.23 11.62 +contrastent contraster VER 0.21 8.58 0.01 0.47 ind:pre:3p; +contraster contraster VER 0.21 8.58 0.09 0.14 inf; +contrasteraient contraster VER 0.21 8.58 0.01 0.00 cnd:pre:3p; +contrasterait contraster VER 0.21 8.58 0.01 0.07 cnd:pre:3s; +contrastes contraste NOM m p 1.48 12.50 0.25 0.88 +contrastez contraster VER 0.21 8.58 0.01 0.00 imp:pre:2p; +contrastât contraster VER 0.21 8.58 0.00 0.14 sub:imp:3s; +contrasté contraster VER m s 0.21 8.58 0.02 0.07 par:pas; +contrastée contrasté ADJ f s 0.03 0.41 0.01 0.14 +contrastées contrasté ADJ f p 0.03 0.41 0.00 0.14 +contrastés contraster VER m p 0.21 8.58 0.00 0.07 par:pas; +contrat_type contrat_type NOM m s 0.01 0.07 0.01 0.07 +contrat contrat NOM m s 53.23 15.00 45.70 12.43 +contrats contrat NOM m p 53.23 15.00 7.53 2.57 +contravention contravention NOM f s 2.76 1.22 1.85 0.95 +contraventions contravention NOM f p 2.76 1.22 0.91 0.27 +contre_accusation contre_accusation NOM f p 0.01 0.00 0.01 0.00 +contre_alizé contre_alizé NOM m p 0.00 0.07 0.00 0.07 +contre_allée contre_allée NOM f s 0.05 0.34 0.04 0.20 +contre_allée contre_allée NOM f p 0.05 0.34 0.01 0.14 +contre_amiral contre_amiral NOM m s 0.19 0.07 0.19 0.07 +contre_appel contre_appel NOM m s 0.00 0.07 0.00 0.07 +contre_assurance contre_assurance NOM f s 0.00 0.07 0.00 0.07 +contre_attaquer contre_attaquer VER 0.71 1.96 0.01 0.07 ind:pas:3s; +contre_attaquer contre_attaquer VER 0.71 1.96 0.00 0.20 ind:imp:3p; +contre_attaquer contre_attaquer VER 0.71 1.96 0.00 0.07 ind:imp:3s; +contre_attaquer contre_attaquer VER 0.71 1.96 0.00 0.07 par:pre; +contre_attaque contre_attaque NOM f s 1.46 2.16 1.35 1.69 +contre_attaquer contre_attaquer VER 0.71 1.96 0.07 0.20 ind:pre:3p; +contre_attaquer contre_attaquer VER 0.71 1.96 0.37 0.95 inf; +contre_attaquer contre_attaquer VER 0.71 1.96 0.01 0.00 ind:fut:3s; +contre_attaquer contre_attaquer VER 0.71 1.96 0.03 0.07 ind:fut:1p; +contre_attaque contre_attaque NOM f p 1.46 2.16 0.11 0.47 +contre_attaquer contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pre:1p; +contre_attaquer contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pas:3p; +contre_attaquer contre_attaquer VER m s 0.71 1.96 0.07 0.07 par:pas; +contre_champ contre_champ NOM m s 0.00 0.07 0.00 0.07 +contre_chant contre_chant NOM m s 0.00 0.14 0.00 0.14 +contre_choc contre_choc NOM m p 0.00 0.07 0.00 0.07 +contre_clé contre_clé NOM f p 0.00 0.07 0.00 0.07 +contre_courant contre_courant NOM m s 0.59 1.96 0.59 1.96 +contre_culture contre_culture NOM f s 0.03 0.00 0.03 0.00 +contre_emploi contre_emploi NOM m s 0.01 0.00 0.01 0.00 +contre_espionnage contre_espionnage NOM m s 0.67 0.34 0.67 0.34 +contre_exemple contre_exemple NOM m s 0.00 0.07 0.00 0.07 +contre_expertise contre_expertise NOM f s 0.52 0.27 0.51 0.20 +contre_expertise contre_expertise NOM f p 0.52 0.27 0.01 0.07 +contre_feu contre_feu NOM m s 0.07 0.00 0.07 0.00 +contre_feux contre_feux NOM m p 0.00 0.07 0.00 0.07 +contre_fiche contre_fiche NOM f p 0.00 0.07 0.00 0.07 +contre_fil contre_fil NOM m s 0.00 0.07 0.00 0.07 +contre_gré contre_gré NOM m s 0.00 0.14 0.00 0.14 +contre_indication contre_indication NOM f s 0.07 0.00 0.04 0.00 +contre_indication contre_indication NOM f p 0.07 0.00 0.04 0.00 +contre_indiquer contre_indiquer VER m s 0.06 0.14 0.06 0.14 par:pas; +contre_interrogatoire contre_interrogatoire NOM m s 0.48 0.00 0.46 0.00 +contre_interrogatoire contre_interrogatoire NOM m p 0.48 0.00 0.02 0.00 +contre_jour contre_jour NOM m s 0.39 6.01 0.39 6.01 +contre_la_montre contre_la_montre NOM m s 0.80 0.00 0.80 0.00 +contre_lame contre_lame NOM f s 0.00 0.07 0.00 0.07 +contre_lettre contre_lettre NOM f s 0.00 0.14 0.00 0.14 +contre_manifestant contre_manifestant NOM m p 0.00 0.14 0.00 0.14 +contre_manifester contre_manifester VER 0.00 0.07 0.00 0.07 ind:pre:3p; +contre_mesure contre_mesure NOM f s 0.42 0.00 0.04 0.00 +contre_mesure contre_mesure NOM f p 0.42 0.00 0.39 0.00 +contre_mine contre_mine NOM f s 0.00 0.14 0.00 0.07 +contre_mine contre_mine NOM f p 0.00 0.14 0.00 0.07 +contre_miner contre_miner VER m s 0.00 0.07 0.00 0.07 par:pas; +contre_nature contre_nature ADJ s 0.41 0.14 0.41 0.14 +contre_offensive contre_offensive NOM f s 0.29 0.41 0.18 0.41 +contre_offensive contre_offensive NOM f p 0.29 0.41 0.11 0.00 +contre_ordre contre_ordre NOM m s 0.47 0.95 0.46 0.81 +contre_ordre contre_ordre NOM m p 0.47 0.95 0.01 0.14 +contre_pente contre_pente NOM f s 0.00 0.34 0.00 0.34 +contre_performance contre_performance NOM f s 0.14 0.07 0.14 0.00 +contre_performance contre_performance NOM f p 0.14 0.07 0.00 0.07 +contre_pied contre_pied NOM m s 0.04 0.61 0.04 0.54 +contre_pied contre_pied NOM m p 0.04 0.61 0.00 0.07 +contre_plaqué contre_plaqué NOM m s 0.10 0.54 0.10 0.54 +contre_plongée contre_plongée NOM f s 0.23 0.47 0.23 0.47 +contre_pouvoir contre_pouvoir NOM m p 0.00 0.07 0.00 0.07 +contre_pression contre_pression NOM f s 0.02 0.00 0.02 0.00 +contre_productif contre_productif ADJ m s 0.10 0.00 0.09 0.00 +contre_productif contre_productif ADJ f s 0.10 0.00 0.01 0.00 +contre_propagande contre_propagande NOM f s 0.02 0.07 0.02 0.07 +contre_proposition contre_proposition NOM f s 0.40 0.07 0.39 0.07 +contre_proposition contre_proposition NOM f p 0.40 0.07 0.01 0.00 +contre_réaction contre_réaction NOM f s 0.01 0.00 0.01 0.00 +contre_réforme contre_réforme NOM f s 0.00 0.61 0.00 0.61 +contre_révolution contre_révolution NOM f s 0.37 0.34 0.37 0.34 +contre_révolutionnaire contre_révolutionnaire ADJ s 0.14 0.27 0.03 0.00 +contre_révolutionnaire contre_révolutionnaire ADJ p 0.14 0.27 0.11 0.27 +contre_terrorisme contre_terrorisme NOM m s 0.07 0.00 0.07 0.00 +contre_terroriste contre_terroriste ADJ f s 0.00 0.07 0.00 0.07 +contre_test contre_test NOM m s 0.00 0.07 0.00 0.07 +contre_torpilleur contre_torpilleur NOM m s 0.20 1.22 0.08 0.61 +contre_torpilleur contre_torpilleur NOM m p 0.20 1.22 0.12 0.61 +contre_transfert contre_transfert NOM m s 0.01 0.00 0.01 0.00 +contre_épreuve contre_épreuve NOM f s 0.01 0.07 0.00 0.07 +contre_épreuve contre_épreuve NOM f p 0.01 0.07 0.01 0.00 +contre_ut contre_ut NOM m 0.04 0.07 0.04 0.07 +contre_voie contre_voie NOM f s 0.00 0.27 0.00 0.27 +contre_vérité contre_vérité NOM f s 0.02 0.07 0.02 0.07 +contre contre PRE 313.71 591.15 313.71 591.15 +contrebalance contrebalancer VER 0.19 0.68 0.03 0.14 ind:pre:1s;ind:pre:3s; +contrebalancer contrebalancer VER 0.19 0.68 0.12 0.27 inf; +contrebalancé contrebalancer VER m s 0.19 0.68 0.01 0.00 par:pas; +contrebalancée contrebalancer VER f s 0.19 0.68 0.02 0.00 par:pas; +contrebalancés contrebalancer VER m p 0.19 0.68 0.01 0.07 par:pas; +contrebalançais contrebalancer VER 0.19 0.68 0.00 0.07 ind:imp:1s; +contrebalançait contrebalancer VER 0.19 0.68 0.00 0.14 ind:imp:3s; +contrebande contrebande NOM f s 3.72 1.96 3.72 1.96 +contrebandier contrebandier NOM m s 1.43 1.08 0.47 0.47 +contrebandiers contrebandier NOM m p 1.43 1.08 0.94 0.54 +contrebandière contrebandier NOM f s 1.43 1.08 0.01 0.07 +contrebas contrebas ADV 0.23 6.49 0.23 6.49 +contrebasse contrebasse NOM s 0.41 0.34 0.41 0.27 +contrebasses contrebasse NOM p 0.41 0.34 0.00 0.07 +contrebassiste contrebassiste NOM s 0.02 0.14 0.01 0.14 +contrebassistes contrebassiste NOM p 0.02 0.14 0.01 0.00 +contrebraque contrebraquer VER 0.01 0.07 0.01 0.07 imp:pre:2s;ind:pre:1s; +contrecarraient contrecarrer VER 1.06 1.82 0.00 0.07 ind:imp:3p; +contrecarrais contrecarrer VER 1.06 1.82 0.00 0.07 ind:imp:1s; +contrecarre contrecarrer VER 1.06 1.82 0.08 0.54 imp:pre:2s;ind:pre:3s;sub:pre:3s; +contrecarrer contrecarrer VER 1.06 1.82 0.93 0.68 inf; +contrecarres contrecarrer VER 1.06 1.82 0.00 0.27 ind:pre:2s; +contrecarré contrecarrer VER m s 1.06 1.82 0.03 0.07 par:pas; +contrecarrée contrecarrer VER f s 1.06 1.82 0.03 0.14 par:pas; +contrechamp contrechamp NOM m s 0.46 0.34 0.11 0.34 +contrechamps contrechamp NOM m p 0.46 0.34 0.35 0.00 +contrecoeur contrecoeur NOM m s 0.69 3.38 0.69 3.38 +contrecollé contrecollé ADJ m s 0.00 0.07 0.00 0.07 +contrecoup contrecoup NOM m s 0.26 2.03 0.23 1.49 +contrecoups contrecoup NOM m p 0.26 2.03 0.04 0.54 +contredît contredire VER 6.99 7.84 0.00 0.07 sub:imp:3s; +contredanse contredanse NOM f s 0.50 0.54 0.30 0.27 +contredanses contredanse NOM f p 0.50 0.54 0.20 0.27 +contredira contredire VER 6.99 7.84 0.05 0.07 ind:fut:3s; +contredirai contredire VER 6.99 7.84 0.18 0.07 ind:fut:1s; +contrediraient contredire VER 6.99 7.84 0.03 0.07 cnd:pre:3p; +contredirait contredire VER 6.99 7.84 0.08 0.14 cnd:pre:3s; +contredire contredire VER 6.99 7.84 3.03 3.51 inf; +contredirez contredire VER 6.99 7.84 0.03 0.00 ind:fut:2p; +contredis contredire VER 6.99 7.84 0.92 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +contredisaient contredire VER 6.99 7.84 0.34 0.20 ind:imp:3p; +contredisait contredire VER 6.99 7.84 0.27 0.81 ind:imp:3s; +contredisant contredire VER 6.99 7.84 0.01 0.47 par:pre; +contredise contredire VER 6.99 7.84 0.03 0.14 sub:pre:3s; +contredisent contredire VER 6.99 7.84 0.48 0.41 ind:pre:3p; +contredises contredire VER 6.99 7.84 0.02 0.00 sub:pre:2s; +contredisez contredire VER 6.99 7.84 0.11 0.00 imp:pre:2p;ind:pre:2p; +contredit contredire VER m s 6.99 7.84 1.34 1.28 ind:pre:3s;par:pas; +contredite contredire VER f s 6.99 7.84 0.04 0.20 par:pas; +contredites contredire VER f p 6.99 7.84 0.01 0.14 par:pas; +contredits contredire VER m p 6.99 7.84 0.04 0.07 par:pas; +contrefacteurs contrefacteur NOM m p 0.00 0.07 0.00 0.07 +contrefaire contrefaire VER 0.51 0.74 0.22 0.20 inf; +contrefaisait contrefaire VER 0.51 0.74 0.00 0.14 ind:imp:3s; +contrefaisant contrefaire VER 0.51 0.74 0.00 0.14 par:pre; +contrefait contrefaire VER m s 0.51 0.74 0.17 0.14 ind:pre:3s;par:pas; +contrefaite contrefaire VER f s 0.51 0.74 0.07 0.00 par:pas; +contrefaits contrefait ADJ m p 0.17 0.95 0.07 0.14 +contrefaçon contrefaçon NOM f s 1.12 1.15 0.70 0.95 +contrefaçons contrefaçon NOM f p 1.12 1.15 0.42 0.20 +contreferait contrefaire VER 0.51 0.74 0.00 0.07 cnd:pre:3s; +contrefichais contreficher VER 0.59 0.68 0.00 0.20 ind:imp:1s; +contrefichait contreficher VER 0.59 0.68 0.00 0.20 ind:imp:3s; +contrefiche contreficher VER 0.59 0.68 0.59 0.27 ind:pre:1s;ind:pre:3s; +contrefort contrefort NOM m s 0.08 3.65 0.02 0.47 +contreforts contrefort NOM m p 0.08 3.65 0.06 3.18 +contrefous contrefoutre VER 0.89 0.54 0.72 0.20 ind:pre:1s;ind:pre:2s; +contrefout contrefoutre VER 0.89 0.54 0.16 0.14 ind:pre:3s; +contrefoutait contrefoutre VER 0.89 0.54 0.00 0.20 ind:imp:3s; +contrefoutre contrefoutre VER 0.89 0.54 0.01 0.00 inf; +contremaître contremaître NOM m s 3.65 3.99 3.61 3.51 +contremaîtres contremaître NOM m p 3.65 3.99 0.04 0.47 +contremaîtresse contremaîtresse NOM f s 0.00 0.27 0.00 0.27 +contremander contremander VER 0.01 0.00 0.01 0.00 inf; +contremarches contremarche NOM f p 0.00 0.07 0.00 0.07 +contremarques contremarque NOM f p 0.00 0.07 0.00 0.07 +contrent contrer VER 19.15 18.72 0.02 0.00 ind:pre:3p; +contrepartie contrepartie NOM f s 1.33 2.16 1.33 2.16 +contreplaqué contreplaqué NOM m s 0.15 1.35 0.15 1.35 +contrepoids contrepoids NOM m 0.56 1.82 0.56 1.82 +contrepoint contrepoint NOM m s 0.33 1.62 0.33 1.62 +contrepoison contrepoison NOM m s 0.00 0.47 0.00 0.27 +contrepoisons contrepoison NOM m p 0.00 0.47 0.00 0.20 +contreproposition contreproposition NOM f s 0.01 0.00 0.01 0.00 +contrepèterie contrepèterie NOM f s 0.00 0.20 0.00 0.07 +contrepèteries contrepèterie NOM f p 0.00 0.20 0.00 0.14 +contrer contrer VER 19.15 18.72 1.60 1.08 inf; +contrerai contrer VER 19.15 18.72 0.01 0.00 ind:fut:1s; +contrerait contrer VER 19.15 18.72 0.01 0.07 cnd:pre:3s; +contreras contrer VER 19.15 18.72 0.31 0.00 ind:fut:2s; +contreront contrer VER 19.15 18.72 0.00 0.07 ind:fut:3p; +contres contre NOM m p 5.43 5.81 0.08 0.07 +contrescarpe contrescarpe NOM f s 0.14 0.61 0.14 0.61 +contreseing contreseing NOM m s 0.21 0.07 0.21 0.07 +contresens contresens NOM m 0.50 1.55 0.50 1.55 +contresignait contresigner VER 0.24 0.74 0.00 0.07 ind:imp:3s; +contresigne contresigner VER 0.24 0.74 0.01 0.14 ind:pre:1s;ind:pre:3s; +contresigner contresigner VER 0.24 0.74 0.06 0.14 inf; +contresigné contresigner VER m s 0.24 0.74 0.06 0.14 par:pas; +contresignée contresigner VER f s 0.24 0.74 0.10 0.07 par:pas; +contresignées contresigner VER f p 0.24 0.74 0.00 0.07 par:pas; +contresignés contresigner VER m p 0.24 0.74 0.01 0.14 par:pas; +contretemps contretemps NOM m 1.43 3.18 1.43 3.18 +contretypés contretyper VER m p 0.00 0.07 0.00 0.07 par:pas; +contrevallation contrevallation NOM f s 0.01 0.00 0.01 0.00 +contrevenaient contrevenir VER 0.31 1.08 0.00 0.07 ind:imp:3p; +contrevenait contrevenir VER 0.31 1.08 0.00 0.07 ind:imp:3s; +contrevenant contrevenir VER 0.31 1.08 0.21 0.07 par:pre; +contrevenants contrevenant NOM m p 0.50 0.27 0.37 0.27 +contrevenez contrevenir VER 0.31 1.08 0.01 0.00 ind:pre:2p; +contrevenir contrevenir VER 0.31 1.08 0.04 0.47 inf; +contrevent contrevent NOM m s 0.00 1.15 0.00 0.07 +contrevents contrevent NOM m p 0.00 1.15 0.00 1.08 +contrevenu contrevenir VER m s 0.31 1.08 0.02 0.14 par:pas; +contreviendrait contrevenir VER 0.31 1.08 0.01 0.00 cnd:pre:3s; +contreviens contrevenir VER 0.31 1.08 0.00 0.07 ind:pre:1s; +contrevient contrevenir VER 0.31 1.08 0.01 0.20 ind:pre:3s; +contrevérité contrevérité NOM f s 0.05 0.14 0.00 0.07 +contrevérités contrevérité NOM f p 0.05 0.14 0.05 0.07 +contribua contribuer VER 5.63 18.11 0.14 0.81 ind:pas:3s; +contribuable contribuable NOM s 2.55 0.41 1.25 0.07 +contribuables contribuable NOM p 2.55 0.41 1.30 0.34 +contribuaient contribuer VER 5.63 18.11 0.00 1.42 ind:imp:3p; +contribuait contribuer VER 5.63 18.11 0.02 2.57 ind:imp:3s; +contribuant contribuer VER 5.63 18.11 0.06 0.20 par:pre; +contribue contribuer VER 5.63 18.11 0.97 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +contribuent contribuer VER 5.63 18.11 0.16 0.74 ind:pre:3p; +contribuer contribuer VER 5.63 18.11 1.67 2.84 inf; +contribuera contribuer VER 5.63 18.11 0.05 0.61 ind:fut:3s; +contribueraient contribuer VER 5.63 18.11 0.01 0.34 cnd:pre:3p; +contribuerais contribuer VER 5.63 18.11 0.01 0.00 cnd:pre:2s; +contribuerait contribuer VER 5.63 18.11 0.03 0.54 cnd:pre:3s; +contribueras contribuer VER 5.63 18.11 0.01 0.00 ind:fut:2s; +contribuerez contribuer VER 5.63 18.11 0.04 0.00 ind:fut:2p; +contribueront contribuer VER 5.63 18.11 0.13 0.07 ind:fut:3p; +contribuez contribuer VER 5.63 18.11 0.01 0.14 ind:pre:2p; +contribuons contribuer VER 5.63 18.11 0.10 0.07 imp:pre:1p;ind:pre:1p; +contribuât contribuer VER 5.63 18.11 0.00 0.07 sub:imp:3s; +contributeur contributeur NOM m s 0.02 0.00 0.02 0.00 +contribuèrent contribuer VER 5.63 18.11 0.00 0.27 ind:pas:3p; +contribution contribution NOM f s 4.03 5.34 3.30 4.39 +contributions contribution NOM f p 4.03 5.34 0.73 0.95 +contribué contribuer VER m s 5.63 18.11 2.20 5.68 par:pas; +contrista contrister VER 0.00 0.20 0.00 0.07 ind:pas:3s; +contristant contrister VER 0.00 0.20 0.00 0.07 par:pre; +contristées contrister VER f p 0.00 0.20 0.00 0.07 par:pas; +contrit contrit ADJ m s 0.19 2.50 0.14 1.89 +contrite contrit ADJ f s 0.19 2.50 0.02 0.41 +contrites contrit ADJ f p 0.19 2.50 0.01 0.00 +contrition contrition NOM f s 0.87 1.76 0.87 1.69 +contritions contrition NOM f p 0.87 1.76 0.00 0.07 +contrits contrit ADJ m p 0.19 2.50 0.01 0.20 +control control ADJ s 1.27 0.07 1.27 0.07 +contrordre contrordre NOM m s 0.41 0.34 0.28 0.00 +contrordres contrordre NOM m p 0.41 0.34 0.14 0.34 +controverse controverse NOM f s 1.38 2.57 1.13 1.42 +controverses controverse NOM f p 1.38 2.57 0.24 1.15 +controversé controversé ADJ m s 0.85 0.27 0.46 0.14 +controversée controversé ADJ f s 0.85 0.27 0.20 0.14 +controversées controversé ADJ f p 0.85 0.27 0.06 0.00 +controversés controversé ADJ m p 0.85 0.27 0.14 0.00 +contré contrer VER m s 19.15 18.72 0.27 0.27 par:pas; +contrée contrée NOM f s 2.77 5.41 1.65 2.70 +contrées contrée NOM f p 2.77 5.41 1.12 2.70 +contrés contrer VER m p 19.15 18.72 0.03 0.07 par:pas; +conté conter VER m s 3.76 8.99 0.47 0.88 par:pas; +contée conter VER f s 3.76 8.99 0.18 0.68 par:pas; +contées conter VER f p 3.76 8.99 0.01 0.20 par:pas; +contumace contumace NOM f s 0.03 0.61 0.03 0.54 +contumaces contumace NOM f p 0.03 0.61 0.00 0.07 +contumax contumax ADJ 0.00 0.20 0.00 0.20 +contés conter VER m p 3.76 8.99 0.01 0.14 par:pas; +contuse contus ADJ f s 0.00 0.07 0.00 0.07 +contusion contusion NOM f s 3.23 0.74 1.03 0.47 +contusionné contusionné ADJ m s 0.07 0.14 0.06 0.00 +contusionnée contusionner VER f s 0.27 0.07 0.22 0.00 par:pas; +contusionnés contusionner VER m p 0.27 0.07 0.03 0.00 par:pas; +contusions contusion NOM f p 3.23 0.74 2.19 0.27 +convînmes convenir VER 38.82 73.78 0.00 0.68 ind:pas:1p; +convînt convenir VER 38.82 73.78 0.00 0.34 sub:imp:3s; +convainc convaincre VER 56.67 46.35 0.70 0.34 ind:pre:3s; +convaincant convaincant ADJ m s 4.39 4.26 2.86 2.30 +convaincante convaincant ADJ f s 4.39 4.26 0.96 1.42 +convaincantes convaincant ADJ f p 4.39 4.26 0.09 0.27 +convaincants convaincant ADJ m p 4.39 4.26 0.49 0.27 +convaincra convaincre VER 56.67 46.35 0.84 0.00 ind:fut:3s; +convaincrai convaincre VER 56.67 46.35 0.47 0.07 ind:fut:1s; +convaincrait convaincre VER 56.67 46.35 0.14 0.34 cnd:pre:3s; +convaincras convaincre VER 56.67 46.35 0.34 0.07 ind:fut:2s; +convaincre convaincre VER 56.67 46.35 28.40 23.72 inf;; +convaincrez convaincre VER 56.67 46.35 0.16 0.07 ind:fut:2p; +convaincrons convaincre VER 56.67 46.35 0.03 0.07 ind:fut:1p; +convaincront convaincre VER 56.67 46.35 0.07 0.07 ind:fut:3p; +convaincs convaincre VER 56.67 46.35 0.72 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +convaincu convaincre VER m s 56.67 46.35 16.11 12.84 par:pas; +convaincue convaincre VER f s 56.67 46.35 5.57 3.92 par:pas; +convaincues convaincu ADJ f p 5.79 11.35 0.15 0.34 +convaincus convaincre VER m p 56.67 46.35 1.99 1.82 par:pas; +convainquaient convaincre VER 56.67 46.35 0.00 0.07 ind:imp:3p; +convainquait convaincre VER 56.67 46.35 0.00 0.61 ind:imp:3s; +convainquant convaincre VER 56.67 46.35 0.19 0.20 par:pre; +convainque convaincre VER 56.67 46.35 0.14 0.14 sub:pre:1s;sub:pre:3s; +convainquent convaincre VER 56.67 46.35 0.23 0.14 ind:pre:3p; +convainques convaincre VER 56.67 46.35 0.04 0.07 sub:pre:2s; +convainquez convaincre VER 56.67 46.35 0.32 0.00 imp:pre:2p;ind:pre:2p; +convainquiez convaincre VER 56.67 46.35 0.04 0.00 ind:imp:2p; +convainquirent convaincre VER 56.67 46.35 0.00 0.20 ind:pas:3p; +convainquis convaincre VER 56.67 46.35 0.01 0.34 ind:pas:1s; +convainquit convaincre VER 56.67 46.35 0.12 0.81 ind:pas:3s; +convainquons convaincre VER 56.67 46.35 0.01 0.07 imp:pre:1p; +convalescence convalescence NOM f s 1.65 3.24 1.64 3.04 +convalescences convalescence NOM f p 1.65 3.24 0.01 0.20 +convalescent convalescent ADJ m s 0.23 1.28 0.20 0.74 +convalescente convalescent ADJ f s 0.23 1.28 0.01 0.47 +convalescentes convalescent ADJ f p 0.23 1.28 0.01 0.07 +convalescents convalescent ADJ m p 0.23 1.28 0.01 0.00 +convalo convalo NOM f s 0.01 0.34 0.01 0.27 +convalos convalo NOM f p 0.01 0.34 0.00 0.07 +convecteur convecteur NOM m s 0.01 0.00 0.01 0.00 +convection convection NOM f s 0.06 0.00 0.06 0.00 +convenable convenable ADJ s 5.96 16.22 5.37 12.91 +convenablement convenablement ADV 2.02 6.22 2.02 6.22 +convenables convenable ADJ p 5.96 16.22 0.59 3.31 +convenaient convenir VER 38.82 73.78 0.41 1.76 ind:imp:3p; +convenais convenir VER 38.82 73.78 0.20 0.20 ind:imp:1s;ind:imp:2s; +convenait convenir VER 38.82 73.78 1.72 15.34 ind:imp:3s; +convenance convenance NOM f s 1.82 5.47 1.22 2.64 +convenances convenance NOM f p 1.82 5.47 0.60 2.84 +convenant convenir VER 38.82 73.78 0.20 1.08 par:pre; +convenez convenir VER 38.82 73.78 0.62 0.61 imp:pre:2p;ind:pre:2p; +conveniez convenir VER 38.82 73.78 0.16 0.00 ind:imp:2p; +convenir convenir VER 38.82 73.78 2.02 8.85 inf; +convenons convenir VER 38.82 73.78 0.17 0.34 imp:pre:1p;ind:pre:1p; +convent convent NOM m s 0.03 0.07 0.03 0.07 +conventicule conventicule NOM m s 0.00 0.07 0.00 0.07 +convention convention NOM f s 7.44 12.64 5.73 8.85 +conventionnel conventionnel ADJ m s 3.06 3.92 1.16 1.62 +conventionnelle conventionnel ADJ f s 3.06 3.92 1.40 1.28 +conventionnellement conventionnellement ADV 0.01 0.20 0.01 0.20 +conventionnelles conventionnel ADJ f p 3.06 3.92 0.22 0.41 +conventionnels conventionnel ADJ m p 3.06 3.92 0.29 0.61 +conventionnée conventionné ADJ f s 0.14 0.00 0.14 0.00 +conventions convention NOM f p 7.44 12.64 1.71 3.78 +conventuel conventuel ADJ m s 0.10 0.68 0.00 0.20 +conventuelle conventuel ADJ f s 0.10 0.68 0.10 0.34 +conventuellement conventuellement ADV 0.00 0.07 0.00 0.07 +conventuelles conventuel ADJ f p 0.10 0.68 0.00 0.07 +conventuels conventuel ADJ m p 0.10 0.68 0.00 0.07 +convenu convenir VER m s 38.82 73.78 6.88 11.01 par:pas; +convenue convenu ADJ f s 2.21 5.07 0.11 1.22 +convenues convenu ADJ f p 2.21 5.07 0.01 0.41 +convenus convenir VER m p 38.82 73.78 0.09 1.15 par:pas; +converge converger VER 0.86 3.99 0.23 0.41 ind:pre:3s; +convergeaient converger VER 0.86 3.99 0.01 1.15 ind:imp:3p; +convergeait converger VER 0.86 3.99 0.00 0.27 ind:imp:3s; +convergeant converger VER 0.86 3.99 0.13 0.61 par:pre; +convergence convergence NOM f s 0.24 0.68 0.24 0.68 +convergent converger VER 0.86 3.99 0.29 0.41 ind:pre:3p; +convergente convergent ADJ f s 0.08 1.08 0.01 0.14 +convergentes convergent ADJ f p 0.08 1.08 0.00 0.20 +convergents convergent ADJ m p 0.08 1.08 0.01 0.54 +convergeons converger VER 0.86 3.99 0.03 0.00 imp:pre:1p;ind:pre:1p; +converger converger VER 0.86 3.99 0.05 0.81 inf; +convergeraient converger VER 0.86 3.99 0.00 0.07 cnd:pre:3p; +convergez converger VER 0.86 3.99 0.08 0.00 imp:pre:2p; +convergèrent converger VER 0.86 3.99 0.00 0.14 ind:pas:3p; +convergé converger VER m s 0.86 3.99 0.02 0.14 par:pas; +convers convers ADJ m 0.01 0.95 0.01 0.95 +conversaient converser VER 0.70 4.53 0.00 0.34 ind:imp:3p; +conversais converser VER 0.70 4.53 0.02 0.00 ind:imp:1s; +conversait converser VER 0.70 4.53 0.00 0.61 ind:imp:3s; +conversant converser VER 0.70 4.53 0.02 0.68 par:pre; +conversation conversation NOM f s 42.17 115.34 35.14 84.12 +conversations conversation NOM f p 42.17 115.34 7.03 31.22 +converse converser VER 0.70 4.53 0.17 0.14 ind:pre:1s;ind:pre:3s; +conversent converser VER 0.70 4.53 0.01 0.14 ind:pre:3p; +converser converser VER 0.70 4.53 0.36 1.89 inf; +converses converse ADJ p 0.07 0.47 0.04 0.47 +conversez converser VER 0.70 4.53 0.03 0.00 ind:pre:2p; +conversiez converser VER 0.70 4.53 0.02 0.00 ind:imp:2p; +conversion conversion NOM f s 1.91 3.92 1.71 3.65 +conversions conversion NOM f p 1.91 3.92 0.20 0.27 +conversâmes converser VER 0.70 4.53 0.00 0.14 ind:pas:1p; +conversons converser VER 0.70 4.53 0.01 0.07 ind:pre:1p; +conversèrent converser VER 0.70 4.53 0.00 0.14 ind:pas:3p; +conversé converser VER m s 0.70 4.53 0.05 0.34 par:pas; +convertît convertir VER 9.34 10.34 0.00 0.14 sub:imp:3s; +converti convertir VER m s 9.34 10.34 2.41 2.30 par:pas; +convertible convertible ADJ s 0.24 0.34 0.20 0.20 +convertibles convertible ADJ p 0.24 0.34 0.04 0.14 +convertie convertir VER f s 9.34 10.34 0.52 0.88 par:pas; +converties convertir VER f p 9.34 10.34 0.17 0.14 par:pas; +convertir convertir VER 9.34 10.34 4.12 3.78 inf; +convertira convertir VER 9.34 10.34 0.02 0.07 ind:fut:3s; +convertirai convertir VER 9.34 10.34 0.03 0.00 ind:fut:1s; +convertirais convertir VER 9.34 10.34 0.04 0.07 cnd:pre:1s; +convertirait convertir VER 9.34 10.34 0.00 0.14 cnd:pre:3s; +convertirons convertir VER 9.34 10.34 0.01 0.00 ind:fut:1p; +convertis convertir VER m p 9.34 10.34 0.95 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +convertissaient convertir VER 9.34 10.34 0.00 0.07 ind:imp:3p; +convertissais convertir VER 9.34 10.34 0.01 0.07 ind:imp:1s; +convertissait convertir VER 9.34 10.34 0.05 0.27 ind:imp:3s; +convertissant convertir VER 9.34 10.34 0.01 0.27 par:pre; +convertisse convertir VER 9.34 10.34 0.09 0.07 sub:pre:1s;sub:pre:3s; +convertissent convertir VER 9.34 10.34 0.40 0.20 ind:pre:3p; +convertisseur convertisseur NOM m s 0.35 0.00 0.22 0.00 +convertisseurs convertisseur NOM m p 0.35 0.00 0.13 0.00 +convertissez convertir VER 9.34 10.34 0.07 0.07 imp:pre:2p;ind:pre:2p; +convertissions convertir VER 9.34 10.34 0.00 0.14 ind:imp:1p; +convertit convertir VER 9.34 10.34 0.45 0.47 ind:pre:3s;ind:pas:3s; +convexe convexe ADJ s 0.08 0.88 0.07 0.54 +convexes convexe ADJ p 0.08 0.88 0.01 0.34 +convexité convexité NOM f s 0.00 0.20 0.00 0.20 +convia convier VER 2.63 7.50 0.02 0.81 ind:pas:3s; +conviaient convier VER 2.63 7.50 0.00 0.27 ind:imp:3p; +conviais convier VER 2.63 7.50 0.14 0.07 ind:imp:1s; +conviait convier VER 2.63 7.50 0.14 0.61 ind:imp:3s; +conviant convier VER 2.63 7.50 0.00 0.41 par:pre; +convict convict NOM m s 0.02 0.07 0.01 0.00 +conviction conviction NOM f s 13.32 37.23 9.27 31.49 +convictions conviction NOM f p 13.32 37.23 4.05 5.74 +convicts convict NOM m p 0.02 0.07 0.01 0.07 +convie convier VER 2.63 7.50 0.37 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +conviendra convenir VER 38.82 73.78 1.31 0.61 ind:fut:3s; +conviendrai convenir VER 38.82 73.78 0.00 0.07 ind:fut:1s; +conviendraient convenir VER 38.82 73.78 0.07 0.07 cnd:pre:3p; +conviendrais convenir VER 38.82 73.78 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +conviendrait convenir VER 38.82 73.78 1.56 2.57 cnd:pre:3s; +conviendras convenir VER 38.82 73.78 0.17 0.14 ind:fut:2s; +conviendrez convenir VER 38.82 73.78 0.39 0.68 ind:fut:2p; +conviendrions convenir VER 38.82 73.78 0.00 0.07 cnd:pre:1p; +conviendrons convenir VER 38.82 73.78 0.01 0.07 ind:fut:1p; +conviendront convenir VER 38.82 73.78 0.01 0.07 ind:fut:3p; +convienne convenir VER 38.82 73.78 0.86 0.74 sub:pre:1s;sub:pre:3s; +conviennent convenir VER 38.82 73.78 1.51 2.03 ind:pre:3p; +conviens convenir VER 38.82 73.78 0.96 3.45 imp:pre:2s;ind:pre:1s;ind:pre:2s; +convient convenir VER 38.82 73.78 19.21 16.89 ind:pre:3s; +convier convier VER 2.63 7.50 0.44 0.41 inf; +conviera convier VER 2.63 7.50 0.00 0.07 ind:fut:3s; +convierai convier VER 2.63 7.50 0.01 0.00 ind:fut:1s; +convierait convier VER 2.63 7.50 0.01 0.07 cnd:pre:3s; +conviez convier VER 2.63 7.50 0.16 0.00 imp:pre:2p;ind:pre:2p; +convinrent convenir VER 38.82 73.78 0.00 1.08 ind:pas:3p; +convins convenir VER 38.82 73.78 0.01 0.27 ind:pas:1s; +convint convenir VER 38.82 73.78 0.12 2.77 ind:pas:3s; +convions convier VER 2.63 7.50 0.01 0.00 ind:pre:1p; +convièrent convier VER 2.63 7.50 0.00 0.07 ind:pas:3p; +convié convier VER m s 2.63 7.50 0.60 1.42 par:pas; +conviée convier VER f s 2.63 7.50 0.13 0.27 par:pas; +conviées convier VER f p 2.63 7.50 0.00 0.14 par:pas; +conviés convier VER m p 2.63 7.50 0.15 1.35 par:pas; +convive convive NOM s 0.67 6.49 0.15 1.08 +convives convive NOM p 0.67 6.49 0.53 5.41 +convivial convivial ADJ m s 0.67 0.27 0.49 0.14 +conviviale convivial ADJ f s 0.67 0.27 0.06 0.07 +conviviales convivial ADJ f p 0.67 0.27 0.02 0.07 +convivialisez convivialiser VER 0.00 0.07 0.00 0.07 ind:pre:2p; +convivialité convivialité NOM f s 0.42 0.27 0.42 0.27 +conviviaux convivial ADJ m p 0.67 0.27 0.10 0.00 +convocable convocable ADJ s 0.01 0.00 0.01 0.00 +convocation convocation NOM f s 1.78 3.65 1.56 3.18 +convocations convocation NOM f p 1.78 3.65 0.22 0.47 +convoi convoi NOM m s 9.39 18.78 7.86 11.35 +convoie convoyer VER 0.51 1.89 0.04 0.00 ind:pre:3s; +convois convoi NOM m p 9.39 18.78 1.53 7.43 +convoita convoiter VER 2.31 5.27 0.00 0.07 ind:pas:3s; +convoitaient convoiter VER 2.31 5.27 0.02 0.47 ind:imp:3p; +convoitais convoiter VER 2.31 5.27 0.07 0.61 ind:imp:1s;ind:imp:2s; +convoitait convoiter VER 2.31 5.27 0.16 0.81 ind:imp:3s; +convoitant convoiter VER 2.31 5.27 0.02 0.14 par:pre; +convoite convoiter VER 2.31 5.27 0.69 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +convoitent convoiter VER 2.31 5.27 0.13 0.20 ind:pre:3p; +convoiter convoiter VER 2.31 5.27 0.20 0.34 inf; +convoiteras convoiter VER 2.31 5.27 0.04 0.00 ind:fut:2s; +convoiteront convoiter VER 2.31 5.27 0.10 0.00 ind:fut:3p; +convoiteur convoiteur ADJ m s 0.00 0.07 0.00 0.07 +convoiteux convoiteux ADJ m p 0.00 0.07 0.00 0.07 +convoitez convoiter VER 2.31 5.27 0.12 0.20 ind:pre:2p; +convoitise convoitise NOM f s 1.05 5.20 0.80 4.05 +convoitises convoitise NOM f p 1.05 5.20 0.25 1.15 +convoité convoiter VER m s 2.31 5.27 0.57 0.88 par:pas; +convoitée convoiter VER f s 2.31 5.27 0.13 0.54 par:pas; +convoitées convoiter VER f p 2.31 5.27 0.02 0.14 par:pas; +convoités convoiter VER m p 2.31 5.27 0.05 0.41 par:pas; +convola convoler VER 0.22 0.61 0.00 0.07 ind:pas:3s; +convolait convoler VER 0.22 0.61 0.00 0.07 ind:imp:3s; +convolant convoler VER 0.22 0.61 0.00 0.07 par:pre; +convolent convoler VER 0.22 0.61 0.00 0.07 ind:pre:3p; +convoler convoler VER 0.22 0.61 0.19 0.20 inf; +convolèrent convoler VER 0.22 0.61 0.01 0.00 ind:pas:3p; +convolé convoler VER m s 0.22 0.61 0.02 0.14 par:pas; +convoqua convoquer VER 10.89 19.32 0.14 2.91 ind:pas:3s; +convoquai convoquer VER 10.89 19.32 0.01 0.41 ind:pas:1s; +convoquaient convoquer VER 10.89 19.32 0.00 0.20 ind:imp:3p; +convoquait convoquer VER 10.89 19.32 0.01 1.62 ind:imp:3s; +convoquant convoquer VER 10.89 19.32 0.17 0.41 par:pre; +convoque convoquer VER 10.89 19.32 2.30 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +convoquent convoquer VER 10.89 19.32 0.06 0.14 ind:pre:3p; +convoquer convoquer VER 10.89 19.32 1.94 2.09 inf;; +convoquera convoquer VER 10.89 19.32 0.17 0.27 ind:fut:3s; +convoquerai convoquer VER 10.89 19.32 0.07 0.00 ind:fut:1s; +convoqueraient convoquer VER 10.89 19.32 0.00 0.07 cnd:pre:3p; +convoquerait convoquer VER 10.89 19.32 0.03 0.20 cnd:pre:3s; +convoquerez convoquer VER 10.89 19.32 0.02 0.00 ind:fut:2p; +convoqueront convoquer VER 10.89 19.32 0.01 0.00 ind:fut:3p; +convoquez convoquer VER 10.89 19.32 0.71 0.14 imp:pre:2p;ind:pre:2p; +convoquions convoquer VER 10.89 19.32 0.00 0.07 ind:imp:1p; +convoquons convoquer VER 10.89 19.32 0.07 0.00 imp:pre:1p;ind:pre:1p; +convoquât convoquer VER 10.89 19.32 0.00 0.14 sub:imp:3s; +convoquèrent convoquer VER 10.89 19.32 0.01 0.00 ind:pas:3p; +convoqué convoquer VER m s 10.89 19.32 3.26 5.81 par:pas; +convoquée convoquer VER f s 10.89 19.32 1.02 0.81 par:pas; +convoquées convoquer VER f p 10.89 19.32 0.20 0.20 par:pas; +convoqués convoquer VER m p 10.89 19.32 0.68 1.69 par:pas; +convoya convoyer VER 0.51 1.89 0.00 0.07 ind:pas:3s; +convoyage convoyage NOM m s 0.10 0.20 0.08 0.14 +convoyages convoyage NOM m p 0.10 0.20 0.02 0.07 +convoyaient convoyer VER 0.51 1.89 0.00 0.07 ind:imp:3p; +convoyait convoyer VER 0.51 1.89 0.01 0.20 ind:imp:3s; +convoyant convoyer VER 0.51 1.89 0.11 0.20 par:pre; +convoyer convoyer VER 0.51 1.89 0.32 0.81 inf; +convoyeur convoyeur NOM m s 1.10 0.95 0.58 0.54 +convoyeurs convoyeur NOM m p 1.10 0.95 0.51 0.27 +convoyeuse convoyeur NOM f s 1.10 0.95 0.01 0.14 +convoyé convoyer VER m s 0.51 1.89 0.02 0.14 par:pas; +convoyée convoyer VER f s 0.51 1.89 0.00 0.07 par:pas; +convoyés convoyer VER m p 0.51 1.89 0.01 0.34 par:pas; +convulsa convulser VER 0.84 1.42 0.00 0.07 ind:pas:3s; +convulsai convulser VER 0.84 1.42 0.00 0.07 ind:pas:1s; +convulsais convulser VER 0.84 1.42 0.00 0.07 ind:imp:1s; +convulsait convulser VER 0.84 1.42 0.04 0.27 ind:imp:3s; +convulsant convulser VER 0.84 1.42 0.00 0.14 par:pre; +convulse convulser VER 0.84 1.42 0.42 0.14 ind:pre:3s; +convulser convulser VER 0.84 1.42 0.19 0.07 inf; +convulsif convulsif ADJ m s 0.39 3.04 0.13 1.35 +convulsifs convulsif ADJ m p 0.39 3.04 0.14 0.68 +convulsion convulsion NOM f s 1.60 5.61 0.19 1.28 +convulsionnaire convulsionnaire NOM s 0.00 0.14 0.00 0.14 +convulsionne convulsionner VER 0.00 0.20 0.00 0.14 ind:pre:1s;ind:pre:3s; +convulsionnée convulsionner VER f s 0.00 0.20 0.00 0.07 par:pas; +convulsions convulsion NOM f p 1.60 5.61 1.42 4.32 +convulsive convulsif ADJ f s 0.39 3.04 0.13 0.41 +convulsivement convulsivement ADV 0.01 1.35 0.01 1.35 +convulsives convulsif ADJ f p 0.39 3.04 0.00 0.61 +convulsé convulser VER m s 0.84 1.42 0.07 0.34 par:pas; +convulsée convulsé ADJ f s 0.11 0.74 0.10 0.27 +convulsées convulsé ADJ f p 0.11 0.74 0.00 0.07 +convulsés convulsé ADJ m p 0.11 0.74 0.01 0.00 +cooccupant cooccupant ADJ m s 0.00 0.07 0.00 0.07 +cookie cookie NOM m s 8.22 0.07 3.08 0.07 +cookies cookie NOM m p 8.22 0.07 5.14 0.00 +cool cool ADJ 63.63 3.18 63.63 3.18 +coolie_pousse coolie_pousse NOM m s 0.01 0.00 0.01 0.00 +coolie coolie NOM m s 0.16 0.41 0.13 0.20 +coolies coolie NOM m p 0.16 0.41 0.03 0.20 +coolos coolos ADJ 0.04 0.41 0.04 0.41 +cooptant coopter VER 0.16 0.07 0.01 0.00 par:pre; +cooptation cooptation NOM f s 0.01 0.14 0.01 0.14 +coopter coopter VER 0.16 0.07 0.01 0.07 inf; +coopère coopérer VER 11.91 1.08 1.60 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coopèrent coopérer VER 11.91 1.08 0.42 0.14 ind:pre:3p; +coopères coopérer VER 11.91 1.08 0.49 0.07 ind:pre:2s; +coopté coopter VER m s 0.16 0.07 0.14 0.00 par:pas; +coopé coopé NOM f s 0.02 0.27 0.02 0.27 +coopérais coopérer VER 11.91 1.08 0.04 0.00 ind:imp:1s;ind:imp:2s; +coopérait coopérer VER 11.91 1.08 0.20 0.07 ind:imp:3s; +coopérant coopérer VER 11.91 1.08 0.13 0.00 par:pre; +coopérante coopérant NOM f s 0.10 0.14 0.03 0.00 +coopérants coopérant NOM m p 0.10 0.14 0.05 0.07 +coopérateur coopérateur NOM m s 0.03 0.00 0.03 0.00 +coopératif coopératif ADJ m s 2.65 0.47 1.53 0.27 +coopératifs coopératif ADJ m p 2.65 0.47 0.41 0.00 +coopération coopération NOM f s 5.21 6.96 5.21 6.96 +coopératisme coopératisme NOM m s 0.01 0.00 0.01 0.00 +coopérative coopérative NOM f s 1.66 0.74 1.53 0.61 +coopératives coopératif ADJ f p 2.65 0.47 0.25 0.07 +coopérer coopérer VER 11.91 1.08 6.05 0.54 inf; +coopérera coopérer VER 11.91 1.08 0.14 0.00 ind:fut:3s; +coopérerai coopérer VER 11.91 1.08 0.10 0.00 ind:fut:1s; +coopéreraient coopérer VER 11.91 1.08 0.01 0.14 cnd:pre:3p; +coopérerais coopérer VER 11.91 1.08 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +coopérerez coopérer VER 11.91 1.08 0.04 0.00 ind:fut:2p; +coopéreriez coopérer VER 11.91 1.08 0.02 0.00 cnd:pre:2p; +coopérerons coopérer VER 11.91 1.08 0.07 0.00 ind:fut:1p; +coopéreront coopérer VER 11.91 1.08 0.03 0.00 ind:fut:3p; +coopérez coopérer VER 11.91 1.08 1.26 0.00 imp:pre:2p;ind:pre:2p; +coopériez coopérer VER 11.91 1.08 0.19 0.00 ind:imp:2p; +coopérions coopérer VER 11.91 1.08 0.06 0.00 ind:imp:1p; +coopérons coopérer VER 11.91 1.08 0.07 0.00 ind:pre:1p; +coopéré coopérer VER m s 11.91 1.08 0.96 0.07 par:pas; +coordinateur coordinateur NOM m s 0.83 0.07 0.54 0.07 +coordinateurs coordinateur NOM m p 0.83 0.07 0.04 0.00 +coordination coordination NOM f s 1.36 2.16 1.36 2.16 +coordinatrice coordinateur NOM f s 0.83 0.07 0.26 0.00 +coordonna coordonner VER 2.15 2.09 0.01 0.07 ind:pas:3s; +coordonnaient coordonner VER 2.15 2.09 0.02 0.07 ind:imp:3p; +coordonnait coordonner VER 2.15 2.09 0.01 0.00 ind:imp:3s; +coordonnant coordonner VER 2.15 2.09 0.16 0.00 par:pre; +coordonnateur coordonnateur ADJ m s 0.03 0.00 0.03 0.00 +coordonne coordonner VER 2.15 2.09 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +coordonner coordonner VER 2.15 2.09 0.96 1.22 inf; +coordonnera coordonner VER 2.15 2.09 0.07 0.07 ind:fut:3s; +coordonnerait coordonner VER 2.15 2.09 0.01 0.07 cnd:pre:3s; +coordonnez coordonner VER 2.15 2.09 0.19 0.00 imp:pre:2p;ind:pre:2p; +coordonnons coordonner VER 2.15 2.09 0.00 0.07 imp:pre:1p; +coordonné coordonner VER m s 2.15 2.09 0.16 0.14 par:pas; +coordonnée coordonnée NOM f s 8.30 1.55 0.24 0.00 +coordonnées coordonnée NOM f p 8.30 1.55 8.05 1.55 +coordonnés coordonné NOM m p 0.16 0.07 0.16 0.07 +cop cop NOM f s 0.63 0.27 0.63 0.27 +copaïba copaïba NOM m s 0.00 0.07 0.00 0.07 +copain copain NOM m s 146.92 103.18 61.14 34.05 +copains copain NOM m p 146.92 103.18 30.47 49.93 +copal copal NOM m s 0.01 0.00 0.01 0.00 +copeau copeau NOM m s 0.67 5.41 0.10 0.34 +copeaux copeau NOM m p 0.67 5.41 0.57 5.07 +copernicienne copernicien ADJ f s 0.00 0.14 0.00 0.14 +copia copier VER 8.07 8.45 0.01 0.07 ind:pas:3s; +copiable copiable ADJ m s 0.01 0.00 0.01 0.00 +copiage copiage NOM m s 0.01 0.00 0.01 0.00 +copiai copier VER 8.07 8.45 0.00 0.07 ind:pas:1s; +copiaient copier VER 8.07 8.45 0.01 0.27 ind:imp:3p; +copiais copier VER 8.07 8.45 0.30 0.07 ind:imp:1s;ind:imp:2s; +copiait copier VER 8.07 8.45 0.01 0.47 ind:imp:3s; +copiant copier VER 8.07 8.45 0.03 0.41 par:pre; +copie copie NOM f s 25.70 14.26 16.88 8.45 +copient copier VER 8.07 8.45 0.20 0.07 ind:pre:3p; +copier copier VER 8.07 8.45 2.96 2.70 inf; +copiera copier VER 8.07 8.45 0.04 0.00 ind:fut:3s; +copierai copier VER 8.07 8.45 0.01 0.00 ind:fut:1s; +copierait copier VER 8.07 8.45 0.03 0.07 cnd:pre:3s; +copieras copier VER 8.07 8.45 0.14 0.34 ind:fut:2s; +copierez copier VER 8.07 8.45 0.00 0.14 ind:fut:2p; +copieront copier VER 8.07 8.45 0.02 0.07 ind:fut:3p; +copies copie NOM f p 25.70 14.26 8.82 5.81 +copieur copieur NOM m s 0.28 0.20 0.19 0.07 +copieurs copieur NOM m p 0.28 0.20 0.04 0.14 +copieuse copieux ADJ f s 0.59 3.04 0.11 0.88 +copieusement copieusement ADV 0.13 2.57 0.13 2.57 +copieuses copieuse NOM f p 0.01 0.00 0.01 0.00 +copieux copieux ADJ m s 0.59 3.04 0.48 1.82 +copiez copier VER 8.07 8.45 0.34 0.00 imp:pre:2p;ind:pre:2p; +copilote copilote NOM m s 1.50 0.00 1.50 0.00 +copinage copinage NOM m s 0.08 0.27 0.08 0.27 +copinait copiner VER 1.26 0.47 0.01 0.14 ind:imp:3s; +copine copain NOM f s 146.92 103.18 55.32 12.43 +copiner copiner VER 1.26 0.47 0.09 0.07 inf; +copines copine NOM f p 10.57 0.00 10.57 0.00 +copineur copineur ADJ m s 0.00 0.20 0.00 0.07 +copineurs copineur ADJ m p 0.00 0.20 0.00 0.07 +copineuse copineur ADJ f s 0.00 0.20 0.00 0.07 +copiniez copiner VER 1.26 0.47 0.01 0.00 ind:imp:2p; +copiné copiner VER m s 1.26 0.47 0.02 0.07 par:pas; +copiste copiste NOM s 0.40 0.81 0.22 0.74 +copistes copiste NOM p 0.40 0.81 0.17 0.07 +copié copier VER m s 8.07 8.45 2.17 1.15 par:pas; +copiée copier VER f s 8.07 8.45 0.29 0.54 par:pas; +copiées copier VER f p 8.07 8.45 0.28 0.20 par:pas; +copiés copier VER m p 8.07 8.45 0.20 0.34 par:pas; +copla copla NOM f s 0.00 0.07 0.00 0.07 +coppa coppa NOM f s 0.01 0.00 0.01 0.00 +copra copra NOM m s 0.04 0.07 0.04 0.07 +câpre câpre NOM f s 0.31 0.47 0.11 0.00 +câpres câpre NOM f p 0.31 0.47 0.20 0.47 +câpriers câprier NOM m p 0.00 0.07 0.00 0.07 +coprins coprin NOM m p 0.00 0.07 0.00 0.07 +coproculture coproculture NOM f s 0.01 0.00 0.01 0.00 +coproducteur coproducteur NOM m s 0.11 0.07 0.09 0.00 +coproducteurs coproducteur NOM m p 0.11 0.07 0.02 0.07 +coproduction coproduction NOM f s 0.16 0.27 0.16 0.27 +coproduire coproduire VER 0.04 0.07 0.01 0.07 inf; +coproduit coproduire VER m s 0.04 0.07 0.03 0.00 ind:pre:3s;par:pas; +coprologie coprologie NOM f s 0.00 0.07 0.00 0.07 +coprologique coprologique ADJ f s 0.00 0.14 0.00 0.14 +coprophage coprophage NOM s 0.00 0.20 0.00 0.20 +coprophagie coprophagie NOM f s 0.20 0.00 0.20 0.00 +coprophile coprophile NOM s 0.00 0.07 0.00 0.07 +coprophilie coprophilie NOM f s 0.02 0.00 0.02 0.00 +copropriétaire copropriétaire NOM s 0.29 0.27 0.11 0.07 +copropriétaires copropriétaire NOM p 0.29 0.27 0.18 0.20 +copropriété copropriété NOM f s 0.56 0.41 0.56 0.41 +coprésidence coprésidence NOM f s 0.01 0.00 0.01 0.00 +coprésident coprésider VER 0.01 0.00 0.01 0.00 ind:pre:3p; +cops cops NOM m 0.41 0.07 0.41 0.07 +copte copte NOM m s 0.02 0.34 0.02 0.14 +coptes copte NOM m p 0.02 0.34 0.00 0.20 +copula copuler VER 1.19 0.54 0.01 0.07 ind:pas:3s; +copulait copuler VER 1.19 0.54 0.01 0.07 ind:imp:3s; +copulant copuler VER 1.19 0.54 0.02 0.07 par:pre; +copulation copulation NOM f s 0.19 0.47 0.17 0.41 +copulations copulation NOM f p 0.19 0.47 0.02 0.07 +copule copule NOM f s 0.14 0.00 0.14 0.00 +copulent copuler VER 1.19 0.54 0.25 0.00 ind:pre:3p; +copuler copuler VER 1.19 0.54 0.66 0.34 inf; +copulez copuler VER 1.19 0.54 0.10 0.00 ind:pre:2p; +copulé copuler VER m s 1.19 0.54 0.15 0.00 par:pas; +copyright copyright NOM m s 0.41 0.14 0.41 0.14 +coq_à_l_âne coq_à_l_âne NOM m 0.00 0.14 0.00 0.14 +coq coq NOM m s 12.47 19.12 10.74 15.68 +coqs coq NOM m p 12.47 19.12 1.73 3.45 +coquard coquard NOM m s 0.34 0.41 0.30 0.34 +coquards coquard NOM m p 0.34 0.41 0.03 0.07 +coquart coquart NOM m s 0.11 0.14 0.11 0.07 +coquarts coquart NOM m p 0.11 0.14 0.00 0.07 +coque coque NOM f s 5.00 12.64 4.60 9.93 +coquebin coquebin ADJ m s 0.00 0.34 0.00 0.34 +coquelet coquelet NOM m s 0.10 0.07 0.10 0.07 +coquelicot coquelicot NOM m s 1.05 3.24 0.71 0.95 +coquelicots coquelicot NOM m p 1.05 3.24 0.34 2.30 +coquelle coquelle NOM f s 0.00 0.07 0.00 0.07 +coqueluche coqueluche NOM f s 1.01 2.43 0.97 2.43 +coqueluches coqueluche NOM f p 1.01 2.43 0.04 0.00 +coquemar coquemar NOM m s 0.00 0.07 0.00 0.07 +coquerelle coquerelle NOM f s 0.03 0.07 0.03 0.07 +coquerie coquerie NOM f s 0.05 0.00 0.05 0.00 +coqueron coqueron NOM m s 0.02 0.00 0.02 0.00 +coques coque NOM f p 5.00 12.64 0.40 2.70 +coquet coquet ADJ m s 1.57 6.55 0.77 2.70 +coquetel coquetel NOM m s 0.00 0.07 0.00 0.07 +coqueter coqueter VER 0.01 0.00 0.01 0.00 inf; +coquetier coquetier NOM m s 0.29 0.61 0.14 0.47 +coquetiers coquetier NOM m p 0.29 0.61 0.15 0.14 +coquets coquet ADJ m p 1.57 6.55 0.02 0.41 +coquette coquet ADJ f s 1.57 6.55 0.77 2.84 +coquettement coquettement ADV 0.00 0.41 0.00 0.41 +coquetterie coquetterie NOM f s 0.63 7.03 0.61 6.22 +coquetteries coquetterie NOM f p 0.63 7.03 0.01 0.81 +coquettes coquette NOM f p 0.71 2.23 0.13 0.27 +coquillage coquillage NOM m s 2.66 10.47 0.77 3.51 +coquillages coquillage NOM m p 2.66 10.47 1.89 6.96 +coquillard coquillard NOM m s 0.02 0.74 0.02 0.68 +coquillards coquillard NOM m p 0.02 0.74 0.00 0.07 +coquillart coquillart NOM m s 0.00 0.07 0.00 0.07 +coquille coquille NOM f s 4.92 13.45 3.19 9.46 +coquilles coquille NOM f p 4.92 13.45 1.73 3.99 +coquillettes coquillette NOM f p 0.01 0.61 0.01 0.61 +coquilleux coquilleux ADJ m s 0.00 0.07 0.00 0.07 +coquin coquin NOM m s 7.55 4.26 4.96 2.43 +coquine coquin NOM f s 7.55 4.26 1.53 0.27 +coquinement coquinement ADV 0.00 0.07 0.00 0.07 +coquinerie coquinerie NOM f s 0.03 0.20 0.03 0.14 +coquineries coquinerie NOM f p 0.03 0.20 0.00 0.07 +coquines coquin ADJ f p 3.92 3.24 0.17 0.47 +coquinet coquinet ADJ m s 0.01 0.07 0.01 0.07 +coquins coquin NOM m p 7.55 4.26 0.98 1.49 +cor cor NOM m s 3.35 3.92 2.57 2.36 +cora cora NOM f s 0.00 0.34 0.00 0.27 +corail corail NOM m s 1.43 3.51 1.04 2.97 +coralliaires coralliaire NOM p 0.00 0.07 0.00 0.07 +corallien corallien ADJ m s 0.03 0.00 0.01 0.00 +coralliens corallien ADJ m p 0.03 0.00 0.02 0.00 +coramine coramine NOM f s 0.10 0.07 0.10 0.07 +coran coran NOM m s 1.96 2.43 1.96 2.43 +coranique coranique ADJ f s 0.16 0.34 0.16 0.20 +coraniques coranique ADJ m p 0.16 0.34 0.00 0.14 +coras cora NOM f p 0.00 0.34 0.00 0.07 +coraux corail NOM m p 1.43 3.51 0.39 0.54 +corbeau corbeau NOM m s 5.72 8.85 3.57 3.92 +corbeaux corbeau NOM m p 5.72 8.85 2.15 4.93 +corbeille corbeille NOM f s 2.71 19.12 2.30 15.68 +corbeilles corbeille NOM f p 2.71 19.12 0.41 3.45 +corbillard corbillard NOM m s 1.63 4.19 1.58 3.72 +corbillards corbillard NOM m p 1.63 4.19 0.04 0.47 +corbin corbin NOM m s 0.14 0.47 0.14 0.47 +corbières corbières NOM m 0.00 0.14 0.00 0.14 +cordage cordage NOM m s 0.27 3.85 0.17 0.61 +cordages cordage NOM m p 0.27 3.85 0.11 3.24 +corde corde NOM f s 38.57 48.38 28.89 31.76 +cordeau cordeau NOM m s 0.20 1.76 0.16 1.62 +cordeaux cordeau NOM m p 0.20 1.76 0.01 0.14 +cordelette cordelette NOM f s 0.11 3.72 0.10 2.91 +cordelettes cordelette NOM f p 0.11 3.72 0.01 0.81 +cordelier cordelier NOM m s 0.01 2.77 0.00 0.20 +cordeliers cordelier NOM m p 0.01 2.77 0.01 1.22 +cordelière cordelier NOM f s 0.01 2.77 0.00 1.01 +cordelières cordelier NOM f p 0.01 2.77 0.00 0.34 +cordelle cordeau NOM f s 0.20 1.76 0.04 0.00 +corder corder VER 0.31 0.47 0.16 0.00 inf; +corderie corderie NOM f s 0.00 0.14 0.00 0.14 +cordes corde NOM f p 38.57 48.38 9.68 16.62 +cordial cordial NOM m s 0.44 1.96 0.44 1.96 +cordiale cordial ADJ f s 0.53 4.80 0.30 2.43 +cordialement cordialement ADV 0.72 1.82 0.72 1.82 +cordiales cordial ADJ f p 0.53 4.80 0.05 0.74 +cordialité cordialité NOM f s 0.09 3.65 0.08 3.65 +cordialités cordialité NOM f p 0.09 3.65 0.01 0.00 +cordiaux cordial ADJ m p 0.53 4.80 0.11 0.41 +cordiers cordier NOM m p 0.00 0.74 0.00 0.74 +cordiforme cordiforme ADJ f s 0.00 0.27 0.00 0.20 +cordiformes cordiforme ADJ f p 0.00 0.27 0.00 0.07 +cordillère cordillère NOM f s 0.28 0.14 0.28 0.14 +cordite cordite NOM f s 0.13 0.07 0.13 0.07 +cordobas cordoba NOM m p 0.01 0.00 0.01 0.00 +cordon_bleu cordon_bleu NOM m s 0.27 0.14 0.26 0.07 +cordon cordon NOM m s 5.21 12.23 4.42 9.19 +cordonner cordonner VER 0.04 0.00 0.01 0.00 inf; +cordonnerie cordonnerie NOM f s 0.16 0.20 0.16 0.20 +cordonnet cordonnet NOM m s 0.16 0.81 0.14 0.61 +cordonnets cordonnet NOM m p 0.16 0.81 0.02 0.20 +cordonnier cordonnier NOM m s 1.86 3.92 1.72 2.91 +cordonniers cordonnier NOM m p 1.86 3.92 0.14 0.95 +cordonnière cordonnier NOM f s 1.86 3.92 0.00 0.07 +cordonnées cordonner VER f p 0.04 0.00 0.02 0.00 par:pas; +cordon_bleu cordon_bleu NOM m p 0.27 0.14 0.01 0.07 +cordons cordon NOM m p 5.21 12.23 0.79 3.04 +cordouan cordouan ADJ m s 0.00 0.07 0.00 0.07 +cordé corder VER m s 0.31 0.47 0.00 0.07 par:pas; +cordée cordée NOM f s 0.02 0.61 0.02 0.47 +cordées cordée NOM f p 0.02 0.61 0.00 0.14 +cordés cordé ADJ m p 0.01 0.07 0.01 0.00 +coreligionnaires coreligionnaire NOM p 0.00 0.95 0.00 0.95 +corelliens corellien ADJ m p 0.01 0.00 0.01 0.00 +coriace coriace ADJ s 4.70 2.57 3.68 1.69 +coriaces coriace ADJ p 4.70 2.57 1.02 0.88 +coriacité coriacité NOM f s 0.00 0.07 0.00 0.07 +coriandre coriandre NOM f s 0.24 0.27 0.24 0.27 +corindon corindon NOM m s 0.00 0.14 0.00 0.14 +corinthe corinthe NOM s 0.00 0.07 0.00 0.07 +corinthien corinthien ADJ m s 0.27 0.54 0.11 0.41 +corinthiennes corinthien ADJ f p 0.27 0.54 0.01 0.14 +corinthiens corinthien NOM m p 0.45 0.07 0.44 0.07 +cormier cormier NOM m s 0.08 0.00 0.08 0.00 +cormoran cormoran NOM m s 0.26 1.22 0.12 0.54 +cormorans cormoran NOM m p 0.26 1.22 0.14 0.68 +corn_flakes corn_flakes NOM m p 0.22 0.00 0.22 0.00 +corn_flakes corn_flakes NOM f p 0.14 0.07 0.14 0.07 +corna corner VER 0.26 3.38 0.00 0.27 ind:pas:3s; +cornac cornac NOM m s 0.03 0.41 0.03 0.41 +cornaient corner VER 0.26 3.38 0.00 0.07 ind:imp:3p; +cornais corner VER 0.26 3.38 0.00 0.07 ind:imp:1s; +cornait corner VER 0.26 3.38 0.00 0.20 ind:imp:3s; +cornaline cornaline NOM f s 0.00 0.14 0.00 0.07 +cornalines cornaline NOM f p 0.00 0.14 0.00 0.07 +cornant corner VER 0.26 3.38 0.00 0.20 par:pre; +cornaquaient cornaquer VER 0.00 0.14 0.00 0.07 ind:imp:3p; +cornaquée cornaquer VER f s 0.00 0.14 0.00 0.07 par:pas; +cornard cornard NOM m s 0.71 0.47 0.71 0.41 +cornards cornard NOM m p 0.71 0.47 0.00 0.07 +cornas corner VER 0.26 3.38 0.00 0.07 ind:pas:2s; +corne corne NOM f s 7.79 19.46 2.63 9.80 +cornecul cornecul NOM s 0.00 0.20 0.00 0.20 +corneille corneille NOM f s 0.86 2.36 0.19 0.47 +corneilles corneille NOM f p 0.86 2.36 0.67 1.89 +cornemuse cornemuse NOM f s 1.38 0.61 0.98 0.34 +cornemuses cornemuse NOM f p 1.38 0.61 0.40 0.27 +cornemuseur cornemuseur NOM m s 0.01 0.00 0.01 0.00 +cornent corner VER 0.26 3.38 0.02 0.07 ind:pre:3p; +corner corner VER 0.26 3.38 0.17 1.49 inf; +corners corner NOM m p 0.30 0.14 0.14 0.07 +cornes corne NOM f p 7.79 19.46 5.16 9.66 +cornet cornet NOM m s 1.85 8.04 1.46 6.15 +cornets cornet NOM m p 1.85 8.04 0.39 1.89 +cornette cornette NOM s 0.18 2.70 0.03 1.69 +cornettes cornette NOM p 0.18 2.70 0.16 1.01 +corniaud corniaud NOM m s 0.95 5.34 0.68 4.12 +corniauds corniaud NOM m p 0.95 5.34 0.27 1.22 +corniche corniche NOM f s 0.81 7.03 0.76 5.74 +corniches corniche NOM f p 0.81 7.03 0.05 1.28 +cornichon cornichon NOM m s 4.17 2.30 1.29 0.68 +cornichons cornichon NOM m p 4.17 2.30 2.88 1.62 +cornillon cornillon NOM m s 0.02 0.20 0.02 0.20 +cornistes corniste NOM p 0.00 0.20 0.00 0.20 +cornières cornière NOM f p 0.00 0.34 0.00 0.34 +cornouaillais cornouaillais NOM m 0.06 0.00 0.06 0.00 +cornouille cornouille NOM f s 0.00 0.14 0.00 0.07 +cornouiller cornouiller NOM m s 0.08 0.34 0.08 0.14 +cornouillers cornouiller NOM m p 0.08 0.34 0.00 0.20 +cornouilles cornouille NOM f p 0.00 0.14 0.00 0.07 +cornèrent corner VER 0.26 3.38 0.00 0.07 ind:pas:3p; +corné corner VER m s 0.26 3.38 0.02 0.41 par:pas; +cornu cornu ADJ m s 0.42 1.62 0.17 0.61 +cornée cornée NOM f s 0.85 1.22 0.78 1.08 +cornue cornu ADJ f s 0.42 1.62 0.10 0.34 +cornéen cornéen ADJ m s 0.05 0.00 0.03 0.00 +cornéenne cornéen ADJ f s 0.05 0.00 0.02 0.00 +cornées corné ADJ f p 0.12 1.42 0.11 0.41 +cornues cornue NOM f p 0.01 1.08 0.00 0.61 +cornélien cornélien ADJ m s 0.02 0.54 0.02 0.27 +cornélienne cornélien ADJ f s 0.02 0.54 0.00 0.20 +cornéliennes cornélien ADJ f p 0.02 0.54 0.00 0.07 +cornés corner VER m p 0.26 3.38 0.01 0.07 par:pas; +cornus cornu ADJ m p 0.42 1.62 0.15 0.54 +corollaire corollaire NOM m s 0.05 0.74 0.04 0.68 +corollaires corollaire NOM m p 0.05 0.74 0.01 0.07 +corolle corolle NOM f s 0.40 3.65 0.26 2.03 +corolles corolle NOM f p 0.40 3.65 0.14 1.62 +coron coron NOM m s 0.01 1.76 0.01 0.54 +corona corona NOM f s 0.50 0.27 0.50 0.27 +coronaire coronaire ADJ s 0.44 0.14 0.19 0.00 +coronaires coronaire ADJ f p 0.44 0.14 0.25 0.14 +coronal coronal ADJ m s 0.07 0.00 0.03 0.00 +coronale coronal ADJ f s 0.07 0.00 0.04 0.00 +coronales coronal ADJ f p 0.07 0.00 0.01 0.00 +coronarien coronarien ADJ m s 0.17 0.00 0.08 0.00 +coronarienne coronarien ADJ f s 0.17 0.00 0.09 0.00 +coroner coroner NOM m s 2.02 0.00 1.98 0.00 +coroners coroner NOM m p 2.02 0.00 0.04 0.00 +coronilles coronille NOM f p 0.00 0.20 0.00 0.20 +corons coron NOM m p 0.01 1.76 0.00 1.22 +corozo corozo NOM m s 0.00 0.20 0.00 0.20 +corporal corporal NOM m s 0.11 0.07 0.11 0.07 +corporalisés corporaliser VER m p 0.00 0.07 0.00 0.07 par:pas; +corporalité corporalité NOM f s 0.01 0.07 0.01 0.07 +corporatif corporatif ADJ m s 0.18 0.20 0.01 0.00 +corporatifs corporatif ADJ m p 0.18 0.20 0.13 0.00 +corporation corporation NOM f s 0.77 2.77 0.53 2.23 +corporations corporation NOM f p 0.77 2.77 0.24 0.54 +corporatisme corporatisme NOM m s 0.02 0.07 0.02 0.07 +corporatiste corporatiste ADJ s 0.04 0.07 0.04 0.07 +corporative corporatif ADJ f s 0.18 0.20 0.01 0.14 +corporatives corporatif ADJ f p 0.18 0.20 0.03 0.07 +corporel corporel ADJ m s 3.64 2.70 1.10 0.34 +corporelle corporel ADJ f s 3.64 2.70 1.47 1.01 +corporelles corporel ADJ f p 3.64 2.70 0.26 0.61 +corporels corporel ADJ m p 3.64 2.70 0.81 0.74 +corps_mort corps_mort NOM m s 0.00 0.07 0.00 0.07 +corps corps NOM m 250.15 480.34 250.15 480.34 +corpsard corpsard NOM m s 0.00 0.07 0.00 0.07 +corpulence corpulence NOM f s 0.54 1.76 0.54 1.76 +corpulent corpulent ADJ m s 0.81 1.76 0.66 1.08 +corpulente corpulent ADJ f s 0.81 1.76 0.00 0.47 +corpulentes corpulent ADJ f p 0.81 1.76 0.00 0.07 +corpulents corpulent ADJ m p 0.81 1.76 0.16 0.14 +corpus_delicti corpus_delicti NOM m s 0.03 0.00 0.03 0.00 +corpus corpus NOM m 0.38 0.88 0.38 0.88 +corpuscule corpuscule NOM f s 0.25 0.47 0.06 0.14 +corpuscules corpuscule NOM f p 0.25 0.47 0.18 0.34 +corral corral NOM m s 0.90 1.08 0.87 0.95 +corrals corral NOM m p 0.90 1.08 0.03 0.14 +correct correct ADJ m s 19.24 8.18 14.32 5.00 +correcte correct ADJ f s 19.24 8.18 2.94 1.76 +correctement correctement ADV 11.08 5.41 11.08 5.41 +correctes correct ADJ f p 19.24 8.18 0.58 0.41 +correcteur correcteur NOM m s 0.28 0.74 0.22 0.34 +correcteurs correcteur NOM m p 0.28 0.74 0.06 0.41 +correctif correctif ADJ m s 0.16 0.41 0.13 0.27 +correction correction NOM f s 8.89 6.08 4.17 4.53 +correctionnaliser correctionnaliser VER 0.00 0.07 0.00 0.07 inf; +correctionnel correctionnel ADJ m s 0.43 0.54 0.35 0.00 +correctionnelle correctionnel NOM f s 0.47 1.82 0.47 1.69 +correctionnelles correctionnel ADJ f p 0.43 0.54 0.01 0.14 +correctionnels correctionnel ADJ m p 0.43 0.54 0.01 0.00 +corrections correction NOM f p 8.89 6.08 4.72 1.55 +corrective correctif ADJ f s 0.16 0.41 0.03 0.14 +corrector corrector NOM m s 0.00 0.14 0.00 0.14 +correctrice correcteur ADJ f s 0.07 0.47 0.01 0.00 +correctrices correcteur ADJ f p 0.07 0.47 0.01 0.07 +corrects correct ADJ m p 19.24 8.18 1.39 1.01 +corregidor corregidor NOM m s 0.15 0.14 0.15 0.14 +correspond correspondre VER 23.62 19.46 13.76 3.78 ind:pre:3s; +correspondît correspondre VER 23.62 19.46 0.00 0.27 sub:imp:3s; +correspondaient correspondre VER 23.62 19.46 0.21 1.69 ind:imp:3p; +correspondais correspondre VER 23.62 19.46 0.18 0.20 ind:imp:1s;ind:imp:2s; +correspondait correspondre VER 23.62 19.46 1.14 6.08 ind:imp:3s; +correspondance correspondance NOM f s 5.71 13.51 5.33 11.89 +correspondances correspondance NOM f p 5.71 13.51 0.38 1.62 +correspondancier correspondancier NOM m s 0.01 0.00 0.01 0.00 +correspondant correspondant NOM m s 2.59 5.88 1.87 3.24 +correspondante correspondant ADJ f s 1.10 3.24 0.24 0.47 +correspondantes correspondant ADJ f p 1.10 3.24 0.07 0.27 +correspondants correspondant NOM m p 2.59 5.88 0.54 2.16 +corresponde correspondre VER 23.62 19.46 0.44 0.20 sub:pre:3s; +correspondent correspondre VER 23.62 19.46 4.06 1.55 ind:pre:3p;sub:pre:3p; +correspondez correspondre VER 23.62 19.46 0.20 0.07 ind:pre:2p; +correspondiez correspondre VER 23.62 19.46 0.02 0.00 ind:imp:2p; +correspondions correspondre VER 23.62 19.46 0.02 0.07 ind:imp:1p; +correspondra correspondre VER 23.62 19.46 0.12 0.07 ind:fut:3s; +correspondrai correspondre VER 23.62 19.46 0.00 0.07 ind:fut:1s; +correspondraient correspondre VER 23.62 19.46 0.05 0.07 cnd:pre:3p; +correspondrait correspondre VER 23.62 19.46 0.27 0.27 cnd:pre:3s; +correspondre correspondre VER 23.62 19.46 1.67 1.76 inf; +correspondrons correspondre VER 23.62 19.46 0.02 0.00 ind:fut:1p; +corresponds correspondre VER 23.62 19.46 0.29 0.14 ind:pre:1s;ind:pre:2s; +correspondu correspondre VER m s 23.62 19.46 0.18 0.47 par:pas; +corrida corrida NOM f s 1.88 4.53 1.73 3.65 +corridas corrida NOM f p 1.88 4.53 0.14 0.88 +corridor corridor NOM m s 1.84 12.50 1.51 9.86 +corridors corridor NOM m p 1.84 12.50 0.34 2.64 +corrige corriger VER 12.24 16.08 2.21 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +corrigea corriger VER 12.24 16.08 0.01 1.55 ind:pas:3s; +corrigeai corriger VER 12.24 16.08 0.00 0.20 ind:pas:1s; +corrigeaient corriger VER 12.24 16.08 0.00 0.14 ind:imp:3p; +corrigeais corriger VER 12.24 16.08 0.13 0.20 ind:imp:1s;ind:imp:2s; +corrigeait corriger VER 12.24 16.08 0.04 1.28 ind:imp:3s; +corrigeant corriger VER 12.24 16.08 0.02 1.01 par:pre; +corrigent corriger VER 12.24 16.08 0.06 0.34 ind:pre:3p; +corrigeons corriger VER 12.24 16.08 0.08 0.07 imp:pre:1p;ind:pre:1p; +corriger corriger VER 12.24 16.08 5.87 6.82 inf; +corrigera corriger VER 12.24 16.08 0.25 0.20 ind:fut:3s; +corrigerai corriger VER 12.24 16.08 0.22 0.07 ind:fut:1s; +corrigerais corriger VER 12.24 16.08 0.02 0.07 cnd:pre:1s; +corrigerait corriger VER 12.24 16.08 0.03 0.27 cnd:pre:3s; +corrigeras corriger VER 12.24 16.08 0.02 0.00 ind:fut:2s; +corrigerez corriger VER 12.24 16.08 0.11 0.00 ind:fut:2p; +corrigerons corriger VER 12.24 16.08 0.02 0.00 ind:fut:1p; +corriges corriger VER 12.24 16.08 0.15 0.00 ind:pre:2s; +corrigez corriger VER 12.24 16.08 0.90 0.00 imp:pre:2p;ind:pre:2p; +corrigiez corriger VER 12.24 16.08 0.05 0.00 ind:imp:2p; +corrigions corriger VER 12.24 16.08 0.00 0.07 ind:imp:1p; +corrigé corriger VER m s 12.24 16.08 1.81 1.01 par:pas; +corrigée corriger VER f s 12.24 16.08 0.14 0.54 par:pas; +corrigées corrigé ADJ f p 0.38 1.08 0.17 0.07 +corrigés corrigé ADJ m p 0.38 1.08 0.14 0.14 +corrobora corroborer VER 1.35 1.15 0.00 0.07 ind:pas:3s; +corroboraient corroborer VER 1.35 1.15 0.02 0.07 ind:imp:3p; +corroborait corroborer VER 1.35 1.15 0.02 0.27 ind:imp:3s; +corroborant corroborer VER 1.35 1.15 0.01 0.00 par:pre; +corroboration corroboration NOM f s 0.03 0.00 0.03 0.00 +corrobore corroborer VER 1.35 1.15 0.15 0.20 ind:pre:3s; +corroborent corroborer VER 1.35 1.15 0.20 0.07 ind:pre:3p; +corroborer corroborer VER 1.35 1.15 0.69 0.41 inf; +corroborera corroborer VER 1.35 1.15 0.08 0.00 ind:fut:3s; +corroborèrent corroborer VER 1.35 1.15 0.00 0.07 ind:pas:3p; +corroboré corroborer VER m s 1.35 1.15 0.16 0.00 par:pas; +corroborées corroborer VER f p 1.35 1.15 0.02 0.00 par:pas; +corrodait corroder VER 0.23 1.22 0.00 0.41 ind:imp:3s; +corrodant corrodant ADJ m s 0.00 0.14 0.00 0.07 +corrodante corrodant ADJ f s 0.00 0.14 0.00 0.07 +corrode corroder VER 0.23 1.22 0.01 0.07 ind:pre:3s; +corrodent corroder VER 0.23 1.22 0.00 0.07 ind:pre:3p; +corroder corroder VER 0.23 1.22 0.00 0.07 inf; +corrodé corroder VER m s 0.23 1.22 0.04 0.27 par:pas; +corrodée corroder VER f s 0.23 1.22 0.01 0.20 par:pas; +corrodées corroder VER f p 0.23 1.22 0.13 0.00 par:pas; +corrodés corroder VER m p 0.23 1.22 0.03 0.14 par:pas; +corroierie corroierie NOM f s 0.00 0.07 0.00 0.07 +corrompais corrompre VER 5.27 3.58 0.02 0.00 ind:imp:1s; +corrompant corrompre VER 5.27 3.58 0.05 0.07 par:pre; +corrompe corrompre VER 5.27 3.58 0.09 0.07 sub:pre:1s;sub:pre:3s; +corrompent corrompre VER 5.27 3.58 0.05 0.41 ind:pre:3p; +corrompez corrompre VER 5.27 3.58 0.23 0.00 imp:pre:2p;ind:pre:2p; +corrompis corrompre VER 5.27 3.58 0.00 0.07 ind:pas:1s; +corrompra corrompre VER 5.27 3.58 0.02 0.07 ind:fut:3s; +corrompraient corrompre VER 5.27 3.58 0.01 0.00 cnd:pre:3p; +corrompre corrompre VER 5.27 3.58 1.61 1.49 inf; +corromps corrompre VER 5.27 3.58 0.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +corrompt corrompre VER 5.27 3.58 0.53 0.34 ind:pre:3s; +corrompu corrompre VER m s 5.27 3.58 1.56 0.68 par:pas; +corrompue corrompu ADJ f s 2.79 1.42 0.34 0.41 +corrompues corrompu ADJ f p 2.79 1.42 0.08 0.07 +corrompus corrompu ADJ m p 2.79 1.42 0.83 0.34 +corrosif corrosif ADJ m s 0.33 1.35 0.17 0.61 +corrosifs corrosif ADJ m p 0.33 1.35 0.10 0.00 +corrosion corrosion NOM f s 0.18 0.20 0.18 0.20 +corrosive corrosif ADJ f s 0.33 1.35 0.04 0.61 +corrosives corrosif ADJ f p 0.33 1.35 0.01 0.14 +corrélatif corrélatif ADJ m s 0.05 0.00 0.01 0.00 +corrélation corrélation NOM f s 0.17 0.20 0.17 0.20 +corrélative corrélatif ADJ f s 0.05 0.00 0.04 0.00 +corrélativement corrélativement ADV 0.00 0.34 0.00 0.34 +corréler corréler VER 0.01 0.00 0.01 0.00 inf; +corrupteur corrupteur NOM m s 0.30 0.41 0.16 0.34 +corrupteurs corrupteur NOM m p 0.30 0.41 0.14 0.07 +corruptible corruptible ADJ s 0.13 0.07 0.09 0.00 +corruptibles corruptible ADJ p 0.13 0.07 0.04 0.07 +corruption corruption NOM f s 6.59 3.58 6.54 3.45 +corruptions corruption NOM f p 6.59 3.58 0.04 0.14 +corruptrice corrupteur ADJ f s 0.13 0.27 0.02 0.00 +corruptrices corrupteur ADJ f p 0.13 0.27 0.00 0.14 +corréziennes corrézien ADJ f p 0.00 0.07 0.00 0.07 +cors cor NOM m p 3.35 3.92 0.78 1.55 +corsa corser VER 1.81 1.69 0.14 0.07 ind:pas:3s; +corsage corsage NOM m s 1.44 15.14 1.28 12.23 +corsages corsage NOM m p 1.44 15.14 0.16 2.91 +corsaire corsaire NOM s 0.78 3.58 0.58 1.96 +corsaires corsaire NOM p 0.78 3.58 0.20 1.62 +corsait corser VER 1.81 1.69 0.02 0.27 ind:imp:3s; +corsant corser VER 1.81 1.69 0.00 0.07 par:pre; +corse corse ADJ s 3.37 3.51 2.17 2.64 +corselet corselet NOM m s 0.00 0.88 0.00 0.54 +corselets corselet NOM m p 0.00 0.88 0.00 0.34 +corsent corser VER 1.81 1.69 0.18 0.00 ind:pre:3p; +corser corser VER 1.81 1.69 0.29 0.74 inf; +corserait corser VER 1.81 1.69 0.00 0.07 cnd:pre:3s; +corses corse ADJ p 3.37 3.51 1.21 0.88 +corset corset NOM m s 2.04 2.91 1.51 2.30 +corseter corseter VER 0.03 1.42 0.01 0.00 inf; +corsetière corsetier NOM f s 0.00 0.07 0.00 0.07 +corsets corset NOM m p 2.04 2.91 0.53 0.61 +corseté corseter VER m s 0.03 1.42 0.01 0.34 par:pas; +corsetée corseter VER f s 0.03 1.42 0.00 0.74 par:pas; +corsetées corseter VER f p 0.03 1.42 0.00 0.20 par:pas; +corsetés corseter VER m p 0.03 1.42 0.00 0.14 par:pas; +corso corso NOM m s 0.48 1.08 0.48 1.01 +corsos corso NOM m p 0.48 1.08 0.00 0.07 +corsé corser VER m s 1.81 1.69 0.33 0.14 par:pas; +corsée corser VER f s 1.81 1.69 0.14 0.20 par:pas; +corsées corsé ADJ f p 0.49 1.28 0.00 0.07 +corsés corsé ADJ m p 0.49 1.28 0.23 0.07 +cortes corte NOM f p 0.01 0.00 0.01 0.00 +cortex cortex NOM m 8.68 0.14 8.68 0.14 +cortical cortical ADJ m s 0.45 0.07 0.08 0.07 +corticale cortical ADJ f s 0.45 0.07 0.16 0.00 +corticales cortical ADJ f p 0.45 0.07 0.20 0.00 +corticaux cortical ADJ m p 0.45 0.07 0.01 0.00 +cortine cortine NOM f s 0.03 0.00 0.03 0.00 +cortisol cortisol NOM m s 0.03 0.00 0.03 0.00 +cortisone cortisone NOM f s 1.28 0.14 1.28 0.14 +corton corton NOM m s 0.03 0.27 0.03 0.27 +cortège cortège NOM m s 2.91 20.34 2.77 18.11 +cortèges cortège NOM m p 2.91 20.34 0.13 2.23 +cortès cortès NOM f p 0.02 0.07 0.02 0.07 +cortégeant cortéger VER 0.00 0.07 0.00 0.07 par:pre; +coré coré NOM f s 0.40 0.14 0.40 0.14 +coréen coréen ADJ m s 2.90 0.07 1.67 0.07 +coréenne coréen ADJ f s 2.90 0.07 0.70 0.00 +coréennes coréenne ADJ f p 0.05 0.00 0.05 0.00 +coréennes coréenne NOM f p 0.10 0.00 0.05 0.00 +coréens coréen NOM m p 1.69 0.27 1.09 0.27 +coruscant coruscant ADJ m s 0.13 0.27 0.13 0.07 +coruscante coruscant ADJ f s 0.13 0.27 0.00 0.07 +coruscants coruscant ADJ m p 0.13 0.27 0.00 0.14 +coruscation coruscation NOM f s 0.00 0.07 0.00 0.07 +corvette corvette NOM f s 1.32 1.55 1.28 0.81 +corvettes corvette NOM f p 1.32 1.55 0.04 0.74 +corvéable corvéable ADJ s 0.00 0.14 0.00 0.14 +corvée corvée NOM f s 6.32 16.76 4.05 10.74 +corvées corvée NOM f p 6.32 16.76 2.27 6.01 +corybantes corybante NOM m p 0.00 0.07 0.00 0.07 +coryphène coryphène NOM m s 0.01 0.00 0.01 0.00 +coryphée coryphée NOM m s 0.00 0.07 0.00 0.07 +coryste coryste NOM m s 0.00 0.07 0.00 0.07 +coryza coryza NOM m s 0.00 0.68 0.00 0.68 +cosaque cosaque NOM s 1.33 2.09 0.44 1.22 +cosaques cosaque NOM p 1.33 2.09 0.89 0.88 +coseigneurs coseigneur NOM m p 0.00 0.07 0.00 0.07 +cosigner cosigner VER 0.32 0.00 0.10 0.00 inf; +cosigné cosigner VER m s 0.32 0.00 0.21 0.00 par:pas; +cosinus cosinus NOM m 0.28 0.20 0.28 0.20 +cosmique cosmique ADJ s 2.51 3.58 2.18 3.31 +cosmiquement cosmiquement ADV 0.02 0.00 0.02 0.00 +cosmiques cosmique ADJ p 2.51 3.58 0.33 0.27 +cosmo cosmo ADV 1.07 0.07 1.07 0.07 +cosmodromes cosmodrome NOM m p 0.01 0.00 0.01 0.00 +cosmogonie cosmogonie NOM f s 0.00 0.27 0.00 0.20 +cosmogonies cosmogonie NOM f p 0.00 0.27 0.00 0.07 +cosmogonique cosmogonique ADJ m s 0.00 0.07 0.00 0.07 +cosmographie cosmographie NOM f s 0.00 0.14 0.00 0.14 +cosmologie cosmologie NOM f s 0.09 0.07 0.09 0.07 +cosmologique cosmologique ADJ f s 0.05 0.07 0.03 0.00 +cosmologiques cosmologique ADJ m p 0.05 0.07 0.02 0.07 +cosmologue cosmologue NOM s 0.00 0.07 0.00 0.07 +cosmonaute cosmonaute NOM s 1.29 0.88 0.83 0.54 +cosmonautes cosmonaute NOM p 1.29 0.88 0.46 0.34 +cosmopolite cosmopolite ADJ s 0.35 2.50 0.24 1.96 +cosmopolites cosmopolite ADJ p 0.35 2.50 0.11 0.54 +cosmopolitisme cosmopolitisme NOM m s 0.00 0.47 0.00 0.47 +cosmos cosmos NOM m 2.34 1.42 2.34 1.42 +cosméticienne cosméticien NOM f s 0.02 0.07 0.02 0.07 +cosmétique cosmétique ADJ s 0.47 0.34 0.23 0.20 +cosmétiques cosmétique NOM p 0.69 0.81 0.52 0.54 +cosmétiqué cosmétiquer VER m s 0.00 0.34 0.00 0.07 par:pas; +cosmétiquée cosmétiquer VER f s 0.00 0.34 0.00 0.14 par:pas; +cosmétiquées cosmétiquer VER f p 0.00 0.34 0.00 0.07 par:pas; +cosmétiqués cosmétiquer VER m p 0.00 0.34 0.00 0.07 par:pas; +cosmétologie cosmétologie NOM f s 0.07 0.00 0.07 0.00 +cosmétologue cosmétologue NOM s 0.02 0.00 0.02 0.00 +cossard cossard ADJ m s 0.04 0.27 0.04 0.14 +cossarde cossard NOM f s 0.01 0.47 0.00 0.07 +cossards cossard NOM m p 0.01 0.47 0.01 0.27 +cosse cosse NOM f s 0.62 0.68 0.34 0.20 +cossent cosser VER 0.00 0.07 0.00 0.07 ind:pre:3p; +cosses cosse NOM f p 0.62 0.68 0.28 0.47 +cossu cossu ADJ m s 0.08 4.53 0.04 1.96 +cossue cossu ADJ f s 0.08 4.53 0.02 1.08 +cossues cossu ADJ f p 0.08 4.53 0.01 0.61 +cossus cossu ADJ m p 0.08 4.53 0.00 0.88 +costal costal ADJ m s 0.13 0.00 0.07 0.00 +costale costal ADJ f s 0.13 0.00 0.04 0.00 +costar costar NOM m s 0.03 0.00 0.03 0.00 +costard costard NOM m s 3.81 6.82 3.19 5.34 +costards costard NOM m p 3.81 6.82 0.61 1.49 +costaricain costaricain ADJ m s 0.01 0.00 0.01 0.00 +costaud costaud ADJ m s 6.98 6.42 5.84 5.27 +costaude costaud ADJ f s 6.98 6.42 0.15 0.27 +costaudes costaud ADJ f p 6.98 6.42 0.01 0.00 +costauds costaud ADJ m p 6.98 6.42 0.98 0.88 +costaux costal ADJ m p 0.13 0.00 0.01 0.00 +costume costume NOM m s 51.42 55.88 38.95 44.19 +costumer costumer VER 1.03 1.76 0.05 0.14 inf; +costumes costume NOM m p 51.42 55.88 12.47 11.69 +costumier costumier NOM m s 0.42 0.47 0.12 0.27 +costumiers costumier NOM m p 0.42 0.47 0.07 0.14 +costumière costumier NOM f s 0.42 0.47 0.23 0.07 +costumé costumé ADJ m s 1.26 1.08 0.68 0.54 +costumée costumé ADJ f s 1.26 1.08 0.27 0.14 +costumées costumer VER f p 1.03 1.76 0.00 0.07 par:pas; +costumés costumé ADJ m p 1.26 1.08 0.31 0.41 +cosy_corner cosy_corner NOM m s 0.00 0.54 0.00 0.47 +cosy_corner cosy_corner NOM m p 0.00 0.54 0.00 0.07 +cosy cosy NOM m s 0.12 0.95 0.12 0.88 +cosys cosy NOM m p 0.12 0.95 0.00 0.07 +cot_cot_codec cot_cot_codec ONO 0.14 0.07 0.14 0.07 +cota coter VER 9.13 1.89 0.21 0.00 ind:pas:3s; +cotait coter VER 9.13 1.89 0.01 0.00 ind:imp:3s; +cotation cotation NOM f s 0.31 0.27 0.14 0.14 +cotations cotation NOM f p 0.31 0.27 0.17 0.14 +cote cote NOM f s 8.47 5.47 7.50 5.07 +coteau coteau NOM m s 0.41 7.70 0.19 5.20 +coteaux coteau NOM m p 0.41 7.70 0.22 2.50 +cotent coter VER 9.13 1.89 0.02 0.07 ind:pre:3p; +coter coter VER 9.13 1.89 0.02 0.20 inf; +coterie coterie NOM f s 0.14 1.55 0.00 1.15 +coteries coterie NOM f p 0.14 1.55 0.14 0.41 +cotes cote NOM f p 8.47 5.47 0.97 0.41 +cothurne cothurne NOM m s 0.00 0.41 0.00 0.07 +cothurnes cothurne NOM m p 0.00 0.41 0.00 0.34 +coties cotir VER f p 0.00 0.07 0.00 0.07 par:pas; +cotillon cotillon NOM m s 0.32 0.81 0.19 0.20 +cotillons cotillon NOM m p 0.32 0.81 0.13 0.61 +cotisa cotiser VER 0.88 0.88 0.00 0.07 ind:pas:3s; +cotisaient cotiser VER 0.88 0.88 0.00 0.14 ind:imp:3p; +cotisais cotiser VER 0.88 0.88 0.00 0.07 ind:imp:1s; +cotisant cotiser VER 0.88 0.88 0.00 0.14 par:pre; +cotisants cotisant NOM m p 0.01 0.14 0.01 0.07 +cotisation cotisation NOM f s 0.96 1.15 0.35 0.74 +cotisations cotisation NOM f p 0.96 1.15 0.60 0.41 +cotise cotiser VER 0.88 0.88 0.21 0.07 ind:pre:1s;ind:pre:3s; +cotisent cotiser VER 0.88 0.88 0.03 0.00 ind:pre:3p; +cotiser cotiser VER 0.88 0.88 0.14 0.20 inf; +cotises cotiser VER 0.88 0.88 0.14 0.00 ind:pre:2s; +cotisèrent cotiser VER 0.88 0.88 0.00 0.07 ind:pas:3p; +cotisé cotiser VER m s 0.88 0.88 0.15 0.14 par:pas; +cotisées cotiser VER f p 0.88 0.88 0.01 0.00 par:pas; +cotisés cotiser VER m p 0.88 0.88 0.20 0.00 par:pas; +coton_tige coton_tige NOM m s 0.43 0.07 0.20 0.00 +coton coton NOM m s 10.09 26.22 10.06 24.66 +cotonnade cotonnade NOM f s 0.00 3.18 0.00 2.23 +cotonnades cotonnade NOM f p 0.00 3.18 0.00 0.95 +cotonnait cotonner VER 0.00 0.14 0.00 0.07 ind:imp:3s; +cotonnant cotonner VER 0.00 0.14 0.00 0.07 par:pre; +cotonnerie cotonnerie NOM f s 0.01 0.00 0.01 0.00 +cotonneuse cotonneux ADJ f s 0.07 3.45 0.01 0.95 +cotonneuses cotonneux ADJ f p 0.07 3.45 0.00 0.74 +cotonneux cotonneux ADJ m 0.07 3.45 0.06 1.76 +cotonnier cotonnier ADJ m s 0.00 0.07 0.00 0.07 +cotonnier cotonnier NOM m s 0.00 0.07 0.00 0.07 +cotonnière cotonnière NOM f s 0.01 0.00 0.01 0.00 +coton_tige coton_tige NOM m p 0.43 0.07 0.23 0.07 +cotons coton NOM m p 10.09 26.22 0.03 1.55 +cotonéasters cotonéaster NOM m p 0.00 0.07 0.00 0.07 +cotât coter VER 9.13 1.89 0.00 0.07 sub:imp:3s; +cotre cotre NOM m s 0.03 1.96 0.03 1.76 +cotres cotre NOM m p 0.03 1.96 0.00 0.20 +cotrets cotret NOM m p 0.00 0.14 0.00 0.14 +cotriade cotriade NOM f s 0.00 0.07 0.00 0.07 +cottage cottage NOM m s 1.54 0.68 1.49 0.47 +cottages cottage NOM m p 1.54 0.68 0.05 0.20 +cotte cotte NOM f s 0.32 4.05 0.30 2.23 +cottes cotte NOM f p 0.32 4.05 0.02 1.82 +coté coter VER m s 9.13 1.89 7.66 0.54 par:pas; +cotée coter VER f s 9.13 1.89 0.08 0.20 par:pas; +cotées coter VER f p 9.13 1.89 0.13 0.27 par:pas; +coturne coturne NOM m s 0.00 0.07 0.00 0.07 +cotés coté ADJ m p 7.56 1.28 0.95 0.47 +cotylédons cotylédon NOM m p 0.00 0.07 0.00 0.07 +cou_de_pied cou_de_pied NOM m s 0.01 0.27 0.01 0.27 +cou cou NOM m s 44.09 115.34 43.71 112.70 +couac couac NOM m s 0.14 1.01 0.11 0.81 +couacs couac NOM m p 0.14 1.01 0.03 0.20 +couaille couaille NOM f s 0.00 0.14 0.00 0.14 +couaquait couaquer VER 0.00 0.34 0.00 0.07 ind:imp:3s; +couaquer couaquer VER 0.00 0.34 0.00 0.27 inf; +couard couard NOM m s 0.25 0.47 0.20 0.34 +couarde couard ADJ f s 0.09 0.61 0.01 0.00 +couardise couardise NOM f s 0.10 0.54 0.10 0.54 +couards couard NOM m p 0.25 0.47 0.04 0.14 +coucha coucher VER 181.96 196.22 0.41 7.57 ind:pas:3s; +couchage couchage NOM m s 1.86 1.28 1.86 1.28 +couchai coucher VER 181.96 196.22 0.00 1.35 ind:pas:1s; +couchaient coucher VER 181.96 196.22 0.13 2.57 ind:imp:3p; +couchailler couchailler VER 0.00 0.07 0.00 0.07 inf; +couchais coucher VER 181.96 196.22 1.89 2.57 ind:imp:1s;ind:imp:2s; +couchait coucher VER 181.96 196.22 2.23 11.89 ind:imp:3s; +couchant couchant ADJ m s 1.10 4.93 1.09 4.80 +couchants couchant ADJ m p 1.10 4.93 0.01 0.14 +couche_culotte couche_culotte NOM f s 0.22 0.27 0.11 0.07 +couche coucher VER 181.96 196.22 29.50 18.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +couchent coucher VER 181.96 196.22 2.48 3.38 ind:pre:3p; +coucher coucher VER 181.96 196.22 82.63 63.24 inf;; +couchera coucher VER 181.96 196.22 0.86 0.81 ind:fut:3s; +coucherai coucher VER 181.96 196.22 1.36 1.28 ind:fut:1s; +coucheraient coucher VER 181.96 196.22 0.10 0.20 cnd:pre:3p; +coucherais coucher VER 181.96 196.22 0.56 0.68 cnd:pre:1s;cnd:pre:2s; +coucherait coucher VER 181.96 196.22 0.43 1.42 cnd:pre:3s; +coucheras coucher VER 181.96 196.22 0.96 0.88 ind:fut:2s; +coucherez coucher VER 181.96 196.22 0.54 0.54 ind:fut:2p; +coucherie coucherie NOM f s 0.44 1.15 0.17 0.54 +coucheries coucherie NOM f p 0.44 1.15 0.27 0.61 +coucheriez coucher VER 181.96 196.22 0.04 0.07 cnd:pre:2p; +coucherions coucher VER 181.96 196.22 0.00 0.07 cnd:pre:1p; +coucherons coucher VER 181.96 196.22 0.17 0.61 ind:fut:1p; +coucheront coucher VER 181.96 196.22 0.07 0.14 ind:fut:3p; +couchers coucher NOM m p 7.80 8.92 0.73 0.81 +couche_culotte couche_culotte NOM f p 0.22 0.27 0.11 0.20 +couches couche NOM f p 19.95 32.91 9.06 10.14 +couchette couchette NOM f s 1.99 6.28 1.50 5.00 +couchettes couchette NOM f p 1.99 6.28 0.50 1.28 +coucheur coucheur NOM m s 0.06 0.47 0.05 0.34 +coucheurs coucheur NOM m p 0.06 0.47 0.00 0.14 +coucheuse coucheur NOM f s 0.06 0.47 0.01 0.00 +couchez coucher VER 181.96 196.22 6.79 1.49 imp:pre:2p;ind:pre:2p; +couchiez coucher VER 181.96 196.22 0.48 0.20 ind:imp:2p; +couchions coucher VER 181.96 196.22 0.08 0.47 ind:imp:1p; +couchoir couchoir NOM m s 0.00 0.07 0.00 0.07 +couchâmes coucher VER 181.96 196.22 0.00 0.14 ind:pas:1p; +couchons coucher VER 181.96 196.22 0.53 0.41 imp:pre:1p;ind:pre:1p; +couchât coucher VER 181.96 196.22 0.00 0.41 sub:imp:3s; +couchèrent coucher VER 181.96 196.22 0.03 2.30 ind:pas:3p; +couché coucher VER m s 181.96 196.22 35.71 40.74 par:pas; +couchée coucher VER f s 181.96 196.22 5.92 15.61 par:pas; +couchées coucher VER f p 181.96 196.22 0.31 2.43 par:pas; +couchés coucher VER m p 181.96 196.22 1.95 10.74 par:pas; +couci_couça couci_couça ADV 0.60 0.20 0.60 0.20 +coucou coucou NOM m s 13.16 5.07 12.71 3.92 +coucous coucou NOM m p 13.16 5.07 0.45 1.15 +coud coudre VER 8.88 20.74 0.63 0.68 ind:pre:3s; +coude coude NOM m s 10.19 54.19 5.36 33.24 +coudent couder VER 0.02 0.41 0.00 0.07 ind:pre:3p; +coudes coude NOM m p 10.19 54.19 4.84 20.95 +coudoie coudoyer VER 0.00 0.88 0.00 0.07 ind:pre:3s; +coudoient coudoyer VER 0.00 0.88 0.00 0.14 ind:pre:3p; +coudoyai coudoyer VER 0.00 0.88 0.00 0.07 ind:pas:1s; +coudoyaient coudoyer VER 0.00 0.88 0.00 0.20 ind:imp:3p; +coudoyais coudoyer VER 0.00 0.88 0.00 0.07 ind:imp:1s; +coudoyant coudoyer VER 0.00 0.88 0.00 0.07 par:pre; +coudoyer coudoyer VER 0.00 0.88 0.00 0.14 inf; +coudoyons coudoyer VER 0.00 0.88 0.00 0.07 ind:pre:1p; +coudoyé coudoyer VER m s 0.00 0.88 0.00 0.07 par:pas; +coudra coudre VER 8.88 20.74 0.10 0.07 ind:fut:3s; +coudrai coudre VER 8.88 20.74 0.02 0.07 ind:fut:1s; +coudrais coudre VER 8.88 20.74 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +coudrait coudre VER 8.88 20.74 0.00 0.07 cnd:pre:3s; +coudras coudre VER 8.88 20.74 0.00 0.07 ind:fut:2s; +coudre coudre VER 8.88 20.74 4.83 8.65 inf; +coudreuse coudreuse NOM f s 0.00 0.07 0.00 0.07 +coudrier coudrier NOM m s 0.04 10.41 0.04 10.07 +coudriers coudrier NOM m p 0.04 10.41 0.00 0.34 +couds coudre VER 8.88 20.74 0.34 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +coudé coudé ADJ m s 0.06 0.61 0.03 0.41 +coudée coudée NOM f s 0.07 1.55 0.01 0.20 +coudées coudée NOM f p 0.07 1.55 0.06 1.35 +couenne couenne NOM f s 0.53 1.82 0.40 1.49 +couennes couenne NOM f p 0.53 1.82 0.14 0.34 +couette couette NOM f s 1.58 2.03 1.34 1.28 +couettes couette NOM f p 1.58 2.03 0.23 0.74 +couffin couffin NOM m s 1.48 1.96 1.25 1.01 +couffins couffin NOM m p 1.48 1.96 0.22 0.95 +couguar couguar NOM m s 0.72 1.01 0.65 0.41 +couguars couguar NOM m p 0.72 1.01 0.08 0.61 +couic couic NOM m s 0.64 1.22 0.64 1.22 +couillard couillard NOM m s 0.00 0.07 0.00 0.07 +couille couille NOM f s 38.80 11.42 3.56 1.55 +couilles couille NOM f p 38.80 11.42 35.24 9.86 +couillettes couillette NOM f p 0.00 0.27 0.00 0.27 +couillon couillon NOM m s 5.75 2.36 4.04 1.76 +couillonnade couillonnade NOM f s 0.82 0.41 0.42 0.14 +couillonnades couillonnade NOM f p 0.82 0.41 0.40 0.27 +couillonne couillonner VER 0.53 0.68 0.02 0.07 imp:pre:2s;ind:pre:3s; +couillonnent couillonner VER 0.53 0.68 0.00 0.07 ind:pre:3p; +couillonner couillonner VER 0.53 0.68 0.33 0.34 inf; +couillonné couillonner VER m s 0.53 0.68 0.02 0.20 par:pas; +couillonnée couillonner VER f s 0.53 0.68 0.01 0.00 par:pas; +couillonnés couillonner VER m p 0.53 0.68 0.14 0.00 par:pas; +couillons couillon NOM m p 5.75 2.36 1.71 0.61 +couillu couillu ADJ m s 0.51 0.00 0.23 0.00 +couillus couillu ADJ m p 0.51 0.00 0.28 0.00 +couina couiner VER 1.13 3.85 0.00 0.20 ind:pas:3s; +couinaient couiner VER 1.13 3.85 0.00 0.34 ind:imp:3p; +couinais couiner VER 1.13 3.85 0.01 0.07 ind:imp:1s;ind:imp:2s; +couinait couiner VER 1.13 3.85 0.00 0.54 ind:imp:3s; +couinant couiner VER 1.13 3.85 0.02 0.68 par:pre; +couine couiner VER 1.13 3.85 0.43 0.41 imp:pre:2s;ind:pre:3s; +couinement couinement NOM m s 0.09 1.76 0.06 0.68 +couinements couinement NOM m p 0.09 1.76 0.02 1.08 +couinent couiner VER 1.13 3.85 0.03 0.20 ind:pre:3p; +couiner couiner VER 1.13 3.85 0.45 1.01 inf; +couinerais couiner VER 1.13 3.85 0.01 0.00 cnd:pre:1s; +couineras couiner VER 1.13 3.85 0.01 0.00 ind:fut:2s; +couineront couiner VER 1.13 3.85 0.01 0.00 ind:fut:3p; +couines couiner VER 1.13 3.85 0.02 0.00 ind:pre:2s; +couinez couiner VER 1.13 3.85 0.00 0.14 ind:pre:2p; +couiné couiner VER m s 1.13 3.85 0.15 0.27 par:pas; +coula couler VER 47.55 121.15 0.18 5.61 ind:pas:3s; +coulage coulage NOM m s 0.17 0.47 0.17 0.47 +coulai couler VER 47.55 121.15 0.00 0.20 ind:pas:1s; +coulaient couler VER 47.55 121.15 0.80 7.03 ind:imp:3p; +coulais couler VER 47.55 121.15 0.16 0.27 ind:imp:1s;ind:imp:2s; +coulait couler VER 47.55 121.15 2.96 26.62 ind:imp:3s; +coulant coulant ADJ m s 1.01 2.91 0.71 2.64 +coulante coulant ADJ f s 1.01 2.91 0.20 0.00 +coulants coulant ADJ m p 1.01 2.91 0.10 0.27 +coule couler VER 47.55 121.15 14.70 20.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +coulemelle coulemelle NOM f s 0.00 0.07 0.00 0.07 +coulent couler VER 47.55 121.15 2.29 5.00 ind:pre:3p; +couler couler VER 47.55 121.15 14.91 37.70 inf; +coulera couler VER 47.55 121.15 2.15 0.54 ind:fut:3s; +coulerai couler VER 47.55 121.15 0.14 0.20 ind:fut:1s; +couleraient couler VER 47.55 121.15 0.14 0.07 cnd:pre:3p; +coulerais couler VER 47.55 121.15 0.01 0.00 cnd:pre:2s; +coulerait couler VER 47.55 121.15 0.19 0.47 cnd:pre:3s; +couleras couler VER 47.55 121.15 0.05 0.00 ind:fut:2s; +coulerez couler VER 47.55 121.15 0.07 0.07 ind:fut:2p; +couleront couler VER 47.55 121.15 0.05 0.00 ind:fut:3p; +coules couler VER 47.55 121.15 0.68 0.34 ind:pre:2s; +couleur couleur NOM f s 82.25 198.72 57.46 118.65 +couleurs couleur NOM f p 82.25 198.72 24.79 80.07 +couleuvre couleuvre NOM f s 0.89 2.91 0.71 1.55 +couleuvres couleuvre NOM f p 0.89 2.91 0.18 1.35 +couleuvrine couleuvrine NOM f s 0.23 0.20 0.14 0.00 +couleuvrines couleuvrine NOM f p 0.23 0.20 0.10 0.20 +coulez couler VER 47.55 121.15 0.75 0.00 imp:pre:2p;ind:pre:2p; +couliez couler VER 47.55 121.15 0.02 0.07 ind:imp:2p; +coulions couler VER 47.55 121.15 0.02 0.07 ind:imp:1p; +coulis coulis NOM m 0.58 0.68 0.58 0.68 +coulissa coulisser VER 0.14 2.36 0.00 0.14 ind:pas:3s; +coulissaient coulisser VER 0.14 2.36 0.00 0.07 ind:imp:3p; +coulissait coulisser VER 0.14 2.36 0.00 0.54 ind:imp:3s; +coulissant coulisser VER 0.14 2.36 0.00 0.54 par:pre; +coulissante coulissant ADJ f s 0.17 1.62 0.16 0.41 +coulissantes coulissant ADJ f p 0.17 1.62 0.01 0.68 +coulissants coulissant ADJ m p 0.17 1.62 0.01 0.14 +coulisse coulisse NOM f s 4.50 9.05 1.05 2.30 +coulissements coulissement NOM m p 0.00 0.07 0.00 0.07 +coulissent coulisser VER 0.14 2.36 0.02 0.14 ind:pre:3p; +coulisser coulisser VER 0.14 2.36 0.04 0.61 inf; +coulisses coulisse NOM f p 4.50 9.05 3.44 6.76 +coulissier coulissier NOM m s 0.00 0.14 0.00 0.14 +coulissèrent coulisser VER 0.14 2.36 0.00 0.07 ind:pas:3p; +coulissé coulisser VER m s 0.14 2.36 0.00 0.07 par:pas; +coulissée coulisser VER f s 0.14 2.36 0.00 0.07 par:pas; +couloir_symbole couloir_symbole NOM m s 0.00 0.07 0.00 0.07 +couloir couloir NOM m s 29.17 104.53 24.77 80.47 +couloirs couloir NOM m p 29.17 104.53 4.41 24.05 +coulombs coulomb NOM m p 0.00 0.07 0.00 0.07 +coulons couler VER 47.55 121.15 0.26 0.14 imp:pre:1p;ind:pre:1p; +coulât couler VER 47.55 121.15 0.00 0.20 sub:imp:3s; +coulpe coulpe NOM f s 0.04 0.14 0.04 0.14 +coulèrent couler VER 47.55 121.15 0.13 1.08 ind:pas:3p; +coulé couler VER m s 47.55 121.15 6.46 8.24 par:pas; +coulée coulée NOM f s 0.62 9.80 0.53 7.43 +coulées coulée NOM f p 0.62 9.80 0.09 2.36 +coulure coulure NOM f s 0.01 0.41 0.01 0.07 +coulures coulure NOM f p 0.01 0.41 0.00 0.34 +coulés couler VER m p 47.55 121.15 0.12 0.88 par:pas; +coumarine coumarine NOM f s 0.01 0.00 0.01 0.00 +countries countries NOM p 0.01 0.07 0.01 0.07 +country country ADJ 1.73 0.07 1.73 0.07 +coup_de_poing coup_de_poing NOM m s 0.13 0.00 0.13 0.00 +coup coup NOM m s 471.82 837.70 389.49 641.55 +coupa couper VER 155.82 140.88 0.69 17.97 ind:pas:3s; +coupable coupable ADJ s 50.84 23.58 46.45 20.20 +coupablement coupablement ADV 0.00 0.07 0.00 0.07 +coupables coupable ADJ p 50.84 23.58 4.39 3.38 +coupage coupage NOM m s 0.02 0.20 0.02 0.14 +coupages coupage NOM m p 0.02 0.20 0.00 0.07 +coupai couper VER 155.82 140.88 0.01 0.41 ind:pas:1s; +coupaient couper VER 155.82 140.88 0.33 2.43 ind:imp:3p; +coupailler coupailler VER 0.01 0.00 0.01 0.00 inf; +coupais couper VER 155.82 140.88 0.53 0.41 ind:imp:1s;ind:imp:2s; +coupait couper VER 155.82 140.88 1.64 10.61 ind:imp:3s; +coupant couper VER 155.82 140.88 0.97 4.73 par:pre; +coupante coupant ADJ f s 0.51 6.69 0.21 2.23 +coupantes coupant ADJ f p 0.51 6.69 0.10 1.35 +coupants coupant ADJ m p 0.51 6.69 0.04 0.74 +coupe_chou coupe_chou NOM m s 0.05 0.34 0.05 0.34 +coupe_choux coupe_choux NOM m 0.14 0.27 0.14 0.27 +coupe_cigare coupe_cigare NOM m s 0.02 0.20 0.02 0.07 +coupe_cigare coupe_cigare NOM m p 0.02 0.20 0.00 0.14 +coupe_circuit coupe_circuit NOM m s 0.13 0.34 0.11 0.27 +coupe_circuit coupe_circuit NOM m p 0.13 0.34 0.02 0.07 +coupe_coupe coupe_coupe NOM m 0.10 0.68 0.10 0.68 +coupe_faim coupe_faim NOM m s 0.09 0.07 0.08 0.07 +coupe_faim coupe_faim NOM m p 0.09 0.07 0.01 0.00 +coupe_feu coupe_feu NOM m s 0.12 0.14 0.12 0.14 +coupe_file coupe_file NOM m s 0.03 0.00 0.03 0.00 +coupe_gorge coupe_gorge NOM m 0.28 0.61 0.28 0.61 +coupe_jarret coupe_jarret NOM m s 0.03 0.00 0.02 0.00 +coupe_jarret coupe_jarret NOM m p 0.03 0.00 0.01 0.00 +coupe_ongle coupe_ongle NOM m s 0.05 0.00 0.05 0.00 +coupe_ongles coupe_ongles NOM m 0.26 0.14 0.26 0.14 +coupe_papier coupe_papier NOM m 0.36 0.95 0.36 0.95 +coupe_pâte coupe_pâte NOM m s 0.00 0.07 0.00 0.07 +coupe_racine coupe_racine NOM m p 0.00 0.07 0.00 0.07 +coupe_vent coupe_vent NOM m s 0.31 0.34 0.31 0.34 +coupe couper VER 155.82 140.88 32.66 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +coupelle coupelle NOM f s 0.04 0.61 0.04 0.47 +coupelles coupelle NOM f p 0.04 0.61 0.00 0.14 +coupent couper VER 155.82 140.88 2.19 3.99 ind:pre:3p; +couper couper VER 155.82 140.88 41.45 31.76 inf;;inf;;inf;; +coupera couper VER 155.82 140.88 1.13 0.61 ind:fut:3s; +couperai couper VER 155.82 140.88 1.67 0.20 ind:fut:1s; +couperaient couper VER 155.82 140.88 0.07 0.27 cnd:pre:3p; +couperais couper VER 155.82 140.88 1.00 0.41 cnd:pre:1s;cnd:pre:2s; +couperait couper VER 155.82 140.88 0.68 1.22 cnd:pre:3s; +couperas couper VER 155.82 140.88 0.31 0.27 ind:fut:2s; +couperet couperet NOM m s 0.42 2.09 0.42 2.03 +couperets couperet NOM m p 0.42 2.09 0.00 0.07 +couperez couper VER 155.82 140.88 0.11 0.20 ind:fut:2p; +couperons couper VER 155.82 140.88 0.17 0.20 ind:fut:1p; +couperont couper VER 155.82 140.88 0.20 0.20 ind:fut:3p; +couperose couperose NOM f s 0.01 0.88 0.01 0.88 +couperosé couperoser VER m s 0.02 0.14 0.02 0.14 par:pas; +couperosée couperosé ADJ f s 0.00 1.28 0.00 0.20 +couperosées couperosé ADJ f p 0.00 1.28 0.00 0.20 +coupes couper VER 155.82 140.88 3.87 0.41 ind:pre:2s; +coupeur coupeur NOM m s 0.55 0.41 0.30 0.27 +coupeurs coupeur NOM m p 0.55 0.41 0.17 0.14 +coupeuse coupeur NOM f s 0.55 0.41 0.08 0.00 +coupez couper VER 155.82 140.88 19.53 1.82 imp:pre:2p;ind:pre:2p; +coupiez couper VER 155.82 140.88 0.22 0.07 ind:imp:2p; +coupions couper VER 155.82 140.88 0.22 0.07 ind:imp:1p; +couplage couplage NOM m s 0.11 0.00 0.07 0.00 +couplages couplage NOM m p 0.11 0.00 0.04 0.00 +couplant coupler VER 0.42 0.95 0.02 0.00 par:pre; +couple couple NOM s 49.62 63.99 41.13 47.23 +coupler coupler VER 0.42 0.95 0.01 0.14 inf; +couples couple NOM m p 49.62 63.99 8.49 16.76 +couplet couplet NOM m s 1.31 5.34 1.06 3.51 +couplets couplet NOM m p 1.31 5.34 0.25 1.82 +coupleur coupleur NOM m s 0.18 0.00 0.14 0.00 +coupleurs coupleur NOM m p 0.18 0.00 0.04 0.00 +couplé coupler VER m s 0.42 0.95 0.07 0.20 par:pas; +couplée coupler VER f s 0.42 0.95 0.04 0.00 par:pas; +couplées coupler VER f p 0.42 0.95 0.02 0.14 par:pas; +couplés coupler VER m p 0.42 0.95 0.03 0.27 par:pas; +coupole coupole NOM f s 1.16 8.92 1.13 5.27 +coupoles coupole NOM f p 1.16 8.92 0.04 3.65 +coupon_cadeau coupon_cadeau NOM m s 0.01 0.00 0.01 0.00 +coupon coupon NOM m s 1.69 2.09 0.51 0.88 +coupons couper VER 155.82 140.88 1.86 0.20 imp:pre:1p;ind:pre:1p; +coups_de_poing coups_de_poing NOM m p 0.00 0.14 0.00 0.14 +coups coup NOM m p 471.82 837.70 82.33 196.15 +coupèrent couper VER 155.82 140.88 0.10 0.68 ind:pas:3p; +coupé couper VER m s 155.82 140.88 30.34 25.41 par:pas;par:pas;par:pas; +coupée couper VER f s 155.82 140.88 8.14 7.91 par:pas; +coupées couper VER f p 155.82 140.88 1.90 3.92 par:pas; +coupure coupure NOM f s 10.48 11.08 6.29 5.81 +coupures coupure NOM f p 10.48 11.08 4.19 5.27 +coupés couper VER m p 155.82 140.88 3.85 6.76 par:pas; +couques couque NOM f p 0.00 0.07 0.00 0.07 +coéquipier coéquipier NOM m s 4.20 0.47 2.73 0.07 +coéquipiers coéquipier NOM m p 4.20 0.47 0.71 0.34 +coéquipière coéquipier NOM f s 4.20 0.47 0.69 0.07 +coéquipières coéquipière NOM f p 0.01 0.00 0.01 0.00 +cour_jardin cour_jardin NOM f s 0.00 0.07 0.00 0.07 +cour cour NOM f s 95.80 176.96 71.80 150.14 +courûmes courir VER 146.50 263.38 0.01 0.20 ind:pas:1p; +courût courir VER 146.50 263.38 0.00 0.27 sub:imp:3s; +courûtes courir VER 146.50 263.38 0.01 0.00 ind:pas:2p; +courage courage NOM m s 70.73 70.34 70.70 69.80 +courages courage NOM m p 70.73 70.34 0.03 0.54 +courageuse courageux ADJ f s 28.68 11.96 7.87 2.97 +courageusement courageusement ADV 0.61 3.45 0.61 3.45 +courageuses courageux ADJ f p 28.68 11.96 0.59 0.61 +courageux courageux ADJ m 28.68 11.96 20.22 8.38 +couraient courir VER 146.50 263.38 1.54 17.91 ind:imp:3p; +courailler courailler VER 0.02 0.00 0.02 0.00 inf; +courais courir VER 146.50 263.38 2.86 5.00 ind:imp:1s;ind:imp:2s; +courait courir VER 146.50 263.38 3.38 32.43 ind:imp:3s; +couramment couramment ADV 1.38 3.11 1.38 3.11 +courant courant NOM m s 111.58 79.73 108.69 67.36 +courante courant ADJ f s 10.13 20.14 1.83 8.51 +courantes courant ADJ f p 10.13 20.14 0.53 2.23 +courants courant NOM m p 111.58 79.73 2.89 12.36 +courba courber VER 2.84 19.66 0.00 2.09 ind:pas:3s; +courbaient courber VER 2.84 19.66 0.00 0.81 ind:imp:3p; +courbait courber VER 2.84 19.66 0.00 1.35 ind:imp:3s; +courbant courber VER 2.84 19.66 0.16 2.36 par:pre; +courbatu courbatu ADJ m s 0.02 0.54 0.01 0.27 +courbatue courbatu ADJ f s 0.02 0.54 0.01 0.14 +courbature courbature NOM f s 0.39 1.62 0.01 0.54 +courbatures courbature NOM f p 0.39 1.62 0.38 1.08 +courbaturé courbaturé ADJ m s 0.33 0.07 0.32 0.07 +courbaturée courbaturé ADJ f s 0.33 0.07 0.01 0.00 +courbatus courbatu ADJ m p 0.02 0.54 0.00 0.14 +courbe courbe NOM f s 3.00 18.11 1.72 11.82 +courbent courber VER 2.84 19.66 0.11 0.07 ind:pre:3p; +courber courber VER 2.84 19.66 0.61 2.50 inf; +courberait courber VER 2.84 19.66 0.00 0.07 cnd:pre:3s; +courbes courbe NOM f p 3.00 18.11 1.28 6.28 +courbette courbette NOM f s 0.69 2.70 0.32 0.74 +courbettes courbette NOM f p 0.69 2.70 0.38 1.96 +courbez courber VER 2.84 19.66 0.07 0.14 imp:pre:2p;ind:pre:2p; +courbons courber VER 2.84 19.66 0.01 0.07 imp:pre:1p;ind:pre:1p; +courbé courbé ADJ m s 0.66 6.08 0.59 2.97 +courbée courber VER f s 2.84 19.66 0.21 1.69 par:pas; +courbées courber VER f p 2.84 19.66 0.01 0.41 par:pas; +courbure courbure NOM f s 0.33 2.50 0.21 2.16 +courbures courbure NOM f p 0.33 2.50 0.12 0.34 +courbés courber VER m p 2.84 19.66 0.55 1.82 par:pas; +coure courir VER 146.50 263.38 0.72 1.22 sub:pre:1s;sub:pre:3s; +courent courir VER 146.50 263.38 8.83 12.84 ind:pre:3p; +coures courir VER 146.50 263.38 0.29 0.00 sub:pre:2s; +courette courette NOM f s 0.00 2.09 0.00 1.69 +courettes courette NOM f p 0.00 2.09 0.00 0.41 +coureur coureur NOM m s 5.48 8.31 3.71 4.80 +coureurs coureur NOM m p 5.48 8.31 1.42 2.36 +coureuse coureur NOM f s 5.48 8.31 0.36 1.08 +coureuses coureuse NOM f p 0.04 0.00 0.04 0.00 +courez courir VER 146.50 263.38 11.99 1.28 imp:pre:2p;ind:pre:2p; +courge courge NOM f s 2.46 0.88 1.38 0.61 +courges courge NOM f p 2.46 0.88 1.08 0.27 +courgette courgette NOM f s 1.24 0.41 0.25 0.00 +courgettes courgette NOM f p 1.24 0.41 1.00 0.41 +couriez courir VER 146.50 263.38 0.14 0.20 ind:imp:2p;sub:pre:2p; +courions courir VER 146.50 263.38 0.09 0.68 ind:imp:1p; +courir courir VER 146.50 263.38 47.19 71.82 inf; +courlis courlis NOM m 0.03 0.47 0.03 0.47 +couronna couronner VER 5.56 14.86 0.14 0.27 ind:pas:3s; +couronnaient couronner VER 5.56 14.86 0.01 0.47 ind:imp:3p; +couronnait couronner VER 5.56 14.86 0.01 0.88 ind:imp:3s; +couronnant couronner VER 5.56 14.86 0.01 1.42 par:pre; +couronne couronne NOM f s 23.15 20.61 15.16 12.50 +couronnement couronnement NOM m s 2.40 2.09 2.38 2.03 +couronnements couronnement NOM m p 2.40 2.09 0.01 0.07 +couronnent couronner VER 5.56 14.86 0.14 0.34 ind:pre:3p; +couronner couronner VER 5.56 14.86 1.76 2.23 inf; +couronnera couronner VER 5.56 14.86 0.01 0.07 ind:fut:3s; +couronnerai couronner VER 5.56 14.86 0.02 0.00 ind:fut:1s; +couronnerons couronner VER 5.56 14.86 0.02 0.00 ind:fut:1p; +couronnes couronne NOM f p 23.15 20.61 7.99 8.11 +couronné couronner VER m s 5.56 14.86 1.45 3.65 par:pas; +couronnée couronner VER f s 5.56 14.86 1.05 2.57 par:pas; +couronnées couronné ADJ f p 0.63 1.49 0.27 0.34 +couronnés couronner VER m p 5.56 14.86 0.14 1.28 par:pas; +courons courir VER 146.50 263.38 2.19 1.76 imp:pre:1p;ind:pre:1p; +courra courir VER 146.50 263.38 0.90 0.41 ind:fut:3s; +courrai courir VER 146.50 263.38 0.22 0.07 ind:fut:1s; +courraient courir VER 146.50 263.38 0.07 0.14 cnd:pre:3p; +courrais courir VER 146.50 263.38 0.86 0.14 cnd:pre:1s;cnd:pre:2s; +courrait courir VER 146.50 263.38 0.37 0.61 cnd:pre:3s; +courras courir VER 146.50 263.38 0.35 0.00 ind:fut:2s; +courre courre VER 0.75 2.91 0.75 2.91 inf; +courrez courir VER 146.50 263.38 1.05 0.00 ind:fut:2p; +courriel courriel NOM m s 0.24 0.00 0.24 0.00 +courrier courrier NOM m s 23.98 24.46 23.40 23.04 +courriers courrier NOM m p 23.98 24.46 0.59 1.42 +courriez courir VER 146.50 263.38 0.09 0.00 cnd:pre:2p; +courrions courir VER 146.50 263.38 0.02 0.00 cnd:pre:1p; +courriériste courriériste NOM s 0.00 0.27 0.00 0.27 +courroie courroie NOM f s 1.05 5.61 0.56 3.11 +courroies courroie NOM f p 1.05 5.61 0.50 2.50 +courrons courir VER 146.50 263.38 0.19 0.20 ind:fut:1p; +courront courir VER 146.50 263.38 0.17 0.34 ind:fut:3p; +courrouce courroucer VER 0.63 2.50 0.02 0.14 imp:pre:2s;ind:pre:3s; +courroucer courroucer VER 0.63 2.50 0.02 0.00 inf; +courroucé courroucer VER m s 0.63 2.50 0.57 1.49 par:pas; +courroucée courroucer VER f s 0.63 2.50 0.02 0.47 par:pas; +courroucées courroucer VER f p 0.63 2.50 0.00 0.07 par:pas; +courroucés courroucer VER m p 0.63 2.50 0.00 0.20 par:pas; +courrouçaient courroucer VER 0.63 2.50 0.00 0.07 ind:imp:3p; +courrouçait courroucer VER 0.63 2.50 0.00 0.07 ind:imp:3s; +courroux courroux NOM m 3.55 2.09 3.55 2.09 +cours cours NOM m 119.05 149.93 119.05 149.93 +coursaient courser VER 1.30 2.50 0.02 0.07 ind:imp:3p; +coursais courser VER 1.30 2.50 0.01 0.07 ind:imp:1s;ind:imp:2s; +coursait courser VER 1.30 2.50 0.02 0.07 ind:imp:3s; +coursant courser VER 1.30 2.50 0.00 0.14 par:pre; +course_poursuite course_poursuite NOM f s 0.34 0.00 0.34 0.00 +course course NOM f s 72.48 81.22 40.45 51.22 +coursent courser VER 1.30 2.50 0.03 0.20 ind:pre:3p; +courser courser VER 1.30 2.50 0.14 0.41 inf; +courserais courser VER 1.30 2.50 0.01 0.00 cnd:pre:2s; +courses course NOM f p 72.48 81.22 32.04 30.00 +coursier coursier NOM m s 4.81 2.64 4.06 1.96 +coursiers coursier NOM m p 4.81 2.64 0.73 0.61 +coursière coursier NOM f s 4.81 2.64 0.02 0.07 +coursive coursive NOM f s 0.34 3.38 0.26 2.36 +coursives coursive NOM f p 0.34 3.38 0.09 1.01 +coursé courser VER m s 1.30 2.50 0.09 0.34 par:pas; +coursée courser VER f s 1.30 2.50 0.03 0.07 par:pas; +coursés courser VER m p 1.30 2.50 0.27 0.07 par:pas; +court_bouillon court_bouillon NOM m s 0.29 0.68 0.29 0.68 +court_circuit court_circuit NOM m s 1.53 1.76 1.47 1.55 +court_circuiter court_circuiter VER 0.83 0.54 0.00 0.07 ind:imp:3s; +court_circuiter court_circuiter VER 0.83 0.54 0.00 0.07 par:pre; +court_circuiter court_circuiter VER 0.83 0.54 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +court_circuiter court_circuiter VER 0.83 0.54 0.29 0.20 inf; +court_circuit court_circuit VER 0.01 0.00 0.01 0.00 ind:pre:3s; +court_circuits court_circuits NOM m s 0.02 0.00 0.02 0.00 +court_circuiter court_circuiter VER m s 0.83 0.54 0.28 0.07 par:pas; +court_circuiter court_circuiter VER f s 0.83 0.54 0.02 0.07 par:pas; +court_circuiter court_circuiter VER f p 0.83 0.54 0.10 0.00 par:pas; +court_courrier court_courrier NOM m s 0.01 0.00 0.01 0.00 +court_jus court_jus NOM m 0.03 0.00 0.03 0.00 +court_métrage court_métrage NOM m s 0.17 0.00 0.17 0.00 +court_vêtu court_vêtu ADJ f s 0.01 0.14 0.01 0.00 +court_vêtu court_vêtu ADJ f p 0.01 0.14 0.00 0.14 +court courir VER 146.50 263.38 19.25 22.30 ind:pre:3s; +courtage courtage NOM m s 0.36 0.27 0.36 0.07 +courtages courtage NOM m p 0.36 0.27 0.00 0.20 +courtaud courtaud ADJ m s 0.22 1.15 0.21 0.61 +courtaude courtaud ADJ f s 0.22 1.15 0.01 0.27 +courtaudes courtaud ADJ f p 0.22 1.15 0.00 0.20 +courtauds courtaud ADJ m p 0.22 1.15 0.00 0.07 +courte court ADJ f s 41.15 108.99 14.07 32.77 +courtelinesque courtelinesque ADJ m s 0.00 0.14 0.00 0.07 +courtelinesques courtelinesque ADJ p 0.00 0.14 0.00 0.07 +courtement courtement ADV 0.00 0.20 0.00 0.20 +courtepointe courtepointe NOM f s 0.01 1.35 0.01 1.28 +courtepointes courtepointe NOM f p 0.01 1.35 0.00 0.07 +courtes court ADJ f p 41.15 108.99 3.63 20.14 +courtier courtier NOM m s 2.96 1.76 2.21 0.74 +courtiers courtier NOM m p 2.96 1.76 0.73 0.61 +courtilière courtilière NOM f s 0.00 0.14 0.00 0.07 +courtilières courtilière NOM f p 0.00 0.14 0.00 0.07 +courtils courtil NOM m p 0.00 0.07 0.00 0.07 +courtine courtine NOM f s 0.00 2.43 0.00 0.34 +courtines courtine NOM f p 0.00 2.43 0.00 2.09 +courtisa courtiser VER 2.79 2.50 0.00 0.07 ind:pas:3s; +courtisaient courtiser VER 2.79 2.50 0.03 0.07 ind:imp:3p; +courtisais courtiser VER 2.79 2.50 0.04 0.07 ind:imp:1s;ind:imp:2s; +courtisait courtiser VER 2.79 2.50 0.03 0.34 ind:imp:3s; +courtisan courtisan ADJ m s 0.30 0.47 0.28 0.34 +courtisane courtisan NOM f s 2.58 6.82 0.66 2.09 +courtisanerie courtisanerie NOM f s 0.00 0.41 0.00 0.41 +courtisanes courtisan NOM f p 2.58 6.82 0.47 1.62 +courtisans courtisan NOM m p 2.58 6.82 1.25 1.89 +courtisant courtiser VER 2.79 2.50 0.02 0.07 par:pre; +courtise courtiser VER 2.79 2.50 0.52 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +courtisent courtiser VER 2.79 2.50 0.14 0.07 ind:pre:3p; +courtiser courtiser VER 2.79 2.50 1.01 0.34 inf; +courtiserai courtiser VER 2.79 2.50 0.01 0.00 ind:fut:1s; +courtiseras courtiser VER 2.79 2.50 0.01 0.00 ind:fut:2s; +courtisez courtiser VER 2.79 2.50 0.05 0.00 imp:pre:2p;ind:pre:2p; +courtisiez courtiser VER 2.79 2.50 0.12 0.00 ind:imp:2p; +courtisé courtiser VER m s 2.79 2.50 0.45 0.20 par:pas; +courtisée courtiser VER f s 2.79 2.50 0.33 0.88 par:pas; +courtisées courtiser VER f p 2.79 2.50 0.01 0.07 par:pas; +courtière courtier NOM f s 2.96 1.76 0.02 0.34 +courtières courtier NOM f p 2.96 1.76 0.00 0.07 +courtois courtois ADJ m 1.97 9.73 1.58 7.03 +courtoise courtois ADJ f s 1.97 9.73 0.28 2.23 +courtoisement courtoisement ADV 0.27 1.96 0.27 1.96 +courtoises courtois ADJ f p 1.97 9.73 0.11 0.47 +courtoisie courtoisie NOM f s 4.59 8.18 4.42 8.04 +courtoisies courtoisie NOM f p 4.59 8.18 0.16 0.14 +court_circuit court_circuit NOM m p 1.53 1.76 0.07 0.20 +courts court ADJ m p 41.15 108.99 6.03 16.22 +couru courir VER m s 146.50 263.38 12.76 16.42 par:pas; +courue courir VER f s 146.50 263.38 0.11 0.14 par:pas; +courues courir VER f p 146.50 263.38 0.00 0.14 par:pas; +coururent courir VER 146.50 263.38 0.49 3.78 ind:pas:3p; +courus courir VER m p 146.50 263.38 0.23 4.73 ind:pas:1s;par:pas; +courussent courir VER 146.50 263.38 0.00 0.07 sub:imp:3p; +courut courir VER 146.50 263.38 1.65 22.64 ind:pas:3s; +cous_de_pied cous_de_pied NOM m p 0.00 0.07 0.00 0.07 +cous cou NOM m p 44.09 115.34 0.38 2.64 +cousaient coudre VER 8.88 20.74 0.01 0.20 ind:imp:3p; +cousait coudre VER 8.88 20.74 0.16 2.36 ind:imp:3s; +cousant coudre VER 8.88 20.74 0.03 0.88 par:pre; +couscous couscous NOM m 1.05 3.24 1.05 3.24 +couscoussier couscoussier NOM m s 0.15 0.34 0.15 0.27 +couscoussiers couscoussier NOM m p 0.15 0.34 0.00 0.07 +couse coudre VER 8.88 20.74 0.06 0.07 sub:pre:1s;sub:pre:3s; +cousent coudre VER 8.88 20.74 0.07 0.14 ind:pre:3p; +cousette cousette NOM f s 0.01 0.68 0.00 0.14 +cousettes cousette NOM f p 0.01 0.68 0.01 0.54 +couseuse couseur NOM f s 0.01 0.00 0.01 0.00 +cousez coudre VER 8.88 20.74 0.17 0.00 imp:pre:2p;ind:pre:2p; +cousiez coudre VER 8.88 20.74 0.00 0.07 ind:imp:2p; +cousin cousin NOM m s 73.87 89.93 37.31 39.05 +cousinage cousinage NOM m s 0.00 0.88 0.00 0.47 +cousinages cousinage NOM m p 0.00 0.88 0.00 0.41 +cousinant cousiner VER 0.00 0.14 0.00 0.14 par:pre; +cousine cousin NOM f s 73.87 89.93 23.72 25.14 +cousines cousin NOM f p 73.87 89.93 2.18 5.14 +cousins cousin NOM m p 73.87 89.93 10.66 20.61 +cousirent coudre VER 8.88 20.74 0.00 0.07 ind:pas:3p; +cousissent coudre VER 8.88 20.74 0.00 0.07 sub:imp:3p; +cousit coudre VER 8.88 20.74 0.00 0.14 ind:pas:3s; +coussin coussin NOM m s 4.41 22.70 2.44 8.45 +coussinet coussinet NOM m s 0.07 0.88 0.04 0.47 +coussinets coussinet NOM m p 0.07 0.88 0.02 0.41 +coussins coussin NOM m p 4.41 22.70 1.98 14.26 +cousu coudre VER m s 8.88 20.74 1.18 2.97 par:pas; +cousue cousu ADJ f s 1.86 2.50 1.50 0.88 +cousues coudre VER f p 8.88 20.74 0.25 0.95 par:pas; +cousus coudre VER m p 8.88 20.74 0.43 1.69 par:pas; +couteau_scie couteau_scie NOM m s 0.01 0.07 0.01 0.07 +couteau couteau NOM m s 58.15 52.64 51.08 44.26 +couteaux couteau NOM m p 58.15 52.64 7.08 8.38 +coutelas coutelas NOM m 0.02 1.22 0.02 1.22 +coutelier coutelier NOM m s 0.02 0.20 0.02 0.20 +coutellerie coutellerie NOM f s 0.01 0.20 0.01 0.14 +coutelleries coutellerie NOM f p 0.01 0.20 0.00 0.07 +coutil coutil NOM m s 0.00 1.28 0.00 1.28 +coutume coutume NOM f s 10.46 25.14 7.27 17.03 +coutumes coutume NOM f p 10.46 25.14 3.19 8.11 +coutumier coutumier ADJ m s 0.85 6.15 0.63 2.36 +coutumiers coutumier ADJ m p 0.85 6.15 0.00 0.88 +coutumière coutumier ADJ f s 0.85 6.15 0.20 2.57 +coutumièrement coutumièrement ADV 0.00 0.07 0.00 0.07 +coutumières coutumier ADJ f p 0.85 6.15 0.02 0.34 +couturaient couturer VER 0.10 1.28 0.00 0.14 ind:imp:3p; +couture couture NOM f s 5.52 10.54 4.31 8.45 +coutures couture NOM f p 5.52 10.54 1.21 2.09 +couturier couturier NOM m s 3.15 10.27 0.56 2.43 +couturiers couturier NOM m p 3.15 10.27 0.15 1.28 +couturière couturier NOM f s 3.15 10.27 2.45 5.81 +couturières couturière NOM f p 0.36 0.00 0.36 0.00 +couturé couturer VER m s 0.10 1.28 0.00 0.47 par:pas; +couturée couturer VER f s 0.10 1.28 0.10 0.41 par:pas; +couturées couturer VER f p 0.10 1.28 0.00 0.14 par:pas; +couturés couturer VER m p 0.10 1.28 0.00 0.14 par:pas; +couvade couvade NOM f s 0.01 0.00 0.01 0.00 +couvaient couver VER 3.59 12.03 0.14 0.54 ind:imp:3p; +couvais couver VER 3.59 12.03 0.01 0.14 ind:imp:1s; +couvaison couvaison NOM f s 0.00 0.20 0.00 0.14 +couvaisons couvaison NOM f p 0.00 0.20 0.00 0.07 +couvait couver VER 3.59 12.03 0.25 3.58 ind:imp:3s; +couvant couver VER 3.59 12.03 0.02 0.54 par:pre; +couve couver VER 3.59 12.03 1.54 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +couvent couvent NOM m s 16.83 26.15 16.09 22.50 +couventine couventine NOM f s 0.00 0.41 0.00 0.20 +couventines couventine NOM f p 0.00 0.41 0.00 0.20 +couvents couvent NOM m p 16.83 26.15 0.74 3.65 +couver couver VER 3.59 12.03 0.75 1.62 inf; +couvercle couvercle NOM m s 2.71 22.09 2.56 20.61 +couvercles couvercle NOM m p 2.71 22.09 0.16 1.49 +couveront couver VER 3.59 12.03 0.01 0.07 ind:fut:3p; +couvert couvrir VER m s 88.29 133.51 14.62 26.89 par:pas; +couverte couvrir VER f s 88.29 133.51 4.77 18.31 par:pas; +couvertes couvrir VER f p 88.29 133.51 1.77 10.27 par:pas; +couverts couvrir VER m p 88.29 133.51 2.92 11.82 par:pas; +couverture couverture NOM f s 34.39 62.03 26.50 41.01 +couvertures couverture NOM f p 34.39 62.03 7.89 21.01 +couves couver VER 3.59 12.03 0.23 0.27 ind:pre:2s; +couvet couvet NOM m s 0.00 0.14 0.00 0.14 +couveuse couveuse NOM f s 0.51 0.95 0.51 0.74 +couveuses couveuse NOM f p 0.51 0.95 0.00 0.20 +couvez couver VER 3.59 12.03 0.09 0.07 imp:pre:2p;ind:pre:2p; +couvis couvi ADJ m p 0.00 0.07 0.00 0.07 +couvrît couvrir VER 88.29 133.51 0.00 0.07 sub:imp:3s; +couvraient couvrir VER 88.29 133.51 0.45 4.26 ind:imp:3p; +couvrais couvrir VER 88.29 133.51 0.76 0.54 ind:imp:1s;ind:imp:2s; +couvrait couvrir VER 88.29 133.51 1.35 15.27 ind:imp:3s; +couvrant couvrir VER 88.29 133.51 0.85 4.26 par:pre; +couvrante couvrant ADJ f s 0.18 2.64 0.01 1.49 +couvrantes couvrant ADJ f p 0.18 2.64 0.00 0.88 +couvre_chef couvre_chef NOM m s 0.58 1.55 0.42 1.35 +couvre_chef couvre_chef NOM m p 0.58 1.55 0.16 0.20 +couvre_feu couvre_feu NOM m s 3.63 3.11 3.63 3.11 +couvre_feux couvre_feux NOM m p 0.04 0.00 0.04 0.00 +couvre_lit couvre_lit NOM m s 0.33 2.77 0.30 2.70 +couvre_lit couvre_lit NOM m p 0.33 2.77 0.03 0.07 +couvre_pied couvre_pied NOM m s 0.01 0.47 0.01 0.47 +couvre_pieds couvre_pieds NOM m 0.01 0.47 0.01 0.47 +couvre couvrir VER 88.29 133.51 23.58 11.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +couvrent couvrir VER 88.29 133.51 1.96 3.65 ind:pre:3p; +couvres couvrir VER 88.29 133.51 2.54 0.27 ind:pre:2s;sub:pre:2s; +couvreur couvreur NOM m s 0.41 1.01 0.37 0.74 +couvreurs couvreur NOM m p 0.41 1.01 0.04 0.27 +couvrez couvrir VER 88.29 133.51 8.41 0.47 imp:pre:2p;ind:pre:2p; +couvriez couvrir VER 88.29 133.51 0.09 0.00 ind:imp:2p; +couvrir couvrir VER 88.29 133.51 19.57 16.82 inf; +couvrira couvrir VER 88.29 133.51 1.72 0.41 ind:fut:3s; +couvrirai couvrir VER 88.29 133.51 1.03 0.07 ind:fut:1s; +couvriraient couvrir VER 88.29 133.51 0.06 0.41 cnd:pre:3p; +couvrirais couvrir VER 88.29 133.51 0.29 0.00 cnd:pre:1s;cnd:pre:2s; +couvrirait couvrir VER 88.29 133.51 0.15 0.68 cnd:pre:3s; +couvriras couvrir VER 88.29 133.51 0.07 0.20 ind:fut:2s; +couvrirent couvrir VER 88.29 133.51 0.00 1.15 ind:pas:3p; +couvrirez couvrir VER 88.29 133.51 0.27 0.14 ind:fut:2p; +couvrirons couvrir VER 88.29 133.51 0.10 0.00 ind:fut:1p; +couvriront couvrir VER 88.29 133.51 0.27 0.07 ind:fut:3p; +couvris couvrir VER 88.29 133.51 0.00 0.61 ind:pas:1s; +couvrit couvrir VER 88.29 133.51 0.20 5.61 ind:pas:3s; +couvrons couvrir VER 88.29 133.51 0.48 0.07 imp:pre:1p;ind:pre:1p; +couvé couver VER m s 3.59 12.03 0.17 1.82 par:pas; +couvée couvée NOM f s 0.20 1.42 0.19 1.15 +couvées couvée NOM f p 0.20 1.42 0.01 0.27 +couvés couver VER m p 3.59 12.03 0.01 0.68 par:pas; +covalent covalent ADJ m s 0.03 0.00 0.01 0.00 +covalente covalent ADJ f s 0.03 0.00 0.01 0.00 +covenant covenant NOM m s 0.05 0.00 0.05 0.00 +cover_girl cover_girl NOM f s 0.14 0.47 0.14 0.20 +cover_girl cover_girl NOM f p 0.14 0.47 0.00 0.27 +covoiturage covoiturage NOM m s 0.07 0.00 0.07 0.00 +cow_boy cow_boy NOM m s 0.01 5.27 0.00 3.11 +cow_boy cow_boy NOM m p 0.01 5.27 0.01 2.16 +coxalgie coxalgie NOM f s 0.00 0.07 0.00 0.07 +coxalgique coxalgique ADJ s 0.00 0.07 0.00 0.07 +coyote coyote NOM m s 4.01 0.47 2.50 0.34 +coyotes coyote NOM m p 4.01 0.47 1.52 0.14 +crû croître VER m s 4.79 10.34 0.93 0.41 par:pas; +crûment crûment ADV 0.54 1.89 0.54 1.89 +crûmes croire VER 1711.99 947.23 0.00 0.54 ind:pas:1p; +crût croire VER 1711.99 947.23 0.05 0.68 sub:imp:3s; +crabe crabe NOM m s 8.14 12.36 4.90 7.30 +crabes crabe NOM m p 8.14 12.36 3.24 5.07 +crabillon crabillon NOM m s 0.00 0.20 0.00 0.07 +crabillons crabillon NOM m p 0.00 0.20 0.00 0.14 +crabs crabs NOM m p 0.41 0.00 0.41 0.00 +crac crac NOM m s 2.85 6.01 2.85 6.01 +cracha cracher VER 27.93 45.81 0.16 5.20 ind:pas:3s; +crachai cracher VER 27.93 45.81 0.00 0.20 ind:pas:1s; +crachaient cracher VER 27.93 45.81 0.03 1.76 ind:imp:3p; +crachais cracher VER 27.93 45.81 0.13 0.68 ind:imp:1s;ind:imp:2s; +crachait cracher VER 27.93 45.81 0.87 4.66 ind:imp:3s; +crachant cracher VER 27.93 45.81 0.36 4.32 par:pre; +crachat crachat NOM m s 1.34 3.72 1.08 1.62 +crachats crachat NOM m p 1.34 3.72 0.26 2.09 +crache cracher VER 27.93 45.81 10.28 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crachement crachement NOM m s 0.00 0.68 0.00 0.54 +crachements crachement NOM m p 0.00 0.68 0.00 0.14 +crachent cracher VER 27.93 45.81 0.93 1.42 ind:pre:3p; +cracher cracher VER 27.93 45.81 6.86 10.34 inf; +crachera cracher VER 27.93 45.81 0.30 0.14 ind:fut:3s; +cracherai cracher VER 27.93 45.81 0.21 0.34 ind:fut:1s; +cracherais cracher VER 27.93 45.81 0.64 0.14 cnd:pre:1s;cnd:pre:2s; +cracherait cracher VER 27.93 45.81 0.18 0.20 cnd:pre:3s; +cracheriez cracher VER 27.93 45.81 0.01 0.00 cnd:pre:2p; +cracheront cracher VER 27.93 45.81 0.04 0.14 ind:fut:3p; +craches cracher VER 27.93 45.81 1.41 0.41 ind:pre:2s;sub:pre:2s; +cracheur cracheur NOM m s 0.32 1.08 0.28 0.88 +cracheurs cracheur NOM m p 0.32 1.08 0.01 0.14 +cracheuse cracheur NOM f s 0.32 1.08 0.03 0.07 +cracheuses cracheuse NOM f p 0.01 0.00 0.01 0.00 +crachez cracher VER 27.93 45.81 0.91 0.14 imp:pre:2p;ind:pre:2p; +crachin crachin NOM m s 0.03 2.03 0.03 1.89 +crachine crachiner VER 0.00 0.20 0.00 0.07 ind:pre:3s; +crachiner crachiner VER 0.00 0.20 0.00 0.14 inf; +crachins crachin NOM m p 0.03 2.03 0.00 0.14 +crachoir crachoir NOM m s 0.56 0.61 0.32 0.47 +crachoirs crachoir NOM m p 0.56 0.61 0.24 0.14 +crachons cracher VER 27.93 45.81 0.14 0.07 imp:pre:1p;ind:pre:1p; +crachota crachoter VER 0.02 2.30 0.01 0.14 ind:pas:3s; +crachotaient crachoter VER 0.02 2.30 0.00 0.07 ind:imp:3p; +crachotait crachoter VER 0.02 2.30 0.00 0.41 ind:imp:3s; +crachotant crachoter VER 0.02 2.30 0.00 0.47 par:pre; +crachotantes crachotant ADJ f p 0.00 0.41 0.00 0.07 +crachotants crachotant ADJ m p 0.00 0.41 0.00 0.07 +crachote crachoter VER 0.02 2.30 0.01 0.41 ind:pre:3s; +crachotement crachotement NOM m s 0.00 0.27 0.00 0.14 +crachotements crachotement NOM m p 0.00 0.27 0.00 0.14 +crachotent crachoter VER 0.02 2.30 0.00 0.14 ind:pre:3p; +crachoter crachoter VER 0.02 2.30 0.00 0.54 inf; +crachoteuse crachoteux ADJ f s 0.00 0.20 0.00 0.14 +crachoteux crachoteux ADJ m 0.00 0.20 0.00 0.07 +crachoté crachoter VER m s 0.02 2.30 0.00 0.14 par:pas; +crachouilla crachouiller VER 0.00 0.34 0.00 0.14 ind:pas:3s; +crachouille crachouiller VER 0.00 0.34 0.00 0.20 ind:pre:3s; +crachouillis crachouillis NOM m 0.01 0.14 0.01 0.14 +crachèrent cracher VER 27.93 45.81 0.00 0.27 ind:pas:3p; +craché cracher VER m s 27.93 45.81 4.26 4.53 par:pas; +crachée craché ADJ f s 3.24 1.62 0.19 0.27 +crachées cracher VER f p 27.93 45.81 0.01 0.07 par:pas; +crachés cracher VER m p 27.93 45.81 0.01 0.20 par:pas; +crack crack NOM m s 7.77 0.88 7.30 0.68 +cracker cracker NOM m s 2.22 0.27 0.72 0.00 +crackers cracker NOM m p 2.22 0.27 1.50 0.27 +cracking cracking NOM m s 0.01 0.00 0.01 0.00 +cracks crack NOM m p 7.77 0.88 0.47 0.20 +cracra cracra ADJ f s 0.04 0.54 0.04 0.54 +crade crade ADJ s 1.31 1.55 1.19 1.35 +crades crade ADJ p 1.31 1.55 0.12 0.20 +cradingue cradingue ADJ s 0.12 1.42 0.12 1.01 +cradingues cradingue ADJ p 0.12 1.42 0.00 0.41 +crado crado ADJ s 0.23 1.22 0.17 0.95 +cradoque cradoque ADJ f s 0.01 0.00 0.01 0.00 +crados crado ADJ p 0.23 1.22 0.06 0.27 +craie craie NOM f s 5.80 10.68 5.66 10.20 +craies craie NOM f p 5.80 10.68 0.14 0.47 +craignît craindre VER 117.44 108.31 0.00 0.20 sub:imp:3s; +craignaient craindre VER 117.44 108.31 0.82 2.91 ind:imp:3p; +craignais craindre VER 117.44 108.31 5.34 8.31 ind:imp:1s;ind:imp:2s; +craignait craindre VER 117.44 108.31 3.42 20.14 ind:imp:3s; +craignant craindre VER 117.44 108.31 1.35 7.97 par:pre; +craigne craindre VER 117.44 108.31 0.49 0.41 sub:pre:1s;sub:pre:3s; +craignent craindre VER 117.44 108.31 3.75 2.36 ind:pre:3p; +craignes craindre VER 117.44 108.31 0.14 0.00 sub:pre:2s; +craignez craindre VER 117.44 108.31 9.27 3.38 imp:pre:2p;ind:pre:2p; +craigniez craindre VER 117.44 108.31 0.38 0.20 ind:imp:2p; +craignions craindre VER 117.44 108.31 0.22 0.20 ind:imp:1p; +craignirent craindre VER 117.44 108.31 0.00 0.07 ind:pas:3p; +craignis craindre VER 117.44 108.31 0.14 0.54 ind:pas:1s; +craignissent craindre VER 117.44 108.31 0.00 0.07 sub:imp:3p; +craignit craindre VER 117.44 108.31 0.01 1.82 ind:pas:3s; +craignons craindre VER 117.44 108.31 1.32 1.08 imp:pre:1p;ind:pre:1p; +craignos craignos ADJ 1.02 0.74 1.02 0.74 +craillaient crailler VER 0.00 0.14 0.00 0.07 ind:imp:3p; +craillent crailler VER 0.00 0.14 0.00 0.07 ind:pre:3p; +craindra craindre VER 117.44 108.31 0.22 0.07 ind:fut:3s; +craindrai craindre VER 117.44 108.31 0.08 0.00 ind:fut:1s; +craindraient craindre VER 117.44 108.31 0.04 0.07 cnd:pre:3p; +craindrais craindre VER 117.44 108.31 0.19 0.20 cnd:pre:1s;cnd:pre:2s; +craindrait craindre VER 117.44 108.31 0.10 0.34 cnd:pre:3s; +craindras craindre VER 117.44 108.31 0.03 0.00 ind:fut:2s; +craindre craindre VER 117.44 108.31 18.73 19.73 inf; +craindriez craindre VER 117.44 108.31 0.16 0.00 cnd:pre:2p; +craindrons craindre VER 117.44 108.31 0.01 0.00 ind:fut:1p; +craindront craindre VER 117.44 108.31 0.02 0.07 ind:fut:3p; +crains craindre VER 117.44 108.31 40.76 17.64 imp:pre:2s;ind:pre:1s;ind:pre:2s; +craint craindre VER m s 117.44 108.31 23.43 15.54 ind:pre:3s;par:pas; +crainte crainte NOM f s 14.54 52.64 11.39 45.61 +craintes crainte NOM f p 14.54 52.64 3.15 7.03 +craintif craintif ADJ m s 1.38 8.31 0.97 3.92 +craintifs craintif ADJ m p 1.38 8.31 0.19 1.49 +craintive craintif ADJ f s 1.38 8.31 0.22 2.23 +craintivement craintivement ADV 0.00 1.15 0.00 1.15 +craintives craintif ADJ f p 1.38 8.31 0.00 0.68 +craints craindre VER m p 117.44 108.31 0.25 0.14 par:pas; +crama cramer VER 4.59 2.97 0.00 0.07 ind:pas:3s; +cramaient cramer VER 4.59 2.97 0.00 0.07 ind:imp:3p; +cramait cramer VER 4.59 2.97 0.01 0.14 ind:imp:3s; +cramant cramer VER 4.59 2.97 0.00 0.07 par:pre; +crame cramer VER 4.59 2.97 1.17 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crament cramer VER 4.59 2.97 0.05 0.07 ind:pre:3p; +cramer cramer VER 4.59 2.97 1.47 0.81 inf; +crameraient cramer VER 4.59 2.97 0.01 0.00 cnd:pre:3p; +cramerais cramer VER 4.59 2.97 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +crameras cramer VER 4.59 2.97 0.01 0.00 ind:fut:2s; +cramez cramer VER 4.59 2.97 0.16 0.00 imp:pre:2p;ind:pre:2p; +cramoisi cramoisi ADJ m s 0.25 4.26 0.13 2.70 +cramoisie cramoisi ADJ f s 0.25 4.26 0.10 0.47 +cramoisies cramoisi ADJ f p 0.25 4.26 0.00 0.47 +cramoisis cramoisi ADJ m p 0.25 4.26 0.02 0.61 +cramouille cramouille NOM f s 0.06 0.47 0.05 0.34 +cramouilles cramouille NOM f p 0.06 0.47 0.01 0.14 +crampe crampe NOM f s 5.18 6.01 2.62 2.84 +crampes crampe NOM f p 5.18 6.01 2.57 3.18 +crampette crampette NOM f s 0.00 0.14 0.00 0.07 +crampettes crampette NOM f p 0.00 0.14 0.00 0.07 +crampon crampon NOM m s 1.49 1.15 0.98 0.20 +cramponna cramponner VER 1.67 13.45 0.00 0.54 ind:pas:3s; +cramponnaient cramponner VER 1.67 13.45 0.00 0.14 ind:imp:3p; +cramponnais cramponner VER 1.67 13.45 0.14 0.41 ind:imp:1s;ind:imp:2s; +cramponnait cramponner VER 1.67 13.45 0.02 1.49 ind:imp:3s; +cramponnant cramponner VER 1.67 13.45 0.00 1.08 par:pre; +cramponne cramponner VER 1.67 13.45 0.49 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cramponnent cramponner VER 1.67 13.45 0.00 0.27 ind:pre:3p; +cramponner cramponner VER 1.67 13.45 0.09 1.35 inf; +cramponneront cramponner VER 1.67 13.45 0.02 0.00 ind:fut:3p; +cramponnez cramponner VER 1.67 13.45 0.55 0.14 imp:pre:2p;ind:pre:2p; +cramponniez cramponner VER 1.67 13.45 0.01 0.07 ind:imp:2p; +cramponnons cramponner VER 1.67 13.45 0.01 0.14 imp:pre:1p;ind:pre:1p; +cramponné cramponner VER m s 1.67 13.45 0.16 2.50 par:pas; +cramponnée cramponner VER f s 1.67 13.45 0.14 1.62 par:pas; +cramponnées cramponner VER f p 1.67 13.45 0.00 0.41 par:pas; +cramponnés cramponner VER m p 1.67 13.45 0.03 1.35 par:pas; +crampons crampon NOM m p 1.49 1.15 0.51 0.95 +cramé cramer VER m s 4.59 2.97 1.50 0.88 par:pas; +cramée cramer VER f s 4.59 2.97 0.06 0.07 par:pas; +cramées cramer VER f p 4.59 2.97 0.00 0.07 par:pas; +cramés cramer VER m p 4.59 2.97 0.14 0.07 par:pas; +cran cran NOM m s 13.97 8.11 13.61 6.96 +crane crane NOM m s 0.96 0.00 0.96 0.00 +craniométrie craniométrie NOM f s 0.03 0.00 0.03 0.00 +craniotomie craniotomie NOM f s 0.03 0.00 0.03 0.00 +crans cran NOM m p 13.97 8.11 0.36 1.15 +cranter cranter VER 0.08 0.34 0.05 0.14 inf; +cranté cranter VER m s 0.08 0.34 0.01 0.14 par:pas; +crantées cranter VER f p 0.08 0.34 0.01 0.00 par:pas; +crantés cranter VER m p 0.08 0.34 0.01 0.07 par:pas; +craonnais craonnais ADJ m 0.00 0.61 0.00 0.27 +craonnaise craonnais ADJ f s 0.00 0.61 0.00 0.07 +craonnaises craonnais ADJ f p 0.00 0.61 0.00 0.27 +crapahutait crapahuter VER 0.25 0.47 0.00 0.07 ind:imp:3s; +crapahutant crapahuter VER 0.25 0.47 0.00 0.07 par:pre; +crapahute crapahuter VER 0.25 0.47 0.01 0.07 ind:pre:1s;ind:pre:3s; +crapahuter crapahuter VER 0.25 0.47 0.19 0.14 inf; +crapahutons crapahuter VER 0.25 0.47 0.00 0.07 ind:pre:1p; +crapahuté crapahuter VER m s 0.25 0.47 0.05 0.07 par:pas; +crapaud_buffle crapaud_buffle NOM m s 0.01 0.14 0.01 0.00 +crapaud crapaud NOM m s 11.30 9.19 9.60 6.08 +crapaud_buffle crapaud_buffle NOM m p 0.01 0.14 0.00 0.14 +crapauds crapaud NOM m p 11.30 9.19 1.70 3.11 +crapoter crapoter VER 0.01 0.00 0.01 0.00 inf; +crapoteuse crapoteux ADJ f s 0.01 0.41 0.00 0.20 +crapoteuses crapoteux ADJ f p 0.01 0.41 0.00 0.07 +crapoteux crapoteux ADJ m 0.01 0.41 0.01 0.14 +crapouillot crapouillot NOM m s 0.01 0.20 0.01 0.07 +crapouillots crapouillot NOM m p 0.01 0.20 0.00 0.14 +craps craps NOM m p 0.73 0.07 0.73 0.07 +crapule crapule NOM f s 7.09 3.45 4.43 2.50 +crapulerie crapulerie NOM f s 0.01 0.27 0.01 0.27 +crapules crapule NOM f p 7.09 3.45 2.66 0.95 +crapuleuse crapuleux ADJ f s 0.36 2.36 0.03 0.95 +crapuleusement crapuleusement ADV 0.00 0.14 0.00 0.14 +crapuleuses crapuleux ADJ f p 0.36 2.36 0.00 0.20 +crapuleux crapuleux ADJ m 0.36 2.36 0.33 1.22 +craqua craquer VER 21.23 37.16 0.01 1.69 ind:pas:3s; +craquage craquage NOM m s 0.04 0.00 0.04 0.00 +craquaient craquer VER 21.23 37.16 0.06 1.96 ind:imp:3p; +craquais craquer VER 21.23 37.16 0.19 0.00 ind:imp:1s;ind:imp:2s; +craquait craquer VER 21.23 37.16 0.23 4.32 ind:imp:3s; +craquant craquant ADJ m s 1.75 3.45 0.90 1.42 +craquante craquant ADJ f s 1.75 3.45 0.66 0.88 +craquantes craquant ADJ f p 1.75 3.45 0.05 0.74 +craquants craquant ADJ m p 1.75 3.45 0.14 0.41 +craque craquer VER 21.23 37.16 4.40 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +craquela craqueler VER 0.05 2.36 0.00 0.07 ind:pas:3s; +craquelaient craqueler VER 0.05 2.36 0.00 0.07 ind:imp:3p; +craquelait craqueler VER 0.05 2.36 0.00 0.27 ind:imp:3s; +craquelant craqueler VER 0.05 2.36 0.00 0.20 par:pre; +craqueler craqueler VER 0.05 2.36 0.02 0.34 inf; +craquelin craquelin NOM m s 1.01 0.07 0.40 0.00 +craquelins craquelin NOM m p 1.01 0.07 0.61 0.07 +craquelle craqueler VER 0.05 2.36 0.01 0.14 ind:pre:3s; +craquellent craqueler VER 0.05 2.36 0.00 0.20 ind:pre:3p; +craquelèrent craqueler VER 0.05 2.36 0.00 0.07 ind:pas:3p; +craquelé craquelé ADJ m s 0.12 2.57 0.11 0.47 +craquelée craquelé ADJ f s 0.12 2.57 0.01 0.74 +craquelées craquelé ADJ f p 0.12 2.57 0.00 0.88 +craquelure craquelure NOM f s 0.14 1.15 0.14 0.27 +craquelures craquelure NOM f p 0.14 1.15 0.00 0.88 +craquelés craquelé ADJ m p 0.12 2.57 0.00 0.47 +craquement craquement NOM m s 2.48 13.45 1.17 7.36 +craquements craquement NOM m p 2.48 13.45 1.31 6.08 +craquent craquer VER 21.23 37.16 0.79 2.03 ind:pre:3p; +craquer craquer VER 21.23 37.16 8.52 15.74 inf; +craquera craquer VER 21.23 37.16 0.79 0.07 ind:fut:3s; +craqueraient craquer VER 21.23 37.16 0.01 0.07 cnd:pre:3p; +craquerait craquer VER 21.23 37.16 0.13 0.14 cnd:pre:3s; +craqueras craquer VER 21.23 37.16 0.04 0.07 ind:fut:2s; +craqueront craquer VER 21.23 37.16 0.16 0.14 ind:fut:3p; +craques craquer VER 21.23 37.16 1.07 0.14 ind:pre:2s; +craquette craqueter VER 0.02 0.07 0.02 0.07 ind:pre:3s; +craquez craquer VER 21.23 37.16 0.15 0.07 imp:pre:2p;ind:pre:2p; +craquiez craquer VER 21.23 37.16 0.12 0.00 ind:imp:2p; +craquèlement craquèlement NOM m s 0.00 0.14 0.00 0.14 +craquèrent craquer VER 21.23 37.16 0.00 0.47 ind:pas:3p; +craqué craquer VER m s 21.23 37.16 4.39 3.04 par:pas; +craquée craquer VER f s 21.23 37.16 0.17 0.00 par:pas; +craquées craquer VER f p 21.23 37.16 0.00 0.07 par:pas; +crase crase NOM f s 0.01 0.00 0.01 0.00 +crash_test crash_test NOM m s 0.02 0.00 0.02 0.00 +crash crash NOM m s 6.68 0.07 6.68 0.07 +crashe crasher VER 1.52 0.00 0.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crasher crasher VER 1.52 0.00 0.36 0.00 inf; +crashes crashe NOM m p 0.02 0.00 0.02 0.00 +crashé crasher VER m s 1.52 0.00 0.97 0.00 par:pas; +crashée crasher VER f s 1.52 0.00 0.06 0.00 par:pas; +craspec craspec ADJ m s 0.00 0.07 0.00 0.07 +crasse crasse NOM f s 3.29 13.45 3.16 13.11 +crasses crasse NOM f p 3.29 13.45 0.14 0.34 +crasseuse crasseux ADJ f s 2.08 11.01 0.27 2.64 +crasseuses crasseux ADJ f p 2.08 11.01 0.06 1.22 +crasseux crasseux ADJ m 2.08 11.01 1.75 7.16 +crassier crassier NOM m s 0.04 0.07 0.04 0.00 +crassiers crassier NOM m p 0.04 0.07 0.00 0.07 +crassula crassula NOM f s 0.00 0.14 0.00 0.14 +crataegus crataegus NOM m 0.00 0.07 0.00 0.07 +cratère cratère NOM m s 2.79 4.66 2.13 3.11 +cratères cratère NOM m p 2.79 4.66 0.66 1.55 +cravachais cravacher VER 0.37 0.88 0.00 0.07 ind:imp:1s; +cravachait cravacher VER 0.37 0.88 0.10 0.20 ind:imp:3s; +cravachant cravacher VER 0.37 0.88 0.00 0.14 par:pre; +cravache cravache NOM f s 0.58 3.72 0.56 3.58 +cravacher cravacher VER 0.37 0.88 0.16 0.34 inf; +cravaches cravache NOM f p 0.58 3.72 0.02 0.14 +cravaché cravacher VER m s 0.37 0.88 0.04 0.00 par:pas; +cravachées cravacher VER f p 0.37 0.88 0.00 0.07 par:pas; +cravant cravant NOM m s 0.00 0.27 0.00 0.07 +cravants cravant NOM m p 0.00 0.27 0.00 0.20 +cravatage cravatage NOM m s 0.00 0.07 0.00 0.07 +cravatait cravater VER 0.21 3.31 0.00 0.14 ind:imp:3s; +cravate cravate NOM f s 17.92 34.12 15.99 27.70 +cravater cravater VER 0.21 3.31 0.03 0.54 inf; +cravates cravate NOM f p 17.92 34.12 1.93 6.42 +cravateur cravateur NOM m s 0.00 0.14 0.00 0.14 +cravatière cravatier NOM f s 0.00 0.07 0.00 0.07 +cravaté cravater VER m s 0.21 3.31 0.06 1.01 par:pas; +cravatée cravater VER f s 0.21 3.31 0.00 0.14 par:pas; +cravatées cravater VER f p 0.21 3.31 0.00 0.14 par:pas; +cravatés cravater VER m p 0.21 3.31 0.03 0.74 par:pas; +crawl crawl NOM m s 0.00 0.74 0.00 0.74 +crawlait crawler VER 0.00 0.20 0.00 0.07 ind:imp:3s; +crawlant crawler VER 0.00 0.20 0.00 0.14 par:pre; +crawlé crawlé ADJ m s 0.00 0.07 0.00 0.07 +crayeuse crayeux ADJ f s 0.03 1.96 0.00 0.61 +crayeuses crayeux ADJ f p 0.03 1.96 0.01 0.34 +crayeux crayeux ADJ m 0.03 1.96 0.01 1.01 +crayon_encre crayon_encre NOM m s 0.00 0.27 0.00 0.27 +crayon crayon NOM m s 10.97 30.47 8.08 25.47 +crayonna crayonner VER 0.14 1.82 0.00 0.07 ind:pas:3s; +crayonnage crayonnage NOM m s 0.00 0.14 0.00 0.07 +crayonnages crayonnage NOM m p 0.00 0.14 0.00 0.07 +crayonnait crayonner VER 0.14 1.82 0.03 0.54 ind:imp:3s; +crayonnant crayonner VER 0.14 1.82 0.00 0.34 par:pre; +crayonne crayonner VER 0.14 1.82 0.11 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crayonner crayonner VER 0.14 1.82 0.00 0.27 inf; +crayonneur crayonneur NOM m s 0.00 0.14 0.00 0.07 +crayonneurs crayonneur NOM m p 0.00 0.14 0.00 0.07 +crayonnez crayonner VER 0.14 1.82 0.00 0.07 ind:pre:2p; +crayonné crayonner VER m s 0.14 1.82 0.00 0.14 par:pas; +crayonnées crayonner VER f p 0.14 1.82 0.00 0.14 par:pas; +crayonnés crayonner VER m p 0.14 1.82 0.00 0.07 par:pas; +crayon_feutre crayon_feutre NOM m p 0.00 0.14 0.00 0.14 +crayons crayon NOM m p 10.97 30.47 2.88 5.00 +credo credo NOM m 0.78 2.84 0.78 2.84 +creek creek NOM m s 0.78 0.34 0.77 0.27 +creeks creek NOM m p 0.78 0.34 0.01 0.07 +crematorium crematorium NOM m s 0.22 0.00 0.22 0.00 +crescendo crescendo ADV 0.46 0.61 0.46 0.61 +cresson cresson NOM m s 0.24 1.01 0.24 0.95 +cressonnette cressonnette NOM f s 0.00 0.07 0.00 0.07 +cressonnière cressonnière NOM f s 0.00 0.14 0.00 0.07 +cressonnières cressonnière NOM f p 0.00 0.14 0.00 0.07 +cressons cresson NOM m p 0.24 1.01 0.00 0.07 +creton creton NOM m s 0.01 1.69 0.01 0.00 +cretonne creton NOM f s 0.01 1.69 0.00 1.55 +cretonnes creton NOM f p 0.01 1.69 0.00 0.07 +cretons creton NOM m p 0.01 1.69 0.00 0.07 +creusa creuser VER 25.11 64.19 0.26 1.96 ind:pas:3s; +creusai creuser VER 25.11 64.19 0.01 0.07 ind:pas:1s; +creusaient creuser VER 25.11 64.19 0.24 3.24 ind:imp:3p; +creusais creuser VER 25.11 64.19 0.36 0.81 ind:imp:1s;ind:imp:2s; +creusait creuser VER 25.11 64.19 0.32 7.36 ind:imp:3s; +creusant creuser VER 25.11 64.19 0.50 3.45 par:pre; +creusas creuser VER 25.11 64.19 0.00 0.07 ind:pas:2s; +creusassent creuser VER 25.11 64.19 0.00 0.07 sub:imp:3p; +creuse creuser VER 25.11 64.19 3.67 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +creusement creusement NOM m s 0.00 0.41 0.00 0.34 +creusements creusement NOM m p 0.00 0.41 0.00 0.07 +creusent creuser VER 25.11 64.19 0.86 3.24 ind:pre:3p; +creuser creuser VER 25.11 64.19 10.34 11.82 inf; +creusera creuser VER 25.11 64.19 0.09 0.14 ind:fut:3s; +creuserai creuser VER 25.11 64.19 0.58 0.14 ind:fut:1s; +creuseraient creuser VER 25.11 64.19 0.01 0.14 cnd:pre:3p; +creuserais creuser VER 25.11 64.19 0.03 0.00 cnd:pre:1s; +creuserait creuser VER 25.11 64.19 0.09 0.14 cnd:pre:3s; +creuseras creuser VER 25.11 64.19 0.15 0.20 ind:fut:2s; +creuserez creuser VER 25.11 64.19 0.05 0.00 ind:fut:2p; +creuserons creuser VER 25.11 64.19 0.02 0.00 ind:fut:1p; +creuseront creuser VER 25.11 64.19 0.07 0.14 ind:fut:3p; +creuses creux ADJ f p 5.90 25.14 0.97 7.16 +creuset creuset NOM m s 0.21 1.15 0.21 1.08 +creusets creuset NOM m p 0.21 1.15 0.00 0.07 +creuseur creuseur NOM m s 0.01 0.07 0.01 0.07 +creusez creuser VER 25.11 64.19 1.88 0.54 imp:pre:2p;ind:pre:2p; +creusiez creuser VER 25.11 64.19 0.06 0.00 ind:imp:2p; +creusions creuser VER 25.11 64.19 0.01 0.07 ind:imp:1p; +creusons creuser VER 25.11 64.19 0.26 0.54 imp:pre:1p;ind:pre:1p; +creusèrent creuser VER 25.11 64.19 0.03 0.68 ind:pas:3p; +creusé creuser VER m s 25.11 64.19 3.35 11.01 par:pas; +creusée creuser VER f s 25.11 64.19 0.55 5.47 par:pas; +creusées creuser VER f p 25.11 64.19 0.36 3.92 par:pas; +creusés creuser VER m p 25.11 64.19 0.13 3.24 par:pas; +creux creux ADJ m 5.90 25.14 3.32 12.64 +creva crever VER 64.95 81.55 0.03 1.42 ind:pas:3s; +crevage crevage NOM m s 0.00 0.07 0.00 0.07 +crevaient crever VER 64.95 81.55 0.12 1.82 ind:imp:3p; +crevais crever VER 64.95 81.55 0.17 1.22 ind:imp:1s;ind:imp:2s; +crevaison crevaison NOM f s 0.63 0.20 0.60 0.14 +crevaisons crevaison NOM f p 0.63 0.20 0.03 0.07 +crevait crever VER 64.95 81.55 0.34 4.19 ind:imp:3s; +crevant crevant ADJ m s 1.03 0.74 0.74 0.61 +crevante crevant ADJ f s 1.03 0.74 0.29 0.07 +crevants crevant ADJ m p 1.03 0.74 0.00 0.07 +crevard crevard NOM m s 0.29 0.74 0.04 0.20 +crevarde crevard NOM f s 0.29 0.74 0.00 0.20 +crevards crevard NOM m p 0.29 0.74 0.26 0.34 +crevasse crevasse NOM f s 1.16 4.86 0.92 2.30 +crevassent crevasser VER 0.06 2.57 0.00 0.14 ind:pre:3p; +crevasser crevasser VER 0.06 2.57 0.00 0.14 inf; +crevasses crevasse NOM f p 1.16 4.86 0.24 2.57 +crevassé crevasser VER m s 0.06 2.57 0.01 0.41 par:pas; +crevassée crevasser VER f s 0.06 2.57 0.03 0.47 par:pas; +crevassées crevasser VER f p 0.06 2.57 0.01 0.88 par:pas; +crevassés crevasser VER m p 0.06 2.57 0.00 0.47 par:pas; +crever crever VER 64.95 81.55 25.27 29.05 ind:imp:3s;inf; +crevette crevette NOM f s 9.03 5.00 1.13 1.62 +crevettes crevette NOM f p 9.03 5.00 7.90 3.38 +crevettier crevettier NOM m s 0.16 0.00 0.12 0.00 +crevettiers crevettier NOM m p 0.16 0.00 0.04 0.00 +crevez crever VER 64.95 81.55 0.74 0.27 imp:pre:2p;ind:pre:2p; +creviez crever VER 64.95 81.55 0.04 0.07 ind:imp:2p; +crevions crever VER 64.95 81.55 0.00 0.07 ind:imp:1p; +crevons crever VER 64.95 81.55 0.27 0.07 imp:pre:1p;ind:pre:1p; +crevât crever VER 64.95 81.55 0.00 0.07 sub:imp:3s; +crevotant crevoter VER 0.00 0.07 0.00 0.07 par:pre; +crevèrent crever VER 64.95 81.55 0.00 0.34 ind:pas:3p; +crevé crever VER m s 64.95 81.55 9.34 8.65 par:pas; +crevée crever VER f s 64.95 81.55 5.10 4.12 par:pas; +crevées crever VER f p 64.95 81.55 0.47 1.22 par:pas; +crevure crevure NOM f s 0.52 0.34 0.47 0.34 +crevures crevure NOM f p 0.52 0.34 0.04 0.00 +crevés crever VER m p 64.95 81.55 1.84 6.96 par:pas; +cri cri NOM m s 45.58 155.41 18.79 71.55 +cria crier VER 116.93 239.73 1.20 55.74 ind:pas:3s; +criai crier VER 116.93 239.73 0.02 2.57 ind:pas:1s; +criaient crier VER 116.93 239.73 2.05 9.05 ind:imp:3p; +criaillaient criailler VER 0.23 0.88 0.10 0.14 ind:imp:3p; +criaillait criailler VER 0.23 0.88 0.00 0.14 ind:imp:3s; +criaillant criailler VER 0.23 0.88 0.00 0.27 par:pre; +criaillement criaillement NOM m s 0.00 0.07 0.00 0.07 +criaillent criailler VER 0.23 0.88 0.14 0.14 ind:pre:3p; +criailler criailler VER 0.23 0.88 0.00 0.20 inf; +criaillerie criaillerie NOM f s 0.00 1.69 0.00 0.20 +criailleries criaillerie NOM f p 0.00 1.69 0.00 1.49 +criais crier VER 116.93 239.73 1.89 2.09 ind:imp:1s;ind:imp:2s; +criait crier VER 116.93 239.73 6.37 26.35 ind:imp:3s; +criant crier VER 116.93 239.73 3.82 20.95 par:pre; +criante criant ADJ f s 0.38 3.51 0.06 0.68 +criantes criant ADJ f p 0.38 3.51 0.14 0.20 +criard criard ADJ m s 0.95 6.49 0.17 1.49 +criarde criard ADJ f s 0.95 6.49 0.31 1.69 +criardes criard ADJ f p 0.95 6.49 0.23 1.96 +criards criard ADJ m p 0.95 6.49 0.23 1.35 +crib crib NOM m s 0.04 0.00 0.04 0.00 +cribla cribler VER 1.86 6.69 0.01 0.07 ind:pas:3s; +criblage criblage NOM m s 0.03 0.14 0.03 0.14 +criblaient cribler VER 1.86 6.69 0.00 0.47 ind:imp:3p; +criblait cribler VER 1.86 6.69 0.00 0.20 ind:imp:3s; +criblant cribler VER 1.86 6.69 0.00 0.74 par:pre; +crible crible NOM m s 0.92 1.15 0.91 1.08 +criblent cribler VER 1.86 6.69 0.00 0.20 ind:pre:3p; +cribler cribler VER 1.86 6.69 0.07 0.20 inf; +cribles crible NOM m p 0.92 1.15 0.01 0.07 +criblé cribler VER m s 1.86 6.69 0.92 2.09 par:pas; +criblée cribler VER f s 1.86 6.69 0.20 1.01 par:pas; +criblées cribler VER f p 1.86 6.69 0.16 0.61 par:pas; +criblés cribler VER m p 1.86 6.69 0.26 0.61 par:pas; +cric_crac cric_crac ONO 0.00 0.07 0.00 0.07 +cric cric NOM m s 1.20 1.42 1.18 1.08 +cricket cricket NOM m s 2.94 0.41 2.92 0.41 +crickets cricket NOM m p 2.94 0.41 0.02 0.00 +cricoïde cricoïde ADJ s 0.12 0.00 0.12 0.00 +cricri cricri NOM m s 0.28 1.42 0.28 1.28 +cricris cricri NOM m p 0.28 1.42 0.00 0.14 +crics cric NOM m p 1.20 1.42 0.03 0.34 +crie crier VER 116.93 239.73 35.65 40.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crient crier VER 116.93 239.73 5.35 5.61 ind:pre:3p; +crier crier VER 116.93 239.73 31.48 47.30 inf; +criera crier VER 116.93 239.73 0.75 0.20 ind:fut:3s; +crierai crier VER 116.93 239.73 0.99 0.27 ind:fut:1s; +crieraient crier VER 116.93 239.73 0.03 0.20 cnd:pre:3p; +crierais crier VER 116.93 239.73 0.28 0.00 cnd:pre:1s;cnd:pre:2s; +crierait crier VER 116.93 239.73 0.07 0.81 cnd:pre:3s; +crieras crier VER 116.93 239.73 0.34 0.20 ind:fut:2s; +crieront crier VER 116.93 239.73 0.42 0.14 ind:fut:3p; +cries crier VER 116.93 239.73 5.64 0.41 ind:pre:2s;sub:pre:2s; +crieur crieur NOM m s 0.34 2.09 0.27 0.95 +crieurs crieur NOM m p 0.34 2.09 0.04 1.08 +crieuse crieur NOM f s 0.34 2.09 0.03 0.07 +criez crier VER 116.93 239.73 6.57 0.74 imp:pre:2p;ind:pre:2p; +criions crier VER 116.93 239.73 0.00 0.14 ind:imp:1p; +crime crime NOM m s 104.07 45.07 81.77 29.32 +crimes crime NOM m p 104.07 45.07 22.30 15.74 +criminaliser criminaliser VER 0.03 0.00 0.03 0.00 inf; +criminaliste criminaliste NOM s 0.10 0.00 0.10 0.00 +criminalistique criminalistique ADJ s 0.01 0.00 0.01 0.00 +criminalité criminalité NOM f s 1.91 0.61 1.91 0.61 +criminel criminel NOM m s 35.49 8.04 17.37 3.45 +criminelle criminel ADJ f s 18.17 8.45 6.36 3.11 +criminellement criminellement ADV 0.02 0.07 0.02 0.07 +criminelles criminel ADJ f p 18.17 8.45 0.94 1.15 +criminels criminel NOM m p 35.49 8.04 13.90 3.38 +criminologie criminologie NOM f s 0.48 0.07 0.48 0.07 +criminologiste criminologiste NOM s 0.03 0.14 0.03 0.14 +criminologue criminologue NOM s 0.35 0.00 0.30 0.00 +criminologues criminologue NOM p 0.35 0.00 0.05 0.00 +crin crin NOM m s 0.46 6.22 0.32 3.92 +crincrin crincrin NOM m s 0.05 0.27 0.04 0.20 +crincrins crincrin NOM m p 0.05 0.27 0.01 0.07 +crinière crinière NOM f s 2.28 10.27 2.27 8.92 +crinières crinière NOM f p 2.28 10.27 0.01 1.35 +crinoline crinoline NOM f s 0.15 0.47 0.15 0.14 +crinolines crinoline NOM f p 0.15 0.47 0.00 0.34 +crins crin NOM m p 0.46 6.22 0.14 2.30 +crions crier VER 116.93 239.73 0.79 0.14 imp:pre:1p;ind:pre:1p; +criât crier VER 116.93 239.73 0.00 0.34 sub:imp:3s; +crique crique NOM f s 1.10 5.20 1.06 3.78 +criques crique NOM f p 1.10 5.20 0.04 1.42 +criquet criquet NOM m s 1.29 2.36 0.57 0.34 +criquets criquet NOM m p 1.29 2.36 0.72 2.03 +cris_craft cris_craft NOM m s 0.00 0.07 0.00 0.07 +cris cri NOM m p 45.58 155.41 26.79 83.85 +crise crise NOM f s 50.15 49.73 43.51 37.97 +crises crise NOM f p 50.15 49.73 6.64 11.76 +crispa crisper VER 2.05 30.41 0.00 2.36 ind:pas:3s; +crispai crisper VER 2.05 30.41 0.00 0.14 ind:pas:1s; +crispaient crisper VER 2.05 30.41 0.00 1.01 ind:imp:3p; +crispait crisper VER 2.05 30.41 0.01 3.18 ind:imp:3s; +crispant crispant ADJ m s 0.07 0.41 0.06 0.27 +crispante crispant ADJ f s 0.07 0.41 0.00 0.07 +crispantes crispant ADJ f p 0.07 0.41 0.01 0.07 +crispation crispation NOM f s 0.04 3.92 0.04 3.31 +crispations crispation NOM f p 0.04 3.92 0.00 0.61 +crispe crisper VER 2.05 30.41 0.39 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crispent crisper VER 2.05 30.41 0.14 0.41 ind:pre:3p; +crisper crisper VER 2.05 30.41 0.33 1.28 inf; +crispes crisper VER 2.05 30.41 0.00 0.14 ind:pre:2s; +crispin crispin NOM m s 0.10 0.20 0.10 0.20 +crispèrent crisper VER 2.05 30.41 0.00 0.41 ind:pas:3p; +crispé crisper VER m s 2.05 30.41 0.53 6.28 par:pas; +crispée crisper VER f s 2.05 30.41 0.50 5.00 par:pas; +crispées crisper VER f p 2.05 30.41 0.02 3.51 par:pas; +crispés crisper VER m p 2.05 30.41 0.13 3.24 par:pas; +crissa crisser VER 1.46 11.49 0.00 0.41 ind:pas:3s; +crissaient crisser VER 1.46 11.49 0.01 1.62 ind:imp:3p; +crissait crisser VER 1.46 11.49 0.00 1.62 ind:imp:3s; +crissant crisser VER 1.46 11.49 0.02 2.09 par:pre; +crisse crisser VER 1.46 11.49 1.29 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crissement crissement NOM m s 1.77 9.32 1.18 7.77 +crissements crissement NOM m p 1.77 9.32 0.59 1.55 +crissent crisser VER 1.46 11.49 0.02 0.95 ind:pre:3p; +crisser crisser VER 1.46 11.49 0.09 2.57 inf; +crissèrent crisser VER 1.46 11.49 0.00 0.20 ind:pas:3p; +crissé crisser VER m s 1.46 11.49 0.02 0.20 par:pas; +cristal cristal NOM m s 10.22 18.51 6.34 13.72 +cristallerie cristallerie NOM f s 0.01 0.07 0.01 0.00 +cristalleries cristallerie NOM f p 0.01 0.07 0.00 0.07 +cristallin cristallin ADJ m s 0.35 4.59 0.04 1.69 +cristalline cristallin ADJ f s 0.35 4.59 0.26 1.82 +cristallines cristallin ADJ f p 0.35 4.59 0.05 0.54 +cristallins cristallin NOM m p 0.17 0.74 0.14 0.00 +cristallisaient cristalliser VER 0.41 2.03 0.00 0.07 ind:imp:3p; +cristallisait cristalliser VER 0.41 2.03 0.00 0.14 ind:imp:3s; +cristallisation cristallisation NOM f s 0.20 0.27 0.20 0.27 +cristallise cristalliser VER 0.41 2.03 0.01 0.41 ind:pre:3s; +cristallisent cristalliser VER 0.41 2.03 0.14 0.20 ind:pre:3p; +cristalliser cristalliser VER 0.41 2.03 0.13 0.34 inf; +cristallisera cristalliser VER 0.41 2.03 0.01 0.00 ind:fut:3s; +cristallisèrent cristalliser VER 0.41 2.03 0.00 0.14 ind:pas:3p; +cristallisé cristalliser VER m s 0.41 2.03 0.09 0.34 par:pas; +cristallisée cristallisé ADJ f s 0.18 0.14 0.14 0.00 +cristallisées cristallisé ADJ f p 0.18 0.14 0.00 0.07 +cristallisés cristalliser VER m p 0.41 2.03 0.01 0.07 par:pas; +cristalloïde cristalloïde NOM s 0.03 0.00 0.03 0.00 +cristallographie cristallographie NOM f s 0.00 0.07 0.00 0.07 +cristallomancie cristallomancie NOM f s 0.02 0.00 0.02 0.00 +cristaux cristal NOM m p 10.22 18.51 3.88 4.80 +cristi cristi ONO 0.15 0.07 0.15 0.07 +crièrent crier VER 116.93 239.73 0.06 1.89 ind:pas:3p; +criticaillent criticailler VER 0.00 0.07 0.00 0.07 ind:pre:3p; +critiqua critiquer VER 10.38 7.43 0.01 0.14 ind:pas:3s; +critiquable critiquable ADJ s 0.02 0.07 0.01 0.07 +critiquables critiquable ADJ p 0.02 0.07 0.01 0.00 +critiquaient critiquer VER 10.38 7.43 0.04 0.14 ind:imp:3p; +critiquais critiquer VER 10.38 7.43 0.38 0.14 ind:imp:1s;ind:imp:2s; +critiquait critiquer VER 10.38 7.43 0.58 0.95 ind:imp:3s; +critiquant critiquer VER 10.38 7.43 0.06 0.20 par:pre; +critique critique ADJ s 9.34 10.47 7.83 8.85 +critiquent critiquer VER 10.38 7.43 0.18 0.00 ind:pre:3p; +critiquer critiquer VER 10.38 7.43 4.39 3.51 inf; +critiquera critiquer VER 10.38 7.43 0.09 0.00 ind:fut:3s; +critiquerais critiquer VER 10.38 7.43 0.01 0.07 cnd:pre:1s; +critiquerait critiquer VER 10.38 7.43 0.00 0.07 cnd:pre:3s; +critiqueras critiquer VER 10.38 7.43 0.01 0.00 ind:fut:2s; +critiques critique NOM p 13.93 20.54 7.24 9.39 +critiquez critiquer VER 10.38 7.43 0.54 0.00 imp:pre:2p;ind:pre:2p; +critiquiez critiquer VER 10.38 7.43 0.03 0.00 ind:imp:2p; +critiquons critiquer VER 10.38 7.43 0.03 0.00 imp:pre:1p; +critiquât critiquer VER 10.38 7.43 0.00 0.07 sub:imp:3s; +critiqué critiquer VER m s 10.38 7.43 0.96 0.74 par:pas; +critiquée critiquer VER f s 10.38 7.43 0.18 0.07 par:pas; +critiquées critiquer VER f p 10.38 7.43 0.05 0.07 par:pas; +critiqués critiquer VER m p 10.38 7.43 0.08 0.07 par:pas; +critère critère NOM m s 3.55 1.89 1.06 0.54 +critères critère NOM m p 3.55 1.89 2.49 1.35 +critérium critérium NOM m s 0.38 0.34 0.38 0.27 +critériums critérium NOM m p 0.38 0.34 0.00 0.07 +crié crier VER m s 116.93 239.73 13.00 23.04 par:pas; +criée crier VER f s 116.93 239.73 0.17 0.07 par:pas; +criées crier VER f p 116.93 239.73 0.00 0.07 par:pas; +criés crier VER m p 116.93 239.73 0.01 0.61 par:pas; +croîs croître VER 4.79 10.34 0.01 0.00 ind:pre:1s; +croît croître VER 4.79 10.34 1.20 1.55 ind:pre:3s; +croîtraient croître VER 4.79 10.34 0.00 0.07 cnd:pre:3p; +croîtrait croître VER 4.79 10.34 0.01 0.07 cnd:pre:3s; +croître croître VER 4.79 10.34 1.35 2.77 inf; +croûte croûte NOM f s 5.81 17.30 5.07 12.23 +croûter croûter VER 0.30 1.01 0.07 0.61 inf; +croûtes croûte NOM f p 5.81 17.30 0.74 5.07 +croûteuse croûteux ADJ f s 0.03 0.68 0.00 0.20 +croûteuses croûteux ADJ f p 0.03 0.68 0.00 0.14 +croûteux croûteux ADJ m 0.03 0.68 0.03 0.34 +croûton croûton NOM m s 0.91 3.78 0.59 1.62 +croûtonnais croûtonner VER 0.00 0.07 0.00 0.07 ind:imp:1s; +croûtons croûton NOM m p 0.91 3.78 0.31 2.16 +croûté croûter VER m s 0.30 1.01 0.03 0.20 par:pas; +croûtée croûter VER f s 0.30 1.01 0.00 0.07 par:pas; +croûtées croûter VER f p 0.30 1.01 0.00 0.07 par:pas; +croa_croa croa_croa ADV 0.00 0.41 0.00 0.27 +croa_croa croa_croa ADV 0.00 0.41 0.00 0.14 +croassa croasser VER 0.19 0.47 0.00 0.14 ind:pas:3s; +croassaient croasser VER 0.19 0.47 0.00 0.14 ind:imp:3p; +croassait croasser VER 0.19 0.47 0.00 0.07 ind:imp:3s; +croassant croassant ADJ m s 0.01 0.07 0.01 0.07 +croasse croasser VER 0.19 0.47 0.12 0.00 imp:pre:2s;ind:pre:3s; +croassement croassement NOM m s 0.02 0.27 0.02 0.07 +croassements croassement NOM m p 0.02 0.27 0.00 0.20 +croassent croasser VER 0.19 0.47 0.04 0.07 ind:pre:3p; +croasser croasser VER 0.19 0.47 0.03 0.07 inf; +croate croate ADJ s 0.93 0.54 0.51 0.34 +croates croate ADJ p 0.93 0.54 0.42 0.20 +crobard crobard NOM m s 0.00 0.27 0.00 0.27 +croc_en_jambe croc_en_jambe NOM m s 0.16 0.61 0.16 0.61 +croc croc NOM m s 3.19 7.84 0.66 1.15 +crocha crocher VER 0.01 1.08 0.00 0.14 ind:pas:3s; +crochaient crocher VER 0.01 1.08 0.00 0.20 ind:imp:3p; +crochait crocher VER 0.01 1.08 0.00 0.07 ind:imp:3s; +croche_patte croche_patte NOM m s 0.17 0.34 0.17 0.34 +croche_pied croche_pied NOM m s 0.56 0.68 0.43 0.41 +croche_pied croche_pied NOM m p 0.56 0.68 0.14 0.27 +croche croche NOM f s 0.26 0.41 0.07 0.34 +crochent crocher VER 0.01 1.08 0.00 0.07 ind:pre:3p; +crocher crocher VER 0.01 1.08 0.00 0.27 inf; +croches croche NOM f p 0.26 0.41 0.19 0.07 +crochet crochet NOM m s 10.69 15.81 8.21 9.80 +crocheta crocheter VER 0.66 1.55 0.00 0.20 ind:pas:3s; +crochetage crochetage NOM m s 0.04 0.00 0.04 0.00 +crochetaient crocheter VER 0.66 1.55 0.00 0.14 ind:imp:3p; +crochetait crocheter VER 0.66 1.55 0.00 0.14 ind:imp:3s; +crochetant crocheter VER 0.66 1.55 0.00 0.07 par:pre; +crocheter crocheter VER 0.66 1.55 0.42 0.47 inf; +crocheteur crocheteur NOM m s 0.29 0.07 0.29 0.00 +crocheteurs crocheteur NOM m p 0.29 0.07 0.00 0.07 +crochets crochet NOM m p 10.69 15.81 2.47 6.01 +crocheté crocheter VER m s 0.66 1.55 0.22 0.27 par:pas; +crochetées crocheter VER f p 0.66 1.55 0.01 0.07 par:pas; +crochetés crocheter VER m p 0.66 1.55 0.00 0.07 par:pas; +crochètent crocheter VER 0.66 1.55 0.01 0.14 ind:pre:3p; +croché crocher VER m s 0.01 1.08 0.01 0.27 par:pas; +crochu crochu ADJ m s 0.83 3.72 0.33 1.49 +crochue crochu ADJ f s 0.83 3.72 0.13 0.47 +crochées crocher VER f p 0.01 1.08 0.00 0.07 par:pas; +crochues crochu ADJ f p 0.83 3.72 0.02 0.41 +crochus crochu ADJ m p 0.83 3.72 0.35 1.35 +croco croco NOM m s 1.51 1.35 0.75 1.28 +crocodile crocodile NOM m s 9.26 5.20 6.14 4.05 +crocodiles crocodile NOM m p 9.26 5.20 3.12 1.15 +crocos croco NOM m p 1.51 1.35 0.76 0.07 +crocs_en_jambe crocs_en_jambe NOM m p 0.00 0.20 0.00 0.20 +crocs croc NOM m p 3.19 7.84 2.53 6.69 +crocus crocus NOM m 0.04 0.95 0.04 0.95 +croie croire VER 1711.99 947.23 5.43 3.85 sub:pre:1s;sub:pre:3s; +croient croire VER 1711.99 947.23 29.38 19.19 ind:pre:3p; +croies croire VER 1711.99 947.23 3.10 0.61 sub:pre:2s; +croira croire VER 1711.99 947.23 8.27 3.18 ind:fut:3s; +croirai croire VER 1711.99 947.23 2.55 1.49 ind:fut:1s; +croiraient croire VER 1711.99 947.23 0.70 0.47 cnd:pre:3p; +croirais croire VER 1711.99 947.23 4.40 2.50 cnd:pre:1s;cnd:pre:2s; +croirait croire VER 1711.99 947.23 12.22 13.72 cnd:pre:3s; +croiras croire VER 1711.99 947.23 3.87 1.28 ind:fut:2s; +croire croire VER 1711.99 947.23 193.37 167.91 inf;;inf;;inf;; +croirez croire VER 1711.99 947.23 2.77 1.82 ind:fut:2p; +croiriez croire VER 1711.99 947.23 1.71 0.88 cnd:pre:2p; +croirions croire VER 1711.99 947.23 0.00 0.34 cnd:pre:1p; +croirons croire VER 1711.99 947.23 0.17 0.14 ind:fut:1p; +croiront croire VER 1711.99 947.23 4.14 0.81 ind:fut:3p; +crois croire VER 1711.99 947.23 904.45 305.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +croisa croiser VER 28.84 76.35 0.05 9.05 ind:pas:3s; +croisade croisade NOM f s 4.21 6.15 3.23 3.18 +croisades croisade NOM f p 4.21 6.15 0.98 2.97 +croisai croiser VER 28.84 76.35 0.05 1.08 ind:pas:1s; +croisaient croiser VER 28.84 76.35 0.10 5.07 ind:imp:3p; +croisais croiser VER 28.84 76.35 0.13 1.62 ind:imp:1s;ind:imp:2s; +croisait croiser VER 28.84 76.35 0.47 6.62 ind:imp:3s; +croisant croiser VER 28.84 76.35 0.26 5.34 par:pre; +croise croiser VER 28.84 76.35 6.65 8.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croisement croisement NOM m s 2.70 6.22 2.58 4.93 +croisements croisement NOM m p 2.70 6.22 0.12 1.28 +croisent croiser VER 28.84 76.35 1.16 5.00 ind:pre:3p; +croiser croiser VER 28.84 76.35 4.76 7.57 ind:pre:2p;inf; +croisera croiser VER 28.84 76.35 0.80 0.00 ind:fut:3s; +croiserai croiser VER 28.84 76.35 0.16 0.00 ind:fut:1s; +croiseraient croiser VER 28.84 76.35 0.05 0.20 cnd:pre:3p; +croiserais croiser VER 28.84 76.35 0.01 0.20 cnd:pre:1s; +croiserait croiser VER 28.84 76.35 0.02 0.27 cnd:pre:3s; +croiserez croiser VER 28.84 76.35 0.16 0.07 ind:fut:2p; +croiserons croiser VER 28.84 76.35 0.02 0.07 ind:fut:1p; +croiseront croiser VER 28.84 76.35 0.11 0.14 ind:fut:3p; +croises croiser VER 28.84 76.35 1.27 0.20 ind:pre:2s; +croisette croisette NOM f s 0.00 1.01 0.00 1.01 +croiseur croiseur NOM m s 2.46 4.59 1.81 1.69 +croiseurs croiseur NOM m p 2.46 4.59 0.65 2.91 +croisez croiser VER 28.84 76.35 1.42 0.20 imp:pre:2p;ind:pre:2p; +croisillon croisillon NOM m s 0.01 2.03 0.00 0.47 +croisillons croisillon NOM m p 0.01 2.03 0.01 1.55 +croisions croiser VER 28.84 76.35 0.34 0.95 ind:imp:1p; +croisière croisière NOM f s 5.47 5.81 5.05 5.07 +croisières croisière NOM f p 5.47 5.81 0.42 0.74 +croisâmes croiser VER 28.84 76.35 0.01 0.68 ind:pas:1p; +croisons croiser VER 28.84 76.35 0.30 1.22 imp:pre:1p;ind:pre:1p; +croisât croiser VER 28.84 76.35 0.00 0.07 sub:imp:3s; +croissaient croître VER 4.79 10.34 0.00 0.81 ind:imp:3p; +croissais croître VER 4.79 10.34 0.01 0.07 ind:imp:1s; +croissait croître VER 4.79 10.34 0.33 1.28 ind:imp:3s; +croissance croissance NOM f s 4.16 3.99 4.16 3.92 +croissances croissance NOM f p 4.16 3.99 0.00 0.07 +croissant croissant NOM m s 3.85 18.72 1.54 6.96 +croissante croissant ADJ f s 1.28 7.43 0.66 3.65 +croissantes croissant ADJ f p 1.28 7.43 0.02 0.47 +croissants croissant NOM m p 3.85 18.72 2.31 11.76 +croisse croître VER 4.79 10.34 0.03 0.07 sub:pre:3s; +croissent croître VER 4.79 10.34 0.33 0.27 ind:pre:3p; +croissez croître VER 4.79 10.34 0.11 0.14 imp:pre:2p; +croisèrent croiser VER 28.84 76.35 0.02 3.38 ind:pas:3p; +croisé croiser VER m s 28.84 76.35 6.38 8.24 par:pas; +croisée croiser VER f s 28.84 76.35 0.92 1.01 par:pas; +croisées croiser VER f p 28.84 76.35 0.34 4.46 par:pas; +croisés croisé ADJ m p 4.62 17.23 3.76 9.12 +croit croire VER 1711.99 947.23 68.72 60.00 ind:pre:3s; +croix croix NOM f 29.10 71.62 29.10 71.62 +cromlech cromlech NOM m s 0.02 0.14 0.02 0.07 +cromlechs cromlech NOM m p 0.02 0.14 0.00 0.07 +cromorne cromorne NOM m s 0.00 0.54 0.00 0.54 +crâna crâner VER 1.37 2.23 0.00 0.07 ind:pas:3s; +crânais crâner VER 1.37 2.23 0.14 0.14 ind:imp:1s; +crânait crâner VER 1.37 2.23 0.00 0.41 ind:imp:3s; +crânant crâner VER 1.37 2.23 0.00 0.14 par:pre; +crâne crâne NOM m s 28.60 56.82 26.88 52.23 +crânement crânement ADV 0.01 1.15 0.01 1.15 +crânent crâner VER 1.37 2.23 0.01 0.07 ind:pre:3p; +crâner crâner VER 1.37 2.23 0.40 0.88 inf; +crânerie crânerie NOM f s 0.00 0.27 0.00 0.27 +crânes crâne NOM m p 28.60 56.82 1.72 4.59 +crâneur crâneur NOM m s 0.60 0.95 0.56 0.34 +crâneurs crâneur NOM m p 0.60 0.95 0.02 0.27 +crâneuse crâneur NOM f s 0.60 0.95 0.02 0.14 +crâneuses crâneur NOM f p 0.60 0.95 0.00 0.20 +crânez crâner VER 1.37 2.23 0.01 0.07 imp:pre:2p;ind:pre:2p; +crânien crânien ADJ m s 2.36 1.15 1.58 0.14 +crânienne crânien ADJ f s 2.36 1.15 0.74 0.88 +crâniens crânien ADJ m p 2.36 1.15 0.04 0.14 +cronstadt cronstadt NOM s 0.00 0.07 0.00 0.07 +crâné crâner VER m s 1.37 2.23 0.02 0.00 par:pas; +crooner crooner NOM m s 0.25 0.14 0.23 0.07 +crooners crooner NOM m p 0.25 0.14 0.02 0.07 +croqua croquer VER 5.23 12.64 0.00 0.81 ind:pas:3s; +croquai croquer VER 5.23 12.64 0.00 0.14 ind:pas:1s; +croquaient croquer VER 5.23 12.64 0.00 0.34 ind:imp:3p; +croquais croquer VER 5.23 12.64 0.00 0.20 ind:imp:1s; +croquait croquer VER 5.23 12.64 0.02 1.01 ind:imp:3s; +croquant croquant ADJ m s 0.43 0.68 0.34 0.20 +croquante croquant ADJ f s 0.43 0.68 0.04 0.07 +croquantes croquant ADJ f p 0.43 0.68 0.03 0.20 +croquants croquant NOM m p 0.23 1.42 0.02 0.61 +croque_madame croque_madame NOM m s 0.03 0.00 0.03 0.00 +croque_mitaine croque_mitaine NOM m s 0.61 0.20 0.61 0.20 +croque_monsieur croque_monsieur NOM m 0.28 0.14 0.28 0.14 +croque_mort croque_mort NOM m s 2.20 3.31 1.81 1.28 +croque_mort croque_mort NOM m p 2.20 3.31 0.39 2.03 +croque croquer VER 5.23 12.64 1.00 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croquemitaine croquemitaine NOM m s 0.39 0.47 0.39 0.34 +croquemitaines croquemitaine NOM m p 0.39 0.47 0.00 0.14 +croquemort croquemort NOM m s 0.08 0.14 0.08 0.00 +croquemorts croquemort NOM m p 0.08 0.14 0.00 0.14 +croquenots croquenot NOM m p 0.00 0.95 0.00 0.95 +croquent croquer VER 5.23 12.64 0.05 0.34 ind:pre:3p; +croquer croquer VER 5.23 12.64 2.59 3.99 inf; +croquera croquer VER 5.23 12.64 0.01 0.14 ind:fut:3s; +croquerai croquer VER 5.23 12.64 0.01 0.07 ind:fut:1s; +croqueraient croquer VER 5.23 12.64 0.01 0.07 cnd:pre:3p; +croquerais croquer VER 5.23 12.64 0.02 0.07 cnd:pre:1s; +croquerait croquer VER 5.23 12.64 0.02 0.61 cnd:pre:3s; +croquerons croquer VER 5.23 12.64 0.00 0.07 ind:fut:1p; +croques croquer VER 5.23 12.64 0.22 0.20 ind:pre:2s; +croquet croquet NOM m s 0.42 1.49 0.42 1.49 +croqueton croqueton NOM m s 0.00 0.14 0.00 0.07 +croquetons croqueton NOM m p 0.00 0.14 0.00 0.07 +croquette croquette NOM f s 2.04 0.27 0.18 0.07 +croquettes croquette NOM f p 2.04 0.27 1.86 0.20 +croqueur croqueur NOM m s 0.17 0.07 0.02 0.00 +croqueuse croqueur NOM f s 0.17 0.07 0.14 0.07 +croquez croquer VER 5.23 12.64 0.16 0.07 imp:pre:2p;ind:pre:2p; +croquignol croquignol ADJ m s 0.03 0.27 0.03 0.27 +croquignolet croquignolet ADJ m s 0.02 0.27 0.01 0.14 +croquignolets croquignolet ADJ m p 0.02 0.27 0.01 0.14 +croquis_minute croquis_minute NOM m 0.00 0.07 0.00 0.07 +croquis croquis NOM m 2.63 7.64 2.63 7.64 +croquons croquer VER 5.23 12.64 0.01 0.07 imp:pre:1p;ind:pre:1p; +croquèrent croquer VER 5.23 12.64 0.00 0.14 ind:pas:3p; +croqué croquer VER m s 5.23 12.64 0.34 1.76 par:pas; +croquée croquer VER f s 5.23 12.64 0.33 0.20 par:pas; +croquées croquer VER f p 5.23 12.64 0.10 0.07 par:pas; +croqués croquer VER m p 5.23 12.64 0.01 0.00 par:pas; +crosne crosne NOM m s 0.00 0.27 0.00 0.07 +crosnes crosne NOM m p 0.00 0.27 0.00 0.20 +cross_country cross_country NOM m s 0.05 0.34 0.05 0.34 +cross cross NOM m 0.22 0.41 0.22 0.41 +crosse crosse NOM f s 2.27 11.96 1.96 10.14 +crosser crosser VER 0.14 0.00 0.14 0.00 inf; +crosses crosse NOM f p 2.27 11.96 0.31 1.82 +crossman crossman NOM m s 0.01 0.00 0.01 0.00 +crossé crossé ADJ m s 0.00 0.07 0.00 0.07 +crotale crotale NOM m s 0.82 0.95 0.62 0.88 +crotales crotale NOM m p 0.82 0.95 0.20 0.07 +croton croton NOM m s 0.28 0.07 0.28 0.07 +crottait crotter VER 0.45 1.01 0.00 0.14 ind:imp:3s; +crotte crotte NOM f s 6.52 6.76 3.46 3.51 +crotter crotter VER 0.45 1.01 0.02 0.14 inf; +crottes crotte NOM f p 6.52 6.76 3.06 3.24 +crottin crottin NOM m s 0.58 2.57 0.57 2.30 +crottins crottin NOM m p 0.58 2.57 0.01 0.27 +crotté crotté ADJ m s 0.23 0.95 0.18 0.27 +crottée crotté ADJ f s 0.23 0.95 0.02 0.14 +crottées crotter VER f p 0.45 1.01 0.11 0.00 par:pas; +crottés crotter VER m p 0.45 1.01 0.29 0.00 par:pas; +crouillat crouillat NOM m s 0.00 0.88 0.00 0.27 +crouillats crouillat NOM m p 0.00 0.88 0.00 0.61 +crouille crouille ADV 0.00 0.07 0.00 0.07 +croula crouler VER 2.37 8.24 0.00 0.14 ind:pas:3s; +croulaient crouler VER 2.37 8.24 0.00 0.95 ind:imp:3p; +croulait crouler VER 2.37 8.24 0.14 1.22 ind:imp:3s; +croulant croulant NOM m s 0.92 0.74 0.60 0.27 +croulante croulant ADJ f s 0.80 3.72 0.26 0.81 +croulantes croulant ADJ f p 0.80 3.72 0.00 0.61 +croulants croulant NOM m p 0.92 0.74 0.33 0.20 +croule crouler VER 2.37 8.24 1.16 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +croulement croulement NOM m s 0.00 0.07 0.00 0.07 +croulent crouler VER 2.37 8.24 0.26 0.41 ind:pre:3p; +crouler crouler VER 2.37 8.24 0.43 2.91 inf; +croulera crouler VER 2.37 8.24 0.03 0.00 ind:fut:3s; +croulerai crouler VER 2.37 8.24 0.01 0.00 ind:fut:1s; +crouleraient crouler VER 2.37 8.24 0.00 0.07 cnd:pre:3p; +croulerait crouler VER 2.37 8.24 0.02 0.07 cnd:pre:3s; +crouleras crouler VER 2.37 8.24 0.11 0.00 ind:fut:2s; +croulerons crouler VER 2.37 8.24 0.01 0.00 ind:fut:1p; +crouleront crouler VER 2.37 8.24 0.01 0.07 ind:fut:3p; +croulons crouler VER 2.37 8.24 0.16 0.07 ind:pre:1p; +croulât crouler VER 2.37 8.24 0.00 0.07 sub:imp:3s; +croulèrent crouler VER 2.37 8.24 0.00 0.14 ind:pas:3p; +croulé crouler VER m s 2.37 8.24 0.02 0.41 par:pas; +croulée crouler VER f s 2.37 8.24 0.00 0.07 par:pas; +croulés crouler VER m p 2.37 8.24 0.00 0.07 par:pas; +croup croup NOM m s 0.14 0.61 0.09 0.61 +croupade croupade NOM f s 0.00 0.14 0.00 0.14 +croupe croupe NOM f s 0.90 14.05 0.64 10.95 +croupes croupe NOM f p 0.90 14.05 0.27 3.11 +croupi croupir VER m s 1.74 4.93 0.10 0.34 par:pas; +croupie croupi ADJ f s 0.03 1.42 0.02 1.01 +croupier croupier NOM m s 0.69 0.88 0.33 0.54 +croupiers croupier NOM m p 0.69 0.88 0.29 0.07 +croupies croupi ADJ f p 0.03 1.42 0.00 0.14 +croupion croupion NOM m s 0.52 1.08 0.37 0.88 +croupionne croupionner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +croupions croupion NOM m p 0.52 1.08 0.15 0.20 +croupir croupir VER 1.74 4.93 0.86 1.49 inf; +croupira croupir VER 1.74 4.93 0.02 0.07 ind:fut:3s; +croupis croupir VER 1.74 4.93 0.15 0.07 ind:pre:1s;ind:pre:2s; +croupissaient croupir VER 1.74 4.93 0.01 0.41 ind:imp:3p; +croupissais croupir VER 1.74 4.93 0.23 0.07 ind:imp:1s;ind:imp:2s; +croupissait croupir VER 1.74 4.93 0.00 1.08 ind:imp:3s; +croupissant croupissant ADJ m s 0.01 0.81 0.01 0.20 +croupissante croupissant ADJ f s 0.01 0.81 0.00 0.47 +croupissantes croupissant ADJ f p 0.01 0.81 0.00 0.14 +croupissent croupir VER 1.74 4.93 0.16 0.27 ind:pre:3p; +croupissez croupir VER 1.74 4.93 0.01 0.00 ind:pre:2p; +croupissoir croupissoir NOM m s 0.00 0.07 0.00 0.07 +croupissure croupissure NOM f s 0.00 0.20 0.00 0.20 +croupit croupir VER 1.74 4.93 0.18 0.61 ind:pre:3s;ind:pas:3s; +croupière croupier NOM f s 0.69 0.88 0.06 0.20 +croupières croupière NOM f p 0.03 0.00 0.03 0.00 +croupon croupon NOM m s 0.00 0.20 0.00 0.20 +croustade croustade NOM f s 0.02 0.20 0.02 0.07 +croustades croustade NOM f p 0.02 0.20 0.00 0.14 +croustillaient croustiller VER 0.11 0.27 0.00 0.07 ind:imp:3p; +croustillait croustiller VER 0.11 0.27 0.00 0.07 ind:imp:3s; +croustillance croustillance NOM f s 0.00 0.07 0.00 0.07 +croustillant croustillant ADJ m s 1.93 1.96 0.95 0.47 +croustillante croustillant ADJ f s 1.93 1.96 0.45 0.61 +croustillantes croustillant ADJ f p 1.93 1.96 0.14 0.27 +croustillants croustillant ADJ m p 1.93 1.96 0.38 0.61 +croustille croustille NOM f s 0.05 0.00 0.03 0.00 +croustillent croustiller VER 0.11 0.27 0.01 0.07 ind:pre:3p; +croustilles croustille NOM f p 0.05 0.00 0.02 0.00 +croustillon croustillon NOM m s 0.00 0.20 0.00 0.07 +croustillons croustillon NOM m p 0.00 0.20 0.00 0.14 +crown crown NOM m s 0.03 0.00 0.03 0.00 +croyable croyable ADJ s 6.21 5.14 6.08 4.80 +croyables croyable ADJ p 6.21 5.14 0.14 0.34 +croyaient croire VER 1711.99 947.23 4.70 11.42 ind:imp:3p; +croyais croire VER 1711.99 947.23 162.56 57.36 ind:imp:1s;ind:imp:2s; +croyait croire VER 1711.99 947.23 22.86 73.24 ind:imp:3s; +croyance croyance NOM f s 7.95 6.55 3.30 3.38 +croyances croyance NOM f p 7.95 6.55 4.65 3.18 +croyant croire VER 1711.99 947.23 3.17 12.30 par:pre; +croyante croyant ADJ f s 3.99 5.88 1.14 1.22 +croyantes croyant NOM f p 2.99 6.96 0.01 0.27 +croyants croyant NOM m p 2.99 6.96 1.63 2.77 +croyez croire VER 1711.99 947.23 152.54 55.07 imp:pre:2p;ind:pre:2p; +croyiez croire VER 1711.99 947.23 3.63 0.81 ind:imp:2p;sub:pre:2p; +croyions croire VER 1711.99 947.23 0.69 1.76 ind:imp:1p; +croyons croire VER 1711.99 947.23 4.54 4.59 imp:pre:1p;ind:pre:1p; +crèche crèche NOM f s 3.91 9.39 3.46 8.31 +crèchent crécher VER 1.48 2.43 0.08 0.20 ind:pre:3p; +crèches crèche NOM f p 3.91 9.39 0.44 1.08 +crème crème NOM s 20.61 24.46 19.72 20.95 +crèmes crème NOM p 20.61 24.46 0.90 3.51 +crève crever VER 64.95 81.55 13.21 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +crèvent crever VER 64.95 81.55 2.01 5.47 ind:pre:3p; +crèvera crever VER 64.95 81.55 1.08 0.95 ind:fut:3s; +crèverai crever VER 64.95 81.55 0.41 0.14 ind:fut:1s; +crèveraient crever VER 64.95 81.55 0.04 0.14 cnd:pre:3p; +crèverais crever VER 64.95 81.55 0.22 0.20 cnd:pre:1s;cnd:pre:2s; +crèverait crever VER 64.95 81.55 0.24 1.01 cnd:pre:3s; +crèveras crever VER 64.95 81.55 0.55 0.47 ind:fut:2s; +crèverez crever VER 64.95 81.55 0.35 0.81 ind:fut:2p; +crèveriez crever VER 64.95 81.55 0.03 0.00 cnd:pre:2p; +crèverons crever VER 64.95 81.55 0.12 0.07 ind:fut:1p; +crèveront crever VER 64.95 81.55 0.54 0.20 ind:fut:3p; +crèves crever VER 64.95 81.55 1.98 0.34 ind:pre:2s; +cré cré ONO 0.32 1.69 0.32 1.69 +cru croire VER m s 1711.99 947.23 104.49 90.81 par:pas; +créa créer VER 85.17 54.80 2.00 1.82 ind:pas:3s; +créai créer VER 85.17 54.80 0.00 0.14 ind:pas:1s; +créaient créer VER 85.17 54.80 0.13 1.82 ind:imp:3p; +créais créer VER 85.17 54.80 0.23 0.07 ind:imp:1s;ind:imp:2s; +créait créer VER 85.17 54.80 0.82 3.65 ind:imp:3s; +créance créance NOM f s 1.09 1.55 0.32 1.22 +créances créance NOM f p 1.09 1.55 0.77 0.34 +créancier créancier NOM m s 1.42 1.42 0.50 0.07 +créanciers créancier NOM m p 1.42 1.42 0.92 1.35 +créant créer VER 85.17 54.80 1.83 1.55 par:pre; +créateur créateur NOM m s 6.53 5.88 5.13 4.59 +créateurs créateur NOM m p 6.53 5.88 1.29 1.15 +créatif créatif ADJ m s 3.50 0.20 2.30 0.14 +créatifs créatif ADJ m p 3.50 0.20 0.63 0.00 +créatine créatine NOM f s 0.13 0.00 0.13 0.00 +créatinine créatinine NOM f s 0.15 0.00 0.15 0.00 +création création NOM f s 11.15 18.72 9.74 17.50 +créationnisme créationnisme NOM m s 0.14 0.00 0.14 0.00 +créations création NOM f p 11.15 18.72 1.41 1.22 +créative créatif ADJ f s 3.50 0.20 0.48 0.07 +créatives créatif ADJ f p 3.50 0.20 0.09 0.00 +créativité créativité NOM f s 2.15 0.34 2.15 0.34 +créatrice créateur ADJ f s 2.80 4.86 1.00 1.89 +créatrices créateur ADJ f p 2.80 4.86 0.14 0.14 +créature créature NOM f s 35.22 27.23 20.41 15.41 +créatures créature NOM f p 35.22 27.23 14.81 11.82 +cruauté cruauté NOM f s 5.80 15.88 5.70 14.32 +cruautés cruauté NOM f p 5.80 15.88 0.11 1.55 +crécelle crécelle NOM f s 0.07 1.82 0.03 1.35 +crécelles crécelle NOM f p 0.07 1.82 0.03 0.47 +crécerelle crécerelle NOM f s 0.04 0.20 0.02 0.14 +crécerelles crécerelle NOM f p 0.04 0.20 0.02 0.07 +créchaient crécher VER 1.48 2.43 0.00 0.07 ind:imp:3p; +créchait crécher VER 1.48 2.43 0.07 0.27 ind:imp:3s; +créchant crécher VER 1.48 2.43 0.00 0.07 par:pre; +cruche cruche NOM f s 3.04 4.46 2.92 3.92 +crécher crécher VER 1.48 2.43 0.46 0.54 inf; +cruches cruche NOM f p 3.04 4.46 0.12 0.54 +cruchon cruchon NOM m s 0.05 0.81 0.05 0.68 +cruchons cruchon NOM m p 0.05 0.81 0.00 0.14 +crucial crucial ADJ m s 3.66 2.91 2.23 1.82 +cruciale crucial ADJ f s 3.66 2.91 0.87 0.61 +crucialement crucialement ADV 0.00 0.07 0.00 0.07 +cruciales crucial ADJ f p 3.66 2.91 0.30 0.27 +cruciaux crucial ADJ m p 3.66 2.91 0.26 0.20 +crucifia crucifier VER 4.24 2.77 0.01 0.07 ind:pas:3s; +crucifiaient crucifier VER 4.24 2.77 0.05 0.14 ind:imp:3p; +crucifiait crucifier VER 4.24 2.77 0.16 0.27 ind:imp:3s; +crucifiant crucifiant ADJ m s 0.00 0.14 0.00 0.07 +crucifiante crucifiant ADJ f s 0.00 0.14 0.00 0.07 +crucifie crucifier VER 4.24 2.77 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +crucifiement crucifiement NOM m s 0.00 0.20 0.00 0.20 +crucifient crucifier VER 4.24 2.77 0.04 0.07 ind:pre:3p; +crucifier crucifier VER 4.24 2.77 1.13 0.34 inf; +crucifierez crucifier VER 4.24 2.77 0.14 0.07 ind:fut:2p; +crucifieront crucifier VER 4.24 2.77 0.02 0.07 ind:fut:3p; +crucifiez crucifier VER 4.24 2.77 0.33 0.07 imp:pre:2p;ind:pre:2p; +crucifié crucifier VER m s 4.24 2.77 2.12 1.01 par:pas; +crucifiée crucifié ADJ f s 0.49 1.76 0.02 0.54 +crucifiées crucifier VER f p 4.24 2.77 0.01 0.00 par:pas; +crucifiés crucifié ADJ m p 0.49 1.76 0.14 0.27 +crucifix crucifix NOM m 1.22 7.43 1.22 7.43 +crucifixion crucifixion NOM f s 0.69 0.95 0.60 0.68 +crucifixions crucifixion NOM f p 0.69 0.95 0.09 0.27 +cruciforme cruciforme ADJ f s 0.48 0.27 0.47 0.20 +cruciformes cruciforme ADJ p 0.48 0.27 0.01 0.07 +crucifère crucifère NOM f s 0.01 0.27 0.00 0.14 +crucifères crucifère NOM f p 0.01 0.27 0.01 0.14 +cruciverbiste cruciverbiste NOM s 0.00 0.14 0.00 0.07 +cruciverbistes cruciverbiste NOM p 0.00 0.14 0.00 0.07 +crécy crécy NOM f s 0.02 0.20 0.02 0.20 +crédence crédence NOM f s 0.00 0.95 0.00 0.81 +crédences crédence NOM f p 0.00 0.95 0.00 0.14 +crédibilité crédibilité NOM f s 1.89 0.34 1.89 0.34 +crédible crédible ADJ s 3.92 0.88 3.29 0.81 +crédibles crédible ADJ p 3.92 0.88 0.63 0.07 +crédit_bail crédit_bail NOM m s 0.02 0.00 0.02 0.00 +crédit crédit NOM m s 28.21 20.27 25.82 17.57 +créditait créditer VER 0.47 0.61 0.01 0.07 ind:imp:3s; +crédite créditer VER 0.47 0.61 0.03 0.07 ind:pre:1s;ind:pre:3s; +créditent créditer VER 0.47 0.61 0.01 0.00 ind:pre:3p; +créditer créditer VER 0.47 0.61 0.08 0.07 inf; +créditeraient créditer VER 0.47 0.61 0.00 0.07 cnd:pre:3p; +créditeur créditeur NOM m s 0.22 0.14 0.21 0.00 +créditeurs créditeur NOM m p 0.22 0.14 0.01 0.14 +créditez créditer VER 0.47 0.61 0.03 0.00 imp:pre:2p; +créditrice créditeur ADJ f s 0.07 0.14 0.01 0.00 +crédits crédit NOM m p 28.21 20.27 2.38 2.70 +crédité créditer VER m s 0.47 0.61 0.23 0.14 par:pas; +crudité crudité NOM f s 0.45 1.96 0.01 1.01 +créditée créditer VER f s 0.47 0.61 0.06 0.14 par:pas; +crédités créditer VER m p 0.47 0.61 0.02 0.07 par:pas; +crudités crudité NOM f p 0.45 1.96 0.44 0.95 +crédié crédié ADV 0.04 0.20 0.04 0.20 +crédule crédule ADJ s 1.09 1.42 0.74 1.01 +crédules crédule ADJ p 1.09 1.42 0.35 0.41 +crédulité crédulité NOM f s 0.75 1.69 0.75 1.62 +crédulités crédulité NOM f p 0.75 1.69 0.00 0.07 +crée créer VER 85.17 54.80 12.93 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +crue croire VER f s 1711.99 947.23 5.06 2.64 par:pas; +cruel cruel ADJ m s 28.98 35.88 15.64 14.59 +cruelle cruel ADJ f s 28.98 35.88 9.47 11.89 +cruellement cruellement ADV 1.46 8.65 1.46 8.65 +cruelles cruel ADJ f p 28.98 35.88 1.30 4.26 +cruels cruel ADJ m p 28.98 35.88 2.56 5.14 +créent créer VER 85.17 54.80 1.68 2.09 ind:pre:3p; +créer créer VER 85.17 54.80 28.15 16.22 inf; +créera créer VER 85.17 54.80 0.50 0.14 ind:fut:3s; +créerai créer VER 85.17 54.80 0.51 0.00 ind:fut:1s; +créeraient créer VER 85.17 54.80 0.01 0.07 cnd:pre:3p; +créerais créer VER 85.17 54.80 0.21 0.07 cnd:pre:1s;cnd:pre:2s; +créerait créer VER 85.17 54.80 0.49 0.41 cnd:pre:3s; +créerez créer VER 85.17 54.80 0.03 0.00 ind:fut:2p; +créerons créer VER 85.17 54.80 0.14 0.00 ind:fut:1p; +créeront créer VER 85.17 54.80 0.09 0.00 ind:fut:3p; +crues cru ADJ f p 4.85 15.88 0.34 1.82 +créez créer VER 85.17 54.80 0.75 0.07 imp:pre:2p;ind:pre:2p; +créiez créer VER 85.17 54.80 0.04 0.00 ind:imp:2p; +créions créer VER 85.17 54.80 0.02 0.07 ind:imp:1p; +cruiser cruiser NOM m s 0.17 0.00 0.17 0.00 +crémaillère crémaillère NOM f s 1.14 1.08 1.13 1.01 +crémaillères crémaillère NOM f p 1.14 1.08 0.01 0.07 +crémant crémant ADJ m s 0.01 0.00 0.01 0.00 +crémateurs crémateur NOM m p 0.00 0.14 0.00 0.14 +crémation crémation NOM f s 0.78 0.14 0.68 0.14 +crémations crémation NOM f p 0.78 0.14 0.10 0.00 +crématoire crématoire NOM m s 0.92 0.68 0.65 0.34 +crématoires crématoire NOM m p 0.92 0.68 0.27 0.34 +crématorium crématorium NOM m s 0.81 0.54 0.81 0.54 +crumble crumble NOM m s 0.11 0.00 0.11 0.00 +crémer crémer VER 0.01 0.14 0.01 0.00 inf; +crémerie crémerie NOM f s 0.27 0.81 0.27 0.68 +crémeries crémerie NOM f p 0.27 0.81 0.00 0.14 +crémeuse crémeux ADJ f s 0.46 3.24 0.13 0.81 +crémeuses crémeux ADJ f p 0.46 3.24 0.03 0.27 +crémeux crémeux ADJ m 0.46 3.24 0.29 2.16 +crémier crémier NOM m s 0.34 1.82 0.12 0.54 +crémiers crémier NOM m p 0.34 1.82 0.01 0.20 +crémière crémier NOM f s 0.34 1.82 0.21 1.01 +crémières crémier NOM f p 0.34 1.82 0.00 0.07 +crémone crémone NOM f s 0.00 0.34 0.00 0.34 +crémés crémer VER m p 0.01 0.14 0.00 0.14 par:pas; +créneau créneau NOM m s 1.76 5.34 1.49 2.57 +créneaux créneau NOM m p 1.76 5.34 0.27 2.77 +crénelait créneler VER 0.00 0.47 0.00 0.07 ind:imp:3s; +crénelé crénelé ADJ m s 0.00 1.15 0.00 0.20 +crénelée crénelé ADJ f s 0.00 1.15 0.00 0.34 +crénelées crénelé ADJ f p 0.00 1.15 0.00 0.41 +crénelés crénelé ADJ m p 0.00 1.15 0.00 0.20 +crénom crénom ONO 0.58 0.14 0.58 0.14 +créole créole ADJ s 0.58 0.88 0.57 0.68 +créoles créole NOM p 0.66 1.01 0.14 0.14 +créolophone créolophone ADJ s 0.01 0.00 0.01 0.00 +créons créer VER 85.17 54.80 0.98 0.41 imp:pre:1p;ind:pre:1p; +créosote créosote NOM f s 0.04 0.41 0.04 0.41 +créosotée créosoter VER f s 0.00 0.07 0.00 0.07 par:pas; +créât créer VER 85.17 54.80 0.00 0.14 sub:imp:3s; +crêpage crêpage NOM m s 0.06 0.14 0.04 0.07 +crêpages crêpage NOM m p 0.06 0.14 0.01 0.07 +crêpaient crêper VER 0.27 1.01 0.00 0.14 ind:imp:3p; +crêpait crêper VER 0.27 1.01 0.00 0.20 ind:imp:3s; +crêpe crêpe NOM s 8.44 9.05 3.27 6.01 +crêpelait crêpeler VER 0.00 0.07 0.00 0.07 ind:imp:3s; +crêpelées crêpelé ADJ f p 0.00 0.20 0.00 0.07 +crêpelure crêpelure NOM f s 0.00 0.14 0.00 0.14 +crêpelés crêpelé ADJ m p 0.00 0.20 0.00 0.14 +crêper crêper VER 0.27 1.01 0.06 0.27 inf; +crêpes crêpe NOM p 8.44 9.05 5.16 3.04 +crépi crépir VER m s 0.17 1.28 0.07 0.20 par:pas; +crépie crépir VER f s 0.17 1.28 0.00 0.07 par:pas; +crépies crépir VER f p 0.17 1.28 0.00 0.34 par:pas; +crépine crépine NOM f s 0.00 0.07 0.00 0.07 +crépinette crépinette NOM f s 0.00 0.14 0.00 0.07 +crépinettes crépinette NOM f p 0.00 0.14 0.00 0.07 +crépins crépin NOM m p 0.00 0.07 0.00 0.07 +crépir crépir VER 0.17 1.28 0.00 0.07 inf; +crépis crépi NOM m p 0.14 3.31 0.14 0.27 +crépissage crépissage NOM m s 0.00 0.07 0.00 0.07 +crépissez crépir VER 0.17 1.28 0.10 0.00 ind:pre:2p; +crépita crépiter VER 1.31 10.20 0.00 0.68 ind:pas:3s; +crépitaient crépiter VER 1.31 10.20 0.00 1.42 ind:imp:3p; +crépitait crépiter VER 1.31 10.20 0.00 1.62 ind:imp:3s; +crépitant crépitant ADJ m s 0.10 1.35 0.02 0.61 +crépitante crépitant ADJ f s 0.10 1.35 0.01 0.20 +crépitantes crépitant ADJ f p 0.10 1.35 0.00 0.34 +crépitants crépitant ADJ m p 0.10 1.35 0.07 0.20 +crépitation crépitation NOM f s 0.01 0.00 0.01 0.00 +crépite crépiter VER 1.31 10.20 0.75 1.82 imp:pre:2s;ind:pre:3s; +crépitement crépitement NOM m s 0.42 8.18 0.28 7.03 +crépitements crépitement NOM m p 0.42 8.18 0.13 1.15 +crépitent crépiter VER 1.31 10.20 0.14 1.15 ind:pre:3p; +crépiter crépiter VER 1.31 10.20 0.15 1.82 inf; +crépiteront crépiter VER 1.31 10.20 0.00 0.07 ind:fut:3p; +crépitèrent crépiter VER 1.31 10.20 0.00 0.68 ind:pas:3p; +crépité crépiter VER m s 1.31 10.20 0.27 0.34 par:pas; +crépon crépon NOM m s 0.07 0.47 0.06 0.41 +crépons crépon NOM m p 0.07 0.47 0.01 0.07 +crêpé crêper VER m s 0.27 1.01 0.15 0.14 par:pas; +crépu crépu ADJ m s 0.77 2.84 0.25 0.61 +crêpée crêpé ADJ f s 0.03 0.27 0.01 0.07 +crépue crépu ADJ f s 0.77 2.84 0.20 0.68 +crépues crépu ADJ f p 0.77 2.84 0.00 0.20 +crêpés crêpé ADJ m p 0.03 0.27 0.02 0.20 +crépus crépu ADJ m p 0.77 2.84 0.33 1.35 +crépusculaire crépusculaire ADJ s 0.06 2.30 0.03 1.89 +crépusculaires crépusculaire ADJ p 0.06 2.30 0.03 0.41 +crépuscule crépuscule NOM m s 7.35 26.35 7.12 24.86 +crépuscules crépuscule NOM m p 7.35 26.35 0.23 1.49 +créquier créquier NOM m s 0.00 0.07 0.00 0.07 +crurent croire VER 1711.99 947.23 0.04 1.62 ind:pas:3p; +crus croire VER m p 1711.99 947.23 1.51 15.20 ind:pas:1s;ind:pas:2s;par:pas; +crésol crésol NOM m s 0.01 0.00 0.01 0.00 +crusse croire VER 1711.99 947.23 0.00 0.07 sub:imp:1s; +crussent croire VER 1711.99 947.23 0.00 0.07 sub:imp:3p; +crusses croire VER 1711.99 947.23 0.00 0.14 sub:imp:2s; +crustacé crustacé NOM m s 0.95 1.89 0.32 0.54 +crustacés crustacé NOM m p 0.95 1.89 0.64 1.35 +crésus crésus NOM m 0.01 0.00 0.01 0.00 +crésyl crésyl NOM m s 0.01 0.41 0.01 0.41 +crésylée crésylé ADJ f s 0.00 0.07 0.00 0.07 +crêt crêt NOM m s 0.03 0.00 0.03 0.00 +crut croire VER 1711.99 947.23 0.93 34.93 ind:pas:3s; +crétacé crétacé NOM m s 0.23 0.07 0.23 0.07 +crétacée crétacé ADJ f s 0.03 0.00 0.03 0.00 +crêtaient crêter VER 0.00 0.74 0.00 0.07 ind:imp:3p; +crête crête NOM f s 4.23 26.22 3.52 21.62 +crételle crételle NOM f s 0.00 0.14 0.00 0.14 +crêtes_de_coq crêtes_de_coq NOM f p 0.03 0.07 0.03 0.07 +crêtes crête NOM f p 4.23 26.22 0.71 4.59 +créèrent créer VER 85.17 54.80 0.13 0.20 ind:pas:3p; +crétin crétin NOM m s 33.54 8.58 25.61 4.66 +crétine crétin NOM f s 33.54 8.58 0.69 0.54 +crétinerie crétinerie NOM f s 0.04 0.14 0.03 0.07 +crétineries crétinerie NOM f p 0.04 0.14 0.01 0.07 +crétineux crétineux ADJ m 0.02 0.00 0.02 0.00 +crétinisant crétinisant ADJ m s 0.00 0.07 0.00 0.07 +crétinisation crétinisation NOM f s 0.00 0.07 0.00 0.07 +crétiniser crétiniser VER 0.01 0.20 0.01 0.00 inf; +crétinisme crétinisme NOM m s 0.01 0.41 0.01 0.41 +crétinisé crétiniser VER m s 0.01 0.20 0.00 0.20 par:pas; +crétins crétin NOM m p 33.54 8.58 7.24 3.38 +crêtions crêter VER 0.00 0.74 0.00 0.07 ind:imp:1p; +crétois crétois ADJ m s 0.01 0.88 0.01 0.27 +crétoise crétois ADJ f s 0.01 0.88 0.00 0.47 +crétoises crétois ADJ f p 0.01 0.88 0.00 0.14 +crêté crêter VER m s 0.00 0.74 0.00 0.20 par:pas; +crêtée crêter VER f s 0.00 0.74 0.00 0.14 par:pas; +crêtées crêter VER f p 0.00 0.74 0.00 0.20 par:pas; +crêtés crêter VER m p 0.00 0.74 0.00 0.07 par:pas; +créé créer VER m s 85.17 54.80 24.93 12.97 par:pas;par:pas;par:pas; +créée créer VER f s 85.17 54.80 4.58 3.65 par:pas; +créées créer VER f p 85.17 54.80 0.81 1.42 par:pas; +créés créer VER p 85.17 54.80 3.16 1.96 par:pas; +cruzeiro cruzeiro NOM m s 0.80 0.07 0.20 0.00 +cruzeiros cruzeiro NOM m p 0.80 0.07 0.60 0.07 +cryofracture cryofracture NOM f s 0.14 0.00 0.14 0.00 +cryogène cryogène ADJ s 0.11 0.00 0.11 0.00 +cryogénie cryogénie NOM f s 0.27 0.00 0.27 0.00 +cryogénique cryogénique ADJ s 0.44 0.00 0.34 0.00 +cryogéniques cryogénique ADJ p 0.44 0.00 0.10 0.00 +cryogénisation cryogénisation NOM f s 0.17 0.00 0.17 0.00 +cryonique cryonique ADJ f s 0.01 0.00 0.01 0.00 +cryotechnique cryotechnique NOM f s 0.01 0.00 0.01 0.00 +cryptage cryptage NOM m s 0.52 0.00 0.52 0.00 +crypte crypte NOM f s 2.91 3.18 2.82 2.70 +crypter crypter VER 1.56 0.34 0.01 0.00 inf; +cryptes crypte NOM f p 2.91 3.18 0.08 0.47 +cryptique cryptique ADJ m s 0.03 0.00 0.01 0.00 +cryptiques cryptique ADJ f p 0.03 0.00 0.02 0.00 +crypto crypto NOM m s 0.04 0.07 0.04 0.07 +cryptocommunistes cryptocommuniste NOM p 0.00 0.07 0.00 0.07 +cryptogame cryptogame ADJ s 0.00 0.07 0.00 0.07 +cryptogames cryptogame NOM m p 0.00 0.14 0.00 0.14 +cryptogamique cryptogamique ADJ f s 0.01 0.00 0.01 0.00 +cryptogramme cryptogramme NOM m s 0.40 0.20 0.39 0.00 +cryptogrammes cryptogramme NOM m p 0.40 0.20 0.01 0.20 +cryptographe cryptographe NOM s 0.02 0.00 0.02 0.00 +cryptographie cryptographie NOM f s 0.10 0.07 0.10 0.07 +cryptographique cryptographique ADJ s 0.03 0.00 0.03 0.00 +cryptologie cryptologie NOM f s 0.03 0.00 0.03 0.00 +cryptomère cryptomère NOM m s 0.01 0.00 0.01 0.00 +crypté crypter VER m s 1.56 0.34 0.98 0.07 par:pas; +cryptée crypter VER f s 1.56 0.34 0.23 0.00 par:pas; +cryptées crypter VER f p 1.56 0.34 0.12 0.00 par:pas; +cryptés crypter VER m p 1.56 0.34 0.22 0.07 par:pas; +csardas csardas NOM f 0.30 0.00 0.30 0.00 +cède céder VER 24.21 61.35 5.99 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cèdent céder VER 24.21 61.35 0.55 1.28 ind:pre:3p; +cèdre cèdre NOM m s 0.70 3.85 0.47 2.16 +cèdres cèdre NOM m p 0.70 3.85 0.23 1.69 +cèle celer VER 0.68 0.34 0.28 0.00 imp:pre:2s;ind:pre:1s; +cène cène NOM f s 0.02 0.20 0.02 0.20 +cèpe cèpe NOM m s 0.78 1.15 0.02 0.27 +cèpes cèpe NOM m p 0.78 1.15 0.75 0.88 +cuadrilla cuadrilla NOM f s 0.00 0.74 0.00 0.68 +cuadrillas cuadrilla NOM f p 0.00 0.74 0.00 0.07 +céans céans ADV 0.32 0.34 0.32 0.34 +céara céara NOM m s 0.14 0.00 0.14 0.00 +cubage cubage NOM m s 0.14 0.34 0.14 0.27 +cubages cubage NOM m p 0.14 0.34 0.00 0.07 +cubain cubain ADJ m s 3.28 0.61 1.37 0.34 +cubaine cubain ADJ f s 3.28 0.61 1.09 0.07 +cubaines cubain ADJ f p 3.28 0.61 0.05 0.07 +cubains cubain NOM m p 2.69 0.61 1.27 0.00 +cubait cuber VER 0.32 0.54 0.00 0.07 ind:imp:3s; +cubasse cuber VER 0.32 0.54 0.00 0.34 sub:imp:1s; +cube cube NOM m s 2.81 11.76 1.58 5.74 +cubes cube NOM m p 2.81 11.76 1.24 6.01 +cubique cubique ADJ s 0.05 1.82 0.05 0.88 +cubiques cubique ADJ p 0.05 1.82 0.00 0.95 +cubisme cubisme NOM m s 0.03 0.54 0.03 0.54 +cubiste cubiste ADJ s 0.04 0.74 0.03 0.47 +cubistes cubiste ADJ m p 0.04 0.74 0.01 0.27 +cubitainer cubitainer NOM m s 0.04 0.00 0.04 0.00 +cubital cubital ADJ m s 0.04 0.00 0.01 0.00 +cubitale cubital ADJ f s 0.04 0.00 0.03 0.00 +cubitières cubitière NOM f p 0.00 0.14 0.00 0.14 +cubitus cubitus NOM m 0.20 0.14 0.20 0.14 +cucaracha cucaracha NOM f s 0.15 0.07 0.15 0.07 +cécidomyies cécidomyie NOM f p 0.00 0.07 0.00 0.07 +cécité cécité NOM f s 1.12 3.65 1.12 3.65 +cucu cucu ADJ 0.17 0.27 0.17 0.27 +cucul cucul ADJ m 0.57 0.95 0.57 0.95 +cucurbitacée cucurbitacée NOM f s 0.14 0.00 0.14 0.00 +cucurbite cucurbite NOM f s 0.01 0.14 0.01 0.00 +cucurbites cucurbite NOM f p 0.01 0.14 0.00 0.14 +cucuterie cucuterie NOM f s 0.01 0.00 0.01 0.00 +céda céder VER 24.21 61.35 0.39 4.32 ind:pas:3s; +cédai céder VER 24.21 61.35 0.00 0.68 ind:pas:1s; +cédaient céder VER 24.21 61.35 0.03 1.69 ind:imp:3p; +cédais céder VER 24.21 61.35 0.12 0.47 ind:imp:1s;ind:imp:2s; +cédait céder VER 24.21 61.35 0.18 6.28 ind:imp:3s; +cédant céder VER 24.21 61.35 0.50 3.11 par:pre; +céder céder VER 24.21 61.35 7.17 20.54 inf; +cédera céder VER 24.21 61.35 0.58 1.15 ind:fut:3s; +céderai céder VER 24.21 61.35 0.85 0.20 ind:fut:1s; +céderaient céder VER 24.21 61.35 0.02 0.14 cnd:pre:3p; +céderais céder VER 24.21 61.35 0.09 0.20 cnd:pre:1s;cnd:pre:2s; +céderait céder VER 24.21 61.35 0.19 0.68 cnd:pre:3s; +céderas céder VER 24.21 61.35 0.02 0.14 ind:fut:2s; +céderez céder VER 24.21 61.35 0.04 0.14 ind:fut:2p; +céderiez céder VER 24.21 61.35 0.10 0.07 cnd:pre:2p; +céderons céder VER 24.21 61.35 0.14 0.00 ind:fut:1p; +céderont céder VER 24.21 61.35 0.37 0.14 ind:fut:3p; +cédez céder VER 24.21 61.35 1.13 0.20 imp:pre:2p;ind:pre:2p; +cédiez céder VER 24.21 61.35 0.06 0.14 ind:imp:2p; +cédions céder VER 24.21 61.35 0.01 0.20 ind:imp:1p; +cédons céder VER 24.21 61.35 0.69 0.27 imp:pre:1p;ind:pre:1p; +cédât céder VER 24.21 61.35 0.00 0.07 sub:imp:3s; +cédrat cédrat NOM m s 0.01 0.27 0.01 0.14 +cédratier cédratier NOM m s 0.00 0.07 0.00 0.07 +cédrats cédrat NOM m p 0.01 0.27 0.00 0.14 +cédèrent céder VER 24.21 61.35 0.03 0.41 ind:pas:3p; +cédé céder VER m s 24.21 61.35 4.59 11.96 par:pas; +cédée céder VER f s 24.21 61.35 0.00 0.20 par:pas; +cédées céder VER f p 24.21 61.35 0.25 0.20 par:pas; +cédulaire cédulaire ADJ m s 0.00 0.14 0.00 0.14 +cédule cédule NOM f s 0.01 0.00 0.01 0.00 +cédés céder VER m p 24.21 61.35 0.13 0.14 par:pas; +cueillîmes cueillir VER 13.84 25.81 0.00 0.07 ind:pas:1p; +cueillaient cueillir VER 13.84 25.81 0.02 0.47 ind:imp:3p; +cueillais cueillir VER 13.84 25.81 0.34 0.27 ind:imp:1s;ind:imp:2s; +cueillaison cueillaison NOM f s 0.01 0.00 0.01 0.00 +cueillait cueillir VER 13.84 25.81 0.16 2.16 ind:imp:3s; +cueillant cueillir VER 13.84 25.81 0.14 1.08 par:pre; +cueille cueillir VER 13.84 25.81 1.91 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cueillent cueillir VER 13.84 25.81 0.19 0.41 ind:pre:3p; +cueillera cueillir VER 13.84 25.81 0.11 0.07 ind:fut:3s; +cueillerai cueillir VER 13.84 25.81 0.02 0.14 ind:fut:1s; +cueillerais cueillir VER 13.84 25.81 0.01 0.00 cnd:pre:1s; +cueillerait cueillir VER 13.84 25.81 0.01 0.00 cnd:pre:3s; +cueilleras cueillir VER 13.84 25.81 0.11 0.07 ind:fut:2s; +cueilleront cueillir VER 13.84 25.81 0.02 0.00 ind:fut:3p; +cueilles cueillir VER 13.84 25.81 0.23 0.14 ind:pre:2s; +cueillette cueillette NOM f s 0.57 1.89 0.57 1.62 +cueillettes cueillette NOM f p 0.57 1.89 0.00 0.27 +cueilleur cueilleur NOM m s 0.24 0.41 0.11 0.00 +cueilleurs cueilleur NOM m p 0.24 0.41 0.12 0.34 +cueilleuse cueilleur NOM f s 0.24 0.41 0.01 0.00 +cueilleuses cueilleur NOM f p 0.24 0.41 0.00 0.07 +cueillez cueillir VER 13.84 25.81 0.73 0.14 imp:pre:2p;ind:pre:2p; +cueilli cueillir VER m s 13.84 25.81 1.34 2.30 par:pas; +cueillie cueillir VER f s 13.84 25.81 0.18 0.95 par:pas; +cueillies cueillir VER f p 13.84 25.81 1.27 1.15 par:pas; +cueillir cueillir VER 13.84 25.81 6.26 10.07 inf; +cueillirent cueillir VER 13.84 25.81 0.00 0.07 ind:pas:3p; +cueillis cueillir VER m p 13.84 25.81 0.62 1.49 ind:pas:1s;par:pas; +cueillissent cueillir VER 13.84 25.81 0.00 0.07 sub:imp:3p; +cueillit cueillir VER 13.84 25.81 0.01 2.36 ind:pas:3s; +cueillons cueillir VER 13.84 25.81 0.16 0.07 imp:pre:1p;ind:pre:1p; +cuesta cuesta NOM f s 0.39 0.20 0.39 0.20 +cueva cueva NOM f s 0.23 1.01 0.23 0.34 +cuevas cueva NOM f p 0.23 1.01 0.00 0.68 +cégep cégep NOM m s 0.54 0.00 0.54 0.00 +cégétiste cégétiste NOM s 0.00 0.14 0.00 0.07 +cégétistes cégétiste NOM p 0.00 0.14 0.00 0.07 +cui_cui cui_cui NOM m 0.15 0.34 0.15 0.34 +cuiller cuiller NOM f s 2.50 10.20 2.11 8.38 +cuilleron cuilleron NOM m s 0.00 0.07 0.00 0.07 +cuillers cuiller NOM f p 2.50 10.20 0.39 1.82 +cuillerée cuillerée NOM f s 1.15 4.46 0.90 2.70 +cuillerées cuillerée NOM f p 1.15 4.46 0.25 1.76 +cuillère cuillère NOM f s 7.30 11.89 5.18 9.80 +cuillères cuillère NOM f p 7.30 11.89 2.13 2.09 +cuir cuir NOM m s 14.25 79.19 14.11 76.08 +cuira cuire VER 21.65 20.41 0.35 0.14 ind:fut:3s; +cuirai cuire VER 21.65 20.41 0.01 0.07 ind:fut:1s; +cuirait cuire VER 21.65 20.41 0.16 0.14 cnd:pre:3s; +cuiras cuire VER 21.65 20.41 0.01 0.00 ind:fut:2s; +cuirassaient cuirasser VER 0.05 1.69 0.00 0.07 ind:imp:3p; +cuirassait cuirasser VER 0.05 1.69 0.00 0.07 ind:imp:3s; +cuirasse cuirasse NOM f s 1.07 5.14 0.77 3.72 +cuirassements cuirassement NOM m p 0.00 0.07 0.00 0.07 +cuirassent cuirasser VER 0.05 1.69 0.00 0.07 ind:pre:3p; +cuirasser cuirasser VER 0.05 1.69 0.00 0.20 inf; +cuirasses cuirasse NOM f p 1.07 5.14 0.30 1.42 +cuirassier cuirassier NOM m s 0.25 5.54 0.10 2.30 +cuirassiers cuirassier NOM m p 0.25 5.54 0.14 3.24 +cuirassé cuirassé NOM m s 1.48 2.64 1.17 1.62 +cuirassée cuirassé ADJ f s 0.18 2.77 0.00 1.08 +cuirassées cuirassé ADJ f p 0.18 2.77 0.00 0.54 +cuirassés cuirassé NOM m p 1.48 2.64 0.31 1.01 +cuire cuire VER 21.65 20.41 9.12 8.78 inf; +cuirez cuire VER 21.65 20.41 0.00 0.14 ind:fut:2p; +cuiront cuire VER 21.65 20.41 0.02 0.00 ind:fut:3p; +cuirs cuir NOM m p 14.25 79.19 0.14 3.11 +cuis cuire VER 21.65 20.41 0.97 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +cuisaient cuire VER 21.65 20.41 0.14 1.22 ind:imp:3p; +cuisait cuire VER 21.65 20.41 0.33 2.09 ind:imp:3s; +cuisant cuisant ADJ m s 0.49 2.57 0.30 1.08 +cuisante cuisant ADJ f s 0.49 2.57 0.02 0.81 +cuisantes cuisant ADJ f p 0.49 2.57 0.10 0.20 +cuisants cuisant ADJ m p 0.49 2.57 0.06 0.47 +cuise cuire VER 21.65 20.41 0.32 0.14 sub:pre:1s;sub:pre:3s; +cuisent cuire VER 21.65 20.41 0.10 0.95 ind:pre:3p; +cuises cuire VER 21.65 20.41 0.01 0.00 sub:pre:2s; +cuiseurs cuiseur NOM m p 0.10 0.00 0.10 0.00 +cuisez cuire VER 21.65 20.41 0.15 0.00 imp:pre:2p;ind:pre:2p; +cuisiez cuire VER 21.65 20.41 0.00 0.07 ind:imp:2p; +cuisina cuisiner VER 27.12 6.15 0.00 0.20 ind:pas:3s; +cuisinaient cuisiner VER 27.12 6.15 0.03 0.07 ind:imp:3p; +cuisinais cuisiner VER 27.12 6.15 0.38 0.07 ind:imp:1s;ind:imp:2s; +cuisinait cuisiner VER 27.12 6.15 1.09 0.74 ind:imp:3s; +cuisinant cuisiner VER 27.12 6.15 0.16 0.27 par:pre; +cuisine cuisine NOM f s 87.92 135.41 85.08 123.31 +cuisinent cuisiner VER 27.12 6.15 0.67 0.20 ind:pre:3p; +cuisiner cuisiner VER 27.12 6.15 11.98 2.36 inf; +cuisinera cuisiner VER 27.12 6.15 0.23 0.07 ind:fut:3s; +cuisinerai cuisiner VER 27.12 6.15 0.40 0.07 ind:fut:1s; +cuisinerais cuisiner VER 27.12 6.15 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +cuisinerait cuisiner VER 27.12 6.15 0.02 0.14 cnd:pre:3s; +cuisineras cuisiner VER 27.12 6.15 0.07 0.00 ind:fut:2s; +cuisinerons cuisiner VER 27.12 6.15 0.12 0.00 ind:fut:1p; +cuisines cuisine NOM f p 87.92 135.41 2.84 12.09 +cuisinette cuisinette NOM f s 0.00 0.14 0.00 0.14 +cuisinez cuisiner VER 27.12 6.15 0.79 0.00 imp:pre:2p;ind:pre:2p; +cuisinier cuisinier NOM m s 15.70 26.42 6.79 6.35 +cuisiniers cuisinier NOM m p 15.70 26.42 1.25 2.84 +cuisiniez cuisiner VER 27.12 6.15 0.05 0.00 ind:imp:2p; +cuisinière cuisinier NOM f s 15.70 26.42 7.66 16.08 +cuisinières cuisinière NOM f p 0.19 0.00 0.19 0.00 +cuisinons cuisiner VER 27.12 6.15 0.09 0.00 imp:pre:1p;ind:pre:1p; +cuisiné cuisiner VER m s 27.12 6.15 2.71 0.61 par:pas; +cuisinée cuisiner VER f s 27.12 6.15 0.09 0.14 par:pas; +cuisinées cuisiner VER f p 27.12 6.15 0.02 0.07 par:pas; +cuisinés cuisiné ADJ m p 0.22 0.61 0.09 0.47 +cuisit cuire VER 21.65 20.41 0.00 0.20 ind:pas:3s; +cuisons cuire VER 21.65 20.41 0.14 0.07 imp:pre:1p;ind:pre:1p; +cuissage cuissage NOM m s 0.02 0.34 0.02 0.34 +cuissard cuissard NOM m s 0.01 1.76 0.01 0.07 +cuissardes cuissarde NOM f p 0.26 0.00 0.26 0.00 +cuissards cuissard NOM m p 0.01 1.76 0.00 0.27 +cuisse_madame cuisse_madame NOM f s 0.00 0.07 0.00 0.07 +cuisse cuisse NOM f s 12.73 69.73 4.38 21.22 +cuisseau cuisseau NOM m s 0.14 0.00 0.14 0.00 +cuisses cuisse NOM f p 12.73 69.73 8.34 48.51 +cuissette cuissette NOM f s 0.00 0.14 0.00 0.07 +cuissettes cuissette NOM f p 0.00 0.14 0.00 0.07 +cuisson cuisson NOM f s 1.39 3.38 1.38 3.04 +cuissons cuisson NOM f p 1.39 3.38 0.01 0.34 +cuissot cuissot NOM m s 0.11 0.95 0.10 0.81 +cuissots cuissot NOM m p 0.11 0.95 0.01 0.14 +cuistance cuistance NOM f s 0.00 1.96 0.00 1.82 +cuistances cuistance NOM f p 0.00 1.96 0.00 0.14 +cuistot cuistot NOM m s 2.46 4.46 2.24 2.30 +cuistots cuistot NOM m p 2.46 4.46 0.22 2.16 +cuistre cuistre NOM m s 0.11 1.55 0.10 0.74 +cuistrerie cuistrerie NOM f s 0.00 0.34 0.00 0.20 +cuistreries cuistrerie NOM f p 0.00 0.34 0.00 0.14 +cuistres cuistre NOM m p 0.11 1.55 0.01 0.81 +cuit cuire VER m s 21.65 20.41 7.39 4.59 ind:pre:3s;par:pas; +cuitant cuiter VER 0.20 0.34 0.01 0.00 par:pre; +cuite cuit ADJ f s 8.39 15.41 2.79 5.74 +cuiter cuiter VER 0.20 0.34 0.12 0.20 inf; +cuites cuit ADJ f p 8.39 15.41 1.02 3.31 +cuits cuire VER m p 21.65 20.41 2.40 1.15 par:pas; +cuité cuiter VER m s 0.20 0.34 0.07 0.14 par:pas; +cuivra cuivrer VER 0.28 1.08 0.00 0.07 ind:pas:3s; +cuivrait cuivrer VER 0.28 1.08 0.00 0.07 ind:imp:3s; +cuivre cuivre NOM m s 5.64 36.08 4.74 30.68 +cuivres cuivre NOM m p 5.64 36.08 0.90 5.41 +cuivreux cuivreux ADJ m 0.03 0.27 0.03 0.27 +cuivré cuivré ADJ m s 0.07 3.24 0.01 1.22 +cuivrée cuivrer VER f s 0.28 1.08 0.27 0.27 par:pas; +cuivrées cuivré ADJ f p 0.07 3.24 0.00 0.41 +cuivrés cuivré ADJ m p 0.07 3.24 0.01 0.47 +cul_blanc cul_blanc NOM m s 0.16 0.20 0.01 0.14 +cul_bénit cul_bénit NOM m s 0.08 0.20 0.02 0.07 +cul_cul cul_cul ADJ 0.04 0.00 0.04 0.00 +cul_de_basse_fosse cul_de_basse_fosse NOM m s 0.01 0.41 0.01 0.41 +cul_de_four cul_de_four NOM m s 0.00 0.20 0.00 0.20 +cul_de_jatte cul_de_jatte NOM m s 0.54 1.42 0.42 1.08 +cul_de_lampe cul_de_lampe NOM m s 0.01 0.20 0.01 0.14 +cul_de_plomb cul_de_plomb NOM m s 0.00 0.07 0.00 0.07 +cul_de_porc cul_de_porc NOM m s 0.02 0.00 0.02 0.00 +cul_de_poule cul_de_poule NOM m s 0.00 0.14 0.00 0.14 +cul_de_sac cul_de_sac NOM m s 0.80 1.55 0.75 1.22 +cul_terreux cul_terreux NOM m 2.23 1.28 1.60 0.41 +cul cul NOM m s 150.81 68.31 145.85 64.46 +céladon céladon NOM m s 0.22 0.47 0.22 0.47 +culasse culasse NOM f s 0.60 3.51 0.60 2.84 +culasses culasse NOM f p 0.60 3.51 0.00 0.68 +culbuta culbuter VER 1.14 5.54 0.00 0.41 ind:pas:3s; +culbutages culbutage NOM m p 0.00 0.07 0.00 0.07 +culbutaient culbuter VER 1.14 5.54 0.02 0.14 ind:imp:3p; +culbutait culbuter VER 1.14 5.54 0.11 0.68 ind:imp:3s; +culbutant culbuter VER 1.14 5.54 0.01 0.47 par:pre; +culbute culbute NOM f s 1.72 1.01 1.52 0.68 +culbutent culbuter VER 1.14 5.54 0.14 0.14 ind:pre:3p; +culbuter culbuter VER 1.14 5.54 0.57 1.49 inf; +culbuterais culbuter VER 1.14 5.54 0.01 0.00 cnd:pre:1s; +culbutes culbute NOM f p 1.72 1.01 0.20 0.34 +culbuteur culbuteur NOM m s 0.06 0.27 0.04 0.14 +culbuteurs culbuteur NOM m p 0.06 0.27 0.01 0.14 +culbuto culbuto NOM m s 0.03 0.14 0.03 0.14 +culbutèrent culbuter VER 1.14 5.54 0.00 0.07 ind:pas:3p; +culbuté culbuter VER m s 1.14 5.54 0.15 0.74 par:pas; +culbutée culbuter VER f s 1.14 5.54 0.04 0.27 par:pas; +culbutées culbuter VER f p 1.14 5.54 0.00 0.27 par:pas; +culbutés culbuter VER m p 1.14 5.54 0.01 0.20 par:pas; +cule culer VER 0.24 0.14 0.08 0.00 imp:pre:2s;ind:pre:3s; +culer culer VER 0.24 0.14 0.03 0.00 inf; +céleri céleri NOM m s 1.62 1.01 1.43 0.81 +céleris céleri NOM m p 1.62 1.01 0.19 0.20 +céleste céleste ADJ s 6.48 7.30 4.43 5.81 +célestes céleste ADJ p 6.48 7.30 2.04 1.49 +célestin célestin NOM m s 0.01 0.20 0.01 0.00 +célestins célestin NOM m p 0.01 0.20 0.00 0.20 +culex culex NOM m 0.02 0.00 0.02 0.00 +célibat célibat NOM m s 1.75 1.35 1.75 1.35 +célibataire célibataire ADJ s 13.48 4.05 11.02 3.45 +célibataires célibataire NOM p 7.69 4.86 3.15 2.64 +célimène célimène NOM f s 0.79 0.07 0.79 0.07 +culinaire culinaire ADJ s 1.60 2.36 1.14 1.22 +culinaires culinaire ADJ p 1.60 2.36 0.46 1.15 +célinien célinien ADJ m s 0.00 0.14 0.00 0.07 +célinienne célinien ADJ f s 0.00 0.14 0.00 0.07 +culmina culminer VER 0.27 1.28 0.01 0.20 ind:pas:3s; +culminait culminer VER 0.27 1.28 0.00 0.41 ind:imp:3s; +culminance culminance NOM f s 0.00 0.07 0.00 0.07 +culminant culminant ADJ m s 0.50 1.82 0.48 1.69 +culminants culminant ADJ m p 0.50 1.82 0.02 0.14 +culmination culmination NOM f s 0.02 0.34 0.02 0.34 +culmine culminer VER 0.27 1.28 0.18 0.27 ind:pre:3s; +culminent culminer VER 0.27 1.28 0.02 0.00 ind:pre:3p; +culminer culminer VER 0.27 1.28 0.03 0.20 inf; +culminé culminer VER m s 0.27 1.28 0.01 0.14 par:pas; +culons culer VER 0.24 0.14 0.00 0.07 imp:pre:1p; +culot culot NOM m s 9.73 7.23 9.24 6.76 +culots culot NOM m p 9.73 7.23 0.49 0.47 +culotte culotte NOM f s 18.14 37.30 13.34 27.70 +culotter culotter VER 0.63 1.42 0.00 0.07 inf; +culottes culotte NOM f p 18.14 37.30 4.80 9.59 +culottier culottier NOM m s 0.00 0.41 0.00 0.07 +culottiers culottier NOM m p 0.00 0.41 0.00 0.07 +culottière culottier NOM f s 0.00 0.41 0.00 0.20 +culottières culottier NOM f p 0.00 0.41 0.00 0.07 +culotté culotté ADJ m s 0.70 0.88 0.55 0.47 +culottée culotté ADJ f s 0.70 0.88 0.15 0.34 +culottées culotter VER f p 0.63 1.42 0.01 0.14 par:pas; +culottés culotté ADJ m p 0.70 0.88 0.01 0.07 +culpabilisais culpabiliser VER 5.34 0.47 0.35 0.00 ind:imp:1s; +culpabilisait culpabiliser VER 5.34 0.47 0.04 0.14 ind:imp:3s; +culpabilisant culpabiliser VER 5.34 0.47 0.02 0.00 par:pre; +culpabilisation culpabilisation NOM f s 0.01 0.20 0.01 0.20 +culpabilise culpabiliser VER 5.34 0.47 1.75 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +culpabilisent culpabiliser VER 5.34 0.47 0.20 0.00 ind:pre:3p; +culpabiliser culpabiliser VER 5.34 0.47 2.07 0.20 inf; +culpabiliserai culpabiliser VER 5.34 0.47 0.02 0.00 ind:fut:1s; +culpabilises culpabiliser VER 5.34 0.47 0.33 0.00 ind:pre:2s; +culpabilisez culpabiliser VER 5.34 0.47 0.25 0.00 imp:pre:2p;ind:pre:2p; +culpabilisiez culpabiliser VER 5.34 0.47 0.03 0.00 ind:imp:2p; +culpabilisons culpabiliser VER 5.34 0.47 0.03 0.00 imp:pre:1p;ind:pre:1p; +culpabilisé culpabiliser VER m s 5.34 0.47 0.22 0.00 par:pas; +culpabilisée culpabiliser VER f s 5.34 0.47 0.02 0.14 par:pas; +culpabilisés culpabiliser VER m p 5.34 0.47 0.01 0.00 par:pas; +culpabilité culpabilité NOM f s 11.57 6.22 11.57 6.22 +cul_blanc cul_blanc NOM m p 0.16 0.20 0.14 0.07 +cul_bénit cul_bénit NOM m p 0.08 0.20 0.06 0.14 +culs_de_basse_fosse culs_de_basse_fosse NOM m p 0.00 0.27 0.00 0.27 +cul_de_jatte cul_de_jatte NOM m p 0.54 1.42 0.12 0.34 +cul_de_lampe cul_de_lampe NOM m p 0.01 0.20 0.00 0.07 +cul_de_sac cul_de_sac NOM m p 0.80 1.55 0.05 0.34 +cul_terreux cul_terreux NOM m p 2.23 1.28 0.63 0.88 +culs cul NOM m p 150.81 68.31 4.96 3.85 +culte culte NOM m s 5.37 14.93 4.74 13.58 +cultes culte NOM m p 5.37 14.93 0.63 1.35 +célèbre célèbre ADJ s 31.67 33.58 25.98 24.73 +célèbrent célébrer VER 17.50 20.07 0.40 0.54 ind:pre:3p; +célèbres célèbre ADJ p 31.67 33.58 5.69 8.85 +cultiva cultiver VER 10.30 13.51 0.14 0.07 ind:pas:3s; +cultivable cultivable ADJ s 0.07 0.41 0.04 0.20 +cultivables cultivable ADJ p 0.07 0.41 0.02 0.20 +cultivai cultiver VER 10.30 13.51 0.00 0.07 ind:pas:1s; +cultivaient cultiver VER 10.30 13.51 0.12 0.41 ind:imp:3p; +cultivais cultiver VER 10.30 13.51 0.16 0.20 ind:imp:1s; +cultivait cultiver VER 10.30 13.51 0.44 1.82 ind:imp:3s; +cultivant cultiver VER 10.30 13.51 0.09 0.74 par:pre; +cultivateur cultivateur NOM m s 0.82 2.84 0.46 0.88 +cultivateurs cultivateur NOM m p 0.82 2.84 0.26 1.76 +cultivatrice cultivateur NOM f s 0.82 2.84 0.10 0.07 +cultivatrices cultivateur NOM f p 0.82 2.84 0.00 0.14 +cultive cultiver VER 10.30 13.51 2.79 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +cultivent cultiver VER 10.30 13.51 0.36 0.81 ind:pre:3p; +cultiver cultiver VER 10.30 13.51 3.34 4.32 inf;; +cultivera cultiver VER 10.30 13.51 0.39 0.00 ind:fut:3s; +cultiverai cultiver VER 10.30 13.51 0.04 0.07 ind:fut:1s; +cultiveraient cultiver VER 10.30 13.51 0.14 0.00 cnd:pre:3p; +cultiverait cultiver VER 10.30 13.51 0.00 0.20 cnd:pre:3s; +cultiveras cultiver VER 10.30 13.51 0.02 0.07 ind:fut:2s; +cultives cultiver VER 10.30 13.51 0.04 0.07 ind:pre:2s; +cultivez cultiver VER 10.30 13.51 0.59 0.07 imp:pre:2p;ind:pre:2p; +cultivions cultiver VER 10.30 13.51 0.02 0.07 ind:imp:1p; +cultivons cultiver VER 10.30 13.51 0.22 0.00 imp:pre:1p;ind:pre:1p; +cultivèrent cultiver VER 10.30 13.51 0.00 0.07 ind:pas:3p; +cultivé cultivé ADJ m s 2.29 6.89 1.52 2.64 +cultivée cultiver VER f s 10.30 13.51 0.45 0.88 par:pas; +cultivées cultiver VER f p 10.30 13.51 0.04 0.20 par:pas; +cultivés cultivé ADJ m p 2.29 6.89 0.48 1.69 +cultural cultural ADJ m s 0.01 0.00 0.01 0.00 +culturalismes culturalisme NOM m p 0.00 0.07 0.00 0.07 +culture culture NOM f s 22.65 28.51 18.76 24.32 +culturel culturel ADJ m s 6.04 9.73 2.31 5.14 +culturelle culturel ADJ f s 6.04 9.73 2.25 2.03 +culturellement culturellement ADV 0.36 0.00 0.36 0.00 +culturelles culturel ADJ f p 6.04 9.73 0.89 1.28 +culturels culturel ADJ m p 6.04 9.73 0.60 1.28 +cultures culture NOM f p 22.65 28.51 3.89 4.19 +culturisme culturisme NOM m s 0.41 0.07 0.41 0.07 +culturiste culturiste NOM s 0.14 0.20 0.10 0.07 +culturistes culturiste NOM p 0.14 0.20 0.05 0.14 +culé culer VER m s 0.24 0.14 0.14 0.07 par:pas; +célébra célébrer VER 17.50 20.07 0.03 0.61 ind:pas:3s; +célébraient célébrer VER 17.50 20.07 0.14 0.95 ind:imp:3p; +célébrais célébrer VER 17.50 20.07 0.04 0.07 ind:imp:1s;ind:imp:2s; +célébrait célébrer VER 17.50 20.07 0.37 1.49 ind:imp:3s; +célébrant célébrer VER 17.50 20.07 0.11 0.81 par:pre; +célébrants célébrant NOM m p 0.11 0.74 0.00 0.14 +célébration célébration NOM f s 2.79 2.64 2.30 1.96 +célébrations célébration NOM f p 2.79 2.64 0.49 0.68 +célébrer célébrer VER 17.50 20.07 7.92 5.74 inf; +célébrera célébrer VER 17.50 20.07 0.06 0.07 ind:fut:3s; +célébrerais célébrer VER 17.50 20.07 0.01 0.07 cnd:pre:1s; +célébrerait célébrer VER 17.50 20.07 0.00 0.20 cnd:pre:3s; +célébrerons célébrer VER 17.50 20.07 0.29 0.00 ind:fut:1p; +célébreront célébrer VER 17.50 20.07 0.17 0.00 ind:fut:3p; +célébriez célébrer VER 17.50 20.07 0.11 0.00 ind:imp:2p; +célébrions célébrer VER 17.50 20.07 0.11 0.07 ind:imp:1p; +célébrissime célébrissime ADJ s 0.09 0.07 0.09 0.07 +célébrité célébrité NOM f s 6.42 4.80 4.15 3.51 +célébrités célébrité NOM f p 6.42 4.80 2.27 1.28 +célébrâmes célébrer VER 17.50 20.07 0.10 0.07 ind:pas:1p; +célébrons célébrer VER 17.50 20.07 1.27 0.47 imp:pre:1p;ind:pre:1p; +célébrât célébrer VER 17.50 20.07 0.00 0.14 sub:imp:3s; +célébrèrent célébrer VER 17.50 20.07 0.01 0.14 ind:pas:3p; +célébré célébrer VER m s 17.50 20.07 1.75 2.50 par:pas; +célébrée célébrer VER f s 17.50 20.07 0.20 1.35 par:pas; +célébrées célébrer VER f p 17.50 20.07 0.26 0.81 par:pas; +célébrés célébrer VER m p 17.50 20.07 0.05 0.41 par:pas; +culée culée NOM f s 0.00 0.07 0.00 0.07 +célérifère célérifère NOM m s 0.00 0.07 0.00 0.07 +célérité célérité NOM f s 0.26 0.88 0.26 0.88 +cumin cumin NOM m s 0.50 0.74 0.50 0.74 +cumul cumul NOM m s 0.02 0.20 0.02 0.20 +cumulaient cumuler VER 0.65 1.35 0.00 0.07 ind:imp:3p; +cumulait cumuler VER 0.65 1.35 0.01 0.34 ind:imp:3s; +cumulant cumuler VER 0.65 1.35 0.03 0.07 par:pre; +cumulard cumulard NOM m s 0.01 0.00 0.01 0.00 +cumulatif cumulatif ADJ m s 0.11 0.20 0.11 0.07 +cumulatifs cumulatif ADJ m p 0.11 0.20 0.00 0.07 +cumulation cumulation NOM f s 0.00 0.07 0.00 0.07 +cumulative cumulatif ADJ f s 0.11 0.20 0.00 0.07 +cumule cumuler VER 0.65 1.35 0.26 0.34 ind:pre:1s;ind:pre:3s; +cumuler cumuler VER 0.65 1.35 0.07 0.20 inf; +cumulera cumuler VER 0.65 1.35 0.01 0.00 ind:fut:3s; +cumulez cumuler VER 0.65 1.35 0.14 0.07 ind:pre:2p; +cumuliez cumuler VER 0.65 1.35 0.00 0.07 ind:imp:2p; +cumulo_nimbus cumulo_nimbus NOM m 0.02 0.14 0.02 0.14 +cumulé cumuler VER m s 0.65 1.35 0.09 0.14 par:pas; +cumulés cumuler VER m p 0.65 1.35 0.04 0.07 par:pas; +cumulus cumulus NOM m 0.09 0.81 0.09 0.81 +cénacle cénacle NOM m s 0.41 0.27 0.41 0.14 +cénacles cénacle NOM m p 0.41 0.27 0.00 0.14 +cunnilinctus cunnilinctus NOM m 0.00 0.07 0.00 0.07 +cunnilingus cunnilingus NOM m 0.24 0.07 0.24 0.07 +cénobite cénobite NOM m s 0.05 0.07 0.01 0.07 +cénobites cénobite NOM m p 0.05 0.07 0.04 0.00 +cénotaphe cénotaphe NOM m s 0.01 0.41 0.01 0.41 +cunéiforme cunéiforme ADJ s 0.14 0.20 0.12 0.20 +cunéiformes cunéiforme ADJ p 0.14 0.20 0.03 0.00 +cépage cépage NOM m s 0.04 0.00 0.04 0.00 +céphaline céphaline NOM f s 0.01 0.00 0.01 0.00 +céphalique céphalique ADJ s 0.02 0.20 0.02 0.20 +céphalo_rachidien céphalo_rachidien ADJ m s 0.30 0.00 0.30 0.00 +céphalopode céphalopode NOM m s 0.05 0.00 0.02 0.00 +céphalopodes céphalopode NOM m p 0.05 0.00 0.03 0.00 +céphalorachidien céphalorachidien ADJ m s 0.09 0.00 0.09 0.00 +céphalosporine céphalosporine NOM f s 0.03 0.00 0.03 0.00 +céphalée céphalée NOM f s 0.14 0.20 0.04 0.07 +céphalées céphalée NOM f p 0.14 0.20 0.10 0.14 +cupide cupide ADJ s 1.47 1.15 1.02 0.88 +cupidement cupidement ADV 0.00 0.07 0.00 0.07 +cupides cupide ADJ p 1.47 1.15 0.45 0.27 +cupidité cupidité NOM f s 1.77 1.96 1.77 1.96 +cupidon cupidon NOM m s 0.08 0.27 0.04 0.20 +cupidons cupidon NOM m p 0.08 0.27 0.04 0.07 +cupressus cupressus NOM m 0.00 0.27 0.00 0.27 +cuprifères cuprifère ADJ p 0.00 0.07 0.00 0.07 +cupriques cuprique ADJ f p 0.00 0.07 0.00 0.07 +cupronickel cupronickel NOM m s 0.01 0.00 0.01 0.00 +cépée cépée NOM f s 0.00 0.20 0.00 0.14 +cépées cépée NOM f p 0.00 0.20 0.00 0.07 +cupule cupule NOM f s 0.01 0.20 0.01 0.14 +cupules cupule NOM f p 0.01 0.20 0.00 0.07 +cura curer VER 2.25 3.72 0.01 0.14 ind:pas:3s; +curable curable ADJ f s 0.33 0.00 0.32 0.00 +curables curable ADJ p 0.33 0.00 0.01 0.00 +curage curage NOM m s 0.00 0.07 0.00 0.07 +curaille curaille NOM f s 0.00 0.07 0.00 0.07 +curaillon curaillon NOM m s 0.14 0.00 0.14 0.00 +curait curer VER 2.25 3.72 0.02 0.61 ind:imp:3s; +céramique céramique NOM f s 0.85 3.24 0.61 2.50 +céramiques céramique NOM f p 0.85 3.24 0.24 0.74 +céramiste céramiste NOM s 0.13 0.00 0.13 0.00 +curant curer VER 2.25 3.72 0.01 0.14 par:pre; +curare curare NOM m s 0.22 0.47 0.22 0.47 +curarisant curarisant ADJ m s 0.00 0.07 0.00 0.07 +curariser curariser VER 0.01 0.00 0.01 0.00 inf; +curateur curateur NOM m s 0.07 0.14 0.06 0.14 +curaçao curaçao NOM m s 0.04 0.54 0.04 0.47 +curaçaos curaçao NOM m p 0.04 0.54 0.00 0.07 +curatif curatif ADJ m s 0.65 0.34 0.21 0.14 +curatifs curatif ADJ m p 0.65 0.34 0.18 0.07 +curative curatif ADJ f s 0.65 0.34 0.05 0.07 +curatives curatif ADJ f p 0.65 0.34 0.21 0.07 +curatrice curateur NOM f s 0.07 0.14 0.01 0.00 +curcuma curcuma NOM m s 0.00 0.07 0.00 0.07 +cure_dent cure_dent NOM m s 1.39 0.88 0.60 0.14 +cure_dent cure_dent NOM m p 1.39 0.88 0.78 0.74 +cure_pipe cure_pipe NOM m s 0.07 0.00 0.05 0.00 +cure_pipe cure_pipe NOM m p 0.07 0.00 0.02 0.00 +cure cure NOM f s 6.08 9.12 5.60 8.18 +curer curer VER 2.25 3.72 0.80 0.95 inf; +cureras curer VER 2.25 3.72 0.01 0.00 ind:fut:2s; +cures cure NOM f p 6.08 9.12 0.48 0.95 +curetage curetage NOM m s 0.14 0.00 0.14 0.00 +cureter cureter VER 0.01 0.00 0.01 0.00 inf; +cureton cureton NOM m s 0.38 2.50 0.22 1.69 +curetons cureton NOM m p 0.38 2.50 0.17 0.81 +curette curette NOM f s 0.02 0.00 0.01 0.00 +curettes curette NOM f p 0.02 0.00 0.01 0.00 +curial curial ADJ m s 0.00 0.27 0.00 0.20 +curiales curial ADJ f p 0.00 0.27 0.00 0.07 +curie curie NOM s 0.36 0.14 0.36 0.14 +curieuse curieux ADJ f s 34.36 66.22 7.81 17.23 +curieusement curieusement ADV 1.90 12.84 1.90 12.84 +curieuses curieux ADJ f p 34.36 66.22 0.44 4.73 +curieux curieux ADJ m 34.36 66.22 26.11 44.26 +curiosité curiosité NOM f s 14.01 54.39 13.70 49.80 +curiosités curiosité NOM f p 14.01 54.39 0.31 4.59 +curiste curiste NOM s 0.10 0.95 0.00 0.07 +curistes curiste NOM p 0.10 0.95 0.10 0.88 +curling curling NOM m s 0.12 0.14 0.12 0.14 +curricula curriculum NOM m p 0.23 0.41 0.00 0.14 +curriculum_vitae curriculum_vitae NOM m 0.13 0.74 0.13 0.74 +curriculum curriculum NOM m s 0.23 0.41 0.23 0.27 +curry curry NOM m s 1.65 0.14 1.65 0.14 +curseur curseur NOM m s 0.11 0.07 0.11 0.07 +cursif cursif ADJ m s 0.05 0.34 0.02 0.14 +cursive cursif ADJ f s 0.05 0.34 0.03 0.20 +cursus cursus NOM m 0.54 0.07 0.54 0.07 +curé curé NOM m s 15.73 51.82 13.65 46.62 +céréale céréale NOM f s 4.67 1.69 0.06 0.07 +céréales céréale NOM f p 4.67 1.69 4.62 1.62 +céréalier céréalier ADJ m s 0.00 0.54 0.00 0.14 +céréaliers céréalier ADJ m p 0.00 0.54 0.00 0.14 +céréalière céréalier ADJ f s 0.00 0.54 0.00 0.07 +céréalières céréalier ADJ f p 0.00 0.54 0.00 0.20 +cérébelleuse cérébelleux ADJ f s 0.03 0.07 0.02 0.07 +cérébelleuses cérébelleux ADJ f p 0.03 0.07 0.01 0.00 +cérébral cérébral ADJ m s 11.59 3.31 2.90 0.88 +cérébrale cérébral ADJ f s 11.59 3.31 6.10 2.23 +cérébralement cérébralement ADV 0.04 0.07 0.04 0.07 +cérébrales cérébral ADJ f p 11.59 3.31 2.09 0.07 +cérébralité cérébralité NOM f s 0.00 0.07 0.00 0.07 +cérébraux cérébral ADJ m p 11.59 3.31 0.51 0.14 +cérébro_spinal cérébro_spinal ADJ f s 0.03 0.14 0.03 0.14 +curée curée NOM f s 0.06 1.22 0.06 1.15 +curées curée NOM f p 0.06 1.22 0.00 0.07 +céruléen céruléen ADJ m s 0.00 0.74 0.00 0.47 +céruléens céruléen ADJ m p 0.00 0.74 0.00 0.27 +cérumen cérumen NOM m s 0.13 0.41 0.13 0.41 +cérémoniaires cérémoniaire NOM m p 0.00 0.07 0.00 0.07 +cérémonial cérémonial NOM m s 0.69 4.46 0.69 4.39 +cérémoniale cérémonial ADJ f s 0.13 0.41 0.02 0.07 +cérémonials cérémonial NOM m p 0.69 4.46 0.00 0.07 +cérémonie cérémonie NOM f s 23.82 30.95 21.72 23.92 +cérémoniel cérémoniel ADJ m s 0.09 0.14 0.05 0.07 +cérémonielle cérémoniel ADJ f s 0.09 0.14 0.02 0.00 +cérémoniels cérémoniel ADJ m p 0.09 0.14 0.01 0.07 +cérémonies cérémonie NOM f p 23.82 30.95 2.10 7.03 +cérémonieuse cérémonieux ADJ f s 0.06 3.24 0.01 0.95 +cérémonieusement cérémonieusement ADV 0.02 1.76 0.02 1.76 +cérémonieuses cérémonieux ADJ f p 0.06 3.24 0.00 0.41 +cérémonieux cérémonieux ADJ m 0.06 3.24 0.04 1.89 +curés curé NOM m p 15.73 51.82 2.08 5.20 +céruse céruse NOM f s 0.00 0.14 0.00 0.14 +cérusé cérusé ADJ m s 0.00 0.14 0.00 0.14 +curve curve ADJ s 0.09 0.00 0.09 0.00 +curviligne curviligne ADJ m s 0.01 0.14 0.00 0.07 +curvilignes curviligne ADJ f p 0.01 0.14 0.01 0.07 +curvimètres curvimètre NOM m p 0.00 0.07 0.00 0.07 +césar césar NOM m s 0.59 1.15 0.01 0.20 +césarien césarien ADJ m s 0.11 0.27 0.10 0.00 +césarienne césarien NOM f s 1.56 0.47 1.56 0.41 +césariennes césarienne NOM f p 0.07 0.00 0.07 0.00 +césariens césarien ADJ m p 0.11 0.27 0.00 0.07 +césars césar NOM m p 0.59 1.15 0.58 0.95 +césium césium NOM m s 0.20 0.00 0.20 0.00 +custode custode NOM f s 0.00 0.14 0.00 0.14 +custom custom NOM m s 0.01 0.00 0.01 0.00 +customisé customiser VER m s 0.07 0.00 0.07 0.00 par:pas; +césure césure NOM f s 0.14 0.47 0.14 0.41 +césures césure NOM f p 0.14 0.47 0.00 0.07 +cétacé cétacé NOM m s 0.19 0.14 0.03 0.14 +cétacés cétacé NOM m p 0.19 0.14 0.16 0.00 +cutané cutané ADJ m s 0.41 0.20 0.05 0.00 +cutanée cutané ADJ f s 0.41 0.20 0.15 0.14 +cutanées cutané ADJ f p 0.41 0.20 0.16 0.00 +cutanés cutané ADJ m p 0.41 0.20 0.05 0.07 +cuti_réaction cuti_réaction NOM f s 0.00 0.07 0.00 0.07 +cuti cuti NOM f s 0.30 0.47 0.30 0.41 +cuticule cuticule NOM f s 0.18 0.07 0.04 0.07 +cuticules cuticule NOM f p 0.18 0.07 0.14 0.00 +cutis cuti NOM f p 0.30 0.47 0.00 0.07 +cétoine cétoine NOM f s 0.00 0.27 0.00 0.14 +cétoines cétoine NOM f p 0.00 0.27 0.00 0.14 +cétone cétone NOM f s 0.01 0.00 0.01 0.00 +cutter cutter NOM m s 2.41 0.07 2.36 0.07 +cutters cutter NOM m p 2.41 0.07 0.04 0.00 +cévadille cévadille NOM f s 0.00 0.07 0.00 0.07 +cuvaient cuver VER 1.10 2.36 0.01 0.07 ind:imp:3p; +cuvait cuver VER 1.10 2.36 0.03 0.14 ind:imp:3s; +cuvant cuver VER 1.10 2.36 0.01 0.27 par:pre; +cuve cuve NOM f s 1.38 4.32 0.86 2.09 +cuveau cuveau NOM m s 0.00 0.34 0.00 0.27 +cuveaux cuveau NOM m p 0.00 0.34 0.00 0.07 +cévenol cévenol NOM m s 0.00 0.07 0.00 0.07 +cuvent cuver VER 1.10 2.36 0.00 0.07 ind:pre:3p; +cuver cuver VER 1.10 2.36 0.51 1.55 inf; +cuvera cuver VER 1.10 2.36 0.01 0.00 ind:fut:3s; +cuverez cuver VER 1.10 2.36 0.01 0.00 ind:fut:2p; +cuves cuve NOM f p 1.38 4.32 0.53 2.23 +cuvette cuvette NOM f s 2.49 12.97 2.38 11.82 +cuvettes cuvette NOM f p 2.49 12.97 0.10 1.15 +cuvier cuvier NOM m s 0.00 0.20 0.00 0.14 +cuviers cuvier NOM m p 0.00 0.20 0.00 0.07 +cuvé cuver VER m s 1.10 2.36 0.04 0.00 par:pas; +cuvée cuvée NOM f s 0.57 0.47 0.55 0.41 +cuvées cuvée NOM f p 0.57 0.47 0.02 0.07 +cézigue cézigue NOM m s 0.00 3.51 0.00 3.51 +cyan cyan ADJ s 0.25 0.00 0.25 0.00 +cyanhydrique cyanhydrique ADJ s 0.17 0.00 0.17 0.00 +cyanoacrylate cyanoacrylate NOM m s 0.05 0.00 0.05 0.00 +cyanobactérie cyanobactérie NOM f s 0.01 0.00 0.01 0.00 +cyanogène cyanogène NOM m s 0.03 0.00 0.03 0.00 +cyanose cyanose NOM f s 0.06 0.00 0.06 0.00 +cyanosé cyanoser VER m s 0.23 0.07 0.12 0.07 par:pas; +cyanosée cyanoser VER f s 0.23 0.07 0.12 0.00 par:pas; +cyanure cyanure NOM m s 2.23 0.95 2.23 0.95 +cybercafé cybercafé NOM m s 0.17 0.00 0.17 0.00 +cyberespace cyberespace NOM m s 0.13 0.00 0.13 0.00 +cybermonde cybermonde NOM m s 0.01 0.00 0.01 0.00 +cybernautes cybernaute NOM p 0.02 0.00 0.02 0.00 +cybernéticien cybernéticien ADJ m s 0.10 0.00 0.10 0.00 +cybernétique cybernétique ADJ s 0.26 0.07 0.19 0.07 +cybernétiques cybernétique ADJ m p 0.26 0.07 0.06 0.00 +cybernétiser cybernétiser VER 0.02 0.00 0.02 0.00 inf; +cyberspace cyberspace NOM m s 0.02 0.00 0.02 0.00 +cycas cycas NOM m 0.01 0.00 0.01 0.00 +cyclable cyclable ADJ s 0.05 0.20 0.05 0.14 +cyclables cyclable ADJ f p 0.05 0.20 0.00 0.07 +cyclamen cyclamen NOM m s 0.01 0.34 0.01 0.27 +cyclamens cyclamen NOM m p 0.01 0.34 0.00 0.07 +cycle cycle NOM m s 8.20 5.81 5.69 4.05 +cycles cycle NOM m p 8.20 5.81 2.50 1.76 +cyclique cyclique ADJ s 0.13 0.41 0.09 0.34 +cycliquement cycliquement ADV 0.01 0.07 0.01 0.07 +cycliques cyclique ADJ m p 0.13 0.41 0.04 0.07 +cyclisme cyclisme NOM m s 0.34 1.01 0.34 1.01 +cycliste cycliste NOM s 1.08 6.49 0.71 3.65 +cyclistes cycliste NOM p 1.08 6.49 0.37 2.84 +cyclo_cross cyclo_cross NOM m 0.00 0.07 0.00 0.07 +cyclo_pousse cyclo_pousse NOM m 0.05 0.00 0.05 0.00 +cyclo cyclo NOM m s 1.06 0.07 1.06 0.07 +cycloïdal cycloïdal ADJ m s 0.00 0.07 0.00 0.07 +cyclomoteur cyclomoteur NOM m s 0.23 0.14 0.23 0.07 +cyclomoteurs cyclomoteur NOM m p 0.23 0.14 0.00 0.07 +cyclone cyclone NOM m s 1.42 3.51 1.33 3.18 +cyclones cyclone NOM m p 1.42 3.51 0.09 0.34 +cyclonique cyclonique ADJ s 0.03 0.00 0.03 0.00 +cyclope cyclope NOM m s 1.31 2.36 1.12 2.23 +cyclopes cyclope NOM m p 1.31 2.36 0.20 0.14 +cyclopousses cyclopousse NOM m p 0.00 0.07 0.00 0.07 +cyclopéen cyclopéen ADJ m s 0.01 0.81 0.00 0.20 +cyclopéenne cyclopéen ADJ f s 0.01 0.81 0.01 0.20 +cyclopéennes cyclopéen ADJ f p 0.01 0.81 0.00 0.20 +cyclopéens cyclopéen ADJ m p 0.01 0.81 0.00 0.20 +cyclorama cyclorama NOM m s 0.02 0.00 0.02 0.00 +cyclosporine cyclosporine NOM f s 0.17 0.00 0.17 0.00 +cyclostomes cyclostome NOM m p 0.00 0.07 0.00 0.07 +cyclothymie cyclothymie NOM f s 0.10 0.07 0.10 0.07 +cyclothymique cyclothymique ADJ s 0.05 0.34 0.05 0.34 +cyclotron cyclotron NOM m s 0.16 0.27 0.16 0.27 +cyclées cycler VER f p 0.00 0.07 0.00 0.07 par:pas; +cygne cygne NOM m s 7.26 7.57 5.28 4.66 +cygnes cygne NOM m p 7.26 7.57 1.99 2.91 +cylindre cylindre NOM m s 1.60 5.20 0.62 3.11 +cylindres cylindre NOM m p 1.60 5.20 0.97 2.09 +cylindrique cylindrique ADJ s 0.35 3.45 0.10 2.23 +cylindriques cylindrique ADJ p 0.35 3.45 0.26 1.22 +cylindré cylindrer VER m s 0.02 0.20 0.00 0.07 par:pas; +cylindrée cylindrée NOM f s 0.41 0.68 0.36 0.61 +cylindrées cylindrée NOM f p 0.41 0.68 0.04 0.07 +cylindrés cylindrer VER m p 0.02 0.20 0.00 0.07 par:pas; +cymbale cymbale NOM f s 0.45 1.89 0.19 0.14 +cymbales cymbale NOM f p 0.45 1.89 0.26 1.76 +cymbaliste cymbaliste NOM s 0.14 0.27 0.14 0.07 +cymbalistes cymbaliste NOM p 0.14 0.27 0.00 0.20 +cymbalum cymbalum NOM m s 0.00 0.14 0.00 0.14 +cymes cyme NOM f p 0.00 0.07 0.00 0.07 +cynips cynips NOM m 0.01 0.00 0.01 0.00 +cynique cynique ADJ s 4.70 6.42 3.90 4.86 +cyniquement cyniquement ADV 0.00 0.74 0.00 0.74 +cyniques cynique ADJ p 4.70 6.42 0.80 1.55 +cynisme cynisme NOM m s 1.95 6.49 1.95 6.42 +cynismes cynisme NOM m p 1.95 6.49 0.00 0.07 +cynocéphale cynocéphale NOM m s 0.01 0.14 0.01 0.07 +cynocéphales cynocéphale NOM m p 0.01 0.14 0.00 0.07 +cynodrome cynodrome NOM m s 0.01 0.00 0.01 0.00 +cynophile cynophile ADJ f s 0.04 0.00 0.04 0.00 +cynos cyno NOM m p 0.00 0.07 0.00 0.07 +cynégétique cynégétique ADJ f s 0.00 0.27 0.00 0.14 +cynégétiques cynégétique ADJ m p 0.00 0.27 0.00 0.14 +cyphoscoliose cyphoscoliose NOM f s 0.01 0.00 0.01 0.00 +cyphose cyphose NOM f s 0.01 0.07 0.01 0.07 +cyprin cyprin NOM m s 0.00 1.82 0.00 1.62 +cyprinidé cyprinidé NOM m s 0.00 0.14 0.00 0.07 +cyprinidés cyprinidé NOM m p 0.00 0.14 0.00 0.07 +cyprins cyprin NOM m p 0.00 1.82 0.00 0.20 +cypriote cypriote NOM s 0.01 0.47 0.00 0.07 +cypriotes cypriote NOM p 0.01 0.47 0.01 0.41 +cyprès cyprès NOM m 0.52 8.51 0.52 8.51 +cyrard cyrard NOM m s 0.00 0.27 0.00 0.20 +cyrards cyrard NOM m p 0.00 0.27 0.00 0.07 +cyrillique cyrillique ADJ m s 0.22 0.47 0.07 0.14 +cyrilliques cyrillique ADJ p 0.22 0.47 0.15 0.34 +cystique cystique ADJ s 0.09 0.00 0.09 0.00 +cystite cystite NOM f s 0.09 0.00 0.09 0.00 +cystotomie cystotomie NOM f s 0.01 0.00 0.01 0.00 +cytises cytise NOM m p 0.00 0.27 0.00 0.27 +cytologie cytologie NOM f s 0.01 0.00 0.01 0.00 +cytologiques cytologique ADJ f p 0.00 0.07 0.00 0.07 +cytomégalovirus cytomégalovirus NOM m 0.08 0.00 0.08 0.00 +cytoplasme cytoplasme NOM m s 0.04 0.00 0.04 0.00 +cytoplasmique cytoplasmique ADJ m s 0.01 0.00 0.01 0.00 +cytosine cytosine NOM f s 0.04 0.00 0.04 0.00 +cytotoxique cytotoxique ADJ s 0.04 0.00 0.04 0.00 +czar czar NOM m s 0.00 0.54 0.00 0.41 +czardas czardas NOM f 0.01 0.14 0.01 0.14 +czars czar NOM m p 0.00 0.54 0.00 0.14 +d_ d_ PRE 7224.74 11876.35 7224.74 11876.35 +d_abord d_abord ADV 175.45 169.32 175.45 169.32 +d_autres d_autres ADJ:ind p 133.34 119.73 133.34 119.73 +d_emblée d_emblée ADV 1.31 8.38 1.31 8.38 +d_ores_et_déjà d_ores_et_déjà ADV 0.26 1.28 0.26 1.28 +d d PRE 54.68 2.97 54.68 2.97 +dîme dîme NOM f s 0.44 1.28 0.43 1.22 +dîmes dîme NOM f p 0.44 1.28 0.01 0.07 +dîna dîner VER 79.30 59.66 0.10 1.08 ind:pas:3s; +dînai dîner VER 79.30 59.66 0.00 0.68 ind:pas:1s; +dînaient dîner VER 79.30 59.66 0.05 1.55 ind:imp:3p; +dînais dîner VER 79.30 59.66 0.31 0.95 ind:imp:1s;ind:imp:2s; +dînait dîner VER 79.30 59.66 0.88 3.24 ind:imp:3s; +dînant dîner VER 79.30 59.66 0.33 1.15 par:pre; +dînatoire dînatoire ADJ s 0.29 0.14 0.29 0.00 +dînatoires dînatoire ADJ f p 0.29 0.14 0.00 0.14 +dîne dîner VER 79.30 59.66 8.22 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dînent dîner VER 79.30 59.66 0.47 0.47 ind:pre:3p; +dîner dîner NOM m s 88.45 68.58 84.73 60.00 +dînera dîner VER 79.30 59.66 1.36 0.54 ind:fut:3s; +dînerai dîner VER 79.30 59.66 0.22 0.14 ind:fut:1s; +dîneraient dîner VER 79.30 59.66 0.00 0.27 cnd:pre:3p; +dînerais dîner VER 79.30 59.66 0.26 0.07 cnd:pre:1s;cnd:pre:2s; +dînerait dîner VER 79.30 59.66 0.14 0.20 cnd:pre:3s; +dîneras dîner VER 79.30 59.66 0.22 0.07 ind:fut:2s; +dînerez dîner VER 79.30 59.66 0.55 0.27 ind:fut:2p; +dîneriez dîner VER 79.30 59.66 0.20 0.00 cnd:pre:2p; +dînerions dîner VER 79.30 59.66 0.00 0.14 cnd:pre:1p; +dînerons dîner VER 79.30 59.66 0.59 0.47 ind:fut:1p; +dîneront dîner VER 79.30 59.66 0.05 0.00 ind:fut:3p; +dîners dîner NOM m p 88.45 68.58 3.72 8.58 +dînes dîner VER 79.30 59.66 1.42 0.14 ind:pre:2s; +dînette dînette NOM f s 0.59 1.55 0.49 1.35 +dînettes dînette NOM f p 0.59 1.55 0.10 0.20 +dîneur dîneur NOM m s 0.01 2.57 0.01 0.14 +dîneurs dîneur NOM m p 0.01 2.57 0.00 2.23 +dîneuse dîneur NOM f s 0.01 2.57 0.00 0.20 +dînez dîner VER 79.30 59.66 2.13 0.27 imp:pre:2p;ind:pre:2p; +dîniez dîner VER 79.30 59.66 0.20 0.00 ind:imp:2p; +dînions dîner VER 79.30 59.66 0.26 1.69 ind:imp:1p; +dînâmes dîner VER 79.30 59.66 0.01 0.34 ind:pas:1p; +dînons dîner VER 79.30 59.66 1.95 1.89 imp:pre:1p;ind:pre:1p; +dînât dîner VER 79.30 59.66 0.00 0.07 sub:imp:3s; +dînèrent dîner VER 79.30 59.66 0.04 1.22 ind:pas:3p; +dîné dîner VER m s 79.30 59.66 7.54 6.15 par:pas; +dît dire VER 5946.17 4832.50 0.34 1.22 sub:imp:3s; +dîtes dire VER 5946.17 4832.50 10.24 0.07 ind:pas:2p; +dôle dôle NOM m s 0.01 0.00 0.01 0.00 +dôme dôme NOM m s 1.93 4.93 1.81 3.78 +dômes dôme NOM m p 1.93 4.93 0.12 1.15 +dôngs dông NOM m p 0.14 0.00 0.14 0.00 +dû devoir VER m s 3232.80 1318.24 363.68 243.65 par:pas; +dûment dûment ADV 0.55 4.32 0.55 4.32 +dûmes devoir VER 3232.80 1318.24 0.04 1.55 ind:pas:1p; +dût devoir VER 3232.80 1318.24 0.65 4.19 sub:imp:3s; +da da ONO 8.02 3.24 8.02 3.24 +daïmios daïmio NOM m p 0.00 0.14 0.00 0.14 +daïquiri daïquiri NOM m s 0.14 0.14 0.01 0.14 +daïquiris daïquiri NOM m p 0.14 0.14 0.14 0.00 +dab dab NOM m s 0.17 1.35 0.17 1.28 +daba daba NOM f s 0.01 0.00 0.01 0.00 +dabe dabe NOM m s 0.00 1.42 0.00 1.42 +dabs dab NOM m p 0.17 1.35 0.00 0.07 +dabuche dabuche NOM f s 0.00 0.54 0.00 0.47 +dabuches dabuche NOM f p 0.00 0.54 0.00 0.07 +dace dace ADJ s 0.04 0.61 0.03 0.07 +daces dace ADJ p 0.04 0.61 0.01 0.54 +dache dache NOM m s 0.00 0.27 0.00 0.27 +dacique dacique ADJ s 0.00 0.14 0.00 0.14 +dacron dacron NOM m s 0.02 0.07 0.02 0.07 +dactyle dactyle NOM m s 0.00 0.20 0.00 0.07 +dactyles dactyle NOM m p 0.00 0.20 0.00 0.14 +dactylo dactylo NOM s 0.93 4.66 0.73 2.97 +dactylographe dactylographe NOM s 0.10 0.34 0.00 0.34 +dactylographes dactylographe NOM p 0.10 0.34 0.10 0.00 +dactylographie dactylographie NOM f s 0.04 0.41 0.04 0.41 +dactylographier dactylographier VER 0.09 0.61 0.06 0.20 inf; +dactylographié dactylographié ADJ m s 0.11 1.08 0.06 0.20 +dactylographiée dactylographié ADJ f s 0.11 1.08 0.04 0.34 +dactylographiées dactylographié ADJ f p 0.11 1.08 0.00 0.41 +dactylographiés dactylographié ADJ m p 0.11 1.08 0.01 0.14 +dactyloptères dactyloptère NOM m p 0.02 0.00 0.02 0.00 +dactylos dactylo NOM p 0.93 4.66 0.20 1.69 +dactyloscopie dactyloscopie NOM f s 0.11 0.00 0.11 0.00 +dada dada NOM m s 1.90 2.57 1.80 1.96 +dadaïsme dadaïsme NOM m s 0.01 0.00 0.01 0.00 +dadaïste dadaïste ADJ f s 0.01 0.07 0.01 0.00 +dadaïstes dadaïste NOM p 0.01 0.07 0.01 0.07 +dadais dadais NOM m 0.34 1.28 0.34 1.28 +dadas dada NOM m p 1.90 2.57 0.10 0.61 +dague dague NOM f s 2.46 2.09 2.19 1.55 +daguerréotype daguerréotype NOM m s 0.10 0.34 0.10 0.27 +daguerréotypes daguerréotype NOM m p 0.10 0.34 0.00 0.07 +dagues dague NOM f p 2.46 2.09 0.27 0.54 +daguet daguet NOM m s 0.00 0.41 0.00 0.34 +daguets daguet NOM m p 0.00 0.41 0.00 0.07 +dagué daguer VER m s 0.00 0.07 0.00 0.07 par:pas; +dahlia dahlia NOM m s 0.02 2.50 0.00 0.20 +dahlias dahlia NOM m p 0.02 2.50 0.02 2.30 +dahoméenne dahoméen ADJ f s 0.00 0.07 0.00 0.07 +dahu dahu NOM m s 0.19 0.14 0.18 0.14 +dahus dahu NOM m p 0.19 0.14 0.01 0.00 +daigna daigner VER 4.41 9.39 0.00 1.69 ind:pas:3s; +daignaient daigner VER 4.41 9.39 0.00 0.34 ind:imp:3p; +daignait daigner VER 4.41 9.39 0.13 1.49 ind:imp:3s; +daignant daigner VER 4.41 9.39 0.01 0.20 par:pre; +daigne daigner VER 4.41 9.39 1.09 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +daignent daigner VER 4.41 9.39 0.07 0.27 ind:pre:3p; +daigner daigner VER 4.41 9.39 0.02 0.34 inf; +daignera daigner VER 4.41 9.39 0.03 0.27 ind:fut:3s; +daigneraient daigner VER 4.41 9.39 0.01 0.07 cnd:pre:3p; +daignerais daigner VER 4.41 9.39 0.00 0.07 cnd:pre:1s; +daignerait daigner VER 4.41 9.39 0.19 0.00 cnd:pre:3s; +daigneras daigner VER 4.41 9.39 0.01 0.00 ind:fut:2s; +daignes daigner VER 4.41 9.39 0.09 0.00 ind:pre:2s; +daignez daigner VER 4.41 9.39 1.86 0.47 imp:pre:2p;ind:pre:2p; +daignons daigner VER 4.41 9.39 0.01 0.00 imp:pre:1p; +daignât daigner VER 4.41 9.39 0.00 0.34 sub:imp:3s; +daignèrent daigner VER 4.41 9.39 0.00 0.07 ind:pas:3p; +daigné daigner VER m s 4.41 9.39 0.89 1.35 par:pas; +daim daim NOM m s 1.65 5.74 1.41 5.14 +daims daim NOM m p 1.65 5.74 0.25 0.61 +daine daine NOM f s 0.00 0.07 0.00 0.07 +daiquiri daiquiri NOM m s 0.41 0.14 0.27 0.14 +daiquiris daiquiri NOM m p 0.41 0.14 0.14 0.00 +dais dais NOM m 0.23 3.04 0.23 3.04 +dakarois dakarois ADJ m s 0.00 0.14 0.00 0.07 +dakaroise dakarois ADJ f s 0.00 0.14 0.00 0.07 +dakin dakin NOM m s 0.03 0.07 0.03 0.07 +dakotas dakota NOM p 0.05 0.00 0.05 0.00 +dal dal NOM m s 0.01 0.00 0.01 0.00 +dalaï_lama dalaï_lama NOM m s 0.00 0.20 0.00 0.20 +dale dale NOM m s 0.16 0.00 0.16 0.00 +dalinienne dalinien ADJ f s 0.00 0.07 0.00 0.07 +dallage dallage NOM m s 0.04 3.04 0.04 2.91 +dallages dallage NOM m p 0.04 3.04 0.00 0.14 +dalle dalle NOM f s 13.00 29.19 12.35 13.38 +daller daller VER 1.62 3.99 0.43 0.00 inf; +dalles dalle NOM f p 13.00 29.19 0.65 15.81 +dallé daller VER m s 1.62 3.99 0.00 0.88 par:pas; +dallée daller VER f s 1.62 3.99 0.00 0.88 par:pas; +dallées daller VER f p 1.62 3.99 0.00 0.54 par:pas; +dallés daller VER m p 1.62 3.99 0.00 0.34 par:pas; +dalmate dalmate ADJ s 0.30 0.41 0.30 0.27 +dalmates dalmate ADJ p 0.30 0.41 0.00 0.14 +dalmatien dalmatien NOM m s 0.33 0.20 0.14 0.00 +dalmatienne dalmatien NOM f s 0.33 0.20 0.11 0.00 +dalmatiens dalmatien NOM m p 0.33 0.20 0.08 0.20 +dalmatique dalmatique NOM f s 0.02 0.68 0.02 0.54 +dalmatiques dalmatique NOM f p 0.02 0.68 0.00 0.14 +daltonien daltonien ADJ m s 0.48 0.00 0.28 0.00 +daltonienne daltonien ADJ f s 0.48 0.00 0.16 0.00 +daltoniennes daltonien ADJ f p 0.48 0.00 0.01 0.00 +daltoniens daltonien ADJ m p 0.48 0.00 0.03 0.00 +daltonisme daltonisme NOM m s 0.02 0.00 0.02 0.00 +daltons dalton NOM m p 0.00 0.07 0.00 0.07 +dam dam NOM m s 0.81 1.69 0.70 1.62 +damage damage NOM m s 0.10 0.00 0.10 0.00 +damas damas NOM m 0.42 0.61 0.42 0.61 +damasquin damasquin NOM m s 0.00 0.14 0.00 0.07 +damasquinage damasquinage NOM m s 0.01 0.00 0.01 0.00 +damasquinerie damasquinerie NOM f s 0.00 0.07 0.00 0.07 +damasquins damasquin NOM m p 0.00 0.14 0.00 0.07 +damasquiné damasquiné ADJ m s 0.00 0.27 0.00 0.07 +damasquinée damasquiné ADJ f s 0.00 0.27 0.00 0.07 +damasquinure damasquinure NOM f s 0.00 0.07 0.00 0.07 +damasquinés damasquiné ADJ m p 0.00 0.27 0.00 0.14 +damassé damassé ADJ m s 0.05 1.35 0.00 0.27 +damassée damassé ADJ f s 0.05 1.35 0.03 0.81 +damassées damassé ADJ f p 0.05 1.35 0.02 0.20 +damassés damassé ADJ m p 0.05 1.35 0.00 0.07 +dame_jeanne dame_jeanne NOM f s 0.01 0.20 0.01 0.07 +dame dame ONO 1.01 1.49 1.01 1.49 +dament damer VER 11.60 3.78 0.00 0.07 ind:pre:3p; +damer damer VER 11.60 3.78 0.04 0.14 inf; +dameret dameret NOM m s 0.00 0.07 0.00 0.07 +dameriez damer VER 11.60 3.78 0.01 0.00 cnd:pre:2p; +dame_jeanne dame_jeanne NOM f p 0.01 0.20 0.00 0.14 +dames dame NOM f p 111.20 151.35 24.70 45.20 +damez damer VER 11.60 3.78 0.02 0.00 imp:pre:2p; +damier damier NOM m s 0.47 2.57 0.42 1.96 +damiers damier NOM m p 0.47 2.57 0.04 0.61 +damnable damnable ADJ f s 0.01 0.20 0.01 0.00 +damnables damnable ADJ p 0.01 0.20 0.00 0.20 +damnait damner VER 4.36 3.78 0.00 0.07 ind:imp:3s; +damnant damner VER 4.36 3.78 0.00 0.07 par:pre; +damnation damnation NOM f s 1.70 3.92 1.70 3.72 +damnations damnation NOM f p 1.70 3.92 0.00 0.20 +damne damner VER 4.36 3.78 0.14 0.61 ind:pre:1s;ind:pre:3s; +damned damned ONO 0.26 0.41 0.26 0.41 +damnent damner VER 4.36 3.78 0.00 0.14 ind:pre:3p; +damner damner VER 4.36 3.78 0.61 0.88 inf; +damnera damner VER 4.36 3.78 0.17 0.07 ind:fut:3s; +damneraient damner VER 4.36 3.78 0.02 0.00 cnd:pre:3p; +damnerais damner VER 4.36 3.78 0.03 0.41 cnd:pre:1s; +damnez damner VER 4.36 3.78 0.02 0.00 imp:pre:2p; +damné damner VER m s 4.36 3.78 2.12 0.68 par:pas; +damnée damné ADJ f s 2.82 2.23 1.87 0.81 +damnées damné ADJ f p 2.82 2.23 0.28 0.41 +damnés damné NOM m p 2.57 3.24 1.33 2.23 +damoiseau damoiseau NOM m s 11.41 20.00 0.16 0.00 +damoiselle damoiselle NOM f s 0.60 0.14 0.55 0.14 +damoiselles damoiselle NOM f p 0.60 0.14 0.05 0.00 +dams dam NOM m p 0.81 1.69 0.11 0.07 +damé damer VER m s 11.60 3.78 0.04 0.00 par:pas; +damée damer VER f s 11.60 3.78 0.00 0.07 par:pas; +damées damer VER f p 11.60 3.78 0.00 0.14 par:pas; +dan dan NOM m s 0.49 0.07 0.49 0.07 +danaïde danaïde NOM f s 0.00 0.07 0.00 0.07 +dancing dancing NOM m s 1.15 3.51 0.94 2.70 +dancings dancing NOM m p 1.15 3.51 0.20 0.81 +dandina dandiner VER 0.26 7.30 0.00 0.34 ind:pas:3s; +dandinaient dandiner VER 0.26 7.30 0.00 0.34 ind:imp:3p; +dandinais dandiner VER 0.26 7.30 0.00 0.07 ind:imp:1s; +dandinait dandiner VER 0.26 7.30 0.01 1.76 ind:imp:3s; +dandinant dandiner VER 0.26 7.30 0.03 2.57 par:pre; +dandine dandiner VER 0.26 7.30 0.09 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dandinement dandinement NOM m s 0.00 0.74 0.00 0.54 +dandinements dandinement NOM m p 0.00 0.74 0.00 0.20 +dandinent dandiner VER 0.26 7.30 0.02 0.20 ind:pre:3p; +dandiner dandiner VER 0.26 7.30 0.09 0.88 inf; +dandinez dandiner VER 0.26 7.30 0.02 0.07 imp:pre:2p;ind:pre:2p; +dandinée dandiner VER f s 0.26 7.30 0.00 0.07 par:pas; +dandinés dandiner VER m p 0.26 7.30 0.00 0.07 par:pas; +dandy dandy NOM m s 2.87 3.51 2.61 3.18 +dandys dandy NOM m p 2.87 3.51 0.26 0.34 +dandysme dandysme NOM m s 0.00 0.41 0.00 0.41 +danger danger NOM m s 80.61 55.27 76.73 45.20 +dangereuse dangereux ADJ f s 101.84 47.57 13.61 10.27 +dangereusement dangereusement ADV 2.13 5.88 2.13 5.88 +dangereuses dangereux ADJ f p 101.84 47.57 4.75 4.53 +dangereux dangereux ADJ m 101.84 47.57 83.48 32.77 +dangerosité dangerosité NOM f s 0.01 0.14 0.01 0.14 +dangers danger NOM m p 80.61 55.27 3.87 10.07 +dano dano NOM m s 0.25 0.07 0.25 0.07 +danois danois ADJ m 3.37 2.03 2.77 1.22 +danoise danois ADJ f s 3.37 2.03 0.57 0.34 +danoises danois ADJ f p 3.37 2.03 0.02 0.47 +dans dans PRE 4658.59 8296.08 4658.59 8296.08 +dansa danser VER 137.40 92.57 0.07 1.15 ind:pas:3s; +dansai danser VER 137.40 92.57 0.00 0.14 ind:pas:1s; +dansaient danser VER 137.40 92.57 1.20 8.99 ind:imp:3p; +dansais danser VER 137.40 92.57 2.43 1.69 ind:imp:1s;ind:imp:2s; +dansait danser VER 137.40 92.57 3.15 13.85 ind:imp:3s; +dansant danser VER 137.40 92.57 2.25 5.54 par:pre; +dansante dansant ADJ f s 2.44 6.89 0.57 1.76 +dansantes dansant ADJ f p 2.44 6.89 0.64 1.96 +dansants dansant ADJ m p 2.44 6.89 0.41 0.61 +danse danse NOM f s 51.23 35.27 46.92 29.19 +dansent danser VER 137.40 92.57 5.58 5.54 ind:pre:3p; +danser danser VER 137.40 92.57 70.06 35.41 ind:pre:2p;inf; +dansera danser VER 137.40 92.57 1.44 0.20 ind:fut:3s; +danserai danser VER 137.40 92.57 1.30 0.20 ind:fut:1s; +danseraient danser VER 137.40 92.57 0.01 0.27 cnd:pre:3p; +danserais danser VER 137.40 92.57 0.19 0.14 cnd:pre:1s;cnd:pre:2s; +danserait danser VER 137.40 92.57 0.25 0.34 cnd:pre:3s; +danseras danser VER 137.40 92.57 0.34 0.20 ind:fut:2s; +danserez danser VER 137.40 92.57 0.53 0.00 ind:fut:2p; +danseriez danser VER 137.40 92.57 0.01 0.00 cnd:pre:2p; +danserions danser VER 137.40 92.57 0.03 0.00 cnd:pre:1p; +danserons danser VER 137.40 92.57 0.31 0.07 ind:fut:1p; +danseront danser VER 137.40 92.57 0.14 0.20 ind:fut:3p; +danses danser VER 137.40 92.57 6.81 0.47 ind:pre:2s;sub:pre:2s; +danseur danseur NOM m s 19.54 25.68 5.85 5.00 +danseurs danseur NOM m p 19.54 25.68 3.64 5.95 +danseuse danseur NOM f s 19.54 25.68 10.05 8.58 +danseuses danseuse NOM f p 3.51 0.00 3.51 0.00 +dansez danser VER 137.40 92.57 6.41 0.74 imp:pre:2p;ind:pre:2p; +dansiez danser VER 137.40 92.57 0.37 0.07 ind:imp:2p; +dansions danser VER 137.40 92.57 0.56 0.68 ind:imp:1p; +dansâmes danser VER 137.40 92.57 0.00 0.07 ind:pas:1p; +dansons danser VER 137.40 92.57 4.33 0.88 imp:pre:1p;ind:pre:1p; +dansota dansoter VER 0.00 0.34 0.00 0.07 ind:pas:3s; +dansotait dansoter VER 0.00 0.34 0.00 0.27 ind:imp:3s; +dansotter dansotter VER 0.00 0.07 0.00 0.07 inf; +dansèrent danser VER 137.40 92.57 0.15 1.35 ind:pas:3p; +dansé danser VER m s 137.40 92.57 5.94 4.32 par:pas; +dansée danser VER f s 137.40 92.57 0.05 0.27 par:pas; +dantesque dantesque ADJ s 0.29 0.34 0.18 0.20 +dantesques dantesque ADJ p 0.29 0.34 0.11 0.14 +danubien danubien ADJ m s 0.00 0.20 0.00 0.07 +danubienne danubien ADJ f s 0.00 0.20 0.00 0.07 +danubiennes danubien ADJ f p 0.00 0.20 0.00 0.07 +dao dao NOM m s 0.09 0.00 0.09 0.00 +daphné daphné NOM m s 0.13 0.07 0.13 0.07 +darce darce NOM f s 0.02 0.00 0.02 0.00 +dard dard NOM m s 1.61 2.84 1.30 1.55 +darda darder VER 0.16 4.19 0.00 0.20 ind:pas:3s; +dardaient darder VER 0.16 4.19 0.00 0.14 ind:imp:3p; +dardait darder VER 0.16 4.19 0.00 0.74 ind:imp:3s; +dardant darder VER 0.16 4.19 0.01 0.68 par:pre; +darde darder VER 0.16 4.19 0.03 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dardent darder VER 0.16 4.19 0.01 0.07 ind:pre:3p; +darder darder VER 0.16 4.19 0.10 0.07 inf; +dardillonnaient dardillonner VER 0.00 0.14 0.00 0.07 ind:imp:3p; +dardillonne dardillonner VER 0.00 0.14 0.00 0.07 ind:pre:3s; +dards dard NOM m p 1.61 2.84 0.31 1.28 +dardé darder VER m s 0.16 4.19 0.01 0.61 par:pas; +dardée darder VER f s 0.16 4.19 0.00 0.61 par:pas; +dardées darder VER f p 0.16 4.19 0.00 0.41 par:pas; +dardés darder VER m p 0.16 4.19 0.00 0.20 par:pas; +dare_dare dare_dare ADV 0.21 1.55 0.17 1.28 +dare_dare dare_dare ADV 0.21 1.55 0.04 0.27 +darioles dariole NOM f p 0.01 0.00 0.01 0.00 +darne darne NOM f s 0.00 0.14 0.00 0.14 +daron daron NOM m s 0.04 2.50 0.01 0.88 +daronne daron NOM f s 0.04 2.50 0.00 1.01 +daronnes daron NOM f p 0.04 2.50 0.00 0.14 +darons daron NOM m p 0.04 2.50 0.02 0.47 +darse darse NOM f s 0.00 0.61 0.00 0.54 +darses darse NOM f p 0.00 0.61 0.00 0.07 +dartres dartre NOM f p 0.00 0.14 0.00 0.14 +dartreuses dartreux ADJ f p 0.00 0.07 0.00 0.07 +dasein dasein NOM m s 0.00 0.07 0.00 0.07 +data dater VER 16.69 17.23 0.46 0.00 ind:pas:3s; +datable datable ADJ m s 0.00 0.07 0.00 0.07 +datage datage NOM m s 0.01 0.00 0.01 0.00 +dataient dater VER 16.69 17.23 0.12 0.95 ind:imp:3p; +datait dater VER 16.69 17.23 0.34 3.18 ind:imp:3s; +datant dater VER 16.69 17.23 1.01 2.57 par:pre; +datation datation NOM f s 0.20 0.14 0.20 0.14 +datcha datcha NOM f s 1.74 1.15 1.74 0.74 +datchas datcha NOM f p 1.74 1.15 0.00 0.41 +date date NOM f s 31.41 45.74 26.88 36.62 +datent dater VER 16.69 17.23 2.35 0.95 ind:pre:3p; +dater dater VER 16.69 17.23 1.48 1.55 inf; +daterai dater VER 16.69 17.23 0.00 0.07 ind:fut:1s; +daterais dater VER 16.69 17.23 0.00 0.07 cnd:pre:1s; +daterait dater VER 16.69 17.23 0.03 0.14 cnd:pre:3s; +dates date NOM f p 31.41 45.74 4.53 9.12 +dateur dateur ADJ m s 0.01 0.00 0.01 0.00 +dateur dateur NOM m s 0.01 0.00 0.01 0.00 +datez dater VER 16.69 17.23 0.04 0.00 imp:pre:2p;ind:pre:2p; +datif datif NOM m s 0.02 0.00 0.02 0.00 +datte datte NOM f s 0.95 2.64 0.24 0.14 +dattes datte NOM f p 0.95 2.64 0.71 2.50 +dattier dattier NOM m s 0.01 1.62 0.00 0.68 +dattiers dattier NOM m p 0.01 1.62 0.01 0.95 +daté dater VER m s 16.69 17.23 0.81 1.82 par:pas; +datée dater VER f s 16.69 17.23 0.34 1.42 par:pas; +datées dater VER f p 16.69 17.23 0.09 0.34 par:pas; +datura datura NOM m s 0.02 0.20 0.02 0.00 +daturas datura NOM m p 0.02 0.20 0.00 0.20 +datés dater VER m p 16.69 17.23 0.09 0.41 par:pas; +daubait dauber VER 0.02 0.20 0.00 0.07 ind:imp:3s; +daube daube NOM f s 0.99 0.68 0.98 0.54 +dauber dauber VER 0.02 0.20 0.01 0.14 inf; +daubes daube NOM f p 0.99 0.68 0.01 0.14 +daubière daubière NOM f s 0.01 0.00 0.01 0.00 +daubé dauber VER m s 0.02 0.20 0.01 0.00 par:pas; +dauphin dauphin NOM m s 4.71 11.82 1.76 1.22 +dauphinat dauphinat NOM m s 0.00 0.20 0.00 0.20 +dauphine dauphin NOM f s 4.71 11.82 0.32 9.26 +dauphines dauphin NOM f p 4.71 11.82 0.00 0.14 +dauphinois dauphinois ADJ m s 0.27 0.41 0.27 0.41 +dauphins dauphin NOM m p 4.71 11.82 2.63 1.22 +daurade daurade NOM f s 0.30 0.95 0.29 0.74 +daurades daurade NOM f p 0.30 0.95 0.01 0.20 +davantage davantage ADV 29.56 97.84 29.56 97.84 +davier davier NOM m s 0.02 0.20 0.02 0.20 +daya daya NOM f s 4.13 0.00 4.13 0.00 +dc dc ADJ:num 0.58 0.07 0.58 0.07 +de_amicis de_amicis NOM m s 0.00 0.07 0.00 0.07 +de_auditu de_auditu ADV 0.00 0.07 0.00 0.07 +de_facto de_facto ADV 0.16 0.07 0.16 0.07 +de_guingois de_guingois ADV 0.01 2.64 0.01 2.64 +de_plano de_plano ADV 0.04 0.00 0.04 0.00 +de_profundis de_profundis NOM m 0.06 0.41 0.06 0.41 +de_santis de_santis NOM m s 0.10 0.00 0.10 0.00 +de_traviole de_traviole ADV 0.43 1.28 0.43 1.28 +de_visu de_visu ADV 1.02 0.54 1.02 0.54 +de de PRE 25220.86 38928.92 25220.86 38928.92 +deadline deadline NOM s 0.16 0.00 0.16 0.00 +deal deal NOM m s 8.76 0.54 8.05 0.47 +dealaient dealer VER 5.27 1.42 0.01 0.07 ind:imp:3p; +dealais dealer VER 5.27 1.42 0.12 0.00 ind:imp:1s;ind:imp:2s; +dealait dealer VER 5.27 1.42 0.38 0.14 ind:imp:3s; +dealant dealer VER 5.27 1.42 0.06 0.00 par:pre; +deale dealer VER 5.27 1.42 1.14 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dealent dealer VER 5.27 1.42 0.31 0.07 ind:pre:3p; +dealer dealer NOM m s 12.65 1.62 8.43 1.08 +dealera dealer VER 5.27 1.42 0.16 0.00 ind:fut:3s; +dealeront dealer VER 5.27 1.42 0.02 0.00 ind:fut:3p; +dealers dealer NOM m p 12.65 1.62 4.22 0.54 +deales dealer VER 5.27 1.42 0.38 0.00 ind:pre:2s; +dealez dealer VER 5.27 1.42 0.03 0.00 ind:pre:2p; +deals deal NOM m p 8.76 0.54 0.71 0.07 +dealé dealer VER m s 5.27 1.42 0.10 0.00 par:pas; +debater debater NOM m s 0.00 0.07 0.00 0.07 +debout debout ADV 91.81 158.85 91.81 158.85 +decca decca NOM m s 0.26 0.07 0.26 0.07 +deck deck NOM m s 0.22 0.00 0.22 0.00 +decrescendo decrescendo NOM m s 0.10 0.14 0.10 0.14 +dedans dedans ADV 76.55 39.46 76.55 39.46 +degré degré NOM m s 21.30 27.97 7.93 16.55 +degrés degré NOM m p 21.30 27.97 13.37 11.42 +dehors dehors ONO 30.23 0.61 30.23 0.61 +delco delco NOM m s 0.27 0.34 0.27 0.34 +delirium_tremens delirium_tremens NOM m 0.07 0.27 0.07 0.27 +delirium delirium NOM m s 0.09 0.41 0.09 0.41 +della_francesca della_francesca NOM m s 0.34 0.20 0.34 0.20 +della_porta della_porta NOM m s 0.00 0.07 0.00 0.07 +della_robbia della_robbia NOM m s 0.00 0.07 0.00 0.07 +delà delà ADV 3.73 12.70 3.73 12.70 +delphinidés delphinidé NOM m p 0.01 0.00 0.01 0.00 +delphinium delphinium NOM m s 0.04 0.00 0.02 0.00 +delphiniums delphinium NOM m p 0.04 0.00 0.02 0.00 +delta_plane delta_plane NOM m s 0.03 0.07 0.03 0.07 +delta delta NOM m s 6.59 2.09 6.50 1.82 +deltaplane deltaplane NOM m s 0.26 0.00 0.26 0.00 +deltas delta NOM m p 6.59 2.09 0.09 0.27 +deltoïde deltoïde NOM m s 0.16 0.20 0.06 0.00 +deltoïdes deltoïde NOM m p 0.16 0.20 0.10 0.20 +demain demain ADV 425.85 134.12 425.85 134.12 +demains demain NOM m p 50.40 21.55 0.00 0.14 +demanda demander VER 909.77 984.39 3.90 270.74 ind:pas:3s; +demandai demander VER 909.77 984.39 0.60 31.49 ind:pas:1s; +demandaient demander VER 909.77 984.39 1.80 10.00 ind:imp:3p; +demandais demander VER 909.77 984.39 35.69 30.07 ind:imp:1s;ind:imp:2s; +demandait demander VER 909.77 984.39 11.55 77.03 ind:imp:3s; +demandant demander VER 909.77 984.39 5.41 21.76 par:pre; +demande demander VER 909.77 984.39 289.34 208.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +demandent demander VER 909.77 984.39 16.13 10.88 ind:pre:3p;sub:pre:3p; +demander demander VER 909.77 984.39 188.86 144.59 inf;;inf;;inf;;inf;; +demandera demander VER 909.77 984.39 7.56 3.58 ind:fut:3s; +demanderai demander VER 909.77 984.39 11.46 4.05 ind:fut:1s; +demanderaient demander VER 909.77 984.39 0.06 0.74 cnd:pre:3p; +demanderais demander VER 909.77 984.39 5.55 1.55 cnd:pre:1s;cnd:pre:2s; +demanderait demander VER 909.77 984.39 1.48 5.41 cnd:pre:3s; +demanderas demander VER 909.77 984.39 2.73 1.28 ind:fut:2s; +demanderesse demandeur NOM f s 0.78 0.34 0.04 0.00 +demanderez demander VER 909.77 984.39 1.48 1.22 ind:fut:2p; +demanderiez demander VER 909.77 984.39 0.87 0.14 cnd:pre:2p; +demanderons demander VER 909.77 984.39 1.06 0.27 ind:fut:1p; +demanderont demander VER 909.77 984.39 1.67 0.61 ind:fut:3p; +demandes demander VER 909.77 984.39 32.92 5.68 ind:pre:2s;sub:pre:2s; +demandeur demandeur NOM m s 0.78 0.34 0.20 0.14 +demandeurs demandeur NOM m p 0.78 0.34 0.54 0.20 +demandeuse demandeur NOM f s 0.78 0.34 0.01 0.00 +demandez demander VER 909.77 984.39 51.74 12.23 imp:pre:2p;ind:pre:2p; +demandiez demander VER 909.77 984.39 2.00 0.88 ind:imp:2p; +demandions demander VER 909.77 984.39 0.79 1.62 ind:imp:1p; +demandâmes demander VER 909.77 984.39 0.00 0.07 ind:pas:1p; +demandons demander VER 909.77 984.39 12.09 2.30 imp:pre:1p;ind:pre:1p; +demandât demander VER 909.77 984.39 0.00 1.76 sub:imp:3s; +demandèrent demander VER 909.77 984.39 0.66 2.70 ind:pas:3p; +demandé demander VER m s 909.77 984.39 212.89 128.92 par:pas;par:pas;par:pas; +demandée demander VER f s 909.77 984.39 6.81 2.70 par:pas; +demandées demander VER f p 909.77 984.39 0.65 0.74 par:pas; +demandés demander VER m p 909.77 984.39 2.02 1.22 par:pas; +demeura demeurer VER 13.18 128.85 0.27 18.65 ind:pas:3s; +demeurai demeurer VER 13.18 128.85 0.02 3.24 ind:pas:1s; +demeuraient demeurer VER 13.18 128.85 0.16 6.49 ind:imp:3p; +demeurais demeurer VER 13.18 128.85 0.00 2.23 ind:imp:1s; +demeurait demeurer VER 13.18 128.85 0.45 24.59 ind:imp:3s; +demeurant demeurer VER 13.18 128.85 0.27 13.85 par:pre; +demeurassent demeurer VER 13.18 128.85 0.00 0.27 sub:imp:3p; +demeure demeure NOM f s 13.34 28.11 12.24 20.07 +demeurent demeurer VER 13.18 128.85 1.99 5.34 ind:pre:3p; +demeurer demeurer VER 13.18 128.85 1.86 14.12 inf; +demeurera demeurer VER 13.18 128.85 0.41 1.01 ind:fut:3s; +demeurerai demeurer VER 13.18 128.85 0.09 0.27 ind:fut:1s; +demeureraient demeurer VER 13.18 128.85 0.00 0.34 cnd:pre:3p; +demeurerais demeurer VER 13.18 128.85 0.00 0.20 cnd:pre:1s; +demeurerait demeurer VER 13.18 128.85 0.00 1.49 cnd:pre:3s; +demeureras demeurer VER 13.18 128.85 0.18 0.00 ind:fut:2s; +demeurerez demeurer VER 13.18 128.85 0.06 0.07 ind:fut:2p; +demeurerions demeurer VER 13.18 128.85 0.00 0.07 cnd:pre:1p; +demeurerons demeurer VER 13.18 128.85 0.13 0.07 ind:fut:1p; +demeureront demeurer VER 13.18 128.85 0.03 0.54 ind:fut:3p; +demeures demeure NOM f p 13.34 28.11 1.10 8.04 +demeurez demeurer VER 13.18 128.85 1.02 0.47 imp:pre:2p;ind:pre:2p; +demeuriez demeurer VER 13.18 128.85 0.14 0.20 ind:imp:2p; +demeurions demeurer VER 13.18 128.85 0.00 0.68 ind:imp:1p; +demeurâmes demeurer VER 13.18 128.85 0.00 0.47 ind:pas:1p; +demeurons demeurer VER 13.18 128.85 0.12 1.01 imp:pre:1p;ind:pre:1p; +demeurât demeurer VER 13.18 128.85 0.01 1.28 sub:imp:3s; +demeurèrent demeurer VER 13.18 128.85 0.00 4.12 ind:pas:3p; +demeuré demeuré NOM m s 2.92 2.23 2.06 1.28 +demeurée demeuré NOM f s 2.92 2.23 0.31 0.47 +demeurées demeuré ADJ f p 0.80 2.36 0.01 0.20 +demeurés demeuré NOM m p 2.92 2.23 0.55 0.41 +demi_barbare demi_barbare NOM s 0.00 0.07 0.00 0.07 +demi_bas demi_bas NOM m 0.01 0.14 0.01 0.14 +demi_bonheur demi_bonheur NOM m s 0.00 0.07 0.00 0.07 +demi_botte demi_botte NOM f p 0.00 0.14 0.00 0.14 +demi_bouteille demi_bouteille NOM f s 0.41 0.47 0.41 0.47 +demi_brigade demi_brigade NOM f s 0.00 0.68 0.00 0.61 +demi_brigade demi_brigade NOM f p 0.00 0.68 0.00 0.07 +demi_cent demi_cent NOM m s 0.01 0.07 0.01 0.07 +demi_centimètre demi_centimètre NOM m s 0.02 0.20 0.02 0.20 +demi_centre demi_centre NOM m s 0.00 0.07 0.00 0.07 +demi_cercle demi_cercle NOM m s 0.12 4.80 0.11 4.46 +demi_cercle demi_cercle NOM m p 0.12 4.80 0.01 0.34 +demi_chagrin demi_chagrin NOM m s 0.00 0.07 0.00 0.07 +demi_clair demi_clair NOM m s 0.00 0.07 0.00 0.07 +demi_clarté demi_clarté NOM f s 0.00 0.20 0.00 0.20 +demi_cloison demi_cloison NOM f s 0.00 0.20 0.00 0.20 +demi_coma demi_coma NOM m s 0.01 0.27 0.01 0.27 +demi_confidence demi_confidence NOM f s 0.00 0.07 0.00 0.07 +demi_conscience demi_conscience NOM f s 0.00 0.20 0.00 0.20 +demi_cylindre demi_cylindre NOM m s 0.00 0.14 0.00 0.14 +demi_degré demi_degré NOM m s 0.01 0.00 0.01 0.00 +demi_deuil demi_deuil NOM m s 0.00 0.34 0.00 0.34 +demi_dieu demi_dieu NOM m s 0.47 0.47 0.47 0.47 +demi_dieux demi_dieux NOM m p 0.16 0.47 0.16 0.47 +demi_dose demi_dose NOM f s 0.03 0.00 0.03 0.00 +demi_douzaine demi_douzaine NOM f s 1.34 6.55 1.34 6.55 +demi_dévêtu demi_dévêtu ADJ m s 0.00 0.14 0.00 0.07 +demi_dévêtu demi_dévêtu ADJ f s 0.00 0.14 0.00 0.07 +demi_figure demi_figure NOM f s 0.00 0.07 0.00 0.07 +demi_finale demi_finale NOM f s 1.13 0.00 0.87 0.00 +demi_finale demi_finale NOM f p 1.13 0.00 0.26 0.00 +demi_finaliste demi_finaliste NOM s 0.01 0.00 0.01 0.00 +demi_fond demi_fond NOM m s 0.21 0.14 0.21 0.14 +demi_fou demi_fou NOM m s 0.14 0.14 0.14 0.00 +demi_fou demi_fou NOM m p 0.14 0.14 0.00 0.14 +demi_frère demi_frère NOM m s 2.70 2.91 2.17 2.91 +demi_frère demi_frère NOM m p 2.70 2.91 0.53 0.00 +demi_gros demi_gros NOM m 0.01 0.47 0.01 0.47 +demi_heure demi_heure NOM f s 26.65 23.18 26.65 22.43 +heur heur NOM f p 0.28 1.15 0.22 0.07 +demi_jour demi_jour NOM m s 0.02 1.28 0.02 1.28 +demi_journée demi_journée NOM f s 1.65 1.08 1.60 1.01 +demi_journée demi_journée NOM f p 1.65 1.08 0.05 0.07 +demi_juif demi_juif NOM m s 0.01 0.00 0.01 0.00 +demi_kilomètre demi_kilomètre NOM m s 0.14 0.14 0.14 0.14 +demi_liberté demi_liberté NOM f s 0.00 0.07 0.00 0.07 +demi_lieue demi_lieue NOM f s 0.30 0.41 0.30 0.41 +demi_litre demi_litre NOM m s 0.67 0.81 0.67 0.81 +demi_livre demi_livre NOM f s 0.12 0.34 0.12 0.34 +demi_longueur demi_longueur NOM f s 0.06 0.00 0.06 0.00 +demi_louis demi_louis NOM m 0.00 0.07 0.00 0.07 +demi_lueur demi_lueur NOM f s 0.00 0.07 0.00 0.07 +demi_lumière demi_lumière NOM f s 0.00 0.07 0.00 0.07 +demi_lune demi_lune NOM f s 1.03 2.36 0.92 2.23 +demi_lune demi_lune NOM f p 1.03 2.36 0.11 0.14 +demi_luxe demi_luxe NOM m s 0.00 0.07 0.00 0.07 +demi_mal demi_mal NOM m s 0.00 0.07 0.00 0.07 +demi_mensonge demi_mensonge NOM m s 0.01 0.07 0.01 0.07 +demi_mesure demi_mesure NOM f s 0.39 0.54 0.14 0.14 +demi_mesure demi_mesure NOM f p 0.39 0.54 0.25 0.41 +demi_mille demi_mille NOM m 0.00 0.07 0.00 0.07 +demi_milliard demi_milliard NOM m s 0.87 0.07 0.87 0.07 +demi_millimètre demi_millimètre NOM m s 0.00 0.07 0.00 0.07 +demi_million demi_million NOM m s 3.08 0.41 3.08 0.41 +demi_minute demi_minute NOM f s 0.04 0.07 0.04 0.07 +demi_mois demi_mois NOM m 0.15 0.00 0.15 0.00 +demi_mondain demi_mondain NOM f s 0.00 0.74 0.00 0.27 +demi_mondain demi_mondain NOM f p 0.00 0.74 0.00 0.47 +demi_monde demi_monde NOM m s 0.01 0.14 0.01 0.14 +demi_mort demi_mort NOM m s 0.26 0.27 0.11 0.20 +demi_mort demi_mort NOM f s 0.26 0.27 0.04 0.07 +demi_mort demi_mort NOM m p 0.26 0.27 0.10 0.00 +demi_mot demi_mot NOM m s 0.19 1.49 0.19 1.49 +demi_mètre demi_mètre NOM m s 0.00 0.54 0.00 0.54 +demi_muid demi_muid NOM m s 0.00 0.07 0.00 0.07 +demi_nu demi_nu ADV 0.14 0.00 0.14 0.00 +demi_nuit demi_nuit NOM f s 0.02 0.27 0.02 0.27 +demi_obscurité demi_obscurité NOM f s 0.00 1.96 0.00 1.96 +demi_ouvert demi_ouvert ADJ f s 0.00 0.07 0.00 0.07 +demi_ouvrier demi_ouvrier NOM m s 0.00 0.07 0.00 0.07 +demi_page demi_page NOM f s 0.05 0.41 0.05 0.41 +demi_paralysé demi_paralysé ADJ m s 0.10 0.00 0.10 0.00 +demi_part demi_part NOM f s 0.01 0.00 0.01 0.00 +demi_pas demi_pas NOM m 0.21 0.27 0.21 0.27 +demi_pension demi_pension NOM f s 0.00 0.41 0.00 0.41 +demi_pensionnaire demi_pensionnaire NOM s 0.00 0.41 0.00 0.20 +demi_pensionnaire demi_pensionnaire NOM p 0.00 0.41 0.00 0.20 +demi_personne demi_personne ADJ m s 0.00 0.07 0.00 0.07 +demi_pied demi_pied NOM m s 0.00 0.07 0.00 0.07 +demi_pinte demi_pinte NOM f s 0.07 0.07 0.07 0.07 +demi_pièce demi_pièce NOM f s 0.00 0.07 0.00 0.07 +demi_place demi_place NOM f s 0.11 0.00 0.11 0.00 +demi_plein demi_plein ADJ m s 0.01 0.00 0.01 0.00 +demi_point demi_point NOM m s 0.14 0.00 0.14 0.00 +demi_pointe demi_pointe NOM f p 0.00 0.07 0.00 0.07 +demi_porte demi_porte NOM f s 0.00 0.14 0.00 0.14 +demi_portion demi_portion NOM f s 1.23 0.20 1.18 0.00 +demi_portion demi_portion NOM f p 1.23 0.20 0.05 0.20 +demi_pouce demi_pouce ADJ m s 0.01 0.00 0.01 0.00 +demi_quart demi_quart NOM m s 0.00 0.07 0.00 0.07 +demi_queue demi_queue NOM m s 0.01 0.20 0.01 0.20 +demi_rond demi_rond NOM f s 0.00 0.34 0.00 0.34 +demi_réussite demi_réussite NOM f s 0.00 0.14 0.00 0.14 +demi_rêve demi_rêve NOM m s 0.00 0.20 0.00 0.20 +demi_révérence demi_révérence NOM f s 0.00 0.07 0.00 0.07 +demi_saison demi_saison NOM f s 0.00 0.95 0.00 0.81 +demi_saison demi_saison NOM f p 0.00 0.95 0.00 0.14 +demi_sang demi_sang NOM m s 0.04 0.54 0.04 0.47 +demi_sang demi_sang NOM m p 0.04 0.54 0.00 0.07 +demi_seconde demi_seconde NOM f s 0.13 1.01 0.13 1.01 +demi_section demi_section NOM f s 0.00 0.41 0.00 0.41 +demi_sel demi_sel NOM m 0.04 0.47 0.03 0.27 +demi_sel demi_sel NOM m p 0.04 0.47 0.01 0.20 +demi_siècle demi_siècle NOM m s 0.17 5.95 0.17 5.81 +demi_siècle demi_siècle NOM m p 0.17 5.95 0.00 0.14 +demi_soeur demi_soeur NOM f s 0.50 9.05 0.42 8.92 +demi_soeur demi_soeur NOM f p 0.50 9.05 0.07 0.14 +demi_solde demi_solde NOM f s 0.01 0.14 0.01 0.07 +demi_solde demi_solde NOM f p 0.01 0.14 0.00 0.07 +demi_sommeil demi_sommeil NOM m s 0.25 2.50 0.25 2.43 +demi_sommeil demi_sommeil NOM m p 0.25 2.50 0.00 0.07 +demi_somnolence demi_somnolence NOM f s 0.00 0.14 0.00 0.14 +demi_sourire demi_sourire NOM m s 0.00 2.84 0.00 2.77 +demi_sourire demi_sourire NOM m p 0.00 2.84 0.00 0.07 +demi_succès demi_succès NOM m 0.00 0.20 0.00 0.20 +demi_suicide demi_suicide NOM m s 0.00 0.07 0.00 0.07 +demi_talent demi_talent NOM m s 0.05 0.00 0.05 0.00 +demi_tarif demi_tarif NOM m s 0.56 0.14 0.56 0.14 +demi_tasse demi_tasse NOM f s 0.08 0.07 0.08 0.07 +demi_teinte demi_teinte NOM f s 0.06 0.95 0.04 0.47 +demi_teinte demi_teinte NOM f p 0.06 0.95 0.02 0.47 +demi_ton demi_ton NOM m s 0.34 0.61 0.00 0.34 +demi_ton demi_ton NOM f s 0.34 0.61 0.21 0.07 +demi_tonneau demi_tonneau NOM m s 0.00 0.07 0.00 0.07 +demi_ton demi_ton NOM m p 0.34 0.61 0.14 0.20 +demi_tour demi_tour NOM m s 19.27 16.08 19.25 15.88 +demi_tour demi_tour NOM m p 19.27 16.08 0.02 0.20 +demi_tête demi_tête NOM f s 0.11 0.14 0.11 0.14 +demi_échec demi_échec NOM m s 0.00 0.07 0.00 0.07 +demi_verre demi_verre NOM m s 0.30 1.22 0.30 1.22 +demi_vertu demi_vertu NOM f s 0.00 0.07 0.00 0.07 +demi_vie demi_vie NOM f s 0.11 0.00 0.08 0.00 +demi_vierge demi_vierge NOM f s 0.02 0.20 0.02 0.07 +demi_vierge demi_vierge NOM f p 0.02 0.20 0.00 0.14 +demi_vie demi_vie NOM f p 0.11 0.00 0.02 0.00 +demi_volte demi_volte NOM f s 0.01 0.07 0.01 0.00 +demi_volte demi_volte NOM f p 0.01 0.07 0.00 0.07 +demi_volée demi_volée NOM f s 0.00 0.07 0.00 0.07 +demi_volume demi_volume NOM m s 0.00 0.07 0.00 0.07 +demi_vérité demi_vérité NOM f s 0.32 0.07 0.32 0.07 +demi demi ADJ m s 38.26 43.51 25.18 19.12 +demie demi ADJ f s 38.26 43.51 12.98 24.05 +demies demie NOM f p 0.13 0.00 0.13 0.00 +demis demi NOM m p 4.52 9.80 0.19 1.49 +demoiselle damoiseau NOM f s 11.41 20.00 11.25 12.64 +demoiselles demoiselle NOM f p 4.62 0.00 4.62 0.00 +dendrite dendrite NOM f s 0.01 0.00 0.01 0.00 +dengue dengue NOM f s 0.02 0.00 0.02 0.00 +denier denier NOM m s 1.97 1.62 0.64 0.41 +deniers denier NOM m p 1.97 1.62 1.34 1.22 +denim denim NOM m s 0.04 0.07 0.04 0.00 +denims denim NOM m p 0.04 0.07 0.00 0.07 +denrée denrée NOM f s 1.86 4.73 1.23 1.01 +denrées denrée NOM f p 1.86 4.73 0.64 3.72 +dense dense ADJ s 2.04 11.69 1.69 9.86 +denses dense ADJ p 2.04 11.69 0.35 1.82 +densifia densifier VER 0.02 0.07 0.00 0.07 ind:pas:3s; +densifie densifier VER 0.02 0.07 0.01 0.00 ind:pre:3s; +densifié densifier VER m s 0.02 0.07 0.01 0.00 par:pas; +densimètre densimètre NOM m s 0.01 0.00 0.01 0.00 +densité densité NOM f s 1.50 5.74 1.47 5.54 +densités densité NOM f p 1.50 5.74 0.04 0.20 +dent_de_lion dent_de_lion NOM f s 0.03 0.07 0.03 0.07 +dent dent NOM f s 74.20 125.68 13.27 11.15 +dentaire dentaire ADJ s 4.22 1.28 3.50 0.68 +dentaires dentaire ADJ p 4.22 1.28 0.72 0.61 +dental dental ADJ m s 0.04 0.47 0.04 0.07 +dentale dental ADJ f s 0.04 0.47 0.00 0.07 +dentales dental ADJ f p 0.04 0.47 0.00 0.34 +dentelle dentelle NOM f s 3.78 25.07 3.04 17.50 +dentelles dentelle NOM f p 3.78 25.07 0.73 7.57 +dentellière dentellière NOM f s 0.00 2.36 0.00 2.36 +dentelé denteler VER m s 0.13 0.81 0.07 0.34 par:pas; +dentelée dentelé ADJ f s 0.23 2.70 0.17 0.68 +dentelées denteler VER f p 0.13 0.81 0.02 0.14 par:pas; +dentelure dentelure NOM f s 0.11 0.88 0.11 0.61 +dentelures dentelure NOM f p 0.11 0.88 0.00 0.27 +dentelés dentelé ADJ m p 0.23 2.70 0.01 0.47 +dentier dentier NOM m s 1.74 2.77 1.64 2.50 +dentiers dentier NOM m p 1.74 2.77 0.10 0.27 +dentifrice dentifrice NOM m s 3.87 1.28 3.84 1.15 +dentifrices dentifrice NOM m p 3.87 1.28 0.02 0.14 +dentiste dentiste NOM s 15.40 5.61 14.57 4.93 +dentisterie dentisterie NOM f s 0.16 0.00 0.16 0.00 +dentistes dentiste NOM p 15.40 5.61 0.83 0.68 +dentition dentition NOM f s 1.08 0.47 1.07 0.41 +dentitions dentition NOM f p 1.08 0.47 0.01 0.07 +dents dent NOM f p 74.20 125.68 60.94 114.53 +denté denté ADJ m s 0.04 0.27 0.00 0.07 +dentée denté ADJ f s 0.04 0.27 0.03 0.07 +dentées denté ADJ f p 0.04 0.27 0.00 0.14 +denture denture NOM f s 0.07 2.16 0.07 1.96 +dentures denture NOM f p 0.07 2.16 0.00 0.20 +dentés denté ADJ m p 0.04 0.27 0.01 0.00 +deo_gratias deo_gratias NOM m 0.01 0.20 0.01 0.20 +depuis depuis PRE 483.95 542.64 483.95 542.64 +der der NOM s 4.70 3.92 4.53 3.58 +derby derby NOM m s 0.39 0.20 0.36 0.14 +derbys derby NOM m p 0.39 0.20 0.03 0.07 +derche derche NOM m s 0.83 3.04 0.72 2.57 +derches derche NOM m p 0.83 3.04 0.11 0.47 +derechef derechef ADV 0.01 3.24 0.01 3.24 +dermatite dermatite NOM f s 0.08 0.00 0.08 0.00 +dermatoglyphes dermatoglyphe NOM m p 0.00 0.07 0.00 0.07 +dermatologie dermatologie NOM f s 0.23 0.00 0.23 0.00 +dermatologique dermatologique ADJ s 0.35 0.61 0.32 0.54 +dermatologiques dermatologique ADJ p 0.35 0.61 0.03 0.07 +dermatologiste dermatologiste NOM s 0.07 0.00 0.07 0.00 +dermatologue dermatologue NOM s 0.38 0.00 0.38 0.00 +dermatose dermatose NOM f s 0.00 0.14 0.00 0.07 +dermatoses dermatose NOM f p 0.00 0.14 0.00 0.07 +derme derme NOM m s 0.52 0.41 0.52 0.41 +dermeste dermeste NOM m s 0.01 0.00 0.01 0.00 +dermique dermique ADJ m s 0.03 0.07 0.03 0.00 +dermiques dermique ADJ p 0.03 0.07 0.00 0.07 +dermite dermite NOM f s 0.09 0.07 0.09 0.00 +dermites dermite NOM f p 0.09 0.07 0.00 0.07 +dermographie dermographie NOM f s 0.14 0.07 0.14 0.07 +dernier_né dernier_né NOM m s 0.05 1.01 0.05 0.88 +dernier dernier ADJ m s 431.08 403.11 138.57 146.42 +dernier_né dernier_né NOM m p 0.05 1.01 0.00 0.14 +derniers dernier ADJ m p 431.08 403.11 41.81 63.38 +dernière_née dernière_née NOM f s 0.01 0.20 0.01 0.20 +dernière dernier ADJ f s 431.08 403.11 224.41 145.27 +dernièrement dernièrement ADV 11.24 1.35 11.24 1.35 +dernières dernier ADJ f p 431.08 403.11 26.30 48.04 +derrick derrick NOM m s 2.04 0.27 1.98 0.07 +derricks derrick NOM m p 2.04 0.27 0.06 0.20 +derrière derrière PRE 105.10 349.39 105.10 349.39 +derrières derrière NOM m p 9.95 15.47 0.86 1.22 +ders der NOM p 4.70 3.92 0.17 0.34 +derviche derviche NOM m s 0.11 1.76 0.08 1.35 +derviches derviche NOM m p 0.11 1.76 0.03 0.41 +des des ART:ind p 6055.71 10624.93 6055.71 10624.93 +descamisados descamisado NOM m p 0.00 0.07 0.00 0.07 +descella desceller VER 0.07 1.55 0.00 0.07 ind:pas:3s; +descellant desceller VER 0.07 1.55 0.00 0.07 par:pre; +desceller desceller VER 0.07 1.55 0.01 0.41 inf; +descellera desceller VER 0.07 1.55 0.02 0.00 ind:fut:3s; +descellez desceller VER 0.07 1.55 0.00 0.07 ind:pre:2p; +descellé desceller VER m s 0.07 1.55 0.02 0.47 par:pas; +descellée desceller VER f s 0.07 1.55 0.02 0.14 par:pas; +descellées desceller VER f p 0.07 1.55 0.00 0.14 par:pas; +descellés desceller VER m p 0.07 1.55 0.00 0.20 par:pas; +descend descendre VER 235.97 301.62 26.09 32.64 ind:pre:3s; +descendîmes descendre VER 235.97 301.62 0.13 2.09 ind:pas:1p; +descendît descendre VER 235.97 301.62 0.00 0.34 sub:imp:3s; +descendaient descendre VER 235.97 301.62 0.67 10.41 ind:imp:3p; +descendais descendre VER 235.97 301.62 0.97 3.45 ind:imp:1s;ind:imp:2s; +descendait descendre VER 235.97 301.62 2.43 33.45 ind:imp:3s; +descendance descendance NOM f s 1.31 1.96 1.30 1.89 +descendances descendance NOM f p 1.31 1.96 0.01 0.07 +descendant descendre VER 235.97 301.62 3.73 16.76 par:pre; +descendante descendant NOM f s 3.45 5.00 0.25 0.34 +descendantes descendant NOM f p 3.45 5.00 0.04 0.00 +descendants descendant NOM m p 3.45 5.00 2.38 2.97 +descende descendre VER 235.97 301.62 3.55 2.50 sub:pre:1s;sub:pre:3s; +descendent descendre VER 235.97 301.62 4.27 10.41 ind:pre:3p;sub:pre:3p; +descendes descendre VER 235.97 301.62 1.13 0.14 sub:pre:2s; +descendeur descendeur NOM m s 0.04 0.07 0.04 0.00 +descendeurs descendeur NOM m p 0.04 0.07 0.00 0.07 +descendez descendre VER 235.97 301.62 25.89 1.96 imp:pre:2p;ind:pre:2p; +descendiez descendre VER 235.97 301.62 0.53 0.14 ind:imp:2p; +descendions descendre VER 235.97 301.62 0.38 2.70 ind:imp:1p; +descendirent descendre VER 235.97 301.62 0.04 10.00 ind:pas:3p; +descendis descendre VER 235.97 301.62 0.05 4.93 ind:pas:1s; +descendit descendre VER 235.97 301.62 0.61 33.99 ind:pas:3s; +descendons descendre VER 235.97 301.62 4.30 3.31 imp:pre:1p;ind:pre:1p; +descendra descendre VER 235.97 301.62 3.44 1.82 ind:fut:3s; +descendrai descendre VER 235.97 301.62 1.82 1.42 ind:fut:1s; +descendraient descendre VER 235.97 301.62 0.05 0.41 cnd:pre:3p; +descendrais descendre VER 235.97 301.62 0.46 0.41 cnd:pre:1s;cnd:pre:2s; +descendrait descendre VER 235.97 301.62 0.78 1.35 cnd:pre:3s; +descendras descendre VER 235.97 301.62 0.44 0.20 ind:fut:2s; +descendre descendre VER 235.97 301.62 65.28 70.41 inf; +descendrez descendre VER 235.97 301.62 0.53 0.14 ind:fut:2p; +descendriez descendre VER 235.97 301.62 0.03 0.00 cnd:pre:2p; +descendrions descendre VER 235.97 301.62 0.00 0.20 cnd:pre:1p; +descendrons descendre VER 235.97 301.62 0.69 0.54 ind:fut:1p; +descendront descendre VER 235.97 301.62 0.81 0.20 ind:fut:3p; +descends descendre VER 235.97 301.62 62.31 12.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +descendu descendre VER m s 235.97 301.62 18.05 26.01 par:pas; +descendue descendre VER f s 235.97 301.62 3.66 7.97 par:pas; +descendues descendre VER f p 235.97 301.62 0.16 1.15 par:pas; +descendus descendre VER m p 235.97 301.62 2.71 8.04 par:pas; +descenseur descenseur NOM m s 0.01 0.00 0.01 0.00 +descente descente NOM f s 11.59 23.24 10.48 20.81 +descentes descente NOM f p 11.59 23.24 1.10 2.43 +descriptible descriptible ADJ m s 0.00 0.27 0.00 0.07 +descriptibles descriptible ADJ f p 0.00 0.27 0.00 0.20 +descriptif descriptif NOM m s 0.14 0.41 0.12 0.20 +descriptifs descriptif NOM m p 0.14 0.41 0.02 0.20 +description description NOM f s 7.80 11.49 7.08 8.04 +descriptions description NOM f p 7.80 11.49 0.73 3.45 +descriptive descriptif ADJ f s 0.17 0.41 0.04 0.14 +descriptives descriptif ADJ f p 0.17 0.41 0.01 0.07 +desdites desdites PRE 0.00 0.07 0.00 0.07 +desdits desdits PRE 0.00 0.20 0.00 0.20 +desiderata desiderata NOM m 0.04 0.27 0.04 0.27 +design design NOM m s 1.54 0.88 1.47 0.88 +designer designer NOM s 0.57 0.00 0.51 0.00 +designers designer NOM p 0.57 0.00 0.07 0.00 +designs design NOM m p 1.54 0.88 0.08 0.00 +desk desk NOM m s 0.11 0.14 0.11 0.14 +desperado desperado NOM m s 0.27 0.47 0.21 0.20 +desperados desperado NOM m p 0.27 0.47 0.06 0.27 +despote despote NOM s 1.01 0.74 0.85 0.61 +despotes despote NOM p 1.01 0.74 0.16 0.14 +despotique despotique ADJ s 0.16 0.54 0.16 0.41 +despotiques despotique ADJ m p 0.16 0.54 0.00 0.14 +despotisme despotisme NOM m s 0.45 0.81 0.45 0.81 +desquamante desquamant ADJ f s 0.00 0.07 0.00 0.07 +desquamation desquamation NOM f s 0.01 0.07 0.01 0.07 +desquame desquamer VER 0.01 0.00 0.01 0.00 ind:pre:3s; +desquelles desquelles PRO:rel f p 0.81 9.39 0.81 7.64 +desquels desquels PRO:rel m p 0.78 10.14 0.64 7.97 +dessaisi dessaisir VER m s 0.25 0.61 0.07 0.07 par:pas; +dessaisir dessaisir VER 0.25 0.61 0.16 0.27 inf; +dessaisis dessaisir VER m p 0.25 0.61 0.01 0.07 ind:pre:1s;par:pas; +dessaisissais dessaisir VER 0.25 0.61 0.00 0.07 ind:imp:1s; +dessaisissement dessaisissement NOM m s 0.00 0.07 0.00 0.07 +dessaisissent dessaisir VER 0.25 0.61 0.00 0.07 ind:pre:3p; +dessaisit dessaisir VER 0.25 0.61 0.01 0.07 ind:pre:3s;ind:pas:3s; +dessalaient dessaler VER 0.16 0.34 0.00 0.07 ind:imp:3p; +dessalait dessaler VER 0.16 0.34 0.00 0.07 ind:imp:3s; +dessalant dessaler VER 0.16 0.34 0.00 0.07 par:pre; +dessale dessaler VER 0.16 0.34 0.00 0.07 ind:pre:3s; +dessaler dessaler VER 0.16 0.34 0.16 0.00 inf; +dessalé dessalé ADJ m s 0.00 0.47 0.00 0.14 +dessalée dessalé ADJ f s 0.00 0.47 0.00 0.14 +dessalées dessalé ADJ f p 0.00 0.47 0.00 0.14 +dessalés dessalé ADJ m p 0.00 0.47 0.00 0.07 +dessaoulais dessaouler VER 0.39 1.15 0.01 0.00 ind:imp:1s; +dessaoule dessaouler VER 0.39 1.15 0.13 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessaoulent dessaouler VER 0.39 1.15 0.00 0.07 ind:pre:3p; +dessaouler dessaouler VER 0.39 1.15 0.08 0.14 inf; +dessaoulé dessaouler VER m s 0.39 1.15 0.07 0.41 par:pas; +dessaoulée dessaouler VER f s 0.39 1.15 0.10 0.07 par:pas; +dessaoulés dessaouler VER m p 0.39 1.15 0.00 0.07 par:pas; +dessape dessaper VER 0.00 0.14 0.00 0.07 ind:pre:3s; +dessaper dessaper VER 0.00 0.14 0.00 0.07 inf; +dessein dessein NOM m s 7.29 14.86 5.32 10.20 +desseins dessein NOM m p 7.29 14.86 1.97 4.66 +desselle desseller VER 0.12 0.61 0.02 0.07 imp:pre:2s;ind:pre:3s; +desseller desseller VER 0.12 0.61 0.03 0.41 inf; +dessellez desseller VER 0.12 0.61 0.05 0.00 imp:pre:2p; +dessellé desseller VER m s 0.12 0.61 0.01 0.00 par:pas; +dessellées desseller VER f p 0.12 0.61 0.00 0.07 par:pas; +dessellés desseller VER m p 0.12 0.61 0.01 0.07 par:pas; +desserra desserrer VER 2.54 10.88 0.01 1.76 ind:pas:3s; +desserrage desserrage NOM m s 0.01 0.07 0.01 0.07 +desserrai desserrer VER 2.54 10.88 0.00 0.27 ind:pas:1s; +desserraient desserrer VER 2.54 10.88 0.00 0.20 ind:imp:3p; +desserrais desserrer VER 2.54 10.88 0.01 0.07 ind:imp:1s;ind:imp:2s; +desserrait desserrer VER 2.54 10.88 0.01 0.81 ind:imp:3s; +desserrant desserrer VER 2.54 10.88 0.00 0.47 par:pre; +desserre desserrer VER 2.54 10.88 0.83 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +desserrent desserrer VER 2.54 10.88 0.03 0.20 ind:pre:3p; +desserrer desserrer VER 2.54 10.88 0.38 3.58 inf; +desserrera desserrer VER 2.54 10.88 0.01 0.07 ind:fut:3s; +desserreraient desserrer VER 2.54 10.88 0.00 0.07 cnd:pre:3p; +desserrerait desserrer VER 2.54 10.88 0.00 0.07 cnd:pre:3s; +desserrez desserrer VER 2.54 10.88 0.72 0.07 imp:pre:2p;ind:pre:2p; +desserrons desserrer VER 2.54 10.88 0.03 0.00 imp:pre:1p; +desserrât desserrer VER 2.54 10.88 0.00 0.07 sub:imp:3s; +desserrèrent desserrer VER 2.54 10.88 0.00 0.14 ind:pas:3p; +desserré desserrer VER m s 2.54 10.88 0.32 1.69 par:pas; +desserrée desserrer VER f s 2.54 10.88 0.07 0.27 par:pas; +desserrées desserrer VER f p 2.54 10.88 0.01 0.20 par:pas; +desserrés desserrer VER m p 2.54 10.88 0.10 0.14 par:pas; +dessers desservir VER 1.16 5.14 0.00 0.07 ind:pre:2s; +dessert dessert NOM m s 13.40 12.57 11.61 11.62 +desserte desserte NOM f s 0.09 1.76 0.07 1.49 +dessertes desserte NOM f p 0.09 1.76 0.01 0.27 +dessertie dessertir VER f s 0.01 0.14 0.01 0.07 par:pas; +dessertir dessertir VER 0.01 0.14 0.00 0.07 inf; +desserts dessert NOM m p 13.40 12.57 1.79 0.95 +desservaient desservir VER 1.16 5.14 0.01 0.34 ind:imp:3p; +desservait desservir VER 1.16 5.14 0.02 0.88 ind:imp:3s; +desservant desservir VER 1.16 5.14 0.14 0.61 par:pre; +desserve desservir VER 1.16 5.14 0.02 0.07 sub:pre:3s; +desservent desservir VER 1.16 5.14 0.16 0.34 ind:pre:3p; +desservi desservir VER m s 1.16 5.14 0.16 0.61 par:pas; +desservie desservir VER f s 1.16 5.14 0.12 0.41 par:pas; +desservies desservir VER f p 1.16 5.14 0.14 0.07 par:pas; +desservir desservir VER 1.16 5.14 0.07 1.08 inf; +desservira desservir VER 1.16 5.14 0.02 0.00 ind:fut:3s; +desservirait desservir VER 1.16 5.14 0.02 0.07 cnd:pre:3s; +desserviront desservir VER 1.16 5.14 0.00 0.07 ind:fut:3p; +desservis desservir VER m p 1.16 5.14 0.03 0.07 par:pas; +desservit desservir VER 1.16 5.14 0.00 0.07 ind:pas:3s; +dessiccation dessiccation NOM f s 0.03 0.07 0.03 0.07 +dessille dessiller VER 0.29 0.81 0.00 0.07 ind:pre:3s; +dessiller dessiller VER 0.29 0.81 0.00 0.34 inf; +dessilleront dessiller VER 0.29 0.81 0.00 0.07 ind:fut:3p; +dessillé dessiller VER m s 0.29 0.81 0.29 0.07 par:pas; +dessillés dessiller VER m p 0.29 0.81 0.00 0.27 par:pas; +dessin dessin NOM m s 29.60 56.28 17.92 34.86 +dessina dessiner VER 29.97 79.66 0.29 3.45 ind:pas:3s; +dessinai dessiner VER 29.97 79.66 0.00 0.68 ind:pas:1s; +dessinaient dessiner VER 29.97 79.66 0.14 5.20 ind:imp:3p; +dessinais dessiner VER 29.97 79.66 0.89 0.88 ind:imp:1s;ind:imp:2s; +dessinait dessiner VER 29.97 79.66 0.85 10.88 ind:imp:3s; +dessinant dessiner VER 29.97 79.66 0.29 4.73 par:pre; +dessinateur dessinateur NOM m s 1.86 7.30 1.08 5.27 +dessinateurs dessinateur NOM m p 1.86 7.30 0.46 1.76 +dessinatrice dessinateur NOM f s 1.86 7.30 0.31 0.27 +dessine dessiner VER 29.97 79.66 6.05 10.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessinent dessiner VER 29.97 79.66 0.44 3.85 ind:pre:3p; +dessiner dessiner VER 29.97 79.66 9.10 12.97 inf; +dessinera dessiner VER 29.97 79.66 0.12 0.00 ind:fut:3s; +dessinerai dessiner VER 29.97 79.66 0.32 0.14 ind:fut:1s; +dessineraient dessiner VER 29.97 79.66 0.00 0.07 cnd:pre:3p; +dessinerais dessiner VER 29.97 79.66 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +dessinerait dessiner VER 29.97 79.66 0.16 0.07 cnd:pre:3s; +dessinerez dessiner VER 29.97 79.66 0.00 0.07 ind:fut:2p; +dessineront dessiner VER 29.97 79.66 0.03 0.07 ind:fut:3p; +dessines dessiner VER 29.97 79.66 1.39 0.07 ind:pre:2s; +dessinez dessiner VER 29.97 79.66 0.99 0.27 imp:pre:2p;ind:pre:2p; +dessiniez dessiner VER 29.97 79.66 0.26 0.00 ind:imp:2p; +dessinions dessiner VER 29.97 79.66 0.02 0.07 ind:imp:1p; +dessinât dessiner VER 29.97 79.66 0.00 0.20 sub:imp:3s; +dessins dessin NOM m p 29.60 56.28 11.68 21.42 +dessinèrent dessiner VER 29.97 79.66 0.01 0.41 ind:pas:3p; +dessiné dessiner VER m s 29.97 79.66 5.05 8.99 par:pas; +dessinée dessiner VER f s 29.97 79.66 1.33 7.70 par:pas; +dessinées dessiner VER f p 29.97 79.66 1.85 5.27 par:pas; +dessinés dessiner VER m p 29.97 79.66 0.33 2.84 par:pas; +dessoûla dessoûler VER 1.69 0.81 0.00 0.07 ind:pas:3s; +dessoûlait dessoûler VER 1.69 0.81 0.00 0.14 ind:imp:3s; +dessoûle dessoûler VER 1.69 0.81 0.63 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dessoûlent dessoûler VER 1.69 0.81 0.05 0.00 ind:pre:3p; +dessoûler dessoûler VER 1.69 0.81 0.37 0.14 inf; +dessoûles dessoûler VER 1.69 0.81 0.01 0.00 ind:pre:2s; +dessoûlez dessoûler VER 1.69 0.81 0.04 0.00 imp:pre:2p;ind:pre:2p; +dessoûlé dessoûler VER m s 1.69 0.81 0.58 0.14 par:pas; +dessoûlée dessoûler VER f s 1.69 0.81 0.01 0.14 par:pas; +dessoucha dessoucher VER 0.00 0.14 0.00 0.07 ind:pas:3s; +dessouchée dessoucher VER f s 0.00 0.14 0.00 0.07 par:pas; +dessouda dessouder VER 0.63 0.54 0.00 0.07 ind:pas:3s; +dessouder dessouder VER 0.63 0.54 0.45 0.14 inf; +dessoudé dessouder VER m s 0.63 0.54 0.18 0.20 par:pas; +dessoudée dessouder VER f s 0.63 0.54 0.00 0.07 par:pas; +dessoudées dessouder VER f p 0.63 0.54 0.00 0.07 par:pas; +dessoulait dessouler VER 0.04 0.20 0.00 0.07 ind:imp:3s; +dessouler dessouler VER 0.04 0.20 0.01 0.00 inf; +dessoulé dessouler VER m s 0.04 0.20 0.04 0.14 par:pas; +dessous_de_bras dessous_de_bras NOM m 0.01 0.07 0.01 0.07 +dessous_de_plat dessous_de_plat NOM m 0.20 0.54 0.20 0.54 +dessous_de_table dessous_de_table NOM m 0.21 0.00 0.21 0.00 +dessous_de_verre dessous_de_verre NOM m 0.01 0.00 0.01 0.00 +dessous dessous NOM m 18.14 29.46 18.14 29.46 +dessèche dessécher VER 3.54 15.61 0.85 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +dessèchement dessèchement NOM m s 0.02 0.07 0.02 0.07 +dessèchent dessécher VER 3.54 15.61 0.14 0.34 ind:pre:3p; +dessécha dessécher VER 3.54 15.61 0.02 0.00 ind:pas:3s; +desséchaient dessécher VER 3.54 15.61 0.02 0.47 ind:imp:3p; +desséchais dessécher VER 3.54 15.61 0.00 0.07 ind:imp:1s; +desséchait dessécher VER 3.54 15.61 0.01 1.42 ind:imp:3s; +desséchant dessécher VER 3.54 15.61 0.14 0.20 par:pre; +desséchante desséchant ADJ f s 0.01 0.20 0.00 0.14 +dessécher dessécher VER 3.54 15.61 0.25 0.88 inf; +dessécherait dessécher VER 3.54 15.61 0.01 0.07 cnd:pre:3s; +dessécheront dessécher VER 3.54 15.61 0.01 0.07 ind:fut:3p; +desséchez dessécher VER 3.54 15.61 0.01 0.00 ind:pre:2p; +desséchèrent dessécher VER 3.54 15.61 0.00 0.07 ind:pas:3p; +desséché dessécher VER m s 3.54 15.61 0.49 3.72 par:pas; +desséchée dessécher VER f s 3.54 15.61 0.80 4.32 par:pas; +desséchées dessécher VER f p 3.54 15.61 0.24 1.28 par:pas; +desséchés dessécher VER m p 3.54 15.61 0.56 1.96 par:pas; +dessuintée dessuinter VER f s 0.00 0.07 0.00 0.07 par:pas; +dessus_de_lit dessus_de_lit NOM m 0.09 1.08 0.09 1.08 +dessus dessus ADV 111.19 57.57 111.19 57.57 +destin destin NOM m s 53.03 67.23 51.93 62.77 +destina destiner VER 12.52 35.00 0.00 0.07 ind:pas:3s; +destinaient destiner VER 12.52 35.00 0.00 0.34 ind:imp:3p; +destinais destiner VER 12.52 35.00 0.09 0.27 ind:imp:1s;ind:imp:2s; +destinait destiner VER 12.52 35.00 0.21 1.76 ind:imp:3s; +destinant destiner VER 12.52 35.00 0.00 0.07 par:pre; +destinataire destinataire NOM s 0.71 2.23 0.67 1.82 +destinataires destinataire NOM p 0.71 2.23 0.04 0.41 +destination destination NOM f s 10.88 10.14 10.41 9.59 +destinations destination NOM f p 10.88 10.14 0.46 0.54 +destinatrice destinateur NOM f s 0.00 0.14 0.00 0.14 +destine destiner VER 12.52 35.00 0.37 1.28 ind:pre:1s;ind:pre:3s; +destinent destiner VER 12.52 35.00 0.01 0.14 ind:pre:3p; +destiner destiner VER 12.52 35.00 0.00 0.07 inf; +destines destiner VER 12.52 35.00 0.20 0.00 ind:pre:2s; +destinez destiner VER 12.52 35.00 0.16 0.20 ind:pre:2p; +destiniez destiner VER 12.52 35.00 0.01 0.00 ind:imp:2p; +destins destin NOM m p 53.03 67.23 1.10 4.46 +destiné destiner VER m s 12.52 35.00 5.09 11.35 par:pas; +destinée destinée NOM f s 9.08 11.22 8.64 8.31 +destinées destiner VER f p 12.52 35.00 1.08 3.85 par:pas; +destinés destiner VER m p 12.52 35.00 2.11 6.69 par:pas; +destitue destituer VER 0.56 0.74 0.01 0.07 ind:pre:3s; +destituer destituer VER 0.56 0.74 0.17 0.14 inf; +destitueront destituer VER 0.56 0.74 0.00 0.07 ind:fut:3p; +destituez destituer VER 0.56 0.74 0.01 0.07 imp:pre:2p; +destitution destitution NOM f s 0.17 0.34 0.17 0.34 +destitué destituer VER m s 0.56 0.74 0.36 0.41 par:pas; +destituée destituer VER f s 0.56 0.74 0.01 0.00 par:pas; +destrier destrier NOM m s 0.38 0.74 0.25 0.34 +destriers destrier NOM m p 0.38 0.74 0.14 0.41 +destroy destroy ADJ s 0.25 0.14 0.25 0.14 +destroyer destroyer NOM m s 2.82 0.88 1.84 0.41 +destroyers destroyer NOM m p 2.82 0.88 0.98 0.47 +destructeur destructeur ADJ m s 2.84 2.77 1.10 0.95 +destructeurs destructeur ADJ m p 2.84 2.77 0.28 0.27 +destructible destructible ADJ m s 0.03 0.00 0.03 0.00 +destructif destructif ADJ m s 0.35 0.14 0.05 0.14 +destructifs destructif ADJ m p 0.35 0.14 0.01 0.00 +destruction destruction NOM f s 14.31 15.34 13.96 11.76 +destructions destruction NOM f p 14.31 15.34 0.35 3.58 +destructive destructif ADJ f s 0.35 0.14 0.29 0.00 +destructrice destructeur ADJ f s 2.84 2.77 0.97 1.15 +destructrices destructeur ADJ f p 2.84 2.77 0.49 0.41 +deçà deçà ADV 0.27 2.97 0.27 2.97 +dette dette NOM f s 26.13 12.16 12.77 5.14 +dettes dette NOM f p 26.13 12.16 13.36 7.03 +deuche deuche NOM f s 0.00 0.07 0.00 0.07 +deuil deuil NOM m s 12.24 26.22 12.21 23.51 +deuils deuil NOM m p 12.24 26.22 0.03 2.70 +deus_ex_machina deus_ex_machina NOM m 0.16 0.47 0.16 0.47 +deusio deusio ADV 0.20 0.00 0.20 0.00 +deutsche_mark deutsche_mark ADJ m s 0.02 0.00 0.02 0.00 +deutérium deutérium NOM m s 0.07 0.00 0.07 0.00 +deutéronome deutéronome NOM m s 0.23 0.20 0.23 0.20 +deux_chevaux deux_chevaux NOM f 0.00 1.22 0.00 1.22 +deux_deux deux_deux NOM m 0.02 0.00 0.02 0.00 +deux_mâts deux_mâts NOM m 0.14 0.07 0.14 0.07 +deux_pièces deux_pièces NOM m 0.27 1.82 0.27 1.82 +deux_points deux_points NOM m 0.01 0.00 0.01 0.00 +deux_ponts deux_ponts NOM m 0.00 0.07 0.00 0.07 +deux_quatre deux_quatre NOM m 0.03 0.00 0.03 0.00 +deux_roues deux_roues NOM m 0.11 0.00 0.11 0.00 +deux deux ADJ:num 1009.01 1557.91 1009.01 1557.91 +deuxième deuxième ADJ 43.97 59.05 43.77 58.58 +deuxièmement deuxièmement ADV 4.58 0.88 4.58 0.88 +deuxièmes deuxième ADJ 43.97 59.05 0.20 0.47 +deuzio deuzio ADV 0.89 0.20 0.89 0.20 +devînmes devenir VER 438.57 533.51 0.04 0.27 ind:pas:1p; +devînt devenir VER 438.57 533.51 0.29 2.09 sub:imp:3s; +devaient devoir VER 3232.80 1318.24 13.59 61.22 ind:imp:3p; +devais devoir VER 3232.80 1318.24 81.01 53.38 ind:imp:1s;ind:imp:2s; +devait devoir VER 3232.80 1318.24 108.88 298.99 ind:imp:3s; +devance devancer VER 3.94 8.04 0.89 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +devancent devancer VER 3.94 8.04 0.06 0.20 ind:pre:3p; +devancer devancer VER 3.94 8.04 0.99 2.03 inf; +devancerait devancer VER 3.94 8.04 0.01 0.00 cnd:pre:3s; +devancerez devancer VER 3.94 8.04 0.01 0.00 ind:fut:2p; +devancez devancer VER 3.94 8.04 0.07 0.00 imp:pre:2p;ind:pre:2p; +devanciers devancier NOM m p 0.00 0.07 0.00 0.07 +devancèrent devancer VER 3.94 8.04 0.00 0.07 ind:pas:3p; +devancé devancer VER m s 3.94 8.04 0.98 1.15 par:pas; +devancée devancer VER f s 3.94 8.04 0.31 0.27 par:pas; +devancés devancer VER m p 3.94 8.04 0.54 0.14 par:pas; +devant devant PRE 208.19 690.34 208.19 690.34 +devança devancer VER 3.94 8.04 0.02 0.61 ind:pas:3s; +devançaient devancer VER 3.94 8.04 0.00 0.34 ind:imp:3p; +devançais devancer VER 3.94 8.04 0.00 0.07 ind:imp:1s; +devançait devancer VER 3.94 8.04 0.03 0.68 ind:imp:3s; +devançant devancer VER 3.94 8.04 0.01 1.55 par:pre; +devançons devancer VER 3.94 8.04 0.03 0.00 imp:pre:1p; +devants devant NOM m p 4.20 11.08 0.75 2.36 +devanture devanture NOM f s 0.48 7.64 0.46 5.07 +devantures devanture NOM f p 0.48 7.64 0.03 2.57 +devenaient devenir VER 438.57 533.51 1.76 19.39 ind:imp:3p; +devenais devenir VER 438.57 533.51 2.82 6.15 ind:imp:1s;ind:imp:2s; +devenait devenir VER 438.57 533.51 7.41 77.16 ind:imp:3s; +devenant devenir VER 438.57 533.51 1.23 5.27 par:pre; +devenez devenir VER 438.57 533.51 3.69 1.28 imp:pre:2p;ind:pre:2p; +deveniez devenir VER 438.57 533.51 0.71 0.14 ind:imp:2p; +devenions devenir VER 438.57 533.51 0.20 0.95 ind:imp:1p; +devenir devenir VER 438.57 533.51 108.83 85.27 inf; +devenons devenir VER 438.57 533.51 1.23 0.74 imp:pre:1p;ind:pre:1p; +devenu devenir VER m s 438.57 533.51 92.42 95.68 par:pas; +devenue devenir VER f s 438.57 533.51 32.70 52.03 par:pas; +devenues devenir VER f p 438.57 533.51 3.57 8.99 par:pas; +devenus devenir VER m p 438.57 533.51 17.16 23.45 par:pas; +devers devers PRE 0.06 2.57 0.06 2.57 +devez devoir VER 3232.80 1318.24 150.16 16.15 imp:pre:2p;ind:pre:2p; +deviendra devenir VER 438.57 533.51 9.28 4.12 ind:fut:3s; +deviendrai devenir VER 438.57 533.51 3.13 1.49 ind:fut:1s; +deviendraient devenir VER 438.57 533.51 0.22 1.55 cnd:pre:3p; +deviendrais devenir VER 438.57 533.51 3.05 1.96 cnd:pre:1s;cnd:pre:2s; +deviendrait devenir VER 438.57 533.51 3.16 8.58 cnd:pre:3s; +deviendras devenir VER 438.57 533.51 3.71 0.95 ind:fut:2s; +deviendrez devenir VER 438.57 533.51 1.45 0.27 ind:fut:2p; +deviendriez devenir VER 438.57 533.51 0.22 0.20 cnd:pre:2p; +deviendrions devenir VER 438.57 533.51 0.08 0.14 cnd:pre:1p; +deviendrons devenir VER 438.57 533.51 0.86 0.20 ind:fut:1p; +deviendront devenir VER 438.57 533.51 2.15 1.35 ind:fut:3p; +devienne devenir VER 438.57 533.51 10.24 7.36 sub:pre:1s;sub:pre:3s; +deviennent devenir VER 438.57 533.51 14.29 16.22 ind:pre:3p; +deviennes devenir VER 438.57 533.51 1.94 0.61 sub:pre:2s; +deviens devenir VER 438.57 533.51 32.11 8.99 imp:pre:2s;ind:pre:1s;ind:pre:2s; +devient devenir VER 438.57 533.51 69.59 59.46 ind:pre:3s; +deviez devoir VER 3232.80 1318.24 13.48 1.69 ind:imp:2p;sub:pre:2p; +devin devin NOM m s 1.82 1.08 1.61 0.68 +devina deviner VER 72.77 112.30 0.02 5.14 ind:pas:3s; +devinai deviner VER 72.77 112.30 0.14 2.91 ind:pas:1s; +devinaient deviner VER 72.77 112.30 0.00 1.49 ind:imp:3p; +devinais deviner VER 72.77 112.30 0.21 7.30 ind:imp:1s;ind:imp:2s; +devinait deviner VER 72.77 112.30 0.07 18.85 ind:imp:3s; +devinant deviner VER 72.77 112.30 0.05 1.89 par:pre; +devine deviner VER 72.77 112.30 27.12 21.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +devinent deviner VER 72.77 112.30 0.14 1.28 ind:pre:3p; +deviner deviner VER 72.77 112.30 17.60 25.95 inf; +devinera deviner VER 72.77 112.30 0.22 0.20 ind:fut:3s; +devinerai deviner VER 72.77 112.30 0.07 0.14 ind:fut:1s; +devineraient deviner VER 72.77 112.30 0.02 0.00 cnd:pre:3p; +devinerais deviner VER 72.77 112.30 0.08 0.34 cnd:pre:1s;cnd:pre:2s; +devinerait deviner VER 72.77 112.30 0.06 0.41 cnd:pre:3s; +devineras deviner VER 72.77 112.30 1.50 0.00 ind:fut:2s; +devineresse devineur NOM f s 0.15 0.20 0.14 0.14 +devineresses devineur NOM f p 0.15 0.20 0.00 0.07 +devinerez deviner VER 72.77 112.30 0.90 0.27 ind:fut:2p; +devineriez deviner VER 72.77 112.30 0.22 0.07 cnd:pre:2p; +devineront deviner VER 72.77 112.30 0.03 0.07 ind:fut:3p; +devines deviner VER 72.77 112.30 2.10 1.01 ind:pre:2s;sub:pre:2s; +devinette devinette NOM f s 2.97 2.70 1.48 1.42 +devinettes devinette NOM f p 2.97 2.70 1.49 1.28 +devineur devineur NOM m s 0.15 0.20 0.01 0.00 +devinez deviner VER 72.77 112.30 10.15 2.91 imp:pre:2p;ind:pre:2p; +devinions deviner VER 72.77 112.30 0.00 0.95 ind:imp:1p; +devinâmes deviner VER 72.77 112.30 0.00 0.14 ind:pas:1p; +devinons deviner VER 72.77 112.30 0.09 0.14 imp:pre:1p;ind:pre:1p; +devinât deviner VER 72.77 112.30 0.00 0.47 sub:imp:3s; +devinrent devenir VER 438.57 533.51 1.40 5.61 ind:pas:3p; +devins devenir VER 438.57 533.51 0.69 1.89 ind:pas:1s; +devinsse devenir VER 438.57 533.51 0.00 0.14 sub:imp:1s; +devinssent devenir VER 438.57 533.51 0.00 0.27 sub:imp:3p; +devinssiez devenir VER 438.57 533.51 0.01 0.00 sub:imp:2p; +devint devenir VER 438.57 533.51 6.96 33.31 ind:pas:3s; +devinèrent deviner VER 72.77 112.30 0.00 0.14 ind:pas:3p; +deviné deviner VER m s 72.77 112.30 11.95 16.96 par:pas; +devinée deviner VER f s 72.77 112.30 0.02 1.49 par:pas; +devinées deviner VER f p 72.77 112.30 0.00 0.34 par:pas; +devinés deviner VER m p 72.77 112.30 0.01 0.20 par:pas; +devions devoir VER 3232.80 1318.24 6.25 9.46 ind:imp:1p; +devis devis NOM m 0.94 1.62 0.94 1.62 +devisaient deviser VER 0.25 3.58 0.01 0.68 ind:imp:3p; +devisais deviser VER 0.25 3.58 0.00 0.07 ind:imp:1s; +devisait deviser VER 0.25 3.58 0.00 0.54 ind:imp:3s; +devisant deviser VER 0.25 3.58 0.00 1.28 par:pre; +devise devise NOM f s 5.54 7.77 4.75 6.22 +devisent deviser VER 0.25 3.58 0.01 0.20 ind:pre:3p; +deviser deviser VER 0.25 3.58 0.03 0.47 inf; +devises devise NOM f p 5.54 7.77 0.79 1.55 +devisions deviser VER 0.25 3.58 0.16 0.07 ind:imp:1p; +devisèrent deviser VER 0.25 3.58 0.00 0.07 ind:pas:3p; +devisé deviser VER m s 0.25 3.58 0.04 0.07 par:pas; +devoir devoir VER 3232.80 1318.24 74.06 29.26 inf; +devoirs devoir NOM m p 63.59 55.54 20.70 22.50 +devon devon NOM m s 1.98 0.27 0.04 0.00 +devons devoir VER 3232.80 1318.24 114.35 14.93 imp:pre:1p;ind:pre:1p; +devra devoir VER 3232.80 1318.24 22.45 8.04 ind:fut:3s; +devrai devoir VER 3232.80 1318.24 10.32 1.15 ind:fut:1s; +devraient devoir VER 3232.80 1318.24 23.70 10.41 cnd:pre:3p; +devrais devoir VER 3232.80 1318.24 235.63 36.49 cnd:pre:1s;cnd:pre:2s; +devrait devoir VER 3232.80 1318.24 208.85 51.49 cnd:pre:3s; +devras devoir VER 3232.80 1318.24 15.16 0.41 ind:fut:2s; +devrez devoir VER 3232.80 1318.24 12.97 0.74 ind:fut:2p; +devriez devoir VER 3232.80 1318.24 75.83 11.89 cnd:pre:2p; +devrions devoir VER 3232.80 1318.24 27.74 2.36 cnd:pre:1p; +devrons devoir VER 3232.80 1318.24 7.11 0.34 ind:fut:1p; +devront devoir VER 3232.80 1318.24 7.26 3.04 ind:fut:3p; +dexaméthasone dexaméthasone NOM f s 0.01 0.00 0.01 0.00 +dextre dextre NOM f s 0.17 0.54 0.17 0.54 +dextrement dextrement ADV 0.00 0.14 0.00 0.14 +dextrose dextrose NOM m s 0.12 0.00 0.12 0.00 +dextérité dextérité NOM f s 0.32 2.16 0.32 2.16 +dey dey NOM m s 0.02 1.96 0.02 1.96 +dharma dharma NOM m s 0.26 0.14 0.26 0.14 +dhole dhole NOM m s 0.08 0.00 0.08 0.00 +dia dia ONO 0.41 1.22 0.41 1.22 +diable diable ONO 4.25 2.91 4.25 2.91 +diablement diablement ADV 0.75 1.01 0.75 1.01 +diablerie diablerie NOM f s 0.18 0.61 0.14 0.07 +diableries diablerie NOM f p 0.18 0.61 0.04 0.54 +diables diable NOM m p 93.34 54.80 5.80 3.78 +diablesse diablesse NOM f s 1.12 1.28 0.95 1.01 +diablesses diablesse NOM f p 1.12 1.28 0.16 0.27 +diablotin diablotin NOM m s 0.53 0.34 0.38 0.14 +diablotins diablotin NOM m p 0.53 0.34 0.15 0.20 +diabolique diabolique ADJ s 8.61 5.95 6.89 4.73 +diaboliquement diaboliquement ADV 0.11 0.34 0.11 0.34 +diaboliques diabolique ADJ p 8.61 5.95 1.71 1.22 +diabolisent diaboliser VER 0.09 0.07 0.01 0.00 ind:pre:3p; +diaboliser diaboliser VER 0.09 0.07 0.05 0.00 inf; +diabolisme diabolisme NOM m s 0.04 0.00 0.04 0.00 +diabolisé diaboliser VER m s 0.09 0.07 0.02 0.07 par:pas; +diabolisée diaboliser VER f s 0.09 0.07 0.01 0.00 par:pas; +diabolo diabolo NOM m s 0.03 0.88 0.03 0.47 +diabolos diabolo NOM m p 0.03 0.88 0.00 0.41 +diabète diabète NOM m s 2.27 1.42 2.25 1.35 +diabètes diabète NOM m p 2.27 1.42 0.01 0.07 +diabétique diabétique ADJ s 1.29 0.34 1.28 0.34 +diabétiques diabétique NOM p 0.53 0.00 0.16 0.00 +diachronique diachronique ADJ f s 0.01 0.07 0.01 0.07 +diaclase diaclase NOM f s 0.14 0.00 0.14 0.00 +diaconesse diaconesse NOM f s 0.00 0.20 0.00 0.14 +diaconesses diaconesse NOM f p 0.00 0.20 0.00 0.07 +diaconie diaconie NOM f s 0.00 0.07 0.00 0.07 +diacre diacre NOM m s 0.94 1.15 0.84 1.01 +diacres diacre NOM m p 0.94 1.15 0.09 0.14 +diacritique diacritique ADJ m s 0.03 0.07 0.03 0.07 +diacétylmorphine diacétylmorphine NOM f s 0.01 0.00 0.01 0.00 +diadème diadème NOM m s 1.52 1.76 1.38 1.15 +diadèmes diadème NOM m p 1.52 1.76 0.15 0.61 +diagnose diagnose NOM f s 0.01 0.00 0.01 0.00 +diagnostic diagnostic NOM m s 6.78 3.85 6.25 3.51 +diagnostics diagnostic NOM m p 6.78 3.85 0.53 0.34 +diagnostiqua diagnostiquer VER 1.93 1.15 0.00 0.14 ind:pas:3s; +diagnostiquait diagnostiquer VER 1.93 1.15 0.02 0.14 ind:imp:3s; +diagnostiquant diagnostiquer VER 1.93 1.15 0.03 0.07 par:pre; +diagnostique diagnostique ADJ s 0.88 0.20 0.70 0.20 +diagnostiquer diagnostiquer VER 1.93 1.15 0.53 0.27 inf; +diagnostiques diagnostique ADJ p 0.88 0.20 0.17 0.00 +diagnostiqueur diagnostiqueur NOM m s 0.01 0.00 0.01 0.00 +diagnostiquez diagnostiquer VER 1.93 1.15 0.03 0.00 imp:pre:2p;ind:pre:2p; +diagnostiquèrent diagnostiquer VER 1.93 1.15 0.00 0.14 ind:pas:3p; +diagnostiqué diagnostiquer VER m s 1.93 1.15 1.20 0.27 par:pas; +diagnostiqués diagnostiquer VER m p 1.93 1.15 0.04 0.07 par:pas; +diagonal diagonal ADJ m s 0.11 0.27 0.00 0.07 +diagonale diagonale NOM f s 0.28 4.32 0.18 3.85 +diagonalement diagonalement ADV 0.01 0.07 0.01 0.07 +diagonales diagonale NOM f p 0.28 4.32 0.10 0.47 +diagonaux diagonal ADJ m p 0.11 0.27 0.00 0.07 +diagramme diagramme NOM m s 0.77 0.14 0.58 0.00 +diagrammes diagramme NOM m p 0.77 0.14 0.19 0.14 +dialectal dialectal ADJ m s 0.32 0.00 0.21 0.00 +dialectale dialectal ADJ f s 0.32 0.00 0.11 0.00 +dialecte dialecte NOM m s 1.79 2.57 1.44 2.03 +dialectes dialecte NOM m p 1.79 2.57 0.35 0.54 +dialecticien dialecticien NOM m s 0.01 0.34 0.00 0.20 +dialecticienne dialecticien NOM f s 0.01 0.34 0.00 0.07 +dialecticiens dialecticien NOM m p 0.01 0.34 0.01 0.07 +dialectique dialectique NOM f s 0.66 2.23 0.66 2.16 +dialectiques dialectique ADJ f p 0.19 2.03 0.00 0.20 +dialogique dialogique ADJ m s 0.01 0.00 0.01 0.00 +dialoguai dialoguer VER 1.01 2.64 0.00 0.07 ind:pas:1s; +dialoguaient dialoguer VER 1.01 2.64 0.01 0.14 ind:imp:3p; +dialoguait dialoguer VER 1.01 2.64 0.01 0.14 ind:imp:3s; +dialoguant dialoguer VER 1.01 2.64 0.05 0.27 par:pre; +dialogue dialogue NOM m s 16.71 19.19 14.11 14.46 +dialoguent dialoguer VER 1.01 2.64 0.00 0.20 ind:pre:3p; +dialoguer dialoguer VER 1.01 2.64 0.76 0.74 inf; +dialoguera dialoguer VER 1.01 2.64 0.01 0.07 ind:fut:3s; +dialogues dialogue NOM m p 16.71 19.19 2.60 4.73 +dialoguez dialoguer VER 1.01 2.64 0.11 0.00 imp:pre:2p;ind:pre:2p; +dialoguiste dialoguiste NOM s 0.02 0.14 0.00 0.07 +dialoguistes dialoguiste NOM p 0.02 0.14 0.02 0.07 +dialoguons dialoguer VER 1.01 2.64 0.03 0.00 imp:pre:1p;ind:pre:1p; +dialoguât dialoguer VER 1.01 2.64 0.00 0.07 sub:imp:3s; +dialogué dialoguer VER m s 1.01 2.64 0.00 0.27 par:pas; +dialoguée dialoguer VER f s 1.01 2.64 0.00 0.14 par:pas; +dialoguées dialoguer VER f p 1.01 2.64 0.01 0.27 par:pas; +dialyse dialyse NOM f s 1.06 0.20 1.02 0.20 +dialyser dialyser VER 0.16 0.00 0.01 0.00 inf; +dialyses dialyse NOM f p 1.06 0.20 0.04 0.00 +dialysé dialyser VER m s 0.16 0.00 0.01 0.00 par:pas; +dialysée dialyser VER f s 0.16 0.00 0.14 0.00 par:pas; +diam diam NOM m s 0.43 1.01 0.17 0.61 +diamant diamant NOM m s 20.56 22.91 7.97 14.12 +diamantaire diamantaire NOM s 0.07 2.43 0.05 1.28 +diamantaires diamantaire NOM p 0.07 2.43 0.02 1.15 +diamante diamanter VER 0.00 0.20 0.00 0.07 ind:pre:3s; +diamantifère diamantifère ADJ f s 0.00 0.07 0.00 0.07 +diamantin diamantin ADJ m s 0.06 0.88 0.05 0.20 +diamantine diamantin ADJ f s 0.06 0.88 0.00 0.41 +diamantines diamantin ADJ f p 0.06 0.88 0.00 0.20 +diamantins diamantin ADJ m p 0.06 0.88 0.01 0.07 +diamants diamant NOM m p 20.56 22.91 12.59 8.78 +diamanté diamanté ADJ m s 0.01 0.14 0.00 0.14 +diamantée diamanter VER f s 0.00 0.20 0.00 0.07 par:pas; +diamantés diamanté ADJ m p 0.01 0.14 0.01 0.00 +diamine diamine NOM f s 0.01 0.00 0.01 0.00 +diamorphine diamorphine NOM f s 0.01 0.00 0.01 0.00 +diams diam NOM m p 0.43 1.01 0.26 0.41 +diamètre diamètre NOM m s 1.81 2.23 1.81 2.23 +diamétralement diamétralement ADV 0.14 0.74 0.14 0.74 +diane diane NOM f s 0.03 0.47 0.03 0.41 +dianes diane NOM f p 0.03 0.47 0.00 0.07 +diantre diantre ONO 0.46 0.14 0.46 0.14 +diapason diapason NOM m s 0.50 1.49 0.46 1.42 +diapasons diapason NOM m p 0.50 1.49 0.04 0.07 +diaphane diaphane ADJ s 0.03 2.91 0.03 2.03 +diaphanes diaphane ADJ f p 0.03 2.91 0.00 0.88 +diaphorétique diaphorétique ADJ s 0.06 0.00 0.06 0.00 +diaphragma diaphragmer VER 0.00 0.07 0.00 0.07 ind:pas:3s; +diaphragmatique diaphragmatique ADJ f s 0.05 0.00 0.05 0.00 +diaphragme diaphragme NOM m s 1.32 1.49 1.32 1.42 +diaphragmes diaphragme NOM m p 1.32 1.49 0.00 0.07 +diapo diapo NOM f s 1.78 0.27 0.66 0.07 +diaporama diaporama NOM m s 0.05 0.07 0.05 0.00 +diaporamas diaporama NOM m p 0.05 0.07 0.00 0.07 +diapos diapo NOM f p 1.78 0.27 1.13 0.20 +diapositifs diapositif ADJ m p 0.21 0.07 0.00 0.07 +diapositive diapositif ADJ f s 0.21 0.07 0.20 0.00 +diapositives diapositive NOM f p 0.92 0.61 0.86 0.61 +diapré diapré ADJ m s 0.00 0.41 0.00 0.07 +diaprée diapré ADJ f s 0.00 0.41 0.00 0.14 +diaprées diaprer VER f p 0.00 0.20 0.00 0.07 par:pas; +diaprures diaprure NOM f p 0.00 0.07 0.00 0.07 +diaprés diapré ADJ m p 0.00 0.41 0.00 0.20 +diarrhée diarrhée NOM f s 3.38 1.82 2.84 1.15 +diarrhées diarrhée NOM f p 3.38 1.82 0.54 0.68 +diarrhéique diarrhéique ADJ s 0.01 0.07 0.01 0.07 +diaspora diaspora NOM f s 0.00 0.61 0.00 0.54 +diasporas diaspora NOM f p 0.00 0.61 0.00 0.07 +diastole diastole NOM f s 0.01 0.07 0.00 0.07 +diastoles diastole NOM f p 0.01 0.07 0.01 0.00 +diastolique diastolique ADJ s 0.07 0.07 0.07 0.00 +diastoliques diastolique ADJ m p 0.07 0.07 0.00 0.07 +diatomée diatomée NOM f s 0.07 0.07 0.01 0.00 +diatomées diatomée NOM f p 0.07 0.07 0.06 0.07 +diatonique diatonique ADJ s 0.00 0.14 0.00 0.14 +diatribe diatribe NOM f s 0.14 2.09 0.12 1.49 +diatribes diatribe NOM f p 0.14 2.09 0.02 0.61 +dicastères dicastère NOM m p 0.00 0.07 0.00 0.07 +dichotomie dichotomie NOM f s 0.20 0.00 0.20 0.00 +dichroïque dichroïque ADJ m s 0.01 0.00 0.01 0.00 +dichroïsme dichroïsme NOM m s 0.00 0.07 0.00 0.07 +dicible dicible ADJ s 0.00 0.07 0.00 0.07 +dico dico NOM m s 0.77 0.74 0.75 0.68 +dicos dico NOM m p 0.77 0.74 0.02 0.07 +dicta dicter VER 8.42 12.30 0.11 0.68 ind:pas:3s; +dictai dicter VER 8.42 12.30 0.00 0.14 ind:pas:1s; +dictaient dicter VER 8.42 12.30 0.14 0.20 ind:imp:3p; +dictais dicter VER 8.42 12.30 0.03 0.07 ind:imp:1s;ind:imp:2s; +dictait dicter VER 8.42 12.30 0.07 2.36 ind:imp:3s; +dictames dictame NOM m p 0.00 0.14 0.00 0.14 +dictant dicter VER 8.42 12.30 0.01 0.34 par:pre; +dictaphone dictaphone NOM m s 0.42 0.34 0.41 0.27 +dictaphones dictaphone NOM m p 0.42 0.34 0.02 0.07 +dictateur dictateur NOM m s 2.53 5.68 2.14 5.00 +dictateurs dictateur NOM m p 2.53 5.68 0.36 0.68 +dictatorial dictatorial ADJ m s 0.17 0.34 0.03 0.20 +dictatoriale dictatorial ADJ f s 0.17 0.34 0.03 0.07 +dictatoriales dictatorial ADJ f p 0.17 0.34 0.10 0.07 +dictatoriaux dictatorial ADJ m p 0.17 0.34 0.01 0.00 +dictatrice dictateur NOM f s 2.53 5.68 0.04 0.00 +dictats dictat NOM m p 0.01 0.14 0.01 0.14 +dictature dictature NOM f s 3.86 5.27 3.84 4.86 +dictatures dictature NOM f p 3.86 5.27 0.02 0.41 +dicte dicter VER 8.42 12.30 2.78 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dictent dicter VER 8.42 12.30 0.32 0.41 ind:pre:3p; +dicter dicter VER 8.42 12.30 2.28 1.89 inf; +dictera dicter VER 8.42 12.30 0.07 0.14 ind:fut:3s; +dicterai dicter VER 8.42 12.30 0.14 0.07 ind:fut:1s; +dicterez dicter VER 8.42 12.30 0.02 0.00 ind:fut:2p; +dictes dicter VER 8.42 12.30 0.03 0.27 ind:pre:2s; +dictez dicter VER 8.42 12.30 0.09 0.07 imp:pre:2p;ind:pre:2p; +dictiez dicter VER 8.42 12.30 0.01 0.07 ind:imp:2p; +diction diction NOM f s 1.37 1.49 1.37 1.49 +dictionnaire dictionnaire NOM m s 2.94 10.88 2.62 8.11 +dictionnaires dictionnaire NOM m p 2.94 10.88 0.32 2.77 +dicton dicton NOM m s 2.83 1.62 2.48 1.15 +dictons dicton NOM m p 2.83 1.62 0.34 0.47 +dictât dicter VER 8.42 12.30 0.00 0.07 sub:imp:3s; +dictèrent dicter VER 8.42 12.30 0.00 0.07 ind:pas:3p; +dicté dicter VER m s 8.42 12.30 1.22 1.42 par:pas; +dictée dictée NOM f s 2.25 4.05 1.59 3.51 +dictées dictée NOM f p 2.25 4.05 0.66 0.54 +dictés dicter VER m p 8.42 12.30 0.16 0.34 par:pas; +didactique didactique ADJ s 0.60 1.35 0.60 1.01 +didactiquement didactiquement ADV 0.00 0.07 0.00 0.07 +didactiques didactique ADJ p 0.60 1.35 0.00 0.34 +die die NOM s 2.17 1.82 2.17 1.82 +dieffenbachia dieffenbachia NOM f s 0.00 0.07 0.00 0.07 +diem diem NOM m s 0.58 0.00 0.58 0.00 +dieppoise dieppois ADJ f s 0.00 0.41 0.00 0.34 +dieppoises dieppois ADJ f p 0.00 0.41 0.00 0.07 +dies_irae dies_irae NOM m 0.54 0.14 0.54 0.14 +diesel diesel NOM m s 1.71 0.88 1.47 0.68 +diesels diesel NOM m p 1.71 0.88 0.25 0.20 +dieu_roi dieu_roi NOM m s 0.01 0.07 0.01 0.07 +dieu dieu NOM m s 903.41 396.49 852.91 368.51 +dieux dieu NOM m p 903.41 396.49 50.49 27.97 +diffamait diffamer VER 0.81 0.54 0.00 0.07 ind:imp:3s; +diffamant diffamer VER 0.81 0.54 0.04 0.00 par:pre; +diffamateur diffamateur NOM m s 0.21 0.20 0.21 0.07 +diffamateurs diffamateur NOM m p 0.21 0.20 0.00 0.07 +diffamation diffamation NOM f s 1.98 0.27 1.86 0.20 +diffamations diffamation NOM f p 1.98 0.27 0.12 0.07 +diffamatoire diffamatoire ADJ s 0.20 0.14 0.10 0.14 +diffamatoires diffamatoire ADJ f p 0.20 0.14 0.09 0.00 +diffamatrice diffamateur NOM f s 0.21 0.20 0.00 0.07 +diffame diffamer VER 0.81 0.54 0.13 0.14 ind:pre:3s; +diffament diffamer VER 0.81 0.54 0.01 0.07 ind:pre:3p; +diffamer diffamer VER 0.81 0.54 0.12 0.07 inf; +diffamé diffamer VER m s 0.81 0.54 0.48 0.00 par:pas; +diffamée diffamer VER f s 0.81 0.54 0.02 0.07 par:pas; +diffamées diffamer VER f p 0.81 0.54 0.00 0.07 par:pas; +diffamés diffamer VER m p 0.81 0.54 0.00 0.07 par:pas; +difficile difficile ADJ s 150.58 118.11 135.15 100.74 +difficilement difficilement ADV 3.72 13.04 3.72 13.04 +difficiles difficile ADJ p 150.58 118.11 15.43 17.36 +difficulté difficulté NOM f s 15.74 49.80 6.86 22.03 +difficultueux difficultueux ADJ m 0.00 0.07 0.00 0.07 +difficultés difficulté NOM f p 15.74 49.80 8.89 27.77 +difforme difforme ADJ s 1.18 2.91 0.94 1.76 +difformes difforme ADJ p 1.18 2.91 0.25 1.15 +difformité difformité NOM f s 0.68 0.81 0.42 0.47 +difformités difformité NOM f p 0.68 0.81 0.26 0.34 +diffractent diffracter VER 0.00 0.14 0.00 0.07 ind:pre:3p; +diffraction diffraction NOM f s 0.04 0.00 0.04 0.00 +diffractée diffracter VER f s 0.00 0.14 0.00 0.07 par:pas; +diffère différer VER 3.71 10.07 0.55 1.35 ind:pre:1s;ind:pre:3s; +diffèrent différer VER 3.71 10.07 1.86 0.95 ind:pre:3p; +différa différer VER 3.71 10.07 0.00 0.27 ind:pas:3s; +différaient différer VER 3.71 10.07 0.13 0.81 ind:imp:3p; +différais différer VER 3.71 10.07 0.01 0.14 ind:imp:1s; +différait différer VER 3.71 10.07 0.12 1.82 ind:imp:3s; +différant différer VER 3.71 10.07 0.00 0.68 par:pre; +différemment différemment ADV 8.46 4.19 8.46 4.19 +différence différence NOM f s 55.88 44.46 51.47 38.65 +différences différence NOM f p 55.88 44.46 4.41 5.81 +différenciables différenciable ADJ f p 0.00 0.07 0.00 0.07 +différenciaient différencier VER 3.17 2.91 0.01 0.07 ind:imp:3p; +différenciais différencier VER 3.17 2.91 0.00 0.07 ind:imp:1s; +différenciait différencier VER 3.17 2.91 0.28 0.81 ind:imp:3s; +différenciant différencier VER 3.17 2.91 0.00 0.07 par:pre; +différenciation différenciation NOM f s 0.03 0.14 0.03 0.07 +différenciations différenciation NOM f p 0.03 0.14 0.00 0.07 +différencie différencier VER 3.17 2.91 1.52 0.41 ind:pre:3s; +différencient différencier VER 3.17 2.91 0.04 0.07 ind:pre:3p; +différencier différencier VER 3.17 2.91 1.18 1.15 inf; +différenciera différencier VER 3.17 2.91 0.02 0.00 ind:fut:3s; +différencierez différencier VER 3.17 2.91 0.01 0.00 ind:fut:2p; +différencieront différencier VER 3.17 2.91 0.00 0.07 ind:fut:3p; +différenciez différencier VER 3.17 2.91 0.06 0.00 imp:pre:2p;ind:pre:2p; +différencié différencier VER m s 3.17 2.91 0.03 0.07 par:pas; +différenciée différencié ADJ f s 0.01 0.27 0.00 0.07 +différenciées différencié ADJ f p 0.01 0.27 0.01 0.07 +différenciés différencier VER m p 3.17 2.91 0.01 0.07 par:pas; +différend différend NOM m s 2.68 1.49 1.15 0.95 +différends différend NOM m p 2.68 1.49 1.53 0.54 +différent différent ADJ m s 130.91 89.32 65.42 27.43 +différente différent ADJ f s 130.91 89.32 24.45 18.31 +différentes différentes ADJ:ind f p 4.89 2.70 4.89 2.70 +différentie différentier VER 0.02 0.00 0.02 0.00 ind:pre:3s; +différentiel différentiel NOM m s 0.21 0.00 0.21 0.00 +différentielle différentiel ADJ f s 0.22 0.07 0.06 0.07 +différentielles différentiel ADJ f p 0.22 0.07 0.03 0.00 +différents différents ADJ:ind m p 3.94 2.84 3.94 2.84 +différer différer VER 3.71 10.07 0.27 2.70 inf; +différera différer VER 3.71 10.07 0.00 0.07 ind:fut:3s; +différerais différer VER 3.71 10.07 0.00 0.07 cnd:pre:1s; +différerait différer VER 3.71 10.07 0.01 0.14 cnd:pre:3s; +différeront différer VER 3.71 10.07 0.01 0.00 ind:fut:3p; +différez différer VER 3.71 10.07 0.06 0.00 imp:pre:2p;ind:pre:2p; +différions différer VER 3.71 10.07 0.00 0.07 ind:imp:1p; +différons différer VER 3.71 10.07 0.18 0.07 ind:pre:1p; +différât différer VER 3.71 10.07 0.00 0.07 sub:imp:3s; +différèrent différer VER 3.71 10.07 0.00 0.07 ind:pas:3p; +différé différer VER m s 3.71 10.07 0.19 0.47 par:pas; +différée différer VER f s 3.71 10.07 0.31 0.34 par:pas; +différées différé ADJ f p 0.13 1.55 0.01 0.14 +différés différé ADJ m p 0.13 1.55 0.02 0.00 +diffus diffus ADJ m 0.69 5.88 0.17 1.82 +diffusa diffuser VER 10.33 10.20 0.00 0.41 ind:pas:3s; +diffusaient diffuser VER 10.33 10.20 0.03 1.08 ind:imp:3p; +diffusais diffuser VER 10.33 10.20 0.02 0.00 ind:imp:1s; +diffusait diffuser VER 10.33 10.20 0.10 2.84 ind:imp:3s; +diffusant diffuser VER 10.33 10.20 0.09 0.81 par:pre; +diffuse diffuser VER 10.33 10.20 1.06 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +diffusent diffuser VER 10.33 10.20 0.64 0.27 ind:pre:3p; +diffuser diffuser VER 10.33 10.20 3.61 1.22 inf; +diffusera diffuser VER 10.33 10.20 0.16 0.00 ind:fut:3s; +diffuserai diffuser VER 10.33 10.20 0.01 0.00 ind:fut:1s; +diffuseraient diffuser VER 10.33 10.20 0.00 0.07 cnd:pre:3p; +diffuserais diffuser VER 10.33 10.20 0.01 0.00 cnd:pre:1s; +diffuserait diffuser VER 10.33 10.20 0.01 0.00 cnd:pre:3s; +diffuserions diffuser VER 10.33 10.20 0.10 0.00 cnd:pre:1p; +diffuserons diffuser VER 10.33 10.20 0.06 0.00 ind:fut:1p; +diffuseront diffuser VER 10.33 10.20 0.10 0.14 ind:fut:3p; +diffuses diffus ADJ f p 0.69 5.88 0.13 0.20 +diffuseur diffuseur NOM m s 0.19 0.14 0.09 0.07 +diffuseurs diffuseur NOM m p 0.19 0.14 0.10 0.07 +diffusez diffuser VER 10.33 10.20 0.39 0.14 imp:pre:2p;ind:pre:2p; +diffusion diffusion NOM f s 2.55 1.28 2.53 1.28 +diffusions diffusion NOM f p 2.55 1.28 0.02 0.00 +diffusons diffuser VER 10.33 10.20 0.24 0.00 imp:pre:1p;ind:pre:1p; +diffusèrent diffuser VER 10.33 10.20 0.00 0.07 ind:pas:3p; +diffusé diffuser VER m s 10.33 10.20 2.43 0.61 par:pas; +diffusée diffuser VER f s 10.33 10.20 0.71 0.81 par:pas; +diffusées diffuser VER f p 10.33 10.20 0.12 0.34 par:pas; +diffusés diffuser VER m p 10.33 10.20 0.44 0.27 par:pas; +difracter difracter VER 0.01 0.00 0.01 0.00 inf; +dig dig ONO 0.29 0.27 0.29 0.27 +digest digest NOM m s 0.23 0.41 0.23 0.34 +digeste digeste ADJ f s 0.05 0.07 0.05 0.07 +digestibles digestible ADJ p 0.00 0.07 0.00 0.07 +digestif digestif NOM m s 0.68 0.54 0.67 0.34 +digestifs digestif ADJ m p 1.22 1.82 0.23 0.27 +digestion digestion NOM f s 1.48 2.97 1.48 2.84 +digestions digestion NOM f p 1.48 2.97 0.01 0.14 +digestive digestif ADJ f s 1.22 1.82 0.19 0.54 +digestives digestif ADJ f p 1.22 1.82 0.22 0.20 +digests digest NOM m p 0.23 0.41 0.00 0.07 +digicode digicode NOM m s 0.04 0.07 0.04 0.07 +digit digit NOM m s 0.01 0.00 0.01 0.00 +digital digital ADJ m s 3.81 1.22 0.36 0.07 +digitale digital ADJ f s 3.81 1.22 0.93 0.20 +digitales digital ADJ f p 3.81 1.22 2.47 0.95 +digitaline digitaline NOM f s 0.21 0.88 0.21 0.88 +digitaliseur digitaliseur NOM m s 0.03 0.00 0.03 0.00 +digitalisée digitaliser VER f s 0.03 0.00 0.01 0.00 par:pas; +digitalisées digitaliser VER f p 0.03 0.00 0.02 0.00 par:pas; +digitaux digital ADJ m p 3.81 1.22 0.04 0.00 +digitée digité ADJ f s 0.00 0.07 0.00 0.07 +digne digne ADJ s 25.29 35.27 21.96 27.30 +dignement dignement ADV 1.80 3.51 1.80 3.51 +dignes digne ADJ p 25.29 35.27 3.33 7.97 +dignitaire dignitaire NOM s 0.70 4.26 0.21 1.01 +dignitaires dignitaire NOM p 0.70 4.26 0.49 3.24 +dignité dignité NOM f s 14.61 32.77 14.59 32.43 +dignités dignité NOM f p 14.61 32.77 0.02 0.34 +dignus_est_intrare dignus_est_intrare ADV 0.00 0.07 0.00 0.07 +digresse digresser VER 0.02 0.14 0.02 0.14 imp:pre:2s;ind:pre:1s; +digression digression NOM f s 0.08 1.62 0.06 0.34 +digressions digression NOM f p 0.08 1.62 0.02 1.28 +digère digérer VER 5.80 9.53 2.29 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +digèrent digérer VER 5.80 9.53 0.08 0.41 ind:pre:3p; +digue digue NOM f s 1.85 10.20 1.02 7.97 +digues digue NOM f p 1.85 10.20 0.83 2.23 +digéra digérer VER 5.80 9.53 0.00 0.07 ind:pas:3s; +digérai digérer VER 5.80 9.53 0.00 0.07 ind:pas:1s; +digéraient digérer VER 5.80 9.53 0.00 0.20 ind:imp:3p; +digérait digérer VER 5.80 9.53 0.03 0.95 ind:imp:3s; +digérant digérer VER 5.80 9.53 0.02 0.47 par:pre; +digérer digérer VER 5.80 9.53 1.73 3.51 inf; +digérera digérer VER 5.80 9.53 0.01 0.00 ind:fut:3s; +digérerait digérer VER 5.80 9.53 0.01 0.07 cnd:pre:3s; +digérons digérer VER 5.80 9.53 0.00 0.07 ind:pre:1p; +digérât digérer VER 5.80 9.53 0.00 0.07 sub:imp:3s; +digéré digérer VER m s 5.80 9.53 1.25 1.55 par:pas; +digérée digérer VER f s 5.80 9.53 0.23 0.61 par:pas; +digérées digérer VER f p 5.80 9.53 0.07 0.20 par:pas; +digérés digérer VER m p 5.80 9.53 0.09 0.27 par:pas; +dijonnais dijonnais ADJ m s 0.00 0.20 0.00 0.20 +diktat diktat NOM m s 0.12 0.20 0.10 0.20 +diktats diktat NOM m p 0.12 0.20 0.02 0.00 +dilapida dilapider VER 1.31 1.35 0.00 0.14 ind:pas:3s; +dilapidait dilapider VER 1.31 1.35 0.03 0.20 ind:imp:3s; +dilapidant dilapider VER 1.31 1.35 0.01 0.00 par:pre; +dilapidation dilapidation NOM f s 0.00 0.07 0.00 0.07 +dilapide dilapider VER 1.31 1.35 0.10 0.14 imp:pre:2s;ind:pre:3s; +dilapider dilapider VER 1.31 1.35 0.07 0.34 inf; +dilapides dilapider VER 1.31 1.35 0.14 0.00 ind:pre:2s; +dilapidez dilapider VER 1.31 1.35 0.19 0.00 imp:pre:2p;ind:pre:2p; +dilapidé dilapider VER m s 1.31 1.35 0.73 0.41 par:pas; +dilapidée dilapider VER f s 1.31 1.35 0.02 0.14 par:pas; +dilapidées dilapider VER f p 1.31 1.35 0.01 0.00 par:pas; +dilata dilater VER 1.30 5.54 0.00 0.20 ind:pas:3s; +dilatable dilatable ADJ f s 0.00 0.14 0.00 0.14 +dilataient dilater VER 1.30 5.54 0.00 0.34 ind:imp:3p; +dilatait dilater VER 1.30 5.54 0.01 1.15 ind:imp:3s; +dilatant dilater VER 1.30 5.54 0.00 0.68 par:pre; +dilatateur dilatateur ADJ m s 0.02 0.14 0.01 0.00 +dilatateurs dilatateur ADJ m p 0.02 0.14 0.01 0.14 +dilatation dilatation NOM f s 0.94 1.08 0.89 1.01 +dilatations dilatation NOM f p 0.94 1.08 0.05 0.07 +dilate dilater VER 1.30 5.54 0.52 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dilatent dilater VER 1.30 5.54 0.15 0.41 ind:pre:3p; +dilater dilater VER 1.30 5.54 0.29 0.54 inf; +dilation dilation NOM f s 0.03 0.00 0.03 0.00 +dilatoire dilatoire ADJ s 0.09 0.47 0.09 0.41 +dilatoires dilatoire ADJ m p 0.09 0.47 0.00 0.07 +dilatât dilater VER 1.30 5.54 0.00 0.07 sub:imp:3s; +dilatèrent dilater VER 1.30 5.54 0.00 0.14 ind:pas:3p; +dilaté dilaté ADJ m s 0.86 2.09 0.10 0.54 +dilatée dilaté ADJ f s 0.86 2.09 0.11 0.47 +dilatées dilaté ADJ f p 0.86 2.09 0.52 0.47 +dilatés dilaté ADJ m p 0.86 2.09 0.14 0.61 +dilection dilection NOM f s 0.00 0.54 0.00 0.54 +dilemme dilemme NOM m s 2.24 1.49 2.20 1.28 +dilemmes dilemme NOM m p 2.24 1.49 0.04 0.20 +dilettante dilettante NOM s 0.91 0.88 0.85 0.68 +dilettantes dilettante NOM p 0.91 0.88 0.06 0.20 +dilettantisme dilettantisme NOM m s 0.00 0.47 0.00 0.41 +dilettantismes dilettantisme NOM m p 0.00 0.47 0.00 0.07 +diligemment diligemment ADV 0.05 0.27 0.05 0.27 +diligence diligence NOM f s 3.49 2.91 3.25 2.36 +diligences diligence NOM f p 3.49 2.91 0.23 0.54 +diligent diligent ADJ m s 0.07 0.81 0.04 0.41 +diligente diligent ADJ f s 0.07 0.81 0.01 0.20 +diligenter diligenter VER 0.01 0.00 0.01 0.00 inf; +diligentes diligent ADJ f p 0.07 0.81 0.01 0.14 +diligents diligent ADJ m p 0.07 0.81 0.01 0.07 +dilua diluer VER 1.00 6.49 0.00 0.14 ind:pas:3s; +diluaient diluer VER 1.00 6.49 0.00 0.47 ind:imp:3p; +diluait diluer VER 1.00 6.49 0.00 0.81 ind:imp:3s; +diluant diluant NOM m s 0.21 0.00 0.21 0.00 +dilue diluer VER 1.00 6.49 0.28 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diluent diluer VER 1.00 6.49 0.00 0.34 ind:pre:3p; +diluer diluer VER 1.00 6.49 0.31 0.61 inf; +diluerait diluer VER 1.00 6.49 0.00 0.07 cnd:pre:3s; +diluons diluer VER 1.00 6.49 0.00 0.07 imp:pre:1p; +dilution dilution NOM f s 0.05 0.20 0.05 0.20 +dilué diluer VER m s 1.00 6.49 0.26 1.08 par:pas; +diluée diluer VER f s 1.00 6.49 0.09 1.08 par:pas; +diluées diluer VER f p 1.00 6.49 0.01 0.14 par:pas; +dilués diluer VER m p 1.00 6.49 0.01 0.34 par:pas; +diluvien diluvien ADJ m s 0.30 0.74 0.00 0.14 +diluvienne diluvien ADJ f s 0.30 0.74 0.14 0.27 +diluviennes diluvien ADJ f p 0.30 0.74 0.16 0.34 +dimanche dimanche NOM m s 63.98 101.15 59.67 87.84 +dimanches dimanche NOM m p 63.98 101.15 4.30 13.31 +dimension dimension NOM f s 9.62 23.11 6.10 8.92 +dimensionnel dimensionnel ADJ m s 0.61 0.07 0.33 0.00 +dimensionnelle dimensionnel ADJ f s 0.61 0.07 0.22 0.07 +dimensionnelles dimensionnel ADJ f p 0.61 0.07 0.05 0.00 +dimensionnels dimensionnel ADJ m p 0.61 0.07 0.01 0.00 +dimensionnement dimensionnement NOM m s 0.01 0.00 0.01 0.00 +dimensions dimension NOM f p 9.62 23.11 3.52 14.19 +diminua diminuer VER 7.94 16.28 0.14 0.74 ind:pas:3s; +diminuaient diminuer VER 7.94 16.28 0.22 0.95 ind:imp:3p; +diminuais diminuer VER 7.94 16.28 0.02 0.20 ind:imp:1s; +diminuait diminuer VER 7.94 16.28 0.10 2.64 ind:imp:3s; +diminuant diminuer VER 7.94 16.28 0.07 0.54 par:pre; +diminue diminuer VER 7.94 16.28 1.93 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diminuendo diminuendo ADV 0.02 0.00 0.02 0.00 +diminuent diminuer VER 7.94 16.28 0.52 0.81 ind:pre:3p; +diminuer diminuer VER 7.94 16.28 1.93 3.72 inf; +diminuera diminuer VER 7.94 16.28 0.13 0.00 ind:fut:3s; +diminuerai diminuer VER 7.94 16.28 0.05 0.00 ind:fut:1s; +diminuerais diminuer VER 7.94 16.28 0.03 0.00 cnd:pre:1s; +diminuerait diminuer VER 7.94 16.28 0.21 0.14 cnd:pre:3s; +diminueront diminuer VER 7.94 16.28 0.01 0.00 ind:fut:3p; +diminuez diminuer VER 7.94 16.28 0.24 0.00 imp:pre:2p;ind:pre:2p; +diminuiez diminuer VER 7.94 16.28 0.01 0.00 ind:imp:2p; +diminuât diminuer VER 7.94 16.28 0.00 0.14 sub:imp:3s; +diminuèrent diminuer VER 7.94 16.28 0.00 0.07 ind:pas:3p; +diminutif diminutif NOM m s 0.96 1.89 0.96 1.49 +diminutifs diminutif NOM m p 0.96 1.89 0.00 0.41 +diminution diminution NOM f s 1.03 1.15 1.01 1.01 +diminutions diminution NOM f p 1.03 1.15 0.03 0.14 +diminué diminuer VER m s 7.94 16.28 1.68 1.82 par:pas; +diminuée diminuer VER f s 7.94 16.28 0.46 0.88 par:pas; +diminuées diminuer VER f p 7.94 16.28 0.09 0.00 par:pas; +diminués diminuer VER m p 7.94 16.28 0.09 0.61 par:pas; +dinamiteros dinamitero NOM m p 0.00 0.20 0.00 0.20 +dinanderie dinanderie NOM f s 0.00 0.07 0.00 0.07 +dinar dinar NOM m s 1.74 0.14 0.34 0.07 +dinars dinar NOM m p 1.74 0.14 1.41 0.07 +dinde dinde NOM f s 9.32 2.97 8.79 1.69 +dindes dinde NOM f p 9.32 2.97 0.54 1.28 +dindon dindon NOM m s 1.73 1.35 1.23 0.74 +dindonne dindonner VER 0.00 0.14 0.00 0.07 ind:pre:3s; +dindonneau dindonneau NOM m s 0.17 0.07 0.17 0.00 +dindonneaux dindonneau NOM m p 0.17 0.07 0.00 0.07 +dindonné dindonner VER m s 0.00 0.14 0.00 0.07 par:pas; +dindons dindon NOM m p 1.73 1.35 0.50 0.61 +dine dine NOM m s 1.24 0.07 1.24 0.07 +ding ding ONO 3.54 1.55 3.54 1.55 +dingo dingo ADJ s 0.98 1.08 0.95 1.01 +dingos dingo NOM m p 0.95 0.88 0.28 0.20 +dingue dingue ADJ s 58.48 11.69 53.01 9.80 +dinguent dinguer VER 0.33 1.08 0.00 0.07 ind:pre:3p; +dinguer dinguer VER 0.33 1.08 0.00 0.95 inf; +dinguerie dinguerie NOM f s 0.05 0.88 0.05 0.81 +dingueries dinguerie NOM f p 0.05 0.88 0.00 0.07 +dingues dingue ADJ p 58.48 11.69 5.47 1.89 +dingué dinguer VER m s 0.33 1.08 0.00 0.07 par:pas; +dinosaure dinosaure NOM m s 4.46 0.68 2.32 0.07 +dinosaures dinosaure NOM m p 4.46 0.68 2.14 0.61 +dioclétienne dioclétien ADJ f s 0.00 0.14 0.00 0.07 +dioclétiennes dioclétien ADJ f p 0.00 0.14 0.00 0.07 +diocèse diocèse NOM m s 0.44 1.15 0.44 1.01 +diocèses diocèse NOM m p 0.44 1.15 0.00 0.14 +diocésain diocésain ADJ m s 0.10 0.14 0.10 0.00 +diocésaines diocésain ADJ f p 0.10 0.14 0.00 0.14 +diode diode NOM f s 0.07 0.00 0.07 0.00 +diodon diodon NOM m s 0.00 0.20 0.00 0.20 +dionée dionée NOM f s 0.03 0.00 0.03 0.00 +dionysiaque dionysiaque ADJ s 0.16 0.47 0.16 0.34 +dionysiaques dionysiaque ADJ f p 0.16 0.47 0.00 0.14 +dionysien dionysien ADJ m s 0.01 0.07 0.01 0.07 +dioptre dioptre NOM m s 0.00 0.07 0.00 0.07 +dioptries dioptrie NOM f p 0.00 0.14 0.00 0.14 +diorama diorama NOM m s 0.15 0.34 0.11 0.07 +dioramas diorama NOM m p 0.15 0.34 0.04 0.27 +diorite diorite NOM f s 0.04 0.00 0.04 0.00 +dioxine dioxine NOM f s 0.14 0.00 0.12 0.00 +dioxines dioxine NOM f p 0.14 0.00 0.02 0.00 +dioxyde dioxyde NOM m s 0.56 0.00 0.56 0.00 +dipôle dipôle NOM m s 0.01 0.00 0.01 0.00 +diphtongue diphtongue NOM f s 0.02 0.34 0.00 0.14 +diphtongues diphtongue NOM f p 0.02 0.34 0.02 0.20 +diphtérie diphtérie NOM f s 0.26 0.68 0.26 0.68 +diphényle diphényle NOM m s 0.00 0.07 0.00 0.07 +diplôme diplôme NOM m s 17.27 7.36 13.28 4.32 +diplômer diplômer VER 4.29 0.27 0.16 0.00 inf; +diplômes diplôme NOM m p 17.27 7.36 3.99 3.04 +diplômé diplômer VER m s 4.29 0.27 2.44 0.14 par:pas; +diplômée diplômer VER f s 4.29 0.27 1.17 0.07 par:pas; +diplômées diplômé ADJ f p 1.50 1.01 0.07 0.07 +diplômés diplômé NOM m p 1.81 0.27 1.03 0.00 +diplodocus diplodocus NOM m 0.01 0.68 0.01 0.68 +diplomate diplomate NOM s 3.75 8.65 1.98 4.66 +diplomates diplomate NOM p 3.75 8.65 1.77 3.99 +diplomatie diplomatie NOM f s 1.80 5.68 1.80 5.68 +diplomatique diplomatique ADJ s 4.28 10.00 2.77 6.96 +diplomatiquement diplomatiquement ADV 0.04 0.20 0.04 0.20 +diplomatiques diplomatique ADJ p 4.28 10.00 1.51 3.04 +diplopie diplopie NOM f s 0.03 0.00 0.03 0.00 +dipneuste dipneuste NOM m s 0.07 0.00 0.05 0.00 +dipneustes dipneuste NOM m p 0.07 0.00 0.02 0.00 +dipsomane dipsomane NOM s 0.26 0.00 0.25 0.00 +dipsomanes dipsomane NOM p 0.26 0.00 0.01 0.00 +dipsomanie dipsomanie NOM f s 0.01 0.00 0.01 0.00 +diptères diptère ADJ p 0.01 0.07 0.01 0.07 +diptyque diptyque NOM m s 0.01 0.14 0.01 0.14 +dira dire VER 5946.17 4832.50 36.47 21.89 ind:fut:3s; +dirai dire VER 5946.17 4832.50 82.39 27.43 ind:fut:1s; +diraient dire VER 5946.17 4832.50 3.02 3.24 cnd:pre:3p; +dirais dire VER 5946.17 4832.50 57.65 16.76 cnd:pre:1s;cnd:pre:2s; +dirait dire VER 5946.17 4832.50 190.63 85.88 cnd:pre:3s; +diras dire VER 5946.17 4832.50 22.52 10.54 ind:fut:2s; +dire dire VER 5946.17 4832.50 1564.52 827.84 inf;;inf;;inf;;inf;;inf;; +direct direct NOM m s 16.34 5.00 15.81 4.39 +directe direct ADJ f s 21.89 26.69 6.27 11.82 +directement directement ADV 26.73 39.12 26.73 39.12 +directes direct ADJ f p 21.89 26.69 0.49 2.03 +directeur_adjoint directeur_adjoint NOM m s 0.14 0.00 0.14 0.00 +directeur directeur NOM m s 64.44 38.45 57.65 30.00 +directeurs directeur NOM m p 64.44 38.45 2.23 3.11 +directif directif ADJ m s 0.32 0.14 0.22 0.00 +direction direction NOM f s 45.06 108.04 43.25 103.04 +directionnel directionnel ADJ m s 0.57 0.14 0.09 0.07 +directionnelle directionnel ADJ f s 0.57 0.14 0.04 0.00 +directionnelles directionnel ADJ f p 0.57 0.14 0.02 0.07 +directionnels directionnel ADJ m p 0.57 0.14 0.42 0.00 +directions direction NOM f p 45.06 108.04 1.81 5.00 +directive directive NOM f s 3.43 4.93 0.40 0.47 +directives directive NOM f p 3.43 4.93 3.04 4.46 +directo directo ADV 0.00 0.41 0.00 0.41 +directoire directoire NOM m s 0.17 2.09 0.17 2.09 +directorat directorat NOM m s 0.01 0.00 0.01 0.00 +directorial directorial ADJ m s 0.01 1.28 0.01 0.81 +directoriale directorial ADJ f s 0.01 1.28 0.00 0.27 +directoriaux directorial ADJ m p 0.01 1.28 0.00 0.20 +directos directos ADV 0.03 0.41 0.03 0.41 +directrice directeur NOM f s 64.44 38.45 4.55 5.07 +directrices directrice NOM f p 0.28 0.00 0.28 0.00 +directs direct ADJ m p 21.89 26.69 0.84 2.16 +dirent dire VER 5946.17 4832.50 1.65 7.03 ind:pas:3p; +dires dire NOM m p 53.88 31.42 1.94 2.50 +direz dire VER 5946.17 4832.50 13.72 10.00 ind:fut:2p; +dirham dirham NOM m s 0.43 0.14 0.14 0.00 +dirhams dirham NOM m p 0.43 0.14 0.29 0.14 +diriez dire VER 5946.17 4832.50 10.69 2.36 cnd:pre:2p; +dirige diriger VER 65.10 95.68 23.74 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dirigea diriger VER 65.10 95.68 0.06 20.20 ind:pas:3s; +dirigeable dirigeable NOM m s 0.62 0.34 0.41 0.20 +dirigeables dirigeable NOM m p 0.62 0.34 0.22 0.14 +dirigeai diriger VER 65.10 95.68 0.12 1.62 ind:pas:1s; +dirigeaient diriger VER 65.10 95.68 0.62 2.77 ind:imp:3p; +dirigeais diriger VER 65.10 95.68 0.52 0.68 ind:imp:1s;ind:imp:2s; +dirigeait diriger VER 65.10 95.68 3.31 11.69 ind:imp:3s; +dirigeant dirigeant NOM m s 6.18 10.00 1.81 2.09 +dirigeante dirigeant ADJ f s 0.90 3.18 0.20 0.61 +dirigeantes dirigeant ADJ f p 0.90 3.18 0.06 0.41 +dirigeants dirigeant NOM m p 6.18 10.00 4.30 7.77 +dirigent diriger VER 65.10 95.68 4.11 2.30 ind:pre:3p; +dirigeâmes diriger VER 65.10 95.68 0.03 0.47 ind:pas:1p; +dirigeons diriger VER 65.10 95.68 1.14 0.95 imp:pre:1p;ind:pre:1p; +dirigeât diriger VER 65.10 95.68 0.00 0.14 sub:imp:3s; +diriger diriger VER 65.10 95.68 13.94 17.64 ind:pre:2p;inf; +dirigera diriger VER 65.10 95.68 1.17 0.41 ind:fut:3s; +dirigerai diriger VER 65.10 95.68 0.34 0.20 ind:fut:1s; +dirigeraient diriger VER 65.10 95.68 0.02 0.00 cnd:pre:3p; +dirigerais diriger VER 65.10 95.68 0.10 0.00 cnd:pre:1s;cnd:pre:2s; +dirigerait diriger VER 65.10 95.68 0.11 0.14 cnd:pre:3s; +dirigeras diriger VER 65.10 95.68 0.23 0.07 ind:fut:2s; +dirigerez diriger VER 65.10 95.68 0.36 0.07 ind:fut:2p; +dirigerons diriger VER 65.10 95.68 0.06 0.07 ind:fut:1p; +dirigeront diriger VER 65.10 95.68 0.19 0.20 ind:fut:3p; +diriges diriger VER 65.10 95.68 1.31 0.00 ind:pre:2s; +dirigez diriger VER 65.10 95.68 3.88 0.20 imp:pre:2p;ind:pre:2p; +dirigiez diriger VER 65.10 95.68 0.30 0.07 ind:imp:2p; +dirigions diriger VER 65.10 95.68 0.17 0.34 ind:imp:1p; +dirigèrent diriger VER 65.10 95.68 0.01 2.23 ind:pas:3p; +dirigé diriger VER m s 65.10 95.68 4.43 7.30 par:pas; +dirigée diriger VER f s 65.10 95.68 2.29 4.19 par:pas; +dirigées diriger VER f p 65.10 95.68 0.20 1.15 par:pas; +dirigés diriger VER m p 65.10 95.68 0.91 2.36 par:pas; +dirimant dirimant ADJ m s 0.00 0.14 0.00 0.07 +dirimants dirimant ADJ m p 0.00 0.14 0.00 0.07 +dirions dire VER 5946.17 4832.50 0.08 0.68 cnd:pre:1p; +dirlo dirlo NOM m s 0.40 1.76 0.40 1.69 +dirlos dirlo NOM m p 0.40 1.76 0.00 0.07 +dirons dire VER 5946.17 4832.50 2.78 2.03 ind:fut:1p; +diront dire VER 5946.17 4832.50 9.09 4.46 ind:fut:3p; +dis dire VER 5946.17 4832.50 1025.78 477.36 imp:pre:2s;ind:pre:1s;ind:pre:1s;ind:pre:2s;ind:pas:1s; +disaient dire VER 5946.17 4832.50 11.68 35.68 ind:imp:3p; +disais dire VER 5946.17 4832.50 98.37 70.68 ind:imp:1s;ind:imp:2s; +disait dire VER 5946.17 4832.50 94.00 352.30 ind:imp:3s; +disant dire VER 5946.17 4832.50 26.41 81.62 par:pre; +disants disant ADJ m p 1.30 7.09 0.03 0.07 +disc_jockey disc_jockey NOM m s 0.18 0.07 0.16 0.00 +disc_jockey disc_jockey NOM m p 0.18 0.07 0.03 0.07 +discal discal ADJ m s 0.13 0.07 0.02 0.07 +discale discal ADJ f s 0.13 0.07 0.11 0.00 +discerna discerner VER 1.05 15.20 0.00 0.14 ind:pas:3s; +discernable discernable ADJ f s 0.01 0.47 0.01 0.34 +discernables discernable ADJ p 0.01 0.47 0.00 0.14 +discernai discerner VER 1.05 15.20 0.00 0.14 ind:pas:1s; +discernaient discerner VER 1.05 15.20 0.00 0.47 ind:imp:3p; +discernais discerner VER 1.05 15.20 0.00 0.95 ind:imp:1s; +discernait discerner VER 1.05 15.20 0.01 2.43 ind:imp:3s; +discernant discerner VER 1.05 15.20 0.00 0.34 par:pre; +discerne discerner VER 1.05 15.20 0.33 2.16 ind:pre:1s;ind:pre:3s; +discernement discernement NOM m s 0.90 2.50 0.90 2.50 +discernent discerner VER 1.05 15.20 0.01 0.34 ind:pre:3p; +discerner discerner VER 1.05 15.20 0.69 6.69 inf; +discernerait discerner VER 1.05 15.20 0.00 0.07 cnd:pre:3s; +discernes discerner VER 1.05 15.20 0.00 0.07 ind:pre:2s; +discernions discerner VER 1.05 15.20 0.00 0.27 ind:imp:1p; +discernâmes discerner VER 1.05 15.20 0.00 0.27 ind:pas:1p; +discernât discerner VER 1.05 15.20 0.00 0.07 sub:imp:3s; +discerné discerner VER m s 1.05 15.20 0.01 0.74 par:pas; +discernées discerner VER f p 1.05 15.20 0.00 0.07 par:pas; +disciple_roi disciple_roi NOM s 0.00 0.07 0.00 0.07 +disciple disciple NOM s 5.62 14.46 1.98 7.64 +disciples disciple NOM p 5.62 14.46 3.65 6.82 +disciplina discipliner VER 0.93 1.42 0.00 0.07 ind:pas:3s; +disciplinaient discipliner VER 0.93 1.42 0.00 0.07 ind:imp:3p; +disciplinaire disciplinaire ADJ s 1.28 1.15 0.93 0.81 +disciplinaires disciplinaire ADJ p 1.28 1.15 0.35 0.34 +disciplinais discipliner VER 0.93 1.42 0.01 0.00 ind:imp:1s; +disciplinait discipliner VER 0.93 1.42 0.00 0.14 ind:imp:3s; +discipline discipline NOM f s 12.02 22.03 11.59 20.27 +discipliner discipliner VER 0.93 1.42 0.29 0.34 inf; +disciplinera discipliner VER 0.93 1.42 0.00 0.07 ind:fut:3s; +disciplinerait discipliner VER 0.93 1.42 0.00 0.07 cnd:pre:3s; +disciplines discipline NOM f p 12.02 22.03 0.44 1.76 +discipliné discipliné ADJ m s 1.07 2.16 0.30 0.74 +disciplinée discipliné ADJ f s 1.07 2.16 0.24 0.41 +disciplinées discipliné ADJ f p 1.07 2.16 0.01 0.27 +disciplinés discipliné ADJ m p 1.07 2.16 0.51 0.74 +disco disco NOM s 1.81 0.34 1.79 0.34 +discobole discobole NOM m s 0.24 0.20 0.23 0.20 +discoboles discobole NOM m p 0.24 0.20 0.01 0.00 +discographie discographie NOM f s 0.01 0.00 0.01 0.00 +discographiques discographique ADJ p 0.00 0.07 0.00 0.07 +discontinu discontinu ADJ m s 0.04 1.49 0.00 0.61 +discontinuaient discontinuer VER 0.03 1.82 0.00 0.07 ind:imp:3p; +discontinue discontinu ADJ f s 0.04 1.49 0.04 0.41 +discontinuer discontinuer VER 0.03 1.82 0.03 1.76 inf; +discontinues discontinu ADJ f p 0.04 1.49 0.00 0.27 +discontinuité discontinuité NOM f s 0.05 0.68 0.05 0.68 +discontinus discontinu ADJ m p 0.04 1.49 0.00 0.20 +disconviens disconvenir VER 0.00 0.14 0.00 0.07 ind:pre:1s; +disconvint disconvenir VER 0.00 0.14 0.00 0.07 ind:pas:3s; +discordance discordance NOM f s 0.06 0.68 0.04 0.41 +discordances discordance NOM f p 0.06 0.68 0.02 0.27 +discordant discordant ADJ m s 0.14 2.91 0.08 0.74 +discordante discordant ADJ f s 0.14 2.91 0.02 0.74 +discordantes discordant ADJ f p 0.14 2.91 0.01 0.34 +discordants discordant ADJ m p 0.14 2.91 0.04 1.08 +discorde discorde NOM f s 1.41 2.09 1.35 2.09 +discordes discorde NOM f p 1.41 2.09 0.06 0.00 +discos disco NOM p 1.81 0.34 0.02 0.00 +discothèque discothèque NOM f s 1.32 0.81 1.12 0.74 +discothèques discothèque NOM f p 1.32 0.81 0.20 0.07 +discount discount NOM m s 0.39 0.27 0.39 0.27 +discouraient discourir VER 0.66 4.12 0.00 0.20 ind:imp:3p; +discourait discourir VER 0.66 4.12 0.00 1.01 ind:imp:3s; +discourant discourir VER 0.66 4.12 0.02 0.34 par:pre; +discoure discourir VER 0.66 4.12 0.01 0.07 sub:pre:1s;sub:pre:3s; +discourent discourir VER 0.66 4.12 0.01 0.07 ind:pre:3p; +discoureur discoureur NOM m s 0.01 0.14 0.01 0.07 +discoureurs discoureur NOM m p 0.01 0.14 0.00 0.07 +discourir discourir VER 0.66 4.12 0.39 2.09 inf; +discours discours NOM m 42.75 50.54 42.75 50.54 +discourt discourir VER 0.66 4.12 0.11 0.07 ind:pre:3s; +discourtois discourtois ADJ m 0.28 0.41 0.25 0.14 +discourtoise discourtois ADJ f s 0.28 0.41 0.03 0.20 +discourtoises discourtois ADJ f p 0.28 0.41 0.00 0.07 +discouru discourir VER m s 0.66 4.12 0.10 0.20 par:pas; +discourut discourir VER 0.66 4.12 0.00 0.07 ind:pas:3s; +discret discret ADJ m s 15.61 33.04 9.52 13.58 +discrets discret ADJ m p 15.61 33.04 2.96 4.93 +discriminant discriminant ADJ m s 0.03 0.07 0.01 0.07 +discriminants discriminant ADJ m p 0.03 0.07 0.01 0.00 +discrimination discrimination NOM f s 1.60 0.88 1.57 0.88 +discriminations discrimination NOM f p 1.60 0.88 0.03 0.00 +discriminatoire discriminatoire ADJ s 0.15 0.07 0.15 0.07 +discriminer discriminer VER 0.18 0.14 0.17 0.14 inf; +discriminé discriminer VER m s 0.18 0.14 0.01 0.00 par:pas; +discrète discret ADJ f s 15.61 33.04 2.79 11.89 +discrètement discrètement ADV 5.82 19.73 5.82 19.73 +discrètes discret ADJ f p 15.61 33.04 0.34 2.64 +discrédit discrédit NOM m s 0.11 0.61 0.11 0.61 +discréditait discréditer VER 1.61 1.35 0.01 0.07 ind:imp:3s; +discréditant discréditer VER 1.61 1.35 0.02 0.00 par:pre; +discrédite discréditer VER 1.61 1.35 0.05 0.14 ind:pre:3s; +discréditer discréditer VER 1.61 1.35 1.20 0.61 ind:pre:2p;inf; +discréditerait discréditer VER 1.61 1.35 0.04 0.00 cnd:pre:3s; +discréditez discréditer VER 1.61 1.35 0.05 0.00 imp:pre:2p;ind:pre:2p; +discrédité discréditer VER m s 1.61 1.35 0.14 0.47 par:pas; +discréditée discréditer VER f s 1.61 1.35 0.04 0.00 par:pas; +discréditées discréditer VER f p 1.61 1.35 0.03 0.07 par:pas; +discrédités discréditer VER m p 1.61 1.35 0.04 0.00 par:pas; +discrétion discrétion NOM f s 4.59 21.22 4.59 21.22 +discrétionnaire discrétionnaire ADJ s 0.13 0.20 0.09 0.14 +discrétionnaires discrétionnaire ADJ f p 0.13 0.20 0.04 0.07 +disculpait disculper VER 1.27 1.55 0.00 0.20 ind:imp:3s; +disculpant disculper VER 1.27 1.55 0.07 0.00 par:pre; +disculpation disculpation NOM f s 0.04 0.00 0.04 0.00 +disculpe disculper VER 1.27 1.55 0.19 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +disculpent disculper VER 1.27 1.55 0.01 0.00 ind:pre:3p; +disculper disculper VER 1.27 1.55 0.61 1.22 inf; +disculperait disculper VER 1.27 1.55 0.01 0.00 cnd:pre:3s; +disculpez disculper VER 1.27 1.55 0.01 0.07 imp:pre:2p; +disculpé disculper VER m s 1.27 1.55 0.36 0.00 par:pas; +disculpés disculper VER m p 1.27 1.55 0.01 0.00 par:pas; +discursives discursif ADJ f p 0.00 0.07 0.00 0.07 +discussion discussion NOM f s 23.58 33.51 19.54 20.88 +discussions discussion NOM f p 23.58 33.51 4.05 12.64 +discuta discuter VER 96.42 58.65 0.01 0.74 ind:pas:3s; +discutable discutable ADJ s 0.79 1.01 0.59 0.68 +discutables discutable ADJ p 0.79 1.01 0.19 0.34 +discutai discuter VER 96.42 58.65 0.00 0.27 ind:pas:1s; +discutaient discuter VER 96.42 58.65 0.20 4.53 ind:imp:3p; +discutaillaient discutailler VER 0.48 0.81 0.00 0.14 ind:imp:3p; +discutaillait discutailler VER 0.48 0.81 0.01 0.07 ind:imp:3s; +discutaille discutailler VER 0.48 0.81 0.01 0.14 ind:pre:3s; +discutaillent discutailler VER 0.48 0.81 0.00 0.07 ind:pre:3p; +discutailler discutailler VER 0.48 0.81 0.46 0.41 inf; +discutailleries discutaillerie NOM f p 0.00 0.14 0.00 0.14 +discutailleur discutailleur NOM m s 0.00 0.07 0.00 0.07 +discutailleuse discutailleur ADJ f s 0.00 0.07 0.00 0.07 +discutais discuter VER 96.42 58.65 0.57 0.41 ind:imp:1s;ind:imp:2s; +discutait discuter VER 96.42 58.65 2.09 5.14 ind:imp:3s; +discutant discuter VER 96.42 58.65 0.60 2.97 par:pre; +discute discuter VER 96.42 58.65 14.75 5.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +discutent discuter VER 96.42 58.65 2.02 3.45 ind:pre:3p; +discuter discuter VER 96.42 58.65 50.43 25.47 inf; +discutera discuter VER 96.42 58.65 2.92 0.47 ind:fut:3s; +discuterai discuter VER 96.42 58.65 1.08 0.20 ind:fut:1s; +discuteraient discuter VER 96.42 58.65 0.05 0.07 cnd:pre:3p; +discuterais discuter VER 96.42 58.65 0.10 0.07 cnd:pre:1s; +discuterait discuter VER 96.42 58.65 0.52 0.41 cnd:pre:3s; +discuterez discuter VER 96.42 58.65 0.10 0.07 ind:fut:2p; +discuteriez discuter VER 96.42 58.65 0.02 0.00 cnd:pre:2p; +discuterions discuter VER 96.42 58.65 0.01 0.07 cnd:pre:1p; +discuterons discuter VER 96.42 58.65 1.66 0.20 ind:fut:1p; +discuteront discuter VER 96.42 58.65 0.04 0.07 ind:fut:3p; +discutes discuter VER 96.42 58.65 0.82 0.14 ind:pre:2s; +discutez discuter VER 96.42 58.65 2.73 0.14 imp:pre:2p;ind:pre:2p; +discutiez discuter VER 96.42 58.65 0.23 0.00 ind:imp:2p; +discutions discuter VER 96.42 58.65 0.71 1.01 ind:imp:1p;sub:pre:1p; +discutâmes discuter VER 96.42 58.65 0.00 0.47 ind:pas:1p; +discutons discuter VER 96.42 58.65 3.44 0.61 imp:pre:1p;ind:pre:1p; +discutât discuter VER 96.42 58.65 0.10 0.07 sub:imp:3s; +discutèrent discuter VER 96.42 58.65 0.02 0.88 ind:pas:3p; +discuté discuter VER m s 96.42 58.65 10.85 4.53 par:pas; +discutée discuter VER f s 96.42 58.65 0.20 0.34 par:pas; +discutées discuter VER f p 96.42 58.65 0.02 0.27 par:pas; +discutés discuter VER m p 96.42 58.65 0.12 0.07 par:pas; +dise dire VER 5946.17 4832.50 53.46 25.41 sub:pre:1s;sub:pre:3s; +disent dire VER 5946.17 4832.50 88.46 44.12 ind:pre:3p;sub:pre:3p; +disert disert ADJ m s 0.01 0.88 0.00 0.88 +diserte disert ADJ f s 0.01 0.88 0.01 0.00 +dises dire VER 5946.17 4832.50 11.41 2.70 sub:pre:2s; +disette disette NOM f s 0.06 1.76 0.06 1.62 +disettes disette NOM f p 0.06 1.76 0.00 0.14 +diseur diseur NOM m s 0.47 0.68 0.26 0.14 +diseurs diseur NOM m p 0.47 0.68 0.06 0.20 +diseuse diseur NOM f s 0.47 0.68 0.14 0.34 +diseuses diseuse NOM f p 0.06 0.00 0.06 0.00 +disfonctionnement disfonctionnement NOM m s 0.44 0.00 0.44 0.00 +disgracia disgracier VER 0.09 0.68 0.00 0.07 ind:pas:3s; +disgraciaient disgracier VER 0.09 0.68 0.00 0.07 ind:imp:3p; +disgraciait disgracier VER 0.09 0.68 0.00 0.07 ind:imp:3s; +disgracier disgracier VER 0.09 0.68 0.01 0.00 inf; +disgraciera disgracier VER 0.09 0.68 0.00 0.07 ind:fut:3s; +disgracieuse disgracieux ADJ f s 0.14 2.30 0.01 0.95 +disgracieusement disgracieusement ADV 0.00 0.07 0.00 0.07 +disgracieuses disgracieux ADJ f p 0.14 2.30 0.04 0.14 +disgracieux disgracieux ADJ m 0.14 2.30 0.09 1.22 +disgracié disgracié ADJ m s 0.17 0.61 0.16 0.34 +disgraciée disgracier VER f s 0.09 0.68 0.01 0.14 par:pas; +disgraciées disgracié ADJ f p 0.17 0.61 0.00 0.07 +disgraciés disgracier VER m p 0.09 0.68 0.01 0.07 par:pas; +disgrâce disgrâce NOM f s 1.76 4.46 1.76 3.99 +disgrâces disgrâce NOM f p 1.76 4.46 0.00 0.47 +disharmonie disharmonie NOM f s 0.01 0.07 0.01 0.07 +disiez dire VER 5946.17 4832.50 20.36 4.66 ind:imp:2p;sub:pre:2p; +disions dire VER 5946.17 4832.50 1.54 5.47 ind:imp:1p; +disjoignait disjoindre VER 0.10 1.49 0.00 0.07 ind:imp:3s; +disjoignant disjoindre VER 0.10 1.49 0.00 0.20 par:pre; +disjoignent disjoindre VER 0.10 1.49 0.00 0.07 ind:pre:3p; +disjoindre disjoindre VER 0.10 1.49 0.00 0.34 inf; +disjoint disjoint ADJ m s 0.13 2.03 0.10 0.27 +disjointe disjoint ADJ f s 0.13 2.03 0.01 0.00 +disjointes disjoint ADJ f p 0.13 2.03 0.00 1.28 +disjoints disjoindre VER m p 0.10 1.49 0.10 0.07 par:pas; +disjoncta disjoncter VER 3.31 0.68 0.00 0.14 ind:pas:3s; +disjonctais disjoncter VER 3.31 0.68 0.01 0.07 ind:imp:1s; +disjonctait disjoncter VER 3.31 0.68 0.02 0.00 ind:imp:3s; +disjoncte disjoncter VER 3.31 0.68 0.47 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disjonctent disjoncter VER 3.31 0.68 0.02 0.00 ind:pre:3p; +disjoncter disjoncter VER 3.31 0.68 0.40 0.20 inf; +disjoncterais disjoncter VER 3.31 0.68 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +disjoncterait disjoncter VER 3.31 0.68 0.04 0.07 cnd:pre:3s; +disjonctes disjoncter VER 3.31 0.68 0.57 0.00 ind:pre:2s; +disjoncteur disjoncteur NOM m s 1.45 0.20 1.34 0.07 +disjoncteurs disjoncteur NOM m p 1.45 0.20 0.11 0.14 +disjonctez disjoncter VER 3.31 0.68 0.03 0.00 imp:pre:2p;ind:pre:2p; +disjonction disjonction NOM f s 0.00 0.14 0.00 0.07 +disjonctions disjonction NOM f p 0.00 0.14 0.00 0.07 +disjoncté disjoncter VER m s 3.31 0.68 1.65 0.14 par:pas; +disjonctée disjoncter VER f s 3.31 0.68 0.05 0.07 par:pas; +disjonctés disjoncter VER m p 3.31 0.68 0.02 0.00 par:pas; +diskette diskette NOM f s 0.00 0.81 0.00 0.81 +dislocation dislocation NOM f s 0.16 1.35 0.16 1.28 +dislocations dislocation NOM f p 0.16 1.35 0.00 0.07 +disloqua disloquer VER 0.54 4.80 0.00 0.14 ind:pas:3s; +disloquai disloquer VER 0.54 4.80 0.00 0.07 ind:pas:1s; +disloquaient disloquer VER 0.54 4.80 0.00 0.34 ind:imp:3p; +disloquait disloquer VER 0.54 4.80 0.00 0.27 ind:imp:3s; +disloquant disloquer VER 0.54 4.80 0.00 0.20 par:pre; +disloque disloquer VER 0.54 4.80 0.12 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disloquent disloquer VER 0.54 4.80 0.01 0.14 ind:pre:3p; +disloquer disloquer VER 0.54 4.80 0.18 0.88 inf; +disloquerai disloquer VER 0.54 4.80 0.01 0.00 ind:fut:1s; +disloqueront disloquer VER 0.54 4.80 0.00 0.07 ind:fut:3p; +disloquât disloquer VER 0.54 4.80 0.00 0.07 sub:imp:3s; +disloquèrent disloquer VER 0.54 4.80 0.00 0.20 ind:pas:3p; +disloqué disloqué ADJ m s 0.12 3.24 0.07 1.35 +disloquée disloquer VER f s 0.54 4.80 0.05 0.27 par:pas; +disloquées disloquer VER f p 0.54 4.80 0.01 0.14 par:pas; +disloqués disloquer VER m p 0.54 4.80 0.11 0.34 par:pas; +disons dire VER 5946.17 4832.50 45.13 17.84 imp:pre:1p;ind:pre:1p; +disparûmes disparaître VER 166.13 183.31 0.01 0.07 ind:pas:1p; +disparût disparaître VER 166.13 183.31 0.01 1.01 sub:imp:3s; +disparaît disparaître VER 166.13 183.31 10.02 16.35 ind:pre:3s; +disparaîtra disparaître VER 166.13 183.31 3.04 1.35 ind:fut:3s; +disparaîtrai disparaître VER 166.13 183.31 0.41 0.07 ind:fut:1s; +disparaîtraient disparaître VER 166.13 183.31 0.34 0.54 cnd:pre:3p; +disparaîtrais disparaître VER 166.13 183.31 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +disparaîtrait disparaître VER 166.13 183.31 0.73 1.28 cnd:pre:3s; +disparaîtras disparaître VER 166.13 183.31 0.22 0.00 ind:fut:2s; +disparaître disparaître VER 166.13 183.31 27.16 36.76 inf; +disparaîtrez disparaître VER 166.13 183.31 0.12 0.14 ind:fut:2p; +disparaîtrions disparaître VER 166.13 183.31 0.01 0.00 cnd:pre:1p; +disparaîtrons disparaître VER 166.13 183.31 0.18 0.07 ind:fut:1p; +disparaîtront disparaître VER 166.13 183.31 0.59 1.01 ind:fut:3p; +disparais disparaître VER 166.13 183.31 8.97 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +disparaissaient disparaître VER 166.13 183.31 0.33 6.01 ind:imp:3p; +disparaissais disparaître VER 166.13 183.31 0.29 0.54 ind:imp:1s;ind:imp:2s; +disparaissait disparaître VER 166.13 183.31 1.11 11.15 ind:imp:3s; +disparaissant disparaître VER 166.13 183.31 0.32 4.73 par:pre; +disparaissante disparaissant ADJ f s 0.01 1.15 0.00 0.07 +disparaisse disparaître VER 166.13 183.31 2.94 2.43 sub:pre:1s;sub:pre:3s; +disparaissent disparaître VER 166.13 183.31 6.65 6.42 ind:pre:3p; +disparaisses disparaître VER 166.13 183.31 0.23 0.07 sub:pre:2s; +disparaissez disparaître VER 166.13 183.31 4.32 0.95 imp:pre:2p;ind:pre:2p; +disparaissiez disparaître VER 166.13 183.31 0.17 0.00 ind:imp:2p; +disparaissions disparaître VER 166.13 183.31 0.14 0.34 ind:imp:1p; +disparaissons disparaître VER 166.13 183.31 0.23 0.00 imp:pre:1p;ind:pre:1p; +disparate disparate ADJ s 0.27 3.18 0.02 1.28 +disparates disparate ADJ p 0.27 3.18 0.25 1.89 +disparition disparition NOM f s 16.33 23.38 14.83 22.30 +disparitions disparition NOM f p 16.33 23.38 1.50 1.08 +disparité disparité NOM f s 0.07 0.27 0.07 0.27 +disparu disparaître VER m s 166.13 183.31 86.21 58.78 par:pas; +disparue disparaître VER f s 166.13 183.31 4.33 1.42 par:pas; +disparues disparu ADJ f p 9.82 14.80 1.55 1.55 +disparurent disparaître VER 166.13 183.31 0.45 4.80 ind:pas:3p; +disparus disparu NOM m p 10.07 6.42 3.27 2.77 +disparut disparaître VER 166.13 183.31 2.05 24.66 ind:pas:3s; +dispatchais dispatcher VER 0.07 0.07 0.01 0.00 ind:imp:1s; +dispatchait dispatcher VER 0.07 0.07 0.00 0.07 ind:imp:3s; +dispatche dispatcher VER 0.07 0.07 0.04 0.00 imp:pre:2s;ind:pre:3s; +dispatcher dispatcher VER 0.07 0.07 0.01 0.00 inf; +dispatching dispatching NOM m s 0.12 0.14 0.12 0.14 +dispendieuse dispendieux ADJ f s 0.07 0.47 0.00 0.14 +dispendieusement dispendieusement ADV 0.00 0.07 0.00 0.07 +dispendieux dispendieux ADJ m 0.07 0.47 0.07 0.34 +dispensa dispenser VER 3.27 11.15 0.00 0.54 ind:pas:3s; +dispensable dispensable ADJ s 0.01 0.00 0.01 0.00 +dispensaient dispenser VER 3.27 11.15 0.02 0.34 ind:imp:3p; +dispensaire dispensaire NOM m s 1.76 1.69 1.71 1.28 +dispensaires dispensaire NOM m p 1.76 1.69 0.04 0.41 +dispensais dispenser VER 3.27 11.15 0.00 0.14 ind:imp:1s; +dispensait dispenser VER 3.27 11.15 0.38 1.89 ind:imp:3s; +dispensant dispenser VER 3.27 11.15 0.01 0.47 par:pre; +dispensateur dispensateur NOM m s 0.02 1.15 0.02 0.20 +dispensateurs dispensateur NOM m p 0.02 1.15 0.00 0.27 +dispensation dispensation NOM f s 0.00 0.07 0.00 0.07 +dispensatrice dispensateur NOM f s 0.02 1.15 0.00 0.54 +dispensatrices dispensateur NOM f p 0.02 1.15 0.00 0.14 +dispense dispenser VER 3.27 11.15 1.14 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dispensent dispenser VER 3.27 11.15 0.25 0.68 ind:pre:3p; +dispenser dispenser VER 3.27 11.15 0.33 1.76 inf; +dispenserait dispenser VER 3.27 11.15 0.03 0.20 cnd:pre:3s; +dispenseras dispenser VER 3.27 11.15 0.00 0.07 ind:fut:2s; +dispenses dispenser VER 3.27 11.15 0.03 0.00 ind:pre:2s; +dispensez dispenser VER 3.27 11.15 0.17 0.07 imp:pre:2p;ind:pre:2p; +dispensât dispenser VER 3.27 11.15 0.00 0.07 sub:imp:3s; +dispensèrent dispenser VER 3.27 11.15 0.01 0.00 ind:pas:3p; +dispensé dispenser VER m s 3.27 11.15 0.47 2.03 par:pas; +dispensée dispenser VER f s 3.27 11.15 0.35 0.61 par:pas; +dispensées dispenser VER f p 3.27 11.15 0.01 0.07 par:pas; +dispensés dispenser VER m p 3.27 11.15 0.07 0.34 par:pas; +dispersa disperser VER 10.58 18.85 0.01 1.22 ind:pas:3s; +dispersaient disperser VER 10.58 18.85 0.01 1.15 ind:imp:3p; +dispersait disperser VER 10.58 18.85 0.02 1.55 ind:imp:3s; +dispersant disperser VER 10.58 18.85 0.04 0.74 par:pre; +disperse disperser VER 10.58 18.85 1.35 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dispersement dispersement NOM m s 0.01 0.14 0.01 0.14 +dispersent disperser VER 10.58 18.85 0.35 0.95 ind:pre:3p; +disperser disperser VER 10.58 18.85 2.27 2.97 inf;; +dispersera disperser VER 10.58 18.85 0.08 0.07 ind:fut:3s; +disperserai disperser VER 10.58 18.85 0.16 0.00 ind:fut:1s; +disperseraient disperser VER 10.58 18.85 0.01 0.07 cnd:pre:3p; +disperserait disperser VER 10.58 18.85 0.00 0.14 cnd:pre:3s; +disperserons disperser VER 10.58 18.85 0.01 0.07 ind:fut:1p; +disperseront disperser VER 10.58 18.85 0.02 0.07 ind:fut:3p; +disperses disperser VER 10.58 18.85 0.12 0.14 ind:pre:2s; +dispersez disperser VER 10.58 18.85 3.24 0.07 imp:pre:2p;ind:pre:2p; +dispersif dispersif ADJ m s 0.01 0.00 0.01 0.00 +dispersion dispersion NOM f s 0.93 4.19 0.93 4.12 +dispersions disperser VER 10.58 18.85 0.10 0.07 ind:imp:1p; +dispersons disperser VER 10.58 18.85 0.30 0.00 imp:pre:1p;ind:pre:1p; +dispersât disperser VER 10.58 18.85 0.00 0.07 sub:imp:3s; +dispersèrent disperser VER 10.58 18.85 0.00 1.35 ind:pas:3p; +dispersé disperser VER m s 10.58 18.85 0.86 1.35 par:pas; +dispersée disperser VER f s 10.58 18.85 0.36 0.88 par:pas; +dispersées disperser VER f p 10.58 18.85 0.41 0.88 par:pas; +dispersés disperser VER m p 10.58 18.85 0.86 2.91 par:pas; +dispo dispo ADJ s 0.44 0.00 0.44 0.00 +disponibilité disponibilité NOM f s 1.23 3.58 1.01 2.64 +disponibilités disponibilité NOM f p 1.23 3.58 0.21 0.95 +disponible disponible ADJ s 13.19 11.96 8.74 7.84 +disponibles disponible ADJ p 13.19 11.96 4.46 4.12 +dispos dispos ADJ m 0.80 2.03 0.75 1.69 +disposa disposer VER 21.07 83.18 0.00 3.24 ind:pas:3s; +disposai disposer VER 21.07 83.18 0.01 0.34 ind:pas:1s; +disposaient disposer VER 21.07 83.18 0.05 3.31 ind:imp:3p; +disposais disposer VER 21.07 83.18 0.08 2.77 ind:imp:1s;ind:imp:2s; +disposait disposer VER 21.07 83.18 0.14 11.01 ind:imp:3s; +disposant disposer VER 21.07 83.18 0.16 3.92 par:pre; +disposas disposer VER 21.07 83.18 0.00 0.07 ind:pas:2s; +dispose disposer VER 21.07 83.18 3.48 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +disposent disposer VER 21.07 83.18 0.56 2.36 ind:pre:3p; +disposer disposer VER 21.07 83.18 7.40 12.64 inf; +disposera disposer VER 21.07 83.18 0.21 0.34 ind:fut:3s; +disposerai disposer VER 21.07 83.18 0.17 0.07 ind:fut:1s; +disposeraient disposer VER 21.07 83.18 0.00 0.20 cnd:pre:3p; +disposerais disposer VER 21.07 83.18 0.00 0.27 cnd:pre:1s; +disposerait disposer VER 21.07 83.18 0.01 1.08 cnd:pre:3s; +disposeras disposer VER 21.07 83.18 0.00 0.07 ind:fut:2s; +disposerez disposer VER 21.07 83.18 0.17 0.27 ind:fut:2p; +disposerons disposer VER 21.07 83.18 0.13 0.07 ind:fut:1p; +disposeront disposer VER 21.07 83.18 0.00 0.20 ind:fut:3p; +disposes disposer VER 21.07 83.18 0.34 0.34 ind:pre:2s; +disposez disposer VER 21.07 83.18 2.15 0.81 imp:pre:2p;ind:pre:2p; +disposiez disposer VER 21.07 83.18 0.02 0.07 ind:imp:2p; +disposions disposer VER 21.07 83.18 0.10 1.42 ind:imp:1p; +dispositif dispositif NOM m s 5.38 5.74 4.65 5.07 +dispositifs dispositif NOM m p 5.38 5.74 0.73 0.68 +disposition disposition NOM f s 14.99 45.07 11.62 27.91 +dispositions disposition NOM f p 14.99 45.07 3.37 17.16 +disposâmes disposer VER 21.07 83.18 0.00 0.07 ind:pas:1p; +disposons disposer VER 21.07 83.18 0.81 1.22 imp:pre:1p;ind:pre:1p; +disposât disposer VER 21.07 83.18 0.00 0.68 sub:imp:3s; +disposèrent disposer VER 21.07 83.18 0.00 0.27 ind:pas:3p; +disposé disposer VER m s 21.07 83.18 2.96 12.91 par:pas; +disposée disposer VER f s 21.07 83.18 0.94 2.43 par:pas; +disposées disposer VER f p 21.07 83.18 0.26 3.24 par:pas; +disposés disposer VER m p 21.07 83.18 0.91 7.97 par:pas; +disproportion disproportion NOM f s 0.27 0.95 0.27 0.88 +disproportionnelle disproportionnel ADJ f s 0.01 0.00 0.01 0.00 +disproportionné disproportionner VER m s 0.45 0.81 0.22 0.41 par:pas; +disproportionnée disproportionné ADJ f s 0.52 0.95 0.29 0.34 +disproportionnées disproportionner VER f p 0.45 0.81 0.11 0.00 par:pas; +disproportionnés disproportionné ADJ m p 0.52 0.95 0.03 0.20 +disproportions disproportion NOM f p 0.27 0.95 0.00 0.07 +disputa disputer VER 39.31 22.09 0.00 0.20 ind:pas:3s; +disputaient disputer VER 39.31 22.09 1.21 4.46 ind:imp:3p; +disputais disputer VER 39.31 22.09 0.15 0.00 ind:imp:1s;ind:imp:2s; +disputait disputer VER 39.31 22.09 1.73 2.09 ind:imp:3s; +disputant disputer VER 39.31 22.09 0.37 1.42 par:pre; +dispute dispute NOM f s 16.54 12.43 11.48 6.96 +disputent disputer VER 39.31 22.09 3.16 2.09 ind:pre:3p; +disputer disputer VER 39.31 22.09 10.54 4.12 ind:pre:2p;inf; +disputera disputer VER 39.31 22.09 0.48 0.14 ind:fut:3s; +disputerai disputer VER 39.31 22.09 0.22 0.00 ind:fut:1s; +disputeraient disputer VER 39.31 22.09 0.03 0.07 cnd:pre:3p; +disputerait disputer VER 39.31 22.09 0.20 0.07 cnd:pre:3s; +disputerez disputer VER 39.31 22.09 0.02 0.00 ind:fut:2p; +disputerons disputer VER 39.31 22.09 0.11 0.00 ind:fut:1p; +disputeront disputer VER 39.31 22.09 0.59 0.07 ind:fut:3p; +disputes dispute NOM f p 16.54 12.43 5.07 5.47 +disputeur disputeur NOM m s 0.00 0.07 0.00 0.07 +disputez disputer VER 39.31 22.09 2.37 0.20 imp:pre:2p;ind:pre:2p; +disputiez disputer VER 39.31 22.09 0.74 0.00 ind:imp:2p; +disputions disputer VER 39.31 22.09 0.15 0.61 ind:imp:1p; +disputâmes disputer VER 39.31 22.09 0.01 0.34 ind:pas:1p; +disputons disputer VER 39.31 22.09 1.27 0.47 imp:pre:1p;ind:pre:1p; +disputât disputer VER 39.31 22.09 0.00 0.20 sub:imp:3s; +disputèrent disputer VER 39.31 22.09 0.01 1.08 ind:pas:3p; +disputé disputer VER m s 39.31 22.09 2.96 1.08 par:pas; +disputée disputer VER f s 39.31 22.09 1.22 0.61 par:pas; +disputées disputer VER f p 39.31 22.09 0.83 0.14 par:pas; +disputés disputer VER m p 39.31 22.09 6.59 0.95 par:pas; +disquaire disquaire NOM s 0.46 0.54 0.42 0.41 +disquaires disquaire NOM p 0.46 0.54 0.04 0.14 +disqualifiait disqualifier VER 1.51 0.81 0.00 0.07 ind:imp:3s; +disqualifiant disqualifier VER 1.51 0.81 0.01 0.00 par:pre; +disqualification disqualification NOM f s 0.15 0.07 0.14 0.07 +disqualifications disqualification NOM f p 0.15 0.07 0.01 0.00 +disqualifie disqualifier VER 1.51 0.81 0.19 0.07 ind:pre:1s;ind:pre:3s; +disqualifient disqualifier VER 1.51 0.81 0.15 0.00 ind:pre:3p; +disqualifier disqualifier VER 1.51 0.81 0.14 0.20 inf; +disqualifié disqualifier VER m s 1.51 0.81 0.59 0.27 par:pas; +disqualifiée disqualifier VER f s 1.51 0.81 0.17 0.07 par:pas; +disqualifiées disqualifier VER f p 1.51 0.81 0.05 0.00 par:pas; +disqualifiés disqualifier VER m p 1.51 0.81 0.21 0.14 par:pas; +disque_jockey disque_jockey NOM m s 0.01 0.07 0.01 0.07 +disque disque NOM m s 33.61 42.16 20.36 21.49 +disques disque NOM m p 33.61 42.16 13.26 20.68 +disquette disquette NOM f s 2.48 0.41 1.81 0.41 +disquettes disquette NOM f p 2.48 0.41 0.67 0.00 +disruptif disruptif ADJ m s 0.01 0.00 0.01 0.00 +disruption disruption NOM f s 0.01 0.00 0.01 0.00 +dissection dissection NOM f s 0.88 0.68 0.61 0.54 +dissections dissection NOM f p 0.88 0.68 0.28 0.14 +dissemblable dissemblable ADJ s 0.05 1.69 0.02 0.34 +dissemblables dissemblable ADJ p 0.05 1.69 0.03 1.35 +dissemblance dissemblance NOM f s 0.00 0.27 0.00 0.27 +dissension dissension NOM f s 0.47 1.28 0.11 0.34 +dissensions dissension NOM f p 0.47 1.28 0.36 0.95 +dissent dire VER 5946.17 4832.50 0.04 0.00 sub:imp:3p; +dissentiment dissentiment NOM m s 0.02 0.34 0.02 0.14 +dissentiments dissentiment NOM m p 0.02 0.34 0.00 0.20 +dissertait disserter VER 0.22 1.28 0.02 0.20 ind:imp:3s; +dissertant disserter VER 0.22 1.28 0.00 0.14 par:pre; +dissertation dissertation NOM f s 1.50 3.04 1.40 2.03 +dissertations dissertation NOM f p 1.50 3.04 0.10 1.01 +disserte disserter VER 0.22 1.28 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissertent disserter VER 0.22 1.28 0.00 0.14 ind:pre:3p; +disserter disserter VER 0.22 1.28 0.04 0.68 inf; +disserterait disserter VER 0.22 1.28 0.01 0.00 cnd:pre:3s; +dissertes disserter VER 0.22 1.28 0.01 0.00 ind:pre:2s; +disserté disserter VER m s 0.22 1.28 0.02 0.07 par:pas; +dissidence dissidence NOM f s 0.28 0.81 0.27 0.74 +dissidences dissidence NOM f p 0.28 0.81 0.01 0.07 +dissident dissident NOM m s 0.88 0.68 0.33 0.07 +dissidente dissident ADJ f s 0.61 0.81 0.09 0.14 +dissidentes dissident ADJ f p 0.61 0.81 0.02 0.20 +dissidents dissident NOM m p 0.88 0.68 0.55 0.54 +dissimilaires dissimilaire ADJ p 0.01 0.00 0.01 0.00 +dissimiler dissimiler VER 0.01 0.00 0.01 0.00 inf; +dissimula dissimuler VER 8.67 51.01 0.14 1.55 ind:pas:3s; +dissimulables dissimulable ADJ p 0.00 0.07 0.00 0.07 +dissimulai dissimuler VER 8.67 51.01 0.00 0.14 ind:pas:1s; +dissimulaient dissimuler VER 8.67 51.01 0.04 2.30 ind:imp:3p; +dissimulais dissimuler VER 8.67 51.01 0.03 0.88 ind:imp:1s;ind:imp:2s; +dissimulait dissimuler VER 8.67 51.01 0.30 6.76 ind:imp:3s; +dissimulant dissimuler VER 8.67 51.01 0.26 3.18 par:pre; +dissimulateur dissimulateur ADJ m s 0.04 0.20 0.01 0.07 +dissimulateurs dissimulateur ADJ m p 0.04 0.20 0.02 0.00 +dissimulation dissimulation NOM f s 1.47 2.30 1.35 2.23 +dissimulations dissimulation NOM f p 1.47 2.30 0.11 0.07 +dissimulatrice dissimulateur ADJ f s 0.04 0.20 0.00 0.07 +dissimulatrices dissimulateur ADJ f p 0.04 0.20 0.00 0.07 +dissimule dissimuler VER 8.67 51.01 1.22 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissimulent dissimuler VER 8.67 51.01 0.11 1.35 ind:pre:3p; +dissimuler dissimuler VER 8.67 51.01 3.72 15.68 inf; +dissimulera dissimuler VER 8.67 51.01 0.01 0.00 ind:fut:3s; +dissimuleraient dissimuler VER 8.67 51.01 0.01 0.00 cnd:pre:3p; +dissimulerais dissimuler VER 8.67 51.01 0.00 0.07 cnd:pre:1s; +dissimulerait dissimuler VER 8.67 51.01 0.04 0.41 cnd:pre:3s; +dissimulerons dissimuler VER 8.67 51.01 0.00 0.07 ind:fut:1p; +dissimules dissimuler VER 8.67 51.01 0.02 0.00 ind:pre:2s; +dissimulez dissimuler VER 8.67 51.01 0.53 0.07 imp:pre:2p;ind:pre:2p; +dissimuliez dissimuler VER 8.67 51.01 0.00 0.07 ind:imp:2p; +dissimulions dissimuler VER 8.67 51.01 0.00 0.34 ind:imp:1p; +dissimulons dissimuler VER 8.67 51.01 0.04 0.27 imp:pre:1p;ind:pre:1p; +dissimulât dissimuler VER 8.67 51.01 0.00 0.14 sub:imp:3s; +dissimulèrent dissimuler VER 8.67 51.01 0.00 0.20 ind:pas:3p; +dissimulé dissimuler VER m s 8.67 51.01 1.24 7.43 par:pas; +dissimulée dissimuler VER f s 8.67 51.01 0.31 3.24 par:pas; +dissimulées dissimuler VER f p 8.67 51.01 0.20 0.81 par:pas; +dissimulés dissimuler VER m p 8.67 51.01 0.45 2.77 par:pas; +dissipa dissiper VER 4.76 19.59 0.12 1.62 ind:pas:3s; +dissipaient dissiper VER 4.76 19.59 0.01 0.54 ind:imp:3p; +dissipait dissiper VER 4.76 19.59 0.01 2.70 ind:imp:3s; +dissipant dissiper VER 4.76 19.59 0.03 0.47 par:pre; +dissipateur dissipateur NOM m s 0.01 0.27 0.01 0.20 +dissipateurs dissipateur NOM m p 0.01 0.27 0.00 0.07 +dissipation dissipation NOM f s 0.04 0.95 0.04 0.61 +dissipations dissipation NOM f p 0.04 0.95 0.00 0.34 +dissipe dissiper VER 4.76 19.59 1.26 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissipent dissiper VER 4.76 19.59 0.22 0.54 ind:pre:3p; +dissiper dissiper VER 4.76 19.59 1.43 5.88 inf; +dissipera dissiper VER 4.76 19.59 0.33 0.07 ind:fut:3s; +dissiperais dissiper VER 4.76 19.59 0.00 0.07 cnd:pre:1s; +dissiperait dissiper VER 4.76 19.59 0.04 0.20 cnd:pre:3s; +dissiperont dissiper VER 4.76 19.59 0.08 0.07 ind:fut:3p; +dissipez dissiper VER 4.76 19.59 0.05 0.00 imp:pre:2p;ind:pre:2p; +dissipèrent dissiper VER 4.76 19.59 0.01 0.14 ind:pas:3p; +dissipé dissiper VER m s 4.76 19.59 0.75 2.30 par:pas; +dissipée dissiper VER f s 4.76 19.59 0.34 1.89 par:pas; +dissipées dissipé ADJ f p 0.29 1.49 0.03 0.14 +dissipés dissiper VER m p 4.76 19.59 0.07 0.34 par:pas; +dissocia dissocier VER 0.83 3.04 0.00 0.14 ind:pas:3s; +dissociaient dissocier VER 0.83 3.04 0.00 0.14 ind:imp:3p; +dissociait dissocier VER 0.83 3.04 0.00 0.27 ind:imp:3s; +dissociant dissocier VER 0.83 3.04 0.00 0.14 par:pre; +dissociatif dissociatif ADJ m s 0.28 0.00 0.17 0.00 +dissociatifs dissociatif ADJ m p 0.28 0.00 0.01 0.00 +dissociation dissociation NOM f s 0.32 0.41 0.32 0.34 +dissociations dissociation NOM f p 0.32 0.41 0.00 0.07 +dissociative dissociatif ADJ f s 0.28 0.00 0.10 0.00 +dissocie dissocier VER 0.83 3.04 0.02 0.07 ind:pre:1s;ind:pre:3s; +dissocient dissocier VER 0.83 3.04 0.01 0.14 ind:pre:3p; +dissocier dissocier VER 0.83 3.04 0.33 0.95 inf; +dissocierons dissocier VER 0.83 3.04 0.00 0.07 ind:fut:1p; +dissocié dissocier VER m s 0.83 3.04 0.33 0.61 par:pas; +dissociée dissocier VER f s 0.83 3.04 0.07 0.00 par:pas; +dissociées dissocier VER f p 0.83 3.04 0.03 0.14 par:pas; +dissociés dissocier VER m p 0.83 3.04 0.04 0.41 par:pas; +dissolu dissolu ADJ m s 0.82 0.68 0.12 0.07 +dissolue dissolu ADJ f s 0.82 0.68 0.47 0.41 +dissolues dissolu ADJ f p 0.82 0.68 0.12 0.14 +dissolus dissolu ADJ m p 0.82 0.68 0.11 0.07 +dissolution dissolution NOM f s 0.80 2.50 0.80 2.50 +dissolvaient dissoudre VER 3.94 12.30 0.00 0.81 ind:imp:3p; +dissolvait dissoudre VER 3.94 12.30 0.01 1.01 ind:imp:3s; +dissolvant dissolvant NOM m s 0.41 0.34 0.38 0.34 +dissolvante dissolvant ADJ f s 0.01 1.01 0.00 0.34 +dissolvantes dissolvant ADJ f p 0.01 1.01 0.00 0.14 +dissolvants dissolvant NOM m p 0.41 0.34 0.03 0.00 +dissolve dissoudre VER 3.94 12.30 0.07 0.14 sub:pre:3s; +dissolvent dissoudre VER 3.94 12.30 0.04 0.41 ind:pre:3p; +dissolves dissoudre VER 3.94 12.30 0.01 0.00 sub:pre:2s; +dissonance dissonance NOM f s 0.42 0.54 0.14 0.20 +dissonances dissonance NOM f p 0.42 0.54 0.28 0.34 +dissonant dissoner VER 0.01 0.00 0.01 0.00 par:pre; +dissonants dissonant ADJ m p 0.00 0.27 0.00 0.07 +dissoudra dissoudre VER 3.94 12.30 0.03 0.07 ind:fut:3s; +dissoudrai dissoudre VER 3.94 12.30 0.00 0.07 ind:fut:1s; +dissoudrait dissoudre VER 3.94 12.30 0.01 0.07 cnd:pre:3s; +dissoudre dissoudre VER 3.94 12.30 1.38 6.55 inf; +dissoudront dissoudre VER 3.94 12.30 0.04 0.00 ind:fut:3p; +dissous dissoudre VER m 3.94 12.30 1.19 1.42 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +dissout dissoudre VER 3.94 12.30 1.03 1.08 ind:pre:3s; +dissoute dissoute ADJ f s 0.46 2.57 0.40 1.42 +dissoutes dissoute ADJ f p 0.46 2.57 0.07 1.15 +dissèque disséquer VER 1.56 2.16 0.29 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissèquent disséquer VER 1.56 2.16 0.01 0.14 ind:pre:3p; +dissuada dissuader VER 3.66 3.72 0.00 0.47 ind:pas:3s; +dissuadai dissuader VER 3.66 3.72 0.00 0.20 ind:pas:1s; +dissuadait dissuader VER 3.66 3.72 0.01 0.20 ind:imp:3s; +dissuadant dissuader VER 3.66 3.72 0.01 0.14 par:pre; +dissuade dissuader VER 3.66 3.72 0.15 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dissuadent dissuader VER 3.66 3.72 0.02 0.14 ind:pre:3p; +dissuader dissuader VER 3.66 3.72 2.62 1.96 inf; +dissuadera dissuader VER 3.66 3.72 0.10 0.00 ind:fut:3s; +dissuaderas dissuader VER 3.66 3.72 0.01 0.00 ind:fut:2s; +dissuaderez dissuader VER 3.66 3.72 0.03 0.00 ind:fut:2p; +dissuaderont dissuader VER 3.66 3.72 0.02 0.00 ind:fut:3p; +dissuadez dissuader VER 3.66 3.72 0.26 0.00 imp:pre:2p; +dissuadiez dissuader VER 3.66 3.72 0.01 0.00 ind:imp:2p; +dissuadèrent dissuader VER 3.66 3.72 0.00 0.07 ind:pas:3p; +dissuadé dissuader VER m s 3.66 3.72 0.25 0.34 par:pas; +dissuadée dissuader VER f s 3.66 3.72 0.13 0.14 par:pas; +dissuadés dissuader VER m p 3.66 3.72 0.03 0.00 par:pas; +dissuasif dissuasif ADJ m s 0.21 0.07 0.19 0.07 +dissuasion dissuasion NOM f s 0.29 0.27 0.29 0.27 +dissuasive dissuasif ADJ f s 0.21 0.07 0.02 0.00 +dissémina disséminer VER 0.46 2.16 0.00 0.07 ind:pas:3s; +disséminait disséminer VER 0.46 2.16 0.00 0.07 ind:imp:3s; +disséminant disséminer VER 0.46 2.16 0.01 0.00 par:pre; +dissémination dissémination NOM f s 0.07 0.14 0.07 0.14 +disséminent disséminer VER 0.46 2.16 0.01 0.00 ind:pre:3p; +disséminer disséminer VER 0.46 2.16 0.18 0.07 inf; +disséminèrent disséminer VER 0.46 2.16 0.00 0.07 ind:pas:3p; +disséminé disséminé ADJ m s 0.08 0.47 0.02 0.00 +disséminée disséminé ADJ f s 0.08 0.47 0.01 0.14 +disséminées disséminer VER f p 0.46 2.16 0.06 0.74 par:pas; +disséminés disséminer VER m p 0.46 2.16 0.17 1.15 par:pas; +disséquai disséquer VER 1.56 2.16 0.01 0.00 ind:pas:1s; +disséquait disséquer VER 1.56 2.16 0.01 0.07 ind:imp:3s; +disséquant disséquer VER 1.56 2.16 0.03 0.00 par:pre; +disséquer disséquer VER 1.56 2.16 0.64 0.88 inf;; +disséqueraient disséquer VER 1.56 2.16 0.00 0.07 cnd:pre:3p; +disséquerais disséquer VER 1.56 2.16 0.02 0.00 cnd:pre:1s; +disséqueur disséqueur NOM m s 0.01 0.00 0.01 0.00 +disséquez disséquer VER 1.56 2.16 0.07 0.00 imp:pre:2p; +disséquiez disséquer VER 1.56 2.16 0.03 0.00 ind:imp:2p; +disséquions disséquer VER 1.56 2.16 0.00 0.07 ind:imp:1p; +disséquons disséquer VER 1.56 2.16 0.03 0.00 ind:pre:1p; +disséqué disséquer VER m s 1.56 2.16 0.32 0.47 par:pas; +disséquée disséquer VER f s 1.56 2.16 0.07 0.14 par:pas; +disséqués disséquer VER m p 1.56 2.16 0.04 0.14 par:pas; +dissymétrie dissymétrie NOM f s 0.14 0.54 0.14 0.54 +dissymétrique dissymétrique ADJ m s 0.00 0.27 0.00 0.07 +dissymétriques dissymétrique ADJ p 0.00 0.27 0.00 0.20 +distal distal ADJ m s 0.19 0.00 0.15 0.00 +distale distal ADJ f s 0.19 0.00 0.01 0.00 +distance distance NOM f s 31.56 62.43 26.13 52.64 +distancent distancer VER 1.25 1.96 0.01 0.00 ind:pre:3p; +distancer distancer VER 1.25 1.96 0.30 0.47 inf; +distancerez distancer VER 1.25 1.96 0.01 0.00 ind:fut:2p; +distances distance NOM f p 31.56 62.43 5.43 9.80 +distanciation distanciation NOM f s 0.01 0.00 0.01 0.00 +distancier distancier VER 0.25 0.00 0.15 0.00 inf; +distancié distancier VER m s 0.25 0.00 0.10 0.00 par:pas; +distancé distancer VER m s 1.25 1.96 0.08 0.34 par:pas; +distancée distancer VER f s 1.25 1.96 0.12 0.14 par:pas; +distancés distancer VER m p 1.25 1.96 0.03 0.61 par:pas; +distant distant ADJ m s 3.48 7.50 2.47 2.64 +distante distant ADJ f s 3.48 7.50 0.66 2.91 +distantes distant ADJ f p 3.48 7.50 0.08 0.74 +distança distancer VER 1.25 1.96 0.00 0.20 ind:pas:3s; +distançait distancer VER 1.25 1.96 0.00 0.07 ind:imp:3s; +distançant distancer VER 1.25 1.96 0.01 0.14 par:pre; +distançons distancer VER 1.25 1.96 0.01 0.00 imp:pre:1p; +distants distant ADJ m p 3.48 7.50 0.28 1.22 +distaux distal ADJ m p 0.19 0.00 0.03 0.00 +distend distendre VER 0.41 3.24 0.02 0.74 ind:pre:3s; +distendaient distendre VER 0.41 3.24 0.00 0.07 ind:imp:3p; +distendait distendre VER 0.41 3.24 0.00 0.34 ind:imp:3s; +distendant distendre VER 0.41 3.24 0.00 0.14 par:pre; +distende distendre VER 0.41 3.24 0.00 0.07 sub:pre:3s; +distendent distendre VER 0.41 3.24 0.00 0.14 ind:pre:3p; +distendit distendre VER 0.41 3.24 0.00 0.07 ind:pas:3s; +distendrait distendre VER 0.41 3.24 0.00 0.07 cnd:pre:3s; +distendre distendre VER 0.41 3.24 0.00 0.41 inf; +distendu distendre VER m s 0.41 3.24 0.11 0.20 par:pas; +distendue distendu ADJ f s 0.13 2.64 0.01 0.34 +distendues distendre VER f p 0.41 3.24 0.01 0.20 par:pas; +distendus distendre VER m p 0.41 3.24 0.27 0.47 par:pas; +distension distension NOM f s 0.07 0.07 0.07 0.07 +distillaient distiller VER 1.13 4.05 0.00 0.07 ind:imp:3p; +distillait distiller VER 1.13 4.05 0.00 0.81 ind:imp:3s; +distillant distiller VER 1.13 4.05 0.01 0.27 par:pre; +distillat distillat NOM m s 0.07 0.00 0.07 0.00 +distillateur distillateur NOM m s 0.05 0.14 0.02 0.07 +distillateurs distillateur NOM m p 0.05 0.14 0.03 0.07 +distillation distillation NOM f s 0.04 0.47 0.04 0.41 +distillations distillation NOM f p 0.04 0.47 0.00 0.07 +distille distiller VER 1.13 4.05 0.14 0.95 ind:pre:1s;ind:pre:3s; +distillent distiller VER 1.13 4.05 0.15 0.27 ind:pre:3p; +distiller distiller VER 1.13 4.05 0.23 0.61 inf; +distillera distiller VER 1.13 4.05 0.00 0.07 ind:fut:3s; +distillerie distillerie NOM f s 0.98 0.41 0.84 0.41 +distilleries distillerie NOM f p 0.98 0.41 0.14 0.00 +distilleront distiller VER 1.13 4.05 0.00 0.07 ind:fut:3p; +distillez distiller VER 1.13 4.05 0.03 0.00 imp:pre:2p;ind:pre:2p; +distillé distiller VER m s 1.13 4.05 0.25 0.54 par:pas; +distillée distiller VER f s 1.13 4.05 0.27 0.27 par:pas; +distillées distiller VER f p 1.13 4.05 0.00 0.07 par:pas; +distillés distiller VER m p 1.13 4.05 0.05 0.07 par:pas; +distinct distinct ADJ m s 2.56 9.46 0.31 2.43 +distincte distinct ADJ f s 2.56 9.46 0.26 2.64 +distinctement distinctement ADV 1.48 6.76 1.48 6.76 +distinctes distinct ADJ f p 2.56 9.46 1.38 2.30 +distinctif distinctif ADJ m s 0.71 1.62 0.34 1.15 +distinctifs distinctif ADJ m p 0.71 1.62 0.28 0.27 +distinction distinction NOM f s 2.86 10.14 2.38 9.19 +distinctions distinction NOM f p 2.86 10.14 0.48 0.95 +distinctive distinctif ADJ f s 0.71 1.62 0.06 0.14 +distinctives distinctif ADJ f p 0.71 1.62 0.03 0.07 +distincts distinct ADJ m p 2.56 9.46 0.61 2.09 +distingua distinguer VER 12.77 74.12 0.01 4.39 ind:pas:3s; +distinguai distinguer VER 12.77 74.12 0.00 1.28 ind:pas:1s; +distinguaient distinguer VER 12.77 74.12 0.02 2.64 ind:imp:3p; +distinguais distinguer VER 12.77 74.12 0.40 2.97 ind:imp:1s; +distinguait distinguer VER 12.77 74.12 0.52 12.97 ind:imp:3s; +distinguant distinguer VER 12.77 74.12 0.00 0.74 par:pre; +distingue distinguer VER 12.77 74.12 3.59 15.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +distinguent distinguer VER 12.77 74.12 0.36 1.15 ind:pre:3p; +distinguer distinguer VER 12.77 74.12 5.74 24.12 inf; +distinguera distinguer VER 12.77 74.12 0.04 0.07 ind:fut:3s; +distingueraient distinguer VER 12.77 74.12 0.01 0.20 cnd:pre:3p; +distinguerait distinguer VER 12.77 74.12 0.00 0.27 cnd:pre:3s; +distinguerez distinguer VER 12.77 74.12 0.01 0.07 ind:fut:2p; +distingues distinguer VER 12.77 74.12 0.32 0.14 ind:pre:2s; +distinguez distinguer VER 12.77 74.12 0.22 0.14 imp:pre:2p;ind:pre:2p; +distinguions distinguer VER 12.77 74.12 0.10 0.41 ind:imp:1p; +distinguo distinguo NOM m s 0.06 0.20 0.04 0.20 +distinguons distinguer VER 12.77 74.12 0.01 0.61 imp:pre:1p;ind:pre:1p; +distinguos distinguo NOM m p 0.06 0.20 0.02 0.00 +distinguât distinguer VER 12.77 74.12 0.00 0.41 sub:imp:3s; +distinguèrent distinguer VER 12.77 74.12 0.00 0.54 ind:pas:3p; +distingué distingué ADJ m s 5.04 9.39 2.81 4.19 +distinguée distingué ADJ f s 5.04 9.39 1.23 2.16 +distinguées distingué ADJ f p 5.04 9.39 0.21 0.68 +distingués distingué ADJ m p 5.04 9.39 0.80 2.36 +distord distordre VER 0.10 0.61 0.00 0.07 ind:pre:3s; +distordant distordre VER 0.10 0.61 0.00 0.07 par:pre; +distordre distordre VER 0.10 0.61 0.01 0.07 inf; +distordu distordre VER m s 0.10 0.61 0.02 0.20 par:pas; +distordue distordre VER f s 0.10 0.61 0.06 0.14 par:pas; +distordues distordre VER f p 0.10 0.61 0.00 0.07 par:pas; +distorsion distorsion NOM f s 1.05 0.61 0.80 0.27 +distorsions distorsion NOM f p 1.05 0.61 0.26 0.34 +distraction distraction NOM f s 3.98 14.05 2.80 9.19 +distractions distraction NOM f p 3.98 14.05 1.18 4.86 +distractives distractif ADJ f p 0.00 0.07 0.00 0.07 +distraie distraire VER 15.99 27.77 0.02 0.20 sub:pre:1s;sub:pre:3s; +distraient distraire VER 15.99 27.77 0.37 0.27 ind:pre:3p;sub:pre:3p; +distraies distraire VER 15.99 27.77 0.01 0.07 sub:pre:2s; +distraira distraire VER 15.99 27.77 0.41 0.34 ind:fut:3s; +distrairaient distraire VER 15.99 27.77 0.00 0.07 cnd:pre:3p; +distrairait distraire VER 15.99 27.77 0.05 0.41 cnd:pre:3s; +distraire distraire VER 15.99 27.77 7.55 13.38 ind:pre:2p;inf; +distrairont distraire VER 15.99 27.77 0.01 0.07 ind:fut:3p; +distrais distraire VER 15.99 27.77 0.76 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +distrait distraire VER m s 15.99 27.77 4.45 6.76 ind:pre:3s;par:pas; +distraite distraire VER f s 15.99 27.77 1.20 2.50 par:pas; +distraitement distraitement ADV 0.11 13.51 0.11 13.51 +distraites distraire VER f p 15.99 27.77 0.05 0.20 par:pas; +distraits distraire VER m p 15.99 27.77 0.29 0.74 par:pas; +distrayaient distraire VER 15.99 27.77 0.00 0.54 ind:imp:3p; +distrayais distraire VER 15.99 27.77 0.04 0.27 ind:imp:1s; +distrayait distraire VER 15.99 27.77 0.15 1.42 ind:imp:3s; +distrayant distrayant ADJ m s 0.94 1.08 0.64 0.81 +distrayante distrayant ADJ f s 0.94 1.08 0.25 0.00 +distrayantes distrayant ADJ f p 0.94 1.08 0.03 0.14 +distrayants distrayant ADJ m p 0.94 1.08 0.03 0.14 +distrayez distraire VER 15.99 27.77 0.34 0.00 imp:pre:2p;ind:pre:2p; +distrayons distraire VER 15.99 27.77 0.11 0.07 imp:pre:1p;ind:pre:1p; +distribua distribuer VER 14.06 25.54 0.18 1.55 ind:pas:3s; +distribuai distribuer VER 14.06 25.54 0.00 0.20 ind:pas:1s; +distribuaient distribuer VER 14.06 25.54 0.18 1.15 ind:imp:3p; +distribuais distribuer VER 14.06 25.54 0.14 0.14 ind:imp:1s;ind:imp:2s; +distribuait distribuer VER 14.06 25.54 0.41 4.59 ind:imp:3s; +distribuant distribuer VER 14.06 25.54 0.31 1.89 par:pre; +distribue distribuer VER 14.06 25.54 2.00 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +distribuent distribuer VER 14.06 25.54 0.42 0.81 ind:pre:3p; +distribuer distribuer VER 14.06 25.54 4.90 5.88 inf; +distribuera distribuer VER 14.06 25.54 0.15 0.20 ind:fut:3s; +distribuerai distribuer VER 14.06 25.54 0.36 0.00 ind:fut:1s; +distribuerais distribuer VER 14.06 25.54 0.02 0.00 cnd:pre:1s; +distribuerait distribuer VER 14.06 25.54 0.00 0.34 cnd:pre:3s; +distribuerez distribuer VER 14.06 25.54 0.19 0.00 ind:fut:2p; +distribuerions distribuer VER 14.06 25.54 0.00 0.07 cnd:pre:1p; +distribuerons distribuer VER 14.06 25.54 0.02 0.00 ind:fut:1p; +distribueront distribuer VER 14.06 25.54 0.04 0.07 ind:fut:3p; +distribues distribuer VER 14.06 25.54 0.56 0.00 ind:pre:2s; +distribuez distribuer VER 14.06 25.54 0.91 0.07 imp:pre:2p;ind:pre:2p; +distribuiez distribuer VER 14.06 25.54 0.01 0.00 ind:imp:2p; +distribuions distribuer VER 14.06 25.54 0.01 0.07 ind:imp:1p; +distribuons distribuer VER 14.06 25.54 0.10 0.07 imp:pre:1p;ind:pre:1p; +distribuât distribuer VER 14.06 25.54 0.00 0.07 sub:imp:3s; +distributeur distributeur NOM m s 7.88 2.77 6.03 1.89 +distributeurs distributeur NOM m p 7.88 2.77 1.84 0.81 +distribuèrent distribuer VER 14.06 25.54 0.00 0.07 ind:pas:3p; +distribution distribution NOM f s 4.77 8.85 4.63 7.23 +distributions distribution NOM f p 4.77 8.85 0.14 1.62 +distributive distributif ADJ f s 0.00 0.07 0.00 0.07 +distributrice distributeur NOM f s 7.88 2.77 0.02 0.07 +distribué distribuer VER m s 14.06 25.54 2.17 2.16 par:pas; +distribuée distribuer VER f s 14.06 25.54 0.35 0.34 par:pas; +distribuées distribuer VER f p 14.06 25.54 0.34 0.95 par:pas; +distribués distribuer VER m p 14.06 25.54 0.28 1.42 par:pas; +district district NOM m s 6.14 1.69 5.85 1.42 +districts district NOM m p 6.14 1.69 0.29 0.27 +dit dire VER m s 5946.17 4832.50 2146.01 2601.62 ind:fut:3p;ind:pre:3s;ind:pas:3s;par:pas; +dite dire VER f s 5946.17 4832.50 4.53 9.19 par:pas; +dites dire VER f p 5946.17 4832.50 311.69 77.43 imp:pre:2p;ind:pre:2p;par:pas; +dièdre dièdre NOM m s 0.00 0.41 0.00 0.27 +dièdres dièdre NOM m p 0.00 0.41 0.00 0.14 +dièse diéser VER 0.51 0.41 0.51 0.34 ind:pre:3s; +dièses dièse NOM m p 0.27 0.27 0.02 0.14 +diète diète NOM f s 0.42 0.54 0.42 0.54 +dithyrambe dithyrambe NOM m s 0.00 0.34 0.00 0.14 +dithyrambes dithyrambe NOM m p 0.00 0.34 0.00 0.20 +dithyrambique dithyrambique ADJ m s 0.03 0.47 0.01 0.27 +dithyrambiques dithyrambique ADJ p 0.03 0.47 0.02 0.20 +dito dito ADV 0.00 0.34 0.00 0.34 +dits dire VER m p 5946.17 4832.50 1.52 4.46 par:pas; +diurnal diurnal ADJ m s 0.00 0.07 0.00 0.07 +diurne diurne ADJ s 0.09 2.03 0.07 1.69 +diurnes diurne ADJ p 0.09 2.03 0.01 0.34 +diurèse diurèse NOM f s 0.07 0.00 0.07 0.00 +diérèses diérèse NOM f p 0.00 0.07 0.00 0.07 +diurétique diurétique ADJ s 0.28 0.00 0.14 0.00 +diurétiques diurétique ADJ p 0.28 0.00 0.14 0.00 +diéthylénique diéthylénique ADJ m s 0.01 0.00 0.01 0.00 +diététicien diététicien NOM m s 0.09 0.61 0.03 0.54 +diététicienne diététicien NOM f s 0.09 0.61 0.06 0.00 +diététiciens diététicien NOM m p 0.09 0.61 0.00 0.07 +diététique diététique ADJ s 1.03 0.47 0.96 0.27 +diététiques diététique ADJ p 1.03 0.47 0.07 0.20 +diététiste diététiste NOM s 0.01 0.00 0.01 0.00 +diva diva NOM f s 4.16 1.28 3.60 1.22 +divagant divagant ADJ m s 0.00 0.20 0.00 0.14 +divagants divagant ADJ m p 0.00 0.20 0.00 0.07 +divagation divagation NOM f s 0.53 2.23 0.00 0.61 +divagations divagation NOM f p 0.53 2.23 0.53 1.62 +divaguaient divaguer VER 2.91 4.26 0.00 0.20 ind:imp:3p; +divaguait divaguer VER 2.91 4.26 0.19 0.74 ind:imp:3s; +divaguant divaguer VER 2.91 4.26 0.03 0.41 par:pre; +divague divaguer VER 2.91 4.26 1.27 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divaguent divaguer VER 2.91 4.26 0.01 0.27 ind:pre:3p; +divaguer divaguer VER 2.91 4.26 0.44 1.15 ind:pre:2p;inf; +divagues divaguer VER 2.91 4.26 0.59 0.07 ind:pre:2s; +divaguez divaguer VER 2.91 4.26 0.32 0.07 ind:pre:2p; +divagué divaguer VER m s 2.91 4.26 0.07 0.07 par:pas; +divan divan NOM m s 4.92 24.46 4.89 21.55 +divans divan NOM m p 4.92 24.46 0.03 2.91 +divas diva NOM f p 4.16 1.28 0.56 0.07 +dive dive ADJ f s 0.00 0.20 0.00 0.20 +diverge diverger VER 0.57 1.01 0.17 0.00 ind:pre:3s; +divergeaient diverger VER 0.57 1.01 0.03 0.34 ind:imp:3p; +divergeait diverger VER 0.57 1.01 0.01 0.00 ind:imp:3s; +divergeant diverger VER 0.57 1.01 0.00 0.14 par:pre; +divergence divergence NOM f s 1.19 2.84 0.41 0.95 +divergences divergence NOM f p 1.19 2.84 0.77 1.89 +divergent diverger VER 0.57 1.01 0.25 0.20 ind:pre:3p; +divergente divergent ADJ f s 0.43 2.23 0.02 0.00 +divergentes divergent ADJ f p 0.43 2.23 0.31 0.68 +divergents divergent ADJ m p 0.43 2.23 0.03 0.95 +divergeons diverger VER 0.57 1.01 0.02 0.00 ind:pre:1p; +diverger diverger VER 0.57 1.01 0.01 0.27 inf; +divergez diverger VER 0.57 1.01 0.01 0.00 ind:pre:2p; +divergions diverger VER 0.57 1.01 0.01 0.00 ind:imp:1p; +divergé diverger VER m s 0.57 1.01 0.06 0.07 par:pas; +divers divers ADJ:ind m p 7.28 52.77 3.60 11.69 +diverse divers ADJ f s 7.28 52.77 0.03 0.68 +diversement diversement ADV 0.04 0.74 0.04 0.74 +diverses diverses ADJ:ind f p 3.08 8.04 3.08 8.04 +diversifiant diversifier VER 0.54 0.88 0.00 0.07 par:pre; +diversification diversification NOM f s 0.14 0.14 0.14 0.14 +diversifie diversifier VER 0.54 0.88 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +diversifient diversifier VER 0.54 0.88 0.04 0.14 ind:pre:3p; +diversifier diversifier VER 0.54 0.88 0.23 0.41 inf; +diversifié diversifier VER m s 0.54 0.88 0.05 0.07 par:pas; +diversifiée diversifier VER f s 0.54 0.88 0.06 0.07 par:pas; +diversifiées diversifier VER f p 0.54 0.88 0.03 0.07 par:pas; +diversifiés diversifier VER m p 0.54 0.88 0.05 0.00 par:pas; +diversion diversion NOM f s 4.33 6.22 4.26 6.01 +diversions diversion NOM f p 4.33 6.22 0.07 0.20 +diversité diversité NOM f s 1.02 3.85 1.01 3.78 +diversités diversité NOM f p 1.02 3.85 0.01 0.07 +diverti divertir VER m s 4.49 4.26 0.28 0.68 par:pas; +diverticule diverticule NOM m s 0.03 0.00 0.03 0.00 +diverticulose diverticulose NOM f s 0.04 0.00 0.04 0.00 +divertie divertir VER f s 4.49 4.26 0.08 0.00 par:pas; +divertimento divertimento NOM m s 0.00 0.14 0.00 0.14 +divertir divertir VER 4.49 4.26 2.71 1.82 inf; +divertira divertir VER 4.49 4.26 0.01 0.07 ind:fut:3s; +divertirait divertir VER 4.49 4.26 0.02 0.00 cnd:pre:3s; +divertirent divertir VER 4.49 4.26 0.00 0.07 ind:pas:3p; +divertirons divertir VER 4.49 4.26 0.11 0.00 ind:fut:1p; +divertiront divertir VER 4.49 4.26 0.03 0.00 ind:fut:3p; +divertis divertir VER m p 4.49 4.26 0.45 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:1s;par:pas; +divertissaient divertir VER 4.49 4.26 0.02 0.20 ind:imp:3p; +divertissais divertir VER 4.49 4.26 0.01 0.14 ind:imp:1s; +divertissait divertir VER 4.49 4.26 0.03 0.27 ind:imp:3s; +divertissant divertissant ADJ m s 1.44 1.55 0.95 0.68 +divertissante divertissant ADJ f s 1.44 1.55 0.26 0.54 +divertissantes divertissant ADJ f p 1.44 1.55 0.04 0.34 +divertissants divertissant ADJ m p 1.44 1.55 0.19 0.00 +divertissement divertissement NOM m s 4.21 5.47 3.67 3.38 +divertissements divertissement NOM m p 4.21 5.47 0.55 2.09 +divertissent divertir VER 4.49 4.26 0.14 0.27 ind:pre:3p; +divertissez divertir VER 4.49 4.26 0.17 0.00 imp:pre:2p;ind:pre:2p; +divertissons divertir VER 4.49 4.26 0.00 0.07 imp:pre:1p; +divertit divertir VER 4.49 4.26 0.38 0.41 ind:pre:3s;ind:pas:3s; +dividende dividende NOM m s 0.57 0.47 0.03 0.07 +dividendes dividende NOM m p 0.57 0.47 0.55 0.41 +divin divin ADJ m s 26.55 24.93 10.01 10.14 +divination divination NOM f s 0.56 1.08 0.54 1.01 +divinations divination NOM f p 0.56 1.08 0.02 0.07 +divinatoire divinatoire ADJ f s 0.04 0.27 0.00 0.20 +divinatoires divinatoire ADJ p 0.04 0.27 0.04 0.07 +divinatrice divinateur ADJ f s 0.00 0.41 0.00 0.34 +divinatrices divinateur ADJ f p 0.00 0.41 0.00 0.07 +divine divin ADJ f s 26.55 24.93 14.00 11.76 +divinement divinement ADV 1.14 1.28 1.14 1.28 +divines divin ADJ f p 26.55 24.93 1.42 2.03 +divinisaient diviniser VER 0.00 0.41 0.00 0.07 ind:imp:3p; +divinisant divinisant ADJ m s 0.00 0.07 0.00 0.07 +divinise diviniser VER 0.00 0.41 0.00 0.14 ind:pre:3s; +divinisez diviniser VER 0.00 0.41 0.00 0.07 ind:pre:2p; +divinisé diviniser VER m s 0.00 0.41 0.00 0.07 par:pas; +divinisée diviniser VER f s 0.00 0.41 0.00 0.07 par:pas; +divinité divinité NOM f s 2.53 5.95 2.31 3.45 +divinités divinité NOM f p 2.53 5.95 0.22 2.50 +divins divin ADJ m p 26.55 24.93 1.12 1.01 +divisa diviser VER 10.14 16.69 0.15 0.41 ind:pas:3s; +divisaient diviser VER 10.14 16.69 0.03 0.54 ind:imp:3p; +divisais diviser VER 10.14 16.69 0.00 0.14 ind:imp:1s; +divisait diviser VER 10.14 16.69 0.17 1.62 ind:imp:3s; +divisant diviser VER 10.14 16.69 0.30 0.61 par:pre; +divise diviser VER 10.14 16.69 1.73 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divisent diviser VER 10.14 16.69 0.70 1.01 ind:pre:3p; +diviser diviser VER 10.14 16.69 2.11 2.36 inf; +divisera diviser VER 10.14 16.69 0.14 0.00 ind:fut:3s; +diviserais diviser VER 10.14 16.69 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +diviserait diviser VER 10.14 16.69 0.02 0.14 cnd:pre:3s; +divises diviser VER 10.14 16.69 0.20 0.07 ind:pre:2s; +diviseur diviseur NOM m s 0.01 0.20 0.01 0.14 +diviseuse diviseur NOM f s 0.01 0.20 0.00 0.07 +divisez diviser VER 10.14 16.69 0.30 0.00 imp:pre:2p;ind:pre:2p; +divisible divisible ADJ s 0.23 0.27 0.17 0.27 +divisibles divisible ADJ m p 0.23 0.27 0.06 0.00 +division division NOM f s 13.07 43.51 11.60 29.73 +divisionnaire divisionnaire NOM s 2.25 1.89 2.25 1.76 +divisionnaires divisionnaire ADJ m p 1.03 3.45 0.01 0.07 +divisionnisme divisionnisme NOM m s 0.00 0.07 0.00 0.07 +divisions division NOM f p 13.07 43.51 1.48 13.78 +divisons diviser VER 10.14 16.69 0.10 0.07 imp:pre:1p;ind:pre:1p; +divisèrent diviser VER 10.14 16.69 0.00 0.20 ind:pas:3p; +divisé diviser VER m s 10.14 16.69 1.85 2.91 par:pas; +divisée diviser VER f s 10.14 16.69 1.17 2.16 par:pas; +divisées diviser VER f p 10.14 16.69 0.23 0.27 par:pas; +divisés diviser VER m p 10.14 16.69 0.84 1.35 par:pas; +divorce divorce NOM m s 23.23 11.15 21.64 10.54 +divorcent divorcer VER 27.50 8.11 0.67 0.61 ind:pre:3p; +divorcer divorcer VER 27.50 8.11 12.03 2.16 inf; +divorcera divorcer VER 27.50 8.11 0.32 0.14 ind:fut:3s; +divorcerai divorcer VER 27.50 8.11 0.41 0.14 ind:fut:1s; +divorcerais divorcer VER 27.50 8.11 0.30 0.20 cnd:pre:1s;cnd:pre:2s; +divorcerait divorcer VER 27.50 8.11 0.07 0.00 cnd:pre:3s; +divorceras divorcer VER 27.50 8.11 0.02 0.00 ind:fut:2s; +divorcerez divorcer VER 27.50 8.11 0.02 0.14 ind:fut:2p; +divorceriez divorcer VER 27.50 8.11 0.01 0.00 cnd:pre:2p; +divorcerons divorcer VER 27.50 8.11 0.00 0.07 ind:fut:1p; +divorceront divorcer VER 27.50 8.11 0.10 0.07 ind:fut:3p; +divorces divorce NOM m p 23.23 11.15 1.58 0.61 +divorcez divorcer VER 27.50 8.11 0.67 0.00 imp:pre:2p;ind:pre:2p; +divorciez divorcer VER 27.50 8.11 0.04 0.00 ind:imp:2p; +divorcions divorcer VER 27.50 8.11 0.10 0.14 ind:imp:1p; +divorcèrent divorcer VER 27.50 8.11 0.02 0.14 ind:pas:3p; +divorcé divorcer VER m s 27.50 8.11 6.04 2.23 par:pas; +divorcée divorcer VER f s 27.50 8.11 1.58 0.47 par:pas; +divorcées divorcé ADJ f p 1.64 0.95 0.14 0.07 +divorcés divorcer VER m p 27.50 8.11 1.50 0.07 par:pas; +divorça divorcer VER 27.50 8.11 0.14 0.07 ind:pas:3s; +divorçaient divorcer VER 27.50 8.11 0.04 0.07 ind:imp:3p; +divorçait divorcer VER 27.50 8.11 0.12 0.27 ind:imp:3s; +divorçant divorcer VER 27.50 8.11 0.04 0.20 par:pre; +divorçons divorcer VER 27.50 8.11 0.48 0.14 imp:pre:1p;ind:pre:1p; +divulgation divulgation NOM f s 0.33 0.61 0.33 0.61 +divulguait divulguer VER 2.48 1.96 0.00 0.20 ind:imp:3s; +divulguant divulguer VER 2.48 1.96 0.00 0.14 par:pre; +divulgue divulguer VER 2.48 1.96 0.27 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +divulguer divulguer VER 2.48 1.96 1.06 0.95 inf; +divulguera divulguer VER 2.48 1.96 0.04 0.07 ind:fut:3s; +divulguez divulguer VER 2.48 1.96 0.09 0.00 imp:pre:2p;ind:pre:2p; +divulguons divulguer VER 2.48 1.96 0.05 0.00 imp:pre:1p;ind:pre:1p; +divulgué divulguer VER m s 2.48 1.96 0.71 0.34 par:pas; +divulguée divulguer VER f s 2.48 1.96 0.08 0.07 par:pas; +divulguées divulguer VER f p 2.48 1.96 0.06 0.00 par:pas; +divulgués divulguer VER m p 2.48 1.96 0.11 0.14 par:pas; +dix_cors dix_cors NOM m 0.03 0.88 0.03 0.88 +dix_huit dix_huit ADJ:num 4.44 31.69 4.44 31.69 +dix_huitième dix_huitième NOM s 0.16 0.27 0.16 0.27 +dix_neuf dix_neuf ADJ:num 2.11 10.54 2.11 10.54 +dix_neuvième dix_neuvième ADJ 0.15 1.22 0.15 1.22 +dix_sept dix_sept ADJ:num 3.69 19.59 3.69 19.59 +dix_septième dix_septième ADJ 0.22 1.22 0.22 1.22 +dix dix ADJ:num 118.29 209.86 118.29 209.86 +dixie dixie NOM m s 1.40 0.00 1.40 0.00 +dixieland dixieland NOM m s 0.14 0.00 0.14 0.00 +dixit dixit ADJ m s 0.54 0.68 0.54 0.68 +dixième dixième ADJ 1.76 2.77 1.73 2.70 +dixièmement dixièmement ADV 0.02 0.00 0.02 0.00 +dixièmes dixième NOM p 1.60 4.32 0.23 1.28 +dizain dizain NOM m s 0.14 0.00 0.14 0.00 +dizaine dizaine NOM f s 11.08 44.73 5.87 26.55 +dizaines dizaine NOM f p 11.08 44.73 5.21 18.18 +djebel djebel NOM m s 0.00 2.84 0.00 2.30 +djebels djebel NOM m p 0.00 2.84 0.00 0.54 +djellaba djellaba NOM f s 0.30 1.69 0.15 1.15 +djellabas djellaba NOM f p 0.30 1.69 0.16 0.54 +djemââ djemââ NOM f s 0.00 0.07 0.00 0.07 +djihad djihad NOM m s 0.44 0.00 0.43 0.00 +djihads djihad NOM m p 0.44 0.00 0.01 0.00 +djinn djinn NOM m s 0.36 0.61 0.34 0.00 +djinns djinn NOM m p 0.36 0.61 0.02 0.61 +dm dm ADJ:num 0.40 0.00 0.40 0.00 +dna dna NOM m s 0.09 0.00 0.09 0.00 +do do NOM m 16.66 3.78 16.66 3.78 +doña doña NOM f s 2.44 0.00 2.44 0.00 +doberman doberman NOM m s 1.03 0.95 0.69 0.34 +dobermans doberman NOM m p 1.03 0.95 0.33 0.61 +doc doc NOM m s 4.04 0.54 4.04 0.54 +doche doche NOM f s 0.00 0.07 0.00 0.07 +docile docile ADJ s 2.12 9.66 1.68 7.43 +docilement docilement ADV 0.07 5.54 0.07 5.54 +dociles docile ADJ p 2.12 9.66 0.44 2.23 +docilité docilité NOM f s 0.14 3.85 0.14 3.85 +dock dock NOM m s 3.10 3.99 0.92 0.81 +docker docker NOM m s 0.90 3.18 0.39 0.68 +dockers docker NOM m p 0.90 3.18 0.51 2.50 +docks dock NOM m p 3.10 3.99 2.18 3.18 +docte docte ADJ s 0.17 1.89 0.17 1.42 +doctement doctement ADV 0.00 0.54 0.00 0.54 +doctes docte ADJ m p 0.17 1.89 0.01 0.47 +docteur docteur NOM m s 233.86 87.36 223.48 83.11 +docteurs docteur NOM m p 233.86 87.36 9.72 3.18 +doctissime doctissime ADJ m s 0.03 0.00 0.03 0.00 +doctoral doctoral ADJ m s 0.00 0.81 0.00 0.54 +doctorale doctoral ADJ f s 0.00 0.81 0.00 0.27 +doctorat doctorat NOM m s 4.07 1.82 3.76 1.76 +doctorats doctorat NOM m p 4.07 1.82 0.31 0.07 +doctoresse docteur NOM f s 233.86 87.36 0.66 1.08 +doctrina doctriner VER 0.00 0.07 0.00 0.07 ind:pas:3s; +doctrinaire doctrinaire ADJ s 0.02 0.14 0.02 0.14 +doctrinaires doctrinaire NOM p 0.00 0.27 0.00 0.07 +doctrinal doctrinal ADJ m s 0.01 0.47 0.00 0.27 +doctrinale doctrinal ADJ f s 0.01 0.47 0.01 0.14 +doctrinales doctrinal ADJ f p 0.01 0.47 0.00 0.07 +doctrine doctrine NOM f s 1.81 7.77 1.54 5.68 +doctrines doctrine NOM f p 1.81 7.77 0.27 2.09 +docudrame docudrame NOM m s 0.03 0.00 0.03 0.00 +document document NOM m s 24.86 16.01 9.34 6.69 +documenta documenter VER 1.53 0.95 0.01 0.14 ind:pas:3s; +documentaire documentaire NOM m s 4.88 0.95 4.13 0.74 +documentaires documentaire NOM m p 4.88 0.95 0.75 0.20 +documentais documenter VER 1.53 0.95 0.01 0.00 ind:imp:1s; +documentait documenter VER 1.53 0.95 0.04 0.00 ind:imp:3s; +documentaliste documentaliste NOM s 0.29 0.27 0.27 0.20 +documentalistes documentaliste NOM p 0.29 0.27 0.03 0.07 +documentant documenter VER 1.53 0.95 0.05 0.07 par:pre; +documentariste documentariste NOM s 0.04 0.00 0.03 0.00 +documentaristes documentariste NOM p 0.04 0.00 0.01 0.00 +documentation documentation NOM f s 1.44 2.43 1.43 2.23 +documentations documentation NOM f p 1.44 2.43 0.01 0.20 +documente documenter VER 1.53 0.95 0.23 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +documentent documenter VER 1.53 0.95 0.01 0.07 ind:pre:3p; +documenter documenter VER 1.53 0.95 0.85 0.47 inf; +documenterai documenter VER 1.53 0.95 0.00 0.07 ind:fut:1s; +documentes documenter VER 1.53 0.95 0.00 0.07 ind:pre:2s; +documents document NOM m p 24.86 16.01 15.53 9.32 +documenté documenter VER m s 1.53 0.95 0.22 0.07 par:pas; +documentée documenté ADJ f s 0.39 0.07 0.15 0.00 +documentés documenter VER m p 1.53 0.95 0.05 0.00 par:pas; +dodelinaient dodeliner VER 0.03 2.77 0.00 0.07 ind:imp:3p; +dodelinais dodeliner VER 0.03 2.77 0.01 0.07 ind:imp:1s; +dodelinait dodeliner VER 0.03 2.77 0.00 0.68 ind:imp:3s; +dodelinant dodeliner VER 0.03 2.77 0.01 1.01 par:pre; +dodelinante dodelinant ADJ f s 0.01 0.27 0.00 0.07 +dodelinantes dodelinant ADJ f p 0.01 0.27 0.00 0.07 +dodeline dodeliner VER 0.03 2.77 0.01 0.41 imp:pre:2s;ind:pre:3s; +dodelinent dodeliner VER 0.03 2.77 0.00 0.14 ind:pre:3p; +dodeliner dodeliner VER 0.03 2.77 0.00 0.27 inf; +dodelinèrent dodeliner VER 0.03 2.77 0.00 0.07 ind:pas:3p; +dodeliné dodeliner VER m s 0.03 2.77 0.00 0.07 par:pas; +dodine dodiner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +dodo dodo NOM m s 7.53 2.50 7.52 2.43 +dodos dodo NOM m p 7.53 2.50 0.01 0.07 +dodu dodu ADJ m s 0.89 5.00 0.34 1.89 +dodécagone dodécagone NOM m s 0.00 0.07 0.00 0.07 +dodécaphoniste dodécaphoniste NOM s 0.00 0.07 0.00 0.07 +dodécaèdre dodécaèdre NOM m s 0.03 0.14 0.03 0.14 +dodue dodu ADJ f s 0.89 5.00 0.13 1.42 +dodues dodu ADJ f p 0.89 5.00 0.20 0.88 +dodus dodu ADJ m p 0.89 5.00 0.23 0.81 +dog_cart dog_cart NOM m s 0.04 0.00 0.04 0.00 +dogaresse dogaresse NOM f s 0.00 0.14 0.00 0.07 +dogaresses dogaresse NOM f p 0.00 0.14 0.00 0.07 +doge doge NOM m s 0.53 3.45 0.41 1.89 +doges doge NOM m p 0.53 3.45 0.11 1.55 +dogger dogger NOM m s 0.14 0.00 0.14 0.00 +dogmatique dogmatique ADJ s 0.17 1.01 0.03 0.61 +dogmatiques dogmatique ADJ p 0.17 1.01 0.14 0.41 +dogmatisme dogmatisme NOM m s 0.10 0.34 0.10 0.34 +dogme dogme NOM m s 0.63 2.77 0.49 1.35 +dogmes dogme NOM m p 0.63 2.77 0.14 1.42 +dogue dogue NOM m s 0.14 1.42 0.14 0.81 +dogues dogue NOM m p 0.14 1.42 0.00 0.61 +doguin doguin NOM m s 0.00 0.07 0.00 0.07 +doigt doigt NOM m s 85.69 256.15 39.83 80.34 +doigta doigter VER 0.10 0.07 0.00 0.07 ind:pas:3s; +doigtait doigter VER 0.10 0.07 0.01 0.00 ind:imp:3s; +doigter doigter VER 0.10 0.07 0.04 0.00 inf; +doigtier doigtier NOM m s 0.00 0.20 0.00 0.20 +doigts doigt NOM m p 85.69 256.15 45.86 175.81 +doigté doigté NOM m s 1.00 1.15 1.00 1.15 +dois devoir VER 3232.80 1318.24 894.67 102.03 imp:pre:2s;ind:pre:1s;ind:pre:2s; +doit devoir VER 3232.80 1318.24 654.84 224.59 ind:pre:3s; +doive devoir VER 3232.80 1318.24 5.50 4.32 sub:pre:1s;sub:pre:3s; +doivent devoir VER 3232.80 1318.24 85.42 45.95 ind:pre:3p;sub:pre:3p; +doives devoir VER 3232.80 1318.24 1.25 0.14 sub:pre:2s; +dojo dojo NOM m s 0.93 0.34 0.93 0.34 +dol dol NOM m s 0.34 0.07 0.34 0.07 +dolby dolby NOM m s 0.05 0.00 0.05 0.00 +dolce dolce ADV 1.53 0.74 1.53 0.74 +dolent dolent ADJ m s 0.27 2.36 0.00 0.68 +dolente dolent ADJ f s 0.27 2.36 0.27 1.35 +dolentes dolent ADJ f p 0.27 2.36 0.00 0.14 +dolents dolent ADJ m p 0.27 2.36 0.00 0.20 +dolichocéphale dolichocéphale ADJ m s 0.10 0.20 0.10 0.00 +dolichocéphales dolichocéphale ADJ p 0.10 0.20 0.00 0.20 +dolichocéphalie dolichocéphalie NOM f s 0.00 0.07 0.00 0.07 +doline doline NOM f s 0.01 0.00 0.01 0.00 +dolique dolique NOM m s 0.01 0.00 0.01 0.00 +dollar dollar NOM m s 134.10 16.96 13.89 3.85 +dollars dollar NOM m p 134.10 16.96 120.22 13.11 +dolman dolman NOM m s 0.00 1.15 0.00 0.88 +dolmans dolman NOM m p 0.00 1.15 0.00 0.27 +dolmen dolmen NOM m s 0.01 1.89 0.00 1.15 +dolmens dolmen NOM m p 0.01 1.89 0.01 0.74 +dolomies dolomie NOM f p 0.14 0.07 0.14 0.07 +dolomite dolomite NOM f s 0.08 0.00 0.08 0.00 +dolorisme dolorisme NOM m s 0.00 0.07 0.00 0.07 +doloriste doloriste NOM s 0.00 0.07 0.00 0.07 +doléance doléance NOM f s 0.46 1.76 0.00 0.14 +doléances doléance NOM f p 0.46 1.76 0.46 1.62 +dom dom NOM m s 0.39 0.34 0.39 0.34 +domaine domaine NOM m s 21.57 46.22 19.21 37.91 +domaines domaine NOM m p 21.57 46.22 2.37 8.31 +domanial domanial ADJ m s 0.00 0.47 0.00 0.14 +domaniale domanial ADJ f s 0.00 0.47 0.00 0.27 +domaniaux domanial ADJ m p 0.00 0.47 0.00 0.07 +domestication domestication NOM f s 0.02 0.47 0.02 0.47 +domesticité domesticité NOM f s 0.18 0.88 0.18 0.88 +domestiqua domestiquer VER 0.41 3.58 0.00 0.14 ind:pas:3s; +domestiquait domestiquer VER 0.41 3.58 0.00 0.07 ind:imp:3s; +domestique domestique NOM s 10.09 18.51 4.57 7.23 +domestiquement domestiquement ADV 0.00 0.07 0.00 0.07 +domestiquer domestiquer VER 0.41 3.58 0.07 0.88 inf; +domestiques domestique NOM p 10.09 18.51 5.52 11.28 +domestiquez domestiquer VER 0.41 3.58 0.00 0.07 imp:pre:2p; +domestiqué domestiquer VER m s 0.41 3.58 0.12 0.68 par:pas; +domestiquée domestiquer VER f s 0.41 3.58 0.04 0.81 par:pas; +domestiquées domestiquer VER f p 0.41 3.58 0.01 0.14 par:pas; +domestiqués domestiquer VER m p 0.41 3.58 0.06 0.68 par:pas; +domicile domicile NOM m s 11.69 15.34 11.60 14.93 +domiciles domicile NOM m p 11.69 15.34 0.09 0.41 +domiciliaires domiciliaire ADJ f p 0.00 0.20 0.00 0.20 +domiciliation domiciliation NOM f s 0.00 0.07 0.00 0.07 +domicilier domicilier VER 0.38 0.74 0.00 0.14 inf; +domicilié domicilié ADJ m s 0.53 0.07 0.52 0.00 +domiciliée domicilier VER f s 0.38 0.74 0.14 0.27 par:pas; +domiciliés domicilié ADJ m p 0.53 0.07 0.01 0.00 +domina dominer VER 15.66 50.61 0.27 1.08 ind:pas:3s; +dominaient dominer VER 15.66 50.61 0.02 2.57 ind:imp:3p; +dominais dominer VER 15.66 50.61 0.02 0.34 ind:imp:1s;ind:imp:2s; +dominait dominer VER 15.66 50.61 0.42 9.32 ind:imp:3s; +dominance dominance NOM f s 0.14 0.07 0.14 0.07 +dominant dominant ADJ m s 2.34 3.85 1.41 1.69 +dominante dominant ADJ f s 2.34 3.85 0.68 1.15 +dominantes dominant ADJ f p 2.34 3.85 0.04 0.54 +dominants dominant ADJ m p 2.34 3.85 0.22 0.47 +dominateur dominateur ADJ m s 0.97 1.49 0.53 0.95 +dominateurs dominateur ADJ m p 0.97 1.49 0.01 0.14 +domination domination NOM f s 2.42 5.88 2.39 5.68 +dominations domination NOM f p 2.42 5.88 0.04 0.20 +dominatrice dominateur ADJ f s 0.97 1.49 0.42 0.34 +dominatrices dominatrice NOM f p 0.03 0.00 0.03 0.00 +domine dominer VER 15.66 50.61 4.04 9.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dominent dominer VER 15.66 50.61 0.73 3.11 ind:pre:3p; +dominer dominer VER 15.66 50.61 5.07 10.34 inf; +dominera dominer VER 15.66 50.61 0.59 0.27 ind:fut:3s; +dominerai dominer VER 15.66 50.61 0.17 0.00 ind:fut:1s; +domineraient dominer VER 15.66 50.61 0.00 0.07 cnd:pre:3p; +dominerais dominer VER 15.66 50.61 0.01 0.27 cnd:pre:1s;cnd:pre:2s; +dominerait dominer VER 15.66 50.61 0.05 0.07 cnd:pre:3s; +domineras dominer VER 15.66 50.61 0.11 0.00 ind:fut:2s; +domineriez dominer VER 15.66 50.61 0.01 0.00 cnd:pre:2p; +dominerions dominer VER 15.66 50.61 0.00 0.14 cnd:pre:1p; +dominerons dominer VER 15.66 50.61 0.07 0.07 ind:fut:1p; +domineront dominer VER 15.66 50.61 0.16 0.14 ind:fut:3p; +domines dominer VER 15.66 50.61 0.26 0.27 ind:pre:2s; +dominez dominer VER 15.66 50.61 0.11 0.07 imp:pre:2p;ind:pre:2p; +dominicain dominicain NOM m s 0.58 2.57 0.23 0.61 +dominicaine dominicain ADJ f s 0.19 0.95 0.12 0.47 +dominicaines dominicain NOM f p 0.58 2.57 0.03 0.07 +dominicains dominicain NOM m p 0.58 2.57 0.28 1.89 +dominical dominical ADJ m s 0.31 2.97 0.10 1.15 +dominicale dominical ADJ f s 0.31 2.97 0.19 1.08 +dominicales dominical ADJ f p 0.31 2.97 0.01 0.41 +dominicaux dominical ADJ m p 0.31 2.97 0.01 0.34 +dominiez dominer VER 15.66 50.61 0.02 0.00 ind:imp:2p; +dominion dominion NOM m s 0.34 0.54 0.34 0.27 +dominions dominer VER 15.66 50.61 0.01 0.41 ind:imp:1p; +domino domino NOM m s 1.35 3.18 0.35 0.41 +dominons dominer VER 15.66 50.61 0.05 0.14 imp:pre:1p;ind:pre:1p; +dominos domino NOM m p 1.35 3.18 0.99 2.77 +dominât dominer VER 15.66 50.61 0.00 0.07 sub:imp:3s; +dominèrent dominer VER 15.66 50.61 0.01 0.07 ind:pas:3p; +dominé dominer VER m s 15.66 50.61 1.45 3.85 par:pas; +dominée dominer VER f s 15.66 50.61 1.23 1.89 par:pas; +dominées dominer VER f p 15.66 50.61 0.15 1.08 par:pas; +dominés dominer VER m p 15.66 50.61 0.32 1.28 par:pas; +dommage dommage ONO 25.88 5.34 25.88 5.34 +dommageable dommageable ADJ f s 0.12 0.20 0.10 0.07 +dommageables dommageable ADJ f p 0.12 0.20 0.02 0.14 +dommages_intérêts dommages_intérêts NOM m p 0.04 0.00 0.04 0.00 +dommages dommage NOM m p 65.59 26.15 6.16 2.09 +domotique domotique NOM f s 0.02 0.00 0.02 0.00 +dompta dompter VER 2.14 3.24 0.00 0.20 ind:pas:3s; +domptage domptage NOM m s 0.00 0.14 0.00 0.14 +domptai dompter VER 2.14 3.24 0.00 0.07 ind:pas:1s; +domptait dompter VER 2.14 3.24 0.00 0.07 ind:imp:3s; +dompte dompter VER 2.14 3.24 0.26 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +domptent dompter VER 2.14 3.24 0.00 0.07 ind:pre:3p; +dompter dompter VER 2.14 3.24 1.00 1.69 inf; +dompterai dompter VER 2.14 3.24 0.00 0.07 ind:fut:1s; +dompterait dompter VER 2.14 3.24 0.00 0.07 cnd:pre:3s; +dompteur dompteur NOM m s 2.18 2.57 1.11 1.89 +dompteurs dompteur NOM m p 2.18 2.57 0.16 0.14 +dompteuse dompteur NOM f s 2.18 2.57 0.92 0.41 +dompteuses dompteur NOM f p 2.18 2.57 0.00 0.14 +domptez dompter VER 2.14 3.24 0.04 0.07 imp:pre:2p; +dompté dompter VER m s 2.14 3.24 0.64 0.34 par:pas; +domptée dompter VER f s 2.14 3.24 0.19 0.20 par:pas; +domptées dompté ADJ f p 0.15 0.20 0.00 0.14 +domptés dompté ADJ m p 0.15 0.20 0.02 0.00 +don don NOM m s 43.78 39.86 35.47 30.27 +dona dona NOM f s 0.50 1.15 0.50 1.15 +donateur donateur NOM m s 0.89 1.69 0.36 0.81 +donateurs donateur NOM m p 0.89 1.69 0.50 0.61 +donation donation NOM f s 1.89 0.74 1.23 0.54 +donations donation NOM f p 1.89 0.74 0.66 0.20 +donatrice donateur NOM f s 0.89 1.69 0.04 0.27 +donc donc CON 612.51 445.88 612.51 445.88 +dondaine dondaine NOM f s 0.00 0.14 0.00 0.07 +dondaines dondaine NOM f p 0.00 0.14 0.00 0.07 +dondon dondon NOM f s 0.23 0.47 0.20 0.34 +dondons dondon NOM f p 0.23 0.47 0.03 0.14 +dong dong ONO 0.97 0.95 0.97 0.95 +donjon donjon NOM m s 3.14 3.31 2.94 2.84 +donjons donjon NOM m p 3.14 3.31 0.20 0.47 +donjuanesque donjuanesque ADJ s 0.00 0.47 0.00 0.47 +donjuanisme donjuanisme NOM m s 0.00 0.54 0.00 0.54 +donna donner VER 1209.58 896.01 6.28 46.28 ind:pas:3s; +donnai donner VER 1209.58 896.01 0.32 5.41 ind:pas:1s; +donnaient donner VER 1209.58 896.01 2.49 35.07 ind:imp:3p; +donnais donner VER 1209.58 896.01 5.91 6.89 ind:imp:1s;ind:imp:2s; +donnait donner VER 1209.58 896.01 15.97 123.24 ind:imp:3s; +donnant_donnant donnant_donnant ADV 0.73 0.41 0.73 0.41 +donnant donner VER 1209.58 896.01 7.04 32.57 par:pre; +donnas donner VER 1209.58 896.01 0.04 0.00 ind:pas:2s; +donnassent donner VER 1209.58 896.01 0.00 0.14 sub:imp:3p; +donne donner VER 1209.58 896.01 401.06 149.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +donnent donner VER 1209.58 896.01 19.75 26.28 ind:pre:3p;sub:pre:3p; +donner donner VER 1209.58 896.01 233.21 216.55 inf;;inf;;inf;;inf;;inf;;inf;; +donnera donner VER 1209.58 896.01 24.60 8.99 ind:fut:3s; +donnerai donner VER 1209.58 896.01 30.70 6.15 ind:fut:1s; +donneraient donner VER 1209.58 896.01 1.10 2.03 cnd:pre:3p; +donnerais donner VER 1209.58 896.01 11.18 5.68 cnd:pre:1s;cnd:pre:2s; +donnerait donner VER 1209.58 896.01 6.20 13.31 cnd:pre:3s; +donneras donner VER 1209.58 896.01 5.49 1.82 ind:fut:2s; +donnerez donner VER 1209.58 896.01 4.31 1.69 ind:fut:2p; +donneriez donner VER 1209.58 896.01 1.05 0.34 cnd:pre:2p; +donnerions donner VER 1209.58 896.01 0.05 0.14 cnd:pre:1p; +donnerons donner VER 1209.58 896.01 2.96 0.61 ind:fut:1p; +donneront donner VER 1209.58 896.01 3.68 1.89 ind:fut:3p; +donnes donner VER 1209.58 896.01 34.32 5.34 ind:pre:1p;ind:pre:2s;sub:pre:2s; +donneur donneur NOM m s 5.86 6.76 4.85 5.27 +donneurs donneur NOM m p 5.86 6.76 0.84 0.95 +donneuse donneur ADJ f s 0.91 0.68 0.23 0.34 +donneuses donneuse NOM f p 0.01 0.00 0.01 0.00 +donnez donner VER 1209.58 896.01 118.36 13.65 imp:pre:2p;ind:pre:2p; +donniez donner VER 1209.58 896.01 3.04 1.28 ind:imp:2p;sub:pre:2p; +donnions donner VER 1209.58 896.01 0.79 1.69 ind:imp:1p;sub:pre:1p; +donnâmes donner VER 1209.58 896.01 0.00 0.34 ind:pas:1p; +donnons donner VER 1209.58 896.01 6.66 1.96 imp:pre:1p;ind:pre:1p; +donnât donner VER 1209.58 896.01 0.02 3.38 sub:imp:3s; +donnèrent donner VER 1209.58 896.01 0.75 4.59 ind:pas:3p; +donné donner VER m s 1209.58 896.01 234.66 148.65 par:pas;par:pas;par:pas;par:pas; +donnée donner VER f s 1209.58 896.01 16.55 18.92 par:pas; +données donnée NOM f p 20.92 6.89 20.05 5.41 +donnés donner VER m p 1209.58 896.01 7.06 6.82 par:pas; +donquichottesque donquichottesque ADJ f s 0.00 0.20 0.00 0.14 +donquichottesques donquichottesque ADJ f p 0.00 0.20 0.00 0.07 +donquichottisme donquichottisme NOM m s 0.01 0.00 0.01 0.00 +dons don NOM m p 43.78 39.86 8.31 9.59 +dont dont PRO:rel 223.41 960.34 219.21 926.42 +donzelle donzelle NOM f s 0.48 1.22 0.41 0.81 +donzelles donzelle NOM f p 0.48 1.22 0.07 0.41 +dopage dopage NOM m s 0.10 0.00 0.10 0.00 +dopais doper VER 1.33 0.54 0.01 0.00 ind:imp:1s; +dopait doper VER 1.33 0.54 0.04 0.00 ind:imp:3s; +dopamine dopamine NOM f s 1.10 0.00 1.10 0.00 +dopant dopant ADJ m s 0.18 0.00 0.15 0.00 +dopants dopant ADJ m p 0.18 0.00 0.04 0.00 +dope dope NOM s 7.47 2.03 7.47 1.96 +doper doper VER 1.33 0.54 0.35 0.00 inf; +dopes doper VER 1.33 0.54 0.05 0.00 ind:pre:2s; +dopez doper VER 1.33 0.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +doping doping NOM m s 0.01 0.34 0.01 0.34 +doppler doppler NOM m s 0.01 0.00 0.01 0.00 +dopé doper VER m s 1.33 0.54 0.46 0.27 par:pas; +dopée doper VER f s 1.33 0.54 0.05 0.00 par:pas; +dopés doper VER m p 1.33 0.54 0.06 0.14 par:pas; +dora dorer VER 2.66 15.14 0.00 0.07 ind:pas:3s; +dorade dorade NOM f s 0.62 0.47 0.22 0.14 +dorades dorade NOM f p 0.62 0.47 0.40 0.34 +dorage dorage NOM m s 0.00 0.07 0.00 0.07 +doraient dorer VER 2.66 15.14 0.00 0.07 ind:imp:3p; +dorais dorer VER 2.66 15.14 0.01 0.07 ind:imp:1s; +dorait dorer VER 2.66 15.14 0.00 0.68 ind:imp:3s; +dorant dorer VER 2.66 15.14 0.15 0.20 par:pre; +dorcades dorcade NOM f p 0.00 0.07 0.00 0.07 +dore dorer VER 2.66 15.14 0.30 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dorent dorer VER 2.66 15.14 0.01 0.20 ind:pre:3p; +dorer dorer VER 2.66 15.14 0.22 1.22 inf; +dorera dorer VER 2.66 15.14 0.00 0.07 ind:fut:3s; +doreront dorer VER 2.66 15.14 0.01 0.00 ind:fut:3p; +doreurs doreur NOM m p 0.00 0.07 0.00 0.07 +doriennes dorien ADJ f p 0.00 0.14 0.00 0.07 +doriens dorien ADJ m p 0.00 0.14 0.00 0.07 +dorique dorique ADJ s 0.01 0.47 0.01 0.14 +doriques dorique ADJ p 0.01 0.47 0.00 0.34 +dorlotait dorloter VER 1.56 2.43 0.01 0.27 ind:imp:3s; +dorlotant dorloter VER 1.56 2.43 0.02 0.07 par:pre; +dorlote dorloter VER 1.56 2.43 0.28 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dorlotent dorloter VER 1.56 2.43 0.03 0.07 ind:pre:3p; +dorloter dorloter VER 1.56 2.43 0.79 1.08 inf; +dorloterai dorloter VER 1.56 2.43 0.01 0.00 ind:fut:1s; +dorloterons dorloter VER 1.56 2.43 0.00 0.07 ind:fut:1p; +dorlotez dorloter VER 1.56 2.43 0.05 0.00 imp:pre:2p;ind:pre:2p; +dorloté dorloter VER m s 1.56 2.43 0.15 0.41 par:pas; +dorlotée dorloter VER f s 1.56 2.43 0.18 0.00 par:pas; +dorlotées dorloter VER f p 1.56 2.43 0.00 0.07 par:pas; +dorlotés dorloter VER m p 1.56 2.43 0.04 0.07 par:pas; +dormîmes dormir VER 392.09 259.05 0.00 0.34 ind:pas:1p; +dormît dormir VER 392.09 259.05 0.00 0.14 sub:imp:3s; +dormaient dormir VER 392.09 259.05 1.45 10.41 ind:imp:3p; +dormais dormir VER 392.09 259.05 14.36 7.50 ind:imp:1s;ind:imp:2s; +dormait dormir VER 392.09 259.05 9.72 41.89 ind:imp:3s; +dormance dormance NOM f s 0.03 0.07 0.03 0.07 +dormant dormir VER 392.09 259.05 3.16 5.47 par:pre; +dormante dormant ADJ f s 1.62 4.26 0.07 1.76 +dormantes dormant ADJ f p 1.62 4.26 0.17 0.27 +dormants dormant ADJ m p 1.62 4.26 0.18 0.07 +dorme dormir VER 392.09 259.05 4.13 3.18 sub:pre:1s;sub:pre:3s; +dorment dormir VER 392.09 259.05 10.48 10.27 ind:pre:3p;sub:pre:3p; +dormes dormir VER 392.09 259.05 2.23 0.41 sub:pre:2s; +dormeur dormeur NOM m s 1.21 5.95 0.82 3.11 +dormeurs dormeur NOM m p 1.21 5.95 0.16 1.96 +dormeuse dormeur NOM f s 1.21 5.95 0.23 0.54 +dormeuses dormeur NOM f p 1.21 5.95 0.00 0.34 +dormez dormir VER 392.09 259.05 12.35 2.84 imp:pre:2p;ind:pre:2p; +dormi dormir VER m s 392.09 259.05 41.25 26.49 par:pas; +dormiez dormir VER 392.09 259.05 2.40 0.95 ind:imp:2p; +dormions dormir VER 392.09 259.05 0.41 1.55 ind:imp:1p; +dormir dormir VER 392.09 259.05 160.77 95.20 inf; +dormira dormir VER 392.09 259.05 4.37 1.28 ind:fut:3s; +dormirai dormir VER 392.09 259.05 3.62 1.28 ind:fut:1s; +dormiraient dormir VER 392.09 259.05 0.17 0.14 cnd:pre:3p; +dormirais dormir VER 392.09 259.05 0.87 0.74 cnd:pre:1s;cnd:pre:2s; +dormirait dormir VER 392.09 259.05 0.35 1.42 cnd:pre:3s; +dormiras dormir VER 392.09 259.05 3.39 0.34 ind:fut:2s; +dormirent dormir VER 392.09 259.05 0.14 0.41 ind:pas:3p; +dormirez dormir VER 392.09 259.05 2.22 0.54 ind:fut:2p; +dormiriez dormir VER 392.09 259.05 0.03 0.07 cnd:pre:2p; +dormirions dormir VER 392.09 259.05 0.01 0.27 cnd:pre:1p; +dormirons dormir VER 392.09 259.05 0.28 0.34 ind:fut:1p; +dormiront dormir VER 392.09 259.05 0.70 0.14 ind:fut:3p; +dormis dormir VER 392.09 259.05 0.47 1.69 ind:pas:1s;ind:pas:2s; +dormit dormir VER 392.09 259.05 0.29 3.11 ind:pas:3s; +dormitif dormitif ADJ m s 0.03 0.20 0.03 0.20 +dormition dormition NOM f s 0.00 0.14 0.00 0.14 +dormons dormir VER 392.09 259.05 2.38 0.81 imp:pre:1p;ind:pre:1p; +dors dormir VER 392.09 259.05 55.03 13.92 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dorsal dorsal ADJ m s 1.12 0.88 0.17 0.07 +dorsale dorsal ADJ f s 1.12 0.88 0.79 0.54 +dorsales dorsal ADJ f p 1.12 0.88 0.04 0.20 +dorsaux dorsal ADJ m p 1.12 0.88 0.11 0.07 +dort dormir VER 392.09 259.05 55.05 25.95 ind:pre:3s; +dortoir dortoir NOM m s 5.29 12.36 4.83 9.32 +dortoirs dortoir NOM m p 5.29 12.36 0.46 3.04 +doré doré ADJ m s 7.33 50.47 2.62 15.74 +dorée doré ADJ f s 7.33 50.47 2.31 16.42 +dorées doré ADJ f p 7.33 50.47 0.87 8.45 +dorénavant dorénavant ADV 7.20 6.89 7.20 6.89 +dorure dorure NOM f s 0.22 3.99 0.07 0.95 +dorures dorure NOM f p 0.22 3.99 0.15 3.04 +dorés doré ADJ m p 7.33 50.47 1.53 9.86 +doryphore doryphore NOM m s 0.01 0.81 0.01 0.34 +doryphores doryphore NOM m p 0.01 0.81 0.00 0.47 +dos_d_âne dos_d_âne NOM m 0.01 0.34 0.01 0.34 +dos dos NOM m 100.34 213.99 100.34 213.99 +dosage dosage NOM m s 1.89 1.69 1.67 1.62 +dosages dosage NOM m p 1.89 1.69 0.22 0.07 +dosaient doser VER 0.60 2.91 0.00 0.07 ind:imp:3p; +dosais doser VER 0.60 2.91 0.00 0.07 ind:imp:1s; +dosait doser VER 0.60 2.91 0.00 0.07 ind:imp:3s; +dosant doser VER 0.60 2.91 0.00 0.34 par:pre; +dose dose NOM f s 18.44 12.77 14.23 9.32 +dosent doser VER 0.60 2.91 0.00 0.07 ind:pre:3p; +doser doser VER 0.60 2.91 0.13 0.95 inf; +doses dose NOM f p 18.44 12.77 4.21 3.45 +doseur doseur NOM m s 0.19 0.14 0.18 0.07 +doseurs doseur NOM m p 0.19 0.14 0.01 0.07 +dosimètre dosimètre NOM m s 0.03 0.00 0.03 0.00 +dossard dossard NOM m s 0.16 0.54 0.14 0.47 +dossards dossard NOM m p 0.16 0.54 0.01 0.07 +dosseret dosseret NOM m s 0.00 0.07 0.00 0.07 +dossier dossier NOM m s 78.91 49.12 57.20 35.14 +dossiers dossier NOM m p 78.91 49.12 21.71 13.99 +dossière dossière NOM f s 0.00 0.27 0.00 0.20 +dossières dossière NOM f p 0.00 0.27 0.00 0.07 +dostoïevskiens dostoïevskien ADJ m p 0.00 0.07 0.00 0.07 +dosé doser VER m s 0.60 2.91 0.13 0.27 par:pas; +dosée doser VER f s 0.60 2.91 0.01 0.27 par:pas; +dosées doser VER f p 0.60 2.91 0.00 0.27 par:pas; +dosés doser VER m p 0.60 2.91 0.03 0.34 par:pas; +dot dot NOM f s 4.73 4.59 4.66 4.32 +dota doter VER 4.08 8.99 0.00 0.14 ind:pas:3s; +dotaient doter VER 4.08 8.99 0.00 0.07 ind:imp:3p; +dotait doter VER 4.08 8.99 0.00 0.68 ind:imp:3s; +dotant doter VER 4.08 8.99 0.01 0.20 par:pre; +dotation dotation NOM f s 0.12 0.41 0.12 0.41 +dote doter VER 4.08 8.99 0.23 0.20 ind:pre:1s;ind:pre:3s; +doter doter VER 4.08 8.99 0.34 0.81 inf; +dots dot NOM f p 4.73 4.59 0.07 0.27 +doté doter VER m s 4.08 8.99 1.82 2.97 par:pas; +dotée doter VER f s 4.08 8.99 0.99 2.09 par:pas; +dotées doter VER f p 4.08 8.99 0.08 0.81 par:pas; +dotés doter VER m p 4.08 8.99 0.61 1.01 par:pas; +douaire douaire NOM m s 0.01 0.07 0.01 0.07 +douairière douairier NOM f s 0.05 1.62 0.05 1.28 +douairières douairier NOM f p 0.05 1.62 0.00 0.34 +douait douer VER 20.29 13.18 0.00 0.47 ind:imp:3s; +douane douane NOM f s 6.12 9.46 4.33 8.51 +douanes douane NOM f p 6.12 9.46 1.79 0.95 +douanier douanier NOM m s 2.00 7.57 0.87 4.53 +douaniers douanier NOM m p 2.00 7.57 1.14 3.04 +douanière douanier ADJ f s 0.63 1.55 0.01 0.07 +douanières douanier ADJ f p 0.63 1.55 0.04 0.41 +douar douar NOM m s 0.00 0.61 0.00 0.47 +douars douar NOM m p 0.00 0.61 0.00 0.14 +doubla doubler VER 15.29 22.84 0.20 1.28 ind:pas:3s; +doublage doublage NOM m s 0.43 0.34 0.42 0.34 +doublages doublage NOM m p 0.43 0.34 0.01 0.00 +doublai doubler VER 15.29 22.84 0.00 0.14 ind:pas:1s; +doublaient doubler VER 15.29 22.84 0.01 1.01 ind:imp:3p; +doublais doubler VER 15.29 22.84 0.03 0.14 ind:imp:1s; +doublait doubler VER 15.29 22.84 0.08 2.16 ind:imp:3s; +doublant doubler VER 15.29 22.84 0.06 1.01 par:pre; +doublard doublard NOM m s 0.02 0.14 0.01 0.14 +doublards doublard NOM m p 0.02 0.14 0.01 0.00 +double_cliquer double_cliquer VER 0.09 0.00 0.01 0.00 inf; +double_cliquer double_cliquer VER m s 0.09 0.00 0.07 0.00 par:pas; +double_croche double_croche NOM f s 0.01 0.00 0.01 0.00 +double_décimètre double_décimètre NOM m s 0.00 0.07 0.00 0.07 +double_fond double_fond NOM m s 0.01 0.00 0.01 0.00 +double_six double_six NOM m s 0.14 0.20 0.14 0.20 +double double ADJ s 30.46 58.99 28.68 52.84 +doubleau doubleau NOM m s 0.00 0.20 0.00 0.14 +doubleaux doubleau NOM m p 0.00 0.20 0.00 0.07 +doublement doublement ADV 1.36 4.26 1.36 4.26 +doublent doubler VER 15.29 22.84 0.19 0.68 ind:pre:3p; +doubler doubler VER 15.29 22.84 4.65 4.39 inf; +doublera doubler VER 15.29 22.84 0.11 0.07 ind:fut:3s; +doublerai doubler VER 15.29 22.84 0.12 0.07 ind:fut:1s; +doubleraient doubler VER 15.29 22.84 0.01 0.00 cnd:pre:3p; +doublerait doubler VER 15.29 22.84 0.10 0.07 cnd:pre:3s; +doublerez doubler VER 15.29 22.84 0.01 0.07 ind:fut:2p; +doublerons doubler VER 15.29 22.84 0.03 0.00 ind:fut:1p; +doubles double ADJ p 30.46 58.99 1.78 6.15 +doublet doublet NOM m s 0.00 0.20 0.00 0.14 +doublets doublet NOM m p 0.00 0.20 0.00 0.07 +doublette doublette NOM f s 0.14 0.07 0.14 0.07 +doubleur doubleur NOM m s 0.07 0.00 0.07 0.00 +doubleuse doubleur NOM f s 0.07 0.00 0.01 0.00 +doubleuses doubleuse NOM f p 0.01 0.00 0.01 0.00 +doublez doubler VER 15.29 22.84 1.02 0.27 imp:pre:2p;ind:pre:2p; +doubliez doubler VER 15.29 22.84 0.02 0.00 ind:imp:2p; +doublions doubler VER 15.29 22.84 0.00 0.07 ind:imp:1p; +doublon doublon NOM m s 0.22 0.41 0.06 0.27 +doublonner doublonner VER 0.01 0.00 0.01 0.00 inf; +doublons doublon NOM m p 0.22 0.41 0.16 0.14 +doublât doubler VER 15.29 22.84 0.00 0.07 sub:imp:3s; +doublèrent doubler VER 15.29 22.84 0.00 0.14 ind:pas:3p; +doublé doubler VER m s 15.29 22.84 3.13 4.12 par:pas; +doublée doubler VER f s 15.29 22.84 0.50 2.16 par:pas; +doublées doubler VER f p 15.29 22.84 0.04 0.54 par:pas; +doublure doublure NOM f s 3.84 4.53 3.70 3.38 +doublures doublure NOM f p 3.84 4.53 0.14 1.15 +doublés doubler VER m p 15.29 22.84 0.61 0.95 par:pas; +douce_amère douce_amère ADJ f s 0.06 0.27 0.06 0.27 +douce doux ADJ f s 89.14 145.07 44.70 73.58 +doucement doucement ADV 103.81 128.38 103.81 128.38 +douceâtre douceâtre ADJ s 0.15 2.70 0.15 2.30 +douceâtres douceâtre ADJ p 0.15 2.70 0.00 0.41 +doucereuse doucereux ADJ f s 0.28 2.97 0.04 0.74 +doucereusement doucereusement ADV 0.00 0.20 0.00 0.20 +doucereuses doucereux ADJ f p 0.28 2.97 0.00 0.47 +doucereux doucereux ADJ m 0.28 2.97 0.25 1.76 +douce_amère douce_amère NOM f p 0.00 0.14 0.00 0.07 +douces doux ADJ f p 89.14 145.07 6.77 12.77 +doucet doucet ADJ m s 0.02 1.01 0.02 0.88 +doucette doucette NOM f s 0.01 0.14 0.01 0.14 +doucettement doucettement ADV 0.00 0.41 0.00 0.41 +douceur douceur NOM f s 16.87 70.00 16.02 66.08 +douceurs douceur NOM f p 16.87 70.00 0.85 3.92 +doucha doucher VER 6.75 2.57 0.14 0.27 ind:pas:3s; +douchais doucher VER 6.75 2.57 0.09 0.07 ind:imp:1s;ind:imp:2s; +douchait doucher VER 6.75 2.57 0.03 0.61 ind:imp:3s; +douchant doucher VER 6.75 2.57 0.01 0.00 par:pre; +douche douche NOM f s 36.06 23.85 32.56 20.27 +douchent doucher VER 6.75 2.57 0.14 0.07 ind:pre:3p; +doucher doucher VER 6.75 2.57 3.29 0.47 inf; +douchera doucher VER 6.75 2.57 0.01 0.00 ind:fut:3s; +doucherai doucher VER 6.75 2.57 0.00 0.07 ind:fut:1s; +doucheras doucher VER 6.75 2.57 0.02 0.00 ind:fut:2s; +douches douche NOM f p 36.06 23.85 3.49 3.58 +doucheur doucheur NOM m s 0.00 0.07 0.00 0.07 +douchez doucher VER 6.75 2.57 0.05 0.00 imp:pre:2p;ind:pre:2p; +douchiez doucher VER 6.75 2.57 0.01 0.00 ind:imp:2p; +douchons doucher VER 6.75 2.57 0.02 0.07 imp:pre:1p;ind:pre:1p; +douché doucher VER m s 6.75 2.57 0.99 0.34 par:pas; +douchée doucher VER f s 6.75 2.57 0.19 0.07 par:pas; +douchés doucher VER m p 6.75 2.57 0.27 0.14 par:pas; +doucie doucir VER f s 0.02 0.00 0.02 0.00 par:pas; +doucin doucin NOM m s 0.00 0.14 0.00 0.07 +doucine doucine NOM f s 0.01 0.00 0.01 0.00 +doucins doucin NOM m p 0.00 0.14 0.00 0.07 +doudou doudou NOM f s 0.58 6.76 0.58 6.76 +doudoune doudoune NOM f s 0.92 0.54 0.46 0.14 +doudounes doudoune NOM f p 0.92 0.54 0.46 0.41 +douelle douelle NOM f s 0.00 0.61 0.00 0.14 +douelles douelle NOM f p 0.00 0.61 0.00 0.47 +douer douer VER 20.29 13.18 0.00 0.20 inf; +douglas douglas NOM m 0.09 0.00 0.09 0.00 +douillait douiller VER 0.22 1.28 0.00 0.14 ind:imp:3s; +douille douille NOM f s 3.67 3.51 1.79 0.81 +douillent douiller VER 0.22 1.28 0.00 0.07 ind:pre:3p; +douiller douiller VER 0.22 1.28 0.17 0.54 inf; +douillera douiller VER 0.22 1.28 0.00 0.07 ind:fut:3s; +douilles douille NOM f p 3.67 3.51 1.88 2.70 +douillet douillet ADJ m s 2.63 6.96 1.97 4.19 +douillets douillet ADJ m p 2.63 6.96 0.04 0.81 +douillette douillet ADJ f s 2.63 6.96 0.58 1.62 +douillettement douillettement ADV 0.03 0.54 0.03 0.54 +douillettes douillet ADJ f p 2.63 6.96 0.04 0.34 +douillons douillon NOM m p 0.00 0.54 0.00 0.54 +douillé douiller VER m s 0.22 1.28 0.00 0.07 par:pas; +douillée douiller VER f s 0.22 1.28 0.00 0.20 par:pas; +douleur douleur NOM f s 75.89 91.89 65.78 77.84 +douleurs douleur NOM f p 75.89 91.89 10.10 14.05 +douloureuse douloureux ADJ f s 17.16 37.50 4.05 13.58 +douloureusement douloureusement ADV 1.00 5.54 1.00 5.54 +douloureuses douloureux ADJ f p 17.16 37.50 1.23 3.24 +douloureux douloureux ADJ m 17.16 37.50 11.88 20.68 +douma douma NOM f s 0.34 0.14 0.34 0.14 +doura doura NOM m s 0.00 0.07 0.00 0.07 +douro douro NOM m s 0.00 0.54 0.00 0.20 +douros douro NOM m p 0.00 0.54 0.00 0.34 +douta douter VER 77.77 88.11 0.03 1.15 ind:pas:3s; +doutai douter VER 77.77 88.11 0.14 0.54 ind:pas:1s; +doutaient douter VER 77.77 88.11 0.11 2.16 ind:imp:3p; +doutais douter VER 77.77 88.11 11.76 9.32 ind:imp:1s;ind:imp:2s; +doutait douter VER 77.77 88.11 0.96 13.99 ind:imp:3s; +doutance doutance NOM f s 0.00 0.27 0.00 0.14 +doutances doutance NOM f p 0.00 0.27 0.00 0.14 +doutant douter VER 77.77 88.11 0.15 2.03 par:pre; +doute doute NOM m s 108.18 350.07 97.51 341.35 +doutent douter VER 77.77 88.11 1.04 1.82 ind:pre:3p;sub:pre:3p; +douter douter VER 77.77 88.11 12.64 23.92 inf;; +doutera douter VER 77.77 88.11 0.43 0.34 ind:fut:3s; +douterai douter VER 77.77 88.11 0.11 0.14 ind:fut:1s; +douterais douter VER 77.77 88.11 0.30 0.27 cnd:pre:1s;cnd:pre:2s; +douterait douter VER 77.77 88.11 0.20 0.47 cnd:pre:3s; +douteras douter VER 77.77 88.11 0.01 0.07 ind:fut:2s; +douterez douter VER 77.77 88.11 0.01 0.07 ind:fut:2p; +douteriez douter VER 77.77 88.11 0.08 0.07 cnd:pre:2p; +douteront douter VER 77.77 88.11 0.05 0.07 ind:fut:3p; +doutes doute NOM m p 108.18 350.07 10.66 8.72 +douteurs douteur ADJ m p 0.00 0.14 0.00 0.14 +douteuse douteux ADJ f s 4.10 15.95 1.17 3.92 +douteusement douteusement ADV 0.00 0.07 0.00 0.07 +douteuses douteux ADJ f p 4.10 15.95 0.69 1.82 +douteux douteux ADJ m 4.10 15.95 2.23 10.20 +doutez douter VER 77.77 88.11 3.17 1.82 imp:pre:2p;ind:pre:2p; +douçâtre douçâtre ADJ s 0.00 0.07 0.00 0.07 +doutiez douter VER 77.77 88.11 0.66 0.20 ind:imp:2p; +doutions douter VER 77.77 88.11 0.04 1.15 ind:imp:1p; +doutons douter VER 77.77 88.11 0.52 0.74 imp:pre:1p;ind:pre:1p; +doutât douter VER 77.77 88.11 0.00 0.47 sub:imp:3s; +doutèrent douter VER 77.77 88.11 0.00 0.14 ind:pas:3p; +douté douter VER m s 77.77 88.11 3.77 4.80 par:pas; +doutée douter VER f s 77.77 88.11 0.34 0.81 par:pas; +doutés douter VER m p 77.77 88.11 0.02 0.20 par:pas; +doué douer VER m s 20.29 13.18 11.31 7.43 par:pas; +douée douer VER f s 20.29 13.18 8.03 3.04 par:pas; +douées doué ADJ f p 12.73 7.57 0.47 0.41 +doués doué ADJ m p 12.73 7.57 1.03 1.69 +douve douve NOM f s 0.53 1.42 0.06 0.34 +douves douve NOM f p 0.53 1.42 0.47 1.08 +doux_amer doux_amer ADJ m s 0.04 0.00 0.04 0.00 +doux doux ADJ m 89.14 145.07 37.66 58.72 +douzaine douzaine NOM f s 12.89 18.58 8.18 13.18 +douzaines douzaine NOM f p 12.89 18.58 4.72 5.41 +douze douze ADJ:num 21.81 48.18 21.81 48.18 +douzième douzième NOM s 0.35 0.95 0.35 0.88 +douzièmes douzième NOM p 0.35 0.95 0.00 0.07 +down down ADJ m s 0.00 0.54 0.00 0.54 +downing_street downing_street NOM f s 0.00 0.34 0.00 0.34 +doyen doyen NOM m s 3.21 6.76 3.12 5.88 +doyenne doyenne NOM f s 0.11 0.00 0.11 0.00 +doyenné doyenné NOM m s 0.00 0.07 0.00 0.07 +doyens doyen NOM m p 3.21 6.76 0.09 0.07 +drôle drôle ADJ s 144.48 95.07 138.46 85.47 +drôlement drôlement ADV 10.79 24.86 10.79 24.86 +drôlerie drôlerie NOM f s 0.14 3.72 0.14 3.45 +drôleries drôlerie NOM f p 0.14 3.72 0.01 0.27 +drôles drôle ADJ p 144.48 95.07 6.02 9.59 +drôlesse drôlesse NOM f s 0.21 0.20 0.21 0.07 +drôlesses drôlesse NOM f p 0.21 0.20 0.00 0.14 +drôlet drôlet ADJ m s 0.01 0.41 0.01 0.07 +drôlette drôlet ADJ f s 0.01 0.41 0.00 0.34 +drache dracher VER 0.01 0.00 0.01 0.00 ind:pre:3s; +drachme drachme NOM f s 1.30 2.57 0.02 0.54 +drachmes drachme NOM f p 1.30 2.57 1.28 2.03 +draconien draconien ADJ m s 0.49 0.54 0.14 0.07 +draconienne draconien ADJ f s 0.49 0.54 0.02 0.14 +draconiennes draconien ADJ f p 0.49 0.54 0.28 0.20 +draconiens draconien ADJ m p 0.49 0.54 0.04 0.14 +drag drag NOM m s 0.73 0.34 0.60 0.14 +dragage dragage NOM m s 0.15 0.00 0.15 0.00 +drageoir drageoir NOM m s 0.00 0.47 0.00 0.34 +drageoirs drageoir NOM m p 0.00 0.47 0.00 0.14 +dragon dragon NOM m s 13.98 12.23 10.53 7.97 +dragonnades dragonnade NOM f p 0.00 0.14 0.00 0.14 +dragonne dragon NOM f s 13.98 12.23 0.06 0.27 +dragonnier dragonnier NOM m s 0.10 0.00 0.10 0.00 +dragons dragon NOM m p 13.98 12.23 3.39 3.99 +drags drag NOM m p 0.73 0.34 0.14 0.20 +dragster dragster NOM m s 0.04 0.00 0.04 0.00 +dragua draguer VER 21.00 6.22 0.00 0.14 ind:pas:3s; +draguaient draguer VER 21.00 6.22 0.10 0.14 ind:imp:3p; +draguais draguer VER 21.00 6.22 0.57 0.07 ind:imp:1s;ind:imp:2s; +draguait draguer VER 21.00 6.22 1.08 0.54 ind:imp:3s; +draguant draguer VER 21.00 6.22 0.06 0.20 par:pre; +drague draguer VER 21.00 6.22 3.57 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dragée dragée NOM f s 1.34 3.04 0.21 1.01 +draguent draguer VER 21.00 6.22 0.14 0.47 ind:pre:3p; +draguer draguer VER 21.00 6.22 9.84 2.43 inf; +draguera draguer VER 21.00 6.22 0.04 0.00 ind:fut:3s; +draguerai draguer VER 21.00 6.22 0.04 0.07 ind:fut:1s; +draguerais draguer VER 21.00 6.22 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +draguerait draguer VER 21.00 6.22 0.02 0.00 cnd:pre:3s; +dragues draguer VER 21.00 6.22 1.70 0.00 ind:pre:2s; +dragées dragée NOM f p 1.34 3.04 1.14 2.03 +dragueur dragueur NOM m s 0.70 1.49 0.59 0.47 +dragueurs dragueur NOM m p 0.70 1.49 0.06 0.88 +dragueuse dragueur NOM f s 0.70 1.49 0.05 0.14 +draguez draguer VER 21.00 6.22 0.56 0.00 imp:pre:2p;ind:pre:2p; +draguiez draguer VER 21.00 6.22 0.01 0.00 sub:pre:2p; +draguons draguer VER 21.00 6.22 0.03 0.07 imp:pre:1p;ind:pre:1p; +dragué draguer VER m s 21.00 6.22 1.51 0.41 par:pas; +draguée draguer VER f s 21.00 6.22 1.39 0.61 par:pas; +draguées draguer VER f p 21.00 6.22 0.17 0.00 par:pas; +dragués draguer VER m p 21.00 6.22 0.02 0.07 par:pas; +drailles draille NOM f p 0.00 0.41 0.00 0.41 +drain drain NOM m s 1.11 0.47 0.93 0.20 +draina drainer VER 0.86 1.22 0.00 0.07 ind:pas:3s; +drainage drainage NOM m s 0.41 0.61 0.41 0.54 +drainages drainage NOM m p 0.41 0.61 0.00 0.07 +drainaient drainer VER 0.86 1.22 0.00 0.14 ind:imp:3p; +drainait drainer VER 0.86 1.22 0.14 0.14 ind:imp:3s; +drainant drainer VER 0.86 1.22 0.00 0.27 par:pre; +draine drainer VER 0.86 1.22 0.14 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +drainent drainer VER 0.86 1.22 0.04 0.00 ind:pre:3p; +drainer drainer VER 0.86 1.22 0.42 0.14 inf; +drainera drainer VER 0.86 1.22 0.02 0.00 ind:fut:3s; +drainons drainer VER 0.86 1.22 0.01 0.00 ind:pre:1p; +drains drain NOM m p 1.11 0.47 0.18 0.27 +drainé drainer VER m s 0.86 1.22 0.09 0.20 par:pas; +drainées drainer VER f p 0.86 1.22 0.00 0.07 par:pas; +drainés drainer VER m p 0.86 1.22 0.01 0.07 par:pas; +draisienne draisienne NOM f s 0.00 0.07 0.00 0.07 +draisine draisine NOM f s 0.02 0.07 0.02 0.07 +drakkar drakkar NOM m s 0.25 0.27 0.25 0.00 +drakkars drakkar NOM m p 0.25 0.27 0.00 0.27 +dramatique dramatique ADJ s 8.59 11.35 7.29 9.39 +dramatiquement dramatiquement ADV 0.27 0.41 0.27 0.41 +dramatiques dramatique ADJ p 8.59 11.35 1.30 1.96 +dramatisait dramatiser VER 2.42 1.76 0.00 0.20 ind:imp:3s; +dramatisant dramatiser VER 2.42 1.76 0.00 0.07 par:pre; +dramatisation dramatisation NOM f s 0.17 0.14 0.17 0.14 +dramatise dramatiser VER 2.42 1.76 0.72 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dramatisent dramatiser VER 2.42 1.76 0.01 0.00 ind:pre:3p; +dramatiser dramatiser VER 2.42 1.76 0.72 0.68 inf; +dramatises dramatiser VER 2.42 1.76 0.59 0.14 ind:pre:2s; +dramatisez dramatiser VER 2.42 1.76 0.10 0.00 imp:pre:2p;ind:pre:2p; +dramatisons dramatiser VER 2.42 1.76 0.20 0.07 imp:pre:1p;ind:pre:1p; +dramatisé dramatiser VER m s 2.42 1.76 0.05 0.07 par:pas; +dramatisée dramatiser VER f s 2.42 1.76 0.01 0.07 par:pas; +dramatisés dramatiser VER m p 2.42 1.76 0.01 0.07 par:pas; +dramaturge dramaturge NOM s 0.58 0.88 0.53 0.74 +dramaturges dramaturge NOM p 0.58 0.88 0.05 0.14 +dramaturgie dramaturgie NOM f s 0.26 0.07 0.26 0.07 +drame drame NOM m s 14.87 39.93 13.48 32.50 +drames drame NOM m p 14.87 39.93 1.39 7.43 +drap drap NOM m s 19.22 74.12 3.69 33.18 +drapa draper VER 0.84 7.23 0.00 0.47 ind:pas:3s; +drapai draper VER 0.84 7.23 0.00 0.07 ind:pas:1s; +drapaient draper VER 0.84 7.23 0.14 0.07 ind:imp:3p; +drapait draper VER 0.84 7.23 0.00 0.68 ind:imp:3s; +drapant draper VER 0.84 7.23 0.00 0.14 par:pre; +drape draper VER 0.84 7.23 0.14 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +drapeau drapeau NOM m s 19.69 37.64 14.66 23.31 +drapeaux drapeau NOM m p 19.69 37.64 5.03 14.32 +drapelets drapelet NOM m p 0.00 0.07 0.00 0.07 +drapent draper VER 0.84 7.23 0.11 0.14 ind:pre:3p; +draper draper VER 0.84 7.23 0.03 0.27 inf; +draperaient draper VER 0.84 7.23 0.00 0.07 cnd:pre:3p; +draperez draper VER 0.84 7.23 0.14 0.00 ind:fut:2p; +draperie draperie NOM f s 0.02 3.31 0.00 1.42 +draperies draperie NOM f p 0.02 3.31 0.02 1.89 +drapier drapier NOM m s 0.00 0.41 0.00 0.27 +drapiers drapier ADJ m p 0.00 0.47 0.00 0.34 +draps drap NOM m p 19.22 74.12 15.54 40.95 +drapèrent draper VER 0.84 7.23 0.00 0.07 ind:pas:3p; +drapé draper VER m s 0.84 7.23 0.16 1.22 par:pas; +drapée draper VER f s 0.84 7.23 0.13 2.16 par:pas; +drapées draper VER f p 0.84 7.23 0.00 1.01 par:pas; +drapés drapé ADJ m p 0.17 2.30 0.14 0.81 +drastique drastique ADJ s 0.50 0.07 0.43 0.07 +drastiquement drastiquement ADV 0.02 0.00 0.02 0.00 +drastiques drastique ADJ f p 0.50 0.07 0.07 0.00 +drave drave NOM f s 0.00 0.07 0.00 0.07 +draveurs draveur NOM m p 0.00 0.07 0.00 0.07 +dreadlocks dreadlocks NOM f p 0.11 0.00 0.11 0.00 +dream_team dream_team NOM f s 0.07 0.00 0.07 0.00 +drelin drelin NOM m s 0.43 0.00 0.43 0.00 +drepou drepou NOM f s 0.00 0.07 0.00 0.07 +dressa dresser VER 17.88 99.86 0.18 9.73 ind:pas:3s; +dressage dressage NOM m s 0.58 1.82 0.58 1.76 +dressages dressage NOM m p 0.58 1.82 0.00 0.07 +dressai dresser VER 17.88 99.86 0.10 0.61 ind:pas:1s; +dressaient dresser VER 17.88 99.86 0.32 5.47 ind:imp:3p; +dressais dresser VER 17.88 99.86 0.08 0.47 ind:imp:1s;ind:imp:2s; +dressait dresser VER 17.88 99.86 0.19 13.85 ind:imp:3s; +dressant dresser VER 17.88 99.86 0.48 3.65 par:pre; +dresse dresser VER 17.88 99.86 4.76 13.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dressement dressement NOM m s 0.00 0.07 0.00 0.07 +dressent dresser VER 17.88 99.86 0.77 4.93 ind:pre:3p; +dresser dresser VER 17.88 99.86 4.65 14.93 inf; +dressera dresser VER 17.88 99.86 0.37 0.54 ind:fut:3s; +dresserai dresser VER 17.88 99.86 0.15 0.07 ind:fut:1s; +dresseraient dresser VER 17.88 99.86 0.01 0.20 cnd:pre:3p; +dresserait dresser VER 17.88 99.86 0.02 0.34 cnd:pre:3s; +dresseras dresser VER 17.88 99.86 0.01 0.00 ind:fut:2s; +dresserons dresser VER 17.88 99.86 0.26 0.07 ind:fut:1p; +dresseront dresser VER 17.88 99.86 0.16 0.14 ind:fut:3p; +dresses dresser VER 17.88 99.86 0.23 0.27 ind:pre:2s; +dresseur dresseur NOM m s 0.86 0.68 0.50 0.34 +dresseurs dresseur NOM m p 0.86 0.68 0.32 0.27 +dresseuse dresseur NOM f s 0.86 0.68 0.05 0.07 +dressez dresser VER 17.88 99.86 0.70 0.54 imp:pre:2p;ind:pre:2p; +dressing_room dressing_room NOM m s 0.01 0.00 0.01 0.00 +dressing dressing NOM m s 0.28 0.00 0.28 0.00 +dressions dresser VER 17.88 99.86 0.00 0.20 ind:imp:1p; +dressoir dressoir NOM m s 0.01 0.47 0.01 0.34 +dressoirs dressoir NOM m p 0.01 0.47 0.00 0.14 +dressons dresser VER 17.88 99.86 0.19 0.27 imp:pre:1p;ind:pre:1p; +dressât dresser VER 17.88 99.86 0.00 0.14 sub:imp:3s; +dressèrent dresser VER 17.88 99.86 0.04 1.15 ind:pas:3p; +dressé dresser VER m s 17.88 99.86 3.36 13.24 par:pas; +dressée dresser VER f s 17.88 99.86 0.31 7.23 par:pas; +dressées dressé ADJ f p 1.79 11.82 0.44 2.36 +dressés dresser VER m p 17.88 99.86 0.29 4.93 par:pas; +dreyfusard dreyfusard NOM m s 0.27 0.20 0.14 0.07 +dreyfusards dreyfusard NOM m p 0.27 0.20 0.14 0.14 +dreyfusisme dreyfusisme NOM m s 0.00 0.07 0.00 0.07 +dribbla dribbler VER 0.81 0.34 0.00 0.07 ind:pas:3s; +dribblais dribbler VER 0.81 0.34 0.10 0.07 ind:imp:1s; +dribblait dribbler VER 0.81 0.34 0.10 0.07 ind:imp:3s; +dribble dribble NOM m s 0.69 0.07 0.29 0.07 +dribbler dribbler VER 0.81 0.34 0.20 0.14 inf; +dribbles dribble NOM m p 0.69 0.07 0.40 0.00 +dribbleur dribbleur NOM m s 0.00 0.14 0.00 0.14 +dribblez dribbler VER 0.81 0.34 0.01 0.00 imp:pre:2p; +dribblé dribbler VER m s 0.81 0.34 0.29 0.00 par:pas; +drible dribler VER 0.25 0.07 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dribler dribler VER 0.25 0.07 0.10 0.00 inf; +drift drift NOM m s 0.04 0.07 0.04 0.07 +drifter drifter NOM m s 0.05 37.50 0.02 37.50 +drifters drifter NOM m p 0.05 37.50 0.03 0.00 +drill drill NOM m s 0.01 0.07 0.01 0.07 +drille drille NOM m s 0.11 1.22 0.08 0.61 +drilles drille NOM m p 0.11 1.22 0.04 0.61 +dring dring ONO 0.32 0.61 0.32 0.61 +drink drink NOM m s 0.92 0.88 0.89 0.41 +drinks drink NOM m p 0.92 0.88 0.03 0.47 +drisse drisse NOM f s 0.16 0.81 0.06 0.47 +drisses drisse NOM f p 0.16 0.81 0.11 0.34 +drivait driver VER 0.24 0.61 0.00 0.14 ind:imp:3s; +drivant driver VER 0.24 0.61 0.00 0.07 par:pre; +drive_in drive_in NOM m s 0.94 0.00 0.94 0.00 +drive drive NOM m s 1.45 0.41 1.41 0.41 +driver driver NOM m s 0.31 0.34 0.25 0.27 +drivers driver NOM m p 0.31 0.34 0.06 0.07 +drives drive NOM m p 1.45 0.41 0.04 0.00 +drivé driver VER m s 0.24 0.61 0.00 0.07 par:pas; +drivée driver VER f s 0.24 0.61 0.01 0.14 par:pas; +drogman drogman NOM m s 0.00 0.27 0.00 0.20 +drogmans drogman NOM m p 0.00 0.27 0.00 0.07 +droguaient droguer VER 13.15 3.85 0.19 0.07 ind:imp:3p; +droguais droguer VER 13.15 3.85 0.29 0.00 ind:imp:1s;ind:imp:2s; +droguait droguer VER 13.15 3.85 0.94 0.68 ind:imp:3s; +droguant droguer VER 13.15 3.85 0.06 0.00 par:pre; +drogue drogue NOM f s 58.76 13.72 47.20 10.54 +droguent droguer VER 13.15 3.85 0.50 0.20 ind:pre:3p; +droguer droguer VER 13.15 3.85 2.44 0.74 inf; +droguerie droguerie NOM f s 0.31 0.54 0.28 0.47 +drogueries droguerie NOM f p 0.31 0.54 0.03 0.07 +drogues drogue NOM f p 58.76 13.72 11.56 3.18 +droguet droguet NOM m s 0.00 1.08 0.00 0.95 +droguets droguet NOM m p 0.00 1.08 0.00 0.14 +droguez droguer VER 13.15 3.85 0.49 0.14 imp:pre:2p;ind:pre:2p; +droguiez droguer VER 13.15 3.85 0.05 0.00 ind:imp:2p; +droguiste droguiste NOM s 0.17 0.61 0.16 0.41 +droguistes droguiste NOM p 0.17 0.61 0.02 0.20 +drogué drogué NOM m s 6.35 2.43 2.63 0.68 +droguée droguer VER f s 13.15 3.85 1.47 0.14 par:pas; +droguées drogué NOM f p 6.35 2.43 0.25 0.00 +drogués drogué NOM m p 6.35 2.43 2.20 1.35 +droicos droico NOM m p 0.00 0.27 0.00 0.27 +droit_fil droit_fil NOM m s 0.00 0.07 0.00 0.07 +droit droit NOM m s 207.62 163.72 175.60 138.72 +droite droite NOM f s 58.70 117.97 58.44 116.69 +droitement droitement ADV 0.01 0.07 0.01 0.07 +droites droit ADJ f p 77.74 163.38 0.83 4.80 +droitier droitier ADJ m s 0.76 0.07 0.69 0.00 +droitiers droitier NOM m p 0.35 0.20 0.14 0.14 +droitière droitier ADJ f s 0.76 0.07 0.06 0.07 +droits droit NOM m p 207.62 163.72 32.01 25.00 +droiture droiture NOM f s 1.33 1.76 1.33 1.76 +drolatique drolatique ADJ s 0.54 0.47 0.54 0.34 +drolatiques drolatique ADJ m p 0.54 0.47 0.00 0.14 +dromadaire dromadaire NOM m s 0.44 1.22 0.44 0.68 +dromadaires dromadaire NOM m p 0.44 1.22 0.00 0.54 +drome drome NOM f s 0.02 0.07 0.01 0.07 +dromes drome NOM f p 0.02 0.07 0.01 0.00 +drone_espion drone_espion NOM m s 0.02 0.00 0.02 0.00 +drone drone NOM m s 1.79 0.00 0.88 0.00 +drones drone NOM m p 1.79 0.00 0.91 0.00 +dronte dronte NOM m s 0.01 0.07 0.01 0.07 +drop drop NOM m s 1.11 0.00 1.11 0.00 +drope droper VER 0.00 0.20 0.00 0.07 ind:pre:3s; +dropent droper VER 0.00 0.20 0.00 0.07 ind:pre:3p; +droppage droppage NOM m s 0.04 0.00 0.04 0.00 +droppant dropper VER 0.00 0.27 0.00 0.07 par:pre; +droppe dropper VER 0.00 0.27 0.00 0.20 ind:pre:3s; +dropé droper VER m s 0.00 0.20 0.00 0.07 par:pas; +drosophile drosophile NOM f s 0.10 0.00 0.06 0.00 +drosophiles drosophile NOM f p 0.10 0.00 0.04 0.00 +dross dross NOM m 0.00 0.07 0.00 0.07 +drossait drosser VER 0.01 0.41 0.00 0.07 ind:imp:3s; +drossant drosser VER 0.01 0.41 0.00 0.07 par:pre; +drossart drossart NOM m s 0.00 0.07 0.00 0.07 +drosser drosser VER 0.01 0.41 0.00 0.07 inf; +drossé drosser VER m s 0.01 0.41 0.01 0.07 par:pas; +drossée drosser VER f s 0.01 0.41 0.00 0.07 par:pas; +drossés drosser VER m p 0.01 0.41 0.00 0.07 par:pas; +droséra droséra NOM m s 0.01 0.00 0.01 0.00 +drège drège NOM f s 0.01 0.00 0.01 0.00 +dru dru ADJ m s 0.62 9.53 0.13 2.84 +drue dru ADJ f s 0.62 9.53 0.15 3.58 +drues dru ADJ f p 0.62 9.53 0.00 0.68 +drugstore drugstore NOM m s 1.71 1.89 1.58 1.82 +drugstores drugstore NOM m p 1.71 1.89 0.14 0.07 +druide druide NOM m s 1.18 4.86 0.89 2.84 +druides druide NOM m p 1.18 4.86 0.28 2.03 +druidesse druidesse NOM f s 0.02 0.20 0.02 0.14 +druidesses druidesse NOM f p 0.02 0.20 0.00 0.07 +druidique druidique ADJ s 0.19 0.74 0.19 0.54 +druidiques druidique ADJ m p 0.19 0.74 0.00 0.20 +druidisme druidisme NOM m s 0.00 0.54 0.00 0.54 +drumlin drumlin NOM m s 0.11 0.00 0.11 0.00 +drummer drummer NOM m s 0.17 0.07 0.17 0.07 +drums drums NOM m p 0.04 0.07 0.04 0.07 +drépanocytose drépanocytose NOM f s 0.01 0.00 0.01 0.00 +drus dru ADJ m p 0.62 9.53 0.34 2.43 +druze druze ADJ s 0.56 1.28 0.40 0.54 +druzes druze ADJ p 0.56 1.28 0.16 0.74 +dry dry ADJ m s 1.02 1.22 1.02 1.22 +dryade dryade NOM f s 0.16 0.27 0.00 0.07 +dryades dryade NOM f p 0.16 0.27 0.16 0.20 +dèche dèche NOM f s 0.39 1.96 0.38 1.89 +dèches dèche NOM f p 0.39 1.96 0.01 0.07 +dèmes dème NOM m p 0.00 0.14 0.00 0.14 +dès dès PRE 143.72 275.07 143.72 275.07 +dé dé NOM m s 23.36 11.55 5.74 3.65 +du du ART:def m s 4394.70 6882.16 4394.70 6882.16 +dual dual ADJ m s 0.07 0.00 0.07 0.00 +dualisme dualisme NOM m s 0.02 0.34 0.02 0.34 +dualiste dualiste ADJ m s 0.01 0.00 0.01 0.00 +dualité dualité NOM f s 0.33 0.68 0.33 0.68 +déambula déambuler VER 1.84 7.70 0.01 0.27 ind:pas:3s; +déambulai déambuler VER 1.84 7.70 0.02 0.00 ind:pas:1s; +déambulaient déambuler VER 1.84 7.70 0.01 0.68 ind:imp:3p; +déambulais déambuler VER 1.84 7.70 0.20 0.20 ind:imp:1s; +déambulait déambuler VER 1.84 7.70 0.10 1.22 ind:imp:3s; +déambulant déambuler VER 1.84 7.70 0.20 1.15 par:pre; +déambulante déambulant ADJ f s 0.01 0.14 0.00 0.14 +déambulateur déambulateur NOM m s 0.13 0.00 0.13 0.00 +déambulation déambulation NOM f s 0.03 1.42 0.01 0.54 +déambulations déambulation NOM f p 0.03 1.42 0.01 0.88 +déambulatoire déambulatoire ADJ m s 0.00 0.14 0.00 0.07 +déambulatoires déambulatoire ADJ m p 0.00 0.14 0.00 0.07 +déambule déambuler VER 1.84 7.70 0.52 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déambulent déambuler VER 1.84 7.70 0.10 0.47 ind:pre:3p; +déambuler déambuler VER 1.84 7.70 0.29 1.55 inf; +déambulerai déambuler VER 1.84 7.70 0.01 0.00 ind:fut:1s; +déambulez déambuler VER 1.84 7.70 0.04 0.07 imp:pre:2p;ind:pre:2p; +déambulions déambuler VER 1.84 7.70 0.14 0.14 ind:imp:1p; +déambulons déambuler VER 1.84 7.70 0.00 0.20 ind:pre:1p; +déambulèrent déambuler VER 1.84 7.70 0.00 0.20 ind:pas:3p; +déambulé déambuler VER m s 1.84 7.70 0.22 0.34 par:pas; +débagoulage débagoulage NOM m s 0.00 0.07 0.00 0.07 +débagoule débagouler VER 0.01 0.68 0.00 0.34 ind:pre:1s;ind:pre:3s;sub:pre:3s; +débagouler débagouler VER 0.01 0.68 0.01 0.20 inf; +débagoulerait débagouler VER 0.01 0.68 0.00 0.07 cnd:pre:3s; +débagoules débagouler VER 0.01 0.68 0.00 0.07 ind:pre:2s; +déballa déballer VER 3.59 6.69 0.00 0.68 ind:pas:3s; +déballage déballage NOM m s 0.32 1.76 0.30 1.62 +déballages déballage NOM m p 0.32 1.76 0.01 0.14 +déballai déballer VER 3.59 6.69 0.00 0.20 ind:pas:1s; +déballaient déballer VER 3.59 6.69 0.00 0.34 ind:imp:3p; +déballais déballer VER 3.59 6.69 0.02 0.07 ind:imp:1s;ind:imp:2s; +déballait déballer VER 3.59 6.69 0.02 0.81 ind:imp:3s; +déballant déballer VER 3.59 6.69 0.02 0.14 par:pre; +déballe déballer VER 3.59 6.69 0.67 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déballent déballer VER 3.59 6.69 0.04 0.07 ind:pre:3p; +déballer déballer VER 3.59 6.69 1.63 1.49 inf; +déballera déballer VER 3.59 6.69 0.02 0.00 ind:fut:3s; +déballez déballer VER 3.59 6.69 0.35 0.07 imp:pre:2p;ind:pre:2p; +déballonnage déballonnage NOM m s 0.00 0.07 0.00 0.07 +déballonner déballonner VER 0.01 0.74 0.00 0.41 inf; +déballonnerais déballonner VER 0.01 0.74 0.01 0.00 cnd:pre:2s; +déballonneront déballonner VER 0.01 0.74 0.00 0.07 ind:fut:3p; +déballonné déballonner VER m s 0.01 0.74 0.00 0.27 par:pas; +déballons déballer VER 3.59 6.69 0.04 0.00 imp:pre:1p;ind:pre:1p; +déballèrent déballer VER 3.59 6.69 0.00 0.20 ind:pas:3p; +déballé déballer VER m s 3.59 6.69 0.69 0.95 par:pas; +déballée déballer VER f s 3.59 6.69 0.04 0.14 par:pas; +déballées déballer VER f p 3.59 6.69 0.05 0.07 par:pas; +déballés déballer VER m p 3.59 6.69 0.01 0.07 par:pas; +débanda débander VER 0.81 2.43 0.00 0.07 ind:pas:3s; +débandade débandade NOM f s 0.58 3.51 0.58 3.51 +débandaient débander VER 0.81 2.43 0.01 0.14 ind:imp:3p; +débandais débander VER 0.81 2.43 0.00 0.07 ind:imp:1s; +débandait débander VER 0.81 2.43 0.00 0.07 ind:imp:3s; +débande débander VER 0.81 2.43 0.35 0.27 ind:pre:1s;ind:pre:3s; +débandent débander VER 0.81 2.43 0.03 0.07 ind:pre:3p; +débander débander VER 0.81 2.43 0.28 0.95 inf; +débandera débander VER 0.81 2.43 0.00 0.07 ind:fut:3s; +débanderaient débander VER 0.81 2.43 0.01 0.00 cnd:pre:3p; +débandez débander VER 0.81 2.43 0.00 0.14 ind:pre:2p; +débandèrent débander VER 0.81 2.43 0.00 0.07 ind:pas:3p; +débandé débander VER m s 0.81 2.43 0.13 0.20 par:pas; +débandées débander VER f p 0.81 2.43 0.00 0.07 par:pas; +débandés débander VER m p 0.81 2.43 0.00 0.27 par:pas; +débaptiser débaptiser VER 0.00 0.27 0.00 0.07 inf; +débaptiserais débaptiser VER 0.00 0.27 0.00 0.07 cnd:pre:1s; +débaptisé débaptiser VER m s 0.00 0.27 0.00 0.07 par:pas; +débaptisée débaptiser VER f s 0.00 0.27 0.00 0.07 par:pas; +débarbot débarbot NOM m s 0.00 0.20 0.00 0.14 +débarbots débarbot NOM m p 0.00 0.20 0.00 0.07 +débarbouilla débarbouiller VER 0.81 2.77 0.00 0.14 ind:pas:3s; +débarbouillait débarbouiller VER 0.81 2.77 0.00 0.20 ind:imp:3s; +débarbouillant débarbouiller VER 0.81 2.77 0.00 0.07 par:pre; +débarbouille débarbouiller VER 0.81 2.77 0.28 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarbouiller débarbouiller VER 0.81 2.77 0.37 1.42 inf; +débarbouillette débarbouillette NOM f s 0.02 0.00 0.02 0.00 +débarbouillé débarbouiller VER m s 0.81 2.77 0.04 0.14 par:pas; +débarbouillée débarbouiller VER f s 0.81 2.77 0.13 0.27 par:pas; +débarbouillés débarbouiller VER m p 0.81 2.77 0.00 0.07 par:pas; +débarcadère débarcadère NOM m s 0.43 1.62 0.43 1.55 +débarcadères débarcadère NOM m p 0.43 1.62 0.00 0.07 +débardage débardage NOM m s 0.00 0.20 0.00 0.14 +débardages débardage NOM m p 0.00 0.20 0.00 0.07 +débardaient débarder VER 0.00 0.41 0.00 0.07 ind:imp:3p; +débarder débarder VER 0.00 0.41 0.00 0.14 inf; +débardeur débardeur NOM m s 0.77 1.42 0.69 0.68 +débardeurs débardeur NOM m p 0.77 1.42 0.08 0.74 +débardée débarder VER f s 0.00 0.41 0.00 0.20 par:pas; +débaroule débarouler VER 0.00 0.14 0.00 0.07 ind:pre:3s; +débaroulent débarouler VER 0.00 0.14 0.00 0.07 ind:pre:3p; +débarqua débarquer VER 25.66 34.39 0.46 1.49 ind:pas:3s; +débarquai débarquer VER 25.66 34.39 0.00 0.47 ind:pas:1s; +débarquaient débarquer VER 25.66 34.39 0.15 1.62 ind:imp:3p; +débarquais débarquer VER 25.66 34.39 0.04 0.27 ind:imp:1s;ind:imp:2s; +débarquait débarquer VER 25.66 34.39 0.51 2.97 ind:imp:3s; +débarquant débarquer VER 25.66 34.39 0.39 2.23 par:pre; +débarque débarquer VER 25.66 34.39 6.18 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarquement débarquement NOM m s 2.79 15.00 2.74 14.12 +débarquements débarquement NOM m p 2.79 15.00 0.05 0.88 +débarquent débarquer VER 25.66 34.39 1.84 2.09 ind:pre:3p; +débarquer débarquer VER 25.66 34.39 5.89 7.36 inf; +débarquera débarquer VER 25.66 34.39 0.37 0.27 ind:fut:3s; +débarquerai débarquer VER 25.66 34.39 0.07 0.07 ind:fut:1s; +débarqueraient débarquer VER 25.66 34.39 0.02 0.07 cnd:pre:3p; +débarquerait débarquer VER 25.66 34.39 0.03 0.20 cnd:pre:3s; +débarqueras débarquer VER 25.66 34.39 0.02 0.00 ind:fut:2s; +débarquerez débarquer VER 25.66 34.39 0.17 0.07 ind:fut:2p; +débarquerons débarquer VER 25.66 34.39 0.40 0.07 ind:fut:1p; +débarqueront débarquer VER 25.66 34.39 0.17 0.27 ind:fut:3p; +débarques débarquer VER 25.66 34.39 1.25 0.34 ind:pre:2s; +débarquez débarquer VER 25.66 34.39 0.88 0.27 imp:pre:2p;ind:pre:2p; +débarquiez débarquer VER 25.66 34.39 0.02 0.14 ind:imp:2p; +débarquions débarquer VER 25.66 34.39 0.11 0.27 ind:imp:1p; +débarquâmes débarquer VER 25.66 34.39 0.00 0.41 ind:pas:1p; +débarquons débarquer VER 25.66 34.39 0.16 0.27 imp:pre:1p;ind:pre:1p; +débarquèrent débarquer VER 25.66 34.39 0.03 0.95 ind:pas:3p; +débarqué débarquer VER m s 25.66 34.39 6.04 6.62 par:pas; +débarquée débarqué ADJ f s 0.13 1.15 0.06 0.07 +débarquées débarquer VER f p 25.66 34.39 0.14 0.27 par:pas; +débarqués débarquer VER m p 25.66 34.39 0.27 0.88 par:pas; +débarra débarrer VER 0.01 0.20 0.01 0.00 ind:pas:3s; +débarras débarras NOM m 2.79 6.96 2.79 6.96 +débarrassa débarrasser VER 61.77 48.92 0.01 2.50 ind:pas:3s; +débarrassai débarrasser VER 61.77 48.92 0.00 0.07 ind:pas:1s; +débarrassaient débarrasser VER 61.77 48.92 0.02 0.47 ind:imp:3p; +débarrassais débarrasser VER 61.77 48.92 0.07 0.27 ind:imp:1s;ind:imp:2s; +débarrassait débarrasser VER 61.77 48.92 0.43 1.82 ind:imp:3s; +débarrassant débarrasser VER 61.77 48.92 0.14 1.42 par:pre; +débarrasse débarrasser VER 61.77 48.92 11.42 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débarrassent débarrasser VER 61.77 48.92 0.33 0.54 ind:pre:3p; +débarrasser débarrasser VER 61.77 48.92 32.37 23.58 inf;; +débarrassera débarrasser VER 61.77 48.92 1.17 0.34 ind:fut:3s; +débarrasserai débarrasser VER 61.77 48.92 0.54 0.47 ind:fut:1s; +débarrasserais débarrasser VER 61.77 48.92 0.25 0.20 cnd:pre:1s;cnd:pre:2s; +débarrasserait débarrasser VER 61.77 48.92 0.07 0.27 cnd:pre:3s; +débarrasseras débarrasser VER 61.77 48.92 0.53 0.00 ind:fut:2s; +débarrasserez débarrasser VER 61.77 48.92 0.16 0.07 ind:fut:2p; +débarrasserons débarrasser VER 61.77 48.92 0.08 0.00 ind:fut:1p; +débarrasseront débarrasser VER 61.77 48.92 0.21 0.20 ind:fut:3p; +débarrasses débarrasser VER 61.77 48.92 0.91 0.07 ind:pre:2s;sub:pre:2s; +débarrassez débarrasser VER 61.77 48.92 3.03 0.54 imp:pre:2p;ind:pre:2p; +débarrassiez débarrasser VER 61.77 48.92 0.24 0.00 ind:imp:2p; +débarrassons débarrasser VER 61.77 48.92 0.79 0.00 imp:pre:1p;ind:pre:1p; +débarrassât débarrasser VER 61.77 48.92 0.00 0.07 sub:imp:3s; +débarrassèrent débarrasser VER 61.77 48.92 0.10 0.27 ind:pas:3p; +débarrassé débarrasser VER m s 61.77 48.92 5.64 6.62 par:pas; +débarrassée débarrasser VER f s 61.77 48.92 1.72 2.57 par:pas; +débarrassées débarrasser VER f p 61.77 48.92 0.26 0.34 par:pas; +débarrassés débarrasser VER m p 61.77 48.92 1.30 2.09 par:pas; +débarrer débarrer VER 0.01 0.20 0.00 0.07 inf; +débarrons débarrer VER 0.01 0.20 0.00 0.07 imp:pre:1p; +débat débat NOM m s 10.70 15.81 7.77 9.46 +débats débat NOM m p 10.70 15.81 2.93 6.35 +débattît débattre VER 8.63 26.42 0.00 0.07 sub:imp:3s; +débattaient débattre VER 8.63 26.42 0.02 0.61 ind:imp:3p; +débattais débattre VER 8.63 26.42 0.02 0.88 ind:imp:1s;ind:imp:2s; +débattait débattre VER 8.63 26.42 0.51 6.42 ind:imp:3s; +débattant débattre VER 8.63 26.42 0.08 1.35 par:pre; +débatte débattre VER 8.63 26.42 0.01 0.07 sub:pre:3s; +débattent débattre VER 8.63 26.42 0.24 0.74 ind:pre:3p; +débatteur débatteur NOM m s 0.00 0.07 0.00 0.07 +débattez débattre VER 8.63 26.42 0.22 0.00 imp:pre:2p;ind:pre:2p; +débattiez débattre VER 8.63 26.42 0.01 0.07 ind:imp:2p; +débattions débattre VER 8.63 26.42 0.01 0.20 ind:imp:1p; +débattirent débattre VER 8.63 26.42 0.00 0.14 ind:pas:3p; +débattis débattre VER 8.63 26.42 0.00 0.68 ind:pas:1s; +débattit débattre VER 8.63 26.42 0.01 1.28 ind:pas:3s; +débattons débattre VER 8.63 26.42 0.33 0.27 imp:pre:1p;ind:pre:1p; +débattra débattre VER 8.63 26.42 0.01 0.07 ind:fut:3s; +débattraient débattre VER 8.63 26.42 0.00 0.07 cnd:pre:3p; +débattrais débattre VER 8.63 26.42 0.02 0.07 cnd:pre:1s; +débattrait débattre VER 8.63 26.42 0.02 0.34 cnd:pre:3s; +débattre débattre VER 8.63 26.42 2.64 5.27 inf; +débattrons débattre VER 8.63 26.42 0.17 0.07 ind:fut:1p; +débattu débattre VER m s 8.63 26.42 1.05 1.62 par:pas; +débattue débattre VER f s 8.63 26.42 0.73 0.95 par:pas; +débattues débattre VER f p 8.63 26.42 0.01 0.20 par:pas; +débattus débattre VER m p 8.63 26.42 0.07 0.34 par:pas; +débauchais débaucher VER 0.80 1.69 0.00 0.07 ind:imp:1s; +débauchait débaucher VER 0.80 1.69 0.00 0.07 ind:imp:3s; +débauchant débaucher VER 0.80 1.69 0.00 0.07 par:pre; +débauche débauche NOM f s 2.87 9.39 2.72 7.16 +débaucher débaucher VER 0.80 1.69 0.19 0.61 inf; +débauches débauche NOM f p 2.87 9.39 0.14 2.23 +débaucheur débaucheur NOM m s 0.02 0.00 0.01 0.00 +débaucheurs débaucheur NOM m p 0.02 0.00 0.01 0.00 +débauché débauché NOM m s 1.09 1.35 0.62 0.74 +débauchée débauché NOM f s 1.09 1.35 0.24 0.00 +débauchées débauché NOM f p 1.09 1.35 0.11 0.00 +débauchés débauché NOM m p 1.09 1.35 0.12 0.61 +débecquetait débecqueter VER 0.00 0.07 0.00 0.07 ind:imp:3s; +débectage débectage NOM m s 0.00 0.07 0.00 0.07 +débectait débecter VER 0.46 1.89 0.00 0.20 ind:imp:3s; +débectance débectance NOM f s 0.00 0.20 0.00 0.20 +débectant débecter VER 0.46 1.89 0.04 0.14 par:pre; +débecte débecter VER 0.46 1.89 0.23 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débectent débecter VER 0.46 1.89 0.01 0.14 ind:pre:3p; +débecter débecter VER 0.46 1.89 0.01 0.00 inf; +débecterais débecter VER 0.46 1.89 0.00 0.07 cnd:pre:1s; +débectez débecter VER 0.46 1.89 0.16 0.00 ind:pre:2p; +débecté débecter VER m s 0.46 1.89 0.00 0.14 par:pas; +débectée débecter VER f s 0.46 1.89 0.00 0.20 par:pas; +débectés débecter VER m p 0.46 1.89 0.00 0.07 par:pas; +débiffé débiffer VER m s 0.00 0.07 0.00 0.07 par:pas; +débile débile ADJ s 21.09 4.66 17.80 3.11 +débilement débilement ADV 0.02 0.00 0.02 0.00 +débiles débile NOM p 11.99 2.91 3.66 1.55 +débilitaient débiliter VER 0.00 0.54 0.00 0.07 ind:imp:3p; +débilitant débilitant ADJ m s 0.16 0.27 0.04 0.14 +débilitante débilitant ADJ f s 0.16 0.27 0.05 0.14 +débilitantes débilitant ADJ f p 0.16 0.27 0.06 0.00 +débilitation débilitation NOM f s 0.00 0.14 0.00 0.14 +débilite débiliter VER 0.00 0.54 0.00 0.07 ind:pre:3s; +débilité débilité NOM f s 0.34 0.88 0.27 0.74 +débilitée débiliter VER f s 0.00 0.54 0.00 0.07 par:pas; +débilités débilité NOM f p 0.34 0.88 0.08 0.14 +débiller débiller VER 0.00 0.07 0.00 0.07 inf; +débinait débiner VER 2.35 3.18 0.00 0.14 ind:imp:3s; +débine débiner VER 2.35 3.18 0.98 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débinent débiner VER 2.35 3.18 0.39 0.20 ind:pre:3p; +débiner débiner VER 2.35 3.18 0.27 1.35 inf; +débinera débiner VER 2.35 3.18 0.00 0.07 ind:fut:3s; +débinerai débiner VER 2.35 3.18 0.02 0.00 ind:fut:1s; +débinerait débiner VER 2.35 3.18 0.02 0.07 cnd:pre:3s; +débineras débiner VER 2.35 3.18 0.01 0.00 ind:fut:2s; +débines débiner VER 2.35 3.18 0.27 0.07 ind:pre:2s; +débineurs débineur NOM m p 0.00 0.14 0.00 0.07 +débineuses débineur NOM f p 0.00 0.14 0.00 0.07 +débinez débiner VER 2.35 3.18 0.02 0.14 imp:pre:2p;ind:pre:2p; +débiné débiner VER m s 2.35 3.18 0.26 0.14 par:pas; +débinées débiner VER f p 2.35 3.18 0.00 0.07 par:pas; +débinés débiner VER m p 2.35 3.18 0.10 0.07 par:pas; +débit débit NOM m s 1.24 6.35 1.10 5.27 +débita débiter VER 1.87 14.46 0.00 0.54 ind:pas:3s; +débitage débitage NOM m s 0.00 0.07 0.00 0.07 +débitai débiter VER 1.87 14.46 0.00 0.20 ind:pas:1s; +débitaient débiter VER 1.87 14.46 0.01 0.54 ind:imp:3p; +débitais débiter VER 1.87 14.46 0.00 0.20 ind:imp:1s; +débitait débiter VER 1.87 14.46 0.04 2.50 ind:imp:3s; +débitant débiter VER 1.87 14.46 0.04 1.01 par:pre; +débitants débitant NOM m p 0.00 0.27 0.00 0.07 +dubitatif dubitatif ADJ m s 0.09 2.30 0.07 1.15 +dubitatifs dubitatif ADJ m p 0.09 2.30 0.01 0.20 +dubitation dubitation NOM f s 0.00 0.14 0.00 0.07 +dubitations dubitation NOM f p 0.00 0.14 0.00 0.07 +dubitative dubitatif ADJ f s 0.09 2.30 0.00 0.74 +dubitativement dubitativement ADV 0.00 0.14 0.00 0.14 +dubitatives dubitatif ADJ f p 0.09 2.30 0.00 0.20 +débite débiter VER 1.87 14.46 0.34 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débitent débiter VER 1.87 14.46 0.14 0.20 ind:pre:3p; +débiter débiter VER 1.87 14.46 0.82 3.45 inf; +débitera débiter VER 1.87 14.46 0.00 0.20 ind:fut:3s; +débiterai débiter VER 1.87 14.46 0.01 0.07 ind:fut:1s; +débiterait débiter VER 1.87 14.46 0.00 0.14 cnd:pre:3s; +débites débiter VER 1.87 14.46 0.02 0.14 ind:pre:2s; +débiteur débiteur NOM m s 1.28 0.61 0.75 0.27 +débiteurs débiteur NOM m p 1.28 0.61 0.54 0.34 +débitez débiter VER 1.87 14.46 0.24 0.00 imp:pre:2p;ind:pre:2p; +débitrice débiteur ADJ f s 0.21 0.27 0.00 0.07 +débits débit NOM m p 1.24 6.35 0.14 1.08 +débité débiter VER m s 1.87 14.46 0.14 0.95 par:pas; +débitée débiter VER f s 1.87 14.46 0.06 0.41 par:pas; +débitées débiter VER f p 1.87 14.46 0.00 0.81 par:pas; +débités débiter VER m p 1.87 14.46 0.01 0.34 par:pas; +déblai déblai NOM m s 0.00 0.74 0.00 0.47 +déblaie déblayer VER 0.96 4.19 0.05 0.20 imp:pre:2s;ind:pre:3s; +déblaiement déblaiement NOM m s 0.14 0.74 0.14 0.74 +déblaient déblayer VER 0.96 4.19 0.02 0.14 ind:pre:3p; +déblaierez déblayer VER 0.96 4.19 0.00 0.07 ind:fut:2p; +déblais déblai NOM m p 0.00 0.74 0.00 0.27 +déblatère déblatérer VER 0.32 0.47 0.07 0.07 ind:pre:3s; +déblatérait déblatérer VER 0.32 0.47 0.04 0.07 ind:imp:3s; +déblatérant déblatérer VER 0.32 0.47 0.01 0.14 par:pre; +déblatérations déblatération NOM f p 0.00 0.07 0.00 0.07 +déblatérer déblatérer VER 0.32 0.47 0.20 0.20 inf; +déblaya déblayer VER 0.96 4.19 0.00 0.07 ind:pas:3s; +déblayage déblayage NOM m s 0.09 0.14 0.09 0.14 +déblayaient déblayer VER 0.96 4.19 0.00 0.54 ind:imp:3p; +déblayait déblayer VER 0.96 4.19 0.01 0.47 ind:imp:3s; +déblayant déblayer VER 0.96 4.19 0.00 0.27 par:pre; +déblayer déblayer VER 0.96 4.19 0.45 1.55 inf; +déblayera déblayer VER 0.96 4.19 0.00 0.07 ind:fut:3s; +déblayeur déblayeur ADJ m s 0.01 0.00 0.01 0.00 +déblayeurs déblayeur NOM m p 0.00 0.07 0.00 0.07 +déblayez déblayer VER 0.96 4.19 0.11 0.00 imp:pre:2p;ind:pre:2p; +déblayé déblayer VER m s 0.96 4.19 0.31 0.54 par:pas; +déblayée déblayer VER f s 0.96 4.19 0.00 0.07 par:pas; +déblayées déblayer VER f p 0.96 4.19 0.00 0.14 par:pas; +déblayés déblayer VER m p 0.96 4.19 0.01 0.07 par:pas; +déblocage déblocage NOM m s 0.05 0.27 0.05 0.20 +déblocages déblocage NOM m p 0.05 0.27 0.00 0.07 +débloqua débloquer VER 6.07 4.73 0.00 0.27 ind:pas:3s; +débloquait débloquer VER 6.07 4.73 0.01 0.20 ind:imp:3s; +débloquant débloquer VER 6.07 4.73 0.01 0.14 par:pre; +débloque débloquer VER 6.07 4.73 1.38 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débloquent débloquer VER 6.07 4.73 0.23 0.07 ind:pre:3p; +débloquer débloquer VER 6.07 4.73 0.77 1.55 inf; +débloques débloquer VER 6.07 4.73 2.20 0.34 ind:pre:2s; +débloquez débloquer VER 6.07 4.73 0.80 0.07 imp:pre:2p;ind:pre:2p; +débloquât débloquer VER 6.07 4.73 0.00 0.07 sub:imp:3s; +débloqué débloquer VER m s 6.07 4.73 0.42 0.54 par:pas; +débloquée débloquer VER f s 6.07 4.73 0.04 0.14 par:pas; +débloqués débloquer VER m p 6.07 4.73 0.22 0.00 par:pas; +déboîta déboîter VER 0.96 1.08 0.00 0.07 ind:pas:3s; +déboîtaient déboîter VER 0.96 1.08 0.01 0.07 ind:imp:3p; +déboîtais déboîter VER 0.96 1.08 0.01 0.07 ind:imp:1s; +déboîtait déboîter VER 0.96 1.08 0.00 0.07 ind:imp:3s; +déboîtant déboîter VER 0.96 1.08 0.00 0.07 par:pre; +déboîte déboîter VER 0.96 1.08 0.13 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboîtement déboîtement NOM m s 0.01 0.00 0.01 0.00 +déboîter déboîter VER 0.96 1.08 0.22 0.20 inf; +déboîtez déboîter VER 0.96 1.08 0.02 0.07 imp:pre:2p;ind:pre:2p; +déboîté déboîter VER m s 0.96 1.08 0.32 0.27 par:pas; +déboîtée déboîter VER f s 0.96 1.08 0.25 0.00 par:pas; +déboîtées déboîter VER f p 0.96 1.08 0.00 0.07 par:pas; +débobinage débobinage NOM m s 0.00 0.07 0.00 0.07 +débobiner débobiner VER 0.00 0.07 0.00 0.07 inf; +débâcle débâcle NOM f s 0.89 6.69 0.76 6.49 +débâcles débâcle NOM f p 0.89 6.69 0.14 0.20 +débogage débogage NOM m s 0.01 0.00 0.01 0.00 +déboguer déboguer VER 0.04 0.00 0.04 0.00 inf; +débâillonné débâillonner VER m s 0.00 0.07 0.00 0.07 par:pas; +déboire déboire NOM m s 0.43 3.51 0.00 0.20 +déboires déboire NOM m p 0.43 3.51 0.43 3.31 +déboisement déboisement NOM m s 0.01 0.00 0.01 0.00 +déboiser déboiser VER 0.04 0.54 0.01 0.07 inf; +déboisé déboiser VER m s 0.04 0.54 0.02 0.20 par:pas; +déboisée déboiser VER f s 0.04 0.54 0.00 0.20 par:pas; +déboisées déboiser VER f p 0.04 0.54 0.01 0.07 par:pas; +débonda débonder VER 0.00 0.61 0.00 0.14 ind:pas:3s; +débondait débonder VER 0.00 0.61 0.00 0.27 ind:imp:3s; +débondant débonder VER 0.00 0.61 0.00 0.07 par:pre; +débonder débonder VER 0.00 0.61 0.00 0.07 inf; +débondé débonder VER m s 0.00 0.61 0.00 0.07 par:pas; +débonnaire débonnaire ADJ s 0.11 3.11 0.06 2.64 +débonnaires débonnaire ADJ p 0.11 3.11 0.05 0.47 +débord débord NOM m s 0.00 0.14 0.00 0.14 +déborda déborder VER 15.75 31.62 0.01 0.61 ind:pas:3s; +débordaient déborder VER 15.75 31.62 0.02 3.04 ind:imp:3p; +débordais déborder VER 15.75 31.62 0.21 0.20 ind:imp:1s;ind:imp:2s; +débordait déborder VER 15.75 31.62 0.67 4.86 ind:imp:3s; +débordant déborder VER 15.75 31.62 0.52 5.14 par:pre; +débordante débordant ADJ f s 1.13 4.66 0.84 1.76 +débordantes débordant ADJ f p 1.13 4.66 0.14 0.74 +débordants débordant ADJ m p 1.13 4.66 0.04 0.81 +déborde déborder VER 15.75 31.62 2.31 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débordement débordement NOM m s 0.94 3.78 0.62 2.09 +débordements débordement NOM m p 0.94 3.78 0.32 1.69 +débordent déborder VER 15.75 31.62 0.69 1.96 ind:pre:3p; +déborder déborder VER 15.75 31.62 1.78 3.92 inf; +débordera déborder VER 15.75 31.62 0.04 0.00 ind:fut:3s; +déborderaient déborder VER 15.75 31.62 0.14 0.14 cnd:pre:3p; +déborderait déborder VER 15.75 31.62 0.01 0.20 cnd:pre:3s; +débordez déborder VER 15.75 31.62 0.06 0.00 imp:pre:2p;ind:pre:2p; +débordât déborder VER 15.75 31.62 0.00 0.14 sub:imp:3s; +débordèrent déborder VER 15.75 31.62 0.00 0.14 ind:pas:3p; +débordé déborder VER m s 15.75 31.62 4.16 3.11 par:pas; +débordée déborder VER f s 15.75 31.62 1.98 1.08 par:pas; +débordées déborder VER f p 15.75 31.62 0.24 0.41 par:pas; +débordés déborder VER m p 15.75 31.62 2.94 1.08 par:pas; +débottelons débotteler VER 0.00 0.07 0.00 0.07 ind:pre:1p; +débotté débotté NOM m s 0.16 0.07 0.16 0.07 +débâté débâter VER m s 0.00 0.14 0.00 0.07 par:pas; +débâtées débâter VER f p 0.00 0.14 0.00 0.07 par:pas; +déboucha déboucher VER 4.21 33.45 0.01 4.12 ind:pas:3s; +débouchage débouchage NOM m s 0.01 0.00 0.01 0.00 +débouchai déboucher VER 4.21 33.45 0.00 0.34 ind:pas:1s; +débouchaient déboucher VER 4.21 33.45 0.01 1.62 ind:imp:3p; +débouchais déboucher VER 4.21 33.45 0.00 0.20 ind:imp:1s; +débouchait déboucher VER 4.21 33.45 0.16 4.39 ind:imp:3s; +débouchant déboucher VER 4.21 33.45 0.04 3.04 par:pre; +débouche déboucher VER 4.21 33.45 1.97 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débouchent déboucher VER 4.21 33.45 0.14 1.69 ind:pre:3p; +déboucher déboucher VER 4.21 33.45 0.78 6.22 inf; +débouchera déboucher VER 4.21 33.45 0.11 0.07 ind:fut:3s; +déboucherai déboucher VER 4.21 33.45 0.10 0.07 ind:fut:1s; +déboucheraient déboucher VER 4.21 33.45 0.01 0.07 cnd:pre:3p; +déboucherait déboucher VER 4.21 33.45 0.00 0.34 cnd:pre:3s; +déboucherez déboucher VER 4.21 33.45 0.01 0.00 ind:fut:2p; +déboucheur déboucheur NOM m s 0.11 0.20 0.07 0.14 +déboucheurs déboucheur NOM m p 0.11 0.20 0.04 0.07 +débouchez déboucher VER 4.21 33.45 0.10 0.00 imp:pre:2p;ind:pre:2p; +débouchions déboucher VER 4.21 33.45 0.00 0.07 ind:imp:1p; +débouchoir débouchoir NOM m s 0.02 0.00 0.01 0.00 +débouchoirs débouchoir NOM m p 0.02 0.00 0.01 0.00 +débouchâmes déboucher VER 4.21 33.45 0.01 0.27 ind:pas:1p; +débouchons déboucher VER 4.21 33.45 0.12 0.54 imp:pre:1p;ind:pre:1p; +débouchèrent déboucher VER 4.21 33.45 0.00 1.49 ind:pas:3p; +débouché déboucher VER m s 4.21 33.45 0.42 2.09 par:pas; +débouchée déboucher VER f s 4.21 33.45 0.16 0.20 par:pas; +débouchées déboucher VER f p 4.21 33.45 0.05 0.07 par:pas; +débouchés débouché NOM m p 0.56 3.51 0.54 1.01 +déboucla déboucler VER 0.05 2.91 0.00 0.20 ind:pas:3s; +débouclaient déboucler VER 0.05 2.91 0.00 0.07 ind:imp:3p; +débouclait déboucler VER 0.05 2.91 0.00 0.20 ind:imp:3s; +débouclant déboucler VER 0.05 2.91 0.00 0.47 par:pre; +déboucle déboucler VER 0.05 2.91 0.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débouclent déboucler VER 0.05 2.91 0.00 0.20 ind:pre:3p; +déboucler déboucler VER 0.05 2.91 0.00 0.68 inf; +débouclez déboucler VER 0.05 2.91 0.01 0.14 imp:pre:2p; +débouclions déboucler VER 0.05 2.91 0.00 0.07 ind:imp:1p; +débouclèrent déboucler VER 0.05 2.91 0.00 0.07 ind:pas:3p; +débouclé déboucler VER m s 0.05 2.91 0.02 0.34 par:pas; +débouclées déboucler VER f p 0.05 2.91 0.00 0.07 par:pas; +débouclés déboucler VER m p 0.05 2.91 0.00 0.07 par:pas; +déboula débouler VER 1.94 6.22 0.01 0.41 ind:pas:3s; +déboulai débouler VER 1.94 6.22 0.00 0.07 ind:pas:1s; +déboulaient débouler VER 1.94 6.22 0.00 0.61 ind:imp:3p; +déboulais débouler VER 1.94 6.22 0.02 0.14 ind:imp:1s; +déboulait débouler VER 1.94 6.22 0.11 0.61 ind:imp:3s; +déboulant débouler VER 1.94 6.22 0.02 0.47 par:pre; +déboule débouler VER 1.94 6.22 0.75 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboulent débouler VER 1.94 6.22 0.08 0.47 ind:pre:3p; +débouler débouler VER 1.94 6.22 0.35 1.01 inf; +déboulerais débouler VER 1.94 6.22 0.01 0.07 cnd:pre:1s; +déboulerait débouler VER 1.94 6.22 0.00 0.07 cnd:pre:3s; +débouleront débouler VER 1.94 6.22 0.02 0.00 ind:fut:3p; +déboulez débouler VER 1.94 6.22 0.02 0.00 ind:pre:2p; +débouliez débouler VER 1.94 6.22 0.01 0.00 ind:imp:2p; +déboulions débouler VER 1.94 6.22 0.00 0.07 ind:imp:1p; +déboulonnant déboulonner VER 0.02 0.95 0.00 0.07 par:pre; +déboulonner déboulonner VER 0.02 0.95 0.00 0.27 inf; +déboulonnez déboulonner VER 0.02 0.95 0.01 0.00 imp:pre:2p; +déboulonné déboulonner VER m s 0.02 0.95 0.01 0.20 par:pas; +déboulonnée déboulonner VER f s 0.02 0.95 0.00 0.27 par:pas; +déboulonnées déboulonner VER f p 0.02 0.95 0.00 0.14 par:pas; +déboulèrent débouler VER 1.94 6.22 0.00 0.07 ind:pas:3p; +déboulé débouler VER m s 1.94 6.22 0.51 0.68 par:pas; +déboulés débouler VER m p 1.94 6.22 0.01 0.07 par:pas; +débouquaient débouquer VER 0.00 0.14 0.00 0.07 ind:imp:3p; +débouqué débouquer VER m s 0.00 0.14 0.00 0.07 par:pas; +débourrage débourrage NOM m s 0.00 0.07 0.00 0.07 +débourre débourrer VER 0.02 0.54 0.00 0.07 ind:pre:3s; +débourrent débourrer VER 0.02 0.54 0.00 0.07 ind:pre:3p; +débourrer débourrer VER 0.02 0.54 0.02 0.27 inf; +débourré débourrer VER m s 0.02 0.54 0.00 0.07 par:pas; +débourrée débourrer VER f s 0.02 0.54 0.00 0.07 par:pas; +débours débours NOM m 0.01 0.20 0.01 0.20 +débourse débourser VER 1.02 0.54 0.04 0.07 ind:pre:1s;ind:pre:3s; +déboursement déboursement NOM m s 0.01 0.00 0.01 0.00 +débourser débourser VER 1.02 0.54 0.66 0.20 inf; +déboursera débourser VER 1.02 0.54 0.01 0.07 ind:fut:3s; +débourseront débourser VER 1.02 0.54 0.01 0.00 ind:fut:3p; +déboursé débourser VER m s 1.02 0.54 0.29 0.14 par:pas; +déboursées débourser VER f p 1.02 0.54 0.00 0.07 par:pas; +déboussolait déboussoler VER 1.73 1.42 0.00 0.07 ind:imp:3s; +déboussolantes déboussolant ADJ f p 0.00 0.07 0.00 0.07 +déboussoler déboussoler VER 1.73 1.42 0.01 0.07 inf; +déboussolé déboussoler VER m s 1.73 1.42 0.82 0.54 par:pas; +déboussolée déboussoler VER f s 1.73 1.42 0.77 0.20 par:pas; +déboussolées déboussoler VER f p 1.73 1.42 0.01 0.07 par:pas; +déboussolés déboussoler VER m p 1.73 1.42 0.12 0.47 par:pas; +déboutait débouter VER 0.12 0.34 0.00 0.07 ind:imp:3s; +débouter débouter VER 0.12 0.34 0.05 0.07 inf; +déboutonna déboutonner VER 1.33 8.24 0.01 1.22 ind:pas:3s; +déboutonnage déboutonnage NOM m s 0.27 0.07 0.27 0.07 +déboutonnait déboutonner VER 1.33 8.24 0.03 0.61 ind:imp:3s; +déboutonnant déboutonner VER 1.33 8.24 0.01 0.41 par:pre; +déboutonne déboutonner VER 1.33 8.24 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déboutonnent déboutonner VER 1.33 8.24 0.01 0.07 ind:pre:3p; +déboutonner déboutonner VER 1.33 8.24 0.31 1.42 inf; +déboutonnez déboutonner VER 1.33 8.24 0.04 0.07 imp:pre:2p; +déboutonnât déboutonner VER 1.33 8.24 0.00 0.07 sub:imp:3s; +déboutonné déboutonner VER m s 1.33 8.24 0.57 2.16 par:pas; +déboutonnée déboutonner VER f s 1.33 8.24 0.06 0.81 par:pas; +déboutonnées déboutonner VER f p 1.33 8.24 0.00 0.47 par:pas; +déboutonnés déboutonner VER m p 1.33 8.24 0.00 0.14 par:pas; +débouté débouter VER m s 0.12 0.34 0.06 0.07 par:pas; +déboutée débouter VER f s 0.12 0.34 0.01 0.14 par:pas; +débraguette débraguetter VER 0.01 0.54 0.00 0.07 ind:pre:3s; +débraguettent débraguetter VER 0.01 0.54 0.00 0.07 ind:pre:3p; +débraguetter débraguetter VER 0.01 0.54 0.00 0.14 inf; +débraguetté débraguetter VER m s 0.01 0.54 0.01 0.14 par:pas; +débraguettés débraguetter VER m p 0.01 0.54 0.00 0.14 par:pas; +débraillé débraillé NOM m s 0.43 1.55 0.26 1.35 +débraillée débraillé ADJ f s 0.21 1.42 0.02 0.20 +débraillées débraillé ADJ f p 0.21 1.42 0.01 0.07 +débraillés débraillé NOM m p 0.43 1.55 0.16 0.14 +débrancha débrancher VER 6.09 3.31 0.00 0.54 ind:pas:3s; +débranchant débrancher VER 6.09 3.31 0.04 0.00 par:pre; +débranche débrancher VER 6.09 3.31 1.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débranchement débranchement NOM m s 0.02 0.00 0.02 0.00 +débranchent débrancher VER 6.09 3.31 0.06 0.00 ind:pre:3p; +débrancher débrancher VER 6.09 3.31 2.27 0.81 inf; +débrancherai débrancher VER 6.09 3.31 0.02 0.07 ind:fut:1s; +débrancherais débrancher VER 6.09 3.31 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +débrancherait débrancher VER 6.09 3.31 0.02 0.14 cnd:pre:3s; +débranchez débrancher VER 6.09 3.31 0.40 0.07 imp:pre:2p;ind:pre:2p; +débranchons débrancher VER 6.09 3.31 0.12 0.00 imp:pre:1p;ind:pre:1p; +débranché débrancher VER m s 6.09 3.31 1.38 0.74 par:pas; +débranchée débrancher VER f s 6.09 3.31 0.30 0.07 par:pas; +débranchées débrancher VER f p 6.09 3.31 0.02 0.00 par:pas; +débranchés débrancher VER m p 6.09 3.31 0.10 0.20 par:pas; +débraya débrayer VER 0.07 1.42 0.00 0.14 ind:pas:3s; +débrayage débrayage NOM m s 0.04 0.47 0.04 0.41 +débrayages débrayage NOM m p 0.04 0.47 0.00 0.07 +débrayait débrayer VER 0.07 1.42 0.00 0.20 ind:imp:3s; +débraye débrayer VER 0.07 1.42 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débrayent débrayer VER 0.07 1.42 0.00 0.07 ind:pre:3p; +débrayer débrayer VER 0.07 1.42 0.01 0.47 inf; +débrayes débrayer VER 0.07 1.42 0.01 0.07 ind:pre:2s; +débrayez débrayer VER 0.07 1.42 0.02 0.00 imp:pre:2p;ind:pre:2p; +débrayé débrayer VER m s 0.07 1.42 0.01 0.27 par:pas; +débrayée débrayer VER f s 0.07 1.42 0.00 0.07 par:pas; +débridait débrider VER 0.28 1.69 0.00 0.07 ind:imp:3s; +débridant débrider VER 0.28 1.69 0.00 0.07 par:pre; +débride débrider VER 0.28 1.69 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débridement débridement NOM m s 0.04 0.00 0.04 0.00 +débrider débrider VER 0.28 1.69 0.04 0.74 inf; +débridera débrider VER 0.28 1.69 0.00 0.07 ind:fut:3s; +débriderai débrider VER 0.28 1.69 0.01 0.07 ind:fut:1s; +débriderait débrider VER 0.28 1.69 0.00 0.07 cnd:pre:3s; +débridez débrider VER 0.28 1.69 0.06 0.00 imp:pre:2p;ind:pre:2p; +débridé débrider VER m s 0.28 1.69 0.06 0.20 par:pas; +débridée débridé ADJ f s 0.39 0.95 0.28 0.47 +débridées débridé ADJ f p 0.39 0.95 0.02 0.27 +débridés débridé ADJ m p 0.39 0.95 0.06 0.07 +débriefer débriefer VER 0.19 0.00 0.11 0.00 inf; +débriefing débriefing NOM m s 0.58 0.00 0.58 0.00 +débriefé débriefer VER m s 0.19 0.00 0.06 0.00 par:pas; +débriefée débriefer VER f s 0.19 0.00 0.03 0.00 par:pas; +débris débris NOM m 4.94 13.85 4.94 13.85 +débronzer débronzer VER 0.02 0.00 0.02 0.00 inf; +débrouilla débrouiller VER 46.72 20.81 0.03 0.14 ind:pas:3s; +débrouillage débrouillage NOM m s 0.00 0.14 0.00 0.14 +débrouillai débrouiller VER 46.72 20.81 0.00 0.07 ind:pas:1s; +débrouillaient débrouiller VER 46.72 20.81 0.01 0.54 ind:imp:3p; +débrouillais débrouiller VER 46.72 20.81 0.51 0.34 ind:imp:1s;ind:imp:2s; +débrouillait débrouiller VER 46.72 20.81 0.53 1.15 ind:imp:3s; +débrouillant débrouiller VER 46.72 20.81 0.01 0.14 par:pre; +débrouillard débrouillard ADJ m s 0.58 1.28 0.38 0.74 +débrouillarde débrouillard ADJ f s 0.58 1.28 0.16 0.34 +débrouillardise débrouillardise NOM f s 0.00 0.34 0.00 0.34 +débrouillards débrouillard ADJ m p 0.58 1.28 0.04 0.20 +débrouille débrouiller VER 46.72 20.81 12.63 4.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +débrouillent débrouiller VER 46.72 20.81 0.98 1.08 ind:pre:3p; +débrouiller débrouiller VER 46.72 20.81 12.71 5.68 inf;; +débrouillera débrouiller VER 46.72 20.81 2.36 0.74 ind:fut:3s; +débrouillerai débrouiller VER 46.72 20.81 4.13 1.35 ind:fut:1s; +débrouilleraient débrouiller VER 46.72 20.81 0.00 0.14 cnd:pre:3p; +débrouillerais débrouiller VER 46.72 20.81 0.23 0.20 cnd:pre:1s;cnd:pre:2s; +débrouillerait débrouiller VER 46.72 20.81 0.05 0.27 cnd:pre:3s; +débrouilleras débrouiller VER 46.72 20.81 0.77 0.00 ind:fut:2s; +débrouillerez débrouiller VER 46.72 20.81 0.28 0.41 ind:fut:2p; +débrouillerions débrouiller VER 46.72 20.81 0.00 0.07 cnd:pre:1p; +débrouillerons débrouiller VER 46.72 20.81 0.20 0.00 ind:fut:1p; +débrouilleront débrouiller VER 46.72 20.81 0.12 0.20 ind:fut:3p; +débrouilles débrouiller VER 46.72 20.81 3.45 0.61 ind:pre:2s; +débrouilleurs débrouilleur NOM m p 0.01 0.00 0.01 0.00 +débrouillez débrouiller VER 46.72 20.81 3.27 1.22 imp:pre:2p;ind:pre:2p; +débrouilliez débrouiller VER 46.72 20.81 0.02 0.00 ind:imp:2p; +débrouillions débrouiller VER 46.72 20.81 0.01 0.07 ind:imp:1p; +débrouillons débrouiller VER 46.72 20.81 0.06 0.07 imp:pre:1p;ind:pre:1p; +débrouillât débrouiller VER 46.72 20.81 0.00 0.07 sub:imp:3s; +débrouillé débrouiller VER m s 46.72 20.81 2.36 1.22 par:pas; +débrouillée débrouiller VER f s 46.72 20.81 1.61 0.27 par:pas; +débrouillées débrouiller VER f p 46.72 20.81 0.04 0.07 par:pas; +débrouillés débrouiller VER m p 46.72 20.81 0.36 0.47 par:pas; +débroussaillage débroussaillage NOM m s 0.01 0.14 0.01 0.14 +débroussaille débroussailler VER 0.14 0.54 0.00 0.20 ind:pre:1s;ind:pre:3s; +débroussailler débroussailler VER 0.14 0.54 0.14 0.20 inf; +débroussailleuse débroussailleur NOM f s 0.03 0.07 0.03 0.07 +débroussaillé débroussailler VER m s 0.14 0.54 0.00 0.14 par:pas; +débucher débucher NOM m s 0.00 0.07 0.00 0.07 +débusquaient débusquer VER 1.43 2.50 0.00 0.07 ind:imp:3p; +débusquait débusquer VER 1.43 2.50 0.01 0.27 ind:imp:3s; +débusquant débusquer VER 1.43 2.50 0.00 0.07 par:pre; +débusque débusquer VER 1.43 2.50 0.15 0.07 ind:pre:1s;ind:pre:3s; +débusquer débusquer VER 1.43 2.50 0.89 1.49 inf; +débusquerait débusquer VER 1.43 2.50 0.01 0.07 cnd:pre:3s; +débusquerons débusquer VER 1.43 2.50 0.01 0.00 ind:fut:1p; +débusquez débusquer VER 1.43 2.50 0.02 0.00 imp:pre:2p; +débusquèrent débusquer VER 1.43 2.50 0.00 0.07 ind:pas:3p; +débusqué débusquer VER m s 1.43 2.50 0.33 0.14 par:pas; +débusquée débusquer VER f s 1.43 2.50 0.00 0.07 par:pas; +débusqués débusquer VER m p 1.43 2.50 0.02 0.20 par:pas; +début début NOM m s 114.31 141.49 109.88 128.51 +débuta débuter VER 10.08 7.16 0.42 0.68 ind:pas:3s; +débutai débuter VER 10.08 7.16 0.00 0.07 ind:pas:1s; +débutaient débuter VER 10.08 7.16 0.02 0.14 ind:imp:3p; +débutais débuter VER 10.08 7.16 0.02 0.27 ind:imp:1s; +débutait débuter VER 10.08 7.16 0.23 1.22 ind:imp:3s; +débutant débutant NOM m s 5.82 2.57 2.32 1.08 +débutante débutant NOM f s 5.82 2.57 1.21 0.61 +débutantes débutant NOM f p 5.82 2.57 0.65 0.27 +débutants débutant NOM m p 5.82 2.57 1.64 0.61 +débute débuter VER 10.08 7.16 2.77 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +débutent débuter VER 10.08 7.16 0.49 0.20 ind:pre:3p; +débuter débuter VER 10.08 7.16 1.72 0.88 inf; +débutera débuter VER 10.08 7.16 0.28 0.00 ind:fut:3s; +débuteraient débuter VER 10.08 7.16 0.01 0.00 cnd:pre:3p; +débutes débuter VER 10.08 7.16 0.11 0.00 ind:pre:2s; +débutez débuter VER 10.08 7.16 0.09 0.00 imp:pre:2p;ind:pre:2p; +débutiez débuter VER 10.08 7.16 0.02 0.07 ind:imp:2p; +débutons débuter VER 10.08 7.16 0.17 0.00 imp:pre:1p;ind:pre:1p; +débuts début NOM m p 114.31 141.49 4.43 12.97 +débutèrent débuter VER 10.08 7.16 0.04 0.00 ind:pas:3p; +débuté débuter VER m s 10.08 7.16 3.41 1.89 par:pas; +débutée débuter VER f s 10.08 7.16 0.02 0.00 par:pas; +déc déc NOM s 0.30 0.00 0.30 0.00 +duc duc NOM m s 12.40 23.51 7.66 14.80 +déca déca NOM m s 1.16 0.07 1.16 0.07 +décabosser décabosser VER 0.01 0.00 0.01 0.00 inf; +décacheta décacheter VER 0.01 2.43 0.00 0.41 ind:pas:3s; +décachetage décachetage NOM m s 0.01 0.00 0.01 0.00 +décachetai décacheter VER 0.01 2.43 0.00 0.14 ind:pas:1s; +décachetaient décacheter VER 0.01 2.43 0.00 0.07 ind:imp:3p; +décachetais décacheter VER 0.01 2.43 0.00 0.07 ind:imp:1s; +décachetant décacheter VER 0.01 2.43 0.00 0.14 par:pre; +décacheter décacheter VER 0.01 2.43 0.00 0.34 inf; +décachetons décacheter VER 0.01 2.43 0.01 0.00 imp:pre:1p; +décachette décacheter VER 0.01 2.43 0.00 0.14 ind:pre:1s;ind:pre:3s; +décachetteraient décacheter VER 0.01 2.43 0.00 0.07 cnd:pre:3p; +décacheté décacheter VER m s 0.01 2.43 0.00 0.47 par:pas; +décachetée décacheter VER f s 0.01 2.43 0.00 0.27 par:pas; +décachetées décacheter VER f p 0.01 2.43 0.00 0.34 par:pas; +décade décade NOM f s 0.16 1.15 0.13 0.74 +décadence décadence NOM f s 1.28 4.73 1.28 4.73 +décadent décadent ADJ m s 1.47 1.35 0.60 0.47 +décadente décadent ADJ f s 1.47 1.35 0.68 0.20 +décadentes décadent ADJ f p 1.47 1.35 0.13 0.20 +décadentisme décadentisme NOM m s 0.00 0.07 0.00 0.07 +décadents décadent ADJ m p 1.47 1.35 0.06 0.47 +décades décade NOM f p 0.16 1.15 0.03 0.41 +décadi décadi NOM m s 0.00 0.34 0.00 0.27 +décadis décadi NOM m p 0.00 0.34 0.00 0.07 +décaféiné décaféiné NOM m s 0.22 0.07 0.22 0.07 +décaféinée décaféiner VER f s 0.06 0.07 0.01 0.00 par:pas; +décaissement décaissement NOM m s 0.01 0.00 0.01 0.00 +décaisser décaisser VER 0.00 0.14 0.00 0.14 inf; +ducal ducal ADJ m s 0.23 1.08 0.02 0.54 +décalage décalage NOM m s 2.09 3.92 2.04 3.65 +décalages décalage NOM m p 2.09 3.92 0.04 0.27 +décalaminé décalaminer VER m s 0.00 0.07 0.00 0.07 par:pas; +décalant décaler VER 1.36 1.42 0.00 0.07 par:pre; +décalcification décalcification NOM f s 0.01 0.00 0.01 0.00 +décalcifié décalcifier VER m s 0.00 0.20 0.00 0.07 par:pas; +décalcifiée décalcifier VER f s 0.00 0.20 0.00 0.14 par:pas; +décalcomanie décalcomanie NOM f s 0.29 0.61 0.17 0.41 +décalcomanies décalcomanie NOM f p 0.29 0.61 0.12 0.20 +décale décaler VER 1.36 1.42 0.11 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ducale ducal ADJ f s 0.23 1.08 0.11 0.47 +décalent décaler VER 1.36 1.42 0.00 0.07 ind:pre:3p; +décaler décaler VER 1.36 1.42 0.47 0.20 inf; +ducales ducal ADJ f p 0.23 1.08 0.00 0.07 +décalez décaler VER 1.36 1.42 0.17 0.00 imp:pre:2p; +décalitre décalitre NOM m s 0.11 0.14 0.00 0.07 +décalitres décalitre NOM m p 0.11 0.14 0.11 0.07 +décalogue décalogue NOM m s 0.01 0.20 0.01 0.20 +décalotta décalotter VER 0.00 0.34 0.00 0.07 ind:pas:3s; +décalotter décalotter VER 0.00 0.34 0.00 0.07 inf; +décalotté décalotter VER m s 0.00 0.34 0.00 0.07 par:pas; +décalottée décalotter VER f s 0.00 0.34 0.00 0.07 par:pas; +décalottés décalotter VER m p 0.00 0.34 0.00 0.07 par:pas; +décalquai décalquer VER 0.22 1.08 0.00 0.07 ind:pas:1s; +décalquait décalquer VER 0.22 1.08 0.00 0.14 ind:imp:3s; +décalque décalquer VER 0.22 1.08 0.03 0.07 ind:pre:3s; +décalquer décalquer VER 0.22 1.08 0.06 0.14 inf; +décalques décalquer VER 0.22 1.08 0.04 0.00 ind:pre:2s; +décalqué décalquer VER m s 0.22 1.08 0.06 0.20 par:pas; +décalquée décalquer VER f s 0.22 1.08 0.01 0.34 par:pas; +décalquées décalquer VER f p 0.22 1.08 0.00 0.07 par:pas; +décalqués décalquer VER m p 0.22 1.08 0.02 0.07 par:pas; +décalé décalé ADJ m s 0.65 0.68 0.41 0.41 +décalée décalé ADJ f s 0.65 0.68 0.06 0.20 +décalées décaler VER f p 1.36 1.42 0.01 0.07 par:pas; +décalés décaler VER m p 1.36 1.42 0.30 0.14 par:pas; +décambuter décambuter VER 0.00 0.20 0.00 0.20 inf; +décampa décamper VER 4.02 2.50 0.00 0.14 ind:pas:3s; +décampait décamper VER 4.02 2.50 0.00 0.07 ind:imp:3s; +décampe décamper VER 4.02 2.50 1.66 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décampent décamper VER 4.02 2.50 0.16 0.14 ind:pre:3p; +décamper décamper VER 4.02 2.50 0.81 0.95 inf; +décampera décamper VER 4.02 2.50 0.14 0.00 ind:fut:3s; +décamperais décamper VER 4.02 2.50 0.00 0.07 cnd:pre:1s; +décamperont décamper VER 4.02 2.50 0.02 0.00 ind:fut:3p; +décampes décamper VER 4.02 2.50 0.26 0.00 ind:pre:2s; +décampez décamper VER 4.02 2.50 0.70 0.14 imp:pre:2p; +décampons décamper VER 4.02 2.50 0.05 0.00 imp:pre:1p; +décampé décamper VER m s 4.02 2.50 0.20 0.47 par:pas; +décamètre décamètre NOM m s 0.00 0.20 0.00 0.14 +décamètres décamètre NOM m p 0.00 0.20 0.00 0.07 +décan décan NOM m s 0.02 0.07 0.02 0.07 +décanillant décaniller VER 0.02 0.61 0.00 0.07 par:pre; +décanille décaniller VER 0.02 0.61 0.01 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décaniller décaniller VER 0.02 0.61 0.00 0.27 inf; +décanillerait décaniller VER 0.02 0.61 0.00 0.07 cnd:pre:3s; +décanillez décaniller VER 0.02 0.61 0.01 0.00 imp:pre:2p; +décantai décanter VER 0.22 1.28 0.00 0.07 ind:pas:1s; +décantaient décanter VER 0.22 1.28 0.00 0.07 ind:imp:3p; +décantait décanter VER 0.22 1.28 0.00 0.07 ind:imp:3s; +décantant décanter VER 0.22 1.28 0.00 0.14 par:pre; +décantation décantation NOM f s 0.10 0.07 0.10 0.07 +décante décanter VER 0.22 1.28 0.04 0.20 ind:pre:3s; +décantent décanter VER 0.22 1.28 0.00 0.07 ind:pre:3p; +décanter décanter VER 0.22 1.28 0.17 0.14 inf; +décanteur décanteur NOM m s 0.01 0.00 0.01 0.00 +décanté décanter VER m s 0.22 1.28 0.01 0.14 par:pas; +décantée décanter VER f s 0.22 1.28 0.00 0.20 par:pas; +décantées décanter VER f p 0.22 1.28 0.00 0.20 par:pas; +décapage décapage NOM m s 0.01 0.00 0.01 0.00 +décapais décaper VER 0.21 2.09 0.02 0.07 ind:imp:1s;ind:imp:2s; +décapait décaper VER 0.21 2.09 0.00 0.34 ind:imp:3s; +décapant décapant NOM m s 0.27 0.34 0.27 0.20 +décapante décapant ADJ f s 0.04 0.07 0.00 0.07 +décapants décapant ADJ m p 0.04 0.07 0.01 0.00 +décape décaper VER 0.21 2.09 0.07 0.20 ind:pre:1s;ind:pre:3s; +décaper décaper VER 0.21 2.09 0.07 0.34 inf; +décapera décaper VER 0.21 2.09 0.00 0.07 ind:fut:3s; +décapeur décapeur NOM m s 0.00 0.07 0.00 0.07 +décapita décapiter VER 3.72 6.96 0.02 0.20 ind:pas:3s; +décapitaient décapiter VER 3.72 6.96 0.02 0.07 ind:imp:3p; +décapitais décapiter VER 3.72 6.96 0.01 0.00 ind:imp:1s; +décapitait décapiter VER 3.72 6.96 0.02 0.07 ind:imp:3s; +décapitant décapiter VER 3.72 6.96 0.04 0.27 par:pre; +décapitation décapitation NOM f s 0.55 0.47 0.43 0.47 +décapitations décapitation NOM f p 0.55 0.47 0.13 0.00 +décapite décapiter VER 3.72 6.96 0.20 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décapitent décapiter VER 3.72 6.96 0.14 0.00 ind:pre:3p; +décapiter décapiter VER 3.72 6.96 1.09 0.88 inf; +décapitera décapiter VER 3.72 6.96 0.04 0.00 ind:fut:3s; +décapiterai décapiter VER 3.72 6.96 0.01 0.00 ind:fut:1s; +décapiterait décapiter VER 3.72 6.96 0.00 0.07 cnd:pre:3s; +décapiteront décapiter VER 3.72 6.96 0.01 0.00 ind:fut:3p; +décapitez décapiter VER 3.72 6.96 0.07 0.00 imp:pre:2p;ind:pre:2p; +décapitons décapiter VER 3.72 6.96 0.01 0.00 imp:pre:1p; +décapitât décapiter VER 3.72 6.96 0.00 0.07 sub:imp:3s; +décapitèrent décapiter VER 3.72 6.96 0.00 0.07 ind:pas:3p; +décapité décapiter VER m s 3.72 6.96 1.50 2.57 par:pas; +décapitée décapiter VER f s 3.72 6.96 0.32 1.15 par:pas; +décapitées décapiter VER f p 3.72 6.96 0.04 0.54 par:pas; +décapités décapiter VER m p 3.72 6.96 0.19 0.81 par:pas; +décapode décapode NOM m s 0.00 0.07 0.00 0.07 +décapotable décapotable NOM f s 1.77 0.88 1.65 0.81 +décapotables décapotable NOM f p 1.77 0.88 0.12 0.07 +décapotage décapotage NOM m s 0.00 0.07 0.00 0.07 +décapotait décapoter VER 0.04 0.27 0.00 0.07 ind:imp:3s; +décapote décapoter VER 0.04 0.27 0.03 0.00 ind:pre:1s; +décapoter décapoter VER 0.04 0.27 0.00 0.07 inf; +décapoté décapoté ADJ m s 0.03 0.47 0.01 0.00 +décapotée décapoté ADJ f s 0.03 0.47 0.02 0.47 +décapotés décapoter VER m p 0.04 0.27 0.00 0.07 par:pas; +décapsula décapsuler VER 0.07 1.35 0.00 0.14 ind:pas:3s; +décapsulant décapsuler VER 0.07 1.35 0.00 0.20 par:pre; +décapsule décapsuler VER 0.07 1.35 0.02 0.41 ind:pre:1s;ind:pre:3s; +décapsuler décapsuler VER 0.07 1.35 0.04 0.20 inf; +décapsulerait décapsuler VER 0.07 1.35 0.00 0.07 cnd:pre:3s; +décapsuleur décapsuleur NOM m s 0.34 0.20 0.34 0.20 +décapsulez décapsuler VER 0.07 1.35 0.01 0.00 imp:pre:2p; +décapsulé décapsuler VER m s 0.07 1.35 0.00 0.14 par:pas; +décapsulée décapsuler VER f s 0.07 1.35 0.00 0.20 par:pas; +décapé décaper VER m s 0.21 2.09 0.02 0.34 par:pas; +décapuchonna décapuchonner VER 0.00 0.41 0.00 0.20 ind:pas:3s; +décapuchonne décapuchonner VER 0.00 0.41 0.00 0.07 ind:pre:3s; +décapuchonner décapuchonner VER 0.00 0.41 0.00 0.07 inf; +décapuchonnèrent décapuchonner VER 0.00 0.41 0.00 0.07 ind:pas:3p; +décapée décaper VER f s 0.21 2.09 0.00 0.41 par:pas; +décapées décaper VER f p 0.21 2.09 0.00 0.14 par:pas; +décapés décaper VER m p 0.21 2.09 0.01 0.14 par:pas; +décarcassais décarcasser VER 0.15 0.61 0.00 0.07 ind:imp:1s; +décarcassait décarcasser VER 0.15 0.61 0.00 0.07 ind:imp:3s; +décarcassent décarcasser VER 0.15 0.61 0.00 0.07 ind:pre:3p; +décarcasser décarcasser VER 0.15 0.61 0.05 0.07 inf; +décarcassé décarcasser VER m s 0.15 0.61 0.08 0.14 par:pas; +décarcassée décarcasser VER f s 0.15 0.61 0.02 0.14 par:pas; +décarcassées décarcasser VER f p 0.15 0.61 0.00 0.07 par:pas; +décarpillage décarpillage NOM m s 0.00 0.20 0.00 0.20 +décarpiller décarpiller VER 0.00 0.14 0.00 0.07 inf; +décarpillé décarpiller VER m s 0.00 0.14 0.00 0.07 par:pas; +décarrade décarrade NOM f s 0.00 2.50 0.00 2.43 +décarrades décarrade NOM f p 0.00 2.50 0.00 0.07 +décarraient décarrer VER 0.68 4.32 0.00 0.07 ind:imp:3p; +décarrais décarrer VER 0.68 4.32 0.00 0.07 ind:imp:1s; +décarrait décarrer VER 0.68 4.32 0.00 0.07 ind:imp:3s; +décarrant décarrer VER 0.68 4.32 0.00 0.47 par:pre; +décarre décarrer VER 0.68 4.32 0.40 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décarrent décarrer VER 0.68 4.32 0.00 0.07 ind:pre:3p; +décarrer décarrer VER 0.68 4.32 0.28 1.35 inf; +décarrerait décarrer VER 0.68 4.32 0.00 0.07 cnd:pre:3s; +décarres décarrer VER 0.68 4.32 0.00 0.07 ind:pre:2s; +décarré décarrer VER m s 0.68 4.32 0.00 0.27 par:pas; +décarrés décarrer VER m p 0.68 4.32 0.00 0.07 par:pas; +ducasse ducasse NOM f s 0.01 0.27 0.01 0.20 +ducasses ducasse NOM f p 0.01 0.27 0.00 0.07 +ducat ducat NOM m s 1.00 1.28 0.20 0.07 +décathlon décathlon NOM m s 0.27 0.07 0.26 0.07 +décathlons décathlon NOM m p 0.27 0.07 0.01 0.00 +décati décati ADJ m s 0.09 0.61 0.04 0.20 +décatie décati ADJ f s 0.09 0.61 0.04 0.20 +décatir décatir VER 0.01 0.47 0.00 0.14 inf; +décatis décati ADJ m p 0.09 0.61 0.01 0.20 +ducaton ducaton NOM m s 0.00 0.14 0.00 0.14 +ducats ducat NOM m p 1.00 1.28 0.80 1.22 +ducaux ducal ADJ m p 0.23 1.08 0.10 0.00 +décavé décavé ADJ m s 0.11 0.27 0.11 0.27 +duce duce NOM m s 2.21 2.97 2.21 2.91 +déceint déceindre VER 0.00 0.07 0.00 0.07 ind:pre:3s; +décela déceler VER 2.00 11.15 0.00 0.20 ind:pas:3s; +décelable décelable ADJ f s 0.04 0.20 0.04 0.20 +décelai déceler VER 2.00 11.15 0.00 0.14 ind:pas:1s; +décelaient déceler VER 2.00 11.15 0.00 0.14 ind:imp:3p; +décelais déceler VER 2.00 11.15 0.01 0.20 ind:imp:1s; +décelait déceler VER 2.00 11.15 0.01 0.74 ind:imp:3s; +décelant déceler VER 2.00 11.15 0.00 0.20 par:pre; +déceler déceler VER 2.00 11.15 0.87 6.01 inf; +décelèrent déceler VER 2.00 11.15 0.00 0.07 ind:pas:3p; +décelé déceler VER m s 2.00 11.15 0.57 2.03 par:pas; +décelée déceler VER f s 2.00 11.15 0.03 0.20 par:pas; +décelées déceler VER f p 2.00 11.15 0.01 0.14 par:pas; +décelés déceler VER m p 2.00 11.15 0.00 0.07 par:pas; +décembre décembre NOM m 8.55 31.22 8.55 31.15 +décembres décembre NOM m p 8.55 31.22 0.00 0.07 +décembriste décembriste NOM s 0.00 0.20 0.00 0.07 +décembristes décembriste NOM p 0.00 0.20 0.00 0.14 +décemment décemment ADV 0.96 2.57 0.96 2.57 +décence décence NOM f s 2.92 2.84 2.92 2.77 +décences décence NOM f p 2.92 2.84 0.00 0.07 +décennal décennal ADJ m s 0.02 0.07 0.01 0.07 +décennale décennal ADJ f s 0.02 0.07 0.01 0.00 +décennie décennie NOM f s 2.67 2.43 1.27 0.95 +décennies décennie NOM f p 2.67 2.43 1.41 1.49 +décent décent ADJ m s 5.95 4.32 2.67 1.89 +décente décent ADJ f s 5.95 4.32 2.50 1.82 +décentes décent ADJ f p 5.95 4.32 0.19 0.20 +décentralisation décentralisation NOM f s 0.00 0.07 0.00 0.07 +décentralisé décentraliser VER m s 0.12 0.14 0.12 0.00 par:pas; +décentralisée décentraliser VER f s 0.12 0.14 0.00 0.07 par:pas; +décentralisées décentraliser VER f p 0.12 0.14 0.00 0.07 par:pas; +décentrant décentrer VER 0.41 0.41 0.00 0.07 par:pre; +décentre décentrer VER 0.41 0.41 0.00 0.07 ind:pre:3s; +décentrement décentrement NOM m s 0.01 0.00 0.01 0.00 +décentrée décentrer VER f s 0.41 0.41 0.01 0.14 par:pas; +décentrées décentrer VER f p 0.41 0.41 0.40 0.14 par:pas; +décents décent ADJ m p 5.95 4.32 0.60 0.41 +déception déception NOM f s 6.65 16.82 5.46 13.04 +déceptions déception NOM f p 6.65 16.82 1.19 3.78 +décerna décerner VER 2.19 3.51 0.03 0.07 ind:pas:3s; +décernai décerner VER 2.19 3.51 0.00 0.07 ind:pas:1s; +décernais décerner VER 2.19 3.51 0.00 0.07 ind:imp:2s; +décernait décerner VER 2.19 3.51 0.19 0.41 ind:imp:3s; +décernant décerner VER 2.19 3.51 0.10 0.07 par:pre; +décerne décerner VER 2.19 3.51 0.19 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décernent décerner VER 2.19 3.51 0.02 0.14 ind:pre:3p; +décerner décerner VER 2.19 3.51 0.45 0.88 inf; +décernera décerner VER 2.19 3.51 0.02 0.00 ind:fut:3s; +décerniez décerner VER 2.19 3.51 0.02 0.00 ind:imp:2p; +décernons décerner VER 2.19 3.51 0.16 0.00 imp:pre:1p;ind:pre:1p; +décerné décerner VER m s 2.19 3.51 0.65 0.61 par:pas; +décernée décerner VER f s 2.19 3.51 0.09 0.47 par:pas; +décernées décerner VER f p 2.19 3.51 0.12 0.20 par:pas; +décernés décerner VER m p 2.19 3.51 0.14 0.14 par:pas; +décervelage décervelage NOM m s 0.00 0.14 0.00 0.14 +décerveler décerveler VER 0.08 0.27 0.02 0.00 inf; +décervelle décerveler VER 0.08 0.27 0.00 0.14 ind:pre:3s; +décervelé décerveler VER m s 0.08 0.27 0.06 0.14 par:pas; +duces duce NOM m p 2.21 2.97 0.00 0.07 +décesse décesser VER 0.00 0.14 0.00 0.07 ind:pre:3s; +décessé décesser VER m s 0.00 0.14 0.00 0.07 par:pas; +décevaient décevoir VER 32.30 21.69 0.00 0.20 ind:imp:3p; +décevais décevoir VER 32.30 21.69 0.03 0.20 ind:imp:1s; +décevait décevoir VER 32.30 21.69 0.02 0.81 ind:imp:3s; +décevant décevant ADJ m s 2.06 4.59 1.36 2.23 +décevante décevant ADJ f s 2.06 4.59 0.57 1.49 +décevantes décevant ADJ f p 2.06 4.59 0.08 0.34 +décevants décevant ADJ m p 2.06 4.59 0.04 0.54 +décevez décevoir VER 32.30 21.69 1.69 0.14 imp:pre:2p;ind:pre:2p; +déceviez décevoir VER 32.30 21.69 0.02 0.00 ind:imp:2p; +décevoir décevoir VER 32.30 21.69 7.65 3.85 inf; +décevons décevoir VER 32.30 21.69 0.07 0.00 imp:pre:1p;ind:pre:1p; +décevra décevoir VER 32.30 21.69 0.22 0.00 ind:fut:3s; +décevrai décevoir VER 32.30 21.69 0.92 0.07 ind:fut:1s; +décevraient décevoir VER 32.30 21.69 0.00 0.07 cnd:pre:3p; +décevrais décevoir VER 32.30 21.69 0.15 0.00 cnd:pre:1s;cnd:pre:2s; +décevrait décevoir VER 32.30 21.69 0.09 0.20 cnd:pre:3s; +décevras décevoir VER 32.30 21.69 0.22 0.00 ind:fut:2s; +décevrez décevoir VER 32.30 21.69 0.07 0.00 ind:fut:2p; +déchaîna déchaîner VER 6.37 13.18 0.13 1.35 ind:pas:3s; +déchaînaient déchaîner VER 6.37 13.18 0.02 1.22 ind:imp:3p; +déchaînais déchaîner VER 6.37 13.18 0.01 0.14 ind:imp:1s;ind:imp:2s; +déchaînait déchaîner VER 6.37 13.18 0.43 2.43 ind:imp:3s; +déchaînant déchaîner VER 6.37 13.18 0.01 0.27 par:pre; +déchaîne déchaîner VER 6.37 13.18 1.16 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchaînement déchaînement NOM m s 0.14 3.38 0.14 2.57 +déchaînements déchaînement NOM m p 0.14 3.38 0.01 0.81 +déchaînent déchaîner VER 6.37 13.18 0.38 0.54 ind:pre:3p; +déchaîner déchaîner VER 6.37 13.18 1.32 2.36 inf; +déchaînera déchaîner VER 6.37 13.18 0.06 0.00 ind:fut:3s; +déchaînerait déchaîner VER 6.37 13.18 0.04 0.14 cnd:pre:3s; +déchaîneras déchaîner VER 6.37 13.18 0.00 0.07 ind:fut:2s; +déchaînez déchaîner VER 6.37 13.18 0.06 0.07 imp:pre:2p;ind:pre:2p; +déchaînât déchaîner VER 6.37 13.18 0.00 0.07 sub:imp:3s; +déchaînèrent déchaîner VER 6.37 13.18 0.00 0.07 ind:pas:3p; +déchaîné déchaîner VER m s 6.37 13.18 0.97 1.62 par:pas; +déchaînée déchaîner VER f s 6.37 13.18 0.95 0.68 par:pas; +déchaînées déchaîné ADJ f p 1.29 4.80 0.35 0.81 +déchaînés déchaîner VER m p 6.37 13.18 0.69 0.41 par:pas; +déchait décher VER 0.00 0.34 0.00 0.14 ind:imp:3s; +déchanta déchanter VER 0.05 1.55 0.00 0.14 ind:pas:3s; +déchantai déchanter VER 0.05 1.55 0.00 0.14 ind:pas:1s; +déchantait déchanter VER 0.05 1.55 0.00 0.14 ind:imp:3s; +déchantant déchanter VER 0.05 1.55 0.00 0.07 par:pre; +déchante déchanter VER 0.05 1.55 0.02 0.07 imp:pre:2s;ind:pre:3s; +déchantent déchanter VER 0.05 1.55 0.00 0.14 ind:pre:3p; +déchanter déchanter VER 0.05 1.55 0.02 0.61 inf; +déchanterais déchanter VER 0.05 1.55 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +déchantèrent déchanter VER 0.05 1.55 0.00 0.07 ind:pas:3p; +déchanté déchanter VER m s 0.05 1.55 0.00 0.14 par:pas; +déchard déchard NOM m s 0.00 0.27 0.00 0.20 +déchards déchard NOM m p 0.00 0.27 0.00 0.07 +décharge décharge NOM f s 9.30 12.77 7.62 11.35 +déchargea décharger VER 10.12 11.89 0.01 0.47 ind:pas:3s; +déchargeaient décharger VER 10.12 11.89 0.12 0.81 ind:imp:3p; +déchargeait décharger VER 10.12 11.89 0.05 1.01 ind:imp:3s; +déchargeant décharger VER 10.12 11.89 0.04 0.47 par:pre; +déchargement déchargement NOM m s 0.53 0.88 0.53 0.88 +déchargent décharger VER 10.12 11.89 0.30 0.20 ind:pre:3p; +déchargeons décharger VER 10.12 11.89 0.11 0.00 imp:pre:1p; +déchargeât décharger VER 10.12 11.89 0.00 0.07 sub:imp:3s; +décharger décharger VER 10.12 11.89 3.88 4.32 inf; +déchargera décharger VER 10.12 11.89 0.17 0.07 ind:fut:3s; +déchargerais décharger VER 10.12 11.89 0.00 0.07 cnd:pre:1s; +déchargerait décharger VER 10.12 11.89 0.00 0.14 cnd:pre:3s; +déchargerez décharger VER 10.12 11.89 0.00 0.07 ind:fut:2p; +décharges décharge NOM f p 9.30 12.77 1.68 1.42 +déchargeur déchargeur NOM m s 0.03 0.07 0.03 0.07 +déchargez décharger VER 10.12 11.89 1.13 0.00 imp:pre:2p;ind:pre:2p; +déchargions décharger VER 10.12 11.89 0.01 0.07 ind:imp:1p; +déchargèrent décharger VER 10.12 11.89 0.00 0.14 ind:pas:3p; +déchargé décharger VER m s 10.12 11.89 1.80 1.28 par:pas; +déchargée décharger VER f s 10.12 11.89 0.22 0.34 par:pas; +déchargées décharger VER f p 10.12 11.89 0.06 0.14 par:pas; +déchargés décharger VER m p 10.12 11.89 0.22 0.41 par:pas; +décharne décharner VER 0.20 1.62 0.00 0.07 ind:pre:3s; +décharnement décharnement NOM m s 0.00 0.07 0.00 0.07 +décharnent décharner VER 0.20 1.62 0.00 0.07 ind:pre:3p; +décharner décharner VER 0.20 1.62 0.00 0.20 inf; +décharnerait décharner VER 0.20 1.62 0.00 0.07 cnd:pre:3s; +décharné décharner VER m s 0.20 1.62 0.17 0.27 par:pas; +décharnée décharné ADJ f s 0.17 5.20 0.04 1.35 +décharnées décharné ADJ f p 0.17 5.20 0.02 0.41 +décharnés décharné ADJ m p 0.17 5.20 0.01 0.88 +déchassé déchasser VER m s 0.00 0.07 0.00 0.07 par:pas; +déchaumaient déchaumer VER 0.00 0.14 0.00 0.07 ind:imp:3p; +déchaumée déchaumer VER f s 0.00 0.14 0.00 0.07 par:pas; +déchaussa déchausser VER 0.73 2.91 0.00 0.41 ind:pas:3s; +déchaussaient déchausser VER 0.73 2.91 0.00 0.07 ind:imp:3p; +déchaussait déchausser VER 0.73 2.91 0.00 0.27 ind:imp:3s; +déchaussant déchausser VER 0.73 2.91 0.00 0.14 par:pre; +déchausse déchausser VER 0.73 2.91 0.23 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchaussent déchausser VER 0.73 2.91 0.00 0.07 ind:pre:3p; +déchausser déchausser VER 0.73 2.91 0.21 0.68 inf; +déchausserais déchausser VER 0.73 2.91 0.01 0.00 cnd:pre:1s; +déchaussez déchausser VER 0.73 2.91 0.28 0.00 imp:pre:2p;ind:pre:2p; +déchaussé déchaussé ADJ m s 0.05 0.95 0.02 0.27 +déchaussée déchaussé ADJ f s 0.05 0.95 0.01 0.20 +déchaussées déchaussé ADJ f p 0.05 0.95 0.01 0.07 +déchaussés déchaussé ADJ m p 0.05 0.95 0.01 0.41 +décher décher VER 0.00 0.34 0.00 0.14 inf; +duchesse duc NOM f s 12.40 23.51 3.99 6.15 +duchesses duc NOM f p 12.40 23.51 0.06 0.95 +déchet déchet NOM m s 7.04 6.42 1.27 1.96 +déchets déchet NOM m p 7.04 6.42 5.77 4.46 +déchetterie déchetterie NOM f s 0.11 0.00 0.11 0.00 +déchiffra déchiffrer VER 4.88 15.81 0.00 0.54 ind:pas:3s; +déchiffrable déchiffrable ADJ m s 0.02 0.47 0.02 0.27 +déchiffrables déchiffrable ADJ m p 0.02 0.47 0.00 0.20 +déchiffrage déchiffrage NOM m s 0.06 0.41 0.06 0.41 +déchiffrai déchiffrer VER 4.88 15.81 0.00 0.14 ind:pas:1s; +déchiffraient déchiffrer VER 4.88 15.81 0.00 0.07 ind:imp:3p; +déchiffrais déchiffrer VER 4.88 15.81 0.01 0.41 ind:imp:1s;ind:imp:2s; +déchiffrait déchiffrer VER 4.88 15.81 0.01 1.35 ind:imp:3s; +déchiffrant déchiffrer VER 4.88 15.81 0.03 0.27 par:pre; +déchiffre déchiffrer VER 4.88 15.81 0.13 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchiffrement déchiffrement NOM m s 0.04 1.22 0.04 1.22 +déchiffrent déchiffrer VER 4.88 15.81 0.16 0.14 ind:pre:3p; +déchiffrer déchiffrer VER 4.88 15.81 3.08 10.07 inf; +déchiffrera déchiffrer VER 4.88 15.81 0.17 0.00 ind:fut:3s; +déchiffreur déchiffreur NOM m s 0.01 0.14 0.01 0.14 +déchiffrez déchiffrer VER 4.88 15.81 0.03 0.00 imp:pre:2p; +déchiffrions déchiffrer VER 4.88 15.81 0.00 0.20 ind:imp:1p; +déchiffrâmes déchiffrer VER 4.88 15.81 0.00 0.07 ind:pas:1p; +déchiffrât déchiffrer VER 4.88 15.81 0.14 0.14 sub:imp:3s; +déchiffrèrent déchiffrer VER 4.88 15.81 0.00 0.07 ind:pas:3p; +déchiffré déchiffrer VER m s 4.88 15.81 1.01 0.68 par:pas; +déchiffrée déchiffrer VER f s 4.88 15.81 0.06 0.14 par:pas; +déchiffrées déchiffrer VER f p 4.88 15.81 0.01 0.07 par:pas; +déchiffrés déchiffrer VER m p 4.88 15.81 0.04 0.20 par:pas; +déchiqueta déchiqueter VER 2.46 5.74 0.00 0.14 ind:pas:3s; +déchiquetage déchiquetage NOM m s 0.00 0.27 0.00 0.27 +déchiquetaient déchiqueter VER 2.46 5.74 0.04 0.20 ind:imp:3p; +déchiquetait déchiqueter VER 2.46 5.74 0.00 0.07 ind:imp:3s; +déchiquetant déchiqueter VER 2.46 5.74 0.03 0.27 par:pre; +déchiqueter déchiqueter VER 2.46 5.74 0.92 1.35 inf; +déchiqueteur déchiqueteur NOM m s 0.02 0.20 0.01 0.07 +déchiqueteurs déchiqueteur NOM m p 0.02 0.20 0.00 0.07 +déchiqueteuse déchiqueteuse NOM f s 0.07 0.00 0.07 0.00 +déchiqueteuses déchiqueteur NOM f p 0.02 0.20 0.00 0.07 +déchiquetons déchiqueter VER 2.46 5.74 0.00 0.07 ind:pre:1p; +déchiquette déchiqueter VER 2.46 5.74 0.14 0.27 imp:pre:2s;ind:pre:3s; +déchiquettent déchiqueter VER 2.46 5.74 0.04 0.14 ind:pre:3p; +déchiquettes déchiqueter VER 2.46 5.74 0.00 0.07 ind:pre:2s; +déchiqueté déchiqueter VER m s 2.46 5.74 0.93 1.15 par:pas; +déchiquetée déchiqueter VER f s 2.46 5.74 0.15 0.68 par:pas; +déchiquetées déchiqueter VER f p 2.46 5.74 0.04 0.27 par:pas; +déchiquetés déchiqueter VER m p 2.46 5.74 0.18 1.08 par:pas; +déchira déchirer VER 26.46 53.11 0.17 5.00 ind:pas:3s; +déchirage déchirage NOM m s 0.00 0.14 0.00 0.07 +déchirages déchirage NOM m p 0.00 0.14 0.00 0.07 +déchirai déchirer VER 26.46 53.11 0.14 0.47 ind:pas:1s; +déchiraient déchirer VER 26.46 53.11 0.06 2.70 ind:imp:3p; +déchirais déchirer VER 26.46 53.11 0.03 0.34 ind:imp:1s;ind:imp:2s; +déchirait déchirer VER 26.46 53.11 0.39 4.86 ind:imp:3s; +déchirant déchirer VER 26.46 53.11 0.49 2.97 par:pre; +déchirante déchirant ADJ f s 0.64 10.27 0.10 3.99 +déchirantes déchirant ADJ f p 0.64 10.27 0.02 1.22 +déchirants déchirant ADJ m p 0.64 10.27 0.15 2.03 +déchire déchirer VER 26.46 53.11 7.45 8.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déchirement déchirement NOM m s 0.36 5.68 0.23 4.05 +déchirements déchirement NOM m p 0.36 5.68 0.13 1.62 +déchirent déchirer VER 26.46 53.11 1.26 2.09 ind:pre:3p; +déchirer déchirer VER 26.46 53.11 4.27 8.72 inf;; +déchirera déchirer VER 26.46 53.11 0.13 0.07 ind:fut:3s; +déchirerai déchirer VER 26.46 53.11 0.35 0.07 ind:fut:1s; +déchireraient déchirer VER 26.46 53.11 0.14 0.14 cnd:pre:3p; +déchirerais déchirer VER 26.46 53.11 0.14 0.27 cnd:pre:1s;cnd:pre:2s; +déchirerait déchirer VER 26.46 53.11 0.04 0.20 cnd:pre:3s; +déchireras déchirer VER 26.46 53.11 0.02 0.00 ind:fut:2s; +déchirerons déchirer VER 26.46 53.11 0.04 0.00 ind:fut:1p; +déchireront déchirer VER 26.46 53.11 0.07 0.07 ind:fut:3p; +déchires déchirer VER 26.46 53.11 0.81 0.07 ind:pre:2s; +déchireur déchireur NOM m s 0.02 0.00 0.02 0.00 +déchirez déchirer VER 26.46 53.11 0.84 0.07 imp:pre:2p;ind:pre:2p; +déchiriez déchirer VER 26.46 53.11 0.02 0.07 ind:imp:2p; +déchirions déchirer VER 26.46 53.11 0.00 0.14 ind:imp:1p; +déchirons déchirer VER 26.46 53.11 0.17 0.07 imp:pre:1p;ind:pre:1p; +déchirât déchirer VER 26.46 53.11 0.00 0.07 sub:imp:3s; +déchirèrent déchirer VER 26.46 53.11 0.02 0.68 ind:pas:3p; +déchiré déchirer VER m s 26.46 53.11 6.50 8.24 par:pas; +déchirée déchirer VER f s 26.46 53.11 2.11 3.31 par:pas; +déchirées déchirer VER f p 26.46 53.11 0.35 1.01 par:pas; +déchirure déchirure NOM f s 1.58 7.03 1.03 4.80 +déchirures déchirure NOM f p 1.58 7.03 0.55 2.23 +déchirés déchiré ADJ m p 5.59 13.38 0.70 3.31 +duchnoque duchnoque NOM s 0.02 0.07 0.02 0.07 +déchoient déchoir VER 0.88 3.04 0.00 0.07 ind:pre:3p; +déchoir déchoir VER 0.88 3.04 0.01 1.49 inf; +déchoirons déchoir VER 0.88 3.04 0.00 0.07 ind:fut:1p; +déchouer déchouer VER 0.01 0.00 0.01 0.00 inf; +déchristianise déchristianiser VER 0.00 0.07 0.00 0.07 ind:pre:3s; +déché décher VER m s 0.00 0.34 0.00 0.07 par:pas; +déchu déchu ADJ m s 1.10 3.85 0.59 1.76 +duché duché NOM m s 0.06 0.14 0.06 0.14 +déchéance déchéance NOM f s 1.67 6.42 1.67 6.28 +déchéances déchéance NOM f p 1.67 6.42 0.00 0.14 +déchue déchu ADJ f s 1.10 3.85 0.19 0.88 +déchues déchoir VER f p 0.88 3.04 0.14 0.07 par:pas; +déchus déchu ADJ m p 1.10 3.85 0.28 0.81 +déci déci NOM m s 0.01 0.00 0.01 0.00 +décibel décibel NOM m s 0.40 0.88 0.04 0.00 +décibels décibel NOM m p 0.40 0.88 0.37 0.88 +décida décider VER 207.76 214.19 3.86 36.82 ind:pas:3s; +décidai décider VER 207.76 214.19 2.04 11.08 ind:pas:1s; +décidaient décider VER 207.76 214.19 0.38 1.96 ind:imp:3p; +décidais décider VER 207.76 214.19 0.77 1.28 ind:imp:1s;ind:imp:2s; +décidait décider VER 207.76 214.19 0.68 6.69 ind:imp:3s; +décidant décider VER 207.76 214.19 0.48 2.64 par:pre; +décide décider VER 207.76 214.19 31.25 20.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +décident décider VER 207.76 214.19 3.37 2.57 ind:pre:3p; +décider décider VER 207.76 214.19 42.27 27.16 inf; +décidera décider VER 207.76 214.19 3.48 2.16 ind:fut:3s; +déciderai décider VER 207.76 214.19 1.73 0.07 ind:fut:1s; +décideraient décider VER 207.76 214.19 0.01 0.61 cnd:pre:3p; +déciderais décider VER 207.76 214.19 0.14 0.20 cnd:pre:1s;cnd:pre:2s; +déciderait décider VER 207.76 214.19 0.42 1.15 cnd:pre:3s; +décideras décider VER 207.76 214.19 0.76 0.54 ind:fut:2s; +déciderez décider VER 207.76 214.19 0.47 0.34 ind:fut:2p; +décideriez décider VER 207.76 214.19 0.09 0.14 cnd:pre:2p; +déciderions décider VER 207.76 214.19 0.01 0.00 cnd:pre:1p; +déciderons décider VER 207.76 214.19 0.35 0.14 ind:fut:1p; +décideront décider VER 207.76 214.19 0.89 0.74 ind:fut:3p; +décides décider VER 207.76 214.19 8.15 1.89 ind:pre:2s; +décideur décideur NOM m s 0.23 0.00 0.12 0.00 +décideurs décideur NOM m p 0.23 0.00 0.11 0.00 +décidez décider VER 207.76 214.19 6.25 0.88 imp:pre:2p;ind:pre:2p; +décidiez décider VER 207.76 214.19 0.58 0.14 ind:imp:2p; +décidions décider VER 207.76 214.19 0.20 0.41 ind:imp:1p; +décidâmes décider VER 207.76 214.19 0.02 1.62 ind:pas:1p; +décidons décider VER 207.76 214.19 1.42 0.68 imp:pre:1p;ind:pre:1p; +décidât décider VER 207.76 214.19 0.00 1.08 sub:imp:3s; +décidèrent décider VER 207.76 214.19 0.65 5.27 ind:pas:3p; +décidé décider VER m s 207.76 214.19 92.08 73.78 par:pas;par:pas;par:pas; +décidée décider VER f s 207.76 214.19 3.63 7.50 par:pas; +décidées décider VER f p 207.76 214.19 0.13 0.88 par:pas; +décidément décidément ADV 3.88 30.81 3.88 30.81 +décidés décider VER m p 207.76 214.19 1.23 3.18 par:pas; +décigramme décigramme NOM m s 0.14 0.00 0.01 0.00 +décigrammes décigramme NOM m p 0.14 0.00 0.14 0.00 +décile décile NOM m s 0.01 0.00 0.01 0.00 +décilitre décilitre NOM m s 0.03 0.07 0.03 0.07 +décima décimer VER 3.30 3.85 0.04 0.00 ind:pas:3s; +décimaient décimer VER 3.30 3.85 0.00 0.14 ind:imp:3p; +décimait décimer VER 3.30 3.85 0.01 0.27 ind:imp:3s; +décimal décimal ADJ m s 0.34 0.47 0.09 0.07 +décimale décimal ADJ f s 0.34 0.47 0.11 0.20 +décimales décimal ADJ f p 0.34 0.47 0.15 0.20 +décimalisation décimalisation NOM f s 0.01 0.00 0.01 0.00 +décimalité décimalité NOM f s 0.01 0.00 0.01 0.00 +décimant décimer VER 3.30 3.85 0.01 0.00 par:pre; +décimateur décimateur NOM m s 0.01 0.00 0.01 0.00 +décimation décimation NOM f s 0.42 0.20 0.42 0.20 +décime décimer VER 3.30 3.85 0.46 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déciment décimer VER 3.30 3.85 0.14 0.00 ind:pre:3p; +décimer décimer VER 3.30 3.85 0.41 0.27 inf; +décimera décimer VER 3.30 3.85 0.01 0.00 ind:fut:3s; +décimerai décimer VER 3.30 3.85 0.01 0.00 ind:fut:1s; +décimerait décimer VER 3.30 3.85 0.03 0.00 cnd:pre:3s; +décimeront décimer VER 3.30 3.85 0.01 0.07 ind:fut:3p; +décimes décime NOM m p 0.00 0.07 0.00 0.07 +décimèrent décimer VER 3.30 3.85 0.00 0.07 ind:pas:3p; +décimètre décimètre NOM m s 0.03 0.81 0.01 0.54 +décimètres décimètre NOM m p 0.03 0.81 0.01 0.27 +décimé décimer VER m s 3.30 3.85 0.97 0.74 par:pas; +décimée décimer VER f s 3.30 3.85 0.35 0.88 par:pas; +décimées décimer VER f p 3.30 3.85 0.15 0.54 par:pas; +décimés décimer VER m p 3.30 3.85 0.68 0.68 par:pas; +décisif décisif ADJ m s 3.85 16.01 1.96 7.03 +décisifs décisif ADJ m p 3.85 16.01 0.17 1.69 +décision_clé décision_clé NOM f s 0.01 0.00 0.01 0.00 +décision décision NOM f s 66.48 60.00 54.63 47.77 +décisionnaire décisionnaire NOM s 0.04 0.00 0.04 0.00 +décisionnel décisionnel ADJ m s 0.05 0.00 0.04 0.00 +décisionnelles décisionnel ADJ f p 0.05 0.00 0.01 0.00 +décisions décision NOM f p 66.48 60.00 11.85 12.23 +décisive décisif ADJ f s 3.85 16.01 1.47 5.95 +décisives décisif ADJ f p 3.85 16.01 0.25 1.35 +décivilisés déciviliser VER m p 0.00 0.07 0.00 0.07 par:pas; +déclama déclamer VER 0.63 5.00 0.00 0.47 ind:pas:3s; +déclamai déclamer VER 0.63 5.00 0.00 0.07 ind:pas:1s; +déclamaient déclamer VER 0.63 5.00 0.00 0.20 ind:imp:3p; +déclamais déclamer VER 0.63 5.00 0.01 0.20 ind:imp:1s;ind:imp:2s; +déclamait déclamer VER 0.63 5.00 0.03 1.22 ind:imp:3s; +déclamant déclamer VER 0.63 5.00 0.01 0.47 par:pre; +déclamation déclamation NOM f s 0.04 0.81 0.03 0.68 +déclamations déclamation NOM f p 0.04 0.81 0.01 0.14 +déclamatoire déclamatoire ADJ s 0.02 0.54 0.01 0.34 +déclamatoires déclamatoire ADJ f p 0.02 0.54 0.01 0.20 +déclamatrice déclamateur NOM f s 0.00 0.14 0.00 0.14 +déclame déclamer VER 0.63 5.00 0.05 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclamer déclamer VER 0.63 5.00 0.53 1.22 inf; +déclamera déclamer VER 0.63 5.00 0.00 0.07 ind:fut:3s; +déclamerait déclamer VER 0.63 5.00 0.01 0.07 cnd:pre:3s; +déclamât déclamer VER 0.63 5.00 0.00 0.07 sub:imp:3s; +déclamé déclamer VER m s 0.63 5.00 0.00 0.20 par:pas; +déclamée déclamer VER f s 0.63 5.00 0.00 0.14 par:pas; +déclanche déclancher VER 0.22 0.14 0.01 0.07 ind:pre:3s; +déclancher déclancher VER 0.22 0.14 0.14 0.07 inf; +déclanchera déclancher VER 0.22 0.14 0.01 0.00 ind:fut:3s; +déclanché déclancher VER m s 0.22 0.14 0.06 0.00 par:pas; +déclara déclarer VER 41.59 73.18 0.89 20.00 ind:pas:3s; +déclarai déclarer VER 41.59 73.18 0.00 3.65 ind:pas:1s; +déclaraient déclarer VER 41.59 73.18 0.22 0.95 ind:imp:3p; +déclarais déclarer VER 41.59 73.18 0.00 0.68 ind:imp:1s; +déclarait déclarer VER 41.59 73.18 0.26 6.96 ind:imp:3s; +déclarant déclarer VER 41.59 73.18 0.27 3.65 par:pre; +déclaration déclaration NOM f s 19.74 21.82 16.49 15.68 +déclarations déclaration NOM f p 19.74 21.82 3.25 6.15 +déclarative déclaratif ADJ f s 0.00 0.07 0.00 0.07 +déclaratoire déclaratoire ADJ s 0.03 0.00 0.03 0.00 +déclare déclarer VER 41.59 73.18 13.13 9.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclarent déclarer VER 41.59 73.18 0.75 1.08 ind:pre:3p; +déclarer déclarer VER 41.59 73.18 6.85 7.97 inf; +déclarera déclarer VER 41.59 73.18 0.28 0.20 ind:fut:3s; +déclarerai déclarer VER 41.59 73.18 0.18 0.00 ind:fut:1s; +déclarerais déclarer VER 41.59 73.18 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +déclarerait déclarer VER 41.59 73.18 0.04 0.27 cnd:pre:3s; +déclareriez déclarer VER 41.59 73.18 0.03 0.00 cnd:pre:2p; +déclarerions déclarer VER 41.59 73.18 0.00 0.07 cnd:pre:1p; +déclarerons déclarer VER 41.59 73.18 0.02 0.07 ind:fut:1p; +déclareront déclarer VER 41.59 73.18 0.16 0.00 ind:fut:3p; +déclares déclarer VER 41.59 73.18 0.11 0.00 ind:pre:2s; +déclarez déclarer VER 41.59 73.18 1.03 0.27 imp:pre:2p;ind:pre:2p; +déclariez déclarer VER 41.59 73.18 0.17 0.07 ind:imp:2p; +déclarions déclarer VER 41.59 73.18 0.01 0.07 ind:imp:1p; +déclarons déclarer VER 41.59 73.18 1.16 0.41 imp:pre:1p;ind:pre:1p; +déclarât déclarer VER 41.59 73.18 0.00 0.14 sub:imp:3s; +déclarèrent déclarer VER 41.59 73.18 0.01 0.54 ind:pas:3p; +déclaré déclarer VER m s 41.59 73.18 13.37 13.72 par:pas;par:pas;par:pas; +déclarée déclarer VER f s 41.59 73.18 2.04 1.62 par:pas; +déclarées déclarer VER f p 41.59 73.18 0.05 0.20 par:pas; +déclarés déclarer VER m p 41.59 73.18 0.54 0.68 par:pas; +déclasse déclasser VER 0.21 0.54 0.02 0.14 ind:pre:1s;ind:pre:3s; +déclassement déclassement NOM m s 0.00 0.20 0.00 0.20 +déclasser déclasser VER 0.21 0.54 0.14 0.20 inf; +déclassé déclassé ADJ m s 0.14 0.07 0.14 0.00 +déclassée déclasser VER f s 0.21 0.54 0.01 0.00 par:pas; +déclassées déclasser VER f p 0.21 0.54 0.01 0.00 par:pas; +déclassés déclassé NOM m p 0.00 0.95 0.00 0.20 +déclavetées déclaveter VER f p 0.00 0.07 0.00 0.07 par:pas; +déclencha déclencher VER 19.23 22.91 0.16 2.30 ind:pas:3s; +déclenchai déclencher VER 19.23 22.91 0.00 0.07 ind:pas:1s; +déclenchaient déclencher VER 19.23 22.91 0.18 0.34 ind:imp:3p; +déclenchait déclencher VER 19.23 22.91 0.11 1.89 ind:imp:3s; +déclenchant déclencher VER 19.23 22.91 0.39 0.74 par:pre; +déclenche déclencher VER 19.23 22.91 3.27 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclenchement déclenchement NOM m s 0.53 2.50 0.53 2.50 +déclenchent déclencher VER 19.23 22.91 0.63 0.68 ind:pre:3p; +déclencher déclencher VER 19.23 22.91 4.71 5.88 inf; +déclenchera déclencher VER 19.23 22.91 0.53 0.20 ind:fut:3s; +déclencherai déclencher VER 19.23 22.91 0.08 0.00 ind:fut:1s; +déclencheraient déclencher VER 19.23 22.91 0.00 0.07 cnd:pre:3p; +déclencherais déclencher VER 19.23 22.91 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +déclencherait déclencher VER 19.23 22.91 0.34 0.07 cnd:pre:3s; +déclencherez déclencher VER 19.23 22.91 0.14 0.07 ind:fut:2p; +déclencherons déclencher VER 19.23 22.91 0.05 0.00 ind:fut:1p; +déclencheront déclencher VER 19.23 22.91 0.05 0.00 ind:fut:3p; +déclencheur déclencheur NOM m s 0.94 0.07 0.84 0.07 +déclencheurs déclencheur NOM m p 0.94 0.07 0.09 0.00 +déclenchez déclencher VER 19.23 22.91 0.60 0.00 imp:pre:2p;ind:pre:2p; +déclenchions déclencher VER 19.23 22.91 0.00 0.07 ind:imp:1p; +déclenchons déclencher VER 19.23 22.91 0.13 0.00 imp:pre:1p;ind:pre:1p; +déclenchât déclencher VER 19.23 22.91 0.00 0.07 sub:imp:3s; +déclenchèrent déclencher VER 19.23 22.91 0.03 0.54 ind:pas:3p; +déclenché déclencher VER m s 19.23 22.91 5.29 3.65 par:pas; +déclenchée déclencher VER f s 19.23 22.91 2.12 2.09 par:pas; +déclenchées déclencher VER f p 19.23 22.91 0.29 0.41 par:pas; +déclenchés déclencher VER m p 19.23 22.91 0.09 0.20 par:pas; +déclic déclic NOM m s 1.13 7.97 0.96 7.50 +déclics déclic NOM m p 1.13 7.97 0.17 0.47 +déclin déclin NOM m s 1.73 6.42 1.73 6.08 +déclina décliner VER 3.55 11.28 0.12 1.08 ind:pas:3s; +déclinai décliner VER 3.55 11.28 0.00 0.34 ind:pas:1s; +déclinaient décliner VER 3.55 11.28 0.00 0.14 ind:imp:3p; +déclinais décliner VER 3.55 11.28 0.01 0.20 ind:imp:1s; +déclinaison déclinaison NOM f s 0.23 0.47 0.09 0.20 +déclinaisons déclinaison NOM f p 0.23 0.47 0.14 0.27 +déclinait décliner VER 3.55 11.28 0.28 2.50 ind:imp:3s; +déclinant décliner VER 3.55 11.28 0.16 0.81 par:pre; +déclinante déclinant ADJ f s 0.06 2.97 0.04 1.08 +déclinants déclinant ADJ m p 0.06 2.97 0.00 0.20 +décline décliner VER 3.55 11.28 1.11 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déclinent décliner VER 3.55 11.28 0.12 0.27 ind:pre:3p; +décliner décliner VER 3.55 11.28 0.58 2.23 inf; +déclinera décliner VER 3.55 11.28 0.01 0.00 ind:fut:3s; +déclines décliner VER 3.55 11.28 0.04 0.07 ind:pre:2s; +déclinez décliner VER 3.55 11.28 0.42 0.00 imp:pre:2p;ind:pre:2p; +déclinions décliner VER 3.55 11.28 0.00 0.14 ind:imp:1p; +déclins déclin NOM m p 1.73 6.42 0.00 0.34 +déclinèrent décliner VER 3.55 11.28 0.00 0.07 ind:pas:3p; +décliné décliner VER m s 3.55 11.28 0.63 1.08 par:pas; +déclinée décliner VER f s 3.55 11.28 0.07 0.07 par:pas; +déclique décliquer VER 0.01 0.00 0.01 0.00 ind:pre:1s; +décliqueté décliqueter VER m s 0.00 0.07 0.00 0.07 par:pas; +déclive déclive ADJ f s 0.00 0.34 0.00 0.27 +déclives déclive ADJ f p 0.00 0.34 0.00 0.07 +déclivité déclivité NOM f s 0.01 1.08 0.01 0.74 +déclivités déclivité NOM f p 0.01 1.08 0.00 0.34 +décloisonnée décloisonner VER f s 0.00 0.07 0.00 0.07 par:pas; +déclose déclore VER f s 0.01 0.00 0.01 0.00 par:pas; +décloses déclos ADJ f p 0.00 0.14 0.00 0.07 +déclouer déclouer VER 0.11 0.88 0.10 0.14 inf; +déclouèrent déclouer VER 0.11 0.88 0.00 0.14 ind:pas:3p; +décloué déclouer VER m s 0.11 0.88 0.00 0.20 par:pas; +déclouée déclouer VER f s 0.11 0.88 0.01 0.07 par:pas; +déclouées déclouer VER f p 0.11 0.88 0.00 0.34 par:pas; +déco déco ADJ 2.25 0.47 2.25 0.47 +décocha décocher VER 0.44 4.05 0.00 1.42 ind:pas:3s; +décochai décocher VER 0.44 4.05 0.00 0.07 ind:pas:1s; +décochaient décocher VER 0.44 4.05 0.00 0.07 ind:imp:3p; +décochais décocher VER 0.44 4.05 0.00 0.07 ind:imp:1s; +décochait décocher VER 0.44 4.05 0.01 0.27 ind:imp:3s; +décochant décocher VER 0.44 4.05 0.00 0.14 par:pre; +décoche décocher VER 0.44 4.05 0.23 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décochent décocher VER 0.44 4.05 0.00 0.07 ind:pre:3p; +décocher décocher VER 0.44 4.05 0.06 0.54 inf; +décochera décocher VER 0.44 4.05 0.02 0.00 ind:fut:3s; +décocheuses décocheur NOM f p 0.00 0.07 0.00 0.07 +décochez décocher VER 0.44 4.05 0.03 0.00 imp:pre:2p;ind:pre:2p; +décoché décocher VER m s 0.44 4.05 0.06 0.27 par:pas; +décochée décocher VER f s 0.44 4.05 0.01 0.14 par:pas; +décochées décocher VER f p 0.44 4.05 0.01 0.07 par:pas; +décoconne décoconner VER 0.00 0.14 0.00 0.07 imp:pre:2s; +décoconnerai décoconner VER 0.00 0.14 0.00 0.07 ind:fut:1s; +décoction décoction NOM f s 0.83 1.08 0.81 0.81 +décoctions décoction NOM f p 0.83 1.08 0.02 0.27 +décodage décodage NOM m s 0.19 0.14 0.19 0.00 +décodages décodage NOM m p 0.19 0.14 0.00 0.14 +décodait décoder VER 3.04 0.54 0.00 0.14 ind:imp:3s; +décodant décoder VER 3.04 0.54 0.01 0.00 par:pre; +décode décoder VER 3.04 0.54 0.38 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décodent décoder VER 3.04 0.54 0.02 0.00 ind:pre:3p; +décoder décoder VER 3.04 0.54 1.59 0.34 inf; +décoderai décoder VER 3.04 0.54 0.12 0.00 ind:fut:1s; +décodeur décodeur NOM m s 0.39 0.07 0.35 0.07 +décodeurs décodeur NOM m p 0.39 0.07 0.02 0.00 +décodeuse décodeur NOM f s 0.39 0.07 0.01 0.00 +décodez décoder VER 3.04 0.54 0.06 0.00 imp:pre:2p;ind:pre:2p; +décodons décoder VER 3.04 0.54 0.02 0.00 ind:pre:1p; +décodé décoder VER m s 3.04 0.54 0.71 0.07 par:pas; +décodée décoder VER f s 3.04 0.54 0.04 0.00 par:pas; +décodées décoder VER f p 3.04 0.54 0.04 0.00 par:pas; +décodés décoder VER m p 3.04 0.54 0.04 0.00 par:pas; +décoffrage décoffrage NOM m s 0.02 0.00 0.02 0.00 +décoffrés décoffrer VER m p 0.00 0.07 0.00 0.07 par:pas; +décoiffa décoiffer VER 1.37 3.18 0.00 0.07 ind:pas:3s; +décoiffait décoiffer VER 1.37 3.18 0.01 0.07 ind:imp:3s; +décoiffe décoiffer VER 1.37 3.18 0.29 0.14 imp:pre:2s;ind:pre:3s; +décoiffer décoiffer VER 1.37 3.18 0.20 0.20 inf; +décoiffera décoiffer VER 1.37 3.18 0.03 0.00 ind:fut:3s; +décoifferais décoiffer VER 1.37 3.18 0.00 0.07 cnd:pre:2s; +décoifferait décoiffer VER 1.37 3.18 0.00 0.07 cnd:pre:3s; +décoiffes décoiffer VER 1.37 3.18 0.12 0.07 ind:pre:2s; +décoiffez décoiffer VER 1.37 3.18 0.12 0.00 imp:pre:2p;ind:pre:2p; +décoiffé décoiffer VER m s 1.37 3.18 0.25 0.74 par:pas; +décoiffée décoiffer VER f s 1.37 3.18 0.30 1.49 par:pas; +décoiffées décoiffer VER f p 1.37 3.18 0.00 0.14 par:pas; +décoiffés décoiffer VER m p 1.37 3.18 0.04 0.14 par:pas; +décoince décoincer VER 0.93 0.27 0.16 0.00 imp:pre:2s;ind:pre:3s; +décoincer décoincer VER 0.93 0.27 0.61 0.20 inf; +décoincera décoincer VER 0.93 0.27 0.01 0.00 ind:fut:3s; +décoincerait décoincer VER 0.93 0.27 0.01 0.00 cnd:pre:3s; +décoinces décoincer VER 0.93 0.27 0.02 0.00 ind:pre:2s; +décoincez décoincer VER 0.93 0.27 0.03 0.00 imp:pre:2p;ind:pre:2p; +décoincé décoincer VER m s 0.93 0.27 0.06 0.00 par:pas; +décoinça décoincer VER 0.93 0.27 0.00 0.07 ind:pas:3s; +décoinçage décoinçage NOM m s 0.01 0.00 0.01 0.00 +décoinçant décoincer VER 0.93 0.27 0.02 0.00 par:pre; +décolla décoller VER 21.15 19.73 0.00 1.35 ind:pas:3s; +décollage décollage NOM m s 7.23 1.15 7.14 1.15 +décollages décollage NOM m p 7.23 1.15 0.09 0.00 +décollai décoller VER 21.15 19.73 0.00 0.07 ind:pas:1s; +décollaient décoller VER 21.15 19.73 0.02 0.88 ind:imp:3p; +décollais décoller VER 21.15 19.73 0.03 0.27 ind:imp:1s;ind:imp:2s; +décollait décoller VER 21.15 19.73 0.26 1.22 ind:imp:3s; +décollant décoller VER 21.15 19.73 0.07 1.15 par:pre; +décollassions décoller VER 21.15 19.73 0.10 0.00 sub:imp:1p; +décollation décollation NOM f s 0.01 0.07 0.01 0.07 +décolle décoller VER 21.15 19.73 5.89 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décollement décollement NOM m s 0.27 0.07 0.26 0.07 +décollements décollement NOM m p 0.27 0.07 0.01 0.00 +décollent décoller VER 21.15 19.73 0.75 0.27 ind:pre:3p; +décoller décoller VER 21.15 19.73 8.11 5.68 inf; +décollera décoller VER 21.15 19.73 0.77 0.00 ind:fut:3s; +décollerai décoller VER 21.15 19.73 0.16 0.00 ind:fut:1s; +décollerait décoller VER 21.15 19.73 0.14 0.07 cnd:pre:3s; +décolleras décoller VER 21.15 19.73 0.01 0.00 ind:fut:2s; +décollerons décoller VER 21.15 19.73 0.08 0.00 ind:fut:1p; +décolleront décoller VER 21.15 19.73 0.19 0.00 ind:fut:3p; +décolles décoller VER 21.15 19.73 0.12 0.07 ind:pre:2s; +décolleter décolleter VER 0.16 0.95 0.01 0.07 inf; +décolleté décolleté NOM m s 1.76 3.92 1.52 3.31 +décolletée décolleté ADJ f s 0.49 2.36 0.26 1.28 +décolletées décolleté ADJ f p 0.49 2.36 0.01 0.54 +décolletés décolleté NOM m p 1.76 3.92 0.25 0.61 +décollez décoller VER 21.15 19.73 0.60 0.07 imp:pre:2p;ind:pre:2p; +décollons décoller VER 21.15 19.73 0.56 0.00 imp:pre:1p;ind:pre:1p; +décollèrent décoller VER 21.15 19.73 0.00 0.14 ind:pas:3p; +décollé décoller VER m s 21.15 19.73 3.02 1.89 par:pas; +décollée décoller VER f s 21.15 19.73 0.21 1.01 par:pas; +décollées décoller VER f p 21.15 19.73 0.06 1.89 par:pas; +décollés décoller VER m p 21.15 19.73 0.01 0.61 par:pas; +décolonisation décolonisation NOM f s 0.00 0.41 0.00 0.41 +décolonise décoloniser VER 0.00 0.07 0.00 0.07 ind:pre:3s; +décolora décolorer VER 0.45 3.58 0.00 0.20 ind:pas:3s; +décoloraient décolorer VER 0.45 3.58 0.00 0.27 ind:imp:3p; +décolorait décolorer VER 0.45 3.58 0.01 0.68 ind:imp:3s; +décolorant décolorer VER 0.45 3.58 0.03 0.00 par:pre; +décoloration décoloration NOM f s 0.53 0.34 0.46 0.20 +décolorations décoloration NOM f p 0.53 0.34 0.08 0.14 +décolore décolorer VER 0.45 3.58 0.19 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décolorent décolorer VER 0.45 3.58 0.01 0.14 ind:pre:3p; +décolorer décolorer VER 0.45 3.58 0.10 0.34 inf; +décoloré décoloré ADJ m s 0.29 3.38 0.07 0.95 +décolorée décoloré ADJ f s 0.29 3.38 0.19 1.15 +décolorées décoloré ADJ f p 0.29 3.38 0.01 0.54 +décolorés décoloré ADJ m p 0.29 3.38 0.03 0.74 +décolère décolérer VER 0.01 0.81 0.00 0.07 imp:pre:2s; +décoléraient décolérer VER 0.01 0.81 0.00 0.07 ind:imp:3p; +décolérais décolérer VER 0.01 0.81 0.00 0.07 ind:imp:1s; +décolérait décolérer VER 0.01 0.81 0.00 0.41 ind:imp:3s; +décolérer décolérer VER 0.01 0.81 0.00 0.07 inf; +décoléré décolérer VER m s 0.01 0.81 0.01 0.14 par:pas; +décombre décombrer VER 0.00 0.27 0.00 0.27 ind:pre:3s; +décombres décombre NOM m p 1.09 6.55 1.09 6.55 +décommanda décommander VER 2.77 2.30 0.00 0.27 ind:pas:3s; +décommandai décommander VER 2.77 2.30 0.00 0.07 ind:pas:1s; +décommandais décommander VER 2.77 2.30 0.00 0.07 ind:imp:1s; +décommandait décommander VER 2.77 2.30 0.00 0.20 ind:imp:3s; +décommande décommander VER 2.77 2.30 0.57 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +décommander décommander VER 2.77 2.30 0.98 0.88 inf; +décommanderait décommander VER 2.77 2.30 0.00 0.07 cnd:pre:3s; +décommandes décommander VER 2.77 2.30 0.29 0.00 ind:pre:2s; +décommandez décommander VER 2.77 2.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +décommandé décommander VER m s 2.77 2.30 0.66 0.34 par:pas; +décommandée décommander VER f s 2.77 2.30 0.16 0.07 par:pas; +décommandées décommander VER f p 2.77 2.30 0.01 0.07 par:pas; +décommandés décommander VER m p 2.77 2.30 0.01 0.00 par:pas; +décompensation décompensation NOM f s 0.01 0.00 0.01 0.00 +décompenser décompenser VER 0.05 0.00 0.04 0.00 inf; +décompensé décompenser VER m s 0.05 0.00 0.01 0.00 par:pas; +décompliquer décompliquer VER 0.02 0.00 0.02 0.00 inf; +décomposa décomposer VER 2.86 7.43 0.00 0.47 ind:pas:3s; +décomposable décomposable ADJ s 0.00 0.07 0.00 0.07 +décomposaient décomposer VER 2.86 7.43 0.01 0.27 ind:imp:3p; +décomposais décomposer VER 2.86 7.43 0.00 0.20 ind:imp:1s; +décomposait décomposer VER 2.86 7.43 0.14 0.95 ind:imp:3s; +décomposant décomposer VER 2.86 7.43 0.09 0.47 par:pre; +décompose décomposer VER 2.86 7.43 0.69 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décomposent décomposer VER 2.86 7.43 0.31 0.14 ind:pre:3p; +décomposer décomposer VER 2.86 7.43 0.81 1.42 inf; +décomposera décomposer VER 2.86 7.43 0.23 0.14 ind:fut:3s; +décomposeraient décomposer VER 2.86 7.43 0.01 0.14 cnd:pre:3p; +décomposerait décomposer VER 2.86 7.43 0.00 0.07 cnd:pre:3s; +décomposeur décomposeur NOM m s 0.01 0.00 0.01 0.00 +décomposition décomposition NOM f s 2.59 3.45 2.58 3.38 +décompositions décomposition NOM f p 2.59 3.45 0.01 0.07 +décomposé décomposer VER m s 2.86 7.43 0.48 1.08 par:pas; +décomposée décomposé ADJ f s 0.24 2.97 0.04 0.47 +décomposées décomposé ADJ f p 0.24 2.97 0.01 0.68 +décomposés décomposé ADJ m p 0.24 2.97 0.06 0.34 +décompressa décompresser VER 1.11 0.41 0.00 0.07 ind:pas:3s; +décompresse décompresser VER 1.11 0.41 0.38 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décompresser décompresser VER 1.11 0.41 0.63 0.14 inf; +décompressez décompresser VER 1.11 0.41 0.05 0.00 imp:pre:2p;ind:pre:2p; +décompression décompression NOM f s 0.50 0.41 0.46 0.34 +décompressions décompression NOM f p 0.50 0.41 0.04 0.07 +décompressé décompresser VER m s 1.11 0.41 0.05 0.07 par:pas; +décomprimer décomprimer VER 0.01 0.00 0.01 0.00 inf; +décompte décompte NOM m s 1.15 0.81 1.11 0.61 +décompter décompter VER 0.19 0.47 0.08 0.27 inf; +décomptes décompte NOM m p 1.15 0.81 0.04 0.20 +décompté décompter VER m s 0.19 0.47 0.04 0.00 par:pas; +décomptés décompter VER m p 0.19 0.47 0.00 0.07 par:pas; +ducon ducon NOM m s 6.86 1.01 6.86 1.01 +déconcentrant déconcentrer VER 0.88 0.20 0.01 0.14 par:pre; +déconcentration déconcentration NOM f s 0.00 0.07 0.00 0.07 +déconcentrent déconcentrer VER 0.88 0.20 0.02 0.00 ind:pre:3p; +déconcentrer déconcentrer VER 0.88 0.20 0.47 0.07 inf; +déconcentrez déconcentrer VER 0.88 0.20 0.18 0.00 imp:pre:2p;ind:pre:2p; +déconcentré déconcentrer VER m s 0.88 0.20 0.14 0.00 par:pas; +déconcentrée déconcentrer VER f s 0.88 0.20 0.05 0.00 par:pas; +déconcerta déconcerter VER 1.08 7.09 0.01 1.01 ind:pas:3s; +déconcertait déconcerter VER 1.08 7.09 0.00 0.74 ind:imp:3s; +déconcertant déconcertant ADJ m s 1.01 4.39 0.63 1.01 +déconcertante déconcertant ADJ f s 1.01 4.39 0.31 2.23 +déconcertantes déconcertant ADJ f p 1.01 4.39 0.07 0.61 +déconcertants déconcertant ADJ m p 1.01 4.39 0.00 0.54 +déconcerte déconcerter VER 1.08 7.09 0.09 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconcertent déconcerter VER 1.08 7.09 0.17 0.20 ind:pre:3p; +déconcerter déconcerter VER 1.08 7.09 0.06 0.54 inf; +déconcertera déconcerter VER 1.08 7.09 0.01 0.07 ind:fut:3s; +déconcertez déconcerter VER 1.08 7.09 0.05 0.00 ind:pre:2p; +déconcertèrent déconcerter VER 1.08 7.09 0.00 0.07 ind:pas:3p; +déconcerté déconcerté ADJ m s 0.25 2.64 0.20 1.55 +déconcertée déconcerter VER f s 1.08 7.09 0.07 1.35 par:pas; +déconcertés déconcerter VER m p 1.08 7.09 0.39 0.34 par:pas; +déconditionnement déconditionnement NOM m s 0.03 0.00 0.03 0.00 +déconditionner déconditionner VER 0.01 0.00 0.01 0.00 inf; +déconfire déconfire VER 0.03 0.41 0.01 0.00 inf; +déconfit déconfit ADJ m s 0.05 0.88 0.04 0.54 +déconfite déconfit ADJ f s 0.05 0.88 0.00 0.27 +déconfits déconfit ADJ m p 0.05 0.88 0.01 0.07 +déconfiture déconfiture NOM f s 0.07 1.55 0.07 1.42 +déconfitures déconfiture NOM f p 0.07 1.55 0.00 0.14 +décongela décongeler VER 0.52 0.34 0.01 0.00 ind:pas:3s; +décongeler décongeler VER 0.52 0.34 0.21 0.07 inf; +décongelé décongeler VER m s 0.52 0.34 0.26 0.27 par:pas; +décongelée décongeler VER f s 0.52 0.34 0.02 0.00 par:pas; +décongestif décongestif NOM m s 0.01 0.00 0.01 0.00 +décongestion décongestion NOM f s 0.01 0.00 0.01 0.00 +décongestionnant décongestionner VER 0.14 0.07 0.04 0.00 par:pre; +décongestionne décongestionner VER 0.14 0.07 0.00 0.07 ind:pre:3s; +décongestionner décongestionner VER 0.14 0.07 0.10 0.00 inf; +décongestionné décongestionner VER m s 0.14 0.07 0.01 0.00 par:pas; +décongèlera décongeler VER 0.52 0.34 0.01 0.00 ind:fut:3s; +décongélation décongélation NOM f s 0.31 0.00 0.31 0.00 +déconnage déconnage NOM m s 0.00 0.61 0.00 0.54 +déconnages déconnage NOM m p 0.00 0.61 0.00 0.07 +déconnaient déconner VER 39.86 10.95 0.01 0.07 ind:imp:3p; +déconnais déconner VER 39.86 10.95 0.92 0.41 ind:imp:1s;ind:imp:2s; +déconnait déconner VER 39.86 10.95 0.49 0.61 ind:imp:3s; +déconnant déconner VER 39.86 10.95 0.01 0.20 par:pre; +déconne déconner VER 39.86 10.95 13.38 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconnectaient déconnecter VER 2.60 0.47 0.01 0.00 ind:imp:3p; +déconnectant déconnecter VER 2.60 0.47 0.00 0.07 par:pre; +déconnecte déconnecter VER 2.60 0.47 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déconnectent déconnecter VER 2.60 0.47 0.01 0.00 ind:pre:3p; +déconnecter déconnecter VER 2.60 0.47 0.64 0.07 inf; +déconnectez déconnecter VER 2.60 0.47 0.20 0.00 imp:pre:2p;ind:pre:2p; +déconnectiez déconnecter VER 2.60 0.47 0.03 0.00 ind:imp:2p; +déconnection déconnection NOM f s 0.03 0.00 0.03 0.00 +déconnectons déconnecter VER 2.60 0.47 0.02 0.00 ind:pre:1p; +déconnecté déconnecter VER m s 2.60 0.47 0.92 0.20 par:pas; +déconnectée déconnecter VER f s 2.60 0.47 0.18 0.07 par:pas; +déconnectés déconnecter VER m p 2.60 0.47 0.35 0.00 par:pas; +déconnent déconner VER 39.86 10.95 0.28 0.00 ind:pre:3p; +déconner déconner VER 39.86 10.95 9.39 3.04 inf; +déconnerai déconner VER 39.86 10.95 0.03 0.00 ind:fut:1s; +déconnerais déconner VER 39.86 10.95 0.15 0.00 cnd:pre:1s; +déconnes déconner VER 39.86 10.95 8.95 1.69 ind:pre:2s;sub:pre:2s; +déconneur déconneur NOM m s 0.20 0.20 0.19 0.07 +déconneurs déconneur NOM m p 0.20 0.20 0.00 0.14 +déconneuse déconneur NOM f s 0.20 0.20 0.01 0.00 +déconnexion déconnexion NOM f s 0.16 0.07 0.16 0.07 +déconnez déconner VER 39.86 10.95 2.19 0.14 imp:pre:2p;ind:pre:2p; +déconné déconner VER m s 39.86 10.95 4.07 0.68 par:pas; +déconomètre déconomètre NOM m s 0.00 0.07 0.00 0.07 +déconophone déconophone NOM m s 0.00 0.20 0.00 0.14 +déconophones déconophone NOM m p 0.00 0.20 0.00 0.07 +déconseilla déconseiller VER 2.83 2.23 0.14 0.14 ind:pas:3s; +déconseillai déconseiller VER 2.83 2.23 0.00 0.07 ind:pas:1s; +déconseillait déconseiller VER 2.83 2.23 0.01 0.41 ind:imp:3s; +déconseillant déconseiller VER 2.83 2.23 0.01 0.14 par:pre; +déconseille déconseiller VER 2.83 2.23 1.76 0.27 ind:pre:1s;ind:pre:3s; +déconseiller déconseiller VER 2.83 2.23 0.06 0.07 inf; +déconseillerais déconseiller VER 2.83 2.23 0.12 0.07 cnd:pre:1s; +déconseilles déconseiller VER 2.83 2.23 0.00 0.07 ind:pre:2s; +déconseillèrent déconseiller VER 2.83 2.23 0.00 0.14 ind:pas:3p; +déconseillé déconseiller VER m s 2.83 2.23 0.68 0.68 par:pas; +déconseillée déconseiller VER f s 2.83 2.23 0.03 0.14 par:pas; +déconseillées déconseiller VER f p 2.83 2.23 0.01 0.07 par:pas; +déconsidèrent déconsidérer VER 0.03 1.22 0.01 0.00 ind:pre:3p; +déconsidéraient déconsidérer VER 0.03 1.22 0.00 0.07 ind:imp:3p; +déconsidérait déconsidérer VER 0.03 1.22 0.00 0.14 ind:imp:3s; +déconsidérant déconsidérer VER 0.03 1.22 0.00 0.07 par:pre; +déconsidération déconsidération NOM f s 0.01 0.00 0.01 0.00 +déconsidérer déconsidérer VER 0.03 1.22 0.01 0.41 inf; +déconsidéré déconsidérer VER m s 0.03 1.22 0.01 0.27 par:pas; +déconsidérée déconsidérer VER f s 0.03 1.22 0.00 0.20 par:pas; +déconsidérés déconsidérer VER m p 0.03 1.22 0.00 0.07 par:pas; +déconsigner déconsigner VER 0.00 0.20 0.00 0.20 inf; +déconstipe déconstiper VER 0.01 0.07 0.00 0.07 ind:pre:3s; +déconstiper déconstiper VER 0.01 0.07 0.01 0.00 inf; +déconstruction déconstruction NOM f s 0.08 0.07 0.08 0.07 +déconstruit déconstruire VER m s 0.01 0.07 0.01 0.07 ind:pre:3s;par:pas; +décontaminant décontaminer VER 0.17 0.00 0.01 0.00 par:pre; +décontamination décontamination NOM f s 0.96 0.00 0.96 0.00 +décontaminer décontaminer VER 0.17 0.00 0.07 0.00 inf; +décontaminé décontaminer VER m s 0.17 0.00 0.09 0.00 par:pas; +décontenancer décontenancer VER 0.22 2.77 0.03 0.07 inf; +décontenancé décontenancé ADJ m s 0.32 2.84 0.16 2.16 +décontenancée décontenancé ADJ f s 0.32 2.84 0.16 0.41 +décontenancés décontenancer VER m p 0.22 2.77 0.10 0.20 par:pas; +décontenança décontenancer VER 0.22 2.77 0.00 0.14 ind:pas:3s; +décontenançaient décontenancer VER 0.22 2.77 0.00 0.14 ind:imp:3p; +décontenançait décontenancer VER 0.22 2.77 0.00 0.14 ind:imp:3s; +décontract décontract ADJ m s 0.24 0.07 0.24 0.07 +décontracta décontracter VER 1.54 1.28 0.00 0.20 ind:pas:3s; +décontractaient décontracter VER 1.54 1.28 0.00 0.07 ind:imp:3p; +décontractait décontracter VER 1.54 1.28 0.00 0.14 ind:imp:3s; +décontractant décontracter VER 1.54 1.28 0.20 0.20 par:pre; +décontracte décontracter VER 1.54 1.28 0.13 0.20 imp:pre:2s;ind:pre:3s; +décontracter décontracter VER 1.54 1.28 0.27 0.14 inf; +décontractez décontracter VER 1.54 1.28 0.07 0.07 imp:pre:2p; +décontraction décontraction NOM f s 0.15 1.28 0.15 1.28 +décontracté décontracter VER m s 1.54 1.28 0.75 0.07 par:pas; +décontractée décontracté ADJ f s 1.07 1.01 0.26 0.27 +décontractées décontracté ADJ f p 1.07 1.01 0.03 0.07 +décontractés décontracté ADJ m p 1.07 1.01 0.17 0.00 +déconvenue déconvenue NOM f s 0.32 2.16 0.16 1.42 +déconvenues déconvenue NOM f p 0.32 2.16 0.16 0.74 +décor décor NOM m s 8.38 45.61 6.01 38.78 +décora décorer VER 8.54 20.20 0.00 0.34 ind:pas:3s; +décorai décorer VER 8.54 20.20 0.00 0.14 ind:pas:1s; +décoraient décorer VER 8.54 20.20 0.03 0.68 ind:imp:3p; +décorais décorer VER 8.54 20.20 0.10 0.00 ind:imp:1s; +décorait décorer VER 8.54 20.20 0.21 0.74 ind:imp:3s; +décorant décorer VER 8.54 20.20 0.03 0.81 par:pre; +décorateur décorateur NOM m s 2.55 3.11 1.37 2.03 +décorateurs décorateur NOM m p 2.55 3.11 0.36 0.88 +décoratif décoratif ADJ m s 0.83 4.12 0.38 1.35 +décoratifs décoratif ADJ m p 0.83 4.12 0.12 1.22 +décoration décoration NOM f s 8.15 11.76 4.80 6.35 +décorations décoration NOM f p 8.15 11.76 3.35 5.41 +décorative décoratif ADJ f s 0.83 4.12 0.15 0.88 +décoratives décoratif ADJ f p 0.83 4.12 0.19 0.68 +décoratrice décorateur NOM f s 2.55 3.11 0.81 0.14 +décoratrices décorateur NOM f p 2.55 3.11 0.01 0.07 +décore décorer VER 8.54 20.20 0.92 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décorent décorer VER 8.54 20.20 0.43 0.47 ind:pre:3p; +décorer décorer VER 8.54 20.20 3.38 2.91 inf; +décorera décorer VER 8.54 20.20 0.19 0.00 ind:fut:3s; +décorerait décorer VER 8.54 20.20 0.03 0.07 cnd:pre:3s; +décoreront décorer VER 8.54 20.20 0.02 0.00 ind:fut:3p; +décorez décorer VER 8.54 20.20 0.14 0.14 imp:pre:2p;ind:pre:2p; +décorne décorner VER 0.01 0.27 0.00 0.07 ind:pre:3s; +décorner décorner VER 0.01 0.27 0.01 0.20 inf; +décorât décorer VER 8.54 20.20 0.00 0.07 sub:imp:3s; +décors décor NOM m p 8.38 45.61 2.37 6.82 +décorèrent décorer VER 8.54 20.20 0.00 0.07 ind:pas:3p; +décorticage décorticage NOM m s 0.00 0.14 0.00 0.14 +décortication décortication NOM f s 0.01 0.00 0.01 0.00 +décortiqua décortiquer VER 0.70 2.64 0.00 0.14 ind:pas:3s; +décortiquaient décortiquer VER 0.70 2.64 0.01 0.07 ind:imp:3p; +décortiquait décortiquer VER 0.70 2.64 0.00 0.14 ind:imp:3s; +décortiquant décortiquer VER 0.70 2.64 0.00 0.07 par:pre; +décortique décortiquer VER 0.70 2.64 0.17 0.47 imp:pre:2s;ind:pre:3s;sub:pre:3s; +décortiquent décortiquer VER 0.70 2.64 0.00 0.14 ind:pre:3p; +décortiquer décortiquer VER 0.70 2.64 0.40 1.01 inf; +décortiquez décortiquer VER 0.70 2.64 0.03 0.07 imp:pre:2p;ind:pre:2p; +décortiqué décortiquer VER m s 0.70 2.64 0.08 0.34 par:pas; +décortiquée décortiquer VER f s 0.70 2.64 0.01 0.00 par:pas; +décortiquées décortiquer VER f p 0.70 2.64 0.00 0.07 par:pas; +décortiqués décortiquer VER m p 0.70 2.64 0.00 0.14 par:pas; +décoré décorer VER m s 8.54 20.20 2.23 5.95 par:pas; +décorée décorer VER f s 8.54 20.20 0.37 3.38 par:pas; +décorées décorer VER f p 8.54 20.20 0.26 1.49 par:pas; +décorum décorum NOM m s 0.17 0.54 0.17 0.54 +décorés décoré ADJ m p 1.28 2.97 0.24 1.08 +découcha découcher VER 1.03 0.88 0.00 0.07 ind:pas:3s; +découchaient découcher VER 1.03 0.88 0.00 0.07 ind:imp:3p; +découche découcher VER 1.03 0.88 0.37 0.34 ind:pre:1s;ind:pre:3s; +découcher découcher VER 1.03 0.88 0.20 0.20 inf; +découches découcher VER 1.03 0.88 0.27 0.00 ind:pre:2s; +découché découcher VER m s 1.03 0.88 0.20 0.20 par:pas; +découd découdre VER 0.69 2.36 0.00 0.14 ind:pre:3s; +découdre découdre VER 0.69 2.36 0.42 1.15 inf; +découlaient découler VER 1.57 4.12 0.00 0.34 ind:imp:3p; +découlait découler VER 1.57 4.12 0.01 1.01 ind:imp:3s; +découlant découler VER 1.57 4.12 0.04 0.34 par:pre; +découle découler VER 1.57 4.12 0.98 1.01 ind:pre:3s; +découlent découler VER 1.57 4.12 0.21 0.54 ind:pre:3p; +découler découler VER 1.57 4.12 0.13 0.61 inf; +découlera découler VER 1.57 4.12 0.03 0.07 ind:fut:3s; +découlerait découler VER 1.57 4.12 0.02 0.07 cnd:pre:3s; +découlèrent découler VER 1.57 4.12 0.01 0.00 ind:pas:3p; +découlé découler VER m s 1.57 4.12 0.14 0.14 par:pas; +découpa découper VER 12.69 32.70 0.01 1.22 ind:pas:3s; +découpage découpage NOM m s 0.86 1.96 0.47 1.62 +découpages découpage NOM m p 0.86 1.96 0.40 0.34 +découpai découper VER 12.69 32.70 0.01 0.07 ind:pas:1s; +découpaient découper VER 12.69 32.70 0.01 2.03 ind:imp:3p; +découpais découper VER 12.69 32.70 0.08 0.07 ind:imp:1s; +découpait découper VER 12.69 32.70 0.14 4.66 ind:imp:3s; +découpant découper VER 12.69 32.70 0.28 2.43 par:pre; +découpe découper VER 12.69 32.70 2.33 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +découpent découper VER 12.69 32.70 0.22 1.08 ind:pre:3p; +découper découper VER 12.69 32.70 4.36 4.93 inf;; +découpera découper VER 12.69 32.70 0.04 0.14 ind:fut:3s; +découperai découper VER 12.69 32.70 0.21 0.07 ind:fut:1s; +découperaient découper VER 12.69 32.70 0.01 0.07 cnd:pre:3p; +découperais découper VER 12.69 32.70 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +découperait découper VER 12.69 32.70 0.03 0.14 cnd:pre:3s; +découperont découper VER 12.69 32.70 0.04 0.00 ind:fut:3p; +découpes découper VER 12.69 32.70 0.49 0.00 ind:pre:2s; +découpeur découpeur NOM m s 0.17 0.07 0.15 0.00 +découpeurs découpeur NOM m p 0.17 0.07 0.01 0.07 +découpeuse découpeur NOM f s 0.17 0.07 0.01 0.00 +découpez découper VER 12.69 32.70 0.33 0.07 imp:pre:2p;ind:pre:2p; +découpions découper VER 12.69 32.70 0.00 0.07 ind:imp:1p; +découplage découplage NOM m s 0.01 0.00 0.01 0.00 +découpler découpler VER 0.04 0.07 0.01 0.00 inf; +découplons découpler VER 0.04 0.07 0.01 0.00 imp:pre:1p; +découplé découplé ADJ m s 0.00 0.27 0.00 0.20 +découplée découpler VER f s 0.04 0.07 0.01 0.00 par:pas; +découpons découper VER 12.69 32.70 0.20 0.14 imp:pre:1p;ind:pre:1p; +découpèrent découper VER 12.69 32.70 0.00 0.41 ind:pas:3p; +découpé découper VER m s 12.69 32.70 2.50 4.73 par:pas; +découpée découper VER f s 12.69 32.70 0.92 2.23 par:pas; +découpées découpé ADJ f p 0.64 3.38 0.10 0.74 +découpure découpure NOM f s 0.01 1.01 0.01 0.34 +découpures découpure NOM f p 0.01 1.01 0.00 0.68 +découpés découper VER m p 12.69 32.70 0.42 2.30 par:pas; +décourage décourager VER 4.84 15.47 1.13 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +découragea décourager VER 4.84 15.47 0.01 0.41 ind:pas:3s; +décourageai décourager VER 4.84 15.47 0.00 0.07 ind:pas:1s; +décourageaient décourager VER 4.84 15.47 0.00 0.27 ind:imp:3p; +décourageais décourager VER 4.84 15.47 0.01 0.14 ind:imp:1s; +décourageait décourager VER 4.84 15.47 0.02 1.15 ind:imp:3s; +décourageant décourageant ADJ m s 0.34 1.96 0.19 0.74 +décourageante décourageant ADJ f s 0.34 1.96 0.14 0.41 +décourageantes décourageant ADJ f p 0.34 1.96 0.01 0.41 +décourageants décourageant ADJ m p 0.34 1.96 0.00 0.41 +découragement découragement NOM m s 0.27 6.82 0.27 6.28 +découragements découragement NOM m p 0.27 6.82 0.00 0.54 +découragent décourager VER 4.84 15.47 0.27 0.20 ind:pre:3p; +décourageons décourager VER 4.84 15.47 0.03 0.00 imp:pre:1p;ind:pre:1p; +décourageât décourager VER 4.84 15.47 0.00 0.07 sub:imp:3s; +décourager décourager VER 4.84 15.47 1.90 5.61 inf; +découragera décourager VER 4.84 15.47 0.07 0.00 ind:fut:3s; +découragerais décourager VER 4.84 15.47 0.10 0.14 cnd:pre:1s;cnd:pre:2s; +découragerait décourager VER 4.84 15.47 0.04 0.20 cnd:pre:3s; +décourages décourager VER 4.84 15.47 0.16 0.20 ind:pre:2s; +découragez décourager VER 4.84 15.47 0.49 0.07 imp:pre:2p;ind:pre:2p; +découragèrent décourager VER 4.84 15.47 0.00 0.14 ind:pas:3p; +découragé décourager VER m s 4.84 15.47 0.41 2.64 par:pas; +découragée décourager VER f s 4.84 15.47 0.09 0.88 par:pas; +découragées décourager VER f p 4.84 15.47 0.01 0.07 par:pas; +découragés décourager VER m p 4.84 15.47 0.08 0.88 par:pas; +découronné découronner VER m s 0.00 0.27 0.00 0.20 par:pas; +découronnés découronner VER m p 0.00 0.27 0.00 0.07 par:pas; +décours décours NOM m 0.00 0.14 0.00 0.14 +décousit découdre VER 0.69 2.36 0.00 0.14 ind:pas:3s; +décousu décousu ADJ m s 0.49 1.62 0.20 0.54 +décousue décousu ADJ f s 0.49 1.62 0.17 0.54 +décousues décousu ADJ f p 0.49 1.62 0.01 0.34 +décousus décousu ADJ m p 0.49 1.62 0.11 0.20 +découvert découvrir VER m s 128.10 203.78 46.22 30.54 par:pas; +découverte découverte NOM f s 12.46 29.53 9.25 23.18 +découvertes découverte NOM f p 12.46 29.53 3.21 6.35 +découverts découvrir VER m p 128.10 203.78 1.89 1.76 par:pas; +découvrîmes découvrir VER 128.10 203.78 0.02 1.15 ind:pas:1p; +découvrît découvrir VER 128.10 203.78 0.02 0.88 sub:imp:3s; +découvraient découvrir VER 128.10 203.78 0.20 3.92 ind:imp:3p; +découvrais découvrir VER 128.10 203.78 0.54 8.31 ind:imp:1s;ind:imp:2s; +découvrait découvrir VER 128.10 203.78 1.30 17.64 ind:imp:3s; +découvrant découvrir VER 128.10 203.78 1.11 14.12 par:pre; +découvre découvrir VER 128.10 203.78 17.37 26.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +découvrent découvrir VER 128.10 203.78 2.77 3.65 ind:pre:3p;sub:pre:3p; +découvres découvrir VER 128.10 203.78 1.43 0.20 ind:pre:2s; +découvreur découvreur NOM m s 0.33 0.81 0.20 0.47 +découvreurs découvreur NOM m p 0.33 0.81 0.11 0.34 +découvreuse découvreur NOM f s 0.33 0.81 0.01 0.00 +découvrez découvrir VER 128.10 203.78 2.26 0.47 imp:pre:2p;ind:pre:2p; +découvriez découvrir VER 128.10 203.78 0.27 0.14 ind:imp:2p; +découvrions découvrir VER 128.10 203.78 0.07 2.50 ind:imp:1p; +découvrir découvrir VER 128.10 203.78 37.11 50.88 inf; +découvrira découvrir VER 128.10 203.78 2.44 1.22 ind:fut:3s; +découvrirai découvrir VER 128.10 203.78 1.47 0.14 ind:fut:1s; +découvriraient découvrir VER 128.10 203.78 0.04 0.07 cnd:pre:3p; +découvrirais découvrir VER 128.10 203.78 0.30 0.41 cnd:pre:1s;cnd:pre:2s; +découvrirait découvrir VER 128.10 203.78 0.46 1.69 cnd:pre:3s; +découvriras découvrir VER 128.10 203.78 0.82 0.14 ind:fut:2s; +découvrirent découvrir VER 128.10 203.78 0.38 3.65 ind:pas:3p; +découvrirez découvrir VER 128.10 203.78 0.84 0.27 ind:fut:2p; +découvririez découvrir VER 128.10 203.78 0.04 0.00 cnd:pre:2p; +découvrirons découvrir VER 128.10 203.78 0.80 0.20 ind:fut:1p; +découvriront découvrir VER 128.10 203.78 0.70 0.47 ind:fut:3p; +découvris découvrir VER 128.10 203.78 0.92 6.82 ind:pas:1s; +découvrisse découvrir VER 128.10 203.78 0.00 0.07 sub:imp:1s; +découvrissent découvrir VER 128.10 203.78 0.00 0.07 sub:imp:3p; +découvrit découvrir VER 128.10 203.78 1.61 19.39 ind:pas:3s; +découvrons découvrir VER 128.10 203.78 0.81 1.15 imp:pre:1p;ind:pre:1p; +décrût décroître VER 0.35 6.69 0.00 0.14 sub:imp:3s; +décramponner décramponner VER 0.00 0.07 0.00 0.07 inf; +décrapouille décrapouiller VER 0.00 0.07 0.00 0.07 ind:pre:1s; +décrassage décrassage NOM m s 0.04 0.20 0.04 0.20 +décrassait décrasser VER 0.20 1.49 0.00 0.27 ind:imp:3s; +décrasse décrasser VER 0.20 1.49 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrasser décrasser VER 0.20 1.49 0.10 0.61 inf; +décrassé décrasser VER m s 0.20 1.49 0.02 0.20 par:pas; +décrassés décrasser VER m p 0.20 1.49 0.00 0.07 par:pas; +décret_loi décret_loi NOM m s 0.03 0.07 0.03 0.07 +décret décret NOM m s 4.06 9.12 3.54 6.42 +décrets décret NOM m p 4.06 9.12 0.52 2.70 +décrie décrier VER 0.30 0.68 0.00 0.07 ind:pre:3s; +décrier décrier VER 0.30 0.68 0.03 0.20 inf; +décries décrier VER 0.30 0.68 0.00 0.07 ind:pre:2s; +décriez décrier VER 0.30 0.68 0.15 0.00 imp:pre:2p;ind:pre:2p; +décriminaliser décriminaliser VER 0.01 0.00 0.01 0.00 inf; +décrira décrire VER 28.31 40.20 0.04 0.07 ind:fut:3s; +décrirai décrire VER 28.31 40.20 0.27 0.14 ind:fut:1s; +décriraient décrire VER 28.31 40.20 0.03 0.00 cnd:pre:3p; +décrirais décrire VER 28.31 40.20 0.40 0.34 cnd:pre:1s;cnd:pre:2s; +décrirait décrire VER 28.31 40.20 0.05 0.14 cnd:pre:3s; +décriras décrire VER 28.31 40.20 0.01 0.07 ind:fut:2s; +décrire décrire VER 28.31 40.20 11.01 13.51 inf; +décrirez décrire VER 28.31 40.20 0.02 0.00 ind:fut:2p; +décririez décrire VER 28.31 40.20 0.41 0.00 cnd:pre:2p; +décriront décrire VER 28.31 40.20 0.01 0.07 ind:fut:3p; +décris décrire VER 28.31 40.20 2.42 1.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +décrispe décrisper VER 0.12 0.54 0.09 0.14 imp:pre:2s;ind:pre:3s; +décrisper décrisper VER 0.12 0.54 0.02 0.27 inf; +décrispât décrisper VER 0.12 0.54 0.00 0.07 sub:imp:3s; +décrispé décrisper VER m s 0.12 0.54 0.01 0.07 par:pas; +décrit décrire VER m s 28.31 40.20 6.93 7.91 ind:pre:3s;par:pas; +décrite décrire VER f s 28.31 40.20 0.78 1.69 par:pas; +décrites décrire VER f p 28.31 40.20 0.17 0.74 par:pas; +décrits décrire VER m p 28.31 40.20 0.36 0.54 par:pas; +décrié décrier VER m s 0.30 0.68 0.03 0.14 par:pas; +décriée décrier VER f s 0.30 0.68 0.10 0.20 par:pas; +décriées décrié ADJ f p 0.02 0.54 0.01 0.07 +décriés décrié ADJ m p 0.02 0.54 0.01 0.07 +décrivaient décrire VER 28.31 40.20 0.03 0.88 ind:imp:3p; +décrivais décrire VER 28.31 40.20 0.13 0.27 ind:imp:1s;ind:imp:2s; +décrivait décrire VER 28.31 40.20 1.07 4.26 ind:imp:3s; +décrivant décrire VER 28.31 40.20 0.56 2.91 par:pre; +décrive décrire VER 28.31 40.20 0.13 0.41 sub:pre:1s;sub:pre:3s; +décrivent décrire VER 28.31 40.20 0.73 0.68 ind:pre:3p; +décrives décrire VER 28.31 40.20 0.05 0.00 sub:pre:2s; +décrivez décrire VER 28.31 40.20 2.56 0.34 imp:pre:2p;ind:pre:2p; +décriviez décrire VER 28.31 40.20 0.06 0.00 ind:imp:2p; +décrivirent décrire VER 28.31 40.20 0.00 0.34 ind:pas:3p; +décrivis décrire VER 28.31 40.20 0.00 0.41 ind:pas:1s; +décrivit décrire VER 28.31 40.20 0.05 3.04 ind:pas:3s; +décroît décroître VER 0.35 6.69 0.24 1.49 ind:pre:3s; +décroître décroître VER 0.35 6.69 0.05 2.23 inf; +décrocha décrocher VER 25.00 30.41 0.05 5.47 ind:pas:3s; +décrochage décrochage NOM m s 0.25 0.54 0.25 0.47 +décrochages décrochage NOM m p 0.25 0.54 0.00 0.07 +décrochai décrocher VER 25.00 30.41 0.01 0.74 ind:pas:1s; +décrochaient décrocher VER 25.00 30.41 0.01 0.47 ind:imp:3p; +décrochais décrocher VER 25.00 30.41 0.23 0.41 ind:imp:1s;ind:imp:2s; +décrochait décrocher VER 25.00 30.41 0.15 1.15 ind:imp:3s; +décrochant décrocher VER 25.00 30.41 0.05 0.95 par:pre; +décroche décrocher VER 25.00 30.41 9.95 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrochement décrochement NOM m s 0.00 0.47 0.00 0.34 +décrochements décrochement NOM m p 0.00 0.47 0.00 0.14 +décrochent décrocher VER 25.00 30.41 0.38 0.47 ind:pre:3p; +décrocher décrocher VER 25.00 30.41 6.02 7.91 inf; +décrochera décrocher VER 25.00 30.41 0.11 0.07 ind:fut:3s; +décrocherai décrocher VER 25.00 30.41 0.25 0.00 ind:fut:1s; +décrocheraient décrocher VER 25.00 30.41 0.00 0.07 cnd:pre:3p; +décrocherais décrocher VER 25.00 30.41 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +décrocherait décrocher VER 25.00 30.41 0.02 0.14 cnd:pre:3s; +décrocheras décrocher VER 25.00 30.41 0.03 0.00 ind:fut:2s; +décrocheront décrocher VER 25.00 30.41 0.05 0.00 ind:fut:3p; +décrochez_moi_ça décrochez_moi_ça NOM m 0.00 0.07 0.00 0.07 +décrochez décrocher VER 25.00 30.41 2.08 0.20 imp:pre:2p;ind:pre:2p; +décrochiez décrocher VER 25.00 30.41 0.01 0.00 ind:imp:2p; +décrochons décrocher VER 25.00 30.41 0.03 0.07 imp:pre:1p;ind:pre:1p; +décrochèrent décrocher VER 25.00 30.41 0.01 0.20 ind:pas:3p; +décroché décrocher VER m s 25.00 30.41 5.28 4.80 par:pas; +décrochée décrocher VER f s 25.00 30.41 0.20 0.47 par:pas; +décrochées décrocher VER f p 25.00 30.41 0.00 0.34 par:pas; +décrochés décrocher VER m p 25.00 30.41 0.02 0.47 par:pas; +décroisa décroiser VER 0.30 1.96 0.00 0.61 ind:pas:3s; +décroisait décroiser VER 0.30 1.96 0.00 0.27 ind:imp:3s; +décroisant décroiser VER 0.30 1.96 0.00 0.14 par:pre; +décroise décroiser VER 0.30 1.96 0.28 0.47 imp:pre:2s;ind:pre:3s; +décroiser décroiser VER 0.30 1.96 0.02 0.07 inf; +décroissaient décroître VER 0.35 6.69 0.00 0.20 ind:imp:3p; +décroissait décroître VER 0.35 6.69 0.00 0.41 ind:imp:3s; +décroissance décroissance NOM f s 0.01 0.00 0.01 0.00 +décroissant décroître VER 0.35 6.69 0.01 1.01 par:pre; +décroissante décroissant ADJ f s 0.08 1.08 0.04 0.14 +décroissantes décroissant ADJ f p 0.08 1.08 0.00 0.20 +décroissants décroissant ADJ m p 0.08 1.08 0.03 0.14 +décroisse décroître VER 0.35 6.69 0.01 0.07 sub:pre:3s; +décroissent décroître VER 0.35 6.69 0.01 0.20 ind:pre:3p; +décroisé décroiser VER m s 0.30 1.96 0.00 0.14 par:pas; +décroisées décroiser VER f p 0.30 1.96 0.00 0.27 par:pas; +décrottages décrottage NOM m p 0.00 0.07 0.00 0.07 +décrottait décrotter VER 0.05 0.68 0.00 0.07 ind:imp:3s; +décrottant décrotter VER 0.05 0.68 0.01 0.00 par:pre; +décrotte décrotter VER 0.05 0.68 0.01 0.14 ind:pre:3s; +décrottent décrotter VER 0.05 0.68 0.02 0.07 ind:pre:3p; +décrotter décrotter VER 0.05 0.68 0.01 0.20 inf; +décrottions décrotter VER 0.05 0.68 0.00 0.07 ind:imp:1p; +décrottoir décrottoir NOM m s 0.00 0.14 0.00 0.14 +décrottée décrotter VER f s 0.05 0.68 0.00 0.07 par:pas; +décrottés décrotter VER m p 0.05 0.68 0.00 0.07 par:pas; +décrète décréter VER 4.86 10.74 1.18 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrètent décréter VER 4.86 10.74 0.29 0.00 ind:pre:3p; +décrètes décréter VER 4.86 10.74 0.00 0.07 ind:pre:2s; +décru décroître VER m s 0.35 6.69 0.02 0.41 par:pas; +décrédibiliser décrédibiliser VER 0.02 0.00 0.01 0.00 inf; +décrédibilisez décrédibiliser VER 0.02 0.00 0.01 0.00 ind:pre:2p; +décrue décrue NOM f s 0.02 0.14 0.02 0.14 +décrêpage décrêpage NOM m s 0.00 0.07 0.00 0.07 +décrêper décrêper VER 0.01 0.14 0.01 0.14 inf; +décrépi décrépir VER m s 0.12 0.95 0.03 0.20 par:pas; +décrépie décrépir VER f s 0.12 0.95 0.01 0.20 par:pas; +décrépies décrépir VER f p 0.12 0.95 0.01 0.07 par:pas; +décrépis décrépir VER m p 0.12 0.95 0.01 0.41 par:pas; +décrépit décrépit ADJ m s 0.60 0.47 0.42 0.07 +décrépite décrépit ADJ f s 0.60 0.47 0.19 0.27 +décrépites décrépit ADJ f p 0.60 0.47 0.00 0.07 +décrépits décrépit ADJ m p 0.60 0.47 0.00 0.07 +décrépitude décrépitude NOM f s 0.12 1.62 0.12 1.62 +décrut décroître VER 0.35 6.69 0.01 0.54 ind:pas:3s; +décréta décréter VER 4.86 10.74 0.11 3.11 ind:pas:3s; +décrétai décréter VER 4.86 10.74 0.00 0.14 ind:pas:1s; +décrétaient décréter VER 4.86 10.74 0.00 0.20 ind:imp:3p; +décrétais décréter VER 4.86 10.74 0.00 0.07 ind:imp:1s; +décrétait décréter VER 4.86 10.74 0.01 0.74 ind:imp:3s; +décrétant décréter VER 4.86 10.74 0.02 0.61 par:pre; +décréter décréter VER 4.86 10.74 0.18 0.47 inf; +décrétera décréter VER 4.86 10.74 0.00 0.07 ind:fut:3s; +décréterai décréter VER 4.86 10.74 0.01 0.00 ind:fut:1s; +décréterais décréter VER 4.86 10.74 0.00 0.07 cnd:pre:1s; +décréterait décréter VER 4.86 10.74 0.01 0.14 cnd:pre:3s; +décréteront décréter VER 4.86 10.74 0.00 0.07 ind:fut:3p; +décrétez décréter VER 4.86 10.74 0.04 0.14 imp:pre:2p;ind:pre:2p; +décrétons décréter VER 4.86 10.74 0.34 0.07 imp:pre:1p;ind:pre:1p; +décrétèrent décréter VER 4.86 10.74 0.00 0.20 ind:pas:3p; +décrété décréter VER m s 4.86 10.74 2.58 2.23 par:pas; +décrétée décréter VER f s 4.86 10.74 0.07 0.34 par:pas; +décrétés décréter VER m p 4.86 10.74 0.01 0.14 par:pas; +décryptage décryptage NOM m s 0.20 0.14 0.20 0.14 +décryptai décrypter VER 0.89 0.54 0.00 0.07 ind:pas:1s; +décrypte décrypter VER 0.89 0.54 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +décrypter décrypter VER 0.89 0.54 0.46 0.34 inf; +décrypteur décrypteur NOM m s 0.27 0.00 0.10 0.00 +décrypteurs décrypteur NOM m p 0.27 0.00 0.17 0.00 +décrypté décrypter VER m s 0.89 0.54 0.30 0.07 par:pas; +décryptés décrypter VER m p 0.89 0.54 0.03 0.00 par:pas; +duc_d_albe duc_d_albe NOM m p 0.00 0.07 0.00 0.07 +ducs duc NOM m p 12.40 23.51 0.69 1.62 +décède décéder VER 8.38 3.04 0.26 0.14 ind:pre:3s; +décèdent décéder VER 8.38 3.04 0.03 0.00 ind:pre:3p; +décèle déceler VER 2.00 11.15 0.49 0.74 ind:pre:1s;ind:pre:3s; +décèlera déceler VER 2.00 11.15 0.01 0.00 ind:fut:3s; +décèlerait déceler VER 2.00 11.15 0.00 0.14 cnd:pre:3s; +décèleront déceler VER 2.00 11.15 0.00 0.07 ind:fut:3p; +décèles déceler VER 2.00 11.15 0.00 0.07 ind:pre:2s; +décès décès NOM m 12.82 4.66 12.82 4.66 +ductile ductile ADJ s 0.01 0.27 0.01 0.27 +décéda décéder VER 8.38 3.04 0.04 0.00 ind:pas:3s; +décédait décéder VER 8.38 3.04 0.03 0.00 ind:imp:3s; +décéder décéder VER 8.38 3.04 0.23 0.14 inf; +décédé décéder VER m s 8.38 3.04 4.15 1.62 par:pas; +décédée décéder VER f s 8.38 3.04 2.64 1.08 par:pas; +décédées décéder VER f p 8.38 3.04 0.09 0.00 par:pas; +décédés décéder VER m p 8.38 3.04 0.91 0.07 par:pas; +décuité décuiter VER m s 0.00 0.07 0.00 0.07 par:pas; +déculotta déculotter VER 0.28 1.82 0.00 0.14 ind:pas:3s; +déculottait déculotter VER 0.28 1.82 0.01 0.14 ind:imp:3s; +déculottant déculotter VER 0.28 1.82 0.00 0.07 par:pre; +déculotte déculotter VER 0.28 1.82 0.15 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déculotter déculotter VER 0.28 1.82 0.05 0.81 inf; +déculottera déculotter VER 0.28 1.82 0.00 0.07 ind:fut:3s; +déculotté déculotter VER m s 0.28 1.82 0.07 0.34 par:pas; +déculottée déculottée NOM f s 0.13 0.00 0.12 0.00 +déculottées déculottée NOM f p 0.13 0.00 0.01 0.00 +déculottés déculotté NOM m p 0.01 0.00 0.01 0.00 +déculpabilisait déculpabiliser VER 0.11 0.14 0.00 0.07 ind:imp:3s; +déculpabiliser déculpabiliser VER 0.11 0.14 0.11 0.00 inf; +déculpabilisé déculpabiliser VER m s 0.11 0.14 0.00 0.07 par:pas; +décélération décélération NOM f s 0.30 0.14 0.30 0.14 +décélérer décélérer VER 0.06 0.00 0.05 0.00 inf; +décélérez décélérer VER 0.06 0.00 0.01 0.00 imp:pre:2p; +décupla décupler VER 0.50 3.24 0.03 0.27 ind:pas:3s; +décuplaient décupler VER 0.50 3.24 0.00 0.14 ind:imp:3p; +décuplait décupler VER 0.50 3.24 0.00 0.47 ind:imp:3s; +décuplant décupler VER 0.50 3.24 0.01 0.27 par:pre; +décuple décupler VER 0.50 3.24 0.20 0.14 ind:pre:3s; +décuplent décupler VER 0.50 3.24 0.01 0.14 ind:pre:3p; +décupler décupler VER 0.50 3.24 0.07 0.41 inf; +décuplera décupler VER 0.50 3.24 0.01 0.07 ind:fut:3s; +décuplerait décupler VER 0.50 3.24 0.00 0.07 cnd:pre:3s; +décuplèrent décupler VER 0.50 3.24 0.02 0.00 ind:pas:3p; +décuplé décupler VER m s 0.50 3.24 0.09 0.54 par:pas; +décuplée décupler VER f s 0.50 3.24 0.04 0.41 par:pas; +décuplées décupler VER f p 0.50 3.24 0.01 0.20 par:pas; +décuplés décupler VER m p 0.50 3.24 0.00 0.14 par:pas; +décérébration décérébration NOM f s 0.03 0.00 0.03 0.00 +décérébrer décérébrer VER 0.22 0.07 0.01 0.00 inf; +décérébré décérébrer VER m s 0.22 0.07 0.07 0.07 par:pas; +décérébrée décérébrer VER f s 0.22 0.07 0.05 0.00 par:pas; +décérébrés décérébrer VER m p 0.22 0.07 0.09 0.00 par:pas; +décuver décuver VER 0.04 0.00 0.04 0.00 inf; +dédaigna dédaigner VER 2.18 10.47 0.02 0.20 ind:pas:3s; +dédaignables dédaignable ADJ p 0.00 0.07 0.00 0.07 +dédaignaient dédaigner VER 2.18 10.47 0.01 0.54 ind:imp:3p; +dédaignais dédaigner VER 2.18 10.47 0.00 0.27 ind:imp:1s; +dédaignait dédaigner VER 2.18 10.47 0.00 2.64 ind:imp:3s; +dédaignant dédaigner VER 2.18 10.47 0.02 1.49 par:pre; +dédaigne dédaigner VER 2.18 10.47 0.38 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dédaignent dédaigner VER 2.18 10.47 0.06 0.07 ind:pre:3p; +dédaigner dédaigner VER 2.18 10.47 0.41 1.49 inf; +dédaignes dédaigner VER 2.18 10.47 0.14 0.07 ind:pre:2s; +dédaigneuse dédaigneux NOM f s 0.01 0.07 0.01 0.07 +dédaigneusement dédaigneusement ADV 0.01 1.15 0.01 1.15 +dédaigneuses dédaigneux ADJ f p 0.27 6.55 0.01 0.41 +dédaigneux dédaigneux ADJ m 0.27 6.55 0.26 3.85 +dédaignez dédaigner VER 2.18 10.47 0.28 0.14 imp:pre:2p;ind:pre:2p; +dédaignât dédaigner VER 2.18 10.47 0.01 0.27 sub:imp:3s; +dédaigné dédaigner VER m s 2.18 10.47 0.55 1.15 par:pas; +dédaignée dédaigner VER f s 2.18 10.47 0.16 0.34 par:pas; +dédaignés dédaigner VER m p 2.18 10.47 0.14 0.41 par:pas; +dédain dédain NOM m s 0.65 10.07 0.65 9.39 +dédains dédain NOM m p 0.65 10.07 0.00 0.68 +dédale dédale NOM m s 0.28 5.88 0.27 5.27 +dédales dédale NOM m p 0.28 5.88 0.01 0.61 +dédia dédier VER 8.69 7.77 0.11 0.88 ind:pas:3s; +dédiaient dédier VER 8.69 7.77 0.00 0.34 ind:imp:3p; +dédiait dédier VER 8.69 7.77 0.01 0.61 ind:imp:3s; +dédiant dédier VER 8.69 7.77 0.04 0.20 par:pre; +dédicace dédicace NOM f s 1.92 2.30 1.72 1.76 +dédicacer dédicacer VER 1.91 1.49 0.69 0.41 inf; +dédicacerai dédicacer VER 1.91 1.49 0.01 0.00 ind:fut:1s; +dédicaces dédicace NOM f p 1.92 2.30 0.20 0.54 +dédicacez dédicacer VER 1.91 1.49 0.14 0.00 imp:pre:2p;ind:pre:2p; +dédicaciez dédicacer VER 1.91 1.49 0.01 0.00 ind:imp:2p; +dédicacé dédicacer VER m s 1.91 1.49 0.25 0.34 par:pas; +dédicacée dédicacé ADJ f s 0.76 0.61 0.59 0.34 +dédicacées dédicacé ADJ f p 0.76 0.61 0.01 0.00 +dédicacés dédicacé ADJ m p 0.76 0.61 0.04 0.14 +dédicaça dédicacer VER 1.91 1.49 0.00 0.14 ind:pas:3s; +dédicaçait dédicacer VER 1.91 1.49 0.00 0.14 ind:imp:3s; +dédicatoire dédicatoire ADJ f s 0.00 0.41 0.00 0.34 +dédicatoires dédicatoire ADJ f p 0.00 0.41 0.00 0.07 +dédie dédier VER 8.69 7.77 1.83 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dédient dédier VER 8.69 7.77 0.14 0.14 ind:pre:3p; +dédier dédier VER 8.69 7.77 1.67 1.08 inf; +dédiera dédier VER 8.69 7.77 0.03 0.00 ind:fut:3s; +dédierai dédier VER 8.69 7.77 0.03 0.14 ind:fut:1s; +dédierait dédier VER 8.69 7.77 0.00 0.20 cnd:pre:3s; +dédiez dédier VER 8.69 7.77 0.01 0.00 imp:pre:2p; +dédions dédier VER 8.69 7.77 0.23 0.00 imp:pre:1p;ind:pre:1p; +dédire dédire VER 0.04 0.61 0.01 0.27 inf; +dédit dédit NOM m s 0.04 0.41 0.04 0.41 +dudit dudit PRE 0.16 1.08 0.16 1.08 +dédite dédire VER f s 0.04 0.61 0.01 0.00 par:pas; +dédié dédier VER m s 8.69 7.77 3.38 1.55 par:pas; +dédiée dédier VER f s 8.69 7.77 1.07 0.74 par:pas; +dédiées dédier VER f p 8.69 7.77 0.01 0.54 par:pas; +dédiés dédier VER m p 8.69 7.77 0.11 0.41 par:pas; +dédommage dédommager VER 3.05 1.69 0.35 0.14 ind:pre:1s;ind:pre:3s; +dédommagea dédommager VER 3.05 1.69 0.10 0.07 ind:pas:3s; +dédommageait dédommager VER 3.05 1.69 0.14 0.20 ind:imp:3s; +dédommagement dédommagement NOM m s 1.18 0.74 1.10 0.54 +dédommagements dédommagement NOM m p 1.18 0.74 0.08 0.20 +dédommagent dédommager VER 3.05 1.69 0.00 0.20 ind:pre:3p; +dédommager dédommager VER 3.05 1.69 1.45 0.47 ind:pre:2p;inf; +dédommagera dédommager VER 3.05 1.69 0.16 0.00 ind:fut:3s; +dédommagerai dédommager VER 3.05 1.69 0.25 0.07 ind:fut:1s; +dédommagerait dédommager VER 3.05 1.69 0.00 0.07 cnd:pre:3s; +dédommagerez dédommager VER 3.05 1.69 0.01 0.00 ind:fut:2p; +dédommagerons dédommager VER 3.05 1.69 0.00 0.07 ind:fut:1p; +dédommagé dédommager VER m s 3.05 1.69 0.25 0.34 par:pas; +dédommagée dédommager VER f s 3.05 1.69 0.19 0.07 par:pas; +dédommagés dédommager VER m p 3.05 1.69 0.15 0.00 par:pas; +dédorent dédorer VER 0.00 0.47 0.00 0.07 ind:pre:3p; +dédoré dédorer VER m s 0.00 0.47 0.00 0.07 par:pas; +dédorée dédorer VER f s 0.00 0.47 0.00 0.07 par:pas; +dédorées dédorer VER f p 0.00 0.47 0.00 0.14 par:pas; +dédorés dédorer VER m p 0.00 0.47 0.00 0.14 par:pas; +dédouanait dédouaner VER 0.08 0.74 0.00 0.07 ind:imp:3s; +dédouane dédouaner VER 0.08 0.74 0.01 0.14 ind:pre:1s;ind:pre:3s; +dédouanement dédouanement NOM m s 0.14 0.00 0.14 0.00 +dédouaner dédouaner VER 0.08 0.74 0.03 0.34 inf; +dédouanez dédouaner VER 0.08 0.74 0.00 0.07 ind:pre:2p; +dédouané dédouaner VER m s 0.08 0.74 0.01 0.14 par:pas; +dédouanée dédouaner VER f s 0.08 0.74 0.02 0.00 par:pas; +dédouanés dédouaner VER m p 0.08 0.74 0.01 0.00 par:pas; +dédoubla dédoubler VER 0.97 2.03 0.00 0.07 ind:pas:3s; +dédoublaient dédoubler VER 0.97 2.03 0.00 0.14 ind:imp:3p; +dédoublais dédoubler VER 0.97 2.03 0.00 0.07 ind:imp:1s; +dédoublait dédoubler VER 0.97 2.03 0.00 0.07 ind:imp:3s; +dédouble dédoubler VER 0.97 2.03 0.04 0.14 ind:pre:3s; +dédoublement dédoublement NOM m s 0.46 1.01 0.46 1.01 +dédoubler dédoubler VER 0.97 2.03 0.12 0.68 inf; +dédoublerait dédoubler VER 0.97 2.03 0.00 0.07 cnd:pre:3s; +dédoublez dédoubler VER 0.97 2.03 0.02 0.00 imp:pre:2p; +dédoublons dédoubler VER 0.97 2.03 0.01 0.00 imp:pre:1p; +dédoublé dédoubler VER m s 0.97 2.03 0.44 0.54 par:pas; +dédoublée dédoubler VER f s 0.97 2.03 0.13 0.14 par:pas; +dédoublées dédoubler VER f p 0.97 2.03 0.00 0.07 par:pas; +dédoublés dédoubler VER m p 0.97 2.03 0.21 0.07 par:pas; +dédramatisant dédramatiser VER 0.06 0.27 0.00 0.07 par:pre; +dédramatise dédramatiser VER 0.06 0.27 0.02 0.00 imp:pre:2s;ind:pre:1s; +dédramatiser dédramatiser VER 0.06 0.27 0.03 0.20 inf; +déducteur déducteur NOM m s 0.00 0.14 0.00 0.14 +déductibilité déductibilité NOM f s 0.07 0.00 0.07 0.00 +déductible déductible ADJ f s 0.56 0.00 0.40 0.00 +déductibles déductible ADJ f p 0.56 0.00 0.16 0.00 +déductif déductif ADJ m s 0.16 0.07 0.14 0.00 +déduction déduction NOM f s 2.06 2.16 1.55 1.08 +déductions déduction NOM f p 2.06 2.16 0.52 1.08 +déductive déductif ADJ f s 0.16 0.07 0.03 0.07 +déduira déduire VER 7.08 6.01 0.05 0.14 ind:fut:3s; +déduirai déduire VER 7.08 6.01 0.31 0.00 ind:fut:1s; +déduiraient déduire VER 7.08 6.01 0.01 0.07 cnd:pre:3p; +déduirait déduire VER 7.08 6.01 0.03 0.00 cnd:pre:3s; +déduire déduire VER 7.08 6.01 2.00 2.36 inf; +déduirez déduire VER 7.08 6.01 0.04 0.07 ind:fut:2p; +déduis déduire VER 7.08 6.01 1.54 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +déduisaient déduire VER 7.08 6.01 0.01 0.14 ind:imp:3p; +déduisait déduire VER 7.08 6.01 0.00 0.27 ind:imp:3s; +déduisant déduire VER 7.08 6.01 0.02 0.00 par:pre; +déduise déduire VER 7.08 6.01 0.04 0.07 sub:pre:1s;sub:pre:3s; +déduisent déduire VER 7.08 6.01 0.08 0.07 ind:pre:3p; +déduisez déduire VER 7.08 6.01 0.28 0.07 imp:pre:2p;ind:pre:2p; +déduisiez déduire VER 7.08 6.01 0.01 0.07 ind:imp:2p; +déduisit déduire VER 7.08 6.01 0.02 0.34 ind:pas:3s; +déduisons déduire VER 7.08 6.01 0.00 0.14 imp:pre:1p;ind:pre:1p; +déduit déduire VER m s 7.08 6.01 2.41 1.22 ind:pre:3s;par:pas; +déduite déduire VER f s 7.08 6.01 0.01 0.34 par:pas; +déduites déduire VER f p 7.08 6.01 0.03 0.14 par:pas; +déduits déduire VER m p 7.08 6.01 0.20 0.14 par:pas; +due devoir VER f s 3232.80 1318.24 3.95 5.95 par:pas; +duel duel NOM m s 7.54 5.95 6.17 4.93 +duelliste duelliste NOM s 0.21 0.14 0.20 0.00 +duellistes duelliste NOM p 0.21 0.14 0.01 0.14 +duels duel NOM m p 7.54 5.95 1.37 1.01 +dues devoir VER f p 3232.80 1318.24 1.94 1.55 par:pas; +déesse déesse NOM f s 13.56 8.65 11.82 6.42 +déesses déesse NOM f p 13.56 8.65 1.74 2.23 +duettistes duettiste NOM p 0.06 0.68 0.06 0.68 +défaillais défaillir VER 1.32 5.47 0.01 0.07 ind:imp:1s; +défaillait défaillir VER 1.32 5.47 0.02 0.54 ind:imp:3s; +défaillance défaillance NOM f s 2.37 7.57 2.06 5.47 +défaillances défaillance NOM f p 2.37 7.57 0.31 2.09 +défaillant défaillant ADJ m s 1.02 2.30 0.36 0.81 +défaillante défaillant ADJ f s 1.02 2.30 0.54 0.81 +défaillantes défaillant ADJ f p 1.02 2.30 0.04 0.27 +défaillants défaillant ADJ m p 1.02 2.30 0.09 0.41 +défaille défaillir VER 1.32 5.47 0.65 0.88 sub:pre:1s;sub:pre:3s; +défaillent défaillir VER 1.32 5.47 0.01 0.14 ind:pre:3p; +défailli défaillir VER m s 1.32 5.47 0.01 0.34 par:pas; +défaillir défaillir VER 1.32 5.47 0.58 2.91 inf; +défaillirait défaillir VER 1.32 5.47 0.00 0.07 cnd:pre:3s; +défaillis défaillir VER 1.32 5.47 0.02 0.07 ind:pas:1s; +défaillit défaillir VER 1.32 5.47 0.00 0.27 ind:pas:3s; +défaire défaire VER 12.32 32.23 5.26 10.14 inf; +défais défaire VER 12.32 32.23 2.13 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +défaisaient défaire VER 12.32 32.23 0.03 0.81 ind:imp:3p; +défaisais défaire VER 12.32 32.23 0.02 0.14 ind:imp:1s;ind:imp:2s; +défaisait défaire VER 12.32 32.23 0.04 2.50 ind:imp:3s; +défaisant défaire VER 12.32 32.23 0.11 0.88 par:pre; +défaisons défaire VER 12.32 32.23 0.01 0.07 ind:pre:1p; +défait défaire VER m s 12.32 32.23 2.25 7.84 ind:pre:3s;par:pas; +défaite défaite NOM f s 8.38 21.82 7.64 19.46 +défaites défaire VER f p 12.32 32.23 0.75 0.14 imp:pre:2p;ind:pre:2p;par:pas; +défaitisme défaitisme NOM m s 0.56 0.68 0.56 0.68 +défaitiste défaitiste ADJ s 1.26 0.41 0.57 0.14 +défaitistes défaitiste ADJ p 1.26 0.41 0.69 0.27 +défaits défaire VER m p 12.32 32.23 0.57 1.22 par:pas; +défalque défalquer VER 0.01 0.27 0.00 0.07 ind:pre:3s; +défalquer défalquer VER 0.01 0.27 0.01 0.07 inf; +défalqué défalquer VER m s 0.01 0.27 0.00 0.07 par:pas; +défalquées défalquer VER f p 0.01 0.27 0.00 0.07 par:pas; +défarguaient défarguer VER 0.00 0.61 0.00 0.07 ind:imp:3p; +défargue défarguer VER 0.00 0.61 0.00 0.20 ind:pre:3s; +défarguer défarguer VER 0.00 0.61 0.00 0.20 inf; +défargué défarguer VER m s 0.00 0.61 0.00 0.14 par:pas; +défasse défaire VER 12.32 32.23 0.05 0.54 sub:pre:1s;sub:pre:3s; +défausse défausser VER 0.02 0.07 0.01 0.00 ind:pre:3s; +défausser défausser VER 0.02 0.07 0.01 0.07 inf; +défaut défaut NOM m s 18.36 38.45 11.24 27.70 +défauts défaut NOM m p 18.36 38.45 7.12 10.74 +défaveur défaveur NOM f s 0.18 0.41 0.18 0.41 +défavorable défavorable ADJ s 0.68 2.91 0.56 1.76 +défavorablement défavorablement ADV 0.00 0.20 0.00 0.20 +défavorables défavorable ADJ p 0.68 2.91 0.12 1.15 +défavorisait défavoriser VER 0.06 0.20 0.00 0.07 ind:imp:3s; +défavorisent défavoriser VER 0.06 0.20 0.01 0.00 ind:pre:3p; +défavorisé défavorisé ADJ m s 0.53 0.54 0.07 0.14 +défavorisée défavorisé ADJ f s 0.53 0.54 0.05 0.07 +défavorisées défavorisé ADJ f p 0.53 0.54 0.03 0.20 +défavorisés défavorisé ADJ m p 0.53 0.54 0.39 0.14 +défectible défectible ADJ s 0.00 0.07 0.00 0.07 +défectif défectif ADJ m s 0.01 0.00 0.01 0.00 +défection défection NOM f s 0.44 1.35 0.42 1.15 +défectionnaires défectionnaire ADJ p 0.00 0.07 0.00 0.07 +défections défection NOM f p 0.44 1.35 0.02 0.20 +défectueuse défectueux ADJ f s 2.54 1.89 0.60 0.61 +défectueusement défectueusement ADV 0.00 0.07 0.00 0.07 +défectueuses défectueux ADJ f p 2.54 1.89 0.19 0.54 +défectueux défectueux ADJ m 2.54 1.89 1.74 0.74 +défectuosité défectuosité NOM f s 0.01 0.14 0.01 0.14 +défend défendre VER 78.36 91.08 7.00 6.01 ind:pre:3s; +défendît défendre VER 78.36 91.08 0.00 0.47 sub:imp:3s; +défendable défendable ADJ f s 0.20 0.20 0.20 0.20 +défendaient défendre VER 78.36 91.08 0.20 2.36 ind:imp:3p; +défendais défendre VER 78.36 91.08 0.70 1.82 ind:imp:1s;ind:imp:2s; +défendait défendre VER 78.36 91.08 1.39 8.18 ind:imp:3s; +défendant défendre VER 78.36 91.08 1.64 2.16 par:pre; +défende défendre VER 78.36 91.08 0.56 0.47 sub:pre:1s;sub:pre:3s; +défendent défendre VER 78.36 91.08 1.81 2.09 ind:pre:3p; +défenderesse défendeur NOM f s 0.50 0.00 0.03 0.00 +défendes défendre VER 78.36 91.08 0.22 0.20 sub:pre:2s; +défendeur défendeur NOM m s 0.50 0.00 0.43 0.00 +défendeurs défendeur NOM m p 0.50 0.00 0.04 0.00 +défendez défendre VER 78.36 91.08 2.94 0.88 imp:pre:2p;ind:pre:2p; +défendiez défendre VER 78.36 91.08 0.13 0.14 ind:imp:2p; +défendions défendre VER 78.36 91.08 0.02 0.27 ind:imp:1p; +défendirent défendre VER 78.36 91.08 0.01 0.14 ind:pas:3p; +défendis défendre VER 78.36 91.08 0.10 0.27 ind:pas:1s; +défendit défendre VER 78.36 91.08 0.01 1.22 ind:pas:3s; +défendons défendre VER 78.36 91.08 0.75 0.47 imp:pre:1p;ind:pre:1p; +défendra défendre VER 78.36 91.08 1.00 0.68 ind:fut:3s; +défendrai défendre VER 78.36 91.08 1.80 0.61 ind:fut:1s; +défendraient défendre VER 78.36 91.08 0.13 0.34 cnd:pre:3p; +défendrais défendre VER 78.36 91.08 0.14 0.47 cnd:pre:1s;cnd:pre:2s; +défendrait défendre VER 78.36 91.08 0.11 1.15 cnd:pre:3s; +défendras défendre VER 78.36 91.08 0.06 0.07 ind:fut:2s; +défendre défendre VER 78.36 91.08 36.58 41.49 inf; +défendrez défendre VER 78.36 91.08 0.22 0.14 ind:fut:2p; +défendriez défendre VER 78.36 91.08 0.06 0.14 cnd:pre:2p; +défendrons défendre VER 78.36 91.08 0.37 0.14 ind:fut:1p; +défendront défendre VER 78.36 91.08 0.23 0.27 ind:fut:3p; +défends défendre VER 78.36 91.08 9.24 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +défendu défendre VER m s 78.36 91.08 9.18 10.81 par:pas; +défendue défendre VER f s 78.36 91.08 1.17 2.16 par:pas; +défendues défendre VER f p 78.36 91.08 0.10 0.14 par:pas; +défendus défendre VER m p 78.36 91.08 0.50 0.47 par:pas; +défenestraient défenestrer VER 0.44 0.27 0.00 0.07 ind:imp:3p; +défenestrant défenestrer VER 0.44 0.27 0.01 0.00 par:pre; +défenestration défenestration NOM f s 0.09 0.07 0.09 0.07 +défenestrer défenestrer VER 0.44 0.27 0.17 0.00 inf; +défenestrerai défenestrer VER 0.44 0.27 0.00 0.07 ind:fut:1s; +défenestré défenestrer VER m s 0.44 0.27 0.12 0.14 par:pas; +défenestrée défenestrer VER f s 0.44 0.27 0.14 0.00 par:pas; +défens défens NOM m 0.01 0.00 0.01 0.00 +défense défense NOM f s 50.94 52.30 48.56 47.77 +défenses défense NOM f p 50.94 52.30 2.38 4.53 +défenseur défenseur NOM m s 3.74 6.35 2.59 3.38 +défenseurs défenseur NOM m p 3.74 6.35 1.15 2.97 +défensif défensif ADJ m s 2.35 1.96 0.71 0.74 +défensifs défensif ADJ m p 2.35 1.96 0.33 0.00 +défensive défensive NOM f s 0.98 1.89 0.98 1.89 +défensives défensif ADJ f p 2.35 1.96 0.57 0.27 +défera défaire VER 12.32 32.23 0.03 0.27 ind:fut:3s; +déferai défaire VER 12.32 32.23 0.05 0.14 ind:fut:1s; +déferaient défaire VER 12.32 32.23 0.00 0.07 cnd:pre:3p; +déferais défaire VER 12.32 32.23 0.01 0.00 cnd:pre:1s; +déferait défaire VER 12.32 32.23 0.15 0.27 cnd:pre:3s; +déferas défaire VER 12.32 32.23 0.02 0.00 ind:fut:2s; +déferez défaire VER 12.32 32.23 0.00 0.07 ind:fut:2p; +déferla déferler VER 1.38 11.28 0.05 1.22 ind:pas:3s; +déferlaient déferler VER 1.38 11.28 0.03 1.42 ind:imp:3p; +déferlait déferler VER 1.38 11.28 0.03 2.36 ind:imp:3s; +déferlant déferler VER 1.38 11.28 0.02 0.54 par:pre; +déferlante déferlante NOM f s 0.26 0.34 0.23 0.20 +déferlantes déferlante NOM f p 0.26 0.34 0.03 0.14 +déferle déferler VER 1.38 11.28 0.57 1.55 imp:pre:2s;ind:pre:3s; +déferlement déferlement NOM m s 0.34 4.66 0.33 4.53 +déferlements déferlement NOM m p 0.34 4.66 0.01 0.14 +déferlent déferler VER 1.38 11.28 0.30 1.15 ind:pre:3p; +déferler déferler VER 1.38 11.28 0.08 1.76 inf; +déferleraient déferler VER 1.38 11.28 0.00 0.14 cnd:pre:3p; +déferlerait déferler VER 1.38 11.28 0.00 0.20 cnd:pre:3s; +déferleront déferler VER 1.38 11.28 0.00 0.07 ind:fut:3p; +déferlez déferler VER 1.38 11.28 0.02 0.00 imp:pre:2p; +déferlât déferler VER 1.38 11.28 0.00 0.07 sub:imp:3s; +déferlèrent déferler VER 1.38 11.28 0.01 0.00 ind:pas:3p; +déferlé déferler VER m s 1.38 11.28 0.28 0.74 par:pas; +déferlées déferler VER f p 1.38 11.28 0.00 0.07 par:pas; +déferons défaire VER 12.32 32.23 0.10 0.07 ind:fut:1p; +déferont défaire VER 12.32 32.23 0.01 0.07 ind:fut:3p; +déferrer déferrer VER 0.10 0.07 0.10 0.00 inf; +déferré déferrer VER m s 0.10 0.07 0.00 0.07 par:pas; +déferré déferré ADJ m s 0.00 0.07 0.00 0.07 +défeuillées défeuiller VER f p 0.00 0.07 0.00 0.07 par:pas; +duffel_coat duffel_coat NOM m s 0.01 0.07 0.01 0.07 +duffle_coat duffle_coat NOM m s 0.00 0.34 0.00 0.27 +duffle_coat duffle_coat NOM m p 0.00 0.34 0.00 0.07 +défi défi NOM m s 12.24 17.36 10.23 15.20 +défia défier VER 13.49 12.30 0.04 0.27 ind:pas:3s; +défiaient défier VER 13.49 12.30 0.12 0.61 ind:imp:3p; +défiais défier VER 13.49 12.30 0.01 0.27 ind:imp:1s; +défiait défier VER 13.49 12.30 0.23 1.69 ind:imp:3s; +défiance défiance NOM f s 0.58 2.09 0.58 1.96 +défiances défiance NOM f p 0.58 2.09 0.00 0.14 +défiant défiant ADJ m s 0.43 0.34 0.43 0.27 +défiante défiant ADJ f s 0.43 0.34 0.00 0.07 +défibreur défibreur NOM m s 0.01 0.00 0.01 0.00 +défibrillateur défibrillateur NOM m s 0.58 0.00 0.57 0.00 +défibrillateurs défibrillateur NOM m p 0.58 0.00 0.01 0.00 +défibrillation défibrillation NOM f s 0.14 0.00 0.14 0.00 +déficeler déficeler VER 0.01 0.27 0.01 0.14 inf; +déficelle déficeler VER 0.01 0.27 0.00 0.07 ind:pre:3s; +déficelèrent déficeler VER 0.01 0.27 0.00 0.07 ind:pas:3p; +déficience déficience NOM f s 1.01 1.22 0.56 0.47 +déficiences déficience NOM f p 1.01 1.22 0.45 0.74 +déficient déficient ADJ m s 0.45 0.74 0.21 0.27 +déficiente déficient ADJ f s 0.45 0.74 0.11 0.41 +déficientes déficient ADJ f p 0.45 0.74 0.04 0.00 +déficients déficient ADJ m p 0.45 0.74 0.09 0.07 +déficit déficit NOM m s 1.92 1.42 1.91 0.95 +déficitaire déficitaire ADJ s 0.10 0.34 0.06 0.07 +déficitaires déficitaire ADJ p 0.10 0.34 0.04 0.27 +déficits déficit NOM m p 1.92 1.42 0.01 0.47 +défie défier VER 13.49 12.30 5.36 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défient défier VER 13.49 12.30 0.86 0.54 ind:pre:3p; +défier défier VER 13.49 12.30 3.92 4.39 inf; +défiera défier VER 13.49 12.30 0.05 0.00 ind:fut:3s; +défierai défier VER 13.49 12.30 0.05 0.00 ind:fut:1s; +défierais défier VER 13.49 12.30 0.03 0.00 cnd:pre:1s; +défierait défier VER 13.49 12.30 0.02 0.14 cnd:pre:3s; +défieriez défier VER 13.49 12.30 0.01 0.00 cnd:pre:2p; +défierons défier VER 13.49 12.30 0.01 0.00 ind:fut:1p; +défiez défier VER 13.49 12.30 0.57 0.27 imp:pre:2p;ind:pre:2p; +défigeait défiger VER 0.07 0.07 0.00 0.07 ind:imp:3s; +défiger défiger VER 0.07 0.07 0.07 0.00 inf; +défigura défigurer VER 3.27 5.41 0.01 0.14 ind:pas:3s; +défiguraient défigurer VER 3.27 5.41 0.00 0.27 ind:imp:3p; +défigurais défigurer VER 3.27 5.41 0.00 0.07 ind:imp:1s; +défigurait défigurer VER 3.27 5.41 0.00 0.54 ind:imp:3s; +défigurant défigurer VER 3.27 5.41 0.01 0.07 par:pre; +défiguration défiguration NOM f s 0.25 0.14 0.24 0.14 +défigurations défiguration NOM f p 0.25 0.14 0.01 0.00 +défigure défigurer VER 3.27 5.41 0.55 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défigurement défigurement NOM m s 0.01 0.00 0.01 0.00 +défigurent défigurer VER 3.27 5.41 0.01 0.14 ind:pre:3p; +défigurer défigurer VER 3.27 5.41 0.56 0.81 inf; +défigurerait défigurer VER 3.27 5.41 0.01 0.07 cnd:pre:3s; +défiguré défigurer VER m s 3.27 5.41 1.43 1.62 par:pas; +défigurée défigurer VER f s 3.27 5.41 0.62 0.74 par:pas; +défigurées défiguré ADJ f p 0.71 1.69 0.02 0.07 +défigurés défigurer VER m p 3.27 5.41 0.06 0.41 par:pas; +défila défiler VER 10.82 32.64 0.00 0.54 ind:pas:3s; +défilaient défiler VER 10.82 32.64 0.17 4.73 ind:imp:3p; +défilais défiler VER 10.82 32.64 0.04 0.20 ind:imp:1s;ind:imp:2s; +défilait défiler VER 10.82 32.64 0.20 2.70 ind:imp:3s; +défilant défiler VER 10.82 32.64 0.17 1.15 par:pre; +défilantes défilant ADJ f p 0.00 0.14 0.00 0.07 +défilants défilant ADJ m p 0.00 0.14 0.00 0.07 +défile défiler VER 10.82 32.64 2.66 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défilement défilement NOM m s 0.01 0.68 0.01 0.61 +défilements défilement NOM m p 0.01 0.68 0.00 0.07 +défilent défiler VER 10.82 32.64 1.04 4.59 ind:pre:3p; +défiler défiler VER 10.82 32.64 4.32 11.28 inf; +défilera défiler VER 10.82 32.64 0.19 0.14 ind:fut:3s; +défileraient défiler VER 10.82 32.64 0.00 0.27 cnd:pre:3p; +défilerait défiler VER 10.82 32.64 0.02 0.27 cnd:pre:3s; +défileras défiler VER 10.82 32.64 0.01 0.00 ind:fut:2s; +défilerez défiler VER 10.82 32.64 0.01 0.07 ind:fut:2p; +défilerons défiler VER 10.82 32.64 0.03 0.00 ind:fut:1p; +défileront défiler VER 10.82 32.64 0.19 0.00 ind:fut:3p; +défilez défiler VER 10.82 32.64 0.25 0.07 imp:pre:2p;ind:pre:2p; +défiliez défiler VER 10.82 32.64 0.02 0.00 ind:imp:2p; +défilions défiler VER 10.82 32.64 0.01 0.07 ind:imp:1p; +défilons défiler VER 10.82 32.64 0.01 0.14 ind:pre:1p; +défilèrent défiler VER 10.82 32.64 0.01 1.62 ind:pas:3p; +défilé défilé NOM m s 8.05 14.73 7.45 12.30 +défilée défiler VER f s 10.82 32.64 0.07 0.00 par:pas; +défilés défilé NOM m p 8.05 14.73 0.59 2.43 +défini définir VER m s 7.22 14.53 0.82 1.22 par:pas; +définie définir VER f s 7.22 14.53 0.51 1.28 par:pas; +définies défini ADJ f p 1.40 3.38 0.22 0.14 +définir définir VER 7.22 14.53 3.07 7.70 inf; +définira définir VER 7.22 14.53 0.05 0.07 ind:fut:3s; +définirais définir VER 7.22 14.53 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +définirait définir VER 7.22 14.53 0.04 0.14 cnd:pre:3s; +définiriez définir VER 7.22 14.53 0.10 0.00 cnd:pre:2p; +définis définir VER m p 7.22 14.53 0.35 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +définissable définissable ADJ m s 0.00 0.20 0.00 0.14 +définissables définissable ADJ p 0.00 0.20 0.00 0.07 +définissaient définir VER 7.22 14.53 0.00 0.20 ind:imp:3p; +définissait définir VER 7.22 14.53 0.14 1.15 ind:imp:3s; +définissant définir VER 7.22 14.53 0.06 0.14 par:pre; +définisse définir VER 7.22 14.53 0.08 0.07 sub:pre:3s; +définissent définir VER 7.22 14.53 0.36 0.41 ind:pre:3p; +définissez définir VER 7.22 14.53 0.53 0.07 imp:pre:2p;ind:pre:2p; +définissons définir VER 7.22 14.53 0.05 0.07 imp:pre:1p;ind:pre:1p; +définit définir VER 7.22 14.53 0.93 1.28 ind:pre:3s;ind:pas:3s; +définitif définitif ADJ m s 8.01 31.76 4.00 10.41 +définitifs définitif ADJ m p 8.01 31.76 0.30 1.89 +définition définition NOM f s 4.95 7.23 4.73 6.28 +définitions définition NOM f p 4.95 7.23 0.22 0.95 +définitive définitif ADJ f s 8.01 31.76 3.43 17.97 +définitivement définitivement ADV 9.34 23.51 9.34 23.51 +définitives définitif ADJ f p 8.01 31.76 0.27 1.49 +défions défier VER 13.49 12.30 0.47 0.07 imp:pre:1p;ind:pre:1p; +défirent défaire VER 12.32 32.23 0.00 0.27 ind:pas:3p; +défis défi NOM m p 12.24 17.36 2.02 2.16 +défiscalisations défiscalisation NOM f p 0.01 0.00 0.01 0.00 +défiscalisé défiscaliser VER m s 0.01 0.00 0.01 0.00 par:pas; +défit défaire VER 12.32 32.23 0.14 3.58 ind:pas:3s; +défièrent défier VER 13.49 12.30 0.02 0.07 ind:pas:3p; +défié défier VER m s 13.49 12.30 1.19 0.68 par:pas; +défiée défier VER f s 13.49 12.30 0.07 0.07 par:pas; +défiés défier VER m p 13.49 12.30 0.16 0.14 par:pas; +déflagrante déflagrant ADJ f s 0.00 0.07 0.00 0.07 +déflagration déflagration NOM f s 0.34 2.09 0.31 1.55 +déflagrations déflagration NOM f p 0.34 2.09 0.02 0.54 +déflationniste déflationniste ADJ f s 0.02 0.00 0.01 0.00 +déflationnistes déflationniste ADJ f p 0.02 0.00 0.01 0.00 +déflecteur déflecteur ADJ m s 0.04 0.00 0.04 0.00 +déflecteurs déflecteur NOM m p 0.08 0.20 0.06 0.14 +défleuri défleurir VER m s 0.00 0.47 0.00 0.20 par:pas; +défleuries défleurir VER f p 0.00 0.47 0.00 0.20 par:pas; +défleuris défleurir VER m p 0.00 0.47 0.00 0.07 par:pas; +déflexion déflexion NOM f s 0.09 0.00 0.09 0.00 +défloraison défloraison NOM f s 0.00 0.20 0.00 0.20 +déflorait déflorer VER 0.89 0.81 0.02 0.07 ind:imp:3s; +défloration défloration NOM f s 0.01 0.20 0.01 0.20 +déflorer déflorer VER 0.89 0.81 0.12 0.14 inf; +déflorerons déflorer VER 0.89 0.81 0.00 0.07 ind:fut:1p; +défloré déflorer VER m s 0.89 0.81 0.11 0.20 par:pas; +déflorée déflorer VER f s 0.89 0.81 0.65 0.27 par:pas; +déflorés déflorer VER m p 0.89 0.81 0.00 0.07 par:pas; +défoliant défoliant NOM m s 0.01 0.00 0.01 0.00 +défonce défoncer VER 16.85 9.39 3.95 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défoncement défoncement NOM m s 0.00 0.34 0.00 0.27 +défoncements défoncement NOM m p 0.00 0.34 0.00 0.07 +défoncent défoncer VER 16.85 9.39 0.50 0.27 ind:pre:3p; +défoncer défoncer VER 16.85 9.39 5.22 2.84 inf; +défoncera défoncer VER 16.85 9.39 0.06 0.14 ind:fut:3s; +défoncerai défoncer VER 16.85 9.39 0.19 0.07 ind:fut:1s; +défonceraient défoncer VER 16.85 9.39 0.01 0.07 cnd:pre:3p; +défoncerait défoncer VER 16.85 9.39 0.04 0.07 cnd:pre:3s; +défonceront défoncer VER 16.85 9.39 0.00 0.07 ind:fut:3p; +défonceuse défonceuse NOM f s 0.02 0.14 0.02 0.14 +défoncez défoncer VER 16.85 9.39 0.31 0.00 imp:pre:2p;ind:pre:2p; +défoncé défoncer VER m s 16.85 9.39 4.54 2.03 par:pas; +défoncée défoncer VER f s 16.85 9.39 1.30 0.95 par:pas; +défoncées défoncé ADJ f p 3.97 5.68 0.17 0.81 +défoncés défoncé ADJ m p 3.97 5.68 0.61 1.55 +défont défaire VER 12.32 32.23 0.05 1.22 ind:pre:3p; +défonça défoncer VER 16.85 9.39 0.01 0.07 ind:pas:3s; +défonçai défoncer VER 16.85 9.39 0.00 0.07 ind:pas:1s; +défonçaient défoncer VER 16.85 9.39 0.02 0.14 ind:imp:3p; +défonçais défoncer VER 16.85 9.39 0.06 0.00 ind:imp:1s;ind:imp:2s; +défonçait défoncer VER 16.85 9.39 0.21 0.34 ind:imp:3s; +défonçant défoncer VER 16.85 9.39 0.05 0.20 par:pre; +défonçons défoncer VER 16.85 9.39 0.04 0.00 imp:pre:1p;ind:pre:1p; +déforestation déforestation NOM f s 0.04 0.00 0.04 0.00 +déforma déformer VER 2.75 12.43 0.00 0.41 ind:pas:3s; +déformaient déformer VER 2.75 12.43 0.01 0.27 ind:imp:3p; +déformait déformer VER 2.75 12.43 0.03 1.01 ind:imp:3s; +déformant déformant ADJ m s 0.07 0.95 0.04 0.27 +déformante déformant ADJ f s 0.07 0.95 0.04 0.41 +déformantes déformant ADJ f p 0.07 0.95 0.00 0.14 +déformants déformant ADJ m p 0.07 0.95 0.00 0.14 +déformation déformation NOM f s 0.86 2.43 0.75 1.69 +déformations déformation NOM f p 0.86 2.43 0.11 0.74 +déforme déformer VER 2.75 12.43 0.55 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déforment déformer VER 2.75 12.43 0.13 0.61 ind:pre:3p; +déformer déformer VER 2.75 12.43 0.62 1.15 inf; +déformera déformer VER 2.75 12.43 0.00 0.07 ind:fut:3s; +déformerai déformer VER 2.75 12.43 0.00 0.07 ind:fut:1s; +déformerait déformer VER 2.75 12.43 0.01 0.07 cnd:pre:3s; +déformeront déformer VER 2.75 12.43 0.03 0.07 ind:fut:3p; +déformes déformer VER 2.75 12.43 0.26 0.07 ind:pre:2s; +déformez déformer VER 2.75 12.43 0.20 0.07 imp:pre:2p;ind:pre:2p; +déformé déformer VER m s 2.75 12.43 0.56 2.57 par:pas; +déformée déformé ADJ f s 1.41 3.65 0.36 0.81 +déformées déformé ADJ f p 1.41 3.65 0.13 0.68 +déformés déformé ADJ m p 1.41 3.65 0.38 1.35 +défoulaient défouler VER 3.39 0.74 0.01 0.00 ind:imp:3p; +défoulais défouler VER 3.39 0.74 0.06 0.00 ind:imp:1s;ind:imp:2s; +défoulait défouler VER 3.39 0.74 0.05 0.00 ind:imp:3s; +défoule défouler VER 3.39 0.74 1.31 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défoulement défoulement NOM m s 0.06 0.27 0.06 0.27 +défoulent défouler VER 3.39 0.74 0.14 0.07 ind:pre:3p; +défouler défouler VER 3.39 0.74 1.66 0.27 inf; +défoulera défouler VER 3.39 0.74 0.03 0.00 ind:fut:3s; +défoulerait défouler VER 3.39 0.74 0.01 0.07 cnd:pre:3s; +défoules défouler VER 3.39 0.74 0.09 0.00 ind:pre:2s; +défouliez défouler VER 3.39 0.74 0.01 0.07 ind:imp:2p; +défouloir défouloir NOM m s 0.15 0.00 0.15 0.00 +défoulons défouler VER 3.39 0.74 0.01 0.00 imp:pre:1p; +défoulés défouler VER m p 3.39 0.74 0.01 0.00 par:pas; +défouraillaient défourailler VER 0.29 0.81 0.00 0.07 ind:imp:3p; +défouraille défourailler VER 0.29 0.81 0.00 0.14 ind:pre:3s; +défouraillent défourailler VER 0.29 0.81 0.00 0.07 ind:pre:3p; +défourailler défourailler VER 0.29 0.81 0.29 0.34 inf; +défouraillerait défourailler VER 0.29 0.81 0.00 0.07 cnd:pre:3s; +défouraillé défourailler VER m s 0.29 0.81 0.00 0.14 par:pas; +défourna défourner VER 0.00 0.14 0.00 0.07 ind:pas:3s; +défournait défourner VER 0.00 0.14 0.00 0.07 ind:imp:3s; +défraîchi défraîchi ADJ m s 0.23 2.77 0.06 0.88 +défraîchie défraîchi ADJ f s 0.23 2.77 0.16 0.54 +défraîchies défraîchi ADJ f p 0.23 2.77 0.00 0.68 +défraîchir défraîchir VER 0.07 1.01 0.00 0.20 inf; +défraîchis défraîchi ADJ m p 0.23 2.77 0.01 0.68 +défraîchissait défraîchir VER 0.07 1.01 0.00 0.07 ind:imp:3s; +défragmenteur défragmenteur NOM m s 0.01 0.00 0.01 0.00 +défraiement défraiement NOM m s 0.42 0.07 0.05 0.00 +défraiements défraiement NOM m p 0.42 0.07 0.37 0.07 +défraya défrayer VER 0.04 1.55 0.01 0.20 ind:pas:3s; +défrayaient défrayer VER 0.04 1.55 0.00 0.20 ind:imp:3p; +défrayait défrayer VER 0.04 1.55 0.00 0.47 ind:imp:3s; +défrayant défrayer VER 0.04 1.55 0.00 0.07 par:pre; +défrayent défrayer VER 0.04 1.55 0.00 0.07 ind:pre:3p; +défrayer défrayer VER 0.04 1.55 0.00 0.41 inf; +défrayèrent défrayer VER 0.04 1.55 0.00 0.07 ind:pas:3p; +défrayé défrayer VER m s 0.04 1.55 0.03 0.07 par:pas; +défricha défricher VER 0.43 1.82 0.00 0.07 ind:pas:3s; +défrichage défrichage NOM m s 0.00 0.14 0.00 0.14 +défrichait défricher VER 0.43 1.82 0.00 0.07 ind:imp:3s; +défriche défricher VER 0.43 1.82 0.13 0.20 ind:pre:1s;ind:pre:3s; +défrichement défrichement NOM m s 0.00 0.47 0.00 0.41 +défrichements défrichement NOM m p 0.00 0.47 0.00 0.07 +défricher défricher VER 0.43 1.82 0.10 0.74 inf; +défricheurs défricheur NOM m p 0.00 0.14 0.00 0.14 +défriché défricher VER m s 0.43 1.82 0.10 0.47 par:pas; +défrichée défricher VER f s 0.43 1.82 0.10 0.14 par:pas; +défrichées défricher VER f p 0.43 1.82 0.00 0.07 par:pas; +défrichés défricher VER m p 0.43 1.82 0.00 0.07 par:pas; +défringue défringuer VER 0.00 0.20 0.00 0.14 imp:pre:2s; +défringues défringuer VER 0.00 0.20 0.00 0.07 ind:pre:2s; +défripe défriper VER 0.00 0.34 0.00 0.14 ind:pre:1s;ind:pre:3s; +défripera défriper VER 0.00 0.34 0.00 0.07 ind:fut:3s; +défripé défriper VER m s 0.00 0.34 0.00 0.07 par:pas; +défripées défriper VER f p 0.00 0.34 0.00 0.07 par:pas; +défrisage défrisage NOM m s 0.01 0.00 0.01 0.00 +défrisaient défriser VER 0.88 1.01 0.00 0.07 ind:imp:3p; +défrisait défriser VER 0.88 1.01 0.00 0.14 ind:imp:3s; +défrise défriser VER 0.88 1.01 0.68 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +défriser défriser VER 0.88 1.01 0.05 0.27 inf; +défriserait défriser VER 0.88 1.01 0.02 0.00 cnd:pre:3s; +défrises défriser VER 0.88 1.01 0.11 0.00 ind:pre:2s; +défrisé défriser VER m s 0.88 1.01 0.02 0.14 par:pas; +défroissa défroisser VER 0.19 1.28 0.00 0.07 ind:pas:3s; +défroissai défroisser VER 0.19 1.28 0.00 0.07 ind:pas:1s; +défroissaient défroisser VER 0.19 1.28 0.00 0.07 ind:imp:3p; +défroissait défroisser VER 0.19 1.28 0.00 0.07 ind:imp:3s; +défroissant défroisser VER 0.19 1.28 0.00 0.20 par:pre; +défroisse défroisser VER 0.19 1.28 0.17 0.07 ind:pre:1s;ind:pre:3s; +défroissent défroisser VER 0.19 1.28 0.00 0.07 ind:pre:3p; +défroisser défroisser VER 0.19 1.28 0.01 0.34 inf; +défroissé défroisser VER m s 0.19 1.28 0.01 0.14 par:pas; +défroissées défroisser VER f p 0.19 1.28 0.00 0.07 par:pas; +défroissés défroisser VER m p 0.19 1.28 0.00 0.14 par:pas; +défroqua défroquer VER 0.12 0.47 0.00 0.07 ind:pas:3s; +défroque défroque NOM f s 0.03 2.16 0.03 1.28 +défroquer défroquer VER 0.12 0.47 0.02 0.00 inf; +défroques défroque NOM f p 0.03 2.16 0.00 0.88 +défroqué défroquer VER m s 0.12 0.47 0.08 0.20 par:pas; +défroquée défroquer VER f s 0.12 0.47 0.01 0.07 par:pas; +défroqués défroquer VER m p 0.12 0.47 0.00 0.14 par:pas; +défèque déféquer VER 0.92 0.61 0.04 0.07 ind:pre:3s; +défécation défécation NOM f s 0.01 0.81 0.01 0.61 +défécations défécation NOM f p 0.01 0.81 0.00 0.20 +défécatoire défécatoire ADJ s 0.00 0.41 0.00 0.41 +déféminiser déféminiser VER 0.01 0.00 0.01 0.00 inf; +défunt défunt NOM m s 6.42 6.28 4.50 2.91 +défunte défunt ADJ f s 4.79 5.27 1.63 1.28 +défunter défunter VER 0.00 0.14 0.00 0.07 inf; +défuntes défunt NOM f p 6.42 6.28 0.14 0.14 +défunts défunt NOM m p 6.42 6.28 1.06 1.69 +défunté défunter VER m s 0.00 0.14 0.00 0.07 par:pas; +déféquaient déféquer VER 0.92 0.61 0.14 0.07 ind:imp:3p; +déféquant déféquer VER 0.92 0.61 0.03 0.07 par:pre; +déféquassent déféquer VER 0.92 0.61 0.14 0.00 sub:imp:3p; +déféquer déféquer VER 0.92 0.61 0.48 0.27 inf; +déféqué déféquer VER m s 0.92 0.61 0.09 0.14 par:pas; +déféra déférer VER 0.42 0.47 0.00 0.07 ind:pas:3s; +déférait déférer VER 0.42 0.47 0.00 0.07 ind:imp:3s; +déférant déférer VER 0.42 0.47 0.00 0.07 par:pre; +déférence déférence NOM f s 0.08 4.26 0.08 4.26 +déférent déférent ADJ m s 0.01 2.70 0.00 1.42 +déférente déférent ADJ f s 0.01 2.70 0.00 0.81 +déférentes déférent ADJ f p 0.01 2.70 0.00 0.20 +déférents déférent ADJ m p 0.01 2.70 0.01 0.27 +déférer déférer VER 0.42 0.47 0.05 0.07 inf; +déférerait déférer VER 0.42 0.47 0.00 0.07 cnd:pre:3s; +déféré déférer VER m s 0.42 0.47 0.36 0.07 par:pas; +déférés déférer VER m p 0.42 0.47 0.01 0.07 par:pas; +dégage dégager VER 102.47 58.04 56.41 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +dégagea dégager VER 102.47 58.04 0.00 6.62 ind:pas:3s; +dégageai dégager VER 102.47 58.04 0.00 0.27 ind:pas:1s; +dégageaient dégager VER 102.47 58.04 0.04 1.62 ind:imp:3p; +dégageait dégager VER 102.47 58.04 0.22 8.85 ind:imp:3s; +dégageant dégager VER 102.47 58.04 0.32 3.92 par:pre; +dégagement dégagement NOM m s 0.44 0.74 0.44 0.54 +dégagements dégagement NOM m p 0.44 0.74 0.00 0.20 +dégagent dégager VER 102.47 58.04 1.18 1.42 ind:pre:3p; +dégageons dégager VER 102.47 58.04 0.67 0.14 imp:pre:1p;ind:pre:1p; +dégageât dégager VER 102.47 58.04 0.00 0.14 sub:imp:3s; +dégager dégager VER 102.47 58.04 8.22 15.20 inf; +dégagera dégager VER 102.47 58.04 0.22 0.07 ind:fut:3s; +dégageraient dégager VER 102.47 58.04 0.00 0.07 cnd:pre:3p; +dégagerais dégager VER 102.47 58.04 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +dégagerait dégager VER 102.47 58.04 0.02 0.34 cnd:pre:3s; +dégageront dégager VER 102.47 58.04 0.03 0.00 ind:fut:3p; +dégages dégager VER 102.47 58.04 3.15 0.14 ind:pre:2s;sub:pre:2s; +dégagez dégager VER 102.47 58.04 27.61 0.41 imp:pre:2p;ind:pre:2p; +dégagèrent dégager VER 102.47 58.04 0.03 0.27 ind:pas:3p; +dégagé dégager VER m s 102.47 58.04 2.96 4.39 par:pas; +dégagée dégager VER f s 102.47 58.04 1.04 2.70 par:pas; +dégagées dégager VER f p 102.47 58.04 0.08 0.41 par:pas; +dégagés dégager VER m p 102.47 58.04 0.25 0.68 par:pas; +dégaina dégainer VER 4.95 1.96 0.01 0.07 ind:pas:3s; +dégainais dégainer VER 4.95 1.96 0.02 0.00 ind:imp:1s;ind:imp:2s; +dégainait dégainer VER 4.95 1.96 0.06 0.00 ind:imp:3s; +dégainant dégainer VER 4.95 1.96 0.01 0.14 par:pre; +dégaine dégaine NOM f s 1.45 3.18 1.43 3.11 +dégainent dégainer VER 4.95 1.96 0.04 0.00 ind:pre:3p; +dégainer dégainer VER 4.95 1.96 1.62 0.54 inf; +dégainerai dégainer VER 4.95 1.96 0.01 0.00 ind:fut:1s; +dégainerez dégainer VER 4.95 1.96 0.01 0.00 ind:fut:2p; +dégaines dégainer VER 4.95 1.96 0.15 0.00 ind:pre:2s; +dégainez dégainer VER 4.95 1.96 0.81 0.00 imp:pre:2p;ind:pre:2p; +dégainèrent dégainer VER 4.95 1.96 0.00 0.07 ind:pas:3p; +dégainé dégainer VER m s 4.95 1.96 0.80 0.41 par:pas; +dégainés dégainer VER m p 4.95 1.96 0.00 0.14 par:pas; +déganta déganter VER 0.02 0.34 0.00 0.07 ind:pas:3s; +dégantant déganter VER 0.02 0.34 0.00 0.07 par:pre; +déganté déganter VER m s 0.02 0.34 0.01 0.00 par:pas; +dégantée déganter VER f s 0.02 0.34 0.01 0.14 par:pas; +dégantées déganter VER f p 0.02 0.34 0.00 0.07 par:pas; +dégarni dégarni ADJ m s 0.40 1.82 0.39 1.69 +dégarnie dégarni ADJ f s 0.40 1.82 0.01 0.00 +dégarnies dégarni ADJ f p 0.40 1.82 0.00 0.14 +dégarnir dégarnir VER 0.17 1.01 0.02 0.14 inf; +dégarnis dégarnir VER m p 0.17 1.01 0.04 0.00 ind:pre:1s;par:pas; +dégarnissait dégarnir VER 0.17 1.01 0.00 0.14 ind:imp:3s; +dégarnissant dégarnir VER 0.17 1.01 0.00 0.07 par:pre; +dégauchi dégauchir VER m s 0.00 2.57 0.00 0.41 par:pas; +dégauchie dégauchir VER f s 0.00 2.57 0.00 0.20 par:pas; +dégauchir dégauchir VER 0.00 2.57 0.00 1.69 inf; +dégauchira dégauchir VER 0.00 2.57 0.00 0.07 ind:fut:3s; +dégauchis dégauchir VER m p 0.00 2.57 0.00 0.14 ind:pre:1s;par:pas; +dégauchisse dégauchir VER 0.00 2.57 0.00 0.07 sub:pre:3s; +dégauchisseuse dégauchisseuse NOM f s 0.00 0.07 0.00 0.07 +dégazage dégazage NOM m s 0.03 0.00 0.03 0.00 +dégazent dégazer VER 0.01 0.14 0.00 0.07 ind:pre:3p; +dégazer dégazer VER 0.01 0.14 0.01 0.07 inf; +dégel dégel NOM m s 0.47 3.31 0.47 3.31 +dégela dégeler VER 0.70 1.15 0.01 0.07 ind:pas:3s; +dégelai dégeler VER 0.70 1.15 0.00 0.07 ind:pas:1s; +dégelait dégeler VER 0.70 1.15 0.00 0.14 ind:imp:3s; +dégelant dégeler VER 0.70 1.15 0.01 0.00 par:pre; +dégeler dégeler VER 0.70 1.15 0.38 0.34 inf; +dégelez dégeler VER 0.70 1.15 0.01 0.00 ind:pre:2p; +dégelât dégeler VER 0.70 1.15 0.00 0.07 sub:imp:3s; +dégelé dégeler VER m s 0.70 1.15 0.08 0.14 par:pas; +dégelée dégeler VER f s 0.70 1.15 0.02 0.00 par:pas; +dégelées dégelée NOM f p 0.01 1.35 0.00 0.27 +dégelés dégeler VER m p 0.70 1.15 0.04 0.07 par:pas; +dégermait dégermer VER 0.00 0.07 0.00 0.07 ind:imp:3s; +dégingandé dégingandé ADJ m s 0.04 2.03 0.02 1.55 +dégingandée dégingandé ADJ f s 0.04 2.03 0.01 0.14 +dégingandées dégingandé ADJ f p 0.04 2.03 0.00 0.07 +dégingandés dégingandé ADJ m p 0.04 2.03 0.01 0.27 +dégivrage dégivrage NOM m s 0.03 0.00 0.03 0.00 +dégivrer dégivrer VER 0.15 0.07 0.11 0.00 inf; +dégivré dégivrer VER m s 0.15 0.07 0.04 0.07 par:pas; +déglacer déglacer VER 0.06 0.00 0.01 0.00 inf; +déglacera déglacer VER 0.06 0.00 0.01 0.00 ind:fut:3s; +déglacez déglacer VER 0.06 0.00 0.02 0.00 imp:pre:2p; +déglacé déglacer VER m s 0.06 0.00 0.02 0.00 par:pas; +déglingua déglinguer VER 1.08 3.72 0.00 0.07 ind:pas:3s; +déglinguaient déglinguer VER 1.08 3.72 0.00 0.07 ind:imp:3p; +déglinguait déglinguer VER 1.08 3.72 0.00 0.27 ind:imp:3s; +déglinguant déglinguer VER 1.08 3.72 0.00 0.07 par:pre; +déglingue déglinguer VER 1.08 3.72 0.56 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déglinguent déglinguer VER 1.08 3.72 0.01 0.20 ind:pre:3p; +déglinguer déglinguer VER 1.08 3.72 0.26 0.68 inf; +déglinguions déglinguer VER 1.08 3.72 0.00 0.07 ind:imp:1p; +déglingué déglingué ADJ m s 0.38 2.43 0.27 1.22 +déglinguée déglinguer VER f s 1.08 3.72 0.07 0.41 par:pas; +déglinguées déglinguer VER f p 1.08 3.72 0.03 0.14 par:pas; +déglingués déglingué ADJ m p 0.38 2.43 0.05 0.41 +dégluti déglutir VER m s 0.17 3.18 0.00 0.34 par:pas; +déglutie déglutir VER f s 0.17 3.18 0.00 0.07 par:pas; +dégluties déglutir VER f p 0.17 3.18 0.00 0.07 par:pas; +déglutir déglutir VER 0.17 3.18 0.02 0.81 inf; +déglutis déglutir VER m p 0.17 3.18 0.00 0.14 ind:pre:1s;par:pas; +déglutissait déglutir VER 0.17 3.18 0.00 0.34 ind:imp:3s; +déglutissant déglutir VER 0.17 3.18 0.14 0.34 par:pre; +déglutit déglutir VER 0.17 3.18 0.01 1.08 ind:pre:3s;ind:pas:3s; +déglutition déglutition NOM f s 0.31 1.08 0.31 0.81 +déglutitions déglutition NOM f p 0.31 1.08 0.00 0.27 +dégoût dégoût NOM m s 6.02 30.14 5.99 27.97 +dégoûta dégoûter VER 18.36 17.57 0.00 0.20 ind:pas:3s; +dégoûtai dégoûter VER 18.36 17.57 0.00 0.07 ind:pas:1s; +dégoûtaient dégoûter VER 18.36 17.57 0.03 0.61 ind:imp:3p; +dégoûtais dégoûter VER 18.36 17.57 0.19 0.27 ind:imp:1s;ind:imp:2s; +dégoûtait dégoûter VER 18.36 17.57 0.30 2.50 ind:imp:3s; +dégoûtant dégoûtant ADJ m s 15.92 6.76 11.47 3.92 +dégoûtante dégoûtant ADJ f s 15.92 6.76 2.06 1.82 +dégoûtantes dégoûtant ADJ f p 15.92 6.76 1.06 0.68 +dégoûtants dégoûtant ADJ m p 15.92 6.76 1.33 0.34 +dégoûtation dégoûtation NOM f s 0.00 0.47 0.00 0.34 +dégoûtations dégoûtation NOM f p 0.00 0.47 0.00 0.14 +dégoûte dégoûter VER 18.36 17.57 8.73 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoûtent dégoûter VER 18.36 17.57 0.88 0.74 ind:pre:3p; +dégoûter dégoûter VER 18.36 17.57 0.64 2.91 inf; +dégoûtera dégoûter VER 18.36 17.57 0.03 0.07 ind:fut:3s; +dégoûteraient dégoûter VER 18.36 17.57 0.00 0.07 cnd:pre:3p; +dégoûterais dégoûter VER 18.36 17.57 0.00 0.07 cnd:pre:1s; +dégoûterait dégoûter VER 18.36 17.57 0.34 0.27 cnd:pre:3s; +dégoûtes dégoûter VER 18.36 17.57 3.92 0.34 ind:pre:2s; +dégoûtez dégoûter VER 18.36 17.57 0.96 0.27 ind:pre:2p; +dégoûtât dégoûter VER 18.36 17.57 0.00 0.14 sub:imp:3s; +dégoûts dégoût NOM m p 6.02 30.14 0.03 2.16 +dégoûtèrent dégoûter VER 18.36 17.57 0.00 0.20 ind:pas:3p; +dégoûté dégoûter VER m s 18.36 17.57 1.18 2.70 par:pas; +dégoûtée dégoûter VER f s 18.36 17.57 0.60 0.68 par:pas; +dégoûtées dégoûté NOM f p 0.19 2.09 0.01 0.00 +dégoûtés dégoûter VER m p 18.36 17.57 0.20 0.54 par:pas; +dégobilla dégobiller VER 0.12 0.88 0.00 0.14 ind:pas:3s; +dégobillage dégobillage NOM m s 0.01 0.00 0.01 0.00 +dégobillaient dégobiller VER 0.12 0.88 0.00 0.07 ind:imp:3p; +dégobillait dégobiller VER 0.12 0.88 0.00 0.07 ind:imp:3s; +dégobillant dégobiller VER 0.12 0.88 0.00 0.14 par:pre; +dégobille dégobiller VER 0.12 0.88 0.05 0.07 imp:pre:2s;ind:pre:3s; +dégobiller dégobiller VER 0.12 0.88 0.05 0.41 inf; +dégobillé dégobiller VER m s 0.12 0.88 0.02 0.00 par:pas; +dégoisais dégoiser VER 0.41 1.35 0.00 0.07 ind:imp:2s; +dégoisait dégoiser VER 0.41 1.35 0.00 0.07 ind:imp:3s; +dégoisant dégoiser VER 0.41 1.35 0.00 0.07 par:pre; +dégoise dégoiser VER 0.41 1.35 0.39 0.27 imp:pre:2s;ind:pre:3s; +dégoisent dégoiser VER 0.41 1.35 0.00 0.14 ind:pre:3p; +dégoiser dégoiser VER 0.41 1.35 0.02 0.61 inf; +dégoiserai dégoiser VER 0.41 1.35 0.00 0.07 ind:fut:1s; +dégoises dégoiser VER 0.41 1.35 0.00 0.07 ind:pre:2s; +dégommage dégommage NOM m s 0.01 0.14 0.01 0.14 +dégommait dégommer VER 2.49 2.03 0.01 0.14 ind:imp:3s; +dégommant dégommer VER 2.49 2.03 0.01 0.00 par:pre; +dégomme dégommer VER 2.49 2.03 1.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégomment dégommer VER 2.49 2.03 0.00 0.07 ind:pre:3p; +dégommer dégommer VER 2.49 2.03 0.85 1.08 inf; +dégommera dégommer VER 2.49 2.03 0.02 0.00 ind:fut:3s; +dégommerai dégommer VER 2.49 2.03 0.01 0.07 ind:fut:1s; +dégommez dégommer VER 2.49 2.03 0.03 0.00 imp:pre:2p; +dégommons dégommer VER 2.49 2.03 0.01 0.00 imp:pre:1p; +dégommé dégommer VER m s 2.49 2.03 0.34 0.27 par:pas; +dégommée dégommer VER f s 2.49 2.03 0.02 0.00 par:pas; +dégommées dégommer VER f p 2.49 2.03 0.00 0.07 par:pas; +dégommés dégommer VER m p 2.49 2.03 0.16 0.07 par:pas; +dégonfla dégonfler VER 5.64 6.08 0.00 0.14 ind:pas:3s; +dégonflage dégonflage NOM m s 0.01 0.07 0.01 0.07 +dégonflaient dégonfler VER 5.64 6.08 0.00 0.14 ind:imp:3p; +dégonflais dégonfler VER 5.64 6.08 0.01 0.00 ind:imp:2s; +dégonflait dégonfler VER 5.64 6.08 0.03 0.47 ind:imp:3s; +dégonflant dégonfler VER 5.64 6.08 0.02 0.00 par:pre; +dégonflard dégonflard NOM m s 0.01 0.27 0.01 0.27 +dégonfle dégonfler VER 5.64 6.08 1.69 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégonflement dégonflement NOM m s 0.01 0.00 0.01 0.00 +dégonflent dégonfler VER 5.64 6.08 0.19 0.07 ind:pre:3p; +dégonfler dégonfler VER 5.64 6.08 0.76 1.42 inf; +dégonflera dégonfler VER 5.64 6.08 0.09 0.14 ind:fut:3s; +dégonfleraient dégonfler VER 5.64 6.08 0.00 0.14 cnd:pre:3p; +dégonflerais dégonfler VER 5.64 6.08 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +dégonflerait dégonfler VER 5.64 6.08 0.02 0.07 cnd:pre:3s; +dégonfleriez dégonfler VER 5.64 6.08 0.01 0.07 cnd:pre:2p; +dégonfles dégonfler VER 5.64 6.08 1.17 0.41 ind:pre:2s; +dégonflez dégonfler VER 5.64 6.08 0.11 0.07 imp:pre:2p;ind:pre:2p; +dégonflé dégonflé NOM m s 3.63 1.01 2.99 0.61 +dégonflée dégonfler VER f s 5.64 6.08 0.26 0.14 par:pas; +dégonflées dégonfler VER f p 5.64 6.08 0.01 0.00 par:pas; +dégonflés dégonflé NOM m p 3.63 1.01 0.55 0.27 +dugong dugong NOM m s 0.01 0.27 0.01 0.20 +dugongs dugong NOM m p 0.01 0.27 0.00 0.07 +dégorge dégorger VER 0.22 2.36 0.01 0.34 ind:pre:1s;ind:pre:3s; +dégorgeaient dégorger VER 0.22 2.36 0.00 0.20 ind:imp:3p; +dégorgeais dégorger VER 0.22 2.36 0.01 0.07 ind:imp:1s;ind:imp:2s; +dégorgeait dégorger VER 0.22 2.36 0.00 0.61 ind:imp:3s; +dégorgeant dégorger VER 0.22 2.36 0.00 0.20 par:pre; +dégorgement dégorgement NOM m s 0.00 0.14 0.00 0.14 +dégorgent dégorger VER 0.22 2.36 0.00 0.07 ind:pre:3p; +dégorger dégorger VER 0.22 2.36 0.17 0.34 inf; +dégorgeront dégorger VER 0.22 2.36 0.00 0.07 ind:fut:3p; +dégorgé dégorger VER m s 0.22 2.36 0.02 0.14 par:pas; +dégorgée dégorger VER f s 0.22 2.36 0.00 0.07 par:pas; +dégorgées dégorger VER f p 0.22 2.36 0.00 0.14 par:pas; +dégorgés dégorger VER m p 0.22 2.36 0.00 0.14 par:pas; +dégât dégât NOM m s 14.22 9.73 0.95 0.74 +dégota dégoter VER 3.47 1.82 0.00 0.14 ind:pas:3s; +dégotait dégoter VER 3.47 1.82 0.01 0.14 ind:imp:3s; +dégote dégoter VER 3.47 1.82 0.27 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoter dégoter VER 3.47 1.82 1.02 0.61 inf; +dégoterais dégoter VER 3.47 1.82 0.01 0.07 cnd:pre:1s; +dégoteras dégoter VER 3.47 1.82 0.03 0.00 ind:fut:2s; +dégotez dégoter VER 3.47 1.82 0.03 0.07 imp:pre:2p;ind:pre:2p; +dégâts dégât NOM m p 14.22 9.73 13.27 8.99 +dégotte dégotter VER 1.02 2.16 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégotter dégotter VER 1.02 2.16 0.23 0.95 inf; +dégottera dégotter VER 1.02 2.16 0.00 0.07 ind:fut:3s; +dégotterai dégotter VER 1.02 2.16 0.01 0.14 ind:fut:1s; +dégotterait dégotter VER 1.02 2.16 0.00 0.20 cnd:pre:3s; +dégottes dégotter VER 1.02 2.16 0.03 0.00 ind:pre:2s; +dégotté dégotter VER m s 1.02 2.16 0.53 0.68 par:pas; +dégoté dégoter VER m s 3.47 1.82 1.95 0.41 par:pas; +dégotée dégoter VER f s 3.47 1.82 0.04 0.07 par:pas; +dégotées dégoter VER f p 3.47 1.82 0.10 0.07 par:pas; +dégotés dégoter VER m p 3.47 1.82 0.00 0.07 par:pas; +dégoulina dégouliner VER 1.34 8.38 0.00 0.07 ind:pas:3s; +dégoulinade dégoulinade NOM f s 0.00 0.41 0.00 0.27 +dégoulinades dégoulinade NOM f p 0.00 0.41 0.00 0.14 +dégoulinaient dégouliner VER 1.34 8.38 0.10 0.54 ind:imp:3p; +dégoulinais dégouliner VER 1.34 8.38 0.00 0.07 ind:imp:1s; +dégoulinait dégouliner VER 1.34 8.38 0.04 2.64 ind:imp:3s; +dégoulinant dégouliner VER 1.34 8.38 0.09 1.08 par:pre; +dégoulinante dégoulinant ADJ f s 0.38 3.99 0.16 1.22 +dégoulinantes dégoulinant ADJ f p 0.38 3.99 0.12 0.68 +dégoulinants dégoulinant ADJ m p 0.38 3.99 0.04 0.74 +dégouline dégouliner VER 1.34 8.38 0.88 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoulinement dégoulinement NOM m s 0.01 0.07 0.01 0.00 +dégoulinements dégoulinement NOM m p 0.01 0.07 0.00 0.07 +dégoulinent dégouliner VER 1.34 8.38 0.03 0.34 ind:pre:3p; +dégouliner dégouliner VER 1.34 8.38 0.08 0.88 inf; +dégoulines dégouliner VER 1.34 8.38 0.07 0.00 ind:pre:2s; +dégoulinez dégouliner VER 1.34 8.38 0.02 0.00 ind:pre:2p; +dégoulinèrent dégouliner VER 1.34 8.38 0.00 0.07 ind:pas:3p; +dégouliné dégouliner VER m s 1.34 8.38 0.02 0.27 par:pas; +dégoulinures dégoulinure NOM f p 0.00 0.07 0.00 0.07 +dégoupille dégoupiller VER 0.28 0.74 0.20 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégoupiller dégoupiller VER 0.28 0.74 0.01 0.14 inf; +dégoupillâmes dégoupiller VER 0.28 0.74 0.00 0.07 ind:pas:1p; +dégoupillé dégoupiller VER m s 0.28 0.74 0.01 0.00 par:pas; +dégoupillée dégoupiller VER f s 0.28 0.74 0.05 0.34 par:pas; +dégoupillées dégoupiller VER f p 0.28 0.74 0.01 0.07 par:pas; +dégourdi dégourdi ADJ m s 0.28 0.88 0.24 0.41 +dégourdie dégourdi ADJ f s 0.28 0.88 0.02 0.14 +dégourdies dégourdi ADJ f p 0.28 0.88 0.01 0.14 +dégourdir dégourdir VER 1.65 3.31 1.40 2.43 inf; +dégourdira dégourdir VER 1.65 3.31 0.01 0.00 ind:fut:3s; +dégourdiraient dégourdir VER 1.65 3.31 0.00 0.07 cnd:pre:3p; +dégourdis dégourdir VER m p 1.65 3.31 0.07 0.14 ind:pre:1s;par:pas; +dégourdissais dégourdir VER 1.65 3.31 0.00 0.07 ind:imp:1s; +dégourdissait dégourdir VER 1.65 3.31 0.00 0.07 ind:imp:3s; +dégourdissant dégourdir VER 1.65 3.31 0.00 0.07 par:pre; +dégourdisse dégourdir VER 1.65 3.31 0.00 0.14 sub:pre:1s;sub:pre:3s; +dégourdissions dégourdir VER 1.65 3.31 0.00 0.07 ind:imp:1p; +dégourdit dégourdir VER 1.65 3.31 0.00 0.07 ind:pas:3s; +dégouttaient dégoutter VER 0.12 1.28 0.00 0.14 ind:imp:3p; +dégouttait dégoutter VER 0.12 1.28 0.10 0.54 ind:imp:3s; +dégouttant dégouttant ADJ m s 0.07 0.34 0.03 0.14 +dégouttante dégouttant ADJ f s 0.07 0.34 0.01 0.07 +dégouttantes dégouttant ADJ f p 0.07 0.34 0.03 0.00 +dégouttants dégouttant ADJ m p 0.07 0.34 0.00 0.14 +dégoutte dégoutter VER 0.12 1.28 0.01 0.07 ind:pre:1s;ind:pre:3s; +dégoutter dégoutter VER 0.12 1.28 0.00 0.14 inf; +dégrada dégrader VER 3.69 4.46 0.21 0.14 ind:pas:3s; +dégradable dégradable ADJ s 0.01 0.00 0.01 0.00 +dégradaient dégrader VER 3.69 4.46 0.11 0.20 ind:imp:3p; +dégradait dégrader VER 3.69 4.46 0.02 0.68 ind:imp:3s; +dégradant dégradant ADJ m s 1.67 1.08 1.13 0.20 +dégradante dégradant ADJ f s 1.67 1.08 0.15 0.47 +dégradantes dégradant ADJ f p 1.67 1.08 0.20 0.14 +dégradants dégradant ADJ m p 1.67 1.08 0.20 0.27 +dégradation dégradation NOM f s 0.82 2.91 0.73 2.30 +dégradations dégradation NOM f p 0.82 2.91 0.10 0.61 +dégrade dégrader VER 3.69 4.46 0.82 0.88 ind:pre:1s;ind:pre:3s; +dégradent dégrader VER 3.69 4.46 0.12 0.41 ind:pre:3p; +dégrader dégrader VER 3.69 4.46 1.00 0.54 inf; +dégrades dégrader VER 3.69 4.46 0.14 0.07 ind:pre:2s; +dégradez dégrader VER 3.69 4.46 0.03 0.00 imp:pre:2p;ind:pre:2p; +dégradé dégrader VER m s 3.69 4.46 0.93 0.47 par:pas; +dégradée dégradé ADJ f s 0.22 1.15 0.13 0.27 +dégradées dégrader VER f p 3.69 4.46 0.07 0.14 par:pas; +dégradés dégrader VER m p 3.69 4.46 0.04 0.14 par:pas; +dégrafa dégrafer VER 0.59 4.93 0.00 0.68 ind:pas:3s; +dégrafaient dégrafer VER 0.59 4.93 0.00 0.20 ind:imp:3p; +dégrafait dégrafer VER 0.59 4.93 0.00 0.61 ind:imp:3s; +dégrafant dégrafer VER 0.59 4.93 0.01 0.54 par:pre; +dégrafe dégrafer VER 0.59 4.93 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégrafer dégrafer VER 0.59 4.93 0.32 0.95 inf; +dégrafera dégrafer VER 0.59 4.93 0.00 0.07 ind:fut:3s; +dégraferait dégrafer VER 0.59 4.93 0.00 0.07 cnd:pre:3s; +dégrafeur dégrafeur NOM m s 0.01 0.00 0.01 0.00 +dégrafez dégrafer VER 0.59 4.93 0.17 0.00 imp:pre:2p; +dégrafât dégrafer VER 0.59 4.93 0.00 0.07 sub:imp:3s; +dégrafé dégrafer VER m s 0.59 4.93 0.02 0.81 par:pas; +dégrafée dégrafer VER f s 0.59 4.93 0.01 0.27 par:pas; +dégrafées dégrafer VER f p 0.59 4.93 0.00 0.14 par:pas; +dégrafés dégrafer VER m p 0.59 4.93 0.00 0.07 par:pas; +dégraissage dégraissage NOM m s 0.07 0.00 0.07 0.00 +dégraissant dégraisser VER 0.30 0.41 0.01 0.00 par:pre; +dégraissante dégraissant ADJ f s 0.01 0.00 0.01 0.00 +dégraisse dégraisser VER 0.30 0.41 0.04 0.14 imp:pre:2s;ind:pre:3s; +dégraissent dégraisser VER 0.30 0.41 0.03 0.00 ind:pre:3p; +dégraisser dégraisser VER 0.30 0.41 0.19 0.07 inf; +dégraissez dégraisser VER 0.30 0.41 0.00 0.07 imp:pre:2p; +dégraissé dégraisser VER m s 0.30 0.41 0.03 0.07 par:pas; +dégraissés dégraisser VER m p 0.30 0.41 0.00 0.07 par:pas; +dégressifs dégressif ADJ m p 0.01 0.00 0.01 0.00 +dégriffe dégriffer VER 0.03 0.14 0.00 0.07 ind:pre:3s; +dégriffer dégriffer VER 0.03 0.14 0.03 0.00 inf; +dégriffeur dégriffeur NOM m s 0.00 0.27 0.00 0.27 +dégriffé dégriffé ADJ m s 0.02 0.07 0.02 0.00 +dégriffés dégriffé ADJ m p 0.02 0.07 0.00 0.07 +dégringola dégringoler VER 1.48 12.43 0.02 1.01 ind:pas:3s; +dégringolade dégringolade NOM f s 0.13 1.89 0.13 1.82 +dégringolades dégringolade NOM f p 0.13 1.89 0.00 0.07 +dégringolai dégringoler VER 1.48 12.43 0.00 0.20 ind:pas:1s; +dégringolaient dégringoler VER 1.48 12.43 0.00 0.54 ind:imp:3p; +dégringolait dégringoler VER 1.48 12.43 0.02 1.62 ind:imp:3s; +dégringolant dégringoler VER 1.48 12.43 0.14 0.74 par:pre; +dégringole dégringoler VER 1.48 12.43 0.58 2.16 ind:pre:1s;ind:pre:3s; +dégringolent dégringoler VER 1.48 12.43 0.05 0.95 ind:pre:3p; +dégringoler dégringoler VER 1.48 12.43 0.38 2.97 inf; +dégringoleraient dégringoler VER 1.48 12.43 0.00 0.07 cnd:pre:3p; +dégringolerais dégringoler VER 1.48 12.43 0.00 0.07 cnd:pre:1s; +dégringoleront dégringoler VER 1.48 12.43 0.00 0.07 ind:fut:3p; +dégringolions dégringoler VER 1.48 12.43 0.00 0.07 ind:imp:1p; +dégringolâmes dégringoler VER 1.48 12.43 0.01 0.07 ind:pas:1p; +dégringolèrent dégringoler VER 1.48 12.43 0.02 0.20 ind:pas:3p; +dégringolé dégringoler VER m s 1.48 12.43 0.26 1.35 par:pas; +dégringolée dégringoler VER f s 1.48 12.43 0.00 0.07 par:pas; +dégringolés dégringoler VER m p 1.48 12.43 0.00 0.27 par:pas; +dégripper dégripper VER 0.00 0.07 0.00 0.07 inf; +dégrisa dégriser VER 0.18 1.55 0.00 0.20 ind:pas:3s; +dégrisait dégriser VER 0.18 1.55 0.00 0.20 ind:imp:3s; +dégrise dégriser VER 0.18 1.55 0.03 0.00 imp:pre:2s;ind:pre:1s; +dégrisement dégrisement NOM m s 0.16 0.20 0.16 0.20 +dégriser dégriser VER 0.18 1.55 0.06 0.07 inf; +dégrisât dégriser VER 0.18 1.55 0.00 0.07 sub:imp:3s; +dégrisé dégriser VER m s 0.18 1.55 0.08 0.74 par:pas; +dégrisée dégriser VER f s 0.18 1.55 0.01 0.14 par:pas; +dégrisés dégriser VER m p 0.18 1.55 0.00 0.14 par:pas; +dégrossi dégrossi ADJ m s 0.30 0.95 0.16 0.20 +dégrossie dégrossi ADJ f s 0.30 0.95 0.10 0.27 +dégrossies dégrossi ADJ f p 0.30 0.95 0.00 0.34 +dégrossir dégrossir VER 0.01 0.41 0.01 0.34 inf; +dégrossis dégrossi ADJ m p 0.30 0.95 0.04 0.14 +dégrossissage dégrossissage NOM m s 0.01 0.07 0.01 0.07 +dégrossissant dégrossir VER 0.01 0.41 0.00 0.07 par:pre; +dégrouille dégrouiller VER 0.02 0.47 0.02 0.41 imp:pre:2s;ind:pre:3s; +dégrouiller dégrouiller VER 0.02 0.47 0.00 0.07 inf; +dégrène dégrèner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +dégrèvement dégrèvement NOM m s 0.04 0.07 0.04 0.00 +dégrèvements dégrèvement NOM m p 0.04 0.07 0.00 0.07 +dégrée dégréer VER 0.01 0.00 0.01 0.00 ind:pre:3s; +dégréner dégréner VER 0.00 0.07 0.00 0.07 inf; +dégèle dégeler VER 0.70 1.15 0.09 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégèlent dégeler VER 0.70 1.15 0.04 0.07 ind:pre:3p; +dégèlera dégeler VER 0.70 1.15 0.02 0.00 ind:fut:3s; +dégèlerait dégeler VER 0.70 1.15 0.01 0.00 cnd:pre:3s; +déguenillé déguenillé ADJ m s 0.16 0.27 0.01 0.07 +déguenillée déguenillé ADJ f s 0.16 0.27 0.13 0.00 +déguenillées déguenillé ADJ f p 0.16 0.27 0.01 0.00 +déguenillés déguenillé ADJ m p 0.16 0.27 0.01 0.20 +déguerpi déguerpir VER m s 3.75 2.43 0.46 0.41 par:pas; +déguerpir déguerpir VER 3.75 2.43 1.62 1.42 inf; +déguerpirent déguerpir VER 3.75 2.43 0.00 0.07 ind:pas:3p; +déguerpis déguerpir VER m p 3.75 2.43 0.65 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +déguerpisse déguerpir VER 3.75 2.43 0.03 0.14 sub:pre:1s;sub:pre:3s; +déguerpissent déguerpir VER 3.75 2.43 0.34 0.00 ind:pre:3p; +déguerpissez déguerpir VER 3.75 2.43 0.57 0.14 imp:pre:2p;ind:pre:2p; +déguerpissiez déguerpir VER 3.75 2.43 0.01 0.00 ind:imp:2p; +déguerpissons déguerpir VER 3.75 2.43 0.03 0.00 imp:pre:1p; +déguerpit déguerpir VER 3.75 2.43 0.04 0.14 ind:pre:3s;ind:pas:3s; +dégueu dégueu ADJ s 3.41 0.88 3.10 0.81 +dégueula dégueuler VER 2.36 3.65 0.00 0.07 ind:pas:3s; +dégueulais dégueuler VER 2.36 3.65 0.02 0.00 ind:imp:1s;ind:imp:2s; +dégueulait dégueuler VER 2.36 3.65 0.03 0.20 ind:imp:3s; +dégueulando dégueulando NOM m s 0.00 0.20 0.00 0.20 +dégueulant dégueuler VER 2.36 3.65 0.04 0.00 par:pre; +dégueulasse dégueulasse ADJ s 19.98 17.30 18.80 14.53 +dégueulassement dégueulassement ADV 0.01 0.14 0.01 0.14 +dégueulasser dégueulasser VER 0.34 1.01 0.04 0.34 inf; +dégueulasserie dégueulasserie NOM f s 0.00 0.61 0.00 0.47 +dégueulasseries dégueulasserie NOM f p 0.00 0.61 0.00 0.14 +dégueulasses dégueulasse ADJ p 19.98 17.30 1.18 2.77 +dégueulassé dégueulasser VER m s 0.34 1.01 0.11 0.07 par:pas; +dégueulassés dégueulasser VER m p 0.34 1.01 0.00 0.07 par:pas; +dégueule dégueuler VER 2.36 3.65 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégueulent dégueuler VER 2.36 3.65 0.04 0.20 ind:pre:3p; +dégueuler dégueuler VER 2.36 3.65 1.57 1.69 inf; +dégueulera dégueuler VER 2.36 3.65 0.00 0.07 ind:fut:3s; +dégueules dégueuler VER 2.36 3.65 0.01 0.00 ind:pre:2s; +dégueulez dégueuler VER 2.36 3.65 0.01 0.07 ind:pre:2p; +dégueulis dégueulis NOM m 0.31 1.15 0.31 1.15 +dégueulé dégueuler VER m s 2.36 3.65 0.24 0.61 par:pas; +dégueulées dégueuler VER f p 2.36 3.65 0.00 0.07 par:pas; +dégueus dégueu ADJ m p 3.41 0.88 0.31 0.07 +déguisa déguiser VER 14.89 16.96 0.00 0.34 ind:pas:3s; +déguisaient déguiser VER 14.89 16.96 0.02 0.41 ind:imp:3p; +déguisais déguiser VER 14.89 16.96 0.17 0.34 ind:imp:1s;ind:imp:2s; +déguisait déguiser VER 14.89 16.96 0.45 1.42 ind:imp:3s; +déguisant déguiser VER 14.89 16.96 0.17 0.20 par:pre; +déguise déguiser VER 14.89 16.96 0.97 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déguisement déguisement NOM m s 4.98 5.07 3.93 3.65 +déguisements déguisement NOM m p 4.98 5.07 1.05 1.42 +déguisent déguiser VER 14.89 16.96 0.34 0.20 ind:pre:3p; +déguiser déguiser VER 14.89 16.96 3.34 2.50 inf; +déguisera déguiser VER 14.89 16.96 0.05 0.14 ind:fut:3s; +déguiserai déguiser VER 14.89 16.96 0.12 0.00 ind:fut:1s; +déguiserais déguiser VER 14.89 16.96 0.02 0.07 cnd:pre:1s; +déguiserait déguiser VER 14.89 16.96 0.03 0.00 cnd:pre:3s; +déguises déguiser VER 14.89 16.96 0.35 0.14 ind:pre:2s; +déguisez déguiser VER 14.89 16.96 0.33 0.14 imp:pre:2p;ind:pre:2p; +déguisiez déguiser VER 14.89 16.96 0.01 0.07 ind:imp:2p; +déguisions déguiser VER 14.89 16.96 0.01 0.07 ind:imp:1p; +déguisé déguiser VER m s 14.89 16.96 5.48 4.66 par:pas; +déguisée déguiser VER f s 14.89 16.96 1.55 2.50 par:pas; +déguisées déguiser VER f p 14.89 16.96 0.12 0.81 par:pas; +déguisés déguiser VER m p 14.89 16.96 1.34 1.49 par:pas; +dégénère dégénérer VER 2.95 2.30 1.26 0.47 imp:pre:2s;ind:pre:3s; +dégénèrent dégénérer VER 2.95 2.30 0.03 0.14 ind:pre:3p; +dégénéra dégénérer VER 2.95 2.30 0.02 0.20 ind:pas:3s; +dégénéraient dégénérer VER 2.95 2.30 0.00 0.14 ind:imp:3p; +dégénérait dégénérer VER 2.95 2.30 0.03 0.14 ind:imp:3s; +dégénérant dégénérer VER 2.95 2.30 0.01 0.07 par:pre; +dégénératif dégénératif ADJ m s 0.28 0.00 0.05 0.00 +dégénération dégénération NOM f s 0.10 0.00 0.10 0.00 +dégénérative dégénératif ADJ f s 0.28 0.00 0.23 0.00 +dégénérer dégénérer VER 2.95 2.30 0.86 0.61 inf; +dégénérescence dégénérescence NOM f s 1.22 1.15 1.22 1.08 +dégénérescences dégénérescence NOM f p 1.22 1.15 0.00 0.07 +dégénérât dégénérer VER 2.95 2.30 0.00 0.14 sub:imp:3s; +dégénéré dégénéré NOM m s 2.16 0.74 1.36 0.41 +dégénérée dégénéré ADJ f s 1.77 1.35 0.14 0.27 +dégénérées dégénéré ADJ f p 1.77 1.35 0.03 0.14 +dégénérés dégénéré NOM m p 2.16 0.74 0.77 0.27 +dégurgitant dégurgiter VER 0.00 0.07 0.00 0.07 par:pre; +dégusta déguster VER 2.96 11.96 0.00 0.27 ind:pas:3s; +dégustai déguster VER 2.96 11.96 0.00 0.14 ind:pas:1s; +dégustaient déguster VER 2.96 11.96 0.02 0.41 ind:imp:3p; +dégustais déguster VER 2.96 11.96 0.01 0.54 ind:imp:1s;ind:imp:2s; +dégustait déguster VER 2.96 11.96 0.01 0.95 ind:imp:3s; +dégustant déguster VER 2.96 11.96 0.21 0.88 par:pre; +dégustateur dégustateur NOM m s 0.12 0.20 0.02 0.14 +dégustateurs dégustateur NOM m p 0.12 0.20 0.00 0.07 +dégustation dégustation NOM f s 1.01 1.82 0.84 1.76 +dégustations dégustation NOM f p 1.01 1.82 0.17 0.07 +dégustatrice dégustateur NOM f s 0.12 0.20 0.10 0.00 +déguste déguster VER 2.96 11.96 0.53 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dégustent déguster VER 2.96 11.96 0.03 0.27 ind:pre:3p; +déguster déguster VER 2.96 11.96 1.84 3.92 inf; +dégustera déguster VER 2.96 11.96 0.02 0.00 ind:fut:3s; +dégusteras déguster VER 2.96 11.96 0.00 0.07 ind:fut:2s; +dégusterons déguster VER 2.96 11.96 0.01 0.00 ind:fut:1p; +dégustez déguster VER 2.96 11.96 0.04 0.14 imp:pre:2p;ind:pre:2p; +dégustâmes déguster VER 2.96 11.96 0.00 0.07 ind:pas:1p; +dégustons déguster VER 2.96 11.96 0.02 0.14 imp:pre:1p;ind:pre:1p; +dégustèrent déguster VER 2.96 11.96 0.00 0.14 ind:pas:3p; +dégusté déguster VER m s 2.96 11.96 0.23 1.69 par:pas; +dégustée déguster VER f s 2.96 11.96 0.01 0.41 par:pas; +dégustées déguster VER f p 2.96 11.96 0.00 0.14 par:pas; +dégustés déguster VER m p 2.96 11.96 0.00 0.07 par:pas; +déhale déhaler VER 0.00 0.27 0.00 0.07 ind:pre:3s; +déhaler déhaler VER 0.00 0.27 0.00 0.07 inf; +déhalées déhaler VER f p 0.00 0.27 0.00 0.14 par:pas; +déhancha déhancher VER 0.67 1.76 0.00 0.07 ind:pas:3s; +déhanchaient déhancher VER 0.67 1.76 0.01 0.27 ind:imp:3p; +déhanchait déhancher VER 0.67 1.76 0.00 0.41 ind:imp:3s; +déhanchant déhancher VER 0.67 1.76 0.03 0.14 par:pre; +déhanche déhancher VER 0.67 1.76 0.47 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déhanchement déhanchement NOM m s 0.05 1.76 0.04 1.08 +déhanchements déhanchement NOM m p 0.05 1.76 0.01 0.68 +déhanchent déhancher VER 0.67 1.76 0.05 0.07 ind:pre:3p; +déhancher déhancher VER 0.67 1.76 0.09 0.07 inf; +déhanchez déhancher VER 0.67 1.76 0.02 0.00 imp:pre:2p; +déhanché déhanché ADJ m s 0.19 0.74 0.19 0.20 +déhanchée déhanché ADJ f s 0.19 0.74 0.00 0.41 +déhanchées déhancher VER f p 0.67 1.76 0.00 0.07 par:pas; +déhanchés déhanché ADJ m p 0.19 0.74 0.00 0.07 +déharnacha déharnacher VER 0.00 0.14 0.00 0.07 ind:pas:3s; +déharnachées déharnacher VER f p 0.00 0.14 0.00 0.07 par:pas; +déhiscence déhiscence NOM f s 0.02 0.14 0.02 0.14 +déhotte déhotter VER 0.00 0.68 0.00 0.20 ind:pre:1s;ind:pre:3s; +déhotter déhotter VER 0.00 0.68 0.00 0.20 inf; +déhotté déhotter VER m s 0.00 0.68 0.00 0.20 par:pas; +déhottée déhotter VER f s 0.00 0.68 0.00 0.07 par:pas; +déicide déicide ADJ m s 0.00 0.14 0.00 0.07 +déicides déicide ADJ m p 0.00 0.14 0.00 0.07 +déifia déifier VER 0.07 0.34 0.00 0.07 ind:pas:3s; +déification déification NOM f s 0.00 0.07 0.00 0.07 +déifier déifier VER 0.07 0.34 0.00 0.14 inf; +déifié déifier VER m s 0.07 0.34 0.04 0.14 par:pas; +déifiés déifier VER m p 0.07 0.34 0.02 0.00 par:pas; +déisme déisme NOM m s 0.10 0.00 0.10 0.00 +duit duit NOM m s 0.00 0.07 0.00 0.07 +déité déité NOM f s 0.12 0.20 0.02 0.00 +déités déité NOM f p 0.12 0.20 0.10 0.20 +déjanta déjanter VER 0.86 0.54 0.00 0.07 ind:pas:3s; +déjantait déjanter VER 0.86 0.54 0.01 0.07 ind:imp:3s; +déjante déjanter VER 0.86 0.54 0.09 0.14 ind:pre:1s;ind:pre:3s; +déjantent déjanter VER 0.86 0.54 0.01 0.00 ind:pre:3p; +déjanter déjanter VER 0.86 0.54 0.09 0.14 inf; +déjanterais déjanter VER 0.86 0.54 0.01 0.00 cnd:pre:1s; +déjantes déjanter VER 0.86 0.54 0.20 0.07 ind:pre:2s; +déjanté déjanté ADJ s 0.58 0.20 0.43 0.20 +déjantée déjanter VER f s 0.86 0.54 0.21 0.07 par:pas; +déjantés déjanté ADJ m p 0.58 0.20 0.15 0.00 +déjaugeant déjauger VER 0.00 0.07 0.00 0.07 par:pre; +déjection déjection NOM f s 0.16 2.36 0.00 0.27 +déjections déjection NOM f p 0.16 2.36 0.16 2.09 +déjetait déjeter VER 0.00 0.41 0.00 0.14 ind:imp:3s; +déjeté déjeté ADJ m s 0.00 0.47 0.00 0.41 +déjetée déjeter VER f s 0.00 0.41 0.00 0.20 par:pas; +déjetés déjeté ADJ m p 0.00 0.47 0.00 0.07 +déjeuna déjeuner VER 35.43 36.01 0.01 0.54 ind:pas:3s; +déjeunai déjeuner VER 35.43 36.01 0.01 0.47 ind:pas:1s; +déjeunaient déjeuner VER 35.43 36.01 0.03 0.88 ind:imp:3p; +déjeunais déjeuner VER 35.43 36.01 0.39 0.74 ind:imp:1s;ind:imp:2s; +déjeunait déjeuner VER 35.43 36.01 0.65 1.89 ind:imp:3s; +déjeunant déjeuner VER 35.43 36.01 0.31 0.68 par:pre; +déjeune déjeuner VER 35.43 36.01 5.34 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déjeunent déjeuner VER 35.43 36.01 0.20 0.20 ind:pre:3p; +déjeuner déjeuner NOM m s 51.34 59.66 50.32 56.01 +déjeunera déjeuner VER 35.43 36.01 0.46 0.34 ind:fut:3s; +déjeunerai déjeuner VER 35.43 36.01 0.20 0.27 ind:fut:1s; +déjeuneraient déjeuner VER 35.43 36.01 0.00 0.14 cnd:pre:3p; +déjeunerait déjeuner VER 35.43 36.01 0.02 0.20 cnd:pre:3s; +déjeuneras déjeuner VER 35.43 36.01 0.02 0.14 ind:fut:2s; +déjeunerez déjeuner VER 35.43 36.01 0.09 0.07 ind:fut:2p; +déjeunerions déjeuner VER 35.43 36.01 0.00 0.14 cnd:pre:1p; +déjeunerons déjeuner VER 35.43 36.01 0.06 0.20 ind:fut:1p; +déjeuners déjeuner NOM m p 51.34 59.66 1.02 3.65 +déjeunes déjeuner VER 35.43 36.01 1.23 0.20 ind:pre:2s;sub:pre:2s; +déjeunez déjeuner VER 35.43 36.01 0.63 0.41 imp:pre:2p;ind:pre:2p; +déjeuniez déjeuner VER 35.43 36.01 0.06 0.07 ind:imp:2p; +déjeunions déjeuner VER 35.43 36.01 0.06 1.62 ind:imp:1p; +déjeunâmes déjeuner VER 35.43 36.01 0.00 0.27 ind:pas:1p; +déjeunons déjeuner VER 35.43 36.01 0.93 0.81 imp:pre:1p;ind:pre:1p; +déjeunât déjeuner VER 35.43 36.01 0.00 0.07 sub:imp:3s; +déjeunèrent déjeuner VER 35.43 36.01 0.00 0.95 ind:pas:3p; +déjeuné déjeuner VER m s 35.43 36.01 4.75 4.73 par:pas; +déjà_vu déjà_vu NOM m 0.01 0.34 0.01 0.34 +déjà déjà ONO 10.84 3.31 10.84 3.31 +déjoua déjouer VER 3.58 4.39 0.01 0.07 ind:pas:3s; +déjouait déjouer VER 3.58 4.39 0.00 0.07 ind:imp:3s; +déjouant déjouer VER 3.58 4.39 0.16 0.20 par:pre; +déjoue déjouer VER 3.58 4.39 0.40 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déjouent déjouer VER 3.58 4.39 0.01 0.07 ind:pre:3p; +déjouer déjouer VER 3.58 4.39 1.80 2.36 inf; +déjouerai déjouer VER 3.58 4.39 0.02 0.00 ind:fut:1s; +déjouerez déjouer VER 3.58 4.39 0.01 0.00 ind:fut:2p; +déjouerions déjouer VER 3.58 4.39 0.00 0.07 cnd:pre:1p; +déjouez déjouer VER 3.58 4.39 0.01 0.07 imp:pre:2p;ind:pre:2p; +déjouons déjouer VER 3.58 4.39 0.10 0.00 imp:pre:1p; +déjoué déjouer VER m s 3.58 4.39 0.99 0.61 par:pas; +déjouée déjouer VER f s 3.58 4.39 0.03 0.20 par:pas; +déjouées déjouer VER f p 3.58 4.39 0.00 0.20 par:pas; +déjoués déjouer VER m p 3.58 4.39 0.04 0.00 par:pas; +déjuchaient déjucher VER 0.00 0.07 0.00 0.07 ind:imp:3p; +déjuger déjuger VER 0.02 0.07 0.02 0.00 inf; +déjugé déjuger VER m s 0.02 0.07 0.00 0.07 par:pas; +dékoulakisation dékoulakisation NOM f s 0.00 0.07 0.00 0.07 +délabre délabrer VER 0.37 1.49 0.02 0.07 ind:pre:1s;ind:pre:3s; +délabrement délabrement NOM m s 0.05 1.62 0.05 1.62 +délabrer délabrer VER 0.37 1.49 0.03 0.07 inf; +délabré délabrer VER m s 0.37 1.49 0.24 0.68 par:pas; +délabrée délabré ADJ f s 0.50 4.59 0.22 1.55 +délabrées délabré VER f p 0.14 0.00 0.14 0.00 par:pas; +délabrés délabré ADJ m p 0.50 4.59 0.05 0.41 +délabyrinthez délabyrinther VER 0.01 0.00 0.01 0.00 imp:pre:2p; +délace délacer VER 0.04 1.22 0.01 0.20 imp:pre:2s;ind:pre:3s; +délacer délacer VER 0.04 1.22 0.00 0.14 inf; +délacèrent délacer VER 0.04 1.22 0.00 0.07 ind:pas:3p; +délacé délacer VER m s 0.04 1.22 0.02 0.20 par:pas; +délacées délacer VER f p 0.04 1.22 0.01 0.07 par:pas; +délai délai NOM m s 11.04 18.85 8.94 14.59 +délaie délayer VER 0.06 2.84 0.03 0.07 ind:pre:3s; +délais délai NOM m p 11.04 18.85 2.10 4.26 +délaissa délaisser VER 2.30 7.77 0.10 0.68 ind:pas:3s; +délaissaient délaisser VER 2.30 7.77 0.02 0.27 ind:imp:3p; +délaissais délaisser VER 2.30 7.77 0.11 0.14 ind:imp:1s;ind:imp:2s; +délaissait délaisser VER 2.30 7.77 0.17 0.41 ind:imp:3s; +délaissant délaisser VER 2.30 7.77 0.25 1.76 par:pre; +délaisse délaisser VER 2.30 7.77 0.61 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délaissement délaissement NOM m s 0.00 0.68 0.00 0.61 +délaissements délaissement NOM m p 0.00 0.68 0.00 0.07 +délaissent délaisser VER 2.30 7.77 0.01 0.14 ind:pre:3p; +délaisser délaisser VER 2.30 7.77 0.28 1.01 inf; +délaisserait délaisser VER 2.30 7.77 0.01 0.07 cnd:pre:3s; +délaisses délaisser VER 2.30 7.77 0.03 0.07 ind:pre:2s; +délaissions délaisser VER 2.30 7.77 0.00 0.20 ind:imp:1p; +délaissèrent délaisser VER 2.30 7.77 0.00 0.14 ind:pas:3p; +délaissé délaisser VER m s 2.30 7.77 0.50 1.28 par:pas; +délaissée délaissé ADJ f s 0.56 2.64 0.19 1.42 +délaissées délaissé ADJ f p 0.56 2.64 0.15 0.20 +délaissés délaissé ADJ m p 0.56 2.64 0.14 0.41 +délaita délaiter VER 0.00 0.27 0.00 0.07 ind:pas:3s; +délaite délaiter VER 0.00 0.27 0.00 0.20 ind:pre:3s; +délardant délarder VER 0.00 0.07 0.00 0.07 par:pre; +délassa délasser VER 0.20 1.42 0.00 0.07 ind:pas:3s; +délassait délasser VER 0.20 1.42 0.01 0.14 ind:imp:3s; +délassant délassant ADJ m s 0.02 0.20 0.02 0.07 +délassante délassant ADJ f s 0.02 0.20 0.00 0.14 +délasse délasser VER 0.20 1.42 0.14 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délassement délassement NOM m s 0.16 0.47 0.16 0.47 +délasser délasser VER 0.20 1.42 0.04 0.54 inf; +délassera délasser VER 0.20 1.42 0.01 0.07 ind:fut:3s; +délasseront délasser VER 0.20 1.42 0.00 0.14 ind:fut:3p; +délassés délasser VER m p 0.20 1.42 0.00 0.07 par:pas; +délateur délateur NOM m s 0.36 0.88 0.20 0.34 +délateurs délateur NOM m p 0.36 0.88 0.17 0.47 +délaça délacer VER 0.04 1.22 0.00 0.14 ind:pas:3s; +délaçais délacer VER 0.04 1.22 0.00 0.07 ind:imp:1s; +délaçait délacer VER 0.04 1.22 0.00 0.20 ind:imp:3s; +délaçant délacer VER 0.04 1.22 0.00 0.14 par:pre; +délation délation NOM f s 0.26 1.55 0.26 1.28 +délations délation NOM f p 0.26 1.55 0.00 0.27 +délatrice délateur NOM f s 0.36 0.88 0.00 0.07 +délavait délaver VER 0.04 2.23 0.00 0.07 ind:imp:3s; +délavant délaver VER 0.04 2.23 0.00 0.07 par:pre; +délave délaver VER 0.04 2.23 0.00 0.07 ind:pre:3s; +délavent délaver VER 0.04 2.23 0.00 0.07 ind:pre:3p; +délaver délaver VER 0.04 2.23 0.00 0.07 inf; +délavé délavé ADJ m s 0.39 4.86 0.23 2.36 +délavée délavé ADJ f s 0.39 4.86 0.01 0.74 +délavées délavé ADJ f p 0.39 4.86 0.14 0.54 +délavés délavé ADJ m p 0.39 4.86 0.01 1.22 +délaya délayer VER 0.06 2.84 0.00 0.14 ind:pas:3s; +délayage délayage NOM m s 0.01 0.20 0.01 0.20 +délayait délayer VER 0.06 2.84 0.00 0.14 ind:imp:3s; +délayant délayer VER 0.06 2.84 0.00 0.41 par:pre; +délaye délayer VER 0.06 2.84 0.00 0.27 ind:pre:3s; +délayent délayer VER 0.06 2.84 0.00 0.07 ind:pre:3p; +délayer délayer VER 0.06 2.84 0.03 0.47 inf; +délayé délayer VER m s 0.06 2.84 0.00 0.54 par:pas; +délayée délayé ADJ f s 0.01 0.20 0.01 0.14 +délayés délayer VER m p 0.06 2.84 0.00 0.34 par:pas; +dulcifiant dulcifier VER 0.00 0.14 0.00 0.14 par:pre; +dulcinée dulcinée NOM f s 0.42 0.47 0.42 0.47 +délectable délectable ADJ s 0.70 2.16 0.56 1.55 +délectables délectable ADJ p 0.70 2.16 0.14 0.61 +délectai délecter VER 0.85 3.58 0.00 0.07 ind:pas:1s; +délectaient délecter VER 0.85 3.58 0.01 0.14 ind:imp:3p; +délectais délecter VER 0.85 3.58 0.03 0.14 ind:imp:1s; +délectait délecter VER 0.85 3.58 0.03 1.42 ind:imp:3s; +délectant délecter VER 0.85 3.58 0.02 0.14 par:pre; +délectation délectation NOM f s 0.07 3.38 0.07 3.24 +délectations délectation NOM f p 0.07 3.38 0.00 0.14 +délecte délecter VER 0.85 3.58 0.21 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délectent délecter VER 0.85 3.58 0.16 0.14 ind:pre:3p; +délecter délecter VER 0.85 3.58 0.21 0.47 inf; +délectes délecter VER 0.85 3.58 0.03 0.07 ind:pre:2s; +délectez délecter VER 0.85 3.58 0.01 0.00 ind:pre:2p; +délections délecter VER 0.85 3.58 0.00 0.07 ind:imp:1p; +délectât délecter VER 0.85 3.58 0.00 0.07 sub:imp:3s; +délecté délecter VER m s 0.85 3.58 0.14 0.20 par:pas; +délestage délestage NOM m s 0.02 0.14 0.02 0.14 +délestant délester VER 0.35 3.04 0.10 0.07 par:pre; +déleste délester VER 0.35 3.04 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délester délester VER 0.35 3.04 0.15 0.54 inf; +délestons délester VER 0.35 3.04 0.01 0.00 imp:pre:1p; +délestèrent délester VER 0.35 3.04 0.00 0.07 ind:pas:3p; +délesté délester VER m s 0.35 3.04 0.05 1.15 par:pas; +délestée délester VER f s 0.35 3.04 0.02 0.61 par:pas; +délestées délester VER f p 0.35 3.04 0.00 0.14 par:pas; +délestés délester VER m p 0.35 3.04 0.00 0.34 par:pas; +délia délier VER 2.55 4.86 0.88 0.27 ind:pas:3s; +déliaient délier VER 2.55 4.86 0.00 0.14 ind:imp:3p; +déliait délier VER 2.55 4.86 0.01 0.41 ind:imp:3s; +déliant délier VER 2.55 4.86 0.00 0.27 par:pre; +délibère délibérer VER 2.44 3.78 0.27 0.07 ind:pre:1s;ind:pre:3s; +délibèrent délibérer VER 2.44 3.78 0.04 0.14 ind:pre:3p; +délibéra délibérer VER 2.44 3.78 0.02 0.07 ind:pas:3s; +délibéraient délibérer VER 2.44 3.78 0.00 0.14 ind:imp:3p; +délibérait délibérer VER 2.44 3.78 0.00 0.27 ind:imp:3s; +délibérant délibérer VER 2.44 3.78 0.00 0.07 par:pre; +délibération délibération NOM f s 1.17 1.89 0.69 0.81 +délibérations délibération NOM f p 1.17 1.89 0.48 1.08 +délibérative délibératif ADJ f s 0.00 0.14 0.00 0.14 +délibératoire délibératoire ADJ s 0.01 0.00 0.01 0.00 +délibérer délibérer VER 2.44 3.78 0.74 0.81 inf; +délibérera délibérer VER 2.44 3.78 0.04 0.07 ind:fut:3s; +délibéreraient délibérer VER 2.44 3.78 0.00 0.14 cnd:pre:3p; +délibérions délibérer VER 2.44 3.78 0.00 0.07 ind:imp:1p; +délibérèrent délibérer VER 2.44 3.78 0.00 0.07 ind:pas:3p; +délibéré délibérer VER m s 2.44 3.78 1.18 0.74 par:pas; +délibérée délibéré ADJ f s 0.76 2.70 0.19 1.08 +délibérées délibéré ADJ f p 0.76 2.70 0.01 0.20 +délibérément délibérément ADV 3.11 5.47 3.11 5.47 +délibérés délibéré ADJ m p 0.76 2.70 0.04 0.07 +délicat délicat ADJ m s 22.52 37.03 9.60 13.72 +délicate délicat ADJ f s 22.52 37.03 9.26 12.50 +délicatement délicatement ADV 1.48 10.34 1.48 10.34 +délicates délicat ADJ f p 22.52 37.03 2.31 5.27 +délicatesse délicatesse NOM f s 3.37 13.58 3.34 11.96 +délicatesses délicatesse NOM f p 3.37 13.58 0.02 1.62 +délicats délicat ADJ m p 22.52 37.03 1.35 5.54 +délice délice NOM m s 6.17 19.73 3.75 4.26 +délices délice NOM f p 6.17 19.73 2.42 15.47 +délicieuse délicieux ADJ f s 29.22 28.65 6.56 10.74 +délicieusement délicieusement ADV 0.52 5.27 0.52 5.27 +délicieuses délicieux ADJ f p 29.22 28.65 2.04 2.84 +délicieux délicieux ADJ m 29.22 28.65 20.62 15.07 +délictuelle délictuel ADJ f s 0.01 0.00 0.01 0.00 +délictueuse délictueux ADJ f s 0.12 0.41 0.09 0.00 +délictueuses délictueux ADJ f p 0.12 0.41 0.00 0.34 +délictueux délictueux ADJ m 0.12 0.41 0.03 0.07 +délie délier VER 2.55 4.86 0.68 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délient délier VER 2.55 4.86 0.04 0.07 ind:pre:3p; +délier délier VER 2.55 4.86 0.23 1.22 inf; +délieraient délier VER 2.55 4.86 0.01 0.07 cnd:pre:3p; +délieras délier VER 2.55 4.86 0.14 0.07 ind:fut:2s; +déliez délier VER 2.55 4.86 0.17 0.00 imp:pre:2p;ind:pre:2p; +délimitaient délimiter VER 0.38 5.54 0.00 0.74 ind:imp:3p; +délimitais délimiter VER 0.38 5.54 0.00 0.07 ind:imp:1s; +délimitait délimiter VER 0.38 5.54 0.00 0.41 ind:imp:3s; +délimitant délimiter VER 0.38 5.54 0.01 0.61 par:pre; +délimitation délimitation NOM f s 0.00 0.34 0.00 0.27 +délimitations délimitation NOM f p 0.00 0.34 0.00 0.07 +délimite délimiter VER 0.38 5.54 0.14 0.20 imp:pre:2s;ind:pre:3s; +délimitent délimiter VER 0.38 5.54 0.02 0.47 ind:pre:3p; +délimiter délimiter VER 0.38 5.54 0.07 0.41 inf; +délimitez délimiter VER 0.38 5.54 0.03 0.00 imp:pre:2p;ind:pre:2p; +délimitions délimiter VER 0.38 5.54 0.00 0.07 ind:imp:1p; +délimitons délimiter VER 0.38 5.54 0.01 0.00 ind:pre:1p; +délimité délimiter VER m s 0.38 5.54 0.03 1.15 par:pas; +délimitée délimiter VER f s 0.38 5.54 0.05 0.68 par:pas; +délimitées délimiter VER f p 0.38 5.54 0.00 0.41 par:pas; +délimités délimiter VER m p 0.38 5.54 0.01 0.34 par:pas; +délinquance délinquance NOM f s 1.54 1.42 1.54 1.35 +délinquances délinquance NOM f p 1.54 1.42 0.00 0.07 +délinquant délinquant NOM m s 4.16 1.89 1.97 0.88 +délinquante délinquant ADJ f s 0.86 0.61 0.15 0.27 +délinquantes délinquant NOM f p 4.16 1.89 0.03 0.07 +délinquants délinquant NOM m p 4.16 1.89 2.07 0.81 +délinéaments délinéament NOM m p 0.00 0.07 0.00 0.07 +déliquescence déliquescence NOM f s 0.16 0.14 0.16 0.14 +déliquescent déliquescent ADJ m s 0.02 0.41 0.02 0.07 +déliquescente déliquescent ADJ f s 0.02 0.41 0.00 0.27 +déliquescents déliquescent ADJ m p 0.02 0.41 0.00 0.07 +délira délirer VER 13.73 7.23 0.02 0.07 ind:pas:3s; +délirai délirer VER 13.73 7.23 0.00 0.07 ind:pas:1s; +déliraient délirer VER 13.73 7.23 0.01 0.20 ind:imp:3p; +délirais délirer VER 13.73 7.23 0.44 0.47 ind:imp:1s;ind:imp:2s; +délirait délirer VER 13.73 7.23 1.17 1.08 ind:imp:3s; +délirant délirant ADJ m s 3.05 5.61 1.36 1.28 +délirante délirant ADJ f s 3.05 5.61 0.83 2.30 +délirantes délirant ADJ f p 3.05 5.61 0.11 0.95 +délirants délirant ADJ m p 3.05 5.61 0.75 1.08 +délirassent délirer VER 13.73 7.23 0.00 0.07 sub:imp:3p; +délire délire NOM m s 13.20 19.80 10.93 16.62 +délirent délirer VER 13.73 7.23 0.17 0.07 ind:pre:3p; +délirer délirer VER 13.73 7.23 1.94 2.23 inf; +délireras délirer VER 13.73 7.23 0.01 0.00 ind:fut:2s; +délires délirer VER 13.73 7.23 4.81 0.27 ind:pre:2s; +délirez délirer VER 13.73 7.23 0.94 0.27 imp:pre:2p;ind:pre:2p; +déliriez délirer VER 13.73 7.23 0.11 0.00 ind:imp:2p; +déliré délirer VER m s 13.73 7.23 0.45 0.27 par:pas; +délit délit NOM m s 13.52 7.97 11.35 6.35 +délitaient déliter VER 0.11 0.68 0.00 0.07 ind:imp:3p; +délite déliter VER 0.11 0.68 0.01 0.20 ind:pre:3s; +délitent déliter VER 0.11 0.68 0.00 0.14 ind:pre:3p; +déliteront déliter VER 0.11 0.68 0.00 0.07 ind:fut:3p; +délièrent délier VER 2.55 4.86 0.00 0.07 ind:pas:3p; +délits délit NOM m p 13.52 7.97 2.17 1.62 +délité déliter VER m s 0.11 0.68 0.10 0.00 par:pas; +délitée déliter VER f s 0.11 0.68 0.00 0.07 par:pas; +délitées déliter VER f p 0.11 0.68 0.00 0.14 par:pas; +délié délier VER m s 2.55 4.86 0.14 0.41 par:pas; +déliée délier VER f s 2.55 4.86 0.12 0.68 par:pas; +déliées délié ADJ f p 0.04 2.36 0.01 0.68 +déliés délier VER m p 2.55 4.86 0.14 0.34 par:pas; +délivra délivrer VER 14.45 31.15 0.00 0.74 ind:pas:3s; +délivraient délivrer VER 14.45 31.15 0.03 0.61 ind:imp:3p; +délivrais délivrer VER 14.45 31.15 0.01 0.07 ind:imp:1s; +délivrait délivrer VER 14.45 31.15 0.01 2.50 ind:imp:3s; +délivrance délivrance NOM f s 1.94 5.74 1.94 5.68 +délivrances délivrance NOM f p 1.94 5.74 0.00 0.07 +délivrant délivrer VER 14.45 31.15 0.04 0.20 par:pre; +délivre délivrer VER 14.45 31.15 4.37 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délivrent délivrer VER 14.45 31.15 0.25 0.68 ind:pre:3p; +délivrer délivrer VER 14.45 31.15 4.76 7.91 ind:pre:2p;inf; +délivrera délivrer VER 14.45 31.15 0.60 0.68 ind:fut:3s; +délivrerai délivrer VER 14.45 31.15 0.46 0.00 ind:fut:1s; +délivreraient délivrer VER 14.45 31.15 0.00 0.07 cnd:pre:3p; +délivrerais délivrer VER 14.45 31.15 0.01 0.00 cnd:pre:1s; +délivrerait délivrer VER 14.45 31.15 0.05 1.08 cnd:pre:3s; +délivreras délivrer VER 14.45 31.15 0.12 0.00 ind:fut:2s; +délivrerez délivrer VER 14.45 31.15 0.01 0.00 ind:fut:2p; +délivrerons délivrer VER 14.45 31.15 0.00 0.07 ind:fut:1p; +délivreront délivrer VER 14.45 31.15 0.03 0.00 ind:fut:3p; +délivreurs délivreur NOM m p 0.00 0.07 0.00 0.07 +délivrez délivrer VER 14.45 31.15 0.94 0.41 imp:pre:2p;ind:pre:2p; +délivriez délivrer VER 14.45 31.15 0.02 0.00 ind:imp:2p; +délivrions délivrer VER 14.45 31.15 0.01 0.00 ind:imp:1p; +délivrons délivrer VER 14.45 31.15 0.16 0.00 imp:pre:1p;ind:pre:1p; +délivrât délivrer VER 14.45 31.15 0.00 0.14 sub:imp:3s; +délivrèrent délivrer VER 14.45 31.15 0.00 0.07 ind:pas:3p; +délivré délivrer VER m s 14.45 31.15 1.14 7.97 par:pas; +délivrée délivrer VER f s 14.45 31.15 0.52 3.99 par:pas; +délivrées délivrer VER f p 14.45 31.15 0.07 0.34 par:pas; +délivrés délivrer VER m p 14.45 31.15 0.84 1.49 par:pas; +délocalisation délocalisation NOM f s 0.06 0.00 0.06 0.00 +délocaliser délocaliser VER 0.09 0.00 0.06 0.00 inf; +délocalisez délocaliser VER 0.09 0.00 0.01 0.00 imp:pre:2p; +délocalisé délocaliser VER m s 0.09 0.00 0.02 0.00 par:pas; +déloge déloger VER 1.94 3.45 0.18 0.14 imp:pre:2s;ind:pre:3s; +délogea déloger VER 1.94 3.45 0.00 0.14 ind:pas:3s; +délogeait déloger VER 1.94 3.45 0.00 0.14 ind:imp:3s; +délogeât déloger VER 1.94 3.45 0.00 0.14 sub:imp:3s; +déloger déloger VER 1.94 3.45 1.17 1.89 inf; +délogera déloger VER 1.94 3.45 0.02 0.14 ind:fut:3s; +délogerait déloger VER 1.94 3.45 0.02 0.00 cnd:pre:3s; +délogerons déloger VER 1.94 3.45 0.00 0.07 ind:fut:1p; +délogez déloger VER 1.94 3.45 0.05 0.00 imp:pre:2p; +délogé déloger VER m s 1.94 3.45 0.20 0.34 par:pas; +délogée déloger VER f s 1.94 3.45 0.01 0.27 par:pas; +délogés déloger VER m p 1.94 3.45 0.29 0.20 par:pas; +déloquaient déloquer VER 0.05 1.69 0.00 0.07 ind:imp:3p; +déloque déloquer VER 0.05 1.69 0.01 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déloquer déloquer VER 0.05 1.69 0.04 0.54 inf; +déloques déloquer VER 0.05 1.69 0.00 0.14 ind:pre:2s; +déloqué déloquer VER m s 0.05 1.69 0.00 0.07 par:pas; +déloquées déloquer VER f p 0.05 1.69 0.00 0.07 par:pas; +déloqués déloquer VER m p 0.05 1.69 0.00 0.07 par:pas; +délourdant délourder VER 0.00 0.20 0.00 0.07 par:pre; +délourder délourder VER 0.00 0.20 0.00 0.14 inf; +déloyal déloyal ADJ m s 1.41 0.54 0.81 0.47 +déloyale déloyal ADJ f s 1.41 0.54 0.54 0.07 +déloyalement déloyalement ADV 0.02 0.14 0.02 0.14 +déloyauté déloyauté NOM f s 0.26 0.34 0.26 0.27 +déloyautés déloyauté NOM f p 0.26 0.34 0.00 0.07 +déloyaux déloyal ADJ m p 1.41 0.54 0.06 0.00 +délègue déléguer VER 1.90 6.62 0.21 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +délégation délégation NOM f s 3.49 12.77 3.11 10.68 +délégations délégation NOM f p 3.49 12.77 0.39 2.09 +déluge déluge NOM m s 2.53 8.58 2.51 8.18 +déluges déluge NOM m p 2.53 8.58 0.03 0.41 +délégua déléguer VER 1.90 6.62 0.00 0.41 ind:pas:3s; +déléguaient déléguer VER 1.90 6.62 0.00 0.14 ind:imp:3p; +déléguait déléguer VER 1.90 6.62 0.01 0.74 ind:imp:3s; +déléguant déléguer VER 1.90 6.62 0.00 0.20 par:pre; +déléguer déléguer VER 1.90 6.62 0.52 0.95 inf; +déléguerai déléguer VER 1.90 6.62 0.04 0.00 ind:fut:1s; +délégueraient déléguer VER 1.90 6.62 0.00 0.07 cnd:pre:3p; +déléguez déléguer VER 1.90 6.62 0.04 0.14 imp:pre:2p;ind:pre:2p; +déléguiez déléguer VER 1.90 6.62 0.00 0.07 ind:imp:2p; +déléguons déléguer VER 1.90 6.62 0.01 0.00 ind:pre:1p; +déléguât déléguer VER 1.90 6.62 0.00 0.07 sub:imp:3s; +délégué_général délégué_général ADJ m s 0.00 0.14 0.00 0.14 +délégué_général délégué_général NOM m s 0.00 0.14 0.00 0.14 +délégué délégué NOM m s 3.96 12.16 1.83 7.09 +déléguée délégué NOM f s 3.96 12.16 0.57 0.27 +délégués délégué NOM m p 3.96 12.16 1.56 4.80 +déluré déluré ADJ m s 0.36 0.81 0.16 0.41 +délurée déluré ADJ f s 0.36 0.81 0.18 0.34 +délurées délurer VER f p 0.11 0.34 0.05 0.07 par:pas; +délustrer délustrer VER 0.00 0.07 0.00 0.07 inf; +délétère délétère ADJ s 0.00 1.01 0.00 0.68 +délétères délétère ADJ p 0.00 1.01 0.00 0.34 +dum_dum dum_dum ADJ 0.20 0.27 0.20 0.27 +démagnétiser démagnétiser VER 0.12 0.07 0.04 0.00 inf; +démagnétisé démagnétiser VER m s 0.12 0.07 0.05 0.00 par:pas; +démagnétisée démagnétiser VER f s 0.12 0.07 0.02 0.07 par:pas; +démago démago ADJ f s 0.03 0.00 0.03 0.00 +démagogie démagogie NOM f s 0.47 1.35 0.47 1.35 +démagogique démagogique ADJ f s 0.14 0.47 0.14 0.34 +démagogiques démagogique ADJ m p 0.14 0.47 0.00 0.14 +démagogue démagogue ADJ s 0.22 0.07 0.21 0.07 +démagogues démagogue NOM p 0.29 0.54 0.13 0.34 +démaille démailler VER 0.00 0.20 0.00 0.07 ind:pre:3s; +démailler démailler VER 0.00 0.20 0.00 0.07 inf; +démailloter démailloter VER 0.00 0.34 0.00 0.20 inf; +démailloté démailloter VER m s 0.00 0.34 0.00 0.14 par:pas; +démaillée démailler VER f s 0.00 0.20 0.00 0.07 par:pas; +démanche démancher VER 0.00 0.20 0.00 0.07 ind:pre:3s; +démancher démancher VER 0.00 0.20 0.00 0.07 inf; +démanché démancher VER m s 0.00 0.20 0.00 0.07 par:pas; +démange démanger VER 3.10 3.51 2.38 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démangeaient démanger VER 3.10 3.51 0.00 0.14 ind:imp:3p; +démangeais démanger VER 3.10 3.51 0.01 0.07 ind:imp:1s; +démangeaison démangeaison NOM f s 1.05 2.30 0.39 1.08 +démangeaisons démangeaison NOM f p 1.05 2.30 0.66 1.22 +démangeait démanger VER 3.10 3.51 0.29 1.42 ind:imp:3s; +démangent démanger VER 3.10 3.51 0.28 0.20 ind:pre:3p; +démanger démanger VER 3.10 3.51 0.13 0.07 inf; +démangé démanger VER m s 3.10 3.51 0.01 0.14 par:pas; +démangés démanger VER m p 3.10 3.51 0.00 0.07 par:pas; +démanteler démanteler VER 1.83 1.62 0.68 0.34 inf; +démantelez démanteler VER 1.83 1.62 0.04 0.00 imp:pre:2p; +démantelons démanteler VER 1.83 1.62 0.01 0.00 ind:pre:1p; +démantelé démanteler VER m s 1.83 1.62 0.68 0.27 par:pas; +démantelée démanteler VER f s 1.83 1.62 0.03 0.20 par:pas; +démantelées démanteler VER f p 1.83 1.62 0.30 0.34 par:pas; +démantelés démanteler VER m p 1.83 1.62 0.01 0.34 par:pas; +démantibulant démantibuler VER 0.04 1.76 0.00 0.07 par:pre; +démantibule démantibuler VER 0.04 1.76 0.02 0.07 ind:pre:1s;ind:pre:3s; +démantibulent démantibuler VER 0.04 1.76 0.00 0.07 ind:pre:3p; +démantibuler démantibuler VER 0.04 1.76 0.01 0.20 inf; +démantibulé démantibuler VER m s 0.04 1.76 0.01 0.47 par:pas; +démantibulée démantibuler VER f s 0.04 1.76 0.00 0.27 par:pas; +démantibulées démantibuler VER f p 0.04 1.76 0.00 0.27 par:pas; +démantibulés démantibuler VER m p 0.04 1.76 0.00 0.34 par:pas; +démantèle démanteler VER 1.83 1.62 0.08 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démantèlement démantèlement NOM m s 0.14 0.41 0.14 0.34 +démantèlements démantèlement NOM m p 0.14 0.41 0.00 0.07 +démantèlent démanteler VER 1.83 1.62 0.00 0.14 ind:pre:3p; +démaquillage démaquillage NOM m s 0.01 0.14 0.01 0.14 +démaquillaient démaquiller VER 0.55 1.49 0.00 0.07 ind:imp:3p; +démaquillais démaquiller VER 0.55 1.49 0.00 0.07 ind:imp:1s; +démaquillait démaquiller VER 0.55 1.49 0.00 0.27 ind:imp:3s; +démaquillant démaquillant NOM m s 0.04 0.41 0.04 0.41 +démaquillante démaquillant ADJ f s 0.04 0.07 0.04 0.00 +démaquille démaquiller VER 0.55 1.49 0.16 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démaquiller démaquiller VER 0.55 1.49 0.25 0.47 inf; +démaquillerai démaquiller VER 0.55 1.49 0.10 0.00 ind:fut:1s; +démaquillé démaquiller VER m s 0.55 1.49 0.02 0.34 par:pas; +démaquillée démaquiller VER f s 0.55 1.49 0.01 0.14 par:pas; +démarcation démarcation NOM f s 0.29 1.76 0.29 1.76 +démarcha démarcher VER 0.13 0.27 0.01 0.14 ind:pas:3s; +démarchage démarchage NOM m s 0.06 0.07 0.06 0.07 +démarchait démarcher VER 0.13 0.27 0.01 0.07 ind:imp:3s; +démarche démarche NOM f s 5.69 32.91 3.96 25.07 +démarcher démarcher VER 0.13 0.27 0.05 0.00 inf; +démarches démarche NOM f p 5.69 32.91 1.73 7.84 +démarcheur démarcheur NOM m s 0.04 1.15 0.02 0.74 +démarcheurs démarcheur NOM m p 0.04 1.15 0.00 0.41 +démarcheuse démarcheur NOM f s 0.04 1.15 0.02 0.00 +démarient démarier VER 0.02 0.07 0.01 0.00 ind:pre:3p; +démarier démarier VER 0.02 0.07 0.01 0.00 inf; +démariée démarier VER f s 0.02 0.07 0.00 0.07 par:pas; +démarquai démarquer VER 0.94 0.74 0.00 0.07 ind:pas:1s; +démarquaient démarquer VER 0.94 0.74 0.00 0.20 ind:imp:3p; +démarquait démarquer VER 0.94 0.74 0.01 0.07 ind:imp:3s; +démarque démarquer VER 0.94 0.74 0.22 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démarquer démarquer VER 0.94 0.74 0.13 0.20 inf; +démarqué démarquer VER m s 0.94 0.74 0.49 0.14 par:pas; +démarquée démarquer VER f s 0.94 0.74 0.07 0.07 par:pas; +démarquées démarquer VER f p 0.94 0.74 0.01 0.00 par:pas; +démarqués démarquer VER m p 0.94 0.74 0.01 0.00 par:pas; +démarra démarrer VER 35.67 29.32 0.03 6.35 ind:pas:3s; +démarrage démarrage NOM m s 1.18 3.31 1.17 3.11 +démarrages démarrage NOM m p 1.18 3.31 0.01 0.20 +démarrai démarrer VER 35.67 29.32 0.00 0.20 ind:pas:1s; +démarraient démarrer VER 35.67 29.32 0.02 0.34 ind:imp:3p; +démarrais démarrer VER 35.67 29.32 0.06 0.34 ind:imp:1s;ind:imp:2s; +démarrait démarrer VER 35.67 29.32 0.57 2.50 ind:imp:3s; +démarrant démarrer VER 35.67 29.32 0.09 1.22 par:pre; +démarre démarrer VER 35.67 29.32 17.11 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démarrent démarrer VER 35.67 29.32 1.04 0.81 ind:pre:3p; +démarrer démarrer VER 35.67 29.32 9.10 5.27 inf; +démarrera démarrer VER 35.67 29.32 0.29 0.07 ind:fut:3s; +démarrerai démarrer VER 35.67 29.32 0.02 0.00 ind:fut:1s; +démarreront démarrer VER 35.67 29.32 0.04 0.00 ind:fut:3p; +démarres démarrer VER 35.67 29.32 0.51 0.20 ind:pre:2s; +démarreur démarreur NOM m s 1.25 2.23 1.24 2.09 +démarreurs démarreur NOM m p 1.25 2.23 0.01 0.14 +démarrez démarrer VER 35.67 29.32 3.15 0.07 imp:pre:2p;ind:pre:2p; +démarrions démarrer VER 35.67 29.32 0.00 0.07 ind:imp:1p; +démarrons démarrer VER 35.67 29.32 0.39 0.20 imp:pre:1p;ind:pre:1p; +démarrât démarrer VER 35.67 29.32 0.00 0.07 sub:imp:3s; +démarrèrent démarrer VER 35.67 29.32 0.00 0.27 ind:pas:3p; +démarré démarrer VER m s 35.67 29.32 3.15 4.32 par:pas; +démarrée démarrer VER f s 35.67 29.32 0.10 0.14 par:pas; +démarrées démarrer VER f p 35.67 29.32 0.00 0.07 par:pas; +démarrés démarrer VER m p 35.67 29.32 0.01 0.14 par:pas; +démasqua démasquer VER 6.41 4.66 0.00 0.27 ind:pas:3s; +démasquage démasquage NOM m s 0.01 0.00 0.01 0.00 +démasquaient démasquer VER 6.41 4.66 0.00 0.07 ind:imp:3p; +démasquais démasquer VER 6.41 4.66 0.00 0.07 ind:imp:1s; +démasquait démasquer VER 6.41 4.66 0.02 0.07 ind:imp:3s; +démasquant démasquer VER 6.41 4.66 0.17 0.61 par:pre; +démasque démasquer VER 6.41 4.66 0.46 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +démasquent démasquer VER 6.41 4.66 0.07 0.20 ind:pre:3p; +démasquer démasquer VER 6.41 4.66 2.44 0.74 imp:pre:2p;inf; +démasquera démasquer VER 6.41 4.66 0.20 0.00 ind:fut:3s; +démasquerai démasquer VER 6.41 4.66 0.07 0.07 ind:fut:1s; +démasquerait démasquer VER 6.41 4.66 0.11 0.00 cnd:pre:3s; +démasqueriez démasquer VER 6.41 4.66 0.01 0.00 cnd:pre:2p; +démasquerons démasquer VER 6.41 4.66 0.03 0.07 ind:fut:1p; +démasqueront démasquer VER 6.41 4.66 0.01 0.00 ind:fut:3p; +démasquons démasquer VER 6.41 4.66 0.02 0.00 imp:pre:1p;ind:pre:1p; +démasqué démasquer VER m s 6.41 4.66 1.76 1.35 par:pas; +démasquée démasquer VER f s 6.41 4.66 0.51 0.54 par:pas; +démasquées démasquer VER f p 6.41 4.66 0.04 0.07 par:pas; +démasqués démasquer VER m p 6.41 4.66 0.50 0.27 par:pas; +dématérialisation dématérialisation NOM f s 0.01 0.00 0.01 0.00 +dématérialise dématérialiser VER 0.18 0.07 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dématérialisent dématérialiser VER 0.18 0.07 0.01 0.00 ind:pre:3p; +dématérialiser dématérialiser VER 0.18 0.07 0.05 0.00 inf; +dématérialisé dématérialiser VER m s 0.18 0.07 0.08 0.00 par:pas; +démembrant démembrer VER 0.87 0.54 0.01 0.00 par:pre; +démembre démembrer VER 0.87 0.54 0.12 0.00 ind:pre:1s;ind:pre:3s; +démembrement démembrement NOM m s 0.14 0.34 0.13 0.34 +démembrements démembrement NOM m p 0.14 0.34 0.01 0.00 +démembrer démembrer VER 0.87 0.54 0.28 0.20 inf; +démembrez démembrer VER 0.87 0.54 0.01 0.00 ind:pre:2p; +démembré démembrer VER m s 0.87 0.54 0.25 0.20 par:pas; +démembrée démembrer VER f s 0.87 0.54 0.08 0.00 par:pas; +démembrées démembrer VER f p 0.87 0.54 0.04 0.00 par:pas; +démembrés démembrer VER m p 0.87 0.54 0.07 0.14 par:pas; +démena démener VER 2.65 3.72 0.00 0.14 ind:pas:3s; +démenaient démener VER 2.65 3.72 0.00 0.41 ind:imp:3p; +démenais démener VER 2.65 3.72 0.25 0.00 ind:imp:1s;ind:imp:2s; +démenait démener VER 2.65 3.72 0.05 0.95 ind:imp:3s; +démenant démener VER 2.65 3.72 0.01 0.47 par:pre; +démence démence NOM f s 2.75 2.43 2.75 2.43 +démener démener VER 2.65 3.72 0.32 1.01 inf; +démenons démener VER 2.65 3.72 0.00 0.07 ind:pre:1p; +démenotte démenotter VER 0.00 0.07 0.00 0.07 ind:pre:3s; +démens démentir VER 3.06 6.35 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dément dément ADJ m s 3.12 3.72 2.02 1.35 +démentaient démentir VER 3.06 6.35 0.01 0.61 ind:imp:3p; +démentait démentir VER 3.06 6.35 0.01 1.22 ind:imp:3s; +démentant démentir VER 3.06 6.35 0.01 0.41 par:pre; +démente dément ADJ f s 3.12 3.72 0.48 1.28 +démentent démentir VER 3.06 6.35 0.05 0.20 ind:pre:3p; +démentes dément ADJ f p 3.12 3.72 0.20 0.54 +démentez démentir VER 3.06 6.35 0.03 0.00 imp:pre:2p;ind:pre:2p; +démenti démenti NOM m s 1.04 2.70 1.01 2.09 +démentie démenti ADJ f s 0.21 0.68 0.16 0.07 +démentiel démentiel ADJ m s 0.52 1.42 0.46 0.61 +démentielle démentiel ADJ f s 0.52 1.42 0.05 0.41 +démentielles démentiel ADJ f p 0.52 1.42 0.00 0.27 +démentiels démentiel ADJ m p 0.52 1.42 0.01 0.14 +démenties démentir VER f p 3.06 6.35 0.27 0.14 par:pas; +démentir démentir VER 3.06 6.35 1.06 1.55 inf; +démentirai démentir VER 3.06 6.35 0.01 0.00 ind:fut:1s; +démentirait démentir VER 3.06 6.35 0.01 0.00 cnd:pre:3s; +démentiront démentir VER 3.06 6.35 0.01 0.00 ind:fut:3p; +démentis démenti NOM m p 1.04 2.70 0.03 0.61 +démentit démentir VER 3.06 6.35 0.03 0.41 ind:pas:3s; +déments dément ADJ m p 3.12 3.72 0.41 0.54 +démené démener VER m s 2.65 3.72 0.30 0.07 par:pas; +démenée démener VER f s 2.65 3.72 0.09 0.07 par:pas; +démerdaient démerder VER 5.37 6.42 0.00 0.07 ind:imp:3p; +démerdais démerder VER 5.37 6.42 0.01 0.07 ind:imp:1s; +démerdait démerder VER 5.37 6.42 0.02 0.14 ind:imp:3s; +démerdard démerdard NOM m s 0.16 0.07 0.16 0.00 +démerdards démerdard NOM m p 0.16 0.07 0.00 0.07 +démerde démerder VER 5.37 6.42 1.74 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démerdent démerder VER 5.37 6.42 0.21 0.41 ind:pre:3p; +démerder démerder VER 5.37 6.42 1.27 1.01 inf; +démerdera démerder VER 5.37 6.42 0.02 0.27 ind:fut:3s; +démerderai démerder VER 5.37 6.42 0.01 0.54 ind:fut:1s; +démerderas démerder VER 5.37 6.42 0.00 0.14 ind:fut:2s; +démerdes démerder VER 5.37 6.42 0.93 0.34 ind:pre:2s; +démerdez démerder VER 5.37 6.42 0.80 0.54 imp:pre:2p;ind:pre:2p; +démerdé démerder VER m s 5.37 6.42 0.23 0.81 par:pas; +démerdée démerder VER f s 5.37 6.42 0.14 0.27 par:pas; +démerdés démerder VER m p 5.37 6.42 0.00 0.20 par:pas; +démesure démesure NOM f s 0.04 1.15 0.04 1.15 +démesurent démesurer VER 0.55 2.30 0.00 0.07 ind:pre:3p; +démesuré démesuré ADJ m s 0.72 8.38 0.41 3.18 +démesurée démesurer VER f s 0.55 2.30 0.36 0.88 par:pas; +démesurées démesuré ADJ f p 0.72 8.38 0.07 1.08 +démesurément démesurément ADV 0.09 4.19 0.09 4.19 +démesurés démesurer VER m p 0.55 2.30 0.11 0.27 par:pas; +démet démettre VER 0.84 1.28 0.04 0.14 ind:pre:3s; +démets démettre VER 0.84 1.28 0.04 0.07 ind:pre:1s; +démette démettre VER 0.84 1.28 0.01 0.00 sub:pre:3s; +démettez démettre VER 0.84 1.28 0.04 0.00 imp:pre:2p; +démettrait démettre VER 0.84 1.28 0.00 0.07 cnd:pre:3s; +démettre démettre VER 0.84 1.28 0.20 0.41 inf; +démeublé démeubler VER m s 0.00 0.41 0.00 0.20 par:pas; +démeublée démeubler VER f s 0.00 0.41 0.00 0.20 par:pas; +démilitarisation démilitarisation NOM f s 0.14 0.07 0.14 0.07 +démilitarisée démilitariser VER f s 0.25 0.14 0.25 0.07 par:pas; +démilitarisées démilitariser VER f p 0.25 0.14 0.00 0.07 par:pas; +déminage déminage NOM m s 0.69 0.34 0.69 0.34 +déminant déminer VER 0.02 0.20 0.00 0.07 par:pre; +déminer déminer VER 0.02 0.20 0.01 0.00 inf; +démineur démineur NOM m s 0.54 0.07 0.17 0.07 +démineurs démineur NOM m p 0.54 0.07 0.37 0.00 +déminé déminer VER m s 0.02 0.20 0.01 0.07 par:pas; +déminée déminer VER f s 0.02 0.20 0.00 0.07 par:pas; +démis démettre VER m 0.84 1.28 0.41 0.41 par:pas; +démise démis ADJ f s 0.13 0.41 0.12 0.27 +démises démis ADJ f p 0.13 0.41 0.00 0.07 +démission démission NOM f s 7.60 5.47 7.34 5.07 +démissionna démissionner VER 17.79 1.82 0.05 0.00 ind:pas:3s; +démissionnaient démissionner VER 17.79 1.82 0.00 0.07 ind:imp:3p; +démissionnaire démissionnaire NOM s 0.32 0.00 0.14 0.00 +démissionnaires démissionnaire NOM p 0.32 0.00 0.19 0.00 +démissionnais démissionner VER 17.79 1.82 0.08 0.00 ind:imp:1s;ind:imp:2s; +démissionnait démissionner VER 17.79 1.82 0.02 0.14 ind:imp:3s; +démissionnant démissionner VER 17.79 1.82 0.02 0.07 par:pre; +démissionne démissionner VER 17.79 1.82 5.28 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démissionnent démissionner VER 17.79 1.82 0.06 0.07 ind:pre:3p; +démissionner démissionner VER 17.79 1.82 5.15 0.20 inf; +démissionnera démissionner VER 17.79 1.82 0.10 0.00 ind:fut:3s; +démissionnerai démissionner VER 17.79 1.82 0.42 0.00 ind:fut:1s; +démissionneraient démissionner VER 17.79 1.82 0.01 0.00 cnd:pre:3p; +démissionnerais démissionner VER 17.79 1.82 0.07 0.14 cnd:pre:1s;cnd:pre:2s; +démissionnerait démissionner VER 17.79 1.82 0.01 0.07 cnd:pre:3s; +démissionneras démissionner VER 17.79 1.82 0.01 0.00 ind:fut:2s; +démissionnerez démissionner VER 17.79 1.82 0.04 0.00 ind:fut:2p; +démissionneront démissionner VER 17.79 1.82 0.02 0.00 ind:fut:3p; +démissionnes démissionner VER 17.79 1.82 0.48 0.00 ind:pre:2s; +démissionnez démissionner VER 17.79 1.82 0.67 0.14 imp:pre:2p;ind:pre:2p; +démissionniez démissionner VER 17.79 1.82 0.06 0.00 ind:imp:2p; +démissionné démissionner VER m s 17.79 1.82 5.23 0.68 par:pas; +démissions démission NOM f p 7.60 5.47 0.26 0.41 +démit démettre VER 0.84 1.28 0.01 0.14 ind:pas:3s; +démiurge démiurge NOM m s 0.16 1.01 0.16 0.88 +démiurges démiurge NOM m p 0.16 1.01 0.00 0.14 +démobilisant démobiliser VER 0.28 1.28 0.00 0.07 par:pre; +démobilisateur démobilisateur ADJ m s 0.00 0.14 0.00 0.14 +démobilisation démobilisation NOM f s 0.22 1.28 0.22 1.28 +démobilise démobiliser VER 0.28 1.28 0.01 0.27 ind:pre:1s;ind:pre:3s; +démobiliser démobiliser VER 0.28 1.28 0.03 0.14 inf; +démobiliseriez démobiliser VER 0.28 1.28 0.00 0.07 cnd:pre:2p; +démobilisé démobilisé ADJ m s 0.17 0.34 0.16 0.14 +démobilisés démobiliser VER m p 0.28 1.28 0.13 0.14 par:pas; +démocrate_chrétien démocrate_chrétien ADJ m s 0.21 0.14 0.21 0.07 +démocrate démocrate ADJ s 3.06 1.42 2.08 0.88 +démocrate_chrétien démocrate_chrétien NOM p 0.10 0.27 0.10 0.27 +démocrates démocrate NOM p 3.68 1.08 2.35 0.74 +démocratie démocratie NOM f s 13.13 15.68 12.69 11.01 +démocraties démocratie NOM f p 13.13 15.68 0.44 4.66 +démocratique démocratique ADJ s 5.38 5.74 4.97 4.12 +démocratiquement démocratiquement ADV 0.18 0.27 0.18 0.27 +démocratiques démocratique ADJ p 5.38 5.74 0.41 1.62 +démocratisation démocratisation NOM f s 0.01 0.20 0.01 0.14 +démocratisations démocratisation NOM f p 0.01 0.20 0.00 0.07 +démocratise démocratiser VER 0.16 0.20 0.14 0.07 ind:pre:3s; +démocratiser démocratiser VER 0.16 0.20 0.01 0.07 inf; +démocratiseront démocratiser VER 0.16 0.20 0.00 0.07 ind:fut:3p; +démocratisé démocratiser VER m s 0.16 0.20 0.01 0.00 par:pas; +démodaient démoder VER 1.03 1.55 0.01 0.07 ind:imp:3p; +démodant démoder VER 1.03 1.55 0.00 0.07 par:pre; +démode démoder VER 1.03 1.55 0.06 0.20 ind:pre:3s; +démoder démoder VER 1.03 1.55 0.00 0.07 inf; +démodé démodé ADJ m s 1.64 3.58 0.80 1.35 +démodée démodé ADJ f s 1.64 3.58 0.43 0.88 +démodées démodé ADJ f p 1.64 3.58 0.26 0.74 +démodulateur démodulateur NOM m s 0.03 0.00 0.02 0.00 +démodulateurs démodulateur NOM m p 0.03 0.00 0.01 0.00 +démodés démodé ADJ m p 1.64 3.58 0.16 0.61 +démographie démographie NOM f s 0.16 0.54 0.16 0.54 +démographique démographique ADJ s 0.20 0.54 0.14 0.20 +démographiquement démographiquement ADV 0.00 0.07 0.00 0.07 +démographiques démographique ADJ p 0.20 0.54 0.06 0.34 +démoli démolir VER m s 18.81 11.22 4.41 2.30 par:pas; +démolie démolir VER f s 18.81 11.22 1.15 0.88 par:pas; +démolies démolir VER f p 18.81 11.22 0.02 0.61 par:pas; +démolir démolir VER 18.81 11.22 8.02 3.65 inf; +démolira démolir VER 18.81 11.22 0.51 0.14 ind:fut:3s; +démolirai démolir VER 18.81 11.22 0.06 0.07 ind:fut:1s; +démoliraient démolir VER 18.81 11.22 0.02 0.07 cnd:pre:3p; +démolirais démolir VER 18.81 11.22 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +démolirait démolir VER 18.81 11.22 0.03 0.14 cnd:pre:3s; +démolirent démolir VER 18.81 11.22 0.00 0.07 ind:pas:3p; +démolirions démolir VER 18.81 11.22 0.00 0.07 cnd:pre:1p; +démoliront démolir VER 18.81 11.22 0.15 0.07 ind:fut:3p; +démolis démolir VER m p 18.81 11.22 1.93 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +démolissaient démolir VER 18.81 11.22 0.04 0.27 ind:imp:3p; +démolissais démolir VER 18.81 11.22 0.00 0.20 ind:imp:1s; +démolissait démolir VER 18.81 11.22 0.03 0.54 ind:imp:3s; +démolissant démolir VER 18.81 11.22 0.04 0.41 par:pre; +démolisse démolir VER 18.81 11.22 0.37 0.14 sub:pre:1s;sub:pre:3s; +démolissent démolir VER 18.81 11.22 0.48 0.27 ind:pre:3p; +démolisses démolir VER 18.81 11.22 0.17 0.00 sub:pre:2s; +démolisseur démolisseur NOM m s 0.23 0.61 0.18 0.07 +démolisseurs démolisseur NOM m p 0.23 0.61 0.05 0.47 +démolisseuse démolisseur NOM f s 0.23 0.61 0.00 0.07 +démolissez démolir VER 18.81 11.22 0.40 0.00 imp:pre:2p;ind:pre:2p; +démolissions démolir VER 18.81 11.22 0.00 0.07 ind:imp:1p; +démolit démolir VER 18.81 11.22 0.89 0.61 ind:pre:3s;ind:pas:3s; +démolition démolition NOM f s 1.55 2.36 1.53 1.82 +démolitions démolition NOM f p 1.55 2.36 0.02 0.54 +démon démon NOM m s 61.00 20.34 39.71 13.58 +démone démon NOM f s 61.00 20.34 0.14 0.14 +démones démon NOM f p 61.00 20.34 0.05 0.07 +démoniaque démoniaque ADJ s 5.52 2.30 4.22 1.69 +démoniaquement démoniaquement ADV 0.00 0.07 0.00 0.07 +démoniaques démoniaque ADJ p 5.52 2.30 1.29 0.61 +démonique démonique ADJ s 0.04 0.00 0.04 0.00 +démonologie démonologie NOM f s 0.16 0.00 0.16 0.00 +démonomanie démonomanie NOM f s 0.01 0.00 0.01 0.00 +démons démon NOM m p 61.00 20.34 21.10 6.55 +démonstrateur démonstrateur NOM m s 0.06 0.54 0.02 0.14 +démonstrateurs démonstrateur NOM m p 0.06 0.54 0.00 0.34 +démonstratif démonstratif ADJ m s 0.46 1.08 0.23 0.54 +démonstratifs démonstratif ADJ m p 0.46 1.08 0.15 0.20 +démonstration démonstration NOM f s 7.61 12.23 7.30 9.53 +démonstrations démonstration NOM f p 7.61 12.23 0.31 2.70 +démonstrative démonstratif ADJ f s 0.46 1.08 0.08 0.34 +démonstrativement démonstrativement ADV 0.01 0.34 0.01 0.34 +démonstratrice démonstrateur NOM f s 0.06 0.54 0.04 0.07 +démonta démonter VER 6.83 7.77 0.00 0.20 ind:pas:3s; +démontable démontable ADJ s 0.38 0.61 0.25 0.47 +démontables démontable ADJ f p 0.38 0.61 0.14 0.14 +démontage démontage NOM m s 0.06 0.14 0.06 0.07 +démontages démontage NOM m p 0.06 0.14 0.00 0.07 +démontaient démonter VER 6.83 7.77 0.00 0.14 ind:imp:3p; +démontait démonter VER 6.83 7.77 0.05 0.74 ind:imp:3s; +démontant démonter VER 6.83 7.77 0.04 0.07 par:pre; +démonte_pneu démonte_pneu NOM m s 0.26 0.20 0.25 0.07 +démonte_pneu démonte_pneu NOM m p 0.26 0.20 0.01 0.14 +démonte démonter VER 6.83 7.77 1.40 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démontent démonter VER 6.83 7.77 0.18 0.07 ind:pre:3p; +démonter démonter VER 6.83 7.77 3.44 3.11 inf; +démontez démonter VER 6.83 7.77 0.35 0.00 imp:pre:2p;ind:pre:2p; +démontra démontrer VER 7.12 12.09 0.00 0.34 ind:pas:3s; +démontrable démontrable ADJ m s 0.03 0.00 0.03 0.00 +démontrai démontrer VER 7.12 12.09 0.00 0.20 ind:pas:1s; +démontraient démontrer VER 7.12 12.09 0.01 0.27 ind:imp:3p; +démontrait démontrer VER 7.12 12.09 0.07 0.81 ind:imp:3s; +démontrant démontrer VER 7.12 12.09 0.06 0.81 par:pre; +démontre démontrer VER 7.12 12.09 1.38 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démontrent démontrer VER 7.12 12.09 0.34 0.14 ind:pre:3p; +démontrer démontrer VER 7.12 12.09 3.23 5.61 inf; +démontrera démontrer VER 7.12 12.09 0.09 0.07 ind:fut:3s; +démontrerai démontrer VER 7.12 12.09 0.09 0.00 ind:fut:1s; +démontrerait démontrer VER 7.12 12.09 0.02 0.14 cnd:pre:3s; +démontrerons démontrer VER 7.12 12.09 0.04 0.00 ind:fut:1p; +démontreront démontrer VER 7.12 12.09 0.07 0.00 ind:fut:3p; +démontrez démontrer VER 7.12 12.09 0.30 0.00 imp:pre:2p;ind:pre:2p; +démontrions démontrer VER 7.12 12.09 0.01 0.07 ind:imp:1p; +démontrât démontrer VER 7.12 12.09 0.00 0.07 sub:imp:3s; +démontrèrent démontrer VER 7.12 12.09 0.00 0.20 ind:pas:3p; +démontré démontrer VER m s 7.12 12.09 1.16 1.82 par:pas; +démontrée démontrer VER f s 7.12 12.09 0.21 0.34 par:pas; +démontrées démontrer VER f p 7.12 12.09 0.03 0.00 par:pas; +démontrés démontrer VER m p 7.12 12.09 0.02 0.00 par:pas; +démonté démonter VER m s 6.83 7.77 1.10 1.35 par:pas; +démontée démonté ADJ f s 0.31 2.09 0.22 0.74 +démontées démonter VER f p 6.83 7.77 0.08 0.07 par:pas; +démontés démonter VER m p 6.83 7.77 0.06 0.27 par:pas; +démonétisé démonétiser VER m s 0.00 0.14 0.00 0.07 par:pas; +démonétisés démonétiser VER m p 0.00 0.14 0.00 0.07 par:pas; +démoralisa démoraliser VER 0.98 1.82 0.00 0.07 ind:pas:3s; +démoralisait démoraliser VER 0.98 1.82 0.00 0.14 ind:imp:3s; +démoralisant démoralisant ADJ m s 0.14 0.81 0.11 0.34 +démoralisante démoralisant ADJ f s 0.14 0.81 0.03 0.34 +démoralisants démoralisant ADJ m p 0.14 0.81 0.00 0.14 +démoralisateur démoralisateur NOM m s 0.01 0.07 0.01 0.00 +démoralisateurs démoralisateur ADJ m p 0.00 0.07 0.00 0.07 +démoralisateurs démoralisateur NOM m p 0.01 0.07 0.00 0.07 +démoralisation démoralisation NOM f s 0.30 0.61 0.30 0.61 +démoralise démoraliser VER 0.98 1.82 0.10 0.27 imp:pre:2s;ind:pre:3s; +démoralisent démoraliser VER 0.98 1.82 0.03 0.07 ind:pre:3p; +démoraliser démoraliser VER 0.98 1.82 0.34 0.47 inf; +démoraliseraient démoraliser VER 0.98 1.82 0.00 0.07 cnd:pre:3p; +démoraliserais démoraliser VER 0.98 1.82 0.00 0.07 cnd:pre:2s; +démoralisé démoraliser VER m s 0.98 1.82 0.32 0.34 par:pas; +démoralisée démoraliser VER f s 0.98 1.82 0.16 0.14 par:pas; +démoralisées démoralisé ADJ f p 0.12 0.27 0.00 0.07 +démoralisés démoraliser VER m p 0.98 1.82 0.02 0.20 par:pas; +démord démordre VER 0.49 2.57 0.05 0.27 ind:pre:3s; +démordaient démordre VER 0.49 2.57 0.01 0.07 ind:imp:3p; +démordais démordre VER 0.49 2.57 0.00 0.07 ind:imp:1s; +démordait démordre VER 0.49 2.57 0.11 0.88 ind:imp:3s; +démordent démordre VER 0.49 2.57 0.00 0.14 ind:pre:3p; +démordez démordre VER 0.49 2.57 0.02 0.07 imp:pre:2p;ind:pre:2p; +démordit démordre VER 0.49 2.57 0.00 0.07 ind:pas:3s; +démordra démordre VER 0.49 2.57 0.01 0.07 ind:fut:3s; +démordrai démordre VER 0.49 2.57 0.02 0.00 ind:fut:1s; +démordrait démordre VER 0.49 2.57 0.00 0.07 cnd:pre:3s; +démordre démordre VER 0.49 2.57 0.19 0.74 inf; +démordront démordre VER 0.49 2.57 0.00 0.07 ind:fut:3p; +démords démordre VER 0.49 2.57 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +démordu démordre VER m s 0.49 2.57 0.04 0.00 par:pas; +démâtait démâter VER 0.01 0.61 0.00 0.07 ind:imp:3s; +démâter démâter VER 0.01 0.61 0.01 0.00 inf; +démotique démotique ADJ f s 0.00 0.14 0.00 0.14 +démotivation démotivation NOM f s 0.01 0.00 0.01 0.00 +démotive démotiver VER 0.06 0.00 0.02 0.00 ind:pre:1s;ind:pre:3s; +démotiver démotiver VER 0.06 0.00 0.03 0.00 inf; +démotivée démotiver VER f s 0.06 0.00 0.01 0.00 par:pas; +démâté démâter VER m s 0.01 0.61 0.00 0.07 par:pas; +démâtée démâter VER f s 0.01 0.61 0.00 0.34 par:pas; +démâtés démâter VER m p 0.01 0.61 0.00 0.14 par:pas; +démoucheté démoucheter VER m s 0.14 0.07 0.14 0.07 par:pas; +démoule démouler VER 0.09 0.07 0.02 0.00 ind:pre:1s;ind:pre:3s; +démouler démouler VER 0.09 0.07 0.03 0.00 inf; +démoules démouler VER 0.09 0.07 0.01 0.00 ind:pre:2s; +démoulé démouler VER m s 0.09 0.07 0.02 0.00 par:pas; +démoulées démouler VER f p 0.09 0.07 0.00 0.07 par:pas; +dumper dumper NOM m s 0.01 0.00 0.01 0.00 +dumping dumping NOM m s 0.00 0.07 0.00 0.07 +démène démener VER 2.65 3.72 1.27 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démènent démener VER 2.65 3.72 0.11 0.20 ind:pre:3p; +démèneras démener VER 2.65 3.72 0.10 0.00 ind:fut:2s; +démènes démener VER 2.65 3.72 0.14 0.00 ind:pre:2s; +démêla démêler VER 1.41 5.20 0.00 0.07 ind:pas:3s; +démêlage démêlage NOM m s 0.01 0.07 0.01 0.07 +démêlai démêler VER 1.41 5.20 0.00 0.20 ind:pas:1s; +démêlais démêler VER 1.41 5.20 0.00 0.14 ind:imp:1s; +démêlait démêler VER 1.41 5.20 0.00 0.27 ind:imp:3s; +démêlant démêlant NOM m s 0.29 0.00 0.29 0.00 +démêle démêler VER 1.41 5.20 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +démêlent démêler VER 1.41 5.20 0.01 0.07 ind:pre:3p; +démêler démêler VER 1.41 5.20 0.84 3.38 inf; +démêlerait démêler VER 1.41 5.20 0.00 0.07 cnd:pre:3s; +démêlions démêler VER 1.41 5.20 0.00 0.07 ind:imp:1p; +démêloir démêloir NOM m s 0.00 0.07 0.00 0.07 +démultipliaient démultiplier VER 0.18 1.01 0.00 0.07 ind:imp:3p; +démultipliait démultiplier VER 0.18 1.01 0.01 0.07 ind:imp:3s; +démultipliant démultiplier VER 0.18 1.01 0.01 0.00 par:pre; +démultiplicateur démultiplicateur NOM m s 0.00 0.07 0.00 0.07 +démultiplication démultiplication NOM f s 0.00 0.07 0.00 0.07 +démultiplie démultiplier VER 0.18 1.01 0.01 0.07 ind:pre:3s; +démultiplient démultiplier VER 0.18 1.01 0.14 0.14 ind:pre:3p; +démultiplier démultiplier VER 0.18 1.01 0.00 0.14 inf; +démultiplié démultiplier VER m s 0.18 1.01 0.01 0.27 par:pas; +démultipliée démultiplier VER f s 0.18 1.01 0.00 0.14 par:pas; +démultipliées démultiplier VER f p 0.18 1.01 0.00 0.07 par:pas; +démultipliés démultiplier VER m p 0.18 1.01 0.00 0.07 par:pas; +démêlé démêler VER m s 1.41 5.20 0.37 0.34 par:pas; +démêlées démêler VER f p 1.41 5.20 0.00 0.07 par:pas; +démêlés démêlé NOM m p 0.38 1.22 0.38 1.22 +déménage déménager VER 32.40 10.34 7.24 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déménagea déménager VER 32.40 10.34 0.16 0.07 ind:pas:3s; +déménageaient déménager VER 32.40 10.34 0.01 0.14 ind:imp:3p; +déménageais déménager VER 32.40 10.34 0.12 0.14 ind:imp:1s;ind:imp:2s; +déménageait déménager VER 32.40 10.34 0.38 0.20 ind:imp:3s; +déménageant déménager VER 32.40 10.34 0.10 0.14 par:pre; +déménagement déménagement NOM m s 2.98 6.69 2.66 5.27 +déménagements déménagement NOM m p 2.98 6.69 0.32 1.42 +déménagent déménager VER 32.40 10.34 0.89 0.20 ind:pre:3p; +déménageons déménager VER 32.40 10.34 0.28 0.00 imp:pre:1p;ind:pre:1p; +déménager déménager VER 32.40 10.34 11.14 4.12 inf; +déménagera déménager VER 32.40 10.34 0.40 0.00 ind:fut:3s; +déménagerai déménager VER 32.40 10.34 0.13 0.00 ind:fut:1s; +déménageraient déménager VER 32.40 10.34 0.01 0.00 cnd:pre:3p; +déménagerais déménager VER 32.40 10.34 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +déménagerait déménager VER 32.40 10.34 0.15 0.14 cnd:pre:3s; +déménageras déménager VER 32.40 10.34 0.04 0.00 ind:fut:2s; +déménagerez déménager VER 32.40 10.34 0.14 0.00 ind:fut:2p; +déménages déménager VER 32.40 10.34 1.43 0.20 ind:pre:2s; +déménageur déménageur NOM m s 1.67 3.18 0.63 1.28 +déménageurs déménageur NOM m p 1.67 3.18 1.03 1.82 +déménageuse déménageur NOM f s 1.67 3.18 0.00 0.07 +déménagez déménager VER 32.40 10.34 1.06 0.47 imp:pre:2p;ind:pre:2p; +déménagiez déménager VER 32.40 10.34 0.03 0.00 ind:imp:2p; +déménagions déménager VER 32.40 10.34 0.10 0.20 ind:imp:1p; +déménagèrent déménager VER 32.40 10.34 0.03 0.20 ind:pas:3p; +déménagé déménager VER m s 32.40 10.34 8.41 2.36 par:pas; +déménagée déménager VER f s 32.40 10.34 0.07 0.14 par:pas; +déménagés déménager VER m p 32.40 10.34 0.04 0.14 par:pas; +démuni démunir VER m s 0.51 1.76 0.27 0.54 par:pas; +démunie démuni ADJ f s 0.56 3.58 0.09 0.34 +démunies démuni ADJ f p 0.56 3.58 0.03 0.14 +démunir démunir VER 0.51 1.76 0.01 0.14 inf; +démunis démuni NOM m p 0.42 1.28 0.38 0.34 +démunissant démunir VER 0.51 1.76 0.00 0.07 par:pre; +démurge démurger VER 0.00 0.41 0.00 0.20 ind:pre:3s; +démurger démurger VER 0.00 0.41 0.00 0.20 inf; +déméritait démériter VER 0.02 0.74 0.00 0.07 ind:imp:3s; +démérite démérite NOM m s 0.04 0.20 0.04 0.14 +démériter démériter VER 0.02 0.74 0.00 0.07 inf; +démérites démérite NOM m p 0.04 0.20 0.00 0.07 +démérité démériter VER m s 0.02 0.74 0.02 0.61 par:pas; +démuseler démuseler VER 0.00 0.07 0.00 0.07 inf; +démystificateur démystificateur NOM m s 0.03 0.00 0.03 0.00 +démystification démystification NOM f s 0.10 0.07 0.10 0.00 +démystifications démystification NOM f p 0.10 0.07 0.00 0.07 +démystificatrice démystificateur ADJ f s 0.00 0.14 0.00 0.14 +démystifier démystifier VER 0.05 0.07 0.04 0.07 inf; +démystifié démystifier VER m s 0.05 0.07 0.01 0.00 par:pas; +démythifie démythifier VER 0.00 0.14 0.00 0.07 ind:pre:3s; +démythifié démythifier VER m s 0.00 0.14 0.00 0.07 par:pas; +dénanti dénantir VER m s 0.00 0.07 0.00 0.07 par:pas; +dénatalité dénatalité NOM f s 0.01 0.00 0.01 0.00 +dénaturaient dénaturer VER 0.54 1.42 0.01 0.07 ind:imp:3p; +dénaturait dénaturer VER 0.54 1.42 0.02 0.27 ind:imp:3s; +dénaturation dénaturation NOM f s 0.02 0.00 0.02 0.00 +dénature dénaturer VER 0.54 1.42 0.07 0.00 imp:pre:2s;ind:pre:3s; +dénaturent dénaturer VER 0.54 1.42 0.01 0.14 ind:pre:3p; +dénaturer dénaturer VER 0.54 1.42 0.14 0.54 inf; +dénaturé dénaturer VER m s 0.54 1.42 0.26 0.14 par:pas; +dénaturée dénaturé ADJ f s 0.44 0.88 0.21 0.27 +dénaturées dénaturé ADJ f p 0.44 0.88 0.04 0.20 +dénaturés dénaturer VER m p 0.54 1.42 0.00 0.07 par:pas; +dénazification dénazification NOM f s 0.03 0.00 0.03 0.00 +dénazifier dénazifier VER 0.01 0.00 0.01 0.00 inf; +dundee dundee NOM m s 0.00 0.07 0.00 0.07 +dune dune NOM f s 3.96 12.84 1.55 3.45 +déneigement déneigement NOM m s 0.01 0.00 0.01 0.00 +déneiger déneiger VER 0.09 0.00 0.08 0.00 inf; +déneigé déneiger VER m s 0.09 0.00 0.01 0.00 par:pas; +dénervation dénervation NOM f s 0.01 0.00 0.01 0.00 +dénervé dénerver VER m s 0.00 0.07 0.00 0.07 par:pas; +dunes dune NOM f p 3.96 12.84 2.41 9.39 +dunette dunette NOM f s 0.07 0.68 0.07 0.61 +dunettes dunette NOM f p 0.07 0.68 0.00 0.07 +déni déni NOM m s 0.84 0.41 0.78 0.27 +dénia dénier VER 0.64 1.22 0.00 0.07 ind:pas:3s; +déniaient dénier VER 0.64 1.22 0.00 0.07 ind:imp:3p; +déniaisa déniaiser VER 0.04 0.41 0.00 0.07 ind:pas:3s; +déniaisas déniaiser VER 0.04 0.41 0.00 0.07 ind:pas:2s; +déniaisement déniaisement NOM m s 0.00 0.14 0.00 0.14 +déniaiser déniaiser VER 0.04 0.41 0.04 0.00 inf; +déniaises déniaiser VER 0.04 0.41 0.00 0.07 ind:pre:2s; +déniaisé déniaiser VER m s 0.04 0.41 0.01 0.20 par:pas; +déniait dénier VER 0.64 1.22 0.00 0.27 ind:imp:3s; +déniant dénier VER 0.64 1.22 0.02 0.20 par:pre; +dénicha dénicher VER 5.07 8.78 0.02 0.41 ind:pas:3s; +dénichai dénicher VER 5.07 8.78 0.00 0.07 ind:pas:1s; +dénichaient dénicher VER 5.07 8.78 0.00 0.07 ind:imp:3p; +dénichais dénicher VER 5.07 8.78 0.14 0.20 ind:imp:1s;ind:imp:2s; +dénichait dénicher VER 5.07 8.78 0.04 0.20 ind:imp:3s; +dénichant dénicher VER 5.07 8.78 0.01 0.00 par:pre; +déniche dénicher VER 5.07 8.78 0.52 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénichent dénicher VER 5.07 8.78 0.04 0.20 ind:pre:3p; +dénicher dénicher VER 5.07 8.78 1.91 3.85 inf; +dénichera dénicher VER 5.07 8.78 0.17 0.07 ind:fut:3s; +dénicherait dénicher VER 5.07 8.78 0.01 0.07 cnd:pre:3s; +dénicheras dénicher VER 5.07 8.78 0.01 0.07 ind:fut:2s; +dénicheur dénicheur NOM m s 0.50 0.34 0.44 0.14 +dénicheurs dénicheur NOM m p 0.50 0.34 0.05 0.14 +dénicheuse dénicheur NOM f s 0.50 0.34 0.01 0.07 +dénichez dénicher VER 5.07 8.78 0.41 0.00 imp:pre:2p;ind:pre:2p; +dénichions dénicher VER 5.07 8.78 0.00 0.07 ind:imp:1p; +déniché dénicher VER m s 5.07 8.78 1.47 2.43 par:pas; +dénichée dénicher VER f s 5.07 8.78 0.23 0.41 par:pas; +dénichées dénicher VER f p 5.07 8.78 0.01 0.14 par:pas; +dénichés dénicher VER m p 5.07 8.78 0.08 0.34 par:pas; +dénie dénier VER 0.64 1.22 0.32 0.20 ind:pre:1s;ind:pre:3s; +dénier dénier VER 0.64 1.22 0.10 0.34 inf; +dénierai dénier VER 0.64 1.22 0.01 0.00 ind:fut:1s; +dénies dénier VER 0.64 1.22 0.02 0.00 ind:pre:2s; +dénigrais dénigrer VER 1.51 1.08 0.14 0.00 ind:imp:1s; +dénigrait dénigrer VER 1.51 1.08 0.00 0.20 ind:imp:3s; +dénigrant dénigrer VER 1.51 1.08 0.03 0.00 par:pre; +dénigrante dénigrant ADJ f s 0.01 0.07 0.00 0.07 +dénigre dénigrer VER 1.51 1.08 0.31 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénigrement dénigrement NOM m s 0.29 0.54 0.28 0.47 +dénigrements dénigrement NOM m p 0.29 0.54 0.01 0.07 +dénigrent dénigrer VER 1.51 1.08 0.04 0.07 ind:pre:3p; +dénigrer dénigrer VER 1.51 1.08 0.53 0.47 inf; +dénigres dénigrer VER 1.51 1.08 0.37 0.00 ind:pre:2s; +dénigreuses dénigreur NOM f p 0.00 0.07 0.00 0.07 +dénigrez dénigrer VER 1.51 1.08 0.04 0.00 imp:pre:2p;ind:pre:2p; +dénigré dénigrer VER m s 1.51 1.08 0.04 0.20 par:pas; +dénigrées dénigrer VER f p 1.51 1.08 0.00 0.14 par:pas; +dénigrés dénigrer VER m p 1.51 1.08 0.01 0.00 par:pas; +dénions dénier VER 0.64 1.22 0.14 0.07 ind:pre:1p; +dénis déni NOM m p 0.84 0.41 0.07 0.14 +dénié dénier VER m s 0.64 1.22 0.04 0.00 par:pas; +dénivellation dénivellation NOM f s 0.02 1.22 0.02 0.74 +dénivellations dénivellation NOM f p 0.02 1.22 0.00 0.47 +dénivelé dénivelé NOM m s 0.03 0.00 0.01 0.00 +dénivelés dénivelé NOM m p 0.03 0.00 0.02 0.00 +dunkerque dunkerque NOM m s 0.00 0.14 0.00 0.14 +dénombra dénombrer VER 0.53 3.31 0.00 0.54 ind:pas:3s; +dénombrables dénombrable ADJ p 0.00 0.07 0.00 0.07 +dénombrait dénombrer VER 0.53 3.31 0.02 0.27 ind:imp:3s; +dénombrant dénombrer VER 0.53 3.31 0.00 0.20 par:pre; +dénombre dénombrer VER 0.53 3.31 0.18 0.47 ind:pre:1s;ind:pre:3s; +dénombrement dénombrement NOM m s 0.00 0.47 0.00 0.41 +dénombrements dénombrement NOM m p 0.00 0.47 0.00 0.07 +dénombrent dénombrer VER 0.53 3.31 0.00 0.07 ind:pre:3p; +dénombrer dénombrer VER 0.53 3.31 0.05 0.95 inf; +dénombrez dénombrer VER 0.53 3.31 0.01 0.00 ind:pre:2p; +dénombré dénombrer VER m s 0.53 3.31 0.26 0.61 par:pas; +dénombrés dénombrer VER m p 0.53 3.31 0.00 0.20 par:pas; +dénominateur dénominateur NOM m s 0.15 0.47 0.15 0.47 +dénominatif dénominatif ADJ m s 0.01 0.00 0.01 0.00 +dénomination dénomination NOM f s 0.09 1.15 0.07 0.61 +dénominations dénomination NOM f p 0.09 1.15 0.02 0.54 +dénominer dénominer VER 0.00 0.07 0.00 0.07 inf; +dénommaient dénommer VER 0.25 0.95 0.00 0.14 ind:imp:3p; +dénommait dénommer VER 0.25 0.95 0.01 0.20 ind:imp:3s; +dénomment dénommer VER 0.25 0.95 0.00 0.07 ind:pre:3p; +dénommer dénommer VER 0.25 0.95 0.00 0.07 inf; +dénommez dénommer VER 0.25 0.95 0.01 0.00 ind:pre:2p; +dénommé dénommé NOM m s 2.67 1.49 2.67 1.49 +dénommée dénommé ADJ f s 0.85 1.22 0.37 0.41 +dénommés dénommer VER m p 0.25 0.95 0.00 0.07 par:pas; +dénonce dénoncer VER 29.57 19.05 5.50 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénoncent dénoncer VER 29.57 19.05 0.70 0.20 ind:pre:3p; +dénoncer dénoncer VER 29.57 19.05 9.83 6.08 inf; +dénoncera dénoncer VER 29.57 19.05 0.92 0.27 ind:fut:3s; +dénoncerai dénoncer VER 29.57 19.05 1.21 0.14 ind:fut:1s; +dénonceraient dénoncer VER 29.57 19.05 0.14 0.20 cnd:pre:3p; +dénoncerais dénoncer VER 29.57 19.05 0.22 0.00 cnd:pre:1s; +dénoncerait dénoncer VER 29.57 19.05 0.34 0.20 cnd:pre:3s; +dénonceras dénoncer VER 29.57 19.05 0.04 0.00 ind:fut:2s; +dénoncerez dénoncer VER 29.57 19.05 0.28 0.00 ind:fut:2p; +dénonceriez dénoncer VER 29.57 19.05 0.03 0.00 cnd:pre:2p; +dénonceront dénoncer VER 29.57 19.05 0.12 0.20 ind:fut:3p; +dénonces dénoncer VER 29.57 19.05 0.88 0.14 ind:pre:2s; +dénoncez dénoncer VER 29.57 19.05 1.05 0.07 imp:pre:2p;ind:pre:2p; +dénonciateur dénonciateur NOM m s 0.08 0.74 0.08 0.68 +dénonciation dénonciation NOM f s 0.88 2.50 0.69 1.49 +dénonciations dénonciation NOM f p 0.88 2.50 0.19 1.01 +dénonciatrice dénonciateur ADJ f s 0.02 0.00 0.02 0.00 +dénoncé dénoncer VER m s 29.57 19.05 5.78 3.24 par:pas; +dénoncée dénoncer VER f s 29.57 19.05 0.89 0.68 par:pas; +dénoncées dénoncer VER f p 29.57 19.05 0.07 0.27 par:pas; +dénoncés dénoncer VER m p 29.57 19.05 0.90 0.88 par:pas; +dénonça dénoncer VER 29.57 19.05 0.03 0.34 ind:pas:3s; +dénonçaient dénoncer VER 29.57 19.05 0.14 0.74 ind:imp:3p; +dénonçais dénoncer VER 29.57 19.05 0.03 0.07 ind:imp:1s; +dénonçait dénoncer VER 29.57 19.05 0.23 1.69 ind:imp:3s; +dénonçant dénoncer VER 29.57 19.05 0.25 1.08 par:pre; +dénonçons dénoncer VER 29.57 19.05 0.02 0.00 imp:pre:1p;ind:pre:1p; +dénonçât dénoncer VER 29.57 19.05 0.00 0.14 sub:imp:3s; +dénotaient dénoter VER 0.23 1.42 0.01 0.07 ind:imp:3p; +dénotait dénoter VER 0.23 1.42 0.00 0.54 ind:imp:3s; +dénotant dénoter VER 0.23 1.42 0.01 0.07 par:pre; +dénote dénoter VER 0.23 1.42 0.18 0.27 ind:pre:1s;ind:pre:3s; +dénotent dénoter VER 0.23 1.42 0.01 0.27 ind:pre:3p; +dénoter dénoter VER 0.23 1.42 0.00 0.07 inf; +dénoterait dénoter VER 0.23 1.42 0.00 0.07 cnd:pre:3s; +dénoté dénoter VER m s 0.23 1.42 0.02 0.07 par:pas; +dénoua dénouer VER 1.42 12.30 0.01 1.82 ind:pas:3s; +dénouaient dénouer VER 1.42 12.30 0.00 0.14 ind:imp:3p; +dénouait dénouer VER 1.42 12.30 0.00 0.74 ind:imp:3s; +dénouant dénouer VER 1.42 12.30 0.00 0.88 par:pre; +dénoue dénouer VER 1.42 12.30 0.46 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénouement dénouement NOM m s 1.34 4.05 1.31 3.78 +dénouements dénouement NOM m p 1.34 4.05 0.03 0.27 +dénouent dénouer VER 1.42 12.30 0.01 0.41 ind:pre:3p; +dénouer dénouer VER 1.42 12.30 0.62 1.96 inf; +dénouera dénouer VER 1.42 12.30 0.03 0.00 ind:fut:3s; +dénouerais dénouer VER 1.42 12.30 0.01 0.07 cnd:pre:1s; +dénouions dénouer VER 1.42 12.30 0.00 0.07 ind:imp:1p; +dénouât dénouer VER 1.42 12.30 0.00 0.07 sub:imp:3s; +dénouèrent dénouer VER 1.42 12.30 0.00 0.20 ind:pas:3p; +dénoué dénouer VER m s 1.42 12.30 0.11 1.01 par:pas; +dénouée dénouer VER f s 1.42 12.30 0.14 0.81 par:pas; +dénouées dénouer VER f p 1.42 12.30 0.00 0.34 par:pas; +dénoués dénouer VER m p 1.42 12.30 0.03 2.23 par:pas; +dénoyautait dénoyauter VER 0.00 0.20 0.00 0.07 ind:imp:3s; +dénoyauter dénoyauter VER 0.00 0.20 0.00 0.14 inf; +dénoyauteur dénoyauteur NOM m s 0.03 0.00 0.03 0.00 +dénuda dénuder VER 0.54 5.61 0.00 0.07 ind:pas:3s; +dénudaient dénuder VER 0.54 5.61 0.00 0.14 ind:imp:3p; +dénudait dénuder VER 0.54 5.61 0.00 0.81 ind:imp:3s; +dénudant dénuder VER 0.54 5.61 0.00 0.20 par:pre; +dénudation dénudation NOM f s 0.18 0.00 0.18 0.00 +dénude dénuder VER 0.54 5.61 0.05 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dénudent dénuder VER 0.54 5.61 0.01 0.27 ind:pre:3p; +dénuder dénuder VER 0.54 5.61 0.08 1.01 inf; +dénudera dénuder VER 0.54 5.61 0.00 0.07 ind:fut:3s; +dénuderait dénuder VER 0.54 5.61 0.00 0.07 cnd:pre:3s; +dénudèrent dénuder VER 0.54 5.61 0.00 0.20 ind:pas:3p; +dénudé dénudé ADJ m s 0.61 4.26 0.36 1.69 +dénudée dénudé ADJ f s 0.61 4.26 0.13 1.01 +dénudées dénudé ADJ f p 0.61 4.26 0.05 0.68 +dénudés dénudé ADJ m p 0.61 4.26 0.07 0.88 +dénuement dénuement NOM m s 0.08 3.92 0.08 3.92 +dénégateurs dénégateur ADJ m p 0.00 0.07 0.00 0.07 +dénégation dénégation NOM f s 0.56 2.50 0.48 1.76 +dénégations dénégation NOM f p 0.56 2.50 0.08 0.74 +dénué dénuer VER m s 2.06 4.80 1.16 1.69 par:pas; +dénuée dénuer VER f s 2.06 4.80 0.44 1.42 par:pas; +dénuées dénuer VER f p 2.06 4.80 0.17 0.81 par:pas; +dénués dénuer VER m p 2.06 4.80 0.29 0.88 par:pas; +duo duo NOM m s 2.58 2.50 2.49 2.09 +duodi duodi NOM m s 0.00 0.07 0.00 0.07 +déodorant déodorant NOM m s 1.00 0.54 0.85 0.41 +déodorants déodorant NOM m p 1.00 0.54 0.15 0.14 +duodécimale duodécimal ADJ f s 0.00 0.07 0.00 0.07 +duodénal duodénal ADJ m s 0.03 0.00 0.01 0.00 +duodénale duodénal ADJ f s 0.03 0.00 0.01 0.00 +duodénum duodénum NOM m s 0.17 0.27 0.17 0.27 +déontologie déontologie NOM f s 0.37 0.41 0.37 0.41 +déontologique déontologique ADJ m s 0.07 0.00 0.03 0.00 +déontologiques déontologique ADJ p 0.07 0.00 0.03 0.00 +duopole duopole NOM m s 0.01 0.00 0.01 0.00 +duos duo NOM m p 2.58 2.50 0.09 0.41 +dépôt_vente dépôt_vente NOM m s 0.03 0.00 0.03 0.00 +dépôt dépôt NOM m s 13.20 11.96 11.90 8.58 +dépôts dépôt NOM m p 13.20 11.96 1.30 3.38 +dépaillée dépailler VER f s 0.00 0.20 0.00 0.14 par:pas; +dépaillées dépailler VER f p 0.00 0.20 0.00 0.07 par:pas; +dupait duper VER 4.77 2.70 0.03 0.20 ind:imp:3s; +dépannage dépannage NOM m s 1.31 1.08 1.17 1.01 +dépannages dépannage NOM m p 1.31 1.08 0.14 0.07 +dépannaient dépanner VER 3.56 2.77 0.01 0.00 ind:imp:3p; +dépannait dépanner VER 3.56 2.77 0.01 0.07 ind:imp:3s; +dépanne dépanner VER 3.56 2.77 0.49 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépannent dépanner VER 3.56 2.77 0.01 0.00 ind:pre:3p; +dépanner dépanner VER 3.56 2.77 1.95 1.96 inf;; +dépannera dépanner VER 3.56 2.77 0.16 0.14 ind:fut:3s; +dépannerais dépanner VER 3.56 2.77 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +dépannerait dépanner VER 3.56 2.77 0.33 0.07 cnd:pre:3s; +dépanneriez dépanner VER 3.56 2.77 0.01 0.00 cnd:pre:2p; +dépanneront dépanner VER 3.56 2.77 0.01 0.00 ind:fut:3p; +dépanneur dépanneur NOM m s 1.84 0.68 0.57 0.41 +dépanneurs dépanneur NOM m p 1.84 0.68 0.13 0.00 +dépanneuse dépanneur NOM f s 1.84 0.68 1.13 0.20 +dépanneuses dépanneuse NOM f p 0.02 0.00 0.02 0.00 +dépannons dépanner VER 3.56 2.77 0.01 0.00 ind:pre:1p; +dépanné dépanner VER m s 3.56 2.77 0.47 0.00 par:pas; +dépannée dépanner VER f s 3.56 2.77 0.04 0.14 par:pas; +dépannés dépanner VER m p 3.56 2.77 0.03 0.14 par:pas; +dupant duper VER 4.77 2.70 0.04 0.07 par:pre; +dépaquetait dépaqueter VER 0.00 0.07 0.00 0.07 ind:imp:3s; +déparaient déparer VER 0.13 1.42 0.00 0.14 ind:imp:3p; +déparait déparer VER 0.13 1.42 0.00 0.27 ind:imp:3s; +dépare déparer VER 0.13 1.42 0.11 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépareillaient dépareiller VER 0.10 0.68 0.00 0.07 ind:imp:3p; +dépareillait dépareiller VER 0.10 0.68 0.01 0.00 ind:imp:3s; +dépareiller dépareiller VER 0.10 0.68 0.03 0.00 inf; +dépareilleraient dépareiller VER 0.10 0.68 0.00 0.07 cnd:pre:3p; +dépareillé dépareillé ADJ m s 0.11 2.03 0.01 0.14 +dépareillée dépareillé ADJ f s 0.11 2.03 0.02 0.07 +dépareillées dépareillé ADJ f p 0.11 2.03 0.04 0.95 +dépareillés dépareillé ADJ m p 0.11 2.03 0.03 0.88 +déparer déparer VER 0.13 1.42 0.01 0.27 inf; +déparerait déparer VER 0.13 1.42 0.01 0.00 cnd:pre:3s; +déparié déparier VER m s 0.00 2.09 0.00 0.95 par:pas; +dépariée déparier VER f s 0.00 2.09 0.00 0.88 par:pas; +dépariées déparier VER f p 0.00 2.09 0.00 0.07 par:pas; +dépariés déparier VER m p 0.00 2.09 0.00 0.20 par:pas; +déparlait déparler VER 0.00 0.14 0.00 0.07 ind:imp:3s; +déparler déparler VER 0.00 0.14 0.00 0.07 inf; +déparât déparer VER 0.13 1.42 0.00 0.07 sub:imp:3s; +départ départ NOM m s 68.49 123.04 67.35 116.96 +départage départager VER 0.92 0.81 0.04 0.00 ind:pre:3s; +départageant départager VER 0.92 0.81 0.01 0.00 par:pre; +départager départager VER 0.92 0.81 0.85 0.61 inf; +départagera départager VER 0.92 0.81 0.01 0.07 ind:fut:3s; +départagions départager VER 0.92 0.81 0.00 0.07 ind:imp:1p; +départagé départager VER m s 0.92 0.81 0.00 0.07 par:pas; +départait départir VER 0.67 4.19 0.00 0.47 ind:imp:3s; +département département NOM m s 15.53 12.36 14.70 8.04 +départemental départemental ADJ m s 0.13 2.03 0.02 0.74 +départementale départementale NOM f s 0.26 1.42 0.26 1.15 +départementales départemental ADJ f p 0.13 2.03 0.00 0.34 +départementaux départemental ADJ m p 0.13 2.03 0.01 0.47 +départements département NOM m p 15.53 12.36 0.83 4.32 +départent départir VER 0.67 4.19 0.00 0.07 ind:pre:3p; +départi départir VER m s 0.67 4.19 0.00 0.41 par:pas; +départie départir VER f s 0.67 4.19 0.00 0.07 par:pas; +départir départir VER 0.67 4.19 0.04 1.82 inf; +départira départir VER 0.67 4.19 0.00 0.07 ind:fut:3s; +départirent départir VER 0.67 4.19 0.00 0.14 ind:pas:3p; +départis départir VER m p 0.67 4.19 0.01 0.07 ind:pas:1s;par:pas; +départit départir VER 0.67 4.19 0.00 0.27 ind:pas:3s; +départs départ NOM m p 68.49 123.04 1.14 6.08 +déparé déparer VER m s 0.13 1.42 0.00 0.20 par:pas; +dépassa dépasser VER 42.62 78.78 0.05 3.99 ind:pas:3s; +dépassai dépasser VER 42.62 78.78 0.00 0.20 ind:pas:1s; +dépassaient dépasser VER 42.62 78.78 0.17 5.95 ind:imp:3p; +dépassais dépasser VER 42.62 78.78 0.06 0.41 ind:imp:1s;ind:imp:2s; +dépassait dépasser VER 42.62 78.78 1.08 12.84 ind:imp:3s; +dépassant dépasser VER 42.62 78.78 0.47 4.86 par:pre; +dépasse dépasser VER 42.62 78.78 14.14 12.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépassement dépassement NOM m s 0.55 0.61 0.49 0.41 +dépassements dépassement NOM m p 0.55 0.61 0.06 0.20 +dépassent dépasser VER 42.62 78.78 3.12 5.74 ind:pre:3p; +dépasser dépasser VER 42.62 78.78 6.12 10.27 inf; +dépassera dépasser VER 42.62 78.78 0.19 0.61 ind:fut:3s; +dépasserai dépasser VER 42.62 78.78 0.01 0.07 ind:fut:1s; +dépasseraient dépasser VER 42.62 78.78 0.00 0.07 cnd:pre:3p; +dépasserais dépasser VER 42.62 78.78 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +dépasserait dépasser VER 42.62 78.78 0.41 0.54 cnd:pre:3s; +dépasseras dépasser VER 42.62 78.78 0.05 0.00 ind:fut:2s; +dépasserions dépasser VER 42.62 78.78 0.00 0.07 cnd:pre:1p; +dépasseront dépasser VER 42.62 78.78 0.20 0.14 ind:fut:3p; +dépasses dépasser VER 42.62 78.78 1.63 0.27 ind:pre:2s; +dépassez dépasser VER 42.62 78.78 1.39 0.27 imp:pre:2p;ind:pre:2p; +dépassiez dépasser VER 42.62 78.78 0.05 0.00 ind:imp:2p; +dépassionnons dépassionner VER 0.00 0.07 0.00 0.07 imp:pre:1p; +dépassions dépasser VER 42.62 78.78 0.11 0.54 ind:imp:1p; +dépassâmes dépasser VER 42.62 78.78 0.00 0.27 ind:pas:1p; +dépassons dépasser VER 42.62 78.78 0.19 0.54 imp:pre:1p;ind:pre:1p; +dépassât dépasser VER 42.62 78.78 0.00 0.41 sub:imp:3s; +dépassèrent dépasser VER 42.62 78.78 0.01 1.42 ind:pas:3p; +dépassé dépasser VER m s 42.62 78.78 10.90 12.09 par:pas; +dépassée dépasser VER f s 42.62 78.78 0.82 2.64 par:pas; +dépassées dépasser VER f p 42.62 78.78 0.39 0.47 par:pas; +dépassés dépasser VER m p 42.62 78.78 1.01 1.69 par:pas; +dépatouillait dépatouiller VER 0.05 0.41 0.00 0.07 ind:imp:3s; +dépatouille dépatouiller VER 0.05 0.41 0.00 0.14 ind:pre:1s; +dépatouiller dépatouiller VER 0.05 0.41 0.05 0.20 inf; +dépaver dépaver VER 0.00 0.07 0.00 0.07 inf; +dépaysaient dépayser VER 0.24 3.38 0.00 0.34 ind:imp:3p; +dépaysait dépayser VER 0.24 3.38 0.00 0.41 ind:imp:3s; +dépaysant dépaysant ADJ m s 0.16 0.34 0.15 0.07 +dépaysante dépaysant ADJ f s 0.16 0.34 0.00 0.20 +dépaysantes dépaysant ADJ f p 0.16 0.34 0.01 0.07 +dépayse dépayser VER 0.24 3.38 0.01 0.41 ind:pre:1s;ind:pre:3s; +dépaysement dépaysement NOM m s 0.03 3.11 0.03 2.97 +dépaysements dépaysement NOM m p 0.03 3.11 0.00 0.14 +dépayser dépayser VER 0.24 3.38 0.04 0.27 inf; +dépaysera dépayser VER 0.24 3.38 0.01 0.00 ind:fut:3s; +dépaysé dépayser VER m s 0.24 3.38 0.14 0.47 par:pas; +dépaysée dépayser VER f s 0.24 3.38 0.03 0.68 par:pas; +dépaysés dépayser VER m p 0.24 3.38 0.01 0.68 par:pas; +dupe dupe ADJ m s 2.71 8.51 2.37 7.36 +dépecer dépecer VER 1.18 2.57 0.47 0.68 inf; +dépeceur dépeceur NOM m s 0.03 0.47 0.03 0.34 +dépeceurs dépeceur NOM m p 0.03 0.47 0.00 0.14 +dépecez dépecer VER 1.18 2.57 0.02 0.00 imp:pre:2p;ind:pre:2p; +dépecèrent dépecer VER 1.18 2.57 0.00 0.14 ind:pas:3p; +dépecé dépecer VER m s 1.18 2.57 0.10 0.54 par:pas; +dépecée dépecer VER f s 1.18 2.57 0.02 0.00 par:pas; +dépecés dépecer VER m p 1.18 2.57 0.10 0.41 par:pas; +dépeignaient dépeindre VER 2.24 4.19 0.00 0.07 ind:imp:3p; +dépeignais dépeindre VER 2.24 4.19 0.00 0.07 ind:imp:1s; +dépeignait dépeindre VER 2.24 4.19 0.01 0.68 ind:imp:3s; +dépeignant dépeindre VER 2.24 4.19 0.20 0.00 par:pre; +dépeigne dépeigner VER 0.16 1.15 0.00 0.14 imp:pre:2s;ind:pre:3s; +dépeignent dépeindre VER 2.24 4.19 0.21 0.41 ind:pre:3p;ind:pre:3p;sub:pre:3p; +dépeignirent dépeindre VER 2.24 4.19 0.00 0.07 ind:pas:3p; +dépeignis dépeindre VER 2.24 4.19 0.00 0.07 ind:pas:1s; +dépeignit dépeindre VER 2.24 4.19 0.00 0.07 ind:pas:3s; +dépeigné dépeigner VER m s 0.16 1.15 0.14 0.47 par:pas; +dépeignée dépeigner VER f s 0.16 1.15 0.00 0.34 par:pas; +dépeignés dépeigner VER m p 0.16 1.15 0.00 0.20 par:pas; +dépeindre dépeindre VER 2.24 4.19 0.66 1.01 inf; +dépeins dépeindre VER 2.24 4.19 0.11 0.20 ind:pre:1s;ind:pre:2s; +dépeint dépeindre VER m s 2.24 4.19 0.79 1.15 ind:pre:3s;par:pas; +dépeinte dépeindre VER f s 2.24 4.19 0.04 0.27 par:pas; +dépeintes dépeint ADJ f p 0.26 0.41 0.11 0.07 +dépeints dépeindre VER m p 2.24 4.19 0.23 0.14 par:pas; +dépenaillement dépenaillement NOM m s 0.00 0.14 0.00 0.07 +dépenaillements dépenaillement NOM m p 0.00 0.14 0.00 0.07 +dépenaillé dépenaillé ADJ m s 0.06 1.22 0.05 0.41 +dépenaillée dépenaillé NOM f s 0.04 0.61 0.01 0.14 +dépenaillées dépenaillé ADJ f p 0.06 1.22 0.01 0.07 +dépenaillés dépenaillé ADJ m p 0.06 1.22 0.00 0.54 +dépend dépendre VER 60.33 36.49 48.30 15.20 ind:pre:3s; +dépendît dépendre VER 60.33 36.49 0.00 0.34 sub:imp:3s; +dépendaient dépendre VER 60.33 36.49 0.13 1.76 ind:imp:3p; +dépendais dépendre VER 60.33 36.49 0.04 0.34 ind:imp:1s;ind:imp:2s; +dépendait dépendre VER 60.33 36.49 1.87 7.64 ind:imp:3s; +dépendance dépendance NOM f s 2.42 5.34 2.03 3.51 +dépendances dépendance NOM f p 2.42 5.34 0.39 1.82 +dépendant dépendant ADJ m s 1.81 0.95 0.56 0.34 +dépendante dépendant ADJ f s 1.81 0.95 0.68 0.27 +dépendantes dépendant ADJ f p 1.81 0.95 0.13 0.00 +dépendants dépendant ADJ m p 1.81 0.95 0.44 0.34 +dépende dépendre VER 60.33 36.49 0.17 0.27 sub:pre:1s;sub:pre:3s; +dépendent dépendre VER 60.33 36.49 2.64 2.09 ind:pre:3p; +dépendeur dépendeur NOM m s 0.00 0.34 0.00 0.27 +dépendeurs dépendeur NOM m p 0.00 0.34 0.00 0.07 +dépendez dépendre VER 60.33 36.49 0.25 0.00 ind:pre:2p; +dépendions dépendre VER 60.33 36.49 0.01 0.07 ind:imp:1p; +dépendit dépendre VER 60.33 36.49 0.00 0.07 ind:pas:3s; +dépendons dépendre VER 60.33 36.49 0.43 0.20 imp:pre:1p;ind:pre:1p; +dépendra dépendre VER 60.33 36.49 2.05 1.22 ind:fut:3s; +dépendraient dépendre VER 60.33 36.49 0.01 0.34 cnd:pre:3p; +dépendrait dépendre VER 60.33 36.49 0.12 1.42 cnd:pre:3s; +dépendre dépendre VER 60.33 36.49 2.46 2.84 inf; +dépendrez dépendre VER 60.33 36.49 0.01 0.14 ind:fut:2p; +dépendront dépendre VER 60.33 36.49 0.07 0.61 ind:fut:3p; +dépends dépendre VER 60.33 36.49 1.18 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +dépendu dépendre VER m s 60.33 36.49 0.12 0.68 par:pas; +dépens dépens NOM m p 3.19 3.99 3.19 3.99 +dépensa dépenser VER 31.10 15.41 0.04 0.74 ind:pas:3s; +dépensai dépenser VER 31.10 15.41 0.00 0.14 ind:pas:1s; +dépensaient dépenser VER 31.10 15.41 0.03 0.41 ind:imp:3p; +dépensais dépenser VER 31.10 15.41 0.31 0.20 ind:imp:1s;ind:imp:2s; +dépensait dépenser VER 31.10 15.41 0.60 2.09 ind:imp:3s; +dépensant dépenser VER 31.10 15.41 0.23 0.54 par:pre; +dépense dépenser VER 31.10 15.41 4.25 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépensent dépenser VER 31.10 15.41 1.30 0.27 ind:pre:3p; +dépenser dépenser VER 31.10 15.41 8.77 5.14 inf; +dépensera dépenser VER 31.10 15.41 0.21 0.00 ind:fut:3s; +dépenserai dépenser VER 31.10 15.41 0.17 0.07 ind:fut:1s; +dépenseraient dépenser VER 31.10 15.41 0.01 0.00 cnd:pre:3p; +dépenserais dépenser VER 31.10 15.41 0.60 0.07 cnd:pre:1s;cnd:pre:2s; +dépenserait dépenser VER 31.10 15.41 0.04 0.20 cnd:pre:3s; +dépenseras dépenser VER 31.10 15.41 0.12 0.00 ind:fut:2s; +dépenserez dépenser VER 31.10 15.41 0.15 0.07 ind:fut:2p; +dépenserions dépenser VER 31.10 15.41 0.02 0.07 cnd:pre:1p; +dépenseront dépenser VER 31.10 15.41 0.06 0.00 ind:fut:3p; +dépenses dépense NOM f p 7.11 8.72 5.29 5.07 +dépensez dépenser VER 31.10 15.41 1.29 0.07 imp:pre:2p;ind:pre:2p; +dépensier dépensier ADJ m s 0.17 0.68 0.10 0.27 +dépensiers dépensier ADJ m p 0.17 0.68 0.02 0.07 +dépensiez dépenser VER 31.10 15.41 0.04 0.00 ind:imp:2p; +dépensière dépensier ADJ f s 0.17 0.68 0.05 0.34 +dépensons dépenser VER 31.10 15.41 0.12 0.07 imp:pre:1p;ind:pre:1p; +dépensé dépenser VER m s 31.10 15.41 10.64 2.36 par:pas; +dépensée dépenser VER f s 31.10 15.41 0.11 0.47 par:pas; +dépensées dépenser VER f p 31.10 15.41 0.06 0.41 par:pas; +dépensés dépenser VER m p 31.10 15.41 0.56 0.27 par:pas; +dupent duper VER 4.77 2.70 0.06 0.00 ind:pre:3p; +duper duper VER 4.77 2.70 1.96 1.35 inf; +dupera duper VER 4.77 2.70 0.04 0.00 ind:fut:3s; +duperas duper VER 4.77 2.70 0.03 0.00 ind:fut:2s; +déperdition déperdition NOM f s 0.05 0.34 0.04 0.34 +déperditions déperdition NOM f p 0.05 0.34 0.01 0.00 +duperie duperie NOM f s 0.43 0.88 0.26 0.81 +duperies duperie NOM f p 0.43 0.88 0.17 0.07 +dépersonnalisation dépersonnalisation NOM f s 0.02 0.00 0.02 0.00 +dépersonnaliser dépersonnaliser VER 0.03 0.14 0.01 0.14 inf; +dépersonnalisé dépersonnaliser VER m s 0.03 0.14 0.02 0.00 par:pas; +dépersonnalisée dépersonnalisé ADJ f s 0.00 0.07 0.00 0.07 +dupes dupe NOM f p 1.01 1.28 0.66 0.41 +dépeçage dépeçage NOM m s 0.01 0.34 0.01 0.34 +dépeçaient dépecer VER 1.18 2.57 0.00 0.14 ind:imp:3p; +dépeçait dépecer VER 1.18 2.57 0.03 0.00 ind:imp:3s; +dépeçant dépecer VER 1.18 2.57 0.00 0.14 par:pre; +dépeuplait dépeupler VER 0.41 1.28 0.00 0.07 ind:imp:3s; +dépeuple dépeupler VER 0.41 1.28 0.14 0.20 ind:pre:3s; +dépeuplent dépeupler VER 0.41 1.28 0.00 0.07 ind:pre:3p; +dépeupler dépeupler VER 0.41 1.28 0.02 0.27 inf; +dépeuplera dépeupler VER 0.41 1.28 0.00 0.07 ind:fut:3s; +dépeuplé dépeupler VER m s 0.41 1.28 0.14 0.34 par:pas; +dépeuplée dépeupler VER f s 0.41 1.28 0.10 0.14 par:pas; +dépeuplées dépeuplé ADJ f p 0.00 0.61 0.00 0.07 +dépeuplés dépeupler VER m p 0.41 1.28 0.01 0.14 par:pas; +dupeur dupeur NOM m s 0.01 0.00 0.01 0.00 +dupez duper VER 4.77 2.70 0.14 0.00 imp:pre:2p;ind:pre:2p; +déphasage déphasage NOM m s 0.16 0.00 0.16 0.00 +déphase déphaser VER 0.20 0.20 0.01 0.00 ind:pre:3s; +déphaseurs déphaseur NOM m p 0.01 0.00 0.01 0.00 +déphasé déphasé ADJ m s 0.28 0.20 0.25 0.00 +déphasée déphaser VER f s 0.20 0.20 0.05 0.00 par:pas; +déphasés déphasé ADJ m p 0.28 0.20 0.02 0.07 +dépiautaient dépiauter VER 0.10 2.03 0.00 0.07 ind:imp:3p; +dépiautait dépiauter VER 0.10 2.03 0.00 0.27 ind:imp:3s; +dépiautant dépiauter VER 0.10 2.03 0.00 0.07 par:pre; +dépiaute dépiauter VER 0.10 2.03 0.01 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépiautent dépiauter VER 0.10 2.03 0.01 0.00 ind:pre:3p; +dépiauter dépiauter VER 0.10 2.03 0.06 0.74 inf; +dépiautera dépiauter VER 0.10 2.03 0.01 0.00 ind:fut:3s; +dépiautèrent dépiauter VER 0.10 2.03 0.00 0.07 ind:pas:3p; +dépiauté dépiauter VER m s 0.10 2.03 0.00 0.34 par:pas; +dépiautés dépiauter VER m p 0.10 2.03 0.01 0.14 par:pas; +dépieute dépieuter VER 0.01 0.07 0.01 0.07 ind:pre:1s;ind:pre:3s; +dépigmentation dépigmentation NOM f s 0.01 0.07 0.01 0.07 +dépigmenté dépigmenter VER m s 0.01 0.14 0.00 0.07 par:pas; +dépigmentés dépigmenter VER m p 0.01 0.14 0.01 0.07 par:pas; +dépilatoire dépilatoire ADJ s 0.04 0.07 0.04 0.07 +dépiler dépiler VER 0.00 0.07 0.00 0.07 inf; +dépiquage dépiquage NOM m s 0.00 0.20 0.00 0.20 +dépique dépiquer VER 0.00 0.27 0.00 0.14 ind:pre:3s; +dépiquer dépiquer VER 0.00 0.27 0.00 0.07 inf; +dépiqués dépiquer VER m p 0.00 0.27 0.00 0.07 par:pas; +dépistage dépistage NOM m s 0.76 0.47 0.75 0.34 +dépistages dépistage NOM m p 0.76 0.47 0.01 0.14 +dépistait dépister VER 0.20 1.15 0.00 0.20 ind:imp:3s; +dépistant dépister VER 0.20 1.15 0.00 0.07 par:pre; +dépiste dépister VER 0.20 1.15 0.02 0.20 ind:pre:3s; +dépister dépister VER 0.20 1.15 0.14 0.54 inf; +dépisté dépister VER m s 0.20 1.15 0.04 0.14 par:pas; +dépit dépit NOM m s 5.82 44.12 5.82 44.12 +dépita dépiter VER 0.12 1.15 0.00 0.20 ind:pas:3s; +dépitait dépiter VER 0.12 1.15 0.00 0.14 ind:imp:3s; +dépiter dépiter VER 0.12 1.15 0.10 0.00 inf; +dépité dépité ADJ m s 0.05 1.62 0.05 0.95 +dépitée dépiter VER f s 0.12 1.15 0.01 0.41 par:pas; +dépités dépité ADJ m p 0.05 1.62 0.00 0.20 +déplût déplaire VER 12.23 20.61 0.00 0.14 sub:imp:3s; +déplaît déplaire VER 12.23 20.61 5.08 4.32 ind:pre:3s; +déplace déplacer VER 38.63 46.82 7.79 6.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déplacement déplacement NOM m s 5.03 11.49 3.38 6.15 +déplacements déplacement NOM m p 5.03 11.49 1.64 5.34 +déplacent déplacer VER 38.63 46.82 2.30 2.30 ind:pre:3p; +déplacer déplacer VER 38.63 46.82 13.40 11.08 inf;; +déplacera déplacer VER 38.63 46.82 0.22 0.20 ind:fut:3s; +déplacerai déplacer VER 38.63 46.82 0.39 0.00 ind:fut:1s; +déplaceraient déplacer VER 38.63 46.82 0.00 0.27 cnd:pre:3p; +déplacerait déplacer VER 38.63 46.82 0.03 0.20 cnd:pre:3s; +déplaceras déplacer VER 38.63 46.82 0.02 0.00 ind:fut:2s; +déplacerez déplacer VER 38.63 46.82 0.03 0.00 ind:fut:2p; +déplacerons déplacer VER 38.63 46.82 0.13 0.07 ind:fut:1p; +déplaceront déplacer VER 38.63 46.82 0.03 0.00 ind:fut:3p; +déplaces déplacer VER 38.63 46.82 0.68 0.07 ind:pre:2s; +déplacez déplacer VER 38.63 46.82 1.69 0.07 imp:pre:2p;ind:pre:2p; +déplaciez déplacer VER 38.63 46.82 0.07 0.07 ind:imp:2p; +déplacions déplacer VER 38.63 46.82 0.00 0.20 ind:imp:1p; +déplacèrent déplacer VER 38.63 46.82 0.01 0.61 ind:pas:3p; +déplacé déplacer VER m s 38.63 46.82 5.99 3.99 par:pas; +déplacée déplacer VER f s 38.63 46.82 1.46 1.76 par:pas; +déplacées déplacé ADJ f p 2.87 3.92 0.40 0.54 +déplacés déplacer VER m p 38.63 46.82 1.40 0.88 par:pas; +déplaira déplaire VER 12.23 20.61 0.27 0.07 ind:fut:3s; +déplairaient déplaire VER 12.23 20.61 0.03 0.00 cnd:pre:3p; +déplairait déplaire VER 12.23 20.61 0.79 0.68 cnd:pre:3s; +déplaire déplaire VER 12.23 20.61 1.52 4.26 inf; +déplairont déplaire VER 12.23 20.61 0.14 0.00 ind:fut:3p; +déplais déplaire VER 12.23 20.61 0.74 0.14 ind:pre:1s;ind:pre:2s; +déplaisaient déplaire VER 12.23 20.61 0.10 0.68 ind:imp:3p; +déplaisais déplaire VER 12.23 20.61 0.02 0.20 ind:imp:1s; +déplaisait déplaire VER 12.23 20.61 0.34 4.86 ind:imp:3s; +déplaisant déplaisant ADJ m s 3.34 5.47 1.81 2.50 +déplaisante déplaisant ADJ f s 3.34 5.47 1.00 2.09 +déplaisantes déplaisant ADJ f p 3.34 5.47 0.37 0.54 +déplaisants déplaisant ADJ m p 3.34 5.47 0.16 0.34 +déplaise déplaire VER 12.23 20.61 0.88 0.68 sub:pre:1s;sub:pre:3s; +déplaisent déplaire VER 12.23 20.61 0.86 0.41 ind:pre:3p; +déplaisez déplaire VER 12.23 20.61 0.05 0.00 ind:pre:2p; +déplaisiez déplaire VER 12.23 20.61 0.10 0.07 ind:imp:2p; +déplaisir déplaisir NOM m s 1.29 1.96 1.03 1.82 +déplaisirs déplaisir NOM m p 1.29 1.96 0.27 0.14 +déplanque déplanquer VER 0.00 0.14 0.00 0.14 ind:pre:3s; +déplantoir déplantoir NOM m s 0.04 0.00 0.04 0.00 +déplantèrent déplanter VER 0.00 0.07 0.00 0.07 ind:pas:3p; +déplaça déplacer VER 38.63 46.82 0.14 3.04 ind:pas:3s; +déplaçai déplacer VER 38.63 46.82 0.00 0.41 ind:pas:1s; +déplaçaient déplacer VER 38.63 46.82 0.11 2.64 ind:imp:3p; +déplaçais déplacer VER 38.63 46.82 0.30 0.27 ind:imp:1s;ind:imp:2s; +déplaçait déplacer VER 38.63 46.82 1.01 7.23 ind:imp:3s; +déplaçant déplacer VER 38.63 46.82 0.77 4.59 par:pre; +déplaçons déplacer VER 38.63 46.82 0.44 0.20 imp:pre:1p;ind:pre:1p; +déplaçât déplacer VER 38.63 46.82 0.00 0.14 sub:imp:3s; +duplex duplex NOM m 0.41 1.35 0.41 1.35 +déplia déplier VER 0.89 19.46 0.00 4.12 ind:pas:3s; +dépliable dépliable ADJ m s 0.00 0.07 0.00 0.07 +dépliai déplier VER 0.89 19.46 0.00 0.68 ind:pas:1s; +dépliaient déplier VER 0.89 19.46 0.00 0.54 ind:imp:3p; +dépliais déplier VER 0.89 19.46 0.00 0.14 ind:imp:1s; +dépliait déplier VER 0.89 19.46 0.20 2.09 ind:imp:3s; +dépliant dépliant NOM m s 0.47 1.69 0.36 1.15 +dépliante dépliant ADJ f s 0.04 0.34 0.02 0.14 +dépliants dépliant NOM m p 0.47 1.69 0.11 0.54 +duplicata duplicata NOM m 0.08 0.41 0.08 0.41 +duplicate duplicate NOM m s 0.03 0.00 0.03 0.00 +duplicateur duplicateur NOM m s 0.23 0.14 0.03 0.14 +duplicateurs duplicateur NOM m p 0.23 0.14 0.21 0.00 +duplication duplication NOM f s 0.19 0.47 0.19 0.47 +duplice duplice NOM f s 0.01 0.14 0.01 0.14 +duplicité duplicité NOM f s 0.30 1.28 0.30 1.28 +déplie déplier VER 0.89 19.46 0.27 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépliement dépliement NOM m s 0.00 0.14 0.00 0.14 +déplient déplier VER 0.89 19.46 0.00 0.61 ind:pre:3p; +déplier déplier VER 0.89 19.46 0.16 2.43 inf; +déplies déplier VER 0.89 19.46 0.01 0.07 ind:pre:2s; +dépliâmes déplier VER 0.89 19.46 0.00 0.14 ind:pas:1p; +déplions déplier VER 0.89 19.46 0.00 0.14 imp:pre:1p;ind:pre:1p; +dupliquer dupliquer VER 0.31 0.00 0.13 0.00 inf; +dupliqué dupliquer VER m s 0.31 0.00 0.13 0.00 par:pas; +dupliqués dupliquer VER m p 0.31 0.00 0.05 0.00 par:pas; +déplissa déplisser VER 0.01 0.68 0.00 0.07 ind:pas:3s; +déplissaient déplisser VER 0.01 0.68 0.00 0.14 ind:imp:3p; +déplissait déplisser VER 0.01 0.68 0.00 0.27 ind:imp:3s; +déplisse déplisser VER 0.01 0.68 0.00 0.07 ind:pre:3s; +déplissent déplisser VER 0.01 0.68 0.00 0.07 ind:pre:3p; +déplisser déplisser VER 0.01 0.68 0.01 0.07 inf; +déplièrent déplier VER 0.89 19.46 0.00 0.27 ind:pas:3p; +déplié déplier VER m s 0.89 19.46 0.06 3.31 par:pas; +dépliée déplier VER f s 0.89 19.46 0.00 1.08 par:pas; +dépliées déplier VER f p 0.89 19.46 0.03 0.34 par:pas; +dépliés déplier VER m p 0.89 19.46 0.01 0.47 par:pas; +déploie déployer VER 7.09 30.27 0.94 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déploiement déploiement NOM m s 1.25 3.04 1.20 2.43 +déploiements déploiement NOM m p 1.25 3.04 0.05 0.61 +déploient déployer VER 7.09 30.27 0.34 1.42 ind:pre:3p; +déploiera déployer VER 7.09 30.27 0.04 0.14 ind:fut:3s; +déploierai déployer VER 7.09 30.27 0.00 0.14 ind:fut:1s; +déploieraient déployer VER 7.09 30.27 0.00 0.07 cnd:pre:3p; +déploierait déployer VER 7.09 30.27 0.00 0.07 cnd:pre:3s; +déploieras déployer VER 7.09 30.27 0.00 0.07 ind:fut:2s; +déploierez déployer VER 7.09 30.27 0.03 0.00 ind:fut:2p; +déploierons déployer VER 7.09 30.27 0.02 0.14 ind:fut:1p; +déploieront déployer VER 7.09 30.27 0.02 0.14 ind:fut:3p; +déploies déployer VER 7.09 30.27 0.05 0.00 ind:pre:2s; +déplombé déplomber VER m s 0.00 0.07 0.00 0.07 par:pas; +déplora déplorer VER 2.53 8.04 0.01 0.41 ind:pas:3s; +déplorable déplorable ADJ s 1.52 5.14 1.29 3.99 +déplorablement déplorablement ADV 0.01 0.41 0.01 0.41 +déplorables déplorable ADJ p 1.52 5.14 0.23 1.15 +déplorai déplorer VER 2.53 8.04 0.00 0.20 ind:pas:1s; +déploraient déplorer VER 2.53 8.04 0.00 0.20 ind:imp:3p; +déplorais déplorer VER 2.53 8.04 0.01 0.34 ind:imp:1s; +déplorait déplorer VER 2.53 8.04 0.01 1.35 ind:imp:3s; +déplorant déplorer VER 2.53 8.04 0.01 0.74 par:pre; +déploration déploration NOM f s 0.00 0.20 0.00 0.20 +déplore déplorer VER 2.53 8.04 1.61 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déplorent déplorer VER 2.53 8.04 0.27 0.27 ind:pre:3p; +déplorer déplorer VER 2.53 8.04 0.17 1.49 inf; +déplorerais déplorer VER 2.53 8.04 0.02 0.27 cnd:pre:1s; +déplorerait déplorer VER 2.53 8.04 0.01 0.07 cnd:pre:3s; +déplorerons déplorer VER 2.53 8.04 0.00 0.07 ind:fut:1p; +déplorez déplorer VER 2.53 8.04 0.01 0.14 imp:pre:2p;ind:pre:2p; +déplorions déplorer VER 2.53 8.04 0.00 0.07 ind:imp:1p; +déplorons déplorer VER 2.53 8.04 0.27 0.07 ind:pre:1p; +déplorèrent déplorer VER 2.53 8.04 0.00 0.07 ind:pas:3p; +déploré déplorer VER m s 2.53 8.04 0.13 0.47 par:pas; +déplorée déplorer VER f s 2.53 8.04 0.00 0.07 par:pas; +déplorés déplorer VER m p 2.53 8.04 0.00 0.07 par:pas; +déplâtré déplâtrer VER m s 0.01 0.07 0.01 0.07 par:pas; +déploya déployer VER 7.09 30.27 0.03 1.69 ind:pas:3s; +déployaient déployer VER 7.09 30.27 0.01 2.03 ind:imp:3p; +déployais déployer VER 7.09 30.27 0.00 0.07 ind:imp:1s; +déployait déployer VER 7.09 30.27 0.13 3.78 ind:imp:3s; +déployant déployer VER 7.09 30.27 0.20 1.69 par:pre; +déployasse déployer VER 7.09 30.27 0.00 0.07 sub:imp:1s; +déployer déployer VER 7.09 30.27 1.81 6.01 inf; +déployez déployer VER 7.09 30.27 1.67 0.07 imp:pre:2p;ind:pre:2p; +déployions déployer VER 7.09 30.27 0.00 0.14 ind:imp:1p; +déployons déployer VER 7.09 30.27 0.08 0.14 imp:pre:1p;ind:pre:1p; +déployât déployer VER 7.09 30.27 0.00 0.07 sub:imp:3s; +déployèrent déployer VER 7.09 30.27 0.01 0.27 ind:pas:3p; +déployé déployer VER m s 7.09 30.27 0.94 2.77 par:pas; +déployée déployer VER f s 7.09 30.27 0.24 2.03 par:pas; +déployées déployé ADJ f p 0.80 5.41 0.32 1.49 +déployés déployer VER m p 7.09 30.27 0.33 1.55 par:pas; +déplu déplaire VER m s 12.23 20.61 1.23 2.50 par:pas; +déplumait déplumer VER 0.17 0.47 0.00 0.07 ind:imp:3s; +déplume déplumer VER 0.17 0.47 0.11 0.07 ind:pre:1s;ind:pre:3s; +déplumer déplumer VER 0.17 0.47 0.02 0.07 inf; +déplumé déplumé ADJ m s 0.33 1.55 0.16 1.15 +déplumée déplumé ADJ f s 0.33 1.55 0.16 0.00 +déplumés déplumé ADJ m p 0.33 1.55 0.02 0.41 +déplurent déplaire VER 12.23 20.61 0.00 0.20 ind:pas:3p; +déplut déplaire VER 12.23 20.61 0.01 1.01 ind:pas:3s; +dépoile dépoiler VER 0.06 0.34 0.03 0.00 ind:pre:1s; +dépoiler dépoiler VER 0.06 0.34 0.03 0.00 inf; +dépoilé dépoiler VER m s 0.06 0.34 0.00 0.14 par:pas; +dépoilée dépoiler VER f s 0.06 0.34 0.00 0.07 par:pas; +dépoilées dépoiler VER f p 0.06 0.34 0.00 0.14 par:pas; +dépointées dépointer VER f p 0.00 0.07 0.00 0.07 par:pas; +dépoitraillé dépoitraillé ADJ m s 0.02 0.68 0.02 0.27 +dépoitraillée dépoitraillé ADJ f s 0.02 0.68 0.00 0.20 +dépoitraillées dépoitraillé ADJ f p 0.02 0.68 0.00 0.07 +dépoitraillés dépoitraillé ADJ m p 0.02 0.68 0.00 0.14 +dépoli dépoli ADJ m s 0.01 2.30 0.01 1.15 +dépolie dépoli ADJ f s 0.01 2.30 0.00 0.34 +dépolies dépoli ADJ f p 0.01 2.30 0.00 0.47 +dépolis dépoli ADJ m p 0.01 2.30 0.00 0.34 +dépolissait dépolir VER 0.01 0.95 0.00 0.07 ind:imp:3s; +dépolit dépolir VER 0.01 0.95 0.01 0.07 ind:pre:3s; +dépolitisant dépolitiser VER 0.10 0.07 0.00 0.07 par:pre; +dépolitisé dépolitiser VER m s 0.10 0.07 0.10 0.00 par:pas; +dépolluer dépolluer VER 0.04 0.00 0.04 0.00 inf; +dépollution dépollution NOM f s 0.03 0.00 0.03 0.00 +dupons duper VER 4.77 2.70 0.01 0.07 ind:pre:1p; +dépopulation dépopulation NOM f s 0.00 0.07 0.00 0.07 +déport déport NOM m s 0.00 0.14 0.00 0.14 +déporta déporter VER 2.75 4.26 0.00 0.20 ind:pas:3s; +déportaient déporter VER 2.75 4.26 0.01 0.07 ind:imp:3p; +déportais déporter VER 2.75 4.26 0.01 0.07 ind:imp:1s; +déportait déporter VER 2.75 4.26 0.00 0.14 ind:imp:3s; +déportant déporter VER 2.75 4.26 0.01 0.07 par:pre; +déportation déportation NOM f s 1.58 2.23 1.52 2.03 +déportations déportation NOM f p 1.58 2.23 0.06 0.20 +déporte déporter VER 2.75 4.26 0.36 0.14 ind:pre:1s;ind:pre:3s; +déportements déportement NOM m p 0.27 0.07 0.27 0.07 +déporter déporter VER 2.75 4.26 0.95 0.61 inf; +déporteront déporter VER 2.75 4.26 0.02 0.00 ind:fut:3p; +déportez déporter VER 2.75 4.26 0.01 0.00 imp:pre:2p; +déporté déporter VER m s 2.75 4.26 0.91 1.49 par:pas; +déportée déporter VER f s 2.75 4.26 0.08 0.61 par:pas; +déportées déporter VER f p 2.75 4.26 0.01 0.07 par:pas; +déportés déporté NOM m p 2.38 5.74 2.14 4.66 +déposa déposer VER 53.09 62.70 0.19 10.20 ind:pas:3s; +déposai déposer VER 53.09 62.70 0.14 1.08 ind:pas:1s; +déposaient déposer VER 53.09 62.70 0.01 1.42 ind:imp:3p; +déposais déposer VER 53.09 62.70 0.53 0.61 ind:imp:1s;ind:imp:2s; +déposait déposer VER 53.09 62.70 0.32 4.05 ind:imp:3s; +déposant déposer VER 53.09 62.70 0.33 1.55 par:pre; +dépose déposer VER 53.09 62.70 16.14 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déposent déposer VER 53.09 62.70 0.48 0.81 ind:pre:3p; +déposer déposer VER 53.09 62.70 15.03 13.24 ind:pre:2p;inf; +déposera déposer VER 53.09 62.70 0.44 0.68 ind:fut:3s; +déposerai déposer VER 53.09 62.70 0.60 0.14 ind:fut:1s; +déposeraient déposer VER 53.09 62.70 0.00 0.14 cnd:pre:3p; +déposerais déposer VER 53.09 62.70 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +déposerait déposer VER 53.09 62.70 0.06 0.34 cnd:pre:3s; +déposeras déposer VER 53.09 62.70 0.18 0.20 ind:fut:2s; +déposerez déposer VER 53.09 62.70 0.28 0.07 ind:fut:2p; +déposerions déposer VER 53.09 62.70 0.00 0.07 cnd:pre:1p; +déposerons déposer VER 53.09 62.70 0.05 0.07 ind:fut:1p; +déposeront déposer VER 53.09 62.70 0.32 0.14 ind:fut:3p; +déposes déposer VER 53.09 62.70 1.09 0.20 ind:pre:2s; +déposez déposer VER 53.09 62.70 4.06 0.54 imp:pre:2p;ind:pre:2p; +déposiez déposer VER 53.09 62.70 0.02 0.00 ind:imp:2p; +déposions déposer VER 53.09 62.70 0.04 0.14 ind:imp:1p; +dépositaire dépositaire NOM s 0.36 2.36 0.23 1.96 +dépositaires dépositaire NOM p 0.36 2.36 0.14 0.41 +déposition déposition NOM f s 11.25 2.43 9.66 1.82 +dépositions déposition NOM f p 11.25 2.43 1.59 0.61 +déposâmes déposer VER 53.09 62.70 0.01 0.20 ind:pas:1p; +déposons déposer VER 53.09 62.70 0.10 0.20 imp:pre:1p;ind:pre:1p; +déposât déposer VER 53.09 62.70 0.00 0.07 sub:imp:3s; +dépossession dépossession NOM f s 0.00 1.22 0.00 1.22 +dépossède déposséder VER 0.83 2.97 0.02 0.00 ind:pre:1s;ind:pre:3s; +dépossédais déposséder VER 0.83 2.97 0.00 0.07 ind:imp:1s; +dépossédait déposséder VER 0.83 2.97 0.00 0.14 ind:imp:3s; +déposséder déposséder VER 0.83 2.97 0.08 0.61 inf; +dépossédé déposséder VER m s 0.83 2.97 0.21 1.28 par:pas; +dépossédée déposséder VER f s 0.83 2.97 0.31 0.27 par:pas; +dépossédées déposséder VER f p 0.83 2.97 0.00 0.20 par:pas; +dépossédés déposséder VER m p 0.83 2.97 0.21 0.41 par:pas; +déposèrent déposer VER 53.09 62.70 0.04 0.88 ind:pas:3p; +déposé déposer VER m s 53.09 62.70 8.73 10.34 par:pas; +déposée déposer VER f s 53.09 62.70 2.34 3.58 par:pas; +déposées déposer VER f p 53.09 62.70 0.60 1.35 par:pas; +déposés déposer VER m p 53.09 62.70 0.81 2.36 par:pas; +dépote dépoter VER 0.23 0.27 0.15 0.14 imp:pre:2s;ind:pre:3s; +dépotent dépoter VER 0.23 0.27 0.00 0.07 ind:pre:3p; +dépoter dépoter VER 0.23 0.27 0.07 0.00 inf; +dépotoir dépotoir NOM m s 1.22 1.82 1.22 1.82 +dépoté dépoter VER m s 0.23 0.27 0.01 0.07 par:pas; +dépoudrer dépoudrer VER 0.01 0.00 0.01 0.00 inf; +dépouilla dépouiller VER 4.54 20.54 0.03 0.68 ind:pas:3s; +dépouillage dépouillage NOM m s 0.01 0.00 0.01 0.00 +dépouillaient dépouiller VER 4.54 20.54 0.02 0.95 ind:imp:3p; +dépouillais dépouiller VER 4.54 20.54 0.00 0.20 ind:imp:1s; +dépouillait dépouiller VER 4.54 20.54 0.03 1.15 ind:imp:3s; +dépouillant dépouiller VER 4.54 20.54 0.01 0.61 par:pre; +dépouille dépouille NOM f s 1.94 6.62 1.69 5.00 +dépouillement dépouillement NOM m s 0.17 2.64 0.17 2.50 +dépouillements dépouillement NOM m p 0.17 2.64 0.00 0.14 +dépouillent dépouiller VER 4.54 20.54 0.08 0.47 ind:pre:3p; +dépouiller dépouiller VER 4.54 20.54 2.07 5.14 inf; +dépouillera dépouiller VER 4.54 20.54 0.01 0.00 ind:fut:3s; +dépouillerais dépouiller VER 4.54 20.54 0.01 0.00 cnd:pre:1s; +dépouillerait dépouiller VER 4.54 20.54 0.00 0.07 cnd:pre:3s; +dépouillerez dépouiller VER 4.54 20.54 0.01 0.00 ind:fut:2p; +dépouilles dépouille NOM f p 1.94 6.62 0.25 1.62 +dépouillez dépouiller VER 4.54 20.54 0.05 0.00 imp:pre:2p;ind:pre:2p; +dépouillons dépouiller VER 4.54 20.54 0.02 0.07 imp:pre:1p; +dépouillât dépouiller VER 4.54 20.54 0.00 0.07 sub:imp:3s; +dépouillèrent dépouiller VER 4.54 20.54 0.14 0.14 ind:pas:3p; +dépouillé dépouiller VER m s 4.54 20.54 0.90 4.59 par:pas; +dépouillée dépouiller VER f s 4.54 20.54 0.31 2.43 par:pas; +dépouillées dépouiller VER f p 4.54 20.54 0.01 0.41 par:pas; +dépouillés dépouillé ADJ m p 0.94 3.04 0.66 0.61 +dépourvu dépourvu ADJ m s 1.10 4.32 1.00 2.03 +dépourvue dépourvoir VER f s 1.71 12.36 0.73 4.12 par:pas; +dépourvues dépourvoir VER f p 1.71 12.36 0.12 1.22 par:pas; +dépourvus dépourvu ADJ m p 1.10 4.32 0.09 1.82 +dépoussière dépoussiérer VER 0.78 0.27 0.02 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépoussiérage dépoussiérage NOM m s 0.01 0.07 0.01 0.07 +dépoussiéraient dépoussiérer VER 0.78 0.27 0.00 0.07 ind:imp:3p; +dépoussiérant dépoussiérer VER 0.78 0.27 0.14 0.00 par:pre; +dépoussiérer dépoussiérer VER 0.78 0.27 0.45 0.14 inf; +dépoussiérez dépoussiérer VER 0.78 0.27 0.03 0.00 imp:pre:2p; +dépoussiéré dépoussiérer VER m s 0.78 0.27 0.14 0.00 par:pas; +dépoétisent dépoétiser VER 0.00 0.07 0.00 0.07 ind:pre:3p; +dépravation dépravation NOM f s 0.61 0.95 0.56 0.61 +dépravations dépravation NOM f p 0.61 0.95 0.05 0.34 +dépraver dépraver VER 0.48 0.14 0.06 0.00 inf; +dépravons dépraver VER 0.48 0.14 0.01 0.00 ind:pre:1p; +dépravé dépravé NOM m s 1.07 0.47 0.63 0.34 +dépravée dépravé ADJ f s 1.24 0.68 0.30 0.00 +dépravées dépravé ADJ f p 1.24 0.68 0.32 0.07 +dépravés dépravé NOM m p 1.07 0.47 0.29 0.07 +déprenais déprendre VER 0.01 2.03 0.00 0.14 ind:imp:1s; +déprenait déprendre VER 0.01 2.03 0.00 0.07 ind:imp:3s; +déprend déprendre VER 0.01 2.03 0.01 0.07 ind:pre:3s; +déprendre déprendre VER 0.01 2.03 0.00 0.74 inf; +déprendront déprendre VER 0.01 2.03 0.00 0.07 ind:fut:3p; +dépressif dépressif ADJ m s 1.83 0.74 1.11 0.34 +dépressifs dépressif ADJ m p 1.83 0.74 0.17 0.14 +dépression dépression NOM f s 10.41 8.38 10.10 7.36 +dépressionnaire dépressionnaire ADJ m s 0.03 0.07 0.03 0.07 +dépressions dépression NOM f p 10.41 8.38 0.32 1.01 +dépressive dépressif ADJ f s 1.83 0.74 0.49 0.20 +dépressives dépressif ADJ f p 1.83 0.74 0.05 0.07 +dépressurisait dépressuriser VER 0.33 0.00 0.01 0.00 ind:imp:3s; +dépressurisation dépressurisation NOM f s 0.36 0.14 0.36 0.14 +dépressurise dépressuriser VER 0.33 0.00 0.03 0.00 ind:pre:3s; +dépressuriser dépressuriser VER 0.33 0.00 0.14 0.00 inf; +dépressurisé dépressuriser VER m s 0.33 0.00 0.10 0.00 par:pas; +dépressurisés dépressuriser VER m p 0.33 0.00 0.05 0.00 par:pas; +déprima déprimer VER 10.61 3.85 0.01 0.14 ind:pas:3s; +déprimais déprimer VER 10.61 3.85 0.06 0.00 ind:imp:1s;ind:imp:2s; +déprimait déprimer VER 10.61 3.85 0.21 0.34 ind:imp:3s; +déprimant déprimant ADJ m s 3.83 3.31 2.85 1.49 +déprimante déprimant ADJ f s 3.83 3.31 0.62 1.28 +déprimantes déprimant ADJ f p 3.83 3.31 0.25 0.20 +déprimants déprimant ADJ m p 3.83 3.31 0.11 0.34 +déprime déprimer VER 10.61 3.85 3.61 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépriment déprimer VER 10.61 3.85 0.28 0.07 ind:pre:3p; +déprimer déprimer VER 10.61 3.85 1.05 0.54 inf; +déprimerais déprimer VER 10.61 3.85 0.10 0.00 cnd:pre:2s; +déprimerait déprimer VER 10.61 3.85 0.25 0.00 cnd:pre:3s; +déprimes déprimer VER 10.61 3.85 0.75 0.07 ind:pre:2s; +déprimez déprimer VER 10.61 3.85 0.04 0.00 ind:pre:2p; +déprimé déprimer VER m s 10.61 3.85 2.50 0.61 par:pas; +déprimée déprimer VER f s 10.61 3.85 1.43 0.41 par:pas; +déprimées déprimer VER f p 10.61 3.85 0.12 0.00 par:pas; +déprimés déprimé ADJ m p 3.29 1.62 0.16 0.27 +déprirent déprendre VER 0.01 2.03 0.00 0.14 ind:pas:3p; +dépris déprendre VER m 0.01 2.03 0.00 0.74 ind:pas:1s;par:pas;par:pas; +déprit déprendre VER 0.01 2.03 0.00 0.07 ind:pas:3s; +déprogrammation déprogrammation NOM f s 0.07 0.00 0.07 0.00 +déprogrammer déprogrammer VER 0.37 0.07 0.21 0.00 inf; +déprogrammez déprogrammer VER 0.37 0.07 0.01 0.00 imp:pre:2p; +déprogrammé déprogrammer VER m s 0.37 0.07 0.07 0.07 par:pas; +déprogrammée déprogrammer VER f s 0.37 0.07 0.07 0.00 par:pas; +dépréciait déprécier VER 0.69 1.28 0.10 0.14 ind:imp:3s; +dépréciant déprécier VER 0.69 1.28 0.02 0.00 par:pre; +dépréciation dépréciation NOM f s 0.05 0.41 0.05 0.41 +déprécie déprécier VER 0.69 1.28 0.21 0.07 imp:pre:2s;ind:pre:3s; +déprécier déprécier VER 0.69 1.28 0.15 0.61 inf; +déprécies déprécier VER 0.69 1.28 0.01 0.07 ind:pre:2s; +dépréciez déprécier VER 0.69 1.28 0.00 0.07 ind:pre:2p; +dépréciiez déprécier VER 0.69 1.28 0.00 0.07 ind:imp:2p; +déprécié déprécier VER m s 0.69 1.28 0.19 0.14 par:pas; +dépréciée déprécier VER f s 0.69 1.28 0.01 0.14 par:pas; +déprédateur déprédateur ADJ m s 0.00 0.07 0.00 0.07 +déprédateurs déprédateur NOM m p 0.00 0.14 0.00 0.14 +déprédation déprédation NOM f s 0.01 0.41 0.00 0.07 +déprédations déprédation NOM f p 0.01 0.41 0.01 0.34 +dépèce dépecer VER 1.18 2.57 0.29 0.27 imp:pre:2s;ind:pre:3s; +dépècements dépècement NOM m p 0.00 0.07 0.00 0.07 +dépècent dépecer VER 1.18 2.57 0.02 0.14 ind:pre:3p; +dépècera dépecer VER 1.18 2.57 0.00 0.07 ind:fut:3s; +dépècerai dépecer VER 1.18 2.57 0.13 0.00 ind:fut:1s; +dépèceraient dépecer VER 1.18 2.57 0.00 0.07 cnd:pre:3p; +dupé duper VER m s 4.77 2.70 1.15 0.34 par:pas; +dépucela dépuceler VER 1.38 1.01 0.00 0.07 ind:pas:3s; +dépucelage dépucelage NOM m s 0.41 0.41 0.41 0.34 +dépucelages dépucelage NOM m p 0.41 0.41 0.00 0.07 +dépuceler dépuceler VER 1.38 1.01 0.55 0.34 inf; +dépuceleur dépuceleur NOM m s 0.02 0.07 0.01 0.00 +dépuceleurs dépuceleur NOM m p 0.02 0.07 0.01 0.07 +dépucelle dépuceler VER 1.38 1.01 0.17 0.07 ind:pre:1s;ind:pre:3s; +dépucellera dépuceler VER 1.38 1.01 0.00 0.07 ind:fut:3s; +dépucelons dépuceler VER 1.38 1.01 0.03 0.00 imp:pre:1p; +dépucelé dépuceler VER m s 1.38 1.01 0.39 0.27 par:pas; +dépucelée dépuceler VER f s 1.38 1.01 0.25 0.20 par:pas; +dépêcha dépêcher VER 111.44 22.84 0.00 1.55 ind:pas:3s; +dépêchai dépêcher VER 111.44 22.84 0.01 0.14 ind:pas:1s; +dépêchaient dépêcher VER 111.44 22.84 0.00 0.27 ind:imp:3p; +dépêchais dépêcher VER 111.44 22.84 0.03 0.07 ind:imp:1s;ind:imp:2s; +dépêchait dépêcher VER 111.44 22.84 0.05 1.15 ind:imp:3s; +dépêchant dépêcher VER 111.44 22.84 0.08 0.41 par:pre; +dépêche dépêcher VER 111.44 22.84 55.90 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dépêchent dépêcher VER 111.44 22.84 0.35 0.47 ind:pre:3p; +dépêcher dépêcher VER 111.44 22.84 7.52 3.65 inf; +dépêcherais dépêcher VER 111.44 22.84 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +dépêcherons dépêcher VER 111.44 22.84 0.00 0.07 ind:fut:1p; +dépêches dépêcher VER 111.44 22.84 0.96 0.20 ind:pre:2s;sub:pre:2s; +dépêchez dépêcher VER 111.44 22.84 35.35 2.77 imp:pre:2p;ind:pre:2p; +dépêchions dépêcher VER 111.44 22.84 0.01 0.07 ind:imp:1p; +dépêchons dépêcher VER 111.44 22.84 10.21 1.55 imp:pre:1p;ind:pre:1p; +dépêchât dépêcher VER 111.44 22.84 0.00 0.07 sub:imp:3s; +dépêchèrent dépêcher VER 111.44 22.84 0.00 0.14 ind:pas:3p; +dépêché dépêcher VER m s 111.44 22.84 0.27 1.55 par:pas; +dépêchée dépêcher VER f s 111.44 22.84 0.40 0.47 par:pas; +dépêchées dépêcher VER f p 111.44 22.84 0.11 0.07 par:pas; +dépêchés dépêcher VER m p 111.44 22.84 0.04 0.61 par:pas; +dupée duper VER f s 4.77 2.70 0.18 0.34 par:pas; +dépulpé dépulper VER m s 0.00 0.07 0.00 0.07 par:pas; +dépénaliser dépénaliser VER 0.01 0.00 0.01 0.00 inf; +dépuratifs dépuratif ADJ m p 0.00 0.07 0.00 0.07 +dépuratifs dépuratif NOM m p 0.00 0.07 0.00 0.07 +dépéri dépérir VER m s 1.73 1.89 0.36 0.07 par:pas; +dépérir dépérir VER 1.73 1.89 0.41 0.74 inf; +dépérira dépérir VER 1.73 1.89 0.02 0.00 ind:fut:3s; +dépériraient dépérir VER 1.73 1.89 0.00 0.07 cnd:pre:3p; +dépérirait dépérir VER 1.73 1.89 0.01 0.00 cnd:pre:3s; +dépériront dépérir VER 1.73 1.89 0.01 0.07 ind:fut:3p; +dépéris dépérir VER 1.73 1.89 0.06 0.07 ind:pre:1s;ind:pre:2s; +dépérissaient dépérir VER 1.73 1.89 0.00 0.07 ind:imp:3p; +dépérissais dépérir VER 1.73 1.89 0.01 0.14 ind:imp:1s;ind:imp:2s; +dépérissait dépérir VER 1.73 1.89 0.02 0.27 ind:imp:3s; +dépérisse dépérir VER 1.73 1.89 0.02 0.07 sub:pre:3s; +dépérissement dépérissement NOM m s 0.00 0.34 0.00 0.34 +dépérissent dépérir VER 1.73 1.89 0.08 0.00 ind:pre:3p; +dépérit dépérir VER 1.73 1.89 0.73 0.34 ind:pre:3s;ind:pas:3s; +dépurés dépurer VER m p 0.00 0.07 0.00 0.07 par:pas; +dupés duper VER m p 4.77 2.70 0.81 0.07 par:pas; +députation députation NOM f s 0.00 0.34 0.00 0.20 +députations députation NOM f p 0.00 0.34 0.00 0.14 +députer députer VER 0.19 0.07 0.01 0.00 inf; +dépêtrer dépêtrer VER 0.13 1.01 0.13 0.81 inf; +dépêtré dépêtrer VER m s 0.13 1.01 0.00 0.07 par:pas; +dépêtrée dépêtrer VER f s 0.13 1.01 0.00 0.07 par:pas; +dépêtrés dépêtrer VER m p 0.13 1.01 0.00 0.07 par:pas; +députèrent députer VER 0.19 0.07 0.00 0.07 ind:pas:3p; +député_maire député_maire NOM m s 0.00 0.34 0.00 0.34 +député député NOM m s 10.40 10.88 7.40 6.42 +députée député NOM f s 10.40 10.88 0.42 0.00 +députés député NOM m p 10.40 10.88 2.59 4.46 +déqualifier déqualifier VER 0.01 0.00 0.01 0.00 inf; +duquel duquel PRO:rel m s 2.36 30.20 1.92 22.57 +déquiller déquiller VER 0.00 0.27 0.00 0.14 inf; +déquillé déquiller VER m s 0.00 0.27 0.00 0.07 par:pas; +déquillés déquiller VER m p 0.00 0.27 0.00 0.07 par:pas; +dur dur ADJ m s 187.84 146.69 145.55 80.68 +dura durer VER 74.39 101.62 1.56 12.70 ind:pas:3s; +durabilité durabilité NOM f s 0.01 0.00 0.01 0.00 +durable durable ADJ s 2.13 5.95 1.61 4.73 +durablement durablement ADV 0.00 0.74 0.00 0.74 +durables durable ADJ p 2.13 5.95 0.53 1.22 +déracina déraciner VER 0.85 2.23 0.01 0.07 ind:pas:3s; +déracinaient déraciner VER 0.85 2.23 0.01 0.00 ind:imp:3p; +déracinais déraciner VER 0.85 2.23 0.00 0.07 ind:imp:1s; +déracinait déraciner VER 0.85 2.23 0.00 0.20 ind:imp:3s; +déracinant déracinant ADJ m s 0.00 0.14 0.00 0.14 +déracine déraciner VER 0.85 2.23 0.10 0.20 ind:pre:3s; +déracinement déracinement NOM m s 0.11 0.54 0.11 0.54 +déracinent déraciner VER 0.85 2.23 0.01 0.14 ind:pre:3p; +déraciner déraciner VER 0.85 2.23 0.27 0.61 inf; +déracinerait déraciner VER 0.85 2.23 0.00 0.07 cnd:pre:3s; +déraciné déraciner VER m s 0.85 2.23 0.43 0.54 par:pas; +déracinée déraciner VER f s 0.85 2.23 0.01 0.07 par:pas; +déracinées déraciner VER f p 0.85 2.23 0.01 0.00 par:pas; +déracinés déraciné ADJ m p 0.04 0.74 0.01 0.41 +duraient durer VER 74.39 101.62 0.43 2.03 ind:imp:3p; +dérailla dérailler VER 4.74 3.18 0.00 0.20 ind:pas:3s; +déraillaient dérailler VER 4.74 3.18 0.00 0.07 ind:imp:3p; +déraillais dérailler VER 4.74 3.18 0.00 0.07 ind:imp:1s; +déraillait dérailler VER 4.74 3.18 0.02 0.34 ind:imp:3s; +déraillant dérailler VER 4.74 3.18 0.00 0.07 par:pre; +déraille dérailler VER 4.74 3.18 1.89 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +duraille duraille ADJ s 0.02 2.43 0.00 2.36 +déraillement déraillement NOM m s 0.49 0.54 0.35 0.27 +déraillements déraillement NOM m p 0.49 0.54 0.14 0.27 +déraillent dérailler VER 4.74 3.18 0.05 0.07 ind:pre:3p; +dérailler dérailler VER 4.74 3.18 1.25 1.15 inf; +déraillera dérailler VER 4.74 3.18 0.02 0.00 ind:fut:3s; +dérailles dérailler VER 4.74 3.18 0.42 0.20 ind:pre:2s; +durailles duraille ADJ m p 0.02 2.43 0.02 0.07 +dérailleur dérailleur NOM m s 0.02 0.81 0.02 0.81 +déraillez dérailler VER 4.74 3.18 0.21 0.00 ind:pre:2p; +déraillé dérailler VER m s 4.74 3.18 0.89 0.47 par:pas; +déraison déraison NOM f s 0.36 1.35 0.36 1.15 +déraisonnable déraisonnable ADJ s 1.35 2.77 1.15 2.30 +déraisonnablement déraisonnablement ADV 0.00 0.14 0.00 0.14 +déraisonnables déraisonnable ADJ p 1.35 2.77 0.20 0.47 +déraisonnait déraisonner VER 0.87 1.15 0.01 0.41 ind:imp:3s; +déraisonne déraisonner VER 0.87 1.15 0.20 0.20 ind:pre:1s;ind:pre:3s; +déraisonner déraisonner VER 0.87 1.15 0.10 0.34 inf; +déraisonnes déraisonner VER 0.87 1.15 0.29 0.20 ind:pre:2s; +déraisonnez déraisonner VER 0.87 1.15 0.17 0.00 ind:pre:2p; +déraisonné déraisonner VER m s 0.87 1.15 0.10 0.00 par:pas; +déraisons déraison NOM f p 0.36 1.35 0.00 0.20 +durait durer VER 74.39 101.62 1.04 8.92 ind:imp:3s; +durale dural ADJ f s 0.01 0.00 0.01 0.00 +duralumin duralumin NOM m s 0.00 0.27 0.00 0.27 +dérange déranger VER 126.95 43.99 63.69 10.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérangea déranger VER 126.95 43.99 0.01 0.61 ind:pas:3s; +dérangeaient déranger VER 126.95 43.99 0.07 1.01 ind:imp:3p; +dérangeais déranger VER 126.95 43.99 0.18 0.27 ind:imp:1s;ind:imp:2s; +dérangeait déranger VER 126.95 43.99 1.28 3.51 ind:imp:3s; +dérangeant dérangeant ADJ m s 1.04 1.01 0.79 0.34 +dérangeante dérangeant ADJ f s 1.04 1.01 0.14 0.41 +dérangeantes dérangeant ADJ f p 1.04 1.01 0.06 0.14 +dérangeants dérangeant ADJ m p 1.04 1.01 0.04 0.14 +dérangeassent déranger VER 126.95 43.99 0.00 0.07 sub:imp:3p; +dérangement dérangement NOM m s 3.74 1.89 3.61 1.55 +dérangements dérangement NOM m p 3.74 1.89 0.14 0.34 +dérangent déranger VER 126.95 43.99 1.97 1.08 ind:pre:3p; +dérangeons déranger VER 126.95 43.99 0.65 0.14 imp:pre:1p;ind:pre:1p; +dérangeât déranger VER 126.95 43.99 0.00 0.34 sub:imp:3s; +déranger déranger VER 126.95 43.99 31.38 14.59 inf;; +dérangera déranger VER 126.95 43.99 1.88 0.61 ind:fut:3s; +dérangerai déranger VER 126.95 43.99 0.98 0.20 ind:fut:1s; +dérangeraient déranger VER 126.95 43.99 0.01 0.07 cnd:pre:3p; +dérangerais déranger VER 126.95 43.99 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +dérangerait déranger VER 126.95 43.99 2.71 0.74 cnd:pre:3s; +dérangeras déranger VER 126.95 43.99 0.11 0.00 ind:fut:2s; +dérangerez déranger VER 126.95 43.99 0.33 0.07 ind:fut:2p; +dérangerons déranger VER 126.95 43.99 0.18 0.00 ind:fut:1p; +déranges déranger VER 126.95 43.99 2.11 0.47 ind:pre:2s; +dérangez déranger VER 126.95 43.99 6.75 1.55 imp:pre:2p;ind:pre:2p; +dérangiez déranger VER 126.95 43.99 0.01 0.00 ind:imp:2p; +dérangions déranger VER 126.95 43.99 0.00 0.14 ind:imp:1p; +dérangé déranger VER m s 126.95 43.99 7.98 3.99 par:pas; +dérangée déranger VER f s 126.95 43.99 2.38 1.62 par:pas; +dérangées déranger VER f p 126.95 43.99 0.06 0.41 par:pas; +dérangés déranger VER m p 126.95 43.99 1.67 0.95 par:pas; +durant durant PRE 34.15 65.95 34.15 65.95 +dérapa déraper VER 3.85 8.31 0.00 1.01 ind:pas:3s; +dérapage dérapage NOM m s 0.89 2.36 0.79 1.69 +dérapages dérapage NOM m p 0.89 2.36 0.10 0.68 +dérapai déraper VER 3.85 8.31 0.00 0.14 ind:pas:1s; +dérapaient déraper VER 3.85 8.31 0.00 0.61 ind:imp:3p; +dérapait déraper VER 3.85 8.31 0.23 1.08 ind:imp:3s; +dérapant déraper VER 3.85 8.31 0.00 1.15 par:pre; +dérape déraper VER 3.85 8.31 0.95 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérapent déraper VER 3.85 8.31 0.10 0.14 ind:pre:3p; +déraper déraper VER 3.85 8.31 0.53 1.28 inf; +déraperont déraper VER 3.85 8.31 0.00 0.07 ind:fut:3p; +dérapes déraper VER 3.85 8.31 0.06 0.20 ind:pre:2s; +dérapez déraper VER 3.85 8.31 0.26 0.07 imp:pre:2p;ind:pre:2p; +dérapé déraper VER m s 3.85 8.31 1.72 0.61 par:pas; +durassent durer VER 74.39 101.62 0.00 0.07 sub:imp:3p; +dératisation dératisation NOM f s 0.27 0.14 0.27 0.07 +dératisations dératisation NOM f p 0.27 0.14 0.00 0.07 +dératiser dératiser VER 0.20 0.07 0.17 0.00 inf; +dératisé dératiser VER m s 0.20 0.07 0.02 0.00 par:pas; +dératisée dératiser VER f s 0.20 0.07 0.00 0.07 par:pas; +dératisés dératiser VER m p 0.20 0.07 0.01 0.00 par:pas; +dératé dératé NOM m s 0.26 1.22 0.20 0.74 +dératées dératé NOM f p 0.26 1.22 0.03 0.07 +dératés dératé NOM m p 0.26 1.22 0.02 0.41 +dérayer dérayer VER 0.01 0.00 0.01 0.00 inf; +durci durci ADJ m s 0.22 4.12 0.16 1.55 +durcie durcir VER f s 1.79 13.99 0.13 0.95 par:pas; +durcies durcir VER f p 1.79 13.99 0.00 0.47 par:pas; +durcir durcir VER 1.79 13.99 0.73 2.23 inf; +durciraient durcir VER 1.79 13.99 0.00 0.07 cnd:pre:3p; +durcirent durcir VER 1.79 13.99 0.14 0.07 ind:pas:3p; +durcis durcir VER m p 1.79 13.99 0.09 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +durcissaient durcir VER 1.79 13.99 0.00 0.20 ind:imp:3p; +durcissais durcir VER 1.79 13.99 0.00 0.14 ind:imp:1s; +durcissait durcir VER 1.79 13.99 0.02 2.30 ind:imp:3s; +durcissant durcir VER 1.79 13.99 0.01 0.54 par:pre; +durcisse durcir VER 1.79 13.99 0.05 0.14 sub:pre:3s; +durcissement durcissement NOM m s 0.01 0.74 0.01 0.74 +durcissent durcir VER 1.79 13.99 0.17 0.34 ind:pre:3p; +durcisseur durcisseur NOM m s 0.03 0.00 0.03 0.00 +durcit durcir VER 1.79 13.99 0.30 3.65 ind:pre:3s;ind:pas:3s; +dure_mère dure_mère NOM f s 0.02 0.07 0.02 0.07 +dure dur ADJ f s 187.84 146.69 26.16 33.65 +durement durement ADV 3.27 12.97 3.27 12.97 +durent devoir VER 3232.80 1318.24 2.98 6.35 ind:pas:3p; +durer durer VER 74.39 101.62 20.59 24.05 inf; +durera durer VER 74.39 101.62 8.35 4.73 ind:fut:3s; +durerai durer VER 74.39 101.62 0.19 0.20 ind:fut:1s; +dureraient durer VER 74.39 101.62 0.04 0.74 cnd:pre:3p; +durerais durer VER 74.39 101.62 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +durerait durer VER 74.39 101.62 1.16 3.31 cnd:pre:3s; +dureras durer VER 74.39 101.62 0.01 0.00 ind:fut:2s; +durerez durer VER 74.39 101.62 0.06 0.00 ind:fut:2p; +dureront durer VER 74.39 101.62 0.82 0.54 ind:fut:3p; +dures dur ADJ f p 187.84 146.69 4.05 11.89 +déresponsabilisation déresponsabilisation NOM f s 0.00 0.07 0.00 0.07 +dureté dureté NOM f s 1.56 12.23 1.56 11.35 +duretés dureté NOM f p 1.56 12.23 0.00 0.88 +durham durham NOM m s 0.09 0.00 0.09 0.00 +durian durian NOM m s 2.21 0.00 2.21 0.00 +dérida dérider VER 0.57 2.50 0.00 0.34 ind:pas:3s; +déridait dérider VER 0.57 2.50 0.00 0.20 ind:imp:3s; +déride dérider VER 0.57 2.50 0.17 0.07 imp:pre:2s;ind:pre:3s; +dérider dérider VER 0.57 2.50 0.19 1.49 inf; +déridera dérider VER 0.57 2.50 0.01 0.07 ind:fut:3s; +dériderait dérider VER 0.57 2.50 0.01 0.07 cnd:pre:3s; +déridez dérider VER 0.57 2.50 0.18 0.00 imp:pre:2p; +déridé dérider VER m s 0.57 2.50 0.01 0.27 par:pas; +durillon durillon NOM m s 0.05 1.01 0.00 0.41 +durillons durillon NOM m p 0.05 1.01 0.05 0.61 +dérision dérision NOM f s 1.27 8.51 1.27 8.51 +dérisoire dérisoire ADJ s 1.38 21.42 1.09 15.27 +dérisoirement dérisoirement ADV 0.10 0.54 0.10 0.54 +dérisoires dérisoire ADJ p 1.38 21.42 0.29 6.15 +durit durit NOM f s 0.04 0.00 0.04 0.00 +durite durite NOM f s 0.50 0.07 0.47 0.07 +durites durite NOM f p 0.50 0.07 0.03 0.00 +dériva dériver VER 4.28 11.42 0.00 0.54 ind:pas:3s; +dérivaient dériver VER 4.28 11.42 0.02 1.08 ind:imp:3p; +dérivais dériver VER 4.28 11.42 0.04 0.07 ind:imp:1s; +dérivait dériver VER 4.28 11.42 0.06 1.55 ind:imp:3s; +dérivant dériver VER 4.28 11.42 0.18 1.22 par:pre; +dérivante dérivant ADJ f s 0.03 0.07 0.01 0.00 +dérivatif dérivatif NOM m s 0.03 0.54 0.03 0.47 +dérivatifs dérivatif NOM m p 0.03 0.54 0.00 0.07 +dérivation dérivation NOM f s 0.57 0.68 0.55 0.68 +dérivations dérivation NOM f p 0.57 0.68 0.02 0.00 +dérive dérive NOM f s 2.81 6.89 2.77 6.55 +dérivent dériver VER 4.28 11.42 0.26 1.15 ind:pre:3p; +dériver dériver VER 4.28 11.42 1.09 3.18 inf; +dériverai dériver VER 4.28 11.42 0.01 0.07 ind:fut:1s; +dériveras dériver VER 4.28 11.42 0.14 0.00 ind:fut:2s; +dérives dériver VER 4.28 11.42 0.22 0.00 ind:pre:2s; +dériveur dériveur NOM m s 0.14 0.20 0.14 0.14 +dériveurs dériveur NOM m p 0.14 0.20 0.01 0.07 +dérivez dériver VER 4.28 11.42 0.05 0.00 imp:pre:2p;ind:pre:2p; +dérivions dériver VER 4.28 11.42 0.02 0.14 ind:imp:1p; +dérivons dériver VER 4.28 11.42 0.26 0.07 ind:pre:1p; +dérivé dériver VER m s 4.28 11.42 0.84 0.54 par:pas; +dérivée dériver VER f s 4.28 11.42 0.05 0.07 par:pas; +dérivées dérivé ADJ f p 0.57 0.27 0.06 0.07 +dérivés dérivé ADJ m p 0.57 0.27 0.44 0.07 +déroba dérober VER 7.15 27.23 0.03 1.22 ind:pas:3s; +dérobade dérobade NOM f s 0.21 2.77 0.21 1.76 +dérobades dérobade NOM f p 0.21 2.77 0.00 1.01 +dérobai dérober VER 7.15 27.23 0.00 0.20 ind:pas:1s; +dérobaient dérober VER 7.15 27.23 0.01 0.95 ind:imp:3p; +dérobais dérober VER 7.15 27.23 0.01 0.20 ind:imp:1s;ind:imp:2s; +dérobait dérober VER 7.15 27.23 0.24 3.92 ind:imp:3s; +dérobant dérober VER 7.15 27.23 0.05 1.22 par:pre; +dérobe dérober VER 7.15 27.23 0.55 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérobent dérober VER 7.15 27.23 0.36 0.74 ind:pre:3p; +dérober dérober VER 7.15 27.23 2.08 7.57 ind:pre:2p;inf; +dérobera dérober VER 7.15 27.23 0.02 0.07 ind:fut:3s; +déroberaient dérober VER 7.15 27.23 0.00 0.07 cnd:pre:3p; +déroberait dérober VER 7.15 27.23 0.00 0.20 cnd:pre:3s; +déroberons dérober VER 7.15 27.23 0.01 0.07 ind:fut:1p; +dérobes dérober VER 7.15 27.23 0.68 0.00 ind:pre:2s; +dérobeuse dérobeur ADJ f s 0.00 0.07 0.00 0.07 +dérobez dérober VER 7.15 27.23 0.28 0.14 imp:pre:2p;ind:pre:2p; +dérobiez dérober VER 7.15 27.23 0.00 0.07 ind:imp:2p; +dérobions dérober VER 7.15 27.23 0.00 0.14 ind:imp:1p; +dérobons dérober VER 7.15 27.23 0.01 0.07 imp:pre:1p;ind:pre:1p; +dérobât dérober VER 7.15 27.23 0.00 0.07 sub:imp:3s; +dérobèrent dérober VER 7.15 27.23 0.00 0.14 ind:pas:3p; +dérobé dérober VER m s 7.15 27.23 1.85 2.57 par:pas; +dérobée dérober VER f s 7.15 27.23 0.68 2.77 par:pas; +dérobées dérober VER f p 7.15 27.23 0.04 0.27 par:pas; +dérobés dérober VER m p 7.15 27.23 0.25 0.47 par:pas; +dérogation dérogation NOM f s 0.42 0.34 0.40 0.20 +dérogations dérogation NOM f p 0.42 0.34 0.02 0.14 +dérogatoire dérogatoire ADJ f s 0.01 0.00 0.01 0.00 +déroge déroger VER 0.46 1.01 0.09 0.27 imp:pre:2s;ind:pre:3s; +dérogea déroger VER 0.46 1.01 0.00 0.07 ind:pas:3s; +dérogeait déroger VER 0.46 1.01 0.01 0.14 ind:imp:3s; +dérogent déroger VER 0.46 1.01 0.01 0.00 ind:pre:3p; +déroger déroger VER 0.46 1.01 0.18 0.34 inf; +dérogera déroger VER 0.46 1.01 0.01 0.07 ind:fut:3s; +dérogerait déroger VER 0.46 1.01 0.01 0.00 cnd:pre:3s; +dérogé déroger VER m s 0.46 1.01 0.15 0.14 par:pas; +durât durer VER 74.39 101.62 0.00 0.74 sub:imp:3s; +dérouillaient dérouiller VER 2.13 4.66 0.00 0.14 ind:imp:3p; +dérouillais dérouiller VER 2.13 4.66 0.02 0.00 ind:imp:1s; +dérouillait dérouiller VER 2.13 4.66 0.01 0.14 ind:imp:3s; +dérouillant dérouiller VER 2.13 4.66 0.00 0.14 par:pre; +dérouille dérouiller VER 2.13 4.66 0.48 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dérouillement dérouillement NOM m s 0.00 0.07 0.00 0.07 +dérouillent dérouiller VER 2.13 4.66 0.05 0.34 ind:pre:3p; +dérouiller dérouiller VER 2.13 4.66 0.94 1.69 inf; +dérouillera dérouiller VER 2.13 4.66 0.04 0.00 ind:fut:3s; +dérouillerai dérouiller VER 2.13 4.66 0.00 0.14 ind:fut:1s; +dérouillerais dérouiller VER 2.13 4.66 0.14 0.14 cnd:pre:1s;cnd:pre:2s; +dérouillerait dérouiller VER 2.13 4.66 0.01 0.07 cnd:pre:3s; +dérouilles dérouiller VER 2.13 4.66 0.04 0.20 ind:pre:2s; +dérouillez dérouiller VER 2.13 4.66 0.01 0.00 imp:pre:2p; +dérouillé dérouiller VER m s 2.13 4.66 0.36 0.54 par:pas; +dérouillée dérouillée NOM f s 0.39 1.22 0.23 1.01 +dérouillées dérouillée NOM f p 0.39 1.22 0.16 0.20 +déroula dérouler VER 11.37 39.46 0.27 3.04 ind:pas:3s; +déroulai dérouler VER 11.37 39.46 0.00 0.20 ind:pas:1s; +déroulaient dérouler VER 11.37 39.46 0.04 2.84 ind:imp:3p; +déroulais dérouler VER 11.37 39.46 0.02 0.27 ind:imp:1s; +déroulait dérouler VER 11.37 39.46 0.37 8.92 ind:imp:3s; +déroulant dérouler VER 11.37 39.46 0.11 1.69 par:pre; +déroule dérouler VER 11.37 39.46 5.18 6.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déroulement déroulement NOM m s 0.82 5.95 0.82 5.88 +déroulements déroulement NOM m p 0.82 5.95 0.00 0.07 +déroulent dérouler VER 11.37 39.46 1.41 1.42 ind:pre:3p; +dérouler dérouler VER 11.37 39.46 1.26 5.88 inf; +déroulera dérouler VER 11.37 39.46 0.36 0.34 ind:fut:3s; +dérouleraient dérouler VER 11.37 39.46 0.01 0.07 cnd:pre:3p; +déroulerait dérouler VER 11.37 39.46 0.06 0.47 cnd:pre:3s; +dérouleront dérouler VER 11.37 39.46 0.04 0.00 ind:fut:3p; +dérouleur dérouleur NOM m s 0.01 0.34 0.01 0.14 +dérouleurs dérouleur NOM m p 0.01 0.34 0.00 0.14 +dérouleuse dérouleur NOM f s 0.01 0.34 0.00 0.07 +déroulez dérouler VER 11.37 39.46 0.19 0.07 imp:pre:2p; +déroulions dérouler VER 11.37 39.46 0.00 0.07 ind:imp:1p; +déroulât dérouler VER 11.37 39.46 0.00 0.14 sub:imp:3s; +déroulèrent dérouler VER 11.37 39.46 0.03 0.81 ind:pas:3p; +déroulé dérouler VER m s 11.37 39.46 1.15 2.57 par:pas; +déroulée dérouler VER f s 11.37 39.46 0.63 2.64 par:pas; +déroulées dérouler VER f p 11.37 39.46 0.11 0.81 par:pas; +déroulés dérouler VER m p 11.37 39.46 0.13 1.08 par:pas; +dérouta dérouter VER 1.63 4.59 0.00 0.07 ind:pas:3s; +déroutage déroutage NOM m s 0.01 0.07 0.01 0.07 +déroutaient dérouter VER 1.63 4.59 0.00 0.07 ind:imp:3p; +déroutait dérouter VER 1.63 4.59 0.03 0.88 ind:imp:3s; +déroutant déroutant ADJ m s 1.09 2.03 0.68 0.47 +déroutante déroutant ADJ f s 1.09 2.03 0.22 1.28 +déroutantes déroutant ADJ f p 1.09 2.03 0.04 0.14 +déroutants déroutant ADJ m p 1.09 2.03 0.16 0.14 +déroute déroute NOM f s 1.03 5.95 1.03 5.88 +déroutement déroutement NOM m s 0.28 0.00 0.28 0.00 +déroutent dérouter VER 1.63 4.59 0.02 0.07 ind:pre:3p; +dérouter dérouter VER 1.63 4.59 0.54 0.47 inf;; +déroutera dérouter VER 1.63 4.59 0.01 0.00 ind:fut:3s; +déroutes dérouter VER 1.63 4.59 0.10 0.00 ind:pre:2s; +déroutez dérouter VER 1.63 4.59 0.05 0.00 imp:pre:2p;ind:pre:2p; +déroutèrent dérouter VER 1.63 4.59 0.00 0.07 ind:pas:3p; +dérouté dérouter VER m s 1.63 4.59 0.47 1.42 par:pas; +déroutée dérouter VER f s 1.63 4.59 0.16 0.47 par:pas; +déroutées dérouter VER f p 1.63 4.59 0.03 0.00 par:pas; +déroutés dérouter VER m p 1.63 4.59 0.06 0.27 par:pas; +durs dur ADJ m p 187.84 146.69 12.08 20.47 +dérègle dérégler VER 1.09 0.95 0.25 0.14 ind:pre:3s; +dérèglement dérèglement NOM m s 1.29 1.28 0.35 1.01 +dérèglements dérèglement NOM m p 1.29 1.28 0.94 0.27 +dérèglent dérégler VER 1.09 0.95 0.14 0.07 ind:pre:3p; +durèrent durer VER 74.39 101.62 0.04 1.35 ind:pas:3p; +duré durer VER m s 74.39 101.62 12.57 13.85 par:pas; +déréalisaient déréaliser VER 0.00 0.07 0.00 0.07 ind:imp:3p; +durée durée NOM f s 6.86 19.39 6.84 19.12 +durées durée NOM f p 6.86 19.39 0.02 0.27 +déréglage déréglage NOM m s 0.01 0.00 0.01 0.00 +déréglait dérégler VER 1.09 0.95 0.01 0.07 ind:imp:3s; +déréglant dérégler VER 1.09 0.95 0.00 0.07 par:pre; +déréglementation déréglementation NOM f s 0.06 0.00 0.06 0.00 +dérégler dérégler VER 1.09 0.95 0.22 0.14 inf; +déréglé dérégler VER m s 1.09 0.95 0.23 0.41 par:pas; +déréglée dérégler VER f s 1.09 0.95 0.20 0.00 par:pas; +déréglées dérégler VER f p 1.09 0.95 0.03 0.00 par:pas; +déréglés déréglé ADJ m p 0.23 1.35 0.10 0.34 +dérégulation dérégulation NOM f s 0.04 0.00 0.04 0.00 +déréguler déréguler VER 0.01 0.00 0.01 0.00 inf; +déréliction déréliction NOM f s 0.01 0.61 0.01 0.61 +dés dé NOM m p 23.36 11.55 17.63 7.91 +dus devoir VER m p 3232.80 1318.24 1.57 12.77 ind:pas:1s;par:pas; +désabonna désabonner VER 0.00 0.07 0.00 0.07 ind:pas:3s; +désabonnements désabonnement NOM m p 0.00 0.14 0.00 0.14 +désabusement désabusement NOM m s 0.00 0.41 0.00 0.41 +désabuser désabuser VER 0.11 1.08 0.00 0.07 inf; +désabusé désabusé ADJ m s 0.12 5.27 0.08 3.04 +désabusée désabuser VER f s 0.11 1.08 0.03 0.14 par:pas; +désabusées désabusé NOM f p 0.02 1.42 0.00 0.14 +désabusés désabusé ADJ m p 0.12 5.27 0.02 0.47 +désaccord désaccord NOM m s 3.02 5.20 2.41 4.05 +désaccorda désaccorder VER 0.38 1.22 0.00 0.07 ind:pas:3s; +désaccordaient désaccorder VER 0.38 1.22 0.00 0.07 ind:imp:3p; +désaccordent désaccorder VER 0.38 1.22 0.00 0.07 ind:pre:3p; +désaccorder désaccorder VER 0.38 1.22 0.00 0.14 inf; +désaccords désaccord NOM m p 3.02 5.20 0.61 1.15 +désaccordé désaccorder VER m s 0.38 1.22 0.14 0.41 par:pas; +désaccordée désaccorder VER f s 0.38 1.22 0.22 0.07 par:pas; +désaccordées désaccorder VER f p 0.38 1.22 0.00 0.07 par:pas; +désaccordés désaccorder VER m p 0.38 1.22 0.02 0.34 par:pas; +désaccoupler désaccoupler VER 0.01 0.00 0.01 0.00 inf; +désaccoutuma désaccoutumer VER 0.14 0.07 0.00 0.07 ind:pas:3s; +désaccoutumer désaccoutumer VER 0.14 0.07 0.14 0.00 inf; +désacralisation désacralisation NOM f s 0.20 0.00 0.20 0.00 +désacraliser désacraliser VER 0.04 0.07 0.03 0.00 inf; +désacralisé désacraliser VER m s 0.04 0.07 0.01 0.07 par:pas; +désacralisée désacraliser VER f s 0.04 0.07 0.01 0.00 par:pas; +désactivation désactivation NOM f s 0.41 0.07 0.41 0.07 +désactive désactiver VER 4.96 0.41 0.40 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désactiver désactiver VER 4.96 0.41 1.43 0.00 inf; +désactiverai désactiver VER 4.96 0.41 0.03 0.00 ind:fut:1s; +désactiveront désactiver VER 4.96 0.41 0.02 0.00 ind:fut:3p; +désactives désactiver VER 4.96 0.41 0.04 0.00 ind:pre:2s; +désactivez désactiver VER 4.96 0.41 0.57 0.00 imp:pre:2p;ind:pre:2p; +désactivons désactiver VER 4.96 0.41 0.04 0.00 ind:pre:1p; +désactivé désactiver VER m s 4.96 0.41 1.35 0.34 par:pas; +désactivée désactiver VER f s 4.96 0.41 0.20 0.07 par:pas; +désactivées désactiver VER f p 4.96 0.41 0.78 0.00 par:pas; +désactivés désactiver VER m p 4.96 0.41 0.11 0.00 par:pas; +désadaptée désadapter VER f s 0.00 0.07 0.00 0.07 par:pas; +désadopter désadopter VER 0.01 0.00 0.01 0.00 inf; +désaffectation désaffectation NOM f s 0.00 0.07 0.00 0.07 +désaffecter désaffecter VER 0.18 0.88 0.00 0.07 inf; +désaffection désaffection NOM f s 0.04 0.54 0.04 0.54 +désaffecté désaffecté ADJ m s 0.85 4.73 0.46 1.62 +désaffectée désaffecté ADJ f s 0.85 4.73 0.22 1.82 +désaffectées désaffecté ADJ f p 0.85 4.73 0.03 0.68 +désaffectés désaffecté ADJ m p 0.85 4.73 0.14 0.61 +désagrège désagréger VER 0.80 3.18 0.35 0.95 imp:pre:2s;ind:pre:3s; +désagrègent désagréger VER 0.80 3.18 0.20 0.20 ind:pre:3p; +désagréable désagréable ADJ s 10.91 19.39 9.54 16.55 +désagréablement désagréablement ADV 0.13 1.28 0.13 1.28 +désagréables désagréable ADJ p 10.91 19.39 1.38 2.84 +désagrégation désagrégation NOM f s 0.10 1.35 0.10 1.35 +désagrégeait désagréger VER 0.80 3.18 0.11 0.41 ind:imp:3s; +désagrégeant désagréger VER 0.80 3.18 0.01 0.27 par:pre; +désagréger désagréger VER 0.80 3.18 0.11 0.88 inf; +désagrégèrent désagréger VER 0.80 3.18 0.00 0.07 ind:pas:3p; +désagrégé désagréger VER m s 0.80 3.18 0.03 0.14 par:pas; +désagrégée désagréger VER f s 0.80 3.18 0.00 0.20 par:pas; +désagrégés désagréger VER m p 0.80 3.18 0.00 0.07 par:pas; +désagrément désagrément NOM m s 2.01 2.64 1.20 1.42 +désagréments désagrément NOM m p 2.01 2.64 0.81 1.22 +désaimée désaimer VER f s 0.00 0.14 0.00 0.14 par:pas; +désajustés désajuster VER m p 0.00 0.07 0.00 0.07 par:pas; +désalinisation désalinisation NOM f s 0.02 0.00 0.02 0.00 +désaliénation désaliénation NOM f s 0.00 0.07 0.00 0.07 +désaltère désaltérer VER 0.66 1.89 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désaltéra désaltérer VER 0.66 1.89 0.00 0.07 ind:pas:3s; +désaltéraient désaltérer VER 0.66 1.89 0.00 0.07 ind:imp:3p; +désaltérait désaltérer VER 0.66 1.89 0.00 0.14 ind:imp:3s; +désaltérant désaltérer VER 0.66 1.89 0.00 0.14 par:pre; +désaltérante désaltérant ADJ f s 0.14 0.00 0.14 0.00 +désaltérer désaltérer VER 0.66 1.89 0.35 0.81 inf; +désaltérât désaltérer VER 0.66 1.89 0.00 0.07 sub:imp:3s; +désaltéré désaltérer VER m s 0.66 1.89 0.10 0.20 par:pas; +désaltérés désaltérer VER m p 0.66 1.89 0.00 0.14 par:pas; +désamiantage désamiantage NOM m s 0.09 0.00 0.09 0.00 +désaminase désaminase NOM f s 0.01 0.00 0.01 0.00 +désamorce désamorcer VER 2.80 1.62 0.50 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désamorcent désamorcer VER 2.80 1.62 0.01 0.00 ind:pre:3p; +désamorcer désamorcer VER 2.80 1.62 1.43 0.47 inf; +désamorcera désamorcer VER 2.80 1.62 0.01 0.00 ind:fut:3s; +désamorcerez désamorcer VER 2.80 1.62 0.01 0.00 ind:fut:2p; +désamorcerons désamorcer VER 2.80 1.62 0.01 0.00 ind:fut:1p; +désamorcez désamorcer VER 2.80 1.62 0.04 0.00 imp:pre:2p;ind:pre:2p; +désamorcé désamorcer VER m s 2.80 1.62 0.28 0.34 par:pas; +désamorcée désamorcer VER f s 2.80 1.62 0.45 0.20 par:pas; +désamorcées désamorcer VER f p 2.80 1.62 0.02 0.07 par:pas; +désamorcés désamorcer VER m p 2.80 1.62 0.03 0.07 par:pas; +désamorçage désamorçage NOM m s 0.18 0.00 0.18 0.00 +désamorçait désamorcer VER 2.80 1.62 0.01 0.20 ind:imp:3s; +désamorçant désamorcer VER 2.80 1.62 0.00 0.07 par:pre; +désamour désamour NOM m s 0.00 0.34 0.00 0.34 +désangler désangler VER 0.00 0.07 0.00 0.07 inf; +désape désaper VER 0.77 0.14 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désapent désaper VER 0.77 0.14 0.01 0.00 ind:pre:3p; +désaper désaper VER 0.77 0.14 0.38 0.00 inf; +désapeurer désapeurer VER 0.00 0.07 0.00 0.07 inf; +désapez désaper VER 0.77 0.14 0.04 0.00 imp:pre:2p;ind:pre:2p; +désappointait désappointer VER 0.13 0.88 0.00 0.07 ind:imp:3s; +désappointement désappointement NOM m s 0.00 0.81 0.00 0.74 +désappointements désappointement NOM m p 0.00 0.81 0.00 0.07 +désappointer désappointer VER 0.13 0.88 0.03 0.07 inf; +désappointé désappointer VER m s 0.13 0.88 0.09 0.47 par:pas; +désappointée désappointé ADJ f s 0.06 0.41 0.01 0.27 +désappointés désappointé ADJ m p 0.06 0.41 0.01 0.00 +désapprenais désapprendre VER 0.10 0.95 0.00 0.07 ind:imp:1s; +désapprenant désapprendre VER 0.10 0.95 0.00 0.07 par:pre; +désapprendre désapprendre VER 0.10 0.95 0.09 0.07 inf; +désapprenne désapprendre VER 0.10 0.95 0.00 0.14 sub:pre:3s; +désapprirent désapprendre VER 0.10 0.95 0.00 0.07 ind:pas:3p; +désappris désapprendre VER m 0.10 0.95 0.01 0.47 par:pas; +désapprit désapprendre VER 0.10 0.95 0.00 0.07 ind:pas:3s; +désapprobateur désapprobateur ADJ m s 0.06 1.62 0.04 0.95 +désapprobateurs désapprobateur ADJ m p 0.06 1.62 0.00 0.41 +désapprobation désapprobation NOM f s 0.42 1.55 0.42 1.55 +désapprobatrice désapprobateur ADJ f s 0.06 1.62 0.02 0.20 +désapprobatrices désapprobateur ADJ f p 0.06 1.62 0.00 0.07 +désapprouva désapprouver VER 3.35 3.99 0.00 0.14 ind:pas:3s; +désapprouvaient désapprouver VER 3.35 3.99 0.04 0.07 ind:imp:3p; +désapprouvais désapprouver VER 3.35 3.99 0.04 0.34 ind:imp:1s;ind:imp:2s; +désapprouvait désapprouver VER 3.35 3.99 0.34 0.88 ind:imp:3s; +désapprouvant désapprouver VER 3.35 3.99 0.01 0.41 par:pre; +désapprouve désapprouver VER 3.35 3.99 1.48 0.95 ind:pre:1s;ind:pre:3s; +désapprouvent désapprouver VER 3.35 3.99 0.26 0.14 ind:pre:3p; +désapprouver désapprouver VER 3.35 3.99 0.16 0.34 inf; +désapprouvera désapprouver VER 3.35 3.99 0.01 0.07 ind:fut:3s; +désapprouverait désapprouver VER 3.35 3.99 0.04 0.07 cnd:pre:3s; +désapprouverez désapprouver VER 3.35 3.99 0.01 0.00 ind:fut:2p; +désapprouves désapprouver VER 3.35 3.99 0.36 0.00 ind:pre:2s; +désapprouvez désapprouver VER 3.35 3.99 0.46 0.07 imp:pre:2p;ind:pre:2p; +désapprouviez désapprouver VER 3.35 3.99 0.01 0.07 ind:imp:2p; +désapprouvât désapprouver VER 3.35 3.99 0.00 0.07 sub:imp:3s; +désapprouvé désapprouver VER m s 3.35 3.99 0.12 0.34 par:pas; +désapprouvée désapprouver VER f s 3.35 3.99 0.01 0.07 par:pas; +désargenté désargenter VER m s 0.01 0.14 0.01 0.07 par:pas; +désargentées désargenté ADJ f p 0.00 0.27 0.00 0.07 +désargentés désargenté NOM m p 0.01 0.00 0.01 0.00 +désarma désarmer VER 5.72 8.11 0.00 0.34 ind:pas:3s; +désarmai désarmer VER 5.72 8.11 0.00 0.07 ind:pas:1s; +désarmaient désarmer VER 5.72 8.11 0.00 0.14 ind:imp:3p; +désarmait désarmer VER 5.72 8.11 0.01 1.15 ind:imp:3s; +désarmant désarmer VER 5.72 8.11 0.05 0.07 par:pre; +désarmante désarmant ADJ f s 0.08 1.76 0.03 1.08 +désarmants désarmant ADJ m p 0.08 1.76 0.01 0.14 +désarme désarmer VER 5.72 8.11 0.25 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désarmement désarmement NOM m s 1.04 0.88 1.04 0.88 +désarment désarmer VER 5.72 8.11 0.04 0.07 ind:pre:3p; +désarmer désarmer VER 5.72 8.11 1.57 1.96 inf; +désarmera désarmer VER 5.72 8.11 0.01 0.00 ind:fut:3s; +désarmez désarmer VER 5.72 8.11 0.71 0.00 imp:pre:2p; +désarmèrent désarmer VER 5.72 8.11 0.00 0.07 ind:pas:3p; +désarmé désarmer VER m s 5.72 8.11 2.29 2.23 par:pas; +désarmée désarmer VER f s 5.72 8.11 0.39 0.47 par:pas; +désarmées désarmer VER f p 5.72 8.11 0.11 0.14 par:pas; +désarmés désarmé ADJ m p 1.56 5.41 0.72 0.68 +désarrimage désarrimage NOM m s 0.02 0.00 0.02 0.00 +désarrimez désarrimer VER 0.05 0.00 0.03 0.00 imp:pre:2p; +désarrimé désarrimer VER m s 0.05 0.00 0.02 0.00 par:pas; +désarroi désarroi NOM m s 1.33 14.12 1.32 13.99 +désarrois désarroi NOM m p 1.33 14.12 0.01 0.14 +désarçonna désarçonner VER 0.51 2.57 0.00 0.14 ind:pas:3s; +désarçonnaient désarçonner VER 0.51 2.57 0.00 0.07 ind:imp:3p; +désarçonnait désarçonner VER 0.51 2.57 0.00 0.14 ind:imp:3s; +désarçonne désarçonner VER 0.51 2.57 0.05 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désarçonner désarçonner VER 0.51 2.57 0.17 0.81 inf; +désarçonné désarçonner VER m s 0.51 2.57 0.22 0.74 par:pas; +désarçonnée désarçonner VER f s 0.51 2.57 0.04 0.07 par:pas; +désarçonnés désarçonner VER m p 0.51 2.57 0.03 0.34 par:pas; +désarticula désarticuler VER 0.34 3.18 0.00 0.07 ind:pas:3s; +désarticulait désarticuler VER 0.34 3.18 0.00 0.27 ind:imp:3s; +désarticulant désarticuler VER 0.34 3.18 0.00 0.14 par:pre; +désarticulation désarticulation NOM f s 0.00 0.14 0.00 0.14 +désarticulent désarticuler VER 0.34 3.18 0.00 0.07 ind:pre:3p; +désarticuler désarticuler VER 0.34 3.18 0.00 0.07 inf; +désarticulera désarticuler VER 0.34 3.18 0.02 0.00 ind:fut:3s; +désarticulé désarticuler VER m s 0.34 3.18 0.20 1.01 par:pas; +désarticulée désarticuler VER f s 0.34 3.18 0.07 0.81 par:pas; +désarticulées désarticuler VER f p 0.34 3.18 0.00 0.14 par:pas; +désarticulés désarticuler VER m p 0.34 3.18 0.04 0.61 par:pas; +désassemble désassembler VER 0.12 0.27 0.00 0.14 ind:pre:3s; +désassembler désassembler VER 0.12 0.27 0.05 0.14 inf; +désassemblé désassembler VER m s 0.12 0.27 0.07 0.00 par:pas; +désassortis désassorti ADJ m p 0.00 0.07 0.00 0.07 +désassortis désassortir VER m p 0.00 0.07 0.00 0.07 par:pas; +désastre désastre NOM m s 12.82 23.72 12.26 19.86 +désastres désastre NOM m p 12.82 23.72 0.55 3.85 +désastreuse désastreux ADJ f s 2.46 6.49 0.92 2.23 +désastreusement désastreusement ADV 0.01 0.00 0.01 0.00 +désastreuses désastreux ADJ f p 2.46 6.49 0.41 1.62 +désastreux désastreux ADJ m 2.46 6.49 1.13 2.64 +désavantage désavantage NOM m s 0.52 0.88 0.43 0.61 +désavantageaient désavantager VER 0.24 0.47 0.00 0.07 ind:imp:3p; +désavantageait désavantager VER 0.24 0.47 0.00 0.07 ind:imp:3s; +désavantager désavantager VER 0.24 0.47 0.02 0.07 inf; +désavantages désavantage NOM m p 0.52 0.88 0.09 0.27 +désavantageuse désavantageux ADJ f s 0.01 0.00 0.01 0.00 +désavantagé désavantager VER m s 0.24 0.47 0.08 0.14 par:pas; +désavantagés désavantager VER m p 0.24 0.47 0.10 0.07 par:pas; +désaveu désaveu NOM m s 0.07 0.61 0.07 0.61 +désaveux désaveux NOM m p 0.00 0.07 0.00 0.07 +désavoua désavouer VER 0.77 3.11 0.00 0.14 ind:pas:3s; +désavouait désavouer VER 0.77 3.11 0.00 0.20 ind:imp:3s; +désavouant désavouer VER 0.77 3.11 0.00 0.20 par:pre; +désavoue désavouer VER 0.77 3.11 0.01 0.14 ind:pre:1s;ind:pre:3s; +désavouent désavouer VER 0.77 3.11 0.29 0.07 ind:pre:3p; +désavouer désavouer VER 0.77 3.11 0.20 0.74 inf; +désavoueraient désavouer VER 0.77 3.11 0.00 0.14 cnd:pre:3p; +désavouerons désavouer VER 0.77 3.11 0.00 0.14 ind:fut:1p; +désavouez désavouer VER 0.77 3.11 0.01 0.07 imp:pre:2p;ind:pre:2p; +désavouât désavouer VER 0.77 3.11 0.00 0.07 sub:imp:3s; +désavoué désavouer VER m s 0.77 3.11 0.22 0.68 par:pas; +désavouée désavouer VER f s 0.77 3.11 0.03 0.34 par:pas; +désavoués désavouer VER m p 0.77 3.11 0.01 0.20 par:pas; +désaxait désaxer VER 0.09 0.54 0.00 0.07 ind:imp:3s; +désaxant désaxer VER 0.09 0.54 0.01 0.07 par:pre; +désaxe désaxer VER 0.09 0.54 0.01 0.14 ind:pre:3s; +désaxement désaxement NOM m s 0.00 0.07 0.00 0.07 +désaxé désaxé NOM m s 0.40 0.27 0.26 0.07 +désaxée désaxé ADJ f s 0.13 0.61 0.02 0.34 +désaxées désaxé NOM f p 0.40 0.27 0.01 0.07 +désaxés désaxé NOM m p 0.40 0.27 0.12 0.14 +déscolarisé déscolariser VER m s 0.01 0.00 0.01 0.00 par:pas; +désembourber désembourber VER 0.05 0.20 0.05 0.14 inf; +désembourbée désembourber VER f s 0.05 0.20 0.00 0.07 par:pas; +désembrouiller désembrouiller VER 0.01 0.00 0.01 0.00 inf; +désembuer désembuer VER 0.00 0.07 0.00 0.07 inf; +désemparait désemparer VER 0.67 3.18 0.00 0.07 ind:imp:3s; +désemparer désemparer VER 0.67 3.18 0.00 0.61 inf; +désemparé désemparer VER m s 0.67 3.18 0.36 1.28 par:pas; +désemparée désemparé ADJ f s 0.90 4.19 0.55 1.42 +désemparées désemparé ADJ f p 0.90 4.19 0.11 0.07 +désemparés désemparer VER m p 0.67 3.18 0.12 0.34 par:pas; +désempenné désempenner VER m s 0.00 0.07 0.00 0.07 par:pas; +désempierraient désempierrer VER 0.00 0.07 0.00 0.07 ind:imp:3p; +désemplissaient désemplir VER 0.17 0.61 0.00 0.07 ind:imp:3p; +désemplissait désemplir VER 0.17 0.61 0.00 0.34 ind:imp:3s; +désemplit désemplir VER 0.17 0.61 0.17 0.20 ind:pre:3s;ind:pas:3s; +désenchaînement désenchaînement NOM m s 0.00 0.07 0.00 0.07 +désenchaîner désenchaîner VER 0.00 0.07 0.00 0.07 inf; +désenchanta désenchanter VER 0.02 0.54 0.00 0.07 ind:pas:3s; +désenchantant désenchanter VER 0.02 0.54 0.00 0.07 par:pre; +désenchante désenchanter VER 0.02 0.54 0.00 0.07 ind:pre:3s; +désenchantement désenchantement NOM m s 0.16 1.76 0.16 1.69 +désenchantements désenchantement NOM m p 0.16 1.76 0.00 0.07 +désenchantent désenchanter VER 0.02 0.54 0.00 0.07 ind:pre:3p; +désenchanter désenchanter VER 0.02 0.54 0.00 0.14 inf; +désenchanté désenchanté ADJ m s 0.11 0.88 0.11 0.47 +désenchantée désenchanter VER f s 0.02 0.54 0.01 0.07 par:pas; +désenchantées désenchanter VER f p 0.02 0.54 0.01 0.00 par:pas; +désenchantés désenchanté NOM m p 0.17 0.34 0.14 0.07 +désenchevêtra désenchevêtrer VER 0.00 0.07 0.00 0.07 ind:pas:3s; +désenclavement désenclavement NOM m s 0.00 0.07 0.00 0.07 +désencombre désencombrer VER 0.00 0.07 0.00 0.07 ind:pre:1s; +désencrasser désencrasser VER 0.03 0.07 0.03 0.07 inf; +désenflaient désenfler VER 0.22 0.07 0.00 0.07 ind:imp:3p; +désenfle désenfler VER 0.22 0.07 0.06 0.00 imp:pre:2s;ind:pre:3s; +désenfler désenfler VER 0.22 0.07 0.12 0.00 inf; +désenflé désenfler VER m s 0.22 0.07 0.04 0.00 par:pas; +désengagement désengagement NOM m s 0.14 0.07 0.14 0.07 +désengager désengager VER 0.31 0.20 0.08 0.14 inf; +désengagez désengager VER 0.31 0.20 0.18 0.00 imp:pre:2p;ind:pre:2p; +désengagé désengager VER m s 0.31 0.20 0.04 0.07 par:pas; +désengluer désengluer VER 0.00 0.07 0.00 0.07 inf; +désengourdir désengourdir VER 0.00 0.14 0.00 0.14 inf; +désennuie désennuyer VER 0.02 0.41 0.00 0.07 ind:pre:3s; +désennuiera désennuyer VER 0.02 0.41 0.00 0.07 ind:fut:3s; +désennuyant désennuyer VER 0.02 0.41 0.00 0.07 par:pre; +désennuyer désennuyer VER 0.02 0.41 0.02 0.20 inf; +désenrouler désenrouler VER 0.01 0.00 0.01 0.00 inf; +désensabler désensabler VER 0.00 0.07 0.00 0.07 inf; +désensibilisation désensibilisation NOM f s 0.32 0.00 0.32 0.00 +désensibilisent désensibiliser VER 0.04 0.00 0.01 0.00 ind:pre:3p; +désensibilisée désensibiliser VER f s 0.04 0.00 0.03 0.00 par:pas; +désensorceler désensorceler VER 0.00 0.14 0.00 0.07 inf; +désensorcelé désensorceler VER m s 0.00 0.14 0.00 0.07 par:pas; +désentortille désentortiller VER 0.00 0.07 0.00 0.07 ind:pre:1s; +désentravé désentraver VER m s 0.00 0.14 0.00 0.07 par:pas; +désentravée désentraver VER f s 0.00 0.14 0.00 0.07 par:pas; +désenvoûter désenvoûter VER 0.03 0.00 0.02 0.00 inf; +désenvoûteurs désenvoûteur NOM m p 0.00 0.07 0.00 0.07 +désenvoûté désenvoûter VER m s 0.03 0.00 0.01 0.00 par:pas; +désert désert NOM m s 27.66 41.89 26.13 36.76 +déserta déserter VER 4.90 11.28 0.01 0.41 ind:pas:3s; +désertaient déserter VER 4.90 11.28 0.01 0.20 ind:imp:3p; +désertais déserter VER 4.90 11.28 0.02 0.14 ind:imp:1s; +désertait déserter VER 4.90 11.28 0.03 0.47 ind:imp:3s; +désertant déserter VER 4.90 11.28 0.00 0.07 par:pre; +déserte désert ADJ f s 8.02 52.57 3.48 22.91 +désertent déserter VER 4.90 11.28 0.12 0.47 ind:pre:3p; +déserter déserter VER 4.90 11.28 1.92 1.69 inf; +déserterait déserter VER 4.90 11.28 0.11 0.00 cnd:pre:3s; +désertes désert ADJ f p 8.02 52.57 0.99 7.91 +déserteur déserteur NOM m s 3.08 5.54 1.89 3.51 +déserteurs déserteur NOM m p 3.08 5.54 1.19 2.03 +désertifie désertifier VER 0.00 0.07 0.00 0.07 ind:pre:3s; +désertion désertion NOM f s 1.09 2.43 1.07 2.09 +désertions désertion NOM f p 1.09 2.43 0.02 0.34 +désertique désertique ADJ s 0.22 2.57 0.17 1.82 +désertiques désertique ADJ p 0.22 2.57 0.04 0.74 +désertâmes déserter VER 4.90 11.28 0.00 0.07 ind:pas:1p; +désertons déserter VER 4.90 11.28 0.00 0.07 imp:pre:1p; +déserts désert NOM m p 27.66 41.89 1.53 5.14 +désertèrent déserter VER 4.90 11.28 0.00 0.27 ind:pas:3p; +déserté déserter VER m s 4.90 11.28 1.76 4.19 par:pas; +désertée déserter VER f s 4.90 11.28 0.24 0.88 par:pas; +désertées déserter VER f p 4.90 11.28 0.15 0.14 par:pas; +désertés déserter VER m p 4.90 11.28 0.02 0.47 par:pas; +désespoir désespoir NOM m s 10.62 46.89 10.61 45.47 +désespoirs désespoir NOM m p 10.62 46.89 0.01 1.42 +désespère désespérer VER 12.22 17.43 1.42 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désespèrent désespérer VER 12.22 17.43 0.06 0.20 ind:pre:3p; +désespères désespérer VER 12.22 17.43 0.01 0.20 ind:pre:2s; +désespéra désespérer VER 12.22 17.43 0.00 0.61 ind:pas:3s; +désespérai désespérer VER 12.22 17.43 0.00 0.14 ind:pas:1s; +désespéraient désespérer VER 12.22 17.43 0.01 0.41 ind:imp:3p; +désespérais désespérer VER 12.22 17.43 0.37 0.41 ind:imp:1s; +désespérait désespérer VER 12.22 17.43 0.06 2.03 ind:imp:3s; +désespérance désespérance NOM f s 0.03 1.08 0.03 1.08 +désespérant désespérant ADJ m s 0.67 1.96 0.60 0.95 +désespérante désespérant ADJ f s 0.67 1.96 0.06 0.88 +désespérants désespérant ADJ m p 0.67 1.96 0.01 0.14 +désespérer désespérer VER 12.22 17.43 1.18 4.19 inf; +désespérez désespérer VER 12.22 17.43 0.57 0.20 imp:pre:2p;ind:pre:2p; +désespérions désespérer VER 12.22 17.43 0.02 0.00 ind:imp:1p; +désespérons désespérer VER 12.22 17.43 0.14 0.07 imp:pre:1p; +désespérât désespérer VER 12.22 17.43 0.00 0.07 sub:imp:3s; +désespérèrent désespérer VER 12.22 17.43 0.00 0.07 ind:pas:3p; +désespéré désespéré ADJ m s 10.37 16.35 4.87 7.30 +désespérée désespéré ADJ f s 10.37 16.35 3.60 5.34 +désespérées désespéré ADJ f p 10.37 16.35 0.65 1.08 +désespérément désespérément ADV 4.08 10.81 4.08 10.81 +désespérés désespéré ADJ m p 10.37 16.35 1.25 2.64 +déshabilla déshabiller VER 22.98 26.22 0.01 2.43 ind:pas:3s; +déshabillage_éclair déshabillage_éclair NOM m s 0.00 0.07 0.00 0.07 +déshabillage déshabillage NOM m s 0.23 0.81 0.23 0.68 +déshabillages déshabillage NOM m p 0.23 0.81 0.00 0.14 +déshabillai déshabiller VER 22.98 26.22 0.00 0.41 ind:pas:1s; +déshabillaient déshabiller VER 22.98 26.22 0.13 0.34 ind:imp:3p; +déshabillais déshabiller VER 22.98 26.22 0.14 0.27 ind:imp:1s;ind:imp:2s; +déshabillait déshabiller VER 22.98 26.22 0.10 2.16 ind:imp:3s; +déshabillant déshabiller VER 22.98 26.22 0.10 1.01 par:pre; +déshabille déshabiller VER 22.98 26.22 8.69 5.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +déshabillent déshabiller VER 22.98 26.22 0.44 0.34 ind:pre:3p; +déshabiller déshabiller VER 22.98 26.22 5.85 8.58 inf; +déshabillera déshabiller VER 22.98 26.22 0.01 0.14 ind:fut:3s; +déshabillerai déshabiller VER 22.98 26.22 0.13 0.07 ind:fut:1s; +déshabillerait déshabiller VER 22.98 26.22 0.01 0.07 cnd:pre:3s; +déshabilleras déshabiller VER 22.98 26.22 0.01 0.07 ind:fut:2s; +déshabilleriez déshabiller VER 22.98 26.22 0.01 0.00 cnd:pre:2p; +déshabillerons déshabiller VER 22.98 26.22 0.00 0.07 ind:fut:1p; +déshabilles déshabiller VER 22.98 26.22 1.46 0.20 ind:pre:2s;sub:pre:2s; +déshabillez déshabiller VER 22.98 26.22 3.72 0.34 imp:pre:2p;ind:pre:2p; +déshabillons déshabiller VER 22.98 26.22 0.09 0.14 imp:pre:1p;ind:pre:1p; +déshabillèrent déshabiller VER 22.98 26.22 0.00 0.41 ind:pas:3p; +déshabillé déshabiller VER m s 22.98 26.22 0.90 1.89 par:pas; +déshabillée déshabiller VER f s 22.98 26.22 0.73 1.69 par:pas; +déshabillées déshabiller VER f p 22.98 26.22 0.13 0.20 par:pas; +déshabillés déshabiller VER m p 22.98 26.22 0.32 0.41 par:pas; +déshabité déshabité ADJ m s 0.00 0.20 0.00 0.07 +déshabitée déshabité ADJ f s 0.00 0.20 0.00 0.07 +déshabités déshabité ADJ m p 0.00 0.20 0.00 0.07 +déshabitué déshabituer VER m s 0.00 0.27 0.00 0.14 par:pas; +déshabituées déshabituer VER f p 0.00 0.27 0.00 0.07 par:pas; +déshabitués déshabituer VER m p 0.00 0.27 0.00 0.07 par:pas; +désharmonie désharmonie NOM f s 0.00 0.07 0.00 0.07 +désherbage désherbage NOM m s 0.15 0.00 0.15 0.00 +désherbait désherber VER 0.19 0.74 0.00 0.34 ind:imp:3s; +désherbant désherbant ADJ m s 0.11 0.00 0.10 0.00 +désherbants désherbant NOM m p 0.07 0.07 0.01 0.07 +désherbe désherber VER 0.19 0.74 0.00 0.07 ind:pre:3s; +désherber désherber VER 0.19 0.74 0.04 0.27 inf; +désherbé désherber VER m s 0.19 0.74 0.16 0.00 par:pas; +désherbée désherber VER f s 0.19 0.74 0.00 0.07 par:pas; +désheuraient désheurer VER 0.00 0.07 0.00 0.07 ind:imp:3p; +déshonneur déshonneur NOM m s 3.28 2.84 3.28 2.84 +déshonnête déshonnête ADJ s 0.01 0.20 0.01 0.07 +déshonnêtes déshonnête ADJ p 0.01 0.20 0.00 0.14 +déshonoraient déshonorer VER 7.99 6.15 0.00 0.14 ind:imp:3p; +déshonorait déshonorer VER 7.99 6.15 0.00 0.34 ind:imp:3s; +déshonorant déshonorant ADJ m s 0.92 1.28 0.67 0.68 +déshonorante déshonorant ADJ f s 0.92 1.28 0.24 0.34 +déshonorantes déshonorant ADJ f p 0.92 1.28 0.01 0.14 +déshonorants déshonorant ADJ m p 0.92 1.28 0.00 0.14 +déshonore déshonorer VER 7.99 6.15 0.52 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +déshonorent déshonorer VER 7.99 6.15 0.29 0.07 ind:pre:3p; +déshonorer déshonorer VER 7.99 6.15 1.31 1.28 inf; +déshonorera déshonorer VER 7.99 6.15 0.01 0.07 ind:fut:3s; +déshonorerai déshonorer VER 7.99 6.15 0.02 0.00 ind:fut:1s; +déshonorerais déshonorer VER 7.99 6.15 0.02 0.00 cnd:pre:1s; +déshonorerait déshonorer VER 7.99 6.15 0.01 0.07 cnd:pre:3s; +déshonores déshonorer VER 7.99 6.15 0.36 0.27 ind:pre:2s; +déshonorez déshonorer VER 7.99 6.15 0.28 0.14 imp:pre:2p;ind:pre:2p; +déshonoré déshonorer VER m s 7.99 6.15 3.15 1.42 par:pas; +déshonorée déshonorer VER f s 7.99 6.15 1.07 0.88 par:pas; +déshonorées déshonorer VER f p 7.99 6.15 0.27 0.14 par:pas; +déshonorés déshonorer VER m p 7.99 6.15 0.65 0.47 par:pas; +déshumanisant déshumaniser VER 0.12 0.14 0.03 0.00 par:pre; +déshumanisante déshumanisant ADJ f s 0.04 0.00 0.04 0.00 +déshumanisation déshumanisation NOM f s 0.15 0.14 0.15 0.14 +déshumanise déshumaniser VER 0.12 0.14 0.01 0.00 ind:pre:3s; +déshumanisent déshumaniser VER 0.12 0.14 0.04 0.00 ind:pre:3p; +déshumaniser déshumaniser VER 0.12 0.14 0.01 0.00 inf; +déshumanisé déshumaniser VER m s 0.12 0.14 0.00 0.14 par:pas; +déshumanisée déshumaniser VER f s 0.12 0.14 0.01 0.00 par:pas; +déshumanisées déshumaniser VER f p 0.12 0.14 0.01 0.00 par:pas; +déshumidification déshumidification NOM f s 0.10 0.00 0.10 0.00 +déshérence déshérence NOM f s 0.00 0.20 0.00 0.20 +déshérita déshériter VER 0.85 1.08 0.01 0.07 ind:pas:3s; +déshéritais déshériter VER 0.85 1.08 0.01 0.00 ind:imp:2s; +déshérite déshériter VER 0.85 1.08 0.11 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déshériter déshériter VER 0.85 1.08 0.18 0.34 inf; +déshéritera déshériter VER 0.85 1.08 0.02 0.00 ind:fut:3s; +déshériterai déshériter VER 0.85 1.08 0.01 0.07 ind:fut:1s; +déshériterais déshériter VER 0.85 1.08 0.11 0.00 cnd:pre:1s; +déshériterait déshériter VER 0.85 1.08 0.02 0.07 cnd:pre:3s; +déshérité déshériter VER m s 0.85 1.08 0.34 0.41 par:pas; +déshéritée déshérité NOM f s 0.41 0.74 0.10 0.00 +déshéritées déshérité ADJ f p 0.22 1.42 0.10 0.20 +déshérités déshérité NOM m p 0.41 0.74 0.29 0.74 +déshydratais déshydrater VER 1.17 0.14 0.01 0.00 ind:imp:1s; +déshydratant déshydrater VER 1.17 0.14 0.01 0.00 par:pre; +déshydratation déshydratation NOM f s 0.61 0.07 0.61 0.07 +déshydrate déshydrater VER 1.17 0.14 0.20 0.00 ind:pre:1s;ind:pre:3s;sub:pre:1s; +déshydrater déshydrater VER 1.17 0.14 0.29 0.00 inf; +déshydraté déshydrater VER m s 1.17 0.14 0.44 0.00 par:pas; +déshydratée déshydraté ADJ f s 0.69 0.54 0.33 0.27 +déshydratées déshydrater VER f p 1.17 0.14 0.03 0.00 par:pas; +déshydratés déshydraté ADJ m p 0.69 0.54 0.03 0.14 +désigna désigner VER 10.04 66.69 0.04 10.07 ind:pas:3s; +désignai désigner VER 10.04 66.69 0.00 0.68 ind:pas:1s; +désignaient désigner VER 10.04 66.69 0.03 0.95 ind:imp:3p; +désignais désigner VER 10.04 66.69 0.03 0.20 ind:imp:1s;ind:imp:2s; +désignait désigner VER 10.04 66.69 0.29 8.85 ind:imp:3s; +désignant désigner VER 10.04 66.69 0.25 11.69 par:pre; +désignassent désigner VER 10.04 66.69 0.00 0.07 sub:imp:3p; +désignation désignation NOM f s 0.49 1.62 0.47 1.55 +désignations désignation NOM f p 0.49 1.62 0.02 0.07 +désigne désigner VER 10.04 66.69 1.97 9.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +désignent désigner VER 10.04 66.69 0.18 1.28 ind:pre:3p; +désigner désigner VER 10.04 66.69 1.81 8.38 inf; +désignera désigner VER 10.04 66.69 0.32 0.20 ind:fut:3s; +désignerai désigner VER 10.04 66.69 0.02 0.07 ind:fut:1s; +désignerait désigner VER 10.04 66.69 0.01 0.34 cnd:pre:3s; +désigneras désigner VER 10.04 66.69 0.01 0.00 ind:fut:2s; +désignerez désigner VER 10.04 66.69 0.02 0.00 ind:fut:2p; +désigneriez désigner VER 10.04 66.69 0.01 0.07 cnd:pre:2p; +désignerons désigner VER 10.04 66.69 0.01 0.00 ind:fut:1p; +désigneront désigner VER 10.04 66.69 0.01 0.00 ind:fut:3p; +désignez désigner VER 10.04 66.69 0.64 0.20 imp:pre:2p;ind:pre:2p; +désignions désigner VER 10.04 66.69 0.00 0.07 ind:imp:1p; +désignât désigner VER 10.04 66.69 0.00 0.34 sub:imp:3s; +désignèrent désigner VER 10.04 66.69 0.01 0.34 ind:pas:3p; +désigné désigner VER m s 10.04 66.69 3.04 8.58 par:pas; +désignée désigner VER f s 10.04 66.69 0.65 1.35 par:pas; +désignées désigner VER f p 10.04 66.69 0.06 0.95 par:pas; +désignés désigner VER m p 10.04 66.69 0.62 2.09 par:pas; +désillusion désillusion NOM f s 1.08 2.23 0.94 1.22 +désillusionnement désillusionnement NOM m s 0.10 0.00 0.10 0.00 +désillusionner désillusionner VER 0.02 0.14 0.02 0.00 inf; +désillusionné désillusionner VER m s 0.02 0.14 0.00 0.14 par:pas; +désillusions désillusion NOM f p 1.08 2.23 0.14 1.01 +désincarcération désincarcération NOM f s 0.01 0.00 0.01 0.00 +désincarcéré désincarcérer VER m s 0.01 0.00 0.01 0.00 par:pas; +désincarnant désincarner VER 0.02 0.61 0.00 0.07 par:pre; +désincarnation désincarnation NOM f s 0.01 0.00 0.01 0.00 +désincarne désincarner VER 0.02 0.61 0.01 0.07 ind:pre:1s;ind:pre:3s; +désincarner désincarner VER 0.02 0.61 0.00 0.07 inf; +désincarné désincarné NOM m s 0.18 0.34 0.02 0.20 +désincarnée désincarné ADJ f s 0.05 0.95 0.03 0.34 +désincarnées désincarné ADJ f p 0.05 0.95 0.01 0.20 +désincarnés désincarné NOM m p 0.18 0.34 0.15 0.00 +désincrustante désincrustant ADJ f s 0.01 0.00 0.01 0.00 +désincruster désincruster VER 0.01 0.00 0.01 0.00 inf; +désindividualisation désindividualisation NOM f s 0.10 0.00 0.10 0.00 +désinence désinence NOM f s 0.00 0.20 0.00 0.07 +désinences désinence NOM f p 0.00 0.20 0.00 0.14 +désinfecta désinfecter VER 3.27 2.57 0.00 0.07 ind:pas:3s; +désinfectant désinfectant NOM m s 0.82 1.62 0.79 1.49 +désinfectante désinfectant ADJ f s 0.10 0.14 0.01 0.00 +désinfectantes désinfectant ADJ f p 0.10 0.14 0.02 0.00 +désinfectants désinfectant NOM m p 0.82 1.62 0.04 0.14 +désinfecte désinfecter VER 3.27 2.57 1.00 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désinfectent désinfecter VER 3.27 2.57 0.08 0.07 ind:pre:3p; +désinfecter désinfecter VER 3.27 2.57 1.59 1.35 inf; +désinfecterai désinfecter VER 3.27 2.57 0.00 0.07 ind:fut:1s; +désinfectez désinfecter VER 3.27 2.57 0.05 0.00 imp:pre:2p;ind:pre:2p; +désinfection désinfection NOM f s 0.72 0.61 0.71 0.61 +désinfections désinfection NOM f p 0.72 0.61 0.01 0.00 +désinfecté désinfecter VER m s 3.27 2.57 0.47 0.20 par:pas; +désinfectée désinfecter VER f s 3.27 2.57 0.03 0.00 par:pas; +désinfectées désinfecter VER f p 3.27 2.57 0.03 0.07 par:pas; +désinfectés désinfecter VER m p 3.27 2.57 0.00 0.07 par:pas; +désinformation désinformation NOM f s 0.21 0.41 0.20 0.41 +désinformations désinformation NOM f p 0.21 0.41 0.01 0.00 +désinformer désinformer VER 0.01 0.07 0.01 0.00 inf; +désinformée désinformer VER f s 0.01 0.07 0.00 0.07 par:pas; +désinhibe désinhiber VER 0.01 0.00 0.01 0.00 ind:pre:3s; +désinsectisation désinsectisation NOM f s 0.19 0.00 0.19 0.00 +désinsectiser désinsectiser VER 0.01 0.00 0.01 0.00 inf; +désinstaller désinstaller VER 0.03 0.00 0.02 0.00 inf; +désinstallé désinstaller VER m s 0.03 0.00 0.01 0.00 par:pas; +désintellectualiser désintellectualiser VER 0.01 0.00 0.01 0.00 inf; +désintoxication désintoxication NOM f s 1.46 0.74 1.46 0.74 +désintoxique désintoxiquer VER 0.91 1.15 0.03 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désintoxiquer désintoxiquer VER 0.91 1.15 0.47 0.68 inf; +désintoxiquera désintoxiquer VER 0.91 1.15 0.00 0.07 ind:fut:3s; +désintoxiquez désintoxiquer VER 0.91 1.15 0.04 0.00 imp:pre:2p;ind:pre:2p; +désintoxiqué désintoxiquer VER m s 0.91 1.15 0.16 0.14 par:pas; +désintoxiquée désintoxiquer VER f s 0.91 1.15 0.20 0.07 par:pas; +désintoxiqués désintoxiquer VER m p 0.91 1.15 0.01 0.00 par:pas; +désintègre désintégrer VER 2.08 1.49 0.33 0.07 imp:pre:2s;ind:pre:3s; +désintègrent désintégrer VER 2.08 1.49 0.10 0.00 ind:pre:3p; +désintégra désintégrer VER 2.08 1.49 0.03 0.00 ind:pas:3s; +désintégraient désintégrer VER 2.08 1.49 0.01 0.07 ind:imp:3p; +désintégrait désintégrer VER 2.08 1.49 0.01 0.20 ind:imp:3s; +désintégrant désintégrer VER 2.08 1.49 0.11 0.14 par:pre; +désintégrateur désintégrateur NOM m s 0.03 0.00 0.03 0.00 +désintégration désintégration NOM f s 0.88 0.54 0.86 0.47 +désintégrations désintégration NOM f p 0.88 0.54 0.02 0.07 +désintégrer désintégrer VER 2.08 1.49 0.50 0.41 inf; +désintégrera désintégrer VER 2.08 1.49 0.09 0.00 ind:fut:3s; +désintégreront désintégrer VER 2.08 1.49 0.03 0.00 ind:fut:3p; +désintégré désintégrer VER m s 2.08 1.49 0.65 0.14 par:pas; +désintégrée désintégrer VER f s 2.08 1.49 0.13 0.27 par:pas; +désintégrés désintégrer VER m p 2.08 1.49 0.09 0.20 par:pas; +désintéressa désintéresser VER 0.95 5.54 0.00 0.34 ind:pas:3s; +désintéressaient désintéresser VER 0.95 5.54 0.01 0.20 ind:imp:3p; +désintéressait désintéresser VER 0.95 5.54 0.00 1.01 ind:imp:3s; +désintéressant désintéresser VER 0.95 5.54 0.00 0.14 par:pre; +désintéresse désintéresser VER 0.95 5.54 0.11 0.47 ind:pre:1s;ind:pre:3s; +désintéressement désintéressement NOM m s 0.33 2.09 0.33 2.09 +désintéressent désintéresser VER 0.95 5.54 0.00 0.07 ind:pre:3p; +désintéresser désintéresser VER 0.95 5.54 0.07 1.62 inf; +désintéresserait désintéresser VER 0.95 5.54 0.00 0.07 cnd:pre:3s; +désintéresseront désintéresser VER 0.95 5.54 0.00 0.07 ind:fut:3p; +désintéressiez désintéresser VER 0.95 5.54 0.02 0.00 ind:imp:2p; +désintéressé désintéressé ADJ m s 1.05 2.64 0.63 1.01 +désintéressée désintéressé ADJ f s 1.05 2.64 0.39 0.95 +désintéressées désintéresser VER f p 0.95 5.54 0.01 0.07 par:pas; +désintéressés désintéresser VER m p 0.95 5.54 0.23 0.00 par:pas; +désintérêt désintérêt NOM m s 0.07 0.68 0.07 0.68 +désinvite désinviter VER 0.07 0.00 0.02 0.00 ind:pre:1s; +désinviter désinviter VER 0.07 0.00 0.05 0.00 inf; +désinvolte désinvolte ADJ s 1.09 7.50 0.81 6.76 +désinvoltes désinvolte ADJ p 1.09 7.50 0.28 0.74 +désinvolture désinvolture NOM f s 0.32 9.86 0.32 9.80 +désinvoltures désinvolture NOM f p 0.32 9.86 0.00 0.07 +désir désir NOM m s 45.35 117.09 31.59 96.69 +désira désirer VER 65.63 61.89 0.04 0.81 ind:pas:3s; +désirabilité désirabilité NOM f s 0.00 0.07 0.00 0.07 +désirable désirable ADJ s 1.39 5.20 1.18 4.19 +désirables désirable ADJ p 1.39 5.20 0.21 1.01 +désiraient désirer VER 65.63 61.89 0.26 2.03 ind:imp:3p; +désirais désirer VER 65.63 61.89 1.88 4.66 ind:imp:1s;ind:imp:2s; +désirait désirer VER 65.63 61.89 1.04 14.05 ind:imp:3s; +désirant désirer VER 65.63 61.89 0.29 0.61 par:pre; +désirante désirant ADJ f s 0.05 0.47 0.00 0.14 +désire désirer VER 65.63 61.89 21.01 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désirent désirer VER 65.63 61.89 2.06 2.16 ind:pre:3p; +désirer désirer VER 65.63 61.89 4.28 9.12 inf; +désirera désirer VER 65.63 61.89 0.17 0.00 ind:fut:3s; +désireraient désirer VER 65.63 61.89 0.01 0.14 cnd:pre:3p; +désirerais désirer VER 65.63 61.89 0.32 0.54 cnd:pre:1s;cnd:pre:2s; +désirerait désirer VER 65.63 61.89 0.11 0.47 cnd:pre:3s; +désireras désirer VER 65.63 61.89 0.13 0.07 ind:fut:2s; +désireriez désirer VER 65.63 61.89 0.03 0.00 cnd:pre:2p; +désirerions désirer VER 65.63 61.89 0.02 0.07 cnd:pre:1p; +désireront désirer VER 65.63 61.89 0.10 0.07 ind:fut:3p; +désires désirer VER 65.63 61.89 3.87 1.08 ind:pre:2s; +désireuse désireux ADJ f s 1.46 7.43 0.35 1.96 +désireuses désireux ADJ f p 1.46 7.43 0.06 0.27 +désireux désireux ADJ m 1.46 7.43 1.05 5.20 +désirez désirer VER 65.63 61.89 23.85 3.72 imp:pre:2p;ind:pre:2p; +désiriez désirer VER 65.63 61.89 0.83 0.47 ind:imp:2p; +désirions désirer VER 65.63 61.89 0.05 0.41 ind:imp:1p; +désirons désirer VER 65.63 61.89 0.68 0.68 ind:pre:1p; +désirât désirer VER 65.63 61.89 0.00 0.34 sub:imp:3s; +désirs désir NOM m p 45.35 117.09 13.76 20.41 +désiré désirer VER m s 65.63 61.89 2.87 5.54 par:pas; +désirée désirer VER f s 65.63 61.89 1.67 1.42 par:pas; +désirées désiré ADJ f p 1.02 3.31 0.02 0.07 +désirés désiré ADJ m p 1.02 3.31 0.09 0.41 +désiste désister VER 0.64 0.20 0.05 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désistement désistement NOM m s 0.12 0.07 0.12 0.07 +désister désister VER 0.64 0.20 0.18 0.07 inf; +désistez désister VER 0.64 0.20 0.04 0.00 imp:pre:2p;ind:pre:2p; +désistèrent désister VER 0.64 0.20 0.01 0.00 ind:pas:3p; +désisté désister VER m s 0.64 0.20 0.34 0.00 par:pas; +désistée désister VER f s 0.64 0.20 0.02 0.07 par:pas; +désistés désister VER m p 0.64 0.20 0.00 0.07 par:pas; +déslipe désliper VER 0.00 0.07 0.00 0.07 ind:pre:1s; +désoblige désobliger VER 0.04 0.81 0.00 0.07 ind:pre:3s; +désobligea désobliger VER 0.04 0.81 0.00 0.07 ind:pas:3s; +désobligeait désobliger VER 0.04 0.81 0.00 0.07 ind:imp:3s; +désobligeance désobligeance NOM f s 0.00 0.14 0.00 0.14 +désobligeant désobligeant ADJ m s 0.76 3.04 0.54 0.74 +désobligeante désobligeant ADJ f s 0.76 3.04 0.09 1.01 +désobligeantes désobligeant ADJ f p 0.76 3.04 0.09 0.88 +désobligeants désobligeant ADJ m p 0.76 3.04 0.04 0.41 +désobligent désobliger VER 0.04 0.81 0.01 0.07 ind:pre:3p; +désobliger désobliger VER 0.04 0.81 0.01 0.34 inf; +désobligerait désobliger VER 0.04 0.81 0.00 0.07 cnd:pre:3s; +désobligés désobliger VER m p 0.04 0.81 0.00 0.07 par:pas; +désobéi désobéir VER m s 6.15 2.09 2.27 0.20 par:pas; +désobéir désobéir VER 6.15 2.09 1.75 1.01 inf; +désobéira désobéir VER 6.15 2.09 0.05 0.00 ind:fut:3s; +désobéirai désobéir VER 6.15 2.09 0.03 0.00 ind:fut:1s; +désobéirais désobéir VER 6.15 2.09 0.02 0.00 cnd:pre:2s; +désobéiront désobéir VER 6.15 2.09 0.01 0.00 ind:fut:3p; +désobéis désobéir VER 6.15 2.09 0.76 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +désobéissais désobéir VER 6.15 2.09 0.14 0.07 ind:imp:1s;ind:imp:2s; +désobéissait désobéir VER 6.15 2.09 0.02 0.14 ind:imp:3s; +désobéissance désobéissance NOM f s 0.91 0.74 0.91 0.68 +désobéissances désobéissance NOM f p 0.91 0.74 0.00 0.07 +désobéissant désobéissant ADJ m s 0.39 0.14 0.13 0.00 +désobéissante désobéissant ADJ f s 0.39 0.14 0.23 0.07 +désobéissants désobéissant ADJ m p 0.39 0.14 0.03 0.07 +désobéisse désobéir VER 6.15 2.09 0.06 0.07 sub:pre:1s;sub:pre:3s; +désobéissent désobéir VER 6.15 2.09 0.27 0.14 ind:pre:3p; +désobéissez désobéir VER 6.15 2.09 0.36 0.00 imp:pre:2p;ind:pre:2p; +désobéissions désobéir VER 6.15 2.09 0.00 0.07 ind:imp:1p; +désobéit désobéir VER 6.15 2.09 0.34 0.27 ind:pre:3s;ind:pas:3s; +désoccupés désoccupé ADJ m p 0.00 0.20 0.00 0.20 +désodorisant désodorisant NOM m s 0.45 0.27 0.32 0.27 +désodorisante désodorisant ADJ f s 0.09 0.07 0.01 0.07 +désodorisants désodorisant NOM m p 0.45 0.27 0.13 0.00 +désodoriser désodoriser VER 0.04 0.07 0.04 0.00 inf; +désodorisés désodoriser VER m p 0.04 0.07 0.01 0.07 par:pas; +désodé désodé ADJ m s 0.00 0.07 0.00 0.07 +désoeuvre désoeuvre NOM f s 0.00 0.07 0.00 0.07 +désoeuvrement désoeuvrement NOM m s 0.03 2.36 0.03 2.30 +désoeuvrements désoeuvrement NOM m p 0.03 2.36 0.00 0.07 +désoeuvré désoeuvrer VER m s 0.28 0.95 0.02 0.47 par:pas; +désoeuvrée désoeuvrer VER f s 0.28 0.95 0.10 0.14 par:pas; +désoeuvrées désoeuvré ADJ f p 0.17 3.04 0.01 0.34 +désoeuvrés désoeuvrer VER m p 0.28 0.95 0.16 0.27 par:pas; +désola désoler VER 297.27 14.46 0.00 0.27 ind:pas:3s; +désolai désoler VER 297.27 14.46 0.00 0.14 ind:pas:1s; +désolaient désoler VER 297.27 14.46 0.00 0.07 ind:imp:3p; +désolais désoler VER 297.27 14.46 0.00 0.27 ind:imp:1s; +désolait désoler VER 297.27 14.46 0.10 1.15 ind:imp:3s; +désolant désolant ADJ m s 0.88 2.50 0.65 1.08 +désolante désolant ADJ f s 0.88 2.50 0.08 1.08 +désolantes désolant ADJ f p 0.88 2.50 0.14 0.14 +désolants désolant ADJ m p 0.88 2.50 0.01 0.20 +désolation désolation NOM f s 1.04 6.82 1.04 6.76 +désolations désolation NOM f p 1.04 6.82 0.00 0.07 +désole désoler VER 297.27 14.46 2.08 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +désolent désoler VER 297.27 14.46 0.01 0.00 ind:pre:3p; +désoler désoler VER 297.27 14.46 0.35 0.61 inf; +désolera désoler VER 297.27 14.46 0.02 0.00 ind:fut:3s; +désolerait désoler VER 297.27 14.46 0.03 0.00 cnd:pre:3s; +désoleront désoler VER 297.27 14.46 0.00 0.07 ind:fut:3p; +désoles désoler VER 297.27 14.46 0.02 0.07 ind:pre:2s; +désolez désoler VER 297.27 14.46 0.03 0.07 imp:pre:2p; +désolidarisa désolidariser VER 0.04 1.08 0.00 0.07 ind:pas:3s; +désolidarisaient désolidariser VER 0.04 1.08 0.00 0.07 ind:imp:3p; +désolidarisait désolidariser VER 0.04 1.08 0.00 0.20 ind:imp:3s; +désolidariser désolidariser VER 0.04 1.08 0.04 0.47 inf; +désolidariserai désolidariser VER 0.04 1.08 0.00 0.14 ind:fut:1s; +désolidarisé désolidariser VER m s 0.04 1.08 0.00 0.07 par:pas; +désolidarisés désolidariser VER m p 0.04 1.08 0.00 0.07 par:pas; +désolât désoler VER 297.27 14.46 0.00 0.07 sub:imp:3s; +désolé désolé ADJ m s 276.66 12.43 193.51 6.49 +désolée désoler VER f s 297.27 14.46 98.22 3.38 ind:imp:3s;par:pas; +désolées désolé ADJ f p 276.66 12.43 0.37 0.61 +désolés désoler VER m p 297.27 14.46 2.71 0.34 par:pas; +désopilant désopilant ADJ m s 0.42 1.08 0.41 0.61 +désopilante désopilant ADJ f s 0.42 1.08 0.01 0.14 +désopilantes désopilant ADJ f p 0.42 1.08 0.00 0.14 +désopilants désopilant ADJ m p 0.42 1.08 0.01 0.20 +désorbitation désorbitation NOM f s 0.01 0.00 0.01 0.00 +désorbitent désorbiter VER 0.03 0.07 0.01 0.07 ind:pre:3p; +désorbiter désorbiter VER 0.03 0.07 0.02 0.00 inf; +désordonne désordonner VER 0.61 0.74 0.00 0.07 ind:pre:3s; +désordonné désordonner VER m s 0.61 0.74 0.27 0.20 par:pas; +désordonnée désordonné ADJ f s 0.40 5.41 0.22 1.62 +désordonnées désordonné ADJ f p 0.40 5.41 0.02 0.81 +désordonnément désordonnément ADV 0.00 0.07 0.00 0.07 +désordonnés désordonner VER m p 0.61 0.74 0.21 0.14 par:pas; +désordre désordre NOM m s 13.64 42.23 12.34 39.12 +désordres désordre NOM m p 13.64 42.23 1.30 3.11 +désorganisait désorganiser VER 0.93 0.95 0.00 0.14 ind:imp:3s; +désorganisateur désorganisateur NOM m s 0.00 0.07 0.00 0.07 +désorganisation désorganisation NOM f s 0.01 0.47 0.01 0.47 +désorganise désorganiser VER 0.93 0.95 0.28 0.07 ind:pre:1s;ind:pre:3s; +désorganiser désorganiser VER 0.93 0.95 0.05 0.14 inf; +désorganisé désorganiser VER m s 0.93 0.95 0.43 0.20 par:pas; +désorganisée désorganiser VER f s 0.93 0.95 0.08 0.00 par:pas; +désorganisées désorganiser VER f p 0.93 0.95 0.01 0.20 par:pas; +désorganisés désorganiser VER m p 0.93 0.95 0.09 0.20 par:pas; +désorienta désorienter VER 1.32 2.77 0.00 0.14 ind:pas:3s; +désorientaient désorienter VER 1.32 2.77 0.00 0.07 ind:imp:3p; +désorientait désorienter VER 1.32 2.77 0.00 0.34 ind:imp:3s; +désorientant désorienter VER 1.32 2.77 0.01 0.20 par:pre; +désorientation désorientation NOM f s 0.43 0.14 0.43 0.14 +désoriente désorienter VER 1.32 2.77 0.14 0.34 ind:pre:3s; +désorientent désorienter VER 1.32 2.77 0.00 0.07 ind:pre:3p; +désorienter désorienter VER 1.32 2.77 0.19 0.07 inf; +désorienterait désorienter VER 1.32 2.77 0.00 0.07 cnd:pre:3s; +désorienté désorienté ADJ m s 1.31 2.50 0.70 1.35 +désorientée désorienté ADJ f s 1.31 2.50 0.53 0.74 +désorientées désorienté ADJ f p 1.31 2.50 0.00 0.14 +désorientés désorienté ADJ m p 1.31 2.50 0.08 0.27 +désormais désormais ADV 39.13 88.45 39.13 88.45 +désossage désossage NOM m s 0.01 0.00 0.01 0.00 +désossait désosser VER 0.59 1.55 0.00 0.07 ind:imp:3s; +désosse désosser VER 0.59 1.55 0.05 0.20 imp:pre:2s;ind:pre:3s; +désossement désossement NOM m s 0.01 0.00 0.01 0.00 +désosser désosser VER 0.59 1.55 0.13 0.34 inf; +désosseur désosseur NOM m s 0.01 0.00 0.01 0.00 +désossé désosser VER m s 0.59 1.55 0.11 0.27 par:pas; +désossée désosser VER f s 0.59 1.55 0.31 0.34 par:pas; +désossées désosser VER f p 0.59 1.55 0.00 0.20 par:pas; +désossés désosser VER m p 0.59 1.55 0.00 0.14 par:pas; +désoxygénation désoxygénation NOM f s 0.01 0.00 0.01 0.00 +désoxyribonucléique désoxyribonucléique ADJ m s 0.01 0.07 0.01 0.07 +déspiritualisation déspiritualisation NOM f s 0.00 0.07 0.00 0.07 +déspiritualiser déspiritualiser VER 0.00 0.07 0.00 0.07 inf; +dusse devoir VER 3232.80 1318.24 0.28 0.20 sub:imp:1s; +dussent devoir VER 3232.80 1318.24 0.05 0.41 sub:imp:3p; +dusses devoir VER 3232.80 1318.24 0.00 0.07 sub:imp:2s; +dussiez devoir VER 3232.80 1318.24 0.03 0.20 sub:imp:2p; +dussions devoir VER 3232.80 1318.24 0.03 0.20 sub:imp:1p; +déstabilisaient déstabiliser VER 1.80 0.61 0.02 0.00 ind:imp:3p; +déstabilisant déstabilisant ADJ m s 0.37 0.00 0.32 0.00 +déstabilisante déstabilisant ADJ f s 0.37 0.00 0.04 0.00 +déstabilisantes déstabilisant ADJ f p 0.37 0.00 0.01 0.00 +déstabilisation déstabilisation NOM f s 0.18 0.07 0.18 0.07 +déstabilisatrice déstabilisateur ADJ f s 0.14 0.00 0.14 0.00 +déstabilise déstabiliser VER 1.80 0.61 0.29 0.00 ind:pre:3s; +déstabilisent déstabiliser VER 1.80 0.61 0.05 0.00 ind:pre:3p; +déstabiliser déstabiliser VER 1.80 0.61 0.80 0.47 inf; +déstabilisera déstabiliser VER 1.80 0.61 0.06 0.00 ind:fut:3s; +déstabiliserait déstabiliser VER 1.80 0.61 0.10 0.00 cnd:pre:3s; +déstabilisez déstabiliser VER 1.80 0.61 0.03 0.00 imp:pre:2p;ind:pre:2p; +déstabilisé déstabiliser VER m s 1.80 0.61 0.35 0.07 par:pas; +déstabilisée déstabiliser VER f s 1.80 0.61 0.08 0.00 par:pas; +déstabilisés déstabiliser VER m p 1.80 0.61 0.01 0.07 par:pas; +déstalinisation déstalinisation NOM f s 0.00 0.07 0.00 0.07 +déstockage déstockage NOM m s 0.03 0.00 0.03 0.00 +déstocké déstocker VER m s 0.01 0.07 0.01 0.07 par:pas; +déstructuration déstructuration NOM f s 0.03 0.00 0.03 0.00 +déstructurer déstructurer VER 0.03 0.07 0.01 0.07 inf; +déstructuré déstructurer VER m s 0.03 0.07 0.02 0.00 par:pas; +désubjectiviser désubjectiviser VER 0.00 0.07 0.00 0.07 inf; +déséchouée déséchouer VER f s 0.00 0.07 0.00 0.07 par:pas; +désuet désuet ADJ m s 0.36 3.38 0.16 1.62 +désuets désuet ADJ m p 0.36 3.38 0.03 0.47 +déségrégation déségrégation NOM f s 0.03 0.00 0.03 0.00 +désuni désuni ADJ m s 0.07 0.54 0.02 0.07 +désunie désuni ADJ f s 0.07 0.54 0.01 0.07 +désunies désuni ADJ f p 0.07 0.54 0.01 0.14 +désunion désunion NOM f s 0.20 0.20 0.20 0.20 +désunir désunir VER 0.27 1.15 0.13 0.54 inf; +désunirait désunir VER 0.27 1.15 0.00 0.07 cnd:pre:3s; +désunirent désunir VER 0.27 1.15 0.00 0.07 ind:pas:3p; +désunis désuni ADJ m p 0.07 0.54 0.03 0.27 +désunissaient désunir VER 0.27 1.15 0.00 0.14 ind:imp:3p; +désunissait désunir VER 0.27 1.15 0.00 0.07 ind:imp:3s; +désunissant désunir VER 0.27 1.15 0.00 0.07 par:pre; +désunisse désunir VER 0.27 1.15 0.01 0.00 sub:pre:3s; +désunissent désunir VER 0.27 1.15 0.00 0.07 ind:pre:3p; +désunit désunir VER 0.27 1.15 0.12 0.07 ind:pre:3s;ind:pas:3s; +désépaissir désépaissir VER 0.01 0.07 0.00 0.07 inf; +désépaissis désépaissir VER 0.01 0.07 0.01 0.00 ind:pre:1s; +déséquilibra déséquilibrer VER 0.74 1.89 0.00 0.14 ind:pas:3s; +déséquilibraient déséquilibrer VER 0.74 1.89 0.00 0.07 ind:imp:3p; +déséquilibrais déséquilibrer VER 0.74 1.89 0.00 0.07 ind:imp:1s; +déséquilibrait déséquilibrer VER 0.74 1.89 0.00 0.27 ind:imp:3s; +déséquilibrant déséquilibrer VER 0.74 1.89 0.00 0.07 par:pre; +déséquilibre déséquilibre NOM m s 0.83 2.64 0.82 2.36 +déséquilibrer déséquilibrer VER 0.74 1.89 0.07 0.27 inf; +déséquilibres déséquilibre NOM m p 0.83 2.64 0.01 0.27 +déséquilibrez déséquilibrer VER 0.74 1.89 0.01 0.00 ind:pre:2p; +déséquilibrât déséquilibrer VER 0.74 1.89 0.00 0.07 sub:imp:3s; +déséquilibré déséquilibrer VER m s 0.74 1.89 0.41 0.47 par:pas; +déséquilibrée déséquilibrer VER f s 0.74 1.89 0.16 0.34 par:pas; +déséquilibrées déséquilibré NOM f p 0.20 1.42 0.01 0.07 +déséquilibrés déséquilibré ADJ m p 0.41 1.08 0.04 0.14 +déséquipent déséquiper VER 0.00 0.47 0.00 0.07 ind:pre:3p; +déséquiper déséquiper VER 0.00 0.47 0.00 0.20 inf; +déséquipé déséquiper VER m s 0.00 0.47 0.00 0.14 par:pas; +déséquipés déséquiper VER m p 0.00 0.47 0.00 0.07 par:pas; +désuète désuet ADJ f s 0.36 3.38 0.04 0.74 +désuètes désuet ADJ f p 0.36 3.38 0.14 0.54 +désuétude désuétude NOM f s 0.06 0.27 0.06 0.27 +désynchronisation désynchronisation NOM f s 0.01 0.00 0.01 0.00 +désynchronisé désynchroniser VER m s 0.01 0.07 0.01 0.07 par:pas; +dut devoir VER 3232.80 1318.24 1.91 44.19 ind:pas:3s; +détînt détenir VER 12.53 10.61 0.00 0.07 sub:imp:3s; +détacha détacher VER 19.69 65.47 0.13 6.22 ind:pas:3s; +détachable détachable ADJ s 0.14 0.00 0.14 0.00 +détachai détacher VER 19.69 65.47 0.00 0.14 ind:pas:1s; +détachaient détacher VER 19.69 65.47 0.01 3.99 ind:imp:3p; +détachais détacher VER 19.69 65.47 0.02 0.14 ind:imp:1s;ind:imp:2s; +détachait détacher VER 19.69 65.47 0.17 8.51 ind:imp:3s; +détachant détachant NOM m s 0.16 0.54 0.16 0.41 +détachants détachant NOM m p 0.16 0.54 0.00 0.14 +détache détacher VER 19.69 65.47 7.44 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +détachement détachement NOM m s 2.50 17.84 2.25 15.14 +détachements détachement NOM m p 2.50 17.84 0.25 2.70 +détachent détacher VER 19.69 65.47 0.45 3.31 ind:pre:3p; +détacher détacher VER 19.69 65.47 4.44 15.14 inf; +détacherai détacher VER 19.69 65.47 0.04 0.00 ind:fut:1s; +détacheraient détacher VER 19.69 65.47 0.00 0.07 cnd:pre:3p; +détacherais détacher VER 19.69 65.47 0.01 0.07 cnd:pre:1s; +détacherait détacher VER 19.69 65.47 0.02 0.41 cnd:pre:3s; +détacherons détacher VER 19.69 65.47 0.00 0.07 ind:fut:1p; +détacheront détacher VER 19.69 65.47 0.01 0.00 ind:fut:3p; +détaches détacher VER 19.69 65.47 0.23 0.34 ind:pre:2s; +détacheur détacheur NOM m s 0.10 0.00 0.10 0.00 +détachez détacher VER 19.69 65.47 3.83 0.41 imp:pre:2p;ind:pre:2p; +détachions détacher VER 19.69 65.47 0.00 0.07 ind:imp:1p; +détachons détacher VER 19.69 65.47 0.18 0.14 imp:pre:1p;ind:pre:1p; +détachât détacher VER 19.69 65.47 0.00 0.14 sub:imp:3s; +détachèrent détacher VER 19.69 65.47 0.01 0.81 ind:pas:3p; +détaché détacher VER m s 19.69 65.47 1.45 7.03 par:pas; +détachée détacher VER f s 19.69 65.47 0.57 2.64 par:pas; +détachées détaché ADJ f p 2.88 12.50 1.32 1.42 +détachés détacher VER m p 19.69 65.47 0.37 1.15 par:pas; +détail détail NOM m s 55.78 91.15 19.82 37.97 +détailla détailler VER 2.28 14.59 0.00 0.95 ind:pas:3s; +détaillai détailler VER 2.28 14.59 0.00 0.20 ind:pas:1s; +détaillaient détailler VER 2.28 14.59 0.00 0.20 ind:imp:3p; +détaillais détailler VER 2.28 14.59 0.00 0.34 ind:imp:1s; +détaillait détailler VER 2.28 14.59 0.02 1.89 ind:imp:3s; +détaillant détailler VER 2.28 14.59 0.21 1.28 par:pre; +détaillante détaillant ADJ f s 0.00 0.20 0.00 0.07 +détaillants détaillant NOM m p 0.14 0.14 0.06 0.07 +détaille détailler VER 2.28 14.59 0.20 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détailler détailler VER 2.28 14.59 0.14 4.26 inf; +détaillera détailler VER 2.28 14.59 0.01 0.00 ind:fut:3s; +détaillerai détailler VER 2.28 14.59 0.01 0.07 ind:fut:1s; +détaillez détailler VER 2.28 14.59 0.07 0.07 imp:pre:2p;ind:pre:2p; +détaillions détailler VER 2.28 14.59 0.00 0.07 ind:imp:1p; +détaillons détailler VER 2.28 14.59 0.00 0.07 ind:pre:1p; +détaillât détailler VER 2.28 14.59 0.00 0.07 sub:imp:3s; +détaillèrent détailler VER 2.28 14.59 0.00 0.14 ind:pas:3p; +détaillé détaillé ADJ m s 1.94 2.57 1.12 1.22 +détaillée détailler VER f s 2.28 14.59 0.68 0.74 par:pas; +détaillées détaillé ADJ f p 1.94 2.57 0.16 0.47 +détaillés détaillé ADJ m p 1.94 2.57 0.23 0.27 +détails détail NOM m p 55.78 91.15 35.96 53.18 +détala détaler VER 1.13 5.00 0.00 0.88 ind:pas:3s; +détalai détaler VER 1.13 5.00 0.00 0.34 ind:pas:1s; +détalaient détaler VER 1.13 5.00 0.01 0.34 ind:imp:3p; +détalait détaler VER 1.13 5.00 0.02 0.27 ind:imp:3s; +détalant détaler VER 1.13 5.00 0.01 0.54 par:pre; +détale détaler VER 1.13 5.00 0.28 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détalent détaler VER 1.13 5.00 0.06 0.20 ind:pre:3p; +détaler détaler VER 1.13 5.00 0.14 1.28 inf; +détaleraient détaler VER 1.13 5.00 0.01 0.00 cnd:pre:3p; +détaleront détaler VER 1.13 5.00 0.03 0.00 ind:fut:3p; +détales détaler VER 1.13 5.00 0.05 0.00 ind:pre:2s; +détalions détaler VER 1.13 5.00 0.00 0.07 ind:imp:1p; +détalonner détalonner VER 0.01 0.00 0.01 0.00 inf; +détalât détaler VER 1.13 5.00 0.00 0.07 sub:imp:3s; +détalèrent détaler VER 1.13 5.00 0.00 0.20 ind:pas:3p; +détalé détaler VER m s 1.13 5.00 0.52 0.27 par:pas; +détartrage détartrage NOM m s 0.12 0.00 0.12 0.00 +détartrant détartrant NOM m s 0.02 0.00 0.02 0.00 +détartrants détartrant ADJ m p 0.00 0.14 0.00 0.14 +détaxe détaxe NOM f s 0.02 0.00 0.01 0.00 +détaxes détaxe NOM f p 0.02 0.00 0.01 0.00 +détaxée détaxer VER f s 0.11 0.07 0.10 0.00 par:pas; +détaxées détaxer VER f p 0.11 0.07 0.01 0.07 par:pas; +détecta détecter VER 9.86 3.04 0.00 0.07 ind:pas:3s; +détectable détectable ADJ s 0.22 0.00 0.17 0.00 +détectables détectable ADJ p 0.22 0.00 0.05 0.00 +détectai détecter VER 9.86 3.04 0.00 0.07 ind:pas:1s; +détectaient détecter VER 9.86 3.04 0.01 0.00 ind:imp:3p; +détectait détecter VER 9.86 3.04 0.00 0.20 ind:imp:3s; +détecte détecter VER 9.86 3.04 2.23 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détectent détecter VER 9.86 3.04 0.50 0.27 ind:pre:3p; +détecter détecter VER 9.86 3.04 2.49 1.49 inf; +détectera détecter VER 9.86 3.04 0.09 0.00 ind:fut:3s; +détecteront détecter VER 9.86 3.04 0.07 0.00 ind:fut:3p; +détecteur détecteur NOM m s 8.05 0.27 5.19 0.20 +détecteurs détecteur NOM m p 8.05 0.27 2.86 0.07 +détectez détecter VER 9.86 3.04 0.07 0.00 imp:pre:2p;ind:pre:2p; +détection détection NOM f s 1.89 0.27 1.84 0.27 +détections détection NOM f p 1.89 0.27 0.05 0.00 +détective_conseil détective_conseil NOM s 0.01 0.00 0.01 0.00 +détective détective NOM s 24.61 3.92 20.77 2.36 +détectives_conseil détectives_conseil NOM p 0.01 0.00 0.01 0.00 +détectives détective NOM p 24.61 3.92 3.84 1.55 +détectons détecter VER 9.86 3.04 0.10 0.07 ind:pre:1p; +détecté détecter VER m s 9.86 3.04 2.94 0.27 par:pas; +détectée détecter VER f s 9.86 3.04 0.64 0.00 par:pas; +détectées détecter VER f p 9.86 3.04 0.15 0.07 par:pas; +détectés détecter VER m p 9.86 3.04 0.56 0.07 par:pas; +déteignaient déteindre VER 1.47 3.38 0.00 0.07 ind:imp:3p; +déteignait déteindre VER 1.47 3.38 0.01 0.14 ind:imp:3s; +déteignant déteindre VER 1.47 3.38 0.00 0.07 par:pre; +déteigne déteindre VER 1.47 3.38 0.13 0.07 sub:pre:3s; +déteignent déteindre VER 1.47 3.38 0.03 0.20 ind:pre:3p; +déteignes déteindre VER 1.47 3.38 0.01 0.00 sub:pre:2s; +déteindra déteindre VER 1.47 3.38 0.05 0.00 ind:fut:3s; +déteindre déteindre VER 1.47 3.38 0.51 0.61 inf; +déteint déteindre VER m s 1.47 3.38 0.73 1.42 ind:pre:3s;par:pas; +déteinte déteindre VER f s 1.47 3.38 0.00 0.27 par:pas; +déteintes déteindre VER f p 1.47 3.38 0.00 0.34 par:pas; +déteints déteindre VER m p 1.47 3.38 0.00 0.20 par:pas; +détela dételer VER 0.45 1.82 0.00 0.14 ind:pas:3s; +dételage dételage NOM m s 0.01 0.00 0.01 0.00 +dételaient dételer VER 0.45 1.82 0.01 0.07 ind:imp:3p; +dételait dételer VER 0.45 1.82 0.00 0.07 ind:imp:3s; +dételer dételer VER 0.45 1.82 0.04 0.61 inf; +dételez dételer VER 0.45 1.82 0.23 0.00 imp:pre:2p; +dételle dételer VER 0.45 1.82 0.16 0.07 imp:pre:2s;ind:pre:3s; +dételé dételer VER m s 0.45 1.82 0.02 0.47 par:pas; +dételée dételer VER f s 0.45 1.82 0.00 0.14 par:pas; +dételées dételer VER f p 0.45 1.82 0.00 0.14 par:pas; +dételés dételer VER m p 0.45 1.82 0.00 0.14 par:pas; +détenaient détenir VER 12.53 10.61 0.13 1.01 ind:imp:3p; +détenais détenir VER 12.53 10.61 0.06 0.27 ind:imp:1s;ind:imp:2s; +détenait détenir VER 12.53 10.61 0.60 2.91 ind:imp:3s; +détenant détenir VER 12.53 10.61 0.09 0.00 par:pre; +détend détendre VER 44.39 23.58 3.21 2.70 ind:pre:3s; +détendît détendre VER 44.39 23.58 0.00 0.07 sub:imp:3s; +détendaient détendre VER 44.39 23.58 0.10 0.74 ind:imp:3p; +détendais détendre VER 44.39 23.58 0.03 0.00 ind:imp:1s;ind:imp:2s; +détendait détendre VER 44.39 23.58 0.08 1.69 ind:imp:3s; +détendant détendre VER 44.39 23.58 0.01 0.47 par:pre; +détende détendre VER 44.39 23.58 0.33 0.14 sub:pre:1s;sub:pre:3s; +détendent détendre VER 44.39 23.58 0.15 0.74 ind:pre:3p; +détendes détendre VER 44.39 23.58 0.36 0.00 sub:pre:2s; +détendeur détendeur NOM m s 0.48 0.00 0.48 0.00 +détendez détendre VER 44.39 23.58 9.71 0.41 imp:pre:2p;ind:pre:2p; +détendiez détendre VER 44.39 23.58 0.09 0.07 ind:imp:2p; +détendions détendre VER 44.39 23.58 0.00 0.14 ind:imp:1p; +détendirent détendre VER 44.39 23.58 0.01 0.61 ind:pas:3p; +détendis détendre VER 44.39 23.58 0.00 0.20 ind:pas:1s; +détendit détendre VER 44.39 23.58 0.11 3.85 ind:pas:3s; +détendons détendre VER 44.39 23.58 0.07 0.00 imp:pre:1p;ind:pre:1p; +détendra détendre VER 44.39 23.58 0.55 0.07 ind:fut:3s; +détendrai détendre VER 44.39 23.58 0.05 0.00 ind:fut:1s; +détendraient détendre VER 44.39 23.58 0.01 0.07 cnd:pre:3p; +détendrait détendre VER 44.39 23.58 0.35 0.20 cnd:pre:3s; +détendre détendre VER 44.39 23.58 11.77 5.41 inf;; +détendrez détendre VER 44.39 23.58 0.02 0.00 ind:fut:2p; +détendrons détendre VER 44.39 23.58 0.01 0.00 ind:fut:1p; +détends détendre VER 44.39 23.58 15.11 0.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détendu détendu ADJ m s 2.90 7.43 1.77 3.99 +détendue détendu ADJ f s 2.90 7.43 0.89 1.76 +détendues détendu ADJ f p 2.90 7.43 0.02 0.27 +détendus détendu ADJ m p 2.90 7.43 0.22 1.42 +détenez détenir VER 12.53 10.61 0.47 0.00 imp:pre:2p;ind:pre:2p; +déteniez détenir VER 12.53 10.61 0.04 0.14 ind:imp:2p; +détenions détenir VER 12.53 10.61 0.01 0.07 ind:imp:1p; +détenir détenir VER 12.53 10.61 1.11 1.89 inf; +détenons détenir VER 12.53 10.61 0.64 0.14 imp:pre:1p;ind:pre:1p; +détente détente NOM f s 5.47 10.68 5.42 10.47 +détentes détente NOM f p 5.47 10.68 0.06 0.20 +détenteur détenteur NOM m s 0.67 1.55 0.33 0.81 +détenteurs détenteur NOM m p 0.67 1.55 0.23 0.68 +détention détention NOM f s 6.98 2.84 6.85 2.84 +détentions détention NOM f p 6.98 2.84 0.13 0.00 +détentrice détenteur NOM f s 0.67 1.55 0.11 0.07 +détentrices détentrice ADJ f p 0.00 0.07 0.00 0.07 +détenu détenu NOM m s 12.67 6.08 3.64 2.09 +détenue détenir VER f s 12.53 10.61 0.45 0.07 par:pas; +détenues détenu NOM f p 12.67 6.08 0.16 0.00 +détenus détenu NOM m p 12.67 6.08 8.57 3.72 +détergeant déterger VER 0.08 0.00 0.08 0.00 par:pre; +détergent détergent NOM m s 1.25 0.20 0.99 0.07 +détergents détergent NOM m p 1.25 0.20 0.26 0.14 +détermina déterminer VER 14.51 11.96 0.02 0.41 ind:pas:3s; +déterminai déterminer VER 14.51 11.96 0.00 0.07 ind:pas:1s; +déterminaient déterminer VER 14.51 11.96 0.01 0.41 ind:imp:3p; +déterminais déterminer VER 14.51 11.96 0.03 0.07 ind:imp:1s;ind:imp:2s; +déterminait déterminer VER 14.51 11.96 0.04 0.47 ind:imp:3s; +déterminant déterminant ADJ m s 0.41 1.69 0.33 0.74 +déterminante déterminant ADJ f s 0.41 1.69 0.04 0.68 +déterminantes déterminant ADJ f p 0.41 1.69 0.02 0.07 +déterminants déterminant ADJ m p 0.41 1.69 0.01 0.20 +détermination détermination NOM f s 2.75 4.86 2.75 4.59 +déterminations détermination NOM f p 2.75 4.86 0.00 0.27 +détermine déterminer VER 14.51 11.96 1.56 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déterminent déterminer VER 14.51 11.96 0.26 0.47 ind:pre:3p; +déterminer déterminer VER 14.51 11.96 6.10 4.32 inf; +déterminera déterminer VER 14.51 11.96 0.36 0.07 ind:fut:3s; +détermineraient déterminer VER 14.51 11.96 0.00 0.07 cnd:pre:3p; +déterminerait déterminer VER 14.51 11.96 0.03 0.14 cnd:pre:3s; +déterminerons déterminer VER 14.51 11.96 0.08 0.00 ind:fut:1p; +détermineront déterminer VER 14.51 11.96 0.19 0.00 ind:fut:3p; +déterminez déterminer VER 14.51 11.96 0.13 0.00 imp:pre:2p;ind:pre:2p; +déterminiez déterminer VER 14.51 11.96 0.04 0.00 ind:imp:2p; +déterminions déterminer VER 14.51 11.96 0.01 0.00 ind:imp:1p; +déterminisme déterminisme NOM m s 0.22 0.47 0.22 0.47 +déterministe déterministe ADJ s 0.10 0.14 0.10 0.07 +déterministes déterministe ADJ m p 0.10 0.14 0.00 0.07 +déterminons déterminer VER 14.51 11.96 0.21 0.00 imp:pre:1p;ind:pre:1p; +déterminèrent déterminer VER 14.51 11.96 0.00 0.27 ind:pas:3p; +déterminé déterminer VER m s 14.51 11.96 3.05 2.16 par:pas; +déterminée déterminer VER f s 14.51 11.96 1.46 1.28 par:pas; +déterminées déterminé ADJ f p 2.39 4.32 0.24 0.41 +déterminément déterminément ADV 0.00 0.34 0.00 0.34 +déterminés déterminer VER m p 14.51 11.96 0.67 0.54 par:pas; +déterra déterrer VER 5.44 3.51 0.04 0.14 ind:pas:3s; +déterrage déterrage NOM m s 0.01 0.00 0.01 0.00 +déterraient déterrer VER 5.44 3.51 0.01 0.20 ind:imp:3p; +déterrais déterrer VER 5.44 3.51 0.00 0.07 ind:imp:1s; +déterrait déterrer VER 5.44 3.51 0.02 0.27 ind:imp:3s; +déterrant déterrer VER 5.44 3.51 0.05 0.14 par:pre; +déterre déterrer VER 5.44 3.51 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déterrent déterrer VER 5.44 3.51 0.18 0.14 ind:pre:3p; +déterrer déterrer VER 5.44 3.51 2.05 0.68 inf; +déterrera déterrer VER 5.44 3.51 0.04 0.07 ind:fut:3s; +déterrerai déterrer VER 5.44 3.51 0.32 0.00 ind:fut:1s; +déterrerait déterrer VER 5.44 3.51 0.00 0.07 cnd:pre:3s; +déterrerez déterrer VER 5.44 3.51 0.01 0.00 ind:fut:2p; +déterreront déterrer VER 5.44 3.51 0.03 0.00 ind:fut:3p; +déterreur déterreur NOM m s 0.07 0.00 0.02 0.00 +déterreurs déterreur NOM m p 0.07 0.00 0.04 0.00 +déterreuse déterreur NOM f s 0.07 0.00 0.01 0.00 +déterrez déterrer VER 5.44 3.51 0.21 0.00 imp:pre:2p;ind:pre:2p; +déterrions déterrer VER 5.44 3.51 0.02 0.07 ind:imp:1p; +déterrons déterrer VER 5.44 3.51 0.02 0.00 imp:pre:1p;ind:pre:1p; +déterré déterrer VER m s 5.44 3.51 1.86 1.08 par:pas; +déterrée déterré NOM f s 0.40 0.07 0.08 0.00 +déterrées déterrer VER f p 5.44 3.51 0.03 0.07 par:pas; +déterrés déterrer VER m p 5.44 3.51 0.10 0.07 par:pas; +détersifs détersif ADJ m p 0.00 0.14 0.00 0.07 +détersive détersif ADJ f s 0.00 0.14 0.00 0.07 +détesta détester VER 122.87 62.64 0.11 0.61 ind:pas:3s; +détestable détestable ADJ s 1.93 5.34 1.68 4.12 +détestablement détestablement ADV 0.00 0.07 0.00 0.07 +détestables détestable ADJ p 1.93 5.34 0.25 1.22 +détestai détester VER 122.87 62.64 0.01 0.54 ind:pas:1s; +détestaient détester VER 122.87 62.64 0.73 2.16 ind:imp:3p; +détestais détester VER 122.87 62.64 5.48 3.65 ind:imp:1s;ind:imp:2s; +détestait détester VER 122.87 62.64 4.25 15.47 ind:imp:3s; +détestant détester VER 122.87 62.64 0.11 0.68 par:pre; +détestation détestation NOM f s 0.00 0.61 0.00 0.47 +détestations détestation NOM f p 0.00 0.61 0.00 0.14 +déteste détester VER 122.87 62.64 79.45 20.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +détestent détester VER 122.87 62.64 6.63 2.64 ind:pre:3p; +détester détester VER 122.87 62.64 6.35 5.47 inf;; +détestera détester VER 122.87 62.64 0.24 0.20 ind:fut:3s; +détesterai détester VER 122.87 62.64 0.26 0.00 ind:fut:1s; +détesteraient détester VER 122.87 62.64 0.38 0.07 cnd:pre:3p; +détesterais détester VER 122.87 62.64 1.32 0.88 cnd:pre:1s;cnd:pre:2s; +détesterait détester VER 122.87 62.64 0.30 0.14 cnd:pre:3s; +détesteras détester VER 122.87 62.64 0.23 0.00 ind:fut:2s; +détesteriez détester VER 122.87 62.64 0.01 0.00 cnd:pre:2p; +détesteront détester VER 122.87 62.64 0.07 0.00 ind:fut:3p; +détestes détester VER 122.87 62.64 8.13 1.82 ind:pre:2s;sub:pre:2s; +détestez détester VER 122.87 62.64 2.78 0.61 imp:pre:2p;ind:pre:2p; +détestiez détester VER 122.87 62.64 0.42 0.20 ind:imp:2p; +détestions détester VER 122.87 62.64 0.05 1.01 ind:imp:1p;sub:pre:1p; +détestons détester VER 122.87 62.64 0.64 0.61 imp:pre:1p;ind:pre:1p; +détestât détester VER 122.87 62.64 0.00 0.07 sub:imp:3s; +détesté détester VER m s 122.87 62.64 4.13 4.53 par:pas; +détestée détester VER f s 122.87 62.64 0.52 0.14 par:pas; +détestés détester VER m p 122.87 62.64 0.26 0.34 par:pas; +déçûmes décevoir VER 32.30 21.69 0.00 0.07 ind:pas:1p; +duègne duègne NOM f s 0.03 0.81 0.03 0.81 +déçois décevoir VER 32.30 21.69 3.45 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +déçoit décevoir VER 32.30 21.69 1.18 0.34 ind:pre:3s; +déçoive décevoir VER 32.30 21.69 0.03 0.14 sub:pre:1s;sub:pre:3s; +déçoivent décevoir VER 32.30 21.69 0.34 0.20 ind:pre:3p; +déçoives décevoir VER 32.30 21.69 0.02 0.00 sub:pre:2s; +déçu décevoir VER m s 32.30 21.69 10.09 9.12 par:pas; +déçue décevoir VER f s 32.30 21.69 4.37 3.38 par:pas; +déçues décevoir VER f p 32.30 21.69 0.18 0.20 par:pas; +déçurent décevoir VER 32.30 21.69 0.00 0.14 ind:pas:3p; +déçus décevoir VER m p 32.30 21.69 1.18 1.15 ind:pas:1s;par:pas; +déçut décevoir VER 32.30 21.69 0.01 0.81 ind:pas:3s; +détiendra détenir VER 12.53 10.61 0.02 0.07 ind:fut:3s; +détiendrai détenir VER 12.53 10.61 0.02 0.00 ind:fut:1s; +détiendraient détenir VER 12.53 10.61 0.00 0.07 cnd:pre:3p; +détiendrait détenir VER 12.53 10.61 0.01 0.00 cnd:pre:3s; +détiendras détenir VER 12.53 10.61 0.03 0.00 ind:fut:2s; +détiendrez détenir VER 12.53 10.61 0.01 0.00 ind:fut:2p; +détiendront détenir VER 12.53 10.61 0.02 0.00 ind:fut:3p; +détienne détenir VER 12.53 10.61 0.02 0.07 sub:pre:1s;sub:pre:3s; +détiennent détenir VER 12.53 10.61 1.21 0.61 ind:pre:3p; +détiens détenir VER 12.53 10.61 1.76 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détient détenir VER 12.53 10.61 3.48 1.28 ind:pre:3s; +détimbrée détimbré ADJ f s 0.00 0.27 0.00 0.27 +détint détenir VER 12.53 10.61 0.00 0.07 ind:pas:3s; +détisse détisser VER 0.00 0.07 0.00 0.07 ind:pre:1s; +détonait détoner VER 0.37 0.20 0.01 0.20 ind:imp:3s; +détonant détonant ADJ m s 0.09 0.34 0.03 0.27 +détonante détonant ADJ f s 0.09 0.34 0.01 0.00 +détonants détonant ADJ m p 0.09 0.34 0.05 0.07 +détonateur détonateur NOM m s 4.84 0.68 3.23 0.34 +détonateurs détonateur NOM m p 4.84 0.68 1.60 0.34 +détonation détonation NOM f s 1.44 9.26 1.17 4.66 +détonations détonation NOM f p 1.44 9.26 0.27 4.59 +détoner détoner VER 0.37 0.20 0.30 0.00 inf; +détonera détoner VER 0.37 0.20 0.04 0.00 ind:fut:3s; +détonna détonner VER 0.32 1.55 0.00 0.07 ind:pas:3s; +détonnaient détonner VER 0.32 1.55 0.00 0.27 ind:imp:3p; +détonnait détonner VER 0.32 1.55 0.12 0.61 ind:imp:3s; +détonnant détonner VER 0.32 1.55 0.03 0.00 par:pre; +détonne détonner VER 0.32 1.55 0.05 0.34 ind:pre:1s;ind:pre:3s; +détonnent détonner VER 0.32 1.55 0.01 0.07 ind:pre:3p; +détonner détonner VER 0.32 1.55 0.10 0.20 inf; +détonée détoner VER f s 0.37 0.20 0.01 0.00 par:pas; +détord détordre VER 0.01 0.07 0.01 0.00 ind:pre:3s; +détordit détordre VER 0.01 0.07 0.00 0.07 ind:pas:3s; +détortillai détortiller VER 0.00 0.14 0.00 0.07 ind:pas:1s; +détortille détortiller VER 0.00 0.14 0.00 0.07 ind:pre:3s; +détour détour NOM m s 6.82 24.86 5.43 16.76 +détourage détourage NOM m s 0.14 0.00 0.14 0.00 +détourna détourner VER 14.34 54.86 0.12 11.22 ind:pas:3s; +détournai détourner VER 14.34 54.86 0.00 1.96 ind:pas:1s; +détournaient détourner VER 14.34 54.86 0.00 1.76 ind:imp:3p; +détournais détourner VER 14.34 54.86 0.51 0.54 ind:imp:1s;ind:imp:2s; +détournait détourner VER 14.34 54.86 0.09 4.05 ind:imp:3s; +détournant détourner VER 14.34 54.86 0.32 5.07 par:pre; +détourne détourner VER 14.34 54.86 1.71 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détournement détournement NOM m s 2.60 2.09 2.35 1.89 +détournements détournement NOM m p 2.60 2.09 0.26 0.20 +détournent détourner VER 14.34 54.86 0.58 0.88 ind:pre:3p; +détourner détourner VER 14.34 54.86 5.27 12.77 inf;; +détournera détourner VER 14.34 54.86 0.23 0.07 ind:fut:3s; +détournerai détourner VER 14.34 54.86 0.05 0.07 ind:fut:1s; +détourneraient détourner VER 14.34 54.86 0.00 0.07 cnd:pre:3p; +détournerais détourner VER 14.34 54.86 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +détournerait détourner VER 14.34 54.86 0.20 0.27 cnd:pre:3s; +détourneront détourner VER 14.34 54.86 0.01 0.14 ind:fut:3p; +détournes détourner VER 14.34 54.86 0.16 0.14 ind:pre:2s; +détourneur détourneur NOM m s 0.00 0.07 0.00 0.07 +détournez détourner VER 14.34 54.86 0.90 0.20 imp:pre:2p;ind:pre:2p; +détourniez détourner VER 14.34 54.86 0.02 0.00 ind:imp:2p; +détournions détourner VER 14.34 54.86 0.01 0.07 ind:imp:1p; +détournons détourner VER 14.34 54.86 0.29 0.14 imp:pre:1p;ind:pre:1p; +détournât détourner VER 14.34 54.86 0.00 0.14 sub:imp:3s; +détournèrent détourner VER 14.34 54.86 0.12 0.61 ind:pas:3p; +détourné détourner VER m s 14.34 54.86 2.73 5.00 imp:pre:2s;par:pas; +détournée détourner VER f s 14.34 54.86 0.48 1.69 par:pas; +détournées détourné ADJ f p 0.65 2.77 0.06 0.47 +détournés détourner VER m p 14.34 54.86 0.46 1.42 par:pas; +détours détour NOM m p 6.82 24.86 1.39 8.11 +détrônaient détrôner VER 0.46 1.28 0.00 0.07 ind:imp:3p; +détrône détrôner VER 0.46 1.28 0.03 0.07 ind:pre:3s; +détrônement détrônement NOM m s 0.01 0.00 0.01 0.00 +détrôner détrôner VER 0.46 1.28 0.19 0.54 inf; +détrônât détrôner VER 0.46 1.28 0.00 0.07 sub:imp:3s; +détrôné détrôné ADJ m s 0.26 0.14 0.25 0.07 +détrônée détrôner VER f s 0.46 1.28 0.04 0.07 par:pas; +détracteur détracteur NOM m s 0.29 1.15 0.03 0.20 +détracteurs détracteur NOM m p 0.29 1.15 0.26 0.95 +détraquaient détraquer VER 2.24 2.30 0.02 0.07 ind:imp:3p; +détraquais détraquer VER 2.24 2.30 0.00 0.07 ind:imp:1s; +détraquant détraquer VER 2.24 2.30 0.00 0.14 par:pre; +détraque détraquer VER 2.24 2.30 0.47 0.61 imp:pre:2s;ind:pre:3s; +détraquement détraquement NOM m s 0.01 0.14 0.01 0.14 +détraquent détraquer VER 2.24 2.30 0.12 0.00 ind:pre:3p; +détraquer détraquer VER 2.24 2.30 0.41 0.34 inf; +détraquera détraquer VER 2.24 2.30 0.01 0.00 ind:fut:3s; +détraquerais détraquer VER 2.24 2.30 0.01 0.00 cnd:pre:1s; +détraqué détraqué NOM m s 1.57 0.88 1.06 0.41 +détraquée détraqué ADJ f s 0.84 1.62 0.29 0.81 +détraquées détraquer VER f p 2.24 2.30 0.01 0.07 par:pas; +détraqués détraqué NOM m p 1.57 0.88 0.39 0.41 +détrempaient détremper VER 0.40 5.34 0.00 0.07 ind:imp:3p; +détrempait détremper VER 0.40 5.34 0.00 0.20 ind:imp:3s; +détrempant détremper VER 0.40 5.34 0.00 0.07 par:pre; +détrempe détrempe NOM f s 0.10 0.14 0.10 0.14 +détremper détremper VER 0.40 5.34 0.00 0.07 inf; +détrempé détremper VER m s 0.40 5.34 0.02 1.82 par:pas; +détrempée détremper VER f s 0.40 5.34 0.21 1.42 par:pas; +détrempées détremper VER f p 0.40 5.34 0.01 0.81 par:pas; +détrempés détremper VER m p 0.40 5.34 0.16 0.68 par:pas; +détresse détresse NOM f s 8.70 19.05 8.48 18.38 +détresses détresse NOM f p 8.70 19.05 0.22 0.68 +détribalisée détribaliser VER f s 0.00 0.07 0.00 0.07 par:pas; +détricote détricoter VER 0.00 0.14 0.00 0.07 ind:pre:1s; +détricoter détricoter VER 0.00 0.14 0.00 0.07 inf; +détriment détriment NOM m s 0.57 3.04 0.57 2.97 +détriments détriment NOM m p 0.57 3.04 0.00 0.07 +détritiques détritique ADJ p 0.00 0.07 0.00 0.07 +détritus détritus NOM m 1.16 4.80 1.16 4.80 +détroit détroit NOM m s 3.04 1.55 3.02 1.35 +détroits détroit NOM m p 3.04 1.55 0.02 0.20 +détrompa détromper VER 2.61 3.04 0.00 0.14 ind:pas:3s; +détrompai détromper VER 2.61 3.04 0.00 0.14 ind:pas:1s; +détrompais détromper VER 2.61 3.04 0.00 0.14 ind:imp:1s; +détrompait détromper VER 2.61 3.04 0.00 0.07 ind:imp:3s; +détrompe détromper VER 2.61 3.04 0.97 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +détromper détromper VER 2.61 3.04 0.08 1.15 inf; +détromperai détromper VER 2.61 3.04 0.00 0.07 ind:fut:1s; +détrompez détromper VER 2.61 3.04 1.53 0.47 imp:pre:2p;ind:pre:2p; +détrompé détromper VER m s 2.61 3.04 0.01 0.20 par:pas; +détrompée détromper VER f s 2.61 3.04 0.01 0.14 par:pas; +détrompés détromper VER m p 2.61 3.04 0.01 0.07 par:pas; +détroncha détroncher VER 0.00 0.81 0.00 0.07 ind:pas:3s; +détronchant détroncher VER 0.00 0.81 0.00 0.14 par:pre; +détronche détroncher VER 0.00 0.81 0.00 0.20 ind:pre:3s; +détronchent détroncher VER 0.00 0.81 0.00 0.07 ind:pre:3p; +détroncher détroncher VER 0.00 0.81 0.00 0.07 inf; +détroncherais détroncher VER 0.00 0.81 0.00 0.07 cnd:pre:1s; +détronchèrent détroncher VER 0.00 0.81 0.00 0.07 ind:pas:3p; +détronché détroncher VER m s 0.00 0.81 0.00 0.14 par:pas; +détroussaient détrousser VER 0.29 0.47 0.01 0.00 ind:imp:3p; +détroussais détrousser VER 0.29 0.47 0.00 0.07 ind:imp:1s; +détroussant détrousser VER 0.29 0.47 0.00 0.07 par:pre; +détroussent détrousser VER 0.29 0.47 0.00 0.14 ind:pre:3p; +détrousser détrousser VER 0.29 0.47 0.11 0.00 inf; +détrousses détrousser VER 0.29 0.47 0.01 0.00 ind:pre:2s; +détrousseur détrousseur NOM m s 0.17 0.14 0.17 0.07 +détrousseurs détrousseur NOM m p 0.17 0.14 0.00 0.07 +détroussez détrousser VER 0.29 0.47 0.02 0.00 ind:pre:2p; +détroussé détrousser VER m s 0.29 0.47 0.12 0.07 par:pas; +détroussés détrousser VER m p 0.29 0.47 0.02 0.14 par:pas; +détruira détruire VER 126.08 52.36 2.67 0.27 ind:fut:3s; +détruirai détruire VER 126.08 52.36 1.84 0.14 ind:fut:1s; +détruiraient détruire VER 126.08 52.36 0.38 0.07 cnd:pre:3p; +détruirais détruire VER 126.08 52.36 0.30 0.14 cnd:pre:1s;cnd:pre:2s; +détruirait détruire VER 126.08 52.36 1.13 0.20 cnd:pre:3s; +détruiras détruire VER 126.08 52.36 0.58 0.00 ind:fut:2s; +détruire détruire VER 126.08 52.36 50.12 20.34 inf;; +détruirez détruire VER 126.08 52.36 0.28 0.07 ind:fut:2p; +détruiriez détruire VER 126.08 52.36 0.13 0.00 cnd:pre:2p; +détruirions détruire VER 126.08 52.36 0.04 0.07 cnd:pre:1p; +détruirons détruire VER 126.08 52.36 0.64 0.00 ind:fut:1p; +détruiront détruire VER 126.08 52.36 0.82 0.14 ind:fut:3p; +détruis détruire VER 126.08 52.36 4.62 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +détruisaient détruire VER 126.08 52.36 0.29 0.74 ind:imp:3p; +détruisais détruire VER 126.08 52.36 0.16 0.14 ind:imp:1s;ind:imp:2s; +détruisait détruire VER 126.08 52.36 0.41 1.89 ind:imp:3s; +détruisant détruire VER 126.08 52.36 1.54 1.22 par:pre; +détruise détruire VER 126.08 52.36 1.05 0.54 sub:pre:1s;sub:pre:3s; +détruisent détruire VER 126.08 52.36 3.52 1.28 ind:pre:3p; +détruises détruire VER 126.08 52.36 0.26 0.00 sub:pre:2s; +détruisez détruire VER 126.08 52.36 4.46 0.00 imp:pre:2p;ind:pre:2p; +détruisiez détruire VER 126.08 52.36 0.12 0.00 ind:imp:2p; +détruisions détruire VER 126.08 52.36 0.14 0.00 ind:imp:1p; +détruisirent détruire VER 126.08 52.36 0.06 0.14 ind:pas:3p; +détruisis détruire VER 126.08 52.36 0.00 0.07 ind:pas:1s; +détruisit détruire VER 126.08 52.36 0.27 0.95 ind:pas:3s; +détruisons détruire VER 126.08 52.36 1.26 0.00 imp:pre:1p;ind:pre:1p; +détruit détruire VER m s 126.08 52.36 35.42 14.26 ind:pre:3s;par:pas; +détruite détruire VER f s 126.08 52.36 7.49 4.32 par:pas; +détruites détruire VER f p 126.08 52.36 1.92 1.96 par:pas; +détruits détruire VER m p 126.08 52.36 4.16 2.91 par:pas; +détérioraient détériorer VER 1.68 3.18 0.01 0.07 ind:imp:3p; +détériorait détériorer VER 1.68 3.18 0.16 0.34 ind:imp:3s; +détériorant détériorer VER 1.68 3.18 0.01 0.14 par:pre; +détérioration détérioration NOM f s 0.68 0.54 0.64 0.54 +détériorations détérioration NOM f p 0.68 0.54 0.04 0.00 +détériore détériorer VER 1.68 3.18 0.48 0.61 ind:pre:3s; +détériorent détériorer VER 1.68 3.18 0.05 0.00 ind:pre:3p; +détériorer détériorer VER 1.68 3.18 0.36 0.68 inf; +détériorât détériorer VER 1.68 3.18 0.00 0.07 sub:imp:3s; +détérioré détériorer VER m s 1.68 3.18 0.19 0.34 par:pas; +détériorée détériorer VER f s 1.68 3.18 0.22 0.47 par:pas; +détériorées détériorer VER f p 1.68 3.18 0.15 0.20 par:pas; +détériorés détériorer VER m p 1.68 3.18 0.05 0.27 par:pas; +dévala dévaler VER 1.51 16.76 0.00 1.76 ind:pas:3s; +dévalai dévaler VER 1.51 16.76 0.00 0.34 ind:pas:1s; +dévalaient dévaler VER 1.51 16.76 0.00 0.88 ind:imp:3p; +dévalais dévaler VER 1.51 16.76 0.12 0.34 ind:imp:1s;ind:imp:2s; +dévalait dévaler VER 1.51 16.76 0.12 3.04 ind:imp:3s; +dévalant dévaler VER 1.51 16.76 0.22 1.96 par:pre; +dévale dévaler VER 1.51 16.76 0.52 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévalement dévalement NOM m s 0.00 0.34 0.00 0.34 +dévalent dévaler VER 1.51 16.76 0.08 1.28 ind:pre:3p; +dévaler dévaler VER 1.51 16.76 0.29 1.69 inf; +dévales dévaler VER 1.51 16.76 0.00 0.07 ind:pre:2s; +dévalions dévaler VER 1.51 16.76 0.01 0.20 ind:imp:1p; +dévalisai dévaliser VER 6.22 2.03 0.01 0.07 ind:pas:1s; +dévalisaient dévaliser VER 6.22 2.03 0.01 0.00 ind:imp:3p; +dévalisait dévaliser VER 6.22 2.03 0.16 0.00 ind:imp:3s; +dévalisant dévaliser VER 6.22 2.03 0.05 0.00 par:pre; +dévalise dévaliser VER 6.22 2.03 0.50 0.07 ind:pre:1s;ind:pre:3s; +dévalisent dévaliser VER 6.22 2.03 0.04 0.07 ind:pre:3p; +dévaliser dévaliser VER 6.22 2.03 1.93 0.68 inf; +dévalisera dévaliser VER 6.22 2.03 0.11 0.00 ind:fut:3s; +dévaliserait dévaliser VER 6.22 2.03 0.02 0.07 cnd:pre:3s; +dévalises dévaliser VER 6.22 2.03 0.06 0.00 ind:pre:2s; +dévalisez dévaliser VER 6.22 2.03 0.15 0.07 imp:pre:2p;ind:pre:2p; +dévalisé dévaliser VER m s 6.22 2.03 2.64 0.68 par:pas; +dévalisée dévaliser VER f s 6.22 2.03 0.39 0.14 par:pas; +dévalisés dévaliser VER m p 6.22 2.03 0.14 0.20 par:pas; +dévalons dévaler VER 1.51 16.76 0.01 0.14 imp:pre:1p;ind:pre:1p; +dévalorisaient dévaloriser VER 0.27 0.54 0.00 0.07 ind:imp:3p; +dévalorisait dévaloriser VER 0.27 0.54 0.00 0.07 ind:imp:3s; +dévalorisant dévalorisant ADJ m s 0.10 0.00 0.10 0.00 +dévalorisation dévalorisation NOM f s 0.01 0.27 0.01 0.27 +dévalorise dévaloriser VER 0.27 0.54 0.10 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévalorisent dévaloriser VER 0.27 0.54 0.02 0.07 ind:pre:3p; +dévaloriser dévaloriser VER 0.27 0.54 0.09 0.07 inf; +dévalorisez dévaloriser VER 0.27 0.54 0.01 0.00 imp:pre:2p; +dévalorisé dévaloriser VER m s 0.27 0.54 0.03 0.07 par:pas; +dévalorisée dévaloriser VER f s 0.27 0.54 0.02 0.14 par:pas; +dévalèrent dévaler VER 1.51 16.76 0.00 0.34 ind:pas:3p; +dévalé dévaler VER m s 1.51 16.76 0.14 1.22 par:pas; +dévaluait dévaluer VER 0.37 0.54 0.00 0.07 ind:imp:3s; +dévaluation dévaluation NOM f s 0.14 0.54 0.14 0.47 +dévaluations dévaluation NOM f p 0.14 0.54 0.00 0.07 +dévalée dévaler VER f s 1.51 16.76 0.00 0.07 par:pas; +dévalue dévaluer VER 0.37 0.54 0.15 0.07 ind:pre:1s;ind:pre:3s; +dévaluer dévaluer VER 0.37 0.54 0.00 0.20 inf; +dévaluera dévaluer VER 0.37 0.54 0.01 0.00 ind:fut:3s; +dévalué dévaluer VER m s 0.37 0.54 0.07 0.00 par:pas; +dévaluée dévaluer VER f s 0.37 0.54 0.14 0.14 par:pas; +dévalués dévaluer VER m p 0.37 0.54 0.00 0.07 par:pas; +dévasta dévaster VER 2.50 4.12 0.05 0.07 ind:pas:3s; +dévastaient dévaster VER 2.50 4.12 0.00 0.47 ind:imp:3p; +dévastait dévaster VER 2.50 4.12 0.01 0.14 ind:imp:3s; +dévastant dévaster VER 2.50 4.12 0.04 0.00 par:pre; +dévastateur dévastateur ADJ m s 1.43 1.89 0.38 0.61 +dévastateurs dévastateur ADJ m p 1.43 1.89 0.27 0.27 +dévastation dévastation NOM f s 0.44 1.28 0.41 0.81 +dévastations dévastation NOM f p 0.44 1.28 0.02 0.47 +dévastatrice dévastateur ADJ f s 1.43 1.89 0.70 0.74 +dévastatrices dévastateur ADJ f p 1.43 1.89 0.08 0.27 +dévaste dévaster VER 2.50 4.12 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévastent dévaster VER 2.50 4.12 0.16 0.20 ind:pre:3p; +dévaster dévaster VER 2.50 4.12 0.21 0.54 inf; +dévastera dévaster VER 2.50 4.12 0.01 0.00 ind:fut:3s; +dévasterait dévaster VER 2.50 4.12 0.05 0.00 cnd:pre:3s; +dévasteront dévaster VER 2.50 4.12 0.01 0.07 ind:fut:3p; +dévastèrent dévaster VER 2.50 4.12 0.00 0.14 ind:pas:3p; +dévasté dévaster VER m s 2.50 4.12 1.07 1.42 par:pas; +dévastée dévaster VER f s 2.50 4.12 0.42 0.61 par:pas; +dévastées dévasté ADJ f p 0.82 2.84 0.01 0.61 +dévastés dévasté ADJ m p 0.82 2.84 0.16 0.41 +déveinards déveinard NOM m p 0.00 0.07 0.00 0.07 +déveine déveine NOM f s 0.33 1.08 0.33 1.01 +déveines déveine NOM f p 0.33 1.08 0.00 0.07 +développa développer VER 20.14 21.42 0.29 0.81 ind:pas:3s; +développai développer VER 20.14 21.42 0.00 0.14 ind:pas:1s; +développaient développer VER 20.14 21.42 0.07 0.54 ind:imp:3p; +développais développer VER 20.14 21.42 0.06 0.27 ind:imp:1s;ind:imp:2s; +développait développer VER 20.14 21.42 0.25 2.23 ind:imp:3s; +développant développer VER 20.14 21.42 0.20 0.88 par:pre; +développe développer VER 20.14 21.42 4.09 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +développement développement NOM m s 7.09 11.15 6.63 10.20 +développements développement NOM m p 7.09 11.15 0.47 0.95 +développent développer VER 20.14 21.42 0.59 0.88 ind:pre:3p; +développer développer VER 20.14 21.42 7.84 6.96 inf; +développera développer VER 20.14 21.42 0.18 0.14 ind:fut:3s; +développerai développer VER 20.14 21.42 0.02 0.00 ind:fut:1s; +développeraient développer VER 20.14 21.42 0.14 0.00 cnd:pre:3p; +développerais développer VER 20.14 21.42 0.02 0.00 cnd:pre:1s; +développerait développer VER 20.14 21.42 0.03 0.07 cnd:pre:3s; +développerez développer VER 20.14 21.42 0.01 0.14 ind:fut:2p; +développeront développer VER 20.14 21.42 0.01 0.00 ind:fut:3p; +développeur développeur NOM m s 0.17 0.07 0.17 0.07 +développez développer VER 20.14 21.42 0.58 0.14 imp:pre:2p;ind:pre:2p; +développons développer VER 20.14 21.42 0.33 0.00 imp:pre:1p;ind:pre:1p; +développât développer VER 20.14 21.42 0.00 0.07 sub:imp:3s; +développèrent développer VER 20.14 21.42 0.03 0.07 ind:pas:3p; +développé développer VER m s 20.14 21.42 3.88 2.30 par:pas; +développée développer VER f s 20.14 21.42 0.83 1.08 par:pas; +développées développer VER f p 20.14 21.42 0.27 0.41 par:pas; +développés développé ADJ m p 3.61 1.55 0.64 0.14 +déventer déventer VER 0.01 0.00 0.01 0.00 inf; +dévergondage dévergondage NOM m s 0.03 0.27 0.03 0.20 +dévergondages dévergondage NOM m p 0.03 0.27 0.00 0.07 +dévergonde dévergonder VER 0.56 0.27 0.26 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévergondent dévergonder VER 0.56 0.27 0.01 0.07 ind:pre:3p; +dévergonder dévergonder VER 0.56 0.27 0.02 0.14 inf; +dévergondé dévergondé NOM m s 1.39 0.41 0.23 0.14 +dévergondée dévergondé NOM f s 1.39 0.41 1.06 0.27 +dévergondées dévergondé NOM f p 1.39 0.41 0.10 0.00 +dévergondés dévergondé ADJ m p 0.56 0.54 0.14 0.07 +dévernie dévernir VER f s 0.00 0.27 0.00 0.07 par:pas; +dévernies dévernir VER f p 0.00 0.27 0.00 0.07 par:pas; +dévernir dévernir VER 0.00 0.27 0.00 0.14 inf; +déverrouilla déverrouiller VER 0.91 1.01 0.00 0.14 ind:pas:3s; +déverrouillage déverrouillage NOM m s 0.28 0.00 0.28 0.00 +déverrouillait déverrouiller VER 0.91 1.01 0.00 0.20 ind:imp:3s; +déverrouille déverrouiller VER 0.91 1.01 0.18 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déverrouillent déverrouiller VER 0.91 1.01 0.01 0.07 ind:pre:3p; +déverrouiller déverrouiller VER 0.91 1.01 0.33 0.20 inf; +déverrouillez déverrouiller VER 0.91 1.01 0.23 0.00 imp:pre:2p; +déverrouillé déverrouiller VER m s 0.91 1.01 0.08 0.14 par:pas; +déverrouillée déverrouiller VER f s 0.91 1.01 0.07 0.14 par:pas; +déverrouillées déverrouiller VER f p 0.91 1.01 0.00 0.07 par:pas; +déversa déverser VER 1.97 12.09 0.01 0.61 ind:pas:3s; +déversaient déverser VER 1.97 12.09 0.04 1.15 ind:imp:3p; +déversais déverser VER 1.97 12.09 0.00 0.07 ind:imp:1s; +déversait déverser VER 1.97 12.09 0.06 2.84 ind:imp:3s; +déversant déverser VER 1.97 12.09 0.03 1.08 par:pre; +déverse déverser VER 1.97 12.09 0.58 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +déversement déversement NOM m s 0.17 0.14 0.14 0.07 +déversements déversement NOM m p 0.17 0.14 0.03 0.07 +déversent déverser VER 1.97 12.09 0.13 0.95 ind:pre:3p; +déverser déverser VER 1.97 12.09 0.61 2.23 inf; +déversera déverser VER 1.97 12.09 0.11 0.00 ind:fut:3s; +déverserai déverser VER 1.97 12.09 0.00 0.07 ind:fut:1s; +déverseraient déverser VER 1.97 12.09 0.00 0.14 cnd:pre:3p; +déverserait déverser VER 1.97 12.09 0.00 0.07 cnd:pre:3s; +déversez déverser VER 1.97 12.09 0.06 0.07 imp:pre:2p;ind:pre:2p; +déversoir déversoir NOM m s 0.18 0.95 0.18 0.95 +déversèrent déverser VER 1.97 12.09 0.00 0.20 ind:pas:3p; +déversé déverser VER m s 1.97 12.09 0.19 0.47 par:pas; +déversée déverser VER f s 1.97 12.09 0.09 0.34 par:pas; +déversées déverser VER f p 1.97 12.09 0.01 0.07 par:pas; +déversés déverser VER m p 1.97 12.09 0.06 0.41 par:pas; +duvet duvet NOM m s 1.70 8.85 1.58 7.57 +duveteuse duveteux ADJ f s 0.12 1.76 0.05 0.61 +duveteuses duveteux ADJ f p 0.12 1.76 0.02 0.41 +duveteux duveteux ADJ m s 0.12 1.76 0.05 0.74 +duvets duvet NOM m p 1.70 8.85 0.12 1.28 +duveté duveté ADJ m s 0.00 0.47 0.00 0.14 +duvetée duveté ADJ f s 0.00 0.47 0.00 0.20 +duvetées duveter VER f p 0.00 0.34 0.00 0.14 par:pas; +duvetés duveté ADJ m p 0.00 0.47 0.00 0.07 +dévia dévier VER 3.04 5.14 0.00 0.41 ind:pas:3s; +déviai dévier VER 3.04 5.14 0.00 0.07 ind:pas:1s; +déviaient dévier VER 3.04 5.14 0.00 0.07 ind:imp:3p; +déviait dévier VER 3.04 5.14 0.03 0.54 ind:imp:3s; +déviance déviance NOM f s 0.18 0.00 0.01 0.00 +déviances déviance NOM f p 0.18 0.00 0.17 0.00 +déviant déviant ADJ m s 0.45 0.00 0.33 0.00 +déviante déviant ADJ f s 0.45 0.00 0.02 0.00 +déviants déviant NOM m p 0.21 0.07 0.10 0.07 +déviateur déviateur ADJ m s 0.02 0.00 0.02 0.00 +déviation déviation NOM f s 1.29 1.15 1.00 0.95 +déviationnisme déviationnisme NOM m s 0.00 0.14 0.00 0.14 +déviationniste déviationniste ADJ s 0.00 0.07 0.00 0.07 +déviations déviation NOM f p 1.29 1.15 0.29 0.20 +dévida dévider VER 0.02 3.58 0.00 0.20 ind:pas:3s; +dévidais dévider VER 0.02 3.58 0.00 0.07 ind:imp:1s; +dévidait dévider VER 0.02 3.58 0.01 0.88 ind:imp:3s; +dévidant dévider VER 0.02 3.58 0.00 0.14 par:pre; +dévide dévider VER 0.02 3.58 0.01 0.54 ind:pre:1s;ind:pre:3s; +dévident dévider VER 0.02 3.58 0.00 0.07 ind:pre:3p; +dévider dévider VER 0.02 3.58 0.00 1.15 inf; +déviderait dévider VER 0.02 3.58 0.00 0.14 cnd:pre:3s; +dévideur dévideur NOM m s 0.00 0.07 0.00 0.07 +dévidions dévider VER 0.02 3.58 0.00 0.07 ind:imp:1p; +dévidoir dévidoir NOM m s 0.03 0.27 0.03 0.20 +dévidoirs dévidoir NOM m p 0.03 0.27 0.00 0.07 +dévidé dévider VER m s 0.02 3.58 0.00 0.27 par:pas; +dévidée dévider VER f s 0.02 3.58 0.00 0.07 par:pas; +dévie dévier VER 3.04 5.14 0.52 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévient dévier VER 3.04 5.14 0.04 0.14 ind:pre:3p; +dévier dévier VER 3.04 5.14 0.90 1.96 inf; +déviera dévier VER 3.04 5.14 0.02 0.00 ind:fut:3s; +dévierait dévier VER 3.04 5.14 0.01 0.14 cnd:pre:3s; +déviez dévier VER 3.04 5.14 0.13 0.00 imp:pre:2p;ind:pre:2p; +dévions dévier VER 3.04 5.14 0.01 0.07 ind:pre:1p; +dévirginiser dévirginiser VER 0.01 0.07 0.00 0.07 inf; +dévirginisée dévirginiser VER f s 0.01 0.07 0.01 0.00 par:pas; +dévirilisant déviriliser VER 0.00 0.14 0.00 0.07 par:pre; +dévirilisation dévirilisation NOM f s 0.00 0.20 0.00 0.20 +dévirilisé déviriliser VER m s 0.00 0.14 0.00 0.07 par:pas; +dévisage dévisager VER 2.13 24.66 0.54 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévisagea dévisager VER 2.13 24.66 0.00 6.01 ind:pas:3s; +dévisageai dévisager VER 2.13 24.66 0.01 1.01 ind:pas:1s; +dévisageaient dévisager VER 2.13 24.66 0.03 1.01 ind:imp:3p; +dévisageais dévisager VER 2.13 24.66 0.01 0.14 ind:imp:1s; +dévisageait dévisager VER 2.13 24.66 0.07 3.72 ind:imp:3s; +dévisageant dévisager VER 2.13 24.66 0.00 2.70 par:pre; +dévisagent dévisager VER 2.13 24.66 0.25 1.22 ind:pre:3p; +dévisageâmes dévisager VER 2.13 24.66 0.00 0.07 ind:pas:1p; +dévisageons dévisager VER 2.13 24.66 0.00 0.14 ind:pre:1p; +dévisager dévisager VER 2.13 24.66 0.67 2.91 inf; +dévisageraient dévisager VER 2.13 24.66 0.02 0.00 cnd:pre:3p; +dévisagez dévisager VER 2.13 24.66 0.04 0.07 imp:pre:2p;ind:pre:2p; +dévisagions dévisager VER 2.13 24.66 0.00 0.07 ind:imp:1p; +dévisagèrent dévisager VER 2.13 24.66 0.00 0.74 ind:pas:3p; +dévisagé dévisager VER m s 2.13 24.66 0.18 1.01 par:pas; +dévisagée dévisager VER f s 2.13 24.66 0.28 0.20 par:pas; +dévisagés dévisager VER m p 2.13 24.66 0.02 0.20 par:pas; +dévissa dévisser VER 1.34 4.59 0.00 0.74 ind:pas:3s; +dévissable dévissable ADJ m s 0.01 0.00 0.01 0.00 +dévissage dévissage NOM m s 0.00 0.07 0.00 0.07 +dévissaient dévisser VER 1.34 4.59 0.00 0.20 ind:imp:3p; +dévissait dévisser VER 1.34 4.59 0.00 0.47 ind:imp:3s; +dévissant dévisser VER 1.34 4.59 0.00 0.07 par:pre; +dévisse dévisser VER 1.34 4.59 0.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévisser dévisser VER 1.34 4.59 0.48 1.08 inf; +dévissera dévisser VER 1.34 4.59 0.01 0.07 ind:fut:3s; +dévissez dévisser VER 1.34 4.59 0.04 0.07 imp:pre:2p;ind:pre:2p; +dévissé dévisser VER m s 1.34 4.59 0.22 0.34 par:pas; +dévissée dévisser VER f s 1.34 4.59 0.18 0.14 par:pas; +dévissées dévisser VER f p 1.34 4.59 0.00 0.14 par:pas; +dévissés dévisser VER m p 1.34 4.59 0.00 0.20 par:pas; +dévitalisation dévitalisation NOM f s 0.01 0.07 0.01 0.07 +dévitaliser dévitaliser VER 0.11 0.00 0.05 0.00 inf; +dévitalisé dévitaliser VER m s 0.11 0.00 0.05 0.00 par:pas; +dévié dévier VER m s 3.04 5.14 0.96 0.88 par:pas; +déviée dévier VER f s 3.04 5.14 0.20 0.27 par:pas; +déviés dévier VER m p 3.04 5.14 0.17 0.14 par:pas; +dévoie dévoyer VER 0.38 0.88 0.10 0.07 ind:pre:3s; +dévoiement dévoiement NOM m s 0.00 0.14 0.00 0.14 +dévoila dévoiler VER 8.78 12.97 0.04 0.61 ind:pas:3s; +dévoilai dévoiler VER 8.78 12.97 0.00 0.07 ind:pas:1s; +dévoilaient dévoiler VER 8.78 12.97 0.00 0.41 ind:imp:3p; +dévoilais dévoiler VER 8.78 12.97 0.12 0.07 ind:imp:1s;ind:imp:2s; +dévoilait dévoiler VER 8.78 12.97 0.06 1.22 ind:imp:3s; +dévoilant dévoiler VER 8.78 12.97 0.25 1.42 par:pre; +dévoile dévoiler VER 8.78 12.97 0.99 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévoilement dévoilement NOM m s 0.06 0.47 0.06 0.41 +dévoilements dévoilement NOM m p 0.06 0.47 0.00 0.07 +dévoilent dévoiler VER 8.78 12.97 0.14 0.41 ind:pre:3p; +dévoiler dévoiler VER 8.78 12.97 3.80 3.78 inf; +dévoilera dévoiler VER 8.78 12.97 0.18 0.07 ind:fut:3s; +dévoilerai dévoiler VER 8.78 12.97 0.30 0.07 ind:fut:1s; +dévoilerais dévoiler VER 8.78 12.97 0.01 0.00 cnd:pre:1s; +dévoilerait dévoiler VER 8.78 12.97 0.11 0.07 cnd:pre:3s; +dévoilerez dévoiler VER 8.78 12.97 0.02 0.00 ind:fut:2p; +dévoileront dévoiler VER 8.78 12.97 0.04 0.00 ind:fut:3p; +dévoiles dévoiler VER 8.78 12.97 0.07 0.00 ind:pre:2s; +dévoilez dévoiler VER 8.78 12.97 0.29 0.00 imp:pre:2p; +dévoilons dévoiler VER 8.78 12.97 0.30 0.00 imp:pre:1p;ind:pre:1p; +dévoilé dévoiler VER m s 8.78 12.97 1.55 1.82 par:pas; +dévoilée dévoiler VER f s 8.78 12.97 0.16 0.74 par:pas; +dévoilées dévoiler VER f p 8.78 12.97 0.18 0.20 par:pas; +dévoilés dévoiler VER m p 8.78 12.97 0.16 0.20 par:pas; +dévolu dévolu NOM m s 0.17 0.74 0.16 0.74 +dévolue dévolu ADJ f s 0.07 1.89 0.03 0.54 +dévolues dévolu ADJ f p 0.07 1.89 0.00 0.20 +dévolus dévolu ADJ m p 0.07 1.89 0.01 0.61 +dévolution dévolution NOM f s 0.00 0.07 0.00 0.07 +dévonien dévonien NOM m s 0.01 0.00 0.01 0.00 +dévonienne dévonien ADJ f s 0.04 0.00 0.04 0.00 +dévora dévorer VER 19.70 37.64 0.19 0.88 ind:pas:3s; +dévorai dévorer VER 19.70 37.64 0.14 0.41 ind:pas:1s; +dévoraient dévorer VER 19.70 37.64 0.29 1.96 ind:imp:3p; +dévorais dévorer VER 19.70 37.64 0.13 1.01 ind:imp:1s;ind:imp:2s; +dévorait dévorer VER 19.70 37.64 0.38 4.32 ind:imp:3s; +dévorant dévorer VER 19.70 37.64 0.67 2.70 par:pre; +dévorante dévorant ADJ f s 0.94 3.24 0.45 1.89 +dévorantes dévorant ADJ f p 0.94 3.24 0.01 0.20 +dévorants dévorant ADJ m p 0.94 3.24 0.10 0.34 +dévorateur dévorateur ADJ m s 0.00 0.34 0.00 0.14 +dévorateurs dévorateur ADJ m p 0.00 0.34 0.00 0.14 +dévoration dévoration NOM f s 0.00 0.07 0.00 0.07 +dévoratrice dévorateur ADJ f s 0.00 0.34 0.00 0.07 +dévore dévorer VER 19.70 37.64 4.48 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dévorent dévorer VER 19.70 37.64 1.81 1.62 ind:pre:3p; +dévorer dévorer VER 19.70 37.64 4.08 7.70 ind:imp:3s;inf; +dévorera dévorer VER 19.70 37.64 0.71 0.14 ind:fut:3s; +dévorerai dévorer VER 19.70 37.64 0.16 0.14 ind:fut:1s; +dévoreraient dévorer VER 19.70 37.64 0.02 0.07 cnd:pre:3p; +dévorerais dévorer VER 19.70 37.64 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +dévorerait dévorer VER 19.70 37.64 0.19 0.34 cnd:pre:3s; +dévorerez dévorer VER 19.70 37.64 0.02 0.00 ind:fut:2p; +dévoreront dévorer VER 19.70 37.64 0.12 0.14 ind:fut:3p; +dévores dévorer VER 19.70 37.64 0.14 0.07 ind:pre:2s;sub:pre:2s; +dévoreur dévoreur NOM m s 0.48 1.08 0.16 0.41 +dévoreurs dévoreur NOM m p 0.48 1.08 0.01 0.27 +dévoreuse dévoreur NOM f s 0.48 1.08 0.31 0.34 +dévoreuses dévoreuse NOM f p 0.01 0.00 0.01 0.00 +dévorez dévorer VER 19.70 37.64 0.17 0.00 imp:pre:2p;ind:pre:2p; +dévorions dévorer VER 19.70 37.64 0.00 0.20 ind:imp:1p; +dévorons dévorer VER 19.70 37.64 0.02 0.14 imp:pre:1p;ind:pre:1p; +dévorèrent dévorer VER 19.70 37.64 0.00 0.47 ind:pas:3p; +dévoré dévorer VER m s 19.70 37.64 4.25 5.20 par:pas; +dévorée dévorer VER f s 19.70 37.64 0.76 2.43 par:pas; +dévorées dévorer VER f p 19.70 37.64 0.05 0.61 par:pas; +dévorés dévorer VER m p 19.70 37.64 0.92 2.16 par:pas; +dévot dévot NOM m s 0.89 2.03 0.48 0.41 +dévote dévot ADJ f s 0.56 1.96 0.06 0.88 +dévotement dévotement ADV 0.00 0.47 0.00 0.47 +dévotes dévot ADJ f p 0.56 1.96 0.10 0.27 +dévotieusement dévotieusement ADV 0.00 0.14 0.00 0.14 +dévotion dévotion NOM f s 2.34 8.11 2.26 7.03 +dévotionnelle dévotionnel ADJ f s 0.01 0.00 0.01 0.00 +dévotions dévotion NOM f p 2.34 8.11 0.08 1.08 +dévots dévot NOM m p 0.89 2.03 0.36 1.08 +dévoua dévouer VER 4.71 5.81 0.00 0.47 ind:pas:3s; +dévouaient dévouer VER 4.71 5.81 0.00 0.07 ind:imp:3p; +dévouait dévouer VER 4.71 5.81 0.00 0.27 ind:imp:3s; +dévouant dévouer VER 4.71 5.81 0.01 0.00 par:pre; +dévoue dévouer VER 4.71 5.81 0.52 0.47 ind:pre:1s;ind:pre:3s; +dévouement dévouement NOM m s 4.03 9.32 4.03 8.51 +dévouements dévouement NOM m p 4.03 9.32 0.00 0.81 +dévouent dévouer VER 4.71 5.81 0.05 0.27 ind:pre:3p; +dévouer dévouer VER 4.71 5.81 0.38 1.55 inf; +dévouera dévouer VER 4.71 5.81 0.02 0.07 ind:fut:3s; +dévouerais dévouer VER 4.71 5.81 0.01 0.00 cnd:pre:2s; +dévoues dévouer VER 4.71 5.81 0.04 0.07 ind:pre:2s; +dévouez dévouer VER 4.71 5.81 0.14 0.00 imp:pre:2p; +dévouât dévouer VER 4.71 5.81 0.00 0.07 sub:imp:3s; +dévoué dévoué ADJ m s 4.79 6.08 2.60 1.69 +dévouée dévoué ADJ f s 4.79 6.08 1.28 1.08 +dévouées dévoué ADJ f p 4.79 6.08 0.06 0.61 +dévoués dévoué ADJ m p 4.79 6.08 0.85 2.70 +dévoyait dévoyer VER 0.38 0.88 0.00 0.14 ind:imp:3s; +dévoyer dévoyer VER 0.38 0.88 0.12 0.41 inf; +dévoyez dévoyer VER 0.38 0.88 0.01 0.00 ind:pre:2p; +dévoyé dévoyé ADJ m s 0.22 0.68 0.18 0.54 +dévoyée dévoyer VER f s 0.38 0.88 0.10 0.00 par:pas; +dévoyées dévoyé ADJ f p 0.22 0.68 0.00 0.07 +dévoyés dévoyé ADJ m p 0.22 0.68 0.03 0.00 +dévêt dévêtir VER 1.28 5.95 0.00 0.20 ind:pre:3s; +dévêtaient dévêtir VER 1.28 5.95 0.00 0.14 ind:imp:3p; +dévêtait dévêtir VER 1.28 5.95 0.01 0.34 ind:imp:3s; +dévêtant dévêtir VER 1.28 5.95 0.02 0.27 par:pre; +dévêtez dévêtir VER 1.28 5.95 0.00 0.14 imp:pre:2p; +dévêtir dévêtir VER 1.28 5.95 0.47 1.89 inf; +dévêtit dévêtir VER 1.28 5.95 0.01 0.68 ind:pas:3s; +dévêtu dévêtir VER m s 1.28 5.95 0.32 0.74 par:pas; +dévêtue dévêtir VER f s 1.28 5.95 0.34 0.74 par:pas; +dévêtues dévêtir VER f p 1.28 5.95 0.07 0.34 par:pas; +dévêtus dévêtir VER m p 1.28 5.95 0.04 0.47 par:pas; +dézingue dézinguer VER 0.35 0.00 0.17 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +dézinguer dézinguer VER 0.35 0.00 0.16 0.00 inf; +dézingués dézinguer VER m p 0.35 0.00 0.02 0.00 par:pas; +dyke dyke NOM m s 0.16 0.07 0.16 0.00 +dykes dyke NOM m p 0.16 0.07 0.00 0.07 +dynamique dynamique ADJ s 2.68 2.09 1.97 1.69 +dynamiques dynamique ADJ p 2.68 2.09 0.71 0.41 +dynamiser dynamiser VER 0.07 0.20 0.02 0.00 inf; +dynamisera dynamiser VER 0.07 0.20 0.01 0.00 ind:fut:3s; +dynamiserait dynamiser VER 0.07 0.20 0.01 0.00 cnd:pre:3s; +dynamisez dynamiser VER 0.07 0.20 0.01 0.00 imp:pre:2p; +dynamisme dynamisme NOM m s 0.54 1.82 0.54 1.82 +dynamisé dynamiser VER m s 0.07 0.20 0.01 0.00 par:pas; +dynamisée dynamiser VER f s 0.07 0.20 0.00 0.07 par:pas; +dynamisées dynamiser VER f p 0.07 0.20 0.00 0.14 par:pas; +dynamitage dynamitage NOM m s 0.07 0.00 0.07 0.00 +dynamitait dynamiter VER 0.90 0.47 0.00 0.07 ind:imp:3s; +dynamitant dynamiter VER 0.90 0.47 0.01 0.07 par:pre; +dynamite dynamite NOM f s 8.12 2.50 8.12 2.50 +dynamiter dynamiter VER 0.90 0.47 0.43 0.07 inf; +dynamiteur dynamiteur NOM m s 0.05 0.34 0.04 0.14 +dynamiteurs dynamiteur NOM m p 0.05 0.34 0.01 0.20 +dynamitez dynamiter VER 0.90 0.47 0.03 0.00 imp:pre:2p; +dynamitons dynamiter VER 0.90 0.47 0.02 0.00 imp:pre:1p; +dynamité dynamiter VER m s 0.90 0.47 0.09 0.20 par:pas; +dynamitée dynamiter VER f s 0.90 0.47 0.12 0.00 par:pas; +dynamo dynamo NOM f s 0.20 0.95 0.19 0.54 +dynamomètre dynamomètre NOM m s 0.03 0.07 0.03 0.07 +dynamométrique dynamométrique ADJ f s 0.01 0.00 0.01 0.00 +dynamos dynamo NOM f p 0.20 0.95 0.01 0.41 +dynastie dynastie NOM f s 2.31 3.65 2.29 3.04 +dynasties dynastie NOM f p 2.31 3.65 0.02 0.61 +dynastique dynastique ADJ f s 0.01 0.07 0.01 0.07 +dynes dyne NOM f p 0.01 0.07 0.01 0.07 +dyscinésie dyscinésie NOM f s 0.01 0.00 0.01 0.00 +dyscrasie dyscrasie NOM f s 0.01 0.00 0.01 0.00 +dysenterie dysenterie NOM f s 0.80 1.49 0.80 1.42 +dysenteries dysenterie NOM f p 0.80 1.49 0.00 0.07 +dysentérique dysentérique ADJ s 0.00 0.27 0.00 0.07 +dysentériques dysentérique ADJ p 0.00 0.27 0.00 0.20 +dysfonction dysfonction NOM f s 0.09 0.00 0.09 0.00 +dysfonctionnement dysfonctionnement NOM m s 0.77 0.00 0.57 0.00 +dysfonctionnements dysfonctionnement NOM m p 0.77 0.00 0.20 0.00 +dyslexie dyslexie NOM f s 0.12 0.07 0.12 0.07 +dyslexique dyslexique ADJ m s 0.46 0.07 0.46 0.07 +dysménorrhée dysménorrhée NOM f s 0.01 0.00 0.01 0.00 +dyspepsie dyspepsie NOM f s 0.05 0.14 0.05 0.14 +dyspepsique dyspepsique ADJ s 0.01 0.07 0.01 0.07 +dyspeptique dyspeptique ADJ s 0.02 0.07 0.02 0.07 +dysphonie dysphonie NOM f s 0.01 0.00 0.01 0.00 +dysphorie dysphorie NOM f s 0.02 0.00 0.02 0.00 +dysplasie dysplasie NOM f s 0.06 0.07 0.06 0.07 +dyspnée dyspnée NOM f s 0.05 0.00 0.05 0.00 +dyspnéique dyspnéique ADJ f s 0.00 0.14 0.00 0.07 +dyspnéiques dyspnéique ADJ f p 0.00 0.14 0.00 0.07 +dysthymie dysthymie NOM f s 0.10 0.07 0.10 0.07 +dystocie dystocie NOM f s 0.03 0.00 0.03 0.00 +dystrophie dystrophie NOM f s 0.05 0.00 0.05 0.00 +dysurie dysurie NOM f s 0.01 0.00 0.01 0.00 +dytique dytique NOM m s 0.00 0.07 0.00 0.07 +e_commerce e_commerce NOM m s 0.03 0.00 0.03 0.00 +e_mail e_mail NOM m s 6.47 0.00 4.16 0.00 +e_mail e_mail NOM m p 6.47 0.00 2.32 0.00 +e e NOM m 60.91 28.99 60.91 28.99 +eûmes avoir AUX 18559.23 12800.81 0.14 1.08 ind:pas:1p; +eût avoir AUX 18559.23 12800.81 6.38 203.51 sub:imp:3s; +eûtes avoir VER 13573.20 6426.49 0.01 0.00 ind:pas:2p; +east_river east_river NOM f s 0.00 0.07 0.00 0.07 +eau_de_vie eau_de_vie NOM f s 3.17 4.73 3.05 4.73 +eau_forte eau_forte NOM f s 0.30 0.27 0.30 0.27 +eau_minute eau_minute NOM f s 0.01 0.00 0.01 0.00 +eau eau NOM f s 305.74 459.86 290.61 417.84 +eau_de_vie eau_de_vie NOM f p 3.17 4.73 0.12 0.00 +eaux_fortes eaux_fortes NOM f p 0.00 0.14 0.00 0.14 +eaux eau NOM f p 305.74 459.86 15.14 42.03 +ecce_homo ecce_homo ADV 0.20 0.20 0.20 0.20 +ecchymose ecchymose NOM f s 0.91 1.22 0.23 0.34 +ecchymoses ecchymose NOM f p 0.91 1.22 0.67 0.88 +ecchymosé ecchymosé ADJ m s 0.01 0.07 0.01 0.00 +ecchymosée ecchymosé ADJ f s 0.01 0.07 0.00 0.07 +ecclésiale ecclésial ADJ f s 0.00 0.20 0.00 0.20 +ecclésiastique ecclésiastique ADJ s 0.48 2.91 0.35 1.89 +ecclésiastiques ecclésiastique ADJ p 0.48 2.91 0.12 1.01 +ecsta ecsta ADV 0.01 0.00 0.01 0.00 +ecstasy ecstasy NOM m s 3.85 0.00 3.85 0.00 +ectasie ectasie NOM f s 0.01 0.00 0.01 0.00 +ecthyma ecthyma NOM m s 0.00 0.07 0.00 0.07 +ectodermique ectodermique ADJ f s 0.01 0.00 0.01 0.00 +ectopie ectopie NOM f s 0.04 0.00 0.04 0.00 +ectopique ectopique ADJ f s 0.04 0.00 0.04 0.00 +ectoplasme ectoplasme NOM m s 0.71 0.95 0.60 0.47 +ectoplasmes ectoplasme NOM m p 0.71 0.95 0.11 0.47 +ectoplasmique ectoplasmique ADJ s 0.05 0.34 0.03 0.20 +ectoplasmiques ectoplasmique ADJ f p 0.05 0.34 0.02 0.14 +eczéma eczéma NOM m s 0.64 1.55 0.64 1.42 +eczémas eczéma NOM m p 0.64 1.55 0.00 0.14 +eczémateuses eczémateux ADJ f p 0.01 0.14 0.01 0.07 +eczémateux eczémateux NOM m 0.01 0.07 0.01 0.07 +edelweiss edelweiss NOM m 0.00 0.54 0.00 0.54 +edwardienne edwardien ADJ f s 0.00 0.07 0.00 0.07 +efface effacer VER 29.02 70.34 6.19 11.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effacement effacement NOM m s 0.36 2.77 0.36 2.70 +effacements effacement NOM m p 0.36 2.77 0.00 0.07 +effacent effacer VER 29.02 70.34 1.00 3.58 ind:pre:3p; +effacer effacer VER 29.02 70.34 10.05 18.31 inf; +effacera effacer VER 29.02 70.34 0.73 0.88 ind:fut:3s; +effacerai effacer VER 29.02 70.34 0.23 0.14 ind:fut:1s; +effaceraient effacer VER 29.02 70.34 0.02 0.00 cnd:pre:3p; +effacerais effacer VER 29.02 70.34 0.05 0.07 cnd:pre:1s;cnd:pre:2s; +effacerait effacer VER 29.02 70.34 0.21 0.74 cnd:pre:3s; +effaceras effacer VER 29.02 70.34 0.03 0.20 ind:fut:2s; +effacerez effacer VER 29.02 70.34 0.03 0.00 ind:fut:2p; +effacerions effacer VER 29.02 70.34 0.01 0.00 cnd:pre:1p; +effacerons effacer VER 29.02 70.34 0.13 0.00 ind:fut:1p; +effaceront effacer VER 29.02 70.34 0.15 0.27 ind:fut:3p; +effaces effacer VER 29.02 70.34 0.47 0.07 ind:pre:2s; +effaceur effaceur NOM m s 0.10 0.00 0.10 0.00 +effacez effacer VER 29.02 70.34 0.89 0.20 imp:pre:2p;ind:pre:2p; +effaciez effacer VER 29.02 70.34 0.05 0.00 ind:imp:2p; +effacions effacer VER 29.02 70.34 0.01 0.07 ind:imp:1p; +effacèrent effacer VER 29.02 70.34 0.00 1.01 ind:pas:3p; +effacé effacer VER m s 29.02 70.34 5.24 6.96 par:pas; +effacée effacer VER f s 29.02 70.34 1.51 3.31 par:pas; +effacées effacer VER f p 29.02 70.34 0.50 1.96 par:pas; +effacés effacer VER m p 29.02 70.34 0.68 1.69 par:pas; +effara effarer VER 0.11 1.96 0.00 0.07 ind:pas:3s; +effaraient effarer VER 0.11 1.96 0.00 0.07 ind:imp:3p; +effarait effarer VER 0.11 1.96 0.00 0.14 ind:imp:3s; +effarant effarant ADJ m s 1.08 2.57 0.81 0.81 +effarante effarant ADJ f s 1.08 2.57 0.22 1.28 +effarantes effarant ADJ f p 1.08 2.57 0.00 0.34 +effarants effarant ADJ m p 1.08 2.57 0.05 0.14 +effare effarer VER 0.11 1.96 0.01 0.20 ind:pre:1s;ind:pre:3s; +effarement effarement NOM m s 0.00 1.82 0.00 1.82 +effarer effarer VER 0.11 1.96 0.02 0.00 inf; +effaroucha effaroucher VER 0.63 5.20 0.00 0.07 ind:pas:3s; +effarouchaient effaroucher VER 0.63 5.20 0.00 0.20 ind:imp:3p; +effarouchait effaroucher VER 0.63 5.20 0.00 0.68 ind:imp:3s; +effarouchant effaroucher VER 0.63 5.20 0.00 0.20 par:pre; +effarouche effaroucher VER 0.63 5.20 0.29 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effarouchement effarouchement NOM m s 0.00 0.20 0.00 0.07 +effarouchements effarouchement NOM m p 0.00 0.20 0.00 0.14 +effarouchent effaroucher VER 0.63 5.20 0.30 0.20 ind:pre:3p; +effaroucher effaroucher VER 0.63 5.20 0.02 1.96 inf; +effarouches effaroucher VER 0.63 5.20 0.00 0.07 ind:pre:2s; +effarouchâmes effaroucher VER 0.63 5.20 0.00 0.14 ind:pas:1p; +effarouchât effaroucher VER 0.63 5.20 0.00 0.20 sub:imp:3s; +effarouché effarouché ADJ m s 0.81 2.50 0.06 0.74 +effarouchée effarouché ADJ f s 0.81 2.50 0.72 0.34 +effarouchées effarouché ADJ f p 0.81 2.50 0.01 0.68 +effarouchés effarouché ADJ m p 0.81 2.50 0.03 0.74 +effarèrent effarer VER 0.11 1.96 0.00 0.07 ind:pas:3p; +effaré effarer VER m s 0.11 1.96 0.05 0.54 par:pas; +effarée effaré ADJ f s 0.13 3.45 0.10 0.88 +effarées effaré ADJ f p 0.13 3.45 0.00 0.14 +effarés effarer VER m p 0.11 1.96 0.02 0.27 par:pas; +effarvatte effarvatte NOM f s 0.00 0.14 0.00 0.07 +effarvattes effarvatte NOM f p 0.00 0.14 0.00 0.07 +effaça effacer VER 29.02 70.34 0.02 5.27 ind:pas:3s; +effaçable effaçable ADJ s 0.01 0.07 0.01 0.00 +effaçables effaçable ADJ p 0.01 0.07 0.00 0.07 +effaçage effaçage NOM m s 0.01 0.00 0.01 0.00 +effaçai effacer VER 29.02 70.34 0.00 0.14 ind:pas:1s; +effaçaient effacer VER 29.02 70.34 0.06 2.50 ind:imp:3p; +effaçais effacer VER 29.02 70.34 0.02 0.34 ind:imp:1s;ind:imp:2s; +effaçait effacer VER 29.02 70.34 0.20 7.43 ind:imp:3s; +effaçant effacer VER 29.02 70.34 0.27 2.97 par:pre; +effaçassent effacer VER 29.02 70.34 0.00 0.07 sub:imp:3p; +effaçons effacer VER 29.02 70.34 0.25 0.07 imp:pre:1p;ind:pre:1p; +effaçât effacer VER 29.02 70.34 0.00 0.41 sub:imp:3s; +effectif effectif NOM m s 2.63 7.64 0.62 2.23 +effectifs effectif NOM m p 2.63 7.64 2.02 5.41 +effective effectif ADJ f s 0.57 2.77 0.20 1.22 +effectivement effectivement ADV 13.57 16.28 13.57 16.28 +effectives effectif ADJ f p 0.57 2.77 0.01 0.14 +effectivité effectivité NOM f s 0.00 0.07 0.00 0.07 +effectua effectuer VER 10.53 15.20 0.02 1.01 ind:pas:3s; +effectuai effectuer VER 10.53 15.20 0.00 0.27 ind:pas:1s; +effectuaient effectuer VER 10.53 15.20 0.02 0.95 ind:imp:3p; +effectuais effectuer VER 10.53 15.20 0.08 0.00 ind:imp:1s; +effectuait effectuer VER 10.53 15.20 0.11 1.35 ind:imp:3s; +effectuant effectuer VER 10.53 15.20 0.13 0.81 par:pre; +effectue effectuer VER 10.53 15.20 0.90 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effectuent effectuer VER 10.53 15.20 0.04 0.07 ind:pre:3p; +effectuer effectuer VER 10.53 15.20 2.84 4.59 inf; +effectuera effectuer VER 10.53 15.20 0.23 0.07 ind:fut:3s; +effectuerai effectuer VER 10.53 15.20 0.05 0.00 ind:fut:1s; +effectuerait effectuer VER 10.53 15.20 0.00 0.20 cnd:pre:3s; +effectuerons effectuer VER 10.53 15.20 0.15 0.00 ind:fut:1p; +effectues effectuer VER 10.53 15.20 0.02 0.07 ind:pre:2s; +effectuez effectuer VER 10.53 15.20 0.23 0.00 imp:pre:2p;ind:pre:2p; +effectuions effectuer VER 10.53 15.20 0.01 0.07 ind:imp:1p; +effectuons effectuer VER 10.53 15.20 0.52 0.00 imp:pre:1p;ind:pre:1p; +effectué effectuer VER m s 10.53 15.20 3.43 2.30 par:pas; +effectuée effectuer VER f s 10.53 15.20 0.95 1.08 par:pas; +effectuées effectuer VER f p 10.53 15.20 0.32 0.81 par:pas; +effectués effectuer VER m p 10.53 15.20 0.46 0.61 par:pas; +effendi effendi NOM m s 0.19 1.62 0.19 1.62 +effervescence effervescence NOM f s 0.40 3.85 0.40 3.78 +effervescences effervescence NOM f p 0.40 3.85 0.00 0.07 +effervescent effervescent ADJ m s 0.09 0.88 0.04 0.34 +effervescente effervescent ADJ f s 0.09 0.88 0.04 0.20 +effervescentes effervescent ADJ f p 0.09 0.88 0.00 0.14 +effervescents effervescent ADJ m p 0.09 0.88 0.01 0.20 +effet effet NOM m s 116.75 192.36 99.17 173.18 +effets effet NOM m p 116.75 192.36 17.58 19.19 +effeuilla effeuiller VER 0.17 1.89 0.00 0.07 ind:pas:3s; +effeuillage effeuillage NOM m s 0.08 0.07 0.08 0.07 +effeuillaient effeuiller VER 0.17 1.89 0.00 0.14 ind:imp:3p; +effeuillait effeuiller VER 0.17 1.89 0.00 0.27 ind:imp:3s; +effeuillant effeuiller VER 0.17 1.89 0.01 0.00 par:pre; +effeuille effeuiller VER 0.17 1.89 0.00 0.47 ind:pre:1s;ind:pre:3s; +effeuillent effeuiller VER 0.17 1.89 0.00 0.07 ind:pre:3p; +effeuiller effeuiller VER 0.17 1.89 0.12 0.41 inf; +effeuilleras effeuiller VER 0.17 1.89 0.00 0.07 ind:fut:2s; +effeuilleuse effeuilleur NOM f s 0.11 0.20 0.11 0.14 +effeuilleuses effeuilleuse NOM f p 0.06 0.00 0.06 0.00 +effeuillez effeuiller VER 0.17 1.89 0.01 0.00 imp:pre:2p; +effeuillèrent effeuiller VER 0.17 1.89 0.00 0.07 ind:pas:3p; +effeuillé effeuiller VER m s 0.17 1.89 0.01 0.07 par:pas; +effeuillée effeuiller VER f s 0.17 1.89 0.01 0.20 par:pas; +effeuillés effeuiller VER m p 0.17 1.89 0.01 0.07 par:pas; +efficace efficace ADJ s 14.54 15.27 12.19 12.23 +efficacement efficacement ADV 0.67 2.23 0.67 2.23 +efficaces efficace ADJ p 14.54 15.27 2.35 3.04 +efficacité efficacité NOM f s 3.36 8.51 3.36 8.51 +efficience efficience NOM f s 0.01 0.34 0.01 0.34 +efficient efficient ADJ m s 0.14 0.41 0.00 0.20 +efficiente efficient ADJ f s 0.14 0.41 0.14 0.07 +efficientes efficient ADJ f p 0.14 0.41 0.00 0.07 +efficients efficient ADJ m p 0.14 0.41 0.00 0.07 +effigie effigie NOM f s 1.60 4.19 1.52 3.38 +effigies effigie NOM f p 1.60 4.19 0.07 0.81 +effila effiler VER 0.07 2.43 0.00 0.07 ind:pas:3s; +effilaient effiler VER 0.07 2.43 0.00 0.07 ind:imp:3p; +effilait effiler VER 0.07 2.43 0.00 0.14 ind:imp:3s; +effilant effiler VER 0.07 2.43 0.00 0.20 par:pre; +effile effiler VER 0.07 2.43 0.00 0.20 ind:pre:3s; +effilement effilement NOM m s 0.00 0.07 0.00 0.07 +effilent effiler VER 0.07 2.43 0.01 0.07 ind:pre:3p; +effiler effiler VER 0.07 2.43 0.03 0.27 inf; +effilochage effilochage NOM m s 0.00 0.07 0.00 0.07 +effilochaient effilocher VER 0.20 6.35 0.00 0.47 ind:imp:3p; +effilochait effilocher VER 0.20 6.35 0.01 0.88 ind:imp:3s; +effilochant effilocher VER 0.20 6.35 0.00 0.27 par:pre; +effiloche effilocher VER 0.20 6.35 0.05 0.95 ind:pre:3s; +effilochent effilocher VER 0.20 6.35 0.00 0.34 ind:pre:3p; +effilocher effilocher VER 0.20 6.35 0.00 0.47 inf; +effilochera effilocher VER 0.20 6.35 0.01 0.07 ind:fut:3s; +effilochèrent effilocher VER 0.20 6.35 0.00 0.07 ind:pas:3p; +effiloché effilocher VER m s 0.20 6.35 0.11 0.81 par:pas; +effilochée effilocher VER f s 0.20 6.35 0.02 0.88 par:pas; +effilochées effilocher VER f p 0.20 6.35 0.00 0.47 par:pas; +effilochure effilochure NOM f s 0.00 0.47 0.00 0.20 +effilochures effilochure NOM f p 0.00 0.47 0.00 0.27 +effilochés effilocher VER m p 0.20 6.35 0.00 0.68 par:pas; +effilé effilé ADJ m s 0.08 4.46 0.06 1.08 +effilée effiler VER f s 0.07 2.43 0.01 0.68 par:pas; +effilées effiler VER f p 0.07 2.43 0.02 0.41 par:pas; +effilure effilure NOM f s 0.00 0.14 0.00 0.07 +effilures effilure NOM f p 0.00 0.14 0.00 0.07 +effilés effilé ADJ m p 0.08 4.46 0.01 1.35 +efflanqué efflanqué ADJ m s 0.14 3.92 0.14 2.30 +efflanquée efflanqué ADJ f s 0.14 3.92 0.00 0.61 +efflanquées efflanqué ADJ f p 0.14 3.92 0.00 0.47 +efflanqués efflanquer VER m p 0.01 1.28 0.01 0.27 par:pas; +effleura effleurer VER 3.23 25.68 0.01 4.93 ind:pas:3s; +effleurage effleurage NOM m s 0.00 0.07 0.00 0.07 +effleurai effleurer VER 3.23 25.68 0.00 0.14 ind:pas:1s; +effleuraient effleurer VER 3.23 25.68 0.00 0.88 ind:imp:3p; +effleurais effleurer VER 3.23 25.68 0.00 0.20 ind:imp:1s; +effleurait effleurer VER 3.23 25.68 0.10 2.77 ind:imp:3s; +effleurant effleurer VER 3.23 25.68 0.12 1.49 par:pre; +effleure effleurer VER 3.23 25.68 0.54 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effleurement effleurement NOM m s 0.07 1.22 0.03 0.81 +effleurements effleurement NOM m p 0.07 1.22 0.04 0.41 +effleurent effleurer VER 3.23 25.68 0.05 0.74 ind:pre:3p; +effleurer effleurer VER 3.23 25.68 0.62 4.59 inf; +effleurera effleurer VER 3.23 25.68 0.00 0.14 ind:fut:3s; +effleurerait effleurer VER 3.23 25.68 0.01 0.20 cnd:pre:3s; +effleureront effleurer VER 3.23 25.68 0.00 0.07 ind:fut:3p; +effleures effleurer VER 3.23 25.68 0.03 0.07 ind:pre:2s; +effleurez effleurer VER 3.23 25.68 0.04 0.07 imp:pre:2p;ind:pre:2p; +effleurâmes effleurer VER 3.23 25.68 0.00 0.14 ind:pas:1p; +effleurât effleurer VER 3.23 25.68 0.00 0.07 sub:imp:3s; +effleurèrent effleurer VER 3.23 25.68 0.00 0.34 ind:pas:3p; +effleuré effleurer VER m s 3.23 25.68 1.27 3.18 par:pas; +effleurée effleurer VER f s 3.23 25.68 0.41 1.49 par:pas; +effleurées effleurer VER f p 3.23 25.68 0.00 0.20 par:pas; +effleurés effleurer VER m p 3.23 25.68 0.04 0.20 par:pas; +efflorescence efflorescence NOM f s 0.01 0.27 0.01 0.27 +effluent effluent NOM m s 0.01 0.00 0.01 0.00 +effluve effluve NOM m s 0.09 6.49 0.02 0.61 +effluves effluve NOM m p 0.09 6.49 0.06 5.88 +effondra effondrer VER 13.24 25.74 0.24 3.72 ind:pas:3s; +effondrai effondrer VER 13.24 25.74 0.02 0.34 ind:pas:1s; +effondraient effondrer VER 13.24 25.74 0.01 0.81 ind:imp:3p; +effondrais effondrer VER 13.24 25.74 0.00 0.14 ind:imp:1s; +effondrait effondrer VER 13.24 25.74 0.15 2.50 ind:imp:3s; +effondrant effondrer VER 13.24 25.74 0.04 0.34 par:pre; +effondre effondrer VER 13.24 25.74 3.19 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effondrement effondrement NOM m s 1.83 6.82 1.82 6.28 +effondrements effondrement NOM m p 1.83 6.82 0.01 0.54 +effondrent effondrer VER 13.24 25.74 0.41 1.15 ind:pre:3p; +effondrer effondrer VER 13.24 25.74 3.22 5.34 inf; +effondrera effondrer VER 13.24 25.74 0.51 0.34 ind:fut:3s; +effondreraient effondrer VER 13.24 25.74 0.04 0.00 cnd:pre:3p; +effondrerais effondrer VER 13.24 25.74 0.05 0.07 cnd:pre:1s; +effondrerait effondrer VER 13.24 25.74 0.36 0.27 cnd:pre:3s; +effondreront effondrer VER 13.24 25.74 0.11 0.00 ind:fut:3p; +effondrez effondrer VER 13.24 25.74 0.03 0.00 ind:pre:2p; +effondrât effondrer VER 13.24 25.74 0.00 0.14 sub:imp:3s; +effondrèrent effondrer VER 13.24 25.74 0.00 0.54 ind:pas:3p; +effondré effondrer VER m s 13.24 25.74 2.75 3.24 par:pas; +effondrée effondrer VER f s 13.24 25.74 1.87 2.16 par:pas; +effondrées effondrer VER f p 13.24 25.74 0.05 0.20 par:pas; +effondrés effondrer VER m p 13.24 25.74 0.17 0.61 par:pas; +efforce efforcer VER 6.14 54.19 2.09 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +efforcent efforcer VER 6.14 54.19 0.38 2.16 ind:pre:3p; +efforcer efforcer VER 6.14 54.19 0.86 2.57 inf; +efforcera efforcer VER 6.14 54.19 0.04 0.20 ind:fut:3s; +efforcerai efforcer VER 6.14 54.19 0.40 0.27 ind:fut:1s; +efforceraient efforcer VER 6.14 54.19 0.00 0.14 cnd:pre:3p; +efforcerais efforcer VER 6.14 54.19 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +efforcerait efforcer VER 6.14 54.19 0.01 0.14 cnd:pre:3s; +efforcerons efforcer VER 6.14 54.19 0.12 0.07 ind:fut:1p; +efforces efforcer VER 6.14 54.19 0.11 0.27 ind:pre:2s; +efforcez efforcer VER 6.14 54.19 0.31 0.00 imp:pre:2p;ind:pre:2p; +efforcions efforcer VER 6.14 54.19 0.00 0.81 ind:imp:1p; +efforcèrent efforcer VER 6.14 54.19 0.00 0.20 ind:pas:3p; +efforcé efforcer VER m s 6.14 54.19 0.46 2.03 par:pas; +efforcée efforcer VER f s 6.14 54.19 0.14 0.81 par:pas; +efforcés efforcer VER m p 6.14 54.19 0.12 0.41 par:pas; +effort effort NOM m s 42.70 136.62 23.26 98.18 +efforça efforcer VER 6.14 54.19 0.02 5.61 ind:pas:3s; +efforçai efforcer VER 6.14 54.19 0.01 0.95 ind:pas:1s; +efforçaient efforcer VER 6.14 54.19 0.04 4.05 ind:imp:3p; +efforçais efforcer VER 6.14 54.19 0.08 2.50 ind:imp:1s; +efforçait efforcer VER 6.14 54.19 0.32 14.19 ind:imp:3s; +efforçant efforcer VER 6.14 54.19 0.24 7.64 par:pre; +efforçâmes efforcer VER 6.14 54.19 0.00 0.14 ind:pas:1p; +efforçons efforcer VER 6.14 54.19 0.38 0.41 imp:pre:1p;ind:pre:1p; +efforçât efforcer VER 6.14 54.19 0.00 0.47 sub:imp:3s; +efforts effort NOM m p 42.70 136.62 19.44 38.45 +effraction effraction NOM f s 7.76 2.03 7.49 2.03 +effractions effraction NOM f p 7.76 2.03 0.27 0.00 +effraie effrayer VER 37.04 29.86 7.65 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effraient effrayer VER 37.04 29.86 1.07 0.47 ind:pre:3p; +effraiera effrayer VER 37.04 29.86 0.07 0.07 ind:fut:3s; +effraieraient effrayer VER 37.04 29.86 0.01 0.00 cnd:pre:3p; +effraierait effrayer VER 37.04 29.86 0.36 0.20 cnd:pre:3s; +effraieras effrayer VER 37.04 29.86 0.04 0.00 ind:fut:2s; +effraierez effrayer VER 37.04 29.86 0.03 0.00 ind:fut:2p; +effraies effrayer VER 37.04 29.86 0.53 0.20 ind:pre:2s; +effrange effranger VER 0.01 1.96 0.00 0.07 ind:pre:3s; +effrangeait effranger VER 0.01 1.96 0.00 0.07 ind:imp:3s; +effrangent effranger VER 0.01 1.96 0.00 0.07 ind:pre:3p; +effrangé effranger VER m s 0.01 1.96 0.01 0.61 par:pas; +effrangée effranger VER f s 0.01 1.96 0.00 0.34 par:pas; +effrangées effranger VER f p 0.01 1.96 0.00 0.41 par:pas; +effrangés effranger VER m p 0.01 1.96 0.00 0.41 par:pas; +effraya effrayer VER 37.04 29.86 0.00 2.09 ind:pas:3s; +effrayaient effrayer VER 37.04 29.86 0.23 1.35 ind:imp:3p; +effrayais effrayer VER 37.04 29.86 0.04 0.20 ind:imp:1s; +effrayait effrayer VER 37.04 29.86 0.91 7.16 ind:imp:3s; +effrayamment effrayamment ADV 0.00 0.20 0.00 0.20 +effrayant effrayant ADJ m s 14.69 19.19 10.07 8.99 +effrayante effrayant ADJ f s 14.69 19.19 2.86 7.16 +effrayantes effrayant ADJ f p 14.69 19.19 0.69 1.42 +effrayants effrayant ADJ m p 14.69 19.19 1.07 1.62 +effraye effrayer VER 37.04 29.86 1.10 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +effrayent effrayer VER 37.04 29.86 0.25 0.20 ind:pre:3p; +effrayer effrayer VER 37.04 29.86 9.43 4.73 ind:pre:2p;inf; +effrayerais effrayer VER 37.04 29.86 0.03 0.00 cnd:pre:1s; +effrayerait effrayer VER 37.04 29.86 0.08 0.00 cnd:pre:3s; +effrayeras effrayer VER 37.04 29.86 0.01 0.00 ind:fut:2s; +effrayez effrayer VER 37.04 29.86 1.01 0.34 imp:pre:2p;ind:pre:2p; +effrayons effrayer VER 37.04 29.86 0.20 0.07 imp:pre:1p;ind:pre:1p; +effrayèrent effrayer VER 37.04 29.86 0.14 0.00 ind:pas:3p; +effrayé effrayer VER m s 37.04 29.86 6.36 3.99 par:pas; +effrayée effrayer VER f s 37.04 29.86 5.00 2.64 par:pas; +effrayées effrayé ADJ f p 6.78 9.46 0.27 0.20 +effrayés effrayer VER m p 37.04 29.86 1.57 1.42 par:pas; +effrita effriter VER 0.45 5.68 0.01 0.20 ind:pas:3s; +effritaient effriter VER 0.45 5.68 0.01 0.27 ind:imp:3p; +effritait effriter VER 0.45 5.68 0.10 0.54 ind:imp:3s; +effritant effriter VER 0.45 5.68 0.00 0.54 par:pre; +effrite effriter VER 0.45 5.68 0.23 1.55 ind:pre:1s;ind:pre:3s; +effritement effritement NOM m s 0.01 0.47 0.01 0.41 +effritements effritement NOM m p 0.01 0.47 0.00 0.07 +effritent effriter VER 0.45 5.68 0.04 0.68 ind:pre:3p; +effriter effriter VER 0.45 5.68 0.04 0.54 inf; +effriterait effriter VER 0.45 5.68 0.00 0.14 cnd:pre:3s; +effrité effriter VER m s 0.45 5.68 0.02 0.41 par:pas; +effritée effriter VER f s 0.45 5.68 0.00 0.27 par:pas; +effritées effriter VER f p 0.45 5.68 0.00 0.20 par:pas; +effrités effriter VER m p 0.45 5.68 0.00 0.34 par:pas; +effroi effroi NOM m s 2.83 12.91 2.83 12.91 +effronterie effronterie NOM f s 0.46 1.22 0.46 1.15 +effronteries effronterie NOM f p 0.46 1.22 0.00 0.07 +effronté effronté NOM m s 1.65 0.81 0.73 0.20 +effrontée effronté NOM f s 1.65 0.81 0.79 0.47 +effrontées effronté ADJ f p 1.51 1.55 0.14 0.14 +effrontément effrontément ADV 0.22 0.74 0.22 0.74 +effrontés effronté ADJ m p 1.51 1.55 0.04 0.47 +effroyable effroyable ADJ s 4.41 8.99 3.84 6.69 +effroyablement effroyablement ADV 0.11 1.35 0.11 1.35 +effroyables effroyable ADJ p 4.41 8.99 0.57 2.30 +effréné effréné ADJ m s 0.50 3.11 0.36 1.28 +effrénée effréné ADJ f s 0.50 3.11 0.13 1.42 +effrénées effréné ADJ f p 0.50 3.11 0.01 0.34 +effrénés effréné ADJ m p 0.50 3.11 0.00 0.07 +effulgente effulgent ADJ f s 0.01 0.07 0.01 0.07 +efféminait efféminer VER 0.25 0.07 0.00 0.07 ind:imp:3s; +efféminé efféminé ADJ m s 0.81 0.68 0.49 0.20 +efféminée efféminé ADJ f s 0.81 0.68 0.04 0.14 +efféminés efféminé ADJ m p 0.81 0.68 0.28 0.34 +effusion effusion NOM f s 1.73 6.42 1.39 3.24 +effusionniste effusionniste ADJ s 0.00 0.14 0.00 0.07 +effusionnistes effusionniste ADJ m p 0.00 0.14 0.00 0.07 +effusions effusion NOM f p 1.73 6.42 0.34 3.18 +efrit efrit NOM m s 0.00 0.07 0.00 0.07 +ego ego NOM m 4.16 1.22 4.16 1.22 +eh eh ONO 386.00 176.62 386.00 176.62 +eider eider NOM m s 0.00 0.34 0.00 0.07 +eiders eider NOM m p 0.00 0.34 0.00 0.27 +eidétique eidétique ADJ f s 0.02 0.00 0.02 0.00 +einsteinienne einsteinien ADJ f s 0.01 0.07 0.01 0.07 +ektachromes ektachrome NOM m p 0.00 0.14 0.00 0.14 +eldorado eldorado NOM m s 0.04 0.00 0.04 0.00 +elfe elfe NOM m s 3.26 1.42 1.39 0.54 +elfes elfe NOM m p 3.26 1.42 1.87 0.88 +elle_même elle_même PRO:per f s 17.88 113.51 17.88 113.51 +elle elle PRO:per f s 4520.53 6991.49 4520.53 6991.49 +elles_mêmes elles_mêmes PRO:per f p 2.21 14.86 2.21 14.86 +elles elles PRO:per f p 420.51 605.14 420.51 605.14 +ellipse ellipse NOM f s 0.44 1.42 0.42 0.95 +ellipses ellipse NOM f p 0.44 1.42 0.02 0.47 +ellipsoïde ellipsoïde ADJ s 0.00 0.07 0.00 0.07 +elliptique elliptique ADJ s 0.09 0.61 0.06 0.47 +elliptiques elliptique ADJ p 0.09 0.61 0.02 0.14 +ellébore ellébore NOM m s 0.03 0.07 0.03 0.07 +elzévir elzévir NOM m s 0.00 0.07 0.00 0.07 +emails email NOM m p 0.65 0.00 0.65 0.00 +embûche embûche NOM f s 0.24 3.18 0.04 0.41 +embûches embûche NOM f p 0.24 3.18 0.20 2.77 +embabouiner embabouiner VER 0.00 0.07 0.00 0.07 inf; +emballa emballer VER 18.86 15.27 0.00 0.74 ind:pas:3s; +emballage emballage NOM m s 4.60 6.08 3.23 4.39 +emballages emballage NOM m p 4.60 6.08 1.37 1.69 +emballai emballer VER 18.86 15.27 0.00 0.14 ind:pas:1s; +emballaient emballer VER 18.86 15.27 0.00 0.20 ind:imp:3p; +emballais emballer VER 18.86 15.27 0.27 0.14 ind:imp:1s;ind:imp:2s; +emballait emballer VER 18.86 15.27 0.31 1.62 ind:imp:3s; +emballant emballer VER 18.86 15.27 0.10 0.34 par:pre; +emballe emballer VER 18.86 15.27 5.34 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emballement emballement NOM m s 0.02 0.61 0.01 0.54 +emballements emballement NOM m p 0.02 0.61 0.01 0.07 +emballent emballer VER 18.86 15.27 0.32 0.20 ind:pre:3p; +emballer emballer VER 18.86 15.27 3.74 4.66 inf; +emballera emballer VER 18.86 15.27 0.18 0.07 ind:fut:3s; +emballeraient emballer VER 18.86 15.27 0.00 0.07 cnd:pre:3p; +emballerait emballer VER 18.86 15.27 0.01 0.00 cnd:pre:3s; +emballeras emballer VER 18.86 15.27 0.00 0.07 ind:fut:2s; +emballerons emballer VER 18.86 15.27 0.01 0.00 ind:fut:1p; +emballes emballer VER 18.86 15.27 1.04 0.20 ind:pre:2s; +emballeur emballeur NOM m s 0.15 0.81 0.11 0.61 +emballeurs emballeur NOM m p 0.15 0.81 0.03 0.14 +emballeuse emballeur NOM f s 0.15 0.81 0.01 0.00 +emballeuses emballeur NOM f p 0.15 0.81 0.00 0.07 +emballez emballer VER 18.86 15.27 1.73 0.61 imp:pre:2p;ind:pre:2p; +emballons emballer VER 18.86 15.27 0.78 0.14 imp:pre:1p;ind:pre:1p; +emballât emballer VER 18.86 15.27 0.00 0.07 sub:imp:3s; +emballèrent emballer VER 18.86 15.27 0.00 0.14 ind:pas:3p; +emballé emballer VER m s 18.86 15.27 3.21 2.16 par:pas; +emballée emballer VER f s 18.86 15.27 1.20 1.01 par:pas; +emballées emballer VER f p 18.86 15.27 0.14 0.27 par:pas; +emballés emballer VER m p 18.86 15.27 0.48 0.20 par:pas; +embaluchonnés embaluchonner VER m p 0.00 0.07 0.00 0.07 par:pas; +embarbouilla embarbouiller VER 0.00 0.14 0.00 0.07 ind:pas:3s; +embarbouillé embarbouiller VER m s 0.00 0.14 0.00 0.07 par:pas; +embarcadère embarcadère NOM m s 1.13 2.16 1.10 1.89 +embarcadères embarcadère NOM m p 1.13 2.16 0.03 0.27 +embarcation embarcation NOM f s 0.80 4.80 0.62 3.24 +embarcations embarcation NOM f p 0.80 4.80 0.19 1.55 +embardée embardée NOM f s 0.23 1.96 0.16 1.35 +embardées embardée NOM f p 0.23 1.96 0.07 0.61 +embargo embargo NOM m s 0.75 0.07 0.72 0.07 +embargos embargo NOM m p 0.75 0.07 0.03 0.00 +embarqua embarquer VER 26.49 32.77 0.17 1.55 ind:pas:3s; +embarquai embarquer VER 26.49 32.77 0.01 0.68 ind:pas:1s; +embarquaient embarquer VER 26.49 32.77 0.09 0.74 ind:imp:3p; +embarquais embarquer VER 26.49 32.77 0.05 0.47 ind:imp:1s; +embarquait embarquer VER 26.49 32.77 0.06 2.09 ind:imp:3s; +embarquant embarquer VER 26.49 32.77 0.37 0.27 par:pre; +embarque embarquer VER 26.49 32.77 6.88 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embarquement embarquement NOM m s 4.03 4.19 4.02 3.99 +embarquements embarquement NOM m p 4.03 4.19 0.01 0.20 +embarquent embarquer VER 26.49 32.77 0.95 0.41 ind:pre:3p; +embarquer embarquer VER 26.49 32.77 7.16 10.74 inf; +embarquera embarquer VER 26.49 32.77 0.27 0.00 ind:fut:3s; +embarquerai embarquer VER 26.49 32.77 0.03 0.00 ind:fut:1s; +embarqueraient embarquer VER 26.49 32.77 0.01 0.07 cnd:pre:3p; +embarquerais embarquer VER 26.49 32.77 0.04 0.14 cnd:pre:1s; +embarquerait embarquer VER 26.49 32.77 0.05 0.34 cnd:pre:3s; +embarqueras embarquer VER 26.49 32.77 0.02 0.14 ind:fut:2s; +embarquerez embarquer VER 26.49 32.77 0.12 0.00 ind:fut:2p; +embarquerions embarquer VER 26.49 32.77 0.00 0.07 cnd:pre:1p; +embarqueront embarquer VER 26.49 32.77 0.04 0.07 ind:fut:3p; +embarquez embarquer VER 26.49 32.77 2.89 0.20 imp:pre:2p;ind:pre:2p; +embarquiez embarquer VER 26.49 32.77 0.02 0.07 ind:imp:2p; +embarquions embarquer VER 26.49 32.77 0.01 0.14 ind:imp:1p; +embarquâmes embarquer VER 26.49 32.77 0.11 0.14 ind:pas:1p; +embarquons embarquer VER 26.49 32.77 0.44 0.20 imp:pre:1p;ind:pre:1p; +embarquèrent embarquer VER 26.49 32.77 0.05 0.47 ind:pas:3p; +embarqué embarquer VER m s 26.49 32.77 4.89 5.68 par:pas; +embarquée embarquer VER f s 26.49 32.77 1.12 1.15 par:pas; +embarquées embarquer VER f p 26.49 32.77 0.08 0.68 par:pas; +embarqués embarquer VER m p 26.49 32.77 0.56 2.97 par:pas; +embarras embarras NOM m 5.32 12.09 5.32 12.09 +embarrassa embarrasser VER 6.70 13.85 0.02 0.27 ind:pas:3s; +embarrassai embarrasser VER 6.70 13.85 0.00 0.07 ind:pas:1s; +embarrassaient embarrasser VER 6.70 13.85 0.01 0.74 ind:imp:3p; +embarrassais embarrasser VER 6.70 13.85 0.01 0.14 ind:imp:1s; +embarrassait embarrasser VER 6.70 13.85 0.03 1.01 ind:imp:3s; +embarrassant embarrassant ADJ m s 7.44 2.23 5.28 0.74 +embarrassante embarrassant ADJ f s 7.44 2.23 1.20 1.01 +embarrassantes embarrassant ADJ f p 7.44 2.23 0.38 0.47 +embarrassants embarrassant ADJ m p 7.44 2.23 0.58 0.00 +embarrasse embarrasser VER 6.70 13.85 1.14 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embarrassent embarrasser VER 6.70 13.85 0.34 0.20 ind:pre:3p; +embarrasser embarrasser VER 6.70 13.85 1.52 1.69 ind:pre:2p;inf; +embarrasserai embarrasser VER 6.70 13.85 0.04 0.00 ind:fut:1s; +embarrasseraient embarrasser VER 6.70 13.85 0.00 0.07 cnd:pre:3p; +embarrasses embarrasser VER 6.70 13.85 0.26 0.07 ind:pre:2s; +embarrassez embarrasser VER 6.70 13.85 0.24 0.00 imp:pre:2p;ind:pre:2p; +embarrassions embarrasser VER 6.70 13.85 0.00 0.07 ind:imp:1p; +embarrassons embarrasser VER 6.70 13.85 0.14 0.07 imp:pre:1p;ind:pre:1p; +embarrassèrent embarrasser VER 6.70 13.85 0.00 0.07 ind:pas:3p; +embarrassé embarrassé ADJ m s 2.38 7.36 1.46 5.00 +embarrassée embarrasser VER f s 6.70 13.85 1.05 1.28 par:pas; +embarrassées embarrassé ADJ f p 2.38 7.36 0.14 0.27 +embarrassés embarrasser VER m p 6.70 13.85 0.23 0.61 par:pas; +embarrure embarrure NOM f s 0.01 0.00 0.01 0.00 +embase embase NOM f s 0.00 0.14 0.00 0.07 +embases embase NOM f p 0.00 0.14 0.00 0.07 +embastiller embastiller VER 0.05 0.27 0.02 0.14 inf; +embastillé embastiller VER m s 0.05 0.27 0.02 0.07 par:pas; +embastillée embastiller VER f s 0.05 0.27 0.01 0.00 par:pas; +embastillés embastiller VER m p 0.05 0.27 0.00 0.07 par:pas; +embats embattre VER 0.00 0.07 0.00 0.07 ind:pre:2s; +embaucha embaucher VER 13.11 5.95 0.13 0.14 ind:pas:3s; +embauchage embauchage NOM m s 0.00 0.07 0.00 0.07 +embauchaient embaucher VER 13.11 5.95 0.01 0.07 ind:imp:3p; +embauchais embaucher VER 13.11 5.95 0.16 0.00 ind:imp:1s;ind:imp:2s; +embauchait embaucher VER 13.11 5.95 0.18 0.34 ind:imp:3s; +embauchant embaucher VER 13.11 5.95 0.04 0.07 par:pre; +embauche embauche NOM f s 2.86 2.97 2.84 2.97 +embauchent embaucher VER 13.11 5.95 0.29 0.27 ind:pre:3p; +embaucher embaucher VER 13.11 5.95 3.56 1.69 inf; +embauchera embaucher VER 13.11 5.95 0.10 0.14 ind:fut:3s; +embaucherai embaucher VER 13.11 5.95 0.03 0.00 ind:fut:1s; +embaucherais embaucher VER 13.11 5.95 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +embaucherait embaucher VER 13.11 5.95 0.07 0.00 cnd:pre:3s; +embaucheront embaucher VER 13.11 5.95 0.01 0.00 ind:fut:3p; +embauches embaucher VER 13.11 5.95 0.27 0.07 ind:pre:2s; +embauchez embaucher VER 13.11 5.95 0.38 0.00 imp:pre:2p;ind:pre:2p; +embauchoir embauchoir NOM m s 0.05 0.07 0.03 0.00 +embauchoirs embauchoir NOM m p 0.05 0.07 0.02 0.07 +embauchons embaucher VER 13.11 5.95 0.14 0.07 imp:pre:1p;ind:pre:1p; +embauchât embaucher VER 13.11 5.95 0.00 0.07 sub:imp:3s; +embauché embaucher VER m s 13.11 5.95 4.56 1.42 par:pas; +embauchée embaucher VER f s 13.11 5.95 0.75 0.20 par:pas; +embauchées embaucher VER f p 13.11 5.95 0.05 0.14 par:pas; +embauchés embaucher VER m p 13.11 5.95 0.28 0.27 par:pas; +embauma embaumer VER 2.83 7.09 0.01 0.34 ind:pas:3s; +embaumaient embaumer VER 2.83 7.09 0.04 0.34 ind:imp:3p; +embaumait embaumer VER 2.83 7.09 0.04 1.69 ind:imp:3s; +embaumant embaumant ADJ m s 0.00 0.54 0.00 0.47 +embaumants embaumant ADJ m p 0.00 0.54 0.00 0.07 +embaume embaumer VER 2.83 7.09 0.60 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embaumement embaumement NOM m s 0.68 0.27 0.65 0.20 +embaumements embaumement NOM m p 0.68 0.27 0.02 0.07 +embaument embaumer VER 2.83 7.09 0.26 0.61 ind:pre:3p; +embaumer embaumer VER 2.83 7.09 0.81 0.81 inf; +embaumerait embaumer VER 2.83 7.09 0.00 0.07 cnd:pre:3s; +embaumeur embaumeur NOM m s 0.51 0.88 0.34 0.14 +embaumeurs embaumeur NOM m p 0.51 0.88 0.04 0.74 +embaumeuse embaumeur NOM f s 0.51 0.88 0.13 0.00 +embaumez embaumer VER 2.83 7.09 0.02 0.00 imp:pre:2p;ind:pre:2p; +embaumions embaumer VER 2.83 7.09 0.01 0.00 ind:imp:1p; +embaumé embaumer VER m s 2.83 7.09 0.47 0.95 par:pas; +embaumée embaumer VER f s 2.83 7.09 0.28 0.68 par:pas; +embaumées embaumer VER f p 2.83 7.09 0.00 0.27 par:pas; +embaumés embaumer VER m p 2.83 7.09 0.28 0.20 par:pas; +embelli embellir VER m s 3.40 5.14 0.34 0.74 par:pas; +embellie embellie NOM f s 0.02 2.70 0.02 2.43 +embellies embellir VER f p 3.40 5.14 0.10 0.14 par:pas; +embellir embellir VER 3.40 5.14 1.06 1.55 inf; +embellira embellir VER 3.40 5.14 0.14 0.00 ind:fut:3s; +embellirai embellir VER 3.40 5.14 0.01 0.00 ind:fut:1s; +embellirait embellir VER 3.40 5.14 0.02 0.14 cnd:pre:3s; +embellis embellir VER m p 3.40 5.14 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +embellissaient embellir VER 3.40 5.14 0.10 0.20 ind:imp:3p; +embellissais embellir VER 3.40 5.14 0.00 0.07 ind:imp:1s; +embellissait embellir VER 3.40 5.14 0.01 0.68 ind:imp:3s; +embellissant embellir VER 3.40 5.14 0.00 0.20 par:pre; +embellissement embellissement NOM m s 0.07 0.41 0.06 0.34 +embellissements embellissement NOM m p 0.07 0.41 0.01 0.07 +embellissent embellir VER 3.40 5.14 0.06 0.14 ind:pre:3p; +embellissez embellir VER 3.40 5.14 0.14 0.00 imp:pre:2p;ind:pre:2p; +embellissons embellir VER 3.40 5.14 0.02 0.00 imp:pre:1p;ind:pre:1p; +embellit embellir VER 3.40 5.14 1.28 0.81 ind:pre:3s;ind:pas:3s; +emberlificotaient emberlificoter VER 0.01 0.47 0.00 0.07 ind:imp:3p; +emberlificotais emberlificoter VER 0.01 0.47 0.00 0.07 ind:imp:1s; +emberlificote emberlificoter VER 0.01 0.47 0.00 0.07 ind:pre:3s; +emberlificoter emberlificoter VER 0.01 0.47 0.00 0.14 inf; +emberlificoté emberlificoté ADJ m s 0.11 0.07 0.10 0.00 +emberlificotée emberlificoter VER f s 0.01 0.47 0.00 0.07 par:pas; +emberlificotées emberlificoter VER f p 0.01 0.47 0.00 0.07 par:pas; +emberlificotés emberlificoté ADJ m p 0.11 0.07 0.01 0.07 +emberlucoquer emberlucoquer VER 0.00 0.07 0.00 0.07 inf; +embijoutée embijouté ADJ f s 0.00 0.07 0.00 0.07 +emblavages emblavage NOM m p 0.00 0.07 0.00 0.07 +emblaver emblaver VER 0.00 0.20 0.00 0.07 inf; +emblavé emblaver VER m s 0.00 0.20 0.00 0.07 par:pas; +emblavée emblaver VER f s 0.00 0.20 0.00 0.07 par:pas; +emblavure emblavure NOM f s 0.00 0.27 0.00 0.14 +emblavures emblavure NOM f p 0.00 0.27 0.00 0.14 +emblème emblème NOM m s 1.14 4.32 0.81 2.97 +emblèmes emblème NOM m p 1.14 4.32 0.33 1.35 +emblématique emblématique ADJ s 0.38 0.68 0.36 0.41 +emblématiques emblématique ADJ m p 0.38 0.68 0.01 0.27 +emboîta emboîter VER 0.98 6.08 0.00 0.41 ind:pas:3s; +emboîtables emboîtable ADJ m p 0.00 0.07 0.00 0.07 +emboîtage emboîtage NOM m s 0.00 0.20 0.00 0.07 +emboîtages emboîtage NOM m p 0.00 0.20 0.00 0.14 +emboîtai emboîter VER 0.98 6.08 0.00 0.14 ind:pas:1s; +emboîtaient emboîter VER 0.98 6.08 0.01 0.54 ind:imp:3p; +emboîtais emboîter VER 0.98 6.08 0.00 0.20 ind:imp:1s; +emboîtait emboîter VER 0.98 6.08 0.10 0.47 ind:imp:3s; +emboîtant emboîter VER 0.98 6.08 0.10 0.61 par:pre; +emboîtas emboîter VER 0.98 6.08 0.00 0.07 ind:pas:2s; +emboîte emboîter VER 0.98 6.08 0.08 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emboîtement emboîtement NOM m s 0.00 0.07 0.00 0.07 +emboîtent emboîter VER 0.98 6.08 0.24 0.61 ind:pre:3p; +emboîter emboîter VER 0.98 6.08 0.29 0.61 inf; +emboîterai emboîter VER 0.98 6.08 0.01 0.00 ind:fut:1s; +emboîtions emboîter VER 0.98 6.08 0.00 0.07 ind:imp:1p; +emboîtâmes emboîter VER 0.98 6.08 0.00 0.07 ind:pas:1p; +emboîtons emboîter VER 0.98 6.08 0.01 0.07 ind:pre:1p; +emboîtèrent emboîter VER 0.98 6.08 0.00 0.14 ind:pas:3p; +emboîté emboîter VER m s 0.98 6.08 0.13 0.74 par:pas; +emboîtée emboîter VER f s 0.98 6.08 0.00 0.07 par:pas; +emboîtées emboîter VER f p 0.98 6.08 0.01 0.47 par:pas; +emboîtures emboîture NOM f p 0.00 0.07 0.00 0.07 +emboîtés emboîter VER m p 0.98 6.08 0.00 0.34 par:pas; +embobeliner embobeliner VER 0.00 0.14 0.00 0.14 inf; +embobinant embobiner VER 2.37 1.35 0.01 0.00 par:pre; +embobine embobiner VER 2.37 1.35 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embobiner embobiner VER 2.37 1.35 1.29 0.95 inf; +embobinez embobiner VER 2.37 1.35 0.03 0.00 imp:pre:2p;ind:pre:2p; +embobiné embobiner VER m s 2.37 1.35 0.67 0.14 par:pas; +embobinée embobiner VER f s 2.37 1.35 0.10 0.14 par:pas; +embobinées embobiner VER f p 2.37 1.35 0.00 0.07 par:pas; +embobinés embobiner VER m p 2.37 1.35 0.03 0.00 par:pas; +embâcle embâcle NOM m s 0.01 0.14 0.01 0.14 +embole embole NOM m s 0.04 0.00 0.04 0.00 +embolie embolie NOM f s 1.05 0.68 1.03 0.61 +embolies embolie NOM f p 1.05 0.68 0.02 0.07 +embolique embolique ADJ s 0.01 0.00 0.01 0.00 +embonpoint embonpoint NOM m s 0.18 1.96 0.18 1.96 +embosser embosser VER 0.00 0.34 0.00 0.07 inf; +embossé embosser VER m s 0.00 0.34 0.00 0.07 par:pas; +embossée embosser VER f s 0.00 0.34 0.00 0.14 par:pas; +embossés embosser VER m p 0.00 0.34 0.00 0.07 par:pas; +emboucanent emboucaner VER 0.00 0.07 0.00 0.07 ind:pre:3p; +emboucha emboucher VER 0.01 1.08 0.00 0.07 ind:pas:3s; +embouchant emboucher VER 0.01 1.08 0.00 0.20 par:pre; +embouche emboucher VER 0.01 1.08 0.00 0.27 ind:pre:3s; +emboucher emboucher VER 0.01 1.08 0.00 0.20 inf; +emboucherait emboucher VER 0.01 1.08 0.00 0.07 cnd:pre:3s; +embouchoir embouchoir NOM m s 0.01 0.14 0.01 0.00 +embouchoirs embouchoir NOM m p 0.01 0.14 0.00 0.14 +embouché embouché ADJ m s 0.45 0.74 0.09 0.41 +embouchée embouché ADJ f s 0.45 0.74 0.25 0.07 +embouchées embouché ADJ f p 0.45 0.74 0.00 0.07 +embouchure embouchure NOM f s 0.69 3.99 0.68 3.78 +embouchures embouchure NOM f p 0.69 3.99 0.01 0.20 +embouchés embouché ADJ m p 0.45 0.74 0.11 0.20 +embouquer embouquer VER 0.00 0.20 0.00 0.14 inf; +embouqué embouquer VER m s 0.00 0.20 0.00 0.07 par:pas; +embourbaient embourber VER 1.02 1.89 0.00 0.07 ind:imp:3p; +embourbait embourber VER 1.02 1.89 0.00 0.14 ind:imp:3s; +embourbe embourber VER 1.02 1.89 0.03 0.34 ind:pre:1s;ind:pre:3s; +embourbent embourber VER 1.02 1.89 0.00 0.07 ind:pre:3p; +embourber embourber VER 1.02 1.89 0.15 0.47 inf; +embourbé embourber VER m s 1.02 1.89 0.42 0.41 par:pas; +embourbée embourber VER f s 1.02 1.89 0.15 0.14 par:pas; +embourbées embourbé ADJ f p 0.06 0.34 0.01 0.00 +embourbés embourber VER m p 1.02 1.89 0.26 0.07 par:pas; +embourgeoise embourgeoiser VER 0.03 0.41 0.00 0.07 ind:pre:3s; +embourgeoisement embourgeoisement NOM m s 0.01 0.34 0.01 0.34 +embourgeoiser embourgeoiser VER 0.03 0.41 0.02 0.14 inf; +embourgeoises embourgeoiser VER 0.03 0.41 0.00 0.20 ind:pre:2s; +embourgeoisé embourgeoisé ADJ m s 0.01 0.00 0.01 0.00 +embourgeoisés embourgeoisé NOM m p 0.10 0.07 0.10 0.00 +embout embout NOM m s 0.20 0.81 0.18 0.41 +embouteillage embouteillage NOM m s 3.93 3.38 2.08 1.35 +embouteillages embouteillage NOM m p 3.93 3.38 1.85 2.03 +embouteillait embouteiller VER 0.04 0.34 0.00 0.07 ind:imp:3s; +embouteille embouteiller VER 0.04 0.34 0.01 0.07 ind:pre:3s; +embouteiller embouteiller VER 0.04 0.34 0.00 0.20 inf; +embouteillé embouteiller VER m s 0.04 0.34 0.01 0.00 par:pas; +embouteillée embouteillé ADJ f s 0.01 0.20 0.01 0.07 +embouteillées embouteiller VER f p 0.04 0.34 0.01 0.00 par:pas; +embouti emboutir VER m s 1.55 0.95 1.01 0.20 par:pas; +emboutie emboutir VER f s 1.55 0.95 0.07 0.07 par:pas; +embouties emboutir VER f p 1.55 0.95 0.00 0.07 par:pas; +emboutir emboutir VER 1.55 0.95 0.28 0.41 inf; +emboutis emboutir VER m p 1.55 0.95 0.06 0.07 ind:pre:1s;par:pas; +emboutissant emboutir VER 1.55 0.95 0.00 0.07 par:pre; +emboutisseur emboutisseur NOM m s 0.00 0.14 0.00 0.07 +emboutisseuse emboutisseur NOM f s 0.00 0.14 0.00 0.07 +emboutit emboutir VER 1.55 0.95 0.12 0.07 ind:pre:3s; +embouts embout NOM m p 0.20 0.81 0.03 0.41 +embranchant embrancher VER 0.00 0.07 0.00 0.07 par:pre; +embranchement embranchement NOM m s 0.45 3.11 0.42 2.84 +embranchements embranchement NOM m p 0.45 3.11 0.03 0.27 +embraquer embraquer VER 0.01 0.00 0.01 0.00 inf; +embrasa embraser VER 2.67 6.82 0.04 0.68 ind:pas:3s; +embrasaient embraser VER 2.67 6.82 0.01 0.34 ind:imp:3p; +embrasait embraser VER 2.67 6.82 0.02 1.22 ind:imp:3s; +embrasant embraser VER 2.67 6.82 0.03 0.14 par:pre; +embrase embraser VER 2.67 6.82 1.06 1.01 ind:pre:1s;ind:pre:3s; +embrasement embrasement NOM m s 0.28 1.62 0.28 1.15 +embrasements embrasement NOM m p 0.28 1.62 0.00 0.47 +embrasent embraser VER 2.67 6.82 0.04 0.47 ind:pre:3p; +embraser embraser VER 2.67 6.82 0.25 1.08 inf; +embrasera embraser VER 2.67 6.82 0.14 0.07 ind:fut:3s; +embraserait embraser VER 2.67 6.82 0.00 0.07 cnd:pre:3s; +embrasez embraser VER 2.67 6.82 0.03 0.00 imp:pre:2p; +embrassa embrasser VER 138.97 137.50 0.81 21.08 ind:pas:3s; +embrassade embrassade NOM f s 0.61 1.89 0.16 0.61 +embrassades embrassade NOM f p 0.61 1.89 0.45 1.28 +embrassai embrasser VER 138.97 137.50 0.14 3.04 ind:pas:1s; +embrassaient embrasser VER 138.97 137.50 0.57 2.36 ind:imp:3p; +embrassais embrasser VER 138.97 137.50 1.46 1.35 ind:imp:1s;ind:imp:2s; +embrassait embrasser VER 138.97 137.50 1.94 10.68 ind:imp:3s; +embrassant embrasser VER 138.97 137.50 1.41 5.07 par:pre; +embrasse embrasser VER 138.97 137.50 49.81 26.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +embrassement embrassement NOM m s 0.02 0.95 0.01 0.41 +embrassements embrassement NOM m p 0.02 0.95 0.01 0.54 +embrassent embrasser VER 138.97 137.50 2.88 2.64 ind:pre:3p; +embrasser embrasser VER 138.97 137.50 43.91 37.70 inf;;inf;;inf;; +embrassera embrasser VER 138.97 137.50 0.60 0.34 ind:fut:3s; +embrasserai embrasser VER 138.97 137.50 1.23 0.41 ind:fut:1s; +embrasseraient embrasser VER 138.97 137.50 0.00 0.14 cnd:pre:3p; +embrasserais embrasser VER 138.97 137.50 0.67 0.27 cnd:pre:1s;cnd:pre:2s; +embrasserait embrasser VER 138.97 137.50 0.17 0.81 cnd:pre:3s; +embrasseras embrasser VER 138.97 137.50 0.51 0.20 ind:fut:2s; +embrasserez embrasser VER 138.97 137.50 0.11 0.14 ind:fut:2p; +embrasseriez embrasser VER 138.97 137.50 0.04 0.00 cnd:pre:2p; +embrasseront embrasser VER 138.97 137.50 0.12 0.07 ind:fut:3p; +embrasses embrasser VER 138.97 137.50 5.21 0.61 ind:pre:2s;sub:pre:2s; +embrasseur embrasseur ADJ m s 0.05 0.00 0.05 0.00 +embrasseurs embrasseur NOM m p 0.11 0.14 0.01 0.00 +embrasseuse embrasseur NOM f s 0.11 0.14 0.06 0.00 +embrasseuses embrasseuse NOM f p 0.01 0.00 0.01 0.00 +embrassez embrasser VER 138.97 137.50 6.08 1.15 imp:pre:2p;ind:pre:2p; +embrassiez embrasser VER 138.97 137.50 0.44 0.07 ind:imp:2p; +embrassions embrasser VER 138.97 137.50 0.05 0.68 ind:imp:1p; +embrassâmes embrasser VER 138.97 137.50 0.00 0.34 ind:pas:1p; +embrassons embrasser VER 138.97 137.50 1.82 0.61 imp:pre:1p;ind:pre:1p; +embrassât embrasser VER 138.97 137.50 0.00 0.41 sub:imp:3s; +embrassâtes embrasser VER 138.97 137.50 0.10 0.00 ind:pas:2p; +embrassèrent embrasser VER 138.97 137.50 0.01 2.50 ind:pas:3p; +embrassé embrasser VER m s 138.97 137.50 10.17 8.65 par:pas; +embrassée embrasser VER f s 138.97 137.50 6.01 6.76 par:pas; +embrassées embrasser VER f p 138.97 137.50 0.42 0.41 par:pas; +embrassés embrasser VER m p 138.97 137.50 2.28 2.36 par:pas; +embrasèrent embraser VER 2.67 6.82 0.00 0.34 ind:pas:3p; +embrasé embraser VER m s 2.67 6.82 0.35 1.01 par:pas; +embrasée embraser VER f s 2.67 6.82 0.36 0.34 par:pas; +embrasées embraser VER f p 2.67 6.82 0.01 0.00 par:pas; +embrasure embrasure NOM f s 0.10 7.16 0.07 6.01 +embrasures embrasure NOM f p 0.10 7.16 0.02 1.15 +embrasés embraser VER m p 2.67 6.82 0.34 0.07 par:pas; +embraya embrayer VER 0.72 2.64 0.00 0.68 ind:pas:3s; +embrayage embrayage NOM m s 0.98 1.01 0.98 0.95 +embrayages embrayage NOM m p 0.98 1.01 0.00 0.07 +embrayais embrayer VER 0.72 2.64 0.00 0.07 ind:imp:1s; +embrayait embrayer VER 0.72 2.64 0.01 0.34 ind:imp:3s; +embrayant embrayer VER 0.72 2.64 0.00 0.14 par:pre; +embraye embrayer VER 0.72 2.64 0.26 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embrayer embrayer VER 0.72 2.64 0.37 0.41 inf; +embrayes embrayer VER 0.72 2.64 0.02 0.07 ind:pre:2s; +embrayé embrayer VER m s 0.72 2.64 0.05 0.34 par:pas; +embrayée embrayer VER f s 0.72 2.64 0.01 0.00 par:pas; +embrigadé embrigader VER m s 0.02 0.20 0.01 0.14 par:pas; +embrigadée embrigader VER f s 0.02 0.20 0.01 0.07 par:pas; +embringua embringuer VER 0.72 1.15 0.00 0.07 ind:pas:3s; +embringuaient embringuer VER 0.72 1.15 0.00 0.07 ind:imp:3p; +embringuait embringuer VER 0.72 1.15 0.00 0.07 ind:imp:3s; +embringuer embringuer VER 0.72 1.15 0.15 0.34 inf; +embringues embringuer VER 0.72 1.15 0.03 0.00 ind:pre:2s; +embringué embringuer VER m s 0.72 1.15 0.40 0.54 par:pas; +embringuée embringuer VER f s 0.72 1.15 0.14 0.07 par:pas; +embrocation embrocation NOM f s 0.01 0.41 0.01 0.34 +embrocations embrocation NOM f p 0.01 0.41 0.00 0.07 +embrocha embrocher VER 0.71 2.30 0.00 0.14 ind:pas:3s; +embrochais embrocher VER 0.71 2.30 0.00 0.07 ind:imp:1s; +embrochant embrocher VER 0.71 2.30 0.01 0.07 par:pre; +embroche embrocher VER 0.71 2.30 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embrochent embrocher VER 0.71 2.30 0.01 0.07 ind:pre:3p; +embrocher embrocher VER 0.71 2.30 0.13 0.81 inf; +embrochera embrocher VER 0.71 2.30 0.00 0.07 ind:fut:3s; +embrochez embrocher VER 0.71 2.30 0.16 0.00 imp:pre:2p; +embrochèrent embrocher VER 0.71 2.30 0.00 0.14 ind:pas:3p; +embroché embrocher VER m s 0.71 2.30 0.08 0.27 par:pas; +embrochée embrocher VER f s 0.71 2.30 0.02 0.20 par:pas; +embrochées embrocher VER f p 0.71 2.30 0.00 0.07 par:pas; +embrochés embrocher VER m p 0.71 2.30 0.02 0.27 par:pas; +embrouilla embrouiller VER 8.15 9.46 0.00 0.47 ind:pas:3s; +embrouillage embrouillage NOM m s 0.02 0.00 0.02 0.00 +embrouillai embrouiller VER 8.15 9.46 0.00 0.14 ind:pas:1s; +embrouillaient embrouiller VER 8.15 9.46 0.01 0.61 ind:imp:3p; +embrouillais embrouiller VER 8.15 9.46 0.03 0.34 ind:imp:1s;ind:imp:2s; +embrouillait embrouiller VER 8.15 9.46 0.03 1.55 ind:imp:3s; +embrouillamini embrouillamini NOM m s 0.01 0.34 0.01 0.27 +embrouillaminis embrouillamini NOM m p 0.01 0.34 0.00 0.07 +embrouillant embrouiller VER 8.15 9.46 0.15 0.61 par:pre; +embrouillasse embrouiller VER 8.15 9.46 0.00 0.07 sub:imp:1s; +embrouille embrouille NOM f s 7.99 4.39 4.35 3.18 +embrouillement embrouillement NOM m s 0.01 0.27 0.01 0.20 +embrouillements embrouillement NOM m p 0.01 0.27 0.00 0.07 +embrouillent embrouiller VER 8.15 9.46 0.36 0.41 ind:pre:3p; +embrouiller embrouiller VER 8.15 9.46 1.92 1.22 inf; +embrouillerai embrouiller VER 8.15 9.46 0.01 0.00 ind:fut:1s; +embrouillerais embrouiller VER 8.15 9.46 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +embrouillerait embrouiller VER 8.15 9.46 0.02 0.07 cnd:pre:3s; +embrouilles embrouille NOM f p 7.99 4.39 3.64 1.22 +embrouilleur embrouilleur NOM m s 0.17 0.14 0.16 0.00 +embrouilleurs embrouilleur NOM m p 0.17 0.14 0.02 0.07 +embrouilleuses embrouilleur NOM f p 0.17 0.14 0.00 0.07 +embrouillez embrouiller VER 8.15 9.46 0.38 0.00 imp:pre:2p;ind:pre:2p; +embrouillât embrouiller VER 8.15 9.46 0.00 0.14 sub:imp:3s; +embrouillèrent embrouiller VER 8.15 9.46 0.00 0.14 ind:pas:3p; +embrouillé embrouiller VER m s 8.15 9.46 1.78 0.81 par:pas; +embrouillée embrouillé ADJ f s 0.71 1.76 0.23 0.47 +embrouillées embrouillé ADJ f p 0.71 1.76 0.04 0.54 +embrouillés embrouiller VER m p 8.15 9.46 0.04 0.14 par:pas; +embroussaille embroussailler VER 0.00 0.34 0.00 0.07 ind:pre:3s; +embroussailler embroussailler VER 0.00 0.34 0.00 0.07 inf; +embroussaillé embroussaillé ADJ m s 0.00 0.61 0.00 0.07 +embroussaillée embroussailler VER f s 0.00 0.34 0.00 0.07 par:pas; +embroussaillées embroussailler VER f p 0.00 0.34 0.00 0.07 par:pas; +embroussaillés embroussaillé ADJ m p 0.00 0.61 0.00 0.54 +embruiné embruiné ADJ m s 0.00 0.07 0.00 0.07 +embrumait embrumer VER 0.72 1.96 0.00 0.41 ind:imp:3s; +embrume embrumer VER 0.72 1.96 0.21 0.41 ind:pre:1s;ind:pre:3s; +embrument embrumer VER 0.72 1.96 0.11 0.14 ind:pre:3p; +embrumer embrumer VER 0.72 1.96 0.19 0.20 inf; +embrumé embrumer VER m s 0.72 1.96 0.20 0.34 par:pas; +embrumée embrumé ADJ f s 0.15 1.08 0.04 0.34 +embrumées embrumé ADJ f p 0.15 1.08 0.03 0.27 +embrumés embrumé ADJ m p 0.15 1.08 0.04 0.14 +embrun embrun NOM m s 0.68 2.97 0.52 0.81 +embruns embrun NOM m p 0.68 2.97 0.16 2.16 +embryologie embryologie NOM f s 0.01 0.00 0.01 0.00 +embryologiste embryologiste NOM s 0.01 0.00 0.01 0.00 +embryon embryon NOM m s 0.96 3.72 0.60 2.64 +embryonnaire embryonnaire ADJ s 0.16 0.47 0.11 0.41 +embryonnaires embryonnaire ADJ p 0.16 0.47 0.05 0.07 +embryons embryon NOM m p 0.96 3.72 0.36 1.08 +embu embu NOM m s 0.00 0.14 0.00 0.07 +embua embuer VER 0.38 5.41 0.00 0.07 ind:pas:3s; +embuaient embuer VER 0.38 5.41 0.14 0.68 ind:imp:3p; +embuait embuer VER 0.38 5.41 0.00 0.68 ind:imp:3s; +embuant embuer VER 0.38 5.41 0.01 0.07 par:pre; +embue embuer VER 0.38 5.41 0.02 0.20 ind:pre:3s; +embuent embuer VER 0.38 5.41 0.04 0.47 ind:pre:3p; +embuer embuer VER 0.38 5.41 0.12 0.34 inf; +embéguinées embéguiner VER f p 0.00 0.07 0.00 0.07 par:pas; +embus embu NOM m p 0.00 0.14 0.00 0.07 +embuscade embuscade NOM f s 5.04 4.12 4.59 2.97 +embuscades embuscade NOM f p 5.04 4.12 0.44 1.15 +embusqua embusquer VER 0.58 3.58 0.00 0.14 ind:pas:3s; +embusquaient embusquer VER 0.58 3.58 0.10 0.07 ind:imp:3p; +embusquait embusquer VER 0.58 3.58 0.00 0.14 ind:imp:3s; +embusque embusquer VER 0.58 3.58 0.10 0.20 ind:pre:3s; +embusquent embusquer VER 0.58 3.58 0.00 0.07 ind:pre:3p; +embusquer embusquer VER 0.58 3.58 0.03 0.41 inf; +embusqué embusqué ADJ m s 0.46 1.08 0.36 0.54 +embusquée embusquer VER f s 0.58 3.58 0.01 0.34 par:pas; +embusquées embusquer VER f p 0.58 3.58 0.00 0.27 par:pas; +embusqués embusqué NOM m p 0.58 0.54 0.28 0.27 +embêtaient embêter VER 34.02 15.61 0.30 0.27 ind:imp:3p; +embêtais embêter VER 34.02 15.61 0.42 0.27 ind:imp:1s;ind:imp:2s; +embêtait embêter VER 34.02 15.61 0.82 0.95 ind:imp:3s; +embêtant embêtant ADJ m s 2.92 3.51 2.41 2.97 +embêtante embêtant ADJ f s 2.92 3.51 0.16 0.27 +embêtantes embêtant ADJ f p 2.92 3.51 0.01 0.07 +embêtants embêtant ADJ m p 2.92 3.51 0.34 0.20 +embête embêter VER 34.02 15.61 13.21 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +embêtement embêtement NOM m s 0.69 1.08 0.16 0.07 +embêtements embêtement NOM m p 0.69 1.08 0.53 1.01 +embêtent embêter VER 34.02 15.61 1.10 0.81 ind:pre:3p; +embêter embêter VER 34.02 15.61 7.66 3.58 inf; +embêtera embêter VER 34.02 15.61 1.01 0.34 ind:fut:3s; +embêterai embêter VER 34.02 15.61 1.08 0.14 ind:fut:1s; +embêteraient embêter VER 34.02 15.61 0.08 0.07 cnd:pre:3p; +embêterais embêter VER 34.02 15.61 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +embêterait embêter VER 34.02 15.61 1.92 0.27 cnd:pre:3s; +embêtes embêter VER 34.02 15.61 1.71 0.74 ind:pre:2s; +embêtez embêter VER 34.02 15.61 1.39 0.20 imp:pre:2p;ind:pre:2p; +embuèrent embuer VER 0.38 5.41 0.00 0.27 ind:pas:3p; +embêté embêter VER m s 34.02 15.61 2.29 1.69 par:pas; +embêtée embêter VER f s 34.02 15.61 0.65 0.54 par:pas; +embêtées embêter VER f p 34.02 15.61 0.04 0.07 par:pas; +embêtés embêté ADJ m p 1.39 2.16 0.15 0.14 +embué embué ADJ m s 0.27 1.76 0.17 0.27 +embuée embué ADJ f s 0.27 1.76 0.03 0.54 +embuées embué ADJ f p 0.27 1.76 0.04 0.41 +embués embuer VER m p 0.38 5.41 0.02 1.01 par:pas; +emergency emergency NOM f s 0.25 0.00 0.25 0.00 +emmagasinaient emmagasiner VER 0.58 1.82 0.00 0.07 ind:imp:3p; +emmagasinais emmagasiner VER 0.58 1.82 0.00 0.07 ind:imp:1s; +emmagasinait emmagasiner VER 0.58 1.82 0.00 0.07 ind:imp:3s; +emmagasine emmagasiner VER 0.58 1.82 0.11 0.27 ind:pre:1s;ind:pre:3s; +emmagasinent emmagasiner VER 0.58 1.82 0.15 0.20 ind:pre:3p; +emmagasiner emmagasiner VER 0.58 1.82 0.26 0.47 inf; +emmagasiné emmagasiner VER m s 0.58 1.82 0.04 0.27 par:pas; +emmagasinée emmagasiner VER f s 0.58 1.82 0.02 0.14 par:pas; +emmagasinées emmagasiner VER f p 0.58 1.82 0.00 0.14 par:pas; +emmagasinés emmagasiné ADJ m p 0.10 0.20 0.10 0.00 +emmaillota emmailloter VER 0.17 1.82 0.14 0.07 ind:pas:3s; +emmaillotaient emmailloter VER 0.17 1.82 0.00 0.07 ind:imp:3p; +emmaillotement emmaillotement NOM m s 0.00 0.07 0.00 0.07 +emmailloter emmailloter VER 0.17 1.82 0.00 0.27 inf; +emmailloté emmailloter VER m s 0.17 1.82 0.02 0.61 par:pas; +emmaillotée emmailloter VER f s 0.17 1.82 0.01 0.47 par:pas; +emmaillotées emmailloter VER f p 0.17 1.82 0.00 0.20 par:pas; +emmaillotés emmailloter VER m p 0.17 1.82 0.00 0.14 par:pas; +emmanchage emmanchage NOM m s 0.00 0.07 0.00 0.07 +emmanchant emmancher VER 0.19 1.76 0.00 0.07 par:pre; +emmanche emmancher VER 0.19 1.76 0.00 0.20 ind:pre:3s; +emmanchent emmancher VER 0.19 1.76 0.00 0.14 ind:pre:3p; +emmancher emmancher VER 0.19 1.76 0.01 0.20 inf; +emmanché emmancher VER m s 0.19 1.76 0.18 0.41 par:pas; +emmanchée emmancher VER f s 0.19 1.76 0.00 0.20 par:pas; +emmanchées emmancher VER f p 0.19 1.76 0.00 0.07 par:pas; +emmanchure emmanchure NOM f s 0.00 0.74 0.00 0.34 +emmanchures emmanchure NOM f p 0.00 0.74 0.00 0.41 +emmanchés emmancher VER m p 0.19 1.76 0.00 0.47 par:pas; +emmena emmener VER 272.70 105.47 0.89 9.73 ind:pas:3s; +emmenai emmener VER 272.70 105.47 0.10 1.42 ind:pas:1s; +emmenaient emmener VER 272.70 105.47 0.58 1.28 ind:imp:3p; +emmenais emmener VER 272.70 105.47 1.42 1.55 ind:imp:1s;ind:imp:2s; +emmenait emmener VER 272.70 105.47 3.38 10.07 ind:imp:3s; +emmenant emmener VER 272.70 105.47 0.85 1.69 par:pre; +emmener emmener VER 272.70 105.47 70.33 26.96 inf;; +emmenez emmener VER 272.70 105.47 42.79 2.77 imp:pre:2p;ind:pre:2p; +emmeniez emmener VER 272.70 105.47 0.44 0.14 ind:imp:2p;sub:pre:2p; +emmenions emmener VER 272.70 105.47 0.14 0.20 ind:imp:1p; +emmenons emmener VER 272.70 105.47 4.00 0.47 imp:pre:1p;ind:pre:1p; +emmenât emmener VER 272.70 105.47 0.00 0.34 sub:imp:3s; +emmenotté emmenotter VER m s 0.00 0.14 0.00 0.14 par:pas; +emmental emmental NOM m s 0.01 0.00 0.01 0.00 +emmenthal emmenthal NOM m s 0.15 0.14 0.15 0.14 +emmenèrent emmener VER 272.70 105.47 0.79 1.62 ind:pas:3p; +emmené emmener VER m s 272.70 105.47 22.85 10.95 par:pas; +emmenée emmener VER f s 272.70 105.47 11.83 6.15 par:pas; +emmenées emmener VER f p 272.70 105.47 0.90 0.20 par:pas; +emmenés emmener VER m p 272.70 105.47 3.77 2.43 par:pas; +emmerda emmerder VER 52.18 27.09 0.00 0.07 ind:pas:3s; +emmerdaient emmerder VER 52.18 27.09 0.05 0.47 ind:imp:3p; +emmerdais emmerder VER 52.18 27.09 0.20 0.27 ind:imp:1s;ind:imp:2s; +emmerdait emmerder VER 52.18 27.09 0.51 1.62 ind:imp:3s; +emmerdant emmerdant ADJ m s 1.92 1.76 1.04 1.22 +emmerdante emmerdant ADJ f s 1.92 1.76 0.35 0.20 +emmerdantes emmerdant ADJ f p 1.92 1.76 0.16 0.07 +emmerdants emmerdant ADJ m p 1.92 1.76 0.36 0.27 +emmerdatoires emmerdatoire ADJ p 0.00 0.07 0.00 0.07 +emmerde emmerder VER 52.18 27.09 33.90 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +emmerdement emmerdement NOM m s 0.84 4.66 0.08 0.88 +emmerdements emmerdement NOM m p 0.84 4.66 0.77 3.78 +emmerdent emmerder VER 52.18 27.09 1.50 1.15 ind:pre:3p; +emmerder emmerder VER 52.18 27.09 8.34 6.76 inf; +emmerdera emmerder VER 52.18 27.09 0.06 0.14 ind:fut:3s; +emmerderai emmerder VER 52.18 27.09 0.14 0.07 ind:fut:1s; +emmerderaient emmerder VER 52.18 27.09 0.00 0.07 cnd:pre:3p; +emmerderais emmerder VER 52.18 27.09 0.03 0.07 cnd:pre:1s; +emmerderait emmerder VER 52.18 27.09 0.20 0.20 cnd:pre:3s; +emmerderez emmerder VER 52.18 27.09 0.11 0.07 ind:fut:2p; +emmerderont emmerder VER 52.18 27.09 0.02 0.07 ind:fut:3p; +emmerdes emmerde NOM f p 6.15 3.51 4.90 2.91 +emmerdeur emmerdeur NOM m s 4.89 3.04 2.69 1.15 +emmerdeurs emmerdeur NOM m p 4.89 3.04 0.73 0.88 +emmerdeuse emmerdeur NOM f s 4.89 3.04 1.47 0.81 +emmerdeuses emmerdeuse NOM f p 0.07 0.00 0.07 0.00 +emmerdez emmerder VER 52.18 27.09 0.81 0.68 imp:pre:2p;ind:pre:2p; +emmerdons emmerder VER 52.18 27.09 0.00 0.07 ind:pre:1p; +emmerdé emmerder VER m s 52.18 27.09 1.47 2.43 par:pas; +emmerdée emmerder VER f s 52.18 27.09 0.22 0.34 par:pas; +emmerdés emmerder VER m p 52.18 27.09 0.32 0.68 par:pas; +emmi emmi ADV 0.03 0.00 0.03 0.00 +emmitoufla emmitoufler VER 0.13 4.12 0.00 0.14 ind:pas:3s; +emmitouflai emmitoufler VER 0.13 4.12 0.00 0.07 ind:pas:1s; +emmitouflait emmitoufler VER 0.13 4.12 0.00 0.41 ind:imp:3s; +emmitouflant emmitoufler VER 0.13 4.12 0.00 0.07 par:pre; +emmitoufle emmitoufler VER 0.13 4.12 0.03 0.27 ind:pre:3s; +emmitoufler emmitoufler VER 0.13 4.12 0.03 0.07 inf; +emmitouflez emmitoufler VER 0.13 4.12 0.01 0.00 imp:pre:2p; +emmitouflé emmitoufler VER m s 0.13 4.12 0.02 0.88 par:pas; +emmitouflée emmitoufler VER f s 0.13 4.12 0.04 1.08 par:pas; +emmitouflées emmitoufler VER f p 0.13 4.12 0.00 0.47 par:pas; +emmitouflés emmitouflé ADJ m p 0.15 1.15 0.11 0.47 +emmouflé emmoufler VER m s 0.00 0.07 0.00 0.07 par:pas; +emmouscaillements emmouscaillement NOM m p 0.00 0.07 0.00 0.07 +emmène emmener VER 272.70 105.47 77.85 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emmènent emmener VER 272.70 105.47 3.78 1.42 ind:pre:3p;sub:pre:3p; +emmènera emmener VER 272.70 105.47 4.44 0.95 ind:fut:3s; +emmènerai emmener VER 272.70 105.47 4.85 2.64 ind:fut:1s; +emmèneraient emmener VER 272.70 105.47 0.19 0.27 cnd:pre:3p; +emmènerais emmener VER 272.70 105.47 1.47 0.34 cnd:pre:1s;cnd:pre:2s; +emmènerait emmener VER 272.70 105.47 0.90 1.55 cnd:pre:3s; +emmèneras emmener VER 272.70 105.47 1.22 0.61 ind:fut:2s; +emmènerez emmener VER 272.70 105.47 0.76 0.41 ind:fut:2p; +emmèneriez emmener VER 272.70 105.47 0.15 0.14 cnd:pre:2p; +emmènerions emmener VER 272.70 105.47 0.11 0.00 cnd:pre:1p; +emmènerons emmener VER 272.70 105.47 0.58 0.07 ind:fut:1p; +emmèneront emmener VER 272.70 105.47 1.26 0.34 ind:fut:3p; +emmènes emmener VER 272.70 105.47 10.10 1.55 ind:pre:1p;ind:pre:2s;sub:pre:2s; +emmêla emmêler VER 1.31 5.20 0.00 0.14 ind:pas:3s; +emmêlai emmêler VER 1.31 5.20 0.00 0.07 ind:pas:1s; +emmêlaient emmêler VER 1.31 5.20 0.03 0.41 ind:imp:3p; +emmêlait emmêler VER 1.31 5.20 0.04 0.34 ind:imp:3s; +emmêlant emmêler VER 1.31 5.20 0.00 0.54 par:pre; +emmêle emmêler VER 1.31 5.20 0.09 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emmêlement emmêlement NOM m s 0.00 0.47 0.00 0.34 +emmêlements emmêlement NOM m p 0.00 0.47 0.00 0.14 +emmêlent emmêler VER 1.31 5.20 0.43 0.27 ind:pre:3p; +emmêler emmêler VER 1.31 5.20 0.20 0.41 inf; +emmêlera emmêler VER 1.31 5.20 0.00 0.07 ind:fut:3s; +emmêleront emmêler VER 1.31 5.20 0.00 0.07 ind:fut:3p; +emmêles emmêler VER 1.31 5.20 0.12 0.07 ind:pre:2s; +emmêlèrent emmêler VER 1.31 5.20 0.00 0.14 ind:pas:3p; +emmêlé emmêler VER m s 1.31 5.20 0.28 0.27 par:pas; +emmêlée emmêler VER f s 1.31 5.20 0.03 0.41 par:pas; +emmêlées emmêler VER f p 1.31 5.20 0.02 0.41 par:pas; +emmêlés emmêlé ADJ m p 0.27 2.84 0.07 1.96 +emménage emménager VER 13.70 2.36 2.10 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emménagea emménager VER 13.70 2.36 0.04 0.20 ind:pas:3s; +emménageaient emménager VER 13.70 2.36 0.02 0.00 ind:imp:3p; +emménageais emménager VER 13.70 2.36 0.04 0.00 ind:imp:1s;ind:imp:2s; +emménageait emménager VER 13.70 2.36 0.07 0.07 ind:imp:3s; +emménageant emménager VER 13.70 2.36 0.06 0.00 par:pre; +emménagement emménagement NOM m s 0.25 0.81 0.25 0.81 +emménagent emménager VER 13.70 2.36 0.20 0.07 ind:pre:3p; +emménageons emménager VER 13.70 2.36 0.17 0.14 imp:pre:1p;ind:pre:1p; +emménager emménager VER 13.70 2.36 5.46 1.15 inf; +emménagera emménager VER 13.70 2.36 0.13 0.00 ind:fut:3s; +emménagerai emménager VER 13.70 2.36 0.04 0.00 ind:fut:1s; +emménagerais emménager VER 13.70 2.36 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +emménagerait emménager VER 13.70 2.36 0.15 0.07 cnd:pre:3s; +emménagerez emménager VER 13.70 2.36 0.02 0.00 ind:fut:2p; +emménagerons emménager VER 13.70 2.36 0.03 0.00 ind:fut:1p; +emménages emménager VER 13.70 2.36 0.77 0.00 ind:pre:2s; +emménagez emménager VER 13.70 2.36 0.45 0.00 imp:pre:2p;ind:pre:2p; +emménagiez emménager VER 13.70 2.36 0.02 0.00 ind:imp:2p; +emménagions emménager VER 13.70 2.36 0.01 0.14 ind:imp:1p; +emménagèrent emménager VER 13.70 2.36 0.04 0.07 ind:pas:3p; +emménagé emménager VER m s 13.70 2.36 3.85 0.27 par:pas; +emmura emmurer VER 0.61 1.42 0.00 0.07 ind:pas:3s; +emmurait emmurer VER 0.61 1.42 0.01 0.07 ind:imp:3s; +emmure emmurer VER 0.61 1.42 0.03 0.14 ind:pre:3s; +emmurement emmurement NOM m s 0.01 0.00 0.01 0.00 +emmurer emmurer VER 0.61 1.42 0.27 0.34 inf; +emmuré emmurer VER m s 0.61 1.42 0.13 0.34 par:pas; +emmurée emmuré ADJ f s 0.04 0.81 0.04 0.41 +emmurées emmurer VER f p 0.61 1.42 0.10 0.00 par:pas; +emmurés emmurer VER m p 0.61 1.42 0.04 0.20 par:pas; +empaffe empaffer VER 0.06 0.07 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empaffer empaffer VER 0.06 0.07 0.02 0.07 inf; +empaffé empaffé NOM m s 0.50 0.20 0.38 0.14 +empaffés empaffé NOM m p 0.50 0.20 0.12 0.07 +empaillant empailler VER 1.03 0.27 0.00 0.07 par:pre; +empailler empailler VER 1.03 0.27 0.45 0.07 inf; +empailleur empailleur NOM m s 0.04 0.20 0.03 0.20 +empailleurs empailleur NOM m p 0.04 0.20 0.01 0.00 +empaillez empailler VER 1.03 0.27 0.01 0.00 imp:pre:2p; +empaillé empaillé ADJ m s 0.67 2.09 0.46 0.74 +empaillée empaillé ADJ f s 0.67 2.09 0.07 0.27 +empaillées empaillé ADJ f p 0.67 2.09 0.04 0.07 +empaillés empailler VER m p 1.03 0.27 0.34 0.00 par:pas; +empalait empaler VER 1.34 1.76 0.13 0.00 ind:imp:3s; +empalant empaler VER 1.34 1.76 0.04 0.00 par:pre; +empale empaler VER 1.34 1.76 0.10 0.41 ind:pre:1s;ind:pre:3s; +empalement empalement NOM m s 0.02 0.00 0.02 0.00 +empaler empaler VER 1.34 1.76 0.39 0.41 inf; +empalerais empaler VER 1.34 1.76 0.10 0.00 cnd:pre:1s; +empaleront empaler VER 1.34 1.76 0.00 0.07 ind:fut:3p; +empalmait empalmer VER 0.00 0.20 0.00 0.07 ind:imp:3s; +empalme empalmer VER 0.00 0.20 0.00 0.07 ind:pre:3s; +empalmé empalmer VER m s 0.00 0.20 0.00 0.07 par:pas; +empalé empalé ADJ m s 0.41 0.20 0.30 0.07 +empalée empaler VER f s 1.34 1.76 0.25 0.14 par:pas; +empalées empaler VER f p 1.34 1.76 0.00 0.14 par:pas; +empalés empaler VER m p 1.34 1.76 0.10 0.14 par:pas; +empan empan NOM m s 0.01 0.07 0.01 0.07 +empanaché empanaché ADJ m s 0.02 0.74 0.01 0.20 +empanachée empanaché ADJ f s 0.02 0.74 0.00 0.14 +empanachées empanaché ADJ f p 0.02 0.74 0.01 0.07 +empanachés empanaché ADJ m p 0.02 0.74 0.00 0.34 +empanner empanner VER 0.00 0.07 0.00 0.07 inf; +empapaoutent empapaouter VER 0.23 0.27 0.00 0.07 ind:pre:3p; +empapaouter empapaouter VER 0.23 0.27 0.12 0.00 inf; +empapaouté empapaouter VER m s 0.23 0.27 0.10 0.07 par:pas; +empapaoutés empapaouter VER m p 0.23 0.27 0.01 0.14 par:pas; +empaqueta empaqueter VER 0.35 2.36 0.00 0.20 ind:pas:3s; +empaquetage empaquetage NOM m s 0.14 0.20 0.14 0.20 +empaqueter empaqueter VER 0.35 2.36 0.14 0.54 inf; +empaqueteur empaqueteur NOM m s 0.01 0.00 0.01 0.00 +empaquette empaqueter VER 0.35 2.36 0.03 0.20 imp:pre:2s;ind:pre:3s; +empaquettent empaqueter VER 0.35 2.36 0.00 0.07 ind:pre:3p; +empaquettes empaqueter VER 0.35 2.36 0.00 0.07 ind:pre:2s; +empaquetèrent empaqueter VER 0.35 2.36 0.00 0.07 ind:pas:3p; +empaqueté empaqueter VER m s 0.35 2.36 0.13 0.27 par:pas; +empaquetée empaqueter VER f s 0.35 2.36 0.03 0.41 par:pas; +empaquetées empaqueté ADJ f p 0.13 0.68 0.11 0.14 +empaquetés empaqueter VER m p 0.35 2.36 0.01 0.07 par:pas; +empara emparer VER 12.80 39.26 0.60 6.89 ind:pas:3s; +emparadisé emparadiser VER m s 0.00 0.07 0.00 0.07 par:pas; +emparai emparer VER 12.80 39.26 0.00 0.47 ind:pas:1s; +emparaient emparer VER 12.80 39.26 0.04 0.95 ind:imp:3p; +emparais emparer VER 12.80 39.26 0.01 0.14 ind:imp:1s; +emparait emparer VER 12.80 39.26 0.20 5.41 ind:imp:3s; +emparant emparer VER 12.80 39.26 0.22 1.62 par:pre; +emparassent emparer VER 12.80 39.26 0.00 0.07 sub:imp:3p; +empare emparer VER 12.80 39.26 2.85 6.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +emparent emparer VER 12.80 39.26 0.80 1.08 ind:pre:3p; +emparer emparer VER 12.80 39.26 3.92 7.16 inf; +emparera emparer VER 12.80 39.26 0.14 0.20 ind:fut:3s; +emparerai emparer VER 12.80 39.26 0.03 0.00 ind:fut:1s; +empareraient emparer VER 12.80 39.26 0.01 0.34 cnd:pre:3p; +emparerais emparer VER 12.80 39.26 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +emparerait emparer VER 12.80 39.26 0.01 0.07 cnd:pre:3s; +empareront emparer VER 12.80 39.26 0.07 0.00 ind:fut:3p; +emparez emparer VER 12.80 39.26 0.91 0.00 imp:pre:2p;ind:pre:2p; +emparons emparer VER 12.80 39.26 0.16 0.00 imp:pre:1p;ind:pre:1p; +emparât emparer VER 12.80 39.26 0.00 0.27 sub:imp:3s; +emparèrent emparer VER 12.80 39.26 0.16 0.54 ind:pas:3p; +emparé emparer VER m s 12.80 39.26 1.53 3.72 par:pas; +emparée emparer VER f s 12.80 39.26 0.40 2.91 par:pas; +emparées emparer VER f p 12.80 39.26 0.11 0.20 par:pas; +emparés emparer VER m p 12.80 39.26 0.56 1.01 par:pas; +empathie empathie NOM f s 0.63 0.00 0.63 0.00 +empathique empathique ADJ s 0.26 0.07 0.23 0.07 +empathiques empathique ADJ f p 0.26 0.07 0.03 0.00 +empattement empattement NOM m s 0.09 0.20 0.09 0.14 +empattements empattement NOM m p 0.09 0.20 0.00 0.07 +empaume empaumer VER 0.00 0.20 0.00 0.07 ind:pre:3s; +empaumer empaumer VER 0.00 0.20 0.00 0.14 inf; +empaumure empaumure NOM f s 0.10 0.20 0.10 0.14 +empaumures empaumure NOM f p 0.10 0.20 0.00 0.07 +empeigne empeigne NOM f s 0.01 0.54 0.01 0.54 +empeignés empeigner VER m p 0.00 0.07 0.00 0.07 par:pas; +empennage empennage NOM m s 0.04 0.20 0.04 0.20 +empennait empenner VER 0.00 0.34 0.00 0.07 ind:imp:3s; +empenne empenne NOM f s 0.01 0.00 0.01 0.00 +empennée empenner VER f s 0.00 0.34 0.00 0.07 par:pas; +empennées empenner VER f p 0.00 0.34 0.00 0.14 par:pas; +empennés empenner VER m p 0.00 0.34 0.00 0.07 par:pas; +empereur empereur NOM m s 25.55 38.45 24.45 35.88 +empereurs empereur NOM m p 25.55 38.45 1.10 2.57 +emperlait emperler VER 0.00 0.41 0.00 0.07 ind:imp:3s; +emperlant emperler VER 0.00 0.41 0.00 0.07 par:pre; +emperler emperler VER 0.00 0.41 0.00 0.07 inf; +emperlousées emperlousé ADJ f p 0.00 0.14 0.00 0.14 +emperlé emperler VER m s 0.00 0.41 0.00 0.07 par:pas; +emperlées emperlé ADJ f p 0.00 0.27 0.00 0.14 +emperlés emperler VER m p 0.00 0.41 0.00 0.14 par:pas; +emperruqués emperruqué ADJ m p 0.00 0.07 0.00 0.07 +empesage empesage NOM m s 0.01 0.07 0.01 0.07 +empesant empeser VER 0.02 1.15 0.00 0.07 par:pre; +empesta empester VER 3.28 3.31 0.00 0.14 ind:pas:3s; +empestaient empester VER 3.28 3.31 0.02 0.27 ind:imp:3p; +empestais empester VER 3.28 3.31 0.01 0.07 ind:imp:1s; +empestait empester VER 3.28 3.31 0.27 0.81 ind:imp:3s; +empestant empester VER 3.28 3.31 0.13 0.20 par:pre; +empeste empester VER 3.28 3.31 1.87 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empestent empester VER 3.28 3.31 0.13 0.14 ind:pre:3p; +empester empester VER 3.28 3.31 0.39 0.27 inf; +empestes empester VER 3.28 3.31 0.35 0.00 ind:pre:2s; +empestez empester VER 3.28 3.31 0.11 0.07 ind:pre:2p; +empesté empester VER m s 3.28 3.31 0.01 0.27 par:pas; +empestée empester VER f s 3.28 3.31 0.00 0.61 par:pas; +empestées empester VER f p 3.28 3.31 0.00 0.07 par:pas; +empesé empeser VER m s 0.02 1.15 0.01 0.34 par:pas; +empesée empeser VER f s 0.02 1.15 0.01 0.34 par:pas; +empesées empesé ADJ f p 0.00 1.96 0.00 0.41 +empesés empesé ADJ m p 0.00 1.96 0.00 0.20 +emphase emphase NOM f s 0.22 5.27 0.22 5.20 +emphases emphase NOM f p 0.22 5.27 0.00 0.07 +emphatique emphatique ADJ s 0.22 1.96 0.18 1.62 +emphatiquement emphatiquement ADV 0.01 0.14 0.01 0.14 +emphatiques emphatique ADJ m p 0.22 1.96 0.04 0.34 +emphatise emphatiser VER 0.00 0.07 0.00 0.07 ind:pre:1s; +emphysème emphysème NOM m s 0.31 0.41 0.30 0.34 +emphysèmes emphysème NOM m p 0.31 0.41 0.01 0.07 +emphysémateuse emphysémateux ADJ f s 0.00 0.07 0.00 0.07 +empierrage empierrage NOM m s 0.00 0.07 0.00 0.07 +empierrait empierrer VER 0.00 0.41 0.00 0.07 ind:imp:3s; +empierrement empierrement NOM m s 0.00 0.34 0.00 0.34 +empierrer empierrer VER 0.00 0.41 0.00 0.07 inf; +empierré empierré ADJ m s 0.00 0.74 0.00 0.20 +empierrée empierré ADJ f s 0.00 0.74 0.00 0.20 +empierrées empierré ADJ f p 0.00 0.74 0.00 0.20 +empierrés empierré ADJ m p 0.00 0.74 0.00 0.14 +empiffra empiffrer VER 1.25 2.91 0.00 0.20 ind:pas:3s; +empiffraient empiffrer VER 1.25 2.91 0.01 0.07 ind:imp:3p; +empiffrais empiffrer VER 1.25 2.91 0.01 0.14 ind:imp:1s; +empiffrait empiffrer VER 1.25 2.91 0.04 0.41 ind:imp:3s; +empiffrant empiffrer VER 1.25 2.91 0.01 0.07 par:pre; +empiffre empiffrer VER 1.25 2.91 0.10 0.61 imp:pre:2s;ind:pre:3s; +empiffrent empiffrer VER 1.25 2.91 0.14 0.20 ind:pre:3p; +empiffrer empiffrer VER 1.25 2.91 0.47 1.22 inf; +empiffres empiffrer VER 1.25 2.91 0.03 0.00 ind:pre:2s; +empiffrez empiffrer VER 1.25 2.91 0.14 0.00 imp:pre:2p;ind:pre:2p; +empiffrée empiffrer VER f s 1.25 2.91 0.16 0.00 par:pas; +empiffrées empiffrer VER f p 1.25 2.91 0.14 0.00 par:pas; +empila empiler VER 1.78 15.81 0.00 0.74 ind:pas:3s; +empilage empilage NOM m s 0.04 0.27 0.04 0.20 +empilages empilage NOM m p 0.04 0.27 0.00 0.07 +empilaient empiler VER 1.78 15.81 0.03 2.77 ind:imp:3p; +empilais empiler VER 1.78 15.81 0.01 0.27 ind:imp:1s; +empilait empiler VER 1.78 15.81 0.03 1.35 ind:imp:3s; +empilant empiler VER 1.78 15.81 0.16 0.34 par:pre; +empile empiler VER 1.78 15.81 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empilement empilement NOM m s 0.00 0.54 0.00 0.27 +empilements empilement NOM m p 0.00 0.54 0.00 0.27 +empilent empiler VER 1.78 15.81 0.07 0.54 ind:pre:3p; +empiler empiler VER 1.78 15.81 0.25 1.35 ind:pre:2p;inf; +empilerai empiler VER 1.78 15.81 0.00 0.07 ind:fut:1s; +empilerions empiler VER 1.78 15.81 0.10 0.00 cnd:pre:1p; +empilez empiler VER 1.78 15.81 0.20 0.00 imp:pre:2p; +empilons empiler VER 1.78 15.81 0.00 0.07 ind:pre:1p; +empilèrent empiler VER 1.78 15.81 0.00 0.07 ind:pas:3p; +empilé empiler VER m s 1.78 15.81 0.13 0.68 par:pas; +empilée empiler VER f s 1.78 15.81 0.03 0.54 par:pas; +empilées empiler VER f p 1.78 15.81 0.09 2.57 par:pas; +empilés empiler VER m p 1.78 15.81 0.40 3.65 par:pas; +empira empirer VER 12.93 2.91 0.03 0.34 ind:pas:3s; +empirait empirer VER 12.93 2.91 0.19 0.47 ind:imp:3s; +empirant empirer VER 12.93 2.91 0.06 0.27 par:pre; +empire empire NOM m s 19.47 63.51 19.02 60.74 +empirent empirer VER 12.93 2.91 0.39 0.00 ind:pre:3p; +empirer empirer VER 12.93 2.91 5.28 0.54 inf; +empirera empirer VER 12.93 2.91 0.26 0.00 ind:fut:3s; +empirerait empirer VER 12.93 2.91 0.03 0.07 cnd:pre:3s; +empireront empirer VER 12.93 2.91 0.04 0.00 ind:fut:3p; +empires empire NOM m p 19.47 63.51 0.44 2.77 +empirez empirer VER 12.93 2.91 0.03 0.00 imp:pre:2p;ind:pre:2p; +empirique empirique ADJ s 0.30 1.01 0.22 0.54 +empiriquement empiriquement ADV 0.00 0.07 0.00 0.07 +empiriques empirique ADJ p 0.30 1.01 0.09 0.47 +empirisme empirisme NOM m s 0.02 0.27 0.02 0.20 +empirismes empirisme NOM m p 0.02 0.27 0.00 0.07 +empirèrent empirer VER 12.93 2.91 0.01 0.07 ind:pas:3p; +empiré empirer VER m s 12.93 2.91 2.12 0.34 par:pas; +empirée empirer VER f s 12.93 2.91 0.03 0.07 par:pas; +empiècement empiècement NOM m s 0.00 0.41 0.00 0.20 +empiècements empiècement NOM m p 0.00 0.41 0.00 0.20 +empiète empiéter VER 1.17 1.89 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empiètements empiètement NOM m p 0.00 0.34 0.00 0.34 +empiètent empiéter VER 1.17 1.89 0.26 0.14 ind:pre:3p;sub:pre:3p; +empiètes empiéter VER 1.17 1.89 0.06 0.00 ind:pre:2s; +empiétaient empiéter VER 1.17 1.89 0.02 0.27 ind:imp:3p; +empiétais empiéter VER 1.17 1.89 0.00 0.07 ind:imp:1s; +empiétait empiéter VER 1.17 1.89 0.01 0.20 ind:imp:3s; +empiétant empiéter VER 1.17 1.89 0.01 0.47 par:pre; +empiétement empiétement NOM m s 0.00 1.96 0.00 0.61 +empiétements empiétement NOM m p 0.00 1.96 0.00 1.35 +empiéter empiéter VER 1.17 1.89 0.20 0.47 inf; +empiétez empiéter VER 1.17 1.89 0.11 0.00 imp:pre:2p;ind:pre:2p; +empiété empiéter VER m s 1.17 1.89 0.22 0.07 par:pas; +emplît emplir VER 6.40 49.73 0.00 0.07 sub:imp:3s; +emplacement emplacement NOM m s 6.90 12.70 6.00 10.95 +emplacements emplacement NOM m p 6.90 12.70 0.90 1.76 +emplafonne emplafonner VER 0.01 0.61 0.01 0.07 ind:pre:1s;ind:pre:3s; +emplafonnent emplafonner VER 0.01 0.61 0.00 0.07 ind:pre:3p; +emplafonner emplafonner VER 0.01 0.61 0.00 0.27 inf; +emplafonné emplafonner VER m s 0.01 0.61 0.00 0.14 par:pas; +emplafonnée emplafonner VER f s 0.01 0.61 0.00 0.07 par:pas; +emplanture emplanture NOM f s 0.00 0.14 0.00 0.14 +emplette emplette NOM f s 0.57 2.57 0.03 0.88 +emplettes emplette NOM f p 0.57 2.57 0.55 1.69 +empli emplir VER m s 6.40 49.73 1.28 5.47 par:pas; +emplie emplir VER f s 6.40 49.73 0.31 2.77 par:pas; +emplies emplir VER f p 6.40 49.73 0.04 1.42 par:pas; +emplir emplir VER 6.40 49.73 0.30 6.01 inf; +emplira emplir VER 6.40 49.73 0.16 0.14 ind:fut:3s; +empliraient emplir VER 6.40 49.73 0.01 0.00 cnd:pre:3p; +emplirait emplir VER 6.40 49.73 0.01 0.07 cnd:pre:3s; +emplirent emplir VER 6.40 49.73 0.01 0.61 ind:pas:3p; +emplis emplir VER m p 6.40 49.73 0.40 1.76 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +emplissaient emplir VER 6.40 49.73 0.14 3.51 ind:imp:3p; +emplissais emplir VER 6.40 49.73 0.00 0.27 ind:imp:1s; +emplissait emplir VER 6.40 49.73 0.53 10.95 ind:imp:3s; +emplissant emplir VER 6.40 49.73 0.03 2.09 par:pre; +emplissent emplir VER 6.40 49.73 0.59 1.42 ind:pre:3p; +emplissez emplir VER 6.40 49.73 0.19 0.00 imp:pre:2p;ind:pre:2p; +emplissons emplir VER 6.40 49.73 0.14 0.00 imp:pre:1p; +emplit emplir VER 6.40 49.73 2.25 13.18 ind:pre:3s;ind:pas:3s; +emploi emploi NOM m s 30.94 29.19 25.96 26.42 +emploie employer VER 19.46 46.22 3.74 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emploient employer VER 19.46 46.22 0.64 2.09 ind:pre:3p; +emploiera employer VER 19.46 46.22 0.36 0.41 ind:fut:3s; +emploierai employer VER 19.46 46.22 0.27 0.34 ind:fut:1s; +emploieraient employer VER 19.46 46.22 0.02 0.20 cnd:pre:3p; +emploierais employer VER 19.46 46.22 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +emploierait employer VER 19.46 46.22 0.28 0.34 cnd:pre:3s; +emploierez employer VER 19.46 46.22 0.01 0.07 ind:fut:2p; +emploieriez employer VER 19.46 46.22 0.03 0.00 cnd:pre:2p; +emploierons employer VER 19.46 46.22 0.14 0.00 ind:fut:1p; +emploieront employer VER 19.46 46.22 0.11 0.07 ind:fut:3p; +emploies employer VER 19.46 46.22 0.44 0.54 ind:pre:2s; +emplois emploi NOM m p 30.94 29.19 4.98 2.77 +emplâtrage emplâtrage NOM m s 0.00 0.14 0.00 0.14 +emplâtrais emplâtrer VER 0.06 0.54 0.00 0.07 ind:imp:1s; +emplâtre emplâtre NOM m s 0.15 1.35 0.12 0.95 +emplâtrer emplâtrer VER 0.06 0.54 0.04 0.34 inf; +emplâtres emplâtre NOM m p 0.15 1.35 0.03 0.41 +emplâtré emplâtrer VER m s 0.06 0.54 0.02 0.14 par:pas; +employa employer VER 19.46 46.22 0.03 1.22 ind:pas:3s; +employai employer VER 19.46 46.22 0.01 0.27 ind:pas:1s; +employaient employer VER 19.46 46.22 0.11 2.09 ind:imp:3p; +employais employer VER 19.46 46.22 0.07 0.81 ind:imp:1s;ind:imp:2s; +employait employer VER 19.46 46.22 1.00 7.09 ind:imp:3s; +employant employer VER 19.46 46.22 0.41 2.16 par:pre; +employer employer VER 19.46 46.22 4.15 10.95 inf; +employeur employeur NOM m s 4.01 2.70 2.70 1.69 +employeurs employeur NOM m p 4.01 2.70 1.31 1.01 +employez employer VER 19.46 46.22 0.69 0.27 imp:pre:2p;ind:pre:2p; +employiez employer VER 19.46 46.22 0.04 0.00 ind:imp:2p; +employions employer VER 19.46 46.22 0.01 0.14 ind:imp:1p; +employâmes employer VER 19.46 46.22 0.00 0.07 ind:pas:1p; +employons employer VER 19.46 46.22 0.42 0.27 imp:pre:1p;ind:pre:1p; +employât employer VER 19.46 46.22 0.00 0.14 sub:imp:3s; +employèrent employer VER 19.46 46.22 0.14 0.20 ind:pas:3p; +employé employé NOM m s 30.80 26.08 10.61 9.86 +employée employé NOM f s 30.80 26.08 3.24 2.43 +employées employé NOM f p 30.80 26.08 1.05 1.01 +employés employé NOM m p 30.80 26.08 15.90 12.77 +empluma emplumer VER 0.02 0.34 0.00 0.07 ind:pas:3s; +emplume emplumer VER 0.02 0.34 0.00 0.07 ind:pre:3s; +emplumé emplumé ADJ m s 0.28 0.88 0.05 0.34 +emplumée emplumé ADJ f s 0.28 0.88 0.14 0.20 +emplumées emplumer VER f p 0.02 0.34 0.00 0.07 par:pas; +emplumés emplumé ADJ m p 0.28 0.88 0.10 0.34 +empocha empocher VER 2.92 4.46 0.14 1.08 ind:pas:3s; +empochai empocher VER 2.92 4.46 0.00 0.14 ind:pas:1s; +empochaient empocher VER 2.92 4.46 0.04 0.07 ind:imp:3p; +empochais empocher VER 2.92 4.46 0.01 0.14 ind:imp:1s; +empochait empocher VER 2.92 4.46 0.02 0.61 ind:imp:3s; +empochant empocher VER 2.92 4.46 0.01 0.34 par:pre; +empoche empocher VER 2.92 4.46 0.41 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empochent empocher VER 2.92 4.46 0.09 0.07 ind:pre:3p; +empocher empocher VER 2.92 4.46 1.28 0.88 inf; +empochera empocher VER 2.92 4.46 0.08 0.00 ind:fut:3s; +empocherais empocher VER 2.92 4.46 0.03 0.00 cnd:pre:1s; +empocheras empocher VER 2.92 4.46 0.02 0.00 ind:fut:2s; +empoches empocher VER 2.92 4.46 0.04 0.00 ind:pre:2s; +empochez empocher VER 2.92 4.46 0.03 0.00 imp:pre:2p;ind:pre:2p; +empochiez empocher VER 2.92 4.46 0.01 0.00 ind:imp:2p; +empoché empocher VER m s 2.92 4.46 0.49 0.68 par:pas; +empochée empocher VER f s 2.92 4.46 0.17 0.00 par:pas; +empochées empocher VER f p 2.92 4.46 0.03 0.07 par:pas; +empochés empocher VER m p 2.92 4.46 0.02 0.00 par:pas; +empoigna empoigner VER 1.84 26.01 0.04 8.11 ind:pas:3s; +empoignade empoignade NOM f s 0.16 1.01 0.16 0.54 +empoignades empoignade NOM f p 0.16 1.01 0.00 0.47 +empoignai empoigner VER 1.84 26.01 0.00 0.20 ind:pas:1s; +empoignaient empoigner VER 1.84 26.01 0.00 0.54 ind:imp:3p; +empoignais empoigner VER 1.84 26.01 0.00 0.14 ind:imp:1s; +empoignait empoigner VER 1.84 26.01 0.00 2.30 ind:imp:3s; +empoignant empoigner VER 1.84 26.01 0.23 1.62 par:pre; +empoigne empoigner VER 1.84 26.01 0.72 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empoignent empoigner VER 1.84 26.01 0.02 0.61 ind:pre:3p; +empoigner empoigner VER 1.84 26.01 0.28 2.70 inf; +empoignera empoigner VER 1.84 26.01 0.01 0.00 ind:fut:3s; +empoigneront empoigner VER 1.84 26.01 0.00 0.07 ind:fut:3p; +empoignes empoigner VER 1.84 26.01 0.04 0.00 ind:pre:2s; +empoignez empoigner VER 1.84 26.01 0.17 0.07 imp:pre:2p; +empoignons empoigner VER 1.84 26.01 0.01 0.07 imp:pre:1p;ind:pre:1p; +empoignèrent empoigner VER 1.84 26.01 0.00 0.95 ind:pas:3p; +empoigné empoigner VER m s 1.84 26.01 0.29 3.65 par:pas; +empoignée empoigner VER f s 1.84 26.01 0.02 0.47 par:pas; +empoignées empoigner VER f p 1.84 26.01 0.00 0.14 par:pas; +empoiler empoiler VER 0.00 0.14 0.00 0.07 inf; +empoilés empoiler VER m p 0.00 0.14 0.00 0.07 par:pas; +empois empois NOM m 0.01 0.14 0.01 0.14 +empoisonna empoisonner VER 19.62 15.00 0.01 0.14 ind:pas:3s; +empoisonnaient empoisonner VER 19.62 15.00 0.12 0.27 ind:imp:3p; +empoisonnais empoisonner VER 19.62 15.00 0.12 0.00 ind:imp:1s;ind:imp:2s; +empoisonnait empoisonner VER 19.62 15.00 0.10 0.61 ind:imp:3s; +empoisonnant empoisonner VER 19.62 15.00 0.10 0.00 par:pre; +empoisonnante empoisonnant ADJ f s 0.15 0.20 0.06 0.00 +empoisonnantes empoisonnant ADJ f p 0.15 0.20 0.01 0.07 +empoisonne empoisonner VER 19.62 15.00 1.76 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empoisonnement empoisonnement NOM m s 1.85 0.61 1.80 0.61 +empoisonnements empoisonnement NOM m p 1.85 0.61 0.05 0.00 +empoisonnent empoisonner VER 19.62 15.00 0.41 0.54 ind:pre:3p; +empoisonner empoisonner VER 19.62 15.00 3.57 2.57 inf; +empoisonnera empoisonner VER 19.62 15.00 0.31 0.14 ind:fut:3s; +empoisonnerai empoisonner VER 19.62 15.00 0.11 0.00 ind:fut:1s; +empoisonneraient empoisonner VER 19.62 15.00 0.00 0.07 cnd:pre:3p; +empoisonnerais empoisonner VER 19.62 15.00 0.02 0.00 cnd:pre:1s; +empoisonnerez empoisonner VER 19.62 15.00 0.01 0.00 ind:fut:2p; +empoisonneront empoisonner VER 19.62 15.00 0.02 0.00 ind:fut:3p; +empoisonnes empoisonner VER 19.62 15.00 0.31 0.07 ind:pre:2s; +empoisonneur empoisonneur NOM m s 0.98 0.88 0.65 0.47 +empoisonneurs empoisonneur NOM m p 0.98 0.88 0.18 0.07 +empoisonneuse empoisonneur NOM f s 0.98 0.88 0.16 0.27 +empoisonneuses empoisonneuse NOM f p 0.01 0.00 0.01 0.00 +empoisonnez empoisonner VER 19.62 15.00 0.20 0.20 imp:pre:2p;ind:pre:2p; +empoisonné empoisonner VER m s 19.62 15.00 8.22 3.58 par:pas; +empoisonnée empoisonner VER f s 19.62 15.00 2.83 2.16 par:pas; +empoisonnées empoisonner VER f p 19.62 15.00 0.57 1.89 par:pas; +empoisonnés empoisonner VER m p 19.62 15.00 0.82 1.28 par:pas; +empoissait empoisser VER 0.00 0.34 0.00 0.07 ind:imp:3s; +empoisse empoisser VER 0.00 0.34 0.00 0.07 ind:pre:3s; +empoisser empoisser VER 0.00 0.34 0.00 0.07 inf; +empoissonner empoissonner VER 0.02 0.14 0.01 0.00 inf; +empoissonné empoissonner VER m s 0.02 0.14 0.01 0.07 par:pas; +empoissonnées empoissonner VER f p 0.02 0.14 0.00 0.07 par:pas; +empoissé empoisser VER m s 0.00 0.34 0.00 0.07 par:pas; +empoissés empoisser VER m p 0.00 0.34 0.00 0.07 par:pas; +emporium emporium NOM m s 0.04 0.14 0.04 0.14 +emport emport NOM m s 0.00 0.07 0.00 0.07 +emporta emporter VER 69.02 121.28 0.42 7.43 ind:pas:3s; +emportai emporter VER 69.02 121.28 0.01 0.74 ind:pas:1s; +emportaient emporter VER 69.02 121.28 0.23 2.84 ind:imp:3p; +emportais emporter VER 69.02 121.28 0.04 2.43 ind:imp:1s;ind:imp:2s; +emportait emporter VER 69.02 121.28 1.44 16.82 ind:imp:3s; +emportant emporter VER 69.02 121.28 0.90 8.92 par:pre; +emporte_pièce emporte_pièce NOM m 0.00 0.95 0.00 0.95 +emporte emporter VER 69.02 121.28 19.89 16.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +emportement emportement NOM m s 0.97 3.51 0.55 3.24 +emportements emportement NOM m p 0.97 3.51 0.42 0.27 +emportent emporter VER 69.02 121.28 1.30 2.03 ind:pre:3p; +emporter emporter VER 69.02 121.28 16.69 24.19 inf; +emportera emporter VER 69.02 121.28 2.45 1.49 ind:fut:3s; +emporterai emporter VER 69.02 121.28 0.40 0.27 ind:fut:1s; +emporteraient emporter VER 69.02 121.28 0.02 0.41 cnd:pre:3p; +emporterais emporter VER 69.02 121.28 0.14 0.20 cnd:pre:1s; +emporterait emporter VER 69.02 121.28 0.13 1.76 cnd:pre:3s; +emporteras emporter VER 69.02 121.28 0.53 0.41 ind:fut:2s; +emporterez emporter VER 69.02 121.28 0.36 0.14 ind:fut:2p; +emporteriez emporter VER 69.02 121.28 0.00 0.07 cnd:pre:2p; +emporterions emporter VER 69.02 121.28 0.00 0.07 cnd:pre:1p; +emporterons emporter VER 69.02 121.28 0.22 0.14 ind:fut:1p; +emporteront emporter VER 69.02 121.28 0.21 0.41 ind:fut:3p; +emportes emporter VER 69.02 121.28 2.01 0.68 ind:pre:2s; +emportez emporter VER 69.02 121.28 3.54 1.22 imp:pre:2p;ind:pre:2p; +emportiez emporter VER 69.02 121.28 0.41 0.14 ind:imp:2p; +emportions emporter VER 69.02 121.28 0.01 0.34 ind:imp:1p; +emportons emporter VER 69.02 121.28 0.80 0.14 imp:pre:1p;ind:pre:1p; +emportât emporter VER 69.02 121.28 0.01 0.61 sub:imp:3s; +emportèrent emporter VER 69.02 121.28 0.04 1.01 ind:pas:3p; +emporté emporter VER m s 69.02 121.28 12.46 18.58 par:pas; +emportée emporter VER f s 69.02 121.28 2.31 5.14 par:pas; +emportées emporter VER f p 69.02 121.28 0.35 1.69 par:pas; +emportés emporter VER m p 69.02 121.28 1.73 4.53 par:pas; +empâta empâter VER 0.11 1.76 0.00 0.07 ind:pas:3s; +empâtait empâter VER 0.11 1.76 0.01 0.54 ind:imp:3s; +empâte empâter VER 0.11 1.76 0.06 0.27 ind:pre:1s;ind:pre:3s; +empâtement empâtement NOM m s 0.03 0.54 0.01 0.41 +empâtements empâtement NOM m p 0.03 0.54 0.01 0.14 +empâtent empâter VER 0.11 1.76 0.00 0.14 ind:pre:3p; +empâter empâter VER 0.11 1.76 0.03 0.27 inf; +empâté empâté ADJ m s 0.04 1.35 0.01 0.54 +empoté empoté NOM m s 0.67 0.61 0.55 0.61 +empâtée empâté ADJ f s 0.04 1.35 0.01 0.41 +empotée empoté ADJ f s 0.80 0.61 0.24 0.14 +empâtées empâté ADJ f p 0.04 1.35 0.02 0.14 +empâtés empâté ADJ m p 0.04 1.35 0.00 0.27 +empotés empoté NOM m p 0.67 0.61 0.12 0.00 +empourpra empourprer VER 0.03 2.97 0.00 0.81 ind:pas:3s; +empourprait empourprer VER 0.03 2.97 0.00 0.61 ind:imp:3s; +empourprant empourprer VER 0.03 2.97 0.00 0.27 par:pre; +empourpre empourprer VER 0.03 2.97 0.01 0.47 ind:pre:3s; +empourprent empourprer VER 0.03 2.97 0.00 0.07 ind:pre:3p; +empourprer empourprer VER 0.03 2.97 0.01 0.14 inf; +empourpré empourprer VER m s 0.03 2.97 0.00 0.27 par:pas; +empourprée empourprer VER f s 0.03 2.97 0.01 0.14 par:pas; +empourprées empourprer VER f p 0.03 2.97 0.00 0.14 par:pas; +empourprés empourprer VER m p 0.03 2.97 0.00 0.07 par:pas; +empoussière empoussiérer VER 0.02 0.54 0.01 0.07 ind:pre:3s; +empoussièrent empoussiérer VER 0.02 0.54 0.00 0.07 ind:pre:3p; +empoussiérait empoussiérer VER 0.02 0.54 0.00 0.14 ind:imp:3s; +empoussiéré empoussiérer VER m s 0.02 0.54 0.01 0.14 par:pas; +empoussiérée empoussiéré ADJ f s 0.00 0.81 0.00 0.27 +empoussiérées empoussiéré ADJ f p 0.00 0.81 0.00 0.14 +empoussiérés empoussiéré ADJ m p 0.00 0.81 0.00 0.20 +empreignit empreindre VER 0.23 2.23 0.00 0.07 ind:pas:3s; +empreint empreindre VER m s 0.23 2.23 0.08 1.15 ind:pre:3s;par:pas; +empreinte empreinte NOM f s 42.06 15.61 11.41 8.72 +empreintes empreinte NOM f p 42.06 15.61 30.65 6.89 +empreints empreindre VER m p 0.23 2.23 0.15 1.01 par:pas; +empressa empresser VER 1.65 12.91 0.13 2.50 ind:pas:3s; +empressai empresser VER 1.65 12.91 0.01 0.41 ind:pas:1s; +empressaient empresser VER 1.65 12.91 0.00 1.01 ind:imp:3p; +empressais empresser VER 1.65 12.91 0.00 0.14 ind:imp:1s; +empressait empresser VER 1.65 12.91 0.00 1.35 ind:imp:3s; +empressant empresser VER 1.65 12.91 0.01 0.27 par:pre; +empresse empresser VER 1.65 12.91 0.70 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empressement empressement NOM m s 0.46 6.15 0.46 6.01 +empressements empressement NOM m p 0.46 6.15 0.00 0.14 +empressent empresser VER 1.65 12.91 0.01 0.54 ind:pre:3p; +empresser empresser VER 1.65 12.91 0.17 0.41 inf; +empressera empresser VER 1.65 12.91 0.02 0.14 ind:fut:3s; +empresserait empresser VER 1.65 12.91 0.04 0.20 cnd:pre:3s; +empresseras empresser VER 1.65 12.91 0.01 0.00 ind:fut:2s; +empresserez empresser VER 1.65 12.91 0.01 0.00 ind:fut:2p; +empresses empresser VER 1.65 12.91 0.02 0.07 ind:pre:2s; +empressâmes empresser VER 1.65 12.91 0.00 0.14 ind:pas:1p; +empressèrent empresser VER 1.65 12.91 0.00 0.88 ind:pas:3p; +empressé empresser VER m s 1.65 12.91 0.27 1.35 par:pas; +empressée empresser VER f s 1.65 12.91 0.08 0.47 par:pas; +empressées empresser VER f p 1.65 12.91 0.14 0.27 par:pas; +empressés empressé NOM m p 0.16 0.47 0.14 0.14 +emprise emprise NOM f s 3.08 3.65 3.08 3.58 +emprises emprise NOM f p 3.08 3.65 0.00 0.07 +emprisonna emprisonner VER 6.46 10.27 0.16 0.54 ind:pas:3s; +emprisonnaient emprisonner VER 6.46 10.27 0.00 0.41 ind:imp:3p; +emprisonnait emprisonner VER 6.46 10.27 0.01 0.74 ind:imp:3s; +emprisonnant emprisonner VER 6.46 10.27 0.14 0.95 par:pre; +emprisonne emprisonner VER 6.46 10.27 0.65 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +emprisonnement emprisonnement NOM m s 1.80 0.81 1.74 0.61 +emprisonnements emprisonnement NOM m p 1.80 0.81 0.06 0.20 +emprisonnent emprisonner VER 6.46 10.27 0.26 0.54 ind:pre:3p; +emprisonner emprisonner VER 6.46 10.27 1.48 1.35 inf; +emprisonnera emprisonner VER 6.46 10.27 0.02 0.07 ind:fut:3s; +emprisonnez emprisonner VER 6.46 10.27 0.10 0.00 imp:pre:2p;ind:pre:2p; +emprisonnèrent emprisonner VER 6.46 10.27 0.01 0.07 ind:pas:3p; +emprisonné emprisonner VER m s 6.46 10.27 2.60 1.69 par:pas; +emprisonnée emprisonner VER f s 6.46 10.27 0.54 1.49 ind:imp:3p;par:pas; +emprisonnées emprisonner VER f p 6.46 10.27 0.15 0.20 par:pas; +emprisonnés emprisonner VER m p 6.46 10.27 0.35 1.08 par:pas; +emprunt emprunt NOM m s 3.66 4.73 3.18 3.78 +emprunta emprunter VER 31.31 31.28 0.01 1.55 ind:pas:3s; +empruntai emprunter VER 31.31 31.28 0.01 0.95 ind:pas:1s; +empruntaient emprunter VER 31.31 31.28 0.01 1.01 ind:imp:3p; +empruntais emprunter VER 31.31 31.28 0.08 0.88 ind:imp:1s;ind:imp:2s; +empruntait emprunter VER 31.31 31.28 0.47 2.64 ind:imp:3s; +empruntant emprunter VER 31.31 31.28 0.20 2.36 par:pre; +emprunte emprunter VER 31.31 31.28 4.30 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empruntent emprunter VER 31.31 31.28 0.44 0.61 ind:pre:3p; +emprunter emprunter VER 31.31 31.28 15.87 7.09 inf; +empruntera emprunter VER 31.31 31.28 0.10 0.07 ind:fut:3s; +emprunterai emprunter VER 31.31 31.28 0.20 0.07 ind:fut:1s; +emprunteraient emprunter VER 31.31 31.28 0.00 0.14 cnd:pre:3p; +emprunterais emprunter VER 31.31 31.28 0.13 0.07 cnd:pre:1s; +emprunterait emprunter VER 31.31 31.28 0.03 0.54 cnd:pre:3s; +emprunteras emprunter VER 31.31 31.28 0.07 0.07 ind:fut:2s; +emprunterons emprunter VER 31.31 31.28 0.03 0.00 ind:fut:1p; +emprunteront emprunter VER 31.31 31.28 0.13 0.14 ind:fut:3p; +empruntes emprunter VER 31.31 31.28 0.52 0.20 ind:pre:2s; +emprunteur emprunteur NOM m s 0.04 0.00 0.04 0.00 +empruntez emprunter VER 31.31 31.28 0.40 0.00 imp:pre:2p;ind:pre:2p; +empruntions emprunter VER 31.31 31.28 0.04 0.47 ind:imp:1p; +empruntâmes emprunter VER 31.31 31.28 0.01 0.07 ind:pas:1p; +empruntons emprunter VER 31.31 31.28 0.10 0.41 imp:pre:1p;ind:pre:1p; +empruntât emprunter VER 31.31 31.28 0.00 0.07 sub:imp:3s; +emprunts emprunt NOM m p 3.66 4.73 0.47 0.95 +empruntèrent emprunter VER 31.31 31.28 0.01 0.74 ind:pas:3p; +emprunté emprunter VER m s 31.31 31.28 6.63 5.68 par:pas; +empruntée emprunter VER f s 31.31 31.28 1.05 1.15 par:pas; +empruntées emprunter VER f p 31.31 31.28 0.25 0.47 par:pas; +empruntés emprunter VER m p 31.31 31.28 0.21 1.55 par:pas; +empuanti empuantir VER m s 0.03 1.22 0.02 0.47 par:pas; +empuantie empuanti ADJ f s 0.00 0.34 0.00 0.14 +empuanties empuantir VER f p 0.03 1.22 0.00 0.07 par:pas; +empuantir empuantir VER 0.03 1.22 0.01 0.20 inf; +empuantis empuantir VER m p 0.03 1.22 0.00 0.07 par:pas; +empuantissaient empuantir VER 0.03 1.22 0.00 0.07 ind:imp:3p; +empuantissait empuantir VER 0.03 1.22 0.00 0.14 ind:imp:3s; +empuantisse empuantir VER 0.03 1.22 0.00 0.07 sub:pre:3s; +empuantissent empuantir VER 0.03 1.22 0.00 0.07 ind:pre:3p; +empêcha empêcher VER 121.85 171.28 0.35 5.00 ind:pas:3s; +empêchai empêcher VER 121.85 171.28 0.00 0.61 ind:pas:1s; +empêchaient empêcher VER 121.85 171.28 0.10 4.59 ind:imp:3p; +empêchais empêcher VER 121.85 171.28 0.23 0.27 ind:imp:1s;ind:imp:2s; +empêchait empêcher VER 121.85 171.28 2.52 18.58 ind:imp:3s; +empêchant empêcher VER 121.85 171.28 1.06 3.11 par:pre; +empêche empêcher VER 121.85 171.28 31.46 41.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +empêchement empêchement NOM m s 1.25 1.42 1.23 1.01 +empêchements empêchement NOM m p 1.25 1.42 0.02 0.41 +empêchent empêcher VER 121.85 171.28 2.74 4.59 ind:pre:3p; +empêcher empêcher VER 121.85 171.28 55.99 70.20 inf; +empêchera empêcher VER 121.85 171.28 4.89 2.43 ind:fut:3s; +empêcherai empêcher VER 121.85 171.28 1.57 0.34 ind:fut:1s; +empêcheraient empêcher VER 121.85 171.28 0.22 0.47 cnd:pre:3p; +empêcherais empêcher VER 121.85 171.28 0.57 0.27 cnd:pre:1s;cnd:pre:2s; +empêcherait empêcher VER 121.85 171.28 1.35 2.64 cnd:pre:3s; +empêcheras empêcher VER 121.85 171.28 0.88 0.47 ind:fut:2s; +empêcherez empêcher VER 121.85 171.28 0.37 0.34 ind:fut:2p; +empêcherons empêcher VER 121.85 171.28 0.28 0.07 ind:fut:1p; +empêcheront empêcher VER 121.85 171.28 0.54 0.54 ind:fut:3p; +empêches empêcher VER 121.85 171.28 1.36 0.34 ind:pre:2s; +empêcheur empêcheur NOM m s 0.08 0.68 0.04 0.41 +empêcheurs empêcheur NOM m p 0.08 0.68 0.04 0.20 +empêcheuse empêcheur NOM f s 0.08 0.68 0.01 0.07 +empêchez empêcher VER 121.85 171.28 4.53 0.34 imp:pre:2p;ind:pre:2p; +empêchions empêcher VER 121.85 171.28 0.08 0.07 ind:imp:1p; +empêchons empêcher VER 121.85 171.28 0.39 0.20 imp:pre:1p;ind:pre:1p; +empêchât empêcher VER 121.85 171.28 0.00 0.27 sub:imp:3s; +empêchèrent empêcher VER 121.85 171.28 0.16 1.28 ind:pas:3p; +empêché empêcher VER m s 121.85 171.28 7.81 9.26 par:pas; +empêchée empêcher VER f s 121.85 171.28 1.58 2.30 par:pas; +empêchées empêcher VER f p 121.85 171.28 0.02 0.14 par:pas; +empêchés empêcher VER m p 121.85 171.28 0.80 1.42 par:pas; +empêtra empêtrer VER 0.76 5.20 0.00 0.34 ind:pas:3s; +empêtraient empêtrer VER 0.76 5.20 0.02 0.20 ind:imp:3p; +empêtrais empêtrer VER 0.76 5.20 0.00 0.20 ind:imp:1s; +empêtrait empêtrer VER 0.76 5.20 0.00 1.01 ind:imp:3s; +empêtrant empêtrer VER 0.76 5.20 0.00 0.27 par:pre; +empêtre empêtrer VER 0.76 5.20 0.02 0.54 ind:pre:1s;ind:pre:3s; +empêtrent empêtrer VER 0.76 5.20 0.00 0.07 ind:pre:3p; +empêtrer empêtrer VER 0.76 5.20 0.20 0.14 inf; +empêtrons empêtrer VER 0.76 5.20 0.00 0.07 ind:pre:1p; +empêtré empêtrer VER m s 0.76 5.20 0.19 1.35 par:pas; +empêtrée empêtrer VER f s 0.76 5.20 0.17 0.41 par:pas; +empêtrées empêtrer VER f p 0.76 5.20 0.14 0.27 par:pas; +empêtrés empêtrer VER m p 0.76 5.20 0.01 0.34 par:pas; +empyrée empyrée NOM m s 0.00 0.81 0.00 0.74 +empyrées empyrée NOM m p 0.00 0.81 0.00 0.07 +en_avant en_avant NOM m 0.01 0.07 0.01 0.07 +en_but en_but NOM m 0.32 0.00 0.32 0.00 +en_cas en_cas NOM m 1.44 1.08 1.44 1.08 +en_cours en_cours NOM m 0.01 0.00 0.01 0.00 +en_dehors en_dehors NOM m 0.36 0.07 0.36 0.07 +en_tête en_tête NOM m s 0.44 2.77 0.39 2.64 +en_tête en_tête NOM m p 0.44 2.77 0.05 0.14 +en_catimini en_catimini ADV 0.12 1.42 0.12 1.42 +en_loucedé en_loucedé ADV 0.16 0.47 0.16 0.47 +en_tapinois en_tapinois ADV 0.25 0.68 0.25 0.68 +en en PRE 5689.68 8732.57 5689.68 8732.57 +enamouré enamourer VER m s 0.02 0.07 0.01 0.00 par:pas; +enamourée enamouré ADJ f s 0.10 0.20 0.10 0.14 +enamourées enamouré ADJ f p 0.10 0.20 0.00 0.07 +enamourés enamourer VER m p 0.02 0.07 0.00 0.07 par:pas; +encabanée encabaner VER f s 0.00 0.07 0.00 0.07 par:pas; +encablure encablure NOM f s 0.07 0.88 0.04 0.20 +encablures encablure NOM f p 0.07 0.88 0.02 0.68 +encadra encadrer VER 2.51 24.26 0.00 0.61 ind:pas:3s; +encadraient encadrer VER 2.51 24.26 0.02 2.84 ind:imp:3p; +encadrait encadrer VER 2.51 24.26 0.01 2.30 ind:imp:3s; +encadrant encadrant ADJ m s 0.00 2.16 0.00 2.16 +encadre encadrer VER 2.51 24.26 0.24 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encadrement encadrement NOM m s 0.64 6.49 0.41 6.08 +encadrements encadrement NOM m p 0.64 6.49 0.23 0.41 +encadrent encadrer VER 2.51 24.26 0.04 1.42 ind:pre:3p; +encadrer encadrer VER 2.51 24.26 1.45 2.43 inf; +encadrera encadrer VER 2.51 24.26 0.00 0.07 ind:fut:3s; +encadrerai encadrer VER 2.51 24.26 0.02 0.00 ind:fut:1s; +encadreraient encadrer VER 2.51 24.26 0.01 0.07 cnd:pre:3p; +encadrerait encadrer VER 2.51 24.26 0.00 0.20 cnd:pre:3s; +encadreront encadrer VER 2.51 24.26 0.01 0.07 ind:fut:3p; +encadreur encadreur NOM m s 0.16 0.34 0.16 0.34 +encadrez encadrer VER 2.51 24.26 0.03 0.00 imp:pre:2p; +encadrions encadrer VER 2.51 24.26 0.00 0.07 ind:imp:1p; +encadrèrent encadrer VER 2.51 24.26 0.00 0.47 ind:pas:3p; +encadré encadrer VER m s 2.51 24.26 0.24 5.27 par:pas; +encadrée encadrer VER f s 2.51 24.26 0.23 3.51 par:pas; +encadrées encadrer VER f p 2.51 24.26 0.04 1.55 par:pas; +encadrés encadrer VER m p 2.51 24.26 0.16 1.76 par:pas; +encagent encager VER 0.13 0.54 0.00 0.07 ind:pre:3p; +encager encager VER 0.13 0.54 0.00 0.14 inf; +encagez encager VER 0.13 0.54 0.02 0.00 imp:pre:2p; +encagoulées encagoulé ADJ f p 0.01 0.07 0.00 0.07 +encagoulés encagoulé NOM m p 0.14 0.00 0.14 0.00 +encagé encager VER m s 0.13 0.54 0.11 0.07 par:pas; +encagée encager VER f s 0.13 0.54 0.00 0.20 par:pas; +encagés encagé ADJ m p 0.02 0.47 0.00 0.27 +encaissa encaisser VER 10.35 10.27 0.00 0.41 ind:pas:3s; +encaissable encaissable ADJ s 0.01 0.00 0.01 0.00 +encaissai encaisser VER 10.35 10.27 0.00 0.20 ind:pas:1s; +encaissaient encaisser VER 10.35 10.27 0.00 0.20 ind:imp:3p; +encaissais encaisser VER 10.35 10.27 0.14 0.41 ind:imp:1s; +encaissait encaisser VER 10.35 10.27 0.05 0.88 ind:imp:3s; +encaissant encaisser VER 10.35 10.27 0.03 0.20 par:pre; +encaisse encaisser VER 10.35 10.27 2.37 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encaissement encaissement NOM m s 0.51 0.20 0.35 0.14 +encaissements encaissement NOM m p 0.51 0.20 0.16 0.07 +encaissent encaisser VER 10.35 10.27 0.24 0.07 ind:pre:3p; +encaisser encaisser VER 10.35 10.27 4.84 3.78 inf; +encaissera encaisser VER 10.35 10.27 0.17 0.00 ind:fut:3s; +encaisserai encaisser VER 10.35 10.27 0.08 0.07 ind:fut:1s; +encaisserais encaisser VER 10.35 10.27 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +encaisserait encaisser VER 10.35 10.27 0.01 0.07 cnd:pre:3s; +encaisserez encaisser VER 10.35 10.27 0.12 0.00 ind:fut:2p; +encaisseront encaisser VER 10.35 10.27 0.02 0.00 ind:fut:3p; +encaisses encaisser VER 10.35 10.27 0.14 0.14 ind:pre:2s; +encaisseur encaisseur NOM m s 0.69 0.61 0.67 0.47 +encaisseurs encaisseur NOM m p 0.69 0.61 0.03 0.14 +encaissez encaisser VER 10.35 10.27 0.37 0.00 imp:pre:2p;ind:pre:2p; +encaissons encaisser VER 10.35 10.27 0.01 0.00 ind:pre:1p; +encaissât encaisser VER 10.35 10.27 0.00 0.07 sub:imp:3s; +encaissé encaisser VER m s 10.35 10.27 1.47 0.74 par:pas; +encaissée encaisser VER f s 10.35 10.27 0.03 0.34 par:pas; +encaissées encaisser VER f p 10.35 10.27 0.01 0.34 par:pas; +encaissés encaisser VER m p 10.35 10.27 0.23 0.07 par:pas; +encalminé encalminé ADJ m s 0.00 0.20 0.00 0.07 +encalminés encalminé ADJ m p 0.00 0.20 0.00 0.14 +encanaillais encanailler VER 0.35 1.28 0.01 0.00 ind:imp:2s; +encanaillait encanailler VER 0.35 1.28 0.01 0.20 ind:imp:3s; +encanaille encanailler VER 0.35 1.28 0.18 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encanaillement encanaillement NOM m s 0.00 0.07 0.00 0.07 +encanaillent encanailler VER 0.35 1.28 0.03 0.00 ind:pre:3p; +encanailler encanailler VER 0.35 1.28 0.13 0.61 inf; +encanaillé encanailler VER m s 0.35 1.28 0.00 0.20 par:pas; +encapsuler encapsuler VER 0.04 0.00 0.01 0.00 inf; +encapsulé encapsuler VER m s 0.04 0.00 0.03 0.00 par:pas; +encapuchonna encapuchonner VER 0.00 1.08 0.00 0.14 ind:pas:3s; +encapuchonnait encapuchonner VER 0.00 1.08 0.00 0.14 ind:imp:3s; +encapuchonnant encapuchonner VER 0.00 1.08 0.00 0.07 par:pre; +encapuchonne encapuchonner VER 0.00 1.08 0.00 0.20 ind:pre:3s; +encapuchonné encapuchonner VER m s 0.00 1.08 0.00 0.14 par:pas; +encapuchonnée encapuchonné ADJ f s 0.13 0.68 0.03 0.14 +encapuchonnées encapuchonner VER f p 0.00 1.08 0.00 0.07 par:pas; +encapuchonnés encapuchonné ADJ m p 0.13 0.68 0.10 0.41 +encaqués encaquer VER m p 0.00 0.14 0.00 0.14 par:pas; +encart encart NOM m s 0.09 0.34 0.05 0.27 +encartage encartage NOM m s 0.00 0.07 0.00 0.07 +encartait encarter VER 0.14 0.68 0.00 0.07 ind:imp:3s; +encarter encarter VER 0.14 0.68 0.14 0.07 inf; +encarts encart NOM m p 0.09 0.34 0.04 0.07 +encarté encarter VER m s 0.14 0.68 0.00 0.27 par:pas; +encartées encarter VER f p 0.14 0.68 0.00 0.14 par:pas; +encartés encarter VER m p 0.14 0.68 0.00 0.14 par:pas; +encas encas NOM m 0.40 0.14 0.40 0.14 +encaserner encaserner VER 0.00 0.07 0.00 0.07 inf; +encastelé encasteler VER m s 0.00 0.07 0.00 0.07 par:pas; +encastra encastrer VER 0.35 5.07 0.00 0.27 ind:pas:3s; +encastraient encastrer VER 0.35 5.07 0.00 0.14 ind:imp:3p; +encastrait encastrer VER 0.35 5.07 0.00 0.20 ind:imp:3s; +encastrant encastrer VER 0.35 5.07 0.01 0.07 par:pre; +encastre encastrer VER 0.35 5.07 0.06 0.27 ind:pre:1s;ind:pre:3s; +encastrement encastrement NOM m s 0.01 0.00 0.01 0.00 +encastrent encastrer VER 0.35 5.07 0.01 0.00 ind:pre:3p; +encastrer encastrer VER 0.35 5.07 0.03 0.47 inf; +encastré encastrer VER m s 0.35 5.07 0.13 1.28 par:pas; +encastrée encastrer VER f s 0.35 5.07 0.04 1.22 par:pas; +encastrées encastrer VER f p 0.35 5.07 0.02 0.34 par:pas; +encastrés encastrer VER m p 0.35 5.07 0.04 0.81 par:pas; +encaustiquait encaustiquer VER 0.03 0.20 0.00 0.07 ind:imp:3s; +encaustique encaustique NOM f s 0.04 2.64 0.04 2.64 +encaustiquer encaustiquer VER 0.03 0.20 0.02 0.14 inf; +encaustiqué encaustiqué ADJ m s 0.00 0.27 0.00 0.14 +encaustiquée encaustiqué ADJ f s 0.00 0.27 0.00 0.14 +encaver encaver VER 0.00 0.14 0.00 0.07 inf; +encavée encaver VER f s 0.00 0.14 0.00 0.07 par:pas; +enceint enceindre VER m s 0.32 0.41 0.32 0.34 ind:pre:3s;par:pas; +enceinte enceinte ADJ f s 48.60 12.43 46.41 11.08 +enceinter enceinter VER 0.01 0.00 0.01 0.00 inf; +enceintes enceinte ADJ f p 48.60 12.43 2.19 1.35 +enceints enceindre VER m p 0.32 0.41 0.00 0.07 par:pas; +encellulement encellulement NOM m s 0.00 0.07 0.00 0.07 +encellulée encelluler VER f s 0.00 0.20 0.00 0.14 par:pas; +encellulées encelluler VER f p 0.00 0.20 0.00 0.07 par:pas; +encens encens NOM m 2.44 7.91 2.44 7.91 +encensaient encenser VER 0.33 1.22 0.00 0.20 ind:imp:3p; +encensait encenser VER 0.33 1.22 0.01 0.14 ind:imp:3s; +encensant encenser VER 0.33 1.22 0.00 0.07 par:pre; +encense encenser VER 0.33 1.22 0.20 0.27 ind:pre:1s;ind:pre:3s; +encensement encensement NOM m s 0.01 0.00 0.01 0.00 +encenser encenser VER 0.33 1.22 0.04 0.34 inf; +encensoir encensoir NOM m s 0.14 1.01 0.04 0.68 +encensoirs encensoir NOM m p 0.14 1.01 0.10 0.34 +encensé encenser VER m s 0.33 1.22 0.08 0.14 par:pas; +encensés encenser VER m p 0.33 1.22 0.00 0.07 par:pas; +encercla encercler VER 8.62 7.50 0.01 0.14 ind:pas:3s; +encerclaient encercler VER 8.62 7.50 0.04 1.08 ind:imp:3p; +encerclais encercler VER 8.62 7.50 0.01 0.00 ind:imp:2s; +encerclait encercler VER 8.62 7.50 0.02 0.61 ind:imp:3s; +encerclant encercler VER 8.62 7.50 0.13 0.41 par:pre; +encercle encercler VER 8.62 7.50 0.73 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +encerclement encerclement NOM m s 0.03 0.88 0.03 0.88 +encerclent encercler VER 8.62 7.50 0.80 0.61 ind:pre:3p; +encercler encercler VER 8.62 7.50 0.85 0.54 inf; +encerclera encercler VER 8.62 7.50 0.16 0.00 ind:fut:3s; +encercleraient encercler VER 8.62 7.50 0.00 0.07 cnd:pre:3p; +encerclez encercler VER 8.62 7.50 1.00 0.00 imp:pre:2p;ind:pre:2p; +encerclons encercler VER 8.62 7.50 0.04 0.00 imp:pre:1p;ind:pre:1p; +encerclèrent encercler VER 8.62 7.50 0.01 0.07 ind:pas:3p; +encerclé encercler VER m s 8.62 7.50 2.06 2.03 par:pas; +encerclée encercler VER f s 8.62 7.50 0.62 0.41 par:pas; +encerclées encercler VER f p 8.62 7.50 0.06 0.20 par:pas; +encerclés encercler VER m p 8.62 7.50 2.06 0.68 par:pas; +enchaîna enchaîner VER 7.58 21.76 0.05 3.99 ind:pas:3s; +enchaînai enchaîner VER 7.58 21.76 0.00 0.14 ind:pas:1s; +enchaînaient enchaîner VER 7.58 21.76 0.03 0.68 ind:imp:3p; +enchaînais enchaîner VER 7.58 21.76 0.14 0.07 ind:imp:1s; +enchaînait enchaîner VER 7.58 21.76 0.04 2.23 ind:imp:3s; +enchaînant enchaîner VER 7.58 21.76 0.01 0.68 par:pre; +enchaîne enchaîner VER 7.58 21.76 0.93 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enchaînement enchaînement NOM m s 1.22 4.59 0.89 3.72 +enchaînements enchaînement NOM m p 1.22 4.59 0.33 0.88 +enchaînent enchaîner VER 7.58 21.76 0.41 1.01 ind:pre:3p; +enchaîner enchaîner VER 7.58 21.76 1.46 2.43 inf; +enchaînera enchaîner VER 7.58 21.76 0.01 0.07 ind:fut:3s; +enchaîneraient enchaîner VER 7.58 21.76 0.01 0.00 cnd:pre:3p; +enchaînerait enchaîner VER 7.58 21.76 0.02 0.07 cnd:pre:3s; +enchaîneras enchaîner VER 7.58 21.76 0.01 0.00 ind:fut:2s; +enchaînerez enchaîner VER 7.58 21.76 0.01 0.00 ind:fut:2p; +enchaînerons enchaîner VER 7.58 21.76 0.00 0.07 ind:fut:1p; +enchaînez enchaîner VER 7.58 21.76 0.40 0.00 imp:pre:2p;ind:pre:2p; +enchaînons enchaîner VER 7.58 21.76 0.16 0.27 imp:pre:1p;ind:pre:1p; +enchaînèrent enchaîner VER 7.58 21.76 0.01 0.20 ind:pas:3p; +enchaîné enchaîner VER m s 7.58 21.76 2.39 4.32 par:pas; +enchaînée enchaîner VER f s 7.58 21.76 0.47 0.41 par:pas; +enchaînées enchaîner VER f p 7.58 21.76 0.50 0.47 par:pas; +enchaînés enchaîner VER m p 7.58 21.76 0.53 1.15 par:pas; +enchanta enchanter VER 15.57 22.43 0.10 1.55 ind:pas:3s; +enchantaient enchanter VER 15.57 22.43 0.12 1.22 ind:imp:3p; +enchantais enchanter VER 15.57 22.43 0.00 0.27 ind:imp:1s; +enchantait enchanter VER 15.57 22.43 0.61 3.65 ind:imp:3s; +enchantant enchanter VER 15.57 22.43 0.03 0.20 par:pre; +enchante enchanter VER 15.57 22.43 4.25 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enchantement enchantement NOM m s 1.53 7.70 1.46 6.82 +enchantements enchantement NOM m p 1.53 7.70 0.07 0.88 +enchantent enchanter VER 15.57 22.43 0.21 0.68 ind:pre:3p; +enchanter enchanter VER 15.57 22.43 0.56 1.62 inf; +enchantera enchanter VER 15.57 22.43 0.04 0.07 ind:fut:3s; +enchanteraient enchanter VER 15.57 22.43 0.00 0.07 cnd:pre:3p; +enchanterait enchanter VER 15.57 22.43 0.09 0.07 cnd:pre:3s; +enchanteresse enchanteur ADJ f s 1.88 2.64 0.55 0.47 +enchanteresses enchanteur ADJ f p 1.88 2.64 0.03 0.14 +enchanteront enchanter VER 15.57 22.43 0.00 0.07 ind:fut:3p; +enchantes enchanter VER 15.57 22.43 0.00 0.14 ind:pre:2s; +enchanteur enchanteur ADJ m s 1.88 2.64 1.25 1.22 +enchanteurs enchanteur NOM m p 1.22 1.49 0.10 0.14 +enchantez enchanter VER 15.57 22.43 0.02 0.00 ind:pre:2p; +enchantions enchanter VER 15.57 22.43 0.00 0.07 ind:imp:1p; +enchantèrent enchanter VER 15.57 22.43 0.00 0.27 ind:pas:3p; +enchanté enchanté ADJ m s 55.00 7.97 35.28 4.26 +enchantée enchanté ADJ f s 55.00 7.97 18.96 2.43 +enchantées enchanté ADJ f p 55.00 7.97 0.20 0.27 +enchantés enchanter VER m p 15.57 22.43 0.68 1.69 par:pas; +enchemisé enchemiser VER m s 0.00 0.07 0.00 0.07 par:pas; +enchevêtraient enchevêtrer VER 0.21 2.30 0.00 0.41 ind:imp:3p; +enchevêtrais enchevêtrer VER 0.21 2.30 0.00 0.07 ind:imp:1s; +enchevêtrant enchevêtrer VER 0.21 2.30 0.00 0.07 par:pre; +enchevêtre enchevêtrer VER 0.21 2.30 0.00 0.27 ind:pre:3s; +enchevêtrement enchevêtrement NOM m s 0.11 3.78 0.09 3.38 +enchevêtrements enchevêtrement NOM m p 0.11 3.78 0.01 0.41 +enchevêtrent enchevêtrer VER 0.21 2.30 0.02 0.34 ind:pre:3p; +enchevêtré enchevêtrer VER m s 0.21 2.30 0.02 0.00 par:pas; +enchevêtrée enchevêtrer VER f s 0.21 2.30 0.14 0.00 par:pas; +enchevêtrées enchevêtré ADJ f p 0.04 2.50 0.02 0.95 +enchevêtrés enchevêtrer VER m p 0.21 2.30 0.02 0.68 par:pas; +enchifrené enchifrener VER m s 0.00 0.07 0.00 0.07 par:pas; +enchâssaient enchâsser VER 0.07 1.89 0.00 0.07 ind:imp:3p; +enchâssait enchâsser VER 0.07 1.89 0.00 0.07 ind:imp:3s; +enchâssant enchâsser VER 0.07 1.89 0.01 0.14 par:pre; +enchâsse enchâsser VER 0.07 1.89 0.00 0.07 ind:pre:3s; +enchâsser enchâsser VER 0.07 1.89 0.00 0.14 inf; +enchâssé enchâsser VER m s 0.07 1.89 0.03 0.54 par:pas; +enchâssée enchâsser VER f s 0.07 1.89 0.02 0.47 par:pas; +enchâssés enchâsser VER m p 0.07 1.89 0.01 0.41 par:pas; +enchriste enchrister VER 0.14 0.47 0.00 0.07 ind:pre:3s; +enchrister enchrister VER 0.14 0.47 0.14 0.07 inf; +enchristé enchrister VER m s 0.14 0.47 0.00 0.27 par:pas; +enchristée enchrister VER f s 0.14 0.47 0.00 0.07 par:pas; +enchère enchère NOM f s 6.67 1.89 0.88 0.07 +enchères enchère NOM f p 6.67 1.89 5.79 1.82 +enchtiber enchtiber VER 0.00 0.47 0.00 0.14 inf; +enchtibé enchtiber VER m s 0.00 0.47 0.00 0.27 par:pas; +enchtibés enchtiber VER m p 0.00 0.47 0.00 0.07 par:pas; +enchéri enchérir VER m s 0.55 0.41 0.05 0.07 par:pas; +enchérir enchérir VER 0.55 0.41 0.37 0.14 inf; +enchérissant enchérir VER 0.55 0.41 0.00 0.07 par:pre; +enchérisse enchérir VER 0.55 0.41 0.09 0.00 sub:pre:1s;sub:pre:3s; +enchérisseur enchérisseur NOM m s 0.29 0.00 0.14 0.00 +enchérisseurs enchérisseur NOM m p 0.29 0.00 0.14 0.00 +enchérisseuse enchérisseur NOM f s 0.29 0.00 0.01 0.00 +enchérit enchérir VER 0.55 0.41 0.04 0.14 ind:pre:3s; +enclave enclave NOM f s 0.21 1.49 0.13 0.95 +enclaves enclave NOM f p 0.21 1.49 0.09 0.54 +enclavé enclavé ADJ m s 0.02 0.07 0.01 0.00 +enclavée enclavé ADJ f s 0.02 0.07 0.01 0.00 +enclavées enclavé ADJ f p 0.02 0.07 0.00 0.07 +enclencha enclencher VER 2.74 2.43 0.00 0.14 ind:pas:3s; +enclenchai enclencher VER 2.74 2.43 0.00 0.07 ind:pas:1s; +enclenchait enclencher VER 2.74 2.43 0.00 0.14 ind:imp:3s; +enclenchant enclencher VER 2.74 2.43 0.04 0.14 par:pre; +enclenche enclencher VER 2.74 2.43 0.93 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enclenchement enclenchement NOM m s 0.06 0.07 0.06 0.07 +enclenchent enclencher VER 2.74 2.43 0.06 0.14 ind:pre:3p; +enclencher enclencher VER 2.74 2.43 0.46 0.47 inf; +enclenchera enclencher VER 2.74 2.43 0.04 0.00 ind:fut:3s; +enclenches enclencher VER 2.74 2.43 0.01 0.07 ind:pre:2s; +enclenchez enclencher VER 2.74 2.43 0.55 0.00 imp:pre:2p; +enclenché enclenché ADJ m s 1.06 0.27 0.80 0.07 +enclenchée enclenché ADJ f s 1.06 0.27 0.21 0.14 +enclenchées enclencher VER f p 2.74 2.43 0.03 0.00 par:pas; +enclenchés enclenché ADJ m p 1.06 0.27 0.04 0.07 +enclin enclin ADJ m s 2.33 5.07 1.61 2.77 +encline enclin ADJ f s 2.33 5.07 0.32 0.54 +enclines enclin ADJ f p 2.33 5.07 0.00 0.14 +enclins enclin ADJ m p 2.33 5.07 0.41 1.62 +encliqueter encliqueter VER 0.01 0.00 0.01 0.00 inf; +encloîtrer encloîtrer VER 0.00 0.07 0.00 0.07 inf; +encloqué encloquer VER m s 0.03 0.00 0.03 0.00 par:pas; +enclore enclore VER 0.00 1.28 0.00 0.14 inf; +enclos enclos NOM m 2.95 6.01 2.95 6.01 +enclose enclore VER f s 0.00 1.28 0.00 0.20 par:pas; +encloses enclore VER f p 0.00 1.28 0.00 0.41 par:pas; +enclosure enclosure NOM f s 0.01 0.07 0.01 0.07 +enclouer enclouer VER 0.00 0.07 0.00 0.07 inf; +enclume enclume NOM f s 0.82 5.20 0.49 5.14 +enclumes enclume NOM f p 0.82 5.20 0.33 0.07 +encoche encoche NOM f s 0.26 2.23 0.13 1.49 +encoches encoche NOM f p 0.26 2.23 0.13 0.74 +encoché encocher VER m s 0.00 0.07 0.00 0.07 par:pas; +encoconner encoconner VER 0.00 0.20 0.00 0.07 inf; +encoconnée encoconner VER f s 0.00 0.20 0.00 0.14 par:pas; +encodage encodage NOM m s 0.06 0.00 0.06 0.00 +encode encoder VER 1.08 0.00 0.03 0.00 ind:pre:1s;ind:pre:3s; +encoder encoder VER 1.08 0.00 0.06 0.00 inf; +encodeur encodeur NOM m s 0.06 0.00 0.06 0.00 +encodé encoder VER m s 1.08 0.00 0.89 0.00 par:pas; +encodée encoder VER f s 1.08 0.00 0.05 0.00 par:pas; +encodés encoder VER m p 1.08 0.00 0.05 0.00 par:pas; +encoignure encoignure NOM f s 0.00 4.19 0.00 3.04 +encoignures encoignure NOM f p 0.00 4.19 0.00 1.15 +encollage encollage NOM m s 0.00 0.07 0.00 0.07 +encollait encoller VER 0.00 0.34 0.00 0.07 ind:imp:3s; +encoller encoller VER 0.00 0.34 0.00 0.07 inf; +encolleuses encolleur NOM f p 0.00 0.07 0.00 0.07 +encollé encoller VER m s 0.00 0.34 0.00 0.07 par:pas; +encollée encoller VER f s 0.00 0.34 0.00 0.07 par:pas; +encollées encoller VER f p 0.00 0.34 0.00 0.07 par:pas; +encolure encolure NOM f s 0.17 6.69 0.17 6.01 +encolures encolure NOM f p 0.17 6.69 0.00 0.68 +encolérée encoléré ADJ f s 0.00 0.14 0.00 0.07 +encolérés encoléré ADJ m p 0.00 0.14 0.00 0.07 +encombra encombrer VER 2.22 30.41 0.00 0.14 ind:pas:3s; +encombraient encombrer VER 2.22 30.41 0.02 3.24 ind:imp:3p; +encombrais encombrer VER 2.22 30.41 0.00 0.07 ind:imp:1s; +encombrait encombrer VER 2.22 30.41 0.14 2.30 ind:imp:3s; +encombrant encombrant ADJ m s 1.42 6.08 0.47 2.70 +encombrante encombrant ADJ f s 1.42 6.08 0.50 1.55 +encombrantes encombrant ADJ f p 1.42 6.08 0.01 0.47 +encombrants encombrant ADJ m p 1.42 6.08 0.45 1.35 +encombre encombre NOM m s 0.71 1.69 0.47 1.55 +encombrement encombrement NOM m s 0.23 3.72 0.05 2.23 +encombrements encombrement NOM m p 0.23 3.72 0.18 1.49 +encombrent encombrer VER 2.22 30.41 0.10 1.82 ind:pre:3p; +encombrer encombrer VER 2.22 30.41 0.47 3.65 inf; +encombrera encombrer VER 2.22 30.41 0.01 0.20 ind:fut:3s; +encombrerai encombrer VER 2.22 30.41 0.11 0.00 ind:fut:1s; +encombrerait encombrer VER 2.22 30.41 0.00 0.07 cnd:pre:3s; +encombres encombre NOM m p 0.71 1.69 0.25 0.14 +encombrez encombrer VER 2.22 30.41 0.08 0.07 imp:pre:2p;ind:pre:2p; +encombrèrent encombrer VER 2.22 30.41 0.00 0.07 ind:pas:3p; +encombré encombrer VER m s 2.22 30.41 0.35 5.34 par:pas; +encombrée encombrer VER f s 2.22 30.41 0.17 6.49 par:pas; +encombrées encombrer VER f p 2.22 30.41 0.09 2.50 par:pas; +encombrés encombrer VER m p 2.22 30.41 0.17 2.09 par:pas; +encor encor ADV 0.42 0.27 0.42 0.27 +encorbellement encorbellement NOM m s 0.02 1.01 0.01 0.68 +encorbellements encorbellement NOM m p 0.02 1.01 0.01 0.34 +encorder encorder VER 0.11 0.47 0.10 0.20 inf; +encordé encorder VER m s 0.11 0.47 0.01 0.07 par:pas; +encordée encorder VER f s 0.11 0.47 0.00 0.07 par:pas; +encordés encorder VER m p 0.11 0.47 0.00 0.14 par:pas; +encore encore ADV 1176.94 1579.05 1176.94 1579.05 +encornaient encorner VER 0.20 0.07 0.00 0.07 ind:imp:3p; +encorner encorner VER 0.20 0.07 0.20 0.00 inf; +encornet encornet NOM m s 0.15 0.07 0.14 0.00 +encornets encornet NOM m p 0.15 0.07 0.01 0.07 +encorné encorné ADJ m s 0.00 0.27 0.00 0.07 +encornée encorné ADJ f s 0.00 0.27 0.00 0.07 +encornés encorné ADJ m p 0.00 0.27 0.00 0.14 +encotonne encotonner VER 0.00 0.14 0.00 0.07 sub:pre:3s; +encotonner encotonner VER 0.00 0.14 0.00 0.07 inf; +encourage encourager VER 15.24 27.57 3.99 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +encouragea encourager VER 15.24 27.57 0.02 1.08 ind:pas:3s; +encourageai encourager VER 15.24 27.57 0.00 0.47 ind:pas:1s; +encourageaient encourager VER 15.24 27.57 0.25 1.08 ind:imp:3p; +encourageais encourager VER 15.24 27.57 0.14 0.68 ind:imp:1s;ind:imp:2s; +encourageait encourager VER 15.24 27.57 0.44 3.58 ind:imp:3s; +encourageant encourageant ADJ m s 1.49 3.31 1.05 1.89 +encourageante encourageant ADJ f s 1.49 3.31 0.14 0.61 +encourageantes encourageant ADJ f p 1.49 3.31 0.07 0.54 +encourageants encourageant ADJ m p 1.49 3.31 0.24 0.27 +encourageas encourager VER 15.24 27.57 0.00 0.07 ind:pas:2s; +encouragement encouragement NOM m s 2.18 6.42 1.00 3.65 +encouragements encouragement NOM m p 2.18 6.42 1.18 2.77 +encouragent encourager VER 15.24 27.57 0.82 0.34 ind:pre:3p; +encourageons encourager VER 15.24 27.57 0.42 0.07 imp:pre:1p;ind:pre:1p; +encourageât encourager VER 15.24 27.57 0.00 0.14 sub:imp:3s; +encourager encourager VER 15.24 27.57 4.42 7.03 inf; +encouragera encourager VER 15.24 27.57 0.11 0.07 ind:fut:3s; +encouragerai encourager VER 15.24 27.57 0.09 0.14 ind:fut:1s; +encouragerais encourager VER 15.24 27.57 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +encouragerait encourager VER 15.24 27.57 0.08 0.07 cnd:pre:3s; +encourageras encourager VER 15.24 27.57 0.03 0.00 ind:fut:2s; +encourages encourager VER 15.24 27.57 0.52 0.20 ind:pre:2s; +encouragez encourager VER 15.24 27.57 0.57 0.14 imp:pre:2p;ind:pre:2p; +encouragiez encourager VER 15.24 27.57 0.05 0.07 ind:imp:2p; +encouragèrent encourager VER 15.24 27.57 0.01 0.20 ind:pas:3p; +encouragé encourager VER m s 15.24 27.57 1.79 4.32 par:pas; +encouragée encourager VER f s 15.24 27.57 0.73 1.35 par:pas; +encouragées encourager VER f p 15.24 27.57 0.04 0.20 par:pas; +encouragés encourager VER m p 15.24 27.57 0.23 1.22 par:pas; +encouraient encourir VER 1.10 2.30 0.03 0.14 ind:imp:3p; +encourais encourir VER 1.10 2.30 0.03 0.00 ind:imp:1s;ind:imp:2s; +encourait encourir VER 1.10 2.30 0.01 0.34 ind:imp:3s; +encourant encourir VER 1.10 2.30 0.01 0.07 par:pre; +encourent encourir VER 1.10 2.30 0.05 0.07 ind:pre:3p; +encourir encourir VER 1.10 2.30 0.10 0.81 inf; +encourrait encourir VER 1.10 2.30 0.02 0.07 cnd:pre:3s; +encours encourir VER 1.10 2.30 0.04 0.00 ind:pre:1s; +encourt encourir VER 1.10 2.30 0.23 0.14 ind:pre:3s; +encouru encourir VER m s 1.10 2.30 0.24 0.20 par:pas; +encourue encourir VER f s 1.10 2.30 0.13 0.07 par:pas; +encourues encourir VER f p 1.10 2.30 0.04 0.20 par:pas; +encourus encourir VER m p 1.10 2.30 0.16 0.20 par:pas; +encrage encrage NOM m s 0.02 0.07 0.02 0.07 +encrait encrer VER 0.10 0.61 0.00 0.07 ind:imp:3s; +encrassait encrasser VER 0.34 0.68 0.00 0.07 ind:imp:3s; +encrasse encrasser VER 0.34 0.68 0.14 0.07 ind:pre:3s; +encrassent encrasser VER 0.34 0.68 0.00 0.07 ind:pre:3p; +encrasser encrasser VER 0.34 0.68 0.01 0.14 inf; +encrassé encrasser VER m s 0.34 0.68 0.05 0.14 par:pas; +encrassée encrasser VER f s 0.34 0.68 0.11 0.14 par:pas; +encrassées encrassé ADJ f p 0.02 0.27 0.01 0.07 +encrassés encrasser VER m p 0.34 0.68 0.02 0.07 par:pas; +encre encre NOM f s 6.81 29.53 6.49 28.65 +encrer encrer VER 0.10 0.61 0.02 0.00 inf; +encres encre NOM f p 6.81 29.53 0.32 0.88 +encreur encreur ADJ m s 0.07 0.07 0.07 0.00 +encreurs encreur ADJ m p 0.07 0.07 0.00 0.07 +encrier encrier NOM m s 0.45 4.26 0.43 3.51 +encriers encrier NOM m p 0.45 4.26 0.02 0.74 +encroûtaient encroûter VER 0.18 0.95 0.00 0.07 ind:imp:3p; +encroûte encroûter VER 0.18 0.95 0.02 0.00 ind:pre:1s; +encroûtement encroûtement NOM m s 0.01 0.00 0.01 0.00 +encroûter encroûter VER 0.18 0.95 0.15 0.07 inf; +encroûtèrent encroûter VER 0.18 0.95 0.00 0.07 ind:pas:3p; +encroûté encroûter VER m s 0.18 0.95 0.01 0.07 par:pas; +encroûtée encroûter VER f s 0.18 0.95 0.00 0.14 par:pas; +encroûtées encroûter VER f p 0.18 0.95 0.00 0.27 par:pas; +encroûtés encroûté NOM m p 0.01 0.14 0.01 0.07 +encrotté encrotter VER m s 0.00 0.07 0.00 0.07 par:pas; +encré encrer VER m s 0.10 0.61 0.01 0.07 par:pas; +encrée encrer VER f s 0.10 0.61 0.00 0.07 par:pas; +encrés encrer VER m p 0.10 0.61 0.05 0.20 par:pas; +encryptage encryptage NOM m s 0.03 0.00 0.03 0.00 +encrypté encrypter VER m s 0.02 0.00 0.02 0.00 par:pas; +enculade enculade NOM f s 0.33 0.14 0.20 0.07 +enculades enculade NOM f p 0.33 0.14 0.14 0.07 +enculage enculage NOM m s 0.06 0.07 0.06 0.07 +enculant enculer VER 15.43 5.27 0.13 0.00 par:pre; +encule enculer VER 15.43 5.27 2.36 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enculent enculer VER 15.43 5.27 0.09 0.34 ind:pre:3p; +enculer enculer VER 15.43 5.27 5.88 1.89 inf; +enculera enculer VER 15.43 5.27 0.01 0.00 ind:fut:3s; +enculerais enculer VER 15.43 5.27 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +enculerait enculer VER 15.43 5.27 0.00 0.07 cnd:pre:3s; +enculerie enculerie NOM f s 0.01 0.47 0.00 0.27 +enculeries enculerie NOM f p 0.01 0.47 0.01 0.20 +encules enculer VER 15.43 5.27 0.29 0.14 ind:pre:2s; +enculeur enculeur NOM m s 0.54 0.68 0.35 0.54 +enculeurs enculeur NOM m p 0.54 0.68 0.18 0.14 +enculé enculé ADJ m s 31.77 4.73 22.73 3.45 +enculée enculer VER f s 15.43 5.27 0.20 0.20 par:pas; +enculées enculé ADJ f p 31.77 4.73 0.23 0.00 +enculés enculé ADJ m p 31.77 4.73 8.78 1.22 +encéphale encéphale NOM m s 0.01 0.07 0.01 0.07 +encéphalique encéphalique ADJ s 0.04 0.14 0.04 0.00 +encéphaliques encéphalique ADJ p 0.04 0.14 0.00 0.14 +encéphalite encéphalite NOM f s 0.48 0.07 0.48 0.07 +encéphalogramme encéphalogramme NOM m s 0.58 0.20 0.58 0.20 +encéphalographie encéphalographie NOM f s 0.02 0.07 0.02 0.07 +encéphalopathie encéphalopathie NOM f s 0.05 0.00 0.05 0.00 +encyclique encyclique NOM f s 0.04 0.27 0.04 0.20 +encycliques encyclique NOM f p 0.04 0.27 0.00 0.07 +encyclopédie encyclopédie NOM f s 1.99 2.64 1.14 1.28 +encyclopédies encyclopédie NOM f p 1.99 2.64 0.85 1.35 +encyclopédique encyclopédique ADJ s 0.12 0.74 0.12 0.61 +encyclopédiques encyclopédique ADJ f p 0.12 0.74 0.00 0.14 +encyclopédistes encyclopédiste NOM p 0.00 0.14 0.00 0.14 +endettait endetter VER 1.41 1.01 0.01 0.07 ind:imp:3s; +endettant endetter VER 1.41 1.01 0.00 0.07 par:pre; +endette endetter VER 1.41 1.01 0.02 0.14 ind:pre:3s; +endettement endettement NOM m s 0.09 0.07 0.09 0.07 +endetter endetter VER 1.41 1.01 0.18 0.27 inf; +endettez endetter VER 1.41 1.01 0.14 0.00 imp:pre:2p;ind:pre:2p; +endetté endetter VER m s 1.41 1.01 0.79 0.34 par:pas; +endettée endetté ADJ f s 0.45 0.20 0.23 0.07 +endettées endetter VER f p 1.41 1.01 0.01 0.00 par:pas; +endettés endetter VER m p 1.41 1.01 0.14 0.00 par:pas; +endeuille endeuiller VER 0.19 0.81 0.00 0.14 ind:pre:3s; +endeuillent endeuiller VER 0.19 0.81 0.01 0.00 ind:pre:3p; +endeuiller endeuiller VER 0.19 0.81 0.01 0.14 inf; +endeuillerai endeuiller VER 0.19 0.81 0.14 0.00 ind:fut:1s; +endeuillé endeuillé ADJ m s 0.20 1.35 0.11 0.20 +endeuillée endeuillé ADJ f s 0.20 1.35 0.06 0.61 +endeuillées endeuillé ADJ f p 0.20 1.35 0.01 0.20 +endeuillés endeuillé ADJ m p 0.20 1.35 0.02 0.34 +endiable endiabler VER 0.03 0.47 0.00 0.14 ind:pre:3s; +endiablent endiabler VER 0.03 0.47 0.00 0.07 ind:pre:3p; +endiablerez endiabler VER 0.03 0.47 0.00 0.07 ind:fut:2p; +endiablé endiablé ADJ m s 0.43 1.22 0.17 0.34 +endiablée endiablé ADJ f s 0.43 1.22 0.19 0.61 +endiablées endiablé ADJ f p 0.43 1.22 0.06 0.20 +endiablés endiablé ADJ m p 0.43 1.22 0.01 0.07 +endiamanté endiamanté ADJ m s 0.01 0.61 0.00 0.14 +endiamantée endiamanté ADJ f s 0.01 0.61 0.01 0.20 +endiamantées endiamanté ADJ f p 0.01 0.61 0.00 0.20 +endiamantés endiamanté ADJ m p 0.01 0.61 0.00 0.07 +endigua endiguer VER 0.56 1.82 0.00 0.14 ind:pas:3s; +endiguait endiguer VER 0.56 1.82 0.00 0.07 ind:imp:3s; +endigue endiguer VER 0.56 1.82 0.03 0.00 ind:pre:3s; +endiguement endiguement NOM m s 0.11 0.00 0.11 0.00 +endiguer endiguer VER 0.56 1.82 0.40 1.35 inf; +endiguera endiguer VER 0.56 1.82 0.01 0.00 ind:fut:3s; +endigué endiguer VER m s 0.56 1.82 0.10 0.07 par:pas; +endiguée endiguer VER f s 0.56 1.82 0.01 0.20 par:pas; +endigués endiguer VER m p 0.56 1.82 0.01 0.00 par:pas; +endimanchait endimancher VER 0.04 1.08 0.00 0.07 ind:imp:3s; +endimanchement endimanchement NOM m s 0.00 0.07 0.00 0.07 +endimancher endimancher VER 0.04 1.08 0.00 0.14 inf; +endimanché endimanché ADJ m s 0.21 3.18 0.06 0.61 +endimanchée endimanché ADJ f s 0.21 3.18 0.04 0.54 +endimanchées endimanché ADJ f p 0.21 3.18 0.00 0.74 +endimanchés endimanché ADJ m p 0.21 3.18 0.11 1.28 +endive endive NOM f s 0.87 0.95 0.03 0.14 +endives endive NOM f p 0.87 0.95 0.84 0.81 +endivisionnés endivisionner VER m p 0.00 0.07 0.00 0.07 par:pas; +endocarde endocarde NOM m s 0.01 0.00 0.01 0.00 +endocardite endocardite NOM f s 0.14 0.00 0.14 0.00 +endocrine endocrine ADJ f s 0.02 0.20 0.01 0.07 +endocrines endocrine ADJ f p 0.02 0.20 0.01 0.14 +endocrinien endocrinien ADJ m s 0.04 0.07 0.01 0.00 +endocrinienne endocrinien ADJ f s 0.04 0.07 0.02 0.00 +endocriniens endocrinien ADJ m p 0.04 0.07 0.01 0.07 +endocrinologie endocrinologie NOM f s 0.07 0.27 0.07 0.27 +endocrinologiste endocrinologiste NOM s 0.01 0.00 0.01 0.00 +endocrinologue endocrinologue NOM s 0.04 0.07 0.04 0.07 +endoctrina endoctriner VER 0.20 0.34 0.00 0.07 ind:pas:3s; +endoctrinement endoctrinement NOM m s 0.13 0.27 0.13 0.27 +endoctriner endoctriner VER 0.20 0.34 0.04 0.14 inf; +endoctriné endoctriner VER m s 0.20 0.34 0.01 0.07 par:pas; +endoctrinée endoctriner VER f s 0.20 0.34 0.11 0.07 par:pas; +endoctrinés endoctriner VER m p 0.20 0.34 0.05 0.00 par:pas; +endogamie endogamie NOM f s 0.02 0.34 0.02 0.34 +endogène endogène ADJ f s 0.03 0.14 0.03 0.14 +endolori endolori ADJ m s 0.50 1.28 0.29 0.27 +endolorie endolorir VER f s 0.16 0.74 0.10 0.20 par:pas; +endolories endolori ADJ f p 0.50 1.28 0.01 0.20 +endolorir endolorir VER 0.16 0.74 0.00 0.07 inf; +endoloris endolori ADJ m p 0.50 1.28 0.16 0.20 +endolorissement endolorissement NOM m s 0.03 0.20 0.03 0.20 +endommagea endommager VER 5.28 1.82 0.00 0.07 ind:pas:3s; +endommageant endommager VER 5.28 1.82 0.06 0.07 par:pre; +endommagement endommagement NOM m s 0.02 0.00 0.01 0.00 +endommagements endommagement NOM m p 0.02 0.00 0.01 0.00 +endommager endommager VER 5.28 1.82 1.23 0.47 inf; +endommagera endommager VER 5.28 1.82 0.07 0.00 ind:fut:3s; +endommagerait endommager VER 5.28 1.82 0.03 0.00 cnd:pre:3s; +endommagerez endommager VER 5.28 1.82 0.03 0.00 ind:fut:2p; +endommagez endommager VER 5.28 1.82 0.15 0.00 imp:pre:2p;ind:pre:2p; +endommagé endommager VER m s 5.28 1.82 2.40 0.88 par:pas; +endommagée endommager VER f s 5.28 1.82 0.69 0.14 par:pas; +endommagées endommager VER f p 5.28 1.82 0.14 0.07 par:pas; +endommagés endommager VER m p 5.28 1.82 0.49 0.14 par:pas; +endomorphe endomorphe ADJ s 0.01 0.00 0.01 0.00 +endomorphine endomorphine NOM f s 0.01 0.00 0.01 0.00 +endométriose endométriose NOM f s 0.04 0.00 0.04 0.00 +endométrite endométrite NOM f s 0.01 0.00 0.01 0.00 +endoplasmique endoplasmique ADJ m s 0.03 0.00 0.03 0.00 +endormîmes endormir VER 48.19 73.18 0.00 0.20 ind:pas:1p; +endormît endormir VER 48.19 73.18 0.00 0.07 sub:imp:3s; +endormaient endormir VER 48.19 73.18 0.14 1.55 ind:imp:3p; +endormais endormir VER 48.19 73.18 0.42 1.96 ind:imp:1s;ind:imp:2s; +endormait endormir VER 48.19 73.18 0.50 5.81 ind:imp:3s; +endormant endormir VER 48.19 73.18 0.35 1.35 par:pre; +endormante endormant ADJ f s 0.04 0.14 0.01 0.07 +endorme endormir VER 48.19 73.18 1.30 0.95 sub:pre:1s;sub:pre:3s; +endorment endormir VER 48.19 73.18 0.98 1.28 ind:pre:3p; +endormes endormir VER 48.19 73.18 0.22 0.07 sub:pre:2s; +endormeur endormeur NOM m s 0.02 0.20 0.02 0.14 +endormeurs endormeur NOM m p 0.02 0.20 0.00 0.07 +endormez endormir VER 48.19 73.18 0.73 0.20 imp:pre:2p;ind:pre:2p; +endormi endormir VER m s 48.19 73.18 12.83 11.22 par:pas; +endormie endormi ADJ f s 13.43 32.30 8.84 16.96 +endormies endormi ADJ f p 13.43 32.30 0.37 2.70 +endormions endormir VER 48.19 73.18 0.16 0.20 ind:imp:1p; +endormir endormir VER 48.19 73.18 15.36 24.39 inf; +endormira endormir VER 48.19 73.18 0.94 0.27 ind:fut:3s; +endormirai endormir VER 48.19 73.18 0.47 0.20 ind:fut:1s; +endormiraient endormir VER 48.19 73.18 0.00 0.14 cnd:pre:3p; +endormirais endormir VER 48.19 73.18 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +endormirait endormir VER 48.19 73.18 0.02 0.47 cnd:pre:3s; +endormirent endormir VER 48.19 73.18 0.02 0.27 ind:pas:3p; +endormirez endormir VER 48.19 73.18 0.04 0.07 ind:fut:2p; +endormirions endormir VER 48.19 73.18 0.01 0.00 cnd:pre:1p; +endormiront endormir VER 48.19 73.18 0.06 0.14 ind:fut:3p; +endormis endormi ADJ m p 13.43 32.30 1.27 4.05 +endormisse endormir VER 48.19 73.18 0.00 0.07 sub:imp:1s; +endormissement endormissement NOM m s 0.04 0.07 0.04 0.00 +endormissements endormissement NOM m p 0.04 0.07 0.00 0.07 +endormit endormir VER 48.19 73.18 0.20 7.77 ind:pas:3s; +endormons endormir VER 48.19 73.18 0.29 0.27 imp:pre:1p;ind:pre:1p; +endorphine endorphine NOM f s 1.33 0.07 0.29 0.00 +endorphines endorphine NOM f p 1.33 0.07 1.04 0.07 +endors endormir VER 48.19 73.18 6.08 3.85 imp:pre:2s;ind:pre:1s;ind:pre:2s; +endort endormir VER 48.19 73.18 5.67 5.34 ind:pre:3s; +endoscope endoscope NOM m s 0.15 0.00 0.15 0.00 +endoscopie endoscopie NOM f s 0.25 0.07 0.25 0.07 +endoscopique endoscopique ADJ s 0.01 0.00 0.01 0.00 +endosquelette endosquelette NOM m s 0.01 0.00 0.01 0.00 +endossa endosser VER 2.29 5.68 0.00 0.34 ind:pas:3s; +endossables endossable ADJ m p 0.01 0.00 0.01 0.00 +endossai endosser VER 2.29 5.68 0.01 0.07 ind:pas:1s; +endossaient endosser VER 2.29 5.68 0.00 0.07 ind:imp:3p; +endossais endosser VER 2.29 5.68 0.01 0.07 ind:imp:1s; +endossait endosser VER 2.29 5.68 0.01 0.34 ind:imp:3s; +endossant endosser VER 2.29 5.68 0.12 0.27 par:pre; +endosse endosser VER 2.29 5.68 0.28 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +endossement endossement NOM m s 0.26 0.00 0.26 0.00 +endossent endosser VER 2.29 5.68 0.02 0.07 ind:pre:3p; +endosser endosser VER 2.29 5.68 1.13 2.36 inf; +endosserai endosser VER 2.29 5.68 0.04 0.00 ind:fut:1s; +endosserais endosser VER 2.29 5.68 0.00 0.07 cnd:pre:1s; +endosserait endosser VER 2.29 5.68 0.00 0.14 cnd:pre:3s; +endosseras endosser VER 2.29 5.68 0.01 0.00 ind:fut:2s; +endosses endosser VER 2.29 5.68 0.03 0.00 ind:pre:2s; +endosseur endosseur NOM m s 0.00 0.07 0.00 0.07 +endossez endosser VER 2.29 5.68 0.23 0.07 imp:pre:2p;ind:pre:2p; +endossiez endosser VER 2.29 5.68 0.01 0.07 ind:imp:2p; +endossât endosser VER 2.29 5.68 0.00 0.14 sub:imp:3s; +endossèrent endosser VER 2.29 5.68 0.00 0.14 ind:pas:3p; +endossé endosser VER m s 2.29 5.68 0.24 0.68 par:pas; +endossée endosser VER f s 2.29 5.68 0.10 0.14 par:pas; +endossées endosser VER f p 2.29 5.68 0.00 0.07 par:pas; +endossés endosser VER m p 2.29 5.68 0.05 0.00 par:pas; +endothermique endothermique ADJ f s 0.01 0.00 0.01 0.00 +endroit endroit NOM m s 218.24 137.57 196.75 108.65 +endroits endroit NOM m p 218.24 137.57 21.48 28.92 +enduira enduire VER 1.25 7.50 0.01 0.00 ind:fut:3s; +enduirais enduire VER 1.25 7.50 0.00 0.07 cnd:pre:1s; +enduirait enduire VER 1.25 7.50 0.00 0.07 cnd:pre:3s; +enduire enduire VER 1.25 7.50 0.18 1.35 inf; +enduis enduire VER 1.25 7.50 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +enduisaient enduire VER 1.25 7.50 0.00 0.27 ind:imp:3p; +enduisait enduire VER 1.25 7.50 0.00 0.61 ind:imp:3s; +enduisant enduire VER 1.25 7.50 0.00 0.27 par:pre; +enduisent enduire VER 1.25 7.50 0.12 0.20 ind:pre:3p; +enduisit enduire VER 1.25 7.50 0.00 0.34 ind:pas:3s; +enduisons enduire VER 1.25 7.50 0.11 0.00 imp:pre:1p;ind:pre:1p; +enduit enduire VER m s 1.25 7.50 0.49 1.42 ind:pre:3s;par:pas; +enduite enduire VER f s 1.25 7.50 0.07 1.15 par:pas; +enduites enduire VER f p 1.25 7.50 0.03 0.81 par:pas; +enduits enduire VER m p 1.25 7.50 0.04 0.88 par:pas; +endémique endémique ADJ s 0.11 1.01 0.11 0.88 +endémiques endémique ADJ f p 0.11 1.01 0.00 0.14 +endura endurer VER 9.67 7.57 0.00 0.14 ind:pas:3s; +endurable endurable ADJ s 0.00 0.07 0.00 0.07 +enduraient endurer VER 9.67 7.57 0.02 0.07 ind:imp:3p; +endurais endurer VER 9.67 7.57 0.02 0.07 ind:imp:1s; +endurait endurer VER 9.67 7.57 0.04 0.20 ind:imp:3s; +endurance endurance NOM f s 1.72 2.43 1.72 2.43 +endurant endurant ADJ m s 0.14 0.34 0.10 0.14 +endurante endurant ADJ f s 0.14 0.34 0.03 0.07 +endurants endurant ADJ m p 0.14 0.34 0.01 0.14 +endurci endurcir VER m s 2.11 2.09 0.51 0.61 par:pas; +endurcie endurcir VER f s 2.11 2.09 0.28 0.20 par:pas; +endurcies endurci ADJ f p 1.19 1.28 0.01 0.00 +endurcir endurcir VER 2.11 2.09 0.91 0.68 inf; +endurcirait endurcir VER 2.11 2.09 0.01 0.00 cnd:pre:3s; +endurcis endurci ADJ m p 1.19 1.28 0.43 0.61 +endurcissait endurcir VER 2.11 2.09 0.01 0.00 ind:imp:3s; +endurcissement endurcissement NOM m s 0.40 0.61 0.40 0.61 +endurcit endurcir VER 2.11 2.09 0.24 0.34 ind:pre:3s;ind:pas:3s; +endure endurer VER 9.67 7.57 1.58 0.47 ind:pre:1s;ind:pre:3s; +endurent endurer VER 9.67 7.57 0.17 0.07 ind:pre:3p; +endurer endurer VER 9.67 7.57 3.70 3.58 inf; +endurera endurer VER 9.67 7.57 0.00 0.07 ind:fut:3s; +endurerai endurer VER 9.67 7.57 0.14 0.00 ind:fut:1s; +endureras endurer VER 9.67 7.57 0.01 0.00 ind:fut:2s; +endurez endurer VER 9.67 7.57 0.40 0.00 imp:pre:2p;ind:pre:2p; +enduriez endurer VER 9.67 7.57 0.01 0.00 ind:imp:2p; +endurons endurer VER 9.67 7.57 0.02 0.00 ind:pre:1p; +enduré endurer VER m s 9.67 7.57 3.08 1.82 par:pas; +endurée endurer VER f s 9.67 7.57 0.05 0.14 par:pas; +endurées endurer VER f p 9.67 7.57 0.19 0.54 par:pas; +endurés endurer VER m p 9.67 7.57 0.16 0.27 par:pas; +endêver endêver VER 0.00 0.07 0.00 0.07 inf; +enfance enfance NOM f s 33.01 103.99 32.70 103.11 +enfances enfance NOM f p 33.01 103.99 0.31 0.88 +enfant_robot enfant_robot NOM s 0.16 0.00 0.16 0.00 +enfant_roi enfant_roi NOM s 0.02 0.14 0.02 0.14 +enfant enfant NOM s 735.59 725.68 287.26 381.96 +enfanta enfanter VER 1.96 3.99 0.00 0.14 ind:pas:3s; +enfantaient enfanter VER 1.96 3.99 0.00 0.07 ind:imp:3p; +enfantait enfanter VER 1.96 3.99 0.00 0.34 ind:imp:3s; +enfante enfanter VER 1.96 3.99 0.20 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfantelets enfantelet NOM m p 0.00 0.07 0.00 0.07 +enfantement enfantement NOM m s 0.25 0.81 0.25 0.74 +enfantements enfantement NOM m p 0.25 0.81 0.00 0.07 +enfantent enfanter VER 1.96 3.99 0.16 0.20 ind:pre:3p; +enfanter enfanter VER 1.96 3.99 0.80 1.08 inf; +enfantera enfanter VER 1.96 3.99 0.27 0.00 ind:fut:3s; +enfanterai enfanter VER 1.96 3.99 0.02 0.07 ind:fut:1s; +enfançon enfançon NOM m s 0.10 0.34 0.00 0.27 +enfançons enfançon NOM m p 0.10 0.34 0.10 0.07 +enfantillage enfantillage NOM m s 1.47 3.58 0.15 1.96 +enfantillages enfantillage NOM m p 1.47 3.58 1.32 1.62 +enfantin enfantin ADJ m s 3.39 31.15 0.89 11.01 +enfantine enfantin ADJ f s 3.39 31.15 2.07 13.99 +enfantinement enfantinement ADV 0.10 0.41 0.10 0.41 +enfantines enfantin ADJ f p 3.39 31.15 0.24 3.51 +enfantins enfantin ADJ m p 3.39 31.15 0.19 2.64 +enfantons enfanter VER 1.96 3.99 0.00 0.07 ind:pre:1p; +enfants_robot enfants_robot NOM m p 0.01 0.00 0.01 0.00 +enfants_roi enfants_roi NOM m p 0.00 0.07 0.00 0.07 +enfants enfant NOM m p 735.59 725.68 448.33 343.72 +enfanté enfanter VER m s 1.96 3.99 0.40 1.01 par:pas; +enfantée enfanter VER f s 1.96 3.99 0.11 0.20 par:pas; +enfantées enfanter VER f p 1.96 3.99 0.00 0.07 par:pas; +enfantés enfanter VER m p 1.96 3.99 0.00 0.20 par:pas; +enfarinait enfariner VER 0.12 0.41 0.00 0.07 ind:imp:3s; +enfarine enfariner VER 0.12 0.41 0.10 0.07 imp:pre:2s;ind:pre:3s; +enfariner enfariner VER 0.12 0.41 0.01 0.07 inf; +enfariné enfariner VER m s 0.12 0.41 0.01 0.07 par:pas; +enfarinée enfariné ADJ f s 0.36 0.88 0.35 0.41 +enfarinés enfariné ADJ m p 0.36 0.88 0.01 0.20 +enfer enfer NOM m s 88.86 41.35 86.02 38.78 +enferma enfermer VER 58.81 69.86 0.29 4.12 ind:pas:3s; +enfermai enfermer VER 58.81 69.86 0.02 0.47 ind:pas:1s; +enfermaient enfermer VER 58.81 69.86 0.05 1.69 ind:imp:3p; +enfermais enfermer VER 58.81 69.86 0.20 0.47 ind:imp:1s;ind:imp:2s; +enfermait enfermer VER 58.81 69.86 0.64 5.41 ind:imp:3s; +enfermant enfermer VER 58.81 69.86 0.12 2.23 par:pre; +enferme enfermer VER 58.81 69.86 6.32 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enfermement enfermement NOM m s 0.20 0.61 0.20 0.61 +enferment enfermer VER 58.81 69.86 0.76 1.28 ind:pre:3p; +enfermer enfermer VER 58.81 69.86 12.70 13.92 ind:pre:2p;inf; +enfermera enfermer VER 58.81 69.86 0.34 0.07 ind:fut:3s; +enfermerai enfermer VER 58.81 69.86 0.33 0.14 ind:fut:1s; +enfermeraient enfermer VER 58.81 69.86 0.05 0.00 cnd:pre:3p; +enfermerais enfermer VER 58.81 69.86 0.08 0.20 cnd:pre:1s; +enfermerait enfermer VER 58.81 69.86 0.35 0.20 cnd:pre:3s; +enfermerez enfermer VER 58.81 69.86 0.01 0.07 ind:fut:2p; +enfermerons enfermer VER 58.81 69.86 0.03 0.14 ind:fut:1p; +enfermeront enfermer VER 58.81 69.86 0.65 0.00 ind:fut:3p; +enfermes enfermer VER 58.81 69.86 1.27 0.34 ind:pre:2s; +enfermez enfermer VER 58.81 69.86 4.78 0.41 imp:pre:2p;ind:pre:2p; +enfermiez enfermer VER 58.81 69.86 0.03 0.07 ind:imp:2p; +enfermons enfermer VER 58.81 69.86 0.45 0.00 imp:pre:1p;ind:pre:1p; +enfermèrent enfermer VER 58.81 69.86 0.23 0.34 ind:pas:3p; +enfermé enfermer VER m s 58.81 69.86 15.25 17.03 par:pas; +enfermée enfermer VER f s 58.81 69.86 8.38 7.57 par:pas; +enfermées enfermer VER f p 58.81 69.86 1.31 1.55 par:pas; +enfermés enfermer VER m p 58.81 69.86 4.17 6.42 par:pas; +enferra enferrer VER 0.23 0.95 0.00 0.07 ind:pas:3s; +enferrait enferrer VER 0.23 0.95 0.00 0.07 ind:imp:3s; +enferrant enferrer VER 0.23 0.95 0.00 0.07 par:pre; +enferre enferrer VER 0.23 0.95 0.01 0.14 ind:pre:1s;ind:pre:3s; +enferrent enferrer VER 0.23 0.95 0.00 0.07 ind:pre:3p; +enferrer enferrer VER 0.23 0.95 0.16 0.27 inf; +enferres enferrer VER 0.23 0.95 0.01 0.07 ind:pre:2s; +enferrez enferrer VER 0.23 0.95 0.01 0.00 ind:pre:2p; +enferrons enferrer VER 0.23 0.95 0.01 0.00 ind:pre:1p; +enferré enferrer VER m s 0.23 0.95 0.02 0.14 par:pas; +enferrée enferrer VER f s 0.23 0.95 0.00 0.07 par:pas; +enfers enfer NOM m p 88.86 41.35 2.85 2.57 +enfiche enficher VER 0.00 0.07 0.00 0.07 ind:pre:1s; +enfila enfiler VER 11.42 44.86 0.11 8.99 ind:pas:3s; +enfilade enfilade NOM f s 0.16 6.28 0.16 5.00 +enfilades enfilade NOM f p 0.16 6.28 0.00 1.28 +enfilage enfilage NOM m s 0.00 0.20 0.00 0.20 +enfilai enfiler VER 11.42 44.86 0.01 1.76 ind:pas:1s; +enfilaient enfiler VER 11.42 44.86 0.02 0.54 ind:imp:3p; +enfilais enfiler VER 11.42 44.86 0.12 0.61 ind:imp:1s; +enfilait enfiler VER 11.42 44.86 0.05 3.65 ind:imp:3s; +enfilant enfiler VER 11.42 44.86 0.14 2.16 par:pre; +enfile enfiler VER 11.42 44.86 4.46 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfilent enfiler VER 11.42 44.86 0.06 0.54 ind:pre:3p; +enfiler enfiler VER 11.42 44.86 2.74 10.95 inf; +enfilera enfiler VER 11.42 44.86 0.10 0.00 ind:fut:3s; +enfilerai enfiler VER 11.42 44.86 0.02 0.27 ind:fut:1s; +enfileraient enfiler VER 11.42 44.86 0.00 0.07 cnd:pre:3p; +enfilerais enfiler VER 11.42 44.86 0.06 0.14 cnd:pre:1s; +enfilerait enfiler VER 11.42 44.86 0.00 0.34 cnd:pre:3s; +enfilerez enfiler VER 11.42 44.86 0.01 0.00 ind:fut:2p; +enfileront enfiler VER 11.42 44.86 0.01 0.00 ind:fut:3p; +enfiles enfiler VER 11.42 44.86 0.42 0.34 ind:pre:2s; +enfileur enfileur NOM m s 0.00 0.14 0.00 0.14 +enfilez enfiler VER 11.42 44.86 1.20 0.20 imp:pre:2p;ind:pre:2p; +enfilions enfiler VER 11.42 44.86 0.00 0.20 ind:imp:1p; +enfilons enfiler VER 11.42 44.86 0.09 0.07 imp:pre:1p;ind:pre:1p; +enfilèrent enfiler VER 11.42 44.86 0.11 0.54 ind:pas:3p; +enfilé enfiler VER m s 11.42 44.86 1.35 6.28 par:pas; +enfilée enfiler VER f s 11.42 44.86 0.28 0.68 par:pas; +enfilées enfiler VER f p 11.42 44.86 0.01 0.41 par:pas; +enfilés enfiler VER m p 11.42 44.86 0.04 0.34 par:pas; +enfin enfin ADV 265.83 440.27 265.83 440.27 +enfièvre enfiévrer VER 0.03 1.42 0.00 0.20 ind:pre:3s; +enfièvrent enfiévrer VER 0.03 1.42 0.00 0.07 ind:pre:3p; +enfiévra enfiévrer VER 0.03 1.42 0.00 0.07 ind:pas:3s; +enfiévraient enfiévrer VER 0.03 1.42 0.00 0.14 ind:imp:3p; +enfiévrait enfiévrer VER 0.03 1.42 0.00 0.27 ind:imp:3s; +enfiévré enfiévré ADJ m s 0.12 0.74 0.09 0.20 +enfiévrée enfiévrer VER f s 0.03 1.42 0.01 0.27 par:pas; +enfiévrées enfiévré ADJ f p 0.12 0.74 0.01 0.07 +enfiévrés enfiévré ADJ m p 0.12 0.74 0.01 0.20 +enfla enfler VER 2.27 10.95 0.02 1.08 ind:pas:3s; +enflaient enfler VER 2.27 10.95 0.00 0.68 ind:imp:3p; +enflait enfler VER 2.27 10.95 0.01 1.89 ind:imp:3s; +enflamma enflammer VER 7.25 10.68 0.14 1.55 ind:pas:3s; +enflammai enflammer VER 7.25 10.68 0.00 0.07 ind:pas:1s; +enflammaient enflammer VER 7.25 10.68 0.00 0.54 ind:imp:3p; +enflammait enflammer VER 7.25 10.68 0.07 1.82 ind:imp:3s; +enflammant enflammer VER 7.25 10.68 0.11 0.47 par:pre; +enflamme enflammer VER 7.25 10.68 2.68 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enflamment enflammer VER 7.25 10.68 0.44 0.47 ind:pre:3p; +enflammer enflammer VER 7.25 10.68 1.59 0.81 inf; +enflammera enflammer VER 7.25 10.68 0.18 0.00 ind:fut:3s; +enflammerait enflammer VER 7.25 10.68 0.01 0.07 cnd:pre:3s; +enflammez enflammer VER 7.25 10.68 0.05 0.00 imp:pre:2p; +enflammât enflammer VER 7.25 10.68 0.00 0.07 sub:imp:3s; +enflammèrent enflammer VER 7.25 10.68 0.01 0.34 ind:pas:3p; +enflammé enflammé ADJ m s 2.20 4.59 1.00 1.28 +enflammée enflammer VER f s 7.25 10.68 0.65 0.61 par:pas; +enflammées enflammer VER f p 7.25 10.68 0.19 0.47 par:pas; +enflammés enflammé ADJ m p 2.20 4.59 0.56 0.95 +enflant enfler VER 2.27 10.95 0.00 0.88 par:pre; +enfle enfler VER 2.27 10.95 0.56 1.69 imp:pre:2s;ind:pre:3s; +enflent enfler VER 2.27 10.95 0.26 0.81 ind:pre:3p; +enfler enfler VER 2.27 10.95 0.65 1.49 inf; +enflerait enfler VER 2.27 10.95 0.01 0.00 cnd:pre:3s; +enfles enfler VER 2.27 10.95 0.02 0.07 ind:pre:2s; +enflèrent enfler VER 2.27 10.95 0.00 0.07 ind:pas:3p; +enflé enflé ADJ m s 1.93 3.58 0.87 1.35 +enflée enflé ADJ f s 1.93 3.58 0.49 1.01 +enflées enflé ADJ f p 1.93 3.58 0.25 0.61 +enflure enflure NOM f s 2.19 2.36 1.93 2.16 +enflures enflure NOM f p 2.19 2.36 0.26 0.20 +enflés enflé ADJ m p 1.93 3.58 0.32 0.61 +enfoiré enfoiré NOM m s 39.56 4.53 30.94 3.24 +enfoirée enfoiré ADJ f s 14.84 0.81 0.16 0.14 +enfoirés enfoiré NOM m p 39.56 4.53 8.50 1.22 +enfonce enfoncer VER 23.30 104.80 6.51 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfoncement enfoncement NOM m s 0.08 0.61 0.07 0.47 +enfoncements enfoncement NOM m p 0.08 0.61 0.01 0.14 +enfoncent enfoncer VER 23.30 104.80 0.68 3.31 ind:pre:3p; +enfoncer enfoncer VER 23.30 104.80 6.88 20.14 inf;; +enfoncera enfoncer VER 23.30 104.80 0.14 0.14 ind:fut:3s; +enfoncerai enfoncer VER 23.30 104.80 0.28 0.07 ind:fut:1s; +enfonceraient enfoncer VER 23.30 104.80 0.02 0.00 cnd:pre:3p; +enfoncerais enfoncer VER 23.30 104.80 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +enfoncerait enfoncer VER 23.30 104.80 0.03 0.47 cnd:pre:3s; +enfonceras enfoncer VER 23.30 104.80 0.04 0.07 ind:fut:2s; +enfoncerez enfoncer VER 23.30 104.80 0.00 0.07 ind:fut:2p; +enfoncerions enfoncer VER 23.30 104.80 0.00 0.07 cnd:pre:1p; +enfoncerons enfoncer VER 23.30 104.80 0.01 0.07 ind:fut:1p; +enfonceront enfoncer VER 23.30 104.80 0.05 0.07 ind:fut:3p; +enfonces enfoncer VER 23.30 104.80 0.92 0.27 ind:pre:2s;sub:pre:2s; +enfonceur enfonceur NOM m s 0.00 0.07 0.00 0.07 +enfoncez enfoncer VER 23.30 104.80 1.52 0.41 imp:pre:2p;ind:pre:2p; +enfonciez enfoncer VER 23.30 104.80 0.14 0.00 ind:imp:2p; +enfoncions enfoncer VER 23.30 104.80 0.01 0.34 ind:imp:1p; +enfoncèrent enfoncer VER 23.30 104.80 0.01 1.22 ind:pas:3p; +enfoncé enfoncer VER m s 23.30 104.80 2.60 13.58 par:pas; +enfoncée enfoncer VER f s 23.30 104.80 0.84 5.14 par:pas; +enfoncées enfoncer VER f p 23.30 104.80 0.19 2.70 par:pas; +enfoncés enfoncer VER m p 23.30 104.80 0.40 4.53 par:pas; +enfonça enfoncer VER 23.30 104.80 0.15 9.19 ind:pas:3s; +enfonçage enfonçage NOM m s 0.00 0.07 0.00 0.07 +enfonçai enfoncer VER 23.30 104.80 0.01 1.49 ind:pas:1s; +enfonçaient enfoncer VER 23.30 104.80 0.04 4.39 ind:imp:3p; +enfonçais enfoncer VER 23.30 104.80 0.34 1.89 ind:imp:1s; +enfonçait enfoncer VER 23.30 104.80 0.40 11.76 ind:imp:3s; +enfonçant enfoncer VER 23.30 104.80 0.47 5.61 par:pre; +enfonçâmes enfoncer VER 23.30 104.80 0.00 0.14 ind:pas:1p; +enfonçons enfoncer VER 23.30 104.80 0.53 0.34 imp:pre:1p;ind:pre:1p; +enfoui enfouir VER m s 4.26 26.76 1.04 7.57 par:pas; +enfouie enfouir VER f s 4.26 26.76 0.74 4.80 par:pas; +enfouies enfouir VER f p 4.26 26.76 0.62 2.09 par:pas; +enfouillais enfouiller VER 0.00 0.88 0.00 0.14 ind:imp:1s; +enfouillant enfouiller VER 0.00 0.88 0.00 0.07 par:pre; +enfouille enfouiller VER 0.00 0.88 0.00 0.07 ind:pre:3s; +enfouiller enfouiller VER 0.00 0.88 0.00 0.20 inf; +enfouillé enfouiller VER m s 0.00 0.88 0.00 0.34 par:pas; +enfouillée enfouiller VER f s 0.00 0.88 0.00 0.07 par:pas; +enfouir enfouir VER 4.26 26.76 0.71 3.24 inf; +enfouiraient enfouir VER 4.26 26.76 0.00 0.07 cnd:pre:3p; +enfouis enfouir VER m p 4.26 26.76 0.29 2.36 ind:pre:1s;par:pas; +enfouissais enfouir VER 4.26 26.76 0.00 0.27 ind:imp:1s; +enfouissait enfouir VER 4.26 26.76 0.00 1.01 ind:imp:3s; +enfouissant enfouir VER 4.26 26.76 0.01 0.88 par:pre; +enfouissement enfouissement NOM m s 0.09 0.34 0.09 0.20 +enfouissements enfouissement NOM m p 0.09 0.34 0.00 0.14 +enfouissent enfouir VER 4.26 26.76 0.00 0.07 ind:pre:3p; +enfouissez enfouir VER 4.26 26.76 0.11 0.00 imp:pre:2p;ind:pre:2p; +enfouissons enfouir VER 4.26 26.76 0.01 0.07 imp:pre:1p;ind:pre:1p; +enfouit enfouir VER 4.26 26.76 0.73 4.32 ind:pre:3s;ind:pas:3s; +enfouraille enfourailler VER 0.00 0.14 0.00 0.14 ind:pre:1s;ind:pre:3s; +enfouraillé enfouraillé ADJ m s 0.02 0.47 0.02 0.34 +enfouraillée enfouraillé ADJ f s 0.02 0.47 0.00 0.07 +enfouraillés enfouraillé ADJ m p 0.02 0.47 0.00 0.07 +enfourcha enfourcher VER 0.60 6.49 0.01 1.89 ind:pas:3s; +enfourchai enfourcher VER 0.60 6.49 0.00 0.27 ind:pas:1s; +enfourchaient enfourcher VER 0.60 6.49 0.00 0.07 ind:imp:3p; +enfourchais enfourcher VER 0.60 6.49 0.01 0.20 ind:imp:1s;ind:imp:2s; +enfourchait enfourcher VER 0.60 6.49 0.00 0.54 ind:imp:3s; +enfourchant enfourcher VER 0.60 6.49 0.01 0.27 par:pre; +enfourche enfourcher VER 0.60 6.49 0.23 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enfourchement enfourchement NOM m s 0.00 0.07 0.00 0.07 +enfourcher enfourcher VER 0.60 6.49 0.21 1.01 inf; +enfourcherait enfourcher VER 0.60 6.49 0.00 0.07 cnd:pre:3s; +enfourchez enfourcher VER 0.60 6.49 0.07 0.00 imp:pre:2p;ind:pre:2p; +enfourchiez enfourcher VER 0.60 6.49 0.00 0.07 ind:imp:2p; +enfourchèrent enfourcher VER 0.60 6.49 0.00 0.34 ind:pas:3p; +enfourché enfourcher VER m s 0.60 6.49 0.06 1.01 par:pas; +enfourchure enfourchure NOM f s 0.10 0.07 0.10 0.07 +enfourna enfourner VER 0.47 4.93 0.01 0.47 ind:pas:3s; +enfournage enfournage NOM m s 0.00 0.07 0.00 0.07 +enfournaient enfourner VER 0.47 4.93 0.00 0.07 ind:imp:3p; +enfournait enfourner VER 0.47 4.93 0.00 0.20 ind:imp:3s; +enfournant enfourner VER 0.47 4.93 0.00 0.27 par:pre; +enfourne enfourner VER 0.47 4.93 0.19 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enfournent enfourner VER 0.47 4.93 0.01 0.14 ind:pre:3p; +enfourner enfourner VER 0.47 4.93 0.24 1.08 inf; +enfourniez enfourner VER 0.47 4.93 0.00 0.07 ind:imp:2p; +enfournèrent enfourner VER 0.47 4.93 0.00 0.07 ind:pas:3p; +enfourné enfourner VER m s 0.47 4.93 0.02 0.74 par:pas; +enfournée enfourner VER f s 0.47 4.93 0.00 0.20 par:pas; +enfournées enfourner VER f p 0.47 4.93 0.00 0.07 par:pas; +enfournés enfourner VER m p 0.47 4.93 0.00 0.41 par:pas; +enfreignaient enfreindre VER 6.67 1.96 0.10 0.07 ind:imp:3p; +enfreignais enfreindre VER 6.67 1.96 0.05 0.00 ind:imp:1s;ind:imp:2s; +enfreignait enfreindre VER 6.67 1.96 0.09 0.20 ind:imp:3s; +enfreignant enfreindre VER 6.67 1.96 0.02 0.00 par:pre; +enfreignent enfreindre VER 6.67 1.96 0.16 0.00 ind:pre:3p; +enfreignez enfreindre VER 6.67 1.96 0.19 0.00 ind:pre:2p; +enfreindra enfreindre VER 6.67 1.96 0.07 0.00 ind:fut:3s; +enfreindrai enfreindre VER 6.67 1.96 0.03 0.00 ind:fut:1s; +enfreindrais enfreindre VER 6.67 1.96 0.02 0.00 cnd:pre:1s; +enfreindre enfreindre VER 6.67 1.96 1.86 1.15 inf; +enfreins enfreindre VER 6.67 1.96 0.47 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +enfreint enfreindre VER m s 6.67 1.96 3.33 0.54 ind:pre:3s;par:pas; +enfreinte enfreindre VER f s 6.67 1.96 0.19 0.00 par:pas; +enfreintes enfreindre VER f p 6.67 1.96 0.10 0.00 par:pas; +enfui enfuir VER m s 65.13 37.57 14.79 3.78 par:pas; +enfuie enfuir VER f s 65.13 37.57 8.71 3.38 par:pas;sub:pre:3s; +enfuient enfuir VER 65.13 37.57 2.74 1.01 ind:pre:3p; +enfuies enfuir VER f p 65.13 37.57 0.65 0.68 par:pas;sub:pre:2s; +enfuir enfuir VER 65.13 37.57 20.81 11.69 inf; +enfuira enfuir VER 65.13 37.57 0.56 0.14 ind:fut:3s; +enfuirai enfuir VER 65.13 37.57 0.54 0.20 ind:fut:1s; +enfuiraient enfuir VER 65.13 37.57 0.10 0.14 cnd:pre:3p; +enfuirais enfuir VER 65.13 37.57 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +enfuirait enfuir VER 65.13 37.57 0.30 0.20 cnd:pre:3s; +enfuiras enfuir VER 65.13 37.57 0.07 0.00 ind:fut:2s; +enfuirent enfuir VER 65.13 37.57 0.41 0.81 ind:pas:3p; +enfuiront enfuir VER 65.13 37.57 0.07 0.00 ind:fut:3p; +enfuis enfuir VER m p 65.13 37.57 6.83 3.04 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +enfuit enfuir VER 65.13 37.57 6.31 7.97 ind:pre:3s;ind:pas:3s; +enfuma enfumer VER 0.39 1.76 0.00 0.07 ind:pas:3s; +enfumaient enfumer VER 0.39 1.76 0.00 0.07 ind:imp:3p; +enfumait enfumer VER 0.39 1.76 0.01 0.20 ind:imp:3s; +enfumer enfumer VER 0.39 1.76 0.20 0.20 inf; +enfumez enfumer VER 0.39 1.76 0.03 0.00 imp:pre:2p; +enfumé enfumé ADJ m s 0.35 2.97 0.13 0.54 +enfumée enfumé ADJ f s 0.35 2.97 0.07 1.22 +enfumées enfumé ADJ f p 0.35 2.97 0.14 0.54 +enfumés enfumé ADJ m p 0.35 2.97 0.01 0.68 +enfuyaient enfuir VER 65.13 37.57 0.09 1.22 ind:imp:3p; +enfuyais enfuir VER 65.13 37.57 0.43 0.47 ind:imp:1s;ind:imp:2s; +enfuyait enfuir VER 65.13 37.57 0.67 2.03 ind:imp:3s; +enfuyant enfuir VER 65.13 37.57 0.30 0.68 par:pre; +enfuyez enfuir VER 65.13 37.57 0.41 0.00 imp:pre:2p;ind:pre:2p; +enfuyiez enfuir VER 65.13 37.57 0.06 0.00 ind:imp:2p; +enfuyons enfuir VER 65.13 37.57 0.19 0.00 imp:pre:1p;ind:pre:1p; +engage engager VER 68.19 94.59 10.49 10.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engagea engager VER 68.19 94.59 0.50 11.08 ind:pas:3s; +engageable engageable NOM s 0.01 0.00 0.01 0.00 +engageai engager VER 68.19 94.59 0.01 1.01 ind:pas:1s; +engageaient engager VER 68.19 94.59 0.40 1.76 ind:imp:3p; +engageais engager VER 68.19 94.59 0.12 0.74 ind:imp:1s;ind:imp:2s; +engageait engager VER 68.19 94.59 0.47 6.89 ind:imp:3s; +engageant engager VER 68.19 94.59 0.52 2.30 par:pre; +engageante engageant ADJ f s 0.26 3.72 0.05 1.08 +engageantes engageant ADJ f p 0.26 3.72 0.00 0.20 +engageants engageant ADJ m p 0.26 3.72 0.00 0.20 +engagement engagement NOM m s 12.12 18.45 9.46 11.69 +engagements engagement NOM m p 12.12 18.45 2.66 6.76 +engagent engager VER 68.19 94.59 0.77 3.31 ind:pre:3p;sub:pre:3p; +engageâmes engager VER 68.19 94.59 0.00 0.34 ind:pas:1p; +engageons engager VER 68.19 94.59 2.55 0.41 imp:pre:1p;ind:pre:1p; +engageât engager VER 68.19 94.59 0.00 0.54 sub:imp:3s; +engager engager VER 68.19 94.59 18.97 21.35 ind:pre:2p;inf; +engagera engager VER 68.19 94.59 0.54 0.34 ind:fut:3s; +engagerai engager VER 68.19 94.59 0.55 0.07 ind:fut:1s; +engageraient engager VER 68.19 94.59 0.17 0.61 cnd:pre:3p; +engagerais engager VER 68.19 94.59 0.22 0.20 cnd:pre:1s;cnd:pre:2s; +engagerait engager VER 68.19 94.59 0.23 0.54 cnd:pre:3s; +engageriez engager VER 68.19 94.59 0.04 0.07 cnd:pre:2p; +engagerions engager VER 68.19 94.59 0.00 0.07 cnd:pre:1p; +engagerons engager VER 68.19 94.59 0.08 0.14 ind:fut:1p; +engageront engager VER 68.19 94.59 0.11 0.07 ind:fut:3p; +engages engager VER 68.19 94.59 1.22 0.14 ind:pre:2s;sub:pre:2s; +engagez engager VER 68.19 94.59 2.04 0.54 imp:pre:2p;ind:pre:2p; +engagiez engager VER 68.19 94.59 0.07 0.07 ind:imp:2p; +engagions engager VER 68.19 94.59 0.14 0.41 ind:imp:1p; +engagèrent engager VER 68.19 94.59 0.06 2.30 ind:pas:3p; +engagé engager VER m s 68.19 94.59 21.09 14.53 par:pas; +engagée engager VER f s 68.19 94.59 4.44 7.03 par:pas; +engagées engager VER f p 68.19 94.59 0.22 3.38 par:pas; +engagés engager VER m p 68.19 94.59 2.17 4.39 par:pas; +engazonnée engazonner VER f s 0.00 0.14 0.00 0.14 par:pas; +engeance engeance NOM f s 0.72 3.11 0.63 3.04 +engeances engeance NOM f p 0.72 3.11 0.10 0.07 +engelure engelure NOM f s 0.46 0.88 0.02 0.00 +engelures engelure NOM f p 0.46 0.88 0.44 0.88 +engendra engendrer VER 7.53 10.47 0.26 0.27 ind:pas:3s; +engendraient engendrer VER 7.53 10.47 0.01 0.47 ind:imp:3p; +engendrait engendrer VER 7.53 10.47 0.34 0.74 ind:imp:3s; +engendrant engendrer VER 7.53 10.47 0.05 0.41 par:pre; +engendrassent engendrer VER 7.53 10.47 0.00 0.07 sub:imp:3p; +engendre engendrer VER 7.53 10.47 1.55 2.09 imp:pre:2s;ind:pre:3s; +engendrement engendrement NOM m s 0.01 0.20 0.01 0.20 +engendrent engendrer VER 7.53 10.47 0.33 0.74 ind:pre:3p; +engendrer engendrer VER 7.53 10.47 1.75 1.62 inf; +engendrera engendrer VER 7.53 10.47 0.25 0.07 ind:fut:3s; +engendreraient engendrer VER 7.53 10.47 0.01 0.00 cnd:pre:3p; +engendrerait engendrer VER 7.53 10.47 0.14 0.14 cnd:pre:3s; +engendreuse engendreur ADJ f s 0.00 0.07 0.00 0.07 +engendrez engendrer VER 7.53 10.47 0.06 0.07 imp:pre:2p;ind:pre:2p; +engendrons engendrer VER 7.53 10.47 0.00 0.07 imp:pre:1p; +engendrèrent engendrer VER 7.53 10.47 0.00 0.07 ind:pas:3p; +engendré engendrer VER m s 7.53 10.47 1.60 2.43 par:pas; +engendrée engendrer VER f s 7.53 10.47 0.87 0.34 par:pas; +engendrées engendrer VER f p 7.53 10.47 0.06 0.34 par:pas; +engendrés engendrer VER m p 7.53 10.47 0.25 0.54 par:pas; +engin engin NOM m s 11.25 16.01 9.41 9.80 +engineering engineering NOM m s 0.03 0.07 0.03 0.07 +engins engin NOM m p 11.25 16.01 1.84 6.22 +englacé englacer VER m s 0.01 0.00 0.01 0.00 par:pas; +englande englander VER 0.01 0.27 0.00 0.07 ind:pre:1s; +englander englander VER 0.01 0.27 0.01 0.14 inf; +englandés englander VER m p 0.01 0.27 0.00 0.07 par:pas; +engliche engliche NOM s 0.01 0.07 0.01 0.07 +engloba englober VER 0.78 4.53 0.01 0.07 ind:pas:3s; +englobaient englober VER 0.78 4.53 0.00 0.27 ind:imp:3p; +englobais englober VER 0.78 4.53 0.00 0.07 ind:imp:1s; +englobait englober VER 0.78 4.53 0.02 1.01 ind:imp:3s; +englobant englober VER 0.78 4.53 0.01 0.74 par:pre; +englobe englober VER 0.78 4.53 0.46 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +englobent englober VER 0.78 4.53 0.02 0.14 ind:pre:3p; +englober englober VER 0.78 4.53 0.06 0.68 inf; +englobera englober VER 0.78 4.53 0.01 0.07 ind:fut:3s; +engloberaient englober VER 0.78 4.53 0.00 0.07 cnd:pre:3p; +engloberait englober VER 0.78 4.53 0.01 0.00 cnd:pre:3s; +englobé englober VER m s 0.78 4.53 0.03 0.14 par:pas; +englobée englober VER f s 0.78 4.53 0.02 0.07 par:pas; +englobées englober VER f p 0.78 4.53 0.14 0.14 par:pas; +englobés englober VER m p 0.78 4.53 0.00 0.07 par:pas; +englouti engloutir VER m s 4.57 22.30 0.98 4.66 par:pas; +engloutie engloutir VER f s 4.57 22.30 0.60 2.30 par:pas; +englouties engloutir VER f p 4.57 22.30 0.02 1.08 par:pas; +engloutir engloutir VER 4.57 22.30 1.28 4.73 inf; +engloutira engloutir VER 4.57 22.30 0.07 0.14 ind:fut:3s; +engloutiraient engloutir VER 4.57 22.30 0.00 0.07 cnd:pre:3p; +engloutirait engloutir VER 4.57 22.30 0.02 0.14 cnd:pre:3s; +engloutirent engloutir VER 4.57 22.30 0.14 0.07 ind:pas:3p; +engloutirons engloutir VER 4.57 22.30 0.00 0.07 ind:fut:1p; +engloutis engloutir VER m p 4.57 22.30 0.34 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +engloutissaient engloutir VER 4.57 22.30 0.02 0.81 ind:imp:3p; +engloutissais engloutir VER 4.57 22.30 0.01 0.14 ind:imp:1s; +engloutissait engloutir VER 4.57 22.30 0.12 1.35 ind:imp:3s; +engloutissant engloutir VER 4.57 22.30 0.01 0.61 par:pre; +engloutisse engloutir VER 4.57 22.30 0.06 0.20 sub:pre:1s;sub:pre:3s; +engloutissement engloutissement NOM m s 0.01 0.54 0.01 0.54 +engloutissent engloutir VER 4.57 22.30 0.06 0.74 ind:pre:3p; +engloutissions engloutir VER 4.57 22.30 0.00 0.07 ind:imp:1p; +engloutit engloutir VER 4.57 22.30 0.83 2.77 ind:pre:3s;ind:pas:3s; +engluaient engluer VER 0.40 5.20 0.00 0.20 ind:imp:3p; +engluait engluer VER 0.40 5.20 0.00 0.54 ind:imp:3s; +engluant engluer VER 0.40 5.20 0.01 0.00 par:pre; +englue engluer VER 0.40 5.20 0.01 0.61 ind:pre:3s; +engluent engluer VER 0.40 5.20 0.00 0.34 ind:pre:3p; +engluer engluer VER 0.40 5.20 0.02 0.74 inf; +englué engluer VER m s 0.40 5.20 0.20 1.01 par:pas; +engluée engluer VER f s 0.40 5.20 0.14 0.61 par:pas; +engluées engluer VER f p 0.40 5.20 0.00 0.61 par:pas; +englués engluer VER m p 0.40 5.20 0.03 0.54 par:pas; +engonce engoncer VER 0.05 4.19 0.02 0.14 ind:pre:3s; +engoncement engoncement NOM m s 0.00 0.07 0.00 0.07 +engoncé engoncer VER m s 0.05 4.19 0.03 1.69 par:pas; +engoncée engoncer VER f s 0.05 4.19 0.00 0.74 par:pas; +engoncées engoncer VER f p 0.05 4.19 0.00 0.41 par:pas; +engoncés engoncer VER m p 0.05 4.19 0.00 0.88 par:pas; +engonçaient engoncer VER 0.05 4.19 0.00 0.14 ind:imp:3p; +engonçait engoncer VER 0.05 4.19 0.00 0.14 ind:imp:3s; +engonçant engoncer VER 0.05 4.19 0.00 0.07 par:pre; +engorge engorger VER 0.07 1.15 0.00 0.14 ind:pre:3s; +engorgeaient engorger VER 0.07 1.15 0.00 0.07 ind:imp:3p; +engorgeait engorger VER 0.07 1.15 0.00 0.20 ind:imp:3s; +engorgement engorgement NOM m s 0.04 0.27 0.04 0.07 +engorgements engorgement NOM m p 0.04 0.27 0.00 0.20 +engorgent engorger VER 0.07 1.15 0.01 0.14 ind:pre:3p; +engorger engorger VER 0.07 1.15 0.01 0.07 inf; +engorgeraient engorger VER 0.07 1.15 0.00 0.07 cnd:pre:3p; +engorgèrent engorger VER 0.07 1.15 0.00 0.07 ind:pas:3p; +engorgé engorgé ADJ m s 0.07 0.47 0.02 0.14 +engorgée engorgé ADJ f s 0.07 0.47 0.02 0.00 +engorgées engorgé ADJ f p 0.07 0.47 0.02 0.20 +engorgés engorgé ADJ m p 0.07 0.47 0.01 0.14 +engouai engouer VER 0.00 0.47 0.00 0.07 ind:pas:1s; +engouait engouer VER 0.00 0.47 0.00 0.14 ind:imp:3s; +engouement engouement NOM m s 0.55 1.55 0.42 1.28 +engouements engouement NOM m p 0.55 1.55 0.13 0.27 +engouffra engouffrer VER 0.61 18.58 0.01 2.36 ind:pas:3s; +engouffrai engouffrer VER 0.61 18.58 0.01 0.20 ind:pas:1s; +engouffraient engouffrer VER 0.61 18.58 0.00 1.49 ind:imp:3p; +engouffrait engouffrer VER 0.61 18.58 0.16 3.11 ind:imp:3s; +engouffrant engouffrer VER 0.61 18.58 0.00 1.76 par:pre; +engouffre engouffrer VER 0.61 18.58 0.10 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engouffrement engouffrement NOM m s 0.00 0.14 0.00 0.14 +engouffrent engouffrer VER 0.61 18.58 0.03 0.61 ind:pre:3p;sub:pre:3p; +engouffrer engouffrer VER 0.61 18.58 0.09 3.24 inf; +engouffrera engouffrer VER 0.61 18.58 0.14 0.00 ind:fut:3s; +engouffreraient engouffrer VER 0.61 18.58 0.00 0.07 cnd:pre:3p; +engouffrerait engouffrer VER 0.61 18.58 0.00 0.14 cnd:pre:3s; +engouffrons engouffrer VER 0.61 18.58 0.00 0.20 ind:pre:1p; +engouffrât engouffrer VER 0.61 18.58 0.00 0.07 sub:imp:3s; +engouffrèrent engouffrer VER 0.61 18.58 0.00 0.54 ind:pas:3p; +engouffré engouffrer VER m s 0.61 18.58 0.08 0.68 par:pas; +engouffrée engouffrer VER f s 0.61 18.58 0.00 0.61 par:pas; +engouffrées engouffrer VER f p 0.61 18.58 0.00 0.14 par:pas; +engouffrés engouffrer VER m p 0.61 18.58 0.00 0.27 par:pas; +engoulevent engoulevent NOM m s 0.10 0.14 0.10 0.14 +engourdi engourdi ADJ m s 1.34 5.61 0.49 1.89 +engourdie engourdi ADJ f s 1.34 5.61 0.35 1.55 +engourdies engourdi ADJ f p 1.34 5.61 0.34 1.01 +engourdir engourdir VER 1.72 10.34 0.33 1.15 inf; +engourdira engourdir VER 1.72 10.34 0.02 0.07 ind:fut:3s; +engourdirai engourdir VER 1.72 10.34 0.00 0.07 ind:fut:1s; +engourdirais engourdir VER 1.72 10.34 0.00 0.07 cnd:pre:1s; +engourdis engourdir VER m p 1.72 10.34 0.17 1.22 ind:pre:1s;ind:pre:2s;par:pas; +engourdissaient engourdir VER 1.72 10.34 0.00 0.27 ind:imp:3p; +engourdissait engourdir VER 1.72 10.34 0.01 2.36 ind:imp:3s; +engourdissant engourdir VER 1.72 10.34 0.00 0.14 par:pre; +engourdissante engourdissant ADJ f s 0.00 0.34 0.00 0.14 +engourdissantes engourdissant ADJ f p 0.00 0.34 0.00 0.07 +engourdissement engourdissement NOM m s 0.53 5.54 0.44 5.41 +engourdissements engourdissement NOM m p 0.53 5.54 0.09 0.14 +engourdissent engourdir VER 1.72 10.34 0.20 0.14 ind:pre:3p; +engourdit engourdir VER 1.72 10.34 0.48 0.81 ind:pre:3s;ind:pas:3s; +engoué engouer VER m s 0.00 0.47 0.00 0.14 par:pas; +engouée engouer VER f s 0.00 0.47 0.00 0.07 par:pas; +engoués engouer VER m p 0.00 0.47 0.00 0.07 par:pas; +engrainait engrainer VER 0.00 0.07 0.00 0.07 ind:imp:3s; +engrais engrais NOM m 3.35 3.31 3.35 3.31 +engraissaient engraisser VER 2.65 4.59 0.01 0.14 ind:imp:3p; +engraissait engraisser VER 2.65 4.59 0.00 0.27 ind:imp:3s; +engraissant engraisser VER 2.65 4.59 0.14 0.14 par:pre; +engraisse engraisser VER 2.65 4.59 0.41 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engraissement engraissement NOM m s 0.00 0.07 0.00 0.07 +engraissent engraisser VER 2.65 4.59 0.44 0.27 ind:pre:3p; +engraisser engraisser VER 2.65 4.59 1.12 0.88 inf; +engraisseraient engraisser VER 2.65 4.59 0.01 0.00 cnd:pre:3p; +engraisserait engraisser VER 2.65 4.59 0.01 0.07 cnd:pre:3s; +engraisserons engraisser VER 2.65 4.59 0.00 0.07 ind:fut:1p; +engraisses engraisser VER 2.65 4.59 0.14 0.07 ind:pre:2s; +engraissez engraisser VER 2.65 4.59 0.00 0.07 imp:pre:2p; +engraissèrent engraisser VER 2.65 4.59 0.00 0.14 ind:pas:3p; +engraissé engraisser VER m s 2.65 4.59 0.33 0.88 par:pas; +engraissée engraisser VER f s 2.65 4.59 0.01 0.27 par:pas; +engraissées engraisser VER f p 2.65 4.59 0.00 0.20 par:pas; +engraissés engraisser VER m p 2.65 4.59 0.03 0.07 par:pas; +engrange engranger VER 0.34 1.89 0.06 0.34 ind:pre:1s;ind:pre:3s; +engrangea engranger VER 0.34 1.89 0.00 0.07 ind:pas:3s; +engrangeais engranger VER 0.34 1.89 0.00 0.14 ind:imp:1s; +engrangeait engranger VER 0.34 1.89 0.01 0.20 ind:imp:3s; +engrangeant engranger VER 0.34 1.89 0.00 0.07 par:pre; +engrangement engrangement NOM m s 0.00 0.07 0.00 0.07 +engrangent engranger VER 0.34 1.89 0.03 0.14 ind:pre:3p; +engrangeons engranger VER 0.34 1.89 0.00 0.07 imp:pre:1p; +engranger engranger VER 0.34 1.89 0.05 0.20 inf; +engrangé engranger VER m s 0.34 1.89 0.20 0.34 par:pas; +engrangée engranger VER f s 0.34 1.89 0.00 0.07 par:pas; +engrangées engranger VER f p 0.34 1.89 0.00 0.20 par:pas; +engrangés engranger VER m p 0.34 1.89 0.00 0.07 par:pas; +engravement engravement NOM m s 0.00 0.07 0.00 0.07 +engraver engraver VER 0.00 0.07 0.00 0.07 inf; +engrenage engrenage NOM m s 0.83 4.53 0.68 3.24 +engrenages engrenage NOM m p 0.83 4.53 0.16 1.28 +engrenait engrener VER 0.20 0.41 0.10 0.07 ind:imp:3s; +engrenant engrener VER 0.20 0.41 0.00 0.07 par:pre; +engrener engrener VER 0.20 0.41 0.00 0.27 inf; +engrenez engrener VER 0.20 0.41 0.10 0.00 ind:pre:2p; +engrossait engrosser VER 1.74 1.82 0.00 0.14 ind:imp:3s; +engrossant engrosser VER 1.74 1.82 0.01 0.07 par:pre; +engrosse engrosser VER 1.74 1.82 0.04 0.14 ind:pre:1s;ind:pre:3s; +engrossent engrosser VER 1.74 1.82 0.02 0.00 ind:pre:3p; +engrosser engrosser VER 1.74 1.82 0.55 0.68 inf; +engrossera engrosser VER 1.74 1.82 0.00 0.07 ind:fut:3s; +engrosses engrosser VER 1.74 1.82 0.14 0.00 ind:pre:2s; +engrossé engrosser VER m s 1.74 1.82 0.45 0.27 par:pas; +engrossée engrosser VER f s 1.74 1.82 0.33 0.41 par:pas; +engrossées engrosser VER f p 1.74 1.82 0.20 0.07 par:pas; +engueula engueuler VER 13.94 12.97 0.00 0.20 ind:pas:3s; +engueulade engueulade NOM f s 0.97 3.51 0.46 2.09 +engueulades engueulade NOM f p 0.97 3.51 0.52 1.42 +engueulaient engueuler VER 13.94 12.97 0.17 0.41 ind:imp:3p; +engueulais engueuler VER 13.94 12.97 0.04 0.20 ind:imp:1s;ind:imp:2s; +engueulait engueuler VER 13.94 12.97 0.56 1.08 ind:imp:3s; +engueulant engueuler VER 13.94 12.97 0.03 0.20 par:pre; +engueule engueuler VER 13.94 12.97 2.96 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +engueulent engueuler VER 13.94 12.97 0.62 0.47 ind:pre:3p; +engueuler engueuler VER 13.94 12.97 4.23 5.20 inf; +engueulera engueuler VER 13.94 12.97 0.18 0.14 ind:fut:3s; +engueuleraient engueuler VER 13.94 12.97 0.01 0.00 cnd:pre:3p; +engueulerait engueuler VER 13.94 12.97 0.02 0.14 cnd:pre:3s; +engueuleras engueuler VER 13.94 12.97 0.02 0.00 ind:fut:2s; +engueulerez engueuler VER 13.94 12.97 0.02 0.00 ind:fut:2p; +engueuleront engueuler VER 13.94 12.97 0.23 0.07 ind:fut:3p; +engueules engueuler VER 13.94 12.97 0.45 0.14 ind:pre:2s; +engueulez engueuler VER 13.94 12.97 0.44 0.07 imp:pre:2p;ind:pre:2p; +engueuliez engueuler VER 13.94 12.97 0.02 0.00 ind:imp:2p; +engueulions engueuler VER 13.94 12.97 0.00 0.14 ind:imp:1p; +engueulons engueuler VER 13.94 12.97 0.01 0.14 ind:pre:1p; +engueulèrent engueuler VER 13.94 12.97 0.00 0.07 ind:pas:3p; +engueulé engueuler VER m s 13.94 12.97 1.92 1.22 par:pas; +engueulée engueuler VER f s 13.94 12.97 0.77 0.14 par:pas; +engueulés engueuler VER m p 13.94 12.97 1.23 0.81 par:pas; +enguirlandaient enguirlander VER 0.16 1.28 0.00 0.14 ind:imp:3p; +enguirlandait enguirlander VER 0.16 1.28 0.00 0.14 ind:imp:3s; +enguirlande enguirlander VER 0.16 1.28 0.02 0.14 ind:pre:1s;ind:pre:3s; +enguirlandent enguirlander VER 0.16 1.28 0.00 0.07 ind:pre:3p; +enguirlander enguirlander VER 0.16 1.28 0.11 0.27 inf; +enguirlandé enguirlander VER m s 0.16 1.28 0.02 0.20 par:pas; +enguirlandée enguirlander VER f s 0.16 1.28 0.01 0.20 par:pas; +enguirlandées enguirlander VER f p 0.16 1.28 0.00 0.07 par:pas; +enguirlandés enguirlandé ADJ m p 0.01 0.34 0.00 0.14 +enhardi enhardir VER m s 0.19 4.32 0.01 0.54 par:pas; +enhardie enhardir VER f s 0.19 4.32 0.03 0.34 par:pas; +enhardies enhardir VER f p 0.19 4.32 0.01 0.07 par:pas; +enhardir enhardir VER 0.19 4.32 0.00 0.20 inf; +enhardirent enhardir VER 0.19 4.32 0.00 0.07 ind:pas:3p; +enhardis enhardir VER m p 0.19 4.32 0.01 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +enhardissaient enhardir VER 0.19 4.32 0.00 0.27 ind:imp:3p; +enhardissait enhardir VER 0.19 4.32 0.00 0.68 ind:imp:3s; +enhardissant enhardir VER 0.19 4.32 0.00 0.20 par:pre; +enhardissement enhardissement NOM m s 0.00 0.07 0.00 0.07 +enhardissent enhardir VER 0.19 4.32 0.11 0.27 ind:pre:3p; +enhardit enhardir VER 0.19 4.32 0.02 0.95 ind:pre:3s;ind:pas:3s; +enivra enivrer VER 3.06 8.58 0.02 0.27 ind:pas:3s; +enivrai enivrer VER 3.06 8.58 0.00 0.07 ind:pas:1s; +enivraient enivrer VER 3.06 8.58 0.00 0.34 ind:imp:3p; +enivrais enivrer VER 3.06 8.58 0.14 0.14 ind:imp:1s; +enivrait enivrer VER 3.06 8.58 0.01 1.35 ind:imp:3s; +enivrant enivrant ADJ m s 1.20 3.38 0.80 1.08 +enivrante enivrant ADJ f s 1.20 3.38 0.35 1.08 +enivrantes enivrant ADJ f p 1.20 3.38 0.02 0.81 +enivrants enivrant ADJ m p 1.20 3.38 0.02 0.41 +enivre enivrer VER 3.06 8.58 0.90 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enivrement enivrement NOM m s 0.02 0.68 0.02 0.68 +enivrent enivrer VER 3.06 8.58 0.04 0.41 ind:pre:3p; +enivrer enivrer VER 3.06 8.58 0.91 0.88 inf; +enivreras enivrer VER 3.06 8.58 0.00 0.07 ind:fut:2s; +enivrerez enivrer VER 3.06 8.58 0.00 0.07 ind:fut:2p; +enivres enivrer VER 3.06 8.58 0.14 0.07 ind:pre:2s; +enivrez enivrer VER 3.06 8.58 0.14 0.00 imp:pre:2p;ind:pre:2p; +enivrons enivrer VER 3.06 8.58 0.01 0.00 imp:pre:1p; +enivrèrent enivrer VER 3.06 8.58 0.00 0.07 ind:pas:3p; +enivré enivrer VER m s 3.06 8.58 0.47 1.35 par:pas; +enivrée enivrer VER f s 3.06 8.58 0.21 0.68 par:pas; +enivrées enivrer VER f p 3.06 8.58 0.00 0.07 par:pas; +enivrés enivrer VER m p 3.06 8.58 0.02 0.54 par:pas; +enjôlait enjôler VER 1.07 0.20 0.00 0.07 ind:imp:3s; +enjôlant enjôler VER 1.07 0.20 0.00 0.07 par:pre; +enjôle enjôler VER 1.07 0.20 0.10 0.00 imp:pre:2s; +enjôlement enjôlement NOM m s 0.00 0.07 0.00 0.07 +enjôler enjôler VER 1.07 0.20 0.78 0.07 inf; +enjôleur enjôleur ADJ m s 0.19 1.76 0.17 0.95 +enjôleurs enjôleur NOM m p 0.19 0.20 0.01 0.00 +enjôleuse enjôleur NOM f s 0.19 0.20 0.02 0.07 +enjôleuses enjôleur ADJ f p 0.19 1.76 0.00 0.07 +enjôlé enjôler VER m s 1.07 0.20 0.04 0.00 par:pas; +enjôlée enjôler VER f s 1.07 0.20 0.14 0.00 par:pas; +enjamba enjamber VER 0.86 14.80 0.00 2.16 ind:pas:3s; +enjambai enjamber VER 0.86 14.80 0.00 0.27 ind:pas:1s; +enjambaient enjamber VER 0.86 14.80 0.00 0.47 ind:imp:3p; +enjambais enjamber VER 0.86 14.80 0.00 0.07 ind:imp:1s; +enjambait enjamber VER 0.86 14.80 0.02 1.55 ind:imp:3s; +enjambant enjamber VER 0.86 14.80 0.02 1.42 par:pre; +enjambe enjamber VER 0.86 14.80 0.09 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enjambements enjambement NOM m p 0.00 0.07 0.00 0.07 +enjambent enjamber VER 0.86 14.80 0.01 0.61 ind:pre:3p; +enjamber enjamber VER 0.86 14.80 0.42 2.84 inf; +enjamberais enjamber VER 0.86 14.80 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +enjamberait enjamber VER 0.86 14.80 0.00 0.07 cnd:pre:3s; +enjambes enjamber VER 0.86 14.80 0.01 0.07 ind:pre:2s; +enjambeur enjambeur NOM m s 0.00 0.34 0.00 0.20 +enjambeurs enjambeur NOM m p 0.00 0.34 0.00 0.14 +enjambez enjamber VER 0.86 14.80 0.05 0.00 imp:pre:2p; +enjambions enjamber VER 0.86 14.80 0.00 0.07 ind:imp:1p; +enjambons enjamber VER 0.86 14.80 0.01 0.47 imp:pre:1p;ind:pre:1p; +enjambèrent enjamber VER 0.86 14.80 0.00 0.34 ind:pas:3p; +enjambé enjamber VER m s 0.86 14.80 0.07 1.08 par:pas; +enjambée enjambée NOM f s 0.15 6.76 0.06 0.81 +enjambées enjambée NOM f p 0.15 6.76 0.09 5.95 +enjambés enjamber VER m p 0.86 14.80 0.00 0.07 par:pas; +enjeu enjeu NOM m s 4.67 4.59 3.52 3.99 +enjeux enjeu NOM m p 4.67 4.59 1.16 0.61 +enjoignaient enjoindre VER 0.36 3.38 0.00 0.07 ind:imp:3p; +enjoignait enjoindre VER 0.36 3.38 0.00 0.34 ind:imp:3s; +enjoignant enjoindre VER 0.36 3.38 0.01 0.41 par:pre; +enjoignis enjoindre VER 0.36 3.38 0.00 0.20 ind:pas:1s; +enjoignit enjoindre VER 0.36 3.38 0.10 0.95 ind:pas:3s; +enjoignons enjoindre VER 0.36 3.38 0.00 0.07 ind:pre:1p; +enjoindre enjoindre VER 0.36 3.38 0.07 0.34 inf; +enjoint enjoindre VER m s 0.36 3.38 0.18 1.01 ind:pre:3s;par:pas; +enjolivaient enjoliver VER 0.34 1.82 0.00 0.07 ind:imp:3p; +enjolivait enjoliver VER 0.34 1.82 0.03 0.20 ind:imp:3s; +enjolivant enjoliver VER 0.34 1.82 0.00 0.47 par:pre; +enjolive enjoliver VER 0.34 1.82 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enjolivements enjolivement NOM m p 0.00 0.07 0.00 0.07 +enjoliver enjoliver VER 0.34 1.82 0.08 0.47 inf; +enjoliveur enjoliveur NOM m s 0.59 0.20 0.33 0.14 +enjoliveurs enjoliveur NOM m p 0.59 0.20 0.26 0.07 +enjolivé enjoliver VER m s 0.34 1.82 0.07 0.07 par:pas; +enjolivée enjoliver VER f s 0.34 1.82 0.00 0.14 par:pas; +enjolivés enjoliver VER m p 0.34 1.82 0.00 0.14 par:pas; +enjouement enjouement NOM m s 0.14 1.35 0.14 1.35 +enjoué enjoué ADJ m s 1.33 4.39 0.25 1.55 +enjouée enjoué ADJ f s 1.33 4.39 1.03 2.43 +enjouées enjoué ADJ f p 1.33 4.39 0.01 0.27 +enjoués enjouer VER m p 0.32 0.81 0.14 0.00 par:pas; +enjuiver enjuiver VER 0.01 0.00 0.01 0.00 inf; +enjuivés enjuivé ADJ m p 0.00 0.07 0.00 0.07 +enjuponne enjuponner VER 0.00 0.14 0.00 0.07 ind:pre:3s; +enjuponnée enjuponner VER f s 0.00 0.14 0.00 0.07 par:pas; +enkyster enkyster VER 0.01 0.00 0.01 0.00 inf; +enkystées enkysté ADJ f p 0.00 0.07 0.00 0.07 +enlace enlacer VER 4.42 15.88 0.89 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enlacement enlacement NOM m s 0.03 0.81 0.03 0.41 +enlacements enlacement NOM m p 0.03 0.81 0.00 0.41 +enlacent enlacer VER 4.42 15.88 0.17 0.61 ind:pre:3p; +enlacer enlacer VER 4.42 15.88 0.97 0.81 inf; +enlacerai enlacer VER 4.42 15.88 0.05 0.00 ind:fut:1s; +enlacerons enlacer VER 4.42 15.88 0.00 0.07 ind:fut:1p; +enlacez enlacer VER 4.42 15.88 0.13 0.00 imp:pre:2p;ind:pre:2p; +enlacions enlacer VER 4.42 15.88 0.00 0.07 ind:imp:1p; +enlacèrent enlacer VER 4.42 15.88 0.10 0.14 ind:pas:3p; +enlacé enlacer VER m s 4.42 15.88 0.31 1.42 par:pas; +enlacée enlacer VER f s 4.42 15.88 0.25 0.74 par:pas; +enlacées enlacer VER f p 4.42 15.88 0.07 1.28 par:pas; +enlacés enlacer VER m p 4.42 15.88 0.89 4.39 par:pas; +enlaidi enlaidir VER m s 0.76 2.30 0.29 0.34 par:pas; +enlaidie enlaidir VER f s 0.76 2.30 0.02 0.27 par:pas; +enlaidir enlaidir VER 0.76 2.30 0.11 0.47 inf; +enlaidis enlaidir VER 0.76 2.30 0.14 0.14 imp:pre:2s;ind:pre:1s; +enlaidissait enlaidir VER 0.76 2.30 0.02 0.47 ind:imp:3s; +enlaidissant enlaidir VER 0.76 2.30 0.00 0.07 par:pre; +enlaidisse enlaidir VER 0.76 2.30 0.01 0.07 sub:pre:3s; +enlaidissement enlaidissement NOM m s 0.01 0.27 0.01 0.27 +enlaidissent enlaidir VER 0.76 2.30 0.02 0.20 ind:pre:3p; +enlaidisses enlaidir VER 0.76 2.30 0.14 0.00 sub:pre:2s; +enlaidit enlaidir VER 0.76 2.30 0.02 0.27 ind:pre:3s;ind:pas:3s; +enlaça enlacer VER 4.42 15.88 0.13 1.28 ind:pas:3s; +enlaçaient enlacer VER 4.42 15.88 0.10 0.61 ind:imp:3p; +enlaçais enlacer VER 4.42 15.88 0.05 0.07 ind:imp:1s;ind:imp:2s; +enlaçait enlacer VER 4.42 15.88 0.16 1.28 ind:imp:3s; +enlaçant enlacer VER 4.42 15.88 0.14 0.88 par:pre; +enlaçons enlacer VER 4.42 15.88 0.03 0.07 ind:pre:1p; +enleva enlever VER 172.45 78.78 0.22 7.03 ind:pas:3s; +enlevai enlever VER 172.45 78.78 0.03 0.47 ind:pas:1s; +enlevaient enlever VER 172.45 78.78 0.19 1.15 ind:imp:3p; +enlevais enlever VER 172.45 78.78 0.55 0.88 ind:imp:1s;ind:imp:2s; +enlevait enlever VER 172.45 78.78 1.33 5.74 ind:imp:3s; +enlevant enlever VER 172.45 78.78 1.13 3.04 par:pre; +enlever enlever VER 172.45 78.78 46.73 22.36 inf; +enlevez enlever VER 172.45 78.78 20.44 2.23 imp:pre:2p;ind:pre:2p; +enleviez enlever VER 172.45 78.78 0.41 0.14 ind:imp:2p; +enlevions enlever VER 172.45 78.78 0.17 0.07 ind:imp:1p; +enlevons enlever VER 172.45 78.78 1.24 0.00 imp:pre:1p;ind:pre:1p; +enlevât enlever VER 172.45 78.78 0.00 0.41 sub:imp:3s; +enlevèrent enlever VER 172.45 78.78 0.04 0.14 ind:pas:3p; +enlevé enlever VER m s 172.45 78.78 20.88 10.95 par:pas; +enlevée enlever VER f s 172.45 78.78 9.68 4.12 par:pas; +enlevées enlever VER f p 172.45 78.78 1.27 0.68 par:pas; +enlevés enlever VER m p 172.45 78.78 2.35 1.35 par:pas; +enliasser enliasser VER 0.00 0.07 0.00 0.07 inf; +enlisa enliser VER 0.93 5.88 0.00 0.14 ind:pas:3s; +enlisaient enliser VER 0.93 5.88 0.00 0.34 ind:imp:3p; +enlisais enliser VER 0.93 5.88 0.00 0.20 ind:imp:1s; +enlisait enliser VER 0.93 5.88 0.01 1.35 ind:imp:3s; +enlisant enliser VER 0.93 5.88 0.00 0.20 par:pre; +enlise enliser VER 0.93 5.88 0.28 0.68 ind:pre:1s;ind:pre:3s; +enlisement enlisement NOM m s 0.00 0.74 0.00 0.74 +enlisent enliser VER 0.93 5.88 0.03 0.20 ind:pre:3p; +enliser enliser VER 0.93 5.88 0.21 0.74 inf; +enlisera enliser VER 0.93 5.88 0.00 0.07 ind:fut:3s; +enliserais enliser VER 0.93 5.88 0.01 0.00 cnd:pre:2s; +enlisé enliser VER m s 0.93 5.88 0.23 0.81 par:pas; +enlisée enliser VER f s 0.93 5.88 0.01 0.54 par:pas; +enlisées enliser VER f p 0.93 5.88 0.01 0.14 par:pas; +enlisés enliser VER m p 0.93 5.88 0.14 0.47 par:pas; +enlève enlever VER 172.45 78.78 55.59 13.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enlèvement enlèvement NOM m s 9.51 3.85 7.80 3.58 +enlèvements enlèvement NOM m p 9.51 3.85 1.71 0.27 +enlèvent enlever VER 172.45 78.78 1.96 1.55 ind:pre:3p; +enlèvera enlever VER 172.45 78.78 1.62 1.01 ind:fut:3s; +enlèverai enlever VER 172.45 78.78 1.19 0.27 ind:fut:1s; +enlèveraient enlever VER 172.45 78.78 0.04 0.14 cnd:pre:3p; +enlèverais enlever VER 172.45 78.78 0.36 0.14 cnd:pre:1s;cnd:pre:2s; +enlèverait enlever VER 172.45 78.78 0.40 0.47 cnd:pre:3s; +enlèveras enlever VER 172.45 78.78 0.28 0.00 ind:fut:2s; +enlèverez enlever VER 172.45 78.78 0.46 0.07 ind:fut:2p; +enlèveriez enlever VER 172.45 78.78 0.04 0.00 cnd:pre:2p; +enlèverons enlever VER 172.45 78.78 0.05 0.07 ind:fut:1p; +enlèveront enlever VER 172.45 78.78 0.15 0.07 ind:fut:3p; +enlèves enlever VER 172.45 78.78 3.66 0.61 ind:pre:2s;sub:pre:2s; +enlumine enluminer VER 0.03 1.15 0.00 0.07 ind:pre:3s; +enluminent enluminer VER 0.03 1.15 0.00 0.07 ind:pre:3p; +enluminer enluminer VER 0.03 1.15 0.00 0.07 inf; +enlumineur enlumineur NOM m s 0.40 0.20 0.27 0.20 +enlumineurs enlumineur NOM m p 0.40 0.20 0.14 0.00 +enluminé enluminer VER m s 0.03 1.15 0.02 0.34 par:pas; +enluminée enluminé ADJ f s 0.03 0.47 0.01 0.07 +enluminées enluminer VER f p 0.03 1.15 0.01 0.20 par:pas; +enluminure enluminure NOM f s 0.11 1.08 0.00 0.27 +enluminures enluminure NOM f p 0.11 1.08 0.11 0.81 +enluminés enluminé ADJ m p 0.03 0.47 0.00 0.14 +enneige enneiger VER 0.51 1.28 0.00 0.07 ind:pre:3s; +enneigeait enneiger VER 0.51 1.28 0.01 0.07 ind:imp:3s; +enneigement enneigement NOM m s 0.10 0.00 0.10 0.00 +enneiger enneiger VER 0.51 1.28 0.01 0.00 inf; +enneigé enneigé ADJ m s 0.58 2.50 0.20 0.54 +enneigée enneigé ADJ f s 0.58 2.50 0.10 0.88 +enneigées enneigé ADJ f p 0.58 2.50 0.05 0.68 +enneigés enneigé ADJ m p 0.58 2.50 0.24 0.41 +ennemi ennemi NOM m s 92.37 111.96 59.98 79.19 +ennemie ennemi NOM f s 92.37 111.96 2.56 3.04 +ennemies ennemi ADJ f p 14.56 19.05 2.19 4.53 +ennemis ennemi NOM m p 92.37 111.96 29.22 29.19 +ennobli ennoblir VER m s 0.15 1.22 0.01 0.20 par:pas; +ennoblie ennoblir VER f s 0.15 1.22 0.00 0.07 par:pas; +ennoblir ennoblir VER 0.15 1.22 0.01 0.34 inf; +ennoblis ennoblir VER m p 0.15 1.22 0.10 0.27 ind:pre:2s;par:pas; +ennoblissement ennoblissement NOM m s 0.00 0.07 0.00 0.07 +ennoblit ennoblir VER 0.15 1.22 0.03 0.34 ind:pre:3s;ind:pas:3s; +ennuagent ennuager VER 0.03 0.20 0.01 0.00 ind:pre:3p; +ennuager ennuager VER 0.03 0.20 0.00 0.14 inf; +ennuagé ennuager VER m s 0.03 0.20 0.02 0.07 par:pas; +ennui ennui NOM m s 76.64 56.62 14.76 38.24 +ennuie ennuyer VER 62.48 59.12 34.04 20.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +ennuient ennuyer VER 62.48 59.12 2.97 2.97 ind:pre:3p; +ennuiera ennuyer VER 62.48 59.12 0.66 0.07 ind:fut:3s; +ennuierai ennuyer VER 62.48 59.12 0.65 0.34 ind:fut:1s; +ennuieraient ennuyer VER 62.48 59.12 0.03 0.00 cnd:pre:3p; +ennuierais ennuyer VER 62.48 59.12 0.47 0.34 cnd:pre:1s;cnd:pre:2s; +ennuierait ennuyer VER 62.48 59.12 2.86 1.76 cnd:pre:3s; +ennuieras ennuyer VER 62.48 59.12 0.52 0.07 ind:fut:2s; +ennuierez ennuyer VER 62.48 59.12 0.06 0.00 ind:fut:2p; +ennuieriez ennuyer VER 62.48 59.12 0.04 0.00 cnd:pre:2p; +ennuierions ennuyer VER 62.48 59.12 0.00 0.07 cnd:pre:1p; +ennuierons ennuyer VER 62.48 59.12 0.14 0.00 ind:fut:1p; +ennuieront ennuyer VER 62.48 59.12 0.11 0.00 ind:fut:3p; +ennuies ennuyer VER 62.48 59.12 3.94 1.35 ind:pre:2s;sub:pre:2s; +ennuis ennui NOM m p 76.64 56.62 61.89 18.38 +ennuya ennuyer VER 62.48 59.12 0.00 0.68 ind:pas:3s; +ennuyai ennuyer VER 62.48 59.12 0.00 0.14 ind:pas:1s; +ennuyaient ennuyer VER 62.48 59.12 0.38 2.43 ind:imp:3p; +ennuyais ennuyer VER 62.48 59.12 2.07 3.04 ind:imp:1s;ind:imp:2s; +ennuyait ennuyer VER 62.48 59.12 1.42 9.46 ind:imp:3s; +ennuyant ennuyant ADJ m s 0.94 0.07 0.79 0.07 +ennuyante ennuyant ADJ f s 0.94 0.07 0.15 0.00 +ennuyer ennuyer VER 62.48 59.12 7.00 9.12 inf; +ennuyeuse ennuyeux ADJ f s 19.47 13.31 3.02 2.77 +ennuyeuses ennuyeux ADJ f p 19.47 13.31 0.83 1.08 +ennuyeux ennuyeux ADJ m 19.47 13.31 15.62 9.46 +ennuyez ennuyer VER 62.48 59.12 1.55 1.22 imp:pre:2p;ind:pre:2p; +ennuyiez ennuyer VER 62.48 59.12 0.20 0.20 ind:imp:2p; +ennuyions ennuyer VER 62.48 59.12 0.01 0.20 ind:imp:1p; +ennuyons ennuyer VER 62.48 59.12 0.24 0.20 imp:pre:1p;ind:pre:1p; +ennuyât ennuyer VER 62.48 59.12 0.00 0.34 sub:imp:3s; +ennuyèrent ennuyer VER 62.48 59.12 0.00 0.41 ind:pas:3p; +ennuyé ennuyer VER m s 62.48 59.12 1.26 2.23 par:pas; +ennuyée ennuyer VER f s 62.48 59.12 1.54 1.35 par:pas; +ennuyées ennuyer VER f p 62.48 59.12 0.01 0.00 par:pas; +ennuyés ennuyer VER m p 62.48 59.12 0.14 0.14 par:pas; +enorgueillît enorgueillir VER 0.32 2.09 0.00 0.07 sub:imp:3s; +enorgueilli enorgueillir VER m s 0.32 2.09 0.01 0.00 par:pas; +enorgueillir enorgueillir VER 0.32 2.09 0.12 0.61 inf; +enorgueillirent enorgueillir VER 0.32 2.09 0.00 0.07 ind:pas:3p; +enorgueillis enorgueillir VER 0.32 2.09 0.01 0.00 ind:pre:1s; +enorgueillissais enorgueillir VER 0.32 2.09 0.00 0.27 ind:imp:1s; +enorgueillissait enorgueillir VER 0.32 2.09 0.01 0.20 ind:imp:3s; +enorgueillissant enorgueillir VER 0.32 2.09 0.00 0.07 par:pre; +enorgueillisse enorgueillir VER 0.32 2.09 0.00 0.07 sub:pre:1s; +enorgueillissent enorgueillir VER 0.32 2.09 0.14 0.20 ind:pre:3p; +enorgueillit enorgueillir VER 0.32 2.09 0.03 0.54 ind:pre:3s;ind:pas:3s; +enquerraient enquérir VER 1.01 8.85 0.00 0.07 cnd:pre:3p; +enquiers enquérir VER 1.01 8.85 0.02 0.14 imp:pre:2s;ind:pre:1s; +enquiert enquérir VER 1.01 8.85 0.05 1.35 ind:pre:3s; +enquillais enquiller VER 0.00 2.84 0.00 0.07 ind:imp:1s; +enquillait enquiller VER 0.00 2.84 0.00 0.07 ind:imp:3s; +enquillant enquiller VER 0.00 2.84 0.00 0.20 par:pre; +enquille enquiller VER 0.00 2.84 0.00 1.01 ind:pre:1s;ind:pre:3s; +enquillent enquiller VER 0.00 2.84 0.00 0.14 ind:pre:3p; +enquiller enquiller VER 0.00 2.84 0.00 0.74 inf; +enquillons enquiller VER 0.00 2.84 0.00 0.07 ind:pre:1p; +enquillé enquiller VER m s 0.00 2.84 0.00 0.47 par:pas; +enquillés enquiller VER m p 0.00 2.84 0.00 0.07 par:pas; +enquiquinaient enquiquiner VER 0.64 1.15 0.00 0.07 ind:imp:3p; +enquiquinait enquiquiner VER 0.64 1.15 0.02 0.07 ind:imp:3s; +enquiquinant enquiquinant ADJ m s 0.38 0.07 0.01 0.07 +enquiquinante enquiquinant ADJ f s 0.38 0.07 0.21 0.00 +enquiquinants enquiquinant ADJ m p 0.38 0.07 0.16 0.00 +enquiquine enquiquiner VER 0.64 1.15 0.20 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enquiquinement enquiquinement NOM m s 0.01 0.00 0.01 0.00 +enquiquinent enquiquiner VER 0.64 1.15 0.02 0.14 ind:pre:3p; +enquiquiner enquiquiner VER 0.64 1.15 0.12 0.41 inf; +enquiquineraient enquiquiner VER 0.64 1.15 0.01 0.00 cnd:pre:3p; +enquiquines enquiquiner VER 0.64 1.15 0.23 0.00 ind:pre:2s; +enquiquineur enquiquineur NOM m s 0.33 0.20 0.17 0.14 +enquiquineurs enquiquineur NOM m p 0.33 0.20 0.07 0.00 +enquiquineuse enquiquineur NOM f s 0.33 0.20 0.08 0.07 +enquiquiné enquiquiner VER m s 0.64 1.15 0.03 0.14 par:pas; +enquis enquérir VER m 1.01 8.85 0.06 0.88 ind:pas:1s;par:pas;par:pas; +enquise enquérir VER f s 1.01 8.85 0.01 0.20 par:pas; +enquit enquérir VER 1.01 8.85 0.10 3.45 ind:pas:3s; +enquière enquérir VER 1.01 8.85 0.01 0.07 sub:pre:1s;sub:pre:3s; +enquièrent enquérir VER 1.01 8.85 0.00 0.07 ind:pre:3p; +enquéraient enquérir VER 1.01 8.85 0.00 0.41 ind:imp:3p; +enquérais enquérir VER 1.01 8.85 0.02 0.14 ind:imp:1s; +enquérait enquérir VER 1.01 8.85 0.00 0.34 ind:imp:3s; +enquérant enquérir VER 1.01 8.85 0.00 0.41 par:pre; +enquérez enquérir VER 1.01 8.85 0.01 0.00 ind:pre:2p; +enquérir enquérir VER 1.01 8.85 0.73 1.35 inf; +enquêta enquêter VER 19.65 2.91 0.01 0.07 ind:pas:3s; +enquêtais enquêter VER 19.65 2.91 0.45 0.07 ind:imp:1s;ind:imp:2s; +enquêtait enquêter VER 19.65 2.91 0.85 0.61 ind:imp:3s; +enquêtant enquêter VER 19.65 2.91 0.28 0.07 par:pre; +enquête enquête NOM f s 57.98 21.28 53.89 18.45 +enquêtent enquêter VER 19.65 2.91 0.50 0.27 ind:pre:3p; +enquêter enquêter VER 19.65 2.91 7.29 1.35 inf; +enquêtes_minut enquêtes_minut NOM f p 0.00 0.07 0.00 0.07 +enquêtes enquête NOM f p 57.98 21.28 4.08 2.84 +enquêteur enquêteur NOM m s 4.06 3.18 1.83 1.28 +enquêteurs enquêteur NOM m p 4.06 3.18 2.15 1.82 +enquêteuse enquêteur NOM f s 4.06 3.18 0.07 0.00 +enquêtez enquêter VER 19.65 2.91 0.99 0.07 imp:pre:2p;ind:pre:2p; +enquêtrices enquêteur NOM f p 4.06 3.18 0.00 0.07 +enquêté enquêter VER m s 19.65 2.91 2.13 0.14 par:pas; +enrôla enrôler VER 3.03 2.77 0.00 0.07 ind:pas:3s; +enrôlaient enrôler VER 3.03 2.77 0.04 0.07 ind:imp:3p; +enrôlais enrôler VER 3.03 2.77 0.01 0.07 ind:imp:1s; +enrôlait enrôler VER 3.03 2.77 0.01 0.14 ind:imp:3s; +enrôlant enrôler VER 3.03 2.77 0.05 0.00 par:pre; +enrôle enrôler VER 3.03 2.77 0.17 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enrôlement enrôlement NOM m s 0.25 0.34 0.25 0.14 +enrôlements enrôlement NOM m p 0.25 0.34 0.00 0.20 +enrôler enrôler VER 3.03 2.77 0.82 0.95 inf; +enrôlerait enrôler VER 3.03 2.77 0.01 0.14 cnd:pre:3s; +enrôleriez enrôler VER 3.03 2.77 0.01 0.00 cnd:pre:2p; +enrôlez enrôler VER 3.03 2.77 0.74 0.00 imp:pre:2p;ind:pre:2p; +enrôlons enrôler VER 3.03 2.77 0.03 0.00 imp:pre:1p;ind:pre:1p; +enrôlé enrôler VER m s 3.03 2.77 0.94 0.74 par:pas; +enrôlée enrôler VER f s 3.03 2.77 0.02 0.20 par:pas; +enrôlées enrôler VER f p 3.03 2.77 0.00 0.07 par:pas; +enrôlés enrôler VER m p 3.03 2.77 0.17 0.20 par:pas; +enracinais enraciner VER 0.65 3.65 0.00 0.07 ind:imp:1s; +enracinait enraciner VER 0.65 3.65 0.00 0.54 ind:imp:3s; +enracinant enraciner VER 0.65 3.65 0.00 0.07 par:pre; +enracine enraciner VER 0.65 3.65 0.03 0.14 ind:pre:3s; +enracinement enracinement NOM m s 0.01 0.47 0.01 0.41 +enracinements enracinement NOM m p 0.01 0.47 0.00 0.07 +enracinent enraciner VER 0.65 3.65 0.14 0.27 ind:pre:3p; +enraciner enraciner VER 0.65 3.65 0.25 0.34 inf; +enracinerait enraciner VER 0.65 3.65 0.10 0.07 cnd:pre:3s; +enracineras enraciner VER 0.65 3.65 0.00 0.07 ind:fut:2s; +enracinerez enraciner VER 0.65 3.65 0.01 0.00 ind:fut:2p; +enraciné enraciner VER m s 0.65 3.65 0.05 1.15 par:pas; +enracinée enraciné ADJ f s 0.12 0.88 0.04 0.27 +enracinées enraciné ADJ f p 0.12 0.88 0.01 0.14 +enracinés enraciné ADJ m p 0.12 0.88 0.04 0.34 +enrage enrager VER 6.13 7.57 1.46 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enragea enrager VER 6.13 7.57 0.00 0.20 ind:pas:3s; +enrageai enrager VER 6.13 7.57 0.00 0.07 ind:pas:1s; +enrageais enrager VER 6.13 7.57 0.27 0.47 ind:imp:1s; +enrageait enrager VER 6.13 7.57 0.15 1.35 ind:imp:3s; +enrageant enrager VER 6.13 7.57 0.00 0.07 par:pre; +enrageante enrageant ADJ f s 0.01 0.00 0.01 0.00 +enragement enragement NOM m s 0.00 0.14 0.00 0.14 +enragent enrager VER 6.13 7.57 0.01 0.20 ind:pre:3p; +enrager enrager VER 6.13 7.57 2.20 1.49 inf; +enragerais enrager VER 6.13 7.57 0.00 0.14 cnd:pre:1s; +enragé enragé ADJ m s 3.36 4.26 2.18 1.69 +enragée enragé ADJ f s 3.36 4.26 0.75 1.28 +enragées enrager VER f p 6.13 7.57 0.12 0.00 par:pas; +enragés enragé NOM m p 0.79 1.69 0.39 0.74 +enraie enrayer VER 1.73 1.96 0.01 0.00 ind:pre:3s; +enraillée enrailler VER f s 0.02 0.00 0.02 0.00 par:pas; +enraya enrayer VER 1.73 1.96 0.00 0.20 ind:pas:3s; +enrayage enrayage NOM m s 0.02 0.00 0.02 0.00 +enrayait enrayer VER 1.73 1.96 0.00 0.14 ind:imp:3s; +enrayant enrayer VER 1.73 1.96 0.00 0.14 par:pre; +enraye enrayer VER 1.73 1.96 0.27 0.20 ind:pre:3s; +enrayement enrayement NOM m s 0.02 0.00 0.02 0.00 +enrayent enrayer VER 1.73 1.96 0.03 0.07 ind:pre:3p; +enrayer enrayer VER 1.73 1.96 0.92 0.74 inf; +enrayera enrayer VER 1.73 1.96 0.04 0.00 ind:fut:3s; +enrayé enrayer VER m s 1.73 1.96 0.32 0.20 par:pas; +enrayée enrayer VER f s 1.73 1.96 0.14 0.27 par:pas; +enregistra enregistrer VER 33.07 14.73 0.09 0.54 ind:pas:3s; +enregistrable enregistrable ADJ f s 0.01 0.07 0.01 0.07 +enregistrai enregistrer VER 33.07 14.73 0.00 0.27 ind:pas:1s; +enregistraient enregistrer VER 33.07 14.73 0.11 0.34 ind:imp:3p; +enregistrais enregistrer VER 33.07 14.73 0.49 0.20 ind:imp:1s;ind:imp:2s; +enregistrait enregistrer VER 33.07 14.73 0.63 1.35 ind:imp:3s; +enregistrant enregistrer VER 33.07 14.73 0.20 0.41 par:pre; +enregistre enregistrer VER 33.07 14.73 5.96 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enregistrement enregistrement NOM m s 14.79 3.11 11.21 2.36 +enregistrements enregistrement NOM m p 14.79 3.11 3.58 0.74 +enregistrent enregistrer VER 33.07 14.73 0.47 0.14 ind:pre:3p; +enregistrer enregistrer VER 33.07 14.73 7.58 3.65 inf; +enregistrera enregistrer VER 33.07 14.73 0.28 0.00 ind:fut:3s; +enregistrerai enregistrer VER 33.07 14.73 0.32 0.00 ind:fut:1s; +enregistrerait enregistrer VER 33.07 14.73 0.01 0.00 cnd:pre:3s; +enregistreras enregistrer VER 33.07 14.73 0.01 0.00 ind:fut:2s; +enregistrerez enregistrer VER 33.07 14.73 0.02 0.00 ind:fut:2p; +enregistrerons enregistrer VER 33.07 14.73 0.01 0.00 ind:fut:1p; +enregistreront enregistrer VER 33.07 14.73 0.01 0.07 ind:fut:3p; +enregistres enregistrer VER 33.07 14.73 0.83 0.07 ind:pre:2s; +enregistreur enregistreur NOM m s 1.00 0.20 0.88 0.14 +enregistreurs enregistreur NOM m p 1.00 0.20 0.11 0.00 +enregistreuse enregistreur ADJ f s 0.66 1.01 0.24 0.74 +enregistreuses enregistreur ADJ f p 0.66 1.01 0.20 0.07 +enregistrez enregistrer VER 33.07 14.73 1.12 0.00 imp:pre:2p;ind:pre:2p; +enregistriez enregistrer VER 33.07 14.73 0.00 0.07 ind:imp:2p; +enregistrions enregistrer VER 33.07 14.73 0.02 0.07 ind:imp:1p; +enregistrons enregistrer VER 33.07 14.73 0.25 0.14 imp:pre:1p;ind:pre:1p; +enregistré enregistrer VER m s 33.07 14.73 9.58 3.18 par:pas; +enregistrée enregistrer VER f s 33.07 14.73 2.73 0.88 par:pas; +enregistrées enregistrer VER f p 33.07 14.73 0.81 0.41 par:pas; +enregistrés enregistrer VER m p 33.07 14.73 1.54 0.95 par:pas; +enrhumait enrhumer VER 2.60 1.96 0.00 0.14 ind:imp:3s; +enrhume enrhumer VER 2.60 1.96 0.39 0.47 ind:pre:1s;ind:pre:3s; +enrhument enrhumer VER 2.60 1.96 0.11 0.07 ind:pre:3p; +enrhumer enrhumer VER 2.60 1.96 0.89 0.41 inf; +enrhumes enrhumer VER 2.60 1.96 0.00 0.07 ind:pre:2s; +enrhumez enrhumer VER 2.60 1.96 0.01 0.00 imp:pre:2p; +enrhumé enrhumer VER m s 2.60 1.96 0.97 0.41 par:pas; +enrhumée enrhumer VER f s 2.60 1.96 0.22 0.34 par:pas; +enrhumées enrhumé ADJ f p 0.49 1.22 0.00 0.07 +enrhumés enrhumé ADJ m p 0.49 1.22 0.11 0.27 +enrichi enrichir VER m s 7.73 11.76 1.44 2.03 par:pas; +enrichie enrichir VER f s 7.73 11.76 0.13 0.81 par:pas; +enrichies enrichir VER f p 7.73 11.76 0.17 0.14 par:pas; +enrichir enrichir VER 7.73 11.76 3.00 4.19 inf; +enrichira enrichir VER 7.73 11.76 0.10 0.00 ind:fut:3s; +enrichirais enrichir VER 7.73 11.76 0.01 0.07 cnd:pre:1s; +enrichirait enrichir VER 7.73 11.76 0.34 0.00 cnd:pre:3s; +enrichiront enrichir VER 7.73 11.76 0.04 0.14 ind:fut:3p; +enrichis enrichir VER m p 7.73 11.76 0.48 0.54 ind:pre:1s;ind:pre:2s;par:pas; +enrichissaient enrichir VER 7.73 11.76 0.01 0.34 ind:imp:3p; +enrichissais enrichir VER 7.73 11.76 0.00 0.07 ind:imp:1s; +enrichissait enrichir VER 7.73 11.76 0.05 1.15 ind:imp:3s; +enrichissant enrichissant ADJ m s 0.69 0.95 0.20 0.14 +enrichissante enrichissant ADJ f s 0.69 0.95 0.23 0.34 +enrichissantes enrichissant ADJ f p 0.69 0.95 0.25 0.27 +enrichissants enrichissant ADJ m p 0.69 0.95 0.01 0.20 +enrichisse enrichir VER 7.73 11.76 0.28 0.14 sub:pre:1s;sub:pre:3s; +enrichissement enrichissement NOM m s 0.20 1.28 0.20 0.74 +enrichissements enrichissement NOM m p 0.20 1.28 0.00 0.54 +enrichissent enrichir VER 7.73 11.76 0.49 0.54 ind:pre:3p; +enrichissez enrichir VER 7.73 11.76 0.03 0.07 imp:pre:2p;ind:pre:2p; +enrichit enrichir VER 7.73 11.76 1.08 1.35 ind:pre:3s;ind:pas:3s; +enrobage enrobage NOM m s 0.05 0.07 0.05 0.07 +enrobaient enrober VER 0.68 2.36 0.00 0.07 ind:imp:3p; +enrobait enrober VER 0.68 2.36 0.00 0.61 ind:imp:3s; +enrobant enrober VER 0.68 2.36 0.00 0.07 par:pre; +enrobe enrober VER 0.68 2.36 0.03 0.54 ind:pre:1s;ind:pre:3s; +enrober enrober VER 0.68 2.36 0.15 0.07 inf; +enrobèrent enrober VER 0.68 2.36 0.00 0.07 ind:pas:3p; +enrobé enrobé ADJ m s 1.02 1.01 0.88 0.47 +enrobée enrober VER f s 0.68 2.36 0.09 0.27 par:pas; +enrobées enrobé ADJ f p 1.02 1.01 0.11 0.00 +enrobés enrober VER m p 0.68 2.36 0.17 0.34 par:pas; +enrochements enrochement NOM m p 0.00 0.27 0.00 0.27 +enroua enrouer VER 0.12 2.16 0.00 0.14 ind:pas:3s; +enrouaient enrouer VER 0.12 2.16 0.00 0.14 ind:imp:3p; +enrouait enrouer VER 0.12 2.16 0.00 0.20 ind:imp:3s; +enroue enrouer VER 0.12 2.16 0.00 0.34 ind:pre:3s; +enrouement enrouement NOM m s 0.00 0.41 0.00 0.34 +enrouements enrouement NOM m p 0.00 0.41 0.00 0.07 +enrouer enrouer VER 0.12 2.16 0.00 0.07 inf; +enroula enrouler VER 3.75 16.89 0.00 1.01 ind:pas:3s; +enroulage enroulage NOM m s 0.00 0.07 0.00 0.07 +enroulai enrouler VER 3.75 16.89 0.01 0.14 ind:pas:1s; +enroulaient enrouler VER 3.75 16.89 0.11 0.81 ind:imp:3p; +enroulais enrouler VER 3.75 16.89 0.02 0.14 ind:imp:1s; +enroulait enrouler VER 3.75 16.89 0.01 3.31 ind:imp:3s; +enroulant enrouler VER 3.75 16.89 0.03 1.42 par:pre; +enroule enrouler VER 3.75 16.89 1.11 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +enroulement enroulement NOM m s 0.01 0.61 0.01 0.27 +enroulements enroulement NOM m p 0.01 0.61 0.00 0.34 +enroulent enrouler VER 3.75 16.89 0.19 0.41 ind:pre:3p; +enrouler enrouler VER 3.75 16.89 0.36 1.35 inf; +enroulera enrouler VER 3.75 16.89 0.00 0.07 ind:fut:3s; +enroulerais enrouler VER 3.75 16.89 0.10 0.07 cnd:pre:1s; +enroulez enrouler VER 3.75 16.89 0.24 0.00 imp:pre:2p;ind:pre:2p; +enroulèrent enrouler VER 3.75 16.89 0.01 0.41 ind:pas:3p; +enroulé enrouler VER m s 3.75 16.89 0.52 2.50 par:pas; +enroulée enrouler VER f s 3.75 16.89 0.80 1.69 par:pas; +enroulées enrouler VER f p 3.75 16.89 0.05 0.54 par:pas; +enroulés enrouler VER m p 3.75 16.89 0.19 1.08 par:pas; +enroué enroué ADJ m s 0.18 3.31 0.05 0.61 +enrouée enroué ADJ f s 0.18 3.31 0.13 2.50 +enrouées enroué ADJ f p 0.18 3.31 0.00 0.14 +enroués enrouer VER m p 0.12 2.16 0.10 0.14 par:pas; +enrubannaient enrubanner VER 0.13 1.15 0.00 0.14 ind:imp:3p; +enrubannait enrubanner VER 0.13 1.15 0.00 0.14 ind:imp:3s; +enrubanner enrubanner VER 0.13 1.15 0.11 0.00 inf; +enrubanné enrubanner VER m s 0.13 1.15 0.01 0.27 par:pas; +enrubannée enrubanné ADJ f s 0.03 0.88 0.03 0.14 +enrubannées enrubanner VER f p 0.13 1.15 0.00 0.14 par:pas; +enrubannés enrubanné ADJ m p 0.03 0.88 0.00 0.34 +enrégimentait enrégimenter VER 0.00 0.27 0.00 0.07 ind:imp:3s; +enrégimenter enrégimenter VER 0.00 0.27 0.00 0.14 inf; +enrégimenterait enrégimenter VER 0.00 0.27 0.00 0.07 cnd:pre:3s; +ensablait ensabler VER 0.28 1.15 0.10 0.14 ind:imp:3s; +ensable ensabler VER 0.28 1.15 0.00 0.27 ind:pre:3s; +ensablement ensablement NOM m s 0.00 0.20 0.00 0.20 +ensablent ensabler VER 0.28 1.15 0.00 0.07 ind:pre:3p; +ensabler ensabler VER 0.28 1.15 0.01 0.14 inf; +ensablèrent ensabler VER 0.28 1.15 0.00 0.07 ind:pas:3p; +ensablé ensablé ADJ m s 0.03 0.88 0.01 0.27 +ensablée ensabler VER f s 0.28 1.15 0.14 0.20 par:pas; +ensablées ensablé ADJ f p 0.03 0.88 0.00 0.14 +ensablés ensablé ADJ m p 0.03 0.88 0.01 0.27 +ensacher ensacher VER 0.04 0.07 0.02 0.00 inf; +ensaché ensacher VER m s 0.04 0.07 0.01 0.07 par:pas; +ensanglanta ensanglanter VER 1.07 2.30 0.00 0.14 ind:pas:3s; +ensanglantaient ensanglanter VER 1.07 2.30 0.00 0.07 ind:imp:3p; +ensanglantant ensanglanter VER 1.07 2.30 0.00 0.14 par:pre; +ensanglante ensanglanter VER 1.07 2.30 0.28 0.00 ind:pre:3s; +ensanglantement ensanglantement NOM m s 0.00 0.07 0.00 0.07 +ensanglanter ensanglanter VER 1.07 2.30 0.00 0.07 inf; +ensanglantèrent ensanglanter VER 1.07 2.30 0.00 0.07 ind:pas:3p; +ensanglanté ensanglanté ADJ m s 1.55 4.26 0.71 1.55 +ensanglantée ensanglanté ADJ f s 1.55 4.26 0.52 1.28 +ensanglantées ensanglanté ADJ f p 1.55 4.26 0.10 0.61 +ensanglantés ensanglanté ADJ m p 1.55 4.26 0.21 0.81 +ensauvageait ensauvager VER 0.11 0.68 0.00 0.07 ind:imp:3s; +ensauvagement ensauvagement NOM m s 0.00 0.07 0.00 0.07 +ensauvagé ensauvager VER m s 0.11 0.68 0.01 0.14 par:pas; +ensauvagée ensauvager VER f s 0.11 0.68 0.10 0.20 par:pas; +ensauvagées ensauvager VER f p 0.11 0.68 0.00 0.14 par:pas; +ensauvagés ensauvager VER m p 0.11 0.68 0.00 0.14 par:pas; +ensauve ensauver VER 0.00 0.14 0.00 0.07 ind:pre:1s; +ensauvés ensauver VER m p 0.00 0.14 0.00 0.07 par:pas; +enseigna enseigner VER 31.98 23.04 0.59 1.15 ind:pas:3s; +enseignaient enseigner VER 31.98 23.04 0.07 0.47 ind:imp:3p; +enseignais enseigner VER 31.98 23.04 0.80 0.34 ind:imp:1s;ind:imp:2s; +enseignait enseigner VER 31.98 23.04 1.29 3.85 ind:imp:3s; +enseignant_robot enseignant_robot NOM m s 0.00 0.07 0.00 0.07 +enseignant enseignant NOM m s 3.94 1.69 1.63 0.34 +enseignante enseignant NOM f s 3.94 1.69 0.45 0.47 +enseignantes enseignant NOM f p 3.94 1.69 0.03 0.07 +enseignants enseignant NOM m p 3.94 1.69 1.84 0.81 +enseigne enseigner VER 31.98 23.04 8.85 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +enseignement enseignement NOM m s 4.27 12.50 3.61 10.95 +enseignements enseignement NOM m p 4.27 12.50 0.66 1.55 +enseignent enseigner VER 31.98 23.04 0.59 0.95 ind:pre:3p; +enseigner enseigner VER 31.98 23.04 10.06 5.00 inf;; +enseignera enseigner VER 31.98 23.04 0.53 0.41 ind:fut:3s; +enseignerai enseigner VER 31.98 23.04 0.78 0.14 ind:fut:1s; +enseigneraient enseigner VER 31.98 23.04 0.01 0.07 cnd:pre:3p; +enseignerais enseigner VER 31.98 23.04 0.30 0.07 cnd:pre:1s; +enseignerait enseigner VER 31.98 23.04 0.05 0.14 cnd:pre:3s; +enseigneras enseigner VER 31.98 23.04 0.05 0.00 ind:fut:2s; +enseignerez enseigner VER 31.98 23.04 0.06 0.00 ind:fut:2p; +enseignerons enseigner VER 31.98 23.04 0.28 0.00 ind:fut:1p; +enseigneront enseigner VER 31.98 23.04 0.04 0.07 ind:fut:3p; +enseignes enseigner VER 31.98 23.04 0.89 0.07 ind:pre:2s; +enseigneur enseigneur NOM m s 0.01 0.00 0.01 0.00 +enseignez enseigner VER 31.98 23.04 1.61 0.54 imp:pre:2p;ind:pre:2p; +enseigniez enseigner VER 31.98 23.04 0.17 0.07 ind:imp:2p; +enseignons enseigner VER 31.98 23.04 0.09 0.00 imp:pre:1p;ind:pre:1p; +enseignât enseigner VER 31.98 23.04 0.00 0.07 sub:imp:3s; +enseignèrent enseigner VER 31.98 23.04 0.00 0.20 ind:pas:3p; +enseigné enseigner VER m s 31.98 23.04 3.79 3.85 par:pas; +enseignée enseigner VER f s 31.98 23.04 0.43 0.88 par:pas; +enseignées enseigner VER f p 31.98 23.04 0.22 0.27 par:pas; +enseignés enseigner VER m p 31.98 23.04 0.06 0.34 par:pas; +ensellement ensellement NOM m s 0.00 0.20 0.00 0.20 +ensellé ensellé ADJ m s 0.01 0.07 0.01 0.00 +ensellure ensellure NOM f s 0.14 0.07 0.14 0.07 +ensellés ensellé ADJ m p 0.01 0.07 0.00 0.07 +ensemble ensemble ADV 253.47 145.07 253.47 145.07 +ensembles ensemble NOM m p 31.87 63.45 2.13 2.03 +ensemencement ensemencement NOM m s 0.01 0.20 0.01 0.14 +ensemencements ensemencement NOM m p 0.01 0.20 0.00 0.07 +ensemencer ensemencer VER 0.23 1.42 0.08 0.41 inf; +ensemencé ensemencer VER m s 0.23 1.42 0.14 0.34 par:pas; +ensemencée ensemencer VER f s 0.23 1.42 0.01 0.20 par:pas; +ensemencés ensemencer VER m p 0.23 1.42 0.00 0.14 par:pas; +ensemença ensemencer VER 0.23 1.42 0.00 0.07 ind:pas:3s; +ensemençaient ensemencer VER 0.23 1.42 0.00 0.07 ind:imp:3p; +ensemençait ensemencer VER 0.23 1.42 0.00 0.14 ind:imp:3s; +ensemençant ensemencer VER 0.23 1.42 0.00 0.07 par:pre; +enserra enserrer VER 0.23 7.70 0.00 0.07 ind:pas:3s; +enserrai enserrer VER 0.23 7.70 0.00 0.07 ind:pas:1s; +enserraient enserrer VER 0.23 7.70 0.01 1.01 ind:imp:3p; +enserrait enserrer VER 0.23 7.70 0.00 1.28 ind:imp:3s; +enserrant enserrer VER 0.23 7.70 0.00 1.49 par:pre; +enserre enserrer VER 0.23 7.70 0.05 1.08 ind:pre:1s;ind:pre:3s; +enserrent enserrer VER 0.23 7.70 0.02 0.74 ind:pre:3p; +enserrer enserrer VER 0.23 7.70 0.01 0.54 inf; +enserrera enserrer VER 0.23 7.70 0.01 0.00 ind:fut:3s; +enserrerait enserrer VER 0.23 7.70 0.00 0.07 cnd:pre:3s; +enserres enserrer VER 0.23 7.70 0.00 0.07 ind:pre:2s; +enserrèrent enserrer VER 0.23 7.70 0.00 0.07 ind:pas:3p; +enserré enserrer VER m s 0.23 7.70 0.13 0.54 par:pas; +enserrée enserrer VER f s 0.23 7.70 0.00 0.27 par:pas; +enserrées enserrer VER f p 0.23 7.70 0.00 0.14 par:pas; +enserrés enserrer VER m p 0.23 7.70 0.00 0.27 par:pas; +enseveli ensevelir VER m s 3.10 8.58 0.75 2.70 par:pas; +ensevelie ensevelir VER f s 3.10 8.58 0.52 0.88 par:pas; +ensevelies ensevelir VER f p 3.10 8.58 0.06 0.68 par:pas; +ensevelir ensevelir VER 3.10 8.58 1.20 1.08 inf; +ensevelira ensevelir VER 3.10 8.58 0.04 0.00 ind:fut:3s; +ensevelirait ensevelir VER 3.10 8.58 0.00 0.07 cnd:pre:3s; +ensevelis ensevelir VER m p 3.10 8.58 0.33 1.76 ind:pre:1s;par:pas; +ensevelissaient ensevelir VER 3.10 8.58 0.00 0.14 ind:imp:3p; +ensevelissais ensevelir VER 3.10 8.58 0.00 0.07 ind:imp:1s; +ensevelissait ensevelir VER 3.10 8.58 0.00 0.34 ind:imp:3s; +ensevelissant ensevelir VER 3.10 8.58 0.00 0.20 par:pre; +ensevelisse ensevelir VER 3.10 8.58 0.14 0.27 sub:pre:3s; +ensevelissement ensevelissement NOM m s 0.03 0.74 0.03 0.74 +ensevelissent ensevelir VER 3.10 8.58 0.00 0.14 ind:pre:3p; +ensevelisseuse ensevelisseur NOM f s 0.00 0.14 0.00 0.14 +ensevelissez ensevelir VER 3.10 8.58 0.03 0.00 imp:pre:2p;ind:pre:2p; +ensevelissons ensevelir VER 3.10 8.58 0.00 0.07 imp:pre:1p; +ensevelit ensevelir VER 3.10 8.58 0.02 0.20 ind:pre:3s;ind:pas:3s; +ensoleilla ensoleiller VER 0.99 3.31 0.00 0.14 ind:pas:3s; +ensoleillement ensoleillement NOM m s 0.04 0.27 0.04 0.27 +ensoleiller ensoleiller VER 0.99 3.31 0.02 0.07 inf; +ensoleillèrent ensoleiller VER 0.99 3.31 0.00 0.07 ind:pas:3p; +ensoleillé ensoleillé ADJ m s 2.12 8.31 1.05 3.04 +ensoleillée ensoleillé ADJ f s 2.12 8.31 0.75 4.12 +ensoleillées ensoleillé ADJ f p 2.12 8.31 0.06 0.61 +ensoleillés ensoleillé ADJ m p 2.12 8.31 0.26 0.54 +ensommeilla ensommeiller VER 0.14 1.15 0.00 0.07 ind:pas:3s; +ensommeillaient ensommeiller VER 0.14 1.15 0.00 0.07 ind:imp:3p; +ensommeillait ensommeiller VER 0.14 1.15 0.00 0.14 ind:imp:3s; +ensommeiller ensommeiller VER 0.14 1.15 0.00 0.07 inf; +ensommeillé ensommeiller VER m s 0.14 1.15 0.14 0.34 par:pas; +ensommeillée ensommeillé ADJ f s 0.21 3.38 0.01 1.55 +ensommeillées ensommeillé ADJ f p 0.21 3.38 0.00 0.34 +ensommeillés ensommeillé ADJ m p 0.21 3.38 0.10 0.54 +ensorcelaient ensorceler VER 3.92 1.49 0.00 0.07 ind:imp:3p; +ensorcelant ensorcelant ADJ m s 0.21 0.47 0.03 0.20 +ensorcelante ensorcelant ADJ f s 0.21 0.47 0.19 0.20 +ensorcelantes ensorcelant ADJ f p 0.21 0.47 0.00 0.07 +ensorceler ensorceler VER 3.92 1.49 0.67 0.34 inf; +ensorceleur ensorceleur ADJ m s 0.03 0.07 0.01 0.07 +ensorceleuse ensorceleur NOM f s 0.04 0.07 0.03 0.07 +ensorceleuses ensorceleuse NOM f p 0.02 0.00 0.02 0.00 +ensorcelez ensorceler VER 3.92 1.49 0.02 0.07 ind:pre:2p; +ensorcelle ensorceler VER 3.92 1.49 0.34 0.34 ind:pre:3s; +ensorcellement ensorcellement NOM m s 0.05 0.14 0.05 0.14 +ensorcellent ensorceler VER 3.92 1.49 0.26 0.07 ind:pre:3p; +ensorcelles ensorceler VER 3.92 1.49 0.00 0.07 ind:pre:2s; +ensorcelé ensorceler VER m s 3.92 1.49 1.72 0.34 par:pas; +ensorcelée ensorceler VER f s 3.92 1.49 0.73 0.14 par:pas; +ensorcelées ensorcelé ADJ f p 0.35 0.88 0.10 0.14 +ensorcelés ensorceler VER m p 3.92 1.49 0.18 0.00 par:pas; +ensouple ensouple NOM f s 0.00 0.07 0.00 0.07 +ensoutanée ensoutané ADJ f s 0.00 0.07 0.00 0.07 +ensoutanées ensoutaner VER f p 0.00 0.07 0.00 0.07 par:pas; +ensuit ensuivre VER 1.20 5.34 0.52 1.89 ind:pre:3s; +ensuite ensuite ADV 127.92 169.19 127.92 169.19 +ensuivaient ensuivre VER 1.20 5.34 0.00 0.14 ind:imp:3p; +ensuivait ensuivre VER 1.20 5.34 0.00 0.34 ind:imp:3s; +ensuive ensuivre VER 1.20 5.34 0.33 0.54 sub:pre:3s; +ensuivent ensuivre VER 1.20 5.34 0.04 0.07 ind:pre:3p; +ensuivi ensuivre VER m s 1.20 5.34 0.00 0.07 par:pas; +ensuivie ensuivre VER f s 1.20 5.34 0.01 0.07 par:pas; +ensuivies ensuivre VER f p 1.20 5.34 0.00 0.07 par:pas; +ensuivirent ensuivre VER 1.20 5.34 0.03 0.27 ind:pas:3p; +ensuivit ensuivre VER 1.20 5.34 0.15 1.22 ind:pas:3s; +ensuivra ensuivre VER 1.20 5.34 0.06 0.07 ind:fut:3s; +ensuivraient ensuivre VER 1.20 5.34 0.01 0.07 cnd:pre:3p; +ensuivrait ensuivre VER 1.20 5.34 0.01 0.20 cnd:pre:3s; +ensuivre ensuivre VER 1.20 5.34 0.02 0.34 inf; +ensuivront ensuivre VER 1.20 5.34 0.03 0.00 ind:fut:3p; +ensuquent ensuquer VER 0.00 0.47 0.00 0.07 ind:pre:3p; +ensuqué ensuquer VER m s 0.00 0.47 0.00 0.14 par:pas; +ensuquée ensuquer VER f s 0.00 0.47 0.00 0.27 par:pas; +entôlage entôlage NOM m s 0.01 0.14 0.01 0.14 +entôler entôler VER 0.02 0.20 0.01 0.00 inf; +entôleur entôleur NOM m s 0.00 0.07 0.00 0.07 +entôlé entôler VER m s 0.02 0.20 0.01 0.14 par:pas; +entôlée entôler VER f s 0.02 0.20 0.00 0.07 par:pas; +entablement entablement NOM m s 0.00 0.07 0.00 0.07 +entachait entacher VER 0.78 1.76 0.00 0.27 ind:imp:3s; +entache entacher VER 0.78 1.76 0.31 0.07 imp:pre:2s;ind:pre:3s; +entachent entacher VER 0.78 1.76 0.01 0.00 ind:pre:3p; +entacher entacher VER 0.78 1.76 0.10 0.14 inf; +entacherait entacher VER 0.78 1.76 0.04 0.00 cnd:pre:3s; +entaché entacher VER m s 0.78 1.76 0.12 0.81 par:pas; +entachée entacher VER f s 0.78 1.76 0.19 0.34 par:pas; +entachées entacher VER f p 0.78 1.76 0.00 0.07 par:pas; +entachés entacher VER m p 0.78 1.76 0.00 0.07 par:pas; +entailla entailler VER 0.52 2.09 0.00 0.07 ind:pas:3s; +entaillait entailler VER 0.52 2.09 0.01 0.27 ind:imp:3s; +entaille entaille NOM f s 1.93 3.92 1.49 2.64 +entaillent entailler VER 0.52 2.09 0.00 0.27 ind:pre:3p; +entailler entailler VER 0.52 2.09 0.10 0.47 inf; +entaillerai entailler VER 0.52 2.09 0.00 0.07 ind:fut:1s; +entailles entaille NOM f p 1.93 3.92 0.44 1.28 +entaillé entailler VER m s 0.52 2.09 0.18 0.34 par:pas; +entaillée entailler VER f s 0.52 2.09 0.04 0.14 par:pas; +entaillées entaillé ADJ f p 0.11 0.61 0.01 0.00 +entaillés entaillé ADJ m p 0.11 0.61 0.01 0.20 +entama entamer VER 7.44 27.77 0.08 2.03 ind:pas:3s; +entamai entamer VER 7.44 27.77 0.01 0.47 ind:pas:1s; +entamaient entamer VER 7.44 27.77 0.14 1.28 ind:imp:3p; +entamais entamer VER 7.44 27.77 0.07 0.07 ind:imp:1s; +entamait entamer VER 7.44 27.77 0.04 1.62 ind:imp:3s; +entamant entamer VER 7.44 27.77 0.02 0.41 par:pre; +entame entamer VER 7.44 27.77 1.09 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entament entamer VER 7.44 27.77 0.32 0.61 ind:pre:3p; +entamer entamer VER 7.44 27.77 2.42 7.03 inf; +entamera entamer VER 7.44 27.77 0.28 0.07 ind:fut:3s; +entamerai entamer VER 7.44 27.77 0.03 0.07 ind:fut:1s; +entameraient entamer VER 7.44 27.77 0.01 0.07 cnd:pre:3p; +entamerais entamer VER 7.44 27.77 0.14 0.14 cnd:pre:1s; +entamerait entamer VER 7.44 27.77 0.02 0.27 cnd:pre:3s; +entamerez entamer VER 7.44 27.77 0.01 0.07 ind:fut:2p; +entamerons entamer VER 7.44 27.77 0.12 0.07 ind:fut:1p; +entames entamer VER 7.44 27.77 0.02 0.00 ind:pre:2s; +entamez entamer VER 7.44 27.77 0.26 0.07 imp:pre:2p;ind:pre:2p; +entamons entamer VER 7.44 27.77 0.13 0.14 imp:pre:1p;ind:pre:1p; +entamât entamer VER 7.44 27.77 0.00 0.27 sub:imp:3s; +entamèrent entamer VER 7.44 27.77 0.11 0.54 ind:pas:3p; +entamé entamer VER m s 7.44 27.77 1.52 5.68 par:pas; +entamée entamer VER f s 7.44 27.77 0.47 3.51 par:pas; +entamées entamer VER f p 7.44 27.77 0.12 0.27 par:pas; +entamés entamer VER m p 7.44 27.77 0.02 0.68 par:pas; +entant enter VER 0.49 0.14 0.12 0.00 par:pre; +entassa entasser VER 3.90 29.05 0.00 0.68 ind:pas:3s; +entassaient entasser VER 3.90 29.05 0.14 5.81 ind:imp:3p; +entassait entasser VER 3.90 29.05 0.06 2.43 ind:imp:3s; +entassant entasser VER 3.90 29.05 0.00 0.61 par:pre; +entasse entasser VER 3.90 29.05 1.07 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entassement entassement NOM m s 0.00 4.53 0.00 3.31 +entassements entassement NOM m p 0.00 4.53 0.00 1.22 +entassent entasser VER 3.90 29.05 0.58 2.09 ind:pre:3p; +entasser entasser VER 3.90 29.05 0.65 2.03 inf; +entassera entasser VER 3.90 29.05 0.00 0.07 ind:fut:3s; +entasseraient entasser VER 3.90 29.05 0.00 0.14 cnd:pre:3p; +entasserait entasser VER 3.90 29.05 0.00 0.07 cnd:pre:3s; +entasseront entasser VER 3.90 29.05 0.00 0.07 ind:fut:3p; +entassez entasser VER 3.90 29.05 0.07 0.07 imp:pre:2p; +entassions entasser VER 3.90 29.05 0.00 0.34 ind:imp:1p; +entassâmes entasser VER 3.90 29.05 0.00 0.07 ind:pas:1p; +entassons entasser VER 3.90 29.05 0.10 0.07 ind:pre:1p; +entassèrent entasser VER 3.90 29.05 0.00 0.34 ind:pas:3p; +entassé entasser VER m s 3.90 29.05 0.07 1.62 par:pas; +entassée entasser VER f s 3.90 29.05 0.03 0.95 par:pas; +entassées entasser VER f p 3.90 29.05 0.02 3.18 par:pas; +entassés entasser VER m p 3.90 29.05 1.10 6.89 par:pas; +ente enter VER 0.49 0.14 0.01 0.00 ind:pre:3s; +entement entement NOM m s 0.00 0.07 0.00 0.07 +entend entendre VER 728.67 719.12 41.77 63.11 ind:pre:3s; +entendîmes entendre VER 728.67 719.12 0.14 1.69 ind:pas:1p; +entendît entendre VER 728.67 719.12 0.00 2.30 sub:imp:3s; +entendaient entendre VER 728.67 719.12 1.52 7.09 ind:imp:3p; +entendais entendre VER 728.67 719.12 7.49 29.93 ind:imp:1s;ind:imp:2s; +entendait entendre VER 728.67 719.12 7.11 80.27 ind:imp:3s; +entendant entendre VER 728.67 719.12 1.95 15.00 par:pre; +entende entendre VER 728.67 719.12 9.72 5.47 sub:pre:1s;sub:pre:3s; +entendement entendement NOM m s 1.13 2.70 1.13 2.70 +entendent entendre VER 728.67 719.12 6.75 7.64 ind:pre:3p;sub:pre:3p; +entendes entendre VER 728.67 719.12 1.01 0.41 sub:pre:2s; +entendeur entendeur NOM m s 0.28 0.34 0.28 0.27 +entendeurs entendeur NOM m p 0.28 0.34 0.00 0.07 +entendez entendre VER 728.67 719.12 45.11 13.99 imp:pre:2p;ind:pre:2p; +entendiez entendre VER 728.67 719.12 2.24 0.81 ind:imp:2p;sub:pre:2p; +entendions entendre VER 728.67 719.12 0.76 5.68 ind:imp:1p; +entendirent entendre VER 728.67 719.12 0.14 5.14 ind:pas:3p; +entendis entendre VER 728.67 719.12 1.11 16.76 ind:pas:1s; +entendisse entendre VER 728.67 719.12 0.00 0.14 sub:imp:1s; +entendissent entendre VER 728.67 719.12 0.01 0.20 sub:imp:3p; +entendit entendre VER 728.67 719.12 1.50 63.31 ind:pas:3s; +entendons entendre VER 728.67 719.12 2.05 5.14 imp:pre:1p;ind:pre:1p; +entendra entendre VER 728.67 719.12 6.61 2.57 ind:fut:3s; +entendrai entendre VER 728.67 719.12 1.36 1.08 ind:fut:1s; +entendraient entendre VER 728.67 719.12 0.23 0.88 cnd:pre:3p; +entendrais entendre VER 728.67 719.12 0.85 1.22 cnd:pre:1s;cnd:pre:2s; +entendrait entendre VER 728.67 719.12 1.71 3.18 cnd:pre:3s; +entendras entendre VER 728.67 719.12 2.26 0.61 ind:fut:2s; +entendre entendre VER 728.67 719.12 137.90 162.50 inf;;inf;;inf;; +entendrez entendre VER 728.67 719.12 3.45 0.47 ind:fut:2p; +entendriez entendre VER 728.67 719.12 0.28 0.14 cnd:pre:2p; +entendrions entendre VER 728.67 719.12 0.03 0.14 cnd:pre:1p; +entendrons entendre VER 728.67 719.12 0.63 0.81 ind:fut:1p; +entendront entendre VER 728.67 719.12 1.54 0.47 ind:fut:3p; +entends entendre VER 728.67 719.12 163.49 78.45 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entendu entendre VER m s 728.67 719.12 256.43 122.91 par:pas; +entendue entendre VER f s 728.67 719.12 14.31 11.01 par:pas; +entendues entendre VER f p 728.67 719.12 1.53 2.43 par:pas; +entendus entendre VER m p 728.67 719.12 5.68 6.22 par:pas; +entente entente NOM f s 2.82 10.81 2.72 10.68 +ententes entente NOM f p 2.82 10.81 0.10 0.14 +enter enter VER 0.49 0.14 0.35 0.14 inf; +enterra enterrer VER 63.68 28.58 0.26 0.47 ind:pas:3s; +enterrai enterrer VER 63.68 28.58 0.01 0.07 ind:pas:1s; +enterraient enterrer VER 63.68 28.58 0.13 0.14 ind:imp:3p; +enterrais enterrer VER 63.68 28.58 0.04 0.14 ind:imp:1s;ind:imp:2s; +enterrait enterrer VER 63.68 28.58 0.43 0.88 ind:imp:3s; +enterrant enterrer VER 63.68 28.58 0.11 0.07 par:pre; +enterre enterrer VER 63.68 28.58 8.38 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +enterrement enterrement NOM m s 27.33 21.22 24.71 18.99 +enterrements enterrement NOM m p 27.33 21.22 2.62 2.23 +enterrent enterrer VER 63.68 28.58 0.90 0.61 ind:pre:3p; +enterrer enterrer VER 63.68 28.58 17.27 9.12 inf; +enterrera enterrer VER 63.68 28.58 1.02 0.81 ind:fut:3s; +enterrerai enterrer VER 63.68 28.58 0.47 0.14 ind:fut:1s; +enterrerais enterrer VER 63.68 28.58 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +enterrerait enterrer VER 63.68 28.58 0.10 0.14 cnd:pre:3s; +enterreras enterrer VER 63.68 28.58 0.32 0.07 ind:fut:2s; +enterrerez enterrer VER 63.68 28.58 0.09 0.07 ind:fut:2p; +enterrerons enterrer VER 63.68 28.58 0.23 0.14 ind:fut:1p; +enterreront enterrer VER 63.68 28.58 0.11 0.14 ind:fut:3p; +enterres enterrer VER 63.68 28.58 0.40 0.20 ind:pre:2s; +enterreur enterreur NOM m s 0.00 0.07 0.00 0.07 +enterrez enterrer VER 63.68 28.58 2.94 0.27 imp:pre:2p;ind:pre:2p; +enterriez enterrer VER 63.68 28.58 0.03 0.00 ind:imp:2p; +enterrions enterrer VER 63.68 28.58 0.04 0.14 ind:imp:1p; +enterrâmes enterrer VER 63.68 28.58 0.00 0.07 ind:pas:1p; +enterrons enterrer VER 63.68 28.58 0.93 0.34 imp:pre:1p;ind:pre:1p; +enterrèrent enterrer VER 63.68 28.58 0.01 0.14 ind:pas:3p; +enterré enterrer VER m s 63.68 28.58 19.90 6.15 par:pas; +enterrée enterrer VER f s 63.68 28.58 5.92 3.58 par:pas; +enterrées enterrer VER f p 63.68 28.58 0.95 0.47 par:pas; +enterrés enterrer VER m p 63.68 28.58 2.63 1.82 par:pas; +enthalpie enthalpie NOM f s 0.01 0.00 0.01 0.00 +enthousiasma enthousiasmer VER 1.67 4.66 0.00 0.61 ind:pas:3s; +enthousiasmai enthousiasmer VER 1.67 4.66 0.00 0.07 ind:pas:1s; +enthousiasmaient enthousiasmer VER 1.67 4.66 0.00 0.27 ind:imp:3p; +enthousiasmais enthousiasmer VER 1.67 4.66 0.01 0.07 ind:imp:1s; +enthousiasmait enthousiasmer VER 1.67 4.66 0.02 0.88 ind:imp:3s; +enthousiasmant enthousiasmant ADJ m s 0.07 0.27 0.04 0.20 +enthousiasmante enthousiasmant ADJ f s 0.07 0.27 0.03 0.07 +enthousiasme enthousiasme NOM m s 7.09 35.61 7.05 33.72 +enthousiasmer enthousiasmer VER 1.67 4.66 0.19 0.68 inf; +enthousiasmes enthousiasme NOM m p 7.09 35.61 0.04 1.89 +enthousiasmez enthousiasmer VER 1.67 4.66 0.01 0.00 ind:pre:2p; +enthousiasmèrent enthousiasmer VER 1.67 4.66 0.00 0.07 ind:pas:3p; +enthousiasmé enthousiasmer VER m s 1.67 4.66 0.69 0.88 par:pas; +enthousiasmée enthousiasmer VER f s 1.67 4.66 0.17 0.34 par:pas; +enthousiasmés enthousiasmer VER m p 1.67 4.66 0.06 0.34 par:pas; +enthousiaste enthousiaste ADJ s 4.41 7.70 3.34 5.88 +enthousiastes enthousiaste ADJ p 4.41 7.70 1.06 1.82 +enticha enticher VER 1.36 1.69 0.00 0.20 ind:pas:3s; +entichait enticher VER 1.36 1.69 0.00 0.14 ind:imp:3s; +entiche enticher VER 1.36 1.69 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entichement entichement NOM m s 0.01 0.00 0.01 0.00 +entichent enticher VER 1.36 1.69 0.01 0.07 ind:pre:3p; +enticher enticher VER 1.36 1.69 0.33 0.07 inf; +entichera enticher VER 1.36 1.69 0.01 0.00 ind:fut:3s; +entichèrent enticher VER 1.36 1.69 0.00 0.20 ind:pas:3p; +entiché enticher VER m s 1.36 1.69 0.33 0.47 par:pas; +entichée enticher VER f s 1.36 1.69 0.44 0.47 par:pas; +entichés enticher VER m p 1.36 1.69 0.01 0.00 par:pas; +entier entier ADJ m s 76.01 147.91 42.15 56.69 +entiers entier ADJ m p 76.01 147.91 3.68 12.64 +entifler entifler VER 0.00 0.14 0.00 0.07 inf; +entiflé entifler VER m s 0.00 0.14 0.00 0.07 par:pas; +entière entier ADJ f s 76.01 147.91 26.45 62.97 +entièrement entièrement ADV 17.17 39.93 17.17 39.93 +entières entier ADJ f p 76.01 147.91 3.73 15.61 +entièreté entièreté NOM f s 0.02 0.00 0.02 0.00 +entité entité NOM f s 3.08 2.09 2.12 1.62 +entités entité NOM f p 3.08 2.09 0.95 0.47 +entoilage entoilage NOM m s 0.01 0.07 0.01 0.07 +entoiler entoiler VER 0.02 0.20 0.01 0.00 inf; +entoilées entoiler VER f p 0.02 0.20 0.01 0.07 par:pas; +entoilés entoiler VER m p 0.02 0.20 0.00 0.14 par:pas; +entolome entolome NOM m s 0.00 0.14 0.00 0.07 +entolomes entolome NOM m p 0.00 0.14 0.00 0.07 +entomologie entomologie NOM f s 0.19 0.27 0.19 0.27 +entomologique entomologique ADJ s 0.01 0.07 0.01 0.07 +entomologiste entomologiste NOM s 0.80 1.28 0.79 1.15 +entomologistes entomologiste NOM p 0.80 1.28 0.01 0.14 +entonna entonner VER 1.61 8.24 0.00 1.42 ind:pas:3s; +entonnaient entonner VER 1.61 8.24 0.23 0.20 ind:imp:3p; +entonnais entonner VER 1.61 8.24 0.10 0.07 ind:imp:1s;ind:imp:2s; +entonnait entonner VER 1.61 8.24 0.13 1.22 ind:imp:3s; +entonnant entonner VER 1.61 8.24 0.02 0.20 par:pre; +entonne entonner VER 1.61 8.24 0.46 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entonnent entonner VER 1.61 8.24 0.12 0.27 ind:pre:3p; +entonner entonner VER 1.61 8.24 0.42 2.43 inf; +entonnera entonner VER 1.61 8.24 0.00 0.07 ind:fut:3s; +entonneraient entonner VER 1.61 8.24 0.00 0.07 cnd:pre:3p; +entonnions entonner VER 1.61 8.24 0.00 0.14 ind:imp:1p; +entonnoir entonnoir NOM m s 0.83 9.46 0.81 7.97 +entonnoirs entonnoir NOM m p 0.83 9.46 0.01 1.49 +entonnâmes entonner VER 1.61 8.24 0.00 0.07 ind:pas:1p; +entonnons entonner VER 1.61 8.24 0.01 0.07 imp:pre:1p; +entonnèrent entonner VER 1.61 8.24 0.00 0.27 ind:pas:3p; +entonné entonner VER m s 1.61 8.24 0.11 0.74 par:pas; +entorse entorse NOM f s 1.63 2.84 1.40 2.36 +entorses entorse NOM f p 1.63 2.84 0.23 0.47 +entortilla entortiller VER 0.25 3.78 0.00 0.34 ind:pas:3s; +entortillage entortillage NOM m s 0.00 0.14 0.00 0.07 +entortillages entortillage NOM m p 0.00 0.14 0.00 0.07 +entortillai entortiller VER 0.25 3.78 0.00 0.14 ind:pas:1s; +entortillaient entortiller VER 0.25 3.78 0.00 0.27 ind:imp:3p; +entortillait entortiller VER 0.25 3.78 0.03 0.27 ind:imp:3s; +entortillant entortiller VER 0.25 3.78 0.00 0.14 par:pre; +entortille entortiller VER 0.25 3.78 0.05 0.20 imp:pre:2s;ind:pre:3s; +entortillement entortillement NOM m s 0.00 0.14 0.00 0.14 +entortillent entortiller VER 0.25 3.78 0.00 0.20 ind:pre:3p; +entortiller entortiller VER 0.25 3.78 0.14 0.47 inf; +entortilleraient entortiller VER 0.25 3.78 0.00 0.07 cnd:pre:3p; +entortillé entortiller VER m s 0.25 3.78 0.03 0.68 par:pas; +entortillée entortillé ADJ f s 0.06 0.34 0.01 0.07 +entortillées entortiller VER f p 0.25 3.78 0.00 0.27 par:pas; +entortillés entortillé ADJ m p 0.06 0.34 0.01 0.07 +entour entour NOM m s 0.01 1.42 0.01 1.15 +entoura entourer VER 23.99 112.09 0.16 4.26 ind:pas:3s; +entourage entourage NOM m s 3.00 10.74 3.00 10.68 +entourages entourage NOM m p 3.00 10.74 0.00 0.07 +entourai entourer VER 23.99 112.09 0.00 0.20 ind:pas:1s; +entouraient entourer VER 23.99 112.09 0.48 12.97 ind:imp:3p; +entourais entourer VER 23.99 112.09 0.20 0.34 ind:imp:1s; +entourait entourer VER 23.99 112.09 0.95 14.05 ind:imp:3s; +entourant entourer VER 23.99 112.09 0.90 6.28 par:pre; +entoure entourer VER 23.99 112.09 3.19 9.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +entourent entourer VER 23.99 112.09 3.12 7.91 ind:pre:3p; +entourer entourer VER 23.99 112.09 1.21 4.93 inf; +entourera entourer VER 23.99 112.09 0.14 0.20 ind:fut:3s; +entoureraient entourer VER 23.99 112.09 0.01 0.07 cnd:pre:3p; +entourerait entourer VER 23.99 112.09 0.00 0.07 cnd:pre:3s; +entoureront entourer VER 23.99 112.09 0.11 0.07 ind:fut:3p; +entoures entourer VER 23.99 112.09 0.05 0.07 ind:pre:2s; +entourez entourer VER 23.99 112.09 0.37 0.14 imp:pre:2p;ind:pre:2p; +entourions entourer VER 23.99 112.09 0.00 0.47 ind:imp:1p; +entourloupe entourloupe NOM f s 0.94 1.01 0.78 0.68 +entourloupent entourlouper VER 0.12 0.00 0.10 0.00 ind:pre:3p; +entourlouper entourlouper VER 0.12 0.00 0.02 0.00 inf; +entourloupes entourloupe NOM f p 0.94 1.01 0.17 0.34 +entourloupette entourloupette NOM f s 0.17 0.47 0.04 0.20 +entourloupettes entourloupette NOM f p 0.17 0.47 0.12 0.27 +entournures entournure NOM f p 0.03 1.28 0.03 1.28 +entourons entourer VER 23.99 112.09 0.01 0.07 imp:pre:1p;ind:pre:1p; +entourât entourer VER 23.99 112.09 0.00 0.14 sub:imp:3s; +entours entour NOM m p 0.01 1.42 0.00 0.27 +entourèrent entourer VER 23.99 112.09 0.03 1.42 ind:pas:3p; +entouré entourer VER m s 23.99 112.09 7.57 26.08 par:pas; +entourée entourer VER f s 23.99 112.09 3.99 13.11 par:pas; +entourées entourer VER f p 23.99 112.09 0.17 2.91 par:pas; +entourés entourer VER m p 23.99 112.09 1.32 7.09 par:pas; +entr_acte entr_acte NOM m s 0.27 0.00 0.14 0.00 +entr_acte entr_acte NOM m p 0.27 0.00 0.14 0.00 +entr_aimer entr_aimer VER 0.00 0.07 0.00 0.07 inf; +entr_apercevoir entr_apercevoir VER 0.03 1.08 0.01 0.27 inf; +entr_apercevoir entr_apercevoir VER m s 0.03 1.08 0.00 0.14 par:pas; +entr_apercevoir entr_apercevoir VER f s 0.03 1.08 0.02 0.34 par:pas; +entr_apercevoir entr_apercevoir VER f p 0.03 1.08 0.00 0.07 par:pas; +entr_apercevoir entr_apercevoir VER m p 0.03 1.08 0.00 0.27 ind:pas:1s;par:pas; +entr_appeler entr_appeler VER 0.00 0.07 0.00 0.07 ind:pre:3p; +entr_ouvert entr_ouvert ADJ m s 0.01 1.49 0.00 0.41 +entr_ouvert entr_ouvert ADJ f s 0.01 1.49 0.01 0.74 +entr_ouvert entr_ouvert ADJ f p 0.01 1.49 0.00 0.27 +entr_ouvert entr_ouvert ADJ m p 0.01 1.49 0.00 0.07 +entr_égorger entr_égorger VER 0.00 0.20 0.00 0.07 ind:pre:3p; +entr_égorger entr_égorger VER 0.00 0.20 0.00 0.07 inf; +entr_égorger entr_égorger VER 0.00 0.20 0.00 0.07 ind:pas:3p; +entra entrer VER 450.11 398.38 2.72 51.96 ind:pas:3s; +entraîna entraîner VER 50.68 101.08 0.49 13.31 ind:pas:3s; +entraînai entraîner VER 50.68 101.08 0.00 1.01 ind:pas:1s; +entraînaient entraîner VER 50.68 101.08 0.05 3.11 ind:imp:3p; +entraînais entraîner VER 50.68 101.08 0.61 1.01 ind:imp:1s;ind:imp:2s; +entraînait entraîner VER 50.68 101.08 1.06 12.16 ind:imp:3s; +entraînant entraîner VER 50.68 101.08 1.13 7.64 par:pre; +entraînante entraînant ADJ f s 0.63 2.16 0.10 0.34 +entraînants entraînant ADJ m p 0.63 2.16 0.02 0.27 +entraîne entraîner VER 50.68 101.08 11.28 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +entraînement entraînement NOM m s 20.31 8.18 19.63 7.91 +entraînements entraînement NOM m p 20.31 8.18 0.67 0.27 +entraînent entraîner VER 50.68 101.08 1.50 3.24 ind:pre:3p;sub:pre:3p; +entraîner entraîner VER 50.68 101.08 15.39 20.81 inf;;inf;;inf;; +entraînera entraîner VER 50.68 101.08 0.94 0.74 ind:fut:3s; +entraînerai entraîner VER 50.68 101.08 0.40 0.07 ind:fut:1s; +entraîneraient entraîner VER 50.68 101.08 0.02 0.41 cnd:pre:3p; +entraînerais entraîner VER 50.68 101.08 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +entraînerait entraîner VER 50.68 101.08 0.54 1.89 cnd:pre:3s; +entraîneras entraîner VER 50.68 101.08 0.11 0.14 ind:fut:2s; +entraînerez entraîner VER 50.68 101.08 0.09 0.00 ind:fut:2p; +entraîneriez entraîner VER 50.68 101.08 0.00 0.07 cnd:pre:2p; +entraîneront entraîner VER 50.68 101.08 0.08 0.27 ind:fut:3p; +entraînes entraîner VER 50.68 101.08 2.05 0.07 ind:pre:2s;sub:pre:2s; +entraîneur entraîneur NOM m s 8.69 4.46 7.87 2.77 +entraîneurs entraîneur NOM m p 8.69 4.46 0.45 0.41 +entraîneuse entraîneur NOM f s 8.69 4.46 0.33 0.47 +entraîneuses entraîneur NOM f p 8.69 4.46 0.04 0.81 +entraînez entraîner VER 50.68 101.08 0.84 0.07 imp:pre:2p;ind:pre:2p; +entraîniez entraîner VER 50.68 101.08 0.11 0.00 ind:imp:2p;sub:pre:2p; +entraînons entraîner VER 50.68 101.08 0.15 0.07 imp:pre:1p;ind:pre:1p; +entraînât entraîner VER 50.68 101.08 0.00 0.27 sub:imp:3s; +entraînèrent entraîner VER 50.68 101.08 0.14 1.15 ind:pas:3p; +entraîné entraîner VER m s 50.68 101.08 8.33 10.41 par:pas; +entraînée entraîner VER f s 50.68 101.08 2.47 5.00 ind:imp:3p;par:pas; +entraînées entraîner VER f p 50.68 101.08 0.09 1.01 par:pas; +entraînés entraîner VER m p 50.68 101.08 2.73 4.12 par:pas; +entracte entracte NOM m s 1.61 5.74 1.59 4.86 +entractes entracte NOM m p 1.61 5.74 0.02 0.88 +entrai entrer VER 450.11 398.38 0.20 7.03 ind:pas:1s; +entraidait entraider VER 3.86 0.68 0.06 0.00 ind:imp:3s; +entraidant entraider VER 3.86 0.68 0.00 0.07 par:pre; +entraide entraider VER 3.86 0.68 0.88 0.00 ind:pre:3s; +entraident entraider VER 3.86 0.68 0.12 0.07 ind:pre:3p; +entraider entraider VER 3.86 0.68 2.48 0.54 inf; +entraidez entraider VER 3.86 0.68 0.23 0.00 imp:pre:2p; +entraidiez entraider VER 3.86 0.68 0.01 0.00 ind:imp:2p; +entraidons entraider VER 3.86 0.68 0.05 0.00 ind:pre:1p; +entraidés entraider VER m p 3.86 0.68 0.02 0.00 par:pas; +entraient entrer VER 450.11 398.38 0.71 10.41 ind:imp:3p; +entrailles entrailles NOM f p 4.96 13.45 4.96 13.45 +entrain entrain NOM m s 3.82 7.97 3.82 7.97 +entrais entrer VER 450.11 398.38 1.01 4.46 ind:imp:1s;ind:imp:2s; +entrait entrer VER 450.11 398.38 3.30 33.45 ind:imp:3s; +entrant entrer VER 450.11 398.38 2.97 13.85 par:pre; +entrante entrant ADJ f s 0.92 0.61 0.07 0.00 +entrantes entrant ADJ f p 0.92 0.61 0.04 0.00 +entrants entrant ADJ m p 0.92 0.61 0.33 0.00 +entrapercevoir entrapercevoir VER 0.06 0.20 0.01 0.00 inf; +entraperçu entrapercevoir VER m s 0.06 0.20 0.05 0.07 par:pas; +entraperçues entrapercevoir VER f p 0.06 0.20 0.00 0.07 par:pas; +entraperçus entrapercevoir VER m p 0.06 0.20 0.00 0.07 par:pas; +entrassent entrer VER 450.11 398.38 0.00 0.07 sub:imp:3p; +entrava entraver VER 2.28 11.62 0.00 0.07 ind:pas:3s; +entravai entraver VER 2.28 11.62 0.00 0.07 ind:pas:1s; +entravaient entraver VER 2.28 11.62 0.01 0.14 ind:imp:3p; +entravais entraver VER 2.28 11.62 0.00 0.34 ind:imp:1s; +entravait entraver VER 2.28 11.62 0.01 1.55 ind:imp:3s; +entravant entraver VER 2.28 11.62 0.01 0.41 par:pre; +entrave entrave NOM f s 1.17 2.50 0.85 1.01 +entravent entraver VER 2.28 11.62 0.19 0.68 ind:pre:3p; +entraver entraver VER 2.28 11.62 0.75 2.23 inf; +entravera entraver VER 2.28 11.62 0.06 0.14 ind:fut:3s; +entraverais entraver VER 2.28 11.62 0.00 0.07 cnd:pre:1s; +entraverait entraver VER 2.28 11.62 0.01 0.34 cnd:pre:3s; +entraveront entraver VER 2.28 11.62 0.01 0.07 ind:fut:3p; +entraves entrave NOM f p 1.17 2.50 0.32 1.49 +entravez entraver VER 2.28 11.62 0.14 0.00 imp:pre:2p;ind:pre:2p; +entravèrent entraver VER 2.28 11.62 0.00 0.14 ind:pas:3p; +entravé entraver VER m s 2.28 11.62 0.46 1.35 par:pas; +entravée entraver VER f s 2.28 11.62 0.04 0.27 par:pas; +entravées entravé ADJ f p 0.41 1.76 0.00 0.47 +entravés entraver VER m p 2.28 11.62 0.14 0.27 par:pas; +entre_deux_guerres entre_deux_guerres NOM m 0.10 0.74 0.10 0.74 +entre_deux entre_deux NOM m 0.34 0.81 0.34 0.81 +entre_déchirer entre_déchirer VER 0.04 0.61 0.02 0.14 ind:imp:3p; +entre_déchirer entre_déchirer VER 0.04 0.61 0.00 0.07 ind:imp:3s; +entre_déchirer entre_déchirer VER 0.04 0.61 0.01 0.00 ind:pre:3s; +entre_déchirer entre_déchirer VER 0.04 0.61 0.00 0.14 ind:pre:3p; +entre_déchirer entre_déchirer VER 0.04 0.61 0.01 0.20 inf; +entre_déchirer entre_déchirer VER 0.04 0.61 0.00 0.07 ind:pas:3p; +entre_dévorer entre_dévorer VER 0.30 0.34 0.01 0.07 par:pre; +entre_dévorer entre_dévorer VER 0.30 0.34 0.25 0.07 ind:pre:3p; +entre_dévorer entre_dévorer VER 0.30 0.34 0.05 0.14 inf; +entre_dévorer entre_dévorer VER 0.30 0.34 0.00 0.07 ind:pas:3p; +entre_jambe entre_jambe NOM m s 0.03 0.07 0.03 0.07 +entre_jambes entre_jambes NOM m 0.07 0.07 0.07 0.07 +entre_rail entre_rail NOM m s 0.01 0.00 0.01 0.00 +entre_regarder entre_regarder VER 0.00 0.34 0.00 0.07 ind:imp:3s; +entre_regarder entre_regarder VER 0.00 0.34 0.00 0.07 ind:pre:3p; +entre_regarder entre_regarder VER 0.00 0.34 0.00 0.14 ind:pas:3p; +entre_regarder entre_regarder VER m p 0.00 0.34 0.00 0.07 par:pas; +entre_temps entre_temps ADV 4.04 7.97 4.04 7.97 +entre_tuer entre_tuer VER 2.63 1.01 0.01 0.00 ind:imp:3p; +entre_tuer entre_tuer VER 2.63 1.01 0.00 0.14 ind:imp:3s; +entre_tuer entre_tuer VER 2.63 1.01 0.23 0.07 ind:pre:3s; +entre_tuer entre_tuer VER 2.63 1.01 0.55 0.07 ind:pre:3p; +entre_tuer entre_tuer VER 2.63 1.01 1.33 0.68 inf; +entre_tuer entre_tuer VER 2.63 1.01 0.14 0.00 ind:fut:3p; +entre_tuer entre_tuer VER 2.63 1.01 0.03 0.00 imp:pre:2p;ind:pre:2p; +entre_tuer entre_tuer VER 2.63 1.01 0.01 0.00 ind:imp:1p; +entre_tuer entre_tuer VER m p 2.63 1.01 0.34 0.07 par:pas; +entre entre PRE 372.72 833.99 372.72 833.99 +entrebattre entrebattre VER 0.00 0.07 0.00 0.07 inf; +entrebâilla entrebâiller VER 0.12 5.88 0.00 0.88 ind:pas:3s; +entrebâillaient entrebâiller VER 0.12 5.88 0.00 0.27 ind:imp:3p; +entrebâillais entrebâiller VER 0.12 5.88 0.00 0.07 ind:imp:1s; +entrebâillait entrebâiller VER 0.12 5.88 0.00 0.41 ind:imp:3s; +entrebâillant entrebâiller VER 0.12 5.88 0.10 0.20 par:pre; +entrebâille entrebâiller VER 0.12 5.88 0.00 1.01 ind:pre:1s;ind:pre:3s; +entrebâillement entrebâillement NOM m s 0.02 3.51 0.02 3.51 +entrebâillent entrebâiller VER 0.12 5.88 0.00 0.07 ind:pre:3p; +entrebâiller entrebâiller VER 0.12 5.88 0.00 0.47 inf; +entrebâillerait entrebâiller VER 0.12 5.88 0.00 0.07 cnd:pre:3s; +entrebâilleur entrebâilleur NOM m s 0.14 0.00 0.14 0.00 +entrebâillèrent entrebâiller VER 0.12 5.88 0.00 0.07 ind:pas:3p; +entrebâillé entrebâiller VER m s 0.12 5.88 0.01 0.47 par:pas; +entrebâillée entrebâillé ADJ f s 0.38 3.11 0.38 2.03 +entrebâillées entrebâiller VER f p 0.12 5.88 0.00 0.07 par:pas; +entrebâillés entrebâillé ADJ m p 0.38 3.11 0.00 0.34 +entrecôte entrecôte NOM f s 0.41 1.01 0.25 0.81 +entrecôtes entrecôte NOM f p 0.41 1.01 0.16 0.20 +entrechat entrechat NOM m s 0.21 0.95 0.20 0.14 +entrechats entrechat NOM m p 0.21 0.95 0.01 0.81 +entrechoc entrechoc NOM m s 0.00 0.14 0.00 0.07 +entrechocs entrechoc NOM m p 0.00 0.14 0.00 0.07 +entrechoquaient entrechoquer VER 0.19 5.81 0.03 1.01 ind:imp:3p; +entrechoquait entrechoquer VER 0.19 5.81 0.00 0.07 ind:imp:3s; +entrechoquant entrechoquer VER 0.19 5.81 0.01 0.68 par:pre; +entrechoque entrechoquer VER 0.19 5.81 0.00 0.07 ind:pre:1s; +entrechoquement entrechoquement NOM m s 0.00 0.07 0.00 0.07 +entrechoquent entrechoquer VER 0.19 5.81 0.10 1.08 ind:pre:3p; +entrechoquer entrechoquer VER 0.19 5.81 0.02 0.54 inf; +entrechoqueront entrechoquer VER 0.19 5.81 0.01 0.00 ind:fut:3p; +entrechoquions entrechoquer VER 0.19 5.81 0.00 0.07 ind:imp:1p; +entrechoquèrent entrechoquer VER 0.19 5.81 0.00 0.27 ind:pas:3p; +entrechoqué entrechoquer VER m s 0.19 5.81 0.00 0.41 par:pas; +entrechoquées entrechoquer VER f p 0.19 5.81 0.00 0.54 par:pas; +entrechoqués entrechoquer VER m p 0.19 5.81 0.02 1.08 par:pas; +entreclos entreclore VER m s 0.00 0.07 0.00 0.07 par:pas; +entrecloses entreclos ADJ f p 0.00 0.07 0.00 0.07 +entrecoupaient entrecouper VER 0.06 3.85 0.00 0.07 ind:imp:3p; +entrecoupais entrecouper VER 0.06 3.85 0.00 0.07 ind:imp:1s; +entrecoupait entrecouper VER 0.06 3.85 0.00 0.20 ind:imp:3s; +entrecoupant entrecouper VER 0.06 3.85 0.00 0.07 par:pre; +entrecoupe entrecouper VER 0.06 3.85 0.00 0.07 ind:pre:3s; +entrecoupent entrecouper VER 0.06 3.85 0.01 0.00 ind:pre:3p; +entrecouper entrecouper VER 0.06 3.85 0.00 0.07 inf; +entrecoupé entrecouper VER m s 0.06 3.85 0.03 1.01 par:pas; +entrecoupée entrecoupé ADJ f s 0.01 0.95 0.01 0.34 +entrecoupées entrecouper VER f p 0.06 3.85 0.01 0.61 par:pas; +entrecoupés entrecouper VER m p 0.06 3.85 0.01 0.74 par:pas; +entrecroisaient entrecroiser VER 0.28 5.54 0.00 1.49 ind:imp:3p; +entrecroisait entrecroiser VER 0.28 5.54 0.00 0.14 ind:imp:3s; +entrecroisant entrecroiser VER 0.28 5.54 0.00 0.95 par:pre; +entrecroise entrecroiser VER 0.28 5.54 0.00 0.07 ind:pre:3s; +entrecroisement entrecroisement NOM m s 0.00 0.68 0.00 0.61 +entrecroisements entrecroisement NOM m p 0.00 0.68 0.00 0.07 +entrecroisent entrecroiser VER 0.28 5.54 0.16 0.68 ind:pre:3p; +entrecroiser entrecroiser VER 0.28 5.54 0.02 0.00 inf; +entrecroisèrent entrecroiser VER 0.28 5.54 0.00 0.20 ind:pas:3p; +entrecroisé entrecroiser VER m s 0.28 5.54 0.02 0.00 par:pas; +entrecroisées entrecroiser VER f p 0.28 5.54 0.03 1.08 par:pas; +entrecroisés entrecroiser VER m p 0.28 5.54 0.04 0.95 par:pas; +entrecuisse entrecuisse NOM m s 0.22 0.68 0.22 0.68 +entredéchire entredéchirer VER 0.01 0.07 0.01 0.07 ind:pre:3s;sub:pre:3s; +entredévorait entredévorer VER 0.01 0.07 0.01 0.00 ind:imp:3s; +entredévorer entredévorer VER 0.01 0.07 0.00 0.07 inf; +entrefaites entrefaite NOM f p 0.00 2.03 0.00 2.03 +entreferma entrefermer VER 0.00 0.20 0.00 0.07 ind:pas:3s; +entrefermée entrefermer VER f s 0.00 0.20 0.00 0.07 par:pas; +entrefermées entrefermer VER f p 0.00 0.20 0.00 0.07 par:pas; +entrefilet entrefilet NOM m s 0.08 1.55 0.07 1.28 +entrefilets entrefilet NOM m p 0.08 1.55 0.01 0.27 +entregent entregent NOM m s 0.14 0.41 0.14 0.41 +entrejambe entrejambe NOM m s 0.80 1.49 0.76 1.35 +entrejambes entrejambe NOM m p 0.80 1.49 0.04 0.14 +entrelace entrelacer VER 0.71 2.03 0.02 0.14 imp:pre:2s;ind:pre:3s; +entrelacement entrelacement NOM m s 0.01 0.34 0.01 0.34 +entrelacent entrelacer VER 0.71 2.03 0.13 0.27 ind:pre:3p; +entrelacer entrelacer VER 0.71 2.03 0.03 0.14 inf; +entrelacs entrelacs NOM m 0.31 2.84 0.31 2.84 +entrelacèrent entrelacer VER 0.71 2.03 0.00 0.07 ind:pas:3p; +entrelacé entrelacer VER m s 0.71 2.03 0.04 0.20 par:pas; +entrelacée entrelacer VER f s 0.71 2.03 0.01 0.07 par:pas; +entrelacées entrelacer VER f p 0.71 2.03 0.05 0.34 par:pas; +entrelacés entrelacer VER m p 0.71 2.03 0.43 0.34 par:pas; +entrelarde entrelarder VER 0.00 0.34 0.00 0.07 ind:pre:3s; +entrelarder entrelarder VER 0.00 0.34 0.00 0.07 inf; +entrelardé entrelardé ADJ m s 0.00 0.07 0.00 0.07 +entrelardée entrelarder VER f s 0.00 0.34 0.00 0.07 par:pas; +entrelardées entrelarder VER f p 0.00 0.34 0.00 0.07 par:pas; +entrelardés entrelarder VER m p 0.00 0.34 0.00 0.07 par:pas; +entrelaçaient entrelacer VER 0.71 2.03 0.00 0.41 ind:imp:3p; +entrelaçait entrelacer VER 0.71 2.03 0.00 0.07 ind:imp:3s; +entremet entremettre VER 0.01 0.81 0.00 0.14 ind:pre:3s; +entremets entremets NOM m 0.03 1.42 0.03 1.42 +entremettait entremettre VER 0.01 0.81 0.00 0.07 ind:imp:3s; +entremetteur entremetteur NOM m s 0.92 1.01 0.68 0.61 +entremetteurs entremetteur NOM m p 0.92 1.01 0.09 0.14 +entremetteuse entremetteur NOM f s 0.92 1.01 0.16 0.27 +entremettre entremettre VER 0.01 0.81 0.00 0.27 inf; +entremis entremettre VER m s 0.01 0.81 0.00 0.14 par:pas; +entremise entremise NOM f s 0.16 1.49 0.16 1.49 +entremit entremettre VER 0.01 0.81 0.00 0.20 ind:pas:3s; +entremêlaient entremêler VER 0.37 2.91 0.00 0.88 ind:imp:3p; +entremêlait entremêler VER 0.37 2.91 0.00 0.14 ind:imp:3s; +entremêlant entremêler VER 0.37 2.91 0.01 0.34 par:pre; +entremêle entremêler VER 0.37 2.91 0.00 0.14 ind:pre:3s; +entremêlement entremêlement NOM m s 0.00 0.47 0.00 0.47 +entremêlent entremêler VER 0.37 2.91 0.16 0.20 ind:pre:3p; +entremêlé entremêler VER m s 0.37 2.91 0.01 0.07 par:pas; +entremêlées entremêler VER f p 0.37 2.91 0.04 0.34 par:pas; +entremêlés entremêler VER m p 0.37 2.91 0.15 0.81 par:pas; +entrent entrer VER 450.11 398.38 6.82 7.30 ind:pre:3p; +entrepôt entrepôt NOM m s 9.75 8.58 7.47 2.36 +entrepôts entrepôt NOM m p 9.75 8.58 2.28 6.22 +entrepont entrepont NOM m s 0.13 0.74 0.13 0.68 +entreponts entrepont NOM m p 0.13 0.74 0.00 0.07 +entreposage entreposage NOM m s 0.11 0.00 0.11 0.00 +entreposais entreposer VER 0.94 3.31 0.00 0.07 ind:imp:1s; +entreposait entreposer VER 0.94 3.31 0.01 0.41 ind:imp:3s; +entrepose entreposer VER 0.94 3.31 0.10 0.20 ind:pre:3s; +entreposent entreposer VER 0.94 3.31 0.01 0.07 ind:pre:3p; +entreposer entreposer VER 0.94 3.31 0.36 0.68 inf; +entreposerait entreposer VER 0.94 3.31 0.00 0.07 cnd:pre:3s; +entreposez entreposer VER 0.94 3.31 0.03 0.00 imp:pre:2p;ind:pre:2p; +entreposions entreposer VER 0.94 3.31 0.01 0.07 ind:imp:1p; +entreposé entreposer VER m s 0.94 3.31 0.14 0.68 par:pas; +entreposée entreposer VER f s 0.94 3.31 0.04 0.07 par:pas; +entreposées entreposer VER f p 0.94 3.31 0.09 0.14 par:pas; +entreposés entreposer VER m p 0.94 3.31 0.15 0.88 par:pas; +entreprîmes entreprendre VER 6.78 47.84 0.12 0.14 ind:pas:1p; +entreprît entreprendre VER 6.78 47.84 0.01 0.14 sub:imp:3s; +entreprenaient entreprendre VER 6.78 47.84 0.01 0.47 ind:imp:3p; +entreprenais entreprendre VER 6.78 47.84 0.03 0.47 ind:imp:1s;ind:imp:2s; +entreprenait entreprendre VER 6.78 47.84 0.12 2.64 ind:imp:3s; +entreprenant entreprendre VER 6.78 47.84 0.46 0.88 par:pre; +entreprenante entreprenant ADJ f s 0.48 2.09 0.16 0.27 +entreprenantes entreprenant ADJ f p 0.48 2.09 0.02 0.07 +entreprenants entreprenant ADJ m p 0.48 2.09 0.05 0.27 +entreprend entreprendre VER 6.78 47.84 0.40 2.84 ind:pre:3s; +entreprendrai entreprendre VER 6.78 47.84 0.01 0.14 ind:fut:1s; +entreprendraient entreprendre VER 6.78 47.84 0.01 0.20 cnd:pre:3p; +entreprendrais entreprendre VER 6.78 47.84 0.02 0.14 cnd:pre:1s; +entreprendrait entreprendre VER 6.78 47.84 0.02 0.74 cnd:pre:3s; +entreprendras entreprendre VER 6.78 47.84 0.11 0.00 ind:fut:2s; +entreprendre entreprendre VER 6.78 47.84 2.38 11.42 inf; +entreprendrez entreprendre VER 6.78 47.84 0.01 0.07 ind:fut:2p; +entreprendrons entreprendre VER 6.78 47.84 0.02 0.07 ind:fut:1p; +entreprends entreprendre VER 6.78 47.84 0.64 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entrepreneur entrepreneur NOM m s 4.88 2.16 3.24 1.35 +entrepreneurs entrepreneur NOM m p 4.88 2.16 1.62 0.74 +entrepreneuse entrepreneur NOM f s 4.88 2.16 0.03 0.00 +entrepreneuses entrepreneur NOM f p 4.88 2.16 0.00 0.07 +entreprenez entreprendre VER 6.78 47.84 0.13 0.14 imp:pre:2p;ind:pre:2p; +entrepreniez entreprendre VER 6.78 47.84 0.02 0.07 ind:imp:2p; +entreprenions entreprendre VER 6.78 47.84 0.00 0.20 ind:imp:1p; +entreprenne entreprendre VER 6.78 47.84 0.01 0.41 sub:pre:1s;sub:pre:3s; +entreprennent entreprendre VER 6.78 47.84 0.07 0.74 ind:pre:3p; +entreprenons entreprendre VER 6.78 47.84 0.27 0.07 ind:pre:1p; +entreprirent entreprendre VER 6.78 47.84 0.00 1.28 ind:pas:3p; +entrepris entreprendre VER m 6.78 47.84 0.99 10.74 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +entreprise entreprise NOM f s 28.36 38.31 22.79 29.05 +entreprises entreprise NOM f p 28.36 38.31 5.57 9.26 +entreprit entreprendre VER 6.78 47.84 0.34 10.34 ind:pas:3s; +entrer entrer VER 450.11 398.38 160.13 109.26 inf;; +entrera entrer VER 450.11 398.38 3.06 1.76 ind:fut:3s; +entrerai entrer VER 450.11 398.38 1.84 1.28 ind:fut:1s; +entreraient entrer VER 450.11 398.38 0.05 0.61 cnd:pre:3p; +entrerais entrer VER 450.11 398.38 0.54 0.41 cnd:pre:1s;cnd:pre:2s; +entrerait entrer VER 450.11 398.38 0.58 2.23 cnd:pre:3s; +entreras entrer VER 450.11 398.38 0.68 0.81 ind:fut:2s; +entreregardèrent entreregarder VER 0.00 0.07 0.00 0.07 ind:pas:3p; +entrerez entrer VER 450.11 398.38 1.24 0.27 ind:fut:2p; +entrerions entrer VER 450.11 398.38 0.17 0.07 cnd:pre:1p; +entrerons entrer VER 450.11 398.38 0.57 0.27 ind:fut:1p; +entreront entrer VER 450.11 398.38 0.96 0.88 ind:fut:3p; +entres entrer VER 450.11 398.38 7.18 0.81 ind:pre:1p;ind:pre:2s;sub:pre:2s; +entresol entresol NOM m s 0.05 1.35 0.05 1.28 +entresols entresol NOM m p 0.05 1.35 0.00 0.07 +entretînmes entretenir VER 13.27 46.42 0.00 0.07 ind:pas:1p; +entretînt entretenir VER 13.27 46.42 0.00 0.14 sub:imp:3s; +entretenaient entretenir VER 13.27 46.42 0.05 2.70 ind:imp:3p; +entretenais entretenir VER 13.27 46.42 0.10 0.88 ind:imp:1s;ind:imp:2s; +entretenait entretenir VER 13.27 46.42 0.39 8.85 ind:imp:3s; +entretenant entretenir VER 13.27 46.42 0.04 1.08 par:pre; +entreteneur entreteneur NOM m s 0.01 0.07 0.00 0.07 +entreteneuse entreteneur NOM f s 0.01 0.07 0.01 0.00 +entretenez entretenir VER 13.27 46.42 0.27 0.14 imp:pre:2p;ind:pre:2p; +entreteniez entretenir VER 13.27 46.42 0.07 0.00 ind:imp:2p; +entretenions entretenir VER 13.27 46.42 0.10 0.61 ind:imp:1p; +entretenir entretenir VER 13.27 46.42 8.07 17.43 inf; +entretenons entretenir VER 13.27 46.42 0.09 0.14 imp:pre:1p;ind:pre:1p; +entretenu entretenir VER m s 13.27 46.42 0.42 3.24 par:pas; +entretenue entretenir VER f s 13.27 46.42 0.52 1.22 par:pas; +entretenues entretenu ADJ f p 0.93 4.05 0.04 0.68 +entretenus entretenir VER m p 13.27 46.42 0.08 0.95 par:pas; +entretien entretien NOM m s 18.92 27.77 16.72 20.54 +entretiendra entretenir VER 13.27 46.42 0.14 0.00 ind:fut:3s; +entretiendrai entretenir VER 13.27 46.42 0.02 0.07 ind:fut:1s; +entretiendraient entretenir VER 13.27 46.42 0.00 0.14 cnd:pre:3p; +entretiendrait entretenir VER 13.27 46.42 0.02 0.20 cnd:pre:3s; +entretiendras entretenir VER 13.27 46.42 0.14 0.00 ind:fut:2s; +entretiendrez entretenir VER 13.27 46.42 0.02 0.07 ind:fut:2p; +entretiendrons entretenir VER 13.27 46.42 0.01 0.00 ind:fut:1p; +entretienne entretenir VER 13.27 46.42 0.28 0.34 sub:pre:1s;sub:pre:3s; +entretiennent entretenir VER 13.27 46.42 0.20 1.55 ind:pre:3p; +entretiennes entretenir VER 13.27 46.42 0.02 0.07 sub:pre:2s; +entretiens entretien NOM m p 18.92 27.77 2.20 7.23 +entretient entretenir VER 13.27 46.42 1.27 3.38 ind:pre:3s; +entretinrent entretenir VER 13.27 46.42 0.00 0.34 ind:pas:3p; +entretins entretenir VER 13.27 46.42 0.01 0.14 ind:pas:1s; +entretint entretenir VER 13.27 46.42 0.00 1.01 ind:pas:3s; +entretissait entretisser VER 0.00 0.27 0.00 0.07 ind:imp:3s; +entretissé entretisser VER m s 0.00 0.27 0.00 0.14 par:pas; +entretissées entretisser VER f p 0.00 0.27 0.00 0.07 par:pas; +entretoisaient entretoiser VER 0.00 0.07 0.00 0.07 ind:imp:3p; +entretoise entretoise NOM f s 0.01 0.00 0.01 0.00 +entretoisement entretoisement NOM m s 0.00 0.07 0.00 0.07 +entretuaient entretuer VER 4.54 0.34 0.09 0.00 ind:imp:3p; +entretuant entretuer VER 4.54 0.34 0.13 0.00 par:pre; +entretue entretuer VER 4.54 0.34 0.28 0.00 ind:pre:3s; +entretuent entretuer VER 4.54 0.34 0.89 0.07 ind:pre:3p; +entretuer entretuer VER 4.54 0.34 2.79 0.20 ind:pre:2p;inf; +entretueraient entretuer VER 4.54 0.34 0.01 0.00 cnd:pre:3p; +entretuerait entretuer VER 4.54 0.34 0.01 0.07 cnd:pre:3s; +entretueront entretuer VER 4.54 0.34 0.04 0.00 ind:fut:3p; +entretuez entretuer VER 4.54 0.34 0.07 0.00 imp:pre:2p;ind:pre:2p; +entretuées entretuer VER f p 4.54 0.34 0.10 0.00 par:pas; +entretués entretuer VER m p 4.54 0.34 0.14 0.00 par:pas; +entrevît entrevoir VER 2.44 29.53 0.03 0.07 sub:imp:3s; +entreverrai entrevoir VER 2.44 29.53 0.00 0.07 ind:fut:1s; +entrevirent entrevoir VER 2.44 29.53 0.00 0.07 ind:pas:3p; +entrevis entrevoir VER 2.44 29.53 0.03 1.08 ind:pas:1s; +entrevit entrevoir VER 2.44 29.53 0.04 2.23 ind:pas:3s; +entrevoie entrevoir VER 2.44 29.53 0.00 0.07 sub:pre:3s; +entrevoient entrevoir VER 2.44 29.53 0.02 0.41 ind:pre:3p; +entrevoir entrevoir VER 2.44 29.53 1.00 8.65 inf; +entrevois entrevoir VER 2.44 29.53 0.81 1.96 imp:pre:2s;ind:pre:1s;ind:pre:2s; +entrevoit entrevoir VER 2.44 29.53 0.15 1.55 ind:pre:3s; +entrevous entrevous NOM m 0.01 0.00 0.01 0.00 +entrevoyaient entrevoir VER 2.44 29.53 0.00 0.27 ind:imp:3p; +entrevoyais entrevoir VER 2.44 29.53 0.14 1.62 ind:imp:1s; +entrevoyait entrevoir VER 2.44 29.53 0.02 1.69 ind:imp:3s; +entrevoyant entrevoir VER 2.44 29.53 0.00 0.34 par:pre; +entrevoyons entrevoir VER 2.44 29.53 0.00 0.20 ind:pre:1p; +entrevu entrevoir VER m s 2.44 29.53 0.17 4.86 par:pas; +entrevue entrevue NOM f s 3.28 9.59 2.97 8.85 +entrevues entrevue NOM f p 3.28 9.59 0.31 0.74 +entrevus entrevoir VER m p 2.44 29.53 0.00 1.15 par:pas; +entrez entrer VER 450.11 398.38 104.85 12.70 imp:pre:2p;ind:pre:2p; +entriez entrer VER 450.11 398.38 0.29 0.20 ind:imp:2p; +entrions entrer VER 450.11 398.38 0.12 2.09 ind:imp:1p; +entrisme entrisme NOM m s 0.00 0.07 0.00 0.07 +entrâmes entrer VER 450.11 398.38 0.00 1.15 ind:pas:1p; +entrons entrer VER 450.11 398.38 6.05 4.39 imp:pre:1p;ind:pre:1p; +entropie entropie NOM f s 0.19 0.27 0.19 0.27 +entropique entropique ADJ s 0.07 0.00 0.05 0.00 +entropiques entropique ADJ f p 0.07 0.00 0.01 0.00 +entrât entrer VER 450.11 398.38 0.14 0.95 sub:imp:3s; +entrouvert entrouvrir VER m s 0.95 19.59 0.10 1.62 par:pas; +entrouverte entrouvert ADJ f s 0.70 10.07 0.47 6.55 +entrouvertes entrouvert ADJ f p 0.70 10.07 0.11 2.09 +entrouverts entrouvert ADJ m p 0.70 10.07 0.10 0.54 +entrouverture entrouverture NOM f s 0.00 0.07 0.00 0.07 +entrouvrît entrouvrir VER 0.95 19.59 0.00 0.07 sub:imp:3s; +entrouvraient entrouvrir VER 0.95 19.59 0.00 0.47 ind:imp:3p; +entrouvrait entrouvrir VER 0.95 19.59 0.14 1.76 ind:imp:3s; +entrouvrant entrouvrir VER 0.95 19.59 0.00 0.68 par:pre; +entrouvre entrouvrir VER 0.95 19.59 0.20 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entrouvrent entrouvrir VER 0.95 19.59 0.02 0.81 ind:pre:3p; +entrouvrir entrouvrir VER 0.95 19.59 0.21 2.30 inf; +entrouvrirait entrouvrir VER 0.95 19.59 0.00 0.07 cnd:pre:3s; +entrouvrirent entrouvrir VER 0.95 19.59 0.00 0.14 ind:pas:3p; +entrouvris entrouvrir VER 0.95 19.59 0.00 0.14 ind:pas:1s; +entrouvrit entrouvrir VER 0.95 19.59 0.00 3.72 ind:pas:3s; +entrèrent entrer VER 450.11 398.38 0.20 10.61 ind:pas:3p; +entré entrer VER m s 450.11 398.38 36.90 32.43 par:pas; +entrée_sortie entrée_sortie NOM f s 0.01 0.00 0.01 0.00 +entrée entrée NOM f s 48.08 118.78 43.75 113.72 +entrées entrée NOM f p 48.08 118.78 4.33 5.07 +entrés entrer VER m p 450.11 398.38 8.81 11.22 par:pas; +entubait entuber VER 3.11 1.35 0.02 0.07 ind:imp:3s; +entube entuber VER 3.11 1.35 0.52 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entubent entuber VER 3.11 1.35 0.12 0.00 ind:pre:3p; +entuber entuber VER 3.11 1.35 1.77 0.68 inf; +entuberais entuber VER 3.11 1.35 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +entubes entuber VER 3.11 1.35 0.18 0.00 ind:pre:2s; +entubez entuber VER 3.11 1.35 0.04 0.00 imp:pre:2p;ind:pre:2p; +entubé entuber VER m s 3.11 1.35 0.32 0.20 par:pas; +entubée entuber VER f s 3.11 1.35 0.03 0.07 par:pas; +entubés entuber VER m p 3.11 1.35 0.08 0.00 par:pas; +entéléchies entéléchie NOM f p 0.00 0.07 0.00 0.07 +enténèbre enténébrer VER 0.14 2.36 0.14 0.14 ind:pre:3s; +enténèbrent enténébrer VER 0.14 2.36 0.00 0.07 ind:pre:3p; +enténébra enténébrer VER 0.14 2.36 0.00 0.07 ind:pas:3s; +enténébrait enténébrer VER 0.14 2.36 0.00 0.20 ind:imp:3s; +enténébrant enténébrer VER 0.14 2.36 0.00 0.34 par:pre; +enténébrer enténébrer VER 0.14 2.36 0.00 0.14 inf; +enténébré enténébrer VER m s 0.14 2.36 0.01 0.54 par:pas; +enténébrée enténébrer VER f s 0.14 2.36 0.00 0.54 par:pas; +enténébrées enténébrer VER f p 0.14 2.36 0.00 0.14 par:pas; +enténébrés enténébrer VER m p 0.14 2.36 0.00 0.20 par:pas; +enturbanner enturbanner VER 0.01 0.54 0.00 0.07 inf; +enturbanné enturbanné ADJ m s 0.06 1.22 0.05 0.47 +enturbannée enturbanner VER f s 0.01 0.54 0.01 0.07 par:pas; +enturbannées enturbanné ADJ f p 0.06 1.22 0.00 0.07 +enturbannés enturbanné ADJ m p 0.06 1.22 0.01 0.41 +enture enture NOM f s 0.14 0.00 0.14 0.00 +entérinais entériner VER 0.52 1.35 0.00 0.14 ind:imp:1s; +entérinait entériner VER 0.52 1.35 0.00 0.20 ind:imp:3s; +entérinant entériner VER 0.52 1.35 0.00 0.07 par:pre; +entérine entériner VER 0.52 1.35 0.03 0.00 ind:pre:3s; +entérinement entérinement NOM m s 0.00 0.07 0.00 0.07 +entériner entériner VER 0.52 1.35 0.42 0.41 inf; +entériné entériner VER m s 0.52 1.35 0.04 0.27 par:pas; +entérinée entériner VER f s 0.52 1.35 0.03 0.14 par:pas; +entérinées entériner VER f p 0.52 1.35 0.00 0.14 par:pas; +entérique entérique ADJ s 0.01 0.00 0.01 0.00 +entérite entérite NOM f s 0.01 0.14 0.01 0.14 +entérocolite entérocolite NOM f s 0.01 0.00 0.01 0.00 +entérovirus entérovirus NOM m 0.03 0.00 0.03 0.00 +entêta entêter VER 1.65 6.89 0.00 0.27 ind:pas:3s; +entêtai entêter VER 1.65 6.89 0.00 0.41 ind:pas:1s; +entêtaient entêter VER 1.65 6.89 0.00 0.34 ind:imp:3p; +entêtais entêter VER 1.65 6.89 0.00 0.07 ind:imp:1s; +entêtait entêter VER 1.65 6.89 0.00 1.62 ind:imp:3s; +entêtant entêtant ADJ m s 0.05 2.09 0.04 0.47 +entêtante entêtant ADJ f s 0.05 2.09 0.01 1.08 +entêtantes entêtant ADJ f p 0.05 2.09 0.00 0.20 +entêtants entêtant ADJ m p 0.05 2.09 0.00 0.34 +entête entêter VER 1.65 6.89 0.38 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +entêtement entêtement NOM m s 1.27 5.74 1.27 5.61 +entêtements entêtement NOM m p 1.27 5.74 0.00 0.14 +entêtent entêter VER 1.65 6.89 0.14 0.07 ind:pre:3p; +entêter entêter VER 1.65 6.89 0.18 0.95 inf; +entêteraient entêter VER 1.65 6.89 0.00 0.07 cnd:pre:3p; +entêterais entêter VER 1.65 6.89 0.00 0.07 cnd:pre:1s; +entêtes entêter VER 1.65 6.89 0.42 0.14 ind:pre:2s; +entêtez entêter VER 1.65 6.89 0.16 0.14 ind:pre:2p; +entêtiez entêter VER 1.65 6.89 0.00 0.07 ind:imp:2p; +entêtons entêter VER 1.65 6.89 0.00 0.20 ind:pre:1p; +entêtât entêter VER 1.65 6.89 0.00 0.07 sub:imp:3s; +entêté entêté NOM m s 0.73 0.81 0.58 0.68 +entêtée entêté ADJ f s 0.38 1.35 0.08 0.74 +entêtées entêté ADJ f p 0.38 1.35 0.01 0.14 +entêtés entêté NOM m p 0.73 0.81 0.15 0.07 +envahît envahir VER 17.37 57.70 0.00 0.14 sub:imp:3s; +envahi envahir VER m s 17.37 57.70 4.98 11.76 par:pas; +envahie envahir VER f s 17.37 57.70 1.11 5.88 par:pas; +envahies envahir VER f p 17.37 57.70 0.26 1.69 par:pas; +envahir envahir VER 17.37 57.70 3.83 8.31 inf; +envahira envahir VER 17.37 57.70 0.26 0.20 ind:fut:3s; +envahirai envahir VER 17.37 57.70 0.03 0.00 ind:fut:1s; +envahiraient envahir VER 17.37 57.70 0.00 0.20 cnd:pre:3p; +envahirait envahir VER 17.37 57.70 0.03 0.34 cnd:pre:3s; +envahirent envahir VER 17.37 57.70 0.25 1.28 ind:pas:3p; +envahirez envahir VER 17.37 57.70 0.01 0.00 ind:fut:2p; +envahirons envahir VER 17.37 57.70 0.02 0.07 ind:fut:1p; +envahiront envahir VER 17.37 57.70 0.24 0.00 ind:fut:3p; +envahis envahir VER m p 17.37 57.70 0.91 1.89 ind:pre:1s;ind:pre:2s;par:pas;par:pas; +envahissaient envahir VER 17.37 57.70 0.24 1.96 ind:imp:3p; +envahissait envahir VER 17.37 57.70 0.62 8.72 ind:imp:3s; +envahissant envahissant ADJ m s 1.08 3.18 0.33 0.88 +envahissante envahissant ADJ f s 1.08 3.18 0.70 1.42 +envahissantes envahissant ADJ f p 1.08 3.18 0.04 0.27 +envahissants envahissant ADJ m p 1.08 3.18 0.01 0.61 +envahisse envahir VER 17.37 57.70 0.11 0.34 sub:pre:1s;sub:pre:3s; +envahissement envahissement NOM m s 0.02 1.49 0.02 1.42 +envahissements envahissement NOM m p 0.02 1.49 0.00 0.07 +envahissent envahir VER 17.37 57.70 1.05 1.96 ind:pre:3p; +envahisseur envahisseur NOM m s 3.64 8.31 1.88 6.42 +envahisseurs envahisseur NOM m p 3.64 8.31 1.77 1.89 +envahissez envahir VER 17.37 57.70 0.24 0.00 imp:pre:2p;ind:pre:2p; +envahissiez envahir VER 17.37 57.70 0.02 0.00 ind:imp:2p; +envahit envahir VER 17.37 57.70 2.97 12.36 ind:pre:3s;ind:pas:3s; +envasait envaser VER 0.01 0.41 0.00 0.07 ind:imp:3s; +envasement envasement NOM m s 0.00 0.07 0.00 0.07 +envaser envaser VER 0.01 0.41 0.01 0.00 inf; +envasé envaser VER m s 0.01 0.41 0.00 0.20 par:pas; +envasée envaser VER f s 0.01 0.41 0.00 0.07 par:pas; +envasées envaser VER f p 0.01 0.41 0.00 0.07 par:pas; +enveloppa envelopper VER 5.21 46.49 0.17 4.39 ind:pas:3s; +enveloppai envelopper VER 5.21 46.49 0.14 0.34 ind:pas:1s; +enveloppaient envelopper VER 5.21 46.49 0.04 2.03 ind:imp:3p; +enveloppais envelopper VER 5.21 46.49 0.06 0.20 ind:imp:1s;ind:imp:2s; +enveloppait envelopper VER 5.21 46.49 0.20 9.12 ind:imp:3s; +enveloppant envelopper VER 5.21 46.49 0.04 1.69 par:pre; +enveloppante enveloppant ADJ f s 0.27 1.62 0.23 0.68 +enveloppantes enveloppant ADJ f p 0.27 1.62 0.00 0.07 +enveloppants enveloppant ADJ m p 0.27 1.62 0.00 0.27 +enveloppe enveloppe NOM f s 13.23 32.84 11.40 26.22 +enveloppement enveloppement NOM m s 0.16 0.95 0.16 0.61 +enveloppements enveloppement NOM m p 0.16 0.95 0.00 0.34 +enveloppent envelopper VER 5.21 46.49 0.34 1.35 ind:pre:3p; +envelopper envelopper VER 5.21 46.49 0.65 4.39 inf; +enveloppera envelopper VER 5.21 46.49 0.01 0.14 ind:fut:3s; +envelopperaient envelopper VER 5.21 46.49 0.14 0.07 cnd:pre:3p; +envelopperait envelopper VER 5.21 46.49 0.02 0.54 cnd:pre:3s; +envelopperez envelopper VER 5.21 46.49 0.00 0.07 ind:fut:2p; +enveloppes enveloppe NOM f p 13.23 32.84 1.84 6.62 +enveloppeur enveloppeur NOM m s 0.00 0.07 0.00 0.07 +enveloppez envelopper VER 5.21 46.49 0.41 0.14 imp:pre:2p;ind:pre:2p; +enveloppons envelopper VER 5.21 46.49 0.00 0.07 ind:pre:1p; +enveloppât envelopper VER 5.21 46.49 0.00 0.14 sub:imp:3s; +enveloppèrent envelopper VER 5.21 46.49 0.11 0.20 ind:pas:3p; +enveloppé enveloppé ADJ m s 1.60 10.34 0.86 4.59 +enveloppée envelopper VER f s 5.21 46.49 0.58 4.32 par:pas; +enveloppées enveloppé ADJ f p 1.60 10.34 0.20 0.74 +enveloppés envelopper VER m p 5.21 46.49 0.26 2.23 par:pas; +envenima envenimer VER 0.59 1.96 0.00 0.07 ind:pas:3s; +envenimait envenimer VER 0.59 1.96 0.00 0.20 ind:imp:3s; +envenimant envenimer VER 0.59 1.96 0.00 0.07 par:pre; +envenime envenimer VER 0.59 1.96 0.09 0.14 imp:pre:2s;ind:pre:3s; +enveniment envenimer VER 0.59 1.96 0.04 0.20 ind:pre:3p; +envenimer envenimer VER 0.59 1.96 0.28 0.95 inf; +envenimons envenimer VER 0.59 1.96 0.01 0.00 imp:pre:1p; +envenimèrent envenimer VER 0.59 1.96 0.00 0.07 ind:pas:3p; +envenimé envenimé VER m s 0.27 0.00 0.27 0.00 par:pas; +envenimée envenimé ADJ f s 0.04 0.00 0.03 0.00 +envenimées envenimer VER f p 0.59 1.96 0.10 0.00 par:pas; +envenimés envenimer VER m p 0.59 1.96 0.01 0.07 par:pas; +envergure envergure NOM f s 1.66 5.34 1.66 5.34 +enverguée enverguer VER f s 0.00 0.07 0.00 0.07 par:pas; +enverra envoyer VER 360.16 177.64 5.89 2.03 ind:fut:3s; +enverrai envoyer VER 360.16 177.64 10.43 2.70 ind:fut:1s; +enverraient envoyer VER 360.16 177.64 0.20 0.34 cnd:pre:3p; +enverrais envoyer VER 360.16 177.64 1.68 0.41 cnd:pre:1s;cnd:pre:2s; +enverrait envoyer VER 360.16 177.64 1.77 2.77 cnd:pre:3s; +enverras envoyer VER 360.16 177.64 1.30 0.47 ind:fut:2s; +enverrez envoyer VER 360.16 177.64 1.04 0.34 ind:fut:2p; +enverriez envoyer VER 360.16 177.64 0.12 0.00 cnd:pre:2p; +enverrions envoyer VER 360.16 177.64 0.00 0.20 cnd:pre:1p; +enverrons envoyer VER 360.16 177.64 1.30 0.20 ind:fut:1p; +enverront envoyer VER 360.16 177.64 1.93 0.81 ind:fut:3p; +envers envers PRE 35.46 27.91 35.46 27.91 +envia envier VER 17.79 26.89 0.00 0.47 ind:pas:3s; +enviable enviable ADJ s 0.75 2.84 0.73 2.43 +enviables enviable ADJ p 0.75 2.84 0.02 0.41 +enviai envier VER 17.79 26.89 0.00 0.47 ind:pas:1s; +enviaient envier VER 17.79 26.89 0.01 0.88 ind:imp:3p; +enviais envier VER 17.79 26.89 0.56 2.84 ind:imp:1s;ind:imp:2s; +enviait envier VER 17.79 26.89 0.34 2.84 ind:imp:3s; +enviandait enviander VER 0.00 0.07 0.00 0.07 ind:imp:3s; +enviandé enviandé NOM m s 0.02 0.34 0.02 0.20 +enviandés enviandé NOM m p 0.02 0.34 0.00 0.14 +enviant envier VER 17.79 26.89 0.01 0.47 par:pre; +envie envie NOM f s 213.96 258.11 210.62 252.09 +envient envier VER 17.79 26.89 0.42 0.20 ind:pre:3p; +envier envier VER 17.79 26.89 1.50 3.51 inf; +enviera envier VER 17.79 26.89 0.23 0.07 ind:fut:3s; +envieraient envier VER 17.79 26.89 0.04 0.34 cnd:pre:3p; +envierais envier VER 17.79 26.89 0.11 0.07 cnd:pre:1s; +envierait envier VER 17.79 26.89 0.02 0.27 cnd:pre:3s; +envieront envier VER 17.79 26.89 0.32 0.07 ind:fut:3p; +envies envie NOM f p 213.96 258.11 3.34 6.01 +envieuse envieux ADJ f s 1.04 1.76 0.20 0.54 +envieuses envieux ADJ f p 1.04 1.76 0.20 0.00 +envieux envieux ADJ m 1.04 1.76 0.64 1.22 +enviez envier VER 17.79 26.89 0.42 0.14 imp:pre:2p;ind:pre:2p; +enviions envier VER 17.79 26.89 0.00 0.07 ind:imp:1p; +envions envier VER 17.79 26.89 0.05 0.00 imp:pre:1p;ind:pre:1p; +enviât envier VER 17.79 26.89 0.00 0.07 sub:imp:3s; +environ environ ADV 55.55 27.43 55.55 27.43 +environnaient environner VER 0.28 5.47 0.00 0.47 ind:imp:3p; +environnait environner VER 0.28 5.47 0.00 0.88 ind:imp:3s; +environnant environnant ADJ m s 0.66 2.23 0.17 0.47 +environnante environnant ADJ f s 0.66 2.23 0.29 0.54 +environnantes environnant ADJ f p 0.66 2.23 0.07 0.61 +environnants environnant ADJ m p 0.66 2.23 0.12 0.61 +environne environner VER 0.28 5.47 0.28 0.88 ind:pre:1s;ind:pre:3s; +environnement environnement NOM m s 10.19 2.77 10.07 2.64 +environnemental environnemental ADJ m s 0.46 0.00 0.16 0.00 +environnementale environnemental ADJ f s 0.46 0.00 0.12 0.00 +environnementaux environnemental ADJ m p 0.46 0.00 0.18 0.00 +environnements environnement NOM m p 10.19 2.77 0.12 0.14 +environnent environner VER 0.28 5.47 0.00 0.47 ind:pre:3p; +environner environner VER 0.28 5.47 0.00 0.07 inf; +environné environner VER m s 0.28 5.47 0.00 1.49 par:pas; +environnée environner VER f s 0.28 5.47 0.00 0.41 par:pas; +environnées environner VER f p 0.28 5.47 0.00 0.07 par:pas; +environnés environner VER m p 0.28 5.47 0.00 0.54 par:pas; +environs environ NOM m p 6.25 16.69 6.25 16.69 +envisage envisager VER 16.42 32.64 3.40 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +envisagea envisager VER 16.42 32.64 0.02 1.22 ind:pas:3s; +envisageable envisageable ADJ s 0.85 0.74 0.80 0.74 +envisageables envisageable ADJ f p 0.85 0.74 0.04 0.00 +envisageai envisager VER 16.42 32.64 0.02 0.81 ind:pas:1s; +envisageaient envisager VER 16.42 32.64 0.07 0.68 ind:imp:3p; +envisageais envisager VER 16.42 32.64 0.61 1.55 ind:imp:1s;ind:imp:2s; +envisageait envisager VER 16.42 32.64 0.47 5.47 ind:imp:3s; +envisageant envisager VER 16.42 32.64 0.01 0.81 par:pre; +envisagent envisager VER 16.42 32.64 0.44 0.41 ind:pre:3p; +envisageons envisager VER 16.42 32.64 0.30 0.34 imp:pre:1p;ind:pre:1p; +envisageât envisager VER 16.42 32.64 0.00 0.20 sub:imp:3s; +envisager envisager VER 16.42 32.64 4.83 9.39 inf; +envisagera envisager VER 16.42 32.64 0.14 0.07 ind:fut:3s; +envisagerai envisager VER 16.42 32.64 0.05 0.00 ind:fut:1s; +envisagerais envisager VER 16.42 32.64 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +envisagerait envisager VER 16.42 32.64 0.05 0.27 cnd:pre:3s; +envisageras envisager VER 16.42 32.64 0.01 0.00 ind:fut:2s; +envisagerez envisager VER 16.42 32.64 0.04 0.00 ind:fut:2p; +envisageriez envisager VER 16.42 32.64 0.17 0.00 cnd:pre:2p; +envisagerions envisager VER 16.42 32.64 0.00 0.14 cnd:pre:1p; +envisages envisager VER 16.42 32.64 1.35 0.27 ind:pre:2s; +envisagez envisager VER 16.42 32.64 1.11 0.68 imp:pre:2p;ind:pre:2p; +envisagiez envisager VER 16.42 32.64 0.20 0.00 ind:imp:2p; +envisagions envisager VER 16.42 32.64 0.04 0.54 ind:imp:1p; +envisagèrent envisager VER 16.42 32.64 0.01 0.27 ind:pas:3p; +envisagé envisager VER m s 16.42 32.64 2.61 3.58 par:pas; +envisagée envisager VER f s 16.42 32.64 0.19 1.22 par:pas; +envisagées envisager VER f p 16.42 32.64 0.04 0.41 par:pas; +envisagés envisager VER m p 16.42 32.64 0.01 0.20 par:pas; +envié envier VER m s 17.79 26.89 0.71 1.15 par:pas; +enviée envier VER f s 17.79 26.89 0.30 0.81 par:pas; +enviées envier VER f p 17.79 26.89 0.01 0.14 par:pas; +enviés envier VER m p 17.79 26.89 0.04 0.54 par:pas; +envoûtaient envoûter VER 1.81 2.16 0.00 0.07 ind:imp:3p; +envoûtait envoûter VER 1.81 2.16 0.01 0.14 ind:imp:3s; +envoûtant envoûtant ADJ m s 0.79 1.49 0.56 0.34 +envoûtante envoûtant ADJ f s 0.79 1.49 0.21 0.95 +envoûtantes envoûtant ADJ f p 0.79 1.49 0.00 0.07 +envoûtants envoûtant ADJ m p 0.79 1.49 0.02 0.14 +envoûte envoûter VER 1.81 2.16 0.32 0.34 ind:pre:1s;ind:pre:3s; +envoûtement envoûtement NOM m s 0.71 1.82 0.56 1.76 +envoûtements envoûtement NOM m p 0.71 1.82 0.14 0.07 +envoûter envoûter VER 1.81 2.16 0.12 0.34 inf; +envoûteras envoûter VER 1.81 2.16 0.01 0.00 ind:fut:2s; +envoûteur envoûteur NOM m s 0.00 0.27 0.00 0.14 +envoûteurs envoûteur NOM m p 0.00 0.27 0.00 0.14 +envoûté envoûter VER m s 1.81 2.16 0.88 0.61 par:pas; +envoûtée envoûter VER f s 1.81 2.16 0.44 0.14 par:pas; +envoûtées envoûter VER f p 1.81 2.16 0.00 0.14 par:pas; +envoûtés envoûter VER m p 1.81 2.16 0.03 0.27 par:pas; +envoi envoi NOM m s 4.46 6.96 3.47 6.28 +envoie envoyer VER 360.16 177.64 98.92 30.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +envoient envoyer VER 360.16 177.64 9.16 4.32 ind:pre:3p; +envoies envoyer VER 360.16 177.64 6.24 0.61 ind:pre:1p;ind:pre:2s;sub:pre:2s; +envois envoi NOM m p 4.46 6.96 1.00 0.68 +envol envol NOM m s 2.50 5.20 2.48 4.66 +envola envoler VER 28.82 29.86 0.43 2.43 ind:pas:3s; +envolai envoler VER 28.82 29.86 0.00 0.34 ind:pas:1s; +envolaient envoler VER 28.82 29.86 0.35 2.50 ind:imp:3p; +envolais envoler VER 28.82 29.86 0.03 0.20 ind:imp:1s;ind:imp:2s; +envolait envoler VER 28.82 29.86 0.29 2.16 ind:imp:3s; +envolant envoler VER 28.82 29.86 0.38 0.47 par:pre; +envole envoler VER 28.82 29.86 5.39 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +envolent envoler VER 28.82 29.86 4.47 2.30 ind:pre:3p; +envoler envoler VER 28.82 29.86 5.85 6.35 ind:pre:2p;inf; +envolera envoler VER 28.82 29.86 0.55 0.34 ind:fut:3s; +envolerai envoler VER 28.82 29.86 0.21 0.07 ind:fut:1s; +envoleraient envoler VER 28.82 29.86 0.00 0.41 cnd:pre:3p; +envolerais envoler VER 28.82 29.86 0.06 0.07 cnd:pre:1s; +envolerait envoler VER 28.82 29.86 0.08 0.14 cnd:pre:3s; +envolerez envoler VER 28.82 29.86 0.01 0.07 ind:fut:2p; +envolerions envoler VER 28.82 29.86 0.02 0.14 cnd:pre:1p; +envolerons envoler VER 28.82 29.86 0.05 0.00 ind:fut:1p; +envoleront envoler VER 28.82 29.86 0.04 0.07 ind:fut:3p; +envoles envoler VER 28.82 29.86 0.45 0.00 ind:pre:2s; +envolez envoler VER 28.82 29.86 0.58 0.00 imp:pre:2p;ind:pre:2p; +envolâmes envoler VER 28.82 29.86 0.00 0.07 ind:pas:1p; +envolons envoler VER 28.82 29.86 0.04 0.00 imp:pre:1p;ind:pre:1p; +envolât envoler VER 28.82 29.86 0.00 0.07 sub:imp:3s; +envols envol NOM m p 2.50 5.20 0.03 0.54 +envolèrent envoler VER 28.82 29.86 0.01 1.62 ind:pas:3p; +envolé envoler VER m s 28.82 29.86 5.05 2.84 par:pas; +envolée envoler VER f s 28.82 29.86 1.62 1.62 par:pas; +envolées envolée NOM f p 0.88 3.18 0.33 1.01 +envolés envoler VER m p 28.82 29.86 2.63 1.28 par:pas; +envoya envoyer VER 360.16 177.64 1.96 11.69 ind:pas:3s; +envoyai envoyer VER 360.16 177.64 0.26 2.30 ind:pas:1s; +envoyaient envoyer VER 360.16 177.64 0.62 2.91 ind:imp:3p; +envoyais envoyer VER 360.16 177.64 1.58 1.82 ind:imp:1s;ind:imp:2s; +envoyait envoyer VER 360.16 177.64 3.84 14.66 ind:imp:3s; +envoyant envoyer VER 360.16 177.64 1.91 4.26 par:pre; +envoyer envoyer VER 360.16 177.64 69.77 41.15 inf;;inf;;inf;;inf;;inf;;inf;;inf;; +envoyeur envoyeur NOM m s 0.21 0.41 0.21 0.34 +envoyeurs envoyeur NOM m p 0.21 0.41 0.00 0.07 +envoyez envoyer VER 360.16 177.64 31.66 2.23 imp:pre:2p;ind:pre:2p; +envoyiez envoyer VER 360.16 177.64 0.55 0.00 ind:imp:2p; +envoyions envoyer VER 360.16 177.64 0.16 0.07 ind:imp:1p; +envoyâmes envoyer VER 360.16 177.64 0.01 0.20 ind:pas:1p; +envoyons envoyer VER 360.16 177.64 2.31 0.20 imp:pre:1p;ind:pre:1p; +envoyât envoyer VER 360.16 177.64 0.00 0.68 sub:imp:3s; +envoyèrent envoyer VER 360.16 177.64 0.26 0.95 ind:pas:3p; +envoyé envoyer VER m s 360.16 177.64 82.52 35.20 par:pas; +envoyée envoyer VER f s 360.16 177.64 12.19 5.27 par:pas; +envoyées envoyer VER f p 360.16 177.64 1.97 2.57 par:pas; +envoyés envoyer VER m p 360.16 177.64 8.63 5.41 par:pas; +enzymatique enzymatique ADJ s 0.06 0.00 0.06 0.00 +enzyme enzyme NOM f s 2.00 0.34 1.26 0.00 +enzymes enzyme NOM f p 2.00 0.34 0.75 0.34 +epsilon epsilon NOM m 0.47 0.20 0.47 0.20 +erg erg NOM m s 0.02 0.07 0.01 0.00 +ergastule ergastule NOM m s 0.00 0.20 0.00 0.07 +ergastules ergastule NOM m p 0.00 0.20 0.00 0.14 +ergo ergo ADV 0.22 0.34 0.22 0.34 +ergol ergol NOM m s 0.01 0.00 0.01 0.00 +ergonomie ergonomie NOM f s 0.06 0.07 0.06 0.07 +ergonomique ergonomique ADJ s 0.08 0.00 0.08 0.00 +ergot ergot NOM m s 0.08 1.08 0.04 0.07 +ergotage ergotage NOM m s 0.01 0.00 0.01 0.00 +ergotait ergoter VER 0.43 0.68 0.00 0.07 ind:imp:3s; +ergotamine ergotamine NOM f s 0.02 0.00 0.02 0.00 +ergote ergoter VER 0.43 0.68 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ergotent ergoter VER 0.43 0.68 0.00 0.07 ind:pre:3p; +ergoter ergoter VER 0.43 0.68 0.16 0.27 inf; +ergoteur ergoteur ADJ m s 0.02 0.27 0.02 0.07 +ergoteurs ergoteur ADJ m p 0.02 0.27 0.00 0.07 +ergoteuse ergoteur ADJ f s 0.02 0.27 0.00 0.14 +ergothérapeute ergothérapeute NOM s 0.06 0.00 0.06 0.00 +ergothérapie ergothérapie NOM f s 0.07 0.00 0.07 0.00 +ergotons ergoter VER 0.43 0.68 0.10 0.07 imp:pre:1p; +ergots ergot NOM m p 0.08 1.08 0.04 1.01 +ergoté ergoté ADJ m s 0.14 0.00 0.14 0.00 +ergs erg NOM m p 0.02 0.07 0.01 0.07 +ermitage ermitage NOM m s 0.04 1.69 0.04 1.35 +ermitages ermitage NOM m p 0.04 1.69 0.00 0.34 +ermite ermite NOM m s 2.28 2.50 2.23 2.03 +ermites ermite NOM m p 2.28 2.50 0.05 0.47 +erpétologiste erpétologiste NOM s 0.02 0.00 0.02 0.00 +erra errer VER 10.44 27.36 0.41 2.16 ind:pas:3s; +errai errer VER 10.44 27.36 0.04 0.54 ind:pas:1s; +erraient errer VER 10.44 27.36 0.15 2.23 ind:imp:3p; +errais errer VER 10.44 27.36 0.12 1.28 ind:imp:1s;ind:imp:2s; +errait errer VER 10.44 27.36 0.36 3.18 ind:imp:3s; +errance errance NOM f s 0.54 4.46 0.51 2.91 +errances errance NOM f p 0.54 4.46 0.03 1.55 +errant errant ADJ m s 2.62 11.96 1.45 3.18 +errante errant ADJ f s 2.62 11.96 0.47 4.59 +errantes errant ADJ f p 2.62 11.96 0.04 1.28 +errants errant ADJ m p 2.62 11.96 0.66 2.91 +errata erratum NOM m p 0.02 0.27 0.00 0.27 +erratique erratique ADJ s 0.22 0.54 0.17 0.20 +erratiques erratique ADJ p 0.22 0.54 0.04 0.34 +erratum erratum NOM m s 0.02 0.27 0.02 0.00 +erre errer VER 10.44 27.36 3.17 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +errements errements NOM m p 0.08 1.22 0.08 1.22 +errent errer VER 10.44 27.36 0.99 1.62 ind:pre:3p; +errer errer VER 10.44 27.36 2.44 6.62 inf; +errera errer VER 10.44 27.36 0.14 0.00 ind:fut:3s; +errerai errer VER 10.44 27.36 0.03 0.07 ind:fut:1s; +erreraient errer VER 10.44 27.36 0.00 0.07 cnd:pre:3p; +errerait errer VER 10.44 27.36 0.00 0.07 cnd:pre:3s; +erreras errer VER 10.44 27.36 0.01 0.07 ind:fut:2s; +errerons errer VER 10.44 27.36 0.01 0.00 ind:fut:1p; +erreront errer VER 10.44 27.36 0.01 0.07 ind:fut:3p; +erres errer VER 10.44 27.36 0.23 0.07 ind:pre:2s; +erreur erreur NOM f s 124.15 52.09 101.33 37.84 +erreurs erreur NOM f p 124.15 52.09 22.82 14.26 +errez errer VER 10.44 27.36 0.10 0.14 imp:pre:2p;ind:pre:2p; +erriez errer VER 10.44 27.36 0.04 0.00 ind:imp:2p; +errions errer VER 10.44 27.36 0.14 0.14 ind:imp:1p; +errâmes errer VER 10.44 27.36 0.00 0.20 ind:pas:1p; +errons errer VER 10.44 27.36 0.05 0.27 imp:pre:1p;ind:pre:1p; +erroné erroné ADJ m s 2.05 0.74 0.54 0.27 +erronée erroné ADJ f s 2.05 0.74 0.44 0.07 +erronées erroné ADJ f p 2.05 0.74 0.68 0.27 +erronés erroné ADJ m p 2.05 0.74 0.40 0.14 +errèrent errer VER 10.44 27.36 0.01 0.41 ind:pas:3p; +erré errer VER m s 10.44 27.36 0.90 2.57 par:pas; +errés errer VER m p 10.44 27.36 0.01 0.00 par:pas; +ers ers NOM m 0.45 0.00 0.45 0.00 +ersatz ersatz NOM m 0.21 1.62 0.21 1.62 +es être AUX 8074.24 6501.82 539.36 77.70 ind:pre:2s; +esbaudir esbaudir VER 0.00 0.07 0.00 0.07 inf; +esbignais esbigner VER 0.00 0.95 0.00 0.14 ind:imp:1s; +esbignait esbigner VER 0.00 0.95 0.00 0.07 ind:imp:3s; +esbigne esbigner VER 0.00 0.95 0.00 0.20 ind:pre:3s; +esbignent esbigner VER 0.00 0.95 0.00 0.07 ind:pre:3p; +esbigner esbigner VER 0.00 0.95 0.00 0.20 inf; +esbigné esbigner VER m s 0.00 0.95 0.00 0.27 par:pas; +esbroufe esbroufe NOM f s 0.20 0.20 0.20 0.20 +esbroufer esbroufer VER 0.10 0.14 0.00 0.07 inf; +esbroufeur esbroufeur NOM m s 0.03 0.00 0.02 0.00 +esbroufeurs esbroufeur NOM m p 0.03 0.00 0.01 0.00 +esbroufée esbroufer VER f s 0.10 0.14 0.00 0.07 par:pas; +escabeau escabeau NOM m s 0.69 5.88 0.67 5.20 +escabeaux escabeau NOM m p 0.69 5.88 0.02 0.68 +escabèches escabèche NOM f p 0.00 0.07 0.00 0.07 +escadre escadre NOM f s 1.54 6.08 1.44 5.00 +escadres escadre NOM f p 1.54 6.08 0.10 1.08 +escadrille escadrille NOM f s 2.10 5.14 1.67 2.09 +escadrilles escadrille NOM f p 2.10 5.14 0.43 3.04 +escadrin escadrin NOM m s 0.00 0.07 0.00 0.07 +escadron escadron NOM m s 4.68 8.78 3.34 6.55 +escadrons escadron NOM m p 4.68 8.78 1.34 2.23 +escagasse escagasser VER 0.27 0.14 0.14 0.07 ind:pre:3s; +escagasser escagasser VER 0.27 0.14 0.14 0.07 inf; +escalada escalader VER 4.87 15.34 0.12 1.55 ind:pas:3s; +escaladaient escalader VER 4.87 15.34 0.02 0.68 ind:imp:3p; +escaladais escalader VER 4.87 15.34 0.03 0.47 ind:imp:1s;ind:imp:2s; +escaladait escalader VER 4.87 15.34 0.18 1.42 ind:imp:3s; +escaladant escalader VER 4.87 15.34 0.30 1.42 par:pre; +escalade escalade NOM f s 3.37 4.12 3.26 3.58 +escaladent escalader VER 4.87 15.34 0.36 0.41 ind:pre:3p; +escalader escalader VER 4.87 15.34 2.19 3.85 inf; +escaladera escalader VER 4.87 15.34 0.04 0.20 ind:fut:3s; +escaladerais escalader VER 4.87 15.34 0.00 0.07 cnd:pre:1s; +escaladerait escalader VER 4.87 15.34 0.01 0.07 cnd:pre:3s; +escalades escalade NOM f p 3.37 4.12 0.11 0.54 +escaladeur escaladeur NOM m s 0.03 0.20 0.03 0.07 +escaladeuse escaladeur NOM f s 0.03 0.20 0.00 0.07 +escaladeuses escaladeur NOM f p 0.03 0.20 0.00 0.07 +escaladez escalader VER 4.87 15.34 0.29 0.00 imp:pre:2p;ind:pre:2p; +escaladions escalader VER 4.87 15.34 0.00 0.27 ind:imp:1p; +escaladâmes escalader VER 4.87 15.34 0.00 0.14 ind:pas:1p; +escaladons escalader VER 4.87 15.34 0.02 0.07 imp:pre:1p; +escaladèrent escalader VER 4.87 15.34 0.16 0.27 ind:pas:3p; +escaladé escalader VER m s 4.87 15.34 0.48 1.62 par:pas; +escaladée escalader VER f s 4.87 15.34 0.00 0.14 par:pas; +escaladées escalader VER f p 4.87 15.34 0.11 0.20 par:pas; +escaladés escalader VER m p 4.87 15.34 0.00 0.07 par:pas; +escalais escaler VER 0.00 0.14 0.00 0.07 ind:imp:1s; +escalator escalator NOM m s 0.50 0.27 0.36 0.20 +escalators escalator NOM m p 0.50 0.27 0.13 0.07 +escale escale NOM f s 2.32 8.92 2.25 7.16 +escalera escaler VER 0.00 0.14 0.00 0.07 ind:fut:3s; +escales escale NOM f p 2.32 8.92 0.07 1.76 +escalier escalier NOM m s 32.29 148.85 20.91 125.95 +escaliers escalier NOM m p 32.29 148.85 11.38 22.91 +escalope escalope NOM f s 1.13 1.42 0.94 0.74 +escalopes escalope NOM f p 1.13 1.42 0.18 0.68 +escamota escamoter VER 0.28 4.73 0.00 0.20 ind:pas:3s; +escamotable escamotable ADJ m s 0.01 0.47 0.00 0.27 +escamotables escamotable ADJ f p 0.01 0.47 0.01 0.20 +escamotage escamotage NOM m s 0.04 0.34 0.03 0.27 +escamotages escamotage NOM m p 0.04 0.34 0.01 0.07 +escamotaient escamoter VER 0.28 4.73 0.00 0.07 ind:imp:3p; +escamotait escamoter VER 0.28 4.73 0.02 0.47 ind:imp:3s; +escamotant escamoter VER 0.28 4.73 0.01 0.07 par:pre; +escamote escamoter VER 0.28 4.73 0.02 0.47 imp:pre:2s;ind:pre:3s; +escamoter escamoter VER 0.28 4.73 0.03 0.88 inf; +escamoterai escamoter VER 0.28 4.73 0.00 0.07 ind:fut:1s; +escamoteur escamoteur NOM m s 0.01 0.07 0.01 0.07 +escamoté escamoter VER m s 0.28 4.73 0.20 1.42 par:pas; +escamotée escamoter VER f s 0.28 4.73 0.01 0.95 par:pas; +escamotées escamoter VER f p 0.28 4.73 0.00 0.07 par:pas; +escamotés escamoter VER m p 0.28 4.73 0.00 0.07 par:pas; +escampette escampette NOM f s 0.26 0.27 0.26 0.27 +escapade escapade NOM f s 1.83 3.51 0.89 2.16 +escapades escapade NOM f p 1.83 3.51 0.94 1.35 +escape escape NOM f s 0.19 0.00 0.19 0.00 +escarbille escarbille NOM f s 0.07 1.42 0.05 0.20 +escarbilles escarbille NOM f p 0.07 1.42 0.02 1.22 +escarboucle escarboucle NOM f s 0.03 0.27 0.03 0.07 +escarboucles escarboucle NOM f p 0.03 0.27 0.00 0.20 +escarcelle escarcelle NOM f s 0.17 0.41 0.17 0.41 +escargot escargot NOM m s 8.07 7.23 2.73 2.84 +escargots escargot NOM m p 8.07 7.23 5.34 4.39 +escarmouchaient escarmoucher VER 0.00 0.20 0.00 0.07 ind:imp:3p; +escarmouche escarmouche NOM f s 0.41 1.96 0.32 0.47 +escarmouchent escarmoucher VER 0.00 0.20 0.00 0.14 ind:pre:3p; +escarmouches escarmouche NOM f p 0.41 1.96 0.09 1.49 +escarpement escarpement NOM m s 0.05 1.28 0.03 0.41 +escarpements escarpement NOM m p 0.05 1.28 0.02 0.88 +escarpes escarpe NOM m p 0.00 0.20 0.00 0.20 +escarpin escarpin NOM m s 0.77 5.14 0.07 0.54 +escarpins escarpin NOM m p 0.77 5.14 0.69 4.59 +escarpolette escarpolette NOM f s 0.01 0.41 0.01 0.27 +escarpolettes escarpolette NOM f p 0.01 0.41 0.00 0.14 +escarpé escarper VER m s 0.21 0.54 0.19 0.20 par:pas; +escarpée escarpé ADJ f s 0.14 2.64 0.03 0.74 +escarpées escarpé ADJ f p 0.14 2.64 0.03 0.54 +escarpés escarpé ADJ m p 0.14 2.64 0.04 0.34 +escarre escarre NOM f s 0.23 0.27 0.03 0.07 +escarres escarre NOM f p 0.23 0.27 0.20 0.20 +eschatologie eschatologie NOM f s 0.00 0.14 0.00 0.14 +esche esche NOM f s 0.00 0.14 0.00 0.14 +escher escher VER 0.01 0.00 0.01 0.00 inf; +escient escient NOM m s 0.62 1.08 0.62 1.08 +esclaffa esclaffer VER 0.43 8.24 0.00 1.69 ind:pas:3s; +esclaffai esclaffer VER 0.43 8.24 0.00 0.07 ind:pas:1s; +esclaffaient esclaffer VER 0.43 8.24 0.02 0.74 ind:imp:3p; +esclaffait esclaffer VER 0.43 8.24 0.00 0.68 ind:imp:3s; +esclaffant esclaffer VER 0.43 8.24 0.01 0.88 par:pre; +esclaffe esclaffer VER 0.43 8.24 0.33 1.15 ind:pre:1s;ind:pre:3s; +esclaffement esclaffement NOM m s 0.00 0.14 0.00 0.07 +esclaffements esclaffement NOM m p 0.00 0.14 0.00 0.07 +esclaffent esclaffer VER 0.43 8.24 0.00 0.61 ind:pre:3p; +esclaffer esclaffer VER 0.43 8.24 0.04 1.35 inf; +esclafferaient esclaffer VER 0.43 8.24 0.00 0.07 cnd:pre:3p; +esclaffèrent esclaffer VER 0.43 8.24 0.00 0.41 ind:pas:3p; +esclaffé esclaffer VER m s 0.43 8.24 0.00 0.34 par:pas; +esclaffée esclaffer VER f s 0.43 8.24 0.00 0.20 par:pas; +esclaffés esclaffer VER m p 0.43 8.24 0.02 0.07 par:pas; +esclandre esclandre NOM m s 0.37 2.36 0.36 2.09 +esclandres esclandre NOM m p 0.37 2.36 0.01 0.27 +esclavage esclavage NOM m s 7.14 6.96 7.14 6.96 +esclavagea esclavager VER 0.00 0.41 0.00 0.14 ind:pas:3s; +esclavager esclavager VER 0.00 0.41 0.00 0.20 inf; +esclavagisme esclavagisme NOM m s 0.07 0.00 0.07 0.00 +esclavagiste esclavagiste NOM s 0.73 0.00 0.39 0.00 +esclavagistes esclavagiste NOM p 0.73 0.00 0.34 0.00 +esclavagé esclavager VER m s 0.00 0.41 0.00 0.07 par:pas; +esclave esclave NOM s 37.52 22.23 15.51 9.86 +esclaves esclave NOM m p 37.52 22.23 22.01 12.36 +esclavons esclavon NOM m p 0.00 0.20 0.00 0.20 +escogriffe escogriffe NOM m s 0.16 1.28 0.16 1.15 +escogriffes escogriffe NOM m p 0.16 1.28 0.00 0.14 +escomptai escompter VER 0.67 4.93 0.00 0.07 ind:pas:1s; +escomptaient escompter VER 0.67 4.93 0.01 0.14 ind:imp:3p; +escomptais escompter VER 0.67 4.93 0.04 0.47 ind:imp:1s; +escomptait escompter VER 0.67 4.93 0.02 1.42 ind:imp:3s; +escomptant escompter VER 0.67 4.93 0.01 0.95 par:pre; +escompte escompte NOM m s 0.17 0.61 0.17 0.61 +escomptent escompter VER 0.67 4.93 0.01 0.07 ind:pre:3p; +escompter escompter VER 0.67 4.93 0.01 0.34 inf; +escomptes escompter VER 0.67 4.93 0.00 0.07 ind:pre:2s; +escomptez escompter VER 0.67 4.93 0.03 0.00 imp:pre:2p;ind:pre:2p; +escomptions escompter VER 0.67 4.93 0.02 0.00 ind:imp:1p; +escompté escompter VER m s 0.67 4.93 0.09 0.81 par:pas; +escomptée escompter VER f s 0.67 4.93 0.12 0.14 par:pas; +escomptées escompter VER f p 0.67 4.93 0.10 0.07 par:pas; +escomptés escompter VER m p 0.67 4.93 0.07 0.20 par:pas; +escopette escopette NOM f s 0.00 0.20 0.00 0.20 +escorta escorter VER 8.21 7.57 0.00 0.34 ind:pas:3s; +escortaient escorter VER 8.21 7.57 0.28 0.54 ind:imp:3p; +escortais escorter VER 8.21 7.57 0.05 0.00 ind:imp:1s; +escortait escorter VER 8.21 7.57 0.16 0.74 ind:imp:3s; +escortant escorter VER 8.21 7.57 0.05 0.27 par:pre; +escorte escorte NOM f s 7.28 7.03 6.69 6.76 +escortent escorter VER 8.21 7.57 0.48 0.54 ind:pre:3p; +escorter escorter VER 8.21 7.57 3.02 1.01 inf; +escortera escorter VER 8.21 7.57 0.23 0.07 ind:fut:3s; +escorterai escorter VER 8.21 7.57 0.07 0.00 ind:fut:1s; +escorteraient escorter VER 8.21 7.57 0.01 0.07 cnd:pre:3p; +escorterez escorter VER 8.21 7.57 0.06 0.00 ind:fut:2p; +escorteriez escorter VER 8.21 7.57 0.01 0.00 cnd:pre:2p; +escorterons escorter VER 8.21 7.57 0.15 0.00 ind:fut:1p; +escorteront escorter VER 8.21 7.57 0.32 0.00 ind:fut:3p; +escortes escorte NOM f p 7.28 7.03 0.58 0.27 +escorteur escorteur NOM m s 0.32 0.81 0.04 0.14 +escorteurs escorteur NOM m p 0.32 0.81 0.28 0.68 +escortez escorter VER 8.21 7.57 0.82 0.00 imp:pre:2p;ind:pre:2p; +escortiez escorter VER 8.21 7.57 0.02 0.00 ind:imp:2p; +escortons escorter VER 8.21 7.57 0.16 0.00 ind:pre:1p; +escortèrent escorter VER 8.21 7.57 0.01 0.27 ind:pas:3p; +escorté escorter VER m s 8.21 7.57 1.08 1.42 par:pas; +escortée escorter VER f s 8.21 7.57 0.12 0.88 par:pas; +escortées escorter VER f p 8.21 7.57 0.02 0.07 par:pas; +escortés escorter VER m p 8.21 7.57 0.16 1.35 par:pas; +escot escot NOM m s 0.14 0.00 0.14 0.00 +escouade escouade NOM f s 1.46 5.41 1.34 3.92 +escouades escouade NOM f p 1.46 5.41 0.12 1.49 +escrimai escrimer VER 0.11 2.30 0.00 0.07 ind:pas:1s; +escrimaient escrimer VER 0.11 2.30 0.00 0.20 ind:imp:3p; +escrimais escrimer VER 0.11 2.30 0.01 0.07 ind:imp:1s; +escrimait escrimer VER 0.11 2.30 0.02 0.74 ind:imp:3s; +escrimant escrimer VER 0.11 2.30 0.03 0.27 par:pre; +escrime escrime NOM f s 1.50 2.03 1.50 2.03 +escriment escrimer VER 0.11 2.30 0.01 0.20 ind:pre:3p; +escrimer escrimer VER 0.11 2.30 0.03 0.27 inf; +escrimera escrimer VER 0.11 2.30 0.00 0.07 ind:fut:3s; +escrimeraient escrimer VER 0.11 2.30 0.00 0.07 cnd:pre:3p; +escrimes escrimer VER 0.11 2.30 0.00 0.07 ind:pre:2s; +escrimeur escrimeur NOM m s 0.38 0.41 0.37 0.27 +escrimeurs escrimeur NOM m p 0.38 0.41 0.01 0.07 +escrimeuses escrimeur NOM f p 0.38 0.41 0.00 0.07 +escroc escroc NOM m s 9.27 4.46 6.77 2.91 +escrocs escroc NOM m p 9.27 4.46 2.50 1.55 +escroquant escroquer VER 2.83 1.42 0.13 0.07 par:pre; +escroque escroquer VER 2.83 1.42 0.19 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +escroquent escroquer VER 2.83 1.42 0.03 0.00 ind:pre:3p; +escroquer escroquer VER 2.83 1.42 1.00 0.81 inf; +escroquera escroquer VER 2.83 1.42 0.02 0.00 ind:fut:3s; +escroquerie escroquerie NOM f s 3.20 3.11 2.84 2.16 +escroqueries escroquerie NOM f p 3.20 3.11 0.36 0.95 +escroques escroquer VER 2.83 1.42 0.00 0.07 ind:pre:2s; +escroqueuse escroqueur NOM f s 0.01 0.00 0.01 0.00 +escroquez escroquer VER 2.83 1.42 0.05 0.00 ind:pre:2p; +escroqué escroquer VER m s 2.83 1.42 1.32 0.20 par:pas; +escroquées escroquer VER f p 2.83 1.42 0.01 0.07 par:pas; +escroqués escroquer VER m p 2.83 1.42 0.07 0.07 par:pas; +escudo escudo NOM m s 3.03 0.00 0.01 0.00 +escudos escudo NOM m p 3.03 0.00 3.02 0.00 +esgourdai esgourder VER 0.00 0.95 0.00 0.07 ind:pas:1s; +esgourdant esgourder VER 0.00 0.95 0.00 0.07 par:pre; +esgourde esgourde NOM f s 0.09 2.70 0.01 1.22 +esgourder esgourder VER 0.00 0.95 0.00 0.68 inf; +esgourdes esgourde NOM f p 0.09 2.70 0.08 1.49 +esgourdé esgourder VER m s 0.00 0.95 0.00 0.07 par:pas; +esgourdée esgourder VER f s 0.00 0.95 0.00 0.07 par:pas; +eskimo eskimo ADJ m s 0.02 0.14 0.02 0.07 +eskimos eskimo NOM m p 0.04 0.00 0.02 0.00 +espace_temps espace_temps NOM m 1.63 0.07 1.63 0.07 +espace espace NOM s 43.87 88.51 41.34 78.58 +espacement espacement NOM m s 0.10 0.34 0.09 0.34 +espacements espacement NOM m p 0.10 0.34 0.01 0.00 +espacent espacer VER 0.52 5.95 0.00 0.47 ind:pre:3p; +espacer espacer VER 0.52 5.95 0.06 0.68 inf; +espacerait espacer VER 0.52 5.95 0.00 0.07 cnd:pre:3s; +espaceront espacer VER 0.52 5.95 0.00 0.07 ind:fut:3p; +espaces espace NOM p 43.87 88.51 2.52 9.93 +espacez espacer VER 0.52 5.95 0.02 0.00 imp:pre:2p; +espacions espacer VER 0.52 5.95 0.00 0.14 ind:imp:1p; +espacèrent espacer VER 0.52 5.95 0.01 0.74 ind:pas:3p; +espacé espacé ADJ m s 0.41 2.50 0.02 0.20 +espacée espacer VER f s 0.52 5.95 0.00 0.07 par:pas; +espacées espacé ADJ f p 0.41 2.50 0.21 1.15 +espacés espacé ADJ m p 0.41 2.50 0.19 1.08 +espada espada NOM f s 0.00 0.81 0.00 0.74 +espadas espada NOM f p 0.00 0.81 0.00 0.07 +espadon espadon NOM m s 0.80 0.54 0.71 0.47 +espadons espadon NOM m p 0.80 0.54 0.09 0.07 +espadrille espadrille NOM f s 0.26 8.58 0.02 0.95 +espadrilles espadrille NOM f p 0.26 8.58 0.24 7.64 +espagnol espagnol NOM m s 18.43 21.62 11.54 11.01 +espagnole espagnol ADJ f s 20.94 25.00 6.16 8.78 +espagnoles espagnol ADJ f p 20.94 25.00 1.48 2.50 +espagnolette espagnolette NOM f s 0.00 1.42 0.00 1.42 +espagnols espagnol NOM m p 18.43 21.62 5.27 7.64 +espalier espalier NOM m s 0.00 1.49 0.00 0.61 +espaliers espalier NOM m p 0.00 1.49 0.00 0.88 +espar espar NOM m s 0.00 0.07 0.00 0.07 +espars espars NOM m 0.00 0.07 0.00 0.07 +espaça espacer VER 0.52 5.95 0.00 0.41 ind:pas:3s; +espaçaient espacer VER 0.52 5.95 0.00 1.01 ind:imp:3p; +espaçait espacer VER 0.52 5.95 0.00 0.27 ind:imp:3s; +espaçant espacer VER 0.52 5.95 0.01 0.41 par:pre; +esperanto esperanto NOM m s 0.22 0.07 0.22 0.07 +espingo espingo NOM s 0.00 1.55 0.00 0.61 +espingole espingole NOM f s 0.00 0.14 0.00 0.07 +espingoles espingole NOM f p 0.00 0.14 0.00 0.07 +espingos espingo NOM p 0.00 1.55 0.00 0.95 +espingouin espingouin NOM s 0.35 0.54 0.32 0.47 +espingouins espingouin NOM p 0.35 0.54 0.03 0.07 +espion espion NOM m s 22.05 10.20 13.31 4.59 +espionite espionite NOM f s 0.01 0.00 0.01 0.00 +espionnage espionnage NOM m s 3.32 2.57 3.32 2.57 +espionnaient espionner VER 15.99 4.53 0.03 0.27 ind:imp:3p; +espionnais espionner VER 15.99 4.53 1.36 0.34 ind:imp:1s;ind:imp:2s; +espionnait espionner VER 15.99 4.53 1.52 0.54 ind:imp:3s; +espionnant espionner VER 15.99 4.53 0.21 0.00 par:pre; +espionne espionner VER 15.99 4.53 3.06 0.81 ind:pre:1s;ind:pre:3s; +espionnent espionner VER 15.99 4.53 0.27 0.00 ind:pre:3p; +espionner espionner VER 15.99 4.53 4.71 2.03 inf;; +espionnera espionner VER 15.99 4.53 0.14 0.00 ind:fut:3s; +espionnerai espionner VER 15.99 4.53 0.04 0.00 ind:fut:1s; +espionnerions espionner VER 15.99 4.53 0.01 0.00 cnd:pre:1p; +espionnes espionner VER 15.99 4.53 2.00 0.20 ind:pre:2s;sub:pre:2s; +espionnez espionner VER 15.99 4.53 0.90 0.00 imp:pre:2p;ind:pre:2p; +espionniez espionner VER 15.99 4.53 0.17 0.00 ind:imp:2p; +espionnite espionnite NOM f s 0.14 0.27 0.14 0.27 +espionnons espionner VER 15.99 4.53 0.04 0.00 ind:pre:1p; +espionnât espionner VER 15.99 4.53 0.00 0.07 sub:imp:3s; +espionné espionner VER m s 15.99 4.53 0.94 0.20 par:pas; +espionnée espionner VER f s 15.99 4.53 0.13 0.00 par:pas; +espionnés espionner VER m p 15.99 4.53 0.47 0.07 par:pas; +espions espion NOM m p 22.05 10.20 6.52 3.72 +espiègle espiègle ADJ s 0.89 1.42 0.81 1.01 +espièglement espièglement ADV 0.00 0.07 0.00 0.07 +espièglerie espièglerie NOM f s 0.08 1.01 0.03 0.88 +espiègleries espièglerie NOM f p 0.08 1.01 0.04 0.14 +espiègles espiègle ADJ p 0.89 1.42 0.09 0.41 +esplanade esplanade NOM f s 0.64 6.35 0.64 6.01 +esplanades esplanade NOM f p 0.64 6.35 0.00 0.34 +espoir espoir NOM m s 64.22 101.89 57.62 90.74 +espoirs espoir NOM m p 64.22 101.89 6.61 11.15 +esprit_de_sel esprit_de_sel NOM m s 0.00 0.07 0.00 0.07 +esprit_de_vin esprit_de_vin NOM m s 0.01 0.20 0.01 0.20 +esprit esprit NOM m s 155.82 216.28 131.70 182.84 +esprits esprit NOM m p 155.82 216.28 24.12 33.45 +espèce espèce NOM f s 116.51 141.69 105.04 127.23 +espèces espèce NOM f p 116.51 141.69 11.47 14.46 +espère espérer VER 301.08 134.93 209.19 43.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +espèrent espérer VER 301.08 134.93 2.15 2.03 ind:pre:3p; +espères espérer VER 301.08 134.93 4.19 1.08 ind:pre:2s; +espéra espérer VER 301.08 134.93 0.02 1.49 ind:pas:3s; +espérai espérer VER 301.08 134.93 0.16 0.20 ind:pas:1s; +espéraient espérer VER 301.08 134.93 0.85 2.97 ind:imp:3p; +espérais espérer VER 301.08 134.93 25.40 12.64 ind:imp:1s;ind:imp:2s; +espérait espérer VER 301.08 134.93 3.66 18.58 ind:imp:3s; +espérance espérance NOM f s 6.42 27.36 4.10 18.31 +espérances espérance NOM f p 6.42 27.36 2.32 9.05 +espérant espérer VER 301.08 134.93 6.82 11.76 par:pre; +espérantiste espérantiste NOM s 0.00 0.07 0.00 0.07 +espéranto espéranto NOM m s 0.02 0.14 0.02 0.14 +espérer espérer VER 301.08 134.93 15.65 23.51 inf; +espérerai espérer VER 301.08 134.93 0.02 0.00 ind:fut:1s; +espérerais espérer VER 301.08 134.93 0.20 0.00 cnd:pre:1s; +espérerait espérer VER 301.08 134.93 0.01 0.00 cnd:pre:3s; +espérez espérer VER 301.08 134.93 3.46 1.69 imp:pre:2p;ind:pre:2p; +espériez espérer VER 301.08 134.93 1.57 0.27 ind:imp:2p;sub:pre:2p; +espérions espérer VER 301.08 134.93 1.24 0.88 ind:imp:1p; +espérâmes espérer VER 301.08 134.93 0.00 0.07 ind:pas:1p; +espérons espérer VER 301.08 134.93 21.77 2.91 imp:pre:1p;ind:pre:1p; +espérât espérer VER 301.08 134.93 0.00 0.14 sub:imp:3s; +espérèrent espérer VER 301.08 134.93 0.00 0.07 ind:pas:3p; +espéré espérer VER m s 301.08 134.93 4.46 8.99 par:pas; +espérée espérer VER f s 301.08 134.93 0.14 1.01 par:pas; +espérées espérer VER f p 301.08 134.93 0.00 0.41 par:pas; +espérés espérer VER m p 301.08 134.93 0.13 0.41 par:pas; +esquif esquif NOM m s 0.29 1.76 0.29 1.42 +esquifs esquif NOM m p 0.29 1.76 0.00 0.34 +esquille esquille NOM f s 0.01 0.81 0.01 0.14 +esquilles esquille NOM f p 0.01 0.81 0.00 0.68 +esquimau esquimau NOM m s 1.89 1.22 0.91 0.88 +esquimaude esquimaude ADJ f s 0.10 0.07 0.00 0.07 +esquimaudes esquimaude ADJ f p 0.10 0.07 0.10 0.00 +esquimaux esquimau NOM m p 1.89 1.22 0.97 0.34 +esquintait esquinter VER 2.29 2.70 0.00 0.14 ind:imp:3s; +esquinte esquinter VER 2.29 2.70 0.50 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +esquintement esquintement NOM m s 0.00 0.07 0.00 0.07 +esquintent esquinter VER 2.29 2.70 0.12 0.07 ind:pre:3p; +esquinter esquinter VER 2.29 2.70 0.47 1.08 inf; +esquinterais esquinter VER 2.29 2.70 0.01 0.00 cnd:pre:1s; +esquintes esquinter VER 2.29 2.70 0.34 0.07 ind:pre:2s; +esquintez esquinter VER 2.29 2.70 0.13 0.00 imp:pre:2p; +esquinté esquinter VER m s 2.29 2.70 0.57 0.41 par:pas; +esquintée esquinté ADJ f s 0.51 0.34 0.33 0.27 +esquintées esquinter VER f p 2.29 2.70 0.01 0.07 par:pas; +esquintés esquinté ADJ m p 0.51 0.34 0.02 0.07 +esquire esquire NOM m s 0.31 0.00 0.31 0.00 +esquissa esquisser VER 0.74 16.82 0.02 4.53 ind:pas:3s; +esquissai esquisser VER 0.74 16.82 0.00 0.20 ind:pas:1s; +esquissaient esquisser VER 0.74 16.82 0.00 0.27 ind:imp:3p; +esquissais esquisser VER 0.74 16.82 0.02 0.47 ind:imp:1s; +esquissait esquisser VER 0.74 16.82 0.00 1.62 ind:imp:3s; +esquissant esquisser VER 0.74 16.82 0.12 1.08 par:pre; +esquisse esquisse NOM f s 1.06 4.39 0.54 2.43 +esquissent esquisser VER 0.74 16.82 0.01 0.34 ind:pre:3p; +esquisser esquisser VER 0.74 16.82 0.06 2.03 inf; +esquisses esquisse NOM f p 1.06 4.39 0.52 1.96 +esquissèrent esquisser VER 0.74 16.82 0.00 0.14 ind:pas:3p; +esquissé esquisser VER m s 0.74 16.82 0.15 2.43 par:pas; +esquissée esquisser VER f s 0.74 16.82 0.10 0.41 par:pas; +esquissées esquisser VER f p 0.74 16.82 0.00 0.20 par:pas; +esquissés esquisser VER m p 0.74 16.82 0.00 0.41 par:pas; +esquiva esquiver VER 4.39 8.38 0.01 1.28 ind:pas:3s; +esquivai esquiver VER 4.39 8.38 0.00 0.14 ind:pas:1s; +esquivaient esquiver VER 4.39 8.38 0.00 0.07 ind:imp:3p; +esquivait esquiver VER 4.39 8.38 0.01 0.88 ind:imp:3s; +esquivant esquiver VER 4.39 8.38 0.04 0.47 par:pre; +esquive esquive NOM f s 1.11 0.95 1.06 0.74 +esquivent esquiver VER 4.39 8.38 0.02 0.14 ind:pre:3p; +esquiver esquiver VER 4.39 8.38 1.59 3.04 inf; +esquivera esquiver VER 4.39 8.38 0.19 0.07 ind:fut:3s; +esquiveront esquiver VER 4.39 8.38 0.14 0.00 ind:fut:3p; +esquives esquiver VER 4.39 8.38 0.28 0.00 ind:pre:2s; +esquivèrent esquiver VER 4.39 8.38 0.00 0.14 ind:pas:3p; +esquivé esquiver VER m s 4.39 8.38 1.08 0.95 par:pas; +esquivée esquiver VER f s 4.39 8.38 0.04 0.20 par:pas; +essai essai NOM m s 28.78 14.86 20.31 9.93 +essaie essayer VER 670.38 296.69 168.04 39.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +essaient essayer VER 670.38 296.69 10.09 3.65 ind:pre:3p; +essaiera essayer VER 670.38 296.69 3.50 0.95 ind:fut:3s; +essaierai essayer VER 670.38 296.69 11.20 3.31 ind:fut:1s; +essaieraient essayer VER 670.38 296.69 0.38 0.20 cnd:pre:3p; +essaierais essayer VER 670.38 296.69 1.99 0.95 cnd:pre:1s;cnd:pre:2s; +essaierait essayer VER 670.38 296.69 0.94 1.62 cnd:pre:3s; +essaieras essayer VER 670.38 296.69 0.48 0.34 ind:fut:2s; +essaierez essayer VER 670.38 296.69 0.40 0.07 ind:fut:2p; +essaieriez essayer VER 670.38 296.69 0.10 0.00 cnd:pre:2p; +essaierions essayer VER 670.38 296.69 0.16 0.00 cnd:pre:1p; +essaierons essayer VER 670.38 296.69 0.39 0.20 ind:fut:1p; +essaieront essayer VER 670.38 296.69 1.10 0.47 ind:fut:3p; +essaies essayer VER 670.38 296.69 16.09 1.49 ind:pre:2s;sub:pre:2s; +essaim essaim NOM m s 0.97 4.53 0.69 3.18 +essaimaient essaimer VER 0.03 0.95 0.01 0.07 ind:imp:3p; +essaimait essaimer VER 0.03 0.95 0.00 0.14 ind:imp:3s; +essaiment essaimer VER 0.03 0.95 0.01 0.14 ind:pre:3p; +essaims essaim NOM m p 0.97 4.53 0.28 1.35 +essaimé essaimer VER m s 0.03 0.95 0.01 0.47 par:pas; +essaimées essaimer VER f p 0.03 0.95 0.00 0.07 par:pas; +essaimés essaimer VER m p 0.03 0.95 0.00 0.07 par:pas; +essais essai NOM m p 28.78 14.86 8.47 4.93 +essangent essanger VER 0.00 0.07 0.00 0.07 ind:pre:3p; +essartage essartage NOM m s 0.00 0.07 0.00 0.07 +essarte essarter VER 0.00 0.14 0.00 0.07 ind:pre:3s; +essarts essart NOM m p 0.00 0.07 0.00 0.07 +essartée essarter VER f s 0.00 0.14 0.00 0.07 par:pas; +essaya essayer VER 670.38 296.69 0.65 24.66 ind:pas:3s; +essayage essayage NOM m s 1.84 2.84 1.26 1.82 +essayages essayage NOM m p 1.84 2.84 0.58 1.01 +essayai essayer VER 670.38 296.69 0.32 9.73 ind:pas:1s; +essayaient essayer VER 670.38 296.69 2.73 6.08 ind:imp:3p; +essayais essayer VER 670.38 296.69 18.67 15.27 ind:imp:1s;ind:imp:2s; +essayait essayer VER 670.38 296.69 14.40 35.81 ind:imp:3s; +essayant essayer VER 670.38 296.69 8.96 22.57 par:pre; +essaye essayer VER 670.38 296.69 56.84 10.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essayent essayer VER 670.38 296.69 4.07 1.69 ind:pre:3p; +essayer essayer VER 670.38 296.69 134.66 56.42 inf; +essayera essayer VER 670.38 296.69 1.03 0.20 ind:fut:3s; +essayerai essayer VER 670.38 296.69 1.80 0.54 ind:fut:1s; +essayeraient essayer VER 670.38 296.69 0.08 0.07 cnd:pre:3p; +essayerais essayer VER 670.38 296.69 0.66 0.27 cnd:pre:1s;cnd:pre:2s; +essayerait essayer VER 670.38 296.69 0.13 0.27 cnd:pre:3s; +essayeras essayer VER 670.38 296.69 0.10 0.00 ind:fut:2s; +essayerez essayer VER 670.38 296.69 0.16 0.14 ind:fut:2p; +essayeriez essayer VER 670.38 296.69 0.12 0.00 cnd:pre:2p; +essayerons essayer VER 670.38 296.69 0.58 0.00 ind:fut:1p; +essayeront essayer VER 670.38 296.69 0.15 0.00 ind:fut:3p; +essayes essayer VER 670.38 296.69 5.96 0.34 ind:pre:2s;sub:pre:2s; +essayeur essayeur NOM m s 0.01 0.20 0.01 0.14 +essayeuses essayeur NOM f p 0.01 0.20 0.00 0.07 +essayez essayer VER 670.38 296.69 54.14 6.96 imp:pre:2p;ind:pre:2p; +essayiez essayer VER 670.38 296.69 1.24 0.20 ind:imp:2p; +essayions essayer VER 670.38 296.69 0.75 0.81 ind:imp:1p; +essayiste essayiste NOM s 0.01 0.14 0.01 0.07 +essayistes essayiste NOM p 0.01 0.14 0.00 0.07 +essayâmes essayer VER 670.38 296.69 0.00 0.20 ind:pas:1p; +essayons essayer VER 670.38 296.69 21.75 3.31 imp:pre:1p;ind:pre:1p; +essayât essayer VER 670.38 296.69 0.00 0.41 sub:imp:3s; +essayèrent essayer VER 670.38 296.69 0.27 0.81 ind:pas:3p; +essayé essayer VER m s 670.38 296.69 124.02 45.68 par:pas;par:pas;par:pas;par:pas; +essayée essayer VER f s 670.38 296.69 0.51 0.34 par:pas; +essayées essayer VER f p 670.38 296.69 0.35 0.14 par:pas; +essayés essayer VER m p 670.38 296.69 0.45 0.47 par:pas; +esse esse NOM f s 0.02 0.68 0.02 0.68 +essence essence NOM f s 33.24 29.46 32.91 27.77 +essences essence NOM f p 33.24 29.46 0.34 1.69 +essential essential ADJ m s 0.14 0.00 0.14 0.00 +essentialisme essentialisme NOM m s 0.00 0.07 0.00 0.07 +essentiel essentiel NOM m s 11.64 29.05 11.64 28.78 +essentielle essentiel ADJ f s 9.85 23.04 2.66 6.89 +essentiellement essentiellement ADV 1.65 6.55 1.65 6.55 +essentielles essentiel ADJ f p 9.85 23.04 1.25 3.11 +essentiels essentiel ADJ m p 9.85 23.04 0.89 3.38 +esseulement esseulement NOM m s 0.00 0.34 0.00 0.34 +esseulé esseulé ADJ m s 0.88 1.22 0.43 0.14 +esseulée esseulé ADJ f s 0.88 1.22 0.19 0.54 +esseulées esseulé ADJ f p 0.88 1.22 0.12 0.20 +esseulés esseulé ADJ m p 0.88 1.22 0.14 0.34 +essieu essieu NOM m s 0.28 0.41 0.28 0.41 +essieux essieux NOM m p 0.10 0.95 0.10 0.95 +essor essor NOM m s 0.70 3.78 0.70 3.78 +essora essorer VER 0.18 2.50 0.00 0.20 ind:pas:3s; +essorage essorage NOM m s 0.11 0.20 0.11 0.20 +essoraient essorer VER 0.18 2.50 0.00 0.14 ind:imp:3p; +essorait essorer VER 0.18 2.50 0.01 0.27 ind:imp:3s; +essorant essorer VER 0.18 2.50 0.00 0.14 par:pre; +essore essorer VER 0.18 2.50 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essorent essorer VER 0.18 2.50 0.00 0.14 ind:pre:3p; +essorer essorer VER 0.18 2.50 0.08 1.08 inf; +essorerait essorer VER 0.18 2.50 0.00 0.07 cnd:pre:3s; +essoreuse essoreuse NOM f s 0.36 0.07 0.36 0.07 +essorillé essoriller VER m s 0.00 0.07 0.00 0.07 par:pas; +essoré essorer VER m s 0.18 2.50 0.02 0.07 par:pas; +essorée essorer VER f s 0.18 2.50 0.00 0.20 par:pas; +essorés essoré ADJ m p 0.02 0.20 0.01 0.00 +essouffla essouffler VER 1.03 7.91 0.00 0.20 ind:pas:3s; +essoufflaient essouffler VER 1.03 7.91 0.00 0.34 ind:imp:3p; +essoufflais essouffler VER 1.03 7.91 0.01 0.07 ind:imp:1s; +essoufflait essouffler VER 1.03 7.91 0.01 0.88 ind:imp:3s; +essoufflant essouffler VER 1.03 7.91 0.00 0.20 par:pre; +essouffle essouffler VER 1.03 7.91 0.26 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essoufflement essoufflement NOM m s 0.19 1.62 0.16 1.55 +essoufflements essoufflement NOM m p 0.19 1.62 0.03 0.07 +essoufflent essouffler VER 1.03 7.91 0.01 0.07 ind:pre:3p; +essouffler essouffler VER 1.03 7.91 0.08 0.34 inf; +essouffleront essouffler VER 1.03 7.91 0.00 0.07 ind:fut:3p; +essouffles essouffler VER 1.03 7.91 0.01 0.07 ind:pre:2s; +essoufflez essouffler VER 1.03 7.91 0.00 0.14 ind:pre:2p; +essoufflèrent essouffler VER 1.03 7.91 0.00 0.07 ind:pas:3p; +essoufflé essouffler VER m s 1.03 7.91 0.38 1.76 par:pas; +essoufflée essouffler VER f s 1.03 7.91 0.25 1.28 par:pas; +essoufflées essoufflé ADJ f p 0.55 9.39 0.00 0.14 +essoufflés essoufflé ADJ m p 0.55 9.39 0.12 1.28 +essuie_glace essuie_glace NOM m s 1.00 2.91 0.38 1.01 +essuie_glace essuie_glace NOM m p 1.00 2.91 0.62 1.89 +essuie_mains essuie_mains NOM m 0.23 0.27 0.23 0.27 +essuie_tout essuie_tout NOM m 0.11 0.14 0.11 0.14 +essuie essuyer VER 11.82 55.00 3.98 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +essuient essuyer VER 11.82 55.00 0.05 0.68 ind:pre:3p; +essuiera essuyer VER 11.82 55.00 0.04 0.00 ind:fut:3s; +essuierais essuyer VER 11.82 55.00 0.02 0.00 cnd:pre:1s; +essuieras essuyer VER 11.82 55.00 0.01 0.07 ind:fut:2s; +essuierez essuyer VER 11.82 55.00 0.04 0.00 ind:fut:2p; +essuierions essuyer VER 11.82 55.00 0.00 0.07 cnd:pre:1p; +essuies essuyer VER 11.82 55.00 0.23 0.07 ind:pre:2s; +essuya essuyer VER 11.82 55.00 0.14 12.84 ind:pas:3s; +essuyage essuyage NOM m s 0.01 0.20 0.01 0.14 +essuyages essuyage NOM m p 0.01 0.20 0.00 0.07 +essuyai essuyer VER 11.82 55.00 0.00 0.61 ind:pas:1s; +essuyaient essuyer VER 11.82 55.00 0.03 0.61 ind:imp:3p; +essuyais essuyer VER 11.82 55.00 0.07 0.68 ind:imp:1s;ind:imp:2s; +essuyait essuyer VER 11.82 55.00 0.41 6.42 ind:imp:3s; +essuyant essuyer VER 11.82 55.00 0.15 7.09 par:pre; +essuyer essuyer VER 11.82 55.00 3.39 11.35 inf;; +essuyeur essuyeur NOM m s 0.02 0.00 0.02 0.00 +essuyez essuyer VER 11.82 55.00 1.41 0.27 imp:pre:2p;ind:pre:2p; +essuyions essuyer VER 11.82 55.00 0.00 0.07 ind:imp:1p; +essuyons essuyer VER 11.82 55.00 0.07 0.00 imp:pre:1p;ind:pre:1p; +essuyèrent essuyer VER 11.82 55.00 0.01 0.20 ind:pas:3p; +essuyé essuyer VER m s 11.82 55.00 1.68 5.00 par:pas; +essuyée essuyer VER f s 11.82 55.00 0.04 0.61 par:pas; +essuyées essuyer VER f p 11.82 55.00 0.02 0.34 par:pas; +essuyés essuyer VER m p 11.82 55.00 0.03 0.07 par:pas; +est_africain est_africain ADJ m s 0.01 0.00 0.01 0.00 +est_allemand est_allemand ADJ m s 0.67 0.00 0.31 0.00 +est_allemand est_allemand ADJ f s 0.67 0.00 0.23 0.00 +est_allemand est_allemand ADJ m p 0.67 0.00 0.13 0.00 +est_ce_que est_ce_que ADV 1.34 0.20 1.34 0.20 +est_ce_qu est_ce_qu ADV 3.41 0.07 3.41 0.07 +est_ce_que est_ce_que ADV 1159.41 322.23 1159.41 322.23 +est_ce est_ce ADV 0.05 0.20 0.05 0.20 +est_ouest est_ouest ADJ 0.38 0.41 0.38 0.41 +est être AUX 8074.24 6501.82 3318.95 1600.27 ind:pre:3s; +establishment establishment NOM m s 0.26 0.20 0.26 0.20 +estacade estacade NOM f s 0.14 0.61 0.14 0.47 +estacades estacade NOM f p 0.14 0.61 0.00 0.14 +estafette estafette NOM f s 0.33 3.78 0.33 2.43 +estafettes estafette NOM f p 0.33 3.78 0.00 1.35 +estafier estafier NOM m s 0.00 0.14 0.00 0.07 +estafiers estafier NOM m p 0.00 0.14 0.00 0.07 +estafilade estafilade NOM f s 0.05 0.88 0.05 0.74 +estafilades estafilade NOM f p 0.05 0.88 0.00 0.14 +estagnon estagnon NOM m s 0.00 0.07 0.00 0.07 +estaminet estaminet NOM m s 0.01 1.35 0.01 1.08 +estaminets estaminet NOM m p 0.01 1.35 0.00 0.27 +estampage estampage NOM m s 0.02 0.00 0.02 0.00 +estampe estampe NOM f s 0.42 2.23 0.12 0.68 +estamper estamper VER 0.03 0.27 0.02 0.20 inf; +estampes estampe NOM f p 0.42 2.23 0.30 1.55 +estampilla estampiller VER 0.07 0.47 0.00 0.14 ind:pas:3s; +estampillaient estampiller VER 0.07 0.47 0.00 0.07 ind:imp:3p; +estampille estampille NOM f s 0.01 0.47 0.01 0.47 +estampiller estampiller VER 0.07 0.47 0.00 0.07 inf; +estampillé estampiller VER m s 0.07 0.47 0.04 0.07 par:pas; +estampillées estampillé ADJ f p 0.00 0.47 0.00 0.07 +estampillés estampiller VER m p 0.07 0.47 0.03 0.14 par:pas; +estampé estamper VER m s 0.03 0.27 0.01 0.00 par:pas; +estampée estamper VER f s 0.03 0.27 0.00 0.07 par:pas; +estancia estancia NOM f s 0.06 0.41 0.06 0.20 +estancias estancia NOM f p 0.06 0.41 0.00 0.20 +este este NOM m s 0.50 0.41 0.50 0.14 +ester ester NOM m s 0.25 0.00 0.25 0.00 +estes este NOM m p 0.50 0.41 0.00 0.27 +esthète esthète NOM s 0.29 2.57 0.27 1.49 +esthètes esthète NOM p 0.29 2.57 0.02 1.08 +esthésiomètre esthésiomètre NOM m s 0.00 0.07 0.00 0.07 +esthéticien esthéticien NOM m s 1.14 0.54 0.11 0.14 +esthéticienne esthéticien NOM f s 1.14 0.54 1.02 0.41 +esthéticiennes esthéticienne NOM f p 0.03 0.00 0.03 0.00 +esthétique esthétique ADJ s 3.09 4.66 2.64 3.45 +esthétiquement esthétiquement ADV 0.11 0.07 0.11 0.07 +esthétiques esthétique ADJ p 3.09 4.66 0.46 1.22 +esthétisait esthétiser VER 0.00 0.07 0.00 0.07 ind:imp:3s; +esthétisme esthétisme NOM m s 0.04 1.08 0.04 1.08 +estima estimer VER 21.41 37.64 0.14 1.89 ind:pas:3s; +estimable estimable ADJ s 0.54 1.69 0.40 1.42 +estimables estimable ADJ p 0.54 1.69 0.14 0.27 +estimai estimer VER 21.41 37.64 0.00 0.14 ind:pas:1s; +estimaient estimer VER 21.41 37.64 0.04 1.49 ind:imp:3p; +estimais estimer VER 21.41 37.64 0.25 2.16 ind:imp:1s;ind:imp:2s; +estimait estimer VER 21.41 37.64 0.73 7.77 ind:imp:3s; +estimant estimer VER 21.41 37.64 0.17 2.97 par:pre; +estimation estimation NOM f s 3.55 1.22 2.40 1.01 +estimations estimation NOM f p 3.55 1.22 1.15 0.20 +estime estimer VER 21.41 37.64 8.02 8.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +estiment estimer VER 21.41 37.64 1.28 1.49 ind:pre:3p; +estimer estimer VER 21.41 37.64 2.37 3.18 inf; +estimera estimer VER 21.41 37.64 0.08 0.14 ind:fut:3s; +estimerai estimer VER 21.41 37.64 0.03 0.20 ind:fut:1s; +estimerais estimer VER 21.41 37.64 0.04 0.07 cnd:pre:1s; +estimerait estimer VER 21.41 37.64 0.00 0.20 cnd:pre:3s; +estimeras estimer VER 21.41 37.64 0.04 0.00 ind:fut:2s; +estimerez estimer VER 21.41 37.64 0.14 0.14 ind:fut:2p; +estimes estimer VER 21.41 37.64 0.90 0.34 ind:pre:2s; +estimez estimer VER 21.41 37.64 1.41 1.28 imp:pre:2p;ind:pre:2p; +estimiez estimer VER 21.41 37.64 0.27 0.07 ind:imp:2p; +estimions estimer VER 21.41 37.64 0.01 0.68 ind:imp:1p; +estimons estimer VER 21.41 37.64 0.95 0.54 imp:pre:1p;ind:pre:1p; +estimât estimer VER 21.41 37.64 0.00 0.34 sub:imp:3s; +estimèrent estimer VER 21.41 37.64 0.01 0.14 ind:pas:3p; +estimé estimer VER m s 21.41 37.64 2.71 2.64 par:pas; +estimée estimer VER f s 21.41 37.64 0.77 0.41 par:pas; +estimées estimer VER f p 21.41 37.64 0.10 0.07 par:pas; +estimés estimer VER m p 21.41 37.64 0.97 0.41 par:pas; +estival estival ADJ m s 0.53 1.76 0.35 0.47 +estivale estival ADJ f s 0.53 1.76 0.11 0.74 +estivales estival ADJ f p 0.53 1.76 0.04 0.27 +estivant estivant NOM m s 0.29 2.23 0.00 0.27 +estivante estivant NOM f s 0.29 2.23 0.00 0.07 +estivantes estivant NOM f p 0.29 2.23 0.00 0.07 +estivants estivant NOM m p 0.29 2.23 0.29 1.82 +estivaux estival ADJ m p 0.53 1.76 0.04 0.27 +estoc estoc NOM m s 0.16 0.34 0.16 0.20 +estocade estocade NOM f s 0.03 0.47 0.03 0.41 +estocades estocade NOM f p 0.03 0.47 0.00 0.07 +estocs estoc NOM m p 0.16 0.34 0.00 0.14 +estom estom NOM m s 0.00 0.20 0.00 0.20 +estomac estomac NOM m s 23.56 30.95 23.06 30.14 +estomacs estomac NOM m p 23.56 30.95 0.50 0.81 +estomaquait estomaquer VER 0.26 2.16 0.00 0.07 ind:imp:3s; +estomaquant estomaquer VER 0.26 2.16 0.00 0.07 par:pre; +estomaque estomaquer VER 0.26 2.16 0.16 0.14 ind:pre:1s;ind:pre:3s; +estomaquer estomaquer VER 0.26 2.16 0.00 0.14 inf; +estomaqué estomaquer VER m s 0.26 2.16 0.06 1.42 par:pas; +estomaquée estomaquer VER f s 0.26 2.16 0.03 0.20 par:pas; +estomaqués estomaquer VER m p 0.26 2.16 0.01 0.14 par:pas; +estompa estomper VER 1.54 8.85 0.00 0.81 ind:pas:3s; +estompaient estomper VER 1.54 8.85 0.01 1.08 ind:imp:3p; +estompait estomper VER 1.54 8.85 0.11 1.76 ind:imp:3s; +estompant estomper VER 1.54 8.85 0.00 0.47 par:pre; +estompe estomper VER 1.54 8.85 0.40 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +estompent estomper VER 1.54 8.85 0.42 1.22 ind:pre:3p; +estomper estomper VER 1.54 8.85 0.25 0.68 inf; +estompera estomper VER 1.54 8.85 0.21 0.00 ind:fut:3s; +estomperont estomper VER 1.54 8.85 0.07 0.00 ind:fut:3p; +estompes estomper VER 1.54 8.85 0.00 0.14 ind:pre:2s; +estompât estomper VER 1.54 8.85 0.00 0.14 sub:imp:3s; +estompèrent estomper VER 1.54 8.85 0.00 0.20 ind:pas:3p; +estompé estomper VER m s 1.54 8.85 0.02 0.14 par:pas; +estompée estomper VER f s 1.54 8.85 0.04 0.34 par:pas; +estompées estomper VER f p 1.54 8.85 0.00 0.47 par:pas; +estompés estomper VER m p 1.54 8.85 0.02 0.27 par:pas; +estonien estonien ADJ m s 0.01 0.07 0.01 0.07 +estonienne estonienne NOM f s 0.10 0.00 0.10 0.00 +estoniens estonien NOM m p 0.00 0.20 0.00 0.14 +estoqua estoquer VER 0.00 0.34 0.00 0.07 ind:pas:3s; +estoque estoquer VER 0.00 0.34 0.00 0.14 ind:pre:3s; +estoquer estoquer VER 0.00 0.34 0.00 0.07 inf; +estoqué estoquer VER m s 0.00 0.34 0.00 0.07 par:pas; +estouffade estouffade NOM f s 0.00 0.07 0.00 0.07 +estourbi estourbir VER m s 0.14 2.36 0.03 0.41 par:pas; +estourbie estourbir VER f s 0.14 2.36 0.01 0.41 par:pas; +estourbies estourbir VER f p 0.14 2.36 0.01 0.00 par:pas; +estourbir estourbir VER 0.14 2.36 0.07 0.88 inf; +estourbirait estourbir VER 0.14 2.36 0.00 0.07 cnd:pre:3s; +estourbis estourbir VER m p 0.14 2.36 0.01 0.14 ind:pre:1s;par:pas; +estourbissais estourbir VER 0.14 2.36 0.00 0.07 ind:imp:1s; +estourbissant estourbir VER 0.14 2.36 0.00 0.07 par:pre; +estourbisse estourbir VER 0.14 2.36 0.00 0.07 sub:pre:1s; +estourbit estourbir VER 0.14 2.36 0.00 0.27 ind:pre:3s;ind:pas:3s; +estrade estrade NOM f s 1.64 11.28 1.63 10.68 +estrades estrade NOM f p 1.64 11.28 0.01 0.61 +estragon estragon NOM m s 0.70 0.81 0.70 0.81 +estrangers estranger NOM m p 0.00 0.20 0.00 0.20 +estrapade estrapade NOM f s 0.14 0.47 0.14 0.41 +estrapades estrapade NOM f p 0.14 0.47 0.00 0.07 +estrapassée estrapasser VER f s 0.01 0.00 0.01 0.00 par:pas; +estrogène estrogène NOM s 0.03 0.00 0.03 0.00 +estropiait estropier VER 1.39 1.15 0.00 0.07 ind:imp:3s; +estropie estropier VER 1.39 1.15 0.02 0.14 ind:pre:1s;ind:pre:3s; +estropier estropier VER 1.39 1.15 0.39 0.14 inf; +estropierai estropier VER 1.39 1.15 0.01 0.00 ind:fut:1s; +estropierait estropier VER 1.39 1.15 0.01 0.00 cnd:pre:3s; +estropiez estropier VER 1.39 1.15 0.04 0.00 imp:pre:2p;ind:pre:2p; +estropié estropié ADJ m s 1.42 1.15 0.89 0.47 +estropiée estropié ADJ f s 1.42 1.15 0.25 0.14 +estropiés estropié ADJ m p 1.42 1.15 0.28 0.54 +estuaire estuaire NOM m s 0.49 2.64 0.48 2.43 +estuaires estuaire NOM m p 0.49 2.64 0.01 0.20 +estudiantin estudiantin ADJ m s 0.17 0.68 0.05 0.20 +estudiantine estudiantin ADJ f s 0.17 0.68 0.12 0.34 +estudiantines estudiantin ADJ f p 0.17 0.68 0.00 0.07 +estudiantins estudiantin ADJ m p 0.17 0.68 0.00 0.07 +esturgeon esturgeon NOM m s 0.47 0.07 0.39 0.07 +esturgeons esturgeon NOM m p 0.47 0.07 0.07 0.00 +et_caetera et_caetera ADV 0.72 0.88 0.72 0.88 +et_cetera et_cetera ADV 1.14 0.74 1.14 0.74 +et_seq et_seq ADV 0.00 0.07 0.00 0.07 +et et CON 12909.08 20879.73 12909.08 20879.73 +etc etc ADV 13.90 55.00 13.90 55.00 +etc. etc. ADV 0.03 0.74 0.03 0.74 +etcetera etcetera ADV 0.00 0.07 0.00 0.07 +ethmoïdal ethmoïdal ADJ m s 0.03 0.00 0.01 0.00 +ethmoïdaux ethmoïdal ADJ m p 0.03 0.00 0.01 0.00 +ethnicité ethnicité NOM f s 0.02 0.00 0.02 0.00 +ethnie ethnie NOM f s 0.28 0.20 0.08 0.07 +ethnies ethnie NOM f p 0.28 0.20 0.20 0.14 +ethnique ethnique ADJ s 1.37 1.01 0.85 0.68 +ethniquement ethniquement ADV 0.01 0.00 0.01 0.00 +ethniques ethnique ADJ p 1.37 1.01 0.52 0.34 +ethnobotaniste ethnobotaniste NOM s 0.01 0.00 0.01 0.00 +ethnographe ethnographe NOM s 0.10 0.07 0.10 0.07 +ethnographie ethnographie NOM f s 0.00 0.20 0.00 0.20 +ethnographique ethnographique ADJ m s 0.10 0.07 0.10 0.07 +ethnologie ethnologie NOM f s 0.01 0.41 0.01 0.41 +ethnologique ethnologique ADJ s 0.00 0.27 0.00 0.20 +ethnologiques ethnologique ADJ m p 0.00 0.27 0.00 0.07 +ethnologue ethnologue NOM s 0.14 0.47 0.14 0.34 +ethnologues ethnologue NOM p 0.14 0.47 0.00 0.14 +ets pas ADV 18189.04 8795.20 0.19 0.00 +eu avoir AUX m s 18559.23 12800.81 18.39 22.36 par:pas; +eubage eubage NOM m s 0.00 0.41 0.00 0.41 +eubine eubine NOM f s 0.00 0.27 0.00 0.27 +eucalyptus eucalyptus NOM m 0.83 3.11 0.83 3.11 +eucharistie eucharistie NOM f s 0.34 0.61 0.34 0.61 +eucharistique eucharistique ADJ s 0.00 0.41 0.00 0.34 +eucharistiques eucharistique ADJ m p 0.00 0.41 0.00 0.07 +euclidien euclidien ADJ m s 0.04 0.14 0.01 0.00 +euclidienne euclidien ADJ f s 0.04 0.14 0.01 0.00 +euclidiens euclidien ADJ m p 0.04 0.14 0.01 0.14 +eudistes eudiste NOM m p 0.00 0.07 0.00 0.07 +eue avoir AUX f s 18559.23 12800.81 0.27 0.54 par:pas; +eues avoir AUX f p 18559.23 12800.81 0.01 0.07 par:pas; +eugénique eugénique ADJ f s 0.01 0.07 0.01 0.07 +eugénisme eugénisme NOM m s 0.45 0.00 0.45 0.00 +euh euh ONO 108.86 15.47 108.86 15.47 +eulogie eulogie NOM f s 0.00 0.07 0.00 0.07 +eunuque eunuque NOM m s 1.79 8.45 1.27 2.43 +eunuques_espion eunuques_espion NOM m p 0.00 0.14 0.00 0.14 +eunuques eunuque NOM m p 1.79 8.45 0.53 6.01 +euphonie euphonie NOM f s 0.00 0.07 0.00 0.07 +euphonique euphonique ADJ m s 0.00 0.34 0.00 0.27 +euphoniquement euphoniquement ADV 0.00 0.07 0.00 0.07 +euphoniques euphonique ADJ p 0.00 0.34 0.00 0.07 +euphorbe euphorbe NOM f s 0.00 0.41 0.00 0.07 +euphorbes euphorbe NOM f p 0.00 0.41 0.00 0.34 +euphorie euphorie NOM f s 0.98 8.11 0.98 8.11 +euphorique euphorique ADJ s 0.56 1.22 0.56 1.22 +euphorisant euphorisant ADJ m s 0.06 0.20 0.04 0.07 +euphorisante euphorisant ADJ f s 0.06 0.20 0.02 0.07 +euphorisants euphorisant NOM m p 0.02 0.47 0.02 0.41 +euphorisent euphoriser VER 0.00 0.20 0.00 0.07 ind:pre:3p; +euphorisé euphoriser VER m s 0.00 0.20 0.00 0.07 par:pas; +euphorisée euphoriser VER f s 0.00 0.20 0.00 0.07 par:pas; +euphémisme euphémisme NOM m s 1.52 1.55 1.11 1.01 +euphémismes euphémisme NOM m p 1.52 1.55 0.41 0.54 +eurafricaine eurafricain ADJ f s 0.10 0.07 0.00 0.07 +eurafricains eurafricain ADJ m p 0.10 0.07 0.10 0.00 +eurasien eurasien NOM m s 0.03 0.00 0.02 0.00 +eurasienne eurasienne ADJ f s 0.01 0.07 0.01 0.07 +eurent avoir AUX 18559.23 12800.81 0.44 9.32 ind:pas:3p; +euro_africain euro_africain ADJ f p 0.00 0.07 0.00 0.07 +euro euro NOM m s 9.84 0.00 0.84 0.00 +eurodollar eurodollar NOM m s 0.01 0.00 0.01 0.00 +euromarché euromarché NOM m s 0.00 0.07 0.00 0.07 +européen européen ADJ m s 9.45 15.88 2.78 3.78 +européenne européen ADJ f s 9.45 15.88 3.92 6.76 +européennes européen ADJ f p 9.45 15.88 0.96 1.42 +européens européen NOM m p 3.32 7.30 2.44 4.05 +euros euro NOM m p 9.84 0.00 8.99 0.00 +eurêka eurêka ONO 0.00 0.20 0.00 0.20 +eurythmiques eurythmique ADJ m p 0.00 0.07 0.00 0.07 +eus avoir AUX m p 18559.23 12800.81 0.67 13.04 par:pas; +euskera euskera NOM m s 1.30 0.00 1.30 0.00 +eusse avoir AUX 18559.23 12800.81 0.52 7.30 sub:imp:1s; +eussent avoir AUX 18559.23 12800.81 0.13 20.20 sub:imp:3p; +eusses avoir AUX 18559.23 12800.81 0.00 0.07 sub:imp:2s; +eussiez avoir AUX 18559.23 12800.81 0.52 0.47 sub:imp:2p; +eussions avoir AUX 18559.23 12800.81 0.00 1.35 sub:imp:1p; +eussé avoir AUX 18559.23 12800.81 0.00 0.95 sub:imp:1s; +eustache eustache NOM m s 0.00 0.20 0.00 0.07 +eustaches eustache NOM m p 0.00 0.20 0.00 0.14 +eut avoir AUX 18559.23 12800.81 2.15 54.26 ind:pas:3s; +euthanasie euthanasie NOM f s 1.48 0.61 1.44 0.54 +euthanasies euthanasie NOM f p 1.48 0.61 0.04 0.07 +eux_mêmes eux_mêmes PRO:per m p 9.96 48.04 9.96 48.04 +eux eux PRO:per m p 295.35 504.26 295.35 504.26 +event event NOM m s 0.14 0.00 0.14 0.00 +evzones evzone NOM m p 0.00 0.07 0.00 0.07 +ex_abbé ex_abbé NOM m s 0.00 0.07 0.00 0.07 +ex_acteur ex_acteur NOM m s 0.00 0.07 0.00 0.07 +ex_adjudant ex_adjudant NOM m s 0.00 0.14 0.00 0.14 +ex_agent ex_agent NOM m s 0.09 0.00 0.09 0.00 +ex_alcoolo ex_alcoolo NOM s 0.01 0.00 0.01 0.00 +ex_allée ex_allée NOM f s 0.00 0.07 0.00 0.07 +ex_amant ex_amant NOM m s 0.19 0.34 0.17 0.07 +ex_amant ex_amant NOM f s 0.19 0.34 0.01 0.27 +ex_amant ex_amant NOM m p 0.19 0.34 0.01 0.00 +ex_ambassadeur ex_ambassadeur NOM m s 0.01 0.00 0.01 0.00 +ex_amour ex_amour NOM m s 0.01 0.00 0.01 0.00 +ex_appartement ex_appartement NOM m s 0.00 0.07 0.00 0.07 +ex_apprenti ex_apprenti NOM m s 0.00 0.07 0.00 0.07 +ex_arriviste ex_arriviste NOM s 0.00 0.07 0.00 0.07 +ex_artiste ex_artiste NOM s 0.00 0.07 0.00 0.07 +ex_assistant ex_assistant NOM m s 0.07 0.00 0.02 0.00 +ex_assistant ex_assistant NOM f s 0.07 0.00 0.04 0.00 +ex_associé ex_associé NOM m s 0.13 0.07 0.08 0.07 +ex_associé ex_associé NOM m p 0.13 0.07 0.05 0.00 +ex_ballerine ex_ballerine NOM f s 0.01 0.00 0.01 0.00 +ex_banquier ex_banquier NOM m s 0.01 0.00 0.01 0.00 +ex_barman ex_barman NOM m s 0.01 0.07 0.01 0.07 +ex_basketteur ex_basketteur NOM m s 0.00 0.07 0.00 0.07 +ex_batteur ex_batteur NOM m s 0.00 0.07 0.00 0.07 +ex_beatnik ex_beatnik NOM s 0.00 0.07 0.00 0.07 +ex_belle_mère ex_belle_mère NOM f s 0.05 0.00 0.05 0.00 +ex_bibliothécaire ex_bibliothécaire NOM s 0.00 0.07 0.00 0.07 +ex_boss ex_boss NOM m 0.01 0.00 0.01 0.00 +ex_boxeur ex_boxeur NOM m s 0.16 0.00 0.16 0.00 +ex_branleur ex_branleur NOM m p 0.00 0.07 0.00 0.07 +ex_buteur ex_buteur NOM m s 0.01 0.00 0.01 0.00 +ex_caïd ex_caïd NOM m s 0.01 0.00 0.01 0.00 +ex_camarade ex_camarade NOM p 0.01 0.00 0.01 0.00 +ex_capitaine ex_capitaine NOM m s 0.04 0.00 0.04 0.00 +ex_champion ex_champion NOM m s 0.75 0.14 0.71 0.14 +ex_champion ex_champion NOM f s 0.75 0.14 0.01 0.00 +ex_champion ex_champion NOM m p 0.75 0.14 0.03 0.00 +ex_chanteur ex_chanteur NOM m s 0.02 0.07 0.00 0.07 +ex_chanteur ex_chanteur NOM f s 0.02 0.07 0.02 0.00 +ex_chauffeur ex_chauffeur NOM m s 0.14 0.07 0.14 0.07 +ex_chef ex_chef NOM s 0.20 0.14 0.20 0.14 +ex_chiropracteur ex_chiropracteur NOM m s 0.01 0.00 0.01 0.00 +ex_citation ex_citation NOM f s 0.01 0.00 0.01 0.00 +ex_citoyen ex_citoyen NOM m s 0.01 0.00 0.01 0.00 +ex_civil ex_civil NOM m p 0.01 0.00 0.01 0.00 +ex_collabo ex_collabo NOM s 0.00 0.07 0.00 0.07 +ex_collègue ex_collègue NOM s 0.30 0.14 0.03 0.14 +ex_collègue ex_collègue NOM p 0.30 0.14 0.27 0.00 +ex_colonel ex_colonel NOM m s 0.01 0.14 0.01 0.14 +ex_commando ex_commando NOM m s 0.05 0.00 0.05 0.00 +ex_concierge ex_concierge NOM s 0.00 0.07 0.00 0.07 +ex_contrebandier ex_contrebandier NOM m s 0.02 0.00 0.02 0.00 +ex_copain ex_copain NOM m s 0.28 0.00 0.26 0.00 +ex_copain ex_copain NOM m p 0.28 0.00 0.02 0.00 +ex_copine ex_copine NOM f s 0.71 0.00 0.54 0.00 +ex_copine ex_copine NOM f p 0.71 0.00 0.18 0.00 +ex_corps ex_corps NOM m 0.01 0.00 0.01 0.00 +ex_couple ex_couple NOM m s 0.01 0.00 0.01 0.00 +ex_danseur ex_danseur NOM f s 0.01 0.14 0.01 0.14 +ex_dealer ex_dealer NOM m s 0.02 0.00 0.02 0.00 +ex_dieu ex_dieu NOM m s 0.01 0.00 0.01 0.00 +ex_diva ex_diva NOM f s 0.00 0.07 0.00 0.07 +ex_drôlesse ex_drôlesse NOM f s 0.00 0.07 0.00 0.07 +ex_drifter ex_drifter NOM m s 0.00 0.07 0.00 0.07 +ex_dulcinée ex_dulcinée NOM f s 0.00 0.07 0.00 0.07 +ex_démon ex_démon NOM m s 0.10 0.00 0.09 0.00 +ex_démon ex_démon NOM m p 0.10 0.00 0.01 0.00 +ex_enseigne ex_enseigne NOM m s 0.00 0.07 0.00 0.07 +ex_enzyme ex_enzyme NOM f p 0.00 0.07 0.00 0.07 +ex_esclavagiste ex_esclavagiste NOM p 0.01 0.00 0.01 0.00 +ex_femme ex_femme NOM f s 6.75 1.62 6.32 1.62 +ex_femme ex_femme NOM f p 6.75 1.62 0.43 0.00 +ex_fiancé ex_fiancé NOM m s 0.18 0.07 0.10 0.00 +ex_fiancé ex_fiancé NOM f s 0.18 0.07 0.08 0.07 +ex_fils ex_fils NOM m 0.00 0.07 0.00 0.07 +ex_flic ex_flic NOM m s 0.27 0.07 0.24 0.07 +ex_flic ex_flic NOM m p 0.27 0.07 0.03 0.00 +ex_forçat ex_forçat NOM m p 0.01 0.00 0.01 0.00 +ex_fusilleur ex_fusilleur NOM m p 0.00 0.07 0.00 0.07 +ex_gang ex_gang NOM m s 0.00 0.07 0.00 0.07 +ex_garde ex_garde NOM f s 0.14 0.20 0.00 0.14 +ex_garde ex_garde NOM f p 0.14 0.20 0.14 0.07 +ex_gauchiste ex_gauchiste ADJ m s 0.00 0.07 0.00 0.07 +ex_gauchiste ex_gauchiste NOM s 0.00 0.07 0.00 0.07 +ex_gendre ex_gendre NOM m s 0.01 0.00 0.01 0.00 +ex_gonzesse ex_gonzesse NOM f s 0.00 0.14 0.00 0.14 +ex_gouverneur ex_gouverneur NOM m s 0.06 0.14 0.06 0.14 +ex_gravosse ex_gravosse NOM f s 0.00 0.07 0.00 0.07 +ex_griot ex_griot NOM m s 0.00 0.07 0.00 0.07 +ex_griveton ex_griveton NOM m s 0.00 0.07 0.00 0.07 +ex_grognasse ex_grognasse NOM f s 0.00 0.07 0.00 0.07 +ex_groupe ex_groupe NOM m s 0.00 0.07 0.00 0.07 +ex_guenille ex_guenille NOM f p 0.00 0.07 0.00 0.07 +ex_guitariste ex_guitariste NOM s 0.00 0.07 0.00 0.07 +ex_génie ex_génie NOM m s 0.00 0.07 0.00 0.07 +ex_hôpital ex_hôpital NOM m s 0.00 0.07 0.00 0.07 +ex_hippie ex_hippie NOM p 0.02 0.00 0.02 0.00 +ex_homme_grenouille ex_homme_grenouille NOM m s 0.01 0.00 0.01 0.00 +ex_homme ex_homme NOM m s 0.06 0.00 0.06 0.00 +ex_immeuble ex_immeuble NOM m s 0.00 0.07 0.00 0.07 +ex_inspecteur ex_inspecteur NOM m s 0.03 0.00 0.02 0.00 +ex_inspecteur ex_inspecteur NOM m p 0.03 0.00 0.01 0.00 +ex_journaliste ex_journaliste NOM s 0.02 0.07 0.02 0.07 +ex_junkie ex_junkie NOM m s 0.03 0.00 0.03 0.00 +ex_kid ex_kid NOM m s 0.00 0.27 0.00 0.27 +ex_leader ex_leader NOM m s 0.02 0.00 0.02 0.00 +ex_libris ex_libris NOM m 0.00 0.14 0.00 0.14 +ex_lieutenant ex_lieutenant NOM m s 0.01 0.00 0.01 0.00 +ex_lit ex_lit NOM m s 0.00 0.07 0.00 0.07 +ex_légionnaire ex_légionnaire NOM m s 0.00 0.07 0.00 0.07 +ex_lycée ex_lycée NOM m s 0.00 0.07 0.00 0.07 +ex_maître ex_maître NOM m s 0.00 0.07 0.00 0.07 +ex_madame ex_madame NOM f 0.03 0.07 0.03 0.07 +ex_maire ex_maire NOM m s 0.01 0.00 0.01 0.00 +ex_mari ex_mari NOM m s 5.05 1.08 4.87 1.08 +ex_marine ex_marine NOM f s 0.07 0.00 0.07 0.00 +ex_mari ex_mari NOM m p 5.05 1.08 0.19 0.00 +ex_mec ex_mec NOM m p 0.10 0.00 0.10 0.00 +ex_membre ex_membre NOM m s 0.03 0.00 0.03 0.00 +ex_mercenaire ex_mercenaire NOM p 0.01 0.00 0.01 0.00 +ex_militaire ex_militaire NOM s 0.08 0.00 0.05 0.00 +ex_militaire ex_militaire NOM p 0.08 0.00 0.03 0.00 +ex_ministre ex_ministre NOM m s 0.06 0.41 0.04 0.41 +ex_ministre ex_ministre NOM m p 0.06 0.41 0.01 0.00 +ex_miss ex_miss NOM f 0.05 0.00 0.05 0.00 +ex_monteur ex_monteur NOM m s 0.02 0.00 0.02 0.00 +ex_motard ex_motard NOM m s 0.01 0.00 0.01 0.00 +ex_nana ex_nana NOM f s 0.12 0.00 0.12 0.00 +ex_officier ex_officier NOM m s 0.05 0.14 0.05 0.14 +ex_opérateur ex_opérateur NOM m s 0.00 0.07 0.00 0.07 +ex_palme ex_palme NOM f p 0.14 0.00 0.14 0.00 +ex_para ex_para NOM m s 0.02 0.14 0.02 0.14 +ex_partenaire ex_partenaire NOM s 0.18 0.00 0.18 0.00 +ex_patron ex_patron NOM m s 0.20 0.00 0.20 0.00 +ex_pensionnaire ex_pensionnaire NOM p 0.00 0.07 0.00 0.07 +ex_perroquet ex_perroquet NOM m s 0.01 0.00 0.01 0.00 +ex_petit ex_petit NOM m s 0.68 0.00 0.38 0.00 +ex_petit ex_petit NOM f s 0.68 0.00 0.28 0.00 +ex_petit ex_petit NOM m p 0.68 0.00 0.03 0.00 +ex_pharmacien ex_pharmacien NOM f p 0.00 0.07 0.00 0.07 +ex_pilote ex_pilote ADJ m s 0.00 0.14 0.00 0.14 +ex_planète ex_planète NOM f s 0.01 0.00 0.01 0.00 +ex_planton ex_planton NOM m s 0.00 0.07 0.00 0.07 +ex_plaqué ex_plaqué ADJ f s 0.00 0.07 0.00 0.07 +ex_plâtrier ex_plâtrier NOM m s 0.00 0.07 0.00 0.07 +ex_poivrot ex_poivrot NOM m p 0.01 0.00 0.01 0.00 +ex_premier ex_premier ADJ m s 0.01 0.00 0.01 0.00 +ex_premier ex_premier NOM m s 0.01 0.00 0.01 0.00 +ex_primaire ex_primaire NOM s 0.00 0.07 0.00 0.07 +ex_prison ex_prison NOM f s 0.01 0.00 0.01 0.00 +ex_procureur ex_procureur NOM m s 0.03 0.00 0.03 0.00 +ex_profession ex_profession NOM f s 0.00 0.07 0.00 0.07 +ex_profileur ex_profileur NOM m s 0.01 0.00 0.01 0.00 +ex_promoteur ex_promoteur NOM m s 0.01 0.00 0.01 0.00 +ex_propriétaire ex_propriétaire NOM s 0.04 0.07 0.04 0.07 +ex_présentateur ex_présentateur NOM m s 0.00 0.07 0.00 0.07 +ex_président ex_président NOM m s 0.71 0.00 0.60 0.00 +ex_président ex_président NOM m p 0.71 0.00 0.11 0.00 +ex_prêtre ex_prêtre NOM m s 0.01 0.00 0.01 0.00 +ex_putain ex_putain NOM f s 0.00 0.07 0.00 0.07 +ex_pute ex_pute NOM f p 0.01 0.00 0.01 0.00 +ex_quincaillerie ex_quincaillerie NOM f s 0.00 0.14 0.00 0.14 +ex_quincaillier ex_quincaillier NOM m s 0.00 0.27 0.00 0.27 +ex_rebelle ex_rebelle ADJ s 0.00 0.07 0.00 0.07 +ex_reine ex_reine NOM f s 0.02 0.00 0.02 0.00 +ex_roi ex_roi NOM m s 0.01 0.20 0.01 0.20 +ex_république ex_république NOM f p 0.01 0.00 0.01 0.00 +ex_résidence ex_résidence NOM f s 0.01 0.00 0.01 0.00 +ex_révolutionnaire ex_révolutionnaire NOM s 0.00 0.07 0.00 0.07 +ex_sac ex_sac NOM m p 0.00 0.07 0.00 0.07 +ex_secrétaire ex_secrétaire NOM s 0.07 0.00 0.07 0.00 +ex_sergent ex_sergent NOM m s 0.02 0.14 0.02 0.07 +ex_sergent ex_sergent NOM m p 0.02 0.14 0.00 0.07 +ex_soldat ex_soldat NOM m p 0.00 0.07 0.00 0.07 +ex_soliste ex_soliste NOM p 0.00 0.07 0.00 0.07 +ex_standardiste ex_standardiste NOM s 0.00 0.07 0.00 0.07 +ex_star ex_star NOM f s 0.14 0.00 0.14 0.00 +ex_strip_teaseur ex_strip_teaseur NOM f s 0.00 0.07 0.00 0.07 +ex_séminariste ex_séminariste NOM s 0.00 0.07 0.00 0.07 +ex_sénateur ex_sénateur NOM m s 0.00 0.14 0.00 0.14 +ex_super ex_super ADJ m s 0.14 0.00 0.14 0.00 +ex_sévère ex_sévère ADJ f s 0.00 0.07 0.00 0.07 +ex_taulard ex_taulard NOM m s 0.38 0.14 0.28 0.07 +ex_taulard ex_taulard NOM m p 0.38 0.14 0.10 0.07 +ex_teinturier ex_teinturier NOM m s 0.01 0.00 0.01 0.00 +ex_tirailleur ex_tirailleur NOM m s 0.00 0.07 0.00 0.07 +ex_tueur ex_tueur NOM m s 0.01 0.00 0.01 0.00 +ex_tuteur ex_tuteur NOM m s 0.01 0.00 0.01 0.00 +ex_élève ex_élève NOM s 0.02 0.07 0.02 0.07 +ex_union ex_union NOM f s 0.00 0.07 0.00 0.07 +ex_épouse ex_épouse NOM f s 0.30 0.27 0.28 0.27 +ex_épouse ex_épouse NOM f p 0.30 0.27 0.02 0.00 +ex_équipier ex_équipier NOM m s 0.07 0.00 0.07 0.00 +ex_usine ex_usine NOM f s 0.01 0.00 0.01 0.00 +ex_vedette ex_vedette NOM f s 0.11 0.07 0.11 0.07 +ex_violeur ex_violeur NOM m p 0.01 0.00 0.01 0.00 +ex_voto ex_voto NOM m 0.48 1.69 0.48 1.69 +ex_abrupto ex_abrupto ADV 0.00 0.07 0.00 0.07 +ex_nihilo ex_nihilo ADV 0.00 0.14 0.00 0.14 +exacerba exacerber VER 0.33 1.42 0.00 0.07 ind:pas:3s; +exacerbant exacerber VER 0.33 1.42 0.00 0.07 par:pre; +exacerbation exacerbation NOM f s 0.00 0.07 0.00 0.07 +exacerbe exacerber VER 0.33 1.42 0.03 0.20 imp:pre:2s;ind:pre:3s; +exacerbent exacerber VER 0.33 1.42 0.01 0.20 ind:pre:3p; +exacerber exacerber VER 0.33 1.42 0.08 0.34 inf; +exacerbé exacerbé ADJ m s 0.19 1.15 0.04 0.47 +exacerbée exacerber VER f s 0.33 1.42 0.14 0.14 par:pas; +exacerbées exacerbé ADJ f p 0.19 1.15 0.02 0.20 +exacerbés exacerbé ADJ m p 0.19 1.15 0.12 0.00 +exact exact ADJ m s 86.80 38.58 76.66 19.86 +exacte exact ADJ f s 86.80 38.58 7.55 13.92 +exactement exactement ADV 144.62 92.36 144.62 92.36 +exactes exact ADJ f p 86.80 38.58 1.08 2.97 +exaction exaction NOM f s 0.32 1.69 0.01 0.00 +exactions exaction NOM f p 0.32 1.69 0.31 1.69 +exactitude exactitude NOM f s 1.26 5.00 1.26 4.93 +exactitudes exactitude NOM f p 1.26 5.00 0.00 0.07 +exacts exact ADJ m p 86.80 38.58 1.51 1.82 +exagère exagérer VER 26.93 22.57 7.30 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exagèrent exagérer VER 26.93 22.57 0.60 0.47 ind:pre:3p; +exagères exagérer VER 26.93 22.57 7.75 1.89 ind:pre:2s; +exagéra exagérer VER 26.93 22.57 0.00 0.27 ind:pas:3s; +exagérai exagérer VER 26.93 22.57 0.00 0.07 ind:pas:1s; +exagéraient exagérer VER 26.93 22.57 0.02 0.07 ind:imp:3p; +exagérais exagérer VER 26.93 22.57 0.07 0.54 ind:imp:1s;ind:imp:2s; +exagérait exagérer VER 26.93 22.57 0.14 3.11 ind:imp:3s; +exagérant exagérer VER 26.93 22.57 0.15 0.68 par:pre; +exagération exagération NOM f s 0.67 2.36 0.61 1.69 +exagérations exagération NOM f p 0.67 2.36 0.06 0.68 +exagérer exagérer VER 26.93 22.57 2.86 3.85 inf; +exagérerais exagérer VER 26.93 22.57 0.00 0.07 cnd:pre:1s; +exagérerait exagérer VER 26.93 22.57 0.00 0.07 cnd:pre:3s; +exagérerons exagérer VER 26.93 22.57 0.01 0.00 ind:fut:1p; +exagérez exagérer VER 26.93 22.57 3.31 1.22 imp:pre:2p;ind:pre:2p; +exagérions exagérer VER 26.93 22.57 0.00 0.07 ind:imp:1p; +exagérons exagérer VER 26.93 22.57 1.53 1.76 imp:pre:1p;ind:pre:1p; +exagérèrent exagérer VER 26.93 22.57 0.00 0.07 ind:pas:3p; +exagéré exagérer VER m s 26.93 22.57 2.80 2.30 par:pas; +exagérée exagéré ADJ f s 2.56 4.53 0.65 1.49 +exagérées exagéré ADJ f p 2.56 4.53 0.17 0.34 +exagérément exagérément ADV 0.26 3.38 0.26 3.38 +exagérés exagérer VER m p 26.93 22.57 0.08 0.14 par:pas; +exalta exalter VER 1.86 13.78 0.00 0.41 ind:pas:3s; +exaltai exalter VER 1.86 13.78 0.00 0.07 ind:pas:1s; +exaltaient exalter VER 1.86 13.78 0.00 1.01 ind:imp:3p; +exaltais exalter VER 1.86 13.78 0.00 0.34 ind:imp:1s; +exaltait exalter VER 1.86 13.78 0.00 3.51 ind:imp:3s; +exaltant exaltant ADJ m s 1.17 6.76 0.81 2.36 +exaltante exaltant ADJ f s 1.17 6.76 0.27 3.11 +exaltantes exaltant ADJ f p 1.17 6.76 0.04 0.68 +exaltants exaltant ADJ m p 1.17 6.76 0.05 0.61 +exaltation exaltation NOM f s 0.98 16.22 0.98 15.00 +exaltations exaltation NOM f p 0.98 16.22 0.00 1.22 +exalte exalter VER 1.86 13.78 0.49 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaltent exalter VER 1.86 13.78 0.12 0.47 ind:pre:3p; +exalter exalter VER 1.86 13.78 0.42 1.96 inf; +exalterait exalter VER 1.86 13.78 0.00 0.07 cnd:pre:3s; +exaltes exalter VER 1.86 13.78 0.00 0.14 ind:pre:2s; +exaltons exalter VER 1.86 13.78 0.00 0.07 ind:pre:1p; +exaltèrent exalter VER 1.86 13.78 0.00 0.07 ind:pas:3p; +exalté exalté ADJ m s 1.36 4.26 0.55 1.49 +exaltée exalté ADJ f s 1.36 4.26 0.55 2.03 +exaltées exalté ADJ f p 1.36 4.26 0.10 0.27 +exaltés exalté NOM m p 0.56 2.23 0.27 0.34 +exam exam NOM m s 3.08 0.00 2.06 0.00 +examen examen NOM m s 47.77 27.16 30.37 18.31 +examens examen NOM m p 47.77 27.16 17.40 8.85 +examina examiner VER 36.36 50.68 0.17 9.19 ind:pas:3s; +examinai examiner VER 36.36 50.68 0.03 0.68 ind:pas:1s; +examinaient examiner VER 36.36 50.68 0.14 1.69 ind:imp:3p; +examinais examiner VER 36.36 50.68 0.33 0.88 ind:imp:1s;ind:imp:2s; +examinait examiner VER 36.36 50.68 0.30 5.61 ind:imp:3s; +examinant examiner VER 36.36 50.68 0.64 5.00 par:pre; +examinateur examinateur NOM m s 1.11 1.49 0.95 0.95 +examinateurs examinateur NOM m p 1.11 1.49 0.16 0.47 +examinatrice examinateur NOM f s 1.11 1.49 0.00 0.07 +examine examiner VER 36.36 50.68 3.94 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +examinent examiner VER 36.36 50.68 0.66 0.54 ind:pre:3p; +examiner examiner VER 36.36 50.68 16.47 14.19 inf; +examinera examiner VER 36.36 50.68 0.91 0.20 ind:fut:3s; +examinerai examiner VER 36.36 50.68 0.52 0.00 ind:fut:1s; +examineraient examiner VER 36.36 50.68 0.01 0.20 cnd:pre:3p; +examinerais examiner VER 36.36 50.68 0.03 0.00 cnd:pre:1s; +examinerait examiner VER 36.36 50.68 0.03 0.14 cnd:pre:3s; +examinerez examiner VER 36.36 50.68 0.04 0.00 ind:fut:2p; +examineriez examiner VER 36.36 50.68 0.01 0.00 cnd:pre:2p; +examinerons examiner VER 36.36 50.68 0.32 0.07 ind:fut:1p; +examineront examiner VER 36.36 50.68 0.06 0.07 ind:fut:3p; +examines examiner VER 36.36 50.68 0.12 0.07 ind:pre:2s; +examinez examiner VER 36.36 50.68 2.22 0.07 imp:pre:2p;ind:pre:2p; +examiniez examiner VER 36.36 50.68 0.29 0.00 ind:imp:2p; +examinions examiner VER 36.36 50.68 0.05 0.14 ind:imp:1p; +examinons examiner VER 36.36 50.68 1.57 0.47 imp:pre:1p;ind:pre:1p; +examinèrent examiner VER 36.36 50.68 0.00 0.47 ind:pas:3p; +examiné examiner VER m s 36.36 50.68 5.51 3.11 par:pas; +examinée examiner VER f s 36.36 50.68 1.30 0.88 par:pas; +examinées examiner VER f p 36.36 50.68 0.32 0.34 par:pas; +examinés examiner VER m p 36.36 50.68 0.39 0.41 par:pas; +exams exam NOM m p 3.08 0.00 1.01 0.00 +exarque exarque NOM m s 0.00 0.07 0.00 0.07 +exaspère exaspérer VER 2.31 19.66 0.93 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaspèrent exaspérer VER 2.31 19.66 0.07 0.54 ind:pre:3p; +exaspéra exaspérer VER 2.31 19.66 0.00 0.74 ind:pas:3s; +exaspéraient exaspérer VER 2.31 19.66 0.00 1.15 ind:imp:3p; +exaspérais exaspérer VER 2.31 19.66 0.00 0.20 ind:imp:1s; +exaspérait exaspérer VER 2.31 19.66 0.11 3.58 ind:imp:3s; +exaspérant exaspérant ADJ m s 0.64 2.43 0.32 1.15 +exaspérante exaspérant ADJ f s 0.64 2.43 0.19 1.01 +exaspérantes exaspérant ADJ f p 0.64 2.43 0.01 0.07 +exaspérants exaspérant ADJ m p 0.64 2.43 0.12 0.20 +exaspération exaspération NOM f s 0.55 4.46 0.55 4.39 +exaspérations exaspération NOM f p 0.55 4.46 0.00 0.07 +exaspérer exaspérer VER 2.31 19.66 0.52 1.96 inf; +exaspérera exaspérer VER 2.31 19.66 0.00 0.07 ind:fut:3s; +exaspéreraient exaspérer VER 2.31 19.66 0.00 0.07 cnd:pre:3p; +exaspérerait exaspérer VER 2.31 19.66 0.01 0.00 cnd:pre:3s; +exaspérez exaspérer VER 2.31 19.66 0.11 0.00 ind:pre:2p; +exaspérât exaspérer VER 2.31 19.66 0.00 0.07 sub:imp:3s; +exaspérèrent exaspérer VER 2.31 19.66 0.00 0.14 ind:pas:3p; +exaspéré exaspérer VER m s 2.31 19.66 0.52 5.34 par:pas; +exaspérée exaspérer VER f s 2.31 19.66 0.02 1.89 par:pas; +exaspérées exaspérer VER f p 2.31 19.66 0.00 0.47 par:pas; +exaspérés exaspérer VER m p 2.31 19.66 0.01 0.61 par:pas; +exauce exaucer VER 6.80 4.26 1.21 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exaucement exaucement NOM m s 0.00 0.07 0.00 0.07 +exaucent exaucer VER 6.80 4.26 0.03 0.00 ind:pre:3p; +exaucer exaucer VER 6.80 4.26 1.14 0.81 inf; +exaucera exaucer VER 6.80 4.26 0.16 0.00 ind:fut:3s; +exaucerai exaucer VER 6.80 4.26 0.17 0.00 ind:fut:1s; +exaucez exaucer VER 6.80 4.26 0.04 0.14 imp:pre:2p;ind:pre:2p; +exaucé exaucer VER m s 6.80 4.26 2.88 1.15 par:pas; +exaucée exaucer VER f s 6.80 4.26 0.27 0.68 par:pas; +exaucées exaucer VER f p 6.80 4.26 0.30 0.14 par:pas; +exaucés exaucer VER m p 6.80 4.26 0.51 0.41 par:pas; +exauça exaucer VER 6.80 4.26 0.00 0.07 ind:pas:3s; +exauçai exaucer VER 6.80 4.26 0.00 0.07 ind:pas:1s; +exauçaient exaucer VER 6.80 4.26 0.00 0.07 ind:imp:3p; +exauçant exaucer VER 6.80 4.26 0.06 0.07 par:pre; +exauçons exaucer VER 6.80 4.26 0.03 0.00 imp:pre:1p;ind:pre:1p; +exauçât exaucer VER 6.80 4.26 0.00 0.07 sub:imp:3s; +excavateur excavateur NOM m s 0.04 0.14 0.02 0.07 +excavateurs excavateur NOM m p 0.04 0.14 0.02 0.00 +excavation excavation NOM f s 0.17 1.28 0.12 0.95 +excavations excavation NOM f p 0.17 1.28 0.04 0.34 +excavatrice excavateur NOM f s 0.04 0.14 0.00 0.07 +excaver excaver VER 0.04 0.07 0.03 0.00 inf; +excavée excaver VER f s 0.04 0.07 0.01 0.00 par:pas; +excavées excaver VER f p 0.04 0.07 0.00 0.07 par:pas; +excella exceller VER 2.38 3.78 0.00 0.07 ind:pas:3s; +excellaient exceller VER 2.38 3.78 0.00 0.41 ind:imp:3p; +excellais exceller VER 2.38 3.78 0.00 0.07 ind:imp:1s; +excellait exceller VER 2.38 3.78 0.08 1.28 ind:imp:3s; +excellant exceller VER 2.38 3.78 0.00 0.20 par:pre; +excelle exceller VER 2.38 3.78 0.85 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excellemment excellemment ADV 0.16 0.07 0.16 0.07 +excellence excellence NOM f s 23.29 17.43 22.73 17.09 +excellences excellence NOM f p 23.29 17.43 0.56 0.34 +excellent excellent ADJ m s 76.43 33.92 46.87 16.01 +excellente excellent ADJ f s 76.43 33.92 21.04 11.76 +excellentes excellent ADJ f p 76.43 33.92 4.28 2.91 +excellentissime excellentissime ADJ s 0.01 0.07 0.01 0.07 +excellents excellent ADJ m p 76.43 33.92 4.25 3.24 +exceller exceller VER 2.38 3.78 0.16 0.41 inf; +excelleraient exceller VER 2.38 3.78 0.00 0.07 cnd:pre:3p; +excelles exceller VER 2.38 3.78 0.07 0.00 ind:pre:2s; +excellez exceller VER 2.38 3.78 0.09 0.00 ind:pre:2p; +excellé exceller VER m s 2.38 3.78 0.31 0.00 par:pas; +excentrer excentrer VER 0.02 0.00 0.01 0.00 inf; +excentricité excentricité NOM f s 0.39 1.55 0.29 0.95 +excentricités excentricité NOM f p 0.39 1.55 0.10 0.61 +excentrique excentrique ADJ s 2.34 2.09 1.97 1.35 +excentriques excentrique ADJ p 2.34 2.09 0.37 0.74 +excentré excentré ADJ m s 0.05 0.00 0.04 0.00 +excentrée excentré ADJ f s 0.05 0.00 0.01 0.00 +exceptais excepter VER 0.72 2.64 0.00 0.07 ind:imp:1s; +exceptait excepter VER 0.72 2.64 0.00 0.14 ind:imp:3s; +exceptant excepter VER 0.72 2.64 0.00 0.14 par:pre; +excepte excepter VER 0.72 2.64 0.23 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excepter excepter VER 0.72 2.64 0.00 0.41 inf; +exceptes excepter VER 0.72 2.64 0.00 0.07 ind:pre:2s; +exception exception NOM f s 15.97 24.80 14.32 20.41 +exceptionnel exceptionnel ADJ m s 16.68 20.07 9.72 6.89 +exceptionnelle exceptionnel ADJ f s 16.68 20.07 3.47 8.24 +exceptionnellement exceptionnellement ADV 1.03 4.19 1.03 4.19 +exceptionnelles exceptionnel ADJ f p 16.68 20.07 1.78 3.04 +exceptionnels exceptionnel ADJ m p 16.68 20.07 1.71 1.89 +exceptions exception NOM f p 15.97 24.80 1.65 4.39 +excepté excepté PRE 5.59 4.05 5.59 4.05 +exceptée excepté ADJ f s 0.34 0.68 0.24 0.27 +exceptées excepté ADJ f p 0.34 0.68 0.01 0.00 +exceptés excepté ADJ m p 0.34 0.68 0.04 0.20 +excessif excessif ADJ m s 4.79 15.54 2.05 5.68 +excessifs excessif ADJ m p 4.79 15.54 0.35 1.28 +excessive excessif ADJ f s 4.79 15.54 2.29 7.09 +excessivement excessivement ADV 1.14 3.11 1.14 3.11 +excessives excessif ADJ f p 4.79 15.54 0.09 1.49 +excipent exciper VER 0.00 0.27 0.00 0.07 ind:pre:3p; +exciper exciper VER 0.00 0.27 0.00 0.20 inf; +excisant exciser VER 0.16 0.41 0.02 0.00 par:pre; +excise exciser VER 0.16 0.41 0.05 0.00 ind:pre:1s;ind:pre:3s; +exciser exciser VER 0.16 0.41 0.05 0.27 inf; +exciseuse exciseur NOM f s 0.00 0.20 0.00 0.14 +exciseuses exciseur NOM f p 0.00 0.20 0.00 0.07 +excision excision NOM f s 0.08 0.81 0.08 0.81 +excisé exciser VER m s 0.16 0.41 0.01 0.00 par:pas; +excisée exciser VER f s 0.16 0.41 0.01 0.00 par:pas; +excisées exciser VER f p 0.16 0.41 0.01 0.14 par:pas; +excita exciter VER 28.01 26.55 0.00 0.61 ind:pas:3s; +excitable excitable ADJ m s 0.03 0.00 0.03 0.00 +excitaient exciter VER 28.01 26.55 0.17 1.55 ind:imp:3p; +excitais exciter VER 28.01 26.55 0.03 0.07 ind:imp:1s;ind:imp:2s; +excitait exciter VER 28.01 26.55 0.79 4.80 ind:imp:3s; +excitant excitant ADJ m s 16.14 7.36 12.44 3.92 +excitante excitant ADJ f s 16.14 7.36 2.83 2.30 +excitantes excitant ADJ f p 16.14 7.36 0.60 0.47 +excitants excitant ADJ m p 16.14 7.36 0.27 0.68 +excitation excitation NOM f s 3.81 16.69 3.81 16.55 +excitations excitation NOM f p 3.81 16.69 0.00 0.14 +excite exciter VER 28.01 26.55 10.38 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +excitent exciter VER 28.01 26.55 1.28 1.15 ind:pre:3p; +exciter exciter VER 28.01 26.55 2.60 5.81 inf; +excitera exciter VER 28.01 26.55 0.15 0.20 ind:fut:3s; +exciterait exciter VER 28.01 26.55 0.81 0.34 cnd:pre:3s; +exciterez exciter VER 28.01 26.55 0.00 0.07 ind:fut:2p; +exciteriez exciter VER 28.01 26.55 0.00 0.07 cnd:pre:2p; +exciteront exciter VER 28.01 26.55 0.02 0.07 ind:fut:3p; +excites exciter VER 28.01 26.55 1.59 0.47 ind:pre:2s; +exciteur exciteur NOM m s 0.00 0.07 0.00 0.07 +excitez exciter VER 28.01 26.55 0.64 0.20 imp:pre:2p;ind:pre:2p; +excitions exciter VER 28.01 26.55 0.00 0.07 ind:imp:1p; +excitons exciter VER 28.01 26.55 0.01 0.07 imp:pre:1p;ind:pre:1p;; +excitèrent exciter VER 28.01 26.55 0.00 0.14 ind:pas:3p; +excité exciter VER m s 28.01 26.55 5.17 2.36 par:pas; +excitée exciter VER f s 28.01 26.55 3.17 1.15 par:pas; +excitées excité ADJ f p 6.88 6.96 0.10 0.47 +excités exciter VER m p 28.01 26.55 0.86 0.74 par:pas; +exclût exclure VER 11.32 16.22 0.00 0.07 sub:imp:3s; +exclama exclamer VER 0.26 18.99 0.01 8.04 ind:pas:3s; +exclamai exclamer VER 0.26 18.99 0.00 0.20 ind:pas:1s; +exclamaient exclamer VER 0.26 18.99 0.01 0.54 ind:imp:3p; +exclamais exclamer VER 0.26 18.99 0.00 0.07 ind:imp:1s; +exclamait exclamer VER 0.26 18.99 0.00 1.62 ind:imp:3s; +exclamant exclamer VER 0.26 18.99 0.01 0.47 par:pre; +exclamatif exclamatif ADJ m s 0.01 0.14 0.00 0.07 +exclamation exclamation NOM f s 1.27 11.76 1.11 5.27 +exclamations exclamation NOM f p 1.27 11.76 0.16 6.49 +exclamative exclamatif ADJ f s 0.01 0.14 0.01 0.07 +exclame exclamer VER 0.26 18.99 0.03 3.72 ind:pre:3s; +exclament exclamer VER 0.26 18.99 0.14 0.34 ind:pre:3p; +exclamer exclamer VER 0.26 18.99 0.03 1.49 inf; +exclameraient exclamer VER 0.26 18.99 0.00 0.07 cnd:pre:3p; +exclamerait exclamer VER 0.26 18.99 0.00 0.14 cnd:pre:3s; +exclamâmes exclamer VER 0.26 18.99 0.00 0.14 ind:pas:1p; +exclamèrent exclamer VER 0.26 18.99 0.00 0.27 ind:pas:3p; +exclamé exclamer VER m s 0.26 18.99 0.02 1.08 par:pas; +exclamée exclamer VER f s 0.26 18.99 0.01 0.81 par:pas; +exclu exclure VER m s 11.32 16.22 3.21 3.31 par:pas; +excluaient exclure VER 11.32 16.22 0.00 0.81 ind:imp:3p; +excluais exclure VER 11.32 16.22 0.02 0.20 ind:imp:1s; +excluait exclure VER 11.32 16.22 0.02 2.77 ind:imp:3s; +excluant exclure VER 11.32 16.22 0.12 1.15 par:pre; +exclue exclure VER f s 11.32 16.22 1.10 1.62 par:pas;sub:pre:1s;sub:pre:3s; +excluent exclure VER 11.32 16.22 0.54 0.20 ind:pre:3p; +exclues exclure VER f p 11.32 16.22 0.41 0.14 par:pas;sub:pre:2s; +excluez exclure VER 11.32 16.22 0.16 0.00 imp:pre:2p;ind:pre:2p; +excluions exclure VER 11.32 16.22 0.00 0.07 ind:imp:1p; +excluons exclure VER 11.32 16.22 0.19 0.00 imp:pre:1p;ind:pre:1p; +exclura exclure VER 11.32 16.22 0.01 0.14 ind:fut:3s; +exclurais exclure VER 11.32 16.22 0.23 0.00 cnd:pre:1s; +exclure exclure VER 11.32 16.22 2.17 2.50 inf; +exclus exclure VER m p 11.32 16.22 1.14 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s;ind:pas:2s;par:pas; +exclusif exclusif ADJ m s 3.35 7.43 1.47 3.38 +exclusifs exclusif ADJ m p 3.35 7.43 0.46 0.20 +exclusion exclusion NOM f s 1.02 3.92 1.02 3.72 +exclusions exclusion NOM f p 1.02 3.92 0.00 0.20 +exclusive exclusif ADJ f s 3.35 7.43 1.32 2.97 +exclusivement exclusivement ADV 2.05 10.34 2.05 10.34 +exclusives exclusif ADJ f p 3.35 7.43 0.10 0.88 +exclusivité exclusivité NOM f s 3.21 2.16 3.06 2.03 +exclusivités exclusivité NOM f p 3.21 2.16 0.15 0.14 +exclut exclure VER 11.32 16.22 2.02 1.62 ind:pre:3s;ind:pas:3s; +excommuniaient excommunier VER 0.80 1.82 0.00 0.07 ind:imp:3p; +excommuniait excommunier VER 0.80 1.82 0.00 0.07 ind:imp:3s; +excommuniant excommunier VER 0.80 1.82 0.00 0.07 par:pre; +excommunication excommunication NOM f s 0.82 1.28 0.72 1.15 +excommunications excommunication NOM f p 0.82 1.28 0.10 0.14 +excommunie excommunier VER 0.80 1.82 0.11 0.14 ind:pre:1s;ind:pre:3s; +excommunient excommunier VER 0.80 1.82 0.00 0.07 ind:pre:3p; +excommunier excommunier VER 0.80 1.82 0.19 0.34 inf; +excommuniez excommunier VER 0.80 1.82 0.00 0.07 imp:pre:2p; +excommunié excommunier VER m s 0.80 1.82 0.33 0.68 par:pas; +excommuniée excommunier VER f s 0.80 1.82 0.05 0.00 par:pas; +excommuniés excommunier VER m p 0.80 1.82 0.12 0.34 par:pas; +excoriée excorier VER f s 0.00 0.14 0.00 0.07 par:pas; +excoriées excorier VER f p 0.00 0.14 0.00 0.07 par:pas; +excroissance excroissance NOM f s 0.38 1.55 0.24 0.81 +excroissances excroissance NOM f p 0.38 1.55 0.14 0.74 +excrément excrément NOM m s 1.83 3.99 0.36 0.61 +excrémentiel excrémentiel ADJ m s 0.00 0.14 0.00 0.07 +excrémentielle excrémentiel ADJ f s 0.00 0.14 0.00 0.07 +excréments excrément NOM m p 1.83 3.99 1.48 3.38 +excréter excréter VER 0.04 0.07 0.02 0.00 inf; +excrétera excréter VER 0.04 0.07 0.01 0.00 ind:fut:3s; +excrétion excrétion NOM f s 0.06 0.14 0.01 0.00 +excrétions excrétion NOM f p 0.06 0.14 0.04 0.14 +excrété excréter VER m s 0.04 0.07 0.01 0.07 par:pas; +excède excéder VER 0.65 9.80 0.10 0.34 ind:pre:3s; +excèdent excéder VER 0.65 9.80 0.05 0.20 ind:pre:3p; +excès excès NOM m 7.67 22.23 7.67 22.23 +excédaient excéder VER 0.65 9.80 0.00 0.54 ind:imp:3p; +excédais excéder VER 0.65 9.80 0.00 0.07 ind:imp:1s; +excédait excéder VER 0.65 9.80 0.02 0.41 ind:imp:3s; +excédant excédant ADJ m s 0.13 0.14 0.13 0.14 +excédent excédent NOM m s 0.87 0.74 0.76 0.54 +excédentaire excédentaire ADJ m s 0.06 0.20 0.04 0.14 +excédentaires excédentaire ADJ m p 0.06 0.20 0.01 0.07 +excédents excédent NOM m p 0.87 0.74 0.11 0.20 +excéder excéder VER 0.65 9.80 0.16 0.27 inf; +excédera excéder VER 0.65 9.80 0.01 0.00 ind:fut:3s; +excédât excéder VER 0.65 9.80 0.00 0.07 sub:imp:3s; +excédé excéder VER m s 0.65 9.80 0.21 5.20 par:pas; +excédée excéder VER f s 0.65 9.80 0.03 1.89 par:pas; +excédées excéder VER f p 0.65 9.80 0.00 0.07 par:pas; +excédés excéder VER m p 0.65 9.80 0.02 0.20 par:pas; +excursion excursion NOM f s 3.67 4.59 3.09 3.04 +excursionnaient excursionner VER 0.00 0.20 0.00 0.07 ind:imp:3p; +excursionnant excursionner VER 0.00 0.20 0.00 0.07 par:pre; +excursionner excursionner VER 0.00 0.20 0.00 0.07 inf; +excursionniste excursionniste NOM s 0.04 0.14 0.04 0.00 +excursionnistes excursionniste NOM p 0.04 0.14 0.00 0.14 +excursions excursion NOM f p 3.67 4.59 0.58 1.55 +excusa excuser VER 399.18 61.82 0.02 3.45 ind:pas:3s; +excusable excusable ADJ s 0.40 1.62 0.39 1.55 +excusables excusable ADJ m p 0.40 1.62 0.01 0.07 +excusai excuser VER 399.18 61.82 0.00 0.34 ind:pas:1s; +excusaient excuser VER 399.18 61.82 0.00 0.47 ind:imp:3p; +excusais excuser VER 399.18 61.82 0.11 0.14 ind:imp:1s;ind:imp:2s; +excusait excuser VER 399.18 61.82 0.16 3.45 ind:imp:3s; +excusant excuser VER 399.18 61.82 0.21 3.18 par:pre; +excuse excuser VER 399.18 61.82 111.82 14.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +excusent excuser VER 399.18 61.82 0.30 0.34 ind:pre:1p;ind:pre:3p; +excuser excuser VER 399.18 61.82 43.00 12.03 inf; +excusera excuser VER 399.18 61.82 0.41 0.41 ind:fut:3s; +excuserai excuser VER 399.18 61.82 0.49 0.14 ind:fut:1s; +excuserais excuser VER 399.18 61.82 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +excuserait excuser VER 399.18 61.82 0.06 0.27 cnd:pre:3s; +excuseras excuser VER 399.18 61.82 0.80 1.15 ind:fut:2s; +excuserez excuser VER 399.18 61.82 2.34 1.28 ind:fut:2p; +excuseriez excuser VER 399.18 61.82 0.02 0.00 cnd:pre:2p; +excuserons excuser VER 399.18 61.82 0.01 0.14 ind:fut:1p; +excuseront excuser VER 399.18 61.82 0.18 0.00 ind:fut:3p; +excuses excuse NOM f p 61.58 23.51 32.15 12.23 +excusez excuser VER 399.18 61.82 230.25 16.08 imp:pre:2p;ind:pre:2p; +excusiez excuser VER 399.18 61.82 0.09 0.07 ind:imp:2p; +excusions excuser VER 399.18 61.82 0.00 0.07 ind:imp:1p; +excusâmes excuser VER 399.18 61.82 0.00 0.07 ind:pas:1p; +excusons excuser VER 399.18 61.82 0.48 0.14 imp:pre:1p;ind:pre:1p; +excusât excuser VER 399.18 61.82 0.00 0.41 sub:imp:3s; +excusèrent excuser VER 399.18 61.82 0.00 0.20 ind:pas:3p; +excusé excuser VER m s 399.18 61.82 4.25 1.89 par:pas; +excusée excuser VER f s 399.18 61.82 0.72 0.47 par:pas; +excusées excuser VER f p 399.18 61.82 0.04 0.07 par:pas; +excusés excuser VER m p 399.18 61.82 0.22 0.20 par:pas; +exeat exeat NOM m 0.01 0.27 0.01 0.27 +exemplaire exemplaire ADJ s 4.42 9.12 4.06 7.57 +exemplairement exemplairement ADV 0.10 0.07 0.10 0.07 +exemplaires exemplaire NOM m p 6.32 14.26 2.52 7.57 +exemplarité exemplarité NOM f s 0.01 0.00 0.01 0.00 +exemple exemple NOM m s 93.20 126.62 91.83 119.19 +exemples exemple NOM m p 93.20 126.62 1.38 7.43 +exemplifier exemplifier VER 0.10 0.00 0.10 0.00 inf; +exempt exempt ADJ m s 0.28 1.96 0.12 1.15 +exempte exempt ADJ f s 0.28 1.96 0.09 0.27 +exempter exempter VER 1.16 0.54 0.22 0.07 inf; +exemptes exempt ADJ f p 0.28 1.96 0.02 0.27 +exemptiez exempter VER 1.16 0.54 0.01 0.00 ind:imp:2p; +exemption exemption NOM f s 0.60 0.68 0.54 0.20 +exemptions exemption NOM f p 0.60 0.68 0.06 0.47 +exempts exempt ADJ m p 0.28 1.96 0.05 0.27 +exempté exempter VER m s 1.16 0.54 0.52 0.14 par:pas; +exemptée exempter VER f s 1.16 0.54 0.05 0.14 par:pas; +exemptés exempter VER m p 1.16 0.54 0.28 0.00 par:pas; +exequatur exequatur NOM m 0.00 0.07 0.00 0.07 +exerce exercer VER 14.53 44.26 3.82 6.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exercent exercer VER 14.53 44.26 0.60 1.55 ind:pre:3p; +exercer exercer VER 14.53 44.26 5.67 14.39 inf; +exercera exercer VER 14.53 44.26 0.07 0.20 ind:fut:3s; +exercerai exercer VER 14.53 44.26 0.10 0.14 ind:fut:1s; +exerceraient exercer VER 14.53 44.26 0.00 0.14 cnd:pre:3p; +exercerais exercer VER 14.53 44.26 0.01 0.07 cnd:pre:1s; +exercerait exercer VER 14.53 44.26 0.05 0.41 cnd:pre:3s; +exercerez exercer VER 14.53 44.26 0.14 0.14 ind:fut:2p; +exercerons exercer VER 14.53 44.26 0.01 0.07 ind:fut:1p; +exerceront exercer VER 14.53 44.26 0.02 0.14 ind:fut:3p; +exerces exercer VER 14.53 44.26 0.20 0.14 ind:pre:2s; +exercez exercer VER 14.53 44.26 0.86 0.27 imp:pre:2p;ind:pre:2p; +exercice exercice NOM m s 22.66 27.36 17.54 17.50 +exercices exercice NOM m p 22.66 27.36 5.12 9.86 +exerciez exercer VER 14.53 44.26 0.24 0.07 ind:imp:2p; +exercèrent exercer VER 14.53 44.26 0.00 0.07 ind:pas:3p; +exercé exercer VER m s 14.53 44.26 0.96 2.97 par:pas; +exercée exercer VER f s 14.53 44.26 0.56 2.03 par:pas; +exercées exercer VER f p 14.53 44.26 0.05 0.47 par:pas; +exercés exercer VER m p 14.53 44.26 0.20 0.68 par:pas; +exergue exergue NOM m s 0.22 0.68 0.22 0.68 +exerça exercer VER 14.53 44.26 0.02 0.81 ind:pas:3s; +exerçai exercer VER 14.53 44.26 0.01 0.34 ind:pas:1s; +exerçaient exercer VER 14.53 44.26 0.04 1.89 ind:imp:3p; +exerçais exercer VER 14.53 44.26 0.12 0.74 ind:imp:1s;ind:imp:2s; +exerçait exercer VER 14.53 44.26 0.31 7.03 ind:imp:3s; +exerçant exercer VER 14.53 44.26 0.44 1.89 par:pre; +exerçassent exercer VER 14.53 44.26 0.00 0.07 sub:imp:3p; +exerçons exercer VER 14.53 44.26 0.04 0.20 imp:pre:1p;ind:pre:1p; +exerçât exercer VER 14.53 44.26 0.00 0.68 sub:imp:3s; +exfiltration exfiltration NOM f s 0.04 0.07 0.04 0.07 +exfiltrer exfiltrer VER 0.05 0.00 0.03 0.00 inf; +exfiltré exfiltrer VER m s 0.05 0.00 0.02 0.00 par:pas; +exfoliant exfoliant ADJ m s 0.08 0.00 0.08 0.00 +exfolier exfolier VER 0.01 0.14 0.01 0.00 inf; +exfolions exfolier VER 0.01 0.14 0.00 0.07 ind:pre:1p; +exfoliée exfolier VER f s 0.01 0.14 0.00 0.07 par:pas; +exhala exhaler VER 0.80 10.81 0.03 0.81 ind:pas:3s; +exhalaient exhaler VER 0.80 10.81 0.00 0.47 ind:imp:3p; +exhalaison exhalaison NOM f s 0.02 1.69 0.00 0.88 +exhalaisons exhalaison NOM f p 0.02 1.69 0.02 0.81 +exhalait exhaler VER 0.80 10.81 0.16 2.50 ind:imp:3s; +exhalant exhaler VER 0.80 10.81 0.00 2.64 par:pre; +exhalation exhalation NOM f s 0.01 0.00 0.01 0.00 +exhale exhaler VER 0.80 10.81 0.32 1.76 imp:pre:2s;ind:pre:3s; +exhalent exhaler VER 0.80 10.81 0.01 0.47 ind:pre:3p; +exhaler exhaler VER 0.80 10.81 0.27 1.08 inf; +exhaleraient exhaler VER 0.80 10.81 0.00 0.07 cnd:pre:3p; +exhalâmes exhaler VER 0.80 10.81 0.00 0.07 ind:pas:1p; +exhalât exhaler VER 0.80 10.81 0.00 0.14 sub:imp:3s; +exhalé exhaler VER m s 0.80 10.81 0.00 0.47 par:pas; +exhalée exhaler VER f s 0.80 10.81 0.00 0.34 par:pas; +exhaussait exhausser VER 0.03 0.47 0.00 0.07 ind:imp:3s; +exhausse exhausser VER 0.03 0.47 0.00 0.20 ind:pre:3s; +exhaussement exhaussement NOM m s 0.00 0.07 0.00 0.07 +exhausser exhausser VER 0.03 0.47 0.00 0.07 inf; +exhaussé exhausser VER m s 0.03 0.47 0.01 0.07 par:pas; +exhaussée exhausser VER f s 0.03 0.47 0.01 0.07 par:pas; +exhaustif exhaustif ADJ m s 0.61 0.54 0.30 0.41 +exhaustifs exhaustif ADJ m p 0.61 0.54 0.02 0.00 +exhaustion exhaustion NOM f s 0.00 0.34 0.00 0.34 +exhaustive exhaustif ADJ f s 0.61 0.54 0.29 0.14 +exhaustivement exhaustivement ADV 0.00 0.14 0.00 0.14 +exhaustivité exhaustivité NOM f s 0.00 0.07 0.00 0.07 +exhiba exhiber VER 2.87 13.31 0.00 0.61 ind:pas:3s; +exhibai exhiber VER 2.87 13.31 0.00 0.14 ind:pas:1s; +exhibaient exhiber VER 2.87 13.31 0.01 0.61 ind:imp:3p; +exhibais exhiber VER 2.87 13.31 0.03 0.00 ind:imp:2s; +exhibait exhiber VER 2.87 13.31 0.16 2.03 ind:imp:3s; +exhibant exhiber VER 2.87 13.31 0.16 1.69 par:pre; +exhibe exhiber VER 2.87 13.31 0.58 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exhibent exhiber VER 2.87 13.31 0.05 0.74 ind:pre:3p; +exhiber exhiber VER 2.87 13.31 0.98 3.78 inf; +exhibera exhiber VER 2.87 13.31 0.20 0.07 ind:fut:3s; +exhiberait exhiber VER 2.87 13.31 0.01 0.14 cnd:pre:3s; +exhiberas exhiber VER 2.87 13.31 0.00 0.07 ind:fut:2s; +exhibez exhiber VER 2.87 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +exhibions exhiber VER 2.87 13.31 0.01 0.07 ind:imp:1p; +exhibition exhibition NOM f s 0.44 2.77 0.36 2.09 +exhibitionnisme exhibitionnisme NOM m s 0.20 0.81 0.20 0.81 +exhibitionniste exhibitionniste NOM s 1.08 1.55 0.85 1.01 +exhibitionnistes exhibitionniste NOM p 1.08 1.55 0.23 0.54 +exhibitions exhibition NOM f p 0.44 2.77 0.08 0.68 +exhibé exhiber VER m s 2.87 13.31 0.30 1.15 par:pas; +exhibée exhiber VER f s 2.87 13.31 0.32 0.20 par:pas; +exhibées exhiber VER f p 2.87 13.31 0.00 0.20 par:pas; +exhibés exhiber VER m p 2.87 13.31 0.02 0.34 par:pas; +exhorta exhorter VER 0.66 3.51 0.00 0.68 ind:pas:3s; +exhortai exhorter VER 0.66 3.51 0.00 0.07 ind:pas:1s; +exhortaient exhorter VER 0.66 3.51 0.02 0.07 ind:imp:3p; +exhortais exhorter VER 0.66 3.51 0.00 0.34 ind:imp:1s; +exhortait exhorter VER 0.66 3.51 0.01 0.54 ind:imp:3s; +exhortant exhorter VER 0.66 3.51 0.01 0.27 par:pre; +exhortation exhortation NOM f s 0.13 1.69 0.02 0.47 +exhortations exhortation NOM f p 0.13 1.69 0.11 1.22 +exhorte exhorter VER 0.66 3.51 0.34 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exhortent exhorter VER 0.66 3.51 0.01 0.14 ind:pre:3p; +exhorter exhorter VER 0.66 3.51 0.06 0.54 inf; +exhortions exhorter VER 0.66 3.51 0.00 0.07 ind:imp:1p; +exhortâmes exhorter VER 0.66 3.51 0.00 0.07 ind:pas:1p; +exhortons exhorter VER 0.66 3.51 0.04 0.00 ind:pre:1p; +exhorté exhorter VER m s 0.66 3.51 0.17 0.07 par:pas; +exhuma exhumer VER 1.62 3.85 0.00 0.14 ind:pas:3s; +exhumaient exhumer VER 1.62 3.85 0.00 0.20 ind:imp:3p; +exhumais exhumer VER 1.62 3.85 0.00 0.07 ind:imp:1s; +exhumait exhumer VER 1.62 3.85 0.02 0.07 ind:imp:3s; +exhumant exhumer VER 1.62 3.85 0.01 0.14 par:pre; +exhumation exhumation NOM f s 0.30 0.27 0.30 0.27 +exhume exhumer VER 1.62 3.85 0.07 0.34 imp:pre:2s;ind:pre:3s; +exhumer exhumer VER 1.62 3.85 0.81 0.88 inf; +exhumera exhumer VER 1.62 3.85 0.02 0.07 ind:fut:3s; +exhumeront exhumer VER 1.62 3.85 0.00 0.07 ind:fut:3p; +exhumé exhumer VER m s 1.62 3.85 0.41 0.95 par:pas; +exhumée exhumer VER f s 1.62 3.85 0.04 0.27 par:pas; +exhumées exhumer VER f p 1.62 3.85 0.01 0.20 par:pas; +exhumés exhumer VER m p 1.62 3.85 0.22 0.47 par:pas; +exige exiger VER 34.96 60.07 18.93 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exigea exiger VER 34.96 60.07 0.05 1.96 ind:pas:3s; +exigeai exiger VER 34.96 60.07 0.00 0.34 ind:pas:1s; +exigeaient exiger VER 34.96 60.07 0.05 3.04 ind:imp:3p; +exigeais exiger VER 34.96 60.07 0.04 0.41 ind:imp:1s; +exigeait exiger VER 34.96 60.07 1.21 13.11 ind:imp:3s; +exigeant exigeant ADJ m s 3.79 7.84 1.77 2.97 +exigeante exigeant ADJ f s 3.79 7.84 1.59 3.18 +exigeantes exigeant ADJ f p 3.79 7.84 0.14 0.41 +exigeants exigeant ADJ m p 3.79 7.84 0.28 1.28 +exigeassent exiger VER 34.96 60.07 0.00 0.14 sub:imp:3p; +exigence exigence NOM f s 5.17 17.36 1.22 5.14 +exigences exigence NOM f p 5.17 17.36 3.96 12.23 +exigent exiger VER 34.96 60.07 2.80 2.97 ind:pre:3p; +exigeons exiger VER 34.96 60.07 1.21 0.14 imp:pre:1p;ind:pre:1p; +exiger exiger VER 34.96 60.07 3.13 8.11 inf; +exigera exiger VER 34.96 60.07 0.26 0.88 ind:fut:3s; +exigerai exiger VER 34.96 60.07 0.25 0.20 ind:fut:1s; +exigeraient exiger VER 34.96 60.07 0.00 0.27 cnd:pre:3p; +exigerais exiger VER 34.96 60.07 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +exigerait exiger VER 34.96 60.07 0.14 1.01 cnd:pre:3s; +exigerez exiger VER 34.96 60.07 0.03 0.14 ind:fut:2p; +exigeriez exiger VER 34.96 60.07 0.02 0.00 cnd:pre:2p; +exigerions exiger VER 34.96 60.07 0.01 0.00 cnd:pre:1p; +exigerons exiger VER 34.96 60.07 0.13 0.00 ind:fut:1p; +exigeront exiger VER 34.96 60.07 0.21 0.14 ind:fut:3p; +exiges exiger VER 34.96 60.07 0.61 0.20 ind:pre:2s; +exigez exiger VER 34.96 60.07 0.61 0.41 imp:pre:2p;ind:pre:2p; +exigible exigible ADJ m s 0.01 0.07 0.01 0.07 +exigiez exiger VER 34.96 60.07 0.16 0.00 ind:imp:2p; +exigèrent exiger VER 34.96 60.07 0.00 0.14 ind:pas:3p; +exigu exigu ADJ m s 0.53 4.66 0.38 1.89 +exigé exiger VER m s 34.96 60.07 3.58 6.49 par:pas; +exiguïté exiguïté NOM f s 0.00 1.76 0.00 1.76 +exigée exiger VER f s 34.96 60.07 0.56 1.01 par:pas; +exigées exiger VER f p 34.96 60.07 0.17 0.07 par:pas; +exigus exigu ADJ m p 0.53 4.66 0.00 0.41 +exigés exiger VER m p 34.96 60.07 0.01 0.47 par:pas; +exiguë exigu ADJ f s 0.53 4.66 0.12 1.69 +exiguës exigu ADJ f p 0.53 4.66 0.02 0.68 +exil exil NOM m s 6.04 13.99 5.91 13.58 +exila exiler VER 2.41 4.32 0.04 0.20 ind:pas:3s; +exilaient exiler VER 2.41 4.32 0.00 0.07 ind:imp:3p; +exilait exiler VER 2.41 4.32 0.00 0.14 ind:imp:3s; +exilant exiler VER 2.41 4.32 0.00 0.07 par:pre; +exile exiler VER 2.41 4.32 0.43 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exilent exiler VER 2.41 4.32 0.00 0.07 ind:pre:3p; +exiler exiler VER 2.41 4.32 0.73 0.61 inf; +exiles exiler VER 2.41 4.32 0.14 0.00 ind:pre:2s; +exilez exiler VER 2.41 4.32 0.01 0.00 imp:pre:2p; +exilât exiler VER 2.41 4.32 0.00 0.07 sub:imp:3s; +exils exil NOM m p 6.04 13.99 0.14 0.41 +exilé exilé NOM m s 2.23 4.05 0.88 1.62 +exilée exilé NOM f s 2.23 4.05 0.25 0.34 +exilées exilé ADJ f p 0.50 1.89 0.00 0.14 +exilés exilé NOM m p 2.23 4.05 1.12 2.03 +exista exister VER 136.24 148.18 0.00 0.41 ind:pas:3s; +existai exister VER 136.24 148.18 0.00 0.07 ind:pas:1s; +existaient exister VER 136.24 148.18 1.88 7.16 ind:imp:3p; +existais exister VER 136.24 148.18 2.05 2.36 ind:imp:1s;ind:imp:2s; +existait exister VER 136.24 148.18 9.58 32.57 ind:imp:3s; +existant existant ADJ m s 1.43 2.03 0.19 0.54 +existante existant ADJ f s 1.43 2.03 0.48 0.41 +existantes existant ADJ f p 1.43 2.03 0.23 0.54 +existants existant ADJ m p 1.43 2.03 0.52 0.54 +existe exister VER 136.24 148.18 85.86 57.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +existence existence NOM f s 24.98 97.36 24.66 93.85 +existences existence NOM f p 24.98 97.36 0.33 3.51 +existent exister VER 136.24 148.18 10.74 8.24 ind:pre:3p; +existentialisme existentialisme NOM m s 0.07 0.61 0.07 0.61 +existentialiste existentialiste ADJ m s 0.06 0.20 0.05 0.07 +existentialistes existentialiste NOM p 0.03 0.34 0.02 0.27 +existentiel existentiel ADJ m s 0.35 0.88 0.14 0.20 +existentielle existentiel ADJ f s 0.35 0.88 0.13 0.54 +existentielles existentiel ADJ f p 0.35 0.88 0.08 0.14 +exister exister VER 136.24 148.18 8.62 20.20 inf; +existera exister VER 136.24 148.18 1.52 0.41 ind:fut:3s; +existerai exister VER 136.24 148.18 0.05 0.20 ind:fut:1s; +existeraient exister VER 136.24 148.18 0.07 0.20 cnd:pre:3p; +existerais exister VER 136.24 148.18 0.47 0.14 cnd:pre:1s;cnd:pre:2s; +existerait exister VER 136.24 148.18 0.97 0.95 cnd:pre:3s; +existeras exister VER 136.24 148.18 0.20 0.00 ind:fut:2s; +existeriez exister VER 136.24 148.18 0.11 0.00 cnd:pre:2p; +existerions exister VER 136.24 148.18 0.15 0.00 cnd:pre:1p; +existerons exister VER 136.24 148.18 0.03 0.00 ind:fut:1p; +existeront exister VER 136.24 148.18 0.15 0.20 ind:fut:3p; +existes exister VER 136.24 148.18 3.56 1.08 ind:pre:2s;sub:pre:2s; +existez exister VER 136.24 148.18 1.46 0.41 imp:pre:2p;ind:pre:2p; +existiez exister VER 136.24 148.18 0.41 0.14 ind:imp:2p; +existions exister VER 136.24 148.18 0.12 0.27 ind:imp:1p; +existons exister VER 136.24 148.18 0.60 0.41 imp:pre:1p;ind:pre:1p; +existât exister VER 136.24 148.18 0.00 1.55 sub:imp:3s; +existèrent exister VER 136.24 148.18 0.00 0.27 ind:pas:3p; +existé exister VER m s 136.24 148.18 7.42 11.42 par:pas; +existée exister VER f s 136.24 148.18 0.03 0.00 par:pas; +existés exister VER m p 136.24 148.18 0.04 0.00 par:pas; +exit exit VER 0.20 0.27 0.20 0.27 inf; +exo exo NOM m s 0.11 0.27 0.04 0.20 +exobiologie exobiologie NOM f s 0.02 0.00 0.02 0.00 +exocet exocet NOM m s 0.01 0.00 0.01 0.00 +exode exode NOM m s 0.43 4.53 0.42 4.32 +exodes exode NOM m p 0.43 4.53 0.01 0.20 +exogamie exogamie NOM f s 0.00 0.41 0.00 0.41 +exogamique exogamique ADJ m s 0.00 0.27 0.00 0.27 +exogène exogène ADJ f s 0.01 0.00 0.01 0.00 +exonérait exonérer VER 0.08 0.20 0.00 0.07 ind:imp:3s; +exonération exonération NOM f s 0.25 0.00 0.25 0.00 +exonérer exonérer VER 0.08 0.20 0.06 0.07 inf; +exonérera exonérer VER 0.08 0.20 0.01 0.00 ind:fut:3s; +exonérées exonérer VER f p 0.08 0.20 0.01 0.07 par:pas; +exophtalmique exophtalmique ADJ m s 0.00 0.07 0.00 0.07 +exorable exorable ADJ s 0.00 0.14 0.00 0.14 +exorbitaient exorbiter VER 0.00 0.81 0.00 0.20 ind:imp:3p; +exorbitait exorbiter VER 0.00 0.81 0.00 0.07 ind:imp:3s; +exorbitant exorbitant ADJ m s 0.83 2.30 0.53 0.54 +exorbitante exorbitant ADJ f s 0.83 2.30 0.05 1.08 +exorbitantes exorbitant ADJ f p 0.83 2.30 0.05 0.47 +exorbitants exorbitant ADJ m p 0.83 2.30 0.21 0.20 +exorbiter exorbiter VER 0.00 0.81 0.00 0.07 inf; +exorbité exorbité ADJ m s 0.36 2.84 0.00 0.27 +exorbitées exorbité ADJ f p 0.36 2.84 0.00 0.14 +exorbités exorbité ADJ m p 0.36 2.84 0.36 2.43 +exorcisa exorciser VER 2.00 2.70 0.00 0.14 ind:pas:3s; +exorcisait exorciser VER 2.00 2.70 0.01 0.14 ind:imp:3s; +exorcisant exorciser VER 2.00 2.70 0.02 0.00 par:pre; +exorcise exorciser VER 2.00 2.70 0.85 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exorcisent exorciser VER 2.00 2.70 0.02 0.00 ind:pre:3p; +exorciser exorciser VER 2.00 2.70 0.48 1.35 inf; +exorciserait exorciser VER 2.00 2.70 0.00 0.07 cnd:pre:3s; +exorcisez exorciser VER 2.00 2.70 0.01 0.07 imp:pre:2p;ind:pre:2p; +exorcisions exorciser VER 2.00 2.70 0.01 0.07 ind:imp:1p; +exorcisme exorcisme NOM m s 2.09 1.82 1.86 1.49 +exorcismes exorcisme NOM m p 2.09 1.82 0.23 0.34 +exorciste exorciste NOM s 0.60 0.14 0.57 0.07 +exorcistes exorciste NOM p 0.60 0.14 0.03 0.07 +exorcisé exorciser VER m s 2.00 2.70 0.43 0.54 par:pas; +exorcisée exorciser VER f s 2.00 2.70 0.16 0.07 par:pas; +exorcisées exorciser VER f p 2.00 2.70 0.00 0.07 par:pas; +exorcisés exorciser VER m p 2.00 2.70 0.00 0.07 par:pas; +exorde exorde NOM m s 0.01 0.54 0.01 0.47 +exordes exorde NOM m p 0.01 0.54 0.00 0.07 +exos exo NOM m p 0.11 0.27 0.07 0.07 +exosphère exosphère NOM f s 0.01 0.00 0.01 0.00 +exosquelette exosquelette NOM m s 0.36 0.00 0.36 0.00 +exostose exostose NOM f s 0.03 0.00 0.02 0.00 +exostoses exostose NOM f p 0.03 0.00 0.01 0.00 +exothermique exothermique ADJ f s 0.03 0.00 0.03 0.00 +exotique exotique ADJ s 4.19 8.99 2.86 5.00 +exotiquement exotiquement ADV 0.00 0.07 0.00 0.07 +exotiques exotique ADJ p 4.19 8.99 1.33 3.99 +exotisme exotisme NOM m s 0.23 2.77 0.23 2.77 +expansible expansible ADJ s 0.02 0.00 0.02 0.00 +expansif expansif ADJ m s 0.33 1.35 0.15 0.81 +expansifs expansif ADJ m p 0.33 1.35 0.01 0.07 +expansion expansion NOM f s 1.89 2.50 1.89 2.50 +expansionnisme expansionnisme NOM m s 0.01 0.07 0.01 0.07 +expansionniste expansionniste ADJ f s 0.02 0.00 0.02 0.00 +expansionnistes expansionniste NOM p 0.10 0.07 0.10 0.00 +expansive expansif ADJ f s 0.33 1.35 0.15 0.41 +expansives expansif ADJ f p 0.33 1.35 0.02 0.07 +expansé expansé ADJ m s 0.00 0.07 0.00 0.07 +expatriait expatrier VER 0.39 0.81 0.00 0.07 ind:imp:3s; +expatriation expatriation NOM f s 0.00 0.07 0.00 0.07 +expatrier expatrier VER 0.39 0.81 0.25 0.41 inf; +expatrièrent expatrier VER 0.39 0.81 0.00 0.07 ind:pas:3p; +expatrié expatrié NOM m s 0.35 0.14 0.21 0.00 +expatriée expatrier VER f s 0.39 0.81 0.00 0.07 par:pas; +expatriés expatrié NOM m p 0.35 0.14 0.14 0.14 +expectatif expectatif ADJ m s 0.00 0.07 0.00 0.07 +expectation expectation NOM f s 0.02 0.00 0.02 0.00 +expectative expectative NOM f s 0.09 1.01 0.06 1.01 +expectatives expectative NOM f p 0.09 1.01 0.02 0.00 +expectora expectorer VER 0.02 0.41 0.00 0.07 ind:pas:3s; +expectorant expectorant NOM m s 0.01 0.00 0.01 0.00 +expectoration expectoration NOM f s 0.02 0.27 0.02 0.27 +expectorer expectorer VER 0.02 0.41 0.00 0.14 inf; +expectoré expectorer VER m s 0.02 0.41 0.01 0.14 par:pas; +expectorées expectorer VER f p 0.02 0.41 0.01 0.00 par:pas; +expert_comptable expert_comptable NOM m s 0.23 0.20 0.23 0.20 +expert expert NOM m s 20.14 5.00 12.70 1.96 +experte expert ADJ f s 7.66 6.15 3.45 2.16 +expertement expertement ADV 0.00 0.07 0.00 0.07 +expertes expert ADJ f p 7.66 6.15 0.34 1.15 +expertisaient expertiser VER 0.26 0.47 0.00 0.07 ind:imp:3p; +expertisait expertiser VER 0.26 0.47 0.00 0.07 ind:imp:3s; +expertisant expertiser VER 0.26 0.47 0.00 0.07 par:pre; +expertise expertise NOM f s 2.88 0.68 2.69 0.61 +expertiser expertiser VER 0.26 0.47 0.24 0.27 inf; +expertises expertise NOM f p 2.88 0.68 0.20 0.07 +experts expert NOM m p 20.14 5.00 7.44 3.04 +expiaient expier VER 2.42 2.30 0.00 0.07 ind:imp:3p; +expiait expier VER 2.42 2.30 0.00 0.27 ind:imp:3s; +expiant expier VER 2.42 2.30 0.04 0.00 par:pre; +expiation expiation NOM f s 0.44 0.88 0.44 0.88 +expiatoire expiatoire ADJ s 0.17 0.95 0.16 0.74 +expiatoires expiatoire ADJ p 0.17 0.95 0.01 0.20 +expiatrice expiateur ADJ f s 0.00 0.07 0.00 0.07 +expie expier VER 2.42 2.30 0.29 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expier expier VER 2.42 2.30 1.73 1.35 inf; +expieras expier VER 2.42 2.30 0.02 0.00 ind:fut:2s; +expira expirer VER 6.06 4.59 0.00 0.61 ind:pas:3s; +expirais expirer VER 6.06 4.59 0.00 0.07 ind:imp:1s; +expirait expirer VER 6.06 4.59 0.04 0.88 ind:imp:3s; +expirant expirer VER 6.06 4.59 0.01 0.14 par:pre; +expirante expirant ADJ f s 0.00 0.41 0.00 0.07 +expirantes expirant ADJ f p 0.00 0.41 0.00 0.07 +expiration expiration NOM f s 1.29 1.28 1.29 1.08 +expirations expiration NOM f p 1.29 1.28 0.00 0.20 +expire expirer VER 6.06 4.59 2.63 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expirent expirer VER 6.06 4.59 0.20 0.20 ind:pre:3p; +expirer expirer VER 6.06 4.59 0.72 0.95 inf; +expirera expirer VER 6.06 4.59 0.07 0.00 ind:fut:3s; +expirerait expirer VER 6.06 4.59 0.00 0.14 cnd:pre:3s; +expirez expirer VER 6.06 4.59 0.54 0.14 imp:pre:2p;ind:pre:2p; +expirons expirer VER 6.06 4.59 0.00 0.07 ind:pre:1p; +expiré expirer VER m s 6.06 4.59 1.73 0.34 par:pas; +expirée expirer VER f s 6.06 4.59 0.09 0.14 par:pas; +expirés expirer VER m p 6.06 4.59 0.01 0.07 par:pas; +expié expier VER m s 2.42 2.30 0.33 0.20 par:pas; +expiée expier VER f s 2.42 2.30 0.00 0.07 par:pas; +expiés expier VER m p 2.42 2.30 0.00 0.07 par:pas; +explicable explicable ADJ s 0.19 1.42 0.19 1.22 +explicables explicable ADJ m p 0.19 1.42 0.00 0.20 +explicatif explicatif ADJ m s 0.03 1.15 0.01 0.20 +explicatifs explicatif ADJ m p 0.03 1.15 0.00 0.20 +explication explication NOM f s 31.74 46.28 24.60 28.85 +explications explication NOM f p 31.74 46.28 7.14 17.43 +explicative explicatif ADJ f s 0.03 1.15 0.02 0.54 +explicatives explicatif ADJ f p 0.03 1.15 0.00 0.20 +explicitant expliciter VER 0.06 0.68 0.00 0.07 par:pre; +explicite explicite ADJ s 1.78 2.16 1.34 1.82 +explicitement explicitement ADV 0.48 1.55 0.48 1.55 +expliciter expliciter VER 0.06 0.68 0.06 0.54 inf; +explicites explicite ADJ p 1.78 2.16 0.45 0.34 +expliqua expliquer VER 200.93 233.92 0.77 36.42 ind:pas:3s; +expliquai expliquer VER 200.93 233.92 0.26 2.70 ind:pas:1s; +expliquaient expliquer VER 200.93 233.92 0.12 1.08 ind:imp:3p; +expliquais expliquer VER 200.93 233.92 1.25 1.82 ind:imp:1s;ind:imp:2s; +expliquait expliquer VER 200.93 233.92 1.40 21.62 ind:imp:3s; +expliquant expliquer VER 200.93 233.92 0.50 6.28 par:pre; +explique expliquer VER 200.93 233.92 48.02 38.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +expliquent expliquer VER 200.93 233.92 0.78 2.09 ind:pre:3p; +expliquer expliquer VER 200.93 233.92 89.21 76.55 inf;;inf;;inf;; +expliquera expliquer VER 200.93 233.92 3.69 1.89 ind:fut:3s; +expliquerai expliquer VER 200.93 233.92 13.85 5.81 ind:fut:1s; +expliqueraient expliquer VER 200.93 233.92 0.06 0.27 cnd:pre:3p; +expliquerais expliquer VER 200.93 233.92 0.55 0.20 cnd:pre:1s;cnd:pre:2s; +expliquerait expliquer VER 200.93 233.92 3.30 2.03 cnd:pre:3s; +expliqueras expliquer VER 200.93 233.92 1.19 0.74 ind:fut:2s; +expliquerez expliquer VER 200.93 233.92 1.29 0.54 ind:fut:2p; +expliqueriez expliquer VER 200.93 233.92 0.05 0.07 cnd:pre:2p; +expliquerons expliquer VER 200.93 233.92 0.11 0.20 ind:fut:1p; +expliqueront expliquer VER 200.93 233.92 0.25 0.14 ind:fut:3p; +expliques expliquer VER 200.93 233.92 3.97 1.62 ind:pre:2s;sub:pre:2s; +expliquez expliquer VER 200.93 233.92 14.34 3.11 imp:pre:2p;ind:pre:2p; +expliquiez expliquer VER 200.93 233.92 0.61 0.27 ind:imp:2p;sub:pre:2p; +expliquions expliquer VER 200.93 233.92 0.03 0.20 ind:imp:1p; +expliquâmes expliquer VER 200.93 233.92 0.00 0.07 ind:pas:1p; +expliquons expliquer VER 200.93 233.92 0.23 0.20 imp:pre:1p;ind:pre:1p; +expliquât expliquer VER 200.93 233.92 0.00 0.34 sub:imp:3s; +expliquèrent expliquer VER 200.93 233.92 0.00 0.41 ind:pas:3p; +expliqué expliquer VER m s 200.93 233.92 14.18 27.57 par:pas; +expliquée expliquer VER f s 200.93 233.92 0.36 0.34 par:pas; +expliquées expliquer VER f p 200.93 233.92 0.14 0.47 par:pas; +expliqués expliquer VER m p 200.93 233.92 0.35 0.61 par:pas; +exploit exploit NOM m s 8.00 15.61 3.97 5.20 +exploita exploiter VER 9.47 11.15 0.00 0.14 ind:pas:3s; +exploitable exploitable ADJ s 0.19 0.41 0.14 0.34 +exploitables exploitable ADJ p 0.19 0.41 0.05 0.07 +exploitai exploiter VER 9.47 11.15 0.00 0.07 ind:pas:1s; +exploitaient exploiter VER 9.47 11.15 0.05 0.34 ind:imp:3p; +exploitais exploiter VER 9.47 11.15 0.00 0.07 ind:imp:1s; +exploitait exploiter VER 9.47 11.15 0.10 0.54 ind:imp:3s; +exploitant exploiter VER 9.47 11.15 0.27 0.41 par:pre; +exploitante exploitant NOM f s 0.46 0.41 0.14 0.00 +exploitants exploitant NOM m p 0.46 0.41 0.06 0.34 +exploitation exploitation NOM f s 4.25 6.82 3.86 6.62 +exploitations exploitation NOM f p 4.25 6.82 0.40 0.20 +exploite exploiter VER 9.47 11.15 1.23 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exploitent exploiter VER 9.47 11.15 0.58 0.54 ind:pre:3p; +exploiter exploiter VER 9.47 11.15 4.18 5.07 inf; +exploitera exploiter VER 9.47 11.15 0.05 0.00 ind:fut:3s; +exploiterais exploiter VER 9.47 11.15 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +exploiterait exploiter VER 9.47 11.15 0.04 0.07 cnd:pre:3s; +exploiteront exploiter VER 9.47 11.15 0.03 0.00 ind:fut:3p; +exploites exploiter VER 9.47 11.15 0.19 0.14 ind:pre:2s; +exploiteur exploiteur NOM m s 0.57 1.22 0.29 0.27 +exploiteurs exploiteur NOM m p 0.57 1.22 0.28 0.88 +exploiteuses exploiteur NOM f p 0.57 1.22 0.00 0.07 +exploitez exploiter VER 9.47 11.15 0.27 0.20 imp:pre:2p;ind:pre:2p; +exploitions exploiter VER 9.47 11.15 0.00 0.07 ind:imp:1p; +exploitons exploiter VER 9.47 11.15 0.02 0.00 imp:pre:1p;ind:pre:1p; +exploitât exploiter VER 9.47 11.15 0.00 0.14 sub:imp:3s; +exploits exploit NOM m p 8.00 15.61 4.03 10.41 +exploitèrent exploiter VER 9.47 11.15 0.00 0.07 ind:pas:3p; +exploité exploiter VER m s 9.47 11.15 1.64 0.88 par:pas; +exploitée exploiter VER f s 9.47 11.15 0.35 0.68 par:pas; +exploitées exploité ADJ f p 0.27 0.88 0.15 0.20 +exploités exploiter VER m p 9.47 11.15 0.33 0.27 par:pas; +explora explorer VER 10.00 12.03 0.02 0.54 ind:pas:3s; +explorai explorer VER 10.00 12.03 0.00 0.07 ind:pas:1s; +exploraient explorer VER 10.00 12.03 0.03 0.27 ind:imp:3p; +explorais explorer VER 10.00 12.03 0.17 0.27 ind:imp:1s;ind:imp:2s; +explorait explorer VER 10.00 12.03 0.23 0.74 ind:imp:3s; +explorant explorer VER 10.00 12.03 0.42 0.81 par:pre; +explorateur explorateur NOM m s 1.47 2.64 0.69 1.62 +explorateurs explorateur NOM m p 1.47 2.64 0.72 0.95 +exploration exploration NOM f s 2.06 4.53 1.81 3.31 +explorations exploration NOM f p 2.06 4.53 0.25 1.22 +exploratoire exploratoire ADJ f s 0.10 0.07 0.10 0.00 +exploratoires exploratoire ADJ f p 0.10 0.07 0.00 0.07 +exploratrice explorateur ADJ f s 0.70 0.95 0.25 0.00 +exploratrices explorateur ADJ f p 0.70 0.95 0.00 0.07 +explore explorer VER 10.00 12.03 0.98 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +explorent explorer VER 10.00 12.03 0.12 0.07 ind:pre:3p; +explorer explorer VER 10.00 12.03 5.50 6.76 ind:pre:2p;inf; +explorera explorer VER 10.00 12.03 0.05 0.00 ind:fut:3s; +explorerai explorer VER 10.00 12.03 0.08 0.00 ind:fut:1s; +explorerez explorer VER 10.00 12.03 0.01 0.00 ind:fut:2p; +explorerons explorer VER 10.00 12.03 0.17 0.00 ind:fut:1p; +exploreur exploreur NOM m s 0.01 0.00 0.01 0.00 +explorez explorer VER 10.00 12.03 0.33 0.00 imp:pre:2p;ind:pre:2p; +explorions explorer VER 10.00 12.03 0.06 0.20 ind:imp:1p; +explorons explorer VER 10.00 12.03 0.46 0.00 imp:pre:1p;ind:pre:1p; +explorèrent explorer VER 10.00 12.03 0.02 0.27 ind:pas:3p; +exploré explorer VER m s 10.00 12.03 1.00 0.68 par:pas; +explorée explorer VER f s 10.00 12.03 0.26 0.34 par:pas; +explorées explorer VER f p 10.00 12.03 0.04 0.14 par:pas; +explorés explorer VER m p 10.00 12.03 0.04 0.20 par:pas; +explosa exploser VER 53.79 24.05 0.36 2.97 ind:pas:3s; +explosai exploser VER 53.79 24.05 0.00 0.07 ind:pas:1s; +explosaient exploser VER 53.79 24.05 0.18 1.15 ind:imp:3p; +explosais exploser VER 53.79 24.05 0.04 0.00 ind:imp:1s; +explosait exploser VER 53.79 24.05 0.23 1.69 ind:imp:3s; +explosant exploser VER 53.79 24.05 0.35 0.81 par:pre; +explose exploser VER 53.79 24.05 10.22 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +explosent exploser VER 53.79 24.05 1.54 1.62 ind:pre:3p; +exploser exploser VER 53.79 24.05 25.11 7.36 imp:pre:2p;inf; +explosera exploser VER 53.79 24.05 1.87 0.14 ind:fut:3s; +exploserai exploser VER 53.79 24.05 0.13 0.00 ind:fut:1s; +exploseraient exploser VER 53.79 24.05 0.12 0.00 cnd:pre:3p; +exploserais exploser VER 53.79 24.05 0.07 0.00 cnd:pre:1s; +exploserait exploser VER 53.79 24.05 0.68 0.20 cnd:pre:3s; +exploseras exploser VER 53.79 24.05 0.05 0.07 ind:fut:2s; +exploserez exploser VER 53.79 24.05 0.23 0.00 ind:fut:2p; +exploseront exploser VER 53.79 24.05 0.18 0.00 ind:fut:3p; +exploses exploser VER 53.79 24.05 0.13 0.00 ind:pre:2s;sub:pre:2s; +exploseur exploseur NOM m s 0.01 0.07 0.01 0.07 +explosez exploser VER 53.79 24.05 0.27 0.00 imp:pre:2p;ind:pre:2p; +explosif explosif NOM m s 10.04 2.70 2.05 0.61 +explosifs explosif NOM m p 10.04 2.70 7.97 1.96 +explosion explosion NOM f s 26.14 25.68 23.11 17.64 +explosions explosion NOM f p 26.14 25.68 3.02 8.04 +explosive explosif ADJ f s 4.07 2.77 1.18 0.95 +explosives explosif ADJ f p 4.07 2.77 0.52 0.14 +explosons exploser VER 53.79 24.05 0.15 0.00 imp:pre:1p;ind:pre:1p; +explosât exploser VER 53.79 24.05 0.00 0.14 sub:imp:3s; +explosèrent exploser VER 53.79 24.05 0.01 0.41 ind:pas:3p; +explosé exploser VER m s 53.79 24.05 11.10 3.31 par:pas; +explosée exploser VER f s 53.79 24.05 0.59 0.20 par:pas; +explosées exploser VER f p 53.79 24.05 0.04 0.14 par:pas; +explosés exploser VER m p 53.79 24.05 0.13 0.00 par:pas; +explétif explétif NOM m s 0.00 0.07 0.00 0.07 +explétive explétif ADJ f s 0.01 0.07 0.01 0.07 +expo expo NOM f s 3.77 0.54 3.26 0.47 +exponentiel exponentiel ADJ m s 0.39 0.20 0.14 0.07 +exponentielle exponentiel ADJ f s 0.39 0.20 0.20 0.07 +exponentiellement exponentiellement ADV 0.17 0.00 0.17 0.00 +exponentielles exponentiel ADJ f p 0.39 0.20 0.04 0.07 +export export NOM m s 0.58 0.20 0.53 0.20 +exporta exporter VER 0.83 0.88 0.00 0.07 ind:pas:3s; +exportaient exporter VER 0.83 0.88 0.14 0.07 ind:imp:3p; +exportant exporter VER 0.83 0.88 0.02 0.00 par:pre; +exportateur exportateur ADJ m s 0.07 0.14 0.05 0.07 +exportateurs exportateur ADJ m p 0.07 0.14 0.01 0.07 +exportation exportation NOM f s 0.88 1.96 0.76 1.49 +exportations exportation NOM f p 0.88 1.96 0.11 0.47 +exporte exporter VER 0.83 0.88 0.15 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exporter exporter VER 0.83 0.88 0.17 0.34 inf; +exportera exporter VER 0.83 0.88 0.01 0.00 ind:fut:3s; +exporterons exporter VER 0.83 0.88 0.01 0.00 ind:fut:1p; +exportez exporter VER 0.83 0.88 0.01 0.00 ind:pre:2p; +exports export NOM m p 0.58 0.20 0.06 0.00 +exporté exporter VER m s 0.83 0.88 0.02 0.00 par:pas; +exportée exporter VER f s 0.83 0.88 0.01 0.00 par:pas; +exportées exporter VER f p 0.83 0.88 0.02 0.00 par:pas; +exportés exporter VER m p 0.83 0.88 0.27 0.20 par:pas; +expos expo NOM f p 3.77 0.54 0.51 0.07 +exposa exposer VER 22.40 38.18 0.05 2.50 ind:pas:3s; +exposai exposer VER 22.40 38.18 0.00 0.81 ind:pas:1s; +exposaient exposer VER 22.40 38.18 0.01 0.41 ind:imp:3p; +exposais exposer VER 22.40 38.18 0.05 0.61 ind:imp:1s; +exposait exposer VER 22.40 38.18 0.44 3.38 ind:imp:3s; +exposant exposant NOM m s 0.25 0.14 0.25 0.14 +expose exposer VER 22.40 38.18 3.38 3.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exposent exposer VER 22.40 38.18 0.31 0.74 ind:pre:3p; +exposer exposer VER 22.40 38.18 6.56 10.41 inf; +exposera exposer VER 22.40 38.18 0.11 0.14 ind:fut:3s; +exposerai exposer VER 22.40 38.18 0.16 0.07 ind:fut:1s; +exposerais exposer VER 22.40 38.18 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +exposerait exposer VER 22.40 38.18 0.04 0.41 cnd:pre:3s; +exposerez exposer VER 22.40 38.18 0.04 0.07 ind:fut:2p; +exposerions exposer VER 22.40 38.18 0.01 0.07 cnd:pre:1p; +exposeront exposer VER 22.40 38.18 0.02 0.00 ind:fut:3p; +exposes exposer VER 22.40 38.18 1.06 0.14 ind:pre:2s; +exposez exposer VER 22.40 38.18 1.17 0.41 imp:pre:2p;ind:pre:2p; +exposiez exposer VER 22.40 38.18 0.17 0.07 ind:imp:2p; +exposition exposition NOM f s 12.36 13.99 11.25 11.42 +expositions exposition NOM f p 12.36 13.99 1.11 2.57 +exposâmes exposer VER 22.40 38.18 0.00 0.14 ind:pas:1p; +exposons exposer VER 22.40 38.18 0.03 0.07 imp:pre:1p;ind:pre:1p; +exposèrent exposer VER 22.40 38.18 0.00 0.07 ind:pas:3p; +exposé exposer VER m s 22.40 38.18 5.00 5.54 par:pas; +exposée exposer VER f s 22.40 38.18 1.42 3.24 par:pas; +exposées exposer VER f p 22.40 38.18 0.42 1.49 par:pas; +exposés exposer VER m p 22.40 38.18 1.71 1.55 par:pas; +express express ADJ 2.77 1.28 2.77 1.28 +expresse exprès ADJ f s 24.06 26.22 0.38 0.95 +expresses exprès ADJ f p 24.06 26.22 0.00 0.47 +expressif expressif ADJ m s 1.12 2.09 0.53 0.88 +expressifs expressif ADJ m p 1.12 2.09 0.26 0.34 +expression expression NOM f s 19.22 76.89 17.70 69.26 +expressionnisme expressionnisme NOM m s 0.07 0.14 0.07 0.14 +expressionniste expressionniste ADJ s 0.71 0.20 0.57 0.14 +expressionnistes expressionniste NOM p 0.19 0.00 0.16 0.00 +expressions expression NOM f p 19.22 76.89 1.51 7.64 +expressive expressif ADJ f s 1.12 2.09 0.33 0.47 +expressivement expressivement ADV 0.00 0.07 0.00 0.07 +expressives expressif ADJ f p 1.12 2.09 0.01 0.41 +expressément expressément ADV 0.34 1.55 0.34 1.55 +exprima exprimer VER 30.02 72.64 0.10 2.57 ind:pas:3s; +exprimable exprimable ADJ s 0.01 0.00 0.01 0.00 +exprimai exprimer VER 30.02 72.64 0.00 0.61 ind:pas:1s; +exprimaient exprimer VER 30.02 72.64 0.08 4.66 ind:imp:3p; +exprimais exprimer VER 30.02 72.64 0.14 0.61 ind:imp:1s;ind:imp:2s; +exprimait exprimer VER 30.02 72.64 0.56 11.76 ind:imp:3s; +exprimant exprimer VER 30.02 72.64 0.23 2.84 par:pre; +exprime exprimer VER 30.02 72.64 4.67 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expriment exprimer VER 30.02 72.64 0.79 3.38 ind:pre:3p; +exprimer exprimer VER 30.02 72.64 18.13 25.95 inf;; +exprimera exprimer VER 30.02 72.64 0.16 0.07 ind:fut:3s; +exprimerai exprimer VER 30.02 72.64 0.02 0.07 ind:fut:1s; +exprimerais exprimer VER 30.02 72.64 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +exprimerait exprimer VER 30.02 72.64 0.05 0.81 cnd:pre:3s; +exprimeras exprimer VER 30.02 72.64 0.03 0.00 ind:fut:2s; +exprimerez exprimer VER 30.02 72.64 0.03 0.14 ind:fut:2p; +exprimeront exprimer VER 30.02 72.64 0.01 0.07 ind:fut:3p; +exprimes exprimer VER 30.02 72.64 0.39 0.14 ind:pre:2s; +exprimez exprimer VER 30.02 72.64 0.82 0.27 imp:pre:2p;ind:pre:2p; +exprimiez exprimer VER 30.02 72.64 0.03 0.00 ind:imp:2p; +exprimions exprimer VER 30.02 72.64 0.00 0.20 ind:imp:1p; +exprimons exprimer VER 30.02 72.64 0.30 0.00 imp:pre:1p;ind:pre:1p; +exprimât exprimer VER 30.02 72.64 0.00 0.47 sub:imp:3s; +exprimèrent exprimer VER 30.02 72.64 0.00 0.54 ind:pas:3p; +exprimé exprimer VER m s 30.02 72.64 2.41 3.58 par:pas; +exprimée exprimer VER f s 30.02 72.64 0.75 1.96 par:pas; +exprimées exprimer VER f p 30.02 72.64 0.05 0.95 par:pas; +exprimés exprimer VER m p 30.02 72.64 0.22 0.61 par:pas; +expropria exproprier VER 0.21 0.34 0.01 0.00 ind:pas:3s; +expropriation expropriation NOM f s 0.32 0.41 0.28 0.27 +expropriations expropriation NOM f p 0.32 0.41 0.03 0.14 +exproprie exproprier VER 0.21 0.34 0.01 0.07 ind:pre:3s; +exproprier exproprier VER 0.21 0.34 0.04 0.00 inf; +exproprierait exproprier VER 0.21 0.34 0.00 0.07 cnd:pre:3s; +exproprié exproprier VER m s 0.21 0.34 0.11 0.07 par:pas; +expropriée exproprié NOM f s 0.10 0.00 0.10 0.00 +expropriées exproprier VER f p 0.21 0.34 0.00 0.07 par:pas; +expropriés exproprier VER m p 0.21 0.34 0.01 0.00 par:pas; +exprès exprès ADJ m 24.06 26.22 23.68 24.80 +expédia expédier VER 8.69 23.78 0.00 1.49 ind:pas:3s; +expédiai expédier VER 8.69 23.78 0.00 0.47 ind:pas:1s; +expédiaient expédier VER 8.69 23.78 0.00 0.34 ind:imp:3p; +expédiais expédier VER 8.69 23.78 0.05 0.20 ind:imp:1s;ind:imp:2s; +expédiait expédier VER 8.69 23.78 0.06 2.36 ind:imp:3s; +expédiant expédier VER 8.69 23.78 0.05 1.01 par:pre; +expédie expédier VER 8.69 23.78 1.73 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expédient expédier VER 8.69 23.78 0.26 0.47 ind:pre:3p; +expédientes expédient ADJ f p 0.03 0.34 0.01 0.00 +expédients expédient NOM m p 0.36 2.64 0.20 1.82 +expédier expédier VER 8.69 23.78 2.09 5.41 inf; +expédiera expédier VER 8.69 23.78 0.13 0.27 ind:fut:3s; +expédierai expédier VER 8.69 23.78 0.02 0.14 ind:fut:1s; +expédierait expédier VER 8.69 23.78 0.00 0.20 cnd:pre:3s; +expédieras expédier VER 8.69 23.78 0.00 0.07 ind:fut:2s; +expédieriez expédier VER 8.69 23.78 0.02 0.00 cnd:pre:2p; +expédierons expédier VER 8.69 23.78 0.01 0.07 ind:fut:1p; +expédieront expédier VER 8.69 23.78 0.01 0.14 ind:fut:3p; +expédies expédier VER 8.69 23.78 0.04 0.07 ind:pre:2s;sub:pre:2s; +expédiez expédier VER 8.69 23.78 0.72 0.00 imp:pre:2p;ind:pre:2p; +expédions expédier VER 8.69 23.78 0.28 0.07 imp:pre:1p;ind:pre:1p; +expéditeur expéditeur NOM m s 1.40 1.01 1.35 0.81 +expéditeurs expéditeur NOM m p 1.40 1.01 0.03 0.20 +expéditif expéditif ADJ m s 0.47 2.03 0.05 1.08 +expéditifs expéditif ADJ m p 0.47 2.03 0.03 0.34 +expédition expédition NOM f s 10.74 15.14 9.05 11.76 +expéditionnaire expéditionnaire ADJ s 0.18 2.77 0.16 2.43 +expéditionnaires expéditionnaire ADJ f p 0.18 2.77 0.02 0.34 +expéditions expédition NOM f p 10.74 15.14 1.69 3.38 +expéditive expéditif ADJ f s 0.47 2.03 0.36 0.34 +expéditives expéditif ADJ f p 0.47 2.03 0.02 0.27 +expéditrice expéditeur NOM f s 1.40 1.01 0.02 0.00 +expédié expédier VER m s 8.69 23.78 1.92 4.39 par:pas; +expédiée expédier VER f s 8.69 23.78 0.52 1.49 par:pas; +expédiées expédier VER f p 8.69 23.78 0.34 0.68 par:pas; +expédiés expédier VER m p 8.69 23.78 0.42 1.28 par:pas; +expulsa expulser VER 9.28 8.24 0.00 0.41 ind:pas:3s; +expulsai expulser VER 9.28 8.24 0.00 0.07 ind:pas:1s; +expulsaient expulser VER 9.28 8.24 0.01 0.27 ind:imp:3p; +expulsais expulser VER 9.28 8.24 0.00 0.14 ind:imp:1s; +expulsait expulser VER 9.28 8.24 0.02 0.27 ind:imp:3s; +expulsant expulser VER 9.28 8.24 0.03 0.20 par:pre; +expulse expulser VER 9.28 8.24 0.67 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expulsent expulser VER 9.28 8.24 0.24 0.07 ind:pre:3p; +expulser expulser VER 9.28 8.24 4.03 2.30 inf;; +expulsera expulser VER 9.28 8.24 0.10 0.07 ind:fut:3s; +expulserai expulser VER 9.28 8.24 0.03 0.00 ind:fut:1s; +expulserait expulser VER 9.28 8.24 0.12 0.07 cnd:pre:3s; +expulseront expulser VER 9.28 8.24 0.01 0.00 ind:fut:3p; +expulsez expulser VER 9.28 8.24 0.15 0.14 imp:pre:2p;ind:pre:2p; +expulsion expulsion NOM f s 2.97 1.76 2.51 1.55 +expulsions expulsion NOM f p 2.97 1.76 0.46 0.20 +expulsive expulsif ADJ f s 0.01 0.00 0.01 0.00 +expulsons expulser VER 9.28 8.24 0.02 0.00 imp:pre:1p;ind:pre:1p; +expulsât expulser VER 9.28 8.24 0.00 0.07 sub:imp:3s; +expulsé expulser VER m s 9.28 8.24 2.37 1.76 par:pas; +expulsée expulser VER f s 9.28 8.24 0.42 0.41 par:pas; +expulsées expulser VER f p 9.28 8.24 0.19 0.14 par:pas; +expulsés expulser VER m p 9.28 8.24 0.88 0.81 par:pas; +expurgeait expurger VER 0.13 0.81 0.00 0.14 ind:imp:3s; +expurger expurger VER 0.13 0.81 0.00 0.14 inf; +expurgera expurger VER 0.13 0.81 0.00 0.07 ind:fut:3s; +expurgé expurger VER m s 0.13 0.81 0.03 0.07 par:pas; +expurgée expurger VER f s 0.13 0.81 0.10 0.27 par:pas; +expurgés expurger VER m p 0.13 0.81 0.00 0.14 par:pas; +expérience expérience NOM f s 72.04 58.72 55.52 48.11 +expériences expérience NOM f p 72.04 58.72 16.52 10.61 +expérimenta expérimenter VER 3.92 2.97 0.03 0.07 ind:pas:3s; +expérimentai expérimenter VER 3.92 2.97 0.01 0.07 ind:pas:1s; +expérimentaient expérimenter VER 3.92 2.97 0.13 0.20 ind:imp:3p; +expérimentais expérimenter VER 3.92 2.97 0.07 0.20 ind:imp:1s; +expérimentait expérimenter VER 3.92 2.97 0.08 0.14 ind:imp:3s; +expérimental expérimental ADJ m s 2.74 1.01 1.90 0.07 +expérimentale expérimental ADJ f s 2.74 1.01 0.48 0.61 +expérimentalement expérimentalement ADV 0.01 0.07 0.01 0.07 +expérimentales expérimental ADJ f p 2.74 1.01 0.10 0.14 +expérimentant expérimenter VER 3.92 2.97 0.03 0.14 par:pre; +expérimentateur expérimentateur NOM m s 0.14 0.07 0.14 0.07 +expérimentation expérimentation NOM f s 1.30 2.91 0.87 2.16 +expérimentations expérimentation NOM f p 1.30 2.91 0.43 0.74 +expérimentaux expérimental ADJ m p 2.74 1.01 0.26 0.20 +expérimente expérimenter VER 3.92 2.97 0.33 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +expérimentent expérimenter VER 3.92 2.97 0.18 0.00 ind:pre:3p; +expérimenter expérimenter VER 3.92 2.97 1.23 0.47 inf; +expérimenteras expérimenter VER 3.92 2.97 0.02 0.00 ind:fut:2s; +expérimentez expérimenter VER 3.92 2.97 0.18 0.00 imp:pre:2p;ind:pre:2p; +expérimentiez expérimenter VER 3.92 2.97 0.04 0.00 ind:imp:2p; +expérimentons expérimenter VER 3.92 2.97 0.02 0.07 imp:pre:1p;ind:pre:1p; +expérimenté expérimenté ADJ m s 2.42 1.62 1.33 0.68 +expérimentée expérimenté ADJ f s 2.42 1.62 0.52 0.34 +expérimentées expérimenté ADJ f p 2.42 1.62 0.14 0.14 +expérimentés expérimenté ADJ m p 2.42 1.62 0.42 0.47 +exquis exquis ADJ m 6.38 17.36 3.20 7.23 +exquise exquis ADJ f s 6.38 17.36 2.51 7.97 +exquises exquis ADJ f p 6.38 17.36 0.66 2.16 +exsangue exsangue ADJ s 0.45 4.19 0.44 2.84 +exsangues exsangue ADJ p 0.45 4.19 0.01 1.35 +exsudaient exsuder VER 0.05 0.41 0.00 0.07 ind:imp:3p; +exsudait exsuder VER 0.05 0.41 0.00 0.07 ind:imp:3s; +exsudant exsuder VER 0.05 0.41 0.00 0.14 par:pre; +exsudat exsudat NOM m s 0.00 0.07 0.00 0.07 +exsudation exsudation NOM f s 0.01 0.00 0.01 0.00 +exsude exsuder VER 0.05 0.41 0.01 0.07 ind:pre:3s; +exsuder exsuder VER 0.05 0.41 0.04 0.00 inf; +exsudé exsuder VER m s 0.05 0.41 0.00 0.07 par:pas; +extase extase NOM f s 3.67 11.55 3.43 10.54 +extases extase NOM f p 3.67 11.55 0.24 1.01 +extasia extasier VER 0.68 7.30 0.00 1.22 ind:pas:3s; +extasiaient extasier VER 0.68 7.30 0.14 0.41 ind:imp:3p; +extasiais extasier VER 0.68 7.30 0.00 0.34 ind:imp:1s;ind:imp:2s; +extasiait extasier VER 0.68 7.30 0.02 1.35 ind:imp:3s; +extasiant extasier VER 0.68 7.30 0.01 0.27 par:pre; +extasiantes extasiant ADJ f p 0.00 0.14 0.00 0.07 +extasie extasier VER 0.68 7.30 0.16 0.68 ind:pre:1s;ind:pre:3s; +extasient extasier VER 0.68 7.30 0.02 0.07 ind:pre:3p; +extasier extasier VER 0.68 7.30 0.26 0.88 inf; +extasieront extasier VER 0.68 7.30 0.00 0.14 ind:fut:3p; +extasiez extasier VER 0.68 7.30 0.02 0.00 ind:pre:2p; +extasions extasier VER 0.68 7.30 0.01 0.20 ind:pre:1p; +extasiât extasier VER 0.68 7.30 0.00 0.07 sub:imp:3s; +extasièrent extasier VER 0.68 7.30 0.00 0.07 ind:pas:3p; +extasié extasier VER m s 0.68 7.30 0.04 0.61 par:pas; +extasiée extasié ADJ f s 0.11 1.89 0.10 0.47 +extasiées extasier VER f p 0.68 7.30 0.00 0.20 par:pas; +extasiés extasié ADJ m p 0.11 1.89 0.00 0.47 +extatique extatique ADJ s 0.22 1.22 0.22 1.01 +extatiquement extatiquement ADV 0.00 0.14 0.00 0.14 +extatiques extatique ADJ p 0.22 1.22 0.00 0.20 +extenseur extenseur NOM m s 0.07 0.14 0.06 0.14 +extenseurs extenseur NOM m p 0.07 0.14 0.01 0.00 +extensible extensible ADJ s 0.10 0.61 0.09 0.47 +extensibles extensible ADJ m p 0.10 0.61 0.01 0.14 +extension extension NOM f s 2.60 2.77 2.43 2.57 +extensions extension NOM f p 2.60 2.77 0.17 0.20 +extensive extensif ADJ f s 0.04 0.00 0.04 0.00 +extermina exterminer VER 6.85 4.05 0.13 0.07 ind:pas:3s; +exterminaient exterminer VER 6.85 4.05 0.03 0.14 ind:imp:3p; +exterminais exterminer VER 6.85 4.05 0.02 0.07 ind:imp:1s; +exterminait exterminer VER 6.85 4.05 0.00 0.14 ind:imp:3s; +exterminant exterminer VER 6.85 4.05 0.12 0.00 par:pre; +exterminateur exterminateur NOM m s 0.72 0.07 0.56 0.07 +exterminateurs exterminateur NOM m p 0.72 0.07 0.17 0.00 +extermination extermination NOM f s 2.09 1.08 2.08 1.01 +exterminations extermination NOM f p 2.09 1.08 0.01 0.07 +exterminatrice exterminateur ADJ f s 0.39 0.88 0.10 0.00 +exterminatrices exterminateur ADJ f p 0.39 0.88 0.00 0.14 +extermine exterminer VER 6.85 4.05 0.53 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exterminent exterminer VER 6.85 4.05 0.18 0.00 ind:pre:3p; +exterminer exterminer VER 6.85 4.05 3.07 1.89 inf; +exterminera exterminer VER 6.85 4.05 0.23 0.00 ind:fut:3s; +exterminerait exterminer VER 6.85 4.05 0.00 0.07 cnd:pre:3s; +exterminerons exterminer VER 6.85 4.05 0.01 0.00 ind:fut:1p; +extermineront exterminer VER 6.85 4.05 0.04 0.00 ind:fut:3p; +exterminez exterminer VER 6.85 4.05 0.13 0.00 imp:pre:2p;ind:pre:2p; +exterminions exterminer VER 6.85 4.05 0.01 0.00 ind:imp:1p; +exterminons exterminer VER 6.85 4.05 0.04 0.00 imp:pre:1p;ind:pre:1p; +exterminé exterminer VER m s 6.85 4.05 0.85 0.41 par:pas; +exterminée exterminer VER f s 6.85 4.05 0.26 0.20 par:pas; +exterminées exterminer VER f p 6.85 4.05 0.15 0.07 par:pas; +exterminés exterminer VER m p 6.85 4.05 1.05 0.88 par:pas; +externalité externalité NOM f s 0.01 0.00 0.01 0.00 +externat externat NOM m s 0.01 0.07 0.01 0.07 +externe externe ADJ s 3.53 0.88 2.48 0.54 +externes externe ADJ p 3.53 0.88 1.05 0.34 +exterritorialité exterritorialité NOM f s 0.00 0.07 0.00 0.07 +exècre exécrer VER 0.48 3.18 0.41 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exècrent exécrer VER 0.48 3.18 0.00 0.07 ind:pre:3p; +extincteur extincteur NOM m s 1.93 0.95 1.49 0.88 +extincteurs extincteur NOM m p 1.93 0.95 0.44 0.07 +extinction extinction NOM f s 3.42 3.65 3.42 3.65 +extinctrice extinctrice ADJ f s 0.01 0.00 0.01 0.00 +extirpa extirper VER 1.35 10.07 0.00 1.42 ind:pas:3s; +extirpaient extirper VER 1.35 10.07 0.00 0.20 ind:imp:3p; +extirpais extirper VER 1.35 10.07 0.01 0.07 ind:imp:1s; +extirpait extirper VER 1.35 10.07 0.02 0.47 ind:imp:3s; +extirpant extirper VER 1.35 10.07 0.02 0.34 par:pre; +extirpation extirpation NOM f s 0.01 0.00 0.01 0.00 +extirpe extirper VER 1.35 10.07 0.05 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extirpent extirper VER 1.35 10.07 0.02 0.34 ind:pre:3p; +extirper extirper VER 1.35 10.07 0.88 3.51 inf; +extirpera extirper VER 1.35 10.07 0.02 0.07 ind:fut:3s; +extirperai extirper VER 1.35 10.07 0.20 0.00 ind:fut:1s; +extirperais extirper VER 1.35 10.07 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +extirperait extirper VER 1.35 10.07 0.00 0.07 cnd:pre:3s; +extirpé extirper VER m s 1.35 10.07 0.09 1.08 par:pas; +extirpée extirper VER f s 1.35 10.07 0.00 0.27 par:pas; +extirpées extirper VER f p 1.35 10.07 0.01 0.07 par:pas; +extirpés extirper VER m p 1.35 10.07 0.01 0.34 par:pas; +extorquai extorquer VER 1.35 2.03 0.00 0.07 ind:pas:1s; +extorquais extorquer VER 1.35 2.03 0.00 0.07 ind:imp:1s; +extorquait extorquer VER 1.35 2.03 0.01 0.20 ind:imp:3s; +extorque extorquer VER 1.35 2.03 0.05 0.00 ind:pre:3s; +extorquent extorquer VER 1.35 2.03 0.02 0.00 ind:pre:3p; +extorquer extorquer VER 1.35 2.03 0.90 0.68 inf; +extorqueur extorqueur NOM m s 0.02 0.00 0.02 0.00 +extorquez extorquer VER 1.35 2.03 0.01 0.00 ind:pre:2p; +extorquèrent extorquer VER 1.35 2.03 0.00 0.07 ind:pas:3p; +extorqué extorquer VER m s 1.35 2.03 0.28 0.61 par:pas; +extorquée extorquer VER f s 1.35 2.03 0.03 0.07 par:pas; +extorquées extorquer VER f p 1.35 2.03 0.03 0.07 par:pas; +extorqués extorquer VER m p 1.35 2.03 0.03 0.20 par:pas; +extorsion extorsion NOM f s 1.79 0.14 1.57 0.14 +extorsions extorsion NOM f p 1.79 0.14 0.23 0.00 +extra_dry extra_dry NOM m 0.00 0.07 0.00 0.07 +extra_fin extra_fin ADJ m s 0.00 0.34 0.00 0.27 +extra_fin extra_fin ADJ m p 0.00 0.34 0.00 0.07 +extra_fort extra_fort ADJ m s 0.11 0.20 0.04 0.07 +extra_fort extra_fort ADJ f s 0.11 0.20 0.08 0.14 +extra_lucide extra_lucide ADJ f s 0.05 0.20 0.04 0.14 +extra_lucide extra_lucide ADJ p 0.05 0.20 0.01 0.07 +extra_muros extra_muros ADJ f p 0.00 0.07 0.00 0.07 +extra_muros extra_muros ADV 0.00 0.07 0.00 0.07 +extra_sensoriel extra_sensoriel ADJ m s 0.06 0.00 0.02 0.00 +extra_sensoriel extra_sensoriel ADJ f s 0.06 0.00 0.04 0.00 +extra_souple extra_souple ADJ f p 0.00 0.07 0.00 0.07 +extra_terrestre extra_terrestre NOM s 3.71 0.34 1.35 0.27 +extra_terrestre extra_terrestre NOM p 3.71 0.34 2.36 0.07 +extra_utérin extra_utérin ADJ m s 0.10 0.00 0.03 0.00 +extra_utérin extra_utérin ADJ f s 0.10 0.00 0.07 0.00 +extra extra ADJ 6.78 1.42 6.78 1.42 +extraconjugal extraconjugal ADJ m s 0.10 0.07 0.03 0.00 +extraconjugale extraconjugal ADJ f s 0.10 0.07 0.02 0.00 +extraconjugales extraconjugal ADJ f p 0.10 0.07 0.04 0.07 +extraconjugaux extraconjugal ADJ m p 0.10 0.07 0.01 0.00 +extracorporelle extracorporel ADJ f s 0.01 0.00 0.01 0.00 +extracteur extracteur NOM m s 0.04 0.00 0.04 0.00 +extracteurs extracteur NOM m p 0.04 0.00 0.01 0.00 +extraction extraction NOM f s 1.82 1.42 1.79 1.35 +extractions extraction NOM f p 1.82 1.42 0.03 0.07 +extractive extractif ADJ f s 0.01 0.00 0.01 0.00 +extradaient extrader VER 0.66 0.20 0.00 0.07 ind:imp:3p; +extrade extrader VER 0.66 0.20 0.04 0.07 imp:pre:2s;ind:pre:3s; +extrader extrader VER 0.66 0.20 0.36 0.07 inf; +extradition extradition NOM f s 0.78 0.14 0.78 0.14 +extradé extrader VER m s 0.66 0.20 0.26 0.00 par:pas; +extradée extradé ADJ f s 0.02 0.07 0.01 0.00 +extraforte extrafort ADJ f s 0.01 0.00 0.01 0.00 +extragalactique extragalactique ADJ f s 0.02 0.00 0.02 0.00 +extraient extraire VER 8.55 13.24 0.19 0.27 ind:pre:3p; +extraira extraire VER 8.55 13.24 0.04 0.00 ind:fut:3s; +extrairai extraire VER 8.55 13.24 0.04 0.00 ind:fut:1s; +extraire extraire VER 8.55 13.24 4.71 5.68 inf; +extrairons extraire VER 8.55 13.24 0.03 0.00 ind:fut:1p; +extrairont extraire VER 8.55 13.24 0.03 0.00 ind:fut:3p; +extrais extraire VER 8.55 13.24 0.17 0.41 imp:pre:2s;ind:pre:1s; +extrait extraire VER m s 8.55 13.24 1.90 3.51 ind:pre:3s;par:pas;par:pas; +extraite extraire VER f s 8.55 13.24 0.80 0.61 par:pas; +extraites extraire VER f p 8.55 13.24 0.11 0.54 par:pas; +extraits extrait NOM m p 3.06 4.19 1.17 2.09 +extralucide extralucide ADJ m s 0.20 0.07 0.19 0.00 +extralucides extralucide ADJ p 0.20 0.07 0.01 0.07 +extraordinaire extraordinaire ADJ s 27.36 42.84 23.71 36.01 +extraordinairement extraordinairement ADV 0.46 8.51 0.46 8.51 +extraordinaires extraordinaire ADJ p 27.36 42.84 3.65 6.82 +extrapolant extrapoler VER 0.37 0.34 0.04 0.00 par:pre; +extrapolation extrapolation NOM f s 0.14 0.27 0.12 0.14 +extrapolations extrapolation NOM f p 0.14 0.27 0.02 0.14 +extrapole extrapoler VER 0.37 0.34 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extrapolent extrapoler VER 0.37 0.34 0.00 0.07 ind:pre:3p; +extrapoler extrapoler VER 0.37 0.34 0.14 0.07 inf; +extrapolez extrapoler VER 0.37 0.34 0.05 0.00 imp:pre:2p;ind:pre:2p; +extrapolons extrapoler VER 0.37 0.34 0.00 0.07 imp:pre:1p; +extrapolé extrapoler VER m s 0.37 0.34 0.06 0.00 par:pas; +extrapolée extrapoler VER f s 0.37 0.34 0.01 0.00 par:pas; +extrapolées extrapoler VER f p 0.37 0.34 0.00 0.07 par:pas; +extras extra NOM m p 4.93 1.55 1.04 0.68 +extrascolaire extrascolaire ADJ s 0.23 0.00 0.11 0.00 +extrascolaires extrascolaire ADJ p 0.23 0.00 0.13 0.00 +extrasensoriel extrasensoriel ADJ m s 0.51 0.00 0.02 0.00 +extrasensorielle extrasensoriel ADJ f s 0.51 0.00 0.25 0.00 +extrasensoriels extrasensoriel ADJ m p 0.51 0.00 0.25 0.00 +extrasystole extrasystole NOM f s 0.03 0.00 0.03 0.00 +extraterrestre extraterrestre ADJ s 6.66 0.41 4.46 0.14 +extraterrestres extraterrestre NOM p 9.81 1.01 6.37 0.68 +extraterritoriale extraterritorial ADJ f s 0.02 0.00 0.02 0.00 +extravagance extravagance NOM f s 0.94 3.78 0.31 2.43 +extravagances extravagance NOM f p 0.94 3.78 0.63 1.35 +extravagant extravagant ADJ m s 2.26 6.55 0.91 2.16 +extravagante extravagant ADJ f s 2.26 6.55 0.56 1.62 +extravagantes extravagant ADJ f p 2.26 6.55 0.36 1.15 +extravagants extravagant ADJ m p 2.26 6.55 0.43 1.62 +extravaguait extravaguer VER 0.00 0.27 0.00 0.07 ind:imp:3s; +extravague extravaguer VER 0.00 0.27 0.00 0.07 ind:pre:3s; +extravaguer extravaguer VER 0.00 0.27 0.00 0.07 inf; +extravagué extravaguer VER m s 0.00 0.27 0.00 0.07 par:pas; +extravasation extravasation NOM f s 0.01 0.00 0.01 0.00 +extraverti extraverti ADJ m s 0.11 0.00 0.06 0.00 +extravertie extraverti ADJ f s 0.11 0.00 0.05 0.00 +extravéhiculaire extravéhiculaire ADJ s 0.07 0.00 0.07 0.00 +extrayaient extraire VER 8.55 13.24 0.00 0.34 ind:imp:3p; +extrayait extraire VER 8.55 13.24 0.04 0.95 ind:imp:3s; +extrayant extraire VER 8.55 13.24 0.04 0.41 par:pre; +extrayez extraire VER 8.55 13.24 0.18 0.00 imp:pre:2p;ind:pre:2p; +extrayions extraire VER 8.55 13.24 0.01 0.00 ind:imp:1p; +extroverti extroverti ADJ m s 0.03 0.00 0.01 0.00 +extrovertie extroverti ADJ f s 0.03 0.00 0.01 0.00 +extrême_onction extrême_onction NOM f s 0.42 1.62 0.42 1.55 +extrême_orient extrême_orient NOM m s 0.00 0.07 0.00 0.07 +extrême_oriental extrême_oriental ADJ f s 0.00 0.07 0.00 0.07 +extrême extrême ADJ s 12.08 45.54 9.07 41.62 +extrêmement extrêmement ADV 14.69 16.96 14.69 16.96 +extrême_onction extrême_onction NOM f p 0.42 1.62 0.00 0.07 +extrêmes extrême ADJ p 12.08 45.54 3.01 3.92 +extrémisme extrémisme NOM m s 0.13 0.20 0.13 0.20 +extrémiste extrémiste NOM s 1.03 0.61 0.42 0.27 +extrémistes extrémiste NOM p 1.03 0.61 0.61 0.34 +extrémité extrémité NOM f s 2.95 27.09 2.12 20.27 +extrémités extrémité NOM f p 2.95 27.09 0.83 6.82 +extrusion extrusion NOM f s 0.03 0.00 0.03 0.00 +exténua exténuer VER 0.81 3.18 0.00 0.14 ind:pas:3s; +exténuait exténuer VER 0.81 3.18 0.00 0.20 ind:imp:3s; +exténuant exténuant ADJ m s 0.16 1.49 0.07 0.68 +exténuante exténuant ADJ f s 0.16 1.49 0.04 0.68 +exténuantes exténuant ADJ f p 0.16 1.49 0.03 0.07 +exténuants exténuant ADJ m p 0.16 1.49 0.02 0.07 +exténuation exténuation NOM f s 0.10 0.00 0.10 0.00 +exténue exténuer VER 0.81 3.18 0.00 0.27 ind:pre:3s; +exténuement exténuement NOM m s 0.00 0.27 0.00 0.27 +exténuent exténuer VER 0.81 3.18 0.00 0.07 ind:pre:3p; +exténuer exténuer VER 0.81 3.18 0.01 0.14 inf; +exténuerait exténuer VER 0.81 3.18 0.00 0.07 cnd:pre:3s; +exténué exténuer VER m s 0.81 3.18 0.35 0.74 par:pas; +exténuée exténuer VER f s 0.81 3.18 0.27 0.74 par:pas; +exténuées exténué ADJ f p 0.26 5.07 0.00 0.47 +exténués exténuer VER m p 0.81 3.18 0.19 0.54 par:pas; +extérieur extérieur NOM m s 25.53 24.39 24.97 23.72 +extérieure extérieur ADJ f s 11.01 29.86 3.36 7.84 +extérieurement extérieurement ADV 0.23 0.81 0.23 0.81 +extérieures extérieur ADJ f p 11.01 29.86 1.24 5.34 +extérieurs extérieur ADJ m p 11.01 29.86 1.52 4.46 +extériorisa extérioriser VER 0.61 1.15 0.00 0.14 ind:pas:3s; +extériorisaient extérioriser VER 0.61 1.15 0.00 0.07 ind:imp:3p; +extériorisait extérioriser VER 0.61 1.15 0.00 0.20 ind:imp:3s; +extériorisation extériorisation NOM f s 0.05 0.00 0.05 0.00 +extériorise extérioriser VER 0.61 1.15 0.22 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +extérioriser extérioriser VER 0.61 1.15 0.34 0.41 inf; +extériorisez extérioriser VER 0.61 1.15 0.01 0.00 ind:pre:2p; +extériorisé extérioriser VER m s 0.61 1.15 0.03 0.14 par:pas; +extériorisés extérioriser VER m p 0.61 1.15 0.01 0.00 par:pas; +extériorité extériorité NOM f s 0.00 0.14 0.00 0.14 +exubérance exubérance NOM f s 0.47 3.99 0.47 3.92 +exubérances exubérance NOM f p 0.47 3.99 0.00 0.07 +exubérant exubérant ADJ m s 0.85 2.77 0.32 0.88 +exubérante exubérant ADJ f s 0.85 2.77 0.32 1.22 +exubérantes exubérant ADJ f p 0.85 2.77 0.00 0.54 +exubérants exubérant ADJ m p 0.85 2.77 0.21 0.14 +exécra exécrer VER 0.48 3.18 0.00 0.07 ind:pas:3s; +exécrable exécrable ADJ s 1.13 2.16 1.08 1.89 +exécrables exécrable ADJ p 1.13 2.16 0.06 0.27 +exécrais exécrer VER 0.48 3.18 0.01 0.14 ind:imp:1s; +exécrait exécrer VER 0.48 3.18 0.01 0.68 ind:imp:3s; +exécration exécration NOM f s 0.00 1.28 0.00 1.22 +exécrations exécration NOM f p 0.00 1.28 0.00 0.07 +exécrer exécrer VER 0.48 3.18 0.02 0.27 inf; +exécré exécrer VER m s 0.48 3.18 0.02 0.54 par:pas; +exécrée exécrer VER f s 0.48 3.18 0.02 0.34 par:pas; +exécrées exécrer VER f p 0.48 3.18 0.00 0.07 par:pas; +exécrés exécrer VER m p 0.48 3.18 0.00 0.14 par:pas; +exécuta exécuter VER 25.02 37.77 0.29 2.64 ind:pas:3s; +exécutai exécuter VER 25.02 37.77 0.01 0.54 ind:pas:1s; +exécutaient exécuter VER 25.02 37.77 0.04 1.28 ind:imp:3p; +exécutais exécuter VER 25.02 37.77 0.07 0.41 ind:imp:1s; +exécutait exécuter VER 25.02 37.77 0.14 2.57 ind:imp:3s; +exécutant exécutant NOM m s 0.31 1.15 0.15 0.54 +exécutants exécutant NOM m p 0.31 1.15 0.16 0.61 +exécute exécuter VER 25.02 37.77 3.07 3.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +exécutent exécuter VER 25.02 37.77 0.22 1.01 ind:pre:3p; +exécuter exécuter VER 25.02 37.77 7.53 11.22 ind:pre:2p;inf; +exécutera exécuter VER 25.02 37.77 0.31 0.00 ind:fut:3s; +exécuterai exécuter VER 25.02 37.77 0.20 0.07 ind:fut:1s; +exécuteraient exécuter VER 25.02 37.77 0.02 0.00 cnd:pre:3p; +exécuterais exécuter VER 25.02 37.77 0.05 0.07 cnd:pre:1s; +exécuterait exécuter VER 25.02 37.77 0.02 0.27 cnd:pre:3s; +exécuteras exécuter VER 25.02 37.77 0.03 0.00 ind:fut:2s; +exécuterez exécuter VER 25.02 37.77 0.05 0.14 ind:fut:2p; +exécuteriez exécuter VER 25.02 37.77 0.10 0.00 cnd:pre:2p; +exécuterons exécuter VER 25.02 37.77 0.03 0.07 ind:fut:1p; +exécuteront exécuter VER 25.02 37.77 0.07 0.14 ind:fut:3p; +exécutes exécuter VER 25.02 37.77 0.46 0.07 ind:pre:2s; +exécuteur exécuteur NOM m s 1.07 0.88 0.97 0.47 +exécuteurs exécuteur NOM m p 1.07 0.88 0.08 0.41 +exécutez exécuter VER 25.02 37.77 1.53 0.14 imp:pre:2p;ind:pre:2p; +exécutiez exécuter VER 25.02 37.77 0.03 0.00 ind:imp:2p; +exécutif exécutif ADJ m s 2.13 1.62 1.26 1.42 +exécutifs exécutif ADJ m p 2.13 1.62 0.70 0.00 +exécution exécution NOM f s 17.49 23.51 15.60 20.68 +exécutions exécution NOM f p 17.49 23.51 1.89 2.84 +exécutive exécutif ADJ f s 2.13 1.62 0.17 0.20 +exécutoire exécutoire ADJ f s 0.42 0.14 0.42 0.07 +exécutoires exécutoire ADJ p 0.42 0.14 0.00 0.07 +exécutons exécuter VER 25.02 37.77 0.27 0.00 imp:pre:1p;ind:pre:1p; +exécutrice exécuteur NOM f s 1.07 0.88 0.02 0.00 +exécutèrent exécuter VER 25.02 37.77 0.11 0.27 ind:pas:3p; +exécuté exécuter VER m s 25.02 37.77 6.92 6.89 par:pas; +exécutée exécuter VER f s 25.02 37.77 0.96 2.30 par:pas; +exécutées exécuter VER f p 25.02 37.77 0.66 1.01 par:pas; +exécutés exécuter VER m p 25.02 37.77 1.69 2.30 par:pas; +exégèse exégèse NOM f s 0.14 0.61 0.14 0.41 +exégèses exégèse NOM f p 0.14 0.61 0.00 0.20 +exégète exégète NOM s 0.00 0.54 0.00 0.20 +exégètes exégète NOM p 0.00 0.54 0.00 0.34 +exulta exulter VER 0.61 4.26 0.00 0.54 ind:pas:3s; +exultai exulter VER 0.61 4.26 0.00 0.20 ind:pas:1s; +exultaient exulter VER 0.61 4.26 0.00 0.14 ind:imp:3p; +exultais exulter VER 0.61 4.26 0.01 0.27 ind:imp:1s; +exultait exulter VER 0.61 4.26 0.01 1.15 ind:imp:3s; +exultant exulter VER 0.61 4.26 0.01 0.27 par:pre; +exultante exultant ADJ f s 0.01 0.61 0.01 0.20 +exultantes exultant ADJ f p 0.01 0.61 0.00 0.07 +exultants exultant ADJ m p 0.01 0.61 0.00 0.07 +exultation exultation NOM f s 0.05 0.68 0.05 0.68 +exulte exulter VER 0.61 4.26 0.50 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +exultent exulter VER 0.61 4.26 0.01 0.07 ind:pre:3p; +exulter exulter VER 0.61 4.26 0.07 0.14 inf; +exultons exulter VER 0.61 4.26 0.00 0.07 ind:pre:1p; +exultèrent exulter VER 0.61 4.26 0.00 0.14 ind:pas:3p; +exutoire exutoire NOM m s 0.67 0.54 0.67 0.47 +exutoires exutoire NOM m p 0.67 0.54 0.00 0.07 +eye_liner eye_liner NOM m s 0.22 0.27 0.22 0.27 +eyeliner eyeliner NOM m s 0.12 0.00 0.12 0.00 +f f NOM m s 26.65 7.09 26.65 7.09 +fîmes faire VER 8813.53 5328.99 0.29 5.47 ind:pas:1p; +fît faire VER 8813.53 5328.99 0.46 14.19 sub:imp:3s; +fîtes faire VER 8813.53 5328.99 0.38 0.07 ind:pas:2p; +fûmes être AUX 8074.24 6501.82 0.72 4.05 ind:pas:1p; +fût être AUX 8074.24 6501.82 2.16 54.66 sub:imp:3s; +fûtes être AUX 8074.24 6501.82 0.14 0.27 ind:pas:2p; +fûts fût NOM m p 2.58 17.30 1.01 3.24 +führer führer NOM m s 23.86 4.59 23.84 4.59 +führers führer NOM m p 23.86 4.59 0.02 0.00 +fa fa NOM m 5.23 1.08 5.23 1.08 +faînes faîne NOM m p 0.00 0.07 0.00 0.07 +faîtage faîtage NOM m s 0.00 0.47 0.00 0.27 +faîtages faîtage NOM m p 0.00 0.47 0.00 0.20 +faîte faîte NOM m s 56.42 7.03 56.42 7.03 +faîtes_la_moi faîtes_la_moi NOM m p 0.01 0.00 0.01 0.00 +faîtière faîtier ADJ f s 0.02 0.07 0.02 0.00 +faîtières faîtier ADJ f p 0.02 0.07 0.00 0.07 +faïence faïence NOM f s 0.28 9.86 0.28 8.85 +faïencerie faïencerie NOM f s 0.00 0.14 0.00 0.14 +faïences faïence NOM f p 0.28 9.86 0.00 1.01 +faïencier faïencier NOM m s 0.00 0.14 0.00 0.07 +faïenciers faïencier NOM m p 0.00 0.14 0.00 0.07 +fabiens fabien NOM m p 0.00 0.07 0.00 0.07 +fable fable NOM f s 2.59 9.80 1.79 5.81 +fables fable NOM f p 2.59 9.80 0.80 3.99 +fabliau fabliau NOM m s 0.00 0.41 0.00 0.27 +fabliaux fabliau NOM m p 0.00 0.41 0.00 0.14 +fabricant fabricant NOM m s 3.67 3.45 2.55 2.23 +fabricante fabricant NOM f s 3.67 3.45 0.00 0.07 +fabricantes fabricant NOM f p 3.67 3.45 0.00 0.07 +fabricants fabricant NOM m p 3.67 3.45 1.12 1.08 +fabrication fabrication NOM f s 4.07 7.97 4.06 6.55 +fabrications fabrication NOM f p 4.07 7.97 0.01 1.42 +fabriqua fabriquer VER 40.37 47.57 0.05 0.47 ind:pas:3s; +fabriquai fabriquer VER 40.37 47.57 0.00 0.20 ind:pas:1s; +fabriquaient fabriquer VER 40.37 47.57 0.40 1.15 ind:imp:3p; +fabriquais fabriquer VER 40.37 47.57 0.46 0.95 ind:imp:1s;ind:imp:2s; +fabriquait fabriquer VER 40.37 47.57 0.93 4.53 ind:imp:3s; +fabriquant fabriquer VER 40.37 47.57 0.67 0.95 par:pre; +fabrique fabriquer VER 40.37 47.57 7.50 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fabriquent fabriquer VER 40.37 47.57 3.06 1.35 ind:pre:3p; +fabriquer fabriquer VER 40.37 47.57 6.97 13.51 inf; +fabriquera fabriquer VER 40.37 47.57 0.19 0.07 ind:fut:3s; +fabriquerai fabriquer VER 40.37 47.57 0.06 0.14 ind:fut:1s; +fabriquerais fabriquer VER 40.37 47.57 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +fabriquerait fabriquer VER 40.37 47.57 0.00 0.47 cnd:pre:3s; +fabriquerez fabriquer VER 40.37 47.57 0.04 0.00 ind:fut:2p; +fabriquerons fabriquer VER 40.37 47.57 0.01 0.00 ind:fut:1p; +fabriqueront fabriquer VER 40.37 47.57 0.01 0.00 ind:fut:3p; +fabriques fabriquer VER 40.37 47.57 6.32 0.88 ind:pre:2s; +fabriquez fabriquer VER 40.37 47.57 1.72 0.54 imp:pre:2p;ind:pre:2p; +fabriquiez fabriquer VER 40.37 47.57 0.22 0.07 ind:imp:2p; +fabriquions fabriquer VER 40.37 47.57 0.02 0.34 ind:imp:1p; +fabriquons fabriquer VER 40.37 47.57 0.35 0.20 imp:pre:1p;ind:pre:1p; +fabriquèrent fabriquer VER 40.37 47.57 0.02 0.20 ind:pas:3p; +fabriqué fabriquer VER m s 40.37 47.57 7.51 8.18 par:pas; +fabriquée fabriquer VER f s 40.37 47.57 1.93 2.97 par:pas; +fabriquées fabriquer VER f p 40.37 47.57 0.84 1.49 par:pas; +fabriqués fabriquer VER m p 40.37 47.57 0.93 2.43 par:pas; +fabulateur fabulateur ADJ m s 0.00 0.07 0.00 0.07 +fabulation fabulation NOM f s 0.14 0.41 0.03 0.20 +fabulations fabulation NOM f p 0.14 0.41 0.11 0.20 +fabulatrice fabulateur NOM f s 0.00 0.07 0.00 0.07 +fabule fabuler VER 0.42 0.34 0.31 0.07 ind:pre:1s;ind:pre:3s; +fabuler fabuler VER 0.42 0.34 0.02 0.20 inf; +fabuleuse fabuleux ADJ f s 15.34 17.50 3.48 4.73 +fabuleusement fabuleusement ADV 0.29 0.74 0.29 0.74 +fabuleuses fabuleux ADJ f p 15.34 17.50 0.76 2.91 +fabuleux fabuleux ADJ m 15.34 17.50 11.10 9.86 +fabulez fabuler VER 0.42 0.34 0.06 0.00 ind:pre:2p; +fabuliste fabuliste NOM s 0.00 0.07 0.00 0.07 +fabulé fabuler VER m s 0.42 0.34 0.02 0.07 par:pas; +fac_similé fac_similé NOM m s 0.03 0.34 0.02 0.27 +fac_similé fac_similé NOM m p 0.03 0.34 0.01 0.07 +fac fac NOM f s 29.65 2.36 28.94 2.09 +face_à_face face_à_face NOM m 0.00 0.47 0.00 0.47 +face_à_main face_à_main NOM m s 0.00 0.54 0.00 0.54 +face face NOM f s 125.32 270.88 124.33 262.16 +faces_à_main faces_à_main NOM m p 0.00 0.07 0.00 0.07 +faces face NOM f p 125.32 270.88 0.98 8.72 +facette facette NOM f s 1.21 3.18 0.67 0.07 +facettes facette NOM f p 1.21 3.18 0.55 3.11 +facettés facetter VER m p 0.00 0.07 0.00 0.07 par:pas; +facho facho NOM m s 1.17 0.54 0.48 0.00 +fachos facho NOM m p 1.17 0.54 0.69 0.54 +facial facial ADJ m s 2.29 0.54 0.69 0.20 +faciale facial ADJ f s 2.29 0.54 1.04 0.20 +faciales facial ADJ f p 2.29 0.54 0.21 0.07 +faciaux facial ADJ m p 2.29 0.54 0.34 0.07 +facile facile ADJ s 159.35 98.65 153.57 88.65 +facilement facilement ADV 26.85 37.03 26.85 37.03 +faciles facile ADJ p 159.35 98.65 5.78 10.00 +facilita faciliter VER 8.75 12.57 0.01 0.07 ind:pas:3s; +facilitaient faciliter VER 8.75 12.57 0.01 0.47 ind:imp:3p; +facilitait faciliter VER 8.75 12.57 0.16 1.42 ind:imp:3s; +facilitant faciliter VER 8.75 12.57 0.09 0.14 par:pre; +facilitateur facilitateur NOM m s 0.03 0.00 0.03 0.00 +facilitation facilitation NOM f s 0.03 0.00 0.03 0.00 +facilite faciliter VER 8.75 12.57 1.39 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +facilitent faciliter VER 8.75 12.57 0.08 0.54 ind:pre:3p; +faciliter faciliter VER 8.75 12.57 4.07 5.14 inf; +facilitera faciliter VER 8.75 12.57 0.73 0.07 ind:fut:3s; +faciliterai faciliter VER 8.75 12.57 0.06 0.00 ind:fut:1s; +faciliteraient faciliter VER 8.75 12.57 0.00 0.07 cnd:pre:3p; +faciliterais faciliter VER 8.75 12.57 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +faciliterait faciliter VER 8.75 12.57 0.69 0.74 cnd:pre:3s; +faciliteront faciliter VER 8.75 12.57 0.04 0.14 ind:fut:3p; +facilitez faciliter VER 8.75 12.57 0.33 0.00 imp:pre:2p;ind:pre:2p; +facilitons faciliter VER 8.75 12.57 0.01 0.00 ind:pre:1p; +facilité facilité NOM f s 2.09 15.07 1.47 11.55 +facilitée faciliter VER f s 8.75 12.57 0.06 0.47 par:pas; +facilitées faciliter VER f p 8.75 12.57 0.02 0.20 par:pas; +facilités facilité NOM f p 2.09 15.07 0.62 3.51 +faciès faciès NOM m 0.21 2.09 0.21 2.09 +faconde faconde NOM f s 0.00 1.62 0.00 1.62 +facs fac NOM f p 29.65 2.36 0.71 0.27 +facteur facteur NOM m s 12.26 14.32 9.67 12.36 +facteurs facteur NOM m p 12.26 14.32 2.54 1.96 +factice factice ADJ s 0.79 3.65 0.43 2.77 +factices factice ADJ p 0.79 3.65 0.36 0.88 +factieux factieux NOM m 0.24 0.14 0.24 0.14 +faction faction NOM f s 1.52 4.73 0.69 3.72 +factionnaire factionnaire NOM s 0.04 1.69 0.00 0.95 +factionnaires factionnaire NOM p 0.04 1.69 0.04 0.74 +factions faction NOM f p 1.52 4.73 0.83 1.01 +factor factor NOM m s 0.03 0.00 0.03 0.00 +factorielle factoriel NOM f s 0.01 0.14 0.01 0.07 +factorielles factoriel NOM f p 0.01 0.14 0.00 0.07 +factorisation factorisation NOM f s 0.01 0.00 0.01 0.00 +factoriser factoriser VER 0.04 0.00 0.04 0.00 inf; +factotum factotum NOM m s 0.66 1.15 0.66 0.95 +factotums factotum NOM m p 0.66 1.15 0.00 0.20 +factrice facteur NOM f s 12.26 14.32 0.06 0.00 +factuel factuel ADJ m s 0.15 0.00 0.11 0.00 +factuelles factuel ADJ f p 0.15 0.00 0.03 0.00 +factuels factuel ADJ m p 0.15 0.00 0.01 0.00 +factum factum NOM m s 0.00 0.34 0.00 0.27 +factums factum NOM m p 0.00 0.34 0.00 0.07 +facturation facturation NOM f s 0.26 0.07 0.26 0.07 +facture facture NOM f s 22.61 8.72 12.24 4.66 +facturent facturer VER 1.90 0.14 0.09 0.00 ind:pre:3p; +facturer facturer VER 1.90 0.14 0.56 0.00 inf; +facturera facturer VER 1.90 0.14 0.05 0.00 ind:fut:3s; +facturerait facturer VER 1.90 0.14 0.00 0.07 cnd:pre:3s; +factures facture NOM f p 22.61 8.72 10.37 4.05 +facturette facturette NOM f s 0.01 0.00 0.01 0.00 +facturez facturer VER 1.90 0.14 0.20 0.00 imp:pre:2p;ind:pre:2p; +facturier facturier NOM m s 0.14 0.14 0.14 0.00 +facturière facturier NOM f s 0.14 0.14 0.00 0.14 +facturons facturer VER 1.90 0.14 0.05 0.07 imp:pre:1p;ind:pre:1p; +facturé facturer VER m s 1.90 0.14 0.30 0.00 par:pas; +facturée facturer VER f s 1.90 0.14 0.05 0.00 par:pas; +facturées facturer VER f p 1.90 0.14 0.02 0.00 par:pas; +facturés facturer VER m p 1.90 0.14 0.04 0.00 par:pas; +facultatif facultatif ADJ m s 0.44 0.47 0.14 0.14 +facultatifs facultatif ADJ m p 0.44 0.47 0.09 0.14 +facultative facultatif ADJ f s 0.44 0.47 0.21 0.20 +faculté faculté NOM f s 8.73 17.30 5.93 13.85 +facultés faculté NOM f p 8.73 17.30 2.80 3.45 +facétie facétie NOM f s 0.17 1.96 0.14 0.54 +facéties facétie NOM f p 0.17 1.96 0.02 1.42 +facétieuse facétieux ADJ f s 0.08 1.49 0.01 0.47 +facétieusement facétieusement ADV 0.00 0.34 0.00 0.34 +facétieuses facétieux ADJ f p 0.08 1.49 0.00 0.14 +facétieux facétieux ADJ m s 0.08 1.49 0.07 0.88 +fada fada ADJ m s 1.81 0.47 1.81 0.47 +fadaise fadaise NOM f s 0.62 1.49 0.00 0.07 +fadaises fadaise NOM f p 0.62 1.49 0.62 1.42 +fadas fada NOM p 0.70 0.68 0.28 0.34 +fadasse fadasse ADJ s 0.04 1.08 0.04 0.88 +fadasses fadasse ADJ f p 0.04 1.08 0.00 0.20 +fade fade ADJ s 2.06 14.93 1.51 10.34 +fadement fadement ADV 0.00 0.07 0.00 0.07 +fadent fader VER 0.01 1.76 0.00 0.07 ind:pre:3p; +fader fader VER 0.01 1.76 0.01 0.61 inf; +faderas fader VER 0.01 1.76 0.00 0.07 ind:fut:2s; +fades fade ADJ p 2.06 14.93 0.55 4.59 +fadette fadette NOM f s 0.00 0.47 0.00 0.47 +fadeur fadeur NOM f s 0.32 1.82 0.32 1.49 +fadeurs fadeur NOM f p 0.32 1.82 0.00 0.34 +fading fading NOM m s 0.01 0.07 0.01 0.07 +fado fado NOM m s 3.33 0.00 3.33 0.00 +fadé fader VER m s 0.01 1.76 0.00 0.27 par:pas; +fadée fadé ADJ f s 0.00 0.34 0.00 0.14 +fadés fader VER m p 0.01 1.76 0.00 0.07 par:pas; +faena faena NOM f s 0.00 0.07 0.00 0.07 +faf faf NOM m s 0.07 0.88 0.04 0.00 +fafiot fafiot NOM m s 0.28 0.74 0.00 0.07 +fafiots fafiot NOM m p 0.28 0.74 0.28 0.68 +fafs faf NOM m p 0.07 0.88 0.03 0.88 +fagne fagne NOM f s 0.00 0.34 0.00 0.20 +fagnes fagne NOM f p 0.00 0.34 0.00 0.14 +fagot fagot NOM m s 0.19 10.68 0.03 2.64 +fagotage fagotage NOM m s 0.00 0.07 0.00 0.07 +fagotait fagoter VER 0.05 1.15 0.00 0.07 ind:imp:3s; +fagotant fagoter VER 0.05 1.15 0.00 0.07 par:pre; +fagote fagoter VER 0.05 1.15 0.00 0.07 ind:pre:1s; +fagoter fagoter VER 0.05 1.15 0.00 0.27 inf; +fagotiers fagotier NOM m p 0.00 0.07 0.00 0.07 +fagotin fagotin NOM m s 0.00 0.27 0.00 0.14 +fagotins fagotin NOM m p 0.00 0.27 0.00 0.14 +fagots fagot NOM m p 0.19 10.68 0.16 8.04 +fagoté fagoté ADJ m s 0.30 0.74 0.13 0.34 +fagotée fagoté ADJ f s 0.30 0.74 0.09 0.27 +fagotées fagoté ADJ f p 0.30 0.74 0.02 0.14 +fagotés fagoté ADJ m p 0.30 0.74 0.06 0.00 +fahrenheit fahrenheit ADJ m p 0.15 0.07 0.15 0.07 +faiblît faiblir VER 2.62 7.03 0.00 0.14 sub:imp:3s; +faiblard faiblard ADJ m s 0.23 1.76 0.19 1.15 +faiblarde faiblard ADJ f s 0.23 1.76 0.03 0.27 +faiblards faiblard ADJ m p 0.23 1.76 0.01 0.34 +faible faible ADJ s 38.78 53.65 31.03 40.95 +faiblement faiblement ADV 0.65 16.89 0.65 16.89 +faibles faible ADJ p 38.78 53.65 7.75 12.70 +faiblesse faiblesse NOM f s 14.71 31.62 11.32 25.34 +faiblesses faiblesse NOM f p 14.71 31.62 3.38 6.28 +faibli faiblir VER m s 2.62 7.03 0.15 0.74 par:pas; +faiblir faiblir VER 2.62 7.03 0.73 2.77 inf; +faiblira faiblir VER 2.62 7.03 0.08 0.07 ind:fut:3s; +faiblirent faiblir VER 2.62 7.03 0.00 0.14 ind:pas:3p; +faiblis faiblir VER 2.62 7.03 0.16 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +faiblissaient faiblir VER 2.62 7.03 0.00 0.27 ind:imp:3p; +faiblissais faiblir VER 2.62 7.03 0.00 0.14 ind:imp:1s; +faiblissait faiblir VER 2.62 7.03 0.04 1.15 ind:imp:3s; +faiblissant faiblir VER 2.62 7.03 0.00 0.20 par:pre; +faiblissante faiblissant ADJ f s 0.16 0.07 0.02 0.00 +faiblissantes faiblissant ADJ f p 0.16 0.07 0.14 0.07 +faiblisse faiblir VER 2.62 7.03 0.11 0.14 sub:pre:3s; +faiblissent faiblir VER 2.62 7.03 0.11 0.27 ind:pre:3p; +faiblissez faiblir VER 2.62 7.03 0.01 0.00 ind:pre:2p; +faiblissions faiblir VER 2.62 7.03 0.14 0.07 ind:imp:1p; +faiblit faiblir VER 2.62 7.03 1.10 0.88 ind:pre:3s;ind:pas:3s; +faignant faignant NOM m s 0.16 0.20 0.01 0.07 +faignante faignanter VER 0.10 0.00 0.10 0.00 sub:pre:3s; +faignants faignant NOM m p 0.16 0.20 0.14 0.14 +faillîmes faillir VER 44.19 43.65 0.01 0.07 ind:pas:1p; +faillait failler VER 1.84 1.96 0.01 0.00 ind:imp:3s; +faille faille NOM f s 4.71 9.59 3.85 7.43 +failles faille NOM f p 4.71 9.59 0.86 2.16 +failli faillir VER m s 44.19 43.65 42.70 22.43 par:pas; +faillibilité faillibilité NOM f s 0.01 0.07 0.01 0.00 +faillibilités faillibilité NOM f p 0.01 0.07 0.00 0.07 +faillible faillible ADJ s 0.09 0.34 0.06 0.27 +faillibles faillible ADJ m p 0.09 0.34 0.04 0.07 +faillie faillie ADJ m p 0.10 0.07 0.10 0.00 +faillies faillie ADJ m p 0.10 0.07 0.00 0.07 +faillir faillir VER 44.19 43.65 0.39 0.95 inf; +faillirai faillir VER 44.19 43.65 0.03 0.07 ind:fut:1s; +faillirent faillir VER 44.19 43.65 0.14 0.81 ind:pas:3p; +faillis faillir VER 44.19 43.65 0.27 3.11 ind:pas:1s;ind:pas:2s; +faillit faillir VER 44.19 43.65 0.66 16.22 ind:pas:3s; +faillite faillite NOM f s 6.94 7.77 6.74 7.16 +faillites faillite NOM f p 6.94 7.77 0.20 0.61 +faim faim NOM f s 128.04 75.95 127.49 74.93 +faims faim NOM f p 128.04 75.95 0.55 1.01 +faine faine NOM f s 1.77 0.07 1.77 0.07 +fainéant fainéant NOM m s 3.87 1.69 1.59 0.81 +fainéantais fainéanter VER 0.07 0.34 0.00 0.07 ind:imp:1s; +fainéantant fainéanter VER 0.07 0.34 0.00 0.07 par:pre; +fainéante fainéant NOM f s 3.87 1.69 0.37 0.14 +fainéanter fainéanter VER 0.07 0.34 0.04 0.14 inf; +fainéantes fainéant ADJ f p 1.66 1.89 0.12 0.00 +fainéantise fainéantise NOM f s 0.04 0.34 0.04 0.34 +fainéants fainéant NOM m p 3.87 1.69 1.81 0.74 +fair_play fair_play NOM m 0.60 0.14 0.60 0.14 +faire_part faire_part NOM m 0.65 3.04 0.65 3.04 +faire_valoir faire_valoir NOM m 0.20 0.68 0.20 0.68 +faire faire VER 8813.53 5328.99 2735.96 1555.14 inf;;inf;;inf;;inf;; +fais faire VER 8813.53 5328.99 1390.92 224.26 imp:pre:2s;ind:pre:1s;ind:pre:2s; +faisabilité faisabilité NOM f s 0.19 0.00 0.19 0.00 +faisable faisable ADJ s 3.63 0.95 3.63 0.95 +faisaient faire VER 8813.53 5328.99 20.25 123.38 ind:imp:3p; +faisais faire VER 8813.53 5328.99 75.81 60.54 ind:imp:1s;ind:imp:2s; +faisait faire VER 8813.53 5328.99 134.90 524.73 ind:imp:3s; +faisan faisan NOM m s 1.13 4.12 0.98 1.69 +faisander faisander VER 0.06 0.41 0.04 0.07 inf; +faisanderie faisanderie NOM f s 0.00 0.27 0.00 0.27 +faisandé faisandé ADJ m s 0.12 1.15 0.02 0.47 +faisandée faisandé ADJ f s 0.12 1.15 0.10 0.41 +faisandées faisandé ADJ f p 0.12 1.15 0.00 0.07 +faisandés faisandé ADJ m p 0.12 1.15 0.00 0.20 +faisane faisan NOM f s 1.13 4.12 0.00 0.34 +faisans faisan NOM m p 1.13 4.12 0.14 2.09 +faisant faire VER 8813.53 5328.99 30.88 118.11 par:pre; +faisceau faisceau NOM m s 1.71 10.00 1.27 6.82 +faisceaux faisceau NOM m p 1.71 10.00 0.44 3.18 +faiseur faiseur NOM m s 1.86 3.24 0.88 1.42 +faiseurs faiseur NOM m p 1.86 3.24 0.60 0.74 +faiseuse faiseur NOM f s 1.86 3.24 0.38 0.54 +faiseuses faiseuse NOM f p 0.04 0.00 0.04 0.00 +faisiez faire VER 8813.53 5328.99 15.98 3.31 ind:imp:2p; +faisions faire VER 8813.53 5328.99 5.01 12.16 ind:imp:1p; +faisons faire VER 8813.53 5328.99 64.49 15.88 imp:pre:1p;ind:pre:1p; +fait_divers fait_divers NOM m 0.00 0.20 0.00 0.20 +fait_tout fait_tout NOM m 0.01 0.74 0.01 0.74 +fait faire VER m s 8813.53 5328.99 2751.99 1459.26 ind:pre:3s;par:pas;par:pas; +faite faire VER f s 8813.53 5328.99 0.14 59.39 par:pas; +faites faire VER f p 8813.53 5328.99 541.80 93.31 imp:pre:2p;ind:pre:2p;par:pas;;imp:pre:2p;ind:pre:2p;par:pas; +faitout faitout NOM m s 0.20 0.14 0.20 0.07 +faitouts faitout NOM m p 0.20 0.14 0.00 0.07 +faits_divers faits_divers NOM m p 0.00 0.07 0.00 0.07 +faits fait NOM m p 412.07 355.54 27.36 30.27 +faix faix NOM m 0.10 0.68 0.10 0.68 +fakir fakir NOM m s 0.72 1.22 0.45 0.88 +fakirs fakir NOM m p 0.72 1.22 0.28 0.34 +falaise falaise NOM f s 5.85 20.68 4.45 15.47 +falaises falaise NOM f p 5.85 20.68 1.41 5.20 +falbala falbala NOM m s 0.16 1.55 0.14 0.41 +falbalas falbala NOM m p 0.16 1.55 0.02 1.15 +falciforme falciforme ADJ s 0.01 0.07 0.01 0.07 +falerne falerne NOM m s 0.00 0.07 0.00 0.07 +fallût falloir VER 1653.77 1250.41 0.01 0.27 sub:imp:3s; +fallacieuse fallacieux ADJ f s 0.23 2.30 0.13 0.54 +fallacieusement fallacieusement ADV 0.01 0.20 0.01 0.20 +fallacieuses fallacieux ADJ f p 0.23 2.30 0.00 0.41 +fallacieux fallacieux ADJ m 0.23 2.30 0.10 1.35 +fallait falloir VER 1653.77 1250.41 110.88 310.61 ind:imp:3s; +falloir falloir VER 1653.77 1250.41 39.78 17.77 inf; +fallu falloir VER m s 1653.77 1250.41 23.82 68.04 par:pas; +fallut falloir VER 1653.77 1250.41 1.35 26.89 ind:pas:3s; +falot falot NOM m s 0.11 0.88 0.11 0.68 +falote falot ADJ f s 0.04 1.76 0.01 0.54 +falotes falot ADJ f p 0.04 1.76 0.00 0.14 +falots falot ADJ m p 0.04 1.76 0.01 0.20 +falsifiaient falsifier VER 2.50 1.35 0.01 0.00 ind:imp:3p; +falsifiais falsifier VER 2.50 1.35 0.00 0.07 ind:imp:1s; +falsifiait falsifier VER 2.50 1.35 0.15 0.07 ind:imp:3s; +falsifiant falsifier VER 2.50 1.35 0.01 0.07 par:pre; +falsification falsification NOM f s 0.37 0.27 0.37 0.27 +falsifient falsifier VER 2.50 1.35 0.02 0.00 ind:pre:3p; +falsifier falsifier VER 2.50 1.35 0.68 0.20 inf; +falsifiez falsifier VER 2.50 1.35 0.02 0.00 imp:pre:2p;ind:pre:2p; +falsifié falsifier VER m s 2.50 1.35 0.86 0.27 par:pas; +falsifiée falsifier VER f s 2.50 1.35 0.41 0.27 par:pas; +falsifiées falsifier VER f p 2.50 1.35 0.10 0.20 par:pas; +falsifiés falsifier VER m p 2.50 1.35 0.25 0.20 par:pas; +faluche faluche NOM f s 0.00 0.14 0.00 0.14 +falzar falzar NOM m s 0.36 1.01 0.29 0.88 +falzars falzar NOM m p 0.36 1.01 0.07 0.14 +fameuse fameux ADJ f s 18.67 53.11 4.74 16.28 +fameusement fameusement ADV 0.02 0.07 0.02 0.07 +fameuses fameux ADJ f p 18.67 53.11 1.17 3.51 +fameux fameux ADJ m 18.67 53.11 12.77 33.31 +familial familial ADJ m s 15.66 32.84 5.00 12.36 +familiale familial ADJ f s 15.66 32.84 7.22 12.97 +familiales familial ADJ f p 15.66 32.84 1.97 4.80 +familialiste familialiste NOM s 0.00 0.07 0.00 0.07 +familiarisa familiariser VER 0.89 2.36 0.00 0.20 ind:pas:3s; +familiarisaient familiariser VER 0.89 2.36 0.00 0.07 ind:imp:3p; +familiarisais familiariser VER 0.89 2.36 0.00 0.07 ind:imp:1s; +familiarisait familiariser VER 0.89 2.36 0.03 0.14 ind:imp:3s; +familiarisant familiariser VER 0.89 2.36 0.00 0.14 par:pre; +familiarise familiariser VER 0.89 2.36 0.10 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +familiarisent familiariser VER 0.89 2.36 0.00 0.07 ind:pre:3p; +familiariser familiariser VER 0.89 2.36 0.51 0.68 inf; +familiariserez familiariser VER 0.89 2.36 0.02 0.00 ind:fut:2p; +familiarisez familiariser VER 0.89 2.36 0.03 0.00 imp:pre:2p;ind:pre:2p; +familiarisé familiariser VER m s 0.89 2.36 0.17 0.61 par:pas; +familiarisée familiariser VER f s 0.89 2.36 0.02 0.27 par:pas; +familiarisés familiariser VER m p 0.89 2.36 0.01 0.07 par:pas; +familiarité familiarité NOM f s 1.43 7.30 0.97 7.09 +familiarités familiarité NOM f p 1.43 7.30 0.46 0.20 +familiaux familial ADJ m p 15.66 32.84 1.47 2.70 +familier familier ADJ m s 11.30 47.91 7.77 18.31 +familiers familier ADJ m p 11.30 47.91 1.54 11.55 +familistère familistère NOM m s 0.00 0.07 0.00 0.07 +familière familier ADJ f s 11.30 47.91 1.63 13.11 +familièrement familièrement ADV 0.15 2.09 0.15 2.09 +familières familier ADJ f p 11.30 47.91 0.37 4.93 +famille famille NOM f s 384.92 274.39 357.75 241.69 +familles famille NOM f p 384.92 274.39 27.16 32.70 +famine famine NOM f s 4.88 6.76 4.40 5.61 +famines famine NOM f p 4.88 6.76 0.48 1.15 +famé famé ADJ m s 0.52 1.49 0.38 0.68 +famée famé ADJ f s 0.52 1.49 0.04 0.14 +famées famé ADJ f p 0.52 1.49 0.02 0.34 +famélique famélique ADJ s 0.32 2.57 0.17 1.15 +faméliques famélique ADJ p 0.32 2.57 0.15 1.42 +famulus famulus NOM m 0.00 0.14 0.00 0.14 +famés famé ADJ m p 0.52 1.49 0.08 0.34 +fan_club fan_club NOM m s 0.28 0.14 0.28 0.14 +fan fan NOM s 21.43 2.91 13.27 1.49 +fana fana NOM s 0.61 0.27 0.43 0.07 +fanaient faner VER 3.73 5.54 0.02 0.47 ind:imp:3p; +fanait faner VER 3.73 5.54 0.00 0.27 ind:imp:3s; +fanal fanal NOM m s 0.34 3.24 0.34 2.36 +fanant faner VER 3.73 5.54 0.01 0.00 par:pre; +fanas fana NOM p 0.61 0.27 0.18 0.20 +fanatique fanatique NOM s 3.56 3.92 1.22 1.69 +fanatiquement fanatiquement ADV 0.02 0.34 0.02 0.34 +fanatiques fanatique NOM p 3.56 3.92 2.34 2.23 +fanatisait fanatiser VER 0.02 0.81 0.00 0.07 ind:imp:3s; +fanatise fanatiser VER 0.02 0.81 0.00 0.07 ind:pre:3s; +fanatiser fanatiser VER 0.02 0.81 0.00 0.07 inf; +fanatisme fanatisme NOM m s 0.54 2.84 0.54 2.70 +fanatismes fanatisme NOM m p 0.54 2.84 0.00 0.14 +fanatisé fanatiser VER m s 0.02 0.81 0.00 0.20 par:pas; +fanatisés fanatiser VER m p 0.02 0.81 0.02 0.41 par:pas; +fanaux fanal NOM m p 0.34 3.24 0.00 0.88 +fanchon fanchon NOM f s 0.00 0.07 0.00 0.07 +fandango fandango NOM m s 0.38 0.00 0.38 0.00 +fane faner VER 3.73 5.54 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fanent faner VER 3.73 5.54 0.95 0.47 ind:pre:3p; +faner faner VER 3.73 5.54 0.89 1.01 inf; +fanera faner VER 3.73 5.54 0.28 0.07 ind:fut:3s; +faneraient faner VER 3.73 5.54 0.01 0.07 cnd:pre:3p; +fanerait faner VER 3.73 5.54 0.00 0.07 cnd:pre:3s; +faneras faner VER 3.73 5.54 0.10 0.07 ind:fut:2s; +fanerions faner VER 3.73 5.54 0.10 0.00 cnd:pre:1p; +faneront faner VER 3.73 5.54 0.05 0.00 ind:fut:3p; +fanes faner VER 3.73 5.54 0.01 0.00 ind:pre:2s; +faneuse faneur NOM f s 0.00 0.27 0.00 0.20 +faneuses faneur NOM f p 0.00 0.27 0.00 0.07 +fanez faner VER 3.73 5.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +fanfan fanfan NOM m s 1.22 0.00 1.22 0.00 +fanfare fanfare NOM f s 4.07 5.27 3.80 3.72 +fanfares fanfare NOM f p 4.07 5.27 0.27 1.55 +fanfaron fanfaron NOM m s 0.90 0.47 0.68 0.20 +fanfaronna fanfaronner VER 0.42 0.74 0.00 0.14 ind:pas:3s; +fanfaronnade fanfaronnade NOM f s 0.40 0.74 0.18 0.54 +fanfaronnades fanfaronnade NOM f p 0.40 0.74 0.22 0.20 +fanfaronnaient fanfaronner VER 0.42 0.74 0.00 0.14 ind:imp:3p; +fanfaronnait fanfaronner VER 0.42 0.74 0.00 0.14 ind:imp:3s; +fanfaronnant fanfaronner VER 0.42 0.74 0.02 0.07 par:pre; +fanfaronne fanfaronner VER 0.42 0.74 0.34 0.14 imp:pre:2s;ind:pre:3s; +fanfaronner fanfaronner VER 0.42 0.74 0.05 0.07 inf; +fanfaronnes fanfaronner VER 0.42 0.74 0.01 0.00 ind:pre:2s; +fanfaronné fanfaronner VER m s 0.42 0.74 0.00 0.07 par:pas; +fanfarons fanfaron NOM m p 0.90 0.47 0.22 0.20 +fanfreluche fanfreluche NOM f s 0.16 1.42 0.02 0.00 +fanfreluches fanfreluche NOM f p 0.16 1.42 0.14 1.42 +fang fang ADJ f s 0.03 0.07 0.03 0.07 +fange fange NOM f s 0.74 1.96 0.74 1.89 +fanges fange NOM f p 0.74 1.96 0.00 0.07 +fangeuse fangeux ADJ f s 0.18 2.09 0.14 0.54 +fangeuses fangeux ADJ f p 0.18 2.09 0.01 0.14 +fangeux fangeux ADJ m 0.18 2.09 0.02 1.42 +fanion fanion NOM m s 0.25 3.51 0.16 2.64 +fanions fanion NOM m p 0.25 3.51 0.09 0.88 +fanny fanny ADJ f s 1.06 0.14 1.06 0.14 +fanon fanon NOM m s 0.04 0.61 0.03 0.07 +fanons fanon NOM m p 0.04 0.61 0.01 0.54 +fans fan NOM p 21.43 2.91 8.17 1.42 +fantôme fantôme NOM m s 48.23 35.88 29.71 20.74 +fantômes fantôme NOM m p 48.23 35.88 18.52 15.14 +fantaisie fantaisie NOM f s 6.98 16.89 5.57 14.26 +fantaisies fantaisie NOM f p 6.98 16.89 1.41 2.64 +fantaisiste fantaisiste ADJ s 0.80 1.76 0.59 0.68 +fantaisistes fantaisiste ADJ p 0.80 1.76 0.20 1.08 +fantasia fantasia NOM f s 0.33 0.54 0.33 0.54 +fantasmagorie fantasmagorie NOM f s 0.17 0.88 0.17 0.81 +fantasmagories fantasmagorie NOM f p 0.17 0.88 0.00 0.07 +fantasmagorique fantasmagorique ADJ m s 0.00 0.14 0.00 0.14 +fantasmaient fantasmer VER 2.04 1.08 0.01 0.07 ind:imp:3p; +fantasmais fantasmer VER 2.04 1.08 0.04 0.07 ind:imp:1s;ind:imp:2s; +fantasmait fantasmer VER 2.04 1.08 0.03 0.20 ind:imp:3s; +fantasmatique fantasmatique ADJ f s 0.03 0.14 0.03 0.14 +fantasmatiquement fantasmatiquement ADV 0.00 0.14 0.00 0.14 +fantasme fantasme NOM m s 9.18 6.35 4.64 1.49 +fantasment fantasmer VER 2.04 1.08 0.04 0.00 ind:pre:3p; +fantasmer fantasmer VER 2.04 1.08 0.86 0.34 inf; +fantasmes fantasme NOM m p 9.18 6.35 4.54 4.86 +fantasmez fantasmer VER 2.04 1.08 0.21 0.00 imp:pre:2p;ind:pre:2p; +fantasmé fantasmer VER m s 2.04 1.08 0.33 0.07 par:pas; +fantasmés fantasmer VER m p 2.04 1.08 0.01 0.00 par:pas; +fantasque fantasque ADJ s 0.88 3.72 0.52 3.04 +fantasquement fantasquement ADV 0.00 0.07 0.00 0.07 +fantasques fantasque ADJ p 0.88 3.72 0.36 0.68 +fantassin fantassin NOM m s 0.78 6.62 0.29 1.96 +fantassins fantassin NOM m p 0.78 6.62 0.48 4.66 +fantastique fantastique ADJ s 26.90 10.34 24.20 7.09 +fantastiquement fantastiquement ADV 0.07 0.34 0.07 0.34 +fantastiques fantastique ADJ p 26.90 10.34 2.69 3.24 +fanti fanti NOM m s 0.00 0.07 0.00 0.07 +fantoche fantoche NOM m s 0.48 1.28 0.21 0.47 +fantoches fantoche NOM m p 0.48 1.28 0.27 0.81 +fantomale fantomal ADJ f s 0.00 0.14 0.00 0.07 +fantomales fantomal ADJ f p 0.00 0.14 0.00 0.07 +fantomatique fantomatique ADJ s 0.20 3.65 0.19 2.77 +fantomatiquement fantomatiquement ADV 0.00 0.07 0.00 0.07 +fantomatiques fantomatique ADJ p 0.20 3.65 0.01 0.88 +fané fané ADJ m s 0.79 7.57 0.04 2.30 +fanée fané ADJ f s 0.79 7.57 0.40 1.69 +fanées faner VER f p 3.73 5.54 0.53 0.88 par:pas; +fanés fané ADJ m p 0.79 7.57 0.14 0.88 +fanzine fanzine NOM m s 0.49 0.07 0.17 0.00 +fanzines fanzine NOM m p 0.49 0.07 0.32 0.07 +faon faon NOM m s 0.53 1.08 0.25 0.54 +faons faon NOM m p 0.53 1.08 0.29 0.54 +faquin faquin NOM m s 0.45 0.34 0.45 0.20 +faquins faquin NOM m p 0.45 0.34 0.00 0.14 +far_west far_west NOM m s 0.01 0.07 0.01 0.07 +far far NOM m s 0.65 0.07 0.65 0.07 +farad farad NOM m s 0.75 0.07 0.75 0.00 +farads farad NOM m p 0.75 0.07 0.00 0.07 +faramineuse faramineux ADJ f s 0.23 0.68 0.01 0.14 +faramineuses faramineux ADJ f p 0.23 0.68 0.01 0.14 +faramineux faramineux ADJ m 0.23 0.68 0.20 0.41 +farandolaient farandoler VER 0.00 0.07 0.00 0.07 ind:imp:3p; +farandole farandole NOM f s 0.32 1.42 0.32 0.95 +farandoles farandole NOM f p 0.32 1.42 0.00 0.47 +faraud faraud ADJ m s 0.03 1.69 0.02 1.08 +faraude faraud NOM f s 0.01 0.61 0.01 0.00 +farauder farauder VER 0.00 0.07 0.00 0.07 inf; +faraudes faraud NOM f p 0.01 0.61 0.00 0.07 +farauds faraud ADJ m p 0.03 1.69 0.01 0.41 +farce farce NOM f s 9.35 12.50 7.45 8.99 +farces farce NOM f p 9.35 12.50 1.90 3.51 +farceur farceur NOM m s 2.05 1.69 1.64 1.15 +farceurs farceur NOM m p 2.05 1.69 0.21 0.47 +farceuse farceur NOM f s 2.05 1.69 0.20 0.00 +farceuses farceuse NOM f p 0.01 0.00 0.01 0.00 +farci farcir VER m s 3.39 12.57 0.89 2.50 par:pas; +farcie farcir VER f s 3.39 12.57 0.47 1.35 par:pas; +farcies farci ADJ f p 2.41 2.23 0.56 0.74 +farcir farcir VER 3.39 12.57 1.23 4.73 inf; +farcirai farcir VER 3.39 12.57 0.02 0.00 ind:fut:1s; +farcirait farcir VER 3.39 12.57 0.01 0.07 cnd:pre:3s; +farcis farcir VER m p 3.39 12.57 0.64 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +farcissaient farcir VER 3.39 12.57 0.00 0.07 ind:imp:3p; +farcissais farcir VER 3.39 12.57 0.02 0.07 ind:imp:1s;ind:imp:2s; +farcissait farcir VER 3.39 12.57 0.00 0.54 ind:imp:3s; +farcissant farcir VER 3.39 12.57 0.00 0.07 par:pre; +farcisse farcir VER 3.39 12.57 0.01 0.54 sub:pre:1s;sub:pre:3s; +farcissez farcir VER 3.39 12.57 0.01 0.14 imp:pre:2p;ind:pre:2p; +farcit farcir VER 3.39 12.57 0.09 0.88 ind:pre:3s;ind:pas:3s; +fard fard NOM m s 1.69 7.57 1.44 4.73 +fardaient farder VER 0.20 8.99 0.00 0.20 ind:imp:3p; +fardait farder VER 0.20 8.99 0.00 0.68 ind:imp:3s; +fardant farder VER 0.20 8.99 0.01 0.00 par:pre; +farde farder VER 0.20 8.99 0.00 0.54 ind:pre:3s; +fardeau fardeau NOM m s 7.56 7.70 7.00 6.89 +fardeaux fardeau NOM m p 7.56 7.70 0.56 0.81 +fardent farder VER 0.20 8.99 0.00 0.14 ind:pre:3p; +farder farder VER 0.20 8.99 0.03 0.61 inf; +fardier fardier NOM m s 0.00 0.34 0.00 0.14 +fardiers fardier NOM m p 0.00 0.34 0.00 0.20 +fards fard NOM m p 1.69 7.57 0.25 2.84 +fardé farder VER m s 0.20 8.99 0.00 1.55 par:pas; +fardée farder VER f s 0.20 8.99 0.14 2.23 par:pas; +fardées farder VER f p 0.20 8.99 0.03 1.96 par:pas; +fardés farder VER m p 0.20 8.99 0.00 1.08 par:pas; +fare fare NOM m s 0.00 0.07 0.00 0.07 +farfadet farfadet NOM m s 0.45 0.41 0.31 0.14 +farfadets farfadet NOM m p 0.45 0.41 0.14 0.27 +farfelu farfelu ADJ m s 1.77 1.28 0.93 0.61 +farfelue farfelu ADJ f s 1.77 1.28 0.35 0.20 +farfelues farfelu ADJ f p 1.77 1.28 0.18 0.14 +farfelus farfelu ADJ m p 1.77 1.28 0.32 0.34 +farfouilla farfouiller VER 1.17 4.12 0.00 0.54 ind:pas:3s; +farfouillais farfouiller VER 1.17 4.12 0.05 0.07 ind:imp:1s;ind:imp:2s; +farfouillait farfouiller VER 1.17 4.12 0.00 0.47 ind:imp:3s; +farfouillant farfouiller VER 1.17 4.12 0.02 0.14 par:pre; +farfouille farfouiller VER 1.17 4.12 0.34 0.68 ind:pre:1s;ind:pre:3s; +farfouillent farfouiller VER 1.17 4.12 0.00 0.07 ind:pre:3p; +farfouiller farfouiller VER 1.17 4.12 0.42 1.28 inf; +farfouillerait farfouiller VER 1.17 4.12 0.00 0.07 cnd:pre:3s; +farfouilles farfouiller VER 1.17 4.12 0.04 0.20 ind:pre:2s; +farfouilleurs farfouilleur ADJ m p 0.00 0.07 0.00 0.07 +farfouillez farfouiller VER 1.17 4.12 0.14 0.14 ind:pre:2p; +farfouillé farfouiller VER m s 1.17 4.12 0.15 0.47 par:pas; +faribole faribole NOM f s 0.23 1.49 0.00 0.27 +fariboler fariboler VER 0.00 0.07 0.00 0.07 inf; +fariboles faribole NOM f p 0.23 1.49 0.23 1.22 +farigoule farigoule NOM f s 0.00 0.07 0.00 0.07 +farine farine NOM f s 7.95 13.72 7.93 13.51 +farines farine NOM f p 7.95 13.72 0.02 0.20 +farineuse farineux ADJ f s 0.03 1.08 0.00 0.41 +farineuses farineux ADJ f p 0.03 1.08 0.03 0.14 +farineux farineux ADJ m s 0.03 1.08 0.00 0.54 +farinée fariner VER f s 0.00 0.14 0.00 0.07 par:pas; +farinés fariner VER m p 0.00 0.14 0.00 0.07 par:pas; +farniente farniente NOM m s 0.36 0.47 0.36 0.47 +faro faro NOM m s 0.16 0.07 0.16 0.07 +farouche farouche ADJ s 2.39 15.20 1.90 11.62 +farouchement farouchement ADV 0.26 4.05 0.26 4.05 +farouches farouche ADJ p 2.39 15.20 0.49 3.58 +farsi farsi NOM m s 0.39 0.00 0.39 0.00 +fart fart NOM m s 0.42 0.00 0.42 0.00 +farter farter VER 0.02 0.00 0.02 0.00 inf; +fascia fascia NOM m s 0.07 0.00 0.07 0.00 +fascicule fascicule NOM m s 0.02 0.95 0.01 0.34 +fascicules fascicule NOM m p 0.02 0.95 0.01 0.61 +fascina fasciner VER 9.34 28.78 0.10 0.68 ind:pas:3s; +fascinaient fasciner VER 9.34 28.78 0.30 1.42 ind:imp:3p; +fascinais fasciner VER 9.34 28.78 0.00 0.07 ind:imp:1s; +fascinait fasciner VER 9.34 28.78 0.62 4.93 ind:imp:3s; +fascinant fascinant ADJ m s 11.64 5.54 7.78 2.91 +fascinante fascinant ADJ f s 11.64 5.54 2.47 1.42 +fascinantes fascinant ADJ f p 11.64 5.54 0.66 0.54 +fascinants fascinant ADJ m p 11.64 5.54 0.74 0.68 +fascination fascination NOM f s 2.67 7.50 2.66 7.30 +fascinations fascination NOM f p 2.67 7.50 0.01 0.20 +fascine fasciner VER 9.34 28.78 2.24 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fascinent fasciner VER 9.34 28.78 0.44 0.95 ind:pre:3p; +fasciner fasciner VER 9.34 28.78 0.35 0.88 inf; +fascinerait fasciner VER 9.34 28.78 0.01 0.07 cnd:pre:3s; +fascines fasciner VER 9.34 28.78 0.04 0.00 ind:pre:2s; +fascinez fasciner VER 9.34 28.78 0.04 0.00 ind:pre:2p; +fascinèrent fasciner VER 9.34 28.78 0.00 0.20 ind:pas:3p; +fasciné fasciner VER m s 9.34 28.78 2.67 9.46 par:pas; +fascinée fasciner VER f s 9.34 28.78 0.60 3.72 par:pas; +fascinées fasciner VER f p 9.34 28.78 0.05 0.14 par:pas; +fascinés fasciner VER m p 9.34 28.78 0.58 2.77 par:pas; +fascisme fascisme NOM m s 1.94 6.76 1.94 6.76 +fasciste fasciste ADJ s 6.93 4.93 3.89 3.58 +fascistes fasciste ADJ p 6.93 4.93 3.04 1.35 +fascisée fasciser VER f s 0.00 0.07 0.00 0.07 par:pas; +faseyaient faseyer VER 0.00 0.14 0.00 0.07 ind:imp:3p; +faseyait faseyer VER 0.00 0.14 0.00 0.07 ind:imp:3s; +fashion fashion NOM f s 0.28 0.00 0.28 0.00 +fashionable fashionable ADJ m s 0.00 0.20 0.00 0.20 +fasse faire VER 8813.53 5328.99 93.83 60.88 sub:pre:1s;sub:pre:3s; +fassent faire VER 8813.53 5328.99 9.05 7.30 sub:pre:3p; +fasses faire VER 8813.53 5328.99 20.20 2.84 sub:pre:2s; +fassiez faire VER 8813.53 5328.99 8.46 2.64 sub:pre:2p; +fassions faire VER 8813.53 5328.99 1.63 2.09 sub:pre:1p; +fast_food fast_food NOM m s 2.34 0.47 1.56 0.34 +fast_food fast_food NOM m p 2.34 0.47 0.34 0.07 +fast_food fast_food NOM m s 2.34 0.47 0.43 0.07 +faste faste ADJ s 0.57 1.28 0.53 0.61 +fastes faste ADJ p 0.57 1.28 0.04 0.68 +fastidieuse fastidieux ADJ f s 1.39 4.12 0.03 1.01 +fastidieusement fastidieusement ADV 0.00 0.07 0.00 0.07 +fastidieuses fastidieux ADJ f p 1.39 4.12 0.26 0.74 +fastidieux fastidieux ADJ m 1.39 4.12 1.10 2.36 +fastoche fastoche ADJ m s 1.31 0.41 1.31 0.41 +fastueuse fastueux ADJ f s 0.38 3.38 0.22 1.08 +fastueusement fastueusement ADV 0.00 0.34 0.00 0.34 +fastueuses fastueux ADJ f p 0.38 3.38 0.02 0.41 +fastueux fastueux ADJ m 0.38 3.38 0.14 1.89 +fat fat NOM m s 2.29 0.34 2.21 0.20 +fatal fatal ADJ m s 11.69 23.38 5.37 12.30 +fatale fatal ADJ f s 11.69 23.38 5.37 8.92 +fatalement fatalement ADV 0.44 5.07 0.44 5.07 +fatales fatal ADJ f p 11.69 23.38 0.82 1.49 +fatalise fataliser VER 0.06 0.00 0.04 0.00 imp:pre:2s; +fataliser fataliser VER 0.06 0.00 0.01 0.00 inf; +fatalisme fatalisme NOM m s 0.19 1.76 0.19 1.76 +fataliste fataliste ADJ s 0.06 1.76 0.06 1.69 +fatalistes fataliste ADJ m p 0.06 1.76 0.00 0.07 +fatalisé fataliser VER m s 0.06 0.00 0.01 0.00 par:pas; +fatalité fatalité NOM f s 2.77 8.85 2.66 8.51 +fatalités fatalité NOM f p 2.77 8.85 0.11 0.34 +fatals fatal ADJ m p 11.69 23.38 0.13 0.68 +fate fat ADJ f s 1.81 1.08 0.13 0.07 +façade façade NOM f s 4.60 46.76 4.19 29.66 +façades façade NOM f p 4.60 46.76 0.41 17.09 +fathma fathma NOM f s 0.10 0.07 0.10 0.07 +fathom fathom NOM m s 0.00 0.07 0.00 0.07 +façon façon NOM f s 230.48 277.30 212.60 259.26 +façonna façonner VER 1.95 7.16 0.14 0.20 ind:pas:3s; +façonnable façonnable ADJ m s 0.02 0.00 0.02 0.00 +façonnaient façonner VER 1.95 7.16 0.00 0.20 ind:imp:3p; +façonnait façonner VER 1.95 7.16 0.00 0.47 ind:imp:3s; +façonnant façonner VER 1.95 7.16 0.02 0.27 par:pre; +façonne façonner VER 1.95 7.16 0.17 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +façonnent façonner VER 1.95 7.16 0.03 0.00 ind:pre:3p; +façonner façonner VER 1.95 7.16 0.46 1.22 inf; +façonnera façonner VER 1.95 7.16 0.02 0.00 ind:fut:3s; +façonnerai façonner VER 1.95 7.16 0.12 0.00 ind:fut:1s; +façonnerais façonner VER 1.95 7.16 0.00 0.07 cnd:pre:1s; +façonnerez façonner VER 1.95 7.16 0.03 0.00 ind:fut:2p; +façonneront façonner VER 1.95 7.16 0.00 0.07 ind:fut:3p; +façonnière façonnier NOM f s 0.00 0.07 0.00 0.07 +façonné façonner VER m s 1.95 7.16 0.61 1.76 par:pas; +façonnée façonner VER f s 1.95 7.16 0.23 1.08 par:pas; +façonnées façonner VER f p 1.95 7.16 0.04 0.34 par:pas; +façonnés façonner VER m p 1.95 7.16 0.07 0.88 par:pas; +façons façon NOM f p 230.48 277.30 17.89 18.04 +fatidique fatidique ADJ s 0.42 4.05 0.41 3.51 +fatidiques fatidique ADJ p 0.42 4.05 0.01 0.54 +fatigant fatigant ADJ m s 4.84 7.84 3.81 5.20 +fatigante fatigant ADJ f s 4.84 7.84 0.67 1.62 +fatigantes fatigant ADJ f p 4.84 7.84 0.31 0.27 +fatigants fatigant ADJ m p 4.84 7.84 0.04 0.74 +fatigua fatiguer VER 78.25 49.05 0.02 0.41 ind:pas:3s; +fatiguai fatiguer VER 78.25 49.05 0.01 0.14 ind:pas:1s; +fatiguaient fatiguer VER 78.25 49.05 0.12 0.54 ind:imp:3p; +fatiguais fatiguer VER 78.25 49.05 0.16 0.41 ind:imp:1s;ind:imp:2s; +fatiguait fatiguer VER 78.25 49.05 0.30 2.36 ind:imp:3s; +fatiguant fatiguer VER 78.25 49.05 1.43 0.14 par:pre; +fatigue fatigue NOM f s 9.25 69.46 8.70 65.81 +fatiguent fatiguer VER 78.25 49.05 1.11 1.55 ind:pre:3p; +fatiguer fatiguer VER 78.25 49.05 2.89 3.31 inf; +fatiguera fatiguer VER 78.25 49.05 0.25 0.14 ind:fut:3s; +fatiguerai fatiguer VER 78.25 49.05 0.02 0.07 ind:fut:1s; +fatigueraient fatiguer VER 78.25 49.05 0.00 0.14 cnd:pre:3p; +fatiguerais fatiguer VER 78.25 49.05 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +fatiguerait fatiguer VER 78.25 49.05 0.06 0.61 cnd:pre:3s; +fatigueras fatiguer VER 78.25 49.05 0.10 0.00 ind:fut:2s; +fatigues fatiguer VER 78.25 49.05 3.44 0.54 ind:pre:2s; +fatiguez fatiguer VER 78.25 49.05 2.49 1.08 imp:pre:2p;ind:pre:2p; +fatiguons fatiguer VER 78.25 49.05 0.01 0.00 ind:pre:1p; +fatiguât fatiguer VER 78.25 49.05 0.00 0.14 sub:imp:3s; +fatiguèrent fatiguer VER 78.25 49.05 0.00 0.14 ind:pas:3p; +fatigué fatiguer VER m s 78.25 49.05 31.43 16.01 par:pas;par:pas;par:pas; +fatiguée fatiguer VER f s 78.25 49.05 20.46 9.73 par:pas; +fatiguées fatiguer VER f p 78.25 49.05 1.27 0.95 par:pas; +fatigués fatiguer VER m p 78.25 49.05 4.26 2.97 par:pas; +fatma fatma NOM f s 0.16 0.95 0.14 0.54 +fatmas fatma NOM f p 0.16 0.95 0.03 0.41 +fatras fatras NOM m 0.34 2.91 0.34 2.91 +fats fat ADJ m p 1.81 1.08 0.33 0.07 +fatuité fatuité NOM f s 0.23 0.95 0.23 0.95 +fatum fatum NOM m s 0.00 0.47 0.00 0.47 +fau fau NOM m s 0.14 0.00 0.14 0.00 +faubert faubert NOM m s 0.02 0.07 0.02 0.07 +faubourg faubourg NOM m s 1.69 22.09 0.58 14.73 +faubourgs faubourg NOM m p 1.69 22.09 1.11 7.36 +faubourien faubourien ADJ m s 0.00 1.15 0.00 0.54 +faubourienne faubourien ADJ f s 0.00 1.15 0.00 0.27 +faubouriennes faubourien ADJ f p 0.00 1.15 0.00 0.14 +faubouriens faubourien ADJ m p 0.00 1.15 0.00 0.20 +faucardé faucarder VER m s 0.00 0.27 0.00 0.07 par:pas; +faucardée faucarder VER f s 0.00 0.27 0.00 0.07 par:pas; +faucardées faucarder VER f p 0.00 0.27 0.00 0.07 par:pas; +faucardés faucarder VER m p 0.00 0.27 0.00 0.07 par:pas; +faucha faucher VER 14.76 13.51 0.00 0.34 ind:pas:3s; +fauchage fauchage NOM m s 0.04 0.34 0.04 0.34 +fauchaient faucher VER 14.76 13.51 0.01 0.34 ind:imp:3p; +fauchais faucher VER 14.76 13.51 0.02 0.14 ind:imp:1s; +fauchaison fauchaison NOM f s 0.10 0.20 0.10 0.20 +fauchait faucher VER 14.76 13.51 0.01 0.61 ind:imp:3s; +fauchant faucher VER 14.76 13.51 0.14 0.74 par:pre; +fauchard fauchard NOM m s 0.00 0.14 0.00 0.14 +fauche faucher VER 14.76 13.51 0.51 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fauchent faucher VER 14.76 13.51 0.16 0.34 ind:pre:3p; +faucher faucher VER 14.76 13.51 2.54 2.77 inf; +fauchera faucher VER 14.76 13.51 0.03 0.00 ind:fut:3s; +faucherait faucher VER 14.76 13.51 0.02 0.07 cnd:pre:3s; +faucheras faucher VER 14.76 13.51 0.04 0.00 ind:fut:2s; +faucheront faucher VER 14.76 13.51 0.01 0.00 ind:fut:3p; +fauches faucher VER 14.76 13.51 0.41 0.14 ind:pre:2s; +faucheur faucheur NOM m s 2.06 0.81 0.42 0.14 +faucheurs faucheur NOM m p 2.06 0.81 0.52 0.07 +faucheuse faucheur NOM f s 2.06 0.81 1.12 0.54 +faucheuses faucheuse NOM f p 0.01 0.00 0.01 0.00 +faucheux faucheux NOM m 0.00 0.68 0.00 0.68 +fauchez faucher VER 14.76 13.51 0.27 0.07 imp:pre:2p;ind:pre:2p; +fauchon fauchon NOM m s 0.18 0.20 0.18 0.20 +fauché faucher VER m s 14.76 13.51 6.42 4.05 par:pas; +fauchée faucher VER f s 14.76 13.51 2.18 0.95 par:pas; +fauchées faucher VER f p 14.76 13.51 0.30 0.14 par:pas; +fauchés faucher VER m p 14.76 13.51 1.69 1.08 par:pas; +faucille faucille NOM f s 0.53 2.57 0.51 2.23 +faucilles faucille NOM f p 0.53 2.57 0.03 0.34 +faucillon faucillon NOM m s 0.00 0.20 0.00 0.20 +faucon faucon NOM m s 5.93 3.51 4.07 2.36 +fauconneau fauconneau NOM m s 0.22 0.00 0.22 0.00 +fauconnerie fauconnerie NOM f s 0.01 0.07 0.01 0.07 +fauconnier fauconnier NOM m s 0.25 0.41 0.15 0.34 +fauconniers fauconnier NOM m p 0.25 0.41 0.10 0.07 +faucons faucon NOM m p 5.93 3.51 1.86 1.15 +faudra falloir VER 1653.77 1250.41 85.73 61.22 ind:fut:3s; +faudrait falloir VER 1653.77 1250.41 74.08 111.69 cnd:pre:3s; +faufil faufil NOM m s 0.01 0.07 0.01 0.07 +faufila faufiler VER 4.41 17.30 0.03 1.35 ind:pas:3s; +faufilai faufiler VER 4.41 17.30 0.01 0.20 ind:pas:1s; +faufilaient faufiler VER 4.41 17.30 0.02 0.54 ind:imp:3p; +faufilais faufiler VER 4.41 17.30 0.08 0.00 ind:imp:1s;ind:imp:2s; +faufilait faufiler VER 4.41 17.30 0.04 2.43 ind:imp:3s; +faufilant faufiler VER 4.41 17.30 0.02 2.09 par:pre; +faufile faufiler VER 4.41 17.30 1.24 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +faufilent faufiler VER 4.41 17.30 0.16 0.88 ind:pre:3p; +faufiler faufiler VER 4.41 17.30 1.86 3.65 inf; +faufilera faufiler VER 4.41 17.30 0.14 0.00 ind:fut:3s; +faufilerai faufiler VER 4.41 17.30 0.02 0.00 ind:fut:1s; +faufilerait faufiler VER 4.41 17.30 0.00 0.07 cnd:pre:3s; +faufileras faufiler VER 4.41 17.30 0.04 0.00 ind:fut:2s; +faufileront faufiler VER 4.41 17.30 0.01 0.00 ind:fut:3p; +faufilez faufiler VER 4.41 17.30 0.05 0.00 imp:pre:2p;ind:pre:2p; +faufilâmes faufiler VER 4.41 17.30 0.00 0.07 ind:pas:1p; +faufilons faufiler VER 4.41 17.30 0.05 0.07 imp:pre:1p;ind:pre:1p; +faufilât faufiler VER 4.41 17.30 0.00 0.07 sub:imp:3s; +faufilèrent faufiler VER 4.41 17.30 0.00 0.20 ind:pas:3p; +faufilé faufiler VER m s 4.41 17.30 0.44 1.08 par:pas; +faufilée faufiler VER f s 4.41 17.30 0.12 0.68 par:pas; +faufilées faufiler VER f p 4.41 17.30 0.00 0.07 par:pas; +faufilés faufiler VER m p 4.41 17.30 0.07 0.27 par:pas; +faune faune NOM s 1.48 6.49 1.47 5.95 +faunes faune NOM p 1.48 6.49 0.01 0.54 +faunesque faunesque ADJ f s 0.00 0.14 0.00 0.07 +faunesques faunesque ADJ p 0.00 0.14 0.00 0.07 +faunesse faunesse NOM f s 0.00 0.07 0.00 0.07 +faussa fausser VER 3.51 8.45 0.00 0.27 ind:pas:3s; +faussaient fausser VER 3.51 8.45 0.01 0.00 ind:imp:3p; +faussaire faussaire NOM m s 1.22 1.35 0.89 0.95 +faussaires faussaire NOM m p 1.22 1.35 0.33 0.41 +faussait fausser VER 3.51 8.45 0.02 0.34 ind:imp:3s; +faussant fausser VER 3.51 8.45 0.00 0.14 par:pre; +fausse_couche fausse_couche NOM f s 0.07 0.20 0.07 0.20 +fausse faux ADJ f s 122.23 109.59 21.98 27.09 +faussement faussement ADV 0.66 7.91 0.66 7.91 +faussent fausser VER 3.51 8.45 0.02 0.07 ind:pre:3p; +fausser fausser VER 3.51 8.45 0.34 1.89 inf; +fausseront fausser VER 3.51 8.45 0.00 0.14 ind:fut:3p; +fausses faux ADJ f p 122.23 109.59 9.26 15.95 +fausset fausset NOM m s 0.05 1.55 0.04 1.55 +faussets fausset NOM m p 0.05 1.55 0.01 0.00 +fausseté fausseté NOM f s 0.75 1.08 0.75 1.08 +faussez fausser VER 3.51 8.45 0.03 0.07 ind:pre:2p; +faussions fausser VER 3.51 8.45 0.01 0.00 ind:imp:1p; +faussât fausser VER 3.51 8.45 0.00 0.07 sub:imp:3s; +faussé fausser VER m s 3.51 8.45 1.19 1.76 par:pas; +faussée fausser VER f s 3.51 8.45 0.23 0.68 par:pas; +faussées fausser VER f p 3.51 8.45 0.06 0.41 par:pas; +faussés fausser VER m p 3.51 8.45 0.04 0.07 par:pas; +faustien faustien ADJ m s 0.15 0.07 0.14 0.07 +faustienne faustien ADJ f s 0.15 0.07 0.01 0.00 +faut falloir VER 1653.77 1250.41 1318.11 653.92 ind:pre:3s; +faute faute NOM f s 169.26 95.20 163.19 81.08 +fauter fauter VER 1.42 1.76 0.00 0.27 inf; +fautes faute NOM f p 169.26 95.20 6.07 14.12 +fauteuil_club fauteuil_club NOM m s 0.00 0.27 0.00 0.27 +fauteuil fauteuil NOM m s 19.27 102.03 17.16 76.69 +fauteuils_club fauteuils_club NOM m p 0.00 0.07 0.00 0.07 +fauteuils fauteuil NOM m p 19.27 102.03 2.10 25.34 +fauteur fauteur NOM m s 0.88 1.82 0.31 0.88 +fauteurs fauteur NOM m p 0.88 1.82 0.52 0.95 +fauteuse fauteur NOM f s 0.88 1.82 0.03 0.00 +fautif fautif ADJ m s 2.96 2.09 1.50 1.08 +fautifs fautif ADJ m p 2.96 2.09 0.19 0.20 +fautive fautif ADJ f s 2.96 2.09 1.12 0.74 +fautives fautif ADJ f p 2.96 2.09 0.15 0.07 +fautrice fauteur NOM f s 0.88 1.82 0.02 0.00 +fauté fauter VER m s 1.42 1.76 1.02 0.68 par:pas; +fauve fauve NOM m s 3.61 13.38 1.26 7.77 +fauverie fauverie NOM f s 0.00 0.14 0.00 0.14 +fauves fauve NOM m p 3.61 13.38 2.35 5.61 +fauvette fauvette NOM f s 0.60 2.23 0.60 1.62 +fauvettes fauvette NOM f p 0.60 2.23 0.00 0.61 +fauvisme fauvisme NOM m s 0.01 0.00 0.01 0.00 +faux_bond faux_bond NOM m 0.01 0.07 0.01 0.07 +faux_bourdon faux_bourdon NOM m s 0.02 0.07 0.02 0.07 +faux_col faux_col NOM m s 0.02 0.34 0.02 0.34 +faux_cul faux_cul NOM m s 0.41 0.07 0.41 0.07 +faux_filet faux_filet NOM m s 0.04 0.34 0.04 0.34 +faux_frère faux_frère ADJ m s 0.01 0.00 0.01 0.00 +faux_fuyant faux_fuyant NOM m s 0.22 1.22 0.02 0.47 +faux_fuyant faux_fuyant NOM m p 0.22 1.22 0.20 0.74 +faux_monnayeur faux_monnayeur NOM m s 0.26 0.61 0.01 0.14 +faux_monnayeur faux_monnayeur NOM m p 0.26 0.61 0.25 0.47 +faux_pas faux_pas NOM m 0.38 0.14 0.38 0.14 +faux_pont faux_pont NOM m s 0.01 0.00 0.01 0.00 +faux_saunier faux_saunier NOM m p 0.00 0.07 0.00 0.07 +faux_semblant faux_semblant NOM m s 0.46 1.49 0.37 0.74 +faux_semblant faux_semblant NOM m p 0.46 1.49 0.09 0.74 +faux faux ADJ m 122.23 109.59 90.99 66.55 +favela favela NOM f s 1.62 0.07 1.25 0.00 +favelas favela NOM f p 1.62 0.07 0.36 0.07 +faveur faveur NOM f s 36.65 31.62 31.09 27.64 +faveurs faveur NOM f p 36.65 31.62 5.56 3.99 +favorable favorable ADJ s 5.38 16.62 4.53 11.28 +favorablement favorablement ADV 0.47 1.55 0.47 1.55 +favorables favorable ADJ p 5.38 16.62 0.85 5.34 +favori favori ADJ m s 8.79 13.99 5.19 5.81 +favoris favori NOM m p 3.22 4.19 1.28 2.77 +favorisa favoriser VER 3.26 10.54 0.01 0.14 ind:pas:3s; +favorisaient favoriser VER 3.26 10.54 0.01 0.34 ind:imp:3p; +favorisait favoriser VER 3.26 10.54 0.05 2.03 ind:imp:3s; +favorisant favoriser VER 3.26 10.54 0.06 0.27 par:pre; +favorise favoriser VER 3.26 10.54 1.40 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +favorisent favoriser VER 3.26 10.54 0.51 0.61 ind:pre:3p; +favoriser favoriser VER 3.26 10.54 0.63 2.23 inf; +favorisera favoriser VER 3.26 10.54 0.03 0.07 ind:fut:3s; +favoriserai favoriser VER 3.26 10.54 0.01 0.00 ind:fut:1s; +favoriseraient favoriser VER 3.26 10.54 0.00 0.07 cnd:pre:3p; +favoriserait favoriser VER 3.26 10.54 0.07 0.07 cnd:pre:3s; +favorisez favoriser VER 3.26 10.54 0.03 0.00 ind:pre:2p; +favorisât favoriser VER 3.26 10.54 0.00 0.20 sub:imp:3s; +favorisèrent favoriser VER 3.26 10.54 0.00 0.07 ind:pas:3p; +favorisé favoriser VER m s 3.26 10.54 0.25 1.69 par:pas; +favorisée favoriser VER f s 3.26 10.54 0.05 0.54 par:pas; +favorisées favoriser VER f p 3.26 10.54 0.00 0.34 par:pas; +favorisés favoriser VER m p 3.26 10.54 0.14 0.68 par:pas; +favorite favori ADJ f s 8.79 13.99 1.92 3.45 +favorites favori ADJ f p 8.79 13.99 0.51 1.55 +favoritisme favoritisme NOM m s 0.47 0.34 0.47 0.34 +fax fax NOM m 5.59 0.14 5.59 0.14 +faxe faxer VER 2.58 0.07 0.45 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +faxer faxer VER 2.58 0.07 0.65 0.07 inf; +faxera faxer VER 2.58 0.07 0.04 0.00 ind:fut:3s; +faxerai faxer VER 2.58 0.07 0.09 0.00 ind:fut:1s; +faxes faxer VER 2.58 0.07 0.27 0.00 ind:pre:2s; +faxez faxer VER 2.58 0.07 0.27 0.00 imp:pre:2p;ind:pre:2p; +faxons faxer VER 2.58 0.07 0.01 0.00 imp:pre:1p; +faxé faxer VER m s 2.58 0.07 0.75 0.00 par:pas; +faxés faxer VER m p 2.58 0.07 0.05 0.00 par:pas; +fayard fayard NOM m s 0.00 0.27 0.00 0.20 +fayards fayard NOM m p 0.00 0.27 0.00 0.07 +fayot fayot ADJ m s 0.25 0.27 0.25 0.14 +fayotage fayotage NOM m s 0.03 0.07 0.03 0.07 +fayotaient fayoter VER 0.09 0.61 0.00 0.07 ind:imp:3p; +fayotais fayoter VER 0.09 0.61 0.00 0.14 ind:imp:1s; +fayotait fayoter VER 0.09 0.61 0.00 0.07 ind:imp:3s; +fayote fayoter VER 0.09 0.61 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fayoter fayoter VER 0.09 0.61 0.01 0.20 inf; +fayots fayot NOM m p 0.42 1.28 0.32 1.08 +fayotte fayotter VER 0.25 0.00 0.25 0.00 ind:pre:3s; +fayotée fayoter VER f s 0.09 0.61 0.00 0.07 par:pas; +fazenda fazenda NOM f s 0.35 0.00 0.35 0.00 +fedayin fedayin NOM m s 0.01 0.00 0.01 0.00 +feed_back feed_back NOM m 0.04 0.00 0.04 0.00 +feedback feedback NOM m s 0.10 0.07 0.10 0.07 +feeder feeder NOM m s 0.01 0.00 0.01 0.00 +feeling feeling NOM m s 1.53 0.54 1.30 0.54 +feelings feeling NOM m p 1.53 0.54 0.23 0.00 +feignîmes feindre VER 5.92 21.22 0.00 0.14 ind:pas:1p; +feignaient feindre VER 5.92 21.22 0.11 0.61 ind:imp:3p; +feignais feindre VER 5.92 21.22 0.18 0.74 ind:imp:1s;ind:imp:2s; +feignait feindre VER 5.92 21.22 0.13 2.77 ind:imp:3s; +feignant feignant ADJ m s 0.98 1.35 0.71 1.01 +feignante feignant NOM f s 1.51 3.11 0.28 0.00 +feignantes feignant NOM f p 1.51 3.11 0.00 0.07 +feignants feignant NOM m p 1.51 3.11 0.57 1.35 +feignasse feignasse NOM f s 0.72 0.20 0.52 0.14 +feignasses feignasse NOM f p 0.72 0.20 0.21 0.07 +feigne feindre VER 5.92 21.22 0.00 0.07 sub:pre:1s; +feignent feindre VER 5.92 21.22 0.13 0.61 ind:pre:3p; +feignez feindre VER 5.92 21.22 0.52 0.00 imp:pre:2p;ind:pre:2p; +feigniez feindre VER 5.92 21.22 0.10 0.00 ind:imp:2p; +feignirent feindre VER 5.92 21.22 0.00 0.20 ind:pas:3p; +feignis feindre VER 5.92 21.22 0.00 0.47 ind:pas:1s; +feignit feindre VER 5.92 21.22 0.10 1.62 ind:pas:3s; +feignons feindre VER 5.92 21.22 0.07 0.34 imp:pre:1p;ind:pre:1p; +feindra feindre VER 5.92 21.22 0.21 0.07 ind:fut:3s; +feindrai feindre VER 5.92 21.22 0.30 0.00 ind:fut:1s; +feindrait feindre VER 5.92 21.22 0.01 0.14 cnd:pre:3s; +feindre feindre VER 5.92 21.22 1.23 4.39 inf; +feins feindre VER 5.92 21.22 0.81 1.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +feint feindre VER m s 5.92 21.22 1.67 4.12 ind:pre:3s;par:pas; +feintait feinter VER 1.47 1.89 0.00 0.07 ind:imp:3s; +feintant feinter VER 1.47 1.89 0.00 0.14 par:pre; +feinte feinte NOM f s 1.04 2.36 0.86 1.15 +feinter feinter VER 1.47 1.89 0.27 0.68 inf; +feinterez feinter VER 1.47 1.89 0.01 0.00 ind:fut:2p; +feintes feinte NOM f p 1.04 2.36 0.18 1.22 +feinteur feinteur NOM m s 0.02 0.00 0.02 0.00 +feintise feintise NOM f s 0.00 0.07 0.00 0.07 +feints feint ADJ m p 1.00 5.61 0.02 0.00 +feinté feinter VER m s 1.47 1.89 0.79 0.07 par:pas; +feintés feinter VER m p 1.47 1.89 0.03 0.20 par:pas; +feld_maréchal feld_maréchal NOM m s 0.32 0.27 0.32 0.27 +feldgrau feldgrau NOM m 0.00 0.47 0.00 0.47 +feldspath feldspath NOM m s 0.03 0.14 0.03 0.14 +feldwebel feldwebel NOM m s 0.00 1.42 0.00 1.28 +feldwebels feldwebel NOM m p 0.00 1.42 0.00 0.14 +fellaga fellaga NOM m s 0.00 0.81 0.00 0.74 +fellagas fellaga NOM m p 0.00 0.81 0.00 0.07 +fellagha fellagha NOM m s 0.00 0.34 0.00 0.20 +fellaghas fellagha NOM m p 0.00 0.34 0.00 0.14 +fellah fellah NOM m s 0.14 0.27 0.14 0.20 +fellahs fellah NOM m p 0.14 0.27 0.00 0.07 +fellation fellation NOM f s 0.98 0.81 0.88 0.74 +fellationne fellationner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +fellations fellation NOM f p 0.98 0.81 0.10 0.07 +fellinien fellinien NOM m s 0.00 0.07 0.00 0.07 +fellinienne fellinien ADJ f s 0.10 0.00 0.10 0.00 +felouque felouque NOM f s 0.01 1.49 0.01 1.01 +felouques felouque NOM f p 0.01 1.49 0.00 0.47 +femelle femelle NOM f s 9.38 12.64 6.84 7.84 +femelles femelle NOM f p 9.38 12.64 2.53 4.80 +femme_enfant femme_enfant NOM f s 0.35 0.27 0.35 0.27 +femme_fleur femme_fleur NOM f s 0.00 0.07 0.00 0.07 +femme_objet femme_objet NOM f s 0.03 0.07 0.03 0.07 +femme_refuge femme_refuge NOM f s 0.00 0.07 0.00 0.07 +femme_robot femme_robot NOM f s 0.07 0.00 0.07 0.00 +femme femme NOM f s 1049.32 995.74 806.57 680.20 +femmelette femmelette NOM f s 1.34 0.47 1.10 0.47 +femmelettes femmelette NOM f p 1.34 0.47 0.24 0.00 +femmes femme NOM f p 1049.32 995.74 242.75 315.54 +fenaison fenaison NOM f s 0.00 0.34 0.00 0.27 +fenaisons fenaison NOM f p 0.00 0.34 0.00 0.07 +fend fendre VER 7.76 28.58 1.20 3.58 ind:pre:3s; +fendaient fendre VER 7.76 28.58 0.01 0.88 ind:imp:3p; +fendais fendre VER 7.76 28.58 0.01 0.27 ind:imp:1s; +fendait fendre VER 7.76 28.58 0.26 3.24 ind:imp:3s; +fendant fendre VER 7.76 28.58 0.03 1.96 par:pre; +fendants fendant ADJ m p 0.01 0.34 0.01 0.00 +fendard fendard ADJ m s 0.06 0.07 0.06 0.07 +fende fendre VER 7.76 28.58 0.04 0.14 sub:pre:1s;sub:pre:3s; +fendent fendre VER 7.76 28.58 0.15 0.68 ind:pre:3p; +fendeur fendeur NOM m s 0.00 0.34 0.00 0.14 +fendeurs fendeur NOM m p 0.00 0.34 0.00 0.20 +fendez fendre VER 7.76 28.58 0.49 0.00 imp:pre:2p;ind:pre:2p; +fendillaient fendiller VER 0.01 1.76 0.00 0.07 ind:imp:3p; +fendillait fendiller VER 0.01 1.76 0.00 0.41 ind:imp:3s; +fendille fendiller VER 0.01 1.76 0.00 0.41 ind:pre:1s;ind:pre:3s; +fendillement fendillement NOM m s 0.00 0.14 0.00 0.07 +fendillements fendillement NOM m p 0.00 0.14 0.00 0.07 +fendiller fendiller VER 0.01 1.76 0.00 0.07 inf; +fendillèrent fendiller VER 0.01 1.76 0.00 0.07 ind:pas:3p; +fendillé fendillé ADJ m s 0.00 0.74 0.00 0.34 +fendillée fendiller VER f s 0.01 1.76 0.01 0.34 par:pas; +fendillées fendillé ADJ f p 0.00 0.74 0.00 0.20 +fendillés fendiller VER m p 0.01 1.76 0.00 0.14 par:pas; +fendis fendre VER 7.76 28.58 0.00 0.07 ind:pas:1s; +fendissent fendre VER 7.76 28.58 0.00 0.07 sub:imp:3p; +fendit fendre VER 7.76 28.58 0.03 1.89 ind:pas:3s; +fendoir fendoir NOM m s 0.11 0.00 0.11 0.00 +fendons fendre VER 7.76 28.58 0.01 0.07 ind:pre:1p; +fendra fendre VER 7.76 28.58 0.07 0.07 ind:fut:3s; +fendrai fendre VER 7.76 28.58 0.16 0.14 ind:fut:1s; +fendraient fendre VER 7.76 28.58 0.00 0.07 cnd:pre:3p; +fendrait fendre VER 7.76 28.58 0.16 0.07 cnd:pre:3s; +fendre fendre VER 7.76 28.58 2.49 6.89 inf; +fends fendre VER 7.76 28.58 0.41 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s; +fendu fendre VER m s 7.76 28.58 1.77 4.12 par:pas; +fendue fendu ADJ f s 0.69 4.46 0.38 1.62 +fendues fendu ADJ f p 0.69 4.46 0.04 0.68 +fendus fendre VER m p 7.76 28.58 0.14 0.74 par:pas; +fenestrages fenestrage NOM m p 0.00 0.07 0.00 0.07 +fenestrelle fenestrelle NOM f s 0.14 0.00 0.14 0.00 +fenians fenian NOM m p 0.00 0.07 0.00 0.07 +fenil fenil NOM m s 0.02 0.41 0.02 0.27 +fenils fenil NOM m p 0.02 0.41 0.00 0.14 +fennec fennec NOM m s 0.01 0.20 0.01 0.00 +fennecs fennec NOM m p 0.01 0.20 0.00 0.20 +fenouil fenouil NOM m s 1.14 0.74 1.14 0.74 +fente fente NOM f s 3.93 15.61 3.61 10.54 +fentes fente NOM f p 3.93 15.61 0.32 5.07 +fenton fenton NOM m s 0.43 0.00 0.43 0.00 +fenugrec fenugrec NOM m s 0.03 0.00 0.03 0.00 +fenêtre fenêtre NOM f s 90.55 280.20 70.20 199.39 +fenêtres fenêtre NOM f p 90.55 280.20 20.35 80.81 +fer_blanc fer_blanc NOM m s 0.08 2.84 0.08 2.84 +fer fer NOM m s 37.08 114.19 33.65 106.28 +fera faire VER 8813.53 5328.99 170.70 59.66 ind:fut:3s; +ferai faire VER 8813.53 5328.99 146.11 31.69 ind:fut:1s; +feraient faire VER 8813.53 5328.99 10.80 13.11 cnd:pre:3p; +ferais faire VER 8813.53 5328.99 110.19 26.96 cnd:pre:1s;cnd:pre:2s; +ferait faire VER 8813.53 5328.99 86.88 77.23 cnd:pre:3s; +feras faire VER 8813.53 5328.99 42.91 13.18 ind:fut:2s; +ferblanterie ferblanterie NOM f s 0.00 0.27 0.00 0.27 +ferblantier ferblantier NOM m s 0.10 0.34 0.10 0.07 +ferblantiers ferblantier NOM m p 0.10 0.34 0.00 0.27 +ferez faire VER 8813.53 5328.99 27.63 10.54 ind:fut:2p; +feria feria NOM f s 0.17 0.20 0.02 0.14 +ferias feria NOM f p 0.17 0.20 0.15 0.07 +feriez faire VER 8813.53 5328.99 23.97 5.54 cnd:pre:2p; +ferions faire VER 8813.53 5328.99 3.59 2.70 cnd:pre:1p; +ferlage ferlage NOM f s 0.10 0.00 0.10 0.00 +ferlez ferler VER 0.03 0.14 0.03 0.00 imp:pre:2p; +ferlée ferler VER f s 0.03 0.14 0.00 0.14 par:pas; +ferma fermer VER 238.65 197.16 0.59 23.99 ind:pas:3s; +fermage fermage NOM m s 0.03 0.74 0.02 0.54 +fermages fermage NOM m p 0.03 0.74 0.01 0.20 +fermai fermer VER 238.65 197.16 0.06 3.24 ind:pas:1s; +fermaient fermer VER 238.65 197.16 0.29 5.27 ind:imp:3p; +fermais fermer VER 238.65 197.16 0.92 3.18 ind:imp:1s;ind:imp:2s; +fermait fermer VER 238.65 197.16 1.36 16.42 ind:imp:3s; +fermant fermer VER 238.65 197.16 0.88 9.05 par:pre; +ferme fermer VER 238.65 197.16 79.68 28.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fermement fermement ADV 2.60 10.07 2.60 10.07 +ferment fermer VER 238.65 197.16 3.65 3.65 ind:pre:3p;sub:pre:3p; +fermentaient fermenter VER 0.14 2.16 0.00 0.14 ind:imp:3p; +fermentais fermenter VER 0.14 2.16 0.00 0.07 ind:imp:1s; +fermentait fermenter VER 0.14 2.16 0.01 0.20 ind:imp:3s; +fermentation fermentation NOM f s 0.29 1.28 0.29 0.95 +fermentations fermentation NOM f p 0.29 1.28 0.00 0.34 +fermente fermenter VER 0.14 2.16 0.04 0.74 ind:pre:3s; +fermenter fermenter VER 0.14 2.16 0.05 0.54 inf; +ferments ferment NOM m p 0.20 1.76 0.14 0.61 +fermentèrent fermenter VER 0.14 2.16 0.00 0.07 ind:pas:3p; +fermenté fermenté ADJ m s 0.57 1.28 0.44 0.81 +fermentée fermenté ADJ f s 0.57 1.28 0.11 0.20 +fermentées fermenté ADJ f p 0.57 1.28 0.00 0.14 +fermentés fermenté ADJ m p 0.57 1.28 0.02 0.14 +fermer fermer VER 238.65 197.16 48.85 32.97 inf;; +fermera fermer VER 238.65 197.16 1.11 0.34 ind:fut:3s; +fermerai fermer VER 238.65 197.16 2.11 0.61 ind:fut:1s; +fermeraient fermer VER 238.65 197.16 0.05 0.14 cnd:pre:3p; +fermerais fermer VER 238.65 197.16 0.58 0.14 cnd:pre:1s;cnd:pre:2s; +fermerait fermer VER 238.65 197.16 0.18 0.95 cnd:pre:3s; +fermeras fermer VER 238.65 197.16 0.35 0.00 ind:fut:2s; +fermerez fermer VER 238.65 197.16 0.54 0.00 ind:fut:2p; +fermeriez fermer VER 238.65 197.16 0.11 0.00 cnd:pre:2p; +fermerons fermer VER 238.65 197.16 0.10 0.00 ind:fut:1p; +fermeront fermer VER 238.65 197.16 0.55 0.14 ind:fut:3p; +fermes_hôtel fermes_hôtel NOM f p 0.00 0.07 0.00 0.07 +fermes fermer VER 238.65 197.16 7.41 1.01 ind:pre:2s;sub:pre:2s; +fermette fermette NOM f s 0.11 0.34 0.11 0.34 +fermeté fermeté NOM f s 2.12 10.47 2.12 10.47 +fermeture fermeture NOM f s 11.54 15.74 11.06 14.86 +fermetures fermeture NOM f p 11.54 15.74 0.48 0.88 +fermez fermer VER 238.65 197.16 30.74 1.69 imp:pre:2p;ind:pre:2p; +fermi fermi NOM m s 0.01 0.00 0.01 0.00 +fermier fermier NOM m s 8.82 12.36 4.54 5.61 +fermiers fermier NOM m p 8.82 12.36 3.22 4.05 +fermiez fermer VER 238.65 197.16 0.57 0.20 ind:imp:2p; +fermions fermer VER 238.65 197.16 0.03 0.54 ind:imp:1p; +fermière fermier NOM f s 8.82 12.36 1.05 2.23 +fermières fermière NOM f p 0.03 0.00 0.03 0.00 +fermium fermium NOM m s 0.01 0.00 0.01 0.00 +fermoir fermoir NOM m s 0.38 2.09 0.38 1.76 +fermoirs fermoir NOM m p 0.38 2.09 0.00 0.34 +fermons fermer VER 238.65 197.16 1.69 0.68 imp:pre:1p;ind:pre:1p; +fermât fermer VER 238.65 197.16 0.00 0.14 sub:imp:3s; +fermèrent fermer VER 238.65 197.16 0.29 1.62 ind:pas:3p; +fermé fermer VER m s 238.65 197.16 34.73 30.54 par:pas; +fermée fermer VER f s 238.65 197.16 13.72 16.15 par:pas; +fermées fermer VER f p 238.65 197.16 3.31 6.42 par:pas; +fermés fermé ADJ m p 21.46 56.35 7.20 21.08 +ferons faire VER 8813.53 5328.99 21.07 6.96 ind:fut:1p; +feront faire VER 8813.53 5328.99 23.12 11.01 ind:fut:3p; +ferra ferrer VER 1.96 6.96 0.03 0.14 ind:pas:3s; +ferrage ferrage NOM m s 0.00 0.47 0.00 0.27 +ferrages ferrage NOM m p 0.00 0.47 0.00 0.20 +ferrai ferrer VER 1.96 6.96 0.01 0.00 ind:pas:1s; +ferrailla ferrailler VER 0.17 0.95 0.00 0.07 ind:pas:3s; +ferraillaient ferrailler VER 0.17 0.95 0.00 0.14 ind:imp:3p; +ferraillait ferrailler VER 0.17 0.95 0.00 0.14 ind:imp:3s; +ferraillant ferrailler VER 0.17 0.95 0.14 0.14 par:pre; +ferraillante ferraillant ADJ f s 0.00 0.47 0.00 0.14 +ferraille ferraille NOM f s 4.36 13.72 4.22 10.88 +ferraillement ferraillement NOM m s 0.00 0.68 0.00 0.68 +ferrailler ferrailler VER 0.17 0.95 0.01 0.20 inf; +ferrailles ferraille NOM f p 4.36 13.72 0.14 2.84 +ferrailleur ferrailleur NOM m s 0.53 1.62 0.51 0.68 +ferrailleurs ferrailleur NOM m p 0.53 1.62 0.02 0.95 +ferraillé ferrailler VER m s 0.17 0.95 0.00 0.07 par:pas; +ferrais ferrer VER 1.96 6.96 0.17 0.00 ind:imp:1s;ind:imp:2s; +ferrait ferrer VER 1.96 6.96 0.03 0.74 ind:imp:3s; +ferrant ferrer VER 1.96 6.96 0.01 0.20 par:pre; +ferrasse ferrer VER 1.96 6.96 0.14 0.00 sub:imp:1s; +ferre ferrer VER 1.96 6.96 0.03 0.54 ind:pre:1s;ind:pre:3s; +ferrer ferrer VER 1.96 6.96 0.25 2.03 inf; +ferrera ferrer VER 1.96 6.96 0.00 0.07 ind:fut:3s; +ferrerait ferrer VER 1.96 6.96 0.00 0.07 cnd:pre:3s; +ferrets ferret NOM m p 0.14 0.20 0.14 0.20 +ferreuse ferreux ADJ f s 0.16 0.54 0.01 0.00 +ferreux ferreux ADJ m 0.16 0.54 0.14 0.54 +ferrez ferrer VER 1.96 6.96 0.08 0.00 imp:pre:2p;ind:pre:2p; +ferries ferry NOM m p 2.12 0.61 0.14 0.00 +ferriques ferrique ADJ m p 0.00 0.07 0.00 0.07 +ferrite ferrite NOM s 0.03 0.00 0.03 0.00 +ferro ferro NOM m s 0.00 0.07 0.00 0.07 +ferrocérium ferrocérium NOM m s 0.00 0.07 0.00 0.07 +ferrocyanure ferrocyanure NOM m s 0.00 0.07 0.00 0.07 +ferronnerie ferronnerie NOM f s 0.13 0.68 0.13 0.34 +ferronneries ferronnerie NOM f p 0.13 0.68 0.00 0.34 +ferronnier ferronnier NOM m s 0.02 0.68 0.01 0.34 +ferronniers ferronnier NOM m p 0.02 0.68 0.00 0.34 +ferronnière ferronnier NOM f s 0.02 0.68 0.01 0.00 +ferrons ferrer VER 1.96 6.96 0.02 0.00 ind:pre:1p; +ferroviaire ferroviaire ADJ s 1.29 1.49 1.22 0.88 +ferroviaires ferroviaire ADJ p 1.29 1.49 0.07 0.61 +ferré ferrer VER m s 1.96 6.96 0.31 1.08 par:pas; +ferrée ferré ADJ f s 2.91 6.76 2.27 3.04 +ferrées ferré ADJ f p 2.91 6.76 0.52 1.82 +ferrugineuse ferrugineux ADJ f s 0.00 1.15 0.00 0.27 +ferrugineuses ferrugineux ADJ f p 0.00 1.15 0.00 0.20 +ferrugineux ferrugineux ADJ m 0.00 1.15 0.00 0.68 +ferrure ferrure NOM f s 0.01 1.42 0.01 0.14 +ferrures ferrure NOM f p 0.01 1.42 0.00 1.28 +ferrés ferré ADJ m p 2.91 6.76 0.08 1.35 +ferry_boat ferry_boat NOM m s 0.14 0.20 0.14 0.20 +ferry ferry NOM m s 2.12 0.61 1.98 0.61 +fers fer NOM m p 37.08 114.19 3.42 7.70 +fertile fertile ADJ s 3.17 3.18 2.72 2.57 +fertiles fertile ADJ p 3.17 3.18 0.45 0.61 +fertilisable fertilisable ADJ m s 0.00 0.07 0.00 0.07 +fertilisait fertiliser VER 0.97 0.95 0.01 0.20 ind:imp:3s; +fertilisant fertilisant NOM m s 0.07 0.07 0.07 0.07 +fertilisateur fertilisateur ADJ m s 0.00 0.07 0.00 0.07 +fertilisation fertilisation NOM f s 0.07 0.14 0.07 0.14 +fertilise fertiliser VER 0.97 0.95 0.27 0.14 ind:pre:3s; +fertilisent fertiliser VER 0.97 0.95 0.03 0.00 ind:pre:3p; +fertiliser fertiliser VER 0.97 0.95 0.18 0.34 inf; +fertilisera fertiliser VER 0.97 0.95 0.02 0.00 ind:fut:3s; +fertiliserons fertiliser VER 0.97 0.95 0.00 0.07 ind:fut:1p; +fertilisez fertiliser VER 0.97 0.95 0.02 0.00 imp:pre:2p; +fertilisèrent fertiliser VER 0.97 0.95 0.00 0.07 ind:pas:3p; +fertilisé fertiliser VER m s 0.97 0.95 0.19 0.07 par:pas; +fertilisée fertiliser VER f s 0.97 0.95 0.00 0.07 par:pas; +fertilisés fertiliser VER m p 0.97 0.95 0.23 0.00 par:pas; +fertilité fertilité NOM f s 1.13 1.01 1.13 1.01 +ferté ferté NOM f s 0.00 0.27 0.00 0.27 +fervent fervent ADJ m s 2.13 4.53 1.22 2.03 +fervente fervent ADJ f s 2.13 4.53 0.42 1.22 +ferventes fervent ADJ f p 2.13 4.53 0.12 0.14 +fervents fervent ADJ m p 2.13 4.53 0.37 1.15 +ferveur ferveur NOM f s 1.69 10.88 1.69 10.61 +ferveurs ferveur NOM f p 1.69 10.88 0.00 0.27 +fessait fesser VER 1.10 0.74 0.00 0.14 ind:imp:3s; +fesse_mathieu fesse_mathieu NOM m s 0.00 0.07 0.00 0.07 +fesse fesse NOM f s 36.32 45.14 1.81 6.42 +fesser fesser VER 1.10 0.74 0.26 0.27 inf; +fesserai fesser VER 1.10 0.74 0.02 0.07 ind:fut:1s; +fesserais fesser VER 1.10 0.74 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +fesses fesse NOM f p 36.32 45.14 34.52 38.72 +fesseur fesseur NOM m s 0.01 0.14 0.01 0.07 +fesseuse fesseur NOM f s 0.01 0.14 0.00 0.07 +fessier fessier NOM m s 0.33 0.68 0.23 0.54 +fessiers fessier ADJ m p 0.34 0.27 0.21 0.07 +fessiez fesser VER 1.10 0.74 0.01 0.00 ind:imp:2p; +fessière fessier ADJ f s 0.34 0.27 0.03 0.07 +fessières fessier ADJ f p 0.34 0.27 0.00 0.14 +fessé fesser VER m s 1.10 0.74 0.25 0.07 par:pas; +fessu fessu ADJ m s 0.01 0.81 0.00 0.27 +fessée fessée NOM f s 4.44 1.76 4.02 1.15 +fessue fessu ADJ f s 0.01 0.81 0.01 0.34 +fessées fessée NOM f p 4.44 1.76 0.41 0.61 +fessues fessu ADJ f p 0.01 0.81 0.00 0.20 +fessés fesser VER m p 1.10 0.74 0.01 0.07 par:pas; +festif festif ADJ m s 0.88 0.34 0.70 0.07 +festin festin NOM m s 4.50 5.68 4.05 4.46 +festins festin NOM m p 4.50 5.68 0.45 1.22 +festival festival NOM m s 7.65 5.27 7.51 4.93 +festivalier festivalier NOM m s 0.01 0.07 0.01 0.07 +festivals festival NOM m p 7.65 5.27 0.14 0.34 +festive festif ADJ f s 0.88 0.34 0.17 0.07 +festives festif ADJ f p 0.88 0.34 0.01 0.20 +festivité festivité NOM f s 1.21 1.01 0.02 0.00 +festivités festivité NOM f p 1.21 1.01 1.19 1.01 +festoie festoyer VER 1.26 1.01 0.55 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +festoient festoyer VER 1.26 1.01 0.13 0.07 ind:pre:3p; +festoiera festoyer VER 1.26 1.01 0.02 0.00 ind:fut:3s; +festoierons festoyer VER 1.26 1.01 0.02 0.00 ind:fut:1p; +feston feston NOM m s 0.17 1.49 0.02 0.14 +festonnaient festonner VER 0.03 1.01 0.00 0.07 ind:imp:3p; +festonnait festonner VER 0.03 1.01 0.00 0.14 ind:imp:3s; +festonne festonner VER 0.03 1.01 0.00 0.07 ind:pre:1s; +festonnements festonnement NOM m p 0.00 0.07 0.00 0.07 +festonner festonner VER 0.03 1.01 0.02 0.00 inf; +festonné festonner VER m s 0.03 1.01 0.01 0.07 par:pas; +festonnée festonner VER f s 0.03 1.01 0.00 0.27 par:pas; +festonnées festonner VER f p 0.03 1.01 0.00 0.20 par:pas; +festonnés festonner VER m p 0.03 1.01 0.00 0.20 par:pas; +festons feston NOM m p 0.17 1.49 0.14 1.35 +festoya festoyer VER 1.26 1.01 0.00 0.20 ind:pas:3s; +festoyaient festoyer VER 1.26 1.01 0.03 0.14 ind:imp:3p; +festoyant festoyer VER 1.26 1.01 0.03 0.00 par:pre; +festoyer festoyer VER 1.26 1.01 0.34 0.47 inf; +festoyez festoyer VER 1.26 1.01 0.03 0.00 imp:pre:2p; +festoyé festoyer VER m s 1.26 1.01 0.11 0.07 par:pas; +feta feta NOM f s 0.09 0.00 0.09 0.00 +fettucine fettucine NOM f 0.05 0.00 0.05 0.00 +feu feu NOM m s 233.96 236.15 215.87 199.39 +feudataire feudataire NOM m s 0.00 0.07 0.00 0.07 +feue feu ADJ f s 22.07 16.42 0.14 0.34 +feuillage feuillage NOM m s 1.68 23.72 1.30 10.47 +feuillages feuillage NOM m p 1.68 23.72 0.38 13.24 +feuillaison feuillaison NOM f s 0.00 0.14 0.00 0.14 +feuillantines feuillantine NOM f p 0.00 0.20 0.00 0.20 +feuille_morte feuille_morte ADJ f s 0.00 0.07 0.00 0.07 +feuille feuille NOM f s 30.10 138.04 13.24 46.35 +feuilles feuille NOM f p 30.10 138.04 16.86 91.69 +feuillet feuillet NOM m s 0.26 10.00 0.06 2.16 +feuilleta feuilleter VER 2.21 21.49 0.00 2.70 ind:pas:3s; +feuilletage feuilletage NOM m s 0.00 0.20 0.00 0.20 +feuilletai feuilleter VER 2.21 21.49 0.02 0.34 ind:pas:1s; +feuilletaient feuilleter VER 2.21 21.49 0.00 0.47 ind:imp:3p; +feuilletais feuilleter VER 2.21 21.49 0.23 0.81 ind:imp:1s;ind:imp:2s; +feuilletait feuilleter VER 2.21 21.49 0.00 2.91 ind:imp:3s; +feuilletant feuilleter VER 2.21 21.49 0.04 3.11 par:pre; +feuilleter feuilleter VER 2.21 21.49 0.65 4.05 inf; +feuilletez feuilleter VER 2.21 21.49 0.00 0.07 ind:pre:2p; +feuilletiez feuilleter VER 2.21 21.49 0.01 0.07 ind:imp:2p; +feuilletions feuilleter VER 2.21 21.49 0.00 0.07 ind:imp:1p; +feuilleton feuilleton NOM m s 2.81 6.28 2.06 4.66 +feuilletoniste feuilletoniste NOM s 0.00 0.34 0.00 0.34 +feuilletons feuilleton NOM m p 2.81 6.28 0.75 1.62 +feuillets feuillet NOM m p 0.26 10.00 0.20 7.84 +feuillette feuilleter VER 2.21 21.49 0.41 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +feuillettement feuillettement NOM m s 0.00 0.14 0.00 0.14 +feuillettent feuilleter VER 2.21 21.49 0.00 0.14 ind:pre:3p; +feuillettes feuilleter VER 2.21 21.49 0.16 0.00 ind:pre:2s; +feuilletèrent feuilleter VER 2.21 21.49 0.00 0.07 ind:pas:3p; +feuilleté feuilleter VER m s 2.21 21.49 0.65 2.36 par:pas; +feuilletée feuilleté ADJ f s 0.19 0.61 0.12 0.27 +feuilletées feuilleté ADJ f p 0.19 0.61 0.01 0.07 +feuilletés feuilleté NOM m p 0.79 0.34 0.30 0.14 +feuillu feuillu ADJ m s 0.18 2.43 0.12 0.47 +feuillée feuillée NOM f s 0.14 1.42 0.00 0.41 +feuillue feuillu ADJ f s 0.18 2.43 0.05 1.08 +feuillées feuillée NOM f p 0.14 1.42 0.14 1.01 +feuillues feuillu ADJ f p 0.18 2.43 0.01 0.47 +feuillure feuillure NOM f s 0.03 0.14 0.00 0.07 +feuillures feuillure NOM f p 0.03 0.14 0.03 0.07 +feuillus feuillu NOM m p 0.10 0.14 0.10 0.00 +feuj feuj NOM s 0.04 0.00 0.04 0.00 +feula feuler VER 0.10 0.54 0.00 0.07 ind:pas:3s; +feulait feuler VER 0.10 0.54 0.00 0.07 ind:imp:3s; +feulant feuler VER 0.10 0.54 0.00 0.14 par:pre; +feule feuler VER 0.10 0.54 0.00 0.07 ind:pre:3s; +feulement feulement NOM m s 0.00 1.08 0.00 0.81 +feulements feulement NOM m p 0.00 1.08 0.00 0.27 +feulent feuler VER 0.10 0.54 0.00 0.07 ind:pre:3p; +feuler feuler VER 0.10 0.54 0.10 0.07 inf; +feulée feuler VER f s 0.10 0.54 0.00 0.07 par:pas; +feurre feurre NOM m s 0.00 0.07 0.00 0.07 +feutra feutrer VER 0.19 5.34 0.00 0.07 ind:pas:3s; +feutrage feutrage NOM m s 0.00 0.41 0.00 0.34 +feutrages feutrage NOM m p 0.00 0.41 0.00 0.07 +feutrait feutrer VER 0.19 5.34 0.00 0.14 ind:imp:3s; +feutrant feutrer VER 0.19 5.34 0.00 0.07 par:pre; +feutre feutre NOM m s 1.45 13.99 1.33 13.18 +feutrent feutrer VER 0.19 5.34 0.00 0.14 ind:pre:3p; +feutrer feutrer VER 0.19 5.34 0.00 0.14 inf; +feutres feutrer VER 0.19 5.34 0.14 0.27 sub:pre:2s; +feutrine feutrine NOM f s 0.00 0.74 0.00 0.74 +feutré feutré ADJ m s 0.29 5.74 0.03 1.96 +feutrée feutré ADJ f s 0.29 5.74 0.21 2.03 +feutrées feutré ADJ f p 0.29 5.74 0.01 0.54 +feutrés feutré ADJ m p 0.29 5.74 0.04 1.22 +feux feu NOM m p 233.96 236.15 18.10 36.76 +fez fez NOM m s 0.42 1.15 0.42 1.15 +fi fi ONO 4.92 4.66 4.92 4.66 +fia fier VER 14.26 8.99 0.00 0.14 ind:pas:3s; +fiabilité fiabilité NOM f s 0.37 0.34 0.37 0.34 +fiable fiable ADJ s 6.85 1.28 5.36 1.08 +fiables fiable ADJ p 6.85 1.28 1.50 0.20 +fiacre fiacre NOM m s 1.39 5.20 1.39 4.05 +fiacres fiacre NOM m p 1.39 5.20 0.00 1.15 +fiaient fier VER 14.26 8.99 0.03 0.07 ind:imp:3p; +fiais fier VER 14.26 8.99 0.23 0.14 ind:imp:1s;ind:imp:2s; +fiait fier VER 14.26 8.99 0.21 0.34 ind:imp:3s; +fiance fiancer VER 13.30 4.80 0.46 0.20 imp:pre:2s;ind:pre:3s;sub:pre:3s; +fiancent fiancer VER 13.30 4.80 0.03 0.00 ind:pre:3p; +fiancer fiancer VER 13.30 4.80 1.22 0.47 inf; +fiancerais fiancer VER 13.30 4.80 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +fiancerons fiancer VER 13.30 4.80 0.00 0.07 ind:fut:1p; +fiancez fiancer VER 13.30 4.80 0.00 0.07 ind:pre:2p; +fiancèrent fiancer VER 13.30 4.80 0.01 0.07 ind:pas:3p; +fiancé fiancé NOM m s 51.51 23.11 21.89 9.73 +fiancée fiancé NOM f s 51.51 23.11 27.84 9.93 +fiancées fiancé NOM f p 51.51 23.11 0.68 0.88 +fiancés fiancer VER m p 13.30 4.80 4.10 0.74 par:pas; +fiant fier VER 14.26 8.99 0.28 0.81 par:pre; +fiança fiancer VER 13.30 4.80 0.01 0.14 ind:pas:3s; +fiançailles fiançailles NOM f p 5.63 6.96 5.63 6.96 +fiançais fiancer VER 13.30 4.80 0.01 0.00 ind:imp:1s; +fiançons fiancer VER 13.30 4.80 0.12 0.00 imp:pre:1p;ind:pre:1p; +fias fier VER 14.26 8.99 0.00 0.81 ind:pas:2s; +fiasco fiasco NOM m s 1.96 2.16 1.95 1.89 +fiascos fiasco NOM m p 1.96 2.16 0.01 0.27 +fiasque fiasque NOM f s 0.04 0.41 0.02 0.27 +fiasques fiasque NOM f p 0.04 0.41 0.01 0.14 +fiassent fier VER 14.26 8.99 0.00 0.07 sub:imp:3p; +fiat fiat NOM m s 0.02 0.07 0.02 0.07 +fibre fibre NOM f s 6.65 7.43 2.67 2.50 +fibres fibre NOM f p 6.65 7.43 3.97 4.93 +fibreuse fibreux ADJ f s 0.17 0.54 0.01 0.27 +fibreuses fibreux ADJ f p 0.17 0.54 0.00 0.07 +fibreux fibreux ADJ m 0.17 0.54 0.16 0.20 +fibrillation fibrillation NOM f s 0.69 0.00 0.69 0.00 +fibrille fibrille NOM f s 0.37 0.61 0.37 0.07 +fibrilles fibrille NOM f p 0.37 0.61 0.00 0.54 +fibrilleux fibrilleux ADJ m s 0.00 0.07 0.00 0.07 +fibrillé fibrillé NOM m s 0.01 0.00 0.01 0.00 +fibrine fibrine NOM f s 0.01 0.14 0.01 0.14 +fibrinogène fibrinogène NOM m s 0.03 0.00 0.03 0.00 +fibrociment fibrociment NOM m s 0.00 0.27 0.00 0.27 +fibromateuse fibromateux ADJ f s 0.00 0.14 0.00 0.14 +fibrome fibrome NOM m s 0.06 1.01 0.01 0.95 +fibromes fibrome NOM m p 0.06 1.01 0.05 0.07 +fibroscope fibroscope NOM m s 0.08 0.00 0.08 0.00 +fibroscopie fibroscopie NOM f s 0.05 0.00 0.05 0.00 +fibrose fibrose NOM f s 0.28 0.00 0.28 0.00 +fibrotoxine fibrotoxine NOM f s 0.00 0.14 0.00 0.14 +fibré fibré ADJ m s 0.00 0.20 0.00 0.20 +fibule fibule NOM f s 0.00 0.07 0.00 0.07 +fic fic NOM m s 0.01 0.00 0.01 0.00 +ficaires ficaire NOM f p 0.00 0.07 0.00 0.07 +ficela ficeler VER 0.86 6.76 0.00 0.41 ind:pas:3s; +ficelai ficeler VER 0.86 6.76 0.00 0.07 ind:pas:1s; +ficelaient ficeler VER 0.86 6.76 0.01 0.14 ind:imp:3p; +ficelait ficeler VER 0.86 6.76 0.00 0.47 ind:imp:3s; +ficelant ficeler VER 0.86 6.76 0.00 0.07 par:pre; +ficeler ficeler VER 0.86 6.76 0.17 0.68 inf; +ficelez ficeler VER 0.86 6.76 0.01 0.00 imp:pre:2p; +ficelle ficelle NOM f s 6.31 21.22 3.13 13.38 +ficellerait ficeler VER 0.86 6.76 0.00 0.07 cnd:pre:3s; +ficelles ficelle NOM f p 6.31 21.22 3.19 7.84 +ficelèrent ficeler VER 0.86 6.76 0.00 0.07 ind:pas:3p; +ficelé ficeler VER m s 0.86 6.76 0.36 2.03 par:pas; +ficelée ficeler VER f s 0.86 6.76 0.17 1.15 par:pas; +ficelées ficelé ADJ f p 0.61 3.18 0.04 0.47 +ficelés ficelé ADJ m p 0.61 3.18 0.11 1.15 +ficha ficher VER 97.84 29.32 0.01 0.54 ind:pas:3s; +fichage fichage NOM m s 0.01 0.00 0.01 0.00 +fichaient ficher VER 97.84 29.32 0.27 0.61 ind:imp:3p; +fichais ficher VER 97.84 29.32 1.67 0.81 ind:imp:1s;ind:imp:2s; +fichaise fichaise NOM f s 0.03 0.20 0.01 0.07 +fichaises fichaise NOM f p 0.03 0.20 0.02 0.14 +fichait ficher VER 97.84 29.32 2.31 3.38 ind:imp:3s; +fichant ficher VER 97.84 29.32 0.20 0.81 par:pre; +fiche ficher VER 97.84 29.32 60.95 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +fichent ficher VER 97.84 29.32 2.87 1.49 ind:pre:3p; +ficher ficher VER 97.84 29.32 1.90 1.42 inf; +fichera ficher VER 97.84 29.32 0.50 0.14 ind:fut:3s; +ficherai ficher VER 97.84 29.32 0.34 0.20 ind:fut:1s; +ficheraient ficher VER 97.84 29.32 0.21 0.00 cnd:pre:3p; +ficherais ficher VER 97.84 29.32 0.75 0.00 cnd:pre:1s;cnd:pre:2s; +ficherait ficher VER 97.84 29.32 0.21 0.20 cnd:pre:3s; +ficheras ficher VER 97.84 29.32 0.07 0.00 ind:fut:2s; +ficherons ficher VER 97.84 29.32 0.00 0.07 ind:fut:1p; +ficheront ficher VER 97.84 29.32 0.17 0.14 ind:fut:3p; +fiches ficher VER 97.84 29.32 6.86 1.22 ind:pre:2s; +fichez ficher VER 97.84 29.32 12.73 1.35 imp:pre:2p;ind:pre:2p; +fichier fichier NOM m s 11.10 2.91 5.42 1.89 +fichiers fichier NOM m p 11.10 2.91 5.69 1.01 +fichiez ficher VER 97.84 29.32 0.48 0.00 ind:imp:2p; +fichions ficher VER 97.84 29.32 0.00 0.07 ind:imp:1p; +fichons ficher VER 97.84 29.32 2.67 0.07 imp:pre:1p;ind:pre:1p; +fichât ficher VER 97.84 29.32 0.00 0.14 sub:imp:3s; +fichtre fichtre ONO 1.23 1.01 1.23 1.01 +fichtrement fichtrement ADV 0.27 0.47 0.27 0.47 +fiché ficher VER m s 97.84 29.32 1.99 2.16 par:pas; +fichu fichu ADJ m s 27.51 12.03 17.34 7.70 +fichée ficher VER f s 97.84 29.32 0.35 1.82 par:pas; +fichue fichu ADJ f s 27.51 12.03 6.34 3.04 +fichées ficher VER f p 97.84 29.32 0.14 1.22 par:pas; +fichues fichu ADJ f p 27.51 12.03 1.04 0.20 +fichés ficher VER m p 97.84 29.32 0.20 1.08 par:pas; +fichus fichu ADJ m p 27.51 12.03 2.79 1.08 +fictif fictif ADJ m s 1.99 2.84 0.94 1.22 +fictifs fictif ADJ m p 1.99 2.84 0.57 0.34 +fiction fiction NOM f s 6.46 5.14 6.25 4.32 +fictionnel fictionnel ADJ m s 0.02 0.00 0.02 0.00 +fictions fiction NOM f p 6.46 5.14 0.21 0.81 +fictive fictif ADJ f s 1.99 2.84 0.41 0.88 +fictivement fictivement ADV 0.00 0.20 0.00 0.20 +fictives fictif ADJ f p 1.99 2.84 0.06 0.41 +ficus ficus NOM m 0.17 0.20 0.17 0.20 +fidèle fidèle ADJ s 24.61 35.61 20.04 27.43 +fidèlement fidèlement ADV 1.12 4.53 1.12 4.53 +fidèles fidèle ADJ p 24.61 35.61 4.57 8.18 +fiduciaire fiduciaire ADJ s 0.17 0.68 0.13 0.68 +fiduciaires fiduciaire ADJ f p 0.17 0.68 0.04 0.00 +fiducie fiducie NOM f s 0.06 0.00 0.06 0.00 +fidéicommis fidéicommis NOM m 0.42 0.07 0.42 0.07 +fidéliser fidéliser VER 0.04 0.00 0.03 0.00 inf; +fidéliseras fidéliser VER 0.04 0.00 0.01 0.00 ind:fut:2s; +fidélité fidélité NOM f s 10.26 18.31 10.26 17.43 +fidélités fidélité NOM f p 10.26 18.31 0.00 0.88 +fie fier VER 14.26 8.99 4.10 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fief fief NOM m s 3.38 3.45 3.22 2.70 +fieffé fieffé ADJ m s 0.95 0.61 0.77 0.20 +fieffée fieffé ADJ f s 0.95 0.61 0.00 0.27 +fieffés fieffé ADJ m p 0.95 0.61 0.19 0.14 +fiefs fief NOM m p 3.38 3.45 0.16 0.74 +fiel fiel NOM m s 1.36 2.50 1.36 2.50 +field field NOM m s 0.47 0.00 0.47 0.00 +fielleuse fielleux ADJ f s 0.42 0.95 0.11 0.20 +fielleusement fielleusement ADV 0.00 0.07 0.00 0.07 +fielleuses fielleux ADJ f p 0.42 0.95 0.00 0.27 +fielleux fielleux ADJ m 0.42 0.95 0.31 0.47 +fient fier VER 14.26 8.99 0.18 0.00 ind:pre:3p; +fiente fiente NOM f s 0.79 2.70 0.72 1.96 +fientes fiente NOM f p 0.79 2.70 0.07 0.74 +fienteuse fienteux ADJ f s 0.00 0.14 0.00 0.07 +fienteux fienteux ADJ m p 0.00 0.14 0.00 0.07 +fienté fienter VER m s 0.20 0.20 0.00 0.14 par:pas; +fier_à_bras fier_à_bras NOM m 0.00 0.14 0.00 0.14 +fier fier ADJ m s 79.13 58.18 46.07 31.42 +fiera fier VER 14.26 8.99 0.11 0.00 ind:fut:3s; +fierai fier VER 14.26 8.99 0.02 0.00 ind:fut:1s; +fierais fier VER 14.26 8.99 0.29 0.07 cnd:pre:1s;cnd:pre:2s; +fieras fier VER 14.26 8.99 0.01 0.00 ind:fut:2s; +fiers_à_bras fiers_à_bras NOM m p 0.00 0.27 0.00 0.27 +fiers fier ADJ m p 79.13 58.18 12.36 8.38 +fierté fierté NOM f s 13.58 29.93 13.56 29.66 +fiertés fierté NOM f p 13.58 29.93 0.02 0.27 +fiesta fiesta NOM f s 2.14 2.43 2.07 1.96 +fiestas fiesta NOM f p 2.14 2.43 0.07 0.47 +fieu fieu NOM m s 0.00 0.07 0.00 0.07 +fieux fieux NOM m p 0.02 0.00 0.02 0.00 +fiez fier VER 14.26 8.99 1.58 0.41 imp:pre:2p;ind:pre:2p; +fifi fifi NOM m s 0.98 7.77 0.96 7.36 +fifille fifille NOM f s 0.65 1.35 0.65 1.35 +fifis fifi NOM m p 0.98 7.77 0.02 0.41 +fifre fifre NOM m s 0.10 2.09 0.07 1.22 +fifrelin fifrelin NOM m s 0.13 0.54 0.03 0.41 +fifrelins fifrelin NOM m p 0.13 0.54 0.10 0.14 +fifres fifre NOM m p 0.10 2.09 0.03 0.88 +fifties fifties NOM p 0.03 0.07 0.03 0.07 +fifty_fifty fifty_fifty ADV 0.66 0.14 0.66 0.14 +fifty fifty NOM m s 0.05 0.47 0.05 0.47 +figaro figaro NOM m s 0.00 1.42 0.00 1.35 +figaros figaro NOM m p 0.00 1.42 0.00 0.07 +fige figer VER 4.49 33.18 1.04 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +figea figer VER 4.49 33.18 0.00 2.97 ind:pas:3s; +figeaient figer VER 4.49 33.18 0.00 0.95 ind:imp:3p; +figeais figer VER 4.49 33.18 0.03 0.14 ind:imp:1s; +figeait figer VER 4.49 33.18 0.04 1.89 ind:imp:3s; +figeant figer VER 4.49 33.18 0.01 0.68 par:pre; +figent figer VER 4.49 33.18 0.17 0.34 ind:pre:3p; +figer figer VER 4.49 33.18 1.16 2.50 inf; +figera figer VER 4.49 33.18 0.04 0.14 ind:fut:3s; +figerai figer VER 4.49 33.18 0.07 0.07 ind:fut:1s; +figeraient figer VER 4.49 33.18 0.00 0.14 cnd:pre:3p; +figerait figer VER 4.49 33.18 0.00 0.27 cnd:pre:3s; +figez figer VER 4.49 33.18 0.05 0.00 imp:pre:2p;ind:pre:2p; +fignard fignard NOM m s 0.00 0.07 0.00 0.07 +fignola fignoler VER 0.48 3.85 0.00 0.27 ind:pas:3s; +fignolage fignolage NOM m s 0.11 0.41 0.11 0.20 +fignolages fignolage NOM m p 0.11 0.41 0.00 0.20 +fignolaient fignoler VER 0.48 3.85 0.00 0.07 ind:imp:3p; +fignolait fignoler VER 0.48 3.85 0.00 0.41 ind:imp:3s; +fignolant fignoler VER 0.48 3.85 0.00 0.61 par:pre; +fignole fignoler VER 0.48 3.85 0.20 0.27 ind:pre:1s;ind:pre:3s; +fignolent fignoler VER 0.48 3.85 0.00 0.14 ind:pre:3p; +fignoler fignoler VER 0.48 3.85 0.16 0.95 inf; +fignolerai fignoler VER 0.48 3.85 0.00 0.07 ind:fut:1s; +fignolerais fignoler VER 0.48 3.85 0.01 0.00 cnd:pre:1s; +fignolerait fignoler VER 0.48 3.85 0.00 0.07 cnd:pre:3s; +fignoleur fignoleur NOM m s 0.01 0.00 0.01 0.00 +fignolons fignoler VER 0.48 3.85 0.00 0.07 ind:pre:1p; +fignolé fignoler VER m s 0.48 3.85 0.09 0.61 par:pas; +fignolée fignoler VER f s 0.48 3.85 0.01 0.27 par:pas; +fignolés fignoler VER m p 0.48 3.85 0.01 0.07 par:pas; +figèrent figer VER 4.49 33.18 0.00 0.27 ind:pas:3p; +figé figer VER m s 4.49 33.18 1.02 9.32 par:pas; +figue figue NOM f s 7.38 3.58 3.44 1.28 +figée figer VER f s 4.49 33.18 0.49 5.00 par:pas; +figues figue NOM f p 7.38 3.58 3.94 2.30 +figées figé ADJ f p 0.94 11.82 0.05 0.88 +figuier figuier NOM m s 1.79 3.58 1.36 1.82 +figuiers figuier NOM m p 1.79 3.58 0.43 1.76 +figura figurer VER 14.41 57.23 0.07 0.41 ind:pas:3s; +figurai figurer VER 14.41 57.23 0.14 0.34 ind:pas:1s; +figuraient figurer VER 14.41 57.23 0.21 3.99 ind:imp:3p; +figurais figurer VER 14.41 57.23 0.03 1.96 ind:imp:1s;ind:imp:2s; +figurait figurer VER 14.41 57.23 0.81 7.97 ind:imp:3s; +figurant figurant NOM m s 2.99 5.07 0.68 1.62 +figurante figurant NOM f s 2.99 5.07 0.37 0.54 +figurantes figurant NOM f p 2.99 5.07 0.02 0.14 +figurants figurant NOM m p 2.99 5.07 1.93 2.77 +figuratif figuratif ADJ m s 0.20 0.68 0.20 0.27 +figuratifs figuratif ADJ m p 0.20 0.68 0.00 0.14 +figuration figuration NOM f s 0.41 2.57 0.40 1.96 +figurations figuration NOM f p 0.41 2.57 0.01 0.61 +figurative figuratif ADJ f s 0.20 0.68 0.01 0.14 +figurativement figurativement ADV 0.01 0.07 0.01 0.07 +figuratives figuratif ADJ f p 0.20 0.68 0.00 0.14 +figure figure NOM f s 25.18 95.34 22.49 77.70 +figurent figurer VER 14.41 57.23 0.56 4.46 ind:pre:3p; +figurer figurer VER 14.41 57.23 1.43 7.30 inf; +figurera figurer VER 14.41 57.23 0.42 0.34 ind:fut:3s; +figureraient figurer VER 14.41 57.23 0.01 0.27 cnd:pre:3p; +figurerait figurer VER 14.41 57.23 0.03 0.27 cnd:pre:3s; +figures figure NOM f p 25.18 95.34 2.69 17.64 +figurez figurer VER 14.41 57.23 3.06 6.15 imp:pre:2p;ind:pre:2p; +figuriez figurer VER 14.41 57.23 0.03 0.07 ind:imp:2p; +figurine figurine NOM f s 2.18 2.43 1.19 0.88 +figurines figurine NOM f p 2.18 2.43 0.99 1.55 +figurions figurer VER 14.41 57.23 0.00 0.14 ind:imp:1p; +figurât figurer VER 14.41 57.23 0.00 0.34 sub:imp:3s; +figurèrent figurer VER 14.41 57.23 0.00 0.07 ind:pas:3p; +figuré figuré ADJ m s 0.57 1.08 0.56 0.95 +figurée figuré ADJ f s 0.57 1.08 0.02 0.00 +figurées figurer VER f p 14.41 57.23 0.00 0.47 par:pas; +figurés figurer VER m p 14.41 57.23 0.00 0.74 par:pas; +figés figer VER m p 4.49 33.18 0.36 3.92 par:pas; +fil_à_fil fil_à_fil NOM m 0.00 0.34 0.00 0.34 +fil fil NOM m s 64.92 99.73 51.83 75.95 +fila filer VER 100.96 88.51 0.41 4.93 ind:pas:3s; +filage filage NOM m s 0.06 0.14 0.06 0.14 +filai filer VER 100.96 88.51 0.00 0.61 ind:pas:1s; +filaient filer VER 100.96 88.51 0.34 3.38 ind:imp:3p; +filaire filaire ADJ f s 0.01 0.00 0.01 0.00 +filais filer VER 100.96 88.51 0.54 1.15 ind:imp:1s;ind:imp:2s; +filait filer VER 100.96 88.51 1.39 10.27 ind:imp:3s; +filament filament NOM m s 0.40 2.16 0.29 0.27 +filamenteux filamenteux ADJ m 0.01 0.07 0.01 0.07 +filaments filament NOM m p 0.40 2.16 0.11 1.89 +filandres filandre NOM f p 0.00 0.07 0.00 0.07 +filandreuse filandreux ADJ f s 0.07 1.62 0.00 0.54 +filandreuses filandreux ADJ f p 0.07 1.62 0.03 0.61 +filandreux filandreux ADJ m 0.07 1.62 0.05 0.47 +filant filer VER 100.96 88.51 0.26 3.38 par:pre; +filante filant ADJ f s 1.64 3.38 0.60 1.28 +filantes filant ADJ f p 1.64 3.38 0.82 1.22 +filaos filao NOM m p 0.00 0.07 0.00 0.07 +filariose filariose NOM f s 0.05 0.00 0.05 0.00 +filasse filasse NOM f s 0.06 0.47 0.02 0.34 +filasses filasse NOM f p 0.06 0.47 0.04 0.14 +filateur filateur NOM m s 0.00 0.27 0.00 0.07 +filateurs filateur NOM m p 0.00 0.27 0.00 0.20 +filature filature NOM f s 2.10 1.42 1.85 0.88 +filatures filature NOM f p 2.10 1.42 0.24 0.54 +file_la_moi file_la_moi NOM f s 0.01 0.00 0.01 0.00 +file filer VER 100.96 88.51 36.47 17.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +filent filer VER 100.96 88.51 2.21 3.18 ind:pre:3p; +filer filer VER 100.96 88.51 25.85 21.76 inf; +filera filer VER 100.96 88.51 1.03 0.61 ind:fut:3s; +filerai filer VER 100.96 88.51 0.71 0.68 ind:fut:1s; +fileraient filer VER 100.96 88.51 0.03 0.07 cnd:pre:3p; +filerais filer VER 100.96 88.51 0.35 0.20 cnd:pre:1s;cnd:pre:2s; +filerait filer VER 100.96 88.51 0.27 0.34 cnd:pre:3s; +fileras filer VER 100.96 88.51 0.22 0.14 ind:fut:2s; +filerez filer VER 100.96 88.51 0.16 0.14 ind:fut:2p; +fileriez filer VER 100.96 88.51 0.03 0.00 cnd:pre:2p; +filerons filer VER 100.96 88.51 0.21 0.07 ind:fut:1p; +fileront filer VER 100.96 88.51 0.11 0.20 ind:fut:3p; +files filer VER 100.96 88.51 4.95 1.89 ind:pre:1p;ind:pre:2s;sub:pre:2s; +filet filet NOM m s 15.44 41.49 10.99 26.35 +filetage filetage NOM m s 0.09 0.07 0.09 0.07 +filets filet NOM m p 15.44 41.49 4.45 15.14 +fileté fileté ADJ m s 0.03 0.34 0.03 0.07 +filetée fileter VER f s 0.01 0.14 0.01 0.07 par:pas; +fileur fileur NOM m s 0.06 0.14 0.04 0.07 +fileuse fileur NOM f s 0.06 0.14 0.01 0.07 +filez filer VER 100.96 88.51 7.90 1.49 imp:pre:2p;ind:pre:2p; +filial filial ADJ m s 0.63 3.85 0.14 1.76 +filiale filiale NOM f s 1.33 0.81 0.84 0.54 +filialement filialement ADV 0.00 0.20 0.00 0.20 +filiales filiale NOM f p 1.33 0.81 0.48 0.27 +filiation filiation NOM f s 0.23 2.36 0.23 1.89 +filiations filiation NOM f p 0.23 2.36 0.00 0.47 +filiaux filial ADJ m p 0.63 3.85 0.00 0.34 +filiez filer VER 100.96 88.51 0.17 0.14 ind:imp:2p; +filiforme filiforme ADJ s 0.03 1.55 0.03 1.01 +filiformes filiforme ADJ p 0.03 1.55 0.00 0.54 +filigrane filigrane NOM m s 0.45 2.97 0.43 2.30 +filigranes filigrane NOM m p 0.45 2.97 0.02 0.68 +filigranés filigraner VER m p 0.00 0.07 0.00 0.07 par:pas; +filin filin NOM m s 0.44 2.64 0.25 1.42 +filins filin NOM m p 0.44 2.64 0.19 1.22 +filions filer VER 100.96 88.51 0.01 0.07 ind:imp:1p; +filioque filioque ADJ m s 0.00 0.54 0.00 0.54 +filière filière NOM f s 0.78 3.18 0.73 2.70 +filières filière NOM f p 0.78 3.18 0.05 0.47 +fillasses fillasse NOM f p 0.00 0.07 0.00 0.07 +fille_mère fille_mère NOM f s 0.39 0.41 0.39 0.41 +fille fille NOM f s 841.56 592.23 627.59 417.03 +filles fille NOM f p 841.56 592.23 213.97 175.20 +fillette fillette NOM f s 13.26 22.97 11.59 16.69 +fillettes fillette NOM f p 13.26 22.97 1.67 6.28 +filleul filleul NOM m s 2.72 1.82 2.42 1.22 +filleule filleul NOM f s 2.72 1.82 0.29 0.47 +filleuls filleul NOM m p 2.72 1.82 0.01 0.14 +fillér fillér NOM m s 0.01 0.00 0.01 0.00 +film_livre film_livre NOM m s 0.00 0.07 0.00 0.07 +film film NOM m s 252.66 74.12 195.10 49.53 +filma filmer VER 40.08 3.45 0.27 0.00 ind:pas:3s; +filmage filmage NOM m s 0.02 0.00 0.02 0.00 +filmaient filmer VER 40.08 3.45 0.44 0.07 ind:imp:3p; +filmais filmer VER 40.08 3.45 0.51 0.00 ind:imp:1s;ind:imp:2s; +filmait filmer VER 40.08 3.45 0.80 0.14 ind:imp:3s; +filmant filmer VER 40.08 3.45 0.42 0.14 par:pre; +filme filmer VER 40.08 3.45 7.17 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +filment filmer VER 40.08 3.45 0.56 0.14 ind:pre:3p; +filmer filmer VER 40.08 3.45 12.89 1.28 inf; +filmera filmer VER 40.08 3.45 0.26 0.00 ind:fut:3s; +filmerai filmer VER 40.08 3.45 0.20 0.00 ind:fut:1s; +filmerais filmer VER 40.08 3.45 0.20 0.00 cnd:pre:2s; +filmerait filmer VER 40.08 3.45 0.01 0.00 cnd:pre:3s; +filmerez filmer VER 40.08 3.45 0.11 0.00 ind:fut:2p; +filmeront filmer VER 40.08 3.45 0.16 0.00 ind:fut:3p; +filmes filmer VER 40.08 3.45 1.93 0.07 ind:pre:2s; +filmez filmer VER 40.08 3.45 1.64 0.07 imp:pre:2p;ind:pre:2p; +filmiez filmer VER 40.08 3.45 0.03 0.00 ind:imp:2p;sub:pre:2p; +filmions filmer VER 40.08 3.45 0.16 0.00 ind:imp:1p; +filmique filmique ADJ s 0.15 0.00 0.15 0.00 +filmographie filmographie NOM f s 0.03 0.00 0.03 0.00 +filmons filmer VER 40.08 3.45 0.53 0.00 imp:pre:1p;ind:pre:1p; +filmothèque filmothèque NOM f s 0.01 0.00 0.01 0.00 +films_annonce films_annonce NOM m p 0.00 0.07 0.00 0.07 +films film NOM m p 252.66 74.12 57.56 24.59 +filmé filmer VER m s 40.08 3.45 7.96 0.61 par:pas; +filmée filmer VER f s 40.08 3.45 1.45 0.34 par:pas; +filmées filmer VER f p 40.08 3.45 0.51 0.20 par:pas; +filmés filmer VER m p 40.08 3.45 1.88 0.07 par:pas; +filochard filochard NOM m s 0.05 0.20 0.05 0.20 +filoche filoche NOM f s 0.14 0.47 0.14 0.47 +filocher filocher VER 0.02 0.34 0.01 0.20 inf; +filochez filocher VER 0.02 0.34 0.01 0.00 imp:pre:2p; +filoché filocher VER m s 0.02 0.34 0.00 0.14 par:pas; +filoguidé filoguidé ADJ m s 0.01 0.00 0.01 0.00 +filâmes filer VER 100.96 88.51 0.01 0.07 ind:pas:1p; +filon filon NOM m s 5.61 2.64 1.77 1.82 +filons filon NOM m p 5.61 2.64 3.83 0.81 +filoselle filoselle NOM f s 0.00 0.34 0.00 0.34 +filât filer VER 100.96 88.51 0.00 0.20 sub:imp:3s; +filou filou NOM m s 2.48 1.28 1.79 1.08 +filous filou NOM m p 2.48 1.28 0.68 0.20 +filouter filouter VER 0.53 0.20 0.19 0.07 inf; +filouterie filouterie NOM f s 0.17 0.34 0.14 0.20 +filouteries filouterie NOM f p 0.17 0.34 0.02 0.14 +filoutes filouter VER 0.53 0.20 0.00 0.07 ind:pre:2s; +filouté filouter VER m s 0.53 0.20 0.03 0.00 par:pas; +filoutés filouter VER m p 0.53 0.20 0.31 0.07 par:pas; +fils fils NOM m 480.15 247.64 480.15 247.64 +filèrent filer VER 100.96 88.51 0.03 0.74 ind:pas:3p; +filtra filtrer VER 2.58 13.58 0.00 0.27 ind:pas:3s; +filtrage filtrage NOM m s 0.26 0.07 0.26 0.07 +filtraient filtrer VER 2.58 13.58 0.00 1.15 ind:imp:3p; +filtrais filtrer VER 2.58 13.58 0.01 0.00 ind:imp:1s; +filtrait filtrer VER 2.58 13.58 0.04 2.64 ind:imp:3s; +filtrant filtrant ADJ m s 0.20 0.41 0.19 0.27 +filtrantes filtrant ADJ f p 0.20 0.41 0.00 0.07 +filtrants filtrant ADJ m p 0.20 0.41 0.01 0.07 +filtration filtration NOM f s 0.20 0.14 0.20 0.07 +filtrations filtration NOM f p 0.20 0.14 0.00 0.07 +filtre filtre NOM m s 4.54 2.64 3.52 2.16 +filtrent filtrer VER 2.58 13.58 0.08 0.20 ind:pre:3p; +filtrer filtrer VER 2.58 13.58 1.01 3.72 inf; +filtrerait filtrer VER 2.58 13.58 0.01 0.14 cnd:pre:3s; +filtres filtre NOM m p 4.54 2.64 1.02 0.47 +filtrez filtrer VER 2.58 13.58 0.23 0.00 imp:pre:2p;ind:pre:2p; +filtrèrent filtrer VER 2.58 13.58 0.00 0.14 ind:pas:3p; +filtré filtrer VER m s 2.58 13.58 0.27 0.95 par:pas; +filtrée filtrer VER f s 2.58 13.58 0.05 0.47 par:pas; +filtrées filtrer VER f p 2.58 13.58 0.00 0.34 par:pas; +filtrés filtrer VER m p 2.58 13.58 0.01 0.07 par:pas; +filé filer VER m s 100.96 88.51 15.18 13.51 par:pas; +filée filer VER f s 100.96 88.51 0.36 0.41 par:pas; +filées filer VER f p 100.96 88.51 0.07 0.14 par:pas; +filés filer VER m p 100.96 88.51 0.34 0.54 par:pas; +fin fin NOM s 213.37 314.53 207.34 303.31 +finîmes finir VER 557.61 417.97 0.14 0.41 ind:pas:1p; +finît finir VER 557.61 417.97 0.00 0.68 sub:imp:3s; +finage finage NOM m s 0.00 0.07 0.00 0.07 +final final ADJ m s 18.20 19.39 9.73 11.55 +finale final ADJ f s 18.20 19.39 7.67 7.50 +finalement finalement ADV 45.89 58.92 45.89 58.92 +finales finale NOM p 5.45 2.84 0.58 0.34 +finalisation finalisation NOM f s 0.07 0.00 0.07 0.00 +finaliser finaliser VER 0.64 0.00 0.25 0.00 inf; +finaliste finaliste NOM s 0.78 0.07 0.19 0.07 +finalistes finaliste NOM p 0.78 0.07 0.59 0.00 +finalisé finaliser VER m s 0.64 0.00 0.39 0.00 par:pas; +finalisées finaliser VER f p 0.64 0.00 0.01 0.00 par:pas; +finalité finalité NOM f s 0.46 0.41 0.46 0.34 +finalités finalité NOM f p 0.46 0.41 0.00 0.07 +finals final NOM m p 3.76 1.69 0.02 0.07 +finance finance NOM f s 8.03 8.78 2.13 1.76 +financement financement NOM m s 2.90 0.47 2.55 0.47 +financements financement NOM m p 2.90 0.47 0.34 0.00 +financent financer VER 9.92 2.70 0.46 0.07 ind:pre:3p; +financer financer VER 9.92 2.70 3.96 1.08 inf; +financera financer VER 9.92 2.70 0.11 0.00 ind:fut:3s; +financerai financer VER 9.92 2.70 0.32 0.00 ind:fut:1s; +financeraient financer VER 9.92 2.70 0.01 0.00 cnd:pre:3p; +financerait financer VER 9.92 2.70 0.12 0.07 cnd:pre:3s; +financeras financer VER 9.92 2.70 0.11 0.00 ind:fut:2s; +financerons financer VER 9.92 2.70 0.02 0.00 ind:fut:1p; +financeront financer VER 9.92 2.70 0.16 0.07 ind:fut:3p; +finances finance NOM f p 8.03 8.78 5.89 7.03 +financez financer VER 9.92 2.70 0.14 0.20 imp:pre:2p;ind:pre:2p; +financier financier ADJ m s 11.02 9.32 4.00 2.30 +financiers financier ADJ m p 11.02 9.32 2.17 2.36 +financiez financer VER 9.92 2.70 0.01 0.00 ind:imp:2p; +financière financier ADJ f s 11.02 9.32 3.49 2.43 +financièrement financièrement ADV 2.21 0.47 2.21 0.47 +financières financier ADJ f p 11.02 9.32 1.36 2.23 +financé financer VER m s 9.92 2.70 1.70 0.34 par:pas; +financée financer VER f s 9.92 2.70 0.64 0.14 par:pas; +financés financer VER m p 9.92 2.70 0.29 0.00 par:pas; +finançai financer VER 9.92 2.70 0.00 0.07 ind:pas:1s; +finançaient financer VER 9.92 2.70 0.03 0.00 ind:imp:3p; +finançait financer VER 9.92 2.70 0.19 0.27 ind:imp:3s; +finançant financer VER 9.92 2.70 0.03 0.14 par:pre; +finançons financer VER 9.92 2.70 0.03 0.00 imp:pre:1p;ind:pre:1p; +finassait finasser VER 0.15 0.41 0.00 0.07 ind:imp:3s; +finasse finasser VER 0.15 0.41 0.00 0.20 ind:pre:3s; +finasser finasser VER 0.15 0.41 0.06 0.14 inf; +finasserie finasserie NOM f s 0.01 0.20 0.00 0.07 +finasseries finasserie NOM f p 0.01 0.20 0.01 0.14 +finasses finasser VER 0.15 0.41 0.01 0.00 ind:pre:2s; +finassons finasser VER 0.15 0.41 0.01 0.00 imp:pre:1p; +finassé finasser VER m s 0.15 0.41 0.07 0.00 par:pas; +finaud finaud ADJ m s 0.34 1.28 0.18 1.01 +finaude finaud ADJ f s 0.34 1.28 0.16 0.20 +finauds finaud NOM m p 0.22 0.34 0.03 0.07 +finaux final ADJ m p 18.20 19.39 0.29 0.00 +fine fin ADJ f s 26.95 97.97 10.16 33.99 +finement finement ADV 1.03 5.88 1.03 5.88 +fines fin ADJ f p 26.95 97.97 2.35 19.05 +finesse finesse NOM f s 2.38 9.32 2.21 7.84 +finesses finesse NOM f p 2.38 9.32 0.17 1.49 +finet finet ADJ m s 0.00 0.27 0.00 0.27 +finette finette NOM f s 0.00 0.68 0.00 0.68 +fini finir VER m s 557.61 417.97 292.55 149.26 par:pas; +finie finir VER f s 557.61 417.97 26.99 12.23 par:pas; +finies finir VER f p 557.61 417.97 3.04 2.57 par:pas; +finir finir VER 557.61 417.97 96.48 68.92 inf; +finira finir VER 557.61 417.97 20.35 8.99 ind:fut:3s; +finirai finir VER 557.61 417.97 5.65 1.89 ind:fut:1s; +finiraient finir VER 557.61 417.97 0.34 1.76 cnd:pre:3p; +finirais finir VER 557.61 417.97 2.05 2.30 cnd:pre:1s;cnd:pre:2s; +finirait finir VER 557.61 417.97 4.51 11.28 cnd:pre:3s; +finiras finir VER 557.61 417.97 7.36 1.96 ind:fut:2s; +finirent finir VER 557.61 417.97 0.27 2.30 ind:pas:3p; +finirez finir VER 557.61 417.97 3.10 0.95 ind:fut:2p; +finiriez finir VER 557.61 417.97 0.36 0.14 cnd:pre:2p; +finirions finir VER 557.61 417.97 0.34 0.54 cnd:pre:1p; +finirons finir VER 557.61 417.97 1.63 1.08 ind:fut:1p; +finiront finir VER 557.61 417.97 3.31 2.09 ind:fut:3p; +finis finir VER m p 557.61 417.97 21.82 11.28 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +finish finish NOM m s 0.32 0.61 0.32 0.61 +finissaient finir VER 557.61 417.97 0.44 8.38 ind:imp:3p; +finissais finir VER 557.61 417.97 1.06 3.38 ind:imp:1s;ind:imp:2s; +finissait finir VER 557.61 417.97 2.68 30.00 ind:imp:3s; +finissant finir VER 557.61 417.97 0.48 3.85 par:pre; +finissante finissant ADJ f s 0.22 2.57 0.12 0.54 +finissantes finissant ADJ f p 0.22 2.57 0.00 0.14 +finissants finissant ADJ m p 0.22 2.57 0.07 0.07 +finisse finir VER 557.61 417.97 9.34 6.49 sub:pre:1s;sub:pre:3s; +finissent finir VER 557.61 417.97 8.49 10.41 ind:pre:3p; +finisses finir VER 557.61 417.97 0.63 0.14 sub:pre:2s; +finisseur finisseur NOM m s 0.03 0.00 0.02 0.00 +finisseuse finisseur NOM f s 0.03 0.00 0.01 0.00 +finissez finir VER 557.61 417.97 5.80 1.15 imp:pre:2p;ind:pre:2p; +finissiez finir VER 557.61 417.97 0.41 0.20 ind:imp:2p; +finissions finir VER 557.61 417.97 0.20 1.08 ind:imp:1p; +finissons finir VER 557.61 417.97 7.82 1.82 imp:pre:1p;ind:pre:1p; +finit finir VER 557.61 417.97 29.97 70.47 ind:pre:3s;ind:pas:3s; +finition finition NOM f s 1.12 1.28 0.61 1.01 +finitions finition NOM f p 1.12 1.28 0.50 0.27 +finitude finitude NOM f s 0.00 0.20 0.00 0.20 +finlandais finlandais ADJ m 1.35 0.61 0.76 0.27 +finlandaise finlandais ADJ f s 1.35 0.61 0.56 0.27 +finlandaises finlandais ADJ f p 1.35 0.61 0.04 0.07 +finlandisation finlandisation NOM f s 0.00 0.07 0.00 0.07 +finnois finnois NOM m 0.54 0.07 0.54 0.07 +fins fin NOM p 213.37 314.53 6.03 11.22 +fiole fiole NOM f s 1.93 5.14 1.50 3.11 +fioles fiole NOM f p 1.93 5.14 0.42 2.03 +fion fion NOM m s 1.77 2.64 1.75 2.57 +fions fier VER 14.26 8.99 0.25 0.00 imp:pre:1p;ind:pre:1p; +fiord fiord NOM m s 0.00 0.07 0.00 0.07 +fioriture fioriture NOM f s 0.25 2.09 0.01 0.74 +fioritures fioriture NOM f p 0.25 2.09 0.24 1.35 +fioul fioul NOM m s 0.06 0.00 0.06 0.00 +firent faire VER 8813.53 5328.99 3.00 37.16 ind:pas:3p; +firmament firmament NOM m s 1.57 2.09 1.57 2.03 +firmaments firmament NOM m p 1.57 2.09 0.00 0.07 +firman firman NOM m s 0.04 0.20 0.04 0.14 +firmans firman NOM m p 0.04 0.20 0.00 0.07 +firme firme NOM f s 4.32 2.70 4.07 1.96 +firmes firme NOM f p 4.32 2.70 0.25 0.74 +fis faire VER 8813.53 5328.99 4.35 40.74 ind:pas:1s;ind:pas:2s; +fisc fisc NOM m s 2.53 1.28 2.53 1.28 +fiscal fiscal ADJ m s 4.54 1.22 1.41 0.14 +fiscale fiscal ADJ f s 4.54 1.22 1.97 0.47 +fiscalement fiscalement ADV 0.01 0.07 0.01 0.07 +fiscales fiscal ADJ f p 4.54 1.22 0.41 0.27 +fiscaliste fiscaliste NOM s 0.08 0.00 0.08 0.00 +fiscalité fiscalité NOM f s 0.09 0.07 0.09 0.07 +fiscaux fiscal ADJ m p 4.54 1.22 0.76 0.34 +fissa fissa ADV 1.84 3.24 1.84 3.24 +fisse faire VER 8813.53 5328.99 0.54 0.74 sub:imp:1s; +fissent faire VER 8813.53 5328.99 0.00 2.16 sub:imp:3p; +fissible fissible ADJ s 0.07 0.00 0.04 0.00 +fissibles fissible ADJ p 0.07 0.00 0.04 0.00 +fissiez faire VER 8813.53 5328.99 0.01 0.20 sub:imp:2p; +fission fission NOM f s 0.52 0.20 0.52 0.20 +fissionner fissionner VER 0.02 0.00 0.01 0.00 inf; +fissionné fissionner VER m s 0.02 0.00 0.01 0.00 par:pas; +fissions faire VER 8813.53 5328.99 0.00 0.14 sub:imp:1p; +fissurait fissurer VER 0.69 1.76 0.01 0.07 ind:imp:3s; +fissurant fissurer VER 0.69 1.76 0.01 0.07 par:pre; +fissure fissure NOM f s 2.74 8.11 1.25 4.66 +fissurent fissurer VER 0.69 1.76 0.00 0.07 ind:pre:3p; +fissurer fissurer VER 0.69 1.76 0.06 0.14 inf; +fissures fissure NOM f p 2.74 8.11 1.49 3.45 +fissuré fissurer VER m s 0.69 1.76 0.24 0.68 par:pas; +fissurée fissurer VER f s 0.69 1.76 0.05 0.27 par:pas; +fissurées fissurer VER f p 0.69 1.76 0.05 0.07 par:pas; +fissurés fissurer VER m p 0.69 1.76 0.14 0.07 par:pas; +fiston fiston NOM m s 30.43 2.97 30.38 2.84 +fistons fiston NOM m p 30.43 2.97 0.05 0.14 +fistule fistule NOM f s 0.06 0.00 0.04 0.00 +fistules fistule NOM f p 0.06 0.00 0.02 0.00 +fit faire VER 8813.53 5328.99 20.63 469.66 ind:pas:3s; +fière fier ADJ f s 79.13 58.18 19.68 16.69 +fièrement fièrement ADV 1.45 7.64 1.45 7.64 +fières fier ADJ f p 79.13 58.18 1.02 1.69 +fièvre fièvre NOM f s 25.00 42.64 24.23 38.58 +fièvres fièvre NOM f p 25.00 42.64 0.77 4.05 +fitness fitness NOM m 0.39 0.00 0.39 0.00 +fitzgéraldiennes fitzgéraldien ADJ f p 0.00 0.07 0.00 0.07 +fié fier VER m s 14.26 8.99 0.04 0.34 par:pas; +fiée fier VER f s 14.26 8.99 0.41 0.00 par:pas; +fiérot fiérot NOM m s 0.01 0.07 0.01 0.07 +fiérote fiérot ADJ f s 0.00 0.41 0.00 0.14 +fiérots fiérot ADJ m p 0.00 0.41 0.00 0.07 +fiés fier VER m p 14.26 8.99 0.03 0.00 par:pas; +fiévreuse fiévreux ADJ f s 1.18 11.01 0.10 2.64 +fiévreusement fiévreusement ADV 0.03 2.70 0.03 2.70 +fiévreuses fiévreux ADJ f p 1.18 11.01 0.12 1.28 +fiévreux fiévreux ADJ m 1.18 11.01 0.95 7.09 +five_o_clock five_o_clock NOM m 0.01 0.14 0.01 0.14 +fivete fivete NOM f s 0.00 0.20 0.00 0.20 +fixa fixer VER 32.73 140.95 0.27 10.47 ind:pas:3s; +fixage fixage NOM m s 0.00 0.14 0.00 0.14 +fixai fixer VER 32.73 140.95 0.10 1.62 ind:pas:1s; +fixaient fixer VER 32.73 140.95 0.40 3.72 ind:imp:3p; +fixais fixer VER 32.73 140.95 0.28 1.62 ind:imp:1s;ind:imp:2s; +fixait fixer VER 32.73 140.95 0.95 17.50 ind:imp:3s; +fixant fixer VER 32.73 140.95 0.54 12.84 par:pre; +fixateur fixateur NOM m s 0.05 0.00 0.05 0.00 +fixatif fixatif NOM m s 0.00 0.07 0.00 0.07 +fixation fixation NOM f s 1.94 1.96 1.47 1.89 +fixations fixation NOM f p 1.94 1.96 0.47 0.07 +fixe_chaussette fixe_chaussette NOM f p 0.13 0.20 0.13 0.20 +fixe fixe ADJ s 11.12 39.53 9.83 27.97 +fixement fixement ADV 1.89 8.92 1.89 8.92 +fixent fixer VER 32.73 140.95 0.76 2.09 ind:pre:3p; +fixer fixer VER 32.73 140.95 7.04 24.80 inf; +fixera fixer VER 32.73 140.95 0.33 0.41 ind:fut:3s; +fixerai fixer VER 32.73 140.95 0.05 0.14 ind:fut:1s; +fixeraient fixer VER 32.73 140.95 0.01 0.14 cnd:pre:3p; +fixerais fixer VER 32.73 140.95 0.12 0.00 cnd:pre:1s; +fixerait fixer VER 32.73 140.95 0.00 0.54 cnd:pre:3s; +fixeras fixer VER 32.73 140.95 0.11 0.00 ind:fut:2s; +fixerez fixer VER 32.73 140.95 0.04 0.07 ind:fut:2p; +fixeriez fixer VER 32.73 140.95 0.00 0.14 cnd:pre:2p; +fixerons fixer VER 32.73 140.95 0.22 0.07 ind:fut:1p; +fixeront fixer VER 32.73 140.95 0.03 0.00 ind:fut:3p; +fixes fixer VER 32.73 140.95 1.77 0.07 ind:pre:2s; +fixette fixette NOM f s 0.24 0.07 0.24 0.07 +fixez fixer VER 32.73 140.95 1.98 0.27 imp:pre:2p;ind:pre:2p; +fixiez fixer VER 32.73 140.95 0.03 0.00 ind:imp:2p; +fixing fixing NOM m s 0.08 0.00 0.08 0.00 +fixions fixer VER 32.73 140.95 0.00 0.14 ind:imp:1p; +fixité fixité NOM f s 0.14 4.86 0.14 4.86 +fixâmes fixer VER 32.73 140.95 0.00 0.07 ind:pas:1p; +fixons fixer VER 32.73 140.95 0.47 0.20 imp:pre:1p;ind:pre:1p; +fixât fixer VER 32.73 140.95 0.00 0.14 sub:imp:3s; +fixèrent fixer VER 32.73 140.95 0.10 1.28 ind:pas:3p; +fixé fixer VER m s 32.73 140.95 6.34 25.14 par:pas; +fixée fixer VER f s 32.73 140.95 2.47 7.70 par:pas; +fixées fixer VER f p 32.73 140.95 0.34 2.97 par:pas; +fixés fixer VER m p 32.73 140.95 1.84 14.19 par:pas; +fjord fjord NOM m s 1.07 0.68 0.96 0.27 +fjords fjord NOM m p 1.07 0.68 0.11 0.41 +flûta flûter VER 0.14 0.20 0.00 0.07 ind:pas:3s; +flûte flûte NOM f s 10.13 10.61 9.11 8.92 +flûter flûter VER 0.14 0.20 0.14 0.07 inf; +flûtes flûte NOM f p 10.13 10.61 1.02 1.69 +flûtiau flûtiau NOM m s 0.10 0.07 0.10 0.07 +flûtiste flûtiste NOM s 0.19 0.34 0.16 0.34 +flûtistes flûtiste NOM p 0.19 0.34 0.03 0.00 +flûté flûté ADJ m s 0.01 0.81 0.00 0.34 +flûtée flûté ADJ f s 0.01 0.81 0.01 0.41 +flûtés flûté ADJ m p 0.01 0.81 0.00 0.07 +fla fla NOM m 0.03 0.00 0.03 0.00 +flac flac ONO 0.01 1.08 0.01 1.08 +flaccide flaccide ADJ s 0.01 0.07 0.01 0.07 +flaccidité flaccidité NOM f s 0.01 0.07 0.01 0.07 +flache flache NOM f s 0.00 0.27 0.00 0.07 +flaches flache NOM f p 0.00 0.27 0.00 0.20 +flacon flacon NOM m s 4.93 19.46 4.12 11.82 +flacons flacon NOM m p 4.93 19.46 0.81 7.64 +flafla flafla NOM m s 0.00 0.20 0.00 0.20 +flag flag NOM m 0.57 0.41 0.57 0.41 +flagada flagada ADJ 0.06 0.14 0.06 0.14 +flagella flageller VER 0.82 1.89 0.00 0.14 ind:pas:3s; +flagellaient flageller VER 0.82 1.89 0.10 0.07 ind:imp:3p; +flagellait flageller VER 0.82 1.89 0.01 0.14 ind:imp:3s; +flagellant flageller VER 0.82 1.89 0.10 0.00 par:pre; +flagellants flagellant NOM m p 0.11 0.07 0.10 0.07 +flagellateur flagellateur NOM m s 0.01 0.00 0.01 0.00 +flagellation flagellation NOM f s 0.47 0.81 0.44 0.61 +flagellations flagellation NOM f p 0.47 0.81 0.02 0.20 +flagelle flageller VER 0.82 1.89 0.03 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flagellent flageller VER 0.82 1.89 0.11 0.20 ind:pre:3p; +flageller flageller VER 0.82 1.89 0.17 0.41 inf; +flagellerez flageller VER 0.82 1.89 0.14 0.00 ind:fut:2p; +flagelleront flageller VER 0.82 1.89 0.14 0.00 ind:fut:3p; +flagellé flagellé ADJ m s 0.28 0.27 0.27 0.14 +flagellée flageller VER f s 0.82 1.89 0.01 0.27 par:pas; +flagellées flageller VER f p 0.82 1.89 0.01 0.07 par:pas; +flagellés flageller VER m p 0.82 1.89 0.01 0.14 par:pas; +flageola flageoler VER 0.13 2.16 0.00 0.07 ind:pas:3s; +flageolai flageoler VER 0.13 2.16 0.00 0.07 ind:pas:1s; +flageolaient flageoler VER 0.13 2.16 0.00 0.20 ind:imp:3p; +flageolait flageoler VER 0.13 2.16 0.00 0.20 ind:imp:3s; +flageolant flageoler VER 0.13 2.16 0.01 0.54 par:pre; +flageolante flageolant ADJ f s 0.04 1.35 0.00 0.20 +flageolantes flageolant ADJ f p 0.04 1.35 0.03 0.81 +flageolants flageolant ADJ m p 0.04 1.35 0.00 0.07 +flageole flageoler VER 0.13 2.16 0.00 0.27 ind:pre:1s;ind:pre:3s; +flageolent flageoler VER 0.13 2.16 0.12 0.34 ind:pre:3p; +flageoler flageoler VER 0.13 2.16 0.00 0.34 inf; +flageoleront flageoler VER 0.13 2.16 0.00 0.07 ind:fut:3p; +flageolet flageolet NOM m s 0.51 1.49 0.27 0.34 +flageolets flageolet NOM m p 0.51 1.49 0.24 1.15 +flageolèrent flageoler VER 0.13 2.16 0.00 0.07 ind:pas:3p; +flagornait flagorner VER 0.01 0.20 0.00 0.07 ind:imp:3s; +flagornent flagorner VER 0.01 0.20 0.01 0.07 ind:pre:3p; +flagorner flagorner VER 0.01 0.20 0.00 0.07 inf; +flagornerie flagornerie NOM f s 0.07 0.68 0.04 0.54 +flagorneries flagornerie NOM f p 0.07 0.68 0.04 0.14 +flagorneur flagorneur NOM m s 0.33 0.07 0.14 0.00 +flagorneurs flagorneur NOM m p 0.33 0.07 0.19 0.07 +flagorneuse flagorneur ADJ f s 0.02 0.07 0.02 0.07 +flagrance flagrance NOM f s 0.01 0.00 0.01 0.00 +flagrant flagrant ADJ m s 3.89 7.36 3.01 5.20 +flagrante flagrant ADJ f s 3.89 7.36 0.70 1.76 +flagrantes flagrant ADJ f p 3.89 7.36 0.14 0.14 +flagrants flagrant ADJ m p 3.89 7.36 0.04 0.27 +flahutes flahute NOM p 0.00 0.07 0.00 0.07 +flair flair NOM m s 2.32 4.80 2.32 4.80 +flaira flairer VER 4.47 14.73 0.00 1.69 ind:pas:3s; +flairaient flairer VER 4.47 14.73 0.02 0.34 ind:imp:3p; +flairais flairer VER 4.47 14.73 0.37 0.14 ind:imp:1s; +flairait flairer VER 4.47 14.73 0.05 2.16 ind:imp:3s; +flairant flairer VER 4.47 14.73 0.02 1.42 par:pre; +flaire flairer VER 4.47 14.73 1.67 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flairent flairer VER 4.47 14.73 0.23 0.61 ind:pre:3p; +flairer flairer VER 4.47 14.73 0.93 2.70 inf; +flairera flairer VER 4.47 14.73 0.02 0.00 ind:fut:3s; +flairerait flairer VER 4.47 14.73 0.00 0.14 cnd:pre:3s; +flaires flairer VER 4.47 14.73 0.04 0.27 ind:pre:2s; +flaireur flaireur NOM m s 0.00 0.27 0.00 0.14 +flaireurs flaireur NOM m p 0.00 0.27 0.00 0.07 +flaireuse flaireur NOM f s 0.00 0.27 0.00 0.07 +flairez flairer VER 4.47 14.73 0.02 0.00 ind:pre:2p; +flairé flairer VER m s 4.47 14.73 1.00 2.50 par:pas; +flairée flairer VER f s 4.47 14.73 0.00 0.14 par:pas; +flairés flairer VER m p 4.47 14.73 0.11 0.07 par:pas; +flamand flamand NOM m s 1.37 2.30 0.85 1.35 +flamande flamand ADJ f s 0.79 2.43 0.28 0.54 +flamandes flamand ADJ f p 0.79 2.43 0.02 0.41 +flamands flamand NOM m p 1.37 2.30 0.53 0.47 +flamant flamant NOM m s 1.29 1.15 0.39 0.07 +flamants flamant NOM m p 1.29 1.15 0.90 1.08 +flamba flamber VER 4.80 13.99 0.10 0.41 ind:pas:3s; +flambaient flamber VER 4.80 13.99 0.00 1.28 ind:imp:3p; +flambait flamber VER 4.80 13.99 0.13 3.11 ind:imp:3s; +flambant flambant ADJ m s 0.88 2.30 0.83 1.49 +flambante flambant ADJ f s 0.88 2.30 0.03 0.27 +flambantes flambant ADJ f p 0.88 2.30 0.00 0.20 +flambants flambant ADJ m p 0.88 2.30 0.02 0.34 +flambard flambard NOM m s 0.00 0.34 0.00 0.34 +flambe flamber VER 4.80 13.99 2.05 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flambeau flambeau NOM m s 3.04 7.09 2.66 3.58 +flambeaux flambeau NOM m p 3.04 7.09 0.38 3.51 +flambent flamber VER 4.80 13.99 0.26 0.74 ind:pre:3p; +flamber flamber VER 4.80 13.99 0.84 3.45 inf; +flambera flamber VER 4.80 13.99 0.12 0.00 ind:fut:3s; +flamberaient flamber VER 4.80 13.99 0.00 0.07 cnd:pre:3p; +flamberait flamber VER 4.80 13.99 0.03 0.07 cnd:pre:3s; +flamberge flamberge NOM f s 0.00 0.07 0.00 0.07 +flamberont flamber VER 4.80 13.99 0.00 0.07 ind:fut:3p; +flambes flamber VER 4.80 13.99 0.05 0.00 ind:pre:2s; +flambeur flambeur NOM m s 1.18 1.89 0.82 0.88 +flambeurs flambeur NOM m p 1.18 1.89 0.34 0.88 +flambeuse flambeur NOM f s 1.18 1.89 0.01 0.14 +flambez flamber VER 4.80 13.99 0.02 0.07 imp:pre:2p;ind:pre:2p; +flamboie flamboyer VER 0.54 3.11 0.22 0.68 imp:pre:2s;ind:pre:3s; +flamboiement flamboiement NOM m s 0.04 1.49 0.04 1.22 +flamboiements flamboiement NOM m p 0.04 1.49 0.00 0.27 +flamboient flamboyer VER 0.54 3.11 0.01 0.47 ind:pre:3p;sub:pre:3p; +flamboierait flamboyer VER 0.54 3.11 0.00 0.07 cnd:pre:3s; +flambons flamber VER 4.80 13.99 0.01 0.00 imp:pre:1p; +flamboya flamboyer VER 0.54 3.11 0.00 0.07 ind:pas:3s; +flamboyaient flamboyer VER 0.54 3.11 0.14 0.14 ind:imp:3p; +flamboyait flamboyer VER 0.54 3.11 0.00 0.81 ind:imp:3s; +flamboyance flamboyance NOM f s 0.01 0.00 0.01 0.00 +flamboyant flamboyant ADJ m s 1.07 5.41 0.80 2.57 +flamboyante flamboyant ADJ f s 1.07 5.41 0.07 1.55 +flamboyantes flamboyant ADJ f p 1.07 5.41 0.03 0.54 +flamboyants flamboyant ADJ m p 1.07 5.41 0.17 0.74 +flamboyer flamboyer VER 0.54 3.11 0.00 0.07 inf; +flamboyèrent flamboyer VER 0.54 3.11 0.00 0.07 ind:pas:3p; +flambèrent flamber VER 4.80 13.99 0.00 0.27 ind:pas:3p; +flambé flamber VER m s 4.80 13.99 0.63 1.28 par:pas; +flambée flambée NOM f s 0.59 3.31 0.59 2.70 +flambées flamber VER f p 4.80 13.99 0.06 0.20 par:pas; +flambés flambé ADJ m p 0.21 0.14 0.04 0.07 +flamenco flamenco NOM m s 1.04 0.88 1.04 0.88 +flamencos flamenco ADJ m p 0.14 0.74 0.00 0.07 +flamine flamine NOM m s 0.01 0.00 0.01 0.00 +flamme flamme NOM f s 26.93 71.82 12.61 38.38 +flammes flamme NOM f p 26.93 71.82 14.32 33.45 +flammèche flammèche NOM f s 0.17 2.57 0.14 0.47 +flammèches flammèche NOM f p 0.17 2.57 0.02 2.09 +flammé flammé ADJ m s 0.00 0.27 0.00 0.14 +flammée flammé ADJ f s 0.00 0.27 0.00 0.07 +flammés flammé ADJ m p 0.00 0.27 0.00 0.07 +flan flan NOM m s 2.36 2.77 2.30 2.64 +flanc_garde flanc_garde NOM f s 0.04 0.27 0.00 0.14 +flanc flanc NOM m s 5.57 46.89 4.01 29.53 +flancha flancher VER 3.04 2.70 0.00 0.20 ind:pas:3s; +flanchais flancher VER 3.04 2.70 0.02 0.00 ind:imp:1s; +flanchait flancher VER 3.04 2.70 0.03 0.27 ind:imp:3s; +flanche flancher VER 3.04 2.70 1.27 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flanchent flancher VER 3.04 2.70 0.08 0.14 ind:pre:3p; +flancher flancher VER 3.04 2.70 0.67 0.54 inf; +flanchera flancher VER 3.04 2.70 0.04 0.07 ind:fut:3s; +flancherai flancher VER 3.04 2.70 0.01 0.00 ind:fut:1s; +flancheraient flancher VER 3.04 2.70 0.01 0.00 cnd:pre:3p; +flancherait flancher VER 3.04 2.70 0.11 0.07 cnd:pre:3s; +flanchet flanchet NOM m s 0.00 0.07 0.00 0.07 +flanché flancher VER m s 3.04 2.70 0.80 0.41 par:pas; +flanc_garde flanc_garde NOM f p 0.04 0.27 0.04 0.14 +flancs flanc NOM m p 5.57 46.89 1.56 17.36 +flandrin flandrin NOM m s 0.00 0.41 0.00 0.41 +flanelle flanelle NOM f s 0.83 8.99 0.68 8.78 +flanelles flanelle NOM f p 0.83 8.99 0.16 0.20 +flanqua flanquer VER 5.82 21.22 0.00 0.54 ind:pas:3s; +flanquaient flanquer VER 5.82 21.22 0.00 0.68 ind:imp:3p; +flanquait flanquer VER 5.82 21.22 0.01 1.22 ind:imp:3s; +flanquant flanquer VER 5.82 21.22 0.00 0.68 par:pre; +flanque flanquer VER 5.82 21.22 1.66 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flanquement flanquement NOM m s 0.00 0.07 0.00 0.07 +flanquent flanquer VER 5.82 21.22 0.19 0.54 ind:pre:3p; +flanquer flanquer VER 5.82 21.22 1.34 2.16 inf; +flanquera flanquer VER 5.82 21.22 0.07 0.14 ind:fut:3s; +flanquerai flanquer VER 5.82 21.22 0.22 0.07 ind:fut:1s; +flanqueraient flanquer VER 5.82 21.22 0.00 0.07 cnd:pre:3p; +flanquerais flanquer VER 5.82 21.22 0.16 0.14 cnd:pre:1s; +flanquerait flanquer VER 5.82 21.22 0.01 0.20 cnd:pre:3s; +flanquerez flanquer VER 5.82 21.22 0.01 0.00 ind:fut:2p; +flanques flanquer VER 5.82 21.22 0.17 0.14 ind:pre:2s; +flanquez flanquer VER 5.82 21.22 0.28 0.34 imp:pre:2p;ind:pre:2p; +flanquons flanquer VER 5.82 21.22 0.20 0.00 imp:pre:1p; +flanqué flanquer VER m s 5.82 21.22 1.09 6.42 par:pas; +flanquée flanquer VER f s 5.82 21.22 0.31 3.51 par:pas; +flanquées flanquer VER f p 5.82 21.22 0.00 0.74 par:pas; +flanqués flanquer VER m p 5.82 21.22 0.10 1.42 par:pas; +flans flan NOM m p 2.36 2.77 0.05 0.14 +flapi flapi ADJ m s 0.07 0.54 0.05 0.20 +flapie flapi ADJ f s 0.07 0.54 0.02 0.14 +flapies flapi ADJ f p 0.07 0.54 0.00 0.07 +flapis flapi ADJ m p 0.07 0.54 0.00 0.14 +flaque flaque NOM f s 3.53 23.99 2.31 10.07 +flaques flaque NOM f p 3.53 23.99 1.21 13.92 +flash_back flash_back NOM m 0.33 0.74 0.33 0.74 +flash flash NOM m s 8.52 4.59 7.78 4.59 +flashage flashage NOM m s 0.14 0.00 0.14 0.00 +flashaient flasher VER 1.10 0.61 0.00 0.07 ind:imp:3p; +flashant flasher VER 1.10 0.61 0.01 0.00 par:pre; +flashe flasher VER 1.10 0.61 0.16 0.34 ind:pre:1s;ind:pre:3s; +flashent flasher VER 1.10 0.61 0.08 0.07 ind:pre:3p; +flasher flasher VER 1.10 0.61 0.17 0.00 inf; +flashes flashe NOM m p 0.46 2.16 0.46 2.16 +flasheur flasheur NOM m s 0.03 0.00 0.03 0.00 +flashs flash NOM m p 8.52 4.59 0.74 0.00 +flashé flasher VER m s 1.10 0.61 0.68 0.14 par:pas; +flask flask NOM m s 0.01 0.07 0.01 0.07 +flasque flasque ADJ s 1.07 6.89 0.58 4.26 +flasques flasque ADJ p 1.07 6.89 0.50 2.64 +flat flat ADJ m s 1.61 0.00 1.02 0.00 +flats flat ADJ m p 1.61 0.00 0.58 0.00 +flatta flatter VER 12.36 24.05 0.00 1.22 ind:pas:3s; +flattai flatter VER 12.36 24.05 0.00 0.14 ind:pas:1s; +flattaient flatter VER 12.36 24.05 0.00 0.88 ind:imp:3p; +flattais flatter VER 12.36 24.05 0.04 0.74 ind:imp:1s;ind:imp:2s; +flattait flatter VER 12.36 24.05 0.03 3.45 ind:imp:3s; +flattant flatter VER 12.36 24.05 0.03 0.95 par:pre; +flattasse flatter VER 12.36 24.05 0.00 0.07 sub:imp:1s; +flattassent flatter VER 12.36 24.05 0.00 0.07 sub:imp:3p; +flatte flatter VER 12.36 24.05 2.60 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +flattent flatter VER 12.36 24.05 0.19 0.14 ind:pre:3p; +flatter flatter VER 12.36 24.05 1.53 3.78 inf; +flatteras flatter VER 12.36 24.05 0.00 0.07 ind:fut:2s; +flatterie flatterie NOM f s 1.40 2.64 0.78 1.69 +flatteries flatterie NOM f p 1.40 2.64 0.62 0.95 +flatteront flatter VER 12.36 24.05 0.00 0.07 ind:fut:3p; +flattes flatter VER 12.36 24.05 0.63 0.07 ind:pre:2s; +flatteur flatteur ADJ m s 3.51 6.49 2.65 2.16 +flatteurs flatteur ADJ m p 3.51 6.49 0.20 0.88 +flatteuse flatteur ADJ f s 3.51 6.49 0.59 2.30 +flatteuses flatteur ADJ f p 3.51 6.49 0.08 1.15 +flattez flatter VER 12.36 24.05 1.54 0.14 imp:pre:2p;ind:pre:2p; +flattions flatter VER 12.36 24.05 0.00 0.14 ind:imp:1p; +flattons flatter VER 12.36 24.05 0.04 0.00 imp:pre:1p;ind:pre:1p; +flattèrent flatter VER 12.36 24.05 0.00 0.20 ind:pas:3p; +flatté flatter VER m s 12.36 24.05 3.56 4.86 par:pas; +flattée flatter VER f s 12.36 24.05 1.78 2.70 par:pas; +flattées flatter VER f p 12.36 24.05 0.12 0.27 par:pas; +flattés flatter VER m p 12.36 24.05 0.26 0.61 par:pas; +flatulence flatulence NOM f s 0.25 0.47 0.07 0.20 +flatulences flatulence NOM f p 0.25 0.47 0.18 0.27 +flatulent flatulent ADJ m s 0.04 0.07 0.03 0.00 +flatulents flatulent ADJ m p 0.04 0.07 0.01 0.07 +flatuosité flatuosité NOM f s 0.00 0.07 0.00 0.07 +flatus_vocis flatus_vocis NOM m 0.00 0.07 0.00 0.07 +flave flave ADJ s 0.00 0.07 0.00 0.07 +flaveur flaveur NOM f s 0.01 0.00 0.01 0.00 +flegmatique flegmatique ADJ m s 0.03 0.95 0.02 0.74 +flegmatiquement flegmatiquement ADV 0.00 0.07 0.00 0.07 +flegmatiques flegmatique ADJ m p 0.03 0.95 0.01 0.20 +flegmatisme flegmatisme NOM m s 0.00 0.07 0.00 0.07 +flegme flegme NOM m s 0.22 2.43 0.22 2.43 +flemmard flemmard NOM m s 0.80 0.41 0.63 0.20 +flemmardais flemmarder VER 0.25 0.20 0.10 0.07 ind:imp:1s; +flemmardant flemmarder VER 0.25 0.20 0.01 0.00 par:pre; +flemmarde flemmard NOM f s 0.80 0.41 0.04 0.07 +flemmarder flemmarder VER 0.25 0.20 0.10 0.14 inf; +flemmardes flemmard ADJ f p 0.48 0.41 0.01 0.00 +flemmardise flemmardise NOM f s 0.01 0.07 0.01 0.07 +flemmards flemmard NOM m p 0.80 0.41 0.13 0.14 +flemme flemme NOM f s 0.49 1.62 0.49 1.62 +flemmer flemmer VER 0.02 0.00 0.02 0.00 inf; +fleur fleur NOM f s 99.75 164.39 25.20 42.97 +fleurage fleurage NOM m s 0.00 0.27 0.00 0.27 +fleuraient fleurer VER 0.18 3.31 0.00 0.47 ind:imp:3p; +fleurais fleurer VER 0.18 3.31 0.00 0.07 ind:imp:1s; +fleurait fleurer VER 0.18 3.31 0.10 1.08 ind:imp:3s; +fleurant fleurer VER 0.18 3.31 0.01 1.42 par:pre; +fleurdelisé fleurdelisé ADJ m s 0.14 0.34 0.14 0.20 +fleurdelisée fleurdelisé ADJ f s 0.14 0.34 0.00 0.07 +fleurdelisés fleurdelisé ADJ m p 0.14 0.34 0.00 0.07 +fleure fleurer VER 0.18 3.31 0.02 0.20 ind:pre:3s; +fleurent fleurer VER 0.18 3.31 0.02 0.07 ind:pre:3p; +fleurer fleurer VER 0.18 3.31 0.03 0.00 inf; +fleuret fleuret NOM m s 0.97 2.43 0.29 1.28 +fleuretais fleureter VER 0.01 0.07 0.01 0.00 ind:imp:2s; +fleuretait fleureter VER 0.01 0.07 0.00 0.07 ind:imp:3s; +fleurets fleuret NOM m p 0.97 2.43 0.68 1.15 +fleurette fleurette NOM f s 0.29 2.97 0.29 0.74 +fleurettes fleurette NOM f p 0.29 2.97 0.00 2.23 +fleuri fleurir VER m s 3.95 16.49 0.69 2.30 par:pas; +fleurie fleuri ADJ f s 1.48 10.14 0.42 2.70 +fleuries fleuri ADJ f p 1.48 10.14 0.14 1.82 +fleurir fleurir VER 3.95 16.49 1.00 2.91 inf; +fleurira fleurir VER 3.95 16.49 0.04 0.07 ind:fut:3s; +fleuriraient fleurir VER 3.95 16.49 0.00 0.07 cnd:pre:3p; +fleurirent fleurir VER 3.95 16.49 0.01 0.07 ind:pas:3p; +fleuriront fleurir VER 3.95 16.49 0.23 0.27 ind:fut:3p; +fleuris fleuri ADJ m p 1.48 10.14 0.31 2.84 +fleurissaient fleurir VER 3.95 16.49 0.05 1.76 ind:imp:3p; +fleurissait fleurir VER 3.95 16.49 0.10 1.15 ind:imp:3s; +fleurissant fleurir VER 3.95 16.49 0.14 0.20 par:pre; +fleurisse fleurir VER 3.95 16.49 0.25 0.00 sub:pre:3s; +fleurissement fleurissement NOM m s 0.00 0.14 0.00 0.14 +fleurissent fleurir VER 3.95 16.49 0.78 2.16 ind:pre:3p; +fleurissiez fleurir VER 3.95 16.49 0.01 0.00 ind:imp:2p; +fleurissons fleurir VER 3.95 16.49 0.01 0.00 ind:pre:1p; +fleuriste fleuriste NOM s 4.08 8.51 3.73 7.23 +fleuristes fleuriste NOM p 4.08 8.51 0.35 1.28 +fleurit fleurir VER 3.95 16.49 0.53 2.23 ind:pre:3s;ind:pas:3s; +fleuron fleuron NOM m s 0.46 1.15 0.31 0.54 +fleuronner fleuronner VER 0.00 0.07 0.00 0.07 inf; +fleuronnée fleuronné ADJ f s 0.01 0.00 0.01 0.00 +fleurons fleuron NOM m p 0.46 1.15 0.16 0.61 +fleurs fleur NOM f p 99.75 164.39 74.56 121.42 +fleuve fleuve NOM m s 21.58 46.89 19.81 39.32 +fleuves fleuve NOM m p 21.58 46.89 1.77 7.57 +flexibilité flexibilité NOM f s 0.44 0.34 0.44 0.34 +flexible flexible ADJ s 1.43 3.18 0.77 2.09 +flexibles flexible ADJ p 1.43 3.18 0.66 1.08 +flexion flexion NOM f s 0.97 0.74 0.71 0.14 +flexions flexion NOM f p 0.97 0.74 0.26 0.61 +flexuosité flexuosité NOM f s 0.00 0.07 0.00 0.07 +flibuste flibuste NOM f s 0.14 0.14 0.14 0.14 +flibustier flibustier NOM m s 0.21 0.74 0.04 0.68 +flibustiers flibustier NOM m p 0.21 0.74 0.17 0.07 +flic flic NOM m s 153.50 72.43 67.53 30.95 +flicage flicage NOM m s 0.01 0.14 0.01 0.14 +flicaille flicaille NOM f s 0.20 1.28 0.20 1.22 +flicailles flicaille NOM f p 0.20 1.28 0.00 0.07 +flicard flicard NOM m s 0.31 2.03 0.29 1.28 +flicarde flicard ADJ f s 0.35 0.54 0.00 0.14 +flicardes flicard ADJ f p 0.35 0.54 0.00 0.07 +flicards flicard ADJ m p 0.35 0.54 0.13 0.00 +flics flic NOM m p 153.50 72.43 85.97 41.49 +flingage flingage NOM m s 0.01 0.27 0.01 0.27 +flingot flingot NOM m s 0.02 0.41 0.02 0.20 +flingots flingot NOM m p 0.02 0.41 0.00 0.20 +flingoté flingoter VER m s 0.00 0.07 0.00 0.07 par:pas; +flinguait flinguer VER 11.35 4.12 0.01 0.14 ind:imp:3s; +flinguant flinguer VER 11.35 4.12 0.03 0.00 par:pre; +flingue flingue NOM m s 44.48 12.57 38.34 10.88 +flinguent flinguer VER 11.35 4.12 0.40 0.00 ind:pre:3p; +flinguer flinguer VER 11.35 4.12 4.05 2.36 inf; +flinguera flinguer VER 11.35 4.12 0.18 0.00 ind:fut:3s; +flinguerai flinguer VER 11.35 4.12 0.11 0.00 ind:fut:1s; +flingueraient flinguer VER 11.35 4.12 0.01 0.00 cnd:pre:3p; +flinguerais flinguer VER 11.35 4.12 0.24 0.00 cnd:pre:1s;cnd:pre:2s; +flingueront flinguer VER 11.35 4.12 0.02 0.00 ind:fut:3p; +flingues flingue NOM m p 44.48 12.57 6.13 1.69 +flingueur flingueur NOM m s 0.60 0.14 0.50 0.07 +flingueurs flingueur NOM m p 0.60 0.14 0.10 0.07 +flingueuse flingueur NOM f s 0.60 0.14 0.01 0.00 +flingueuses flingueuse NOM f p 0.01 0.00 0.01 0.00 +flinguez flinguer VER 11.35 4.12 0.47 0.14 imp:pre:2p;ind:pre:2p; +flinguons flinguer VER 11.35 4.12 0.02 0.00 imp:pre:1p; +flinguât flinguer VER 11.35 4.12 0.00 0.07 sub:imp:3s; +flingué flinguer VER m s 11.35 4.12 2.30 0.81 par:pas; +flinguée flinguer VER f s 11.35 4.12 0.24 0.20 par:pas; +flingués flinguer VER m p 11.35 4.12 0.22 0.07 par:pas; +flint flint NOM m s 0.00 0.07 0.00 0.07 +flip_flap flip_flap NOM m 0.00 0.14 0.00 0.14 +flip_flop flip_flop NOM m 0.07 0.00 0.07 0.00 +flip flip NOM m s 1.63 1.42 1.58 1.28 +flippais flipper VER 14.29 3.65 0.08 0.07 ind:imp:1s;ind:imp:2s; +flippait flipper VER 14.29 3.65 0.26 0.47 ind:imp:3s; +flippant flipper VER 14.29 3.65 2.60 0.27 par:pre; +flippe flipper VER 14.29 3.65 1.98 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flippent flipper VER 14.29 3.65 0.21 0.07 ind:pre:3p; +flipper flipper VER 14.29 3.65 6.58 1.69 inf; +flipperais flipper VER 14.29 3.65 0.04 0.00 cnd:pre:1s; +flipperait flipper VER 14.29 3.65 0.09 0.00 cnd:pre:3s; +flipperont flipper VER 14.29 3.65 0.11 0.00 ind:fut:3p; +flippers flipper NOM m p 1.93 2.43 0.32 0.95 +flippes flipper VER 14.29 3.65 0.69 0.00 ind:pre:2s; +flippé flipper VER m s 14.29 3.65 1.57 0.27 par:pas; +flippée flippé ADJ f s 0.32 0.20 0.13 0.14 +flippés flippé NOM m p 0.11 0.95 0.04 0.07 +flips flip NOM m p 1.63 1.42 0.05 0.14 +fliquer fliquer VER 0.00 0.07 0.00 0.07 inf; +fliquesse fliquesse NOM f s 0.02 0.00 0.02 0.00 +fliqué fliqué ADJ m s 0.14 0.07 0.00 0.07 +fliqués fliqué ADJ m p 0.14 0.07 0.14 0.00 +flirt flirt NOM m s 2.29 3.65 1.98 2.64 +flirta flirter VER 7.06 3.04 0.02 0.14 ind:pas:3s; +flirtaient flirter VER 7.06 3.04 0.01 0.07 ind:imp:3p; +flirtais flirter VER 7.06 3.04 0.51 0.07 ind:imp:1s;ind:imp:2s; +flirtait flirter VER 7.06 3.04 0.55 0.81 ind:imp:3s; +flirtant flirter VER 7.06 3.04 0.29 0.14 par:pre; +flirtation flirtation NOM f s 0.01 0.00 0.01 0.00 +flirte flirter VER 7.06 3.04 1.42 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +flirtent flirter VER 7.06 3.04 0.07 0.07 ind:pre:3p; +flirter flirter VER 7.06 3.04 2.91 0.54 inf; +flirteront flirter VER 7.06 3.04 0.00 0.07 ind:fut:3p; +flirtes flirter VER 7.06 3.04 0.38 0.00 ind:pre:2s; +flirteur flirteur ADJ m s 0.11 0.14 0.10 0.07 +flirteuse flirteur NOM f s 0.11 0.07 0.01 0.07 +flirteuses flirteur ADJ f p 0.11 0.14 0.00 0.07 +flirtez flirter VER 7.06 3.04 0.14 0.00 imp:pre:2p;ind:pre:2p; +flirtiez flirter VER 7.06 3.04 0.04 0.00 ind:imp:2p; +flirtons flirter VER 7.06 3.04 0.02 0.00 imp:pre:1p;ind:pre:1p; +flirts flirt NOM m p 2.29 3.65 0.31 1.01 +flirtèrent flirter VER 7.06 3.04 0.00 0.14 ind:pas:3p; +flirté flirter VER m s 7.06 3.04 0.71 0.41 par:pas; +floc floc ONO 0.33 2.57 0.33 2.57 +floche floche ADJ f s 0.03 0.20 0.03 0.00 +floches floche NOM f p 0.00 0.27 0.00 0.20 +flocon flocon NOM m s 2.61 8.92 0.19 1.35 +floconne floconner VER 0.00 0.34 0.00 0.27 ind:pre:3s; +floconnent floconner VER 0.00 0.34 0.00 0.07 ind:pre:3p; +floconneuse floconneux ADJ f s 0.08 0.54 0.04 0.20 +floconneuses floconneux ADJ f p 0.08 0.54 0.00 0.14 +floconneux floconneux ADJ m 0.08 0.54 0.05 0.20 +flocons flocon NOM m p 2.61 8.92 2.42 7.57 +floculation floculation NOM f s 0.01 0.00 0.01 0.00 +floculent floculer VER 0.00 0.07 0.00 0.07 ind:pre:3p; +flâna flâner VER 1.15 9.05 0.00 0.20 ind:pas:3s; +flânai flâner VER 1.15 9.05 0.00 0.07 ind:pas:1s; +flânaient flâner VER 1.15 9.05 0.00 0.47 ind:imp:3p; +flânais flâner VER 1.15 9.05 0.03 0.07 ind:imp:1s; +flânait flâner VER 1.15 9.05 0.12 0.68 ind:imp:3s; +flânant flâner VER 1.15 9.05 0.02 1.55 par:pre; +flâne flâner VER 1.15 9.05 0.19 0.68 ind:pre:1s;ind:pre:3s; +flânent flâner VER 1.15 9.05 0.01 0.41 ind:pre:3p; +flâner flâner VER 1.15 9.05 0.70 3.65 inf; +flânera flâner VER 1.15 9.05 0.00 0.07 ind:fut:3s; +flânerais flâner VER 1.15 9.05 0.01 0.00 cnd:pre:1s; +flânerait flâner VER 1.15 9.05 0.01 0.00 cnd:pre:3s; +flânerie flânerie NOM f s 0.11 2.43 0.01 1.76 +flâneries flânerie NOM f p 0.11 2.43 0.10 0.68 +flâneront flâner VER 1.15 9.05 0.00 0.07 ind:fut:3p; +flâneur flâneur NOM m s 0.03 1.69 0.01 0.88 +flâneurs flâneur NOM m p 0.03 1.69 0.01 0.68 +flâneuse flâneuse NOM f s 0.01 0.00 0.01 0.00 +flâneuses flâneur NOM f p 0.03 1.69 0.00 0.14 +flonflon flonflon NOM m s 0.22 1.35 0.00 0.07 +flonflons flonflon NOM m p 0.22 1.35 0.22 1.28 +flânions flâner VER 1.15 9.05 0.02 0.14 ind:imp:1p; +flânochent flânocher VER 0.00 0.14 0.00 0.07 ind:pre:3p; +flânocher flânocher VER 0.00 0.14 0.00 0.07 inf; +flânons flâner VER 1.15 9.05 0.00 0.07 ind:pre:1p; +flâné flâner VER m s 1.15 9.05 0.03 0.95 par:pas; +flood flood ADJ s 0.33 0.00 0.33 0.00 +flop flop ONO 0.14 0.20 0.14 0.20 +flops flop NOM m p 0.76 0.27 0.08 0.00 +flopée flopée NOM f s 0.27 0.74 0.26 0.61 +flopées flopée NOM f p 0.27 0.74 0.01 0.14 +floraison floraison NOM f s 0.53 4.12 0.29 3.18 +floraisons floraison NOM f p 0.53 4.12 0.24 0.95 +floral floral ADJ m s 0.69 1.49 0.28 0.34 +florale floral ADJ f s 0.69 1.49 0.32 0.27 +florales floral ADJ f p 0.69 1.49 0.05 0.41 +floralies floralies NOM f p 0.02 0.07 0.02 0.07 +floraux floral ADJ m p 0.69 1.49 0.04 0.47 +flore flore NOM f s 0.59 1.55 0.56 1.35 +florence florence NOM f s 0.00 0.07 0.00 0.07 +florentin florentin ADJ m s 0.58 1.49 0.21 0.47 +florentine florentin ADJ f s 0.58 1.49 0.20 0.41 +florentines florentin ADJ f p 0.58 1.49 0.14 0.14 +florentins florentin ADJ m p 0.58 1.49 0.04 0.47 +flores flore NOM f p 0.59 1.55 0.02 0.20 +florilège florilège NOM m s 0.00 0.14 0.00 0.14 +florin florin NOM m s 3.55 1.76 1.08 0.27 +florins florin NOM m p 3.55 1.76 2.48 1.49 +florissaient florissaient VER 0.00 0.07 0.00 0.07 inf; +florissait florissait VER 0.00 0.14 0.00 0.14 inf; +florissant florissant ADJ m s 0.97 2.30 0.28 0.74 +florissante florissant ADJ f s 0.97 2.30 0.32 0.81 +florissantes florissant ADJ f p 0.97 2.30 0.33 0.47 +florissants florissant ADJ m p 0.97 2.30 0.04 0.27 +florès florès ADV 0.00 0.54 0.00 0.54 +floréal floréal NOM m s 0.00 0.20 0.00 0.20 +flot flot NOM m s 10.28 45.95 4.66 29.59 +flots flot NOM m p 10.28 45.95 5.62 16.35 +flotta flotter VER 12.79 63.85 0.01 0.81 ind:pas:3s; +flottabilité flottabilité NOM f s 0.02 0.00 0.02 0.00 +flottage flottage NOM m s 0.00 0.07 0.00 0.07 +flottaient flotter VER 12.79 63.85 0.47 6.62 ind:imp:3p; +flottais flotter VER 12.79 63.85 0.54 0.81 ind:imp:1s;ind:imp:2s; +flottaison flottaison NOM f s 0.12 1.28 0.12 1.22 +flottaisons flottaison NOM f p 0.12 1.28 0.00 0.07 +flottait flotter VER 12.79 63.85 0.96 19.80 ind:imp:3s; +flottant flottant ADJ m s 2.21 13.31 1.01 4.12 +flottante flottant ADJ f s 2.21 13.31 0.93 4.59 +flottantes flottant ADJ f p 2.21 13.31 0.12 2.43 +flottants flottant ADJ m p 2.21 13.31 0.15 2.16 +flottation flottation NOM f s 0.01 0.00 0.01 0.00 +flotte flotte NOM f s 16.36 27.64 16.22 26.22 +flottement flottement NOM m s 0.30 2.43 0.30 2.30 +flottements flottement NOM m p 0.30 2.43 0.00 0.14 +flottent flotter VER 12.79 63.85 1.07 5.34 ind:pre:3p; +flotter flotter VER 12.79 63.85 3.16 10.68 inf; +flottera flotter VER 12.79 63.85 0.58 0.00 ind:fut:3s; +flotteraient flotter VER 12.79 63.85 0.00 0.14 cnd:pre:3p; +flotterait flotter VER 12.79 63.85 0.04 0.20 cnd:pre:3s; +flotteras flotter VER 12.79 63.85 0.05 0.00 ind:fut:2s; +flotterez flotter VER 12.79 63.85 0.04 0.00 ind:fut:2p; +flotteront flotter VER 12.79 63.85 0.01 0.07 ind:fut:3p; +flottes flotter VER 12.79 63.85 0.30 0.07 ind:pre:2s; +flotteur flotteur NOM m s 0.70 1.62 0.39 0.68 +flotteurs flotteur NOM m p 0.70 1.62 0.31 0.95 +flottez flotter VER 12.79 63.85 0.30 0.20 imp:pre:2p;ind:pre:2p; +flottiez flotter VER 12.79 63.85 0.14 0.07 ind:imp:2p; +flottille flottille NOM f s 0.28 1.76 0.28 1.42 +flottilles flottille NOM f p 0.28 1.76 0.00 0.34 +flottions flotter VER 12.79 63.85 0.00 0.14 ind:imp:1p; +flottât flotter VER 12.79 63.85 0.00 0.07 sub:imp:3s; +flottèrent flotter VER 12.79 63.85 0.01 0.54 ind:pas:3p; +flotté flotter VER m s 12.79 63.85 0.37 1.15 par:pas; +flottée flotter VER f s 12.79 63.85 0.00 0.20 par:pas; +flottées flotter VER f p 12.79 63.85 0.00 0.20 par:pas; +flottés flotter VER m p 12.79 63.85 0.00 0.27 par:pas; +flou flou ADJ m s 8.18 16.15 4.91 6.08 +flouant flouer VER 0.84 0.95 0.00 0.07 par:pre; +floue flou ADJ f s 8.18 16.15 2.25 4.39 +flouer flouer VER 0.84 0.95 0.07 0.00 inf; +flouerie flouerie NOM f s 0.00 0.07 0.00 0.07 +floues flou ADJ f p 8.18 16.15 0.76 2.57 +flous flou ADJ m p 8.18 16.15 0.27 3.11 +flouse flouse NOM m s 0.01 0.14 0.01 0.14 +floué flouer VER m s 0.84 0.95 0.39 0.54 par:pas; +flouée flouer VER f s 0.84 0.95 0.06 0.07 par:pas; +floués flouer VER m p 0.84 0.95 0.30 0.07 par:pas; +flouve flouve NOM f s 0.00 0.07 0.00 0.07 +flouzaille flouzaille NOM f s 0.00 0.07 0.00 0.07 +flouze flouze NOM m s 0.23 0.34 0.23 0.34 +flèche flèche NOM f s 12.76 25.00 8.21 15.54 +flèches flèche NOM f p 12.76 25.00 4.55 9.46 +fluaient fluer VER 0.00 0.14 0.00 0.07 ind:imp:3p; +fluait fluer VER 0.00 0.14 0.00 0.07 ind:imp:3s; +fléau fléau NOM m s 5.10 4.39 4.47 3.04 +fléaux fléau NOM m p 5.10 4.39 0.63 1.35 +flubes fluber VER 0.00 0.88 0.00 0.88 ind:pre:2s; +flécher flécher VER 0.02 0.54 0.01 0.07 inf; +fléchette fléchette NOM f s 1.60 1.28 0.33 0.34 +fléchettes fléchette NOM f p 1.60 1.28 1.27 0.95 +fléchi fléchir VER m s 1.54 9.32 0.21 1.08 par:pas; +fléchie fléchir VER f s 1.54 9.32 0.14 0.34 par:pas; +fléchies fléchir VER f p 1.54 9.32 0.00 0.34 par:pas; +fléchir fléchir VER 1.54 9.32 0.58 2.64 inf; +fléchiraient fléchir VER 1.54 9.32 0.01 0.00 cnd:pre:3p; +fléchirait fléchir VER 1.54 9.32 0.00 0.07 cnd:pre:3s; +fléchirent fléchir VER 1.54 9.32 0.00 0.07 ind:pas:3p; +fléchis fléchir VER m p 1.54 9.32 0.17 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fléchissaient fléchir VER 1.54 9.32 0.00 0.41 ind:imp:3p; +fléchissais fléchir VER 1.54 9.32 0.00 0.07 ind:imp:1s; +fléchissait fléchir VER 1.54 9.32 0.01 0.61 ind:imp:3s; +fléchissant fléchir VER 1.54 9.32 0.00 0.61 par:pre; +fléchisse fléchir VER 1.54 9.32 0.00 0.20 sub:pre:3s; +fléchissement fléchissement NOM m s 0.01 1.15 0.01 1.01 +fléchissements fléchissement NOM m p 0.01 1.15 0.00 0.14 +fléchissent fléchir VER 1.54 9.32 0.02 0.47 ind:pre:3p; +fléchisseur fléchisseur ADJ m s 0.01 0.00 0.01 0.00 +fléchissez fléchir VER 1.54 9.32 0.02 0.00 imp:pre:2p;ind:pre:2p; +fléchissions fléchir VER 1.54 9.32 0.00 0.07 ind:imp:1p; +fléchissons fléchir VER 1.54 9.32 0.01 0.00 ind:pre:1p; +fléchit fléchir VER 1.54 9.32 0.37 1.76 ind:pre:3s;ind:pas:3s; +fléché flécher VER m s 0.02 0.54 0.01 0.14 par:pas; +fléchée fléché ADJ f s 0.09 0.54 0.08 0.14 +fléchées flécher VER f p 0.02 0.54 0.00 0.07 par:pas; +fléchées fléché ADJ f p 0.09 0.54 0.00 0.07 +fléchés fléché ADJ m p 0.09 0.54 0.01 0.07 +fluctuait fluctuer VER 0.17 0.68 0.01 0.07 ind:imp:3s; +fluctuant fluctuant ADJ m s 0.11 0.41 0.07 0.20 +fluctuante fluctuant ADJ f s 0.11 0.41 0.04 0.20 +fluctuation fluctuation NOM f s 0.85 0.95 0.29 0.07 +fluctuations fluctuation NOM f p 0.85 0.95 0.56 0.88 +fluctue fluctuer VER 0.17 0.68 0.11 0.27 ind:pre:3s; +fluctuent fluctuer VER 0.17 0.68 0.03 0.07 ind:pre:3p; +fluctuer fluctuer VER 0.17 0.68 0.02 0.07 inf; +fluctuerait fluctuer VER 0.17 0.68 0.00 0.07 cnd:pre:3s; +fluctué fluctuer VER m s 0.17 0.68 0.00 0.14 par:pas; +fluence fluence NOM f s 0.01 0.00 0.01 0.00 +fluet fluet ADJ m s 0.32 4.32 0.23 1.69 +fluets fluet ADJ m p 0.32 4.32 0.00 0.34 +fluette fluet ADJ f s 0.32 4.32 0.08 2.03 +fluettes fluet ADJ f p 0.32 4.32 0.00 0.27 +fluide fluide ADJ s 1.73 4.80 1.58 3.78 +fluidement fluidement ADV 0.00 0.14 0.00 0.14 +fluides fluide NOM m p 3.27 2.43 1.78 0.68 +fluidifiant fluidifiant NOM m s 0.03 0.00 0.03 0.00 +fluidifier fluidifier VER 0.03 0.07 0.01 0.07 inf; +fluidifié fluidifier VER m s 0.03 0.07 0.01 0.00 par:pas; +fluidiques fluidique ADJ p 0.00 0.07 0.00 0.07 +fluidité fluidité NOM f s 0.39 1.35 0.39 1.35 +fluo fluo ADJ 0.56 0.20 0.56 0.20 +fléole fléole NOM f s 0.00 0.07 0.00 0.07 +fluor fluor NOM m s 0.12 0.00 0.12 0.00 +fluorescence fluorescence NOM f s 0.05 0.14 0.05 0.14 +fluorescent fluorescent ADJ m s 0.60 0.95 0.14 0.47 +fluorescente fluorescent ADJ f s 0.60 0.95 0.12 0.07 +fluorescentes fluorescent ADJ f p 0.60 0.95 0.26 0.20 +fluorescents fluorescent ADJ m p 0.60 0.95 0.08 0.20 +fluorescéine fluorescéine NOM f s 0.01 0.00 0.01 0.00 +fluorhydrique fluorhydrique ADJ m s 0.01 0.00 0.01 0.00 +fluorite fluorite NOM f s 0.04 0.00 0.04 0.00 +fluorée fluoré ADJ f s 0.04 0.00 0.04 0.00 +fluorure fluorure NOM m s 0.17 0.07 0.17 0.07 +flush flush NOM m s 1.17 0.07 1.17 0.07 +flétan flétan NOM m s 0.26 0.07 0.23 0.07 +flétans flétan NOM m p 0.26 0.07 0.02 0.00 +flétrît flétrir VER 1.78 6.08 0.00 0.07 sub:imp:3s; +flétri flétrir VER m s 1.78 6.08 0.32 1.69 par:pas; +flétrie flétrir VER f s 1.78 6.08 0.23 1.01 par:pas; +flétries flétrir VER f p 1.78 6.08 0.03 1.08 par:pas; +flétrir flétrir VER 1.78 6.08 0.23 0.27 inf; +flétrira flétrir VER 1.78 6.08 0.01 0.07 ind:fut:3s; +flétrirai flétrir VER 1.78 6.08 0.01 0.00 ind:fut:1s; +flétrirent flétrir VER 1.78 6.08 0.00 0.07 ind:pas:3p; +flétriront flétrir VER 1.78 6.08 0.01 0.00 ind:fut:3p; +flétris flétrir VER m p 1.78 6.08 0.33 0.95 par:pas; +flétrissaient flétrir VER 1.78 6.08 0.00 0.14 ind:imp:3p; +flétrissait flétrir VER 1.78 6.08 0.01 0.41 ind:imp:3s; +flétrissant flétrissant ADJ m s 0.00 0.07 0.00 0.07 +flétrissement flétrissement NOM m s 0.10 0.00 0.10 0.00 +flétrissent flétrir VER 1.78 6.08 0.06 0.14 ind:pre:3p; +flétrissure flétrissure NOM f s 0.00 0.88 0.00 0.61 +flétrissures flétrissure NOM f p 0.00 0.88 0.00 0.27 +flétrit flétrir VER 1.78 6.08 0.54 0.20 ind:pre:3s;ind:pas:3s; +fluvial fluvial ADJ m s 0.60 1.35 0.16 0.74 +fluviale fluvial ADJ f s 0.60 1.35 0.33 0.27 +fluviales fluvial ADJ f p 0.60 1.35 0.11 0.07 +fluviatile fluviatile ADJ m s 0.00 0.07 0.00 0.07 +fluviaux fluvial ADJ m p 0.60 1.35 0.01 0.27 +flux flux NOM m 4.07 6.42 4.07 6.42 +fluxe fluxer VER 0.01 0.00 0.01 0.00 ind:pre:3s; +fluxion fluxion NOM f s 0.29 0.47 0.29 0.47 +foc foc NOM m s 0.31 1.28 0.29 1.22 +focal focal ADJ m s 0.68 0.07 0.25 0.07 +focale focal ADJ f s 0.68 0.07 0.36 0.00 +focales focal ADJ f p 0.68 0.07 0.05 0.00 +focalisation focalisation NOM f s 0.01 0.00 0.01 0.00 +focalise focaliser VER 1.81 0.34 0.52 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +focaliser focaliser VER 1.81 0.34 0.59 0.07 inf; +focalisez focaliser VER 1.81 0.34 0.22 0.00 imp:pre:2p;ind:pre:2p; +focalisons focaliser VER 1.81 0.34 0.05 0.00 imp:pre:1p;ind:pre:1p; +focalisé focaliser VER m s 1.81 0.34 0.35 0.00 par:pas; +focalisés focaliser VER m p 1.81 0.34 0.08 0.07 par:pas; +focaux focal ADJ m p 0.68 0.07 0.01 0.00 +fâcha fâcher VER 46.63 21.96 0.04 1.42 ind:pas:3s; +fâchai fâcher VER 46.63 21.96 0.00 0.07 ind:pas:1s; +fâchaient fâcher VER 46.63 21.96 0.01 0.27 ind:imp:3p; +fâchais fâcher VER 46.63 21.96 0.01 0.07 ind:imp:1s; +fâchait fâcher VER 46.63 21.96 0.04 1.01 ind:imp:3s; +fâche fâcher VER 46.63 21.96 11.69 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fâchent fâcher VER 46.63 21.96 0.10 0.20 ind:pre:3p; +fâcher fâcher VER 46.63 21.96 5.08 4.05 inf; +fâchera fâcher VER 46.63 21.96 0.49 0.07 ind:fut:3s; +fâcherai fâcher VER 46.63 21.96 0.43 0.07 ind:fut:1s; +fâcherais fâcher VER 46.63 21.96 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +fâcherait fâcher VER 46.63 21.96 0.28 0.20 cnd:pre:3s; +fâcheras fâcher VER 46.63 21.96 0.16 0.07 ind:fut:2s; +fâcherie fâcherie NOM f s 0.14 0.47 0.14 0.20 +fâcheries fâcherie NOM f p 0.14 0.47 0.00 0.27 +fâcheront fâcher VER 46.63 21.96 0.01 0.00 ind:fut:3p; +fâches fâcher VER 46.63 21.96 1.60 0.34 ind:pre:2s; +fâcheuse fâcheux ADJ f s 3.79 8.85 0.80 2.70 +fâcheusement fâcheusement ADV 0.03 0.88 0.03 0.88 +fâcheuses fâcheux ADJ f p 3.79 8.85 0.85 1.76 +fâcheux fâcheux ADJ m 3.79 8.85 2.13 4.39 +fâchez fâcher VER 46.63 21.96 2.25 0.74 imp:pre:2p;ind:pre:2p; +fâchiez fâcher VER 46.63 21.96 0.01 0.00 ind:imp:2p; +fâchions fâcher VER 46.63 21.96 0.10 0.00 ind:imp:1p; +fâchons fâcher VER 46.63 21.96 0.05 0.00 imp:pre:1p; +fâchèrent fâcher VER 46.63 21.96 0.00 0.14 ind:pas:3p; +fâché fâcher VER m s 46.63 21.96 12.81 4.73 par:pas; +fâchée fâcher VER f s 46.63 21.96 8.90 2.16 par:pas; +fâchées fâcher VER f p 46.63 21.96 0.43 0.20 par:pas; +fâchés fâcher VER m p 46.63 21.96 2.13 1.08 par:pas; +focs foc NOM m p 0.31 1.28 0.02 0.07 +foehn foehn NOM m s 0.04 0.00 0.04 0.00 +foetal foetal ADJ m s 1.05 1.35 0.27 0.34 +foetale foetal ADJ f s 1.05 1.35 0.69 1.01 +foetales foetal ADJ f p 1.05 1.35 0.01 0.00 +foetaux foetal ADJ m p 1.05 1.35 0.08 0.00 +foetus foetus NOM m 3.06 2.57 3.06 2.57 +fofolle fofolle ADJ f s 0.27 0.00 0.25 0.00 +fofolles fofolle ADJ f p 0.27 0.00 0.02 0.00 +foi foi NOM f s 54.06 76.49 54.06 76.49 +foie foie NOM m s 23.48 17.97 22.27 15.47 +foies foie NOM m p 23.48 17.97 1.21 2.50 +foil foil NOM m s 0.01 0.00 0.01 0.00 +foin foin NOM m s 6.73 17.91 6.06 16.01 +foins foin NOM m p 6.73 17.91 0.67 1.89 +foira foirer VER 14.76 2.09 0.00 0.07 ind:pas:3s; +foirade foirade NOM f s 0.00 0.34 0.00 0.20 +foirades foirade NOM f p 0.00 0.34 0.00 0.14 +foiraient foirer VER 14.76 2.09 0.01 0.14 ind:imp:3p; +foirail foirail NOM m s 0.00 0.47 0.00 0.41 +foirails foirail NOM m p 0.00 0.47 0.00 0.07 +foirais foirer VER 14.76 2.09 0.01 0.00 ind:imp:1s; +foirait foirer VER 14.76 2.09 0.07 0.20 ind:imp:3s; +foire foire NOM f s 11.83 15.95 11.11 13.78 +foirent foirer VER 14.76 2.09 0.16 0.07 ind:pre:3p; +foirer foirer VER 14.76 2.09 4.60 0.34 inf; +foirera foirer VER 14.76 2.09 0.05 0.00 ind:fut:3s; +foires foire NOM f p 11.83 15.95 0.72 2.16 +foireuse foireux ADJ f s 3.20 4.05 0.37 0.41 +foireuses foireux ADJ f p 3.20 4.05 0.26 0.61 +foireux foireux ADJ m 3.20 4.05 2.57 3.04 +foirez foirer VER 14.76 2.09 0.15 0.00 imp:pre:2p;ind:pre:2p; +foiridon foiridon NOM m s 0.00 0.20 0.00 0.20 +foiré foirer VER m s 14.76 2.09 6.96 0.74 par:pas; +foirée foirer VER f s 14.76 2.09 0.11 0.00 par:pas; +foirées foirer VER f p 14.76 2.09 0.02 0.07 par:pas; +foirés foirer VER m p 14.76 2.09 0.03 0.07 par:pas; +fois fois NOM f p 899.25 1140.00 899.25 1140.00 +foison foison NOM f s 0.31 1.15 0.31 1.15 +foisonnaient foisonner VER 0.09 1.42 0.00 0.41 ind:imp:3p; +foisonnait foisonner VER 0.09 1.42 0.00 0.07 ind:imp:3s; +foisonnant foisonner VER 0.09 1.42 0.01 0.14 par:pre; +foisonnante foisonnant ADJ f s 0.10 0.88 0.10 0.34 +foisonnantes foisonnant ADJ f p 0.10 0.88 0.00 0.20 +foisonne foisonner VER 0.09 1.42 0.02 0.14 ind:pre:3s; +foisonnement foisonnement NOM m s 0.00 1.55 0.00 1.55 +foisonnent foisonner VER 0.09 1.42 0.04 0.47 ind:pre:3p; +foisonner foisonner VER 0.09 1.42 0.01 0.14 inf; +foisonneraient foisonner VER 0.09 1.42 0.00 0.07 cnd:pre:3p; +foisonneront foisonner VER 0.09 1.42 0.01 0.00 ind:fut:3p; +fol fol ADJ m s 0.66 1.62 0.41 1.28 +folasse folasse NOM f s 0.01 0.00 0.01 0.00 +foldingue foldingue ADJ s 0.24 0.20 0.24 0.07 +foldingues foldingue NOM p 0.07 0.07 0.03 0.00 +foliacée foliacé ADJ f s 0.01 0.00 0.01 0.00 +folichon folichon ADJ m s 0.72 0.27 0.69 0.20 +folichonnait folichonner VER 0.00 0.14 0.00 0.07 ind:imp:3s; +folichonne folichon ADJ f s 0.72 0.27 0.02 0.00 +folichonneries folichonnerie NOM f p 0.00 0.07 0.00 0.07 +folichonnes folichon ADJ f p 0.72 0.27 0.01 0.07 +folie folie NOM f s 52.39 60.74 49.01 52.43 +folies folie NOM f p 52.39 60.74 3.38 8.31 +folingue folingue ADJ m s 0.02 0.68 0.02 0.61 +folingues folingue ADJ p 0.02 0.68 0.00 0.07 +folio folio NOM m s 0.02 0.54 0.02 0.41 +folioles foliole NOM f p 0.00 0.14 0.00 0.14 +folios folio NOM m p 0.02 0.54 0.00 0.14 +folique folique ADJ m s 0.13 0.00 0.13 0.00 +folk folk NOM m s 1.73 2.64 1.30 2.64 +folklo folklo ADJ s 0.04 0.47 0.04 0.47 +folklore folklore NOM m s 0.86 3.78 0.85 3.72 +folklores folklore NOM m p 0.86 3.78 0.01 0.07 +folklorique folklorique ADJ s 1.73 1.96 0.79 0.95 +folkloriques folklorique ADJ p 1.73 1.96 0.94 1.01 +folkloriste folkloriste NOM s 0.00 0.20 0.00 0.14 +folkloristes folkloriste NOM p 0.00 0.20 0.00 0.07 +folks folk NOM m p 1.73 2.64 0.42 0.00 +folle fou ADJ f s 321.31 164.32 84.38 46.01 +folledingue folledingue NOM s 0.02 0.00 0.02 0.00 +follement follement ADV 4.15 6.42 4.15 6.42 +folles fou ADJ f p 321.31 164.32 6.47 11.62 +follet follet ADJ m s 0.30 3.11 0.08 1.15 +follets follet ADJ m p 0.30 3.11 0.23 1.55 +follette follet ADJ f s 0.30 3.11 0.00 0.20 +follettes follet ADJ f p 0.30 3.11 0.00 0.20 +folliculaire folliculaire ADJ f s 0.05 0.00 0.05 0.00 +folliculaires folliculaire NOM m p 0.00 0.07 0.00 0.07 +follicule follicule NOM m s 0.36 0.00 0.15 0.00 +follicules follicule NOM m p 0.36 0.00 0.21 0.00 +folliculite folliculite NOM f s 0.02 0.00 0.02 0.00 +follingue follingue ADJ s 0.00 0.07 0.00 0.07 +folâtraient folâtrer VER 0.36 0.95 0.00 0.34 ind:imp:3p; +folâtrait folâtrer VER 0.36 0.95 0.02 0.14 ind:imp:3s; +folâtre folâtrer VER 0.36 0.95 0.30 0.20 imp:pre:2s;ind:pre:3s; +folâtrent folâtrer VER 0.36 0.95 0.00 0.07 ind:pre:3p; +folâtrer folâtrer VER 0.36 0.95 0.04 0.20 inf; +folâtreries folâtrerie NOM f p 0.01 0.07 0.01 0.07 +folâtres folâtre ADJ p 0.28 0.74 0.01 0.34 +fols fol ADJ m p 0.66 1.62 0.25 0.34 +fomentaient fomenter VER 0.44 1.35 0.00 0.07 ind:imp:3p; +fomentait fomenter VER 0.44 1.35 0.00 0.20 ind:imp:3s; +fomentateurs fomentateur NOM m p 0.01 0.00 0.01 0.00 +fomente fomenter VER 0.44 1.35 0.24 0.07 ind:pre:1s;ind:pre:3s; +fomentent fomenter VER 0.44 1.35 0.04 0.14 ind:pre:3p; +fomenter fomenter VER 0.44 1.35 0.06 0.61 inf; +fomenté fomenter VER m s 0.44 1.35 0.11 0.20 par:pas; +fomentée fomenter VER f s 0.44 1.35 0.00 0.07 par:pas; +fonce foncer VER 30.27 41.82 16.31 12.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +foncent foncer VER 30.27 41.82 1.44 2.09 ind:pre:3p; +foncer foncer VER 30.27 41.82 3.34 6.01 inf; +foncera foncer VER 30.27 41.82 0.05 0.00 ind:fut:3s; +foncerai foncer VER 30.27 41.82 0.03 0.00 ind:fut:1s; +fonceraient foncer VER 30.27 41.82 0.03 0.14 cnd:pre:3p; +foncerais foncer VER 30.27 41.82 0.04 0.00 cnd:pre:1s; +foncerait foncer VER 30.27 41.82 0.03 0.07 cnd:pre:3s; +foncerons foncer VER 30.27 41.82 0.02 0.00 ind:fut:1p; +fonceront foncer VER 30.27 41.82 0.04 0.07 ind:fut:3p; +fonces foncer VER 30.27 41.82 1.16 0.20 ind:pre:2s;sub:pre:2s; +fonceur fonceur NOM m s 0.72 0.14 0.42 0.14 +fonceurs fonceur NOM m p 0.72 0.14 0.15 0.00 +fonceuse fonceur NOM f s 0.72 0.14 0.16 0.00 +foncez foncer VER 30.27 41.82 2.69 0.27 imp:pre:2p;ind:pre:2p; +foncier foncier ADJ m s 1.20 2.64 0.33 1.28 +fonciers foncier ADJ m p 1.20 2.64 0.62 0.41 +fonciez foncer VER 30.27 41.82 0.02 0.00 ind:imp:2p; +foncions foncer VER 30.27 41.82 0.00 0.14 ind:imp:1p; +foncière foncier ADJ f s 1.20 2.64 0.20 0.81 +foncièrement foncièrement ADV 0.18 2.09 0.18 2.09 +foncières foncier ADJ f p 1.20 2.64 0.05 0.14 +foncteur foncteur NOM m s 0.01 0.00 0.01 0.00 +foncèrent foncer VER 30.27 41.82 0.05 0.47 ind:pas:3p; +fonction fonction NOM f s 21.95 37.91 13.12 21.76 +fonctionna fonctionner VER 42.51 24.39 0.04 0.34 ind:pas:3s; +fonctionnaient fonctionner VER 42.51 24.39 0.48 1.42 ind:imp:3p; +fonctionnaire fonctionnaire NOM s 8.13 26.89 5.03 11.28 +fonctionnaires fonctionnaire NOM p 8.13 26.89 3.10 15.61 +fonctionnais fonctionner VER 42.51 24.39 0.03 0.00 ind:imp:1s; +fonctionnait fonctionner VER 42.51 24.39 1.24 5.47 ind:imp:3s; +fonctionnaliste fonctionnaliste ADJ f s 0.00 0.07 0.00 0.07 +fonctionnalité fonctionnalité NOM f s 0.07 0.00 0.07 0.00 +fonctionnant fonctionner VER 42.51 24.39 0.17 1.22 par:pre; +fonctionnarisé fonctionnariser VER m s 0.00 0.14 0.00 0.07 par:pas; +fonctionnarisée fonctionnariser VER f s 0.00 0.14 0.00 0.07 par:pas; +fonctionnassent fonctionner VER 42.51 24.39 0.00 0.07 sub:imp:3p; +fonctionne fonctionner VER 42.51 24.39 23.76 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fonctionnel fonctionnel ADJ m s 2.05 1.55 1.28 0.47 +fonctionnelle fonctionnel ADJ f s 2.05 1.55 0.60 0.54 +fonctionnellement fonctionnellement ADV 0.00 0.07 0.00 0.07 +fonctionnelles fonctionnel ADJ f p 2.05 1.55 0.04 0.20 +fonctionnels fonctionnel ADJ m p 2.05 1.55 0.13 0.34 +fonctionnement fonctionnement NOM m s 2.69 6.01 2.69 6.01 +fonctionnent fonctionner VER 42.51 24.39 5.29 1.42 ind:pre:3p; +fonctionner fonctionner VER 42.51 24.39 6.59 7.03 inf; +fonctionnera fonctionner VER 42.51 24.39 0.91 0.07 ind:fut:3s; +fonctionneraient fonctionner VER 42.51 24.39 0.02 0.00 cnd:pre:3p; +fonctionnerait fonctionner VER 42.51 24.39 0.52 0.07 cnd:pre:3s; +fonctionneront fonctionner VER 42.51 24.39 0.13 0.07 ind:fut:3p; +fonctionnes fonctionner VER 42.51 24.39 0.20 0.00 ind:pre:2s; +fonctionnez fonctionner VER 42.51 24.39 0.07 0.00 ind:pre:2p; +fonctionnons fonctionner VER 42.51 24.39 0.07 0.00 ind:pre:1p; +fonctionnât fonctionner VER 42.51 24.39 0.00 0.34 sub:imp:3s; +fonctionné fonctionner VER m s 42.51 24.39 2.98 0.81 par:pas; +fonctions fonction NOM f p 21.95 37.91 8.83 16.15 +foncé foncer VER m s 30.27 41.82 3.40 6.55 par:pas; +foncée foncé ADJ f s 4.06 11.08 0.75 1.62 +foncées foncé ADJ f p 4.06 11.08 0.14 0.47 +foncés foncé ADJ m p 4.06 11.08 0.69 1.08 +fond fond NOM m s 110.07 376.15 110.07 376.15 +fondît fondre VER 17.29 38.18 0.00 0.07 sub:imp:3s; +fonda fonder VER 15.97 34.66 0.22 1.15 ind:pas:3s; +fondaient fonder VER 15.97 34.66 0.08 3.24 ind:imp:3p; +fondais fonder VER 15.97 34.66 0.11 0.81 ind:imp:1s;ind:imp:2s; +fondait fonder VER 15.97 34.66 0.25 7.97 ind:imp:3s; +fondamental fondamental ADJ m s 4.69 9.19 1.45 2.64 +fondamentale fondamental ADJ f s 4.69 9.19 1.55 4.39 +fondamentalement fondamentalement ADV 2.03 1.15 2.03 1.15 +fondamentales fondamental ADJ f p 4.69 9.19 0.89 1.28 +fondamentalisme fondamentalisme NOM m s 0.02 0.00 0.02 0.00 +fondamentaliste fondamentaliste ADJ s 0.19 0.00 0.11 0.00 +fondamentalistes fondamentaliste NOM p 0.48 0.00 0.46 0.00 +fondamentaux fondamental ADJ m p 4.69 9.19 0.80 0.88 +fondant fondant NOM m s 0.23 0.68 0.21 0.61 +fondante fondant ADJ f s 0.18 2.70 0.05 1.08 +fondantes fondant ADJ f p 0.18 2.70 0.00 0.20 +fondants fondant ADJ m p 0.18 2.70 0.03 0.20 +fondateur fondateur NOM m s 5.10 2.16 2.40 1.69 +fondateurs fondateur NOM m p 5.10 2.16 2.64 0.20 +fondation fondation NOM f s 9.74 7.64 6.39 3.99 +fondations fondation NOM f p 9.74 7.64 3.35 3.65 +fondatrice fondateur ADJ f s 1.91 1.55 0.09 0.07 +fondatrices fondatrice NOM f p 0.01 0.00 0.01 0.00 +fonde fonder VER 15.97 34.66 2.23 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fondement fondement NOM m s 2.47 3.78 1.76 2.43 +fondements fondement NOM m p 2.47 3.78 0.71 1.35 +fondent fonder VER 15.97 34.66 1.21 3.85 ind:pre:3p;sub:pre:3p; +fonder fonder VER 15.97 34.66 4.21 4.26 inf; +fondera fonder VER 15.97 34.66 0.15 0.00 ind:fut:3s; +fonderais fonder VER 15.97 34.66 0.04 0.00 cnd:pre:1s; +fonderait fonder VER 15.97 34.66 0.02 0.00 cnd:pre:3s; +fonderez fonder VER 15.97 34.66 0.02 0.00 ind:fut:2p; +fonderie fonderie NOM f s 0.53 1.42 0.51 0.41 +fonderies fonderie NOM f p 0.53 1.42 0.03 1.01 +fonderons fonder VER 15.97 34.66 0.02 0.00 ind:fut:1p; +fonderont fonder VER 15.97 34.66 0.14 0.07 ind:fut:3p; +fondeur fondeur NOM m s 0.34 0.41 0.34 0.41 +fondez fonder VER 15.97 34.66 0.33 0.00 imp:pre:2p;ind:pre:2p; +fondions fonder VER 15.97 34.66 0.02 0.07 ind:imp:1p; +fondirent fondre VER 17.29 38.18 0.02 0.68 ind:pas:3p; +fondis fondre VER 17.29 38.18 0.00 0.07 ind:pas:1s; +fondit fondre VER 17.29 38.18 0.04 2.97 ind:pas:3s; +fondons fonder VER 15.97 34.66 0.20 0.00 imp:pre:1p;ind:pre:1p; +fondât fonder VER 15.97 34.66 0.00 0.14 sub:imp:3s; +fondouk fondouk NOM m s 0.00 0.07 0.00 0.07 +fondra fondre VER 17.29 38.18 0.28 0.27 ind:fut:3s; +fondrai fondre VER 17.29 38.18 0.16 0.00 ind:fut:1s; +fondraient fondre VER 17.29 38.18 0.01 0.20 cnd:pre:3p; +fondrait fondre VER 17.29 38.18 0.11 0.27 cnd:pre:3s; +fondras fondre VER 17.29 38.18 0.03 0.00 ind:fut:2s; +fondre fondre VER 17.29 38.18 8.03 17.70 inf; +fondriez fondre VER 17.29 38.18 0.01 0.00 cnd:pre:2p; +fondrière fondrière NOM f s 0.01 1.96 0.00 0.61 +fondrières fondrière NOM f p 0.01 1.96 0.01 1.35 +fonds fonds NOM m 15.10 16.62 15.10 16.62 +fondèrent fonder VER 15.97 34.66 0.17 0.07 ind:pas:3p; +fondé fonder VER m s 15.97 34.66 4.09 4.73 par:pas; +fondu fondre VER m s 17.29 38.18 3.42 5.95 par:pas; +fondée fonder VER f s 15.97 34.66 1.28 3.31 par:pas; +fondue fondue NOM f s 1.08 0.81 1.04 0.74 +fondées fonder VER f p 15.97 34.66 0.52 0.54 par:pas; +fondues fondre VER f p 17.29 38.18 0.11 0.81 par:pas; +fondés fonder VER m p 15.97 34.66 0.46 0.88 par:pas; +fondus fondu ADJ m p 1.82 2.84 0.22 0.47 +fongible fongible ADJ s 0.04 0.00 0.04 0.00 +fongicide fongicide NOM m s 0.04 0.00 0.04 0.00 +fongique fongique ADJ s 0.05 0.00 0.05 0.00 +fongueuse fongueux ADJ f s 0.00 0.14 0.00 0.07 +fongueuses fongueux ADJ f p 0.00 0.14 0.00 0.07 +fongus fongus NOM m 0.04 0.00 0.04 0.00 +font faire VER 8813.53 5328.99 193.61 153.92 ind:pre:3p; +fontaine fontaine NOM f s 7.72 24.46 6.62 17.36 +fontaines fontaine NOM f p 7.72 24.46 1.11 7.09 +fontainette fontainette NOM f s 0.00 0.27 0.00 0.27 +fontainier fontainier NOM m s 0.27 0.00 0.27 0.00 +fontanelle fontanelle NOM f s 0.19 0.20 0.19 0.20 +fonte fonte NOM f s 0.74 8.78 0.74 8.31 +fontes fonte NOM f p 0.74 8.78 0.00 0.47 +fonça foncer VER 30.27 41.82 0.17 3.18 ind:pas:3s; +fonçai foncer VER 30.27 41.82 0.01 0.81 ind:pas:1s; +fonçaient foncer VER 30.27 41.82 0.21 1.76 ind:imp:3p; +fonçais foncer VER 30.27 41.82 0.14 0.81 ind:imp:1s;ind:imp:2s; +fonçait foncer VER 30.27 41.82 0.23 3.85 ind:imp:3s; +fonçant foncer VER 30.27 41.82 0.26 2.30 par:pre; +fonçons foncer VER 30.27 41.82 0.23 0.34 imp:pre:1p;ind:pre:1p; +fonts fonts NOM m p 0.10 1.08 0.10 1.08 +foot foot NOM m s 24.18 5.54 24.18 5.54 +football football NOM m s 13.93 6.28 13.93 6.28 +footballeur_vedette footballeur_vedette NOM m s 0.01 0.00 0.01 0.00 +footballeur footballeur NOM m s 2.76 1.01 2.01 0.54 +footballeurs footballeur NOM m p 2.76 1.01 0.71 0.47 +footballeuse footballeur NOM f s 2.76 1.01 0.04 0.00 +footballistique footballistique ADJ f s 0.03 0.07 0.02 0.00 +footballistiques footballistique ADJ f p 0.03 0.07 0.01 0.07 +footeuse footeux ADJ f s 0.01 0.00 0.01 0.00 +footeux footeux NOM m 0.04 0.00 0.04 0.00 +footing footing NOM m s 0.45 0.34 0.45 0.34 +for for NOM m s 21.32 8.51 21.32 8.51 +forage forage NOM m s 0.91 0.27 0.82 0.20 +forages forage NOM m p 0.91 0.27 0.09 0.07 +foraient forer VER 1.66 1.69 0.02 0.14 ind:imp:3p; +forain forain ADJ m s 2.14 6.22 0.39 1.42 +foraine forain ADJ f s 2.14 6.22 1.52 3.24 +foraines forain ADJ f p 2.14 6.22 0.23 1.08 +forains forain NOM m p 0.44 2.50 0.34 1.01 +forait forer VER 1.66 1.69 0.14 0.27 ind:imp:3s; +foramen foramen NOM m s 0.03 0.00 0.03 0.00 +foraminifères foraminifère NOM m p 0.01 0.00 0.01 0.00 +forant forer VER 1.66 1.69 0.02 0.20 par:pre; +forban forban NOM m s 0.19 1.01 0.03 0.74 +forbans forban NOM m p 0.19 1.01 0.16 0.27 +force force ADJ:ind 1.41 4.86 1.41 4.86 +forcement forcement NOM m s 0.81 0.07 0.81 0.07 +forcent forcer VER 64.64 75.41 1.14 1.08 ind:pre:3p; +forcené forcené NOM m s 0.94 2.23 0.75 1.35 +forcenée forcené NOM f s 0.94 2.23 0.02 0.20 +forcenées forcené NOM f p 0.94 2.23 0.01 0.00 +forcenés forcené NOM m p 0.94 2.23 0.16 0.68 +forceps forceps NOM m 0.72 0.95 0.72 0.95 +forcer forcer VER 64.64 75.41 16.33 18.04 inf; +forcera forcer VER 64.64 75.41 0.76 0.34 ind:fut:3s; +forcerai forcer VER 64.64 75.41 0.47 0.20 ind:fut:1s; +forcerais forcer VER 64.64 75.41 0.13 0.07 cnd:pre:1s;cnd:pre:2s; +forcerait forcer VER 64.64 75.41 0.14 0.20 cnd:pre:3s; +forceras forcer VER 64.64 75.41 0.05 0.00 ind:fut:2s; +forcerez forcer VER 64.64 75.41 0.11 0.00 ind:fut:2p; +forceront forcer VER 64.64 75.41 0.12 0.00 ind:fut:3p; +forces force NOM f p 151.96 344.73 43.67 126.35 +forceur forceur NOM m s 0.02 0.20 0.02 0.07 +forceurs forceur NOM m p 0.02 0.20 0.00 0.14 +forcez forcer VER 64.64 75.41 2.81 0.74 imp:pre:2p;ind:pre:2p; +forci forcir VER m s 0.14 1.08 0.02 0.74 par:pas; +forciez forcer VER 64.64 75.41 0.06 0.00 ind:imp:2p; +forcing forcing NOM m s 0.13 0.88 0.13 0.88 +forcions forcer VER 64.64 75.41 0.03 0.20 ind:imp:1p; +forcir forcir VER 0.14 1.08 0.01 0.20 inf; +forcis forcir VER m p 0.14 1.08 0.00 0.07 par:pas; +forcissait forcir VER 0.14 1.08 0.00 0.07 ind:imp:3s; +forcit forcir VER 0.14 1.08 0.11 0.00 ind:pre:3s; +forcèrent forcer VER 64.64 75.41 0.04 0.68 ind:pas:3p; +forcé forcer VER m s 64.64 75.41 16.33 16.55 par:pas; +forcée forcer VER f s 64.64 75.41 6.41 4.46 par:pas; +forcées forcer VER f p 64.64 75.41 0.94 0.61 par:pas; +forcément forcément ADV 24.23 29.12 24.23 29.12 +forcés forcer VER m p 64.64 75.41 2.67 2.64 par:pas; +fore forer VER 1.66 1.69 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +foreign_office foreign_office NOM m s 0.00 2.50 0.00 2.50 +forent forer VER 1.66 1.69 0.01 0.07 ind:pre:3p; +forer forer VER 1.66 1.69 0.80 0.47 inf; +forestier forestier ADJ m s 3.19 6.42 2.13 2.09 +forestiers forestier ADJ m p 3.19 6.42 0.42 0.61 +forestière forestier ADJ f s 3.19 6.42 0.49 2.91 +forestières forestier ADJ f p 3.19 6.42 0.14 0.81 +foret foret NOM m s 1.56 0.54 1.16 0.14 +forets foret NOM m p 1.56 0.54 0.40 0.41 +foreur foreur ADJ m s 0.43 0.00 0.42 0.00 +foreurs foreur NOM m p 1.04 0.20 0.13 0.07 +foreuse foreur NOM f s 1.04 0.20 0.68 0.14 +foreuses foreuse NOM f p 0.17 0.00 0.17 0.00 +forez forer VER 1.66 1.69 0.03 0.00 ind:pre:2p; +forfait forfait NOM m s 2.03 4.59 1.50 3.38 +forfaitaire forfaitaire ADJ s 0.05 0.20 0.05 0.14 +forfaitaires forfaitaire ADJ f p 0.05 0.20 0.00 0.07 +forfaits forfait NOM m p 2.03 4.59 0.53 1.22 +forfaiture forfaiture NOM f s 0.02 0.61 0.02 0.61 +forfanterie forfanterie NOM f s 0.17 0.74 0.17 0.68 +forfanteries forfanterie NOM f p 0.17 0.74 0.00 0.07 +forficules forficule NOM f p 0.00 0.07 0.00 0.07 +forge forger VER 9.02 11.82 1.78 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +forgea forger VER 9.02 11.82 0.00 0.07 ind:pas:3s; +forgeage forgeage NOM m s 0.14 0.00 0.14 0.00 +forgeaient forger VER 9.02 11.82 0.00 0.07 ind:imp:3p; +forgeais forger VER 9.02 11.82 0.00 0.07 ind:imp:1s; +forgeait forger VER 9.02 11.82 0.12 0.61 ind:imp:3s; +forgeant forger VER 9.02 11.82 0.10 0.27 par:pre; +forgent forger VER 9.02 11.82 0.31 0.20 ind:pre:3p; +forgeons forger VER 9.02 11.82 0.02 0.14 imp:pre:1p;ind:pre:1p; +forger forger VER 9.02 11.82 3.16 1.62 inf; +forgera forger VER 9.02 11.82 0.21 0.07 ind:fut:3s; +forgerai forger VER 9.02 11.82 0.20 0.00 ind:fut:1s; +forgeries forgerie NOM f p 0.00 0.07 0.00 0.07 +forgeron forgeron NOM m s 3.76 4.39 3.49 3.38 +forgeronne forgeron NOM f s 3.76 4.39 0.02 0.00 +forgerons forgeron NOM m p 3.76 4.39 0.25 1.01 +forges forge NOM f p 1.64 8.58 0.13 0.95 +forgeur forgeur NOM m s 0.15 0.00 0.15 0.00 +forgions forger VER 9.02 11.82 0.10 0.07 ind:imp:1p; +forgèrent forger VER 9.02 11.82 0.03 0.00 ind:pas:3p; +forgé forger VER m s 9.02 11.82 1.55 5.81 par:pas; +forgée forger VER f s 9.02 11.82 0.92 0.41 par:pas; +forgées forger VER f p 9.02 11.82 0.05 0.88 par:pas; +forgés forger VER m p 9.02 11.82 0.45 0.74 par:pas; +forints forint NOM m p 0.14 0.00 0.14 0.00 +forlane forlane NOM f s 0.10 0.00 0.10 0.00 +forlonger forlonger VER 0.00 0.14 0.00 0.07 inf; +forlongés forlonger VER m p 0.00 0.14 0.00 0.07 par:pas; +forma former VER 39.69 110.27 0.16 2.16 ind:pas:3s; +formage formage NOM m s 0.00 0.07 0.00 0.07 +formai former VER 39.69 110.27 0.00 0.07 ind:pas:1s; +formaient former VER 39.69 110.27 0.73 16.96 ind:imp:3p; +formais former VER 39.69 110.27 0.01 0.47 ind:imp:1s; +formait former VER 39.69 110.27 1.42 11.69 ind:imp:3s; +formaldéhyde formaldéhyde NOM m s 0.34 0.00 0.34 0.00 +formalisa formaliser VER 0.43 2.23 0.00 0.34 ind:pas:3s; +formalisaient formaliser VER 0.43 2.23 0.00 0.07 ind:imp:3p; +formalisais formaliser VER 0.43 2.23 0.00 0.14 ind:imp:1s; +formalisait formaliser VER 0.43 2.23 0.00 0.41 ind:imp:3s; +formalise formaliser VER 0.43 2.23 0.13 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +formaliser formaliser VER 0.43 2.23 0.04 0.68 inf; +formalisera formaliser VER 0.43 2.23 0.01 0.00 ind:fut:3s; +formaliserait formaliser VER 0.43 2.23 0.00 0.14 cnd:pre:3s; +formalisez formaliser VER 0.43 2.23 0.25 0.07 imp:pre:2p;ind:pre:2p; +formalisme formalisme NOM m s 0.12 0.34 0.12 0.34 +formalisât formaliser VER 0.43 2.23 0.00 0.07 sub:imp:3s; +formaliste formaliste ADJ m s 0.02 0.27 0.02 0.07 +formalistes formaliste ADJ f p 0.02 0.27 0.00 0.20 +formalisé formalisé ADJ m s 0.01 0.00 0.01 0.00 +formalisée formaliser VER f s 0.43 2.23 0.00 0.07 par:pas; +formalisés formaliser VER m p 0.43 2.23 0.00 0.07 par:pas; +formalité formalité NOM f s 7.08 7.03 3.77 2.97 +formalités formalité NOM f p 7.08 7.03 3.30 4.05 +formant former VER 39.69 110.27 0.56 7.91 par:pre; +format format NOM m s 1.90 8.11 1.80 6.96 +formatage formatage NOM m s 0.07 0.00 0.07 0.00 +formater formater VER 0.13 0.00 0.04 0.00 inf; +formateur formateur ADJ m s 0.42 0.20 0.19 0.07 +formation formation NOM f s 14.40 12.16 13.68 9.32 +formations formation NOM f p 14.40 12.16 0.72 2.84 +formatrice formateur ADJ f s 0.42 0.20 0.12 0.14 +formatrices formateur ADJ f p 0.42 0.20 0.11 0.00 +formats format NOM m p 1.90 8.11 0.10 1.15 +formaté formater VER m s 0.13 0.00 0.09 0.00 par:pas; +forme forme NOM f s 94.19 176.69 82.61 137.91 +formel formel ADJ m s 4.55 9.05 2.40 3.31 +formelle formel ADJ f s 4.55 9.05 1.13 3.99 +formellement formellement ADV 1.48 4.53 1.48 4.53 +formelles formel ADJ f p 4.55 9.05 0.40 0.81 +formels formel ADJ m p 4.55 9.05 0.62 0.95 +forment former VER 39.69 110.27 4.51 11.01 ind:pre:3p;sub:pre:3p; +former former VER 39.69 110.27 8.18 15.95 inf; +formera former VER 39.69 110.27 0.59 0.07 ind:fut:3s; +formerai former VER 39.69 110.27 0.10 0.07 ind:fut:1s; +formeraient former VER 39.69 110.27 0.28 0.54 cnd:pre:3p; +formerais former VER 39.69 110.27 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +formerait former VER 39.69 110.27 0.09 0.34 cnd:pre:3s; +formerez former VER 39.69 110.27 0.22 0.07 ind:fut:2p; +formeriez former VER 39.69 110.27 0.13 0.00 cnd:pre:2p; +formerons former VER 39.69 110.27 0.52 0.14 ind:fut:1p; +formeront former VER 39.69 110.27 0.42 0.41 ind:fut:3p; +formes forme NOM f p 94.19 176.69 11.58 38.78 +formez former VER 39.69 110.27 2.70 0.27 imp:pre:2p;ind:pre:2p; +formica formica NOM m s 0.28 2.03 0.28 1.96 +formicas formica NOM m p 0.28 2.03 0.00 0.07 +formid formid ADJ f s 0.02 0.20 0.02 0.14 +formidable formidable ADJ s 54.23 34.32 51.79 30.07 +formidablement formidablement ADV 0.24 1.42 0.24 1.42 +formidables formidable ADJ p 54.23 34.32 2.44 4.26 +formide formide ADJ s 0.01 0.27 0.01 0.20 +formides formide ADJ f p 0.01 0.27 0.00 0.07 +formids formid ADJ p 0.02 0.20 0.00 0.07 +formiez former VER 39.69 110.27 0.30 0.07 ind:imp:2p; +formions former VER 39.69 110.27 0.24 1.62 ind:imp:1p; +formique formique ADJ m s 0.04 0.07 0.04 0.07 +formol formol NOM m s 0.88 0.74 0.88 0.74 +formons former VER 39.69 110.27 1.94 0.88 imp:pre:1p;ind:pre:1p; +formèrent former VER 39.69 110.27 0.28 1.42 ind:pas:3p; +formé former VER m s 39.69 110.27 5.50 14.32 par:pas; +formée former VER f s 39.69 110.27 2.00 5.47 ind:imp:3p;par:pas; +formées former VER f p 39.69 110.27 0.25 2.23 par:pas; +formula formuler VER 3.52 15.54 0.01 0.54 ind:pas:3s; +formulai formuler VER 3.52 15.54 0.00 0.14 ind:pas:1s; +formulaient formuler VER 3.52 15.54 0.00 0.14 ind:imp:3p; +formulaire formulaire NOM m s 9.73 1.55 6.93 0.81 +formulaires formulaire NOM m p 9.73 1.55 2.80 0.74 +formulais formuler VER 3.52 15.54 0.11 0.34 ind:imp:1s; +formulait formuler VER 3.52 15.54 0.01 1.08 ind:imp:3s; +formulant formuler VER 3.52 15.54 0.00 0.54 par:pre; +formulation formulation NOM f s 0.41 1.15 0.28 1.01 +formulations formulation NOM f p 0.41 1.15 0.14 0.14 +formule formule NOM f s 12.53 34.39 10.97 22.84 +formulent formuler VER 3.52 15.54 0.01 0.20 ind:pre:3p; +formuler formuler VER 3.52 15.54 1.88 7.50 inf; +formulera formuler VER 3.52 15.54 0.00 0.20 ind:fut:3s; +formules formule NOM f p 12.53 34.39 1.56 11.55 +formulettes formulette NOM f p 0.00 0.07 0.00 0.07 +formulez formuler VER 3.52 15.54 0.07 0.14 imp:pre:2p;ind:pre:2p; +formulons formuler VER 3.52 15.54 0.04 0.07 imp:pre:1p;ind:pre:1p; +formulât formuler VER 3.52 15.54 0.00 0.07 sub:imp:3s; +formulé formuler VER m s 3.52 15.54 0.44 1.22 par:pas; +formulée formulé ADJ f s 0.26 1.69 0.13 0.54 +formulées formuler VER f p 3.52 15.54 0.08 1.15 par:pas; +formulés formulé ADJ m p 0.26 1.69 0.01 0.27 +formés former VER m p 39.69 110.27 1.49 3.92 par:pas; +fornicateur fornicateur NOM m s 0.51 0.34 0.21 0.14 +fornicateurs fornicateur NOM m p 0.51 0.34 0.11 0.20 +fornication fornication NOM f s 1.06 1.22 1.05 0.95 +fornications fornication NOM f p 1.06 1.22 0.01 0.27 +fornicatrice fornicateur NOM f s 0.51 0.34 0.19 0.00 +forniquaient forniquer VER 0.89 1.22 0.01 0.14 ind:imp:3p; +forniquait forniquer VER 0.89 1.22 0.01 0.27 ind:imp:3s; +forniquant forniquer VER 0.89 1.22 0.05 0.07 par:pre; +fornique forniquer VER 0.89 1.22 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +forniquent forniquer VER 0.89 1.22 0.07 0.07 ind:pre:3p; +forniquer forniquer VER 0.89 1.22 0.51 0.47 inf; +forniqué forniquer VER m s 0.89 1.22 0.19 0.14 par:pas; +fors fors PRE 0.01 0.27 0.01 0.27 +forsythias forsythia NOM m p 0.00 0.07 0.00 0.07 +fort fort ADV 171.91 212.77 171.91 212.77 +forte fort ADJ f s 95.28 140.27 42.42 62.64 +fortement fortement ADV 4.25 15.68 4.25 15.68 +forteresse forteresse NOM f s 7.53 16.96 7.38 14.05 +forteresses forteresse NOM f p 7.53 16.96 0.14 2.91 +fortes fort ADJ f p 95.28 140.27 7.92 16.35 +força forcer VER 64.64 75.41 0.34 3.38 ind:pas:3s; +forçage forçage NOM m s 0.04 0.14 0.04 0.14 +forçai forcer VER 64.64 75.41 0.11 0.34 ind:pas:1s; +forçaient forcer VER 64.64 75.41 0.05 0.61 ind:imp:3p; +forçais forcer VER 64.64 75.41 0.22 1.35 ind:imp:1s;ind:imp:2s; +forçait forcer VER 64.64 75.41 0.70 6.76 ind:imp:3s; +forçant forcer VER 64.64 75.41 0.91 4.86 par:pre; +forçat forçat NOM m s 1.26 3.11 0.30 1.35 +forçats forçat NOM m p 1.26 3.11 0.96 1.76 +forçons forcer VER 64.64 75.41 0.27 0.14 imp:pre:1p;ind:pre:1p; +forçât forcer VER 64.64 75.41 0.00 0.20 sub:imp:3s; +fortiche fortiche ADJ s 1.14 2.03 0.84 1.49 +fortiches fortiche ADJ p 1.14 2.03 0.30 0.54 +fortifia fortifier VER 2.19 6.55 0.11 0.27 ind:pas:3s; +fortifiaient fortifier VER 2.19 6.55 0.01 0.14 ind:imp:3p; +fortifiais fortifier VER 2.19 6.55 0.00 0.07 ind:imp:1s; +fortifiait fortifier VER 2.19 6.55 0.00 0.81 ind:imp:3s; +fortifiant fortifiant NOM m s 0.26 0.54 0.23 0.34 +fortifiants fortifiant NOM m p 0.26 0.54 0.04 0.20 +fortification fortification NOM f s 0.68 2.36 0.22 0.34 +fortifications fortification NOM f p 0.68 2.36 0.46 2.03 +fortifie fortifier VER 2.19 6.55 0.74 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fortifient fortifier VER 2.19 6.55 0.04 0.34 ind:pre:3p; +fortifier fortifier VER 2.19 6.55 0.47 1.22 inf; +fortifiera fortifier VER 2.19 6.55 0.13 0.00 ind:fut:3s; +fortifierait fortifier VER 2.19 6.55 0.00 0.07 cnd:pre:3s; +fortifiez fortifier VER 2.19 6.55 0.01 0.07 imp:pre:2p; +fortifions fortifier VER 2.19 6.55 0.10 0.07 imp:pre:1p; +fortifiât fortifier VER 2.19 6.55 0.00 0.07 sub:imp:3s; +fortifièrent fortifier VER 2.19 6.55 0.01 0.00 ind:pas:3p; +fortifié fortifier VER m s 2.19 6.55 0.22 1.01 par:pas; +fortifiée fortifié ADJ f s 0.43 1.82 0.29 0.68 +fortifiées fortifier VER f p 2.19 6.55 0.02 0.27 par:pas; +fortifiés fortifier VER m p 2.19 6.55 0.14 0.14 par:pas; +fortifs fortif NOM f p 0.00 1.01 0.00 1.01 +fortin fortin NOM m s 0.33 3.31 0.32 2.70 +fortins fortin NOM m p 0.33 3.31 0.01 0.61 +fortissimo fortissimo NOM m s 0.11 0.20 0.11 0.20 +fortitude fortitude NOM f s 0.05 0.07 0.05 0.07 +fortraiture fortraiture NOM f s 0.00 0.07 0.00 0.07 +forts fort ADJ m p 95.28 140.27 17.00 17.43 +fortuit fortuit ADJ m s 1.96 3.38 0.55 1.22 +fortuite fortuit ADJ f s 1.96 3.38 1.29 1.28 +fortuitement fortuitement ADV 0.17 0.34 0.17 0.34 +fortuites fortuit ADJ f p 1.96 3.38 0.07 0.68 +fortuits fortuit ADJ m p 1.96 3.38 0.05 0.20 +fortune fortune NOM f s 33.62 51.49 32.35 46.49 +fortunes fortune NOM f p 33.62 51.49 1.27 5.00 +fortuné fortuné ADJ m s 2.84 3.45 1.24 1.35 +fortunée fortuné ADJ f s 2.84 3.45 0.48 0.41 +fortunées fortuné ADJ f p 2.84 3.45 0.17 0.47 +fortunés fortuné ADJ m p 2.84 3.45 0.95 1.22 +foré forer VER m s 1.66 1.69 0.23 0.14 par:pas; +forée forer VER f s 1.66 1.69 0.01 0.14 par:pas; +forum forum NOM m s 1.40 1.08 1.14 0.95 +forums forum NOM m p 1.40 1.08 0.26 0.14 +forés forer VER m p 1.66 1.69 0.14 0.14 par:pas; +forêt forêt NOM f s 34.94 113.31 29.57 91.89 +forêts forêt NOM f p 34.94 113.31 5.37 21.42 +fosse fosse NOM f s 7.92 14.05 6.64 10.74 +fosses fosse NOM f p 7.92 14.05 1.27 3.31 +fossette fossette NOM f s 0.86 4.32 0.44 2.09 +fossettes fossette NOM f p 0.86 4.32 0.42 2.23 +fossile fossile NOM m s 2.02 0.74 1.40 0.20 +fossiles fossile NOM m p 2.02 0.74 0.62 0.54 +fossilisation fossilisation NOM f s 0.13 0.07 0.13 0.07 +fossilisé fossiliser VER m s 0.17 0.68 0.08 0.41 par:pas; +fossilisés fossiliser VER m p 0.17 0.68 0.09 0.27 par:pas; +fossoyeur fossoyeur NOM m s 2.77 2.70 2.00 1.42 +fossoyeurs fossoyeur NOM m p 2.77 2.70 0.77 1.28 +fossoyeuse fossoyeuse NOM f s 0.01 0.00 0.01 0.00 +fossé fossé NOM m s 4.71 26.42 4.10 20.07 +fossés fossé NOM m p 4.71 26.42 0.61 6.35 +fou_fou fou_fou ADJ m s 0.08 0.00 0.08 0.00 +fou_rire fou_rire NOM m s 0.02 0.14 0.02 0.14 +fou fou ADJ m s 321.31 164.32 181.51 82.03 +fouaces fouace NOM f p 0.00 0.07 0.00 0.07 +fouailla fouailler VER 0.00 1.55 0.00 0.20 ind:pas:3s; +fouaillai fouailler VER 0.00 1.55 0.00 0.07 ind:pas:1s; +fouaillaient fouailler VER 0.00 1.55 0.00 0.14 ind:imp:3p; +fouaillait fouailler VER 0.00 1.55 0.00 0.07 ind:imp:3s; +fouaillant fouailler VER 0.00 1.55 0.00 0.14 par:pre; +fouaille fouaille NOM f s 0.00 1.22 0.00 1.22 +fouailler fouailler VER 0.00 1.55 0.00 0.34 inf; +fouaillé fouailler VER m s 0.00 1.55 0.00 0.20 par:pas; +fouaillée fouailler VER f s 0.00 1.55 0.00 0.14 par:pas; +fouaillées fouailler VER f p 0.00 1.55 0.00 0.07 par:pas; +foucade foucade NOM f s 0.01 0.47 0.01 0.14 +foucades foucade NOM f p 0.01 0.47 0.00 0.34 +fouchtra fouchtra ONO 0.00 0.27 0.00 0.27 +foudre foudre NOM s 12.94 14.46 12.50 12.64 +foudres foudre NOM p 12.94 14.46 0.44 1.82 +foudroie foudroyer VER 2.36 8.99 0.34 0.41 ind:pre:1s;ind:pre:3s; +foudroiement foudroiement NOM m s 0.01 0.00 0.01 0.00 +foudroient foudroyer VER 2.36 8.99 0.00 0.14 ind:pre:3p; +foudroiera foudroyer VER 2.36 8.99 0.01 0.07 ind:fut:3s; +foudroieraient foudroyer VER 2.36 8.99 0.00 0.07 cnd:pre:3p; +foudroierait foudroyer VER 2.36 8.99 0.00 0.07 cnd:pre:3s; +foudroya foudroyer VER 2.36 8.99 0.01 0.41 ind:pas:3s; +foudroyaient foudroyer VER 2.36 8.99 0.00 0.14 ind:imp:3p; +foudroyait foudroyer VER 2.36 8.99 0.00 0.47 ind:imp:3s; +foudroyant foudroyant ADJ m s 0.52 6.62 0.41 2.23 +foudroyante foudroyant ADJ f s 0.52 6.62 0.10 3.24 +foudroyantes foudroyant ADJ f p 0.52 6.62 0.00 0.54 +foudroyants foudroyant ADJ m p 0.52 6.62 0.01 0.61 +foudroyer foudroyer VER 2.36 8.99 0.39 1.35 inf; +foudroyions foudroyer VER 2.36 8.99 0.01 0.00 ind:imp:1p; +foudroyèrent foudroyer VER 2.36 8.99 0.00 0.07 ind:pas:3p; +foudroyé foudroyer VER m s 2.36 8.99 0.91 2.84 par:pas; +foudroyée foudroyer VER f s 2.36 8.99 0.36 0.95 par:pas; +foudroyées foudroyer VER f p 2.36 8.99 0.04 0.27 par:pas; +foudroyés foudroyer VER m p 2.36 8.99 0.28 1.42 par:pas; +fouet fouet NOM m s 8.56 18.31 7.92 16.69 +fouets fouet NOM m p 8.56 18.31 0.63 1.62 +fouetta fouetter VER 7.61 17.36 0.14 0.68 ind:pas:3s; +fouettaient fouetter VER 7.61 17.36 0.02 0.41 ind:imp:3p; +fouettais fouetter VER 7.61 17.36 0.04 0.27 ind:imp:1s; +fouettait fouetter VER 7.61 17.36 0.09 2.36 ind:imp:3s; +fouettant fouetter VER 7.61 17.36 0.03 1.42 par:pre; +fouettard fouettard ADJ m s 0.34 0.68 0.34 0.47 +fouettards fouettard ADJ m p 0.34 0.68 0.00 0.20 +fouette fouetter VER 7.61 17.36 1.65 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fouettement fouettement NOM m s 0.01 0.27 0.01 0.20 +fouettements fouettement NOM m p 0.01 0.27 0.00 0.07 +fouettent fouetter VER 7.61 17.36 0.07 0.68 ind:pre:3p; +fouetter fouetter VER 7.61 17.36 2.27 4.26 inf; +fouettera fouetter VER 7.61 17.36 0.06 0.00 ind:fut:3s; +fouetterai fouetter VER 7.61 17.36 0.12 0.00 ind:fut:1s; +fouetterait fouetter VER 7.61 17.36 0.03 0.07 cnd:pre:3s; +fouetteront fouetter VER 7.61 17.36 0.02 0.07 ind:fut:3p; +fouettes fouetter VER 7.61 17.36 0.12 0.07 ind:pre:2s; +fouetteur fouetteur NOM m s 0.16 0.41 0.02 0.00 +fouetteurs fouetteur NOM m p 0.16 0.41 0.14 0.07 +fouetteuse fouetteur NOM f s 0.16 0.41 0.00 0.34 +fouettez fouetter VER 7.61 17.36 0.36 0.14 imp:pre:2p;ind:pre:2p; +fouettons fouetter VER 7.61 17.36 0.02 0.14 imp:pre:1p;ind:pre:1p; +fouettèrent fouetter VER 7.61 17.36 0.00 0.14 ind:pas:3p; +fouetté fouetter VER m s 7.61 17.36 0.81 1.69 par:pas; +fouettée fouetter VER f s 7.61 17.36 1.50 1.69 par:pas; +fouettées fouetter VER f p 7.61 17.36 0.04 0.54 par:pas; +fouettés fouetter VER m p 7.61 17.36 0.22 0.47 par:pas; +foufou foufou ADJ m s 0.44 0.00 0.42 0.00 +foufoune foufoune NOM f s 0.69 0.00 0.57 0.00 +foufounes foufoune NOM f p 0.69 0.00 0.12 0.00 +foufounette foufounette NOM f s 0.01 0.20 0.01 0.20 +foufous foufou ADJ m p 0.44 0.00 0.01 0.00 +fougasse fougasse NOM f s 2.54 0.14 2.54 0.14 +fouge fouger VER 0.10 0.00 0.10 0.00 imp:pre:2s; +fougeraie fougeraie NOM f s 0.00 0.61 0.00 0.54 +fougeraies fougeraie NOM f p 0.00 0.61 0.00 0.07 +fougère fougère NOM f s 0.76 8.11 0.48 0.74 +fougères fougère NOM f p 0.76 8.11 0.27 7.36 +fougue fougue NOM f s 1.17 5.14 1.17 5.07 +fougues fougue NOM f p 1.17 5.14 0.00 0.07 +fougueuse fougueux ADJ f s 1.72 3.45 0.26 0.74 +fougueusement fougueusement ADV 0.05 0.47 0.05 0.47 +fougueuses fougueux ADJ f p 1.72 3.45 0.05 0.27 +fougueux fougueux ADJ m 1.72 3.45 1.41 2.43 +foui fouir VER m s 0.04 0.95 0.02 0.34 par:pas; +fouie fouir VER f s 0.04 0.95 0.01 0.07 par:pas; +fouies fouir VER f p 0.04 0.95 0.00 0.07 par:pas; +fouilla fouiller VER 42.37 47.16 0.01 5.27 ind:pas:3s; +fouillai fouiller VER 42.37 47.16 0.01 0.47 ind:pas:1s; +fouillaient fouiller VER 42.37 47.16 0.08 1.76 ind:imp:3p; +fouillais fouiller VER 42.37 47.16 0.37 0.95 ind:imp:1s;ind:imp:2s; +fouillait fouiller VER 42.37 47.16 0.37 5.81 ind:imp:3s; +fouillant fouiller VER 42.37 47.16 1.43 5.14 par:pre; +fouillasse fouiller VER 42.37 47.16 0.00 0.07 sub:imp:1s; +fouille fouiller VER 42.37 47.16 6.09 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fouillent fouiller VER 42.37 47.16 1.46 1.82 ind:pre:3p; +fouiller fouiller VER 42.37 47.16 12.87 11.76 inf; +fouillera fouiller VER 42.37 47.16 0.30 0.07 ind:fut:3s; +fouillerai fouiller VER 42.37 47.16 0.10 0.07 ind:fut:1s; +fouillerais fouiller VER 42.37 47.16 0.03 0.00 cnd:pre:1s; +fouillerait fouiller VER 42.37 47.16 0.17 0.07 cnd:pre:3s; +fouilleras fouiller VER 42.37 47.16 0.03 0.00 ind:fut:2s; +fouillerons fouiller VER 42.37 47.16 0.07 0.00 ind:fut:1p; +fouilleront fouiller VER 42.37 47.16 0.10 0.00 ind:fut:3p; +fouilles fouille NOM f p 5.00 11.28 1.81 4.53 +fouillette fouillette NOM f s 0.00 0.20 0.00 0.20 +fouilleur fouilleur NOM m s 0.05 0.41 0.03 0.27 +fouilleurs fouilleur ADJ m p 0.03 0.07 0.01 0.07 +fouilleuse fouilleur NOM f s 0.05 0.41 0.03 0.07 +fouillez fouiller VER 42.37 47.16 6.79 0.41 imp:pre:2p;ind:pre:2p; +fouilliez fouiller VER 42.37 47.16 0.21 0.00 ind:imp:2p; +fouillis fouillis NOM m 0.81 7.16 0.81 7.16 +fouillons fouiller VER 42.37 47.16 0.61 0.07 imp:pre:1p;ind:pre:1p; +fouillèrent fouiller VER 42.37 47.16 0.01 0.81 ind:pas:3p; +fouillé fouiller VER m s 42.37 47.16 8.89 4.05 par:pas; +fouillée fouiller VER f s 42.37 47.16 0.85 0.74 par:pas; +fouillées fouiller VER f p 42.37 47.16 0.07 0.27 par:pas; +fouillés fouiller VER m p 42.37 47.16 0.51 0.27 par:pas; +fouinaient fouiner VER 5.54 2.43 0.02 0.20 ind:imp:3p; +fouinais fouiner VER 5.54 2.43 0.17 0.07 ind:imp:1s;ind:imp:2s; +fouinait fouiner VER 5.54 2.43 0.19 0.47 ind:imp:3s; +fouinant fouiner VER 5.54 2.43 0.05 0.20 par:pre; +fouinard fouinard NOM m s 0.13 0.00 0.11 0.00 +fouinards fouinard NOM m p 0.13 0.00 0.02 0.00 +fouine fouine NOM f s 2.87 2.43 2.45 1.89 +fouinent fouiner VER 5.54 2.43 0.36 0.07 ind:pre:3p; +fouiner fouiner VER 5.54 2.43 3.31 1.08 inf; +fouinera fouiner VER 5.54 2.43 0.01 0.00 ind:fut:3s; +fouineriez fouiner VER 5.54 2.43 0.01 0.00 cnd:pre:2p; +fouines fouine NOM f p 2.87 2.43 0.42 0.54 +fouineur fouineur NOM m s 0.80 0.07 0.23 0.07 +fouineurs fouineur NOM m p 0.80 0.07 0.27 0.00 +fouineuse fouineur NOM f s 0.80 0.07 0.29 0.00 +fouinez fouiner VER 5.54 2.43 0.14 0.07 imp:pre:2p;ind:pre:2p; +fouiniez fouiner VER 5.54 2.43 0.03 0.00 ind:imp:2p; +fouiné fouiner VER m s 5.54 2.43 0.39 0.00 par:pas; +fouir fouir VER 0.04 0.95 0.00 0.20 inf; +fouissait fouir VER 0.04 0.95 0.00 0.07 ind:imp:3s; +fouissant fouir VER 0.04 0.95 0.00 0.07 par:pre; +fouissent fouir VER 0.04 0.95 0.00 0.07 ind:pre:3p; +fouisseur fouisseur ADJ m s 0.01 0.34 0.01 0.07 +fouisseurs fouisseur ADJ m p 0.01 0.34 0.00 0.07 +fouisseuse fouisseur ADJ f s 0.01 0.34 0.00 0.14 +fouisseuses fouisseur ADJ f p 0.01 0.34 0.00 0.07 +fouit fouir VER 0.04 0.95 0.01 0.07 ind:pre:3s; +foula fouler VER 3.06 9.59 0.04 0.14 ind:pas:3s; +foulage foulage NOM m s 0.00 0.07 0.00 0.07 +foulaient fouler VER 3.06 9.59 0.00 0.61 ind:imp:3p; +foulais fouler VER 3.06 9.59 0.05 0.27 ind:imp:1s; +foulait fouler VER 3.06 9.59 0.14 0.41 ind:imp:3s; +foulant fouler VER 3.06 9.59 0.13 1.01 par:pre; +foulard foulard NOM m s 4.44 19.19 3.94 15.95 +foulards foulard NOM m p 4.44 19.19 0.50 3.24 +foulbé foulbé ADJ s 0.00 0.07 0.00 0.07 +foule foule NOM f s 27.81 112.30 25.95 101.62 +foulent fouler VER 3.06 9.59 0.16 0.27 ind:pre:3p; +fouler fouler VER 3.06 9.59 0.65 2.57 inf; +foulera fouler VER 3.06 9.59 0.04 0.00 ind:fut:3s; +fouleraient fouler VER 3.06 9.59 0.00 0.07 cnd:pre:3p; +foulerait fouler VER 3.06 9.59 0.00 0.07 cnd:pre:3s; +foulerez fouler VER 3.06 9.59 0.03 0.00 ind:fut:2p; +foules foule NOM f p 27.81 112.30 1.86 10.68 +fouleur fouleur NOM m s 0.01 0.00 0.01 0.00 +foulions fouler VER 3.06 9.59 0.01 0.14 ind:imp:1p; +fouloir fouloir NOM m s 0.00 0.14 0.00 0.14 +foulon foulon NOM m s 0.14 0.00 0.14 0.00 +foulons fouler VER 3.06 9.59 0.11 0.14 ind:pre:1p; +foulque foulque NOM f s 0.03 0.07 0.01 0.00 +foulques foulque NOM f p 0.03 0.07 0.01 0.07 +foulèrent fouler VER 3.06 9.59 0.04 0.20 ind:pas:3p; +foulé fouler VER m s 3.06 9.59 1.11 1.49 par:pas; +foulée foulée NOM f s 0.56 7.30 0.50 5.34 +foulées foulée NOM f p 0.56 7.30 0.06 1.96 +foulure foulure NOM f s 0.21 0.20 0.17 0.20 +foulures foulure NOM f p 0.21 0.20 0.03 0.00 +foulés fouler VER m p 3.06 9.59 0.03 0.41 par:pas; +foëne foëne NOM f s 0.00 0.07 0.00 0.07 +four four NOM m s 15.44 28.99 13.95 25.07 +fourbais fourber VER 0.00 0.14 0.00 0.07 ind:imp:1s; +fourbe fourbe ADJ s 1.70 1.08 1.32 0.68 +fourber fourber VER 0.00 0.14 0.00 0.07 inf; +fourberie fourberie NOM f s 0.65 1.28 0.52 0.88 +fourberies fourberie NOM f p 0.65 1.28 0.14 0.41 +fourbes fourbe NOM p 1.52 0.81 0.41 0.20 +fourbi fourbi NOM m s 0.78 3.18 0.77 2.91 +fourbie fourbir VER f s 0.03 1.55 0.00 0.07 par:pas; +fourbir fourbir VER 0.03 1.55 0.01 0.34 inf; +fourbis fourbi NOM m p 0.78 3.18 0.01 0.27 +fourbissaient fourbir VER 0.03 1.55 0.00 0.14 ind:imp:3p; +fourbissais fourbir VER 0.03 1.55 0.00 0.07 ind:imp:1s; +fourbissait fourbir VER 0.03 1.55 0.00 0.27 ind:imp:3s; +fourbissant fourbir VER 0.03 1.55 0.00 0.20 par:pre; +fourbit fourbir VER 0.03 1.55 0.01 0.14 ind:pre:3s; +fourbu fourbu ADJ m s 0.42 6.01 0.12 2.84 +fourbue fourbu ADJ f s 0.42 6.01 0.14 0.81 +fourbues fourbu ADJ f p 0.42 6.01 0.01 0.74 +fourbus fourbu ADJ m p 0.42 6.01 0.16 1.62 +fourcha fourcher VER 0.33 0.27 0.00 0.14 ind:pas:3s; +fourche fourche NOM f s 1.57 8.18 1.21 5.61 +fourchent fourcher VER 0.33 0.27 0.01 0.00 ind:pre:3p; +fourcher fourcher VER 0.33 0.27 0.03 0.00 inf; +fourches fourche NOM f p 1.57 8.18 0.36 2.57 +fourchet fourchet NOM m s 0.00 0.14 0.00 0.07 +fourchets fourchet NOM m p 0.00 0.14 0.00 0.07 +fourchette fourchette NOM f s 5.85 14.19 4.98 10.95 +fourchettes fourchette NOM f p 5.85 14.19 0.87 3.24 +fourchez fourcher VER 0.33 0.27 0.03 0.00 imp:pre:2p; +fourché fourcher VER m s 0.33 0.27 0.15 0.14 par:pas; +fourchu fourchu ADJ m s 0.75 1.42 0.17 0.27 +fourchée fourcher VER f s 0.33 0.27 0.01 0.00 par:pas; +fourchue fourchu ADJ f s 0.75 1.42 0.20 0.54 +fourchues fourchu ADJ f p 0.75 1.42 0.01 0.07 +fourchures fourchure NOM f p 0.00 0.14 0.00 0.14 +fourchus fourchu ADJ m p 0.75 1.42 0.37 0.54 +fourgon fourgon NOM m s 8.69 7.70 7.87 5.14 +fourgonnait fourgonner VER 0.00 0.61 0.00 0.14 ind:imp:3s; +fourgonnas fourgonner VER 0.00 0.61 0.00 0.07 ind:pas:2s; +fourgonne fourgonner VER 0.00 0.61 0.00 0.07 ind:pre:3s; +fourgonner fourgonner VER 0.00 0.61 0.00 0.34 inf; +fourgonnette fourgonnette NOM f s 1.31 1.76 1.26 1.62 +fourgonnettes fourgonnette NOM f p 1.31 1.76 0.05 0.14 +fourgons fourgon NOM m p 8.69 7.70 0.82 2.57 +fourguais fourguer VER 2.47 5.07 0.03 0.07 ind:imp:1s; +fourguait fourguer VER 2.47 5.07 0.02 0.61 ind:imp:3s; +fourguant fourguer VER 2.47 5.07 0.03 0.20 par:pre; +fourgue fourguer VER 2.47 5.07 0.28 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fourguent fourguer VER 2.47 5.07 0.16 0.14 ind:pre:3p; +fourguer fourguer VER 2.47 5.07 1.10 1.82 inf; +fourgueraient fourguer VER 2.47 5.07 0.00 0.07 cnd:pre:3p; +fourguerais fourguer VER 2.47 5.07 0.00 0.07 cnd:pre:1s; +fourguerait fourguer VER 2.47 5.07 0.00 0.07 cnd:pre:3s; +fourgues fourguer VER 2.47 5.07 0.06 0.00 ind:pre:2s; +fourguez fourguer VER 2.47 5.07 0.02 0.00 ind:pre:2p; +fourgué fourguer VER m s 2.47 5.07 0.59 0.88 par:pas; +fourguée fourguer VER f s 2.47 5.07 0.15 0.20 par:pas; +fourguées fourguer VER f p 2.47 5.07 0.01 0.07 par:pas; +fourgués fourguer VER m p 2.47 5.07 0.02 0.14 par:pas; +fourme fourme NOM f s 0.00 0.41 0.00 0.34 +fourmes fourme NOM f p 0.00 0.41 0.00 0.07 +fourmi_lion fourmi_lion NOM m s 0.00 0.14 0.00 0.07 +fourmi fourmi NOM f s 9.61 12.77 2.78 5.14 +fourmilier fourmilier NOM m s 1.10 3.11 0.12 0.07 +fourmilion fourmilion NOM m s 0.00 0.14 0.00 0.14 +fourmilière fourmilier NOM f s 1.10 3.11 0.98 2.84 +fourmilières fourmilière NOM f p 0.01 0.00 0.01 0.00 +fourmillaient fourmiller VER 0.53 3.18 0.00 0.20 ind:imp:3p; +fourmillait fourmiller VER 0.53 3.18 0.00 0.74 ind:imp:3s; +fourmillant fourmiller VER 0.53 3.18 0.00 0.47 par:pre; +fourmillante fourmillant ADJ f s 0.00 1.15 0.00 0.81 +fourmillants fourmillant ADJ m p 0.00 1.15 0.00 0.20 +fourmille fourmiller VER 0.53 3.18 0.42 0.68 ind:pre:1s;ind:pre:3s; +fourmillement fourmillement NOM m s 0.16 2.36 0.07 1.82 +fourmillements fourmillement NOM m p 0.16 2.36 0.08 0.54 +fourmillent fourmiller VER 0.53 3.18 0.09 0.47 ind:pre:3p; +fourmiller fourmiller VER 0.53 3.18 0.01 0.54 inf; +fourmillé fourmiller VER m s 0.53 3.18 0.00 0.07 par:pas; +fourmi_lion fourmi_lion NOM m p 0.00 0.14 0.00 0.07 +fourmis fourmi NOM f p 9.61 12.77 6.83 7.64 +fournîmes fournir VER 25.67 56.28 0.00 0.07 ind:pas:1p; +fournît fournir VER 25.67 56.28 0.00 0.14 sub:imp:3s; +fournaise fournaise NOM f s 0.62 3.18 0.59 3.04 +fournaises fournaise NOM f p 0.62 3.18 0.03 0.14 +fourneau fourneau NOM m s 1.96 15.34 1.13 12.30 +fourneaux fourneau NOM m p 1.96 15.34 0.83 3.04 +fourni fournir VER m s 25.67 56.28 4.21 8.11 par:pas; +fournie fournir VER f s 25.67 56.28 0.59 1.69 par:pas; +fournier fournier NOM m s 0.00 0.07 0.00 0.07 +fournies fournir VER f p 25.67 56.28 0.42 1.42 par:pas; +fournil fournil NOM m s 0.26 3.92 0.26 3.92 +fourniment fourniment NOM m s 0.13 1.01 0.13 0.88 +fourniments fourniment NOM m p 0.13 1.01 0.00 0.14 +fournir fournir VER 25.67 56.28 8.43 19.46 inf; +fournira fournir VER 25.67 56.28 1.18 0.81 ind:fut:3s; +fournirai fournir VER 25.67 56.28 0.43 0.07 ind:fut:1s; +fourniraient fournir VER 25.67 56.28 0.00 0.47 cnd:pre:3p; +fournirait fournir VER 25.67 56.28 0.29 1.08 cnd:pre:3s; +fournirent fournir VER 25.67 56.28 0.00 0.47 ind:pas:3p; +fournirez fournir VER 25.67 56.28 0.24 0.14 ind:fut:2p; +fournirons fournir VER 25.67 56.28 0.22 0.00 ind:fut:1p; +fourniront fournir VER 25.67 56.28 0.06 0.27 ind:fut:3p; +fournis fournir VER m p 25.67 56.28 2.11 3.72 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fournissaient fournir VER 25.67 56.28 0.28 2.16 ind:imp:3p; +fournissais fournir VER 25.67 56.28 0.08 0.34 ind:imp:1s;ind:imp:2s; +fournissait fournir VER 25.67 56.28 0.87 5.47 ind:imp:3s; +fournissant fournir VER 25.67 56.28 0.18 1.22 par:pre; +fournisse fournir VER 25.67 56.28 0.13 0.07 sub:pre:1s;sub:pre:3s; +fournissent fournir VER 25.67 56.28 0.77 1.89 ind:pre:3p; +fournisseur fournisseur NOM m s 4.75 4.39 2.62 1.76 +fournisseurs fournisseur NOM m p 4.75 4.39 2.13 2.57 +fournisseuses fournisseur NOM f p 4.75 4.39 0.00 0.07 +fournissez fournir VER 25.67 56.28 1.31 0.20 imp:pre:2p;ind:pre:2p; +fournissiez fournir VER 25.67 56.28 0.14 0.07 ind:imp:2p; +fournissions fournir VER 25.67 56.28 0.02 0.20 ind:imp:1p; +fournissons fournir VER 25.67 56.28 0.65 0.20 imp:pre:1p;ind:pre:1p; +fournit fournir VER 25.67 56.28 3.04 6.55 ind:pre:3s;ind:pas:3s; +fourniture fourniture NOM f s 2.04 2.77 0.16 0.61 +fournitures fourniture NOM f p 2.04 2.77 1.88 2.16 +fournée fournée NOM f s 0.47 2.36 0.46 1.82 +fournées fournée NOM f p 0.47 2.36 0.01 0.54 +fourra fourrer VER 14.05 23.58 0.12 2.77 ind:pas:3s; +fourrage fourrage NOM m s 0.63 2.30 0.58 1.89 +fourragea fourrager VER 0.03 3.99 0.00 0.74 ind:pas:3s; +fourrageaient fourrager VER 0.03 3.99 0.00 0.07 ind:imp:3p; +fourrageais fourrager VER 0.03 3.99 0.00 0.07 ind:imp:2s; +fourrageait fourrager VER 0.03 3.99 0.00 0.88 ind:imp:3s; +fourrageant fourrager VER 0.03 3.99 0.00 0.61 par:pre; +fourragement fourragement NOM m s 0.00 0.07 0.00 0.07 +fourrager fourrager VER 0.03 3.99 0.02 0.61 inf; +fourragerait fourrager VER 0.03 3.99 0.00 0.07 cnd:pre:3s; +fourrages fourrage NOM m p 0.63 2.30 0.05 0.41 +fourrageurs fourrageur NOM m p 0.00 0.27 0.00 0.27 +fourragère fourrager ADJ f s 0.14 0.41 0.14 0.14 +fourragères fourrager ADJ f p 0.14 0.41 0.00 0.20 +fourragé fourrager VER m s 0.03 3.99 0.00 0.20 par:pas; +fourrai fourrer VER 14.05 23.58 0.00 0.74 ind:pas:1s; +fourraient fourrer VER 14.05 23.58 0.12 0.34 ind:imp:3p; +fourrais fourrer VER 14.05 23.58 0.06 0.14 ind:imp:1s;ind:imp:2s; +fourrait fourrer VER 14.05 23.58 0.25 1.55 ind:imp:3s; +fourrant fourrer VER 14.05 23.58 0.07 1.15 par:pre; +fourre_tout fourre_tout NOM m 0.28 0.54 0.28 0.54 +fourre fourrer VER 14.05 23.58 2.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fourreau fourreau NOM m s 0.79 4.32 0.78 3.85 +fourreaux fourreau NOM m p 0.79 4.32 0.01 0.47 +fourrent fourrer VER 14.05 23.58 0.17 0.54 ind:pre:3p; +fourrer fourrer VER 14.05 23.58 4.36 6.82 inf;; +fourrerai fourrer VER 14.05 23.58 0.19 0.07 ind:fut:1s; +fourreur fourreur NOM m s 0.08 0.68 0.07 0.61 +fourreurs fourreur NOM m p 0.08 0.68 0.01 0.07 +fourrez fourrer VER 14.05 23.58 0.35 0.14 imp:pre:2p;ind:pre:2p; +fourrier fourrier NOM m s 0.01 1.82 0.01 1.69 +fourriers fourrier NOM m p 0.01 1.82 0.00 0.14 +fourriez fourrer VER 14.05 23.58 0.03 0.00 ind:imp:2p; +fourrions fourrer VER 14.05 23.58 0.00 0.14 ind:imp:1p; +fourrière fourrière NOM f s 2.83 0.81 2.83 0.81 +fourrons fourrer VER 14.05 23.58 0.04 0.07 imp:pre:1p;ind:pre:1p; +fourrât fourrer VER 14.05 23.58 0.00 0.07 sub:imp:3s; +fourrèrent fourrer VER 14.05 23.58 0.00 0.07 ind:pas:3p; +fourré fourrer VER m s 14.05 23.58 3.42 3.51 par:pas; +fourrée fourrer VER f s 14.05 23.58 1.24 1.28 par:pas; +fourrées fourré ADJ f p 2.60 5.47 0.17 0.54 +fourrure fourrure NOM f s 7.53 21.42 5.56 16.89 +fourrures fourrure NOM f p 7.53 21.42 1.97 4.53 +fourrés fourré NOM m p 1.18 15.00 0.72 6.15 +fours four NOM m p 15.44 28.99 1.48 3.92 +fourvoie fourvoyer VER 0.52 2.57 0.04 0.27 imp:pre:2s;ind:pre:3s; +fourvoiement fourvoiement NOM m s 0.00 0.14 0.00 0.07 +fourvoiements fourvoiement NOM m p 0.00 0.14 0.00 0.07 +fourvoient fourvoyer VER 0.52 2.57 0.01 0.00 ind:pre:3p; +fourvoierais fourvoyer VER 0.52 2.57 0.00 0.07 cnd:pre:1s; +fourvoierait fourvoyer VER 0.52 2.57 0.00 0.07 cnd:pre:3s; +fourvoyaient fourvoyer VER 0.52 2.57 0.00 0.14 ind:imp:3p; +fourvoyait fourvoyer VER 0.52 2.57 0.00 0.07 ind:imp:3s; +fourvoyant fourvoyer VER 0.52 2.57 0.01 0.14 par:pre; +fourvoyer fourvoyer VER 0.52 2.57 0.14 0.20 inf; +fourvoyâmes fourvoyer VER 0.52 2.57 0.00 0.07 ind:pas:1p; +fourvoyé fourvoyer VER m s 0.52 2.57 0.11 0.88 par:pas; +fourvoyée fourvoyer VER f s 0.52 2.57 0.04 0.20 par:pas; +fourvoyées fourvoyé ADJ f p 0.04 0.41 0.01 0.00 +fourvoyés fourvoyer VER m p 0.52 2.57 0.17 0.27 par:pas; +fous foutre VER 400.67 172.30 133.75 34.46 ind:pre:1p;ind:pre:1s;ind:pre:2s; +fout foutre VER 400.67 172.30 51.51 25.20 ind:pre:3s; +foutît foutre VER 400.67 172.30 0.00 0.07 sub:imp:3s; +fouta fouta NOM s 0.01 0.07 0.01 0.07 +foutaient foutre VER 400.67 172.30 0.61 1.96 ind:imp:3p; +foutais foutre VER 400.67 172.30 4.42 3.72 ind:imp:1s;ind:imp:2s; +foutaise foutaise NOM f s 8.66 2.70 1.80 0.74 +foutaises foutaise NOM f p 8.66 2.70 6.86 1.96 +foutait foutre VER 400.67 172.30 2.80 11.69 ind:imp:3s; +foutant foutre VER 400.67 172.30 0.18 0.81 par:pre; +foute foutre VER 400.67 172.30 3.35 3.99 sub:pre:1s;sub:pre:3s; +foutent foutre VER 400.67 172.30 8.34 7.36 ind:pre:3p; +fouterie fouterie NOM f s 0.00 0.34 0.00 0.20 +fouteries fouterie NOM f p 0.00 0.34 0.00 0.14 +foutes foutre VER 400.67 172.30 0.27 0.00 sub:pre:2s; +fouteur fouteur NOM m s 0.54 0.07 0.46 0.07 +fouteurs fouteur NOM m p 0.54 0.07 0.07 0.00 +foutez foutre VER 400.67 172.30 32.65 7.57 imp:pre:2p;ind:pre:2p; +foutiez foutre VER 400.67 172.30 0.56 0.14 ind:imp:2p; +foutions foutre VER 400.67 172.30 0.00 0.07 ind:imp:1p; +foutit foutre VER 400.67 172.30 0.00 0.14 ind:pas:3s; +foutoir foutoir NOM m s 2.15 1.62 2.15 1.49 +foutoirs foutoir NOM m p 2.15 1.62 0.00 0.14 +foutons foutre VER 400.67 172.30 1.68 0.34 imp:pre:1p;ind:pre:1p; +foutra foutre VER 400.67 172.30 1.58 1.42 ind:fut:3s; +foutrai foutre VER 400.67 172.30 0.85 1.15 ind:fut:1s; +foutraient foutre VER 400.67 172.30 0.08 0.20 cnd:pre:3p; +foutrais foutre VER 400.67 172.30 1.48 1.35 cnd:pre:1s;cnd:pre:2s; +foutrait foutre VER 400.67 172.30 0.60 1.01 cnd:pre:3s; +foutral foutral ADJ m s 0.05 0.20 0.05 0.14 +foutrale foutral ADJ f s 0.05 0.20 0.00 0.07 +foutraque foutraque ADJ m s 0.01 0.07 0.01 0.07 +foutras foutre VER 400.67 172.30 0.24 0.20 ind:fut:2s; +foutre foutre VER 400.67 172.30 97.99 42.70 inf;; +foutrement foutrement ADV 1.24 0.61 1.24 0.61 +foutrerie foutrerie NOM f s 0.01 0.00 0.01 0.00 +foutrez foutre VER 400.67 172.30 0.20 0.14 ind:fut:2p; +foutriquet foutriquet NOM m s 0.04 0.20 0.04 0.14 +foutriquets foutriquet NOM m p 0.04 0.20 0.00 0.07 +foutrons foutre VER 400.67 172.30 0.02 0.07 ind:fut:1p; +foutront foutre VER 400.67 172.30 0.16 0.27 ind:fut:3p; +foutu foutre VER m s 400.67 172.30 41.96 19.05 par:pas; +foutue foutu ADJ f s 33.23 16.76 10.35 6.22 +foutues foutu ADJ f p 33.23 16.76 2.50 0.74 +foutument foutument ADV 0.03 0.20 0.03 0.20 +foutus foutre VER m p 400.67 172.30 6.54 2.91 par:pas; +fox_terrier fox_terrier NOM m s 0.04 0.47 0.04 0.41 +fox_terrier fox_terrier NOM m p 0.04 0.47 0.00 0.07 +fox_trot fox_trot NOM m 0.50 1.62 0.50 1.62 +fox fox NOM m 0.48 0.41 0.48 0.41 +foyard foyard NOM m s 0.00 0.27 0.00 0.20 +foyards foyard NOM m p 0.00 0.27 0.00 0.07 +foyer foyer NOM m s 28.95 30.88 25.57 25.81 +foyers foyer NOM m p 28.95 30.88 3.38 5.07 +frôla frôler VER 4.45 25.41 0.03 2.30 ind:pas:3s; +frôlai frôler VER 4.45 25.41 0.00 0.34 ind:pas:1s; +frôlaient frôler VER 4.45 25.41 0.01 1.49 ind:imp:3p; +frôlais frôler VER 4.45 25.41 0.00 0.27 ind:imp:1s; +frôlait frôler VER 4.45 25.41 0.14 3.18 ind:imp:3s; +frôlant frôler VER 4.45 25.41 0.14 3.72 par:pre; +frôle frôler VER 4.45 25.41 0.88 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frôlement frôlement NOM m s 0.11 6.01 0.11 3.85 +frôlements frôlement NOM m p 0.11 6.01 0.00 2.16 +frôlent frôler VER 4.45 25.41 0.14 1.62 ind:pre:3p; +frôler frôler VER 4.45 25.41 0.68 4.19 inf; +frôlerais frôler VER 4.45 25.41 0.00 0.07 cnd:pre:1s; +frôlerait frôler VER 4.45 25.41 0.00 0.14 cnd:pre:3s; +frôles frôler VER 4.45 25.41 0.04 0.07 ind:pre:2s; +frôleur frôleur ADJ m s 0.00 0.74 0.00 0.34 +frôleurs frôleur NOM m p 0.01 0.07 0.01 0.07 +frôleuse frôleur ADJ f s 0.00 0.74 0.00 0.20 +frôleuses frôleur ADJ f p 0.00 0.74 0.00 0.14 +frôlez frôler VER 4.45 25.41 0.20 0.00 imp:pre:2p;ind:pre:2p; +frôlions frôler VER 4.45 25.41 0.00 0.14 ind:imp:1p; +frôlons frôler VER 4.45 25.41 0.02 0.27 ind:pre:1p; +frôlât frôler VER 4.45 25.41 0.01 0.00 sub:imp:3s; +frôlèrent frôler VER 4.45 25.41 0.00 0.34 ind:pas:3p; +frôlé frôler VER m s 4.45 25.41 1.80 2.09 par:pas; +frôlée frôler VER f s 4.45 25.41 0.16 0.54 par:pas; +frôlées frôler VER f p 4.45 25.41 0.00 0.14 par:pas; +frôlés frôler VER m p 4.45 25.41 0.21 0.47 par:pas; +fra fra NOM m s 0.93 0.34 0.93 0.34 +fraîche frais ADJ f s 46.43 111.69 13.59 42.91 +fraîchement fraîchement ADV 1.17 8.31 1.17 8.31 +fraîches frais ADJ f p 46.43 111.69 5.44 12.57 +fraîcheur fraîcheur NOM f s 3.24 35.47 3.24 35.00 +fraîcheurs fraîcheur NOM f p 3.24 35.47 0.00 0.47 +fraîchi fraîchir VER m s 0.29 2.43 0.02 0.61 par:pas; +fraîchir fraîchir VER 0.29 2.43 0.01 0.34 inf; +fraîchira fraîchir VER 0.29 2.43 0.00 0.14 ind:fut:3s; +fraîchissait fraîchir VER 0.29 2.43 0.00 0.61 ind:imp:3s; +fraîchissant fraîchir VER 0.29 2.43 0.00 0.27 par:pre; +fraîchissent fraîchir VER 0.29 2.43 0.01 0.07 ind:pre:3p; +fraîchit fraîchir VER 0.29 2.43 0.25 0.41 ind:pre:3s;ind:pas:3s; +frac frac NOM m s 0.89 2.23 0.77 1.96 +fracas fracas NOM m 4.17 18.18 4.17 18.18 +fracassa fracasser VER 3.85 7.84 0.00 0.74 ind:pas:3s; +fracassaient fracasser VER 3.85 7.84 0.02 0.68 ind:imp:3p; +fracassait fracasser VER 3.85 7.84 0.01 0.27 ind:imp:3s; +fracassant fracassant ADJ m s 0.58 2.16 0.24 0.88 +fracassante fracassant ADJ f s 0.58 2.16 0.23 0.95 +fracassantes fracassant ADJ f p 0.58 2.16 0.05 0.14 +fracassants fracassant ADJ m p 0.58 2.16 0.06 0.20 +fracasse fracasser VER 3.85 7.84 0.60 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fracassent fracasser VER 3.85 7.84 0.05 0.14 ind:pre:3p; +fracasser fracasser VER 3.85 7.84 0.91 2.23 inf; +fracassera fracasser VER 3.85 7.84 0.16 0.00 ind:fut:3s; +fracasserait fracasser VER 3.85 7.84 0.00 0.14 cnd:pre:3s; +fracassez fracasser VER 3.85 7.84 0.04 0.00 imp:pre:2p; +fracassât fracasser VER 3.85 7.84 0.00 0.07 sub:imp:3s; +fracassé fracasser VER m s 3.85 7.84 1.43 0.81 par:pas; +fracassée fracasser VER f s 3.85 7.84 0.56 0.41 par:pas; +fracassées fracasser VER f p 3.85 7.84 0.03 0.27 par:pas; +fracassés fracasser VER m p 3.85 7.84 0.02 0.34 par:pas; +fracs frac NOM m p 0.89 2.23 0.12 0.27 +fractal fractal ADJ m s 0.34 0.00 0.05 0.00 +fractale fractal ADJ f s 0.34 0.00 0.12 0.00 +fractales fractal ADJ f p 0.34 0.00 0.17 0.00 +fraction fraction NOM f s 2.03 10.88 1.34 6.76 +fractionnait fractionner VER 0.07 0.54 0.00 0.07 ind:imp:3s; +fractionnant fractionner VER 0.07 0.54 0.00 0.14 par:pre; +fractionne fractionner VER 0.07 0.54 0.02 0.07 ind:pre:3s; +fractionnel fractionnel ADJ m s 0.00 0.14 0.00 0.07 +fractionnelles fractionnel ADJ f p 0.00 0.14 0.00 0.07 +fractionnement fractionnement NOM m s 0.00 0.20 0.00 0.20 +fractionner fractionner VER 0.07 0.54 0.02 0.14 inf; +fractionné fractionner VER m s 0.07 0.54 0.00 0.07 par:pas; +fractionnée fractionner VER f s 0.07 0.54 0.01 0.00 par:pas; +fractionnées fractionner VER f p 0.07 0.54 0.01 0.07 par:pas; +fractions fraction NOM f p 2.03 10.88 0.69 4.12 +fractura fracturer VER 1.75 1.22 0.00 0.27 ind:pas:3s; +fracturant fracturer VER 1.75 1.22 0.00 0.20 par:pre; +fracture fracture NOM f s 7.88 2.57 5.62 1.82 +fracturent fracturer VER 1.75 1.22 0.10 0.00 ind:pre:3p; +fracturer fracturer VER 1.75 1.22 0.27 0.47 inf; +fractures fracture NOM f p 7.88 2.57 2.26 0.74 +fracturé fracturer VER m s 1.75 1.22 0.80 0.14 par:pas; +fracturée fracturer VER f s 1.75 1.22 0.29 0.07 par:pas; +fracturées fracturé ADJ f p 0.79 0.34 0.04 0.00 +fracturés fracturé ADJ m p 0.79 0.34 0.09 0.07 +fractus fractus NOM m 0.00 0.07 0.00 0.07 +fragile fragile ADJ s 15.89 45.34 12.94 35.68 +fragilement fragilement ADV 0.00 0.07 0.00 0.07 +fragiles fragile ADJ p 15.89 45.34 2.95 9.66 +fragilise fragiliser VER 0.14 0.07 0.04 0.07 ind:pre:3s; +fragiliser fragiliser VER 0.14 0.07 0.02 0.00 inf; +fragilisé fragiliser VER m s 0.14 0.07 0.04 0.00 par:pas; +fragilisée fragiliser VER f s 0.14 0.07 0.03 0.00 par:pas; +fragilisés fragiliser VER m p 0.14 0.07 0.01 0.00 par:pas; +fragilité fragilité NOM f s 1.19 8.65 1.18 8.31 +fragilités fragilité NOM f p 1.19 8.65 0.01 0.34 +fragment fragment NOM m s 4.57 15.88 1.58 6.01 +fragmentaient fragmenter VER 0.31 0.74 0.00 0.14 ind:imp:3p; +fragmentaire fragmentaire ADJ s 0.02 1.69 0.01 0.61 +fragmentaires fragmentaire ADJ p 0.02 1.69 0.01 1.08 +fragmentait fragmenter VER 0.31 0.74 0.00 0.07 ind:imp:3s; +fragmentant fragmenter VER 0.31 0.74 0.01 0.00 par:pre; +fragmentation fragmentation NOM f s 0.77 0.14 0.77 0.14 +fragmente fragmenter VER 0.31 0.74 0.07 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fragmentent fragmenter VER 0.31 0.74 0.02 0.07 ind:pre:3p; +fragmenter fragmenter VER 0.31 0.74 0.03 0.00 inf; +fragments fragment NOM m p 4.57 15.88 2.99 9.86 +fragmentèrent fragmenter VER 0.31 0.74 0.00 0.07 ind:pas:3p; +fragmenté fragmenter VER m s 0.31 0.74 0.07 0.07 par:pas; +fragmentée fragmenter VER f s 0.31 0.74 0.07 0.14 par:pas; +fragmentées fragmenter VER f p 0.31 0.74 0.03 0.00 par:pas; +fragmentés fragmenté ADJ m p 0.05 0.27 0.01 0.14 +fragrance fragrance NOM f s 0.30 1.08 0.29 0.68 +fragrances fragrance NOM f p 0.30 1.08 0.01 0.41 +fragrant fragrant ADJ m s 0.00 0.07 0.00 0.07 +frai frai NOM m s 0.03 0.07 0.03 0.07 +fraie frayer VER 2.54 11.55 0.08 0.61 ind:pre:1s;ind:pre:3s; +fraient frayer VER 2.54 11.55 0.01 0.14 ind:pre:3p; +fraies frayer VER 2.54 11.55 0.01 0.00 ind:pre:2s; +frairie frairie NOM f s 0.00 0.41 0.00 0.41 +frais frais ADJ m 46.43 111.69 27.41 56.22 +fraise fraise NOM f s 12.00 10.07 5.28 3.92 +fraiser fraiser VER 1.52 0.14 1.39 0.00 inf; +fraises fraise NOM f p 12.00 10.07 6.72 6.15 +fraiseur_outilleur fraiseur_outilleur NOM m s 0.00 0.07 0.00 0.07 +fraiseur fraiseur NOM m s 0.07 0.27 0.00 0.07 +fraiseurs fraiseur NOM m p 0.07 0.27 0.00 0.20 +fraiseuse fraiseur NOM f s 0.07 0.27 0.07 0.00 +fraisier fraisier NOM m s 0.28 0.68 0.14 0.20 +fraisiers fraisier NOM m p 0.28 0.68 0.14 0.47 +fraisil fraisil NOM m s 0.00 0.07 0.00 0.07 +fraisées fraiser VER f p 1.52 0.14 0.00 0.07 par:pas; +framboise framboise NOM f s 2.50 4.86 1.95 3.92 +framboises framboise NOM f p 2.50 4.86 0.55 0.95 +framboisier framboisier NOM m s 0.27 0.47 0.27 0.00 +framboisiers framboisier NOM m p 0.27 0.47 0.00 0.47 +franc_comtois franc_comtois NOM m 0.00 0.07 0.00 0.07 +franc_comtois franc_comtois ADJ f s 0.00 0.07 0.00 0.07 +franc_jeu franc_jeu NOM m s 0.56 0.00 0.56 0.00 +franc_maçon franc_maçon NOM m s 0.94 2.09 0.38 0.54 +franc_maçon franc_maçon NOM f s 0.94 2.09 0.00 0.27 +franc_maçonnerie franc_maçonnerie NOM f s 0.17 0.81 0.17 0.81 +franc_parler franc_parler NOM m s 0.53 0.27 0.53 0.27 +franc_tireur franc_tireur NOM m s 0.64 2.30 0.10 0.81 +franc franc ADJ m s 21.67 23.45 12.84 10.95 +francatu francatu NOM m s 0.00 0.07 0.00 0.07 +francfort francfort NOM f s 0.10 0.14 0.07 0.07 +francforts francfort NOM f p 0.10 0.14 0.03 0.07 +franchîmes franchir VER 18.93 64.80 0.14 0.14 ind:pas:1p; +franchît franchir VER 18.93 64.80 0.00 0.07 sub:imp:3s; +franche franc ADJ f s 21.67 23.45 5.93 7.03 +franchement franchement ADV 35.09 28.24 35.09 28.24 +franches franc ADJ f p 21.67 23.45 0.53 1.96 +franchi franchir VER m s 18.93 64.80 4.49 12.09 par:pas; +franchie franchir VER f s 18.93 64.80 0.60 2.50 par:pas; +franchies franchir VER f p 18.93 64.80 0.17 0.54 par:pas; +franchir franchir VER 18.93 64.80 7.88 22.36 inf; +franchira franchir VER 18.93 64.80 0.46 0.47 ind:fut:3s; +franchirai franchir VER 18.93 64.80 0.25 0.14 ind:fut:1s; +franchiraient franchir VER 18.93 64.80 0.01 0.07 cnd:pre:3p; +franchirais franchir VER 18.93 64.80 0.01 0.07 cnd:pre:1s; +franchirait franchir VER 18.93 64.80 0.05 0.54 cnd:pre:3s; +franchiras franchir VER 18.93 64.80 0.09 0.00 ind:fut:2s; +franchirent franchir VER 18.93 64.80 0.01 1.55 ind:pas:3p; +franchirez franchir VER 18.93 64.80 0.12 0.00 ind:fut:2p; +franchirions franchir VER 18.93 64.80 0.03 0.07 cnd:pre:1p; +franchirons franchir VER 18.93 64.80 0.05 0.14 ind:fut:1p; +franchiront franchir VER 18.93 64.80 0.09 0.00 ind:fut:3p; +franchis franchir VER m p 18.93 64.80 0.99 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +franchisage franchisage NOM m s 0.03 0.00 0.03 0.00 +franchisant franchiser VER 0.17 0.00 0.01 0.00 par:pre; +franchise franchise NOM f s 5.75 7.97 5.62 7.70 +franchiser franchiser VER 0.17 0.00 0.09 0.00 inf; +franchises franchise NOM f p 5.75 7.97 0.14 0.27 +franchissables franchissable ADJ p 0.00 0.07 0.00 0.07 +franchissaient franchir VER 18.93 64.80 0.03 1.82 ind:imp:3p; +franchissais franchir VER 18.93 64.80 0.04 0.47 ind:imp:1s; +franchissait franchir VER 18.93 64.80 0.32 3.04 ind:imp:3s; +franchissant franchir VER 18.93 64.80 0.48 4.53 par:pre; +franchisse franchir VER 18.93 64.80 0.17 0.14 sub:pre:1s;sub:pre:3s; +franchissement franchissement NOM m s 0.11 1.08 0.11 0.88 +franchissements franchissement NOM m p 0.11 1.08 0.00 0.20 +franchissent franchir VER 18.93 64.80 0.27 0.81 ind:pre:3p; +franchissez franchir VER 18.93 64.80 0.29 0.00 imp:pre:2p;ind:pre:2p; +franchissions franchir VER 18.93 64.80 0.00 0.14 ind:imp:1p; +franchissons franchir VER 18.93 64.80 0.07 0.74 imp:pre:1p;ind:pre:1p; +franchisé franchiser VER m s 0.17 0.00 0.04 0.00 par:pas; +franchisée franchiser VER f s 0.17 0.00 0.03 0.00 par:pas; +franchit franchir VER 18.93 64.80 1.83 9.66 ind:pre:3s;ind:pas:3s; +franchouillard franchouillard ADJ m s 0.01 0.34 0.01 0.27 +franchouillarde franchouillard ADJ f s 0.01 0.34 0.00 0.07 +franchouillards franchouillard NOM m p 0.00 0.41 0.00 0.34 +francisant franciser VER 0.00 0.68 0.00 0.07 par:pre; +francisation francisation NOM f s 0.00 0.14 0.00 0.14 +franciscain franciscain ADJ m s 1.49 0.61 0.29 0.41 +franciscaine franciscain ADJ f s 1.49 0.61 0.14 0.07 +franciscains franciscain ADJ m p 1.49 0.61 1.07 0.14 +franciser franciser VER 0.00 0.68 0.00 0.20 inf; +francisque francisque NOM f s 0.00 0.47 0.00 0.41 +francisques francisque NOM f p 0.00 0.47 0.00 0.07 +francisé franciser VER m s 0.00 0.68 0.00 0.27 par:pas; +francisés franciser VER m p 0.00 0.68 0.00 0.14 par:pas; +francité francité NOM f s 0.00 0.68 0.00 0.68 +franco_africain franco_africain ADJ m s 0.14 0.07 0.14 0.07 +franco_algérien franco_algérien ADJ f s 0.00 0.07 0.00 0.07 +franco_allemand franco_allemand ADJ m s 0.11 0.61 0.00 0.14 +franco_allemand franco_allemand ADJ f s 0.11 0.61 0.11 0.34 +franco_allemand franco_allemand ADJ f p 0.11 0.61 0.00 0.14 +franco_américain franco_américain ADJ m s 0.04 0.68 0.01 0.07 +franco_américain franco_américain ADJ f s 0.04 0.68 0.03 0.27 +franco_américain franco_américain ADJ f p 0.04 0.68 0.00 0.20 +franco_américain franco_américain ADJ m p 0.04 0.68 0.00 0.14 +franco_anglais franco_anglais ADJ m s 0.01 0.74 0.01 0.27 +franco_anglais franco_anglais ADJ f s 0.01 0.74 0.00 0.41 +franco_anglais franco_anglais NOM f p 0.01 0.00 0.01 0.00 +franco_belge franco_belge ADJ f s 0.00 0.14 0.00 0.14 +franco_britannique franco_britannique ADJ f s 0.14 2.43 0.00 1.35 +franco_britannique franco_britannique ADJ p 0.14 2.43 0.14 1.08 +franco_canadien franco_canadien NOM m s 0.01 0.00 0.01 0.00 +franco_chinois franco_chinois ADJ f p 0.00 0.07 0.00 0.07 +franco_italienne franco_italienne ADJ f s 0.01 0.00 0.01 0.00 +franco_japonais franco_japonais ADJ f s 0.01 0.00 0.01 0.00 +franco_libanais franco_libanais ADJ m p 0.00 0.14 0.00 0.14 +franco_mongol franco_mongol ADJ f s 0.00 0.14 0.00 0.14 +franco_polonais franco_polonais ADJ f s 0.00 0.07 0.00 0.07 +franco_russe franco_russe ADJ s 0.00 1.42 0.00 1.42 +franco_russe franco_russe NOM p 0.00 0.20 0.00 0.07 +franco_soviétique franco_soviétique ADJ s 0.00 0.14 0.00 0.14 +franco_syrien franco_syrien ADJ m s 0.00 0.14 0.00 0.14 +franco_turque franco_turque ADJ f s 0.00 0.14 0.00 0.14 +franco_vietnamien franco_vietnamien ADJ m s 0.00 0.07 0.00 0.07 +franco franco ADV 3.87 2.70 3.87 2.70 +francomanie francomanie NOM f s 0.00 0.07 0.00 0.07 +francophile francophile ADJ s 0.00 0.20 0.00 0.14 +francophiles francophile ADJ p 0.00 0.20 0.00 0.07 +francophilie francophilie NOM f s 0.00 0.27 0.00 0.27 +francophobie francophobie NOM f s 0.00 0.07 0.00 0.07 +francophone francophone ADJ s 0.12 0.74 0.10 0.61 +francophones francophone ADJ m p 0.12 0.74 0.02 0.14 +francophonie francophonie NOM f s 0.00 0.20 0.00 0.20 +francs_bourgeois francs_bourgeois NOM m p 0.00 0.20 0.00 0.20 +franc_maçon franc_maçon NOM m p 0.94 2.09 0.57 1.28 +franc_tireur franc_tireur NOM m p 0.64 2.30 0.54 1.49 +francs franc NOM m p 17.64 82.84 16.43 78.11 +frange frange NOM f s 0.97 13.45 0.69 8.04 +frangeaient franger VER 0.00 3.65 0.00 0.14 ind:imp:3p; +frangeait franger VER 0.00 3.65 0.00 0.20 ind:imp:3s; +frangeant franger VER 0.00 3.65 0.00 0.07 par:pre; +frangent franger VER 0.00 3.65 0.00 0.07 ind:pre:3p; +franges frange NOM f p 0.97 13.45 0.28 5.41 +frangin frangin NOM m s 9.03 18.78 7.29 7.43 +frangine frangin NOM f s 9.03 18.78 1.30 6.28 +frangines frangin NOM f p 9.03 18.78 0.11 2.91 +frangins frangin NOM m p 9.03 18.78 0.34 2.16 +frangipane frangipane NOM f s 0.00 0.34 0.00 0.14 +frangipanes frangipane NOM f p 0.00 0.34 0.00 0.20 +frangipaniers frangipanier NOM m p 0.00 0.07 0.00 0.07 +franglais franglais NOM m 0.00 0.20 0.00 0.20 +frangé franger VER m s 0.00 3.65 0.00 0.81 par:pas; +frangée franger VER f s 0.00 3.65 0.00 0.68 par:pas; +frangées franger VER f p 0.00 3.65 0.00 0.74 par:pas; +frangés franger VER m p 0.00 3.65 0.00 0.81 par:pas; +frankaoui frankaoui NOM s 0.00 0.07 0.00 0.07 +franklin franklin NOM m s 0.04 0.07 0.04 0.07 +franque franque ADJ f s 0.00 4.53 0.00 3.58 +franques franque ADJ f p 0.00 4.53 0.00 0.95 +franquette franquette NOM f s 0.32 0.88 0.32 0.88 +franquisme franquisme NOM m s 0.50 0.07 0.50 0.07 +franquiste franquiste ADJ s 0.77 0.68 0.14 0.34 +franquistes franquiste NOM p 0.90 0.54 0.80 0.47 +français français NOM m s 39.49 164.59 34.94 148.72 +française français ADJ f s 43.06 298.85 11.03 105.07 +françaises français ADJ f p 43.06 298.85 2.25 45.07 +frapadingue frapadingue ADJ m s 0.06 0.27 0.05 0.20 +frapadingues frapadingue ADJ m p 0.06 0.27 0.01 0.07 +frappa frapper VER 160.04 168.31 1.64 21.49 ind:pas:3s; +frappadingue frappadingue ADJ m s 0.09 0.27 0.07 0.14 +frappadingues frappadingue ADJ m p 0.09 0.27 0.01 0.14 +frappai frapper VER 160.04 168.31 0.12 1.55 ind:pas:1s; +frappaient frapper VER 160.04 168.31 0.22 3.92 ind:imp:3p; +frappais frapper VER 160.04 168.31 1.05 0.61 ind:imp:1s;ind:imp:2s; +frappait frapper VER 160.04 168.31 2.86 17.97 ind:imp:3s; +frappant frapper VER 160.04 168.31 1.00 8.45 par:pre; +frappante frappant ADJ f s 1.69 3.65 0.78 1.28 +frappantes frappant ADJ f p 1.69 3.65 0.11 0.14 +frappants frappant ADJ m p 1.69 3.65 0.01 0.27 +frappe frapper VER 160.04 168.31 41.37 20.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +frappement frappement NOM m s 0.01 0.20 0.00 0.20 +frappements frappement NOM m p 0.01 0.20 0.01 0.00 +frappent frapper VER 160.04 168.31 3.24 5.34 ind:pre:3p; +frapper frapper VER 160.04 168.31 37.08 32.09 ind:pre:2p;inf; +frappera frapper VER 160.04 168.31 1.71 0.34 ind:fut:3s; +frapperai frapper VER 160.04 168.31 1.68 0.07 ind:fut:1s; +frapperaient frapper VER 160.04 168.31 0.05 0.41 cnd:pre:3p; +frapperais frapper VER 160.04 168.31 0.37 0.20 cnd:pre:1s;cnd:pre:2s; +frapperait frapper VER 160.04 168.31 0.32 1.15 cnd:pre:3s; +frapperas frapper VER 160.04 168.31 0.29 0.14 ind:fut:2s; +frapperez frapper VER 160.04 168.31 0.33 0.00 ind:fut:2p; +frapperiez frapper VER 160.04 168.31 0.03 0.00 cnd:pre:2p; +frapperons frapper VER 160.04 168.31 0.23 0.14 ind:fut:1p; +frapperont frapper VER 160.04 168.31 0.27 0.14 ind:fut:3p; +frappes frapper VER 160.04 168.31 3.92 0.14 ind:pre:2s;sub:pre:2s; +frappeur frappeur NOM m s 0.55 0.34 0.40 0.20 +frappeurs frappeur NOM m p 0.55 0.34 0.15 0.14 +frappez frapper VER 160.04 168.31 7.81 1.08 imp:pre:2p;ind:pre:2p; +frappiez frapper VER 160.04 168.31 0.16 0.07 ind:imp:2p; +frappions frapper VER 160.04 168.31 0.01 0.14 ind:imp:1p; +frappons frapper VER 160.04 168.31 0.40 0.00 imp:pre:1p;ind:pre:1p; +frappât frapper VER 160.04 168.31 0.00 0.14 sub:imp:3s; +frappèrent frapper VER 160.04 168.31 0.04 1.28 ind:pas:3p; +frappé frapper VER m s 160.04 168.31 43.83 35.68 par:pas; +frappée frapper VER f s 160.04 168.31 8.21 8.45 par:pas; +frappées frappé ADJ f p 1.19 3.99 0.15 0.47 +frappés frapper VER m p 160.04 168.31 1.72 5.81 par:pas; +fraser fraser VER 0.01 0.00 0.01 0.00 inf; +frasque frasque NOM f s 0.51 1.76 0.14 0.07 +frasques frasque NOM f p 0.51 1.76 0.37 1.69 +frater frater NOM m s 0.01 0.07 0.01 0.07 +fraternel fraternel ADJ m s 2.06 10.27 1.13 4.32 +fraternelle fraternel ADJ f s 2.06 10.27 0.39 3.11 +fraternellement fraternellement ADV 0.11 1.62 0.11 1.62 +fraternelles fraternel ADJ f p 2.06 10.27 0.20 0.81 +fraternels fraternel ADJ m p 2.06 10.27 0.34 2.03 +fraternisa fraterniser VER 0.61 0.95 0.00 0.07 ind:pas:3s; +fraternisaient fraterniser VER 0.61 0.95 0.00 0.20 ind:imp:3p; +fraternisant fraterniser VER 0.61 0.95 0.00 0.07 par:pre; +fraternisation fraternisation NOM f s 0.06 0.34 0.06 0.34 +fraternise fraterniser VER 0.61 0.95 0.30 0.00 imp:pre:2s;ind:pre:3s; +fraternisent fraterniser VER 0.61 0.95 0.03 0.07 ind:pre:3p; +fraterniser fraterniser VER 0.61 0.95 0.23 0.20 inf; +fraterniserait fraterniser VER 0.61 0.95 0.00 0.14 cnd:pre:3s; +fraternisiez fraterniser VER 0.61 0.95 0.01 0.00 ind:imp:2p; +fraternisons fraterniser VER 0.61 0.95 0.01 0.00 ind:pre:1p; +fraternisèrent fraterniser VER 0.61 0.95 0.00 0.07 ind:pas:3p; +fraternisé fraterniser VER m s 0.61 0.95 0.04 0.14 par:pas; +fraternité fraternité NOM f s 3.63 7.43 3.49 7.30 +fraternités fraternité NOM f p 3.63 7.43 0.14 0.14 +fratricide fratricide ADJ s 0.41 0.54 0.28 0.34 +fratricides fratricide ADJ p 0.41 0.54 0.14 0.20 +fratrie fratrie NOM f s 0.08 0.14 0.07 0.14 +fratries fratrie NOM f p 0.08 0.14 0.01 0.00 +frauda frauder VER 0.49 0.41 0.00 0.07 ind:pas:3s; +fraudais frauder VER 0.49 0.41 0.01 0.07 ind:imp:1s;ind:imp:2s; +fraude fraude NOM f s 5.54 3.24 4.82 2.84 +frauder frauder VER 0.49 0.41 0.16 0.14 inf; +fraudes fraude NOM f p 5.54 3.24 0.72 0.41 +fraudeur fraudeur NOM m s 0.78 0.14 0.06 0.07 +fraudeurs fraudeur NOM m p 0.78 0.14 0.37 0.07 +fraudeuse fraudeur NOM f s 0.78 0.14 0.35 0.00 +fraudé frauder VER m s 0.49 0.41 0.27 0.07 par:pas; +frauduleuse frauduleux ADJ f s 0.58 0.68 0.14 0.41 +frauduleusement frauduleusement ADV 0.03 0.14 0.03 0.14 +frauduleuses frauduleux ADJ f p 0.58 0.68 0.19 0.14 +frauduleux frauduleux ADJ m 0.58 0.68 0.25 0.14 +fraya frayer VER 2.54 11.55 0.01 0.81 ind:pas:3s; +frayai frayer VER 2.54 11.55 0.00 0.14 ind:pas:1s; +frayaient frayer VER 2.54 11.55 0.01 0.47 ind:imp:3p; +frayais frayer VER 2.54 11.55 0.02 0.20 ind:imp:1s; +frayait frayer VER 2.54 11.55 0.15 1.35 ind:imp:3s; +frayant frayer VER 2.54 11.55 0.25 0.81 par:pre; +fraye frayer VER 2.54 11.55 0.29 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frayent frayer VER 2.54 11.55 0.02 0.34 ind:pre:3p; +frayer frayer VER 2.54 11.55 1.03 4.86 inf; +frayes frayer VER 2.54 11.55 0.03 0.07 ind:pre:2s; +frayeur frayeur NOM f s 3.86 6.89 3.43 5.88 +frayeurs frayeur NOM f p 3.86 6.89 0.43 1.01 +frayez frayer VER 2.54 11.55 0.26 0.00 imp:pre:2p;ind:pre:2p; +frayons frayer VER 2.54 11.55 0.01 0.07 imp:pre:1p;ind:pre:1p; +frayèrent frayer VER 2.54 11.55 0.00 0.07 ind:pas:3p; +frayé frayer VER m s 2.54 11.55 0.27 0.74 par:pas; +frayée frayer VER f s 2.54 11.55 0.10 0.27 par:pas; +freak freak NOM m s 0.24 0.14 0.16 0.14 +freaks freak NOM m p 0.24 0.14 0.08 0.00 +fredaines fredaine NOM f p 0.06 0.20 0.06 0.20 +fredonna fredonner VER 1.69 9.66 0.00 1.28 ind:pas:3s; +fredonnaient fredonner VER 1.69 9.66 0.00 0.47 ind:imp:3p; +fredonnais fredonner VER 1.69 9.66 0.04 0.27 ind:imp:1s;ind:imp:2s; +fredonnait fredonner VER 1.69 9.66 0.08 2.23 ind:imp:3s; +fredonnant fredonner VER 1.69 9.66 0.26 1.15 par:pre; +fredonne fredonner VER 1.69 9.66 0.81 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fredonnement fredonnement NOM m s 0.04 0.14 0.04 0.14 +fredonnent fredonner VER 1.69 9.66 0.04 0.00 ind:pre:3p; +fredonner fredonner VER 1.69 9.66 0.23 2.03 inf; +fredonnera fredonner VER 1.69 9.66 0.02 0.00 ind:fut:3s; +fredonnerai fredonner VER 1.69 9.66 0.01 0.00 ind:fut:1s; +fredonnerait fredonner VER 1.69 9.66 0.00 0.07 cnd:pre:3s; +fredonneras fredonner VER 1.69 9.66 0.01 0.00 ind:fut:2s; +fredonnez fredonner VER 1.69 9.66 0.16 0.00 imp:pre:2p;ind:pre:2p; +fredonnâmes fredonner VER 1.69 9.66 0.00 0.07 ind:pas:1p; +fredonnons fredonner VER 1.69 9.66 0.00 0.07 ind:pre:1p; +fredonnèrent fredonner VER 1.69 9.66 0.00 0.14 ind:pas:3p; +fredonné fredonner VER m s 1.69 9.66 0.04 0.41 par:pas; +fredonnée fredonner VER f s 1.69 9.66 0.00 0.07 par:pas; +fredonnées fredonner VER f p 1.69 9.66 0.00 0.07 par:pas; +fredonnés fredonner VER m p 1.69 9.66 0.00 0.07 par:pas; +free_jazz free_jazz NOM m 0.00 0.07 0.00 0.07 +free_lance free_lance NOM s 0.20 0.07 0.20 0.07 +free_jazz free_jazz NOM m 0.00 0.07 0.00 0.07 +freelance freelance NOM f s 0.40 0.07 0.40 0.07 +freesia freesia NOM m s 0.05 0.07 0.01 0.00 +freesias freesia NOM m p 0.05 0.07 0.04 0.07 +freezer freezer NOM m s 1.08 0.00 1.08 0.00 +frein frein NOM m s 10.25 13.18 4.87 7.91 +freina freiner VER 7.43 13.04 0.00 2.09 ind:pas:3s; +freinage freinage NOM m s 0.97 0.74 0.84 0.68 +freinages freinage NOM m p 0.97 0.74 0.14 0.07 +freinai freiner VER 7.43 13.04 0.00 0.14 ind:pas:1s; +freinaient freiner VER 7.43 13.04 0.00 0.34 ind:imp:3p; +freinais freiner VER 7.43 13.04 0.00 0.07 ind:imp:1s; +freinait freiner VER 7.43 13.04 0.00 0.68 ind:imp:3s; +freinant freiner VER 7.43 13.04 0.00 0.41 par:pre; +freine freiner VER 7.43 13.04 3.52 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +freinent freiner VER 7.43 13.04 0.15 0.41 ind:pre:3p; +freiner freiner VER 7.43 13.04 1.63 3.11 inf; +freinera freiner VER 7.43 13.04 0.07 0.00 ind:fut:3s; +freinerais freiner VER 7.43 13.04 0.01 0.00 cnd:pre:1s; +freinerez freiner VER 7.43 13.04 0.02 0.00 ind:fut:2p; +freines freiner VER 7.43 13.04 0.34 0.14 ind:pre:2s; +freineurs freineur NOM m p 0.01 0.00 0.01 0.00 +freinez freiner VER 7.43 13.04 0.50 0.00 imp:pre:2p;ind:pre:2p; +freinons freiner VER 7.43 13.04 0.10 0.07 imp:pre:1p;ind:pre:1p; +freins frein NOM m p 10.25 13.18 5.38 5.27 +freinèrent freiner VER 7.43 13.04 0.00 0.07 ind:pas:3p; +freiné freiner VER m s 7.43 13.04 1.04 1.08 par:pas; +freinée freiner VER f s 7.43 13.04 0.01 0.47 par:pas; +freinées freiner VER f p 7.43 13.04 0.01 0.07 par:pas; +freinés freiner VER m p 7.43 13.04 0.02 0.07 par:pas; +frelater frelater VER 0.06 0.07 0.01 0.00 inf; +frelaté frelaté ADJ m s 0.18 0.81 0.02 0.34 +frelatée frelaté ADJ f s 0.18 0.81 0.06 0.27 +frelatées frelaté ADJ f p 0.18 0.81 0.00 0.20 +frelatés frelaté ADJ m p 0.18 0.81 0.10 0.00 +frelon frelon NOM m s 0.78 1.82 0.59 0.81 +frelons frelon NOM m p 0.78 1.82 0.18 1.01 +freluquet freluquet NOM m s 0.51 0.68 0.46 0.34 +freluquets freluquet NOM m p 0.51 0.68 0.05 0.34 +french french NOM m s 0.20 0.41 0.20 0.41 +fresque fresque NOM f s 3.18 6.76 1.37 3.24 +fresques fresque NOM f p 3.18 6.76 1.81 3.51 +fresquiste fresquiste NOM s 0.01 0.00 0.01 0.00 +fret fret NOM m s 1.19 0.74 1.18 0.68 +fretin fretin NOM m s 0.64 0.61 0.63 0.61 +fretins fretin NOM m p 0.64 0.61 0.01 0.00 +frets fret NOM m p 1.19 0.74 0.01 0.07 +fretta fretter VER 0.00 0.07 0.00 0.07 ind:pas:3s; +frette frette NOM f s 0.16 0.27 0.16 0.27 +freudien freudien ADJ m s 0.49 0.61 0.23 0.34 +freudienne freudien ADJ f s 0.49 0.61 0.13 0.20 +freudiennes freudien ADJ f p 0.49 0.61 0.04 0.07 +freudiens freudien ADJ m p 0.49 0.61 0.10 0.00 +freudisme freudisme NOM m s 0.02 0.14 0.02 0.14 +freux freux NOM m 0.02 0.20 0.02 0.20 +friabilité friabilité NOM f s 0.00 0.14 0.00 0.14 +friable friable ADJ s 0.12 2.91 0.10 1.82 +friables friable ADJ p 0.12 2.91 0.03 1.08 +friand friand ADJ m s 0.47 3.31 0.29 1.49 +friande friand ADJ f s 0.47 3.31 0.02 0.74 +friandes friand ADJ f p 0.47 3.31 0.01 0.27 +friandise friandise NOM f s 2.28 4.05 0.46 1.49 +friandises friandise NOM f p 2.28 4.05 1.82 2.57 +friands friand ADJ m p 0.47 3.31 0.15 0.81 +fribourgeoise fribourgeois NOM f s 0.00 0.14 0.00 0.14 +fric_frac fric_frac NOM m 0.25 0.41 0.25 0.41 +fric fric NOM m s 109.01 26.42 108.99 26.35 +fricadelle fricadelle NOM f s 1.21 0.00 0.67 0.00 +fricadelles fricadelle NOM f p 1.21 0.00 0.54 0.00 +fricandeau fricandeau NOM m s 0.00 0.27 0.00 0.14 +fricandeaux fricandeau NOM m p 0.00 0.27 0.00 0.14 +fricasse fricasser VER 0.01 0.34 0.01 0.14 ind:pre:1s;ind:pre:3s; +fricasserai fricasser VER 0.01 0.34 0.00 0.07 ind:fut:1s; +fricassé fricasser VER m s 0.01 0.34 0.00 0.14 par:pas; +fricassée fricassée NOM f s 0.46 0.68 0.46 0.47 +fricassées fricassée NOM f p 0.46 0.68 0.00 0.20 +fricatif fricatif ADJ m s 0.00 0.20 0.00 0.20 +fricatives fricative NOM f p 0.01 0.00 0.01 0.00 +friche friche NOM f s 0.32 7.91 0.28 4.59 +friches friche NOM f p 0.32 7.91 0.04 3.31 +frichti frichti NOM m s 0.03 4.39 0.03 4.12 +frichtis frichti NOM m p 0.03 4.39 0.00 0.27 +fricot fricot NOM m s 0.01 0.81 0.01 0.54 +fricotage fricotage NOM m s 0.03 0.20 0.03 0.00 +fricotages fricotage NOM m p 0.03 0.20 0.00 0.20 +fricotaient fricoter VER 1.86 1.55 0.01 0.07 ind:imp:3p; +fricotais fricoter VER 1.86 1.55 0.06 0.07 ind:imp:1s;ind:imp:2s; +fricotait fricoter VER 1.86 1.55 0.08 0.27 ind:imp:3s; +fricotant fricoter VER 1.86 1.55 0.01 0.00 par:pre; +fricote fricoter VER 1.86 1.55 0.41 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fricotent fricoter VER 1.86 1.55 0.21 0.00 ind:pre:3p; +fricoter fricoter VER 1.86 1.55 0.47 0.41 inf; +fricotes fricoter VER 1.86 1.55 0.28 0.14 ind:pre:2s; +fricoteur fricoteur NOM m s 0.11 0.07 0.10 0.00 +fricoteurs fricoteur NOM m p 0.11 0.07 0.01 0.07 +fricotez fricoter VER 1.86 1.55 0.09 0.00 ind:pre:2p; +fricotiez fricoter VER 1.86 1.55 0.04 0.07 ind:imp:2p; +fricots fricot NOM m p 0.01 0.81 0.00 0.27 +fricoté fricoter VER m s 1.86 1.55 0.20 0.14 par:pas; +frics fric NOM m p 109.01 26.42 0.02 0.07 +friction friction NOM f s 1.14 2.36 0.87 0.54 +frictionna frictionner VER 0.59 2.64 0.00 0.54 ind:pas:3s; +frictionnais frictionner VER 0.59 2.64 0.10 0.00 ind:imp:1s; +frictionnait frictionner VER 0.59 2.64 0.11 0.41 ind:imp:3s; +frictionnant frictionner VER 0.59 2.64 0.00 0.27 par:pre; +frictionne frictionner VER 0.59 2.64 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frictionnent frictionner VER 0.59 2.64 0.01 0.14 ind:pre:3p; +frictionner frictionner VER 0.59 2.64 0.06 0.47 inf; +frictionnerai frictionner VER 0.59 2.64 0.00 0.07 ind:fut:1s; +frictionnerait frictionner VER 0.59 2.64 0.00 0.07 cnd:pre:3s; +frictionnez frictionner VER 0.59 2.64 0.14 0.07 imp:pre:2p;ind:pre:2p; +frictionnèrent frictionner VER 0.59 2.64 0.00 0.07 ind:pas:3p; +frictionné frictionner VER m s 0.59 2.64 0.01 0.27 par:pas; +frictions friction NOM f p 1.14 2.36 0.27 1.82 +fridolin fridolin NOM m s 0.16 0.34 0.01 0.00 +fridolins fridolin NOM m p 0.16 0.34 0.14 0.34 +frigidaire frigidaire NOM m s 1.20 3.45 1.16 3.18 +frigidaires frigidaire NOM m p 1.20 3.45 0.05 0.27 +frigide frigide ADJ s 0.69 0.81 0.65 0.68 +frigides frigide ADJ f p 0.69 0.81 0.04 0.14 +frigidité frigidité NOM f s 0.06 0.34 0.06 0.34 +frigo frigo NOM m s 19.29 7.97 19.07 7.50 +frigorifiant frigorifier VER 0.34 0.47 0.01 0.07 par:pre; +frigorifier frigorifier VER 0.34 0.47 0.01 0.00 inf; +frigorifique frigorifique ADJ m s 0.26 0.14 0.10 0.00 +frigorifiques frigorifique ADJ f p 0.26 0.14 0.16 0.14 +frigorifié frigorifier VER m s 0.34 0.47 0.23 0.07 par:pas; +frigorifiée frigorifier VER f s 0.34 0.47 0.08 0.07 par:pas; +frigorifiées frigorifié ADJ f p 0.13 0.61 0.01 0.07 +frigorifiés frigorifié ADJ m p 0.13 0.61 0.02 0.00 +frigorigène frigorigène ADJ m s 0.01 0.00 0.01 0.00 +frigorigène frigorigène NOM m s 0.01 0.00 0.01 0.00 +frigos frigo NOM m p 19.29 7.97 0.22 0.47 +frileuse frileux ADJ f s 1.08 5.88 0.31 1.55 +frileusement frileusement ADV 0.00 1.96 0.00 1.96 +frileuses frileux ADJ f p 1.08 5.88 0.03 0.68 +frileux frileux ADJ m 1.08 5.88 0.74 3.65 +frilosité frilosité NOM f s 0.01 0.07 0.01 0.07 +frima frimer VER 3.67 4.32 0.00 0.07 ind:pas:3s; +frimaient frimer VER 3.67 4.32 0.00 0.07 ind:imp:3p; +frimaire frimaire NOM m s 0.00 0.07 0.00 0.07 +frimais frimer VER 3.67 4.32 0.30 0.41 ind:imp:1s;ind:imp:2s; +frimait frimer VER 3.67 4.32 0.04 0.20 ind:imp:3s; +frimant frimer VER 3.67 4.32 0.01 0.20 par:pre; +frimas frimas NOM m 0.11 1.15 0.11 1.15 +frime frimer VER 3.67 4.32 1.37 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +friment frimer VER 3.67 4.32 0.02 0.07 ind:pre:3p; +frimer frimer VER 3.67 4.32 1.73 1.62 inf; +frimerais frimer VER 3.67 4.32 0.00 0.07 cnd:pre:2s; +frimes frimer VER 3.67 4.32 0.08 0.00 ind:pre:2s; +frimeur frimeur NOM m s 1.43 0.47 0.86 0.27 +frimeurs frimeur NOM m p 1.43 0.47 0.51 0.20 +frimeuse frimeur NOM f s 1.43 0.47 0.05 0.00 +frimez frimer VER 3.67 4.32 0.01 0.00 ind:pre:2p; +frimiez frimer VER 3.67 4.32 0.02 0.00 ind:imp:2p; +frimousse frimousse NOM f s 0.81 1.82 0.81 1.49 +frimousses frimousse NOM f p 0.81 1.82 0.00 0.34 +frimé frimer VER m s 3.67 4.32 0.08 0.20 par:pas; +frimée frimer VER f s 3.67 4.32 0.00 0.07 par:pas; +frimées frimer VER f p 3.67 4.32 0.00 0.07 par:pas; +frimés frimer VER m p 3.67 4.32 0.01 0.14 par:pas; +fringale fringale NOM f s 0.46 2.70 0.40 2.23 +fringales fringale NOM f p 0.46 2.70 0.05 0.47 +fringant fringant ADJ m s 0.86 2.77 0.63 1.96 +fringante fringant ADJ f s 0.86 2.77 0.19 0.41 +fringantes fringant ADJ f p 0.86 2.77 0.02 0.00 +fringants fringant ADJ m p 0.86 2.77 0.03 0.41 +fringillidé fringillidé NOM m s 0.01 0.07 0.01 0.07 +fringuait fringuer VER 1.28 3.31 0.02 0.27 ind:imp:3s; +fringue fringue NOM f s 13.12 11.82 0.23 0.20 +fringuent fringuer VER 1.28 3.31 0.14 0.14 ind:pre:3p; +fringuer fringuer VER 1.28 3.31 0.29 0.47 inf; +fringues fringue NOM f p 13.12 11.82 12.88 11.62 +fringuez fringuer VER 1.28 3.31 0.01 0.00 imp:pre:2p; +fringué fringuer VER m s 1.28 3.31 0.47 0.81 par:pas; +fringuée fringuer VER f s 1.28 3.31 0.10 0.88 par:pas; +fringuées fringuer VER f p 1.28 3.31 0.03 0.14 par:pas; +fringués fringuer VER m p 1.28 3.31 0.04 0.41 par:pas; +frio frio ADJ s 0.01 0.07 0.01 0.07 +fripa friper VER 0.11 1.89 0.00 0.07 ind:pas:3s; +fripaient friper VER 0.11 1.89 0.00 0.14 ind:imp:3p; +fripant friper VER 0.11 1.89 0.00 0.07 par:pre; +fripe fripe NOM f s 0.58 0.95 0.22 0.61 +fripent friper VER 0.11 1.89 0.01 0.07 ind:pre:3p; +friper friper VER 0.11 1.89 0.01 0.20 inf; +friperie friperie NOM f s 0.37 0.20 0.37 0.20 +fripes fripe NOM f p 0.58 0.95 0.36 0.34 +fripier fripier NOM m s 0.04 1.01 0.02 0.61 +fripiers fripier NOM m p 0.04 1.01 0.02 0.41 +fripon fripon NOM m s 0.86 0.68 0.44 0.34 +friponne fripon NOM f s 0.86 0.68 0.33 0.07 +friponnerie friponnerie NOM f s 0.13 0.14 0.13 0.14 +friponnes friponne NOM f p 0.02 0.00 0.02 0.00 +fripons fripon NOM m p 0.86 0.68 0.09 0.20 +fripouille fripouille NOM f s 2.08 2.23 1.99 1.15 +fripouillerie fripouillerie NOM f s 0.00 0.20 0.00 0.14 +fripouilleries fripouillerie NOM f p 0.00 0.20 0.00 0.07 +fripouilles fripouille NOM f p 2.08 2.23 0.10 1.08 +frippe frippe NOM f s 0.00 0.07 0.00 0.07 +fripé fripé ADJ m s 0.57 5.88 0.33 1.49 +fripée fripé ADJ f s 0.57 5.88 0.17 1.82 +fripées fripé ADJ f p 0.57 5.88 0.04 1.01 +fripés fripé ADJ m p 0.57 5.88 0.03 1.55 +friqué friqué ADJ m s 1.05 0.74 0.32 0.20 +friquée friqué ADJ f s 1.05 0.74 0.16 0.14 +friquées friqué ADJ f p 1.05 0.74 0.11 0.07 +friqués friqué ADJ m p 1.05 0.74 0.46 0.34 +frire frire VER 6.63 4.73 2.26 1.82 inf; +fris frire VER 6.63 4.73 0.32 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +frisa friser VER 2.54 7.70 0.00 0.14 ind:pas:3s; +frisaient friser VER 2.54 7.70 0.14 0.27 ind:imp:3p; +frisais friser VER 2.54 7.70 0.10 0.07 ind:imp:1s;ind:imp:2s; +frisait friser VER 2.54 7.70 0.16 0.95 ind:imp:3s; +frisant frisant ADJ m s 0.02 0.95 0.02 0.20 +frisante frisant ADJ f s 0.02 0.95 0.00 0.68 +frisants frisant ADJ m p 0.02 0.95 0.00 0.07 +frisbee frisbee NOM m s 1.35 0.00 1.35 0.00 +frise_poulet frise_poulet NOM m s 0.01 0.00 0.01 0.00 +frise friser VER 2.54 7.70 0.80 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +friseler friseler VER 0.00 0.07 0.00 0.07 inf; +friselis friselis NOM m 0.00 1.35 0.00 1.35 +friselée friselée NOM f s 0.00 0.07 0.00 0.07 +frisent friser VER 2.54 7.70 0.04 0.27 ind:pre:3p; +friser friser VER 2.54 7.70 0.42 1.42 inf; +friserai friser VER 2.54 7.70 0.00 0.07 ind:fut:1s; +frises frise NOM f p 0.37 3.45 0.14 0.41 +frisette frisette NOM f s 0.06 1.42 0.03 0.88 +frisettes frisette NOM f p 0.06 1.42 0.03 0.54 +friseur friseur NOM m s 0.00 0.20 0.00 0.20 +frisez friser VER 2.54 7.70 0.02 0.00 ind:pre:2p; +frisâmes friser VER 2.54 7.70 0.00 0.07 ind:pas:1p; +frison frison NOM m s 0.10 0.54 0.10 0.00 +frisonne frison ADJ f s 0.00 0.27 0.00 0.14 +frisonnes frison ADJ f p 0.00 0.27 0.00 0.07 +frisons friser VER 2.54 7.70 0.14 0.00 ind:pre:1p; +frisottaient frisotter VER 0.01 0.61 0.00 0.14 ind:imp:3p; +frisottant frisottant ADJ m s 0.00 0.27 0.00 0.07 +frisottants frisottant ADJ m p 0.00 0.27 0.00 0.20 +frisottement frisottement NOM m s 0.00 0.07 0.00 0.07 +frisottent frisotter VER 0.01 0.61 0.00 0.14 ind:pre:3p; +frisotter frisotter VER 0.01 0.61 0.00 0.07 inf; +frisottis frisottis NOM m 0.01 0.14 0.01 0.14 +frisotté frisotter VER m s 0.01 0.61 0.01 0.00 par:pas; +frisottée frisotté ADJ f s 0.00 0.68 0.00 0.41 +frisottées frisotter VER f p 0.01 0.61 0.00 0.07 par:pas; +frisottés frisotter VER m p 0.01 0.61 0.00 0.14 par:pas; +frisous frisou NOM m p 0.14 0.07 0.14 0.07 +frisquet frisquet ADJ m s 1.25 1.01 1.16 0.68 +frisquette frisquet ADJ f s 1.25 1.01 0.10 0.34 +frisselis frisselis NOM m 0.00 0.14 0.00 0.14 +frisson frisson NOM m s 8.62 21.69 4.23 14.26 +frissonna frissonner VER 2.21 20.34 0.01 4.39 ind:pas:3s; +frissonnai frissonner VER 2.21 20.34 0.01 0.34 ind:pas:1s; +frissonnaient frissonner VER 2.21 20.34 0.00 1.01 ind:imp:3p; +frissonnais frissonner VER 2.21 20.34 0.03 0.68 ind:imp:1s; +frissonnait frissonner VER 2.21 20.34 0.21 3.38 ind:imp:3s; +frissonnant frissonner VER 2.21 20.34 0.14 2.09 par:pre; +frissonnante frissonnant ADJ f s 0.20 3.92 0.07 1.82 +frissonnantes frissonnant ADJ f p 0.20 3.92 0.00 0.61 +frissonnants frissonnant ADJ m p 0.20 3.92 0.02 0.54 +frissonne frissonner VER 2.21 20.34 0.75 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frissonnement frissonnement NOM m s 0.01 0.61 0.01 0.41 +frissonnements frissonnement NOM m p 0.01 0.61 0.00 0.20 +frissonnent frissonner VER 2.21 20.34 0.03 0.47 ind:pre:3p; +frissonner frissonner VER 2.21 20.34 0.73 4.12 inf; +frissonnes frissonner VER 2.21 20.34 0.11 0.00 ind:pre:2s; +frissonnez frissonner VER 2.21 20.34 0.04 0.00 ind:pre:2p; +frissonnèrent frissonner VER 2.21 20.34 0.00 0.07 ind:pas:3p; +frissonné frissonner VER m s 2.21 20.34 0.14 0.61 par:pas; +frissons frisson NOM m p 8.62 21.69 4.39 7.43 +frisé frisé ADJ m s 2.72 10.20 1.56 3.24 +frisée frisé ADJ f s 2.72 10.20 0.40 1.28 +frisées frisé ADJ f p 2.72 10.20 0.04 0.68 +frisure frisure NOM f s 0.00 0.34 0.00 0.14 +frisures frisure NOM f p 0.00 0.34 0.00 0.20 +frisés frisé ADJ m p 2.72 10.20 0.73 5.00 +frit frire VER m s 6.63 4.73 2.74 1.82 ind:pre:3s;par:pas; +frite frite NOM f s 9.33 5.47 0.66 0.54 +friterie friterie NOM f s 0.18 0.47 0.18 0.14 +friteries friterie NOM f p 0.18 0.47 0.00 0.34 +frites frite NOM f p 9.33 5.47 8.68 4.93 +friteuse friteur NOM f s 0.34 0.41 0.34 0.20 +friteuses friteuse NOM f p 0.02 0.00 0.02 0.00 +fritillaires fritillaire NOM f p 0.01 0.07 0.01 0.07 +fritons friton NOM m p 0.00 0.07 0.00 0.07 +frits frire VER m p 6.63 4.73 1.32 1.08 par:pas; +fritte fritte NOM f s 0.01 0.00 0.01 0.00 +fritter fritter VER 0.04 0.00 0.04 0.00 inf; +frittés fritter VER m p 0.04 0.00 0.01 0.00 par:pas; +friture friture NOM f s 1.88 3.78 1.81 3.24 +fritures friture NOM f p 1.88 3.78 0.06 0.54 +friturier friturier NOM m s 0.00 0.07 0.00 0.07 +fritz fritz NOM m 1.72 1.82 1.72 1.82 +frivole frivole ADJ s 2.22 5.81 1.75 4.26 +frivoles frivole ADJ p 2.22 5.81 0.47 1.55 +frivolité frivolité NOM f s 0.48 2.84 0.40 2.30 +frivolités frivolité NOM f p 0.48 2.84 0.08 0.54 +froc froc NOM m s 6.92 7.64 6.61 6.89 +frocard frocard NOM m s 0.00 0.20 0.00 0.14 +frocards frocard NOM m p 0.00 0.20 0.00 0.07 +frocs froc NOM m p 6.92 7.64 0.31 0.74 +froid froid ADJ m s 127.22 161.69 98.43 94.86 +froidasse froidasse ADJ f s 0.00 0.07 0.00 0.07 +froide froid ADJ f s 127.22 161.69 21.48 49.59 +froidement froidement ADV 0.94 9.05 0.94 9.05 +froides froid ADJ f p 127.22 161.69 4.07 10.00 +froideur froideur NOM f s 1.94 7.84 1.94 7.57 +froideurs froideur NOM f p 1.94 7.84 0.00 0.27 +froidi froidir VER m s 0.00 0.20 0.00 0.07 par:pas; +froidir froidir VER 0.00 0.20 0.00 0.07 inf; +froidissait froidir VER 0.00 0.20 0.00 0.07 ind:imp:3s; +froids froid ADJ m p 127.22 161.69 3.24 7.23 +froidure froidure NOM f s 0.12 1.69 0.11 1.55 +froidures froidure NOM f p 0.12 1.69 0.01 0.14 +froissa froisser VER 3.74 12.50 0.00 0.88 ind:pas:3s; +froissaient froisser VER 3.74 12.50 0.00 0.54 ind:imp:3p; +froissais froisser VER 3.74 12.50 0.01 0.14 ind:imp:1s; +froissait froisser VER 3.74 12.50 0.01 1.55 ind:imp:3s; +froissant froisser VER 3.74 12.50 0.00 1.08 par:pre; +froisse froisser VER 3.74 12.50 0.64 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +froissement froissement NOM m s 0.23 10.54 0.23 8.38 +froissements froissement NOM m p 0.23 10.54 0.01 2.16 +froissent froisser VER 3.74 12.50 0.04 0.47 ind:pre:3p; +froisser froisser VER 3.74 12.50 1.60 1.96 inf; +froissera froisser VER 3.74 12.50 0.01 0.00 ind:fut:3s; +froisserais froisser VER 3.74 12.50 0.00 0.07 cnd:pre:1s; +froisserait froisser VER 3.74 12.50 0.02 0.00 cnd:pre:3s; +froisses froisser VER 3.74 12.50 0.05 0.14 ind:pre:2s; +froissez froisser VER 3.74 12.50 0.04 0.00 imp:pre:2p;ind:pre:2p; +froissions froisser VER 3.74 12.50 0.00 0.07 ind:imp:1p; +froissèrent froisser VER 3.74 12.50 0.00 0.07 ind:pas:3p; +froissé froisser VER m s 3.74 12.50 0.66 2.30 par:pas; +froissée froisser VER f s 3.74 12.50 0.59 0.81 par:pas; +froissées froissé ADJ f p 0.96 9.46 0.01 1.22 +froissés froissé ADJ m p 0.96 9.46 0.21 2.03 +fromage fromage NOM m s 27.22 26.96 25.68 20.81 +fromager fromager NOM m s 0.32 0.47 0.30 0.34 +fromagerie fromagerie NOM f s 0.01 0.41 0.01 0.41 +fromagers fromager NOM m p 0.32 0.47 0.02 0.14 +fromages fromage NOM m p 27.22 26.96 1.54 6.15 +fromagère fromager ADJ f s 0.04 0.27 0.00 0.14 +fromegi fromegi NOM m s 0.00 0.07 0.00 0.07 +froment froment NOM m s 0.21 1.35 0.21 1.35 +fromental fromental NOM m s 0.00 0.07 0.00 0.07 +frometon frometon NOM m s 0.04 0.47 0.04 0.27 +frometons frometon NOM m p 0.04 0.47 0.00 0.20 +fronce fronce NOM f s 0.36 0.54 0.34 0.07 +froncement froncement NOM m s 0.27 1.69 0.16 1.08 +froncements froncement NOM m p 0.27 1.69 0.11 0.61 +froncer froncer VER 0.52 15.88 0.08 0.88 inf; +froncerait froncer VER 0.52 15.88 0.01 0.20 cnd:pre:3s; +fronces froncer VER 0.52 15.88 0.04 0.07 ind:pre:2s; +froncez froncer VER 0.52 15.88 0.06 0.00 imp:pre:2p;ind:pre:2p; +froncèrent froncer VER 0.52 15.88 0.00 0.07 ind:pas:3p; +froncé froncer VER m s 0.52 15.88 0.04 1.08 par:pas; +froncée froncé ADJ f s 0.14 5.61 0.10 0.20 +froncées froncé ADJ f p 0.14 5.61 0.00 0.14 +froncés froncé ADJ m p 0.14 5.61 0.01 4.19 +frondaient fronder VER 0.00 0.27 0.00 0.07 ind:imp:3p; +frondaison frondaison NOM f s 0.01 3.92 0.00 0.61 +frondaisons frondaison NOM f p 0.01 3.92 0.01 3.31 +fronde fronde NOM f s 1.02 1.82 0.86 1.69 +frondent fronder VER 0.00 0.27 0.00 0.07 ind:pre:3p; +frondes fronde NOM f p 1.02 1.82 0.16 0.14 +frondeur frondeur ADJ m s 0.01 0.61 0.01 0.34 +frondeurs frondeur NOM m p 0.02 0.00 0.02 0.00 +frondeuse frondeur ADJ f s 0.01 0.61 0.00 0.14 +frondé fronder VER m s 0.00 0.27 0.00 0.07 par:pas; +front front NOM m s 41.03 159.12 38.81 152.57 +frontal frontal ADJ m s 1.62 1.55 1.15 0.74 +frontale frontal ADJ f s 1.62 1.55 0.35 0.81 +frontalier frontalier ADJ m s 0.60 1.22 0.04 0.07 +frontaliers frontalier ADJ m p 0.60 1.22 0.04 0.34 +frontalière frontalier ADJ f s 0.60 1.22 0.32 0.68 +frontalières frontalier ADJ f p 0.60 1.22 0.20 0.14 +frontaux frontal ADJ m p 1.62 1.55 0.12 0.00 +fronteau fronteau NOM m s 0.00 0.07 0.00 0.07 +fronça froncer VER 0.52 15.88 0.00 5.61 ind:pas:3s; +fronçai froncer VER 0.52 15.88 0.00 0.14 ind:pas:1s; +fronçaient froncer VER 0.52 15.88 0.00 0.14 ind:imp:3p; +fronçais froncer VER 0.52 15.88 0.01 0.07 ind:imp:1s; +fronçait froncer VER 0.52 15.88 0.01 1.01 ind:imp:3s; +fronçant froncer VER 0.52 15.88 0.01 3.58 par:pre; +frontispice frontispice NOM m s 0.01 0.34 0.01 0.27 +frontispices frontispice NOM m p 0.01 0.34 0.00 0.07 +frontière frontière NOM f s 34.54 40.47 28.54 26.42 +frontières frontière NOM f p 34.54 40.47 6.00 14.05 +fronton fronton NOM m s 0.10 5.47 0.10 4.39 +frontons fronton NOM m p 0.10 5.47 0.00 1.08 +fronts front NOM m p 41.03 159.12 2.23 6.55 +frotta frotter VER 12.52 50.14 0.01 7.70 ind:pas:3s; +frottage frottage NOM m s 0.05 0.27 0.05 0.20 +frottages frottage NOM m p 0.05 0.27 0.00 0.07 +frottai frotter VER 12.52 50.14 0.01 0.14 ind:pas:1s; +frottaient frotter VER 12.52 50.14 0.16 1.42 ind:imp:3p; +frottais frotter VER 12.52 50.14 0.33 1.01 ind:imp:1s;ind:imp:2s; +frottait frotter VER 12.52 50.14 0.29 8.38 ind:imp:3s; +frottant frotter VER 12.52 50.14 0.27 7.03 par:pre; +frotte frotter VER 12.52 50.14 3.90 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +frottement frottement NOM m s 0.68 5.07 0.31 3.72 +frottements frottement NOM m p 0.68 5.07 0.37 1.35 +frottent frotter VER 12.52 50.14 0.16 1.01 ind:pre:3p; +frotter frotter VER 12.52 50.14 4.01 8.99 inf; +frottera frotter VER 12.52 50.14 0.25 0.00 ind:fut:3s; +frotterai frotter VER 12.52 50.14 0.05 0.14 ind:fut:1s; +frotterais frotter VER 12.52 50.14 0.06 0.00 cnd:pre:1s; +frotterait frotter VER 12.52 50.14 0.01 0.20 cnd:pre:3s; +frotteras frotter VER 12.52 50.14 0.02 0.07 ind:fut:2s; +frotterons frotter VER 12.52 50.14 0.00 0.07 ind:fut:1p; +frottes frotter VER 12.52 50.14 0.58 0.07 ind:pre:2s; +frotteur frotteur ADJ m s 0.01 0.14 0.01 0.07 +frotteurs frotteur NOM m p 0.00 0.68 0.00 0.14 +frotteuse frotteur NOM f s 0.00 0.68 0.00 0.14 +frotteuses frotteur NOM f p 0.00 0.68 0.00 0.07 +frottez frotter VER 12.52 50.14 0.74 0.14 imp:pre:2p;ind:pre:2p; +frotti_frotta frotti_frotta NOM m 0.04 0.20 0.04 0.20 +frottiez frotter VER 12.52 50.14 0.05 0.00 ind:imp:2p; +frottin frottin NOM m s 0.01 0.20 0.01 0.20 +frottions frotter VER 12.52 50.14 0.00 0.07 ind:imp:1p; +frottis frottis NOM m 0.39 0.34 0.39 0.34 +frottoir frottoir NOM m s 0.00 0.41 0.00 0.34 +frottoirs frottoir NOM m p 0.00 0.41 0.00 0.07 +frottons frotton NOM m p 0.06 0.14 0.06 0.14 +frottèrent frotter VER 12.52 50.14 0.00 0.27 ind:pas:3p; +frotté frotter VER m s 12.52 50.14 1.25 2.64 par:pas; +frottée frotter VER f s 12.52 50.14 0.30 0.61 par:pas; +frottées frotter VER f p 12.52 50.14 0.01 0.81 par:pas; +frottés frotter VER m p 12.52 50.14 0.03 0.81 par:pas; +frou_frou frou_frou NOM m s 0.23 0.47 0.09 0.41 +frouement frouement NOM m s 0.00 0.27 0.00 0.20 +frouements frouement NOM m p 0.00 0.27 0.00 0.07 +froufrou froufrou NOM m s 0.32 0.41 0.23 0.14 +froufrous froufrou NOM m p 0.32 0.41 0.08 0.27 +froufroutait froufrouter VER 0.02 0.07 0.00 0.07 ind:imp:3s; +froufroutant froufrouter VER 0.02 0.07 0.01 0.00 par:pre; +froufroutante froufroutant ADJ f s 0.01 0.41 0.00 0.07 +froufroutantes froufroutant ADJ f p 0.01 0.41 0.00 0.20 +froufroutants froufroutant ADJ m p 0.01 0.41 0.01 0.07 +froufroutement froufroutement NOM m s 0.00 0.07 0.00 0.07 +froufrouter froufrouter VER 0.02 0.07 0.01 0.00 inf; +frou_frou frou_frou NOM m p 0.23 0.47 0.14 0.07 +froussard froussard NOM m s 1.99 0.61 1.33 0.41 +froussarde froussard NOM f s 1.99 0.61 0.26 0.00 +froussards froussard NOM m p 1.99 0.61 0.40 0.20 +frousse frousse NOM f s 3.13 2.36 2.90 2.16 +frousses frousse NOM f p 3.13 2.36 0.23 0.20 +frère frère NOM m s 390.39 216.35 311.45 142.36 +frères frère NOM m p 390.39 216.35 78.94 73.99 +frète fréter VER 0.01 0.74 0.00 0.07 ind:pre:1s; +fructidor fructidor NOM m s 0.01 0.07 0.01 0.07 +fructifiaient fructifier VER 0.55 1.28 0.00 0.07 ind:imp:3p; +fructifiant fructifier VER 0.55 1.28 0.01 0.07 par:pre; +fructification fructification NOM f s 0.00 0.14 0.00 0.14 +fructifier fructifier VER 0.55 1.28 0.53 1.08 inf; +fructifié fructifier VER m s 0.55 1.28 0.01 0.07 par:pas; +fructose fructose NOM m s 0.07 0.00 0.07 0.00 +fructueuse fructueux ADJ f s 1.05 3.24 0.54 1.28 +fructueuses fructueux ADJ f p 1.05 3.24 0.19 0.61 +fructueux fructueux ADJ m 1.05 3.24 0.32 1.35 +frugal frugal ADJ m s 0.19 1.28 0.18 0.61 +frugale frugal ADJ f s 0.19 1.28 0.01 0.41 +frugalement frugalement ADV 0.01 0.07 0.01 0.07 +frugales frugal ADJ f p 0.19 1.28 0.00 0.07 +frugalité frugalité NOM f s 0.01 0.47 0.01 0.47 +frégate frégate NOM f s 0.63 3.11 0.46 1.82 +frégates frégate NOM f p 0.63 3.11 0.17 1.28 +frugaux frugal ADJ m p 0.19 1.28 0.00 0.20 +frugivore frugivore ADJ s 0.02 0.00 0.02 0.00 +fruit fruit NOM m s 39.45 64.05 15.99 21.96 +fruiter fruiter VER 0.04 0.41 0.00 0.07 inf; +fruiteries fruiterie NOM f p 0.00 0.14 0.00 0.14 +fruiteux fruiteux ADJ m s 0.00 0.07 0.00 0.07 +fruitier fruitier ADJ m s 0.39 2.43 0.15 0.47 +fruitiers fruitier ADJ m p 0.39 2.43 0.22 1.82 +fruitière fruitier ADJ f s 0.39 2.43 0.01 0.07 +fruitières fruitier ADJ f p 0.39 2.43 0.01 0.07 +fruits fruit NOM m p 39.45 64.05 23.45 42.09 +fruité fruité ADJ m s 0.38 1.01 0.31 0.34 +fruitée fruité ADJ f s 0.38 1.01 0.01 0.54 +fruitées fruité ADJ f p 0.38 1.01 0.00 0.07 +fruités fruité ADJ m p 0.38 1.01 0.06 0.07 +frêle frêle ADJ s 1.19 12.03 1.00 9.80 +frêles frêle ADJ p 1.19 12.03 0.19 2.23 +frémi frémir VER m s 3.86 24.26 0.43 1.49 par:pas; +frémir frémir VER 3.86 24.26 1.38 6.22 inf; +frémirait frémir VER 3.86 24.26 0.14 0.07 cnd:pre:3s; +frémirent frémir VER 3.86 24.26 0.00 1.08 ind:pas:3p; +frémiront frémir VER 3.86 24.26 0.00 0.07 ind:fut:3p; +frémis frémir VER m p 3.86 24.26 1.06 1.08 ind:pre:1s;ind:pre:2s;par:pas; +frémissaient frémir VER 3.86 24.26 0.00 2.23 ind:imp:3p; +frémissais frémir VER 3.86 24.26 0.00 0.41 ind:imp:1s; +frémissait frémir VER 3.86 24.26 0.02 2.16 ind:imp:3s; +frémissant frémissant ADJ m s 0.77 8.45 0.39 2.03 +frémissante frémissant ADJ f s 0.77 8.45 0.14 3.24 +frémissantes frémissant ADJ f p 0.77 8.45 0.10 1.69 +frémissants frémissant ADJ m p 0.77 8.45 0.14 1.49 +frémisse frémir VER 3.86 24.26 0.00 0.07 sub:pre:3s; +frémissement frémissement NOM m s 0.66 10.34 0.55 8.58 +frémissements frémissement NOM m p 0.66 10.34 0.11 1.76 +frémissent frémir VER 3.86 24.26 0.34 1.82 ind:pre:3p; +frémissez frémir VER 3.86 24.26 0.00 0.07 ind:pre:2p; +frémit frémir VER 3.86 24.26 0.46 5.68 ind:pre:3s;ind:pas:3s; +frêne frêne NOM m s 1.81 2.50 1.71 1.62 +frênes frêne NOM m p 1.81 2.50 0.10 0.88 +frénésie frénésie NOM f s 1.25 8.51 1.23 7.77 +frénésies frénésie NOM f p 1.25 8.51 0.02 0.74 +frénétique frénétique ADJ s 0.61 6.28 0.52 4.12 +frénétiquement frénétiquement ADV 0.26 2.97 0.26 2.97 +frénétiques frénétique ADJ p 0.61 6.28 0.09 2.16 +fréon fréon NOM m s 0.21 0.00 0.21 0.00 +fréquemment fréquemment ADV 1.16 8.24 1.16 8.24 +fréquence fréquence NOM f s 10.12 2.43 7.61 2.23 +fréquences fréquence NOM f p 10.12 2.43 2.51 0.20 +fréquent fréquent ADJ m s 4.14 12.09 2.39 3.78 +fréquenta fréquenter VER 18.97 30.81 0.01 0.68 ind:pas:3s; +fréquentable fréquentable ADJ m s 0.37 1.01 0.22 0.34 +fréquentables fréquentable ADJ m p 0.37 1.01 0.15 0.68 +fréquentai fréquenter VER 18.97 30.81 0.00 0.34 ind:pas:1s; +fréquentaient fréquenter VER 18.97 30.81 0.24 2.30 ind:imp:3p; +fréquentais fréquenter VER 18.97 30.81 0.96 1.22 ind:imp:1s;ind:imp:2s; +fréquentait fréquenter VER 18.97 30.81 1.55 5.54 ind:imp:3s; +fréquentant fréquenter VER 18.97 30.81 0.04 0.81 par:pre; +fréquentation fréquentation NOM f s 2.81 5.74 0.46 2.97 +fréquentations fréquentation NOM f p 2.81 5.74 2.35 2.77 +fréquente fréquenter VER 18.97 30.81 4.76 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +fréquentent fréquenter VER 18.97 30.81 0.64 0.74 ind:pre:3p; +fréquenter fréquenter VER 18.97 30.81 4.57 6.76 ind:pre:2p;inf; +fréquenterais fréquenter VER 18.97 30.81 0.39 0.14 cnd:pre:1s;cnd:pre:2s; +fréquenterait fréquenter VER 18.97 30.81 0.11 0.00 cnd:pre:3s; +fréquenteras fréquenter VER 18.97 30.81 0.03 0.00 ind:fut:2s; +fréquenterez fréquenter VER 18.97 30.81 0.01 0.07 ind:fut:2p; +fréquentes fréquenter VER 18.97 30.81 2.01 0.61 ind:pre:2s; +fréquentez fréquenter VER 18.97 30.81 0.65 0.47 imp:pre:2p;ind:pre:2p; +fréquentiez fréquenter VER 18.97 30.81 0.17 0.14 ind:imp:2p; +fréquentions fréquenter VER 18.97 30.81 0.14 0.47 ind:imp:1p; +fréquentons fréquenter VER 18.97 30.81 0.09 0.14 ind:pre:1p; +fréquentât fréquenter VER 18.97 30.81 0.00 0.20 sub:imp:3s; +fréquents fréquent ADJ m p 4.14 12.09 0.27 3.11 +fréquentèrent fréquenter VER 18.97 30.81 0.00 0.07 ind:pas:3p; +fréquenté fréquenter VER m s 18.97 30.81 2.31 3.65 par:pas; +fréquentée fréquenté ADJ f s 0.86 3.51 0.38 0.74 +fréquentées fréquenter VER f p 18.97 30.81 0.02 0.68 par:pas; +fréquentés fréquenter VER m p 18.97 30.81 0.12 1.42 par:pas; +frérot frérot NOM m s 2.50 0.81 2.46 0.68 +frérots frérot NOM m p 2.50 0.81 0.04 0.14 +frusquer frusquer VER 0.00 0.14 0.00 0.07 inf; +frusques frusque NOM f p 0.64 3.24 0.64 3.24 +frusquée frusquer VER f s 0.00 0.14 0.00 0.07 par:pas; +fruste fruste ADJ s 0.51 4.86 0.37 3.11 +frustes fruste ADJ p 0.51 4.86 0.14 1.76 +frustra frustrer VER 2.68 3.38 0.00 0.07 ind:pas:3s; +frustrait frustrer VER 2.68 3.38 0.14 0.27 ind:imp:3s; +frustrant frustrant ADJ m s 1.39 0.14 1.23 0.00 +frustrante frustrant ADJ f s 1.39 0.14 0.14 0.14 +frustrantes frustrant ADJ f p 1.39 0.14 0.02 0.00 +frustration frustration NOM f s 3.06 3.85 2.73 3.24 +frustrations frustration NOM f p 3.06 3.85 0.33 0.61 +frustre frustrer VER 2.68 3.38 0.37 0.00 ind:pre:3s; +frustrer frustrer VER 2.68 3.38 0.08 0.34 inf; +frustrât frustrer VER 2.68 3.38 0.00 0.14 sub:imp:3s; +frustré frustré ADJ m s 1.98 2.43 1.14 1.15 +frustrée frustré ADJ f s 1.98 2.43 0.62 0.68 +frustrées frustré NOM f p 0.78 0.81 0.04 0.07 +frustrés frustrer VER m p 2.68 3.38 0.49 0.74 par:pas; +fréta fréter VER 0.01 0.74 0.00 0.14 ind:pas:3s; +frétait fréter VER 0.01 0.74 0.00 0.07 ind:imp:3s; +frétant fréter VER 0.01 0.74 0.00 0.07 par:pre; +fréter fréter VER 0.01 0.74 0.01 0.14 inf; +frétilla frétiller VER 0.60 3.58 0.00 0.14 ind:pas:3s; +frétillaient frétiller VER 0.60 3.58 0.01 0.27 ind:imp:3p; +frétillait frétiller VER 0.60 3.58 0.10 0.61 ind:imp:3s; +frétillant frétillant ADJ m s 0.22 1.89 0.07 0.61 +frétillante frétillant ADJ f s 0.22 1.89 0.13 0.47 +frétillantes frétillant ADJ f p 0.22 1.89 0.00 0.27 +frétillants frétillant ADJ m p 0.22 1.89 0.02 0.54 +frétillard frétillard ADJ m s 0.00 0.14 0.00 0.07 +frétillarde frétillard ADJ f s 0.00 0.14 0.00 0.07 +frétille frétiller VER 0.60 3.58 0.30 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +frétillement frétillement NOM m s 0.00 0.34 0.00 0.27 +frétillements frétillement NOM m p 0.00 0.34 0.00 0.07 +frétillent frétiller VER 0.60 3.58 0.06 0.27 ind:pre:3p; +frétiller frétiller VER 0.60 3.58 0.08 0.54 inf; +frétillon frétillon ADJ m s 0.00 0.20 0.00 0.20 +frétillé frétiller VER m s 0.60 3.58 0.00 0.07 par:pas; +frétèrent fréter VER 0.01 0.74 0.00 0.07 ind:pas:3p; +frété fréter VER m s 0.01 0.74 0.00 0.14 par:pas; +frétée fréter VER f s 0.01 0.74 0.00 0.07 par:pas; +fèces fèces NOM f p 0.32 0.20 0.32 0.20 +fère fer NOM f s 37.08 114.19 0.02 0.20 +fève fève NOM f s 1.12 1.89 0.44 0.61 +fèves fève NOM f p 1.12 1.89 0.68 1.28 +féal féal ADJ m s 0.01 0.20 0.01 0.14 +féaux féal ADJ m p 0.01 0.20 0.00 0.07 +fébrile fébrile ADJ s 0.98 7.16 0.94 5.27 +fébrilement fébrilement ADV 0.24 4.53 0.24 4.53 +fébriles fébrile ADJ p 0.98 7.16 0.05 1.89 +fébrilité fébrilité NOM f s 0.01 2.36 0.01 2.36 +fécal fécal ADJ m s 0.27 0.88 0.05 0.27 +fécale fécal ADJ f s 0.27 0.88 0.06 0.47 +fécales fécal ADJ f p 0.27 0.88 0.13 0.07 +fécalome fécalome NOM m s 0.01 0.00 0.01 0.00 +fécaux fécal ADJ m p 0.27 0.88 0.03 0.07 +fuchsia fuchsia ADJ 0.06 0.34 0.06 0.34 +fuchsias fuchsia NOM m p 0.04 0.34 0.00 0.20 +fécond fécond ADJ m s 0.94 3.92 0.04 0.68 +fécondais féconder VER 1.46 3.04 0.00 0.07 ind:imp:1s; +fécondait féconder VER 1.46 3.04 0.00 0.20 ind:imp:3s; +fécondant féconder VER 1.46 3.04 0.10 0.00 par:pre; +fécondante fécondant ADJ f s 0.00 0.20 0.00 0.07 +fécondateur fécondateur NOM m s 0.10 0.00 0.10 0.00 +fécondation fécondation NOM f s 0.42 0.74 0.41 0.47 +fécondations fécondation NOM f p 0.42 0.74 0.01 0.27 +féconde fécond ADJ f s 0.94 3.92 0.73 2.09 +fécondent féconder VER 1.46 3.04 0.01 0.14 ind:pre:3p; +féconder féconder VER 1.46 3.04 0.49 0.88 inf; +féconderai féconder VER 1.46 3.04 0.01 0.00 ind:fut:1s; +féconderait féconder VER 1.46 3.04 0.01 0.07 cnd:pre:3s; +fécondes féconder VER 1.46 3.04 0.10 0.00 ind:pre:2s; +fécondez féconder VER 1.46 3.04 0.02 0.00 imp:pre:2p; +fécondité fécondité NOM f s 0.44 2.03 0.44 2.03 +féconds fécond ADJ m p 0.94 3.92 0.10 0.34 +fécondé féconder VER m s 1.46 3.04 0.28 0.68 par:pas; +fécondée féconder VER f s 1.46 3.04 0.28 0.47 par:pas; +fécondées féconder VER f p 1.46 3.04 0.02 0.14 par:pas; +fécondés féconder VER m p 1.46 3.04 0.03 0.07 par:pas; +fécule fécule NOM f s 0.17 0.07 0.17 0.07 +féculent féculent NOM m s 0.20 0.34 0.02 0.00 +féculents féculent NOM m p 0.20 0.34 0.18 0.34 +fédéral fédéral ADJ m s 13.92 1.76 6.94 0.68 +fédérale fédéral ADJ f s 13.92 1.76 4.56 0.81 +fédérales fédéral ADJ f p 13.92 1.76 0.88 0.07 +fédéralisme fédéralisme NOM m s 0.14 0.07 0.14 0.07 +fédéraliste fédéraliste ADJ s 0.03 0.00 0.03 0.00 +fédérateur fédérateur ADJ m s 0.03 0.00 0.03 0.00 +fédération fédération NOM f s 2.56 2.36 2.56 2.23 +fédérations fédération NOM f p 2.56 2.36 0.00 0.14 +fédérative fédératif ADJ f s 0.00 0.07 0.00 0.07 +fédératrice fédérateur NOM f s 0.01 0.07 0.01 0.00 +fédéraux fédéral NOM m p 4.25 0.14 3.91 0.07 +fédérer fédérer VER 0.09 0.20 0.00 0.07 inf; +fédéré fédéré NOM m s 0.15 0.34 0.01 0.07 +fédérée fédéré ADJ f s 0.03 0.34 0.01 0.07 +fédérées fédéré ADJ f p 0.03 0.34 0.00 0.07 +fédérés fédéré NOM m p 0.15 0.34 0.14 0.27 +fée fée NOM f s 15.32 11.35 8.30 6.62 +fuel_oil fuel_oil NOM m s 0.00 0.07 0.00 0.07 +fuel fuel NOM m s 1.03 0.27 1.03 0.27 +féerie féerie NOM f s 0.46 3.72 0.46 3.18 +féeries féerie NOM f p 0.46 3.72 0.00 0.54 +féerique féerique ADJ s 0.46 3.18 0.42 2.36 +féeriquement féeriquement ADV 0.00 0.27 0.00 0.27 +féeriques féerique ADJ p 0.46 3.18 0.04 0.81 +fées fée NOM f p 15.32 11.35 7.01 4.73 +fugace fugace ADJ s 0.85 4.39 0.68 3.18 +fugacement fugacement ADV 0.00 0.54 0.00 0.54 +fugaces fugace ADJ p 0.85 4.39 0.17 1.22 +fugacité fugacité NOM f s 0.11 0.07 0.11 0.07 +fugitif fugitif NOM m s 4.84 3.78 2.41 1.28 +fugitifs fugitif NOM m p 4.84 3.78 1.96 1.69 +fugitive fugitif NOM f s 4.84 3.78 0.47 0.74 +fugitivement fugitivement ADV 0.00 2.57 0.00 2.57 +fugitives fugitive NOM f p 0.12 0.00 0.12 0.00 +fugu fugu NOM m s 0.27 0.00 0.27 0.00 +fuguaient fuguer VER 2.81 0.41 0.01 0.00 ind:imp:3p; +fuguait fuguer VER 2.81 0.41 0.00 0.14 ind:imp:3s; +fugue fugue NOM f s 4.16 7.16 3.61 5.68 +fuguent fuguer VER 2.81 0.41 0.23 0.00 ind:pre:3p; +fuguer fuguer VER 2.81 0.41 0.42 0.14 inf; +fuguerais fuguer VER 2.81 0.41 0.01 0.00 cnd:pre:1s; +fugues fugue NOM f p 4.16 7.16 0.55 1.49 +fugueur fugueur NOM m s 0.81 0.81 0.16 0.27 +fugueurs fugueur NOM m p 0.81 0.81 0.14 0.07 +fugueuse fugueur NOM f s 0.81 0.81 0.51 0.27 +fugueuses fugueuse NOM f p 0.02 0.00 0.02 0.00 +fuguèrent fuguer VER 2.81 0.41 0.01 0.00 ind:pas:3p; +fugué fuguer VER m s 2.81 0.41 1.72 0.07 par:pas; +fuguées fugué ADJ f p 0.00 0.07 0.00 0.07 +fui fuir VER m s 76.82 76.42 10.68 8.24 par:pas; +fuie fuir VER f s 76.82 76.42 0.58 0.47 par:pas;sub:pre:1s;sub:pre:3s; +fuient fuir VER 76.82 76.42 2.81 2.43 ind:pre:3p; +fuies fuir VER 76.82 76.42 0.21 0.00 sub:pre:2s; +fuir fuir VER 76.82 76.42 30.95 35.88 inf; +fuira fuir VER 76.82 76.42 0.20 0.00 ind:fut:3s; +fuirai fuir VER 76.82 76.42 0.31 0.07 ind:fut:1s; +fuiraient fuir VER 76.82 76.42 0.02 0.07 cnd:pre:3p; +fuirais fuir VER 76.82 76.42 0.25 0.14 cnd:pre:1s;cnd:pre:2s; +fuirait fuir VER 76.82 76.42 0.17 0.14 cnd:pre:3s; +fuiras fuir VER 76.82 76.42 0.27 0.07 ind:fut:2s; +fuirent fuir VER 76.82 76.42 0.20 0.20 ind:pas:3p; +fuirez fuir VER 76.82 76.42 0.03 0.00 ind:fut:2p; +fuiriez fuir VER 76.82 76.42 0.02 0.00 cnd:pre:2p; +fuirions fuir VER 76.82 76.42 0.00 0.07 cnd:pre:1p; +fuirons fuir VER 76.82 76.42 0.16 0.00 ind:fut:1p; +fuiront fuir VER 76.82 76.42 0.31 0.14 ind:fut:3p; +fuis fuir VER m p 76.82 76.42 9.63 2.09 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +fuisse fuir VER 76.82 76.42 0.01 0.07 sub:imp:1s; +fuit fuir VER 76.82 76.42 6.78 4.86 ind:pre:3s;ind:pas:3s; +fuite fuite NOM f s 29.09 34.26 26.02 31.82 +fuiter fuiter VER 0.01 0.07 0.01 0.07 inf; +fuites fuite NOM f p 29.09 34.26 3.07 2.43 +fêla fêler VER 1.74 1.89 0.00 0.14 ind:pas:3s; +fêlant fêler VER 1.74 1.89 0.00 0.07 par:pre; +fêle fêle NOM f s 0.10 0.00 0.10 0.00 +fêler fêler VER 1.74 1.89 0.14 0.27 inf; +fêles fêler VER 1.74 1.89 0.00 0.07 ind:pre:2s; +fulgores fulgore NOM m p 0.00 0.07 0.00 0.07 +fulgura fulgurer VER 0.05 1.15 0.00 0.07 ind:pas:3s; +fulguraient fulgurer VER 0.05 1.15 0.00 0.07 ind:imp:3p; +fulgurait fulgurer VER 0.05 1.15 0.00 0.07 ind:imp:3s; +fulgurance fulgurance NOM f s 0.04 0.68 0.03 0.47 +fulgurances fulgurance NOM f p 0.04 0.68 0.01 0.20 +fulgurant fulgurant ADJ m s 0.57 7.84 0.12 2.57 +fulgurante fulgurant ADJ f s 0.57 7.84 0.40 3.31 +fulgurantes fulgurant ADJ f p 0.57 7.84 0.01 1.15 +fulgurants fulgurant ADJ m p 0.57 7.84 0.04 0.81 +fulguration fulguration NOM f s 0.01 0.41 0.00 0.20 +fulgurations fulguration NOM f p 0.01 0.41 0.01 0.20 +fulgure fulgurer VER 0.05 1.15 0.00 0.07 ind:pre:3s; +fulgurent fulgurer VER 0.05 1.15 0.00 0.14 ind:pre:3p; +fulgurer fulgurer VER 0.05 1.15 0.00 0.07 inf; +fulgurèrent fulgurer VER 0.05 1.15 0.00 0.14 ind:pas:3p; +fulguré fulgurer VER m s 0.05 1.15 0.01 0.20 par:pas; +félibre félibre NOM m s 0.00 0.27 0.00 0.07 +félibres félibre NOM m p 0.00 0.27 0.00 0.20 +félibrige félibrige NOM m s 0.14 0.14 0.14 0.14 +félicita féliciter VER 15.72 24.66 0.01 3.24 ind:pas:3s; +félicitai féliciter VER 15.72 24.66 0.01 0.81 ind:pas:1s; +félicitaient féliciter VER 15.72 24.66 0.02 0.88 ind:imp:3p; +félicitais féliciter VER 15.72 24.66 0.05 1.01 ind:imp:1s; +félicitait féliciter VER 15.72 24.66 0.11 2.77 ind:imp:3s; +félicitant féliciter VER 15.72 24.66 0.06 0.47 par:pre; +félicitation félicitation NOM f s 60.08 5.07 0.84 0.00 +félicitations félicitation NOM f p 60.08 5.07 59.23 5.07 +félicite féliciter VER 15.72 24.66 5.46 4.80 imp:pre:2s;ind:pre:1s;ind:pre:3s; +félicitent féliciter VER 15.72 24.66 0.17 0.34 ind:pre:3p; +féliciter féliciter VER 15.72 24.66 7.10 6.15 inf;;inf;;inf;; +félicitera féliciter VER 15.72 24.66 0.06 0.07 ind:fut:3s; +féliciterai féliciter VER 15.72 24.66 0.21 0.07 ind:fut:1s; +féliciteraient féliciter VER 15.72 24.66 0.01 0.07 cnd:pre:3p; +féliciterais féliciter VER 15.72 24.66 0.01 0.00 cnd:pre:1s; +féliciterait féliciter VER 15.72 24.66 0.00 0.20 cnd:pre:3s; +féliciteras féliciter VER 15.72 24.66 0.01 0.00 ind:fut:2s; +féliciteriez féliciter VER 15.72 24.66 0.00 0.07 cnd:pre:2p; +félicitez féliciter VER 15.72 24.66 0.38 0.20 imp:pre:2p;ind:pre:2p; +félicitiez féliciter VER 15.72 24.66 0.00 0.07 ind:imp:2p; +félicitions féliciter VER 15.72 24.66 0.00 0.27 ind:imp:1p; +félicitâmes féliciter VER 15.72 24.66 0.00 0.07 ind:pas:1p; +félicitons féliciter VER 15.72 24.66 0.37 0.34 imp:pre:1p;ind:pre:1p; +félicitèrent féliciter VER 15.72 24.66 0.00 0.54 ind:pas:3p; +félicité félicité NOM f s 2.12 3.38 2.10 2.97 +félicitée féliciter VER f s 15.72 24.66 0.07 0.41 par:pas; +félicités féliciter VER m p 15.72 24.66 0.25 0.14 par:pas; +félidé félidé NOM m s 0.00 0.07 0.00 0.07 +fuligineuse fuligineux ADJ f s 0.01 1.69 0.00 0.47 +fuligineuses fuligineux ADJ f p 0.01 1.69 0.00 0.14 +fuligineux fuligineux ADJ m 0.01 1.69 0.01 1.08 +fuligule fuligule NOM m s 0.02 0.00 0.02 0.00 +félin félin NOM m s 0.35 1.08 0.26 0.88 +féline félin ADJ f s 0.34 2.09 0.20 1.22 +félinement félinement ADV 0.00 0.07 0.00 0.07 +félines félin ADJ f p 0.34 2.09 0.03 0.27 +félinité félinité NOM f s 0.01 0.00 0.01 0.00 +félins félin NOM m p 0.35 1.08 0.09 0.20 +full_contact full_contact NOM m s 0.04 0.00 0.04 0.00 +full full NOM m s 2.28 0.41 2.27 0.27 +fullerène fullerène NOM m s 0.04 0.00 0.04 0.00 +fulls full NOM m p 2.28 0.41 0.01 0.14 +fulmicoton fulmicoton NOM m s 0.00 0.14 0.00 0.14 +fulmina fulminer VER 0.30 2.77 0.00 0.74 ind:pas:3s; +fulminaient fulminer VER 0.30 2.77 0.00 0.07 ind:imp:3p; +fulminais fulminer VER 0.30 2.77 0.00 0.14 ind:imp:1s; +fulminait fulminer VER 0.30 2.77 0.01 0.74 ind:imp:3s; +fulminant fulminant ADJ m s 0.43 1.01 0.21 0.34 +fulminante fulminant ADJ f s 0.43 1.01 0.22 0.34 +fulminantes fulminant ADJ f p 0.43 1.01 0.00 0.14 +fulminants fulminant ADJ m p 0.43 1.01 0.00 0.20 +fulminate fulminate NOM m s 0.05 0.07 0.05 0.07 +fulmination fulmination NOM f s 0.02 0.41 0.02 0.27 +fulminations fulmination NOM f p 0.02 0.41 0.00 0.14 +fulmine fulminer VER 0.30 2.77 0.07 0.61 ind:pre:1s;ind:pre:3s; +fulminement fulminement NOM m s 0.00 0.07 0.00 0.07 +fulminent fulminer VER 0.30 2.77 0.00 0.14 ind:pre:3p; +fulminer fulminer VER 0.30 2.77 0.10 0.27 inf; +fulminera fulminer VER 0.30 2.77 0.01 0.00 ind:fut:3s; +félon félon NOM m s 0.50 0.27 0.33 0.27 +félonie félonie NOM f s 0.17 0.34 0.17 0.34 +félonne félon ADJ f s 0.09 0.20 0.01 0.00 +félons félon NOM m p 0.50 0.27 0.17 0.00 +fêlé fêler VER m s 1.74 1.89 0.84 0.68 par:pas; +fêlée fêler VER f s 1.74 1.89 0.50 0.47 par:pas; +fêlées fêler VER f p 1.74 1.89 0.16 0.00 par:pas; +fêlure fêlure NOM f s 0.26 1.76 0.23 1.55 +fêlures fêlure NOM f p 0.26 1.76 0.03 0.20 +fêlés fêlé NOM m p 1.00 0.41 0.36 0.14 +fuma fumer VER 98.49 84.39 0.24 1.55 ind:pas:3s; +fumaga fumaga NOM f s 0.00 0.07 0.00 0.07 +fumage fumage NOM m s 0.07 0.07 0.07 0.07 +fumai fumer VER 98.49 84.39 0.00 0.20 ind:pas:1s; +fumaient fumer VER 98.49 84.39 0.52 5.20 ind:imp:3p; +fumailler fumailler VER 0.00 0.14 0.00 0.07 inf; +fumaillé fumailler VER m s 0.00 0.14 0.00 0.07 par:pas; +fumais fumer VER 98.49 84.39 1.65 1.28 ind:imp:1s;ind:imp:2s; +fumaison fumaison NOM f s 0.00 0.07 0.00 0.07 +fumait fumer VER 98.49 84.39 2.70 15.07 ind:imp:3s; +fumant fumant ADJ m s 1.78 11.35 1.04 4.12 +fumante fumant ADJ f s 1.78 11.35 0.37 2.91 +fumantes fumant ADJ f p 1.78 11.35 0.06 2.36 +fumants fumant ADJ m p 1.78 11.35 0.31 1.96 +fumasse fumasse ADJ s 0.12 0.20 0.12 0.20 +fume_cigarette fume_cigarette NOM m s 0.27 2.09 0.17 1.82 +fume_cigarette fume_cigarette NOM m p 0.27 2.09 0.10 0.27 +fume fumer VER 98.49 84.39 29.46 15.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fument fumer VER 98.49 84.39 2.66 3.72 ind:pre:3p; +fumer fumer VER 98.49 84.39 35.91 20.88 inf; +fumera fumer VER 98.49 84.39 0.08 0.07 ind:fut:3s; +fumerai fumer VER 98.49 84.39 0.34 0.27 ind:fut:1s; +fumeraient fumer VER 98.49 84.39 0.00 0.14 cnd:pre:3p; +fumerais fumer VER 98.49 84.39 0.15 0.20 cnd:pre:1s;cnd:pre:2s; +fumerait fumer VER 98.49 84.39 0.03 0.20 cnd:pre:3s; +fumeras fumer VER 98.49 84.39 0.22 0.00 ind:fut:2s; +fumerez fumer VER 98.49 84.39 0.17 0.00 ind:fut:2p; +fumerie fumerie NOM f s 0.48 0.68 0.46 0.27 +fumeries fumerie NOM f p 0.48 0.68 0.03 0.41 +fumerolles fumerolle NOM f p 0.01 0.81 0.01 0.81 +fumeron fumeron NOM m s 0.00 0.14 0.00 0.07 +fumeronne fumeronner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +fumerons fumer VER 98.49 84.39 0.00 0.14 ind:fut:1p; +fumes fumer VER 98.49 84.39 9.68 1.49 ind:pre:2s; +fumet fumet NOM m s 0.25 4.26 0.24 3.51 +fumets fumet NOM m p 0.25 4.26 0.01 0.74 +fumette fumette NOM f s 0.28 0.07 0.28 0.07 +fumeur fumeur NOM m s 3.82 3.04 2.09 1.96 +fumeurs fumeur NOM m p 3.82 3.04 1.56 0.88 +fumeuse fumeux ADJ f s 0.36 3.38 0.23 0.95 +fumeuses fumeux ADJ f p 0.36 3.38 0.08 0.95 +fumeux fumeux ADJ m 0.36 3.38 0.05 1.49 +fumez fumer VER 98.49 84.39 5.75 1.28 imp:pre:2p;ind:pre:2p; +fumier fumier NOM m s 18.74 16.69 15.66 13.11 +fumiers fumier NOM m p 18.74 16.69 3.08 3.45 +fumiez fumer VER 98.49 84.39 0.34 0.14 ind:imp:2p; +fumigateur fumigateur NOM m s 0.01 0.00 0.01 0.00 +fumigation fumigation NOM f s 0.34 0.54 0.25 0.14 +fumigations fumigation NOM f p 0.34 0.54 0.10 0.41 +fumiger fumiger VER 0.13 0.00 0.09 0.00 inf; +fumigène fumigène ADJ s 0.96 0.47 0.33 0.27 +fumigènes fumigène ADJ p 0.96 0.47 0.63 0.20 +fumigé fumiger VER m s 0.13 0.00 0.04 0.00 par:pas; +féminin féminin ADJ m s 16.88 32.91 7.51 11.28 +féminine féminin ADJ f s 16.88 32.91 6.50 13.38 +féminines féminin ADJ f p 16.88 32.91 0.98 3.92 +féminins féminin ADJ m p 16.88 32.91 1.89 4.32 +féminisaient féminiser VER 0.00 0.20 0.00 0.07 ind:imp:3p; +féminisation féminisation NOM f s 0.01 0.00 0.01 0.00 +féminiser féminiser VER 0.00 0.20 0.00 0.07 inf; +féminisme féminisme NOM m s 0.46 0.41 0.46 0.41 +féministe féministe ADJ s 1.12 2.03 0.79 1.62 +féministes féministe NOM p 1.42 1.15 0.70 0.81 +féminisé féminiser VER m s 0.00 0.20 0.00 0.07 par:pas; +féminité féminité NOM f s 1.87 4.80 1.87 4.73 +féminitude féminitude NOM f s 0.00 0.07 0.00 0.07 +féminités féminité NOM f p 1.87 4.80 0.00 0.07 +fumions fumer VER 98.49 84.39 0.10 0.27 ind:imp:1p; +fumiste fumiste NOM s 0.63 0.20 0.59 0.07 +fumisterie fumisterie NOM f s 0.30 0.34 0.29 0.27 +fumisteries fumisterie NOM f p 0.30 0.34 0.01 0.07 +fumistes fumiste NOM p 0.63 0.20 0.03 0.14 +fumière fumier NOM f s 18.74 16.69 0.00 0.14 +fumoir fumoir NOM m s 0.31 1.49 0.31 1.49 +fumâmes fumer VER 98.49 84.39 0.00 0.14 ind:pas:1p; +fumons fumer VER 98.49 84.39 0.68 0.81 imp:pre:1p;ind:pre:1p; +fémoral fémoral ADJ m s 0.94 0.34 0.11 0.00 +fémorale fémoral ADJ f s 0.94 0.34 0.59 0.20 +fémorales fémoral ADJ f p 0.94 0.34 0.01 0.14 +fémoraux fémoral ADJ m p 0.94 0.34 0.23 0.00 +fumât fumer VER 98.49 84.39 0.00 0.07 sub:imp:3s; +fumèrent fumer VER 98.49 84.39 0.01 1.01 ind:pas:3p; +fumé fumer VER m s 98.49 84.39 6.75 4.19 par:pas; +fumée fumée NOM f s 20.25 67.36 19.91 55.88 +fumées fumée NOM f p 20.25 67.36 0.34 11.49 +fémur fémur NOM m s 1.48 0.81 1.42 0.61 +fumure fumure NOM f s 0.00 0.07 0.00 0.07 +fémurs fémur NOM m p 1.48 0.81 0.06 0.20 +fumés fumer VER m p 98.49 84.39 0.23 0.27 par:pas; +fun fun NOM m s 2.85 0.07 2.85 0.07 +funambule funambule NOM s 0.80 1.62 0.52 1.35 +funambules funambule NOM p 0.80 1.62 0.28 0.27 +funambulesque funambulesque ADJ s 0.00 0.07 0.00 0.07 +fénelonienne fénelonien ADJ f s 0.00 0.07 0.00 0.07 +funeste funeste ADJ s 4.97 4.86 4.22 3.11 +funestement funestement ADV 0.00 0.07 0.00 0.07 +funestes funeste ADJ p 4.97 4.86 0.75 1.76 +fung fung ADJ m s 0.13 0.00 0.13 0.00 +funiculaire funiculaire NOM m s 0.20 1.01 0.20 0.88 +funiculaires funiculaire NOM m p 0.20 1.01 0.00 0.14 +funk funk ADJ 1.06 0.14 1.06 0.14 +funky funky ADJ 1.51 0.07 1.51 0.07 +funèbre funèbre ADJ s 8.07 16.35 4.21 11.69 +funèbres funèbre ADJ p 8.07 16.35 3.86 4.66 +funérailles funérailles NOM f p 9.75 4.53 9.75 4.53 +funéraire funéraire ADJ s 1.68 4.59 1.39 2.84 +funéraires funéraire ADJ p 1.68 4.59 0.29 1.76 +funérarium funérarium NOM m s 0.55 0.07 0.54 0.07 +funérariums funérarium NOM m p 0.55 0.07 0.01 0.00 +féodal féodal ADJ m s 0.38 2.70 0.13 1.22 +féodale féodal ADJ f s 0.38 2.70 0.10 0.61 +féodales féodal ADJ f p 0.38 2.70 0.11 0.20 +féodalisme féodalisme NOM m s 0.02 0.14 0.02 0.14 +féodalité féodalité NOM f s 0.02 0.27 0.02 0.27 +féodaux féodal ADJ m p 0.38 2.70 0.04 0.68 +fur_et_à_mesure fur_et_à_mesure NOM m s 1.62 17.84 1.62 17.84 +féra féra NOM f s 0.00 0.14 0.00 0.07 +féras féra NOM f p 0.00 0.14 0.00 0.07 +furax furax ADJ m 4.51 0.81 4.51 0.81 +furent être AUX 8074.24 6501.82 8.96 40.74 ind:pas:3p; +furet furet NOM m s 0.87 0.20 0.69 0.14 +fureta fureter VER 0.55 2.64 0.00 0.07 ind:pas:3s; +furetage furetage NOM m s 0.02 0.07 0.02 0.07 +furetai fureter VER 0.55 2.64 0.00 0.07 ind:pas:1s; +furetaient fureter VER 0.55 2.64 0.00 0.07 ind:imp:3p; +furetait fureter VER 0.55 2.64 0.00 0.20 ind:imp:3s; +furetant fureter VER 0.55 2.64 0.06 0.54 par:pre; +fureter fureter VER 0.55 2.64 0.40 1.08 inf; +fureteur fureteur ADJ m s 0.01 1.62 0.01 0.54 +fureteurs fureteur ADJ m p 0.01 1.62 0.00 0.81 +fureteuse fureteur ADJ f s 0.01 1.62 0.00 0.07 +fureteuses fureteur ADJ f p 0.01 1.62 0.00 0.20 +furetez fureter VER 0.55 2.64 0.00 0.07 ind:pre:2p; +furets furet NOM m p 0.87 0.20 0.19 0.07 +furette furette NOM f s 0.00 0.14 0.00 0.14 +fureté fureter VER m s 0.55 2.64 0.05 0.20 par:pas; +fureur fureur NOM f s 7.87 33.92 7.03 30.61 +fureurs fureur NOM f p 7.87 33.92 0.84 3.31 +féria féria NOM f s 0.80 0.34 0.80 0.20 +furia furia NOM f s 0.02 0.27 0.02 0.27 +férias féria NOM f p 0.80 0.34 0.00 0.14 +furibard furibard ADJ m s 0.19 1.42 0.17 1.01 +furibarde furibard ADJ f s 0.19 1.42 0.02 0.34 +furibardes furibard ADJ f p 0.19 1.42 0.00 0.07 +furibond furibond ADJ m s 0.37 2.64 0.25 1.35 +furibonde furibond ADJ f s 0.37 2.64 0.10 0.74 +furibondes furibond ADJ f p 0.37 2.64 0.00 0.20 +furibonds furibond ADJ m p 0.37 2.64 0.02 0.34 +furie furie NOM f s 2.58 5.74 2.05 5.54 +furies furie NOM f p 2.58 5.74 0.53 0.20 +furieuse furieux ADJ f s 25.31 44.59 6.95 12.30 +furieusement furieusement ADV 0.87 7.30 0.87 7.30 +furieuses furieux ADJ f p 25.31 44.59 0.30 2.77 +furieux furieux ADJ m 25.31 44.59 18.06 29.53 +furioso furioso ADJ m s 0.46 0.14 0.46 0.14 +férir férir VER 0.04 0.88 0.04 0.88 inf; +férié férié ADJ m s 0.97 1.82 0.52 0.81 +fériés férié ADJ m p 0.97 1.82 0.46 1.01 +féroce féroce ADJ s 6.33 16.22 4.39 12.30 +férocement férocement ADV 0.62 2.97 0.62 2.97 +féroces féroce ADJ p 6.33 16.22 1.94 3.92 +férocité férocité NOM f s 1.20 3.85 1.20 3.72 +férocités férocité NOM f p 1.20 3.85 0.00 0.14 +furoncle furoncle NOM m s 1.27 0.88 0.61 0.34 +furoncles furoncle NOM m p 1.27 0.88 0.66 0.54 +furonculeux furonculeux ADJ m 0.00 0.07 0.00 0.07 +furonculose furonculose NOM f s 0.00 0.14 0.00 0.07 +furonculoses furonculose NOM f p 0.00 0.14 0.00 0.07 +furète fureter VER 0.55 2.64 0.02 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +furètent fureter VER 0.55 2.64 0.01 0.07 ind:pre:3p; +furèterais fureter VER 0.55 2.64 0.01 0.00 cnd:pre:1s; +furtif furtif ADJ m s 2.12 14.59 1.41 5.54 +furtifs furtif ADJ m p 2.12 14.59 0.26 4.46 +furtive furtif ADJ f s 2.12 14.59 0.42 3.04 +furtivement furtivement ADV 1.13 5.07 1.13 5.07 +furtives furtif ADJ f p 2.12 14.59 0.04 1.55 +furtivité furtivité NOM f s 0.07 0.00 0.07 0.00 +féru féru ADJ m s 0.30 1.96 0.23 0.81 +férue féru ADJ f s 0.30 1.96 0.03 0.27 +férues féru ADJ f p 0.30 1.96 0.00 0.07 +férule férule NOM f s 0.07 1.01 0.07 1.01 +férus féru ADJ m p 0.30 1.96 0.05 0.81 +fus être AUX 8074.24 6501.82 3.58 29.53 ind:pas:2s; +fusa fuser VER 1.24 10.14 0.00 0.41 ind:pas:3s; +fusaient fuser VER 1.24 10.14 0.14 2.03 ind:imp:3p; +fusain fusain NOM m s 0.33 3.72 0.30 1.76 +fusains fusain NOM m p 0.33 3.72 0.02 1.96 +fusait fuser VER 1.24 10.14 0.03 1.28 ind:imp:3s; +fusant fuser VER 1.24 10.14 0.00 0.95 par:pre; +fusante fusant ADJ f s 0.00 0.74 0.00 0.20 +fusants fusant NOM m p 0.00 1.55 0.00 1.28 +fuse fuser VER 1.24 10.14 0.33 1.35 ind:pre:1s;ind:pre:3s; +fuseau fuseau NOM m s 0.61 2.43 0.39 0.88 +fuseaux fuseau NOM m p 0.61 2.43 0.22 1.55 +fuselage fuselage NOM m s 0.44 0.54 0.44 0.47 +fuselages fuselage NOM m p 0.44 0.54 0.00 0.07 +fuselé fuseler VER m s 0.01 0.20 0.01 0.00 par:pas; +fuselée fuselé ADJ f s 0.14 0.81 0.00 0.07 +fuselées fuselé ADJ f p 0.14 0.81 0.14 0.14 +fuselés fuselé ADJ m p 0.14 0.81 0.00 0.41 +fusent fuser VER 1.24 10.14 0.21 0.88 ind:pre:3p; +fuser fuser VER 1.24 10.14 0.34 1.22 inf; +fusible fusible NOM m s 3.23 0.54 1.59 0.14 +fusibles fusible NOM m p 3.23 0.54 1.64 0.41 +fusiforme fusiforme ADJ m s 0.00 0.20 0.00 0.20 +fusil_mitrailleur fusil_mitrailleur NOM m s 0.37 0.41 0.37 0.34 +fusil fusil NOM m s 48.61 55.68 36.52 39.32 +fusilier fusilier NOM m s 0.63 0.95 0.23 0.00 +fusilier_marin fusilier_marin NOM m p 0.04 1.08 0.04 1.08 +fusiliers fusilier NOM m p 0.63 0.95 0.40 0.95 +fusilla fusiller VER 6.63 18.24 0.00 0.20 ind:pas:3s; +fusillade fusillade NOM f s 9.63 9.39 8.35 8.18 +fusillades fusillade NOM f p 9.63 9.39 1.27 1.22 +fusillaient fusiller VER 6.63 18.24 0.00 0.88 ind:imp:3p; +fusillait fusiller VER 6.63 18.24 0.01 0.88 ind:imp:3s; +fusillant fusiller VER 6.63 18.24 0.01 0.20 par:pre; +fusille fusiller VER 6.63 18.24 0.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fusillent fusiller VER 6.63 18.24 0.26 0.54 ind:pre:3p; +fusiller fusiller VER 6.63 18.24 2.19 6.49 inf; +fusillera fusiller VER 6.63 18.24 0.29 0.14 ind:fut:3s; +fusilleraient fusiller VER 6.63 18.24 0.01 0.00 cnd:pre:3p; +fusillerait fusiller VER 6.63 18.24 0.02 0.20 cnd:pre:3s; +fusillerons fusiller VER 6.63 18.24 0.01 0.00 ind:fut:1p; +fusilleront fusiller VER 6.63 18.24 0.04 0.07 ind:fut:3p; +fusilleurs fusilleur NOM m p 0.00 0.14 0.00 0.14 +fusillez fusiller VER 6.63 18.24 0.19 0.07 imp:pre:2p;ind:pre:2p; +fusillions fusiller VER 6.63 18.24 0.01 0.07 ind:imp:1p; +fusillons fusiller VER 6.63 18.24 0.14 0.00 ind:pre:1p; +fusillé fusiller VER m s 6.63 18.24 1.96 5.07 par:pas; +fusillée fusillé ADJ f s 1.29 2.50 0.30 0.07 +fusillées fusiller VER f p 6.63 18.24 0.20 0.07 par:pas; +fusillés fusiller VER m p 6.63 18.24 0.66 2.36 par:pas; +fusil_mitrailleur fusil_mitrailleur NOM m p 0.37 0.41 0.00 0.07 +fusils fusil NOM m p 48.61 55.68 12.10 16.35 +fusion fusion NOM f s 6.64 5.95 6.29 5.74 +fusionnaient fusionner VER 2.36 0.34 0.01 0.07 ind:imp:3p; +fusionnant fusionner VER 2.36 0.34 0.15 0.00 par:pre; +fusionne fusionner VER 2.36 0.34 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +fusionnel fusionnel ADJ m s 0.01 0.20 0.00 0.14 +fusionnelle fusionnel ADJ f s 0.01 0.20 0.01 0.07 +fusionnement fusionnement NOM m s 0.01 0.00 0.01 0.00 +fusionnent fusionner VER 2.36 0.34 0.40 0.14 ind:pre:3p; +fusionner fusionner VER 2.36 0.34 1.01 0.00 inf; +fusionneraient fusionner VER 2.36 0.34 0.01 0.00 cnd:pre:3p; +fusionnerait fusionner VER 2.36 0.34 0.01 0.00 cnd:pre:3s; +fusionneront fusionner VER 2.36 0.34 0.04 0.00 ind:fut:3p; +fusionnons fusionner VER 2.36 0.34 0.29 0.00 imp:pre:1p; +fusionné fusionner VER m s 2.36 0.34 0.28 0.07 par:pas; +fusionnés fusionner VER m p 2.36 0.34 0.03 0.00 par:pas; +fusions fusion NOM f p 6.64 5.95 0.36 0.20 +fusse être AUX 8074.24 6501.82 0.02 1.69 sub:imp:1s; +fussent être AUX 8074.24 6501.82 0.30 15.88 sub:imp:3p; +fusses être AUX 8074.24 6501.82 0.01 0.07 sub:imp:2s; +fussiez être AUX 8074.24 6501.82 0.00 0.07 sub:imp:2p; +fussions être AUX 8074.24 6501.82 0.00 0.95 sub:imp:1p; +fustanelle fustanelle NOM f s 0.00 0.07 0.00 0.07 +fusèrent fuser VER 1.24 10.14 0.00 1.35 ind:pas:3p; +fustigation fustigation NOM f s 0.01 0.14 0.01 0.00 +fustigations fustigation NOM f p 0.01 0.14 0.00 0.14 +fustige fustiger VER 0.51 1.22 0.03 0.14 imp:pre:2s;ind:pre:3s; +fustigea fustiger VER 0.51 1.22 0.00 0.14 ind:pas:3s; +fustigeaient fustiger VER 0.51 1.22 0.00 0.07 ind:imp:3p; +fustigeais fustiger VER 0.51 1.22 0.01 0.07 ind:imp:1s; +fustigeait fustiger VER 0.51 1.22 0.00 0.07 ind:imp:3s; +fustigeant fustiger VER 0.51 1.22 0.01 0.07 par:pre; +fustiger fustiger VER 0.51 1.22 0.05 0.41 inf; +fustigez fustiger VER 0.51 1.22 0.10 0.00 imp:pre:2p; +fustigé fustiger VER m s 0.51 1.22 0.14 0.07 par:pas; +fustigée fustiger VER f s 0.51 1.22 0.14 0.14 par:pas; +fustigés fustiger VER m p 0.51 1.22 0.03 0.07 par:pas; +fusé fuser VER m s 1.24 10.14 0.03 0.61 par:pas; +fusée fusée NOM f s 10.09 9.26 6.00 4.59 +fusées fusée NOM f p 10.09 9.26 4.08 4.66 +fut être AUX 8074.24 6501.82 32.92 180.41 ind:pas:3s; +fêta fêter VER 37.10 16.01 0.34 0.34 ind:pas:3s; +futaie futaie NOM f s 0.02 5.27 0.00 2.50 +fêtaient fêter VER 37.10 16.01 0.12 0.47 ind:imp:3p; +futaies futaie NOM f p 0.02 5.27 0.02 2.77 +futaille futaille NOM f s 0.00 1.69 0.00 0.88 +futailles futaille NOM f p 0.00 1.69 0.00 0.81 +futaine futaine NOM f s 0.10 0.00 0.10 0.00 +fêtait fêter VER 37.10 16.01 0.93 1.08 ind:imp:3s; +futal futal NOM m s 0.72 0.54 0.68 0.47 +futals futal NOM m p 0.72 0.54 0.04 0.07 +fêtant fêter VER 37.10 16.01 0.05 0.20 par:pre; +fêtard fêtard NOM m s 0.77 1.22 0.34 0.20 +fêtards fêtard NOM m p 0.77 1.22 0.42 1.01 +fête_dieu fête_dieu NOM f s 0.14 0.54 0.14 0.54 +fête fête NOM f s 155.97 94.05 138.03 70.41 +fêtent fêter VER 37.10 16.01 0.95 0.41 ind:pre:3p; +fêter fêter VER 37.10 16.01 20.03 7.70 inf; +fêtera fêter VER 37.10 16.01 1.06 0.20 ind:fut:3s; +fêterait fêter VER 37.10 16.01 0.05 0.20 cnd:pre:3s; +fêterons fêter VER 37.10 16.01 0.60 0.41 ind:fut:1p; +fêtes fête NOM f p 155.97 94.05 17.94 23.65 +fêtez fêter VER 37.10 16.01 1.02 0.14 imp:pre:2p;ind:pre:2p; +fétiche fétiche NOM m s 1.48 5.27 1.03 4.39 +fétiches fétiche NOM m p 1.48 5.27 0.45 0.88 +féticheur féticheur NOM m s 0.01 0.47 0.00 0.20 +féticheurs féticheur NOM m p 0.01 0.47 0.01 0.27 +fétichisations fétichisation NOM f p 0.00 0.07 0.00 0.07 +fétichisme fétichisme NOM m s 0.64 0.54 0.63 0.54 +fétichismes fétichisme NOM m p 0.64 0.54 0.01 0.00 +fétichiste fétichiste NOM s 0.43 0.27 0.40 0.14 +fétichistes fétichiste NOM p 0.43 0.27 0.04 0.14 +fétide fétide ADJ s 1.18 2.70 1.10 2.23 +fétides fétide ADJ p 1.18 2.70 0.08 0.47 +fétidité fétidité NOM f s 0.00 0.34 0.00 0.34 +futile futile ADJ s 2.94 8.31 2.23 4.86 +futilement futilement ADV 0.00 0.14 0.00 0.14 +futiles futile ADJ p 2.94 8.31 0.71 3.45 +futilité futilité NOM f s 0.65 3.51 0.22 2.23 +futilités futilité NOM f p 0.65 3.51 0.43 1.28 +fêtions fêter VER 37.10 16.01 0.22 0.14 ind:imp:1p; +fêtâmes fêter VER 37.10 16.01 0.00 0.07 ind:pas:1p; +futon futon NOM m s 0.32 0.00 0.28 0.00 +fêtons fêter VER 37.10 16.01 2.34 0.34 imp:pre:1p;ind:pre:1p; +futons futon NOM m p 0.32 0.00 0.03 0.00 +fêtèrent fêter VER 37.10 16.01 0.00 0.20 ind:pas:3p; +fêté fêter VER m s 37.10 16.01 1.67 1.82 par:pas; +fétu fétu NOM m s 0.20 1.69 0.17 0.81 +futé futé ADJ m s 9.23 1.89 5.96 1.28 +fêtée fêter VER f s 37.10 16.01 0.22 0.27 par:pas; +futée futé ADJ f s 9.23 1.89 1.74 0.27 +futées futé ADJ f p 9.23 1.89 0.55 0.14 +fétuque fétuque NOM f s 0.01 0.07 0.01 0.07 +futur futur NOM m s 26.33 11.89 25.73 10.61 +future futur ADJ f s 23.20 36.35 7.50 9.86 +futures futur ADJ f p 23.20 36.35 2.51 5.81 +futurisme futurisme NOM m s 0.00 0.07 0.00 0.07 +futuriste futuriste ADJ s 0.59 0.47 0.36 0.41 +futuristes futuriste ADJ p 0.59 0.47 0.23 0.07 +futurologue futurologue NOM s 0.10 0.00 0.10 0.00 +futurs futur ADJ m p 23.20 36.35 3.79 6.76 +fêtés fêter VER m p 37.10 16.01 0.13 0.14 par:pas; +fétus fétu NOM m p 0.20 1.69 0.03 0.88 +futés futé ADJ m p 9.23 1.89 0.97 0.20 +fuégien fuégien NOM m s 0.00 0.07 0.00 0.07 +féveroles féverole NOM f p 0.00 0.14 0.00 0.14 +février février NOM m 8.03 22.50 8.03 22.50 +fuyaient fuir VER 76.82 76.42 0.44 4.73 ind:imp:3p; +fuyais fuir VER 76.82 76.42 1.52 1.22 ind:imp:1s;ind:imp:2s; +fuyait fuir VER 76.82 76.42 1.27 8.65 ind:imp:3s; +fuyant fuir VER 76.82 76.42 1.54 5.20 par:pre; +fuyante fuyant ADJ f s 1.09 8.31 0.19 2.91 +fuyantes fuyant ADJ f p 1.09 8.31 0.11 0.47 +fuyants fuyant ADJ m p 1.09 8.31 0.11 1.01 +fuyard fuyard NOM m s 1.15 4.73 0.40 1.15 +fuyarde fuyard ADJ f s 0.04 0.47 0.01 0.14 +fuyards fuyard NOM m p 1.15 4.73 0.75 3.45 +fuyez fuir VER 76.82 76.42 4.78 0.47 imp:pre:2p;ind:pre:2p; +fuyiez fuir VER 76.82 76.42 0.26 0.00 ind:imp:2p;sub:pre:2p; +fuyions fuir VER 76.82 76.42 0.18 0.47 ind:imp:1p; +fuyons fuir VER 76.82 76.42 3.23 0.74 imp:pre:1p;ind:pre:1p; +fy fy NOM m s 0.01 0.00 0.01 0.00 +g g NOM m 10.92 4.66 10.92 4.66 +gît gésir VER 4.77 15.68 2.15 2.64 ind:pre:3s; +gîta gîter VER 0.03 1.28 0.01 0.07 ind:pas:3s; +gîtait gîter VER 0.03 1.28 0.00 0.61 ind:imp:3s; +gîte gîte NOM s 1.20 6.49 1.05 5.81 +gîtent gîter VER 0.03 1.28 0.00 0.14 ind:pre:3p; +gîter gîter VER 0.03 1.28 0.00 0.34 inf; +gîtera gîter VER 0.03 1.28 0.02 0.00 ind:fut:3s; +gîtes gîte NOM m p 1.20 6.49 0.14 0.68 +gîté gîter VER m s 0.03 1.28 0.00 0.14 par:pas; +gaîment gaîment ADV 0.03 0.47 0.03 0.47 +gaîté gaîté NOM f s 0.55 6.35 0.55 6.28 +gaîtés gaîté NOM f p 0.55 6.35 0.00 0.07 +gaba gaba NOM m s 0.01 0.00 0.01 0.00 +gabardine gabardine NOM f s 0.25 3.45 0.23 3.11 +gabardines gabardine NOM f p 0.25 3.45 0.03 0.34 +gabare gabare NOM f s 0.10 0.20 0.10 0.20 +gabariers gabarier NOM m p 0.00 0.07 0.00 0.07 +gabarit gabarit NOM m s 0.33 1.82 0.30 1.62 +gabarits gabarit NOM m p 0.33 1.82 0.03 0.20 +gabarres gabarre NOM f p 0.00 0.07 0.00 0.07 +gabbro gabbro NOM m s 0.01 0.00 0.01 0.00 +gabe gaber VER 1.01 0.00 1.01 0.00 imp:pre:2s;ind:pre:1s; +gabegie gabegie NOM f s 0.04 0.34 0.04 0.34 +gabelle gabelle NOM f s 0.02 0.07 0.02 0.07 +gabelou gabelou NOM m s 0.00 0.07 0.00 0.07 +gabier gabier NOM m s 0.13 0.34 0.09 0.20 +gabiers gabier NOM m p 0.13 0.34 0.04 0.14 +gabion gabion NOM m s 0.00 0.20 0.00 0.07 +gabions gabion NOM m p 0.00 0.20 0.00 0.14 +gable gable NOM m s 0.14 0.27 0.01 0.14 +gables gable NOM m p 0.14 0.27 0.14 0.14 +gabonais gabonais NOM m 0.00 0.34 0.00 0.34 +gabonaise gabonais ADJ f s 0.00 0.27 0.00 0.07 +gade gade NOM m s 0.00 0.07 0.00 0.07 +gadget gadget NOM m s 2.80 1.62 1.31 0.41 +gadgets gadget NOM m p 2.80 1.62 1.50 1.22 +gadin gadin NOM m s 0.12 0.68 0.12 0.54 +gadins gadin NOM m p 0.12 0.68 0.00 0.14 +gadjo gadjo NOM m s 0.54 0.00 0.54 0.00 +gadolinium gadolinium NOM m s 0.01 0.00 0.01 0.00 +gadoue gadoue NOM f s 0.37 4.93 0.37 2.36 +gadoues gadoue NOM f p 0.37 4.93 0.00 2.57 +gadouille gadouille NOM f s 0.00 0.47 0.00 0.47 +gaffa gaffer VER 5.20 5.88 0.00 0.07 ind:pas:3s; +gaffaient gaffer VER 5.20 5.88 0.00 0.07 ind:imp:3p; +gaffais gaffer VER 5.20 5.88 0.00 0.07 ind:imp:1s; +gaffait gaffer VER 5.20 5.88 0.00 0.27 ind:imp:3s; +gaffant gaffer VER 5.20 5.88 0.00 0.20 par:pre; +gaffe gaffe NOM f s 34.68 20.47 33.92 17.57 +gaffent gaffer VER 5.20 5.88 0.01 0.27 ind:pre:3p; +gaffer gaffer VER 5.20 5.88 0.07 1.55 inf; +gafferai gaffer VER 5.20 5.88 0.00 0.07 ind:fut:1s; +gaffes gaffe NOM f p 34.68 20.47 0.76 2.91 +gaffeur gaffeur NOM m s 0.10 0.14 0.08 0.07 +gaffeurs gaffeur NOM m p 0.10 0.14 0.01 0.07 +gaffeuse gaffeur NOM f s 0.10 0.14 0.01 0.00 +gaffeuses gaffeur ADJ f p 0.04 0.27 0.00 0.07 +gaffez gaffer VER 5.20 5.88 0.11 0.00 imp:pre:2p; +gaffé gaffer VER m s 5.20 5.88 0.35 0.61 par:pas; +gaffée gaffer VER f s 5.20 5.88 0.00 0.14 par:pas; +gaffés gaffer VER m p 5.20 5.88 0.00 0.07 par:pas; +gag gag NOM m s 3.03 1.28 2.41 1.08 +gaga gaga ADJ 0.61 1.01 0.58 0.88 +gagas gaga ADJ p 0.61 1.01 0.02 0.14 +gage gage NOM m s 15.31 6.76 9.24 4.05 +gageaient gager VER 1.87 1.42 0.00 0.14 ind:imp:3p; +gageons gager VER 1.87 1.42 0.17 0.41 imp:pre:1p; +gager gager VER 1.87 1.42 0.34 0.07 inf; +gagerai gager VER 1.87 1.42 0.01 0.00 ind:fut:1s; +gagerais gager VER 1.87 1.42 0.15 0.20 cnd:pre:1s; +gages gage NOM m p 15.31 6.76 6.06 2.70 +gageure gageure NOM f s 0.49 1.28 0.35 1.28 +gageures gageure NOM f p 0.49 1.28 0.14 0.00 +gagez gager VER 1.87 1.42 0.02 0.00 imp:pre:2p; +gagna gagner VER 294.44 180.88 0.78 12.77 ind:pas:3s; +gagnage gagnage NOM m s 0.00 0.20 0.00 0.14 +gagnages gagnage NOM m p 0.00 0.20 0.00 0.07 +gagnai gagner VER 294.44 180.88 0.00 2.23 ind:pas:1s; +gagnaient gagner VER 294.44 180.88 0.74 3.99 ind:imp:3p; +gagnais gagner VER 294.44 180.88 2.11 1.76 ind:imp:1s;ind:imp:2s; +gagnait gagner VER 294.44 180.88 2.96 14.12 ind:imp:3s; +gagnant gagnant NOM m s 12.56 1.76 8.45 1.35 +gagnante gagnant NOM f s 12.56 1.76 1.34 0.14 +gagnantes gagnant NOM f p 12.56 1.76 0.10 0.00 +gagnants gagnant NOM m p 12.56 1.76 2.68 0.27 +gagne_pain gagne_pain NOM m 2.01 1.82 2.01 1.82 +gagne_petit gagne_petit NOM m 0.16 0.68 0.16 0.68 +gagne gagner VER 294.44 180.88 53.39 19.66 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +gagnent gagner VER 294.44 180.88 7.02 4.05 ind:pre:3p; +gagner gagner VER 294.44 180.88 92.72 64.59 ind:pre:2p;inf; +gagnera gagner VER 294.44 180.88 5.08 1.49 ind:fut:3s; +gagnerai gagner VER 294.44 180.88 2.14 0.41 ind:fut:1s; +gagneraient gagner VER 294.44 180.88 0.34 0.34 cnd:pre:3p; +gagnerais gagner VER 294.44 180.88 1.52 0.61 cnd:pre:1s;cnd:pre:2s; +gagnerait gagner VER 294.44 180.88 1.95 1.69 cnd:pre:3s; +gagneras gagner VER 294.44 180.88 2.56 0.74 ind:fut:2s; +gagnerez gagner VER 294.44 180.88 2.09 0.68 ind:fut:2p; +gagneriez gagner VER 294.44 180.88 0.38 0.00 cnd:pre:2p; +gagnerions gagner VER 294.44 180.88 0.28 0.00 cnd:pre:1p; +gagnerons gagner VER 294.44 180.88 1.37 0.27 ind:fut:1p; +gagneront gagner VER 294.44 180.88 0.82 0.61 ind:fut:3p; +gagnes gagner VER 294.44 180.88 11.04 1.76 ind:pre:2s;sub:pre:2s; +gagneur gagneur NOM m s 0.76 0.74 0.04 0.00 +gagneurs gagneur NOM m p 0.76 0.74 0.05 0.07 +gagneuse gagneur NOM f s 0.76 0.74 0.67 0.54 +gagneuses gagneuse NOM f p 0.02 0.00 0.02 0.00 +gagnez gagner VER 294.44 180.88 7.04 0.41 imp:pre:2p;ind:pre:2p; +gagniez gagner VER 294.44 180.88 0.38 0.07 ind:imp:2p; +gagnions gagner VER 294.44 180.88 0.12 0.41 ind:imp:1p; +gagnâmes gagner VER 294.44 180.88 0.00 0.41 ind:pas:1p; +gagnons gagner VER 294.44 180.88 1.74 0.88 imp:pre:1p;ind:pre:1p; +gagnât gagner VER 294.44 180.88 0.00 0.34 sub:imp:3s; +gagnèrent gagner VER 294.44 180.88 0.09 3.11 ind:pas:3p; +gagné gagner VER m s 294.44 180.88 89.92 33.51 par:pas; +gagnée gagner VER f s 294.44 180.88 2.85 4.46 par:pas; +gagnées gagner VER f p 294.44 180.88 0.29 0.88 par:pas; +gagnés gagner VER m p 294.44 180.88 1.02 1.76 par:pas; +gags gag NOM m p 3.03 1.28 0.61 0.20 +gagé gager VER m s 1.87 1.42 0.16 0.00 par:pas; +gagée gager VER f s 1.87 1.42 0.02 0.00 par:pas; +gai gai ADJ m s 20.00 41.76 10.74 22.64 +gaie gai ADJ f s 20.00 41.76 6.58 12.70 +gaiement gaiement ADV 2.58 16.22 2.58 16.22 +gaies gai ADJ f p 20.00 41.76 0.88 2.30 +gaieté gaieté NOM f s 2.81 27.36 2.81 27.09 +gaietés gaieté NOM f p 2.81 27.36 0.00 0.27 +gail gail NOM f s 0.00 0.61 0.00 0.61 +gaillard gaillard NOM m s 3.40 10.34 2.47 7.30 +gaillarde gaillard ADJ f s 0.95 3.18 0.25 0.68 +gaillardement gaillardement ADV 0.10 0.95 0.10 0.95 +gaillardes gaillard ADJ f p 0.95 3.18 0.14 0.47 +gaillardise gaillardise NOM f s 0.00 0.14 0.00 0.14 +gaillards gaillard NOM m p 3.40 10.34 0.90 2.64 +gaillet gaillet NOM m s 0.01 0.07 0.01 0.07 +gaillette gaillette NOM f s 0.00 0.20 0.00 0.14 +gaillettes gaillette NOM f p 0.00 0.20 0.00 0.07 +gain gain NOM m s 5.60 5.88 2.58 4.32 +gainaient gainer VER 0.08 3.11 0.00 0.07 ind:imp:3p; +gainait gainer VER 0.08 3.11 0.00 0.14 ind:imp:3s; +gaine_culotte gaine_culotte NOM f s 0.01 0.07 0.01 0.07 +gaine gaine NOM f s 2.15 3.85 1.16 3.11 +gainent gainer VER 0.08 3.11 0.00 0.07 ind:pre:3p; +gainer gainer VER 0.08 3.11 0.05 0.00 inf; +gaines gaine NOM f p 2.15 3.85 0.99 0.74 +gainiers gainier NOM m p 0.00 0.07 0.00 0.07 +gains gain NOM m p 5.60 5.88 3.02 1.55 +gainé gainer VER m s 0.08 3.11 0.00 0.74 par:pas; +gainée gainer VER f s 0.08 3.11 0.01 0.68 par:pas; +gainées gainer VER f p 0.08 3.11 0.01 0.95 par:pas; +gainés gainer VER m p 0.08 3.11 0.01 0.47 par:pas; +gais gai ADJ m p 20.00 41.76 1.81 4.12 +gal gal ADV 1.18 0.00 1.18 0.00 +gala gala NOM m s 3.90 3.65 3.31 2.97 +galactique galactique ADJ s 1.13 0.14 0.94 0.07 +galactiques galactique ADJ p 1.13 0.14 0.19 0.07 +galactophore galactophore ADJ s 0.01 0.00 0.01 0.00 +galago galago NOM m s 0.02 0.00 0.02 0.00 +galalithe galalithe NOM f s 0.00 0.20 0.00 0.20 +galamment galamment ADV 0.07 1.22 0.07 1.22 +galant galant ADJ m s 5.39 5.81 4.66 2.77 +galante galant ADJ f s 5.39 5.81 0.11 1.28 +galanterie galanterie NOM f s 1.14 2.50 1.00 1.82 +galanteries galanterie NOM f p 1.14 2.50 0.13 0.68 +galantes galant ADJ f p 5.39 5.81 0.16 1.08 +galantine galantine NOM f s 0.01 0.88 0.01 0.74 +galantines galantine NOM f p 0.01 0.88 0.00 0.14 +galantins galantin NOM m p 0.01 0.14 0.01 0.14 +galantisait galantiser VER 0.00 0.14 0.00 0.07 ind:imp:3s; +galantisé galantiser VER m s 0.00 0.14 0.00 0.07 par:pas; +galants galant ADJ m p 5.39 5.81 0.48 0.68 +galapiat galapiat NOM m s 0.01 0.27 0.01 0.14 +galapiats galapiat NOM m p 0.01 0.27 0.00 0.14 +galas gala NOM m p 3.90 3.65 0.59 0.68 +galate galate NOM s 0.05 0.00 0.01 0.00 +galates galate NOM p 0.05 0.00 0.04 0.00 +galathée galathée NOM f s 0.00 0.07 0.00 0.07 +galaxie galaxie NOM f s 9.53 4.12 8.29 2.16 +galaxies galaxie NOM f p 9.53 4.12 1.23 1.96 +galbait galber VER 0.10 0.47 0.00 0.07 ind:imp:3s; +galbe galbe NOM m s 0.06 1.28 0.05 1.08 +galber galber VER 0.10 0.47 0.00 0.07 inf; +galbes galbe NOM m p 0.06 1.28 0.01 0.20 +galbé galbé ADJ m s 0.04 0.74 0.00 0.20 +galbée galbé ADJ f s 0.04 0.74 0.02 0.14 +galbées galbé ADJ f p 0.04 0.74 0.01 0.27 +galbés galber VER m p 0.10 0.47 0.10 0.00 par:pas; +gale gale NOM f s 3.52 0.47 3.50 0.47 +galerie_refuge galerie_refuge NOM f s 0.00 0.07 0.00 0.07 +galerie galerie NOM f s 15.69 32.16 13.64 21.22 +galeries_refuge galeries_refuge NOM f p 0.00 0.07 0.00 0.07 +galeries galerie NOM f p 15.69 32.16 2.05 10.95 +galeriste galeriste NOM s 0.10 0.00 0.10 0.00 +galernes galerne NOM f p 0.00 0.07 0.00 0.07 +gales gale NOM f p 3.52 0.47 0.03 0.00 +galet galet NOM m s 1.18 15.74 0.54 2.70 +galetas galetas NOM m 0.14 1.28 0.14 1.28 +galetouse galetouse NOM f s 0.00 0.20 0.00 0.20 +galets galet NOM m p 1.18 15.74 0.65 13.04 +galette galette NOM f s 1.86 6.42 0.67 4.26 +galettes galette NOM f p 1.86 6.42 1.19 2.16 +galetteux galetteux ADJ m 0.00 0.14 0.00 0.14 +galeuse galeux ADJ f s 2.09 3.18 0.88 1.22 +galeuses galeux ADJ f p 2.09 3.18 0.24 0.41 +galeux galeux ADJ m 2.09 3.18 0.97 1.55 +galibot galibot NOM m s 0.00 0.14 0.00 0.07 +galibots galibot NOM m p 0.00 0.14 0.00 0.07 +galicien galicien NOM m s 0.34 0.07 0.34 0.00 +galiciennes galicien ADJ f p 0.00 0.07 0.00 0.07 +galiciens galicien NOM m p 0.34 0.07 0.00 0.07 +galiléen galiléen NOM m s 0.06 0.00 0.06 0.00 +galimatias galimatias NOM m 0.11 0.47 0.11 0.47 +galion galion NOM m s 0.23 1.15 0.21 0.81 +galions galion NOM m p 0.23 1.15 0.03 0.34 +galiote galiote NOM f s 0.00 0.54 0.00 0.34 +galiotes galiote NOM f p 0.00 0.54 0.00 0.20 +galipette galipette NOM f s 0.86 1.55 0.21 0.34 +galipettes galipette NOM f p 0.86 1.55 0.65 1.22 +gallant galler VER 0.47 0.20 0.47 0.20 par:pre; +galle galle NOM f s 0.02 0.20 0.00 0.07 +galles galle NOM f p 0.02 0.20 0.02 0.14 +gallicanes gallican ADJ f p 0.00 0.07 0.00 0.07 +gallicanisme gallicanisme NOM m s 0.00 0.14 0.00 0.14 +gallinacé gallinacé NOM m s 0.00 0.14 0.00 0.14 +galline galline ADJ f s 0.27 0.00 0.27 0.00 +gallique gallique ADJ f s 0.00 0.07 0.00 0.07 +gallium gallium NOM m s 0.06 0.07 0.06 0.07 +gallo_romain gallo_romain ADJ m s 0.00 0.14 0.00 0.07 +gallo_romain gallo_romain ADJ m p 0.00 0.14 0.00 0.07 +gallo gallo ADJ s 1.54 0.14 1.54 0.07 +gallois gallois ADJ m 0.65 0.14 0.49 0.07 +galloise gallois ADJ f s 0.65 0.14 0.12 0.07 +galloises gallois ADJ f p 0.65 0.14 0.04 0.00 +gallon gallon NOM m s 0.63 0.68 0.18 0.07 +gallons gallon NOM m p 0.63 0.68 0.45 0.61 +gallos gallo ADJ p 1.54 0.14 0.00 0.07 +galoche galoche NOM f s 0.09 6.62 0.00 1.69 +galoches galoche NOM f p 0.09 6.62 0.09 4.93 +galoché galocher VER m s 0.00 0.14 0.00 0.07 par:pas; +galochés galocher VER m p 0.00 0.14 0.00 0.07 par:pas; +galon galon NOM m s 3.16 14.73 0.89 4.12 +galonnage galonnage NOM m s 0.00 0.07 0.00 0.07 +galonnait galonner VER 0.01 1.22 0.00 0.07 ind:imp:3s; +galonne galonner VER 0.01 1.22 0.00 0.07 ind:pre:3s; +galonné galonné ADJ m s 0.09 2.09 0.03 0.74 +galonnée galonné ADJ f s 0.09 2.09 0.01 0.54 +galonnées galonné ADJ f p 0.09 2.09 0.01 0.27 +galonnés galonné ADJ m p 0.09 2.09 0.03 0.54 +galons galon NOM m p 3.16 14.73 2.28 10.61 +galop galop NOM m s 2.83 13.72 2.83 12.77 +galopa galoper VER 3.14 13.31 0.14 0.61 ind:pas:3s; +galopade galopade NOM f s 0.00 3.65 0.00 2.03 +galopades galopade NOM f p 0.00 3.65 0.00 1.62 +galopaient galoper VER 3.14 13.31 0.03 1.49 ind:imp:3p; +galopais galoper VER 3.14 13.31 0.01 0.27 ind:imp:1s;ind:imp:2s; +galopait galoper VER 3.14 13.31 0.05 1.55 ind:imp:3s; +galopant galoper VER 3.14 13.31 0.09 1.62 par:pre; +galopante galopant ADJ f s 0.31 1.89 0.22 1.15 +galopantes galopant ADJ f p 0.31 1.89 0.01 0.07 +galopants galopant ADJ m p 0.31 1.89 0.00 0.14 +galope galoper VER 3.14 13.31 0.63 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +galopent galoper VER 3.14 13.31 0.18 1.42 ind:pre:3p; +galoper galoper VER 3.14 13.31 0.95 3.78 inf; +galopera galoper VER 3.14 13.31 0.02 0.00 ind:fut:3s; +galoperaient galoper VER 3.14 13.31 0.00 0.07 cnd:pre:3p; +galoperez galoper VER 3.14 13.31 0.01 0.00 ind:fut:2p; +galopes galoper VER 3.14 13.31 0.13 0.00 ind:pre:2s; +galopez galoper VER 3.14 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +galopin galopin NOM m s 0.88 4.05 0.32 1.69 +galopine galopin NOM f s 0.88 4.05 0.00 0.41 +galopiner galopiner VER 0.00 0.07 0.00 0.07 inf; +galopines galopin NOM f p 0.88 4.05 0.00 0.07 +galopins galopin NOM m p 0.88 4.05 0.56 1.89 +galopons galoper VER 3.14 13.31 0.27 0.07 imp:pre:1p;ind:pre:1p; +galops galop NOM m p 2.83 13.72 0.00 0.95 +galopèrent galoper VER 3.14 13.31 0.00 0.07 ind:pas:3p; +galopé galoper VER m s 3.14 13.31 0.60 0.41 par:pas; +galoubet galoubet NOM m s 0.01 0.00 0.01 0.00 +galoup galoup NOM m s 0.00 0.20 0.00 0.20 +galène galène NOM f s 0.23 0.41 0.23 0.41 +galère galère NOM f s 10.26 10.47 8.12 6.08 +galèrent galérer VER 0.91 0.74 0.06 0.00 ind:pre:3p; +galères galère NOM f p 10.26 10.47 2.14 4.39 +galtouse galtouse NOM f s 0.00 1.28 0.00 1.01 +galtouses galtouse NOM f p 0.00 1.28 0.00 0.27 +galéasses galéasse NOM f p 0.00 0.14 0.00 0.14 +galuchat galuchat NOM m s 0.00 0.34 0.00 0.34 +galée galée NOM f s 0.04 0.34 0.00 0.20 +galées galée NOM f p 0.04 0.34 0.04 0.14 +galéjade galéjade NOM f s 0.29 0.41 0.28 0.34 +galéjades galéjade NOM f p 0.29 0.41 0.01 0.07 +galéjeur galéjeur ADJ m s 0.00 0.07 0.00 0.07 +galéniste galéniste NOM m s 0.00 0.07 0.00 0.07 +galérais galérer VER 0.91 0.74 0.01 0.00 ind:imp:1s; +galérait galérer VER 0.91 0.74 0.00 0.07 ind:imp:3s; +galure galure NOM m s 0.09 1.08 0.08 0.88 +galérer galérer VER 0.91 0.74 0.36 0.20 inf; +galures galure NOM m p 0.09 1.08 0.01 0.20 +galérien galérien NOM m s 0.09 1.01 0.07 0.41 +galériens galérien NOM m p 0.09 1.01 0.02 0.61 +galurin galurin NOM m s 0.04 0.41 0.04 0.41 +galéré galérer VER m s 0.91 0.74 0.23 0.20 par:pas; +galvanique galvanique ADJ f s 0.00 0.07 0.00 0.07 +galvanisa galvaniser VER 0.51 1.96 0.00 0.07 ind:pas:3s; +galvanisait galvaniser VER 0.51 1.96 0.00 0.20 ind:imp:3s; +galvanisant galvaniser VER 0.51 1.96 0.03 0.14 par:pre; +galvanise galvaniser VER 0.51 1.96 0.02 0.20 ind:pre:3s; +galvaniser galvaniser VER 0.51 1.96 0.20 0.34 inf; +galvanisme galvanisme NOM m s 0.02 0.00 0.02 0.00 +galvanisé galvaniser VER m s 0.51 1.96 0.26 0.54 par:pas; +galvanisée galvaniser VER f s 0.51 1.96 0.01 0.34 par:pas; +galvanisées galvaniser VER f p 0.51 1.96 0.00 0.07 par:pas; +galvanisés galvaniser VER m p 0.51 1.96 0.00 0.07 par:pas; +galvaudait galvauder VER 0.16 0.88 0.00 0.07 ind:imp:3s; +galvaudant galvauder VER 0.16 0.88 0.00 0.07 par:pre; +galvaude galvauder VER 0.16 0.88 0.00 0.14 ind:pre:3s; +galvaudent galvauder VER 0.16 0.88 0.00 0.07 ind:pre:3p; +galvauder galvauder VER 0.16 0.88 0.10 0.14 inf; +galvaudeux galvaudeux NOM m 0.00 0.14 0.00 0.14 +galvaudez galvauder VER 0.16 0.88 0.00 0.07 imp:pre:2p; +galvaudiez galvauder VER 0.16 0.88 0.00 0.07 ind:imp:2p; +galvaudé galvauder VER m s 0.16 0.88 0.04 0.20 par:pas; +galvaudée galvauder VER f s 0.16 0.88 0.02 0.07 par:pas; +gamahuche gamahucher VER 0.00 0.07 0.00 0.07 ind:pre:3s; +gamay gamay NOM m s 0.00 0.07 0.00 0.07 +gambada gambader VER 0.80 2.64 0.00 0.07 ind:pas:3s; +gambadaient gambader VER 0.80 2.64 0.00 0.14 ind:imp:3p; +gambadais gambader VER 0.80 2.64 0.01 0.00 ind:imp:1s; +gambadait gambader VER 0.80 2.64 0.05 0.61 ind:imp:3s; +gambadant gambader VER 0.80 2.64 0.05 0.20 par:pre; +gambadante gambadant ADJ f s 0.02 0.14 0.00 0.07 +gambade gambader VER 0.80 2.64 0.16 0.54 ind:pre:1s;ind:pre:3s; +gambadent gambader VER 0.80 2.64 0.12 0.27 ind:pre:3p; +gambader gambader VER 0.80 2.64 0.38 0.74 inf; +gambades gambade NOM f p 0.01 0.61 0.01 0.47 +gambadeurs gambadeur NOM m p 0.00 0.07 0.00 0.07 +gambadez gambader VER 0.80 2.64 0.02 0.00 imp:pre:2p; +gambadèrent gambader VER 0.80 2.64 0.00 0.07 ind:pas:3p; +gambas gamba NOM f p 0.45 0.14 0.45 0.14 +gambe gambe NOM f s 0.34 0.07 0.34 0.07 +gamberge gamberger VER 0.69 7.70 0.11 1.89 ind:pre:1s;ind:pre:3s; +gambergea gamberger VER 0.69 7.70 0.00 0.07 ind:pas:3s; +gambergeaient gamberger VER 0.69 7.70 0.00 0.07 ind:imp:3p; +gambergeailler gambergeailler VER 0.00 0.07 0.00 0.07 inf; +gambergeais gamberger VER 0.69 7.70 0.01 0.61 ind:imp:1s; +gambergeait gamberger VER 0.69 7.70 0.04 0.74 ind:imp:3s; +gambergeant gamberger VER 0.69 7.70 0.00 0.54 par:pre; +gambergent gamberger VER 0.69 7.70 0.01 0.07 ind:pre:3p; +gambergeons gamberger VER 0.69 7.70 0.00 0.07 imp:pre:1p; +gamberger gamberger VER 0.69 7.70 0.23 2.50 inf; +gamberges gamberger VER 0.69 7.70 0.19 0.20 ind:pre:2s; +gambergez gamberger VER 0.69 7.70 0.02 0.00 imp:pre:2p;ind:pre:2p; +gambergé gamberger VER m s 0.69 7.70 0.09 0.95 par:pas; +gambette gambette NOM s 0.33 0.74 0.02 0.20 +gambettes gambette NOM p 0.33 0.74 0.31 0.54 +gambillait gambiller VER 0.08 1.35 0.00 0.07 ind:imp:3s; +gambillant gambiller VER 0.08 1.35 0.00 0.20 par:pre; +gambille gambiller VER 0.08 1.35 0.03 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gambiller gambiller VER 0.08 1.35 0.03 0.14 inf; +gambilles gambiller VER 0.08 1.35 0.02 0.27 ind:pre:2s; +gambilleurs gambilleur NOM m p 0.00 0.20 0.00 0.14 +gambilleuses gambilleur NOM f p 0.00 0.20 0.00 0.07 +gambillé gambiller VER m s 0.08 1.35 0.00 0.07 par:pas; +gambit gambit NOM m s 0.04 0.00 0.04 0.00 +game game NOM m s 0.64 0.14 0.64 0.14 +gamelan gamelan NOM m s 0.25 0.07 0.25 0.07 +gamelle gamelle NOM f s 1.64 13.72 1.29 8.45 +gamelles gamelle NOM f p 1.64 13.72 0.34 5.27 +gamin gamin NOM m s 92.22 38.78 55.94 19.53 +gaminas gaminer VER 0.00 0.07 0.00 0.07 ind:pas:2s; +gamine gamin NOM f s 92.22 38.78 12.00 7.16 +gaminement gaminement NOM m s 0.00 0.07 0.00 0.07 +gaminerie gaminerie NOM f s 0.40 0.61 0.08 0.20 +gamineries gaminerie NOM f p 0.40 0.61 0.32 0.41 +gamines gamin NOM f p 92.22 38.78 2.13 2.77 +gamins gamin NOM m p 92.22 38.78 22.15 9.32 +gamma gamma NOM m 1.94 1.01 1.94 1.01 +gammaglobuline gammaglobuline NOM f s 0.03 0.34 0.00 0.20 +gammaglobulines gammaglobuline NOM f p 0.03 0.34 0.03 0.14 +gammas gammas NOM m 0.04 0.00 0.04 0.00 +gamme gamme NOM f s 3.22 7.91 2.67 5.74 +gammes gamme NOM f p 3.22 7.91 0.55 2.16 +gammée gammée ADJ f s 1.27 3.45 0.20 2.43 +gammées gammée ADJ f p 1.27 3.45 1.07 1.01 +gamète gamète NOM m s 0.03 0.20 0.01 0.14 +gamètes gamète NOM m p 0.03 0.20 0.02 0.07 +gan gan NOM m s 0.27 0.00 0.27 0.00 +ganache ganache NOM f s 0.04 0.61 0.04 0.61 +ganaderia ganaderia NOM f s 0.00 0.20 0.00 0.14 +ganaderias ganaderia NOM f p 0.00 0.20 0.00 0.07 +gandin gandin NOM m s 0.56 1.28 0.56 0.95 +gandins gandin NOM m p 0.56 1.28 0.00 0.34 +gandoura gandoura NOM f s 0.01 0.68 0.01 0.54 +gandourah gandourah NOM f s 0.00 0.20 0.00 0.20 +gandouras gandoura NOM f p 0.01 0.68 0.00 0.14 +gang gang NOM m s 17.48 3.85 12.44 3.04 +ganglion ganglion NOM m s 0.61 1.01 0.18 0.41 +ganglionnaires ganglionnaire ADJ f p 0.00 0.07 0.00 0.07 +ganglions ganglion NOM m p 0.61 1.01 0.44 0.61 +gangrena gangrener VER 0.50 0.61 0.00 0.07 ind:pas:3s; +gangrener gangrener VER 0.50 0.61 0.21 0.07 inf; +gangreneux gangreneux ADJ m s 0.01 0.00 0.01 0.00 +gangrené gangrené ADJ m s 0.19 0.41 0.17 0.27 +gangrenée gangrener VER f s 0.50 0.61 0.10 0.14 par:pas; +gangrenées gangrené ADJ f p 0.19 0.41 0.01 0.00 +gangrenés gangrener VER m p 0.50 0.61 0.01 0.07 par:pas; +gangrène gangrène NOM f s 1.74 2.23 1.74 2.16 +gangrènes gangrène NOM f p 1.74 2.23 0.00 0.07 +gangs gang NOM m p 17.48 3.85 5.05 0.81 +gangster gangster NOM m s 10.43 6.35 6.75 3.11 +gangsters gangster NOM m p 10.43 6.35 3.68 3.24 +gangstérisme gangstérisme NOM m s 0.00 0.07 0.00 0.07 +gangue gangue NOM f s 0.01 2.03 0.01 1.89 +gangues gangue NOM f p 0.01 2.03 0.00 0.14 +ganja ganja NOM f s 0.18 0.00 0.18 0.00 +ganse ganse NOM f s 0.04 0.68 0.02 0.34 +ganses ganse NOM f p 0.04 0.68 0.02 0.34 +gansé ganser VER m s 0.00 0.41 0.00 0.07 par:pas; +gansée ganser VER f s 0.00 0.41 0.00 0.34 par:pas; +gant gant NOM m s 25.02 36.01 9.86 7.97 +gantait ganter VER 0.14 3.72 0.00 0.07 ind:imp:3s; +gantant ganter VER 0.14 3.72 0.00 0.07 par:pre; +gante ganter VER 0.14 3.72 0.00 0.07 ind:pre:3s; +gantelet gantelet NOM m s 0.37 0.14 0.36 0.07 +gantelets gantelet NOM m p 0.37 0.14 0.01 0.07 +ganterie ganterie NOM f s 0.00 0.07 0.00 0.07 +gantier gantier NOM m s 0.24 0.07 0.24 0.00 +gantières gantier NOM f p 0.24 0.07 0.00 0.07 +gants gant NOM m p 25.02 36.01 15.16 28.04 +ganté ganté ADJ m s 0.06 2.50 0.04 0.20 +gantée ganter VER f s 0.14 3.72 0.01 1.82 par:pas; +gantées ganter VER f p 0.14 3.72 0.01 0.74 par:pas; +gantés ganter VER m p 0.14 3.72 0.10 0.20 par:pas; +ganymèdes ganymède NOM m p 0.00 0.07 0.00 0.07 +gap gap NOM m s 0.01 0.00 0.01 0.00 +gaperon gaperon NOM m s 0.00 0.07 0.00 0.07 +gapette gapette NOM f s 0.01 0.68 0.01 0.54 +gapettes gapette NOM f p 0.01 0.68 0.00 0.14 +gara garer VER 27.18 18.04 0.04 1.15 ind:pas:3s; +garage garage NOM m s 25.25 24.12 24.41 22.23 +garages garage NOM m p 25.25 24.12 0.83 1.89 +garagiste garagiste NOM s 1.25 5.27 1.25 5.00 +garagistes garagiste NOM p 1.25 5.27 0.00 0.27 +garaient garer VER 27.18 18.04 0.02 0.20 ind:imp:3p; +garais garer VER 27.18 18.04 0.07 0.07 ind:imp:1s;ind:imp:2s; +garait garer VER 27.18 18.04 0.05 0.34 ind:imp:3s; +garance garance ADJ 0.01 0.27 0.01 0.27 +garancière garancière NOM f s 0.00 0.27 0.00 0.27 +garant garant ADJ m s 2.39 2.09 2.19 0.81 +garantît garantir VER 19.74 16.82 0.00 0.07 sub:imp:3s; +garante garant ADJ f s 2.39 2.09 0.16 0.68 +garantes garant ADJ f p 2.39 2.09 0.00 0.07 +garanti garantir VER m s 19.74 16.82 2.32 2.70 par:pas; +garantie garantie NOM f s 9.16 8.24 6.84 5.14 +garanties garantie NOM f p 9.16 8.24 2.32 3.11 +garantir garantir VER 19.74 16.82 4.86 4.59 inf; +garantira garantir VER 19.74 16.82 0.20 0.54 ind:fut:3s; +garantirais garantir VER 19.74 16.82 0.01 0.00 cnd:pre:1s; +garantirait garantir VER 19.74 16.82 0.04 0.27 cnd:pre:3s; +garantiriez garantir VER 19.74 16.82 0.01 0.00 cnd:pre:2p; +garantirons garantir VER 19.74 16.82 0.00 0.07 ind:fut:1p; +garantiront garantir VER 19.74 16.82 0.04 0.00 ind:fut:3p; +garantis garantir VER m p 19.74 16.82 7.15 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +garantissaient garantir VER 19.74 16.82 0.01 0.34 ind:imp:3p; +garantissais garantir VER 19.74 16.82 0.01 0.07 ind:imp:1s; +garantissait garantir VER 19.74 16.82 0.11 0.95 ind:imp:3s; +garantissant garantir VER 19.74 16.82 0.13 0.68 par:pre; +garantisse garantir VER 19.74 16.82 0.18 0.14 sub:pre:1s;sub:pre:3s; +garantissent garantir VER 19.74 16.82 0.07 0.14 ind:pre:3p; +garantissez garantir VER 19.74 16.82 0.26 0.00 imp:pre:2p;ind:pre:2p; +garantissons garantir VER 19.74 16.82 0.25 0.00 imp:pre:1p;ind:pre:1p; +garantit garantir VER 19.74 16.82 2.30 1.22 ind:pre:3s;ind:pas:3s; +garants garant NOM m p 0.97 1.62 0.24 0.34 +garbure garbure NOM f s 0.14 0.14 0.14 0.14 +garce garce NOM f s 21.71 8.78 20.25 7.36 +garces garce NOM f p 21.71 8.78 1.46 1.42 +garcette garcette NOM f s 0.00 0.20 0.00 0.07 +garcettes garcette NOM f p 0.00 0.20 0.00 0.14 +garda garder VER 338.40 257.50 0.40 11.89 ind:pas:3s; +gardai garder VER 338.40 257.50 0.12 3.65 ind:pas:1s; +gardaient garder VER 338.40 257.50 0.89 8.45 ind:imp:3p; +gardais garder VER 338.40 257.50 3.00 5.74 ind:imp:1s;ind:imp:2s; +gardait garder VER 338.40 257.50 4.52 37.30 ind:imp:3s; +gardant garder VER 338.40 257.50 2.06 9.46 par:pre; +garde_barrière garde_barrière NOM m s 0.00 0.95 0.00 0.95 +garde_boue garde_boue NOM m 0.05 1.08 0.05 1.08 +garde_côte garde_côte NOM m s 1.90 0.14 0.54 0.07 +garde_côte garde_côte NOM m p 1.90 0.14 1.36 0.07 +garde_champêtre garde_champêtre NOM m s 0.00 0.54 0.00 0.47 +garde_chasse garde_chasse NOM m s 0.22 1.42 0.22 1.42 +garde_chiourme garde_chiourme NOM m s 0.11 0.74 0.06 0.54 +garde_corps garde_corps NOM m 0.01 0.34 0.01 0.34 +garde_feu garde_feu NOM m 0.05 0.00 0.05 0.00 +garde_forestier garde_forestier NOM s 0.16 0.14 0.16 0.14 +garde_fou garde_fou NOM m s 0.30 1.89 0.25 1.49 +garde_fou garde_fou NOM m p 0.30 1.89 0.05 0.41 +garde_frontière garde_frontière NOM m s 0.16 0.00 0.16 0.00 +garde_malade garde_malade NOM s 0.44 1.15 0.44 1.15 +garde_manger garde_manger NOM m 0.68 2.77 0.68 2.77 +garde_meuble garde_meuble NOM m 0.34 0.20 0.34 0.20 +garde_meubles garde_meubles NOM m 0.16 0.34 0.16 0.34 +garde_à_vous garde_à_vous NOM m 0.00 5.88 0.00 5.88 +garde_pêche garde_pêche NOM m s 0.01 0.07 0.01 0.07 +garde_robe garde_robe NOM f s 2.19 2.77 2.17 2.70 +garde_robe garde_robe NOM f p 2.19 2.77 0.03 0.07 +garde_voie garde_voie NOM m s 0.00 0.07 0.00 0.07 +garde_vue garde_vue NOM m 0.25 0.00 0.25 0.00 +garde garder VER 338.40 257.50 93.72 37.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +garden_party garden_party NOM f s 0.22 0.34 0.22 0.34 +gardent garder VER 338.40 257.50 6.04 6.35 ind:pre:3p;sub:pre:3p; +garder garder VER 338.40 257.50 123.07 68.31 inf;;inf;;inf;;inf;; +gardera garder VER 338.40 257.50 3.31 2.30 ind:fut:3s; +garderai garder VER 338.40 257.50 5.83 1.89 ind:fut:1s; +garderaient garder VER 338.40 257.50 0.15 0.61 cnd:pre:3p; +garderais garder VER 338.40 257.50 1.19 0.95 cnd:pre:1s;cnd:pre:2s; +garderait garder VER 338.40 257.50 0.74 2.97 cnd:pre:3s; +garderas garder VER 338.40 257.50 1.42 0.61 ind:fut:2s; +garderez garder VER 338.40 257.50 0.72 0.74 ind:fut:2p; +garderie garderie NOM f s 1.96 0.61 1.67 0.47 +garderies garderie NOM f p 1.96 0.61 0.29 0.14 +garderiez garder VER 338.40 257.50 0.45 0.07 cnd:pre:2p; +garderions garder VER 338.40 257.50 0.03 0.14 cnd:pre:1p; +garderons garder VER 338.40 257.50 1.30 0.41 ind:fut:1p; +garderont garder VER 338.40 257.50 1.05 0.47 ind:fut:3p; +gardes_barrière gardes_barrière NOM p 0.00 0.14 0.00 0.14 +gardes_côte gardes_côte NOM m p 0.31 0.00 0.31 0.00 +garde_champêtre garde_champêtre NOM m p 0.00 0.54 0.00 0.07 +gardes_chasse gardes_chasse NOM m s 0.03 0.41 0.03 0.41 +garde_chiourme garde_chiourme NOM m p 0.11 0.74 0.04 0.20 +gardes_chiourme gardes_chiourme NOM p 0.03 0.14 0.03 0.14 +garde_française garde_française NOM m p 0.00 0.07 0.00 0.07 +gardes_frontière gardes_frontière NOM m p 0.03 0.41 0.03 0.41 +gardes_voie gardes_voie NOM m p 0.00 0.07 0.00 0.07 +gardes garde NOM p 104.47 112.09 27.70 22.23 +gardeur gardeur NOM m s 0.00 0.34 0.00 0.07 +gardeurs gardeur NOM m p 0.00 0.34 0.00 0.07 +gardeuse gardeur NOM f s 0.00 0.34 0.00 0.14 +gardeuses gardeur NOM f p 0.00 0.34 0.00 0.07 +gardez garder VER 338.40 257.50 39.17 5.20 imp:pre:2p;ind:pre:2p; +gardian gardian NOM m s 0.00 0.20 0.00 0.14 +gardians gardian NOM m p 0.00 0.20 0.00 0.07 +gardien_chef gardien_chef NOM m s 0.22 0.27 0.22 0.27 +gardien gardien NOM m s 31.56 31.96 18.55 18.45 +gardiennage gardiennage NOM m s 0.05 0.27 0.05 0.27 +gardiennait gardienner VER 0.00 0.07 0.00 0.07 ind:imp:3s; +gardienne gardien NOM f s 31.56 31.96 2.81 3.31 +gardiennes gardienne NOM f p 0.36 0.00 0.36 0.00 +gardiens gardien NOM m p 31.56 31.96 10.20 9.59 +gardiez garder VER 338.40 257.50 1.23 0.61 ind:imp:2p; +gardions garder VER 338.40 257.50 0.56 0.88 ind:imp:1p; +gardois gardois ADJ m s 0.00 0.07 0.00 0.07 +gardâmes garder VER 338.40 257.50 0.00 0.20 ind:pas:1p; +gardon gardon NOM m s 1.06 1.08 0.44 0.41 +gardons garder VER 338.40 257.50 4.58 2.03 imp:pre:1p;ind:pre:1p; +gardât garder VER 338.40 257.50 0.00 0.68 sub:imp:3s; +gardèrent garder VER 338.40 257.50 0.12 0.61 ind:pas:3p; +gardé garder VER m s 338.40 257.50 24.98 36.89 imp:pre:2s;par:pas;par:pas; +gardée garder VER f s 338.40 257.50 3.87 4.93 par:pas; +gardées garder VER f p 338.40 257.50 1.30 0.88 par:pas; +gardénal gardénal NOM m s 0.00 1.08 0.00 1.08 +gardénia gardénia NOM m s 0.27 0.54 0.11 0.14 +gardénias gardénia NOM m p 0.27 0.54 0.16 0.41 +gardés garder VER m p 338.40 257.50 1.50 2.77 par:pas; +gare gare ONO 10.79 2.84 10.79 2.84 +garenne garenne NOM s 0.66 1.01 0.64 0.68 +garennes garenne NOM f p 0.66 1.01 0.02 0.34 +garent garer VER 27.18 18.04 0.14 0.14 ind:pre:3p; +garer garer VER 27.18 18.04 6.70 3.24 inf; +garerai garer VER 27.18 18.04 0.17 0.00 ind:fut:1s; +garerais garer VER 27.18 18.04 0.01 0.00 cnd:pre:1s; +garerait garer VER 27.18 18.04 0.01 0.07 cnd:pre:3s; +gareront garer VER 27.18 18.04 0.01 0.00 ind:fut:3p; +gares gare NOM f p 42.15 84.53 1.87 5.95 +garez garer VER 27.18 18.04 2.48 0.27 imp:pre:2p;ind:pre:2p; +gargamelle gargamelle NOM f s 0.00 0.07 0.00 0.07 +gargantua gargantua NOM m s 0.01 0.00 0.01 0.00 +gargantuesque gargantuesque ADJ s 0.38 0.41 0.33 0.34 +gargantuesques gargantuesque ADJ m p 0.38 0.41 0.05 0.07 +gargarisa gargariser VER 0.41 0.74 0.00 0.07 ind:pas:3s; +gargarisaient gargariser VER 0.41 0.74 0.00 0.07 ind:imp:3p; +gargarisait gargariser VER 0.41 0.74 0.01 0.14 ind:imp:3s; +gargarisant gargariser VER 0.41 0.74 0.00 0.14 par:pre; +gargarise gargariser VER 0.41 0.74 0.20 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gargarisent gargariser VER 0.41 0.74 0.03 0.14 ind:pre:3p; +gargariser gargariser VER 0.41 0.74 0.15 0.07 inf; +gargarisme gargarisme NOM m s 0.06 0.34 0.02 0.20 +gargarismes gargarisme NOM m p 0.06 0.34 0.04 0.14 +gargarisé gargariser VER m s 0.41 0.74 0.01 0.00 par:pas; +gargote gargote NOM f s 0.47 1.55 0.26 0.95 +gargotes gargote NOM f p 0.47 1.55 0.21 0.61 +gargotier gargotier NOM m s 0.14 0.20 0.14 0.07 +gargotiers gargotier NOM m p 0.14 0.20 0.00 0.14 +gargouilla gargouiller VER 0.55 2.36 0.00 0.14 ind:pas:3s; +gargouillaient gargouiller VER 0.55 2.36 0.00 0.07 ind:imp:3p; +gargouillait gargouiller VER 0.55 2.36 0.03 0.54 ind:imp:3s; +gargouillant gargouiller VER 0.55 2.36 0.01 0.14 par:pre; +gargouillante gargouillant ADJ f s 0.01 0.14 0.00 0.07 +gargouille gargouiller VER 0.55 2.36 0.42 0.81 ind:pre:1s;ind:pre:3s; +gargouillement gargouillement NOM m s 0.04 1.15 0.02 0.61 +gargouillements gargouillement NOM m p 0.04 1.15 0.02 0.54 +gargouillent gargouiller VER 0.55 2.36 0.03 0.14 ind:pre:3p; +gargouiller gargouiller VER 0.55 2.36 0.05 0.47 inf; +gargouilles gargouille NOM f p 0.73 1.82 0.41 0.74 +gargouillette gargouillette NOM f s 0.00 0.07 0.00 0.07 +gargouillis gargouillis NOM m 0.23 2.50 0.23 2.50 +gargouillé gargouiller VER m s 0.55 2.36 0.01 0.07 par:pas; +gargoulette gargoulette NOM f s 0.00 0.47 0.00 0.41 +gargoulettes gargoulette NOM f p 0.00 0.47 0.00 0.07 +gargousses gargousse NOM f p 0.00 0.07 0.00 0.07 +gari gari NOM m s 0.00 0.14 0.00 0.14 +garibaldien garibaldien ADJ m s 0.14 0.07 0.14 0.00 +garibaldiens garibaldien NOM m p 0.40 0.00 0.40 0.00 +garions garer VER 27.18 18.04 0.01 0.07 ind:imp:1p; +garnement garnement NOM m s 1.94 2.64 1.42 1.22 +garnements garnement NOM m p 1.94 2.64 0.52 1.42 +garni garnir VER m s 1.04 16.42 0.26 3.99 par:pas; +garnie garnir VER f s 1.04 16.42 0.34 4.19 par:pas; +garnies garnir VER f p 1.04 16.42 0.07 2.30 par:pas; +garnir garnir VER 1.04 16.42 0.16 1.89 inf; +garnirent garnir VER 1.04 16.42 0.00 0.07 ind:pas:3p; +garniront garnir VER 1.04 16.42 0.00 0.07 ind:fut:3p; +garnis garni ADJ m p 0.66 6.01 0.21 1.96 +garnison garnison NOM f s 3.23 11.35 3.13 8.38 +garnisons garnison NOM f p 3.23 11.35 0.10 2.97 +garnissage garnissage NOM m s 0.01 0.00 0.01 0.00 +garnissaient garnir VER 1.04 16.42 0.00 0.68 ind:imp:3p; +garnissais garnir VER 1.04 16.42 0.01 0.07 ind:imp:1s; +garnissait garnir VER 1.04 16.42 0.00 0.95 ind:imp:3s; +garnissant garnir VER 1.04 16.42 0.00 0.34 par:pre; +garnissent garnir VER 1.04 16.42 0.01 0.34 ind:pre:3p; +garnissez garnir VER 1.04 16.42 0.00 0.07 imp:pre:2p; +garnit garnir VER 1.04 16.42 0.02 0.54 ind:pre:3s;ind:pas:3s; +garniture garniture NOM f s 1.03 2.30 0.80 1.28 +garnitures garniture NOM f p 1.03 2.30 0.23 1.01 +garno garno NOM m s 0.00 0.07 0.00 0.07 +garons garer VER 27.18 18.04 0.04 0.07 imp:pre:1p;ind:pre:1p; +garou garou NOM m s 0.03 0.14 0.03 0.14 +garrick garrick NOM m s 0.00 0.07 0.00 0.07 +garrigue garrigue NOM f s 0.54 1.96 0.54 1.49 +garrigues garrigue NOM f p 0.54 1.96 0.00 0.47 +garrot garrot NOM m s 1.58 2.43 1.55 2.30 +garrots garrot NOM m p 1.58 2.43 0.03 0.14 +garrottaient garrotter VER 0.35 0.68 0.00 0.07 ind:imp:3p; +garrotte garrotter VER 0.35 0.68 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +garrottent garrotter VER 0.35 0.68 0.01 0.00 ind:pre:3p; +garrotter garrotter VER 0.35 0.68 0.01 0.07 inf; +garrotté garrotter VER m s 0.35 0.68 0.03 0.07 par:pas; +garrottée garrotter VER f s 0.35 0.68 0.01 0.14 par:pas; +garrottés garrotter VER m p 0.35 0.68 0.01 0.14 par:pas; +gars gars NOM m 289.63 59.26 289.63 59.26 +garçon garçon NOM m s 251.51 262.50 188.41 186.96 +garçonne garçonne NOM f s 0.00 0.88 0.00 0.88 +garçonnet garçonnet NOM m s 0.27 3.65 0.21 2.50 +garçonnets garçonnet NOM m p 0.27 3.65 0.06 1.15 +garçonnier garçonnier ADJ m s 0.02 1.15 0.00 0.20 +garçonniers garçonnier ADJ m p 0.02 1.15 0.00 0.14 +garçonnière garçonnière NOM f s 1.51 1.22 1.51 1.08 +garçonnières garçonnière NOM f p 1.51 1.22 0.00 0.14 +garçons garçon NOM m p 251.51 262.50 63.09 75.54 +garèrent garer VER 27.18 18.04 0.00 0.14 ind:pas:3p; +garé garer VER m s 27.18 18.04 4.28 3.45 par:pas; +garée garer VER f s 27.18 18.04 4.08 3.72 par:pas; +garées garer VER f p 27.18 18.04 0.30 0.88 par:pas; +garés garer VER m p 27.18 18.04 0.78 0.81 par:pas; +gas_oil gas_oil NOM m s 0.02 0.27 0.02 0.27 +gascon gascon ADJ m s 0.58 0.20 0.47 0.07 +gasconne gascon ADJ f s 0.58 0.20 0.10 0.07 +gascons gascon NOM m p 0.44 0.27 0.06 0.20 +gasoil gasoil NOM m s 0.49 0.34 0.49 0.34 +gaspacho gaspacho NOM m s 1.38 0.00 1.38 0.00 +gaspard gaspard NOM m s 0.54 1.01 0.54 0.20 +gaspards gaspard NOM m p 0.54 1.01 0.00 0.81 +gaspilla gaspiller VER 11.50 6.08 0.01 0.00 ind:pas:3s; +gaspillage gaspillage NOM m s 1.92 2.30 1.81 2.16 +gaspillages gaspillage NOM m p 1.92 2.30 0.10 0.14 +gaspillaient gaspiller VER 11.50 6.08 0.00 0.14 ind:imp:3p; +gaspillait gaspiller VER 11.50 6.08 0.10 0.27 ind:imp:3s; +gaspillant gaspiller VER 11.50 6.08 0.04 0.20 par:pre; +gaspillasse gaspiller VER 11.50 6.08 0.00 0.07 sub:imp:1s; +gaspille gaspiller VER 11.50 6.08 2.57 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gaspillent gaspiller VER 11.50 6.08 0.41 0.00 ind:pre:3p; +gaspiller gaspiller VER 11.50 6.08 3.06 2.43 inf; +gaspillerai gaspiller VER 11.50 6.08 0.05 0.00 ind:fut:1s; +gaspilleraient gaspiller VER 11.50 6.08 0.00 0.07 cnd:pre:3p; +gaspillerais gaspiller VER 11.50 6.08 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +gaspillerez gaspiller VER 11.50 6.08 0.00 0.07 ind:fut:2p; +gaspilles gaspiller VER 11.50 6.08 0.82 0.14 ind:pre:2s; +gaspilleur gaspilleur ADJ m s 0.02 0.00 0.01 0.00 +gaspilleurs gaspilleur NOM m p 0.02 0.20 0.02 0.14 +gaspilleuse gaspilleur ADJ f s 0.02 0.00 0.01 0.00 +gaspilleuses gaspilleur NOM f p 0.02 0.20 0.00 0.07 +gaspillez gaspiller VER 11.50 6.08 1.32 0.20 imp:pre:2p;ind:pre:2p; +gaspillons gaspiller VER 11.50 6.08 0.26 0.14 imp:pre:1p;ind:pre:1p; +gaspillât gaspiller VER 11.50 6.08 0.00 0.07 sub:imp:3s; +gaspillé gaspiller VER m s 11.50 6.08 1.79 0.81 par:pas; +gaspillée gaspiller VER f s 11.50 6.08 0.48 0.34 par:pas; +gaspillées gaspiller VER f p 11.50 6.08 0.12 0.20 par:pas; +gaspillés gaspiller VER m p 11.50 6.08 0.28 0.41 par:pas; +gaster gaster NOM m s 0.01 0.14 0.01 0.14 +gastralgie gastralgie NOM f s 0.01 0.07 0.01 0.00 +gastralgies gastralgie NOM f p 0.01 0.07 0.00 0.07 +gastrectomie gastrectomie NOM f s 0.01 0.00 0.01 0.00 +gastrique gastrique ADJ s 1.35 0.61 1.13 0.34 +gastriques gastrique ADJ p 1.35 0.61 0.22 0.27 +gastrite gastrite NOM f s 0.21 0.07 0.20 0.00 +gastrites gastrite NOM f p 0.21 0.07 0.01 0.07 +gastro_entérite gastro_entérite NOM f s 0.04 0.07 0.04 0.07 +gastro_entérologue gastro_entérologue NOM s 0.04 0.14 0.04 0.07 +gastro_entérologue gastro_entérologue NOM p 0.04 0.14 0.00 0.07 +gastro_intestinal gastro_intestinal ADJ m s 0.12 0.00 0.04 0.00 +gastro_intestinal gastro_intestinal ADJ f s 0.12 0.00 0.02 0.00 +gastro_intestinal gastro_intestinal ADJ m p 0.12 0.00 0.05 0.00 +gastro gastro NOM s 0.66 0.07 0.66 0.07 +gastroentérologue gastroentérologue NOM s 0.02 0.00 0.02 0.00 +gastrolâtre gastrolâtre ADJ m s 0.00 0.07 0.00 0.07 +gastrolâtre gastrolâtre NOM s 0.00 0.07 0.00 0.07 +gastronome gastronome NOM s 0.07 0.81 0.04 0.68 +gastronomes gastronome NOM p 0.07 0.81 0.04 0.14 +gastronomie gastronomie NOM f s 0.58 0.61 0.58 0.61 +gastronomique gastronomique ADJ s 0.48 1.96 0.40 0.88 +gastronomiques gastronomique ADJ p 0.48 1.96 0.08 1.08 +gastrula gastrula NOM f s 0.01 0.00 0.01 0.00 +gastéropode gastéropode NOM m s 0.02 0.14 0.00 0.07 +gastéropodes gastéropode NOM m p 0.02 0.14 0.02 0.07 +gatte gatte NOM f s 0.02 0.00 0.02 0.00 +gauche gauche NOM s 71.78 134.59 71.66 133.78 +gauchement gauchement ADV 0.10 3.45 0.10 3.45 +gaucher gaucher ADJ m s 2.29 0.81 1.93 0.20 +gaucherie gaucherie NOM f s 0.12 2.50 0.12 2.43 +gaucheries gaucherie NOM f p 0.12 2.50 0.00 0.07 +gauchers gaucher NOM m p 1.10 0.27 0.28 0.14 +gauches gauche ADJ p 45.88 89.59 0.36 1.55 +gauchi gauchir VER m s 0.02 0.88 0.01 0.00 par:pas; +gauchie gauchir VER f s 0.02 0.88 0.01 0.34 par:pas; +gauchir gauchir VER 0.02 0.88 0.00 0.34 inf; +gauchis gauchir VER m p 0.02 0.88 0.00 0.07 par:pas; +gauchisante gauchisant ADJ f s 0.00 0.14 0.00 0.07 +gauchisantes gauchisant ADJ f p 0.00 0.14 0.00 0.07 +gauchisme gauchisme NOM m s 0.00 0.20 0.00 0.14 +gauchismes gauchisme NOM m p 0.00 0.20 0.00 0.07 +gauchissaient gauchir VER 0.02 0.88 0.00 0.07 ind:imp:3p; +gauchissait gauchir VER 0.02 0.88 0.00 0.07 ind:imp:3s; +gauchissement gauchissement NOM m s 0.00 0.07 0.00 0.07 +gauchiste gauchiste ADJ s 1.02 1.08 0.79 0.74 +gauchistes gauchiste ADJ p 1.02 1.08 0.23 0.34 +gaucho gaucho NOM m s 0.35 1.28 0.28 0.27 +gauchos gaucho NOM m p 0.35 1.28 0.07 1.01 +gauchère gaucher ADJ f s 2.29 0.81 0.18 0.61 +gaudriole gaudriole NOM f s 0.04 1.01 0.02 0.68 +gaudrioles gaudriole NOM f p 0.04 1.01 0.02 0.34 +gaufre gaufre NOM f s 3.03 1.96 0.58 0.68 +gaufres gaufre NOM f p 3.03 1.96 2.44 1.28 +gaufrette gaufrette NOM f s 0.08 0.88 0.01 0.27 +gaufrettes gaufrette NOM f p 0.08 0.88 0.07 0.61 +gaufrier gaufrier NOM m s 0.17 0.27 0.17 0.27 +gaufré gaufré ADJ m s 0.04 0.95 0.04 0.47 +gaufrée gaufrer VER f s 0.04 0.81 0.01 0.07 par:pas; +gaufrées gaufré ADJ f p 0.04 0.95 0.00 0.14 +gaufrés gaufrer VER m p 0.04 0.81 0.00 0.20 par:pas; +gaulant gauler VER 0.75 1.28 0.00 0.07 par:pre; +gauldo gauldo NOM f s 0.00 0.14 0.00 0.07 +gauldos gauldo NOM f p 0.00 0.14 0.00 0.07 +gaule gaule NOM f s 0.85 2.91 0.75 1.89 +gauleiter gauleiter NOM m s 0.12 0.68 0.12 0.68 +gauler gauler VER 0.75 1.28 0.35 0.95 inf; +gaulerais gauler VER 0.75 1.28 0.01 0.00 cnd:pre:1s; +gaulerait gauler VER 0.75 1.28 0.00 0.07 cnd:pre:3s; +gaules gaule NOM f p 0.85 2.91 0.10 1.01 +gaélique gaélique NOM s 0.17 0.14 0.17 0.14 +gaulis gaulis NOM m 0.00 0.34 0.00 0.34 +gaulle gaulle NOM f s 0.00 0.07 0.00 0.07 +gaullisme gaullisme NOM m s 0.00 1.49 0.00 1.49 +gaulliste gaulliste ADJ s 0.01 2.43 0.01 1.62 +gaullistes gaulliste NOM p 0.00 4.05 0.00 3.58 +gaulois gaulois NOM m 2.48 8.85 2.47 2.64 +gauloise gaulois ADJ f s 1.36 3.04 0.17 1.28 +gauloisement gauloisement ADV 0.00 0.07 0.00 0.07 +gauloiseries gauloiserie NOM f p 0.00 0.07 0.00 0.07 +gauloises gaulois ADJ f p 1.36 3.04 0.19 0.47 +gaulèrent gauler VER 0.75 1.28 0.00 0.07 ind:pas:3p; +gaulthérie gaulthérie NOM f s 0.01 0.00 0.01 0.00 +gaulé gauler VER m s 0.75 1.28 0.20 0.14 par:pas; +gaulée gauler VER f s 0.75 1.28 0.19 0.00 par:pas; +gaupe gaupe NOM f s 0.00 0.07 0.00 0.07 +gauss gauss NOM m 0.01 0.00 0.01 0.00 +gaussaient gausser VER 0.15 2.64 0.00 0.68 ind:imp:3p; +gaussait gausser VER 0.15 2.64 0.01 0.61 ind:imp:3s; +gaussant gausser VER 0.15 2.64 0.01 0.14 par:pre; +gausse gausser VER 0.15 2.64 0.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gaussent gausser VER 0.15 2.64 0.03 0.07 ind:pre:3p; +gausser gausser VER 0.15 2.64 0.02 0.41 inf; +gausserai gausser VER 0.15 2.64 0.00 0.07 ind:fut:1s; +gausserait gausser VER 0.15 2.64 0.00 0.07 cnd:pre:3s; +gaussez gausser VER 0.15 2.64 0.01 0.00 imp:pre:2p; +gaussèrent gausser VER 0.15 2.64 0.00 0.14 ind:pas:3p; +gaussé gausser VER m s 0.15 2.64 0.00 0.14 par:pas; +gaussée gausser VER f s 0.15 2.64 0.00 0.07 par:pas; +gava gaver VER 4.19 9.39 0.00 0.07 ind:pas:3s; +gavage gavage NOM m s 0.06 0.54 0.06 0.54 +gavai gaver VER 4.19 9.39 0.00 0.07 ind:pas:1s; +gavaient gaver VER 4.19 9.39 0.03 0.34 ind:imp:3p; +gavais gaver VER 4.19 9.39 0.02 0.07 ind:imp:1s; +gavait gaver VER 4.19 9.39 0.23 0.88 ind:imp:3s; +gavant gaver VER 4.19 9.39 0.05 0.54 par:pre; +gave gaver VER 4.19 9.39 1.22 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gavent gaver VER 4.19 9.39 0.19 0.34 ind:pre:3p; +gaver gaver VER 4.19 9.39 0.50 1.55 inf; +gavera gaver VER 4.19 9.39 0.01 0.07 ind:fut:3s; +gaveraient gaver VER 4.19 9.39 0.01 0.07 cnd:pre:3p; +gaves gaver VER 4.19 9.39 0.11 0.00 ind:pre:2s; +gavez gaver VER 4.19 9.39 0.30 0.07 imp:pre:2p;ind:pre:2p; +gavial gavial NOM m s 0.00 0.07 0.00 0.07 +gaviot gaviot NOM m s 0.00 0.20 0.00 0.20 +gavons gaver VER 4.19 9.39 0.03 0.07 imp:pre:1p;ind:pre:1p;;imp:pre:1p; +gavroche gavroche NOM m s 0.01 0.34 0.01 0.27 +gavroches gavroche NOM m p 0.01 0.34 0.00 0.07 +gavé gaver VER m s 4.19 9.39 0.61 1.76 par:pas; +gavée gaver VER f s 4.19 9.39 0.43 1.08 par:pas; +gavées gaver VER f p 4.19 9.39 0.01 0.34 par:pas; +gavés gaver VER m p 4.19 9.39 0.43 1.08 par:pas; +gay gay ADJ m s 20.33 0.34 18.27 0.34 +gayac gayac NOM m s 0.00 0.07 0.00 0.07 +gays gay NOM m p 7.60 0.14 3.94 0.07 +gaz gaz NOM m 36.33 28.65 36.33 28.65 +gazage gazage NOM m s 0.02 0.07 0.02 0.07 +gazait gazer VER 5.39 1.82 0.02 0.41 ind:imp:3s; +gaze gazer VER 5.39 1.82 3.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gazelle gazelle NOM f s 2.39 3.92 1.98 2.77 +gazelles gazelle NOM f p 2.39 3.92 0.40 1.15 +gazer gazer VER 5.39 1.82 0.68 0.20 inf; +gazera gazer VER 5.39 1.82 0.11 0.00 ind:fut:3s; +gazerait gazer VER 5.39 1.82 0.00 0.07 cnd:pre:3s; +gazes gaze NOM f p 0.93 3.85 0.11 0.34 +gazette gazette NOM f s 0.42 2.43 0.26 1.01 +gazettes gazette NOM f p 0.42 2.43 0.16 1.42 +gazeuse gazeux ADJ f s 2.26 1.89 1.42 1.35 +gazeuses gazeux ADJ f p 2.26 1.89 0.48 0.27 +gazeux gazeux ADJ m 2.26 1.89 0.37 0.27 +gazez gazer VER 5.39 1.82 0.01 0.00 ind:pre:2p; +gazier gazier NOM m s 0.03 1.08 0.02 0.68 +gaziers gazier NOM m p 0.03 1.08 0.01 0.41 +gazinière gazinière NOM f s 0.14 0.14 0.01 0.14 +gazinières gazinière NOM f p 0.14 0.14 0.12 0.00 +gazoduc gazoduc NOM m s 0.22 0.00 0.22 0.00 +gazogène gazogène NOM m s 0.00 1.62 0.00 1.49 +gazogènes gazogène NOM m p 0.00 1.62 0.00 0.14 +gazole gazole NOM m s 0.22 0.00 0.22 0.00 +gazoline gazoline NOM f s 0.01 0.14 0.01 0.14 +gazomètre gazomètre NOM m s 0.02 0.07 0.02 0.07 +gazométrie gazométrie NOM f s 0.02 0.00 0.02 0.00 +gazon gazon NOM m s 3.81 7.77 3.58 6.96 +gazonné gazonné ADJ m s 0.05 0.27 0.00 0.14 +gazonnée gazonné ADJ f s 0.05 0.27 0.05 0.14 +gazons gazon NOM m p 3.81 7.77 0.22 0.81 +gazouilla gazouiller VER 0.79 0.95 0.00 0.07 ind:pas:3s; +gazouillaient gazouiller VER 0.79 0.95 0.12 0.07 ind:imp:3p; +gazouillait gazouiller VER 0.79 0.95 0.03 0.20 ind:imp:3s; +gazouillant gazouiller VER 0.79 0.95 0.20 0.20 par:pre; +gazouillante gazouillant ADJ f s 0.14 0.27 0.00 0.14 +gazouillants gazouillant ADJ m p 0.14 0.27 0.00 0.07 +gazouille gazouiller VER 0.79 0.95 0.13 0.14 imp:pre:2s;ind:pre:3s; +gazouillement gazouillement NOM m s 0.13 0.20 0.12 0.14 +gazouillements gazouillement NOM m p 0.13 0.20 0.01 0.07 +gazouillent gazouiller VER 0.79 0.95 0.17 0.14 ind:pre:3p; +gazouiller gazouiller VER 0.79 0.95 0.11 0.14 inf; +gazouilles gazouiller VER 0.79 0.95 0.03 0.00 ind:pre:2s; +gazouilleurs gazouilleur ADJ m p 0.00 0.07 0.00 0.07 +gazouillis gazouillis NOM m 0.30 1.62 0.30 1.62 +gazpacho gazpacho NOM m s 0.22 0.00 0.22 0.00 +gazé gazé ADJ m s 0.32 0.20 0.17 0.07 +gazée gazer VER f s 5.39 1.82 0.01 0.07 par:pas; +gazées gazer VER f p 5.39 1.82 0.02 0.00 par:pas; +gazéifier gazéifier VER 0.02 0.00 0.01 0.00 inf; +gazéifiée gazéifier VER f s 0.02 0.00 0.01 0.00 par:pas; +gazés gazer VER m p 5.39 1.82 0.75 0.07 par:pas; +geôle geôle NOM f s 0.27 2.36 0.09 1.89 +geôles geôle NOM f p 0.27 2.36 0.18 0.47 +geôlier geôlier NOM m s 1.60 5.00 1.05 2.97 +geôliers geôlier NOM m p 1.60 5.00 0.54 1.55 +geôlière geôlier NOM f s 1.60 5.00 0.01 0.27 +geôlières geôlier NOM f p 1.60 5.00 0.00 0.20 +geai geai NOM m s 0.27 1.62 0.24 0.81 +geais geai NOM m p 0.27 1.62 0.03 0.81 +gecko gecko NOM m s 0.32 0.00 0.26 0.00 +geckos gecko NOM m p 0.32 0.00 0.07 0.00 +geez geez NOM m s 0.13 0.00 0.13 0.00 +geignaient geindre VER 0.59 5.68 0.00 0.07 ind:imp:3p; +geignais geindre VER 0.59 5.68 0.02 0.00 ind:imp:2s; +geignait geindre VER 0.59 5.68 0.02 1.35 ind:imp:3s; +geignant geignant ADJ m s 0.10 0.74 0.10 0.27 +geignante geignant ADJ f s 0.10 0.74 0.00 0.34 +geignantes geignant ADJ f p 0.10 0.74 0.00 0.14 +geignard geignard NOM m s 0.22 0.34 0.16 0.20 +geignarde geignard ADJ f s 0.22 2.43 0.10 1.01 +geignardes geignard ADJ f p 0.22 2.43 0.00 0.47 +geignardises geignardise NOM f p 0.00 0.07 0.00 0.07 +geignards geignard ADJ m p 0.22 2.43 0.04 0.14 +geignement geignement NOM m s 0.11 0.61 0.01 0.27 +geignements geignement NOM m p 0.11 0.61 0.10 0.34 +geignent geindre VER 0.59 5.68 0.04 0.14 ind:pre:3p; +geignez geindre VER 0.59 5.68 0.00 0.14 imp:pre:2p;ind:pre:2p; +geignit geindre VER 0.59 5.68 0.00 0.27 ind:pas:3s; +geindre geindre NOM m s 1.41 1.96 1.41 1.96 +geins geindre VER 0.59 5.68 0.16 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +geint geindre VER m s 0.59 5.68 0.14 1.35 ind:pre:3s;par:pas; +geisha geisha NOM f s 2.60 0.47 2.23 0.34 +geishas geisha NOM f p 2.60 0.47 0.37 0.14 +gel gel NOM m s 4.75 6.69 4.61 6.22 +gela geler VER 23.41 17.03 0.00 0.20 ind:pas:3s; +gelaient geler VER 23.41 17.03 0.02 0.47 ind:imp:3p; +gelais geler VER 23.41 17.03 0.07 0.07 ind:imp:1s;ind:imp:2s; +gelait geler VER 23.41 17.03 0.91 1.69 ind:imp:3s; +gelant geler VER 23.41 17.03 0.17 0.27 par:pre; +geler geler VER 23.41 17.03 3.18 2.09 inf; +gelez geler VER 23.41 17.03 0.19 0.14 imp:pre:2p;ind:pre:2p; +geline geline NOM f s 0.01 0.00 0.01 0.00 +gelinotte gelinotte NOM f s 0.00 0.07 0.00 0.07 +gelons geler VER 23.41 17.03 0.03 0.00 imp:pre:1p;ind:pre:1p; +gelât geler VER 23.41 17.03 0.00 0.07 sub:imp:3s; +gels gel NOM m p 4.75 6.69 0.15 0.47 +gelé geler VER m s 23.41 17.03 5.20 2.43 par:pas; +gelée gelée NOM f s 4.31 7.57 3.92 6.42 +gelées geler VER f p 23.41 17.03 0.71 2.09 par:pas; +gelure gelure NOM f s 0.15 0.34 0.02 0.27 +gelures gelure NOM f p 0.15 0.34 0.13 0.07 +gelés geler VER m p 23.41 17.03 0.96 0.68 par:pas; +gemme gemme NOM f s 0.30 0.88 0.12 0.41 +gemmes gemme NOM f p 0.30 0.88 0.19 0.47 +gemmologie gemmologie NOM f s 0.01 0.00 0.01 0.00 +gencive gencive NOM f s 1.35 4.26 0.18 0.81 +gencives gencive NOM f p 1.35 4.26 1.17 3.45 +gendarme gendarme NOM m s 13.67 43.72 5.53 16.15 +gendarmer gendarmer VER 0.01 0.00 0.01 0.00 inf; +gendarmerie gendarmerie NOM f s 4.46 9.32 4.44 8.78 +gendarmeries gendarmerie NOM f p 4.46 9.32 0.01 0.54 +gendarmes gendarme NOM m p 13.67 43.72 8.14 27.57 +gendelettres gendelettre NOM m p 0.00 0.07 0.00 0.07 +gendre gendre NOM m s 5.71 8.11 5.71 7.50 +gendres gendre NOM m p 5.71 8.11 0.00 0.61 +genet genet NOM m s 0.01 0.00 0.01 0.00 +genevois genevois ADJ m 0.00 0.54 0.00 0.27 +genevoises genevois ADJ f p 0.00 0.54 0.00 0.27 +gengis_khan gengis_khan NOM m s 0.00 0.14 0.00 0.14 +gengiskhanide gengiskhanide ADJ s 0.00 0.07 0.00 0.07 +genièvre genièvre NOM m s 0.63 2.16 0.63 2.16 +genou genou NOM m s 54.24 127.91 11.43 23.92 +genouillère genouillère NOM f s 0.19 0.20 0.01 0.00 +genouillères genouillère NOM f p 0.19 0.20 0.17 0.20 +genoux genou NOM m p 54.24 127.91 42.82 103.99 +genre genre NOM m s 221.51 157.91 219.66 155.20 +genres genre NOM m p 221.51 157.91 1.85 2.70 +genreux genreux ADJ m 0.00 0.07 0.00 0.07 +gens gens NOM p 594.29 409.39 594.29 409.39 +gent gent NOM f s 0.49 1.15 0.40 1.15 +gentamicine gentamicine NOM f s 0.04 0.00 0.04 0.00 +gente gent ADJ f s 1.56 1.08 1.39 0.41 +gentes gent ADJ f p 1.56 1.08 0.18 0.68 +genèse genèse NOM f s 0.15 1.01 0.15 1.01 +gentiane gentiane NOM f s 0.15 0.95 0.14 0.61 +gentianes gentiane NOM f p 0.15 0.95 0.01 0.34 +gentil gentil ADJ m s 192.64 64.86 134.11 37.36 +gentilhomme gentilhomme NOM m s 6.89 3.51 5.43 2.43 +gentilhommière gentilhommier NOM f s 0.01 0.68 0.00 0.41 +gentilhommières gentilhommier NOM f p 0.01 0.68 0.01 0.27 +gentilice gentilice ADJ m s 0.00 0.07 0.00 0.07 +gentille gentil ADJ f s 192.64 64.86 41.44 18.31 +gentilles gentil ADJ f p 192.64 64.86 3.12 2.77 +gentillesse gentillesse NOM f s 7.56 17.50 6.96 15.27 +gentillesses gentillesse NOM f p 7.56 17.50 0.60 2.23 +gentillet gentillet ADJ m s 0.17 0.47 0.04 0.34 +gentillets gentillet ADJ m p 0.17 0.47 0.11 0.07 +gentillette gentillet ADJ f s 0.17 0.47 0.02 0.07 +gentils gentil ADJ m p 192.64 64.86 13.98 6.42 +gentilshommes gentilhomme NOM m p 6.89 3.51 1.47 1.08 +gentiment gentiment ADV 11.32 21.76 11.32 21.76 +gentleman_farmer gentleman_farmer NOM m s 0.14 0.27 0.14 0.20 +gentleman gentleman NOM m s 13.08 4.19 10.31 2.97 +gentleman_farmer gentleman_farmer NOM m p 0.14 0.27 0.00 0.07 +gentlemen gentleman NOM m p 13.08 4.19 2.77 1.22 +gentry gentry NOM f s 0.28 0.00 0.28 0.00 +gents gent NOM f p 0.49 1.15 0.09 0.00 +genêt genêt NOM m s 0.25 5.34 0.23 1.49 +genêtière genêtière NOM f s 0.00 0.07 0.00 0.07 +genêts genêt NOM m p 0.25 5.34 0.01 3.85 +genévrier genévrier NOM m s 0.29 0.88 0.27 0.27 +genévriers genévrier NOM m p 0.29 0.88 0.02 0.61 +gerba gerber VER 8.28 4.66 0.13 0.07 ind:pas:3s; +gerbaient gerber VER 8.28 4.66 0.02 0.00 ind:imp:3p; +gerbais gerber VER 8.28 4.66 0.10 0.14 ind:imp:1s;ind:imp:2s; +gerbait gerber VER 8.28 4.66 0.06 0.20 ind:imp:3s; +gerbant gerber VER 8.28 4.66 0.17 0.14 par:pre; +gerbe gerbe NOM f s 2.06 14.19 1.69 6.49 +gerbent gerber VER 8.28 4.66 0.05 0.07 ind:pre:3p; +gerber gerber VER 8.28 4.66 6.49 2.64 inf; +gerberais gerber VER 8.28 4.66 0.01 0.00 cnd:pre:1s; +gerberas gerbera NOM m p 0.01 0.20 0.01 0.20 +gerbes gerbe NOM f p 2.06 14.19 0.38 7.70 +gerbeuse gerbeur NOM f s 0.04 0.14 0.04 0.07 +gerbeuses gerbeur NOM f p 0.04 0.14 0.00 0.07 +gerbier gerbier NOM m s 0.45 0.14 0.45 0.07 +gerbille gerbille NOM f s 0.29 0.00 0.29 0.00 +gerbière gerbier NOM f s 0.45 0.14 0.00 0.07 +gerboise gerboise NOM f s 0.06 0.14 0.04 0.14 +gerboises gerboise NOM f p 0.06 0.14 0.02 0.00 +gerbèrent gerber VER 8.28 4.66 0.01 0.00 ind:pas:3p; +gerbé gerber VER m s 8.28 4.66 0.82 0.68 par:pas; +gerbée gerber VER f s 8.28 4.66 0.00 0.07 par:pas; +gerbées gerber VER f p 8.28 4.66 0.00 0.07 par:pas; +gerbés gerber VER m p 8.28 4.66 0.00 0.07 par:pas; +gerce gercer VER 0.26 1.76 0.01 0.00 ind:pre:3s; +gercent gercer VER 0.26 1.76 0.00 0.14 ind:pre:3p; +gercer gercer VER 0.26 1.76 0.01 0.07 inf; +gerces gerce NOM f p 0.00 0.07 0.00 0.07 +gercèrent gercer VER 0.26 1.76 0.00 0.07 ind:pas:3p; +gercé gercer VER m s 0.26 1.76 0.01 0.20 par:pas; +gercée gercer VER f s 0.26 1.76 0.00 0.27 par:pas; +gercées gercer VER f p 0.26 1.76 0.23 0.68 par:pas; +gercés gercer VER m p 0.26 1.76 0.00 0.27 par:pas; +gerfaut gerfaut NOM m s 0.03 0.07 0.03 0.00 +gerfauts gerfaut NOM m p 0.03 0.07 0.00 0.07 +germa germer VER 1.02 3.04 0.02 0.14 ind:pas:3s; +germaient germer VER 1.02 3.04 0.00 0.14 ind:imp:3p; +germain germain ADJ m s 1.38 2.23 0.91 0.88 +germaine germain ADJ f s 1.38 2.23 0.25 0.47 +germaines germain ADJ f p 1.38 2.23 0.01 0.27 +germains germain NOM m p 0.45 1.15 0.45 1.15 +germait germer VER 1.02 3.04 0.10 0.27 ind:imp:3s; +germanique germanique ADJ s 1.18 4.73 0.69 3.45 +germaniques germanique ADJ p 1.18 4.73 0.49 1.28 +germanisation germanisation NOM f s 0.01 0.00 0.01 0.00 +germanisme germanisme NOM m s 0.00 0.20 0.00 0.20 +germaniste germaniste NOM s 0.00 0.07 0.00 0.07 +germanité germanité NOM f s 0.02 0.00 0.02 0.00 +germanium germanium NOM m s 0.00 0.07 0.00 0.07 +germano_anglais germano_anglais ADJ f p 0.00 0.07 0.00 0.07 +germano_belge germano_belge ADJ f s 0.01 0.00 0.01 0.00 +germano_irlandais germano_irlandais ADJ m 0.03 0.00 0.03 0.00 +germano_russe germano_russe ADJ m s 0.00 0.27 0.00 0.27 +germano_soviétique germano_soviétique ADJ s 0.00 1.82 0.00 1.82 +germano germano ADV 0.20 0.00 0.20 0.00 +germanophile germanophile NOM s 0.00 0.07 0.00 0.07 +germanophilie germanophilie NOM f s 0.00 0.07 0.00 0.07 +germanophone germanophone ADJ s 0.01 0.00 0.01 0.00 +germant germant ADJ m s 0.00 0.07 0.00 0.07 +germe germe NOM m s 1.98 3.78 0.55 2.03 +germen germen NOM m s 0.00 0.07 0.00 0.07 +germent germer VER 1.02 3.04 0.05 0.20 ind:pre:3p; +germer germer VER 1.02 3.04 0.23 1.01 inf; +germera germer VER 1.02 3.04 0.01 0.00 ind:fut:3s; +germerait germer VER 1.02 3.04 0.10 0.07 cnd:pre:3s; +germes germe NOM m p 1.98 3.78 1.42 1.76 +germinal germinal NOM m s 0.00 0.14 0.00 0.14 +germinale germinal ADJ f s 0.01 0.14 0.01 0.07 +germination germination NOM f s 0.01 0.54 0.00 0.34 +germinations germination NOM f p 0.01 0.54 0.01 0.20 +germé germer VER m s 1.02 3.04 0.39 0.47 par:pas; +germée germer VER f s 1.02 3.04 0.00 0.07 par:pas; +germées germé ADJ f p 0.02 0.27 0.00 0.20 +gerris gerris NOM m 0.03 0.00 0.03 0.00 +gerçait gercer VER 0.26 1.76 0.00 0.07 ind:imp:3s; +gerçures gerçure NOM f p 0.01 0.61 0.01 0.61 +gestapiste gestapiste NOM m s 0.00 0.14 0.00 0.14 +gestapo gestapo NOM f s 0.69 1.69 0.69 1.69 +gestation gestation NOM f s 0.53 1.82 0.53 1.76 +gestations gestation NOM f p 0.53 1.82 0.00 0.07 +geste geste NOM s 40.78 271.08 31.41 172.03 +gestes geste NOM p 40.78 271.08 9.36 99.05 +gesticula gesticuler VER 0.99 6.96 0.00 0.14 ind:pas:3s; +gesticulai gesticuler VER 0.99 6.96 0.00 0.07 ind:pas:1s; +gesticulaient gesticuler VER 0.99 6.96 0.00 0.54 ind:imp:3p; +gesticulais gesticuler VER 0.99 6.96 0.00 0.07 ind:imp:1s; +gesticulait gesticuler VER 0.99 6.96 0.02 1.62 ind:imp:3s; +gesticulant gesticuler VER 0.99 6.96 0.01 1.49 par:pre; +gesticulante gesticulant ADJ f s 0.01 1.42 0.00 0.47 +gesticulantes gesticulant ADJ f p 0.01 1.42 0.00 0.07 +gesticulants gesticulant ADJ m p 0.01 1.42 0.00 0.41 +gesticulateurs gesticulateur NOM m p 0.01 0.07 0.01 0.07 +gesticulation gesticulation NOM f s 0.21 1.69 0.15 0.88 +gesticulations gesticulation NOM f p 0.21 1.69 0.06 0.81 +gesticulatoire gesticulatoire ADJ s 0.00 0.07 0.00 0.07 +gesticule gesticuler VER 0.99 6.96 0.35 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gesticulent gesticuler VER 0.99 6.96 0.00 0.68 ind:pre:3p; +gesticuler gesticuler VER 0.99 6.96 0.58 1.35 inf; +gesticules gesticuler VER 0.99 6.96 0.01 0.00 ind:pre:2s; +gesticulé gesticuler VER m s 0.99 6.96 0.01 0.07 par:pas; +gestion gestion NOM f s 4.23 2.30 4.23 2.30 +gestionnaire gestionnaire NOM s 0.15 0.14 0.08 0.07 +gestionnaires gestionnaire NOM p 0.15 0.14 0.07 0.07 +gestuel gestuel ADJ m s 0.04 0.07 0.02 0.00 +gestuelle gestuel NOM f s 0.07 0.14 0.07 0.14 +geyser geyser NOM m s 0.22 1.01 0.17 0.61 +geysers geyser NOM m p 0.22 1.01 0.05 0.41 +ghanéens ghanéen ADJ m p 0.00 0.07 0.00 0.07 +ghetto ghetto NOM m s 5.42 3.24 5.00 2.77 +ghettos ghetto NOM m p 5.42 3.24 0.41 0.47 +ghât ghât NOM m s 0.00 0.27 0.00 0.27 +gi gi ADV 1.18 0.14 1.18 0.14 +giaour giaour NOM m s 0.10 0.54 0.10 0.34 +giaours giaour NOM m p 0.10 0.54 0.00 0.20 +gibbeuse gibbeux ADJ f s 0.00 0.20 0.00 0.07 +gibbeux gibbeux ADJ m s 0.00 0.20 0.00 0.14 +gibbon gibbon NOM m s 0.19 0.14 0.02 0.07 +gibbons gibbon NOM m p 0.19 0.14 0.16 0.07 +gibbosité gibbosité NOM f s 0.00 0.14 0.00 0.14 +gibecière gibecière NOM f s 0.00 1.55 0.00 1.28 +gibecières gibecière NOM f p 0.00 1.55 0.00 0.27 +gibelet gibelet NOM m s 0.00 0.20 0.00 0.20 +gibelin gibelin NOM m s 0.01 0.14 0.01 0.00 +gibeline gibelin ADJ f s 0.00 0.07 0.00 0.07 +gibelins gibelin NOM m p 0.01 0.14 0.00 0.14 +gibelotte gibelotte NOM f s 0.00 0.47 0.00 0.41 +gibelottes gibelotte NOM f p 0.00 0.47 0.00 0.07 +giberne giberne NOM f s 0.00 0.68 0.00 0.34 +gibernes giberne NOM f p 0.00 0.68 0.00 0.34 +gibet gibet NOM m s 1.43 1.89 1.09 1.35 +gibets gibet NOM m p 1.43 1.89 0.34 0.54 +gibier gibier NOM m s 6.50 11.69 5.79 10.88 +gibiers gibier NOM m p 6.50 11.69 0.70 0.81 +giboulée giboulée NOM f s 0.03 1.28 0.03 0.34 +giboulées giboulée NOM f p 0.03 1.28 0.00 0.95 +giboyeuse giboyeux ADJ f s 0.01 0.68 0.00 0.41 +giboyeuses giboyeux ADJ f p 0.01 0.68 0.00 0.07 +giboyeux giboyeux ADJ m 0.01 0.68 0.01 0.20 +gibus gibus NOM m 0.01 1.01 0.01 1.01 +gicla gicler VER 3.68 7.97 0.00 0.74 ind:pas:3s; +giclaient gicler VER 3.68 7.97 0.00 0.41 ind:imp:3p; +giclais gicler VER 3.68 7.97 0.00 0.14 ind:imp:1s; +giclait gicler VER 3.68 7.97 0.07 1.76 ind:imp:3s; +giclant gicler VER 3.68 7.97 0.00 0.20 par:pre; +gicle gicler VER 3.68 7.97 1.69 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +giclement giclement NOM m s 0.00 0.14 0.00 0.07 +giclements giclement NOM m p 0.00 0.14 0.00 0.07 +giclent gicler VER 3.68 7.97 0.04 0.20 ind:pre:3p; +gicler gicler VER 3.68 7.97 0.76 2.16 inf; +giclera gicler VER 3.68 7.97 0.02 0.00 ind:fut:3s; +gicleront gicler VER 3.68 7.97 0.01 0.00 ind:fut:3p; +gicles gicler VER 3.68 7.97 0.45 0.00 ind:pre:2s; +gicleur gicleur NOM m s 0.45 0.07 0.45 0.07 +giclez gicler VER 3.68 7.97 0.01 0.00 imp:pre:2p; +giclèrent gicler VER 3.68 7.97 0.00 0.07 ind:pas:3p; +giclé gicler VER m s 3.68 7.97 0.62 0.47 par:pas; +giclée giclée NOM f s 0.38 3.65 0.35 2.77 +giclées giclée NOM f p 0.38 3.65 0.02 0.88 +gidien gidien ADJ m s 0.00 0.20 0.00 0.07 +gidienne gidien ADJ f s 0.00 0.20 0.00 0.07 +gidiennes gidien ADJ f p 0.00 0.20 0.00 0.07 +gidouille gidouille NOM f s 0.00 0.20 0.00 0.20 +gifla gifler VER 6.77 15.88 0.11 2.70 ind:pas:3s; +giflai gifler VER 6.77 15.88 0.00 0.07 ind:pas:1s; +giflaient gifler VER 6.77 15.88 0.01 0.41 ind:imp:3p; +giflais gifler VER 6.77 15.88 0.16 0.07 ind:imp:1s; +giflait gifler VER 6.77 15.88 0.07 1.35 ind:imp:3s; +giflant gifler VER 6.77 15.88 0.01 0.68 par:pre; +gifle gifle NOM f s 4.47 16.01 3.60 9.86 +giflent gifler VER 6.77 15.88 0.00 0.41 ind:pre:3p; +gifler gifler VER 6.77 15.88 1.96 4.05 inf; +giflera gifler VER 6.77 15.88 0.03 0.00 ind:fut:3s; +giflerai gifler VER 6.77 15.88 0.01 0.00 ind:fut:1s; +giflerais gifler VER 6.77 15.88 0.10 0.14 cnd:pre:1s;cnd:pre:2s; +giflerait gifler VER 6.77 15.88 0.07 0.00 cnd:pre:3s; +gifles gifle NOM f p 4.47 16.01 0.88 6.15 +gifleuse gifleur NOM f s 0.01 0.07 0.01 0.07 +giflez gifler VER 6.77 15.88 0.14 0.00 imp:pre:2p;ind:pre:2p; +giflât gifler VER 6.77 15.88 0.00 0.20 sub:imp:3s; +giflé gifler VER m s 6.77 15.88 1.63 2.36 par:pas; +giflée gifler VER f s 6.77 15.88 0.84 1.08 par:pas; +giflées gifler VER f p 6.77 15.88 0.01 0.14 par:pas; +giflés gifler VER m p 6.77 15.88 0.00 0.41 par:pas; +gifts gift NOM m p 0.02 0.00 0.02 0.00 +gig gig NOM m s 0.15 0.14 0.15 0.14 +giga giga ADJ s 0.23 0.14 0.19 0.14 +gigabits gigabit NOM m p 0.05 0.00 0.05 0.00 +gigahertz gigahertz NOM m 0.07 0.00 0.07 0.00 +gigantesque gigantesque ADJ s 4.59 21.69 3.87 15.81 +gigantesques gigantesque ADJ p 4.59 21.69 0.72 5.88 +gigantisme gigantisme NOM m s 0.20 0.34 0.20 0.27 +gigantismes gigantisme NOM m p 0.20 0.34 0.00 0.07 +gigantomachie gigantomachie NOM f s 0.00 0.14 0.00 0.14 +gigaoctets gigaoctet NOM m p 0.01 0.00 0.01 0.00 +gigas giga ADJ p 0.23 0.14 0.04 0.00 +gigogne gigogne ADJ f s 0.03 0.81 0.01 0.54 +gigognes gigogne ADJ p 0.03 0.81 0.02 0.27 +gigolette gigolette NOM f s 0.14 0.14 0.14 0.14 +gigolo gigolo NOM m s 1.23 2.30 1.01 1.69 +gigolos gigolo NOM m p 1.23 2.30 0.22 0.61 +gigolpince gigolpince NOM m s 0.01 1.01 0.01 0.81 +gigolpinces gigolpince NOM m p 0.01 1.01 0.00 0.20 +gigot gigot NOM m s 1.46 3.92 1.41 3.18 +gigota gigoter VER 1.85 3.31 0.00 0.07 ind:pas:3s; +gigotaient gigoter VER 1.85 3.31 0.01 0.47 ind:imp:3p; +gigotait gigoter VER 1.85 3.31 0.05 0.68 ind:imp:3s; +gigotant gigoter VER 1.85 3.31 0.03 0.34 par:pre; +gigote gigoter VER 1.85 3.31 0.43 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gigotements gigotement NOM m p 0.00 0.34 0.00 0.34 +gigotent gigoter VER 1.85 3.31 0.04 0.47 ind:pre:3p; +gigoter gigoter VER 1.85 3.31 1.07 0.88 inf; +gigotes gigoter VER 1.85 3.31 0.04 0.00 ind:pre:2s; +gigotez gigoter VER 1.85 3.31 0.17 0.00 imp:pre:2p;ind:pre:2p; +gigots gigot NOM m p 1.46 3.92 0.05 0.74 +gigoté gigoter VER m s 1.85 3.31 0.01 0.00 par:pas; +gigue gigue NOM f s 0.32 1.22 0.32 1.22 +gilbert gilbert NOM m s 0.00 0.20 0.00 0.20 +gilet gilet NOM m s 6.06 15.14 5.13 13.72 +giletières giletier NOM f p 0.00 0.07 0.00 0.07 +gilets gilet NOM m p 6.06 15.14 0.93 1.42 +gilles gille NOM m p 2.43 0.41 2.43 0.41 +gimmick gimmick NOM m s 0.01 0.14 0.01 0.07 +gimmicks gimmick NOM m p 0.01 0.14 0.00 0.07 +gin_fizz gin_fizz NOM m 0.04 1.01 0.04 1.01 +gin_rami gin_rami NOM m s 0.04 0.07 0.04 0.07 +gin_rummy gin_rummy NOM m s 0.05 0.14 0.05 0.14 +gin gin NOM m s 6.24 4.39 6.15 4.32 +gineste gineste NOM m s 0.01 0.41 0.01 0.41 +gingembre gingembre NOM m s 1.50 0.88 1.50 0.88 +gingin gingin NOM m s 0.00 0.14 0.00 0.14 +gingivite gingivite NOM f s 0.18 0.00 0.18 0.00 +ginkgo ginkgo NOM m s 0.06 0.00 0.06 0.00 +gins gin NOM m p 6.24 4.39 0.09 0.07 +ginseng ginseng NOM m s 0.49 0.20 0.49 0.20 +giocoso giocoso ADJ m s 0.00 0.07 0.00 0.07 +gipsy gipsy NOM s 0.03 0.00 0.03 0.00 +girafe girafe NOM f s 3.50 3.18 2.71 1.89 +girafeau girafeau NOM m s 0.01 0.00 0.01 0.00 +girafes girafe NOM f p 3.50 3.18 0.79 1.28 +girafon girafon NOM m s 0.01 0.00 0.01 0.00 +girandes girande NOM f p 0.00 0.07 0.00 0.07 +girandole girandole NOM f s 0.00 0.74 0.00 0.07 +girandoles girandole NOM f p 0.00 0.74 0.00 0.68 +giration giration NOM f s 0.01 0.68 0.00 0.61 +girations giration NOM f p 0.01 0.68 0.01 0.07 +giratoire giratoire ADJ f s 0.02 0.07 0.02 0.07 +giraudistes giraudiste NOM p 0.00 0.07 0.00 0.07 +gire gire NOM m s 0.00 0.14 0.00 0.07 +girelles girel NOM f p 0.00 0.07 0.00 0.07 +girer girer VER 0.00 0.07 0.00 0.07 inf; +gires gire NOM m p 0.00 0.14 0.00 0.07 +girie girie NOM f s 0.00 0.27 0.00 0.07 +giries girie NOM f p 0.00 0.27 0.00 0.20 +girl_scout girl_scout NOM f s 0.06 0.14 0.06 0.14 +girl_friend girl_friend NOM f s 0.14 0.00 0.14 0.00 +girl girl NOM f s 7.47 9.59 4.41 1.89 +girls girl NOM f p 7.47 9.59 3.06 7.70 +girofle girofle NOM m s 0.83 0.81 0.81 0.74 +girofles girofle NOM m p 0.83 0.81 0.01 0.07 +giroflier giroflier NOM m s 0.00 0.07 0.00 0.07 +giroflée giroflée NOM f s 0.24 0.88 0.22 0.07 +giroflées giroflée NOM f p 0.24 0.88 0.02 0.81 +girolle girolle NOM f s 0.29 0.88 0.01 0.07 +girolles girolle NOM f p 0.29 0.88 0.28 0.81 +giron giron NOM m s 0.39 2.03 0.39 2.03 +girond girond ADJ m s 0.17 1.96 0.01 0.07 +gironde girond ADJ f s 0.17 1.96 0.15 1.35 +girondes girond ADJ f p 0.17 1.96 0.00 0.47 +girondin girondin ADJ m s 0.00 0.54 0.00 0.14 +girondine girondin ADJ f s 0.00 0.54 0.00 0.07 +girondines girondin ADJ f p 0.00 0.54 0.00 0.07 +girondins girondin ADJ m p 0.00 0.54 0.00 0.27 +gironds girond ADJ m p 0.17 1.96 0.01 0.07 +girouettait girouetter VER 0.00 0.14 0.00 0.07 ind:imp:3s; +girouettant girouetter VER 0.00 0.14 0.00 0.07 par:pre; +girouette girouette NOM f s 0.66 2.36 0.47 1.76 +girouettes girouette NOM f p 0.66 2.36 0.19 0.61 +gis gésir VER 4.77 15.68 0.26 0.00 ind:pre:1s;ind:pre:2s; +gisaient gésir VER 4.77 15.68 0.11 2.50 ind:imp:3p; +gisais gésir VER 4.77 15.68 0.49 0.27 ind:imp:1s;ind:imp:2s; +gisait gésir VER 4.77 15.68 1.20 7.30 ind:imp:3s; +gisant gésir VER 4.77 15.68 0.33 1.35 par:pre; +gisante gisant ADJ f s 0.33 1.89 0.14 0.41 +gisantes gisant ADJ f p 0.33 1.89 0.00 0.14 +gisants gisant NOM m p 0.02 2.57 0.00 1.22 +gisement gisement NOM m s 1.25 0.95 0.73 0.61 +gisements gisement NOM m p 1.25 0.95 0.53 0.34 +gisent gésir VER 4.77 15.68 0.22 1.42 ind:pre:3p; +gisions gésir VER 4.77 15.68 0.00 0.14 ind:imp:1p; +gisquette gisquette NOM f s 0.00 1.42 0.00 0.68 +gisquettes gisquette NOM f p 0.00 1.42 0.00 0.74 +gitan gitan NOM m s 7.50 8.72 1.60 1.89 +gitane gitan NOM f s 7.50 8.72 2.32 3.11 +gitanes gitan NOM f p 7.50 8.72 0.18 1.76 +gitans gitan NOM m p 7.50 8.72 3.39 1.96 +giton giton NOM m s 1.25 0.68 1.23 0.47 +gitons giton NOM m p 1.25 0.68 0.02 0.20 +givrage givrage NOM m s 0.01 0.00 0.01 0.00 +givrait givrer VER 1.59 1.35 0.01 0.20 ind:imp:3s; +givrante givrant ADJ f s 0.01 0.07 0.01 0.07 +givre givre NOM m s 0.33 5.14 0.32 5.07 +givrer givrer VER 1.59 1.35 0.01 0.14 inf; +givres givre NOM m p 0.33 5.14 0.01 0.07 +givré givré ADJ m s 1.52 2.23 1.00 0.61 +givrée givrer VER f s 1.59 1.35 0.67 0.34 par:pas; +givrées givré ADJ f p 1.52 2.23 0.04 0.14 +givrés givré ADJ m p 1.52 2.23 0.22 0.47 +gla_gla gla_gla ADJ m s 0.00 0.14 0.00 0.14 +glaïeul glaïeul NOM m s 0.38 1.89 0.01 0.00 +glaïeuls glaïeul NOM m p 0.38 1.89 0.36 1.89 +glabelle glabelle NOM f s 0.01 0.00 0.01 0.00 +glabre glabre ADJ s 0.06 2.64 0.05 1.69 +glabres glabre ADJ p 0.06 2.64 0.01 0.95 +glace glace NOM f s 66.82 91.01 58.09 76.01 +glacent glacer VER 7.21 25.74 0.03 0.81 ind:pre:3p; +glacer glacer VER 7.21 25.74 0.30 0.95 inf; +glacera glacer VER 7.21 25.74 0.04 0.00 ind:fut:3s; +glaceront glacer VER 7.21 25.74 0.00 0.07 ind:fut:3p; +glaces glace NOM f p 66.82 91.01 8.73 15.00 +glacez glacer VER 7.21 25.74 0.01 0.00 ind:pre:2p; +glaciaire glaciaire ADJ s 0.58 0.34 0.50 0.14 +glaciaires glaciaire ADJ p 0.58 0.34 0.09 0.20 +glacial glacial ADJ m s 3.81 13.92 2.44 8.18 +glaciale glacial ADJ f s 3.81 13.92 1.30 4.46 +glacialement glacialement ADV 0.10 0.07 0.10 0.07 +glaciales glacial ADJ f p 3.81 13.92 0.07 1.01 +glacials glacial ADJ m p 3.81 13.92 0.00 0.14 +glaciation glaciation NOM f s 0.03 0.34 0.03 0.27 +glaciations glaciation NOM f p 0.03 0.34 0.00 0.07 +glaciaux glacial ADJ m p 3.81 13.92 0.00 0.14 +glacier glacier NOM m s 5.00 3.72 4.34 2.16 +glaciers glacier NOM m p 5.00 3.72 0.67 1.55 +glaciologue glaciologue NOM s 0.14 0.00 0.14 0.00 +glacis glacis NOM m 0.02 3.58 0.02 3.58 +glacière glacière NOM f s 1.60 2.91 1.44 2.64 +glacières glacière NOM f p 1.60 2.91 0.17 0.27 +glacèrent glacer VER 7.21 25.74 0.14 0.20 ind:pas:3p; +glacé glacé ADJ m s 11.42 40.27 5.28 17.50 +glacée glacé ADJ f s 11.42 40.27 4.67 13.85 +glacées glacé ADJ f p 11.42 40.27 0.64 4.59 +glacés glacé ADJ m p 11.42 40.27 0.84 4.32 +gladiateur gladiateur NOM m s 2.84 1.62 1.38 0.74 +gladiateurs gladiateur NOM m p 2.84 1.62 1.46 0.88 +gladiatrices gladiatrice NOM f p 0.04 0.00 0.04 0.00 +glaglate glaglater VER 0.00 0.54 0.00 0.47 ind:pre:1s;ind:pre:3s; +glaglater glaglater VER 0.00 0.54 0.00 0.07 inf; +glaire glaire NOM f s 0.48 1.35 0.22 0.34 +glaires glaire NOM f p 0.48 1.35 0.26 1.01 +glaireuse glaireux ADJ f s 0.02 1.42 0.00 0.41 +glaireuses glaireux ADJ f p 0.02 1.42 0.00 0.20 +glaireux glaireux ADJ m 0.02 1.42 0.02 0.81 +glaise glaise NOM f s 1.71 8.85 1.71 8.72 +glaises glaise NOM f p 1.71 8.85 0.00 0.14 +glaiseuse glaiseux ADJ f s 0.00 1.15 0.00 0.14 +glaiseuses glaiseux ADJ f p 0.00 1.15 0.00 0.07 +glaiseux glaiseux ADJ m 0.00 1.15 0.00 0.95 +glaive glaive NOM m s 1.95 4.39 1.71 3.85 +glaives glaive NOM m p 1.95 4.39 0.24 0.54 +glamour glamour NOM m s 1.49 0.07 1.49 0.07 +glana glaner VER 1.20 4.93 0.00 0.14 ind:pas:3s; +glanage glanage NOM m s 0.18 0.00 0.18 0.00 +glanaient glaner VER 1.20 4.93 0.00 0.14 ind:imp:3p; +glanais glaner VER 1.20 4.93 0.00 0.07 ind:imp:1s; +glanait glaner VER 1.20 4.93 0.02 0.68 ind:imp:3s; +glanant glaner VER 1.20 4.93 0.14 0.41 par:pre; +gland gland NOM m s 2.95 5.27 2.14 3.04 +glandage glandage NOM m s 0.03 0.00 0.03 0.00 +glandais glander VER 2.88 2.57 0.05 0.07 ind:imp:1s; +glandait glander VER 2.88 2.57 0.03 0.14 ind:imp:3s; +glande glander VER 2.88 2.57 0.86 0.88 ind:pre:1s;ind:pre:3s; +glandent glander VER 2.88 2.57 0.04 0.20 ind:pre:3p; +glander glander VER 2.88 2.57 1.37 1.15 inf; +glandes glande NOM f p 2.20 4.66 1.46 4.32 +glandeur glandeur NOM m s 0.48 0.41 0.33 0.14 +glandeurs glandeur NOM m p 0.48 0.41 0.15 0.27 +glandez glander VER 2.88 2.57 0.08 0.07 ind:pre:2p; +glandiez glander VER 2.88 2.57 0.02 0.00 ind:imp:2p; +glandilleuse glandilleuse ADJ m s 0.00 0.68 0.00 0.34 +glandilleuses glandilleuse ADJ m p 0.00 0.68 0.00 0.34 +glandilleux glandilleux ADJ m 0.00 1.22 0.00 1.22 +glandons glander VER 2.88 2.57 0.01 0.00 ind:pre:1p; +glandouillant glandouiller VER 0.13 0.74 0.01 0.00 par:pre; +glandouille glandouiller VER 0.13 0.74 0.01 0.27 ind:pre:1s;ind:pre:3s; +glandouiller glandouiller VER 0.13 0.74 0.10 0.41 inf; +glandouilleur glandouilleur NOM m s 0.00 0.07 0.00 0.07 +glandouillez glandouiller VER 0.13 0.74 0.01 0.00 ind:pre:2p; +glandouillé glandouiller VER m s 0.13 0.74 0.00 0.07 par:pas; +glands gland NOM m p 2.95 5.27 0.81 2.23 +glandé glander VER m s 2.88 2.57 0.21 0.07 par:pas; +glandu glandu NOM s 0.57 0.00 0.31 0.00 +glandulaire glandulaire ADJ s 0.19 0.74 0.06 0.41 +glandulaires glandulaire ADJ p 0.19 0.74 0.12 0.34 +glanduleuse glanduleux ADJ f s 0.00 0.07 0.00 0.07 +glandus glandu NOM p 0.57 0.00 0.26 0.00 +glane glaner VER 1.20 4.93 0.25 0.20 ind:pre:1s;ind:pre:3s; +glanent glaner VER 1.20 4.93 0.02 0.14 ind:pre:3p; +glaner glaner VER 1.20 4.93 0.62 1.69 inf; +glanes glane NOM f p 0.00 0.14 0.00 0.07 +glaneur glaneur NOM m s 0.18 0.00 0.06 0.00 +glaneuse glaneur NOM f s 0.18 0.00 0.13 0.00 +glanez glaner VER 1.20 4.93 0.01 0.00 ind:pre:2p; +glané glaner VER m s 1.20 4.93 0.09 0.27 par:pas; +glanée glaner VER f s 1.20 4.93 0.00 0.27 par:pas; +glanées glaner VER f p 1.20 4.93 0.01 0.47 par:pas; +glanure glanure NOM f s 0.00 0.07 0.00 0.07 +glanés glaner VER m p 1.20 4.93 0.05 0.47 par:pas; +glapi glapir VER m s 0.23 6.76 0.00 0.41 par:pas; +glapie glapir VER f s 0.23 6.76 0.00 0.07 par:pas; +glapir glapir VER 0.23 6.76 0.04 1.22 inf; +glapirent glapir VER 0.23 6.76 0.00 0.14 ind:pas:3p; +glapissaient glapir VER 0.23 6.76 0.14 0.20 ind:imp:3p; +glapissait glapir VER 0.23 6.76 0.00 0.81 ind:imp:3s; +glapissant glapir VER 0.23 6.76 0.01 0.61 par:pre; +glapissante glapissant ADJ f s 0.01 0.61 0.00 0.34 +glapissantes glapissant ADJ f p 0.01 0.61 0.00 0.07 +glapissants glapissant ADJ m p 0.01 0.61 0.01 0.07 +glapissement glapissement NOM m s 0.02 1.76 0.02 0.81 +glapissements glapissement NOM m p 0.02 1.76 0.00 0.95 +glapissent glapir VER 0.23 6.76 0.00 0.14 ind:pre:3p; +glapisseurs glapisseur ADJ m p 0.01 0.00 0.01 0.00 +glapissions glapir VER 0.23 6.76 0.00 0.07 ind:imp:1p; +glapit glapir VER 0.23 6.76 0.04 3.11 ind:pre:3s;ind:pas:3s; +glaréole glaréole NOM f s 0.04 0.00 0.04 0.00 +glas glas NOM m 1.28 4.05 1.28 4.05 +glasnost glasnost NOM f s 0.03 0.00 0.03 0.00 +glass glass NOM m 1.23 1.28 1.05 1.28 +glasses glass NOM m p 1.23 1.28 0.17 0.00 +glaça glacer VER 7.21 25.74 0.01 1.49 ind:pas:3s; +glaçage glaçage NOM m s 0.77 0.07 0.75 0.07 +glaçages glaçage NOM m p 0.77 0.07 0.01 0.00 +glaçaient glacer VER 7.21 25.74 0.01 0.47 ind:imp:3p; +glaçais glacer VER 7.21 25.74 0.00 0.07 ind:imp:1s; +glaçait glacer VER 7.21 25.74 0.06 2.97 ind:imp:3s; +glaçant glacer VER 7.21 25.74 0.04 0.07 par:pre; +glaçante glaçant ADJ f s 0.04 0.27 0.01 0.27 +glaçon glaçon NOM m s 7.40 5.47 1.55 0.95 +glaçons glaçon NOM m p 7.40 5.47 5.85 4.53 +glaçure glaçure NOM f s 0.00 0.14 0.00 0.07 +glaçures glaçure NOM f p 0.00 0.14 0.00 0.07 +glaucome glaucome NOM m s 0.27 0.20 0.27 0.20 +glauque glauque ADJ s 1.40 9.32 1.12 6.82 +glauquement glauquement ADV 0.00 0.07 0.00 0.07 +glauques glauque ADJ p 1.40 9.32 0.28 2.50 +glaviot glaviot NOM m s 0.13 1.35 0.11 0.74 +glaviotaient glavioter VER 0.02 1.22 0.00 0.07 ind:imp:3p; +glaviotait glavioter VER 0.02 1.22 0.00 0.14 ind:imp:3s; +glaviotant glavioter VER 0.02 1.22 0.00 0.14 par:pre; +glaviote glavioter VER 0.02 1.22 0.01 0.34 ind:pre:1s;ind:pre:3s; +glavioter glavioter VER 0.02 1.22 0.01 0.54 inf; +glavioteurs glavioteur NOM m p 0.00 0.07 0.00 0.07 +glaviots glaviot NOM m p 0.13 1.35 0.02 0.61 +glaviotte glaviotter VER 0.00 0.07 0.00 0.07 ind:pre:3s; +glide glide NOM m s 0.07 0.00 0.07 0.00 +glioblastome glioblastome NOM m s 0.04 0.00 0.04 0.00 +gliome gliome NOM m s 0.05 0.00 0.05 0.00 +glissa glisser VER 34.74 229.32 0.78 30.61 ind:pas:3s; +glissade glissade NOM f s 0.64 4.26 0.57 2.50 +glissades glissade NOM f p 0.64 4.26 0.07 1.76 +glissai glisser VER 34.74 229.32 0.05 2.43 ind:pas:1s; +glissaient glisser VER 34.74 229.32 0.35 10.14 ind:imp:3p; +glissais glisser VER 34.74 229.32 0.09 2.30 ind:imp:1s;ind:imp:2s; +glissait glisser VER 34.74 229.32 1.00 27.97 ind:imp:3s; +glissandi glissando NOM m p 0.01 0.27 0.00 0.07 +glissando glissando NOM m s 0.01 0.27 0.01 0.14 +glissandos glissando NOM m p 0.01 0.27 0.00 0.07 +glissant glissant ADJ m s 3.54 8.24 1.76 3.18 +glissante glissant ADJ f s 3.54 8.24 1.34 2.64 +glissantes glissant ADJ f p 3.54 8.24 0.35 1.49 +glissants glissant ADJ m p 3.54 8.24 0.09 0.95 +glisse_la_moi glisse_la_moi NOM f s 0.10 0.00 0.10 0.00 +glisse glisser VER 34.74 229.32 8.99 31.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +glissement glissement NOM m s 0.48 7.50 0.35 6.62 +glissements glissement NOM m p 0.48 7.50 0.13 0.88 +glissent glisser VER 34.74 229.32 1.22 8.65 ind:pre:3p; +glisser glisser VER 34.74 229.32 9.01 61.62 ind:pre:2p;inf; +glissera glisser VER 34.74 229.32 0.17 0.68 ind:fut:3s; +glisserai glisser VER 34.74 229.32 0.41 0.27 ind:fut:1s; +glisseraient glisser VER 34.74 229.32 0.01 0.41 cnd:pre:3p; +glisserais glisser VER 34.74 229.32 0.04 0.54 cnd:pre:1s;cnd:pre:2s; +glisserait glisser VER 34.74 229.32 0.15 0.95 cnd:pre:3s; +glisserez glisser VER 34.74 229.32 0.12 0.00 ind:fut:2p; +glisseriez glisser VER 34.74 229.32 0.02 0.07 cnd:pre:2p; +glisserons glisser VER 34.74 229.32 0.01 0.07 ind:fut:1p; +glisseront glisser VER 34.74 229.32 0.05 0.27 ind:fut:3p; +glisses glisser VER 34.74 229.32 0.72 0.41 ind:pre:2s; +glissez glisser VER 34.74 229.32 1.08 0.27 imp:pre:2p;ind:pre:2p; +glissions glisser VER 34.74 229.32 0.03 1.01 ind:imp:1p; +glissière glissière NOM f s 0.24 1.96 0.22 1.69 +glissières glissière NOM f p 0.24 1.96 0.03 0.27 +glissoire glissoire NOM f s 0.04 0.00 0.04 0.00 +glissâmes glisser VER 34.74 229.32 0.00 0.20 ind:pas:1p; +glissons glisser VER 34.74 229.32 0.47 0.54 imp:pre:1p;ind:pre:1p; +glissât glisser VER 34.74 229.32 0.00 0.34 sub:imp:3s; +glissèrent glisser VER 34.74 229.32 0.01 2.50 ind:pas:3p; +glissé glisser VER m s 34.74 229.32 8.77 22.97 par:pas; +glissée glisser VER f s 34.74 229.32 0.39 5.20 par:pas; +glissées glisser VER f p 34.74 229.32 0.04 1.01 par:pas; +glissés glisser VER m p 34.74 229.32 0.07 2.43 par:pas; +global global ADJ m s 3.59 2.57 2.38 1.15 +globale global ADJ f s 3.59 2.57 1.19 1.42 +globalement globalement ADV 0.68 0.61 0.68 0.61 +globalisation globalisation NOM f s 0.19 0.00 0.19 0.00 +globalisé globaliser VER m s 0.01 0.00 0.01 0.00 par:pas; +globalité globalité NOM f s 0.04 0.07 0.04 0.07 +globaux global ADJ m p 3.59 2.57 0.02 0.00 +globe_trotter globe_trotter NOM m s 0.22 0.41 0.20 0.27 +globe_trotter globe_trotter NOM m p 0.22 0.41 0.02 0.14 +globe globe NOM m s 4.21 11.89 3.17 8.58 +globes globe NOM m p 4.21 11.89 1.04 3.31 +globulaire globulaire ADJ s 0.09 0.34 0.04 0.14 +globulaires globulaire ADJ p 0.09 0.34 0.04 0.20 +globule globule NOM m s 3.25 1.28 0.38 0.27 +globules globule NOM m p 3.25 1.28 2.88 1.01 +globuleuse globuleux ADJ f s 0.27 4.80 0.00 0.14 +globuleux globuleux ADJ m 0.27 4.80 0.27 4.66 +globuline globuline NOM f s 0.01 0.00 0.01 0.00 +glockenspiel glockenspiel NOM m s 0.03 0.07 0.03 0.07 +gloire gloire NOM s 35.27 50.88 34.78 48.51 +gloires gloire NOM f p 35.27 50.88 0.48 2.36 +glomérule glomérule NOM m s 0.00 0.07 0.00 0.07 +glop glop NOM f s 0.01 0.27 0.01 0.27 +gloria gloria NOM m s 2.66 0.81 2.66 0.81 +gloriette gloriette NOM f s 0.10 0.34 0.10 0.27 +gloriettes gloriette NOM f p 0.10 0.34 0.00 0.07 +glorieuse glorieux ADJ f s 7.41 18.31 2.44 5.54 +glorieusement glorieusement ADV 0.34 1.82 0.34 1.82 +glorieuses glorieux ADJ f p 7.41 18.31 0.28 1.96 +glorieux glorieux ADJ m 7.41 18.31 4.68 10.81 +glorifia glorifier VER 1.82 3.65 0.01 0.14 ind:pas:3s; +glorifiaient glorifier VER 1.82 3.65 0.01 0.27 ind:imp:3p; +glorifiait glorifier VER 1.82 3.65 0.12 0.27 ind:imp:3s; +glorifiant glorifier VER 1.82 3.65 0.02 0.20 par:pre; +glorification glorification NOM f s 0.22 0.20 0.22 0.20 +glorifie glorifier VER 1.82 3.65 0.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +glorifient glorifier VER 1.82 3.65 0.22 0.20 ind:pre:3p; +glorifier glorifier VER 1.82 3.65 0.56 1.22 inf; +glorifiez glorifier VER 1.82 3.65 0.08 0.07 imp:pre:2p;ind:pre:2p; +glorifions glorifier VER 1.82 3.65 0.05 0.07 imp:pre:1p;ind:pre:1p; +glorifié glorifier VER m s 1.82 3.65 0.21 0.54 par:pas; +glorifiées glorifier VER f p 1.82 3.65 0.00 0.07 par:pas; +glorifiés glorifier VER m p 1.82 3.65 0.00 0.14 par:pas; +gloriole gloriole NOM f s 0.03 1.69 0.03 1.69 +glosaient gloser VER 0.00 0.61 0.00 0.07 ind:imp:3p; +glose glose NOM f s 0.01 0.61 0.01 0.20 +gloser gloser VER 0.00 0.61 0.00 0.27 inf; +gloses glose NOM f p 0.01 0.61 0.00 0.41 +glossaire glossaire NOM m s 0.04 0.07 0.04 0.07 +glossateurs glossateur NOM m p 0.00 0.07 0.00 0.07 +glossématique glossématique NOM f s 0.00 0.07 0.00 0.07 +glosé gloser VER m s 0.00 0.61 0.00 0.07 par:pas; +glosées gloser VER f p 0.00 0.61 0.00 0.07 par:pas; +glotte glotte NOM f s 0.12 2.03 0.12 2.03 +glottique glottique ADJ m s 0.00 0.07 0.00 0.07 +glouglou glouglou NOM m s 0.24 1.22 0.23 0.61 +glouglous glouglou NOM m p 0.24 1.22 0.01 0.61 +glougloutait glouglouter VER 0.00 0.61 0.00 0.14 ind:imp:3s; +glougloutant glouglouter VER 0.00 0.61 0.00 0.14 par:pre; +glougloute glouglouter VER 0.00 0.61 0.00 0.27 ind:pre:3s; +glougloutement glougloutement NOM m s 0.01 0.14 0.01 0.14 +glouglouter glouglouter VER 0.00 0.61 0.00 0.07 inf; +gloussa glousser VER 0.98 5.61 0.00 1.08 ind:pas:3s; +gloussaient glousser VER 0.98 5.61 0.00 0.41 ind:imp:3p; +gloussait glousser VER 0.98 5.61 0.03 0.88 ind:imp:3s; +gloussant glousser VER 0.98 5.61 0.04 0.61 par:pre; +gloussante gloussant ADJ f s 0.01 0.54 0.01 0.14 +gloussantes gloussant ADJ f p 0.01 0.54 0.00 0.14 +gloussants gloussant ADJ m p 0.01 0.54 0.00 0.07 +glousse glousser VER 0.98 5.61 0.38 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gloussement gloussement NOM m s 0.26 3.72 0.21 1.22 +gloussements gloussement NOM m p 0.26 3.72 0.05 2.50 +gloussent glousser VER 0.98 5.61 0.03 0.07 ind:pre:3p; +glousser glousser VER 0.98 5.61 0.43 1.42 inf; +glousserait glousser VER 0.98 5.61 0.00 0.07 cnd:pre:3s; +gloussez glousser VER 0.98 5.61 0.02 0.00 ind:pre:2p; +gloussèrent glousser VER 0.98 5.61 0.00 0.07 ind:pas:3p; +gloussé glousser VER m s 0.98 5.61 0.05 0.34 par:pas; +glouton glouton NOM m s 1.10 0.54 0.78 0.34 +gloutonnant gloutonner VER 0.00 0.14 0.00 0.14 par:pre; +gloutonne glouton ADJ f s 0.69 1.69 0.22 0.74 +gloutonnement gloutonnement ADV 0.00 0.54 0.00 0.54 +gloutonnerie gloutonnerie NOM f s 0.27 0.74 0.27 0.74 +gloutons glouton NOM m p 1.10 0.54 0.32 0.07 +gloxinias gloxinia NOM m p 0.00 0.07 0.00 0.07 +glèbe glèbe NOM f s 0.51 0.95 0.51 0.88 +glèbes glèbe NOM f p 0.51 0.95 0.00 0.07 +glène glène NOM f s 0.00 0.07 0.00 0.07 +glu glu NOM f s 0.56 2.57 0.56 2.43 +gluant gluant ADJ m s 1.96 15.20 1.23 4.73 +gluante gluant ADJ f s 1.96 15.20 0.40 5.81 +gluantes gluant ADJ f p 1.96 15.20 0.07 2.09 +gluants gluant ADJ m p 1.96 15.20 0.26 2.57 +glucagon glucagon NOM m s 0.04 0.00 0.04 0.00 +glucide glucide NOM m s 0.51 0.20 0.00 0.07 +glucides glucide NOM m p 0.51 0.20 0.51 0.14 +gluconique gluconique ADJ s 0.01 0.00 0.01 0.00 +glucose glucose NOM m s 2.08 0.20 2.08 0.20 +glue gluer VER 0.42 1.22 0.35 0.14 ind:pre:3s; +gluent gluer VER 0.42 1.22 0.00 0.07 ind:pre:3p; +glénoïde glénoïde ADJ f s 0.03 0.00 0.03 0.00 +gluon gluon NOM m s 0.04 0.00 0.04 0.00 +glus glu NOM f p 0.56 2.57 0.00 0.14 +glutamate glutamate NOM m s 0.16 0.00 0.16 0.00 +gluten gluten NOM m s 0.06 0.07 0.06 0.07 +glycine glycine NOM f s 0.26 4.26 0.21 1.96 +glycines glycine NOM f p 0.26 4.26 0.05 2.30 +glycol glycol NOM m s 0.12 0.00 0.12 0.00 +glycoprotéine glycoprotéine NOM f s 0.03 0.00 0.03 0.00 +glycémie glycémie NOM f s 0.44 0.00 0.44 0.00 +glycérine glycérine NOM f s 1.04 0.14 1.04 0.14 +glycérol glycérol NOM m s 0.01 0.00 0.01 0.00 +glyphe glyphe NOM m s 0.24 0.00 0.06 0.00 +glyphes glyphe NOM m p 0.24 0.00 0.18 0.00 +gnôle gnôle NOM f s 3.24 1.55 3.24 1.55 +gna_gna gna_gna ONO 0.14 0.14 0.14 0.14 +gnafron gnafron NOM m s 0.01 0.34 0.01 0.20 +gnafrons gnafron NOM m p 0.01 0.34 0.00 0.14 +gnagnagna gnagnagna ONO 0.01 1.35 0.01 1.35 +gnangnan gnangnan ADJ 0.23 0.47 0.23 0.47 +gnard gnard NOM m s 0.00 0.34 0.00 0.20 +gnards gnard NOM m p 0.00 0.34 0.00 0.14 +gnaule gnaule NOM f s 0.01 0.00 0.01 0.00 +gnian_gnian gnian_gnian NOM m s 0.01 0.00 0.01 0.00 +gniard gniard NOM m s 0.00 1.15 0.00 0.27 +gniards gniard NOM m p 0.00 1.15 0.00 0.88 +gniouf gniouf NOM f s 0.00 0.27 0.00 0.27 +gnocchi gnocchi NOM m s 2.02 0.07 1.06 0.00 +gnocchis gnocchi NOM m p 2.02 0.07 0.96 0.07 +gnognote gnognote NOM f s 0.04 0.41 0.04 0.41 +gnognotte gnognotte NOM f s 0.23 0.20 0.23 0.20 +gnole gnole NOM f s 0.55 1.01 0.55 1.01 +gnome gnome NOM m s 2.95 2.03 2.36 1.01 +gnomes gnome NOM m p 2.95 2.03 0.59 1.01 +gnon gnon NOM m s 1.02 1.82 0.42 0.54 +gnons gnon NOM m p 1.02 1.82 0.59 1.28 +gnose gnose NOM f s 0.00 0.07 0.00 0.07 +gnosticisme gnosticisme NOM m s 0.01 0.07 0.01 0.07 +gnostique gnostique ADJ m s 0.04 0.00 0.01 0.00 +gnostiques gnostique ADJ m p 0.04 0.00 0.03 0.00 +gnou gnou NOM m s 0.20 0.27 0.17 0.00 +gnouf gnouf NOM m s 0.41 1.01 0.41 1.01 +gnous gnou NOM m p 0.20 0.27 0.03 0.27 +go go NOM m s 15.32 2.70 15.32 2.70 +goût goût NOM m s 57.94 141.82 50.51 124.80 +goûta goûter VER 42.27 39.86 0.00 1.89 ind:pas:3s; +goûtables goûtable ADJ m p 0.00 0.07 0.00 0.07 +goûtai goûter VER 42.27 39.86 0.02 0.34 ind:pas:1s; +goûtaient goûter VER 42.27 39.86 0.02 0.68 ind:imp:3p; +goûtais goûter VER 42.27 39.86 0.21 1.49 ind:imp:1s;ind:imp:2s; +goûtait goûter VER 42.27 39.86 0.09 3.85 ind:imp:3s; +goûtant goûter VER 42.27 39.86 0.05 0.74 par:pre; +goûte goûter VER 42.27 39.86 9.85 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +goûtent goûter VER 42.27 39.86 0.14 0.61 ind:pre:3p; +goûter goûter VER 42.27 39.86 15.91 15.20 inf; +goûtera goûter VER 42.27 39.86 0.24 0.07 ind:fut:3s; +goûterai goûter VER 42.27 39.86 0.50 0.07 ind:fut:1s; +goûterais goûter VER 42.27 39.86 0.09 0.14 cnd:pre:1s;cnd:pre:2s; +goûterait goûter VER 42.27 39.86 0.02 0.07 cnd:pre:3s; +goûteras goûter VER 42.27 39.86 0.08 0.00 ind:fut:2s; +goûterez goûter VER 42.27 39.86 0.33 0.27 ind:fut:2p; +goûterons goûter VER 42.27 39.86 0.02 0.00 ind:fut:1p;; +goûteront goûter VER 42.27 39.86 0.06 0.00 ind:fut:3p; +goûters goûter NOM m p 2.26 7.84 0.42 2.09 +goûtes goûter VER 42.27 39.86 1.15 0.00 ind:pre:2s; +goûteur goûteur NOM m s 0.14 0.00 0.12 0.00 +goûteuse goûteur NOM f s 0.14 0.00 0.03 0.00 +goûteuses goûteux ADJ f p 0.13 0.27 0.02 0.07 +goûteux goûteux ADJ m s 0.13 0.27 0.09 0.14 +goûtez goûter VER 42.27 39.86 4.28 0.88 imp:pre:2p;ind:pre:2p; +goûtiez goûter VER 42.27 39.86 0.43 0.00 ind:imp:2p; +goûtions goûter VER 42.27 39.86 0.03 0.61 ind:imp:1p; +goûtâmes goûter VER 42.27 39.86 0.14 0.00 ind:pas:1p; +goûtons goûter VER 42.27 39.86 0.72 0.54 imp:pre:1p;ind:pre:1p; +goûts goût NOM m p 57.94 141.82 7.43 17.03 +goûtèrent goûter VER 42.27 39.86 0.00 0.54 ind:pas:3p; +goûté goûter VER m s 42.27 39.86 7.01 6.42 par:pas; +goûtée goûter VER f s 42.27 39.86 0.57 0.47 par:pas; +goûtées goûter VER f p 42.27 39.86 0.23 0.34 par:pas; +goûtés goûter VER m p 42.27 39.86 0.06 0.27 par:pas; +goal goal NOM m s 1.32 1.55 1.32 1.49 +goals goal NOM m p 1.32 1.55 0.00 0.07 +goba gober VER 5.90 5.68 0.01 0.34 ind:pas:3s; +gobage gobage NOM m s 0.04 0.27 0.04 0.07 +gobages gobage NOM m p 0.04 0.27 0.00 0.20 +gobaient gober VER 5.90 5.68 0.01 0.14 ind:imp:3p; +gobais gober VER 5.90 5.68 0.04 0.07 ind:imp:1s; +gobait gober VER 5.90 5.68 0.06 0.27 ind:imp:3s; +gobant gober VER 5.90 5.68 0.03 0.41 par:pre; +gobe_mouches gobe_mouches NOM m 0.02 0.14 0.02 0.14 +gobe gober VER 5.90 5.68 0.86 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gobelet gobelet NOM m s 3.25 4.46 2.21 2.16 +gobelets gobelet NOM m p 3.25 4.46 1.04 2.30 +gobelin gobelin NOM m s 0.19 0.41 0.04 0.00 +gobelins gobelin NOM m p 0.19 0.41 0.14 0.41 +gobelottes gobelotter VER 0.00 0.07 0.00 0.07 ind:pre:2s; +gobent gober VER 5.90 5.68 0.19 0.34 ind:pre:3p; +gober gober VER 5.90 5.68 2.50 2.09 inf; +gobera gober VER 5.90 5.68 0.06 0.00 ind:fut:3s; +goberaient gober VER 5.90 5.68 0.04 0.00 cnd:pre:3p; +goberait gober VER 5.90 5.68 0.02 0.07 cnd:pre:3s; +goberge goberger VER 0.03 0.74 0.01 0.27 ind:pre:1s;ind:pre:3s; +gobergeait goberger VER 0.03 0.74 0.00 0.07 ind:imp:3s; +gobergent goberger VER 0.03 0.74 0.01 0.14 ind:pre:3p; +goberger goberger VER 0.03 0.74 0.00 0.14 inf; +gobergez goberger VER 0.03 0.74 0.01 0.07 imp:pre:2p; +gobergé goberger VER m s 0.03 0.74 0.00 0.07 par:pas; +goberont gober VER 5.90 5.68 0.04 0.00 ind:fut:3p; +gobes gober VER 5.90 5.68 0.28 0.14 ind:pre:2s; +gobet gobet NOM m s 0.00 0.14 0.00 0.07 +gobets gobet NOM m p 0.00 0.14 0.00 0.07 +gobette gobeter VER 0.00 0.41 0.00 0.41 ind:pre:3s; +gobeur gobeur NOM m s 0.04 0.07 0.03 0.00 +gobeurs gobeur NOM m p 0.04 0.07 0.00 0.07 +gobeuse gobeuse NOM f s 0.08 0.00 0.08 0.00 +gobez gober VER 5.90 5.68 0.31 0.00 imp:pre:2p;ind:pre:2p; +gobions gober VER 5.90 5.68 0.00 0.07 ind:imp:1p; +gobèrent gober VER 5.90 5.68 0.00 0.07 ind:pas:3p; +gobé gober VER m s 5.90 5.68 1.44 0.74 par:pas; +gobée gober VER f s 5.90 5.68 0.00 0.14 par:pas; +gobées gober VER f p 5.90 5.68 0.02 0.00 par:pas; +gobés gober VER m p 5.90 5.68 0.00 0.14 par:pas; +gâcha gâcher VER 49.57 18.51 0.00 0.27 ind:pas:3s; +gâchage gâchage NOM m s 0.00 0.07 0.00 0.07 +gâchaient gâcher VER 49.57 18.51 0.02 0.47 ind:imp:3p; +gâchais gâcher VER 49.57 18.51 0.10 0.14 ind:imp:1s;ind:imp:2s; +gâchait gâcher VER 49.57 18.51 0.19 1.49 ind:imp:3s; +gâchant gâcher VER 49.57 18.51 0.03 0.14 par:pre; +gâche gâcher VER 49.57 18.51 7.08 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +gâchent gâcher VER 49.57 18.51 0.66 0.34 ind:pre:3p; +gâcher gâcher VER 49.57 18.51 18.26 6.49 inf; +gâchera gâcher VER 49.57 18.51 0.31 0.00 ind:fut:3s; +gâcherai gâcher VER 49.57 18.51 0.70 0.00 ind:fut:1s; +gâcheraient gâcher VER 49.57 18.51 0.03 0.00 cnd:pre:3p; +gâcherais gâcher VER 49.57 18.51 0.26 0.00 cnd:pre:1s;cnd:pre:2s; +gâcherait gâcher VER 49.57 18.51 0.56 0.20 cnd:pre:3s; +gâcheras gâcher VER 49.57 18.51 0.08 0.00 ind:fut:2s; +gâcherez gâcher VER 49.57 18.51 0.05 0.00 ind:fut:2p; +gâcheriez gâcher VER 49.57 18.51 0.26 0.00 cnd:pre:2p; +gâches gâcher VER 49.57 18.51 2.24 0.41 ind:pre:2s; +gâchette gâchette NOM f s 5.09 1.82 4.89 1.82 +gâchettes gâchette NOM f p 5.09 1.82 0.19 0.00 +gâcheur gâcheur NOM m s 0.01 0.07 0.01 0.00 +gâcheurs gâcheur NOM m p 0.01 0.07 0.00 0.07 +gâcheuse gâcheur ADJ f s 0.00 0.14 0.00 0.14 +gâchez gâcher VER 49.57 18.51 1.53 0.41 imp:pre:2p;ind:pre:2p; +gâchiez gâcher VER 49.57 18.51 0.04 0.00 ind:imp:2p; +gâchis gâchis NOM m 6.24 3.85 6.24 3.85 +gâchons gâcher VER 49.57 18.51 0.90 0.20 imp:pre:1p;ind:pre:1p; +gâchât gâcher VER 49.57 18.51 0.00 0.07 sub:imp:3s; +gâché gâcher VER m s 49.57 18.51 14.10 4.19 par:pas; +gâchée gâcher VER f s 49.57 18.51 1.77 1.28 par:pas; +gâchées gâcher VER f p 49.57 18.51 0.30 0.74 par:pas; +gâchés gâcher VER m p 49.57 18.51 0.10 0.27 par:pas; +goda goder VER 0.70 1.62 0.01 0.00 ind:pas:3s; +godaille godailler VER 0.01 0.27 0.01 0.14 ind:pre:3s; +godaillera godailler VER 0.01 0.27 0.00 0.07 ind:fut:3s; +godailles godailler VER 0.01 0.27 0.00 0.07 ind:pre:2s; +godait goder VER 0.70 1.62 0.00 0.07 ind:imp:3s; +godant goder VER 0.70 1.62 0.00 0.07 par:pre; +godasse godasse NOM f s 2.99 8.92 0.46 1.55 +godasses godasse NOM f p 2.99 8.92 2.53 7.36 +goddam goddam ONO 0.01 0.00 0.01 0.00 +gode goder VER 0.70 1.62 0.32 0.68 imp:pre:2s;ind:pre:3s; +godelureau godelureau NOM m s 0.01 0.34 0.01 0.20 +godelureaux godelureau NOM m p 0.01 0.34 0.00 0.14 +godemiché godemiché NOM m s 0.63 0.81 0.59 0.61 +godemichés godemiché NOM m p 0.63 0.81 0.04 0.20 +godent goder VER 0.70 1.62 0.00 0.07 ind:pre:3p; +goder goder VER 0.70 1.62 0.00 0.61 inf; +goderas goder VER 0.70 1.62 0.00 0.07 ind:fut:2s; +godes goder VER 0.70 1.62 0.36 0.07 ind:pre:2s; +godet godet NOM m s 0.33 7.50 0.29 4.32 +godets godet NOM m p 0.33 7.50 0.04 3.18 +godiche godiche NOM f s 0.09 0.00 0.07 0.00 +godiches godiche ADJ p 0.07 0.95 0.02 0.27 +godillais godiller VER 0.00 0.61 0.00 0.07 ind:imp:1s; +godillait godiller VER 0.00 0.61 0.00 0.07 ind:imp:3s; +godillant godiller VER 0.00 0.61 0.00 0.20 par:pre; +godille godille NOM f s 0.20 0.88 0.00 0.88 +godiller godiller VER 0.00 0.61 0.00 0.14 inf; +godilles godille NOM f p 0.20 0.88 0.20 0.00 +godilleur godilleur NOM m s 0.00 0.14 0.00 0.14 +godillot godillot NOM m s 0.35 3.24 0.04 0.47 +godillots godillot NOM m p 0.35 3.24 0.32 2.77 +godillé godiller VER m s 0.00 0.61 0.00 0.07 par:pas; +godronnés godronner VER m p 0.00 0.07 0.00 0.07 par:pas; +godrons godron NOM m p 0.00 0.07 0.00 0.07 +goglu goglu NOM m s 0.02 0.00 0.02 0.00 +gogo gogo NOM m s 2.19 1.96 1.85 1.42 +gogol gogol ADJ s 0.30 0.14 0.29 0.07 +gogols gogol ADJ p 0.30 0.14 0.01 0.07 +gogos gogo NOM m p 2.19 1.96 0.35 0.54 +gogs gog NOM m p 0.03 0.88 0.03 0.88 +goguenard goguenard ADJ m s 0.01 6.15 0.01 3.85 +goguenarda goguenarder VER 0.00 0.20 0.00 0.07 ind:pas:3s; +goguenarde goguenard ADJ f s 0.01 6.15 0.00 1.01 +goguenardes goguenard ADJ f p 0.01 6.15 0.00 0.14 +goguenards goguenard ADJ m p 0.01 6.15 0.00 1.15 +goguenots goguenot NOM m p 0.00 0.20 0.00 0.20 +gogues gogues NOM m p 0.23 2.57 0.23 2.57 +goguette goguette NOM f s 0.47 1.35 0.47 1.15 +goguettes goguette NOM f p 0.47 1.35 0.00 0.20 +goinfraient goinfrer VER 0.98 1.62 0.00 0.07 ind:imp:3p; +goinfrait goinfrer VER 0.98 1.62 0.00 0.14 ind:imp:3s; +goinfre goinfre NOM s 0.52 0.61 0.34 0.34 +goinfrent goinfrer VER 0.98 1.62 0.03 0.07 ind:pre:3p; +goinfrer goinfrer VER 0.98 1.62 0.67 0.95 inf; +goinfreras goinfrer VER 0.98 1.62 0.00 0.07 ind:fut:2s; +goinfrerie goinfrerie NOM f s 0.12 0.41 0.12 0.41 +goinfres goinfre NOM p 0.52 0.61 0.17 0.27 +goinfrez goinfrer VER 0.98 1.62 0.03 0.07 imp:pre:2p;ind:pre:2p; +goinfré goinfrer VER m s 0.98 1.62 0.06 0.00 par:pas; +goinfrée goinfrer VER f s 0.98 1.62 0.01 0.07 par:pas; +goinfrés goinfrer VER m p 0.98 1.62 0.01 0.07 par:pas; +goitre goitre NOM m s 0.11 0.68 0.10 0.54 +goitres goitre NOM m p 0.11 0.68 0.01 0.14 +goitreux goitreux NOM m 0.00 0.34 0.00 0.34 +gold gold ADJ 3.11 0.41 3.11 0.41 +golden golden NOM s 2.37 0.68 2.37 0.61 +goldens golden NOM p 2.37 0.68 0.00 0.07 +goldo goldo NOM f s 0.00 0.61 0.00 0.54 +goldos goldo NOM f p 0.00 0.61 0.00 0.07 +golem golem NOM m s 0.10 0.07 0.10 0.07 +golf_club golf_club NOM m s 0.01 0.07 0.01 0.07 +golf golf NOM m s 14.14 7.30 14.05 7.16 +golfe golfe NOM m s 1.69 6.49 1.55 5.95 +golfes golfe NOM m p 1.69 6.49 0.14 0.54 +golfeur golfeur NOM m s 0.85 0.34 0.58 0.07 +golfeurs golfeur NOM m p 0.85 0.34 0.22 0.07 +golfeuse golfeur NOM f s 0.85 0.34 0.05 0.07 +golfeuses golfeuse NOM f p 0.01 0.00 0.01 0.00 +golfs golf NOM m p 14.14 7.30 0.09 0.14 +golgotha golgotha NOM m s 0.00 0.07 0.00 0.07 +goliath goliath NOM m s 0.00 0.07 0.00 0.07 +gombo gombo NOM m s 2.44 0.14 2.00 0.14 +gombos gombo NOM m p 2.44 0.14 0.43 0.00 +gomina gomina NOM f s 0.14 1.01 0.14 1.01 +gominer gominer VER 0.29 1.82 0.00 0.07 inf; +gominé gominer VER m s 0.29 1.82 0.04 0.61 par:pas; +gominée gominer VER f s 0.29 1.82 0.00 0.34 par:pas; +gominées gominer VER f p 0.29 1.82 0.00 0.07 par:pas; +gominés gominer VER m p 0.29 1.82 0.25 0.74 par:pas; +gomma gommer VER 0.57 4.73 0.00 0.20 ind:pas:3s; +gommage gommage NOM m s 0.25 0.07 0.25 0.07 +gommait gommer VER 0.57 4.73 0.00 0.47 ind:imp:3s; +gommant gommer VER 0.57 4.73 0.02 0.20 par:pre; +gomme gomme NOM f s 3.81 9.93 3.21 9.26 +gomment gommer VER 0.57 4.73 0.00 0.07 ind:pre:3p; +gommer gommer VER 0.57 4.73 0.26 1.69 inf; +gommerait gommer VER 0.57 4.73 0.00 0.20 cnd:pre:3s; +gommes gomme NOM f p 3.81 9.93 0.60 0.68 +gommette gommette NOM f s 0.03 0.00 0.03 0.00 +gommeuse gommeux ADJ f s 0.00 0.34 0.00 0.14 +gommeux gommeux NOM m 0.05 0.68 0.05 0.68 +gommier gommier NOM m s 0.06 0.27 0.05 0.00 +gommiers gommier NOM m p 0.06 0.27 0.01 0.27 +gommé gommer VER m s 0.57 4.73 0.19 0.68 par:pas; +gommée gommer VER f s 0.57 4.73 0.01 0.41 par:pas; +gommées gommer VER f p 0.57 4.73 0.01 0.14 par:pas; +gommés gommer VER m p 0.57 4.73 0.01 0.14 par:pas; +goménol goménol NOM m s 0.00 0.07 0.00 0.07 +goménolée goménolé ADJ f s 0.00 0.14 0.00 0.14 +gon gon NOM m s 0.86 0.00 0.86 0.00 +gonade gonade NOM f s 0.16 0.07 0.04 0.00 +gonades gonade NOM f p 0.16 0.07 0.12 0.07 +gonadotropes gonadotrope ADJ f p 0.01 0.00 0.01 0.00 +gonadotrophine gonadotrophine NOM f s 0.01 0.00 0.01 0.00 +goncier goncier NOM m s 0.00 0.14 0.00 0.14 +gond gond NOM m s 0.91 2.97 0.04 0.14 +gonde gonder VER 0.01 0.07 0.00 0.07 ind:pre:3s; +gonder gonder VER 0.01 0.07 0.01 0.00 inf; +gondolaient gondoler VER 0.11 2.70 0.00 0.47 ind:imp:3p; +gondolais gondoler VER 0.11 2.70 0.00 0.14 ind:imp:1s;ind:imp:2s; +gondolait gondoler VER 0.11 2.70 0.00 0.27 ind:imp:3s; +gondolant gondoler VER 0.11 2.70 0.00 0.20 par:pre; +gondole gondole NOM f s 1.26 4.93 1.01 3.31 +gondolement gondolement NOM m s 0.00 0.07 0.00 0.07 +gondolent gondoler VER 0.11 2.70 0.01 0.20 ind:pre:3p; +gondoler gondoler VER 0.11 2.70 0.02 0.41 inf; +gondolera gondoler VER 0.11 2.70 0.00 0.07 ind:fut:3s; +gondoles gondole NOM f p 1.26 4.93 0.25 1.62 +gondolier gondolier NOM m s 0.72 1.15 0.59 0.74 +gondoliers gondolier NOM m p 0.72 1.15 0.11 0.41 +gondolière gondolier NOM f s 0.72 1.15 0.03 0.00 +gondolèrent gondoler VER 0.11 2.70 0.00 0.07 ind:pas:3p; +gondolé gondoler VER m s 0.11 2.70 0.01 0.14 par:pas; +gondolée gondolé ADJ f s 0.01 0.68 0.00 0.27 +gondolées gondolé ADJ f p 0.01 0.68 0.00 0.20 +gondolés gondolé ADJ m p 0.01 0.68 0.00 0.14 +gonds gond NOM m p 0.91 2.97 0.87 2.84 +gone gone NOM m s 1.00 0.14 1.00 0.14 +gonelle gonelle NOM f s 0.00 0.14 0.00 0.14 +gonfalon gonfalon NOM m s 0.00 0.20 0.00 0.14 +gonfaloniers gonfalonier NOM m p 0.00 0.07 0.00 0.07 +gonfalons gonfalon NOM m p 0.00 0.20 0.00 0.07 +gonfanon gonfanon NOM m s 0.00 0.20 0.00 0.14 +gonfanons gonfanon NOM m p 0.00 0.20 0.00 0.07 +gonfla gonfler VER 16.52 47.57 0.02 2.36 ind:pas:3s; +gonflable gonflable ADJ s 1.35 0.95 0.92 0.54 +gonflables gonflable ADJ p 1.35 0.95 0.44 0.41 +gonflage gonflage NOM m s 0.00 0.20 0.00 0.20 +gonflaient gonfler VER 16.52 47.57 0.00 1.96 ind:imp:3p; +gonflais gonfler VER 16.52 47.57 0.02 0.07 ind:imp:1s; +gonflait gonfler VER 16.52 47.57 0.60 7.91 ind:imp:3s; +gonflant gonflant ADJ m s 0.21 0.54 0.19 0.34 +gonflante gonflant ADJ f s 0.21 0.54 0.01 0.14 +gonflantes gonflant ADJ f p 0.21 0.54 0.00 0.07 +gonflants gonflant ADJ m p 0.21 0.54 0.01 0.00 +gonfle gonfler VER 16.52 47.57 4.14 6.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gonflement gonflement NOM m s 0.24 1.15 0.20 0.88 +gonflements gonflement NOM m p 0.24 1.15 0.04 0.27 +gonflent gonfler VER 16.52 47.57 0.50 2.09 ind:pre:3p; +gonfler gonfler VER 16.52 47.57 3.17 5.68 inf; +gonflera gonfler VER 16.52 47.57 0.07 0.07 ind:fut:3s; +gonflerait gonfler VER 16.52 47.57 0.02 0.14 cnd:pre:3s; +gonfles gonfler VER 16.52 47.57 1.16 0.14 ind:pre:2s; +gonflette gonflette NOM f s 0.46 0.00 0.46 0.00 +gonfleur gonfleur NOM m s 0.00 0.20 0.00 0.20 +gonflez gonfler VER 16.52 47.57 1.20 0.07 imp:pre:2p;ind:pre:2p; +gonflèrent gonfler VER 16.52 47.57 0.01 0.61 ind:pas:3p; +gonflé gonfler VER m s 16.52 47.57 3.96 7.30 par:pas; +gonflée gonfler VER f s 16.52 47.57 0.80 3.92 par:pas; +gonflées gonflé ADJ f p 3.56 12.64 0.34 3.24 +gonflés gonflé ADJ m p 3.56 12.64 1.20 3.18 +gong gong NOM m s 2.41 3.65 2.35 3.51 +gongoriste gongoriste ADJ m s 0.00 0.07 0.00 0.07 +gongs gong NOM m p 2.41 3.65 0.06 0.14 +goniomètre goniomètre NOM m s 0.00 0.07 0.00 0.07 +gonococcie gonococcie NOM f s 0.03 0.00 0.03 0.00 +gonococcique gonococcique ADJ s 0.01 0.00 0.01 0.00 +gonocoque gonocoque NOM m s 0.01 0.41 0.00 0.20 +gonocoques gonocoque NOM m p 0.01 0.41 0.01 0.20 +gonorrhée gonorrhée NOM f s 0.08 0.00 0.08 0.00 +gonze gonze NOM m s 0.07 6.89 0.06 4.05 +gonzes gonze NOM m p 0.07 6.89 0.01 2.84 +gonzesse gonzesse NOM f s 11.29 15.61 7.74 7.57 +gonzesses gonzesse NOM f p 11.29 15.61 3.56 8.04 +gopak gopak NOM m s 0.00 0.07 0.00 0.07 +gâpette gâpette NOM f s 0.00 0.07 0.00 0.07 +gopher gopher NOM m s 0.02 0.07 0.02 0.07 +gord gord NOM m s 0.25 0.00 0.25 0.00 +gordien gordien ADJ m s 0.00 0.20 0.00 0.14 +gordiens gordien ADJ m p 0.00 0.20 0.00 0.07 +gore gore ADJ s 0.57 0.14 0.57 0.14 +goret goret NOM m s 0.85 1.28 0.81 0.95 +gorets goret NOM m p 0.85 1.28 0.04 0.34 +gorge_de_pigeon gorge_de_pigeon ADJ m s 0.01 0.14 0.01 0.14 +gorge gorge NOM s 30.87 86.82 29.57 82.64 +gorgea gorger VER 1.52 8.04 0.01 0.14 ind:pas:3s; +gorgeai gorger VER 1.52 8.04 0.00 0.14 ind:pas:1s; +gorgeaient gorger VER 1.52 8.04 0.00 0.14 ind:imp:3p; +gorgeais gorger VER 1.52 8.04 0.00 0.07 ind:imp:1s; +gorgeait gorger VER 1.52 8.04 0.01 0.47 ind:imp:3s; +gorgeant gorger VER 1.52 8.04 0.01 0.20 par:pre; +gorgent gorger VER 1.52 8.04 0.02 0.07 ind:pre:3p; +gorgeon gorgeon NOM m s 0.01 1.01 0.01 0.95 +gorgeons gorger VER 1.52 8.04 0.00 0.07 ind:pre:1p; +gorger gorger VER 1.52 8.04 0.03 0.47 inf; +gorgerette gorgerette NOM f s 0.00 0.07 0.00 0.07 +gorgerin gorgerin NOM m s 0.01 0.07 0.01 0.07 +gorges gorge NOM f p 30.87 86.82 1.30 4.19 +gorget gorget NOM m s 0.00 0.07 0.00 0.07 +gorgez gorger VER 1.52 8.04 0.00 0.07 imp:pre:2p; +gorgone gorgone NOM f s 0.02 0.41 0.02 0.41 +gorgonzola gorgonzola NOM m s 0.22 0.34 0.22 0.34 +gorgèrent gorger VER 1.52 8.04 0.00 0.07 ind:pas:3p; +gorgé gorger VER m s 1.52 8.04 0.19 1.76 par:pas; +gorgée gorgée NOM f s 5.70 20.27 4.97 13.31 +gorgées gorgée NOM f p 5.70 20.27 0.72 6.96 +gorgés gorger VER m p 1.52 8.04 0.40 1.35 par:pas; +gorille gorille NOM m s 6.06 2.77 3.55 2.03 +gorilles gorille NOM m p 6.06 2.77 2.51 0.74 +gosier gosier NOM m s 1.20 4.93 1.20 4.26 +gosiers gosier NOM m p 1.20 4.93 0.00 0.68 +gospel gospel NOM m s 0.61 0.00 0.61 0.00 +gosplan gosplan NOM m s 0.10 0.07 0.10 0.07 +gosse gosse NOM s 109.96 61.76 62.92 34.12 +gosseline gosseline NOM f s 0.00 0.14 0.00 0.07 +gosselines gosseline NOM f p 0.00 0.14 0.00 0.07 +gosses gosse NOM p 109.96 61.76 47.03 27.64 +gâta gâter VER 10.97 14.26 0.00 0.14 ind:pas:3s; +gâtaient gâter VER 10.97 14.26 0.04 0.34 ind:imp:3p; +gâtais gâter VER 10.97 14.26 0.03 0.07 ind:imp:1s; +gâtait gâter VER 10.97 14.26 0.03 0.95 ind:imp:3s; +gâtant gâter VER 10.97 14.26 0.23 0.14 par:pre; +gâte_bois gâte_bois NOM m 0.00 0.07 0.00 0.07 +gâte_sauce gâte_sauce NOM m s 0.00 0.14 0.00 0.14 +gâte gâter VER 10.97 14.26 2.96 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gâteau gâteau NOM m s 55.19 32.16 42.33 13.92 +gâteaux gâteau NOM m p 55.19 32.16 12.85 18.24 +gâtent gâter VER 10.97 14.26 0.54 0.14 ind:pre:3p; +gâter gâter VER 10.97 14.26 1.80 3.45 inf; +gâtera gâter VER 10.97 14.26 0.35 0.14 ind:fut:3s; +gâterais gâter VER 10.97 14.26 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +gâterait gâter VER 10.97 14.26 0.02 0.07 cnd:pre:3s; +gâterie gâterie NOM f s 1.35 2.91 0.98 0.81 +gâteries gâterie NOM f p 1.35 2.91 0.36 2.09 +gâteront gâter VER 10.97 14.26 0.00 0.14 ind:fut:3p; +gâtes gâter VER 10.97 14.26 1.22 0.20 ind:pre:2s; +gâteuse gâteux ADJ f s 1.71 3.92 0.25 0.88 +gâteuses gâteux ADJ f p 1.71 3.92 0.00 0.07 +gâteux gâteux ADJ m 1.71 3.92 1.47 2.97 +gâtez gâter VER 10.97 14.26 0.46 0.20 imp:pre:2p;ind:pre:2p; +goth goth NOM s 0.04 0.14 0.02 0.00 +gotha gotha NOM m s 0.04 0.14 0.04 0.07 +gothas gotha NOM m p 0.04 0.14 0.00 0.07 +gothique gothique ADJ s 0.99 6.55 0.89 3.85 +gothiques gothique ADJ p 0.99 6.55 0.10 2.70 +goths goth NOM p 0.04 0.14 0.01 0.14 +gâtifie gâtifier VER 0.00 0.07 0.00 0.07 ind:pre:3s; +gâtine gâtine NOM f s 0.00 0.07 0.00 0.07 +gâtisme gâtisme NOM m s 0.02 0.95 0.02 0.95 +goton goton NOM f s 0.00 0.07 0.00 0.07 +gâtât gâter VER 10.97 14.26 0.00 0.07 sub:imp:3s; +gâtèrent gâter VER 10.97 14.26 0.00 0.27 ind:pas:3p; +gâté gâter VER m s 10.97 14.26 1.54 3.58 par:pas; +gâtée gâté ADJ f s 3.66 4.73 1.68 1.28 +gâtées gâté ADJ f p 3.66 4.73 0.15 0.61 +gâtés gâté ADJ m p 3.66 4.73 0.54 0.68 +gouache gouache NOM f s 0.04 1.55 0.04 1.22 +gouaches gouache NOM f p 0.04 1.55 0.00 0.34 +gouachez gouacher VER 0.01 0.00 0.01 0.00 ind:pre:2p; +gouailla gouailler VER 0.00 0.41 0.00 0.27 ind:pas:3s; +gouaille gouaille NOM f s 0.01 1.49 0.01 1.49 +gouailleur gouailleur ADJ m s 0.00 1.28 0.00 0.61 +gouailleurs gouailleur ADJ m p 0.00 1.28 0.00 0.07 +gouailleuse gouailleur ADJ f s 0.00 1.28 0.00 0.54 +gouailleuses gouailleur ADJ f p 0.00 1.28 0.00 0.07 +gouaillé gouailler VER m s 0.00 0.41 0.00 0.07 par:pas; +goualante goualante NOM f s 0.01 1.08 0.01 0.81 +goualantes goualante NOM f p 0.01 1.08 0.00 0.27 +goualer goualer VER 0.00 0.14 0.00 0.14 inf; +gouape gouape NOM f s 0.39 1.08 0.38 0.74 +gouapes gouape NOM f p 0.39 1.08 0.01 0.34 +gouda gouda NOM m s 0.03 0.07 0.03 0.07 +goudou goudou NOM f s 0.09 0.14 0.06 0.07 +goudous goudou NOM f p 0.09 0.14 0.03 0.07 +goudron goudron NOM m s 3.40 7.64 3.40 7.50 +goudronnage goudronnage NOM m s 0.00 0.14 0.00 0.14 +goudronne goudronner VER 0.38 1.01 0.00 0.07 ind:pre:3s; +goudronner goudronner VER 0.38 1.01 0.05 0.20 inf; +goudronneux goudronneux ADJ m 0.00 0.20 0.00 0.20 +goudronnez goudronner VER 0.38 1.01 0.14 0.00 imp:pre:2p; +goudronné goudronner VER m s 0.38 1.01 0.06 0.41 par:pas; +goudronnée goudronné ADJ f s 0.39 3.04 0.23 1.01 +goudronnées goudronné ADJ f p 0.39 3.04 0.14 0.54 +goudronnés goudronné ADJ m p 0.39 3.04 0.00 0.27 +goudrons goudron NOM m p 3.40 7.64 0.00 0.14 +gouet gouet NOM m s 0.00 0.07 0.00 0.07 +gouffre gouffre NOM m s 3.84 13.38 3.43 11.35 +gouffres gouffre NOM m p 3.84 13.38 0.40 2.03 +gouge gouge NOM f s 0.02 1.01 0.01 0.74 +gouges gouge NOM f p 0.02 1.01 0.01 0.27 +gougnafier gougnafier NOM m s 0.00 1.96 0.00 0.61 +gougnafiers gougnafier NOM m p 0.00 1.96 0.00 1.35 +gougnottes gougnotter VER 0.01 0.07 0.01 0.07 ind:pre:2s; +gougoutte gougoutte NOM f s 0.01 0.07 0.01 0.00 +gougouttes gougoutte NOM f p 0.01 0.07 0.00 0.07 +gougère gougère NOM f s 0.00 0.20 0.00 0.07 +gougères gougère NOM f p 0.00 0.20 0.00 0.14 +gouine gouine NOM f s 4.00 0.88 3.29 0.47 +gouines gouine NOM f p 4.00 0.88 0.71 0.41 +goujat goujat NOM m s 1.68 2.09 1.23 1.69 +goujaterie goujaterie NOM f s 0.16 0.47 0.16 0.47 +goujats goujat NOM m p 1.68 2.09 0.45 0.41 +goujon goujon NOM m s 0.50 1.35 0.50 0.81 +goujons goujon NOM m p 0.50 1.35 0.00 0.54 +goulûment goulûment ADV 0.14 2.70 0.14 2.70 +goulache goulache NOM m s 0.46 0.00 0.46 0.00 +goulafre goulafre NOM s 0.00 0.14 0.00 0.07 +goulafres goulafre NOM p 0.00 0.14 0.00 0.07 +goulag goulag NOM m s 0.31 1.01 0.31 0.74 +goulags goulag NOM m p 0.31 1.01 0.00 0.27 +goéland goéland NOM m s 0.53 2.91 0.31 0.81 +goélands goéland NOM m p 0.53 2.91 0.23 2.09 +goulasch goulasch NOM m s 0.27 0.14 0.27 0.14 +goule goule NOM f s 0.61 0.07 0.26 0.07 +goules goule NOM f p 0.61 0.07 0.36 0.00 +goulet goulet NOM m s 0.09 0.74 0.09 0.74 +goélette goélette NOM f s 0.60 0.68 0.60 0.61 +goulette goulette NOM f s 0.94 0.14 0.94 0.14 +goélettes goélette NOM f p 0.60 0.68 0.00 0.07 +gouleyant gouleyant ADJ m s 0.00 0.14 0.00 0.14 +goulot goulot NOM m s 0.50 10.81 0.49 10.14 +goulots goulot NOM m p 0.50 10.81 0.01 0.68 +goulotte goulotte NOM f s 0.00 0.07 0.00 0.07 +goulu goulu ADJ m s 0.14 1.55 0.02 0.34 +goulée goulée NOM f s 0.01 2.64 0.00 1.55 +goulue goulu ADJ f s 0.14 1.55 0.02 0.68 +goulées goulée NOM f p 0.01 2.64 0.01 1.08 +goulues goulu NOM f p 0.02 0.41 0.01 0.07 +goulus goulu ADJ m p 0.14 1.55 0.10 0.34 +goum goum NOM m s 0.04 0.41 0.00 0.34 +goumi goumi NOM m s 0.00 0.34 0.00 0.34 +goumier goumier NOM m s 0.00 0.54 0.00 0.07 +goumiers goumier NOM m p 0.00 0.54 0.00 0.47 +goémon goémon NOM m s 0.14 0.88 0.00 0.41 +goémons goémon NOM m p 0.14 0.88 0.14 0.47 +goums goum NOM m p 0.04 0.41 0.04 0.07 +goupil goupil NOM m s 0.03 0.27 0.03 0.27 +goupillait goupiller VER 0.27 1.69 0.01 0.20 ind:imp:3s; +goupille goupille NOM f s 0.74 0.47 0.72 0.34 +goupiller goupiller VER 0.27 1.69 0.04 0.34 inf; +goupilles goupille NOM f p 0.74 0.47 0.02 0.14 +goupillon goupillon NOM m s 0.16 1.62 0.16 1.55 +goupillons goupillon NOM m p 0.16 1.62 0.00 0.07 +goupillé goupiller VER m s 0.27 1.69 0.04 0.47 par:pas; +goupillée goupiller VER f s 0.27 1.69 0.02 0.07 par:pas; +gour gour NOM m 0.02 0.61 0.01 0.54 +goura goura NOM m s 0.00 0.07 0.00 0.07 +gouraient gourer VER 2.33 6.28 0.00 0.07 ind:imp:3p; +gourais gourer VER 2.33 6.28 0.01 0.68 ind:imp:1s;ind:imp:2s; +gourait gourer VER 2.33 6.28 0.01 0.47 ind:imp:3s; +gourance gourance NOM f s 0.00 1.28 0.00 1.15 +gourances gourance NOM f p 0.00 1.28 0.00 0.14 +gourbi gourbi NOM m s 0.17 2.91 0.12 1.69 +gourbis gourbi NOM m p 0.17 2.91 0.06 1.22 +gourd gourd ADJ m s 0.00 2.70 0.00 0.68 +gourde gourde NOM f s 2.85 4.59 2.56 4.59 +gourdes gourde NOM f p 2.85 4.59 0.29 0.00 +gourdin gourdin NOM m s 1.59 2.84 1.51 1.82 +gourdins gourdin NOM m p 1.59 2.84 0.08 1.01 +gourds gourd ADJ m p 0.00 2.70 0.00 2.03 +goure gourer VER 2.33 6.28 0.30 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gourent gourer VER 2.33 6.28 0.03 0.27 ind:pre:3p; +gourer gourer VER 2.33 6.28 0.22 1.35 inf; +gourerait gourer VER 2.33 6.28 0.00 0.07 cnd:pre:3s; +goures gourer VER 2.33 6.28 0.77 0.34 ind:pre:2s; +gourez gourer VER 2.33 6.28 0.19 0.07 ind:pre:2p; +gourgandine gourgandine NOM f s 0.06 0.34 0.06 0.20 +gourgandines gourgandine NOM f p 0.06 0.34 0.00 0.14 +gourmand gourmand ADJ m s 2.79 9.86 1.81 4.53 +gourmandai gourmander VER 0.11 0.81 0.00 0.07 ind:pas:1s; +gourmandais gourmander VER 0.11 0.81 0.00 0.07 ind:imp:1s; +gourmandait gourmander VER 0.11 0.81 0.00 0.07 ind:imp:3s; +gourmandant gourmander VER 0.11 0.81 0.00 0.07 par:pre; +gourmande gourmand ADJ f s 2.79 9.86 0.54 3.45 +gourmandement gourmandement ADV 0.00 0.07 0.00 0.07 +gourmandent gourmander VER 0.11 0.81 0.00 0.07 ind:pre:3p; +gourmander gourmander VER 0.11 0.81 0.00 0.14 inf; +gourmandes gourmand ADJ f p 2.79 9.86 0.14 1.08 +gourmandise gourmandise NOM f s 0.51 6.49 0.47 5.54 +gourmandises gourmandise NOM f p 0.51 6.49 0.04 0.95 +gourmands gourmand ADJ m p 2.79 9.86 0.32 0.81 +gourmandé gourmander VER m s 0.11 0.81 0.01 0.00 par:pas; +gourme gourme NOM f s 0.06 0.41 0.06 0.41 +gourmet gourmet NOM m s 0.97 1.55 0.89 0.81 +gourmets gourmet NOM m p 0.97 1.55 0.08 0.74 +gourmette gourmette NOM f s 1.25 2.43 1.25 2.09 +gourmettes gourmette NOM f p 1.25 2.43 0.01 0.34 +gourmé gourmé ADJ m s 0.01 0.81 0.01 0.34 +gourmée gourmé ADJ f s 0.01 0.81 0.00 0.20 +gourmés gourmé ADJ m p 0.01 0.81 0.00 0.27 +gourou gourou NOM m s 1.84 1.42 1.63 1.28 +gourous gourou NOM m p 1.84 1.42 0.22 0.14 +gours gour NOM m p 0.02 0.61 0.01 0.07 +gouré gourer VER m s 2.33 6.28 0.64 1.22 par:pas; +gourée gourer VER f s 2.33 6.28 0.07 0.54 par:pas; +gourées gourer VER f p 2.33 6.28 0.00 0.07 par:pas; +gourés gourer VER m p 2.33 6.28 0.10 0.27 par:pas; +gousse gousse NOM f s 0.58 1.28 0.51 0.81 +gousses gousse NOM f p 0.58 1.28 0.07 0.47 +gousset gousset NOM m s 0.27 2.23 0.27 1.69 +goussets gousset NOM m p 0.27 2.23 0.00 0.54 +goétie goétie NOM f s 0.02 0.00 0.02 0.00 +gouttait goutter VER 0.73 2.36 0.01 0.34 ind:imp:3s; +gouttant goutter VER 0.73 2.36 0.01 0.20 par:pre; +goutte goutte NOM f s 28.03 64.32 19.09 30.34 +gouttelaient goutteler VER 0.00 0.14 0.00 0.07 ind:imp:3p; +gouttelait goutteler VER 0.00 0.14 0.00 0.07 ind:imp:3s; +gouttelette gouttelette NOM f s 0.25 5.88 0.04 0.41 +gouttelettes gouttelette NOM f p 0.25 5.88 0.21 5.47 +goutter goutter VER 0.73 2.36 0.01 0.41 inf; +gouttera goutter VER 0.73 2.36 0.01 0.00 ind:fut:3s; +goutterais goutter VER 0.73 2.36 0.01 0.00 cnd:pre:1s; +gouttereau gouttereau ADJ m s 0.00 0.20 0.00 0.14 +gouttereaux gouttereau ADJ m p 0.00 0.20 0.00 0.07 +gouttes goutte NOM f p 28.03 64.32 8.94 33.99 +goutteuse goutteur NOM f s 0.01 0.00 0.01 0.00 +goutteuses goutteux ADJ f p 0.01 0.41 0.00 0.14 +goutteux goutteux ADJ m 0.01 0.41 0.01 0.20 +gouttière gouttière NOM f s 2.99 10.95 2.47 6.82 +gouttières gouttière NOM f p 2.99 10.95 0.52 4.12 +gouvernable gouvernable ADJ s 0.01 0.00 0.01 0.00 +gouvernaient gouverner VER 7.60 8.78 0.17 0.14 ind:imp:3p; +gouvernail gouvernail NOM m s 2.87 1.69 2.81 1.62 +gouvernails gouvernail NOM m p 2.87 1.69 0.06 0.07 +gouvernait gouverner VER 7.60 8.78 0.21 1.69 ind:imp:3s; +gouvernance gouvernance NOM f s 0.01 0.00 0.01 0.00 +gouvernant gouvernant NOM m s 0.45 2.09 0.14 0.07 +gouvernante gouvernante NOM f s 4.60 4.73 4.52 3.85 +gouvernantes gouvernante NOM f p 4.60 4.73 0.08 0.88 +gouvernants gouvernant NOM m p 0.45 2.09 0.30 2.03 +gouverne gouverner VER 7.60 8.78 1.58 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gouvernement gouvernement NOM m s 62.66 132.03 59.82 119.73 +gouvernemental gouvernemental ADJ m s 2.93 1.69 0.98 0.61 +gouvernementale gouvernemental ADJ f s 2.93 1.69 0.82 0.74 +gouvernementales gouvernemental ADJ f p 2.93 1.69 0.72 0.34 +gouvernementaux gouvernemental ADJ m p 2.93 1.69 0.40 0.00 +gouvernements gouvernement NOM m p 62.66 132.03 2.83 12.30 +gouvernent gouverner VER 7.60 8.78 0.72 0.41 ind:pre:3p; +gouverner gouverner VER 7.60 8.78 3.18 3.24 inf; +gouvernera gouverner VER 7.60 8.78 0.56 0.07 ind:fut:3s; +gouvernerai gouverner VER 7.60 8.78 0.03 0.14 ind:fut:1s; +gouvernerait gouverner VER 7.60 8.78 0.01 0.14 cnd:pre:3s; +gouverneras gouverner VER 7.60 8.78 0.02 0.00 ind:fut:2s; +gouvernerez gouverner VER 7.60 8.78 0.04 0.07 ind:fut:2p; +gouvernerons gouverner VER 7.60 8.78 0.03 0.00 ind:fut:1p; +gouverneront gouverner VER 7.60 8.78 0.06 0.07 ind:fut:3p; +gouvernes gouverner VER 7.60 8.78 0.17 0.00 ind:pre:2s; +gouverneur gouverneur NOM m s 21.73 18.38 20.96 16.35 +gouverneurs gouverneur NOM m p 21.73 18.38 0.77 2.03 +gouvernez gouverner VER 7.60 8.78 0.14 0.00 imp:pre:2p;ind:pre:2p; +gouverniez gouverner VER 7.60 8.78 0.01 0.00 ind:imp:2p; +gouvernorat gouvernorat NOM m s 0.01 0.14 0.01 0.00 +gouvernorats gouvernorat NOM m p 0.01 0.14 0.00 0.14 +gouvernât gouverner VER 7.60 8.78 0.00 0.14 sub:imp:3s; +gouverné gouverner VER m s 7.60 8.78 0.38 0.81 par:pas; +gouvernée gouverner VER f s 7.60 8.78 0.17 0.47 par:pas; +gouvernés gouverner VER m p 7.60 8.78 0.07 0.07 par:pas; +gouzi_gouzi gouzi_gouzi NOM m 0.06 0.07 0.06 0.07 +goy goy NOM m s 0.13 0.47 0.13 0.47 +goyave goyave NOM f s 0.06 0.20 0.06 0.20 +goyesque goyesque NOM s 0.00 0.20 0.00 0.14 +goyesques goyesque NOM p 0.00 0.20 0.00 0.07 +graal graal NOM m s 0.04 0.34 0.04 0.34 +grabat grabat NOM m s 0.36 2.09 0.23 1.96 +grabataire grabataire ADJ s 0.13 0.27 0.11 0.27 +grabataires grabataire ADJ m p 0.13 0.27 0.02 0.00 +grabats grabat NOM m p 0.36 2.09 0.14 0.14 +graben graben NOM m s 0.14 0.00 0.14 0.00 +grabuge grabuge NOM m s 2.55 0.54 2.55 0.54 +gracia gracier VER 3.62 1.22 0.00 0.07 ind:pas:3s; +graciai gracier VER 3.62 1.22 0.00 0.07 ind:pas:1s; +gracias gracier VER 3.62 1.22 1.58 0.20 ind:pas:2s; +gracie gracier VER 3.62 1.22 0.81 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gracier gracier VER 3.62 1.22 0.39 0.41 inf; +graciera gracier VER 3.62 1.22 0.01 0.00 ind:fut:3s; +gracierai gracier VER 3.62 1.22 0.04 0.00 ind:fut:1s; +gracieras gracier VER 3.62 1.22 0.02 0.00 ind:fut:2s; +gracieuse gracieux ADJ f s 4.54 15.81 1.84 6.08 +gracieusement gracieusement ADV 0.54 2.70 0.54 2.70 +gracieuses gracieux ADJ f p 4.54 15.81 0.29 2.09 +gracieuseté gracieuseté NOM f s 0.20 0.41 0.06 0.14 +gracieusetés gracieuseté NOM f p 0.20 0.41 0.14 0.27 +gracieusé gracieusé ADJ m s 0.00 0.07 0.00 0.07 +gracieux gracieux ADJ m 4.54 15.81 2.42 7.64 +graciez gracier VER 3.62 1.22 0.04 0.00 imp:pre:2p;ind:pre:2p; +gracile gracile ADJ s 0.16 2.50 0.16 1.69 +graciles gracile ADJ f p 0.16 2.50 0.00 0.81 +gracilité gracilité NOM f s 0.00 0.07 0.00 0.07 +graciât gracier VER 3.62 1.22 0.00 0.07 sub:imp:3s; +gracié gracier VER m s 3.62 1.22 0.51 0.00 par:pas; +graciée gracier VER f s 3.62 1.22 0.06 0.07 par:pas; +graciés gracier VER m p 3.62 1.22 0.16 0.07 par:pas; +gradaille gradaille NOM f s 0.00 0.07 0.00 0.07 +gradation gradation NOM f s 0.01 0.54 0.00 0.34 +gradations gradation NOM f p 0.01 0.54 0.01 0.20 +grade grade NOM m s 6.44 8.18 5.78 7.03 +grader grader NOM m s 0.00 0.07 0.00 0.07 +grades grade NOM m p 6.44 8.18 0.66 1.15 +gradient gradient NOM m s 0.04 0.00 0.03 0.00 +gradients gradient NOM m p 0.04 0.00 0.01 0.00 +gradin gradin NOM m s 1.06 5.07 0.01 0.41 +gradins gradin NOM m p 1.06 5.07 1.05 4.66 +gradé gradé ADJ m s 1.61 1.22 1.36 0.68 +graduation graduation NOM f s 0.12 0.41 0.11 0.27 +graduations graduation NOM f p 0.12 0.41 0.01 0.14 +gradée gradé ADJ f s 1.61 1.22 0.09 0.07 +graduel graduel ADJ m s 0.09 0.14 0.01 0.00 +graduelle graduel ADJ f s 0.09 0.14 0.07 0.14 +graduellement graduellement ADV 0.24 0.81 0.24 0.81 +graduer graduer VER 0.18 0.41 0.01 0.14 inf; +gradés gradé NOM m p 1.94 8.45 0.82 6.49 +gradus gradus NOM m 0.00 0.07 0.00 0.07 +gradué graduer VER m s 0.18 0.41 0.03 0.20 par:pas; +graduée graduer VER f s 0.18 0.41 0.14 0.00 par:pas; +graduées graduer VER f p 0.18 0.41 0.01 0.00 par:pas; +gradués gradué NOM m p 0.02 0.00 0.02 0.00 +graff graff NOM m s 0.05 0.00 0.05 0.00 +graffeur graffeur NOM m s 0.06 0.00 0.06 0.00 +graffita graffiter VER 0.01 0.27 0.00 0.07 ind:pas:3s; +graffiter graffiter VER 0.01 0.27 0.01 0.07 inf; +graffiteur graffiteur NOM m s 0.09 0.07 0.02 0.00 +graffiteurs graffiteur NOM m p 0.09 0.07 0.07 0.07 +graffiti graffiti NOM m 2.73 4.19 1.93 3.45 +graffitis graffiti NOM m p 2.73 4.19 0.80 0.74 +graffito graffito NOM m s 0.00 0.20 0.00 0.20 +graffité graffiter VER m s 0.01 0.27 0.00 0.14 par:pas; +grafigner grafigner VER 0.14 0.07 0.14 0.07 inf; +graillant grailler VER 0.21 2.64 0.00 0.07 par:pre; +graille grailler VER 0.21 2.64 0.05 0.95 imp:pre:2s;ind:pre:3s; +grailler grailler VER 0.21 2.64 0.15 0.00 inf; +graillon graillon NOM m s 0.08 1.22 0.08 1.01 +graillonna graillonner VER 0.14 0.20 0.00 0.07 ind:pas:3s; +graillonnait graillonner VER 0.14 0.20 0.00 0.07 ind:imp:3s; +graillonnant graillonnant ADJ m s 0.00 0.07 0.00 0.07 +graillonne graillonner VER 0.14 0.20 0.14 0.07 ind:pre:3s; +graillonnements graillonnement NOM m p 0.00 0.07 0.00 0.07 +graillonneuse graillonneur NOM f s 0.00 0.27 0.00 0.20 +graillonneuses graillonneur NOM f p 0.00 0.27 0.00 0.07 +graillonneux graillonneux ADJ m 0.00 0.14 0.00 0.14 +graillons graillon NOM m p 0.08 1.22 0.00 0.20 +graillé grailler VER m s 0.21 2.64 0.01 0.14 par:pas; +graillée grailler VER f s 0.21 2.64 0.00 1.49 par:pas; +grain grain NOM m s 14.32 35.95 10.74 24.26 +graine graine NOM f s 11.41 13.51 5.51 8.04 +grainer grainer VER 0.00 0.20 0.00 0.07 inf; +graines graine NOM f p 11.41 13.51 5.90 5.47 +graineterie graineterie NOM f s 0.00 0.20 0.00 0.20 +grainetier grainetier NOM m s 0.00 0.34 0.00 0.20 +grainetiers grainetier NOM m p 0.00 0.34 0.00 0.14 +grains grain NOM m p 14.32 35.95 3.57 11.69 +grainé grainer VER m s 0.00 0.20 0.00 0.14 par:pas; +graissa graisser VER 2.48 4.53 0.00 0.34 ind:pas:3s; +graissage graissage NOM m s 0.24 0.27 0.23 0.20 +graissages graissage NOM m p 0.24 0.27 0.01 0.07 +graissait graisser VER 2.48 4.53 0.01 0.61 ind:imp:3s; +graissant graisser VER 2.48 4.53 0.00 0.20 par:pre; +graisse graisse NOM f s 9.09 18.31 8.38 17.64 +graissent graisser VER 2.48 4.53 0.03 0.54 ind:pre:3p; +graisser graisser VER 2.48 4.53 1.10 1.49 inf; +graissera graisser VER 2.48 4.53 0.02 0.00 ind:fut:3s; +graisserai graisser VER 2.48 4.53 0.01 0.07 ind:fut:1s; +graisses graisse NOM f p 9.09 18.31 0.70 0.68 +graisseur graisseur ADJ m s 0.02 0.00 0.02 0.00 +graisseuse graisseux ADJ f s 0.82 5.07 0.10 1.42 +graisseuses graisseux ADJ f p 0.82 5.07 0.07 0.88 +graisseux graisseux ADJ m 0.82 5.07 0.65 2.77 +graissez graisser VER 2.48 4.53 0.09 0.07 imp:pre:2p;ind:pre:2p; +graissât graisser VER 2.48 4.53 0.00 0.07 sub:imp:3s; +graissé graisser VER m s 2.48 4.53 0.42 0.47 par:pas; +graissée graissé ADJ f s 0.30 1.08 0.01 0.47 +graissées graisser VER f p 2.48 4.53 0.01 0.07 par:pas; +graissés graisser VER m p 2.48 4.53 0.26 0.00 par:pas; +gram gram NOM m s 0.28 0.00 0.28 0.00 +gramen gramen NOM m s 0.01 0.20 0.01 0.00 +gramens gramen NOM m p 0.01 0.20 0.00 0.20 +graminée graminée NOM f s 0.01 1.89 0.01 0.54 +graminées graminée NOM f p 0.01 1.89 0.00 1.35 +grammage grammage NOM m s 0.03 0.07 0.03 0.00 +grammages grammage NOM m p 0.03 0.07 0.00 0.07 +grammaire grammaire NOM f s 1.73 6.01 1.73 5.47 +grammaires grammaire NOM f p 1.73 6.01 0.00 0.54 +grammairien grammairien NOM m s 0.01 1.08 0.01 0.41 +grammairienne grammairien NOM f s 0.01 1.08 0.00 0.14 +grammairiennes grammairien NOM f p 0.01 1.08 0.00 0.07 +grammairiens grammairien NOM m p 0.01 1.08 0.00 0.47 +grammatical grammatical ADJ m s 0.17 0.68 0.14 0.07 +grammaticale grammatical ADJ f s 0.17 0.68 0.02 0.41 +grammaticalement grammaticalement ADV 0.14 0.14 0.14 0.14 +grammaticales grammatical ADJ f p 0.17 0.68 0.01 0.07 +grammaticaux grammatical ADJ m p 0.17 0.68 0.00 0.14 +gramme gramme NOM m s 5.81 4.93 1.76 1.22 +grammer grammer VER 0.03 0.00 0.03 0.00 inf; +grammes gramme NOM m p 5.81 4.93 4.05 3.72 +gramophone gramophone NOM m s 1.14 1.08 1.13 1.01 +gramophones gramophone NOM m p 1.14 1.08 0.01 0.07 +grana grana NOM m s 0.00 0.14 0.00 0.07 +granas grana NOM m p 0.00 0.14 0.00 0.07 +grand_angle grand_angle NOM m s 0.06 0.00 0.06 0.00 +grand_chose grand_chose PRO:ind m s 28.01 36.08 28.01 36.08 +grand_duc grand_duc NOM m s 2.03 1.76 1.90 0.88 +grand_ducal grand_ducal ADJ f s 0.00 0.07 0.00 0.07 +grand_duché grand_duché NOM m s 0.01 0.07 0.01 0.07 +grand_faim grand_faim ADV 0.00 0.20 0.00 0.20 +grand_guignol grand_guignol NOM m s 0.01 0.00 0.01 0.00 +grand_guignolesque grand_guignolesque ADJ s 0.01 0.00 0.01 0.00 +grand_hôtel grand_hôtel NOM m s 0.00 0.07 0.00 0.07 +grand_hâte grand_hâte ADV 0.00 0.07 0.00 0.07 +grand_maître grand_maître NOM m s 0.10 0.07 0.10 0.07 +grand_papa grand_papa NOM f s 2.35 0.95 0.84 0.27 +grand_messe grand_messe NOM f s 0.29 1.28 0.29 1.28 +grand_mère grand_mère NOM f s 73.22 94.59 72.39 91.76 +grand_mère grand_mère NOM f p 73.22 94.59 0.53 2.16 +grand_neige grand_neige NOM m s 0.00 0.07 0.00 0.07 +grand_officier grand_officier NOM m s 0.00 0.07 0.00 0.07 +grand_oncle grand_oncle NOM m s 0.45 4.26 0.45 3.65 +grand_papa grand_papa NOM m s 2.35 0.95 1.50 0.68 +grand_peine grand_peine ADV 0.25 4.86 0.25 4.86 +grand_peur grand_peur ADV 0.00 0.20 0.00 0.20 +grand_place grand_place NOM f s 0.12 1.35 0.12 1.35 +grand_prêtre grand_prêtre NOM m s 0.11 0.20 0.11 0.20 +grand_père grand_père NOM m s 75.64 96.49 75.19 95.20 +grand_quartier grand_quartier NOM m s 0.00 0.34 0.00 0.34 +grand_route grand_route NOM f s 0.27 3.65 0.27 3.58 +grand_route grand_route NOM f p 0.27 3.65 0.00 0.07 +grand_rue grand_rue NOM f s 0.64 2.36 0.64 2.36 +grand_salle grand_salle NOM f s 0.00 0.20 0.00 0.20 +grand_tante grand_tante NOM f s 1.17 1.76 1.17 1.22 +grand_tante grand_tante NOM f p 1.17 1.76 0.00 0.47 +grand_vergue grand_vergue NOM f s 0.05 0.00 0.05 0.00 +grand_voile grand_voile NOM f s 0.23 0.27 0.23 0.27 +grand grand ADJ m s 638.72 1244.66 338.27 537.97 +grandît grandir VER 63.99 46.69 0.01 0.07 sub:imp:3s; +grand_duc grand_duc NOM f s 2.03 1.76 0.09 0.34 +grande grand ADJ f s 638.72 1244.66 198.25 378.65 +grandement grandement ADV 1.59 2.84 1.59 2.84 +grande_duchesse grande_duchesse NOM f p 0.01 0.14 0.01 0.14 +grandes grand ADJ f p 638.72 1244.66 42.68 126.49 +grandesse grandesse NOM f s 0.00 0.14 0.00 0.14 +grandet grandet ADJ m s 0.00 0.14 0.00 0.14 +grandeur grandeur NOM f s 8.75 28.38 7.71 26.49 +grandeurs grandeur NOM f p 8.75 28.38 1.04 1.89 +grandi grandir VER m s 63.99 46.69 30.06 13.45 par:pas; +grandie grandir VER f s 63.99 46.69 0.17 0.74 par:pas; +grandiloque grandiloque ADJ m s 0.00 0.07 0.00 0.07 +grandiloquence grandiloquence NOM f s 0.06 0.81 0.06 0.81 +grandiloquent grandiloquent ADJ m s 0.15 1.69 0.15 0.54 +grandiloquente grandiloquent ADJ f s 0.15 1.69 0.00 0.74 +grandiloquentes grandiloquent ADJ f p 0.15 1.69 0.00 0.14 +grandiloquents grandiloquent ADJ m p 0.15 1.69 0.00 0.27 +grandiose grandiose ADJ s 4.70 10.00 4.16 8.24 +grandiosement grandiosement ADV 0.00 0.14 0.00 0.14 +grandioses grandiose ADJ p 4.70 10.00 0.53 1.76 +grandir grandir VER 63.99 46.69 13.31 11.22 inf; +grandira grandir VER 63.99 46.69 1.07 0.27 ind:fut:3s; +grandirai grandir VER 63.99 46.69 0.07 0.00 ind:fut:1s; +grandiraient grandir VER 63.99 46.69 0.03 0.07 cnd:pre:3p; +grandirais grandir VER 63.99 46.69 0.01 0.00 cnd:pre:2s; +grandirait grandir VER 63.99 46.69 0.14 0.27 cnd:pre:3s; +grandiras grandir VER 63.99 46.69 0.70 0.20 ind:fut:2s; +grandirent grandir VER 63.99 46.69 0.08 0.41 ind:pas:3p; +grandirez grandir VER 63.99 46.69 0.05 0.07 ind:fut:2p; +grandiriez grandir VER 63.99 46.69 0.01 0.00 cnd:pre:2p; +grandirons grandir VER 63.99 46.69 0.01 0.07 ind:fut:1p; +grandiront grandir VER 63.99 46.69 0.24 0.20 ind:fut:3p; +grandis grandir VER m p 63.99 46.69 2.44 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +grandissaient grandir VER 63.99 46.69 0.44 1.22 ind:imp:3p; +grandissais grandir VER 63.99 46.69 0.17 0.47 ind:imp:1s;ind:imp:2s; +grandissait grandir VER 63.99 46.69 1.28 5.61 ind:imp:3s; +grandissant grandir VER 63.99 46.69 1.52 2.09 par:pre; +grandissante grandissant ADJ f s 0.87 5.47 0.38 3.11 +grandissantes grandissant ADJ f p 0.87 5.47 0.03 0.07 +grandissants grandissant ADJ m p 0.87 5.47 0.01 0.07 +grandisse grandir VER 63.99 46.69 1.36 0.27 sub:pre:1s;sub:pre:3s; +grandissement grandissement NOM m s 0.00 0.07 0.00 0.07 +grandissent grandir VER 63.99 46.69 2.55 1.76 ind:pre:3p; +grandisses grandir VER 63.99 46.69 0.31 0.07 sub:pre:2s; +grandissez grandir VER 63.99 46.69 0.28 0.00 imp:pre:2p;ind:pre:2p; +grandissime grandissime ADJ s 0.03 0.07 0.03 0.07 +grandissions grandir VER 63.99 46.69 0.01 0.07 ind:imp:1p; +grandissons grandir VER 63.99 46.69 0.04 0.07 imp:pre:1p;ind:pre:1p; +grandit grandir VER 63.99 46.69 7.64 6.89 ind:pre:3s;ind:pas:3s; +grand_croix grand_croix NOM m p 0.00 0.07 0.00 0.07 +grand_duc grand_duc NOM m p 2.03 1.76 0.05 0.54 +grand_mère grand_mère NOM f p 73.22 94.59 0.30 0.68 +grand_oncle grand_oncle NOM m p 0.45 4.26 0.00 0.61 +grands_parents grands_parents NOM m p 4.59 9.19 4.59 9.19 +grand_père grand_père NOM m p 75.64 96.49 0.45 1.28 +grand_tante grand_tante NOM f p 1.17 1.76 0.00 0.07 +grands grand ADJ m p 638.72 1244.66 59.52 201.55 +grange grange NOM f s 7.33 46.01 6.95 40.74 +granges grange NOM f p 7.33 46.01 0.38 5.27 +grangette grangette NOM f s 0.00 0.14 0.00 0.14 +granit granit NOM m s 1.74 10.07 1.74 9.80 +granita graniter VER 0.00 0.20 0.00 0.14 ind:pas:3s; +granite granite NOM m s 0.34 0.47 0.34 0.47 +granitique granitique ADJ s 0.14 0.61 0.14 0.20 +granitiques granitique ADJ p 0.14 0.61 0.00 0.41 +granito granito NOM m s 0.00 0.07 0.00 0.07 +granits granit NOM m p 1.74 10.07 0.00 0.27 +granité granité NOM m s 0.17 0.07 0.12 0.07 +granitée graniter VER f s 0.00 0.20 0.00 0.07 par:pas; +granités granité NOM m p 0.17 0.07 0.05 0.00 +granulaire granulaire ADJ m s 0.01 0.00 0.01 0.00 +granulait granuler VER 0.00 0.27 0.00 0.14 ind:imp:3s; +granulation granulation NOM f s 0.01 0.34 0.01 0.07 +granulations granulation NOM f p 0.01 0.34 0.00 0.27 +granule granuler VER 0.00 0.27 0.00 0.07 ind:pre:3s; +granules granule NOM m p 0.11 0.14 0.11 0.14 +granuleuse granuleux ADJ f s 0.22 1.55 0.17 0.95 +granuleuses granuleux ADJ f p 0.22 1.55 0.01 0.07 +granuleux granuleux ADJ m s 0.22 1.55 0.04 0.54 +granulie granulie NOM f s 0.01 0.00 0.01 0.00 +granulome granulome NOM m s 0.03 0.00 0.03 0.00 +granulé granulé NOM m s 0.32 0.47 0.00 0.14 +granulée granuler VER f s 0.00 0.27 0.00 0.07 par:pas; +granulés granulé NOM m p 0.32 0.47 0.32 0.34 +grape_fruit grape_fruit NOM m s 0.00 0.27 0.00 0.27 +graph graph NOM s 0.01 0.00 0.01 0.00 +graphe graphe NOM m s 0.14 0.00 0.12 0.00 +graphes graphe NOM m p 0.14 0.00 0.03 0.00 +graphie graphie NOM f s 0.02 0.61 0.02 0.41 +graphies graphie NOM f p 0.02 0.61 0.00 0.20 +graphique graphique NOM s 1.31 0.61 0.72 0.20 +graphiques graphique NOM p 1.31 0.61 0.59 0.41 +graphisme graphisme NOM m s 0.28 0.41 0.23 0.41 +graphismes graphisme NOM m p 0.28 0.41 0.04 0.00 +graphiste graphiste NOM s 0.18 0.00 0.18 0.00 +graphite graphite NOM m s 0.29 0.07 0.29 0.00 +graphites graphite NOM m p 0.29 0.07 0.00 0.07 +graphologie graphologie NOM f s 0.15 0.00 0.15 0.00 +graphologique graphologique ADJ m s 0.01 0.07 0.01 0.07 +graphologue graphologue NOM s 0.18 0.20 0.17 0.14 +graphologues graphologue NOM p 0.18 0.20 0.01 0.07 +graphomane graphomane NOM s 0.01 0.14 0.01 0.00 +graphomanes graphomane NOM p 0.01 0.14 0.00 0.14 +graphomanie graphomanie NOM f s 0.00 0.07 0.00 0.07 +graphomètre graphomètre NOM m s 0.00 0.07 0.00 0.07 +graphophone graphophone NOM m s 0.01 0.00 0.01 0.00 +grappa grappa NOM f s 0.72 0.34 0.72 0.34 +grappe grappe NOM f s 2.51 12.30 1.93 4.39 +grappes grappe NOM f p 2.51 12.30 0.59 7.91 +grappillage grappillage NOM m s 0.07 0.00 0.07 0.00 +grappillais grappiller VER 0.13 0.95 0.00 0.14 ind:imp:1s; +grappillait grappiller VER 0.13 0.95 0.01 0.20 ind:imp:3s; +grappillent grappiller VER 0.13 0.95 0.00 0.07 ind:pre:3p; +grappiller grappiller VER 0.13 0.95 0.08 0.41 inf; +grappilleur grappilleur NOM m s 0.01 0.00 0.01 0.00 +grappillon grappillon NOM m s 0.00 0.14 0.00 0.07 +grappillons grappillon NOM m p 0.00 0.14 0.00 0.07 +grappillé grappiller VER m s 0.13 0.95 0.01 0.07 par:pas; +grappillées grappiller VER f p 0.13 0.95 0.03 0.07 par:pas; +grappin grappin NOM m s 1.54 0.81 1.36 0.68 +grappins grappin NOM m p 1.54 0.81 0.18 0.14 +gras_double gras_double NOM m s 0.22 1.08 0.22 1.01 +gras_double gras_double NOM m p 0.22 1.08 0.00 0.07 +gras gras ADJ m 14.31 48.92 10.55 25.61 +grasse gras ADJ f s 14.31 48.92 2.19 14.12 +grassement grassement ADV 0.24 0.81 0.24 0.81 +grasses gras ADJ f p 14.31 48.92 1.57 9.19 +grasseya grasseyer VER 0.00 0.61 0.00 0.20 ind:pas:3s; +grasseyait grasseyer VER 0.00 0.61 0.00 0.14 ind:imp:3s; +grasseyant grasseyant ADJ m s 0.00 0.61 0.00 0.20 +grasseyante grasseyant ADJ f s 0.00 0.61 0.00 0.41 +grasseyement grasseyement NOM m s 0.00 0.41 0.00 0.27 +grasseyements grasseyement NOM m p 0.00 0.41 0.00 0.14 +grasseyer grasseyer VER 0.00 0.61 0.00 0.07 inf; +grasseyé grasseyer VER m s 0.00 0.61 0.00 0.07 par:pas; +grassouillet grassouillet ADJ m s 1.08 1.96 0.66 0.88 +grassouillets grassouillet ADJ m p 1.08 1.96 0.06 0.14 +grassouillette grassouillet ADJ f s 1.08 1.96 0.28 0.74 +grassouillettes grassouillet ADJ f p 1.08 1.96 0.08 0.20 +gratifia gratifier VER 0.76 4.26 0.00 0.74 ind:pas:3s; +gratifiaient gratifier VER 0.76 4.26 0.00 0.14 ind:imp:3p; +gratifiait gratifier VER 0.76 4.26 0.01 0.20 ind:imp:3s; +gratifiant gratifiant ADJ m s 0.99 0.27 0.78 0.14 +gratifiante gratifiant ADJ f s 0.99 0.27 0.21 0.14 +gratification gratification NOM f s 0.34 0.68 0.29 0.34 +gratifications gratification NOM f p 0.34 0.68 0.04 0.34 +gratifie gratifier VER 0.76 4.26 0.17 0.68 ind:pre:1s;ind:pre:3s; +gratifier gratifier VER 0.76 4.26 0.19 0.54 inf; +gratifierait gratifier VER 0.76 4.26 0.00 0.07 cnd:pre:3s; +gratifies gratifier VER 0.76 4.26 0.00 0.07 ind:pre:2s; +gratifiez gratifier VER 0.76 4.26 0.01 0.00 ind:pre:2p; +gratifièrent gratifier VER 0.76 4.26 0.01 0.07 ind:pas:3p; +gratifié gratifier VER m s 0.76 4.26 0.14 1.15 par:pas; +gratifiée gratifier VER f s 0.76 4.26 0.03 0.20 par:pas; +gratifiés gratifier VER m p 0.76 4.26 0.10 0.27 par:pas; +gratin gratin NOM m s 1.63 2.16 1.63 2.09 +gratiner gratiner VER 0.29 0.81 0.01 0.07 inf; +gratins gratin NOM m p 1.63 2.16 0.00 0.07 +gratiné gratiner VER m s 0.29 0.81 0.04 0.20 par:pas; +gratinée gratiner VER f s 0.29 0.81 0.05 0.34 par:pas; +gratinées gratiner VER f p 0.29 0.81 0.17 0.20 par:pas; +gratinés gratiner VER m p 0.29 0.81 0.03 0.00 par:pas; +gratis_pro_deo gratis_pro_deo ADV 0.00 0.14 0.00 0.14 +gratis gratis ADV 4.39 3.11 4.39 3.11 +gratitude gratitude NOM f s 7.61 8.38 7.61 8.24 +gratitudes gratitude NOM f p 7.61 8.38 0.00 0.14 +gratos gratos ADV 3.94 0.68 3.94 0.68 +gratouillait gratouiller VER 0.17 0.41 0.00 0.07 ind:imp:3s; +gratouillant gratouiller VER 0.17 0.41 0.00 0.07 par:pre; +gratouille gratouiller VER 0.17 0.41 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gratouillerait gratouiller VER 0.17 0.41 0.00 0.07 cnd:pre:3s; +gratouillis gratouillis NOM m 0.00 0.07 0.00 0.07 +gratta gratter VER 12.11 38.51 0.00 5.81 ind:pas:3s; +grattage grattage NOM m s 0.10 0.41 0.10 0.34 +grattages grattage NOM m p 0.10 0.41 0.00 0.07 +grattai gratter VER 12.11 38.51 0.00 0.20 ind:pas:1s; +grattaient gratter VER 12.11 38.51 0.14 0.88 ind:imp:3p; +grattais gratter VER 12.11 38.51 0.13 0.88 ind:imp:1s;ind:imp:2s; +grattait gratter VER 12.11 38.51 0.25 5.14 ind:imp:3s; +grattant gratter VER 12.11 38.51 0.12 3.85 par:pre; +gratte_ciel gratte_ciel NOM m 1.40 3.04 1.14 3.04 +gratte_ciel gratte_ciel NOM m p 1.40 3.04 0.26 0.00 +gratte_cul gratte_cul NOM m 0.00 0.14 0.00 0.14 +gratte_dos gratte_dos NOM m 0.11 0.00 0.11 0.00 +gratte_papier gratte_papier NOM m 0.67 0.54 0.45 0.54 +gratte_papier gratte_papier NOM m p 0.67 0.54 0.22 0.00 +gratte_pieds gratte_pieds NOM m 0.00 0.20 0.00 0.20 +gratte gratter VER 12.11 38.51 3.75 7.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grattement grattement NOM m s 0.15 1.49 0.05 1.22 +grattements grattement NOM m p 0.15 1.49 0.10 0.27 +grattent gratter VER 12.11 38.51 0.51 1.15 ind:pre:3p; +gratter gratter VER 12.11 38.51 5.03 8.85 inf; +grattera gratter VER 12.11 38.51 0.03 0.14 ind:fut:3s; +gratterai gratter VER 12.11 38.51 0.10 0.07 ind:fut:1s; +gratteraient gratter VER 12.11 38.51 0.00 0.07 cnd:pre:3p; +gratterait gratter VER 12.11 38.51 0.01 0.20 cnd:pre:3s; +gratterez gratter VER 12.11 38.51 0.00 0.07 ind:fut:2p; +gratterons gratteron NOM m p 0.00 0.20 0.00 0.20 +grattes gratter VER 12.11 38.51 0.49 0.27 ind:pre:2s; +gratteur gratteur NOM m s 0.05 0.34 0.04 0.07 +gratteurs gratteur NOM m p 0.05 0.34 0.01 0.27 +grattez gratter VER 12.11 38.51 0.80 0.07 imp:pre:2p;ind:pre:2p; +grattoir grattoir NOM m s 0.09 1.49 0.08 1.15 +grattoirs grattoir NOM m p 0.09 1.49 0.01 0.34 +grattons gratter VER 12.11 38.51 0.02 0.00 ind:pre:1p; +grattât gratter VER 12.11 38.51 0.10 0.07 sub:imp:3s; +grattouillant grattouiller VER 0.01 0.27 0.00 0.07 par:pre; +grattouillent grattouiller VER 0.01 0.27 0.00 0.07 ind:pre:3p; +grattouiller grattouiller VER 0.01 0.27 0.01 0.00 inf; +grattouilles grattouiller VER 0.01 0.27 0.00 0.07 ind:pre:2s; +grattouillis grattouillis NOM m 0.05 0.07 0.05 0.07 +grattouillé grattouiller VER m s 0.01 0.27 0.00 0.07 par:pas; +gratté gratter VER m s 12.11 38.51 0.56 2.43 par:pas; +grattée gratter VER f s 12.11 38.51 0.03 0.47 par:pas; +grattées gratter VER f p 12.11 38.51 0.01 0.41 par:pas; +gratture gratture NOM f s 0.00 0.07 0.00 0.07 +grattés gratter VER m p 12.11 38.51 0.04 0.41 par:pas; +gratuit gratuit ADJ m s 24.28 13.11 12.15 5.81 +gratuite gratuit ADJ f s 24.28 13.11 6.43 4.73 +gratuitement gratuitement ADV 6.37 2.91 6.37 2.91 +gratuites gratuit ADJ f p 24.28 13.11 1.81 1.15 +gratuits gratuit ADJ m p 24.28 13.11 3.89 1.42 +gratuité gratuité NOM f s 0.05 1.69 0.05 1.69 +grau grau NOM m s 0.01 0.00 0.01 0.00 +grava graver VER 10.34 18.38 0.04 0.47 ind:pas:3s; +gravai graver VER 10.34 18.38 0.00 0.07 ind:pas:1s; +gravaient graver VER 10.34 18.38 0.02 0.27 ind:imp:3p; +gravais graver VER 10.34 18.38 0.02 0.20 ind:imp:1s; +gravait graver VER 10.34 18.38 0.16 0.68 ind:imp:3s; +gravant graver VER 10.34 18.38 0.02 0.34 par:pre; +gravats gravats NOM m p 0.34 4.12 0.34 4.12 +grave grave ADJ s 142.48 93.78 134.19 74.86 +graveleuse graveleux ADJ f s 0.06 1.35 0.01 0.20 +graveleuses graveleux ADJ f p 0.06 1.35 0.00 0.47 +graveleux graveleux ADJ m s 0.06 1.35 0.04 0.68 +gravelle gravelle NOM f s 0.00 0.34 0.00 0.27 +gravelles gravelle NOM f p 0.00 0.34 0.00 0.07 +gravelé graveler VER m s 0.00 0.14 0.00 0.07 par:pas; +gravelés graveler VER m p 0.00 0.14 0.00 0.07 par:pas; +gravement gravement ADV 6.43 19.73 6.43 19.73 +gravent graver VER 10.34 18.38 0.04 0.20 ind:pre:3p; +graver graver VER 10.34 18.38 1.94 1.76 inf; +graveraient graver VER 10.34 18.38 0.00 0.14 cnd:pre:3p; +graverais graver VER 10.34 18.38 0.01 0.00 cnd:pre:1s; +graverait graver VER 10.34 18.38 0.01 0.00 cnd:pre:3s; +graves grave ADJ p 142.48 93.78 8.29 18.92 +graveur graveur NOM m s 0.40 1.08 0.38 0.81 +graveurs graveur NOM m p 0.40 1.08 0.02 0.27 +gravez graver VER 10.34 18.38 0.47 0.00 imp:pre:2p;ind:pre:2p; +gravi gravir VER m s 2.60 17.16 0.44 2.16 par:pas; +gravide gravide ADJ s 0.04 0.00 0.04 0.00 +gravidité gravidité NOM f s 0.01 0.00 0.01 0.00 +gravie gravir VER f s 2.60 17.16 0.00 0.20 par:pas; +gravier gravier NOM m s 2.32 15.41 1.40 11.35 +graviers gravier NOM m p 2.32 15.41 0.92 4.05 +gravies gravir VER f p 2.60 17.16 0.10 0.07 par:pas; +gravillon gravillon NOM m s 0.10 1.22 0.00 0.20 +gravillonnée gravillonner VER f s 0.00 0.20 0.00 0.14 par:pas; +gravillonnées gravillonner VER f p 0.00 0.20 0.00 0.07 par:pas; +gravillons gravillon NOM m p 0.10 1.22 0.10 1.01 +gravir gravir VER 2.60 17.16 1.30 5.41 inf; +gravirai gravir VER 2.60 17.16 0.05 0.00 ind:fut:1s; +gravirait gravir VER 2.60 17.16 0.00 0.07 cnd:pre:3s; +gravirent gravir VER 2.60 17.16 0.01 0.68 ind:pas:3p; +gravirons gravir VER 2.60 17.16 0.01 0.07 ind:fut:1p; +gravis gravir VER m p 2.60 17.16 0.40 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +gravissaient gravir VER 2.60 17.16 0.00 0.41 ind:imp:3p; +gravissais gravir VER 2.60 17.16 0.01 0.20 ind:imp:1s;ind:imp:2s; +gravissait gravir VER 2.60 17.16 0.01 0.95 ind:imp:3s; +gravissant gravir VER 2.60 17.16 0.05 0.81 par:pre; +gravisse gravir VER 2.60 17.16 0.00 0.07 sub:pre:1s; +gravissent gravir VER 2.60 17.16 0.00 0.41 ind:pre:3p; +gravissime gravissime ADJ f s 0.41 0.14 0.17 0.07 +gravissimes gravissime ADJ p 0.41 0.14 0.25 0.07 +gravissions gravir VER 2.60 17.16 0.00 0.14 ind:imp:1p; +gravissons gravir VER 2.60 17.16 0.01 0.47 imp:pre:1p;ind:pre:1p; +gravit gravir VER 2.60 17.16 0.22 3.92 ind:pre:3s;ind:pas:3s; +gravitaient graviter VER 0.39 1.08 0.00 0.34 ind:imp:3p; +gravitait graviter VER 0.39 1.08 0.03 0.20 ind:imp:3s; +gravitant graviter VER 0.39 1.08 0.00 0.07 par:pre; +gravitation gravitation NOM f s 0.98 1.22 0.98 1.22 +gravitationnel gravitationnel ADJ m s 1.66 0.00 0.61 0.00 +gravitationnelle gravitationnel ADJ f s 1.66 0.00 0.59 0.00 +gravitationnelles gravitationnel ADJ f p 1.66 0.00 0.44 0.00 +gravitationnels gravitationnel ADJ m p 1.66 0.00 0.01 0.00 +gravite graviter VER 0.39 1.08 0.21 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +graviter graviter VER 0.39 1.08 0.04 0.27 inf; +gravières gravière NOM f p 0.00 0.07 0.00 0.07 +gravitons graviton NOM m p 0.02 0.00 0.02 0.00 +gravité gravité NOM f s 7.58 17.16 7.58 17.16 +gravons graver VER 10.34 18.38 0.05 0.00 imp:pre:1p; +gravos gravos ADJ m 0.01 0.20 0.01 0.20 +gravosse gravosse NOM f s 0.00 1.42 0.00 1.35 +gravosses gravosse NOM f p 0.00 1.42 0.00 0.07 +gravât graver VER 10.34 18.38 0.00 0.07 sub:imp:3s; +gravèrent graver VER 10.34 18.38 0.14 0.07 ind:pas:3p; +gravé graver VER m s 10.34 18.38 3.58 6.08 par:pas; +gravée graver VER f s 10.34 18.38 1.05 2.57 par:pas; +gravées graver VER f p 10.34 18.38 0.82 1.69 par:pas; +gravure gravure NOM f s 1.45 10.00 0.88 3.85 +gravures gravure NOM f p 1.45 10.00 0.57 6.15 +gravés graver VER m p 10.34 18.38 1.13 3.11 par:pas; +gray gray NOM m s 0.10 0.07 0.03 0.00 +grays gray NOM m p 0.10 0.07 0.08 0.07 +grec grec NOM m s 11.36 26.22 6.31 14.86 +grecque grec ADJ f s 12.14 29.46 3.69 9.26 +grecques grec ADJ f p 12.14 29.46 0.96 3.18 +grecs grec NOM m p 11.36 26.22 4.58 8.51 +gredin gredin NOM m s 1.82 0.61 1.25 0.34 +gredine gredin NOM f s 1.82 0.61 0.02 0.07 +gredins gredin NOM m p 1.82 0.61 0.55 0.20 +green green NOM m s 1.13 0.27 1.04 0.07 +greens green NOM m p 1.13 0.27 0.09 0.20 +greffage greffage NOM m s 0.01 0.00 0.01 0.00 +greffaient greffer VER 2.33 2.30 0.00 0.07 ind:imp:3p; +greffais greffer VER 2.33 2.30 0.01 0.00 ind:imp:1s; +greffait greffer VER 2.33 2.30 0.00 0.14 ind:imp:3s; +greffant greffer VER 2.33 2.30 0.01 0.27 par:pre; +greffe greffe NOM s 4.25 5.41 3.31 4.86 +greffent greffer VER 2.33 2.30 0.14 0.14 ind:pre:3p; +greffer greffer VER 2.33 2.30 0.84 0.61 inf; +greffera greffer VER 2.33 2.30 0.01 0.07 ind:fut:3s; +grefferais greffer VER 2.33 2.30 0.00 0.07 cnd:pre:1s; +grefferons greffer VER 2.33 2.30 0.00 0.07 ind:fut:1p; +grefferont greffer VER 2.33 2.30 0.00 0.07 ind:fut:3p; +greffes greffe NOM p 4.25 5.41 0.94 0.54 +greffier greffier NOM m s 1.54 3.65 1.42 3.18 +greffiers greffier NOM m p 1.54 3.65 0.04 0.47 +greffière greffier NOM f s 1.54 3.65 0.08 0.00 +greffon greffon NOM m s 0.33 0.20 0.18 0.00 +greffons greffon NOM m p 0.33 0.20 0.16 0.20 +greffé greffer VER m s 2.33 2.30 0.44 0.47 par:pas; +greffée greffé ADJ f s 0.34 0.41 0.26 0.34 +greffées greffer VER f p 2.33 2.30 0.01 0.00 par:pas; +greffés greffer VER m p 2.33 2.30 0.20 0.07 par:pas; +grelot grelot NOM m s 0.43 4.66 0.11 1.82 +grelots grelot NOM m p 0.43 4.66 0.32 2.84 +grelotta grelotter VER 1.25 10.27 0.00 0.20 ind:pas:3s; +grelottaient grelotter VER 1.25 10.27 0.00 0.41 ind:imp:3p; +grelottais grelotter VER 1.25 10.27 0.01 0.47 ind:imp:1s; +grelottait grelotter VER 1.25 10.27 0.27 1.76 ind:imp:3s; +grelottant grelottant ADJ m s 0.11 2.16 0.10 0.74 +grelottante grelottant ADJ f s 0.11 2.16 0.00 0.68 +grelottantes grelottant ADJ f p 0.11 2.16 0.00 0.34 +grelottants grelottant ADJ m p 0.11 2.16 0.01 0.41 +grelotte grelotter VER 1.25 10.27 0.65 1.49 ind:pre:1s;ind:pre:3s; +grelottement grelottement NOM m s 0.00 0.95 0.00 0.88 +grelottements grelottement NOM m p 0.00 0.95 0.00 0.07 +grelottent grelotter VER 1.25 10.27 0.00 0.47 ind:pre:3p; +grelotter grelotter VER 1.25 10.27 0.14 2.03 inf; +grelottes grelotter VER 1.25 10.27 0.01 0.20 ind:pre:2s; +grelotteux grelotteux NOM m 0.00 0.07 0.00 0.07 +grelottions grelotter VER 1.25 10.27 0.14 0.07 ind:imp:1p; +grelottons grelotter VER 1.25 10.27 0.00 0.20 ind:pre:1p; +grelottèrent grelotter VER 1.25 10.27 0.00 0.07 ind:pas:3p; +grelotté grelotter VER m s 1.25 10.27 0.01 0.27 par:pas; +grelottée grelotter VER f s 1.25 10.27 0.00 0.07 par:pas; +greluche greluche NOM f s 0.57 1.01 0.29 0.47 +greluches greluche NOM f p 0.57 1.01 0.28 0.54 +greluchon greluchon NOM m s 0.00 0.20 0.00 0.20 +grenache grenache NOM m s 0.00 0.27 0.00 0.27 +grenadage grenadage NOM m s 0.03 0.00 0.03 0.00 +grenade grenade NOM f s 11.67 12.97 6.32 6.49 +grenader grenader VER 0.05 0.20 0.05 0.07 inf; +grenades grenade NOM f p 11.67 12.97 5.35 6.49 +grenadeur grenadeur NOM m s 0.01 0.00 0.01 0.00 +grenadier grenadier NOM m s 0.14 4.05 0.04 1.42 +grenadiers grenadier NOM m p 0.14 4.05 0.10 2.64 +grenadine grenadine NOM f s 0.41 3.99 0.14 3.72 +grenadines grenadine NOM f p 0.41 3.99 0.27 0.27 +grenadé grenader VER m s 0.05 0.20 0.00 0.14 par:pas; +grenaille grenaille NOM f s 0.00 0.14 0.00 0.07 +grenailles grenaille NOM f p 0.00 0.14 0.00 0.07 +grenat grenat ADJ 0.16 3.85 0.16 3.85 +grenats grenat NOM m p 0.06 0.61 0.04 0.27 +grenelle greneler VER 0.00 0.07 0.00 0.07 imp:pre:2s; +greneta greneter VER 0.00 0.07 0.00 0.07 ind:pas:3s; +greneuse greneur NOM f s 0.00 0.07 0.00 0.07 +grenier grenier NOM m s 9.39 24.39 9.05 19.53 +greniers grenier NOM m p 9.39 24.39 0.34 4.86 +grenoblois grenoblois NOM m s 0.00 0.14 0.00 0.14 +grenouillage grenouillage NOM m s 0.14 0.00 0.14 0.00 +grenouillait grenouiller VER 0.00 0.07 0.00 0.07 ind:imp:3s; +grenouillard grenouillard ADJ m s 0.01 0.00 0.01 0.00 +grenouille_taureau grenouille_taureau NOM f s 0.01 0.00 0.01 0.00 +grenouille grenouille NOM f s 9.09 10.47 5.74 4.59 +grenouilles grenouille NOM f p 9.09 10.47 3.35 5.88 +grenouillettes grenouillette NOM f p 0.00 0.07 0.00 0.07 +grenouillère grenouiller NOM f s 0.06 0.00 0.06 0.00 +grenouillères grenouillère NOM f p 0.05 0.00 0.05 0.00 +grené grener VER m s 0.00 0.34 0.00 0.07 par:pas; +grenu grenu ADJ m s 0.01 1.89 0.01 0.74 +grenée grener VER f s 0.00 0.34 0.00 0.07 par:pas; +grenue grenu ADJ f s 0.01 1.89 0.00 0.68 +grenées grener VER f p 0.00 0.34 0.00 0.07 par:pas; +grenues grenu ADJ f p 0.01 1.89 0.00 0.34 +grenures grenure NOM f p 0.00 0.14 0.00 0.14 +grenus grenu ADJ m p 0.01 1.89 0.00 0.14 +gressin gressin NOM m s 0.04 0.27 0.03 0.20 +gressins gressin NOM m p 0.04 0.27 0.01 0.07 +gretchen gretchen NOM f s 1.89 0.41 1.89 0.34 +gretchens gretchen NOM f p 1.89 0.41 0.00 0.07 +grevaient grever VER 0.18 0.81 0.00 0.07 ind:imp:3p; +grever grever VER 0.18 0.81 0.02 0.07 inf; +grevé grever VER m s 0.18 0.81 0.01 0.14 par:pas; +grevée grever VER f s 0.18 0.81 0.00 0.20 par:pas; +grevés grever VER m p 0.18 0.81 0.00 0.07 par:pas; +gri_gri gri_gri NOM m s 0.21 0.14 0.21 0.14 +gribiche gribiche ADJ f s 0.00 0.14 0.00 0.14 +gribouilla gribouiller VER 0.60 1.69 0.00 0.07 ind:pas:3s; +gribouillage gribouillage NOM m s 0.66 0.54 0.51 0.20 +gribouillages gribouillage NOM m p 0.66 0.54 0.16 0.34 +gribouillais gribouiller VER 0.60 1.69 0.02 0.00 ind:imp:1s; +gribouillait gribouiller VER 0.60 1.69 0.01 0.14 ind:imp:3s; +gribouillant gribouiller VER 0.60 1.69 0.01 0.07 par:pre; +gribouille gribouiller VER 0.60 1.69 0.19 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gribouillent gribouiller VER 0.60 1.69 0.00 0.07 ind:pre:3p; +gribouiller gribouiller VER 0.60 1.69 0.13 0.41 inf; +gribouilles gribouiller VER 0.60 1.69 0.01 0.07 ind:pre:2s; +gribouilleur gribouilleur NOM m s 0.06 0.07 0.06 0.07 +gribouillez gribouiller VER 0.60 1.69 0.03 0.00 imp:pre:2p;ind:pre:2p; +gribouillis gribouillis NOM m 0.85 1.01 0.85 1.01 +gribouillé gribouiller VER m s 0.60 1.69 0.18 0.14 par:pas; +gribouillée gribouiller VER f s 0.60 1.69 0.01 0.07 par:pas; +gribouillées gribouiller VER f p 0.60 1.69 0.00 0.14 par:pas; +gribouillés gribouiller VER m p 0.60 1.69 0.00 0.20 par:pas; +grief grief NOM m s 0.77 7.43 0.23 2.91 +griefs grief NOM m p 0.77 7.43 0.54 4.53 +griffa griffer VER 3.28 9.53 0.00 0.68 ind:pas:3s; +griffage griffage NOM m s 0.00 0.07 0.00 0.07 +griffai griffer VER 3.28 9.53 0.00 0.07 ind:pas:1s; +griffaient griffer VER 3.28 9.53 0.02 0.95 ind:imp:3p; +griffais griffer VER 3.28 9.53 0.01 0.07 ind:imp:1s; +griffait griffer VER 3.28 9.53 0.10 0.88 ind:imp:3s; +griffant griffer VER 3.28 9.53 0.05 0.68 par:pre; +griffe griffe NOM f s 8.11 13.92 1.06 2.70 +griffent griffer VER 3.28 9.53 0.20 0.20 ind:pre:3p; +griffer griffer VER 3.28 9.53 0.64 2.57 inf; +griffera griffer VER 3.28 9.53 0.02 0.14 ind:fut:3s; +grifferait griffer VER 3.28 9.53 0.00 0.07 cnd:pre:3s; +griffes griffe NOM f p 8.11 13.92 7.04 11.22 +griffeur griffeur NOM m s 0.01 0.00 0.01 0.00 +griffon griffon NOM m s 0.59 1.42 0.57 1.01 +griffonna griffonner VER 0.65 7.97 0.00 0.68 ind:pas:3s; +griffonnage griffonnage NOM m s 0.07 0.61 0.04 0.20 +griffonnages griffonnage NOM m p 0.07 0.61 0.04 0.41 +griffonnai griffonner VER 0.65 7.97 0.00 0.14 ind:pas:1s; +griffonnaient griffonner VER 0.65 7.97 0.00 0.07 ind:imp:3p; +griffonnais griffonner VER 0.65 7.97 0.01 0.20 ind:imp:1s;ind:imp:2s; +griffonnait griffonner VER 0.65 7.97 0.16 0.61 ind:imp:3s; +griffonnant griffonner VER 0.65 7.97 0.03 0.47 par:pre; +griffonne griffonner VER 0.65 7.97 0.18 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +griffonnent griffonner VER 0.65 7.97 0.00 0.14 ind:pre:3p; +griffonner griffonner VER 0.65 7.97 0.10 1.55 inf; +griffonnes griffonner VER 0.65 7.97 0.03 0.07 ind:pre:2s; +griffonneur griffonneur NOM m s 0.14 0.00 0.14 0.00 +griffonnez griffonner VER 0.65 7.97 0.02 0.00 imp:pre:2p;ind:pre:2p; +griffonné griffonner VER m s 0.65 7.97 0.04 1.15 par:pas; +griffonnée griffonner VER f s 0.65 7.97 0.03 0.34 par:pas; +griffonnées griffonner VER f p 0.65 7.97 0.01 0.74 par:pas; +griffonnés griffonner VER m p 0.65 7.97 0.04 0.74 par:pas; +griffons griffon NOM m p 0.59 1.42 0.03 0.41 +grifftons griffton NOM m p 0.00 0.07 0.00 0.07 +griffé griffer VER m s 3.28 9.53 1.40 0.74 par:pas; +griffu griffu ADJ m s 0.21 1.89 0.16 0.27 +griffée griffer VER f s 3.28 9.53 0.21 0.34 par:pas; +griffue griffu ADJ f s 0.21 1.89 0.00 0.34 +griffées griffé ADJ f p 0.14 0.81 0.01 0.14 +griffues griffu ADJ f p 0.21 1.89 0.01 0.95 +griffure griffure NOM f s 0.82 0.81 0.19 0.20 +griffures griffure NOM f p 0.82 0.81 0.63 0.61 +griffés griffer VER m p 3.28 9.53 0.05 0.20 par:pas; +griffus griffu ADJ m p 0.21 1.89 0.04 0.34 +grifton grifton NOM m s 0.00 0.14 0.00 0.14 +grignota grignoter VER 3.52 10.27 0.00 0.68 ind:pas:3s; +grignotage grignotage NOM m s 0.10 0.34 0.10 0.20 +grignotages grignotage NOM m p 0.10 0.34 0.00 0.14 +grignotaient grignoter VER 3.52 10.27 0.02 0.61 ind:imp:3p; +grignotais grignoter VER 3.52 10.27 0.03 0.27 ind:imp:1s; +grignotait grignoter VER 3.52 10.27 0.03 1.69 ind:imp:3s; +grignotant grignoter VER 3.52 10.27 0.16 1.22 par:pre; +grignote grignoter VER 3.52 10.27 0.60 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +grignotement grignotement NOM m s 0.04 0.88 0.04 0.88 +grignotent grignoter VER 3.52 10.27 0.14 0.47 ind:pre:3p; +grignoter grignoter VER 3.52 10.27 1.69 2.57 inf; +grignotera grignoter VER 3.52 10.27 0.01 0.07 ind:fut:3s; +grignoterai grignoter VER 3.52 10.27 0.16 0.00 ind:fut:1s; +grignoteraient grignoter VER 3.52 10.27 0.00 0.07 cnd:pre:3p; +grignoterons grignoter VER 3.52 10.27 0.10 0.00 ind:fut:1p; +grignoteront grignoter VER 3.52 10.27 0.01 0.00 ind:fut:3p; +grignoteurs grignoteur NOM m p 0.00 0.07 0.00 0.07 +grignoteuses grignoteur ADJ f p 0.00 0.14 0.00 0.14 +grignotions grignoter VER 3.52 10.27 0.00 0.14 ind:imp:1p; +grignotis grignotis NOM m 0.00 0.14 0.00 0.14 +grignotons grignoter VER 3.52 10.27 0.02 0.07 imp:pre:1p;ind:pre:1p; +grignotèrent grignoter VER 3.52 10.27 0.00 0.14 ind:pas:3p; +grignoté grignoter VER m s 3.52 10.27 0.51 0.74 par:pas; +grignotée grignoter VER f s 3.52 10.27 0.01 0.14 par:pas; +grignotées grignoter VER f p 3.52 10.27 0.02 0.07 par:pas; +grignotés grignoter VER m p 3.52 10.27 0.00 0.07 par:pas; +grigou grigou NOM m s 0.02 0.41 0.02 0.41 +grigri grigri NOM m s 0.48 0.61 0.46 0.07 +grigris grigri NOM m p 0.48 0.61 0.02 0.54 +gril gril NOM m s 0.68 1.76 0.64 1.49 +grill_room grill_room NOM m s 0.00 0.27 0.00 0.27 +grill grill NOM m s 1.66 0.14 1.66 0.14 +grilla griller VER 14.20 12.70 0.00 0.27 ind:pas:3s; +grillade grillade NOM f s 0.69 1.08 0.41 0.54 +grilladerie grilladerie NOM f s 0.02 0.00 0.02 0.00 +grillades grillade NOM f p 0.69 1.08 0.28 0.54 +grillage grillage NOM m s 1.48 12.03 1.47 9.59 +grillageront grillager VER 0.18 0.88 0.00 0.07 ind:fut:3p; +grillages grillage NOM m p 1.48 12.03 0.01 2.43 +grillagez grillager VER 0.18 0.88 0.01 0.00 imp:pre:2p; +grillagé grillager VER m s 0.18 0.88 0.01 0.20 par:pas; +grillagée grillager VER f s 0.18 0.88 0.12 0.34 par:pas; +grillagées grillager VER f p 0.18 0.88 0.04 0.20 par:pas; +grillagés grillagé ADJ m p 0.14 2.64 0.14 0.20 +grillaient griller VER 14.20 12.70 0.00 0.14 ind:imp:3p; +grillais griller VER 14.20 12.70 0.01 0.14 ind:imp:1s; +grillait griller VER 14.20 12.70 0.06 1.35 ind:imp:3s; +grillant griller VER 14.20 12.70 0.16 0.88 par:pre; +grille_pain grille_pain NOM m 2.90 0.27 2.90 0.27 +grille grille NOM f s 11.01 58.24 9.09 43.85 +grillent griller VER 14.20 12.70 0.24 0.27 ind:pre:3p; +griller griller VER 14.20 12.70 4.97 4.05 inf; +grillera griller VER 14.20 12.70 0.16 0.00 ind:fut:3s; +grillerai griller VER 14.20 12.70 0.02 0.00 ind:fut:1s; +grilleraient griller VER 14.20 12.70 0.02 0.07 cnd:pre:3p; +grillerais griller VER 14.20 12.70 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +grillerait griller VER 14.20 12.70 0.01 0.00 cnd:pre:3s; +grilleras griller VER 14.20 12.70 0.28 0.00 ind:fut:2s; +grillerez griller VER 14.20 12.70 0.12 0.07 ind:fut:2p; +grillerions griller VER 14.20 12.70 0.14 0.00 cnd:pre:1p; +grilleront griller VER 14.20 12.70 0.01 0.07 ind:fut:3p; +grilles grille NOM f p 11.01 58.24 1.92 14.39 +grillez griller VER 14.20 12.70 0.16 0.00 imp:pre:2p;ind:pre:2p; +grilliez griller VER 14.20 12.70 0.01 0.00 ind:imp:2p; +grilloirs grilloir NOM m p 0.00 0.07 0.00 0.07 +grillon grillon NOM m s 1.45 4.59 0.98 2.09 +grillons grillon NOM m p 1.45 4.59 0.46 2.50 +grillots grillot NOM m p 0.00 0.07 0.00 0.07 +grillé griller VER m s 14.20 12.70 4.10 2.70 par:pas; +grillée grillé ADJ f s 4.30 7.57 0.76 1.15 +grillées grillé ADJ f p 4.30 7.57 0.50 1.62 +grillés grillé ADJ m p 4.30 7.57 0.91 1.49 +grils gril NOM m p 0.68 1.76 0.04 0.27 +grima grimer VER 0.20 0.81 0.04 0.00 ind:pas:3s; +grimace_éclair grimace_éclair NOM f s 0.01 0.00 0.01 0.00 +grimace grimace NOM f s 4.50 31.49 2.28 22.57 +grimacement grimacement NOM m s 0.00 0.07 0.00 0.07 +grimacent grimacer VER 0.49 12.36 0.04 0.14 ind:pre:3p; +grimacer grimacer VER 0.49 12.36 0.16 1.96 inf; +grimaceries grimacerie NOM f p 0.00 0.07 0.00 0.07 +grimaces grimace NOM f p 4.50 31.49 2.23 8.92 +grimacez grimacer VER 0.49 12.36 0.03 0.07 imp:pre:2p;ind:pre:2p; +grimacier grimacier NOM m s 0.27 0.34 0.00 0.34 +grimaciers grimacier NOM m p 0.27 0.34 0.27 0.00 +grimaciez grimacer VER 0.49 12.36 0.00 0.07 ind:imp:2p; +grimacions grimacer VER 0.49 12.36 0.00 0.07 ind:imp:1p; +grimacèrent grimacer VER 0.49 12.36 0.00 0.07 ind:pas:3p; +grimacé grimacer VER m s 0.49 12.36 0.05 0.88 par:pas; +grimage grimage NOM m s 0.02 0.20 0.02 0.20 +grimait grimer VER 0.20 0.81 0.00 0.14 ind:imp:3s; +grimant grimer VER 0.20 0.81 0.00 0.07 par:pre; +grimasse grimer VER 0.20 0.81 0.01 0.00 sub:imp:1s; +grimaça grimacer VER 0.49 12.36 0.01 1.62 ind:pas:3s; +grimaçai grimacer VER 0.49 12.36 0.00 0.07 ind:pas:1s; +grimaçaient grimacer VER 0.49 12.36 0.00 0.54 ind:imp:3p; +grimaçais grimacer VER 0.49 12.36 0.00 0.14 ind:imp:1s; +grimaçait grimacer VER 0.49 12.36 0.02 2.09 ind:imp:3s; +grimaçant grimaçant ADJ m s 0.16 3.04 0.14 1.62 +grimaçante grimaçant ADJ f s 0.16 3.04 0.00 0.68 +grimaçantes grimaçant ADJ f p 0.16 3.04 0.00 0.34 +grimaçants grimaçant ADJ m p 0.16 3.04 0.02 0.41 +grimaçons grimacer VER 0.49 12.36 0.00 0.07 imp:pre:1p; +grimauds grimaud NOM m p 0.00 0.07 0.00 0.07 +griment grimer VER 0.20 0.81 0.00 0.07 ind:pre:3p; +grimer grimer VER 0.20 0.81 0.01 0.07 inf; +grimes grime NOM m p 0.48 0.00 0.48 0.00 +grimoire grimoire NOM m s 0.49 1.22 0.47 0.47 +grimoires grimoire NOM m p 0.49 1.22 0.02 0.74 +grimpa grimper VER 21.05 51.15 0.19 5.81 ind:pas:3s; +grimpai grimper VER 21.05 51.15 0.00 0.95 ind:pas:1s; +grimpaient grimper VER 21.05 51.15 0.04 2.03 ind:imp:3p; +grimpais grimper VER 21.05 51.15 0.51 1.01 ind:imp:1s;ind:imp:2s; +grimpait grimper VER 21.05 51.15 0.39 5.47 ind:imp:3s; +grimpant grimper VER 21.05 51.15 0.13 2.36 par:pre; +grimpante grimpant ADJ f s 0.18 1.55 0.11 0.14 +grimpantes grimpant ADJ f p 0.18 1.55 0.04 0.61 +grimpants grimpant ADJ m p 0.18 1.55 0.01 0.27 +grimpe grimper VER 21.05 51.15 6.12 8.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grimpent grimper VER 21.05 51.15 0.82 2.03 ind:pre:3p; +grimper grimper VER 21.05 51.15 7.48 14.05 inf; +grimpera grimper VER 21.05 51.15 0.20 0.14 ind:fut:3s; +grimperai grimper VER 21.05 51.15 0.03 0.07 ind:fut:1s; +grimperaient grimper VER 21.05 51.15 0.14 0.14 cnd:pre:3p; +grimperais grimper VER 21.05 51.15 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +grimperait grimper VER 21.05 51.15 0.06 0.14 cnd:pre:3s; +grimperez grimper VER 21.05 51.15 0.02 0.00 ind:fut:2p; +grimperons grimper VER 21.05 51.15 0.01 0.00 ind:fut:1p; +grimperont grimper VER 21.05 51.15 0.20 0.00 ind:fut:3p; +grimpette grimpette NOM f s 0.29 1.01 0.29 0.81 +grimpettes grimpette NOM f p 0.29 1.01 0.00 0.20 +grimpeur grimpeur NOM m s 0.91 0.41 0.61 0.34 +grimpeurs grimpeur NOM m p 0.91 0.41 0.25 0.07 +grimpeuse grimpeur NOM f s 0.91 0.41 0.06 0.00 +grimpez grimper VER 21.05 51.15 1.59 0.14 imp:pre:2p;ind:pre:2p; +grimpiez grimper VER 21.05 51.15 0.19 0.00 ind:imp:2p; +grimpions grimper VER 21.05 51.15 0.01 0.61 ind:imp:1p; +grimpâmes grimper VER 21.05 51.15 0.01 0.07 ind:pas:1p; +grimpons grimper VER 21.05 51.15 0.29 0.54 imp:pre:1p;ind:pre:1p; +grimpât grimper VER 21.05 51.15 0.00 0.07 sub:imp:3s; +grimpèrent grimper VER 21.05 51.15 0.12 1.49 ind:pas:3p; +grimpé grimper VER m s 21.05 51.15 2.01 4.93 par:pas; +grimpée grimper VER f s 21.05 51.15 0.14 0.14 par:pas; +grimpées grimper VER f p 21.05 51.15 0.14 0.00 par:pas; +grimpés grimper VER m p 21.05 51.15 0.04 0.68 par:pas; +grimé grimer VER m s 0.20 0.81 0.13 0.14 par:pas; +grimée grimer VER f s 0.20 0.81 0.00 0.07 par:pas; +grimées grimer VER f p 0.20 0.81 0.00 0.07 par:pas; +grimés grimer VER m p 0.20 0.81 0.00 0.20 par:pas; +grince grincer VER 2.84 19.53 1.37 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grincement grincement NOM m s 1.57 9.59 0.71 6.49 +grincements grincement NOM m p 1.57 9.59 0.86 3.11 +grincent grincer VER 2.84 19.53 0.26 0.95 ind:pre:3p; +grincer grincer VER 2.84 19.53 0.59 4.46 inf; +grincerait grincer VER 2.84 19.53 0.01 0.07 cnd:pre:3s; +grinces grincer VER 2.84 19.53 0.04 0.00 ind:pre:2s; +grincez grincer VER 2.84 19.53 0.00 0.07 imp:pre:2p; +grinche grinche ADJ s 0.02 0.00 0.02 0.00 +grincheuse grincheux ADJ f s 1.52 1.22 0.34 0.14 +grincheuses grincheux ADJ f p 1.52 1.22 0.02 0.07 +grincheux grincheux ADJ m 1.52 1.22 1.16 1.01 +grinchir grinchir VER 0.00 0.14 0.00 0.14 inf; +grincèrent grincer VER 2.84 19.53 0.00 0.47 ind:pas:3p; +grincé grincer VER m s 2.84 19.53 0.35 0.95 par:pas; +gringalet gringalet NOM m s 0.44 0.61 0.40 0.41 +gringalets gringalet NOM m p 0.44 0.61 0.04 0.20 +gringo gringo NOM m s 4.64 0.00 3.66 0.00 +gringos gringo NOM m p 4.64 0.00 0.98 0.00 +gringue gringue NOM m s 0.35 1.15 0.35 1.15 +gringuer gringuer VER 0.00 0.14 0.00 0.14 inf; +grinça grincer VER 2.84 19.53 0.00 2.64 ind:pas:3s; +grinçaient grincer VER 2.84 19.53 0.00 1.35 ind:imp:3p; +grinçais grincer VER 2.84 19.53 0.00 0.07 ind:imp:1s; +grinçait grincer VER 2.84 19.53 0.19 2.97 ind:imp:3s; +grinçant grinçant ADJ m s 0.47 3.78 0.32 1.35 +grinçante grinçant ADJ f s 0.47 3.78 0.02 1.49 +grinçantes grinçant ADJ f p 0.47 3.78 0.10 0.34 +grinçants grinçant ADJ m p 0.47 3.78 0.03 0.61 +grinçât grincer VER 2.84 19.53 0.00 0.07 sub:imp:3s; +griot griot NOM m s 0.58 1.55 0.16 1.08 +griots griot NOM m p 0.58 1.55 0.43 0.47 +griotte griotte NOM f s 0.13 3.18 0.00 0.07 +griottes griotte NOM f p 0.13 3.18 0.13 3.11 +grip grip NOM m s 0.20 0.00 0.20 0.00 +grippa gripper VER 0.71 1.22 0.00 0.14 ind:pas:3s; +grippaient gripper VER 0.71 1.22 0.00 0.07 ind:imp:3p; +grippal grippal ADJ m s 0.03 0.00 0.01 0.00 +grippant gripper VER 0.71 1.22 0.00 0.07 par:pre; +grippaux grippal ADJ m p 0.03 0.00 0.02 0.00 +grippe_sou grippe_sou NOM m s 0.25 0.14 0.13 0.07 +grippe_sou grippe_sou NOM m p 0.25 0.14 0.12 0.07 +grippe grippe NOM f s 8.22 5.54 8.02 4.86 +grippements grippement NOM m p 0.00 0.07 0.00 0.07 +gripper gripper VER 0.71 1.22 0.04 0.00 inf; +gripperait gripper VER 0.71 1.22 0.00 0.07 cnd:pre:3s; +grippes grippe NOM f p 8.22 5.54 0.21 0.68 +grippé gripper VER m s 0.71 1.22 0.15 0.20 par:pas; +grippée gripper VER f s 0.71 1.22 0.25 0.27 par:pas; +grippés gripper VER m p 0.71 1.22 0.14 0.07 par:pas; +gris_blanc gris_blanc ADJ m s 0.00 0.20 0.00 0.20 +gris_bleu gris_bleu ADJ m s 0.30 1.69 0.30 1.69 +gris_gris gris_gris NOM m 0.22 0.74 0.22 0.74 +gris_jaune gris_jaune ADJ m s 0.00 0.20 0.00 0.20 +gris_perle gris_perle ADJ m s 0.01 0.14 0.01 0.14 +gris_rose gris_rose ADJ 0.00 0.41 0.00 0.41 +gris_vert gris_vert ADJ m s 0.01 1.55 0.01 1.55 +gris gris ADJ m 19.64 154.86 11.05 88.31 +grisa griser VER 1.03 10.27 0.00 0.47 ind:pas:3s; +grisai griser VER 1.03 10.27 0.00 0.14 ind:pas:1s; +grisaient griser VER 1.03 10.27 0.00 0.20 ind:imp:3p; +grisaille grisaille NOM f s 0.25 7.77 0.25 7.36 +grisailles grisaille NOM f p 0.25 7.77 0.00 0.41 +grisaillèrent grisailler VER 0.00 0.07 0.00 0.07 ind:pas:3p; +grisais griser VER 1.03 10.27 0.00 0.14 ind:imp:1s; +grisait griser VER 1.03 10.27 0.00 1.35 ind:imp:3s; +grisant grisant ADJ m s 0.54 3.24 0.29 1.28 +grisante grisant ADJ f s 0.54 3.24 0.21 1.28 +grisantes grisant ADJ f p 0.54 3.24 0.01 0.34 +grisants grisant ADJ m p 0.54 3.24 0.03 0.34 +grisassent griser VER 1.03 10.27 0.00 0.07 sub:imp:3p; +grisbi grisbi NOM m s 0.15 1.22 0.15 1.22 +grise gris ADJ f s 19.64 154.86 7.25 49.39 +grisent griser VER 1.03 10.27 0.02 0.20 ind:pre:3p; +griser griser VER 1.03 10.27 0.09 1.55 inf; +grisera griser VER 1.03 10.27 0.00 0.07 ind:fut:3s; +griserie griserie NOM f s 0.02 2.23 0.02 2.16 +griseries griserie NOM f p 0.02 2.23 0.00 0.07 +grises gris ADJ f p 19.64 154.86 1.34 17.16 +grisette grisette NOM f s 0.00 0.41 0.00 0.14 +grisettes grisette NOM f p 0.00 0.41 0.00 0.27 +grison grison NOM m s 0.01 0.00 0.01 0.00 +grisonnaient grisonner VER 0.32 0.88 0.00 0.27 ind:imp:3p; +grisonnait grisonner VER 0.32 0.88 0.01 0.14 ind:imp:3s; +grisonnant grisonnant ADJ m s 0.48 3.04 0.18 0.81 +grisonnante grisonnant ADJ f s 0.48 3.04 0.03 0.74 +grisonnantes grisonnant ADJ f p 0.48 3.04 0.12 0.20 +grisonnants grisonnant ADJ m p 0.48 3.04 0.15 1.28 +grisonne grisonner VER 0.32 0.88 0.14 0.00 ind:pre:1s; +grisonnent grisonner VER 0.32 0.88 0.01 0.14 ind:pre:3p; +grisonner grisonner VER 0.32 0.88 0.01 0.14 inf; +grisonné grisonner VER m s 0.32 0.88 0.01 0.07 par:pas; +grisons grison ADJ m p 0.01 0.14 0.00 0.14 +grisâtre grisâtre ADJ s 0.12 13.04 0.10 9.53 +grisâtres grisâtre ADJ p 0.12 13.04 0.02 3.51 +grisotte grisotte NOM f s 0.00 0.07 0.00 0.07 +grisou grisou NOM m s 0.01 1.22 0.01 1.22 +grisé grisé ADJ m s 0.16 0.61 0.14 0.41 +grisée griser VER f s 1.03 10.27 0.00 0.61 par:pas; +grisées griser VER f p 1.03 10.27 0.00 0.07 par:pas; +grisés griser VER m p 1.03 10.27 0.14 0.61 par:pas; +grièvement grièvement ADV 1.68 1.55 1.68 1.55 +grive grive NOM f s 1.73 1.82 0.52 0.74 +grivelle griveler VER 0.00 0.20 0.00 0.20 ind:pre:3s; +grivelée grivelé ADJ f s 0.00 0.07 0.00 0.07 +grivelures grivelure NOM f p 0.00 0.07 0.00 0.07 +grives grive NOM f p 1.73 1.82 1.21 1.08 +grivet grivet NOM m s 0.01 0.00 0.01 0.00 +griveton griveton NOM m s 0.00 1.08 0.00 0.47 +grivetons griveton NOM m p 0.00 1.08 0.00 0.61 +grivois grivois ADJ m 0.38 0.95 0.25 0.27 +grivoise grivois ADJ f s 0.38 0.95 0.12 0.14 +grivoiserie grivoiserie NOM f s 0.03 0.20 0.00 0.14 +grivoiseries grivoiserie NOM f p 0.03 0.20 0.03 0.07 +grivoises grivois ADJ f p 0.38 0.95 0.01 0.54 +grivèlerie grivèlerie NOM f s 0.00 0.20 0.00 0.20 +grizzli grizzli NOM m s 0.57 0.00 0.19 0.00 +grizzlis grizzli NOM m p 0.57 0.00 0.38 0.00 +grizzly grizzly NOM m s 0.74 0.20 0.72 0.14 +grizzlys grizzly NOM m p 0.74 0.20 0.02 0.07 +grâce grâce PRE 85.61 78.85 85.61 78.85 +grâces grâce NOM f p 34.59 57.70 2.50 8.04 +groenlandais groenlandais ADJ m p 0.10 0.07 0.10 0.07 +grog grog NOM m s 0.63 1.42 0.52 1.15 +groggy groggy ADJ s 0.71 0.54 0.71 0.54 +grogna grogner VER 3.01 31.42 0.02 11.96 ind:pas:3s; +grognai grogner VER 3.01 31.42 0.00 0.07 ind:pas:1s; +grognaient grogner VER 3.01 31.42 0.23 0.41 ind:imp:3p; +grognais grogner VER 3.01 31.42 0.00 0.07 ind:imp:1s; +grognait grogner VER 3.01 31.42 0.07 4.19 ind:imp:3s; +grognant grognant ADJ m s 0.10 0.27 0.10 0.27 +grognard grognard NOM m s 0.03 0.74 0.03 0.27 +grognards grognard NOM m p 0.03 0.74 0.00 0.47 +grognassaient grognasser VER 0.00 0.20 0.00 0.07 ind:imp:3p; +grognasse grognasse NOM f s 0.17 0.95 0.14 0.61 +grognasser grognasser VER 0.00 0.20 0.00 0.14 inf; +grognasses grognasse NOM f p 0.17 0.95 0.03 0.34 +grogne grogner VER 3.01 31.42 1.55 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grognement grognement NOM m s 1.33 9.53 0.65 4.46 +grognements grognement NOM m p 1.33 9.53 0.68 5.07 +grognent grogner VER 3.01 31.42 0.08 0.54 ind:pre:3p; +grogner grogner VER 3.01 31.42 0.69 2.30 inf; +grognera grogner VER 3.01 31.42 0.00 0.14 ind:fut:3s; +grognes grogner VER 3.01 31.42 0.25 0.41 ind:pre:2s; +grogneurs grogneur ADJ m p 0.00 0.20 0.00 0.07 +grogneuse grogneur ADJ f s 0.00 0.20 0.00 0.14 +grognions grogner VER 3.01 31.42 0.00 0.14 ind:imp:1p; +grognon grognon ADJ m s 0.79 1.22 0.71 0.88 +grognonna grognonner VER 0.01 0.20 0.00 0.07 ind:pas:3s; +grognonne grognon ADJ f s 0.79 1.22 0.01 0.20 +grognonner grognonner VER 0.01 0.20 0.01 0.07 inf; +grognons grognon ADJ m p 0.79 1.22 0.06 0.14 +grognèrent grogner VER 3.01 31.42 0.00 0.20 ind:pas:3p; +grogné grogner VER m s 3.01 31.42 0.11 2.30 par:pas; +grognées grogner VER f p 3.01 31.42 0.00 0.07 par:pas; +grogs grog NOM m p 0.63 1.42 0.12 0.27 +groin groin NOM m s 0.43 1.89 0.32 1.76 +groins groin NOM m p 0.43 1.89 0.11 0.14 +grole grole NOM f s 0.07 0.34 0.04 0.14 +groles grole NOM f p 0.07 0.34 0.03 0.20 +grolle grolle NOM f s 0.13 1.49 0.04 0.41 +grolles grolle NOM f p 0.13 1.49 0.10 1.08 +grommela grommeler VER 0.14 13.92 0.01 5.61 ind:pas:3s; +grommelai grommeler VER 0.14 13.92 0.00 0.14 ind:pas:1s; +grommelaient grommeler VER 0.14 13.92 0.01 0.14 ind:imp:3p; +grommelait grommeler VER 0.14 13.92 0.01 1.96 ind:imp:3s; +grommelant grommeler VER 0.14 13.92 0.02 2.36 par:pre; +grommeler grommeler VER 0.14 13.92 0.03 0.81 inf; +grommelez grommeler VER 0.14 13.92 0.02 0.00 ind:pre:2p; +grommelle grommeler VER 0.14 13.92 0.01 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grommellement grommellement NOM m s 0.01 0.74 0.01 0.47 +grommellements grommellement NOM m p 0.01 0.74 0.00 0.27 +grommellent grommeler VER 0.14 13.92 0.02 0.07 ind:pre:3p; +grommellerait grommeler VER 0.14 13.92 0.00 0.07 cnd:pre:3s; +grommelèrent grommeler VER 0.14 13.92 0.00 0.07 ind:pas:3p; +grommelé grommeler VER m s 0.14 13.92 0.01 0.88 par:pas; +grommelée grommeler VER f s 0.14 13.92 0.00 0.07 par:pas; +gronda gronder VER 8.74 22.70 0.04 4.66 ind:pas:3s; +grondai gronder VER 8.74 22.70 0.00 0.34 ind:pas:1s; +grondaient gronder VER 8.74 22.70 0.02 0.81 ind:imp:3p; +grondais gronder VER 8.74 22.70 0.10 0.20 ind:imp:1s;ind:imp:2s; +grondait gronder VER 8.74 22.70 0.15 4.66 ind:imp:3s; +grondant gronder VER 8.74 22.70 0.30 2.36 par:pre; +grondante grondant ADJ f s 0.23 1.42 0.01 0.81 +grondants grondant ADJ m p 0.23 1.42 0.00 0.14 +gronde gronder VER 8.74 22.70 4.75 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grondement grondement NOM m s 1.30 14.80 1.18 12.36 +grondements grondement NOM m p 1.30 14.80 0.13 2.43 +grondent gronder VER 8.74 22.70 0.15 0.27 ind:pre:3p; +gronder gronder VER 8.74 22.70 2.14 3.58 inf; +grondera gronder VER 8.74 22.70 0.28 0.07 ind:fut:3s; +gronderai gronder VER 8.74 22.70 0.01 0.07 ind:fut:1s; +gronderait gronder VER 8.74 22.70 0.04 0.34 cnd:pre:3s; +gronderies gronderie NOM f p 0.00 0.14 0.00 0.14 +grondes gronder VER 8.74 22.70 0.15 0.07 ind:pre:2s; +grondeur grondeur ADJ m s 0.00 1.35 0.00 0.47 +grondeurs grondeur ADJ m p 0.00 1.35 0.00 0.07 +grondeuse grondeur ADJ f s 0.00 1.35 0.00 0.68 +grondeuses grondeur ADJ f p 0.00 1.35 0.00 0.14 +grondez gronder VER 8.74 22.70 0.15 0.20 imp:pre:2p;ind:pre:2p; +grondin grondin NOM m s 0.00 1.69 0.00 1.55 +grondins grondin NOM m p 0.00 1.69 0.00 0.14 +grondèrent gronder VER 8.74 22.70 0.01 0.14 ind:pas:3p; +grondé gronder VER m s 8.74 22.70 0.33 0.95 par:pas; +grondée gronder VER f s 8.74 22.70 0.12 0.34 par:pas; +grondés gronder VER m p 8.74 22.70 0.01 0.14 par:pas; +groom groom NOM m s 1.17 2.57 1.02 1.89 +grooms groom NOM m p 1.17 2.57 0.14 0.68 +gros_bec gros_bec NOM m s 0.06 0.07 0.06 0.00 +gros_bec gros_bec NOM m p 0.06 0.07 0.00 0.07 +gros_cul gros_cul NOM m s 0.04 0.14 0.04 0.14 +gros_grain gros_grain NOM m s 0.00 0.41 0.00 0.41 +gros_porteur gros_porteur NOM m s 0.02 0.00 0.02 0.00 +gros gros ADJ m 266.95 353.45 180.91 216.01 +groschen groschen NOM m s 0.00 0.07 0.00 0.07 +groseille groseille ADJ f s 0.30 0.20 0.30 0.20 +groseilles groseille NOM f p 1.23 1.89 0.94 1.35 +groseillier groseillier NOM m s 0.17 0.61 0.01 0.14 +groseilliers groseillier NOM m p 0.17 0.61 0.16 0.47 +grosse gros ADJ f s 266.95 353.45 70.63 85.81 +grosses gros ADJ f p 266.95 353.45 15.41 51.62 +grossesse grossesse NOM f s 7.09 4.93 6.63 3.92 +grossesses grossesse NOM f p 7.09 4.93 0.46 1.01 +grosseur grosseur NOM f s 1.12 2.97 1.08 2.57 +grosseurs grosseur NOM f p 1.12 2.97 0.04 0.41 +grossi grossir VER m s 10.57 14.80 3.85 2.57 par:pas; +grossie grossir VER f s 10.57 14.80 0.00 0.54 par:pas; +grossier grossier ADJ m s 11.64 22.57 6.77 8.99 +grossiers grossier ADJ m p 11.64 22.57 0.90 4.05 +grossies grossir VER f p 10.57 14.80 0.00 0.34 par:pas; +grossir grossir VER 10.57 14.80 3.30 4.93 inf; +grossira grossir VER 10.57 14.80 0.05 0.14 ind:fut:3s; +grossirent grossir VER 10.57 14.80 0.00 0.07 ind:pas:3p; +grossirez grossir VER 10.57 14.80 0.00 0.07 ind:fut:2p; +grossiront grossir VER 10.57 14.80 0.04 0.07 ind:fut:3p; +grossis grossir VER m p 10.57 14.80 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +grossissaient grossir VER 10.57 14.80 0.02 0.74 ind:imp:3p; +grossissais grossir VER 10.57 14.80 0.02 0.07 ind:imp:1s; +grossissait grossir VER 10.57 14.80 0.32 1.62 ind:imp:3s; +grossissant grossissant ADJ m s 0.34 1.28 0.04 1.01 +grossissante grossissant ADJ f s 0.34 1.28 0.03 0.00 +grossissantes grossissant ADJ f p 0.34 1.28 0.00 0.14 +grossissants grossissant ADJ m p 0.34 1.28 0.28 0.14 +grossisse grossir VER 10.57 14.80 0.09 0.14 sub:pre:1s;sub:pre:3s; +grossissement grossissement NOM m s 0.06 0.81 0.06 0.81 +grossissent grossir VER 10.57 14.80 0.43 0.68 ind:pre:3p; +grossisses grossir VER 10.57 14.80 0.02 0.00 sub:pre:2s; +grossissez grossir VER 10.57 14.80 0.07 0.07 imp:pre:2p;ind:pre:2p; +grossiste grossiste NOM s 0.70 0.81 0.50 0.54 +grossistes grossiste NOM p 0.70 0.81 0.20 0.27 +grossit grossir VER 10.57 14.80 1.96 1.82 ind:pre:3s;ind:pas:3s; +grossière grossier ADJ f s 11.64 22.57 3.30 6.28 +grossièrement grossièrement ADV 0.61 5.41 0.61 5.41 +grossières grossier ADJ f p 11.64 22.57 0.67 3.24 +grossièreté grossièreté NOM f s 2.71 6.15 1.96 4.80 +grossièretés grossièreté NOM f p 2.71 6.15 0.74 1.35 +grossium grossium NOM m s 0.01 0.88 0.00 0.54 +grossiums grossium NOM m p 0.01 0.88 0.01 0.34 +grosso_modo grosso_modo ADV 0.44 1.89 0.44 1.89 +grotesque grotesque ADJ s 5.58 12.97 5.01 9.12 +grotesquement grotesquement ADV 0.04 0.95 0.04 0.95 +grotesques grotesque ADJ p 5.58 12.97 0.57 3.85 +grotte grotte NOM f s 12.23 21.96 8.96 17.84 +grottes grotte NOM f p 12.23 21.96 3.28 4.12 +grouillaient grouiller VER 22.39 15.54 0.06 2.23 ind:imp:3p; +grouillais grouiller VER 22.39 15.54 0.00 0.07 ind:imp:1s; +grouillait grouiller VER 22.39 15.54 0.27 2.64 ind:imp:3s; +grouillant grouiller VER 22.39 15.54 0.11 1.28 par:pre; +grouillante grouillant ADJ f s 0.14 4.73 0.04 2.09 +grouillantes grouillant ADJ f p 0.14 4.73 0.03 0.88 +grouillants grouillant ADJ m p 0.14 4.73 0.03 1.01 +grouille grouiller VER 22.39 15.54 15.56 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +grouillement grouillement NOM m s 0.16 4.73 0.02 4.53 +grouillements grouillement NOM m p 0.16 4.73 0.14 0.20 +grouillent grouiller VER 22.39 15.54 0.65 1.35 ind:pre:3p; +grouiller grouiller VER 22.39 15.54 0.89 1.62 inf; +grouillera grouiller VER 22.39 15.54 0.05 0.00 ind:fut:3s; +grouillerait grouiller VER 22.39 15.54 0.04 0.00 cnd:pre:3s; +grouilleront grouiller VER 22.39 15.54 0.01 0.00 ind:fut:3p; +grouilles grouiller VER 22.39 15.54 0.48 0.07 ind:pre:2s; +grouillez grouiller VER 22.39 15.54 4.08 0.95 imp:pre:2p;ind:pre:2p; +grouillis grouillis NOM m 0.00 0.47 0.00 0.47 +grouillons grouiller VER 22.39 15.54 0.19 0.41 imp:pre:1p;ind:pre:1p; +grouillot grouillot NOM m s 0.12 0.74 0.10 0.61 +grouillots grouillot NOM m p 0.12 0.74 0.03 0.14 +grouillèrent grouiller VER 22.39 15.54 0.00 0.07 ind:pas:3p; +grouillé grouiller VER m s 22.39 15.54 0.02 0.07 par:pas; +grouillées grouiller VER f p 22.39 15.54 0.00 0.07 par:pas; +grouiner grouiner VER 0.01 0.00 0.01 0.00 inf; +groumais groumer VER 0.00 1.22 0.00 0.07 ind:imp:1s; +groumait groumer VER 0.00 1.22 0.00 0.27 ind:imp:3s; +groumant groumer VER 0.00 1.22 0.00 0.07 par:pre; +groume groumer VER 0.00 1.22 0.00 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +groumer groumer VER 0.00 1.22 0.00 0.14 inf; +ground ground NOM m s 0.27 0.00 0.27 0.00 +group group NOM m s 7.65 0.34 7.41 0.34 +groupa grouper VER 3.10 13.31 0.00 0.20 ind:pas:3s; +groupage groupage NOM m s 0.01 0.00 0.01 0.00 +groupaient grouper VER 3.10 13.31 0.00 1.08 ind:imp:3p; +groupais grouper VER 3.10 13.31 0.00 0.07 ind:imp:1s; +groupait grouper VER 3.10 13.31 0.01 0.68 ind:imp:3s; +groupant grouper VER 3.10 13.31 0.00 0.54 par:pre; +groupe groupe NOM m s 104.38 122.50 90.16 85.88 +groupement groupement NOM m s 0.98 6.22 0.96 4.19 +groupements groupement NOM m p 0.98 6.22 0.02 2.03 +groupent grouper VER 3.10 13.31 0.00 0.95 ind:pre:3p; +grouper grouper VER 3.10 13.31 0.44 2.03 inf; +grouperaient grouper VER 3.10 13.31 0.00 0.07 cnd:pre:3p; +grouperont grouper VER 3.10 13.31 0.10 0.07 ind:fut:3p; +groupes groupe NOM m p 104.38 122.50 14.21 36.62 +groupez grouper VER 3.10 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +groupie groupie NOM f s 1.34 0.74 0.86 0.34 +groupies groupie NOM f p 1.34 0.74 0.48 0.41 +groupons grouper VER 3.10 13.31 0.20 0.07 imp:pre:1p;ind:pre:1p; +groupât grouper VER 3.10 13.31 0.00 0.07 sub:imp:3s; +groups group NOM m p 7.65 0.34 0.25 0.00 +groupèrent grouper VER 3.10 13.31 0.00 0.41 ind:pas:3p; +groupé grouper VER m s 3.10 13.31 0.25 0.34 par:pas; +groupée grouper VER f s 3.10 13.31 0.11 0.61 par:pas; +groupées grouper VER f p 3.10 13.31 0.10 0.88 par:pas; +groupés grouper VER m p 3.10 13.31 1.25 4.19 par:pas; +groupuscule groupuscule NOM m s 0.36 0.54 0.20 0.20 +groupuscules groupuscule NOM m p 0.36 0.54 0.16 0.34 +grouse grouse NOM f s 0.28 0.68 0.28 0.14 +grouses grouse NOM f p 0.28 0.68 0.00 0.54 +grèbe grèbe NOM m s 0.02 0.07 0.02 0.00 +grèbes grèbe NOM m p 0.02 0.07 0.00 0.07 +grège grège ADJ s 0.00 1.28 0.00 1.22 +grèges grège ADJ p 0.00 1.28 0.00 0.07 +grègues grègues NOM f p 0.00 0.07 0.00 0.07 +grène grener VER 0.00 0.34 0.00 0.07 ind:pre:3s; +grènera grener VER 0.00 0.34 0.00 0.07 ind:fut:3s; +grès grès NOM m 0.31 4.05 0.31 4.05 +grève grève NOM f s 15.87 26.55 14.54 22.36 +grèvent grever VER 0.18 0.81 0.00 0.14 ind:pre:3p; +grèverait grever VER 0.18 0.81 0.00 0.07 cnd:pre:3s; +grèves grève NOM f p 15.87 26.55 1.33 4.19 +gré gré NOM m s 11.36 28.04 11.36 28.04 +gréage gréage NOM m s 0.01 0.00 0.01 0.00 +gruau gruau NOM m s 0.73 0.54 0.69 0.54 +gruaux gruau NOM m p 0.73 0.54 0.04 0.00 +grébiche grébiche NOM f s 0.01 0.00 0.01 0.00 +gréco_latin gréco_latin ADJ f s 0.00 0.34 0.00 0.27 +gréco_latin gréco_latin ADJ f p 0.00 0.34 0.00 0.07 +gréco_romain gréco_romain ADJ m s 0.46 0.68 0.03 0.14 +gréco_romain gréco_romain ADJ f s 0.46 0.68 0.42 0.34 +gréco_romain gréco_romain ADJ f p 0.46 0.68 0.01 0.14 +gréco_romain gréco_romain ADJ m p 0.46 0.68 0.00 0.07 +gréco gréco ADV 0.15 0.14 0.15 0.14 +grue grue NOM f s 4.76 6.22 3.54 2.84 +gréement gréement NOM m s 0.26 0.34 0.26 0.20 +gréements gréement NOM m p 0.26 0.34 0.00 0.14 +gréer gréer VER 0.07 0.61 0.03 0.07 inf; +grues grue NOM f p 4.76 6.22 1.22 3.38 +gréez gréer VER 0.07 0.61 0.01 0.00 imp:pre:2p; +grégaire grégaire ADJ s 0.11 0.47 0.11 0.47 +gruge gruger VER 0.48 0.47 0.04 0.07 ind:pre:3s; +grugeaient gruger VER 0.48 0.47 0.00 0.07 ind:imp:3p; +grugeait gruger VER 0.48 0.47 0.01 0.07 ind:imp:3s; +grugeant gruger VER 0.48 0.47 0.00 0.07 par:pre; +grégeois grégeois ADJ m 0.05 0.34 0.05 0.34 +gruger gruger VER 0.48 0.47 0.21 0.14 inf; +grégorien grégorien ADJ m s 0.06 1.35 0.03 1.01 +grégorienne grégorien ADJ f s 0.06 1.35 0.00 0.14 +grégoriens grégorien ADJ m p 0.06 1.35 0.02 0.20 +grugé gruger VER m s 0.48 0.47 0.21 0.07 par:pas; +grugée gruger VER f s 0.48 0.47 0.01 0.00 par:pas; +grêlaient grêler VER 0.24 1.49 0.00 0.07 ind:imp:3p; +grêlait grêler VER 0.24 1.49 0.00 0.07 ind:imp:3s; +grêle grêle NOM f s 1.05 6.15 1.05 5.81 +grêlent grêler VER 0.24 1.49 0.00 0.20 ind:pre:3p; +grêler grêler VER 0.24 1.49 0.03 0.14 inf; +grêleraient grêler VER 0.24 1.49 0.00 0.07 cnd:pre:3p; +grêles grêle ADJ p 0.54 8.24 0.01 3.38 +grêlon grêlon NOM m s 0.33 1.01 0.00 0.14 +grêlons grêlon NOM m p 0.33 1.01 0.33 0.88 +grêlé grêlé ADJ m s 0.31 0.47 0.30 0.34 +grêlée grêlé ADJ f s 0.31 0.47 0.01 0.07 +grêlées grêler VER f p 0.24 1.49 0.00 0.14 par:pas; +grêlés grêler VER m p 0.24 1.49 0.00 0.14 par:pas; +grume grume NOM f s 0.12 0.47 0.01 0.20 +grumeau grumeau NOM m s 0.28 1.01 0.02 0.14 +grumeaux grumeau NOM m p 0.28 1.01 0.26 0.88 +grumeleuse grumeleux ADJ f s 0.33 1.89 0.01 1.15 +grumeleuses grumeleux ADJ f p 0.33 1.89 0.02 0.14 +grumeleux grumeleux ADJ m 0.33 1.89 0.29 0.61 +grumes grume NOM f p 0.12 0.47 0.11 0.27 +grumier grumier NOM m s 0.01 0.00 0.01 0.00 +grunge grunge NOM m s 0.27 0.00 0.27 0.00 +gruppetto gruppetto NOM m s 0.00 0.14 0.00 0.14 +grésil grésil NOM m s 0.00 0.41 0.00 0.41 +grésilla grésiller VER 0.35 5.61 0.00 0.41 ind:pas:3s; +grésillaient grésiller VER 0.35 5.61 0.00 0.68 ind:imp:3p; +grésillait grésiller VER 0.35 5.61 0.00 1.28 ind:imp:3s; +grésillant grésillant ADJ m s 0.15 0.68 0.01 0.41 +grésillante grésillant ADJ f s 0.15 0.68 0.14 0.14 +grésillantes grésillant ADJ f p 0.15 0.68 0.00 0.14 +grésille grésiller VER 0.35 5.61 0.16 0.88 ind:pre:1s;ind:pre:3s; +grésillement grésillement NOM m s 0.46 3.85 0.17 3.38 +grésillements grésillement NOM m p 0.46 3.85 0.29 0.47 +grésillent grésiller VER 0.35 5.61 0.03 0.07 ind:pre:3p; +grésiller grésiller VER 0.35 5.61 0.16 1.01 inf; +grésillerait grésiller VER 0.35 5.61 0.00 0.07 cnd:pre:3s; +grésillé grésiller VER m s 0.35 5.61 0.00 0.20 par:pas; +gruta gruter VER 0.00 0.14 0.00 0.07 ind:pas:3s; +grute gruter VER 0.00 0.14 0.00 0.07 ind:pre:1s; +grutier grutier NOM m s 0.14 2.30 0.14 0.34 +grutiers grutier NOM m p 0.14 2.30 0.00 1.89 +grutière grutier NOM f s 0.14 2.30 0.00 0.07 +gréé gréer VER m s 0.07 0.61 0.01 0.34 par:pas; +gréée gréer VER f s 0.07 0.61 0.02 0.14 par:pas; +gréées gréer VER f p 0.07 0.61 0.00 0.07 par:pas; +gréviste gréviste NOM s 1.50 2.36 0.28 0.41 +grévistes gréviste NOM p 1.50 2.36 1.22 1.96 +gruyère gruyère NOM m s 1.02 4.80 1.02 4.80 +gèle geler VER 23.41 17.03 6.57 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gèlent geler VER 23.41 17.03 0.58 0.27 ind:pre:3p; +gèlera geler VER 23.41 17.03 0.48 0.14 ind:fut:3s; +gèlerai geler VER 23.41 17.03 0.30 0.00 ind:fut:1s; +gèlerait geler VER 23.41 17.03 0.18 0.14 cnd:pre:3s; +gèles geler VER 23.41 17.03 0.26 0.07 ind:pre:2s; +gène gène NOM m s 8.07 0.74 4.18 0.20 +gènes gène NOM m p 8.07 0.74 3.90 0.54 +gère gérer VER 27.51 3.31 6.08 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gèrent gérer VER 27.51 3.31 0.37 0.07 ind:pre:3p; +guacamole guacamole NOM m s 0.43 0.00 0.43 0.00 +guadeloupéenne guadeloupéenne NOM f s 0.00 0.14 0.00 0.14 +guanaco guanaco NOM m s 0.01 0.00 0.01 0.00 +guanine guanine NOM f s 0.04 0.00 0.04 0.00 +guano guano NOM m s 0.23 0.14 0.23 0.14 +géant géant ADJ m s 13.91 21.42 8.60 8.99 +géante géant ADJ f s 13.91 21.42 2.81 6.08 +géantes géant ADJ f p 13.91 21.42 0.94 2.97 +géants géant NOM m p 11.67 22.91 4.19 3.78 +guaracha guaracha NOM f s 0.02 0.00 0.02 0.00 +guarani guarani ADJ m s 0.00 0.07 0.00 0.07 +guatémaltèque guatémaltèque ADJ m s 0.07 0.00 0.07 0.00 +guelfe guelfe NOM m s 0.10 0.20 0.10 0.07 +guelfes guelfe NOM m p 0.10 0.20 0.00 0.14 +guenille guenille NOM f s 0.41 4.46 0.04 1.08 +guenilles guenille NOM f p 0.41 4.46 0.37 3.38 +guenilleux guenilleux ADJ m p 0.00 0.54 0.00 0.54 +guenillons guenillon NOM m p 0.00 0.07 0.00 0.07 +guenipe guenipe NOM f s 0.00 0.07 0.00 0.07 +guenon guenon NOM f s 0.58 1.89 0.37 1.55 +guenons guenon NOM f p 0.58 1.89 0.20 0.34 +guerre_éclair guerre_éclair NOM f s 0.01 0.14 0.01 0.14 +guerre guerre NOM f s 221.65 354.59 212.82 338.65 +guerres guerre NOM f p 221.65 354.59 8.83 15.95 +guerrier guerrier NOM m s 16.75 10.00 9.07 3.85 +guerriers guerrier NOM m p 16.75 10.00 7.68 6.15 +guerrière guerrier ADJ f s 6.70 8.85 0.88 2.30 +guerrières guerrier ADJ f p 6.70 8.85 1.41 1.62 +guerroient guerroyer VER 0.30 1.08 0.00 0.07 ind:pre:3p; +guerroyai guerroyer VER 0.30 1.08 0.00 0.07 ind:pas:1s; +guerroyaient guerroyer VER 0.30 1.08 0.00 0.07 ind:imp:3p; +guerroyait guerroyer VER 0.30 1.08 0.00 0.27 ind:imp:3s; +guerroyant guerroyer VER 0.30 1.08 0.14 0.07 par:pre; +guerroyer guerroyer VER 0.30 1.08 0.14 0.41 inf; +guerroyeur guerroyeur NOM m s 0.00 0.07 0.00 0.07 +guerroyé guerroyer VER m s 0.30 1.08 0.03 0.14 par:pas; +guet_apens guet_apens NOM m 0.68 0.74 0.68 0.74 +guet guet NOM m s 3.29 7.70 3.29 7.43 +guets_apens guets_apens NOM m p 0.00 0.07 0.00 0.07 +guets guet NOM m p 3.29 7.70 0.00 0.27 +guetta guetter VER 8.52 51.01 0.00 0.74 ind:pas:3s; +guettai guetter VER 8.52 51.01 0.00 0.81 ind:pas:1s; +guettaient guetter VER 8.52 51.01 0.16 2.50 ind:imp:3p; +guettais guetter VER 8.52 51.01 0.24 2.50 ind:imp:1s;ind:imp:2s; +guettait guetter VER 8.52 51.01 0.52 9.53 ind:imp:3s; +guettant guetter VER 8.52 51.01 0.30 6.82 par:pre; +guette guetter VER 8.52 51.01 3.79 9.05 imp:pre:2s;ind:pre:1s;ind:pre:3s; +guettent guetter VER 8.52 51.01 1.13 3.04 ind:pre:3p; +guetter guetter VER 8.52 51.01 1.01 10.00 inf;; +guettera guetter VER 8.52 51.01 0.00 0.20 ind:fut:3s; +guetterai guetter VER 8.52 51.01 0.05 0.20 ind:fut:1s; +guetterais guetter VER 8.52 51.01 0.00 0.07 cnd:pre:1s; +guetterait guetter VER 8.52 51.01 0.11 0.27 cnd:pre:3s; +guetterez guetter VER 8.52 51.01 0.01 0.00 ind:fut:2p; +guetterons guetter VER 8.52 51.01 0.02 0.14 ind:fut:1p; +guetteront guetter VER 8.52 51.01 0.02 0.00 ind:fut:3p; +guettes guetter VER 8.52 51.01 0.23 0.47 ind:pre:2s; +guetteur guetteur NOM m s 1.09 4.46 0.60 2.50 +guetteurs guetteur NOM m p 1.09 4.46 0.49 1.55 +guetteuse guetteur NOM f s 1.09 4.46 0.00 0.27 +guetteuses guetteur NOM f p 1.09 4.46 0.00 0.14 +guettez guetter VER 8.52 51.01 0.23 0.00 imp:pre:2p;ind:pre:2p; +guettiez guetter VER 8.52 51.01 0.01 0.07 ind:imp:2p; +guettions guetter VER 8.52 51.01 0.14 1.01 ind:imp:1p; +guettons guetter VER 8.52 51.01 0.12 0.00 ind:pre:1p; +guettât guetter VER 8.52 51.01 0.00 0.07 sub:imp:3s; +guettèrent guetter VER 8.52 51.01 0.00 0.14 ind:pas:3p; +guetté guetter VER m s 8.52 51.01 0.41 2.50 par:pas; +guettée guetter VER f s 8.52 51.01 0.02 0.20 par:pas; +guettées guetter VER f p 8.52 51.01 0.00 0.07 par:pas; +guettés guetter VER m p 8.52 51.01 0.00 0.61 par:pas; +gueugueule gueugueule NOM f s 0.00 0.07 0.00 0.07 +gueula gueuler VER 9.81 27.30 0.00 1.28 ind:pas:3s; +gueulai gueuler VER 9.81 27.30 0.00 0.20 ind:pas:1s; +gueulaient gueuler VER 9.81 27.30 0.13 0.41 ind:imp:3p; +gueulais gueuler VER 9.81 27.30 0.17 0.47 ind:imp:1s;ind:imp:2s; +gueulait gueuler VER 9.81 27.30 0.23 4.26 ind:imp:3s; +gueulant gueuler VER 9.81 27.30 0.31 1.69 par:pre; +gueulante gueulante NOM f s 0.14 1.49 0.13 1.01 +gueulantes gueulante NOM f p 0.14 1.49 0.01 0.47 +gueulard gueulard NOM m s 0.23 0.88 0.20 0.68 +gueularde gueulard NOM f s 0.23 0.88 0.02 0.00 +gueulards gueulard NOM m p 0.23 0.88 0.01 0.20 +gueule_de_loup gueule_de_loup NOM f s 0.03 0.07 0.03 0.07 +gueule gueule NOM f s 125.22 109.93 118.45 100.14 +gueulement gueulement NOM m s 0.00 0.81 0.00 0.14 +gueulements gueulement NOM m p 0.00 0.81 0.00 0.68 +gueulent gueuler VER 9.81 27.30 0.18 1.42 ind:pre:3p; +gueuler gueuler VER 9.81 27.30 3.97 6.62 inf; +gueulera gueuler VER 9.81 27.30 0.03 0.07 ind:fut:3s; +gueulerai gueuler VER 9.81 27.30 0.02 0.07 ind:fut:1s; +gueulerais gueuler VER 9.81 27.30 0.00 0.14 cnd:pre:1s;cnd:pre:2s; +gueulerait gueuler VER 9.81 27.30 0.01 0.14 cnd:pre:3s; +gueules_de_loup gueules_de_loup NOM f p 0.00 0.14 0.00 0.14 +gueules gueule NOM p 125.22 109.93 6.77 9.80 +gueuleton gueuleton NOM m s 0.65 1.08 0.52 0.74 +gueuletonnait gueuletonner VER 0.00 0.20 0.00 0.07 ind:imp:3s; +gueuletonner gueuletonner VER 0.00 0.20 0.00 0.14 inf; +gueuletons gueuleton NOM m p 0.65 1.08 0.12 0.34 +gueulette gueulette NOM f s 0.01 0.14 0.01 0.07 +gueulettes gueulette NOM f p 0.01 0.14 0.00 0.07 +gueulez gueuler VER 9.81 27.30 0.07 0.07 imp:pre:2p;ind:pre:2p; +gueuloir gueuloir NOM m s 0.00 0.07 0.00 0.07 +gueulé gueuler VER m s 9.81 27.30 0.79 3.38 par:pas; +gueulée gueuler VER f s 9.81 27.30 0.00 0.07 par:pas; +gueulés gueuler VER m p 9.81 27.30 0.00 0.07 par:pas; +gueusant gueuser VER 0.00 0.07 0.00 0.07 par:pre; +gueusards gueusard NOM m p 0.00 0.14 0.00 0.14 +gueuse gueux NOM f s 2.87 4.66 0.73 0.88 +gueuserie gueuserie NOM f s 0.00 0.47 0.00 0.47 +gueuses gueuse NOM f p 0.01 0.00 0.01 0.00 +gueux gueux NOM m 2.87 4.66 2.14 3.65 +gueuze gueuze NOM f s 0.00 0.07 0.00 0.07 +gégène gégène NOM f s 0.12 0.41 0.12 0.41 +gugusse gugusse NOM m s 1.12 0.27 1.06 0.27 +gugusses gugusse NOM m p 1.12 0.27 0.06 0.00 +géhenne géhenne NOM f s 0.58 0.34 0.57 0.34 +géhennes géhenne NOM f p 0.58 0.34 0.01 0.00 +gui gui NOM m s 2.90 2.50 2.90 2.50 +guibole guibole NOM f s 0.14 0.34 0.05 0.00 +guiboles guibole NOM f p 0.14 0.34 0.08 0.34 +guibolle guibolle NOM f s 0.11 4.93 0.00 0.74 +guibolles guibolle NOM f p 0.11 4.93 0.11 4.19 +guiche guiche NOM f s 0.06 0.27 0.06 0.14 +guiches guiche NOM f p 0.06 0.27 0.00 0.14 +guichet guichet NOM m s 3.81 8.45 2.92 6.42 +guichetier guichetier NOM m s 0.31 0.47 0.16 0.07 +guichetiers guichetier NOM m p 0.31 0.47 0.01 0.07 +guichetière guichetier NOM f s 0.31 0.47 0.14 0.34 +guichets guichet NOM m p 3.81 8.45 0.89 2.03 +guida guider VER 24.79 26.22 0.31 2.03 ind:pas:3s; +guidage guidage NOM m s 1.19 0.00 1.19 0.00 +guidai guider VER 24.79 26.22 0.00 0.14 ind:pas:1s; +guidaient guider VER 24.79 26.22 0.17 1.08 ind:imp:3p; +guidais guider VER 24.79 26.22 0.00 0.27 ind:imp:1s; +guidait guider VER 24.79 26.22 0.13 2.30 ind:imp:3s; +guidance guidance NOM f s 0.01 0.00 0.01 0.00 +guidant guider VER 24.79 26.22 0.20 1.96 par:pre; +guide_interprète guide_interprète NOM s 0.00 0.07 0.00 0.07 +guide guide NOM s 17.52 22.84 14.69 16.69 +guident guider VER 24.79 26.22 0.39 0.74 ind:pre:3p; +guider guider VER 24.79 26.22 7.29 6.76 inf; +guidera guider VER 24.79 26.22 1.57 0.14 ind:fut:3s; +guiderai guider VER 24.79 26.22 0.80 0.00 ind:fut:1s; +guiderait guider VER 24.79 26.22 0.20 0.14 cnd:pre:3s; +guideras guider VER 24.79 26.22 0.06 0.00 ind:fut:2s; +guiderez guider VER 24.79 26.22 0.09 0.00 ind:fut:2p; +guideront guider VER 24.79 26.22 0.27 0.20 ind:fut:3p; +guides guide NOM p 17.52 22.84 2.84 6.15 +guidez guider VER 24.79 26.22 0.85 0.14 imp:pre:2p;ind:pre:2p; +guidiez guider VER 24.79 26.22 0.09 0.00 ind:imp:2p; +guidon guidon NOM m s 1.27 7.03 1.26 6.15 +guidons guider VER 24.79 26.22 0.16 0.14 imp:pre:1p;ind:pre:1p; +guidèrent guider VER 24.79 26.22 0.00 0.20 ind:pas:3p; +guidé guider VER m s 24.79 26.22 2.81 3.38 par:pas; +guidée guider VER f s 24.79 26.22 1.55 1.82 par:pas; +guidées guider VER f p 24.79 26.22 0.40 0.27 par:pas; +guidés guider VER m p 24.79 26.22 1.25 1.22 par:pas; +guigna guigner VER 0.04 1.69 0.00 0.14 ind:pas:3s; +guignaient guigner VER 0.04 1.69 0.01 0.00 ind:imp:3p; +guignais guigner VER 0.04 1.69 0.01 0.14 ind:imp:1s; +guignait guigner VER 0.04 1.69 0.01 0.47 ind:imp:3s; +guignant guigner VER 0.04 1.69 0.00 0.20 par:pre; +guigne guigne NOM f s 0.93 1.35 0.93 1.28 +guigner guigner VER 0.04 1.69 0.00 0.34 inf; +guignes guigne NOM f p 0.93 1.35 0.00 0.07 +guignol guignol NOM m s 3.29 6.15 2.14 3.58 +guignolades guignolade NOM f p 0.00 0.14 0.00 0.14 +guignolesque guignolesque ADJ m s 0.00 0.07 0.00 0.07 +guignolet guignolet NOM m s 0.00 0.20 0.00 0.20 +guignols guignol NOM m p 3.29 6.15 1.16 2.57 +guignon guignon NOM m s 0.00 0.20 0.00 0.20 +guilde guilde NOM f s 0.57 0.00 0.56 0.00 +guildes guilde NOM f p 0.57 0.00 0.01 0.00 +guili_guili guili_guili NOM m 0.16 0.14 0.16 0.14 +guillaume guillaume NOM m s 0.00 0.20 0.00 0.14 +guillaumes guillaume NOM m p 0.00 0.20 0.00 0.07 +guilledou guilledou NOM m s 0.02 0.20 0.02 0.20 +guillemet guillemet NOM m s 0.52 1.55 0.01 0.00 +guillemets guillemet NOM m p 0.52 1.55 0.50 1.55 +guillemot guillemot NOM m s 0.11 0.00 0.11 0.00 +guilleret guilleret ADJ m s 0.22 3.24 0.14 2.09 +guillerets guilleret ADJ m p 0.22 3.24 0.01 0.34 +guillerette guilleret ADJ f s 0.22 3.24 0.07 0.74 +guillerettes guilleret ADJ f p 0.22 3.24 0.00 0.07 +guilloche guillocher VER 0.02 0.47 0.01 0.00 ind:pre:3s; +guilloché guillocher VER m s 0.02 0.47 0.00 0.27 par:pas; +guillochée guillocher VER f s 0.02 0.47 0.01 0.07 par:pas; +guillochées guillocher VER f p 0.02 0.47 0.00 0.07 par:pas; +guillochures guillochure NOM f p 0.00 0.07 0.00 0.07 +guillochés guillocher VER m p 0.02 0.47 0.00 0.07 par:pas; +guillotina guillotiner VER 0.80 1.89 0.00 0.07 ind:pas:3s; +guillotinaient guillotiner VER 0.80 1.89 0.00 0.07 ind:imp:3p; +guillotinait guillotiner VER 0.80 1.89 0.00 0.14 ind:imp:3s; +guillotine guillotine NOM f s 1.07 5.61 1.07 5.54 +guillotinent guillotiner VER 0.80 1.89 0.01 0.07 ind:pre:3p; +guillotiner guillotiner VER 0.80 1.89 0.45 0.47 inf; +guillotines guillotin NOM f p 0.01 0.00 0.01 0.00 +guillotineur guillotineur NOM m s 0.00 0.14 0.00 0.07 +guillotineurs guillotineur NOM m p 0.00 0.14 0.00 0.07 +guillotiné guillotiner VER m s 0.80 1.89 0.20 0.68 par:pas; +guillotinée guillotiner VER f s 0.80 1.89 0.00 0.20 par:pas; +guillotinées guillotiné ADJ f p 0.01 0.47 0.00 0.07 +guillotinés guillotiner VER m p 0.80 1.89 0.01 0.14 par:pas; +guimauve guimauve NOM f s 1.49 2.43 1.25 2.23 +guimauves guimauve NOM f p 1.49 2.43 0.24 0.20 +guimbarde guimbarde NOM f s 0.61 1.69 0.57 1.01 +guimbardes guimbarde NOM f p 0.61 1.69 0.03 0.68 +guimpe guimpe NOM f s 0.19 1.15 0.19 0.54 +guimpes guimpe NOM f p 0.19 1.15 0.00 0.61 +guinchait guincher VER 0.11 0.20 0.00 0.07 ind:imp:3s; +guinche guinche NOM m s 0.00 0.47 0.00 0.27 +guincher guincher VER 0.11 0.20 0.10 0.14 inf; +guinches guincher VER 0.11 0.20 0.01 0.00 ind:pre:2s; +guindaient guinder VER 0.16 1.55 0.00 0.14 ind:imp:3p; +guindait guinder VER 0.16 1.55 0.00 0.07 ind:imp:3s; +guindal guindal NOM m s 0.00 0.61 0.00 0.41 +guindals guindal NOM m p 0.00 0.61 0.00 0.20 +guindant guindant NOM m s 0.10 0.00 0.10 0.00 +guinde guinder VER 0.16 1.55 0.01 0.54 imp:pre:2s;ind:pre:3s; +guindeau guindeau NOM m s 0.02 0.07 0.02 0.07 +guinder guinder VER 0.16 1.55 0.00 0.20 inf; +guindé guindé ADJ m s 0.67 2.43 0.55 0.88 +guindée guindé ADJ f s 0.67 2.43 0.06 0.81 +guindées guindé ADJ f p 0.67 2.43 0.03 0.34 +guindés guindé ADJ m p 0.67 2.43 0.04 0.41 +guinguette guinguette NOM f s 0.14 3.04 0.14 2.36 +guinguettes guinguette NOM f p 0.14 3.04 0.00 0.68 +guinée guinée NOM f s 1.40 0.07 0.10 0.07 +guinéen guinéen ADJ m s 0.00 0.41 0.00 0.14 +guinéenne guinéen ADJ f s 0.00 0.41 0.00 0.14 +guinéennes guinéen ADJ f p 0.00 0.41 0.00 0.07 +guinéens guinéen ADJ m p 0.00 0.41 0.00 0.07 +guinées guinée NOM f p 1.40 0.07 1.30 0.00 +guipure guipure NOM f s 0.27 1.15 0.14 0.61 +guipures guipure NOM f p 0.27 1.15 0.14 0.54 +guirlande guirlande NOM f s 1.65 9.05 0.62 2.30 +guirlandes guirlande NOM f p 1.65 9.05 1.03 6.76 +guise guise NOM f s 6.26 20.61 6.26 20.61 +guises guis NOM f p 0.00 0.07 0.00 0.07 +guitare guitare NOM f s 13.86 14.80 12.78 11.55 +guitares guitare NOM f p 13.86 14.80 1.08 3.24 +guitariste guitariste NOM s 2.29 4.39 1.76 3.38 +guitaristes guitariste NOM p 2.29 4.39 0.53 1.01 +guitoune guitoune NOM f s 0.00 5.68 0.00 3.51 +guitounes guitoune NOM f p 0.00 5.68 0.00 2.16 +gélatine gélatine NOM f s 0.87 1.35 0.87 1.22 +gélatines gélatine NOM f p 0.87 1.35 0.00 0.14 +gélatineuse gélatineux ADJ f s 0.16 1.62 0.01 0.54 +gélatineuses gélatineux ADJ f p 0.16 1.62 0.01 0.20 +gélatineux gélatineux ADJ m 0.16 1.62 0.13 0.88 +gélatino_bromure gélatino_bromure NOM m s 0.00 0.07 0.00 0.07 +gulden gulden NOM m s 0.10 0.00 0.10 0.00 +gélifiant gélifiant NOM m s 0.01 0.00 0.01 0.00 +gélification gélification NOM f s 0.00 0.07 0.00 0.07 +gélifié gélifier VER m s 0.00 0.07 0.00 0.07 par:pas; +géline géline NOM f s 0.01 0.20 0.01 0.00 +gélines géline NOM f p 0.01 0.20 0.00 0.20 +gélinotte gélinotte NOM f s 0.00 0.07 0.00 0.07 +gélolevure gélolevure NOM f s 0.00 0.07 0.00 0.07 +gélose gélose NOM f s 0.01 0.07 0.01 0.07 +gélule gélule NOM f s 0.38 0.88 0.04 0.14 +gélules gélule NOM f p 0.38 0.88 0.33 0.74 +gémeau gémeau NOM m s 0.40 0.07 0.12 0.00 +gémeaux gémeau NOM m p 0.40 0.07 0.29 0.07 +gémellaire gémellaire ADJ s 0.01 7.43 0.01 7.09 +gémellaires gémellaire ADJ p 0.01 7.43 0.00 0.34 +gémellité gémellité NOM f s 0.17 3.38 0.17 3.38 +gémi gémir VER m s 9.19 36.89 0.28 1.96 par:pas; +gémie gémir VER f s 9.19 36.89 0.01 0.07 par:pas; +gémir gémir VER 9.19 36.89 2.38 8.18 inf; +gémira gémir VER 9.19 36.89 0.04 0.07 ind:fut:3s; +gémirai gémir VER 9.19 36.89 0.01 0.00 ind:fut:1s; +gémiraient gémir VER 9.19 36.89 0.00 0.07 cnd:pre:3p; +gémirais gémir VER 9.19 36.89 0.10 0.00 cnd:pre:1s; +gémirait gémir VER 9.19 36.89 0.00 0.20 cnd:pre:3s; +gémirent gémir VER 9.19 36.89 0.00 0.20 ind:pas:3p; +gémis gémir VER m p 9.19 36.89 0.93 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +gémissaient gémir VER 9.19 36.89 0.12 1.28 ind:imp:3p; +gémissais gémir VER 9.19 36.89 0.07 0.27 ind:imp:1s;ind:imp:2s; +gémissait gémir VER 9.19 36.89 0.52 6.01 ind:imp:3s; +gémissant gémir VER 9.19 36.89 0.19 4.80 par:pre; +gémissante gémissant ADJ f s 0.08 2.64 0.00 1.15 +gémissantes gémissant ADJ f p 0.08 2.64 0.02 0.54 +gémissants gémissant ADJ m p 0.08 2.64 0.02 0.14 +gémisse gémir VER 9.19 36.89 0.03 0.07 sub:pre:3s; +gémissement gémissement NOM m s 5.16 16.76 0.97 9.32 +gémissements gémissement NOM m p 5.16 16.76 4.18 7.43 +gémissent gémir VER 9.19 36.89 0.45 0.81 ind:pre:3p; +gémisseur gémisseur ADJ m s 0.00 0.20 0.00 0.07 +gémisseurs gémisseur ADJ m p 0.00 0.20 0.00 0.14 +gémissez gémir VER 9.19 36.89 0.17 0.07 imp:pre:2p;ind:pre:2p; +gémissiez gémir VER 9.19 36.89 0.01 0.00 ind:imp:2p; +gémit gémir VER 9.19 36.89 3.88 12.30 ind:pre:3s;ind:pas:3s; +gémonies gémonies NOM f p 0.01 0.07 0.01 0.07 +gun gun NOM m s 1.51 0.14 1.15 0.07 +guna guna NOM m 0.04 0.00 0.04 0.00 +gêna gêner VER 57.76 71.01 0.01 1.22 ind:pas:3s; +gênaient gêner VER 57.76 71.01 0.16 2.84 ind:imp:3p; +gênais gêner VER 57.76 71.01 0.34 0.61 ind:imp:1s;ind:imp:2s; +gênait gêner VER 57.76 71.01 1.64 11.96 ind:imp:3s; +gênant gênant ADJ m s 10.33 10.27 8.89 6.08 +gênante gênant ADJ f s 10.33 10.27 0.65 2.43 +gênantes gênant ADJ f p 10.33 10.27 0.27 0.95 +gênants gênant ADJ m p 10.33 10.27 0.52 0.81 +gêne gêner VER 57.76 71.01 29.21 13.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +gênent gêner VER 57.76 71.01 1.81 2.16 ind:pre:3p; +gêner gêner VER 57.76 71.01 5.48 9.80 inf;; +gênera gêner VER 57.76 71.01 1.36 0.68 ind:fut:3s; +gênerai gêner VER 57.76 71.01 0.47 0.14 ind:fut:1s; +gêneraient gêner VER 57.76 71.01 0.02 0.14 cnd:pre:3p; +gênerais gêner VER 57.76 71.01 0.34 0.68 cnd:pre:1s;cnd:pre:2s; +gênerait gêner VER 57.76 71.01 1.77 1.15 cnd:pre:3s; +gênerons gêner VER 57.76 71.01 0.01 0.07 ind:fut:1p; +gêneront gêner VER 57.76 71.01 0.19 0.07 ind:fut:3p; +gênes gêner VER 57.76 71.01 1.19 0.68 ind:pre:2s;sub:pre:2s; +gêneur gêneur NOM m s 0.95 1.01 0.85 0.54 +gêneurs gêneur NOM m p 0.95 1.01 0.09 0.34 +gêneuse gêneur NOM f s 0.95 1.01 0.01 0.07 +gêneuses gêneur NOM f p 0.95 1.01 0.00 0.07 +gênez gêner VER 57.76 71.01 3.52 1.28 imp:pre:2p;ind:pre:2p; +génial génial ADJ m s 134.47 10.20 115.27 5.95 +géniale génial ADJ f s 134.47 10.20 15.86 3.31 +génialement génialement ADV 0.04 0.20 0.04 0.20 +géniales génial ADJ f p 134.47 10.20 1.62 0.27 +génialité génialité NOM f s 0.00 0.07 0.00 0.07 +géniaux génial ADJ m p 134.47 10.20 1.72 0.68 +génie génie NOM m s 38.01 51.62 34.65 47.43 +génies génie NOM m p 38.01 51.62 3.36 4.19 +gêniez gêner VER 57.76 71.01 0.00 0.07 ind:imp:2p; +génique génique ADJ s 0.40 0.00 0.40 0.00 +génisse génisse NOM f s 0.83 1.76 0.69 1.42 +génisses génisse NOM f p 0.83 1.76 0.15 0.34 +génital génital ADJ m s 2.43 1.55 0.16 0.34 +génitale génital ADJ f s 2.43 1.55 0.08 0.27 +génitales génital ADJ f p 2.43 1.55 0.81 0.34 +génitalité génitalité NOM f s 0.00 0.07 0.00 0.07 +génitaux génital ADJ m p 2.43 1.55 1.38 0.61 +géniteur géniteur NOM m s 0.49 2.50 0.33 1.01 +géniteurs géniteur NOM m p 0.49 2.50 0.03 1.08 +génitoires génitoire NOM f p 0.00 0.41 0.00 0.41 +génitrice géniteur NOM f s 0.49 2.50 0.14 0.27 +génitrices génitrice NOM f p 0.02 0.00 0.02 0.00 +génocidaire génocidaire ADJ s 0.04 0.00 0.04 0.00 +génocide génocide NOM m s 1.25 1.15 1.18 0.81 +génocides génocide NOM m p 1.25 1.15 0.08 0.34 +génois génois ADJ m 0.17 0.34 0.17 0.34 +génoise génois NOM f s 0.16 1.42 0.12 0.54 +génoises génoise NOM f p 0.21 0.00 0.21 0.00 +génome génome NOM m s 0.63 0.00 0.63 0.00 +génomique génomique ADJ s 0.11 0.00 0.09 0.00 +génomiques génomique ADJ p 0.11 0.00 0.02 0.00 +gênons gêner VER 57.76 71.01 0.17 0.00 imp:pre:1p;ind:pre:1p; +gênât gêner VER 57.76 71.01 0.00 0.20 sub:imp:3s; +génotype génotype NOM m s 0.11 0.00 0.08 0.00 +génotypes génotype NOM m p 0.11 0.00 0.04 0.00 +génovéfains génovéfain NOM m p 0.00 0.07 0.00 0.07 +guns gun NOM m p 1.51 0.14 0.36 0.07 +génère générer VER 2.83 0.00 0.93 0.00 imp:pre:2s;ind:pre:3s; +génères générer VER 2.83 0.00 0.03 0.00 ind:pre:2s; +gêné gêner VER m s 57.76 71.01 5.44 14.53 par:pas; +généalogie généalogie NOM f s 0.28 1.96 0.28 1.62 +généalogies généalogie NOM f p 0.28 1.96 0.00 0.34 +généalogique généalogique ADJ s 0.76 2.50 0.69 1.89 +généalogiques généalogique ADJ p 0.76 2.50 0.07 0.61 +généalogiste généalogiste NOM s 0.17 0.14 0.04 0.14 +généalogistes généalogiste NOM p 0.17 0.14 0.14 0.00 +gênée gêner VER f s 57.76 71.01 3.26 4.12 par:pas; +gênées gêner VER f p 57.76 71.01 0.18 0.34 par:pas; +génuflexion génuflexion NOM f s 0.03 1.01 0.03 0.68 +génuflexions génuflexion NOM f p 0.03 1.01 0.00 0.34 +génuine génuine ADJ f s 0.00 0.07 0.00 0.07 +général général NOM m s 124.83 236.89 119.61 223.99 +générale général ADJ f s 41.31 95.41 10.27 34.73 +généralement généralement ADV 7.79 16.89 7.79 16.89 +générales général ADJ f p 41.31 95.41 0.95 3.65 +généralife généralife NOM m s 0.00 0.20 0.00 0.20 +généralisable généralisable ADJ s 0.00 0.07 0.00 0.07 +généralisait généraliser VER 0.66 1.22 0.00 0.14 ind:imp:3s; +généralisant généraliser VER 0.66 1.22 0.00 0.07 par:pre; +généralisation généralisation NOM f s 0.07 0.61 0.05 0.20 +généralisations généralisation NOM f p 0.07 0.61 0.02 0.41 +généralise généraliser VER 0.66 1.22 0.14 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +généraliser généraliser VER 0.66 1.22 0.44 0.34 inf; +généralisez généraliser VER 0.66 1.22 0.01 0.20 imp:pre:2p;ind:pre:2p; +généralisions généraliser VER 0.66 1.22 0.00 0.07 ind:imp:1p; +généralissime généralissime NOM m s 0.12 1.82 0.12 1.82 +généraliste généraliste NOM s 0.72 0.54 0.45 0.41 +généralistes généraliste NOM p 0.72 0.54 0.27 0.14 +généralisé généralisé ADJ m s 0.33 2.30 0.25 0.68 +généralisée généralisé ADJ f s 0.33 2.30 0.08 1.49 +généralisées généralisé ADJ f p 0.33 2.30 0.00 0.14 +généralité généralité NOM f s 0.41 1.96 0.11 0.47 +généralités généralité NOM f p 0.41 1.96 0.30 1.49 +générant générer VER 2.83 0.00 0.07 0.00 par:pre; +générateur générateur NOM m s 8.93 0.34 6.44 0.14 +générateurs générateur NOM m p 8.93 0.34 2.20 0.07 +génératif génératif ADJ m s 0.02 0.00 0.01 0.00 +génération génération NOM f s 20.51 37.77 13.38 21.01 +générationnel générationnel ADJ m s 0.27 0.00 0.27 0.00 +générations génération NOM f p 20.51 37.77 7.13 16.76 +générative génératif ADJ f s 0.02 0.00 0.01 0.00 +génératrice générateur NOM f s 8.93 0.34 0.29 0.14 +génératrices génératrice NOM f p 0.02 0.00 0.02 0.00 +généraux général NOM m p 124.83 236.89 3.83 11.08 +générer générer VER 2.83 0.00 1.05 0.00 inf; +généreuse généreux ADJ f s 23.32 23.72 6.00 8.04 +généreusement généreusement ADV 1.81 4.53 1.81 4.53 +généreuses généreux ADJ f p 23.32 23.72 0.74 1.69 +généreux généreux ADJ m 23.32 23.72 16.57 13.99 +générez générer VER 2.83 0.00 0.05 0.00 ind:pre:2p; +générique générique NOM m s 1.71 0.88 1.64 0.54 +génériques générique ADJ p 0.56 0.41 0.19 0.07 +générosité générosité NOM f s 6.15 11.55 6.15 10.95 +générosités générosité NOM f p 6.15 11.55 0.00 0.61 +généré générer VER m s 2.83 0.00 0.34 0.00 par:pas; +générée générer VER f s 2.83 0.00 0.14 0.00 par:pas; +générés générer VER m p 2.83 0.00 0.20 0.00 par:pas; +gênés gêner VER m p 57.76 71.01 0.92 2.91 par:pas; +génésique génésique ADJ s 0.00 0.07 0.00 0.07 +généticien généticien NOM m s 0.60 0.07 0.26 0.07 +généticienne généticien NOM f s 0.60 0.07 0.01 0.00 +généticiens généticien NOM m p 0.60 0.07 0.33 0.00 +génétique génétique ADJ s 8.06 1.35 6.33 1.01 +génétiquement génétiquement ADV 1.90 0.20 1.90 0.20 +génétiques génétique ADJ p 8.06 1.35 1.73 0.34 +géo géo NOM f s 0.30 1.22 0.30 1.22 +géocorises géocorise NOM f p 0.00 0.07 0.00 0.07 +géode géode NOM f s 0.04 0.00 0.04 0.00 +géodésiens géodésien ADJ m p 0.00 0.14 0.00 0.14 +géodésigraphe géodésigraphe NOM m s 0.00 0.07 0.00 0.07 +géodésique géodésique ADJ s 0.18 0.27 0.17 0.20 +géodésiques géodésique ADJ m p 0.18 0.27 0.01 0.07 +géographe géographe NOM s 0.10 0.95 0.04 0.54 +géographes géographe NOM f p 0.10 0.95 0.06 0.41 +géographie géographie NOM f s 2.26 8.51 2.26 8.11 +géographies géographie NOM f p 2.26 8.51 0.00 0.41 +géographique géographique ADJ s 0.97 3.51 0.83 2.36 +géographiquement géographiquement ADV 0.10 0.47 0.10 0.47 +géographiques géographique ADJ p 0.97 3.51 0.14 1.15 +géologie géologie NOM f s 0.40 0.61 0.40 0.61 +géologique géologique ADJ s 0.59 0.81 0.39 0.34 +géologiquement géologiquement ADV 0.03 0.00 0.03 0.00 +géologiques géologique ADJ p 0.59 0.81 0.20 0.47 +géologue géologue NOM s 1.11 0.61 0.73 0.27 +géologues géologue NOM p 1.11 0.61 0.38 0.34 +géomagnétique géomagnétique ADJ f s 0.03 0.00 0.02 0.00 +géomagnétiques géomagnétique ADJ p 0.03 0.00 0.01 0.00 +géomancie géomancie NOM f s 0.01 0.07 0.01 0.07 +géomètre géomètre NOM s 6.20 0.54 6.02 0.27 +géomètres géomètre NOM p 6.20 0.54 0.19 0.27 +géométrie géométrie NOM f s 1.06 5.20 1.06 4.80 +géométries géométrie NOM f p 1.06 5.20 0.00 0.41 +géométrique géométrique ADJ s 0.77 4.80 0.58 2.57 +géométriquement géométriquement ADV 0.08 0.41 0.08 0.41 +géométriques géométrique ADJ p 0.77 4.80 0.19 2.23 +géophysiciens géophysicien NOM m p 0.01 0.00 0.01 0.00 +géophysique géophysique NOM f s 0.17 0.00 0.17 0.00 +géopolitique géopolitique ADJ s 0.07 0.14 0.07 0.14 +géorgien géorgien ADJ m s 0.45 0.68 0.44 0.27 +géorgienne géorgien ADJ f s 0.45 0.68 0.01 0.27 +géorgiennes géorgien ADJ f p 0.45 0.68 0.00 0.07 +géorgiens géorgien ADJ m p 0.45 0.68 0.00 0.07 +géosciences géoscience NOM f p 0.01 0.00 0.01 0.00 +géostationnaire géostationnaire ADJ s 0.04 0.00 0.04 0.00 +géostratégie géostratégie NOM f s 0.00 0.07 0.00 0.07 +géosynchrone géosynchrone ADJ f s 0.02 0.00 0.02 0.00 +géothermale géothermal ADJ f s 0.01 0.00 0.01 0.00 +géothermie géothermie NOM f s 0.01 0.00 0.01 0.00 +géothermique géothermique ADJ s 0.13 0.00 0.13 0.00 +géotropique géotropique ADJ m s 0.00 0.20 0.00 0.14 +géotropiques géotropique ADJ m p 0.00 0.20 0.00 0.07 +guppy guppy NOM m s 0.55 0.00 0.55 0.00 +géra gérer VER 27.51 3.31 0.00 0.14 ind:pas:3s; +gérable gérable ADJ s 0.29 0.00 0.25 0.00 +gérables gérable ADJ p 0.29 0.00 0.04 0.00 +gérais gérer VER 27.51 3.31 0.27 0.07 ind:imp:1s;ind:imp:2s; +gérait gérer VER 27.51 3.31 0.40 0.41 ind:imp:3s; +gérance gérance NOM f s 0.29 1.15 0.29 1.15 +géranium géranium NOM m s 1.09 4.12 0.77 0.95 +géraniums géranium NOM m p 1.09 4.12 0.32 3.18 +gérant gérant NOM m s 6.45 8.72 5.54 8.04 +gérante gérant NOM f s 6.45 8.72 0.69 0.68 +gérants gérant NOM m p 6.45 8.72 0.21 0.00 +gérer gérer VER 27.51 3.31 16.57 1.22 inf; +gérera gérer VER 27.51 3.31 0.21 0.00 ind:fut:3s; +gérerai gérer VER 27.51 3.31 0.15 0.00 ind:fut:1s; +gérerais gérer VER 27.51 3.31 0.02 0.00 cnd:pre:1s; +gérerez gérer VER 27.51 3.31 0.01 0.07 ind:fut:2p; +géreriez gérer VER 27.51 3.31 0.01 0.00 cnd:pre:2p; +gérez gérer VER 27.51 3.31 0.69 0.07 imp:pre:2p;ind:pre:2p; +gériatrie gériatrie NOM f s 0.07 0.07 0.07 0.07 +gériatrique gériatrique ADJ s 0.09 0.00 0.07 0.00 +gériatriques gériatrique ADJ f p 0.09 0.00 0.01 0.00 +gérons gérer VER 27.51 3.31 0.12 0.00 imp:pre:1p;ind:pre:1p; +géronte géronte NOM m s 0.00 0.14 0.00 0.07 +gérontes géronte NOM m p 0.00 0.14 0.00 0.07 +gérontisme gérontisme NOM m s 0.01 0.00 0.01 0.00 +gérontologie gérontologie NOM f s 0.05 0.27 0.05 0.27 +gérontologue gérontologue NOM s 0.01 0.07 0.01 0.07 +gérontophiles gérontophile NOM p 0.00 0.07 0.00 0.07 +guru guru NOM m s 0.08 0.07 0.08 0.07 +géré gérer VER m s 27.51 3.31 1.83 0.41 par:pas; +gérée gérer VER f s 27.51 3.31 0.28 0.34 par:pas; +gérées gérer VER f p 27.51 3.31 0.06 0.00 par:pas; +gérés gérer VER m p 27.51 3.31 0.07 0.00 par:pas; +gus gus NOM m 8.50 1.96 8.50 1.96 +gésier gésier NOM m s 0.07 0.88 0.05 0.74 +gésiers gésier NOM m p 0.07 0.88 0.02 0.14 +gésine gésine NOM f s 0.10 0.34 0.10 0.34 +gésir gésir VER 4.77 15.68 0.02 0.07 inf; +gusse gusse NOM m s 0.14 0.00 0.14 0.00 +gustatif gustatif ADJ m s 0.21 0.14 0.05 0.14 +gustation gustation NOM f s 0.00 0.14 0.00 0.14 +gustative gustatif ADJ f s 0.21 0.14 0.02 0.00 +gustatives gustatif ADJ f p 0.21 0.14 0.14 0.00 +gusto gusto ADV 0.88 0.14 0.88 0.14 +gut gut NOM m s 0.64 0.20 0.64 0.20 +guède guède NOM f s 0.02 0.00 0.02 0.00 +guère guère ADV 17.02 110.68 17.02 110.68 +gutta_percha gutta_percha NOM f s 0.03 0.00 0.03 0.00 +guttural guttural ADJ m s 0.07 2.97 0.04 1.08 +gutturale guttural ADJ f s 0.07 2.97 0.01 0.95 +gutturales guttural ADJ f p 0.07 2.97 0.00 0.34 +gutturaux guttural ADJ m p 0.07 2.97 0.01 0.61 +gué gué ONO 0.02 0.00 0.02 0.00 +guéable guéable ADJ f s 0.00 0.07 0.00 0.07 +guéguerre guéguerre NOM f s 0.07 0.41 0.04 0.20 +guéguerres guéguerre NOM f p 0.07 0.41 0.02 0.20 +guépard guépard NOM m s 0.44 0.74 0.27 0.34 +guépards guépard NOM m p 0.44 0.74 0.17 0.41 +guêpe guêpe NOM f s 3.37 6.42 2.73 2.84 +guêpes guêpe NOM f p 3.37 6.42 0.64 3.58 +guêpier guêpier NOM m s 0.27 0.68 0.27 0.68 +guêpière guêpière NOM f s 0.06 1.22 0.05 0.95 +guêpières guêpière NOM f p 0.06 1.22 0.01 0.27 +guérît guérir VER 44.74 30.27 0.00 0.07 sub:imp:3s; +guéret guéret NOM m s 0.01 0.27 0.00 0.07 +guérets guéret NOM m p 0.01 0.27 0.01 0.20 +guéri guérir VER m s 44.74 30.27 9.04 5.95 par:pas; +guéridon guéridon NOM m s 0.70 11.42 0.69 8.31 +guéridons guéridon NOM m p 0.70 11.42 0.01 3.11 +guérie guérir VER f s 44.74 30.27 3.84 3.65 par:pas; +guéries guéri ADJ f p 3.46 4.05 0.16 0.27 +guérilla guérilla NOM f s 2.17 1.55 1.89 1.35 +guérillas guérilla NOM f p 2.17 1.55 0.28 0.20 +guérillero guérillero NOM m s 2.81 0.27 0.67 0.14 +guérilleros guérillero NOM m p 2.81 0.27 2.14 0.14 +guérir guérir VER 44.74 30.27 17.70 11.49 inf; +guérira guérir VER 44.74 30.27 2.28 0.81 ind:fut:3s; +guérirai guérir VER 44.74 30.27 0.69 0.34 ind:fut:1s; +guérirais guérir VER 44.74 30.27 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +guérirait guérir VER 44.74 30.27 0.29 0.47 cnd:pre:3s; +guériras guérir VER 44.74 30.27 0.66 0.54 ind:fut:2s; +guérirez guérir VER 44.74 30.27 0.33 0.14 ind:fut:2p; +guérirons guérir VER 44.74 30.27 0.02 0.07 ind:fut:1p; +guériront guérir VER 44.74 30.27 0.28 0.07 ind:fut:3p; +guéris guérir VER m p 44.74 30.27 2.03 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +guérison guérison NOM f s 5.84 5.20 5.43 4.93 +guérisons guérison NOM f p 5.84 5.20 0.41 0.27 +guérissable guérissable ADJ m s 0.01 0.20 0.01 0.07 +guérissables guérissable ADJ f p 0.01 0.20 0.00 0.14 +guérissaient guérir VER 44.74 30.27 0.16 0.34 ind:imp:3p; +guérissais guérir VER 44.74 30.27 0.02 0.07 ind:imp:1s; +guérissait guérir VER 44.74 30.27 0.14 0.74 ind:imp:3s; +guérissant guérir VER 44.74 30.27 0.10 0.07 par:pre; +guérisse guérir VER 44.74 30.27 1.95 0.27 sub:pre:1s;sub:pre:3s; +guérissent guérir VER 44.74 30.27 0.86 0.41 ind:pre:3p; +guérisses guérir VER 44.74 30.27 0.05 0.07 sub:pre:2s; +guérisseur guérisseur NOM m s 3.10 2.23 1.95 1.42 +guérisseurs guérisseur NOM m p 3.10 2.23 0.24 0.27 +guérisseuse guérisseur NOM f s 3.10 2.23 0.92 0.47 +guérisseuses guérisseuse NOM f p 0.10 0.00 0.10 0.00 +guérissez guérir VER 44.74 30.27 0.35 0.27 imp:pre:2p;ind:pre:2p; +guérissiez guérir VER 44.74 30.27 0.04 0.07 ind:imp:2p; +guérissons guérir VER 44.74 30.27 0.11 0.00 ind:pre:1p; +guérit guérir VER 44.74 30.27 3.62 3.24 ind:pre:3s;ind:pas:3s; +guérite guérite NOM f s 0.06 5.07 0.05 4.12 +guérites guérite NOM f p 0.06 5.07 0.01 0.95 +guêtre guêtre NOM f s 0.39 4.80 0.03 0.41 +guêtres guêtre NOM f p 0.39 4.80 0.36 4.39 +guêtré guêtrer VER m s 0.00 0.14 0.00 0.07 par:pas; +guêtrés guêtrer VER m p 0.00 0.14 0.00 0.07 par:pas; +guévariste guévariste NOM s 0.00 0.14 0.00 0.14 +guyanais guyanais ADJ m p 0.00 0.07 0.00 0.07 +guzla guzla NOM f s 0.00 0.07 0.00 0.07 +gy gy ONO 0.00 1.15 0.00 1.15 +gym gym NOM f s 9.18 2.23 9.18 2.23 +gymkhana gymkhana NOM m s 0.05 0.27 0.05 0.27 +gymnase gymnase NOM m s 4.28 2.43 4.11 2.09 +gymnases gymnase NOM m p 4.28 2.43 0.17 0.34 +gymnasium gymnasium NOM m s 0.00 0.14 0.00 0.14 +gymnaste gymnaste NOM s 0.35 1.35 0.26 0.61 +gymnastes gymnaste NOM p 0.35 1.35 0.10 0.74 +gymnastique gymnastique NOM f s 2.85 10.00 2.74 9.39 +gymnastiques gymnastique NOM f p 2.85 10.00 0.11 0.61 +gymnique gymnique ADJ f s 0.00 0.14 0.00 0.07 +gymniques gymnique ADJ f p 0.00 0.14 0.00 0.07 +gymnopédie gymnopédie NOM f s 0.00 0.07 0.00 0.07 +gymnosophiste gymnosophiste NOM s 0.00 0.14 0.00 0.07 +gymnosophistes gymnosophiste NOM p 0.00 0.14 0.00 0.07 +gynéco gynéco NOM s 0.96 0.54 0.96 0.54 +gynécologie gynécologie NOM f s 0.28 0.07 0.28 0.07 +gynécologique gynécologique ADJ s 0.17 0.27 0.15 0.27 +gynécologiques gynécologique ADJ m p 0.17 0.27 0.02 0.00 +gynécologue gynécologue NOM s 1.56 3.85 1.38 3.65 +gynécologues gynécologue NOM p 1.56 3.85 0.17 0.20 +gynécomastie gynécomastie NOM f s 0.03 0.00 0.03 0.00 +gynécée gynécée NOM m s 0.01 0.20 0.01 0.14 +gynécées gynécée NOM m p 0.01 0.20 0.00 0.07 +gypaète gypaète NOM m s 0.08 0.00 0.08 0.00 +gypse gypse NOM m s 0.09 0.34 0.09 0.27 +gypses gypse NOM m p 0.09 0.34 0.00 0.07 +gypseuse gypseux ADJ f s 0.00 0.14 0.00 0.07 +gypseux gypseux ADJ m s 0.00 0.14 0.00 0.07 +gypsophile gypsophile NOM f s 0.08 0.00 0.06 0.00 +gypsophiles gypsophile NOM f p 0.08 0.00 0.02 0.00 +gyrins gyrin NOM m p 0.00 0.07 0.00 0.07 +gyrocompas gyrocompas NOM m 0.14 0.00 0.14 0.00 +gyrophare gyrophare NOM m s 0.56 1.42 0.30 0.81 +gyrophares gyrophare NOM m p 0.56 1.42 0.26 0.61 +gyroscope gyroscope NOM m s 0.50 0.61 0.46 0.47 +gyroscopes gyroscope NOM m p 0.50 0.61 0.04 0.14 +gyroscopique gyroscopique ADJ s 0.02 0.07 0.02 0.07 +gyrus gyrus NOM m 0.01 0.07 0.01 0.07 +hôpital hôpital NOM m s 133.15 54.93 126.08 50.41 +hôpitaux hôpital NOM m p 133.15 54.93 7.07 4.53 +hôte hôte NOM m s 19.43 20.20 13.43 10.81 +hôtel_dieu hôtel_dieu NOM m s 0.01 0.81 0.01 0.81 +hôtel_restaurant hôtel_restaurant NOM m s 0.00 0.14 0.00 0.14 +hôtel hôtel NOM m s 114.67 158.92 107.73 143.78 +hôtelier hôtelier NOM m s 0.44 1.35 0.43 1.08 +hôteliers hôtelier NOM m p 0.44 1.35 0.01 0.20 +hôtelière hôtelière ADJ f s 0.63 0.34 0.61 0.27 +hôtelières hôtelière ADJ f p 0.63 0.34 0.01 0.07 +hôtellerie hôtellerie NOM f s 0.57 1.82 0.57 1.76 +hôtelleries hôtellerie NOM f p 0.57 1.82 0.00 0.07 +hôtels hôtel NOM m p 114.67 158.92 6.94 15.14 +hôtes hôte NOM m p 19.43 20.20 6.00 9.39 +hôtesse hôtesse NOM f s 8.34 8.31 6.79 7.43 +hôtesses hôtesse NOM f p 8.34 8.31 1.55 0.88 +ha ha ONO 21.54 7.70 21.54 7.70 +haï haïr VER m s 55.42 35.68 0.86 2.03 par:pas; +haïe haïr VER f s 55.42 35.68 0.40 0.54 par:pas; +haïes haïr VER f p 55.42 35.68 0.00 0.20 par:pas; +haïk haïk NOM m s 0.00 0.61 0.00 0.41 +haïkaï haïkaï NOM m s 0.00 0.07 0.00 0.07 +haïks haïk NOM m p 0.00 0.61 0.00 0.20 +haïku haïku NOM m s 0.30 0.07 0.29 0.07 +haïkus haïku NOM m p 0.30 0.07 0.01 0.00 +haïr haïr VER 55.42 35.68 5.91 7.09 inf; +haïra haïr VER 55.42 35.68 0.52 0.00 ind:fut:3s; +haïrai haïr VER 55.42 35.68 0.39 0.07 ind:fut:1s; +haïraient haïr VER 55.42 35.68 0.04 0.07 cnd:pre:3p; +haïrais haïr VER 55.42 35.68 0.05 0.74 cnd:pre:1s;cnd:pre:2s; +haïrait haïr VER 55.42 35.68 0.10 0.14 cnd:pre:3s; +haïras haïr VER 55.42 35.68 0.32 0.00 ind:fut:2s; +haïrez haïr VER 55.42 35.68 0.03 0.00 ind:fut:2p; +haïriez haïr VER 55.42 35.68 0.01 0.00 cnd:pre:2p; +haïrons haïr VER 55.42 35.68 0.00 0.07 ind:fut:1p; +haïront haïr VER 55.42 35.68 0.39 0.00 ind:fut:3p; +haïs haïr VER m p 55.42 35.68 0.34 1.01 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +haïssable haïssable ADJ s 0.07 1.62 0.07 1.15 +haïssables haïssable ADJ p 0.07 1.62 0.01 0.47 +haïssaient haïr VER 55.42 35.68 0.17 0.74 ind:imp:3p; +haïssais haïr VER 55.42 35.68 1.20 2.09 ind:imp:1s;ind:imp:2s; +haïssait haïr VER 55.42 35.68 1.10 6.08 ind:imp:3s; +haïssant haïr VER 55.42 35.68 0.05 0.27 par:pre; +haïsse haïr VER 55.42 35.68 0.25 0.14 sub:pre:1s;sub:pre:3s; +haïssent haïr VER 55.42 35.68 2.44 1.08 ind:pre:3p; +haïsses haïr VER 55.42 35.68 0.21 0.00 sub:pre:2s; +haïssez haïr VER 55.42 35.68 1.19 0.27 imp:pre:2p;ind:pre:2p; +haïssiez haïr VER 55.42 35.68 0.40 0.27 ind:imp:2p; +haïssions haïr VER 55.42 35.68 0.00 0.14 ind:imp:1p; +haïssons haïr VER 55.42 35.68 0.29 0.20 imp:pre:1p;ind:pre:1p; +haït haïr VER 55.42 35.68 0.03 0.00 ind:pas:3s; +haïtien haïtien ADJ m s 0.70 0.34 0.35 0.07 +haïtienne haïtien ADJ f s 0.70 0.34 0.32 0.00 +haïtiens haïtien NOM m p 0.58 1.01 0.53 0.14 +habanera habanera NOM f s 0.01 0.00 0.01 0.00 +habile habile ADJ s 6.44 17.16 5.60 13.11 +habilement habilement ADV 0.58 5.20 0.58 5.20 +habiles habile ADJ p 6.44 17.16 0.84 4.05 +habileté habileté NOM f s 2.05 10.88 2.03 10.54 +habiletés habileté NOM f p 2.05 10.88 0.02 0.34 +habilitation habilitation NOM f s 0.22 0.07 0.19 0.07 +habilitations habilitation NOM f p 0.22 0.07 0.03 0.00 +habilite habiliter VER 0.77 1.01 0.04 0.00 imp:pre:2s;ind:pre:3s; +habilité habilité NOM f s 0.58 0.14 0.51 0.14 +habilitée habiliter VER f s 0.77 1.01 0.17 0.14 par:pas; +habilitées habilité ADJ f p 0.43 0.20 0.15 0.00 +habilités habiliter VER m p 0.77 1.01 0.11 0.20 par:pas; +habilla habiller VER 58.22 67.36 0.13 3.78 ind:pas:3s; +habillage habillage NOM m s 0.14 0.14 0.14 0.14 +habillai habiller VER 58.22 67.36 0.00 0.95 ind:pas:1s; +habillaient habiller VER 58.22 67.36 0.14 0.88 ind:imp:3p; +habillais habiller VER 58.22 67.36 0.56 0.68 ind:imp:1s;ind:imp:2s; +habillait habiller VER 58.22 67.36 0.86 6.08 ind:imp:3s; +habillant habiller VER 58.22 67.36 0.10 0.95 par:pre; +habillas habiller VER 58.22 67.36 0.00 0.07 ind:pas:2s; +habille habiller VER 58.22 67.36 16.95 7.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +habillement habillement NOM m s 0.55 2.50 0.55 2.50 +habillent habiller VER 58.22 67.36 0.77 1.35 ind:pre:3p; +habiller habiller VER 58.22 67.36 17.05 15.27 inf;; +habillera habiller VER 58.22 67.36 0.39 0.14 ind:fut:3s; +habillerai habiller VER 58.22 67.36 0.29 0.14 ind:fut:1s; +habilleraient habiller VER 58.22 67.36 0.01 0.07 cnd:pre:3p; +habillerais habiller VER 58.22 67.36 0.06 0.14 cnd:pre:1s; +habillerait habiller VER 58.22 67.36 0.14 0.34 cnd:pre:3s; +habilleras habiller VER 58.22 67.36 0.03 0.20 ind:fut:2s; +habillerez habiller VER 58.22 67.36 0.23 0.00 ind:fut:2p; +habillerons habiller VER 58.22 67.36 0.12 0.07 ind:fut:1p; +habilles habiller VER 58.22 67.36 2.26 0.27 ind:pre:2s; +habilleur habilleur NOM m s 0.70 0.34 0.06 0.07 +habilleurs habilleur NOM m p 0.70 0.34 0.02 0.00 +habilleuse habilleur NOM f s 0.70 0.34 0.62 0.20 +habilleuses habilleuse NOM f p 0.02 0.00 0.02 0.00 +habillez habiller VER 58.22 67.36 3.65 0.20 imp:pre:2p;ind:pre:2p; +habilliez habiller VER 58.22 67.36 0.04 0.00 ind:imp:2p; +habillions habiller VER 58.22 67.36 0.01 0.07 ind:imp:1p; +habillâmes habiller VER 58.22 67.36 0.00 0.07 ind:pas:1p; +habillons habiller VER 58.22 67.36 0.34 0.20 imp:pre:1p;ind:pre:1p; +habillât habiller VER 58.22 67.36 0.00 0.14 sub:imp:3s; +habillèrent habiller VER 58.22 67.36 0.00 0.27 ind:pas:3p; +habillé habiller VER m s 58.22 67.36 7.24 12.03 par:pas; +habillée habiller VER f s 58.22 67.36 4.51 8.04 par:pas; +habillées habillé ADJ f p 10.45 17.23 0.59 1.62 +habillés habiller VER m p 58.22 67.36 2.07 5.20 par:pas; +habit habit NOM m s 27.64 27.50 8.34 11.08 +habita habiter VER 128.30 112.50 0.02 1.08 ind:pas:3s; +habitabilité habitabilité NOM f s 0.00 0.07 0.00 0.07 +habitable habitable ADJ s 0.57 2.09 0.34 1.69 +habitables habitable ADJ p 0.57 2.09 0.23 0.41 +habitacle habitacle NOM m s 0.27 1.69 0.26 1.62 +habitacles habitacle NOM m p 0.27 1.69 0.01 0.07 +habitai habiter VER 128.30 112.50 0.00 0.07 ind:pas:1s; +habitaient habiter VER 128.30 112.50 2.04 8.24 ind:imp:3p; +habitais habiter VER 128.30 112.50 3.27 4.39 ind:imp:1s;ind:imp:2s; +habitait habiter VER 128.30 112.50 8.94 31.01 ind:imp:3s; +habitant habitant NOM m s 16.68 29.46 1.38 4.32 +habitante habitant NOM f s 16.68 29.46 0.09 0.14 +habitants habitant NOM m p 16.68 29.46 15.21 25.00 +habitassent habiter VER 128.30 112.50 0.00 0.07 sub:imp:3p; +habitat habitat NOM m s 1.38 0.95 1.31 0.88 +habitation habitation NOM f s 1.77 5.61 0.82 3.58 +habitations habitation NOM f p 1.77 5.61 0.95 2.03 +habitats habitat NOM m p 1.38 0.95 0.06 0.07 +habite habiter VER 128.30 112.50 59.55 22.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +habitent habiter VER 128.30 112.50 6.92 4.80 ind:pre:3p; +habiter habiter VER 128.30 112.50 12.73 13.51 inf; +habitera habiter VER 128.30 112.50 0.98 0.34 ind:fut:3s; +habiterai habiter VER 128.30 112.50 0.80 0.14 ind:fut:1s; +habiteraient habiter VER 128.30 112.50 0.01 0.14 cnd:pre:3p; +habiterais habiter VER 128.30 112.50 0.42 0.14 cnd:pre:1s;cnd:pre:2s; +habiterait habiter VER 128.30 112.50 0.64 0.34 cnd:pre:3s; +habiteras habiter VER 128.30 112.50 0.43 0.41 ind:fut:2s; +habiterez habiter VER 128.30 112.50 0.41 0.07 ind:fut:2p; +habiterions habiter VER 128.30 112.50 0.01 0.27 cnd:pre:1p; +habiterons habiter VER 128.30 112.50 0.24 0.14 ind:fut:1p; +habiteront habiter VER 128.30 112.50 0.01 0.14 ind:fut:3p; +habites habiter VER 128.30 112.50 11.71 1.96 ind:pre:2s; +habitez habiter VER 128.30 112.50 8.83 1.82 imp:pre:2p;ind:pre:2p; +habitiez habiter VER 128.30 112.50 1.50 0.14 ind:imp:2p; +habitions habiter VER 128.30 112.50 0.39 2.16 ind:imp:1p; +habitons habiter VER 128.30 112.50 1.72 1.55 imp:pre:1p;ind:pre:1p; +habitât habiter VER 128.30 112.50 0.00 0.34 sub:imp:3s; +habits habit NOM m p 27.64 27.50 19.29 16.42 +habitèrent habiter VER 128.30 112.50 0.00 0.47 ind:pas:3p; +habité habiter VER m s 128.30 112.50 4.83 8.51 par:pas; +habitua habituer VER 31.89 46.42 0.02 0.74 ind:pas:3s; +habituai habituer VER 31.89 46.42 0.10 0.07 ind:pas:1s; +habituaient habituer VER 31.89 46.42 0.00 0.88 ind:imp:3p; +habituais habituer VER 31.89 46.42 0.03 0.74 ind:imp:1s; +habituait habituer VER 31.89 46.42 0.17 1.76 ind:imp:3s; +habituant habituer VER 31.89 46.42 0.01 0.74 par:pre; +habitude habitude NOM f s 98.22 154.46 89.71 128.51 +habitudes habitude NOM f p 98.22 154.46 8.52 25.95 +habitée habiter VER f s 128.30 112.50 1.19 3.58 par:pas; +habitue habituer VER 31.89 46.42 5.36 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +habituel habituel ADJ m s 15.66 39.93 5.35 14.86 +habituelle habituel ADJ f s 15.66 39.93 4.95 13.65 +habituellement habituellement ADV 4.02 7.70 4.02 7.70 +habituelles habituel ADJ f p 15.66 39.93 2.00 5.41 +habituels habituel ADJ m p 15.66 39.93 3.36 6.01 +habituent habituer VER 31.89 46.42 0.47 0.61 ind:pre:3p; +habituer habituer VER 31.89 46.42 8.95 9.26 inf;;inf;;inf;; +habituera habituer VER 31.89 46.42 0.21 0.20 ind:fut:3s; +habituerai habituer VER 31.89 46.42 0.46 0.27 ind:fut:1s; +habitueraient habituer VER 31.89 46.42 0.00 0.14 cnd:pre:3p; +habituerais habituer VER 31.89 46.42 0.08 0.14 cnd:pre:1s; +habituerait habituer VER 31.89 46.42 0.04 0.47 cnd:pre:3s; +habitueras habituer VER 31.89 46.42 1.45 0.14 ind:fut:2s; +habituerez habituer VER 31.89 46.42 0.33 0.14 ind:fut:2p; +habituerons habituer VER 31.89 46.42 0.00 0.07 ind:fut:1p; +habitueront habituer VER 31.89 46.42 0.07 0.07 ind:fut:3p; +habitées habité ADJ f p 1.40 3.85 0.08 0.27 +habitues habituer VER 31.89 46.42 0.71 0.34 ind:pre:2s;sub:pre:2s; +habituez habituer VER 31.89 46.42 0.37 0.27 imp:pre:2p;ind:pre:2p; +habituons habituer VER 31.89 46.42 0.02 0.00 imp:pre:1p; +habituât habituer VER 31.89 46.42 0.00 0.14 sub:imp:3s; +habités habité ADJ m p 1.40 3.85 0.38 0.61 +habitus habitus NOM m 0.00 0.14 0.00 0.14 +habituèrent habituer VER 31.89 46.42 0.11 0.34 ind:pas:3p; +habitué habituer VER m s 31.89 46.42 6.32 10.47 par:pas; +habituée habituer VER f s 31.89 46.42 3.75 7.70 par:pas; +habituées habituer VER f p 31.89 46.42 0.63 0.47 par:pas; +habitués habituer VER m p 31.89 46.42 2.24 5.74 par:pas; +hacha hacher VER 2.18 6.01 0.10 0.07 ind:pas:3s; +hachage hachage NOM m s 0.01 0.00 0.01 0.00 +hachaient hacher VER 2.18 6.01 0.00 0.14 ind:imp:3p; +hachait hacher VER 2.18 6.01 0.02 0.74 ind:imp:3s; +hachant hacher VER 2.18 6.01 0.02 0.47 par:pre; +hachard hachard NOM m s 0.00 0.07 0.00 0.07 +hache_paille hache_paille NOM m p 0.00 0.14 0.00 0.14 +hache hache NOM f s 10.23 13.65 8.73 11.76 +hachent hacher VER 2.18 6.01 0.03 0.34 ind:pre:3p; +hacher hacher VER 2.18 6.01 0.35 0.74 inf; +hacherai hacher VER 2.18 6.01 0.03 0.00 ind:fut:1s; +hacherait hacher VER 2.18 6.01 0.02 0.00 cnd:pre:3s; +haches hache NOM f p 10.23 13.65 1.50 1.89 +hachette hachette NOM f s 0.22 0.74 0.20 0.74 +hachettes hachette NOM f p 0.22 0.74 0.02 0.00 +hacheur hacheur NOM m s 0.11 0.27 0.01 0.14 +hacheurs hacheur NOM m p 0.11 0.27 0.10 0.14 +hachez hacher VER 2.18 6.01 0.67 0.14 imp:pre:2p;ind:pre:2p; +hachis hachis NOM m p 1.07 1.22 1.07 1.22 +hachisch hachisch NOM m s 0.01 0.07 0.01 0.07 +hachoir hachoir NOM m s 0.70 0.81 0.68 0.61 +hachoirs hachoir NOM m p 0.70 0.81 0.02 0.20 +hachèrent hacher VER 2.18 6.01 0.00 0.07 ind:pas:3p; +haché haché ADJ m s 1.50 5.07 0.73 1.01 +hachée haché ADJ f s 1.50 5.07 0.66 2.70 +hachées hacher VER f p 2.18 6.01 0.01 0.41 par:pas; +hachuraient hachurer VER 0.03 1.08 0.00 0.14 ind:imp:3p; +hachurait hachurer VER 0.03 1.08 0.00 0.07 ind:imp:3s; +hachurant hachurer VER 0.03 1.08 0.00 0.07 par:pre; +hachure hachure NOM f s 0.00 1.55 0.00 0.20 +hachures hachure NOM f p 0.00 1.55 0.00 1.35 +hachuré hachurer VER m s 0.03 1.08 0.03 0.34 par:pas; +hachurée hachurer VER f s 0.03 1.08 0.00 0.14 par:pas; +hachurées hachurer VER f p 0.03 1.08 0.00 0.14 par:pas; +hachurés hachurer VER m p 0.03 1.08 0.00 0.14 par:pas; +hachés haché ADJ m p 1.50 5.07 0.11 0.81 +hacienda hacienda NOM f s 0.93 0.20 0.90 0.20 +haciendas hacienda NOM f p 0.93 0.20 0.03 0.00 +hack hack NOM m s 0.23 0.00 0.23 0.00 +hacker hacker NOM m s 0.99 0.00 0.66 0.00 +hackers hacker NOM m p 0.99 0.00 0.33 0.00 +haddock haddock NOM m s 0.23 0.54 0.23 0.54 +hadith hadith NOM m s 0.01 0.00 0.01 0.00 +hadj hadj NOM m s 1.88 0.00 1.88 0.00 +hadji hadji NOM m p 0.47 0.27 0.47 0.27 +hagard hagard ADJ m s 0.46 13.18 0.24 6.96 +hagarde hagard ADJ f s 0.46 13.18 0.03 3.51 +hagardes hagard ADJ f p 0.46 13.18 0.00 0.41 +hagards hagard ADJ m p 0.46 13.18 0.19 2.30 +haggadah haggadah NOM f s 0.02 0.00 0.02 0.00 +haggis haggis NOM m p 0.27 0.00 0.27 0.00 +hagiographe hagiographe NOM m s 0.00 0.47 0.00 0.47 +hagiographie hagiographie NOM f s 0.01 0.20 0.01 0.20 +haha haha ONO 0.59 1.22 0.59 1.22 +hai hai ONO 1.28 0.07 1.28 0.07 +haie haie NOM f s 3.36 26.08 2.60 14.80 +haies haie NOM f p 3.36 26.08 0.76 11.28 +haillon haillon NOM m s 1.78 3.78 0.01 0.47 +haillonneuse haillonneux ADJ f s 0.00 0.20 0.00 0.14 +haillonneux haillonneux ADJ m p 0.00 0.20 0.00 0.07 +haillons haillon NOM m p 1.78 3.78 1.77 3.31 +haine haine NOM f s 33.10 52.50 31.49 49.39 +haines haine NOM f p 33.10 52.50 1.62 3.11 +haineuse haineux ADJ f s 0.96 6.42 0.07 1.76 +haineusement haineusement ADV 0.01 0.68 0.01 0.68 +haineuses haineux ADJ f p 0.96 6.42 0.07 0.34 +haineux haineux ADJ m 0.96 6.42 0.82 4.32 +haire haire NOM f s 0.00 0.20 0.00 0.14 +haires haire NOM f p 0.00 0.20 0.00 0.07 +hais haïr VER 55.42 35.68 31.21 8.85 imp:pre:2s;ind:pre:1s;ind:pre:2s; +hait haïr VER 55.42 35.68 7.53 3.58 ind:pre:3s; +haka haka NOM m s 0.01 0.00 0.01 0.00 +hakka hakka NOM m s 0.01 0.00 0.01 0.00 +hala haler VER 0.16 2.30 0.00 0.07 ind:pas:3s; +halage halage NOM m s 0.16 1.55 0.16 1.49 +halages halage NOM m p 0.16 1.55 0.00 0.07 +halaient haler VER 0.16 2.30 0.00 0.34 ind:imp:3p; +halait haler VER 0.16 2.30 0.00 0.20 ind:imp:3s; +halal halal ADJ f s 0.24 0.00 0.24 0.00 +halant haler VER 0.16 2.30 0.00 0.34 par:pre; +halcyon halcyon NOM m s 0.02 0.00 0.02 0.00 +hale hale NOM m s 0.00 0.07 0.00 0.07 +haleine haleine NOM f s 8.00 23.04 7.55 21.82 +haleines haleine NOM f p 8.00 23.04 0.45 1.22 +halent haler VER 0.16 2.30 0.10 0.20 ind:pre:3p; +haler haler VER 0.16 2.30 0.02 0.54 inf; +haleta haleter VER 0.79 11.76 0.02 0.95 ind:pas:3s; +haletaient haleter VER 0.79 11.76 0.00 0.27 ind:imp:3p; +haletais haleter VER 0.79 11.76 0.03 0.14 ind:imp:1s;ind:imp:2s; +haletait haleter VER 0.79 11.76 0.00 3.58 ind:imp:3s; +haletant haleter VER 0.79 11.76 0.06 4.26 par:pre; +haletante haletant ADJ f s 0.47 9.80 0.40 4.66 +haletantes haletant ADJ f p 0.47 9.80 0.00 0.41 +haletants haletant ADJ m p 0.47 9.80 0.01 1.76 +haleter haleter VER 0.79 11.76 0.20 1.28 inf; +haleté haleter VER m s 0.79 11.76 0.02 0.20 par:pas; +haleur haleur NOM m s 0.11 0.34 0.01 0.07 +haleurs haleur NOM m p 0.11 0.34 0.10 0.27 +halez haler VER 0.16 2.30 0.02 0.07 imp:pre:2p; +half_track half_track NOM m s 0.05 0.14 0.04 0.14 +half_track half_track NOM m p 0.05 0.14 0.01 0.00 +halieutiques halieutique ADJ f p 0.00 0.07 0.00 0.07 +hall hall NOM m s 9.90 26.76 9.73 25.81 +hallali hallali NOM m s 0.14 1.35 0.14 1.35 +halle halle NOM f s 0.83 9.32 0.26 1.01 +hallebarde hallebarde NOM f s 0.06 1.28 0.05 0.27 +hallebardes hallebarde NOM f p 0.06 1.28 0.01 1.01 +hallebardier hallebardier NOM m s 0.03 0.68 0.02 0.20 +hallebardiers hallebardier NOM m p 0.03 0.68 0.01 0.47 +halles halle NOM f p 0.83 9.32 0.57 8.31 +hallier hallier NOM m s 0.02 1.76 0.01 0.81 +halliers hallier NOM m p 0.02 1.76 0.01 0.95 +halloween halloween NOM f s 0.04 0.00 0.04 0.00 +halls hall NOM m p 9.90 26.76 0.17 0.95 +hallucinais halluciner VER 3.44 0.95 0.08 0.07 ind:imp:1s;ind:imp:2s; +hallucinant hallucinant ADJ m s 1.56 2.91 1.40 0.81 +hallucinante hallucinant ADJ f s 1.56 2.91 0.10 1.62 +hallucinantes hallucinant ADJ f p 1.56 2.91 0.02 0.14 +hallucinants hallucinant ADJ m p 1.56 2.91 0.04 0.34 +hallucination hallucination NOM f s 7.88 5.61 3.46 3.51 +hallucinations hallucination NOM f p 7.88 5.61 4.43 2.09 +hallucinatoire hallucinatoire ADJ s 0.39 0.20 0.23 0.14 +hallucinatoires hallucinatoire ADJ p 0.39 0.20 0.16 0.07 +hallucine halluciner VER 3.44 0.95 1.87 0.20 ind:pre:1s;ind:pre:3s; +halluciner halluciner VER 3.44 0.95 0.95 0.14 inf; +hallucinez halluciner VER 3.44 0.95 0.05 0.00 imp:pre:2p;ind:pre:2p; +hallucinogène hallucinogène ADJ s 0.61 0.14 0.18 0.00 +hallucinogènes hallucinogène ADJ p 0.61 0.14 0.44 0.14 +hallucinons halluciner VER 3.44 0.95 0.01 0.00 ind:pre:1p; +halluciné halluciner VER m s 3.44 0.95 0.41 0.34 par:pas; +hallucinée halluciné ADJ f s 0.25 1.35 0.11 0.47 +hallucinées halluciné ADJ f p 0.25 1.35 0.01 0.07 +hallucinés halluciné NOM m p 0.03 0.95 0.01 0.27 +halo halo NOM m s 1.36 8.38 1.30 7.50 +halogène halogène NOM m s 0.12 0.00 0.04 0.00 +halogènes halogène NOM m p 0.12 0.00 0.08 0.00 +halogénure halogénure NOM m s 0.01 0.00 0.01 0.00 +halon halon NOM m s 0.08 0.07 0.08 0.00 +halons halon NOM m p 0.08 0.07 0.00 0.07 +halopéridol halopéridol NOM m s 0.12 0.00 0.12 0.00 +halos halo NOM m p 1.36 8.38 0.05 0.88 +halothane halothane NOM m s 0.50 0.00 0.50 0.00 +halte_garderie halte_garderie NOM f s 0.02 0.00 0.02 0.00 +halte halte ONO 14.27 3.85 14.27 3.85 +halter halter VER 0.07 0.20 0.03 0.00 inf; +haltes halte NOM f p 3.77 12.77 0.03 1.89 +halèrent haler VER 0.16 2.30 0.02 0.07 ind:pas:3p; +halète haleter VER 0.79 11.76 0.34 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +halètement halètement NOM m s 0.45 3.72 0.00 2.57 +halètements halètement NOM m p 0.45 3.72 0.45 1.15 +halètent haleter VER 0.79 11.76 0.10 0.20 ind:pre:3p; +halètes haleter VER 0.79 11.76 0.01 0.00 ind:pre:2s; +haltère haltère NOM m s 0.95 1.35 0.06 0.07 +haltères haltère NOM m p 0.95 1.35 0.89 1.28 +haltérophile haltérophile NOM s 0.11 0.27 0.06 0.20 +haltérophiles haltérophile NOM p 0.11 0.27 0.04 0.07 +haltérophilie haltérophilie NOM f s 0.18 0.14 0.18 0.14 +halé haler VER m s 0.16 2.30 0.00 0.20 par:pas; +halée haler VER f s 0.16 2.30 0.00 0.14 par:pas; +halés haler VER m p 0.16 2.30 0.00 0.14 par:pas; +halva halva NOM m s 0.01 0.07 0.01 0.07 +hamac hamac NOM m s 1.84 3.78 1.63 3.11 +hamacs hamac NOM m p 1.84 3.78 0.22 0.68 +hamada hamada NOM f s 0.17 0.07 0.17 0.07 +hamadryade hamadryade NOM f s 0.01 0.00 0.01 0.00 +hamadryas hamadryas NOM m 0.01 0.00 0.01 0.00 +hamamélis hamamélis NOM m 0.01 0.00 0.01 0.00 +hambourgeois hambourgeois ADJ m s 0.02 0.20 0.02 0.20 +hambourgeoises hambourgeois NOM f p 0.00 0.20 0.00 0.07 +hamburger hamburger NOM m s 7.47 0.68 4.10 0.41 +hamburgers hamburger NOM m p 7.47 0.68 3.38 0.27 +hameau hameau NOM m s 0.81 10.61 0.79 7.91 +hameaux hameau NOM m p 0.81 10.61 0.03 2.70 +hameçon hameçon NOM m s 3.08 3.24 2.61 2.50 +hameçonne hameçonner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +hameçons hameçon NOM m p 3.08 3.24 0.47 0.74 +hammam hammam NOM m s 0.73 1.55 0.58 1.49 +hammams hammam NOM m p 0.73 1.55 0.14 0.07 +hammerless hammerless NOM m p 0.27 0.07 0.27 0.07 +hampe hampe NOM f s 0.52 3.11 0.52 1.82 +hampes hampe NOM f p 0.52 3.11 0.00 1.28 +hamster hamster NOM m s 2.51 1.22 2.18 0.68 +hamsters hamster NOM m p 2.51 1.22 0.33 0.54 +han han ADJ m s 1.96 1.49 1.96 1.49 +hanap hanap NOM m s 0.01 0.34 0.01 0.20 +hanaps hanap NOM m p 0.01 0.34 0.00 0.14 +hanche hanche NOM f s 8.90 32.36 3.42 9.59 +hanches hanche NOM f p 8.90 32.36 5.48 22.77 +hanchée hancher VER f s 0.00 0.07 0.00 0.07 par:pas; +hand_ball hand_ball NOM m s 0.08 0.00 0.08 0.00 +handball handball NOM m s 0.52 0.00 0.52 0.00 +handicap handicap NOM m s 3.70 2.70 3.40 2.30 +handicapait handicaper VER 2.32 0.74 0.02 0.00 ind:imp:3s; +handicapant handicapant ADJ m s 0.15 0.00 0.15 0.00 +handicape handicaper VER 2.32 0.74 0.20 0.07 imp:pre:2s;ind:pre:3s; +handicaper handicaper VER 2.32 0.74 0.05 0.07 inf;; +handicapera handicaper VER 2.32 0.74 0.02 0.00 ind:fut:3s; +handicapeur handicapeur NOM m s 0.06 0.00 0.06 0.00 +handicaps handicap NOM m p 3.70 2.70 0.30 0.41 +handicapé handicaper VER m s 2.32 0.74 1.12 0.41 par:pas; +handicapée handicaper VER f s 2.32 0.74 0.66 0.14 par:pas; +handicapées handicaper VER f p 2.32 0.74 0.03 0.00 par:pas; +handicapés handicapé NOM m p 4.83 1.15 3.46 0.41 +hangar hangar NOM m s 5.65 18.85 5.44 12.97 +hangars hangar NOM m p 5.65 18.85 0.20 5.88 +hanneton hanneton NOM m s 0.50 5.34 0.05 2.70 +hannetons hanneton NOM m p 0.50 5.34 0.45 2.64 +hanoukka hanoukka NOM f s 0.31 0.00 0.31 0.00 +hanovrien hanovrien ADJ m s 0.00 0.07 0.00 0.07 +hanovriens hanovrien NOM m p 0.14 0.00 0.14 0.00 +hanséatique hanséatique ADJ f s 0.10 0.00 0.10 0.00 +hanta hanter VER 11.37 15.20 0.06 0.27 ind:pas:3s; +hantaient hanter VER 11.37 15.20 0.02 0.74 ind:imp:3p; +hantais hanter VER 11.37 15.20 0.18 0.00 ind:imp:1s;ind:imp:2s; +hantait hanter VER 11.37 15.20 0.42 2.36 ind:imp:3s; +hantant hanter VER 11.37 15.20 0.01 0.14 par:pre; +hantavirus hantavirus NOM m 0.03 0.00 0.03 0.00 +hante hanter VER 11.37 15.20 2.70 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hantent hanter VER 11.37 15.20 1.28 0.95 ind:pre:3p; +hanter hanter VER 11.37 15.20 1.92 2.23 inf; +hantera hanter VER 11.37 15.20 0.19 0.07 ind:fut:3s; +hanterai hanter VER 11.37 15.20 0.04 0.00 ind:fut:1s; +hanterait hanter VER 11.37 15.20 0.08 0.07 cnd:pre:3s; +hanteront hanter VER 11.37 15.20 0.15 0.00 ind:fut:3p; +hantes hanter VER 11.37 15.20 0.39 0.00 ind:pre:2s; +hanteur hanteur ADJ m s 0.00 0.07 0.00 0.07 +hantez hanter VER 11.37 15.20 0.33 0.07 imp:pre:2p;ind:pre:2p; +hantise hantise NOM f s 0.19 5.07 0.07 4.46 +hantises hantise NOM f p 0.19 5.07 0.12 0.61 +hanté hanter VER m s 11.37 15.20 1.91 3.04 par:pas; +hantée hanter VER f s 11.37 15.20 1.15 0.81 par:pas; +hantées hanté ADJ f p 1.99 1.55 0.17 0.27 +hantés hanter VER m p 11.37 15.20 0.47 1.08 par:pas; +happa happer VER 0.99 8.24 0.00 0.34 ind:pas:3s; +happai happer VER 0.99 8.24 0.00 0.07 ind:pas:1s; +happaient happer VER 0.99 8.24 0.00 0.27 ind:imp:3p; +happait happer VER 0.99 8.24 0.00 0.54 ind:imp:3s; +happant happer VER 0.99 8.24 0.00 0.34 par:pre; +happe happer VER 0.99 8.24 0.16 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +happement happement NOM m s 0.00 0.20 0.00 0.20 +happening happening NOM m s 0.41 0.54 0.39 0.41 +happenings happening NOM m p 0.41 0.54 0.02 0.14 +happent happer VER 0.99 8.24 0.11 0.34 ind:pre:3p; +happer happer VER 0.99 8.24 0.24 0.88 inf; +happerait happer VER 0.99 8.24 0.00 0.07 cnd:pre:3s; +happeurs happeur NOM m p 0.00 0.07 0.00 0.07 +happé happer VER m s 0.99 8.24 0.11 2.23 par:pas; +happée happer VER f s 0.99 8.24 0.32 1.15 par:pas; +happées happer VER f p 0.99 8.24 0.01 0.41 par:pas; +happés happer VER m p 0.99 8.24 0.04 0.61 par:pas; +happy_end happy_end NOM m s 0.51 0.27 0.45 0.27 +happy_end happy_end NOM m p 0.51 0.27 0.05 0.00 +happy_few happy_few NOM m p 0.00 0.14 0.00 0.14 +haptoglobine haptoglobine NOM f s 0.01 0.00 0.01 0.00 +haque haque NOM f s 0.41 1.62 0.41 1.62 +haquenée haquenée NOM f s 0.00 0.07 0.00 0.07 +haquet haquet NOM m s 0.00 0.20 0.00 0.14 +haquets haquet NOM m p 0.00 0.20 0.00 0.07 +hara_kiri hara_kiri NOM m s 0.29 0.41 0.29 0.41 +harangua haranguer VER 0.09 1.89 0.00 0.27 ind:pas:3s; +haranguaient haranguer VER 0.09 1.89 0.00 0.14 ind:imp:3p; +haranguait haranguer VER 0.09 1.89 0.00 0.34 ind:imp:3s; +haranguant haranguer VER 0.09 1.89 0.00 0.41 par:pre; +harangue harangue NOM f s 0.01 1.22 0.01 0.81 +haranguer haranguer VER 0.09 1.89 0.06 0.20 inf; +haranguerais haranguer VER 0.09 1.89 0.00 0.07 cnd:pre:1s; +harangues harangue NOM f p 0.01 1.22 0.00 0.41 +haranguez haranguer VER 0.09 1.89 0.01 0.00 ind:pre:2p; +harangué haranguer VER m s 0.09 1.89 0.00 0.20 par:pas; +haranguée haranguer VER f s 0.09 1.89 0.01 0.07 par:pas; +harangués haranguer VER m p 0.09 1.89 0.00 0.14 par:pas; +harari harari NOM m p 0.02 0.00 0.02 0.00 +haras haras NOM m p 0.19 1.01 0.19 1.01 +harassaient harasser VER 0.17 1.28 0.01 0.14 ind:imp:3p; +harassant harassant ADJ m s 0.19 1.42 0.03 0.20 +harassante harassant ADJ f s 0.19 1.42 0.15 0.47 +harassantes harassant ADJ f p 0.19 1.42 0.00 0.47 +harassants harassant ADJ m p 0.19 1.42 0.00 0.27 +harasse harasser VER 0.17 1.28 0.00 0.07 ind:pre:3s; +harassement harassement NOM m s 0.27 0.20 0.27 0.20 +harassent harasser VER 0.17 1.28 0.11 0.07 ind:pre:3p; +harasser harasser VER 0.17 1.28 0.00 0.07 inf; +harassé harassé ADJ m s 0.12 2.50 0.01 1.15 +harassée harassé ADJ f s 0.12 2.50 0.01 0.41 +harassées harassé ADJ f p 0.12 2.50 0.00 0.14 +harassés harassé ADJ m p 0.12 2.50 0.10 0.81 +harcela harceler VER 11.12 8.24 0.00 0.14 ind:pas:3s; +harcelai harceler VER 11.12 8.24 0.00 0.07 ind:pas:1s; +harcelaient harceler VER 11.12 8.24 0.30 0.74 ind:imp:3p; +harcelais harceler VER 11.12 8.24 0.11 0.20 ind:imp:1s;ind:imp:2s; +harcelait harceler VER 11.12 8.24 0.62 0.88 ind:imp:3s; +harcelant harceler VER 11.12 8.24 0.13 0.61 par:pre; +harcelante harcelant ADJ f s 0.04 0.61 0.00 0.27 +harcelantes harcelant ADJ f p 0.04 0.61 0.01 0.14 +harcelants harcelant ADJ m p 0.04 0.61 0.00 0.07 +harceler harceler VER 11.12 8.24 3.00 1.82 inf; +harceleur harceleur NOM m s 0.17 0.07 0.16 0.00 +harceleuse harceleur NOM f s 0.17 0.07 0.01 0.07 +harcelez harceler VER 11.12 8.24 0.92 0.00 imp:pre:2p;ind:pre:2p; +harceliez harceler VER 11.12 8.24 0.06 0.00 ind:imp:2p; +harcelèrent harceler VER 11.12 8.24 0.00 0.07 ind:pas:3p; +harcelé harceler VER m s 11.12 8.24 1.16 1.62 par:pas; +harcelée harceler VER f s 11.12 8.24 0.67 0.34 par:pas; +harcelées harceler VER f p 11.12 8.24 0.04 0.07 par:pas; +harcelés harceler VER m p 11.12 8.24 0.37 0.61 par:pas; +harcèle harceler VER 11.12 8.24 2.88 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +harcèlement harcèlement NOM m s 3.69 1.49 3.65 1.35 +harcèlements harcèlement NOM m p 3.69 1.49 0.05 0.14 +harcèlent harceler VER 11.12 8.24 0.41 0.27 ind:pre:3p; +harcèlera harceler VER 11.12 8.24 0.17 0.00 ind:fut:3s; +harcèlerai harceler VER 11.12 8.24 0.11 0.00 ind:fut:1s; +harcèleraient harceler VER 11.12 8.24 0.00 0.14 cnd:pre:3p; +harcèlerez harceler VER 11.12 8.24 0.01 0.00 ind:fut:2p; +harcèlerons harceler VER 11.12 8.24 0.14 0.00 ind:fut:1p; +harcèleront harceler VER 11.12 8.24 0.02 0.00 ind:fut:3p; +hard_top hard_top NOM m s 0.01 0.00 0.01 0.00 +hard_edge hard_edge NOM m s 0.01 0.00 0.01 0.00 +hard hard ADJ 2.72 1.08 2.72 1.08 +harde harde NOM f s 0.15 8.99 0.00 3.85 +hardent harder VER 0.18 0.07 0.01 0.00 ind:pre:3p; +harder harder VER 0.18 0.07 0.17 0.07 inf; +hardes harde NOM f p 0.15 8.99 0.15 5.14 +hardi hardi ONO 0.01 0.61 0.01 0.61 +hardie hardi ADJ f s 2.22 10.68 0.63 1.35 +hardies hardi ADJ f p 2.22 10.68 0.11 0.88 +hardiesse hardiesse NOM f s 0.46 2.64 0.46 2.03 +hardiesses hardiesse NOM f p 0.46 2.64 0.00 0.61 +hardiment hardiment ADV 1.20 1.62 1.20 1.62 +hardis hardi ADJ m p 2.22 10.68 0.19 1.96 +hare hare ONO 0.49 0.07 0.49 0.07 +harem harem NOM m s 1.78 15.95 1.60 15.74 +harems harem NOM m p 1.78 15.95 0.17 0.20 +hareng hareng NOM m s 2.78 6.08 1.90 2.91 +harengs hareng NOM m p 2.78 6.08 0.89 3.18 +harengère harengère NOM f s 0.10 0.14 0.10 0.14 +harenguet harenguet NOM m s 0.01 0.00 0.01 0.00 +harenguier harenguier NOM m s 0.10 0.00 0.10 0.00 +haret haret ADJ m s 0.00 0.07 0.00 0.07 +harfang harfang NOM m s 0.00 0.07 0.00 0.07 +hargne hargne NOM f s 0.42 4.53 0.42 4.26 +hargnes hargne NOM f p 0.42 4.53 0.00 0.27 +hargneuse hargneux ADJ f s 1.13 9.46 0.14 3.11 +hargneusement hargneusement ADV 0.00 1.42 0.00 1.42 +hargneuses hargneux ADJ f p 1.13 9.46 0.01 0.81 +hargneux hargneux ADJ m 1.13 9.46 0.98 5.54 +haricot haricot NOM m s 8.85 13.45 1.40 1.22 +haricots haricot NOM m p 8.85 13.45 7.45 12.23 +haridelle haridelle NOM f s 0.01 0.61 0.01 0.41 +haridelles haridelle NOM f p 0.01 0.61 0.00 0.20 +harissa harissa NOM f s 0.00 0.20 0.00 0.20 +harki harki NOM m s 0.00 0.41 0.00 0.14 +harkis harki NOM m p 0.00 0.41 0.00 0.27 +harmattan harmattan NOM m s 0.02 0.07 0.02 0.07 +harmonica harmonica NOM m s 1.41 1.76 1.38 1.69 +harmonicas harmonica NOM m p 1.41 1.76 0.03 0.07 +harmoniciste harmoniciste NOM s 0.02 0.00 0.02 0.00 +harmonie harmonie NOM f s 6.80 16.22 6.36 15.61 +harmonies harmonie NOM f p 6.80 16.22 0.44 0.61 +harmonieuse harmonieux ADJ f s 1.16 7.09 0.27 2.43 +harmonieusement harmonieusement ADV 0.06 1.28 0.06 1.28 +harmonieuses harmonieux ADJ f p 1.16 7.09 0.05 0.61 +harmonieux harmonieux ADJ m 1.16 7.09 0.84 4.05 +harmonique harmonique ADJ s 0.43 0.61 0.36 0.47 +harmoniquement harmoniquement ADV 0.01 0.00 0.01 0.00 +harmoniques harmonique NOM m p 0.22 0.41 0.18 0.41 +harmonisaient harmoniser VER 0.35 1.42 0.00 0.07 ind:imp:3p; +harmonisait harmoniser VER 0.35 1.42 0.05 0.54 ind:imp:3s; +harmonisant harmoniser VER 0.35 1.42 0.01 0.14 par:pre; +harmonisateurs harmonisateur ADJ m p 0.00 0.20 0.00 0.07 +harmonisation harmonisation NOM f s 0.05 0.07 0.05 0.07 +harmonisatrices harmonisateur ADJ f p 0.00 0.20 0.00 0.14 +harmonise harmoniser VER 0.35 1.42 0.04 0.20 ind:pre:3s; +harmonisent harmoniser VER 0.35 1.42 0.01 0.07 ind:pre:3p; +harmoniser harmoniser VER 0.35 1.42 0.22 0.27 inf; +harmonisera harmoniser VER 0.35 1.42 0.01 0.00 ind:fut:3s; +harmonisez harmoniser VER 0.35 1.42 0.01 0.00 ind:pre:2p; +harmonisèrent harmoniser VER 0.35 1.42 0.00 0.07 ind:pas:3p; +harmonisé harmoniser VER m s 0.35 1.42 0.01 0.00 par:pas; +harmonisés harmoniser VER m p 0.35 1.42 0.00 0.07 par:pas; +harmonium harmonium NOM m s 0.05 3.51 0.05 3.45 +harmoniums harmonium NOM m p 0.05 3.51 0.00 0.07 +harnacha harnacher VER 0.19 1.62 0.00 0.07 ind:pas:3s; +harnachaient harnacher VER 0.19 1.62 0.00 0.07 ind:imp:3p; +harnachais harnacher VER 0.19 1.62 0.00 0.07 ind:imp:1s; +harnachait harnacher VER 0.19 1.62 0.00 0.27 ind:imp:3s; +harnachement harnachement NOM m s 0.06 1.55 0.06 1.28 +harnachements harnachement NOM m p 0.06 1.55 0.00 0.27 +harnacher harnacher VER 0.19 1.62 0.04 0.07 inf; +harnachiez harnacher VER 0.19 1.62 0.00 0.07 ind:imp:2p; +harnachèrent harnacher VER 0.19 1.62 0.00 0.07 ind:pas:3p; +harnaché harnacher VER m s 0.19 1.62 0.14 0.47 par:pas; +harnachée harnacher VER f s 0.19 1.62 0.00 0.07 par:pas; +harnachées harnacher VER f p 0.19 1.62 0.00 0.14 par:pas; +harnachés harnaché ADJ m p 0.02 0.88 0.02 0.41 +harnais harnais NOM m 1.29 3.92 1.29 3.92 +harnois harnois NOM m p 0.01 0.20 0.01 0.20 +haro haro NOM m s 0.03 1.35 0.03 1.35 +harpagon harpagon NOM m s 0.01 0.00 0.01 0.00 +harpe harpe NOM f s 1.14 5.34 0.94 4.86 +harper harper VER 7.25 0.14 7.25 0.00 inf; +harpes harpe NOM f p 1.14 5.34 0.20 0.47 +harpie harpie NOM f s 0.73 1.42 0.64 1.22 +harpies harpie NOM f p 0.73 1.42 0.09 0.20 +harpin harpin NOM m s 0.00 0.07 0.00 0.07 +harpions harper VER 7.25 0.14 0.00 0.14 ind:imp:1p; +harpiste harpiste NOM s 0.08 0.27 0.08 0.27 +harpon harpon NOM m s 1.18 2.03 0.75 1.76 +harponna harponner VER 0.34 1.22 0.00 0.07 ind:pas:3s; +harponnage harponnage NOM m s 0.17 0.07 0.17 0.07 +harponne harponner VER 0.34 1.22 0.02 0.20 ind:pre:1s;ind:pre:3s; +harponnent harponner VER 0.34 1.22 0.00 0.07 ind:pre:3p; +harponner harponner VER 0.34 1.22 0.23 0.47 inf; +harponnera harponner VER 0.34 1.22 0.01 0.00 ind:fut:3s; +harponneur harponneur NOM m s 0.04 0.20 0.03 0.14 +harponneurs harponneur NOM m p 0.04 0.20 0.01 0.07 +harponné harponner VER m s 0.34 1.22 0.04 0.20 par:pas; +harponnée harponner VER f s 0.34 1.22 0.02 0.20 par:pas; +harponnés harponner VER m p 0.34 1.22 0.01 0.00 par:pas; +harpons harpon NOM m p 1.18 2.03 0.43 0.27 +harpyes harpye NOM f p 0.00 0.07 0.00 0.07 +hart hart NOM f s 0.07 0.41 0.07 0.27 +harts hart NOM f p 0.07 0.41 0.00 0.14 +haruspices haruspice NOM m p 0.01 0.14 0.01 0.14 +has_been has_been NOM m 0.18 0.20 0.18 0.20 +hasard hasard NOM m s 48.07 124.19 46.98 118.99 +hasarda hasarder VER 1.10 6.35 0.01 1.35 ind:pas:3s; +hasardai hasarder VER 1.10 6.35 0.00 0.54 ind:pas:1s; +hasardaient hasarder VER 1.10 6.35 0.00 0.20 ind:imp:3p; +hasardais hasarder VER 1.10 6.35 0.00 0.14 ind:imp:1s; +hasardait hasarder VER 1.10 6.35 0.00 0.68 ind:imp:3s; +hasardant hasarder VER 1.10 6.35 0.00 0.41 par:pre; +hasarde hasarder VER 1.10 6.35 0.29 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hasardent hasarder VER 1.10 6.35 0.01 0.20 ind:pre:3p; +hasarder hasarder VER 1.10 6.35 0.74 0.68 inf; +hasardera hasarder VER 1.10 6.35 0.00 0.07 ind:fut:3s; +hasarderais hasarder VER 1.10 6.35 0.03 0.00 cnd:pre:1s; +hasardeuse hasardeux ADJ f s 0.66 2.77 0.35 1.08 +hasardeusement hasardeusement ADV 0.00 0.07 0.00 0.07 +hasardeuses hasardeux ADJ f p 0.66 2.77 0.03 0.47 +hasardeux hasardeux ADJ m 0.66 2.77 0.28 1.22 +hasards hasard NOM m p 48.07 124.19 1.09 5.20 +hasardé hasarder VER m s 1.10 6.35 0.00 0.27 par:pas; +hasardée hasardé ADJ f s 0.10 0.07 0.10 0.07 +hasch hasch NOM m s 2.16 0.47 2.16 0.47 +haschich haschich NOM m s 0.39 0.47 0.39 0.47 +haschisch haschisch NOM m s 0.11 0.41 0.11 0.41 +hase hase NOM f s 0.02 0.27 0.02 0.14 +haseki haseki NOM f s 0.00 0.20 0.00 0.07 +hasekis haseki NOM f p 0.00 0.20 0.00 0.14 +hases hase NOM f p 0.02 0.27 0.00 0.14 +hassidim hassidim NOM m p 0.22 0.00 0.22 0.00 +hassidique hassidique ADJ s 0.09 0.00 0.09 0.00 +hassidisme hassidisme NOM m s 0.00 0.07 0.00 0.07 +hauban hauban NOM m s 0.37 1.01 0.02 0.20 +haubans hauban NOM m p 0.37 1.01 0.35 0.81 +haubanée haubaner VER f s 0.00 0.27 0.00 0.07 par:pas; +haubanés haubaner VER m p 0.00 0.27 0.00 0.20 par:pas; +haubert haubert NOM m s 0.01 0.54 0.01 0.54 +haussa hausser VER 1.76 71.96 0.00 34.46 ind:pas:3s; +haussai hausser VER 1.76 71.96 0.27 2.09 ind:pas:1s; +haussaient hausser VER 1.76 71.96 0.10 1.01 ind:imp:3p; +haussais hausser VER 1.76 71.96 0.00 0.41 ind:imp:1s; +haussait hausser VER 1.76 71.96 0.01 4.86 ind:imp:3s; +haussant hausser VER 1.76 71.96 0.03 8.38 par:pre; +hausse hausse NOM f s 3.38 2.36 3.31 2.09 +haussement haussement NOM m s 0.06 5.68 0.06 5.07 +haussements haussement NOM m p 0.06 5.68 0.00 0.61 +haussent hausser VER 1.76 71.96 0.10 0.61 ind:pre:3p; +hausser hausser VER 1.76 71.96 0.43 4.86 inf; +hausserait hausser VER 1.76 71.96 0.01 0.14 cnd:pre:3s; +hausses hausser VER 1.76 71.96 0.23 0.20 ind:pre:2s; +haussez hausser VER 1.76 71.96 0.20 0.07 imp:pre:2p;ind:pre:2p; +haussier haussier ADJ m s 0.02 0.00 0.01 0.00 +haussière haussière NOM f s 0.03 0.14 0.03 0.07 +haussières haussière NOM f p 0.03 0.14 0.00 0.07 +haussons hausser VER 1.76 71.96 0.00 0.14 imp:pre:1p;ind:pre:1p; +haussât hausser VER 1.76 71.96 0.00 0.14 sub:imp:3s; +haussèrent hausser VER 1.76 71.96 0.00 0.27 ind:pas:3p; +haussé hausser VER m s 1.76 71.96 0.10 5.00 par:pas; +haussée hausser VER f s 1.76 71.96 0.01 0.27 par:pas; +haussées hausser VER f p 1.76 71.96 0.00 0.07 par:pas; +haussés hausser VER m p 1.76 71.96 0.00 0.27 par:pas; +haut_commandement haut_commandement NOM m s 0.00 1.22 0.00 1.22 +haut_commissaire haut_commissaire NOM m s 0.03 7.97 0.03 7.57 +haut_commissariat haut_commissariat NOM m s 0.02 0.81 0.02 0.81 +haut_de_chausse haut_de_chausse NOM f s 0.15 0.07 0.14 0.07 +haut_de_chausses haut_de_chausses NOM m 0.00 0.20 0.00 0.20 +haut_de_forme haut_de_forme NOM m s 0.45 1.62 0.30 1.42 +haut_fond haut_fond NOM m s 0.08 1.08 0.02 0.61 +haut_le_coeur haut_le_coeur NOM m 0.04 1.01 0.04 1.01 +haut_le_corps haut_le_corps NOM m 0.00 1.76 0.00 1.76 +haut_parleur haut_parleur NOM m s 3.65 7.36 2.61 3.99 +haut_parleur haut_parleur NOM m p 3.65 7.36 1.04 3.38 +haut_relief haut_relief NOM m s 0.00 0.20 0.00 0.20 +haut haut NOM m s 77.86 125.07 75.22 121.01 +hautain hautain ADJ m s 0.84 10.88 0.51 4.12 +hautaine hautain ADJ f s 0.84 10.88 0.27 5.07 +hautainement hautainement ADV 0.00 0.07 0.00 0.07 +hautaines hautain ADJ f p 0.84 10.88 0.03 0.81 +hautains hautain ADJ m p 0.84 10.88 0.03 0.88 +hautbois hautbois NOM m 0.38 1.62 0.38 1.62 +haute_fidélité haute_fidélité NOM f s 0.03 0.07 0.03 0.07 +haute haut ADJ f s 68.05 196.76 32.44 88.11 +hautement hautement ADV 4.83 4.73 4.83 4.73 +hautes haut ADJ f p 68.05 196.76 6.72 37.43 +hautesse hautesse NOM f s 0.00 1.42 0.00 1.42 +hauteur hauteur NOM f s 19.99 77.70 18.19 66.15 +hauteurs hauteur NOM f p 19.99 77.70 1.80 11.55 +hautin hautin NOM m s 0.11 0.00 0.10 0.00 +hautins hautin NOM m p 0.11 0.00 0.01 0.00 +haut_commissaire haut_commissaire NOM m p 0.03 7.97 0.00 0.41 +haut_de_chausse haut_de_chausse NOM m p 0.15 0.07 0.01 0.00 +haut_de_forme haut_de_forme NOM m p 0.45 1.62 0.14 0.20 +haut_fond haut_fond NOM m p 0.08 1.08 0.06 0.47 +haut_fourneau haut_fourneau NOM m p 0.01 0.27 0.01 0.27 +hauts haut ADJ m p 68.05 196.76 5.48 29.26 +hauturière hauturier ADJ f s 0.00 0.14 0.00 0.14 +havanais havanais NOM m 0.00 0.07 0.00 0.07 +havanaise havanaise NOM f s 0.01 0.00 0.01 0.00 +havane havane NOM m s 0.50 0.95 0.17 0.47 +havanes havane NOM m p 0.50 0.95 0.33 0.47 +have haver VER 10.73 0.74 10.67 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +haveneau haveneau NOM m s 0.00 0.14 0.00 0.07 +haveneaux haveneau NOM m p 0.00 0.14 0.00 0.07 +haver haver VER 10.73 0.74 0.07 0.00 inf; +haves haver VER 10.73 0.74 0.00 0.07 ind:pre:2s; +havrais havrais ADJ m s 0.00 0.07 0.00 0.07 +havre havre NOM m s 0.89 3.11 0.85 3.04 +havres havre NOM m p 0.89 3.11 0.04 0.07 +havresac havresac NOM m s 0.12 2.16 0.12 1.49 +havresacs havresac NOM m p 0.12 2.16 0.00 0.68 +hawaïen hawaïen ADJ m s 0.00 0.20 0.00 0.07 +hawaïenne hawaïen ADJ f s 0.00 0.20 0.00 0.14 +hawaiienne hawaiien ADJ f s 0.00 0.14 0.00 0.07 +hawaiiennes hawaiien ADJ f p 0.00 0.14 0.00 0.07 +hayon hayon NOM m s 0.06 0.14 0.06 0.07 +hayons hayon NOM m p 0.06 0.14 0.00 0.07 +heaume heaume NOM m s 0.55 1.01 0.51 0.88 +heaumes heaume NOM m p 0.55 1.01 0.04 0.14 +hebdo hebdo NOM m s 0.20 1.49 0.18 1.08 +hebdomadaire hebdomadaire ADJ s 1.64 4.19 1.30 3.51 +hebdomadairement hebdomadairement ADV 0.00 0.20 0.00 0.20 +hebdomadaires hebdomadaire ADJ p 1.64 4.19 0.34 0.68 +hebdos hebdo NOM m p 0.20 1.49 0.03 0.41 +hectare hectare NOM m s 2.95 6.35 0.27 0.14 +hectares hectare NOM m p 2.95 6.35 2.68 6.22 +hecto hecto NOM m s 0.00 0.07 0.00 0.07 +hectolitres hectolitre NOM m p 0.01 0.20 0.01 0.20 +hectomètres hectomètre NOM m p 0.00 0.07 0.00 0.07 +hein hein ONO 437.20 88.45 437.20 88.45 +hello hello ONO 10.82 1.49 10.82 1.49 +hellène hellène ADJ s 0.02 0.34 0.02 0.20 +hellènes hellène NOM p 0.01 0.68 0.01 0.47 +hellénique hellénique ADJ s 0.03 0.81 0.03 0.54 +helléniques hellénique ADJ f p 0.03 0.81 0.00 0.27 +helléniser helléniser VER 0.00 0.27 0.00 0.20 inf; +hellénisme hellénisme NOM m s 0.00 0.34 0.00 0.34 +helléniste helléniste NOM s 0.01 0.27 0.01 0.14 +hellénistes helléniste NOM p 0.01 0.27 0.00 0.14 +hellénistique hellénistique ADJ s 0.02 0.14 0.02 0.07 +hellénistiques hellénistique ADJ m p 0.02 0.14 0.00 0.07 +hellénisé helléniser VER m s 0.00 0.27 0.00 0.07 par:pas; +helminthe helminthe NOM m s 0.00 0.07 0.00 0.07 +helvelles helvelle NOM f p 0.00 0.07 0.00 0.07 +helvète helvète ADJ m s 0.00 0.20 0.00 0.14 +helvètes helvète NOM p 0.00 0.20 0.00 0.20 +helvétien helvétien ADJ m s 0.00 0.07 0.00 0.07 +helvétique helvétique ADJ f s 0.00 0.81 0.00 0.68 +helvétiques helvétique ADJ m p 0.00 0.81 0.00 0.14 +hem hem ONO 0.10 0.20 0.10 0.20 +hemlock hemlock NOM m s 0.23 0.00 0.23 0.00 +hennin hennin NOM m s 0.00 0.34 0.00 0.34 +hennir hennir VER 0.07 1.55 0.03 0.00 inf; +hennirent hennir VER 0.07 1.55 0.00 0.14 ind:pas:3p; +hennissaient hennir VER 0.07 1.55 0.00 0.27 ind:imp:3p; +hennissait hennir VER 0.07 1.55 0.00 0.07 ind:imp:3s; +hennissant hennissant ADJ m s 0.01 0.34 0.01 0.27 +hennissantes hennissant ADJ f p 0.01 0.34 0.00 0.07 +hennissement hennissement NOM m s 0.45 2.91 0.14 1.76 +hennissements hennissement NOM m p 0.45 2.91 0.30 1.15 +hennissent hennir VER 0.07 1.55 0.02 0.07 ind:pre:3p; +hennit hennir VER 0.07 1.55 0.02 0.74 ind:pre:3s;ind:pas:3s; +henné henné NOM m s 1.15 0.95 1.15 0.95 +henry henry NOM m s 0.15 0.00 0.15 0.00 +hep hep ONO 1.94 1.96 1.94 1.96 +heptagone heptagone NOM m s 0.00 0.14 0.00 0.14 +heptaméron heptaméron NOM m s 0.00 0.07 0.00 0.07 +heptane heptane NOM m s 0.04 0.00 0.04 0.00 +herba herber VER 0.23 0.07 0.02 0.07 ind:pas:3s; +herbage herbage NOM m s 0.10 1.35 0.04 0.74 +herbagers herbager NOM m p 0.00 0.07 0.00 0.07 +herbages herbage NOM m p 0.10 1.35 0.06 0.61 +herbe herbe NOM f s 34.81 118.51 27.64 86.08 +herber herber VER 0.23 0.07 0.20 0.00 inf; +herbes herbe NOM f p 34.81 118.51 7.17 32.43 +herbette herbette NOM f s 0.00 0.14 0.00 0.07 +herbettes herbette NOM f p 0.00 0.14 0.00 0.07 +herbeuse herbeux ADJ f s 0.02 1.01 0.00 0.20 +herbeuses herbeux ADJ f p 0.02 1.01 0.01 0.07 +herbeux herbeux ADJ m 0.02 1.01 0.01 0.74 +herbicide herbicide NOM m s 0.32 0.00 0.32 0.00 +herbier herbier NOM m s 0.16 1.28 0.16 0.81 +herbiers herbier NOM m p 0.16 1.28 0.00 0.47 +herbivore herbivore NOM m s 0.20 0.27 0.14 0.14 +herbivores herbivore NOM m p 0.20 0.27 0.06 0.14 +herborisais herboriser VER 0.00 0.54 0.00 0.07 ind:imp:1s; +herborisait herboriser VER 0.00 0.54 0.00 0.14 ind:imp:3s; +herboriser herboriser VER 0.00 0.54 0.00 0.34 inf; +herboriste herboriste NOM s 0.74 0.88 0.64 0.68 +herboristerie herboristerie NOM f s 0.08 0.14 0.04 0.07 +herboristeries herboristerie NOM f p 0.08 0.14 0.04 0.07 +herboristes herboriste NOM p 0.74 0.88 0.10 0.20 +herbu herbu ADJ m s 0.01 1.82 0.00 0.81 +herbue herbu ADJ f s 0.01 1.82 0.01 0.54 +herbues herbu ADJ f p 0.01 1.82 0.00 0.41 +herbus herbu ADJ m p 0.01 1.82 0.00 0.07 +hercher hercher VER 0.03 0.00 0.03 0.00 inf; +hercule hercule NOM m s 0.77 0.68 0.19 0.41 +hercules hercule NOM m p 0.77 0.68 0.58 0.27 +herculéen herculéen ADJ m s 0.03 0.74 0.02 0.34 +herculéenne herculéen ADJ f s 0.03 0.74 0.01 0.07 +herculéennes herculéen ADJ f p 0.03 0.74 0.00 0.07 +herculéens herculéen ADJ m p 0.03 0.74 0.00 0.27 +hercynien hercynien ADJ m s 0.00 0.14 0.00 0.07 +hercyniennes hercynien ADJ f p 0.00 0.14 0.00 0.07 +hermaphrodisme hermaphrodisme NOM m s 0.00 0.07 0.00 0.07 +hermaphrodite hermaphrodite ADJ s 0.37 0.20 0.11 0.14 +hermaphrodites hermaphrodite ADJ p 0.37 0.20 0.26 0.07 +hermaphroditisme hermaphroditisme NOM m s 0.00 0.07 0.00 0.07 +hermine hermine NOM f s 0.28 1.69 0.28 1.62 +hermines hermine NOM f p 0.28 1.69 0.00 0.07 +herminette herminette NOM f s 0.01 0.14 0.01 0.07 +herminettes herminette NOM f p 0.01 0.14 0.00 0.07 +herminé herminé ADJ m s 0.00 0.07 0.00 0.07 +hermès hermès NOM m 0.73 0.00 0.73 0.00 +herméneutique herméneutique ADJ f s 0.01 0.00 0.01 0.00 +hermétique hermétique ADJ s 0.98 3.11 0.82 1.96 +hermétiquement hermétiquement ADV 0.61 1.55 0.61 1.55 +hermétiques hermétique ADJ p 0.98 3.11 0.16 1.15 +hermétisme hermétisme NOM m s 0.14 0.20 0.14 0.20 +hermétistes hermétiste NOM p 0.00 0.14 0.00 0.14 +herniaire herniaire ADJ s 0.06 0.41 0.06 0.27 +herniaires herniaire ADJ m p 0.06 0.41 0.00 0.14 +hernie hernie NOM f s 2.91 1.01 2.85 0.61 +hernies hernie NOM f p 2.91 1.01 0.06 0.41 +hernieux hernieux ADJ m p 0.00 0.07 0.00 0.07 +herpès herpès NOM m 0.86 0.20 0.86 0.20 +herpétique herpétique ADJ f s 0.03 0.00 0.03 0.00 +herpétologie herpétologie NOM f s 0.04 0.00 0.04 0.00 +herpétologiste herpétologiste NOM s 0.01 0.00 0.01 0.00 +hersait herser VER 0.00 0.34 0.00 0.07 ind:imp:3s; +herse herse NOM f s 0.27 2.57 0.26 1.69 +herser herser VER 0.00 0.34 0.00 0.14 inf; +herses herse NOM f p 0.27 2.57 0.01 0.88 +hersé herser VER m s 0.00 0.34 0.00 0.07 par:pas; +hersés herser VER m p 0.00 0.34 0.00 0.07 par:pas; +hertz hertz NOM m 0.09 0.00 0.09 0.00 +hertzienne hertzien ADJ f s 0.10 0.07 0.03 0.00 +hertziennes hertzien ADJ f p 0.10 0.07 0.06 0.07 +hertziens hertzien ADJ m p 0.10 0.07 0.01 0.00 +hessois hessois ADJ m 0.00 0.14 0.00 0.07 +hessoise hessois ADJ f s 0.00 0.14 0.00 0.07 +hetman hetman NOM m s 0.34 0.07 0.34 0.07 +heu heu ONO 35.17 6.69 35.17 6.69 +heur heur NOM m s 0.28 1.15 0.05 0.41 +heure heure NOM f s 709.79 924.05 415.40 439.86 +heures heure NOM f p 709.79 924.05 294.39 484.19 +heureuse heureux ADJ f s 248.45 190.00 88.71 58.11 +heureusement heureusement ADV 39.78 51.35 39.78 51.35 +heureuses heureux ADJ f p 248.45 190.00 3.94 6.49 +heureux heureux ADJ m 248.45 190.00 155.80 125.41 +heuristique heuristique ADJ f s 0.03 0.00 0.03 0.00 +heurs heur NOM m p 0.28 1.15 0.01 0.20 +heurt heurt NOM m s 0.49 6.15 0.29 2.84 +heurta heurter VER 9.79 39.05 0.17 5.14 ind:pas:3s; +heurtai heurter VER 9.79 39.05 0.01 0.68 ind:pas:1s; +heurtaient heurter VER 9.79 39.05 0.06 2.36 ind:imp:3p; +heurtais heurter VER 9.79 39.05 0.05 0.41 ind:imp:1s; +heurtait heurter VER 9.79 39.05 0.04 4.32 ind:imp:3s; +heurtant heurter VER 9.79 39.05 0.22 4.19 par:pre; +heurte heurter VER 9.79 39.05 1.15 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +heurtent heurter VER 9.79 39.05 0.29 1.96 ind:pre:3p; +heurter heurter VER 9.79 39.05 1.81 7.50 inf; +heurtera heurter VER 9.79 39.05 0.04 0.20 ind:fut:3s; +heurterai heurter VER 9.79 39.05 0.00 0.07 ind:fut:1s; +heurteraient heurter VER 9.79 39.05 0.00 0.07 cnd:pre:3p; +heurterait heurter VER 9.79 39.05 0.04 0.20 cnd:pre:3s; +heurterions heurter VER 9.79 39.05 0.00 0.07 cnd:pre:1p; +heurtez heurter VER 9.79 39.05 0.07 0.14 imp:pre:2p;ind:pre:2p; +heurtions heurter VER 9.79 39.05 0.00 0.41 ind:imp:1p; +heurtoir heurtoir NOM m s 0.03 0.61 0.03 0.47 +heurtoirs heurtoir NOM m p 0.03 0.61 0.00 0.14 +heurtons heurter VER 9.79 39.05 0.00 0.14 ind:pre:1p; +heurtât heurter VER 9.79 39.05 0.00 0.14 sub:imp:3s; +heurts heurt NOM m p 0.49 6.15 0.20 3.31 +heurtèrent heurter VER 9.79 39.05 0.01 0.95 ind:pas:3p; +heurté heurter VER m s 9.79 39.05 4.92 3.85 par:pas; +heurtée heurter VER f s 9.79 39.05 0.61 0.68 par:pas; +heurtées heurter VER f p 9.79 39.05 0.05 0.07 par:pas; +heurtés heurter VER m p 9.79 39.05 0.22 0.88 par:pas; +hexagonal hexagonal ADJ m s 0.03 1.96 0.01 0.61 +hexagonale hexagonal ADJ f s 0.03 1.96 0.01 0.68 +hexagonales hexagonal ADJ f p 0.03 1.96 0.01 0.47 +hexagonaux hexagonal ADJ m p 0.03 1.96 0.00 0.20 +hexagone hexagone NOM m s 0.23 0.61 0.23 0.47 +hexagones hexagone NOM m p 0.23 0.61 0.00 0.14 +hexamètres hexamètre NOM m p 0.02 0.14 0.02 0.14 +hi_fi hi_fi NOM f s 0.87 0.81 0.87 0.81 +hi_han hi_han ONO 0.20 0.14 0.20 0.14 +hi hi ONO 3.81 5.41 3.81 5.41 +hiatale hiatal ADJ f s 0.29 0.00 0.29 0.00 +hiatus hiatus NOM m 0.04 1.01 0.04 1.01 +hibernaient hiberner VER 0.65 0.34 0.02 0.00 ind:imp:3p; +hibernait hiberner VER 0.65 0.34 0.03 0.07 ind:imp:3s; +hibernation hibernation NOM f s 0.82 0.27 0.82 0.27 +hiberne hiberner VER 0.65 0.34 0.16 0.07 ind:pre:1s;ind:pre:3s; +hibernent hiberner VER 0.65 0.34 0.05 0.00 ind:pre:3p; +hiberner hiberner VER 0.65 0.34 0.21 0.07 inf; +hiberné hiberner VER m s 0.65 0.34 0.17 0.14 par:pas; +hibiscus hibiscus NOM m 0.13 1.08 0.13 1.08 +hibou hibou NOM m s 5.01 2.97 4.08 2.36 +hiboux hibou NOM m p 5.01 2.97 0.94 0.61 +hic_et_nunc hic_et_nunc ADV 0.00 0.41 0.00 0.41 +hic hic NOM m 2.21 2.91 2.21 2.91 +hickory hickory NOM m s 0.14 0.07 0.14 0.07 +hidalgo hidalgo NOM m s 0.08 0.61 0.06 0.27 +hidalgos hidalgo NOM m p 0.08 0.61 0.02 0.34 +hideur hideur NOM f s 0.00 0.81 0.00 0.61 +hideurs hideur NOM f p 0.00 0.81 0.00 0.20 +hideuse hideux ADJ f s 3.31 9.26 0.99 2.70 +hideusement hideusement ADV 0.03 0.34 0.03 0.34 +hideuses hideux ADJ f p 3.31 9.26 0.39 1.28 +hideux hideux ADJ m 3.31 9.26 1.93 5.27 +hier hier ADV 223.77 92.64 223.77 92.64 +high_life high_life NOM m s 0.27 0.14 0.27 0.14 +high_tech high_tech ADJ 0.32 0.14 0.29 0.07 +high_life high_life NOM m s 0.04 0.41 0.04 0.41 +high_tech high_tech ADJ s 0.32 0.14 0.04 0.07 +highlander highlander NOM m s 0.30 0.14 0.14 0.00 +highlanders highlander NOM m p 0.30 0.14 0.16 0.14 +higoumène higoumène NOM m s 0.00 0.07 0.00 0.07 +hilaire hilaire ADJ f s 0.02 0.00 0.02 0.00 +hilarant hilarant ADJ m s 2.37 0.47 1.94 0.20 +hilarante hilarant ADJ f s 2.37 0.47 0.25 0.00 +hilarantes hilarant ADJ f p 2.37 0.47 0.09 0.14 +hilarants hilarant ADJ m p 2.37 0.47 0.10 0.14 +hilare hilare ADJ s 0.14 8.72 0.14 6.15 +hilares hilare ADJ p 0.14 8.72 0.00 2.57 +hilarité hilarité NOM f s 0.32 4.12 0.32 4.05 +hilarités hilarité NOM f p 0.32 4.12 0.00 0.07 +hile hile NOM m s 0.24 0.00 0.24 0.00 +hiloire hiloire NOM f s 0.00 0.07 0.00 0.07 +hilotes hilote NOM m p 0.00 0.07 0.00 0.07 +himalaya himalaya NOM m s 0.01 0.14 0.01 0.14 +himalayenne himalayen ADJ f s 0.20 0.07 0.20 0.00 +himalayens himalayen ADJ m p 0.20 0.07 0.00 0.07 +hindi hindi NOM m s 0.14 0.07 0.14 0.07 +hindou hindou NOM m s 1.79 1.22 0.93 0.47 +hindoue hindou ADJ f s 1.27 2.03 0.47 0.68 +hindoues hindou ADJ f p 1.27 2.03 0.17 0.27 +hindouisme hindouisme NOM m s 0.28 0.00 0.28 0.00 +hindous hindou NOM m p 1.79 1.22 0.73 0.74 +hindoustani hindoustani NOM m s 0.03 0.00 0.03 0.00 +hip_hop hip_hop NOM m s 1.74 0.00 1.74 0.00 +hip hip ONO 4.43 1.22 4.43 1.22 +hippie hippie NOM s 3.68 0.27 1.33 0.14 +hippies hippie NOM p 3.68 0.27 2.36 0.14 +hippique hippique ADJ s 0.59 2.91 0.49 1.42 +hippiques hippique ADJ p 0.59 2.91 0.11 1.49 +hippisme hippisme NOM m s 0.02 0.00 0.02 0.00 +hippo hippo NOM m s 0.41 45.61 0.41 45.61 +hippocampe hippocampe NOM m s 0.63 0.41 0.58 0.27 +hippocampes hippocampe NOM m p 0.63 0.41 0.05 0.14 +hippocratique hippocratique ADJ m s 0.00 0.14 0.00 0.14 +hippodrome hippodrome NOM m s 0.53 1.35 0.52 0.81 +hippodromes hippodrome NOM m p 0.53 1.35 0.01 0.54 +hippogriffe hippogriffe NOM m s 0.19 0.14 0.19 0.14 +hippomobile hippomobile ADJ m s 0.10 0.00 0.10 0.00 +hippophagique hippophagique ADJ s 0.00 0.14 0.00 0.07 +hippophagiques hippophagique ADJ f p 0.00 0.14 0.00 0.07 +hippopotame hippopotame NOM m s 2.52 1.01 1.45 0.54 +hippopotames hippopotame NOM m p 2.52 1.01 1.07 0.47 +hippopotamesque hippopotamesque ADJ f s 0.00 0.07 0.00 0.07 +hippy hippy NOM m s 0.25 0.14 0.25 0.14 +hirondelle hirondeau NOM f s 1.87 9.66 1.87 3.24 +hirondelles hirondelle NOM f p 0.69 0.00 0.69 0.00 +hirsute hirsute ADJ s 1.53 5.61 1.44 3.78 +hirsutes hirsute ADJ p 1.53 5.61 0.09 1.82 +hirsutisme hirsutisme NOM m s 0.02 0.00 0.02 0.00 +hirudine hirudine NOM f s 0.01 0.00 0.01 0.00 +hispanique hispanique ADJ s 0.50 0.27 0.47 0.14 +hispaniques hispanique NOM p 0.27 0.00 0.10 0.00 +hispanisante hispanisant ADJ f s 0.00 0.14 0.00 0.07 +hispanisants hispanisant ADJ m p 0.00 0.14 0.00 0.07 +hispano_américain hispano_américain NOM m s 0.01 0.00 0.01 0.00 +hispano_américain hispano_américain ADJ f s 0.03 0.27 0.03 0.20 +hispano_cubain hispano_cubain ADJ m s 0.00 0.07 0.00 0.07 +hispano_mauresque hispano_mauresque ADJ m s 0.00 0.07 0.00 0.07 +hispano hispano ADV 0.06 0.54 0.06 0.54 +hispanophone hispanophone NOM s 0.02 0.00 0.02 0.00 +hissa hisser VER 8.09 22.36 0.13 2.30 ind:pas:3s; +hissai hisser VER 8.09 22.36 0.14 0.27 ind:pas:1s; +hissaient hisser VER 8.09 22.36 0.02 0.47 ind:imp:3p; +hissais hisser VER 8.09 22.36 0.02 0.14 ind:imp:1s; +hissait hisser VER 8.09 22.36 0.16 2.09 ind:imp:3s; +hissant hisser VER 8.09 22.36 0.01 1.62 par:pre; +hisse hisse ONO 0.88 0.07 0.88 0.07 +hissent hisser VER 8.09 22.36 0.12 0.34 ind:pre:3p; +hisser hisser VER 8.09 22.36 1.37 6.22 inf; +hissera hisser VER 8.09 22.36 0.13 0.14 ind:fut:3s; +hisserai hisser VER 8.09 22.36 0.00 0.14 ind:fut:1s; +hissez hisser VER 8.09 22.36 1.76 0.00 imp:pre:2p;ind:pre:2p; +hissâmes hisser VER 8.09 22.36 0.01 0.14 ind:pas:1p; +hissons hisser VER 8.09 22.36 0.04 0.20 imp:pre:1p;ind:pre:1p; +hissèrent hisser VER 8.09 22.36 0.00 0.81 ind:pas:3p; +hissé hisser VER m s 8.09 22.36 1.21 2.64 par:pas; +hissée hisser VER f s 8.09 22.36 0.05 1.28 par:pas; +hissées hisser VER f p 8.09 22.36 0.10 0.14 par:pas; +hissés hisser VER m p 8.09 22.36 0.07 0.81 par:pas; +histamine histamine NOM f s 0.15 0.00 0.15 0.00 +histaminique histaminique ADJ s 0.03 0.00 0.03 0.00 +hister hister NOM m s 0.02 0.00 0.02 0.00 +histocompatibilité histocompatibilité NOM f s 0.14 0.00 0.14 0.00 +histocompatibles histocompatible ADJ p 0.00 0.07 0.00 0.07 +histoire histoire NOM f s 359.92 359.53 295.32 292.23 +histoires histoire NOM f p 359.92 359.53 64.60 67.30 +histologie histologie NOM f s 0.11 0.00 0.11 0.00 +histologique histologique ADJ s 0.06 0.07 0.06 0.07 +histopathologie histopathologie NOM f s 0.03 0.00 0.03 0.00 +histoplasmose histoplasmose NOM f s 0.01 0.00 0.01 0.00 +historia historier VER 0.00 0.34 0.00 0.20 ind:pas:3s; +historicité historicité NOM f s 0.00 0.14 0.00 0.14 +historico_culturel historico_culturel ADJ f s 0.00 0.07 0.00 0.07 +historien historien NOM m s 2.32 6.28 1.49 3.11 +historienne historien NOM f s 2.32 6.28 0.21 0.34 +historiens historien NOM m p 2.32 6.28 0.63 2.84 +historiette historiette NOM f s 0.00 0.34 0.00 0.14 +historiettes historiette NOM f p 0.00 0.34 0.00 0.20 +historiographe historiographe NOM s 0.01 0.00 0.01 0.00 +historiographie historiographie NOM f s 0.11 0.00 0.11 0.00 +historique historique ADJ s 11.31 18.24 8.83 11.69 +historiquement historiquement ADV 0.99 0.47 0.99 0.47 +historiques historique ADJ p 11.31 18.24 2.48 6.55 +historiée historier VER f s 0.00 0.34 0.00 0.07 par:pas; +historiés historié ADJ m p 0.00 0.20 0.00 0.14 +histrion histrion NOM m s 0.34 0.41 0.23 0.27 +histrions histrion NOM m p 0.34 0.41 0.10 0.14 +hit_parade hit_parade NOM m s 0.73 0.68 0.69 0.68 +hit_parade hit_parade NOM m p 0.73 0.68 0.04 0.00 +hit hit NOM m s 1.59 0.47 1.37 0.41 +hitchcockien hitchcockien ADJ m s 0.03 0.14 0.03 0.14 +hitlérien hitlérien ADJ m s 0.48 4.59 0.26 1.08 +hitlérienne hitlérien ADJ f s 0.48 4.59 0.14 2.16 +hitlériennes hitlérienne ADJ f p 0.20 0.00 0.20 0.00 +hitlériens hitlérien NOM m p 0.00 1.15 0.00 0.88 +hitlérisme hitlérisme NOM m s 0.01 0.68 0.01 0.68 +hits hit NOM m p 1.59 0.47 0.22 0.07 +hittite hittite ADJ m s 0.04 0.41 0.04 0.20 +hittites hittite ADJ p 0.04 0.41 0.00 0.20 +hiérarchie hiérarchie NOM f s 2.59 9.86 2.56 8.65 +hiérarchies hiérarchie NOM f p 2.59 9.86 0.03 1.22 +hiérarchique hiérarchique ADJ s 0.59 1.49 0.57 1.28 +hiérarchiquement hiérarchiquement ADV 0.01 0.20 0.01 0.20 +hiérarchiques hiérarchique ADJ p 0.59 1.49 0.02 0.20 +hiérarchisait hiérarchiser VER 0.01 0.14 0.00 0.07 ind:imp:3s; +hiérarchisation hiérarchisation NOM f s 0.00 0.07 0.00 0.07 +hiérarchise hiérarchiser VER 0.01 0.14 0.01 0.00 ind:pre:3s; +hiérarchisé hiérarchisé ADJ m s 0.00 0.34 0.00 0.07 +hiérarchisée hiérarchisé ADJ f s 0.00 0.34 0.00 0.20 +hiérarchisés hiérarchisé ADJ m p 0.00 0.34 0.00 0.07 +hiératique hiératique ADJ s 0.02 1.69 0.01 1.22 +hiératiquement hiératiquement ADV 0.00 0.07 0.00 0.07 +hiératiques hiératique ADJ p 0.02 1.69 0.01 0.47 +hiératisme hiératisme NOM m s 0.00 0.54 0.00 0.54 +hiéroglyphe hiéroglyphe NOM m s 1.25 1.49 0.20 0.20 +hiéroglyphes hiéroglyphe NOM m p 1.25 1.49 1.05 1.28 +hiéroglyphique hiéroglyphique ADJ s 0.03 0.00 0.01 0.00 +hiéroglyphiques hiéroglyphique ADJ m p 0.03 0.00 0.02 0.00 +hiéronymites hiéronymite NOM m p 0.00 0.07 0.00 0.07 +hiérophante hiérophante NOM m s 0.00 0.20 0.00 0.20 +hiv hiv ADJ s 0.00 1.62 0.00 1.62 +hiver hiver NOM m s 38.96 99.53 37.44 96.28 +hivernage hivernage NOM m s 0.00 0.95 0.00 0.95 +hivernaient hiverner VER 0.02 0.81 0.00 0.07 ind:imp:3p; +hivernait hiverner VER 0.02 0.81 0.00 0.14 ind:imp:3s; +hivernal hivernal ADJ m s 0.17 1.82 0.08 0.74 +hivernale hivernal ADJ f s 0.17 1.82 0.04 0.88 +hivernales hivernal ADJ f p 0.17 1.82 0.05 0.14 +hivernant hivernant ADJ m s 0.00 0.20 0.00 0.07 +hivernante hivernant ADJ f s 0.00 0.20 0.00 0.07 +hivernantes hivernant ADJ f p 0.00 0.20 0.00 0.07 +hivernants hivernant NOM m p 0.00 0.07 0.00 0.07 +hivernaux hivernal ADJ m p 0.17 1.82 0.00 0.07 +hiverne hiverner VER 0.02 0.81 0.00 0.14 ind:pre:1s;ind:pre:3s; +hiverner hiverner VER 0.02 0.81 0.02 0.34 inf; +hivernons hiverner VER 0.02 0.81 0.00 0.07 ind:pre:1p; +hiverné hiverner VER m s 0.02 0.81 0.00 0.07 par:pas; +hivers hiver NOM m p 38.96 99.53 1.52 3.24 +ho ho ONO 20.06 4.73 20.06 4.73 +hobbies hobby NOM m p 3.11 0.20 0.61 0.20 +hobby hobby NOM m s 3.11 0.20 2.50 0.00 +hobereau hobereau NOM m s 0.03 1.82 0.02 1.01 +hobereaux hobereau NOM m p 0.03 1.82 0.01 0.81 +hâblerie hâblerie NOM f s 0.00 0.34 0.00 0.07 +hâbleries hâblerie NOM f p 0.00 0.34 0.00 0.27 +hâbleur hâbleur NOM m s 0.19 0.54 0.06 0.34 +hâbleurs hâbleur NOM m p 0.19 0.54 0.14 0.20 +hocha hocher VER 1.80 41.15 0.16 14.12 ind:pas:3s; +hochai hocher VER 1.80 41.15 0.00 0.41 ind:pas:1s; +hochaient hocher VER 1.80 41.15 0.00 1.15 ind:imp:3p; +hochais hocher VER 1.80 41.15 0.00 0.27 ind:imp:1s; +hochait hocher VER 1.80 41.15 0.02 5.27 ind:imp:3s; +hochant hocher VER 1.80 41.15 0.27 8.38 par:pre; +hoche hocher VER 1.80 41.15 0.41 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hochement hochement NOM m s 0.10 5.68 0.08 3.78 +hochements hochement NOM m p 0.10 5.68 0.02 1.89 +hochent hocher VER 1.80 41.15 0.01 0.47 ind:pre:3p; +hochepot hochepot NOM m s 0.00 0.14 0.00 0.14 +hocher hocher VER 1.80 41.15 0.18 1.42 inf; +hocheraient hocher VER 1.80 41.15 0.00 0.07 cnd:pre:3p; +hocheront hocher VER 1.80 41.15 0.00 0.07 ind:fut:3p; +hoches hocher VER 1.80 41.15 0.34 0.00 ind:pre:2s; +hochet hochet NOM m s 0.88 2.23 0.43 1.01 +hochets hochet NOM m p 0.88 2.23 0.45 1.22 +hocheurs hocheur NOM m p 0.00 0.07 0.00 0.07 +hochez hocher VER 1.80 41.15 0.14 0.14 imp:pre:2p;ind:pre:2p; +hochions hocher VER 1.80 41.15 0.00 0.14 ind:imp:1p; +hochèrent hocher VER 1.80 41.15 0.00 0.68 ind:pas:3p; +hoché hocher VER m s 1.80 41.15 0.27 2.23 par:pas; +hockey hockey NOM m s 6.38 0.14 6.38 0.14 +hockeyeur hockeyeur NOM m s 0.50 0.14 0.43 0.07 +hockeyeurs hockeyeur NOM m p 0.50 0.14 0.07 0.07 +hodgkinien hodgkinien ADJ m s 0.01 0.00 0.01 0.00 +hodja hodja NOM m s 0.19 0.00 0.19 0.00 +hoirie hoirie NOM f s 0.00 0.34 0.00 0.27 +hoiries hoirie NOM f p 0.00 0.34 0.00 0.07 +hâlait hâler VER 0.01 1.08 0.00 0.07 ind:imp:3s; +hâlant hâler VER 0.01 1.08 0.00 0.07 par:pre; +hold_up hold_up NOM m 7.78 3.38 7.59 3.38 +hold_up hold_up NOM m 7.78 3.38 0.20 0.00 +holding holding NOM s 0.73 0.27 0.67 0.14 +holdings holding NOM p 0.73 0.27 0.06 0.14 +hâle hâle NOM m s 0.15 3.04 0.15 2.84 +hâles hâle NOM m p 0.15 3.04 0.00 0.20 +holistique holistique ADJ s 0.15 0.00 0.14 0.00 +holistiques holistique ADJ m p 0.15 0.00 0.01 0.00 +hollandais hollandais NOM m p 2.90 3.11 2.90 2.97 +hollandaise hollandais ADJ f s 3.87 5.47 1.01 2.09 +hollandaises hollandais ADJ f p 3.87 5.47 0.28 0.34 +hollande hollande NOM f s 0.02 0.07 0.02 0.07 +hollywoodien hollywoodien ADJ m s 0.00 1.28 0.00 0.34 +hollywoodienne hollywoodien ADJ f s 0.00 1.28 0.00 0.34 +hollywoodiennes hollywoodien ADJ f p 0.00 1.28 0.00 0.07 +hollywoodiens hollywoodien ADJ m p 0.00 1.28 0.00 0.54 +holà holà ONO 4.87 1.62 4.87 1.62 +holocauste holocauste NOM m s 1.61 1.15 1.61 0.95 +holocaustes holocauste NOM m p 1.61 1.15 0.00 0.20 +hologramme hologramme NOM m s 1.93 0.00 1.45 0.00 +hologrammes hologramme NOM m p 1.93 0.00 0.48 0.00 +holographe holographe ADJ s 0.04 0.00 0.02 0.00 +holographes holographe ADJ p 0.04 0.00 0.02 0.00 +holographie holographie NOM f s 0.06 0.07 0.06 0.07 +holographique holographique ADJ s 0.56 0.00 0.47 0.00 +holographiques holographique ADJ p 0.56 0.00 0.09 0.00 +holoèdres holoèdre ADJ f p 0.00 0.07 0.00 0.07 +holothuries holothurie NOM f p 0.00 0.07 0.00 0.07 +holster holster NOM m s 0.07 0.27 0.07 0.27 +hâlé hâlé ADJ m s 0.05 2.57 0.03 1.15 +hâlée hâlé ADJ f s 0.05 2.57 0.02 0.68 +hâlées hâlé ADJ f p 0.05 2.57 0.00 0.20 +hâlés hâlé ADJ m p 0.05 2.57 0.00 0.54 +hom hom ONO 0.54 0.00 0.54 0.00 +homard homard NOM m s 4.96 5.34 3.79 3.51 +homardiers homardier NOM m p 0.01 0.00 0.01 0.00 +homards homard NOM m p 4.96 5.34 1.18 1.82 +hombre hombre NOM m s 1.60 0.61 1.60 0.61 +home_trainer home_trainer NOM m s 0.01 0.00 0.01 0.00 +home home NOM m s 4.00 2.16 3.75 1.96 +homeland homeland NOM m s 0.14 0.00 0.14 0.00 +homes home NOM m p 4.00 2.16 0.24 0.20 +homicide homicide NOM m s 12.07 0.47 10.30 0.47 +homicides homicide NOM m p 12.07 0.47 1.77 0.00 +hominien hominien NOM m s 0.00 0.14 0.00 0.07 +hominiens hominien NOM m p 0.00 0.14 0.00 0.07 +hominisation hominisation NOM f s 0.00 0.07 0.00 0.07 +hommage hommage NOM m s 16.45 16.69 11.11 13.31 +hommages hommage NOM m p 16.45 16.69 5.34 3.38 +hommasse hommasse ADJ s 0.05 0.61 0.05 0.47 +hommasses hommasse ADJ f p 0.05 0.61 0.00 0.14 +homme_chien homme_chien NOM m s 0.09 0.14 0.09 0.14 +homme_clé homme_clé NOM m s 0.04 0.00 0.04 0.00 +homme_femme homme_femme NOM m s 0.36 0.07 0.36 0.07 +homme_grenouille homme_grenouille NOM m s 0.35 0.20 0.20 0.07 +homme_loup homme_loup NOM m s 0.05 0.00 0.05 0.00 +homme_machine homme_machine NOM m s 0.04 0.00 0.04 0.00 +homme_oiseau homme_oiseau NOM m s 0.05 0.00 0.05 0.00 +homme_orchestre homme_orchestre NOM m s 0.03 0.07 0.03 0.07 +homme_poisson homme_poisson NOM m s 0.06 0.00 0.06 0.00 +homme_robot homme_robot NOM m s 0.07 0.00 0.07 0.00 +homme_sandwich homme_sandwich NOM m s 0.00 0.41 0.00 0.41 +homme_serpent homme_serpent NOM m s 0.02 0.27 0.02 0.27 +homme homme NOM m s 1123.55 1398.85 781.11 852.23 +homme_grenouille homme_grenouille NOM m p 0.35 0.20 0.16 0.14 +hommes homme NOM m p 1123.55 1398.85 342.44 546.62 +homo_erectus homo_erectus NOM m 0.04 0.00 0.04 0.00 +homo_habilis homo_habilis NOM m 0.00 0.07 0.00 0.07 +homo homo ADJ s 8.15 0.41 7.18 0.41 +homogène homogène ADJ s 0.44 2.77 0.40 2.43 +homogènes homogène ADJ p 0.44 2.77 0.04 0.34 +homogénéisateur homogénéisateur NOM m s 0.14 0.00 0.14 0.00 +homogénéisation homogénéisation NOM f s 0.03 0.07 0.03 0.07 +homogénéisé homogénéisé ADJ m s 0.05 0.07 0.02 0.00 +homogénéisée homogénéisé ADJ f s 0.05 0.07 0.03 0.07 +homogénéité homogénéité NOM f s 0.04 0.34 0.04 0.34 +homologable homologable ADJ s 0.00 0.07 0.00 0.07 +homologation homologation NOM f s 0.10 0.20 0.10 0.20 +homologue homologue NOM s 0.30 0.27 0.20 0.07 +homologuer homologuer VER 0.14 0.41 0.12 0.20 inf; +homologues homologue NOM p 0.30 0.27 0.11 0.20 +homologué homologué ADJ m s 0.01 0.27 0.01 0.14 +homologuée homologuer VER f s 0.14 0.41 0.01 0.00 par:pas; +homologués homologuer VER m p 0.14 0.41 0.01 0.07 par:pas; +homoncule homoncule NOM m s 0.02 0.07 0.02 0.07 +homonyme homonyme NOM s 0.25 0.47 0.21 0.47 +homonymes homonyme NOM p 0.25 0.47 0.04 0.00 +homonymie homonymie NOM f s 0.00 0.27 0.00 0.27 +homonymique homonymique ADJ s 0.00 0.07 0.00 0.07 +homophile homophile NOM m s 0.01 0.14 0.01 0.14 +homophilie homophilie NOM f s 0.00 0.07 0.00 0.07 +homophobe homophobe ADJ s 0.73 0.07 0.57 0.07 +homophobes homophobe ADJ f p 0.73 0.07 0.16 0.00 +homophone homophone NOM m s 0.01 0.00 0.01 0.00 +homophonie homophonie NOM f s 0.00 0.07 0.00 0.07 +homos homo NOM p 4.51 0.95 2.31 0.20 +homosexualité homosexualité NOM f s 4.81 2.57 4.81 2.57 +homosexuel homosexuel ADJ m s 5.81 3.11 3.77 1.76 +homosexuelle homosexuel ADJ f s 5.81 3.11 0.63 0.34 +homosexuelles homosexuel ADJ f p 5.81 3.11 0.66 0.34 +homosexuels homosexuel NOM m p 3.62 4.32 2.51 2.43 +homozygote homozygote ADJ s 0.01 0.00 0.01 0.00 +homélie homélie NOM f s 0.33 0.81 0.31 0.47 +homélies homélie NOM f p 0.33 0.81 0.02 0.34 +homuncule homuncule NOM m s 0.14 0.00 0.14 0.00 +homéopathe homéopathe ADJ m s 0.15 0.00 0.15 0.00 +homéopathie homéopathie NOM f s 0.58 0.14 0.58 0.14 +homéopathique homéopathique ADJ s 0.17 0.14 0.17 0.07 +homéopathiques homéopathique ADJ f p 0.17 0.14 0.00 0.07 +homéostatique homéostatique ADJ s 0.01 0.00 0.01 0.00 +homéothermie homéothermie NOM f s 0.01 0.00 0.01 0.00 +homérique homérique ADJ s 0.05 0.95 0.04 0.54 +homériques homérique ADJ f p 0.05 0.95 0.01 0.41 +hon hon ONO 0.57 1.01 0.57 1.01 +hondurien hondurien ADJ m s 0.01 0.00 0.01 0.00 +hondurien hondurien NOM m s 0.01 0.00 0.01 0.00 +hong_kong hong_kong NOM s 0.03 0.00 0.03 0.00 +hongkongais hongkongais NOM m 0.14 0.00 0.14 0.00 +hongre hongre ADJ m s 0.18 0.20 0.17 0.14 +hongres hongre ADJ m p 0.18 0.20 0.01 0.07 +hongrois hongrois NOM m 1.73 2.36 1.73 2.36 +hongroise hongroise NOM f s 1.08 0.47 0.97 0.47 +hongroises hongroise NOM f p 1.08 0.47 0.10 0.00 +honneur honneur NOM m s 130.69 97.36 126.78 87.64 +honneurs honneur NOM m p 130.69 97.36 3.92 9.73 +honni honni ADJ m s 0.56 0.61 0.55 0.41 +honnie honnir VER f s 0.19 1.01 0.03 0.20 par:pas; +honnir honnir VER 0.19 1.01 0.00 0.07 inf; +honnis honnir VER m p 0.19 1.01 0.01 0.14 ind:pre:2s;par:pas; +honnissait honnir VER 0.19 1.01 0.00 0.20 ind:imp:3s; +honnissant honnir VER 0.19 1.01 0.00 0.07 par:pre; +honnissent honnir VER 0.19 1.01 0.00 0.07 ind:pre:3p; +honnit honnir VER 0.19 1.01 0.01 0.07 ind:pre:3s; +honnête honnête ADJ s 53.89 28.24 43.60 20.20 +honnêtement honnêtement ADV 12.06 4.73 12.06 4.73 +honnêtes honnête ADJ p 53.89 28.24 10.29 8.04 +honnêteté honnêteté NOM f s 7.20 6.42 7.20 6.42 +honora honorer VER 22.65 13.24 0.03 0.27 ind:pas:3s; +honorabilité honorabilité NOM f s 0.20 1.15 0.20 1.15 +honorable honorable ADJ s 11.44 10.81 9.31 8.24 +honorablement honorablement ADV 0.41 1.55 0.41 1.55 +honorables honorable ADJ p 11.44 10.81 2.13 2.57 +honorai honorer VER 22.65 13.24 0.00 0.07 ind:pas:1s; +honoraient honorer VER 22.65 13.24 0.01 0.47 ind:imp:3p; +honoraire honoraire ADJ s 0.90 0.81 0.77 0.68 +honoraires honoraire NOM m p 3.06 1.49 3.06 1.49 +honorais honorer VER 22.65 13.24 0.01 0.07 ind:imp:1s; +honorait honorer VER 22.65 13.24 0.08 1.49 ind:imp:3s; +honorant honorer VER 22.65 13.24 0.03 0.20 par:pre; +honore honorer VER 22.65 13.24 4.41 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +honorent honorer VER 22.65 13.24 0.80 0.54 ind:pre:3p; +honorer honorer VER 22.65 13.24 6.13 5.07 inf; +honorera honorer VER 22.65 13.24 0.14 0.00 ind:fut:3s; +honorerai honorer VER 22.65 13.24 0.34 0.00 ind:fut:1s; +honorerait honorer VER 22.65 13.24 0.05 0.14 cnd:pre:3s; +honoreras honorer VER 22.65 13.24 0.23 0.00 ind:fut:2s; +honorerez honorer VER 22.65 13.24 0.23 0.00 ind:fut:2p; +honorerons honorer VER 22.65 13.24 0.15 0.00 ind:fut:1p; +honoreront honorer VER 22.65 13.24 0.03 0.00 ind:fut:3p; +honores honorer VER 22.65 13.24 0.65 0.00 ind:pre:2s; +honorez honorer VER 22.65 13.24 1.54 0.07 imp:pre:2p;ind:pre:2p; +honoriez honorer VER 22.65 13.24 0.02 0.07 ind:imp:2p; +honorifique honorifique ADJ s 0.65 0.68 0.61 0.54 +honorifiques honorifique ADJ p 0.65 0.68 0.03 0.14 +honoris_causa honoris_causa ADV 0.16 0.27 0.16 0.27 +honorons honorer VER 22.65 13.24 0.52 0.00 imp:pre:1p;ind:pre:1p; +honorât honorer VER 22.65 13.24 0.00 0.07 sub:imp:3s; +honorèrent honorer VER 22.65 13.24 0.00 0.07 ind:pas:3p; +honoré honorer VER m s 22.65 13.24 5.09 1.89 par:pas; +honorée honorer VER f s 22.65 13.24 0.92 0.54 par:pas; +honorées honorer VER f p 22.65 13.24 0.13 0.27 par:pas; +honorés honorer VER m p 22.65 13.24 1.10 0.34 par:pas; +honte honte NOM f s 103.40 83.45 103.26 82.64 +hontes honte NOM f p 103.40 83.45 0.14 0.81 +honteuse honteux ADJ f s 9.52 22.30 1.91 6.89 +honteusement honteusement ADV 0.58 2.43 0.58 2.43 +honteuses honteux ADJ f p 9.52 22.30 0.45 2.36 +honteux honteux ADJ m 9.52 22.30 7.17 13.04 +hooligan hooligan NOM m s 0.72 0.14 0.10 0.07 +hooligans hooligan NOM m p 0.72 0.14 0.62 0.07 +hop hop ONO 26.52 14.19 26.52 14.19 +hopak hopak NOM m s 0.01 0.00 0.01 0.00 +hopi hopi ADJ f s 0.01 0.14 0.01 0.07 +hopis hopi ADJ m p 0.01 0.14 0.00 0.07 +hoplite hoplite NOM m s 0.00 0.07 0.00 0.07 +hoquet hoquet NOM m s 1.73 7.91 1.57 4.32 +hoqueta hoqueter VER 0.03 5.54 0.00 1.55 ind:pas:3s; +hoquetai hoqueter VER 0.03 5.54 0.00 0.14 ind:pas:1s; +hoquetais hoqueter VER 0.03 5.54 0.00 0.14 ind:imp:1s; +hoquetait hoqueter VER 0.03 5.54 0.00 1.15 ind:imp:3s; +hoquetant hoqueter VER 0.03 5.54 0.01 1.35 par:pre; +hoqueter hoqueter VER 0.03 5.54 0.01 0.41 inf; +hoquetons hoqueter VER 0.03 5.54 0.00 0.07 ind:pre:1p; +hoquets hoquet NOM m p 1.73 7.91 0.16 3.58 +hoquette hoqueter VER 0.03 5.54 0.01 0.47 ind:pre:3s;sub:pre:3s; +hoqueté hoqueter VER m s 0.03 5.54 0.00 0.27 par:pas; +horaire horaire NOM m s 8.94 7.91 2.64 3.58 +horaires horaire NOM m p 8.94 7.91 6.30 4.32 +horde horde NOM f s 2.95 7.03 2.33 3.78 +hordes horde NOM f p 2.95 7.03 0.62 3.24 +horion horion NOM m s 0.00 0.88 0.00 0.14 +horions horion NOM m p 0.00 0.88 0.00 0.74 +horizon horizon NOM m s 9.04 66.15 7.80 61.08 +horizons horizon NOM m p 9.04 66.15 1.24 5.07 +horizontal horizontal ADJ m s 1.47 10.47 0.88 2.84 +horizontale horizontale NOM f s 1.37 3.04 0.87 2.77 +horizontalement horizontalement ADV 0.15 1.96 0.15 1.96 +horizontales horizontale NOM f p 1.37 3.04 0.50 0.27 +horizontalité horizontalité NOM f s 0.00 0.20 0.00 0.20 +horizontaux horizontal ADJ m p 1.47 10.47 0.03 1.69 +horloge horloge NOM f s 10.48 16.49 9.37 13.99 +horloger horloger NOM m s 0.39 5.41 0.34 2.23 +horlogerie horlogerie NOM f s 0.29 1.08 0.29 1.08 +horlogers horloger NOM m p 0.39 5.41 0.05 0.54 +horloges horloge NOM f p 10.48 16.49 1.11 2.50 +horlogère horloger NOM f s 0.39 5.41 0.00 2.64 +hormis hormis PRE 3.23 5.74 3.23 5.74 +hormonal hormonal ADJ m s 0.77 0.34 0.51 0.14 +hormonale hormonal ADJ f s 0.77 0.34 0.19 0.20 +hormonales hormonal ADJ f p 0.77 0.34 0.04 0.00 +hormonaux hormonal ADJ m p 0.77 0.34 0.03 0.00 +hormone hormone NOM f s 4.69 0.68 0.57 0.20 +hormones hormone NOM f p 4.69 0.68 4.12 0.47 +hormonés hormoner VER m p 0.00 0.07 0.00 0.07 par:pas; +hornblende hornblende NOM f s 0.01 0.00 0.01 0.00 +horoscope horoscope NOM m s 2.90 1.96 2.47 1.28 +horoscopes horoscope NOM m p 2.90 1.96 0.43 0.68 +horreur horreur NOM f s 46.19 69.46 39.79 61.35 +horreurs horreur NOM f p 46.19 69.46 6.40 8.11 +horrible horrible ADJ s 67.22 25.47 57.16 20.74 +horriblement horriblement ADV 3.23 4.53 3.23 4.53 +horribles horrible ADJ p 67.22 25.47 10.07 4.73 +horrifia horrifier VER 1.37 3.04 0.00 0.14 ind:pas:3s; +horrifiaient horrifier VER 1.37 3.04 0.00 0.07 ind:imp:3p; +horrifiait horrifier VER 1.37 3.04 0.02 0.20 ind:imp:3s; +horrifiant horrifiant ADJ m s 0.24 1.49 0.19 1.08 +horrifiante horrifiant ADJ f s 0.24 1.49 0.04 0.07 +horrifiants horrifiant ADJ m p 0.24 1.49 0.01 0.34 +horrifie horrifier VER 1.37 3.04 0.14 0.14 ind:pre:1s;ind:pre:3s; +horrifier horrifier VER 1.37 3.04 0.01 0.27 inf; +horrifique horrifique ADJ f s 0.04 0.14 0.04 0.14 +horrifièrent horrifier VER 1.37 3.04 0.00 0.07 ind:pas:3p; +horrifié horrifier VER m s 1.37 3.04 0.61 1.35 par:pas; +horrifiée horrifier VER f s 1.37 3.04 0.42 0.54 par:pas; +horrifiées horrifier VER f p 1.37 3.04 0.02 0.07 par:pas; +horrifiés horrifié ADJ m p 0.28 2.16 0.21 0.34 +horripilaient horripiler VER 0.24 1.49 0.00 0.07 ind:imp:3p; +horripilais horripiler VER 0.24 1.49 0.00 0.07 ind:imp:1s; +horripilait horripiler VER 0.24 1.49 0.00 0.34 ind:imp:3s; +horripilant horripilant ADJ m s 0.28 0.68 0.19 0.20 +horripilante horripilant ADJ f s 0.28 0.68 0.07 0.20 +horripilantes horripilant ADJ f p 0.28 0.68 0.03 0.07 +horripilants horripilant ADJ m p 0.28 0.68 0.00 0.20 +horripilation horripilation NOM f s 0.01 0.20 0.01 0.14 +horripilations horripilation NOM f p 0.01 0.20 0.00 0.07 +horripile horripiler VER 0.24 1.49 0.21 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +horripilent horripiler VER 0.24 1.49 0.01 0.07 ind:pre:3p; +horripiler horripiler VER 0.24 1.49 0.01 0.07 inf; +horripilé horripiler VER m s 0.24 1.49 0.00 0.14 par:pas; +horripilée horripiler VER f s 0.24 1.49 0.01 0.20 par:pas; +horripilés horripiler VER m p 0.24 1.49 0.00 0.07 par:pas; +hors_bord hors_bord NOM m p 0.45 0.61 0.45 0.61 +hors_cote hors_cote ADJ 0.01 0.00 0.01 0.00 +hors_d_oeuvre hors_d_oeuvre NOM m 0.56 1.96 0.56 1.96 +hors_jeu hors_jeu ADJ 1.13 0.20 1.13 0.20 +hors_la_loi hors_la_loi NOM m p 3.21 1.49 3.21 1.49 +hors_piste hors_piste NOM m p 0.45 0.00 0.45 0.00 +hors_série hors_série ADJ f s 0.01 0.20 0.01 0.20 +hors hors PRE 71.94 92.43 71.94 92.43 +horse_guard horse_guard NOM m s 0.02 0.14 0.00 0.07 +horse_guard horse_guard NOM m p 0.02 0.14 0.02 0.07 +hortensia hortensia NOM m s 0.66 2.03 0.30 0.34 +hortensias hortensia NOM m p 0.66 2.03 0.36 1.69 +horticoles horticole ADJ m p 0.00 0.07 0.00 0.07 +horticulteur horticulteur NOM m s 0.07 0.54 0.06 0.34 +horticulteurs horticulteur NOM m p 0.07 0.54 0.01 0.20 +horticultrice horticultrice NOM f s 0.01 0.00 0.01 0.00 +horticulture horticulture NOM f s 0.23 0.27 0.23 0.27 +hortillonnage hortillonnage NOM m s 0.00 0.07 0.00 0.07 +hosanna hosanna NOM m s 0.54 0.54 0.23 0.41 +hosannah hosannah NOM m s 0.00 0.27 0.00 0.27 +hosannas hosanna NOM m p 0.54 0.54 0.30 0.14 +hospice hospice NOM m s 3.12 6.96 3.06 6.28 +hospices hospice NOM m p 3.12 6.96 0.05 0.68 +hospitalier hospitalier ADJ m s 1.87 2.91 1.38 1.22 +hospitaliers hospitalier ADJ m p 1.87 2.91 0.26 0.74 +hospitalisation hospitalisation NOM f s 0.85 0.27 0.71 0.27 +hospitalisations hospitalisation NOM f p 0.85 0.27 0.14 0.00 +hospitaliser hospitaliser VER 5.19 2.36 1.46 0.54 inf; +hospitaliserons hospitaliser VER 5.19 2.36 0.01 0.00 ind:fut:1p; +hospitalisé hospitaliser VER m s 5.19 2.36 1.95 1.01 par:pas; +hospitalisée hospitaliser VER f s 5.19 2.36 1.42 0.61 par:pas; +hospitalisées hospitaliser VER f p 5.19 2.36 0.03 0.00 par:pas; +hospitalisés hospitaliser VER m p 5.19 2.36 0.32 0.20 par:pas; +hospitalière hospitalier ADJ f s 1.87 2.91 0.21 0.61 +hospitalières hospitalier ADJ f p 1.87 2.91 0.02 0.34 +hospitalité hospitalité NOM f s 6.72 3.85 6.72 3.85 +hospodar hospodar NOM m s 0.00 0.54 0.00 0.27 +hospodars hospodar NOM m p 0.00 0.54 0.00 0.27 +hostau hostau NOM m s 0.00 0.20 0.00 0.20 +hostellerie hostellerie NOM f s 0.10 1.22 0.10 1.08 +hostelleries hostellerie NOM f p 0.10 1.22 0.00 0.14 +hostie hostie NOM f s 2.31 3.85 1.74 3.45 +hosties hostie NOM f p 2.31 3.85 0.57 0.41 +hostile hostile ADJ s 8.56 21.15 6.32 15.47 +hostilement hostilement ADV 0.00 0.20 0.00 0.20 +hostiles hostile ADJ p 8.56 21.15 2.24 5.68 +hostilité hostilité NOM f s 3.52 15.81 2.70 11.89 +hostilités hostilité NOM f p 3.52 15.81 0.82 3.92 +hosto hosto NOM m s 5.74 5.81 5.69 5.41 +hostos hosto NOM m p 5.74 5.81 0.05 0.41 +hot_dog hot_dog NOM m s 6.09 0.27 3.12 0.07 +hot_dog hot_dog NOM m p 6.09 0.27 2.98 0.20 +hot_dog hot_dog NOM m s 2.69 0.14 1.31 0.14 +hot_dog hot_dog NOM m p 2.69 0.14 1.38 0.00 +hot hot ADJ 1.67 0.20 1.67 0.20 +hâta hâter VER 5.63 24.05 0.10 4.05 ind:pas:3s; +hâtai hâter VER 5.63 24.05 0.01 1.28 ind:pas:1s; +hâtaient hâter VER 5.63 24.05 0.02 1.69 ind:imp:3p; +hâtais hâter VER 5.63 24.05 0.01 0.47 ind:imp:1s; +hâtait hâter VER 5.63 24.05 0.14 2.09 ind:imp:3s; +hâtant hâter VER 5.63 24.05 0.01 2.64 par:pre; +hâte hâte NOM f s 18.83 45.20 18.83 44.80 +hâtent hâter VER 5.63 24.05 0.32 0.34 ind:pre:3p; +hâter hâter VER 5.63 24.05 1.32 5.54 inf; +hâtera hâter VER 5.63 24.05 0.01 0.20 ind:fut:3s; +hâteraient hâter VER 5.63 24.05 0.00 0.07 cnd:pre:3p; +hâterait hâter VER 5.63 24.05 0.00 0.27 cnd:pre:3s; +hâtes hâter VER 5.63 24.05 0.01 0.00 ind:pre:2s; +hâtez hâter VER 5.63 24.05 0.93 0.14 imp:pre:2p;ind:pre:2p; +hâtif hâtif ADJ m s 2.43 5.61 0.65 1.76 +hâtifs hâtif ADJ m p 2.43 5.61 0.02 1.15 +hâtions hâter VER 5.63 24.05 0.00 0.14 ind:imp:1p; +hâtive hâtif ADJ f s 2.43 5.61 0.61 1.76 +hâtivement hâtivement ADV 0.12 5.54 0.12 5.54 +hâtives hâtif ADJ f p 2.43 5.61 1.15 0.95 +hotline hotline NOM f s 0.52 0.00 0.52 0.00 +hâtâmes hâter VER 5.63 24.05 0.00 0.14 ind:pas:1p; +hâtons hâter VER 5.63 24.05 0.37 0.14 imp:pre:1p;ind:pre:1p; +hâtât hâter VER 5.63 24.05 0.00 0.07 sub:imp:3s; +hotte hotte NOM f s 1.23 2.57 1.00 2.43 +hotter hotter VER 0.01 0.00 0.01 0.00 inf; +hottes hotte NOM f p 1.23 2.57 0.24 0.14 +hâtèrent hâter VER 5.63 24.05 0.00 0.61 ind:pas:3p; +hottée hottée NOM f s 0.00 0.07 0.00 0.07 +hâté hâter VER m s 5.63 24.05 0.26 1.01 par:pas; +hotu hotu NOM m s 0.00 0.81 0.00 0.41 +hâtée hâter VER f s 5.63 24.05 0.01 0.20 par:pas; +hâtés hâter VER m p 5.63 24.05 0.00 0.14 par:pas; +hotus hotu NOM m p 0.00 0.81 0.00 0.41 +hou hou ONO 8.65 5.27 8.65 5.27 +houa houer VER 0.07 0.00 0.07 0.00 ind:pas:3s; +houari houari NOM m s 0.00 0.07 0.00 0.07 +houblon houblon NOM m s 0.31 0.61 0.31 0.54 +houblonnés houblonner VER m p 0.00 0.07 0.00 0.07 par:pas; +houblons houblon NOM m p 0.31 0.61 0.00 0.07 +houe houe NOM f s 0.37 0.34 0.37 0.34 +houhou houhou ONO 0.46 0.27 0.46 0.27 +houille houille NOM f s 0.00 0.88 0.00 0.81 +houiller houiller ADJ m s 0.01 0.20 0.00 0.14 +houilles houille NOM f p 0.00 0.88 0.00 0.07 +houillère houiller NOM f s 0.05 0.00 0.05 0.00 +houillères houillère NOM f p 0.00 0.41 0.00 0.41 +houle houle NOM f s 0.46 10.07 0.44 8.85 +houler houler VER 0.00 0.07 0.00 0.07 inf; +houles houle NOM f p 0.46 10.07 0.02 1.22 +houlette houlette NOM f s 0.82 0.81 0.82 0.81 +houleuse houleux ADJ f s 0.79 2.16 0.66 1.35 +houleuses houleux ADJ f p 0.79 2.16 0.01 0.27 +houleux houleux ADJ m 0.79 2.16 0.11 0.54 +houligan houligan NOM m s 0.00 0.07 0.00 0.07 +houliganisme houliganisme NOM m s 0.00 0.20 0.00 0.20 +houlà houlà ONO 0.13 0.61 0.13 0.61 +houlque houlque NOM f s 0.00 0.07 0.00 0.07 +houp houp ONO 0.07 0.14 0.07 0.14 +houppe houppe NOM f s 0.02 0.68 0.01 0.54 +houppelande houppelande NOM f s 0.03 2.09 0.03 1.96 +houppelandes houppelande NOM f p 0.03 2.09 0.00 0.14 +houppes houppe NOM f p 0.02 0.68 0.01 0.14 +houppette houppette NOM f s 0.02 2.43 0.02 2.09 +houppettes houppette NOM f p 0.02 2.43 0.00 0.34 +hourdis hourdis NOM m 0.00 0.07 0.00 0.07 +hourds hourd NOM m p 0.00 0.20 0.00 0.20 +houri houri NOM f s 0.10 0.61 0.10 0.41 +houris houri NOM f p 0.10 0.61 0.00 0.20 +hourra hourra ONO 5.18 0.81 5.18 0.81 +hourrah hourrah NOM m s 0.77 0.41 0.77 0.34 +hourrahs hourrah NOM m p 0.77 0.41 0.00 0.07 +hourras hourra NOM m p 2.38 1.42 0.27 0.68 +hourvari hourvari NOM m s 0.27 0.54 0.27 0.41 +hourvaris hourvari NOM m p 0.27 0.54 0.00 0.14 +housards housard NOM m p 0.00 0.14 0.00 0.14 +house_boat house_boat NOM m s 0.04 0.07 0.02 0.00 +house_boat house_boat NOM m p 0.04 0.07 0.01 0.07 +house_music house_music NOM f s 0.01 0.00 0.01 0.00 +house house NOM f s 4.74 0.27 4.74 0.27 +houseau houseau NOM m s 0.10 1.08 0.00 0.20 +houseaux houseau NOM m p 0.10 1.08 0.10 0.88 +houspilla houspiller VER 0.41 2.77 0.00 0.07 ind:pas:3s; +houspillaient houspiller VER 0.41 2.77 0.00 0.14 ind:imp:3p; +houspillait houspiller VER 0.41 2.77 0.01 0.47 ind:imp:3s; +houspillant houspiller VER 0.41 2.77 0.00 0.34 par:pre; +houspille houspiller VER 0.41 2.77 0.16 0.27 ind:pre:1s;ind:pre:3s; +houspillent houspiller VER 0.41 2.77 0.00 0.07 ind:pre:3p; +houspiller houspiller VER 0.41 2.77 0.22 0.81 inf; +houspillâmes houspiller VER 0.41 2.77 0.00 0.07 ind:pas:1p; +houspillèrent houspiller VER 0.41 2.77 0.00 0.07 ind:pas:3p; +houspillé houspiller VER m s 0.41 2.77 0.02 0.14 par:pas; +houspillée houspiller VER f s 0.41 2.77 0.00 0.20 par:pas; +houspillées houspiller VER f p 0.41 2.77 0.00 0.07 par:pas; +houspillés houspiller VER m p 0.41 2.77 0.00 0.07 par:pas; +housse housse NOM f s 0.83 5.68 0.35 3.11 +housses housse NOM f p 0.83 5.68 0.49 2.57 +houssés housser VER m p 0.00 0.07 0.00 0.07 par:pas; +houx houx NOM m 0.07 1.28 0.07 1.28 +hâve hâve ADJ s 0.01 1.28 0.01 0.61 +hovercraft hovercraft NOM m s 0.01 0.00 0.01 0.00 +hâves hâve ADJ p 0.01 1.28 0.00 0.68 +hoyau hoyau NOM m s 0.00 0.14 0.00 0.14 +hèle héler VER 0.35 6.49 0.05 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hère hère NOM m s 0.17 0.74 0.04 0.41 +hères hère NOM m p 0.17 0.74 0.13 0.34 +hé hé ONO 288.29 30.00 288.29 30.00 +huître huître NOM f s 4.00 7.64 1.41 2.70 +huîtres huître NOM f p 4.00 7.64 2.59 4.93 +huîtrier huîtrier NOM m s 0.01 0.07 0.01 0.00 +huîtriers huîtrier NOM m p 0.01 0.07 0.00 0.07 +huîtrière huîtrière NOM f s 0.00 0.07 0.00 0.07 +hua huer VER 1.24 2.30 0.09 0.00 ind:pas:3s; +huaient huer VER 1.24 2.30 0.01 0.00 ind:imp:3p; +huait huer VER 1.24 2.30 0.02 0.07 ind:imp:3s; +huant huer VER 1.24 2.30 0.03 0.07 par:pre; +huard huard NOM m s 0.59 0.27 0.52 0.07 +huards huard NOM m p 0.59 0.27 0.08 0.20 +huart huart NOM m s 0.00 0.27 0.00 0.27 +héberge héberger VER 5.77 6.49 0.87 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hébergea héberger VER 5.77 6.49 0.00 0.20 ind:pas:3s; +hébergeai héberger VER 5.77 6.49 0.00 0.07 ind:pas:1s; +hébergeaient héberger VER 5.77 6.49 0.11 0.27 ind:imp:3p; +hébergeais héberger VER 5.77 6.49 0.01 0.14 ind:imp:1s;ind:imp:2s; +hébergeait héberger VER 5.77 6.49 0.02 0.41 ind:imp:3s; +hébergeant héberger VER 5.77 6.49 0.12 0.20 par:pre; +hébergement hébergement NOM m s 0.68 0.68 0.68 0.68 +hébergent héberger VER 5.77 6.49 0.04 0.07 ind:pre:3p; +hébergeons héberger VER 5.77 6.49 0.12 0.00 imp:pre:1p;ind:pre:1p; +héberger héberger VER 5.77 6.49 2.80 2.70 inf; +hébergera héberger VER 5.77 6.49 0.19 0.07 ind:fut:3s; +hébergerait héberger VER 5.77 6.49 0.00 0.14 cnd:pre:3s; +hébergeras héberger VER 5.77 6.49 0.00 0.07 ind:fut:2s; +hébergez héberger VER 5.77 6.49 0.19 0.00 imp:pre:2p;ind:pre:2p; +hébergiez héberger VER 5.77 6.49 0.02 0.00 ind:imp:2p; +hébergions héberger VER 5.77 6.49 0.00 0.07 ind:imp:1p; +hébergé héberger VER m s 5.77 6.49 0.78 1.15 par:pas; +hébergée héberger VER f s 5.77 6.49 0.24 0.27 par:pas; +hébergées héberger VER f p 5.77 6.49 0.01 0.07 par:pas; +hébergés héberger VER m p 5.77 6.49 0.24 0.34 par:pas; +hébertisme hébertisme NOM m s 0.00 0.27 0.00 0.27 +hublot hublot NOM m s 2.61 7.77 1.77 4.66 +hublots hublot NOM m p 2.61 7.77 0.84 3.11 +hébraïque hébraïque ADJ s 0.11 1.08 0.09 0.88 +hébraïquement hébraïquement ADV 0.00 0.07 0.00 0.07 +hébraïques hébraïque ADJ p 0.11 1.08 0.02 0.20 +hébraïsant hébraïsant ADJ m s 0.00 0.07 0.00 0.07 +hébreu hébreu NOM m s 1.67 2.97 1.67 2.97 +hébreux hébreux NOM m p 0.40 0.07 0.40 0.07 +hébètent hébéter VER 0.35 2.03 0.00 0.07 ind:pre:3p; +hébéphrénique hébéphrénique ADJ f s 0.02 0.00 0.02 0.00 +hébéta hébéter VER 0.35 2.03 0.00 0.07 ind:pas:3s; +hébétait hébéter VER 0.35 2.03 0.00 0.07 ind:imp:3s; +hébétement hébétement NOM m s 0.00 0.07 0.00 0.07 +hébété hébété ADJ m s 0.54 4.73 0.29 2.84 +hébétude hébétude NOM f s 0.14 4.05 0.14 4.05 +hébétée hébété ADJ f s 0.54 4.73 0.23 0.95 +hébétées hébété ADJ f p 0.54 4.73 0.00 0.20 +hébétés hébéter VER m p 0.35 2.03 0.03 0.34 par:pas; +hécatombe hécatombe NOM f s 0.20 1.69 0.20 1.28 +hécatombes hécatombe NOM f p 0.20 1.69 0.00 0.41 +huche huche NOM f s 0.19 0.47 0.19 0.34 +huches huche NOM f p 0.19 0.47 0.00 0.14 +huchet huchet NOM m s 0.00 0.27 0.00 0.27 +hédonisme hédonisme NOM m s 0.05 0.20 0.05 0.20 +hédoniste hédoniste ADJ s 0.21 0.14 0.21 0.07 +hédonistes hédoniste ADJ m p 0.21 0.14 0.00 0.07 +hue hue ONO 2.63 1.08 2.63 1.08 +huer huer VER 1.24 2.30 0.25 0.27 inf; +huerta huerta NOM f s 0.53 0.95 0.53 0.95 +huez huer VER 1.24 2.30 0.02 0.14 imp:pre:2p;ind:pre:2p; +hugh hugh ONO 1.38 0.27 1.38 0.27 +hégire hégire NOM f s 0.38 0.27 0.38 0.27 +hugolien hugolien ADJ m s 0.00 0.14 0.00 0.07 +hugoliens hugolien ADJ m p 0.00 0.14 0.00 0.07 +huguenot huguenot NOM m s 0.23 0.47 0.11 0.20 +huguenote huguenote NOM f s 0.10 0.00 0.10 0.00 +huguenots huguenot NOM m p 0.23 0.47 0.12 0.20 +hégélianisme hégélianisme NOM m s 0.00 0.07 0.00 0.07 +hégélien hégélien ADJ m s 0.16 0.14 0.00 0.07 +hégélienne hégélien ADJ f s 0.16 0.14 0.16 0.00 +hégéliens hégélien ADJ m p 0.16 0.14 0.00 0.07 +hégémonie hégémonie NOM f s 0.04 1.42 0.04 1.42 +hui hui NOM s 2.36 0.47 2.36 0.47 +huilai huiler VER 0.59 1.76 0.00 0.07 ind:pas:1s; +huilait huiler VER 0.59 1.76 0.10 0.07 ind:imp:3s; +huile huile NOM f s 22.68 38.18 20.23 36.22 +huilent huiler VER 0.59 1.76 0.00 0.07 ind:pre:3p; +huiler huiler VER 0.59 1.76 0.12 0.41 inf; +huilerai huiler VER 0.59 1.76 0.02 0.00 ind:fut:1s; +huiles huile NOM f p 22.68 38.18 2.46 1.96 +huileuse huileux ADJ f s 0.37 4.26 0.09 1.89 +huileuses huileux ADJ f p 0.37 4.26 0.01 0.54 +huileux huileux ADJ m 0.37 4.26 0.27 1.82 +huilez huiler VER 0.59 1.76 0.05 0.00 imp:pre:2p; +huilier huilier NOM m s 0.10 0.07 0.10 0.07 +huiliers huilier ADJ m p 0.01 0.07 0.00 0.07 +huilé huilé ADJ m s 0.57 3.24 0.21 1.15 +huilée huilé ADJ f s 0.57 3.24 0.21 1.08 +huilées huiler VER f p 0.59 1.76 0.05 0.07 par:pas; +huilés huilé ADJ m p 0.57 3.24 0.15 0.81 +huipil huipil NOM m s 0.00 0.54 0.00 0.47 +huipils huipil NOM m p 0.00 0.54 0.00 0.07 +huis huis NOM m 0.48 1.82 0.48 1.82 +huisserie huisserie NOM f s 0.04 0.34 0.04 0.14 +huisseries huisserie NOM f p 0.04 0.34 0.00 0.20 +huissier huissier NOM m s 2.84 5.95 2.06 3.72 +huissiers huissier NOM m p 2.84 5.95 0.78 2.23 +huit_reflets huit_reflets NOM m 0.00 0.27 0.00 0.27 +huit huit ADJ:num 58.47 102.50 58.47 102.50 +huitaine huitaine NOM f s 0.20 1.01 0.20 1.01 +huitième huitième NOM s 1.29 2.09 0.88 1.96 +huitièmes huitième NOM p 1.29 2.09 0.41 0.14 +héla héler VER 0.35 6.49 0.01 1.69 ind:pas:3s; +hélai héler VER 0.35 6.49 0.00 0.14 ind:pas:1s; +hélaient héler VER 0.35 6.49 0.00 0.47 ind:imp:3p; +hélait héler VER 0.35 6.49 0.01 0.14 ind:imp:3s; +hélant héler VER 0.35 6.49 0.00 0.47 par:pre; +hélas hélas ONO 24.21 34.73 24.21 34.73 +héler héler VER 0.35 6.49 0.11 1.08 inf; +hélez héler VER 0.35 6.49 0.01 0.00 imp:pre:2p; +hélianthes hélianthe NOM m p 0.00 0.34 0.00 0.34 +hélice hélice NOM f s 2.83 3.85 1.90 2.36 +hélices hélice NOM f p 2.83 3.85 0.93 1.49 +hélico hélico ADV 0.01 0.00 0.01 0.00 +hélicoïdal hélicoïdal ADJ m s 0.01 0.07 0.00 0.07 +hélicoïdale hélicoïdal ADJ f s 0.01 0.07 0.01 0.00 +hélicoptère hélicoptère NOM m s 13.96 3.72 10.98 2.43 +hélicoptères hélicoptère NOM m p 13.96 3.72 2.98 1.28 +hélio hélio NOM f s 0.00 0.07 0.00 0.07 +héliographe héliographe NOM m s 0.01 0.00 0.01 0.00 +héliogravure héliogravure NOM f s 0.00 0.07 0.00 0.07 +héliophanie héliophanie NOM f s 0.00 0.07 0.00 0.07 +héliotrope héliotrope NOM m s 0.07 0.41 0.04 0.27 +héliotropes héliotrope NOM m p 0.07 0.41 0.03 0.14 +héliport héliport NOM m s 0.12 0.14 0.12 0.14 +héliporter héliporter VER 0.08 0.07 0.01 0.07 inf; +héliporté héliporter VER m s 0.08 0.07 0.05 0.00 par:pas; +héliportée héliporté ADJ f s 0.06 0.14 0.05 0.00 +héliportés héliporter VER m p 0.08 0.07 0.01 0.00 par:pas; +hélitreuiller hélitreuiller VER 0.01 0.00 0.01 0.00 inf; +hélium hélium NOM m s 0.99 0.47 0.99 0.47 +hélix hélix NOM m 0.07 0.07 0.07 0.07 +hulotte hulotte NOM f s 0.10 0.61 0.10 0.34 +hulottes hulotte NOM f p 0.10 0.61 0.00 0.27 +hélèrent héler VER 0.35 6.49 0.00 0.20 ind:pas:3p; +hélé héler VER m s 0.35 6.49 0.11 0.68 par:pas; +hulula hululer VER 0.18 1.35 0.00 0.20 ind:pas:3s; +hululaient hululer VER 0.18 1.35 0.00 0.14 ind:imp:3p; +hululait hululer VER 0.18 1.35 0.00 0.34 ind:imp:3s; +hululant hululer VER 0.18 1.35 0.00 0.27 par:pre; +hulule hululer VER 0.18 1.35 0.14 0.14 ind:pre:1s;ind:pre:3s; +hululement hululement NOM m s 0.27 1.82 0.00 1.22 +hululements hululement NOM m p 0.27 1.82 0.27 0.61 +hululent hululer VER 0.18 1.35 0.02 0.07 ind:pre:3p; +hululer hululer VER 0.18 1.35 0.01 0.14 inf; +hululée hululer VER f s 0.18 1.35 0.00 0.07 par:pas; +hélés héler VER m p 0.35 6.49 0.00 0.07 par:pas; +hum hum ONO 33.59 5.68 33.59 5.68 +huma humer VER 0.73 9.53 0.03 1.49 ind:pas:3s; +humai humer VER 0.73 9.53 0.00 0.07 ind:pas:1s; +humaient humer VER 0.73 9.53 0.00 0.34 ind:imp:3p; +humain_robot humain_robot ADJ m s 0.03 0.00 0.03 0.00 +humain humain ADJ m s 107.10 111.55 50.53 35.81 +humaine humain ADJ f s 107.10 111.55 32.37 47.43 +humainement humainement ADV 0.86 0.95 0.86 0.95 +humaines humain ADJ f p 107.10 111.55 6.36 14.93 +humains humain NOM m p 30.00 18.31 18.15 10.00 +humais humer VER 0.73 9.53 0.01 0.07 ind:imp:1s; +humait humer VER 0.73 9.53 0.00 1.28 ind:imp:3s; +humanisait humaniser VER 0.27 1.35 0.00 0.27 ind:imp:3s; +humanisant humaniser VER 0.27 1.35 0.01 0.07 par:pre; +humanisation humanisation NOM f s 0.00 0.14 0.00 0.14 +humanise humaniser VER 0.27 1.35 0.03 0.07 imp:pre:2s;ind:pre:3s; +humanisent humaniser VER 0.27 1.35 0.00 0.07 ind:pre:3p; +humaniser humaniser VER 0.27 1.35 0.09 0.41 inf; +humanisme humanisme NOM m s 0.41 2.30 0.41 2.30 +humaniste humaniste ADJ s 0.72 0.68 0.72 0.54 +humanistes humaniste NOM p 0.45 1.08 0.01 0.47 +humanisé humaniser VER m s 0.27 1.35 0.00 0.20 par:pas; +humanisée humaniser VER f s 0.27 1.35 0.14 0.07 par:pas; +humanisées humaniser VER f p 0.27 1.35 0.00 0.14 par:pas; +humanisés humaniser VER m p 0.27 1.35 0.01 0.07 par:pas; +humanitaire humanitaire ADJ s 2.02 1.55 1.52 1.22 +humanitaires humanitaire ADJ p 2.02 1.55 0.50 0.34 +humanitarisme humanitarisme NOM m s 0.11 0.07 0.11 0.07 +humanité humanité NOM f s 23.31 24.32 23.15 23.85 +humanités humanité NOM f p 23.31 24.32 0.16 0.47 +humano humano ADV 0.16 0.00 0.16 0.00 +humanoïde humanoïde ADJ s 0.46 0.00 0.42 0.00 +humanoïdes humanoïde NOM p 0.21 0.41 0.11 0.27 +humant humer VER 0.73 9.53 0.11 1.69 par:pre; +hématie hématie NOM f s 0.12 0.07 0.00 0.07 +hématies hématie NOM f p 0.12 0.07 0.12 0.00 +hématine hématine NOM f s 0.05 0.00 0.05 0.00 +hématite hématite NOM f s 0.00 0.07 0.00 0.07 +hématocrite hématocrite NOM m s 0.60 0.00 0.60 0.00 +hématocèle hématocèle NOM f s 0.00 0.07 0.00 0.07 +hématologie hématologie NOM f s 0.10 0.07 0.10 0.07 +hématologique hématologique ADJ f s 0.01 0.00 0.01 0.00 +hématologue hématologue NOM s 0.14 0.07 0.14 0.07 +hématome hématome NOM m s 1.53 0.61 1.08 0.41 +hématomes hématome NOM m p 1.53 0.61 0.45 0.20 +hématopoïèse hématopoïèse NOM f s 0.00 0.07 0.00 0.07 +hématose hématose NOM f s 0.00 0.07 0.00 0.07 +hématurie hématurie NOM f s 0.02 0.00 0.02 0.00 +humble humble ADJ s 12.43 18.45 9.66 12.84 +humblement humblement ADV 2.26 3.65 2.26 3.65 +humbles humble ADJ p 12.43 18.45 2.77 5.61 +humbug humbug ADJ s 0.01 0.00 0.01 0.00 +hume humer VER 0.73 9.53 0.13 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humecta humecter VER 0.35 4.53 0.14 0.27 ind:pas:3s; +humectage humectage NOM m s 0.01 0.00 0.01 0.00 +humectai humecter VER 0.35 4.53 0.00 0.14 ind:pas:1s; +humectaient humecter VER 0.35 4.53 0.00 0.07 ind:imp:3p; +humectais humecter VER 0.35 4.53 0.00 0.07 ind:imp:1s; +humectait humecter VER 0.35 4.53 0.00 0.41 ind:imp:3s; +humectant humectant ADJ m s 0.05 0.00 0.05 0.00 +humecte humecter VER 0.35 4.53 0.00 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humectent humecter VER 0.35 4.53 0.00 0.07 ind:pre:3p; +humecter humecter VER 0.35 4.53 0.16 1.01 inf; +humecté humecter VER m s 0.35 4.53 0.00 0.54 par:pas; +humectée humecter VER f s 0.35 4.53 0.03 0.41 par:pas; +humectées humecter VER f p 0.35 4.53 0.01 0.20 par:pas; +humectés humecter VER m p 0.35 4.53 0.01 0.34 par:pas; +hument humer VER 0.73 9.53 0.11 0.14 ind:pre:3p; +humer humer VER 0.73 9.53 0.28 1.76 inf; +humeras humer VER 0.73 9.53 0.00 0.07 ind:fut:2s; +humeur humeur NOM f s 31.26 58.04 29.80 52.57 +humeurs humeur NOM f p 31.26 58.04 1.46 5.47 +humez humer VER 0.73 9.53 0.04 0.07 imp:pre:2p; +hémi hémi ADV 0.00 0.07 0.00 0.07 +hémicycle hémicycle NOM m s 0.03 0.34 0.03 0.34 +humide humide ADJ s 11.23 53.31 8.24 38.24 +humidement humidement ADV 0.00 0.07 0.00 0.07 +humides humide ADJ p 11.23 53.31 2.98 15.07 +humidifia humidifier VER 0.31 0.47 0.00 0.07 ind:pas:3s; +humidifiant humidifier VER 0.31 0.47 0.15 0.07 par:pre; +humidificateur humidificateur NOM m s 0.20 0.07 0.20 0.07 +humidification humidification NOM f s 0.03 0.00 0.03 0.00 +humidifient humidifier VER 0.31 0.47 0.04 0.07 ind:pre:3p; +humidifier humidifier VER 0.31 0.47 0.06 0.14 inf; +humidifié humidifier VER m s 0.31 0.47 0.06 0.07 par:pas; +humidifiés humidifier VER m p 0.31 0.47 0.00 0.07 par:pas; +humidité humidité NOM f s 4.09 14.86 4.09 14.86 +humilia humilier VER 16.01 14.26 0.00 0.07 ind:pas:3s; +humiliaient humilier VER 16.01 14.26 0.00 0.20 ind:imp:3p; +humiliais humilier VER 16.01 14.26 0.02 0.00 ind:imp:2s; +humiliait humilier VER 16.01 14.26 0.05 0.95 ind:imp:3s; +humiliant humiliant ADJ m s 5.08 3.78 3.35 1.89 +humiliante humiliant ADJ f s 5.08 3.78 0.73 0.88 +humiliantes humiliant ADJ f p 5.08 3.78 0.56 0.34 +humiliants humiliant ADJ m p 5.08 3.78 0.45 0.68 +humiliassent humilier VER 16.01 14.26 0.00 0.07 sub:imp:3p; +humiliation humiliation NOM f s 7.60 13.65 6.72 10.68 +humiliations humiliation NOM f p 7.60 13.65 0.89 2.97 +humilie humilier VER 16.01 14.26 2.15 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +humilient humilier VER 16.01 14.26 0.15 0.14 ind:pre:3p; +humilier humilier VER 16.01 14.26 5.68 4.32 inf;; +humiliera humilier VER 16.01 14.26 0.05 0.00 ind:fut:3s; +humilierai humilier VER 16.01 14.26 0.04 0.00 ind:fut:1s; +humilieraient humilier VER 16.01 14.26 0.00 0.14 cnd:pre:3p; +humilierais humilier VER 16.01 14.26 0.01 0.00 cnd:pre:1s; +humilierait humilier VER 16.01 14.26 0.01 0.14 cnd:pre:3s; +humilies humilier VER 16.01 14.26 0.62 0.27 ind:pre:2s; +humiliez humilier VER 16.01 14.26 0.14 0.27 imp:pre:2p;ind:pre:2p; +humilité humilité NOM f s 4.24 12.09 4.24 11.96 +humilités humilité NOM f p 4.24 12.09 0.00 0.14 +humilié humilier VER m s 16.01 14.26 3.65 3.18 par:pas; +humiliée humilier VER f s 16.01 14.26 1.93 1.62 par:pas; +humiliées humilié ADJ f p 2.45 4.32 0.40 0.07 +humiliés humilier VER m p 16.01 14.26 1.12 0.88 par:pas; +humions humer VER 0.73 9.53 0.00 0.07 ind:imp:1p; +hémiplégie hémiplégie NOM f s 0.20 0.41 0.20 0.41 +hémiplégique hémiplégique ADJ s 0.01 0.07 0.01 0.07 +hémiptère hémiptère NOM m s 0.00 0.07 0.00 0.07 +hémisphère hémisphère NOM m s 1.38 1.76 0.96 0.88 +hémisphères hémisphère NOM m p 1.38 1.76 0.41 0.88 +hémisphérique hémisphérique ADJ s 0.01 0.41 0.01 0.34 +hémisphériques hémisphérique ADJ m p 0.01 0.41 0.00 0.07 +hémistiche hémistiche NOM m s 0.01 0.20 0.00 0.07 +hémistiches hémistiche NOM m p 0.01 0.20 0.01 0.14 +hémièdres hémièdre ADJ f p 0.00 0.07 0.00 0.07 +hémoculture hémoculture NOM f s 0.17 0.00 0.09 0.00 +hémocultures hémoculture NOM f p 0.17 0.00 0.09 0.00 +hémodialyse hémodialyse NOM f s 0.04 0.00 0.04 0.00 +hémodynamique hémodynamique NOM f s 0.05 0.00 0.05 0.00 +hémoglobine hémoglobine NOM f s 1.15 0.34 1.14 0.27 +hémoglobines hémoglobine NOM f p 1.15 0.34 0.01 0.07 +hémogramme hémogramme NOM m s 0.12 0.00 0.12 0.00 +hémolyse hémolyse NOM f s 0.07 0.00 0.07 0.00 +hémolytique hémolytique ADJ f s 0.12 0.00 0.12 0.00 +humons humer VER 0.73 9.53 0.00 0.07 ind:pre:1p; +hémophile hémophile ADJ m s 0.10 0.07 0.07 0.07 +hémophiles hémophile ADJ m p 0.10 0.07 0.03 0.00 +hémophilie hémophilie NOM f s 0.14 0.07 0.14 0.07 +hémoptysie hémoptysie NOM f s 0.01 0.68 0.00 0.34 +hémoptysies hémoptysie NOM f p 0.01 0.68 0.01 0.34 +humoral humoral ADJ m s 0.00 0.07 0.00 0.07 +humoriste humoriste ADJ s 0.33 0.20 0.33 0.14 +humoristes humoriste NOM p 0.11 0.74 0.02 0.41 +humoristique humoristique ADJ s 0.30 1.22 0.20 0.61 +humoristiques humoristique ADJ p 0.30 1.22 0.10 0.61 +hémorragie hémorragie NOM f s 9.35 3.11 8.39 2.43 +hémorragies hémorragie NOM f p 9.35 3.11 0.96 0.68 +hémorragique hémorragique ADJ s 0.25 0.00 0.25 0.00 +hémorroïdaire hémorroïdaire ADJ s 0.01 0.00 0.01 0.00 +hémorroïdale hémorroïdal ADJ f s 0.01 0.00 0.01 0.00 +hémorroïde hémorroïde NOM f s 1.69 0.41 0.23 0.00 +hémorroïdes hémorroïde NOM f p 1.69 0.41 1.46 0.41 +hémostase hémostase NOM f s 0.13 0.00 0.13 0.00 +hémostatique hémostatique ADJ s 0.14 0.07 0.14 0.07 +humour humour NOM m s 17.22 16.76 17.22 16.76 +humèrent humer VER 0.73 9.53 0.00 0.07 ind:pas:3p; +humé humer VER m s 0.73 9.53 0.02 0.47 par:pas; +humée humer VER f s 0.73 9.53 0.00 0.07 par:pas; +humérale huméral ADJ f s 0.04 0.00 0.04 0.00 +humérus humérus NOM m 0.22 0.34 0.22 0.34 +humés humer VER m p 0.73 9.53 0.00 0.07 par:pas; +humus humus NOM m 0.32 5.74 0.32 5.74 +hun hun NOM m s 0.16 0.68 0.11 0.47 +hune hune NOM f s 0.06 0.41 0.06 0.34 +hunes hune NOM f p 0.06 0.41 0.00 0.07 +hunier hunier NOM m s 0.17 0.14 0.12 0.07 +huniers hunier NOM m p 0.17 0.14 0.05 0.07 +huns hun NOM m p 0.16 0.68 0.05 0.20 +hunter hunter NOM m s 0.02 0.00 0.02 0.00 +héparine héparine NOM f s 0.28 0.00 0.28 0.00 +hépatique hépatique ADJ s 0.50 0.41 0.32 0.27 +hépatiques hépatique ADJ p 0.50 0.41 0.18 0.14 +hépatite hépatite NOM f s 2.12 0.74 2.04 0.74 +hépatites hépatite NOM f p 2.12 0.74 0.08 0.00 +hépatomégalie hépatomégalie NOM f s 0.01 0.00 0.01 0.00 +huppe huppe NOM f s 0.06 0.34 0.06 0.34 +huppé huppé ADJ m s 0.45 2.09 0.17 0.68 +huppée huppé ADJ f s 0.45 2.09 0.10 0.61 +huppées huppé ADJ f p 0.45 2.09 0.05 0.27 +huppés huppé ADJ m p 0.45 2.09 0.13 0.54 +héraclitienne héraclitien ADJ f s 0.00 0.07 0.00 0.07 +héraclitéen héraclitéen ADJ m s 0.00 0.20 0.00 0.14 +héraclitéenne héraclitéen ADJ f s 0.00 0.20 0.00 0.07 +héraldique héraldique ADJ s 0.00 1.22 0.00 0.81 +héraldiques héraldique ADJ p 0.00 1.22 0.00 0.41 +héraut héraut NOM m s 0.36 0.81 0.35 0.20 +hérauts héraut NOM m p 0.36 0.81 0.01 0.61 +hure hure NOM f s 0.11 2.36 0.11 0.34 +hures hure NOM f p 0.11 2.36 0.00 2.03 +hérissa hérisser VER 0.64 13.99 0.10 0.14 ind:pas:3s; +hérissaient hérisser VER 0.64 13.99 0.00 0.74 ind:imp:3p; +hérissait hérisser VER 0.64 13.99 0.01 1.08 ind:imp:3s; +hérissant hérisser VER 0.64 13.99 0.00 0.27 par:pre; +hérisse hérisser VER 0.64 13.99 0.11 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hérissement hérissement NOM m s 0.00 0.34 0.00 0.14 +hérissements hérissement NOM m p 0.00 0.34 0.00 0.20 +hérissent hérisser VER 0.64 13.99 0.03 0.41 ind:pre:3p; +hérisser hérisser VER 0.64 13.99 0.03 0.41 inf; +hérisseraient hérisser VER 0.64 13.99 0.00 0.14 cnd:pre:3p; +hérisses hérisser VER 0.64 13.99 0.01 0.07 ind:pre:2s; +hérisson hérisson NOM m s 0.75 2.57 0.69 1.76 +hérissons hérisson NOM m p 0.75 2.57 0.06 0.81 +hérissât hérisser VER 0.64 13.99 0.00 0.07 sub:imp:3s; +hérissèrent hérisser VER 0.64 13.99 0.00 0.14 ind:pas:3p; +hérissé hérisser VER m s 0.64 13.99 0.14 3.38 par:pas; +hérissée hérissé ADJ f s 0.41 4.86 0.21 1.28 +hérissées hérissé ADJ f p 0.41 4.86 0.14 1.22 +hérissés hérisser VER m p 0.64 13.99 0.05 2.50 par:pas; +hérita hériter VER 11.93 12.84 0.18 0.34 ind:pas:3s; +héritage héritage NOM m s 12.37 12.03 12.18 11.15 +héritages héritage NOM m p 12.37 12.03 0.19 0.88 +héritai hériter VER 11.93 12.84 0.00 0.20 ind:pas:1s; +héritaient hériter VER 11.93 12.84 0.00 0.14 ind:imp:3p; +héritais hériter VER 11.93 12.84 0.11 0.14 ind:imp:1s;ind:imp:2s; +héritait hériter VER 11.93 12.84 0.03 0.20 ind:imp:3s; +hérite hériter VER 11.93 12.84 1.52 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +héritent hériter VER 11.93 12.84 0.21 0.00 ind:pre:3p; +hériter hériter VER 11.93 12.84 1.86 1.35 inf; +héritera hériter VER 11.93 12.84 0.38 0.14 ind:fut:3s; +hériterai hériter VER 11.93 12.84 0.05 0.07 ind:fut:1s; +hériteraient hériter VER 11.93 12.84 0.02 0.00 cnd:pre:3p; +hériterait hériter VER 11.93 12.84 0.07 0.14 cnd:pre:3s; +hériteras hériter VER 11.93 12.84 0.22 0.00 ind:fut:2s; +hériterez hériter VER 11.93 12.84 0.20 0.07 ind:fut:2p; +hériteront hériter VER 11.93 12.84 0.11 0.00 ind:fut:3p; +hérites hériter VER 11.93 12.84 0.34 0.14 ind:pre:2s; +héritez hériter VER 11.93 12.84 0.25 0.14 imp:pre:2p;ind:pre:2p; +héritier héritier NOM m s 10.77 13.45 7.76 7.16 +héritiers héritier NOM m p 10.77 13.45 1.39 3.18 +héritière héritier NOM f s 10.77 13.45 1.62 2.70 +héritières héritière NOM f p 0.05 0.00 0.05 0.00 +héritons hériter VER 11.93 12.84 0.11 0.00 ind:pre:1p; +hérité hériter VER m s 11.93 12.84 6.00 6.89 par:pas; +héritée hériter VER f s 11.93 12.84 0.10 1.42 par:pas; +héritées hériter VER f p 11.93 12.84 0.01 0.27 par:pas; +hérités hériter VER m p 11.93 12.84 0.15 0.61 par:pas; +hurla hurler VER 33.17 88.65 0.46 13.78 ind:pas:3s; +hurlai hurler VER 33.17 88.65 0.00 1.08 ind:pas:1s; +hurlaient hurler VER 33.17 88.65 0.64 3.38 ind:imp:3p; +hurlais hurler VER 33.17 88.65 0.69 0.88 ind:imp:1s;ind:imp:2s; +hurlait hurler VER 33.17 88.65 2.19 10.54 ind:imp:3s; +hurlant hurler VER 33.17 88.65 2.08 12.36 par:pre; +hurlante hurlant ADJ f s 0.69 7.50 0.14 2.03 +hurlantes hurlant ADJ f p 0.69 7.50 0.09 1.01 +hurlants hurlant ADJ m p 0.69 7.50 0.06 0.95 +hurle hurler VER 33.17 88.65 8.34 18.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hurlement hurlement NOM m s 4.59 20.95 2.16 9.86 +hurlements hurlement NOM m p 4.59 20.95 2.43 11.08 +hurlent hurler VER 33.17 88.65 2.52 2.36 ind:pre:3p; +hurler hurler VER 33.17 88.65 10.38 17.23 inf; +hurlera hurler VER 33.17 88.65 0.09 0.00 ind:fut:3s; +hurlerai hurler VER 33.17 88.65 0.08 0.20 ind:fut:1s; +hurleraient hurler VER 33.17 88.65 0.01 0.14 cnd:pre:3p; +hurlerais hurler VER 33.17 88.65 0.06 0.20 cnd:pre:1s; +hurlerait hurler VER 33.17 88.65 0.04 0.20 cnd:pre:3s; +hurlerez hurler VER 33.17 88.65 0.08 0.00 ind:fut:2p; +hurleront hurler VER 33.17 88.65 0.18 0.07 ind:fut:3p; +hurles hurler VER 33.17 88.65 0.69 0.07 ind:pre:2s; +hurleur hurleur NOM m s 0.22 0.47 0.11 0.07 +hurleurs hurleur NOM m p 0.22 0.47 0.12 0.41 +hurlez hurler VER 33.17 88.65 1.47 0.00 imp:pre:2p;ind:pre:2p; +hurlions hurler VER 33.17 88.65 0.14 0.14 ind:imp:1p; +hurlât hurler VER 33.17 88.65 0.00 0.07 sub:imp:3s; +hurlèrent hurler VER 33.17 88.65 0.00 1.01 ind:pas:3p; +hurlé hurler VER m s 33.17 88.65 3.06 6.15 par:pas; +hurluberlu hurluberlu NOM m s 0.23 0.61 0.20 0.14 +hurluberlus hurluberlu NOM m p 0.23 0.61 0.04 0.47 +hurlée hurler VER f s 33.17 88.65 0.00 0.14 par:pas; +hurlées hurler VER f p 33.17 88.65 0.00 0.34 par:pas; +hurlés hurler VER m p 33.17 88.65 0.00 0.07 par:pas; +héro héro NOM f s 4.38 1.35 4.38 1.35 +héroïde héroïde NOM f s 0.00 0.07 0.00 0.07 +héroïne héros NOM f s 76.58 52.77 10.32 7.23 +héroïnes héros NOM f p 76.58 52.77 0.10 1.89 +héroïnomane héroïnomane NOM s 0.02 0.00 0.02 0.00 +héroïque héroïque ADJ s 4.73 11.28 3.31 7.57 +héroïquement héroïquement ADV 0.14 0.74 0.14 0.74 +héroïques héroïque ADJ p 4.73 11.28 1.42 3.72 +héroïsme héroïsme NOM m s 1.06 5.95 1.06 5.95 +héron héron NOM m s 0.64 2.36 0.27 1.08 +huron huron ADJ m s 0.04 0.07 0.01 0.00 +huronne huron ADJ f s 0.04 0.07 0.03 0.07 +hérons héron NOM m p 0.64 2.36 0.37 1.28 +héros héros NOM m 76.58 52.77 66.17 43.65 +hurrah hurrah ONO 0.17 0.61 0.17 0.61 +hurrahs hurrah NOM m p 0.01 0.07 0.00 0.07 +hurricane hurricane NOM m s 0.56 0.34 0.52 0.27 +hurricanes hurricane NOM m p 0.56 0.34 0.05 0.07 +héréditaire héréditaire ADJ s 2.59 4.59 2.21 3.85 +héréditairement héréditairement ADV 0.00 0.20 0.00 0.20 +héréditaires héréditaire ADJ p 2.59 4.59 0.38 0.74 +hérédité hérédité NOM f s 0.71 3.99 0.71 3.99 +hérédo hérédo ADV 0.00 0.07 0.00 0.07 +hérésiarque hérésiarque NOM s 0.00 0.20 0.00 0.07 +hérésiarques hérésiarque NOM p 0.00 0.20 0.00 0.14 +hérésie hérésie NOM f s 1.72 7.91 1.52 7.16 +hérésies hérésie NOM f p 1.72 7.91 0.20 0.74 +hérétique hérétique NOM s 3.15 18.65 2.08 2.77 +hérétiques hérétique NOM p 3.15 18.65 1.08 15.88 +hésita hésiter VER 30.06 122.43 0.30 36.15 ind:pas:3s; +hésitai hésiter VER 30.06 122.43 0.01 4.26 ind:pas:1s; +hésitaient hésiter VER 30.06 122.43 0.01 3.11 ind:imp:3p; +hésitais hésiter VER 30.06 122.43 0.33 3.38 ind:imp:1s;ind:imp:2s; +hésitait hésiter VER 30.06 122.43 1.01 15.07 ind:imp:3s; +hésitant hésiter VER 30.06 122.43 0.23 6.22 par:pre; +hésitante hésitant ADJ f s 0.56 12.09 0.32 5.88 +hésitantes hésitant ADJ f p 0.56 12.09 0.04 0.61 +hésitants hésitant ADJ m p 0.56 12.09 0.09 1.69 +hésitation hésitation NOM f s 2.90 25.14 2.27 19.80 +hésitations hésitation NOM f p 2.90 25.14 0.63 5.34 +hésite hésiter VER 30.06 122.43 8.21 18.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hésitent hésiter VER 30.06 122.43 0.47 2.30 ind:pre:3p; +hésiter hésiter VER 30.06 122.43 4.57 16.28 inf; +hésitera hésiter VER 30.06 122.43 0.20 0.34 ind:fut:3s; +hésiterai hésiter VER 30.06 122.43 0.92 0.20 ind:fut:1s; +hésiteraient hésiter VER 30.06 122.43 0.22 0.41 cnd:pre:3p; +hésiterais hésiter VER 30.06 122.43 0.72 0.61 cnd:pre:1s;cnd:pre:2s; +hésiterait hésiter VER 30.06 122.43 0.51 0.47 cnd:pre:3s; +hésiteras hésiter VER 30.06 122.43 0.16 0.00 ind:fut:2s; +hésiterez hésiter VER 30.06 122.43 0.04 0.07 ind:fut:2p; +hésiteriez hésiter VER 30.06 122.43 0.10 0.00 cnd:pre:2p; +hésiterions hésiter VER 30.06 122.43 0.00 0.07 cnd:pre:1p; +hésiterons hésiter VER 30.06 122.43 0.05 0.07 ind:fut:1p; +hésiteront hésiter VER 30.06 122.43 0.34 0.00 ind:fut:3p; +hésites hésiter VER 30.06 122.43 1.09 0.47 ind:pre:2s; +hésitez hésiter VER 30.06 122.43 6.28 1.89 imp:pre:2p;ind:pre:2p; +hésitiez hésiter VER 30.06 122.43 0.05 0.00 ind:imp:2p; +hésitions hésiter VER 30.06 122.43 0.00 0.20 ind:imp:1p; +hésitons hésiter VER 30.06 122.43 0.42 0.14 imp:pre:1p;ind:pre:1p; +hésitât hésiter VER 30.06 122.43 0.00 0.20 sub:imp:3s; +hésitèrent hésiter VER 30.06 122.43 0.00 0.95 ind:pas:3p; +hésité hésiter VER m s 30.06 122.43 3.83 11.01 par:pas; +huskies huskies NOM m p 0.20 0.00 0.20 0.00 +husky husky NOM m s 0.28 0.00 0.28 0.00 +hussard hussard NOM m s 0.71 3.45 0.17 1.42 +hussarde hussard NOM f s 0.71 3.45 0.01 0.27 +hussards hussard NOM m p 0.71 3.45 0.53 1.76 +husseinites husseinite NOM p 0.00 0.14 0.00 0.14 +hussite hussite NOM m s 0.00 0.20 0.00 0.14 +hussites hussite NOM m p 0.00 0.20 0.00 0.07 +hétaïre hétaïre NOM f s 0.00 0.27 0.00 0.14 +hétaïres hétaïre NOM f p 0.00 0.27 0.00 0.14 +huèrent huer VER 1.24 2.30 0.00 0.07 ind:pas:3p; +hêtraie hêtraie NOM f s 0.00 0.68 0.00 0.54 +hêtraies hêtraie NOM f p 0.00 0.68 0.00 0.14 +hêtre hêtre NOM m s 0.65 10.20 0.18 3.38 +hêtres hêtre NOM m p 0.65 10.20 0.47 6.82 +hutte hutte NOM f s 3.90 7.84 3.25 4.93 +hutter hutter VER 0.77 0.00 0.77 0.00 inf; +huttes hutte NOM f p 3.90 7.84 0.65 2.91 +hétéro hétéro ADJ s 3.91 0.74 3.16 0.61 +hétérochromie hétérochromie NOM f s 0.03 0.00 0.03 0.00 +hétéroclite hétéroclite ADJ s 0.17 4.73 0.02 2.57 +hétéroclites hétéroclite ADJ p 0.17 4.73 0.16 2.16 +hétérodoxes hétérodoxe NOM p 0.01 0.14 0.01 0.14 +hétérodoxie hétérodoxie NOM f s 0.00 0.07 0.00 0.07 +hétérogène hétérogène ADJ m s 0.14 0.34 0.14 0.07 +hétérogènes hétérogène ADJ p 0.14 0.34 0.00 0.27 +hétérogénéité hétérogénéité NOM f s 0.00 0.14 0.00 0.14 +hétéroptère hétéroptère NOM m s 0.00 0.07 0.00 0.07 +hétéros hétéro NOM p 3.50 0.34 1.87 0.00 +hétérosexualité hétérosexualité NOM f s 0.08 0.81 0.08 0.81 +hétérosexuel hétérosexuel ADJ m s 0.97 3.58 0.60 1.49 +hétérosexuelle hétérosexuel ADJ f s 0.97 3.58 0.13 0.88 +hétérosexuelles hétérosexuel ADJ f p 0.97 3.58 0.07 0.07 +hétérosexuels hétérosexuel ADJ m p 0.97 3.58 0.17 1.15 +hétérozygote hétérozygote ADJ s 0.01 0.07 0.01 0.00 +hétérozygotes hétérozygote ADJ p 0.01 0.07 0.00 0.07 +hué huer VER m s 1.24 2.30 0.05 0.34 par:pas; +huée huer VER f s 1.24 2.30 0.02 0.00 par:pas; +huées huée NOM f p 0.64 1.49 0.64 1.42 +hués huer VER m p 1.24 2.30 0.02 0.14 par:pas; +hévéa hévéa NOM m s 0.23 0.20 0.01 0.14 +hévéas hévéa NOM m p 0.23 0.20 0.22 0.07 +hyacinthe hyacinthe NOM f s 0.04 0.07 0.04 0.07 +hyades hyade NOM f p 0.10 0.07 0.10 0.07 +hybridation hybridation NOM f s 0.05 0.00 0.05 0.00 +hybride hybride NOM m s 1.97 0.41 1.20 0.27 +hybrides hybride NOM m p 1.97 0.41 0.77 0.14 +hybridé hybrider VER m s 0.01 0.00 0.01 0.00 par:pas; +hydatique hydatique ADJ s 0.01 0.00 0.01 0.00 +hydne hydne NOM m s 0.00 0.07 0.00 0.07 +hydratant hydratant ADJ m s 0.38 0.27 0.04 0.07 +hydratante hydratant ADJ f s 0.38 0.27 0.26 0.20 +hydratantes hydratant ADJ f p 0.38 0.27 0.07 0.00 +hydratants hydratant ADJ m p 0.38 0.27 0.01 0.00 +hydratation hydratation NOM f s 0.13 0.00 0.13 0.00 +hydrate hydrate NOM m s 0.42 0.00 0.18 0.00 +hydrater hydrater VER 0.58 0.00 0.12 0.00 inf; +hydrates hydrate NOM m p 0.42 0.00 0.25 0.00 +hydratez hydrater VER 0.58 0.00 0.15 0.00 imp:pre:2p; +hydraté hydrater VER m s 0.58 0.00 0.17 0.00 par:pas; +hydratée hydrater VER f s 0.58 0.00 0.07 0.00 par:pas; +hydraulicien hydraulicien NOM m s 0.01 0.00 0.01 0.00 +hydraulique hydraulique ADJ s 1.41 1.15 1.15 1.01 +hydrauliques hydraulique ADJ p 1.41 1.15 0.26 0.14 +hydravion hydravion NOM m s 0.47 0.61 0.43 0.27 +hydravions hydravion NOM m p 0.47 0.61 0.04 0.34 +hydre hydre NOM f s 0.17 0.34 0.17 0.34 +hydrique hydrique ADJ s 0.07 0.00 0.07 0.00 +hydro_électrique hydro_électrique ADJ s 0.00 0.07 0.00 0.07 +hydro hydro ADV 0.17 0.07 0.17 0.07 +hydrocarbure hydrocarbure NOM m s 0.50 0.34 0.11 0.07 +hydrocarbures hydrocarbure NOM m p 0.50 0.34 0.39 0.27 +hydrochlorique hydrochlorique ADJ m s 0.09 0.00 0.09 0.00 +hydrocortisone hydrocortisone NOM f s 0.03 0.00 0.03 0.00 +hydrocèle hydrocèle NOM f s 0.00 0.07 0.00 0.07 +hydrocéphale hydrocéphale ADJ s 0.22 0.14 0.12 0.07 +hydrocéphales hydrocéphale ADJ m p 0.22 0.14 0.10 0.07 +hydrocéphalie hydrocéphalie NOM f s 0.01 0.00 0.01 0.00 +hydrocution hydrocution NOM f s 0.00 0.07 0.00 0.07 +hydrodynamique hydrodynamique ADJ f s 0.01 0.00 0.01 0.00 +hydrofoil hydrofoil NOM m s 0.01 0.00 0.01 0.00 +hydroglisseur hydroglisseur NOM m s 0.06 0.00 0.06 0.00 +hydrographe hydrographe ADJ m s 0.14 0.00 0.14 0.00 +hydrographie hydrographie NOM f s 0.01 0.07 0.01 0.07 +hydrographique hydrographique ADJ m s 0.27 0.14 0.27 0.07 +hydrographiques hydrographique ADJ p 0.27 0.14 0.00 0.07 +hydrogène hydrogène NOM m s 1.76 0.88 1.75 0.88 +hydrogènes hydrogène NOM m p 1.76 0.88 0.01 0.00 +hydrogénisation hydrogénisation NOM f s 0.00 0.14 0.00 0.14 +hydrogéné hydrogéné ADJ m s 0.04 0.00 0.02 0.00 +hydrogénée hydrogéné ADJ f s 0.04 0.00 0.02 0.00 +hydrolase hydrolase NOM f s 0.10 0.00 0.10 0.00 +hydrologie hydrologie NOM f s 0.02 0.00 0.02 0.00 +hydrolyse hydrolyse NOM f s 0.03 0.00 0.03 0.00 +hydromel hydromel NOM m s 0.52 0.20 0.52 0.20 +hydromètres hydromètre NOM f p 0.00 0.07 0.00 0.07 +hydrophile hydrophile ADJ m s 0.10 1.01 0.10 0.88 +hydrophiles hydrophile ADJ f p 0.10 1.01 0.00 0.14 +hydrophobe hydrophobe ADJ f s 0.01 0.00 0.01 0.00 +hydrophobie hydrophobie NOM f s 0.04 0.07 0.04 0.07 +hydrophone hydrophone NOM m s 0.25 0.00 0.25 0.00 +hydrophyte hydrophyte NOM f s 0.01 0.00 0.01 0.00 +hydropique hydropique ADJ f s 0.14 0.14 0.14 0.14 +hydropisie hydropisie NOM f s 0.01 0.27 0.01 0.27 +hydropneumatique hydropneumatique ADJ m s 0.01 0.14 0.01 0.14 +hydroponique hydroponique ADJ s 0.28 0.00 0.20 0.00 +hydroponiques hydroponique ADJ p 0.28 0.00 0.09 0.00 +hydroptère hydroptère NOM m s 0.02 0.00 0.02 0.00 +hydroquinone hydroquinone NOM f s 0.00 0.14 0.00 0.14 +hydrostatique hydrostatique ADJ s 0.04 0.00 0.04 0.00 +hydrothérapie hydrothérapie NOM f s 0.08 0.14 0.08 0.14 +hydroélectrique hydroélectrique ADJ f s 0.36 0.14 0.36 0.14 +hydrox hydrox NOM m 0.01 0.00 0.01 0.00 +hydroxyde hydroxyde NOM m s 0.13 0.00 0.13 0.00 +hygiaphone hygiaphone NOM m s 0.00 0.20 0.00 0.20 +hygiène hygiène NOM f s 4.42 6.35 4.40 6.28 +hygiènes hygiène NOM f p 4.42 6.35 0.01 0.07 +hygiénique hygiénique ADJ s 1.74 4.12 1.48 2.84 +hygiéniquement hygiéniquement ADV 0.01 0.07 0.01 0.07 +hygiéniques hygiénique ADJ p 1.74 4.12 0.26 1.28 +hygiéniste hygiéniste NOM s 0.20 0.14 0.19 0.00 +hygiénistes hygiéniste NOM p 0.20 0.14 0.01 0.14 +hygroma hygroma NOM m s 0.03 0.00 0.03 0.00 +hygromètre hygromètre NOM m s 0.01 0.14 0.00 0.07 +hygromètres hygromètre NOM m p 0.01 0.14 0.01 0.07 +hygrométrie hygrométrie NOM f s 0.14 0.07 0.14 0.07 +hygrométrique hygrométrique ADJ s 0.00 0.14 0.00 0.07 +hygrométriques hygrométrique ADJ f p 0.00 0.14 0.00 0.07 +hylémorphique hylémorphique ADJ f s 0.00 0.07 0.00 0.07 +hymen hymen NOM m s 2.05 0.34 2.05 0.34 +hymne hymne NOM s 6.25 8.72 5.37 6.69 +hymnes hymne NOM p 6.25 8.72 0.88 2.03 +hyménoptère hyménoptère NOM m s 0.02 0.27 0.00 0.07 +hyménoptères hyménoptère NOM m p 0.02 0.27 0.02 0.20 +hyménée hyménée NOM m s 0.34 0.07 0.34 0.00 +hyménées hyménée NOM m p 0.34 0.07 0.00 0.07 +hyoïde hyoïde ADJ f s 0.16 0.00 0.16 0.00 +hypallage hypallage NOM f s 0.00 0.07 0.00 0.07 +hyper hyper ADV 6.66 0.95 6.66 0.95 +hyperacidité hyperacidité NOM f s 0.01 0.00 0.01 0.00 +hyperactif hyperactif ADJ m s 0.20 0.00 0.13 0.00 +hyperactive hyperactif ADJ f s 0.20 0.00 0.08 0.00 +hyperactivité hyperactivité NOM f s 0.17 0.00 0.17 0.00 +hyperbare hyperbare ADJ m s 0.07 0.00 0.07 0.00 +hyperbole hyperbole NOM f s 0.12 0.34 0.09 0.20 +hyperboles hyperbole NOM f p 0.12 0.34 0.04 0.14 +hyperbolique hyperbolique ADJ s 0.01 0.20 0.01 0.20 +hyperboliquement hyperboliquement ADV 0.00 0.07 0.00 0.07 +hyperborée hyperborée NOM f s 0.00 0.07 0.00 0.07 +hyperboréen hyperboréen ADJ m s 0.00 0.54 0.00 0.14 +hyperboréenne hyperboréen ADJ f s 0.00 0.54 0.00 0.27 +hyperboréens hyperboréen ADJ m p 0.00 0.54 0.00 0.14 +hypercalcémie hypercalcémie NOM f s 0.07 0.00 0.07 0.00 +hypercholestérolémie hypercholestérolémie NOM f s 0.03 0.00 0.03 0.00 +hypercoagulabilité hypercoagulabilité NOM f s 0.03 0.00 0.03 0.00 +hyperespace hyperespace NOM m s 1.89 0.00 1.89 0.00 +hyperesthésie hyperesthésie NOM f s 0.00 0.07 0.00 0.07 +hyperglycémies hyperglycémie NOM f p 0.00 0.07 0.00 0.07 +hyperkaliémie hyperkaliémie NOM f s 0.03 0.00 0.03 0.00 +hyperlipidémie hyperlipidémie NOM f s 0.00 0.07 0.00 0.07 +hyperlipémie hyperlipémie NOM f s 0.01 0.00 0.01 0.00 +hypermarché hypermarché NOM m s 0.15 0.27 0.12 0.14 +hypermarchés hypermarché NOM m p 0.15 0.27 0.03 0.14 +hypermnésie hypermnésie NOM f s 0.00 0.07 0.00 0.07 +hypernerveuse hypernerveux ADJ f s 0.00 0.27 0.00 0.07 +hypernerveux hypernerveux ADJ m 0.00 0.27 0.00 0.20 +hyperplan hyperplan NOM m s 0.01 0.00 0.01 0.00 +hyperplasie hyperplasie NOM f s 0.04 0.00 0.04 0.00 +hyperréactivité hyperréactivité NOM f s 0.01 0.00 0.01 0.00 +hyperréalisme hyperréalisme NOM m s 0.00 0.07 0.00 0.07 +hyperréaliste hyperréaliste ADJ s 0.00 0.14 0.00 0.07 +hyperréaliste hyperréaliste NOM s 0.00 0.14 0.00 0.07 +hyperréalistes hyperréaliste ADJ p 0.00 0.14 0.00 0.07 +hyperréalistes hyperréaliste NOM p 0.00 0.14 0.00 0.07 +hypersensibilité hypersensibilité NOM f s 0.22 0.14 0.22 0.14 +hypersensible hypersensible ADJ s 0.31 0.34 0.27 0.07 +hypersensibles hypersensible ADJ m p 0.31 0.34 0.04 0.27 +hypersomnie hypersomnie NOM f s 0.03 0.00 0.03 0.00 +hypersonique hypersonique ADJ m s 0.01 0.00 0.01 0.00 +hypersustentateur hypersustentateur NOM m s 0.06 0.00 0.06 0.00 +hypertendu hypertendu ADJ m s 0.20 0.07 0.04 0.07 +hypertendue hypertendu ADJ f s 0.20 0.07 0.16 0.00 +hypertendus hypertendu NOM m p 0.01 0.00 0.01 0.00 +hypertension hypertension NOM f s 0.71 0.20 0.70 0.07 +hypertensions hypertension NOM f p 0.71 0.20 0.01 0.14 +hyperthermie hyperthermie NOM f s 0.15 0.00 0.15 0.00 +hyperthyroïdien hyperthyroïdien ADJ m s 0.00 0.07 0.00 0.07 +hypertonique hypertonique ADJ s 0.06 0.00 0.06 0.00 +hypertrichose hypertrichose NOM f s 0.03 0.00 0.03 0.00 +hypertrophie hypertrophie NOM f s 0.56 0.27 0.56 0.27 +hypertrophique hypertrophique ADJ f s 0.07 0.00 0.07 0.00 +hypertrophié hypertrophié ADJ m s 0.20 0.27 0.17 0.07 +hypertrophiée hypertrophier VER f s 0.16 0.20 0.01 0.07 par:pas; +hypertrophiés hypertrophié ADJ m p 0.20 0.27 0.03 0.14 +hyperémotive hyperémotif ADJ f s 0.01 0.00 0.01 0.00 +hyperémotivité hyperémotivité NOM f s 0.00 0.07 0.00 0.07 +hyperventilation hyperventilation NOM f s 0.23 0.00 0.23 0.00 +hypholomes hypholome NOM m p 0.00 0.07 0.00 0.07 +hypnagogique hypnagogique ADJ s 0.04 0.07 0.04 0.00 +hypnagogiques hypnagogique ADJ f p 0.04 0.07 0.00 0.07 +hypnogène hypnogène ADJ s 0.00 0.54 0.00 0.54 +hypnogènes hypnogène NOM m p 0.00 0.20 0.00 0.07 +hypnose hypnose NOM f s 3.29 1.28 3.29 1.22 +hypnoses hypnose NOM f p 3.29 1.28 0.00 0.07 +hypnotique hypnotique ADJ s 1.16 0.74 0.99 0.68 +hypnotiquement hypnotiquement ADV 0.00 0.14 0.00 0.14 +hypnotiques hypnotique ADJ p 1.16 0.74 0.17 0.07 +hypnotisa hypnotiser VER 3.73 4.19 0.00 0.07 ind:pas:3s; +hypnotisaient hypnotiser VER 3.73 4.19 0.14 0.07 ind:imp:3p; +hypnotisais hypnotiser VER 3.73 4.19 0.00 0.07 ind:imp:1s; +hypnotisait hypnotiser VER 3.73 4.19 0.03 0.14 ind:imp:3s; +hypnotisant hypnotiser VER 3.73 4.19 0.09 0.41 par:pre; +hypnotise hypnotiser VER 3.73 4.19 0.47 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +hypnotisent hypnotiser VER 3.73 4.19 0.04 0.14 ind:pre:3p; +hypnotiser hypnotiser VER 3.73 4.19 1.05 0.27 inf;; +hypnotiseur hypnotiseur NOM m s 0.63 0.27 0.60 0.07 +hypnotiseurs hypnotiseur NOM m p 0.63 0.27 0.02 0.20 +hypnotiseuse hypnotiseur NOM f s 0.63 0.27 0.01 0.00 +hypnotisme hypnotisme NOM m s 0.30 0.27 0.30 0.27 +hypnotisé hypnotiser VER m s 3.73 4.19 0.90 1.22 par:pas; +hypnotisée hypnotiser VER f s 3.73 4.19 0.71 0.47 par:pas; +hypnotisées hypnotiser VER f p 3.73 4.19 0.01 0.27 par:pas; +hypnotisés hypnotiser VER m p 3.73 4.19 0.31 0.54 par:pas; +hypo hypo ADV 0.19 0.07 0.19 0.07 +hypoallergénique hypoallergénique ADJ f s 0.09 0.07 0.06 0.07 +hypoallergéniques hypoallergénique ADJ m p 0.09 0.07 0.02 0.00 +hypocalcémie hypocalcémie NOM f s 0.03 0.00 0.03 0.00 +hypocapnie hypocapnie NOM f s 0.01 0.00 0.01 0.00 +hypocauste hypocauste NOM m s 0.01 0.07 0.01 0.00 +hypocaustes hypocauste NOM m p 0.01 0.07 0.00 0.07 +hypocentre hypocentre NOM m s 0.01 0.00 0.01 0.00 +hypochlorite hypochlorite NOM m s 0.01 0.00 0.01 0.00 +hypochondriaque hypochondriaque ADJ s 0.12 0.00 0.12 0.00 +hypochondriaques hypochondriaque NOM p 0.05 0.00 0.03 0.00 +hypocondre hypocondre NOM m s 0.00 0.14 0.00 0.14 +hypocondriaque hypocondriaque ADJ m s 0.17 0.34 0.17 0.20 +hypocondriaques hypocondriaque NOM p 0.17 0.14 0.07 0.07 +hypocondrie hypocondrie NOM f s 0.04 0.27 0.04 0.27 +hypocras hypocras NOM m 0.00 0.20 0.00 0.20 +hypocrisie hypocrisie NOM f s 4.41 5.61 4.06 5.47 +hypocrisies hypocrisie NOM f p 4.41 5.61 0.35 0.14 +hypocrite hypocrite NOM s 5.41 2.91 3.66 1.96 +hypocritement hypocritement ADV 0.14 1.69 0.14 1.69 +hypocrites hypocrite NOM p 5.41 2.91 1.75 0.95 +hypoderme hypoderme NOM m s 0.00 0.07 0.00 0.07 +hypodermique hypodermique ADJ s 0.40 0.14 0.36 0.14 +hypodermiques hypodermique ADJ f p 0.40 0.14 0.04 0.00 +hypoglycémie hypoglycémie NOM f s 0.40 0.20 0.40 0.20 +hypoglycémique hypoglycémique ADJ m s 0.14 0.20 0.13 0.14 +hypoglycémiques hypoglycémique ADJ f p 0.14 0.20 0.01 0.07 +hypogonadisme hypogonadisme NOM m s 0.03 0.00 0.03 0.00 +hypogée hypogée NOM m s 0.00 0.81 0.00 0.47 +hypogées hypogée NOM m p 0.00 0.81 0.00 0.34 +hypokhâgne hypokhâgne NOM f s 0.00 1.28 0.00 1.22 +hypokhâgnes hypokhâgne NOM f p 0.00 1.28 0.00 0.07 +hypomaniaques hypomaniaque NOM p 0.01 0.00 0.01 0.00 +hyponatrémie hyponatrémie NOM f s 0.05 0.00 0.05 0.00 +hyponomeutes hyponomeute NOM m p 0.00 0.07 0.00 0.07 +hypophysaire hypophysaire ADJ s 0.01 0.07 0.01 0.07 +hypophyse hypophyse NOM f s 0.07 0.14 0.07 0.07 +hypophyses hypophyse NOM f p 0.07 0.14 0.00 0.07 +hypoplasie hypoplasie NOM f s 0.01 0.00 0.01 0.00 +hypospadias hypospadias NOM m 0.01 0.00 0.01 0.00 +hypostase hypostase NOM f s 0.01 0.07 0.01 0.00 +hypostases hypostase NOM f p 0.01 0.07 0.00 0.07 +hyposulfite hyposulfite NOM m s 0.00 0.20 0.00 0.20 +hypotaupe hypotaupe NOM f s 0.00 0.07 0.00 0.07 +hypotendu hypotendu NOM m s 0.03 0.00 0.03 0.00 +hypotendue hypotendu ADJ f s 0.03 0.00 0.01 0.00 +hypotensif hypotensif ADJ m s 0.03 0.00 0.01 0.00 +hypotension hypotension NOM f s 0.28 0.00 0.28 0.00 +hypotensive hypotensif ADJ f s 0.03 0.00 0.01 0.00 +hypothalamus hypothalamus NOM m 0.29 0.20 0.29 0.20 +hypothermie hypothermie NOM f s 0.80 0.00 0.80 0.00 +hypothermique hypothermique ADJ m s 0.04 0.00 0.04 0.00 +hypothèque hypothèque NOM f s 2.78 1.96 2.48 0.88 +hypothèquent hypothéquer VER 1.43 1.42 0.00 0.07 ind:pre:3p; +hypothèques hypothèque NOM f p 2.78 1.96 0.29 1.08 +hypothèse hypothèse NOM f s 8.97 16.82 7.47 12.91 +hypothèses hypothèse NOM f p 8.97 16.82 1.50 3.92 +hypothécaire hypothécaire ADJ s 0.09 0.07 0.05 0.00 +hypothécaires hypothécaire ADJ m p 0.09 0.07 0.04 0.07 +hypothéquait hypothéquer VER 1.43 1.42 0.01 0.14 ind:imp:3s; +hypothéquant hypothéquer VER 1.43 1.42 0.01 0.07 par:pre; +hypothéquer hypothéquer VER 1.43 1.42 0.57 0.34 inf; +hypothéqueraient hypothéquer VER 1.43 1.42 0.00 0.07 cnd:pre:3p; +hypothéquez hypothéquer VER 1.43 1.42 0.10 0.07 imp:pre:2p;ind:pre:2p; +hypothéquions hypothéquer VER 1.43 1.42 0.00 0.07 ind:imp:1p; +hypothéqué hypothéquer VER m s 1.43 1.42 0.23 0.14 par:pas; +hypothéquée hypothéquer VER f s 1.43 1.42 0.04 0.41 par:pas; +hypothétique hypothétique ADJ s 0.71 2.23 0.65 1.62 +hypothétiquement hypothétiquement ADV 0.23 0.07 0.23 0.07 +hypothétiques hypothétique ADJ p 0.71 2.23 0.07 0.61 +hypothyroïdie hypothyroïdie NOM f s 0.04 0.00 0.04 0.00 +hypotonie hypotonie NOM f s 0.01 0.00 0.01 0.00 +hypoténuse hypoténuse NOM f s 0.09 0.07 0.09 0.07 +hypoxie hypoxie NOM f s 0.13 0.00 0.13 0.00 +hypoxique hypoxique ADJ s 0.16 0.00 0.16 0.00 +hysope hysope NOM f s 0.01 0.14 0.01 0.07 +hysopes hysope NOM f p 0.01 0.14 0.00 0.07 +hystérectomie hystérectomie NOM f s 0.26 0.07 0.26 0.07 +hystérie hystérie NOM f s 3.48 3.38 3.48 3.31 +hystéries hystérie NOM f p 3.48 3.38 0.00 0.07 +hystérique hystérique ADJ s 6.61 5.20 5.60 3.45 +hystériquement hystériquement ADV 0.03 0.27 0.03 0.27 +hystériques hystérique ADJ p 6.61 5.20 1.01 1.76 +hystéro hystéro ADJ f s 0.02 0.34 0.02 0.34 +hyène hyène NOM f s 2.37 2.43 1.64 1.76 +hyènes hyène NOM f p 2.37 2.43 0.73 0.68 +i i NOM s 71.21 31.15 71.21 31.15 +i.e. i.e. NOM m s 0.02 0.00 0.02 0.00 +iambe iambe NOM m s 0.02 0.00 0.02 0.00 +iambique iambique ADJ m s 0.15 0.00 0.08 0.00 +iambiques iambique ADJ m p 0.15 0.00 0.07 0.00 +ibex ibex NOM m 0.11 0.00 0.11 0.00 +ibis ibis NOM m 0.00 0.81 0.00 0.81 +ibm ibm NOM m s 0.00 0.07 0.00 0.07 +ibo ibo ADJ f s 0.02 0.07 0.02 0.07 +iboga iboga NOM m s 0.04 0.00 0.04 0.00 +ibère ibère NOM s 0.01 0.00 0.01 0.00 +ibères ibère ADJ m p 0.00 0.14 0.00 0.07 +ibérique ibérique ADJ s 0.11 0.61 0.11 0.47 +ibériques ibérique ADJ p 0.11 0.61 0.00 0.14 +icône icône NOM f s 1.81 4.73 1.25 2.16 +icônes icône NOM f p 1.81 4.73 0.55 2.57 +icarienne icarienne ADJ f s 0.04 0.00 0.04 0.00 +ice_cream ice_cream NOM m s 0.02 0.34 0.00 0.27 +ice_cream ice_cream NOM m p 0.02 0.34 0.00 0.07 +ice_cream ice_cream NOM m s 0.02 0.34 0.02 0.00 +iceberg iceberg NOM m s 1.88 1.42 1.50 1.08 +icebergs iceberg NOM m p 1.88 1.42 0.39 0.34 +icelle icelle PRO:ind f s 0.00 0.34 0.00 0.34 +icelles icelles PRO:ind f p 0.00 0.20 0.00 0.20 +icelui icelui PRO:ind m s 0.00 0.07 0.00 0.07 +ichtyologie ichtyologie NOM f s 0.15 0.00 0.15 0.00 +ichtyologiste ichtyologiste NOM s 0.02 0.00 0.02 0.00 +ici_bas ici_bas ADV 3.58 2.97 3.58 2.97 +ici ici ADV 2411.21 483.58 2411.21 483.58 +icoglan icoglan NOM m s 0.00 0.14 0.00 0.07 +icoglans icoglan NOM m p 0.00 0.14 0.00 0.07 +iconoclaste iconoclaste NOM s 0.11 0.47 0.10 0.27 +iconoclastes iconoclaste ADJ f p 0.02 0.41 0.02 0.07 +iconographe iconographe NOM s 0.00 0.07 0.00 0.07 +iconographie iconographie NOM f s 0.04 0.61 0.03 0.54 +iconographies iconographie NOM f p 0.04 0.61 0.01 0.07 +iconographique iconographique ADJ f s 0.00 0.07 0.00 0.07 +iconostase iconostase NOM f s 0.00 0.20 0.00 0.20 +icosaèdre icosaèdre NOM m s 0.03 0.00 0.03 0.00 +ictère ictère NOM m s 0.16 0.07 0.16 0.07 +ictérique ictérique ADJ s 0.01 0.00 0.01 0.00 +ictus ictus NOM m 0.00 0.07 0.00 0.07 +ide ide NOM m s 0.47 0.07 0.47 0.07 +idem idem ADV 1.86 2.64 1.86 2.64 +identifia identifier VER 38.52 18.92 0.26 0.68 ind:pas:3s; +identifiable identifiable ADJ s 0.67 1.49 0.55 0.47 +identifiables identifiable ADJ p 0.67 1.49 0.12 1.01 +identifiai identifier VER 38.52 18.92 0.00 0.41 ind:pas:1s; +identifiaient identifier VER 38.52 18.92 0.03 0.14 ind:imp:3p; +identifiais identifier VER 38.52 18.92 0.05 0.95 ind:imp:1s;ind:imp:2s; +identifiait identifier VER 38.52 18.92 0.31 1.55 ind:imp:3s; +identifiant identifier VER 38.52 18.92 0.22 0.34 par:pre; +identifiassent identifier VER 38.52 18.92 0.00 0.07 sub:imp:3p; +identificateur identificateur NOM m s 0.07 0.00 0.07 0.00 +identification identification NOM f s 7.14 1.82 6.88 1.76 +identifications identification NOM f p 7.14 1.82 0.26 0.07 +identifie identifier VER 38.52 18.92 2.39 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +identifient identifier VER 38.52 18.92 0.29 0.27 ind:pre:3p; +identifier identifier VER 38.52 18.92 16.52 8.45 inf; +identifiera identifier VER 38.52 18.92 0.66 0.07 ind:fut:3s; +identifierai identifier VER 38.52 18.92 0.02 0.00 ind:fut:1s; +identifierais identifier VER 38.52 18.92 0.01 0.20 cnd:pre:1s; +identifierait identifier VER 38.52 18.92 0.06 0.14 cnd:pre:3s; +identifierez identifier VER 38.52 18.92 0.19 0.00 ind:fut:2p; +identifieront identifier VER 38.52 18.92 0.03 0.00 ind:fut:3p; +identifiez identifier VER 38.52 18.92 2.04 0.00 imp:pre:2p;ind:pre:2p; +identifions identifier VER 38.52 18.92 0.24 0.00 imp:pre:1p;ind:pre:1p; +identifiât identifier VER 38.52 18.92 0.00 0.07 sub:imp:3s; +identifièrent identifier VER 38.52 18.92 0.00 0.07 ind:pas:3p; +identifié identifier VER m s 38.52 18.92 10.78 2.50 par:pas; +identifiée identifier VER f s 38.52 18.92 2.02 0.68 par:pas; +identifiées identifier VER f p 38.52 18.92 0.40 0.14 par:pas; +identifiés identifier VER m p 38.52 18.92 2.00 0.47 par:pas; +identique identique ADJ s 7.90 15.41 4.02 8.04 +identiquement identiquement ADV 0.00 0.54 0.00 0.54 +identiques identique ADJ p 7.90 15.41 3.88 7.36 +identitaire identitaire ADJ s 0.05 0.41 0.05 0.34 +identitaires identitaire ADJ f p 0.05 0.41 0.00 0.07 +identitarisme identitarisme NOM m s 0.00 0.20 0.00 0.20 +identité identité NOM f s 34.78 24.19 32.83 22.64 +identités identité NOM f p 34.78 24.19 1.96 1.55 +ides ides NOM f p 0.29 0.54 0.29 0.54 +idiolectes idiolecte NOM m p 0.00 0.07 0.00 0.07 +idiomatique idiomatique ADJ s 0.02 0.07 0.01 0.00 +idiomatiques idiomatique ADJ f p 0.02 0.07 0.01 0.07 +idiome idiome NOM m s 0.06 1.35 0.06 0.88 +idiomes idiome NOM m p 0.06 1.35 0.00 0.47 +idiopathique idiopathique ADJ s 0.06 0.00 0.06 0.00 +idiosyncrasie idiosyncrasie NOM f s 0.06 0.20 0.04 0.07 +idiosyncrasies idiosyncrasie NOM f p 0.06 0.20 0.02 0.14 +idiosyncrasique idiosyncrasique ADJ m s 0.01 0.00 0.01 0.00 +idiot idiot NOM m s 90.57 22.03 55.73 12.64 +idiote idiot NOM f s 90.57 22.03 18.40 5.07 +idiotement idiotement ADV 0.00 0.61 0.00 0.61 +idiotes idiot ADJ f p 74.06 33.24 3.62 2.16 +idiotie idiotie NOM f s 5.27 2.97 1.81 1.96 +idioties idiotie NOM f p 5.27 2.97 3.46 1.01 +idiotisme idiotisme NOM m s 0.14 0.14 0.14 0.07 +idiotismes idiotisme NOM m p 0.14 0.14 0.00 0.07 +idiots idiot NOM m p 90.57 22.03 15.08 3.92 +idoine idoine ADJ s 0.02 0.95 0.01 0.74 +idoines idoine ADJ p 0.02 0.95 0.01 0.20 +idole idole NOM f s 5.43 10.07 4.77 6.35 +idoles idole NOM f p 5.43 10.07 0.66 3.72 +idolâtraient idolâtrer VER 1.03 1.15 0.00 0.07 ind:imp:3p; +idolâtrait idolâtrer VER 1.03 1.15 0.11 0.61 ind:imp:3s; +idolâtrant idolâtrer VER 1.03 1.15 0.14 0.07 par:pre; +idolâtre idolâtrer VER 1.03 1.15 0.17 0.07 ind:pre:1s;ind:pre:3s; +idolâtrent idolâtrer VER 1.03 1.15 0.17 0.00 ind:pre:3p; +idolâtrer idolâtrer VER 1.03 1.15 0.12 0.27 inf; +idolâtres idolâtre NOM p 0.16 0.61 0.14 0.34 +idolâtrie idolâtrie NOM f s 0.38 1.08 0.38 0.95 +idolâtries idolâtrie NOM f p 0.38 1.08 0.00 0.14 +idolâtré idolâtrer VER m s 1.03 1.15 0.05 0.00 par:pas; +idolâtrée idolâtrer VER f s 1.03 1.15 0.23 0.07 par:pas; +idéal idéal ADJ m s 21.85 16.35 15.80 7.97 +idéale idéal ADJ f s 21.85 16.35 5.32 7.03 +idéalement idéalement ADV 0.28 1.22 0.28 1.22 +idéales idéal ADJ f p 21.85 16.35 0.40 1.15 +idéalisait idéaliser VER 0.68 0.81 0.02 0.07 ind:imp:3s; +idéalisant idéaliser VER 0.68 0.81 0.02 0.07 par:pre; +idéalisation idéalisation NOM f s 0.16 0.14 0.16 0.14 +idéalise idéaliser VER 0.68 0.81 0.34 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +idéalisent idéaliser VER 0.68 0.81 0.01 0.07 ind:pre:3p; +idéaliser idéaliser VER 0.68 0.81 0.13 0.20 inf; +idéalisme idéalisme NOM m s 0.98 1.96 0.98 1.82 +idéalismes idéalisme NOM m p 0.98 1.96 0.00 0.14 +idéaliste idéaliste NOM s 1.61 1.69 1.33 1.08 +idéalistes idéaliste ADJ p 1.20 1.15 0.44 0.20 +idéalisé idéaliser VER m s 0.68 0.81 0.08 0.14 par:pas; +idéalisée idéaliser VER f s 0.68 0.81 0.07 0.20 par:pas; +idéalisées idéaliser VER f p 0.68 0.81 0.01 0.00 par:pas; +idéalisés idéaliser VER m p 0.68 0.81 0.01 0.07 par:pas; +idéals idéal ADJ m p 21.85 16.35 0.01 0.00 +idéation idéation NOM f s 0.03 0.00 0.03 0.00 +idéaux idéal NOM m p 11.22 12.23 3.22 0.74 +idée_clé idée_clé NOM f s 0.01 0.00 0.01 0.00 +idée_force idée_force NOM f s 0.01 0.20 0.01 0.07 +idée idée NOM f s 389.77 328.45 330.39 241.08 +idéel idéel ADJ m s 0.01 0.00 0.01 0.00 +idée_force idée_force NOM f p 0.01 0.20 0.00 0.14 +idées idée NOM f p 389.77 328.45 59.38 87.36 +idéogramme idéogramme NOM m s 0.39 0.74 0.17 0.00 +idéogrammes idéogramme NOM m p 0.39 0.74 0.22 0.74 +idéographie idéographie NOM f s 0.01 0.00 0.01 0.00 +idéographique idéographique ADJ m s 0.00 0.07 0.00 0.07 +idéologie idéologie NOM f s 2.59 4.05 2.07 2.97 +idéologies idéologie NOM f p 2.59 4.05 0.52 1.08 +idéologique idéologique ADJ s 1.80 2.70 1.41 1.89 +idéologiquement idéologiquement ADV 0.10 0.27 0.10 0.27 +idéologiques idéologique ADJ p 1.80 2.70 0.39 0.81 +idéologue idéologue NOM s 0.38 0.54 0.28 0.34 +idéologues idéologue NOM p 0.38 0.54 0.10 0.20 +idylle idylle NOM f s 1.13 3.31 1.07 2.70 +idylles idylle NOM f p 1.13 3.31 0.06 0.61 +idyllique idyllique ADJ s 0.82 1.76 0.79 1.35 +idylliques idyllique ADJ p 0.82 1.76 0.03 0.41 +if if NOM m s 7.19 1.55 7.17 0.81 +ifs if NOM m p 7.19 1.55 0.02 0.74 +iftar iftar NOM m s 0.00 0.07 0.00 0.07 +igloo igloo NOM m s 1.08 0.27 0.54 0.07 +igloos igloo NOM m p 1.08 0.27 0.55 0.20 +igname igname NOM f s 0.18 0.34 0.05 0.07 +ignames igname NOM f p 0.18 0.34 0.13 0.27 +ignare ignare ADJ s 0.75 1.42 0.55 0.88 +ignares ignare NOM p 0.78 0.61 0.30 0.34 +ignifuge ignifuge ADJ f s 0.00 0.07 0.00 0.07 +ignifugeant ignifuger VER 0.17 0.07 0.01 0.00 par:pre; +ignifuger ignifuger VER 0.17 0.07 0.00 0.07 inf; +ignifugé ignifugé ADJ m s 0.07 0.20 0.04 0.07 +ignifugée ignifugé ADJ f s 0.07 0.20 0.02 0.07 +ignifugées ignifuger VER f p 0.17 0.07 0.14 0.00 par:pas; +ignifugés ignifugé ADJ m p 0.07 0.20 0.01 0.07 +ignition ignition NOM f s 0.05 0.34 0.05 0.34 +ignoble ignoble ADJ s 8.11 12.30 6.95 9.19 +ignoblement ignoblement ADV 0.16 0.88 0.16 0.88 +ignobles ignoble ADJ p 8.11 12.30 1.16 3.11 +ignominie ignominie NOM f s 0.88 3.72 0.76 3.18 +ignominies ignominie NOM f p 0.88 3.72 0.13 0.54 +ignominieuse ignominieux ADJ f s 0.39 0.88 0.12 0.54 +ignominieusement ignominieusement ADV 0.00 0.47 0.00 0.47 +ignominieuses ignominieux ADJ f p 0.39 0.88 0.01 0.07 +ignominieux ignominieux ADJ m s 0.39 0.88 0.26 0.27 +ignora ignorer VER 156.55 108.45 0.26 1.49 ind:pas:3s; +ignorai ignorer VER 156.55 108.45 0.02 0.14 ind:pas:1s; +ignoraient ignorer VER 156.55 108.45 1.20 4.46 ind:imp:3p; +ignorais ignorer VER 156.55 108.45 24.82 10.61 ind:imp:1s;ind:imp:2s; +ignorait ignorer VER 156.55 108.45 5.32 26.01 ind:imp:3s; +ignorance ignorance NOM f s 6.54 16.82 6.54 16.35 +ignorances ignorance NOM f p 6.54 16.82 0.00 0.47 +ignorant ignorant ADJ m s 3.90 6.22 1.79 2.50 +ignorante ignorant ADJ f s 3.90 6.22 0.61 1.55 +ignorantes ignorant ADJ f p 3.90 6.22 0.15 0.41 +ignorantins ignorantin ADJ m p 0.00 0.14 0.00 0.14 +ignorants ignorant NOM m p 3.41 3.45 1.36 1.08 +ignorassent ignorer VER 156.55 108.45 0.00 0.07 sub:imp:3p; +ignore ignorer VER 156.55 108.45 76.78 22.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ignorent ignorer VER 156.55 108.45 5.09 5.07 ind:pre:3p; +ignorer ignorer VER 156.55 108.45 13.04 16.89 inf; +ignorera ignorer VER 156.55 108.45 0.31 0.27 ind:fut:3s; +ignorerai ignorer VER 156.55 108.45 0.13 0.41 ind:fut:1s; +ignoreraient ignorer VER 156.55 108.45 0.01 0.00 cnd:pre:3p; +ignorerais ignorer VER 156.55 108.45 0.15 0.00 cnd:pre:1s;cnd:pre:2s; +ignorerait ignorer VER 156.55 108.45 0.04 0.27 cnd:pre:3s; +ignoreras ignorer VER 156.55 108.45 0.04 0.00 ind:fut:2s; +ignoreriez ignorer VER 156.55 108.45 0.09 0.00 cnd:pre:2p; +ignorerons ignorer VER 156.55 108.45 0.02 0.00 ind:fut:1p; +ignoreront ignorer VER 156.55 108.45 0.10 0.00 ind:fut:3p; +ignores ignorer VER 156.55 108.45 5.89 1.42 ind:pre:2s;sub:pre:2s; +ignorez ignorer VER 156.55 108.45 9.84 2.50 imp:pre:2p;ind:pre:2p; +ignoriez ignorer VER 156.55 108.45 1.84 0.61 ind:imp:2p;sub:pre:2p; +ignorions ignorer VER 156.55 108.45 0.73 1.49 ind:imp:1p; +ignorons ignorer VER 156.55 108.45 4.50 1.28 imp:pre:1p;ind:pre:1p; +ignorât ignorer VER 156.55 108.45 0.00 0.54 sub:imp:3s; +ignorèrent ignorer VER 156.55 108.45 0.00 0.20 ind:pas:3p; +ignoré ignorer VER m s 156.55 108.45 3.36 3.58 par:pas; +ignorée ignorer VER f s 156.55 108.45 0.70 1.28 par:pas; +ignorées ignorer VER f p 156.55 108.45 0.14 0.34 par:pas; +ignorés ignorer VER m p 156.55 108.45 0.41 0.74 par:pas; +igné igné ADJ m s 0.02 0.20 0.00 0.20 +ignée igné ADJ f s 0.02 0.20 0.02 0.00 +iguane iguane NOM m s 0.69 0.74 0.63 0.20 +iguanes iguane NOM m p 0.69 0.74 0.06 0.54 +iguanodon iguanodon NOM m s 0.00 0.14 0.00 0.07 +iguanodons iguanodon NOM m p 0.00 0.14 0.00 0.07 +igue igue NOM f s 0.01 0.07 0.01 0.00 +igues igue NOM f p 0.01 0.07 0.00 0.07 +ikebana ikebana NOM m s 0.02 0.07 0.02 0.07 +il il PRO:per m s 13222.93 15832.09 13222.93 15832.09 +iles ile NOM m p 1.25 0.20 1.25 0.20 +iliaque iliaque ADJ f s 0.14 0.20 0.14 0.07 +iliaques iliaque ADJ f p 0.14 0.20 0.01 0.14 +ilium ilium NOM m s 0.01 0.00 0.01 0.00 +illettrisme illettrisme NOM m s 0.05 0.07 0.05 0.07 +illettré illettré ADJ m s 1.54 1.01 1.04 0.41 +illettrée illettré ADJ f s 1.54 1.01 0.33 0.47 +illettrés illettré NOM m p 0.62 0.68 0.20 0.27 +illicite illicite ADJ s 1.07 1.42 0.44 0.74 +illicitement illicitement ADV 0.01 0.00 0.01 0.00 +illicites illicite ADJ p 1.07 1.42 0.63 0.68 +illico illico ADV 2.19 7.16 2.19 7.16 +illimité illimité ADJ m s 2.56 3.92 1.52 1.49 +illimitée illimité ADJ f s 2.56 3.92 0.60 1.69 +illimitées illimité ADJ f p 2.56 3.92 0.26 0.54 +illimités illimité ADJ m p 2.56 3.92 0.18 0.20 +illisible illisible ADJ s 0.83 6.76 0.68 5.68 +illisibles illisible ADJ p 0.83 6.76 0.14 1.08 +illogique illogique ADJ s 0.46 0.88 0.39 0.81 +illogiquement illogiquement ADV 0.00 0.07 0.00 0.07 +illogiques illogique ADJ p 0.46 0.88 0.07 0.07 +illogisme illogisme NOM m s 0.01 0.47 0.01 0.34 +illogismes illogisme NOM m p 0.01 0.47 0.00 0.14 +illégal illégal ADJ m s 19.88 1.76 11.93 0.88 +illégale illégal ADJ f s 19.88 1.76 4.03 0.47 +illégalement illégalement ADV 1.87 0.20 1.87 0.20 +illégales illégal ADJ f p 19.88 1.76 2.28 0.41 +illégalistes illégaliste NOM p 0.00 0.07 0.00 0.07 +illégalité illégalité NOM f s 0.55 0.81 0.55 0.81 +illégaux illégal ADJ m p 19.88 1.76 1.65 0.00 +illégitime illégitime ADJ s 1.52 0.95 1.18 0.61 +illégitimement illégitimement ADV 0.02 0.00 0.02 0.00 +illégitimes illégitime ADJ p 1.52 0.95 0.34 0.34 +illégitimité illégitimité NOM f s 0.04 0.20 0.04 0.20 +illumina illuminer VER 6.43 20.00 0.14 2.57 ind:pas:3s; +illuminaient illuminer VER 6.43 20.00 0.21 1.35 ind:imp:3p; +illuminait illuminer VER 6.43 20.00 0.27 3.11 ind:imp:3s; +illuminant illuminer VER 6.43 20.00 0.20 1.01 par:pre; +illuminateurs illuminateur NOM m p 0.00 0.07 0.00 0.07 +illumination illumination NOM f s 1.89 4.19 1.63 3.11 +illuminations illumination NOM f p 1.89 4.19 0.26 1.08 +illumine illuminer VER 6.43 20.00 2.10 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +illuminent illuminer VER 6.43 20.00 0.36 0.54 ind:pre:3p; +illuminer illuminer VER 6.43 20.00 1.12 1.08 inf; +illuminera illuminer VER 6.43 20.00 0.17 0.07 ind:fut:3s; +illuminerai illuminer VER 6.43 20.00 0.02 0.00 ind:fut:1s; +illuminerait illuminer VER 6.43 20.00 0.00 0.20 cnd:pre:3s; +illumineront illuminer VER 6.43 20.00 0.01 0.07 ind:fut:3p; +illuminez illuminer VER 6.43 20.00 0.17 0.00 imp:pre:2p; +illuministes illuministe ADJ f p 0.00 0.07 0.00 0.07 +illuminèrent illuminer VER 6.43 20.00 0.00 0.47 ind:pas:3p; +illuminé illuminer VER m s 6.43 20.00 1.05 2.91 par:pas; +illuminée illuminer VER f s 6.43 20.00 0.56 2.03 par:pas; +illuminées illuminé ADJ f p 0.60 7.57 0.01 1.08 +illuminés illuminé NOM m p 0.80 2.50 0.16 0.81 +illusion illusion NOM f s 19.14 47.36 11.19 30.27 +illusionnait illusionner VER 0.25 1.01 0.00 0.20 ind:imp:3s; +illusionne illusionner VER 0.25 1.01 0.05 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +illusionnent illusionner VER 0.25 1.01 0.00 0.07 ind:pre:3p; +illusionner illusionner VER 0.25 1.01 0.10 0.41 inf; +illusionnez illusionner VER 0.25 1.01 0.10 0.07 imp:pre:2p;ind:pre:2p; +illusionnisme illusionnisme NOM m s 0.01 0.34 0.01 0.34 +illusionniste illusionniste NOM s 0.17 0.61 0.14 0.54 +illusionnistes illusionniste NOM p 0.17 0.61 0.04 0.07 +illusions illusion NOM f p 19.14 47.36 7.95 17.09 +illusoire illusoire ADJ s 0.95 5.81 0.81 4.59 +illusoirement illusoirement ADV 0.00 0.14 0.00 0.14 +illusoires illusoire ADJ p 0.95 5.81 0.15 1.22 +illustra illustrer VER 2.59 11.55 0.04 0.27 ind:pas:3s; +illustraient illustrer VER 2.59 11.55 0.01 0.61 ind:imp:3p; +illustrait illustrer VER 2.59 11.55 0.04 0.68 ind:imp:3s; +illustrant illustrer VER 2.59 11.55 0.08 1.15 par:pre; +illustrateur illustrateur NOM m s 0.15 0.20 0.10 0.20 +illustration illustration NOM f s 1.37 7.91 0.67 4.86 +illustrations illustration NOM f p 1.37 7.91 0.70 3.04 +illustratrice illustrateur NOM f s 0.15 0.20 0.05 0.00 +illustre illustre ADJ s 4.38 9.66 2.60 6.22 +illustrement illustrement ADV 0.00 0.20 0.00 0.20 +illustrent illustrer VER 2.59 11.55 0.08 0.54 ind:pre:3p; +illustrer illustrer VER 2.59 11.55 1.08 3.18 inf; +illustrera illustrer VER 2.59 11.55 0.01 0.07 ind:fut:3s; +illustrerai illustrer VER 2.59 11.55 0.01 0.00 ind:fut:1s; +illustrerait illustrer VER 2.59 11.55 0.01 0.07 cnd:pre:3s; +illustres illustre ADJ p 4.38 9.66 1.78 3.45 +illustrions illustrer VER 2.59 11.55 0.00 0.07 ind:imp:1p; +illustrissime illustrissime ADJ f s 0.00 0.54 0.00 0.27 +illustrissimes illustrissime ADJ f p 0.00 0.54 0.00 0.27 +illustré illustré ADJ m s 0.74 2.77 0.10 1.55 +illustrée illustrer VER f s 2.59 11.55 0.34 0.61 par:pas; +illustrées illustré ADJ f p 0.74 2.77 0.15 0.07 +illustrés illustré ADJ m p 0.74 2.77 0.39 0.74 +ilote ilote NOM m s 0.00 0.61 0.00 0.27 +ilotes ilote NOM m p 0.00 0.61 0.00 0.34 +ilotisme ilotisme NOM m s 0.14 0.00 0.14 0.00 +ils ils PRO:per m p 3075.07 2809.53 3075.07 2809.53 +iléaux iléal ADJ m p 0.01 0.00 0.01 0.00 +iléus iléus NOM m 0.03 0.00 0.03 0.00 +image image NOM f s 82.13 188.92 51.34 119.39 +imageant imager VER 0.73 1.76 0.01 0.00 par:pre; +imager imager VER 0.73 1.76 0.02 0.07 inf; +imagerie imagerie NOM f s 0.54 2.09 0.54 1.89 +imageries imagerie NOM f p 0.54 2.09 0.00 0.20 +images image NOM f p 82.13 188.92 30.79 69.53 +imageur imageur NOM m s 0.03 0.00 0.02 0.00 +imageurs imageur NOM m p 0.03 0.00 0.01 0.00 +imagier imagier NOM m s 0.00 1.01 0.00 0.27 +imagiers imagier NOM m p 0.00 1.01 0.00 0.74 +imagina imaginer VER 194.28 241.15 0.29 8.78 ind:pas:3s; +imaginable imaginable ADJ s 0.79 2.36 0.20 1.08 +imaginables imaginable ADJ p 0.79 2.36 0.58 1.28 +imaginai imaginer VER 194.28 241.15 0.05 3.72 ind:pas:1s; +imaginaient imaginer VER 194.28 241.15 0.27 2.91 ind:imp:3p; +imaginaire imaginaire ADJ s 5.34 19.32 3.80 12.36 +imaginairement imaginairement ADV 0.00 0.14 0.00 0.14 +imaginaires imaginaire ADJ p 5.34 19.32 1.54 6.96 +imaginais imaginer VER 194.28 241.15 11.64 19.66 ind:imp:1s;ind:imp:2s; +imaginait imaginer VER 194.28 241.15 1.63 27.84 ind:imp:3s; +imaginant imaginer VER 194.28 241.15 0.78 7.57 par:pre; +imaginatif imaginatif ADJ m s 0.75 2.09 0.44 1.08 +imaginatifs imaginatif ADJ m p 0.75 2.09 0.02 0.34 +imagination imagination NOM f s 27.64 48.58 27.14 45.81 +imaginations imagination NOM f p 27.64 48.58 0.50 2.77 +imaginative imaginatif ADJ f s 0.75 2.09 0.15 0.54 +imaginatives imaginatif ADJ f p 0.75 2.09 0.14 0.14 +imagine imaginer VER 194.28 241.15 77.33 53.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +imaginent imaginer VER 194.28 241.15 2.05 4.46 ind:pre:3p; +imaginer imaginer VER 194.28 241.15 37.09 64.26 inf; +imaginerai imaginer VER 194.28 241.15 0.08 0.14 ind:fut:1s; +imagineraient imaginer VER 194.28 241.15 0.23 0.41 cnd:pre:3p; +imaginerais imaginer VER 194.28 241.15 0.03 0.27 cnd:pre:1s; +imaginerait imaginer VER 194.28 241.15 0.13 0.81 cnd:pre:3s; +imagineras imaginer VER 194.28 241.15 0.05 0.00 ind:fut:2s; +imaginerez imaginer VER 194.28 241.15 0.20 0.00 ind:fut:2p; +imagineriez imaginer VER 194.28 241.15 0.00 0.07 cnd:pre:2p; +imaginerons imaginer VER 194.28 241.15 0.00 0.07 ind:fut:1p; +imagineront imaginer VER 194.28 241.15 0.04 0.14 ind:fut:3p; +imagines imaginer VER 194.28 241.15 19.91 9.46 ind:pre:2s;sub:pre:2s; +imaginez imaginer VER 194.28 241.15 23.35 10.54 imp:pre:2p;ind:pre:2p; +imaginiez imaginer VER 194.28 241.15 0.86 0.41 ind:imp:2p;sub:pre:2p; +imaginions imaginer VER 194.28 241.15 0.48 1.55 ind:imp:1p; +imaginâmes imaginer VER 194.28 241.15 0.00 0.14 ind:pas:1p; +imaginons imaginer VER 194.28 241.15 2.80 0.74 imp:pre:1p;ind:pre:1p; +imaginât imaginer VER 194.28 241.15 0.00 0.20 sub:imp:3s; +imaginèrent imaginer VER 194.28 241.15 0.02 0.41 ind:pas:3p; +imaginé imaginer VER m s 194.28 241.15 13.33 18.38 par:pas; +imaginée imaginer VER f s 194.28 241.15 1.34 2.77 par:pas; +imaginées imaginer VER f p 194.28 241.15 0.09 1.01 par:pas; +imaginés imaginer VER m p 194.28 241.15 0.21 0.88 par:pas; +imago imago NOM m s 0.00 0.07 0.00 0.07 +imagé imagé ADJ m s 0.10 1.01 0.08 0.34 +imagée imagé ADJ f s 0.10 1.01 0.02 0.34 +imagées imager VER f p 0.73 1.76 0.01 0.07 par:pas; +imagés imagé ADJ m p 0.10 1.01 0.00 0.20 +imam imam NOM m s 1.27 0.34 1.11 0.14 +imams imam NOM m p 1.27 0.34 0.16 0.20 +iman iman NOM m s 0.02 0.07 0.02 0.07 +imbaisable imbaisable ADJ s 0.14 0.07 0.14 0.07 +imbattable imbattable ADJ s 2.12 2.43 1.86 2.03 +imbattables imbattable ADJ m p 2.12 2.43 0.27 0.41 +imberbe imberbe ADJ s 0.27 1.35 0.21 0.95 +imberbes imberbe ADJ p 0.27 1.35 0.06 0.41 +imbiba imbiber VER 1.28 7.36 0.00 0.14 ind:pas:3s; +imbibaient imbiber VER 1.28 7.36 0.00 0.20 ind:imp:3p; +imbibais imbiber VER 1.28 7.36 0.01 0.00 ind:imp:1s; +imbibait imbiber VER 1.28 7.36 0.00 0.61 ind:imp:3s; +imbibant imbiber VER 1.28 7.36 0.01 0.41 par:pre; +imbibe imbiber VER 1.28 7.36 0.03 0.54 ind:pre:3s; +imbiber imbiber VER 1.28 7.36 0.30 0.34 inf; +imbiberai imbiber VER 1.28 7.36 0.02 0.00 ind:fut:1s; +imbiberais imbiber VER 1.28 7.36 0.00 0.07 cnd:pre:1s; +imbiberait imbiber VER 1.28 7.36 0.01 0.07 cnd:pre:3s; +imbibition imbibition NOM f s 0.00 0.07 0.00 0.07 +imbibé imbiber VER m s 1.28 7.36 0.39 2.77 par:pas; +imbibée imbiber VER f s 1.28 7.36 0.27 1.15 par:pas; +imbibées imbibé ADJ f p 0.36 0.81 0.14 0.00 +imbibés imbiber VER m p 1.28 7.36 0.21 0.88 par:pas; +imbitable imbitable ADJ m s 0.03 0.07 0.01 0.07 +imbitables imbitable ADJ m p 0.03 0.07 0.02 0.00 +imbittable imbittable ADJ s 0.00 0.07 0.00 0.07 +imbrication imbrication NOM f s 0.00 0.61 0.00 0.47 +imbrications imbrication NOM f p 0.00 0.61 0.00 0.14 +imbriquaient imbriquer VER 0.23 1.35 0.00 0.07 ind:imp:3p; +imbriquait imbriquer VER 0.23 1.35 0.00 0.14 ind:imp:3s; +imbriquant imbriquer VER 0.23 1.35 0.00 0.14 par:pre; +imbrique imbriquer VER 0.23 1.35 0.04 0.20 ind:pre:3s; +imbriquent imbriquer VER 0.23 1.35 0.03 0.27 ind:pre:3p; +imbriquer imbriquer VER 0.23 1.35 0.10 0.07 inf; +imbriqué imbriqué ADJ m s 0.05 0.74 0.00 0.14 +imbriquée imbriquer VER f s 0.23 1.35 0.01 0.07 par:pas; +imbriquées imbriqué ADJ f p 0.05 0.74 0.03 0.47 +imbriqués imbriquer VER m p 0.23 1.35 0.04 0.20 par:pas; +imbrisable imbrisable ADJ s 0.01 0.00 0.01 0.00 +imbroglio imbroglio NOM m s 0.46 1.69 0.33 1.55 +imbroglios imbroglio NOM m p 0.46 1.69 0.13 0.14 +imbu imbu ADJ m s 0.56 1.42 0.41 0.88 +imbécile imbécile NOM s 43.42 30.68 35.01 20.47 +imbécilement imbécilement ADV 0.00 0.27 0.00 0.27 +imbéciles imbécile NOM p 43.42 30.68 8.42 10.20 +imbécillité imbécillité NOM f s 0.25 2.70 0.20 2.23 +imbécillités imbécillité NOM f p 0.25 2.70 0.05 0.47 +imbue imbu ADJ f s 0.56 1.42 0.09 0.27 +imbues imbu ADJ f p 0.56 1.42 0.01 0.07 +imbus imbu ADJ m p 0.56 1.42 0.05 0.20 +imbuvable imbuvable ADJ f s 0.60 0.47 0.60 0.47 +imidazole imidazole NOM m s 0.03 0.00 0.03 0.00 +imita imiter VER 14.69 41.35 0.01 3.51 ind:pas:3s; +imitable imitable ADJ m s 0.00 0.14 0.00 0.07 +imitables imitable ADJ m p 0.00 0.14 0.00 0.07 +imitai imiter VER 14.69 41.35 0.01 0.07 ind:pas:1s; +imitaient imiter VER 14.69 41.35 0.14 0.95 ind:imp:3p; +imitais imiter VER 14.69 41.35 0.45 0.81 ind:imp:1s;ind:imp:2s; +imitait imiter VER 14.69 41.35 0.45 4.12 ind:imp:3s; +imitant imiter VER 14.69 41.35 0.46 7.64 par:pre; +imitateur imitateur NOM m s 1.00 0.47 0.48 0.34 +imitateurs imitateur NOM m p 1.00 0.47 0.39 0.14 +imitation imitation NOM f s 4.25 7.30 3.33 5.68 +imitations imitation NOM f p 4.25 7.30 0.92 1.62 +imitative imitatif ADJ f s 0.00 0.20 0.00 0.14 +imitatives imitatif ADJ f p 0.00 0.20 0.00 0.07 +imitatrice imitateur NOM f s 1.00 0.47 0.13 0.00 +imite imiter VER 14.69 41.35 3.85 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imitent imiter VER 14.69 41.35 0.78 0.95 ind:pre:3p; +imiter imiter VER 14.69 41.35 6.00 12.97 inf; +imitera imiter VER 14.69 41.35 0.11 0.07 ind:fut:3s; +imiterai imiter VER 14.69 41.35 0.05 0.07 ind:fut:1s; +imiteraient imiter VER 14.69 41.35 0.01 0.07 cnd:pre:3p; +imiterais imiter VER 14.69 41.35 0.01 0.07 cnd:pre:1s; +imiterait imiter VER 14.69 41.35 0.04 0.14 cnd:pre:3s; +imiteront imiter VER 14.69 41.35 0.08 0.07 ind:fut:3p; +imites imiter VER 14.69 41.35 0.70 0.07 ind:pre:2s; +imitez imiter VER 14.69 41.35 0.50 0.07 imp:pre:2p;ind:pre:2p; +imitiez imiter VER 14.69 41.35 0.04 0.07 ind:imp:2p; +imitions imiter VER 14.69 41.35 0.01 0.07 ind:imp:1p; +imitâmes imiter VER 14.69 41.35 0.00 0.07 ind:pas:1p; +imitons imiter VER 14.69 41.35 0.26 0.14 imp:pre:1p;ind:pre:1p; +imitât imiter VER 14.69 41.35 0.00 0.07 sub:imp:3s; +imitèrent imiter VER 14.69 41.35 0.00 1.08 ind:pas:3p; +imité imiter VER m s 14.69 41.35 0.40 2.57 par:pas; +imitée imiter VER f s 14.69 41.35 0.28 0.68 par:pas; +imitées imiter VER f p 14.69 41.35 0.02 0.41 par:pas; +imités imiter VER m p 14.69 41.35 0.03 0.68 par:pas; +immaculation immaculation NOM f s 0.00 0.54 0.00 0.54 +immaculé immaculé ADJ m s 2.29 9.39 1.05 2.84 +immaculée immaculé ADJ f s 2.29 9.39 0.66 3.85 +immaculées immaculé ADJ f p 2.29 9.39 0.27 1.08 +immaculés immaculé ADJ m p 2.29 9.39 0.32 1.62 +immanence immanence NOM f s 0.00 0.07 0.00 0.07 +immanent immanent ADJ m s 0.07 1.01 0.00 0.14 +immanente immanent ADJ f s 0.07 1.01 0.07 0.88 +immanentisme immanentisme NOM m s 0.00 0.07 0.00 0.07 +immangeable immangeable ADJ m s 0.74 0.68 0.69 0.54 +immangeables immangeable ADJ p 0.74 0.68 0.05 0.14 +immanquable immanquable ADJ s 0.04 0.14 0.04 0.07 +immanquablement immanquablement ADV 0.10 3.24 0.10 3.24 +immanquables immanquable ADJ p 0.04 0.14 0.00 0.07 +immarcescible immarcescible ADJ s 0.00 0.07 0.00 0.07 +immatriculation immatriculation NOM f s 4.64 0.95 4.13 0.88 +immatriculations immatriculation NOM f p 4.64 0.95 0.51 0.07 +immatriculer immatriculer VER 0.95 1.15 0.04 0.00 inf; +immatriculé immatriculé ADJ m s 1.68 0.07 0.28 0.00 +immatriculée immatriculé ADJ f s 1.68 0.07 1.40 0.07 +immatriculées immatriculer VER f p 0.95 1.15 0.03 0.27 par:pas; +immature immature ADJ s 2.98 0.27 2.42 0.20 +immatures immature ADJ p 2.98 0.27 0.56 0.07 +immatérialité immatérialité NOM f s 0.00 0.07 0.00 0.07 +immatériel immatériel ADJ m s 0.42 3.72 0.23 1.76 +immatérielle immatériel ADJ f s 0.42 3.72 0.17 1.49 +immatérielles immatériel ADJ f p 0.42 3.72 0.00 0.20 +immatériels immatériel ADJ m p 0.42 3.72 0.03 0.27 +immaturité immaturité NOM f s 0.48 0.34 0.48 0.34 +immense immense ADJ s 21.56 106.89 19.01 83.99 +immenses immense ADJ p 21.56 106.89 2.55 22.91 +immensité immensité NOM f s 1.53 8.45 1.52 7.97 +immensités immensité NOM f p 1.53 8.45 0.01 0.47 +immensément immensément ADV 0.39 2.30 0.39 2.30 +immensurable immensurable ADJ s 0.00 0.14 0.00 0.14 +immerge immerger VER 1.95 2.84 0.17 0.14 ind:pre:1s;ind:pre:3s; +immergea immerger VER 1.95 2.84 0.00 0.14 ind:pas:3s; +immergeait immerger VER 1.95 2.84 0.00 0.27 ind:imp:3s; +immergeant immerger VER 1.95 2.84 0.01 0.00 par:pre; +immergent immerger VER 1.95 2.84 0.00 0.07 ind:pre:3p; +immergeons immerger VER 1.95 2.84 0.10 0.00 imp:pre:1p; +immerger immerger VER 1.95 2.84 0.39 0.41 inf; +immergerons immerger VER 1.95 2.84 0.01 0.00 ind:fut:1p; +immergez immerger VER 1.95 2.84 0.03 0.00 imp:pre:2p; +immergiez immerger VER 1.95 2.84 0.00 0.07 ind:imp:2p; +immergèrent immerger VER 1.95 2.84 0.10 0.07 ind:pas:3p; +immergé immerger VER m s 1.95 2.84 0.67 0.81 par:pas; +immergée immerger VER f s 1.95 2.84 0.22 0.41 par:pas; +immergées immergé ADJ f p 0.29 1.42 0.11 0.34 +immergés immerger VER m p 1.95 2.84 0.25 0.27 par:pas; +immersion immersion NOM f s 1.29 1.15 1.29 1.15 +immettable immettable ADJ s 0.16 0.14 0.16 0.14 +immeuble immeuble NOM m s 30.03 68.78 24.54 50.88 +immeubles immeuble NOM m p 30.03 68.78 5.49 17.91 +immigrai immigrer VER 0.68 0.34 0.00 0.07 ind:pas:1s; +immigrant immigrant NOM m s 1.46 0.88 0.43 0.20 +immigrante immigrant NOM f s 1.46 0.88 0.06 0.00 +immigrants immigrant NOM m p 1.46 0.88 0.96 0.68 +immigration immigration NOM f s 4.91 0.81 4.91 0.81 +immigrer immigrer VER 0.68 0.34 0.29 0.07 inf; +immigré immigré NOM m s 1.54 2.84 0.42 0.20 +immigrée immigré ADJ f s 0.83 1.28 0.28 0.07 +immigrées immigré ADJ f p 0.83 1.28 0.01 0.20 +immigrés immigré NOM m p 1.54 2.84 1.02 2.50 +imminence imminence NOM f s 0.12 3.38 0.12 3.38 +imminent imminent ADJ m s 4.63 7.64 1.79 2.03 +imminente imminent ADJ f s 4.63 7.64 2.58 4.73 +imminentes imminent ADJ f p 4.63 7.64 0.17 0.41 +imminents imminent ADJ m p 4.63 7.64 0.08 0.47 +immisce immiscer VER 1.56 1.62 0.15 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immiscent immiscer VER 1.56 1.62 0.07 0.07 ind:pre:3p; +immiscer immiscer VER 1.56 1.62 1.17 1.08 inf; +immiscerait immiscer VER 1.56 1.62 0.02 0.00 cnd:pre:3s; +immisces immiscer VER 1.56 1.62 0.01 0.00 ind:pre:2s; +immiscibles immiscible ADJ m p 0.00 0.07 0.00 0.07 +immiscé immiscer VER m s 1.56 1.62 0.06 0.07 par:pas; +immiscée immiscer VER f s 1.56 1.62 0.04 0.00 par:pas; +immisçaient immiscer VER 1.56 1.62 0.00 0.14 ind:imp:3p; +immisçait immiscer VER 1.56 1.62 0.01 0.14 ind:imp:3s; +immisçant immiscer VER 1.56 1.62 0.02 0.14 par:pre; +immixtion immixtion NOM f s 0.10 0.54 0.10 0.47 +immixtions immixtion NOM f p 0.10 0.54 0.00 0.07 +immobile immobile ADJ s 8.03 116.42 6.67 87.50 +immobiles immobile ADJ p 8.03 116.42 1.35 28.92 +immobilier immobilier ADJ m s 6.43 3.45 3.27 1.76 +immobiliers immobilier ADJ m p 6.43 3.45 1.13 0.47 +immobilisa immobiliser VER 3.23 30.27 0.00 8.24 ind:pas:3s; +immobilisai immobiliser VER 3.23 30.27 0.00 0.27 ind:pas:1s; +immobilisaient immobiliser VER 3.23 30.27 0.00 0.54 ind:imp:3p; +immobilisais immobiliser VER 3.23 30.27 0.00 0.14 ind:imp:1s; +immobilisait immobiliser VER 3.23 30.27 0.14 2.23 ind:imp:3s; +immobilisant immobiliser VER 3.23 30.27 0.01 1.76 par:pre; +immobilisation immobilisation NOM f s 0.08 0.34 0.08 0.27 +immobilisations immobilisation NOM f p 0.08 0.34 0.00 0.07 +immobilise immobiliser VER 3.23 30.27 0.53 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +immobilisent immobiliser VER 3.23 30.27 0.01 0.81 ind:pre:3p; +immobiliser immobiliser VER 3.23 30.27 0.75 2.91 imp:pre:2p;inf; +immobilisera immobiliser VER 3.23 30.27 0.07 0.07 ind:fut:3s; +immobiliserait immobiliser VER 3.23 30.27 0.01 0.07 cnd:pre:3s; +immobiliseront immobiliser VER 3.23 30.27 0.02 0.07 ind:fut:3p; +immobilises immobiliser VER 3.23 30.27 0.01 0.07 ind:pre:2s; +immobilisez immobiliser VER 3.23 30.27 0.24 0.00 imp:pre:2p; +immobilisme immobilisme NOM m s 0.04 0.27 0.04 0.27 +immobilisons immobiliser VER 3.23 30.27 0.00 0.07 ind:pre:1p; +immobilisèrent immobiliser VER 3.23 30.27 0.00 1.15 ind:pas:3p; +immobilisé immobiliser VER m s 3.23 30.27 0.61 3.58 par:pas; +immobilisée immobiliser VER f s 3.23 30.27 0.33 2.84 par:pas; +immobilisées immobiliser VER f p 3.23 30.27 0.02 0.41 par:pas; +immobilisés immobiliser VER m p 3.23 30.27 0.48 2.16 par:pas; +immobilière immobilier ADJ f s 6.43 3.45 1.75 0.81 +immobilières immobilier ADJ f p 6.43 3.45 0.28 0.41 +immobilité immobilité NOM f s 0.66 21.96 0.66 21.62 +immobilités immobilité NOM f p 0.66 21.96 0.00 0.34 +immodeste immodeste ADJ f s 0.13 0.20 0.13 0.07 +immodestes immodeste ADJ f p 0.13 0.20 0.00 0.14 +immodestie immodestie NOM f s 0.01 0.07 0.01 0.07 +immodéré immodéré ADJ m s 0.13 1.22 0.13 0.81 +immodérée immodéré ADJ f s 0.13 1.22 0.00 0.14 +immodérées immodéré ADJ f p 0.13 1.22 0.00 0.07 +immodérément immodérément ADV 0.00 0.20 0.00 0.20 +immodérés immodéré ADJ m p 0.13 1.22 0.00 0.20 +immola immoler VER 2.54 1.01 0.01 0.07 ind:pas:3s; +immolation immolation NOM f s 0.05 0.20 0.05 0.14 +immolations immolation NOM f p 0.05 0.20 0.00 0.07 +immole immoler VER 2.54 1.01 0.82 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immolent immoler VER 2.54 1.01 0.03 0.00 ind:pre:3p; +immoler immoler VER 2.54 1.01 0.73 0.20 inf; +immolé immoler VER m s 2.54 1.01 0.77 0.41 par:pas; +immolée immoler VER f s 2.54 1.01 0.01 0.07 par:pas; +immolés immoler VER m p 2.54 1.01 0.17 0.20 par:pas; +immonde immonde ADJ s 5.12 6.28 4.48 4.12 +immondes immonde ADJ p 5.12 6.28 0.64 2.16 +immondice immondice NOM f s 0.46 2.36 0.02 0.14 +immondices immondice NOM f p 0.46 2.36 0.44 2.23 +immoral immoral ADJ m s 3.88 1.76 2.96 0.81 +immorale immoral ADJ f s 3.88 1.76 0.59 0.27 +immoralement immoralement ADV 0.27 0.00 0.27 0.00 +immorales immoral ADJ f p 3.88 1.76 0.07 0.14 +immoralisme immoralisme NOM m s 0.00 0.20 0.00 0.20 +immoraliste immoraliste NOM s 0.00 0.07 0.00 0.07 +immoralité immoralité NOM f s 0.67 0.61 0.67 0.61 +immoraux immoral ADJ m p 3.88 1.76 0.26 0.54 +immortalisa immortaliser VER 1.17 1.62 0.01 0.14 ind:pas:3s; +immortalisait immortaliser VER 1.17 1.62 0.00 0.20 ind:imp:3s; +immortalisant immortaliser VER 1.17 1.62 0.00 0.14 par:pre; +immortalisation immortalisation NOM f s 0.00 0.07 0.00 0.07 +immortalise immortaliser VER 1.17 1.62 0.09 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +immortaliser immortaliser VER 1.17 1.62 0.55 0.74 inf; +immortaliseraient immortaliser VER 1.17 1.62 0.01 0.00 cnd:pre:3p; +immortaliseront immortaliser VER 1.17 1.62 0.02 0.00 ind:fut:3p; +immortalisez immortaliser VER 1.17 1.62 0.01 0.00 imp:pre:2p; +immortalisé immortaliser VER m s 1.17 1.62 0.28 0.07 par:pas; +immortalisée immortaliser VER f s 1.17 1.62 0.03 0.14 par:pas; +immortalisées immortaliser VER f p 1.17 1.62 0.11 0.07 par:pas; +immortalisés immortaliser VER m p 1.17 1.62 0.06 0.14 par:pas; +immortalité immortalité NOM f s 3.67 4.53 3.67 4.46 +immortalités immortalité NOM f p 3.67 4.53 0.00 0.07 +immortel immortel ADJ m s 6.66 5.74 2.88 2.30 +immortelle immortel ADJ f s 6.66 5.74 2.12 1.89 +immortelles immortel ADJ f p 6.66 5.74 0.36 0.54 +immortels immortel ADJ m p 6.66 5.74 1.29 1.01 +immortifiées immortifié ADJ f p 0.00 0.07 0.00 0.07 +immotivée immotivé ADJ f s 0.01 0.14 0.00 0.07 +immotivés immotivé ADJ m p 0.01 0.14 0.01 0.07 +immuabilité immuabilité NOM f s 0.01 0.20 0.01 0.20 +immuable immuable ADJ s 1.64 9.80 1.24 7.84 +immuablement immuablement ADV 0.01 0.74 0.01 0.74 +immuables immuable ADJ p 1.64 9.80 0.40 1.96 +immédiat immédiat ADJ m s 9.77 24.59 4.59 9.59 +immédiate immédiat ADJ f s 9.77 24.59 4.19 10.61 +immédiatement immédiatement ADV 56.35 42.64 56.35 42.64 +immédiates immédiat ADJ f p 9.77 24.59 0.44 1.96 +immédiateté immédiateté NOM f s 0.02 0.07 0.02 0.07 +immédiats immédiat ADJ m p 9.77 24.59 0.54 2.43 +immémorial immémorial ADJ m s 0.04 4.93 0.00 1.89 +immémoriale immémorial ADJ f s 0.04 4.93 0.01 1.15 +immémoriales immémorial ADJ f p 0.04 4.93 0.01 1.01 +immémoriaux immémorial ADJ m p 0.04 4.93 0.02 0.88 +immune immun ADJ f s 0.01 0.07 0.01 0.07 +immunisait immuniser VER 1.96 0.68 0.00 0.14 ind:imp:3s; +immunisation immunisation NOM f s 0.08 0.07 0.08 0.07 +immunise immuniser VER 1.96 0.68 0.04 0.07 ind:pre:3s; +immunisent immuniser VER 1.96 0.68 0.03 0.00 ind:pre:3p; +immuniser immuniser VER 1.96 0.68 0.09 0.20 inf; +immunisé immuniser VER m s 1.96 0.68 0.97 0.20 par:pas; +immunisée immuniser VER f s 1.96 0.68 0.36 0.07 par:pas; +immunisés immuniser VER m p 1.96 0.68 0.48 0.00 par:pas; +immunitaire immunitaire ADJ s 1.73 0.54 1.64 0.20 +immunitaires immunitaire ADJ p 1.73 0.54 0.09 0.34 +immunité immunité NOM f s 2.99 1.42 2.92 1.42 +immunités immunité NOM f p 2.99 1.42 0.06 0.00 +immunodéficience immunodéficience NOM f s 0.04 0.00 0.04 0.00 +immunodéficitaire immunodéficitaire ADJ f s 0.03 0.00 0.03 0.00 +immunodéprimé immunodéprimé ADJ m s 0.02 0.00 0.02 0.00 +immunogène immunogène ADJ f s 0.00 0.14 0.00 0.14 +immunologie immunologie NOM f s 0.02 0.00 0.02 0.00 +immunologique immunologique ADJ s 0.05 0.07 0.05 0.07 +immunologiste immunologiste NOM s 0.09 0.00 0.09 0.00 +immunostimulant immunostimulant NOM m s 0.01 0.00 0.01 0.00 +immunothérapie immunothérapie NOM f s 0.01 0.00 0.01 0.00 +immérité immérité ADJ m s 0.24 0.88 0.20 0.27 +imméritée immérité ADJ f s 0.24 0.88 0.02 0.27 +imméritées immérité ADJ f p 0.24 0.88 0.00 0.20 +immérités immérité ADJ m p 0.24 0.88 0.03 0.14 +immutabilité immutabilité NOM f s 0.14 0.00 0.14 0.00 +impôt impôt NOM m s 15.14 6.55 2.67 1.76 +impôts impôt NOM m p 15.14 6.55 12.47 4.80 +impact impact NOM m s 9.54 2.50 8.36 2.30 +impacts impact NOM m p 9.54 2.50 1.19 0.20 +impair impair ADJ m s 0.58 1.08 0.20 0.68 +impaire impair ADJ f s 0.58 1.08 0.03 0.00 +impaires impair ADJ f p 0.58 1.08 0.00 0.14 +impairs impair ADJ m p 0.58 1.08 0.36 0.27 +impala impala NOM m s 0.19 1.22 0.17 1.01 +impalas impala NOM m p 0.19 1.22 0.02 0.20 +impalpabilité impalpabilité NOM f s 0.00 0.07 0.00 0.07 +impalpable impalpable ADJ s 0.60 5.27 0.60 3.72 +impalpablement impalpablement ADV 0.00 0.07 0.00 0.07 +impalpables impalpable ADJ p 0.60 5.27 0.00 1.55 +imparable imparable ADJ s 0.43 0.81 0.41 0.68 +imparablement imparablement ADV 0.00 0.07 0.00 0.07 +imparables imparable ADJ f p 0.43 0.81 0.02 0.14 +impardonnable impardonnable ADJ s 2.84 3.11 2.46 2.70 +impardonnablement impardonnablement ADV 0.00 0.07 0.00 0.07 +impardonnables impardonnable ADJ p 2.84 3.11 0.39 0.41 +imparfait imparfait ADJ m s 1.51 3.11 0.74 1.01 +imparfaite imparfait ADJ f s 1.51 3.11 0.23 1.22 +imparfaitement imparfaitement ADV 0.02 0.81 0.02 0.81 +imparfaites imparfait ADJ f p 1.51 3.11 0.13 0.20 +imparfaits imparfait ADJ m p 1.51 3.11 0.41 0.68 +impartageable impartageable ADJ s 0.00 0.07 0.00 0.07 +imparti imparti ADJ m s 0.27 0.07 0.27 0.07 +impartial impartial ADJ m s 1.72 1.28 0.81 0.74 +impartiale impartial ADJ f s 1.72 1.28 0.69 0.27 +impartialement impartialement ADV 0.04 0.34 0.04 0.34 +impartiales impartial ADJ f p 1.72 1.28 0.01 0.07 +impartialité impartialité NOM f s 0.32 0.95 0.32 0.95 +impartiaux impartial ADJ m p 1.72 1.28 0.22 0.20 +impartie impartir VER f s 0.19 0.95 0.00 0.14 par:pas; +impartir impartir VER 0.19 0.95 0.00 0.14 inf; +impartis impartir VER m p 0.19 0.95 0.00 0.27 par:pas; +impassable impassable ADJ s 0.02 0.00 0.02 0.00 +impasse impasse NOM f s 6.95 10.47 6.30 9.19 +impasses impasse NOM f p 6.95 10.47 0.65 1.28 +impassibilité impassibilité NOM f s 0.00 2.43 0.00 2.43 +impassible impassible ADJ s 1.48 11.49 1.29 9.66 +impassiblement impassiblement ADV 0.00 0.14 0.00 0.14 +impassibles impassible ADJ p 1.48 11.49 0.18 1.82 +impatiemment impatiemment ADV 0.79 2.50 0.79 2.50 +impatience impatience NOM f s 7.59 33.78 7.59 33.11 +impatiences impatience NOM f p 7.59 33.78 0.00 0.68 +impatiens impatiens NOM f 0.01 0.00 0.01 0.00 +impatient impatient ADJ m s 12.64 16.76 7.40 9.19 +impatienta impatienter VER 2.74 10.54 0.00 1.28 ind:pas:3s; +impatientai impatienter VER 2.74 10.54 0.01 0.14 ind:pas:1s; +impatientaient impatienter VER 2.74 10.54 0.01 0.47 ind:imp:3p; +impatientais impatienter VER 2.74 10.54 0.00 0.27 ind:imp:1s; +impatientait impatienter VER 2.74 10.54 0.18 2.43 ind:imp:3s; +impatientant impatienter VER 2.74 10.54 0.00 0.14 par:pre; +impatiente impatient ADJ f s 12.64 16.76 3.34 3.99 +impatientent impatienter VER 2.74 10.54 0.63 0.34 ind:pre:3p; +impatienter impatienter VER 2.74 10.54 0.72 0.95 inf; +impatienterait impatienter VER 2.74 10.54 0.00 0.07 cnd:pre:3s; +impatientes impatient ADJ f p 12.64 16.76 0.26 0.68 +impatientez impatienter VER 2.74 10.54 0.01 0.27 imp:pre:2p;ind:pre:2p; +impatients impatient ADJ m p 12.64 16.76 1.63 2.91 +impatientèrent impatienter VER 2.74 10.54 0.00 0.14 ind:pas:3p; +impatienté impatienter VER m s 2.74 10.54 0.01 0.81 par:pas; +impatientée impatienter VER f s 2.74 10.54 0.01 0.34 par:pas; +impatientés impatienter VER m p 2.74 10.54 0.01 0.00 par:pas; +impatronisait impatroniser VER 0.00 0.20 0.00 0.07 ind:imp:3s; +impatroniser impatroniser VER 0.00 0.20 0.00 0.07 inf; +impatronisé impatroniser VER m s 0.00 0.20 0.00 0.07 par:pas; +impavide impavide ADJ s 0.29 1.89 0.29 1.28 +impavides impavide ADJ f p 0.29 1.89 0.00 0.61 +impayable impayable ADJ m s 0.36 0.81 0.30 0.74 +impayables impayable ADJ p 0.36 0.81 0.06 0.07 +impayé impayé ADJ m s 0.96 0.47 0.11 0.00 +impayée impayé ADJ f s 0.96 0.47 0.23 0.20 +impayées impayé ADJ f p 0.96 0.47 0.35 0.14 +impayés impayé ADJ m p 0.96 0.47 0.27 0.14 +impeachment impeachment NOM m s 0.07 0.00 0.07 0.00 +impec impec ADJ 1.06 1.96 1.06 1.96 +impeccabilité impeccabilité NOM f s 0.00 0.07 0.00 0.07 +impeccable impeccable ADJ s 6.96 10.07 5.67 8.24 +impeccablement impeccablement ADV 0.09 2.64 0.09 2.64 +impeccables impeccable ADJ p 6.96 10.07 1.29 1.82 +impedimenta impedimenta NOM m p 0.00 0.07 0.00 0.07 +impensable impensable ADJ s 2.94 2.57 2.91 2.23 +impensables impensable ADJ f p 2.94 2.57 0.03 0.34 +impensé impensé ADJ m s 0.00 0.14 0.00 0.14 +imper imper NOM m s 2.08 2.91 1.95 2.50 +imperator imperator NOM m s 0.09 0.20 0.09 0.20 +imperceptible imperceptible ADJ s 0.61 15.27 0.45 12.16 +imperceptiblement imperceptiblement ADV 0.14 9.73 0.14 9.73 +imperceptibles imperceptible ADJ p 0.61 15.27 0.16 3.11 +imperfectible imperfectible ADJ s 0.01 0.00 0.01 0.00 +imperfection imperfection NOM f s 1.00 1.69 0.34 0.61 +imperfections imperfection NOM f p 1.00 1.69 0.66 1.08 +imperium imperium NOM m s 0.08 0.07 0.08 0.07 +imperméabilisant imperméabilisant NOM m s 0.01 0.00 0.01 0.00 +imperméabiliser imperméabiliser VER 0.23 0.00 0.01 0.00 inf; +imperméabilisé imperméabiliser VER m s 0.23 0.00 0.23 0.00 par:pas; +imperméabilité imperméabilité NOM f s 0.00 0.14 0.00 0.14 +imperméable imperméable NOM m s 2.14 11.62 1.95 10.14 +imperméables imperméable NOM m p 2.14 11.62 0.19 1.49 +impers imper NOM m p 2.08 2.91 0.13 0.41 +impersonnaliser impersonnaliser VER 0.01 0.00 0.01 0.00 inf; +impersonnalité impersonnalité NOM f s 0.00 0.34 0.00 0.34 +impersonnel impersonnel ADJ m s 0.86 5.00 0.68 1.82 +impersonnelle impersonnel ADJ f s 0.86 5.00 0.15 2.43 +impersonnelles impersonnel ADJ f p 0.86 5.00 0.01 0.27 +impersonnels impersonnel ADJ m p 0.86 5.00 0.03 0.47 +impertinemment impertinemment ADV 0.00 0.07 0.00 0.07 +impertinence impertinence NOM f s 0.47 1.69 0.34 1.35 +impertinences impertinence NOM f p 0.47 1.69 0.14 0.34 +impertinent impertinent ADJ m s 1.14 1.01 0.92 0.41 +impertinente impertinent ADJ f s 1.14 1.01 0.17 0.41 +impertinentes impertinent ADJ f p 1.14 1.01 0.04 0.20 +impertinents impertinent NOM m p 0.97 0.20 0.27 0.07 +imperturbable imperturbable ADJ s 0.18 6.42 0.15 5.54 +imperturbablement imperturbablement ADV 0.00 1.01 0.00 1.01 +imperturbables imperturbable ADJ p 0.18 6.42 0.04 0.88 +impie impie ADJ s 1.66 1.96 1.19 0.95 +impies impie NOM p 1.09 1.28 0.94 0.54 +impitoyable impitoyable ADJ s 5.34 10.68 4.40 8.18 +impitoyablement impitoyablement ADV 0.40 1.82 0.40 1.82 +impitoyables impitoyable ADJ p 5.34 10.68 0.94 2.50 +impiété impiété NOM f s 0.74 1.08 0.74 0.95 +impiétés impiété NOM f p 0.74 1.08 0.00 0.14 +implacabilité implacabilité NOM f s 0.02 0.07 0.02 0.07 +implacable implacable ADJ s 2.02 10.54 1.77 9.46 +implacablement implacablement ADV 0.11 0.20 0.11 0.20 +implacables implacable ADJ p 2.02 10.54 0.24 1.08 +implant implant NOM m s 5.11 0.14 2.00 0.00 +implanta implanter VER 3.39 2.64 0.14 0.07 ind:pas:3s; +implantable implantable ADJ m s 0.01 0.00 0.01 0.00 +implantaient implanter VER 3.39 2.64 0.00 0.14 ind:imp:3p; +implantais implanter VER 3.39 2.64 0.01 0.07 ind:imp:1s; +implantait implanter VER 3.39 2.64 0.00 0.14 ind:imp:3s; +implantant implanter VER 3.39 2.64 0.05 0.07 par:pre; +implantation implantation NOM f s 0.66 0.81 0.53 0.81 +implantations implantation NOM f p 0.66 0.81 0.12 0.00 +implante implanter VER 3.39 2.64 0.39 0.07 ind:pre:3s; +implantent implanter VER 3.39 2.64 0.05 0.14 ind:pre:3p; +implanter implanter VER 3.39 2.64 1.10 0.95 inf; +implantez implanter VER 3.39 2.64 0.04 0.00 imp:pre:2p;ind:pre:2p; +implantiez implanter VER 3.39 2.64 0.02 0.00 ind:imp:2p; +implantons implanter VER 3.39 2.64 0.05 0.00 imp:pre:1p;ind:pre:1p; +implants implant NOM m p 5.11 0.14 3.11 0.14 +implanté implanter VER m s 3.39 2.64 1.20 0.47 par:pas; +implantée implanter VER f s 3.39 2.64 0.17 0.20 par:pas; +implantées implanter VER f p 3.39 2.64 0.03 0.07 par:pas; +implantés implanter VER m p 3.39 2.64 0.14 0.27 par:pas; +implication implication NOM f s 2.96 1.01 2.01 0.27 +implications implication NOM f p 2.96 1.01 0.95 0.74 +implicite implicite ADJ s 0.26 1.28 0.23 1.08 +implicitement implicitement ADV 0.19 1.15 0.19 1.15 +implicites implicite ADJ p 0.26 1.28 0.03 0.20 +impliqua impliquer VER 36.80 12.09 0.11 0.07 ind:pas:3s; +impliquaient impliquer VER 36.80 12.09 0.05 0.27 ind:imp:3p; +impliquait impliquer VER 36.80 12.09 0.66 2.91 ind:imp:3s; +impliquant impliquer VER 36.80 12.09 1.37 1.08 par:pre; +implique impliquer VER 36.80 12.09 6.73 3.99 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impliquent impliquer VER 36.80 12.09 0.60 0.61 ind:pre:3p; +impliquer impliquer VER 36.80 12.09 4.07 0.47 inf; +impliquera impliquer VER 36.80 12.09 0.07 0.07 ind:fut:3s; +impliquerai impliquer VER 36.80 12.09 0.04 0.00 ind:fut:1s; +impliquerais impliquer VER 36.80 12.09 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +impliquerait impliquer VER 36.80 12.09 0.52 0.41 cnd:pre:3s; +impliquerons impliquer VER 36.80 12.09 0.01 0.00 ind:fut:1p; +impliqueront impliquer VER 36.80 12.09 0.01 0.00 ind:fut:3p; +impliquez impliquer VER 36.80 12.09 0.34 0.00 imp:pre:2p;ind:pre:2p; +impliquions impliquer VER 36.80 12.09 0.01 0.00 ind:imp:1p; +impliquons impliquer VER 36.80 12.09 0.04 0.00 imp:pre:1p;ind:pre:1p; +impliquât impliquer VER 36.80 12.09 0.00 0.14 sub:imp:3s; +impliqué impliquer VER m s 36.80 12.09 13.38 1.28 par:pas; +impliquée impliquer VER f s 36.80 12.09 4.05 0.34 par:pas; +impliquées impliquer VER f p 36.80 12.09 1.21 0.07 par:pas; +impliqués impliquer VER m p 36.80 12.09 3.46 0.41 par:pas; +implora implorer VER 11.88 8.11 0.13 1.08 ind:pas:3s; +implorai implorer VER 11.88 8.11 0.00 0.14 ind:pas:1s; +imploraient implorer VER 11.88 8.11 0.05 0.20 ind:imp:3p; +implorais implorer VER 11.88 8.11 0.06 0.14 ind:imp:1s;ind:imp:2s; +implorait implorer VER 11.88 8.11 0.30 1.15 ind:imp:3s; +implorant implorer VER 11.88 8.11 0.49 1.22 par:pre; +implorante implorant ADJ f s 0.50 3.31 0.04 1.15 +implorantes implorant ADJ f p 0.50 3.31 0.11 0.20 +implorants implorant ADJ m p 0.50 3.31 0.12 0.81 +imploration imploration NOM f s 0.01 1.01 0.01 0.88 +implorations imploration NOM f p 0.01 1.01 0.00 0.14 +implore implorer VER 11.88 8.11 5.87 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +implorent implorer VER 11.88 8.11 0.90 0.41 ind:pre:3p; +implorer implorer VER 11.88 8.11 1.75 1.76 inf; +implorera implorer VER 11.88 8.11 0.02 0.07 ind:fut:3s; +implorerai implorer VER 11.88 8.11 0.03 0.07 ind:fut:1s; +implorerais implorer VER 11.88 8.11 0.01 0.00 cnd:pre:2s; +implorerez implorer VER 11.88 8.11 0.04 0.00 ind:fut:2p; +imploreront implorer VER 11.88 8.11 0.01 0.00 ind:fut:3p; +implorez implorer VER 11.88 8.11 0.24 0.07 imp:pre:2p;ind:pre:2p; +imploriez implorer VER 11.88 8.11 0.14 0.07 ind:imp:2p; +implorons implorer VER 11.88 8.11 1.13 0.07 imp:pre:1p;ind:pre:1p; +implorèrent implorer VER 11.88 8.11 0.01 0.07 ind:pas:3p; +imploré implorer VER m s 11.88 8.11 0.52 0.34 par:pas; +implorée implorer VER f s 11.88 8.11 0.19 0.00 par:pas; +implose imploser VER 0.47 0.34 0.07 0.27 ind:pre:1s;ind:pre:3s; +implosent imploser VER 0.47 0.34 0.02 0.07 ind:pre:3p; +imploser imploser VER 0.47 0.34 0.32 0.00 inf; +implosera imploser VER 0.47 0.34 0.04 0.00 ind:fut:3s; +implosez imploser VER 0.47 0.34 0.01 0.00 ind:pre:2p; +implosif implosif ADJ m s 0.06 0.07 0.04 0.00 +implosifs implosif ADJ m p 0.06 0.07 0.01 0.07 +implosion implosion NOM f s 0.23 0.14 0.23 0.14 +implosive implosive NOM f s 0.00 0.07 0.00 0.07 +implosives implosif ADJ f p 0.06 0.07 0.01 0.00 +implémentation implémentation NOM f s 0.04 0.00 0.04 0.00 +implémenter implémenter VER 0.05 0.00 0.05 0.00 inf; +impoli impoli ADJ m s 4.76 0.68 3.32 0.47 +impolie impoli ADJ f s 4.76 0.68 0.95 0.20 +impoliment impoliment ADV 0.03 0.00 0.03 0.00 +impolis impoli ADJ m p 4.76 0.68 0.48 0.00 +impolitesse impolitesse NOM f s 1.01 0.88 1.00 0.81 +impolitesses impolitesse NOM f p 1.01 0.88 0.01 0.07 +impollu impollu ADJ m s 0.00 0.07 0.00 0.07 +impolluable impolluable ADJ f s 0.00 0.07 0.00 0.07 +impollué impollué ADJ m s 0.00 0.47 0.00 0.14 +impolluée impollué ADJ f s 0.00 0.47 0.00 0.14 +impolluées impollué ADJ f p 0.00 0.47 0.00 0.07 +impollués impollué ADJ m p 0.00 0.47 0.00 0.14 +impondérable impondérable NOM m s 0.10 0.61 0.03 0.20 +impondérables impondérable NOM m p 0.10 0.61 0.07 0.41 +impopulaire impopulaire ADJ s 1.14 0.14 0.95 0.07 +impopulaires impopulaire ADJ m p 1.14 0.14 0.19 0.07 +impopularité impopularité NOM f s 0.01 0.27 0.01 0.27 +import_export import_export NOM m s 0.47 0.41 0.47 0.41 +import import NOM m s 0.43 0.27 0.32 0.14 +importa importer VER 259.50 173.11 0.11 0.20 ind:pas:3s; +importable importable ADJ s 0.16 0.00 0.01 0.00 +importables importable ADJ p 0.16 0.00 0.15 0.00 +importaient importer VER 259.50 173.11 0.09 1.35 ind:imp:3p; +importait importer VER 259.50 173.11 2.25 15.68 ind:imp:3s; +importance importance NOM f s 57.32 75.81 57.32 75.54 +importances importance NOM f p 57.32 75.81 0.00 0.27 +important important ADJ m s 229.36 86.76 168.62 49.66 +importante important ADJ f s 229.36 86.76 35.29 18.31 +importantes important ADJ f p 229.36 86.76 13.80 8.99 +importants important ADJ m p 229.36 86.76 11.65 9.80 +importateur importateur NOM m s 0.24 0.34 0.19 0.27 +importateurs importateur NOM m p 0.24 0.34 0.05 0.07 +importation importation NOM f s 1.23 2.23 0.73 1.01 +importations importation NOM f p 1.23 2.23 0.50 1.22 +importe importer VER 259.50 173.11 251.39 151.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +importent importer VER 259.50 173.11 2.16 1.76 ind:pre:3p; +importer importer VER 259.50 173.11 1.01 0.68 inf; +importera importer VER 259.50 173.11 0.25 0.34 ind:fut:3s; +importeraient importer VER 259.50 173.11 0.01 0.00 cnd:pre:3p; +importerait importer VER 259.50 173.11 0.10 0.41 cnd:pre:3s; +importes importer VER 259.50 173.11 0.20 0.07 ind:pre:2s; +importât importer VER 259.50 173.11 0.00 0.07 sub:imp:3s; +imports import NOM m p 0.43 0.27 0.11 0.14 +importé importer VER m s 259.50 173.11 1.05 0.61 par:pas; +importée importé ADJ f s 1.45 0.54 0.26 0.20 +importées importer VER f p 259.50 173.11 0.28 0.27 par:pas; +importun importun NOM m s 0.36 1.82 0.32 1.01 +importuna importuner VER 4.66 3.38 0.00 0.07 ind:pas:3s; +importunaient importuner VER 4.66 3.38 0.00 0.20 ind:imp:3p; +importunais importuner VER 4.66 3.38 0.03 0.07 ind:imp:1s; +importunait importuner VER 4.66 3.38 0.14 0.68 ind:imp:3s; +importune importuner VER 4.66 3.38 0.51 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +importunent importuner VER 4.66 3.38 0.04 0.14 ind:pre:3p; +importuner importuner VER 4.66 3.38 2.79 0.95 inf; +importunerai importuner VER 4.66 3.38 0.07 0.00 ind:fut:1s; +importunerait importuner VER 4.66 3.38 0.01 0.00 cnd:pre:3s; +importunerez importuner VER 4.66 3.38 0.02 0.07 ind:fut:2p; +importunerons importuner VER 4.66 3.38 0.11 0.00 ind:fut:1p; +importunes importuner VER 4.66 3.38 0.27 0.00 ind:pre:2s; +importunez importuner VER 4.66 3.38 0.28 0.20 imp:pre:2p;ind:pre:2p; +importunités importunité NOM f p 0.00 0.20 0.00 0.20 +importunât importuner VER 4.66 3.38 0.00 0.07 sub:imp:3s; +importuns importun ADJ m p 0.70 2.23 0.16 0.20 +importuné importuner VER m s 4.66 3.38 0.14 0.47 par:pas; +importunée importuner VER f s 4.66 3.38 0.20 0.20 par:pas; +importunés importuner VER m p 4.66 3.38 0.06 0.07 par:pas; +importés importé ADJ m p 1.45 0.54 0.39 0.20 +imposa imposer VER 23.62 78.38 0.79 3.72 ind:pas:3s; +imposable imposable ADJ s 0.29 0.14 0.20 0.07 +imposables imposable ADJ m p 0.29 0.14 0.09 0.07 +imposai imposer VER 23.62 78.38 0.00 0.20 ind:pas:1s; +imposaient imposer VER 23.62 78.38 0.08 2.50 ind:imp:3p; +imposais imposer VER 23.62 78.38 0.04 0.68 ind:imp:1s;ind:imp:2s; +imposait imposer VER 23.62 78.38 1.07 14.66 ind:imp:3s; +imposant imposant ADJ m s 1.47 9.39 0.97 3.72 +imposante imposant ADJ f s 1.47 9.39 0.42 4.39 +imposantes imposant ADJ f p 1.47 9.39 0.05 0.95 +imposants imposant ADJ m p 1.47 9.39 0.03 0.34 +imposassent imposer VER 23.62 78.38 0.00 0.07 sub:imp:3p; +impose imposer VER 23.62 78.38 6.92 12.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +imposent imposer VER 23.62 78.38 1.62 4.12 ind:pre:3p; +imposer imposer VER 23.62 78.38 7.19 19.53 inf; +imposera imposer VER 23.62 78.38 0.27 0.47 ind:fut:3s; +imposerai imposer VER 23.62 78.38 0.23 0.14 ind:fut:1s; +imposeraient imposer VER 23.62 78.38 0.01 0.20 cnd:pre:3p; +imposerais imposer VER 23.62 78.38 0.03 0.07 cnd:pre:1s; +imposerait imposer VER 23.62 78.38 0.07 1.08 cnd:pre:3s; +imposerez imposer VER 23.62 78.38 0.03 0.00 ind:fut:2p; +imposerions imposer VER 23.62 78.38 0.00 0.14 cnd:pre:1p; +imposerons imposer VER 23.62 78.38 0.05 0.14 ind:fut:1p; +imposeront imposer VER 23.62 78.38 0.03 0.14 ind:fut:3p; +imposes imposer VER 23.62 78.38 0.35 0.34 ind:pre:2s; +imposez imposer VER 23.62 78.38 0.41 0.20 imp:pre:2p;ind:pre:2p; +imposiez imposer VER 23.62 78.38 0.00 0.14 ind:imp:2p; +imposition imposition NOM f s 0.69 0.41 0.69 0.34 +impositions imposition NOM f p 0.69 0.41 0.00 0.07 +imposons imposer VER 23.62 78.38 0.30 0.14 imp:pre:1p;ind:pre:1p; +imposât imposer VER 23.62 78.38 0.01 0.54 sub:imp:3s; +impossibilité impossibilité NOM f s 0.96 7.50 0.94 7.16 +impossibilités impossibilité NOM f p 0.96 7.50 0.02 0.34 +impossible impossible ADJ s 124.54 96.01 122.32 90.07 +impossibles impossible ADJ p 124.54 96.01 2.22 5.95 +imposte imposte NOM f s 0.01 0.68 0.01 0.68 +imposteur imposteur NOM m s 6.04 1.96 5.43 1.42 +imposteurs imposteur NOM m p 6.04 1.96 0.61 0.54 +imposèrent imposer VER 23.62 78.38 0.00 0.61 ind:pas:3p; +imposture imposture NOM f s 1.82 3.38 1.78 3.18 +impostures imposture NOM f p 1.82 3.38 0.04 0.20 +imposé imposer VER m s 23.62 78.38 2.46 6.42 par:pas; +imposée imposer VER f s 23.62 78.38 0.53 4.19 par:pas; +imposées imposer VER f p 23.62 78.38 0.52 1.62 par:pas; +imposés imposer VER m p 23.62 78.38 0.21 0.68 par:pas; +impotence impotence NOM f s 0.01 0.07 0.01 0.07 +impotent impotent ADJ m s 0.90 1.22 0.64 0.47 +impotente impotent ADJ f s 0.90 1.22 0.21 0.61 +impotentes impotent ADJ f p 0.90 1.22 0.00 0.07 +impotents impotent ADJ m p 0.90 1.22 0.05 0.07 +impraticabilité impraticabilité NOM f s 0.01 0.00 0.01 0.00 +impraticable impraticable ADJ s 0.33 1.35 0.15 0.95 +impraticables impraticable ADJ p 0.33 1.35 0.18 0.41 +impratique impratique ADJ s 0.00 0.07 0.00 0.07 +imprenable imprenable ADJ s 0.76 2.30 0.74 1.82 +imprenables imprenable ADJ p 0.76 2.30 0.02 0.47 +impresarii impresario NOM m p 0.39 2.36 0.00 0.14 +impresario impresario NOM m s 0.39 2.36 0.38 2.03 +impresarios impresario NOM m p 0.39 2.36 0.01 0.20 +imprescriptible imprescriptible ADJ s 0.02 0.41 0.01 0.27 +imprescriptibles imprescriptible ADJ m p 0.02 0.41 0.01 0.14 +impression impression NOM f s 90.19 155.27 88.30 146.28 +impressionna impressionner VER 24.98 24.26 0.01 1.49 ind:pas:3s; +impressionnable impressionnable ADJ s 1.02 0.68 0.78 0.68 +impressionnables impressionnable ADJ m p 1.02 0.68 0.24 0.00 +impressionnaient impressionner VER 24.98 24.26 0.00 0.61 ind:imp:3p; +impressionnais impressionner VER 24.98 24.26 0.14 0.00 ind:imp:1s;ind:imp:2s; +impressionnait impressionner VER 24.98 24.26 0.13 2.84 ind:imp:3s; +impressionnant impressionnant ADJ m s 15.91 9.86 12.98 4.59 +impressionnante impressionnant ADJ f s 15.91 9.86 2.09 3.78 +impressionnantes impressionnant ADJ f p 15.91 9.86 0.40 0.95 +impressionnants impressionnant ADJ m p 15.91 9.86 0.45 0.54 +impressionne impressionner VER 24.98 24.26 3.54 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impressionnent impressionner VER 24.98 24.26 0.42 0.47 ind:pre:3p; +impressionner impressionner VER 24.98 24.26 5.97 4.66 inf; +impressionnera impressionner VER 24.98 24.26 0.26 0.00 ind:fut:3s; +impressionnerait impressionner VER 24.98 24.26 0.06 0.27 cnd:pre:3s; +impressionneras impressionner VER 24.98 24.26 0.02 0.00 ind:fut:2s; +impressionneront impressionner VER 24.98 24.26 0.00 0.07 ind:fut:3p; +impressionnes impressionner VER 24.98 24.26 0.82 0.07 ind:pre:1p;ind:pre:2s; +impressionnez impressionner VER 24.98 24.26 0.94 0.07 imp:pre:2p;ind:pre:2p; +impressionnisme impressionnisme NOM m s 0.16 0.20 0.16 0.20 +impressionniste impressionniste ADJ s 0.28 1.15 0.11 0.54 +impressionnistes impressionniste ADJ p 0.28 1.15 0.17 0.61 +impressionnât impressionner VER 24.98 24.26 0.00 0.07 sub:imp:3s; +impressionnèrent impressionner VER 24.98 24.26 0.00 0.07 ind:pas:3p; +impressionné impressionner VER m s 24.98 24.26 6.91 7.16 par:pas; +impressionnée impressionner VER f s 24.98 24.26 3.34 1.89 par:pas; +impressionnées impressionner VER f p 24.98 24.26 0.07 0.20 par:pas; +impressionnés impressionner VER m p 24.98 24.26 1.50 1.55 par:pas; +impressions impression NOM f p 90.19 155.27 1.89 8.99 +impressive impressif ADJ f s 0.03 0.00 0.03 0.00 +imprima imprimer VER 8.67 28.24 0.02 0.54 ind:pas:3s; +imprimable imprimable ADJ s 0.01 0.00 0.01 0.00 +imprimaient imprimer VER 8.67 28.24 0.03 0.68 ind:imp:3p; +imprimais imprimer VER 8.67 28.24 0.06 0.07 ind:imp:1s; +imprimait imprimer VER 8.67 28.24 0.03 2.23 ind:imp:3s; +imprimant imprimer VER 8.67 28.24 0.11 0.74 par:pre; +imprimante imprimante NOM f s 0.95 0.07 0.95 0.07 +imprimatur imprimatur NOM m 0.00 0.07 0.00 0.07 +imprime imprimer VER 8.67 28.24 1.82 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +impriment imprimer VER 8.67 28.24 0.31 0.47 ind:pre:3p; +imprimer imprimer VER 8.67 28.24 2.82 3.58 inf; +imprimera imprimer VER 8.67 28.24 0.03 0.14 ind:fut:3s; +imprimerai imprimer VER 8.67 28.24 0.04 0.00 ind:fut:1s; +imprimerait imprimer VER 8.67 28.24 0.01 0.07 cnd:pre:3s; +imprimeras imprimer VER 8.67 28.24 0.01 0.00 ind:fut:2s; +imprimerie imprimerie NOM f s 1.63 9.53 1.60 9.12 +imprimeries imprimerie NOM f p 1.63 9.53 0.03 0.41 +imprimerons imprimer VER 8.67 28.24 0.00 0.07 ind:fut:1p; +imprimeur imprimeur NOM m s 1.12 2.97 1.01 2.09 +imprimeurs imprimeur NOM m p 1.12 2.97 0.10 0.88 +imprimez imprimer VER 8.67 28.24 0.47 0.14 imp:pre:2p;ind:pre:2p; +imprimèrent imprimer VER 8.67 28.24 0.01 0.20 ind:pas:3p; +imprimé imprimer VER m s 8.67 28.24 1.79 7.91 par:pas; +imprimée imprimer VER f s 8.67 28.24 0.36 4.05 par:pas; +imprimées imprimer VER f p 8.67 28.24 0.22 2.84 par:pas; +imprimés imprimer VER m p 8.67 28.24 0.53 2.97 par:pas; +impro impro NOM f s 0.82 0.14 0.82 0.14 +improbabilité improbabilité NOM f s 0.11 0.20 0.11 0.20 +improbable improbable ADJ s 2.87 7.70 2.77 5.68 +improbables improbable ADJ p 2.87 7.70 0.09 2.03 +improductif improductif ADJ m s 0.85 0.54 0.20 0.20 +improductifs improductif ADJ m p 0.85 0.54 0.40 0.07 +improductive improductif ADJ f s 0.85 0.54 0.25 0.14 +improductives improductif ADJ f p 0.85 0.54 0.00 0.14 +impromptu impromptu ADJ m s 0.40 2.43 0.25 1.42 +impromptue impromptu ADJ f s 0.40 2.43 0.11 0.68 +impromptues impromptu ADJ f p 0.40 2.43 0.02 0.27 +impromptus impromptu NOM m p 0.14 0.61 0.14 0.07 +imprononcé imprononcé ADJ m s 0.00 0.07 0.00 0.07 +imprononçable imprononçable ADJ m s 0.19 0.47 0.16 0.41 +imprononçables imprononçable ADJ m p 0.19 0.47 0.02 0.07 +impropre impropre ADJ s 0.50 1.62 0.48 1.22 +improprement improprement ADV 0.11 0.07 0.11 0.07 +impropres impropre ADJ f p 0.50 1.62 0.02 0.41 +impropriétés impropriété NOM f p 0.00 0.14 0.00 0.14 +improuva improuver VER 0.00 0.07 0.00 0.07 ind:pas:3s; +improuvable improuvable ADJ s 0.03 0.00 0.03 0.00 +improvisa improviser VER 7.09 8.92 0.03 0.68 ind:pas:3s; +improvisade improvisade NOM f s 0.01 0.00 0.01 0.00 +improvisai improviser VER 7.09 8.92 0.00 0.07 ind:pas:1s; +improvisaient improviser VER 7.09 8.92 0.00 0.34 ind:imp:3p; +improvisais improviser VER 7.09 8.92 0.03 0.14 ind:imp:1s; +improvisait improviser VER 7.09 8.92 0.20 0.95 ind:imp:3s; +improvisant improviser VER 7.09 8.92 0.02 0.88 par:pre; +improvisateur improvisateur NOM m s 0.01 0.27 0.01 0.20 +improvisateurs improvisateur NOM m p 0.01 0.27 0.00 0.07 +improvisation improvisation NOM f s 0.91 3.78 0.72 2.70 +improvisations improvisation NOM f p 0.91 3.78 0.19 1.08 +improvise improviser VER 7.09 8.92 1.92 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +improvisent improviser VER 7.09 8.92 0.22 0.41 ind:pre:3p; +improviser improviser VER 7.09 8.92 2.79 1.42 inf; +improvisera improviser VER 7.09 8.92 0.21 0.14 ind:fut:3s; +improviserai improviser VER 7.09 8.92 0.19 0.00 ind:fut:1s; +improviserons improviser VER 7.09 8.92 0.01 0.00 ind:fut:1p; +improvisez improviser VER 7.09 8.92 0.14 0.00 imp:pre:2p;ind:pre:2p; +improvisions improviser VER 7.09 8.92 0.00 0.07 ind:imp:1p; +improvisons improviser VER 7.09 8.92 0.20 0.00 imp:pre:1p;ind:pre:1p; +improvisèrent improviser VER 7.09 8.92 0.00 0.14 ind:pas:3p; +improvisé improviser VER m s 7.09 8.92 0.82 1.28 par:pas; +improvisée improviser VER f s 7.09 8.92 0.26 0.34 par:pas; +improvisées improvisé ADJ f p 0.60 4.19 0.04 0.20 +improvisés improviser VER m p 7.09 8.92 0.04 0.54 par:pas; +imprègne imprégner VER 1.76 17.70 0.25 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imprègnent imprégner VER 1.76 17.70 0.03 0.34 ind:pre:3p; +imprécateur imprécateur NOM m s 0.00 0.07 0.00 0.07 +imprécation imprécation NOM f s 0.12 3.38 0.11 0.34 +imprécations imprécation NOM f p 0.12 3.38 0.01 3.04 +imprécis imprécis ADJ m 0.36 7.36 0.28 2.77 +imprécisable imprécisable NOM s 0.00 0.20 0.00 0.20 +imprécise imprécis ADJ f s 0.36 7.36 0.07 2.97 +imprécises imprécis ADJ f p 0.36 7.36 0.01 1.62 +imprécision imprécision NOM f s 0.06 1.01 0.04 0.95 +imprécisions imprécision NOM f p 0.06 1.01 0.02 0.07 +imprudemment imprudemment ADV 0.34 1.28 0.34 1.28 +imprudence imprudence NOM f s 2.04 6.15 1.56 4.73 +imprudences imprudence NOM f p 2.04 6.15 0.48 1.42 +imprudent imprudent ADJ m s 4.34 4.80 3.10 2.50 +imprudente imprudent ADJ f s 4.34 4.80 0.87 1.22 +imprudentes imprudent ADJ f p 4.34 4.80 0.08 0.61 +imprudents imprudent ADJ m p 4.34 4.80 0.30 0.47 +imprégna imprégner VER 1.76 17.70 0.00 0.34 ind:pas:3s; +imprégnaient imprégner VER 1.76 17.70 0.02 0.61 ind:imp:3p; +imprégnais imprégner VER 1.76 17.70 0.00 0.07 ind:imp:1s; +imprégnait imprégner VER 1.76 17.70 0.12 1.96 ind:imp:3s; +imprégnant imprégner VER 1.76 17.70 0.00 0.41 par:pre; +imprégnation imprégnation NOM f s 0.01 0.68 0.01 0.54 +imprégnations imprégnation NOM f p 0.01 0.68 0.00 0.14 +imprégner imprégner VER 1.76 17.70 0.27 2.36 inf; +imprégnez imprégner VER 1.76 17.70 0.04 0.00 imp:pre:2p; +imprégnèrent imprégner VER 1.76 17.70 0.01 0.07 ind:pas:3p; +imprégné imprégner VER m s 1.76 17.70 0.63 4.19 par:pas; +imprégnée imprégner VER f s 1.76 17.70 0.10 2.09 par:pas; +imprégnées imprégner VER f p 1.76 17.70 0.10 1.28 par:pas; +imprégnés imprégner VER m p 1.76 17.70 0.18 1.55 par:pas; +impréparation impréparation NOM f s 0.00 0.14 0.00 0.14 +imprésario imprésario NOM m s 1.21 1.49 1.05 1.22 +imprésarios imprésario NOM m p 1.21 1.49 0.16 0.27 +imprésentable imprésentable ADJ s 0.00 0.20 0.00 0.14 +imprésentables imprésentable ADJ f p 0.00 0.20 0.00 0.07 +imprévisibilité imprévisibilité NOM f s 0.17 0.20 0.17 0.20 +imprévisible imprévisible ADJ s 4.92 12.43 4.01 7.30 +imprévisiblement imprévisiblement ADV 0.11 0.00 0.11 0.00 +imprévisibles imprévisible ADJ p 4.92 12.43 0.91 5.14 +imprévision imprévision NOM f s 0.00 0.07 0.00 0.07 +imprévoyance imprévoyance NOM f s 0.10 0.47 0.10 0.47 +imprévoyant imprévoyant ADJ m s 0.00 0.27 0.00 0.07 +imprévoyante imprévoyant ADJ f s 0.00 0.27 0.00 0.07 +imprévoyants imprévoyant ADJ m p 0.00 0.27 0.00 0.14 +imprévu imprévu NOM m s 3.22 5.47 2.67 4.86 +imprévue imprévu ADJ f s 2.72 8.99 1.56 3.18 +imprévues imprévu ADJ f p 2.72 8.99 0.28 0.95 +imprévus imprévu NOM m p 3.22 5.47 0.55 0.61 +impubliable impubliable ADJ s 0.01 0.34 0.01 0.27 +impubliables impubliable ADJ p 0.01 0.34 0.00 0.07 +impubère impubère ADJ f s 0.00 0.61 0.00 0.41 +impubères impubère ADJ p 0.00 0.61 0.00 0.20 +impécunieuse impécunieux ADJ f s 0.00 0.27 0.00 0.14 +impécunieux impécunieux ADJ m p 0.00 0.27 0.00 0.14 +impécuniosité impécuniosité NOM f s 0.00 0.07 0.00 0.07 +impédance impédance NOM f s 0.04 0.00 0.04 0.00 +impudemment impudemment ADV 0.13 0.27 0.13 0.27 +impudence impudence NOM f s 1.27 1.35 1.27 1.28 +impudences impudence NOM f p 1.27 1.35 0.00 0.07 +impudent impudent ADJ m s 1.13 1.35 0.47 0.61 +impudente impudent ADJ f s 1.13 1.35 0.30 0.47 +impudentes impudent ADJ f p 1.13 1.35 0.02 0.00 +impudents impudent ADJ m p 1.13 1.35 0.34 0.27 +impudeur impudeur NOM f s 0.25 4.19 0.25 4.05 +impudeurs impudeur NOM f p 0.25 4.19 0.00 0.14 +impudicité impudicité NOM f s 0.03 0.20 0.03 0.20 +impudique impudique ADJ s 0.65 3.04 0.63 2.23 +impudiquement impudiquement ADV 0.01 0.20 0.01 0.20 +impudiques impudique ADJ p 0.65 3.04 0.03 0.81 +impuissance impuissance NOM f s 2.50 16.62 2.50 16.28 +impuissances impuissance NOM f p 2.50 16.62 0.00 0.34 +impuissant impuissant ADJ m s 7.58 11.55 4.49 4.93 +impuissante impuissant ADJ f s 7.58 11.55 1.14 4.46 +impuissantes impuissant ADJ f p 7.58 11.55 0.23 0.34 +impuissants impuissant ADJ m p 7.58 11.55 1.72 1.82 +impulsif impulsif ADJ m s 2.24 1.96 1.40 1.28 +impulsifs impulsif ADJ m p 2.24 1.96 0.26 0.14 +impulsion impulsion NOM f s 4.58 8.38 3.00 6.01 +impulsions impulsion NOM f p 4.58 8.38 1.58 2.36 +impulsive impulsif ADJ f s 2.24 1.96 0.54 0.47 +impulsivement impulsivement ADV 0.07 0.34 0.07 0.34 +impulsives impulsif ADJ f p 2.24 1.96 0.04 0.07 +impulsivité impulsivité NOM f s 0.13 0.07 0.13 0.07 +impuni impuni ADJ m s 1.48 0.74 0.89 0.34 +impunie impuni ADJ f s 1.48 0.74 0.46 0.07 +impunis impuni ADJ m p 1.48 0.74 0.13 0.34 +impénitent impénitent ADJ m s 0.07 1.35 0.03 0.68 +impénitente impénitent ADJ f s 0.07 1.35 0.01 0.00 +impénitents impénitent ADJ m p 0.07 1.35 0.03 0.68 +impunité impunité NOM f s 0.93 1.42 0.93 1.42 +impunément impunément ADV 1.90 3.24 1.90 3.24 +impénétrabilité impénétrabilité NOM f s 0.00 0.20 0.00 0.20 +impénétrable impénétrable ADJ s 3.08 6.89 1.29 4.66 +impénétrables impénétrable ADJ p 3.08 6.89 1.79 2.23 +impur impur ADJ m s 3.91 4.53 1.44 2.23 +impératif impératif ADJ m s 1.38 3.78 1.21 1.55 +impératifs impératif NOM m p 0.69 3.04 0.32 1.22 +impérative impératif ADJ f s 1.38 3.78 0.16 1.35 +impérativement impérativement ADV 0.55 0.68 0.55 0.68 +impératives impératif ADJ f p 1.38 3.78 0.00 0.47 +impératrice impératrice NOM f s 3.03 6.35 2.96 6.08 +impératrices impératrice NOM f p 3.03 6.35 0.07 0.27 +impure impur ADJ f s 3.91 4.53 0.89 0.95 +impures impur ADJ f p 3.91 4.53 0.95 0.88 +impureté impureté NOM f s 0.71 1.42 0.41 1.01 +impuretés impureté NOM f p 0.71 1.42 0.31 0.41 +impérial impérial ADJ m s 6.77 19.12 2.10 7.64 +impériale impérial ADJ f s 6.77 19.12 4.21 7.77 +impériales impérial ADJ f p 6.77 19.12 0.13 2.09 +impérialisation impérialisation NOM f s 0.01 0.00 0.01 0.00 +impérialisme impérialisme NOM m s 0.64 1.35 0.64 1.35 +impérialiste impérialiste ADJ s 0.84 1.01 0.48 0.34 +impérialistes impérialiste ADJ p 0.84 1.01 0.35 0.68 +impériaux impérial ADJ m p 6.77 19.12 0.33 1.62 +impérieuse impérieux ADJ f s 0.54 12.09 0.03 4.66 +impérieusement impérieusement ADV 0.00 1.69 0.00 1.69 +impérieuses impérieux ADJ f p 0.54 12.09 0.13 0.88 +impérieux impérieux ADJ m 0.54 12.09 0.38 6.55 +impérissable impérissable ADJ s 0.11 2.03 0.09 1.55 +impérissables impérissable ADJ p 0.11 2.03 0.02 0.47 +impéritie impéritie NOM f s 0.00 0.20 0.00 0.20 +impurs impur ADJ m p 3.91 4.53 0.63 0.47 +imputable imputable ADJ s 0.03 0.74 0.02 0.54 +imputables imputable ADJ m p 0.03 0.74 0.01 0.20 +imputai imputer VER 0.90 2.77 0.00 0.07 ind:pas:1s; +imputaient imputer VER 0.90 2.77 0.02 0.20 ind:imp:3p; +imputais imputer VER 0.90 2.77 0.00 0.14 ind:imp:1s; +imputait imputer VER 0.90 2.77 0.00 0.41 ind:imp:3s; +imputant imputer VER 0.90 2.77 0.00 0.07 par:pre; +imputasse imputer VER 0.90 2.77 0.01 0.00 sub:imp:1s; +imputation imputation NOM f s 0.04 0.54 0.03 0.20 +imputations imputation NOM f p 0.04 0.54 0.01 0.34 +impute imputer VER 0.90 2.77 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +imputer imputer VER 0.90 2.77 0.26 0.81 inf; +imputera imputer VER 0.90 2.77 0.00 0.07 ind:fut:3s; +imputerai imputer VER 0.90 2.77 0.01 0.07 ind:fut:1s; +imputeront imputer VER 0.90 2.77 0.01 0.00 ind:fut:3p; +impétigo impétigo NOM m s 0.08 0.41 0.08 0.41 +imputât imputer VER 0.90 2.77 0.00 0.07 sub:imp:3s; +impétrant impétrant NOM m s 0.02 0.27 0.01 0.20 +impétrante impétrant NOM f s 0.02 0.27 0.00 0.07 +impétrants impétrant NOM m p 0.02 0.27 0.01 0.00 +imputrescible imputrescible ADJ s 0.00 0.47 0.00 0.41 +imputrescibles imputrescible ADJ m p 0.00 0.47 0.00 0.07 +imputèrent imputer VER 0.90 2.77 0.00 0.14 ind:pas:3p; +imputé imputer VER m s 0.90 2.77 0.03 0.14 par:pas; +imputée imputer VER f s 0.90 2.77 0.30 0.27 par:pas; +imputées imputer VER f p 0.90 2.77 0.01 0.07 par:pas; +impétueuse impétueux ADJ f s 1.44 2.97 0.55 0.81 +impétueusement impétueusement ADV 0.01 0.41 0.01 0.41 +impétueuses impétueux ADJ f p 1.44 2.97 0.00 0.14 +impétueux impétueux ADJ m 1.44 2.97 0.89 2.03 +impétuosité impétuosité NOM f s 0.18 0.95 0.18 0.95 +imputés imputer VER m p 0.90 2.77 0.03 0.20 par:pas; +in_bord in_bord ADJ m s 0.01 0.00 0.01 0.00 +in_bord in_bord NOM m s 0.01 0.00 0.01 0.00 +in_folio in_folio NOM m 0.00 0.61 0.00 0.61 +in_folios in_folios NOM m 0.00 0.20 0.00 0.20 +in_octavo in_octavo NOM m 0.01 0.34 0.01 0.34 +in_octavos in_octavos NOM m 0.00 0.07 0.00 0.07 +in_quarto in_quarto ADJ 0.00 0.07 0.00 0.07 +in_quarto in_quarto NOM m 0.00 0.07 0.00 0.07 +in_seize in_seize NOM m 0.00 0.07 0.00 0.07 +in_absentia in_absentia ADV 0.02 0.00 0.02 0.00 +in_abstracto in_abstracto ADV 0.00 0.20 0.00 0.20 +in_anima_vili in_anima_vili ADV 0.00 0.07 0.00 0.07 +in_cauda_venenum in_cauda_venenum ADV 0.00 0.14 0.00 0.14 +in_extenso in_extenso ADV 0.00 0.54 0.00 0.54 +in_extremis in_extremis ADV 0.07 2.64 0.07 2.64 +in_memoriam in_memoriam ADV 0.15 0.00 0.15 0.00 +in_pace in_pace NOM m 0.16 0.07 0.16 0.07 +in_petto in_petto ADV 0.00 1.22 0.00 1.22 +in_utero in_utero ADJ f p 0.05 0.00 0.05 0.00 +in_utero in_utero ADV 0.05 0.00 0.05 0.00 +in_vino_veritas in_vino_veritas ADV 0.05 0.00 0.05 0.00 +in_vitro in_vitro ADJ 0.22 0.34 0.22 0.34 +in_vivo in_vivo ADV 0.00 0.07 0.00 0.07 +in in ADJ 47.17 11.62 47.17 11.62 +inabordable inabordable ADJ s 0.22 0.34 0.22 0.34 +inabouti inabouti ADJ m s 0.00 0.14 0.00 0.07 +inaboutie inabouti ADJ f s 0.00 0.14 0.00 0.07 +inacceptable inacceptable ADJ s 4.09 2.70 3.75 2.36 +inacceptables inacceptable ADJ p 4.09 2.70 0.33 0.34 +inaccessibilité inaccessibilité NOM f s 0.01 0.27 0.01 0.27 +inaccessible inaccessible ADJ s 2.74 10.88 2.32 8.04 +inaccessibles inaccessible ADJ p 2.74 10.88 0.42 2.84 +inaccompli inaccompli ADJ m s 0.04 0.47 0.03 0.34 +inaccomplis inaccompli ADJ m p 0.04 0.47 0.01 0.14 +inaccomplissement inaccomplissement NOM m s 0.00 0.07 0.00 0.07 +inaccoutumé inaccoutumé ADJ m s 0.02 0.61 0.02 0.20 +inaccoutumée inaccoutumé ADJ f s 0.02 0.61 0.00 0.34 +inaccoutumées inaccoutumé ADJ f p 0.02 0.61 0.00 0.07 +inachevé inachevé ADJ m s 3.44 7.09 1.24 3.04 +inachevée inachevé ADJ f s 3.44 7.09 1.73 2.57 +inachevées inachevé ADJ f p 3.44 7.09 0.18 0.95 +inachevés inachevé ADJ m p 3.44 7.09 0.29 0.54 +inachèvement inachèvement NOM m s 0.01 0.54 0.01 0.54 +inactif inactif ADJ m s 1.29 1.22 0.74 0.34 +inactifs inactif ADJ m p 1.29 1.22 0.39 0.14 +inaction inaction NOM f s 0.12 2.36 0.12 2.36 +inactivation inactivation NOM f s 0.01 0.00 0.01 0.00 +inactive inactif ADJ f s 1.29 1.22 0.12 0.61 +inactives inactif ADJ f p 1.29 1.22 0.04 0.14 +inactivité inactivité NOM f s 0.17 0.74 0.17 0.74 +inactivé inactivé ADJ m s 0.01 0.00 0.01 0.00 +inactuel inactuel ADJ m s 0.00 0.07 0.00 0.07 +inadaptable inadaptable ADJ s 0.00 0.07 0.00 0.07 +inadaptation inadaptation NOM f s 0.05 0.54 0.05 0.54 +inadapté inadapté ADJ m s 0.39 0.54 0.16 0.34 +inadaptée inadapté ADJ f s 0.39 0.54 0.05 0.07 +inadaptées inadapté ADJ f p 0.39 0.54 0.01 0.00 +inadaptés inadapté ADJ m p 0.39 0.54 0.17 0.14 +inadmissible inadmissible ADJ s 2.29 3.04 2.24 2.64 +inadmissibles inadmissible ADJ p 2.29 3.04 0.05 0.41 +inadéquat inadéquat ADJ m s 0.61 0.81 0.14 0.27 +inadéquate inadéquat ADJ f s 0.61 0.81 0.29 0.07 +inadéquatement inadéquatement ADV 0.01 0.00 0.01 0.00 +inadéquates inadéquat ADJ f p 0.61 0.81 0.04 0.07 +inadéquation inadéquation NOM f s 0.01 0.07 0.01 0.07 +inadéquats inadéquat ADJ m p 0.61 0.81 0.15 0.41 +inadvertance inadvertance NOM f s 0.58 1.55 0.58 1.49 +inadvertances inadvertance NOM f p 0.58 1.55 0.00 0.07 +inaliénable inaliénable ADJ s 0.16 0.14 0.11 0.07 +inaliénables inaliénable ADJ m p 0.16 0.14 0.05 0.07 +inaltérable inaltérable ADJ s 0.58 5.14 0.47 4.66 +inaltérables inaltérable ADJ p 0.58 5.14 0.11 0.47 +inaltéré inaltéré ADJ m s 0.03 0.34 0.01 0.14 +inaltérée inaltéré ADJ f s 0.03 0.34 0.02 0.07 +inaltérées inaltéré ADJ f p 0.03 0.34 0.00 0.07 +inaltérés inaltéré ADJ m p 0.03 0.34 0.00 0.07 +inamical inamical ADJ m s 0.23 0.41 0.04 0.34 +inamicale inamical ADJ f s 0.23 0.41 0.17 0.07 +inamicaux inamical ADJ m p 0.23 0.41 0.02 0.00 +inamovible inamovible ADJ s 0.17 0.95 0.16 0.41 +inamovibles inamovible ADJ p 0.17 0.95 0.01 0.54 +inanalysable inanalysable ADJ f s 0.00 0.34 0.00 0.07 +inanalysables inanalysable ADJ p 0.00 0.34 0.00 0.27 +inane inane ADJ s 0.00 0.07 0.00 0.07 +inanimation inanimation NOM f s 0.00 0.07 0.00 0.07 +inanimé inanimé ADJ m s 0.94 3.11 0.48 1.62 +inanimée inanimé ADJ f s 0.94 3.11 0.12 0.74 +inanimées inanimé ADJ f p 0.94 3.11 0.03 0.20 +inanimés inanimé ADJ m p 0.94 3.11 0.32 0.54 +inanition inanition NOM f s 0.02 1.62 0.02 1.62 +inanité inanité NOM f s 0.14 1.28 0.14 1.28 +inapaisable inapaisable ADJ s 0.00 0.47 0.00 0.47 +inapaisée inapaisé ADJ f s 0.01 0.14 0.00 0.07 +inapaisées inapaisé ADJ f p 0.01 0.14 0.00 0.07 +inapaisés inapaisé ADJ m p 0.01 0.14 0.01 0.00 +inaperçu inaperçu ADJ m s 3.37 7.57 1.66 2.91 +inaperçue inaperçu ADJ f s 3.37 7.57 0.81 2.97 +inaperçues inaperçu ADJ f p 3.37 7.57 0.23 0.68 +inaperçus inaperçu ADJ m p 3.37 7.57 0.68 1.01 +inapplicable inapplicable ADJ s 0.03 0.07 0.02 0.00 +inapplicables inapplicable ADJ m p 0.03 0.07 0.01 0.07 +inapplication inapplication NOM f s 0.00 0.07 0.00 0.07 +inapprivoisables inapprivoisable ADJ p 0.00 0.07 0.00 0.07 +inapprochable inapprochable ADJ s 0.04 0.00 0.04 0.00 +inapproprié inapproprié ADJ m s 1.59 0.07 0.86 0.00 +inappropriée inapproprié ADJ f s 1.59 0.07 0.52 0.07 +inappropriées inapproprié ADJ f p 1.59 0.07 0.13 0.00 +inappropriés inapproprié ADJ m p 1.59 0.07 0.08 0.00 +inappréciable inappréciable ADJ s 0.00 0.68 0.00 0.61 +inappréciables inappréciable ADJ m p 0.00 0.68 0.00 0.07 +inappréciée inapprécié ADJ f s 0.01 0.00 0.01 0.00 +inappétence inappétence NOM f s 0.00 0.27 0.00 0.27 +inapte inapte ADJ s 2.00 2.03 1.30 1.55 +inaptes inapte ADJ m p 2.00 2.03 0.70 0.47 +inaptitude inaptitude NOM f s 0.30 1.01 0.29 1.01 +inaptitudes inaptitude NOM f p 0.30 1.01 0.01 0.00 +inarrangeable inarrangeable ADJ s 0.00 0.07 0.00 0.07 +inarticulé inarticulé ADJ m s 0.15 1.55 0.03 0.20 +inarticulée inarticulé ADJ f s 0.15 1.55 0.02 0.14 +inarticulées inarticulé ADJ f p 0.15 1.55 0.00 0.20 +inarticulés inarticulé ADJ m p 0.15 1.55 0.10 1.01 +inassimilable inassimilable ADJ s 0.00 0.14 0.00 0.07 +inassimilables inassimilable ADJ p 0.00 0.14 0.00 0.07 +inassouvi inassouvi ADJ m s 0.09 1.96 0.04 0.41 +inassouvie inassouvi ADJ f s 0.09 1.96 0.02 0.47 +inassouvies inassouvi ADJ f p 0.09 1.96 0.00 0.20 +inassouvis inassouvi ADJ m p 0.09 1.96 0.02 0.88 +inassouvissable inassouvissable ADJ m s 0.00 0.27 0.00 0.14 +inassouvissables inassouvissable ADJ p 0.00 0.27 0.00 0.14 +inassouvissement inassouvissement NOM m s 0.00 0.07 0.00 0.07 +inassurable inassurable ADJ s 0.02 0.00 0.02 0.00 +inattaquable inattaquable ADJ s 0.52 1.15 0.48 1.08 +inattaquables inattaquable ADJ m p 0.52 1.15 0.03 0.07 +inatteignable inatteignable ADJ m s 0.19 0.34 0.16 0.34 +inatteignables inatteignable ADJ p 0.19 0.34 0.04 0.00 +inattendu inattendu ADJ m s 6.10 25.14 3.58 10.41 +inattendue inattendu ADJ f s 6.10 25.14 1.90 10.41 +inattendues inattendu ADJ f p 6.10 25.14 0.43 2.16 +inattendus inattendu ADJ m p 6.10 25.14 0.20 2.16 +inattentif inattentif ADJ m s 0.17 1.62 0.16 0.88 +inattentifs inattentif ADJ m p 0.17 1.62 0.00 0.34 +inattention inattention NOM f s 0.52 2.30 0.52 2.30 +inattentive inattentif ADJ f s 0.17 1.62 0.01 0.27 +inattentives inattentif ADJ f p 0.17 1.62 0.00 0.14 +inattrapable inattrapable ADJ s 0.00 0.07 0.00 0.07 +inaudible inaudible ADJ s 5.34 3.65 4.68 2.23 +inaudibles inaudible ADJ p 5.34 3.65 0.66 1.42 +inaugura inaugurer VER 2.41 5.54 0.00 0.20 ind:pas:3s; +inaugurai inaugurer VER 2.41 5.54 0.00 0.20 ind:pas:1s; +inaugurais inaugurer VER 2.41 5.54 0.00 0.07 ind:imp:1s; +inaugurait inaugurer VER 2.41 5.54 0.04 0.81 ind:imp:3s; +inaugural inaugural ADJ m s 0.26 1.01 0.22 0.41 +inaugurale inaugural ADJ f s 0.26 1.01 0.04 0.54 +inaugurales inaugural ADJ f p 0.26 1.01 0.00 0.07 +inaugurant inaugurer VER 2.41 5.54 0.01 0.41 par:pre; +inauguration inauguration NOM f s 3.12 2.77 2.99 2.57 +inaugurations inauguration NOM f p 3.12 2.77 0.12 0.20 +inaugure inaugurer VER 2.41 5.54 0.86 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inaugurer inaugurer VER 2.41 5.54 0.62 1.28 inf; +inaugurera inaugurer VER 2.41 5.54 0.23 0.00 ind:fut:3s; +inaugurions inaugurer VER 2.41 5.54 0.00 0.07 ind:imp:1p; +inaugurons inaugurer VER 2.41 5.54 0.01 0.14 imp:pre:1p;ind:pre:1p; +inaugurèrent inaugurer VER 2.41 5.54 0.00 0.14 ind:pas:3p; +inauguré inaugurer VER m s 2.41 5.54 0.55 1.15 par:pas; +inaugurée inaugurer VER f s 2.41 5.54 0.07 0.41 par:pas; +inaugurés inaugurer VER m p 2.41 5.54 0.01 0.14 par:pas; +inauthenticité inauthenticité NOM f s 0.00 0.07 0.00 0.07 +inaverti inaverti ADJ m s 0.00 0.07 0.00 0.07 +inavouable inavouable ADJ s 1.27 2.84 0.96 1.76 +inavouablement inavouablement ADV 0.00 0.07 0.00 0.07 +inavouables inavouable ADJ p 1.27 2.84 0.32 1.08 +inavoué inavoué ADJ m s 0.28 2.09 0.13 0.81 +inavouée inavoué ADJ f s 0.28 2.09 0.01 0.81 +inavouées inavoué ADJ f p 0.28 2.09 0.00 0.34 +inavoués inavoué ADJ m p 0.28 2.09 0.14 0.14 +inca inca ADJ 0.45 0.61 0.37 0.34 +incalculable incalculable ADJ s 0.94 2.09 0.77 1.55 +incalculables incalculable ADJ p 0.94 2.09 0.17 0.54 +incandescence incandescence NOM f s 0.06 1.15 0.06 1.01 +incandescences incandescence NOM f p 0.06 1.15 0.00 0.14 +incandescent incandescent ADJ m s 0.60 4.73 0.15 1.96 +incandescente incandescent ADJ f s 0.60 4.73 0.42 1.15 +incandescentes incandescent ADJ f p 0.60 4.73 0.01 1.15 +incandescents incandescent ADJ m p 0.60 4.73 0.02 0.47 +incantation incantation NOM f s 1.92 2.50 1.33 1.08 +incantations incantation NOM f p 1.92 2.50 0.59 1.42 +incantatoire incantatoire ADJ s 0.01 1.01 0.01 0.74 +incantatoires incantatoire ADJ p 0.01 1.01 0.00 0.27 +incantatrice incantateur NOM f s 0.00 0.07 0.00 0.07 +incapable incapable ADJ s 20.93 46.22 17.38 38.72 +incapables incapable ADJ p 20.93 46.22 3.55 7.50 +incapacitant incapacitant ADJ m s 0.07 0.07 0.05 0.07 +incapacitante incapacitant ADJ f s 0.07 0.07 0.01 0.00 +incapacitants incapacitant ADJ m p 0.07 0.07 0.01 0.00 +incapacité incapacité NOM f s 2.75 3.99 2.71 3.85 +incapacités incapacité NOM f p 2.75 3.99 0.04 0.14 +incarcère incarcérer VER 1.70 1.35 0.06 0.07 imp:pre:2s;ind:pre:3s; +incarcération incarcération NOM f s 0.84 0.81 0.84 0.81 +incarcérer incarcérer VER 1.70 1.35 0.24 0.07 inf; +incarcérez incarcérer VER 1.70 1.35 0.01 0.00 imp:pre:2p; +incarcéré incarcérer VER m s 1.70 1.35 1.19 0.74 par:pas; +incarcérée incarcérer VER f s 1.70 1.35 0.10 0.07 par:pas; +incarcérées incarcérer VER f p 1.70 1.35 0.01 0.07 par:pas; +incarcérés incarcérer VER m p 1.70 1.35 0.09 0.34 par:pas; +incarna incarner VER 3.31 16.28 0.00 0.20 ind:pas:3s; +incarnadines incarnadin ADJ f p 0.00 0.14 0.00 0.14 +incarnai incarner VER 3.31 16.28 0.00 0.07 ind:pas:1s; +incarnaient incarner VER 3.31 16.28 0.00 1.22 ind:imp:3p; +incarnais incarner VER 3.31 16.28 0.04 0.47 ind:imp:1s;ind:imp:2s; +incarnait incarner VER 3.31 16.28 0.15 4.32 ind:imp:3s; +incarnant incarner VER 3.31 16.28 0.20 0.88 par:pre; +incarnat incarnat NOM m s 0.02 0.41 0.02 0.41 +incarnation incarnation NOM f s 1.03 5.20 0.96 4.26 +incarnations incarnation NOM f p 1.03 5.20 0.07 0.95 +incarne incarner VER 3.31 16.28 1.28 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incarnent incarner VER 3.31 16.28 0.12 0.54 ind:pre:3p; +incarner incarner VER 3.31 16.28 0.36 2.70 inf; +incarnera incarner VER 3.31 16.28 0.04 0.07 ind:fut:3s; +incarneraient incarner VER 3.31 16.28 0.00 0.07 cnd:pre:3p; +incarnerais incarner VER 3.31 16.28 0.01 0.00 cnd:pre:1s; +incarnerait incarner VER 3.31 16.28 0.01 0.07 cnd:pre:3s; +incarnerez incarner VER 3.31 16.28 0.01 0.00 ind:fut:2p; +incarnes incarner VER 3.31 16.28 0.17 0.07 ind:pre:2s; +incarnez incarner VER 3.31 16.28 0.08 0.00 ind:pre:2p; +incarniez incarner VER 3.31 16.28 0.01 0.00 ind:imp:2p; +incarnions incarner VER 3.31 16.28 0.00 0.20 ind:imp:1p; +incarnât incarner VER 3.31 16.28 0.01 0.07 sub:imp:3s; +incarné incarné ADJ m s 1.69 1.22 0.98 0.47 +incarnée incarné ADJ f s 1.69 1.22 0.63 0.61 +incarnées incarné ADJ f p 1.69 1.22 0.01 0.14 +incarnés incarné ADJ m p 1.69 1.22 0.06 0.00 +incartade incartade NOM f s 0.11 2.03 0.11 0.81 +incartades incartade NOM f p 0.11 2.03 0.00 1.22 +incas inca ADJ p 0.45 0.61 0.09 0.27 +incassable incassable ADJ s 0.88 0.88 0.80 0.54 +incassables incassable ADJ p 0.88 0.88 0.08 0.34 +incendia incendier VER 4.37 5.81 0.01 0.34 ind:pas:3s; +incendiaient incendier VER 4.37 5.81 0.00 0.14 ind:imp:3p; +incendiaire incendiaire NOM s 1.35 0.81 0.83 0.41 +incendiaires incendiaire NOM p 1.35 0.81 0.51 0.41 +incendiait incendier VER 4.37 5.81 0.04 1.01 ind:imp:3s; +incendiant incendier VER 4.37 5.81 0.01 0.41 par:pre; +incendie incendie NOM m s 19.84 22.43 17.75 18.04 +incendient incendier VER 4.37 5.81 0.02 0.20 ind:pre:3p; +incendier incendier VER 4.37 5.81 0.93 1.89 inf; +incendieras incendier VER 4.37 5.81 0.01 0.00 ind:fut:2s; +incendies incendie NOM m p 19.84 22.43 2.09 4.39 +incendiez incendier VER 4.37 5.81 0.13 0.00 imp:pre:2p;ind:pre:2p; +incendièrent incendier VER 4.37 5.81 0.00 0.07 ind:pas:3p; +incendié incendier VER m s 4.37 5.81 1.42 0.81 par:pas; +incendiée incendier VER f s 4.37 5.81 0.20 0.27 par:pas; +incendiées incendié ADJ f p 0.89 2.43 0.28 0.54 +incendiés incendier VER m p 4.37 5.81 0.04 0.07 par:pas; +incernable incernable ADJ m s 0.00 0.14 0.00 0.14 +incertain incertain ADJ m s 4.23 20.95 1.49 8.78 +incertaine incertain ADJ f s 4.23 20.95 1.27 6.76 +incertaines incertain ADJ f p 4.23 20.95 0.40 2.64 +incertains incertain ADJ m p 4.23 20.95 1.08 2.77 +incertitude incertitude NOM f s 2.52 11.89 2.31 10.00 +incertitudes incertitude NOM f p 2.52 11.89 0.21 1.89 +incessamment incessamment ADV 0.48 3.58 0.48 3.58 +incessant incessant ADJ m s 1.79 12.23 0.65 4.12 +incessante incessant ADJ f s 1.79 12.23 0.33 3.31 +incessantes incessant ADJ f p 1.79 12.23 0.44 2.97 +incessants incessant ADJ m p 1.79 12.23 0.37 1.82 +inceste inceste NOM m s 2.11 3.04 2.08 2.97 +incestes inceste NOM m p 2.11 3.04 0.03 0.07 +incestueuse incestueux ADJ f s 0.69 1.76 0.17 0.41 +incestueuses incestueux ADJ f p 0.69 1.76 0.02 0.34 +incestueux incestueux ADJ m 0.69 1.76 0.50 1.01 +inch_allah inch_allah ONO 0.27 0.47 0.27 0.47 +inchangeable inchangeable ADJ f s 0.02 0.07 0.02 0.07 +inchangé inchangé ADJ m s 1.22 1.69 0.37 0.68 +inchangée inchangé ADJ f s 1.22 1.69 0.54 0.61 +inchangées inchangé ADJ f p 1.22 1.69 0.16 0.14 +inchangés inchangé ADJ m p 1.22 1.69 0.15 0.27 +inchavirable inchavirable ADJ s 0.01 0.00 0.01 0.00 +inchiffrable inchiffrable ADJ s 0.00 0.14 0.00 0.14 +incidemment incidemment ADV 0.27 1.28 0.27 1.28 +incidence incidence NOM f s 0.82 1.35 0.68 0.81 +incidences incidence NOM f p 0.82 1.35 0.14 0.54 +incident incident NOM m s 20.35 29.93 17.73 21.08 +incidente incident ADJ f s 1.20 1.69 0.00 0.14 +incidentes incident ADJ f p 1.20 1.69 0.00 0.14 +incidents incident NOM m p 20.35 29.93 2.62 8.85 +incinère incinérer VER 3.79 1.76 0.13 0.07 ind:pre:1s;ind:pre:3s; +incinérait incinérer VER 3.79 1.76 0.00 0.07 ind:imp:3s; +incinérant incinérer VER 3.79 1.76 0.01 0.00 par:pre; +incinérateur incinérateur NOM m s 0.67 0.27 0.63 0.20 +incinérateurs incinérateur NOM m p 0.67 0.27 0.04 0.07 +incinération incinération NOM f s 0.48 1.62 0.48 1.62 +incinérer incinérer VER 3.79 1.76 1.50 0.54 inf; +incinérez incinérer VER 3.79 1.76 0.06 0.00 imp:pre:2p;ind:pre:2p; +incinéré incinérer VER m s 3.79 1.76 1.02 0.54 par:pas; +incinérée incinérer VER f s 3.79 1.76 0.66 0.47 par:pas; +incinérés incinérer VER m p 3.79 1.76 0.41 0.07 par:pas; +incirconcis incirconcis ADJ m 0.01 0.27 0.01 0.27 +incisa inciser VER 1.05 1.82 0.00 0.07 ind:pas:3s; +incisaient inciser VER 1.05 1.82 0.00 0.20 ind:imp:3p; +incisait inciser VER 1.05 1.82 0.00 0.27 ind:imp:3s; +incisant inciser VER 1.05 1.82 0.11 0.41 par:pre; +incise inciser VER 1.05 1.82 0.17 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inciser inciser VER 1.05 1.82 0.36 0.27 inf; +incisera inciser VER 1.05 1.82 0.00 0.07 ind:fut:3s; +incises inciser VER 1.05 1.82 0.02 0.00 ind:pre:2s; +incisez inciser VER 1.05 1.82 0.04 0.07 imp:pre:2p;ind:pre:2p; +incisif incisif ADJ m s 0.18 1.89 0.07 0.88 +incisifs incisif ADJ m p 0.18 1.89 0.03 0.41 +incision incision NOM f s 2.62 0.68 2.27 0.47 +incisions incision NOM f p 2.62 0.68 0.35 0.20 +incisive incisive NOM f s 0.67 1.42 0.28 0.20 +incisives incisive NOM f p 0.67 1.42 0.39 1.22 +incisé inciser VER m s 1.05 1.82 0.19 0.07 par:pas; +incisée inciser VER f s 1.05 1.82 0.12 0.07 par:pas; +incisées inciser VER f p 1.05 1.82 0.03 0.07 par:pas; +incisés inciser VER m p 1.05 1.82 0.01 0.07 par:pas; +incita inciter VER 6.32 10.47 0.14 0.47 ind:pas:3s; +incitaient inciter VER 6.32 10.47 0.01 0.88 ind:imp:3p; +incitait inciter VER 6.32 10.47 0.38 2.16 ind:imp:3s; +incitant inciter VER 6.32 10.47 0.08 0.47 par:pre; +incitateur incitateur NOM m s 0.04 0.07 0.04 0.00 +incitatif incitatif ADJ m s 0.01 0.07 0.01 0.07 +incitation incitation NOM f s 1.24 0.54 1.24 0.54 +incitatrice incitateur NOM f s 0.04 0.07 0.00 0.07 +incite inciter VER 6.32 10.47 1.61 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incitent inciter VER 6.32 10.47 0.37 0.68 ind:pre:3p; +inciter inciter VER 6.32 10.47 2.01 2.43 inf; +incitera inciter VER 6.32 10.47 0.10 0.14 ind:fut:3s; +inciterai inciter VER 6.32 10.47 0.14 0.00 ind:fut:1s; +inciteraient inciter VER 6.32 10.47 0.01 0.07 cnd:pre:3p; +inciterais inciter VER 6.32 10.47 0.02 0.00 cnd:pre:1s; +inciterait inciter VER 6.32 10.47 0.14 0.20 cnd:pre:3s; +inciteront inciter VER 6.32 10.47 0.01 0.00 ind:fut:3p; +incitez inciter VER 6.32 10.47 0.23 0.07 imp:pre:2p;ind:pre:2p; +incitiez inciter VER 6.32 10.47 0.03 0.00 sub:pre:2p; +incitèrent inciter VER 6.32 10.47 0.01 0.14 ind:pas:3p; +incité inciter VER m s 6.32 10.47 0.77 0.61 par:pas; +incitée inciter VER f s 6.32 10.47 0.06 0.47 par:pas; +incités inciter VER m p 6.32 10.47 0.20 0.07 par:pas; +incivil incivil ADJ m s 0.00 0.20 0.00 0.07 +incivils incivil ADJ m p 0.00 0.20 0.00 0.14 +inclassable inclassable ADJ m s 0.30 0.20 0.02 0.14 +inclassables inclassable ADJ p 0.30 0.20 0.28 0.07 +inclina incliner VER 7.25 50.00 0.23 8.85 ind:pas:3s; +inclinable inclinable ADJ m s 0.07 0.07 0.04 0.07 +inclinables inclinable ADJ m p 0.07 0.07 0.03 0.00 +inclinai incliner VER 7.25 50.00 0.00 0.68 ind:pas:1s; +inclinaient incliner VER 7.25 50.00 0.10 2.30 ind:imp:3p; +inclinais incliner VER 7.25 50.00 0.00 1.08 ind:imp:1s; +inclinaison inclinaison NOM f s 0.78 3.04 0.73 2.77 +inclinaisons inclinaison NOM f p 0.78 3.04 0.05 0.27 +inclinait incliner VER 7.25 50.00 0.13 4.12 ind:imp:3s; +inclinant incliner VER 7.25 50.00 0.21 4.19 par:pre; +inclinante inclinant ADJ f s 0.00 0.07 0.00 0.07 +inclination inclination NOM f s 0.52 2.57 0.38 2.03 +inclinations inclination NOM f p 0.52 2.57 0.14 0.54 +incline incliner VER 7.25 50.00 3.79 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +inclinent incliner VER 7.25 50.00 0.41 1.96 ind:pre:3p; +incliner incliner VER 7.25 50.00 0.78 5.81 inf; +inclinerai incliner VER 7.25 50.00 0.04 0.00 ind:fut:1s; +inclineraient incliner VER 7.25 50.00 0.00 0.20 cnd:pre:3p; +inclinerais incliner VER 7.25 50.00 0.16 0.14 cnd:pre:1s; +inclinerait incliner VER 7.25 50.00 0.00 0.34 cnd:pre:3s; +inclineras incliner VER 7.25 50.00 0.03 0.00 ind:fut:2s; +inclinerez incliner VER 7.25 50.00 0.01 0.00 ind:fut:2p; +inclineront incliner VER 7.25 50.00 0.12 0.07 ind:fut:3p; +inclinez incliner VER 7.25 50.00 0.46 0.00 imp:pre:2p;ind:pre:2p; +inclinions incliner VER 7.25 50.00 0.00 0.14 ind:imp:1p; +inclinomètre inclinomètre NOM m s 0.01 0.00 0.01 0.00 +inclinons incliner VER 7.25 50.00 0.23 0.00 imp:pre:1p;ind:pre:1p; +inclinât incliner VER 7.25 50.00 0.00 0.20 sub:imp:3s; +inclinèrent incliner VER 7.25 50.00 0.01 0.61 ind:pas:3p; +incliné incliner VER m s 7.25 50.00 0.33 5.74 par:pas; +inclinée incliné ADJ f s 0.19 5.54 0.12 1.35 +inclinées incliner VER f p 7.25 50.00 0.10 0.34 par:pas; +inclinés incliner VER m p 7.25 50.00 0.08 0.81 par:pas; +incluais inclure VER 8.12 3.51 0.00 0.07 ind:imp:1s; +incluait inclure VER 8.12 3.51 0.20 0.41 ind:imp:3s; +incluant inclure VER 8.12 3.51 0.91 0.27 par:pre; +inclue inclure VER 8.12 3.51 0.40 0.07 sub:pre:1s;sub:pre:3s; +incluent inclure VER 8.12 3.51 0.25 0.00 ind:pre:3p; +incluez inclure VER 8.12 3.51 0.10 0.00 imp:pre:2p;ind:pre:2p; +inclémence inclémence NOM f s 0.00 0.27 0.00 0.20 +inclémences inclémence NOM f p 0.00 0.27 0.00 0.07 +inclément inclément ADJ m s 0.02 0.07 0.02 0.00 +inclémente inclément ADJ f s 0.02 0.07 0.00 0.07 +incluons inclure VER 8.12 3.51 0.00 0.07 ind:pre:1p; +inclura inclure VER 8.12 3.51 0.02 0.00 ind:fut:3s; +inclurai inclure VER 8.12 3.51 0.03 0.00 ind:fut:1s; +inclurait inclure VER 8.12 3.51 0.06 0.00 cnd:pre:3s; +inclure inclure VER 8.12 3.51 1.85 0.95 ind:pre:2p;inf; +inclus inclure VER m 8.12 3.51 2.53 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +incluse inclus ADJ f s 0.70 0.81 0.45 0.41 +incluses inclus ADJ f p 0.70 0.81 0.04 0.20 +inclusion inclusion NOM f s 0.11 0.14 0.11 0.14 +inclusive inclusif ADJ f s 0.01 0.07 0.01 0.07 +inclusivement inclusivement ADV 0.01 0.27 0.01 0.27 +inclut inclure VER 8.12 3.51 1.78 0.54 ind:pre:3s;ind:pas:3s; +incoercible incoercible ADJ s 0.12 0.61 0.11 0.34 +incoerciblement incoerciblement ADV 0.00 0.20 0.00 0.20 +incoercibles incoercible ADJ p 0.12 0.61 0.01 0.27 +incognito incognito ADV 1.87 2.36 1.87 2.36 +incognitos incognito NOM m p 0.30 1.55 0.00 0.07 +incohérence incohérence NOM f s 1.11 2.70 0.77 2.09 +incohérences incohérence NOM f p 1.11 2.70 0.34 0.61 +incohérent incohérent ADJ m s 0.86 5.27 0.27 1.76 +incohérente incohérent ADJ f s 0.86 5.27 0.29 1.28 +incohérentes incohérent ADJ f p 0.86 5.27 0.06 1.15 +incohérents incohérent ADJ m p 0.86 5.27 0.25 1.08 +incoiffables incoiffable ADJ m p 0.01 0.14 0.01 0.14 +incollable incollable ADJ m s 0.10 0.14 0.10 0.14 +incolore incolore ADJ s 0.14 5.00 0.14 3.92 +incolores incolore ADJ p 0.14 5.00 0.00 1.08 +incombaient incomber VER 1.43 5.95 0.01 0.61 ind:imp:3p; +incombait incomber VER 1.43 5.95 0.04 2.70 ind:imp:3s; +incombant incomber VER 1.43 5.95 0.02 0.07 par:pre; +incombe incomber VER 1.43 5.95 1.28 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incombent incomber VER 1.43 5.95 0.03 0.34 ind:pre:3p; +incomber incomber VER 1.43 5.95 0.02 0.14 inf; +incombera incomber VER 1.43 5.95 0.02 0.07 ind:fut:3s; +incomberait incomber VER 1.43 5.95 0.01 0.20 cnd:pre:3s; +incombèrent incomber VER 1.43 5.95 0.00 0.07 ind:pas:3p; +incombustible incombustible ADJ f s 0.02 0.00 0.01 0.00 +incombustibles incombustible ADJ p 0.02 0.00 0.01 0.00 +incomestible incomestible ADJ f s 0.00 0.14 0.00 0.14 +incommensurable incommensurable ADJ s 0.28 1.89 0.16 1.82 +incommensurablement incommensurablement ADV 0.00 0.14 0.00 0.14 +incommensurables incommensurable ADJ p 0.28 1.89 0.12 0.07 +incommodait incommoder VER 0.85 1.96 0.01 0.61 ind:imp:3s; +incommodant incommodant ADJ m s 0.05 0.07 0.04 0.00 +incommodante incommodant ADJ f s 0.05 0.07 0.00 0.07 +incommodantes incommodant ADJ f p 0.05 0.07 0.01 0.00 +incommode incommoder VER 0.85 1.96 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incommoder incommoder VER 0.85 1.96 0.05 0.34 inf; +incommodera incommoder VER 0.85 1.96 0.14 0.00 ind:fut:3s; +incommoderai incommoder VER 0.85 1.96 0.11 0.00 ind:fut:1s; +incommodes incommode ADJ p 0.23 1.55 0.00 0.47 +incommodez incommoder VER 0.85 1.96 0.17 0.00 imp:pre:2p;ind:pre:2p; +incommodité incommodité NOM f s 0.00 0.68 0.00 0.41 +incommodités incommodité NOM f p 0.00 0.68 0.00 0.27 +incommodé incommoder VER m s 0.85 1.96 0.07 0.47 par:pas; +incommodée incommoder VER f s 0.85 1.96 0.03 0.14 par:pas; +incommodées incommoder VER f p 0.85 1.96 0.00 0.07 par:pas; +incommodés incommoder VER m p 0.85 1.96 0.00 0.14 par:pas; +incommunicabilité incommunicabilité NOM f s 0.12 0.07 0.12 0.07 +incommunicable incommunicable ADJ s 0.00 1.42 0.00 1.35 +incommunicables incommunicable ADJ p 0.00 1.42 0.00 0.07 +incomparable incomparable ADJ s 1.95 9.32 1.64 7.43 +incomparablement incomparablement ADV 0.01 1.08 0.01 1.08 +incomparables incomparable ADJ p 1.95 9.32 0.31 1.89 +incompatibilité incompatibilité NOM f s 0.71 0.61 0.59 0.47 +incompatibilités incompatibilité NOM f p 0.71 0.61 0.11 0.14 +incompatible incompatible ADJ s 1.23 3.11 0.66 1.89 +incompatibles incompatible ADJ p 1.23 3.11 0.56 1.22 +incomplet incomplet ADJ m s 2.27 2.43 1.14 1.15 +incomplets incomplet ADJ m p 2.27 2.43 0.17 0.27 +incomplète incomplet ADJ f s 2.27 2.43 0.57 0.54 +incomplètement incomplètement ADV 0.00 0.20 0.00 0.20 +incomplètes incomplet ADJ f p 2.27 2.43 0.40 0.47 +incomplétude incomplétude NOM f s 0.01 0.00 0.01 0.00 +incompressible incompressible ADJ s 0.03 0.00 0.03 0.00 +incompris incompris ADJ m 0.93 1.35 0.73 0.74 +incomprise incompris ADJ f s 0.93 1.35 0.18 0.54 +incomprises incompris NOM f p 0.29 0.34 0.10 0.07 +incompréhensible incompréhensible ADJ s 5.16 17.97 4.54 11.89 +incompréhensiblement incompréhensiblement ADV 0.00 0.47 0.00 0.47 +incompréhensibles incompréhensible ADJ p 5.16 17.97 0.63 6.08 +incompréhensif incompréhensif ADJ m s 0.01 0.47 0.01 0.27 +incompréhensifs incompréhensif ADJ m p 0.01 0.47 0.00 0.20 +incompréhension incompréhension NOM f s 0.65 4.59 0.65 4.53 +incompréhensions incompréhension NOM f p 0.65 4.59 0.00 0.07 +incompétence incompétence NOM f s 1.64 1.35 1.62 1.28 +incompétences incompétence NOM f p 1.64 1.35 0.02 0.07 +incompétent incompétent ADJ m s 2.30 0.81 1.25 0.41 +incompétente incompétent ADJ f s 2.30 0.81 0.35 0.14 +incompétents incompétent ADJ m p 2.30 0.81 0.69 0.27 +inconcevable inconcevable ADJ s 1.91 5.68 1.75 5.27 +inconcevablement inconcevablement ADV 0.00 0.07 0.00 0.07 +inconcevables inconcevable ADJ p 1.91 5.68 0.16 0.41 +inconciliable inconciliable ADJ m s 0.35 1.22 0.01 0.61 +inconciliables inconciliable ADJ p 0.35 1.22 0.34 0.61 +inconditionnel inconditionnel ADJ m s 1.20 0.54 0.45 0.27 +inconditionnelle inconditionnel ADJ f s 1.20 0.54 0.71 0.27 +inconditionnellement inconditionnellement ADV 0.05 0.00 0.05 0.00 +inconditionnelles inconditionnel ADJ f p 1.20 0.54 0.02 0.00 +inconditionnels inconditionnel ADJ m p 1.20 0.54 0.01 0.00 +inconditionné inconditionné ADJ m s 0.00 0.20 0.00 0.07 +inconditionnée inconditionné ADJ f s 0.00 0.20 0.00 0.14 +inconduite inconduite NOM f s 0.06 0.68 0.06 0.68 +inconfiance inconfiance NOM f s 0.00 0.14 0.00 0.14 +inconfort inconfort NOM m s 0.37 2.16 0.37 2.16 +inconfortable inconfortable ADJ s 1.90 2.09 1.77 1.89 +inconfortablement inconfortablement ADV 0.01 0.34 0.01 0.34 +inconfortables inconfortable ADJ p 1.90 2.09 0.13 0.20 +incongelables incongelable ADJ f p 0.00 0.07 0.00 0.07 +incongru incongru ADJ m s 0.32 7.50 0.25 3.72 +incongrue incongru ADJ f s 0.32 7.50 0.05 2.03 +incongrues incongru ADJ f p 0.32 7.50 0.00 0.68 +incongruité incongruité NOM f s 0.11 1.49 0.01 1.22 +incongruités incongruité NOM f p 0.11 1.49 0.10 0.27 +incongrus incongru ADJ m p 0.32 7.50 0.02 1.08 +inconnaissable inconnaissable ADJ f s 0.01 0.41 0.01 0.41 +inconnaissance inconnaissance NOM f s 0.00 0.07 0.00 0.07 +inconnu inconnu NOM m s 24.25 40.41 13.29 22.97 +inconnue inconnu ADJ f s 23.13 61.82 7.24 17.16 +inconnues inconnu ADJ f p 23.13 61.82 2.23 9.05 +inconnus inconnu NOM m p 24.25 40.41 5.50 9.19 +inconsciemment inconsciemment ADV 2.00 6.28 2.00 6.28 +inconscience inconscience NOM f s 1.23 6.69 1.23 6.55 +inconsciences inconscience NOM f p 1.23 6.69 0.00 0.14 +inconscient inconscient ADJ m s 10.45 10.74 6.06 4.93 +inconsciente inconscient ADJ f s 10.45 10.74 3.35 3.85 +inconscientes inconscient ADJ f p 10.45 10.74 0.21 0.41 +inconscients inconscient ADJ m p 10.45 10.74 0.83 1.55 +inconsidéré inconsidéré ADJ m s 0.86 1.22 0.42 0.41 +inconsidérée inconsidéré ADJ f s 0.86 1.22 0.05 0.20 +inconsidérées inconsidéré ADJ f p 0.86 1.22 0.39 0.34 +inconsidérément inconsidérément ADV 0.07 0.41 0.07 0.41 +inconsidérés inconsidéré ADJ m p 0.86 1.22 0.00 0.27 +inconsistance inconsistance NOM f s 0.00 0.88 0.00 0.88 +inconsistant inconsistant ADJ m s 0.21 2.50 0.01 1.42 +inconsistante inconsistant ADJ f s 0.21 2.50 0.03 0.34 +inconsistantes inconsistant ADJ f p 0.21 2.50 0.03 0.20 +inconsistants inconsistant ADJ m p 0.21 2.50 0.14 0.54 +inconsolable inconsolable ADJ s 1.41 1.69 1.37 1.42 +inconsolables inconsolable ADJ m p 1.41 1.69 0.05 0.27 +inconsolé inconsolé ADJ m s 0.00 0.47 0.00 0.07 +inconsolée inconsolé ADJ f s 0.00 0.47 0.00 0.14 +inconsolées inconsolé ADJ f p 0.00 0.47 0.00 0.07 +inconsolés inconsolé ADJ m p 0.00 0.47 0.00 0.20 +inconsommable inconsommable ADJ s 0.00 0.14 0.00 0.14 +inconstance inconstance NOM f s 0.26 0.95 0.26 0.95 +inconstant inconstant ADJ m s 0.85 0.54 0.32 0.34 +inconstante inconstant ADJ f s 0.85 0.54 0.26 0.20 +inconstants inconstant ADJ m p 0.85 0.54 0.28 0.00 +inconstitutionnel inconstitutionnel ADJ m s 0.24 0.14 0.08 0.07 +inconstitutionnelle inconstitutionnel ADJ f s 0.24 0.14 0.16 0.07 +inconstructibles inconstructible ADJ m p 0.01 0.00 0.01 0.00 +inconséquence inconséquence NOM f s 0.04 1.42 0.04 1.08 +inconséquences inconséquence NOM f p 0.04 1.42 0.00 0.34 +inconséquent inconséquent ADJ m s 0.27 0.88 0.13 0.27 +inconséquente inconséquent ADJ f s 0.27 0.88 0.11 0.34 +inconséquents inconséquent ADJ m p 0.27 0.88 0.04 0.27 +incontestable incontestable ADJ s 1.29 1.89 0.87 1.42 +incontestablement incontestablement ADV 0.61 2.09 0.61 2.09 +incontestables incontestable ADJ p 1.29 1.89 0.43 0.47 +incontesté incontesté ADJ m s 0.64 1.69 0.40 1.15 +incontestée incontesté ADJ f s 0.64 1.69 0.23 0.34 +incontestés incontesté ADJ m p 0.64 1.69 0.01 0.20 +incontinence incontinence NOM f s 0.28 0.68 0.28 0.34 +incontinences incontinence NOM f p 0.28 0.68 0.00 0.34 +incontinent incontinent ADJ m s 0.29 1.49 0.20 1.08 +incontinente incontinent ADJ f s 0.29 1.49 0.06 0.07 +incontinentes incontinent ADJ f p 0.29 1.49 0.01 0.07 +incontinents incontinent ADJ m p 0.29 1.49 0.02 0.27 +incontournable incontournable ADJ s 0.58 0.54 0.50 0.41 +incontournables incontournable ADJ p 0.58 0.54 0.08 0.14 +incontrôlable incontrôlable ADJ s 2.65 1.82 2.08 1.01 +incontrôlables incontrôlable ADJ p 2.65 1.82 0.57 0.81 +incontrôlé incontrôlé ADJ m s 0.73 1.01 0.13 0.14 +incontrôlée incontrôlé ADJ f s 0.73 1.01 0.40 0.34 +incontrôlées incontrôlé ADJ f p 0.73 1.01 0.17 0.27 +incontrôlés incontrôlé ADJ m p 0.73 1.01 0.03 0.27 +inconvenance inconvenance NOM f s 0.32 1.28 0.29 0.95 +inconvenances inconvenance NOM f p 0.32 1.28 0.02 0.34 +inconvenant inconvenant ADJ m s 1.67 2.97 1.14 1.28 +inconvenante inconvenant ADJ f s 1.67 2.97 0.36 0.68 +inconvenantes inconvenant ADJ f p 1.67 2.97 0.05 0.74 +inconvenants inconvenant ADJ m p 1.67 2.97 0.12 0.27 +inconvertible inconvertible ADJ s 0.00 0.07 0.00 0.07 +inconvertissable inconvertissable ADJ m s 0.00 0.07 0.00 0.07 +inconvénient inconvénient NOM m s 5.23 9.05 3.58 5.54 +inconvénients inconvénient NOM m p 5.23 9.05 1.65 3.51 +incoordination incoordination NOM f s 0.01 0.00 0.01 0.00 +incorpora incorporer VER 1.54 7.23 0.01 0.07 ind:pas:3s; +incorporable incorporable ADJ m s 0.01 0.00 0.01 0.00 +incorporaient incorporer VER 1.54 7.23 0.00 0.34 ind:imp:3p; +incorporait incorporer VER 1.54 7.23 0.02 0.41 ind:imp:3s; +incorporant incorporer VER 1.54 7.23 0.03 0.47 par:pre; +incorporation incorporation NOM f s 0.46 1.35 0.46 1.28 +incorporations incorporation NOM f p 0.46 1.35 0.00 0.07 +incorpore incorporer VER 1.54 7.23 0.24 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incorporel incorporel ADJ m s 0.28 0.27 0.28 0.07 +incorporelle incorporel ADJ f s 0.28 0.27 0.00 0.14 +incorporelles incorporel ADJ f p 0.28 0.27 0.00 0.07 +incorporent incorporer VER 1.54 7.23 0.00 0.34 ind:pre:3p; +incorporer incorporer VER 1.54 7.23 0.32 1.42 inf; +incorporez incorporer VER 1.54 7.23 0.01 0.07 imp:pre:2p; +incorporé incorporer VER m s 1.54 7.23 0.56 1.22 par:pas; +incorporée incorporer VER f s 1.54 7.23 0.19 0.81 par:pas; +incorporées incorporer VER f p 1.54 7.23 0.01 0.34 par:pas; +incorporés incorporer VER m p 1.54 7.23 0.15 1.42 par:pas; +incorrect incorrect ADJ m s 2.34 0.68 1.67 0.27 +incorrecte incorrect ADJ f s 2.34 0.68 0.61 0.34 +incorrectement incorrectement ADV 0.06 0.07 0.06 0.07 +incorrection incorrection NOM f s 0.02 0.34 0.02 0.34 +incorrects incorrect ADJ m p 2.34 0.68 0.06 0.07 +incorrigible incorrigible ADJ s 1.89 2.23 1.72 1.89 +incorrigiblement incorrigiblement ADV 0.00 0.07 0.00 0.07 +incorrigibles incorrigible ADJ p 1.89 2.23 0.16 0.34 +incorruptibilité incorruptibilité NOM f s 0.03 0.14 0.03 0.14 +incorruptible incorruptible ADJ s 0.53 1.01 0.47 0.68 +incorruptibles incorruptible ADJ p 0.53 1.01 0.06 0.34 +increvable increvable ADJ s 0.52 0.95 0.35 0.61 +increvables increvable ADJ m p 0.52 0.95 0.17 0.34 +incrimina incriminer VER 1.25 0.54 0.00 0.07 ind:pas:3s; +incriminant incriminer VER 1.25 0.54 0.19 0.00 par:pre; +incrimination incrimination NOM f s 0.01 0.00 0.01 0.00 +incrimine incriminer VER 1.25 0.54 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incriminent incriminer VER 1.25 0.54 0.06 0.00 ind:pre:3p; +incriminer incriminer VER 1.25 0.54 0.57 0.20 inf; +incriminé incriminer VER m s 1.25 0.54 0.30 0.07 par:pas; +incriminée incriminer VER f s 1.25 0.54 0.03 0.07 par:pas; +incriminées incriminer VER f p 1.25 0.54 0.01 0.07 par:pas; +incrochetable incrochetable ADJ s 0.01 0.00 0.01 0.00 +incroyable incroyable ADJ s 74.67 22.64 69.22 19.32 +incroyablement incroyablement ADV 5.55 4.53 5.55 4.53 +incroyables incroyable ADJ p 74.67 22.64 5.46 3.31 +incroyance incroyance NOM f s 0.20 0.34 0.20 0.34 +incroyant incroyant NOM m s 0.16 1.08 0.06 0.34 +incroyante incroyant NOM f s 0.16 1.08 0.00 0.14 +incroyants incroyant NOM m p 0.16 1.08 0.10 0.61 +incrédibilité incrédibilité NOM f s 0.00 0.20 0.00 0.20 +incrédule incrédule ADJ s 0.46 9.86 0.14 8.45 +incrédules incrédule ADJ p 0.46 9.86 0.32 1.42 +incrédulité incrédulité NOM f s 0.58 5.00 0.58 5.00 +incrusta incruster VER 2.77 14.46 0.00 0.47 ind:pas:3s; +incrustaient incruster VER 2.77 14.46 0.12 0.27 ind:imp:3p; +incrustais incruster VER 2.77 14.46 0.00 0.34 ind:imp:1s;ind:imp:2s; +incrustait incruster VER 2.77 14.46 0.01 1.01 ind:imp:3s; +incrustant incruster VER 2.77 14.46 0.00 0.68 par:pre; +incrustation incrustation NOM f s 0.12 1.62 0.06 0.20 +incrustations incrustation NOM f p 0.12 1.62 0.06 1.42 +incruste incruster VER 2.77 14.46 0.59 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +incrustent incruster VER 2.77 14.46 0.00 0.61 ind:pre:3p; +incruster incruster VER 2.77 14.46 0.84 0.68 inf; +incrusterait incruster VER 2.77 14.46 0.00 0.14 cnd:pre:3s; +incrustez incruster VER 2.77 14.46 0.02 0.00 imp:pre:2p;ind:pre:2p; +incrustèrent incruster VER 2.77 14.46 0.00 0.07 ind:pas:3p; +incrusté incruster VER m s 2.77 14.46 0.43 2.70 par:pas; +incrustée incruster VER f s 2.77 14.46 0.44 2.77 par:pas; +incrustées incruster VER f p 2.77 14.46 0.17 1.55 par:pas; +incrustés incruster VER m p 2.77 14.46 0.14 2.23 par:pas; +incréé incréé ADJ m s 0.14 0.14 0.14 0.00 +incréée incréé ADJ f s 0.14 0.14 0.00 0.14 +incubateur incubateur NOM m s 0.41 0.07 0.34 0.00 +incubateurs incubateur NOM m p 0.41 0.07 0.07 0.07 +incubation incubation NOM f s 0.53 0.54 0.53 0.54 +incube incube NOM m s 0.10 0.14 0.07 0.07 +incuber incuber VER 0.17 0.00 0.05 0.00 inf; +incubes incube NOM m p 0.10 0.14 0.03 0.07 +incubé incuber VER m s 0.17 0.00 0.12 0.00 par:pas; +inculcation inculcation NOM f s 0.00 0.07 0.00 0.07 +inculpa inculper VER 7.40 1.22 0.01 0.07 ind:pas:3s; +inculpant inculper VER 7.40 1.22 0.03 0.00 par:pre; +inculpation inculpation NOM f s 2.55 1.55 2.05 1.42 +inculpations inculpation NOM f p 2.55 1.55 0.51 0.14 +inculpe inculper VER 7.40 1.22 0.64 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inculpent inculper VER 7.40 1.22 0.03 0.00 ind:pre:3p; +inculper inculper VER 7.40 1.22 2.95 0.54 ind:pre:2p;inf; +inculpera inculper VER 7.40 1.22 0.15 0.00 ind:fut:3s; +inculperai inculper VER 7.40 1.22 0.04 0.00 ind:fut:1s; +inculperais inculper VER 7.40 1.22 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +inculperont inculper VER 7.40 1.22 0.01 0.00 ind:fut:3p; +inculpez inculper VER 7.40 1.22 0.33 0.00 imp:pre:2p;ind:pre:2p; +inculpons inculper VER 7.40 1.22 0.04 0.00 imp:pre:1p;ind:pre:1p; +inculpé inculper VER m s 7.40 1.22 2.33 0.41 par:pas; +inculpée inculper VER f s 7.40 1.22 0.49 0.00 par:pas; +inculpés inculper VER m p 7.40 1.22 0.33 0.20 par:pas; +inculqua inculquer VER 1.19 4.05 0.01 0.20 ind:pas:3s; +inculquait inculquer VER 1.19 4.05 0.10 0.27 ind:imp:3s; +inculquant inculquer VER 1.19 4.05 0.01 0.00 par:pre; +inculque inculquer VER 1.19 4.05 0.10 0.20 ind:pre:1s;ind:pre:3s; +inculquent inculquer VER 1.19 4.05 0.00 0.07 ind:pre:3p; +inculquer inculquer VER 1.19 4.05 0.62 1.42 inf; +inculquons inculquer VER 1.19 4.05 0.01 0.00 ind:pre:1p; +inculquât inculquer VER 1.19 4.05 0.00 0.07 sub:imp:3s; +inculqué inculquer VER m s 1.19 4.05 0.29 0.74 par:pas; +inculquée inculquer VER f s 1.19 4.05 0.04 0.54 par:pas; +inculquées inculquer VER f p 1.19 4.05 0.01 0.14 par:pas; +inculqués inculquer VER m p 1.19 4.05 0.00 0.41 par:pas; +inculte inculte ADJ s 2.20 2.23 1.53 1.49 +incultes inculte ADJ p 2.20 2.23 0.67 0.74 +incultivable incultivable ADJ f s 0.00 0.27 0.00 0.20 +incultivables incultivable ADJ m p 0.00 0.27 0.00 0.07 +inculture inculture NOM f s 0.00 0.41 0.00 0.41 +incunables incunable NOM m p 0.00 0.47 0.00 0.47 +incurable incurable ADJ s 2.44 2.84 2.26 2.36 +incurablement incurablement ADV 0.12 0.41 0.12 0.41 +incurables incurable NOM p 0.80 0.20 0.36 0.07 +incurie incurie NOM f s 0.11 0.68 0.11 0.68 +incurieux incurieux ADJ m s 0.00 0.07 0.00 0.07 +incuriosité incuriosité NOM f s 0.00 0.34 0.00 0.34 +incursion incursion NOM f s 0.48 4.26 0.41 2.64 +incursions incursion NOM f p 0.48 4.26 0.08 1.62 +incurvaient incurver VER 0.06 3.11 0.01 0.07 ind:imp:3p; +incurvait incurver VER 0.06 3.11 0.00 0.81 ind:imp:3s; +incurvant incurver VER 0.06 3.11 0.00 0.27 par:pre; +incurvation incurvation NOM f s 0.14 0.07 0.14 0.07 +incurve incurver VER 0.06 3.11 0.01 0.95 imp:pre:2s;ind:pre:3s; +incurvent incurver VER 0.06 3.11 0.00 0.20 ind:pre:3p; +incurver incurver VER 0.06 3.11 0.01 0.27 inf; +incurvèrent incurver VER 0.06 3.11 0.00 0.07 ind:pas:3p; +incurvé incurvé ADJ m s 0.09 1.42 0.07 0.74 +incurvée incurvé ADJ f s 0.09 1.42 0.02 0.41 +incurvées incurver VER f p 0.06 3.11 0.00 0.07 par:pas; +incurvés incurvé ADJ m p 0.09 1.42 0.00 0.20 +incus incus ADJ 0.01 0.00 0.01 0.00 +indûment indûment ADV 0.22 0.81 0.22 0.81 +indansable indansable ADJ s 0.01 0.00 0.01 0.00 +inde inde NOM m s 0.24 0.54 0.24 0.14 +indemne indemne ADJ s 2.66 3.11 2.13 2.30 +indemnes indemne ADJ p 2.66 3.11 0.53 0.81 +indemnisable indemnisable ADJ s 0.01 0.00 0.01 0.00 +indemnisation indemnisation NOM f s 0.36 0.14 0.32 0.07 +indemnisations indemnisation NOM f p 0.36 0.14 0.04 0.07 +indemnise indemniser VER 0.78 0.20 0.14 0.00 ind:pre:3s; +indemniser indemniser VER 0.78 0.20 0.32 0.07 inf; +indemniserai indemniser VER 0.78 0.20 0.11 0.00 ind:fut:1s; +indemniseraient indemniser VER 0.78 0.20 0.00 0.07 cnd:pre:3p; +indemnisez indemniser VER 0.78 0.20 0.11 0.00 imp:pre:2p; +indemnisé indemniser VER m s 0.78 0.20 0.06 0.00 par:pas; +indemnisés indemniser VER m p 0.78 0.20 0.03 0.07 par:pas; +indemnité indemnité NOM f s 3.17 2.36 1.84 1.69 +indemnités_repas indemnités_repas NOM f p 0.01 0.00 0.01 0.00 +indemnités indemnité NOM f p 3.17 2.36 1.33 0.68 +indentation indentation NOM f s 0.03 0.14 0.03 0.14 +indenter indenter VER 0.04 0.00 0.01 0.00 inf; +indentification indentification NOM f s 0.01 0.00 0.01 0.00 +indenté indenter VER m s 0.04 0.00 0.03 0.00 par:pas; +indes inde NOM m p 0.24 0.54 0.00 0.41 +indescriptible indescriptible ADJ s 1.88 2.70 1.71 2.50 +indescriptiblement indescriptiblement ADV 0.00 0.07 0.00 0.07 +indescriptibles indescriptible ADJ p 1.88 2.70 0.17 0.20 +indestructibilité indestructibilité NOM f s 0.00 0.14 0.00 0.14 +indestructible indestructible ADJ s 1.92 4.46 1.49 3.38 +indestructibles indestructible ADJ p 1.92 4.46 0.43 1.08 +index index NOM m 2.18 32.43 2.18 32.43 +indexation indexation NOM f s 0.12 0.00 0.12 0.00 +indexer indexer VER 0.09 0.27 0.04 0.00 inf; +indexeur indexeur NOM m s 0.02 0.00 0.02 0.00 +indexé indexer VER m s 0.09 0.27 0.04 0.20 par:pas; +indexée indexer VER f s 0.09 0.27 0.01 0.07 par:pas; +indianisés indianiser VER m p 0.00 0.07 0.00 0.07 par:pas; +indic indic NOM m s 5.36 1.35 4.33 0.54 +indicateur indicateur NOM m s 1.77 2.50 0.98 1.89 +indicateurs indicateur NOM m p 1.77 2.50 0.79 0.61 +indicatif indicatif NOM m s 0.81 1.55 0.79 1.49 +indicatifs indicatif NOM m p 0.81 1.55 0.02 0.07 +indication indication NOM f s 3.59 12.43 1.42 5.74 +indications indication NOM f p 3.59 12.43 2.18 6.69 +indicatrice indicateur ADJ f s 0.39 1.49 0.00 0.14 +indicatrices indicateur ADJ f p 0.39 1.49 0.01 0.20 +indice indice NOM m s 22.13 9.39 13.29 4.66 +indices indice NOM m p 22.13 9.39 8.85 4.73 +indiciaire indiciaire ADJ f s 0.01 0.07 0.01 0.00 +indiciaires indiciaire ADJ f p 0.01 0.07 0.00 0.07 +indicible indicible ADJ s 0.82 6.35 0.76 5.41 +indiciblement indiciblement ADV 0.01 0.47 0.01 0.47 +indicibles indicible ADJ p 0.82 6.35 0.07 0.95 +indics indic NOM m p 5.36 1.35 1.03 0.81 +indien indien ADJ m s 11.62 11.22 5.75 3.18 +indienne indien ADJ f s 11.62 11.22 3.33 4.53 +indienneries indiennerie NOM f p 0.00 0.34 0.00 0.34 +indiennes indien ADJ f p 11.62 11.22 0.65 1.42 +indiens indien NOM m p 12.79 7.16 5.92 3.65 +indiffère indifférer VER 0.60 1.22 0.47 0.74 ind:pre:1s;ind:pre:3s; +indiffèrent indifférer VER 0.60 1.22 0.09 0.07 ind:pre:3p; +indiffères indifférer VER 0.60 1.22 0.01 0.00 ind:pre:2s; +indifféraient indifférer VER 0.60 1.22 0.00 0.20 ind:imp:3p; +indifférait indifférer VER 0.60 1.22 0.02 0.14 ind:imp:3s; +indifféremment indifféremment ADV 0.06 3.45 0.06 3.45 +indifférence indifférence NOM f s 3.62 38.31 3.62 38.04 +indifférences indifférence NOM f p 3.62 38.31 0.00 0.27 +indifférenciation indifférenciation NOM f s 0.01 0.14 0.01 0.14 +indifférencié indifférencié ADJ m s 0.02 0.74 0.00 0.20 +indifférenciée indifférencié ADJ f s 0.02 0.74 0.02 0.34 +indifférenciés indifférencié ADJ m p 0.02 0.74 0.00 0.20 +indifférent indifférent ADJ m s 4.48 30.14 2.42 16.22 +indifférente indifférent ADJ f s 4.48 30.14 1.21 8.24 +indifférentes indifférent ADJ f p 4.48 30.14 0.11 1.42 +indifférentisme indifférentisme NOM m s 0.00 0.07 0.00 0.07 +indifférents indifférent ADJ m p 4.48 30.14 0.74 4.26 +indifféré indifférer VER m s 0.60 1.22 0.01 0.07 par:pas; +indigence indigence NOM f s 0.44 1.96 0.44 1.96 +indigent indigent NOM m s 0.57 0.95 0.07 0.20 +indigente indigent NOM f s 0.57 0.95 0.02 0.00 +indigentes indigent ADJ f p 0.12 0.68 0.04 0.00 +indigents indigent NOM m p 0.57 0.95 0.48 0.61 +indigeste indigeste ADJ s 0.53 1.15 0.24 0.81 +indigestes indigeste ADJ p 0.53 1.15 0.29 0.34 +indigestion indigestion NOM f s 1.59 2.03 1.56 1.82 +indigestionner indigestionner VER 0.00 0.07 0.00 0.07 inf; +indigestions indigestion NOM f p 1.59 2.03 0.04 0.20 +indigna indigner VER 4.23 17.23 0.01 2.43 ind:pas:3s; +indignai indigner VER 4.23 17.23 0.00 0.20 ind:pas:1s; +indignaient indigner VER 4.23 17.23 0.00 0.41 ind:imp:3p; +indignais indigner VER 4.23 17.23 0.00 0.07 ind:imp:1s; +indignait indigner VER 4.23 17.23 0.01 3.04 ind:imp:3s; +indignant indigner VER 4.23 17.23 0.00 0.14 par:pre; +indignassent indigner VER 4.23 17.23 0.00 0.07 sub:imp:3p; +indignation indignation NOM f s 1.56 16.28 1.45 15.68 +indignations indignation NOM f p 1.56 16.28 0.11 0.61 +indigne indigne ADJ s 8.75 10.61 6.99 7.91 +indignement indignement ADV 0.28 0.54 0.28 0.54 +indignent indigner VER 4.23 17.23 0.72 0.61 ind:pre:3p; +indigner indigner VER 4.23 17.23 0.37 2.84 inf; +indignera indigner VER 4.23 17.23 0.10 0.14 ind:fut:3s; +indignes indigne ADJ p 8.75 10.61 1.75 2.70 +indignité indignité NOM f s 0.50 2.36 0.47 2.30 +indignités indignité NOM f p 0.50 2.36 0.03 0.07 +indignèrent indigner VER 4.23 17.23 0.00 0.14 ind:pas:3p; +indigné indigner VER m s 4.23 17.23 0.43 2.64 par:pas; +indignée indigner VER f s 4.23 17.23 0.45 1.08 par:pas; +indignées indigner VER f p 4.23 17.23 0.03 0.14 par:pas; +indignés indigné ADJ m p 0.34 6.35 0.16 1.15 +indigo indigo NOM m s 0.45 0.81 0.45 0.81 +indigène indigène ADJ s 1.04 4.19 0.68 2.57 +indigènes indigène NOM p 3.24 5.27 2.85 4.19 +indiqua indiquer VER 36.48 54.12 0.02 4.86 ind:pas:3s; +indiquai indiquer VER 36.48 54.12 0.00 0.88 ind:pas:1s; +indiquaient indiquer VER 36.48 54.12 0.25 1.96 ind:imp:3p; +indiquais indiquer VER 36.48 54.12 0.05 0.47 ind:imp:1s;ind:imp:2s; +indiquait indiquer VER 36.48 54.12 0.84 9.73 ind:imp:3s; +indiquant indiquer VER 36.48 54.12 1.81 5.54 par:pre; +indique indiquer VER 36.48 54.12 14.13 10.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +indiquent indiquer VER 36.48 54.12 5.18 1.22 ind:pre:3p; +indiquer indiquer VER 36.48 54.12 5.74 7.91 inf; +indiquera indiquer VER 36.48 54.12 0.67 0.27 ind:fut:3s; +indiquerai indiquer VER 36.48 54.12 0.14 0.20 ind:fut:1s; +indiqueraient indiquer VER 36.48 54.12 0.09 0.07 cnd:pre:3p; +indiquerais indiquer VER 36.48 54.12 0.04 0.00 cnd:pre:1s; +indiquerait indiquer VER 36.48 54.12 0.53 0.41 cnd:pre:3s; +indiqueras indiquer VER 36.48 54.12 0.03 0.00 ind:fut:2s; +indiquerez indiquer VER 36.48 54.12 0.03 0.07 ind:fut:2p; +indiqueriez indiquer VER 36.48 54.12 0.00 0.14 cnd:pre:2p; +indiquerons indiquer VER 36.48 54.12 0.03 0.07 ind:fut:1p; +indiquez indiquer VER 36.48 54.12 0.82 0.27 imp:pre:2p;ind:pre:2p; +indiquiez indiquer VER 36.48 54.12 0.01 0.14 ind:imp:2p; +indiquions indiquer VER 36.48 54.12 0.00 0.07 ind:imp:1p; +indiquons indiquer VER 36.48 54.12 0.01 0.00 imp:pre:1p; +indiquât indiquer VER 36.48 54.12 0.00 0.47 sub:imp:3s; +indiquèrent indiquer VER 36.48 54.12 0.02 0.47 ind:pas:3p; +indiqué indiquer VER m s 36.48 54.12 4.81 5.61 par:pas; +indiquée indiquer VER f s 36.48 54.12 0.60 1.69 par:pas; +indiquées indiquer VER f p 36.48 54.12 0.27 0.41 par:pas; +indiqués indiquer VER m p 36.48 54.12 0.36 1.01 par:pas; +indirect indirect ADJ m s 1.25 3.78 0.23 1.42 +indirecte indirect ADJ f s 1.25 3.78 0.55 1.42 +indirectement indirectement ADV 1.05 2.57 1.05 2.57 +indirectes indirect ADJ f p 1.25 3.78 0.36 0.20 +indirects indirect ADJ m p 1.25 3.78 0.11 0.74 +indiscernable indiscernable ADJ s 0.02 1.69 0.02 0.88 +indiscernables indiscernable ADJ p 0.02 1.69 0.00 0.81 +indiscipline indiscipline NOM f s 0.21 1.01 0.21 1.01 +indiscipliné indiscipliné ADJ m s 1.49 0.68 0.23 0.20 +indisciplinée indiscipliné ADJ f s 1.49 0.68 0.36 0.07 +indisciplinées indiscipliné ADJ f p 1.49 0.68 0.27 0.07 +indisciplinés indiscipliné ADJ m p 1.49 0.68 0.63 0.34 +indiscret indiscret ADJ m s 4.56 8.45 2.25 3.38 +indiscrets indiscret ADJ m p 4.56 8.45 0.38 1.76 +indiscrète indiscret ADJ f s 4.56 8.45 1.68 2.03 +indiscrètement indiscrètement ADV 0.00 0.47 0.00 0.47 +indiscrètes indiscret ADJ f p 4.56 8.45 0.25 1.28 +indiscrétion indiscrétion NOM f s 2.24 5.74 1.90 4.53 +indiscrétions indiscrétion NOM f p 2.24 5.74 0.34 1.22 +indiscutable indiscutable ADJ s 1.13 5.27 0.95 4.19 +indiscutablement indiscutablement ADV 0.25 1.96 0.25 1.96 +indiscutables indiscutable ADJ p 1.13 5.27 0.18 1.08 +indiscuté indiscuté ADJ m s 0.01 0.41 0.01 0.20 +indiscutée indiscuté ADJ f s 0.01 0.41 0.00 0.14 +indiscutés indiscuté ADJ m p 0.01 0.41 0.00 0.07 +indispensable indispensable ADJ s 9.21 21.76 8.52 15.68 +indispensables indispensable ADJ p 9.21 21.76 0.69 6.08 +indisponibilité indisponibilité NOM f s 0.03 0.00 0.03 0.00 +indisponible indisponible ADJ s 0.52 0.20 0.43 0.07 +indisponibles indisponible ADJ p 0.52 0.20 0.09 0.14 +indisposa indisposer VER 0.96 2.64 0.00 0.14 ind:pas:3s; +indisposaient indisposer VER 0.96 2.64 0.00 0.14 ind:imp:3p; +indisposait indisposer VER 0.96 2.64 0.01 0.41 ind:imp:3s; +indispose indispos ADJ f s 0.12 0.54 0.12 0.54 +indisposent indisposer VER 0.96 2.64 0.10 0.27 ind:pre:3p; +indisposer indisposer VER 0.96 2.64 0.16 0.74 inf; +indisposerait indisposer VER 0.96 2.64 0.02 0.07 cnd:pre:3s; +indisposition indisposition NOM f s 0.02 0.61 0.02 0.61 +indisposons indisposer VER 0.96 2.64 0.00 0.07 ind:pre:1p; +indisposèrent indisposer VER 0.96 2.64 0.00 0.07 ind:pas:3p; +indisposé indisposer VER m s 0.96 2.64 0.53 0.41 par:pas; +indisposée indisposé ADJ f s 0.42 0.14 0.17 0.07 +indisposés indisposer VER m p 0.96 2.64 0.01 0.14 par:pas; +indissociable indissociable ADJ s 0.25 0.14 0.02 0.07 +indissociables indissociable ADJ m p 0.25 0.14 0.23 0.07 +indissociés indissocié ADJ m p 0.00 0.07 0.00 0.07 +indissoluble indissoluble ADJ s 0.14 0.95 0.12 0.74 +indissolublement indissolublement ADV 0.01 0.54 0.01 0.54 +indissolubles indissoluble ADJ m p 0.14 0.95 0.02 0.20 +indistinct indistinct ADJ m s 0.54 8.24 0.30 2.64 +indistincte indistinct ADJ f s 0.54 8.24 0.23 2.23 +indistinctement indistinctement ADV 0.01 1.55 0.01 1.55 +indistinctes indistinct ADJ f p 0.54 8.24 0.00 2.09 +indistinction indistinction NOM f s 0.00 0.34 0.00 0.34 +indistincts indistinct ADJ m p 0.54 8.24 0.00 1.28 +individu individu NOM m s 15.38 31.42 9.04 19.53 +individualiser individualiser VER 0.01 0.20 0.01 0.00 inf; +individualisme individualisme NOM m s 0.50 1.35 0.50 1.35 +individualiste individualiste NOM s 0.30 0.20 0.17 0.14 +individualistes individualiste NOM p 0.30 0.20 0.13 0.07 +individualisé individualiser VER m s 0.01 0.20 0.00 0.07 par:pas; +individualisés individualiser VER m p 0.01 0.20 0.00 0.14 par:pas; +individualité individualité NOM f s 0.58 0.88 0.57 0.74 +individualités individualité NOM f p 0.58 0.88 0.01 0.14 +individuel individuel ADJ m s 3.99 8.11 0.97 2.23 +individuelle individuel ADJ f s 3.99 8.11 1.36 2.23 +individuellement individuellement ADV 1.22 0.95 1.22 0.95 +individuelles individuel ADJ f p 3.99 8.11 0.99 2.36 +individuels individuel ADJ m p 3.99 8.11 0.67 1.28 +individus individu NOM m p 15.38 31.42 6.34 11.89 +individuée individué ADJ f s 0.00 0.07 0.00 0.07 +indivis indivis ADJ m 0.10 0.34 0.10 0.27 +indivises indivis ADJ f p 0.10 0.34 0.00 0.07 +indivisibilité indivisibilité NOM f s 0.00 0.07 0.00 0.07 +indivisible indivisible ADJ s 0.44 1.15 0.40 1.15 +indivisibles indivisible ADJ p 0.44 1.15 0.03 0.00 +indivision indivision NOM f s 0.00 0.07 0.00 0.07 +indivisé indivisé ADJ m s 0.00 0.07 0.00 0.07 +indo_européen indo_européen ADJ m s 0.11 0.27 0.10 0.00 +indo_européen indo_européen ADJ f s 0.11 0.27 0.01 0.07 +indo_européen indo_européen ADJ f p 0.11 0.27 0.00 0.14 +indo_européen indo_européen ADJ m p 0.11 0.27 0.00 0.07 +indo indo ADV 0.03 0.54 0.03 0.54 +indochinois indochinois NOM m 0.10 0.34 0.10 0.34 +indochinoise indochinois ADJ f s 0.01 1.28 0.00 0.68 +indochinoises indochinois ADJ f p 0.01 1.28 0.00 0.20 +indocile indocile ADJ s 0.23 0.74 0.23 0.74 +indocilité indocilité NOM f s 0.00 0.07 0.00 0.07 +indole indole NOM m s 0.01 0.00 0.01 0.00 +indolemment indolemment ADV 0.00 0.54 0.00 0.54 +indolence indolence NOM f s 0.27 2.57 0.27 2.50 +indolences indolence NOM f p 0.27 2.57 0.00 0.07 +indolent indolent ADJ m s 1.29 2.91 0.38 0.95 +indolente indolent ADJ f s 1.29 2.91 0.13 1.22 +indolentes indolent ADJ f p 1.29 2.91 0.10 0.34 +indolents indolent ADJ m p 1.29 2.91 0.68 0.41 +indolore indolore ADJ s 0.77 0.68 0.69 0.47 +indolores indolore ADJ p 0.77 0.68 0.08 0.20 +indomptable indomptable ADJ s 1.07 1.28 0.91 1.01 +indomptables indomptable ADJ m p 1.07 1.28 0.16 0.27 +indompté indompté ADJ m s 0.24 0.27 0.07 0.00 +indomptée indompté ADJ f s 0.24 0.27 0.07 0.20 +indomptés indompté ADJ m p 0.24 0.27 0.10 0.07 +indonésien indonésien ADJ m s 0.20 0.20 0.18 0.00 +indonésienne indonésien NOM f s 0.26 0.00 0.10 0.00 +indonésiens indonésien NOM m p 0.26 0.00 0.14 0.00 +indoor indoor ADJ m s 0.05 0.00 0.05 0.00 +indosable indosable ADJ f s 0.00 0.07 0.00 0.07 +indou indou ADJ m s 0.03 0.27 0.03 0.07 +indous indou ADJ m p 0.03 0.27 0.00 0.20 +indu indu ADJ m s 0.29 0.81 0.02 0.07 +indubitable indubitable ADJ s 0.31 0.88 0.29 0.81 +indubitablement indubitablement ADV 0.70 0.61 0.70 0.61 +indubitables indubitable ADJ f p 0.31 0.88 0.03 0.07 +indécelable indécelable ADJ s 0.22 0.20 0.20 0.14 +indécelables indécelable ADJ p 0.22 0.20 0.02 0.07 +indécemment indécemment ADV 0.01 0.27 0.01 0.27 +indécence indécence NOM f s 0.28 2.16 0.28 1.96 +indécences indécence NOM f p 0.28 2.16 0.00 0.20 +indécent indécent ADJ m s 2.09 5.27 1.36 2.43 +indécente indécent ADJ f s 2.09 5.27 0.60 1.96 +indécentes indécent ADJ f p 2.09 5.27 0.07 0.47 +indécents indécent ADJ m p 2.09 5.27 0.05 0.41 +indéchiffrable indéchiffrable ADJ s 0.14 2.97 0.08 1.69 +indéchiffrables indéchiffrable ADJ p 0.14 2.97 0.06 1.28 +indéchirable indéchirable ADJ s 0.02 0.14 0.01 0.14 +indéchirables indéchirable ADJ f p 0.02 0.14 0.01 0.00 +indécidable indécidable ADJ s 0.00 0.27 0.00 0.20 +indécidables indécidable ADJ m p 0.00 0.27 0.00 0.07 +indécis indécis ADJ m 1.15 11.42 0.66 6.49 +indécise indécis ADJ f s 1.15 11.42 0.35 3.58 +indécises indécis ADJ f p 1.15 11.42 0.14 1.35 +indécision indécision NOM f s 0.27 2.16 0.17 1.89 +indécisions indécision NOM f p 0.27 2.16 0.10 0.27 +indécodable indécodable ADJ s 0.03 0.00 0.03 0.00 +indécollable indécollable ADJ s 0.01 0.07 0.01 0.00 +indécollables indécollable ADJ m p 0.01 0.07 0.00 0.07 +indécrassables indécrassable ADJ m p 0.00 0.14 0.00 0.14 +indécrottable indécrottable ADJ s 0.17 1.22 0.16 1.01 +indécrottablement indécrottablement ADV 0.00 0.07 0.00 0.07 +indécrottables indécrottable ADJ m p 0.17 1.22 0.01 0.20 +inducteur inducteur NOM m s 0.02 0.00 0.02 0.00 +inductif inductif ADJ m s 0.01 0.07 0.01 0.00 +induction induction NOM f s 0.43 0.54 0.42 0.47 +inductions induction NOM f p 0.43 0.54 0.01 0.07 +inductive inductif ADJ f s 0.01 0.07 0.00 0.07 +inductrice inducteur ADJ f s 0.00 0.07 0.00 0.07 +indue indu ADJ f s 0.29 0.81 0.27 0.27 +indues indu ADJ f p 0.29 0.81 0.00 0.41 +indéfectible indéfectible ADJ s 0.25 1.01 0.24 0.88 +indéfectiblement indéfectiblement ADV 0.00 0.41 0.00 0.41 +indéfectibles indéfectible ADJ m p 0.25 1.01 0.01 0.14 +indéfendable indéfendable ADJ f s 0.19 0.34 0.19 0.34 +indéfini indéfini ADJ m s 0.43 2.16 0.21 0.95 +indéfinie indéfini ADJ f s 0.43 2.16 0.23 0.81 +indéfinies indéfini ADJ f p 0.43 2.16 0.00 0.20 +indéfiniment indéfiniment ADV 2.08 11.22 2.08 11.22 +indéfinis indéfini ADJ m p 0.43 2.16 0.00 0.20 +indéfinissable indéfinissable ADJ s 0.29 6.01 0.16 5.54 +indéfinissablement indéfinissablement ADV 0.00 0.14 0.00 0.14 +indéfinissables indéfinissable ADJ p 0.29 6.01 0.14 0.47 +indéfinition indéfinition NOM f s 0.00 0.07 0.00 0.07 +indéformables indéformable ADJ p 0.00 0.07 0.00 0.07 +indéfriché indéfriché ADJ m s 0.00 0.14 0.00 0.14 +indéfrisable indéfrisable NOM f s 0.01 1.49 0.00 1.01 +indéfrisables indéfrisable NOM f p 0.01 1.49 0.01 0.47 +induiraient induire VER 1.68 1.69 0.00 0.07 cnd:pre:3p; +induirait induire VER 1.68 1.69 0.01 0.07 cnd:pre:3s; +induire induire VER 1.68 1.69 0.54 0.54 inf; +induis induire VER 1.68 1.69 0.17 0.07 imp:pre:2s;ind:pre:1s; +induisaient induire VER 1.68 1.69 0.00 0.14 ind:imp:3p; +induisait induire VER 1.68 1.69 0.02 0.07 ind:imp:3s; +induisant induire VER 1.68 1.69 0.06 0.00 par:pre; +induisez induire VER 1.68 1.69 0.03 0.00 ind:pre:2p; +induisit induire VER 1.68 1.69 0.00 0.14 ind:pas:3s; +induit induire VER m s 1.68 1.69 0.60 0.34 ind:pre:3s;par:pas; +induite induire VER f s 1.68 1.69 0.05 0.07 par:pas; +induits induire VER m p 1.68 1.69 0.19 0.20 par:pas; +indulgence indulgence NOM f s 2.46 16.35 2.46 15.41 +indulgences indulgence NOM f p 2.46 16.35 0.01 0.95 +indulgent indulgent ADJ m s 3.31 7.09 1.89 4.19 +indulgente indulgent ADJ f s 3.31 7.09 0.66 2.30 +indulgentes indulgent ADJ f p 3.31 7.09 0.01 0.34 +indulgents indulgent ADJ m p 3.31 7.09 0.75 0.27 +indélicat indélicat ADJ m s 0.44 0.74 0.32 0.41 +indélicate indélicat ADJ f s 0.44 0.74 0.11 0.07 +indélicatesse indélicatesse NOM f s 0.02 0.74 0.02 0.54 +indélicatesses indélicatesse NOM f p 0.02 0.74 0.00 0.20 +indélicats indélicat ADJ m p 0.44 0.74 0.01 0.27 +indélivrable indélivrable ADJ m s 0.00 0.07 0.00 0.07 +indélogeable indélogeable ADJ f s 0.01 0.14 0.01 0.07 +indélogeables indélogeable ADJ p 0.01 0.14 0.00 0.07 +indélébile indélébile ADJ s 0.75 3.78 0.71 2.97 +indélébiles indélébile ADJ p 0.75 3.78 0.04 0.81 +indémaillable indémaillable ADJ s 0.00 0.41 0.00 0.27 +indémaillables indémaillable ADJ p 0.00 0.41 0.00 0.14 +indémodable indémodable ADJ s 0.14 0.07 0.14 0.00 +indémodables indémodable ADJ m p 0.14 0.07 0.00 0.07 +indémontrable indémontrable ADJ m s 0.00 0.14 0.00 0.07 +indémontrables indémontrable ADJ m p 0.00 0.14 0.00 0.07 +indémêlables indémêlable ADJ m p 0.00 0.07 0.00 0.07 +indéniable indéniable ADJ s 0.97 1.82 0.89 1.22 +indéniablement indéniablement ADV 0.33 0.74 0.33 0.74 +indéniables indéniable ADJ p 0.97 1.82 0.08 0.61 +indénombrables indénombrable ADJ m p 0.02 0.07 0.02 0.07 +indénouable indénouable ADJ s 0.20 0.14 0.20 0.14 +indépassable indépassable ADJ m s 0.00 0.20 0.00 0.20 +indépendamment indépendamment ADV 0.55 3.45 0.55 3.45 +indépendance indépendance NOM f s 6.59 27.16 6.59 27.16 +indépendant indépendant ADJ m s 11.11 9.46 5.03 3.04 +indépendante indépendant ADJ s 11.11 9.46 4.08 3.78 +indépendantes indépendant ADJ f p 11.11 9.46 0.54 0.88 +indépendantisme indépendantisme NOM m s 0.10 0.00 0.10 0.00 +indépendantiste indépendantiste ADJ m s 0.23 0.07 0.11 0.00 +indépendantistes indépendantiste NOM p 0.27 0.00 0.27 0.00 +indépendants indépendant ADJ m p 11.11 9.46 1.46 1.76 +indéracinable indéracinable ADJ s 0.00 0.54 0.00 0.47 +indéracinables indéracinable ADJ p 0.00 0.54 0.00 0.07 +induré indurer VER m s 0.00 0.14 0.00 0.07 par:pas; +indurée induré ADJ f s 0.00 0.07 0.00 0.07 +indurées indurer VER f p 0.00 0.14 0.00 0.07 par:pas; +indéréglables indéréglable ADJ f p 0.00 0.20 0.00 0.20 +indus indu ADJ m p 0.29 0.81 0.00 0.07 +indésirable indésirable ADJ s 1.08 1.08 0.56 0.74 +indésirables indésirable NOM p 0.69 0.74 0.53 0.47 +industrialisation industrialisation NOM f s 0.01 0.20 0.01 0.20 +industrialiser industrialiser VER 0.04 0.14 0.00 0.14 inf; +industrialisé industrialiser VER m s 0.04 0.14 0.04 0.00 par:pas; +industrialisée industrialisé ADJ f s 0.16 0.14 0.01 0.07 +industrialisés industrialisé ADJ m p 0.16 0.14 0.14 0.07 +industrie_clé industrie_clé NOM f s 0.01 0.00 0.01 0.00 +industrie industrie NOM f s 12.51 11.82 9.66 10.34 +industriel industriel ADJ m s 6.66 7.70 2.68 3.04 +industrielle industriel ADJ f s 6.66 7.70 1.78 3.04 +industriellement industriellement ADV 0.00 0.20 0.00 0.20 +industrielles industriel ADJ f p 6.66 7.70 0.55 0.61 +industriels industriel ADJ m p 6.66 7.70 1.66 1.01 +industries industrie NOM f p 12.51 11.82 2.85 1.49 +industrieuse industrieux ADJ f s 0.02 1.08 0.01 0.34 +industrieusement industrieusement ADV 0.00 0.07 0.00 0.07 +industrieuses industrieux ADJ f p 0.02 1.08 0.00 0.07 +industrieux industrieux ADJ m 0.02 1.08 0.01 0.68 +indétectable indétectable ADJ s 0.77 0.14 0.65 0.07 +indétectables indétectable ADJ f p 0.77 0.14 0.12 0.07 +indéterminable indéterminable ADJ s 0.01 0.07 0.01 0.07 +indétermination indétermination NOM f s 0.01 0.34 0.01 0.34 +indéterminé indéterminé ADJ m s 1.49 2.36 0.21 1.08 +indéterminée indéterminé ADJ f s 1.49 2.36 1.23 0.95 +indéterminées indéterminé ADJ f p 1.49 2.36 0.03 0.20 +indéterminés indéterminé ADJ m p 1.49 2.36 0.03 0.14 +ineffable ineffable ADJ s 0.06 4.46 0.04 3.92 +ineffablement ineffablement ADV 0.02 0.07 0.02 0.07 +ineffables ineffable ADJ p 0.06 4.46 0.02 0.54 +ineffaçable ineffaçable ADJ s 0.13 1.22 0.13 1.08 +ineffaçablement ineffaçablement ADV 0.00 0.07 0.00 0.07 +ineffaçables ineffaçable ADJ f p 0.13 1.22 0.00 0.14 +inefficace inefficace ADJ s 1.25 1.28 0.98 0.61 +inefficaces inefficace ADJ p 1.25 1.28 0.27 0.68 +inefficacité inefficacité NOM f s 0.27 0.61 0.27 0.61 +inemploi inemploi NOM m s 0.10 0.00 0.10 0.00 +inemployable inemployable ADJ s 0.03 0.07 0.03 0.00 +inemployables inemployable ADJ p 0.03 0.07 0.00 0.07 +inemployé inemployé ADJ m s 0.02 0.88 0.00 0.27 +inemployée inemployé ADJ f s 0.02 0.88 0.00 0.27 +inemployées inemployé ADJ f p 0.02 0.88 0.00 0.27 +inemployés inemployé ADJ m p 0.02 0.88 0.02 0.07 +inentamable inentamable ADJ f s 0.01 0.14 0.01 0.14 +inentamé inentamé ADJ m s 0.01 0.81 0.00 0.54 +inentamée inentamé ADJ f s 0.01 0.81 0.01 0.20 +inentamées inentamé ADJ f p 0.01 0.81 0.00 0.07 +inenvisageable inenvisageable ADJ s 0.05 0.00 0.05 0.00 +inepte inepte ADJ s 0.69 3.24 0.52 1.69 +ineptement ineptement ADV 0.00 0.07 0.00 0.07 +ineptes inepte ADJ p 0.69 3.24 0.17 1.55 +ineptie ineptie NOM f s 1.48 1.89 0.77 1.01 +inepties ineptie NOM f p 1.48 1.89 0.71 0.88 +inerte inerte ADJ s 0.96 14.53 0.67 10.61 +inertes inerte ADJ p 0.96 14.53 0.29 3.92 +inertie inertie NOM f s 0.95 6.62 0.95 6.49 +inertiel inertiel ADJ m s 0.11 0.00 0.06 0.00 +inertielle inertiel ADJ f s 0.11 0.00 0.05 0.00 +inerties inertie NOM f p 0.95 6.62 0.00 0.14 +inespoir inespoir NOM m s 0.00 0.07 0.00 0.07 +inespérable inespérable ADJ s 0.00 0.07 0.00 0.07 +inespéré inespéré ADJ m s 0.35 4.32 0.17 1.62 +inespérée inespéré ADJ f s 0.35 4.32 0.18 2.43 +inespérées inespéré ADJ f p 0.35 4.32 0.00 0.27 +inespérément inespérément ADV 0.00 0.07 0.00 0.07 +inessentiel inessentiel ADJ m s 0.00 0.07 0.00 0.07 +inesthétique inesthétique ADJ m s 0.02 0.27 0.02 0.07 +inesthétiques inesthétique ADJ m p 0.02 0.27 0.00 0.20 +inestimable inestimable ADJ s 2.19 2.91 1.79 1.89 +inestimables inestimable ADJ p 2.19 2.91 0.40 1.01 +inexact inexact ADJ m s 1.01 1.28 0.65 0.47 +inexacte inexact ADJ f s 1.01 1.28 0.19 0.47 +inexactement inexactement ADV 0.01 0.14 0.01 0.14 +inexactes inexact ADJ f p 1.01 1.28 0.16 0.27 +inexactitude inexactitude NOM f s 0.08 0.54 0.03 0.20 +inexactitudes inexactitude NOM f p 0.08 0.54 0.05 0.34 +inexacts inexact ADJ m p 1.01 1.28 0.01 0.07 +inexcusable inexcusable ADJ s 0.77 0.54 0.64 0.47 +inexcusables inexcusable ADJ p 0.77 0.54 0.13 0.07 +inexistant inexistant ADJ m s 1.29 3.65 0.39 1.28 +inexistante inexistant ADJ f s 1.29 3.65 0.46 0.88 +inexistantes inexistant ADJ f p 1.29 3.65 0.10 0.54 +inexistants inexistant ADJ m p 1.29 3.65 0.35 0.95 +inexistence inexistence NOM f s 0.02 1.62 0.02 1.62 +inexorabilité inexorabilité NOM f s 0.00 0.14 0.00 0.14 +inexorable inexorable ADJ s 0.33 4.19 0.33 3.78 +inexorablement inexorablement ADV 0.33 3.92 0.33 3.92 +inexorables inexorable ADJ m p 0.33 4.19 0.00 0.41 +inexperte inexpert ADJ f s 0.00 0.14 0.00 0.14 +inexpiable inexpiable ADJ s 0.10 0.54 0.10 0.54 +inexplicable inexplicable ADJ s 3.25 7.16 1.96 5.61 +inexplicablement inexplicablement ADV 0.23 3.18 0.23 3.18 +inexplicables inexplicable ADJ p 3.25 7.16 1.29 1.55 +inexpliqué inexpliqué ADJ m s 1.23 1.55 0.28 0.61 +inexpliquée inexpliqué ADJ f s 1.23 1.55 0.41 0.54 +inexpliquées inexpliqué ADJ f p 1.23 1.55 0.34 0.07 +inexpliqués inexpliqué ADJ m p 1.23 1.55 0.21 0.34 +inexploitable inexploitable ADJ s 0.02 0.00 0.02 0.00 +inexploité inexploité ADJ m s 0.22 0.14 0.06 0.00 +inexploitée inexploité ADJ f s 0.22 0.14 0.11 0.00 +inexploitées inexploité ADJ f p 0.22 0.14 0.04 0.14 +inexploités inexploité ADJ m p 0.22 0.14 0.01 0.00 +inexploré inexploré ADJ m s 1.11 0.61 0.32 0.27 +inexplorée inexploré ADJ f s 1.11 0.61 0.32 0.07 +inexplorées inexploré ADJ f p 1.11 0.61 0.26 0.14 +inexplorés inexploré ADJ m p 1.11 0.61 0.22 0.14 +inexplosible inexplosible ADJ s 0.00 0.27 0.00 0.07 +inexplosibles inexplosible ADJ m p 0.00 0.27 0.00 0.20 +inexpressif inexpressif ADJ m s 0.17 2.64 0.04 1.49 +inexpressifs inexpressif ADJ m p 0.17 2.64 0.12 0.74 +inexpression inexpression NOM f s 0.00 0.07 0.00 0.07 +inexpressive inexpressif ADJ f s 0.17 2.64 0.00 0.41 +inexpressives inexpressif ADJ f p 0.17 2.64 0.01 0.00 +inexprimable inexprimable ADJ s 0.40 3.18 0.40 3.04 +inexprimablement inexprimablement ADV 0.00 0.20 0.00 0.20 +inexprimables inexprimable ADJ m p 0.40 3.18 0.00 0.14 +inexprimé inexprimé ADJ m s 0.10 0.47 0.05 0.27 +inexprimée inexprimé ADJ f s 0.10 0.47 0.05 0.20 +inexpugnable inexpugnable ADJ f s 0.13 0.41 0.13 0.34 +inexpugnablement inexpugnablement ADV 0.00 0.07 0.00 0.07 +inexpugnables inexpugnable ADJ f p 0.13 0.41 0.00 0.07 +inexpérience inexpérience NOM f s 0.28 2.03 0.28 1.96 +inexpériences inexpérience NOM f p 0.28 2.03 0.00 0.07 +inexpérimenté inexpérimenté ADJ m s 1.28 1.01 0.54 0.34 +inexpérimentée inexpérimenté ADJ f s 1.28 1.01 0.55 0.47 +inexpérimentées inexpérimenté ADJ f p 1.28 1.01 0.01 0.07 +inexpérimentés inexpérimenté ADJ m p 1.28 1.01 0.18 0.14 +inextinguible inextinguible ADJ s 0.18 0.81 0.18 0.74 +inextinguibles inextinguible ADJ m p 0.18 0.81 0.00 0.07 +inextirpable inextirpable ADJ f s 0.00 0.07 0.00 0.07 +inextricable inextricable ADJ s 0.58 3.31 0.44 2.70 +inextricablement inextricablement ADV 0.15 0.81 0.15 0.81 +inextricables inextricable ADJ p 0.58 3.31 0.14 0.61 +infaillibilité infaillibilité NOM f s 0.28 0.95 0.28 0.95 +infaillible infaillible ADJ s 2.37 6.28 2.10 6.01 +infailliblement infailliblement ADV 0.27 1.82 0.27 1.82 +infaillibles infaillible ADJ m p 2.37 6.28 0.27 0.27 +infaisable infaisable ADJ s 0.39 0.14 0.39 0.14 +infalsifiable infalsifiable ADJ s 0.01 0.00 0.01 0.00 +infamant infamant ADJ m s 0.18 2.43 0.02 1.08 +infamante infamant ADJ f s 0.18 2.43 0.15 0.74 +infamantes infamant ADJ f p 0.18 2.43 0.01 0.27 +infamants infamant ADJ m p 0.18 2.43 0.00 0.34 +infamie infamie NOM f s 2.22 3.72 2.01 3.11 +infamies infamie NOM f p 2.22 3.72 0.21 0.61 +infant infant NOM m s 5.52 1.76 4.98 0.54 +infante infant NOM f s 5.52 1.76 0.54 0.88 +infanterie infanterie NOM f s 3.79 10.07 3.79 10.00 +infanteries infanterie NOM f p 3.79 10.07 0.00 0.07 +infantes infant NOM f p 5.52 1.76 0.00 0.07 +infanticide infanticide NOM s 0.34 0.41 0.34 0.27 +infanticides infanticide NOM p 0.34 0.41 0.00 0.14 +infantile infantile ADJ s 3.30 3.24 2.57 2.30 +infantilement infantilement ADV 0.00 0.07 0.00 0.07 +infantiles infantile ADJ p 3.30 3.24 0.73 0.95 +infantiliser infantiliser VER 0.04 0.00 0.02 0.00 inf; +infantilisme infantilisme NOM m s 0.06 0.74 0.05 0.74 +infantilismes infantilisme NOM m p 0.06 0.74 0.01 0.00 +infantilisé infantiliser VER m s 0.04 0.00 0.02 0.00 par:pas; +infants infant NOM m p 5.52 1.76 0.00 0.27 +infarctus infarctus NOM m 4.87 1.62 4.87 1.62 +infatigable infatigable ADJ s 0.46 4.80 0.29 3.31 +infatigablement infatigablement ADV 0.00 0.61 0.00 0.61 +infatigables infatigable ADJ p 0.46 4.80 0.17 1.49 +infatuation infatuation NOM f s 0.01 0.41 0.01 0.41 +infatuer infatuer VER 0.02 0.34 0.01 0.00 inf; +infatué infatué ADJ m s 0.02 0.14 0.02 0.07 +infatués infatuer VER m p 0.02 0.34 0.00 0.07 par:pas; +infect infect ADJ m s 3.61 6.28 2.03 2.91 +infectaient infecter VER 9.96 2.64 0.01 0.14 ind:imp:3p; +infectait infecter VER 9.96 2.64 0.02 0.14 ind:imp:3s; +infectant infecter VER 9.96 2.64 0.06 0.00 par:pre; +infectassent infecter VER 9.96 2.64 0.00 0.07 sub:imp:3p; +infecte infect ADJ f s 3.61 6.28 1.31 1.62 +infectement infectement ADV 0.00 0.07 0.00 0.07 +infectent infecter VER 9.96 2.64 0.21 0.14 ind:pre:3p; +infecter infecter VER 9.96 2.64 1.84 0.68 inf; +infectera infecter VER 9.96 2.64 0.05 0.00 ind:fut:3s; +infectes infect ADJ f p 3.61 6.28 0.05 1.08 +infectez infecter VER 9.96 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +infectieuse infectieux ADJ f s 0.66 0.47 0.14 0.14 +infectieuses infectieux ADJ f p 0.66 0.47 0.26 0.27 +infectieux infectieux ADJ m 0.66 0.47 0.26 0.07 +infectiologie infectiologie NOM f s 0.01 0.00 0.01 0.00 +infection infection NOM f s 10.62 1.89 9.55 1.69 +infections infection NOM f p 10.62 1.89 1.07 0.20 +infects infect ADJ m p 3.61 6.28 0.22 0.68 +infecté infecter VER m s 9.96 2.64 3.23 0.54 par:pas; +infectée infecter VER f s 9.96 2.64 1.92 0.54 par:pas; +infectées infecté ADJ f p 3.40 0.61 0.66 0.27 +infectés infecter VER m p 9.96 2.64 0.99 0.07 par:pas; +infernal infernal ADJ m s 6.66 13.38 3.36 5.41 +infernale infernal ADJ f s 6.66 13.38 2.61 5.95 +infernalement infernalement ADV 0.00 0.20 0.00 0.20 +infernales infernal ADJ f p 6.66 13.38 0.46 1.55 +infernaux infernal ADJ m p 6.66 13.38 0.24 0.47 +infertile infertile ADJ s 0.08 0.41 0.08 0.34 +infertiles infertile ADJ p 0.08 0.41 0.00 0.07 +infertilité infertilité NOM f s 0.03 0.07 0.03 0.07 +infestaient infester VER 2.05 2.84 0.01 0.68 ind:imp:3p; +infestait infester VER 2.05 2.84 0.00 0.14 ind:imp:3s; +infestant infester VER 2.05 2.84 0.01 0.07 par:pre; +infestation infestation NOM f s 0.12 0.00 0.12 0.00 +infeste infester VER 2.05 2.84 0.02 0.07 ind:pre:3s; +infestent infester VER 2.05 2.84 0.12 0.20 ind:pre:3p; +infester infester VER 2.05 2.84 0.09 0.00 inf; +infesteront infester VER 2.05 2.84 0.10 0.07 ind:fut:3p; +infestât infester VER 2.05 2.84 0.00 0.07 sub:imp:3s; +infestèrent infester VER 2.05 2.84 0.00 0.07 ind:pas:3p; +infesté infester VER m s 2.05 2.84 0.57 0.34 par:pas; +infestée infester VER f s 2.05 2.84 0.56 0.61 par:pas; +infestées infester VER f p 2.05 2.84 0.38 0.20 par:pas; +infestés infester VER m p 2.05 2.84 0.19 0.34 par:pas; +infibulation infibulation NOM f s 0.03 0.00 0.03 0.00 +infidèle infidèle ADJ s 3.83 2.97 2.84 2.50 +infidèles infidèle NOM p 2.33 2.57 1.25 1.49 +infidélité infidélité NOM f s 1.40 2.57 1.11 1.62 +infidélités infidélité NOM f p 1.40 2.57 0.28 0.95 +infigurable infigurable ADJ s 0.00 0.07 0.00 0.07 +infiltra infiltrer VER 6.88 6.35 0.11 0.07 ind:pas:3s; +infiltraient infiltrer VER 6.88 6.35 0.01 0.27 ind:imp:3p; +infiltrait infiltrer VER 6.88 6.35 0.05 1.42 ind:imp:3s; +infiltrant infiltrer VER 6.88 6.35 0.08 0.07 par:pre; +infiltrat infiltrat NOM m s 0.01 0.00 0.01 0.00 +infiltration infiltration NOM f s 1.71 1.55 1.38 0.95 +infiltrations infiltration NOM f p 1.71 1.55 0.34 0.61 +infiltre infiltrer VER 6.88 6.35 0.73 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +infiltrent infiltrer VER 6.88 6.35 0.20 0.20 ind:pre:3p; +infiltrer infiltrer VER 6.88 6.35 2.38 1.82 inf; +infiltrera infiltrer VER 6.88 6.35 0.05 0.00 ind:fut:3s; +infiltreront infiltrer VER 6.88 6.35 0.10 0.00 ind:fut:3p; +infiltrez infiltrer VER 6.88 6.35 0.05 0.00 imp:pre:2p;ind:pre:2p; +infiltriez infiltrer VER 6.88 6.35 0.01 0.00 ind:imp:2p; +infiltrions infiltrer VER 6.88 6.35 0.00 0.07 ind:imp:1p; +infiltrons infiltrer VER 6.88 6.35 0.01 0.07 imp:pre:1p;ind:pre:1p; +infiltrèrent infiltrer VER 6.88 6.35 0.00 0.07 ind:pas:3p; +infiltré infiltrer VER m s 6.88 6.35 2.22 0.61 par:pas; +infiltrée infiltrer VER f s 6.88 6.35 0.25 0.34 par:pas; +infiltrées infiltrer VER f p 6.88 6.35 0.04 0.07 par:pas; +infiltrés infiltrer VER m p 6.88 6.35 0.58 0.27 par:pas; +infime infime ADJ s 2.09 11.89 1.53 6.55 +infimes infime ADJ p 2.09 11.89 0.56 5.34 +infini infini ADJ m s 9.21 27.03 3.86 6.69 +infinie infini ADJ f s 9.21 27.03 4.11 12.16 +infinies infini ADJ f p 9.21 27.03 0.76 4.86 +infiniment infiniment ADV 10.29 17.43 10.29 17.43 +infinis infini ADJ m p 9.21 27.03 0.47 3.31 +infinitif infinitif NOM m s 0.03 0.14 0.01 0.07 +infinitifs infinitif NOM m p 0.03 0.14 0.01 0.07 +infinitive infinitif ADJ f s 0.01 0.00 0.01 0.00 +infinité infinité NOM f s 0.62 2.57 0.60 2.50 +infinitude infinitude NOM f s 0.00 0.14 0.00 0.14 +infinités infinité NOM f p 0.62 2.57 0.01 0.07 +infinitésimal infinitésimal ADJ m s 0.07 1.22 0.03 0.27 +infinitésimale infinitésimal ADJ f s 0.07 1.22 0.03 0.34 +infinitésimalement infinitésimalement ADV 0.00 0.07 0.00 0.07 +infinitésimales infinitésimal ADJ f p 0.07 1.22 0.00 0.61 +infinitésimaux infinitésimal ADJ m p 0.07 1.22 0.01 0.00 +infirma infirmer VER 0.14 1.15 0.00 0.20 ind:pas:3s; +infirmait infirmer VER 0.14 1.15 0.00 0.14 ind:imp:3s; +infirmant infirmer VER 0.14 1.15 0.00 0.07 par:pre; +infirme infirme ADJ s 2.27 3.65 2.00 3.04 +infirment infirmer VER 0.14 1.15 0.01 0.07 ind:pre:3p; +infirmer infirmer VER 0.14 1.15 0.07 0.07 inf; +infirmerie infirmerie NOM f s 7.14 7.43 7.13 7.30 +infirmeries infirmerie NOM f p 7.14 7.43 0.01 0.14 +infirmeront infirmer VER 0.14 1.15 0.00 0.07 ind:fut:3p; +infirmes infirme NOM p 2.32 6.15 0.64 2.64 +infirmier infirmier NOM m s 32.31 36.28 3.17 3.58 +infirmiers infirmier NOM m p 32.31 36.28 2.00 4.80 +infirmière_major infirmière_major NOM f s 0.14 0.14 0.14 0.14 +infirmière infirmier NOM f s 32.31 36.28 27.14 22.97 +infirmières infirmière NOM f p 7.25 0.00 7.25 0.00 +infirmité infirmité NOM f s 0.93 5.88 0.83 4.53 +infirmités infirmité NOM f p 0.93 5.88 0.10 1.35 +infirmé infirmer VER m s 0.14 1.15 0.00 0.07 par:pas; +inflammabilité inflammabilité NOM f s 0.02 0.00 0.02 0.00 +inflammable inflammable ADJ s 0.92 0.14 0.66 0.14 +inflammables inflammable ADJ p 0.92 0.14 0.26 0.00 +inflammation inflammation NOM f s 0.88 0.54 0.88 0.54 +inflammatoire inflammatoire ADJ s 0.04 0.00 0.01 0.00 +inflammatoires inflammatoire ADJ p 0.04 0.00 0.02 0.00 +inflation inflation NOM f s 1.72 2.30 1.72 2.30 +inflationniste inflationniste ADJ s 0.14 0.07 0.14 0.07 +inflexibilité inflexibilité NOM f s 0.01 0.20 0.01 0.20 +inflexible inflexible ADJ s 0.61 4.59 0.56 3.85 +inflexiblement inflexiblement ADV 0.00 0.14 0.00 0.14 +inflexibles inflexible ADJ p 0.61 4.59 0.05 0.74 +inflexion inflexion NOM f s 0.23 4.86 0.08 1.82 +inflexions inflexion NOM f p 0.23 4.86 0.16 3.04 +infliction infliction NOM f s 0.03 0.00 0.03 0.00 +inflige infliger VER 6.54 14.05 0.75 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +infligea infliger VER 6.54 14.05 0.01 0.14 ind:pas:3s; +infligeaient infliger VER 6.54 14.05 0.02 0.54 ind:imp:3p; +infligeais infliger VER 6.54 14.05 0.00 0.07 ind:imp:1s; +infligeait infliger VER 6.54 14.05 0.06 1.69 ind:imp:3s; +infligeant infliger VER 6.54 14.05 0.08 0.47 par:pre; +infligent infliger VER 6.54 14.05 0.36 0.20 ind:pre:3p; +infligeâmes infliger VER 6.54 14.05 0.00 0.07 ind:pas:1p; +infligeons infliger VER 6.54 14.05 0.00 0.07 ind:pre:1p; +infliger infliger VER 6.54 14.05 2.46 3.65 inf; +infligera infliger VER 6.54 14.05 0.02 0.00 ind:fut:3s; +infligerai infliger VER 6.54 14.05 0.07 0.00 ind:fut:1s; +infligeraient infliger VER 6.54 14.05 0.03 0.07 cnd:pre:3p; +infligerais infliger VER 6.54 14.05 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +infligerait infliger VER 6.54 14.05 0.02 0.07 cnd:pre:3s; +infligerez infliger VER 6.54 14.05 0.01 0.00 ind:fut:2p; +infligerions infliger VER 6.54 14.05 0.00 0.07 cnd:pre:1p; +infliges infliger VER 6.54 14.05 0.20 0.00 ind:pre:2s;sub:pre:2s; +infligez infliger VER 6.54 14.05 0.32 0.14 imp:pre:2p;ind:pre:2p; +infligèrent infliger VER 6.54 14.05 0.00 0.14 ind:pas:3p; +infligé infliger VER m s 6.54 14.05 0.97 2.30 par:pas; +infligée infliger VER f s 6.54 14.05 0.63 1.69 par:pas; +infligées infliger VER f p 6.54 14.05 0.36 0.88 par:pas; +infligés infliger VER m p 6.54 14.05 0.15 0.47 par:pas; +inflorescence inflorescence NOM f s 0.01 0.07 0.01 0.00 +inflorescences inflorescence NOM f p 0.01 0.07 0.00 0.07 +influaient influer VER 1.31 1.82 0.10 0.07 ind:imp:3p; +influait influer VER 1.31 1.82 0.01 0.00 ind:imp:3s; +influant influer VER 1.31 1.82 0.15 0.00 par:pre; +infléchi infléchir VER m s 0.10 2.77 0.00 0.14 par:pas; +infléchie infléchir VER f s 0.10 2.77 0.01 0.07 par:pas; +infléchies infléchi ADJ f p 0.00 0.27 0.00 0.07 +infléchir infléchir VER 0.10 2.77 0.05 1.28 inf; +infléchirai infléchir VER 0.10 2.77 0.01 0.00 ind:fut:1s; +infléchissaient infléchir VER 0.10 2.77 0.00 0.14 ind:imp:3p; +infléchissant infléchir VER 0.10 2.77 0.00 0.27 par:pre; +infléchissement infléchissement NOM m s 0.00 0.07 0.00 0.07 +infléchissent infléchir VER 0.10 2.77 0.00 0.20 ind:pre:3p; +infléchissez infléchir VER 0.10 2.77 0.01 0.00 imp:pre:2p; +infléchit infléchir VER 0.10 2.77 0.01 0.68 ind:pre:3s;ind:pas:3s; +influe influer VER 1.31 1.82 0.24 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +influence influence NOM f s 13.96 23.51 13.32 19.73 +influencent influencer VER 8.30 4.53 0.25 0.07 ind:pre:3p; +influencer influencer VER 8.30 4.53 3.19 1.82 ind:pre:2p;inf; +influencera influencer VER 8.30 4.53 0.25 0.00 ind:fut:3s; +influencerait influencer VER 8.30 4.53 0.02 0.00 cnd:pre:3s; +influencerez influencer VER 8.30 4.53 0.04 0.07 ind:fut:2p; +influenceriez influencer VER 8.30 4.53 0.00 0.07 cnd:pre:2p; +influenceront influencer VER 8.30 4.53 0.17 0.00 ind:fut:3p; +influences influence NOM f p 13.96 23.51 0.63 3.78 +influencé influencer VER m s 8.30 4.53 1.98 1.15 par:pas; +influencée influencer VER f s 8.30 4.53 0.70 0.47 par:pas; +influencés influencer VER m p 8.30 4.53 0.58 0.07 par:pas; +influent influent ADJ m s 2.75 1.62 1.38 0.54 +influente influent ADJ f s 2.75 1.62 0.33 0.27 +influentes influent ADJ f p 2.75 1.62 0.11 0.14 +influença influencer VER 8.30 4.53 0.04 0.00 ind:pas:3s; +influençable influençable ADJ s 0.73 0.27 0.56 0.27 +influençables influençable ADJ p 0.73 0.27 0.17 0.00 +influençaient influencer VER 8.30 4.53 0.02 0.07 ind:imp:3p; +influençait influencer VER 8.30 4.53 0.15 0.20 ind:imp:3s; +influençant influencer VER 8.30 4.53 0.04 0.00 par:pre; +influents influent ADJ m p 2.75 1.62 0.93 0.68 +influenza influenza NOM f s 0.01 0.07 0.01 0.07 +influer influer VER 1.31 1.82 0.60 0.68 inf; +influera influer VER 1.31 1.82 0.03 0.14 ind:fut:3s; +influeraient influer VER 1.31 1.82 0.01 0.07 cnd:pre:3p; +influeront influer VER 1.31 1.82 0.02 0.07 ind:fut:3p; +influé influer VER m s 1.31 1.82 0.01 0.27 par:pas; +influx influx NOM m 0.25 0.61 0.25 0.61 +info info NOM f s 25.50 0.47 6.71 0.00 +infographie infographie NOM f s 0.04 0.00 0.04 0.00 +infâme infâme ADJ s 7.71 7.91 6.00 5.27 +infâmes infâme ADJ p 7.71 7.91 1.71 2.64 +infondé infondé ADJ m s 0.81 0.00 0.05 0.00 +infondée infondé ADJ f s 0.81 0.00 0.08 0.00 +infondées infondé ADJ f p 0.81 0.00 0.31 0.00 +infondés infondé ADJ m p 0.81 0.00 0.36 0.00 +informa informer VER 37.41 21.69 0.17 3.18 ind:pas:3s; +informai informer VER 37.41 21.69 0.00 0.14 ind:pas:1s; +informaient informer VER 37.41 21.69 0.11 0.34 ind:imp:3p; +informais informer VER 37.41 21.69 0.10 0.00 ind:imp:1s; +informait informer VER 37.41 21.69 0.23 1.82 ind:imp:3s; +informant informer VER 37.41 21.69 0.29 0.54 par:pre; +informateur informateur NOM m s 4.15 2.30 3.01 0.74 +informateurs informateur NOM m p 4.15 2.30 1.05 1.55 +informaticien informaticien NOM m s 1.03 0.47 0.72 0.14 +informaticienne informaticien NOM f s 1.03 0.47 0.02 0.14 +informaticiens informaticien NOM m p 1.03 0.47 0.29 0.20 +informatif informatif ADJ m s 0.10 0.00 0.06 0.00 +information information NOM f s 63.20 36.55 23.90 16.22 +informations information NOM f p 63.20 36.55 39.30 20.34 +informatique informatique NOM f s 4.60 0.81 4.60 0.81 +informatiquement informatiquement ADV 0.15 0.00 0.15 0.00 +informatiques informatique ADJ p 5.24 0.20 0.91 0.00 +informatiser informatiser VER 0.31 0.00 0.01 0.00 inf; +informatisé informatisé ADJ m s 0.39 0.00 0.25 0.00 +informatisée informatiser VER f s 0.31 0.00 0.16 0.00 par:pas; +informatisées informatisé ADJ f p 0.39 0.00 0.03 0.00 +informatisés informatiser VER m p 0.31 0.00 0.03 0.00 par:pas; +informative informatif ADJ f s 0.10 0.00 0.03 0.00 +informatives informatif ADJ f p 0.10 0.00 0.01 0.00 +informatrice informateur NOM f s 4.15 2.30 0.09 0.00 +informe informer VER 37.41 21.69 5.76 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +informel informel ADJ m s 0.78 0.74 0.34 0.41 +informelle informel ADJ f s 0.78 0.74 0.39 0.20 +informelles informel ADJ f p 0.78 0.74 0.01 0.14 +informels informel ADJ m p 0.78 0.74 0.03 0.00 +informent informer VER 37.41 21.69 1.15 0.07 ind:pre:3p; +informer informer VER 37.41 21.69 12.56 6.42 inf; +informera informer VER 37.41 21.69 0.35 0.07 ind:fut:3s; +informerai informer VER 37.41 21.69 1.21 0.07 ind:fut:1s; +informerais informer VER 37.41 21.69 0.03 0.00 cnd:pre:1s; +informeras informer VER 37.41 21.69 0.03 0.00 ind:fut:2s; +informerez informer VER 37.41 21.69 0.15 0.00 ind:fut:2p; +informerons informer VER 37.41 21.69 0.16 0.00 ind:fut:1p; +informeront informer VER 37.41 21.69 0.11 0.00 ind:fut:3p; +informes informe ADJ p 0.79 9.53 0.12 3.11 +informez informer VER 37.41 21.69 2.06 0.14 imp:pre:2p;ind:pre:2p; +informiez informer VER 37.41 21.69 0.07 0.00 ind:imp:2p; +informions informer VER 37.41 21.69 0.00 0.07 ind:imp:1p; +informons informer VER 37.41 21.69 0.86 0.07 imp:pre:1p;ind:pre:1p; +informèrent informer VER 37.41 21.69 0.00 0.20 ind:pas:3p; +informé informer VER m s 37.41 21.69 8.00 3.65 par:pas; +informée informer VER f s 37.41 21.69 1.45 1.01 par:pas; +informées informer VER f p 37.41 21.69 0.19 0.14 par:pas; +informulable informulable ADJ f s 0.00 0.27 0.00 0.20 +informulables informulable ADJ m p 0.00 0.27 0.00 0.07 +informulé informulé ADJ m s 0.00 1.01 0.00 0.47 +informulée informulé ADJ f s 0.00 1.01 0.00 0.41 +informulées informulé ADJ f p 0.00 1.01 0.00 0.14 +informés informer VER m p 37.41 21.69 2.27 0.95 par:pas; +infortune infortune NOM f s 1.30 4.19 1.21 3.72 +infortunes infortune NOM f p 1.30 4.19 0.09 0.47 +infortuné infortuné ADJ m s 1.65 2.57 0.73 1.76 +infortunée infortuné ADJ f s 1.65 2.57 0.58 0.34 +infortunées infortuné ADJ f p 1.65 2.57 0.01 0.00 +infortunés infortuné ADJ m p 1.65 2.57 0.33 0.47 +infos info NOM f p 25.50 0.47 18.78 0.47 +infoutu infoutu ADJ m s 0.06 0.14 0.04 0.00 +infoutue infoutu ADJ f s 0.06 0.14 0.00 0.07 +infoutus infoutu ADJ m p 0.06 0.14 0.02 0.07 +infra infra ADV 0.59 0.27 0.59 0.27 +infraction infraction NOM f s 3.95 1.22 2.91 0.95 +infractions infraction NOM f p 3.95 1.22 1.04 0.27 +infranchi infranchi ADJ m s 0.00 0.07 0.00 0.07 +infranchissable infranchissable ADJ s 0.93 3.18 0.77 2.64 +infranchissables infranchissable ADJ p 0.93 3.18 0.17 0.54 +infrangible infrangible ADJ f s 0.01 0.27 0.01 0.27 +infrarouge infrarouge NOM m s 1.31 0.07 0.85 0.00 +infrarouges infrarouge ADJ p 1.09 0.00 0.48 0.00 +infrason infrason NOM m s 0.01 0.00 0.01 0.00 +infrastructure infrastructure NOM f s 0.93 0.27 0.60 0.20 +infrastructures infrastructure NOM f p 0.93 0.27 0.32 0.07 +infroissable infroissable ADJ m s 0.18 0.14 0.18 0.14 +infructueuse infructueux ADJ f s 0.34 1.22 0.07 0.00 +infructueuses infructueux ADJ f p 0.34 1.22 0.08 0.34 +infructueux infructueux ADJ m 0.34 1.22 0.19 0.88 +infréquentable infréquentable ADJ m s 0.03 0.20 0.01 0.07 +infréquentables infréquentable ADJ m p 0.03 0.20 0.02 0.14 +infréquentée infréquenté ADJ f s 0.00 0.14 0.00 0.07 +infréquentés infréquenté ADJ m p 0.00 0.14 0.00 0.07 +inféconde infécond ADJ f s 0.16 0.20 0.14 0.20 +infécondes infécond ADJ f p 0.16 0.20 0.01 0.00 +infécondité infécondité NOM f s 0.00 0.07 0.00 0.07 +inféode inféoder VER 0.00 0.34 0.00 0.07 ind:pre:3s; +inféoder inféoder VER 0.00 0.34 0.00 0.20 inf; +inféodée inféoder VER f s 0.00 0.34 0.00 0.07 par:pas; +inférai inférer VER 0.00 0.20 0.00 0.07 ind:pas:1s; +inférer inférer VER 0.00 0.20 0.00 0.07 inf; +inférieur inférieur ADJ m s 8.15 16.89 2.63 3.45 +inférieure inférieur ADJ f s 8.15 16.89 3.27 11.22 +inférieures inférieur ADJ f p 8.15 16.89 0.70 0.88 +inférieurs inférieur ADJ m p 8.15 16.89 1.54 1.35 +inférioriser inférioriser VER 0.01 0.00 0.01 0.00 inf; +infériorité infériorité NOM f s 1.06 3.45 1.06 3.38 +infériorités infériorité NOM f p 1.06 3.45 0.00 0.07 +inféré inférer VER m s 0.00 0.20 0.00 0.07 par:pas; +infus infus ADJ m s 0.27 0.34 0.00 0.14 +infusaient infuser VER 0.20 1.82 0.00 0.14 ind:imp:3p; +infusait infuser VER 0.20 1.82 0.00 0.34 ind:imp:3s; +infusant infuser VER 0.20 1.82 0.00 0.14 par:pre; +infuse infus ADJ f s 0.27 0.34 0.27 0.14 +infusent infuser VER 0.20 1.82 0.00 0.14 ind:pre:3p; +infuser infuser VER 0.20 1.82 0.10 0.20 inf; +infuses infus ADJ f p 0.27 0.34 0.00 0.07 +infusion infusion NOM f s 0.57 2.77 0.54 2.43 +infusions infusion NOM f p 0.57 2.77 0.03 0.34 +infusoires infusoire NOM m p 0.00 0.07 0.00 0.07 +infusé infuser VER m s 0.20 1.82 0.04 0.41 par:pas; +infusée infuser VER f s 0.20 1.82 0.01 0.07 par:pas; +infusées infuser VER f p 0.20 1.82 0.01 0.07 par:pas; +ingagnable ingagnable ADJ f s 0.06 0.00 0.06 0.00 +ingambe ingambe ADJ s 0.00 0.41 0.00 0.20 +ingambes ingambe ADJ m p 0.00 0.41 0.00 0.20 +ingestion ingestion NOM f s 0.17 0.20 0.17 0.20 +inglorieusement inglorieusement ADV 0.00 0.07 0.00 0.07 +inglorieux inglorieux ADJ m 0.00 0.14 0.00 0.14 +ingouvernable ingouvernable ADJ f s 0.11 0.27 0.11 0.27 +ingrat ingrat ADJ m s 5.61 8.31 3.46 4.86 +ingrate ingrat ADJ f s 5.61 8.31 1.42 2.09 +ingratement ingratement ADV 0.00 0.07 0.00 0.07 +ingrates ingrat NOM f p 3.11 2.50 0.29 0.00 +ingratitude ingratitude NOM f s 1.32 3.11 1.32 3.11 +ingrats ingrat NOM m p 3.11 2.50 0.55 0.34 +ingrédient ingrédient NOM m s 4.22 1.82 1.48 0.27 +ingrédients ingrédient NOM m p 4.22 1.82 2.75 1.55 +ingère ingérer VER 1.29 0.61 0.23 0.00 ind:pre:1s;ind:pre:3s; +ingèrent ingérer VER 1.29 0.61 0.05 0.07 ind:pre:3p; +inguinal inguinal ADJ m s 0.00 0.14 0.00 0.07 +inguinales inguinal ADJ f p 0.00 0.14 0.00 0.07 +ingénia ingénier VER 0.03 3.11 0.00 0.27 ind:pas:3s; +ingéniai ingénier VER 0.03 3.11 0.00 0.14 ind:pas:1s; +ingéniaient ingénier VER 0.03 3.11 0.00 0.14 ind:imp:3p; +ingéniais ingénier VER 0.03 3.11 0.00 0.14 ind:imp:1s; +ingéniait ingénier VER 0.03 3.11 0.00 1.35 ind:imp:3s; +ingéniant ingénier VER 0.03 3.11 0.00 0.27 par:pre; +ingénie ingénier VER 0.03 3.11 0.01 0.34 ind:pre:1s;ind:pre:3s; +ingénient ingénier VER 0.03 3.11 0.00 0.07 ind:pre:3p; +ingénier ingénier VER 0.03 3.11 0.00 0.14 inf; +ingénierie ingénierie NOM f s 0.94 0.00 0.94 0.00 +ingénieur_chimiste ingénieur_chimiste NOM m s 0.00 0.07 0.00 0.07 +ingénieur_conseil ingénieur_conseil NOM m s 0.00 0.14 0.00 0.14 +ingénieur ingénieur NOM m s 21.12 12.36 18.92 9.12 +ingénieurs ingénieur NOM m p 21.12 12.36 2.20 3.24 +ingénieuse ingénieux ADJ f s 3.55 4.32 0.62 0.95 +ingénieusement ingénieusement ADV 0.06 0.41 0.06 0.41 +ingénieuses ingénieux ADJ f p 3.55 4.32 0.02 0.61 +ingénieux ingénieux ADJ m 3.55 4.32 2.90 2.77 +ingéniosité ingéniosité NOM f s 0.70 3.45 0.70 3.31 +ingéniosités ingéniosité NOM f p 0.70 3.45 0.00 0.14 +ingénié ingénier VER m s 0.03 3.11 0.02 0.20 par:pas; +ingéniés ingénier VER m p 0.03 3.11 0.00 0.07 par:pas; +ingénu ingénu NOM m s 0.99 0.81 0.37 0.14 +ingénue ingénu ADJ f s 1.03 1.96 0.36 0.54 +ingénues ingénu NOM f p 0.99 0.81 0.28 0.27 +ingénuité ingénuité NOM f s 0.52 1.15 0.52 1.08 +ingénuités ingénuité NOM f p 0.52 1.15 0.00 0.07 +ingénument ingénument ADV 0.00 0.95 0.00 0.95 +ingénus ingénu ADJ m p 1.03 1.96 0.23 0.47 +ingérable ingérable ADJ m s 0.16 0.00 0.16 0.00 +ingérant ingérer VER 1.29 0.61 0.03 0.07 par:pre; +ingérence ingérence NOM f s 0.23 1.76 0.21 1.01 +ingérences ingérence NOM f p 0.23 1.76 0.02 0.74 +ingérer ingérer VER 1.29 0.61 0.38 0.34 inf; +ingurgita ingurgiter VER 0.99 4.66 0.00 0.20 ind:pas:3s; +ingurgitaient ingurgiter VER 0.99 4.66 0.00 0.20 ind:imp:3p; +ingurgitais ingurgiter VER 0.99 4.66 0.00 0.07 ind:imp:1s; +ingurgitait ingurgiter VER 0.99 4.66 0.01 0.47 ind:imp:3s; +ingurgitant ingurgiter VER 0.99 4.66 0.00 0.41 par:pre; +ingurgitation ingurgitation NOM f s 0.00 0.14 0.00 0.14 +ingurgite ingurgiter VER 0.99 4.66 0.15 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ingurgitent ingurgiter VER 0.99 4.66 0.02 0.07 ind:pre:3p; +ingurgiter ingurgiter VER 0.99 4.66 0.40 1.96 inf; +ingurgiterait ingurgiter VER 0.99 4.66 0.00 0.07 cnd:pre:3s; +ingurgité ingurgiter VER m s 0.99 4.66 0.40 0.54 par:pas; +ingurgitée ingurgiter VER f s 0.99 4.66 0.00 0.27 par:pas; +ingurgitées ingurgiter VER f p 0.99 4.66 0.00 0.07 par:pas; +ingurgités ingurgiter VER m p 0.99 4.66 0.00 0.14 par:pas; +ingérons ingérer VER 1.29 0.61 0.01 0.00 ind:pre:1p; +ingéré ingérer VER m s 1.29 0.61 0.41 0.00 par:pas; +ingérée ingérer VER f s 1.29 0.61 0.14 0.00 par:pas; +ingérées ingérer VER f p 1.29 0.61 0.02 0.07 par:pas; +ingérés ingérer VER m p 1.29 0.61 0.02 0.07 par:pas; +inguérissable inguérissable ADJ f s 0.03 1.62 0.03 1.15 +inguérissables inguérissable ADJ f p 0.03 1.62 0.00 0.47 +inhabile inhabile ADJ s 0.01 0.14 0.01 0.14 +inhabitable inhabitable ADJ s 0.54 1.08 0.51 0.81 +inhabitables inhabitable ADJ m p 0.54 1.08 0.04 0.27 +inhabité inhabité ADJ m s 1.71 2.57 0.60 1.08 +inhabitée inhabité ADJ f s 1.71 2.57 1.00 1.22 +inhabituel inhabituel ADJ m s 10.23 7.16 7.04 2.70 +inhabituelle inhabituel ADJ f s 10.23 7.16 1.83 3.58 +inhabituellement inhabituellement ADV 0.11 0.20 0.11 0.20 +inhabituelles inhabituel ADJ f p 10.23 7.16 0.75 0.41 +inhabituels inhabituel ADJ m p 10.23 7.16 0.61 0.47 +inhabitées inhabité ADJ f p 1.71 2.57 0.07 0.27 +inhabités inhabité ADJ m p 1.71 2.57 0.04 0.00 +inhala inhaler VER 0.77 0.47 0.00 0.14 ind:pas:3s; +inhalais inhaler VER 0.77 0.47 0.00 0.07 ind:imp:1s; +inhalait inhaler VER 0.77 0.47 0.05 0.07 ind:imp:3s; +inhalant inhaler VER 0.77 0.47 0.03 0.07 par:pre; +inhalateur inhalateur NOM m s 0.93 0.27 0.86 0.20 +inhalateurs inhalateur NOM m p 0.93 0.27 0.06 0.07 +inhalation inhalation NOM f s 0.67 0.41 0.60 0.20 +inhalations inhalation NOM f p 0.67 0.41 0.07 0.20 +inhaler inhaler VER 0.77 0.47 0.17 0.14 inf; +inhalera inhaler VER 0.77 0.47 0.02 0.00 ind:fut:3s; +inhalez inhaler VER 0.77 0.47 0.06 0.00 imp:pre:2p;ind:pre:2p; +inhalé inhaler VER m s 0.77 0.47 0.44 0.00 par:pas; +inharmonieux inharmonieux ADJ m s 0.01 0.00 0.01 0.00 +inhibait inhiber VER 0.47 0.61 0.00 0.07 ind:imp:3s; +inhibant inhiber VER 0.47 0.61 0.04 0.20 par:pre; +inhibe inhiber VER 0.47 0.61 0.19 0.00 ind:pre:3s; +inhibent inhiber VER 0.47 0.61 0.02 0.00 ind:pre:3p; +inhiber inhiber VER 0.47 0.61 0.12 0.07 inf; +inhibiteur inhibiteur NOM m s 0.84 0.00 0.69 0.00 +inhibiteurs inhibiteur NOM m p 0.84 0.00 0.15 0.00 +inhibition inhibition NOM f s 1.51 1.22 0.66 0.74 +inhibitions inhibition NOM f p 1.51 1.22 0.85 0.47 +inhibitrice inhibiteur ADJ f s 0.22 0.00 0.03 0.00 +inhibât inhiber VER 0.47 0.61 0.00 0.07 sub:imp:3s; +inhibé inhibé ADJ m s 0.34 0.27 0.18 0.07 +inhibée inhibé ADJ f s 0.34 0.27 0.03 0.14 +inhibés inhibé ADJ m p 0.34 0.27 0.14 0.07 +inhospitalier inhospitalier ADJ m s 0.19 1.08 0.11 0.47 +inhospitaliers inhospitalier ADJ m p 0.19 1.08 0.02 0.07 +inhospitalière inhospitalier ADJ f s 0.19 1.08 0.05 0.27 +inhospitalières inhospitalier ADJ f p 0.19 1.08 0.01 0.27 +inhospitalité inhospitalité NOM f s 0.01 0.07 0.01 0.07 +inhuma inhumer VER 1.11 1.89 0.00 0.27 ind:pas:3s; +inhumaient inhumer VER 1.11 1.89 0.00 0.07 ind:imp:3p; +inhumain inhumain ADJ m s 4.46 8.85 3.21 4.12 +inhumaine inhumain ADJ f s 4.46 8.85 0.32 3.24 +inhumainement inhumainement ADV 0.01 0.34 0.01 0.34 +inhumaines inhumain ADJ f p 4.46 8.85 0.45 0.74 +inhumains inhumain ADJ m p 4.46 8.85 0.48 0.74 +inhumait inhumer VER 1.11 1.89 0.00 0.07 ind:imp:3s; +inhumanité inhumanité NOM f s 0.28 0.68 0.28 0.68 +inhumation inhumation NOM f s 0.31 1.28 0.31 1.22 +inhumations inhumation NOM f p 0.31 1.28 0.00 0.07 +inhume inhumer VER 1.11 1.89 0.01 0.00 ind:pre:3s; +inhumer inhumer VER 1.11 1.89 0.42 0.54 inf; +inhumons inhumer VER 1.11 1.89 0.00 0.07 imp:pre:1p; +inhumé inhumer VER m s 1.11 1.89 0.36 0.61 par:pas; +inhumée inhumer VER f s 1.11 1.89 0.12 0.07 par:pas; +inhumés inhumer VER m p 1.11 1.89 0.19 0.20 par:pas; +inhérent inhérent ADJ m s 0.75 1.82 0.38 0.61 +inhérente inhérent ADJ f s 0.75 1.82 0.14 0.41 +inhérentes inhérent ADJ f p 0.75 1.82 0.13 0.47 +inhérents inhérent ADJ m p 0.75 1.82 0.09 0.34 +inidentifiable inidentifiable ADJ m s 0.00 0.34 0.00 0.14 +inidentifiables inidentifiable ADJ p 0.00 0.34 0.00 0.20 +inimaginable inimaginable ADJ s 3.17 4.80 2.48 3.58 +inimaginablement inimaginablement ADV 0.01 0.07 0.01 0.07 +inimaginables inimaginable ADJ p 3.17 4.80 0.69 1.22 +inimitable inimitable ADJ s 0.64 3.51 0.64 3.51 +inimitablement inimitablement ADV 0.00 0.07 0.00 0.07 +inimitié inimitié NOM f s 0.33 1.08 0.31 0.74 +inimitiés inimitié NOM f p 0.33 1.08 0.01 0.34 +inimité inimité ADJ m s 0.11 0.00 0.11 0.00 +ininflammable ininflammable ADJ m s 0.19 0.00 0.19 0.00 +inintelligence inintelligence NOM f s 0.00 0.14 0.00 0.14 +inintelligent inintelligent ADJ m s 0.11 0.34 0.01 0.14 +inintelligents inintelligent ADJ m p 0.11 0.34 0.10 0.20 +inintelligible inintelligible ADJ m s 0.18 2.16 0.08 1.28 +inintelligibles inintelligible ADJ p 0.18 2.16 0.10 0.88 +ininterprétables ininterprétable ADJ f p 0.00 0.07 0.00 0.07 +ininterrompu ininterrompu ADJ m s 0.61 4.05 0.08 2.23 +ininterrompue ininterrompu ADJ f s 0.61 4.05 0.29 1.49 +ininterrompues ininterrompu ADJ f p 0.61 4.05 0.22 0.20 +ininterrompus ininterrompu ADJ m p 0.61 4.05 0.02 0.14 +inintéressant inintéressant ADJ m s 0.41 0.54 0.06 0.20 +inintéressante inintéressant ADJ f s 0.41 0.54 0.17 0.14 +inintéressantes inintéressant ADJ f p 0.41 0.54 0.02 0.14 +inintéressants inintéressant ADJ m p 0.41 0.54 0.15 0.07 +inintérêt inintérêt NOM m s 0.00 0.14 0.00 0.14 +inique inique ADJ s 0.28 0.34 0.27 0.20 +iniques inique ADJ p 0.28 0.34 0.01 0.14 +iniquité iniquité NOM f s 1.06 1.35 0.98 1.08 +iniquités iniquité NOM f p 1.06 1.35 0.09 0.27 +initia initier VER 3.59 8.78 0.06 0.54 ind:pas:3s; +initiai initier VER 3.59 8.78 0.01 0.14 ind:pas:1s; +initiaient initier VER 3.59 8.78 0.00 0.27 ind:imp:3p; +initiais initier VER 3.59 8.78 0.00 0.20 ind:imp:1s; +initiait initier VER 3.59 8.78 0.15 0.47 ind:imp:3s; +initial initial ADJ m s 2.86 7.23 1.30 4.19 +initiale initial ADJ f s 2.86 7.23 1.09 1.96 +initialement initialement ADV 0.27 1.49 0.27 1.49 +initiales initiale NOM f p 4.02 7.36 3.61 6.89 +initialisation initialisation NOM f s 0.55 0.00 0.55 0.00 +initialise initialiser VER 0.14 0.00 0.04 0.00 imp:pre:2s;ind:pre:1s; +initialiser initialiser VER 0.14 0.00 0.06 0.00 inf; +initialisez initialiser VER 0.14 0.00 0.03 0.00 imp:pre:2p; +initialisé initialisé ADJ m s 0.15 0.00 0.07 0.00 +initialisée initialisé ADJ f s 0.15 0.00 0.04 0.00 +initialisés initialisé ADJ m p 0.15 0.00 0.03 0.00 +initiant initier VER 3.59 8.78 0.01 0.20 par:pre; +initiateur initiateur ADJ m s 0.16 0.20 0.14 0.14 +initiateurs initiateur NOM m p 0.11 1.01 0.11 0.14 +initiation initiation NOM f s 1.63 4.39 1.58 4.05 +initiations initiation NOM f p 1.63 4.39 0.05 0.34 +initiatique initiatique ADJ s 0.22 1.82 0.21 1.42 +initiatiques initiatique ADJ p 0.22 1.82 0.01 0.41 +initiative initiative NOM f s 8.76 16.82 7.08 14.46 +initiatives initiative NOM f p 8.76 16.82 1.67 2.36 +initiatrice initiateur NOM f s 0.11 1.01 0.00 0.27 +initiatrices initiateur NOM f p 0.11 1.01 0.00 0.07 +initiaux initial ADJ m p 2.86 7.23 0.14 0.27 +initie initier VER 3.59 8.78 0.37 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +initier initier VER 3.59 8.78 1.27 3.45 inf; +initiera initier VER 3.59 8.78 0.00 0.07 ind:fut:3s; +initierai initier VER 3.59 8.78 0.04 0.14 ind:fut:1s; +initierait initier VER 3.59 8.78 0.00 0.07 cnd:pre:3s; +initierons initier VER 3.59 8.78 0.00 0.07 ind:fut:1p; +initiez initier VER 3.59 8.78 0.10 0.00 imp:pre:2p;ind:pre:2p; +initiâmes initier VER 3.59 8.78 0.00 0.07 ind:pas:1p; +initiât initier VER 3.59 8.78 0.00 0.07 sub:imp:3s; +initièrent initier VER 3.59 8.78 0.00 0.20 ind:pas:3p; +initié initier VER m s 3.59 8.78 1.00 1.89 par:pas; +initiée initier VER f s 3.59 8.78 0.40 0.34 par:pas; +initiées initier VER f p 3.59 8.78 0.03 0.00 par:pas; +initiés initié NOM m p 0.97 3.04 0.56 2.30 +injecta injecter VER 6.81 3.11 0.00 0.07 ind:pas:3s; +injectable injectable ADJ s 0.05 0.00 0.05 0.00 +injectaient injecter VER 6.81 3.11 0.02 0.14 ind:imp:3p; +injectait injecter VER 6.81 3.11 0.14 0.07 ind:imp:3s; +injectant injecter VER 6.81 3.11 0.28 0.14 par:pre; +injecte injecter VER 6.81 3.11 1.32 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +injectent injecter VER 6.81 3.11 0.25 0.07 ind:pre:3p; +injecter injecter VER 6.81 3.11 1.41 0.61 inf; +injectera injecter VER 6.81 3.11 0.03 0.00 ind:fut:3s; +injecteras injecter VER 6.81 3.11 0.04 0.00 ind:fut:2s; +injectes injecter VER 6.81 3.11 0.06 0.07 ind:pre:2s; +injecteur injecteur NOM m s 0.60 0.07 0.08 0.07 +injecteurs injecteur NOM m p 0.60 0.07 0.52 0.00 +injectez injecter VER 6.81 3.11 0.29 0.00 imp:pre:2p;ind:pre:2p; +injection injection NOM f s 8.98 1.42 7.83 0.95 +injections injection NOM f p 8.98 1.42 1.16 0.47 +injecté injecter VER m s 6.81 3.11 1.97 0.88 par:pas; +injectée injecter VER f s 6.81 3.11 0.40 0.00 par:pas; +injectés injecter VER m p 6.81 3.11 0.61 0.81 par:pas; +injoignable injoignable ADJ s 1.21 0.07 1.10 0.07 +injoignables injoignable ADJ p 1.21 0.07 0.12 0.00 +injonction injonction NOM f s 1.58 4.26 1.30 2.36 +injonctions injonction NOM f p 1.58 4.26 0.28 1.89 +injouable injouable ADJ s 0.02 0.00 0.02 0.00 +injure injure NOM f s 4.58 16.69 2.22 4.93 +injures injure NOM f p 4.58 16.69 2.35 11.76 +injuria injurier VER 1.81 6.55 0.00 0.61 ind:pas:3s; +injuriai injurier VER 1.81 6.55 0.10 0.07 ind:pas:1s; +injuriaient injurier VER 1.81 6.55 0.00 0.27 ind:imp:3p; +injuriais injurier VER 1.81 6.55 0.00 0.14 ind:imp:1s; +injuriait injurier VER 1.81 6.55 0.17 1.15 ind:imp:3s; +injuriant injurier VER 1.81 6.55 0.02 0.54 par:pre; +injurie injurier VER 1.81 6.55 0.05 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +injurient injurier VER 1.81 6.55 0.01 0.07 ind:pre:3p; +injurier injurier VER 1.81 6.55 0.49 1.89 inf; +injuries injurier VER 1.81 6.55 0.05 0.00 ind:pre:2s; +injurieuse injurieux ADJ f s 0.13 1.15 0.04 0.27 +injurieusement injurieusement ADV 0.00 0.07 0.00 0.07 +injurieux injurieux ADJ m 0.13 1.15 0.09 0.88 +injurié injurier VER m s 1.81 6.55 0.78 0.47 par:pas; +injuriée injurier VER f s 1.81 6.55 0.14 0.27 par:pas; +injuriés injurier VER m p 1.81 6.55 0.01 0.20 par:pas; +injuste injuste ADJ s 17.46 15.47 15.94 13.38 +injustement injustement ADV 1.58 2.23 1.58 2.23 +injustes injuste ADJ p 17.46 15.47 1.52 2.09 +injustice injustice NOM f s 6.59 13.51 4.61 11.49 +injustices injustice NOM f p 6.59 13.51 1.98 2.03 +injustifiable injustifiable ADJ f s 0.06 0.95 0.06 0.88 +injustifiables injustifiable ADJ m p 0.06 0.95 0.00 0.07 +injustifié injustifié ADJ m s 1.33 1.42 0.41 0.27 +injustifiée injustifié ADJ f s 1.33 1.42 0.70 0.61 +injustifiées injustifié ADJ f p 1.33 1.42 0.05 0.41 +injustifiés injustifié ADJ m p 1.33 1.42 0.17 0.14 +inlassable inlassable ADJ s 0.38 4.19 0.24 3.31 +inlassablement inlassablement ADV 0.38 9.59 0.38 9.59 +inlassables inlassable ADJ p 0.38 4.19 0.14 0.88 +innervant innerver VER 0.02 0.20 0.02 0.00 par:pre; +innervation innervation NOM f s 0.00 0.27 0.00 0.27 +innerver innerver VER 0.02 0.20 0.00 0.07 inf; +innervé innerver VER m s 0.02 0.20 0.00 0.14 par:pas; +innocemment innocemment ADV 0.64 3.18 0.64 3.18 +innocence innocence NOM f s 10.63 20.00 10.63 19.59 +innocences innocence NOM f p 10.63 20.00 0.00 0.41 +innocent innocent ADJ m s 39.31 23.11 23.49 11.22 +innocentait innocenter VER 2.56 1.42 0.01 0.14 ind:imp:3s; +innocentant innocenter VER 2.56 1.42 0.03 0.00 par:pre; +innocente innocent ADJ f s 39.31 23.11 8.15 5.14 +innocenter innocenter VER 2.56 1.42 0.76 0.61 inf; +innocentera innocenter VER 2.56 1.42 0.27 0.00 ind:fut:3s; +innocenterai innocenter VER 2.56 1.42 0.01 0.00 ind:fut:1s; +innocenterait innocenter VER 2.56 1.42 0.02 0.14 cnd:pre:3s; +innocentes innocent ADJ f p 39.31 23.11 2.73 2.43 +innocents innocent NOM m p 24.68 13.18 11.03 5.95 +innocenté innocenter VER m s 2.56 1.42 0.94 0.14 par:pas; +innocentée innocenter VER f s 2.56 1.42 0.15 0.00 par:pas; +innocuité innocuité NOM f s 0.00 0.20 0.00 0.20 +innombrable innombrable ADJ s 3.15 29.53 0.02 4.12 +innombrablement innombrablement ADV 0.00 0.07 0.00 0.07 +innombrables innombrable ADJ p 3.15 29.53 3.13 25.41 +innominés innominé ADJ m p 0.00 0.14 0.00 0.14 +innommable innommable ADJ s 0.49 3.85 0.33 2.50 +innommables innommable ADJ p 0.49 3.85 0.17 1.35 +innommé innommé ADJ m s 0.05 0.27 0.00 0.14 +innommée innommé ADJ f s 0.05 0.27 0.05 0.00 +innommés innommé ADJ m p 0.05 0.27 0.00 0.14 +innova innover VER 0.93 0.88 0.00 0.07 ind:pas:3s; +innovais innover VER 0.93 0.88 0.00 0.07 ind:imp:1s; +innovait innover VER 0.93 0.88 0.02 0.07 ind:imp:3s; +innovant innovant ADJ m s 0.07 0.07 0.04 0.07 +innovante innovant ADJ f s 0.07 0.07 0.03 0.00 +innovateur innovateur ADJ m s 0.07 0.00 0.06 0.00 +innovation innovation NOM f s 1.06 2.03 0.55 1.49 +innovations innovation NOM f p 1.06 2.03 0.51 0.54 +innovatrice innovateur ADJ f s 0.07 0.00 0.01 0.00 +innove innover VER 0.93 0.88 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +innover innover VER 0.93 0.88 0.55 0.34 inf; +innovez innover VER 0.93 0.88 0.00 0.07 ind:pre:2p; +innové innover VER m s 0.93 0.88 0.09 0.14 par:pas; +inné inné ADJ m s 1.26 2.97 0.95 1.35 +innée inné ADJ f s 1.26 2.97 0.26 1.28 +innées inné ADJ f p 1.26 2.97 0.03 0.07 +innés inné ADJ m p 1.26 2.97 0.01 0.27 +inoccupations inoccupation NOM f p 0.00 0.07 0.00 0.07 +inoccupé inoccupé ADJ m s 0.67 3.24 0.11 0.88 +inoccupée inoccupé ADJ f s 0.67 3.24 0.48 1.49 +inoccupées inoccupé ADJ f p 0.67 3.24 0.04 0.34 +inoccupés inoccupé ADJ m p 0.67 3.24 0.02 0.54 +inoculant inoculer VER 0.93 0.95 0.01 0.00 par:pre; +inoculation inoculation NOM f s 0.24 0.07 0.24 0.07 +inocule inoculer VER 0.93 0.95 0.05 0.14 ind:pre:1s;ind:pre:3s; +inoculent inoculer VER 0.93 0.95 0.00 0.07 ind:pre:3p; +inoculer inoculer VER 0.93 0.95 0.09 0.20 inf; +inoculerait inoculer VER 0.93 0.95 0.00 0.07 cnd:pre:3s; +inoculé inoculer VER m s 0.93 0.95 0.55 0.34 par:pas; +inoculée inoculer VER f s 0.93 0.95 0.07 0.14 par:pas; +inoculées inoculer VER f p 0.93 0.95 0.16 0.00 par:pas; +inodore inodore ADJ s 0.15 0.54 0.14 0.47 +inodores inodore ADJ p 0.15 0.54 0.01 0.07 +inoffensif inoffensif ADJ m s 7.78 8.04 4.62 3.45 +inoffensifs inoffensif ADJ m p 7.78 8.04 1.35 2.03 +inoffensive inoffensif ADJ f s 7.78 8.04 1.38 1.49 +inoffensives inoffensif ADJ f p 7.78 8.04 0.43 1.08 +inonda inonder VER 6.69 15.14 0.13 1.42 ind:pas:3s; +inondable inondable ADJ f s 0.01 0.20 0.00 0.07 +inondables inondable ADJ f p 0.01 0.20 0.01 0.14 +inondaient inonder VER 6.69 15.14 0.01 0.74 ind:imp:3p; +inondait inonder VER 6.69 15.14 0.18 3.04 ind:imp:3s; +inondant inonder VER 6.69 15.14 0.21 1.35 par:pre; +inondation inondation NOM f s 3.21 3.78 2.15 2.43 +inondations inondation NOM f p 3.21 3.78 1.06 1.35 +inonde inonder VER 6.69 15.14 0.73 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inondent inonder VER 6.69 15.14 0.26 0.14 ind:pre:3p; +inonder inonder VER 6.69 15.14 1.37 1.35 inf; +inondera inonder VER 6.69 15.14 0.03 0.00 ind:fut:3s; +inonderai inonder VER 6.69 15.14 0.02 0.07 ind:fut:1s; +inonderait inonder VER 6.69 15.14 0.05 0.00 cnd:pre:3s; +inonderons inonder VER 6.69 15.14 0.02 0.00 ind:fut:1p; +inondez inonder VER 6.69 15.14 0.09 0.00 imp:pre:2p;ind:pre:2p; +inondiez inonder VER 6.69 15.14 0.02 0.00 ind:imp:2p; +inondât inonder VER 6.69 15.14 0.00 0.07 sub:imp:3s; +inondèrent inonder VER 6.69 15.14 0.00 0.07 ind:pas:3p; +inondé inonder VER m s 6.69 15.14 2.13 2.70 par:pas; +inondée inonder VER f s 6.69 15.14 0.74 1.35 par:pas; +inondées inonder VER f p 6.69 15.14 0.22 0.14 par:pas; +inondés inonder VER m p 6.69 15.14 0.48 0.61 par:pas; +inopiné inopiné ADJ m s 0.26 1.15 0.04 0.20 +inopinée inopiné ADJ f s 0.26 1.15 0.09 0.68 +inopinées inopiné ADJ f p 0.26 1.15 0.14 0.27 +inopinément inopinément ADV 0.41 1.42 0.41 1.42 +inopportun inopportun ADJ m s 0.86 1.82 0.71 0.68 +inopportune inopportun ADJ f s 0.86 1.82 0.13 0.61 +inopportunes inopportun ADJ f p 0.86 1.82 0.01 0.34 +inopportunité inopportunité NOM f s 0.00 0.07 0.00 0.07 +inopportuns inopportun ADJ m p 0.86 1.82 0.01 0.20 +inopportunément inopportunément ADV 0.02 0.07 0.02 0.07 +inopérable inopérable ADJ s 0.26 0.00 0.24 0.00 +inopérables inopérable ADJ m p 0.26 0.00 0.02 0.00 +inopérant inopérant ADJ m s 0.35 0.88 0.07 0.34 +inopérante inopérant ADJ f s 0.35 0.88 0.07 0.07 +inopérantes inopérant ADJ f p 0.35 0.88 0.01 0.20 +inopérants inopérant ADJ m p 0.35 0.88 0.19 0.27 +inorganique inorganique ADJ f s 0.01 0.14 0.01 0.14 +inorganisé inorganisé ADJ m s 0.04 0.20 0.02 0.00 +inorganisée inorganisé ADJ f s 0.04 0.20 0.02 0.07 +inorganisées inorganisé ADJ f p 0.04 0.20 0.00 0.14 +inouï inouï ADJ m s 3.23 15.20 1.79 6.28 +inouïe inouï ADJ f s 3.23 15.20 0.97 5.27 +inouïes inouï ADJ f p 3.23 15.20 0.09 2.09 +inouïs inouï ADJ m p 3.23 15.20 0.38 1.55 +inoubliable inoubliable ADJ s 5.07 7.50 4.21 4.80 +inoubliablement inoubliablement ADV 0.00 0.07 0.00 0.07 +inoubliables inoubliable ADJ p 5.07 7.50 0.86 2.70 +inoublié inoublié ADJ m s 0.00 0.14 0.00 0.07 +inoubliées inoublié ADJ f p 0.00 0.14 0.00 0.07 +inox inox NOM m 0.13 0.27 0.13 0.27 +inoxydable inoxydable NOM m s 0.23 0.14 0.23 0.14 +inoxydables inoxydable ADJ m p 0.16 0.61 0.01 0.14 +input input NOM m s 0.00 0.07 0.00 0.07 +inqualifiable inqualifiable ADJ s 0.30 1.08 0.29 0.95 +inqualifiables inqualifiable ADJ m p 0.30 1.08 0.01 0.14 +inquiet inquiet ADJ m s 34.96 46.55 17.90 23.38 +inquiets inquiet ADJ m p 34.96 46.55 4.28 6.28 +inquilisme inquilisme NOM m s 0.00 0.07 0.00 0.07 +inquisiteur inquisiteur ADJ m s 0.83 2.70 0.80 1.69 +inquisiteurs inquisiteur NOM m p 1.45 2.43 0.67 1.35 +inquisition inquisition NOM f s 3.15 4.66 3.13 4.26 +inquisitionner inquisitionner VER 0.00 0.07 0.00 0.07 inf; +inquisitions inquisition NOM f p 3.15 4.66 0.01 0.41 +inquisitive inquisitif ADJ f s 0.00 0.07 0.00 0.07 +inquisitorial inquisitorial ADJ m s 0.10 0.54 0.10 0.07 +inquisitoriale inquisitorial ADJ f s 0.10 0.54 0.00 0.27 +inquisitoriales inquisitorial ADJ f p 0.10 0.54 0.00 0.14 +inquisitoriaux inquisitorial ADJ m p 0.10 0.54 0.00 0.07 +inquisitrice inquisiteur ADJ f s 0.83 2.70 0.02 0.14 +inquiète inquiéter VER 212.16 71.01 114.06 22.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +inquiètent inquiéter VER 212.16 71.01 3.02 1.01 ind:pre:3p; +inquiètes inquiéter VER 212.16 71.01 13.85 0.68 ind:pre:2s;sub:pre:2s; +inquiéta inquiéter VER 212.16 71.01 0.03 4.39 ind:pas:3s; +inquiétai inquiéter VER 212.16 71.01 0.00 0.34 ind:pas:1s; +inquiétaient inquiéter VER 212.16 71.01 0.12 2.16 ind:imp:3p; +inquiétais inquiéter VER 212.16 71.01 4.12 1.08 ind:imp:1s;ind:imp:2s; +inquiétait inquiéter VER 212.16 71.01 3.56 11.08 ind:imp:3s; +inquiétant inquiétant ADJ m s 5.72 20.88 3.88 8.72 +inquiétante inquiétant ADJ f s 5.72 20.88 1.18 7.03 +inquiétantes inquiétant ADJ f p 5.72 20.88 0.32 2.36 +inquiétants inquiétant ADJ m p 5.72 20.88 0.35 2.77 +inquiétassent inquiéter VER 212.16 71.01 0.00 0.07 sub:imp:3p; +inquiéter inquiéter VER 212.16 71.01 27.98 12.36 inf;; +inquiétera inquiéter VER 212.16 71.01 0.32 0.27 ind:fut:3s; +inquiéterai inquiéter VER 212.16 71.01 0.12 0.07 ind:fut:1s; +inquiéteraient inquiéter VER 212.16 71.01 0.06 0.07 cnd:pre:3p; +inquiéterais inquiéter VER 212.16 71.01 0.51 0.07 cnd:pre:1s;cnd:pre:2s; +inquiéterait inquiéter VER 212.16 71.01 0.23 0.61 cnd:pre:3s; +inquiéteras inquiéter VER 212.16 71.01 0.04 0.07 ind:fut:2s; +inquiéteriez inquiéter VER 212.16 71.01 0.01 0.00 cnd:pre:2p; +inquiéteront inquiéter VER 212.16 71.01 0.05 0.00 ind:fut:3p; +inquiéteur inquiéteur NOM m s 0.00 0.07 0.00 0.07 +inquiétez inquiéter VER 212.16 71.01 38.80 3.85 imp:pre:2p;ind:pre:2p; +inquiétiez inquiéter VER 212.16 71.01 0.23 0.07 ind:imp:2p; +inquiétions inquiéter VER 212.16 71.01 0.15 0.07 ind:imp:1p; +inquiétons inquiéter VER 212.16 71.01 0.45 0.07 imp:pre:1p;ind:pre:1p; +inquiétât inquiéter VER 212.16 71.01 0.00 0.27 sub:imp:3s; +inquiétèrent inquiéter VER 212.16 71.01 0.00 0.54 ind:pas:3p; +inquiété inquiéter VER m s 212.16 71.01 2.21 4.26 par:pas; +inquiétude inquiétude NOM f s 10.04 46.76 8.20 41.35 +inquiétudes inquiétude NOM f p 10.04 46.76 1.84 5.41 +inquiétée inquiéter VER f s 212.16 71.01 1.41 1.62 par:pas; +inquiétées inquiéter VER f p 212.16 71.01 0.04 0.00 par:pas; +inquiétés inquiéter VER m p 212.16 71.01 0.50 0.95 par:pas; +inracontables inracontable ADJ f p 0.14 0.00 0.14 0.00 +insaisissable insaisissable ADJ s 1.16 6.15 1.08 5.47 +insaisissables insaisissable ADJ p 1.16 6.15 0.08 0.68 +insalissable insalissable ADJ s 0.00 0.07 0.00 0.07 +insalubre insalubre ADJ s 0.36 0.95 0.35 0.68 +insalubres insalubre ADJ p 0.36 0.95 0.01 0.27 +insalubrité insalubrité NOM f s 0.00 0.27 0.00 0.27 +insane insane ADJ m s 0.05 0.41 0.05 0.07 +insanes insane ADJ p 0.05 0.41 0.00 0.34 +insanité insanité NOM f s 0.44 1.49 0.22 0.27 +insanités insanité NOM f p 0.44 1.49 0.22 1.22 +insatiable insatiable ADJ s 2.50 3.45 1.73 2.84 +insatiablement insatiablement ADV 0.00 0.34 0.00 0.34 +insatiables insatiable ADJ p 2.50 3.45 0.77 0.61 +insatisfaction insatisfaction NOM f s 0.22 1.15 0.21 1.08 +insatisfactions insatisfaction NOM f p 0.22 1.15 0.01 0.07 +insatisfaisant insatisfaisant ADJ m s 0.24 0.14 0.18 0.14 +insatisfaisante insatisfaisant ADJ f s 0.24 0.14 0.05 0.00 +insatisfaisantes insatisfaisant ADJ f p 0.24 0.14 0.01 0.00 +insatisfait insatisfait ADJ m s 1.71 1.89 0.64 1.01 +insatisfaite insatisfait ADJ f s 1.71 1.89 0.53 0.34 +insatisfaites insatisfait ADJ f p 1.71 1.89 0.20 0.27 +insatisfaits insatisfait ADJ m p 1.71 1.89 0.34 0.27 +inscription inscription NOM f s 7.17 19.32 5.04 12.97 +inscriptions inscription NOM f p 7.17 19.32 2.13 6.35 +inscrira inscrire VER 25.41 42.70 0.25 0.27 ind:fut:3s; +inscrirai inscrire VER 25.41 42.70 0.55 0.00 ind:fut:1s; +inscriraient inscrire VER 25.41 42.70 0.01 0.07 cnd:pre:3p; +inscrirais inscrire VER 25.41 42.70 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +inscrirait inscrire VER 25.41 42.70 0.02 0.41 cnd:pre:3s; +inscriras inscrire VER 25.41 42.70 0.00 0.07 ind:fut:2s; +inscrire inscrire VER 25.41 42.70 7.84 9.86 inf; +inscris inscrire VER 25.41 42.70 2.63 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s; +inscrit inscrire VER m s 25.41 42.70 7.01 13.04 ind:pre:3s;par:pas; +inscrite inscrire VER f s 25.41 42.70 2.32 3.92 par:pas; +inscrites inscrire VER f p 25.41 42.70 0.29 0.81 par:pas; +inscrits inscrire VER m p 25.41 42.70 1.69 2.70 par:pas; +inscrivaient inscrire VER 25.41 42.70 0.02 1.55 ind:imp:3p; +inscrivais inscrire VER 25.41 42.70 0.02 0.20 ind:imp:1s;ind:imp:2s; +inscrivait inscrire VER 25.41 42.70 0.18 2.97 ind:imp:3s; +inscrivant inscrire VER 25.41 42.70 0.07 1.28 par:pre; +inscrive inscrire VER 25.41 42.70 0.33 0.34 sub:pre:1s;sub:pre:3s; +inscrivent inscrire VER 25.41 42.70 0.34 1.28 ind:pre:3p; +inscrivez inscrire VER 25.41 42.70 1.58 0.27 imp:pre:2p;ind:pre:2p; +inscrivirent inscrire VER 25.41 42.70 0.01 0.14 ind:pas:3p; +inscrivis inscrire VER 25.41 42.70 0.00 0.61 ind:pas:1s; +inscrivit inscrire VER 25.41 42.70 0.01 2.03 ind:pas:3s; +inscrivons inscrire VER 25.41 42.70 0.20 0.00 imp:pre:1p; +inscrutable inscrutable ADJ f s 0.00 0.14 0.00 0.14 +insecte insecte NOM m s 13.79 22.70 5.46 8.04 +insectes insecte NOM m p 13.79 22.70 8.32 14.66 +insecticide insecticide NOM m s 1.05 0.61 0.92 0.47 +insecticides insecticide NOM m p 1.05 0.61 0.14 0.14 +insectivore insectivore ADJ f s 0.02 0.00 0.02 0.00 +insensibilisait insensibiliser VER 0.18 0.27 0.00 0.07 ind:imp:3s; +insensibiliser insensibiliser VER 0.18 0.27 0.04 0.00 inf; +insensibilisé insensibiliser VER m s 0.18 0.27 0.13 0.14 par:pas; +insensibilisée insensibiliser VER f s 0.18 0.27 0.01 0.07 par:pas; +insensibilité insensibilité NOM f s 0.28 1.55 0.28 1.55 +insensible insensible ADJ s 5.13 12.16 4.04 9.39 +insensiblement insensiblement ADV 0.10 10.41 0.10 10.41 +insensibles insensible ADJ p 5.13 12.16 1.09 2.77 +insensé insensé ADJ m s 11.32 11.82 7.51 6.28 +insensée insensé ADJ f s 11.32 11.82 1.92 2.97 +insensées insensé ADJ f p 11.32 11.82 0.79 1.35 +insensément insensément ADV 0.00 0.07 0.00 0.07 +insensés insensé ADJ m p 11.32 11.82 1.09 1.22 +insert insert NOM m s 0.30 0.00 0.12 0.00 +insertion insertion NOM f s 0.64 0.54 0.64 0.54 +inserts insert NOM m p 0.30 0.00 0.19 0.00 +insidieuse insidieux ADJ f s 0.62 4.12 0.15 2.43 +insidieusement insidieusement ADV 0.04 2.16 0.04 2.16 +insidieuses insidieux ADJ f p 0.62 4.12 0.16 0.34 +insidieux insidieux ADJ m 0.62 4.12 0.31 1.35 +insight insight NOM m s 0.03 0.07 0.02 0.00 +insights insight NOM m p 0.03 0.07 0.01 0.07 +insigne insigne NOM m s 5.56 3.18 4.42 1.69 +insignes insigne NOM m p 5.56 3.18 1.14 1.49 +insignifiance insignifiance NOM f s 0.18 3.99 0.18 3.65 +insignifiances insignifiance NOM f p 0.18 3.99 0.00 0.34 +insignifiant insignifiant ADJ m s 5.27 13.92 2.26 5.20 +insignifiante insignifiant ADJ f s 5.27 13.92 1.50 3.18 +insignifiantes insignifiant ADJ f p 5.27 13.92 0.66 2.50 +insignifiants insignifiant ADJ m p 5.27 13.92 0.85 3.04 +insincère insincère ADJ s 0.00 0.14 0.00 0.14 +insincérité insincérité NOM f s 0.03 0.41 0.03 0.41 +insinua insinuer VER 9.90 9.73 0.01 1.22 ind:pas:3s; +insinuai insinuer VER 9.90 9.73 0.00 0.07 ind:pas:1s; +insinuaient insinuer VER 9.90 9.73 0.14 0.41 ind:imp:3p; +insinuais insinuer VER 9.90 9.73 0.11 0.07 ind:imp:1s;ind:imp:2s; +insinuait insinuer VER 9.90 9.73 0.10 1.22 ind:imp:3s; +insinuant insinuer VER 9.90 9.73 0.15 0.54 par:pre; +insinuante insinuant ADJ f s 0.10 2.09 0.00 0.74 +insinuantes insinuant ADJ f p 0.10 2.09 0.00 0.14 +insinuants insinuant ADJ m p 0.10 2.09 0.00 0.14 +insinuation insinuation NOM f s 1.62 1.55 0.49 0.47 +insinuations insinuation NOM f p 1.62 1.55 1.12 1.08 +insinue insinuer VER 9.90 9.73 1.19 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insinuent insinuer VER 9.90 9.73 0.09 0.61 ind:pre:3p; +insinuer insinuer VER 9.90 9.73 1.63 2.03 inf; +insinuerai insinuer VER 9.90 9.73 0.01 0.00 ind:fut:1s; +insinuerait insinuer VER 9.90 9.73 0.01 0.00 cnd:pre:3s; +insinues insinuer VER 9.90 9.73 2.36 0.41 ind:pre:2s; +insinuez insinuer VER 9.90 9.73 3.56 0.14 imp:pre:2p;ind:pre:2p; +insinuiez insinuer VER 9.90 9.73 0.03 0.00 ind:imp:2p; +insinué insinuer VER m s 9.90 9.73 0.38 0.34 par:pas; +insinuée insinuer VER f s 9.90 9.73 0.14 0.34 par:pas; +insipide insipide ADJ s 0.88 4.05 0.54 2.84 +insipides insipide ADJ p 0.88 4.05 0.34 1.22 +insipidité insipidité NOM f s 0.00 0.14 0.00 0.14 +insista insister VER 42.16 67.03 0.18 13.04 ind:pas:3s; +insistai insister VER 42.16 67.03 0.00 3.31 ind:pas:1s; +insistaient insister VER 42.16 67.03 0.02 1.08 ind:imp:3p; +insistais insister VER 42.16 67.03 0.23 1.28 ind:imp:1s;ind:imp:2s; +insistait insister VER 42.16 67.03 1.11 7.97 ind:imp:3s; +insistance insistance NOM f s 1.53 14.59 1.52 14.53 +insistances insistance NOM f p 1.53 14.59 0.01 0.07 +insistant insister VER 42.16 67.03 0.64 3.45 par:pre; +insistante insistant ADJ f s 0.68 5.20 0.13 2.57 +insistantes insistant ADJ f p 0.68 5.20 0.01 0.54 +insistants insistant ADJ m p 0.68 5.20 0.19 0.68 +insiste insister VER 42.16 67.03 17.50 14.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insistent insister VER 42.16 67.03 0.52 0.68 ind:pre:3p; +insister insister VER 42.16 67.03 6.09 9.19 inf; +insistera insister VER 42.16 67.03 0.03 0.07 ind:fut:3s; +insisterai insister VER 42.16 67.03 0.28 0.07 ind:fut:1s; +insisteraient insister VER 42.16 67.03 0.14 0.00 cnd:pre:3p; +insisterais insister VER 42.16 67.03 0.17 0.00 cnd:pre:1s; +insisterait insister VER 42.16 67.03 0.08 0.07 cnd:pre:3s; +insisteras insister VER 42.16 67.03 0.01 0.00 ind:fut:2s; +insisterons insister VER 42.16 67.03 0.02 0.07 ind:fut:1p; +insistes insister VER 42.16 67.03 2.00 0.47 ind:pre:2s; +insistez insister VER 42.16 67.03 5.11 1.22 imp:pre:2p;ind:pre:2p; +insistiez insister VER 42.16 67.03 0.02 0.07 ind:imp:2p; +insistions insister VER 42.16 67.03 0.00 0.07 ind:imp:1p; +insistons insister VER 42.16 67.03 0.27 0.20 imp:pre:1p;ind:pre:1p; +insistât insister VER 42.16 67.03 0.00 0.07 sub:imp:3s; +insistèrent insister VER 42.16 67.03 0.00 0.27 ind:pas:3p; +insisté insister VER m s 42.16 67.03 7.75 9.86 par:pas; +insociable insociable ADJ s 0.02 0.20 0.02 0.20 +insolant insoler VER 0.00 0.20 0.00 0.07 par:pre; +insolation insolation NOM f s 0.56 1.62 0.55 1.35 +insolations insolation NOM f p 0.56 1.62 0.01 0.27 +insolemment insolemment ADV 0.14 2.03 0.14 2.03 +insolence insolence NOM f s 2.75 9.80 2.69 8.78 +insolences insolence NOM f p 2.75 9.80 0.06 1.01 +insolent insolent ADJ m s 5.88 9.12 3.48 3.92 +insolente insolent ADJ f s 5.88 9.12 2.23 3.24 +insolentes insolent ADJ f p 5.88 9.12 0.03 0.47 +insolents insolent NOM m p 1.31 0.88 0.16 0.20 +insolite insolite ADJ s 2.90 18.99 2.24 15.81 +insolitement insolitement ADV 0.00 0.07 0.00 0.07 +insolites insolite ADJ p 2.90 18.99 0.66 3.18 +insolé insoler VER m s 0.00 0.20 0.00 0.07 par:pas; +insoluble insoluble ADJ s 0.69 2.16 0.50 1.28 +insolubles insoluble ADJ p 0.69 2.16 0.19 0.88 +insolvable insolvable ADJ m s 0.14 0.07 0.12 0.00 +insolvables insolvable ADJ m p 0.14 0.07 0.02 0.07 +insomniaque insomniaque ADJ s 0.77 0.95 0.62 0.68 +insomniaques insomniaque NOM p 0.28 0.54 0.23 0.14 +insomnie insomnie NOM f s 3.69 8.24 2.55 6.08 +insomnies insomnie NOM f p 3.69 8.24 1.14 2.16 +insomnieuse insomnieux NOM f s 0.00 0.27 0.00 0.07 +insomnieux insomnieux NOM m 0.00 0.27 0.00 0.20 +insondable insondable ADJ s 0.95 4.32 0.38 3.58 +insondablement insondablement ADV 0.00 0.14 0.00 0.14 +insondables insondable ADJ p 0.95 4.32 0.58 0.74 +insonore insonore ADJ m s 0.27 0.34 0.27 0.34 +insonorisation insonorisation NOM f s 0.02 0.07 0.02 0.07 +insonoriser insonoriser VER 0.58 0.47 0.05 0.14 inf; +insonorisé insonoriser VER m s 0.58 0.47 0.32 0.00 par:pas; +insonorisée insonoriser VER f s 0.58 0.47 0.12 0.34 par:pas; +insonorisées insonoriser VER f p 0.58 0.47 0.03 0.00 par:pas; +insonorisés insonoriser VER m p 0.58 0.47 0.07 0.00 par:pas; +insonorité insonorité NOM f s 0.00 0.07 0.00 0.07 +insortable insortable ADJ s 0.01 0.07 0.01 0.00 +insortables insortable ADJ p 0.01 0.07 0.00 0.07 +insouciance insouciance NOM f s 1.15 7.91 1.15 7.91 +insouciant insouciant ADJ m s 3.27 6.55 1.75 2.16 +insouciante insouciant ADJ f s 3.27 6.55 0.58 2.70 +insouciantes insouciant ADJ f p 3.27 6.55 0.33 0.34 +insouciants insouciant ADJ m p 3.27 6.55 0.61 1.35 +insoucieuse insoucieux ADJ f s 0.04 1.28 0.00 0.27 +insoucieusement insoucieusement ADV 0.00 0.07 0.00 0.07 +insoucieux insoucieux ADJ m 0.04 1.28 0.04 1.01 +insoulevables insoulevable ADJ p 0.00 0.07 0.00 0.07 +insoumis insoumis NOM m 0.36 0.88 0.20 0.81 +insoumise insoumis ADJ f s 0.37 1.08 0.20 0.14 +insoumission insoumission NOM f s 0.03 0.81 0.03 0.81 +insoupçonnable insoupçonnable ADJ s 0.24 1.62 0.23 0.88 +insoupçonnables insoupçonnable ADJ p 0.24 1.62 0.01 0.74 +insoupçonné insoupçonné ADJ m s 0.16 2.57 0.04 0.47 +insoupçonnée insoupçonné ADJ f s 0.16 2.57 0.03 0.88 +insoupçonnées insoupçonné ADJ f p 0.16 2.57 0.06 0.68 +insoupçonnés insoupçonné ADJ m p 0.16 2.57 0.04 0.54 +insoutenable insoutenable ADJ s 1.04 4.86 0.88 4.39 +insoutenables insoutenable ADJ p 1.04 4.86 0.16 0.47 +inspecta inspecter VER 7.54 13.99 0.02 1.28 ind:pas:3s; +inspectai inspecter VER 7.54 13.99 0.01 0.54 ind:pas:1s; +inspectaient inspecter VER 7.54 13.99 0.01 0.41 ind:imp:3p; +inspectais inspecter VER 7.54 13.99 0.04 0.20 ind:imp:1s; +inspectait inspecter VER 7.54 13.99 0.04 1.55 ind:imp:3s; +inspectant inspecter VER 7.54 13.99 0.09 0.95 par:pre; +inspecte inspecter VER 7.54 13.99 1.17 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inspectent inspecter VER 7.54 13.99 0.06 0.27 ind:pre:3p; +inspecter inspecter VER 7.54 13.99 3.61 5.14 inf; +inspectera inspecter VER 7.54 13.99 0.07 0.00 ind:fut:3s; +inspecterais inspecter VER 7.54 13.99 0.01 0.07 cnd:pre:1s; +inspecterez inspecter VER 7.54 13.99 0.01 0.00 ind:fut:2p; +inspecteront inspecter VER 7.54 13.99 0.03 0.00 ind:fut:3p; +inspectes inspecter VER 7.54 13.99 0.04 0.07 ind:pre:2s; +inspecteur inspecteur NOM m s 69.77 19.66 64.12 15.74 +inspecteurs inspecteur NOM m p 69.77 19.66 4.99 3.92 +inspectez inspecter VER 7.54 13.99 0.41 0.00 imp:pre:2p;ind:pre:2p; +inspectiez inspecter VER 7.54 13.99 0.02 0.00 ind:imp:2p; +inspection inspection NOM f s 7.80 9.39 6.97 8.18 +inspections inspection NOM f p 7.80 9.39 0.83 1.22 +inspectons inspecter VER 7.54 13.99 0.08 0.07 imp:pre:1p;ind:pre:1p; +inspectrice inspecteur NOM f s 69.77 19.66 0.67 0.00 +inspectèrent inspecter VER 7.54 13.99 0.00 0.07 ind:pas:3p; +inspecté inspecter VER m s 7.54 13.99 1.29 1.55 par:pas; +inspectée inspecter VER f s 7.54 13.99 0.18 0.20 par:pas; +inspectées inspecter VER f p 7.54 13.99 0.15 0.00 par:pas; +inspectés inspecter VER m p 7.54 13.99 0.06 0.14 par:pas; +inspira inspirer VER 26.56 45.00 0.11 2.23 ind:pas:3s; +inspirai inspirer VER 26.56 45.00 0.00 0.07 ind:pas:1s; +inspiraient inspirer VER 26.56 45.00 0.08 3.04 ind:imp:3p; +inspirais inspirer VER 26.56 45.00 0.11 0.34 ind:imp:1s;ind:imp:2s; +inspirait inspirer VER 26.56 45.00 0.86 10.81 ind:imp:3s; +inspirant inspirer VER 26.56 45.00 0.60 2.43 par:pre; +inspirante inspirant ADJ f s 0.28 0.47 0.11 0.00 +inspirantes inspirant ADJ f p 0.28 0.47 0.01 0.27 +inspirants inspirant ADJ m p 0.28 0.47 0.00 0.07 +inspirateur inspirateur NOM m s 0.11 1.08 0.03 0.61 +inspirateurs inspirateur NOM m p 0.11 1.08 0.00 0.14 +inspiration inspiration NOM f s 7.38 18.04 7.04 17.16 +inspirations inspiration NOM f p 7.38 18.04 0.34 0.88 +inspiratoire inspiratoire ADJ m s 0.00 0.07 0.00 0.07 +inspiratrice inspirateur NOM f s 0.11 1.08 0.08 0.27 +inspiratrices inspiratrice NOM f p 0.02 0.00 0.02 0.00 +inspire inspirer VER 26.56 45.00 9.34 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +inspirent inspirer VER 26.56 45.00 0.94 1.49 ind:pre:3p; +inspirer inspirer VER 26.56 45.00 3.21 5.95 inf; +inspirera inspirer VER 26.56 45.00 0.20 0.34 ind:fut:3s; +inspireraient inspirer VER 26.56 45.00 0.00 0.07 cnd:pre:3p; +inspirerait inspirer VER 26.56 45.00 0.10 0.47 cnd:pre:3s; +inspireras inspirer VER 26.56 45.00 0.00 0.14 ind:fut:2s; +inspireront inspirer VER 26.56 45.00 0.01 0.07 ind:fut:3p; +inspires inspirer VER 26.56 45.00 0.47 0.07 ind:pre:2s; +inspirez inspirer VER 26.56 45.00 1.79 0.27 imp:pre:2p;ind:pre:2p; +inspiriez inspirer VER 26.56 45.00 0.01 0.00 ind:imp:2p; +inspirions inspirer VER 26.56 45.00 0.00 0.07 ind:imp:1p; +inspirât inspirer VER 26.56 45.00 0.00 0.20 sub:imp:3s; +inspirèrent inspirer VER 26.56 45.00 0.02 0.34 ind:pas:3p; +inspiré inspirer VER m s 26.56 45.00 5.89 5.47 par:pas; +inspirée inspirer VER f s 26.56 45.00 1.55 1.76 par:pas; +inspirées inspirer VER f p 26.56 45.00 0.56 0.81 par:pas; +inspirés inspirer VER m p 26.56 45.00 0.71 1.76 par:pas; +instabilité instabilité NOM f s 0.93 0.81 0.93 0.81 +instable instable ADJ s 5.00 4.93 4.20 3.92 +instables instable ADJ p 5.00 4.93 0.80 1.01 +installa installer VER 70.76 162.23 0.27 16.35 ind:pas:3s; +installai installer VER 70.76 162.23 0.02 2.09 ind:pas:1s; +installaient installer VER 70.76 162.23 0.12 3.38 ind:imp:3p; +installais installer VER 70.76 162.23 0.44 1.22 ind:imp:1s;ind:imp:2s; +installait installer VER 70.76 162.23 0.69 11.49 ind:imp:3s; +installant installer VER 70.76 162.23 0.22 2.16 par:pre; +installasse installer VER 70.76 162.23 0.00 0.07 sub:imp:1s; +installateur installateur NOM m s 0.07 0.00 0.07 0.00 +installation installation NOM f s 6.75 12.57 4.16 9.80 +installations installation NOM f p 6.75 12.57 2.59 2.77 +installe installer VER 70.76 162.23 12.89 15.88 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +installent installer VER 70.76 162.23 1.38 2.97 ind:pre:3p; +installer installer VER 70.76 162.23 22.76 29.73 ind:pre:2p;inf; +installera installer VER 70.76 162.23 1.01 0.88 ind:fut:3s; +installerai installer VER 70.76 162.23 0.63 0.54 ind:fut:1s; +installeraient installer VER 70.76 162.23 0.10 0.14 cnd:pre:3p; +installerais installer VER 70.76 162.23 0.23 0.54 cnd:pre:1s;cnd:pre:2s; +installerait installer VER 70.76 162.23 0.29 0.68 cnd:pre:3s; +installeras installer VER 70.76 162.23 0.29 0.07 ind:fut:2s; +installerez installer VER 70.76 162.23 0.14 0.00 ind:fut:2p; +installerions installer VER 70.76 162.23 0.10 0.07 cnd:pre:1p; +installerons installer VER 70.76 162.23 0.19 0.14 ind:fut:1p; +installeront installer VER 70.76 162.23 0.23 0.27 ind:fut:3p; +installes installer VER 70.76 162.23 1.39 0.34 ind:pre:2s; +installeur installeur NOM m s 0.00 0.07 0.00 0.07 +installez installer VER 70.76 162.23 6.66 0.61 imp:pre:2p;ind:pre:2p; +installiez installer VER 70.76 162.23 0.10 0.00 ind:imp:2p; +installions installer VER 70.76 162.23 0.03 1.22 ind:imp:1p; +installâmes installer VER 70.76 162.23 0.00 1.62 ind:pas:1p; +installons installer VER 70.76 162.23 0.60 0.61 imp:pre:1p;ind:pre:1p; +installât installer VER 70.76 162.23 0.00 0.20 sub:imp:3s; +installèrent installer VER 70.76 162.23 0.09 3.99 ind:pas:3p; +installé installer VER m s 70.76 162.23 11.02 33.51 par:pas; +installée installer VER f s 70.76 162.23 4.78 14.26 par:pas; +installées installer VER f p 70.76 162.23 0.74 3.18 par:pas; +installés installer VER m p 70.76 162.23 3.34 14.05 par:pas; +instamment instamment ADV 0.12 1.35 0.12 1.35 +instance instance NOM f s 2.12 4.59 1.62 1.76 +instances instance NOM f p 2.12 4.59 0.50 2.84 +instant instant NOM m s 189.41 340.20 182.14 285.88 +instantané instantané ADJ m s 2.31 2.97 1.22 1.22 +instantanée instantané ADJ f s 2.31 2.97 0.98 1.35 +instantanées instantané ADJ f p 2.31 2.97 0.03 0.20 +instantanéité instantanéité NOM f s 0.00 0.07 0.00 0.07 +instantanément instantanément ADV 2.15 7.57 2.15 7.57 +instantanés instantané NOM m p 0.33 1.01 0.12 0.41 +instante instant ADJ f s 3.55 18.78 0.00 0.20 +instantes instant ADJ f p 3.55 18.78 0.01 0.47 +instants instant NOM m p 189.41 340.20 7.27 54.32 +instaura instaurer VER 2.63 4.66 0.26 0.34 ind:pas:3s; +instaurai instaurer VER 2.63 4.66 0.00 0.07 ind:pas:1s; +instaurait instaurer VER 2.63 4.66 0.00 0.47 ind:imp:3s; +instaurant instaurer VER 2.63 4.66 0.00 0.14 par:pre; +instauration instauration NOM f s 0.02 0.27 0.02 0.27 +instauratrice instaurateur NOM f s 0.00 0.07 0.00 0.07 +instaure instaurer VER 2.63 4.66 0.16 0.41 ind:pre:1s;ind:pre:3s; +instaurer instaurer VER 2.63 4.66 1.31 1.35 inf; +instaurera instaurer VER 2.63 4.66 0.02 0.00 ind:fut:3s; +instaurerions instaurer VER 2.63 4.66 0.00 0.07 cnd:pre:1p; +instaurions instaurer VER 2.63 4.66 0.00 0.07 ind:imp:1p; +instaurèrent instaurer VER 2.63 4.66 0.00 0.07 ind:pas:3p; +instauré instaurer VER m s 2.63 4.66 0.63 1.22 par:pas; +instaurée instaurer VER f s 2.63 4.66 0.21 0.14 par:pas; +instaurées instaurer VER f p 2.63 4.66 0.02 0.14 par:pas; +instaurés instaurer VER m p 2.63 4.66 0.02 0.20 par:pas; +insère insérer VER 2.92 4.26 0.57 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insèrent insérer VER 2.92 4.26 0.05 0.14 ind:pre:3p; +instigateur instigateur NOM m s 1.04 1.01 0.88 0.47 +instigateurs instigateur NOM m p 1.04 1.01 0.07 0.34 +instigation instigation NOM f s 0.14 0.88 0.14 0.88 +instigatrice instigateur NOM f s 1.04 1.01 0.09 0.20 +instilla instiller VER 0.24 0.74 0.00 0.14 ind:pas:3s; +instille instiller VER 0.24 0.74 0.00 0.07 ind:pre:3s; +instiller instiller VER 0.24 0.74 0.20 0.20 inf; +instillera instiller VER 0.24 0.74 0.00 0.07 ind:fut:3s; +instillé instiller VER m s 0.24 0.74 0.04 0.20 par:pas; +instillées instiller VER f p 0.24 0.74 0.00 0.07 par:pas; +instinct instinct NOM m s 16.95 35.27 14.27 31.01 +instinctif instinctif ADJ m s 1.26 9.59 0.72 4.59 +instinctifs instinctif ADJ m p 1.26 9.59 0.01 0.34 +instinctive instinctif ADJ f s 1.26 9.59 0.51 4.39 +instinctivement instinctivement ADV 1.50 9.46 1.50 9.46 +instinctives instinctif ADJ f p 1.26 9.59 0.01 0.27 +instinctivo instinctivo ADV 0.00 0.07 0.00 0.07 +instincts instinct NOM m p 16.95 35.27 2.69 4.26 +instinctuel instinctuel ADJ m s 0.01 0.00 0.01 0.00 +instit instit NOM s 1.09 1.49 0.98 1.15 +instits instit NOM p 1.09 1.49 0.11 0.34 +institua instituer VER 0.41 6.42 0.00 0.20 ind:pas:3s; +instituai instituer VER 0.41 6.42 0.00 0.14 ind:pas:1s; +instituaient instituer VER 0.41 6.42 0.00 0.07 ind:imp:3p; +instituait instituer VER 0.41 6.42 0.00 0.54 ind:imp:3s; +instituant instituer VER 0.41 6.42 0.00 0.68 par:pre; +institue instituer VER 0.41 6.42 0.11 0.14 ind:pre:3s; +instituent instituer VER 0.41 6.42 0.00 0.07 ind:pre:3p; +instituer instituer VER 0.41 6.42 0.05 1.69 inf; +instituons instituer VER 0.41 6.42 0.01 0.00 imp:pre:1p; +institut institut NOM m s 5.49 4.53 5.37 3.85 +instituteur instituteur NOM m s 11.49 23.31 7.29 13.18 +instituteurs instituteur NOM m p 11.49 23.31 0.79 2.91 +instituèrent instituer VER 0.41 6.42 0.00 0.07 ind:pas:3p; +institution institution NOM f s 9.41 17.23 6.23 7.57 +institutionnalisé institutionnaliser VER m s 0.03 0.00 0.03 0.00 par:pas; +institutionnel institutionnel ADJ m s 0.50 0.27 0.17 0.14 +institutionnelle institutionnel ADJ f s 0.50 0.27 0.30 0.14 +institutionnels institutionnel ADJ m p 0.50 0.27 0.03 0.00 +institutions institution NOM f p 9.41 17.23 3.19 9.66 +institutrice instituteur NOM f s 11.49 23.31 3.42 6.08 +institutrices institutrice NOM f p 0.30 0.00 0.30 0.00 +instituts institut NOM m p 5.49 4.53 0.12 0.68 +institué instituer VER m s 0.41 6.42 0.19 2.30 par:pas; +instituée instituer VER f s 0.41 6.42 0.01 0.41 par:pas; +instituées instituer VER f p 0.41 6.42 0.02 0.14 par:pas; +institués instituer VER m p 0.41 6.42 0.01 0.00 par:pas; +instructeur instructeur NOM m s 1.60 2.09 1.12 1.22 +instructeurs instructeur NOM m p 1.60 2.09 0.48 0.88 +instructif instructif ADJ m s 2.08 2.91 1.54 1.55 +instructifs instructif ADJ m p 2.08 2.91 0.19 0.14 +instruction instruction NOM f s 22.37 30.27 6.91 16.08 +instructions instruction NOM f p 22.37 30.27 15.46 14.19 +instructive instructif ADJ f s 2.08 2.91 0.14 0.88 +instructives instructif ADJ f p 2.08 2.91 0.22 0.34 +instruira instruire VER 5.85 11.96 0.16 0.07 ind:fut:3s; +instruirai instruire VER 5.85 11.96 0.02 0.00 ind:fut:1s; +instruiraient instruire VER 5.85 11.96 0.00 0.07 cnd:pre:3p; +instruirait instruire VER 5.85 11.96 0.02 0.41 cnd:pre:3s; +instruire instruire VER 5.85 11.96 2.49 5.81 inf; +instruis instruire VER 5.85 11.96 0.39 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +instruisîmes instruire VER 5.85 11.96 0.00 0.07 ind:pas:1p; +instruisaient instruire VER 5.85 11.96 0.00 0.14 ind:imp:3p; +instruisais instruire VER 5.85 11.96 0.01 0.20 ind:imp:1s; +instruisait instruire VER 5.85 11.96 0.00 0.41 ind:imp:3s; +instruisant instruire VER 5.85 11.96 0.04 0.07 par:pre; +instruise instruire VER 5.85 11.96 0.04 0.27 sub:pre:1s;sub:pre:3s; +instruisent instruire VER 5.85 11.96 0.12 0.47 ind:pre:3p; +instruisez instruire VER 5.85 11.96 0.08 0.00 imp:pre:2p;ind:pre:2p; +instruisirent instruire VER 5.85 11.96 0.00 0.07 ind:pas:3p; +instruisis instruire VER 5.85 11.96 0.01 0.00 ind:pas:1s; +instruisit instruire VER 5.85 11.96 0.10 0.41 ind:pas:3s; +instruit instruit ADJ m s 3.58 3.31 2.37 1.69 +instruite instruire VER f s 5.85 11.96 0.28 0.61 par:pas; +instruites instruit ADJ f p 3.58 3.31 0.11 0.20 +instruits instruit ADJ m p 3.58 3.31 1.02 1.01 +instrument instrument NOM m s 22.67 36.08 14.59 21.62 +instrumentais instrumenter VER 0.01 0.20 0.00 0.07 ind:imp:1s; +instrumental instrumental ADJ m s 0.20 0.41 0.16 0.07 +instrumentale instrumental ADJ f s 0.20 0.41 0.04 0.34 +instrumentation instrumentation NOM f s 0.23 0.07 0.23 0.07 +instrumentaux instrumental ADJ m p 0.20 0.41 0.01 0.00 +instrumenter instrumenter VER 0.01 0.20 0.01 0.14 inf; +instrumentiste instrumentiste NOM s 0.03 0.27 0.01 0.14 +instrumentistes instrumentiste NOM p 0.03 0.27 0.02 0.14 +instruments instrument NOM m p 22.67 36.08 8.08 14.46 +insu insu NOM m s 3.74 10.20 3.74 10.20 +insubmersible insubmersible ADJ m s 0.11 0.20 0.09 0.14 +insubmersibles insubmersible ADJ f p 0.11 0.20 0.02 0.07 +insubordination insubordination NOM f s 1.17 0.74 1.16 0.74 +insubordinations insubordination NOM f p 1.17 0.74 0.01 0.00 +insubordonné insubordonné ADJ m s 0.14 0.00 0.13 0.00 +insubordonnée insubordonné ADJ f s 0.14 0.00 0.01 0.00 +insécable insécable ADJ s 0.00 0.07 0.00 0.07 +insuccès insuccès NOM m 0.02 0.20 0.02 0.20 +insécurité insécurité NOM f s 0.92 1.49 0.86 1.42 +insécurités insécurité NOM f p 0.92 1.49 0.05 0.07 +insuffisamment insuffisamment ADV 0.03 0.68 0.03 0.68 +insuffisance insuffisance NOM f s 1.40 3.85 1.20 2.50 +insuffisances insuffisance NOM f p 1.40 3.85 0.20 1.35 +insuffisant insuffisant ADJ m s 3.45 5.54 1.74 2.57 +insuffisante insuffisant ADJ f s 3.45 5.54 0.79 1.08 +insuffisantes insuffisant ADJ f p 3.45 5.54 0.42 0.74 +insuffisants insuffisant ADJ m p 3.45 5.54 0.51 1.15 +insufflaient insuffler VER 0.89 1.62 0.00 0.07 ind:imp:3p; +insufflait insuffler VER 0.89 1.62 0.03 0.20 ind:imp:3s; +insufflant insuffler VER 0.89 1.62 0.03 0.00 par:pre; +insufflateur insufflateur NOM m s 0.00 0.07 0.00 0.07 +insuffle insuffler VER 0.89 1.62 0.10 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insufflent insuffler VER 0.89 1.62 0.00 0.07 ind:pre:3p; +insuffler insuffler VER 0.89 1.62 0.53 0.74 inf; +insufflera insuffler VER 0.89 1.62 0.00 0.07 ind:fut:3s; +insufflé insuffler VER m s 0.89 1.62 0.18 0.27 par:pas; +insufflée insuffler VER f s 0.89 1.62 0.01 0.07 par:pas; +insufflées insuffler VER f p 0.89 1.62 0.01 0.00 par:pas; +insula insula NOM f s 0.01 0.00 0.01 0.00 +insulaire insulaire ADJ s 0.09 1.01 0.03 0.81 +insulaires insulaire ADJ p 0.09 1.01 0.06 0.20 +insularité insularité NOM f s 0.00 0.07 0.00 0.07 +insulation insulation NOM f s 0.01 0.00 0.01 0.00 +insuline insuline NOM f s 1.45 1.15 1.45 1.15 +insulinique insulinique ADJ m s 0.01 0.41 0.01 0.41 +insulta insulter VER 26.93 18.24 0.01 0.61 ind:pas:3s; +insultaient insulter VER 26.93 18.24 0.28 0.74 ind:imp:3p; +insultais insulter VER 26.93 18.24 0.09 0.34 ind:imp:1s;ind:imp:2s; +insultait insulter VER 26.93 18.24 0.20 1.35 ind:imp:3s; +insultant insultant ADJ m s 1.90 3.24 1.38 1.62 +insultante insultant ADJ f s 1.90 3.24 0.41 0.68 +insultantes insultant ADJ f p 1.90 3.24 0.06 0.20 +insultants insultant ADJ m p 1.90 3.24 0.05 0.74 +insulte insulter VER 26.93 18.24 6.13 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +insultent insulter VER 26.93 18.24 0.88 0.81 ind:pre:3p;sub:pre:3p; +insulter insulter VER 26.93 18.24 6.76 6.42 inf;; +insulterai insulter VER 26.93 18.24 0.04 0.00 ind:fut:1s; +insulterais insulter VER 26.93 18.24 0.06 0.20 cnd:pre:1s;cnd:pre:2s; +insulteras insulter VER 26.93 18.24 0.01 0.00 ind:fut:2s; +insultes insulte NOM f p 10.49 15.88 5.25 8.92 +insulteur insulteur NOM m s 0.00 0.27 0.00 0.20 +insulteurs insulteur NOM m p 0.00 0.27 0.00 0.07 +insultez insulter VER 26.93 18.24 2.52 0.27 imp:pre:2p;ind:pre:2p; +insultions insulter VER 26.93 18.24 0.00 0.07 ind:imp:1p; +insultons insulter VER 26.93 18.24 0.03 0.00 imp:pre:1p;ind:pre:1p; +insulté insulter VER m s 26.93 18.24 5.95 1.62 par:pas; +insultée insulter VER f s 26.93 18.24 1.28 0.54 par:pas; +insultées insulté VER f p 0.00 0.07 0.00 0.07 par:pas; +insultés insulter VER m p 26.93 18.24 0.37 0.34 par:pas; +inséminateur inséminateur NOM m s 0.27 0.00 0.27 0.00 +insémination insémination NOM f s 0.67 0.81 0.67 0.41 +inséminations insémination NOM f p 0.67 0.81 0.00 0.41 +inséminer inséminer VER 0.50 0.34 0.17 0.07 inf; +inséminé inséminer VER m s 0.50 0.34 0.02 0.00 par:pas; +inséminée inséminer VER f s 0.50 0.34 0.31 0.14 par:pas; +inséminés inséminer VER m p 0.50 0.34 0.00 0.14 par:pas; +inséparabilité inséparabilité NOM f s 0.00 0.07 0.00 0.07 +inséparable inséparable ADJ s 3.08 6.28 0.34 3.18 +inséparablement inséparablement ADV 0.00 0.14 0.00 0.14 +inséparables inséparable ADJ p 3.08 6.28 2.73 3.11 +insupportable insupportable ADJ s 11.42 25.74 11.01 22.23 +insupportablement insupportablement ADV 0.25 0.41 0.25 0.41 +insupportables insupportable ADJ p 11.42 25.74 0.41 3.51 +insupportaient insupporter VER 0.43 0.27 0.00 0.14 ind:imp:3p; +insupporte insupporter VER 0.43 0.27 0.29 0.07 ind:pre:3s; +insupportent insupporter VER 0.43 0.27 0.14 0.07 ind:pre:3p; +inséra insérer VER 2.92 4.26 0.00 0.07 ind:pas:3s; +inséraient insérer VER 2.92 4.26 0.00 0.07 ind:imp:3p; +insérait insérer VER 2.92 4.26 0.03 0.47 ind:imp:3s; +insérant insérer VER 2.92 4.26 0.06 0.34 par:pre; +insérer insérer VER 2.92 4.26 1.01 1.69 inf; +insérera insérer VER 2.92 4.26 0.01 0.00 ind:fut:3s; +insérerait insérer VER 2.92 4.26 0.00 0.07 cnd:pre:3s; +insérerons insérer VER 2.92 4.26 0.01 0.00 ind:fut:1p; +insérez insérer VER 2.92 4.26 0.39 0.00 imp:pre:2p;ind:pre:2p; +insurge insurger VER 0.57 3.58 0.10 0.88 ind:pre:1s;ind:pre:3s; +insurgea insurger VER 0.57 3.58 0.00 0.41 ind:pas:3s; +insurgeai insurger VER 0.57 3.58 0.00 0.07 ind:pas:1s; +insurgeaient insurger VER 0.57 3.58 0.00 0.14 ind:imp:3p; +insurgeais insurger VER 0.57 3.58 0.00 0.20 ind:imp:1s; +insurgeait insurger VER 0.57 3.58 0.01 0.20 ind:imp:3s; +insurgeant insurger VER 0.57 3.58 0.00 0.07 par:pre; +insurgent insurger VER 0.57 3.58 0.01 0.14 ind:pre:3p; +insurgeons insurger VER 0.57 3.58 0.00 0.07 ind:pre:1p; +insurgeât insurger VER 0.57 3.58 0.00 0.07 sub:imp:3s; +insurger insurger VER 0.57 3.58 0.42 0.54 inf; +insurgera insurger VER 0.57 3.58 0.00 0.07 ind:fut:3s; +insurgerai insurger VER 0.57 3.58 0.00 0.07 ind:fut:1s; +insurgerait insurger VER 0.57 3.58 0.02 0.14 cnd:pre:3s; +insurgèrent insurger VER 0.57 3.58 0.00 0.07 ind:pas:3p; +insurgé insurger VER m s 0.57 3.58 0.01 0.20 par:pas; +insurgée insurgé NOM f s 0.33 2.91 0.01 0.00 +insurgés insurgé NOM m p 0.33 2.91 0.31 2.70 +insurmontable insurmontable ADJ s 0.77 2.77 0.64 2.36 +insurmontables insurmontable ADJ p 0.77 2.77 0.14 0.41 +insérons insérer VER 2.92 4.26 0.01 0.00 imp:pre:1p; +insurpassable insurpassable ADJ s 0.16 0.54 0.16 0.54 +insurpassé insurpassé ADJ m s 0.00 0.07 0.00 0.07 +insurrection insurrection NOM f s 1.40 3.72 1.39 3.51 +insurrectionnel insurrectionnel ADJ m s 0.01 0.34 0.00 0.14 +insurrectionnelle insurrectionnel ADJ f s 0.01 0.34 0.01 0.20 +insurrections insurrection NOM f p 1.40 3.72 0.01 0.20 +insérèrent insérer VER 2.92 4.26 0.00 0.07 ind:pas:3p; +inséré insérer VER m s 2.92 4.26 0.63 0.34 par:pas; +insérée insérer VER f s 2.92 4.26 0.09 0.27 par:pas; +insérées insérer VER f p 2.92 4.26 0.02 0.14 par:pas; +insérés insérer VER m p 2.92 4.26 0.02 0.27 par:pas; +intact intact ADJ m s 11.89 31.89 6.21 11.69 +intacte intact ADJ f s 11.89 31.89 3.51 11.35 +intactes intact ADJ f p 11.89 31.89 0.88 4.19 +intacts intact ADJ m p 11.89 31.89 1.29 4.66 +intaille intaille NOM f s 0.00 0.20 0.00 0.14 +intailles intaille NOM f p 0.00 0.20 0.00 0.07 +intangibilité intangibilité NOM f s 0.01 0.07 0.01 0.07 +intangible intangible ADJ s 0.09 0.68 0.05 0.47 +intangibles intangible ADJ p 0.09 0.68 0.04 0.20 +intarissable intarissable ADJ s 0.45 3.85 0.44 2.97 +intarissablement intarissablement ADV 0.00 0.27 0.00 0.27 +intarissables intarissable ADJ p 0.45 3.85 0.01 0.88 +intellect intellect NOM m s 1.14 0.95 1.14 0.95 +intellectualisation intellectualisation NOM f s 0.01 0.00 0.01 0.00 +intellectualise intellectualiser VER 0.00 0.20 0.00 0.07 ind:pre:3s; +intellectualiser intellectualiser VER 0.00 0.20 0.00 0.07 inf; +intellectualisme intellectualisme NOM m s 0.01 0.20 0.01 0.20 +intellectualiste intellectualiste NOM s 0.00 0.07 0.00 0.07 +intellectualisées intellectualiser VER f p 0.00 0.20 0.00 0.07 par:pas; +intellectuel_phare intellectuel_phare NOM m s 0.00 0.07 0.00 0.07 +intellectuel intellectuel ADJ m s 6.52 15.20 2.47 4.59 +intellectuelle intellectuel ADJ f s 6.52 15.20 2.04 6.08 +intellectuellement intellectuellement ADV 0.97 0.81 0.97 0.81 +intellectuelles intellectuel ADJ f p 6.52 15.20 0.66 2.77 +intellectuels intellectuel NOM m p 5.06 15.27 2.42 8.58 +intellige intelliger VER 0.00 0.07 0.00 0.07 ind:pre:1s; +intelligemment intelligemment ADV 1.28 1.49 1.28 1.49 +intelligence intelligence NOM f s 18.41 37.16 18.27 36.22 +intelligences intelligence NOM f p 18.41 37.16 0.14 0.95 +intelligent intelligent ADJ m s 57.51 35.68 31.92 19.32 +intelligente intelligent ADJ f s 57.51 35.68 17.42 8.45 +intelligentes intelligent ADJ f p 57.51 35.68 2.53 1.82 +intelligents intelligent ADJ m p 57.51 35.68 5.65 6.08 +intelligentsia intelligentsia NOM f s 0.44 0.95 0.44 0.95 +intelligibilité intelligibilité NOM f s 0.01 0.27 0.01 0.27 +intelligible intelligible ADJ s 0.06 1.96 0.05 1.69 +intelligiblement intelligiblement ADV 0.01 0.20 0.01 0.20 +intelligibles intelligible ADJ p 0.06 1.96 0.01 0.27 +intello intello NOM s 3.11 1.08 1.96 0.34 +intellos intello NOM p 3.11 1.08 1.16 0.74 +intempestif intempestif ADJ m s 0.38 2.84 0.15 0.74 +intempestifs intempestif ADJ m p 0.38 2.84 0.04 0.34 +intempestive intempestif ADJ f s 0.38 2.84 0.14 1.22 +intempestivement intempestivement ADV 0.00 0.07 0.00 0.07 +intempestives intempestif ADJ f p 0.38 2.84 0.04 0.54 +intemporalité intemporalité NOM f s 0.00 0.14 0.00 0.14 +intemporel intemporel ADJ m s 0.31 1.49 0.21 0.68 +intemporelle intemporel ADJ f s 0.31 1.49 0.07 0.74 +intemporelles intemporel ADJ f p 0.31 1.49 0.03 0.07 +intempérance intempérance NOM f s 0.17 0.41 0.16 0.41 +intempérances intempérance NOM f p 0.17 0.41 0.01 0.00 +intempérante intempérant ADJ f s 0.02 0.00 0.02 0.00 +intempéries intempérie NOM f p 0.42 3.51 0.42 3.51 +intenable intenable ADJ s 0.91 3.31 0.83 2.97 +intenables intenable ADJ p 0.91 3.31 0.08 0.34 +intendance intendance NOM f s 1.37 4.05 1.37 3.99 +intendances intendance NOM f p 1.37 4.05 0.00 0.07 +intendant intendant NOM m s 4.55 4.73 4.02 3.24 +intendante intendant NOM f s 4.55 4.73 0.46 1.35 +intendants intendant NOM m p 4.55 4.73 0.08 0.14 +intense intense ADJ s 8.45 22.57 7.20 20.27 +intenses intense ADJ p 8.45 22.57 1.25 2.30 +intensif intensif ADJ m s 3.50 1.55 1.02 0.47 +intensifia intensifier VER 1.22 1.28 0.00 0.07 ind:pas:3s; +intensifiaient intensifier VER 1.22 1.28 0.01 0.14 ind:imp:3p; +intensifiait intensifier VER 1.22 1.28 0.03 0.34 ind:imp:3s; +intensifiant intensifier VER 1.22 1.28 0.03 0.14 par:pre; +intensification intensification NOM f s 0.02 0.14 0.02 0.14 +intensifie intensifier VER 1.22 1.28 0.18 0.20 imp:pre:2s;ind:pre:3s; +intensifient intensifier VER 1.22 1.28 0.27 0.00 ind:pre:3p; +intensifier intensifier VER 1.22 1.28 0.31 0.41 inf; +intensifiez intensifier VER 1.22 1.28 0.04 0.00 imp:pre:2p; +intensifié intensifier VER m s 1.22 1.28 0.20 0.00 par:pas; +intensifiée intensifier VER f s 1.22 1.28 0.04 0.00 par:pas; +intensifiées intensifier VER f p 1.22 1.28 0.11 0.00 par:pas; +intensifs intensif ADJ m p 3.50 1.55 1.75 0.14 +intension intension NOM f s 0.04 0.00 0.04 0.00 +intensité intensité NOM f s 3.11 13.24 3.11 13.18 +intensités intensité NOM f p 3.11 13.24 0.00 0.07 +intensive intensif ADJ f s 3.50 1.55 0.66 0.95 +intensivement intensivement ADV 0.14 0.14 0.14 0.14 +intensives intensif ADJ f p 3.50 1.55 0.07 0.00 +intensément intensément ADV 0.87 8.58 0.87 8.58 +intenta intenter VER 1.34 0.68 0.01 0.07 ind:pas:3s; +intentait intenter VER 1.34 0.68 0.00 0.14 ind:imp:3s; +intente intenter VER 1.34 0.68 0.54 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intenter intenter VER 1.34 0.68 0.42 0.27 inf; +intentera intenter VER 1.34 0.68 0.03 0.00 ind:fut:3s; +intenterai intenter VER 1.34 0.68 0.04 0.00 ind:fut:1s; +intention intention NOM f s 51.11 68.65 40.00 53.99 +intentionnalité intentionnalité NOM f s 0.01 0.00 0.01 0.00 +intentionnel intentionnel ADJ m s 0.85 0.47 0.69 0.27 +intentionnelle intentionnel ADJ f s 0.85 0.47 0.15 0.14 +intentionnellement intentionnellement ADV 1.04 0.81 1.04 0.81 +intentionnels intentionnel ADJ m p 0.85 0.47 0.01 0.07 +intentionné intentionné ADJ m s 0.43 1.22 0.27 0.20 +intentionnée intentionné ADJ f s 0.43 1.22 0.05 0.14 +intentionnées intentionné ADJ f p 0.43 1.22 0.02 0.20 +intentionnés intentionné ADJ m p 0.43 1.22 0.09 0.68 +intentions intention NOM f p 51.11 68.65 11.12 14.66 +intenté intenter VER m s 1.34 0.68 0.12 0.07 par:pas; +intentée intenter VER f s 1.34 0.68 0.01 0.00 par:pas; +intentées intenter VER f p 1.34 0.68 0.01 0.07 par:pas; +intentés intenter VER m p 1.34 0.68 0.02 0.07 par:pas; +inter_école inter_école NOM f p 0.03 0.00 0.03 0.00 +inter inter NOM m s 0.84 0.95 0.84 0.88 +interactif interactif ADJ m s 0.44 0.00 0.30 0.00 +interactifs interactif ADJ m p 0.44 0.00 0.07 0.00 +interaction interaction NOM f s 0.92 0.20 0.76 0.14 +interactions interaction NOM f p 0.92 0.20 0.16 0.07 +interactive interactif ADJ f s 0.44 0.00 0.06 0.00 +interactivité interactivité NOM f s 0.05 0.00 0.05 0.00 +interagir interagir VER 0.30 0.00 0.17 0.00 inf; +interagis interagir VER 0.30 0.00 0.04 0.00 imp:pre:2s;ind:pre:2s; +interagissais interagir VER 0.30 0.00 0.01 0.00 ind:imp:1s; +interagissant interagir VER 0.30 0.00 0.03 0.00 par:pre; +interagit interagir VER 0.30 0.00 0.05 0.00 ind:pre:3s; +interallié interallié ADJ m s 0.02 2.97 0.00 2.43 +interalliée interallié ADJ f s 0.02 2.97 0.01 0.27 +interalliées interallié ADJ f p 0.02 2.97 0.00 0.14 +interalliés interallié ADJ m p 0.02 2.97 0.01 0.14 +interarmes interarmes ADJ f p 0.12 0.07 0.12 0.07 +interarmées interarmées ADJ m s 0.05 0.07 0.05 0.07 +intercalaient intercaler VER 0.20 1.82 0.00 0.14 ind:imp:3p; +intercalaire intercalaire ADJ m s 0.00 0.20 0.00 0.14 +intercalaires intercalaire ADJ m p 0.00 0.20 0.00 0.07 +intercalait intercaler VER 0.20 1.82 0.01 0.27 ind:imp:3s; +intercalant intercaler VER 0.20 1.82 0.00 0.27 par:pre; +intercale intercaler VER 0.20 1.82 0.00 0.41 ind:pre:1s;ind:pre:3s; +intercalent intercaler VER 0.20 1.82 0.00 0.07 ind:pre:3p; +intercaler intercaler VER 0.20 1.82 0.05 0.41 inf; +intercalera intercaler VER 0.20 1.82 0.00 0.07 ind:fut:3s; +intercalerai intercaler VER 0.20 1.82 0.01 0.00 ind:fut:1s; +intercalerez intercaler VER 0.20 1.82 0.10 0.00 ind:fut:2p; +intercalé intercaler VER m s 0.20 1.82 0.03 0.00 par:pas; +intercalée intercalé ADJ f s 0.00 0.20 0.00 0.07 +intercalées intercaler VER f p 0.20 1.82 0.00 0.14 par:pas; +intercalés intercaler VER m p 0.20 1.82 0.00 0.07 par:pas; +intercellulaire intercellulaire ADJ m s 0.01 0.00 0.01 0.00 +intercepta intercepter VER 6.64 3.65 0.01 0.47 ind:pas:3s; +interceptai intercepter VER 6.64 3.65 0.00 0.14 ind:pas:1s; +interceptais intercepter VER 6.64 3.65 0.01 0.00 ind:imp:1s; +interceptait intercepter VER 6.64 3.65 0.15 0.07 ind:imp:3s; +interceptant intercepter VER 6.64 3.65 0.03 0.07 par:pre; +intercepte intercepter VER 6.64 3.65 0.56 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interceptent intercepter VER 6.64 3.65 0.13 0.07 ind:pre:3p; +intercepter intercepter VER 6.64 3.65 1.81 1.28 inf; +interceptera intercepter VER 6.64 3.65 0.04 0.00 ind:fut:3s; +intercepterait intercepter VER 6.64 3.65 0.01 0.00 cnd:pre:3s; +intercepterez intercepter VER 6.64 3.65 0.01 0.00 ind:fut:2p; +intercepterons intercepter VER 6.64 3.65 0.04 0.00 ind:fut:1p; +intercepteur intercepteur NOM m s 0.45 0.00 0.19 0.00 +intercepteurs intercepteur NOM m p 0.45 0.00 0.26 0.00 +interceptez intercepter VER 6.64 3.65 0.69 0.00 imp:pre:2p;ind:pre:2p; +interception interception NOM f s 1.20 0.27 1.10 0.20 +interceptions interception NOM f p 1.20 0.27 0.09 0.07 +interceptèrent intercepter VER 6.64 3.65 0.00 0.07 ind:pas:3p; +intercepté intercepter VER m s 6.64 3.65 2.50 0.95 par:pas; +interceptée intercepter VER f s 6.64 3.65 0.15 0.07 par:pas; +interceptées intercepter VER f p 6.64 3.65 0.08 0.00 par:pas; +interceptés intercepter VER m p 6.64 3.65 0.41 0.20 par:pas; +intercesseur intercesseur NOM m s 0.00 1.22 0.00 0.54 +intercesseurs intercesseur NOM m p 0.00 1.22 0.00 0.68 +intercession intercession NOM f s 0.20 1.01 0.20 1.01 +interchangeable interchangeable ADJ s 0.32 2.50 0.07 0.74 +interchangeables interchangeable ADJ p 0.32 2.50 0.24 1.76 +interchanger interchanger VER 0.13 0.14 0.00 0.14 inf; +interchangé interchanger VER m s 0.13 0.14 0.13 0.00 par:pas; +interclasse interclasse NOM m s 0.03 0.07 0.01 0.00 +interclasses interclasse NOM m p 0.03 0.07 0.01 0.07 +interclubs interclubs ADJ 0.01 0.00 0.01 0.00 +intercommunal intercommunal ADJ m s 0.01 0.00 0.01 0.00 +intercommunautaire intercommunautaire ADJ s 0.01 0.00 0.01 0.00 +intercommunication intercommunication NOM f s 0.03 0.00 0.03 0.00 +interconnecté interconnecter VER m s 0.06 0.00 0.05 0.00 par:pas; +interconnectée interconnecter VER f s 0.06 0.00 0.01 0.00 par:pas; +interconnexion interconnexion NOM f s 0.01 0.00 0.01 0.00 +intercontinental intercontinental ADJ m s 0.63 0.41 0.58 0.20 +intercontinentale intercontinental ADJ f s 0.63 0.41 0.00 0.07 +intercontinentales intercontinental ADJ f p 0.63 0.41 0.00 0.07 +intercontinentaux intercontinental ADJ m p 0.63 0.41 0.04 0.07 +intercostal intercostal ADJ m s 0.30 0.14 0.17 0.00 +intercostale intercostal ADJ f s 0.30 0.14 0.10 0.07 +intercostaux intercostal ADJ m p 0.30 0.14 0.03 0.07 +intercours intercours NOM m 0.00 0.07 0.00 0.07 +intercourse intercourse NOM f s 0.05 0.07 0.05 0.07 +intercède intercéder VER 0.63 0.68 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intercéda intercéder VER 0.63 0.68 0.00 0.14 ind:pas:3s; +intercédait intercéder VER 0.63 0.68 0.14 0.07 ind:imp:3s; +intercédant intercéder VER 0.63 0.68 0.00 0.07 par:pre; +intercéder intercéder VER 0.63 0.68 0.37 0.41 inf; +intercédera intercéder VER 0.63 0.68 0.02 0.00 ind:fut:3s; +intercéderai intercéder VER 0.63 0.68 0.03 0.00 ind:fut:1s; +intercédé intercéder VER m s 0.63 0.68 0.03 0.00 par:pas; +interculturel interculturel ADJ m s 0.01 0.07 0.00 0.07 +interculturels interculturel ADJ m p 0.01 0.07 0.01 0.00 +interdît interdire VER 63.72 54.39 0.00 0.07 sub:imp:3s; +interdiction interdiction NOM f s 3.11 6.76 3.02 5.95 +interdictions interdiction NOM f p 3.11 6.76 0.09 0.81 +interdira interdire VER 63.72 54.39 0.41 0.07 ind:fut:3s; +interdirai interdire VER 63.72 54.39 0.15 0.07 ind:fut:1s; +interdiraient interdire VER 63.72 54.39 0.02 0.14 cnd:pre:3p; +interdirais interdire VER 63.72 54.39 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +interdirait interdire VER 63.72 54.39 0.21 0.47 cnd:pre:3s; +interdire interdire VER 63.72 54.39 4.38 5.95 inf; +interdirent interdire VER 63.72 54.39 0.00 0.20 ind:pas:3p; +interdis interdire VER 63.72 54.39 7.55 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s; +interdisaient interdire VER 63.72 54.39 0.18 1.69 ind:imp:3p; +interdisais interdire VER 63.72 54.39 0.10 0.14 ind:imp:1s;ind:imp:2s; +interdisait interdire VER 63.72 54.39 0.51 9.46 ind:imp:3s; +interdisant interdire VER 63.72 54.39 0.64 1.35 par:pre; +interdisciplinaires interdisciplinaire ADJ f p 0.01 0.07 0.01 0.07 +interdise interdire VER 63.72 54.39 0.34 0.34 sub:pre:1s;sub:pre:3s; +interdisent interdire VER 63.72 54.39 0.77 1.15 ind:pre:3p; +interdisez interdire VER 63.72 54.39 0.18 0.07 imp:pre:2p;ind:pre:2p; +interdisiez interdire VER 63.72 54.39 0.13 0.00 ind:imp:2p; +interdisons interdire VER 63.72 54.39 0.02 0.00 ind:pre:1p; +interdissent interdire VER 63.72 54.39 0.01 0.07 sub:imp:3p; +interdit interdire VER m s 63.72 54.39 42.13 24.12 ind:pre:3s;par:pas; +interdite interdit ADJ f s 10.31 15.34 3.63 3.72 +interdites interdire VER f p 63.72 54.39 0.67 1.08 par:pas; +interdits interdire VER m p 63.72 54.39 2.27 1.69 par:pas; +interdépartementaux interdépartemental ADJ m p 0.01 0.00 0.01 0.00 +interdépendance interdépendance NOM f s 0.11 0.74 0.11 0.74 +interdépendant interdépendant ADJ m s 0.02 0.00 0.02 0.00 +interethnique interethnique ADJ s 0.00 0.14 0.00 0.14 +interface interface NOM f s 1.35 0.00 1.30 0.00 +interfacer interfacer VER 0.07 0.00 0.07 0.00 inf; +interfaces interface NOM f p 1.35 0.00 0.04 0.00 +interfère interférer VER 2.75 0.68 0.80 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interfèrent interférer VER 2.75 0.68 0.14 0.14 ind:pre:3p; +interféraient interférer VER 2.75 0.68 0.03 0.00 ind:imp:3p; +interférait interférer VER 2.75 0.68 0.02 0.00 ind:imp:3s; +interférant interférer VER 2.75 0.68 0.07 0.07 par:pre; +interférence interférence NOM f s 3.00 1.62 1.33 0.68 +interférences interférence NOM f p 3.00 1.62 1.68 0.95 +interférent interférent ADJ m s 0.01 0.00 0.01 0.00 +interférer interférer VER 2.75 0.68 1.39 0.41 ind:pre:2p;inf; +interférez interférer VER 2.75 0.68 0.14 0.00 imp:pre:2p;ind:pre:2p; +interférométrie interférométrie NOM f s 0.01 0.00 0.01 0.00 +interféron interféron NOM m s 0.12 0.00 0.12 0.00 +interférons interférer VER 2.75 0.68 0.01 0.00 ind:pre:1p; +interféré interférer VER m s 2.75 0.68 0.16 0.00 par:pas; +intergalactique intergalactique ADJ s 1.07 0.14 0.85 0.14 +intergalactiques intergalactique ADJ p 1.07 0.14 0.22 0.00 +interglaciaire interglaciaire ADJ m s 0.14 0.00 0.14 0.00 +intergouvernemental intergouvernemental ADJ m s 0.03 0.00 0.01 0.00 +intergouvernementale intergouvernemental ADJ f s 0.03 0.00 0.01 0.00 +interjecter interjecter VER 0.00 0.07 0.00 0.07 inf; +interjection interjection NOM f s 0.01 1.28 0.01 0.27 +interjections interjection NOM f p 0.01 1.28 0.00 1.01 +interjeta interjeter VER 0.01 0.07 0.00 0.07 ind:pas:3s; +interjeter interjeter VER 0.01 0.07 0.01 0.00 inf; +interligne interligne NOM m s 0.04 0.14 0.04 0.00 +interlignes interligne NOM m p 0.04 0.14 0.00 0.14 +interlignés interligner VER m p 0.00 0.07 0.00 0.07 par:pas; +interlocuteur interlocuteur NOM m s 1.28 14.73 0.98 10.27 +interlocuteurs interlocuteur NOM m p 1.28 14.73 0.28 3.85 +interlocutoire interlocutoire ADJ f s 0.01 0.07 0.01 0.00 +interlocutoires interlocutoire ADJ p 0.01 0.07 0.00 0.07 +interlocutrice interlocuteur NOM f s 1.28 14.73 0.01 0.41 +interlocutrices interlocuteur NOM f p 1.28 14.73 0.00 0.20 +interlope interlope NOM m s 0.03 0.00 0.03 0.00 +interlopes interlope ADJ m p 0.00 0.54 0.00 0.20 +interloque interloquer VER 0.04 1.62 0.00 0.27 ind:pre:1s;ind:pre:3s; +interloqué interloqué ADJ m s 0.02 3.11 0.02 1.62 +interloquée interloquer VER f s 0.04 1.62 0.01 0.47 par:pas; +interloquées interloqué ADJ f p 0.02 3.11 0.00 0.07 +interloqués interloquer VER m p 0.04 1.62 0.01 0.20 par:pas; +interlude interlude NOM m s 0.30 0.34 0.29 0.27 +interludes interlude NOM m p 0.30 0.34 0.01 0.07 +intermezzo intermezzo NOM m s 0.10 0.07 0.10 0.07 +interminable interminable ADJ s 4.11 38.65 2.56 22.16 +interminablement interminablement ADV 0.05 5.34 0.05 5.34 +interminables interminable ADJ p 4.11 38.65 1.54 16.49 +interministérielles interministériel ADJ f p 0.00 0.14 0.00 0.07 +interministériels interministériel ADJ m p 0.00 0.14 0.00 0.07 +intermission intermission NOM f s 0.00 0.07 0.00 0.07 +intermittence intermittence NOM f s 0.57 3.78 0.57 2.77 +intermittences intermittence NOM f p 0.57 3.78 0.00 1.01 +intermittent intermittent ADJ m s 0.67 3.38 0.30 0.74 +intermittente intermittent ADJ f s 0.67 3.38 0.19 1.35 +intermittentes intermittent ADJ f p 0.67 3.38 0.14 0.95 +intermittents intermittent ADJ m p 0.67 3.38 0.05 0.34 +intermède intermède NOM m s 0.89 2.84 0.77 2.30 +intermèdes intermède NOM m p 0.89 2.84 0.11 0.54 +intermédiaire intermédiaire NOM s 4.43 7.30 3.44 6.01 +intermédiaires intermédiaire NOM p 4.43 7.30 1.00 1.28 +internat internat NOM m s 2.37 3.04 2.25 2.64 +international international ADJ m s 16.65 24.86 8.04 9.12 +internationale international ADJ f s 16.65 24.86 5.29 10.00 +internationalement internationalement ADV 0.07 0.14 0.07 0.14 +internationales international ADJ f p 16.65 24.86 1.63 3.99 +internationalisation internationalisation NOM f s 0.01 0.07 0.01 0.07 +internationalisme internationalisme NOM m s 0.00 0.61 0.00 0.61 +internationaliste internationaliste ADJ s 0.11 0.14 0.01 0.00 +internationalistes internationaliste ADJ p 0.11 0.14 0.10 0.14 +internationalisée internationaliser VER f s 0.00 0.14 0.00 0.07 par:pas; +internationalisés internationaliser VER m p 0.00 0.14 0.00 0.07 par:pas; +internationaux international ADJ m p 16.65 24.86 1.69 1.76 +internats internat NOM m p 2.37 3.04 0.12 0.41 +internaute internaute NOM s 0.11 0.00 0.01 0.00 +internautes internaute NOM p 0.11 0.00 0.10 0.00 +interne interne ADJ s 13.15 7.30 8.86 5.47 +internement internement NOM m s 0.51 1.22 0.51 1.22 +interner interner VER 4.21 1.15 1.71 0.27 inf; +internes interne ADJ p 13.15 7.30 4.29 1.82 +internet internet NOM s 5.61 0.00 5.61 0.00 +internez interner VER 4.21 1.15 0.01 0.00 imp:pre:2p; +interniste interniste NOM s 0.02 0.00 0.02 0.00 +interné interner VER m s 4.21 1.15 1.25 0.54 par:pas; +internée interner VER f s 4.21 1.15 0.76 0.07 par:pas; +internées interner VER f p 4.21 1.15 0.03 0.00 par:pas; +internés interner VER m p 4.21 1.15 0.07 0.27 par:pas; +interpella interpeller VER 1.52 15.54 0.00 3.04 ind:pas:3s; +interpellai interpeller VER 1.52 15.54 0.00 0.07 ind:pas:1s; +interpellaient interpeller VER 1.52 15.54 0.00 1.42 ind:imp:3p; +interpellais interpeller VER 1.52 15.54 0.00 0.14 ind:imp:1s; +interpellait interpeller VER 1.52 15.54 0.01 1.15 ind:imp:3s; +interpellant interpeller VER 1.52 15.54 0.00 1.08 par:pre; +interpellateur interpellateur NOM m s 0.00 0.27 0.00 0.20 +interpellateurs interpellateur NOM m p 0.00 0.27 0.00 0.07 +interpellation interpellation NOM f s 0.23 1.15 0.07 0.47 +interpellations interpellation NOM f p 0.23 1.15 0.17 0.68 +interpelle interpeller VER 1.52 15.54 0.36 2.43 ind:pre:1s;ind:pre:3s; +interpellent interpeller VER 1.52 15.54 0.46 1.15 ind:pre:3p; +interpeller interpeller VER 1.52 15.54 0.16 1.69 inf; +interpellerait interpeller VER 1.52 15.54 0.04 0.07 cnd:pre:3s; +interpellez interpeller VER 1.52 15.54 0.02 0.00 imp:pre:2p;ind:pre:2p; +interpellèrent interpeller VER 1.52 15.54 0.00 0.27 ind:pas:3p; +interpellé interpeller VER m s 1.52 15.54 0.34 1.96 par:pas; +interpellée interpeller VER f s 1.52 15.54 0.06 0.74 par:pas; +interpellées interpeller VER f p 1.52 15.54 0.01 0.07 par:pas; +interpellés interpeller VER m p 1.52 15.54 0.05 0.27 par:pas; +interphase interphase NOM f s 0.01 0.00 0.01 0.00 +interphone interphone NOM m s 1.87 1.22 1.58 1.15 +interphones interphone NOM m p 1.87 1.22 0.28 0.07 +interplanétaire interplanétaire ADJ s 0.80 0.20 0.53 0.07 +interplanétaires interplanétaire ADJ p 0.80 0.20 0.26 0.14 +interpolateur interpolateur NOM m s 0.01 0.00 0.01 0.00 +interpolation interpolation NOM f s 0.01 0.14 0.01 0.00 +interpolations interpolation NOM f p 0.01 0.14 0.00 0.14 +interpole interpoler VER 0.01 0.07 0.01 0.00 ind:pre:3s; +interpolez interpoler VER 0.01 0.07 0.00 0.07 imp:pre:2p; +interposa interposer VER 1.69 6.76 0.10 0.68 ind:pas:3s; +interposai interposer VER 1.69 6.76 0.00 0.20 ind:pas:1s; +interposaient interposer VER 1.69 6.76 0.01 0.20 ind:imp:3p; +interposais interposer VER 1.69 6.76 0.00 0.07 ind:imp:1s; +interposait interposer VER 1.69 6.76 0.04 1.08 ind:imp:3s; +interposant interposer VER 1.69 6.76 0.00 0.68 par:pre; +interpose interposer VER 1.69 6.76 0.26 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +interposent interposer VER 1.69 6.76 0.02 0.27 ind:pre:3p; +interposer interposer VER 1.69 6.76 0.80 1.49 inf; +interposera interposer VER 1.69 6.76 0.04 0.07 ind:fut:3s; +interposeront interposer VER 1.69 6.76 0.03 0.00 ind:fut:3p; +interposez interposer VER 1.69 6.76 0.04 0.00 imp:pre:2p;ind:pre:2p; +interposition interposition NOM f s 0.01 0.07 0.01 0.07 +interposèrent interposer VER 1.69 6.76 0.00 0.14 ind:pas:3p; +interposé interposer VER m s 1.69 6.76 0.29 0.41 par:pas; +interposée interposer VER f s 1.69 6.76 0.07 0.20 par:pas; +interposées interposé ADJ f p 0.13 2.30 0.02 0.74 +interposés interposé ADJ m p 0.13 2.30 0.04 0.20 +interprofessionnelle interprofessionnel ADJ f s 0.00 0.07 0.00 0.07 +interprète interprète NOM s 4.81 8.58 4.01 7.16 +interprètent interpréter VER 9.50 12.64 0.17 0.47 ind:pre:3p; +interprètes interprète NOM p 4.81 8.58 0.80 1.42 +interpréta interpréter VER 9.50 12.64 0.01 0.61 ind:pas:3s; +interprétable interprétable ADJ m s 0.01 0.00 0.01 0.00 +interprétai interpréter VER 9.50 12.64 0.00 0.07 ind:pas:1s; +interprétaient interpréter VER 9.50 12.64 0.03 0.34 ind:imp:3p; +interprétais interpréter VER 9.50 12.64 0.17 0.27 ind:imp:1s;ind:imp:2s; +interprétait interpréter VER 9.50 12.64 0.04 0.95 ind:imp:3s; +interprétant interpréter VER 9.50 12.64 0.21 0.20 par:pre; +interprétante interprétant ADJ f s 0.00 0.07 0.00 0.07 +interprétatif interprétatif ADJ m s 0.04 0.20 0.02 0.14 +interprétation interprétation NOM f s 5.49 7.77 4.90 5.68 +interprétations interprétation NOM f p 5.49 7.77 0.59 2.09 +interprétative interprétatif ADJ f s 0.04 0.20 0.02 0.00 +interprétatives interprétatif ADJ f p 0.04 0.20 0.00 0.07 +interpréter interpréter VER 9.50 12.64 3.38 4.80 inf; +interprétera interpréter VER 9.50 12.64 0.17 0.00 ind:fut:3s; +interpréteraient interpréter VER 9.50 12.64 0.00 0.07 cnd:pre:3p; +interpréterait interpréter VER 9.50 12.64 0.01 0.14 cnd:pre:3s; +interpréteriez interpréter VER 9.50 12.64 0.00 0.07 cnd:pre:2p; +interpréteur interpréteur NOM m s 0.01 0.00 0.01 0.00 +interprétez interpréter VER 9.50 12.64 0.20 0.20 imp:pre:2p;ind:pre:2p; +interprétât interpréter VER 9.50 12.64 0.00 0.07 sub:imp:3s; +interprétèrent interpréter VER 9.50 12.64 0.10 0.14 ind:pas:3p; +interprété interpréter VER m s 9.50 12.64 2.59 1.69 par:pas; +interprétée interpréter VER f s 9.50 12.64 0.32 0.95 par:pas; +interprétées interpréter VER f p 9.50 12.64 0.15 0.14 par:pas; +interprétés interpréter VER m p 9.50 12.64 0.10 0.07 par:pas; +interpénètre interpénétrer VER 0.02 0.14 0.00 0.07 ind:pre:3s; +interpénètrent interpénétrer VER 0.02 0.14 0.01 0.07 ind:pre:3p; +interpénétration interpénétration NOM f s 0.01 0.14 0.01 0.07 +interpénétrations interpénétration NOM f p 0.01 0.14 0.00 0.07 +interpénétrer interpénétrer VER 0.02 0.14 0.01 0.00 inf; +interracial interracial ADJ m s 0.08 0.00 0.01 0.00 +interraciale interracial ADJ f s 0.08 0.00 0.03 0.00 +interraciaux interracial ADJ m p 0.08 0.00 0.04 0.00 +interrelations interrelation NOM f p 0.02 0.00 0.02 0.00 +interrogateur interrogateur NOM m s 0.21 0.20 0.18 0.20 +interrogateurs interrogateur NOM m p 0.21 0.20 0.03 0.00 +interrogatif interrogatif ADJ m s 0.03 1.89 0.01 0.74 +interrogatifs interrogatif ADJ m p 0.03 1.89 0.00 0.34 +interrogation interrogation NOM f s 2.26 8.92 1.85 7.09 +interrogations interrogation NOM f p 2.26 8.92 0.41 1.82 +interrogative interrogatif ADJ f s 0.03 1.89 0.02 0.68 +interrogativement interrogativement ADV 0.00 0.07 0.00 0.07 +interrogatives interrogatif ADJ f p 0.03 1.89 0.00 0.14 +interrogatoire interrogatoire NOM m s 11.66 10.14 9.56 6.96 +interrogatoires interrogatoire NOM m p 11.66 10.14 2.10 3.18 +interrogatrice interrogateur NOM f s 0.21 0.20 0.01 0.00 +interroge interroger VER 44.31 73.04 8.37 12.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +interrogea interroger VER 44.31 73.04 0.04 9.59 ind:pas:3s; +interrogeai interroger VER 44.31 73.04 0.13 2.23 ind:pas:1s; +interrogeaient interroger VER 44.31 73.04 0.10 2.09 ind:imp:3p; +interrogeais interroger VER 44.31 73.04 0.60 2.57 ind:imp:1s;ind:imp:2s; +interrogeait interroger VER 44.31 73.04 0.79 8.24 ind:imp:3s; +interrogeant interroger VER 44.31 73.04 0.39 2.36 par:pre; +interrogent interroger VER 44.31 73.04 1.04 1.42 ind:pre:3p; +interrogeâmes interroger VER 44.31 73.04 0.00 0.14 ind:pas:1p; +interrogeons interroger VER 44.31 73.04 0.65 0.27 imp:pre:1p;ind:pre:1p; +interrogeât interroger VER 44.31 73.04 0.00 0.34 sub:imp:3s; +interroger interroger VER 44.31 73.04 16.22 18.58 inf;;inf;;inf;; +interrogera interroger VER 44.31 73.04 0.62 0.27 ind:fut:3s; +interrogerai interroger VER 44.31 73.04 0.65 0.07 ind:fut:1s; +interrogeraient interroger VER 44.31 73.04 0.02 0.07 cnd:pre:3p; +interrogerais interroger VER 44.31 73.04 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +interrogerait interroger VER 44.31 73.04 0.03 0.20 cnd:pre:3s; +interrogeras interroger VER 44.31 73.04 0.00 0.07 ind:fut:2s; +interrogerez interroger VER 44.31 73.04 0.02 0.00 ind:fut:2p; +interrogerons interroger VER 44.31 73.04 0.12 0.00 ind:fut:1p; +interrogeront interroger VER 44.31 73.04 0.28 0.20 ind:fut:3p; +interroges interroger VER 44.31 73.04 0.94 0.20 ind:pre:2s; +interrogez interroger VER 44.31 73.04 2.46 0.41 imp:pre:2p;ind:pre:2p; +interrogiez interroger VER 44.31 73.04 0.11 0.20 ind:imp:2p;sub:pre:2p; +interrogions interroger VER 44.31 73.04 0.05 0.20 ind:imp:1p;sub:pre:1p; +interrogèrent interroger VER 44.31 73.04 0.01 0.61 ind:pas:3p; +interrogé interroger VER m s 44.31 73.04 7.52 7.16 par:pas; +interrogée interroger VER f s 44.31 73.04 1.93 2.03 par:pas; +interrogées interroger VER f p 44.31 73.04 0.12 0.27 par:pas; +interrogés interroger VER m p 44.31 73.04 1.09 0.74 par:pas; +interrompît interrompre VER 27.47 64.32 0.00 0.27 sub:imp:3s; +interrompaient interrompre VER 27.47 64.32 0.00 1.01 ind:imp:3p; +interrompais interrompre VER 27.47 64.32 0.03 0.27 ind:imp:1s;ind:imp:2s; +interrompait interrompre VER 27.47 64.32 0.05 3.65 ind:imp:3s; +interrompant interrompre VER 27.47 64.32 0.19 4.39 par:pre; +interrompe interrompre VER 27.47 64.32 0.32 0.14 sub:pre:1s;sub:pre:3s; +interrompent interrompre VER 27.47 64.32 0.04 0.95 ind:pre:3p; +interrompes interrompre VER 27.47 64.32 0.03 0.00 sub:pre:2s; +interrompez interrompre VER 27.47 64.32 2.61 0.14 imp:pre:2p;ind:pre:2p; +interrompiez interrompre VER 27.47 64.32 0.01 0.07 ind:imp:2p; +interrompirent interrompre VER 27.47 64.32 0.01 0.54 ind:pas:3p; +interrompis interrompre VER 27.47 64.32 0.01 0.88 ind:pas:1s; +interrompisse interrompre VER 27.47 64.32 0.00 0.07 sub:imp:1s; +interrompit interrompre VER 27.47 64.32 0.06 20.07 ind:pas:3s; +interrompons interrompre VER 27.47 64.32 1.22 0.00 imp:pre:1p;ind:pre:1p; +interrompra interrompre VER 27.47 64.32 0.09 0.00 ind:fut:3s; +interromprai interrompre VER 27.47 64.32 0.03 0.00 ind:fut:1s; +interromprais interrompre VER 27.47 64.32 0.03 0.07 cnd:pre:1s; +interromprait interrompre VER 27.47 64.32 0.27 0.14 cnd:pre:3s; +interrompras interrompre VER 27.47 64.32 0.00 0.07 ind:fut:2s; +interrompre interrompre VER 27.47 64.32 12.47 11.96 inf; +interromps interrompre VER 27.47 64.32 3.13 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +interrompt interrompre VER 27.47 64.32 1.07 5.81 ind:pre:3s; +interrompu interrompre VER m s 27.47 64.32 3.62 7.70 par:pas; +interrompue interrompre VER f s 27.47 64.32 0.76 3.11 par:pas; +interrompues interrompre VER f p 27.47 64.32 0.49 0.81 par:pas; +interrompus interrompre VER m p 27.47 64.32 0.93 1.08 par:pas; +interrègne interrègne NOM m s 0.04 0.14 0.04 0.14 +interrupteur interrupteur NOM m s 2.94 2.30 2.58 2.09 +interrupteurs interrupteur NOM m p 2.94 2.30 0.36 0.20 +interruption interruption NOM f s 2.88 5.61 2.15 4.86 +interruptions interruption NOM f p 2.88 5.61 0.73 0.74 +inters inter NOM m p 0.84 0.95 0.00 0.07 +intersaison intersaison NOM f s 0.03 0.00 0.03 0.00 +interscolaire interscolaire ADJ s 0.01 0.00 0.01 0.00 +intersectant intersecter VER 0.00 0.07 0.00 0.07 par:pre; +intersection intersection NOM f s 1.16 1.42 1.10 1.35 +intersections intersection NOM f p 1.16 1.42 0.06 0.07 +interservices interservices ADJ 0.04 0.00 0.04 0.00 +intersidéral intersidéral ADJ m s 0.34 0.20 0.32 0.14 +intersidérale intersidéral ADJ f s 0.34 0.20 0.01 0.07 +intersidéraux intersidéral ADJ m p 0.34 0.20 0.01 0.00 +interstellaire interstellaire ADJ s 0.65 0.07 0.47 0.00 +interstellaires interstellaire ADJ p 0.65 0.07 0.18 0.07 +interstice interstice NOM m s 0.33 3.99 0.20 1.42 +interstices interstice NOM m p 0.33 3.99 0.14 2.57 +intersubjectif intersubjectif ADJ m s 0.01 0.00 0.01 0.00 +intertitre intertitre NOM m s 0.00 0.07 0.00 0.07 +intertribal intertribal ADJ m s 0.01 0.00 0.01 0.00 +interurbain interurbain ADJ m s 0.39 0.07 0.38 0.00 +interurbaine interurbain ADJ f s 0.39 0.07 0.01 0.07 +interétatique interétatique ADJ f s 0.01 0.00 0.01 0.00 +intervînt intervenir VER 22.39 35.34 0.00 0.14 sub:imp:3s; +intervalle intervalle NOM m s 2.82 19.12 1.98 6.69 +intervalles intervalle NOM m p 2.82 19.12 0.83 12.43 +intervenaient intervenir VER 22.39 35.34 0.14 0.54 ind:imp:3p; +intervenais intervenir VER 22.39 35.34 0.02 0.20 ind:imp:1s;ind:imp:2s; +intervenait intervenir VER 22.39 35.34 0.07 2.70 ind:imp:3s; +intervenant intervenir VER 22.39 35.34 0.24 0.54 par:pre; +intervenante intervenant NOM f s 0.35 0.14 0.01 0.00 +intervenants intervenant NOM m p 0.35 0.14 0.19 0.00 +intervenez intervenir VER 22.39 35.34 1.25 0.07 imp:pre:2p;ind:pre:2p; +interveniez intervenir VER 22.39 35.34 0.12 0.00 ind:imp:2p; +intervenir intervenir VER 22.39 35.34 9.82 13.58 inf; +intervenons intervenir VER 22.39 35.34 0.20 0.34 imp:pre:1p;ind:pre:1p; +intervention intervention NOM f s 13.33 16.01 12.37 13.24 +interventionnisme interventionnisme NOM m s 0.01 0.00 0.01 0.00 +interventionniste interventionniste ADJ s 0.04 0.14 0.04 0.00 +interventionnistes interventionniste NOM p 0.11 0.00 0.10 0.00 +interventions intervention NOM f p 13.33 16.01 0.96 2.77 +interventriculaire interventriculaire ADJ s 0.01 0.00 0.01 0.00 +intervenu intervenir VER m s 22.39 35.34 1.66 1.62 par:pas; +intervenue intervenir VER f s 22.39 35.34 0.93 0.61 par:pas; +intervenues intervenir VER f p 22.39 35.34 0.04 0.14 par:pas; +intervenus intervenir VER m p 22.39 35.34 0.67 0.54 par:pas; +interversion interversion NOM f s 0.04 0.20 0.04 0.07 +interversions interversion NOM f p 0.04 0.20 0.00 0.14 +interverti intervertir VER m s 0.56 0.95 0.17 0.00 par:pas; +intervertir intervertir VER 0.56 0.95 0.26 0.34 inf; +intervertirai intervertir VER 0.56 0.95 0.01 0.00 ind:fut:1s; +intervertis intervertir VER m p 0.56 0.95 0.08 0.14 ind:pre:1s;ind:pre:2s;par:pas; +intervertissait intervertir VER 0.56 0.95 0.01 0.07 ind:imp:3s; +intervertissent intervertir VER 0.56 0.95 0.01 0.07 ind:pre:3p; +intervertissiez intervertir VER 0.56 0.95 0.01 0.00 ind:imp:2p; +intervertissons intervertir VER 0.56 0.95 0.00 0.07 imp:pre:1p; +intervertit intervertir VER 0.56 0.95 0.01 0.27 ind:pre:3s;ind:pas:3s; +intervertébral intervertébral ADJ m s 0.04 0.07 0.04 0.00 +intervertébraux intervertébral ADJ m p 0.04 0.07 0.00 0.07 +interviendra intervenir VER 22.39 35.34 0.57 0.20 ind:fut:3s; +interviendrai intervenir VER 22.39 35.34 0.20 0.07 ind:fut:1s; +interviendraient intervenir VER 22.39 35.34 0.02 0.00 cnd:pre:3p; +interviendrais intervenir VER 22.39 35.34 0.17 0.00 cnd:pre:1s; +interviendrait intervenir VER 22.39 35.34 0.04 0.47 cnd:pre:3s; +interviendrez intervenir VER 22.39 35.34 0.20 0.00 ind:fut:2p; +interviendrons intervenir VER 22.39 35.34 0.09 0.07 ind:fut:1p; +interviendront intervenir VER 22.39 35.34 0.09 0.00 ind:fut:3p; +intervienne intervenir VER 22.39 35.34 0.78 0.81 sub:pre:1s;sub:pre:3s; +interviennent intervenir VER 22.39 35.34 0.47 0.47 ind:pre:3p; +interviens intervenir VER 22.39 35.34 1.40 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +intervient intervenir VER 22.39 35.34 3.16 4.32 ind:pre:3s; +interview interview NOM f s 0.00 7.30 0.00 5.07 +interviewaient interviewer VER 0.00 1.69 0.00 0.14 ind:imp:3p; +interviewais interviewer VER 0.00 1.69 0.00 0.14 ind:imp:1s; +interviewait interviewer VER 0.00 1.69 0.00 0.41 ind:imp:3s; +interviewe interviewer VER 0.00 1.69 0.00 0.07 ind:pre:1s; +interviewer interviewer NOM m s 0.00 1.22 0.00 1.15 +interviewers interviewer NOM m p 0.00 1.22 0.00 0.07 +intervieweur intervieweur NOM m s 0.00 0.07 0.00 0.07 +interviews interview NOM f p 0.00 7.30 0.00 2.23 +interviewèrent interviewer VER 0.00 1.69 0.00 0.07 ind:pas:3p; +interviewé interviewer VER m s 0.00 1.69 0.00 0.41 par:pas; +interviewée interviewer VER f s 0.00 1.69 0.00 0.14 par:pas; +interviewés interviewer VER m p 0.00 1.69 0.00 0.07 par:pas; +intervinrent intervenir VER 22.39 35.34 0.01 0.07 ind:pas:3p; +intervins intervenir VER 22.39 35.34 0.00 0.41 ind:pas:1s; +intervinsse intervenir VER 22.39 35.34 0.00 0.07 sub:imp:1s; +intervint intervenir VER 22.39 35.34 0.03 6.55 ind:pas:3s; +interzones interzone ADJ f p 0.00 0.14 0.00 0.14 +intestat intestat ADJ m s 0.01 0.20 0.01 0.20 +intestats intestat NOM m p 0.00 0.07 0.00 0.07 +intestin intestin NOM m s 4.29 3.92 1.71 1.82 +intestinal intestinal ADJ m s 2.13 2.03 0.66 0.27 +intestinale intestinal ADJ f s 2.13 2.03 0.67 0.95 +intestinales intestinal ADJ f p 2.13 2.03 0.18 0.34 +intestinaux intestinal ADJ m p 2.13 2.03 0.63 0.47 +intestine intestin ADJ f s 0.68 1.28 0.04 0.20 +intestines intestin ADJ f p 0.68 1.28 0.45 0.74 +intestins intestin NOM m p 4.29 3.92 2.58 2.09 +inti inti NOM m s 0.02 0.00 0.02 0.00 +intifada intifada NOM m s 0.42 0.00 0.42 0.00 +intima intimer VER 0.50 3.92 0.00 1.08 ind:pas:3s;;ind:pas:3s; +intimait intimer VER 0.50 3.92 0.00 0.54 ind:imp:3s; +intimant intimer VER 0.50 3.92 0.00 0.20 par:pre; +intimation intimation NOM f s 0.00 0.14 0.00 0.14 +intime intime ADJ s 15.78 34.66 9.09 23.85 +intimement intimement ADV 0.84 4.26 0.84 4.26 +intimer intimer VER 0.50 3.92 0.28 0.54 inf; +intimerait intimer VER 0.50 3.92 0.00 0.07 cnd:pre:3s; +intimes intime ADJ p 15.78 34.66 6.69 10.81 +intimida intimider VER 6.97 17.16 0.14 0.27 ind:pas:3s; +intimidable intimidable ADJ s 0.01 0.00 0.01 0.00 +intimidaient intimider VER 6.97 17.16 0.02 0.88 ind:imp:3p; +intimidais intimider VER 6.97 17.16 0.12 0.07 ind:imp:1s;ind:imp:2s; +intimidait intimider VER 6.97 17.16 0.09 2.43 ind:imp:3s; +intimidant intimidant ADJ m s 0.78 1.89 0.61 1.08 +intimidante intimidant ADJ f s 0.78 1.89 0.13 0.74 +intimidants intimidant ADJ m p 0.78 1.89 0.04 0.07 +intimidateur intimidateur NOM m s 0.01 0.00 0.01 0.00 +intimidation intimidation NOM f s 0.77 1.76 0.71 1.76 +intimidations intimidation NOM f p 0.77 1.76 0.05 0.00 +intimide intimider VER 6.97 17.16 1.13 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intimident intimider VER 6.97 17.16 0.13 0.34 ind:pre:3p; +intimider intimider VER 6.97 17.16 2.40 2.77 inf; +intimiderait intimider VER 6.97 17.16 0.00 0.07 cnd:pre:3s; +intimides intimider VER 6.97 17.16 0.22 0.14 ind:pre:2s; +intimidez intimider VER 6.97 17.16 0.49 0.20 imp:pre:2p;ind:pre:2p; +intimidiez intimider VER 6.97 17.16 0.00 0.07 ind:imp:2p; +intimidât intimider VER 6.97 17.16 0.00 0.07 sub:imp:3s; +intimidé intimider VER m s 6.97 17.16 1.22 5.34 par:pas; +intimidée intimider VER f s 6.97 17.16 0.71 2.03 par:pas; +intimidées intimider VER f p 6.97 17.16 0.01 0.27 par:pas; +intimidés intimider VER m p 6.97 17.16 0.22 1.28 par:pas; +intimiste intimiste ADJ m s 0.04 0.20 0.01 0.00 +intimistes intimiste ADJ p 0.04 0.20 0.03 0.20 +intimité intimité NOM f s 10.80 24.12 10.79 23.65 +intimités intimité NOM f p 10.80 24.12 0.01 0.47 +intimât intimer VER 0.50 3.92 0.00 0.07 sub:imp:3s; +intimèrent intimer VER 0.50 3.92 0.00 0.07 ind:pas:3p; +intimé intimer VER m s 0.50 3.92 0.20 0.41 par:pas; +intimés intimer VER m p 0.50 3.92 0.00 0.07 par:pas; +intirable intirable ADJ s 0.00 0.07 0.00 0.07 +intitula intituler VER 4.72 9.53 0.00 0.27 ind:pas:3s; +intitulai intituler VER 4.72 9.53 0.00 0.07 ind:pas:1s; +intitulaient intituler VER 4.72 9.53 0.00 0.14 ind:imp:3p; +intitulais intituler VER 4.72 9.53 0.00 0.07 ind:imp:1s; +intitulait intituler VER 4.72 9.53 0.17 1.28 ind:imp:3s; +intitulant intituler VER 4.72 9.53 0.01 0.07 par:pre; +intitule intituler VER 4.72 9.53 1.60 0.81 ind:pre:1s;ind:pre:3s; +intituler intituler VER 4.72 9.53 0.11 0.34 inf; +intitulerait intituler VER 4.72 9.53 0.00 0.07 cnd:pre:3s; +intitulé intituler VER m s 4.72 9.53 1.43 3.65 par:pas; +intitulée intituler VER f s 4.72 9.53 1.29 2.30 par:pas; +intitulées intituler VER f p 4.72 9.53 0.10 0.14 par:pas; +intitulés intitulé NOM m p 0.38 1.69 0.02 0.14 +intolérable intolérable ADJ s 4.23 11.28 3.74 10.47 +intolérablement intolérablement ADV 0.02 0.20 0.02 0.20 +intolérables intolérable ADJ p 4.23 11.28 0.49 0.81 +intolérance intolérance NOM f s 0.93 1.35 0.93 1.35 +intolérant intolérant ADJ m s 0.63 0.34 0.15 0.20 +intolérante intolérant ADJ f s 0.63 0.34 0.33 0.00 +intolérants intolérant ADJ m p 0.63 0.34 0.15 0.14 +intonation intonation NOM f s 0.55 10.07 0.42 5.95 +intonations intonation NOM f p 0.55 10.07 0.12 4.12 +intouchable intouchable ADJ s 1.52 2.84 1.23 1.96 +intouchables intouchable ADJ p 1.52 2.84 0.28 0.88 +intouché intouché ADJ m s 0.12 0.47 0.10 0.07 +intouchée intouché ADJ f s 0.12 0.47 0.00 0.20 +intouchées intouché ADJ f p 0.12 0.47 0.02 0.14 +intouchés intouché ADJ m p 0.12 0.47 0.00 0.07 +intox intox NOM f 0.34 0.14 0.21 0.14 +intoxe intox NOM f s 0.34 0.14 0.14 0.00 +intoxicant intoxicant ADJ m s 0.02 0.00 0.02 0.00 +intoxication intoxication NOM f s 1.51 0.74 1.38 0.74 +intoxications intoxication NOM f p 1.51 0.74 0.13 0.00 +intoxiquant intoxiquer VER 0.53 0.74 0.01 0.07 par:pre; +intoxique intoxiquer VER 0.53 0.74 0.01 0.14 ind:pre:3s; +intoxiquer intoxiquer VER 0.53 0.74 0.01 0.27 inf; +intoxiqué intoxiquer VER m s 0.53 0.74 0.38 0.20 par:pas; +intoxiquée intoxiquer VER f s 0.53 0.74 0.09 0.07 par:pas; +intoxiquées intoxiqué NOM f p 0.04 0.20 0.00 0.07 +intoxiqués intoxiquer VER m p 0.53 0.74 0.03 0.00 par:pas; +intra_atomique intra_atomique ADJ s 0.00 0.07 0.00 0.07 +intra_muros intra_muros ADV 0.01 0.07 0.01 0.07 +rachidien rachidien ADJ f s 0.23 0.14 0.01 0.00 +intra_utérin intra_utérin ADJ f s 0.14 0.07 0.04 0.00 +intra_utérin intra_utérin ADJ f p 0.14 0.07 0.10 0.07 +intra_muros intra_muros ADV 0.01 0.07 0.01 0.07 +intra intra ADV 0.02 0.00 0.02 0.00 +intracardiaque intracardiaque ADJ f s 0.08 0.00 0.08 0.00 +intracrânien intracrânien ADJ m s 0.14 0.00 0.01 0.00 +intracrânienne intracrânien ADJ f s 0.14 0.00 0.13 0.00 +intracérébrale intracérébral ADJ f s 0.03 0.00 0.03 0.00 +intradermique intradermique ADJ m s 0.03 0.00 0.03 0.00 +intrados intrados NOM f s 0.00 0.07 0.00 0.07 +intraduisible intraduisible ADJ s 0.13 0.61 0.12 0.27 +intraduisibles intraduisible ADJ p 0.13 0.61 0.01 0.34 +intrait intrait NOM m s 0.00 0.14 0.00 0.14 +intraitable intraitable ADJ s 0.51 2.91 0.45 2.64 +intraitables intraitable ADJ f p 0.51 2.91 0.06 0.27 +intramusculaire intramusculaire ADJ s 0.19 0.07 0.16 0.00 +intramusculaires intramusculaire ADJ f p 0.19 0.07 0.03 0.07 +intranet intranet NOM m s 0.08 0.00 0.08 0.00 +intransgressible intransgressible ADJ s 0.00 0.07 0.00 0.07 +intransigeance intransigeance NOM f s 0.04 3.04 0.04 2.91 +intransigeances intransigeance NOM f p 0.04 3.04 0.00 0.14 +intransigeant intransigeant ADJ m s 0.86 2.30 0.64 1.15 +intransigeante intransigeant ADJ f s 0.86 2.30 0.09 0.81 +intransigeantes intransigeant ADJ f p 0.86 2.30 0.00 0.27 +intransigeants intransigeant ADJ m p 0.86 2.30 0.14 0.07 +intransitif intransitif NOM m s 0.00 0.07 0.00 0.07 +intransmissible intransmissible ADJ m s 0.01 0.14 0.01 0.14 +intransportable intransportable ADJ f s 0.02 0.20 0.02 0.14 +intransportables intransportable ADJ m p 0.02 0.20 0.00 0.07 +intraoculaire intraoculaire ADJ f s 0.01 0.00 0.01 0.00 +intravasculaire intravasculaire ADJ s 0.04 0.00 0.04 0.00 +intraveineuse intraveineux ADJ f s 1.13 0.34 1.02 0.07 +intraveineuses intraveineux ADJ f p 1.13 0.34 0.09 0.20 +intraveineux intraveineux ADJ m 1.13 0.34 0.01 0.07 +intrigant intrigant ADJ m s 1.77 1.42 0.44 0.81 +intrigante intrigant ADJ f s 1.77 1.42 1.23 0.14 +intrigantes intrigant ADJ f p 1.77 1.42 0.04 0.00 +intrigants intrigant ADJ m p 1.77 1.42 0.06 0.47 +intrigua intriguer VER 5.58 19.73 0.02 1.01 ind:pas:3s; +intriguaient intriguer VER 5.58 19.73 0.04 0.88 ind:imp:3p; +intriguait intriguer VER 5.58 19.73 0.46 3.58 ind:imp:3s; +intriguant intriguer VER 5.58 19.73 0.38 0.27 par:pre; +intriguassent intriguer VER 5.58 19.73 0.00 0.07 sub:imp:3p; +intrigue intrigue NOM f s 4.80 13.18 2.56 5.07 +intriguent intriguer VER 5.58 19.73 0.25 0.27 ind:pre:3p; +intriguer intriguer VER 5.58 19.73 0.12 1.82 inf; +intriguera intriguer VER 5.58 19.73 0.03 0.07 ind:fut:3s; +intriguerait intriguer VER 5.58 19.73 0.02 0.14 cnd:pre:3s; +intrigues intrigue NOM f p 4.80 13.18 2.24 8.11 +intriguez intriguer VER 5.58 19.73 0.14 0.20 imp:pre:2p;ind:pre:2p; +intriguât intriguer VER 5.58 19.73 0.00 0.07 sub:imp:3s; +intriguèrent intriguer VER 5.58 19.73 0.00 0.14 ind:pas:3p; +intrigué intriguer VER m s 5.58 19.73 1.19 6.42 par:pas; +intriguée intriguer VER f s 5.58 19.73 0.40 1.76 par:pas; +intrigués intriguer VER m p 5.58 19.73 0.13 1.22 par:pas; +intrinsèque intrinsèque ADJ s 0.13 0.41 0.13 0.41 +intrinsèquement intrinsèquement ADV 0.35 0.07 0.35 0.07 +introït introït NOM m s 0.00 0.20 0.00 0.20 +introducteur introducteur NOM m s 0.05 0.34 0.05 0.27 +introductif introductif ADJ m s 0.03 0.14 0.03 0.14 +introduction introduction NOM f s 2.45 3.04 2.27 2.97 +introductions introduction NOM f p 2.45 3.04 0.18 0.07 +introductrice introducteur NOM f s 0.05 0.34 0.00 0.07 +introduira introduire VER 12.55 30.54 0.17 0.20 ind:fut:3s; +introduirai introduire VER 12.55 30.54 0.11 0.07 ind:fut:1s; +introduiraient introduire VER 12.55 30.54 0.00 0.07 cnd:pre:3p; +introduirais introduire VER 12.55 30.54 0.01 0.07 cnd:pre:1s; +introduirait introduire VER 12.55 30.54 0.03 0.20 cnd:pre:3s; +introduire introduire VER 12.55 30.54 3.95 8.04 ind:pre:2p;inf; +introduirez introduire VER 12.55 30.54 0.01 0.00 ind:fut:2p; +introduirions introduire VER 12.55 30.54 0.00 0.07 cnd:pre:1p; +introduis introduire VER 12.55 30.54 0.78 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +introduisît introduire VER 12.55 30.54 0.00 0.14 sub:imp:3s; +introduisaient introduire VER 12.55 30.54 0.00 0.54 ind:imp:3p; +introduisais introduire VER 12.55 30.54 0.02 0.07 ind:imp:1s;ind:imp:2s; +introduisait introduire VER 12.55 30.54 0.05 2.09 ind:imp:3s; +introduisant introduire VER 12.55 30.54 0.17 1.55 par:pre; +introduise introduire VER 12.55 30.54 0.19 0.34 sub:pre:1s;sub:pre:3s; +introduisent introduire VER 12.55 30.54 0.38 0.34 ind:pre:3p; +introduisez introduire VER 12.55 30.54 0.89 0.00 imp:pre:2p;ind:pre:2p; +introduisirent introduire VER 12.55 30.54 0.01 0.20 ind:pas:3p; +introduisis introduire VER 12.55 30.54 0.00 0.34 ind:pas:1s;ind:pas:2s; +introduisit introduire VER 12.55 30.54 0.16 3.45 ind:pas:3s; +introduisons introduire VER 12.55 30.54 0.07 0.20 imp:pre:1p;ind:pre:1p; +introduit introduire VER m s 12.55 30.54 4.18 8.99 ind:pre:3s;par:pas; +introduite introduire VER f s 12.55 30.54 0.86 1.08 par:pas; +introduites introduire VER f p 12.55 30.54 0.23 0.47 par:pas; +introduits introduire VER m p 12.55 30.54 0.28 1.89 par:pas; +intromission intromission NOM f s 0.00 0.14 0.00 0.14 +intronisa introniser VER 0.12 0.34 0.00 0.07 ind:pas:3s; +intronisait introniser VER 0.12 0.34 0.01 0.07 ind:imp:3s; +intronisation intronisation NOM f s 0.02 0.41 0.02 0.41 +intronise introniser VER 0.12 0.34 0.00 0.07 ind:pre:3s; +introniser introniser VER 0.12 0.34 0.05 0.00 inf; +intronisé introniser VER m s 0.12 0.34 0.06 0.14 par:pas; +introspecter introspecter VER 0.01 0.00 0.01 0.00 inf; +introspectif introspectif ADJ m s 0.08 0.07 0.06 0.00 +introspection introspection NOM f s 0.33 0.20 0.33 0.14 +introspections introspection NOM f p 0.33 0.20 0.00 0.07 +introspective introspectif ADJ f s 0.08 0.07 0.01 0.00 +introspectives introspectif ADJ f p 0.08 0.07 0.01 0.07 +introuvable introuvable ADJ s 3.66 3.92 3.27 2.77 +introuvables introuvable ADJ p 3.66 3.92 0.39 1.15 +introversions introversion NOM f p 0.00 0.07 0.00 0.07 +introverti introverti ADJ m s 0.33 0.00 0.22 0.00 +introvertie introverti ADJ f s 0.33 0.00 0.09 0.00 +introvertis introverti NOM m p 0.27 0.00 0.14 0.00 +intrépide intrépide ADJ s 1.63 3.78 1.37 2.77 +intrépidement intrépidement ADV 0.00 0.14 0.00 0.14 +intrépides intrépide ADJ p 1.63 3.78 0.26 1.01 +intrépidité intrépidité NOM f s 0.04 0.74 0.04 0.74 +intrus intrus NOM m s 4.35 5.47 4.29 4.46 +intruse intrus NOM f s 4.35 5.47 0.06 0.81 +intruses intrus NOM f p 4.35 5.47 0.00 0.20 +intrusif intrusif ADJ m s 0.04 0.00 0.04 0.00 +intrusion intrusion NOM f s 4.61 3.78 4.48 3.24 +intrusions intrusion NOM f p 4.61 3.78 0.13 0.54 +intègre intègre ADJ s 1.70 1.35 1.50 0.81 +intègrent intégrer VER 7.98 6.89 0.06 0.14 ind:pre:3p; +intègres intègre ADJ p 1.70 1.35 0.19 0.54 +intubation intubation NOM f s 0.86 0.00 0.86 0.00 +intube intuber VER 2.33 0.00 0.42 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +intuber intuber VER 2.33 0.00 1.25 0.00 inf; +intubez intuber VER 2.33 0.00 0.15 0.00 imp:pre:2p;ind:pre:2p; +intubé intuber VER m s 2.33 0.00 0.42 0.00 par:pas; +intubée intuber VER f s 2.33 0.00 0.09 0.00 par:pas; +intégra intégrer VER 7.98 6.89 0.01 0.07 ind:pas:3s; +intégraient intégrer VER 7.98 6.89 0.01 0.20 ind:imp:3p; +intégrait intégrer VER 7.98 6.89 0.08 0.47 ind:imp:3s; +intégral intégral ADJ m s 1.35 5.27 0.56 3.18 +intégrale intégral ADJ f s 1.35 5.27 0.80 1.76 +intégralement intégralement ADV 0.57 3.24 0.57 3.24 +intégrales intégrale NOM f p 0.45 0.27 0.02 0.00 +intégralisme intégralisme NOM m s 0.00 0.07 0.00 0.07 +intégralité intégralité NOM f s 0.43 0.74 0.43 0.74 +intégrant intégrer VER 7.98 6.89 0.19 0.14 par:pre; +intégrante intégrant ADJ f s 0.34 1.01 0.34 1.01 +intégrateur intégrateur NOM m s 0.02 0.00 0.02 0.00 +intégration intégration NOM f s 1.28 1.08 1.28 1.08 +intégraux intégral ADJ m p 1.35 5.27 0.00 0.07 +intégrer intégrer VER 7.98 6.89 3.71 2.57 inf; +intégrera intégrer VER 7.98 6.89 0.16 0.14 ind:fut:3s; +intégrerais intégrer VER 7.98 6.89 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +intégreras intégrer VER 7.98 6.89 0.02 0.07 ind:fut:2s; +intégrerez intégrer VER 7.98 6.89 0.16 0.00 ind:fut:2p; +intégreront intégrer VER 7.98 6.89 0.03 0.00 ind:fut:3p; +intégrez intégrer VER 7.98 6.89 0.08 0.00 imp:pre:2p;ind:pre:2p; +intégriez intégrer VER 7.98 6.89 0.01 0.00 ind:imp:2p; +intégrisme intégrisme NOM m s 0.04 0.14 0.03 0.00 +intégrismes intégrisme NOM m p 0.04 0.14 0.01 0.14 +intégriste intégriste ADJ m s 0.22 0.00 0.15 0.00 +intégristes intégriste ADJ p 0.22 0.00 0.07 0.00 +intégrité intégrité NOM f s 4.10 4.32 4.10 4.26 +intégrités intégrité NOM f p 4.10 4.32 0.00 0.07 +intégrèrent intégrer VER 7.98 6.89 0.01 0.00 ind:pas:3p; +intégré intégrer VER m s 7.98 6.89 1.25 1.22 par:pas; +intégrée intégrer VER f s 7.98 6.89 0.39 0.68 par:pas; +intégrées intégrer VER f p 7.98 6.89 0.28 0.14 par:pas; +intégrés intégrer VER m p 7.98 6.89 0.43 0.47 par:pas; +intuitif intuitif ADJ m s 0.81 0.61 0.24 0.27 +intuitifs intuitif ADJ m p 0.81 0.61 0.02 0.00 +intuition intuition NOM f s 9.37 11.08 8.64 9.80 +intuitions intuition NOM f p 9.37 11.08 0.73 1.28 +intuitive intuitif ADJ f s 0.81 0.61 0.50 0.27 +intuitivement intuitivement ADV 0.17 0.74 0.17 0.74 +intuitives intuitif ADJ f p 0.81 0.61 0.05 0.07 +intumescence intumescence NOM f s 0.01 0.00 0.01 0.00 +intéressa intéresser VER 140.80 117.36 0.02 1.69 ind:pas:3s; +intéressai intéresser VER 140.80 117.36 0.00 0.34 ind:pas:1s; +intéressaient intéresser VER 140.80 117.36 0.73 4.93 ind:imp:3p; +intéressais intéresser VER 140.80 117.36 1.20 2.70 ind:imp:1s;ind:imp:2s; +intéressait intéresser VER 140.80 117.36 7.29 22.57 ind:imp:3s; +intéressant intéressant ADJ m s 69.17 28.65 47.07 15.47 +intéressante intéressant ADJ f s 69.17 28.65 13.05 5.95 +intéressantes intéressant ADJ f p 69.17 28.65 4.82 3.58 +intéressants intéressant ADJ m p 69.17 28.65 4.24 3.65 +intéresse intéresser VER 140.80 117.36 75.20 34.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +intéressement intéressement NOM m s 0.05 0.07 0.05 0.07 +intéressent intéresser VER 140.80 117.36 9.68 7.23 ind:pre:3p; +intéresser intéresser VER 140.80 117.36 12.94 22.70 ind:pre:2p;inf; +intéressera intéresser VER 140.80 117.36 1.65 0.88 ind:fut:3s; +intéresserai intéresser VER 140.80 117.36 0.24 0.00 ind:fut:1s; +intéresseraient intéresser VER 140.80 117.36 0.29 0.41 cnd:pre:3p; +intéresserais intéresser VER 140.80 117.36 0.14 0.20 cnd:pre:1s;cnd:pre:2s; +intéresserait intéresser VER 140.80 117.36 3.42 2.57 cnd:pre:3s; +intéresseras intéresser VER 140.80 117.36 0.01 0.07 ind:fut:2s; +intéresseriez intéresser VER 140.80 117.36 0.01 0.00 cnd:pre:2p; +intéresserons intéresser VER 140.80 117.36 0.00 0.07 ind:fut:1p; +intéresseront intéresser VER 140.80 117.36 0.25 0.34 ind:fut:3p; +intéresses intéresser VER 140.80 117.36 6.81 1.01 ind:pre:2s; +intéressez intéresser VER 140.80 117.36 2.03 0.81 imp:pre:2p;ind:pre:2p; +intéressiez intéresser VER 140.80 117.36 0.46 0.34 ind:imp:2p; +intéressions intéresser VER 140.80 117.36 0.01 0.07 ind:imp:1p; +intéressons intéresser VER 140.80 117.36 0.31 0.07 imp:pre:1p;ind:pre:1p; +intéressât intéresser VER 140.80 117.36 0.01 0.74 sub:imp:3s; +intéressèrent intéresser VER 140.80 117.36 0.00 0.27 ind:pas:3p; +intéressé intéresser VER m s 140.80 117.36 9.31 6.22 par:pas; +intéressée intéresser VER f s 140.80 117.36 3.02 2.36 par:pas; +intéressées intéressé ADJ f p 7.20 7.77 0.46 0.68 +intéressés intéresser VER m p 140.80 117.36 2.82 1.76 par:pas; +intérieur intérieur NOM m s 90.11 135.88 89.75 133.51 +intérieure intérieur ADJ f s 13.17 50.61 6.75 23.38 +intérieurement intérieurement ADV 1.29 6.01 1.29 6.01 +intérieures intérieur ADJ f p 13.17 50.61 0.84 4.86 +intérieurs intérieur ADJ m p 13.17 50.61 0.84 3.38 +intérim intérim NOM m s 1.10 2.03 1.10 1.89 +intérimaire intérimaire NOM s 0.77 0.47 0.49 0.20 +intérimaires intérimaire NOM p 0.77 0.47 0.28 0.27 +intérims intérim NOM m p 1.10 2.03 0.00 0.14 +intériorisa intérioriser VER 0.35 0.34 0.00 0.07 ind:pas:3s; +intériorisait intérioriser VER 0.35 0.34 0.01 0.00 ind:imp:3s; +intériorisation intériorisation NOM f s 0.14 0.07 0.14 0.07 +intériorise intérioriser VER 0.35 0.34 0.09 0.07 ind:pre:1s;ind:pre:3s; +intériorisent intérioriser VER 0.35 0.34 0.14 0.00 ind:pre:3p; +intérioriser intérioriser VER 0.35 0.34 0.09 0.00 inf; +intériorisée intérioriser VER f s 0.35 0.34 0.03 0.07 par:pas; +intériorisées intérioriser VER f p 0.35 0.34 0.00 0.07 par:pas; +intériorisés intérioriser VER m p 0.35 0.34 0.00 0.07 par:pas; +intériorité intériorité NOM f s 0.10 0.41 0.10 0.41 +intérêt intérêt NOM m s 81.09 97.36 63.63 75.00 +intérêts intérêt NOM m p 81.09 97.36 17.46 22.36 +intussusception intussusception NOM f s 0.03 0.00 0.03 0.00 +inébranlable inébranlable ADJ s 1.20 3.72 1.05 3.04 +inébranlablement inébranlablement ADV 0.14 0.20 0.14 0.20 +inébranlables inébranlable ADJ p 1.20 3.72 0.15 0.68 +inébranlé inébranlé ADJ m s 0.00 0.07 0.00 0.07 +inéchangeable inéchangeable ADJ f s 0.00 0.07 0.00 0.07 +inécoutée inécouté ADJ f s 0.00 0.07 0.00 0.07 +inédit inédit ADJ m s 1.10 5.34 0.65 0.95 +inédite inédit ADJ f s 1.10 5.34 0.28 2.50 +inédites inédit ADJ f p 1.10 5.34 0.12 0.95 +inédits inédit ADJ m p 1.10 5.34 0.06 0.95 +inéducable inéducable ADJ s 0.01 0.00 0.01 0.00 +inégal inégal ADJ m s 0.68 8.11 0.23 2.84 +inégalable inégalable ADJ s 0.38 1.22 0.36 0.95 +inégalables inégalable ADJ f p 0.38 1.22 0.01 0.27 +inégale inégal ADJ f s 0.68 8.11 0.29 1.69 +inégalement inégalement ADV 0.03 1.01 0.03 1.01 +inégales inégal ADJ f p 0.68 8.11 0.08 1.76 +inégalité inégalité NOM f s 0.67 1.62 0.33 1.35 +inégalités inégalité NOM f p 0.67 1.62 0.34 0.27 +inégalé inégalé ADJ m s 0.17 0.54 0.06 0.20 +inégalée inégaler VER f s 0.22 0.41 0.18 0.27 par:pas; +inégalées inégalé ADJ f p 0.17 0.54 0.00 0.07 +inégaux inégal ADJ m p 0.68 8.11 0.07 1.82 +inuit inuit NOM f s 0.04 0.00 0.04 0.00 +inéligibilité inéligibilité NOM f s 0.14 0.00 0.14 0.00 +inéligible inéligible ADJ s 0.03 0.07 0.03 0.07 +inéluctabilité inéluctabilité NOM f s 0.00 0.14 0.00 0.14 +inéluctable inéluctable ADJ s 1.01 5.74 0.97 5.34 +inéluctablement inéluctablement ADV 0.27 1.01 0.27 1.01 +inéluctables inéluctable ADJ p 1.01 5.74 0.04 0.41 +inélégamment inélégamment ADV 0.00 0.07 0.00 0.07 +inélégance inélégance NOM f s 0.14 0.00 0.14 0.00 +inélégant inélégant ADJ m s 0.39 0.14 0.39 0.07 +inélégantes inélégant ADJ f p 0.39 0.14 0.00 0.07 +inénarrable inénarrable ADJ s 0.12 0.95 0.11 0.47 +inénarrables inénarrable ADJ p 0.12 0.95 0.01 0.47 +inupik inupik NOM m s 0.00 0.07 0.00 0.07 +inépuisable inépuisable ADJ s 0.97 9.53 0.68 7.57 +inépuisablement inépuisablement ADV 0.00 0.74 0.00 0.74 +inépuisables inépuisable ADJ p 0.97 9.53 0.28 1.96 +inépuisées inépuisé ADJ f p 0.00 0.14 0.00 0.14 +inéquitable inéquitable ADJ m s 0.04 0.00 0.04 0.00 +inusabilité inusabilité NOM f s 0.00 0.07 0.00 0.07 +inusable inusable ADJ s 0.17 1.96 0.16 1.55 +inusables inusable ADJ p 0.17 1.96 0.01 0.41 +inusité inusité ADJ m s 0.30 1.42 0.22 0.47 +inusitée inusité ADJ f s 0.30 1.42 0.07 0.68 +inusitées inusité ADJ f p 0.30 1.42 0.01 0.20 +inusités inusité ADJ m p 0.30 1.42 0.00 0.07 +inusuelle inusuel ADJ f s 0.00 0.07 0.00 0.07 +inutile inutile ADJ s 72.71 70.34 64.05 53.04 +inutilement inutilement ADV 1.83 4.66 1.83 4.66 +inutiles inutile ADJ p 72.71 70.34 8.66 17.30 +inutilisable inutilisable ADJ s 1.72 2.03 1.14 0.95 +inutilisables inutilisable ADJ p 1.72 2.03 0.58 1.08 +inutilisation inutilisation NOM f s 0.00 0.14 0.00 0.14 +inutilisé inutilisé ADJ m s 0.37 0.81 0.08 0.14 +inutilisée inutilisé ADJ f s 0.37 0.81 0.13 0.27 +inutilisées inutilisé ADJ f p 0.37 0.81 0.09 0.20 +inutilisés inutilisé ADJ m p 0.37 0.81 0.07 0.20 +inutilité inutilité NOM f s 0.56 3.58 0.56 3.51 +inutilités inutilité NOM f p 0.56 3.58 0.00 0.07 +inévaluable inévaluable ADJ s 0.00 0.07 0.00 0.07 +inévitabilité inévitabilité NOM f s 0.04 0.00 0.04 0.00 +inévitable inévitable ADJ s 7.44 16.49 6.96 13.38 +inévitablement inévitablement ADV 1.02 3.51 1.02 3.51 +inévitables inévitable ADJ p 7.44 16.49 0.48 3.11 +invagination invagination NOM f s 0.03 0.00 0.03 0.00 +invaincu invaincu ADJ m s 0.84 0.61 0.50 0.34 +invaincue invaincu ADJ f s 0.84 0.61 0.08 0.14 +invaincues invaincu ADJ f p 0.84 0.61 0.00 0.07 +invaincus invaincu ADJ m p 0.84 0.61 0.26 0.07 +invalidant invalidant ADJ m s 0.04 0.00 0.02 0.00 +invalidante invalidant ADJ f s 0.04 0.00 0.02 0.00 +invalidation invalidation NOM f s 0.02 0.00 0.02 0.00 +invalide invalide ADJ s 1.77 0.81 1.48 0.27 +invalider invalider VER 0.59 0.27 0.10 0.00 inf; +invalides invalide NOM p 2.03 4.39 1.41 3.85 +invalidité invalidité NOM f s 0.99 0.27 0.99 0.20 +invalidités invalidité NOM f p 0.99 0.27 0.00 0.07 +invalidé invalider VER m s 0.59 0.27 0.14 0.14 par:pas; +invalidés invalider VER m p 0.59 0.27 0.00 0.07 par:pas; +invariable invariable ADJ s 0.08 1.89 0.07 1.55 +invariablement invariablement ADV 0.64 4.86 0.64 4.86 +invariables invariable ADJ p 0.08 1.89 0.01 0.34 +invariance invariance NOM f s 0.01 0.00 0.01 0.00 +invasif invasif ADJ m s 0.28 0.00 0.11 0.00 +invasion invasion NOM f s 7.15 11.22 6.96 9.32 +invasions invasion NOM f p 7.15 11.22 0.19 1.89 +invasive invasif ADJ f s 0.28 0.00 0.14 0.00 +invasives invasif ADJ f p 0.28 0.00 0.03 0.00 +invectiva invectiver VER 0.14 1.82 0.00 0.20 ind:pas:3s; +invectivai invectiver VER 0.14 1.82 0.00 0.07 ind:pas:1s; +invectivaient invectiver VER 0.14 1.82 0.00 0.07 ind:imp:3p; +invectivait invectiver VER 0.14 1.82 0.00 0.41 ind:imp:3s; +invectivant invectiver VER 0.14 1.82 0.00 0.34 par:pre; +invective invectiver VER 0.14 1.82 0.12 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +invectivent invectiver VER 0.14 1.82 0.00 0.07 ind:pre:3p; +invectiver invectiver VER 0.14 1.82 0.02 0.47 inf; +invectives invective NOM f p 0.25 2.84 0.24 2.03 +invendable invendable ADJ m s 0.20 0.27 0.19 0.14 +invendables invendable ADJ m p 0.20 0.27 0.01 0.14 +invendu invendu NOM m s 0.47 0.41 0.01 0.00 +invendues invendu ADJ f p 0.17 0.68 0.12 0.20 +invendus invendu NOM m p 0.47 0.41 0.46 0.41 +inventa inventer VER 53.96 69.73 0.65 1.69 ind:pas:3s; +inventai inventer VER 53.96 69.73 0.02 1.22 ind:pas:1s; +inventaient inventer VER 53.96 69.73 0.02 0.81 ind:imp:3p; +inventaire inventaire NOM m s 4.02 7.50 3.86 6.62 +inventaires inventaire NOM m p 4.02 7.50 0.16 0.88 +inventais inventer VER 53.96 69.73 0.43 1.69 ind:imp:1s;ind:imp:2s; +inventait inventer VER 53.96 69.73 0.55 3.85 ind:imp:3s; +inventant inventer VER 53.96 69.73 0.21 1.42 par:pre; +invente inventer VER 53.96 69.73 7.53 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +inventent inventer VER 53.96 69.73 1.68 1.62 ind:pre:3p; +inventer inventer VER 53.96 69.73 11.35 17.43 ind:pre:2p;inf; +inventera inventer VER 53.96 69.73 0.33 0.54 ind:fut:3s; +inventerai inventer VER 53.96 69.73 0.69 0.34 ind:fut:1s; +inventeraient inventer VER 53.96 69.73 0.01 0.07 cnd:pre:3p; +inventerais inventer VER 53.96 69.73 0.35 0.41 cnd:pre:1s;cnd:pre:2s; +inventerait inventer VER 53.96 69.73 0.14 0.68 cnd:pre:3s; +inventeras inventer VER 53.96 69.73 0.14 0.07 ind:fut:2s; +inventerez inventer VER 53.96 69.73 0.04 0.00 ind:fut:2p; +inventeriez inventer VER 53.96 69.73 0.11 0.00 cnd:pre:2p; +inventerions inventer VER 53.96 69.73 0.01 0.00 cnd:pre:1p; +inventerons inventer VER 53.96 69.73 0.04 0.00 ind:fut:1p; +inventeront inventer VER 53.96 69.73 0.07 0.20 ind:fut:3p; +inventes inventer VER 53.96 69.73 2.11 1.08 ind:pre:2s;sub:pre:2s; +inventeur inventeur NOM m s 3.34 2.03 2.91 1.76 +inventeurs inventeur NOM m p 3.34 2.03 0.42 0.27 +inventez inventer VER 53.96 69.73 1.17 0.07 imp:pre:2p;ind:pre:2p; +inventiez inventer VER 53.96 69.73 0.04 0.00 ind:imp:2p; +inventif inventif ADJ m s 0.36 1.28 0.22 0.74 +inventifs inventif ADJ m p 0.36 1.28 0.04 0.14 +invention invention NOM f s 10.37 15.68 7.88 10.81 +inventions invention NOM f p 10.37 15.68 2.49 4.86 +inventive inventif ADJ f s 0.36 1.28 0.10 0.41 +inventivité inventivité NOM f s 0.02 0.07 0.02 0.00 +inventivités inventivité NOM f p 0.02 0.07 0.00 0.07 +inventons inventer VER 53.96 69.73 0.14 0.07 imp:pre:1p;ind:pre:1p; +inventoria inventorier VER 0.23 1.55 0.00 0.07 ind:pas:3s; +inventoriai inventorier VER 0.23 1.55 0.00 0.07 ind:pas:1s; +inventoriaient inventorier VER 0.23 1.55 0.00 0.07 ind:imp:3p; +inventoriait inventorier VER 0.23 1.55 0.00 0.14 ind:imp:3s; +inventorient inventorier VER 0.23 1.55 0.00 0.07 ind:pre:3p; +inventorier inventorier VER 0.23 1.55 0.19 0.74 inf; +inventorié inventorier VER m s 0.23 1.55 0.03 0.20 par:pas; +inventoriée inventorier VER f s 0.23 1.55 0.00 0.07 par:pas; +inventoriées inventorier VER f p 0.23 1.55 0.02 0.14 par:pas; +inventât inventer VER 53.96 69.73 0.00 0.07 sub:imp:3s; +inventèrent inventer VER 53.96 69.73 0.11 0.34 ind:pas:3p; +inventé inventer VER m s 53.96 69.73 23.20 17.97 par:pas; +inventée inventer VER f s 53.96 69.73 1.53 3.58 par:pas; +inventées inventer VER f p 53.96 69.73 0.56 1.62 par:pas; +inventés inventer VER m p 53.96 69.73 0.72 2.23 par:pas; +inversa inverser VER 6.29 7.57 0.00 0.14 ind:pas:3s; +inversaient inverser VER 6.29 7.57 0.00 0.14 ind:imp:3p; +inversait inverser VER 6.29 7.57 0.13 0.20 ind:imp:3s; +inversant inverser VER 6.29 7.57 0.07 0.41 par:pre; +inverse inverse NOM s 6.40 6.22 6.40 6.22 +inversement inversement ADV 0.47 2.64 0.47 2.64 +inversent inverser VER 6.29 7.57 0.13 0.20 ind:pre:3p; +inverser inverser VER 6.29 7.57 1.36 1.01 inf; +inversera inverser VER 6.29 7.57 0.06 0.00 ind:fut:3s; +inverserais inverser VER 6.29 7.57 0.01 0.00 cnd:pre:1s; +inverserait inverser VER 6.29 7.57 0.02 0.00 cnd:pre:3s; +inverses inverser VER 6.29 7.57 0.04 0.00 ind:pre:2s; +inverseur inverseur NOM m s 0.02 0.00 0.02 0.00 +inversez inverser VER 6.29 7.57 0.21 0.07 imp:pre:2p;ind:pre:2p; +inversible inversible ADJ f s 0.00 0.07 0.00 0.07 +inversion inversion NOM f s 0.76 3.65 0.75 3.38 +inversions inversion NOM f p 0.76 3.65 0.01 0.27 +inversons inverser VER 6.29 7.57 0.04 0.00 imp:pre:1p; +inversèrent inverser VER 6.29 7.57 0.00 0.07 ind:pas:3p; +inversé inverser VER m s 6.29 7.57 2.00 1.96 par:pas; +inversée inverser VER f s 6.29 7.57 0.85 1.49 par:pas; +inversées inverser VER f p 6.29 7.57 0.20 0.54 par:pas; +inversés inverser VER m p 6.29 7.57 0.71 0.95 par:pas; +inverti invertir VER m s 0.16 0.00 0.16 0.00 par:pas; +invertis inverti NOM m p 0.56 0.41 0.44 0.34 +invertébré invertébré ADJ m s 0.19 0.27 0.07 0.07 +invertébrée invertébré ADJ f s 0.19 0.27 0.01 0.07 +invertébrés invertébré NOM m p 0.20 0.14 0.19 0.07 +investît investir VER 16.50 9.46 0.01 0.00 sub:imp:3s; +investi investir VER m s 16.50 9.46 5.49 2.91 par:pas; +investie investir VER f s 16.50 9.46 0.15 0.81 par:pas; +investies investir VER f p 16.50 9.46 0.02 0.07 par:pas; +investigateur investigateur NOM m s 0.13 0.00 0.03 0.00 +investigateurs investigateur NOM m p 0.13 0.00 0.07 0.00 +investigation investigation NOM f s 3.26 2.57 1.95 1.08 +investigations investigation NOM f p 3.26 2.57 1.31 1.49 +investigatrice investigateur ADJ f s 0.14 0.27 0.11 0.00 +investigatrices investigateur ADJ f p 0.14 0.27 0.01 0.07 +investiguant investiguer VER 0.03 0.00 0.01 0.00 par:pre; +investiguer investiguer VER 0.03 0.00 0.01 0.00 inf; +investir investir VER 16.50 9.46 5.85 2.36 inf; +investira investir VER 16.50 9.46 0.14 0.00 ind:fut:3s; +investirais investir VER 16.50 9.46 0.07 0.00 cnd:pre:1s; +investirait investir VER 16.50 9.46 0.16 0.00 cnd:pre:3s; +investirent investir VER 16.50 9.46 0.02 0.07 ind:pas:3p; +investirons investir VER 16.50 9.46 0.02 0.00 ind:fut:1p; +investiront investir VER 16.50 9.46 0.17 0.00 ind:fut:3p; +investis investir VER m p 16.50 9.46 1.53 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +investissaient investir VER 16.50 9.46 0.14 0.14 ind:imp:3p; +investissais investir VER 16.50 9.46 0.02 0.14 ind:imp:1s;ind:imp:2s; +investissait investir VER 16.50 9.46 0.05 0.20 ind:imp:3s; +investissant investir VER 16.50 9.46 0.04 0.41 par:pre; +investisse investir VER 16.50 9.46 0.06 0.14 sub:pre:1s;sub:pre:3s; +investissement investissement NOM m s 7.38 2.77 5.05 1.35 +investissements investissement NOM m p 7.38 2.77 2.33 1.42 +investissent investir VER 16.50 9.46 0.29 0.20 ind:pre:3p; +investisseur investisseur NOM m s 2.64 0.07 0.66 0.00 +investisseurs investisseur NOM m p 2.64 0.07 1.98 0.07 +investissez investir VER 16.50 9.46 0.67 0.00 imp:pre:2p;ind:pre:2p; +investissons investir VER 16.50 9.46 0.06 0.00 imp:pre:1p;ind:pre:1p; +investit investir VER 16.50 9.46 1.56 1.22 ind:pre:3s;ind:pas:3s; +investiture investiture NOM f s 0.38 0.47 0.38 0.34 +investitures investiture NOM f p 0.38 0.47 0.00 0.14 +invincibilité invincibilité NOM f s 0.11 0.27 0.11 0.27 +invincible invincible ADJ s 3.60 5.07 2.92 4.59 +invinciblement invinciblement ADV 0.01 1.22 0.01 1.22 +invincibles invincible ADJ p 3.60 5.07 0.68 0.47 +inviolabilité inviolabilité NOM f s 0.13 0.14 0.13 0.14 +inviolable inviolable ADJ s 0.39 1.35 0.26 0.95 +inviolables inviolable ADJ p 0.39 1.35 0.13 0.41 +inviolé inviolé ADJ m s 0.10 0.34 0.04 0.20 +inviolée inviolé ADJ f s 0.10 0.34 0.03 0.00 +inviolées inviolé ADJ f p 0.10 0.34 0.02 0.00 +inviolés inviolé ADJ m p 0.10 0.34 0.01 0.14 +invisibilité invisibilité NOM f s 0.45 0.27 0.45 0.27 +invisible_piston invisible_piston NOM m s 0.00 0.07 0.00 0.07 +invisible invisible ADJ s 16.21 52.36 12.85 36.35 +invisiblement invisiblement ADV 0.01 0.41 0.01 0.41 +invisibles invisible ADJ p 16.21 52.36 3.36 16.01 +invita inviter VER 116.83 82.30 0.45 9.93 ind:pas:3s; +invitai inviter VER 116.83 82.30 0.11 1.49 ind:pas:1s; +invitaient inviter VER 116.83 82.30 0.06 2.36 ind:imp:3p; +invitais inviter VER 116.83 82.30 0.50 1.01 ind:imp:1s;ind:imp:2s; +invitait inviter VER 116.83 82.30 0.90 8.92 ind:imp:3s; +invitant inviter VER 116.83 82.30 0.63 3.72 par:pre; +invitante invitant ADJ f s 0.01 0.68 0.01 0.34 +invitantes invitant ADJ f p 0.01 0.68 0.00 0.14 +invitants invitant ADJ m p 0.01 0.68 0.00 0.07 +invitation invitation NOM f s 18.27 18.24 15.08 14.53 +invitations invitation NOM f p 18.27 18.24 3.18 3.72 +invite inviter VER 116.83 82.30 29.01 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +invitent inviter VER 116.83 82.30 3.12 1.42 ind:pre:3p; +inviter inviter VER 116.83 82.30 22.63 14.05 inf;;inf;;inf;; +invitera inviter VER 116.83 82.30 0.65 0.47 ind:fut:3s; +inviterai inviter VER 116.83 82.30 1.36 0.34 ind:fut:1s; +inviteraient inviter VER 116.83 82.30 0.03 0.14 cnd:pre:3p; +inviterais inviter VER 116.83 82.30 0.80 0.20 cnd:pre:1s;cnd:pre:2s; +inviterait inviter VER 116.83 82.30 0.20 0.54 cnd:pre:3s; +inviteras inviter VER 116.83 82.30 0.19 0.14 ind:fut:2s; +inviterez inviter VER 116.83 82.30 0.17 0.07 ind:fut:2p; +inviteriez inviter VER 116.83 82.30 0.05 0.14 cnd:pre:2p; +inviterions inviter VER 116.83 82.30 0.00 0.07 cnd:pre:1p; +inviterons inviter VER 116.83 82.30 0.07 0.14 ind:fut:1p; +inviteront inviter VER 116.83 82.30 0.02 0.00 ind:fut:3p; +invites inviter VER 116.83 82.30 3.64 0.14 ind:pre:2s;sub:pre:2s; +inviteur inviteur NOM m s 0.00 0.14 0.00 0.07 +inviteurs inviteur NOM m p 0.00 0.14 0.00 0.07 +invitez inviter VER 116.83 82.30 3.09 0.47 imp:pre:2p;ind:pre:2p; +invitiez inviter VER 116.83 82.30 0.24 0.14 ind:imp:2p; +invitions inviter VER 116.83 82.30 0.03 0.20 ind:imp:1p; +invitâmes inviter VER 116.83 82.30 0.00 0.14 ind:pas:1p; +invitons inviter VER 116.83 82.30 0.93 0.20 imp:pre:1p;ind:pre:1p; +invitât inviter VER 116.83 82.30 0.00 0.20 sub:imp:3s; +invitèrent inviter VER 116.83 82.30 0.11 0.74 ind:pas:3p; +invité inviter VER m s 116.83 82.30 28.27 14.05 par:pas; +invitée inviter VER f s 116.83 82.30 12.14 5.20 par:pas; +invitées inviter VER f p 116.83 82.30 0.66 0.74 par:pas; +invités invité NOM m p 41.19 27.16 24.84 18.51 +invivable invivable ADJ s 0.43 1.22 0.43 1.22 +invocation invocation NOM f s 0.69 1.96 0.55 1.28 +invocations invocation NOM f p 0.69 1.96 0.14 0.68 +invocatoire invocatoire ADJ m s 0.00 0.07 0.00 0.07 +involontaire involontaire ADJ s 3.40 6.62 3.10 5.61 +involontairement involontairement ADV 0.57 3.18 0.57 3.18 +involontaires involontaire ADJ p 3.40 6.62 0.30 1.01 +involutif involutif ADJ m s 0.00 0.14 0.00 0.07 +involutifs involutif ADJ m p 0.00 0.14 0.00 0.07 +involution involution NOM f s 0.00 0.07 0.00 0.07 +invoqua invoquer VER 8.13 10.95 0.26 0.61 ind:pas:3s; +invoquai invoquer VER 8.13 10.95 0.00 0.20 ind:pas:1s; +invoquaient invoquer VER 8.13 10.95 0.01 0.34 ind:imp:3p; +invoquais invoquer VER 8.13 10.95 0.00 0.34 ind:imp:1s; +invoquait invoquer VER 8.13 10.95 0.01 1.28 ind:imp:3s; +invoquant invoquer VER 8.13 10.95 0.67 2.09 par:pre; +invoque invoquer VER 8.13 10.95 1.55 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +invoquent invoquer VER 8.13 10.95 0.31 0.27 ind:pre:3p; +invoquer invoquer VER 8.13 10.95 2.23 2.57 inf; +invoquera invoquer VER 8.13 10.95 0.06 0.07 ind:fut:3s; +invoquerai invoquer VER 8.13 10.95 0.04 0.14 ind:fut:1s; +invoquerais invoquer VER 8.13 10.95 0.11 0.07 cnd:pre:1s;cnd:pre:2s; +invoquerait invoquer VER 8.13 10.95 0.02 0.00 cnd:pre:3s; +invoquerez invoquer VER 8.13 10.95 0.00 0.07 ind:fut:2p; +invoquerons invoquer VER 8.13 10.95 0.02 0.00 ind:fut:1p; +invoques invoquer VER 8.13 10.95 0.15 0.14 ind:pre:2s; +invoquez invoquer VER 8.13 10.95 0.35 0.34 imp:pre:2p;ind:pre:2p; +invoquons invoquer VER 8.13 10.95 0.33 0.00 imp:pre:1p;ind:pre:1p; +invoquât invoquer VER 8.13 10.95 0.00 0.07 sub:imp:3s; +invoqué invoquer VER m s 8.13 10.95 1.52 1.22 par:pas; +invoquée invoquer VER f s 8.13 10.95 0.20 0.27 par:pas; +invoquées invoquer VER f p 8.13 10.95 0.12 0.07 par:pas; +invoqués invoquer VER m p 8.13 10.95 0.17 0.14 par:pas; +invraisemblable invraisemblable ADJ s 2.11 9.53 1.62 7.30 +invraisemblablement invraisemblablement ADV 0.00 0.14 0.00 0.14 +invraisemblables invraisemblable ADJ p 2.11 9.53 0.48 2.23 +invraisemblance invraisemblance NOM f s 0.17 1.76 0.14 1.35 +invraisemblances invraisemblance NOM f p 0.17 1.76 0.04 0.41 +invulnérabilité invulnérabilité NOM f s 0.28 0.54 0.28 0.54 +invulnérable invulnérable ADJ s 1.12 3.18 0.90 2.57 +invulnérables invulnérable ADJ p 1.12 3.18 0.22 0.61 +invérifiable invérifiable ADJ s 0.02 0.34 0.01 0.14 +invérifiables invérifiable ADJ f p 0.02 0.34 0.01 0.20 +invétéré invétéré ADJ m s 0.79 1.69 0.65 1.01 +invétérée invétéré ADJ f s 0.79 1.69 0.08 0.34 +invétérées invétéré ADJ f p 0.79 1.69 0.00 0.14 +invétérés invétéré ADJ m p 0.79 1.69 0.06 0.20 +iode iode NOM m s 1.15 3.58 1.15 3.58 +iodle iodler VER 0.07 0.00 0.03 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +iodler iodler VER 0.07 0.00 0.03 0.00 inf; +iodoforme iodoforme NOM m s 0.01 0.07 0.01 0.07 +iodé iodé ADJ m s 0.14 0.20 0.00 0.07 +iodée iodé ADJ f s 0.14 0.20 0.14 0.14 +iodure iodure NOM m s 0.05 0.00 0.05 0.00 +ion ion NOM m s 0.85 0.14 0.37 0.07 +ionien ionien ADJ m s 0.00 0.20 0.00 0.07 +ionienne ionienne ADJ f s 0.01 0.07 0.01 0.07 +ioniennes ioniennes ADJ f s 0.00 0.20 0.00 0.20 +ioniens ionien ADJ m p 0.00 0.20 0.00 0.07 +ionique ionique ADJ s 0.45 0.07 0.35 0.07 +ioniques ionique ADJ p 0.45 0.07 0.10 0.00 +ionisant ionisant ADJ m s 0.05 0.00 0.04 0.00 +ionisante ionisant ADJ f s 0.05 0.00 0.01 0.00 +ionisation ionisation NOM f s 0.23 0.14 0.23 0.14 +ioniser ioniser VER 0.04 0.00 0.02 0.00 inf; +ionisez ioniser VER 0.04 0.00 0.01 0.00 imp:pre:2p; +ionisé ionisé ADJ m s 0.15 0.07 0.05 0.07 +ionisée ionisé ADJ f s 0.15 0.07 0.10 0.00 +ionosphère ionosphère NOM f s 0.20 0.07 0.20 0.07 +ions ion NOM m p 0.85 0.14 0.48 0.07 +iota iota NOM m 0.22 0.34 0.22 0.34 +ipomée ipomée NOM f s 0.00 0.07 0.00 0.07 +ippon ippon NOM m s 0.03 0.00 0.03 0.00 +ipse ipse NOM m s 0.01 0.14 0.01 0.14 +ipso_facto ipso_facto ADV 0.21 0.61 0.21 0.61 +ipéca ipéca NOM m s 0.32 0.20 0.32 0.14 +ipécas ipéca NOM m p 0.32 0.20 0.00 0.07 +ira aller VER 9992.78 2854.93 148.34 28.31 ind:fut:3s; +irai aller VER 9992.78 2854.93 71.96 27.70 ind:fut:1s; +iraient aller VER 9992.78 2854.93 1.65 5.47 cnd:pre:3p; +irais aller VER 9992.78 2854.93 20.14 11.96 cnd:pre:1s;cnd:pre:2s; +irait aller VER 9992.78 2854.93 22.44 26.01 cnd:pre:3s; +irakien irakien ADJ m s 1.12 0.34 0.86 0.07 +irakienne irakienne ADJ f s 0.08 0.00 0.08 0.00 +irakiens irakien NOM m p 0.64 0.07 0.56 0.07 +iranien iranien ADJ m s 0.41 0.41 0.20 0.07 +iranienne iranien ADJ f s 0.41 0.41 0.12 0.07 +iraniennes iranien ADJ f p 0.41 0.41 0.01 0.14 +iraniens iranien NOM m p 0.34 0.47 0.28 0.14 +iraquien iraquien ADJ m s 0.16 0.00 0.09 0.00 +iraquienne iraquien ADJ f s 0.16 0.00 0.07 0.00 +iraquiens iraquien NOM m p 0.11 0.00 0.08 0.00 +iras aller VER 9992.78 2854.93 24.90 6.76 ind:fut:2s; +irascible irascible ADJ s 0.65 1.55 0.52 1.28 +irascibles irascible ADJ m p 0.65 1.55 0.14 0.27 +ire ire NOM f s 0.58 0.81 0.55 0.74 +ires ire NOM f p 0.58 0.81 0.03 0.07 +irez aller VER 9992.78 2854.93 14.29 5.41 ind:fut:2p; +iridescence iridescence NOM f s 0.01 0.00 0.01 0.00 +iridescent iridescent ADJ m s 0.01 0.07 0.01 0.00 +iridescentes iridescent ADJ f p 0.01 0.07 0.00 0.07 +iridium iridium NOM m s 0.18 0.34 0.18 0.34 +iridologie iridologie NOM f s 0.01 0.00 0.01 0.00 +iriez aller VER 9992.78 2854.93 2.02 1.08 cnd:pre:2p; +irions aller VER 9992.78 2854.93 1.10 2.91 cnd:pre:1p; +iris iris NOM m 3.93 6.42 3.93 6.42 +irisaient iriser VER 0.01 2.03 0.00 0.14 ind:imp:3p; +irisait iriser VER 0.01 2.03 0.00 0.20 ind:imp:3s; +irisant iriser VER 0.01 2.03 0.00 0.07 par:pre; +irisation irisation NOM f s 0.00 0.81 0.00 0.47 +irisations irisation NOM f p 0.00 0.81 0.00 0.34 +irise iriser VER 0.01 2.03 0.01 0.14 ind:pre:3s; +irisent iriser VER 0.01 2.03 0.00 0.14 ind:pre:3p; +iriser iriser VER 0.01 2.03 0.00 0.07 inf; +iriserait iriser VER 0.01 2.03 0.00 0.07 cnd:pre:3s; +irish_coffee irish_coffee NOM m s 0.16 0.14 0.16 0.14 +irisé irisé ADJ m s 0.05 1.96 0.00 0.41 +irisée irisé ADJ f s 0.05 1.96 0.00 0.61 +irisées irisé ADJ f p 0.05 1.96 0.03 0.54 +irisés irisé ADJ m p 0.05 1.96 0.02 0.41 +irlandais irlandais ADJ m 4.75 3.78 3.71 2.43 +irlandaise irlandais ADJ f s 4.75 3.78 0.89 1.08 +irlandaises irlandais ADJ f p 4.75 3.78 0.15 0.27 +ironie ironie NOM f s 6.05 24.19 6.00 23.78 +ironies ironie NOM f p 6.05 24.19 0.05 0.41 +ironique ironique ADJ s 3.73 16.28 3.67 13.72 +ironiquement ironiquement ADV 0.95 2.77 0.95 2.77 +ironiques ironique ADJ p 3.73 16.28 0.06 2.57 +ironisa ironiser VER 0.44 2.50 0.00 1.01 ind:pas:3s; +ironisai ironiser VER 0.44 2.50 0.00 0.07 ind:pas:1s; +ironisais ironiser VER 0.44 2.50 0.00 0.14 ind:imp:1s;ind:imp:2s; +ironisait ironiser VER 0.44 2.50 0.00 0.14 ind:imp:3s; +ironise ironiser VER 0.44 2.50 0.01 0.34 imp:pre:2s;ind:pre:3s; +ironisent ironiser VER 0.44 2.50 0.01 0.07 ind:pre:3p; +ironiser ironiser VER 0.44 2.50 0.42 0.47 inf; +ironisme ironisme NOM m s 0.00 0.07 0.00 0.07 +ironiste ironiste NOM s 0.00 0.14 0.00 0.14 +ironisé ironiser VER m s 0.44 2.50 0.00 0.27 par:pas; +irons aller VER 9992.78 2854.93 15.36 9.32 ind:fut:1p; +iront aller VER 9992.78 2854.93 7.43 4.73 ind:fut:3p; +iroquois iroquois NOM m 0.05 0.00 0.05 0.00 +iroquoise iroquois ADJ f s 0.22 0.27 0.17 0.00 +irradia irradier VER 0.65 4.32 0.00 0.14 ind:pas:3s; +irradiaient irradier VER 0.65 4.32 0.00 0.20 ind:imp:3p; +irradiait irradier VER 0.65 4.32 0.03 1.28 ind:imp:3s; +irradiant irradiant ADJ m s 0.11 0.54 0.03 0.20 +irradiante irradiant ADJ f s 0.11 0.54 0.05 0.34 +irradiantes irradiant ADJ f p 0.11 0.54 0.04 0.00 +irradiation irradiation NOM f s 0.27 0.34 0.26 0.20 +irradiations irradiation NOM f p 0.27 0.34 0.01 0.14 +irradie irradier VER 0.65 4.32 0.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +irradier irradier VER 0.65 4.32 0.01 0.68 inf; +irradiera irradier VER 0.65 4.32 0.01 0.00 ind:fut:3s; +irradiez irradier VER 0.65 4.32 0.00 0.07 ind:pre:2p; +irradié irradier VER m s 0.65 4.32 0.27 0.27 par:pas; +irradiée irradier VER f s 0.65 4.32 0.06 0.07 par:pas; +irradiées irradier VER f p 0.65 4.32 0.03 0.00 par:pas; +irradiés irradier VER m p 0.65 4.32 0.10 0.00 par:pas; +irraisonnable irraisonnable ADJ s 0.01 0.07 0.01 0.07 +irraisonné irraisonné ADJ m s 0.07 1.49 0.03 0.27 +irraisonnée irraisonné ADJ f s 0.07 1.49 0.02 1.15 +irraisonnés irraisonné ADJ m p 0.07 1.49 0.01 0.07 +irrationalité irrationalité NOM f s 0.04 0.07 0.04 0.07 +irrationnel irrationnel ADJ m s 1.63 1.15 0.61 0.81 +irrationnelle irrationnel ADJ f s 1.63 1.15 0.77 0.14 +irrationnellement irrationnellement ADV 0.01 0.07 0.01 0.07 +irrationnelles irrationnel ADJ f p 1.63 1.15 0.16 0.14 +irrationnels irrationnel ADJ m p 1.63 1.15 0.10 0.07 +irrattrapable irrattrapable ADJ m s 0.12 0.27 0.12 0.14 +irrattrapables irrattrapable ADJ p 0.12 0.27 0.00 0.14 +irrecevabilité irrecevabilité NOM f s 0.02 0.14 0.02 0.14 +irrecevable irrecevable ADJ s 0.72 0.14 0.61 0.14 +irrecevables irrecevable ADJ p 0.72 0.14 0.12 0.00 +irremplaçable irremplaçable ADJ s 1.23 5.14 1.11 4.26 +irremplaçables irremplaçable ADJ p 1.23 5.14 0.13 0.88 +irreprésentable irreprésentable ADJ s 0.00 0.07 0.00 0.07 +irrespect irrespect NOM m s 0.13 0.68 0.13 0.68 +irrespectueuse irrespectueux ADJ f s 0.71 1.01 0.04 0.27 +irrespectueusement irrespectueusement ADV 0.02 0.07 0.02 0.07 +irrespectueuses irrespectueux ADJ f p 0.71 1.01 0.00 0.07 +irrespectueux irrespectueux ADJ m 0.71 1.01 0.68 0.68 +irrespirable irrespirable ADJ s 0.61 2.57 0.61 2.43 +irrespirables irrespirable ADJ f p 0.61 2.57 0.00 0.14 +irresponsabilité irresponsabilité NOM f s 1.45 1.49 1.45 1.49 +irresponsable irresponsable ADJ s 6.29 2.70 4.99 2.09 +irresponsables irresponsable ADJ p 6.29 2.70 1.30 0.61 +irrigateur irrigateur ADJ m s 0.01 0.00 0.01 0.00 +irrigateurs irrigateur NOM m p 0.00 0.07 0.00 0.07 +irrigation irrigation NOM f s 0.86 1.55 0.86 1.55 +irriguaient irriguer VER 0.50 2.84 0.00 0.14 ind:imp:3p; +irriguait irriguer VER 0.50 2.84 0.00 0.34 ind:imp:3s; +irriguant irriguer VER 0.50 2.84 0.01 0.14 par:pre; +irrigue irriguer VER 0.50 2.84 0.14 0.20 imp:pre:2s;ind:pre:3s; +irriguent irriguer VER 0.50 2.84 0.01 0.07 ind:pre:3p; +irriguer irriguer VER 0.50 2.84 0.17 0.47 inf; +irriguera irriguer VER 0.50 2.84 0.02 0.00 ind:fut:3s; +irrigueraient irriguer VER 0.50 2.84 0.00 0.07 cnd:pre:3p; +irriguerait irriguer VER 0.50 2.84 0.00 0.20 cnd:pre:3s; +irriguons irriguer VER 0.50 2.84 0.00 0.07 imp:pre:1p; +irrigué irriguer VER m s 0.50 2.84 0.08 0.41 par:pas; +irriguée irriguer VER f s 0.50 2.84 0.03 0.47 par:pas; +irriguées irriguer VER f p 0.50 2.84 0.03 0.07 par:pas; +irrigués irriguer VER m p 0.50 2.84 0.01 0.20 par:pas; +irrita irriter VER 6.70 24.93 0.11 1.35 ind:pas:3s; +irritabilité irritabilité NOM f s 0.20 0.07 0.20 0.07 +irritable irritable ADJ s 1.71 1.55 1.56 1.22 +irritables irritable ADJ f p 1.71 1.55 0.15 0.34 +irritai irriter VER 6.70 24.93 0.00 0.20 ind:pas:1s; +irritaient irriter VER 6.70 24.93 0.01 0.68 ind:imp:3p; +irritais irriter VER 6.70 24.93 0.01 0.81 ind:imp:1s; +irritait irriter VER 6.70 24.93 0.44 5.68 ind:imp:3s; +irritant irritant ADJ m s 1.18 4.26 0.80 1.89 +irritante irritant ADJ f s 1.18 4.26 0.17 1.42 +irritantes irritant ADJ f p 1.18 4.26 0.01 0.47 +irritants irritant ADJ m p 1.18 4.26 0.20 0.47 +irritation irritation NOM f s 1.00 9.39 0.80 9.19 +irritations irritation NOM f p 1.00 9.39 0.20 0.20 +irrite irriter VER 6.70 24.93 2.62 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +irritent irriter VER 6.70 24.93 0.20 0.68 ind:pre:3p; +irriter irriter VER 6.70 24.93 0.79 2.36 inf; +irritera irriter VER 6.70 24.93 0.01 0.00 ind:fut:3s; +irriterait irriter VER 6.70 24.93 0.02 0.20 cnd:pre:3s; +irriterons irriter VER 6.70 24.93 0.01 0.00 ind:fut:1p; +irritez irriter VER 6.70 24.93 0.08 0.07 imp:pre:2p;ind:pre:2p; +irritons irriter VER 6.70 24.93 0.00 0.07 ind:pre:1p; +irritât irriter VER 6.70 24.93 0.00 0.14 sub:imp:3s; +irritèrent irriter VER 6.70 24.93 0.00 0.14 ind:pas:3p; +irrité irriter VER m s 6.70 24.93 1.29 5.00 par:pas; +irritée irriter VER f s 6.70 24.93 0.82 3.24 par:pas; +irritées irriter VER f p 6.70 24.93 0.22 0.41 par:pas; +irrités irriter VER m p 6.70 24.93 0.07 0.47 par:pas; +irroration irroration NOM f s 0.00 0.07 0.00 0.07 +irréalisable irréalisable ADJ s 0.51 1.08 0.47 0.88 +irréalisables irréalisable ADJ m p 0.51 1.08 0.03 0.20 +irréalisait irréaliser VER 0.00 0.14 0.00 0.07 ind:imp:3s; +irréalise irréaliser VER 0.00 0.14 0.00 0.07 ind:pre:3s; +irréalisme irréalisme NOM m s 0.00 0.07 0.00 0.07 +irréaliste irréaliste ADJ s 0.46 0.14 0.35 0.14 +irréalistes irréaliste ADJ p 0.46 0.14 0.10 0.00 +irréalisé irréalisé ADJ m s 0.00 0.14 0.00 0.07 +irréalisés irréalisé ADJ m p 0.00 0.14 0.00 0.07 +irréalité irréalité NOM f s 0.14 3.51 0.14 3.51 +irréconciliable irréconciliable ADJ s 0.32 0.20 0.28 0.14 +irréconciliables irréconciliable ADJ f p 0.32 0.20 0.04 0.07 +irrécupérable irrécupérable ADJ s 0.98 2.03 0.81 1.42 +irrécupérables irrécupérable ADJ p 0.98 2.03 0.18 0.61 +irrécusable irrécusable ADJ s 0.02 1.01 0.02 0.81 +irrécusables irrécusable ADJ m p 0.02 1.01 0.00 0.20 +irréductible irréductible ADJ s 0.29 2.64 0.00 1.49 +irréductiblement irréductiblement ADV 0.01 0.14 0.01 0.14 +irréductibles irréductible ADJ p 0.29 2.64 0.29 1.15 +irréel irréel ADJ m s 2.84 12.43 1.87 5.27 +irréelle irréel ADJ f s 2.84 12.43 0.86 4.53 +irréellement irréellement ADV 0.00 0.20 0.00 0.20 +irréelles irréel ADJ f p 2.84 12.43 0.07 1.15 +irréels irréel ADJ m p 2.84 12.43 0.04 1.49 +irréfléchi irréfléchi ADJ m s 0.92 0.54 0.40 0.14 +irréfléchie irréfléchi ADJ f s 0.92 0.54 0.34 0.41 +irréfléchis irréfléchi ADJ m p 0.92 0.54 0.18 0.00 +irréfragable irréfragable ADJ s 0.07 0.20 0.07 0.20 +irréfutable irréfutable ADJ s 1.58 2.77 0.97 2.09 +irréfutablement irréfutablement ADV 0.03 0.20 0.03 0.20 +irréfutables irréfutable ADJ p 1.58 2.77 0.60 0.68 +irrégularité irrégularité NOM f s 0.96 1.55 0.54 0.74 +irrégularités irrégularité NOM f p 0.96 1.55 0.42 0.81 +irrégulier irrégulier ADJ m s 2.70 7.64 1.44 1.82 +irréguliers irrégulier ADJ m p 2.70 7.64 0.38 2.09 +irrégulière irrégulier ADJ f s 2.70 7.64 0.59 2.16 +irrégulièrement irrégulièrement ADV 0.03 1.76 0.03 1.76 +irrégulières irrégulier ADJ f p 2.70 7.64 0.29 1.55 +irréligieuse irréligieux ADJ f s 0.04 0.07 0.01 0.00 +irréligieux irréligieux ADJ m s 0.04 0.07 0.03 0.07 +irréligiosité irréligiosité NOM f s 0.00 0.07 0.00 0.07 +irrémissible irrémissible ADJ s 0.16 0.27 0.16 0.27 +irrémédiable irrémédiable ADJ s 0.57 5.34 0.52 5.07 +irrémédiablement irrémédiablement ADV 1.12 4.19 1.12 4.19 +irrémédiables irrémédiable ADJ p 0.57 5.34 0.06 0.27 +irréparable irréparable ADJ s 1.73 4.39 1.33 3.58 +irréparablement irréparablement ADV 0.00 0.14 0.00 0.14 +irréparables irréparable ADJ p 1.73 4.39 0.40 0.81 +irrépressible irrépressible ADJ s 0.95 3.99 0.79 3.24 +irrépressibles irrépressible ADJ p 0.95 3.99 0.16 0.74 +irréprochable irréprochable ADJ s 2.38 4.46 1.82 3.38 +irréprochablement irréprochablement ADV 0.00 0.20 0.00 0.20 +irréprochables irréprochable ADJ p 2.38 4.46 0.56 1.08 +irruption irruption NOM f s 2.82 11.69 2.79 11.35 +irruptions irruption NOM f p 2.82 11.69 0.03 0.34 +irrésistible irrésistible ADJ s 4.67 15.34 4.33 13.78 +irrésistiblement irrésistiblement ADV 0.14 4.66 0.14 4.66 +irrésistibles irrésistible ADJ p 4.67 15.34 0.33 1.55 +irrésolu irrésolu ADJ m s 0.33 0.68 0.04 0.47 +irrésolue irrésolu ADJ f s 0.33 0.68 0.17 0.00 +irrésolues irrésolu ADJ f p 0.33 0.68 0.07 0.07 +irrésolus irrésolu ADJ m p 0.33 0.68 0.05 0.14 +irrésolution irrésolution NOM f s 0.01 0.20 0.01 0.20 +irrétrécissable irrétrécissable ADJ s 0.01 0.00 0.01 0.00 +irréversibilité irréversibilité NOM f s 0.00 0.27 0.00 0.27 +irréversible irréversible ADJ s 1.92 2.43 1.33 1.96 +irréversiblement irréversiblement ADV 0.15 0.34 0.15 0.34 +irréversibles irréversible ADJ p 1.92 2.43 0.59 0.47 +irrévocabilité irrévocabilité NOM f s 0.01 0.00 0.01 0.00 +irrévocable irrévocable ADJ s 0.82 0.81 0.68 0.68 +irrévocablement irrévocablement ADV 0.21 0.47 0.21 0.47 +irrévocables irrévocable ADJ p 0.82 0.81 0.14 0.14 +irrévérence irrévérence NOM f s 0.30 0.20 0.30 0.20 +irrévérencieuse irrévérencieux ADJ f s 0.16 0.27 0.10 0.07 +irrévérencieusement irrévérencieusement ADV 0.00 0.14 0.00 0.14 +irrévérencieuses irrévérencieux ADJ f p 0.16 0.27 0.00 0.14 +irrévérencieux irrévérencieux ADJ m s 0.16 0.27 0.06 0.07 +isabelle isabelle ADJ 1.85 0.47 1.85 0.47 +isard isard NOM m s 0.00 0.54 0.00 0.34 +isards isard NOM m p 0.00 0.54 0.00 0.20 +isatis isatis NOM m 0.00 0.07 0.00 0.07 +isba isba NOM f s 0.40 5.34 0.40 4.05 +isbas isba NOM f p 0.40 5.34 0.00 1.28 +ischion ischion NOM m s 0.01 0.14 0.01 0.14 +ischémie ischémie NOM f s 0.23 0.00 0.23 0.00 +ischémique ischémique ADJ s 0.13 0.00 0.13 0.00 +islam islam NOM m s 2.84 2.30 2.84 2.30 +islamique islamique ADJ s 1.49 0.54 1.30 0.47 +islamiques islamique ADJ p 1.49 0.54 0.20 0.07 +islamisants islamisant ADJ m p 0.00 0.07 0.00 0.07 +islamiser islamiser VER 0.01 0.07 0.01 0.00 inf; +islamisme islamisme NOM m s 0.01 0.07 0.01 0.07 +islamiste islamiste ADJ s 0.19 0.00 0.15 0.00 +islamistes islamiste NOM p 0.09 0.14 0.09 0.14 +islamisée islamisé ADJ f s 0.00 0.07 0.00 0.07 +islamisées islamiser VER f p 0.01 0.07 0.00 0.07 par:pas; +islandais islandais ADJ m s 0.44 0.81 0.29 0.34 +islandaise islandais ADJ f s 0.44 0.81 0.15 0.47 +ismaïliens ismaïlien NOM m p 0.00 0.07 0.00 0.07 +ismaélien ismaélien NOM m s 0.01 0.07 0.01 0.00 +ismaéliens ismaélien NOM m p 0.01 0.07 0.00 0.07 +ismaélite ismaélite ADJ m s 0.01 0.00 0.01 0.00 +isme isme NOM m s 0.34 0.00 0.34 0.00 +isochronisme isochronisme NOM m s 0.01 0.00 0.01 0.00 +isocèle isocèle ADJ s 0.05 0.14 0.05 0.14 +isola isoler VER 14.10 23.45 0.04 1.28 ind:pas:3s; +isolables isolable ADJ m p 0.00 0.07 0.00 0.07 +isolai isoler VER 14.10 23.45 0.00 0.14 ind:pas:1s; +isolaient isoler VER 14.10 23.45 0.02 0.47 ind:imp:3p; +isolais isoler VER 14.10 23.45 0.01 0.14 ind:imp:1s;ind:imp:2s; +isolait isoler VER 14.10 23.45 0.05 2.57 ind:imp:3s; +isolant isolant NOM m s 0.45 0.14 0.45 0.14 +isolante isolant ADJ f s 0.27 0.14 0.13 0.07 +isolateur isolateur NOM m s 0.00 0.14 0.00 0.07 +isolateurs isolateur ADJ m p 0.01 0.07 0.01 0.00 +isolation isolation NOM f s 1.02 0.34 1.02 0.20 +isolationnisme isolationnisme NOM m s 0.05 0.20 0.05 0.20 +isolationniste isolationniste ADJ f s 0.02 0.07 0.02 0.07 +isolations isolation NOM f p 1.02 0.34 0.00 0.14 +isole isoler VER 14.10 23.45 1.36 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +isolement isolement NOM m s 5.63 7.97 5.63 7.91 +isolements isolement NOM m p 5.63 7.97 0.00 0.07 +isolent isoler VER 14.10 23.45 0.46 0.47 ind:pre:3p; +isoler isoler VER 14.10 23.45 4.62 5.74 inf; +isolera isoler VER 14.10 23.45 0.03 0.00 ind:fut:3s; +isoleraient isoler VER 14.10 23.45 0.00 0.14 cnd:pre:3p; +isolerait isoler VER 14.10 23.45 0.01 0.27 cnd:pre:3s; +isoleront isoler VER 14.10 23.45 0.02 0.00 ind:fut:3p; +isolez isoler VER 14.10 23.45 0.65 0.00 imp:pre:2p;ind:pre:2p; +isoliez isoler VER 14.10 23.45 0.00 0.07 ind:imp:2p; +isolions isoler VER 14.10 23.45 0.03 0.00 ind:imp:1p; +isoloir isoloir NOM m s 0.75 0.14 0.58 0.14 +isoloirs isoloir NOM m p 0.75 0.14 0.16 0.00 +isolèrent isoler VER 14.10 23.45 0.00 0.20 ind:pas:3p; +isolé isolé ADJ m s 8.17 14.80 4.08 4.46 +isolée isolé ADJ f s 8.17 14.80 1.98 4.12 +isolées isoler VER f p 14.10 23.45 0.35 1.01 par:pas; +isolément isolément ADV 0.14 1.28 0.14 1.28 +isolés isolé ADJ m p 8.17 14.80 1.79 4.66 +isomère isomère ADJ f s 0.25 0.00 0.25 0.00 +isométrique isométrique ADJ f s 0.02 0.00 0.02 0.00 +isoniazide isoniazide NOM m s 0.01 0.00 0.01 0.00 +isorel isorel NOM m s 0.00 0.14 0.00 0.14 +isotherme isotherme ADJ m s 0.11 0.00 0.11 0.00 +isothermique isothermique ADJ f s 0.01 0.00 0.01 0.00 +isotonique isotonique ADJ f s 0.10 0.00 0.10 0.00 +isotope isotope NOM m s 0.64 0.00 0.37 0.00 +isotopes isotope NOM m p 0.64 0.00 0.26 0.00 +isotopique isotopique ADJ f s 0.04 0.00 0.04 0.00 +israélien israélien ADJ m s 5.63 0.54 2.22 0.47 +israélienne israélien ADJ f s 5.63 0.54 1.54 0.07 +israéliennes israélien ADJ f p 5.63 0.54 0.15 0.00 +israéliens israélien NOM m p 4.49 1.08 4.00 0.74 +israélite israélite ADJ s 0.70 0.81 0.57 0.41 +israélites israélite NOM p 0.41 0.68 0.39 0.54 +israélo_arabe israélo_arabe ADJ f s 0.01 0.00 0.01 0.00 +israélo_syrien israélo_syrien ADJ f s 0.14 0.00 0.14 0.00 +issu issu ADJ m s 5.24 8.51 2.10 3.58 +issue issue NOM f s 16.52 22.70 13.70 19.26 +issues issue NOM f p 16.52 22.70 2.82 3.45 +issus issu ADJ m p 5.24 8.51 1.29 2.16 +isthme isthme NOM m s 0.19 0.61 0.19 0.54 +isthmes isthme NOM m p 0.19 0.61 0.00 0.07 +isthmique isthmique ADJ f s 0.01 0.00 0.01 0.00 +italianisme italianisme NOM m s 0.00 0.14 0.00 0.14 +italiano italiano NOM m s 0.24 0.07 0.24 0.07 +italien italien ADJ m s 26.66 35.74 13.01 13.51 +italienne italien ADJ f s 26.66 35.74 7.56 11.62 +italiennes italien ADJ f p 26.66 35.74 1.54 4.05 +italiens italien NOM m p 23.24 27.57 9.07 9.73 +italique italique ADJ m s 0.14 0.68 0.12 0.07 +italiques italique ADJ f p 0.14 0.68 0.02 0.61 +italo_allemand italo_allemand ADJ f s 0.00 0.20 0.00 0.07 +italo_allemand italo_allemand ADJ f p 0.00 0.20 0.00 0.14 +italo_américain italo_américain ADJ m s 0.20 0.00 0.15 0.00 +italo_américain italo_américain ADJ f s 0.20 0.00 0.04 0.00 +italo_brésilien italo_brésilien ADJ m s 0.00 0.07 0.00 0.07 +italo_français italo_français ADJ m 0.00 0.14 0.00 0.07 +italo_français italo_français ADJ f p 0.00 0.14 0.00 0.07 +italo_irlandais italo_irlandais ADJ m 0.01 0.00 0.01 0.00 +italo_polonais italo_polonais ADJ m 0.00 0.07 0.00 0.07 +italo_égyptien italo_égyptien ADJ m s 0.00 0.07 0.00 0.07 +ite_missa_est ite_missa_est NOM m 0.00 0.14 0.00 0.14 +item item NOM m s 0.09 1.49 0.09 1.49 +ithos ithos NOM m 0.00 0.07 0.00 0.07 +ithyphallique ithyphallique ADJ m s 0.00 0.14 0.00 0.14 +itinéraire itinéraire NOM m s 4.18 10.47 3.25 8.45 +itinéraires itinéraire NOM m p 4.18 10.47 0.93 2.03 +itinérant itinérant ADJ m s 0.51 0.74 0.39 0.20 +itinérante itinérant ADJ f s 0.51 0.74 0.06 0.27 +itinérantes itinérant ADJ f p 0.51 0.74 0.01 0.07 +itinérants itinérant NOM m p 0.20 0.00 0.20 0.00 +itou itou ADV 0.30 1.82 0.30 1.82 +iules iule NOM m p 0.00 0.07 0.00 0.07 +ive ive NOM f s 0.81 0.68 0.01 0.68 +ives ive NOM f p 0.81 0.68 0.81 0.00 +ivoire ivoire NOM m s 1.98 8.38 1.96 7.84 +ivoires ivoire NOM m p 1.98 8.38 0.02 0.54 +ivoirien ivoirien ADJ m s 0.00 0.14 0.00 0.14 +ivoirienne ivoirienne NOM f s 0.00 0.07 0.00 0.07 +ivoirin ivoirin ADJ m s 0.00 0.74 0.00 0.68 +ivoirine ivoirin NOM f s 0.00 0.41 0.00 0.27 +ivoirines ivoirin NOM f p 0.00 0.41 0.00 0.14 +ivoirins ivoirin ADJ m p 0.00 0.74 0.00 0.07 +ivraie ivraie NOM f s 0.21 0.68 0.21 0.68 +ivre ivre ADJ s 18.32 27.70 16.59 21.76 +ivres ivre ADJ p 18.32 27.70 1.72 5.95 +ivresse ivresse NOM f s 3.56 18.11 3.29 17.50 +ivresses ivresse NOM f p 3.56 18.11 0.27 0.61 +ivrognait ivrogner VER 0.00 0.20 0.00 0.07 ind:imp:3s; +ivrognasse ivrogner VER 0.00 0.20 0.00 0.07 sub:imp:1s; +ivrogne ivrogne NOM s 10.60 13.92 7.81 8.72 +ivrogner ivrogner VER 0.00 0.20 0.00 0.07 inf; +ivrognerie ivrognerie NOM f s 0.21 0.88 0.21 0.88 +ivrognes ivrogne NOM p 10.60 13.92 2.79 5.20 +ivrognesse ivrognesse NOM f s 0.01 0.07 0.01 0.07 +ixe ixer VER 0.00 0.34 0.00 0.34 ind:pre:3s; +ixième ixième ADJ f s 0.00 0.07 0.00 0.07 +j j PRO:per s 3.16 0.88 3.16 0.88 +jaïnistes jaïniste NOM p 0.00 0.07 0.00 0.07 +jabadao jabadao NOM m s 0.00 0.20 0.00 0.20 +jabot jabot NOM m s 0.16 2.16 0.15 1.89 +jaboter jaboter VER 0.00 0.07 0.00 0.07 inf; +jabots jabot NOM m p 0.16 2.16 0.01 0.27 +jacarandas jacaranda NOM m p 0.00 0.20 0.00 0.20 +jacassaient jacasser VER 1.58 2.09 0.01 0.47 ind:imp:3p; +jacassais jacasser VER 1.58 2.09 0.01 0.00 ind:imp:1s; +jacassait jacasser VER 1.58 2.09 0.04 0.20 ind:imp:3s; +jacassant jacasser VER 1.58 2.09 0.03 0.41 par:pre; +jacassante jacassant ADJ f s 0.00 0.61 0.00 0.14 +jacassantes jacassant ADJ f p 0.00 0.61 0.00 0.27 +jacassants jacassant ADJ m p 0.00 0.61 0.00 0.07 +jacasse jacasser VER 1.58 2.09 0.33 0.20 ind:pre:1s;ind:pre:3s; +jacassement jacassement NOM m s 0.06 0.81 0.03 0.47 +jacassements jacassement NOM m p 0.06 0.81 0.04 0.34 +jacassent jacasser VER 1.58 2.09 0.13 0.07 ind:pre:3p; +jacasser jacasser VER 1.58 2.09 0.91 0.61 inf; +jacasseraient jacasser VER 1.58 2.09 0.00 0.07 cnd:pre:3p; +jacasserie jacasserie NOM f s 0.04 0.34 0.00 0.07 +jacasseries jacasserie NOM f p 0.04 0.34 0.04 0.27 +jacasses jacasser VER 1.58 2.09 0.05 0.00 ind:pre:2s; +jacasseur jacasseur NOM m s 0.04 0.07 0.03 0.00 +jacasseurs jacasseur NOM m p 0.04 0.07 0.00 0.07 +jacasseuse jacasseur NOM f s 0.04 0.07 0.01 0.00 +jacassez jacasser VER 1.58 2.09 0.04 0.00 imp:pre:2p;ind:pre:2p; +jacassiers jacassier NOM m p 0.00 0.20 0.00 0.07 +jacassiez jacasser VER 1.58 2.09 0.00 0.07 ind:imp:2p; +jacassière jacassier NOM f s 0.00 0.20 0.00 0.14 +jacassé jacasser VER m s 1.58 2.09 0.03 0.00 par:pas; +jachère jachère NOM f s 0.12 0.88 0.12 0.74 +jachères jachère NOM f p 0.12 0.88 0.00 0.14 +jacinthe jacinthe NOM f s 0.15 1.28 0.01 0.54 +jacinthes jacinthe NOM f p 0.15 1.28 0.14 0.74 +jack jack NOM m s 2.26 0.07 1.86 0.07 +jacket jacket NOM f s 0.23 0.14 0.04 0.07 +jackets jacket NOM f p 0.23 0.14 0.19 0.07 +jackpot jackpot NOM m s 1.96 0.27 1.96 0.27 +jacks jack NOM m p 2.26 0.07 0.40 0.00 +jacob jacob NOM m s 0.09 0.20 0.09 0.20 +jacobin jacobin ADJ m s 0.11 0.14 0.10 0.00 +jacobine jacobin ADJ f s 0.11 0.14 0.00 0.14 +jacobins jacobin ADJ m p 0.11 0.14 0.01 0.00 +jacobite jacobite ADJ m s 0.07 0.20 0.05 0.20 +jacobites jacobite NOM p 0.18 0.14 0.14 0.14 +jacobées jacobée NOM f p 0.00 0.07 0.00 0.07 +jacot jacot NOM m s 0.00 0.41 0.00 0.41 +jacquard jacquard NOM m s 0.11 1.28 0.11 1.28 +jacqueline jacqueline NOM f s 0.01 0.00 0.01 0.00 +jacquemart jacquemart NOM m s 0.00 0.20 0.00 0.07 +jacquemarts jacquemart NOM m p 0.00 0.20 0.00 0.14 +jacqueries jacquerie NOM f p 0.00 0.14 0.00 0.14 +jacques jacques NOM m 3.12 4.73 3.12 4.73 +jacquet jacquet NOM m s 0.25 2.57 0.25 2.57 +jacquier jacquier NOM m s 0.00 0.68 0.00 0.68 +jacquot jacquot NOM m s 0.01 0.00 0.01 0.00 +jactais jacter VER 0.36 9.53 0.00 0.07 ind:imp:1s; +jactait jacter VER 0.36 9.53 0.00 1.01 ind:imp:3s; +jactance jactance NOM f s 0.40 3.85 0.40 3.85 +jactancier jactancier ADJ m s 0.00 0.07 0.00 0.07 +jactant jacter VER 0.36 9.53 0.00 0.14 par:pre; +jacte jacter VER 0.36 9.53 0.17 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jactent jacter VER 0.36 9.53 0.00 0.34 ind:pre:3p; +jacter jacter VER 0.36 9.53 0.14 3.92 inf; +jacteraient jacter VER 0.36 9.53 0.00 0.07 cnd:pre:3p; +jacterais jacter VER 0.36 9.53 0.01 0.00 cnd:pre:2s; +jactes jacter VER 0.36 9.53 0.01 0.20 ind:pre:2s; +jacteur jacteur NOM m s 0.00 0.14 0.00 0.14 +jactez jacter VER 0.36 9.53 0.01 0.14 imp:pre:2p;ind:pre:2p; +jactions jacter VER 0.36 9.53 0.00 0.07 ind:imp:1p; +jacté jacter VER m s 0.36 9.53 0.02 1.01 par:pas; +jaculatoire jaculatoire ADJ f s 0.00 0.07 0.00 0.07 +jacuzzi jacuzzi NOM m s 3.46 0.14 3.32 0.07 +jacuzzis jacuzzi NOM m p 3.46 0.14 0.14 0.07 +jade jade NOM m s 0.66 3.51 0.63 3.38 +jades jade NOM m p 0.66 3.51 0.03 0.14 +jadis jadis ADV 11.55 52.30 11.55 52.30 +jaffa jaffer VER 5.41 0.20 0.79 0.00 ind:pas:3s; +jaffas jaffer VER 5.41 0.20 4.57 0.00 ind:pas:2s; +jaffe jaffe NOM f s 0.17 0.74 0.17 0.74 +jaffer jaffer VER 5.41 0.20 0.05 0.20 inf; +jaguar jaguar NOM m s 0.91 0.61 0.65 0.41 +jaguarondi jaguarondi NOM m s 0.01 0.00 0.01 0.00 +jaguars jaguar NOM m p 0.91 0.61 0.27 0.20 +jaillît jaillir VER 5.79 43.24 0.00 0.07 sub:imp:3s; +jailli jaillir VER m s 5.79 43.24 0.69 5.47 par:pas; +jaillie jaillir VER f s 5.79 43.24 0.05 1.01 par:pas; +jaillies jaillir VER f p 5.79 43.24 0.00 0.68 par:pas; +jaillir jaillir VER 5.79 43.24 2.03 9.73 inf; +jaillira jaillir VER 5.79 43.24 0.34 0.27 ind:fut:3s; +jailliraient jaillir VER 5.79 43.24 0.00 0.07 cnd:pre:3p; +jaillirait jaillir VER 5.79 43.24 0.01 0.27 cnd:pre:3s; +jaillirent jaillir VER 5.79 43.24 0.06 1.42 ind:pas:3p; +jailliront jaillir VER 5.79 43.24 0.03 0.07 ind:fut:3p; +jaillis jaillir VER m p 5.79 43.24 0.15 1.28 ind:pre:1s;ind:pre:2s;par:pas; +jaillissaient jaillir VER 5.79 43.24 0.07 2.57 ind:imp:3p; +jaillissait jaillir VER 5.79 43.24 0.17 3.85 ind:imp:3s; +jaillissant jaillir VER 5.79 43.24 0.17 2.03 par:pre; +jaillissante jaillissant ADJ f s 0.02 1.69 0.01 0.74 +jaillissantes jaillissant ADJ f p 0.02 1.69 0.01 0.14 +jaillissants jaillissant ADJ m p 0.02 1.69 0.00 0.07 +jaillisse jaillir VER 5.79 43.24 0.08 0.41 sub:pre:3s; +jaillissement jaillissement NOM m s 0.25 1.82 0.25 1.49 +jaillissements jaillissement NOM m p 0.25 1.82 0.00 0.34 +jaillissent jaillir VER 5.79 43.24 0.53 3.99 ind:pre:3p; +jaillit jaillir VER 5.79 43.24 1.43 10.07 ind:pre:3s;ind:pas:3s; +jais jais NOM m 0.43 6.82 0.43 6.82 +jaja jaja NOM m s 0.20 0.61 0.20 0.61 +jalmince jalmince ADJ s 0.00 1.22 0.00 0.95 +jalminces jalmince ADJ p 0.00 1.22 0.00 0.27 +jalon jalon NOM m s 0.17 2.70 0.03 1.08 +jalonnaient jalonner VER 0.12 5.00 0.01 1.08 ind:imp:3p; +jalonnais jalonner VER 0.12 5.00 0.00 0.07 ind:imp:1s; +jalonnait jalonner VER 0.12 5.00 0.00 0.20 ind:imp:3s; +jalonnant jalonner VER 0.12 5.00 0.02 0.27 par:pre; +jalonne jalonner VER 0.12 5.00 0.01 0.07 ind:pre:1s;ind:pre:3s; +jalonnent jalonner VER 0.12 5.00 0.04 1.28 ind:pre:3p; +jalonner jalonner VER 0.12 5.00 0.00 0.20 inf; +jalonné jalonner VER m s 0.12 5.00 0.02 0.61 par:pas; +jalonnée jalonner VER f s 0.12 5.00 0.02 0.95 par:pas; +jalonnés jalonner VER m p 0.12 5.00 0.00 0.27 par:pas; +jalons jalon NOM m p 0.17 2.70 0.14 1.62 +jalousaient jalouser VER 0.93 2.09 0.02 0.20 ind:imp:3p; +jalousais jalouser VER 0.93 2.09 0.00 0.27 ind:imp:1s; +jalousait jalouser VER 0.93 2.09 0.01 0.54 ind:imp:3s; +jalousant jalouser VER 0.93 2.09 0.03 0.07 par:pre; +jalouse jalouse ADJ f s 14.80 9.05 14.20 7.84 +jalousement jalousement ADV 0.95 2.50 0.95 2.50 +jalousent jalouser VER 0.93 2.09 0.14 0.20 ind:pre:3p; +jalouser jalouser VER 0.93 2.09 0.01 0.20 inf; +jalouserais jalouser VER 0.93 2.09 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +jalouses jalouse ADJ f p 14.80 9.05 0.60 1.22 +jalousie jalousie NOM f s 13.67 25.20 13.20 22.09 +jalousies jalousie NOM f p 13.67 25.20 0.47 3.11 +jalousé jalouser VER m s 0.93 2.09 0.04 0.14 par:pas; +jalousée jalouser VER f s 0.93 2.09 0.00 0.07 par:pas; +jaloux jaloux ADJ m 29.87 15.14 29.87 15.14 +jam_session jam_session NOM f s 0.16 0.00 0.14 0.00 +jam_session jam_session NOM f p 0.16 0.00 0.01 0.00 +jam jam NOM f s 0.05 0.07 0.05 0.07 +jamaïcain jamaïcain ADJ m s 0.27 0.20 0.14 0.20 +jamaïcaine jamaïcain ADJ f s 0.27 0.20 0.10 0.00 +jamaïcains jamaïcain NOM m p 0.19 0.00 0.09 0.00 +jamaïquain jamaïquain ADJ m s 0.05 0.07 0.05 0.00 +jamaïquains jamaïquain NOM m p 0.04 0.00 0.02 0.00 +jamais_vu jamais_vu NOM m 0.00 0.07 0.00 0.07 +jamais jamais ADV 1360.22 1122.97 1360.22 1122.97 +jambage jambage NOM m s 0.02 1.08 0.01 0.20 +jambages jambage NOM m p 0.02 1.08 0.01 0.88 +jambart jambart NOM m s 0.00 0.07 0.00 0.07 +jambe jambe NOM f s 113.80 220.95 46.31 49.93 +jambes jambe NOM f p 113.80 220.95 67.49 171.01 +jambier jambier NOM m s 0.01 0.00 0.01 0.00 +jambière jambière NOM f s 0.26 0.61 0.02 0.00 +jambières jambière NOM f p 0.26 0.61 0.23 0.61 +jambon jambon NOM m s 9.43 13.24 8.94 11.01 +jambonneau jambonneau NOM m s 0.04 1.01 0.00 0.68 +jambonneaux jambonneau NOM m p 0.04 1.01 0.04 0.34 +jambons jambon NOM m p 9.43 13.24 0.48 2.23 +jamboree jamboree NOM m s 0.09 0.07 0.09 0.07 +janissaire janissaire NOM m s 0.00 6.42 0.00 0.68 +janissaires janissaire NOM m p 0.00 6.42 0.00 5.74 +jans jan NOM m p 0.11 0.61 0.10 0.61 +jansénisme jansénisme NOM m s 0.00 0.54 0.00 0.54 +janséniste janséniste ADJ s 0.00 0.95 0.00 0.88 +jansénistes janséniste NOM p 0.00 0.74 0.00 0.27 +jante jante NOM f s 1.22 0.68 0.22 0.47 +jantes jante NOM f p 1.22 0.68 0.99 0.20 +janvier janvier NOM m 8.34 30.61 8.34 30.61 +jap jap NOM s 2.26 0.20 0.23 0.14 +japon japon NOM m s 0.20 0.27 0.20 0.20 +japonais japonais NOM m 13.23 12.64 10.99 11.49 +japonaise japonais ADJ f s 11.90 14.66 3.20 3.99 +japonaiserie japonaiserie NOM f s 0.00 0.07 0.00 0.07 +japonaises japonais ADJ f p 11.90 14.66 1.00 1.49 +japonerie japonerie NOM f s 0.00 0.14 0.00 0.07 +japoneries japonerie NOM f p 0.00 0.14 0.00 0.07 +japonisants japonisant NOM m p 0.00 0.07 0.00 0.07 +japoniser japoniser VER 0.01 0.00 0.01 0.00 inf; +japons japon NOM m p 0.20 0.27 0.00 0.07 +jappa japper VER 0.48 2.64 0.00 0.20 ind:pas:3s; +jappaient japper VER 0.48 2.64 0.00 0.07 ind:imp:3p; +jappait japper VER 0.48 2.64 0.02 0.34 ind:imp:3s; +jappant japper VER 0.48 2.64 0.01 0.34 par:pre; +jappe japper VER 0.48 2.64 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jappement jappement NOM m s 0.07 2.03 0.04 0.88 +jappements jappement NOM m p 0.07 2.03 0.03 1.15 +jappent japper VER 0.48 2.64 0.00 0.14 ind:pre:3p; +japper japper VER 0.48 2.64 0.11 0.61 inf; +jappeur jappeur NOM m s 0.01 0.07 0.01 0.07 +jappèrent japper VER 0.48 2.64 0.00 0.07 ind:pas:3p; +jappé japper VER m s 0.48 2.64 0.00 0.27 par:pas; +japs jap NOM p 2.26 0.20 2.04 0.07 +jaquelin jaquelin NOM m s 0.00 0.20 0.00 0.20 +jaquemart jaquemart NOM m s 0.01 0.07 0.01 0.00 +jaquemarts jaquemart NOM m p 0.01 0.07 0.00 0.07 +jaquet jaquet NOM m s 0.00 0.14 0.00 0.14 +jaquette jaquette NOM f s 1.34 2.91 1.30 2.57 +jaquettes jaquette NOM f p 1.34 2.91 0.04 0.34 +jar jar NOM m s 0.12 0.07 0.12 0.07 +jardin jardin NOM m s 60.21 185.81 54.01 148.72 +jardinage jardinage NOM m s 1.65 2.03 1.65 2.03 +jardinait jardiner VER 1.01 0.68 0.01 0.14 ind:imp:3s; +jardinant jardiner VER 1.01 0.68 0.02 0.07 par:pre; +jardine jardiner VER 1.01 0.68 0.62 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jardinent jardiner VER 1.01 0.68 0.01 0.07 ind:pre:3p; +jardiner jardiner VER 1.01 0.68 0.31 0.27 inf; +jardinerai jardiner VER 1.01 0.68 0.01 0.00 ind:fut:1s; +jardineras jardiner VER 1.01 0.68 0.00 0.07 ind:fut:2s; +jardinerie jardinerie NOM f s 0.04 0.07 0.04 0.07 +jardinet jardinet NOM m s 0.18 6.62 0.18 3.65 +jardinets jardinet NOM m p 0.18 6.62 0.00 2.97 +jardinier jardinier NOM m s 7.67 11.89 6.90 6.22 +jardiniers jardinier NOM m p 7.67 11.89 0.39 4.05 +jardinière jardinier NOM f s 7.67 11.89 0.38 1.35 +jardinières jardinière NOM f p 0.01 0.20 0.01 0.00 +jardins jardin NOM m p 60.21 185.81 6.20 37.09 +jardiné jardiner VER m s 1.01 0.68 0.03 0.00 par:pas; +jargon jargon NOM m s 1.91 4.32 1.90 4.26 +jargonnant jargonner VER 0.00 0.47 0.00 0.14 par:pre; +jargonne jargonner VER 0.00 0.47 0.00 0.14 ind:pre:3s; +jargonnent jargonner VER 0.00 0.47 0.00 0.07 ind:pre:3p; +jargonner jargonner VER 0.00 0.47 0.00 0.07 inf; +jargonné jargonner VER m s 0.00 0.47 0.00 0.07 par:pas; +jargons jargon NOM m p 1.91 4.32 0.01 0.07 +jarnicoton jarnicoton ONO 0.00 0.07 0.00 0.07 +jarre jarre NOM f s 1.25 3.92 1.17 1.49 +jarres jarre NOM f p 1.25 3.92 0.08 2.43 +jarret jarret NOM m s 1.31 3.92 1.16 1.28 +jarretelle jarretelle NOM f s 0.14 1.82 0.02 0.47 +jarretelles jarretelle NOM f p 0.14 1.82 0.12 1.35 +jarretière jarretière NOM f s 1.65 0.47 1.28 0.27 +jarretières jarretière NOM f p 1.65 0.47 0.38 0.20 +jarrets jarret NOM m p 1.31 3.92 0.15 2.64 +jars jars NOM m 0.09 0.74 0.09 0.74 +jas jas NOM m 0.03 0.07 0.03 0.07 +jasaient jaser VER 2.72 1.62 0.01 0.07 ind:imp:3p; +jasait jaser VER 2.72 1.62 0.00 0.20 ind:imp:3s; +jase jaser VER 2.72 1.62 0.51 0.41 imp:pre:2s;ind:pre:3s; +jasent jaser VER 2.72 1.62 0.47 0.00 ind:pre:3p; +jaser jaser VER 2.72 1.62 1.56 0.81 inf; +jaserait jaser VER 2.72 1.62 0.16 0.00 cnd:pre:3s; +jases jaser VER 2.72 1.62 0.00 0.07 ind:pre:2s; +jaseur jaseur NOM m s 0.00 0.20 0.00 0.20 +jasmin jasmin NOM m s 1.57 5.14 1.57 4.19 +jasmins jasmin NOM m p 1.57 5.14 0.00 0.95 +jaspaient jasper VER 0.11 0.27 0.00 0.07 ind:imp:3p; +jaspe jaspe NOM m s 0.00 0.27 0.00 0.27 +jasper jasper VER 0.11 0.27 0.11 0.00 inf; +jaspin jaspin NOM m s 0.00 0.07 0.00 0.07 +jaspinaient jaspiner VER 0.00 1.08 0.00 0.07 ind:imp:3p; +jaspinais jaspiner VER 0.00 1.08 0.00 0.07 ind:imp:1s; +jaspinait jaspiner VER 0.00 1.08 0.00 0.14 ind:imp:3s; +jaspine jaspiner VER 0.00 1.08 0.00 0.61 ind:pre:1s;ind:pre:3s; +jaspinent jaspiner VER 0.00 1.08 0.00 0.07 ind:pre:3p; +jaspiner jaspiner VER 0.00 1.08 0.00 0.07 inf; +jaspiné jaspiner VER m s 0.00 1.08 0.00 0.07 par:pas; +jaspé jasper VER m s 0.11 0.27 0.00 0.07 par:pas; +jaspées jasper VER f p 0.11 0.27 0.00 0.07 par:pas; +jaspés jasper VER m p 0.11 0.27 0.00 0.07 par:pas; +jasé jaser VER m s 2.72 1.62 0.01 0.07 par:pas; +jatte jatte NOM f s 0.18 0.81 0.18 0.41 +jattes jatte NOM f p 0.18 0.81 0.00 0.41 +jauge jauge NOM f s 1.44 0.54 1.25 0.47 +jaugea jauger VER 1.17 4.66 0.00 0.68 ind:pas:3s; +jaugeait jauger VER 1.17 4.66 0.01 1.01 ind:imp:3s; +jaugeant jauger VER 1.17 4.66 0.00 0.34 par:pre; +jaugent jauger VER 1.17 4.66 0.06 0.14 ind:pre:3p; +jauger jauger VER 1.17 4.66 0.64 0.88 inf; +jauges jauge NOM f p 1.44 0.54 0.18 0.07 +jaugez jauger VER 1.17 4.66 0.28 0.00 imp:pre:2p;ind:pre:2p; +jaugé jauger VER m s 1.17 4.66 0.00 0.41 par:pas; +jaugée jauger VER f s 1.17 4.66 0.01 0.27 par:pas; +jaugés jauger VER m p 1.17 4.66 0.01 0.07 par:pas; +jaunasse jaunasse ADJ s 0.00 0.34 0.00 0.14 +jaunasses jaunasse ADJ f p 0.00 0.34 0.00 0.20 +jaune_vert jaune_vert ADJ s 0.01 0.20 0.01 0.20 +jaune jaune ADJ s 21.09 109.86 15.48 75.81 +jaunes jaune ADJ p 21.09 109.86 5.62 34.05 +jaunets jaunet NOM m p 0.00 0.20 0.00 0.20 +jauni jaunir VER m s 0.92 8.31 0.50 1.55 par:pas; +jaunie jaunir VER f s 0.92 8.31 0.02 1.62 par:pas; +jaunies jauni ADJ f p 0.28 8.38 0.26 1.96 +jaunir jaunir VER 0.92 8.31 0.21 0.68 inf; +jaunira jaunir VER 0.92 8.31 0.00 0.07 ind:fut:3s; +jauniront jaunir VER 0.92 8.31 0.00 0.07 ind:fut:3p; +jaunis jauni ADJ m p 0.28 8.38 0.02 2.43 +jaunissaient jaunir VER 0.92 8.31 0.00 0.47 ind:imp:3p; +jaunissait jaunir VER 0.92 8.31 0.00 1.08 ind:imp:3s; +jaunissant jaunissant ADJ m s 0.16 0.68 0.16 0.00 +jaunissante jaunissant ADJ f s 0.16 0.68 0.00 0.14 +jaunissantes jaunissant ADJ f p 0.16 0.68 0.00 0.41 +jaunissants jaunissant ADJ m p 0.16 0.68 0.00 0.14 +jaunisse jaunisse NOM f s 0.51 0.41 0.51 0.34 +jaunissement jaunissement NOM m s 0.01 0.07 0.01 0.07 +jaunissent jaunir VER 0.92 8.31 0.02 0.27 ind:pre:3p; +jaunisses jaunisse NOM f p 0.51 0.41 0.00 0.07 +jaunit jaunir VER 0.92 8.31 0.14 0.54 ind:pre:3s;ind:pas:3s; +jaunâtre jaunâtre ADJ s 0.10 9.93 0.08 7.50 +jaunâtres jaunâtre ADJ p 0.10 9.93 0.02 2.43 +java java NOM f s 0.46 2.30 0.44 1.89 +javanais javanais ADJ m s 0.07 0.27 0.06 0.20 +javanaise javanais ADJ f s 0.07 0.27 0.01 0.00 +javanaises javanais ADJ f p 0.07 0.27 0.00 0.07 +javas java NOM f p 0.46 2.30 0.02 0.41 +javel javel NOM f s 1.33 3.45 1.33 3.45 +javeline javeline NOM f s 0.00 0.07 0.00 0.07 +javelle javelle NOM f s 0.01 0.34 0.01 0.00 +javelles javelle NOM f p 0.01 0.34 0.00 0.34 +javellise javelliser VER 0.02 0.34 0.00 0.07 ind:pre:3s; +javelliser javelliser VER 0.02 0.34 0.01 0.00 inf; +javellisé javelliser VER m s 0.02 0.34 0.00 0.07 par:pas; +javellisée javelliser VER f s 0.02 0.34 0.01 0.14 par:pas; +javellisées javelliser VER f p 0.02 0.34 0.00 0.07 par:pas; +javelot javelot NOM m s 0.71 1.35 0.44 0.95 +javelots javelot NOM m p 0.71 1.35 0.27 0.41 +javotte javotte NOM f s 0.00 0.07 0.00 0.07 +jazz_band jazz_band NOM m s 0.02 0.20 0.02 0.20 +jazz_rock jazz_rock NOM m 0.14 0.07 0.14 0.07 +jazz jazz NOM m 7.38 8.11 7.38 8.11 +jazzman jazzman NOM m s 0.34 0.20 0.27 0.14 +jazzmen jazzman NOM m p 0.34 0.20 0.07 0.07 +jazzy jazzy ADJ f 0.14 0.00 0.14 0.00 +je_m_en_fichiste je_m_en_fichiste ADJ f s 0.01 0.00 0.01 0.00 +je_m_en_foutisme je_m_en_foutisme NOM m s 0.01 0.14 0.01 0.14 +je_m_en_foutiste je_m_en_foutiste ADJ s 0.01 0.00 0.01 0.00 +je_m_en_foutiste je_m_en_foutiste NOM p 0.03 0.07 0.03 0.07 +je_ne_sais_quoi je_ne_sais_quoi NOM m 0.34 0.47 0.34 0.47 +je je PRO:per s 25983.20 10862.77 25983.20 10862.77 +jeûna jeûner VER 2.59 1.35 0.01 0.07 ind:pas:3s; +jeûnaient jeûner VER 2.59 1.35 0.00 0.14 ind:imp:3p; +jeûnait jeûner VER 2.59 1.35 0.00 0.07 ind:imp:3s; +jeûnant jeûner VER 2.59 1.35 0.03 0.07 par:pre; +jeûne jeûne NOM m s 1.84 4.46 1.62 3.72 +jeûnent jeûner VER 2.59 1.35 0.17 0.07 ind:pre:3p; +jeûner jeûner VER 2.59 1.35 1.10 0.61 inf; +jeûnerai jeûner VER 2.59 1.35 0.02 0.07 ind:fut:1s; +jeûnerait jeûner VER 2.59 1.35 0.00 0.07 cnd:pre:3s; +jeûneras jeûner VER 2.59 1.35 0.01 0.07 ind:fut:2s; +jeûnerons jeûner VER 2.59 1.35 0.01 0.00 ind:fut:1p; +jeûnes jeûner VER 2.59 1.35 0.32 0.00 ind:pre:2s; +jeûneurs jeûneur NOM m p 0.00 0.07 0.00 0.07 +jeûnez jeûner VER 2.59 1.35 0.16 0.00 imp:pre:2p;ind:pre:2p; +jeûné jeûner VER m s 2.59 1.35 0.33 0.07 par:pas; +jean_foutre jean_foutre NOM m 0.41 1.28 0.41 1.28 +jean_le_blanc jean_le_blanc NOM m 0.00 0.07 0.00 0.07 +jean jean NOM m s 6.55 10.20 3.62 6.96 +jeanneton jeanneton NOM f s 0.02 0.68 0.02 0.68 +jeannette jeannette NOM f s 0.27 0.20 0.02 0.20 +jeannettes jeannette NOM f p 0.27 0.20 0.25 0.00 +jeannot jeannot NOM m s 0.00 0.07 0.00 0.07 +jeans jean NOM m p 6.55 10.20 2.93 3.24 +jeep jeep NOM f s 4.65 2.97 4.18 2.16 +jeeps jeep NOM f p 4.65 2.97 0.47 0.81 +jellaba jellaba NOM f s 0.00 0.14 0.00 0.14 +jenny jenny NOM f s 0.12 9.32 0.12 9.32 +jerez jerez NOM m 0.67 0.68 0.67 0.68 +jerk jerk NOM m s 0.11 0.54 0.11 0.54 +jerrican jerrican NOM m s 0.37 0.20 0.34 0.07 +jerricane jerricane NOM m s 0.19 0.07 0.19 0.00 +jerricanes jerricane NOM m p 0.19 0.07 0.00 0.07 +jerricans jerrican NOM m p 0.37 0.20 0.04 0.14 +jerrycan jerrycan NOM m s 0.42 0.68 0.25 0.27 +jerrycans jerrycan NOM m p 0.42 0.68 0.18 0.41 +jersey jersey NOM m s 0.51 1.69 0.51 1.62 +jerseys jersey NOM m p 0.51 1.69 0.00 0.07 +jet_set jet_set NOM m s 0.42 0.07 0.42 0.07 +jet_stream jet_stream NOM m s 0.01 0.00 0.01 0.00 +jet_society jet_society NOM f s 0.00 0.07 0.00 0.07 +jet jet NOM m s 10.49 20.95 7.96 14.53 +jeta jeter VER 192.17 336.82 1.63 60.95 ind:pas:3s; +jetable jetable ADJ s 1.16 0.54 0.54 0.34 +jetables jetable ADJ p 1.16 0.54 0.62 0.20 +jetai jeter VER 192.17 336.82 0.26 6.89 ind:pas:1s; +jetaient jeter VER 192.17 336.82 0.96 9.26 ind:imp:3p; +jetais jeter VER 192.17 336.82 1.24 3.04 ind:imp:1s;ind:imp:2s; +jetait jeter VER 192.17 336.82 0.00 33.85 ind:imp:3s; +jetant jeter VER 192.17 336.82 1.53 22.30 par:pre; +jetas jeter VER 192.17 336.82 0.02 0.00 ind:pas:2s; +jeter jeter VER 192.17 336.82 59.27 61.89 inf;; +jeteur jeteur NOM m s 0.23 0.47 0.04 0.14 +jeteurs jeteur NOM m p 0.23 0.47 0.17 0.14 +jeteuse jeteur NOM f s 0.23 0.47 0.00 0.14 +jeteuses jeteur NOM f p 0.23 0.47 0.00 0.07 +jetez jeter VER 192.17 336.82 17.07 1.69 imp:pre:2p;ind:pre:2p; +jetiez jeter VER 192.17 336.82 0.29 0.27 ind:imp:2p; +jetions jeter VER 192.17 336.82 0.34 1.89 ind:imp:1p; +jetâmes jeter VER 192.17 336.82 0.01 0.20 ind:pas:1p; +jeton jeton NOM m s 10.27 10.27 2.88 4.32 +jetons jeton NOM m p 10.27 10.27 7.39 5.95 +jetât jeter VER 192.17 336.82 0.00 0.27 sub:imp:3s; +jets jet NOM m p 10.49 20.95 2.53 6.42 +jette jeter VER 192.17 336.82 43.48 45.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +jettent jeter VER 192.17 336.82 3.44 6.89 ind:pre:3p;sub:pre:3p; +jettera jeter VER 192.17 336.82 2.10 1.01 ind:fut:3s; +jetterai jeter VER 192.17 336.82 2.38 0.61 ind:fut:1s; +jetteraient jeter VER 192.17 336.82 0.16 0.95 cnd:pre:3p; +jetterais jeter VER 192.17 336.82 1.02 0.34 cnd:pre:1s;cnd:pre:2s; +jetterait jeter VER 192.17 336.82 0.39 2.50 cnd:pre:3s; +jetteras jeter VER 192.17 336.82 0.31 0.14 ind:fut:2s; +jetterez jeter VER 192.17 336.82 0.09 0.20 ind:fut:2p; +jetteriez jeter VER 192.17 336.82 0.19 0.07 cnd:pre:2p; +jetterions jeter VER 192.17 336.82 0.00 0.14 cnd:pre:1p; +jetterons jeter VER 192.17 336.82 0.41 0.07 ind:fut:1p; +jetteront jeter VER 192.17 336.82 0.59 0.68 ind:fut:3p; +jettes jeter VER 192.17 336.82 4.77 0.47 ind:pre:2s;sub:pre:2s; +jetèrent jeter VER 192.17 336.82 0.29 3.72 ind:pas:3p; +jeté jeter VER m s 192.17 336.82 33.21 45.07 par:pas; +jetée jeter VER f s 192.17 336.82 9.01 13.38 par:pas; +jetées jeter VER f p 192.17 336.82 1.11 3.38 par:pas; +jetés jeter VER m p 192.17 336.82 3.73 8.72 par:pas; +jeu_concours jeu_concours NOM m 0.10 0.14 0.10 0.14 +jeu jeu NOM m s 190.44 173.31 156.79 130.68 +jeudi jeudi NOM m s 26.09 23.51 24.58 21.01 +jeudis jeudi NOM m p 26.09 23.51 1.51 2.50 +jeune_homme jeune_homme ADJ s 0.10 0.00 0.10 0.00 +jeune jeune ADJ s 297.01 569.19 234.90 432.64 +jeunement jeunement ADV 0.00 0.27 0.00 0.27 +jeunes jeune ADJ p 297.01 569.19 62.12 136.55 +jeunesse jeunesse NOM f s 28.71 85.14 27.21 83.24 +jeunesses jeunesse NOM f p 28.71 85.14 1.50 1.89 +jeunet jeunet NOM m s 0.11 0.00 0.11 0.00 +jeunets jeunet ADJ m p 0.13 0.68 0.00 0.07 +jeunette jeunette NOM f s 0.17 0.95 0.12 0.61 +jeunettes jeunette NOM f p 0.17 0.95 0.04 0.34 +jeunot jeunot NOM m s 1.56 3.11 0.94 1.22 +jeunots jeunot NOM m p 1.56 3.11 0.62 1.89 +jeux jeu NOM m p 190.44 173.31 33.65 42.64 +jigger jigger NOM m s 0.04 0.00 0.04 0.00 +jihad jihad NOM s 0.28 0.00 0.28 0.00 +jingle jingle NOM m s 1.14 0.07 0.88 0.07 +jingles jingle NOM m p 1.14 0.07 0.26 0.00 +jinjin jinjin NOM m s 0.00 0.27 0.00 0.27 +jiu_jitsu jiu_jitsu NOM m 0.35 0.14 0.35 0.14 +jivaro jivaro ADJ m s 0.00 0.14 0.00 0.14 +jà jà ADV 1.02 0.41 1.02 0.41 +joaillerie joaillerie NOM f s 0.07 0.47 0.07 0.47 +joaillier joaillier NOM m s 0.39 0.68 0.33 0.47 +joailliers joaillier NOM m p 0.39 0.68 0.06 0.20 +job job NOM m s 28.62 2.77 27.24 2.43 +jobard jobard NOM m s 0.46 0.47 0.41 0.14 +jobardes jobard ADJ f p 0.05 0.47 0.00 0.07 +jobardise jobardise NOM f s 0.00 0.20 0.00 0.20 +jobards jobard NOM m p 0.46 0.47 0.06 0.34 +jobs job NOM m p 28.62 2.77 1.38 0.34 +jociste jociste NOM s 0.00 0.41 0.00 0.34 +jocistes jociste NOM p 0.00 0.41 0.00 0.07 +jockey jockey NOM s 1.69 8.24 1.37 6.82 +jockeys jockey NOM p 1.69 8.24 0.33 1.42 +jocko jocko ADJ m s 0.17 0.00 0.17 0.00 +jocrisse jocrisse NOM m s 0.02 0.27 0.00 0.20 +jocrisses jocrisse NOM m p 0.02 0.27 0.02 0.07 +jodhpurs jodhpur NOM m p 0.04 0.07 0.04 0.07 +jodler jodler VER 0.23 0.00 0.23 0.00 inf; +jogger jogger NOM m s 0.34 0.07 0.25 0.07 +joggers jogger NOM m p 0.34 0.07 0.09 0.00 +joggeur joggeur NOM m s 0.26 0.00 0.07 0.00 +joggeurs joggeur NOM m p 0.26 0.00 0.16 0.00 +joggeuse joggeur NOM f s 0.26 0.00 0.03 0.00 +jogging jogging NOM m s 2.21 1.28 2.20 1.22 +joggings jogging NOM m p 2.21 1.28 0.01 0.07 +johannisberg johannisberg NOM m s 0.00 0.07 0.00 0.07 +joice joice ADJ s 0.01 0.95 0.01 0.81 +joices joice ADJ p 0.01 0.95 0.00 0.14 +joie joie NOM f s 75.09 150.20 71.07 134.12 +joies joie NOM f p 75.09 150.20 4.03 16.08 +joignîmes joindre VER 46.37 32.70 0.00 0.07 ind:pas:1p; +joignable joignable ADJ m s 0.60 0.07 0.60 0.07 +joignaient joindre VER 46.37 32.70 0.10 1.28 ind:imp:3p; +joignais joindre VER 46.37 32.70 0.07 0.20 ind:imp:1s;ind:imp:2s; +joignait joindre VER 46.37 32.70 0.22 1.89 ind:imp:3s; +joignant joindre VER 46.37 32.70 0.45 2.03 par:pre; +joigne joindre VER 46.37 32.70 0.72 0.20 sub:pre:1s;sub:pre:3s; +joignent joindre VER 46.37 32.70 0.69 0.61 ind:pre:3p; +joignes joindre VER 46.37 32.70 0.19 0.00 sub:pre:2s; +joignez joindre VER 46.37 32.70 2.71 0.20 imp:pre:2p;ind:pre:2p; +joigniez joindre VER 46.37 32.70 0.28 0.00 ind:imp:2p; +joignions joindre VER 46.37 32.70 0.15 0.07 ind:imp:1p; +joignirent joindre VER 46.37 32.70 0.01 0.68 ind:pas:3p; +joignis joindre VER 46.37 32.70 0.00 0.27 ind:pas:1s; +joignissent joindre VER 46.37 32.70 0.00 0.07 sub:imp:3p; +joignit joindre VER 46.37 32.70 0.07 2.77 ind:pas:3s; +joignons joindre VER 46.37 32.70 0.46 0.14 imp:pre:1p;ind:pre:1p; +joindra joindre VER 46.37 32.70 0.38 0.14 ind:fut:3s; +joindrai joindre VER 46.37 32.70 0.11 0.00 ind:fut:1s; +joindraient joindre VER 46.37 32.70 0.01 0.14 cnd:pre:3p; +joindrais joindre VER 46.37 32.70 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +joindrait joindre VER 46.37 32.70 0.02 0.07 cnd:pre:3s; +joindras joindre VER 46.37 32.70 0.07 0.00 ind:fut:2s; +joindre joindre VER 46.37 32.70 32.91 14.19 inf;; +joindrez joindre VER 46.37 32.70 0.26 0.00 ind:fut:2p; +joindriez joindre VER 46.37 32.70 0.12 0.00 cnd:pre:2p; +joindrons joindre VER 46.37 32.70 0.01 0.00 ind:fut:1p; +joindront joindre VER 46.37 32.70 0.37 0.07 ind:fut:3p; +joins joindre VER 46.37 32.70 3.00 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +joint_venture joint_venture NOM f s 0.16 0.00 0.16 0.00 +joint joint NOM m s 8.38 6.62 5.78 4.53 +jointe joint ADJ f s 2.80 15.00 0.43 2.09 +jointes joint ADJ f p 2.80 15.00 0.60 7.64 +jointif jointif ADJ m s 0.02 0.27 0.00 0.14 +jointifs jointif ADJ m p 0.02 0.27 0.01 0.07 +jointives jointif ADJ f p 0.02 0.27 0.01 0.07 +jointoyaient jointoyer VER 0.00 0.07 0.00 0.07 ind:imp:3p; +joints joint NOM m p 8.38 6.62 2.61 2.09 +jointée jointé ADJ f s 0.00 0.07 0.00 0.07 +jointure jointure NOM f s 0.52 4.05 0.22 1.28 +jointures jointure NOM f p 0.52 4.05 0.29 2.77 +jointés jointer VER m p 0.01 0.07 0.00 0.07 par:pas; +jojo jojo ADJ s 1.40 1.15 1.37 1.08 +jojoba jojoba NOM m s 0.03 0.00 0.03 0.00 +jojos jojo ADJ m p 1.40 1.15 0.03 0.07 +jokari jokari NOM m s 0.00 0.07 0.00 0.07 +joker joker NOM m s 3.54 0.14 3.44 0.14 +jokers joker NOM m p 3.54 0.14 0.10 0.00 +joli_coeur joli_coeur ADJ m s 0.01 0.00 0.01 0.00 +joli_joli joli_joli ADJ m s 0.26 0.41 0.26 0.41 +joli joli ADJ m s 226.45 120.00 94.55 44.53 +jolibois jolibois NOM m 0.00 0.14 0.00 0.14 +jolie joli ADJ f s 226.45 120.00 101.54 51.76 +jolies joli ADJ f p 226.45 120.00 20.99 15.68 +joliesse joliesse NOM f s 0.03 0.54 0.02 0.41 +joliesses joliesse NOM f p 0.03 0.54 0.01 0.14 +joliet joliet ADJ m s 0.01 0.14 0.01 0.00 +joliette joliet ADJ f s 0.01 0.14 0.00 0.14 +joliment joliment ADV 2.19 5.41 2.19 5.41 +jolis joli ADJ m p 226.45 120.00 9.37 8.04 +jonc jonc NOM m s 0.24 7.09 0.19 1.89 +joncaille joncaille NOM f s 0.00 0.41 0.00 0.41 +jonchaie jonchaie NOM f s 0.00 0.20 0.00 0.14 +jonchaient joncher VER 0.67 9.39 0.01 2.30 ind:imp:3p; +jonchaies jonchaie NOM f p 0.00 0.20 0.00 0.07 +jonchait joncher VER 0.67 9.39 0.01 0.07 ind:imp:3s; +jonchant joncher VER 0.67 9.39 0.01 0.95 par:pre; +jonchent joncher VER 0.67 9.39 0.20 1.01 ind:pre:3p; +joncher joncher VER 0.67 9.39 0.11 0.07 inf; +joncheraies joncheraie NOM f p 0.00 0.07 0.00 0.07 +jonchet jonchet NOM m s 0.00 0.95 0.00 0.27 +jonchets jonchet NOM m p 0.00 0.95 0.00 0.68 +jonchère jonchère NOM f s 0.00 0.14 0.00 0.14 +jonché joncher VER m s 0.67 9.39 0.09 2.77 par:pas; +jonchée joncher VER f s 0.67 9.39 0.22 1.28 par:pas; +jonchées joncher VER f p 0.67 9.39 0.02 0.41 par:pas; +jonchés joncher VER m p 0.67 9.39 0.01 0.54 par:pas; +joncs jonc NOM m p 0.24 7.09 0.05 5.20 +jonction jonction NOM f s 0.60 1.96 0.50 1.89 +jonctions jonction NOM f p 0.60 1.96 0.10 0.07 +jonglage jonglage NOM m s 0.03 0.00 0.03 0.00 +jonglaient jongler VER 2.13 3.85 0.00 0.14 ind:imp:3p; +jonglais jongler VER 2.13 3.85 0.04 0.20 ind:imp:1s;ind:imp:2s; +jonglait jongler VER 2.13 3.85 0.04 0.47 ind:imp:3s; +jonglant jongler VER 2.13 3.85 0.05 0.61 par:pre; +jongle jongler VER 2.13 3.85 0.54 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jonglent jongler VER 2.13 3.85 0.03 0.07 ind:pre:3p; +jongler jongler VER 2.13 3.85 0.83 1.82 inf; +jonglera jongler VER 2.13 3.85 0.03 0.00 ind:fut:3s; +jonglerie jonglerie NOM f s 0.02 0.20 0.02 0.14 +jongleries jonglerie NOM f p 0.02 0.20 0.00 0.07 +jongles jongler VER 2.13 3.85 0.20 0.00 ind:pre:2s; +jongleur jongleur NOM m s 0.58 2.23 0.46 0.74 +jongleurs jongleur NOM m p 0.58 2.23 0.12 1.22 +jongleuse jongleur NOM f s 0.58 2.23 0.00 0.14 +jongleuses jongleur NOM f p 0.58 2.23 0.00 0.14 +jonglez jongler VER 2.13 3.85 0.20 0.00 imp:pre:2p;ind:pre:2p; +jonglé jongler VER m s 2.13 3.85 0.16 0.14 par:pas; +jonkheer jonkheer NOM m s 0.34 0.00 0.34 0.00 +jonque jonque NOM f s 0.34 1.42 0.33 0.74 +jonques jonque NOM f p 0.34 1.42 0.02 0.68 +jonquille jonquille NOM f s 0.39 0.81 0.04 0.07 +jonquilles jonquille NOM f p 0.39 0.81 0.35 0.74 +jordanienne jordanien ADJ f s 0.01 0.07 0.01 0.00 +jordaniens jordanien NOM m p 0.03 0.00 0.03 0.00 +jordonner jordonner VER 0.00 0.07 0.00 0.07 inf; +joseph joseph NOM m s 0.17 1.08 0.17 1.08 +joua jouer VER 570.12 337.23 0.80 5.61 ind:pas:3s; +jouable jouable ADJ m s 0.46 0.07 0.46 0.07 +jouai jouer VER 570.12 337.23 0.13 1.01 ind:pas:1s; +jouaient jouer VER 570.12 337.23 3.86 20.00 ind:imp:3p; +jouais jouer VER 570.12 337.23 12.89 5.95 ind:imp:1s;ind:imp:2s; +jouait jouer VER 570.12 337.23 21.59 49.93 ind:imp:3s; +jouant jouer VER 570.12 337.23 5.66 19.19 par:pre; +jouasse jouasse ADJ m s 0.02 1.22 0.02 1.01 +jouasses jouasse ADJ p 0.02 1.22 0.00 0.20 +joubarbe joubarbe NOM f s 0.00 0.07 0.00 0.07 +joue jouer VER 570.12 337.23 122.88 40.47 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +jouent jouer VER 570.12 337.23 16.41 14.59 ind:pre:3p; +jouer jouer VER 570.12 337.23 225.84 121.82 inf;; +jouera jouer VER 570.12 337.23 5.56 1.89 ind:fut:3s; +jouerai jouer VER 570.12 337.23 4.22 0.41 ind:fut:1s; +joueraient jouer VER 570.12 337.23 0.24 0.41 cnd:pre:3p; +jouerais jouer VER 570.12 337.23 1.54 0.47 cnd:pre:1s;cnd:pre:2s; +jouerait jouer VER 570.12 337.23 1.24 3.04 cnd:pre:3s; +joueras jouer VER 570.12 337.23 2.30 0.47 ind:fut:2s; +jouerez jouer VER 570.12 337.23 0.98 0.34 ind:fut:2p; +joueriez jouer VER 570.12 337.23 0.22 0.07 cnd:pre:2p; +jouerions jouer VER 570.12 337.23 0.01 0.07 cnd:pre:1p; +jouerons jouer VER 570.12 337.23 0.54 0.41 ind:fut:1p; +joueront jouer VER 570.12 337.23 0.74 0.47 ind:fut:3p; +joues jouer VER 570.12 337.23 33.70 2.50 ind:pre:2s;sub:pre:2s; +jouet jouet NOM m s 25.50 21.01 11.82 7.03 +jouets jouet NOM m p 25.50 21.01 13.68 13.99 +joueur joueur NOM m s 28.32 19.86 17.22 9.05 +joueurs joueur NOM m p 28.32 19.86 9.95 9.53 +joueuse joueur NOM f s 28.32 19.86 1.15 0.74 +joueuses joueuse NOM f p 0.14 0.00 0.14 0.00 +jouez jouer VER 570.12 337.23 24.66 3.18 imp:pre:2p;ind:pre:2p; +joufflu joufflu NOM m s 0.47 0.20 0.46 0.20 +joufflue joufflu ADJ f s 0.31 2.36 0.16 0.34 +joufflues joufflu ADJ f p 0.31 2.36 0.01 0.20 +joufflus joufflu ADJ m p 0.31 2.36 0.02 0.41 +joug joug NOM m s 2.48 2.50 2.47 2.36 +jougs joug NOM m p 2.48 2.50 0.01 0.14 +joui jouir VER m s 22.06 39.19 3.33 3.65 par:pas; +jouiez jouer VER 570.12 337.23 2.11 0.41 ind:imp:2p; +jouions jouer VER 570.12 337.23 1.44 1.42 ind:imp:1p; +jouir jouir VER 22.06 39.19 10.42 15.68 inf; +jouira jouir VER 22.06 39.19 0.32 0.34 ind:fut:3s; +jouirai jouir VER 22.06 39.19 0.02 0.07 ind:fut:1s; +jouiraient jouir VER 22.06 39.19 0.01 0.07 cnd:pre:3p; +jouirait jouir VER 22.06 39.19 0.00 0.14 cnd:pre:3s; +jouiras jouir VER 22.06 39.19 0.07 0.07 ind:fut:2s; +jouirent jouir VER 22.06 39.19 0.00 0.14 ind:pas:3p; +jouirions jouir VER 22.06 39.19 0.00 0.07 cnd:pre:1p; +jouirons jouir VER 22.06 39.19 0.02 0.07 ind:fut:1p; +jouis jouir VER m p 22.06 39.19 2.65 1.76 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +jouissaient jouir VER 22.06 39.19 0.14 1.28 ind:imp:3p; +jouissais jouir VER 22.06 39.19 0.21 1.49 ind:imp:1s;ind:imp:2s; +jouissait jouir VER 22.06 39.19 0.33 5.61 ind:imp:3s; +jouissance jouissance NOM f s 1.96 14.19 1.82 12.36 +jouissances jouissance NOM f p 1.96 14.19 0.14 1.82 +jouissant jouir VER 22.06 39.19 0.05 1.42 par:pre; +jouissants jouissant ADJ m p 0.00 0.07 0.00 0.07 +jouisse jouir VER 22.06 39.19 0.33 0.54 sub:pre:1s;sub:pre:3s; +jouissent jouir VER 22.06 39.19 0.69 1.22 ind:pre:3p; +jouisses jouir VER 22.06 39.19 0.34 0.07 sub:pre:2s; +jouisseur jouisseur ADJ m s 0.01 0.68 0.01 0.41 +jouisseurs jouisseur NOM m p 0.01 0.81 0.00 0.34 +jouisseuse jouisseur NOM f s 0.01 0.81 0.01 0.07 +jouissez jouir VER 22.06 39.19 0.28 0.41 imp:pre:2p;ind:pre:2p; +jouissif jouissif ADJ m s 0.16 1.15 0.14 0.74 +jouissifs jouissif ADJ m p 0.16 1.15 0.00 0.14 +jouissions jouir VER 22.06 39.19 0.04 0.41 ind:imp:1p; +jouissive jouissif ADJ f s 0.16 1.15 0.01 0.14 +jouissives jouissif ADJ f p 0.16 1.15 0.00 0.14 +jouissons jouir VER 22.06 39.19 0.82 0.41 imp:pre:1p;ind:pre:1p; +jouit jouir VER 22.06 39.19 1.99 4.32 ind:pre:3s;ind:pas:3s; +joujou joujou NOM m s 1.63 1.49 1.63 1.49 +joujoux joujoux NOM m p 0.82 0.88 0.82 0.88 +joules joule NOM m p 0.22 0.07 0.22 0.07 +jouâmes jouer VER 570.12 337.23 0.01 0.34 ind:pas:1p; +jouons jouer VER 570.12 337.23 7.81 2.57 imp:pre:1p;ind:pre:1p; +jouât jouer VER 570.12 337.23 0.00 0.81 sub:imp:3s; +jour jour NOM m s 1061.92 1341.76 635.22 826.35 +journal journal NOM m s 110.80 197.70 72.50 124.32 +journaleuse journaleux NOM f s 0.12 0.74 0.00 0.14 +journaleux journaleux NOM m 0.12 0.74 0.12 0.61 +journalier journalier ADJ m s 1.02 2.16 0.52 0.88 +journaliers journalier ADJ m p 1.02 2.16 0.18 0.20 +journalisme journalisme NOM m s 3.25 3.51 3.25 3.51 +journaliste journaliste NOM s 35.29 30.34 24.26 15.95 +journalistes journaliste NOM p 35.29 30.34 11.03 14.39 +journalistique journalistique ADJ s 0.63 0.68 0.57 0.34 +journalistiques journalistique ADJ p 0.63 0.68 0.07 0.34 +journalière journalier ADJ f s 1.02 2.16 0.30 0.68 +journalières journalière NOM f p 0.10 0.00 0.10 0.00 +journaux journal NOM m p 110.80 197.70 38.30 73.38 +journellement journellement ADV 0.15 0.88 0.15 0.88 +journée journée NOM f s 174.89 179.39 165.35 140.74 +journées journée NOM f p 174.89 179.39 9.54 38.65 +jours jour NOM m p 1061.92 1341.76 426.70 515.41 +joute joute NOM f s 1.25 2.03 0.97 1.08 +jouter jouter VER 0.10 0.00 0.06 0.00 inf; +joutes joute NOM f p 1.25 2.03 0.28 0.95 +jouteur jouteur NOM m s 0.00 0.20 0.00 0.07 +jouteurs jouteur NOM m p 0.00 0.20 0.00 0.07 +jouteuse jouteur NOM f s 0.00 0.20 0.00 0.07 +joutez jouter VER 0.10 0.00 0.03 0.00 imp:pre:2p;ind:pre:2p; +jouèrent jouer VER 570.12 337.23 0.18 1.89 ind:pas:3p; +jouté jouter VER m s 0.10 0.00 0.01 0.00 par:pas; +joué jouer VER m s 570.12 337.23 69.83 33.58 par:pas;par:pas;par:pas; +jouée jouer VER f s 570.12 337.23 2.01 2.91 par:pas; +jouées jouer VER f p 570.12 337.23 0.27 0.47 par:pas; +joués jouer VER m p 570.12 337.23 0.45 0.54 par:pas; +jouvence jouvence NOM f s 0.81 1.35 0.81 1.35 +jouvenceau jouvenceau NOM m s 0.28 0.74 0.08 0.27 +jouvenceaux jouvenceau NOM m p 0.28 0.74 0.02 0.14 +jouvencelle jouvenceau NOM f s 0.28 0.74 0.18 0.14 +jouvencelles jouvenceau NOM f p 0.28 0.74 0.00 0.20 +jouxtaient jouxter VER 0.07 2.23 0.00 0.20 ind:imp:3p; +jouxtait jouxter VER 0.07 2.23 0.02 1.28 ind:imp:3s; +jouxtant jouxter VER 0.07 2.23 0.00 0.68 par:pre; +jouxte jouxte PRE 0.05 0.07 0.05 0.07 +jovial jovial ADJ m s 0.61 6.22 0.48 4.46 +joviale jovial ADJ f s 0.61 6.22 0.12 1.49 +jovialement jovialement ADV 0.00 0.54 0.00 0.54 +joviales jovial ADJ f p 0.61 6.22 0.00 0.14 +jovialité jovialité NOM f s 0.04 1.28 0.04 1.28 +joviaux jovial ADJ m p 0.61 6.22 0.01 0.14 +joyau joyau NOM m s 3.60 3.24 2.67 1.96 +joyaux joyau NOM m p 3.60 3.24 0.93 1.28 +joyciennes joycien ADJ f p 0.00 0.07 0.00 0.07 +joyeuse joyeux ADJ f s 39.89 45.61 6.07 14.86 +joyeusement joyeusement ADV 1.14 9.39 1.14 9.39 +joyeuses joyeux ADJ f p 39.89 45.61 2.01 4.05 +joyeuseté joyeuseté NOM f s 0.01 0.34 0.00 0.20 +joyeusetés joyeuseté NOM f p 0.01 0.34 0.01 0.14 +joyeux joyeux ADJ m 39.89 45.61 31.81 26.69 +joystick joystick NOM m s 0.11 0.00 0.11 0.00 +jèze jèze ADJ m s 0.00 0.07 0.00 0.07 +jèzes jèze NOM p 0.00 0.07 0.00 0.07 +juan juan NOM m s 0.01 0.20 0.01 0.20 +jubila jubiler VER 1.20 5.07 0.01 0.34 ind:pas:3s; +jubilai jubiler VER 1.20 5.07 0.00 0.14 ind:pas:1s; +jubilaient jubiler VER 1.20 5.07 0.00 0.07 ind:imp:3p; +jubilaire jubilaire ADJ s 0.40 0.07 0.40 0.07 +jubilais jubiler VER 1.20 5.07 0.04 0.41 ind:imp:1s;ind:imp:2s; +jubilait jubiler VER 1.20 5.07 0.05 1.76 ind:imp:3s; +jubilant jubilant ADJ m s 0.02 0.88 0.02 0.14 +jubilante jubilant ADJ f s 0.02 0.88 0.00 0.41 +jubilantes jubilant ADJ f p 0.02 0.88 0.00 0.07 +jubilants jubilant ADJ m p 0.02 0.88 0.00 0.27 +jubilation jubilation NOM f s 0.32 6.55 0.32 6.42 +jubilations jubilation NOM f p 0.32 6.55 0.00 0.14 +jubilatoire jubilatoire ADJ s 0.02 0.20 0.02 0.14 +jubilatoires jubilatoire ADJ m p 0.02 0.20 0.00 0.07 +jubile jubiler VER 1.20 5.07 0.38 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +jubilent jubiler VER 1.20 5.07 0.03 0.07 ind:pre:3p; +jubiler jubiler VER 1.20 5.07 0.40 0.61 inf; +jubilera jubiler VER 1.20 5.07 0.00 0.07 ind:fut:3s; +jubileraient jubiler VER 1.20 5.07 0.00 0.07 cnd:pre:3p; +jubiles jubiler VER 1.20 5.07 0.10 0.07 ind:pre:2s; +jubilèrent jubiler VER 1.20 5.07 0.00 0.07 ind:pas:3p; +jubilé jubilé NOM m s 0.33 0.41 0.33 0.41 +jubilée jubiler VER f s 1.20 5.07 0.08 0.00 par:pas; +jubé jubé NOM m s 0.00 0.20 0.00 0.20 +jucha jucher VER 0.24 10.61 0.00 0.47 ind:pas:3s; +juchai jucher VER 0.24 10.61 0.00 0.07 ind:pas:1s; +juchaient jucher VER 0.24 10.61 0.00 0.14 ind:imp:3p; +juchais jucher VER 0.24 10.61 0.00 0.14 ind:imp:1s; +juchait jucher VER 0.24 10.61 0.00 0.41 ind:imp:3s; +juchant jucher VER 0.24 10.61 0.00 0.14 par:pre; +juche jucher VER 0.24 10.61 0.00 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +juchent jucher VER 0.24 10.61 0.00 0.20 ind:pre:3p; +jucher jucher VER 0.24 10.61 0.00 0.54 inf; +jucheront jucher VER 0.24 10.61 0.00 0.07 ind:fut:3p; +juchions jucher VER 0.24 10.61 0.00 0.07 ind:imp:1p; +juché jucher VER m s 0.24 10.61 0.17 5.00 par:pas; +juchée jucher VER f s 0.24 10.61 0.04 0.74 par:pas; +juchées jucher VER f p 0.24 10.61 0.00 0.74 par:pas; +juchés jucher VER m p 0.24 10.61 0.03 1.55 par:pas; +judaïcité judaïcité NOM f s 0.01 0.00 0.01 0.00 +judaïque judaïque ADJ f s 0.06 0.14 0.06 0.07 +judaïques judaïque ADJ m p 0.06 0.14 0.00 0.07 +judaïsant judaïsant NOM m s 0.00 0.07 0.00 0.07 +judaïser judaïser VER 0.00 0.14 0.00 0.07 inf; +judaïsme judaïsme NOM m s 0.51 1.15 0.51 1.15 +judaïsées judaïser VER f p 0.00 0.14 0.00 0.07 par:pas; +judaïté judaïté NOM f s 0.00 0.07 0.00 0.07 +judas judas NOM m 1.28 1.76 1.28 1.76 +judiciaire judiciaire ADJ s 10.80 5.61 9.29 4.26 +judiciaires judiciaire ADJ p 10.80 5.61 1.51 1.35 +judicieuse judicieux ADJ f s 2.36 2.16 0.51 0.74 +judicieusement judicieusement ADV 0.17 0.61 0.17 0.61 +judicieuses judicieux ADJ f p 2.36 2.16 0.13 0.07 +judicieux judicieux ADJ m 2.36 2.16 1.72 1.35 +judo judo NOM m s 0.90 1.22 0.90 1.22 +judoka judoka NOM s 0.21 0.20 0.21 0.20 +judéen judéen ADJ m s 0.07 0.00 0.07 0.00 +judéenne judéenne NOM f s 0.01 0.14 0.01 0.14 +judéité judéité NOM f s 0.02 0.00 0.02 0.00 +judéo_christianisme judéo_christianisme NOM m s 0.01 0.00 0.01 0.00 +judéo_chrétien judéo_chrétien ADJ f s 0.06 0.20 0.04 0.07 +judéo_chrétien judéo_chrétien ADJ f p 0.06 0.20 0.01 0.07 +judéo_chrétien judéo_chrétien ADJ m p 0.06 0.20 0.00 0.07 +judéo judéo ADV 0.01 0.20 0.01 0.20 +juge juge NOM m s 66.45 44.46 56.40 29.80 +jugea juger VER 56.12 96.96 0.42 5.34 ind:pas:3s; +jugeai juger VER 56.12 96.96 0.01 1.49 ind:pas:1s; +jugeaient juger VER 56.12 96.96 0.05 2.70 ind:imp:3p; +jugeais juger VER 56.12 96.96 0.34 2.91 ind:imp:1s;ind:imp:2s; +jugeait juger VER 56.12 96.96 0.40 12.64 ind:imp:3s; +jugeant juger VER 56.12 96.96 0.24 3.72 par:pre; +jugement jugement NOM m s 21.43 29.26 19.92 24.12 +jugements jugement NOM m p 21.43 29.26 1.51 5.14 +jugent juger VER 56.12 96.96 1.06 1.55 ind:pre:3p; +jugeâmes juger VER 56.12 96.96 0.00 0.14 ind:pas:1p; +jugeons juger VER 56.12 96.96 0.98 0.41 imp:pre:1p;ind:pre:1p; +jugeât juger VER 56.12 96.96 0.00 0.54 sub:imp:3s; +jugeote jugeote NOM f s 1.07 1.01 1.07 1.01 +juger juger VER 56.12 96.96 18.06 28.65 ind:pre:2p;inf; +jugera juger VER 56.12 96.96 1.42 1.49 ind:fut:3s; +jugerai juger VER 56.12 96.96 0.72 0.00 ind:fut:1s; +jugeraient juger VER 56.12 96.96 0.05 0.07 cnd:pre:3p; +jugerais juger VER 56.12 96.96 0.09 0.07 cnd:pre:1s; +jugerait juger VER 56.12 96.96 0.08 0.81 cnd:pre:3s; +jugeras juger VER 56.12 96.96 0.39 0.27 ind:fut:2s; +jugerez juger VER 56.12 96.96 0.81 0.88 ind:fut:2p; +jugeriez juger VER 56.12 96.96 0.05 0.41 cnd:pre:2p; +jugerons juger VER 56.12 96.96 0.22 0.07 ind:fut:1p; +jugeront juger VER 56.12 96.96 0.23 0.54 ind:fut:3p; +juges juge NOM m p 66.45 44.46 10.06 14.66 +jugeur jugeur NOM m s 0.01 0.00 0.01 0.00 +jugez juger VER 56.12 96.96 4.25 1.62 imp:pre:2p;ind:pre:2p; +jugiez juger VER 56.12 96.96 0.13 0.34 ind:imp:2p; +jugions juger VER 56.12 96.96 0.02 0.54 ind:imp:1p; +jugèrent juger VER 56.12 96.96 0.03 0.68 ind:pas:3p; +jugé juger VER m s 56.12 96.96 9.18 11.62 par:pas; +jugée juger VER f s 56.12 96.96 2.01 2.70 par:pas; +jugées juger VER f p 56.12 96.96 0.11 0.95 par:pas; +jugula juguler VER 0.39 0.61 0.00 0.14 ind:pas:3s; +jugulaire jugulaire NOM f s 0.60 1.96 0.53 1.89 +jugulaires jugulaire NOM f p 0.60 1.96 0.07 0.07 +jugulant juguler VER 0.39 0.61 0.00 0.07 par:pre; +jugule juguler VER 0.39 0.61 0.13 0.00 ind:pre:3s; +juguler juguler VER 0.39 0.61 0.21 0.27 inf; +jugulé juguler VER m s 0.39 0.61 0.05 0.00 par:pas; +jugulée juguler VER f s 0.39 0.61 0.00 0.14 par:pas; +jugés juger VER m p 56.12 96.96 1.88 1.89 par:pas; +juif juif ADJ m s 30.62 36.76 17.23 19.86 +juifs juif NOM m p 45.08 55.74 29.03 30.88 +juillet juillet NOM m 11.97 47.57 11.96 47.57 +juillets juillet NOM m p 11.97 47.57 0.01 0.00 +juin juin NOM m 13.40 51.28 13.40 51.28 +juive juif ADJ f s 30.62 36.76 8.43 8.99 +juiverie juiverie NOM f s 0.10 0.61 0.10 0.47 +juiveries juiverie NOM f p 0.10 0.61 0.00 0.14 +juives juif ADJ f p 30.62 36.76 0.54 1.35 +jujube jujube NOM m s 0.06 0.54 0.02 0.54 +jujubes jujube NOM m p 0.06 0.54 0.04 0.00 +jujubiers jujubier NOM m p 0.00 0.27 0.00 0.27 +jéjunale jéjunal ADJ f s 0.01 0.00 0.01 0.00 +jéjunum jéjunum NOM m s 0.04 0.00 0.04 0.00 +juke_box juke_box NOM m 1.61 1.89 1.58 1.69 +juke_box juke_box NOM m p 1.61 1.89 0.03 0.20 +julep julep NOM m s 0.02 0.41 0.02 0.27 +juleps julep NOM m p 0.02 0.41 0.00 0.14 +jules jules NOM m 4.13 3.51 4.13 3.51 +julien julien ADJ m s 0.47 2.84 0.47 1.76 +julienne julien NOM f s 0.04 0.68 0.04 0.68 +juliennes julien ADJ f p 0.47 2.84 0.00 0.07 +julot julot NOM m s 0.12 2.36 0.12 1.76 +julots julot NOM m p 0.12 2.36 0.00 0.61 +jumbo jumbo NOM m s 0.52 0.20 0.52 0.20 +jumeau jumeau ADJ m s 5.68 8.99 1.34 2.09 +jumeaux jumeau NOM m p 13.74 17.77 12.47 16.01 +jumelage jumelage NOM m s 0.01 0.07 0.01 0.07 +jumeler jumeler VER 0.17 0.54 0.00 0.07 inf; +jumelle jumeau ADJ f s 5.68 8.99 1.17 2.36 +jumellera jumeler VER 0.17 0.54 0.00 0.07 ind:fut:3s; +jumelles jumelle NOM f p 5.61 14.66 4.89 12.70 +jumelé jumeler VER m s 0.17 0.54 0.00 0.14 par:pas; +jumelée jumeler VER f s 0.17 0.54 0.00 0.07 par:pas; +jumelée jumelé ADJ f s 0.03 0.54 0.00 0.07 +jumelées jumeler VER f p 0.17 0.54 0.02 0.07 par:pas; +jumelés jumelé ADJ m p 0.03 0.54 0.02 0.20 +jument jument NOM f s 6.67 10.34 5.71 8.51 +jumenterie jumenterie NOM f s 0.00 0.07 0.00 0.07 +juments jument NOM f p 6.67 10.34 0.96 1.82 +jumper jumper NOM m s 2.26 0.00 2.26 0.00 +jumping jumping NOM m s 0.21 0.00 0.21 0.00 +jungien jungien ADJ m s 0.04 0.14 0.03 0.07 +jungiens jungien ADJ m p 0.04 0.14 0.01 0.07 +jungle jungle NOM f s 16.47 8.38 16.25 7.43 +jungles jungle NOM f p 16.47 8.38 0.22 0.95 +junior junior ADJ s 2.35 1.22 2.27 0.95 +juniors junior NOM p 2.05 0.54 0.35 0.41 +junker junker NOM m s 0.02 0.54 0.02 0.41 +junkers junker NOM m p 0.02 0.54 0.00 0.14 +junkie junkie NOM m s 5.15 1.42 3.22 0.81 +junkies junkie NOM m p 5.15 1.42 1.93 0.61 +junky junky NOM m s 0.15 0.07 0.15 0.07 +junte junte NOM f s 0.17 0.14 0.17 0.14 +jupe_culotte jupe_culotte NOM f s 0.02 0.34 0.02 0.27 +jupe jupe NOM f s 12.76 49.59 10.12 34.05 +jupe_culotte jupe_culotte NOM m p 0.02 0.34 0.00 0.07 +jupes jupe NOM f p 12.76 49.59 2.64 15.54 +jupette jupette NOM f s 0.66 1.55 0.63 1.42 +jupettes jupette NOM f p 0.66 1.55 0.04 0.14 +jupiers jupier NOM m p 0.00 0.07 0.00 0.07 +jupitérien jupitérien ADJ m s 0.02 0.34 0.02 0.14 +jupitérienne jupitérien ADJ f s 0.02 0.34 0.00 0.14 +jupitériens jupitérien ADJ m p 0.02 0.34 0.00 0.07 +jupon jupon NOM m s 3.00 6.89 1.35 2.77 +juponnée juponner VER f s 0.00 0.27 0.00 0.14 par:pas; +juponnés juponner VER m p 0.00 0.27 0.00 0.14 par:pas; +jupons jupon NOM m p 3.00 6.89 1.65 4.12 +jupée jupé ADJ f s 0.00 0.14 0.00 0.07 +jupées jupé ADJ f p 0.00 0.14 0.00 0.07 +jura jurer VER 148.40 81.76 0.20 5.54 ind:pas:3s; +jurai jurer VER 148.40 81.76 0.16 0.41 ind:pas:1s; +juraient jurer VER 148.40 81.76 0.17 1.62 ind:imp:3p; +jurais jurer VER 148.40 81.76 0.34 1.22 ind:imp:1s;ind:imp:2s; +jurait jurer VER 148.40 81.76 1.06 4.46 ind:imp:3s; +jurant jurer VER 148.40 81.76 0.58 4.93 par:pre; +jurançon jurançon NOM m s 0.00 0.07 0.00 0.07 +jurassien jurassien ADJ m s 0.00 0.14 0.00 0.07 +jurassien jurassien NOM m s 0.00 0.14 0.00 0.07 +jurassiens jurassien ADJ m p 0.00 0.14 0.00 0.07 +jurassiens jurassien NOM m p 0.00 0.14 0.00 0.07 +jurassique jurassique ADJ m s 0.29 0.00 0.28 0.00 +jurassiques jurassique ADJ f p 0.29 0.00 0.01 0.00 +jure jurer VER 148.40 81.76 104.04 31.62 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +jurent jurer VER 148.40 81.76 1.01 1.01 ind:pre:3p; +jurer jurer VER 148.40 81.76 7.57 7.57 inf; +jurera jurer VER 148.40 81.76 0.08 0.00 ind:fut:3s; +jurerai jurer VER 148.40 81.76 0.72 0.07 ind:fut:1s; +jurerais jurer VER 148.40 81.76 1.62 1.69 cnd:pre:1s;cnd:pre:2s; +jurerait jurer VER 148.40 81.76 0.38 2.16 cnd:pre:3s; +jureras jurer VER 148.40 81.76 0.16 0.07 ind:fut:2s; +jurerez jurer VER 148.40 81.76 0.05 0.00 ind:fut:2p; +jureriez jurer VER 148.40 81.76 0.05 0.14 cnd:pre:2p; +jureront jurer VER 148.40 81.76 0.04 0.07 ind:fut:3p; +jures jurer VER 148.40 81.76 4.75 1.01 ind:pre:2s; +jurez jurer VER 148.40 81.76 6.55 0.47 imp:pre:2p;ind:pre:2p; +juridiction juridiction NOM f s 2.63 1.49 2.53 1.15 +juridictionnel juridictionnel ADJ m s 0.04 0.00 0.01 0.00 +juridictionnelle juridictionnel ADJ f s 0.04 0.00 0.04 0.00 +juridictions juridiction NOM f p 2.63 1.49 0.09 0.34 +juridique juridique ADJ s 5.20 2.50 4.24 1.62 +juridiquement juridiquement ADV 0.14 0.27 0.14 0.27 +juridiques juridique ADJ p 5.20 2.50 0.95 0.88 +juriez jurer VER 148.40 81.76 0.13 0.00 ind:imp:2p; +jurisprudence jurisprudence NOM f s 0.82 0.34 0.82 0.34 +juriste juriste NOM s 2.57 0.88 1.95 0.34 +juristes juriste NOM p 2.57 0.88 0.62 0.54 +jéroboam jéroboam NOM m s 0.01 0.07 0.01 0.00 +jéroboams jéroboam NOM m p 0.01 0.07 0.00 0.07 +jurâmes jurer VER 148.40 81.76 0.00 0.07 ind:pas:1p; +juron juron NOM m s 2.10 9.93 0.42 3.31 +jurons juron NOM m p 2.10 9.93 1.68 6.62 +jurèrent jurer VER 148.40 81.76 0.02 0.54 ind:pas:3p; +juré jurer VER m s 148.40 81.76 17.59 16.69 par:pas; +jurée jurer VER f s 148.40 81.76 0.45 0.14 par:pas; +jurées jurer VER f p 148.40 81.76 0.01 0.00 par:pas; +jérémiade jérémiade NOM f s 0.93 1.89 0.14 0.14 +jérémiades jérémiade NOM f p 0.93 1.89 0.79 1.76 +jurés juré NOM m p 8.82 4.73 5.59 3.92 +jury jury NOM m s 18.80 5.27 18.65 5.14 +jurys jury NOM m p 18.80 5.27 0.15 0.14 +jus jus NOM m 22.36 23.04 22.36 23.04 +jusant jusant NOM m s 0.01 1.76 0.01 1.76 +jusqu_au jusqu_au PRE 0.34 0.07 0.34 0.07 +jusqu_à jusqu_à PRE 0.81 0.27 0.81 0.27 +jusqu jusqu PRE 2.26 0.07 2.26 0.07 +jusque_là jusque_là ADV 7.81 29.53 7.81 29.53 +jusque jusque PRE 15.05 37.50 15.05 37.50 +jusques jusques ADV 0.00 1.15 0.00 1.15 +jusquiame jusquiame NOM f s 0.11 0.07 0.11 0.07 +justaucorps justaucorps NOM m 0.22 0.61 0.22 0.61 +juste_milieu juste_milieu NOM m 0.00 0.07 0.00 0.07 +juste juste ADJ s 656.86 153.45 653.49 147.77 +justement justement ADV 62.08 78.18 62.08 78.18 +justes juste ADJ p 656.86 153.45 3.36 5.68 +justesse justesse NOM f s 1.91 8.58 1.91 8.58 +justice justice NOM s 50.96 46.28 50.96 46.22 +justices justice NOM f p 50.96 46.28 0.00 0.07 +justiciable justiciable ADJ m s 0.10 0.47 0.10 0.27 +justiciables justiciable ADJ p 0.10 0.47 0.00 0.20 +justicier justicier NOM m s 1.97 3.78 1.45 1.96 +justiciers justicier NOM m p 1.97 3.78 0.48 1.35 +justicière justicier NOM f s 1.97 3.78 0.03 0.47 +justifia justifier VER 15.55 36.01 0.00 0.27 ind:pas:3s; +justifiable justifiable ADJ m s 0.08 0.34 0.06 0.14 +justifiables justifiable ADJ f p 0.08 0.34 0.02 0.20 +justifiaient justifier VER 15.55 36.01 0.00 1.28 ind:imp:3p; +justifiais justifier VER 15.55 36.01 0.01 0.20 ind:imp:1s;ind:imp:2s; +justifiait justifier VER 15.55 36.01 0.17 4.53 ind:imp:3s; +justifiant justifier VER 15.55 36.01 0.07 0.68 par:pre; +justificatif justificatif NOM m s 0.49 0.20 0.26 0.20 +justificatifs justificatif NOM m p 0.49 0.20 0.23 0.00 +justification justification NOM f s 0.96 6.76 0.84 5.00 +justifications justification NOM f p 0.96 6.76 0.13 1.76 +justificative justificatif ADJ f s 0.02 0.34 0.01 0.20 +justificatives justificatif ADJ f p 0.02 0.34 0.00 0.14 +justifie justifier VER 15.55 36.01 3.94 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +justifient justifier VER 15.55 36.01 0.42 0.68 ind:pre:3p; +justifier justifier VER 15.55 36.01 7.37 14.93 inf; +justifiera justifier VER 15.55 36.01 0.08 0.27 ind:fut:3s; +justifierai justifier VER 15.55 36.01 0.04 0.07 ind:fut:1s; +justifieraient justifier VER 15.55 36.01 0.01 0.14 cnd:pre:3p; +justifierais justifier VER 15.55 36.01 0.01 0.07 cnd:pre:1s; +justifierait justifier VER 15.55 36.01 0.20 0.61 cnd:pre:3s; +justifiez justifier VER 15.55 36.01 0.52 0.14 imp:pre:2p;ind:pre:2p; +justifiât justifier VER 15.55 36.01 0.00 0.47 sub:imp:3s; +justifié justifier VER m s 15.55 36.01 1.38 2.91 par:pas; +justifiée justifier VER f s 15.55 36.01 0.84 2.36 par:pas; +justifiées justifier VER f p 15.55 36.01 0.27 0.68 par:pas; +justifiés justifier VER m p 15.55 36.01 0.23 1.01 par:pas; +justinien justinien ADJ m s 0.00 0.07 0.00 0.07 +jésuite jésuite NOM m s 1.54 5.07 0.61 2.09 +jésuites jésuite NOM m p 1.54 5.07 0.92 2.97 +jésuitique jésuitique ADJ s 0.02 0.41 0.02 0.34 +jésuitiques jésuitique ADJ m p 0.02 0.41 0.00 0.07 +jésuitière jésuitière NOM f s 0.00 0.07 0.00 0.07 +jésus jésus NOM m s 8.19 0.88 8.19 0.88 +juta juter VER 0.03 0.95 0.00 0.07 ind:pas:3s; +jutait juter VER 0.03 0.95 0.00 0.14 ind:imp:3s; +jute jute NOM m s 0.64 2.77 0.64 2.77 +juter juter VER 0.03 0.95 0.03 0.61 inf; +juteuse juteux ADJ f s 2.86 2.64 0.75 1.01 +juteuses juteux ADJ f p 2.86 2.64 0.53 0.47 +juteux juteux ADJ m 2.86 2.64 1.58 1.15 +juté juter VER m s 0.03 0.95 0.00 0.14 par:pas; +juvénile juvénile ADJ s 1.48 6.89 1.24 5.27 +juvéniles juvénile ADJ p 1.48 6.89 0.23 1.62 +juvénilité juvénilité NOM f s 0.00 0.20 0.00 0.20 +juxtaposaient juxtaposer VER 0.07 0.95 0.00 0.07 ind:imp:3p; +juxtaposais juxtaposer VER 0.07 0.95 0.00 0.07 ind:imp:1s; +juxtaposait juxtaposer VER 0.07 0.95 0.01 0.07 ind:imp:3s; +juxtaposant juxtaposer VER 0.07 0.95 0.02 0.00 par:pre; +juxtapose juxtaposer VER 0.07 0.95 0.03 0.07 ind:pre:1s;ind:pre:3s; +juxtaposent juxtaposer VER 0.07 0.95 0.00 0.14 ind:pre:3p; +juxtaposer juxtaposer VER 0.07 0.95 0.00 0.20 inf; +juxtaposition juxtaposition NOM f s 0.17 0.68 0.17 0.54 +juxtapositions juxtaposition NOM f p 0.17 0.68 0.00 0.14 +juxtaposèrent juxtaposer VER 0.07 0.95 0.00 0.07 ind:pas:3p; +juxtaposées juxtaposé ADJ f p 0.00 0.68 0.00 0.47 +juxtaposés juxtaposer VER m p 0.07 0.95 0.00 0.20 par:pas; +k_o k_o ADJ 0.02 0.07 0.02 0.07 +k_way k_way NOM m s 0.06 0.20 0.06 0.20 +k k NOM m 9.93 3.78 9.93 3.78 +ka ka NOM m s 0.29 0.07 0.29 0.07 +kabarde kabarde ADJ f s 0.00 0.07 0.00 0.07 +kabbale kabbale NOM f s 0.20 0.47 0.20 0.47 +kabbalistique kabbalistique ADJ s 0.00 0.07 0.00 0.07 +kabuki kabuki NOM m s 0.42 0.14 0.42 0.14 +kabyle kabyle ADJ s 0.01 1.01 0.01 0.61 +kabyles kabyle ADJ p 0.01 1.01 0.00 0.41 +kacha kacha NOM f s 0.00 0.34 0.00 0.34 +kacher kacher ADJ m s 0.02 0.14 0.02 0.14 +kachoube kachoube ADJ 0.10 0.00 0.10 0.00 +kaddisch kaddisch NOM m s 0.00 0.07 0.00 0.07 +kaddish kaddish NOM m s 0.20 0.00 0.20 0.00 +kadi kadi NOM m s 0.11 0.00 0.11 0.00 +kafir kafir NOM m s 0.05 0.00 0.05 0.00 +kafkaïen kafkaïen ADJ m s 0.02 0.07 0.02 0.07 +kaftan kaftan ADJ m s 0.04 0.00 0.02 0.00 +kaftans kaftan ADJ m p 0.04 0.00 0.01 0.00 +kaiser kaiser NOM m s 0.02 0.14 0.02 0.14 +kaki kaki ADJ 0.46 5.34 0.46 5.34 +kakis kaki NOM m p 0.68 1.15 0.29 0.27 +kala_azar kala_azar NOM m s 0.00 0.07 0.00 0.07 +kalachnikovs kalachnikov NOM f p 0.17 0.00 0.17 0.00 +kali kali NOM m s 0.19 0.00 0.19 0.00 +kaliémie kaliémie NOM f s 0.01 0.00 0.01 0.00 +kalmouk kalmouk ADJ m s 0.00 0.14 0.00 0.07 +kalmouks kalmouk ADJ m p 0.00 0.14 0.00 0.07 +kalpa kalpa NOM m s 0.01 0.07 0.01 0.07 +kaléidoscope kaléidoscope NOM m s 0.21 1.42 0.18 1.22 +kaléidoscopes kaléidoscope NOM m p 0.21 1.42 0.04 0.20 +kama kama NOM s 0.14 0.00 0.14 0.00 +kamala kamala NOM m s 0.07 0.00 0.07 0.00 +kami kami NOM m s 0.20 0.07 0.20 0.07 +kamikaze kamikaze NOM m s 1.26 2.09 0.73 1.01 +kamikazes kamikaze NOM m p 1.26 2.09 0.53 1.08 +kan kan NOM m s 0.12 0.27 0.12 0.27 +kana kana NOM m s 0.12 0.07 0.12 0.07 +kandjar kandjar NOM m s 0.00 0.07 0.00 0.07 +kangourou kangourou NOM m s 1.85 1.42 1.42 1.15 +kangourous kangourou NOM m p 1.85 1.42 0.42 0.27 +kanji kanji NOM m s 0.04 0.00 0.04 0.00 +kantien kantien ADJ m s 0.01 0.07 0.01 0.07 +kantisme kantisme NOM m s 0.00 0.20 0.00 0.20 +kaolin kaolin NOM m s 0.01 0.34 0.01 0.34 +kaori kaori NOM m s 0.01 0.00 0.01 0.00 +kapo kapo NOM m s 0.29 0.34 0.29 0.14 +kapok kapok NOM m s 0.04 0.34 0.04 0.34 +kapokier kapokier NOM m s 0.01 0.00 0.01 0.00 +kapos kapo NOM m p 0.29 0.34 0.00 0.20 +kaposi kaposi NOM m s 0.09 0.20 0.09 0.20 +kapout kapout NOM m s 0.01 0.20 0.01 0.20 +kappa kappa NOM m s 0.17 0.00 0.17 0.00 +karaoké karaoké NOM m s 0.99 0.00 0.97 0.00 +karaokés karaoké NOM m p 0.99 0.00 0.02 0.00 +karaté karaté NOM m s 2.64 0.95 2.64 0.95 +karatéka karatéka NOM s 0.20 0.14 0.20 0.07 +karatékas karatéka NOM p 0.20 0.14 0.00 0.07 +karen karen ADJ s 0.43 0.00 0.43 0.00 +kari kari NOM m s 0.19 0.07 0.19 0.07 +karité karité NOM m s 0.01 0.14 0.01 0.14 +karma karma NOM m s 10.73 0.14 10.73 0.14 +karmique karmique ADJ s 0.16 0.00 0.16 0.00 +kart kart NOM m s 0.30 0.00 0.30 0.00 +karting karting NOM m s 0.34 0.00 0.34 0.00 +kasbah kasbah NOM f 0.00 0.27 0.00 0.27 +kascher kascher ADJ s 0.13 0.27 0.13 0.27 +kasher kasher ADJ 0.63 0.41 0.63 0.41 +kastro kastro NOM m s 0.00 0.54 0.00 0.47 +kastros kastro NOM m p 0.00 0.54 0.00 0.07 +kata kata NOM m s 0.02 0.00 0.01 0.00 +katal katal NOM m s 0.01 0.00 0.01 0.00 +katangais katangais NOM m 0.10 0.14 0.10 0.14 +katas kata NOM m p 0.02 0.00 0.01 0.00 +katchinas katchina NOM m p 0.00 0.07 0.00 0.07 +katiba katiba NOM f s 0.00 0.07 0.00 0.07 +kava kava NOM m s 0.01 0.00 0.01 0.00 +kawa kawa NOM m s 0.00 3.11 0.00 3.11 +kayac kayac NOM m s 0.01 0.00 0.01 0.00 +kayak kayak NOM m s 0.34 0.14 0.34 0.14 +kayakiste kayakiste NOM s 0.01 0.00 0.01 0.00 +kazakh kazakh ADJ m s 0.33 0.07 0.13 0.00 +kazakhs kazakh ADJ m p 0.33 0.07 0.20 0.07 +kebab kebab NOM m s 0.78 0.07 0.55 0.07 +kebabs kebab NOM m p 0.78 0.07 0.23 0.00 +kebla kebla ADJ s 0.00 0.14 0.00 0.07 +keblas kebla ADJ f p 0.00 0.14 0.00 0.07 +keepsake keepsake NOM m s 0.05 0.00 0.05 0.00 +keffieh keffieh NOM m s 0.01 0.00 0.01 0.00 +keiretsu keiretsu NOM m s 0.07 0.00 0.07 0.00 +kekchose kekchose NOM f s 0.01 0.07 0.01 0.07 +kelvins kelvin NOM m p 0.03 0.00 0.03 0.00 +kendo kendo NOM m s 0.24 0.00 0.24 0.00 +kermesse kermesse NOM f s 0.96 2.77 0.93 2.30 +kermesses kermesse NOM f p 0.96 2.77 0.04 0.47 +kerrie kerrie NOM f s 0.04 0.00 0.04 0.00 +ket ket NOM m s 0.07 0.07 0.07 0.07 +ketch ketch NOM m s 0.11 0.07 0.11 0.07 +ketchup ketchup NOM m s 4.45 0.54 4.45 0.54 +keuf keuf NOM f s 2.83 0.88 1.00 0.00 +keufs keuf NOM f p 2.83 0.88 1.83 0.88 +keum keum NOM m s 0.35 0.20 0.27 0.20 +keums keum NOM m p 0.35 0.20 0.08 0.00 +kevlar kevlar NOM m s 0.26 0.00 0.26 0.00 +khôl khôl NOM m s 0.00 0.81 0.00 0.81 +khalife khalife NOM m s 0.02 0.27 0.02 0.27 +khamsin khamsin NOM m s 0.00 0.20 0.00 0.20 +khan khan NOM m s 0.30 6.55 0.21 1.49 +khanat khanat NOM m s 0.00 0.07 0.00 0.07 +khans khan NOM m p 0.30 6.55 0.10 5.07 +khat khat NOM m s 0.01 0.00 0.01 0.00 +khazar khazar ADJ s 0.00 0.14 0.00 0.14 +khmer khmer ADJ m s 0.28 0.00 0.27 0.00 +khmère khmer ADJ f s 0.28 0.00 0.01 0.00 +khâgne khâgne NOM f s 0.00 1.55 0.00 1.42 +khâgnes khâgne NOM f p 0.00 1.55 0.00 0.14 +khâgneux khâgneux NOM m 0.00 0.34 0.00 0.34 +khédival khédival ADJ m s 0.00 0.07 0.00 0.07 +khédive khédive NOM m s 0.03 0.88 0.03 0.88 +kibboutz kibboutz NOM m 1.85 0.27 1.85 0.27 +kibboutzim kibboutzim NOM m p 0.00 0.07 0.00 0.07 +kick kick NOM m s 0.47 0.34 0.42 0.34 +kicker kicker NOM m s 0.14 0.00 0.14 0.00 +kicks kick NOM m p 0.47 0.34 0.05 0.00 +kid kid NOM m s 6.62 7.36 5.71 6.82 +kidnappa kidnapper VER 15.21 1.08 0.00 0.07 ind:pas:3s; +kidnappait kidnapper VER 15.21 1.08 0.04 0.07 ind:imp:3s; +kidnappant kidnapper VER 15.21 1.08 0.04 0.00 par:pre; +kidnappe kidnapper VER 15.21 1.08 0.69 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +kidnappent kidnapper VER 15.21 1.08 0.15 0.00 ind:pre:3p; +kidnapper kidnapper VER 15.21 1.08 2.54 0.20 inf; +kidnapperai kidnapper VER 15.21 1.08 0.14 0.00 ind:fut:1s; +kidnapperaient kidnapper VER 15.21 1.08 0.11 0.00 cnd:pre:3p; +kidnapperas kidnapper VER 15.21 1.08 0.01 0.00 ind:fut:2s; +kidnapperez kidnapper VER 15.21 1.08 0.02 0.00 ind:fut:2p; +kidnappeur kidnappeur NOM m s 3.55 0.27 2.20 0.07 +kidnappeurs kidnappeur NOM m p 3.55 0.27 1.35 0.20 +kidnappez kidnapper VER 15.21 1.08 0.10 0.00 imp:pre:2p;ind:pre:2p; +kidnappiez kidnapper VER 15.21 1.08 0.03 0.00 ind:imp:2p; +kidnapping kidnapping NOM m s 5.58 0.54 5.33 0.54 +kidnappings kidnapping NOM m p 5.58 0.54 0.25 0.00 +kidnappons kidnapper VER 15.21 1.08 0.01 0.00 imp:pre:1p; +kidnappé kidnapper VER m s 15.21 1.08 6.66 0.20 par:pas; +kidnappée kidnapper VER f s 15.21 1.08 3.65 0.20 par:pas; +kidnappées kidnapper VER f p 15.21 1.08 0.28 0.14 par:pas; +kidnappés kidnapper VER m p 15.21 1.08 0.75 0.07 par:pas; +kids kid NOM m p 6.62 7.36 0.91 0.54 +kief kief NOM m s 0.02 0.00 0.02 0.00 +kierkegaardienne kierkegaardien NOM f s 0.00 0.07 0.00 0.07 +kif_kif kif_kif ADJ s 0.20 0.81 0.20 0.81 +kif kif NOM m s 1.25 2.77 1.25 2.77 +kiki kiki NOM m s 0.53 0.74 0.53 0.74 +kil kil NOM m s 0.17 0.54 0.16 0.34 +kilbus kilbus NOM m 0.00 0.27 0.00 0.27 +kilim kilim NOM m s 0.28 0.00 0.28 0.00 +killer killer NOM s 1.19 0.07 1.19 0.07 +kilo kilo NOM m s 22.54 24.19 5.19 5.27 +kilogramme kilogramme NOM m s 0.17 0.14 0.14 0.07 +kilogrammes kilogramme NOM m p 0.17 0.14 0.03 0.07 +kilohertz kilohertz NOM m 0.14 0.00 0.14 0.00 +kilomètre kilomètre NOM m s 24.80 62.23 3.73 6.28 +kilomètre_heure kilomètre_heure NOM m p 0.14 0.41 0.14 0.41 +kilomètres kilomètre NOM m p 24.80 62.23 21.07 55.95 +kilométrage kilométrage NOM m s 0.50 0.27 0.49 0.14 +kilométrages kilométrage NOM m p 0.50 0.27 0.01 0.14 +kilométrique kilométrique ADJ s 0.04 0.68 0.04 0.34 +kilométriques kilométrique ADJ f p 0.04 0.68 0.00 0.34 +kilos kilo NOM m p 22.54 24.19 17.35 18.92 +kilotonnes kilotonne NOM m p 0.10 0.14 0.10 0.14 +kilowattheure kilowattheure NOM m s 0.00 0.07 0.00 0.07 +kilowatts kilowatt NOM m p 0.00 0.34 0.00 0.34 +kils kil NOM m p 0.17 0.54 0.01 0.20 +kilt kilt NOM m s 0.55 0.68 0.50 0.68 +kilts kilt NOM m p 0.55 0.68 0.05 0.00 +kimono kimono NOM m s 2.11 2.43 1.84 1.89 +kimonos kimono NOM m p 2.11 2.43 0.27 0.54 +kinase kinase NOM f s 0.03 0.00 0.03 0.00 +kinescope kinescope NOM m s 0.01 0.00 0.01 0.00 +kinesthésie kinesthésie NOM f s 0.01 0.00 0.01 0.00 +king_charles king_charles NOM m 0.00 0.07 0.00 0.07 +kinnor kinnor NOM m s 0.00 0.07 0.00 0.07 +kino kino NOM m s 0.00 0.07 0.00 0.07 +kiné kiné NOM s 1.28 0.00 1.28 0.00 +kinésiques kinésique NOM f p 0.01 0.00 0.01 0.00 +kinésithérapeute kinésithérapeute NOM s 0.05 0.20 0.05 0.20 +kinésithérapie kinésithérapie NOM f s 0.07 0.00 0.07 0.00 +kiosk kiosk NOM m s 0.00 1.82 0.00 1.55 +kiosks kiosk NOM m p 0.00 1.82 0.00 0.27 +kiosque kiosque NOM m s 4.05 8.18 3.95 5.88 +kiosques kiosque NOM m p 4.05 8.18 0.10 2.30 +kip kip NOM m s 0.63 0.00 0.62 0.00 +kipa kipa NOM f s 0.01 1.89 0.01 1.89 +kippa kippa NOM f s 0.52 0.07 0.52 0.07 +kipper kipper NOM m s 0.04 0.07 0.04 0.00 +kippers kipper NOM m p 0.04 0.07 0.00 0.07 +kips kip NOM m p 0.63 0.00 0.01 0.00 +kir kir NOM m s 0.63 1.28 0.62 0.95 +kirghiz kirghiz NOM m 0.00 0.20 0.00 0.20 +kirghize kirghize NOM s 0.14 0.00 0.14 0.00 +kirghizes kirghize ADJ f p 0.00 0.14 0.00 0.07 +kirs kir NOM m p 0.63 1.28 0.01 0.34 +kirsch kirsch NOM m s 0.56 1.22 0.56 1.22 +kit kit NOM m s 7.33 0.34 6.99 0.34 +kitch kitch ADJ f s 0.17 0.00 0.17 0.00 +kitchenette kitchenette NOM f s 0.19 0.27 0.19 0.27 +kits kit NOM m p 7.33 0.34 0.34 0.00 +kitsch kitsch ADJ 0.23 0.68 0.23 0.68 +kiva kiva NOM f s 0.03 0.00 0.03 0.00 +kiwi kiwi NOM m s 0.00 0.14 0.00 0.07 +kiwis kiwi NOM m p 0.00 0.14 0.00 0.07 +klaxon klaxon NOM m s 5.55 5.74 4.89 3.24 +klaxonna klaxonner VER 4.29 3.24 0.03 0.27 ind:pas:3s; +klaxonnai klaxonner VER 4.29 3.24 0.00 0.14 ind:pas:1s; +klaxonnaient klaxonner VER 4.29 3.24 0.02 0.14 ind:imp:3p; +klaxonnais klaxonner VER 4.29 3.24 0.04 0.00 ind:imp:1s; +klaxonnait klaxonner VER 4.29 3.24 0.05 0.27 ind:imp:3s; +klaxonnant klaxonner VER 4.29 3.24 0.00 0.68 par:pre; +klaxonne klaxonner VER 4.29 3.24 2.26 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +klaxonnent klaxonner VER 4.29 3.24 0.07 0.14 ind:pre:3p; +klaxonner klaxonner VER 4.29 3.24 0.75 0.61 inf; +klaxonnera klaxonner VER 4.29 3.24 0.01 0.07 ind:fut:3s; +klaxonnerai klaxonner VER 4.29 3.24 0.26 0.00 ind:fut:1s; +klaxonnes klaxonner VER 4.29 3.24 0.23 0.00 ind:pre:2s; +klaxonnez klaxonner VER 4.29 3.24 0.39 0.07 imp:pre:2p;ind:pre:2p; +klaxonné klaxonner VER m s 4.29 3.24 0.19 0.41 par:pas; +klaxons klaxon NOM m p 5.55 5.74 0.66 2.50 +klebs klebs NOM m 0.01 0.00 0.01 0.00 +kleenex kleenex NOM m 1.35 2.91 1.35 2.91 +kleptomane kleptomane NOM s 0.16 0.00 0.14 0.00 +kleptomanes kleptomane NOM p 0.16 0.00 0.02 0.00 +kleptomanie kleptomanie NOM f s 0.02 0.00 0.02 0.00 +klystron klystron NOM m s 0.12 0.00 0.12 0.00 +km km ADV 0.01 0.00 0.01 0.00 +knickerbockers knickerbocker NOM m p 0.01 0.07 0.01 0.07 +knickers knicker NOM m p 0.03 0.07 0.03 0.07 +knock_out knock_out ADJ m s 0.19 0.20 0.19 0.20 +knout knout NOM m s 0.00 0.20 0.00 0.20 +koala koala NOM m s 0.19 0.14 0.15 0.14 +koalas koala NOM m p 0.19 0.14 0.04 0.00 +kobold kobold NOM m s 0.37 0.07 0.22 0.07 +kobolds kobold NOM m p 0.37 0.07 0.15 0.00 +kodak kodak NOM m s 0.01 0.47 0.01 0.47 +kodiak kodiak NOM m s 0.31 0.00 0.31 0.00 +kohl kohl NOM m s 0.00 0.14 0.00 0.14 +kola kola NOM m s 0.02 0.20 0.02 0.20 +kolatiers kolatier NOM m p 0.00 0.20 0.00 0.20 +kolkhoze kolkhoze NOM m s 1.11 0.41 1.11 0.41 +kolkhozien kolkhozien NOM m s 0.20 0.68 0.00 0.07 +kolkhozienne kolkhozien NOM f s 0.20 0.68 0.10 0.20 +kolkhoziennes kolkhozien NOM f p 0.20 0.68 0.00 0.14 +kolkhoziens kolkhozien NOM m p 0.20 0.68 0.10 0.27 +komi komi ADJ s 0.03 0.00 0.03 0.00 +komintern komintern NOM m s 0.01 0.54 0.01 0.54 +kommandantur kommandantur NOM f s 0.27 0.68 0.27 0.68 +kommando kommando NOM m s 0.28 0.14 0.28 0.14 +komsomol komsomol NOM m s 0.25 0.81 0.25 0.54 +komsomols komsomol NOM m p 0.25 0.81 0.00 0.27 +kondo kondo NOM m s 0.12 0.00 0.12 0.00 +kopeck kopeck NOM m s 1.52 0.61 1.30 0.47 +kopecks kopeck NOM m p 1.52 0.61 0.22 0.14 +kopeks kopek NOM m p 0.14 0.00 0.14 0.00 +kora kora NOM f s 0.01 0.00 0.01 0.00 +koran koran NOM m s 0.00 0.14 0.00 0.14 +korrigan korrigan NOM m s 0.03 0.20 0.01 0.07 +korrigans korrigan NOM m p 0.03 0.20 0.02 0.14 +korè korè NOM f s 0.00 0.07 0.00 0.07 +koré koré NOM f s 0.00 0.34 0.00 0.34 +kosovar kosovar NOM m s 0.01 0.00 0.01 0.00 +kot kot NOM m s 0.33 0.00 0.33 0.00 +koto koto NOM m s 0.02 0.07 0.02 0.07 +kouglof kouglof NOM m s 0.02 0.14 0.02 0.14 +koulak koulak NOM m s 0.11 0.47 0.00 0.27 +koulaks koulak NOM m p 0.11 0.47 0.11 0.20 +kouros kouros NOM m 0.00 0.27 0.00 0.27 +kraal kraal NOM m s 0.03 0.00 0.03 0.00 +krach krach NOM m s 0.15 0.41 0.15 0.34 +krachs krach NOM m p 0.15 0.41 0.00 0.07 +kraft kraft NOM m s 0.80 0.95 0.80 0.95 +krak krak NOM m s 0.01 0.00 0.01 0.00 +kraken kraken NOM m s 0.14 0.00 0.14 0.00 +kremlin kremlin NOM m s 0.00 0.07 0.00 0.07 +kreutzer kreutzer NOM m s 0.00 0.07 0.00 0.07 +kriegspiel kriegspiel NOM m s 0.00 0.14 0.00 0.14 +krill krill NOM m s 0.17 0.00 0.17 0.00 +kriss kriss NOM m 0.09 0.00 0.09 0.00 +kroumir kroumir NOM m s 0.01 0.27 0.01 0.20 +kroumirs kroumir NOM m p 0.01 0.27 0.00 0.07 +krypton krypton NOM m s 1.04 0.00 1.04 0.00 +ksar ksar NOM m s 0.00 0.07 0.00 0.07 +kébour kébour NOM m s 0.00 0.41 0.00 0.34 +kébours kébour NOM m p 0.00 0.41 0.00 0.07 +kéfir kéfir NOM m s 0.00 0.27 0.00 0.20 +kéfirs kéfir NOM m p 0.00 0.27 0.00 0.07 +kugelhof kugelhof NOM m s 0.04 0.07 0.04 0.07 +kula kula NOM f s 0.01 0.07 0.01 0.07 +kummel kummel NOM m s 0.01 0.34 0.01 0.34 +kumquat kumquat NOM m s 0.16 0.07 0.13 0.00 +kumquats kumquat NOM m p 0.16 0.07 0.03 0.07 +kung_fu kung_fu NOM m s 1.12 0.00 1.01 0.00 +kung_fu kung_fu NOM m s 1.12 0.00 0.10 0.00 +kényan kényan ADJ m s 0.02 0.00 0.02 0.00 +képi képi NOM m s 2.39 15.81 1.85 12.91 +képis képi NOM m p 2.39 15.81 0.55 2.91 +kérabau kérabau NOM m s 0.10 0.00 0.10 0.00 +kératinisée kératinisé ADJ f s 0.01 0.00 0.01 0.00 +kératoplastie kératoplastie NOM f s 0.01 0.00 0.01 0.00 +kératose kératose NOM f s 0.01 0.00 0.01 0.00 +kurde kurde ADJ s 0.17 0.20 0.16 0.07 +kurdes kurde ADJ p 0.17 0.20 0.01 0.14 +kérosène kérosène NOM m s 0.91 0.20 0.91 0.14 +kérosènes kérosène NOM m p 0.91 0.20 0.00 0.07 +kursaal kursaal NOM m s 0.20 0.07 0.20 0.07 +kurus kuru NOM m p 0.00 0.07 0.00 0.07 +kvas kvas NOM m 0.20 0.00 0.20 0.00 +kyrie_eleison kyrie_eleison NOM m 0.41 0.07 0.41 0.07 +kyrie kyrie NOM m 0.00 0.54 0.00 0.54 +kyrielle kyrielle NOM f s 0.03 1.42 0.03 1.22 +kyrielles kyrielle NOM f p 0.03 1.42 0.00 0.20 +kyste kyste NOM m s 0.57 0.20 0.51 0.07 +kystes kyste NOM m p 0.57 0.20 0.06 0.14 +kystique kystique ADJ f s 0.03 0.00 0.03 0.00 +l_ l_ ART:def m s 8129.41 12746.76 8129.41 12746.76 +l_un l_un PRO:ind 127.72 208.92 127.72 208.92 +l_une l_une PRO:ind f 36.12 93.58 36.12 93.58 +l_dopa l_dopa NOM f s 0.05 0.00 0.05 0.00 +l l ART:def --s 78.26 3.92 78.26 3.92 +lûmes lire VER 281.09 324.80 0.01 0.20 ind:pas:1p; +lût lire VER 281.09 324.80 0.00 0.47 sub:imp:3s; +la_la_la la_la_la ART:def f s 0.14 0.07 0.14 0.07 +la_plata la_plata NOM s 0.01 0.14 0.01 0.14 +la_plupart_de la_plupart_de ADJ:ind 3.94 7.30 3.94 7.30 +la_plupart_des la_plupart_des ADJ:ind 23.41 29.26 23.41 29.26 +la_plupart_du la_plupart_du ADJ:ind 5.07 7.91 5.07 7.91 +la_plupart la_plupart PRO:ind p 14.72 23.24 14.72 23.24 +la la ART:def f s 14946.48 23633.92 14946.48 23633.92 +laîche laîche NOM f s 0.06 0.07 0.06 0.00 +laîches laîche NOM f p 0.06 0.07 0.00 0.07 +laïc laïc ADJ m s 0.33 0.88 0.33 0.74 +laïciser laïciser VER 0.14 0.00 0.14 0.00 inf; +laïcité laïcité NOM f s 0.29 0.47 0.29 0.47 +laïcs laïc NOM p 0.32 0.95 0.16 0.68 +laïque laïque ADJ s 0.58 3.45 0.43 2.43 +laïques laïque ADJ p 0.58 3.45 0.15 1.01 +laïus laïus NOM m 1.78 1.08 1.78 1.08 +laïusse laïusser VER 0.00 0.07 0.00 0.07 ind:pre:3s; +labbe labbe NOM m s 0.00 0.14 0.00 0.07 +labbes labbe NOM m p 0.00 0.14 0.00 0.07 +label label NOM m s 1.59 0.54 1.30 0.47 +labelle labelle NOM m s 0.09 0.00 0.09 0.00 +labels label NOM m p 1.59 0.54 0.29 0.07 +labeur labeur NOM m s 3.73 9.80 3.71 8.85 +labeurs labeur NOM m p 3.73 9.80 0.03 0.95 +labial labial ADJ m s 0.02 0.41 0.00 0.27 +labiale labial ADJ f s 0.02 0.41 0.02 0.00 +labiales labial ADJ f p 0.02 0.41 0.00 0.07 +labialisant labialiser VER 0.00 0.07 0.00 0.07 par:pre; +labiaux labial ADJ m p 0.02 0.41 0.00 0.07 +labile labile ADJ s 0.01 0.27 0.01 0.27 +labo labo NOM m s 29.95 1.42 28.36 1.22 +laborantin laborantin NOM m s 0.12 0.27 0.09 0.07 +laborantine laborantin NOM f s 0.12 0.27 0.02 0.07 +laborantins laborantin NOM m p 0.12 0.27 0.01 0.14 +laboratoire laboratoire NOM m s 14.74 13.99 13.24 12.91 +laboratoires laboratoire NOM m p 14.74 13.99 1.51 1.08 +laborieuse laborieux ADJ f s 1.21 7.16 0.34 1.96 +laborieusement laborieusement ADV 0.02 1.62 0.02 1.62 +laborieuses laborieux ADJ f p 1.21 7.16 0.28 1.89 +laborieux laborieux ADJ m 1.21 7.16 0.60 3.31 +labos labo NOM m p 29.95 1.42 1.60 0.20 +labour labour NOM m s 0.67 6.62 0.39 2.64 +laboura labourer VER 2.56 7.03 0.00 0.07 ind:pas:3s; +labourable labourable ADJ s 0.01 0.00 0.01 0.00 +labourage labourage NOM m s 0.14 0.41 0.14 0.41 +labouraient labourer VER 2.56 7.03 0.01 0.41 ind:imp:3p; +labourais labourer VER 2.56 7.03 0.03 0.00 ind:imp:1s;ind:imp:2s; +labourait labourer VER 2.56 7.03 0.14 0.61 ind:imp:3s; +labourant labourer VER 2.56 7.03 0.03 0.54 par:pre; +laboure labourer VER 2.56 7.03 0.27 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +labourent labourer VER 2.56 7.03 0.13 0.20 ind:pre:3p; +labourer labourer VER 2.56 7.03 1.41 1.22 inf; +labourerait labourer VER 2.56 7.03 0.01 0.07 cnd:pre:3s; +laboureur laboureur NOM m s 0.20 2.43 0.17 1.42 +laboureurs laboureur NOM m p 0.20 2.43 0.02 1.01 +labours labour NOM m p 0.67 6.62 0.28 3.99 +labouré labourer VER m s 2.56 7.03 0.47 1.15 par:pas; +labourée labourer VER f s 2.56 7.03 0.02 1.08 par:pas; +labourées labourer VER f p 2.56 7.03 0.02 0.47 par:pas; +labourés labourer VER m p 2.56 7.03 0.01 0.54 par:pas; +labrador labrador NOM m s 0.36 0.34 0.30 0.27 +labradors labrador NOM m p 0.36 0.34 0.06 0.07 +labre labre NOM m s 0.00 0.20 0.00 0.07 +labres labre NOM m p 0.00 0.20 0.00 0.14 +labri labri NOM m s 0.02 0.00 0.01 0.00 +labris labri NOM m p 0.02 0.00 0.01 0.00 +labyrinthe labyrinthe NOM m s 5.05 8.31 4.90 7.03 +labyrinthes labyrinthe NOM m p 5.05 8.31 0.15 1.28 +labyrinthique labyrinthique ADJ s 0.05 0.27 0.02 0.20 +labyrinthiques labyrinthique ADJ p 0.05 0.27 0.03 0.07 +lac lac NOM m s 31.16 32.84 31.16 32.84 +lacandon lacandon ADJ s 0.00 0.07 0.00 0.07 +lacanien lacanien ADJ m s 0.01 0.07 0.01 0.07 +lacaniens lacanien NOM m p 0.00 0.14 0.00 0.07 +lace lacer VER 0.81 2.23 0.15 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lacent lacer VER 0.81 2.23 0.00 0.07 ind:pre:3p; +lacer lacer VER 0.81 2.23 0.56 0.68 inf; +lacet lacet NOM m s 4.40 13.78 0.83 5.27 +lacets lacet NOM m p 4.40 13.78 3.57 8.51 +lacis lacis NOM m 0.00 1.89 0.00 1.89 +lack lack NOM m s 0.16 0.00 0.16 0.00 +laconique laconique ADJ s 0.08 2.43 0.06 1.55 +laconiquement laconiquement ADV 0.01 0.61 0.01 0.61 +laconiques laconique ADJ p 0.08 2.43 0.02 0.88 +laconisme laconisme NOM m s 0.01 0.47 0.01 0.47 +lacrima_christi lacrima_christi NOM m 0.00 0.07 0.00 0.07 +lacryma_christi lacryma_christi NOM m s 0.00 0.34 0.00 0.20 +lacryma_christi lacryma_christi NOM m s 0.00 0.34 0.00 0.14 +lacrymal lacrymal ADJ m s 0.42 0.68 0.03 0.14 +lacrymale lacrymal ADJ f s 0.42 0.68 0.00 0.07 +lacrymales lacrymal ADJ f p 0.42 0.68 0.25 0.47 +lacrymaux lacrymal ADJ m p 0.42 0.68 0.14 0.00 +lacrymogène lacrymogène ADJ s 1.22 0.81 0.54 0.41 +lacrymogènes lacrymogène ADJ p 1.22 0.81 0.69 0.41 +lacs lacs NOM m 3.60 8.58 3.60 8.58 +lactaires lactaire NOM m p 0.00 0.20 0.00 0.20 +lactate lactate NOM m s 0.06 0.00 0.06 0.00 +lactation lactation NOM f s 0.05 0.00 0.05 0.00 +lactescent lactescent ADJ m s 0.00 0.14 0.00 0.07 +lactescente lactescent ADJ f s 0.00 0.14 0.00 0.07 +lacère lacérer VER 1.38 4.05 0.18 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lacèrent lacérer VER 1.38 4.05 0.14 0.20 ind:pre:3p; +lactifère lactifère ADJ f s 0.01 0.00 0.01 0.00 +lactique lactique ADJ s 0.12 0.00 0.12 0.00 +lactose lactose NOM m s 0.69 0.00 0.69 0.00 +lacté lacté ADJ m s 0.85 1.69 0.10 0.20 +lactée lacté ADJ f s 0.85 1.69 0.75 1.42 +lactés lacté ADJ m p 0.85 1.69 0.00 0.07 +lacé lacer VER m s 0.81 2.23 0.04 0.07 par:pas; +lacédémoniens lacédémonien NOM m p 0.00 0.07 0.00 0.07 +lacée lacer VER f s 0.81 2.23 0.00 0.07 par:pas; +lacées lacer VER f p 0.81 2.23 0.02 0.54 par:pas; +lacunaire lacunaire ADJ s 0.08 0.34 0.08 0.34 +lacune lacune NOM f s 0.44 2.23 0.09 0.68 +lacunes lacune NOM f p 0.44 2.23 0.35 1.55 +lacéra lacérer VER 1.38 4.05 0.00 0.20 ind:pas:3s; +lacéraient lacérer VER 1.38 4.05 0.00 0.14 ind:imp:3p; +lacérait lacérer VER 1.38 4.05 0.00 0.14 ind:imp:3s; +lacérant lacérer VER 1.38 4.05 0.15 0.41 par:pre; +lacération lacération NOM f s 1.64 0.00 1.00 0.00 +lacérations lacération NOM f p 1.64 0.00 0.64 0.00 +lacérer lacérer VER 1.38 4.05 0.34 1.01 inf; +lacérions lacérer VER 1.38 4.05 0.00 0.07 ind:imp:1p; +lacéré lacérer VER m s 1.38 4.05 0.26 0.68 par:pas; +lacérée lacérer VER f s 1.38 4.05 0.04 0.34 par:pas; +lacérées lacéré ADJ f p 0.10 1.22 0.02 0.34 +lacérés lacérer VER m p 1.38 4.05 0.26 0.27 par:pas; +lacés lacer VER m p 0.81 2.23 0.00 0.20 par:pas; +lacustre lacustre ADJ s 0.02 0.61 0.02 0.47 +lacustres lacustre ADJ m p 0.02 0.61 0.00 0.14 +lad lad NOM m s 0.20 0.74 0.17 0.54 +ladies ladies NOM f p 0.91 0.14 0.91 0.14 +ladino ladino NOM m s 0.00 0.07 0.00 0.07 +ladite ladite ADJ f s 0.33 1.82 0.33 1.82 +ladre ladre NOM s 0.01 0.27 0.01 0.20 +ladrerie ladrerie NOM f s 0.00 0.20 0.00 0.14 +ladreries ladrerie NOM f p 0.00 0.20 0.00 0.07 +ladres ladre NOM p 0.01 0.27 0.00 0.07 +lads lad NOM m p 0.20 0.74 0.03 0.20 +lady lady NOM f s 13.48 3.24 13.47 3.24 +ladys lady NOM f p 13.48 3.24 0.01 0.00 +lagan lagan NOM m s 0.05 0.00 0.05 0.00 +lagon lagon NOM m s 0.84 0.88 0.71 0.74 +lagons lagon NOM m p 0.84 0.88 0.13 0.14 +laguiole laguiole NOM m s 0.00 0.07 0.00 0.07 +lagunaire lagunaire ADJ m s 0.00 0.20 0.00 0.20 +lagune lagune NOM f s 2.84 8.92 2.40 6.69 +lagunes lagune NOM f p 2.84 8.92 0.44 2.23 +lai lai ADJ m s 1.05 0.14 1.04 0.14 +laid laid ADJ m s 18.54 26.82 9.52 10.41 +laide laid ADJ f s 18.54 26.82 6.23 9.73 +laidement laidement ADV 0.00 0.47 0.00 0.47 +laideron laideron NOM m s 0.47 0.68 0.26 0.20 +laiderons laideron NOM m p 0.47 0.68 0.21 0.47 +laides laid ADJ f p 18.54 26.82 1.51 3.11 +laideur laideur NOM f s 1.44 8.99 1.44 8.78 +laideurs laideur NOM f p 1.44 8.99 0.00 0.20 +laids laid ADJ m p 18.54 26.82 1.28 3.58 +laie laie NOM f s 0.01 1.76 0.01 1.62 +laies laie NOM f p 0.01 1.76 0.00 0.14 +lainage lainage NOM m s 0.17 4.59 0.01 2.50 +lainages lainage NOM m p 0.17 4.59 0.16 2.09 +laine laine NOM f s 6.41 37.03 6.27 34.86 +laines laine NOM f p 6.41 37.03 0.14 2.16 +laineurs laineur NOM m p 0.00 0.14 0.00 0.07 +laineuse laineux ADJ f s 0.06 1.89 0.00 0.47 +laineuses laineux ADJ f p 0.06 1.89 0.00 0.34 +laineux laineux ADJ m s 0.06 1.89 0.06 1.08 +lainier lainier ADJ m s 0.00 0.20 0.00 0.14 +lainière lainier ADJ f s 0.00 0.20 0.00 0.07 +laird laird NOM m s 0.36 0.07 0.36 0.07 +lais lai ADJ m p 1.05 0.14 0.01 0.00 +laissa laisser VER 1334.05 851.55 2.52 67.97 ind:pas:3s; +laissai laisser VER 1334.05 851.55 0.41 8.11 ind:pas:1s; +laissaient laisser VER 1334.05 851.55 1.69 23.92 ind:imp:3p; +laissais laisser VER 1334.05 851.55 4.54 12.36 ind:imp:1s;ind:imp:2s; +laissait laisser VER 1334.05 851.55 7.78 82.77 ind:imp:3s; +laissant laisser VER 1334.05 851.55 10.80 58.51 par:pre; +laissassent laisser VER 1334.05 851.55 0.00 0.07 sub:imp:3p; +laisse_la_moi laisse_la_moi NOM f s 0.14 0.00 0.14 0.00 +laisse laisser VER 1334.05 851.55 479.63 143.31 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +laissent laisser VER 1334.05 851.55 15.24 22.30 ind:pre:3p;sub:pre:3p; +laisser_aller laisser_aller NOM m 0.75 3.38 0.75 3.38 +laisser_faire laisser_faire NOM m 0.01 0.07 0.01 0.07 +laisser laisser VER 1334.05 851.55 243.08 192.03 inf;;inf;;inf;;inf;;inf;; +laissera laisser VER 1334.05 851.55 13.78 6.62 ind:fut:3s; +laisserai laisser VER 1334.05 851.55 28.33 5.81 ind:fut:1s; +laisseraient laisser VER 1334.05 851.55 1.23 2.09 cnd:pre:3p; +laisserais laisser VER 1334.05 851.55 7.47 2.64 cnd:pre:1s;cnd:pre:2s; +laisserait laisser VER 1334.05 851.55 5.18 8.72 cnd:pre:3s; +laisseras laisser VER 1334.05 851.55 3.19 0.74 ind:fut:2s; +laisserez laisser VER 1334.05 851.55 1.93 1.22 ind:fut:2p; +laisseriez laisser VER 1334.05 851.55 0.93 0.54 cnd:pre:2p; +laisserions laisser VER 1334.05 851.55 0.10 0.34 cnd:pre:1p; +laisserons laisser VER 1334.05 851.55 2.93 0.81 ind:fut:1p; +laisseront laisser VER 1334.05 851.55 5.74 2.50 ind:fut:3p; +laisses laisser VER 1334.05 851.55 36.40 5.00 ind:pre:2s;sub:pre:1p;sub:pre:2s; +laissez_faire laissez_faire NOM m 0.01 0.00 0.01 0.00 +laissez_passer laissez_passer NOM m 4.00 1.96 4.00 1.96 +laissez laisser VER 1334.05 851.55 265.61 31.42 imp:pre:2p;ind:pre:2p; +laissiez laisser VER 1334.05 851.55 2.39 0.95 ind:imp:2p;sub:pre:2p; +laissions laisser VER 1334.05 851.55 0.54 2.50 ind:imp:1p; +laissâmes laisser VER 1334.05 851.55 0.00 0.54 ind:pas:1p; +laissons laisser VER 1334.05 851.55 20.73 6.76 imp:pre:1p;ind:pre:1p; +laissât laisser VER 1334.05 851.55 0.01 2.97 sub:imp:3s; +laissèrent laisser VER 1334.05 851.55 0.42 4.73 ind:pas:3p; +laissé_pour_compte laissé_pour_compte NOM m s 0.00 0.07 0.00 0.07 +laissé laisser VER m s 1334.05 851.55 139.96 117.57 par:pas;par:pas;par:pas;par:pas; +laissée laisser VER f s 1334.05 851.55 20.90 20.47 ind:imp:3p;par:pas; +laissées laisser VER f p 1334.05 851.55 3.47 6.01 par:pas; +laissés_pour_compte laissés_pour_compte NOM m p 0.23 0.07 0.23 0.07 +laissés laisser VER m p 1334.05 851.55 7.12 9.26 par:pas; +lait lait NOM m s 59.62 62.91 59.41 62.23 +laitage laitage NOM m s 0.41 0.88 0.22 0.54 +laitages laitage NOM m p 0.41 0.88 0.20 0.34 +laitance laitance NOM f s 0.27 0.47 0.27 0.34 +laitances laitance NOM f p 0.27 0.47 0.00 0.14 +laiterie laiterie NOM f s 0.32 0.61 0.29 0.47 +laiteries laiterie NOM f p 0.32 0.61 0.03 0.14 +laites laite NOM f p 0.00 0.07 0.00 0.07 +laiteuse laiteux ADJ f s 0.32 10.41 0.10 4.86 +laiteuses laiteux ADJ f p 0.32 10.41 0.00 1.42 +laiteux laiteux ADJ m 0.32 10.41 0.22 4.12 +laitier laitier NOM m s 1.29 2.43 1.18 1.49 +laitiers laitier ADJ m p 1.26 0.74 0.66 0.07 +laitière laitier ADJ f s 1.26 0.74 0.38 0.47 +laitières laitier ADJ f p 1.26 0.74 0.05 0.14 +laiton laiton NOM m s 0.21 1.55 0.21 1.55 +laits lait NOM m p 59.62 62.91 0.21 0.68 +laitue laitue NOM f s 2.52 2.43 1.97 1.62 +laitues laitue NOM f p 2.52 2.43 0.56 0.81 +laizes laize NOM f p 0.00 0.14 0.00 0.14 +lala lala ONO 0.66 0.07 0.66 0.07 +lama lama NOM m s 2.13 0.74 1.23 0.47 +lamaïsme lamaïsme NOM m s 0.00 0.07 0.00 0.07 +lamais lamer VER 0.01 0.20 0.00 0.07 ind:imp:1s; +lamantin lamantin NOM m s 0.84 0.20 0.54 0.14 +lamantins lamantin NOM m p 0.84 0.20 0.29 0.07 +lamartiniennes lamartinien NOM f p 0.00 0.07 0.00 0.07 +lamas lama NOM m p 2.13 0.74 0.90 0.27 +lambada lambada NOM f s 0.13 0.00 0.13 0.00 +lambda lambda NOM m s 0.74 0.07 0.72 0.00 +lambdas lambda NOM m p 0.74 0.07 0.02 0.07 +lambeau lambeau NOM m s 2.41 14.26 0.61 3.51 +lambeaux lambeau NOM m p 2.41 14.26 1.80 10.74 +lambel lambel NOM m s 0.01 0.00 0.01 0.00 +lambi lambi NOM m s 0.00 0.07 0.00 0.07 +lambic lambic NOM m s 0.00 0.07 0.00 0.07 +lambin lambin ADJ m s 0.04 0.14 0.02 0.14 +lambinaient lambiner VER 0.62 1.15 0.00 0.14 ind:imp:3p; +lambinais lambiner VER 0.62 1.15 0.00 0.07 ind:imp:1s; +lambinait lambiner VER 0.62 1.15 0.00 0.07 ind:imp:3s; +lambinant lambiner VER 0.62 1.15 0.00 0.07 par:pre; +lambine lambiner VER 0.62 1.15 0.26 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lambiner lambiner VER 0.62 1.15 0.22 0.54 inf; +lambines lambiner VER 0.62 1.15 0.02 0.00 ind:pre:2s; +lambinez lambiner VER 0.62 1.15 0.05 0.00 imp:pre:2p;ind:pre:2p; +lambiniez lambiner VER 0.62 1.15 0.01 0.00 ind:imp:2p; +lambinions lambiner VER 0.62 1.15 0.00 0.07 ind:imp:1p; +lambinons lambiner VER 0.62 1.15 0.01 0.07 imp:pre:1p; +lambins lambin NOM m p 0.16 0.20 0.15 0.00 +lambiné lambiner VER m s 0.62 1.15 0.05 0.00 par:pas; +lambrequins lambrequin NOM m p 0.00 0.20 0.00 0.20 +lambris lambris NOM m 0.04 1.55 0.04 1.55 +lambrissage lambrissage NOM m s 0.01 0.07 0.01 0.07 +lambrissé lambrisser VER m s 0.02 0.27 0.01 0.07 par:pas; +lambrissée lambrissé ADJ f s 0.00 0.41 0.00 0.20 +lambrissées lambrisser VER f p 0.02 0.27 0.01 0.00 par:pas; +lambrusques lambrusque NOM f p 0.00 0.07 0.00 0.07 +lambswool lambswool NOM m s 0.00 0.14 0.00 0.14 +lame lame NOM f s 14.22 37.09 11.05 25.81 +lamedé lamedé NOM f s 0.00 0.81 0.00 0.68 +lamedu lamedu NOM m s 0.00 0.14 0.00 0.14 +lamedés lamedé NOM f p 0.00 0.81 0.00 0.14 +lamelle lamelle NOM f s 0.72 2.64 0.14 0.54 +lamelles lamelle NOM f p 0.72 2.64 0.59 2.09 +lamellibranches lamellibranche NOM m p 0.00 0.07 0.00 0.07 +lamelliforme lamelliforme ADJ m s 0.00 0.07 0.00 0.07 +lamenta lamenter VER 3.37 7.43 0.00 0.61 ind:pas:3s; +lamentable lamentable ADJ s 5.70 9.26 5.33 7.36 +lamentablement lamentablement ADV 0.44 1.82 0.44 1.82 +lamentables lamentable ADJ p 5.70 9.26 0.37 1.89 +lamentaient lamenter VER 3.37 7.43 0.00 0.47 ind:imp:3p; +lamentais lamenter VER 3.37 7.43 0.02 0.00 ind:imp:1s;ind:imp:2s; +lamentait lamenter VER 3.37 7.43 0.20 2.09 ind:imp:3s; +lamentant lamenter VER 3.37 7.43 0.06 0.41 par:pre; +lamentation lamentation NOM f s 1.35 4.80 0.47 0.95 +lamentations lamentation NOM f p 1.35 4.80 0.89 3.85 +lamente lamenter VER 3.37 7.43 1.31 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lamentent lamenter VER 3.37 7.43 0.15 0.54 ind:pre:3p; +lamenter lamenter VER 3.37 7.43 1.20 1.55 ind:pre:2p;inf; +lamentera lamenter VER 3.37 7.43 0.14 0.07 ind:fut:3s; +lamenterait lamenter VER 3.37 7.43 0.01 0.07 cnd:pre:3s; +lamenteront lamenter VER 3.37 7.43 0.02 0.07 ind:fut:3p; +lamentez lamenter VER 3.37 7.43 0.03 0.07 imp:pre:2p;ind:pre:2p; +lamentions lamenter VER 3.37 7.43 0.00 0.07 ind:imp:1p; +lamento lamento NOM m s 0.01 1.22 0.01 1.22 +lamentons lamenter VER 3.37 7.43 0.10 0.00 ind:pre:1p; +lamentèrent lamenter VER 3.37 7.43 0.00 0.07 ind:pas:3p; +lamenté lamenter VER m s 3.37 7.43 0.14 0.27 par:pas; +lamentés lamenter VER m p 3.37 7.43 0.00 0.07 par:pas; +lamer mettre VER 1004.84 1083.65 0.01 0.00 imp:pre:2p; +lames lame NOM f p 14.22 37.09 3.17 11.28 +lamie lamie NOM f s 0.00 0.07 0.00 0.07 +lamifié lamifié ADJ m s 0.00 0.14 0.00 0.07 +lamifiés lamifié ADJ m p 0.00 0.14 0.00 0.07 +laminage laminage NOM m s 0.01 0.07 0.01 0.00 +laminages laminage NOM m p 0.01 0.07 0.00 0.07 +laminaire laminaire NOM f s 0.00 0.14 0.00 0.07 +laminaires laminaire NOM f p 0.00 0.14 0.00 0.07 +laminait laminer VER 0.70 1.55 0.00 0.14 ind:imp:3s; +laminant laminer VER 0.70 1.55 0.01 0.00 par:pre; +lamine laminer VER 0.70 1.55 0.05 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +laminectomie laminectomie NOM f s 0.01 0.00 0.01 0.00 +laminer laminer VER 0.70 1.55 0.44 0.34 inf; +lamineront laminer VER 0.70 1.55 0.01 0.00 ind:fut:3p; +lamines laminer VER 0.70 1.55 0.00 0.07 ind:pre:2s; +laminoir laminoir NOM m s 0.01 0.47 0.00 0.34 +laminoirs laminoir NOM m p 0.01 0.47 0.01 0.14 +laminé laminer VER m s 0.70 1.55 0.11 0.47 par:pas; +laminée laminer VER f s 0.70 1.55 0.02 0.07 par:pas; +laminées laminer VER f p 0.70 1.55 0.01 0.14 par:pas; +laminés laminer VER m p 0.70 1.55 0.05 0.14 par:pas; +lampa lamper VER 0.41 1.69 0.14 0.20 ind:pas:3s; +lampadaire lampadaire NOM m s 1.89 6.76 1.61 2.84 +lampadaires lampadaire NOM m p 1.89 6.76 0.28 3.92 +lampadophore lampadophore ADJ s 0.00 0.14 0.00 0.14 +lampais lamper VER 0.41 1.69 0.00 0.07 ind:imp:1s; +lampait lamper VER 0.41 1.69 0.00 0.41 ind:imp:3s; +lampant lamper VER 0.41 1.69 0.00 0.20 par:pre; +lamparos lamparo NOM m p 0.00 0.14 0.00 0.14 +lampas lampas NOM m 0.00 0.07 0.00 0.07 +lampe_phare lampe_phare NOM f s 0.00 0.07 0.00 0.07 +lampe_tempête lampe_tempête NOM f s 0.00 0.95 0.00 0.68 +lampe lampe NOM f s 25.86 93.11 22.22 70.88 +lampent lamper VER 0.41 1.69 0.01 0.00 ind:pre:3p; +lamper lamper VER 0.41 1.69 0.00 0.20 inf; +lampe_tempête lampe_tempête NOM f p 0.00 0.95 0.00 0.27 +lampes lampe NOM f p 25.86 93.11 3.63 22.23 +lampez lamper VER 0.41 1.69 0.00 0.07 ind:pre:2p; +lampion lampion NOM m s 0.28 3.99 0.01 0.81 +lampions lampion NOM m p 0.28 3.99 0.27 3.18 +lampiste lampiste NOM m s 0.03 0.20 0.01 0.00 +lampisterie lampisterie NOM f s 0.00 0.27 0.00 0.20 +lampisteries lampisterie NOM f p 0.00 0.27 0.00 0.07 +lampistes lampiste NOM m p 0.03 0.20 0.02 0.20 +lampons lampon NOM m p 0.00 0.07 0.00 0.07 +lamproie lamproie NOM f s 0.04 0.41 0.03 0.07 +lamproies lamproie NOM f p 0.04 0.41 0.01 0.34 +lampé lamper VER m s 0.41 1.69 0.00 0.20 par:pas; +lampée lampée NOM f s 0.26 3.31 0.25 2.50 +lampées lampée NOM f p 0.26 3.31 0.01 0.81 +lampyres lampyre NOM m p 0.01 0.07 0.01 0.07 +lamé lamé ADJ m s 0.56 1.22 0.56 0.81 +lamée lamé ADJ f s 0.56 1.22 0.00 0.07 +lamées lamer VER f p 0.01 0.20 0.00 0.07 par:pas; +lamés lamé ADJ m p 0.56 1.22 0.00 0.34 +lance_engins lance_engins NOM m 0.02 0.00 0.02 0.00 +lance_flamme lance_flamme NOM m s 0.06 0.00 0.06 0.00 +lance_flammes lance_flammes NOM m 1.06 0.61 1.06 0.61 +lance_fusée lance_fusée NOM m s 0.01 0.00 0.01 0.00 +lance_fusées lance_fusées NOM m 0.12 0.61 0.12 0.61 +lance_grenade lance_grenade NOM m s 0.02 0.00 0.02 0.00 +lance_grenades lance_grenades NOM m 0.34 0.00 0.34 0.00 +lance_missiles lance_missiles NOM m 0.26 0.07 0.26 0.07 +lance_pierre lance_pierre NOM m s 0.25 0.07 0.25 0.07 +lance_pierres lance_pierres NOM m 0.39 1.42 0.39 1.42 +lance_roquette lance_roquette NOM m s 0.06 0.00 0.06 0.00 +lance_roquettes lance_roquettes NOM m 0.72 0.14 0.72 0.14 +lance_torpille lance_torpille NOM m s 0.00 0.07 0.00 0.07 +lance_torpilles lance_torpilles NOM m 0.03 0.41 0.03 0.41 +lance lancer VER 75.08 165.07 18.30 19.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +lancelot lancelot NOM m s 0.00 0.14 0.00 0.14 +lancement lancement NOM m s 8.88 2.03 8.63 1.96 +lancements lancement NOM m p 8.88 2.03 0.25 0.07 +lancent lancer VER 75.08 165.07 1.31 4.05 ind:pre:3p; +lancequine lancequiner VER 0.00 0.34 0.00 0.27 ind:pre:1s;ind:pre:3s; +lancequiner lancequiner VER 0.00 0.34 0.00 0.07 inf; +lancer lancer VER 75.08 165.07 18.42 26.08 inf; +lancera lancer VER 75.08 165.07 0.90 0.41 ind:fut:3s; +lancerai lancer VER 75.08 165.07 0.65 0.20 ind:fut:1s; +lanceraient lancer VER 75.08 165.07 0.01 0.07 cnd:pre:3p; +lancerais lancer VER 75.08 165.07 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +lancerait lancer VER 75.08 165.07 0.15 0.68 cnd:pre:3s; +lanceras lancer VER 75.08 165.07 0.18 0.07 ind:fut:2s; +lancerez lancer VER 75.08 165.07 0.26 0.00 ind:fut:2p; +lancerons lanceron NOM m p 0.18 0.00 0.18 0.00 +lanceront lancer VER 75.08 165.07 0.16 0.14 ind:fut:3p; +lancers lancer NOM m p 4.04 2.03 0.68 0.34 +lances lancer VER 75.08 165.07 1.91 0.47 ind:pre:2s;sub:pre:2s; +lancette lancette NOM f s 0.29 0.27 0.29 0.27 +lanceur lanceur NOM m s 2.25 0.54 1.84 0.34 +lanceurs lanceur NOM m p 2.25 0.54 0.39 0.20 +lanceuse lanceur NOM f s 2.25 0.54 0.02 0.00 +lancez lancer VER 75.08 165.07 5.83 0.47 imp:pre:2p;ind:pre:2p; +lancier lancier NOM m s 0.55 0.88 0.23 0.14 +lanciers lancier NOM m p 0.55 0.88 0.31 0.74 +lanciez lancer VER 75.08 165.07 0.10 0.00 ind:imp:2p; +lancinait lanciner VER 0.14 0.74 0.00 0.14 ind:imp:3s; +lancinance lancinance NOM f s 0.00 0.07 0.00 0.07 +lancinant lancinant ADJ m s 0.48 5.34 0.19 1.89 +lancinante lancinant ADJ f s 0.48 5.34 0.29 2.16 +lancinantes lancinant ADJ f p 0.48 5.34 0.01 0.95 +lancinants lancinant ADJ m p 0.48 5.34 0.00 0.34 +lancine lanciner VER 0.14 0.74 0.04 0.07 ind:pre:1s;ind:pre:3s; +lanciné lanciner VER m s 0.14 0.74 0.00 0.14 par:pas; +lancions lancer VER 75.08 165.07 0.05 0.20 ind:imp:1p; +lancèrent lancer VER 75.08 165.07 0.21 1.42 ind:pas:3p; +lancé lancer VER m s 75.08 165.07 17.31 24.66 par:pas; +lancée lancer VER f s 75.08 165.07 3.02 6.76 par:pas; +lancées lancer VER f p 75.08 165.07 0.68 2.84 par:pas; +lancéolés lancéolé ADJ m p 0.00 0.07 0.00 0.07 +lancés lancer VER m p 75.08 165.07 1.20 5.27 par:pas; +land land NOM m s 2.77 1.96 2.56 1.96 +landais landais ADJ m 0.01 0.74 0.01 0.20 +landaise landais NOM f s 0.01 0.07 0.01 0.00 +landaises landais ADJ f p 0.01 0.74 0.00 0.14 +landau landau NOM m s 1.01 4.59 0.98 3.65 +landaulet landaulet NOM m s 0.00 0.07 0.00 0.07 +landaus landau NOM m p 1.01 4.59 0.04 0.95 +lande lande NOM f s 1.69 10.47 1.57 8.04 +landerneau landerneau NOM m s 0.00 0.07 0.00 0.07 +landes lande NOM f p 1.69 10.47 0.12 2.43 +landiers landier NOM m p 0.00 0.20 0.00 0.20 +landing landing NOM m s 0.10 0.00 0.10 0.00 +landlord landlord NOM m s 0.01 0.00 0.01 0.00 +lands land NOM m p 2.77 1.96 0.21 0.00 +landsturm landsturm NOM m s 0.00 0.14 0.00 0.14 +landwehr landwehr NOM f s 0.00 0.27 0.00 0.27 +langage langage NOM m s 16.68 37.36 16.56 36.01 +langages langage NOM m p 16.68 37.36 0.11 1.35 +langagiers langagier ADJ m p 0.00 0.20 0.00 0.20 +lange langer VER 1.06 1.15 0.55 0.00 ind:pre:3s; +langeait langer VER 1.06 1.15 0.00 0.14 ind:imp:3s; +langeant langer VER 1.06 1.15 0.00 0.07 par:pre; +langer langer VER 1.06 1.15 0.23 0.68 inf; +langes lange NOM m p 0.85 1.62 0.75 1.55 +langoureuse langoureux ADJ f s 0.77 3.04 0.09 1.08 +langoureusement langoureusement ADV 0.02 0.47 0.02 0.47 +langoureuses langoureux ADJ f p 0.77 3.04 0.01 0.27 +langoureux langoureux ADJ m 0.77 3.04 0.67 1.69 +langouste langouste NOM f s 2.98 4.19 1.99 2.09 +langoustes langouste NOM f p 2.98 4.19 0.99 2.09 +langoustine langoustine NOM f s 0.48 0.47 0.22 0.00 +langoustines langoustine NOM f p 0.48 0.47 0.26 0.47 +langé langer VER m s 1.06 1.15 0.28 0.20 par:pas; +langue langue NOM f s 69.11 126.28 58.95 103.78 +langée langer VER f s 1.06 1.15 0.00 0.07 par:pas; +languedociens languedocien NOM m p 0.00 0.07 0.00 0.07 +langues langue NOM f p 69.11 126.28 10.17 22.50 +languette languette NOM f s 0.10 0.81 0.09 0.54 +languettes languette NOM f p 0.10 0.81 0.01 0.27 +langueur langueur NOM f s 0.36 4.66 0.36 3.78 +langueurs langueur NOM f p 0.36 4.66 0.00 0.88 +langui languir VER m s 5.99 3.72 0.34 0.20 par:pas; +languide languide ADJ s 0.20 1.55 0.10 1.28 +languides languide ADJ m p 0.20 1.55 0.10 0.27 +languir languir VER 5.99 3.72 1.45 1.08 inf; +languirait languir VER 5.99 3.72 0.01 0.07 cnd:pre:3s; +languirent languir VER 5.99 3.72 0.01 0.07 ind:pas:3p; +languiront languir VER 5.99 3.72 0.00 0.07 ind:fut:3p; +languis languir VER m p 5.99 3.72 1.80 0.27 ind:pre:1s;ind:pre:2s;par:pas; +languissaient languir VER 5.99 3.72 0.12 0.14 ind:imp:3p; +languissais languir VER 5.99 3.72 0.46 0.41 ind:imp:1s;ind:imp:2s; +languissait languir VER 5.99 3.72 0.49 0.68 ind:imp:3s; +languissamment languissamment ADV 0.01 0.34 0.01 0.34 +languissant languissant ADJ m s 0.91 2.16 0.49 0.81 +languissante languissant ADJ f s 0.91 2.16 0.28 0.74 +languissantes languissant ADJ f p 0.91 2.16 0.15 0.20 +languissants languissant ADJ m p 0.91 2.16 0.00 0.41 +languisse languir VER 5.99 3.72 0.02 0.00 sub:pre:1s;sub:pre:3s; +languissent languir VER 5.99 3.72 0.03 0.07 ind:pre:3p; +languisses languir VER 5.99 3.72 0.01 0.00 sub:pre:2s; +languissons languir VER 5.99 3.72 0.14 0.00 ind:pre:1p; +languit languir VER 5.99 3.72 1.10 0.47 ind:pre:3s;ind:pas:3s; +lanière lanière NOM f s 0.85 6.69 0.42 2.64 +lanières lanière NOM f p 0.85 6.69 0.43 4.05 +lanlaire lanlaire ADV 0.00 0.14 0.00 0.14 +lanoline lanoline NOM f s 0.09 0.14 0.09 0.14 +lansquenet lansquenet NOM m s 1.36 1.76 1.36 0.41 +lansquenets lansquenet NOM m p 1.36 1.76 0.00 1.35 +lansquine lansquine NOM f s 0.00 0.07 0.00 0.07 +lansquiner lansquiner VER 0.00 0.07 0.00 0.07 inf; +lanternant lanterner VER 0.10 0.20 0.00 0.07 par:pre; +lanterne_tempête lanterne_tempête NOM f s 0.00 0.07 0.00 0.07 +lanterne lanterne NOM f s 3.09 16.82 2.35 11.55 +lanterner lanterner VER 0.10 0.20 0.06 0.14 inf; +lanternes lanterne NOM f p 3.09 16.82 0.73 5.27 +lanternez lanterner VER 0.10 0.20 0.02 0.00 imp:pre:2p;ind:pre:2p; +lanternier lanternier NOM m s 0.00 0.14 0.00 0.14 +lanterné lanterner VER m s 0.10 0.20 0.01 0.00 par:pas; +lança lancer VER 75.08 165.07 0.79 38.72 ind:pas:3s; +lançai lancer VER 75.08 165.07 0.04 1.49 ind:pas:1s; +lançaient lancer VER 75.08 165.07 0.63 5.81 ind:imp:3p; +lançais lancer VER 75.08 165.07 0.41 1.49 ind:imp:1s;ind:imp:2s; +lançait lancer VER 75.08 165.07 0.89 15.41 ind:imp:3s; +lanthane lanthane NOM m s 0.01 0.00 0.01 0.00 +lançant lancer VER 75.08 165.07 0.60 8.11 par:pre; +lanças lancer VER 75.08 165.07 0.00 0.14 ind:pas:2s; +lançâmes lancer VER 75.08 165.07 0.00 0.14 ind:pas:1p; +lançons lancer VER 75.08 165.07 0.81 0.34 imp:pre:1p;ind:pre:1p; +lançât lancer VER 75.08 165.07 0.00 0.41 sub:imp:3s; +lao lao NOM m s 0.02 0.14 0.01 0.07 +laos lao NOM m p 0.02 0.14 0.01 0.07 +laotien laotien ADJ m s 0.02 0.20 0.02 0.00 +laotienne laotien ADJ f s 0.02 0.20 0.00 0.14 +laotiens laotien NOM m p 0.05 0.00 0.05 0.00 +lap lap NOM m s 0.08 0.27 0.08 0.27 +lapais laper VER 1.41 2.36 0.00 0.07 ind:imp:1s; +lapait laper VER 1.41 2.36 0.00 0.41 ind:imp:3s; +lapalissade lapalissade NOM f s 0.01 0.00 0.01 0.00 +lapant laper VER 1.41 2.36 0.00 0.47 par:pre; +laparoscopie laparoscopie NOM f s 0.09 0.00 0.09 0.00 +laparotomie laparotomie NOM f s 0.22 0.07 0.22 0.07 +lape laper VER 1.41 2.36 1.33 0.41 imp:pre:2s;ind:pre:3s; +lapement lapement NOM m s 0.00 0.27 0.00 0.07 +lapements lapement NOM m p 0.00 0.27 0.00 0.20 +lapent laper VER 1.41 2.36 0.00 0.07 ind:pre:3p; +laper laper VER 1.41 2.36 0.07 0.68 inf; +lapereau lapereau NOM m s 0.31 0.27 0.29 0.00 +lapereaux lapereau NOM m p 0.31 0.27 0.02 0.27 +lapida lapider VER 0.93 1.35 0.00 0.07 ind:pas:3s; +lapidaire lapidaire ADJ s 0.03 0.88 0.01 0.34 +lapidaires lapidaire ADJ p 0.03 0.88 0.02 0.54 +lapidait lapider VER 0.93 1.35 0.02 0.14 ind:imp:3s; +lapidant lapider VER 0.93 1.35 0.00 0.07 par:pre; +lapidation lapidation NOM f s 0.27 0.14 0.25 0.07 +lapidations lapidation NOM f p 0.27 0.14 0.02 0.07 +lapide lapider VER 0.93 1.35 0.13 0.07 ind:pre:3s; +lapident lapider VER 0.93 1.35 0.01 0.00 ind:pre:3p; +lapider lapider VER 0.93 1.35 0.27 0.34 inf; +lapiderait lapider VER 0.93 1.35 0.01 0.07 cnd:pre:3s; +lapideras lapider VER 0.93 1.35 0.01 0.00 ind:fut:2s; +lapidez lapider VER 0.93 1.35 0.07 0.00 imp:pre:2p; +lapidification lapidification NOM f s 0.00 0.07 0.00 0.07 +lapidifiés lapidifier VER m p 0.00 0.07 0.00 0.07 par:pas; +lapidèrent lapider VER 0.93 1.35 0.14 0.00 ind:pas:3p; +lapidé lapider VER m s 0.93 1.35 0.19 0.41 par:pas; +lapidée lapider VER f s 0.93 1.35 0.07 0.07 par:pas; +lapidés lapider VER m p 0.93 1.35 0.01 0.14 par:pas; +lapin lapin NOM m s 39.16 32.43 26.59 16.76 +lapine lapin NOM f s 39.16 32.43 0.25 0.41 +lapiner lapiner VER 0.00 0.07 0.00 0.07 inf; +lapines lapine NOM f p 0.13 0.00 0.13 0.00 +lapinière lapinière NOM f s 0.01 0.00 0.01 0.00 +lapins lapin NOM m p 39.16 32.43 12.32 15.14 +lapis_lazuli lapis_lazuli NOM m 0.01 0.41 0.01 0.41 +lapis lapis NOM m 0.03 0.14 0.03 0.14 +lapon lapon NOM m s 2.21 0.14 2.21 0.07 +lapone lapon ADJ f s 1.44 0.14 0.01 0.07 +lapones lapon ADJ f p 1.44 0.14 0.00 0.07 +laponne lapon ADJ f s 1.44 0.14 0.10 0.00 +lapons lapon NOM m p 2.21 0.14 0.01 0.00 +lappant lapper VER 0.00 0.47 0.00 0.14 par:pre; +lapper lapper VER 0.00 0.47 0.00 0.27 inf; +lappé lapper VER m s 0.00 0.47 0.00 0.07 par:pas; +laps laps NOM m 0.57 2.23 0.57 2.23 +lapsus lapsus NOM m 0.93 1.62 0.93 1.62 +lapé laper VER m s 1.41 2.36 0.00 0.27 par:pas; +lapées laper VER f p 1.41 2.36 0.01 0.00 par:pas; +laquaient laquer VER 0.12 3.72 0.00 0.07 ind:imp:3p; +laquais laquais NOM m 1.15 2.36 1.15 2.36 +laquait laquer VER 0.12 3.72 0.00 0.07 ind:imp:3s; +laque laque NOM f s 0.79 2.70 0.79 2.09 +laquelle laquelle PRO:rel f s 68.94 185.27 66.95 182.36 +laquer laquer VER 0.12 3.72 0.01 0.07 inf; +laquerai laquer VER 0.12 3.72 0.00 0.07 ind:fut:1s; +laques laque NOM f p 0.79 2.70 0.00 0.61 +laqué laqué ADJ m s 0.66 3.38 0.47 1.49 +laquée laqué ADJ f s 0.66 3.38 0.14 0.81 +laquées laqué ADJ f p 0.66 3.38 0.01 0.14 +laqués laqué ADJ m p 0.66 3.38 0.04 0.95 +larbin larbin NOM m s 3.17 3.72 2.24 1.96 +larbineries larbinerie NOM f p 0.00 0.07 0.00 0.07 +larbins larbin NOM m p 3.17 3.72 0.93 1.76 +larcin larcin NOM m s 0.60 2.30 0.43 1.22 +larcins larcin NOM m p 0.60 2.30 0.17 1.08 +lard lard NOM m s 8.62 11.28 8.49 11.01 +larda larder VER 0.07 1.35 0.00 0.07 ind:pas:3s; +lardage lardage NOM m s 0.00 0.07 0.00 0.07 +lardais larder VER 0.07 1.35 0.00 0.07 ind:imp:1s; +lardait larder VER 0.07 1.35 0.00 0.14 ind:imp:3s; +lardant larder VER 0.07 1.35 0.00 0.07 par:pre; +larde larder VER 0.07 1.35 0.01 0.14 ind:pre:1s;ind:pre:3s; +larder larder VER 0.07 1.35 0.04 0.41 inf; +lardeuss lardeuss NOM m 0.00 0.68 0.00 0.68 +lardeux lardeux ADJ m 0.00 0.07 0.00 0.07 +lardon lardon NOM m s 0.83 1.76 0.57 0.61 +lardons lardon NOM m p 0.83 1.76 0.26 1.15 +lards lard NOM m p 8.62 11.28 0.13 0.27 +lardé larder VER m s 0.07 1.35 0.02 0.27 par:pas; +lardu lardu NOM m s 0.03 3.85 0.01 1.49 +lardée larder VER f s 0.07 1.35 0.00 0.07 par:pas; +lardées larder VER f p 0.07 1.35 0.00 0.07 par:pas; +lardus lardu NOM m p 0.03 3.85 0.02 2.36 +lare lare ADJ m s 0.27 0.14 0.00 0.07 +lares lare ADJ m p 0.27 0.14 0.27 0.07 +larfeuil larfeuil NOM m s 0.13 0.27 0.13 0.20 +larfeuille larfeuille NOM m s 0.16 0.41 0.16 0.34 +larfeuilles larfeuille NOM m p 0.16 0.41 0.00 0.07 +larfeuils larfeuil NOM m p 0.13 0.27 0.00 0.07 +largable largable ADJ f s 0.02 0.00 0.02 0.00 +largage largage NOM m s 1.36 0.07 1.34 0.07 +largages largage NOM m p 1.36 0.07 0.02 0.00 +large large ADJ s 18.66 107.50 14.25 70.54 +largement largement ADV 5.98 26.76 5.98 26.76 +larges large ADJ p 18.66 107.50 4.41 36.96 +largesse largesse NOM f s 0.42 2.23 0.08 0.88 +largesses largesse NOM f p 0.42 2.23 0.34 1.35 +largeur largeur NOM f s 1.58 11.89 1.55 11.42 +largeurs largeur NOM f p 1.58 11.89 0.02 0.47 +larghetto larghetto NOM m s 0.00 0.07 0.00 0.07 +largo largo ADV 0.94 0.00 0.94 0.00 +largua larguer VER 14.61 6.89 0.03 0.20 ind:pas:3s; +larguaient larguer VER 14.61 6.89 0.01 0.07 ind:imp:3p; +larguais larguer VER 14.61 6.89 0.05 0.14 ind:imp:1s; +larguait larguer VER 14.61 6.89 0.08 0.41 ind:imp:3s; +larguant larguer VER 14.61 6.89 0.08 0.20 par:pre; +largue larguer VER 14.61 6.89 2.13 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +larguent larguer VER 14.61 6.89 0.27 0.20 ind:pre:3p; +larguer larguer VER 14.61 6.89 4.16 2.30 inf; +larguera larguer VER 14.61 6.89 0.16 0.00 ind:fut:3s; +larguerai larguer VER 14.61 6.89 0.04 0.07 ind:fut:1s; +larguerait larguer VER 14.61 6.89 0.03 0.07 cnd:pre:3s; +larguerez larguer VER 14.61 6.89 0.02 0.00 ind:fut:2p; +largueront larguer VER 14.61 6.89 0.02 0.00 ind:fut:3p; +largues larguer VER 14.61 6.89 0.30 0.07 ind:pre:2s; +largueur largueur NOM m s 0.02 0.00 0.02 0.00 +larguez larguer VER 14.61 6.89 1.01 0.20 imp:pre:2p;ind:pre:2p; +larguiez larguer VER 14.61 6.89 0.00 0.07 ind:imp:2p; +larguons larguer VER 14.61 6.89 0.00 0.07 imp:pre:1p; +largué larguer VER m s 14.61 6.89 4.20 1.28 par:pas; +larguée larguer VER f s 14.61 6.89 1.49 0.61 par:pas; +larguées largué ADJ f p 0.87 0.95 0.21 0.14 +largués larguer VER m p 14.61 6.89 0.45 0.27 par:pas; +larigot larigot NOM m s 0.00 0.41 0.00 0.41 +larme larme NOM f s 45.71 133.51 5.15 10.81 +larmes larme NOM f p 45.71 133.51 40.56 122.70 +larmichette larmichette NOM f s 0.01 0.27 0.01 0.20 +larmichettes larmichette NOM f p 0.01 0.27 0.00 0.07 +larmiers larmier NOM m p 0.00 0.07 0.00 0.07 +larmoie larmoyer VER 0.28 1.28 0.10 0.27 ind:pre:3s; +larmoiement larmoiement NOM m s 0.00 0.20 0.00 0.14 +larmoiements larmoiement NOM m p 0.00 0.20 0.00 0.07 +larmoient larmoyer VER 0.28 1.28 0.00 0.07 ind:pre:3p; +larmoyait larmoyer VER 0.28 1.28 0.01 0.20 ind:imp:3s; +larmoyant larmoyant ADJ m s 0.84 2.91 0.32 0.54 +larmoyante larmoyant ADJ f s 0.84 2.91 0.27 1.35 +larmoyantes larmoyant ADJ f p 0.84 2.91 0.09 0.20 +larmoyants larmoyant ADJ m p 0.84 2.91 0.16 0.81 +larmoyer larmoyer VER 0.28 1.28 0.15 0.41 inf; +larmoyeur larmoyeur ADJ m s 0.00 0.07 0.00 0.07 +larmoyons larmoyer VER 0.28 1.28 0.00 0.07 imp:pre:1p; +larmoyé larmoyer VER m s 0.28 1.28 0.00 0.07 par:pas; +larron larron NOM m s 0.51 1.82 0.34 0.95 +larronne larronner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +larrons larron NOM m p 0.51 1.82 0.17 0.88 +larsen larsen NOM m s 0.89 0.34 0.89 0.34 +larvaire larvaire ADJ s 0.09 1.08 0.07 0.68 +larvaires larvaire ADJ p 0.09 1.08 0.03 0.41 +larve larve NOM f s 3.52 3.92 1.92 1.69 +larves larve NOM f p 3.52 3.92 1.61 2.23 +larvicide larvicide NOM m s 0.01 0.00 0.01 0.00 +larvé larvé ADJ m s 0.03 0.88 0.00 0.14 +larvée larvé ADJ f s 0.03 0.88 0.03 0.61 +larvées larvé ADJ f p 0.03 0.88 0.00 0.14 +laryngite laryngite NOM f s 0.27 0.14 0.27 0.14 +laryngologique laryngologique ADJ f s 0.00 0.07 0.00 0.07 +laryngologiste laryngologiste NOM s 0.00 0.14 0.00 0.14 +laryngoscope laryngoscope NOM m s 0.19 0.07 0.18 0.00 +laryngoscopes laryngoscope NOM m p 0.19 0.07 0.01 0.07 +laryngoscopie laryngoscopie NOM f s 0.10 0.00 0.10 0.00 +laryngé laryngé ADJ m s 0.09 0.07 0.09 0.00 +laryngée laryngé ADJ f s 0.09 0.07 0.00 0.07 +larynx larynx NOM m 0.94 1.55 0.94 1.55 +las las ONO 0.12 0.74 0.12 0.74 +lasagne lasagne NOM f s 1.94 0.41 0.15 0.00 +lasagnes lasagne NOM f p 1.94 0.41 1.79 0.41 +lascar lascar NOM m s 1.34 3.92 0.79 1.89 +lascars lascar NOM m p 1.34 3.92 0.55 2.03 +lascif lascif ADJ m s 1.52 2.50 0.46 0.74 +lascifs lascif ADJ m p 1.52 2.50 0.05 0.27 +lascive lascif ADJ f s 1.52 2.50 0.21 0.54 +lascivement lascivement ADV 0.02 0.27 0.02 0.27 +lascives lascif ADJ f p 1.52 2.50 0.80 0.95 +lascivité lascivité NOM f s 0.16 0.34 0.16 0.27 +lascivités lascivité NOM f p 0.16 0.34 0.00 0.07 +laser laser NOM m s 7.87 0.95 5.87 0.81 +lasers laser NOM m p 7.87 0.95 2.00 0.14 +lassa lasser VER 7.43 24.32 0.05 0.74 ind:pas:3s; +lassai lasser VER 7.43 24.32 0.00 0.20 ind:pas:1s; +lassaient lasser VER 7.43 24.32 0.01 0.95 ind:imp:3p; +lassais lasser VER 7.43 24.32 0.08 0.68 ind:imp:1s;ind:imp:2s; +lassait lasser VER 7.43 24.32 0.06 2.91 ind:imp:3s; +lassant lassant ADJ m s 0.67 1.28 0.58 0.61 +lassante lassant ADJ f s 0.67 1.28 0.05 0.41 +lassantes lassant ADJ f p 0.67 1.28 0.02 0.20 +lassants lassant ADJ m p 0.67 1.28 0.02 0.07 +lasse las ADJ f s 16.46 35.00 8.33 10.07 +lassent lasser VER 7.43 24.32 0.50 0.74 ind:pre:3p; +lasser lasser VER 7.43 24.32 1.22 5.88 inf; +lassera lasser VER 7.43 24.32 0.39 0.00 ind:fut:3s; +lasserai lasser VER 7.43 24.32 0.22 0.47 ind:fut:1s; +lasseraient lasser VER 7.43 24.32 0.00 0.14 cnd:pre:3p; +lasserais lasser VER 7.43 24.32 0.04 0.27 cnd:pre:1s;cnd:pre:2s; +lasserait lasser VER 7.43 24.32 0.01 0.20 cnd:pre:3s; +lasserez lasser VER 7.43 24.32 0.02 0.00 ind:fut:2p; +lasseront lasser VER 7.43 24.32 0.04 0.07 ind:fut:3p; +lasses lasser VER 7.43 24.32 0.18 0.00 ind:pre:2s; +lassez lasser VER 7.43 24.32 0.10 0.14 imp:pre:2p;ind:pre:2p; +lassitude lassitude NOM f s 1.57 17.09 1.57 16.82 +lassitudes lassitude NOM f p 1.57 17.09 0.00 0.27 +lasso lasso NOM m s 1.02 1.28 0.94 1.08 +lassons lasser VER 7.43 24.32 0.00 0.07 ind:pre:1p; +lassos lasso NOM m p 1.02 1.28 0.09 0.20 +lassèrent lasser VER 7.43 24.32 0.00 0.27 ind:pas:3p; +lassé lasser VER m s 7.43 24.32 1.78 3.31 par:pas; +lassée lasser VER f s 7.43 24.32 0.42 1.42 par:pas; +lassées lasser VER f p 7.43 24.32 0.02 0.34 par:pas; +lassés lasser VER m p 7.43 24.32 0.23 0.68 par:pas; +lasure lasure NOM f s 0.01 0.00 0.01 0.00 +latence latence NOM f s 0.08 0.14 0.08 0.07 +latences latence NOM f p 0.08 0.14 0.00 0.07 +latent latent ADJ m s 1.25 2.84 0.21 0.88 +latente latent ADJ f s 1.25 2.84 0.76 1.22 +latentes latent ADJ f p 1.25 2.84 0.14 0.47 +latents latent ADJ m p 1.25 2.84 0.14 0.27 +latex latex NOM m 1.65 0.47 1.65 0.47 +laça lacer VER 0.81 2.23 0.00 0.20 ind:pas:3s; +laçage laçage NOM m s 0.03 0.41 0.03 0.41 +laçais lacer VER 0.81 2.23 0.01 0.00 ind:imp:2s; +laçait lacer VER 0.81 2.23 0.01 0.14 ind:imp:3s; +laçant lacer VER 0.81 2.23 0.01 0.14 par:pre; +laticlave laticlave NOM m s 0.00 0.07 0.00 0.07 +latifundistes latifundiste NOM p 0.00 0.07 0.00 0.07 +latin latin NOM m s 6.62 15.07 6.53 14.93 +latine latin ADJ f s 4.52 12.64 2.37 4.05 +latines latin ADJ f p 4.52 12.64 0.27 1.82 +latinisaient latiniser VER 0.00 0.20 0.00 0.07 ind:imp:3p; +latinismes latinisme NOM m p 0.00 0.07 0.00 0.07 +latiniste latiniste NOM s 0.03 0.27 0.02 0.20 +latinistes latiniste NOM p 0.03 0.27 0.01 0.07 +latinisé latiniser VER m s 0.00 0.20 0.00 0.07 par:pas; +latinisée latiniser VER f s 0.00 0.20 0.00 0.07 par:pas; +latinité latinité NOM f s 0.00 0.20 0.00 0.14 +latinités latinité NOM f p 0.00 0.20 0.00 0.07 +latino_américain latino_américain NOM m s 0.10 0.07 0.03 0.07 +latino_américain latino_américain NOM f s 0.10 0.07 0.03 0.00 +latino_américain latino_américain NOM m p 0.10 0.07 0.04 0.00 +latino latino NOM m s 2.89 0.00 1.61 0.00 +latinos latino NOM m p 2.89 0.00 1.27 0.00 +latins latin ADJ m p 4.52 12.64 0.10 2.30 +latitude latitude NOM f s 1.45 2.91 1.09 1.76 +latitudes latitude NOM f p 1.45 2.91 0.36 1.15 +latrine latrine NOM f s 0.82 2.50 0.14 0.14 +latrines latrine NOM f p 0.82 2.50 0.67 2.36 +lats lats NOM m 0.09 0.00 0.09 0.00 +latte latte NOM f s 1.15 9.46 0.76 2.03 +latter latter VER 0.29 0.07 0.11 0.07 inf; +lattes latte NOM f p 1.15 9.46 0.39 7.43 +lattis lattis NOM m 0.15 0.00 0.15 0.00 +latté latter VER m s 0.29 0.07 0.08 0.00 par:pas; +lattés latter VER m p 0.29 0.07 0.01 0.00 par:pas; +latéral latéral ADJ m s 2.10 5.68 0.77 0.81 +latérale latéral ADJ f s 2.10 5.68 1.00 2.77 +latéralement latéralement ADV 0.25 1.08 0.25 1.08 +latérales latéral ADJ f p 2.10 5.68 0.15 1.35 +latéralisée latéralisé ADJ f s 0.02 0.00 0.02 0.00 +latéralité latéralité NOM f s 0.00 0.07 0.00 0.07 +latéraux latéral ADJ m p 2.10 5.68 0.17 0.74 +latérite latérite NOM f s 0.00 0.61 0.00 0.61 +latviens latvien NOM m p 0.01 0.00 0.01 0.00 +laubé laubé NOM s 0.00 0.07 0.00 0.07 +laudanum laudanum NOM m s 0.45 0.20 0.45 0.20 +laudateur laudateur ADJ m s 0.00 0.07 0.00 0.07 +laudative laudatif ADJ f s 0.00 0.07 0.00 0.07 +laudes laude NOM f p 0.00 0.47 0.00 0.47 +laurier_cerise laurier_cerise NOM m s 0.00 0.20 0.00 0.07 +laurier_rose laurier_rose NOM m s 0.14 1.69 0.04 0.20 +laurier laurier NOM m s 2.27 9.32 0.90 3.58 +laurier_cerise laurier_cerise NOM m p 0.00 0.20 0.00 0.14 +laurier_rose laurier_rose NOM m p 0.14 1.69 0.10 1.49 +lauriers laurier NOM m p 2.27 9.32 1.37 5.74 +lauréat lauréat NOM m s 0.46 0.68 0.41 0.41 +lauréate lauréat ADJ f s 0.19 0.20 0.06 0.00 +lauréats lauréat NOM m p 0.46 0.68 0.05 0.27 +lausannoises lausannois ADJ f p 0.00 0.07 0.00 0.07 +lauzes lauze NOM f p 0.00 0.07 0.00 0.07 +lav lav NOM m 0.01 0.14 0.01 0.14 +lava laver VER 74.35 69.53 0.07 3.38 ind:pas:3s; +lavable lavable ADJ s 0.06 0.47 0.05 0.27 +lavables lavable ADJ m p 0.06 0.47 0.01 0.20 +lavabo lavabo NOM m s 3.38 16.89 2.56 13.85 +lavabos lavabo NOM m p 3.38 16.89 0.82 3.04 +lavage lavage NOM m s 5.09 3.24 5.01 2.64 +lavages lavage NOM m p 5.09 3.24 0.09 0.61 +lavai laver VER 74.35 69.53 0.00 0.41 ind:pas:1s; +lavaient laver VER 74.35 69.53 0.05 1.69 ind:imp:3p; +lavais laver VER 74.35 69.53 1.36 0.95 ind:imp:1s;ind:imp:2s; +lavait laver VER 74.35 69.53 1.23 5.88 ind:imp:3s; +lavallière lavallière NOM f s 0.03 0.95 0.02 0.88 +lavallières lavallière NOM f p 0.03 0.95 0.01 0.07 +lavande lavande NOM f s 1.53 7.23 1.53 6.82 +lavandes lavande NOM f p 1.53 7.23 0.00 0.41 +lavandin lavandin NOM m s 0.00 0.07 0.00 0.07 +lavandière lavandière NOM f s 0.31 1.49 0.30 0.47 +lavandières lavandière NOM f p 0.31 1.49 0.01 1.01 +lavant laver VER 74.35 69.53 0.56 2.03 par:pre; +lavasse lavasse NOM f s 0.23 0.47 0.23 0.47 +lave_auto lave_auto NOM m s 0.06 0.00 0.06 0.00 +lave_glace lave_glace NOM m s 0.03 0.20 0.03 0.20 +lave_linge lave_linge NOM m 0.83 0.00 0.83 0.00 +lave_mains lave_mains NOM m 0.00 0.07 0.00 0.07 +lave_pont lave_pont NOM m s 0.00 0.14 0.00 0.07 +lave_pont lave_pont NOM m p 0.00 0.14 0.00 0.07 +lave_vaisselle lave_vaisselle NOM m 0.88 0.20 0.88 0.20 +lave laver VER 74.35 69.53 16.98 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +lavedu lavedu NOM s 0.00 0.07 0.00 0.07 +lavement lavement NOM m s 1.38 0.68 1.21 0.68 +lavements lavement NOM m p 1.38 0.68 0.17 0.00 +lavent laver VER 74.35 69.53 0.94 0.88 ind:pre:3p; +laver laver VER 74.35 69.53 34.01 30.68 ind:pre:2p;inf; +lavera laver VER 74.35 69.53 0.87 0.27 ind:fut:3s; +laverai laver VER 74.35 69.53 1.25 0.61 ind:fut:1s; +laverais laver VER 74.35 69.53 0.05 0.14 cnd:pre:1s;cnd:pre:2s; +laverait laver VER 74.35 69.53 0.04 0.54 cnd:pre:3s; +laveras laver VER 74.35 69.53 0.26 0.20 ind:fut:2s; +laverez laver VER 74.35 69.53 0.27 0.00 ind:fut:2p; +laverie laverie NOM f s 2.42 1.01 2.27 0.88 +laveries laverie NOM f p 2.42 1.01 0.14 0.14 +laverions laver VER 74.35 69.53 0.00 0.07 cnd:pre:1p; +laverons laver VER 74.35 69.53 0.04 0.07 ind:fut:1p; +laveront laver VER 74.35 69.53 0.01 0.14 ind:fut:3p; +laves laver VER 74.35 69.53 3.24 0.41 ind:pre:2s; +lavette lavette NOM f s 1.57 1.28 1.20 1.22 +lavettes lavette NOM f p 1.57 1.28 0.38 0.07 +laveur laveur NOM m s 2.47 1.89 1.51 0.88 +laveurs laveur NOM m p 2.47 1.89 0.95 0.14 +laveuse laveur NOM f s 2.47 1.89 0.01 0.74 +laveuses laveuse NOM f p 0.03 0.00 0.03 0.00 +lavez laver VER 74.35 69.53 2.68 0.34 imp:pre:2p;ind:pre:2p; +lavions laver VER 74.35 69.53 0.01 0.20 ind:imp:1p; +lavis lavis NOM m 0.00 0.41 0.00 0.41 +lavoir lavoir NOM m s 0.15 5.34 0.15 5.14 +lavoirs lavoir NOM m p 0.15 5.34 0.00 0.20 +lavons laver VER 74.35 69.53 0.45 0.00 imp:pre:1p;ind:pre:1p; +lavèrent laver VER 74.35 69.53 0.01 0.34 ind:pas:3p; +lavé laver VER m s 74.35 69.53 6.95 8.38 par:pas; +lavée laver VER f s 74.35 69.53 1.91 2.64 par:pas; +lavées lavé ADJ f p 1.18 7.16 0.27 1.15 +lavure lavure NOM f s 0.00 0.14 0.00 0.07 +lavures lavure NOM f p 0.00 0.14 0.00 0.07 +lavés laver VER m p 74.35 69.53 0.86 1.01 par:pas; +laxatif laxatif NOM m s 0.98 0.41 0.73 0.34 +laxatifs laxatif NOM m p 0.98 0.41 0.24 0.07 +laxative laxatif ADJ f s 0.10 0.14 0.05 0.07 +laxatives laxatif ADJ f p 0.10 0.14 0.00 0.07 +laxisme laxisme NOM m s 0.28 0.20 0.28 0.20 +laxiste laxiste ADJ s 0.45 0.20 0.25 0.20 +laxistes laxiste ADJ p 0.45 0.20 0.20 0.00 +laxité laxité NOM f s 0.02 0.00 0.02 0.00 +laya layer VER 0.03 0.47 0.00 0.34 ind:pas:3s; +layer layer VER 0.03 0.47 0.03 0.14 inf; +layette layette NOM f s 0.18 2.09 0.18 1.35 +layettes layette NOM f p 0.18 2.09 0.00 0.74 +layon layon NOM m s 0.00 6.89 0.00 5.95 +layons layon NOM m p 0.00 6.89 0.00 0.95 +lazaret lazaret NOM m s 0.07 0.20 0.06 0.07 +lazarets lazaret NOM m p 0.07 0.20 0.01 0.14 +lazaro lazaro NOM m s 0.27 0.14 0.27 0.14 +lazingue lazingue NOM m s 0.00 0.27 0.00 0.27 +lazzi lazzi NOM m s 0.00 1.35 0.00 0.68 +lazzis lazzi NOM m p 0.00 1.35 0.00 0.68 +le le ART:def m s 13652.76 18310.95 13652.76 18310.95 +leader leader NOM m s 12.72 1.69 10.28 0.95 +leaders leader NOM m p 12.72 1.69 2.44 0.74 +leadership leadership NOM m s 0.38 0.14 0.38 0.14 +leasing leasing NOM m s 0.24 0.00 0.24 0.00 +lebel lebel NOM m s 0.00 1.35 0.00 0.81 +lebels lebel NOM m p 0.00 1.35 0.00 0.54 +leben leben NOM m s 0.02 0.27 0.02 0.27 +lecteur lecteur NOM m s 6.09 25.81 2.86 12.03 +lecteurs lecteur NOM m p 6.09 25.81 2.92 11.28 +lectorat lectorat NOM m s 0.15 0.00 0.15 0.00 +lectrice lecteur NOM f s 6.09 25.81 0.32 1.49 +lectrices lectrice NOM f p 0.22 0.00 0.22 0.00 +lecture lecture NOM f s 15.80 54.53 13.97 42.16 +lectures lecture NOM f p 15.80 54.53 1.83 12.36 +ledit ledit ADJ m s 0.32 4.46 0.32 4.46 +legato legato ADV 0.01 0.00 0.01 0.00 +leggins leggins NOM f p 0.00 0.61 0.00 0.61 +leghorns leghorn NOM f p 0.00 0.07 0.00 0.07 +lego lego NOM m s 0.44 0.07 0.35 0.07 +legos lego NOM m p 0.44 0.07 0.09 0.00 +legs legs NOM m 1.34 1.49 1.34 1.49 +lei lei NOM m p 0.80 0.34 0.80 0.34 +leishmaniose leishmaniose NOM f s 0.06 0.00 0.06 0.00 +leitmotiv leitmotiv NOM m s 0.06 1.22 0.06 1.22 +leitmotive leitmotive NOM m p 0.00 0.07 0.00 0.07 +lek lek NOM m s 0.01 0.00 0.01 0.00 +lem lem NOM m s 0.16 0.00 0.16 0.00 +lemmes lemme NOM m p 0.00 0.07 0.00 0.07 +lemming lemming NOM m s 0.16 0.07 0.07 0.00 +lemmings lemming NOM m p 0.16 0.07 0.09 0.07 +lendemain lendemain NOM m s 29.29 149.26 28.58 145.54 +lendemains lendemain NOM m p 29.29 149.26 0.71 3.72 +lent lent ADJ m s 16.41 64.12 9.15 23.31 +lente lent ADJ f s 16.41 64.12 4.67 21.55 +lentement lentement ADV 26.48 156.55 26.48 156.55 +lentes lent ADJ f p 16.41 64.12 0.94 7.23 +lenteur lenteur NOM f s 1.16 22.50 1.15 21.96 +lenteurs lenteur NOM f p 1.16 22.50 0.01 0.54 +lenticulaires lenticulaire ADJ m p 0.01 0.00 0.01 0.00 +lenticules lenticule NOM f p 0.00 0.07 0.00 0.07 +lentille lentille NOM f s 4.66 8.24 1.22 0.74 +lentilles lentille NOM f p 4.66 8.24 3.44 7.50 +lentisque lentisque NOM m s 0.00 0.88 0.00 0.07 +lentisques lentisque NOM m p 0.00 0.88 0.00 0.81 +lento lento ADV 0.05 0.14 0.05 0.14 +lents lent ADJ m p 16.41 64.12 1.65 12.03 +lepton lepton NOM m s 0.08 0.00 0.06 0.00 +leptonique leptonique ADJ m s 0.07 0.00 0.07 0.00 +leptons lepton NOM m p 0.08 0.00 0.02 0.00 +lequel lequel PRO:rel m s 64.31 137.09 59.66 133.99 +lerch lerch ADV 0.00 0.07 0.00 0.07 +lerche lerche ADV 0.00 4.12 0.00 4.12 +les les ART:def p 8720.38 14662.30 8720.38 14662.30 +lesbianisme lesbianisme NOM m s 0.12 0.07 0.12 0.07 +lesbien lesbien ADJ m s 8.24 1.15 0.49 0.00 +lesbienne lesbien ADJ f s 8.24 1.15 6.80 0.81 +lesbiennes lesbien NOM f p 5.38 0.41 2.56 0.34 +lesdites lesdites ADJ f p 0.00 0.20 0.00 0.20 +lesdits lesdits ADJ m p 0.13 0.54 0.13 0.54 +lesquelles lesquelles PRO:rel f p 11.75 43.11 11.60 41.55 +lesquels lesquels PRO:rel m p 10.42 47.91 10.00 45.14 +lessiva lessiver VER 0.91 3.31 0.00 0.07 ind:pas:3s; +lessivage lessivage NOM m s 0.02 0.20 0.02 0.20 +lessivaient lessiver VER 0.91 3.31 0.00 0.07 ind:imp:3p; +lessivait lessiver VER 0.91 3.31 0.00 0.14 ind:imp:3s; +lessivant lessiver VER 0.91 3.31 0.00 0.14 par:pre; +lessive lessive NOM f s 8.51 8.78 8.09 7.70 +lessiver lessiver VER 0.91 3.31 0.12 0.88 inf; +lessiverait lessiver VER 0.91 3.31 0.00 0.07 cnd:pre:3s; +lessives lessive NOM f p 8.51 8.78 0.42 1.08 +lessiveuse lessiveur NOM f s 0.04 2.70 0.04 2.30 +lessiveuses lessiveuse NOM f p 0.02 0.00 0.02 0.00 +lessivons lessiver VER 0.91 3.31 0.05 0.00 imp:pre:1p; +lessivé lessiver VER m s 0.91 3.31 0.50 1.08 par:pas; +lessivée lessiver VER f s 0.91 3.31 0.06 0.27 par:pas; +lessivés lessiver VER m p 0.91 3.31 0.05 0.54 par:pas; +lest lest NOM m s 0.97 0.68 0.97 0.68 +leste leste ADJ s 0.61 1.42 0.50 0.95 +lestement lestement ADV 0.02 0.68 0.02 0.68 +lester lester VER 2.27 2.70 1.97 0.41 inf; +lestera lester VER 2.27 2.70 0.01 0.00 ind:fut:3s; +lesterait lester VER 2.27 2.70 0.00 0.07 cnd:pre:3s; +lestes lester VER 2.27 2.70 0.14 0.00 ind:pre:2s; +lestez lester VER 2.27 2.70 0.01 0.00 ind:pre:2p; +lesté lester VER m s 2.27 2.70 0.07 1.08 par:pas; +lestée lester VER f s 2.27 2.70 0.03 0.41 par:pas; +lestées lester VER f p 2.27 2.70 0.01 0.07 par:pas; +lestés lester VER m p 2.27 2.70 0.01 0.54 par:pas; +let let ADJ 3.56 0.47 3.56 0.47 +letchis letchi NOM m p 0.00 0.07 0.00 0.07 +leçon leçon NOM f s 41.48 48.72 29.24 22.64 +leçons leçon NOM f p 41.48 48.72 12.23 26.08 +lette lette NOM s 0.03 0.00 0.01 0.00 +lettes lette NOM p 0.03 0.00 0.01 0.00 +letton letton NOM m s 0.14 0.34 0.10 0.07 +lettone letton ADJ f s 0.10 0.34 0.03 0.07 +lettonne letton ADJ f s 0.10 0.34 0.00 0.07 +lettonnes letton ADJ f p 0.10 0.34 0.00 0.07 +lettons letton NOM m p 0.14 0.34 0.04 0.27 +lettrage lettrage NOM m s 0.03 0.00 0.03 0.00 +lettre_clé lettre_clé NOM f s 0.14 0.00 0.14 0.00 +lettre lettre NOM f s 156.77 256.01 108.79 140.88 +lettres lettre NOM f p 156.77 256.01 47.98 115.14 +lettreur lettreur NOM m s 0.00 0.07 0.00 0.07 +lettrine lettrine NOM f s 0.00 0.20 0.00 0.14 +lettrines lettrine NOM f p 0.00 0.20 0.00 0.07 +lettriques lettrique ADJ m p 0.00 0.07 0.00 0.07 +lettristes lettriste ADJ p 0.00 0.07 0.00 0.07 +lettré lettré NOM m s 0.31 2.30 0.19 1.35 +lettrée lettré ADJ f s 0.23 0.95 0.01 0.07 +lettrés lettré ADJ m p 0.23 0.95 0.16 0.41 +leu leu NOM m s 0.92 4.73 0.92 4.73 +leucocytaire leucocytaire ADJ f s 0.01 0.00 0.01 0.00 +leucocyte leucocyte NOM m s 0.10 0.20 0.01 0.00 +leucocytes leucocyte NOM m p 0.10 0.20 0.09 0.20 +leucocytose leucocytose NOM f s 0.03 0.00 0.03 0.00 +leucoplasie leucoplasie NOM f s 0.01 0.07 0.01 0.07 +leucopénie leucopénie NOM f s 0.01 0.07 0.01 0.07 +leucose leucose NOM f s 0.00 0.41 0.00 0.41 +leucotomie leucotomie NOM f s 0.00 0.07 0.00 0.07 +leucémie leucémie NOM f s 1.90 0.61 1.72 0.54 +leucémies leucémie NOM f p 1.90 0.61 0.17 0.07 +leucémique leucémique NOM s 0.05 0.00 0.05 0.00 +leur leur PRO:per p 283.82 427.50 277.53 415.00 +leurrais leurrer VER 1.36 1.96 0.01 0.07 ind:imp:1s; +leurrait leurrer VER 1.36 1.96 0.00 0.27 ind:imp:3s; +leurre leurre NOM m s 2.67 2.91 2.12 2.16 +leurrent leurrer VER 1.36 1.96 0.01 0.07 ind:pre:3p; +leurrer leurrer VER 1.36 1.96 0.55 0.68 inf; +leurres leurre NOM m p 2.67 2.91 0.55 0.74 +leurrez leurrer VER 1.36 1.96 0.09 0.07 imp:pre:2p;ind:pre:2p; +leurrons leurrer VER 1.36 1.96 0.14 0.27 imp:pre:1p; +leurré leurrer VER m s 1.36 1.96 0.09 0.27 par:pas; +leurrés leurrer VER m p 1.36 1.96 0.03 0.07 par:pas; +leurs leurs ADJ:pos 243.56 886.55 243.56 886.55 +lev lev NOM m s 0.68 0.00 0.68 0.00 +leva lever VER 165.98 440.74 1.28 123.58 ind:pas:3s; +levage levage NOM m s 0.02 0.34 0.02 0.34 +levai lever VER 165.98 440.74 0.07 10.27 ind:pas:1s; +levaient lever VER 165.98 440.74 0.20 5.88 ind:imp:3p; +levain levain NOM m s 0.18 0.88 0.18 0.88 +levais lever VER 165.98 440.74 0.69 4.39 ind:imp:1s;ind:imp:2s; +levait lever VER 165.98 440.74 1.17 32.84 ind:imp:3s; +levant lever VER 165.98 440.74 1.36 28.78 par:pre; +levante levant ADJ f s 0.93 2.43 0.02 0.14 +levantin levantin ADJ m s 0.02 0.20 0.02 0.14 +levantines levantin NOM f p 0.01 0.47 0.00 0.07 +levantins levantin NOM m p 0.01 0.47 0.00 0.20 +lever lever VER 165.98 440.74 35.90 66.89 inf; +levers lever NOM m p 4.92 9.12 0.16 0.34 +leveur leveur NOM m s 0.03 0.34 0.02 0.07 +leveurs leveur NOM m p 0.03 0.34 0.01 0.07 +leveuse leveur NOM f s 0.03 0.34 0.00 0.20 +levez lever VER 165.98 440.74 22.23 2.23 imp:pre:2p;ind:pre:2p; +levier levier NOM m s 3.46 5.27 3.24 3.45 +leviers levier NOM m p 3.46 5.27 0.23 1.82 +leviez lever VER 165.98 440.74 0.35 0.07 ind:imp:2p; +levions lever VER 165.98 440.74 0.03 1.08 ind:imp:1p; +levâmes lever VER 165.98 440.74 0.00 0.34 ind:pas:1p; +levons lever VER 165.98 440.74 2.52 1.49 imp:pre:1p;ind:pre:1p; +levât lever VER 165.98 440.74 0.00 0.68 sub:imp:3s; +levreau levreau NOM m s 0.00 0.14 0.00 0.07 +levreaux levreau NOM m p 0.00 0.14 0.00 0.07 +levrette levrette NOM f s 0.65 1.01 0.65 0.95 +levrettes levrette NOM f p 0.65 1.01 0.00 0.07 +levèrent lever VER 165.98 440.74 0.12 7.50 ind:pas:3p; +levé lever VER m s 165.98 440.74 13.40 40.41 par:pas; +levée lever VER f s 165.98 440.74 6.41 13.78 par:pas; +levées lever VER f p 165.98 440.74 0.41 1.55 par:pas; +levure levure NOM f s 1.05 0.81 1.00 0.81 +levures levure NOM f p 1.05 0.81 0.05 0.00 +levés lever VER m p 165.98 440.74 0.58 6.08 par:pas; +lexical lexical ADJ m s 0.00 0.07 0.00 0.07 +lexicographes lexicographe NOM p 0.00 0.07 0.00 0.07 +lexie lexie NOM f s 0.05 0.07 0.05 0.07 +lexique lexique NOM m s 0.11 0.95 0.11 0.68 +lexiques lexique NOM m p 0.11 0.95 0.00 0.27 +lez lez PRE 0.36 0.14 0.36 0.14 +li li NOM m s 2.56 1.76 2.56 1.76 +lia lier VER 37.17 46.08 0.49 0.95 ind:pas:3s; +liage liage NOM m s 0.01 0.00 0.01 0.00 +liai lier VER 37.17 46.08 0.00 0.41 ind:pas:1s; +liaient lier VER 37.17 46.08 0.14 0.95 ind:imp:3p; +liais lier VER 37.17 46.08 0.02 0.20 ind:imp:1s; +liaison liaison NOM f s 20.34 31.96 18.41 26.69 +liaisons liaison NOM f p 20.34 31.96 1.94 5.27 +liait lier VER 37.17 46.08 0.71 3.72 ind:imp:3s; +liane liane NOM f s 0.77 4.59 0.34 1.08 +lianes liane NOM f p 0.77 4.59 0.43 3.51 +liant lier VER 37.17 46.08 0.12 0.81 par:pre; +liante liant ADJ f s 0.20 0.54 0.14 0.14 +liants liant ADJ m p 0.20 0.54 0.02 0.14 +liard liard NOM m s 0.23 0.54 0.19 0.27 +liardais liarder VER 0.00 0.07 0.00 0.07 ind:imp:1s; +liards liard NOM m p 0.23 0.54 0.03 0.27 +liasse liasse NOM f s 1.24 11.69 0.64 7.36 +liasses liasse NOM f p 1.24 11.69 0.60 4.32 +libanais libanais NOM m 0.87 1.69 0.85 1.42 +libanaise libanais ADJ f s 0.41 4.19 0.03 0.88 +libanaises libanaise NOM f p 0.05 0.00 0.03 0.00 +libation libation NOM f s 0.07 1.49 0.05 0.20 +libations libation NOM f p 0.07 1.49 0.02 1.28 +libeccio libeccio NOM m s 0.00 0.20 0.00 0.20 +libelle libelle NOM m s 0.14 0.54 0.13 0.27 +libeller libeller VER 0.04 0.47 0.00 0.07 inf; +libelles libelle NOM m p 0.14 0.54 0.01 0.27 +libellé libeller VER m s 0.04 0.47 0.04 0.07 par:pas; +libellée libeller VER f s 0.04 0.47 0.01 0.20 par:pas; +libellées libeller VER f p 0.04 0.47 0.00 0.14 par:pas; +libellule libellule NOM f s 1.17 3.38 1.07 2.16 +libellules libellule NOM f p 1.17 3.38 0.10 1.22 +liber liber NOM m s 0.03 0.14 0.03 0.14 +libera libera NOM m 0.16 0.07 0.16 0.07 +libero libero NOM m s 0.00 0.07 0.00 0.07 +libertaire libertaire ADJ s 0.56 0.47 0.56 0.34 +libertaires libertaire NOM p 0.02 0.14 0.01 0.07 +liberticide liberticide ADJ s 0.03 0.00 0.03 0.00 +libertin libertin NOM m s 1.25 3.24 1.05 1.69 +libertinage libertinage NOM m s 0.39 1.35 0.39 1.35 +libertine libertin ADJ f s 1.29 1.76 0.35 0.47 +libertines libertin ADJ f p 1.29 1.76 0.38 0.20 +libertins libertin NOM m p 1.25 3.24 0.16 0.95 +liberté liberté NOM f s 79.53 97.97 76.28 93.31 +libertés liberté NOM f p 79.53 97.97 3.26 4.66 +libidinal libidinal ADJ m s 0.00 0.47 0.00 0.20 +libidinale libidinal ADJ f s 0.00 0.47 0.00 0.07 +libidinales libidinal ADJ f p 0.00 0.47 0.00 0.07 +libidinaux libidinal ADJ m p 0.00 0.47 0.00 0.14 +libidineuse libidineux ADJ f s 0.36 0.81 0.04 0.14 +libidineuses libidineux ADJ f p 0.36 0.81 0.00 0.07 +libidineux libidineux ADJ m 0.36 0.81 0.32 0.61 +libido libido NOM f s 1.79 1.22 1.79 1.22 +libraire libraire NOM s 2.10 5.34 1.67 4.26 +libraires libraire NOM p 2.10 5.34 0.43 1.08 +librairie_papeterie librairie_papeterie NOM f s 0.00 0.20 0.00 0.20 +librairie librairie NOM f s 5.97 9.59 5.02 8.24 +librairies librairie NOM f p 5.97 9.59 0.95 1.35 +libre_arbitre libre_arbitre NOM m s 0.12 0.14 0.12 0.14 +libre_penseur libre_penseur NOM m s 0.04 0.14 0.04 0.14 +libre_penseur libre_penseur NOM f s 0.04 0.14 0.01 0.00 +libre_service libre_service NOM m s 0.04 0.34 0.04 0.34 +libre_échange libre_échange NOM m 0.32 0.14 0.32 0.14 +libre_échangiste libre_échangiste NOM s 0.03 0.00 0.03 0.00 +libre libre ADJ s 134.42 167.91 110.36 130.14 +librement librement ADV 6.80 12.84 6.80 12.84 +libres libre ADJ p 134.42 167.91 24.06 37.77 +librettiste librettiste NOM s 0.01 0.14 0.01 0.07 +librettistes librettiste NOM p 0.01 0.14 0.00 0.07 +libretto libretto NOM m s 0.04 0.00 0.04 0.00 +libère libérer VER 75.77 48.51 11.66 4.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +libèrent libérer VER 75.77 48.51 0.91 0.68 ind:pre:3p; +libères libérer VER 75.77 48.51 1.74 0.00 ind:pre:1p;ind:pre:2s; +libéra libérer VER 75.77 48.51 0.14 2.09 ind:pas:3s; +libérable libérable NOM s 0.09 0.00 0.07 0.00 +libérables libérable ADJ m p 0.07 0.27 0.01 0.00 +libérai libérer VER 75.77 48.51 0.02 0.07 ind:pas:1s; +libéraient libérer VER 75.77 48.51 0.16 0.81 ind:imp:3p; +libérais libérer VER 75.77 48.51 0.18 0.14 ind:imp:1s;ind:imp:2s; +libérait libérer VER 75.77 48.51 0.23 2.23 ind:imp:3s; +libéral libéral ADJ m s 3.07 7.23 1.12 3.04 +libérale libéral ADJ f s 3.07 7.23 1.11 2.03 +libéralement libéralement ADV 0.00 0.47 0.00 0.47 +libérales libéral ADJ f p 3.07 7.23 0.14 1.49 +libéralisation libéralisation NOM f s 0.04 0.27 0.04 0.27 +libéralisme libéralisme NOM m s 0.22 1.49 0.22 1.49 +libéralité libéralité NOM f s 0.11 0.54 0.11 0.14 +libéralités libéralité NOM f p 0.11 0.54 0.00 0.41 +libérant libérer VER 75.77 48.51 0.23 2.16 par:pre; +libérateur libérateur NOM m s 1.70 1.01 0.61 0.47 +libérateurs libérateur NOM m p 1.70 1.01 1.07 0.47 +libération libération NOM f s 8.43 45.00 8.31 44.86 +libérations libération NOM f p 8.43 45.00 0.12 0.14 +libératoire libératoire ADJ f s 0.10 0.07 0.10 0.07 +libératrice libérateur ADJ f s 0.99 2.43 0.34 0.74 +libératrices libérateur ADJ f p 0.99 2.43 0.02 0.34 +libéraux libéral NOM m p 1.47 1.62 0.97 0.61 +libérer libérer VER 75.77 48.51 26.16 14.53 inf;;inf;;inf;; +libérera libérer VER 75.77 48.51 1.48 0.27 ind:fut:3s; +libérerai libérer VER 75.77 48.51 0.62 0.00 ind:fut:1s; +libéreraient libérer VER 75.77 48.51 0.01 0.20 cnd:pre:3p; +libérerais libérer VER 75.77 48.51 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +libérerait libérer VER 75.77 48.51 0.63 0.41 cnd:pre:3s; +libéreras libérer VER 75.77 48.51 0.14 0.00 ind:fut:2s; +libérerez libérer VER 75.77 48.51 0.10 0.07 ind:fut:2p; +libérerons libérer VER 75.77 48.51 0.22 0.07 ind:fut:1p; +libéreront libérer VER 75.77 48.51 0.41 0.07 ind:fut:3p; +libérez libérer VER 75.77 48.51 6.65 0.34 imp:pre:2p;ind:pre:2p; +libérien libérien ADJ m s 0.01 0.00 0.01 0.00 +libériez libérer VER 75.77 48.51 0.12 0.00 ind:imp:2p; +libérions libérer VER 75.77 48.51 0.04 0.00 ind:imp:1p;sub:pre:1p; +libéro libéro NOM m s 0.01 0.00 0.01 0.00 +libérons libérer VER 75.77 48.51 0.34 0.14 imp:pre:1p;ind:pre:1p; +libérât libérer VER 75.77 48.51 0.00 0.14 sub:imp:3s; +libérèrent libérer VER 75.77 48.51 0.04 0.34 ind:pas:3p; +libéré libérer VER m s 75.77 48.51 15.75 10.20 par:pas; +libérée libérer VER f s 75.77 48.51 3.60 4.46 par:pas; +libérées libérer VER f p 75.77 48.51 0.41 0.81 par:pas; +libérés libérer VER m p 75.77 48.51 3.59 3.65 par:pas; +libyen libyen ADJ m s 0.18 0.20 0.02 0.14 +libyenne libyen ADJ f s 0.18 0.20 0.14 0.07 +libyens libyen NOM m p 0.11 0.07 0.10 0.00 +lice lice NOM f s 0.63 1.42 0.63 1.22 +licence licence NOM f s 8.27 7.84 7.37 7.03 +licences licence NOM f p 8.27 7.84 0.90 0.81 +licencia licencier VER 5.93 1.49 0.01 0.00 ind:pas:3s; +licenciables licenciable ADJ p 0.00 0.07 0.00 0.07 +licenciai licencier VER 5.93 1.49 0.00 0.07 ind:pas:1s; +licenciaient licencier VER 5.93 1.49 0.01 0.07 ind:imp:3p; +licenciait licencier VER 5.93 1.49 0.16 0.07 ind:imp:3s; +licenciant licencier VER 5.93 1.49 0.02 0.00 par:pre; +licencie licencier VER 5.93 1.49 0.16 0.00 ind:pre:1s;ind:pre:3s; +licenciement licenciement NOM m s 3.93 0.41 2.62 0.20 +licenciements licenciement NOM m p 3.93 0.41 1.31 0.20 +licencient licencier VER 5.93 1.49 0.26 0.07 ind:pre:3p; +licencier licencier VER 5.93 1.49 1.61 0.27 inf; +licenciera licencier VER 5.93 1.49 0.02 0.00 ind:fut:3s; +licencieuse licencieux ADJ f s 0.68 0.68 0.12 0.14 +licencieuses licencieux ADJ f p 0.68 0.68 0.15 0.20 +licencieux licencieux ADJ m 0.68 0.68 0.41 0.34 +licenciez licencier VER 5.93 1.49 0.20 0.07 imp:pre:2p;ind:pre:2p; +licencié licencier VER m s 5.93 1.49 2.57 0.47 par:pas; +licenciée licencier VER f s 5.93 1.49 0.60 0.34 par:pas; +licenciées licencié NOM f p 0.68 0.54 0.00 0.07 +licenciés licencier VER m p 5.93 1.49 0.31 0.07 par:pas; +lices lice NOM f p 0.63 1.42 0.00 0.20 +lichant licher VER 0.27 0.61 0.00 0.20 par:pre; +lichas licher VER 0.27 0.61 0.27 0.00 ind:pas:2s; +liche liche NOM m s 0.00 0.20 0.00 0.20 +lichen lichen NOM m s 0.11 2.70 0.10 1.28 +lichens lichen NOM m p 0.11 2.70 0.01 1.42 +licher licher VER 0.27 0.61 0.00 0.14 inf; +lichette lichette NOM f s 0.15 0.74 0.15 0.61 +lichettes lichette NOM f p 0.15 0.74 0.00 0.14 +lichotter lichotter VER 0.00 0.07 0.00 0.07 inf; +liché licher VER m s 0.27 0.61 0.00 0.07 par:pas; +lichée licher VER f s 0.27 0.61 0.00 0.14 par:pas; +lichées licher VER f p 0.27 0.61 0.00 0.07 par:pas; +liciers licier NOM m p 0.00 0.07 0.00 0.07 +licite licite ADJ s 0.32 0.74 0.29 0.61 +licites licite ADJ f p 0.32 0.74 0.03 0.14 +licol licol NOM m s 0.00 0.61 0.00 0.47 +licols licol NOM m p 0.00 0.61 0.00 0.14 +licorne licorne NOM f s 1.98 1.82 1.41 1.28 +licornes licorne NOM f p 1.98 1.82 0.57 0.54 +licou licou NOM m s 0.03 0.61 0.03 0.54 +licous licou NOM m p 0.03 0.61 0.00 0.07 +licteur licteur NOM m s 0.00 0.34 0.00 0.07 +licteurs licteur NOM m p 0.00 0.34 0.00 0.27 +licéité licéité NOM f s 0.00 0.07 0.00 0.07 +lido lido NOM m s 0.07 0.00 0.07 0.00 +lidocaïne lidocaïne NOM f s 0.36 0.00 0.36 0.00 +lie_de_vin lie_de_vin ADJ 0.00 1.08 0.00 1.08 +lie lier VER 37.17 46.08 4.02 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lied lied NOM m s 0.06 0.54 0.01 0.07 +lieder lied NOM m p 0.06 0.54 0.04 0.47 +lien lien NOM m s 35.89 38.38 23.47 18.18 +liens lien NOM m p 35.89 38.38 12.42 20.20 +lient lier VER 37.17 46.08 0.61 0.27 ind:pre:3p; +lier lier VER 37.17 46.08 5.07 6.62 inf; +liera lier VER 37.17 46.08 0.05 0.07 ind:fut:3s; +lierais lier VER 37.17 46.08 0.02 0.00 cnd:pre:1s; +lierait lier VER 37.17 46.08 0.02 0.27 cnd:pre:3s; +lieras lier VER 37.17 46.08 0.14 0.07 ind:fut:2s; +lieront lier VER 37.17 46.08 0.03 0.14 ind:fut:3p; +lierre lierre NOM m s 0.43 6.35 0.42 6.08 +lierres lierre NOM m p 0.43 6.35 0.01 0.27 +lies lier VER 37.17 46.08 0.29 0.00 ind:pre:2s;sub:pre:2s; +liesse liesse NOM f s 1.39 2.23 1.39 2.16 +liesses liesse NOM f p 1.39 2.23 0.00 0.07 +lieu_dit lieu_dit NOM m s 0.00 0.88 0.00 0.88 +lieu lieu NOM m s 182.00 267.57 153.12 213.38 +lieudit lieudit NOM m s 0.00 0.14 0.00 0.07 +lieudits lieudit NOM m p 0.00 0.14 0.00 0.07 +lieue lieue NOM f s 1.93 10.47 0.19 1.08 +lieues lieue NOM f p 1.93 10.47 1.74 9.39 +lieur lieur NOM m s 0.01 0.14 0.01 0.00 +lieus lieu NOM m p 182.00 267.57 0.15 0.07 +lieuse lieur NOM f s 0.01 0.14 0.00 0.14 +lieutenant_colonel lieutenant_colonel NOM m s 1.74 1.42 1.73 1.42 +lieutenant_pilote lieutenant_pilote NOM m s 0.00 0.07 0.00 0.07 +lieutenant lieutenant NOM m s 80.99 54.93 80.05 52.36 +lieutenant_colonel lieutenant_colonel NOM m p 1.74 1.42 0.01 0.00 +lieutenants lieutenant NOM m p 80.99 54.93 0.94 2.57 +lieux_dits lieux_dits NOM m p 0.00 0.41 0.00 0.41 +lieux lieu NOM m p 182.00 267.57 28.73 54.12 +liez lier VER 37.17 46.08 0.15 0.07 imp:pre:2p;ind:pre:2p; +lift lift NOM m s 0.61 0.07 0.52 0.07 +lifter lifter VER 0.27 0.07 0.22 0.00 inf; +liftier liftier NOM m s 0.39 0.54 0.36 0.41 +liftiers liftier NOM m p 0.39 0.54 0.00 0.14 +lifting lifting NOM m s 1.40 0.07 1.19 0.07 +liftings lifting NOM m p 1.40 0.07 0.22 0.00 +liftière liftier NOM f s 0.39 0.54 0.02 0.00 +lifts lift NOM m p 0.61 0.07 0.10 0.00 +lifté lifté ADJ m s 0.05 0.14 0.00 0.07 +liftée lifté ADJ f s 0.05 0.14 0.04 0.07 +liftées lifter VER f p 0.27 0.07 0.01 0.07 par:pas; +ligament ligament NOM m s 1.12 0.47 0.29 0.00 +ligamentaire ligamentaire ADJ f s 0.02 0.00 0.02 0.00 +ligaments ligament NOM m p 1.12 0.47 0.83 0.47 +ligature ligature NOM f s 0.46 0.20 0.30 0.07 +ligaturer ligaturer VER 0.13 0.47 0.05 0.14 inf; +ligatures ligature NOM f p 0.46 0.20 0.16 0.14 +ligaturez ligaturer VER 0.13 0.47 0.01 0.07 imp:pre:2p;ind:pre:2p; +ligaturé ligaturer VER m s 0.13 0.47 0.04 0.14 par:pas; +ligaturée ligaturer VER f s 0.13 0.47 0.02 0.14 par:pas; +lige lige ADJ s 0.14 0.20 0.14 0.14 +liges lige ADJ m p 0.14 0.20 0.00 0.07 +light light ADJ 3.76 0.27 3.76 0.27 +ligna ligner VER 0.06 0.20 0.00 0.07 ind:pas:3s; +lignage lignage NOM m s 0.13 0.41 0.13 0.34 +lignages lignage NOM m p 0.13 0.41 0.00 0.07 +lignards lignard NOM m p 0.00 0.07 0.00 0.07 +ligne ligne NOM f s 89.83 162.30 69.42 101.01 +ligner ligner VER 0.06 0.20 0.00 0.07 inf; +lignes ligne NOM f p 89.83 162.30 20.41 61.28 +ligneuses ligneux ADJ f p 0.00 0.41 0.00 0.20 +ligneux ligneux ADJ m p 0.00 0.41 0.00 0.20 +lignite lignite NOM m s 0.14 0.61 0.00 0.54 +lignites lignite NOM m p 0.14 0.61 0.14 0.07 +ligné ligner VER m s 0.06 0.20 0.01 0.07 par:pas; +lignée lignée NOM f s 4.83 5.07 4.67 4.80 +lignées lignée NOM f p 4.83 5.07 0.16 0.27 +ligot ligot NOM m s 0.01 0.27 0.01 0.00 +ligota ligoter VER 4.49 5.07 0.10 0.20 ind:pas:3s; +ligotage ligotage NOM m s 0.01 0.20 0.01 0.20 +ligotaient ligoter VER 4.49 5.07 0.00 0.20 ind:imp:3p; +ligotait ligoter VER 4.49 5.07 0.01 0.27 ind:imp:3s; +ligotant ligoter VER 4.49 5.07 0.01 0.07 par:pre; +ligote ligoter VER 4.49 5.07 0.91 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ligotent ligoter VER 4.49 5.07 0.16 0.61 ind:pre:3p; +ligoter ligoter VER 4.49 5.07 0.48 0.61 inf; +ligoterai ligoter VER 4.49 5.07 0.14 0.00 ind:fut:1s; +ligoterait ligoter VER 4.49 5.07 0.01 0.00 cnd:pre:3s; +ligoterons ligoter VER 4.49 5.07 0.10 0.00 ind:fut:1p; +ligotez ligoter VER 4.49 5.07 0.80 0.00 imp:pre:2p;ind:pre:2p; +ligotons ligoter VER 4.49 5.07 0.01 0.00 imp:pre:1p; +ligots ligot NOM m p 0.01 0.27 0.00 0.27 +ligotèrent ligoter VER 4.49 5.07 0.00 0.07 ind:pas:3p; +ligoté ligoter VER m s 4.49 5.07 0.91 1.69 par:pas; +ligotée ligoter VER f s 4.49 5.07 0.29 0.54 par:pas; +ligotées ligoter VER f p 4.49 5.07 0.01 0.14 par:pas; +ligotés ligoter VER m p 4.49 5.07 0.53 0.34 par:pas; +liguaient liguer VER 1.07 1.76 0.01 0.14 ind:imp:3p; +liguait liguer VER 1.07 1.76 0.01 0.27 ind:imp:3s; +liguant liguer VER 1.07 1.76 0.01 0.07 par:pre; +ligue ligue NOM f s 2.97 2.09 2.74 1.42 +liguent liguer VER 1.07 1.76 0.17 0.00 ind:pre:3p; +liguer liguer VER 1.07 1.76 0.22 0.27 inf; +ligues ligue NOM f p 2.97 2.09 0.23 0.68 +ligueur ligueur NOM m s 0.00 0.27 0.00 0.14 +ligueurs ligueur NOM m p 0.00 0.27 0.00 0.14 +liguez liguer VER 1.07 1.76 0.16 0.00 ind:pre:2p; +ligure ligure ADJ f s 0.00 0.20 0.00 0.14 +ligures ligure ADJ p 0.00 0.20 0.00 0.07 +liguèrent liguer VER 1.07 1.76 0.00 0.07 ind:pas:3p; +ligué liguer VER m s 1.07 1.76 0.15 0.00 par:pas; +liguées liguer VER f p 1.07 1.76 0.03 0.34 par:pas; +ligués liguer VER m p 1.07 1.76 0.13 0.41 par:pas; +lilas lilas NOM m 2.28 5.47 2.28 5.47 +liliacées liliacée NOM f p 0.14 0.00 0.14 0.00 +lilial lilial ADJ m s 0.00 0.68 0.00 0.41 +liliale lilial ADJ f s 0.00 0.68 0.00 0.27 +lilium lilium NOM m s 0.01 0.07 0.01 0.07 +lilliputien lilliputien ADJ m s 0.36 0.68 0.12 0.41 +lilliputienne lilliputien ADJ f s 0.36 0.68 0.02 0.20 +lilliputiens lilliputien ADJ m p 0.36 0.68 0.22 0.07 +lillois lillois NOM m 0.00 0.27 0.00 0.20 +lilloise lillois NOM f s 0.00 0.27 0.00 0.07 +lima limer VER 1.07 3.11 0.00 0.07 ind:pas:3s; +limace limace NOM f s 4.01 6.35 2.89 4.05 +limaces limace NOM f p 4.01 6.35 1.12 2.30 +limage limage NOM m s 0.26 0.14 0.26 0.14 +limaient limer VER 1.07 3.11 0.00 0.07 ind:imp:3p; +limaille limaille NOM f s 0.02 1.55 0.02 1.55 +limait limer VER 1.07 3.11 0.00 0.54 ind:imp:3s; +liman liman NOM m s 0.01 0.00 0.01 0.00 +limande limande NOM f s 0.09 0.68 0.08 0.61 +limandes limande NOM f p 0.09 0.68 0.01 0.07 +limant limer VER 1.07 3.11 0.00 0.14 par:pre; +limaçon limaçon NOM m s 0.02 0.54 0.01 0.27 +limaçons limaçon NOM m p 0.02 0.54 0.01 0.27 +limbe limbe NOM m s 0.81 3.18 0.00 0.07 +limbes limbe NOM m p 0.81 3.18 0.81 3.11 +limbique limbique ADJ s 0.31 0.00 0.31 0.00 +limbo limbo NOM m s 0.36 0.00 0.36 0.00 +lime lime NOM f s 1.56 3.65 1.48 2.91 +liment limer VER 1.07 3.11 0.01 0.07 ind:pre:3p; +limer limer VER 1.07 3.11 0.50 0.74 inf; +limerick limerick NOM m s 0.04 0.07 0.03 0.00 +limericks limerick NOM m p 0.04 0.07 0.01 0.07 +limes lime NOM f p 1.56 3.65 0.08 0.74 +limette limette NOM f s 0.07 0.00 0.07 0.00 +limez limer VER 1.07 3.11 0.00 0.07 ind:pre:2p; +limier limier NOM m s 1.12 0.88 0.77 0.54 +limiers limier NOM m p 1.12 0.88 0.35 0.34 +liminaire liminaire ADJ s 0.07 0.00 0.07 0.00 +limions limer VER 1.07 3.11 0.00 0.07 ind:imp:1p; +limita limiter VER 11.19 19.26 0.01 0.00 ind:pas:3s; +limitai limiter VER 11.19 19.26 0.00 0.20 ind:pas:1s; +limitaient limiter VER 11.19 19.26 0.12 0.41 ind:imp:3p; +limitais limiter VER 11.19 19.26 0.02 0.07 ind:imp:1s;ind:imp:2s; +limitait limiter VER 11.19 19.26 0.13 2.36 ind:imp:3s; +limitant limiter VER 11.19 19.26 0.09 1.28 par:pre; +limitatif limitatif ADJ m s 0.00 0.27 0.00 0.14 +limitation limitation NOM f s 0.74 0.95 0.27 0.61 +limitations limitation NOM f p 0.74 0.95 0.47 0.34 +limitative limitatif ADJ f s 0.00 0.27 0.00 0.14 +limite limite NOM f s 32.77 47.23 13.69 21.76 +limitent limiter VER 11.19 19.26 0.23 0.74 ind:pre:3p; +limiter limiter VER 11.19 19.26 2.62 4.46 inf; +limitera limiter VER 11.19 19.26 0.13 0.14 ind:fut:3s; +limiterai limiter VER 11.19 19.26 0.14 0.07 ind:fut:1s; +limiteraient limiter VER 11.19 19.26 0.01 0.20 cnd:pre:3p; +limiterait limiter VER 11.19 19.26 0.05 0.07 cnd:pre:3s; +limiteront limiter VER 11.19 19.26 0.05 0.00 ind:fut:3p; +limites limite NOM f p 32.77 47.23 19.09 25.47 +limiteur limiteur NOM m s 0.02 0.00 0.02 0.00 +limitez limiter VER 11.19 19.26 0.36 0.00 imp:pre:2p;ind:pre:2p; +limitions limiter VER 11.19 19.26 0.01 0.07 ind:imp:1p; +limitons limiter VER 11.19 19.26 0.14 0.07 imp:pre:1p;ind:pre:1p; +limitrophe limitrophe ADJ s 0.00 0.54 0.00 0.07 +limitrophes limitrophe ADJ p 0.00 0.54 0.00 0.47 +limité limiter VER m s 11.19 19.26 2.10 2.30 par:pas; +limitée limité ADJ f s 3.66 6.35 1.30 1.28 +limitées limité ADJ f p 3.66 6.35 0.68 1.35 +limités limiter VER m p 11.19 19.26 0.36 0.68 par:pas; +limoge limoger VER 0.51 0.34 0.00 0.07 ind:pre:3s; +limogeage limogeage NOM m s 0.11 0.07 0.11 0.07 +limoger limoger VER 0.51 0.34 0.18 0.00 inf; +limoges limoger VER 0.51 0.34 0.01 0.20 ind:pre:2s; +limogé limoger VER m s 0.51 0.34 0.32 0.07 par:pas; +limon limon NOM m s 0.53 3.45 0.53 2.97 +limonade limonade NOM f s 6.17 6.15 6.06 5.68 +limonades limonade NOM f p 6.17 6.15 0.11 0.47 +limonadier limonadier NOM m s 0.03 0.54 0.03 0.14 +limonadiers limonadier NOM m p 0.03 0.54 0.00 0.27 +limonadière limonadier NOM f s 0.03 0.54 0.00 0.14 +limonaire limonaire NOM m s 0.00 0.54 0.00 0.54 +limoneuse limoneux ADJ f s 0.01 0.61 0.01 0.27 +limoneuses limoneux ADJ f p 0.01 0.61 0.00 0.14 +limoneux limoneux ADJ m s 0.01 0.61 0.00 0.20 +limonier limonier NOM m s 0.00 0.14 0.00 0.07 +limonière limonier NOM f s 0.00 0.14 0.00 0.07 +limons limon NOM m p 0.53 3.45 0.00 0.47 +limoselle limoselle NOM f s 0.01 0.00 0.01 0.00 +limousin limousin ADJ m s 2.04 1.15 0.00 0.14 +limousine limousine NOM f s 3.93 3.65 3.34 2.97 +limousines limousine NOM f p 3.93 3.65 0.58 0.68 +limousins limousin ADJ m p 2.04 1.15 0.00 0.07 +limpide limpide ADJ s 2.66 12.16 2.32 9.86 +limpides limpide ADJ p 2.66 12.16 0.34 2.30 +limpidité limpidité NOM f s 0.01 1.62 0.01 1.62 +limé limer VER m s 1.07 3.11 0.16 0.54 par:pas; +limée limer VER f s 1.07 3.11 0.01 0.14 par:pas; +lin lin NOM m s 2.35 6.08 1.76 6.01 +linaire linaire NOM f s 0.00 0.07 0.00 0.07 +linceul linceul NOM m s 1.98 2.70 1.94 2.30 +linceuls linceul NOM m p 1.98 2.70 0.04 0.41 +lindor lindor NOM m s 0.27 0.00 0.27 0.00 +line line NOM f s 1.08 0.07 1.08 0.07 +linga linga NOM m s 0.01 0.00 0.01 0.00 +lingala lingala NOM m s 0.02 0.00 0.02 0.00 +lingam lingam NOM m s 0.54 0.07 0.54 0.07 +linge linge NOM m s 17.04 47.30 16.75 44.53 +linger linger ADJ m s 0.02 0.41 0.01 0.14 +lingerie lingerie NOM f s 4.13 5.34 4.11 4.73 +lingeries lingerie NOM f p 4.13 5.34 0.02 0.61 +linges linge NOM m p 17.04 47.30 0.30 2.77 +lingette lingette NOM f s 0.66 0.00 0.48 0.00 +lingettes lingette NOM f p 0.66 0.00 0.18 0.00 +lingot lingot NOM m s 1.58 2.36 0.47 1.15 +lingotière lingotier NOM f s 0.00 0.07 0.00 0.07 +lingots lingot NOM m p 1.58 2.36 1.11 1.22 +lingère lingère NOM f s 0.04 0.68 0.04 0.47 +lingères lingère NOM f p 0.04 0.68 0.00 0.20 +lingual lingual ADJ m s 0.04 0.00 0.01 0.00 +linguale lingual ADJ f s 0.04 0.00 0.02 0.00 +linguaux lingual ADJ m p 0.04 0.00 0.01 0.00 +linguiste linguiste NOM s 0.50 0.68 0.46 0.41 +linguistes linguiste NOM p 0.50 0.68 0.04 0.27 +linguistique linguistique NOM f s 0.54 0.61 0.54 0.61 +linguistiquement linguistiquement ADV 0.01 0.07 0.01 0.07 +linguistiques linguistique ADJ p 0.38 1.55 0.14 0.74 +liniment liniment NOM m s 0.03 0.07 0.03 0.07 +lino lino NOM m s 0.38 1.69 0.38 1.55 +linoléum linoléum NOM m s 0.18 2.64 0.18 2.36 +linoléums linoléum NOM m p 0.18 2.64 0.00 0.27 +linon linon NOM m s 0.05 0.74 0.05 0.68 +linons linon NOM m p 0.05 0.74 0.00 0.07 +linos lino NOM m p 0.38 1.69 0.00 0.14 +linotte linotte NOM f s 0.81 0.54 0.69 0.27 +linottes linotte NOM f p 0.81 0.54 0.12 0.27 +linotype linotype NOM f s 0.01 0.41 0.01 0.14 +linotypes linotype NOM f p 0.01 0.41 0.00 0.27 +linotypistes linotypiste NOM p 0.00 0.20 0.00 0.20 +lins lin NOM m p 2.35 6.08 0.59 0.07 +linteau linteau NOM m s 0.24 1.08 0.17 0.95 +linteaux linteau NOM m p 0.24 1.08 0.07 0.14 +linter linter NOM m s 0.01 0.00 0.01 0.00 +linéaire linéaire ADJ s 0.39 1.08 0.30 0.88 +linéairement linéairement ADV 0.01 0.00 0.01 0.00 +linéaires linéaire ADJ p 0.39 1.08 0.09 0.20 +linéaments linéament NOM m p 0.00 0.54 0.00 0.54 +liâmes lier VER 37.17 46.08 0.00 0.14 ind:pas:1p; +lion lion NOM m s 20.70 33.04 14.58 20.14 +lionceau lionceau NOM m s 0.21 1.01 0.21 0.61 +lionceaux lionceau NOM m p 0.21 1.01 0.00 0.41 +lionne lion NOM f s 20.70 33.04 0.79 2.43 +lionnes lionne NOM f p 0.16 0.00 0.16 0.00 +lions lion NOM m p 20.70 33.04 5.33 8.24 +liât lier VER 37.17 46.08 0.00 0.34 sub:imp:3s; +lipase lipase NOM f s 0.01 0.00 0.01 0.00 +lipide lipide NOM m s 0.06 0.20 0.01 0.07 +lipides lipide NOM m p 0.06 0.20 0.04 0.14 +lipiodol lipiodol NOM m s 0.01 0.00 0.01 0.00 +lipome lipome NOM m s 0.03 0.00 0.03 0.00 +liposome liposome NOM m s 0.01 0.00 0.01 0.00 +liposuccion liposuccion NOM f s 1.04 0.00 0.75 0.00 +liposuccions liposuccion NOM f p 1.04 0.00 0.29 0.00 +liposucer liposucer VER 0.20 0.00 0.20 0.00 inf; +lipothymie lipothymie NOM f s 0.10 0.00 0.10 0.00 +lippe lippe NOM f s 0.14 1.89 0.14 1.69 +lippes lippe NOM f p 0.14 1.89 0.00 0.20 +lippu lippu ADJ m s 0.17 1.01 0.17 0.41 +lippue lippu ADJ f s 0.17 1.01 0.00 0.47 +lippées lippée NOM f p 0.00 0.07 0.00 0.07 +lippues lippu ADJ f p 0.17 1.01 0.00 0.07 +lippus lippu ADJ m p 0.17 1.01 0.00 0.07 +liquette liquette NOM f s 0.19 1.49 0.19 1.22 +liquettes liquette NOM f p 0.19 1.49 0.00 0.27 +liqueur liqueur NOM f s 5.00 4.26 3.46 2.36 +liqueurs liqueur NOM f p 5.00 4.26 1.55 1.89 +liquida liquider VER 9.76 10.74 0.10 0.27 ind:pas:3s; +liquidai liquider VER 9.76 10.74 0.00 0.07 ind:pas:1s; +liquidaient liquider VER 9.76 10.74 0.00 0.20 ind:imp:3p; +liquidait liquider VER 9.76 10.74 0.02 0.20 ind:imp:3s; +liquidambars liquidambar NOM m p 0.00 0.07 0.00 0.07 +liquidant liquider VER 9.76 10.74 0.02 0.20 par:pre; +liquidateur liquidateur NOM m s 0.07 0.20 0.05 0.14 +liquidateurs liquidateur NOM m p 0.07 0.20 0.01 0.07 +liquidation liquidation NOM f s 0.81 3.11 0.70 3.04 +liquidations liquidation NOM f p 0.81 3.11 0.11 0.07 +liquidative liquidatif ADJ f s 0.02 0.00 0.02 0.00 +liquide liquide NOM m s 18.41 19.19 17.74 17.91 +liquident liquider VER 9.76 10.74 0.04 0.07 ind:pre:3p; +liquider liquider VER 9.76 10.74 3.78 4.93 inf; +liquidera liquider VER 9.76 10.74 0.06 0.14 ind:fut:3s; +liquiderai liquider VER 9.76 10.74 0.04 0.00 ind:fut:1s; +liquiderais liquider VER 9.76 10.74 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +liquiderait liquider VER 9.76 10.74 0.14 0.07 cnd:pre:3s; +liquiderons liquider VER 9.76 10.74 0.04 0.00 ind:fut:1p; +liquideront liquider VER 9.76 10.74 0.00 0.14 ind:fut:3p; +liquides liquide NOM m p 18.41 19.19 0.68 1.28 +liquidez liquider VER 9.76 10.74 0.37 0.00 imp:pre:2p;ind:pre:2p; +liquidions liquider VER 9.76 10.74 0.00 0.07 ind:imp:1p; +liquidité liquidité NOM f s 0.70 0.54 0.03 0.07 +liquidités liquidité NOM f p 0.70 0.54 0.67 0.47 +liquidons liquider VER 9.76 10.74 0.26 0.07 imp:pre:1p;ind:pre:1p; +liquidé liquider VER m s 9.76 10.74 2.45 1.62 par:pas; +liquidée liquider VER f s 9.76 10.74 0.31 0.95 par:pas; +liquidées liquider VER f p 9.76 10.74 0.02 0.20 par:pas; +liquidés liquider VER m p 9.76 10.74 0.54 0.61 par:pas; +liquor liquor NOM m s 0.04 0.00 0.04 0.00 +liquoreux liquoreux ADJ m s 0.00 0.27 0.00 0.27 +liquoriste liquoriste NOM s 0.01 0.07 0.01 0.07 +liquéfaction liquéfaction NOM f s 0.04 0.27 0.04 0.27 +liquéfiaient liquéfier VER 1.09 2.43 0.00 0.27 ind:imp:3p; +liquéfiait liquéfier VER 1.09 2.43 0.00 0.47 ind:imp:3s; +liquéfiante liquéfiant ADJ f s 0.00 0.07 0.00 0.07 +liquéfie liquéfier VER 1.09 2.43 0.78 0.20 ind:pre:1s;ind:pre:3s; +liquéfient liquéfier VER 1.09 2.43 0.04 0.14 ind:pre:3p; +liquéfier liquéfier VER 1.09 2.43 0.14 0.47 inf; +liquéfièrent liquéfier VER 1.09 2.43 0.00 0.07 ind:pas:3p; +liquéfié liquéfier VER m s 1.09 2.43 0.04 0.27 par:pas; +liquéfiée liquéfier VER f s 1.09 2.43 0.03 0.34 par:pas; +liquéfiées liquéfier VER f p 1.09 2.43 0.01 0.14 par:pas; +liquéfiés liquéfier VER m p 1.09 2.43 0.05 0.07 par:pas; +lira lire VER 281.09 324.80 1.88 1.82 ind:fut:3s; +lirai lire VER 281.09 324.80 3.36 1.28 ind:fut:1s; +liraient lire VER 281.09 324.80 0.03 0.34 cnd:pre:3p; +lirais lire VER 281.09 324.80 0.74 0.81 cnd:pre:1s;cnd:pre:2s; +lirait lire VER 281.09 324.80 0.30 3.31 cnd:pre:3s; +liras lire VER 281.09 324.80 1.97 0.81 ind:fut:2s; +lire lire VER 281.09 324.80 89.58 103.58 inf; +lires lire NOM f p 28.88 10.27 18.98 1.42 +lirette lirette NOM f s 0.02 0.00 0.02 0.00 +lirez lire VER 281.09 324.80 0.68 0.81 ind:fut:2p; +liriez lire VER 281.09 324.80 0.09 0.00 cnd:pre:2p; +liron liron NOM m s 0.14 0.54 0.14 0.54 +lirons lire VER 281.09 324.80 0.08 0.07 ind:fut:1p; +liront lire VER 281.09 324.80 0.17 0.27 ind:fut:3p; +lis lire VER 281.09 324.80 39.81 16.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +lisaient lire VER 281.09 324.80 0.22 4.73 ind:imp:3p; +lisais lire VER 281.09 324.80 5.08 10.54 ind:imp:1s;ind:imp:2s; +lisait lire VER 281.09 324.80 3.88 39.12 ind:imp:3s; +lisant lire VER 281.09 324.80 2.95 13.31 par:pre; +lise lire VER 281.09 324.80 3.20 2.09 sub:pre:1s;sub:pre:3s; +lisent lire VER 281.09 324.80 2.67 3.72 ind:pre:3p; +liseron liseron NOM m s 0.02 1.08 0.01 0.61 +liserons liseron NOM m p 0.02 1.08 0.01 0.47 +liseré liseré NOM m s 0.02 0.81 0.02 0.74 +liserée liserer VER f s 0.00 0.14 0.00 0.07 par:pas; +liserés liseré NOM m p 0.02 0.81 0.00 0.07 +lises lire VER 281.09 324.80 1.12 0.41 sub:pre:2s; +liseur liseur NOM m s 0.06 1.49 0.00 0.68 +liseuse liseur NOM f s 0.06 1.49 0.06 0.68 +liseuses liseur NOM f p 0.06 1.49 0.00 0.14 +lisez lire VER 281.09 324.80 16.78 5.00 imp:pre:2p;ind:pre:2p; +lisibilité lisibilité NOM f s 0.01 0.00 0.01 0.00 +lisible lisible ADJ s 0.84 3.58 0.40 2.50 +lisiblement lisiblement ADV 0.11 0.20 0.11 0.20 +lisibles lisible ADJ p 0.84 3.58 0.44 1.08 +lisier lisier NOM m s 0.01 0.00 0.01 0.00 +lisiez lire VER 281.09 324.80 0.96 0.95 ind:imp:2p; +lisions lire VER 281.09 324.80 0.27 1.55 ind:imp:1p; +lisière lisière NOM f s 0.67 18.24 0.67 16.49 +lisières lisière NOM f p 0.67 18.24 0.00 1.76 +lisons lire VER 281.09 324.80 1.56 0.81 imp:pre:1p;ind:pre:1p; +lissa lisser VER 2.04 11.35 0.02 1.15 ind:pas:3s; +lissage lissage NOM m s 0.01 0.14 0.01 0.14 +lissai lisser VER 2.04 11.35 0.00 0.14 ind:pas:1s; +lissaient lisser VER 2.04 11.35 0.00 0.34 ind:imp:3p; +lissais lisser VER 2.04 11.35 0.00 0.07 ind:imp:1s; +lissait lisser VER 2.04 11.35 0.00 1.42 ind:imp:3s; +lissant lisser VER 2.04 11.35 0.00 1.96 par:pre; +lisse lisse ADJ s 3.48 33.58 2.71 24.26 +lissent lisser VER 2.04 11.35 0.00 0.34 ind:pre:3p; +lisser lisser VER 2.04 11.35 0.34 1.49 inf; +lissera lisser VER 2.04 11.35 0.00 0.07 ind:fut:3s; +lisserait lisser VER 2.04 11.35 0.00 0.14 cnd:pre:3s; +lisses lisse ADJ p 3.48 33.58 0.77 9.32 +lisseur lisseur NOM m s 0.00 0.14 0.00 0.07 +lisseurs lisseur NOM m p 0.00 0.14 0.00 0.07 +lissez lisser VER 2.04 11.35 0.70 0.00 imp:pre:2p; +lissons lisser VER 2.04 11.35 0.14 0.14 imp:pre:1p;ind:pre:1p; +lissotriche lissotriche ADJ s 0.00 0.07 0.00 0.07 +lissèrent lisser VER 2.04 11.35 0.00 0.07 ind:pas:3p; +lissé lisser VER m s 2.04 11.35 0.22 0.88 par:pas; +lissée lisser VER f s 2.04 11.35 0.15 0.34 par:pas; +lissées lisser VER f p 2.04 11.35 0.10 0.20 par:pas; +lissés lisser VER m p 2.04 11.35 0.01 0.68 par:pas; +liste liste NOM f s 71.56 24.32 69.07 18.92 +listel listel NOM m s 0.00 0.07 0.00 0.07 +lister lister VER 1.60 0.00 1.07 0.00 inf; +listeria listeria NOM f 0.01 0.00 0.01 0.00 +listes liste NOM f p 71.56 24.32 2.49 5.41 +listez lister VER 1.60 0.00 0.07 0.00 imp:pre:2p; +listing listing NOM m s 0.26 0.00 0.23 0.00 +listings listing NOM m p 0.26 0.00 0.02 0.00 +liston liston NOM m s 4.14 0.00 4.14 0.00 +listé lister VER m s 1.60 0.00 0.23 0.00 par:pas; +listée lister VER f s 1.60 0.00 0.10 0.00 par:pas; +listées lister VER f p 1.60 0.00 0.04 0.00 par:pas; +listés lister VER m p 1.60 0.00 0.09 0.00 par:pas; +lisérait lisérer VER 0.00 0.20 0.00 0.07 ind:imp:3s; +liséré liséré NOM m s 0.00 2.50 0.00 2.16 +lisérés liséré NOM m p 0.00 2.50 0.00 0.34 +lit_bateau lit_bateau NOM m s 0.00 0.81 0.00 0.81 +lit_cage lit_cage NOM m s 0.01 1.62 0.01 1.15 +lit_divan lit_divan NOM m s 0.00 0.20 0.00 0.20 +lit lit NOM m s 184.27 338.18 176.10 315.74 +lita liter VER 0.82 0.00 0.34 0.00 ind:pas:3s; +litanie litanie NOM f s 0.59 7.09 0.56 4.53 +litanies litanie NOM f p 0.59 7.09 0.03 2.57 +lite liter VER 0.82 0.00 0.08 0.00 imp:pre:2s;ind:pre:3s; +liteaux liteau NOM m p 0.00 0.07 0.00 0.07 +liter liter VER 0.82 0.00 0.27 0.00 inf; +literie literie NOM f s 0.29 2.03 0.28 1.96 +literies literie NOM f p 0.29 2.03 0.01 0.07 +liège liège NOM m s 0.46 3.78 0.46 3.58 +lièges liège NOM m p 0.46 3.78 0.00 0.20 +lithiase lithiase NOM f s 0.04 0.00 0.04 0.00 +lithinés lithiné ADJ m p 0.00 0.27 0.00 0.27 +lithique lithique ADJ s 0.01 0.00 0.01 0.00 +lithium lithium NOM m s 0.94 0.14 0.94 0.14 +litho litho NOM f s 0.02 0.20 0.01 0.14 +lithographe lithographe NOM s 0.00 0.14 0.00 0.14 +lithographie lithographie NOM f s 0.26 0.54 0.25 0.41 +lithographies lithographie NOM f p 0.26 0.54 0.01 0.14 +lithographié lithographier VER m s 0.00 0.07 0.00 0.07 par:pas; +lithophages lithophage ADJ m p 0.00 0.07 0.00 0.07 +lithos litho NOM f p 0.02 0.20 0.01 0.07 +lithosphère lithosphère NOM f s 0.03 0.00 0.03 0.00 +lithotripsie lithotripsie NOM f s 0.03 0.00 0.03 0.00 +lithotriteur lithotriteur NOM m s 0.01 0.00 0.01 0.00 +lièrent lier VER 37.17 46.08 0.03 0.34 ind:pas:3p; +lithuanien lithuanien ADJ m s 0.08 0.27 0.07 0.20 +lithuanienne lithuanien ADJ f s 0.08 0.27 0.01 0.00 +lithuaniennes lithuanien ADJ f p 0.08 0.27 0.00 0.07 +lièvre lièvre NOM m s 4.30 7.03 3.36 4.73 +lièvres lièvre NOM m p 4.30 7.03 0.94 2.30 +litige litige NOM m s 0.78 1.42 0.57 0.74 +litiges litige NOM m p 0.78 1.42 0.20 0.68 +litigieuse litigieux ADJ f s 0.07 0.34 0.02 0.20 +litigieux litigieux ADJ m s 0.07 0.34 0.04 0.14 +litière litière NOM f s 0.82 6.15 0.81 5.68 +litières litière NOM f p 0.82 6.15 0.01 0.47 +litorne litorne NOM f s 0.00 0.07 0.00 0.07 +litote litote NOM f s 0.03 0.41 0.03 0.20 +litotes litote NOM f p 0.03 0.41 0.00 0.20 +litre litre NOM s 10.19 18.51 2.75 10.20 +litrer litrer VER 0.00 0.07 0.00 0.07 inf; +litres litre NOM p 10.19 18.51 7.44 8.31 +litron litron NOM m s 0.20 3.18 0.20 1.82 +litronaient litroner VER 0.00 0.14 0.00 0.07 ind:imp:3p; +litrons litron NOM m p 0.20 3.18 0.00 1.35 +litroné litroner VER m s 0.00 0.14 0.00 0.07 par:pas; +lit_cage lit_cage NOM m p 0.01 1.62 0.00 0.47 +lits lit NOM m p 184.27 338.18 8.17 22.43 +littoral littoral NOM m s 0.21 3.11 0.20 3.11 +littorale littoral ADJ f s 0.23 0.34 0.07 0.14 +littoraux littoral NOM m p 0.21 3.11 0.01 0.00 +littéraire littéraire ADJ s 3.09 17.16 2.64 11.82 +littérairement littérairement ADV 0.01 0.14 0.01 0.14 +littéraires littéraire ADJ p 3.09 17.16 0.45 5.34 +littéral littéral ADJ m s 1.08 1.49 0.72 0.61 +littérale littéral ADJ f s 1.08 1.49 0.34 0.74 +littéralement littéralement ADV 5.27 10.95 5.27 10.95 +littérales littéral ADJ f p 1.08 1.49 0.00 0.14 +littéralité littéralité NOM f s 0.00 0.07 0.00 0.07 +littérateur littérateur NOM m s 0.23 1.01 0.23 0.47 +littérateurs littérateur NOM m p 0.23 1.01 0.00 0.54 +littérature littérature NOM f s 8.48 36.89 8.48 36.82 +littératures littérature NOM f p 8.48 36.89 0.00 0.07 +littéraux littéral ADJ m p 1.08 1.49 0.01 0.00 +lité liter VER m s 0.82 0.00 0.14 0.00 par:pas; +lituanien lituanien ADJ m s 0.69 0.88 0.44 0.07 +lituanienne lituanien ADJ f s 0.69 0.88 0.25 0.27 +lituaniennes lituanien ADJ f p 0.69 0.88 0.00 0.34 +lituaniens lituanien NOM m p 0.21 0.47 0.21 0.27 +litée litée NOM f s 0.00 0.07 0.00 0.07 +liturgie liturgie NOM f s 0.03 2.16 0.03 2.09 +liturgies liturgie NOM f p 0.03 2.16 0.00 0.07 +liturgique liturgique ADJ s 0.16 1.08 0.16 0.54 +liturgiques liturgique ADJ p 0.16 1.08 0.00 0.54 +lié lier VER m s 37.17 46.08 12.54 10.68 par:pas; +liée lier VER f s 37.17 46.08 3.96 7.50 par:pas; +liées lier VER f p 37.17 46.08 2.58 2.84 par:pas; +liégeois liégeois ADJ m 0.00 0.14 0.00 0.14 +liés lier VER m p 37.17 46.08 6.12 6.55 par:pas; +livarot livarot NOM m s 0.00 0.27 0.00 0.27 +live live ADJ 3.90 0.27 3.90 0.27 +livide livide ADJ s 0.74 10.54 0.62 8.78 +livides livide ADJ p 0.74 10.54 0.12 1.76 +lividité lividité NOM f s 0.40 0.00 0.40 0.00 +living_room living_room NOM m s 0.23 2.23 0.23 2.23 +living living NOM m s 0.87 2.84 0.87 2.77 +livings living NOM m p 0.87 2.84 0.00 0.07 +livoniennes livonienne NOM f p 0.00 0.07 0.00 0.07 +livra livrer VER 56.53 84.93 0.14 2.50 ind:pas:3s; +livrable livrable ADJ s 0.02 0.07 0.00 0.07 +livrables livrable ADJ f p 0.02 0.07 0.02 0.00 +livrai livrer VER 56.53 84.93 0.01 0.34 ind:pas:1s; +livraient livrer VER 56.53 84.93 0.44 4.19 ind:imp:3p; +livrais livrer VER 56.53 84.93 0.38 1.22 ind:imp:1s;ind:imp:2s; +livraison livraison NOM f s 13.68 8.58 10.69 5.47 +livraisons livraison NOM f p 13.68 8.58 2.98 3.11 +livrait livrer VER 56.53 84.93 0.74 7.91 ind:imp:3s; +livrant livrer VER 56.53 84.93 0.98 3.65 par:pre; +livre_cassette livre_cassette NOM m s 0.03 0.00 0.03 0.00 +livre livre NOM 198.11 286.49 112.43 151.76 +livrent livrer VER 56.53 84.93 1.44 2.84 ind:pre:3p; +livrer livrer VER 56.53 84.93 21.42 25.20 inf;;inf;;inf;; +livrera livrer VER 56.53 84.93 0.97 0.34 ind:fut:3s; +livrerai livrer VER 56.53 84.93 0.62 0.41 ind:fut:1s; +livreraient livrer VER 56.53 84.93 0.04 0.54 cnd:pre:3p; +livrerais livrer VER 56.53 84.93 0.17 0.14 cnd:pre:1s;cnd:pre:2s; +livrerait livrer VER 56.53 84.93 0.18 0.95 cnd:pre:3s; +livreras livrer VER 56.53 84.93 0.24 0.14 ind:fut:2s; +livrerez livrer VER 56.53 84.93 0.14 0.00 ind:fut:2p; +livrerons livrer VER 56.53 84.93 0.10 0.07 ind:fut:1p; +livreront livrer VER 56.53 84.93 0.47 0.20 ind:fut:3p; +livres_club livres_club NOM m p 0.00 0.07 0.00 0.07 +livres livre NOM p 198.11 286.49 85.69 134.73 +livresque livresque ADJ s 0.02 0.74 0.02 0.68 +livresques livresque ADJ f p 0.02 0.74 0.00 0.07 +livret livret NOM m s 3.26 5.41 3.10 4.73 +livrets livret NOM m p 3.26 5.41 0.16 0.68 +livreur livreur NOM m s 4.46 3.99 3.81 2.91 +livreurs livreur NOM m p 4.46 3.99 0.57 1.08 +livreuse livreur NOM f s 4.46 3.99 0.08 0.00 +livrez livrer VER 56.53 84.93 3.28 0.20 imp:pre:2p;ind:pre:2p; +livrions livrer VER 56.53 84.93 0.02 0.20 ind:imp:1p; +livrâmes livrer VER 56.53 84.93 0.01 0.14 ind:pas:1p; +livrons livrer VER 56.53 84.93 0.70 0.27 imp:pre:1p;ind:pre:1p; +livrât livrer VER 56.53 84.93 0.00 0.54 sub:imp:3s; +livrèrent livrer VER 56.53 84.93 0.06 0.61 ind:pas:3p; +livré livrer VER m s 56.53 84.93 8.03 11.08 par:pas; +livrée livrer VER f s 56.53 84.93 1.91 4.73 par:pas; +livrées livrer VER f p 56.53 84.93 0.57 1.96 par:pas; +livrés livrer VER m p 56.53 84.93 2.64 4.59 par:pas; +livèche livèche NOM f s 0.14 0.00 0.14 0.00 +llanos llano NOM m p 0.00 0.07 0.00 0.07 +lloyd lloyd NOM m s 0.01 0.00 0.01 0.00 +là_bas là_bas ADV 263.15 117.70 263.15 117.70 +là_dedans là_dedans ADV 74.00 23.58 74.00 23.58 +là_dehors là_dehors ADV 1.30 0.00 1.30 0.00 +là_derrière là_derrière ADV 1.14 0.14 1.14 0.14 +là_dessous là_dessous ADV 7.12 4.32 7.12 4.32 +là_dessus là_dessus ADV 30.89 32.50 30.89 32.50 +là_devant là_devant ADV 0.00 0.14 0.00 0.14 +là_haut là_haut ADV 67.78 42.70 67.78 42.70 +là là ONO 38.53 4.26 38.53 4.26 +loader loader NOM m s 0.14 0.00 0.14 0.00 +lob lob NOM m s 0.04 0.27 0.04 0.20 +lobaire lobaire ADJ f s 0.01 0.00 0.01 0.00 +lobbies lobbies NOM m p 0.29 0.00 0.29 0.00 +lobby lobby NOM m s 0.83 0.27 0.83 0.27 +lobbying lobbying NOM m s 0.07 0.00 0.07 0.00 +lobe lobe NOM m s 3.58 2.09 2.84 1.35 +lobectomie lobectomie NOM f s 0.03 0.07 0.03 0.07 +lober lober VER 0.05 0.00 0.03 0.00 inf; +lobes lobe NOM m p 3.58 2.09 0.74 0.74 +lobotomie lobotomie NOM f s 0.83 0.14 0.83 0.14 +lobotomiser lobotomiser VER 0.31 0.07 0.04 0.00 inf; +lobotomisé lobotomiser VER m s 0.31 0.07 0.25 0.07 par:pas; +lobotomisée lobotomiser VER f s 0.31 0.07 0.03 0.00 par:pas; +lobs lob NOM m p 0.04 0.27 0.00 0.07 +lobé lober VER m s 0.05 0.00 0.02 0.00 par:pas; +lobée lobé ADJ f s 0.01 0.00 0.01 0.00 +lobulaire lobulaire ADJ m s 0.00 0.07 0.00 0.07 +local local ADJ m s 18.11 22.84 6.05 6.76 +locale local ADJ f s 18.11 22.84 7.31 6.69 +localement localement ADV 0.22 0.88 0.22 0.88 +locales local ADJ f p 18.11 22.84 2.93 4.80 +localisa localiser VER 12.87 2.84 0.00 0.34 ind:pas:3s; +localisable localisable ADJ m s 0.04 0.07 0.04 0.07 +localisaient localiser VER 12.87 2.84 0.00 0.07 ind:imp:3p; +localisais localiser VER 12.87 2.84 0.01 0.07 ind:imp:1s;ind:imp:2s; +localisait localiser VER 12.87 2.84 0.02 0.00 ind:imp:3s; +localisant localiser VER 12.87 2.84 0.02 0.07 par:pre; +localisateur localisateur ADJ m s 0.30 0.00 0.30 0.00 +localisation localisation NOM f s 2.06 0.20 1.99 0.20 +localisations localisation NOM f p 2.06 0.20 0.08 0.00 +localise localiser VER 12.87 2.84 0.76 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +localisent localiser VER 12.87 2.84 0.08 0.07 ind:pre:3p; +localiser localiser VER 12.87 2.84 7.41 1.76 inf; +localisera localiser VER 12.87 2.84 0.14 0.00 ind:fut:3s; +localiseront localiser VER 12.87 2.84 0.02 0.00 ind:fut:3p; +localisez localiser VER 12.87 2.84 0.48 0.00 imp:pre:2p;ind:pre:2p; +localisions localiser VER 12.87 2.84 0.01 0.00 ind:imp:1p; +localisons localiser VER 12.87 2.84 0.06 0.00 imp:pre:1p;ind:pre:1p; +localisé localiser VER m s 12.87 2.84 3.31 0.34 par:pas; +localisée localiser VER f s 12.87 2.84 0.25 0.00 par:pas; +localisées localiser VER f p 12.87 2.84 0.02 0.00 par:pas; +localisés localiser VER m p 12.87 2.84 0.26 0.00 par:pas; +localité localité NOM f s 0.36 1.55 0.23 0.81 +localités localité NOM f p 0.36 1.55 0.13 0.74 +locataire locataire NOM s 7.22 14.46 3.29 6.22 +locataires locataire NOM p 7.22 14.46 3.94 8.24 +locateurs locateur NOM m p 0.01 0.00 0.01 0.00 +locatif locatif ADJ m s 0.04 0.07 0.01 0.00 +location location NOM f s 5.51 5.34 5.29 5.00 +locations location NOM f p 5.51 5.34 0.22 0.34 +locative locatif ADJ f s 0.04 0.07 0.01 0.00 +locatives locatif ADJ f p 0.04 0.07 0.02 0.07 +locature locature NOM f s 0.00 0.07 0.00 0.07 +locaux local NOM m p 5.78 11.89 2.23 4.26 +locdu locdu ADJ m s 0.00 0.27 0.00 0.27 +loch loch NOM m s 0.65 0.41 0.65 0.41 +lâcha lâcher VER 171.08 89.19 0.03 12.70 ind:pas:3s; +lâchage lâchage NOM m s 0.02 0.20 0.02 0.20 +lâchai lâcher VER 171.08 89.19 0.03 0.95 ind:pas:1s; +lâchaient lâcher VER 171.08 89.19 0.09 1.49 ind:imp:3p; +lâchais lâcher VER 171.08 89.19 0.20 0.81 ind:imp:1s;ind:imp:2s; +lâchait lâcher VER 171.08 89.19 1.08 5.68 ind:imp:3s; +lâchant lâcher VER 171.08 89.19 0.25 4.59 par:pre; +lâche lâcher VER 171.08 89.19 75.31 14.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +loche loche NOM f s 0.56 1.08 0.12 1.01 +lâchement lâchement ADV 1.07 2.97 1.07 2.97 +lâchent lâcher VER 171.08 89.19 2.52 2.50 ind:pre:3p; +lâcher lâcher VER 171.08 89.19 19.41 20.41 inf;; +lâchera lâcher VER 171.08 89.19 1.24 1.35 ind:fut:3s; +lâcherai lâcher VER 171.08 89.19 2.86 0.47 ind:fut:1s; +lâcheraient lâcher VER 171.08 89.19 0.05 0.07 cnd:pre:3p; +lâcherais lâcher VER 171.08 89.19 0.32 0.07 cnd:pre:1s;cnd:pre:2s; +lâcherait lâcher VER 171.08 89.19 0.35 0.81 cnd:pre:3s; +lâcheras lâcher VER 171.08 89.19 0.35 0.07 ind:fut:2s; +lâcherez lâcher VER 171.08 89.19 0.11 0.14 ind:fut:2p; +lâcheriez lâcher VER 171.08 89.19 0.02 0.07 cnd:pre:2p; +lâcherons lâcher VER 171.08 89.19 0.08 0.07 ind:fut:1p; +lâcheront lâcher VER 171.08 89.19 0.69 0.34 ind:fut:3p; +lâchers lâcher NOM m p 0.95 0.88 0.01 0.07 +lâches lâche NOM p 27.16 5.81 7.65 2.57 +loches loche NOM f p 0.56 1.08 0.44 0.07 +lâcheté lâcheté NOM f s 4.17 10.00 3.91 9.12 +lâchetés lâcheté NOM f p 4.17 10.00 0.26 0.88 +lâcheur lâcheur NOM m s 0.67 0.81 0.30 0.47 +lâcheurs lâcheur NOM m p 0.67 0.81 0.25 0.14 +lâcheuse lâcheur NOM f s 0.67 0.81 0.13 0.20 +lâchez lâcher VER 171.08 89.19 48.02 2.09 imp:pre:2p;ind:pre:2p; +lâchiez lâcher VER 171.08 89.19 0.13 0.00 ind:imp:2p; +lâchions lâcher VER 171.08 89.19 0.03 0.07 ind:imp:1p; +lâchons lâcher VER 171.08 89.19 0.17 0.27 imp:pre:1p;ind:pre:1p; +lâchât lâcher VER 171.08 89.19 0.00 0.27 sub:imp:3s; +lâchèrent lâcher VER 171.08 89.19 0.01 0.88 ind:pas:3p; +lâché lâcher VER m s 171.08 89.19 11.35 14.80 par:pas; +lâchée lâcher VER f s 171.08 89.19 1.07 1.69 par:pas; +lâchées lâcher VER f p 171.08 89.19 0.21 0.81 par:pas; +lâchés lâcher VER m p 171.08 89.19 1.05 1.42 par:pas; +lock_out lock_out NOM m 0.11 0.00 0.11 0.00 +lock_outer lock_outer VER m p 0.00 0.07 0.00 0.07 par:pas; +loco loco ADV 1.48 1.08 1.48 1.08 +locomobile locomobile NOM f s 0.00 0.07 0.00 0.07 +locomoteur locomoteur ADJ m s 0.01 0.07 0.01 0.00 +locomoteurs locomoteur ADJ m p 0.01 0.07 0.00 0.07 +locomotion locomotion NOM f s 0.26 0.88 0.26 0.88 +locomotive locomotive NOM f s 3.95 13.11 3.69 10.61 +locomotives locomotive NOM f p 3.95 13.11 0.25 2.50 +locomotrice locomoteur NOM f s 0.00 0.07 0.00 0.07 +locos loco NOM m p 0.73 1.35 0.16 0.47 +locus locus NOM m 0.15 0.20 0.15 0.20 +locuste locuste NOM f s 0.06 0.00 0.01 0.00 +locustes locuste NOM f p 0.06 0.00 0.05 0.00 +locuteur locuteur NOM m s 0.02 0.00 0.01 0.00 +locution locution NOM f s 0.04 1.01 0.04 0.41 +locutions locution NOM f p 0.04 1.01 0.01 0.61 +locutrice locuteur NOM f s 0.02 0.00 0.01 0.00 +loden loden NOM m s 0.27 0.81 0.27 0.74 +lodens loden NOM m p 0.27 0.81 0.00 0.07 +lof lof NOM m s 0.02 0.00 0.02 0.00 +lofe lofer VER 0.02 0.00 0.01 0.00 ind:pre:3s; +lofez lofer VER 0.02 0.00 0.01 0.00 imp:pre:2p; +loft loft NOM m s 1.36 0.47 1.11 0.47 +lofts loft NOM m p 1.36 0.47 0.26 0.00 +logarithme logarithme NOM m s 0.09 0.34 0.05 0.00 +logarithmes logarithme NOM m p 0.09 0.34 0.04 0.34 +logarithmique logarithmique ADJ s 0.02 0.00 0.02 0.00 +loge loge NOM f s 13.69 22.36 12.15 18.11 +logea loger VER 18.36 26.42 0.03 0.41 ind:pas:3s; +logeable logeable ADJ m s 0.00 0.14 0.00 0.07 +logeables logeable ADJ m p 0.00 0.14 0.00 0.07 +logeai loger VER 18.36 26.42 0.00 0.14 ind:pas:1s; +logeaient loger VER 18.36 26.42 0.06 1.69 ind:imp:3p; +logeais loger VER 18.36 26.42 0.16 0.47 ind:imp:1s;ind:imp:2s; +logeait loger VER 18.36 26.42 0.55 3.72 ind:imp:3s; +logeant loger VER 18.36 26.42 0.01 0.47 par:pre; +logeassent loger VER 18.36 26.42 0.00 0.07 sub:imp:3p; +logement logement NOM m s 11.13 13.65 8.37 11.08 +logements logement NOM m p 11.13 13.65 2.76 2.57 +logent loger VER 18.36 26.42 0.38 1.08 ind:pre:3p; +loger loger VER 18.36 26.42 5.84 7.23 inf; +logera loger VER 18.36 26.42 0.39 0.00 ind:fut:3s; +logerai loger VER 18.36 26.42 0.30 0.20 ind:fut:1s; +logeraient loger VER 18.36 26.42 0.00 0.14 cnd:pre:3p; +logerait loger VER 18.36 26.42 0.17 0.27 cnd:pre:3s; +logeras loger VER 18.36 26.42 0.24 0.07 ind:fut:2s; +logerez loger VER 18.36 26.42 0.38 0.07 ind:fut:2p; +logerions loger VER 18.36 26.42 0.00 0.07 cnd:pre:1p; +logerons loger VER 18.36 26.42 0.03 0.00 ind:fut:1p; +logeront loger VER 18.36 26.42 0.29 0.14 ind:fut:3p; +loges loge NOM f p 13.69 22.36 1.54 4.26 +logettes logette NOM f p 0.00 0.14 0.00 0.14 +logeur logeur NOM m s 1.16 3.72 0.25 0.07 +logeurs logeur NOM m p 1.16 3.72 0.00 0.27 +logeuse logeur NOM f s 1.16 3.72 0.91 3.31 +logeuses logeuse NOM f p 0.36 0.00 0.01 0.00 +logez loger VER 18.36 26.42 1.29 0.41 imp:pre:2p;ind:pre:2p; +loggia loggia NOM f s 0.10 3.85 0.10 3.11 +loggias loggia NOM f p 0.10 3.85 0.00 0.74 +logiciel logiciel NOM m s 3.61 0.14 2.31 0.14 +logiciels logiciel NOM m p 3.61 0.14 1.30 0.00 +logicien logicien NOM m s 0.03 0.41 0.03 0.20 +logicienne logicien NOM f s 0.03 0.41 0.00 0.07 +logiciens logicien NOM m p 0.03 0.41 0.00 0.14 +logiez loger VER 18.36 26.42 0.45 0.07 ind:imp:2p; +login login ADJ m s 0.04 0.00 0.04 0.00 +logions loger VER 18.36 26.42 0.11 0.20 ind:imp:1p; +logique logique ADJ s 14.40 12.03 13.79 11.22 +logiquement logiquement ADV 1.33 3.24 1.33 3.24 +logiques logique ADJ p 14.40 12.03 0.61 0.81 +logis logis NOM m 2.70 12.84 2.70 12.84 +logisticien logisticien NOM m s 0.01 0.00 0.01 0.00 +logistique logistique NOM f s 0.80 0.27 0.80 0.27 +logistiques logistique ADJ p 0.41 0.20 0.20 0.07 +logo logo NOM m s 1.65 0.00 1.65 0.00 +logogriphe logogriphe NOM m s 0.01 0.14 0.01 0.07 +logogriphes logogriphe NOM m p 0.01 0.14 0.00 0.07 +logomachie logomachie NOM f s 0.00 0.14 0.00 0.14 +logorrhée logorrhée NOM f s 0.06 0.27 0.06 0.27 +logos logos NOM m 0.16 0.81 0.16 0.81 +logosphère logosphère NOM f s 0.00 0.14 0.00 0.14 +logothètes logothète NOM m p 0.00 0.07 0.00 0.07 +logèrent loger VER 18.36 26.42 0.00 0.14 ind:pas:3p; +logé loger VER m s 18.36 26.42 1.77 3.45 par:pas; +logue loguer VER 0.02 0.00 0.02 0.00 imp:pre:2s;ind:pre:3s; +logée loger VER f s 18.36 26.42 1.23 1.08 par:pas; +logées loger VER f p 18.36 26.42 0.16 0.20 par:pas; +logés logé ADJ m p 0.89 1.76 0.36 0.81 +loi loi NOM f s 110.12 72.30 87.37 44.46 +loin loin ADV 248.34 452.36 248.34 452.36 +lointain lointain ADJ m s 10.12 91.96 5.05 33.18 +lointaine lointain ADJ f s 10.12 91.96 2.89 32.50 +lointainement lointainement ADV 0.00 0.47 0.00 0.47 +lointaines lointain ADJ f p 10.12 91.96 1.15 12.64 +lointains lointain ADJ m p 10.12 91.96 1.02 13.65 +loir loir NOM m s 0.69 1.62 0.51 0.74 +loirs loir NOM m p 0.69 1.62 0.18 0.88 +lois loi NOM f p 110.12 72.30 22.75 27.84 +loisible loisible ADJ s 0.00 0.74 0.00 0.74 +loisir loisir NOM m s 5.09 20.81 2.41 13.24 +loisirs loisir NOM m p 5.09 20.81 2.68 7.57 +lokoum lokoum NOM m s 0.00 0.14 0.00 0.14 +lolita lolita NOM f s 0.10 0.07 0.04 0.00 +lolitas lolita NOM f p 0.10 0.07 0.06 0.07 +lolo lolo NOM m s 1.81 0.41 0.70 0.34 +lolos lolo NOM m p 1.81 0.41 1.12 0.07 +lombaire lombaire ADJ s 1.37 0.34 1.06 0.20 +lombaires lombaire ADJ f p 1.37 0.34 0.30 0.14 +lombalgie lombalgie NOM f s 0.01 0.00 0.01 0.00 +lombard lombard ADJ m s 0.14 0.74 0.00 0.20 +lombarde lombard ADJ f s 0.14 0.74 0.14 0.14 +lombardes lombard ADJ f p 0.14 0.74 0.00 0.14 +lombardo lombardo NOM m 0.01 0.00 0.01 0.00 +lombards lombard ADJ m p 0.14 0.74 0.00 0.27 +lombes lombes NOM f p 0.00 0.41 0.00 0.41 +lombostats lombostat NOM m p 0.00 0.07 0.00 0.07 +lombric lombric NOM m s 0.28 0.74 0.08 0.41 +lombrics lombric NOM m p 0.28 0.74 0.20 0.34 +lompe lompe NOM m s 0.01 0.00 0.01 0.00 +londonien londonien ADJ m s 1.09 0.95 0.44 0.47 +londonienne londonien ADJ f s 1.09 0.95 0.20 0.20 +londoniennes londonien ADJ f p 1.09 0.95 0.04 0.07 +londoniens londonien ADJ m p 1.09 0.95 0.41 0.20 +londrès londrès NOM m 0.00 0.07 0.00 0.07 +long_courrier long_courrier NOM m s 0.26 0.61 0.25 0.47 +long_courrier long_courrier NOM m p 0.26 0.61 0.01 0.14 +long_métrage long_métrage NOM m s 0.06 0.00 0.06 0.00 +long long ADJ m s 164.02 444.86 79.18 153.51 +longane longane NOM m s 0.14 0.00 0.14 0.00 +longanimité longanimité NOM f s 0.00 0.14 0.00 0.14 +longe longer VER 2.98 34.32 0.55 5.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +longea longer VER 2.98 34.32 0.01 3.65 ind:pas:3s; +longeai longer VER 2.98 34.32 0.00 0.27 ind:pas:1s; +longeaient longer VER 2.98 34.32 0.00 1.82 ind:imp:3p; +longeais longer VER 2.98 34.32 0.12 0.81 ind:imp:1s; +longeait longer VER 2.98 34.32 0.03 6.76 ind:imp:3s; +longeant longer VER 2.98 34.32 0.40 5.68 par:pre; +longent longer VER 2.98 34.32 0.14 0.74 ind:pre:3p; +longeâmes longer VER 2.98 34.32 0.00 0.41 ind:pas:1p; +longeons longer VER 2.98 34.32 0.02 0.81 imp:pre:1p;ind:pre:1p; +longer longer VER 2.98 34.32 0.61 2.57 inf; +longera longer VER 2.98 34.32 0.16 0.00 ind:fut:3s; +longeraient longer VER 2.98 34.32 0.00 0.07 cnd:pre:3p; +longerait longer VER 2.98 34.32 0.00 0.14 cnd:pre:3s; +longerions longer VER 2.98 34.32 0.00 0.07 cnd:pre:1p; +longeron longeron NOM m s 0.00 0.20 0.00 0.07 +longerons longer VER 2.98 34.32 0.01 0.00 ind:fut:1p; +longeront longer VER 2.98 34.32 0.01 0.20 ind:fut:3p; +longes longe NOM f p 0.11 1.35 0.03 0.07 +longez longer VER 2.98 34.32 0.43 0.14 imp:pre:2p;ind:pre:2p; +longicornes longicorne NOM m p 0.00 0.07 0.00 0.07 +longiez longer VER 2.98 34.32 0.01 0.00 ind:imp:2p; +longiforme longiforme ADJ s 0.00 0.07 0.00 0.07 +longiligne longiligne ADJ m s 0.02 0.88 0.00 0.81 +longilignes longiligne ADJ m p 0.02 0.88 0.02 0.07 +longions longer VER 2.98 34.32 0.10 0.74 ind:imp:1p; +longitude longitude NOM f s 0.46 0.41 0.46 0.41 +longitudinal longitudinal ADJ m s 0.19 0.54 0.03 0.00 +longitudinale longitudinal ADJ f s 0.19 0.54 0.01 0.07 +longitudinalement longitudinalement ADV 0.00 0.07 0.00 0.07 +longitudinales longitudinal ADJ f p 0.19 0.54 0.15 0.41 +longitudinaux longitudinal ADJ m p 0.19 0.54 0.00 0.07 +longrines longrine NOM f p 0.00 0.07 0.00 0.07 +longs long ADJ m p 164.02 444.86 17.65 65.47 +longtemps longtemps ADV 290.36 335.54 290.36 335.54 +longèrent longer VER 2.98 34.32 0.00 1.55 ind:pas:3p; +longé longer VER m s 2.98 34.32 0.38 1.76 par:pas; +longue_vue longue_vue NOM f s 0.30 2.64 0.29 2.50 +longue long ADJ f s 164.02 444.86 54.12 138.31 +longée longer VER f s 2.98 34.32 0.01 0.14 par:pas; +longuement longuement ADV 3.71 58.45 3.71 58.45 +longue_vue longue_vue NOM f p 0.30 2.64 0.01 0.14 +longues long ADJ f p 164.02 444.86 13.07 87.57 +longuet longuet ADJ m s 0.02 0.41 0.01 0.20 +longuette longuet ADJ f s 0.02 0.41 0.01 0.14 +longuettes longuet ADJ f p 0.02 0.41 0.00 0.07 +longueur longueur NOM f s 9.42 28.45 8.36 26.82 +longueurs longueur NOM f p 9.42 28.45 1.06 1.62 +longés longer VER m p 2.98 34.32 0.00 0.07 par:pas; +longévité longévité NOM f s 0.71 0.88 0.71 0.88 +look look NOM m s 10.93 1.96 10.47 1.82 +looks look NOM m p 10.93 1.96 0.46 0.14 +looping looping NOM m s 0.33 0.68 0.27 0.54 +loopings looping NOM m p 0.33 0.68 0.06 0.14 +looser looser NOM m s 1.09 0.00 0.82 0.00 +loosers looser NOM m p 1.09 0.00 0.27 0.00 +lopaille lopaille NOM f s 0.00 0.07 0.00 0.07 +lope lope NOM f s 1.01 1.69 0.53 1.08 +lopes lope NOM f p 1.01 1.69 0.48 0.61 +lopette lopette NOM f s 1.25 0.47 1.11 0.41 +lopettes lopette NOM f p 1.25 0.47 0.15 0.07 +lopin lopin NOM m s 0.62 0.41 0.52 0.34 +lopins lopin NOM m p 0.62 0.41 0.10 0.07 +loquace loquace ADJ s 0.61 2.43 0.58 2.03 +loquaces loquace ADJ f p 0.61 2.43 0.03 0.41 +loquacité loquacité NOM f s 0.01 0.00 0.01 0.00 +loquait loquer VER 0.41 0.27 0.00 0.07 ind:imp:3s; +loque loque NOM f s 2.20 9.66 1.72 3.24 +loquedu loquedu NOM s 0.07 2.50 0.01 1.08 +loquedus loquedu NOM p 0.07 2.50 0.06 1.42 +loquer loquer VER 0.41 0.27 0.00 0.14 inf; +loques loque NOM f p 2.20 9.66 0.48 6.42 +loquet loquet NOM m s 0.60 4.39 0.60 4.05 +loqueteau loqueteau NOM m s 0.00 0.07 0.00 0.07 +loqueteuse loqueteux ADJ f s 0.06 1.89 0.00 0.07 +loqueteuses loqueteux ADJ f p 0.06 1.89 0.00 0.07 +loqueteux loqueteux ADJ m 0.06 1.89 0.06 1.76 +loquets loquet NOM m p 0.60 4.39 0.00 0.34 +loquette loqueter VER 0.00 0.07 0.00 0.07 ind:pre:3s; +loqué loquer VER m s 0.41 0.27 0.41 0.00 par:pas; +loqués loquer VER m p 0.41 0.27 0.00 0.07 par:pas; +loran loran NOM m s 0.14 0.00 0.14 0.00 +lord_maire lord_maire NOM m s 0.02 0.07 0.02 0.07 +lord lord NOM m s 1.41 7.57 1.26 6.69 +lordose lordose NOM f s 0.00 0.07 0.00 0.07 +lords lord NOM m p 1.41 7.57 0.15 0.88 +lorette lorette NOM f s 0.01 0.07 0.01 0.00 +lorettes lorette NOM f p 0.01 0.07 0.00 0.07 +lorgna lorgner VER 1.07 7.09 0.00 0.88 ind:pas:3s; +lorgnaient lorgner VER 1.07 7.09 0.02 0.54 ind:imp:3p; +lorgnais lorgner VER 1.07 7.09 0.04 0.20 ind:imp:1s;ind:imp:2s; +lorgnait lorgner VER 1.07 7.09 0.13 1.69 ind:imp:3s; +lorgnant lorgner VER 1.07 7.09 0.01 1.15 par:pre; +lorgne lorgner VER 1.07 7.09 0.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lorgnent lorgner VER 1.07 7.09 0.07 0.47 ind:pre:3p; +lorgner lorgner VER 1.07 7.09 0.14 0.88 inf; +lorgnerai lorgner VER 1.07 7.09 0.00 0.07 ind:fut:1s; +lorgnerez lorgner VER 1.07 7.09 0.00 0.07 ind:fut:2p; +lorgnette lorgnette NOM f s 0.13 2.09 0.13 1.08 +lorgnettes lorgnette NOM f p 0.13 2.09 0.00 1.01 +lorgnez lorgner VER 1.07 7.09 0.13 0.00 ind:pre:2p; +lorgnon lorgnon NOM m s 0.02 5.41 0.02 2.84 +lorgnons lorgnon NOM m p 0.02 5.41 0.00 2.57 +lorgnèrent lorgner VER 1.07 7.09 0.00 0.07 ind:pas:3p; +lorgné lorgner VER m s 1.07 7.09 0.00 0.47 par:pas; +lorgnées lorgner VER f p 1.07 7.09 0.00 0.07 par:pas; +lorgnés lorgner VER m p 1.07 7.09 0.00 0.07 par:pas; +lori lori NOM m s 0.01 0.00 0.01 0.00 +loriot loriot NOM m s 0.05 2.36 0.02 2.16 +loriots loriot NOM m p 0.05 2.36 0.03 0.20 +loris loris NOM m 0.04 0.00 0.04 0.00 +lorrain lorrain ADJ m s 0.06 1.49 0.00 0.47 +lorraine lorrain ADJ f s 0.06 1.49 0.06 0.74 +lorraines lorrain ADJ f p 0.06 1.49 0.00 0.20 +lorrains lorrain NOM m p 0.00 0.81 0.00 0.54 +lors lors ADV 35.79 70.27 35.79 70.27 +lorsqu lorsqu CON 0.04 0.00 0.04 0.00 +lorsque lorsque CON 49.36 207.09 49.36 207.09 +los los NOM m 5.08 2.77 5.08 2.77 +losange losange NOM m s 0.11 3.92 0.08 1.49 +losanges losange NOM m p 0.11 3.92 0.03 2.43 +losangé losangé ADJ m s 0.00 0.34 0.00 0.07 +losangée losangé ADJ f s 0.00 0.34 0.00 0.07 +losangés losangé ADJ m p 0.00 0.34 0.00 0.20 +loser loser NOM m s 4.77 0.07 3.27 0.07 +losers loser NOM m p 4.77 0.07 1.51 0.00 +lot lot NOM m s 13.28 17.16 11.87 15.68 +loterie loterie NOM f s 7.25 4.86 7.16 4.32 +loteries loterie NOM f p 7.25 4.86 0.09 0.54 +loti loti ADJ m s 0.69 1.22 0.09 0.34 +lotie lotir VER f s 0.26 0.54 0.23 0.14 par:pas; +lotier lotier NOM m s 0.00 0.07 0.00 0.07 +loties loti ADJ f p 0.69 1.22 0.00 0.07 +lotion lotion NOM f s 1.68 0.74 1.53 0.54 +lotionnés lotionner VER m p 0.00 0.07 0.00 0.07 par:pas; +lotions lotion NOM f p 1.68 0.74 0.15 0.20 +lotir lotir VER 0.26 0.54 0.01 0.34 inf; +lotis loti ADJ m p 0.69 1.22 0.47 0.47 +lotissement lotissement NOM m s 0.77 1.01 0.59 0.47 +lotissements lotissement NOM m p 0.77 1.01 0.19 0.54 +loto loto NOM m s 6.75 1.35 6.75 1.15 +lotos loto NOM m p 6.75 1.35 0.00 0.20 +lots lot NOM m p 13.28 17.16 1.42 1.49 +lotta lotta NOM f s 0.16 0.41 0.16 0.41 +lotte lotte NOM f s 0.18 0.14 0.18 0.07 +lottes lotte NOM f p 0.18 0.14 0.00 0.07 +lotus lotus NOM m 0.58 1.08 0.58 1.08 +loua louer VER 48.08 29.46 0.17 1.08 ind:pas:3s; +louable louable ADJ s 1.37 1.89 1.04 1.42 +louablement louablement ADV 0.14 0.00 0.14 0.00 +louables louable ADJ p 1.37 1.89 0.33 0.47 +louage louage NOM m s 0.07 0.88 0.07 0.88 +louai louer VER 48.08 29.46 0.00 0.41 ind:pas:1s; +louaient louer VER 48.08 29.46 0.33 1.15 ind:imp:3p; +louais louer VER 48.08 29.46 0.42 0.34 ind:imp:1s;ind:imp:2s; +louait louer VER 48.08 29.46 1.46 3.24 ind:imp:3s; +louange louange NOM f s 3.06 6.35 0.97 1.82 +louangea louanger VER 0.13 0.74 0.00 0.14 ind:pas:3s; +louangeaient louanger VER 0.13 0.74 0.00 0.07 ind:imp:3p; +louangeant louanger VER 0.13 0.74 0.00 0.07 par:pre; +louanger louanger VER 0.13 0.74 0.12 0.20 inf; +louanges louange NOM f p 3.06 6.35 2.09 4.53 +louangeur louangeur ADJ m s 0.00 0.20 0.00 0.14 +louangeuses louangeur ADJ f p 0.00 0.20 0.00 0.07 +louangé louanger VER m s 0.13 0.74 0.00 0.07 par:pas; +louangée louanger VER f s 0.13 0.74 0.00 0.07 par:pas; +louangés louanger VER m p 0.13 0.74 0.01 0.07 par:pas; +louant louer VER 48.08 29.46 0.23 0.54 par:pre; +loubard loubard NOM m s 1.73 3.04 1.04 1.01 +loubarde loubard NOM f s 1.73 3.04 0.00 0.34 +loubards loubard NOM m p 1.73 3.04 0.69 1.69 +loucha loucher VER 2.54 6.35 0.00 0.27 ind:pas:3s; +louchai loucher VER 2.54 6.35 0.00 0.07 ind:pas:1s; +louchaient loucher VER 2.54 6.35 0.00 0.41 ind:imp:3p; +louchais loucher VER 2.54 6.35 0.01 0.20 ind:imp:1s;ind:imp:2s; +louchait loucher VER 2.54 6.35 0.20 1.08 ind:imp:3s; +louchant loucher VER 2.54 6.35 0.04 1.42 par:pre; +louche louche ADJ s 7.63 9.05 5.71 5.88 +louchebem louchebem NOM m s 0.00 0.27 0.00 0.27 +louchement louchement NOM m s 0.00 0.07 0.00 0.07 +louchent loucher VER 2.54 6.35 0.15 0.14 ind:pre:3p; +loucher loucher VER 2.54 6.35 0.40 0.61 inf; +louches louche ADJ p 7.63 9.05 1.92 3.18 +louchet louchet NOM m s 0.00 0.07 0.00 0.07 +loucheur loucheur NOM m s 0.05 0.27 0.05 0.14 +loucheuse loucheur NOM f s 0.05 0.27 0.00 0.14 +louchez loucher VER 2.54 6.35 0.09 0.07 ind:pre:2p; +louchon louchon NOM m s 0.00 0.14 0.00 0.07 +louchons loucher VER 2.54 6.35 0.01 0.14 ind:pre:1p; +louchât loucher VER 2.54 6.35 0.00 0.07 sub:imp:3s; +louché loucher VER m s 2.54 6.35 0.01 0.41 par:pas; +louchébème louchébème NOM m s 0.00 0.07 0.00 0.07 +louchée loucher VER f s 2.54 6.35 0.01 0.14 par:pas; +loue louer VER 48.08 29.46 6.01 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +louent louer VER 48.08 29.46 0.76 0.41 ind:pre:3p; +louer louer VER 48.08 29.46 15.03 7.57 ind:pre:2p;inf; +louera louer VER 48.08 29.46 0.33 0.14 ind:fut:3s; +louerai louer VER 48.08 29.46 0.29 0.14 ind:fut:1s; +loueraient louer VER 48.08 29.46 0.01 0.07 cnd:pre:3p; +louerais louer VER 48.08 29.46 0.31 0.14 cnd:pre:1s;cnd:pre:2s; +louerait louer VER 48.08 29.46 0.05 0.41 cnd:pre:3s; +loueras louer VER 48.08 29.46 0.18 0.00 ind:fut:2s; +loueriez louer VER 48.08 29.46 0.01 0.07 cnd:pre:2p; +louerons louer VER 48.08 29.46 0.17 0.07 ind:fut:1p; +loues louer VER 48.08 29.46 0.58 0.07 ind:pre:2s; +loueur loueur NOM m s 0.65 1.62 0.41 1.49 +loueurs loueur NOM m p 0.65 1.62 0.23 0.07 +loueuse loueur NOM f s 0.65 1.62 0.01 0.07 +louez louer VER 48.08 29.46 1.96 0.20 imp:pre:2p;ind:pre:2p; +louf louf ADJ m s 0.47 1.55 0.47 1.55 +loufer loufer VER 0.00 0.20 0.00 0.07 inf; +loufes loufer VER 0.00 0.20 0.00 0.14 ind:pre:2s; +loufiat loufiat NOM m s 0.20 6.76 0.14 5.27 +loufiats loufiat NOM m p 0.20 6.76 0.05 1.49 +loufoque loufoque ADJ s 0.87 0.41 0.68 0.34 +loufoquerie loufoquerie NOM f s 0.04 0.27 0.04 0.20 +loufoqueries loufoquerie NOM f p 0.04 0.27 0.00 0.07 +loufoques loufoque ADJ f p 0.87 0.41 0.19 0.07 +louftingue louftingue ADJ s 0.00 0.07 0.00 0.07 +louions louer VER 48.08 29.46 0.12 0.07 ind:imp:1p; +louis_philippard louis_philippard ADJ m s 0.00 0.34 0.00 0.07 +louis_philippard louis_philippard ADJ f s 0.00 0.34 0.00 0.14 +louis_philippard louis_philippard ADJ m p 0.00 0.34 0.00 0.14 +louis louis NOM m s 5.01 5.07 5.01 5.07 +louise_bonne louise_bonne NOM f s 0.00 0.07 0.00 0.07 +louisianais louisianais ADJ m s 0.02 0.00 0.02 0.00 +loukoum loukoum NOM m s 0.07 2.57 0.02 0.95 +loukoums loukoum NOM m p 0.07 2.57 0.05 1.62 +loulou loulou NOM m s 1.48 19.32 1.45 18.72 +loulous loulou NOM m p 1.48 19.32 0.03 0.61 +louloute louloute NOM f s 0.45 0.20 0.35 0.07 +louloutes louloute NOM f p 0.45 0.20 0.10 0.14 +louloutte louloutte NOM f s 0.00 0.07 0.00 0.07 +louâmes louer VER 48.08 29.46 0.00 0.07 ind:pas:1p; +louons louer VER 48.08 29.46 1.35 0.27 imp:pre:1p;ind:pre:1p; +loup_cervier loup_cervier NOM m s 0.00 0.14 0.00 0.07 +loup_garou loup_garou NOM m s 3.98 1.22 3.35 0.88 +loup loup NOM m s 30.40 44.39 20.97 22.30 +loupa louper VER 12.06 9.46 0.03 0.14 ind:pas:3s; +loupai louper VER 12.06 9.46 0.00 0.07 ind:pas:1s; +loupaient louper VER 12.06 9.46 0.00 0.07 ind:imp:3p; +loupais louper VER 12.06 9.46 0.00 0.07 ind:imp:1s; +loupait louper VER 12.06 9.46 0.02 0.27 ind:imp:3s; +loupe loupe NOM f s 1.71 5.47 1.66 4.86 +loupent louper VER 12.06 9.46 0.06 0.07 ind:pre:3p; +louper louper VER 12.06 9.46 3.81 3.04 inf; +loupera louper VER 12.06 9.46 0.26 0.20 ind:fut:3s; +louperai louper VER 12.06 9.46 0.15 0.07 ind:fut:1s; +louperais louper VER 12.06 9.46 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +louperait louper VER 12.06 9.46 0.00 0.07 cnd:pre:3s; +louperas louper VER 12.06 9.46 0.02 0.00 ind:fut:2s; +louperez louper VER 12.06 9.46 0.03 0.00 ind:fut:2p; +loupes louper VER 12.06 9.46 0.69 0.14 ind:pre:2s; +loupez louper VER 12.06 9.46 0.17 0.07 imp:pre:2p;ind:pre:2p; +loupiat loupiat NOM m s 0.00 0.14 0.00 0.14 +loupiez louper VER 12.06 9.46 0.04 0.07 ind:imp:2p; +loupiot loupiot NOM m s 0.13 0.41 0.12 0.20 +loupiote loupiote NOM f s 0.06 1.01 0.02 0.68 +loupiotes loupiote NOM f p 0.06 1.01 0.03 0.34 +loupiots loupiot NOM m p 0.13 0.41 0.01 0.20 +loupiotte loupiotte NOM f s 0.00 0.14 0.00 0.07 +loupiottes loupiotte NOM f p 0.00 0.14 0.00 0.07 +loup_cervier loup_cervier NOM m p 0.00 0.14 0.00 0.07 +loup_garou loup_garou NOM m p 3.98 1.22 0.63 0.34 +loups loup NOM m p 30.40 44.39 8.41 18.24 +loupé louper VER m s 12.06 9.46 5.37 2.64 par:pas; +loupée louper VER f s 12.06 9.46 0.40 0.20 par:pas; +loupées louper VER f p 12.06 9.46 0.04 0.14 par:pas; +loupés louper VER m p 12.06 9.46 0.18 0.27 par:pas; +lourant lourer VER 0.00 0.07 0.00 0.07 par:pre; +lourd lourd ADV 16.09 21.35 16.09 21.35 +lourdait lourder VER 0.38 1.69 0.00 0.07 ind:imp:3s; +lourdant lourder VER 0.38 1.69 0.00 0.07 par:pre; +lourdaud lourdaud NOM m s 0.64 0.95 0.48 0.74 +lourdaude lourdaud ADJ f s 0.35 0.68 0.00 0.14 +lourdaudes lourdaud ADJ f p 0.35 0.68 0.00 0.07 +lourdauds lourdaud NOM m p 0.64 0.95 0.16 0.20 +lourde lourd ADJ f s 29.45 145.88 8.46 56.62 +lourdement lourdement ADV 1.87 14.66 1.87 14.66 +lourder lourder VER 0.38 1.69 0.22 0.61 inf; +lourderie lourderie NOM f s 0.00 0.07 0.00 0.07 +lourdes lourd ADJ f p 29.45 145.88 4.26 23.18 +lourdeur lourdeur NOM f s 0.20 5.47 0.19 4.86 +lourdeurs lourdeur NOM f p 0.20 5.47 0.01 0.61 +lourdingue lourdingue ADJ f s 0.14 0.88 0.07 0.34 +lourdingues lourdingue ADJ m p 0.14 0.88 0.07 0.54 +lourds lourd ADJ m p 29.45 145.88 6.58 23.58 +lourdé lourder VER m s 0.38 1.69 0.10 0.34 par:pas; +lourdée lourder VER f s 0.38 1.69 0.05 0.27 par:pas; +lourdées lourder VER f p 0.38 1.69 0.00 0.14 par:pas; +lourdés lourder VER m p 0.38 1.69 0.01 0.20 par:pas; +loustic loustic NOM m s 0.08 1.49 0.06 0.95 +loustics loustic NOM m p 0.08 1.49 0.02 0.54 +loute loute NOM f s 0.07 0.14 0.07 0.14 +louèrent louer VER 48.08 29.46 0.02 0.47 ind:pas:3p; +loutre loutre NOM f s 2.52 1.62 1.30 1.35 +loutres loutre NOM f p 2.52 1.62 1.22 0.27 +loué louer VER m s 48.08 29.46 16.22 7.91 par:pas; +louée louer VER f s 48.08 29.46 1.64 2.09 par:pas; +louées loué ADJ f p 1.67 1.82 0.12 0.14 +loués louer VER m p 48.08 29.46 0.37 0.34 par:pas; +louve loup NOM f s 30.40 44.39 1.02 3.51 +louves louve NOM f p 0.02 0.00 0.02 0.00 +louvet louvet ADJ m s 0.01 2.91 0.01 2.91 +louveteau louveteau NOM m s 0.23 2.36 0.13 0.54 +louveteaux louveteau NOM m p 0.23 2.36 0.11 1.82 +louvetiers louvetier NOM m p 0.00 0.07 0.00 0.07 +louvoie louvoyer VER 0.31 2.97 0.07 0.81 ind:pre:1s;ind:pre:3s; +louvoiements louvoiement NOM m p 0.00 0.14 0.00 0.14 +louvoient louvoyer VER 0.31 2.97 0.01 0.07 ind:pre:3p; +louvoyaient louvoyer VER 0.31 2.97 0.00 0.07 ind:imp:3p; +louvoyait louvoyer VER 0.31 2.97 0.01 0.20 ind:imp:3s; +louvoyant louvoyer VER 0.31 2.97 0.00 0.61 par:pre; +louvoyants louvoyant ADJ m p 0.00 0.20 0.00 0.07 +louvoyer louvoyer VER 0.31 2.97 0.18 0.88 inf; +louvoyons louvoyer VER 0.31 2.97 0.00 0.07 ind:pre:1p; +louvoyât louvoyer VER 0.31 2.97 0.00 0.07 sub:imp:3s; +louvoyé louvoyer VER m s 0.31 2.97 0.04 0.20 par:pas; +lova lover VER 8.85 7.03 0.00 0.20 ind:pas:3s; +lovaient lover VER 8.85 7.03 0.00 0.07 ind:imp:3p; +lovais lover VER 8.85 7.03 0.01 0.00 ind:imp:1s; +lovait lover VER 8.85 7.03 0.00 0.34 ind:imp:3s; +lovant lover VER 8.85 7.03 0.00 0.14 par:pre; +love lover VER 8.85 7.03 8.64 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lovent lover VER 8.85 7.03 0.00 0.07 ind:pre:3p; +lover lover VER 8.85 7.03 0.14 1.01 inf; +lové lover VER m s 8.85 7.03 0.04 1.15 par:pas; +lovée lover VER f s 8.85 7.03 0.02 0.95 par:pas; +lovées lover VER f p 8.85 7.03 0.00 0.14 par:pas; +lovés lover VER m p 8.85 7.03 0.00 0.47 par:pas; +loyal loyal ADJ m s 10.96 7.36 5.87 3.72 +loyale loyal ADJ f s 10.96 7.36 2.13 1.82 +loyalement loyalement ADV 0.81 1.42 0.81 1.42 +loyales loyal ADJ f p 10.96 7.36 0.19 0.00 +loyalisme loyalisme NOM m s 0.08 1.15 0.08 1.15 +loyaliste loyaliste ADJ f s 0.07 0.07 0.03 0.00 +loyalistes loyaliste NOM p 0.07 0.07 0.06 0.00 +loyauté loyauté NOM f s 9.38 3.11 9.36 2.97 +loyautés loyauté NOM f p 9.38 3.11 0.02 0.14 +loyaux loyal ADJ m p 10.96 7.36 2.76 1.82 +loyer loyer NOM m s 17.18 6.49 16.20 5.07 +loyers loyer NOM m p 17.18 6.49 0.98 1.42 +lsd lsd NOM m 0.08 0.00 0.08 0.00 +lèche_botte lèche_botte NOM m s 0.11 0.00 0.11 0.00 +lèche_bottes lèche_bottes NOM m 0.68 0.34 0.68 0.34 +lèche_cul lèche_cul NOM m s 1.29 0.61 1.29 0.61 +lèche_vitrine lèche_vitrine NOM m s 0.26 0.07 0.26 0.07 +lèche_vitrines lèche_vitrines NOM m 0.07 0.20 0.07 0.20 +lèche lécher VER 14.09 23.11 4.03 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lèchefrite lèchefrite NOM f s 0.00 0.07 0.00 0.07 +lèchent lécher VER 14.09 23.11 0.50 0.34 ind:pre:3p; +lècheries lècherie NOM f p 0.00 0.07 0.00 0.07 +lèches lécher VER 14.09 23.11 0.50 0.07 ind:pre:2s; +lègue léguer VER 4.98 5.61 1.47 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lèpre lèpre NOM f s 1.40 3.65 1.40 3.51 +lèpres lèpre NOM f p 1.40 3.65 0.00 0.14 +lès lès PRE 0.00 0.07 0.00 0.07 +lèse_majesté lèse_majesté NOM f 0.03 0.27 0.03 0.27 +lèse léser VER 1.36 1.08 0.06 0.07 ind:pre:3s; +lève lever VER 165.98 440.74 67.72 77.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +lèvent lever VER 165.98 440.74 1.67 8.45 ind:pre:3p;sub:pre:3p; +lèvera lever VER 165.98 440.74 1.91 1.89 ind:fut:3s; +lèverai lever VER 165.98 440.74 0.70 0.95 ind:fut:1s; +lèveraient lever VER 165.98 440.74 0.05 0.34 cnd:pre:3p; +lèverais lever VER 165.98 440.74 0.26 0.41 cnd:pre:1s;cnd:pre:2s; +lèverait lever VER 165.98 440.74 0.48 1.35 cnd:pre:3s; +lèveras lever VER 165.98 440.74 0.32 0.07 ind:fut:2s; +lèverez lever VER 165.98 440.74 0.17 0.07 ind:fut:2p; +lèverons lever VER 165.98 440.74 0.31 0.14 ind:fut:1p; +lèveront lever VER 165.98 440.74 0.26 0.20 ind:fut:3p; +lèves lever VER 165.98 440.74 5.42 1.35 ind:pre:2s;sub:pre:2s; +lèvre lèvre NOM f s 37.91 222.03 4.00 20.74 +lèvres lèvre NOM f p 37.91 222.03 33.91 201.28 +lé lé NOM m s 2.30 2.03 2.28 1.35 +lu lire VER m s 281.09 324.80 82.12 57.97 par:pas; +lubie lubie NOM f s 2.41 2.77 1.37 1.35 +lubies lubie NOM f p 2.41 2.77 1.04 1.42 +lubricité lubricité NOM f s 0.57 0.74 0.57 0.74 +lubrifiant lubrifiant NOM m s 0.63 0.68 0.58 0.54 +lubrifiante lubrifiant ADJ f s 0.10 0.07 0.00 0.07 +lubrifiants lubrifiant NOM m p 0.63 0.68 0.05 0.14 +lubrification lubrification NOM f s 0.14 0.00 0.14 0.00 +lubrifie lubrifier VER 0.53 0.41 0.19 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lubrifient lubrifier VER 0.53 0.41 0.01 0.00 ind:pre:3p; +lubrifier lubrifier VER 0.53 0.41 0.24 0.20 inf; +lubrifié lubrifié ADJ m s 0.17 0.20 0.11 0.07 +lubrifiée lubrifier VER f s 0.53 0.41 0.03 0.00 par:pas; +lubrifiées lubrifié ADJ f p 0.17 0.20 0.02 0.14 +lubrifiés lubrifié ADJ m p 0.17 0.20 0.01 0.00 +lubrique lubrique ADJ s 1.60 3.31 1.04 2.03 +lubriques lubrique ADJ p 1.60 3.31 0.56 1.28 +lucarne lucarne NOM f s 0.95 10.00 0.78 8.24 +lucarnes lucarne NOM f p 0.95 10.00 0.17 1.76 +luce luce NOM f s 0.01 0.00 0.01 0.00 +lucet lucet NOM m s 0.00 0.07 0.00 0.07 +lécha lécher VER 14.09 23.11 0.01 1.96 ind:pas:3s; +léchage léchage NOM m s 0.19 0.27 0.17 0.14 +léchages léchage NOM m p 0.19 0.27 0.01 0.14 +léchaient lécher VER 14.09 23.11 0.08 0.74 ind:imp:3p; +léchais lécher VER 14.09 23.11 0.11 0.27 ind:imp:1s;ind:imp:2s; +léchait lécher VER 14.09 23.11 0.37 3.45 ind:imp:3s; +léchant lécher VER 14.09 23.11 0.57 2.09 par:pre; +léchassions lécher VER 14.09 23.11 0.00 0.07 sub:imp:1p; +lécher lécher VER 14.09 23.11 5.73 6.89 inf; +léchera lécher VER 14.09 23.11 0.05 0.07 ind:fut:3s; +lécherai lécher VER 14.09 23.11 0.08 0.00 ind:fut:1s; +lécherais lécher VER 14.09 23.11 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +lécherait lécher VER 14.09 23.11 0.01 0.14 cnd:pre:3s; +lécheras lécher VER 14.09 23.11 0.04 0.07 ind:fut:2s; +lécheront lécher VER 14.09 23.11 0.05 0.00 ind:fut:3p; +lécheur lécheur NOM m s 0.47 0.34 0.30 0.14 +lécheurs lécheur NOM m p 0.47 0.34 0.17 0.07 +lécheuse lécheur NOM f s 0.47 0.34 0.01 0.07 +lécheuses lécheur NOM f p 0.47 0.34 0.00 0.07 +léchez lécher VER 14.09 23.11 0.35 0.20 imp:pre:2p;ind:pre:2p; +léchouillait léchouiller VER 0.04 0.20 0.00 0.07 ind:imp:3s; +léchouillent léchouiller VER 0.04 0.20 0.00 0.07 ind:pre:3p; +léchouiller léchouiller VER 0.04 0.20 0.02 0.07 inf; +léchouilles léchouiller VER 0.04 0.20 0.02 0.00 ind:pre:2s; +léchèrent lécher VER 14.09 23.11 0.00 0.14 ind:pas:3p; +léché lécher VER m s 14.09 23.11 0.93 1.42 par:pas; +léchée lécher VER f s 14.09 23.11 0.45 1.01 par:pas; +léchées lécher VER f p 14.09 23.11 0.14 0.41 par:pas; +léchés lécher VER m p 14.09 23.11 0.03 0.20 par:pas; +lucide lucide ADJ s 3.20 12.43 2.76 10.54 +lucidement lucidement ADV 0.02 0.68 0.02 0.68 +lucides lucide ADJ m p 3.20 12.43 0.44 1.89 +lucidité lucidité NOM f s 1.92 10.95 1.92 10.74 +lucidités lucidité NOM f p 1.92 10.95 0.00 0.20 +luciférien luciférien ADJ m s 0.01 0.34 0.00 0.20 +luciférienne luciférien ADJ f s 0.01 0.34 0.01 0.07 +lucifériens luciférien ADJ m p 0.01 0.34 0.00 0.07 +lucilie lucilie NOM f s 0.02 0.00 0.02 0.00 +luciole luciole NOM f s 1.50 2.30 1.01 0.54 +lucioles luciole NOM f p 1.50 2.30 0.48 1.76 +lucite lucite NOM f s 0.01 0.00 0.01 0.00 +lécithine lécithine NOM f s 0.15 0.00 0.15 0.00 +lucratif lucratif ADJ m s 1.54 0.95 0.88 0.27 +lucratifs lucratif ADJ m p 1.54 0.95 0.02 0.14 +lucrative lucratif ADJ f s 1.54 0.95 0.57 0.41 +lucratives lucratif ADJ f p 1.54 0.95 0.08 0.14 +lucre lucre NOM m s 0.14 0.54 0.14 0.54 +luddite luddite NOM m s 0.01 0.00 0.01 0.00 +ludion ludion NOM m s 0.00 0.61 0.00 0.54 +ludions ludion NOM m p 0.00 0.61 0.00 0.07 +ludique ludique ADJ s 0.42 0.61 0.41 0.54 +ludiques ludique ADJ p 0.42 0.61 0.01 0.07 +lue lire VER f s 281.09 324.80 2.82 3.18 par:pas; +lues lire VER f p 281.09 324.80 1.12 1.69 par:pas; +luette luette NOM f s 0.03 1.28 0.03 1.22 +luettes luette NOM f p 0.03 1.28 0.00 0.07 +lueur lueur NOM f s 6.65 64.19 5.37 49.12 +lueurs lueur NOM f p 6.65 64.19 1.28 15.07 +luffa luffa NOM m s 0.04 0.00 0.04 0.00 +légal légal ADJ m s 16.79 6.49 9.80 2.43 +légale légal ADJ f s 16.79 6.49 4.51 2.03 +légalement légalement ADV 5.09 2.03 5.09 2.03 +légales légal ADJ f p 16.79 6.49 1.48 1.42 +légalisant légaliser VER 0.76 0.14 0.03 0.07 par:pre; +légalisation légalisation NOM f s 0.09 0.00 0.09 0.00 +légalise légaliser VER 0.76 0.14 0.04 0.00 ind:pre:1s;ind:pre:3s; +légaliser légaliser VER 0.76 0.14 0.30 0.00 inf; +légalisez légaliser VER 0.76 0.14 0.14 0.07 imp:pre:2p; +légaliste légaliste ADJ s 0.00 0.14 0.00 0.07 +légalistes légaliste ADJ m p 0.00 0.14 0.00 0.07 +légalisé légaliser VER m s 0.76 0.14 0.12 0.00 par:pas; +légalisée légaliser VER f s 0.76 0.14 0.14 0.00 par:pas; +légalité légalité NOM f s 2.39 2.50 2.39 2.50 +légat légat NOM m s 0.15 2.23 0.00 1.96 +légataire légataire NOM s 0.15 0.34 0.14 0.34 +légataires légataire NOM p 0.15 0.34 0.01 0.00 +légation légation NOM f s 0.06 2.91 0.06 1.89 +légations légation NOM f p 0.06 2.91 0.00 1.01 +légats légat NOM m p 0.15 2.23 0.15 0.27 +légaux légal ADJ m p 16.79 6.49 1.00 0.61 +luge luge NOM f s 1.22 1.55 1.19 1.42 +légendaire légendaire ADJ s 4.10 7.50 3.57 5.74 +légendaires légendaire ADJ p 4.10 7.50 0.53 1.76 +légende légende NOM f s 20.41 27.43 16.07 21.49 +légender légender VER 0.00 0.14 0.00 0.07 inf; +légendes légende NOM f p 20.41 27.43 4.33 5.95 +légendée légender VER f s 0.00 0.14 0.00 0.07 par:pas; +léger léger ADJ m s 37.77 151.01 17.03 74.93 +luger luger NOM m s 0.38 0.47 0.36 0.47 +légers léger ADJ m p 37.77 151.01 2.57 17.16 +lugers luger NOM m p 0.38 0.47 0.01 0.00 +luges luge NOM f p 1.22 1.55 0.03 0.14 +légifère légiférer VER 0.22 0.27 0.01 0.07 ind:pre:3s; +légiférait légiférer VER 0.22 0.27 0.00 0.07 ind:imp:3s; +légiférer légiférer VER 0.22 0.27 0.19 0.14 inf; +légiféré légiférer VER m s 0.22 0.27 0.01 0.00 par:pas; +légion légion NOM f s 6.66 16.35 4.17 13.65 +légionellose légionellose NOM f s 0.03 0.00 0.03 0.00 +légionnaire légionnaire NOM m s 1.23 4.26 0.71 2.57 +légionnaires légionnaire NOM m p 1.23 4.26 0.52 1.69 +légions légion NOM f p 6.66 16.35 2.50 2.70 +législateur législateur NOM m s 0.47 1.08 0.30 0.68 +législateurs législateur NOM m p 0.47 1.08 0.17 0.41 +législatif législatif ADJ m s 0.73 2.03 0.41 0.74 +législatifs législatif ADJ m p 0.73 2.03 0.03 0.14 +législation législation NOM f s 1.16 1.42 1.16 1.42 +législative législatif ADJ f s 0.73 2.03 0.11 0.54 +législatives législatif ADJ f p 0.73 2.03 0.18 0.61 +législature législature NOM f s 0.20 0.14 0.20 0.14 +légiste légiste NOM s 7.97 1.42 7.28 1.35 +légistes légiste NOM p 7.97 1.42 0.69 0.07 +légitimaient légitimer VER 0.30 1.62 0.00 0.14 ind:imp:3p; +légitimait légitimer VER 0.30 1.62 0.00 0.14 ind:imp:3s; +légitimant légitimer VER 0.30 1.62 0.02 0.07 par:pre; +légitimation légitimation NOM f s 0.03 0.07 0.03 0.00 +légitimations légitimation NOM f p 0.03 0.07 0.00 0.07 +légitime légitime ADJ s 14.08 16.22 12.82 13.24 +légitimement légitimement ADV 0.27 1.22 0.27 1.22 +légitiment légitimer VER 0.30 1.62 0.00 0.07 ind:pre:3p; +légitimer légitimer VER 0.30 1.62 0.19 0.47 inf; +légitimera légitimer VER 0.30 1.62 0.01 0.07 ind:fut:3s; +légitimes légitime ADJ p 14.08 16.22 1.26 2.97 +légitimiste légitimiste ADJ m s 0.00 0.34 0.00 0.34 +légitimistes légitimiste NOM p 0.00 0.07 0.00 0.07 +légitimité légitimité NOM f s 0.76 1.76 0.76 1.76 +légitimé légitimer VER m s 0.30 1.62 0.05 0.27 par:pas; +légitimée légitimer VER f s 0.30 1.62 0.00 0.07 par:pas; +légère léger ADJ f s 37.77 151.01 15.71 47.84 +légèrement légèrement ADV 6.35 65.20 6.35 65.20 +légères léger ADJ f p 37.77 151.01 2.45 11.08 +légèreté légèreté NOM f s 1.35 12.70 1.35 12.50 +légèretés légèreté NOM f p 1.35 12.70 0.00 0.20 +légua léguer VER 4.98 5.61 0.02 0.27 ind:pas:3s; +léguaient léguer VER 4.98 5.61 0.00 0.07 ind:imp:3p; +léguais léguer VER 4.98 5.61 0.00 0.07 ind:imp:1s; +léguait léguer VER 4.98 5.61 0.04 0.20 ind:imp:3s; +léguant léguer VER 4.98 5.61 0.31 0.27 par:pre; +lugubre lugubre ADJ s 3.25 10.41 3.00 7.97 +lugubrement lugubrement ADV 0.00 0.81 0.00 0.81 +lugubres lugubre ADJ p 3.25 10.41 0.25 2.43 +léguer léguer VER 4.98 5.61 0.67 1.22 inf; +léguera léguer VER 4.98 5.61 0.00 0.07 ind:fut:3s; +léguerai léguer VER 4.98 5.61 0.01 0.20 ind:fut:1s; +léguerais léguer VER 4.98 5.61 0.01 0.07 cnd:pre:2s; +léguerez léguer VER 4.98 5.61 0.01 0.00 ind:fut:2p; +léguerons léguer VER 4.98 5.61 0.01 0.00 ind:fut:1p; +légueront léguer VER 4.98 5.61 0.01 0.00 ind:fut:3p; +léguez léguer VER 4.98 5.61 0.16 0.00 imp:pre:2p;ind:pre:2p; +légume légume NOM m s 15.16 23.45 3.20 2.09 +légumes légume NOM m p 15.16 23.45 11.96 21.35 +légumier légumier NOM m s 0.00 0.07 0.00 0.07 +légumineuse légumineux NOM f s 0.00 0.07 0.00 0.07 +légumineux légumineux ADJ m 0.00 0.07 0.00 0.07 +légué léguer VER m s 4.98 5.61 1.99 1.96 par:pas; +léguée léguer VER f s 4.98 5.61 0.09 0.47 par:pas; +léguées léguer VER f p 4.98 5.61 0.02 0.14 par:pas; +légués léguer VER m p 4.98 5.61 0.17 0.07 par:pas; +lui_même lui_même PRO:per m s 46.58 202.30 46.58 202.30 +lui lui PRO:per s 2308.74 4225.14 2308.74 4225.14 +luira luire VER 15.67 37.57 0.03 0.00 ind:fut:3s; +luiraient luire VER 15.67 37.57 0.00 0.07 cnd:pre:3p; +luirait luire VER 15.67 37.57 0.00 0.07 cnd:pre:3s; +luire luire VER 15.67 37.57 0.95 4.19 inf; +luirent luire VER 15.67 37.57 0.00 0.07 ind:pas:3p; +luis luire VER 15.67 37.57 6.61 1.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +luisaient luire VER 15.67 37.57 0.03 5.00 ind:imp:3p; +luisait luire VER 15.67 37.57 0.31 5.95 ind:imp:3s; +luisance luisance NOM f s 0.00 1.08 0.00 0.88 +luisances luisance NOM f p 0.00 1.08 0.00 0.20 +luisant luisant ADJ m s 0.81 28.51 0.52 8.45 +luisante luisant ADJ f s 0.81 28.51 0.09 7.43 +luisantes luisant ADJ f p 0.81 28.51 0.03 5.95 +luisants luisant ADJ m p 0.81 28.51 0.17 6.69 +luise luire VER 15.67 37.57 0.00 0.14 sub:pre:3s; +luisent luire VER 15.67 37.57 0.06 2.50 ind:pre:3p; +luit luire VER 15.67 37.57 2.02 3.31 ind:pre:3s;ind:pas:3s; +lulu lulu NOM m s 0.03 0.74 0.03 0.61 +lulus lulu NOM m p 0.03 0.74 0.00 0.14 +lumbago lumbago NOM m s 0.16 0.68 0.14 0.47 +lumbagos lumbago NOM m p 0.16 0.68 0.01 0.20 +lumen lumen NOM m s 0.05 0.34 0.05 0.34 +lumignon lumignon NOM m s 0.00 2.09 0.00 1.42 +lumignons lumignon NOM m p 0.00 2.09 0.00 0.68 +luminaire luminaire NOM m s 0.05 0.68 0.00 0.27 +luminaires luminaire NOM m p 0.05 0.68 0.05 0.41 +luminescence luminescence NOM f s 0.05 0.14 0.05 0.14 +luminescent luminescent ADJ m s 0.04 0.95 0.00 0.34 +luminescente luminescent ADJ f s 0.04 0.95 0.01 0.14 +luminescentes luminescent ADJ f p 0.04 0.95 0.03 0.34 +luminescents luminescent ADJ m p 0.04 0.95 0.00 0.14 +lumineuse lumineux ADJ f s 7.36 39.46 2.21 11.42 +lumineusement lumineusement ADV 0.10 0.27 0.10 0.27 +lumineuses lumineux ADJ f p 7.36 39.46 0.35 4.80 +lumineux lumineux ADJ m 7.36 39.46 4.79 23.24 +luminosité luminosité NOM f s 0.66 2.03 0.66 1.82 +luminosités luminosité NOM f p 0.66 2.03 0.00 0.20 +lumière lumière NOM f s 134.83 274.26 116.02 238.65 +lumières lumière NOM f p 134.83 274.26 18.81 35.61 +lump lump NOM m s 0.14 0.07 0.14 0.07 +lémur lémur NOM m s 0.01 0.00 0.01 0.00 +lémure lémure NOM m s 0.00 0.27 0.00 0.14 +lémures lémure NOM m p 0.00 0.27 0.00 0.14 +lémurien lémurien NOM m s 0.34 0.41 0.30 0.00 +lémuriens lémurien NOM m p 0.34 0.41 0.04 0.41 +lunaire lunaire ADJ s 3.82 4.66 3.58 3.78 +lunaires lunaire ADJ p 3.82 4.66 0.24 0.88 +lunaison lunaison NOM f s 0.01 0.14 0.01 0.07 +lunaisons lunaison NOM f p 0.01 0.14 0.00 0.07 +lunatique lunatique ADJ s 1.79 1.15 1.58 0.88 +lunatiques lunatique ADJ m p 1.79 1.15 0.21 0.27 +lunch lunch NOM m s 0.54 1.22 0.54 1.22 +luncher luncher VER 0.14 0.00 0.14 0.00 inf; +lunches lunche NOM m p 0.00 0.14 0.00 0.14 +lundi lundi NOM m s 36.94 24.46 36.01 23.51 +lundis lundi NOM m p 36.94 24.46 0.93 0.95 +lune lune NOM f s 61.02 66.69 58.29 63.24 +lunes lune NOM f p 61.02 66.69 2.74 3.45 +lunetier lunetier NOM m s 0.00 0.07 0.00 0.07 +lunette lunette NOM f s 33.33 75.27 1.71 7.43 +lunetteries lunetterie NOM f p 0.00 0.07 0.00 0.07 +lunettes lunette NOM f p 33.33 75.27 31.61 67.84 +lunetteux lunetteux ADJ m s 0.00 0.20 0.00 0.20 +lunetté lunetté ADJ m s 0.00 0.20 0.00 0.20 +lénifiait lénifier VER 0.00 0.07 0.00 0.07 ind:imp:3s; +lénifiant lénifiant ADJ m s 0.04 1.01 0.01 0.07 +lénifiante lénifiant ADJ f s 0.04 1.01 0.01 0.68 +lénifiantes lénifiant ADJ f p 0.04 1.01 0.00 0.20 +lénifiants lénifiant ADJ m p 0.04 1.01 0.01 0.07 +lénification lénification NOM f s 0.00 0.07 0.00 0.07 +léninisme léninisme NOM m s 0.27 0.20 0.27 0.20 +léniniste léniniste ADJ f s 0.14 0.27 0.14 0.20 +léninistes léniniste NOM p 0.00 0.34 0.00 0.34 +lénitive lénitif ADJ f s 0.00 0.27 0.00 0.20 +lénitives lénitif ADJ f p 0.00 0.27 0.00 0.07 +luné luné ADJ m s 0.84 0.68 0.66 0.47 +lunée luné ADJ f s 0.84 0.68 0.18 0.07 +lunule lunule NOM f s 0.00 1.01 0.00 0.34 +lunules lunule NOM f p 0.00 1.01 0.00 0.68 +lunés luné ADJ m p 0.84 0.68 0.00 0.14 +léonard léonard ADJ m s 0.05 0.14 0.05 0.14 +léonin léonin ADJ m s 0.00 0.68 0.00 0.27 +léonine léonin ADJ f s 0.00 0.68 0.00 0.34 +léonins léonin ADJ m p 0.00 0.68 0.00 0.07 +léopard léopard NOM m s 3.64 2.70 3.18 2.57 +léopards léopard NOM m p 3.64 2.70 0.46 0.14 +léopardé léopardé ADJ m s 0.00 0.07 0.00 0.07 +lupanar lupanar NOM m s 0.21 0.95 0.07 0.74 +lupanars lupanar NOM m p 0.21 0.95 0.14 0.20 +lépidoptère lépidoptère NOM m s 0.00 0.20 0.00 0.14 +lépidoptères lépidoptère NOM m p 0.00 0.20 0.00 0.07 +lupin lupin NOM m s 0.25 0.47 0.15 0.20 +lupins lupin NOM m p 0.25 0.47 0.10 0.27 +lépiotes lépiote NOM f p 0.00 0.07 0.00 0.07 +lépontique lépontique NOM m s 0.00 0.14 0.00 0.14 +lépreuse lépreux ADJ f s 0.41 2.57 0.15 0.41 +lépreuses lépreuse NOM f p 0.04 0.00 0.04 0.00 +lépreux lépreux NOM m 2.61 2.64 2.54 2.57 +léprologie léprologie NOM f s 0.01 0.00 0.01 0.00 +léproserie léproserie NOM f s 0.32 0.81 0.32 0.74 +léproseries léproserie NOM f p 0.32 0.81 0.00 0.07 +lupus lupus NOM m 1.28 0.27 1.28 0.27 +lur lur NOM m s 0.00 0.07 0.00 0.07 +lurent lire VER 281.09 324.80 0.01 0.54 ind:pas:3p; +lurex lurex NOM m 0.20 0.14 0.20 0.14 +luron luron NOM m s 0.69 0.88 0.27 0.61 +luronne luron NOM f s 0.69 0.88 0.29 0.00 +luronnes luron NOM f p 0.69 0.88 0.00 0.14 +lurons luron NOM m p 0.69 0.88 0.13 0.14 +lérot lérot NOM m s 0.01 0.14 0.01 0.00 +lérots lérot NOM m p 0.01 0.14 0.00 0.14 +lés lé NOM m p 2.30 2.03 0.02 0.68 +lus lire VER m p 281.09 324.80 3.06 7.97 ind:pas:1s;ind:pas:2s;par:pas; +lésaient léser VER 1.36 1.08 0.00 0.07 ind:imp:3p; +lésais léser VER 1.36 1.08 0.00 0.07 ind:imp:1s; +léser léser VER 1.36 1.08 0.33 0.07 inf; +lésina lésiner VER 1.01 2.30 0.00 0.07 ind:pas:3s; +lésinaient lésiner VER 1.01 2.30 0.00 0.14 ind:imp:3p; +lésinait lésiner VER 1.01 2.30 0.00 0.20 ind:imp:3s; +lésine lésiner VER 1.01 2.30 0.47 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +lésinent lésiner VER 1.01 2.30 0.00 0.20 ind:pre:3p; +lésiner lésiner VER 1.01 2.30 0.36 0.88 inf; +lésinerie lésinerie NOM f s 0.00 0.07 0.00 0.07 +lésines lésine NOM f p 0.00 0.20 0.00 0.07 +lésinez lésiner VER 1.01 2.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +lésiné lésiner VER m s 1.01 2.30 0.09 0.47 par:pas; +lésion lésion NOM f s 4.37 1.28 1.84 0.47 +lésionnaire lésionnaire ADJ s 0.01 0.00 0.01 0.00 +lésions lésion NOM f p 4.37 1.28 2.53 0.81 +lusitanienne lusitanien ADJ f s 0.00 0.07 0.00 0.07 +lésons léser VER 1.36 1.08 0.01 0.00 ind:pre:1p; +lustra lustrer VER 0.80 2.43 0.00 0.07 ind:pas:3s; +lustrage lustrage NOM m s 0.05 0.00 0.05 0.00 +lustraient lustrer VER 0.80 2.43 0.00 0.07 ind:imp:3p; +lustrait lustrer VER 0.80 2.43 0.00 0.20 ind:imp:3s; +lustral lustral ADJ m s 0.00 1.35 0.00 0.74 +lustrale lustral ADJ f s 0.00 1.35 0.00 0.41 +lustrales lustral ADJ f p 0.00 1.35 0.00 0.20 +lustrant lustrer VER 0.80 2.43 0.01 0.07 par:pre; +lustre lustre NOM m s 3.92 15.14 0.93 7.30 +lustrer lustrer VER 0.80 2.43 0.51 0.68 inf; +lustres lustre NOM m p 3.92 15.14 2.99 7.84 +lustreur lustreur NOM m s 0.01 0.07 0.01 0.00 +lustreuse lustreur NOM f s 0.01 0.07 0.00 0.07 +lustrine lustrine NOM f s 0.00 0.74 0.00 0.74 +lustré lustrer VER m s 0.80 2.43 0.04 0.41 par:pas; +lustrée lustrer VER f s 0.80 2.43 0.06 0.41 par:pas; +lustrées lustré ADJ f p 0.09 2.23 0.02 0.27 +lustrés lustré ADJ m p 0.09 2.23 0.02 0.47 +lustucru lustucru NOM m s 0.01 0.07 0.01 0.07 +lésé léser VER m s 1.36 1.08 0.43 0.41 par:pas; +lésée léser VER f s 1.36 1.08 0.35 0.14 par:pas; +lésées léser VER f p 1.36 1.08 0.02 0.00 par:pas; +lésés léser VER m p 1.36 1.08 0.15 0.27 par:pas; +lut lire VER 281.09 324.80 0.36 15.88 ind:pas:3s; +létal létal ADJ m s 0.29 0.07 0.03 0.00 +létale létal ADJ f s 0.29 0.07 0.23 0.07 +létales létal ADJ f p 0.29 0.07 0.03 0.00 +létalité létalité NOM f s 0.02 0.00 0.02 0.00 +luth luth NOM m s 0.17 1.62 0.17 1.28 +léthargie léthargie NOM f s 0.76 2.16 0.75 2.09 +léthargies léthargie NOM f p 0.76 2.16 0.01 0.07 +léthargique léthargique ADJ s 0.22 0.81 0.18 0.54 +léthargiques léthargique ADJ m p 0.22 0.81 0.04 0.27 +lutherie lutherie NOM f s 0.00 0.07 0.00 0.07 +luthier luthier NOM m s 0.11 0.20 0.11 0.20 +luths luth NOM m p 0.17 1.62 0.00 0.34 +luthéranisme luthéranisme NOM m s 0.01 0.14 0.01 0.14 +luthérianisme luthérianisme NOM m s 0.00 0.07 0.00 0.07 +luthérien luthérien ADJ m s 0.36 0.81 0.10 0.47 +luthérienne luthérien ADJ f s 0.36 0.81 0.20 0.27 +luthériennes luthérienne ADJ f p 0.01 0.00 0.01 0.00 +luthériens luthérien ADJ m p 0.36 0.81 0.06 0.00 +lutin lutin NOM m s 2.14 1.01 1.45 0.61 +lutinaient lutiner VER 0.26 1.15 0.00 0.07 ind:imp:3p; +lutinait lutiner VER 0.26 1.15 0.01 0.20 ind:imp:3s; +lutinant lutiner VER 0.26 1.15 0.00 0.07 par:pre; +lutine lutin ADJ f s 0.63 0.61 0.01 0.07 +lutinent lutiner VER 0.26 1.15 0.00 0.14 ind:pre:3p; +lutiner lutiner VER 0.26 1.15 0.21 0.27 inf; +lutinerais lutiner VER 0.26 1.15 0.01 0.07 cnd:pre:1s; +lutins lutin NOM m p 2.14 1.01 0.69 0.41 +lutinèrent lutiner VER 0.26 1.15 0.00 0.07 ind:pas:3p; +lutiné lutiner VER m s 0.26 1.15 0.02 0.14 par:pas; +lutinée lutiner VER f s 0.26 1.15 0.00 0.07 par:pas; +lutrin lutrin NOM m s 0.00 1.35 0.00 1.15 +lutrins lutrin NOM m p 0.00 1.35 0.00 0.20 +lutta lutter VER 25.41 48.78 0.05 1.42 ind:pas:3s; +luttai lutter VER 25.41 48.78 0.14 0.27 ind:pas:1s; +luttaient lutter VER 25.41 48.78 0.32 2.03 ind:imp:3p; +luttais lutter VER 25.41 48.78 0.29 0.88 ind:imp:1s;ind:imp:2s; +luttait lutter VER 25.41 48.78 0.76 5.54 ind:imp:3s; +luttant lutter VER 25.41 48.78 1.56 5.20 par:pre; +lutte lutte NOM f s 23.18 41.82 22.00 37.36 +luttent lutter VER 25.41 48.78 1.56 1.76 ind:pre:3p; +lutter lutter VER 25.41 48.78 10.24 20.81 inf;; +luttera lutter VER 25.41 48.78 0.06 0.00 ind:fut:3s; +lutterai lutter VER 25.41 48.78 0.11 0.20 ind:fut:1s; +lutterais lutter VER 25.41 48.78 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +lutterait lutter VER 25.41 48.78 0.13 0.20 cnd:pre:3s; +lutterions lutter VER 25.41 48.78 0.00 0.07 cnd:pre:1p; +lutterons lutter VER 25.41 48.78 0.19 0.00 ind:fut:1p; +lutteront lutter VER 25.41 48.78 0.10 0.00 ind:fut:3p; +luttes lutte NOM f p 23.18 41.82 1.19 4.46 +lutteur lutteur NOM m s 1.27 3.78 0.88 1.62 +lutteurs lutteur NOM m p 1.27 3.78 0.24 1.08 +lutteuse lutteur NOM f s 1.27 3.78 0.14 0.27 +lutteuses lutteur NOM f p 1.27 3.78 0.01 0.81 +luttez lutter VER 25.41 48.78 0.92 0.14 imp:pre:2p;ind:pre:2p; +luttiez lutter VER 25.41 48.78 0.07 0.00 ind:imp:2p; +luttions lutter VER 25.41 48.78 0.02 0.27 ind:imp:1p; +luttons lutter VER 25.41 48.78 0.80 0.41 imp:pre:1p;ind:pre:1p; +luttât lutter VER 25.41 48.78 0.00 0.14 sub:imp:3s; +luttèrent lutter VER 25.41 48.78 0.14 0.41 ind:pas:3p; +lutté lutter VER m s 25.41 48.78 3.27 4.26 par:pas; +luté luter VER m s 0.00 0.14 0.00 0.14 par:pas; +lutécien lutécien ADJ m s 0.00 0.07 0.00 0.07 +lutz lutz NOM m 4.52 0.14 4.52 0.14 +léviathan léviathan NOM m s 0.27 0.27 0.27 0.27 +lévitation lévitation NOM f s 0.46 0.61 0.46 0.61 +lévite lévite NOM s 0.10 0.54 0.09 0.41 +lévitent léviter VER 0.47 0.07 0.01 0.07 ind:pre:3p; +léviter léviter VER 0.47 0.07 0.46 0.00 inf; +lévites lévite NOM p 0.10 0.54 0.01 0.14 +lévitique lévitique ADJ s 0.02 0.00 0.02 0.00 +lévitique lévitique NOM s 0.02 0.00 0.02 0.00 +lévrier lévrier NOM m s 0.94 2.30 0.31 1.55 +lévriers lévrier NOM m p 0.94 2.30 0.63 0.74 +lux lux NOM m 0.34 0.34 0.34 0.34 +luxa luxer VER 0.16 0.34 0.01 0.00 ind:pas:3s; +luxation luxation NOM f s 0.38 0.14 0.37 0.07 +luxations luxation NOM f p 0.38 0.14 0.01 0.07 +luxe luxe NOM m s 15.62 38.85 15.42 38.65 +luxembourgeois luxembourgeois ADJ m 0.00 0.74 0.00 0.47 +luxembourgeoise luxembourgeois ADJ f s 0.00 0.74 0.00 0.27 +luxer luxer VER 0.16 0.34 0.01 0.00 inf; +luxes luxe NOM m p 15.62 38.85 0.20 0.20 +luxé luxer VER m s 0.16 0.34 0.03 0.07 par:pas; +luxueuse luxueux ADJ f s 2.59 7.43 0.50 1.82 +luxueusement luxueusement ADV 0.39 0.81 0.39 0.81 +luxueuses luxueux ADJ f p 2.59 7.43 0.12 0.95 +luxueux luxueux ADJ m 2.59 7.43 1.98 4.66 +luxure luxure NOM f s 2.92 2.30 2.92 2.30 +luxuriance luxuriance NOM f s 0.10 0.47 0.10 0.47 +luxuriant luxuriant ADJ m s 0.41 1.62 0.18 0.34 +luxuriante luxuriant ADJ f s 0.41 1.62 0.17 0.81 +luxuriantes luxuriant ADJ f p 0.41 1.62 0.04 0.14 +luxuriants luxuriant ADJ m p 0.41 1.62 0.02 0.34 +luxurieuse luxurieux ADJ f s 0.03 0.54 0.01 0.20 +luxurieux luxurieux ADJ m 0.03 0.54 0.02 0.34 +lézard lézard NOM m s 6.16 11.42 4.90 7.50 +lézardaient lézarder VER 0.27 1.89 0.00 0.20 ind:imp:3p; +lézardait lézarder VER 0.27 1.89 0.00 0.41 ind:imp:3s; +lézarde lézard NOM f s 6.16 11.42 0.03 0.88 +lézardent lézarder VER 0.27 1.89 0.23 0.00 ind:pre:3p; +lézarder lézarder VER 0.27 1.89 0.01 0.34 inf; +lézardes lézard NOM f p 6.16 11.42 0.01 1.22 +lézards lézard NOM m p 6.16 11.42 1.22 1.82 +lézardé lézarder VER m s 0.27 1.89 0.01 0.07 par:pas; +lézardée lézardé ADJ f s 0.02 0.88 0.01 0.27 +lézardées lézardé ADJ f p 0.02 0.88 0.00 0.27 +lézardés lézarder VER m p 0.27 1.89 0.00 0.27 par:pas; +luzerne luzerne NOM f s 0.44 3.04 0.44 2.84 +luzernes luzerne NOM f p 0.44 3.04 0.00 0.20 +luzernières luzernière NOM f p 0.00 0.07 0.00 0.07 +lycanthrope lycanthrope NOM m s 0.10 0.00 0.09 0.00 +lycanthropes lycanthrope NOM m p 0.10 0.00 0.01 0.00 +lycanthropie lycanthropie NOM f s 0.18 0.00 0.18 0.00 +lycaons lycaon NOM m p 0.00 0.07 0.00 0.07 +lychee lychee NOM m s 0.16 0.14 0.14 0.00 +lychees lychee NOM m p 0.16 0.14 0.01 0.14 +lychnis lychnis NOM m 0.00 0.07 0.00 0.07 +lycien lycien NOM m s 0.00 0.20 0.00 0.07 +lyciennes lycien NOM f p 0.00 0.20 0.00 0.14 +lycoperdon lycoperdon NOM m s 0.00 0.14 0.00 0.07 +lycoperdons lycoperdon NOM m p 0.00 0.14 0.00 0.07 +lycra lycra NOM m s 0.28 0.14 0.28 0.14 +lycée lycée NOM m s 42.56 38.78 41.96 36.42 +lycéen lycéen NOM m s 3.13 10.61 0.64 1.42 +lycéenne lycéen NOM f s 3.13 10.61 0.68 5.95 +lycéennes lycéenne NOM f p 0.41 0.00 0.41 0.00 +lycéens lycéen NOM m p 3.13 10.61 1.81 1.69 +lycées lycée NOM m p 42.56 38.78 0.59 2.36 +lymphangite lymphangite NOM f s 0.00 0.07 0.00 0.07 +lymphatique lymphatique ADJ s 0.67 0.47 0.44 0.27 +lymphatiques lymphatique ADJ p 0.67 0.47 0.24 0.20 +lymphatisme lymphatisme NOM m s 0.00 0.07 0.00 0.07 +lymphe lymphe NOM f s 0.20 0.47 0.20 0.41 +lymphes lymphe NOM f p 0.20 0.47 0.00 0.07 +lymphoïde lymphoïde ADJ s 0.01 0.00 0.01 0.00 +lymphocytaire lymphocytaire ADJ s 0.02 0.14 0.02 0.07 +lymphocytaires lymphocytaire ADJ p 0.02 0.14 0.00 0.07 +lymphocyte lymphocyte NOM m s 0.18 0.20 0.03 0.00 +lymphocytes lymphocyte NOM m p 0.18 0.20 0.14 0.20 +lymphocytose lymphocytose NOM f s 0.01 0.00 0.01 0.00 +lymphome lymphome NOM m s 0.30 0.07 0.29 0.07 +lymphomes lymphome NOM m p 0.30 0.07 0.01 0.00 +lymphopénie lymphopénie NOM f s 0.00 0.07 0.00 0.07 +lymphosarcome lymphosarcome NOM m s 0.01 0.00 0.01 0.00 +lynch lynch NOM m s 0.29 0.27 0.29 0.27 +lynchage lynchage NOM m s 0.99 0.81 0.81 0.68 +lynchages lynchage NOM m p 0.99 0.81 0.18 0.14 +lynchait lyncher VER 1.04 0.81 0.01 0.07 ind:imp:3s; +lynchent lyncher VER 1.04 0.81 0.01 0.00 ind:pre:3p; +lyncher lyncher VER 1.04 0.81 0.58 0.47 inf; +lyncheurs lyncheur NOM m p 0.06 0.00 0.06 0.00 +lynchez lyncher VER 1.04 0.81 0.02 0.00 imp:pre:2p;ind:pre:2p; +lynchiez lyncher VER 1.04 0.81 0.01 0.00 ind:imp:2p; +lynchons lyncher VER 1.04 0.81 0.02 0.00 imp:pre:1p; +lynché lyncher VER m s 1.04 0.81 0.33 0.14 par:pas; +lynchée lyncher VER f s 1.04 0.81 0.01 0.07 par:pas; +lynchés lyncher VER m p 1.04 0.81 0.05 0.07 par:pas; +lynx lynx NOM m 1.73 1.22 1.73 1.22 +lyonnais lyonnais ADJ m 0.28 1.01 0.27 0.81 +lyonnaise lyonnais ADJ f s 0.28 1.01 0.01 0.20 +lyophilisant lyophiliser VER 0.07 0.00 0.01 0.00 par:pre; +lyophiliser lyophiliser VER 0.07 0.00 0.05 0.00 inf; +lyophilisé lyophilisé ADJ m s 0.15 0.07 0.06 0.00 +lyophilisée lyophilisé ADJ f s 0.15 0.07 0.04 0.00 +lyophilisés lyophilisé ADJ m p 0.15 0.07 0.04 0.07 +lyre lyre NOM f s 0.71 1.42 0.55 1.15 +lyres lyre NOM f p 0.71 1.42 0.16 0.27 +lyrique lyrique ADJ s 0.95 5.20 0.92 4.26 +lyriques lyrique ADJ p 0.95 5.20 0.03 0.95 +lyriser lyriser VER 0.00 0.07 0.00 0.07 inf; +lyrisme lyrisme NOM m s 0.26 3.11 0.26 3.11 +lys lys NOM m 2.41 3.38 2.41 3.38 +lyse lyse NOM f s 0.04 0.00 0.04 0.00 +lysergique lysergique ADJ m s 0.07 0.14 0.07 0.14 +lysimaque lysimaque NOM f s 0.01 0.00 0.01 0.00 +lysine lysine NOM f s 0.04 0.07 0.04 0.07 +lysosomes lysosome NOM m p 0.14 0.00 0.14 0.00 +m_as_tu_vu m_as_tu_vu ADJ s 0.03 0.00 0.03 0.00 +m m PRO:per s 13.94 0.27 13.94 0.27 +mîmes mettre VER 1004.84 1083.65 0.00 1.42 ind:pas:1p; +mît mettre VER 1004.84 1083.65 0.00 3.51 sub:imp:3s; +môle môle NOM s 1.60 3.92 1.60 3.45 +môles môle NOM p 1.60 3.92 0.00 0.47 +môme môme NOM s 28.15 61.08 18.88 37.03 +mômeries mômerie NOM f p 0.00 0.14 0.00 0.14 +mômes môme NOM p 28.15 61.08 9.28 24.05 +mû mouvoir VER m s 1.75 13.18 0.19 1.96 par:pas; +mûr mûr ADJ m s 9.89 19.73 3.60 8.31 +mûre mûr ADJ f s 9.89 19.73 2.98 4.80 +mûrement mûrement ADV 0.40 0.34 0.40 0.34 +mûres mûr ADJ f p 9.89 19.73 2.04 2.70 +mûri mûrir VER m s 3.77 8.24 1.32 1.42 par:pas; +mûrie mûrir VER f s 3.77 8.24 0.21 0.54 par:pas; +mûrier mûrier NOM m s 0.48 0.74 0.20 0.27 +mûriers mûrier NOM m p 0.48 0.74 0.28 0.47 +mûries mûrir VER f p 3.77 8.24 0.00 0.20 par:pas; +mûrir mûrir VER 3.77 8.24 1.11 2.70 inf; +mûrira mûrir VER 3.77 8.24 0.16 0.07 ind:fut:3s; +mûriraient mûrir VER 3.77 8.24 0.01 0.07 cnd:pre:3p; +mûrirez mûrir VER 3.77 8.24 0.00 0.07 ind:fut:2p; +mûris mûrir VER m p 3.77 8.24 0.23 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +mûrissaient mûrir VER 3.77 8.24 0.14 0.27 ind:imp:3p; +mûrissait mûrir VER 3.77 8.24 0.00 0.74 ind:imp:3s; +mûrissant mûrir VER 3.77 8.24 0.02 0.00 par:pre; +mûrissante mûrissant ADJ f s 0.02 0.61 0.00 0.20 +mûrissantes mûrissant ADJ f p 0.02 0.61 0.01 0.14 +mûrissants mûrissant ADJ m p 0.02 0.61 0.00 0.14 +mûrisse mûrir VER 3.77 8.24 0.11 0.14 sub:pre:1s;sub:pre:3s; +mûrissement mûrissement NOM m s 0.10 0.54 0.10 0.41 +mûrissements mûrissement NOM m p 0.10 0.54 0.00 0.14 +mûrissent mûrir VER 3.77 8.24 0.15 0.61 ind:pre:3p; +mûrisseries mûrisserie NOM f p 0.00 0.07 0.00 0.07 +mûrit mûrir VER 3.77 8.24 0.30 1.15 ind:pre:3s;ind:pas:3s; +mûron mûron NOM m s 0.00 0.07 0.00 0.07 +mûrs mûr ADJ m p 9.89 19.73 1.27 3.92 +ma_jong ma_jong NOM m s 0.02 0.07 0.02 0.07 +ma ma ADJ:pos 2346.90 1667.16 2346.90 1667.16 +maître_assistant maître_assistant NOM m s 0.00 0.07 0.00 0.07 +maître_autel maître_autel NOM m s 0.00 0.61 0.00 0.61 +maître_chanteur maître_chanteur NOM m s 0.21 0.20 0.21 0.20 +maître_chien maître_chien NOM m s 0.11 0.00 0.11 0.00 +maître_coq maître_coq NOM m s 0.01 0.00 0.01 0.00 +maître_nageur maître_nageur NOM m s 0.45 0.27 0.45 0.27 +maître_à_danser maître_à_danser NOM m s 0.00 0.07 0.00 0.07 +maître_queux maître_queux NOM m s 0.00 0.14 0.00 0.14 +maître maître NOM m s 128.55 151.49 118.88 125.74 +maîtres maître NOM m p 128.55 151.49 9.67 25.74 +maîtresse maîtresse NOM f s 26.59 53.92 25.22 47.43 +maîtresses maîtresse NOM f p 26.59 53.92 1.38 6.49 +maîtrisa maîtriser VER 15.57 14.93 0.01 0.81 ind:pas:3s; +maîtrisable maîtrisable ADJ f s 0.06 0.14 0.06 0.07 +maîtrisables maîtrisable ADJ p 0.06 0.14 0.00 0.07 +maîtrisaient maîtriser VER 15.57 14.93 0.05 0.34 ind:imp:3p; +maîtrisais maîtriser VER 15.57 14.93 0.16 0.07 ind:imp:1s;ind:imp:2s; +maîtrisait maîtriser VER 15.57 14.93 0.37 0.54 ind:imp:3s; +maîtrisant maîtriser VER 15.57 14.93 0.19 1.22 par:pre; +maîtrise maîtrise NOM f s 4.22 7.70 4.16 7.70 +maîtrisent maîtriser VER 15.57 14.93 0.39 0.27 ind:pre:3p; +maîtriser maîtriser VER 15.57 14.93 5.85 8.24 inf; +maîtrisera maîtriser VER 15.57 14.93 0.08 0.00 ind:fut:3s; +maîtriserai maîtriser VER 15.57 14.93 0.16 0.00 ind:fut:1s; +maîtriseraient maîtriser VER 15.57 14.93 0.00 0.07 cnd:pre:3p; +maîtriserait maîtriser VER 15.57 14.93 0.01 0.07 cnd:pre:3s; +maîtriseras maîtriser VER 15.57 14.93 0.01 0.00 ind:fut:2s; +maîtriserez maîtriser VER 15.57 14.93 0.03 0.00 ind:fut:2p; +maîtriseriez maîtriser VER 15.57 14.93 0.02 0.00 cnd:pre:2p; +maîtriserons maîtriser VER 15.57 14.93 0.20 0.07 ind:fut:1p; +maîtriseront maîtriser VER 15.57 14.93 0.02 0.00 ind:fut:3p; +maîtrises maîtriser VER 15.57 14.93 0.81 0.00 ind:pre:2s; +maîtrisez maîtriser VER 15.57 14.93 1.05 0.20 imp:pre:2p;ind:pre:2p; +maîtrisiez maîtriser VER 15.57 14.93 0.05 0.00 ind:imp:2p; +maîtrisions maîtriser VER 15.57 14.93 0.03 0.07 ind:imp:1p;sub:pre:1p; +maîtrisons maîtriser VER 15.57 14.93 0.43 0.00 imp:pre:1p;ind:pre:1p; +maîtrisèrent maîtriser VER 15.57 14.93 0.02 0.07 ind:pas:3p; +maîtrisé maîtriser VER m s 15.57 14.93 1.23 1.01 par:pas; +maîtrisée maîtriser VER f s 15.57 14.93 0.29 0.41 par:pas; +maîtrisées maîtriser VER f p 15.57 14.93 0.01 0.14 par:pas; +maîtrisés maîtrisé ADJ m p 0.60 1.35 0.20 0.14 +maïa maïa NOM m s 0.00 3.51 0.00 3.51 +maïs maïs NOM m 6.33 6.42 6.33 6.42 +maïzena maïzena NOM f s 0.03 0.20 0.03 0.20 +maboul maboul ADJ m s 0.97 1.35 0.61 0.68 +maboule maboul ADJ f s 0.97 1.35 0.30 0.47 +maboules maboul ADJ f p 0.97 1.35 0.03 0.14 +mabouls maboul NOM m p 0.34 0.95 0.09 0.00 +mac mac NOM m s 7.74 1.82 6.81 1.49 +macabre macabre ADJ s 2.63 3.51 2.26 2.70 +macabres macabre ADJ p 2.63 3.51 0.37 0.81 +macache macache ADV 0.06 0.74 0.06 0.74 +macadam macadam NOM m s 0.23 4.53 0.23 4.53 +macadamia macadamia NOM m s 0.11 0.00 0.11 0.00 +macaque macaque NOM s 1.72 0.41 1.44 0.14 +macaques macaque NOM p 1.72 0.41 0.28 0.27 +macarel macarel ONO 0.00 0.07 0.00 0.07 +macarelle macarelle ONO 0.00 0.14 0.00 0.14 +macareux macareux NOM m 0.01 0.27 0.01 0.27 +macaron macaron NOM m s 0.34 1.35 0.12 0.61 +macaroni macaroni NOM m s 3.11 2.43 1.37 1.01 +macaronique macaronique ADJ m s 0.00 0.14 0.00 0.14 +macaronis macaroni NOM m p 3.11 2.43 1.74 1.42 +macarons macaron NOM m p 0.34 1.35 0.22 0.74 +macassar macassar NOM m s 0.00 0.14 0.00 0.14 +maccarthysme maccarthysme NOM m s 0.05 0.00 0.05 0.00 +macchab macchab NOM m s 0.09 0.74 0.07 0.47 +macchabs macchab NOM m p 0.09 0.74 0.02 0.27 +macchabée macchabée NOM m s 2.63 1.96 1.86 0.95 +macchabées macchabée NOM m p 2.63 1.96 0.77 1.01 +macfarlane macfarlane NOM m s 0.34 0.07 0.34 0.07 +mach mach NOM m 0.07 0.07 0.07 0.07 +machaon machaon NOM m s 0.01 0.00 0.01 0.00 +machette machette NOM f s 2.64 1.35 1.88 1.22 +machettes machette NOM f p 2.64 1.35 0.77 0.14 +machiavélique machiavélique ADJ s 0.57 0.54 0.50 0.54 +machiavéliques machiavélique ADJ p 0.57 0.54 0.07 0.00 +machiavélisme machiavélisme NOM m s 0.01 0.47 0.01 0.41 +machiavélismes machiavélisme NOM m p 0.01 0.47 0.00 0.07 +machin machin NOM m s 14.60 14.32 12.34 10.07 +machina machiner VER 0.07 0.88 0.03 0.07 ind:pas:3s; +machinaient machiner VER 0.07 0.88 0.00 0.07 ind:imp:3p; +machinal machinal ADJ m s 0.20 6.01 0.16 4.26 +machinale machinal ADJ f s 0.20 6.01 0.02 0.74 +machinalement machinalement ADV 0.39 22.77 0.39 22.77 +machinales machinal ADJ f p 0.20 6.01 0.01 0.41 +machination machination NOM f s 1.51 2.16 1.14 1.55 +machinations machination NOM f p 1.51 2.16 0.37 0.61 +machinaux machinal ADJ m p 0.20 6.01 0.01 0.61 +machinchouette machinchouette NOM s 0.00 0.14 0.00 0.14 +machine_outil machine_outil NOM f s 0.11 0.47 0.00 0.07 +machine machine NOM f s 67.72 85.00 44.94 58.99 +machiner machiner VER 0.07 0.88 0.02 0.14 inf; +machinerie machinerie NOM f s 0.23 2.97 0.18 2.77 +machineries machinerie NOM f p 0.23 2.97 0.05 0.20 +machine_outil machine_outil NOM f p 0.11 0.47 0.11 0.41 +machines machine NOM f p 67.72 85.00 22.79 26.01 +machinette machinette NOM f s 0.01 0.07 0.01 0.07 +machinique machinique ADJ f s 0.00 0.07 0.00 0.07 +machinisme machinisme NOM m s 0.00 0.74 0.00 0.74 +machiniste machiniste NOM s 1.51 1.15 1.30 0.61 +machinistes machiniste NOM p 1.51 1.15 0.20 0.54 +machino machino NOM m s 0.02 0.07 0.01 0.00 +machinos machino NOM m p 0.02 0.07 0.01 0.07 +machins machin NOM m p 14.60 14.32 2.26 4.26 +machiné machiner VER m s 0.07 0.88 0.02 0.27 par:pas; +machinée machiner VER f s 0.07 0.88 0.00 0.14 par:pas; +machinées machiner VER f p 0.07 0.88 0.00 0.14 par:pas; +machinés machiner VER m p 0.07 0.88 0.00 0.07 par:pas; +machisme machisme NOM m s 0.36 0.20 0.36 0.20 +machiste machiste ADJ s 0.41 0.41 0.38 0.34 +machistes machiste ADJ p 0.41 0.41 0.02 0.07 +machmètre machmètre NOM m s 0.02 0.00 0.02 0.00 +macho macho NOM m s 3.19 0.74 2.34 0.54 +machos macho NOM m p 3.19 0.74 0.84 0.20 +macintosh macintosh NOM m s 0.26 0.07 0.26 0.07 +macis macis NOM m 0.01 0.00 0.01 0.00 +mackintosh mackintosh NOM m s 0.00 0.27 0.00 0.27 +macoute macoute ADJ m s 0.14 0.07 0.03 0.00 +macoutes macoute ADJ m p 0.14 0.07 0.11 0.07 +macramé macramé NOM m s 0.14 0.68 0.14 0.68 +macres macre NOM f p 0.00 0.27 0.00 0.27 +macreuse macreuse NOM f s 0.02 0.07 0.02 0.00 +macreuses macreuse NOM f p 0.02 0.07 0.00 0.07 +macro macro NOM s 0.20 0.00 0.20 0.00 +macrobiotique macrobiotique ADJ s 0.16 0.20 0.16 0.20 +macroclimat macroclimat NOM m s 0.00 0.07 0.00 0.07 +macrocosme macrocosme NOM m s 0.00 0.14 0.00 0.14 +macrolide macrolide NOM m s 0.01 0.00 0.01 0.00 +macrophage macrophage NOM m s 0.01 0.00 0.01 0.00 +macroscopique macroscopique ADJ m s 0.00 0.07 0.00 0.07 +macroéconomie macroéconomie NOM f s 0.02 0.00 0.02 0.00 +macs mac NOM m p 7.74 1.82 0.93 0.34 +macère macérer VER 0.32 1.82 0.03 0.07 imp:pre:2s;ind:pre:3s; +macèrent macérer VER 0.32 1.82 0.00 0.14 ind:pre:3p; +macédoine macédoine NOM f s 0.14 0.54 0.14 0.41 +macédoines macédoine NOM f p 0.14 0.54 0.00 0.14 +macédonien macédonien NOM m s 0.23 0.20 0.23 0.20 +macédonienne macédonien ADJ f s 0.19 0.14 0.15 0.00 +macédoniennes macédonien ADJ f p 0.19 0.14 0.01 0.00 +macula macula NOM f s 0.01 0.00 0.01 0.00 +maculage maculage NOM m s 0.00 0.07 0.00 0.07 +maculaient maculer VER 0.59 7.70 0.00 0.20 ind:imp:3p; +maculait maculer VER 0.59 7.70 0.00 0.20 ind:imp:3s; +maculant maculer VER 0.59 7.70 0.01 0.27 par:pre; +maculation maculation NOM f s 0.00 0.07 0.00 0.07 +maculature maculature NOM f s 0.00 0.07 0.00 0.07 +macule maculer VER 0.59 7.70 0.10 0.14 ind:pre:3s; +maculent maculer VER 0.59 7.70 0.01 0.14 ind:pre:3p; +maculer maculer VER 0.59 7.70 0.02 0.27 inf; +macules macule NOM f p 0.00 0.20 0.00 0.14 +maculèrent maculer VER 0.59 7.70 0.00 0.07 ind:pas:3p; +maculé maculer VER m s 0.59 7.70 0.28 1.96 par:pas; +maculée maculer VER f s 0.59 7.70 0.06 1.08 par:pas; +maculées maculer VER f p 0.59 7.70 0.04 1.49 par:pas; +maculés maculer VER m p 0.59 7.70 0.08 1.82 par:pas; +macumba macumba NOM f s 1.20 0.00 1.20 0.00 +macérai macérer VER 0.32 1.82 0.00 0.07 ind:pas:1s; +macéraient macérer VER 0.32 1.82 0.00 0.07 ind:imp:3p; +macérait macérer VER 0.32 1.82 0.00 0.07 ind:imp:3s; +macération macération NOM f s 0.04 0.74 0.04 0.47 +macérations macération NOM f p 0.04 0.74 0.00 0.27 +macérer macérer VER 0.32 1.82 0.23 0.54 inf; +macéré macérer VER m s 0.32 1.82 0.04 0.41 par:pas; +macérée macérer VER f s 0.32 1.82 0.00 0.41 par:pas; +macérés macérer VER m p 0.32 1.82 0.02 0.07 par:pas; +madame madame NOM f 307.36 203.45 249.32 198.72 +madapolam madapolam NOM m s 0.00 0.20 0.00 0.20 +made_in made_in ADV 1.06 0.88 1.06 0.88 +madeleine madeleine NOM f s 0.98 1.89 0.37 0.95 +madeleines madeleine NOM f p 0.98 1.89 0.61 0.95 +mademoiselle mademoiselle NOM f s 73.98 62.36 73.98 62.30 +mademoiselles mademoiselle NOM f p 73.98 62.36 0.00 0.07 +madone madone NOM f s 5.25 5.14 4.90 4.39 +madones madone NOM f p 5.25 5.14 0.35 0.74 +madrague madrague NOM f s 0.02 0.00 0.02 0.00 +madras madras NOM m 0.03 1.49 0.03 1.49 +madre_de_dios madre_de_dios NOM s 0.00 0.07 0.00 0.07 +madre madre NOM m s 0.62 0.00 0.62 0.00 +madrier madrier NOM m s 0.14 3.24 0.00 0.61 +madriers madrier NOM m p 0.14 3.24 0.14 2.64 +madrigal madrigal NOM m s 0.14 1.28 0.12 0.68 +madrigaux madrigal NOM m p 0.14 1.28 0.03 0.61 +madrilène madrilène ADJ s 0.30 0.61 0.30 0.47 +madrilènes madrilène NOM p 0.37 0.27 0.10 0.20 +madré madré ADJ m s 0.00 0.27 0.00 0.20 +madrée madré ADJ f s 0.00 0.27 0.00 0.07 +madrépore madrépore NOM m s 0.00 0.27 0.00 0.14 +madrépores madrépore NOM m p 0.00 0.27 0.00 0.14 +madrés madré NOM m p 0.00 0.07 0.00 0.07 +madère madère NOM m s 0.11 0.68 0.11 0.68 +maelström maelström NOM m s 0.00 0.41 0.00 0.41 +maelstrom maelstrom NOM m s 0.14 0.07 0.14 0.07 +maestria maestria NOM f s 0.02 0.41 0.02 0.41 +maestro maestro NOM m s 5.96 0.47 5.96 0.47 +maffia maffia NOM f s 0.00 0.54 0.00 0.54 +maffieux maffieux NOM m 0.01 0.00 0.01 0.00 +maffiosi maffioso NOM m p 0.01 0.00 0.01 0.00 +mafflu mafflu ADJ m s 0.00 0.41 0.00 0.27 +mafflue mafflu ADJ f s 0.00 0.41 0.00 0.07 +mafflus mafflu ADJ m p 0.00 0.41 0.00 0.07 +mafia mafia NOM f s 11.56 2.97 11.34 2.91 +mafias mafia NOM f p 11.56 2.97 0.23 0.07 +mafieuse mafieux ADJ f s 1.18 0.20 0.34 0.14 +mafieuses mafieux ADJ f p 1.18 0.20 0.25 0.00 +mafieux mafieux NOM m 0.94 0.00 0.94 0.00 +mafiosi mafioso NOM m p 0.73 0.14 0.20 0.00 +mafioso mafioso NOM m s 0.73 0.14 0.54 0.14 +maganer maganer VER 0.03 0.00 0.03 0.00 inf; +magasin magasin NOM m s 60.62 65.54 51.97 45.61 +magasinage magasinage NOM m s 0.03 0.00 0.03 0.00 +magasine magasiner VER 0.83 0.00 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +magasiner magasiner VER 0.83 0.00 0.27 0.00 inf; +magasines magasiner VER 0.83 0.00 0.20 0.00 ind:pre:2s; +magasinier magasinier NOM m s 0.55 1.15 0.53 0.68 +magasiniers magasinier NOM m p 0.55 1.15 0.01 0.47 +magasinière magasinier NOM f s 0.55 1.15 0.01 0.00 +magasins magasin NOM m p 60.62 65.54 8.65 19.93 +magazine magazine NOM m s 21.42 16.15 14.03 7.03 +magazines magazine NOM m p 21.42 16.15 7.39 9.12 +magdalénien magdalénien ADJ m s 0.14 0.20 0.00 0.07 +magdaléniennes magdalénien ADJ f p 0.14 0.20 0.14 0.14 +mage mage NOM m s 1.57 2.57 0.53 0.95 +magenta magenta ADJ p 0.07 0.00 0.07 0.00 +mages mage NOM m p 1.57 2.57 1.04 1.62 +maghrébin maghrébin ADJ m s 0.14 0.54 0.14 0.27 +maghrébine maghrébin NOM f s 0.81 0.95 0.00 0.14 +maghrébines maghrébin NOM f p 0.81 0.95 0.00 0.41 +maghrébins maghrébin NOM m p 0.81 0.95 0.67 0.34 +maghzen maghzen NOM m s 0.00 0.07 0.00 0.07 +magicien magicien NOM m s 13.76 4.05 12.07 2.77 +magicienne magicien NOM f s 13.76 4.05 0.53 0.61 +magiciens magicien NOM m p 13.76 4.05 1.17 0.68 +magico magico ADV 0.03 0.00 0.03 0.00 +magie magie NOM f s 25.66 15.20 25.58 15.14 +magies magie NOM f p 25.66 15.20 0.07 0.07 +magique magique ADJ s 26.93 25.88 21.84 19.80 +magiquement magiquement ADV 0.14 1.35 0.14 1.35 +magiques magique ADJ p 26.93 25.88 5.09 6.08 +magister magister NOM m s 0.10 1.08 0.10 0.95 +magisters magister NOM m p 0.10 1.08 0.00 0.14 +magistral magistral ADJ m s 1.69 3.72 1.34 2.09 +magistrale magistral ADJ f s 1.69 3.72 0.33 1.22 +magistralement magistralement ADV 0.07 0.54 0.07 0.54 +magistrales magistral ADJ f p 1.69 3.72 0.01 0.27 +magistrat magistrat NOM m s 3.28 6.01 2.71 2.64 +magistrate magistrat NOM f s 3.28 6.01 0.16 0.00 +magistrats magistrat NOM m p 3.28 6.01 0.41 3.38 +magistrature magistrature NOM f s 1.12 0.95 1.12 0.88 +magistratures magistrature NOM f p 1.12 0.95 0.00 0.07 +magistraux magistral ADJ m p 1.69 3.72 0.01 0.14 +magistère magistère NOM m s 0.00 0.07 0.00 0.07 +magma magma NOM m s 0.33 3.45 0.33 3.38 +magmas magma NOM m p 0.33 3.45 0.00 0.07 +magmatique magmatique ADJ f s 0.04 0.00 0.03 0.00 +magmatiques magmatique ADJ p 0.04 0.00 0.01 0.00 +magna magner VER 6.36 2.23 0.22 0.00 ind:pas:3s; +magnait magner VER 6.36 2.23 0.00 0.07 ind:imp:3s; +magnaneries magnanerie NOM f p 0.00 0.14 0.00 0.14 +magnanime magnanime ADJ s 1.09 2.09 1.03 1.55 +magnanimes magnanime ADJ p 1.09 2.09 0.06 0.54 +magnanimité magnanimité NOM f s 0.13 0.68 0.13 0.68 +magnans magnan NOM m p 0.00 0.07 0.00 0.07 +magnat magnat NOM m s 0.96 1.42 0.83 1.28 +magnats magnat NOM m p 0.96 1.42 0.13 0.14 +magne magner VER 6.36 2.23 2.38 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +magnent magner VER 6.36 2.23 0.05 0.00 ind:pre:3p; +magner magner VER 6.36 2.23 0.20 0.41 inf; +magnes magner VER 6.36 2.23 0.11 0.47 ind:pre:2s;sub:pre:2s; +magnez magner VER 6.36 2.23 3.34 0.00 imp:pre:2p;ind:pre:2p; +magnifiaient magnifier VER 0.56 2.43 0.00 0.07 ind:imp:3p; +magnifiais magnifier VER 0.56 2.43 0.00 0.07 ind:imp:1s; +magnifiait magnifier VER 0.56 2.43 0.10 0.34 ind:imp:3s; +magnifiant magnifier VER 0.56 2.43 0.00 0.20 par:pre; +magnificat magnificat NOM m 0.00 0.54 0.00 0.54 +magnificence magnificence NOM f s 0.27 1.96 0.27 1.82 +magnificences magnificence NOM f p 0.27 1.96 0.00 0.14 +magnifie magnifier VER 0.56 2.43 0.03 0.20 imp:pre:2s;ind:pre:3s; +magnifient magnifier VER 0.56 2.43 0.00 0.14 ind:pre:3p; +magnifier magnifier VER 0.56 2.43 0.15 0.54 inf; +magnifiez magnifier VER 0.56 2.43 0.00 0.14 ind:pre:2p; +magnifique magnifique ADJ s 88.22 27.70 78.72 22.91 +magnifiquement magnifiquement ADV 1.43 2.77 1.43 2.77 +magnifiques magnifique ADJ p 88.22 27.70 9.51 4.80 +magnifié magnifier VER m s 0.56 2.43 0.00 0.20 par:pas; +magnifiée magnifier VER f s 0.56 2.43 0.29 0.34 par:pas; +magnifiées magnifier VER f p 0.56 2.43 0.00 0.07 par:pas; +magnifiés magnifier VER m p 0.56 2.43 0.00 0.14 par:pas; +magnitude magnitude NOM f s 0.25 0.00 0.25 0.00 +magnolia magnolia NOM m s 0.14 3.04 0.10 1.49 +magnolias magnolia NOM m p 0.14 3.04 0.05 1.55 +magnons magner VER 6.36 2.23 0.04 0.07 imp:pre:1p; +magné magner VER m s 6.36 2.23 0.01 0.00 par:pas; +magnum magnum NOM m s 3.69 1.76 3.62 1.55 +magnums magnum NOM m p 3.69 1.76 0.07 0.20 +magnésie magnésie NOM f s 0.07 0.14 0.07 0.14 +magnésium magnésium NOM m s 0.75 1.08 0.75 1.08 +magnétique magnétique ADJ s 5.11 3.38 3.74 2.64 +magnétiquement magnétiquement ADV 0.13 0.00 0.13 0.00 +magnétiques magnétique ADJ p 5.11 3.38 1.37 0.74 +magnétisait magnétiser VER 0.14 0.41 0.01 0.07 ind:imp:3s; +magnétise magnétiser VER 0.14 0.41 0.00 0.07 ind:pre:3s; +magnétiseur magnétiseur NOM m s 0.01 0.07 0.01 0.00 +magnétiseuses magnétiseur NOM f p 0.01 0.07 0.00 0.07 +magnétisme magnétisme NOM m s 1.41 0.68 1.41 0.61 +magnétismes magnétisme NOM m p 1.41 0.68 0.00 0.07 +magnétisé magnétiser VER m s 0.14 0.41 0.04 0.07 par:pas; +magnétisée magnétiser VER f s 0.14 0.41 0.03 0.07 par:pas; +magnétisées magnétiser VER f p 0.14 0.41 0.04 0.00 par:pas; +magnétisés magnétiser VER m p 0.14 0.41 0.03 0.14 par:pas; +magnétite magnétite NOM f s 0.07 0.00 0.07 0.00 +magnéto magnéto NOM s 2.89 1.62 2.78 1.35 +magnétomètre magnétomètre NOM m s 0.04 0.00 0.04 0.00 +magnétophone magnétophone NOM m s 2.70 3.51 2.27 3.24 +magnétophones magnétophone NOM m p 2.70 3.51 0.43 0.27 +magnétos magnéto NOM p 2.89 1.62 0.11 0.27 +magnétoscope magnétoscope NOM m s 2.12 0.81 1.98 0.34 +magnétoscopes magnétoscope NOM m p 2.12 0.81 0.14 0.47 +magnétron magnétron NOM m s 0.01 0.00 0.01 0.00 +magot magot NOM m s 2.24 4.39 2.24 3.51 +magots magot NOM m p 2.24 4.39 0.00 0.88 +magouillais magouiller VER 0.69 0.41 0.01 0.14 ind:imp:1s;ind:imp:2s; +magouillait magouiller VER 0.69 0.41 0.03 0.00 ind:imp:3s; +magouillant magouiller VER 0.69 0.41 0.03 0.00 par:pre; +magouille magouille NOM f s 2.73 1.35 1.03 0.68 +magouiller magouiller VER 0.69 0.41 0.14 0.14 inf; +magouilles magouille NOM f p 2.73 1.35 1.69 0.68 +magouilleur magouilleur NOM m s 0.43 0.20 0.29 0.00 +magouilleurs magouilleur NOM m p 0.43 0.20 0.14 0.20 +magouillez magouiller VER 0.69 0.41 0.06 0.07 ind:pre:2p; +magouillé magouiller VER m s 0.69 0.41 0.42 0.07 par:pas; +magret magret NOM m s 0.01 0.00 0.01 0.00 +magyar magyar ADJ m s 0.11 0.14 0.10 0.00 +magyare magyar ADJ f s 0.11 0.14 0.01 0.00 +magyares magyar ADJ f p 0.11 0.14 0.00 0.07 +magyars magyar NOM m p 0.10 0.00 0.10 0.00 +mah_jong mah_jong NOM m s 1.54 0.20 1.54 0.20 +maharadja maharadja NOM m s 0.14 0.00 0.13 0.00 +maharadjah maharadjah NOM m s 1.47 0.68 1.47 0.47 +maharadjahs maharadjah NOM m p 1.47 0.68 0.00 0.20 +maharadjas maharadja NOM m p 0.14 0.00 0.01 0.00 +maharaja maharaja NOM m s 0.02 0.07 0.02 0.00 +maharajah maharajah NOM m s 0.51 0.20 0.48 0.07 +maharajahs maharajah NOM m p 0.51 0.20 0.02 0.14 +maharajas maharaja NOM m p 0.02 0.07 0.00 0.07 +maharani maharani NOM f s 1.12 0.14 1.12 0.14 +mahatma mahatma NOM m s 0.04 0.07 0.04 0.00 +mahatmas mahatma NOM m p 0.04 0.07 0.00 0.07 +mahométan mahométan NOM m s 0.01 0.27 0.01 0.07 +mahométane mahométan ADJ f s 0.01 0.20 0.00 0.07 +mahométans mahométan ADJ m p 0.01 0.20 0.01 0.07 +mahonia mahonia NOM m s 0.00 0.61 0.00 0.41 +mahonias mahonia NOM m p 0.00 0.61 0.00 0.20 +mahousse mahousse ADJ f s 0.03 1.35 0.01 1.08 +mahousses mahousse ADJ f p 0.03 1.35 0.02 0.27 +mai mai NOM s 24.34 45.88 24.34 45.88 +maid maid NOM f s 0.13 0.07 0.13 0.07 +maie maie NOM f s 0.01 1.22 0.00 1.08 +maies maie NOM f p 0.01 1.22 0.01 0.14 +maigre maigre ADJ s 12.73 62.70 11.10 41.82 +maigrelet maigrelet NOM m s 0.27 0.00 0.27 0.00 +maigrelets maigrelet ADJ m p 0.10 1.01 0.02 0.14 +maigrelette maigrelet ADJ f s 0.10 1.01 0.00 0.27 +maigrelettes maigrelet ADJ f p 0.10 1.01 0.01 0.07 +maigrement maigrement ADV 0.00 0.27 0.00 0.27 +maigres maigre ADJ p 12.73 62.70 1.64 20.88 +maigreur maigreur NOM f s 0.04 3.99 0.04 3.99 +maigri maigrir VER m s 5.70 8.99 2.81 4.19 par:pas; +maigrichon maigrichon ADJ m s 1.25 2.30 0.69 0.81 +maigrichonne maigrichon ADJ f s 1.25 2.30 0.43 0.81 +maigrichonnes maigrichon ADJ f p 1.25 2.30 0.10 0.41 +maigrichons maigrichon NOM m p 0.93 0.61 0.08 0.00 +maigrie maigrir VER f s 5.70 8.99 0.00 0.20 par:pas; +maigriot maigriot NOM m s 0.01 0.14 0.01 0.14 +maigrir maigrir VER 5.70 8.99 2.10 2.23 inf; +maigris maigrir VER m p 5.70 8.99 0.36 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +maigrissais maigrir VER 5.70 8.99 0.00 0.27 ind:imp:1s; +maigrissait maigrir VER 5.70 8.99 0.02 0.68 ind:imp:3s; +maigrissant maigrir VER 5.70 8.99 0.01 0.07 par:pre; +maigrisse maigrir VER 5.70 8.99 0.04 0.07 sub:pre:1s;sub:pre:3s; +maigrissent maigrir VER 5.70 8.99 0.03 0.14 ind:pre:3p; +maigrisses maigrir VER 5.70 8.99 0.14 0.14 sub:pre:2s; +maigrissez maigrir VER 5.70 8.99 0.05 0.07 imp:pre:2p;ind:pre:2p; +maigrit maigrir VER 5.70 8.99 0.14 0.61 ind:pre:3s;ind:pas:3s; +mail_coach mail_coach NOM m s 0.00 0.14 0.00 0.14 +mail mail NOM m s 3.29 1.62 2.23 1.62 +mailer mailer VER 0.18 0.00 0.08 0.00 inf; +mailing mailing NOM m s 0.04 0.00 0.04 0.00 +maillait mailler VER 0.02 0.27 0.00 0.07 ind:imp:3s; +maille maille NOM f s 1.09 9.66 0.71 2.70 +maillechort maillechort NOM m s 0.00 0.14 0.00 0.14 +mailler mailler VER 0.02 0.27 0.02 0.00 inf; +mailles maille NOM f p 1.09 9.66 0.39 6.96 +maillet maillet NOM m s 0.46 2.16 0.41 1.69 +maillets maillet NOM m p 0.46 2.16 0.05 0.47 +mailloche mailloche NOM f s 0.00 0.47 0.00 0.47 +maillon maillon NOM m s 1.12 3.18 0.94 1.89 +maillons maillon NOM m p 1.12 3.18 0.19 1.28 +maillot maillot NOM m s 9.88 18.99 8.44 15.27 +maillotin maillotin NOM m s 0.00 0.14 0.00 0.07 +maillotins maillotin NOM m p 0.00 0.14 0.00 0.07 +maillots maillot NOM m p 9.88 18.99 1.44 3.72 +maillé maillé ADJ m s 0.01 0.14 0.00 0.14 +maillés maillé ADJ m p 0.01 0.14 0.01 0.00 +mails mail NOM m p 3.29 1.62 1.05 0.00 +mailé mailer VER m s 0.18 0.00 0.10 0.00 par:pas; +main_courante main_courante NOM f s 0.01 0.07 0.01 0.07 +main_d_oeuvre main_d_oeuvre NOM f s 0.89 1.62 0.89 1.62 +main_forte main_forte NOM f 0.36 0.41 0.36 0.41 +main main NOM s 499.60 1229.39 286.62 788.72 +mainate mainate NOM m s 0.03 0.74 0.03 0.74 +maincourantier maincourantier NOM m s 0.00 0.07 0.00 0.07 +mainlevée mainlevée NOM f s 0.01 0.00 0.01 0.00 +mainmise mainmise NOM f s 0.14 1.42 0.14 1.42 +mains main NOM f p 499.60 1229.39 212.97 440.68 +maint maint ADJ:ind m s 1.27 0.41 1.27 0.41 +maintînt maintenir VER 121.36 98.51 0.00 0.07 sub:imp:3s; +mainte mainte ADJ:ind f s 0.20 1.22 0.20 1.22 +maintenaient maintenir VER 121.36 98.51 0.23 2.09 ind:imp:3p; +maintenais maintenir VER 121.36 98.51 0.27 0.47 ind:imp:1s;ind:imp:2s; +maintenait maintenir VER 121.36 98.51 0.32 7.36 ind:imp:3s; +maintenance maintenance NOM f s 3.89 0.14 3.89 0.14 +maintenant maintenant ADV 1028.86 496.76 1028.86 496.76 +mainteneur mainteneur NOM m s 0.00 0.14 0.00 0.07 +mainteneurs mainteneur NOM m p 0.00 0.14 0.00 0.07 +maintenez maintenir VER 121.36 98.51 4.28 0.34 imp:pre:2p;ind:pre:2p; +mainteniez maintenir VER 121.36 98.51 0.01 0.00 ind:imp:2p; +maintenions maintenir VER 121.36 98.51 0.04 0.20 ind:imp:1p; +maintenir maintenir VER 121.36 98.51 10.27 21.76 inf; +maintenons maintenir VER 121.36 98.51 0.58 0.34 imp:pre:1p;ind:pre:1p; +maintenu maintenir VER m s 121.36 98.51 1.73 3.78 par:pas; +maintenue maintenir VER f s 121.36 98.51 0.95 2.43 par:pas; +maintenues maintenir VER f p 121.36 98.51 0.14 1.35 par:pas; +maintenus maintenir VER m p 121.36 98.51 0.20 2.23 par:pas; +maintes maintes ADJ:ind f p 2.36 9.86 2.36 9.86 +maintien maintien NOM m s 2.13 10.14 1.87 10.14 +maintiendra maintenir VER 121.36 98.51 0.25 0.34 ind:fut:3s; +maintiendrai maintenir VER 121.36 98.51 0.19 0.14 ind:fut:1s; +maintiendraient maintenir VER 121.36 98.51 0.01 0.14 cnd:pre:3p; +maintiendrait maintenir VER 121.36 98.51 0.02 0.20 cnd:pre:3s; +maintiendras maintenir VER 121.36 98.51 0.04 0.07 ind:fut:2s; +maintiendriez maintenir VER 121.36 98.51 0.00 0.07 cnd:pre:2p; +maintiendrons maintenir VER 121.36 98.51 0.25 0.07 ind:fut:1p; +maintiendront maintenir VER 121.36 98.51 0.08 0.14 ind:fut:3p; +maintienne maintenir VER 121.36 98.51 0.41 0.41 sub:pre:1s;sub:pre:3s; +maintiennent maintenir VER 121.36 98.51 0.44 1.28 ind:pre:3p; +maintiennes maintenir VER 121.36 98.51 0.05 0.00 sub:pre:2s; +maintiens maintenir VER 121.36 98.51 2.17 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s; +maintient maintenir VER 121.36 98.51 2.63 4.39 ind:pre:3s; +maintinrent maintenir VER 121.36 98.51 0.00 0.34 ind:pas:3p; +maintins maintenir VER 121.36 98.51 0.01 0.34 ind:pas:1s; +maintint maintenir VER 121.36 98.51 0.14 2.03 ind:pas:3s; +maints maints ADJ:ind m p 0.34 4.39 0.34 4.39 +maire maire NOM m s 28.17 13.85 27.91 13.11 +maires maire NOM m p 28.17 13.85 0.27 0.61 +mairesse maire NOM f s 28.17 13.85 0.00 0.14 +mairie mairie NOM f s 13.55 15.95 13.48 15.00 +mairies mairie NOM f p 13.55 15.95 0.07 0.95 +mais mais CON 5179.05 4463.72 5179.05 4463.72 +maison_mère maison_mère NOM f s 0.12 0.14 0.12 0.14 +maison maison NOM s 605.75 575.34 570.30 461.55 +maisonnette maisonnette NOM f s 0.57 7.97 0.56 5.68 +maisonnettes maisonnette NOM f p 0.57 7.97 0.02 2.30 +maisonnée maisonnée NOM f s 0.33 1.82 0.33 1.76 +maisonnées maisonnée NOM f p 0.33 1.82 0.00 0.07 +maisons maison NOM f p 605.75 575.34 35.44 113.78 +maja maja NOM f s 0.54 0.14 0.54 0.14 +majesté majesté NOM f s 43.43 22.57 42.84 22.30 +majestueuse majestueux ADJ f s 1.79 11.08 0.53 4.80 +majestueusement majestueusement ADV 0.06 1.22 0.06 1.22 +majestueuses majestueux ADJ f p 1.79 11.08 0.17 0.81 +majestueux majestueux ADJ m 1.79 11.08 1.09 5.47 +majestés majesté NOM f p 43.43 22.57 0.58 0.27 +majeur majeur ADJ m s 10.45 11.55 4.29 3.85 +majeure majeur ADJ f s 10.45 11.55 4.81 5.20 +majeures majeur ADJ f p 10.45 11.55 0.55 1.15 +majeurs majeur ADJ m p 10.45 11.55 0.81 1.35 +majo majo ADJ m s 0.00 0.14 0.00 0.14 +majolique majolique NOM f s 0.01 0.14 0.01 0.14 +major_général major_général NOM s 0.02 0.34 0.02 0.34 +major major NOM s 16.95 8.38 16.45 8.04 +majora majorer VER 0.05 0.34 0.00 0.07 ind:pas:3s; +majoral majoral NOM m s 0.00 0.07 0.00 0.07 +majorat majorat NOM m s 0.00 0.20 0.00 0.20 +majoration majoration NOM f s 0.03 0.27 0.03 0.27 +majordome majordome NOM m s 2.87 1.42 2.66 1.28 +majordomes majordome NOM m p 2.87 1.42 0.20 0.14 +majore majorer VER 0.05 0.34 0.00 0.14 ind:pre:1s;ind:pre:3s; +majorer majorer VER 0.05 0.34 0.04 0.14 inf; +majorette majorette NOM f s 1.11 0.61 0.57 0.27 +majorettes majorette NOM f p 1.11 0.61 0.54 0.34 +majoritaire majoritaire ADJ s 1.04 0.61 0.52 0.54 +majoritairement majoritairement ADV 0.12 0.00 0.12 0.00 +majoritaires majoritaire ADJ f p 1.04 0.61 0.52 0.07 +majorité majorité NOM f s 11.43 12.57 11.41 12.36 +majorités majorité NOM f p 11.43 12.57 0.01 0.20 +majors major NOM p 16.95 8.38 0.49 0.34 +majorée majorer VER f s 0.05 0.34 0.01 0.00 par:pas; +majuscule majuscule ADJ s 0.80 1.69 0.76 0.88 +majuscules majuscule NOM f p 0.85 2.84 0.76 2.03 +maki maki NOM m s 0.12 0.00 0.12 0.00 +mal_aimé mal_aimé NOM m s 0.21 0.07 0.03 0.00 +mal_aimé mal_aimé NOM f s 0.21 0.07 0.01 0.07 +mal_aimé mal_aimé NOM m p 0.21 0.07 0.17 0.00 +mal_baisé mal_baisé NOM m s 0.00 0.20 0.00 0.07 +mal_baisé mal_baisé NOM f s 0.00 0.20 0.00 0.14 +mal_pensant mal_pensant ADJ f s 0.00 0.07 0.00 0.07 +mal_pensant mal_pensant NOM m p 0.14 0.07 0.14 0.07 +mal_être mal_être NOM m s 0.34 0.20 0.34 0.20 +mal mal ADV 453.95 349.46 453.95 349.46 +malabar malabar ADJ m s 1.30 0.00 1.27 0.00 +malabars malabar NOM m p 1.52 1.28 0.46 0.68 +malachite malachite NOM f s 0.01 0.27 0.01 0.27 +malade malade ADJ s 158.27 73.92 147.50 66.22 +malades malade NOM f p 41.24 43.18 15.57 17.03 +maladie maladie NOM f s 66.04 60.68 52.18 49.59 +maladies maladie NOM f p 66.04 60.68 13.86 11.08 +maladif maladif ADJ m s 1.44 5.14 0.86 2.03 +maladifs maladif ADJ m p 1.44 5.14 0.02 0.14 +maladive maladif ADJ f s 1.44 5.14 0.53 2.84 +maladivement maladivement ADV 0.45 0.20 0.45 0.20 +maladives maladif ADJ f p 1.44 5.14 0.02 0.14 +maladrerie maladrerie NOM f s 0.01 0.00 0.01 0.00 +maladresse maladresse NOM f s 1.02 9.73 0.97 8.24 +maladresses maladresse NOM f p 1.02 9.73 0.05 1.49 +maladroit maladroit ADJ m s 7.52 18.58 4.57 7.77 +maladroite maladroit ADJ f s 7.52 18.58 2.29 4.53 +maladroitement maladroitement ADV 0.27 9.59 0.27 9.59 +maladroites maladroit ADJ f p 7.52 18.58 0.11 2.16 +maladroits maladroit ADJ m p 7.52 18.58 0.55 4.12 +malaga malaga NOM m s 0.84 1.28 0.84 1.28 +malaire malaire ADJ s 0.10 0.00 0.10 0.00 +malais malais ADJ m 0.58 0.61 0.58 0.61 +malaise malaise NOM s 6.55 25.14 6.34 23.38 +malaises malaise NOM p 6.55 25.14 0.21 1.76 +malaisien malaisien ADJ m s 0.06 0.00 0.04 0.00 +malaisienne malaisien ADJ f s 0.06 0.00 0.02 0.00 +malaisiens malaisien NOM m p 0.06 0.00 0.02 0.00 +malaisé malaisé ADJ m s 0.16 2.36 0.13 1.28 +malaisée malaisé ADJ f s 0.16 2.36 0.01 0.47 +malaisées malaisé ADJ f p 0.16 2.36 0.01 0.20 +malaisément malaisément ADV 0.00 0.95 0.00 0.95 +malaisés malaisé ADJ m p 0.16 2.36 0.01 0.41 +malandrin malandrin NOM m s 0.32 0.61 0.04 0.14 +malandrins malandrin NOM m p 0.32 0.61 0.28 0.47 +malappris malappris NOM m 0.17 0.20 0.16 0.20 +malapprise malappris NOM f s 0.17 0.20 0.01 0.00 +malard malard NOM m s 0.01 0.74 0.00 0.68 +malards malard NOM m p 0.01 0.74 0.01 0.07 +malaria malaria NOM f s 1.57 0.54 1.57 0.47 +malarias malaria NOM f p 1.57 0.54 0.00 0.07 +malaventures malaventure NOM f p 0.00 0.07 0.00 0.07 +malavisé malavisé ADJ m s 0.20 0.07 0.17 0.07 +malavisée malavisé ADJ f s 0.20 0.07 0.04 0.00 +malaxa malaxer VER 0.76 1.89 0.00 0.07 ind:pas:3s; +malaxaient malaxer VER 0.76 1.89 0.00 0.14 ind:imp:3p; +malaxait malaxer VER 0.76 1.89 0.00 0.20 ind:imp:3s; +malaxant malaxer VER 0.76 1.89 0.00 0.20 par:pre; +malaxe malaxer VER 0.76 1.89 0.28 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +malaxer malaxer VER 0.76 1.89 0.45 0.34 inf; +malaxera malaxer VER 0.76 1.89 0.00 0.07 ind:fut:3s; +malaxeur malaxeur NOM m s 0.04 0.00 0.04 0.00 +malaxez malaxer VER 0.76 1.89 0.00 0.07 imp:pre:2p; +malaxé malaxer VER m s 0.76 1.89 0.02 0.20 par:pas; +malaxée malaxer VER f s 0.76 1.89 0.00 0.20 par:pas; +malaxées malaxer VER f p 0.76 1.89 0.00 0.07 par:pas; +malaxés malaxer VER m p 0.76 1.89 0.00 0.07 par:pas; +malchance malchance NOM f s 5.68 4.80 5.68 4.53 +malchances malchance NOM f p 5.68 4.80 0.00 0.27 +malchanceuse malchanceux ADJ f s 0.94 1.42 0.27 0.27 +malchanceuses malchanceux ADJ f p 0.94 1.42 0.04 0.07 +malchanceux malchanceux NOM m 0.80 0.81 0.79 0.81 +malcommode malcommode ADJ m s 0.04 0.54 0.04 0.47 +malcommodes malcommode ADJ p 0.04 0.54 0.00 0.07 +malcontent malcontent ADJ m s 0.00 0.14 0.00 0.07 +malcontents malcontent ADJ m p 0.00 0.14 0.00 0.07 +maldonne maldonne NOM f s 0.14 1.15 0.14 1.01 +maldonnes maldonne NOM f p 0.14 1.15 0.00 0.14 +male mal ADJ f s 14.55 11.42 0.44 0.14 +malencontre malencontre NOM f s 0.00 0.68 0.00 0.41 +malencontres malencontre NOM f p 0.00 0.68 0.00 0.27 +malencontreuse malencontreux ADJ f s 0.89 1.08 0.12 0.47 +malencontreusement malencontreusement ADV 0.26 0.88 0.26 0.88 +malencontreuses malencontreux ADJ f p 0.89 1.08 0.14 0.07 +malencontreux malencontreux ADJ m 0.89 1.08 0.64 0.54 +malentendant malentendant ADJ m s 0.04 0.00 0.02 0.00 +malentendant malentendant NOM m s 0.38 0.00 0.02 0.00 +malentendante malentendant ADJ f s 0.04 0.00 0.02 0.00 +malentendants malentendant NOM m p 0.38 0.00 0.36 0.00 +malentendu malentendu NOM m s 11.82 10.20 10.70 7.30 +malentendus malentendu NOM m p 11.82 10.20 1.13 2.91 +males mal ADJ f p 14.55 11.42 0.28 0.07 +malfaisance malfaisance NOM f s 0.19 1.08 0.17 0.88 +malfaisances malfaisance NOM f p 0.19 1.08 0.01 0.20 +malfaisant malfaisant ADJ m s 2.58 3.38 0.96 1.76 +malfaisante malfaisant ADJ f s 2.58 3.38 0.46 0.61 +malfaisantes malfaisant ADJ f p 2.58 3.38 0.19 0.34 +malfaisants malfaisant ADJ m p 2.58 3.38 0.97 0.68 +malfaiteur malfaiteur NOM m s 2.93 3.24 1.18 1.82 +malfaiteurs malfaiteur NOM m p 2.93 3.24 1.75 1.42 +malfamé malfamé ADJ m s 0.13 0.27 0.05 0.07 +malfamée malfamé ADJ f s 0.13 0.27 0.05 0.07 +malfamés malfamé ADJ m p 0.13 0.27 0.02 0.14 +malfaçon malfaçon NOM f s 0.08 0.34 0.04 0.27 +malfaçons malfaçon NOM f p 0.08 0.34 0.04 0.07 +malformation malformation NOM f s 0.50 0.54 0.50 0.54 +malformé malformé ADJ m s 0.01 0.00 0.01 0.00 +malfrat malfrat NOM m s 1.53 4.73 0.73 1.96 +malfrats malfrat NOM m p 1.53 4.73 0.79 2.77 +malgache malgache ADJ s 0.00 0.61 0.00 0.34 +malgaches malgache NOM p 0.02 0.27 0.02 0.27 +malgracieuse malgracieux ADJ f s 0.01 0.41 0.00 0.07 +malgracieux malgracieux ADJ m 0.01 0.41 0.01 0.34 +malgré malgré PRE 46.50 191.55 46.50 191.55 +malhabile malhabile ADJ s 0.14 3.24 0.13 2.23 +malhabilement malhabilement ADV 0.00 0.07 0.00 0.07 +malhabiles malhabile ADJ p 0.14 3.24 0.01 1.01 +malherbe malherbe NOM f s 0.00 0.07 0.00 0.07 +malheur malheur NOM m s 56.89 92.64 49.16 72.84 +malheureuse malheureux ADJ f s 37.96 58.85 12.48 16.08 +malheureusement malheureusement ADV 35.35 21.08 35.35 21.08 +malheureuses malheureux ADJ f p 37.96 58.85 0.93 2.50 +malheureux malheureux ADJ m 37.96 58.85 24.55 40.27 +malheurs malheur NOM m p 56.89 92.64 7.72 19.80 +malhonnête malhonnête ADJ s 4.29 1.82 3.34 0.95 +malhonnêtement malhonnêtement ADV 0.22 0.27 0.22 0.27 +malhonnêtes malhonnête ADJ p 4.29 1.82 0.96 0.88 +malhonnêteté malhonnêteté NOM f s 0.50 1.89 0.50 1.82 +malhonnêtetés malhonnêteté NOM f p 0.50 1.89 0.00 0.07 +mali mali NOM m s 0.00 0.07 0.00 0.07 +malice malice NOM f s 1.29 10.95 1.22 10.47 +malices malice NOM f p 1.29 10.95 0.07 0.47 +malicieuse malicieux ADJ f s 0.41 4.39 0.17 1.01 +malicieusement malicieusement ADV 0.02 0.81 0.02 0.81 +malicieuses malicieux ADJ f p 0.41 4.39 0.02 0.07 +malicieux malicieux ADJ m 0.41 4.39 0.21 3.31 +malien malien NOM m s 0.00 0.14 0.00 0.07 +malienne malien ADJ f s 0.02 0.14 0.02 0.00 +maliens malien ADJ m p 0.02 0.14 0.00 0.14 +maligne malin ADJ f s 41.49 20.20 3.91 3.45 +malignement malignement ADV 0.01 0.68 0.01 0.68 +malignes malin ADJ f p 41.49 20.20 0.35 0.68 +malignité malignité NOM f s 0.04 2.23 0.04 2.03 +malignités malignité NOM f p 0.04 2.23 0.00 0.20 +malin malin ADJ m s 41.49 20.20 33.11 13.38 +maline malin NOM f s 22.65 8.18 0.42 0.14 +malines malin NOM f p 22.65 8.18 0.06 0.20 +malingre malingre ADJ s 0.04 3.78 0.03 2.97 +malingres malingre ADJ p 0.04 3.78 0.01 0.81 +malinké malinké NOM m s 0.00 0.07 0.00 0.07 +malinois malinois NOM m 0.01 0.20 0.01 0.20 +malins malin ADJ m p 41.49 20.20 4.13 2.70 +malintentionné malintentionné ADJ m s 0.17 0.41 0.02 0.20 +malintentionnée malintentionné ADJ f s 0.17 0.41 0.10 0.07 +malintentionnés malintentionné ADJ m p 0.17 0.41 0.04 0.14 +mallarméen mallarméen ADJ m s 0.00 0.07 0.00 0.07 +malle malle NOM f s 7.96 15.14 6.53 10.27 +malles malle NOM f p 7.96 15.14 1.43 4.86 +mallette mallette NOM f s 9.30 6.62 8.97 5.88 +mallettes mallette NOM f p 9.30 6.62 0.33 0.74 +mallophages mallophage NOM m p 0.00 0.07 0.00 0.07 +malléabilité malléabilité NOM f s 0.03 0.14 0.03 0.14 +malléable malléable ADJ s 0.31 1.42 0.25 1.08 +malléables malléable ADJ p 0.31 1.42 0.06 0.34 +malléolaire malléolaire ADJ s 0.03 0.00 0.03 0.00 +malléole malléole NOM f s 0.05 0.00 0.05 0.00 +malm malm NOM m s 0.01 0.00 0.01 0.00 +malmenage malmenage NOM m s 0.01 0.00 0.01 0.00 +malmenaient malmener VER 2.08 3.72 0.00 0.20 ind:imp:3p; +malmenais malmener VER 2.08 3.72 0.01 0.00 ind:imp:1s; +malmenait malmener VER 2.08 3.72 0.06 0.47 ind:imp:3s; +malmenant malmener VER 2.08 3.72 0.04 0.34 par:pre; +malmener malmener VER 2.08 3.72 0.63 0.74 inf; +malmenez malmener VER 2.08 3.72 0.13 0.00 imp:pre:2p;ind:pre:2p; +malmené malmener VER m s 2.08 3.72 0.50 0.61 par:pas; +malmenée malmener VER f s 2.08 3.72 0.25 0.27 par:pas; +malmenées malmener VER f p 2.08 3.72 0.01 0.34 par:pas; +malmenés malmener VER m p 2.08 3.72 0.22 0.34 par:pas; +malmène malmener VER 2.08 3.72 0.18 0.34 imp:pre:2s;ind:pre:3s; +malmènent malmener VER 2.08 3.72 0.05 0.00 ind:pre:3p; +malmèneront malmener VER 2.08 3.72 0.01 0.07 ind:fut:3p; +malnutrition malnutrition NOM f s 0.58 0.07 0.58 0.07 +malodorant malodorant ADJ m s 0.80 2.30 0.25 1.01 +malodorante malodorant ADJ f s 0.80 2.30 0.27 0.61 +malodorantes malodorant ADJ f p 0.80 2.30 0.14 0.47 +malodorants malodorant ADJ m p 0.80 2.30 0.13 0.20 +malotru malotru NOM m s 0.46 1.01 0.43 0.81 +malotrus malotru NOM m p 0.46 1.01 0.03 0.20 +malouin malouin ADJ m s 0.00 0.27 0.00 0.07 +malouine malouin ADJ f s 0.00 0.27 0.00 0.07 +malouines malouin ADJ f p 0.00 0.27 0.00 0.07 +malouins malouin ADJ m p 0.00 0.27 0.00 0.07 +malpoli malpoli ADJ m s 1.04 0.34 0.89 0.14 +malpolie malpoli ADJ f s 1.04 0.34 0.13 0.07 +malpolis malpoli ADJ m p 1.04 0.34 0.02 0.14 +malpropre malpropre NOM s 0.69 0.74 0.65 0.54 +malproprement malproprement ADV 0.00 0.07 0.00 0.07 +malpropres malpropre NOM p 0.69 0.74 0.04 0.20 +malpropreté malpropreté NOM f s 0.00 0.14 0.00 0.14 +malsain malsain ADJ m s 5.05 9.05 3.85 4.93 +malsaine malsain ADJ f s 5.05 9.05 0.95 2.36 +malsainement malsainement ADV 0.00 0.07 0.00 0.07 +malsaines malsain ADJ f p 5.05 9.05 0.18 1.42 +malsains malsain ADJ m p 5.05 9.05 0.08 0.34 +malsonnants malsonnant ADJ m p 0.00 0.07 0.00 0.07 +malséance malséance NOM f s 0.00 0.07 0.00 0.07 +malséant malséant ADJ m s 0.06 0.61 0.06 0.54 +malséante malséant ADJ f s 0.06 0.61 0.00 0.07 +malt malt NOM m s 0.68 0.14 0.68 0.14 +malta malter VER 0.23 0.00 0.14 0.00 ind:pas:3s; +maltais maltais NOM m 0.16 0.34 0.16 0.34 +maltaises maltais ADJ f p 0.03 0.27 0.00 0.07 +maltraitaient maltraiter VER 6.31 4.12 0.17 0.00 ind:imp:3p; +maltraitais maltraiter VER 6.31 4.12 0.04 0.07 ind:imp:1s; +maltraitait maltraiter VER 6.31 4.12 0.21 0.34 ind:imp:3s; +maltraitance maltraitance NOM f s 0.66 0.00 0.61 0.00 +maltraitances maltraitance NOM f p 0.66 0.00 0.05 0.00 +maltraitant maltraiter VER 6.31 4.12 0.01 0.07 par:pre; +maltraite maltraiter VER 6.31 4.12 0.65 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maltraitent maltraiter VER 6.31 4.12 0.47 0.07 ind:pre:3p; +maltraiter maltraiter VER 6.31 4.12 0.99 0.54 inf; +maltraitera maltraiter VER 6.31 4.12 0.03 0.00 ind:fut:3s; +maltraiterez maltraiter VER 6.31 4.12 0.02 0.00 ind:fut:2p; +maltraitez maltraiter VER 6.31 4.12 0.48 0.07 imp:pre:2p;ind:pre:2p; +maltraitât maltraiter VER 6.31 4.12 0.00 0.07 sub:imp:3s; +maltraitèrent maltraiter VER 6.31 4.12 0.00 0.07 ind:pas:3p; +maltraité maltraiter VER m s 6.31 4.12 1.77 0.88 par:pas; +maltraitée maltraiter VER f s 6.31 4.12 1.06 0.54 par:pas; +maltraitées maltraiter VER f p 6.31 4.12 0.02 0.14 par:pas; +maltraités maltraiter VER m p 6.31 4.12 0.40 0.81 par:pas; +malté malter VER m s 0.23 0.00 0.08 0.00 par:pas; +maltée malter VER f s 0.23 0.00 0.01 0.00 par:pas; +malédiction malédiction NOM f s 14.17 9.46 13.27 7.57 +malédictions malédiction NOM f p 14.17 9.46 0.90 1.89 +maléfice maléfice NOM m s 0.89 1.69 0.56 0.74 +maléfices maléfice NOM m p 0.89 1.69 0.33 0.95 +maléficier maléficier VER 0.00 0.07 0.00 0.07 inf; +maléficié maléficié ADJ m s 0.00 0.07 0.00 0.07 +maléfique maléfique ADJ s 6.16 4.86 4.71 3.51 +maléfiques maléfique ADJ p 6.16 4.86 1.44 1.35 +malus malus NOM m 0.04 0.00 0.04 0.00 +malveillance malveillance NOM f s 0.40 3.85 0.39 3.72 +malveillances malveillance NOM f p 0.40 3.85 0.01 0.14 +malveillant malveillant ADJ m s 0.95 2.23 0.44 0.68 +malveillante malveillant ADJ f s 0.95 2.23 0.28 0.14 +malveillantes malveillant ADJ f p 0.95 2.23 0.09 0.81 +malveillants malveillant ADJ m p 0.95 2.23 0.15 0.61 +malvenu malvenu ADJ m s 0.37 0.34 0.14 0.34 +malvenue malvenu ADJ f s 0.37 0.34 0.07 0.00 +malvenus malvenu ADJ m p 0.37 0.34 0.16 0.00 +malversation malversation NOM f s 0.55 0.54 0.07 0.14 +malversations malversation NOM f p 0.55 0.54 0.48 0.41 +malvoisie malvoisie NOM m s 0.01 0.07 0.01 0.00 +malvoisies malvoisie NOM m p 0.01 0.07 0.00 0.07 +mam_selle mam_selle NOM f s 0.11 0.07 0.11 0.07 +mam_zelle mam_zelle NOM f s 0.03 0.00 0.03 0.00 +mam mam NOM f s 0.63 1.62 0.63 0.95 +mamaliga mamaliga NOM f s 0.00 0.07 0.00 0.07 +mamamouchi mamamouchi NOM m s 0.00 0.14 0.00 0.14 +maman maman NOM f s 540.21 144.39 537.44 140.20 +mamans maman NOM f p 540.21 144.39 2.76 4.19 +mamba mamba NOM m s 0.10 0.00 0.10 0.00 +mambo mambo NOM m s 1.58 1.62 1.56 1.62 +mambos mambo NOM m p 1.58 1.62 0.02 0.00 +mame mam NOM f s 0.63 1.62 0.00 0.68 +mamelle mamelle NOM f s 0.83 3.72 0.19 1.01 +mamelles mamelle NOM f p 0.83 3.72 0.65 2.70 +mamelon mamelon NOM m s 1.49 7.16 0.50 3.85 +mamelonnée mamelonné ADJ f s 0.00 0.14 0.00 0.14 +mamelons mamelon NOM m p 1.49 7.16 0.99 3.31 +mamelouk mamelouk NOM m s 0.01 0.34 0.01 0.14 +mamelouks mamelouk NOM m p 0.01 0.34 0.00 0.20 +mamelu mamelu ADJ m s 0.01 0.41 0.00 0.14 +mamelue mamelu ADJ f s 0.01 0.41 0.01 0.14 +mamelues mamelu ADJ f p 0.01 0.41 0.00 0.07 +mameluk mameluk NOM m s 0.00 2.03 0.00 0.81 +mameluks mameluk NOM m p 0.00 2.03 0.00 1.22 +mamelus mamelu ADJ m p 0.01 0.41 0.00 0.07 +mamie mamie NOM f s 18.66 2.30 18.56 2.23 +mamies mamie NOM f p 18.66 2.30 0.10 0.07 +mamma mamma NOM f s 2.27 0.27 2.27 0.27 +mammaire mammaire ADJ s 0.58 0.14 0.20 0.07 +mammaires mammaire ADJ p 0.58 0.14 0.38 0.07 +mammectomie mammectomie NOM f s 0.02 0.00 0.02 0.00 +mammifère mammifère NOM m s 1.27 1.28 0.40 0.47 +mammifères mammifère NOM m p 1.27 1.28 0.87 0.81 +mammographie mammographie NOM f s 0.15 0.00 0.15 0.00 +mammoplastie mammoplastie NOM f s 0.01 0.00 0.01 0.00 +mammouth mammouth NOM m s 1.38 8.18 1.16 7.84 +mammouths mammouth NOM m p 1.38 8.18 0.21 0.34 +mammy mammy NOM f s 0.41 0.07 0.41 0.07 +mamours mamours NOM m p 0.46 0.47 0.46 0.47 +mamy mamy NOM f s 0.69 0.00 0.66 0.00 +mamys mamy NOM f p 0.69 0.00 0.04 0.00 +mamzelle mamzelle NOM f s 0.10 0.07 0.10 0.07 +man man NOM s 19.31 6.82 19.31 6.82 +manœuvre manœuvre NOM s 2.04 0.00 2.04 0.00 +mana mana NOM m s 0.03 0.88 0.03 0.88 +manade manade NOM f s 0.00 0.27 0.00 0.07 +manades manade NOM f p 0.00 0.27 0.00 0.20 +manage manager VER 1.54 0.47 0.30 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manageait manager VER 1.54 0.47 0.02 0.00 ind:imp:3s; +management management NOM m s 0.57 0.07 0.57 0.07 +manager manager NOM m s 8.08 2.57 7.54 1.89 +managerais manager VER 1.54 0.47 0.01 0.00 cnd:pre:2s; +managers manager NOM m p 8.08 2.57 0.54 0.68 +manageur manageur NOM m s 0.01 0.00 0.01 0.00 +manant manant NOM m s 0.40 1.22 0.24 0.27 +manants manant NOM m p 0.40 1.22 0.16 0.95 +manceau manceau ADJ m s 0.00 0.07 0.00 0.07 +mancenillier mancenillier NOM m s 0.01 0.14 0.01 0.14 +manche manche NOM s 14.25 59.39 10.12 35.41 +mancheron mancheron NOM m s 0.00 0.27 0.00 0.07 +mancherons mancheron NOM m p 0.00 0.27 0.00 0.20 +manches manche NOM p 14.25 59.39 4.13 23.99 +manchette manchette NOM f s 2.34 6.22 1.69 1.76 +manchettes manchette NOM f p 2.34 6.22 0.65 4.46 +manchon manchon NOM m s 0.09 1.76 0.08 1.35 +manchons manchon NOM m p 0.09 1.76 0.01 0.41 +manchot manchot NOM m s 1.56 1.89 1.47 1.49 +manchote manchot ADJ f s 1.00 1.55 0.07 0.14 +manchotes manchot NOM f p 1.56 1.89 0.00 0.07 +manchots manchot NOM m p 1.56 1.89 0.09 0.27 +mandai mander VER 1.26 3.31 0.00 0.14 ind:pas:1s; +mandaient mander VER 1.26 3.31 0.00 0.07 ind:imp:3p; +mandait mander VER 1.26 3.31 0.00 0.27 ind:imp:3s; +mandala mandala NOM m s 1.76 0.07 1.76 0.00 +mandalas mandala NOM m p 1.76 0.07 0.00 0.07 +mandale mandale NOM f s 0.03 0.88 0.03 0.54 +mandales mandale NOM f p 0.03 0.88 0.00 0.34 +mandant mandant NOM m s 0.10 0.34 0.09 0.00 +mandants mandant NOM m p 0.10 0.34 0.01 0.34 +mandarin mandarin NOM m s 0.47 1.82 0.43 1.22 +mandarine mandarine NOM f s 1.17 3.11 0.60 2.09 +mandarines mandarine NOM f p 1.17 3.11 0.56 1.01 +mandarinier mandarinier NOM m s 0.00 0.34 0.00 0.07 +mandariniers mandarinier NOM m p 0.00 0.34 0.00 0.27 +mandarins mandarin NOM m p 0.47 1.82 0.04 0.61 +mandas mander VER 1.26 3.31 0.01 0.00 ind:pas:2s; +mandat_carte mandat_carte NOM m s 0.01 0.00 0.01 0.00 +mandat_lettre mandat_lettre NOM m s 0.00 0.07 0.00 0.07 +mandat_poste mandat_poste NOM m s 0.03 0.07 0.03 0.07 +mandat mandat NOM m s 25.25 14.32 23.45 11.76 +mandataire mandataire NOM s 0.37 1.82 0.32 0.74 +mandataires mandataire NOM p 0.37 1.82 0.05 1.08 +mandatait mandater VER 1.14 0.95 0.00 0.14 ind:imp:3s; +mandatant mandater VER 1.14 0.95 0.00 0.07 par:pre; +mandatement mandatement NOM m s 0.00 0.07 0.00 0.07 +mandater mandater VER 1.14 0.95 0.02 0.00 inf; +mandatez mandater VER 1.14 0.95 0.01 0.00 imp:pre:2p; +mandats mandat NOM m p 25.25 14.32 1.80 2.57 +mandaté mandater VER m s 1.14 0.95 0.60 0.47 par:pas; +mandatée mandater VER f s 1.14 0.95 0.07 0.00 par:pas; +mandatés mandater VER m p 1.14 0.95 0.44 0.27 par:pas; +mandchoue mandchou ADJ f s 0.03 0.20 0.03 0.20 +mandchous mandchou NOM m p 0.02 0.07 0.02 0.07 +mande mander VER 1.26 3.31 0.60 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mandement mandement NOM m s 0.03 0.07 0.01 0.00 +mandements mandement NOM m p 0.03 0.07 0.02 0.07 +mander mander VER 1.26 3.31 0.34 1.15 inf; +mandera mander VER 1.26 3.31 0.01 0.14 ind:fut:3s; +manderai mander VER 1.26 3.31 0.00 0.07 ind:fut:1s; +manderaient mander VER 1.26 3.31 0.01 0.00 cnd:pre:3p; +manderais mander VER 1.26 3.31 0.00 0.07 cnd:pre:1s; +mandes mander VER 1.26 3.31 0.00 0.07 ind:pre:2s; +mandez mander VER 1.26 3.31 0.01 0.20 imp:pre:2p; +mandibulaire mandibulaire ADJ f s 0.02 0.00 0.02 0.00 +mandibule mandibule NOM f s 0.55 2.36 0.17 0.07 +mandibules mandibule NOM f p 0.55 2.36 0.38 2.30 +mandingue mandingue ADJ s 0.01 0.00 0.01 0.00 +mandingues mandingue NOM p 0.30 0.00 0.30 0.00 +mandoline mandoline NOM f s 0.55 1.15 0.54 0.88 +mandolines mandoline NOM f p 0.55 1.15 0.01 0.27 +mandore mandore NOM f s 0.00 1.55 0.00 1.55 +mandorle mandorle NOM f s 0.00 0.34 0.00 0.27 +mandorles mandorle NOM f p 0.00 0.34 0.00 0.07 +mandragore mandragore NOM f s 0.47 1.69 0.42 1.01 +mandragores mandragore NOM f p 0.47 1.69 0.05 0.68 +mandrill mandrill NOM m s 0.01 0.00 0.01 0.00 +mandrin mandrin NOM m s 0.15 0.41 0.15 0.27 +mandrins mandrin NOM m p 0.15 0.41 0.00 0.14 +mandèrent mander VER 1.26 3.31 0.00 0.07 ind:pas:3p; +mandé mander VER m s 1.26 3.31 0.28 0.27 par:pas; +manducation manducation NOM f s 0.00 0.07 0.00 0.07 +mandée mander VER f s 1.26 3.31 0.00 0.14 par:pas; +manette manette NOM f s 1.08 2.64 0.65 0.95 +manettes manette NOM f p 1.08 2.64 0.43 1.69 +manga manga NOM m s 0.37 0.47 0.04 0.47 +manganite manganite NOM m s 0.14 0.00 0.14 0.00 +manganèse manganèse NOM m s 0.23 0.07 0.23 0.07 +mangas manga NOM m p 0.37 0.47 0.32 0.00 +mange_disque mange_disque NOM m s 0.11 0.07 0.10 0.00 +mange_disque mange_disque NOM m p 0.11 0.07 0.01 0.07 +mange_tout mange_tout NOM m 0.01 0.07 0.01 0.07 +mange manger VER 467.86 280.61 103.81 31.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mangea manger VER 467.86 280.61 0.66 5.54 ind:pas:3s; +mangeable mangeable ADJ s 0.72 0.68 0.68 0.54 +mangeables mangeable ADJ m p 0.72 0.68 0.04 0.14 +mangeai manger VER 467.86 280.61 0.02 1.55 ind:pas:1s; +mangeaient manger VER 467.86 280.61 0.99 7.91 ind:imp:3p; +mangeaille mangeaille NOM f s 0.14 1.28 0.14 1.08 +mangeailles mangeaille NOM f p 0.14 1.28 0.00 0.20 +mangeais manger VER 467.86 280.61 2.31 2.91 ind:imp:1s;ind:imp:2s; +mangeait manger VER 467.86 280.61 4.93 20.14 ind:imp:3s; +mangeant manger VER 467.86 280.61 3.13 7.57 par:pre; +mangeas manger VER 467.86 280.61 0.10 0.07 ind:pas:2s; +mangeasse manger VER 467.86 280.61 0.00 0.07 sub:imp:1s; +mangent manger VER 467.86 280.61 13.77 8.18 ind:pre:3p;sub:pre:3p; +mangeoire mangeoire NOM f s 0.46 1.08 0.23 0.95 +mangeoires mangeoire NOM f p 0.46 1.08 0.22 0.14 +mangeâmes manger VER 467.86 280.61 0.01 0.47 ind:pas:1p; +mangeons manger VER 467.86 280.61 4.05 1.82 imp:pre:1p;ind:pre:1p; +mangeât manger VER 467.86 280.61 0.00 0.34 sub:imp:3s; +manger manger VER 467.86 280.61 207.63 134.26 inf;; +mangera manger VER 467.86 280.61 4.91 1.35 ind:fut:3s; +mangerai manger VER 467.86 280.61 5.01 1.42 ind:fut:1s; +mangeraient manger VER 467.86 280.61 0.13 0.54 cnd:pre:3p; +mangerais manger VER 467.86 280.61 2.84 1.08 cnd:pre:1s;cnd:pre:2s; +mangerait manger VER 467.86 280.61 1.88 1.96 cnd:pre:3s; +mangeras manger VER 467.86 280.61 2.54 1.49 ind:fut:2s; +mangerez manger VER 467.86 280.61 1.43 0.54 ind:fut:2p; +mangerie mangerie NOM f s 0.00 0.07 0.00 0.07 +mangeriez manger VER 467.86 280.61 0.32 0.07 cnd:pre:2p; +mangerions manger VER 467.86 280.61 0.03 0.27 cnd:pre:1p; +mangerons manger VER 467.86 280.61 1.49 0.74 ind:fut:1p; +mangeront manger VER 467.86 280.61 1.43 0.81 ind:fut:3p; +manges manger VER 467.86 280.61 20.56 4.46 ind:pre:2s;sub:pre:2s; +mangetout mangetout NOM m 0.00 0.07 0.00 0.07 +mangeur mangeur NOM m s 3.37 3.04 1.49 1.01 +mangeurs mangeur NOM m p 3.37 3.04 1.07 1.55 +mangeuse mangeur NOM f s 3.37 3.04 0.81 0.27 +mangeuses mangeuse NOM f p 0.08 0.00 0.08 0.00 +mangez manger VER 467.86 280.61 17.85 3.31 imp:pre:2p;ind:pre:2p; +mangiez manger VER 467.86 280.61 0.91 0.20 ind:imp:2p; +mangions manger VER 467.86 280.61 0.34 1.89 ind:imp:1p; +mango mango NOM s 0.07 0.00 0.07 0.00 +mangonneaux mangonneau NOM m p 0.00 0.54 0.00 0.54 +mangouste mangouste NOM f s 0.33 0.00 0.33 0.00 +mangrove mangrove NOM f s 0.02 0.07 0.01 0.07 +mangroves mangrove NOM f p 0.02 0.07 0.01 0.00 +mangèrent manger VER 467.86 280.61 0.33 3.72 ind:pas:3p; +mangé manger VER m s 467.86 280.61 60.43 27.50 par:pas; +mangue mangue NOM f s 1.44 2.09 0.73 0.74 +mangée manger VER f s 467.86 280.61 1.98 3.04 par:pas; +mangues mangue NOM f p 1.44 2.09 0.71 1.35 +mangées manger VER f p 467.86 280.61 0.38 1.01 par:pas; +manguier manguier NOM m s 0.05 1.42 0.03 0.20 +manguiers manguier NOM m p 0.05 1.42 0.02 1.22 +mangés manger VER m p 467.86 280.61 1.66 2.43 par:pas; +manhattan manhattan NOM s 0.07 0.14 0.07 0.14 +mania manier VER 5.70 16.22 0.61 0.14 ind:pas:3s; +maniabilité maniabilité NOM f s 0.03 0.00 0.03 0.00 +maniable maniable ADJ s 0.51 0.95 0.27 0.88 +maniables maniable ADJ p 0.51 0.95 0.24 0.07 +maniaco_dépressif maniaco_dépressif ADJ m s 0.38 0.14 0.17 0.00 +maniaco_dépressif maniaco_dépressif ADJ m p 0.38 0.14 0.08 0.14 +maniaco_dépressif maniaco_dépressif ADJ f s 0.38 0.14 0.13 0.00 +maniacodépressif maniacodépressif ADJ m s 0.06 0.00 0.03 0.00 +maniacodépressive maniacodépressif ADJ f s 0.06 0.00 0.03 0.00 +maniaient manier VER 5.70 16.22 0.00 0.74 ind:imp:3p; +maniais manier VER 5.70 16.22 0.02 0.20 ind:imp:1s; +maniait manier VER 5.70 16.22 0.08 2.43 ind:imp:3s; +maniant manier VER 5.70 16.22 0.20 1.49 par:pre; +maniaque maniaque NOM s 5.63 4.39 5.11 3.04 +maniaquement maniaquement ADV 0.00 0.27 0.00 0.27 +maniaquerie maniaquerie NOM f s 0.00 0.34 0.00 0.27 +maniaqueries maniaquerie NOM f p 0.00 0.34 0.00 0.07 +maniaques maniaque NOM p 5.63 4.39 0.52 1.35 +manichéen manichéen ADJ m s 0.04 0.27 0.04 0.27 +manichéisme manichéisme NOM m s 0.00 0.61 0.00 0.61 +manichéiste manichéiste NOM s 0.00 0.07 0.00 0.07 +manie manie NOM f s 6.63 18.38 5.42 13.18 +maniement maniement NOM m s 0.50 3.72 0.50 3.58 +maniements maniement NOM m p 0.50 3.72 0.00 0.14 +manient manier VER 5.70 16.22 0.17 0.54 ind:pre:3p; +manier manier VER 5.70 16.22 2.96 7.23 inf; +manierais manier VER 5.70 16.22 0.01 0.00 cnd:pre:1s; +manieront manier VER 5.70 16.22 0.00 0.07 ind:fut:3p; +manies manie NOM f p 6.63 18.38 1.21 5.20 +manieur manieur NOM m s 0.03 0.47 0.03 0.27 +manieurs manieur NOM m p 0.03 0.47 0.00 0.14 +manieuse manieur NOM f s 0.03 0.47 0.00 0.07 +maniez manier VER 5.70 16.22 0.24 0.00 imp:pre:2p;ind:pre:2p; +manif manif NOM f s 4.98 2.16 3.33 1.49 +manifesta manifester VER 10.28 38.04 0.02 3.31 ind:pas:3s; +manifestai manifester VER 10.28 38.04 0.00 0.14 ind:pas:1s; +manifestaient manifester VER 10.28 38.04 0.22 2.30 ind:imp:3p; +manifestais manifester VER 10.28 38.04 0.04 0.27 ind:imp:1s;ind:imp:2s; +manifestait manifester VER 10.28 38.04 0.52 6.82 ind:imp:3s; +manifestant manifester VER 10.28 38.04 0.21 1.42 par:pre; +manifestante manifestant NOM f s 2.06 2.30 0.01 0.07 +manifestantes manifestant NOM f p 2.06 2.30 0.01 0.14 +manifestants manifestant NOM m p 2.06 2.30 1.96 2.03 +manifestation manifestation NOM f s 8.90 17.16 5.96 9.80 +manifestations manifestation NOM f p 8.90 17.16 2.94 7.36 +manifeste manifester VER 10.28 38.04 1.77 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manifestement manifestement ADV 5.79 6.76 5.79 6.76 +manifestent manifester VER 10.28 38.04 0.92 1.28 ind:pre:3p; +manifester manifester VER 10.28 38.04 3.16 9.80 inf; +manifestera manifester VER 10.28 38.04 0.21 0.00 ind:fut:3s; +manifesterai manifester VER 10.28 38.04 0.01 0.07 ind:fut:1s; +manifesteraient manifester VER 10.28 38.04 0.14 0.00 cnd:pre:3p; +manifesterais manifester VER 10.28 38.04 0.02 0.00 cnd:pre:2s; +manifesterait manifester VER 10.28 38.04 0.02 0.14 cnd:pre:3s; +manifesteront manifester VER 10.28 38.04 0.19 0.07 ind:fut:3p; +manifestes manifeste ADJ p 1.10 3.45 0.23 0.41 +manifestez manifester VER 10.28 38.04 0.38 0.20 imp:pre:2p;ind:pre:2p; +manifestiez manifester VER 10.28 38.04 0.06 0.00 ind:imp:2p; +manifestions manifester VER 10.28 38.04 0.00 0.07 ind:imp:1p; +manifestons manifester VER 10.28 38.04 0.01 0.00 ind:pre:1p; +manifestât manifester VER 10.28 38.04 0.00 0.41 sub:imp:3s; +manifestèrent manifester VER 10.28 38.04 0.00 0.27 ind:pas:3p; +manifesté manifester VER m s 10.28 38.04 1.53 5.14 par:pas; +manifestée manifester VER f s 10.28 38.04 0.57 1.35 par:pas; +manifestées manifester VER f p 10.28 38.04 0.11 0.07 par:pas; +manifestés manifester VER m p 10.28 38.04 0.08 0.41 par:pas; +manifold manifold NOM m s 0.00 0.20 0.00 0.14 +manifolds manifold NOM m p 0.00 0.20 0.00 0.07 +manifs manif NOM f p 4.98 2.16 1.66 0.68 +manigance manigancer VER 5.03 1.35 0.92 0.34 ind:pre:1s;ind:pre:3s; +manigancent manigancer VER 5.03 1.35 0.41 0.14 ind:pre:3p; +manigancer manigancer VER 5.03 1.35 0.45 0.14 inf; +manigancerait manigancer VER 5.03 1.35 0.00 0.07 cnd:pre:3s; +manigances manigancer VER 5.03 1.35 0.70 0.07 ind:pre:2s; +manigancez manigancer VER 5.03 1.35 0.56 0.07 ind:pre:2p; +maniganciez manigancer VER 5.03 1.35 0.05 0.00 ind:imp:2p; +manigancé manigancer VER m s 5.03 1.35 1.59 0.27 par:pas; +manigancée manigancer VER f s 5.03 1.35 0.01 0.14 par:pas; +manigançaient manigancer VER 5.03 1.35 0.04 0.00 ind:imp:3p; +manigançais manigancer VER 5.03 1.35 0.03 0.00 ind:imp:1s;ind:imp:2s; +manigançait manigancer VER 5.03 1.35 0.28 0.14 ind:imp:3s; +manilla maniller VER 0.02 0.00 0.02 0.00 ind:pas:3s; +manille manille NOM f s 0.40 0.95 0.40 0.81 +manilles manille NOM f p 0.40 0.95 0.00 0.14 +manilleurs manilleur NOM m p 0.00 0.07 0.00 0.07 +manillon manillon NOM m s 0.27 0.00 0.27 0.00 +manioc manioc NOM m s 0.23 0.88 0.23 0.88 +manip manip NOM f s 0.09 0.14 0.09 0.07 +manipe manip NOM f s 0.09 0.14 0.00 0.07 +manipula manipuler VER 12.35 6.01 0.14 0.41 ind:pas:3s; +manipulable manipulable ADJ s 0.14 0.27 0.09 0.14 +manipulables manipulable ADJ m p 0.14 0.27 0.05 0.14 +manipulaient manipuler VER 12.35 6.01 0.03 0.14 ind:imp:3p; +manipulais manipuler VER 12.35 6.01 0.02 0.07 ind:imp:1s;ind:imp:2s; +manipulait manipuler VER 12.35 6.01 0.31 0.61 ind:imp:3s; +manipulant manipuler VER 12.35 6.01 0.13 0.61 par:pre; +manipulateur manipulateur NOM m s 1.44 0.54 0.81 0.41 +manipulateurs manipulateur NOM m p 1.44 0.54 0.23 0.14 +manipulation manipulation NOM f s 2.63 2.16 2.00 1.01 +manipulations manipulation NOM f p 2.63 2.16 0.63 1.15 +manipulatrice manipulateur NOM f s 1.44 0.54 0.40 0.00 +manipulatrices manipulatrice NOM f p 0.02 0.00 0.02 0.00 +manipule manipuler VER 12.35 6.01 2.02 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +manipulent manipuler VER 12.35 6.01 0.27 0.20 ind:pre:3p; +manipuler manipuler VER 12.35 6.01 4.36 1.82 inf; +manipulera manipuler VER 12.35 6.01 0.02 0.00 ind:fut:3s; +manipulerai manipuler VER 12.35 6.01 0.03 0.00 ind:fut:1s; +manipulerait manipuler VER 12.35 6.01 0.01 0.00 cnd:pre:3s; +manipuleras manipuler VER 12.35 6.01 0.03 0.00 ind:fut:2s; +manipules manipuler VER 12.35 6.01 0.28 0.00 ind:pre:2s; +manipulez manipuler VER 12.35 6.01 0.40 0.07 imp:pre:2p;ind:pre:2p; +manipulons manipuler VER 12.35 6.01 0.03 0.07 ind:pre:1p; +manipulé manipuler VER m s 12.35 6.01 2.40 0.68 par:pas; +manipulée manipuler VER f s 12.35 6.01 1.01 0.14 par:pas; +manipulées manipuler VER f p 12.35 6.01 0.13 0.07 par:pas; +manipulés manipuler VER m p 12.35 6.01 0.74 0.61 par:pas; +manière manière NOM f s 72.31 157.77 55.43 134.66 +manièrent manier VER 5.70 16.22 0.00 0.07 ind:pas:3p; +manières manière NOM f p 72.31 157.77 16.89 23.11 +manitoba manitoba NOM m s 0.00 0.07 0.00 0.07 +manitou manitou NOM m s 0.51 0.88 0.47 0.74 +manitous manitou NOM m p 0.51 0.88 0.04 0.14 +manié manier VER m s 5.70 16.22 0.33 1.01 par:pas; +maniée manier VER f s 5.70 16.22 0.01 0.27 par:pas; +maniées manier VER f p 5.70 16.22 0.00 0.14 par:pas; +maniérisme maniérisme NOM m s 0.07 0.34 0.05 0.27 +maniérismes maniérisme NOM m p 0.07 0.34 0.02 0.07 +maniériste maniériste ADJ s 0.01 0.00 0.01 0.00 +maniéristes maniériste NOM p 0.00 0.07 0.00 0.07 +maniéré maniéré ADJ m s 0.16 0.74 0.04 0.20 +maniérée maniéré ADJ f s 0.16 0.74 0.11 0.07 +maniérées maniéré ADJ f p 0.16 0.74 0.01 0.20 +maniérés maniéré ADJ m p 0.16 0.74 0.00 0.27 +maniés manier VER m p 5.70 16.22 0.00 0.34 par:pas; +manivelle manivelle NOM f s 1.55 31.96 1.54 31.22 +manivelles manivelle NOM f p 1.55 31.96 0.01 0.74 +manne manne NOM f s 0.65 1.35 0.52 1.22 +mannequin mannequin NOM s 12.33 10.68 8.43 6.01 +mannequine mannequiner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +mannequins mannequin NOM p 12.33 10.68 3.90 4.66 +mannes manne NOM f p 0.65 1.35 0.14 0.14 +mannezingue mannezingue NOM m s 0.00 0.20 0.00 0.20 +mannitol mannitol NOM m s 0.19 0.00 0.19 0.00 +manoeuvra manoeuvrer VER 1.79 13.78 0.00 0.88 ind:pas:3s; +manoeuvrabilité manoeuvrabilité NOM f s 0.04 0.00 0.04 0.00 +manoeuvrable manoeuvrable ADJ f s 0.04 0.07 0.04 0.07 +manoeuvraient manoeuvrer VER 1.79 13.78 0.14 0.61 ind:imp:3p; +manoeuvrais manoeuvrer VER 1.79 13.78 0.01 0.20 ind:imp:1s; +manoeuvrait manoeuvrer VER 1.79 13.78 0.04 1.89 ind:imp:3s; +manoeuvrant manoeuvrer VER 1.79 13.78 0.00 1.22 par:pre; +manoeuvre manoeuvre NOM s 7.22 26.42 4.76 16.08 +manoeuvrent manoeuvrer VER 1.79 13.78 0.00 0.54 ind:pre:3p; +manoeuvrer manoeuvrer VER 1.79 13.78 0.85 5.20 inf; +manoeuvres manoeuvre NOM p 7.22 26.42 2.46 10.34 +manoeuvrez manoeuvrer VER 1.79 13.78 0.02 0.00 imp:pre:2p;ind:pre:2p; +manoeuvrier manoeuvrier ADJ m s 0.00 0.41 0.00 0.14 +manoeuvriers manoeuvrier NOM m p 0.00 0.14 0.00 0.07 +manoeuvrière manoeuvrier ADJ f s 0.00 0.41 0.00 0.14 +manoeuvrières manoeuvrier ADJ f p 0.00 0.41 0.00 0.14 +manoeuvrons manoeuvrer VER 1.79 13.78 0.01 0.07 imp:pre:1p;ind:pre:1p; +manoeuvrèrent manoeuvrer VER 1.79 13.78 0.00 0.07 ind:pas:3p; +manoeuvré manoeuvrer VER m s 1.79 13.78 0.12 1.15 par:pas; +manoeuvrée manoeuvrer VER f s 1.79 13.78 0.01 0.34 par:pas; +manoeuvrées manoeuvrer VER f p 1.79 13.78 0.00 0.14 par:pas; +manoeuvrés manoeuvrer VER m p 1.79 13.78 0.00 0.07 par:pas; +manoir manoir NOM m s 6.08 9.59 5.87 9.05 +manoirs manoir NOM m p 6.08 9.59 0.21 0.54 +manomètre manomètre NOM m s 0.47 0.27 0.42 0.14 +manomètres manomètre NOM m p 0.47 0.27 0.05 0.14 +manouche manouche NOM s 0.13 0.88 0.09 0.68 +manouches manouche NOM p 0.13 0.88 0.05 0.20 +manouvrier manouvrier NOM m s 0.01 0.00 0.01 0.00 +manqua manquer VER 253.94 197.64 0.79 6.01 ind:pas:3s; +manquai manquer VER 253.94 197.64 0.01 0.68 ind:pas:1s; +manquaient manquer VER 253.94 197.64 1.38 12.09 ind:imp:3p; +manquais manquer VER 253.94 197.64 2.85 3.51 ind:imp:1s;ind:imp:2s; +manquait manquer VER 253.94 197.64 18.13 48.78 ind:imp:3s; +manquant manquant ADJ m s 4.74 2.23 1.75 0.95 +manquante manquant ADJ f s 4.74 2.23 0.85 0.27 +manquantes manquant ADJ f p 4.74 2.23 1.23 0.47 +manquants manquant ADJ m p 4.74 2.23 0.92 0.54 +manquassent manquer VER 253.94 197.64 0.14 0.07 sub:imp:3p; +manque manquer VER 253.94 197.64 98.77 41.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +manquement manquement NOM m s 0.54 1.55 0.39 1.08 +manquements manquement NOM m p 0.54 1.55 0.15 0.47 +manquent manquer VER 253.94 197.64 10.51 8.99 ind:pre:3p;sub:pre:3p; +manquer manquer VER 253.94 197.64 30.61 24.39 inf; +manquera manquer VER 253.94 197.64 5.21 2.36 ind:fut:3s; +manquerai manquer VER 253.94 197.64 3.86 0.54 ind:fut:1s; +manqueraient manquer VER 253.94 197.64 0.17 1.82 cnd:pre:3p; +manquerais manquer VER 253.94 197.64 0.90 1.01 cnd:pre:1s;cnd:pre:2s; +manquerait manquer VER 253.94 197.64 3.97 6.22 cnd:pre:3s; +manqueras manquer VER 253.94 197.64 2.88 0.54 ind:fut:2s; +manquerez manquer VER 253.94 197.64 1.54 0.61 ind:fut:2p; +manqueriez manquer VER 253.94 197.64 0.25 0.00 cnd:pre:2p; +manquerions manquer VER 253.94 197.64 0.02 0.20 cnd:pre:1p; +manquerons manquer VER 253.94 197.64 0.22 0.20 ind:fut:1p; +manqueront manquer VER 253.94 197.64 1.03 1.28 ind:fut:3p; +manques manquer VER 253.94 197.64 20.07 1.76 ind:pre:2s;sub:pre:2s; +manquez manquer VER 253.94 197.64 5.98 1.89 imp:pre:2p;ind:pre:2p; +manquiez manquer VER 253.94 197.64 0.92 0.14 ind:imp:2p; +manquions manquer VER 253.94 197.64 0.31 0.61 ind:imp:1p; +manquâmes manquer VER 253.94 197.64 0.01 0.34 ind:pas:1p; +manquons manquer VER 253.94 197.64 2.06 1.15 imp:pre:1p;ind:pre:1p; +manquât manquer VER 253.94 197.64 0.00 0.61 sub:imp:3s; +manquèrent manquer VER 253.94 197.64 0.16 0.88 ind:pas:3p; +manqué manquer VER m s 253.94 197.64 38.94 24.53 par:pas; +manquée manquer VER f s 253.94 197.64 1.48 1.42 par:pas; +manquées manqué ADJ f p 2.43 4.80 0.30 0.74 +manqués manquer VER m p 253.94 197.64 0.32 0.20 par:pas; +mansard mansarde NOM m s 0.50 5.27 0.00 0.07 +mansarde mansarde NOM f s 0.50 5.27 0.46 3.38 +mansardes mansarde NOM f p 0.50 5.27 0.03 1.82 +mansardé mansarder VER m s 0.10 0.41 0.10 0.07 par:pas; +mansardée mansardé ADJ f s 0.00 1.22 0.00 0.61 +mansardées mansarder VER f p 0.10 0.41 0.00 0.27 par:pas; +mansion mansion NOM f s 0.05 0.00 0.01 0.00 +mansions mansion NOM f p 0.05 0.00 0.04 0.00 +mansuétude mansuétude NOM f s 0.17 2.09 0.17 2.03 +mansuétudes mansuétude NOM f p 0.17 2.09 0.00 0.07 +manta manta NOM f s 0.72 0.00 0.72 0.00 +mante mante NOM f s 0.72 1.69 0.57 0.47 +manteau manteau NOM m s 39.97 68.11 36.16 58.99 +manteaux manteau NOM m p 39.97 68.11 3.81 9.12 +mantelet mantelet NOM m s 0.00 0.27 0.00 0.20 +mantelets mantelet NOM m p 0.00 0.27 0.00 0.07 +mantelure mantelure NOM f s 0.00 0.07 0.00 0.07 +mantes mante NOM f p 0.72 1.69 0.15 1.22 +manège manège NOM m s 5.92 15.27 5.22 13.51 +manèges manège NOM m p 5.92 15.27 0.70 1.76 +mantille mantille NOM f s 0.02 1.35 0.01 0.81 +mantilles mantille NOM f p 0.02 1.35 0.01 0.54 +mantique mantique NOM f s 0.00 0.07 0.00 0.07 +mantra mantra NOM m s 0.34 0.07 0.34 0.07 +manu_militari manu_militari ADV 0.16 0.20 0.16 0.20 +manubrium manubrium NOM m s 0.03 0.00 0.03 0.00 +manécanterie manécanterie NOM f s 0.00 0.27 0.00 0.27 +manucure manucure NOM s 2.15 1.55 1.95 1.15 +manucurer manucurer VER 0.27 0.95 0.10 0.00 inf; +manucures manucure NOM p 2.15 1.55 0.19 0.41 +manucuré manucurer VER m s 0.27 0.95 0.03 0.07 par:pas; +manucurée manucurer VER f s 0.27 0.95 0.01 0.14 par:pas; +manucurées manucurer VER f p 0.27 0.95 0.03 0.27 par:pas; +manucurés manucurer VER m p 0.27 0.95 0.09 0.27 par:pas; +manuel manuel NOM m s 6.63 8.18 4.94 3.85 +manuelle manuel ADJ f s 5.70 3.85 1.16 0.61 +manuellement manuellement ADV 1.40 0.14 1.40 0.14 +manuelles manuel ADJ f p 5.70 3.85 0.28 0.20 +manuels manuel NOM m p 6.63 8.18 1.52 4.05 +manufacture manufacture NOM f s 0.37 2.03 0.35 1.49 +manufacturer manufacturer VER 0.11 0.74 0.02 0.14 inf; +manufactures manufacture NOM f p 0.37 2.03 0.02 0.54 +manufacturiers manufacturier NOM m p 0.10 0.00 0.10 0.00 +manufacturons manufacturer VER 0.11 0.74 0.01 0.00 ind:pre:1p; +manufacturé manufacturer VER m s 0.11 0.74 0.04 0.07 par:pas; +manufacturée manufacturer VER f s 0.11 0.74 0.03 0.00 par:pas; +manufacturées manufacturer VER f p 0.11 0.74 0.00 0.07 par:pas; +manufacturés manufacturer VER m p 0.11 0.74 0.00 0.47 par:pas; +manégés manéger VER m p 0.00 0.07 0.00 0.07 par:pas; +manuscrit manuscrit NOM m s 5.48 17.36 3.87 12.09 +manuscrite manuscrit ADJ f s 0.27 2.64 0.10 0.68 +manuscrites manuscrit ADJ f p 0.27 2.64 0.02 0.74 +manuscrits manuscrit NOM m p 5.48 17.36 1.61 5.27 +manutention manutention NOM f s 0.04 0.61 0.04 0.54 +manutentionnaire manutentionnaire NOM s 0.14 0.41 0.12 0.27 +manutentionnaires manutentionnaire NOM p 0.14 0.41 0.01 0.14 +manutentionner manutentionner VER 0.20 0.00 0.20 0.00 inf; +manutentions manutention NOM f p 0.04 0.61 0.00 0.07 +manuélin manuélin ADJ m s 0.00 0.07 0.00 0.07 +manzanilla manzanilla NOM m s 0.00 0.61 0.00 0.61 +mao mao NOM s 0.21 0.68 0.21 0.41 +maoïsme maoïsme NOM m s 0.01 0.07 0.01 0.07 +maoïste maoïste ADJ s 0.00 0.34 0.00 0.34 +maori maori ADJ m s 0.17 0.00 0.15 0.00 +maorie maori ADJ f s 0.17 0.00 0.02 0.00 +maos mao NOM p 0.21 0.68 0.00 0.27 +maous maous ADJ m 0.09 0.74 0.09 0.74 +maousse maousse ADJ f s 0.14 0.54 0.14 0.54 +mappemonde mappemonde NOM f s 0.07 1.76 0.06 1.42 +mappemondes mappemonde NOM f p 0.07 1.76 0.01 0.34 +maquaient maquer VER 0.88 1.35 0.00 0.07 ind:imp:3p; +maque maquer VER 0.88 1.35 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maquent maquer VER 0.88 1.35 0.00 0.07 ind:pre:3p; +maquer maquer VER 0.88 1.35 0.15 0.68 inf; +maquereau maquereau NOM m s 7.23 7.03 5.32 3.38 +maquereautage maquereautage NOM m s 0.10 0.14 0.10 0.14 +maquereauter maquereauter VER 0.13 0.00 0.13 0.00 inf; +maquereautins maquereautin NOM m p 0.00 0.07 0.00 0.07 +maquereaux maquereau NOM m p 7.23 7.03 1.35 2.03 +maquerellage maquerellage NOM m s 0.10 0.00 0.10 0.00 +maquerelle maquereau NOM f s 7.23 7.03 0.56 1.35 +maquerelles maquerelle NOM f p 0.27 0.14 0.27 0.14 +maques maquer VER 0.88 1.35 0.01 0.00 ind:pre:2s; +maquette maquette NOM f s 4.58 3.92 2.57 2.43 +maquettes maquette NOM f p 4.58 3.92 2.01 1.49 +maquettiste maquettiste NOM s 0.02 0.54 0.01 0.41 +maquettistes maquettiste NOM p 0.02 0.54 0.01 0.14 +maquignon maquignon NOM m s 0.35 2.57 0.21 1.76 +maquignonnage maquignonnage NOM m s 0.01 0.14 0.00 0.07 +maquignonnages maquignonnage NOM m p 0.01 0.14 0.01 0.07 +maquignonne maquignonner VER 0.00 0.20 0.00 0.07 ind:pre:3s; +maquignonné maquignonner VER m s 0.00 0.20 0.00 0.07 par:pas; +maquignonnés maquignonner VER m p 0.00 0.20 0.00 0.07 par:pas; +maquignons maquignon NOM m p 0.35 2.57 0.14 0.81 +maquilla maquiller VER 11.14 15.81 0.00 0.14 ind:pas:3s; +maquillage maquillage NOM m s 11.39 11.62 11.36 11.08 +maquillages maquillage NOM m p 11.39 11.62 0.03 0.54 +maquillai maquiller VER 11.14 15.81 0.00 0.07 ind:pas:1s; +maquillais maquiller VER 11.14 15.81 0.19 0.20 ind:imp:1s;ind:imp:2s; +maquillait maquiller VER 11.14 15.81 0.28 1.55 ind:imp:3s; +maquillant maquiller VER 11.14 15.81 0.22 0.07 par:pre; +maquille maquiller VER 11.14 15.81 2.39 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +maquillent maquiller VER 11.14 15.81 0.22 0.34 ind:pre:3p; +maquiller maquiller VER 11.14 15.81 3.10 3.18 inf; +maquillerai maquiller VER 11.14 15.81 0.17 0.07 ind:fut:1s; +maquillerais maquiller VER 11.14 15.81 0.01 0.07 cnd:pre:1s; +maquilleras maquiller VER 11.14 15.81 0.01 0.00 ind:fut:2s; +maquilles maquiller VER 11.14 15.81 0.62 0.27 ind:pre:2s; +maquilleur maquilleur NOM m s 0.79 0.47 0.28 0.14 +maquilleurs maquilleur NOM m p 0.79 0.47 0.07 0.07 +maquilleuse maquilleur NOM f s 0.79 0.47 0.44 0.20 +maquilleuses maquilleuse NOM f p 0.03 0.00 0.03 0.00 +maquillez maquiller VER 11.14 15.81 0.08 0.07 imp:pre:2p;ind:pre:2p; +maquilliez maquiller VER 11.14 15.81 0.10 0.00 ind:imp:2p; +maquillons maquiller VER 11.14 15.81 0.01 0.00 imp:pre:1p; +maquillé maquiller VER m s 11.14 15.81 1.99 1.96 par:pas; +maquillée maquiller VER f s 11.14 15.81 1.37 4.39 par:pas; +maquillées maquiller VER f p 11.14 15.81 0.07 1.15 par:pas; +maquillés maquiller VER m p 11.14 15.81 0.32 0.88 par:pas; +maquis maquis NOM m 0.91 16.01 0.91 16.01 +maquisard maquisard NOM m s 0.16 5.81 0.14 0.68 +maquisarde maquisard NOM f s 0.16 5.81 0.00 0.20 +maquisardes maquisard NOM f p 0.16 5.81 0.00 0.14 +maquisards maquisard NOM m p 0.16 5.81 0.02 4.80 +maqué maquer VER m s 0.88 1.35 0.07 0.07 par:pas; +maquée maquer VER f s 0.88 1.35 0.42 0.27 par:pas; +maqués maquer VER m p 0.88 1.35 0.03 0.14 par:pas; +mara mara NOM m s 0.41 0.00 0.41 0.00 +maraîcher maraîcher NOM m s 0.37 2.16 0.35 0.47 +maraîchers maraîcher NOM m p 0.37 2.16 0.01 0.95 +maraîchère maraîcher NOM f s 0.37 2.16 0.01 0.20 +maraîchères maraîchère NOM f p 0.01 0.00 0.01 0.00 +marabout marabout NOM m s 0.07 1.28 0.05 0.88 +marabouts marabout NOM m p 0.07 1.28 0.02 0.41 +maracas maraca NOM f p 0.12 0.41 0.12 0.41 +marae marae NOM m s 0.02 0.00 0.02 0.00 +marais marais NOM m 6.91 10.68 6.91 10.68 +maranta maranta NOM m s 0.01 0.00 0.01 0.00 +marante marante NOM f s 0.02 0.07 0.02 0.07 +marasme marasme NOM m s 0.42 1.01 0.41 0.95 +marasmes marasme NOM m p 0.42 1.01 0.01 0.07 +marasquin marasquin NOM m s 0.06 0.74 0.06 0.74 +marathon marathon NOM m s 2.12 1.28 1.98 1.28 +marathonien marathonien NOM m s 0.17 0.14 0.17 0.07 +marathonienne marathonien NOM f s 0.17 0.14 0.00 0.07 +marathons marathon NOM m p 2.12 1.28 0.14 0.00 +maraud maraud NOM m s 0.68 2.09 0.45 0.20 +maraudaient marauder VER 0.05 0.81 0.00 0.07 ind:imp:3p; +maraudait marauder VER 0.05 0.81 0.01 0.27 ind:imp:3s; +maraude maraud NOM f s 0.68 2.09 0.22 1.28 +marauder marauder VER 0.05 0.81 0.03 0.34 inf; +maraudes maraud NOM f p 0.68 2.09 0.01 0.27 +maraudeur maraudeur NOM m s 1.99 1.49 1.50 0.61 +maraudeurs maraudeur NOM m p 1.99 1.49 0.48 0.88 +maraudeuse maraudeur NOM f s 1.99 1.49 0.01 0.00 +marauds maraud NOM m p 0.68 2.09 0.00 0.34 +maraudé marauder VER m s 0.05 0.81 0.00 0.07 par:pas; +maraudés marauder VER m p 0.05 0.81 0.00 0.07 par:pas; +maravédis maravédis NOM m 0.11 0.20 0.11 0.20 +marbra marbrer VER 0.28 1.82 0.00 0.07 ind:pas:3s; +marbraient marbrer VER 0.28 1.82 0.00 0.07 ind:imp:3p; +marbrait marbrer VER 0.28 1.82 0.00 0.20 ind:imp:3s; +marbre marbre NOM m s 7.31 43.04 6.28 41.49 +marbrent marbrer VER 0.28 1.82 0.00 0.07 ind:pre:3p; +marbrerie marbrerie NOM f s 0.00 0.14 0.00 0.07 +marbreries marbrerie NOM f p 0.00 0.14 0.00 0.07 +marbres marbre NOM m p 7.31 43.04 1.03 1.55 +marbrier marbrier ADJ m s 0.04 0.00 0.04 0.00 +marbré marbré ADJ m s 0.04 0.47 0.04 0.20 +marbrée marbrer VER f s 0.28 1.82 0.17 0.27 par:pas; +marbrées marbrer VER f p 0.28 1.82 0.00 0.34 par:pas; +marbrure marbrure NOM f s 0.00 1.15 0.00 0.07 +marbrures marbrure NOM f p 0.00 1.15 0.00 1.08 +marbrés marbrer VER m p 0.28 1.82 0.00 0.20 par:pas; +marc marc NOM m s 1.28 3.38 1.18 2.91 +marcassin marcassin NOM m s 0.02 0.88 0.02 0.74 +marcassins marcassin NOM m p 0.02 0.88 0.00 0.14 +marcel marcel NOM m s 0.06 0.20 0.06 0.20 +marceline marceline NOM f s 0.00 0.07 0.00 0.07 +marcha marcher VER 364.36 325.61 0.28 21.96 ind:pas:3s; +marchai marcher VER 364.36 325.61 0.04 2.64 ind:pas:1s; +marchaient marcher VER 364.36 325.61 1.82 13.92 ind:imp:3p; +marchais marcher VER 364.36 325.61 3.51 7.91 ind:imp:1s;ind:imp:2s; +marchait marcher VER 364.36 325.61 12.13 48.65 ind:imp:3s; +marchand marchand NOM m s 15.32 45.81 8.66 24.12 +marchandage marchandage NOM m s 0.57 2.50 0.54 1.08 +marchandages marchandage NOM m p 0.57 2.50 0.04 1.42 +marchandaient marchander VER 2.84 3.18 0.00 0.27 ind:imp:3p; +marchandais marchander VER 2.84 3.18 0.01 0.07 ind:imp:1s;ind:imp:2s; +marchandait marchander VER 2.84 3.18 0.15 0.34 ind:imp:3s; +marchandant marchander VER 2.84 3.18 0.01 0.41 par:pre; +marchande marchand NOM f s 15.32 45.81 2.85 6.01 +marchandent marchander VER 2.84 3.18 0.14 0.00 ind:pre:3p; +marchander marchander VER 2.84 3.18 1.43 1.35 inf; +marchandera marchander VER 2.84 3.18 0.01 0.00 ind:fut:3s; +marchanderais marchander VER 2.84 3.18 0.00 0.07 cnd:pre:1s; +marchanderez marchander VER 2.84 3.18 0.01 0.00 ind:fut:2p; +marchandes marchander VER 2.84 3.18 0.11 0.00 ind:pre:2s; +marchandeuse marchandeur NOM f s 0.00 0.07 0.00 0.07 +marchandez marchander VER 2.84 3.18 0.07 0.00 imp:pre:2p;ind:pre:2p; +marchandise marchandise NOM f s 15.21 15.81 10.54 8.78 +marchandises marchandise NOM f p 15.21 15.81 4.67 7.03 +marchandiseur marchandiseur NOM m s 0.01 0.00 0.01 0.00 +marchandons marchander VER 2.84 3.18 0.05 0.00 imp:pre:1p;ind:pre:1p; +marchands marchand NOM m p 15.32 45.81 3.71 14.46 +marchandé marchander VER m s 2.84 3.18 0.30 0.27 par:pas; +marchandée marchander VER f s 2.84 3.18 0.00 0.07 par:pas; +marchant marcher VER 364.36 325.61 4.32 24.86 par:pre; +marchante marchant ADJ f s 0.22 2.36 0.00 0.20 +marchantes marchant ADJ f p 0.22 2.36 0.00 0.07 +marche marcher VER 364.36 325.61 154.71 58.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +marchent marcher VER 364.36 325.61 11.64 10.61 ind:pre:3p; +marchepied marchepied NOM m s 0.64 5.54 0.36 4.59 +marchepieds marchepied NOM m p 0.64 5.54 0.28 0.95 +marcher marcher VER 364.36 325.61 85.33 80.88 inf; +marchera marcher VER 364.36 325.61 17.43 1.62 ind:fut:3s; +marcherai marcher VER 364.36 325.61 1.23 1.15 ind:fut:1s; +marcheraient marcher VER 364.36 325.61 0.06 0.74 cnd:pre:3p; +marcherais marcher VER 364.36 325.61 0.59 0.81 cnd:pre:1s;cnd:pre:2s; +marcherait marcher VER 364.36 325.61 4.10 2.30 cnd:pre:3s; +marcheras marcher VER 364.36 325.61 0.57 0.27 ind:fut:2s; +marcherez marcher VER 364.36 325.61 0.25 0.20 ind:fut:2p; +marcheriez marcher VER 364.36 325.61 0.06 0.07 cnd:pre:2p; +marcherions marcher VER 364.36 325.61 0.03 0.00 cnd:pre:1p; +marcherons marcher VER 364.36 325.61 0.55 0.41 ind:fut:1p; +marcheront marcher VER 364.36 325.61 1.03 0.34 ind:fut:3p; +marches marche NOM f p 53.17 152.97 6.56 52.97 +marcheur marcheur NOM m s 0.56 1.96 0.14 0.81 +marcheurs marcheur NOM m p 0.56 1.96 0.38 0.81 +marcheuse marcheur NOM f s 0.56 1.96 0.04 0.27 +marcheuses marcheuse NOM f p 0.14 0.00 0.14 0.00 +marchez marcher VER 364.36 325.61 7.39 1.69 imp:pre:2p;ind:pre:2p; +marchiez marcher VER 364.36 325.61 0.48 0.20 ind:imp:2p;sub:pre:2p; +marchions marcher VER 364.36 325.61 0.74 5.27 ind:imp:1p; +marchâmes marcher VER 364.36 325.61 0.11 1.01 ind:pas:1p; +marchons marcher VER 364.36 325.61 4.30 6.82 imp:pre:1p;ind:pre:1p; +marchât marcher VER 364.36 325.61 0.00 0.47 sub:imp:3s; +marchèrent marcher VER 364.36 325.61 0.24 6.96 ind:pas:3p; +marché marché NOM m s 74.36 62.43 72.73 57.36 +marchées marcher VER f p 364.36 325.61 0.01 0.00 par:pas; +marchés marché NOM m p 74.36 62.43 1.64 5.07 +marconi marconi ADJ 0.01 0.07 0.01 0.07 +marcotin marcotin NOM m s 0.00 0.07 0.00 0.07 +marcotte marcotte NOM f s 0.01 0.00 0.01 0.00 +marcs marc NOM m p 1.28 3.38 0.10 0.47 +mardi mardi NOM m s 23.65 16.28 22.38 15.47 +mardis mardi NOM m p 23.65 16.28 1.27 0.81 +mare mare NOM f s 3.78 13.18 3.66 10.00 +marelle marelle NOM f s 0.64 2.23 0.64 1.76 +marelles marelle NOM f p 0.64 2.23 0.00 0.47 +marengo marengo ADJ m s 0.01 0.07 0.01 0.07 +marennes marennes NOM f 0.00 0.41 0.00 0.41 +mares mare NOM f p 3.78 13.18 0.12 3.18 +mareyeur mareyeur NOM m s 0.00 0.41 0.00 0.20 +mareyeurs mareyeur NOM m p 0.00 0.41 0.00 0.07 +mareyeuse mareyeur NOM f s 0.00 0.41 0.00 0.07 +mareyeuses mareyeur NOM f p 0.00 0.41 0.00 0.07 +margarine margarine NOM f s 0.64 1.35 0.64 1.35 +margaux margaux NOM m 0.04 0.14 0.04 0.14 +margay margay NOM m s 0.00 1.49 0.00 1.49 +marge marge NOM f s 14.40 14.86 14.21 12.64 +margeait marger VER 0.00 0.27 0.00 0.14 ind:imp:3s; +margelle margelle NOM f s 0.04 2.09 0.04 2.03 +margelles margelle NOM f p 0.04 2.09 0.00 0.07 +marger marger VER 0.00 0.27 0.00 0.14 inf; +marges marge NOM f p 14.40 14.86 0.19 2.23 +margeuse margeur NOM f s 0.00 0.07 0.00 0.07 +margina marginer VER 0.00 0.14 0.00 0.07 ind:pas:3s; +marginal marginal ADJ m s 0.59 1.82 0.35 0.47 +marginale marginal ADJ f s 0.59 1.82 0.15 0.54 +marginalement marginalement ADV 0.01 0.00 0.01 0.00 +marginales marginal ADJ f p 0.59 1.82 0.01 0.54 +marginalisant marginaliser VER 0.36 0.41 0.00 0.07 par:pre; +marginaliser marginaliser VER 0.36 0.41 0.25 0.07 inf; +marginaliseraient marginaliser VER 0.36 0.41 0.01 0.00 cnd:pre:3p; +marginalisé marginaliser VER m s 0.36 0.41 0.03 0.00 par:pas; +marginalisée marginaliser VER f s 0.36 0.41 0.05 0.14 par:pas; +marginalisés marginaliser VER m p 0.36 0.41 0.03 0.14 par:pas; +marginalité marginalité NOM f s 0.00 0.34 0.00 0.34 +marginaux marginal NOM m p 0.58 1.49 0.39 0.81 +marginée marginer VER f s 0.00 0.14 0.00 0.07 par:pas; +margis margis NOM m 0.00 0.27 0.00 0.27 +margot margot NOM m s 1.17 0.00 1.17 0.00 +margotait margoter VER 0.00 0.07 0.00 0.07 ind:imp:3s; +margotin margotin NOM m s 0.00 0.14 0.00 0.07 +margotins margotin NOM m p 0.00 0.14 0.00 0.07 +margoton margoton NOM f s 0.00 0.07 0.00 0.07 +margotte margotter VER 0.00 0.27 0.00 0.20 ind:pre:3s; +margottons margotter VER 0.00 0.27 0.00 0.07 imp:pre:1p; +margouillat margouillat NOM m s 0.00 0.74 0.00 0.41 +margouillats margouillat NOM m p 0.00 0.74 0.00 0.34 +margouillis margouillis NOM m 0.00 0.07 0.00 0.07 +margoulette margoulette NOM f s 0.00 0.34 0.00 0.34 +margoulin margoulin NOM m s 0.04 0.61 0.03 0.34 +margoulins margoulin NOM m p 0.04 0.61 0.01 0.27 +margrave margrave NOM m s 0.60 0.00 0.60 0.00 +margraviat margraviat NOM m s 0.00 0.07 0.00 0.07 +marguerite marguerite NOM f s 1.58 2.97 0.25 0.54 +marguerites marguerite NOM f p 1.58 2.97 1.33 2.43 +marguillier marguillier NOM m s 0.03 0.41 0.03 0.34 +marguilliers marguillier NOM m p 0.03 0.41 0.00 0.07 +mari mari NOM m s 264.15 124.26 254.92 118.38 +maria marier VER 220.51 65.07 19.11 3.24 ind:pas:3s; +mariable mariable ADJ m s 0.01 0.14 0.01 0.14 +mariachi mariachi NOM m s 0.90 0.00 0.63 0.00 +mariachis mariachi NOM m p 0.90 0.00 0.28 0.00 +mariage mariage NOM m s 167.39 78.72 158.58 70.68 +mariages mariage NOM m p 167.39 78.72 8.81 8.04 +mariai marier VER 220.51 65.07 0.00 0.07 ind:pas:1s; +mariaient marier VER 220.51 65.07 0.08 0.95 ind:imp:3p; +mariais marier VER 220.51 65.07 0.55 0.14 ind:imp:1s;ind:imp:2s; +mariait marier VER 220.51 65.07 1.08 2.03 ind:imp:3s; +mariales marial ADJ f p 0.00 0.20 0.00 0.20 +marianne marian NOM f s 0.27 0.00 0.27 0.00 +mariant marier VER 220.51 65.07 0.64 0.88 par:pre; +marias marier VER 220.51 65.07 0.00 0.07 ind:pas:2s; +mariassent marier VER 220.51 65.07 0.00 0.07 sub:imp:3p; +marida marida NOM s 0.00 0.81 0.00 0.74 +maridas marida NOM p 0.00 0.81 0.00 0.07 +marie_couche_toi_là marie_couche_toi_là NOM f 0.06 0.27 0.06 0.27 +marie_jeanne marie_jeanne NOM f s 0.26 0.07 0.26 0.07 +marie_louise marie_louise NOM f s 0.00 0.07 0.00 0.07 +marie_salope marie_salope NOM f s 0.00 0.07 0.00 0.07 +marie marier VER 220.51 65.07 22.00 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +marient marier VER 220.51 65.07 4.04 1.42 ind:pre:3p; +marier marier VER 220.51 65.07 63.88 16.49 ind:pre:2p;inf; +mariera marier VER 220.51 65.07 2.80 0.81 ind:fut:3s; +marierai marier VER 220.51 65.07 2.58 0.61 ind:fut:1s; +marieraient marier VER 220.51 65.07 0.00 0.54 cnd:pre:3p; +marierais marier VER 220.51 65.07 0.80 0.20 cnd:pre:1s;cnd:pre:2s; +marierait marier VER 220.51 65.07 0.66 0.74 cnd:pre:3s; +marieras marier VER 220.51 65.07 1.11 0.41 ind:fut:2s; +marierez marier VER 220.51 65.07 0.49 0.47 ind:fut:2p; +marieriez marier VER 220.51 65.07 0.01 0.00 cnd:pre:2p; +marierions marier VER 220.51 65.07 0.02 0.14 cnd:pre:1p; +marierons marier VER 220.51 65.07 1.20 0.27 ind:fut:1p; +marieront marier VER 220.51 65.07 0.47 0.14 ind:fut:3p; +maries marier VER 220.51 65.07 4.27 0.54 ind:pre:2s;sub:pre:2s; +marieur marieur NOM m s 0.69 0.27 0.43 0.00 +marieuse marieur NOM f s 0.69 0.27 0.27 0.20 +marieuses marieuse NOM f p 0.40 0.00 0.40 0.00 +mariez marier VER 220.51 65.07 2.44 0.41 imp:pre:2p;ind:pre:2p; +marigot marigot NOM m s 0.16 1.69 0.16 1.15 +marigots marigot NOM m p 0.16 1.69 0.00 0.54 +marihuana marihuana NOM f s 0.07 0.14 0.07 0.14 +mariions marier VER 220.51 65.07 0.00 0.14 ind:imp:1p; +marijuana marijuana NOM f s 3.77 0.41 3.77 0.41 +marimba marimba NOM m s 0.02 0.00 0.02 0.00 +marin_pêcheur marin_pêcheur NOM m s 0.01 0.14 0.01 0.14 +marin marin NOM m s 13.96 33.38 8.48 15.34 +marina marina NOM f s 1.16 0.14 1.14 0.07 +marinade marinade NOM f s 1.46 0.27 1.44 0.20 +marinades marinade NOM f p 1.46 0.27 0.03 0.07 +marinage marinage NOM m s 0.00 0.07 0.00 0.07 +marinaient mariner VER 1.42 2.84 0.00 0.14 ind:imp:3p; +marinait mariner VER 1.42 2.84 0.00 0.14 ind:imp:3s; +marinant mariner VER 1.42 2.84 0.00 0.34 par:pre; +marinas marina NOM f p 1.16 0.14 0.02 0.07 +marine marine ADJ s 7.26 20.34 5.90 17.97 +mariner mariner VER 1.42 2.84 0.84 1.15 inf; +marinera mariner VER 1.42 2.84 0.00 0.07 ind:fut:3s; +marines marine ADJ p 7.26 20.34 1.36 2.36 +maringoins maringoin NOM m p 0.00 0.07 0.00 0.07 +marinier marinier NOM m s 0.06 1.49 0.04 0.41 +mariniers marinier NOM m p 0.06 1.49 0.02 1.08 +marinière marinière NOM f s 0.26 0.54 0.23 0.41 +marinières marinière NOM f p 0.26 0.54 0.02 0.14 +marins marin NOM m p 13.96 33.38 5.48 18.04 +mariné mariné ADJ m s 0.34 0.47 0.18 0.20 +marinée mariner VER f s 1.42 2.84 0.13 0.00 par:pas; +marinées mariner VER f p 1.42 2.84 0.12 0.07 par:pas; +marinés mariné ADJ m p 0.34 0.47 0.16 0.27 +mariol mariol NOM s 0.04 0.00 0.04 0.00 +mariole mariole NOM s 0.68 0.81 0.58 0.54 +marioles mariole NOM p 0.68 0.81 0.10 0.27 +mariolle mariolle NOM s 0.99 0.61 0.59 0.41 +mariolles mariolle NOM p 0.99 0.61 0.40 0.20 +marionnette marionnette NOM f s 5.11 5.95 2.87 2.77 +marionnettes marionnette NOM f p 5.11 5.95 2.24 3.18 +marionnettiste marionnettiste NOM s 0.36 0.07 0.36 0.07 +marions marier VER 220.51 65.07 2.53 0.07 imp:pre:1p;ind:pre:1p; +mariât marier VER 220.51 65.07 0.00 0.07 sub:imp:3s; +maris mari NOM m p 264.15 124.26 9.23 5.88 +maristes mariste NOM p 0.00 0.14 0.00 0.14 +marital marital ADJ m s 0.59 0.14 0.14 0.00 +maritale marital ADJ f s 0.59 0.14 0.31 0.00 +maritalement maritalement ADV 0.03 0.20 0.03 0.20 +maritales marital ADJ f p 0.59 0.14 0.01 0.07 +maritaux marital ADJ m p 0.59 0.14 0.13 0.07 +marièrent marier VER 220.51 65.07 0.42 0.88 ind:pas:3p; +maritime maritime ADJ s 2.37 6.22 1.74 3.58 +maritimes maritime ADJ p 2.37 6.22 0.63 2.64 +maritorne maritorne NOM f s 0.00 0.27 0.00 0.27 +marié marier VER m s 220.51 65.07 35.76 10.47 par:pas; +mariée marier VER f s 220.51 65.07 30.55 10.74 ind:imp:3p;par:pas; +mariées marier VER f p 220.51 65.07 1.50 0.61 par:pas; +mariés marier VER m p 220.51 65.07 21.53 5.20 par:pas; +marivaudage marivaudage NOM m s 0.03 0.41 0.03 0.20 +marivaudages marivaudage NOM m p 0.03 0.41 0.00 0.20 +marivaudant marivauder VER 0.02 0.07 0.00 0.07 par:pre; +marivauder marivauder VER 0.02 0.07 0.02 0.00 inf; +marjolaine marjolaine NOM f s 0.24 0.61 0.24 0.61 +mark mark NOM m s 13.24 1.76 1.31 0.61 +marker marker NOM m s 0.08 0.14 0.08 0.14 +marketing marketing NOM m s 1.88 0.88 1.88 0.81 +marketings marketing NOM m p 1.88 0.88 0.00 0.07 +marks mark NOM m p 13.24 1.76 11.93 1.15 +marle marle ADJ m s 0.04 1.55 0.00 1.35 +marles marle ADJ p 0.04 1.55 0.04 0.20 +marlin marlin NOM m s 0.50 0.00 0.50 0.00 +marlou marlou NOM m s 0.24 0.88 0.14 0.54 +marloupin marloupin NOM m s 0.00 0.34 0.00 0.14 +marloupinerie marloupinerie NOM f s 0.00 0.27 0.00 0.20 +marloupineries marloupinerie NOM f p 0.00 0.27 0.00 0.07 +marloupins marloupin NOM m p 0.00 0.34 0.00 0.20 +marlous marlou NOM m p 0.24 0.88 0.10 0.34 +marmaille marmaille NOM f s 0.30 4.26 0.30 4.12 +marmailles marmaille NOM f p 0.30 4.26 0.00 0.14 +marmelade marmelade NOM f s 0.73 2.91 0.73 2.77 +marmelades marmelade NOM f p 0.73 2.91 0.00 0.14 +marmitage marmitage NOM m s 0.00 0.47 0.00 0.41 +marmitages marmitage NOM m p 0.00 0.47 0.00 0.07 +marmite marmite NOM f s 3.21 14.66 2.35 8.38 +marmiter marmiter VER 0.14 0.07 0.14 0.00 inf; +marmites marmite NOM f p 3.21 14.66 0.86 6.28 +marmiteuse marmiteux ADJ f s 0.14 0.14 0.00 0.07 +marmiteux marmiteux ADJ m 0.14 0.14 0.14 0.07 +marmiton marmiton NOM m s 0.13 1.15 0.12 0.41 +marmitons marmiton NOM m p 0.13 1.15 0.01 0.74 +marmitées marmitée NOM f p 0.00 0.14 0.00 0.14 +marmités marmiter VER m p 0.14 0.07 0.00 0.07 par:pas; +marmonna marmonner VER 1.74 13.51 0.14 3.04 ind:pas:3s; +marmonnaient marmonner VER 1.74 13.51 0.00 0.27 ind:imp:3p; +marmonnait marmonner VER 1.74 13.51 0.15 2.43 ind:imp:3s; +marmonnant marmonner VER 1.74 13.51 0.07 1.89 par:pre; +marmonne marmonner VER 1.74 13.51 0.56 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +marmonnement marmonnement NOM m s 0.32 0.61 0.29 0.61 +marmonnements marmonnement NOM m p 0.32 0.61 0.02 0.00 +marmonnent marmonner VER 1.74 13.51 0.03 0.20 ind:pre:3p; +marmonner marmonner VER 1.74 13.51 0.31 1.35 inf; +marmonnes marmonner VER 1.74 13.51 0.20 0.07 ind:pre:2s; +marmonnez marmonner VER 1.74 13.51 0.11 0.00 imp:pre:2p;ind:pre:2p; +marmonniez marmonner VER 1.74 13.51 0.01 0.00 ind:imp:2p; +marmonné marmonner VER m s 1.74 13.51 0.12 1.28 par:pas; +marmonnée marmonner VER f s 1.74 13.51 0.01 0.07 par:pas; +marmonnés marmonner VER m p 1.74 13.51 0.02 0.00 par:pas; +marmoréen marmoréen ADJ m s 0.01 0.61 0.00 0.27 +marmoréenne marmoréen ADJ f s 0.01 0.61 0.01 0.20 +marmoréens marmoréen ADJ m p 0.01 0.61 0.00 0.14 +marmot marmot NOM m s 1.52 2.36 1.21 1.42 +marmots marmot NOM m p 1.52 2.36 0.32 0.95 +marmotta marmotter VER 0.34 1.28 0.10 0.47 ind:pas:3s; +marmottages marmottage NOM m p 0.00 0.07 0.00 0.07 +marmottait marmotter VER 0.34 1.28 0.00 0.20 ind:imp:3s; +marmottant marmotter VER 0.34 1.28 0.00 0.20 par:pre; +marmotte marmotte NOM f s 3.15 1.22 2.84 0.74 +marmottement marmottement NOM m s 0.00 0.07 0.00 0.07 +marmotter marmotter VER 0.34 1.28 0.00 0.27 inf; +marmottes marmotte NOM f p 3.15 1.22 0.32 0.47 +marmotté marmotter VER m s 0.34 1.28 0.00 0.07 par:pas; +marmouset marmouset NOM m s 0.10 0.07 0.10 0.00 +marmousets marmouset NOM m p 0.10 0.07 0.00 0.07 +marna marner VER 0.10 1.15 0.05 0.00 ind:pas:3s; +marnaise marnais ADJ f s 0.00 0.07 0.00 0.07 +marnait marner VER 0.10 1.15 0.00 0.07 ind:imp:3s; +marne marne NOM f s 0.03 2.84 0.03 0.34 +marnent marner VER 0.10 1.15 0.00 0.14 ind:pre:3p; +marner marner VER 0.10 1.15 0.05 0.61 inf; +marnes marne NOM f p 0.03 2.84 0.00 2.50 +marneuse marneux ADJ f s 0.00 0.20 0.00 0.20 +marnières marnière NOM f p 0.00 0.07 0.00 0.07 +marné marner VER m s 0.10 1.15 0.00 0.14 par:pas; +marocain marocain NOM m s 2.28 2.09 1.06 1.49 +marocaine marocain ADJ f s 0.54 5.14 0.19 2.03 +marocaines marocain NOM f p 2.28 2.09 0.14 0.07 +marocains marocain NOM m p 2.28 2.09 1.07 0.47 +maronite maronite ADJ s 0.00 0.20 0.00 0.14 +maronites maronite NOM p 0.00 0.14 0.00 0.14 +maronner maronner VER 0.01 0.07 0.01 0.00 inf; +maronné maronner VER m s 0.01 0.07 0.00 0.07 par:pas; +maroquin maroquin NOM m s 0.11 1.76 0.11 1.69 +maroquinerie maroquinerie NOM f s 0.05 1.15 0.05 1.01 +maroquineries maroquinerie NOM f p 0.05 1.15 0.00 0.14 +maroquinier maroquinier NOM m s 0.01 0.61 0.01 0.47 +maroquiniers maroquinier NOM m p 0.01 0.61 0.00 0.14 +maroquins maroquin NOM m p 0.11 1.76 0.00 0.07 +marâtre marâtre NOM f s 0.38 1.22 0.37 1.08 +marâtres marâtre NOM f p 0.38 1.22 0.01 0.14 +marotte marotte NOM f s 0.26 2.09 0.20 1.55 +marottes marotte NOM f p 0.26 2.09 0.05 0.54 +marouette marouette NOM f s 0.01 0.00 0.01 0.00 +maroufle maroufle NOM f s 0.14 0.41 0.14 0.27 +maroufler maroufler VER 0.00 0.07 0.00 0.07 inf; +maroufles maroufle NOM f p 0.14 0.41 0.00 0.14 +marqua marquer VER 43.78 101.08 0.32 8.04 ind:pas:3s; +marquage marquage NOM m s 0.65 0.14 0.65 0.14 +marquai marquer VER 43.78 101.08 0.00 0.74 ind:pas:1s; +marquaient marquer VER 43.78 101.08 0.12 4.39 ind:imp:3p; +marquais marquer VER 43.78 101.08 0.06 0.41 ind:imp:1s;ind:imp:2s; +marquait marquer VER 43.78 101.08 0.56 12.03 ind:imp:3s; +marquant marquer VER 43.78 101.08 0.30 5.20 par:pre; +marquante marquant ADJ f s 0.56 1.49 0.04 0.14 +marquantes marquant ADJ f p 0.56 1.49 0.01 0.07 +marquants marquant ADJ m p 0.56 1.49 0.29 0.61 +marque_page marque_page NOM m s 0.25 0.14 0.24 0.07 +marque_page marque_page NOM m p 0.25 0.14 0.01 0.07 +marque marque NOM f s 40.29 37.70 23.91 26.89 +marquent marquer VER 43.78 101.08 0.86 2.77 ind:pre:3p; +marquer marquer VER 43.78 101.08 7.69 16.82 inf; +marquera marquer VER 43.78 101.08 0.85 0.74 ind:fut:3s; +marquerai marquer VER 43.78 101.08 0.42 0.07 ind:fut:1s; +marqueraient marquer VER 43.78 101.08 0.11 0.14 cnd:pre:3p; +marquerait marquer VER 43.78 101.08 0.07 0.47 cnd:pre:3s; +marqueras marquer VER 43.78 101.08 0.03 0.07 ind:fut:2s; +marquerez marquer VER 43.78 101.08 0.01 0.14 ind:fut:2p; +marquerons marquer VER 43.78 101.08 0.01 0.00 ind:fut:1p; +marqueront marquer VER 43.78 101.08 0.08 0.14 ind:fut:3p; +marques marque NOM f p 40.29 37.70 16.39 10.81 +marqueterie marqueterie NOM f s 0.11 2.09 0.11 1.62 +marqueteries marqueterie NOM f p 0.11 2.09 0.00 0.47 +marquette marqueter VER 0.02 0.27 0.01 0.07 imp:pre:2s;ind:pre:3s; +marqueté marqueter VER m s 0.02 0.27 0.01 0.07 par:pas; +marquetées marqueter VER f p 0.02 0.27 0.00 0.07 par:pas; +marquetés marqueter VER m p 0.02 0.27 0.00 0.07 par:pas; +marqueur marqueur NOM m s 2.02 0.47 1.25 0.47 +marqueurs marqueur NOM m p 2.02 0.47 0.77 0.00 +marquez marquer VER 43.78 101.08 1.98 0.41 imp:pre:2p;ind:pre:2p; +marquiez marquer VER 43.78 101.08 0.28 0.07 ind:imp:2p; +marquions marquer VER 43.78 101.08 0.00 0.07 ind:imp:1p; +marquis marquis NOM m 16.69 18.31 14.98 9.86 +marquisat marquisat NOM m s 0.00 0.27 0.00 0.20 +marquisats marquisat NOM m p 0.00 0.27 0.00 0.07 +marquise marquis NOM f s 16.69 18.31 1.64 7.36 +marquises marquis NOM f p 16.69 18.31 0.07 1.08 +marquisien marquisien ADJ m s 0.00 0.20 0.00 0.07 +marquisiens marquisien ADJ m p 0.00 0.20 0.00 0.14 +marquons marquer VER 43.78 101.08 0.04 0.14 imp:pre:1p;ind:pre:1p; +marquât marquer VER 43.78 101.08 0.00 0.41 sub:imp:3s; +marquèrent marquer VER 43.78 101.08 0.01 0.68 ind:pas:3p; +marqué marquer VER m s 43.78 101.08 15.81 20.07 par:pas; +marquée marquer VER f s 43.78 101.08 2.84 9.26 par:pas; +marquées marquer VER f p 43.78 101.08 0.51 2.50 par:pas; +marqués marquer VER m p 43.78 101.08 1.68 4.32 par:pas; +marra marrer VER 16.13 32.57 0.10 0.34 ind:pas:3s; +marrade marrade NOM f s 0.01 0.68 0.01 0.68 +marraient marrer VER 16.13 32.57 0.14 0.54 ind:imp:3p; +marraine marraine NOM f s 2.74 8.78 2.52 8.38 +marraines marraine NOM f p 2.74 8.78 0.22 0.41 +marrais marrer VER 16.13 32.57 0.14 0.34 ind:imp:1s; +marrait marrer VER 16.13 32.57 0.27 2.30 ind:imp:3s; +marrane marrane NOM m s 0.00 0.27 0.00 0.14 +marranes marrane NOM m p 0.00 0.27 0.00 0.14 +marrant marrant ADJ m s 35.70 12.36 30.41 9.19 +marrante marrant ADJ f s 35.70 12.36 3.15 1.42 +marrantes marrant ADJ f p 35.70 12.36 0.81 0.54 +marrants marrant ADJ m p 35.70 12.36 1.33 1.22 +marre marre ADV 57.48 20.68 57.48 20.68 +marrent marrer VER 16.13 32.57 0.54 1.76 ind:pre:3p; +marrer marrer VER 16.13 32.57 6.45 12.50 inf; +marrera marrer VER 16.13 32.57 0.22 0.07 ind:fut:3s; +marrerais marrer VER 16.13 32.57 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +marrerait marrer VER 16.13 32.57 0.00 0.14 cnd:pre:3s; +marres marrer VER 16.13 32.57 1.12 0.34 ind:pre:2s; +marrez marrer VER 16.13 32.57 0.47 0.41 imp:pre:2p;ind:pre:2p; +marri marri ADJ m s 0.52 0.41 0.03 0.41 +marrie marri ADJ f s 0.52 0.41 0.45 0.00 +marrions marrer VER 16.13 32.57 0.05 0.00 ind:imp:1p; +marris marri ADJ m p 0.52 0.41 0.04 0.00 +marron marron ADJ 5.33 13.72 5.33 13.72 +marronnais marronner VER 0.00 0.41 0.00 0.07 ind:imp:2s; +marronnasse marronnasse ADJ s 0.00 0.07 0.00 0.07 +marronner marronner VER 0.00 0.41 0.00 0.20 inf; +marronnera marronner VER 0.00 0.41 0.00 0.07 ind:fut:3s; +marronnier marronnier NOM m s 0.61 9.39 0.46 2.57 +marronniers marronnier NOM m p 0.61 9.39 0.15 6.82 +marronné marronner VER m s 0.00 0.41 0.00 0.07 par:pas; +marrons marron NOM m p 4.89 7.36 2.80 3.92 +marré marrer VER m s 16.13 32.57 0.72 1.76 par:pas; +marrée marrer VER f s 16.13 32.57 0.15 0.07 par:pas; +marrés marrer VER m p 16.13 32.57 0.18 0.61 par:pas; +mars mars NOM m 9.75 31.42 9.75 31.42 +marsala marsala NOM m s 0.38 0.14 0.38 0.14 +marsaules marsaule NOM m p 0.00 0.27 0.00 0.27 +marseillais marseillais NOM m 1.27 1.82 1.27 0.81 +marseillaise marseillais NOM f s 1.27 1.82 0.00 1.01 +marseillaises marseillais ADJ f p 1.22 1.35 0.00 0.34 +marshal marshal NOM m s 3.11 0.00 2.74 0.00 +marshals marshal NOM m p 3.11 0.00 0.37 0.00 +marsouin marsouin NOM m s 0.11 0.68 0.08 0.47 +marsouins marsouin NOM m p 0.11 0.68 0.03 0.20 +marsupial marsupial NOM m s 0.10 0.00 0.04 0.00 +marsupiaux marsupial NOM m p 0.10 0.00 0.06 0.00 +marsupilami marsupilami NOM m s 0.00 0.20 0.00 0.14 +marsupilamis marsupilami NOM m p 0.00 0.20 0.00 0.07 +martagon martagon NOM m s 0.00 0.07 0.00 0.07 +marteau_pilon marteau_pilon NOM m s 0.07 0.41 0.07 0.34 +marteau_piqueur marteau_piqueur NOM m s 0.42 0.07 0.42 0.07 +marteau marteau NOM m s 12.63 15.61 11.84 13.31 +marteau_pilon marteau_pilon NOM m p 0.07 0.41 0.00 0.07 +marteaux marteau NOM m p 12.63 15.61 0.79 2.30 +martel martel NOM m s 0.05 0.47 0.05 0.34 +martela marteler VER 1.45 10.41 0.00 0.68 ind:pas:3s; +martelage martelage NOM m s 0.00 0.14 0.00 0.14 +martelai marteler VER 1.45 10.41 0.00 0.07 ind:pas:1s; +martelaient marteler VER 1.45 10.41 0.02 0.74 ind:imp:3p; +martelait marteler VER 1.45 10.41 0.01 1.15 ind:imp:3s; +martelant marteler VER 1.45 10.41 0.29 2.30 par:pre; +marteler marteler VER 1.45 10.41 0.41 1.35 inf; +martelet martelet NOM m s 0.00 0.07 0.00 0.07 +marteleur marteleur NOM m s 0.04 0.00 0.04 0.00 +martelez marteler VER 1.45 10.41 0.01 0.00 ind:pre:2p; +martels martel NOM m p 0.05 0.47 0.00 0.14 +martelèrent marteler VER 1.45 10.41 0.00 0.07 ind:pas:3p; +martelé marteler VER m s 1.45 10.41 0.16 1.42 par:pas; +martelée marteler VER f s 1.45 10.41 0.02 0.54 par:pas; +martelées marteler VER f p 1.45 10.41 0.00 0.27 par:pas; +martelés marteler VER m p 1.45 10.41 0.00 0.47 par:pas; +martial martial ADJ m s 8.02 4.26 0.85 1.76 +martiale martial ADJ f s 8.02 4.26 5.63 1.22 +martiales martial ADJ f p 8.02 4.26 0.01 0.34 +martialités martialité NOM f p 0.00 0.07 0.00 0.07 +martiaux martial ADJ m p 8.02 4.26 1.53 0.95 +martien martien NOM m s 1.96 1.49 0.59 0.61 +martienne martienne NOM f s 0.51 0.34 0.35 0.27 +martiennes martienne NOM f p 0.51 0.34 0.16 0.07 +martiens martien NOM m p 1.96 1.49 1.37 0.88 +martin_pêcheur martin_pêcheur NOM m s 0.02 0.41 0.01 0.27 +martin martin NOM m s 1.69 0.07 0.08 0.00 +martine martiner VER 2.56 0.47 0.00 0.14 ind:pre:3s; +martinet martinet NOM m s 0.26 2.64 0.24 1.15 +martinets martinet NOM m p 0.26 2.64 0.02 1.49 +martinez martiner VER 2.56 0.47 2.56 0.34 imp:pre:2p;ind:pre:2p; +martingale martingale NOM f s 0.12 1.28 0.12 1.08 +martingales martingale NOM f p 0.12 1.28 0.00 0.20 +martini martini NOM m s 3.85 2.23 2.76 1.89 +martiniquais martiniquais NOM m 0.03 1.69 0.02 0.68 +martiniquaise martiniquais NOM f s 0.03 1.69 0.01 0.95 +martiniquaises martiniquais NOM f p 0.03 1.69 0.00 0.07 +martinis martini NOM m p 3.85 2.23 1.09 0.34 +martin_pêcheur martin_pêcheur NOM m p 0.02 0.41 0.01 0.14 +martins martin NOM m p 1.69 0.07 1.62 0.07 +martre martre NOM f s 0.53 1.22 0.16 1.01 +martres martre NOM f p 0.53 1.22 0.37 0.20 +martèle marteler VER 1.45 10.41 0.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +martèlement martèlement NOM m s 0.43 3.65 0.41 3.51 +martèlements martèlement NOM m p 0.43 3.65 0.02 0.14 +martèlent marteler VER 1.45 10.41 0.32 0.27 ind:pre:3p; +martèlera marteler VER 1.45 10.41 0.00 0.14 ind:fut:3s; +martyr martyr NOM m s 5.50 6.76 3.68 3.24 +martyre martyre NOM s 3.75 6.35 3.32 6.08 +martyres martyre NOM p 3.75 6.35 0.42 0.27 +martyrisaient martyriser VER 0.94 3.38 0.00 0.07 ind:imp:3p; +martyrisait martyriser VER 0.94 3.38 0.01 0.47 ind:imp:3s; +martyrisant martyriser VER 0.94 3.38 0.00 0.14 par:pre; +martyrise martyriser VER 0.94 3.38 0.24 0.07 ind:pre:3s; +martyrisent martyriser VER 0.94 3.38 0.02 0.07 ind:pre:3p; +martyriser martyriser VER 0.94 3.38 0.22 0.74 inf; +martyriserait martyriser VER 0.94 3.38 0.01 0.00 cnd:pre:3s; +martyrisé martyriser VER m s 0.94 3.38 0.24 0.68 par:pas; +martyrisée martyriser VER f s 0.94 3.38 0.04 0.74 par:pas; +martyrisées martyriser VER f p 0.94 3.38 0.01 0.07 par:pas; +martyrisés martyriser VER m p 0.94 3.38 0.15 0.34 par:pas; +martyrologe martyrologe NOM m s 0.00 0.20 0.00 0.14 +martyrologes martyrologe NOM m p 0.00 0.20 0.00 0.07 +martyrs martyr NOM m p 5.50 6.76 1.82 3.51 +marécage marécage NOM m s 3.18 6.15 2.31 2.77 +marécages marécage NOM m p 3.18 6.15 0.87 3.38 +marécageuse marécageux ADJ f s 0.47 1.62 0.02 0.41 +marécageuses marécageux ADJ f p 0.47 1.62 0.01 0.34 +marécageux marécageux ADJ m 0.47 1.62 0.44 0.88 +maréchal_ferrant maréchal_ferrant NOM m s 0.22 1.96 0.22 1.96 +maréchal maréchal NOM m s 2.84 41.69 2.67 38.24 +maréchalat maréchalat NOM m s 0.00 0.07 0.00 0.07 +maréchale maréchal NOM f s 2.84 41.69 0.14 0.07 +maréchalerie maréchalerie NOM f s 0.00 0.27 0.00 0.27 +maréchalistes maréchaliste NOM p 0.00 0.07 0.00 0.07 +maréchaussée maréchaussée NOM f s 0.00 0.88 0.00 0.88 +maréchaux_ferrants maréchaux_ferrants NOM m p 0.00 0.41 0.00 0.41 +maréchaux maréchal NOM m p 2.84 41.69 0.04 3.38 +marée marée NOM f s 6.31 26.89 5.21 21.28 +marées marée NOM f p 6.31 26.89 1.10 5.61 +marémotrice marémoteur ADJ f s 0.01 0.00 0.01 0.00 +marxisme_léninisme marxisme_léninisme NOM m s 0.50 0.68 0.50 0.68 +marxisme marxisme NOM m s 0.94 3.92 0.94 3.92 +marxiste_léniniste marxiste_léniniste ADJ s 0.41 0.41 0.27 0.41 +marxiste marxiste ADJ s 0.91 2.84 0.67 2.36 +marxiste_léniniste marxiste_léniniste ADJ p 0.41 0.41 0.14 0.00 +marxistes marxiste ADJ p 0.91 2.84 0.24 0.47 +mary mary NOM m s 0.56 0.20 0.56 0.20 +maryland maryland NOM m s 0.04 0.14 0.04 0.14 +mas mas NOM m 2.21 5.07 2.21 5.07 +masaï masaï NOM s 0.01 3.99 0.01 3.99 +mascara mascara NOM m s 1.15 0.47 1.15 0.47 +mascarade mascarade NOM f s 2.71 2.03 2.58 1.76 +mascarades mascarade NOM f p 2.71 2.03 0.13 0.27 +mascaret mascaret NOM m s 0.00 0.54 0.00 0.54 +mascaron mascaron NOM m s 0.00 0.14 0.00 0.07 +mascarons mascaron NOM m p 0.00 0.14 0.00 0.07 +mascarpone mascarpone NOM m s 0.11 0.00 0.11 0.00 +mascotte mascotte NOM f s 2.36 0.88 1.91 0.74 +mascottes mascotte NOM f p 2.36 0.88 0.45 0.14 +masculin masculin ADJ m s 8.14 10.14 4.49 4.05 +masculine masculin ADJ f s 8.14 10.14 2.66 3.92 +masculines masculin ADJ f p 8.14 10.14 0.40 0.95 +masculiniser masculiniser VER 0.02 0.07 0.01 0.00 inf; +masculinisée masculiniser VER f s 0.02 0.07 0.01 0.07 par:pas; +masculinité masculinité NOM f s 0.21 0.00 0.21 0.00 +masculins masculin ADJ m p 8.14 10.14 0.59 1.22 +maser maser NOM m s 0.01 0.00 0.01 0.00 +maskinongé maskinongé NOM m s 0.00 0.07 0.00 0.07 +maso maso NOM s 0.38 0.34 0.24 0.34 +masochisme masochisme NOM m s 0.42 1.01 0.42 1.01 +masochiste masochiste ADJ s 0.34 0.81 0.30 0.68 +masochistes masochiste NOM p 0.29 0.47 0.04 0.07 +masos maso ADJ p 0.35 0.88 0.15 0.00 +masqua masquer VER 3.74 19.12 0.01 0.27 ind:pas:3s; +masquage masquage NOM m s 0.02 0.00 0.01 0.00 +masquages masquage NOM m p 0.02 0.00 0.01 0.00 +masquaient masquer VER 3.74 19.12 0.04 1.22 ind:imp:3p; +masquait masquer VER 3.74 19.12 0.08 3.11 ind:imp:3s; +masquant masquer VER 3.74 19.12 0.05 1.82 par:pre; +masque_espion masque_espion NOM m s 0.01 0.00 0.01 0.00 +masque masque NOM m s 29.18 38.65 23.16 28.45 +masquent masquer VER 3.74 19.12 0.09 0.68 ind:pre:3p; +masquer masquer VER 3.74 19.12 1.39 4.32 inf; +masqueraient masquer VER 3.74 19.12 0.00 0.07 cnd:pre:3p; +masques masque NOM m p 29.18 38.65 6.02 10.20 +masquons masquer VER 3.74 19.12 0.03 0.00 ind:pre:1p; +masqué masqué ADJ m s 3.26 3.85 2.42 1.69 +masquée masquer VER f s 3.74 19.12 0.15 1.42 par:pas; +masquées masquer VER f p 3.74 19.12 0.02 0.47 par:pas; +masqués masqué ADJ m p 3.26 3.85 0.73 0.68 +mass_media mass_media NOM m p 0.17 0.07 0.17 0.07 +massa masser VER 5.69 12.84 0.00 1.28 ind:pas:3s; +massacra massacrer VER 17.01 14.66 0.05 0.14 ind:pas:3s; +massacraient massacrer VER 17.01 14.66 0.01 0.47 ind:imp:3p; +massacrais massacrer VER 17.01 14.66 0.01 0.00 ind:imp:1s; +massacrait massacrer VER 17.01 14.66 0.05 0.74 ind:imp:3s; +massacrant massacrer VER 17.01 14.66 0.33 0.47 par:pre; +massacrante massacrant ADJ f s 0.45 0.34 0.40 0.34 +massacre massacre NOM m s 13.71 16.49 11.71 10.27 +massacrent massacrer VER 17.01 14.66 0.36 0.20 ind:pre:3p;sub:pre:3p; +massacrer massacrer VER 17.01 14.66 5.73 4.12 inf; +massacrera massacrer VER 17.01 14.66 0.27 0.07 ind:fut:3s; +massacrerai massacrer VER 17.01 14.66 0.03 0.07 ind:fut:1s; +massacreraient massacrer VER 17.01 14.66 0.01 0.20 cnd:pre:3p; +massacrerait massacrer VER 17.01 14.66 0.00 0.14 cnd:pre:3s; +massacrerons massacrer VER 17.01 14.66 0.16 0.00 ind:fut:1p; +massacreront massacrer VER 17.01 14.66 0.08 0.07 ind:fut:3p; +massacres massacre NOM m p 13.71 16.49 2.00 6.22 +massacreur massacreur NOM m s 0.06 0.34 0.06 0.20 +massacreurs massacreur NOM m p 0.06 0.34 0.00 0.14 +massacrez massacrer VER 17.01 14.66 0.57 0.07 imp:pre:2p;ind:pre:2p; +massacrons massacrer VER 17.01 14.66 0.20 0.00 imp:pre:1p;ind:pre:1p; +massacrât massacrer VER 17.01 14.66 0.00 0.07 sub:imp:3s; +massacrèrent massacrer VER 17.01 14.66 0.16 0.20 ind:pas:3p; +massacré massacrer VER m s 17.01 14.66 3.17 2.70 par:pas; +massacrée massacrer VER f s 17.01 14.66 0.81 0.81 par:pas; +massacrées massacrer VER f p 17.01 14.66 0.09 0.20 par:pas; +massacrés massacrer VER m p 17.01 14.66 1.92 3.04 par:pas; +massage massage NOM m s 9.57 3.18 7.76 2.23 +massages massage NOM m p 9.57 3.18 1.81 0.95 +massaient masser VER 5.69 12.84 0.00 0.27 ind:imp:3p; +massais masser VER 5.69 12.84 0.08 0.00 ind:imp:1s; +massait masser VER 5.69 12.84 0.02 1.01 ind:imp:3s; +massant masser VER 5.69 12.84 0.04 0.68 par:pre; +masse masse NOM f s 16.73 79.80 11.64 60.54 +massent masser VER 5.69 12.84 0.01 0.41 ind:pre:3p; +massepain massepain NOM m s 0.29 0.34 0.17 0.00 +massepains massepain NOM m p 0.29 0.34 0.12 0.34 +masser masser VER 5.69 12.84 2.98 2.09 inf; +massera masser VER 5.69 12.84 0.21 0.00 ind:fut:3s; +masserai masser VER 5.69 12.84 0.05 0.00 ind:fut:1s; +masseraient masser VER 5.69 12.84 0.00 0.07 cnd:pre:3p; +masserais masser VER 5.69 12.84 0.01 0.00 cnd:pre:2s; +masseras masser VER 5.69 12.84 0.02 0.00 ind:fut:2s; +masserez masser VER 5.69 12.84 0.01 0.00 ind:fut:2p; +masses masse NOM f p 16.73 79.80 5.09 19.26 +massettes massette NOM f p 0.00 0.14 0.00 0.14 +masseur masseur NOM m s 1.91 1.69 0.70 1.15 +masseurs masseur NOM m p 1.91 1.69 0.06 0.14 +masseuse masseur NOM f s 1.91 1.69 1.12 0.27 +masseuses masseur NOM f p 1.91 1.69 0.03 0.14 +massez masser VER 5.69 12.84 0.21 0.00 imp:pre:2p; +massicot massicot NOM m s 0.20 0.61 0.10 0.54 +massicoter massicoter VER 0.00 0.14 0.00 0.07 inf; +massicotier massicotier NOM m s 0.00 0.41 0.00 0.41 +massicots massicot NOM m p 0.20 0.61 0.10 0.07 +massicoté massicoter VER m s 0.00 0.14 0.00 0.07 par:pas; +massif massif ADJ m s 7.16 22.30 2.52 8.92 +massifs massif ADJ m p 7.16 22.30 0.40 2.03 +massive massif ADJ f s 7.16 22.30 3.68 8.38 +massivement massivement ADV 0.21 1.01 0.21 1.01 +massives massif ADJ f p 7.16 22.30 0.55 2.97 +massivité massivité NOM f s 0.00 0.20 0.00 0.20 +massèrent masser VER 5.69 12.84 0.00 0.14 ind:pas:3p; +massé masser VER m s 5.69 12.84 0.40 1.01 par:pas; +massée masser VER f s 5.69 12.84 0.11 1.62 par:pas; +massue massue NOM f s 0.71 2.84 0.57 2.30 +massées masser VER f p 5.69 12.84 0.03 0.47 par:pas; +massues massue NOM f p 0.71 2.84 0.14 0.54 +massés masser VER m p 5.69 12.84 0.05 1.69 par:pas; +mastaba mastaba NOM m s 0.01 0.20 0.01 0.14 +mastabas mastaba NOM m p 0.01 0.20 0.00 0.07 +mastar mastar NOM m s 0.02 0.07 0.02 0.07 +mastard mastard ADJ m s 0.80 0.88 0.80 0.74 +mastards mastard ADJ m p 0.80 0.88 0.00 0.14 +mastectomie mastectomie NOM f s 0.22 0.00 0.22 0.00 +master master NOM m s 3.43 0.07 1.41 0.07 +masters master NOM m p 3.43 0.07 2.02 0.00 +mastic mastic NOM m s 0.26 1.62 0.26 1.62 +masticage masticage NOM m s 0.00 0.07 0.00 0.07 +masticateurs masticateur ADJ m p 0.01 0.07 0.01 0.07 +mastication mastication NOM f s 0.16 0.81 0.16 0.74 +mastications mastication NOM f p 0.16 0.81 0.00 0.07 +mastiff mastiff NOM m s 0.02 0.07 0.02 0.07 +mastiqua mastiquer VER 0.32 4.32 0.00 0.14 ind:pas:3s; +mastiquaient mastiquer VER 0.32 4.32 0.00 0.14 ind:imp:3p; +mastiquais mastiquer VER 0.32 4.32 0.00 0.07 ind:imp:1s; +mastiquait mastiquer VER 0.32 4.32 0.01 0.81 ind:imp:3s; +mastiquant mastiquer VER 0.32 4.32 0.00 0.81 par:pre; +mastique mastiquer VER 0.32 4.32 0.10 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mastiquent mastiquer VER 0.32 4.32 0.01 0.07 ind:pre:3p; +mastiquer mastiquer VER 0.32 4.32 0.14 1.35 inf; +mastiquez mastiquer VER 0.32 4.32 0.01 0.07 imp:pre:2p; +mastiquons mastiquer VER 0.32 4.32 0.00 0.07 ind:pre:1p; +mastiqué mastiquer VER m s 0.32 4.32 0.04 0.14 par:pas; +mastiqués mastiquer VER m p 0.32 4.32 0.01 0.07 par:pas; +mastite mastite NOM f s 0.12 0.00 0.12 0.00 +mastoïde mastoïde ADJ s 0.93 0.07 0.93 0.07 +mastoc mastoc ADJ s 1.28 0.68 1.28 0.68 +mastodonte mastodonte NOM m s 0.17 0.61 0.13 0.47 +mastodontes mastodonte NOM m p 0.17 0.61 0.04 0.14 +mastroquet mastroquet NOM m s 0.16 0.34 0.14 0.20 +mastroquets mastroquet NOM m p 0.16 0.34 0.01 0.14 +mastère mastère NOM m s 0.02 0.00 0.02 0.00 +masturbais masturber VER 3.89 1.69 0.08 0.00 ind:imp:1s;ind:imp:2s; +masturbait masturber VER 3.89 1.69 0.44 0.20 ind:imp:3s; +masturbant masturber VER 3.89 1.69 0.43 0.20 par:pre; +masturbateur masturbateur ADJ m s 0.06 0.00 0.06 0.00 +masturbation masturbation NOM f s 1.57 2.03 1.57 1.89 +masturbations masturbation NOM f p 1.57 2.03 0.00 0.14 +masturbatoire masturbatoire ADJ m s 0.05 0.14 0.02 0.14 +masturbatoires masturbatoire ADJ p 0.05 0.14 0.03 0.00 +masturbe masturber VER 3.89 1.69 1.02 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +masturbent masturber VER 3.89 1.69 0.19 0.14 ind:pre:3p; +masturber masturber VER 3.89 1.69 1.16 0.47 inf; +masturberas masturber VER 3.89 1.69 0.01 0.00 ind:fut:2s; +masturbez masturber VER 3.89 1.69 0.04 0.00 ind:pre:2p; +masturbé masturber VER m s 3.89 1.69 0.18 0.07 par:pas; +masturbée masturber VER f s 3.89 1.69 0.34 0.00 par:pas; +masturbés masturber VER m p 3.89 1.69 0.01 0.07 par:pas; +masure masure NOM f s 0.47 4.32 0.19 2.30 +masures masure NOM f p 0.47 4.32 0.28 2.03 +mat mat NOM m s 6.84 4.32 1.95 0.88 +mat mat NOM m s 6.84 4.32 4.54 3.31 +mata mater VER 17.27 14.93 0.41 0.20 ind:pas:3s; +matador matador NOM m s 1.25 2.03 1.15 1.76 +matadors matador NOM m p 1.25 2.03 0.10 0.27 +mataf mataf NOM m s 0.13 0.61 0.02 0.54 +matafs mataf NOM m p 0.13 0.61 0.11 0.07 +mataient mater VER 17.27 14.93 0.04 0.20 ind:imp:3p; +matais mater VER 17.27 14.93 0.52 0.54 ind:imp:1s;ind:imp:2s; +matait mater VER 17.27 14.93 0.64 0.61 ind:imp:3s; +matamore matamore NOM m s 0.27 0.61 0.14 0.27 +matamores matamore NOM m p 0.27 0.61 0.14 0.34 +matant mater VER 17.27 14.93 0.10 0.41 par:pre; +match match NOM m s 63.48 10.00 58.26 9.39 +matcha matcher VER 0.01 0.07 0.00 0.07 ind:pas:3s; +matche matcher VER 0.01 0.07 0.01 0.00 ind:pre:3s; +matches matche NOM m p 1.42 1.42 1.42 1.42 +matchiche matchiche NOM f s 0.00 0.20 0.00 0.20 +matchs match NOM m p 63.48 10.00 5.22 0.61 +mate mater VER 17.27 14.93 4.55 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +matelas matelas NOM m 8.98 25.95 8.98 25.95 +matelassent matelasser VER 0.00 1.01 0.00 0.07 ind:pre:3p; +matelasser matelasser VER 0.00 1.01 0.00 0.07 inf; +matelassier matelassier NOM m s 0.00 0.41 0.00 0.20 +matelassiers matelassier NOM m p 0.00 0.41 0.00 0.07 +matelassière matelassier NOM f s 0.00 0.41 0.00 0.07 +matelassières matelassier NOM f p 0.00 0.41 0.00 0.07 +matelassé matelassé ADJ m s 0.15 0.47 0.14 0.14 +matelassée matelassé ADJ f s 0.15 0.47 0.01 0.34 +matelassées matelasser VER f p 0.00 1.01 0.00 0.20 par:pas; +matelassés matelasser VER m p 0.00 1.01 0.00 0.07 par:pas; +matelot matelot NOM m s 7.04 6.96 4.78 4.26 +matelote matelote NOM f s 0.04 0.20 0.04 0.20 +matelots matelot NOM m p 7.04 6.96 2.27 2.70 +matent mater VER 17.27 14.93 0.51 0.41 ind:pre:3p; +mater_dolorosa mater_dolorosa NOM f 0.00 0.47 0.00 0.47 +mater mater VER 17.27 14.93 5.91 6.22 inf; +matera mater VER 17.27 14.93 0.16 0.07 ind:fut:3s; +materai mater VER 17.27 14.93 0.17 0.07 ind:fut:1s; +materais mater VER 17.27 14.93 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +materait mater VER 17.27 14.93 0.01 0.14 cnd:pre:3s; +maternage maternage NOM m s 0.04 0.00 0.04 0.00 +maternalisme maternalisme NOM m s 0.00 0.20 0.00 0.20 +maternant materner VER 0.68 0.14 0.01 0.00 par:pre; +maternel maternel ADJ m s 5.21 23.72 2.71 8.99 +maternelle maternel NOM f s 3.17 2.43 3.17 2.30 +maternellement maternellement ADV 0.00 0.54 0.00 0.54 +maternelles maternel ADJ f p 5.21 23.72 0.35 1.76 +maternels maternel ADJ m p 5.21 23.72 0.24 1.82 +materner materner VER 0.68 0.14 0.52 0.14 inf; +maternera materner VER 0.68 0.14 0.11 0.00 ind:fut:3s; +materniser materniser VER 0.30 0.00 0.01 0.00 inf; +maternisé materniser VER m s 0.30 0.00 0.29 0.00 par:pas; +maternité maternité NOM f s 3.49 4.73 3.47 4.05 +maternités maternité NOM f p 3.49 4.73 0.03 0.68 +materné materner VER m s 0.68 0.14 0.04 0.00 par:pas; +materons mater VER 17.27 14.93 0.01 0.14 ind:fut:1p; +materont mater VER 17.27 14.93 0.00 0.07 ind:fut:3p; +mates mater VER 17.27 14.93 1.56 0.41 ind:pre:2s; +mateur mateur NOM m s 0.37 0.27 0.11 0.07 +mateurs mateur NOM m p 0.37 0.27 0.20 0.14 +mateuse mateur NOM f s 0.37 0.27 0.06 0.07 +matez mater VER 17.27 14.93 1.40 0.34 imp:pre:2p;ind:pre:2p; +math math NOM f p 1.55 0.74 1.55 0.74 +matheuse matheux NOM f s 0.10 0.27 0.02 0.07 +matheux matheux NOM m 0.10 0.27 0.08 0.20 +maçon maçon NOM m s 3.79 6.76 3.48 3.31 +maçonnant maçonner VER 0.01 1.69 0.00 0.14 par:pre; +maçonne maçon NOM f s 3.79 6.76 0.00 0.14 +maçonnent maçonner VER 0.01 1.69 0.00 0.07 ind:pre:3p; +maçonner maçonner VER 0.01 1.69 0.00 0.07 inf; +maçonnerie maçonnerie NOM f s 0.69 3.04 0.69 2.97 +maçonneries maçonnerie NOM f p 0.69 3.04 0.00 0.07 +maçonnique maçonnique ADJ s 0.35 0.74 0.32 0.34 +maçonniques maçonnique ADJ p 0.35 0.74 0.04 0.41 +maçonné maçonner VER m s 0.01 1.69 0.00 0.54 par:pas; +maçonnée maçonner VER f s 0.01 1.69 0.00 0.20 par:pas; +maçonnées maçonner VER f p 0.01 1.69 0.00 0.47 par:pas; +maçonnés maçonner VER m p 0.01 1.69 0.01 0.20 par:pas; +maçons maçon NOM m p 3.79 6.76 0.32 3.31 +maths maths NOM f p 10.66 3.38 10.66 3.38 +mathématicien mathématicien NOM m s 0.96 0.68 0.65 0.54 +mathématicienne mathématicien NOM f s 0.96 0.68 0.02 0.07 +mathématiciens mathématicien NOM m p 0.96 0.68 0.28 0.07 +mathématique mathématique ADJ s 1.78 2.36 1.27 1.42 +mathématiquement mathématiquement ADV 0.35 0.34 0.35 0.34 +mathématiques mathématique NOM f p 1.80 7.03 1.64 5.68 +mathématiser mathématiser VER 0.00 0.07 0.00 0.07 inf; +mathurins mathurin NOM m p 0.00 0.07 0.00 0.07 +mathusalems mathusalem NOM m p 0.00 0.07 0.00 0.07 +mati mati ADJ m s 0.18 0.00 0.18 0.00 +matiez mater VER 17.27 14.93 0.03 0.00 ind:imp:2p; +matin matin NOM m s 275.01 396.76 265.03 376.89 +matinal matinal ADJ m s 5.81 10.74 2.56 3.78 +matinale matinal ADJ f s 5.81 10.74 2.51 5.20 +matinalement matinalement ADV 0.00 0.14 0.00 0.14 +matinales matinal ADJ f p 5.81 10.74 0.42 0.95 +matinaux matinal ADJ m p 5.81 10.74 0.32 0.81 +matines mâtine NOM f p 0.57 1.22 0.56 1.01 +matineux matineux ADJ m p 0.00 0.14 0.00 0.14 +matins matin NOM m p 275.01 396.76 9.98 19.86 +matinée matinée NOM f s 12.51 34.05 12.10 32.23 +matinées matinée NOM f p 12.51 34.05 0.41 1.82 +matis matir VER m p 0.20 0.14 0.00 0.07 par:pas; +matisse matir VER 0.20 0.14 0.19 0.07 sub:pre:1s;sub:pre:3s; +matière matière NOM f s 16.99 58.45 14.20 49.80 +matières matière NOM f p 16.99 58.45 2.79 8.65 +matité matité NOM f s 0.00 0.54 0.00 0.54 +matois matois NOM m 0.01 0.07 0.01 0.07 +matoise matois ADJ f s 0.00 0.41 0.00 0.07 +matoiserie matoiserie NOM f s 0.00 0.14 0.00 0.14 +maton maton NOM m s 1.41 6.08 0.50 3.11 +matonne maton NOM f s 1.41 6.08 0.00 0.14 +matonnes maton NOM f p 1.41 6.08 0.00 0.27 +matons maton NOM m p 1.41 6.08 0.91 2.57 +matos matos NOM m 5.72 1.55 5.72 1.55 +matou matou NOM m s 1.21 4.12 1.04 3.18 +matous matou NOM m p 1.21 4.12 0.17 0.95 +matouse matouser VER 0.00 0.20 0.00 0.07 ind:pre:3s; +matouser matouser VER 0.00 0.20 0.00 0.14 inf; +matraqua matraquer VER 0.59 1.49 0.00 0.14 ind:pas:3s; +matraquage matraquage NOM m s 0.14 0.14 0.14 0.07 +matraquages matraquage NOM m p 0.14 0.14 0.00 0.07 +matraquaient matraquer VER 0.59 1.49 0.00 0.07 ind:imp:3p; +matraquais matraquer VER 0.59 1.49 0.00 0.07 ind:imp:1s; +matraquait matraquer VER 0.59 1.49 0.01 0.07 ind:imp:3s; +matraquant matraquer VER 0.59 1.49 0.00 0.20 par:pre; +matraque matraque NOM f s 1.80 5.41 1.41 4.46 +matraquer matraquer VER 0.59 1.49 0.11 0.14 inf; +matraques matraque NOM f p 1.80 5.41 0.39 0.95 +matraqueur matraqueur NOM m s 0.01 0.07 0.00 0.07 +matraqueurs matraqueur NOM m p 0.01 0.07 0.01 0.00 +matraquez matraquer VER 0.59 1.49 0.15 0.07 imp:pre:2p;ind:pre:2p; +matraqué matraquer VER m s 0.59 1.49 0.23 0.34 par:pas; +matraquée matraquer VER f s 0.59 1.49 0.04 0.14 par:pas; +matraqués matraquer VER m p 0.59 1.49 0.00 0.07 par:pas; +matras matras NOM m 0.00 0.47 0.00 0.47 +matriarcal matriarcal ADJ m s 0.01 0.41 0.01 0.14 +matriarcale matriarcal ADJ f s 0.01 0.41 0.00 0.20 +matriarcales matriarcal ADJ f p 0.01 0.41 0.00 0.07 +matriarcat matriarcat NOM m s 0.14 0.74 0.14 0.74 +matriarche matriarche NOM f s 0.09 0.00 0.09 0.00 +matrice matrice NOM f s 2.16 2.03 2.00 1.96 +matrices matrice NOM f p 2.16 2.03 0.16 0.07 +matricide matricide NOM s 0.01 0.00 0.01 0.00 +matriciel matriciel ADJ m s 0.02 0.27 0.01 0.07 +matricielle matriciel ADJ f s 0.02 0.27 0.01 0.07 +matricielles matriciel ADJ f p 0.02 0.27 0.00 0.07 +matriciels matriciel ADJ m p 0.02 0.27 0.00 0.07 +matriculaire matriculaire NOM s 0.00 0.07 0.00 0.07 +matricule matricule NOM s 3.49 3.38 3.15 2.84 +matricules matricule NOM p 3.49 3.38 0.34 0.54 +matrilinéaire matrilinéaire ADJ s 0.00 0.20 0.00 0.14 +matrilinéaires matrilinéaire ADJ f p 0.00 0.20 0.00 0.07 +matrilocales matrilocal ADJ f p 0.00 0.07 0.00 0.07 +matrimonial matrimonial ADJ m s 1.40 1.28 0.69 0.54 +matrimoniale matrimonial ADJ f s 1.40 1.28 0.17 0.47 +matrimoniales matrimonial ADJ f p 1.40 1.28 0.40 0.27 +matrimoniaux matrimonial ADJ m p 1.40 1.28 0.13 0.00 +matriochka matriochka NOM f s 0.00 0.07 0.00 0.07 +matrone matrone NOM f s 0.36 3.72 0.23 2.16 +matrones matrone NOM f p 0.36 3.72 0.14 1.55 +mats mat NOM m p 6.84 4.32 0.35 0.14 +matte matte NOM f s 0.52 0.07 0.35 0.07 +matter matter VER 0.64 0.07 0.64 0.07 inf; +mattes matte NOM f p 0.52 0.07 0.16 0.00 +matèrent mater VER 17.27 14.93 0.00 0.14 ind:pas:3p; +maté maté NOM m s 1.62 0.20 1.62 0.14 +matuche matuche NOM m s 0.00 0.41 0.00 0.41 +matée mater VER f s 17.27 14.93 0.20 0.07 par:pas; +matées mater VER f p 17.27 14.93 0.16 0.14 par:pas; +maturation maturation NOM f s 0.07 0.68 0.07 0.54 +maturations maturation NOM f p 0.07 0.68 0.00 0.14 +mature mature ADJ s 1.83 0.00 1.65 0.00 +maturer maturer VER 0.00 0.07 0.00 0.07 inf; +matures mature ADJ p 1.83 0.00 0.17 0.00 +matérialisa matérialiser VER 1.05 4.32 0.00 0.20 ind:pas:3s; +matérialisaient matérialiser VER 1.05 4.32 0.01 0.07 ind:imp:3p; +matérialisait matérialiser VER 1.05 4.32 0.01 0.47 ind:imp:3s; +matérialisant matérialiser VER 1.05 4.32 0.04 0.14 par:pre; +matérialisation matérialisation NOM f s 0.17 0.54 0.15 0.54 +matérialisations matérialisation NOM f p 0.17 0.54 0.02 0.00 +matérialise matérialiser VER 1.05 4.32 0.25 0.61 ind:pre:1s;ind:pre:3s; +matérialisent matérialiser VER 1.05 4.32 0.05 0.14 ind:pre:3p; +matérialiser matérialiser VER 1.05 4.32 0.34 0.74 inf; +matérialisera matérialiser VER 1.05 4.32 0.00 0.07 ind:fut:3s; +matérialiseront matérialiser VER 1.05 4.32 0.01 0.00 ind:fut:3p; +matérialisions matérialiser VER 1.05 4.32 0.00 0.07 ind:imp:1p; +matérialisme matérialisme NOM m s 0.38 1.49 0.38 1.49 +matérialiste matérialiste ADJ s 0.82 0.88 0.65 0.61 +matérialistes matérialiste ADJ p 0.82 0.88 0.17 0.27 +matérialisèrent matérialiser VER 1.05 4.32 0.00 0.07 ind:pas:3p; +matérialisé matérialiser VER m s 1.05 4.32 0.17 0.34 par:pas; +matérialisée matérialiser VER f s 1.05 4.32 0.13 0.68 par:pas; +matérialisées matérialiser VER f p 1.05 4.32 0.01 0.27 par:pas; +matérialisés matérialiser VER m p 1.05 4.32 0.02 0.47 par:pas; +matérialité matérialité NOM f s 0.01 0.47 0.01 0.47 +matériau matériau NOM m s 3.78 5.14 0.95 1.62 +matériaux matériau NOM m p 3.78 5.14 2.83 3.51 +matériel matériel NOM m s 25.26 26.22 25.15 25.47 +matérielle matériel ADJ f s 5.54 16.89 1.17 5.14 +matériellement matériellement ADV 0.31 3.04 0.31 3.04 +matérielles matériel ADJ f p 5.54 16.89 0.45 3.31 +matériels matériel ADJ m p 5.54 16.89 1.38 3.45 +maturité maturité NOM f s 2.61 5.00 2.61 5.00 +matés mater VER m p 17.27 14.93 0.05 0.34 par:pas; +matutinal matutinal ADJ m s 0.00 0.34 0.00 0.07 +matutinale matutinal ADJ f s 0.00 0.34 0.00 0.14 +matutinales matutinal ADJ f p 0.00 0.34 0.00 0.07 +matutinaux matutinal ADJ m p 0.00 0.34 0.00 0.07 +maudira maudire VER 7.97 10.47 0.14 0.00 ind:fut:3s; +maudirai maudire VER 7.97 10.47 0.05 0.34 ind:fut:1s; +maudirais maudire VER 7.97 10.47 0.01 0.00 cnd:pre:2s; +maudirait maudire VER 7.97 10.47 0.21 0.07 cnd:pre:3s; +maudire maudire VER 7.97 10.47 1.65 2.64 inf; +maudirent maudire VER 7.97 10.47 0.00 0.07 ind:pas:3p; +maudirons maudire VER 7.97 10.47 0.01 0.00 ind:fut:1p; +maudiront maudire VER 7.97 10.47 0.02 0.00 ind:fut:3p; +maudis maudire VER m p 7.97 10.47 3.36 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +maudissaient maudire VER 7.97 10.47 0.01 0.20 ind:imp:3p; +maudissais maudire VER 7.97 10.47 0.04 0.47 ind:imp:1s;ind:imp:2s; +maudissait maudire VER 7.97 10.47 0.25 1.55 ind:imp:3s; +maudissant maudire VER 7.97 10.47 0.21 2.23 par:pre; +maudisse maudire VER 7.97 10.47 0.95 0.14 sub:pre:1s;sub:pre:3s; +maudissent maudire VER 7.97 10.47 0.26 0.20 ind:pre:3p; +maudissez maudire VER 7.97 10.47 0.20 0.14 imp:pre:2p;ind:pre:2p; +maudissions maudire VER 7.97 10.47 0.00 0.20 ind:imp:1p; +maudit maudit ADJ m s 37.18 17.50 17.59 7.43 +maudite maudit ADJ f s 37.18 17.50 12.65 5.47 +maudites maudit ADJ f p 37.18 17.50 1.71 1.42 +maudits maudit ADJ m p 37.18 17.50 5.23 3.18 +maugréa maugréer VER 0.29 5.41 0.00 1.15 ind:pas:3s; +maugréai maugréer VER 0.29 5.41 0.00 0.14 ind:pas:1s; +maugréaient maugréer VER 0.29 5.41 0.00 0.14 ind:imp:3p; +maugréait maugréer VER 0.29 5.41 0.00 0.61 ind:imp:3s; +maugréant maugréer VER 0.29 5.41 0.00 2.57 par:pre; +maugrée maugréer VER 0.29 5.41 0.27 0.27 imp:pre:2s;ind:pre:3s; +maugréer maugréer VER 0.29 5.41 0.03 0.54 inf; +maure maure ADJ s 1.11 0.81 0.90 0.41 +maures maure NOM p 0.96 1.15 0.31 0.14 +mauresque mauresque ADJ s 0.12 2.91 0.12 2.09 +mauresques mauresque ADJ p 0.12 2.91 0.00 0.81 +mauricienne mauricien ADJ f s 0.00 0.07 0.00 0.07 +mauritanienne mauritanien ADJ f s 0.00 0.07 0.00 0.07 +maurrassien maurrassien NOM m s 0.00 0.14 0.00 0.14 +maurrassisme maurrassisme NOM m s 0.00 0.07 0.00 0.07 +mauser mauser NOM m s 0.57 3.04 0.56 2.09 +mausers mauser NOM m p 0.57 3.04 0.01 0.95 +mausolée mausolée NOM m s 1.66 3.11 1.64 2.91 +mausolées mausolée NOM m p 1.66 3.11 0.02 0.20 +maussade maussade ADJ s 1.09 7.97 1.04 6.82 +maussadement maussadement ADV 0.00 0.27 0.00 0.27 +maussaderie maussaderie NOM f s 0.00 0.34 0.00 0.27 +maussaderies maussaderie NOM f p 0.00 0.34 0.00 0.07 +maussades maussade ADJ p 1.09 7.97 0.05 1.15 +mauvais mauvais ADJ m 252.69 200.61 138.04 108.65 +mauvaise mauvais ADJ f s 252.69 200.61 88.33 70.88 +mauvaisement mauvaisement ADV 0.00 0.27 0.00 0.27 +mauvaises mauvais ADJ f p 252.69 200.61 26.32 21.08 +mauvaiseté mauvaiseté NOM f s 0.00 0.20 0.00 0.20 +mauve mauve ADJ s 0.70 17.64 0.63 10.68 +mauves mauve ADJ p 0.70 17.64 0.07 6.96 +mauviette mauviette NOM f s 4.86 0.88 3.49 0.61 +mauviettes mauviette NOM f p 4.86 0.88 1.37 0.27 +maux mal NOM m p 326.58 193.92 8.31 8.78 +max max NOM m s 5.94 2.30 5.94 2.30 +maxi maxi ADJ 1.71 0.27 1.71 0.27 +maxillaire maxillaire NOM m s 0.27 1.76 0.25 0.54 +maxillaires maxillaire ADJ f p 0.08 0.14 0.05 0.07 +maxillo_facial maxillo_facial ADJ m s 0.01 0.00 0.01 0.00 +maxima maximum NOM m p 14.79 15.81 0.22 0.41 +maximal maximal ADJ m s 3.04 0.61 0.34 0.20 +maximale maximal ADJ f s 3.04 0.61 2.53 0.41 +maximales maximal ADJ f p 3.04 0.61 0.16 0.00 +maximalise maximaliser VER 0.03 0.00 0.01 0.00 ind:pre:3s; +maximaliser maximaliser VER 0.03 0.00 0.02 0.00 inf; +maximalisme maximalisme NOM m s 0.00 0.14 0.00 0.14 +maxime maxime NOM f s 0.67 2.09 0.64 1.22 +maximes maxime NOM f p 0.67 2.09 0.03 0.88 +maximisation maximisation NOM f s 0.01 0.00 0.01 0.00 +maximiser maximiser VER 0.26 0.00 0.26 0.00 inf; +maximum maximum NOM m s 14.79 15.81 14.55 15.34 +maximums maximum ADJ m p 5.80 1.96 0.04 0.00 +maxis maxi NOM m p 0.58 0.95 0.04 0.00 +maxiton maxiton NOM m s 0.00 0.14 0.00 0.14 +maya maya ADJ s 0.56 0.20 0.44 0.20 +mayas maya ADJ p 0.56 0.20 0.12 0.00 +mayo mayo NOM f s 0.77 0.00 0.77 0.00 +mayonnaise mayonnaise NOM f s 3.64 3.45 3.63 3.45 +mayonnaises mayonnaise NOM f p 3.64 3.45 0.01 0.00 +mazagran mazagran NOM m s 0.00 0.20 0.00 0.07 +mazagrans mazagran NOM m p 0.00 0.20 0.00 0.14 +mazas mazer VER 0.01 0.27 0.00 0.07 ind:pas:2s; +mazdéens mazdéen ADJ m p 0.00 0.07 0.00 0.07 +maze mazer VER 0.01 0.27 0.01 0.14 imp:pre:2s;ind:pre:3s; +mazet mazet NOM m s 0.00 0.41 0.00 0.41 +mazette mazette ONO 0.32 0.81 0.32 0.81 +mazettes mazette NOM f p 0.02 0.07 0.01 0.00 +mazout mazout NOM m s 1.42 2.64 1.42 2.64 +mazouté mazouter VER m s 0.00 0.07 0.00 0.07 par:pas; +mazoutés mazouté ADJ m p 0.00 0.14 0.00 0.14 +mazé mazer VER m s 0.01 0.27 0.00 0.07 par:pas; +mazurka mazurka NOM f s 0.58 0.41 0.58 0.34 +mazurkas mazurka NOM f p 0.58 0.41 0.00 0.07 +me me PRO:per s 4929.44 4264.32 4929.44 4264.32 +mea_culpa mea_culpa NOM m 0.07 0.14 0.07 0.14 +mea_culpa mea_culpa NOM m 0.70 0.68 0.70 0.68 +mec mec NOM m s 325.54 72.30 252.94 50.41 +meccano meccano NOM m s 0.29 1.01 0.29 0.95 +meccanos meccano NOM m p 0.29 1.01 0.00 0.07 +mechta mechta NOM f s 0.00 0.34 0.00 0.14 +mechtas mechta NOM f p 0.00 0.34 0.00 0.20 +mecklembourgeois mecklembourgeois NOM m 0.00 0.07 0.00 0.07 +mecs mec NOM m p 325.54 72.30 72.61 21.89 +mecton mecton NOM m s 0.03 0.74 0.03 0.27 +mectons mecton NOM m p 0.03 0.74 0.00 0.47 +media media NOM f s 7.72 0.07 7.72 0.07 +medicine_ball medicine_ball NOM m s 0.00 0.07 0.00 0.07 +medium medium NOM m s 0.59 0.07 0.59 0.07 +meeting meeting NOM m s 4.23 6.82 3.49 4.73 +meetings meeting NOM m p 4.23 6.82 0.74 2.09 +meiji meiji ADJ m s 0.02 0.07 0.02 0.07 +meilleur meilleur ADJ m s 221.17 86.82 99.59 34.32 +meilleure meilleur ADJ f s 221.17 86.82 73.69 24.86 +meilleures meilleur ADJ f p 221.17 86.82 15.25 10.41 +meilleurs meilleur ADJ m p 221.17 86.82 32.64 17.23 +melba melba ADJ 0.03 0.20 0.03 0.20 +melkites melkite NOM p 0.00 0.14 0.00 0.14 +melliflues melliflue ADJ f p 0.00 0.07 0.00 0.07 +mellifère mellifère ADJ s 0.00 0.07 0.00 0.07 +mellifères mellifère NOM m p 0.00 0.07 0.00 0.07 +melon melon NOM m s 7.11 6.96 4.92 5.20 +melons melon NOM m p 7.11 6.96 2.19 1.76 +melting_pot melting_pot NOM m s 0.14 0.07 0.13 0.00 +melting_pot melting_pot NOM m s 0.14 0.07 0.01 0.07 +membranaire membranaire ADJ f s 0.01 0.00 0.01 0.00 +membrane membrane NOM f s 1.23 2.97 0.89 1.69 +membranes membrane NOM f p 1.23 2.97 0.34 1.28 +membraneuse membraneux ADJ f s 0.01 0.34 0.00 0.07 +membraneuses membraneux ADJ f p 0.01 0.34 0.01 0.14 +membraneux membraneux ADJ m 0.01 0.34 0.00 0.14 +membre membre NOM m s 56.06 64.86 26.72 15.20 +membres membre NOM m p 56.06 64.86 29.34 49.66 +membré membré ADJ m s 0.05 0.07 0.05 0.07 +membrues membru ADJ f p 0.00 0.07 0.00 0.07 +membrure membrure NOM f s 0.03 0.61 0.02 0.34 +membrures membrure NOM f p 0.03 0.61 0.01 0.27 +mena mener VER 99.86 137.70 0.40 3.85 ind:pas:3s; +menace menace NOM f s 30.36 44.12 21.07 26.01 +menacent menacer VER 49.61 52.57 2.46 2.50 ind:pre:3p; +menacer menacer VER 49.61 52.57 5.33 5.34 inf; +menacera menacer VER 49.61 52.57 0.09 0.07 ind:fut:3s; +menaceraient menacer VER 49.61 52.57 0.04 0.00 cnd:pre:3p; +menacerait menacer VER 49.61 52.57 0.10 0.27 cnd:pre:3s; +menaceras menacer VER 49.61 52.57 0.01 0.00 ind:fut:2s; +menaceriez menacer VER 49.61 52.57 0.03 0.00 cnd:pre:2p; +menaceront menacer VER 49.61 52.57 0.15 0.14 ind:fut:3p; +menaces menace NOM f p 30.36 44.12 9.28 18.11 +menacez menacer VER 49.61 52.57 1.41 0.20 imp:pre:2p;ind:pre:2p; +menaciez menacer VER 49.61 52.57 0.25 0.00 ind:imp:2p; +menacions menacer VER 49.61 52.57 0.01 0.07 ind:imp:1p; +menacèrent menacer VER 49.61 52.57 0.01 0.20 ind:pas:3p; +menacé menacer VER m s 49.61 52.57 14.44 7.84 par:pas; +menacée menacer VER f s 49.61 52.57 4.83 4.05 par:pas; +menacées menacer VER f p 49.61 52.57 0.50 0.95 par:pas; +menacés menacer VER m p 49.61 52.57 1.44 2.30 par:pas; +menai mener VER 99.86 137.70 0.02 0.20 ind:pas:1s; +menaient mener VER 99.86 137.70 0.49 6.96 ind:imp:3p; +menais mener VER 99.86 137.70 0.70 2.30 ind:imp:1s;ind:imp:2s; +menait mener VER 99.86 137.70 2.56 24.80 ind:imp:3s; +menant mener VER 99.86 137.70 1.68 7.03 par:pre; +menassent mener VER 99.86 137.70 0.00 0.07 sub:imp:3p; +menaça menacer VER 49.61 52.57 0.16 1.82 ind:pas:3s; +menaçaient menacer VER 49.61 52.57 1.07 3.04 ind:imp:3p; +menaçais menacer VER 49.61 52.57 0.34 0.34 ind:imp:1s;ind:imp:2s; +menaçait menacer VER 49.61 52.57 2.95 10.07 ind:imp:3s; +menaçant menaçant ADJ m s 3.56 16.69 1.76 7.09 +menaçante menaçant ADJ f s 3.56 16.69 1.33 5.61 +menaçantes menaçant ADJ f p 3.56 16.69 0.06 1.28 +menaçants menaçant ADJ m p 3.56 16.69 0.41 2.70 +menaçons menacer VER 49.61 52.57 0.19 0.00 ind:pre:1p; +menaçât menacer VER 49.61 52.57 0.01 0.07 sub:imp:3s; +mencheviks menchevik NOM p 0.00 0.07 0.00 0.07 +mendia mendier VER 4.07 6.49 0.01 0.00 ind:pas:3s; +mendiaient mendier VER 4.07 6.49 0.01 0.34 ind:imp:3p; +mendiais mendier VER 4.07 6.49 0.27 0.07 ind:imp:1s;ind:imp:2s; +mendiait mendier VER 4.07 6.49 0.24 0.68 ind:imp:3s; +mendiant mendiant NOM m s 6.86 11.76 3.44 5.20 +mendiante mendiant NOM f s 6.86 11.76 0.34 0.95 +mendiantes mendiant NOM f p 6.86 11.76 0.00 0.14 +mendiants mendiant NOM m p 6.86 11.76 3.07 5.47 +mendicité mendicité NOM f s 0.44 0.95 0.44 0.88 +mendicités mendicité NOM f p 0.44 0.95 0.00 0.07 +mendie mendier VER 4.07 6.49 0.61 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mendient mendier VER 4.07 6.49 0.23 0.14 ind:pre:3p; +mendier mendier VER 4.07 6.49 2.07 3.11 inf; +mendierait mendier VER 4.07 6.49 0.00 0.07 cnd:pre:3s; +mendieras mendier VER 4.07 6.49 0.00 0.07 ind:fut:2s; +mendies mendier VER 4.07 6.49 0.01 0.00 ind:pre:2s; +mendiez mendier VER 4.07 6.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +mendigot mendigot NOM m s 0.30 0.81 0.30 0.07 +mendigotant mendigoter VER 0.00 0.14 0.00 0.07 par:pre; +mendigote mendigot NOM f s 0.30 0.81 0.00 0.07 +mendigoter mendigoter VER 0.00 0.14 0.00 0.07 inf; +mendigots mendigot NOM m p 0.30 0.81 0.00 0.68 +mendions mendier VER 4.07 6.49 0.10 0.07 ind:pre:1p; +mendié mendier VER m s 4.07 6.49 0.10 0.34 par:pas; +mendiée mendier VER f s 4.07 6.49 0.00 0.07 par:pas; +mendiées mendier VER f p 4.07 6.49 0.00 0.07 par:pas; +mendé mendé ADJ s 0.01 0.00 0.01 0.00 +meneau meneau NOM m s 2.18 0.54 0.00 0.07 +meneaux meneau NOM m p 2.18 0.54 2.18 0.47 +mener mener VER 99.86 137.70 22.45 29.53 inf;; +meneur meneur NOM m s 2.94 3.51 1.67 2.03 +meneurs meneur NOM m p 2.94 3.51 0.69 1.35 +meneuse meneur NOM f s 2.94 3.51 0.59 0.14 +menez mener VER 99.86 137.70 2.96 0.41 imp:pre:2p;ind:pre:2p; +menhaden menhaden NOM m s 0.01 0.00 0.01 0.00 +menhir menhir NOM m s 0.41 0.68 0.41 0.20 +menhirs menhir NOM m p 0.41 0.68 0.00 0.47 +meniez mener VER 99.86 137.70 0.22 0.00 ind:imp:2p;sub:pre:2p; +menions mener VER 99.86 137.70 0.06 0.88 ind:imp:1p; +mennonite mennonite NOM m s 0.09 0.14 0.04 0.07 +mennonites mennonite NOM m p 0.09 0.14 0.05 0.07 +menon menon NOM m s 0.03 0.07 0.02 0.00 +menons mener VER 99.86 137.70 1.20 0.81 imp:pre:1p;ind:pre:1p; +menora menora NOM f s 0.03 0.00 0.03 0.00 +menât mener VER 99.86 137.70 0.00 0.20 sub:imp:3s; +menotte menotte NOM f s 11.65 7.84 0.78 0.61 +menotter menotter VER 2.65 0.27 0.31 0.00 inf; +menottes menotte NOM f p 11.65 7.84 10.88 7.23 +menottez menotter VER 2.65 0.27 0.83 0.00 imp:pre:2p;ind:pre:2p; +menotté menotter VER m s 2.65 0.27 1.06 0.27 par:pas; +menottée menotter VER f s 2.65 0.27 0.28 0.00 par:pas; +menottés menotter VER m p 2.65 0.27 0.17 0.00 par:pas; +mens mentir VER 185.16 52.03 42.12 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mensonge mensonge NOM m s 61.05 35.41 33.64 21.89 +mensonger mensonger ADJ m s 1.29 1.96 0.29 0.47 +mensongers mensonger ADJ m p 1.29 1.96 0.14 0.14 +mensonges mensonge NOM m p 61.05 35.41 27.41 13.51 +mensongère mensonger ADJ f s 1.29 1.96 0.48 0.81 +mensongèrement mensongèrement ADV 0.00 0.20 0.00 0.20 +mensongères mensonger ADJ f p 1.29 1.96 0.38 0.54 +menstruation menstruation NOM f s 0.40 0.00 0.28 0.00 +menstruations menstruation NOM f p 0.40 0.00 0.13 0.00 +menstruel menstruel ADJ m s 0.29 0.54 0.22 0.27 +menstruelle menstruel ADJ f s 0.29 0.54 0.01 0.07 +menstruelles menstruel ADJ f p 0.29 0.54 0.02 0.14 +menstruels menstruel ADJ m p 0.29 0.54 0.04 0.07 +menstrues menstrue NOM f p 0.00 0.14 0.00 0.14 +mensualité mensualité NOM f s 0.72 1.01 0.15 0.81 +mensualités mensualité NOM f p 0.72 1.01 0.56 0.20 +mensuel mensuel ADJ m s 2.13 2.50 0.73 0.81 +mensuelle mensuel ADJ f s 2.13 2.50 0.87 0.88 +mensuellement mensuellement ADV 0.01 0.14 0.01 0.14 +mensuelles mensuel ADJ f p 2.13 2.50 0.23 0.34 +mensuels mensuel ADJ m p 2.13 2.50 0.30 0.47 +mensuration mensuration NOM f s 0.58 1.42 0.00 0.20 +mensurations mensuration NOM f p 0.58 1.42 0.58 1.22 +ment mentir VER 185.16 52.03 24.08 5.81 ind:pre:3s; +mentît mentir VER 185.16 52.03 0.00 0.14 sub:imp:3s; +mentaient mentir VER 185.16 52.03 0.44 0.88 ind:imp:3p; +mentais mentir VER 185.16 52.03 3.64 1.55 ind:imp:1s;ind:imp:2s; +mentait mentir VER 185.16 52.03 2.54 5.88 ind:imp:3s; +mental mental ADJ m s 18.15 11.35 5.84 4.05 +mentale mental ADJ f s 18.15 11.35 6.92 4.80 +mentalement mentalement ADV 4.37 6.42 4.37 6.42 +mentales mental ADJ f p 18.15 11.35 1.68 1.01 +mentaliser mentaliser VER 0.00 0.07 0.00 0.07 inf; +mentalité mentalité NOM f s 2.79 5.95 2.15 5.27 +mentalités mentalité NOM f p 2.79 5.95 0.64 0.68 +mentant mentir VER 185.16 52.03 0.72 0.54 par:pre; +mentaux mental ADJ m p 18.15 11.35 3.71 1.49 +mente mentir VER 185.16 52.03 1.94 0.41 sub:pre:1s;sub:pre:3s; +mentent mentir VER 185.16 52.03 5.57 1.15 ind:pre:3p; +menterie menterie NOM f s 0.12 0.74 0.10 0.14 +menteries menterie NOM f p 0.12 0.74 0.02 0.61 +mentes mentir VER 185.16 52.03 0.32 0.00 sub:pre:2s; +menteur menteur NOM m s 36.31 5.34 23.57 3.38 +menteurs menteur NOM m p 36.31 5.34 4.46 1.01 +menteuse menteur NOM f s 36.31 5.34 8.28 0.95 +menteuses menteur ADJ f p 8.49 4.80 0.36 0.27 +mentez mentir VER 185.16 52.03 10.29 1.22 imp:pre:2p;ind:pre:2p; +menthe menthe NOM f s 5.51 9.53 5.21 9.39 +menthes menthe NOM f p 5.51 9.53 0.30 0.14 +menthol menthol NOM m s 0.44 0.41 0.36 0.34 +menthols menthol NOM m p 0.44 0.41 0.08 0.07 +mentholé mentholé ADJ m s 0.19 0.34 0.04 0.00 +mentholée mentholé ADJ f s 0.19 0.34 0.10 0.20 +mentholées mentholé ADJ f p 0.19 0.34 0.04 0.14 +mentholés mentholé NOM m p 0.03 0.00 0.01 0.00 +menèrent mener VER 99.86 137.70 0.09 0.88 ind:pas:3p; +menti mentir VER m s 185.16 52.03 47.32 9.59 par:pas; +mentiez mentir VER 185.16 52.03 0.61 0.20 ind:imp:2p; +mention mention NOM f s 4.27 6.01 4.03 5.54 +mentionna mentionner VER 15.61 9.32 0.10 0.61 ind:pas:3s; +mentionnai mentionner VER 15.61 9.32 0.00 0.07 ind:pas:1s; +mentionnaient mentionner VER 15.61 9.32 0.03 0.47 ind:imp:3p; +mentionnais mentionner VER 15.61 9.32 0.10 0.07 ind:imp:1s;ind:imp:2s; +mentionnait mentionner VER 15.61 9.32 0.33 1.01 ind:imp:3s; +mentionnant mentionner VER 15.61 9.32 0.05 0.47 par:pre; +mentionne mentionner VER 15.61 9.32 2.33 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mentionnent mentionner VER 15.61 9.32 0.64 0.27 ind:pre:3p; +mentionner mentionner VER 15.61 9.32 2.86 2.03 inf; +mentionnerai mentionner VER 15.61 9.32 0.11 0.14 ind:fut:1s; +mentionnerais mentionner VER 15.61 9.32 0.01 0.07 cnd:pre:1s; +mentionnerait mentionner VER 15.61 9.32 0.14 0.00 cnd:pre:3s; +mentionneras mentionner VER 15.61 9.32 0.02 0.00 ind:fut:2s; +mentionnerez mentionner VER 15.61 9.32 0.04 0.00 ind:fut:2p; +mentionnes mentionner VER 15.61 9.32 0.14 0.00 ind:pre:2s; +mentionnez mentionner VER 15.61 9.32 0.70 0.00 imp:pre:2p;ind:pre:2p; +mentionniez mentionner VER 15.61 9.32 0.07 0.00 ind:imp:2p; +mentionnons mentionner VER 15.61 9.32 0.11 0.07 imp:pre:1p; +mentionnât mentionner VER 15.61 9.32 0.01 0.00 sub:imp:3s; +mentionné mentionner VER m s 15.61 9.32 6.56 2.36 par:pas; +mentionnée mentionner VER f s 15.61 9.32 0.42 0.61 par:pas; +mentionnées mentionner VER f p 15.61 9.32 0.39 0.34 par:pas; +mentionnés mentionner VER m p 15.61 9.32 0.45 0.20 par:pas; +mentions mention NOM f p 4.27 6.01 0.24 0.47 +mentir mentir VER 185.16 52.03 37.01 15.20 inf; +mentira mentir VER 185.16 52.03 0.51 0.07 ind:fut:3s; +mentirai mentir VER 185.16 52.03 1.60 0.14 ind:fut:1s; +mentiraient mentir VER 185.16 52.03 0.30 0.14 cnd:pre:3p; +mentirais mentir VER 185.16 52.03 3.47 1.35 cnd:pre:1s;cnd:pre:2s; +mentirait mentir VER 185.16 52.03 1.55 0.07 cnd:pre:3s; +mentiras mentir VER 185.16 52.03 0.24 0.07 ind:fut:2s; +mentirez mentir VER 185.16 52.03 0.05 0.00 ind:fut:2p; +mentiriez mentir VER 185.16 52.03 0.19 0.00 cnd:pre:2p; +mentirons mentir VER 185.16 52.03 0.04 0.07 ind:fut:1p; +mentiront mentir VER 185.16 52.03 0.05 0.00 ind:fut:3p; +mentis mentir VER 185.16 52.03 0.25 0.47 ind:pas:1s; +mentissent mentir VER 185.16 52.03 0.00 0.07 sub:imp:3p; +mentit mentir VER 185.16 52.03 0.06 1.01 ind:pas:3s; +menton menton NOM m s 6.58 60.00 6.45 58.65 +mentonnet mentonnet NOM m s 0.00 0.07 0.00 0.07 +mentonnier mentonnier ADJ m s 0.00 0.14 0.00 0.07 +mentonnière mentonnier NOM f s 0.00 0.34 0.00 0.34 +mentons mentir VER 185.16 52.03 0.24 0.14 imp:pre:1p;ind:pre:1p; +mentor mentor NOM m s 1.72 0.74 1.62 0.61 +mentors mentor NOM m p 1.72 0.74 0.10 0.14 +mentule mentule NOM f s 0.00 0.07 0.00 0.07 +mené mener VER m s 99.86 137.70 10.41 10.07 par:pas; +menu menu NOM m s 11.15 14.53 9.87 12.03 +menée mener VER f s 99.86 137.70 3.89 8.65 par:pas; +menue menu ADJ f s 2.29 27.77 0.69 5.68 +menées mener VER f p 99.86 137.70 0.82 2.57 par:pas; +menues menu ADJ f p 2.29 27.77 0.19 4.32 +menuet menuet NOM m s 0.75 0.95 0.62 0.81 +menuets menuet NOM m p 0.75 0.95 0.14 0.14 +menuise menuise NOM f s 0.14 0.00 0.14 0.00 +menuiser menuiser VER 0.00 0.14 0.00 0.07 inf; +menuisera menuiser VER 0.00 0.14 0.00 0.07 ind:fut:3s; +menuiserie menuiserie NOM f s 0.46 1.22 0.46 1.22 +menuisier menuisier NOM m s 3.54 4.46 2.88 4.05 +menuisiers menuisier NOM m p 3.54 4.46 0.65 0.41 +menés mener VER m p 99.86 137.70 2.51 2.97 par:pas; +menus menu NOM m p 11.15 14.53 1.28 2.50 +mer_air mer_air ADJ f s 0.01 0.00 0.01 0.00 +mer mer NOM f s 106.61 257.57 99.49 246.55 +mercanti mercanti NOM m s 0.27 0.20 0.14 0.14 +mercantile mercantile ADJ s 0.10 0.95 0.10 0.54 +mercantiles mercantile ADJ p 0.10 0.95 0.00 0.41 +mercantilisme mercantilisme NOM m s 0.04 0.14 0.04 0.14 +mercantis mercanti NOM m p 0.27 0.20 0.14 0.07 +mercaptan mercaptan NOM m s 0.01 0.00 0.01 0.00 +mercenaire mercenaire NOM s 2.87 2.30 1.33 0.54 +mercenaires mercenaire NOM p 2.87 2.30 1.54 1.76 +mercerie mercerie NOM f s 0.94 9.32 0.94 8.99 +merceries mercerie NOM f p 0.94 9.32 0.00 0.34 +mercerisé merceriser VER m s 0.02 0.27 0.02 0.27 par:pas; +merchandising merchandising NOM m s 0.16 0.00 0.16 0.00 +merci merci ONO 936.01 42.36 936.01 42.36 +mercier mercier NOM m s 0.14 4.26 0.14 0.34 +merciers mercier NOM m p 0.14 4.26 0.00 0.14 +mercis merci NOM m p 379.38 53.51 0.94 0.27 +mercière mercière NOM f s 0.01 0.00 0.01 0.00 +mercières mercier NOM f p 0.14 4.26 0.00 0.07 +mercredi mercredi NOM m s 21.48 12.64 20.38 11.82 +mercredis mercredi NOM m p 21.48 12.64 1.11 0.81 +mercure mercure NOM m s 1.13 1.76 1.13 1.76 +mercurey mercurey NOM m s 0.00 0.27 0.00 0.27 +mercuriale mercuriale NOM f s 0.00 0.14 0.00 0.07 +mercuriales mercuriale NOM f p 0.00 0.14 0.00 0.07 +mercurochrome mercurochrome NOM m s 0.07 1.22 0.07 1.22 +merda merder VER 16.50 3.58 0.42 0.00 ind:pas:3s; +merdait merder VER 16.50 3.58 0.19 0.00 ind:imp:3s; +merdasse merdasse ONO 0.02 0.07 0.02 0.07 +merde merde ONO 221.46 33.85 221.46 33.85 +merdent merder VER 16.50 3.58 0.08 0.00 ind:pre:3p; +merder merder VER 16.50 3.58 0.89 0.00 inf; +merderai merder VER 16.50 3.58 0.02 0.00 ind:fut:1s; +merdes merde NOM f p 213.05 62.77 6.37 1.49 +merdeuse merdeux ADJ f s 3.56 2.57 0.82 0.54 +merdeuses merdeux ADJ f p 3.56 2.57 0.01 0.54 +merdeux merdeux NOM m 5.22 1.82 5.22 1.82 +merdez merder VER 16.50 3.58 0.16 0.00 imp:pre:2p;ind:pre:2p; +merdier merdier NOM m s 5.34 1.96 5.33 1.89 +merdiers merdier NOM m p 5.34 1.96 0.01 0.07 +merdique merdique ADJ s 7.82 2.16 6.53 1.42 +merdiques merdique ADJ p 7.82 2.16 1.29 0.74 +merdoie merdoyer VER 0.00 0.20 0.00 0.14 imp:pre:2s; +merdouille merdouille NOM f s 0.20 0.34 0.20 0.34 +merdouillé merdouiller VER m s 0.01 0.00 0.01 0.00 par:pas; +merdoyait merdoyer VER 0.00 0.20 0.00 0.07 ind:imp:3s; +merdre merdre ONO 0.04 0.07 0.04 0.07 +merdé merder VER m s 16.50 3.58 9.14 0.20 par:pas; +merdée merder VER f s 16.50 3.58 0.04 0.07 par:pas; +merguez merguez NOM f 0.70 2.16 0.70 2.16 +meringue meringue NOM f s 0.51 1.35 0.47 0.81 +meringues meringue NOM f p 0.51 1.35 0.04 0.54 +meringué meringuer VER m s 0.20 0.27 0.01 0.07 par:pas; +meringuée meringuer VER f s 0.20 0.27 0.20 0.14 par:pas; +meringuées meringuer VER f p 0.20 0.27 0.00 0.07 par:pas; +merise merise NOM f s 0.01 0.07 0.01 0.00 +merises merise NOM f p 0.01 0.07 0.00 0.07 +merisier merisier NOM m s 0.13 1.15 0.13 0.81 +merisiers merisier NOM m p 0.13 1.15 0.00 0.34 +merl merl NOM m s 0.26 0.00 0.26 0.00 +merlan merlan NOM m s 1.81 3.78 1.76 3.45 +merlans merlan NOM m p 1.81 3.78 0.05 0.34 +merle merle NOM m s 2.24 4.19 1.80 2.64 +merleau merleau NOM m s 0.00 0.07 0.00 0.07 +merles merle NOM m p 2.24 4.19 0.45 1.55 +merlette merlette NOM f s 0.00 0.20 0.00 0.20 +merlin merlin NOM m s 0.02 0.20 0.02 0.20 +merlot merlot NOM m s 1.90 0.00 1.90 0.00 +merlu merlu NOM m s 0.01 0.14 0.01 0.14 +merluche merluche NOM f s 0.01 0.27 0.01 0.20 +merluches merluche NOM f p 0.01 0.27 0.00 0.07 +merrain merrain NOM m s 0.00 0.61 0.00 0.41 +merrains merrain NOM m p 0.00 0.61 0.00 0.20 +mers mer NOM f p 106.61 257.57 7.12 11.01 +merveille merveille NOM f s 21.16 33.31 15.64 22.50 +merveilles merveille NOM f p 21.16 33.31 5.52 10.81 +merveilleuse merveilleux ADJ f s 79.25 40.34 20.93 14.80 +merveilleusement merveilleusement ADV 3.63 7.03 3.63 7.03 +merveilleuses merveilleux ADJ f p 79.25 40.34 3.88 4.26 +merveilleux merveilleux ADJ m 79.25 40.34 54.44 21.28 +merveillosité merveillosité NOM f s 0.01 0.00 0.01 0.00 +mes mes ADJ:pos 1102.23 1023.11 1102.23 1023.11 +mesa mesa NOM f s 0.51 0.07 0.51 0.07 +mescal mescal NOM m s 0.26 0.00 0.26 0.00 +mescaline mescaline NOM f s 0.25 0.07 0.25 0.07 +mesclun mesclun NOM m s 0.05 0.00 0.05 0.00 +mesdames madame NOM f p 307.36 203.45 58.03 4.73 +mesdemoiselles mesdemoiselles NOM f p 7.36 0.74 7.36 0.74 +mesmérisme mesmérisme NOM m s 0.04 0.00 0.04 0.00 +mesnils mesnil NOM m p 0.00 0.07 0.00 0.07 +mesquin mesquin ADJ m s 2.93 6.96 1.64 2.91 +mesquine mesquin ADJ f s 2.93 6.96 0.74 1.62 +mesquinement mesquinement ADV 0.00 0.14 0.00 0.14 +mesquinerie mesquinerie NOM f s 0.51 1.96 0.20 1.42 +mesquineries mesquinerie NOM f p 0.51 1.96 0.31 0.54 +mesquines mesquin ADJ f p 2.93 6.96 0.21 1.35 +mesquins mesquin ADJ m p 2.93 6.96 0.34 1.08 +mess mess NOM m 1.74 2.57 1.74 2.57 +message message NOM m s 117.11 42.57 99.70 31.15 +messager messager NOM m s 10.87 6.28 9.60 3.38 +messagerie messagerie NOM f s 1.05 0.68 1.02 0.14 +messageries messagerie NOM f p 1.05 0.68 0.03 0.54 +messagers messager NOM m p 10.87 6.28 1.06 2.09 +messages message NOM m p 117.11 42.57 17.41 11.42 +messagère messager NOM f s 10.87 6.28 0.21 0.61 +messagères messager NOM f p 10.87 6.28 0.00 0.20 +messaliste messaliste ADJ s 0.00 0.20 0.00 0.20 +messalistes messaliste NOM p 0.00 0.20 0.00 0.14 +messe messe NOM f s 18.36 35.68 16.14 32.70 +messeigneurs messeigneurs NOM m p 0.50 0.14 0.50 0.14 +messer messer NOM m s 1.50 0.95 1.50 0.95 +messes messe NOM f p 18.36 35.68 2.22 2.97 +messianique messianique ADJ s 0.05 0.27 0.03 0.20 +messianiques messianique ADJ f p 0.05 0.27 0.02 0.07 +messianisme messianisme NOM m s 0.00 0.07 0.00 0.07 +messidor messidor NOM m s 0.00 0.07 0.00 0.07 +messie messie NOM m s 0.69 0.54 0.61 0.54 +messies messie NOM m p 0.69 0.54 0.08 0.00 +messieurs_dames messieurs_dames NOM m p 0.48 0.68 0.48 0.68 +messieurs monsieur NOM m p 739.12 324.86 155.66 38.11 +messine messin ADJ f s 0.02 0.07 0.02 0.07 +messire messire NOM m s 5.69 0.47 5.21 0.41 +messires messire NOM m p 5.69 0.47 0.48 0.07 +messéance messéance NOM f s 0.00 0.07 0.00 0.07 +mestre mestre NOM m s 0.01 0.00 0.01 0.00 +mesura mesurer VER 19.65 47.30 0.01 1.76 ind:pas:3s; +mesurable mesurable ADJ s 0.22 0.95 0.19 0.74 +mesurables mesurable ADJ f p 0.22 0.95 0.02 0.20 +mesurai mesurer VER 19.65 47.30 0.00 0.54 ind:pas:1s; +mesuraient mesurer VER 19.65 47.30 0.16 0.95 ind:imp:3p; +mesurais mesurer VER 19.65 47.30 0.35 1.82 ind:imp:1s;ind:imp:2s; +mesurait mesurer VER 19.65 47.30 0.79 4.53 ind:imp:3s; +mesurant mesurer VER 19.65 47.30 0.42 2.23 par:pre; +mesurassent mesurer VER 19.65 47.30 0.00 0.07 sub:imp:3p; +mesure mesure NOM f s 32.15 132.84 21.02 112.16 +mesurent mesurer VER 19.65 47.30 1.01 1.08 ind:pre:3p; +mesurer mesurer VER 19.65 47.30 6.63 16.35 inf; +mesurera mesurer VER 19.65 47.30 0.37 0.20 ind:fut:3s; +mesurerait mesurer VER 19.65 47.30 0.06 0.00 cnd:pre:3s; +mesurerez mesurer VER 19.65 47.30 0.00 0.07 ind:fut:2p; +mesurerons mesurer VER 19.65 47.30 0.00 0.07 ind:fut:1p; +mesureront mesurer VER 19.65 47.30 0.07 0.00 ind:fut:3p; +mesures mesure NOM f p 32.15 132.84 11.14 20.68 +mesurette mesurette NOM f s 0.01 0.00 0.01 0.00 +mesureur mesureur NOM m s 0.01 0.27 0.01 0.27 +mesurez mesurer VER 19.65 47.30 0.91 0.34 imp:pre:2p;ind:pre:2p; +mesuriez mesurer VER 19.65 47.30 0.03 0.07 ind:imp:2p; +mesurions mesurer VER 19.65 47.30 0.10 0.20 ind:imp:1p; +mesurons mesurer VER 19.65 47.30 0.11 0.00 imp:pre:1p; +mesurât mesurer VER 19.65 47.30 0.00 0.14 sub:imp:3s; +mesurèrent mesurer VER 19.65 47.30 0.00 0.20 ind:pas:3p; +mesuré mesurer VER m s 19.65 47.30 1.81 4.05 par:pas; +mesurée mesurer VER f s 19.65 47.30 0.19 1.35 par:pas; +mesurées mesurer VER f p 19.65 47.30 0.23 0.27 par:pas; +mesurés mesurer VER m p 19.65 47.30 0.03 0.54 par:pas; +met mettre VER 1004.84 1083.65 89.25 86.69 ind:pre:3s; +mets_la_toi mets_la_toi NOM m 0.01 0.00 0.01 0.00 +mets mettre VER 1004.84 1083.65 151.83 33.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mettable mettable ADJ s 0.02 0.14 0.02 0.14 +mettaient mettre VER 1004.84 1083.65 1.81 19.39 ind:imp:3p; +mettais mettre VER 1004.84 1083.65 5.16 9.46 ind:imp:1s;ind:imp:2s; +mettait mettre VER 1004.84 1083.65 10.14 75.54 ind:imp:3s; +mettant mettre VER 1004.84 1083.65 5.61 20.41 par:pre; +mette mettre VER 1004.84 1083.65 16.36 12.97 sub:pre:1s;sub:pre:3s; +mettent mettre VER 1004.84 1083.65 17.98 23.24 ind:pre:3p;sub:pre:3p; +mettes mettre VER 1004.84 1083.65 3.34 1.08 sub:pre:2s; +metteur metteur NOM m s 5.50 7.70 5.24 6.01 +metteurs metteur NOM m p 5.50 7.70 0.25 1.69 +metteuse metteur NOM f s 5.50 7.70 0.01 0.00 +mettez mettre VER 1004.84 1083.65 85.44 9.86 imp:pre:2p;ind:pre:2p; +mettiez mettre VER 1004.84 1083.65 2.17 0.74 ind:imp:2p; +mettions mettre VER 1004.84 1083.65 0.27 2.16 ind:imp:1p; +mettons mettre VER 1004.84 1083.65 15.80 9.32 imp:pre:1p;ind:pre:1p; +mettra mettre VER 1004.84 1083.65 15.12 7.50 ind:fut:3s; +mettrai mettre VER 1004.84 1083.65 12.42 4.59 ind:fut:1s; +mettraient mettre VER 1004.84 1083.65 1.01 2.23 cnd:pre:3p; +mettrais mettre VER 1004.84 1083.65 5.11 2.91 cnd:pre:1s;cnd:pre:2s; +mettrait mettre VER 1004.84 1083.65 4.91 7.64 cnd:pre:3s; +mettras mettre VER 1004.84 1083.65 4.67 1.35 ind:fut:2s; +mettre mettre VER 1004.84 1083.65 271.05 230.20 inf;;inf;;inf;;inf;; +mettrez mettre VER 1004.84 1083.65 2.03 1.22 ind:fut:2p; +mettriez mettre VER 1004.84 1083.65 0.87 0.14 cnd:pre:2p; +mettrions mettre VER 1004.84 1083.65 0.05 0.20 cnd:pre:1p; +mettrons mettre VER 1004.84 1083.65 2.00 0.81 ind:fut:1p; +mettront mettre VER 1004.84 1083.65 2.31 1.01 ind:fut:3p; +meubla meubler VER 0.54 10.61 0.00 0.07 ind:pas:3s; +meublaient meubler VER 0.54 10.61 0.00 0.20 ind:imp:3p; +meublais meubler VER 0.54 10.61 0.00 0.07 ind:imp:1s; +meublait meubler VER 0.54 10.61 0.01 0.47 ind:imp:3s; +meublant meubler VER 0.54 10.61 0.00 0.14 par:pre; +meuble meuble NOM m s 19.48 53.99 2.46 11.76 +meublent meubler VER 0.54 10.61 0.00 0.27 ind:pre:3p; +meubler meubler VER 0.54 10.61 0.38 3.85 inf; +meubles meuble NOM m p 19.48 53.99 17.01 42.23 +meublèrent meubler VER 0.54 10.61 0.00 0.07 ind:pas:3p; +meublé meublé ADJ m s 0.90 4.53 0.65 2.16 +meublée meublé ADJ f s 0.90 4.53 0.23 1.08 +meublées meublé ADJ f p 0.90 4.53 0.00 0.68 +meublés meublé ADJ m p 0.90 4.53 0.02 0.61 +meuf meuf NOM f s 8.29 2.57 6.22 2.30 +meufs meuf NOM f p 8.29 2.57 2.08 0.27 +meugla meugler VER 0.28 1.08 0.00 0.20 ind:pas:3s; +meuglaient meugler VER 0.28 1.08 0.00 0.34 ind:imp:3p; +meuglait meugler VER 0.28 1.08 0.02 0.07 ind:imp:3s; +meuglant meugler VER 0.28 1.08 0.00 0.14 par:pre; +meugle meugler VER 0.28 1.08 0.12 0.07 ind:pre:3s; +meuglement meuglement NOM m s 0.56 1.35 0.03 0.61 +meuglements meuglement NOM m p 0.56 1.35 0.54 0.74 +meugler meugler VER 0.28 1.08 0.13 0.27 inf; +meuglé meugler VER m s 0.28 1.08 0.01 0.00 par:pas; +meuh meuh ONO 0.78 0.14 0.78 0.14 +meulage meulage NOM m s 0.01 0.00 0.01 0.00 +meule meule NOM f s 1.39 8.38 1.17 4.73 +meuler meuler VER 0.06 0.27 0.02 0.14 inf; +meules meule NOM f p 1.39 8.38 0.22 3.65 +meuleuse meuleuse NOM f s 0.01 0.07 0.01 0.07 +meulez meuler VER 0.06 0.27 0.01 0.00 ind:pre:2p; +meulière meulier NOM f s 0.00 0.81 0.00 0.68 +meulières meulier NOM f p 0.00 0.81 0.00 0.14 +meunier meunier NOM m s 0.96 0.95 0.76 0.74 +meuniers meunier NOM m p 0.96 0.95 0.17 0.14 +meunière meunier ADJ f s 0.44 0.41 0.23 0.14 +meure mourir VER 916.42 391.08 14.97 5.54 sub:pre:1s;sub:pre:3s; +meurent mourir VER 916.42 391.08 19.13 10.47 ind:pre:3p; +meures mourir VER 916.42 391.08 1.88 0.14 sub:pre:2s; +meurette meurette NOM f s 0.00 0.34 0.00 0.34 +meurs mourir VER 916.42 391.08 43.90 5.95 imp:pre:2s;ind:pre:1s;ind:pre:2s; +meursault meursault NOM m s 0.00 0.20 0.00 0.20 +meurt mourir VER 916.42 391.08 44.29 20.41 ind:pre:3s; +meurtre_suicide meurtre_suicide NOM m s 0.04 0.00 0.04 0.00 +meurtre meurtre NOM m s 104.45 15.47 81.94 12.30 +meurtres meurtre NOM m p 104.45 15.47 22.51 3.18 +meurtri meurtrir VER m s 0.80 6.35 0.34 1.35 par:pas; +meurtrie meurtri ADJ f s 0.66 5.00 0.32 1.76 +meurtrier meurtrier NOM m s 24.42 4.59 19.57 1.69 +meurtriers meurtrier NOM m p 24.42 4.59 2.48 0.54 +meurtries meurtri ADJ f p 0.66 5.00 0.03 0.74 +meurtrir meurtrir VER 0.80 6.35 0.04 1.69 inf; +meurtrira meurtrir VER 0.80 6.35 0.00 0.07 ind:fut:3s; +meurtriront meurtrir VER 0.80 6.35 0.00 0.07 ind:fut:3p; +meurtris meurtrir VER m p 0.80 6.35 0.29 0.34 ind:pre:1s;ind:pre:2s;par:pas; +meurtrissaient meurtrir VER 0.80 6.35 0.00 0.34 ind:imp:3p; +meurtrissais meurtrir VER 0.80 6.35 0.00 0.07 ind:imp:1s; +meurtrissait meurtrir VER 0.80 6.35 0.00 0.27 ind:imp:3s; +meurtrissant meurtrir VER 0.80 6.35 0.00 0.27 par:pre; +meurtrissent meurtrir VER 0.80 6.35 0.00 0.14 ind:pre:3p; +meurtrissure meurtrissure NOM f s 0.09 1.42 0.04 0.88 +meurtrissures meurtrissure NOM f p 0.09 1.42 0.05 0.54 +meurtrit meurtrir VER 0.80 6.35 0.04 0.20 ind:pre:3s;ind:pas:3s; +meurtrière meurtrier NOM f s 24.42 4.59 2.36 1.22 +meurtrières meurtrière NOM f p 0.96 0.00 0.96 0.00 +meus mouvoir VER 1.75 13.18 0.02 0.14 imp:pre:2s;ind:pre:1s; +meusien meusien ADJ m s 0.00 0.54 0.00 0.20 +meusienne meusien ADJ f s 0.00 0.54 0.00 0.07 +meusiennes meusien ADJ f p 0.00 0.54 0.00 0.14 +meusiens meusien ADJ m p 0.00 0.54 0.00 0.14 +meut mouvoir VER 1.75 13.18 0.41 1.28 ind:pre:3s; +meute meute NOM f s 2.45 7.36 2.25 6.55 +meutes meute NOM f p 2.45 7.36 0.20 0.81 +meuvent mouvoir VER 1.75 13.18 0.17 0.68 ind:pre:3p; +mexicain mexicain NOM m s 8.06 2.43 3.98 1.62 +mexicaine mexicain ADJ f s 7.74 4.05 2.42 1.49 +mexicaines mexicain ADJ f p 7.74 4.05 0.59 0.68 +mexicains mexicain NOM m p 8.06 2.43 3.22 0.41 +mexico mexico ADV 0.54 0.07 0.54 0.07 +mezcal mezcal NOM m s 0.13 0.00 0.13 0.00 +mezza_voce mezza_voce ADV 0.00 0.07 0.00 0.07 +mezza_voce mezza_voce ADV 0.00 0.20 0.00 0.20 +mezzanine mezzanine NOM f s 0.13 0.47 0.12 0.27 +mezzanines mezzanine NOM f p 0.13 0.47 0.01 0.20 +mezzo_soprano mezzo_soprano NOM s 0.20 0.00 0.20 0.00 +mezzo mezzo NOM s 0.03 0.14 0.03 0.07 +mezzos mezzo NOM p 0.03 0.14 0.00 0.07 +mi_accablé mi_accablé ADJ m s 0.00 0.07 0.00 0.07 +mi_africains mi_africains NOM m 0.00 0.07 0.00 0.07 +mi_airain mi_airain NOM m s 0.00 0.07 0.00 0.07 +mi_allemand mi_allemand NOM m 0.00 0.07 0.00 0.07 +mi_allongé mi_allongé ADJ m s 0.00 0.07 0.00 0.07 +mi_américaine mi_américaine NOM m 0.02 0.00 0.02 0.00 +mi_ange mi_ange NOM m s 0.01 0.00 0.01 0.00 +mi_angevins mi_angevins NOM m 0.00 0.07 0.00 0.07 +mi_animal mi_animal ADJ m s 0.05 0.00 0.05 0.00 +mi_animaux mi_animaux ADJ m 0.00 0.07 0.00 0.07 +mi_août mi_août NOM f s 0.00 0.20 0.00 0.20 +mi_appointé mi_appointé ADJ f p 0.00 0.07 0.00 0.07 +mi_appréhension mi_appréhension NOM f s 0.00 0.07 0.00 0.07 +mi_arabe mi_arabe ADJ s 0.00 0.07 0.00 0.07 +mi_artisan mi_artisan NOM m s 0.00 0.07 0.00 0.07 +mi_automne mi_automne NOM f s 0.00 0.14 0.00 0.14 +mi_bandit mi_bandit NOM m s 0.00 0.07 0.00 0.07 +mi_bas mi_bas NOM m 0.14 0.14 0.14 0.14 +mi_biblique mi_biblique ADJ f s 0.00 0.07 0.00 0.07 +mi_black mi_black ADJ m s 0.14 0.00 0.14 0.00 +mi_blanc mi_blanc NOM m 0.00 0.14 0.00 0.14 +mi_blancs mi_blancs NOM m 0.00 0.07 0.00 0.07 +mi_bleu mi_bleu ADJ 0.00 0.07 0.00 0.07 +mi_bois mi_bois NOM m 0.00 0.07 0.00 0.07 +mi_bordel mi_bordel NOM m s 0.00 0.07 0.00 0.07 +mi_bourgeois mi_bourgeois ADJ m s 0.00 0.07 0.00 0.07 +mi_bovins mi_bovins NOM m 0.00 0.07 0.00 0.07 +mi_braconnier mi_braconnier NOM m p 0.00 0.07 0.00 0.07 +mi_bras mi_bras NOM m 0.00 0.14 0.00 0.14 +mi_britannique mi_britannique ADJ s 0.00 0.07 0.00 0.07 +mi_building mi_building NOM m s 0.00 0.07 0.00 0.07 +mi_bureaucrate mi_bureaucrate ADJ m p 0.00 0.07 0.00 0.07 +mi_bête mi_bête ADJ m s 0.04 0.00 0.04 0.00 +mi_côte mi_côte NOM f s 0.00 0.20 0.00 0.20 +mi_café mi_café ADJ 0.00 0.07 0.00 0.07 +mi_café mi_café NOM m s 0.00 0.07 0.00 0.07 +mi_campagnarde mi_campagnarde NOM m 0.00 0.07 0.00 0.07 +mi_canard mi_canard NOM m s 0.00 0.07 0.00 0.07 +mi_capacité mi_capacité NOM f s 0.02 0.00 0.02 0.00 +mi_carrier mi_carrier NOM f s 0.01 0.00 0.01 0.00 +mi_carême mi_carême NOM f s 0.01 0.61 0.01 0.61 +mi_chair mi_chair ADJ m s 0.00 0.20 0.00 0.20 +mi_chat mi_chat NOM m s 0.00 0.07 0.00 0.07 +mi_chatte mi_chatte NOM f s 0.01 0.00 0.01 0.00 +mi_chauve mi_chauve ADJ s 0.00 0.07 0.00 0.07 +mi_chemin mi_chemin NOM m s 3.72 6.35 3.72 6.35 +mi_châtaignier mi_châtaignier NOM m p 0.00 0.07 0.00 0.07 +mi_chou mi_chou NOM m s 0.00 0.07 0.00 0.07 +mi_chourineur mi_chourineur NOM m s 0.00 0.07 0.00 0.07 +mi_chèvre mi_chèvre NOM f s 0.00 0.07 0.00 0.07 +mi_chêne mi_chêne NOM m p 0.00 0.07 0.00 0.07 +mi_clair mi_clair ADJ m s 0.00 0.07 0.00 0.07 +mi_cloître mi_cloître NOM m s 0.00 0.07 0.00 0.07 +mi_clos mi_clos ADJ m 0.21 7.16 0.11 6.08 +mi_clos mi_clos ADJ f s 0.21 7.16 0.00 0.20 +mi_clos mi_clos ADJ f p 0.21 7.16 0.10 0.88 +mi_comique mi_comique ADJ m s 0.00 0.14 0.00 0.14 +mi_complice mi_complice ADJ m p 0.00 0.07 0.00 0.07 +mi_compote mi_compote NOM f s 0.00 0.07 0.00 0.07 +mi_confit mi_confit NOM m 0.00 0.07 0.00 0.07 +mi_confondu mi_confondu ADJ m p 0.00 0.07 0.00 0.07 +mi_connu mi_connu ADJ f s 0.01 0.00 0.01 0.00 +mi_consterné mi_consterné ADJ m s 0.00 0.07 0.00 0.07 +mi_contrarié mi_contrarié ADJ m p 0.00 0.07 0.00 0.07 +mi_corbeaux mi_corbeaux NOM m p 0.00 0.07 0.00 0.07 +mi_corps mi_corps NOM m 0.01 1.55 0.01 1.55 +mi_course mi_course NOM f s 0.08 0.27 0.08 0.27 +mi_courtois mi_courtois ADJ m 0.00 0.07 0.00 0.07 +mi_cousin mi_cousin NOM f s 0.00 0.14 0.00 0.07 +mi_cousin mi_cousin NOM m p 0.00 0.14 0.00 0.07 +mi_coutume mi_coutume NOM f s 0.00 0.07 0.00 0.07 +mi_crabe mi_crabe NOM m s 0.00 0.07 0.00 0.07 +mi_croyant mi_croyant NOM m 0.00 0.07 0.00 0.07 +mi_créature mi_créature NOM f s 0.00 0.07 0.00 0.07 +mi_cruel mi_cruel ADJ m s 0.00 0.07 0.00 0.07 +mi_cuisse mi_cuisse NOM f s 0.06 1.35 0.04 0.81 +mi_cuisse mi_cuisse NOM f p 0.06 1.35 0.01 0.54 +mi_céleste mi_céleste ADJ m s 0.00 0.07 0.00 0.07 +mi_curieux mi_curieux ADJ m p 0.00 0.14 0.00 0.14 +mi_cérémonieux mi_cérémonieux ADJ m 0.00 0.07 0.00 0.07 +mi_dentelle mi_dentelle NOM f s 0.00 0.07 0.00 0.07 +mi_didactique mi_didactique ADJ s 0.00 0.07 0.00 0.07 +mi_distance mi_distance NOM f s 0.04 0.34 0.04 0.34 +mi_douce mi_douce ADJ f s 0.00 0.07 0.00 0.07 +mi_décadents mi_décadents NOM m 0.00 0.07 0.00 0.07 +mi_décembre mi_décembre NOM m 0.01 0.27 0.01 0.27 +mi_démon mi_démon NOM m s 0.02 0.00 0.02 0.00 +mi_désir mi_désir NOM m s 0.00 0.07 0.00 0.07 +mi_effrayé mi_effrayé ADJ f s 0.00 0.20 0.00 0.07 +mi_effrayé mi_effrayé ADJ m p 0.00 0.20 0.00 0.14 +mi_effrontée mi_effrontée NOM m 0.00 0.07 0.00 0.07 +mi_enfant mi_enfant NOM s 0.01 0.07 0.01 0.07 +mi_enjoué mi_enjoué ADJ f s 0.00 0.07 0.00 0.07 +mi_enterré mi_enterré ADJ m s 0.00 0.07 0.00 0.07 +mi_envieux mi_envieux ADJ m p 0.00 0.07 0.00 0.07 +mi_espagnol mi_espagnol NOM m 0.00 0.07 0.00 0.07 +mi_européen mi_européen NOM m 0.00 0.14 0.00 0.14 +mi_excitation mi_excitation NOM f s 0.00 0.07 0.00 0.07 +mi_farceur mi_farceur NOM m 0.00 0.07 0.00 0.07 +mi_faux mi_faux ADJ m 0.00 0.07 0.00 0.07 +mi_femme mi_femme NOM f s 0.12 0.07 0.12 0.07 +mi_fermiers mi_fermiers NOM m 0.00 0.07 0.00 0.07 +mi_fiel mi_fiel NOM m s 0.00 0.07 0.00 0.07 +mi_figue mi_figue NOM f s 0.02 0.54 0.02 0.54 +mi_flanc mi_flanc NOM m s 0.00 0.14 0.00 0.14 +mi_fleuve mi_fleuve NOM m s 0.08 0.00 0.08 0.00 +mi_français mi_français NOM m 0.00 0.14 0.00 0.14 +mi_furieux mi_furieux ADJ m s 0.00 0.07 0.00 0.07 +mi_février mi_février NOM f s 0.01 0.07 0.01 0.07 +mi_garçon mi_garçon NOM m s 0.00 0.07 0.00 0.07 +mi_geste mi_geste NOM m s 0.00 0.07 0.00 0.07 +mi_gigolpince mi_gigolpince NOM m s 0.00 0.07 0.00 0.07 +mi_gnon mi_gnon NOM m s 0.00 0.07 0.00 0.07 +mi_goguenard mi_goguenard ADJ f s 0.00 0.07 0.00 0.07 +mi_gonzesse mi_gonzesse NOM f s 0.00 0.07 0.00 0.07 +mi_goéland mi_goéland NOM m p 0.00 0.07 0.00 0.07 +mi_grave mi_grave ADJ p 0.00 0.07 0.00 0.07 +mi_grenier mi_grenier NOM m s 0.00 0.07 0.00 0.07 +mi_grognon mi_grognon NOM m 0.00 0.07 0.00 0.07 +mi_grondeur mi_grondeur ADJ m s 0.00 0.07 0.00 0.07 +mi_grossier mi_grossier ADJ f p 0.00 0.07 0.00 0.07 +mi_haute mi_haute ADJ f s 0.00 0.07 0.00 0.07 +mi_hauteur mi_hauteur NOM f s 0.17 2.91 0.17 2.91 +mi_historique mi_historique ADJ f p 0.00 0.07 0.00 0.07 +mi_homme mi_homme NOM m s 0.44 0.14 0.44 0.14 +mi_humain mi_humain NOM m 0.08 0.00 0.08 0.00 +mi_humaine mi_humaine NOM m 0.01 0.07 0.01 0.07 +mi_humains mi_humains NOM m 0.01 0.07 0.01 0.07 +mi_hésitant mi_hésitant ADJ m s 0.00 0.07 0.00 0.07 +mi_idiotes mi_idiotes NOM m 0.00 0.07 0.00 0.07 +mi_image mi_image NOM f p 0.00 0.14 0.00 0.14 +mi_indien mi_indien NOM m 0.01 0.07 0.01 0.07 +mi_indifférente mi_indifférente NOM m 0.00 0.07 0.00 0.07 +mi_indigné mi_indigné ADJ f s 0.00 0.07 0.00 0.07 +mi_indigène mi_indigène ADJ s 0.00 0.07 0.00 0.07 +mi_indulgent mi_indulgent ADJ m s 0.00 0.14 0.00 0.14 +mi_inquiet mi_inquiet ADJ f s 0.00 0.14 0.00 0.14 +mi_ironique mi_ironique ADJ m s 0.00 0.41 0.00 0.27 +mi_ironique mi_ironique ADJ p 0.00 0.41 0.00 0.14 +mi_jambe mi_jambe NOM f s 0.00 0.74 0.00 0.47 +mi_jambe mi_jambe NOM f p 0.00 0.74 0.00 0.27 +mi_janvier mi_janvier NOM f s 0.12 0.20 0.12 0.20 +mi_jaune mi_jaune ADJ s 0.00 0.14 0.00 0.07 +mi_jaune mi_jaune ADJ p 0.00 0.14 0.00 0.07 +mi_jersey mi_jersey NOM m s 0.00 0.14 0.00 0.14 +mi_joue mi_joue NOM f s 0.00 0.07 0.00 0.07 +mi_jour mi_jour NOM m s 0.00 0.07 0.00 0.07 +mi_journée mi_journée NOM f s 0.20 0.27 0.20 0.27 +mi_juif mi_juif NOM m 0.00 0.07 0.00 0.07 +mi_juillet mi_juillet NOM f s 0.02 0.41 0.02 0.41 +mi_juin mi_juin NOM f s 0.01 0.07 0.01 0.07 +mi_laiton mi_laiton NOM m s 0.00 0.07 0.00 0.07 +mi_lent mi_lent ADJ m s 0.01 0.00 0.01 0.00 +mi_londrès mi_londrès NOM m 0.00 0.07 0.00 0.07 +mi_longs mi_longs NOM m 0.15 0.34 0.15 0.34 +mi_longueur mi_longueur NOM f s 0.00 0.07 0.00 0.07 +mi_lourd mi_lourd ADJ m s 0.17 0.14 0.17 0.14 +mi_machine mi_machine NOM f s 0.07 0.00 0.06 0.00 +mi_machine mi_machine NOM f p 0.07 0.00 0.01 0.00 +mi_mai mi_mai NOM f s 0.01 0.00 0.01 0.00 +mi_mao mi_mao NOM s 0.00 0.07 0.00 0.07 +mi_marchande mi_marchande NOM m 0.00 0.07 0.00 0.07 +mi_mars mi_mars NOM f s 0.04 0.20 0.04 0.20 +mi_marécage mi_marécage NOM m p 0.00 0.07 0.00 0.07 +mi_menaçant mi_menaçant ADJ f s 0.00 0.07 0.00 0.07 +mi_meublé mi_meublé NOM m 0.00 0.07 0.00 0.07 +mi_mexicain mi_mexicain NOM m 0.01 0.00 0.01 0.00 +mi_miel mi_miel ADJ m s 0.00 0.07 0.00 0.07 +mi_mollet mi_mollet NOM m 0.01 0.20 0.01 0.20 +mi_mollets mi_mollets NOM m 0.00 0.27 0.00 0.27 +mi_mondaine mi_mondaine NOM m 0.00 0.07 0.00 0.07 +mi_moqueur mi_moqueur NOM m 0.00 0.14 0.00 0.14 +mi_mot mi_mot NOM m s 0.03 0.27 0.03 0.20 +mi_mot mi_mot NOM m p 0.03 0.27 0.00 0.07 +mi_mouton mi_mouton NOM m s 0.00 0.07 0.00 0.07 +mi_moyen mi_moyen ADJ m s 0.10 0.07 0.08 0.00 +mi_moyen mi_moyen ADJ m p 0.10 0.07 0.02 0.07 +mi_métal mi_métal NOM m s 0.00 0.07 0.00 0.07 +mi_narquoise mi_narquoise ADJ f s 0.00 0.07 0.00 0.07 +mi_noir mi_noir NOM m 0.00 0.07 0.00 0.07 +mi_novembre mi_novembre NOM f s 0.13 0.27 0.13 0.27 +mi_nuit mi_nuit NOM f s 0.00 0.07 0.00 0.07 +mi_obscur mi_obscur ADJ f s 0.00 0.07 0.00 0.07 +mi_octobre mi_octobre NOM f s 0.02 0.14 0.02 0.14 +mi_officiel mi_officiel NOM m 0.00 0.14 0.00 0.14 +mi_ogre mi_ogre NOM m s 0.00 0.07 0.00 0.07 +mi_oiseau mi_oiseau NOM m s 0.10 0.00 0.10 0.00 +mi_oriental mi_oriental NOM m 0.00 0.07 0.00 0.07 +mi_parcours mi_parcours NOM m 0.25 0.34 0.25 0.34 +mi_parti mi_parti ADJ f s 0.00 0.61 0.00 0.61 +mi_pathétique mi_pathétique ADJ s 0.00 0.07 0.00 0.07 +mi_patio mi_patio NOM m s 0.00 0.07 0.00 0.07 +mi_patois mi_patois NOM m 0.00 0.07 0.00 0.07 +mi_peau mi_peau NOM f s 0.00 0.07 0.00 0.07 +mi_pelouse mi_pelouse NOM f s 0.00 0.07 0.00 0.07 +mi_pensée mi_pensée NOM f p 0.00 0.14 0.00 0.14 +mi_pente mi_pente NOM f s 0.02 0.81 0.02 0.81 +mi_pierre mi_pierre NOM f s 0.00 0.07 0.00 0.07 +mi_pincé mi_pincé ADJ m s 0.00 0.07 0.00 0.07 +mi_plaintif mi_plaintif ADJ m s 0.00 0.20 0.00 0.20 +mi_plaisant mi_plaisant NOM m 0.00 0.07 0.00 0.07 +mi_pleurant mi_pleurant NOM m 0.00 0.07 0.00 0.07 +mi_pleurnichard mi_pleurnichard NOM m 0.00 0.07 0.00 0.07 +mi_plombier mi_plombier NOM m p 0.00 0.07 0.00 0.07 +mi_poisson mi_poisson NOM m s 0.00 0.14 0.00 0.14 +mi_poitrine mi_poitrine NOM f s 0.00 0.07 0.00 0.07 +mi_porcine mi_porcine NOM m 0.00 0.07 0.00 0.07 +mi_porté mi_porté NOM m 0.00 0.07 0.00 0.07 +mi_portugaise mi_portugaise NOM m 0.00 0.07 0.00 0.07 +mi_poucet mi_poucet NOM m s 0.00 0.07 0.00 0.07 +mi_poulet mi_poulet NOM m s 0.00 0.07 0.00 0.07 +mi_prestidigitateur mi_prestidigitateur NOM m s 0.00 0.07 0.00 0.07 +mi_promenoir mi_promenoir NOM m s 0.00 0.07 0.00 0.07 +mi_protecteur mi_protecteur NOM m 0.00 0.14 0.00 0.14 +mi_pêcheur mi_pêcheur NOM m p 0.00 0.07 0.00 0.07 +mi_putain mi_putain NOM f s 0.00 0.07 0.00 0.07 +mi_rageur mi_rageur ADJ m s 0.00 0.07 0.00 0.07 +mi_raide mi_raide ADJ f s 0.00 0.07 0.00 0.07 +mi_railleur mi_railleur NOM m 0.00 0.14 0.00 0.14 +mi_raisin mi_raisin NOM m s 0.02 0.61 0.02 0.61 +mi_renaissance mi_renaissance NOM f s 0.00 0.07 0.00 0.07 +mi_respectueux mi_respectueux ADJ f s 0.00 0.07 0.00 0.07 +mi_riant mi_riant ADJ m s 0.00 0.27 0.00 0.27 +mi_rose mi_rose NOM s 0.00 0.07 0.00 0.07 +mi_roulotte mi_roulotte NOM f s 0.00 0.07 0.00 0.07 +mi_route mi_route NOM f s 0.00 0.07 0.00 0.07 +mi_réalité mi_réalité NOM f s 0.00 0.07 0.00 0.07 +mi_régime mi_régime NOM m s 0.00 0.07 0.00 0.07 +mi_réprobateur mi_réprobateur ADJ m s 0.00 0.07 0.00 0.07 +mi_résigné mi_résigné NOM m 0.00 0.07 0.00 0.07 +mi_russe mi_russe ADJ m s 0.14 0.07 0.14 0.07 +mi_saison mi_saison NOM f s 0.14 0.00 0.14 0.00 +mi_salade mi_salade NOM f s 0.01 0.00 0.01 0.00 +mi_salaire mi_salaire NOM m s 0.01 0.00 0.01 0.00 +mi_samoan mi_samoan ADJ m s 0.01 0.00 0.01 0.00 +mi_sanglotant mi_sanglotant ADJ m s 0.00 0.07 0.00 0.07 +mi_satin mi_satin NOM m s 0.00 0.07 0.00 0.07 +mi_satisfait mi_satisfait ADJ m s 0.00 0.07 0.00 0.07 +mi_sceptique mi_sceptique ADJ m s 0.00 0.07 0.00 0.07 +mi_scientifique mi_scientifique ADJ f p 0.00 0.07 0.00 0.07 +mi_secours mi_secours NOM m 0.00 0.07 0.00 0.07 +mi_seigneur mi_seigneur NOM m s 0.00 0.07 0.00 0.07 +mi_sel mi_sel NOM m s 0.00 0.07 0.00 0.07 +mi_septembre mi_septembre NOM f s 0.03 0.27 0.03 0.27 +mi_sidéré mi_sidéré ADJ f s 0.00 0.07 0.00 0.07 +mi_singe mi_singe NOM m s 0.01 0.00 0.01 0.00 +mi_sombre mi_sombre ADJ m s 0.00 0.07 0.00 0.07 +mi_sommet mi_sommet NOM m s 0.00 0.07 0.00 0.07 +mi_songe mi_songe NOM m s 0.00 0.07 0.00 0.07 +mi_souriant mi_souriant ADJ m s 0.00 0.14 0.00 0.07 +mi_souriant mi_souriant ADJ f s 0.00 0.14 0.00 0.07 +mi_suisse mi_suisse ADJ s 0.00 0.07 0.00 0.07 +mi_série mi_série NOM f s 0.01 0.00 0.01 0.00 +mi_sérieux mi_sérieux ADJ m 0.00 0.20 0.00 0.20 +mi_tantouse mi_tantouse NOM f s 0.00 0.07 0.00 0.07 +mi_tendre mi_tendre NOM m 0.00 0.14 0.00 0.14 +mi_terrorisé mi_terrorisé ADJ m s 0.00 0.07 0.00 0.07 +mi_timide mi_timide ADJ s 0.00 0.07 0.00 0.07 +mi_tortue mi_tortue ADJ f s 0.00 0.07 0.00 0.07 +mi_tour mi_tour NOM s 0.00 0.07 0.00 0.07 +mi_tout mi_tout NOM m 0.00 0.07 0.00 0.07 +mi_tragique mi_tragique ADJ m s 0.00 0.07 0.00 0.07 +mi_trimestre mi_trimestre NOM m s 0.01 0.00 0.01 0.00 +mi_épaule mi_épaule NOM f s 0.00 0.07 0.00 0.07 +mi_étage mi_étage NOM m s 0.00 0.47 0.00 0.47 +mi_étendue mi_étendue NOM f s 0.00 0.07 0.00 0.07 +mi_étonné mi_étonné ADJ m s 0.00 0.14 0.00 0.14 +mi_été mi_été NOM m 0.00 0.27 0.00 0.27 +mi_étudiant mi_étudiant NOM m 0.00 0.07 0.00 0.07 +mi_éveillé mi_éveillé ADJ f s 0.00 0.14 0.00 0.14 +mi_velours mi_velours NOM m 0.00 0.07 0.00 0.07 +mi_verre mi_verre NOM m s 0.00 0.14 0.00 0.14 +mi_vie mi_vie NOM f s 0.00 0.07 0.00 0.07 +mi_voix mi_voix NOM f 0.31 14.39 0.31 14.39 +mi_voluptueux mi_voluptueux ADJ m 0.00 0.07 0.00 0.07 +mi_vrais mi_vrais NOM m 0.00 0.07 0.00 0.07 +mi_végétal mi_végétal NOM m 0.01 0.00 0.01 0.00 +mi_vénitien mi_vénitien NOM m 0.00 0.07 0.00 0.07 +mi mi NOM m 8.97 5.61 8.97 5.61 +miam_miam miam_miam ONO 0.56 0.68 0.56 0.68 +miam miam ONO 2.19 1.69 2.19 1.69 +miao miao ADJ m s 0.06 0.00 0.06 0.00 +miaou miaou NOM m s 0.46 1.55 0.45 1.35 +miaous miaou NOM m p 0.46 1.55 0.01 0.20 +miasme miasme NOM m s 0.06 1.28 0.01 0.14 +miasmes miasme NOM m p 0.06 1.28 0.05 1.15 +miaula miauler VER 1.15 6.15 0.00 0.54 ind:pas:3s; +miaulaient miauler VER 1.15 6.15 0.00 0.34 ind:imp:3p; +miaulais miauler VER 1.15 6.15 0.00 0.07 ind:imp:1s; +miaulait miauler VER 1.15 6.15 0.01 0.81 ind:imp:3s; +miaulant miauler VER 1.15 6.15 0.02 0.74 par:pre; +miaule miauler VER 1.15 6.15 0.88 1.15 imp:pre:2s;ind:pre:3s; +miaulement miaulement NOM m s 1.35 2.57 0.64 1.55 +miaulements miaulement NOM m p 1.35 2.57 0.70 1.01 +miaulent miauler VER 1.15 6.15 0.03 0.34 ind:pre:3p; +miauler miauler VER 1.15 6.15 0.20 1.62 inf; +miauleur miauleur ADJ m s 0.01 0.00 0.01 0.00 +miaulez miauler VER 1.15 6.15 0.01 0.07 ind:pre:2p; +miaulé miauler VER m s 1.15 6.15 0.00 0.47 par:pas; +mica mica NOM m s 0.34 2.77 0.34 2.50 +micacées micacé ADJ f p 0.00 0.14 0.00 0.14 +micas mica NOM m p 0.34 2.77 0.00 0.27 +miche miche NOM f s 2.20 9.80 0.70 4.59 +micheline micheline NOM f s 0.00 0.20 0.00 0.20 +miches miche NOM f p 2.20 9.80 1.50 5.20 +micheton micheton NOM m s 0.59 5.41 0.46 3.51 +michetonnais michetonner VER 0.01 0.54 0.01 0.07 ind:imp:1s; +michetonne michetonner VER 0.01 0.54 0.00 0.20 ind:pre:1s;ind:pre:3s; +michetonner michetonner VER 0.01 0.54 0.00 0.14 inf; +michetonnes michetonner VER 0.01 0.54 0.00 0.14 ind:pre:2s; +michetonneuse michetonneuse NOM f s 0.00 0.14 0.00 0.07 +michetonneuses michetonneuse NOM f p 0.00 0.14 0.00 0.07 +michetons micheton NOM m p 0.59 5.41 0.13 1.89 +miché miché NOM m s 0.03 2.91 0.02 1.76 +michés miché NOM m p 0.03 2.91 0.01 1.15 +mickeys mickey NOM m p 0.19 0.20 0.19 0.20 +micmac micmac NOM m s 0.14 0.61 0.12 0.34 +micmacs micmac NOM m p 0.14 0.61 0.02 0.27 +micocoulier micocoulier NOM m s 0.00 0.34 0.00 0.14 +micocouliers micocoulier NOM m p 0.00 0.34 0.00 0.20 +micro_cravate micro_cravate NOM m s 0.01 0.00 0.01 0.00 +micro_onde micro_onde NOM f s 0.38 0.00 0.38 0.00 +micro_ondes micro_ondes NOM m 2.45 0.14 2.45 0.14 +micro_ordinateur micro_ordinateur NOM m s 0.01 0.14 0.01 0.07 +micro_ordinateur micro_ordinateur NOM m p 0.01 0.14 0.00 0.07 +micro_organisme micro_organisme NOM m s 0.08 0.00 0.08 0.00 +micro_trottoir micro_trottoir NOM m s 0.01 0.00 0.01 0.00 +micro micro NOM s 15.03 8.31 11.25 6.82 +microanalyse microanalyse NOM f s 0.02 0.00 0.02 0.00 +microbe microbe NOM m s 6.00 4.26 1.86 1.15 +microbes microbe NOM m p 6.00 4.26 4.14 3.11 +microbienne microbien ADJ f s 0.04 0.07 0.01 0.07 +microbiens microbien ADJ m p 0.04 0.07 0.02 0.00 +microbiologie microbiologie NOM f s 0.14 0.00 0.14 0.00 +microbiologiste microbiologiste NOM s 0.06 0.00 0.06 0.00 +microbus microbus NOM m 0.01 0.00 0.01 0.00 +microcassette microcassette NOM f s 0.00 0.07 0.00 0.07 +microchimie microchimie NOM f s 0.03 0.00 0.03 0.00 +microchirurgie microchirurgie NOM f s 0.06 0.07 0.06 0.07 +microcircuit microcircuit NOM m s 0.07 0.00 0.02 0.00 +microcircuits microcircuit NOM m p 0.07 0.00 0.05 0.00 +microclimat microclimat NOM m s 0.16 0.14 0.16 0.14 +microcomposants microcomposant NOM m p 0.01 0.00 0.01 0.00 +microcopie microcopie NOM f s 0.01 0.00 0.01 0.00 +microcosme microcosme NOM m s 0.23 0.34 0.23 0.34 +microcéphale microcéphale NOM m s 0.10 0.07 0.10 0.00 +microcéphales microcéphale ADJ p 0.00 0.27 0.00 0.07 +microcycles microcycle NOM m p 0.01 0.00 0.01 0.00 +microfiches microfiche NOM f p 0.04 0.00 0.04 0.00 +microfilm microfilm NOM m s 0.58 0.20 0.51 0.00 +microfilms microfilm NOM m p 0.58 0.20 0.07 0.20 +microgramme microgramme NOM m s 0.02 0.00 0.02 0.00 +microgravité microgravité NOM f s 0.01 0.00 0.01 0.00 +microlithes microlithe NOM m p 0.00 0.07 0.00 0.07 +micromètre micromètre NOM m s 0.04 0.00 0.02 0.00 +micromètres micromètre NOM m p 0.04 0.00 0.01 0.00 +micron micron NOM m s 0.74 0.27 0.24 0.20 +microns micron NOM m p 0.74 0.27 0.50 0.07 +microphone microphone NOM m s 0.73 0.68 0.48 0.34 +microphones microphone NOM m p 0.73 0.68 0.25 0.34 +microprocesseur microprocesseur NOM m s 0.36 0.20 0.17 0.07 +microprocesseurs microprocesseur NOM m p 0.36 0.20 0.20 0.14 +micros micro NOM p 15.03 8.31 3.78 1.49 +microscope microscope NOM m s 3.94 1.62 3.71 1.35 +microscopes microscope NOM m p 3.94 1.62 0.23 0.27 +microscopie microscopie NOM f s 0.04 0.00 0.04 0.00 +microscopique microscopique ADJ s 1.04 2.23 0.62 0.88 +microscopiquement microscopiquement ADV 0.01 0.07 0.01 0.07 +microscopiques microscopique ADJ p 1.04 2.23 0.42 1.35 +microseconde microseconde NOM f s 0.10 0.00 0.06 0.00 +microsecondes microseconde NOM f p 0.10 0.00 0.04 0.00 +microsillon microsillon NOM m s 0.00 0.27 0.00 0.14 +microsillons microsillon NOM m p 0.00 0.27 0.00 0.14 +microsociologie microsociologie NOM f s 0.00 0.07 0.00 0.07 +microsonde microsonde NOM f s 0.01 0.00 0.01 0.00 +microstructure microstructure NOM f s 0.03 0.07 0.03 0.00 +microstructures microstructure NOM f p 0.03 0.07 0.00 0.07 +microédition microédition NOM f s 0.01 0.00 0.01 0.00 +miction miction NOM f s 0.04 0.07 0.03 0.00 +mictions miction NOM f p 0.04 0.07 0.01 0.07 +middle_west middle_west NOM m s 0.05 0.14 0.05 0.14 +middle_class middle_class NOM f s 0.00 0.07 0.00 0.07 +midi midi NOM m 35.19 68.38 35.15 68.11 +midinette midinette NOM f s 0.13 2.23 0.06 1.62 +midinettes midinette NOM f p 0.13 2.23 0.07 0.61 +midis midi NOM m p 35.19 68.38 0.04 0.27 +midrash midrash NOM m s 0.02 0.00 0.02 0.00 +midship midship NOM m s 0.00 0.20 0.00 0.20 +mie mie NOM f s 1.41 5.74 1.39 5.68 +miel miel NOM m s 17.36 15.54 17.34 15.41 +miellat miellat NOM m s 0.01 0.00 0.01 0.00 +mielle mielle NOM f s 0.00 0.07 0.00 0.07 +mielleuse mielleux ADJ f s 0.81 1.82 0.20 0.41 +mielleuses mielleux ADJ f p 0.81 1.82 0.17 0.20 +mielleux mielleux ADJ m 0.81 1.82 0.44 1.22 +miellé miellé ADJ m s 0.00 0.07 0.00 0.07 +miellée miellé NOM f s 0.00 0.20 0.00 0.14 +miellées miellé NOM f p 0.00 0.20 0.00 0.07 +miels miel NOM m p 17.36 15.54 0.03 0.14 +mien mien PRO:pos m s 54.06 36.08 54.06 36.08 +mienne mienne PRO:pos f s 50.46 41.28 50.46 41.28 +miennes miennes PRO:pos m p 9.31 9.59 9.31 9.59 +miens miens PRO:pos m p 16.32 21.15 16.32 21.15 +mies mie NOM f p 1.41 5.74 0.03 0.07 +miette miette NOM f s 8.68 17.16 2.54 4.12 +miettes miette NOM f p 8.68 17.16 6.13 13.04 +mieux_être mieux_être NOM m 0.12 0.20 0.12 0.20 +mieux_vivre mieux_vivre NOM m s 0.00 0.07 0.00 0.07 +mieux mieux ADV 651.73 398.38 651.73 398.38 +mignard mignard ADJ m s 0.00 1.35 0.00 0.34 +mignardant mignarder VER 0.00 0.20 0.00 0.07 par:pre; +mignarde mignard ADJ f s 0.00 1.35 0.00 0.81 +mignardement mignardement ADV 0.00 0.07 0.00 0.07 +mignardes mignard ADJ f p 0.00 1.35 0.00 0.14 +mignardise mignardise NOM f s 0.03 0.88 0.02 0.14 +mignardises mignardise NOM f p 0.03 0.88 0.01 0.74 +mignards mignard ADJ m p 0.00 1.35 0.00 0.07 +mignardé mignarder VER m s 0.00 0.20 0.00 0.07 par:pas; +mignon mignon ADJ m s 69.71 13.58 46.14 6.49 +mignonne mignon ADJ f s 69.71 13.58 17.41 4.73 +mignonnement mignonnement ADV 0.00 0.14 0.00 0.14 +mignonnes mignon ADJ f p 69.71 13.58 1.37 0.74 +mignonnet mignonnet ADJ m s 0.17 0.27 0.07 0.14 +mignonnets mignonnet ADJ m p 0.17 0.27 0.00 0.07 +mignonnette mignonnet ADJ f s 0.17 0.27 0.10 0.00 +mignonnettes mignonnette NOM f p 0.06 0.14 0.01 0.07 +mignons mignon ADJ m p 69.71 13.58 4.78 1.62 +mignoter mignoter VER 0.01 0.41 0.01 0.27 inf; +mignoteront mignoter VER 0.01 0.41 0.00 0.07 ind:fut:3p; +mignoté mignoter VER m s 0.01 0.41 0.00 0.07 par:pas; +migraine migraine NOM f s 10.32 6.01 7.51 4.05 +migraines migraine NOM f p 10.32 6.01 2.80 1.96 +migraineuse migraineuse NOM f s 0.01 0.07 0.01 0.07 +migraineux migraineux NOM m 0.04 0.00 0.04 0.00 +migrait migrer VER 0.83 0.14 0.01 0.00 ind:imp:3s; +migrant migrer VER 0.83 0.14 0.01 0.00 par:pre; +migrante migrant ADJ f s 0.00 0.14 0.00 0.07 +migrants migrant NOM m p 0.03 0.54 0.03 0.27 +migrateur migrateur ADJ m s 0.35 1.55 0.19 0.41 +migrateurs migrateur ADJ m p 0.35 1.55 0.16 1.08 +migration migration NOM f s 0.74 2.64 0.71 1.76 +migrations migration NOM f p 0.74 2.64 0.03 0.88 +migratoire migratoire ADJ s 0.06 0.14 0.02 0.00 +migratoires migratoire ADJ p 0.06 0.14 0.04 0.14 +migratrice migrateur ADJ f s 0.35 1.55 0.01 0.00 +migratrices migrateur ADJ f p 0.35 1.55 0.00 0.07 +migre migrer VER 0.83 0.14 0.03 0.07 ind:pre:3s; +migrent migrer VER 0.83 0.14 0.24 0.00 ind:pre:3p; +migrer migrer VER 0.83 0.14 0.44 0.00 inf; +migres migrer VER 0.83 0.14 0.01 0.00 ind:pre:2s; +migré migrer VER m s 0.83 0.14 0.08 0.07 par:pas; +mijaurée mijaurée NOM f s 0.61 1.01 0.57 0.68 +mijaurées mijaurée NOM f p 0.61 1.01 0.04 0.34 +mijota mijoter VER 6.98 7.57 0.00 0.07 ind:pas:3s; +mijotaient mijoter VER 6.98 7.57 0.00 0.34 ind:imp:3p; +mijotais mijoter VER 6.98 7.57 0.05 0.14 ind:imp:1s;ind:imp:2s; +mijotait mijoter VER 6.98 7.57 0.28 1.49 ind:imp:3s; +mijotant mijoter VER 6.98 7.57 0.00 0.27 par:pre; +mijote mijoter VER 6.98 7.57 1.85 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mijotent mijoter VER 6.98 7.57 0.51 0.34 ind:pre:3p; +mijoter mijoter VER 6.98 7.57 1.28 1.55 inf; +mijotera mijoter VER 6.98 7.57 0.00 0.07 ind:fut:3s; +mijotes mijoter VER 6.98 7.57 1.73 0.34 ind:pre:2s; +mijoteuse mijoteuse NOM f s 0.01 0.07 0.01 0.07 +mijotez mijoter VER 6.98 7.57 0.75 0.07 imp:pre:2p;ind:pre:2p; +mijotions mijoter VER 6.98 7.57 0.00 0.07 ind:imp:1p; +mijotons mijoter VER 6.98 7.57 0.00 0.14 imp:pre:1p;ind:pre:1p; +mijoté mijoter VER m s 6.98 7.57 0.34 0.88 par:pas; +mijotées mijoter VER f p 6.98 7.57 0.01 0.07 par:pas; +mijotés mijoter VER m p 6.98 7.57 0.17 0.34 par:pas; +mikado mikado NOM m s 0.28 0.88 0.28 0.88 +mil mil ADJ:num 0.46 0.61 0.46 0.61 +milady milady NOM f s 3.18 0.34 3.18 0.34 +milan milan NOM m s 0.14 0.34 0.14 0.14 +milanais milanais ADJ m 0.37 0.47 0.23 0.14 +milanaise milanais ADJ f s 0.37 0.47 0.14 0.27 +milanaises milanais NOM f p 0.23 0.27 0.00 0.14 +milans milan NOM m p 0.14 0.34 0.01 0.20 +mildiou mildiou NOM m s 0.04 0.00 0.04 0.00 +mile mile NOM m s 8.34 1.28 0.90 0.07 +miles mile NOM m p 8.34 1.28 7.44 1.22 +milice milice NOM f s 3.77 4.39 3.25 2.43 +milices milice NOM f p 3.77 4.39 0.53 1.96 +milicien milicien NOM m s 0.78 8.92 0.20 1.35 +miliciennes milicienne NOM f p 0.01 0.00 0.01 0.00 +miliciens milicien NOM m p 0.78 8.92 0.57 7.50 +milieu milieu NOM m s 70.27 256.08 68.60 246.69 +milieux milieu NOM m p 70.27 256.08 1.67 9.39 +milita militer VER 1.10 4.26 0.00 0.14 ind:pas:3s; +militaient militer VER 1.10 4.26 0.00 0.07 ind:imp:3p; +militaire militaire ADJ s 43.73 96.22 35.09 69.19 +militairement militairement ADV 0.12 1.15 0.12 1.15 +militaires militaire NOM p 13.24 18.99 9.74 11.96 +militait militer VER 1.10 4.26 0.16 0.95 ind:imp:3s; +militant militant NOM m s 2.92 11.55 1.18 4.86 +militante militant ADJ f s 0.92 3.45 0.19 1.22 +militantes militant NOM f p 2.92 11.55 0.06 0.14 +militantisme militantisme NOM m s 0.06 0.74 0.06 0.74 +militants militant NOM m p 2.92 11.55 1.54 5.61 +militarisation militarisation NOM f s 0.04 0.00 0.04 0.00 +militariser militariser VER 0.05 0.07 0.03 0.00 inf; +militarisme militarisme NOM m s 0.03 0.20 0.03 0.20 +militariste militariste ADJ s 0.03 0.47 0.02 0.34 +militaristes militariste ADJ p 0.03 0.47 0.01 0.14 +militarisé militariser VER m s 0.05 0.07 0.02 0.07 par:pas; +militaro_industriel militaro_industriel ADJ m s 0.06 0.00 0.05 0.00 +militaro_industriel militaro_industriel ADJ f s 0.06 0.00 0.01 0.00 +militaro militaro ADV 0.01 0.00 0.01 0.00 +milite militer VER 1.10 4.26 0.58 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +militent militer VER 1.10 4.26 0.03 0.27 ind:pre:3p; +militer militer VER 1.10 4.26 0.09 0.95 inf; +militerai militer VER 1.10 4.26 0.00 0.07 ind:fut:1s; +milites militer VER 1.10 4.26 0.04 0.07 ind:pre:2s; +militons militer VER 1.10 4.26 0.02 0.00 ind:pre:1p; +militèrent militer VER 1.10 4.26 0.00 0.07 ind:pas:3p; +milité militer VER m s 1.10 4.26 0.15 0.95 par:pas; +milk_bar milk_bar NOM m s 0.03 0.20 0.03 0.14 +milk_bar milk_bar NOM m p 0.03 0.20 0.00 0.07 +milk_shake milk_shake NOM m s 1.85 0.14 1.27 0.14 +milk_shake milk_shake NOM m p 1.85 0.14 0.45 0.00 +milk_shake milk_shake NOM m s 1.85 0.14 0.13 0.00 +mille_feuille mille_feuille NOM m s 0.03 1.08 0.02 0.20 +mille_feuille mille_feuille NOM m p 0.03 1.08 0.01 0.88 +mille_pattes mille_pattes NOM m 0.39 2.09 0.39 2.09 +mille mille ADJ:num 55.43 142.09 55.43 142.09 +millefeuille millefeuille NOM s 0.10 0.54 0.09 0.34 +millefeuilles millefeuille NOM p 0.10 0.54 0.01 0.20 +millenium millenium NOM m s 0.08 0.07 0.08 0.07 +milles mille NOM m p 29.63 30.68 3.46 3.04 +millet millet NOM m s 0.17 0.61 0.17 0.61 +milli milli ADV 0.16 0.14 0.16 0.14 +milliaire milliaire ADJ f s 0.00 0.14 0.00 0.14 +milliard milliard NOM m s 17.52 14.39 4.02 2.43 +milliardaire milliardaire NOM s 2.13 2.77 1.69 1.55 +milliardaires milliardaire NOM p 2.13 2.77 0.44 1.22 +milliardième milliardième ADJ 0.02 0.00 0.02 0.00 +milliards milliard NOM m p 17.52 14.39 13.49 11.96 +millier millier NOM m s 37.94 42.43 3.15 2.36 +milliers millier NOM m p 37.94 42.43 34.78 40.07 +milligramme milligramme NOM m s 1.06 0.34 0.23 0.27 +milligrammes milligramme NOM m p 1.06 0.34 0.83 0.07 +millilitre millilitre NOM m s 0.04 0.00 0.04 0.00 +millimètre millimètre NOM m s 2.77 6.76 1.58 4.46 +millimètres millimètre NOM m p 2.77 6.76 1.20 2.30 +millimétrique millimétrique ADJ s 0.15 0.27 0.14 0.14 +millimétriques millimétrique ADJ p 0.15 0.27 0.01 0.14 +millimétré millimétré ADJ m s 0.02 0.47 0.02 0.34 +millimétrées millimétré ADJ f p 0.02 0.47 0.00 0.07 +millimétrés millimétré ADJ m p 0.02 0.47 0.00 0.07 +million million NOM m s 124.70 54.05 36.78 7.84 +millionième millionième ADJ 0.22 0.34 0.22 0.34 +millionnaire millionnaire ADJ s 3.59 0.88 2.82 0.61 +millionnaires millionnaire ADJ p 3.59 0.88 0.78 0.27 +millions million NOM m p 124.70 54.05 87.92 46.22 +milliseconde milliseconde NOM f s 0.16 0.14 0.09 0.07 +millisecondes milliseconde NOM f p 0.16 0.14 0.08 0.07 +millième millième NOM m s 0.29 0.95 0.17 0.88 +millièmes millième NOM m p 0.29 0.95 0.12 0.07 +millénaire millénaire NOM m s 3.45 5.41 2.10 0.74 +millénaires millénaire NOM m p 3.45 5.41 1.36 4.66 +millénarisme millénarisme NOM m s 0.01 0.00 0.01 0.00 +millénariste millénariste ADJ f s 0.02 0.00 0.02 0.00 +millénium millénium NOM m s 0.13 0.00 0.13 0.00 +millésime millésime NOM m s 0.27 1.01 0.25 0.61 +millésimes millésime NOM m p 0.27 1.01 0.02 0.41 +millésimé millésimer VER m s 0.22 0.54 0.17 0.20 par:pas; +millésimée millésimer VER f s 0.22 0.54 0.01 0.00 par:pas; +millésimées millésimer VER f p 0.22 0.54 0.00 0.14 par:pas; +millésimés millésimer VER m p 0.22 0.54 0.03 0.20 par:pas; +milonga milonga NOM f s 0.03 0.00 0.03 0.00 +milord milord NOM m s 2.72 0.88 2.66 0.81 +milords milord NOM m p 2.72 0.88 0.07 0.07 +milouin milouin NOM m s 0.01 0.00 0.01 0.00 +milésiennes milésien ADJ f p 0.00 0.07 0.00 0.07 +mima mimer VER 0.93 9.86 0.00 1.22 ind:pas:3s; +mimaient mimer VER 0.93 9.86 0.00 0.14 ind:imp:3p; +mimais mimer VER 0.93 9.86 0.12 0.27 ind:imp:1s;ind:imp:2s; +mimait mimer VER 0.93 9.86 0.13 1.96 ind:imp:3s; +mimant mimer VER 0.93 9.86 0.16 1.69 par:pre; +mimas mimer VER 0.93 9.86 0.01 0.00 ind:pas:2s; +mime mime NOM m s 5.35 1.08 5.11 0.88 +miment mimer VER 0.93 9.86 0.02 0.47 ind:pre:3p; +mimer mimer VER 0.93 9.86 0.11 1.96 inf; +mimerai mimer VER 0.93 9.86 0.00 0.07 ind:fut:1s; +mimerait mimer VER 0.93 9.86 0.00 0.14 cnd:pre:3s; +mimes mime NOM m p 5.35 1.08 0.25 0.20 +mimi mimi NOM m s 0.44 0.14 0.41 0.14 +mimique mimique NOM f s 0.19 6.22 0.01 3.58 +mimiques mimique NOM f p 0.19 6.22 0.18 2.64 +mimis mimi NOM m p 0.44 0.14 0.02 0.00 +mimodrames mimodrame NOM m p 0.00 0.07 0.00 0.07 +mimolette mimolette NOM f s 0.01 0.00 0.01 0.00 +mimâmes mimer VER 0.93 9.86 0.00 0.07 ind:pas:1p; +mimosa mimosa NOM m s 1.75 2.91 0.97 1.35 +mimosas mimosa NOM m p 1.75 2.91 0.77 1.55 +mimosées mimosée NOM f p 0.00 0.07 0.00 0.07 +mimèrent mimer VER 0.93 9.86 0.00 0.27 ind:pas:3p; +mimé mimer VER m s 0.93 9.86 0.03 0.54 par:pas; +mimée mimer VER f s 0.93 9.86 0.01 0.20 par:pas; +mimétique mimétique ADJ s 0.04 0.07 0.04 0.07 +mimétisme mimétisme NOM m s 0.17 1.55 0.17 1.55 +min min NOM m 7.85 1.08 7.85 1.08 +mina miner VER 4.83 10.47 0.17 0.00 ind:pas:3s; +minable minable ADJ s 15.58 11.55 13.06 8.72 +minablement minablement ADV 0.14 0.07 0.14 0.07 +minables minable ADJ p 15.58 11.55 2.52 2.84 +minage minage NOM m s 0.01 0.07 0.01 0.07 +minait miner VER 4.83 10.47 0.18 0.54 ind:imp:3s; +minant miner VER 4.83 10.47 0.17 0.00 par:pre; +minaret minaret NOM m s 0.34 1.96 0.21 0.88 +minarets minaret NOM m p 0.34 1.96 0.13 1.08 +minas miner VER 4.83 10.47 0.04 0.00 ind:pas:2s; +minauda minauder VER 0.17 3.38 0.00 0.68 ind:pas:3s; +minaudaient minauder VER 0.17 3.38 0.00 0.07 ind:imp:3p; +minaudait minauder VER 0.17 3.38 0.02 0.54 ind:imp:3s; +minaudant minauder VER 0.17 3.38 0.01 0.81 par:pre; +minaudants minaudant ADJ m p 0.01 0.07 0.00 0.07 +minaude minauder VER 0.17 3.38 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +minaudent minauder VER 0.17 3.38 0.01 0.14 ind:pre:3p; +minauder minauder VER 0.17 3.38 0.07 0.47 inf; +minauderait minauder VER 0.17 3.38 0.00 0.07 cnd:pre:3s; +minauderie minauderie NOM f s 0.12 0.88 0.00 0.27 +minauderies minauderie NOM f p 0.12 0.88 0.12 0.61 +minaudeur minaudeur ADJ m s 0.00 0.07 0.00 0.07 +minaudez minauder VER 0.17 3.38 0.01 0.00 ind:pre:2p; +minaudière minaudier ADJ f s 0.00 0.27 0.00 0.27 +minaudé minauder VER m s 0.17 3.38 0.00 0.14 par:pas; +minbar minbar NOM m s 0.12 0.00 0.12 0.00 +mince mince ONO 14.62 2.84 14.62 2.84 +minces mince ADJ p 16.27 78.51 2.17 18.18 +minceur minceur NOM f s 0.20 2.36 0.20 2.30 +minceurs minceur NOM f p 0.20 2.36 0.00 0.07 +minci mincir VER m s 0.55 0.20 0.21 0.14 par:pas; +mincir mincir VER 0.55 0.20 0.32 0.00 inf; +mincirait mincir VER 0.55 0.20 0.01 0.00 cnd:pre:3s; +mincis mincir VER 0.55 0.20 0.01 0.00 ind:pre:2s; +mincissaient mincir VER 0.55 0.20 0.00 0.07 ind:imp:3p; +mine mine NOM f s 48.08 65.88 36.84 48.18 +minent miner VER 4.83 10.47 0.02 0.20 ind:pre:3p; +miner miner VER 4.83 10.47 0.58 1.35 inf; +minera miner VER 4.83 10.47 0.02 0.00 ind:fut:3s; +minerai minerai NOM m s 1.38 1.01 1.21 0.95 +minerais minerai NOM m p 1.38 1.01 0.17 0.07 +minerval minerval NOM m s 0.01 0.00 0.01 0.00 +minerve minerve NOM f s 0.69 0.07 0.69 0.07 +mines mine NOM f p 48.08 65.88 11.24 17.70 +minestrone minestrone NOM m s 0.27 0.07 0.27 0.07 +minet minet NOM m s 5.87 6.42 2.22 2.23 +minets minet NOM m p 5.87 6.42 0.68 1.22 +minette minet NOM f s 5.87 6.42 2.98 2.03 +minettes minette NOM f p 1.21 0.00 1.21 0.00 +mineur mineur ADJ m s 8.01 6.62 3.79 2.70 +mineure mineur ADJ f s 8.01 6.62 1.96 1.62 +mineures mineur ADJ f p 8.01 6.62 0.53 0.74 +mineurs mineur NOM m p 8.79 11.96 4.09 6.01 +ming ming ADJ s 0.04 0.00 0.04 0.00 +mini_chaîne mini_chaîne NOM f s 0.14 0.07 0.14 0.07 +mini_jupe mini_jupe NOM f s 0.62 0.54 0.56 0.34 +mini_jupe mini_jupe NOM f p 0.62 0.54 0.06 0.20 +mini_ordinateur mini_ordinateur NOM m s 0.02 0.00 0.02 0.00 +mini mini ADJ 1.69 0.14 1.69 0.14 +miniature miniature NOM f s 2.18 10.07 1.62 7.09 +miniatures miniature NOM f p 2.18 10.07 0.56 2.97 +miniaturisation miniaturisation NOM f s 0.15 0.14 0.15 0.14 +miniaturise miniaturiser VER 0.22 0.34 0.03 0.00 ind:pre:3s; +miniaturiser miniaturiser VER 0.22 0.34 0.08 0.07 inf; +miniaturiste miniaturiste NOM s 0.01 0.47 0.01 0.47 +miniaturisé miniaturiser VER m s 0.22 0.34 0.06 0.14 par:pas; +miniaturisée miniaturiser VER f s 0.22 0.34 0.02 0.07 par:pas; +miniaturisées miniaturiser VER f p 0.22 0.34 0.01 0.00 par:pas; +miniaturisés miniaturiser VER m p 0.22 0.34 0.01 0.07 par:pas; +minibar minibar NOM m s 0.26 0.00 0.26 0.00 +minibus minibus NOM m 1.99 0.54 1.99 0.54 +minicassette minicassette NOM s 0.02 0.27 0.01 0.20 +minicassettes minicassette NOM p 0.02 0.27 0.01 0.07 +minier minier ADJ m s 1.09 1.42 0.28 0.47 +miniers minier ADJ m p 1.09 1.42 0.20 0.20 +minigolf minigolf NOM m s 0.23 0.00 0.23 0.00 +minijupe minijupe NOM f s 1.20 0.54 0.82 0.41 +minijupes minijupe NOM f p 1.20 0.54 0.38 0.14 +minima minimum NOM m p 7.12 11.82 0.04 0.34 +minimal minimal ADJ m s 1.39 0.81 0.28 0.34 +minimale minimal ADJ f s 1.39 0.81 0.83 0.34 +minimales minimal ADJ f p 1.39 0.81 0.22 0.07 +minimaliser minimaliser VER 0.01 0.00 0.01 0.00 inf; +minimalisme minimalisme NOM m s 0.06 0.00 0.06 0.00 +minimaliste minimaliste ADJ s 0.10 0.00 0.10 0.00 +minimaux minimal ADJ m p 1.39 0.81 0.04 0.07 +minimax minimax NOM m 0.01 0.00 0.01 0.00 +minime minime ADJ s 1.87 2.84 1.04 2.16 +minimes minime ADJ p 1.87 2.84 0.82 0.68 +minimisa minimiser VER 2.10 2.57 0.01 0.00 ind:pas:3s; +minimisaient minimiser VER 2.10 2.57 0.00 0.07 ind:imp:3p; +minimisait minimiser VER 2.10 2.57 0.00 0.07 ind:imp:3s; +minimisant minimiser VER 2.10 2.57 0.05 0.20 par:pre; +minimisation minimisation NOM f s 0.00 0.07 0.00 0.07 +minimise minimiser VER 2.10 2.57 0.39 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +minimisent minimiser VER 2.10 2.57 0.03 0.07 ind:pre:3p; +minimiser minimiser VER 2.10 2.57 1.42 1.42 inf; +minimiserons minimiser VER 2.10 2.57 0.01 0.00 ind:fut:1p; +minimises minimiser VER 2.10 2.57 0.02 0.07 ind:pre:2s; +minimisez minimiser VER 2.10 2.57 0.09 0.00 imp:pre:2p;ind:pre:2p; +minimisons minimiser VER 2.10 2.57 0.01 0.00 imp:pre:1p; +minimisé minimiser VER m s 2.10 2.57 0.04 0.14 par:pas; +minimisée minimiser VER f s 2.10 2.57 0.03 0.00 par:pas; +minimisées minimiser VER f p 2.10 2.57 0.01 0.07 par:pas; +minimum minimum NOM m s 7.12 11.82 7.07 11.49 +minimums minimum ADJ p 3.77 1.76 0.05 0.00 +minis mini NOM p 1.01 1.01 0.14 0.00 +ministrables ministrable ADJ p 0.00 0.07 0.00 0.07 +ministre ministre NOM s 41.41 81.15 38.10 61.01 +ministres ministre NOM m p 41.41 81.15 3.31 20.14 +ministère ministère NOM m s 17.47 17.50 16.91 14.32 +ministères ministère NOM m p 17.47 17.50 0.55 3.18 +ministériel ministériel ADJ m s 0.40 2.77 0.38 0.95 +ministérielle ministériel ADJ f s 0.40 2.77 0.01 0.74 +ministérielles ministériel ADJ f p 0.40 2.77 0.00 0.41 +ministériels ministériel ADJ m p 0.40 2.77 0.01 0.68 +minitel minitel NOM m s 0.00 0.34 0.00 0.34 +minière minier ADJ f s 1.09 1.42 0.53 0.54 +minières minier ADJ f p 1.09 1.42 0.08 0.20 +minium minium NOM m s 0.04 0.95 0.04 0.95 +mino mino ADJ m s 1.13 0.27 1.13 0.27 +minoen minoen NOM m s 0.01 0.20 0.01 0.07 +minoenne minoen ADJ f s 0.07 0.34 0.06 0.14 +minoens minoen ADJ m p 0.07 0.34 0.01 0.00 +minois minois NOM m 1.11 1.55 1.11 1.55 +minoritaire minoritaire ADJ s 0.60 0.61 0.17 0.34 +minoritaires minoritaire ADJ p 0.60 0.61 0.44 0.27 +minorité minorité NOM f s 4.03 2.84 3.15 2.36 +minorités minorité NOM f p 4.03 2.84 0.89 0.47 +minot minot NOM m s 0.58 1.35 0.58 1.08 +minotaure minotaure NOM m s 0.03 0.14 0.02 0.07 +minotaures minotaure NOM m p 0.03 0.14 0.01 0.07 +minoteries minoterie NOM f p 0.00 0.14 0.00 0.14 +minotier minotier NOM m s 0.00 0.61 0.00 0.61 +minots minot NOM m p 0.58 1.35 0.00 0.27 +minou minou NOM m s 7.00 1.55 6.46 1.55 +minouche minouche ADJ s 0.17 0.81 0.17 0.81 +minous minou NOM m p 7.00 1.55 0.55 0.00 +miné miner VER m s 4.83 10.47 1.04 2.50 par:pas; +minée miner VER f s 4.83 10.47 0.20 1.01 par:pas; +minées miner VER f p 4.83 10.47 0.02 0.27 par:pas; +minuit minuit NOM m s 38.51 29.86 38.47 29.80 +minuits minuit NOM m p 38.51 29.86 0.03 0.07 +minéral minéral NOM m s 1.03 0.81 0.28 0.74 +minérale minéral ADJ f s 4.20 8.78 3.28 5.88 +minérales minéral ADJ f p 4.20 8.78 0.31 0.74 +minéraliers minéralier NOM m p 0.00 0.07 0.00 0.07 +minéralisation minéralisation NOM f s 0.01 0.00 0.01 0.00 +minéralisés minéraliser VER m p 0.00 0.07 0.00 0.07 par:pas; +minéralisés minéralisé ADJ m p 0.00 0.07 0.00 0.07 +minéralogique minéralogique ADJ s 0.38 0.74 0.31 0.34 +minéralogiques minéralogique ADJ p 0.38 0.74 0.07 0.41 +minéraux minéral NOM m p 1.03 0.81 0.76 0.07 +minus_habens minus_habens NOM m 0.00 0.14 0.00 0.14 +minés miner VER m p 4.83 10.47 0.10 0.34 par:pas; +minus minus NOM m 8.35 2.50 8.35 2.50 +minuscule minuscule ADJ s 7.26 62.09 5.07 38.04 +minuscules minuscule ADJ p 7.26 62.09 2.19 24.05 +minutage minutage NOM m s 0.08 0.34 0.08 0.34 +minute minute NOM f s 342.28 201.42 144.83 60.74 +minuter minuter VER 2.04 1.69 0.17 0.00 inf; +minuterie minuterie NOM f s 1.34 2.36 1.21 2.36 +minuteries minuterie NOM f p 1.34 2.36 0.13 0.00 +minutes minute NOM f p 342.28 201.42 197.45 140.68 +minuteur minuteur NOM m s 1.21 0.00 0.98 0.00 +minuteurs minuteur NOM m p 1.21 0.00 0.22 0.00 +minutie minutie NOM f s 0.62 3.58 0.48 3.45 +minuties minutie NOM f p 0.62 3.58 0.14 0.14 +minutieuse minutieux ADJ f s 1.81 7.03 0.57 2.84 +minutieusement minutieusement ADV 0.74 4.73 0.74 4.73 +minutieuses minutieux ADJ f p 1.81 7.03 0.02 1.08 +minutieux minutieux ADJ m 1.81 7.03 1.21 3.11 +minutions minuter VER 2.04 1.69 0.02 0.00 ind:imp:1p; +minutât minuter VER 2.04 1.69 0.00 0.07 sub:imp:3s; +minuté minuter VER m s 2.04 1.69 0.27 0.81 par:pas; +minutée minuter VER f s 2.04 1.69 0.04 0.07 par:pas; +minutés minuter VER m p 2.04 1.69 0.00 0.07 par:pas; +mioche mioche NOM s 1.07 2.30 0.54 1.08 +mioches mioche NOM p 1.07 2.30 0.53 1.22 +miquette miquette NOM f s 0.00 0.34 0.00 0.34 +mir mir NOM m s 0.33 0.68 0.33 0.68 +mira mirer VER 0.48 2.57 0.14 0.20 ind:pas:3s; +mirabelle mirabelle NOM f s 0.01 1.96 0.00 0.74 +mirabelles mirabelle NOM f p 0.01 1.96 0.01 1.22 +mirabellier mirabellier NOM m s 0.00 0.34 0.00 0.14 +mirabelliers mirabellier NOM m p 0.00 0.34 0.00 0.20 +mirabilis mirabilis NOM m 0.12 0.14 0.12 0.14 +miracle miracle NOM m s 56.89 42.16 39.78 34.12 +miracles miracle NOM m p 56.89 42.16 17.10 8.04 +miraculant miraculant ADJ m s 0.00 0.14 0.00 0.07 +miraculantes miraculant ADJ f p 0.00 0.14 0.00 0.07 +miraculeuse miraculeux ADJ f s 4.43 9.26 1.73 3.99 +miraculeusement miraculeusement ADV 1.34 4.53 1.34 4.53 +miraculeuses miraculeux ADJ f p 4.43 9.26 0.45 1.08 +miraculeux miraculeux ADJ m 4.43 9.26 2.25 4.19 +miraculé miraculé NOM m s 0.55 0.88 0.45 0.41 +miraculée miraculé NOM f s 0.55 0.88 0.05 0.34 +miraculés miraculé NOM m p 0.55 0.88 0.05 0.14 +mirador mirador NOM m s 0.23 4.73 0.15 3.04 +miradors mirador NOM m p 0.23 4.73 0.08 1.69 +mirage mirage NOM m s 1.83 10.07 1.42 6.08 +mirages mirage NOM m p 1.83 10.07 0.42 3.99 +miraient mirer VER 0.48 2.57 0.00 0.14 ind:imp:3p; +mirais mirer VER 0.48 2.57 0.00 0.07 ind:imp:1s; +mirait mirer VER 0.48 2.57 0.14 0.41 ind:imp:3s; +mirant mirer VER 0.48 2.57 0.00 0.20 par:pre; +miraud miraud ADJ m s 0.02 0.14 0.02 0.07 +mirauds miraud ADJ m p 0.02 0.14 0.00 0.07 +mire mire NOM f s 1.81 2.16 1.81 2.03 +mirent mettre VER 1004.84 1083.65 1.38 27.36 ind:pas:3p; +mirepoix mirepoix NOM f 0.01 0.00 0.01 0.00 +mirer mirer VER 0.48 2.57 0.05 0.61 inf; +mirerais mirer VER 0.48 2.57 0.00 0.07 cnd:pre:2s; +mires mire NOM f p 1.81 2.16 0.00 0.14 +mirette mirette NOM f s 0.16 6.01 0.00 4.32 +mirettes mirette NOM f p 0.16 6.01 0.16 1.69 +mirez mirer VER 0.48 2.57 0.00 0.07 imp:pre:2p; +mirifique mirifique ADJ s 0.03 1.08 0.02 0.61 +mirifiques mirifique ADJ p 0.03 1.08 0.01 0.47 +mirliflore mirliflore NOM m s 0.00 0.07 0.00 0.07 +mirliton mirliton NOM m s 0.05 1.15 0.04 0.34 +mirlitons mirliton NOM m p 0.05 1.15 0.01 0.81 +mirmidon mirmidon NOM m s 0.14 0.00 0.14 0.00 +miro miro ADJ s 1.32 0.61 1.32 0.54 +mirobolant mirobolant ADJ m s 0.17 1.42 0.14 0.54 +mirobolante mirobolant ADJ f s 0.17 1.42 0.01 0.27 +mirobolantes mirobolant ADJ f p 0.17 1.42 0.02 0.34 +mirobolants mirobolant ADJ m p 0.17 1.42 0.00 0.27 +miroir miroir NOM m s 28.35 63.99 24.89 48.58 +miroirs miroir NOM m p 28.35 63.99 3.46 15.41 +miroita miroiter VER 0.39 5.74 0.00 0.20 ind:pas:3s; +miroitaient miroiter VER 0.39 5.74 0.01 0.47 ind:imp:3p; +miroitait miroiter VER 0.39 5.74 0.01 0.68 ind:imp:3s; +miroitant miroiter VER 0.39 5.74 0.03 0.34 par:pre; +miroitante miroitant ADJ f s 0.04 3.51 0.01 1.82 +miroitantes miroitant ADJ f p 0.04 3.51 0.00 0.61 +miroitants miroitant ADJ m p 0.04 3.51 0.02 0.34 +miroite miroiter VER 0.39 5.74 0.03 0.81 ind:pre:3s; +miroitement miroitement NOM m s 0.04 2.43 0.04 1.89 +miroitements miroitement NOM m p 0.04 2.43 0.00 0.54 +miroitent miroiter VER 0.39 5.74 0.03 0.54 ind:pre:3p; +miroiter miroiter VER 0.39 5.74 0.29 2.70 inf; +miroiterie miroiterie NOM f s 0.02 0.07 0.02 0.07 +miroitier miroitier NOM m s 0.02 0.20 0.02 0.14 +miroitiers miroitier NOM m p 0.02 0.20 0.00 0.07 +miroités miroité ADJ m p 0.00 0.07 0.00 0.07 +mironton mironton NOM m s 0.01 1.08 0.01 0.81 +mirontons mironton NOM m p 0.01 1.08 0.00 0.27 +miros miro ADJ p 1.32 0.61 0.00 0.07 +miroton miroton NOM m s 0.01 0.34 0.01 0.34 +mirée mirer VER f s 0.48 2.57 0.00 0.07 par:pas; +mirus mirus NOM m 0.09 0.54 0.09 0.54 +mis mettre VER m 1004.84 1083.65 228.57 245.61 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +misa miser VER 11.80 3.78 0.34 0.14 ind:pas:3s; +misai miser VER 11.80 3.78 0.00 0.07 ind:pas:1s; +misaient miser VER 11.80 3.78 0.04 0.07 ind:imp:3p; +misaine misaine NOM f s 0.23 0.27 0.23 0.20 +misaines misaine NOM f p 0.23 0.27 0.00 0.07 +misais miser VER 11.80 3.78 0.03 0.20 ind:imp:1s; +misait miser VER 11.80 3.78 0.07 0.47 ind:imp:3s; +misant miser VER 11.80 3.78 0.20 0.27 par:pre; +misanthrope misanthrope NOM s 0.27 0.47 0.27 0.47 +misanthropes misanthrope ADJ p 0.06 0.61 0.00 0.07 +misanthropie misanthropie NOM f s 0.01 0.41 0.01 0.41 +misanthropiques misanthropique ADJ p 0.00 0.07 0.00 0.07 +miscible miscible ADJ m s 0.01 0.00 0.01 0.00 +mise mettre VER f s 1004.84 1083.65 35.33 46.69 par:pas; +misent miser VER 11.80 3.78 0.36 0.14 ind:pre:3p; +miser miser VER 11.80 3.78 2.79 0.74 inf; +misera miser VER 11.80 3.78 0.10 0.00 ind:fut:3s; +miserais miser VER 11.80 3.78 0.26 0.00 cnd:pre:1s;cnd:pre:2s; +miseras miser VER 11.80 3.78 0.02 0.00 ind:fut:2s; +miserere miserere NOM m 0.80 0.34 0.80 0.34 +miseriez miser VER 11.80 3.78 0.14 0.00 cnd:pre:2p; +miseront miser VER 11.80 3.78 0.01 0.00 ind:fut:3p; +mises mettre VER f p 1004.84 1083.65 5.36 9.05 par:pas; +misez miser VER 11.80 3.78 1.42 0.00 imp:pre:2p;ind:pre:2p; +misiez miser VER 11.80 3.78 0.21 0.00 ind:imp:2p; +misogyne misogyne ADJ s 0.32 0.54 0.29 0.47 +misogynes misogyne ADJ p 0.32 0.54 0.02 0.07 +misogynie misogynie NOM f s 0.23 1.01 0.23 1.01 +misons miser VER 11.80 3.78 0.20 0.00 imp:pre:1p;ind:pre:1p; +misât miser VER 11.80 3.78 0.00 0.07 sub:imp:3s; +miss miss NOM f 39.08 9.86 39.08 9.86 +missel missel NOM m s 0.59 3.38 0.53 3.04 +missels missel NOM m p 0.59 3.38 0.06 0.34 +missent mettre VER 1004.84 1083.65 0.00 0.41 sub:imp:3p; +missile missile NOM m s 16.70 0.74 7.47 0.41 +missiles missile NOM m p 16.70 0.74 9.23 0.34 +missilier missilier NOM m s 0.16 0.00 0.16 0.00 +mission_suicide mission_suicide NOM f s 0.03 0.07 0.03 0.07 +mission mission NOM f s 85.24 48.45 80.02 42.36 +missionna missionner VER 0.11 0.14 0.00 0.07 ind:pas:3s; +missionnaire missionnaire NOM s 2.29 2.16 1.27 0.95 +missionnaires missionnaire NOM p 2.29 2.16 1.02 1.22 +missionné missionner VER m s 0.11 0.14 0.11 0.00 par:pas; +missionnés missionner VER m p 0.11 0.14 0.00 0.07 par:pas; +missions mission NOM f p 85.24 48.45 5.22 6.08 +missive missive NOM f s 0.92 2.97 0.81 1.82 +missives missive NOM f p 0.92 2.97 0.11 1.15 +mister mister NOM m s 2.14 1.22 2.14 1.22 +misère misère NOM f s 18.77 47.23 16.85 39.46 +misères misère NOM f p 18.77 47.23 1.92 7.77 +mistigri mistigri NOM m s 0.00 0.14 0.00 0.07 +mistigris mistigri NOM m p 0.00 0.14 0.00 0.07 +mistonne miston NOM f s 0.00 0.41 0.00 0.20 +mistonnes miston NOM f p 0.00 0.41 0.00 0.20 +mistoufle mistoufle NOM f s 0.00 0.81 0.00 0.68 +mistoufles mistoufle NOM f p 0.00 0.81 0.00 0.14 +mistral mistral NOM m s 0.02 2.03 0.02 1.96 +mistrals mistral NOM m p 0.02 2.03 0.00 0.07 +misé miser VER m s 11.80 3.78 2.68 0.95 par:pas; +misérabilisme misérabilisme NOM m s 0.01 0.14 0.01 0.14 +misérabiliste misérabiliste ADJ m s 0.01 0.14 0.01 0.14 +misérable misérable ADJ s 13.16 22.97 10.17 16.22 +misérablement misérablement ADV 0.36 2.16 0.36 2.16 +misérables misérable ADJ p 13.16 22.97 2.98 6.76 +miséreuse miséreux ADJ f s 0.23 0.54 0.02 0.27 +miséreuses miséreuse NOM f p 0.01 0.00 0.01 0.00 +miséreux miséreux NOM m 0.89 1.35 0.88 1.35 +miséricorde miséricorde NOM f s 8.79 5.20 8.77 5.07 +miséricordes miséricorde NOM f p 8.79 5.20 0.02 0.14 +miséricordieuse miséricordieux ADJ f s 4.69 1.76 0.36 0.61 +miséricordieusement miséricordieusement ADV 0.00 0.07 0.00 0.07 +miséricordieuses miséricordieux ADJ f p 4.69 1.76 0.10 0.14 +miséricordieux miséricordieux ADJ m s 4.69 1.76 4.23 1.01 +mit mettre VER 1004.84 1083.65 7.48 185.20 ind:pas:3s; +mita mita NOM f s 0.06 0.07 0.06 0.07 +mitaine mitaine NOM f s 0.32 0.95 0.06 0.07 +mitaines mitaine NOM f p 0.32 0.95 0.26 0.88 +mitan mitan NOM m s 0.40 3.58 0.40 3.58 +mitard mitard NOM m s 1.91 4.32 1.91 4.26 +mitarder mitarder VER 0.00 0.20 0.00 0.07 inf; +mitards mitard NOM m p 1.91 4.32 0.00 0.07 +mitardés mitarder VER m p 0.00 0.20 0.00 0.14 par:pas; +mitchouriniens mitchourinien ADJ m p 0.00 0.07 0.00 0.07 +mite mite NOM f s 1.18 2.23 0.36 0.54 +mitent miter VER 0.23 0.34 0.00 0.07 ind:pre:3p; +miter miter VER 0.23 0.34 0.20 0.00 inf; +mites mite NOM f p 1.18 2.23 0.81 1.69 +miteuse miteux ADJ f s 1.98 4.86 0.25 1.08 +miteusement miteusement ADV 0.00 0.07 0.00 0.07 +miteuserie miteuserie NOM f s 0.00 0.14 0.00 0.14 +miteuses miteux ADJ f p 1.98 4.86 0.02 0.41 +miteux miteux ADJ m 1.98 4.86 1.72 3.38 +mithriaque mithriaque ADJ m s 0.00 0.14 0.00 0.14 +mithridatisation mithridatisation NOM f s 0.00 0.07 0.00 0.07 +mithridatisé mithridatiser VER m s 0.00 0.20 0.00 0.07 par:pas; +mithridatisés mithridatiser VER m p 0.00 0.20 0.00 0.14 par:pas; +mièvre mièvre ADJ s 0.20 1.35 0.20 0.95 +mièvrement mièvrement ADV 0.01 0.00 0.01 0.00 +mièvrerie mièvrerie NOM f s 0.14 1.01 0.01 0.81 +mièvreries mièvrerie NOM f p 0.14 1.01 0.13 0.20 +mièvres mièvre ADJ p 0.20 1.35 0.01 0.41 +mitigea mitiger VER 0.22 0.34 0.00 0.07 ind:pas:3s; +mitiger mitiger VER 0.22 0.34 0.05 0.07 inf; +mitigeurs mitigeur NOM m p 0.00 0.07 0.00 0.07 +mitigé mitiger VER m s 0.22 0.34 0.10 0.20 par:pas; +mitigée mitiger VER f s 0.22 0.34 0.03 0.00 par:pas; +mitigées mitigé ADJ f p 0.07 0.47 0.02 0.07 +mitigés mitiger VER m p 0.22 0.34 0.03 0.00 par:pas; +mitochondrial mitochondrial ADJ m s 0.03 0.00 0.03 0.00 +mitochondrie mitochondrie NOM f s 0.33 0.00 0.04 0.00 +mitochondries mitochondrie NOM f p 0.33 0.00 0.29 0.00 +miton miton NOM m s 0.00 0.07 0.00 0.07 +mitonnaient mitonner VER 0.19 2.70 0.00 0.07 ind:imp:3p; +mitonnait mitonner VER 0.19 2.70 0.00 0.07 ind:imp:3s; +mitonnant mitonner VER 0.19 2.70 0.00 0.14 par:pre; +mitonne mitonner VER 0.19 2.70 0.03 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mitonnent mitonner VER 0.19 2.70 0.00 0.20 ind:pre:3p; +mitonner mitonner VER 0.19 2.70 0.14 0.74 inf; +mitonnerait mitonner VER 0.19 2.70 0.00 0.07 cnd:pre:3s; +mitonné mitonner VER m s 0.19 2.70 0.02 0.27 par:pas; +mitonnée mitonner VER f s 0.19 2.70 0.00 0.27 par:pas; +mitonnées mitonner VER f p 0.19 2.70 0.00 0.27 par:pas; +mitonnés mitonner VER m p 0.19 2.70 0.00 0.14 par:pas; +mitose mitose NOM f s 0.14 0.00 0.14 0.00 +mitotique mitotique ADJ f s 0.03 0.00 0.03 0.00 +mitoufle mitoufle NOM f s 0.00 0.07 0.00 0.07 +mitoyen mitoyen ADJ m s 0.43 1.55 0.26 1.01 +mitoyenne mitoyen ADJ f s 0.43 1.55 0.02 0.27 +mitoyennes mitoyen ADJ f p 0.43 1.55 0.02 0.07 +mitoyenneté mitoyenneté NOM f s 0.00 0.20 0.00 0.20 +mitoyens mitoyen ADJ m p 0.43 1.55 0.14 0.20 +mitra mitrer VER 0.00 0.20 0.00 0.07 ind:pas:3s; +mitrailla mitrailler VER 1.55 3.85 0.00 0.20 ind:pas:3s; +mitraillade mitraillade NOM f s 0.00 1.01 0.00 0.88 +mitraillades mitraillade NOM f p 0.00 1.01 0.00 0.14 +mitraillage mitraillage NOM m s 0.15 0.07 0.12 0.07 +mitraillages mitraillage NOM m p 0.15 0.07 0.03 0.00 +mitraillaient mitrailler VER 1.55 3.85 0.01 0.14 ind:imp:3p; +mitraillait mitrailler VER 1.55 3.85 0.00 0.27 ind:imp:3s; +mitraillant mitrailler VER 1.55 3.85 0.04 0.61 par:pre; +mitraille mitraille NOM f s 0.65 3.18 0.65 3.04 +mitraillent mitrailler VER 1.55 3.85 0.08 0.27 ind:pre:3p; +mitrailler mitrailler VER 1.55 3.85 0.59 0.61 inf; +mitrailleraient mitrailler VER 1.55 3.85 0.00 0.07 cnd:pre:3p; +mitrailles mitrailler VER 1.55 3.85 0.02 0.00 ind:pre:2s; +mitraillette mitraillette NOM f s 3.88 11.35 2.62 7.09 +mitraillettes mitraillette NOM f p 3.88 11.35 1.26 4.26 +mitrailleur mitrailleur NOM m s 6.19 15.47 0.44 0.74 +mitrailleurs mitrailleur NOM m p 6.19 15.47 0.43 1.15 +mitrailleuse mitrailleur NOM f s 6.19 15.47 5.32 7.03 +mitrailleuses mitrailleuse NOM f p 3.40 0.00 3.40 0.00 +mitrailliez mitrailler VER 1.55 3.85 0.01 0.00 ind:imp:2p; +mitraillèrent mitrailler VER 1.55 3.85 0.00 0.20 ind:pas:3p; +mitraillé mitrailler VER m s 1.55 3.85 0.09 0.61 par:pas; +mitraillée mitrailler VER f s 1.55 3.85 0.04 0.07 par:pas; +mitraillées mitrailler VER f p 1.55 3.85 0.10 0.07 par:pas; +mitraillés mitrailler VER m p 1.55 3.85 0.14 0.54 par:pas; +mitral mitral ADJ m s 0.30 0.00 0.04 0.00 +mitrale mitral ADJ f s 0.30 0.00 0.27 0.00 +mitre mitre NOM f s 0.26 1.96 0.26 1.49 +mitres mitre NOM f p 0.26 1.96 0.00 0.47 +mitron mitron NOM m s 0.14 3.58 0.14 2.91 +mitrons mitron NOM m p 0.14 3.58 0.00 0.68 +mitré mitré ADJ m s 0.00 0.61 0.00 0.47 +mitrés mitré ADJ m p 0.00 0.61 0.00 0.14 +mité mité ADJ m s 0.03 1.01 0.03 0.27 +mitée mité ADJ f s 0.03 1.01 0.00 0.20 +mitées mité ADJ f p 0.03 1.01 0.00 0.20 +mités mité ADJ m p 0.03 1.01 0.00 0.34 +mixage mixage NOM m s 0.86 0.27 0.86 0.27 +mixait mixer VER 1.11 0.27 0.01 0.07 ind:imp:3s; +mixe mixer VER 1.11 0.27 0.11 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mixer mixer VER 1.11 0.27 0.78 0.00 inf; +mixers mixer NOM m p 0.78 0.14 0.11 0.07 +mixeur mixeur NOM m s 1.21 0.14 1.05 0.14 +mixeurs mixeur NOM m p 1.21 0.14 0.15 0.00 +mixité mixité NOM f s 0.07 0.14 0.07 0.14 +mixte mixte ADJ s 2.81 3.45 2.23 2.30 +mixtes mixte ADJ p 2.81 3.45 0.59 1.15 +mixture mixture NOM f s 0.93 1.62 0.92 1.35 +mixtures mixture NOM f p 0.93 1.62 0.01 0.27 +mixé mixer VER m s 1.11 0.27 0.13 0.14 par:pas; +mixée mixer VER f s 1.11 0.27 0.05 0.07 par:pas; +mixés mixer VER m p 1.11 0.27 0.03 0.00 par:pas; +ml ml ADJ:num 0.03 0.00 0.03 0.00 +mlle mlle NOM f s 45.69 6.55 45.69 6.55 +mm mm NOM m 3.79 1.35 3.79 1.35 +mme mme NOM f s 81.64 33.24 81.64 33.24 +mn mn NOM m s 0.02 0.00 0.02 0.00 +mnémonique mnémonique ADJ m s 0.05 0.07 0.05 0.00 +mnémoniques mnémonique ADJ m p 0.05 0.07 0.00 0.07 +mnémotechnie mnémotechnie NOM f s 0.00 0.07 0.00 0.07 +mnémotechnique mnémotechnique ADJ s 0.03 0.00 0.03 0.00 +mnésiques mnésique ADJ m p 0.00 0.07 0.00 0.07 +moï moï ADJ m s 0.00 0.27 0.00 0.27 +moïse moïse NOM m s 0.05 0.47 0.05 0.47 +moût moût NOM m s 0.00 0.68 0.00 0.54 +moûts moût NOM m p 0.00 0.68 0.00 0.14 +mob mob NOM f s 0.93 0.68 0.93 0.68 +mobil_home mobil_home NOM m s 0.07 0.00 0.07 0.00 +mobile mobile NOM m s 8.01 2.84 7.03 1.15 +mobiles mobile NOM m p 8.01 2.84 0.98 1.69 +mobilier mobilier NOM m s 1.70 5.74 1.66 5.27 +mobiliers mobilier NOM m p 1.70 5.74 0.04 0.47 +mobilisa mobiliser VER 3.99 9.39 0.02 0.27 ind:pas:3s; +mobilisable mobilisable ADJ m s 0.00 0.74 0.00 0.47 +mobilisables mobilisable ADJ f p 0.00 0.74 0.00 0.27 +mobilisaient mobiliser VER 3.99 9.39 0.01 0.27 ind:imp:3p; +mobilisais mobiliser VER 3.99 9.39 0.00 0.14 ind:imp:1s; +mobilisait mobiliser VER 3.99 9.39 0.01 0.41 ind:imp:3s; +mobilisant mobiliser VER 3.99 9.39 0.06 0.34 par:pre; +mobilisateur mobilisateur ADJ m s 0.01 0.34 0.01 0.20 +mobilisateurs mobilisateur ADJ m p 0.01 0.34 0.00 0.14 +mobilisation mobilisation NOM f s 0.86 4.39 0.86 4.39 +mobilise mobiliser VER 3.99 9.39 0.42 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mobilisent mobiliser VER 3.99 9.39 0.11 0.14 ind:pre:3p; +mobiliser mobiliser VER 3.99 9.39 1.13 1.35 inf; +mobilisera mobiliser VER 3.99 9.39 0.03 0.00 ind:fut:3s; +mobiliserait mobiliser VER 3.99 9.39 0.01 0.07 cnd:pre:3s; +mobiliserons mobiliser VER 3.99 9.39 0.01 0.07 ind:fut:1p; +mobilisez mobiliser VER 3.99 9.39 0.28 0.00 imp:pre:2p;ind:pre:2p; +mobilisions mobiliser VER 3.99 9.39 0.01 0.00 ind:imp:1p; +mobilisons mobiliser VER 3.99 9.39 0.01 0.00 ind:pre:1p; +mobilisé mobiliser VER m s 3.99 9.39 0.83 2.97 par:pas; +mobilisée mobiliser VER f s 3.99 9.39 0.53 0.27 par:pas; +mobilisées mobiliser VER f p 3.99 9.39 0.08 0.27 par:pas; +mobilisés mobiliser VER m p 3.99 9.39 0.43 2.23 par:pas; +mobilière mobilier ADJ f s 0.22 0.88 0.00 0.20 +mobilières mobilier ADJ f p 0.22 0.88 0.04 0.27 +mobilité mobilité NOM f s 0.40 1.96 0.40 1.96 +mobylette mobylette NOM f s 0.89 2.09 0.87 1.82 +mobylettes mobylette NOM f p 0.89 2.09 0.02 0.27 +mocassin mocassin NOM m s 0.63 2.50 0.06 0.07 +mocassins mocassin NOM m p 0.63 2.50 0.57 2.43 +mâcha mâcher VER 5.00 12.30 0.00 0.47 ind:pas:3s; +mâchage mâchage NOM m s 0.00 0.07 0.00 0.07 +mâchaient mâcher VER 5.00 12.30 0.01 0.47 ind:imp:3p; +mâchais mâcher VER 5.00 12.30 0.10 0.07 ind:imp:1s; +mâchait mâcher VER 5.00 12.30 0.14 2.09 ind:imp:3s; +mâchant mâcher VER 5.00 12.30 0.16 1.82 par:pre; +mochard mochard ADJ m s 0.00 0.41 0.00 0.20 +mocharde mochard ADJ f s 0.00 0.41 0.00 0.20 +mâche mâcher VER 5.00 12.30 1.37 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +moche moche ADJ s 28.73 17.77 25.64 14.32 +mâchefer mâchefer NOM m s 0.01 2.57 0.01 2.57 +mâchent mâcher VER 5.00 12.30 0.16 0.20 ind:pre:3p; +mâcher mâcher VER 5.00 12.30 1.61 3.78 inf; +mâcherai mâcher VER 5.00 12.30 0.04 0.07 ind:fut:1s; +mâcherais mâcher VER 5.00 12.30 0.01 0.00 cnd:pre:1s; +mâcherait mâcher VER 5.00 12.30 0.01 0.07 cnd:pre:3s; +mâcherez mâcher VER 5.00 12.30 0.00 0.07 ind:fut:2p; +mâches mâcher VER 5.00 12.30 0.15 0.00 ind:pre:2s; +moches moche ADJ p 28.73 17.77 3.09 3.45 +mocheté mocheté NOM f s 0.75 0.88 0.66 0.41 +mochetés mocheté NOM f p 0.75 0.88 0.08 0.47 +mâcheur mâcheur NOM m s 0.05 0.07 0.04 0.00 +mâcheurs mâcheur NOM m p 0.05 0.07 0.00 0.07 +mâcheuse mâcheur NOM f s 0.05 0.07 0.01 0.00 +mâchez mâcher VER 5.00 12.30 0.31 0.00 imp:pre:2p;ind:pre:2p; +mâchicoulis mâchicoulis NOM m 0.00 0.34 0.00 0.34 +mâchoire mâchoire NOM f s 7.90 23.58 6.80 11.28 +mâchoires mâchoire NOM f p 7.90 23.58 1.09 12.30 +mâchonna mâchonner VER 0.22 4.59 0.00 0.41 ind:pas:3s; +mâchonnaient mâchonner VER 0.22 4.59 0.00 0.20 ind:imp:3p; +mâchonnais mâchonner VER 0.22 4.59 0.00 0.07 ind:imp:1s; +mâchonnait mâchonner VER 0.22 4.59 0.01 0.61 ind:imp:3s; +mâchonnant mâchonner VER 0.22 4.59 0.16 1.01 par:pre; +mâchonne mâchonner VER 0.22 4.59 0.01 0.68 ind:pre:3s; +mâchonnements mâchonnement NOM m p 0.00 0.14 0.00 0.14 +mâchonnent mâchonner VER 0.22 4.59 0.00 0.14 ind:pre:3p; +mâchonner mâchonner VER 0.22 4.59 0.04 1.01 inf; +mâchonné mâchonner VER m s 0.22 4.59 0.00 0.34 par:pas; +mâchonnés mâchonner VER m p 0.22 4.59 0.00 0.14 par:pas; +mâchons mâcher VER 5.00 12.30 0.00 0.07 imp:pre:1p; +mâchouilla mâchouiller VER 0.31 1.62 0.00 0.27 ind:pas:3s; +mâchouillait mâchouiller VER 0.31 1.62 0.00 0.34 ind:imp:3s; +mâchouillant mâchouiller VER 0.31 1.62 0.02 0.61 par:pre; +mâchouille mâchouiller VER 0.31 1.62 0.10 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mâchouiller mâchouiller VER 0.31 1.62 0.04 0.20 inf; +mâchouilles mâchouiller VER 0.31 1.62 0.07 0.00 ind:pre:2s; +mâchouilleur mâchouilleur NOM m s 0.02 0.07 0.02 0.07 +mâchouillé mâchouiller VER m s 0.31 1.62 0.07 0.07 par:pas; +mâchouillée mâchouiller VER f s 0.31 1.62 0.01 0.07 par:pas; +mâchèrent mâcher VER 5.00 12.30 0.00 0.07 ind:pas:3p; +mâché mâcher VER m s 5.00 12.30 0.91 1.42 par:pas; +mâchée mâcher VER f s 5.00 12.30 0.01 0.14 par:pas; +mâchuré mâchurer VER m s 0.00 0.14 0.00 0.07 par:pas; +mâchurée mâchurer VER f s 0.00 0.14 0.00 0.07 par:pas; +mâchés mâcher VER m p 5.00 12.30 0.01 0.20 par:pas; +moco moco NOM m s 0.19 0.00 0.19 0.00 +mâconnaise mâconnais ADJ f s 0.00 0.14 0.00 0.07 +mâconnaises mâconnais ADJ f p 0.00 0.14 0.00 0.07 +mod mod NOM m s 0.01 0.00 0.01 0.00 +modalité modalité NOM f s 0.41 2.30 0.01 0.00 +modalités modalité NOM f p 0.41 2.30 0.40 2.30 +mode mode NOM s 31.67 51.69 30.79 46.96 +model model NOM m s 0.99 0.00 0.99 0.00 +modela modeler VER 2.42 8.24 0.00 0.20 ind:pas:3s; +modelable modelable ADJ s 0.00 0.07 0.00 0.07 +modelage modelage NOM m s 0.04 0.20 0.04 0.20 +modelaient modeler VER 2.42 8.24 0.00 0.20 ind:imp:3p; +modelais modeler VER 2.42 8.24 0.00 0.27 ind:imp:1s; +modelait modeler VER 2.42 8.24 0.01 0.47 ind:imp:3s; +modelant modeler VER 2.42 8.24 0.00 0.34 par:pre; +modeler modeler VER 2.42 8.24 1.16 2.03 inf; +modeleur modeleur NOM m s 0.04 0.00 0.04 0.00 +modelez modeler VER 2.42 8.24 0.28 0.00 imp:pre:2p;ind:pre:2p; +modelé modeler VER m s 2.42 8.24 0.35 1.22 par:pas; +modelée modeler VER f s 2.42 8.24 0.18 1.01 par:pas; +modelées modeler VER f p 2.42 8.24 0.14 0.54 par:pas; +modelés modeler VER m p 2.42 8.24 0.01 0.54 par:pas; +modem modem NOM m s 0.43 0.00 0.37 0.00 +modems modem NOM m p 0.43 0.00 0.06 0.00 +moderato moderato ADV 0.00 0.81 0.00 0.81 +modern_style modern_style NOM m s 0.00 0.27 0.00 0.27 +modern_style modern_style NOM m 0.01 0.00 0.01 0.00 +moderne moderne ADJ s 21.30 34.73 16.77 24.46 +modernes moderne ADJ p 21.30 34.73 4.53 10.27 +modernisaient moderniser VER 0.81 1.69 0.00 0.07 ind:imp:3p; +modernisait moderniser VER 0.81 1.69 0.00 0.07 ind:imp:3s; +modernisation modernisation NOM f s 0.36 0.74 0.36 0.68 +modernisations modernisation NOM f p 0.36 0.74 0.00 0.07 +modernise moderniser VER 0.81 1.69 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modernisent moderniser VER 0.81 1.69 0.03 0.14 ind:pre:3p; +moderniser moderniser VER 0.81 1.69 0.48 0.81 inf; +modernisme modernisme NOM m s 0.08 1.15 0.08 1.15 +modernisons moderniser VER 0.81 1.69 0.01 0.07 imp:pre:1p;ind:pre:1p; +modernissime modernissime ADJ s 0.00 0.07 0.00 0.07 +moderniste moderniste ADJ f s 0.01 0.20 0.01 0.07 +modernistes moderniste NOM p 0.04 0.00 0.03 0.00 +modernisé moderniser VER m s 0.81 1.69 0.14 0.27 par:pas; +modernisée moderniser VER f s 0.81 1.69 0.04 0.14 par:pas; +modernisés moderniser VER m p 0.81 1.69 0.05 0.07 par:pas; +modernité modernité NOM f s 0.71 1.35 0.71 1.22 +modernités modernité NOM f p 0.71 1.35 0.00 0.14 +modes mode NOM p 31.67 51.69 0.89 4.73 +modeste modeste ADJ s 10.64 31.69 9.06 23.38 +modestement modestement ADV 0.52 4.39 0.52 4.39 +modestes modeste ADJ p 10.64 31.69 1.58 8.31 +modestie modestie NOM f s 3.96 10.34 3.96 10.27 +modesties modestie NOM f p 3.96 10.34 0.00 0.07 +modicité modicité NOM f s 0.00 0.20 0.00 0.20 +modifia modifier VER 10.90 18.85 0.00 0.61 ind:pas:3s; +modifiable modifiable ADJ f s 0.05 0.20 0.04 0.14 +modifiables modifiable ADJ p 0.05 0.20 0.01 0.07 +modifiaient modifier VER 10.90 18.85 0.00 0.95 ind:imp:3p; +modifiais modifier VER 10.90 18.85 0.01 0.00 ind:imp:1s; +modifiait modifier VER 10.90 18.85 0.04 1.76 ind:imp:3s; +modifiant modifier VER 10.90 18.85 0.20 0.81 par:pre; +modificateur modificateur ADJ m s 0.03 0.00 0.03 0.00 +modification modification NOM f s 2.69 4.26 1.00 1.96 +modifications modification NOM f p 2.69 4.26 1.69 2.30 +modifie modifier VER 10.90 18.85 1.04 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modifient modifier VER 10.90 18.85 0.17 0.34 ind:pre:3p; +modifier modifier VER 10.90 18.85 4.17 6.96 inf; +modifiera modifier VER 10.90 18.85 0.03 0.00 ind:fut:3s; +modifierai modifier VER 10.90 18.85 0.02 0.00 ind:fut:1s; +modifieraient modifier VER 10.90 18.85 0.00 0.20 cnd:pre:3p; +modifierais modifier VER 10.90 18.85 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +modifierait modifier VER 10.90 18.85 0.04 0.34 cnd:pre:3s; +modifiez modifier VER 10.90 18.85 0.22 0.00 imp:pre:2p;ind:pre:2p; +modifions modifier VER 10.90 18.85 0.17 0.00 imp:pre:1p;ind:pre:1p; +modifiât modifier VER 10.90 18.85 0.00 0.14 sub:imp:3s; +modifièrent modifier VER 10.90 18.85 0.02 0.14 ind:pas:3p; +modifié modifier VER m s 10.90 18.85 3.38 3.18 par:pas; +modifiée modifier VER f s 10.90 18.85 0.64 1.15 par:pas; +modifiées modifier VER f p 10.90 18.85 0.21 0.34 par:pas; +modifiés modifier VER m p 10.90 18.85 0.53 0.20 par:pas; +modillon modillon NOM m s 0.00 0.47 0.00 0.07 +modillons modillon NOM m p 0.00 0.47 0.00 0.41 +modique modique ADJ s 0.33 0.95 0.32 0.74 +modiques modique ADJ f p 0.33 0.95 0.01 0.20 +modiste modiste NOM s 0.15 1.55 0.14 1.15 +modistes modiste NOM p 0.15 1.55 0.01 0.41 +modèle modèle NOM m s 25.06 35.95 19.56 27.50 +modèlent modeler VER 2.42 8.24 0.00 0.14 ind:pre:3p; +modèles modèle NOM m p 25.06 35.95 5.50 8.45 +modère modérer VER 1.32 3.51 0.41 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +modula moduler VER 0.20 4.19 0.00 0.41 ind:pas:3s; +modulable modulable ADJ m s 0.07 0.14 0.03 0.07 +modulables modulable ADJ m p 0.07 0.14 0.04 0.07 +modulai moduler VER 0.20 4.19 0.00 0.07 ind:pas:1s; +modulaire modulaire ADJ m s 0.11 0.00 0.06 0.00 +modulaires modulaire ADJ p 0.11 0.00 0.04 0.00 +modulais moduler VER 0.20 4.19 0.00 0.07 ind:imp:1s; +modulait moduler VER 0.20 4.19 0.00 0.14 ind:imp:3s; +modulant moduler VER 0.20 4.19 0.00 0.34 par:pre; +modulateur modulateur ADJ m s 0.47 0.00 0.47 0.00 +modulation modulation NOM f s 0.19 2.36 0.16 1.01 +modulations modulation NOM f p 0.19 2.36 0.04 1.35 +module module NOM m s 7.03 0.61 6.49 0.54 +modulent moduler VER 0.20 4.19 0.00 0.07 ind:pre:3p; +moduler moduler VER 0.20 4.19 0.07 0.47 inf; +modules module NOM m p 7.03 0.61 0.54 0.07 +modélisation modélisation NOM f s 0.04 0.00 0.04 0.00 +modélisme modélisme NOM m s 0.03 0.00 0.03 0.00 +modéliste modéliste NOM s 0.04 0.27 0.04 0.27 +modélisé modéliser VER m s 0.02 0.00 0.01 0.00 par:pas; +modélisée modéliser VER f s 0.02 0.00 0.01 0.00 par:pas; +modulé moduler VER m s 0.20 4.19 0.01 0.95 par:pas; +modulée moduler VER f s 0.20 4.19 0.01 0.68 par:pas; +modulées moduler VER f p 0.20 4.19 0.00 0.14 par:pas; +modulés moduler VER m p 0.20 4.19 0.00 0.47 par:pas; +modéra modérer VER 1.32 3.51 0.00 0.07 ind:pas:3s; +modérai modérer VER 1.32 3.51 0.00 0.07 ind:pas:1s; +modérait modérer VER 1.32 3.51 0.00 0.07 ind:imp:3s; +modérant modérer VER 1.32 3.51 0.00 0.14 par:pre; +modérateur modérateur NOM m s 0.01 0.14 0.01 0.07 +modérateurs modérateur NOM m p 0.01 0.14 0.00 0.07 +modération modération NOM f s 1.30 2.36 1.30 2.30 +modérations modération NOM f p 1.30 2.36 0.00 0.07 +modérer modérer VER 1.32 3.51 0.34 1.62 inf; +modéreras modérer VER 1.32 3.51 0.01 0.00 ind:fut:2s; +modérez modérer VER 1.32 3.51 0.06 0.20 imp:pre:2p; +modéré modéré ADJ m s 0.52 3.18 0.25 1.22 +modérée modérer VER f s 1.32 3.51 0.20 0.00 par:pas; +modérées modérer VER f p 1.32 3.51 0.03 0.14 par:pas; +modérément modérément ADV 0.21 2.36 0.21 2.36 +modérés modéré NOM m p 0.45 1.42 0.14 0.95 +modus_operandi modus_operandi NOM m s 0.32 0.00 0.32 0.00 +modus_vivendi modus_vivendi NOM m 0.01 0.47 0.01 0.47 +moelle moelle NOM f s 4.23 6.15 4.21 5.34 +moelles moelle NOM f p 4.23 6.15 0.01 0.81 +moelleuse moelleux ADJ f s 1.22 6.22 0.14 1.49 +moelleusement moelleusement ADV 0.00 0.27 0.00 0.27 +moelleuses moelleux ADJ f p 1.22 6.22 0.10 0.20 +moelleux moelleux ADJ m 1.22 6.22 0.98 4.53 +moellon moellon NOM m s 0.01 2.50 0.00 0.41 +moellons moellon NOM m p 0.01 2.50 0.01 2.09 +moeurs moeurs NOM f p 3.08 21.08 3.08 21.08 +moghol moghol NOM m s 0.01 0.00 0.01 0.00 +mogol mogol ADJ m s 0.00 0.14 0.00 0.14 +mohair mohair NOM m s 0.29 0.54 0.29 0.47 +mohairs mohair NOM m p 0.29 0.54 0.00 0.07 +mohican mohican NOM m s 0.01 0.00 0.01 0.00 +moho moho NOM m s 0.03 0.00 0.03 0.00 +moi_moi_moi moi_moi_moi NOM m 0.00 0.07 0.00 0.07 +moi_même moi_même PRO:per s 83.25 107.30 83.25 107.30 +moi moi PRO:per s 3675.68 1877.57 3675.68 1877.57 +moignon moignon NOM m s 0.57 4.05 0.36 1.82 +moignons moignon NOM m p 0.57 4.05 0.20 2.23 +moindre moindre ADJ s 50.12 130.27 46.74 116.96 +moindrement moindrement ADV 0.02 0.07 0.02 0.07 +moindres moindre ADJ p 50.12 130.27 3.38 13.31 +moine moine NOM m s 11.82 34.73 8.21 18.04 +moineau moineau NOM m s 5.65 8.38 2.92 4.32 +moineaux moineau NOM m p 5.65 8.38 2.73 4.05 +moines moine NOM m p 11.82 34.73 3.62 16.69 +moinillon moinillon NOM m s 0.04 0.54 0.04 0.41 +moinillons moinillon NOM m p 0.04 0.54 0.00 0.14 +moins moins ADV 478.75 718.18 478.75 718.18 +moiraient moirer VER 0.00 0.81 0.00 0.07 ind:imp:3p; +moire moire NOM f s 0.04 1.76 0.02 1.28 +moires moire NOM f p 0.04 1.76 0.02 0.47 +moiré moiré ADJ m s 0.04 1.96 0.02 0.61 +moirée moiré ADJ f s 0.04 1.96 0.01 0.74 +moirées moiré ADJ f p 0.04 1.96 0.00 0.27 +moirure moirure NOM f s 0.00 0.34 0.00 0.07 +moirures moirure NOM f p 0.00 0.34 0.00 0.27 +moirés moiré ADJ m p 0.04 1.96 0.01 0.34 +mois mois NOM m 312.31 304.86 312.31 304.86 +moise moise NOM f s 0.37 0.00 0.27 0.00 +moises moise NOM f p 0.37 0.00 0.10 0.00 +moisi moisir VER m s 3.85 5.00 0.56 0.47 par:pas; +moisie moisi ADJ f s 0.61 4.46 0.19 0.74 +moisies moisi ADJ f p 0.61 4.46 0.02 1.01 +moisir moisir VER 3.85 5.00 2.46 2.09 inf; +moisira moisir VER 3.85 5.00 0.01 0.07 ind:fut:3s; +moisirai moisir VER 3.85 5.00 0.03 0.07 ind:fut:1s; +moisiraient moisir VER 3.85 5.00 0.00 0.07 cnd:pre:3p; +moisirais moisir VER 3.85 5.00 0.01 0.00 cnd:pre:1s; +moisirait moisir VER 3.85 5.00 0.00 0.07 cnd:pre:3s; +moisiras moisir VER 3.85 5.00 0.05 0.00 ind:fut:2s; +moisirez moisir VER 3.85 5.00 0.04 0.00 ind:fut:2p; +moisiront moisir VER 3.85 5.00 0.00 0.14 ind:fut:3p; +moisis moisir VER m p 3.85 5.00 0.25 0.14 ind:pre:1s;par:pas; +moisissaient moisir VER 3.85 5.00 0.00 0.14 ind:imp:3p; +moisissais moisir VER 3.85 5.00 0.00 0.14 ind:imp:1s; +moisissait moisir VER 3.85 5.00 0.00 0.47 ind:imp:3s; +moisissant moisir VER 3.85 5.00 0.13 0.07 par:pre; +moisisse moisir VER 3.85 5.00 0.04 0.07 sub:pre:1s;sub:pre:3s; +moisissent moisir VER 3.85 5.00 0.04 0.14 ind:pre:3p; +moisissez moisir VER 3.85 5.00 0.03 0.00 imp:pre:2p;ind:pre:2p; +moisissure moisissure NOM f s 1.39 3.78 1.15 2.57 +moisissures moisissure NOM f p 1.39 3.78 0.25 1.22 +moisit moisir VER 3.85 5.00 0.13 0.41 ind:pre:3s;ind:pas:3s; +moisson moisson NOM f s 3.08 7.91 2.62 4.05 +moissonnait moissonner VER 1.01 1.01 0.00 0.07 ind:imp:3s; +moissonnant moissonner VER 1.01 1.01 0.00 0.07 par:pre; +moissonne moissonner VER 1.01 1.01 0.11 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +moissonnent moissonner VER 1.01 1.01 0.16 0.00 ind:pre:3p; +moissonner moissonner VER 1.01 1.01 0.18 0.41 inf; +moissonnera moissonner VER 1.01 1.01 0.02 0.00 ind:fut:3s; +moissonnerai moissonner VER 1.01 1.01 0.12 0.00 ind:fut:1s; +moissonneur moissonneur NOM m s 0.73 1.22 0.09 0.07 +moissonneurs moissonneur NOM m p 0.73 1.22 0.30 0.81 +moissonneuse_batteuse moissonneuse_batteuse NOM f s 0.04 0.47 0.04 0.27 +moissonneuse_lieuse moissonneuse_lieuse NOM f s 0.00 0.14 0.00 0.07 +moissonneuse moissonneur NOM f s 0.73 1.22 0.34 0.14 +moissonneuse_batteuse moissonneuse_batteuse NOM f p 0.04 0.47 0.00 0.20 +moissonneuse_lieuse moissonneuse_lieuse NOM f p 0.00 0.14 0.00 0.07 +moissonneuses moissonneuse NOM f p 0.01 0.00 0.01 0.00 +moissonnez moissonner VER 1.01 1.01 0.16 0.00 imp:pre:2p;ind:pre:2p; +moissonné moissonner VER m s 1.01 1.01 0.26 0.14 par:pas; +moissonnée moissonner VER f s 1.01 1.01 0.01 0.00 par:pas; +moissonnées moissonner VER f p 1.01 1.01 0.00 0.07 par:pas; +moissonnés moissonner VER m p 1.01 1.01 0.00 0.14 par:pas; +moissons moisson NOM f p 3.08 7.91 0.45 3.85 +moite moite ADJ s 1.98 15.14 1.01 10.00 +moites moite ADJ p 1.98 15.14 0.97 5.14 +moiteur moiteur NOM f s 0.77 4.93 0.77 4.66 +moiteurs moiteur NOM f p 0.77 4.93 0.00 0.27 +moiti moitir VER m s 0.04 0.00 0.04 0.00 par:pas; +moitié_moitié moitié_moitié ADV 0.00 0.14 0.00 0.14 +moitié moitié NOM f s 74.77 79.05 74.25 76.96 +moitiés moitié NOM f p 74.77 79.05 0.52 2.09 +moka moka NOM m s 0.64 1.89 0.55 1.55 +mokas moka NOM m p 0.64 1.89 0.09 0.34 +moko moko NOM m s 0.14 0.14 0.14 0.14 +mol mol ADJ m s 1.10 1.28 1.07 1.15 +molaire molaire NOM f s 0.96 1.76 0.40 0.74 +molaires molaire NOM f p 0.96 1.76 0.56 1.01 +molard molard NOM m s 0.01 0.00 0.01 0.00 +molasse molasse NOM f s 0.02 0.20 0.02 0.20 +moldave moldave NOM s 0.27 0.00 0.27 0.00 +moldaves moldave ADJ p 0.02 0.14 0.00 0.14 +mâle mâle NOM m s 11.72 15.95 8.96 10.00 +mole mole NOM f s 0.27 0.47 0.27 0.41 +mâles mâle NOM m p 11.72 15.95 2.76 5.95 +moles mole NOM f p 0.27 0.47 0.00 0.07 +moleskine moleskine NOM f s 0.01 3.31 0.01 3.31 +molesquine molesquine NOM f s 0.00 0.88 0.00 0.88 +molesta molester VER 0.74 0.88 0.01 0.07 ind:pas:3s; +molestaient molester VER 0.74 0.88 0.00 0.07 ind:imp:3p; +molestant molester VER 0.74 0.88 0.01 0.07 par:pre; +molestation molestation NOM f s 0.00 0.07 0.00 0.07 +moleste molester VER 0.74 0.88 0.03 0.07 ind:pre:3s; +molester molester VER 0.74 0.88 0.21 0.20 inf; +molestez molester VER 0.74 0.88 0.02 0.00 imp:pre:2p;ind:pre:2p; +molesté molester VER m s 0.74 0.88 0.33 0.27 par:pas; +molestée molester VER f s 0.74 0.88 0.11 0.00 par:pas; +molestés molester VER m p 0.74 0.88 0.02 0.14 par:pas; +moleta moleter VER 0.20 0.00 0.20 0.00 ind:pas:3s; +molette molette NOM f s 0.43 1.01 0.42 0.88 +molettes molette NOM f p 0.43 1.01 0.01 0.14 +moliéresque moliéresque ADJ f s 0.00 0.07 0.00 0.07 +mollah mollah NOM m s 0.89 0.14 0.36 0.00 +mollahs mollah NOM m p 0.89 0.14 0.53 0.14 +mollard mollard NOM m s 0.20 1.82 0.16 1.69 +mollarder mollarder VER 0.02 0.07 0.00 0.07 inf; +mollards mollard NOM m p 0.20 1.82 0.03 0.14 +mollardé mollarder VER m s 0.02 0.07 0.02 0.00 par:pas; +mollasse mollasse ADJ s 0.25 0.95 0.25 0.81 +mollasses mollasse ADJ m p 0.25 0.95 0.00 0.14 +mollasson mollasson NOM m s 0.40 0.20 0.38 0.20 +mollassonne mollasson ADJ f s 0.30 0.27 0.04 0.07 +mollassons mollasson ADJ m p 0.30 0.27 0.02 0.07 +molle mou,mol ADJ f s 5.37 34.53 3.92 22.70 +mollement mollement ADV 0.33 11.55 0.33 11.55 +molles mou,mol ADJ f p 5.37 34.53 1.45 11.82 +mollesse mollesse NOM f s 0.44 6.42 0.44 6.28 +mollesses mollesse NOM f p 0.44 6.42 0.00 0.14 +mollet mollet NOM m s 1.77 14.93 0.67 5.27 +molletière molletière NOM f s 0.10 3.18 0.00 0.14 +molletières molletière NOM f p 0.10 3.18 0.10 3.04 +molleton molleton NOM m s 0.00 0.88 0.00 0.81 +molletonneux molletonneux ADJ m p 0.00 0.07 0.00 0.07 +molletonné molletonner VER m s 0.01 0.07 0.01 0.00 par:pas; +molletonnée molletonné ADJ f s 0.00 0.14 0.00 0.07 +molletons molleton NOM m p 0.00 0.88 0.00 0.07 +mollets mollet NOM m p 1.77 14.93 1.11 9.66 +mollette mollet ADJ f s 0.06 0.61 0.01 0.00 +mollettes mollet ADJ f p 0.06 0.61 0.00 0.07 +molli mollir VER m s 1.18 2.57 0.03 0.34 par:pas; +mollie mollir VER f s 1.18 2.57 0.59 0.00 par:pas; +mollir mollir VER 1.18 2.57 0.04 0.61 inf; +mollis mollir VER 1.18 2.57 0.07 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mollissaient mollir VER 1.18 2.57 0.00 0.20 ind:imp:3p; +mollissait mollir VER 1.18 2.57 0.01 0.74 ind:imp:3s; +mollissant mollir VER 1.18 2.57 0.00 0.07 par:pre; +mollisse mollir VER 1.18 2.57 0.00 0.07 sub:pre:3s; +mollissent mollir VER 1.18 2.57 0.04 0.14 ind:pre:3p; +mollissez mollir VER 1.18 2.57 0.14 0.00 imp:pre:2p; +mollit mollir VER 1.18 2.57 0.26 0.41 ind:pre:3s;ind:pas:3s; +mollo mollo ADV 5.23 2.30 5.23 2.30 +mollusque mollusque NOM m s 0.93 1.22 0.57 0.81 +mollusques mollusque NOM m p 0.93 1.22 0.35 0.41 +moloch moloch NOM m s 0.00 0.07 0.00 0.07 +molosse molosse NOM m s 0.54 1.76 0.24 0.74 +molosses molosse NOM m p 0.54 1.76 0.30 1.01 +mols mol ADJ m p 1.10 1.28 0.03 0.14 +molènes molène NOM f p 0.00 0.07 0.00 0.07 +molto molto ADV 0.28 0.27 0.28 0.27 +moléculaire moléculaire ADJ s 2.40 0.41 2.30 0.27 +moléculaires moléculaire ADJ p 2.40 0.41 0.10 0.14 +molécule molécule NOM f s 2.15 1.62 0.76 0.88 +molécules molécule NOM f p 2.15 1.62 1.39 0.74 +moly moly NOM m s 0.04 0.00 0.04 0.00 +molybdène molybdène NOM m s 0.01 0.00 0.01 0.00 +moman moman NOM f s 0.04 0.27 0.04 0.27 +mombin mombin NOM m s 0.00 0.07 0.00 0.07 +moment_clé moment_clé NOM m s 0.04 0.00 0.04 0.00 +moment moment NOM m s 433.59 688.24 403.25 611.62 +momentané momentané ADJ m s 0.96 2.57 0.47 1.08 +momentanée momentané ADJ f s 0.96 2.57 0.34 1.15 +momentanées momentané ADJ f p 0.96 2.57 0.00 0.07 +momentanément momentanément ADV 1.29 5.20 1.29 5.20 +momentanés momentané ADJ m p 0.96 2.57 0.16 0.27 +moments_clé moments_clé NOM m p 0.01 0.00 0.01 0.00 +moments moment NOM m p 433.59 688.24 30.34 76.62 +momerie momerie NOM f s 0.14 0.61 0.00 0.27 +momeries momerie NOM f p 0.14 0.61 0.14 0.34 +momichons momichon NOM m p 0.00 0.07 0.00 0.07 +momie momie NOM f s 4.66 4.86 3.89 3.31 +momies momie NOM f p 4.66 4.86 0.76 1.55 +momifiait momifier VER 0.25 1.55 0.00 0.27 ind:imp:3s; +momifiant momifier VER 0.25 1.55 0.00 0.07 par:pre; +momification momification NOM f s 0.07 0.00 0.07 0.00 +momifie momifier VER 0.25 1.55 0.00 0.07 ind:pre:3s; +momifier momifier VER 0.25 1.55 0.07 0.27 inf; +momifié momifier VER m s 0.25 1.55 0.14 0.20 par:pas; +momifiée momifié ADJ f s 0.24 1.22 0.02 0.41 +momifiées momifier VER f p 0.25 1.55 0.00 0.07 par:pas; +momifiés momifié ADJ m p 0.24 1.22 0.18 0.14 +mominette mominette NOM f s 0.00 0.41 0.00 0.41 +mon mon ADJ:pos 3848.99 2307.97 3848.99 2307.97 +monômes monôme NOM m p 0.00 0.14 0.00 0.14 +monacal monacal ADJ m s 0.01 1.22 0.00 0.41 +monacale monacal ADJ f s 0.01 1.22 0.01 0.68 +monacales monacal ADJ f p 0.01 1.22 0.00 0.14 +monachisme monachisme NOM m s 0.00 0.07 0.00 0.07 +monades monade NOM f p 0.00 0.07 0.00 0.07 +monadologie monadologie NOM f s 0.01 0.00 0.01 0.00 +monarchie monarchie NOM f s 1.10 4.86 1.10 4.53 +monarchies monarchie NOM f p 1.10 4.86 0.00 0.34 +monarchique monarchique ADJ s 0.00 0.34 0.00 0.34 +monarchiste monarchiste ADJ s 0.61 1.28 0.31 1.08 +monarchistes monarchiste ADJ m p 0.61 1.28 0.30 0.20 +monarque monarque NOM m s 1.37 1.96 1.16 1.55 +monarques monarque NOM m p 1.37 1.96 0.20 0.41 +monastique monastique ADJ s 0.02 1.08 0.02 0.95 +monastiques monastique ADJ p 0.02 1.08 0.00 0.14 +monastère monastère NOM m s 4.86 7.97 4.51 6.28 +monastères monastère NOM m p 4.86 7.97 0.35 1.69 +monbazillac monbazillac NOM m s 0.00 0.54 0.00 0.54 +monceau monceau NOM m s 0.97 7.84 0.95 4.59 +monceaux monceau NOM m p 0.97 7.84 0.02 3.24 +monda monder VER 0.15 0.07 0.10 0.00 ind:pas:3s; +mondain mondain ADJ m s 2.73 13.24 1.17 4.26 +mondaine mondain ADJ f s 2.73 13.24 0.84 4.53 +mondainement mondainement ADV 0.00 0.14 0.00 0.14 +mondaines mondain ADJ f p 2.73 13.24 0.43 2.64 +mondains mondain ADJ m p 2.73 13.24 0.28 1.82 +mondanisaient mondaniser VER 0.00 0.14 0.00 0.07 ind:imp:3p; +mondanisé mondaniser VER m s 0.00 0.14 0.00 0.07 par:pas; +mondanité mondanité NOM f s 0.33 2.64 0.01 0.81 +mondanités mondanité NOM f p 0.33 2.64 0.32 1.82 +monde monde NOM m s 830.72 741.35 823.62 732.43 +monder monder VER 0.15 0.07 0.01 0.00 inf; +mondes monde NOM m p 830.72 741.35 7.11 8.92 +mondial mondial ADJ m s 13.79 16.35 4.27 2.50 +mondiale mondial ADJ f s 13.79 16.35 8.17 12.03 +mondialement mondialement ADV 0.53 0.14 0.53 0.14 +mondiales mondial ADJ f p 13.79 16.35 0.80 0.74 +mondialisation mondialisation NOM f s 0.13 0.00 0.13 0.00 +mondialisent mondialiser VER 0.00 0.07 0.00 0.07 ind:pre:3p; +mondialistes mondialiste ADJ m p 0.00 0.07 0.00 0.07 +mondiaux mondial ADJ m p 13.79 16.35 0.55 1.08 +mondovision mondovision NOM f s 0.03 0.07 0.03 0.07 +mondée monder VER f s 0.15 0.07 0.00 0.07 par:pas; +mânes mânes NOM m p 0.01 0.41 0.01 0.41 +mongo mongo NOM s 0.19 0.00 0.19 0.00 +mongol mongol ADJ m s 0.81 3.92 0.49 2.03 +mongole mongol NOM f s 0.69 1.69 0.22 0.41 +mongoles mongol NOM f p 0.69 1.69 0.12 0.00 +mongolie mongolie NOM f s 0.00 0.07 0.00 0.07 +mongolien mongolien ADJ m s 0.56 0.07 0.39 0.00 +mongolienne mongolien ADJ f s 0.56 0.07 0.15 0.07 +mongoliennes mongolien ADJ f p 0.56 0.07 0.01 0.00 +mongoliens mongolien NOM m p 0.38 1.01 0.01 0.34 +mongolique mongolique ADJ f s 0.00 0.14 0.00 0.07 +mongoliques mongolique ADJ m p 0.00 0.14 0.00 0.07 +mongoloïde mongoloïde ADJ s 0.00 0.07 0.00 0.07 +mongols mongol ADJ m p 0.81 3.92 0.17 0.27 +moniale moniale NOM f s 0.00 0.14 0.00 0.14 +moniales moniale ADJ f p 0.00 0.07 0.00 0.07 +moniteur moniteur NOM m s 4.26 5.61 2.44 1.89 +moniteurs moniteur NOM m p 4.26 5.61 1.61 2.03 +monition monition NOM f s 0.14 0.00 0.14 0.00 +monitor monitor NOM m s 0.11 0.00 0.11 0.00 +monitorage monitorage NOM m s 0.04 0.00 0.04 0.00 +monitoring monitoring NOM m s 0.13 0.00 0.13 0.00 +monitrice moniteur NOM f s 4.26 5.61 0.22 0.68 +monitrices moniteur NOM f p 4.26 5.61 0.00 1.01 +monnaie_du_pape monnaie_du_pape NOM f s 0.00 0.07 0.00 0.07 +monnaie monnaie NOM f s 27.31 28.99 26.82 25.34 +monnaiera monnayer VER 0.70 1.49 0.00 0.07 ind:fut:3s; +monnaierai monnayer VER 0.70 1.49 0.01 0.00 ind:fut:1s; +monnaies_du_pape monnaies_du_pape NOM f p 0.00 0.07 0.00 0.07 +monnaies monnaie NOM f p 27.31 28.99 0.48 3.65 +monnaya monnayer VER 0.70 1.49 0.00 0.07 ind:pas:3s; +monnayable monnayable ADJ s 0.02 0.27 0.02 0.20 +monnayables monnayable ADJ m p 0.02 0.27 0.00 0.07 +monnayait monnayer VER 0.70 1.49 0.01 0.20 ind:imp:3s; +monnayant monnayer VER 0.70 1.49 0.00 0.07 par:pre; +monnaye monnayer VER 0.70 1.49 0.02 0.07 ind:pre:3s; +monnayer monnayer VER 0.70 1.49 0.29 0.74 inf; +monnayeur monnayeur NOM m s 0.03 0.14 0.01 0.00 +monnayeurs monnayeur NOM m p 0.03 0.14 0.02 0.14 +monnayé monnayer VER m s 0.70 1.49 0.03 0.20 par:pas; +monnayée monnayer VER f s 0.70 1.49 0.00 0.07 par:pas; +mono mono NOM s 3.02 0.20 3.02 0.20 +monoamine monoamine NOM f s 0.03 0.00 0.03 0.00 +monobloc monobloc NOM m s 0.00 0.07 0.00 0.07 +monocellulaire monocellulaire ADJ f s 0.01 0.00 0.01 0.00 +monochrome monochrome ADJ m s 0.07 0.41 0.04 0.20 +monochromes monochrome ADJ f p 0.07 0.41 0.02 0.20 +monochromie monochromie NOM f s 0.00 0.07 0.00 0.07 +monocle monocle NOM m s 0.56 4.05 0.53 3.92 +monocles monocle NOM m p 0.56 4.05 0.02 0.14 +monoclonal monoclonal ADJ m s 0.02 0.00 0.01 0.00 +monoclonaux monoclonal ADJ m p 0.02 0.00 0.01 0.00 +monoclé monoclé ADJ m s 0.00 0.14 0.00 0.14 +monocoque monocoque ADJ s 0.10 0.00 0.10 0.00 +monocorde monocorde ADJ s 0.03 2.57 0.02 2.09 +monocordes monocorde ADJ f p 0.03 2.57 0.01 0.47 +monocratie monocratie NOM f s 0.01 0.00 0.01 0.00 +monoculaire monoculaire ADJ m s 0.01 0.07 0.00 0.07 +monoculaires monoculaire ADJ p 0.01 0.07 0.01 0.00 +monoculture monoculture NOM f s 0.00 0.07 0.00 0.07 +monocycle monocycle NOM m s 0.07 0.00 0.07 0.00 +monocylindre monocylindre NOM m s 0.01 0.00 0.01 0.00 +monodie monodie NOM f s 0.10 0.07 0.10 0.07 +monofilament monofilament NOM m s 0.02 0.00 0.02 0.00 +monogame monogame ADJ s 0.50 0.47 0.31 0.34 +monogames monogame ADJ p 0.50 0.47 0.18 0.14 +monogamie monogamie NOM f s 0.59 0.07 0.59 0.07 +monogramme monogramme NOM m s 0.21 0.95 0.21 0.81 +monogrammes monogramme NOM m p 0.21 0.95 0.00 0.14 +monogrammées monogrammé ADJ f p 0.01 0.00 0.01 0.00 +monographie monographie NOM f s 0.20 0.61 0.19 0.27 +monographies monographie NOM f p 0.20 0.61 0.01 0.34 +monokini monokini NOM m s 0.32 0.00 0.32 0.00 +monolinguisme monolinguisme NOM m s 0.10 0.00 0.10 0.00 +monolithe monolithe NOM m s 0.13 0.14 0.12 0.07 +monolithes monolithe NOM m p 0.13 0.14 0.01 0.07 +monolithique monolithique ADJ s 0.03 0.68 0.02 0.61 +monolithiques monolithique ADJ f p 0.03 0.68 0.01 0.07 +monolithisme monolithisme NOM m s 0.00 0.07 0.00 0.07 +monologua monologuer VER 0.16 1.01 0.01 0.00 ind:pas:3s; +monologuaient monologuer VER 0.16 1.01 0.00 0.07 ind:imp:3p; +monologuais monologuer VER 0.16 1.01 0.00 0.14 ind:imp:1s; +monologuait monologuer VER 0.16 1.01 0.00 0.20 ind:imp:3s; +monologuant monologuer VER 0.16 1.01 0.00 0.34 par:pre; +monologue monologue NOM m s 1.86 6.28 1.44 5.68 +monologuer monologuer VER 0.16 1.01 0.01 0.14 inf; +monologues monologue NOM m p 1.86 6.28 0.42 0.61 +monomane monomane NOM s 0.01 0.00 0.01 0.00 +monomanes monomane ADJ p 0.00 0.07 0.00 0.07 +monomaniaque monomaniaque ADJ s 0.04 0.20 0.04 0.07 +monomaniaques monomaniaque ADJ p 0.04 0.20 0.00 0.14 +monomanie monomanie NOM f s 0.01 0.14 0.01 0.14 +monomoteur monomoteur NOM m s 0.01 0.07 0.01 0.07 +monomoteurs monomoteur ADJ m p 0.03 0.00 0.03 0.00 +mononucléaire mononucléaire ADJ f s 0.00 0.07 0.00 0.07 +mononucléose mononucléose NOM f s 0.40 0.07 0.40 0.07 +monoparental monoparental ADJ m s 0.09 0.00 0.01 0.00 +monoparentale monoparental ADJ f s 0.09 0.00 0.04 0.00 +monoparentales monoparental ADJ f p 0.09 0.00 0.01 0.00 +monoparentaux monoparental ADJ m p 0.09 0.00 0.03 0.00 +monophasée monophasé ADJ f s 0.00 0.07 0.00 0.07 +monoplace monoplace ADJ m s 0.04 0.14 0.04 0.14 +monoplaces monoplace NOM p 0.02 0.07 0.02 0.00 +monoplan monoplan NOM m s 0.10 0.47 0.09 0.34 +monoplans monoplan NOM m p 0.10 0.47 0.01 0.14 +monopode monopode ADJ m s 0.01 0.00 0.01 0.00 +monopole monopole NOM m s 1.61 3.11 1.32 2.91 +monopoles monopole NOM m p 1.61 3.11 0.29 0.20 +monopolisa monopoliser VER 0.61 0.88 0.02 0.00 ind:pas:3s; +monopolisaient monopoliser VER 0.61 0.88 0.00 0.07 ind:imp:3p; +monopolisais monopoliser VER 0.61 0.88 0.00 0.07 ind:imp:1s; +monopolisait monopoliser VER 0.61 0.88 0.04 0.14 ind:imp:3s; +monopolise monopoliser VER 0.61 0.88 0.23 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +monopolisent monopoliser VER 0.61 0.88 0.15 0.00 ind:pre:3p; +monopoliser monopoliser VER 0.61 0.88 0.07 0.41 inf; +monopolisera monopoliser VER 0.61 0.88 0.01 0.00 ind:fut:3s; +monopolisez monopoliser VER 0.61 0.88 0.03 0.00 imp:pre:2p;ind:pre:2p; +monopolisèrent monopoliser VER 0.61 0.88 0.00 0.07 ind:pas:3p; +monopolisé monopoliser VER m s 0.61 0.88 0.04 0.00 par:pas; +monopolisés monopoliser VER m p 0.61 0.88 0.01 0.07 par:pas; +monopoly monopoly NOM m s 1.37 0.41 1.37 0.41 +monoprix monoprix NOM m 0.21 0.27 0.21 0.27 +monorail monorail NOM m s 0.55 0.00 0.48 0.00 +monorails monorail NOM m p 0.55 0.00 0.07 0.00 +monospace monospace NOM m s 0.18 0.00 0.18 0.00 +monosyllabe monosyllabe NOM m s 0.06 1.35 0.00 0.27 +monosyllabes monosyllabe NOM m p 0.06 1.35 0.06 1.08 +monosyllabique monosyllabique ADJ m s 0.04 0.14 0.02 0.07 +monosyllabiques monosyllabique ADJ m p 0.04 0.14 0.01 0.07 +monothéisme monothéisme NOM m s 0.00 0.34 0.00 0.27 +monothéismes monothéisme NOM m p 0.00 0.34 0.00 0.07 +monothéiste monothéiste ADJ f s 0.00 0.14 0.00 0.07 +monothéistes monothéiste ADJ p 0.00 0.14 0.00 0.07 +monotone monotone ADJ s 1.48 15.47 1.30 13.24 +monotonement monotonement ADV 0.10 0.41 0.10 0.41 +monotones monotone ADJ p 1.48 15.47 0.18 2.23 +monotonie monotonie NOM f s 0.87 4.93 0.87 4.93 +monotype monotype NOM m s 0.00 0.07 0.00 0.07 +monoxyde monoxyde NOM m s 0.40 0.07 0.40 0.07 +monoxyle monoxyle ADJ f s 0.00 0.07 0.00 0.07 +mons mons NOM s 0.41 0.07 0.41 0.07 +monseigneur monseigneur NOM m s 26.26 5.34 26.26 5.34 +monsieur monsieur NOM m s 739.12 324.86 583.45 286.76 +monsignor monsignor NOM m s 0.17 0.14 0.17 0.14 +monsignore monsignore NOM m s 0.16 0.07 0.16 0.07 +monstrance monstrance NOM f s 0.00 0.14 0.00 0.07 +monstrances monstrance NOM f p 0.00 0.14 0.00 0.07 +monstre monstre NOM m s 62.56 26.96 48.42 18.18 +monstres monstre NOM m p 62.56 26.96 14.14 8.78 +monstrueuse monstrueux ADJ f s 8.93 20.88 1.89 7.97 +monstrueusement monstrueusement ADV 0.30 1.69 0.30 1.69 +monstrueuses monstrueux ADJ f p 8.93 20.88 0.41 2.30 +monstrueux monstrueux ADJ m 8.93 20.88 6.63 10.61 +monstruosité monstruosité NOM f s 0.93 2.77 0.40 2.16 +monstruosités monstruosité NOM f p 0.93 2.77 0.53 0.61 +mont_blanc mont_blanc NOM m s 1.84 0.47 1.64 0.41 +mont_de_piété mont_de_piété NOM m s 0.98 0.81 0.98 0.81 +mont mont NOM m s 12.63 18.92 9.04 12.36 +monta monter VER 277.19 404.59 1.07 34.05 ind:pas:3s; +montage montage NOM m s 6.66 2.91 6.35 2.77 +montages montage NOM m p 6.66 2.91 0.31 0.14 +montagnard montagnard NOM m s 1.05 2.03 0.28 0.61 +montagnarde montagnard ADJ f s 0.42 1.22 0.16 0.27 +montagnardes montagnard ADJ f p 0.42 1.22 0.00 0.20 +montagnards montagnard NOM m p 1.05 2.03 0.74 1.22 +montagne montagne NOM f s 62.01 81.82 36.76 49.80 +montagnes montagne NOM f p 62.01 81.82 25.25 32.03 +montagneuse montagneux ADJ f s 0.41 1.35 0.05 0.41 +montagneuses montagneux ADJ f p 0.41 1.35 0.02 0.27 +montagneux montagneux ADJ m 0.41 1.35 0.33 0.68 +montai monter VER 277.19 404.59 0.04 4.86 ind:pas:1s; +montaient monter VER 277.19 404.59 0.83 21.96 ind:imp:3p; +montais monter VER 277.19 404.59 1.52 3.58 ind:imp:1s;ind:imp:2s; +montaison montaison NOM f s 0.00 0.07 0.00 0.07 +montait monter VER 277.19 404.59 3.95 62.57 ind:imp:3s; +montant montant NOM m s 5.97 12.84 5.31 8.38 +montante montant ADJ f s 1.65 8.38 0.86 4.59 +montantes montant ADJ f p 1.65 8.38 0.30 1.15 +montants montant NOM m p 5.97 12.84 0.66 4.46 +monte_charge monte_charge NOM m 0.51 0.54 0.51 0.54 +monte_charges monte_charges NOM m 0.01 0.07 0.01 0.07 +monte_en_l_air monte_en_l_air NOM m 0.12 0.20 0.12 0.20 +monte_plat monte_plat NOM m s 0.01 0.00 0.01 0.00 +monte_plats monte_plats NOM m 0.04 0.07 0.04 0.07 +monte monter VER 277.19 404.59 109.76 70.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s;;imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +montent monter VER 277.19 404.59 4.86 14.39 ind:pre:3p; +monter monter VER 277.19 404.59 85.57 96.89 inf; +montera monter VER 277.19 404.59 2.36 1.82 ind:fut:3s; +monterai monter VER 277.19 404.59 1.61 1.22 ind:fut:1s; +monteraient monter VER 277.19 404.59 0.10 0.41 cnd:pre:3p; +monterais monter VER 277.19 404.59 0.53 0.41 cnd:pre:1s;cnd:pre:2s; +monterait monter VER 277.19 404.59 0.55 2.84 cnd:pre:3s; +monteras monter VER 277.19 404.59 0.76 0.47 ind:fut:2s; +monterez monter VER 277.19 404.59 0.23 0.34 ind:fut:2p; +monteriez monter VER 277.19 404.59 0.03 0.00 cnd:pre:2p; +monterons monter VER 277.19 404.59 0.31 0.34 ind:fut:1p; +monteront monter VER 277.19 404.59 0.34 0.34 ind:fut:3p; +montes monter VER 277.19 404.59 6.27 2.30 ind:pre:2s;sub:pre:2s; +monteur monteur NOM m s 1.46 0.68 1.07 0.27 +monteurs monteur NOM m p 1.46 0.68 0.09 0.27 +monteuse monteur NOM f s 1.46 0.68 0.30 0.14 +montez monter VER 277.19 404.59 15.38 1.89 imp:pre:2p;ind:pre:2p; +montgolfière montgolfière NOM f s 0.81 0.95 0.78 0.81 +montgolfières montgolfière NOM f p 0.81 0.95 0.04 0.14 +monticule monticule NOM m s 0.60 3.78 0.58 1.96 +monticules monticule NOM m p 0.60 3.78 0.02 1.82 +montiez monter VER 277.19 404.59 0.64 0.14 ind:imp:2p; +montions monter VER 277.19 404.59 0.19 1.69 ind:imp:1p; +montjoie montjoie NOM f s 0.05 0.34 0.05 0.34 +montmartrois montmartrois ADJ m 0.00 0.74 0.00 0.41 +montmartroise montmartrois ADJ f s 0.00 0.74 0.00 0.20 +montmartroises montmartrois ADJ f p 0.00 0.74 0.00 0.14 +montâmes monter VER 277.19 404.59 0.00 1.55 ind:pas:1p; +montons monter VER 277.19 404.59 3.44 2.70 imp:pre:1p;ind:pre:1p; +montât monter VER 277.19 404.59 0.00 0.54 sub:imp:3s; +montparno montparno NOM m s 0.00 0.20 0.00 0.20 +montpelliéraine montpelliérain NOM f s 0.00 0.07 0.00 0.07 +montra montrer VER 327.33 276.55 0.77 29.46 ind:pas:3s; +montrable montrable ADJ s 0.02 0.41 0.02 0.34 +montrables montrable ADJ f p 0.02 0.41 0.00 0.07 +montrai montrer VER 327.33 276.55 0.42 1.76 ind:pas:1s; +montraient montrer VER 327.33 276.55 0.98 8.78 ind:imp:3p; +montrais montrer VER 327.33 276.55 1.72 2.43 ind:imp:1s;ind:imp:2s; +montrait montrer VER 327.33 276.55 3.27 33.65 ind:imp:3s; +montrant montrer VER 327.33 276.55 2.02 23.24 par:pre; +montrassent montrer VER 327.33 276.55 0.00 0.14 sub:imp:3p; +montre_bracelet montre_bracelet NOM f s 0.08 2.09 0.07 1.82 +montre_gousset montre_gousset NOM f s 0.01 0.07 0.01 0.07 +montre_la_moi montre_la_moi NOM f s 0.14 0.00 0.14 0.00 +montre montrer VER 327.33 276.55 85.44 38.99 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +montrent montrer VER 327.33 276.55 8.82 4.93 ind:pre:3p; +montrer montrer VER 327.33 276.55 136.20 81.15 inf;; +montrera montrer VER 327.33 276.55 4.71 1.96 ind:fut:3s; +montrerai montrer VER 327.33 276.55 7.58 3.18 ind:fut:1s; +montreraient montrer VER 327.33 276.55 0.11 0.14 cnd:pre:3p; +montrerais montrer VER 327.33 276.55 1.05 0.34 cnd:pre:1s;cnd:pre:2s; +montrerait montrer VER 327.33 276.55 0.78 2.57 cnd:pre:3s; +montreras montrer VER 327.33 276.55 1.46 0.61 ind:fut:2s; +montrerez montrer VER 327.33 276.55 1.02 0.27 ind:fut:2p; +montreriez montrer VER 327.33 276.55 0.16 0.00 cnd:pre:2p; +montrerons montrer VER 327.33 276.55 0.83 0.14 ind:fut:1p; +montreront montrer VER 327.33 276.55 0.54 0.07 ind:fut:3p; +montre_bracelet montre_bracelet NOM f p 0.08 2.09 0.01 0.27 +montres montrer VER 327.33 276.55 5.93 1.08 ind:pre:1p;ind:pre:2s;sub:pre:2s; +montreur montreur NOM m s 0.48 1.35 0.45 0.81 +montreurs montreur NOM m p 0.48 1.35 0.02 0.41 +montreuse montreur NOM f s 0.48 1.35 0.01 0.07 +montreuses montreur NOM f p 0.48 1.35 0.00 0.07 +montrez montrer VER 327.33 276.55 26.48 2.57 imp:pre:2p;ind:pre:2p; +montriez montrer VER 327.33 276.55 0.70 0.41 ind:imp:2p; +montrions montrer VER 327.33 276.55 0.05 0.27 ind:imp:1p; +montrâmes montrer VER 327.33 276.55 0.00 0.07 ind:pas:1p; +montrons montrer VER 327.33 276.55 2.77 0.27 imp:pre:1p;ind:pre:1p; +montrât montrer VER 327.33 276.55 0.00 1.01 sub:imp:3s; +montrèrent montrer VER 327.33 276.55 0.01 1.82 ind:pas:3p; +montré montrer VER m s 327.33 276.55 29.65 28.11 par:pas; +montrée montrer VER f s 327.33 276.55 2.61 4.39 ind:imp:3p;par:pas; +montrées montrer VER f p 327.33 276.55 0.42 0.88 par:pas; +montrés montrer VER m p 327.33 276.55 0.81 1.89 par:pas; +mont_blanc mont_blanc NOM m p 1.84 0.47 0.20 0.07 +monts mont NOM m p 12.63 18.92 3.59 6.55 +montèrent monter VER 277.19 404.59 0.07 7.97 ind:pas:3p; +monté monter VER m s 277.19 404.59 23.72 28.72 par:pas; +montée monter VER f s 277.19 404.59 6.11 13.18 par:pas; +montées monter VER f p 277.19 404.59 0.70 3.18 par:pas; +montueuse montueux ADJ f s 0.00 0.47 0.00 0.20 +montueuses montueux ADJ f p 0.00 0.47 0.00 0.14 +montueux montueux ADJ m 0.00 0.47 0.00 0.14 +monténégrin monténégrin ADJ m s 0.01 0.07 0.01 0.00 +monténégrines monténégrin ADJ f p 0.01 0.07 0.00 0.07 +monture monture NOM f s 2.21 16.62 1.61 11.55 +montures monture NOM f p 2.21 16.62 0.60 5.07 +montés monter VER m p 277.19 404.59 3.94 9.73 par:pas; +monument monument NOM m s 6.68 19.32 5.07 10.54 +monumental monumental ADJ m s 1.67 12.03 0.62 4.32 +monumentale monumental ADJ f s 1.67 12.03 0.71 5.20 +monumentalement monumentalement ADV 0.03 0.00 0.03 0.00 +monumentales monumental ADJ f p 1.67 12.03 0.29 1.96 +monumentalité monumentalité NOM f s 0.01 0.00 0.01 0.00 +monumentaux monumental ADJ m p 1.67 12.03 0.04 0.54 +monuments monument NOM m p 6.68 19.32 1.61 8.78 +monétaire monétaire ADJ s 0.90 2.16 0.81 1.49 +monétaires monétaire ADJ p 0.90 2.16 0.10 0.68 +monétariste monétariste ADJ s 0.01 0.00 0.01 0.00 +moonisme moonisme NOM m s 0.00 0.07 0.00 0.07 +moonistes mooniste NOM p 0.03 0.00 0.03 0.00 +mooré mooré NOM m s 0.03 0.00 0.03 0.00 +moos moos NOM m 0.03 0.00 0.03 0.00 +moose moose ADJ s 0.60 0.00 0.60 0.00 +moqua moquer VER 71.13 50.34 0.01 0.88 ind:pas:3s; +moquai moquer VER 71.13 50.34 0.01 0.20 ind:pas:1s; +moquaient moquer VER 71.13 50.34 0.96 2.70 ind:imp:3p; +moquais moquer VER 71.13 50.34 0.75 1.42 ind:imp:1s;ind:imp:2s; +moquait moquer VER 71.13 50.34 2.20 9.39 ind:imp:3s; +moquant moquer VER 71.13 50.34 0.78 1.89 par:pre; +moque moquer VER 71.13 50.34 25.79 11.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +moquent moquer VER 71.13 50.34 4.18 2.36 ind:pre:3p; +moquer moquer VER 71.13 50.34 11.47 9.46 ind:pre:2p;inf; +moquera moquer VER 71.13 50.34 0.72 0.27 ind:fut:3s; +moquerai moquer VER 71.13 50.34 0.09 0.00 ind:fut:1s; +moqueraient moquer VER 71.13 50.34 0.03 0.00 cnd:pre:3p; +moquerais moquer VER 71.13 50.34 0.29 0.14 cnd:pre:1s;cnd:pre:2s; +moquerait moquer VER 71.13 50.34 0.56 0.27 cnd:pre:3s; +moqueras moquer VER 71.13 50.34 0.06 0.07 ind:fut:2s; +moquerez moquer VER 71.13 50.34 0.28 0.07 ind:fut:2p; +moquerie moquerie NOM f s 1.69 6.35 0.64 3.72 +moqueries moquerie NOM f p 1.69 6.35 1.05 2.64 +moqueriez moquer VER 71.13 50.34 0.01 0.07 cnd:pre:2p; +moqueront moquer VER 71.13 50.34 0.10 0.07 ind:fut:3p; +moques moquer VER 71.13 50.34 9.60 0.95 ind:pre:2s;sub:pre:2s; +moquette moquette NOM f s 3.63 15.95 3.37 14.73 +moquettes moquette NOM f p 3.63 15.95 0.27 1.22 +moquetté moquetter VER m s 0.00 0.20 0.00 0.07 par:pas; +moquettées moquetter VER f p 0.00 0.20 0.00 0.07 par:pas; +moquettés moquetter VER m p 0.00 0.20 0.00 0.07 par:pas; +moqueur moqueur ADJ m s 0.82 9.12 0.41 4.73 +moqueurs moqueur ADJ m p 0.82 9.12 0.28 1.01 +moqueuse moqueur ADJ f s 0.82 9.12 0.11 2.97 +moqueusement moqueusement ADV 0.00 0.27 0.00 0.27 +moqueuses moqueur ADJ f p 0.82 9.12 0.02 0.41 +moquez moquer VER 71.13 50.34 7.98 1.15 imp:pre:2p;ind:pre:2p; +moquiez moquer VER 71.13 50.34 0.23 0.20 ind:imp:2p; +moquions moquer VER 71.13 50.34 0.00 1.01 ind:imp:1p; +moquons moquer VER 71.13 50.34 0.34 0.07 imp:pre:1p;ind:pre:1p; +moquât moquer VER 71.13 50.34 0.00 0.68 sub:imp:3s; +moquèrent moquer VER 71.13 50.34 0.00 0.61 ind:pas:3p; +moqué moquer VER m s 71.13 50.34 2.64 2.84 par:pas; +moquée moquer VER f s 71.13 50.34 1.02 1.15 par:pas; +moquées moquer VER f p 71.13 50.34 0.17 0.14 par:pas; +moqués moquer VER m p 71.13 50.34 0.84 0.47 par:pas; +moraillon moraillon NOM m s 0.00 0.07 0.00 0.07 +moraine moraine NOM f s 0.08 0.47 0.07 0.07 +moraines moraine NOM f p 0.08 0.47 0.01 0.41 +morainique morainique ADJ s 0.01 0.20 0.01 0.14 +morainiques morainique ADJ p 0.01 0.20 0.00 0.07 +moral moral NOM m s 10.27 14.19 10.17 14.19 +morale morale NOM f s 13.13 21.49 12.89 21.01 +moralement moralement ADV 1.98 7.30 1.98 7.30 +morales moral ADJ f p 16.39 34.53 2.26 4.93 +moralisante moralisant ADJ f s 0.00 0.14 0.00 0.14 +moralisateur moralisateur NOM m s 0.73 0.00 0.47 0.00 +moralisateurs moralisateur NOM m p 0.73 0.00 0.26 0.00 +moralisation moralisation NOM f s 0.01 0.07 0.01 0.07 +moralisatrice moralisateur ADJ f s 0.20 0.68 0.04 0.07 +moralise moraliser VER 0.03 0.41 0.00 0.14 ind:pre:3s; +moraliser moraliser VER 0.03 0.41 0.03 0.20 inf; +moralisme moralisme NOM m s 0.15 0.27 0.15 0.27 +moraliste moraliste NOM s 0.48 1.49 0.40 0.74 +moralistes moraliste ADJ p 0.55 0.41 0.16 0.20 +moralisée moraliser VER f s 0.03 0.41 0.00 0.07 par:pas; +moralité moralité NOM f s 4.86 3.04 4.57 2.91 +moralités moralité NOM f p 4.86 3.04 0.29 0.14 +morasse morasse NOM f s 0.00 0.81 0.00 0.61 +morasses morasse NOM f p 0.00 0.81 0.00 0.20 +moratoire moratoire NOM m s 0.17 0.07 0.17 0.07 +moraux moral ADJ m p 16.39 34.53 1.59 1.76 +morave morave ADJ m s 0.02 0.00 0.01 0.00 +moraves morave ADJ m p 0.02 0.00 0.01 0.00 +morbac morbac NOM m s 0.17 0.20 0.14 0.14 +morbacs morbac NOM m p 0.17 0.20 0.02 0.07 +morbaque morbaque NOM m s 0.02 0.54 0.01 0.14 +morbaques morbaque NOM m p 0.02 0.54 0.01 0.41 +morbide morbide ADJ s 3.92 4.73 2.83 3.99 +morbidement morbidement ADV 0.01 0.07 0.01 0.07 +morbides morbide ADJ p 3.92 4.73 1.09 0.74 +morbidesse morbidesse NOM f s 0.00 0.14 0.00 0.14 +morbidité morbidité NOM f s 0.07 0.14 0.07 0.14 +morbier morbier NOM m s 0.00 0.07 0.00 0.07 +morbleu morbleu ONO 0.54 0.14 0.54 0.14 +morceau morceau NOM m s 64.78 99.32 40.65 57.84 +morceaux morceau NOM m p 64.78 99.32 24.13 41.49 +morcela morceler VER 0.47 1.28 0.00 0.07 ind:pas:3s; +morcelait morceler VER 0.47 1.28 0.00 0.27 ind:imp:3s; +morcelant morceler VER 0.47 1.28 0.00 0.20 par:pre; +morceler morceler VER 0.47 1.28 0.03 0.14 inf; +morcellement morcellement NOM m s 0.00 0.34 0.00 0.27 +morcellements morcellement NOM m p 0.00 0.34 0.00 0.07 +morcellent morceler VER 0.47 1.28 0.00 0.27 ind:pre:3p; +morcellera morceler VER 0.47 1.28 0.01 0.00 ind:fut:3s; +morcelé morceler VER m s 0.47 1.28 0.29 0.20 par:pas; +morcelée morcelé ADJ f s 0.11 0.61 0.11 0.20 +morcelées morceler VER f p 0.47 1.28 0.01 0.07 par:pas; +morcelés morceler VER m p 0.47 1.28 0.01 0.00 par:pas; +morcif morcif NOM m s 0.00 0.34 0.00 0.20 +morcifs morcif NOM m p 0.00 0.34 0.00 0.14 +mord mordre VER 44.85 48.45 7.95 4.80 ind:pre:3s; +mordît mordre VER 44.85 48.45 0.00 0.07 sub:imp:3s; +mordaient mordre VER 44.85 48.45 0.22 1.49 ind:imp:3p; +mordais mordre VER 44.85 48.45 0.36 0.54 ind:imp:1s;ind:imp:2s; +mordait mordre VER 44.85 48.45 1.09 5.74 ind:imp:3s; +mordant mordant NOM m s 0.60 1.49 0.60 1.49 +mordante mordant ADJ f s 0.35 2.70 0.10 0.81 +mordantes mordant ADJ f p 0.35 2.70 0.01 0.07 +mordançage mordançage NOM m s 0.00 0.14 0.00 0.14 +mordants mordant ADJ m p 0.35 2.70 0.01 0.20 +morde mordre VER 44.85 48.45 0.47 0.20 sub:pre:1s;sub:pre:3s; +mordent mordre VER 44.85 48.45 1.74 1.35 ind:pre:3p; +mordes mordre VER 44.85 48.45 0.15 0.07 sub:pre:2s; +mordeur mordeur NOM m s 0.04 0.00 0.03 0.00 +mordeurs mordeur ADJ m p 0.03 0.14 0.01 0.07 +mordeuse mordeuse NOM f s 0.03 0.00 0.03 0.00 +mordez mordre VER 44.85 48.45 0.92 0.41 imp:pre:2p;ind:pre:2p; +mordicus mordicus ADV 0.19 0.54 0.19 0.54 +mordieu mordieu ONO 0.20 0.00 0.20 0.00 +mordilla mordiller VER 0.76 5.61 0.00 0.61 ind:pas:3s; +mordillage mordillage NOM m s 0.00 0.07 0.00 0.07 +mordillaient mordiller VER 0.76 5.61 0.01 0.14 ind:imp:3p; +mordillais mordiller VER 0.76 5.61 0.00 0.07 ind:imp:1s; +mordillait mordiller VER 0.76 5.61 0.00 1.96 ind:imp:3s; +mordillant mordiller VER 0.76 5.61 0.02 1.01 par:pre; +mordille mordiller VER 0.76 5.61 0.30 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mordillement mordillement NOM m s 0.00 0.61 0.00 0.27 +mordillements mordillement NOM m p 0.00 0.61 0.00 0.34 +mordillent mordiller VER 0.76 5.61 0.00 0.14 ind:pre:3p; +mordiller mordiller VER 0.76 5.61 0.25 0.68 inf; +mordillera mordiller VER 0.76 5.61 0.00 0.07 ind:fut:3s; +mordillez mordiller VER 0.76 5.61 0.01 0.00 imp:pre:2p; +mordillé mordiller VER m s 0.76 5.61 0.14 0.07 par:pas; +mordillée mordiller VER f s 0.76 5.61 0.02 0.20 par:pas; +mordillées mordiller VER f p 0.76 5.61 0.00 0.07 par:pas; +mordillés mordiller VER m p 0.76 5.61 0.00 0.14 par:pas; +mordions mordre VER 44.85 48.45 0.01 0.14 ind:imp:1p; +mordirent mordre VER 44.85 48.45 0.00 0.20 ind:pas:3p; +mordis mordre VER 44.85 48.45 0.00 0.41 ind:pas:1s;ind:pas:2s; +mordissent mordre VER 44.85 48.45 0.00 0.07 sub:imp:3p; +mordit mordre VER 44.85 48.45 0.09 6.01 ind:pas:3s; +mordorait mordorer VER 0.00 0.34 0.00 0.07 ind:imp:3s; +mordoré mordoré ADJ m s 0.04 2.16 0.01 0.41 +mordorée mordoré ADJ f s 0.04 2.16 0.00 0.61 +mordorées mordoré ADJ f p 0.04 2.16 0.02 0.34 +mordorés mordoré ADJ m p 0.04 2.16 0.01 0.81 +mordra mordre VER 44.85 48.45 0.80 0.20 ind:fut:3s; +mordrai mordre VER 44.85 48.45 0.40 0.00 ind:fut:1s; +mordraient mordre VER 44.85 48.45 0.01 0.14 cnd:pre:3p; +mordrais mordre VER 44.85 48.45 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +mordrait mordre VER 44.85 48.45 0.35 0.41 cnd:pre:3s; +mordras mordre VER 44.85 48.45 0.22 0.00 ind:fut:2s; +mordre mordre VER 44.85 48.45 8.83 12.36 inf;; +mordrez mordre VER 44.85 48.45 0.25 0.00 ind:fut:2p; +mordront mordre VER 44.85 48.45 0.58 0.07 ind:fut:3p; +mords mordre VER 44.85 48.45 6.30 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +mordu mordre VER m s 44.85 48.45 10.22 6.28 par:pas; +mordue mordre VER f s 44.85 48.45 2.77 1.08 par:pas; +mordues mordre VER f p 44.85 48.45 0.32 0.34 par:pas; +mordus mordre VER m p 44.85 48.45 0.45 0.54 par:pas; +more more ADJ s 3.69 0.07 3.68 0.07 +moreau moreau ADJ m s 0.02 0.00 0.02 0.00 +morelle morelle NOM f s 0.01 0.00 0.01 0.00 +mores more NOM p 0.55 0.14 0.01 0.07 +moresque moresque NOM f s 0.27 0.00 0.27 0.00 +morfal morfal ADJ m s 0.04 0.47 0.01 0.07 +morfale morfal ADJ f s 0.04 0.47 0.01 0.20 +morfaler morfaler VER 0.00 0.41 0.00 0.14 inf; +morfales morfal ADJ f p 0.04 0.47 0.01 0.07 +morfalou morfalou NOM m s 0.00 0.07 0.00 0.07 +morfals morfal ADJ m p 0.04 0.47 0.00 0.14 +morfalé morfaler VER m s 0.00 0.41 0.00 0.07 par:pas; +morfalée morfaler VER f s 0.00 0.41 0.00 0.07 par:pas; +morfalés morfaler VER m p 0.00 0.41 0.00 0.07 par:pas; +morfil morfil NOM m s 0.00 0.07 0.00 0.07 +morflais morfler VER 2.01 2.91 0.00 0.14 ind:imp:2s; +morflait morfler VER 2.01 2.91 0.01 0.14 ind:imp:3s; +morfle morfler VER 2.01 2.91 0.38 0.41 ind:pre:1s;ind:pre:3s; +morfler morfler VER 2.01 2.91 0.93 0.88 inf; +morflera morfler VER 2.01 2.91 0.01 0.14 ind:fut:3s; +morfleras morfler VER 2.01 2.91 0.01 0.00 ind:fut:2s; +morflerez morfler VER 2.01 2.91 0.01 0.00 ind:fut:2p; +morfles morfler VER 2.01 2.91 0.04 0.00 ind:pre:2s; +morflé morfler VER m s 2.01 2.91 0.62 1.08 par:pas; +morflée morfler VER f s 2.01 2.91 0.00 0.14 par:pas; +morfond morfondre VER 1.26 2.50 0.34 0.34 ind:pre:3s; +morfondaient morfondre VER 1.26 2.50 0.00 0.20 ind:imp:3p; +morfondais morfondre VER 1.26 2.50 0.00 0.07 ind:imp:1s; +morfondait morfondre VER 1.26 2.50 0.14 0.68 ind:imp:3s; +morfondant morfondre VER 1.26 2.50 0.00 0.14 par:pre; +morfonde morfondre VER 1.26 2.50 0.01 0.07 sub:pre:1s;sub:pre:3s; +morfondis morfondre VER 1.26 2.50 0.00 0.07 ind:pas:1s; +morfondra morfondre VER 1.26 2.50 0.01 0.00 ind:fut:3s; +morfondre morfondre VER 1.26 2.50 0.47 0.68 inf; +morfonds morfondre VER 1.26 2.50 0.28 0.07 imp:pre:2s;ind:pre:1s; +morfondu morfondre VER m s 1.26 2.50 0.02 0.20 par:pas; +morfondue morfondu ADJ f s 0.00 0.68 0.00 0.27 +morgana morganer VER 0.26 0.34 0.24 0.00 ind:pas:3s; +morganatique morganatique ADJ m s 0.00 0.14 0.00 0.07 +morganatiques morganatique ADJ f p 0.00 0.14 0.00 0.07 +morgane morganer VER 0.26 0.34 0.02 0.14 imp:pre:2s;ind:pre:3s; +morganer morganer VER 0.26 0.34 0.00 0.14 inf; +morganerai morganer VER 0.26 0.34 0.00 0.07 ind:fut:1s; +morgeline morgeline NOM f s 0.01 0.00 0.01 0.00 +morgon morgon NOM m s 0.01 0.00 0.01 0.00 +morgue morgue NOM f s 10.12 7.03 9.95 6.76 +morgues morgue NOM f p 10.12 7.03 0.17 0.27 +moria moria NOM f s 0.08 0.00 0.08 0.00 +moribond moribond ADJ m s 0.65 2.50 0.52 1.35 +moribonde moribond ADJ f s 0.65 2.50 0.05 0.54 +moribondes moribond ADJ f p 0.65 2.50 0.03 0.20 +moribonds moribond NOM m p 0.45 2.23 0.14 0.47 +moricaud moricaud NOM m s 0.16 0.95 0.07 0.07 +moricaude moricaud NOM f s 0.16 0.95 0.01 0.74 +moricaudes moricaud NOM f p 0.16 0.95 0.00 0.07 +moricauds moricaud NOM m p 0.16 0.95 0.08 0.07 +morigène morigéner VER 0.00 1.22 0.00 0.14 ind:pre:3s; +morigéna morigéner VER 0.00 1.22 0.00 0.07 ind:pas:3s; +morigénai morigéner VER 0.00 1.22 0.00 0.07 ind:pas:1s; +morigénais morigéner VER 0.00 1.22 0.00 0.07 ind:imp:1s; +morigénait morigéner VER 0.00 1.22 0.00 0.07 ind:imp:3s; +morigénant morigéner VER 0.00 1.22 0.00 0.27 par:pre; +morigéner morigéner VER 0.00 1.22 0.00 0.20 inf; +morigéné morigéner VER m s 0.00 1.22 0.00 0.20 par:pas; +morigénée morigéner VER f s 0.00 1.22 0.00 0.14 par:pas; +morille morille NOM f s 0.17 0.61 0.00 0.14 +morilles morille NOM f p 0.17 0.61 0.17 0.47 +morillon morillon NOM m s 0.14 0.88 0.14 0.81 +morillons morillon NOM m p 0.14 0.88 0.00 0.07 +morlingue morlingue NOM m s 0.00 1.28 0.00 1.01 +morlingues morlingue NOM m p 0.00 1.28 0.00 0.27 +mormon mormon ADJ m s 0.44 0.14 0.24 0.07 +mormone mormon ADJ f s 0.44 0.14 0.06 0.07 +mormones mormon ADJ f p 0.44 0.14 0.03 0.00 +mormons mormon NOM m p 0.75 0.14 0.55 0.14 +morne morne ADJ s 1.06 19.66 0.81 14.46 +mornement mornement ADV 0.01 0.07 0.01 0.07 +mornes morne ADJ p 1.06 19.66 0.25 5.20 +mornifle mornifle NOM f s 0.00 0.81 0.00 0.81 +moro moro ADJ s 0.01 0.00 0.01 0.00 +morose morose ADJ s 1.23 8.78 1.00 7.23 +morosement morosement ADV 0.00 0.07 0.00 0.07 +moroses morose ADJ p 1.23 8.78 0.24 1.55 +morosité morosité NOM f s 0.07 1.08 0.07 1.01 +morosités morosité NOM f p 0.07 1.08 0.00 0.07 +morphine morphine NOM f s 7.37 1.62 7.37 1.62 +morphing morphing NOM m s 0.01 0.00 0.01 0.00 +morphinomane morphinomane ADJ m s 0.14 0.14 0.14 0.14 +morphique morphique ADJ s 0.04 0.00 0.04 0.00 +morpho morpho ADV 0.03 0.00 0.03 0.00 +morphogenèse morphogenèse NOM f s 0.01 0.00 0.01 0.00 +morphogénétique morphogénétique ADJ m s 0.11 0.00 0.11 0.00 +morphologie morphologie NOM f s 0.33 0.81 0.33 0.81 +morphologique morphologique ADJ s 0.01 0.14 0.00 0.07 +morphologiques morphologique ADJ f p 0.01 0.14 0.01 0.07 +morpion morpion NOM m s 2.14 1.76 0.46 0.95 +morpions morpion NOM m p 2.14 1.76 1.68 0.81 +mors mors NOM m 0.64 1.89 0.64 1.89 +morse morse NOM m s 3.50 0.88 3.50 0.88 +morsure morsure NOM f s 6.31 5.95 3.90 4.26 +morsures morsure NOM f p 6.31 5.95 2.41 1.69 +mort_aux_rats mort_aux_rats NOM f 0.61 0.47 0.61 0.47 +mort_né mort_né ADJ m s 0.80 0.61 0.53 0.34 +mort_né mort_né ADJ f s 0.80 0.61 0.23 0.00 +mort_né mort_né ADJ f p 0.80 0.61 0.00 0.07 +mort_né mort_né ADJ m p 0.80 0.61 0.04 0.20 +mort_vivant mort_vivant NOM m s 1.46 0.81 0.41 0.27 +mort mort NOM 460.05 452.70 372.07 373.99 +mortadelle mortadelle NOM f s 0.79 0.34 0.79 0.34 +mortaise mortaise NOM f s 0.16 0.20 0.14 0.00 +mortaiser mortaiser VER 0.01 0.20 0.01 0.20 inf; +mortaises mortaise NOM f p 0.16 0.20 0.01 0.20 +mortaiseuse mortaiseur NOM f s 0.00 0.14 0.00 0.14 +mortalité mortalité NOM f s 1.51 0.61 1.51 0.61 +morte_saison morte_saison NOM f s 0.01 1.08 0.01 1.01 +morte mourir VER f s 916.42 391.08 112.36 44.93 par:pas; +mortel mortel ADJ m s 24.13 20.07 14.62 8.38 +mortelle mortel ADJ f s 24.13 20.07 5.69 6.69 +mortellement mortellement ADV 2.03 3.18 2.03 3.18 +mortelles mortel ADJ f p 24.13 20.07 1.22 2.30 +mortels mortel NOM m p 6.89 4.80 3.32 3.31 +mortes_eaux mortes_eaux NOM f p 0.00 0.07 0.00 0.07 +morte_saison morte_saison NOM f p 0.01 1.08 0.00 0.07 +mortes mourir VER f p 916.42 391.08 5.32 3.04 par:pas; +mortibus mortibus ADJ m s 0.02 0.34 0.02 0.34 +mortier mortier NOM m s 2.06 5.61 1.30 3.51 +mortiers mortier NOM m p 2.06 5.61 0.76 2.09 +mortifia mortifier VER 1.63 3.78 0.00 0.07 ind:pas:3s; +mortifiai mortifier VER 1.63 3.78 0.00 0.07 ind:pas:1s; +mortifiaient mortifier VER 1.63 3.78 0.00 0.07 ind:imp:3p; +mortifiait mortifier VER 1.63 3.78 0.00 0.54 ind:imp:3s; +mortifiant mortifiant ADJ m s 0.05 0.41 0.05 0.20 +mortifiante mortifiant ADJ f s 0.05 0.41 0.00 0.07 +mortifiantes mortifiant ADJ f p 0.05 0.41 0.00 0.07 +mortifiants mortifiant ADJ m p 0.05 0.41 0.00 0.07 +mortification mortification NOM f s 0.56 1.22 0.54 0.68 +mortifications mortification NOM f p 0.56 1.22 0.02 0.54 +mortifie mortifier VER 1.63 3.78 0.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mortifier mortifier VER 1.63 3.78 0.19 0.68 inf; +mortifié mortifier VER m s 1.63 3.78 0.91 1.28 par:pas; +mortifiée mortifier VER f s 1.63 3.78 0.49 0.74 par:pas; +mortifiés mortifier VER m p 1.63 3.78 0.00 0.27 par:pas; +mortifère mortifère ADJ s 0.02 0.34 0.01 0.20 +mortifères mortifère ADJ m p 0.02 0.34 0.01 0.14 +mort_vivant mort_vivant NOM m p 1.46 0.81 1.05 0.54 +morts mort NOM p 460.05 452.70 78.09 66.15 +mortuaire mortuaire ADJ s 1.86 5.47 1.61 4.59 +mortuaires mortuaire ADJ p 1.86 5.47 0.25 0.88 +morue morue NOM f s 3.67 5.61 3.46 4.86 +morues morue NOM f p 3.67 5.61 0.20 0.74 +morula morula NOM f s 0.01 0.00 0.01 0.00 +morvandiau morvandiau ADJ m s 0.00 0.20 0.00 0.20 +morve morve NOM f s 1.60 1.96 1.60 1.82 +morves morve NOM f p 1.60 1.96 0.00 0.14 +morveuse morveux NOM f s 4.97 2.43 0.46 0.14 +morveuses morveux ADJ f p 2.11 1.22 0.01 0.07 +morveux morveux NOM m 4.97 2.43 4.51 2.30 +mos mos NOM m 0.01 0.00 0.01 0.00 +mosaïque mosaïque NOM f s 0.58 4.53 0.53 2.77 +mosaïques mosaïque NOM f p 0.58 4.53 0.06 1.76 +mosaïquée mosaïqué ADJ f s 0.00 0.14 0.00 0.07 +mosaïqués mosaïqué ADJ m p 0.00 0.14 0.00 0.07 +mosaïste mosaïste NOM m s 0.00 0.14 0.00 0.14 +moscoutaire moscoutaire NOM s 0.00 0.07 0.00 0.07 +moscovite moscovite ADJ s 0.68 1.42 0.34 1.15 +moscovites moscovite ADJ p 0.68 1.42 0.34 0.27 +mosellane mosellan ADJ f s 0.00 0.20 0.00 0.14 +mosellanes mosellan ADJ f p 0.00 0.20 0.00 0.07 +mosquée mosquée NOM f s 3.43 5.68 2.71 4.32 +mosquées mosquée NOM f p 3.43 5.68 0.72 1.35 +mot_clé mot_clé NOM m s 0.58 0.34 0.41 0.14 +mot_valise mot_valise NOM m s 0.01 0.00 0.01 0.00 +mât mât NOM m s 1.67 9.59 1.47 5.95 +mot mot NOM m s 279.55 553.78 174.83 260.47 +motard motard NOM m s 4.10 6.89 1.79 3.45 +motarde motard NOM f s 4.10 6.89 0.07 0.14 +motardes motard NOM f p 4.10 6.89 0.01 0.07 +motards motard NOM m p 4.10 6.89 2.23 3.24 +mâte mâter VER 0.04 0.14 0.01 0.07 imp:pre:2s;ind:pre:3s; +motel motel NOM m s 9.43 1.28 8.62 1.22 +motels motel NOM m p 9.43 1.28 0.82 0.07 +mâter mâter VER 0.04 0.14 0.03 0.00 inf; +motesse motesse NOM f s 0.00 0.07 0.00 0.07 +motet motet NOM m s 0.03 0.27 0.03 0.20 +motets motet NOM m p 0.03 0.27 0.00 0.07 +moteur_fusée moteur_fusée NOM m s 0.04 0.00 0.01 0.00 +moteur moteur NOM m s 33.63 51.08 26.31 41.28 +moteur_fusée moteur_fusée NOM m p 0.04 0.00 0.04 0.00 +moteurs moteur NOM m p 33.63 51.08 7.32 9.80 +motif motif NOM m s 16.56 31.15 12.20 15.74 +motifs motif NOM m p 16.56 31.15 4.36 15.41 +motilité motilité NOM f s 0.02 0.00 0.02 0.00 +mâtin mâtin ONO 0.00 0.07 0.00 0.07 +mâtinant mâtiner VER 0.03 0.81 0.00 0.07 par:pre; +mâtine mâtine NOM f s 0.57 1.22 0.00 0.14 +mâtines mâtine NOM f p 0.57 1.22 0.01 0.07 +mâtins mâtin NOM m p 0.26 0.20 0.00 0.07 +mâtiné mâtiné ADJ m s 0.03 0.00 0.03 0.00 +mâtinée mâtiner VER f s 0.03 0.81 0.01 0.14 par:pas; +mâtinés mâtiner VER m p 0.03 0.81 0.00 0.14 par:pas; +motion motion NOM f s 3.10 1.28 2.87 0.68 +motions motion NOM f p 3.10 1.28 0.22 0.61 +motiva motiver VER 5.50 2.43 0.00 0.14 ind:pas:3s; +motivai motiver VER 5.50 2.43 0.00 0.07 ind:pas:1s; +motivaient motiver VER 5.50 2.43 0.00 0.14 ind:imp:3p; +motivais motiver VER 5.50 2.43 0.01 0.00 ind:imp:2s; +motivait motiver VER 5.50 2.43 0.08 0.27 ind:imp:3s; +motivant motivant ADJ m s 0.24 0.00 0.21 0.00 +motivante motivant ADJ f s 0.24 0.00 0.03 0.00 +motivateur motivateur NOM m s 0.05 0.00 0.05 0.00 +motivation motivation NOM f s 4.81 1.28 3.02 0.81 +motivations motivation NOM f p 4.81 1.28 1.79 0.47 +motive motiver VER 5.50 2.43 1.33 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +motivent motiver VER 5.50 2.43 0.04 0.20 ind:pre:3p; +motiver motiver VER 5.50 2.43 1.30 0.34 inf; +motivera motiver VER 5.50 2.43 0.02 0.00 ind:fut:3s; +motivez motiver VER 5.50 2.43 0.01 0.00 imp:pre:2p; +motivé motiver VER m s 5.50 2.43 1.67 0.20 par:pas; +motivée motiver VER f s 5.50 2.43 0.42 0.47 par:pas; +motivées motiver VER f p 5.50 2.43 0.04 0.07 par:pas; +motivés motiver VER m p 5.50 2.43 0.53 0.14 par:pas; +moto_club moto_club NOM f s 0.00 0.14 0.00 0.14 +moto_cross moto_cross NOM m 0.04 0.07 0.04 0.07 +moto moto NOM f s 25.23 19.26 22.61 15.27 +motocross motocross NOM m 0.19 0.00 0.19 0.00 +motoculteur motoculteur NOM m s 0.00 0.14 0.00 0.14 +motoculture motoculture NOM f s 0.14 0.00 0.14 0.00 +motocycles motocycle NOM m p 0.00 0.07 0.00 0.07 +motocyclette motocyclette NOM f s 0.40 4.19 0.36 3.31 +motocyclettes motocyclette NOM f p 0.40 4.19 0.04 0.88 +motocyclisme motocyclisme NOM m s 0.02 0.00 0.02 0.00 +motocycliste motocycliste NOM s 0.07 2.64 0.04 1.28 +motocyclistes motocycliste NOM p 0.07 2.64 0.03 1.35 +motoneige motoneige NOM f s 0.60 0.00 0.34 0.00 +motoneiges motoneige NOM f p 0.60 0.00 0.26 0.00 +motoneurone motoneurone NOM m s 0.01 0.00 0.01 0.00 +motorisation motorisation NOM f s 0.01 0.27 0.01 0.27 +motoriser motoriser VER 0.09 1.42 0.00 0.07 inf; +motorisé motorisé ADJ m s 0.47 2.23 0.12 0.41 +motorisée motorisé ADJ f s 0.47 2.23 0.20 0.68 +motorisées motoriser VER f p 0.09 1.42 0.01 0.14 par:pas; +motorisés motorisé ADJ m p 0.47 2.23 0.16 0.68 +motos moto NOM f p 25.23 19.26 2.62 3.99 +motrice moteur ADJ f s 4.17 2.43 0.26 0.34 +motrices moteur ADJ f p 4.17 2.43 0.20 0.14 +motricité motricité NOM f s 0.42 0.00 0.42 0.00 +mot_clef mot_clef NOM m p 0.00 0.07 0.00 0.07 +mot_clé mot_clé NOM m p 0.58 0.34 0.17 0.20 +mots_croisés mots_croisés NOM m p 0.07 0.00 0.07 0.00 +mâts mât NOM m p 1.67 9.59 0.20 3.65 +mots mot NOM m p 279.55 553.78 104.72 293.31 +motte motte NOM f s 0.51 9.19 0.26 2.97 +mottereau mottereau NOM m s 0.00 0.07 0.00 0.07 +mottes motte NOM f p 0.51 9.19 0.24 6.22 +motteux motteux NOM m 0.00 0.07 0.00 0.07 +motu_proprio motu_proprio ADV 0.00 0.07 0.00 0.07 +mâtée mâter VER f s 0.04 0.14 0.00 0.07 par:pas; +mâture mâture NOM f s 0.14 1.62 0.14 1.08 +mâtures mâture NOM f p 0.14 1.62 0.00 0.54 +motus motus ONO 0.88 1.01 0.88 1.01 +mou mou ADJ m s 6.99 22.50 5.53 17.09 +mouais mouais ONO 1.15 0.20 1.15 0.20 +moucha moucher VER 2.55 6.55 0.00 1.82 ind:pas:3s; +mouchachou mouchachou NOM m s 0.00 0.07 0.00 0.07 +mouchage mouchage NOM m s 0.01 0.00 0.01 0.00 +mouchai moucher VER 2.55 6.55 0.00 0.14 ind:pas:1s; +mouchaient moucher VER 2.55 6.55 0.00 0.20 ind:imp:3p; +mouchait moucher VER 2.55 6.55 0.15 0.41 ind:imp:3s; +mouchant moucher VER 2.55 6.55 0.00 0.20 par:pre; +mouchard mouchard NOM m s 6.00 2.77 4.16 1.62 +moucharda moucharder VER 1.54 0.88 0.00 0.07 ind:pas:3s; +mouchardage mouchardage NOM m s 0.04 0.20 0.04 0.20 +mouchardait moucharder VER 1.54 0.88 0.01 0.07 ind:imp:3s; +moucharde mouchard NOM f s 6.00 2.77 0.56 0.27 +mouchardent moucharder VER 1.54 0.88 0.04 0.00 ind:pre:3p; +moucharder moucharder VER 1.54 0.88 0.46 0.54 inf; +mouchardera moucharder VER 1.54 0.88 0.02 0.00 ind:fut:3s; +moucharderait moucharder VER 1.54 0.88 0.01 0.07 cnd:pre:3s; +mouchardes moucharder VER 1.54 0.88 0.14 0.07 ind:pre:2s; +mouchards mouchard NOM m p 6.00 2.77 1.28 0.88 +mouchardé moucharder VER m s 1.54 0.88 0.61 0.07 par:pas; +mouche mouche NOM f s 24.65 46.89 15.36 18.72 +mouchent moucher VER 2.55 6.55 0.00 0.20 ind:pre:3p; +moucher moucher VER 2.55 6.55 0.76 1.28 inf; +moucheron moucheron NOM m s 2.19 2.43 1.93 0.74 +moucherons moucheron NOM m p 2.19 2.43 0.26 1.69 +mouches mouche NOM f p 24.65 46.89 9.29 28.18 +mouchetait moucheter VER 0.03 1.15 0.00 0.07 ind:imp:3s; +mouchetant moucheter VER 0.03 1.15 0.00 0.07 par:pre; +mouchette mouchette NOM f s 0.00 0.14 0.00 0.14 +moucheté moucheté ADJ m s 0.30 1.15 0.10 0.41 +mouchetée moucheté ADJ f s 0.30 1.15 0.10 0.20 +mouchetées moucheté ADJ f p 0.30 1.15 0.10 0.20 +moucheture moucheture NOM f s 0.02 0.41 0.01 0.00 +mouchetures moucheture NOM f p 0.02 0.41 0.01 0.41 +mouchetés moucheter VER m p 0.03 1.15 0.01 0.20 par:pas; +moucheur moucheur NOM m s 0.01 0.07 0.01 0.07 +mouchez moucher VER 2.55 6.55 0.22 0.07 imp:pre:2p;ind:pre:2p; +mouchoir mouchoir NOM m s 11.53 34.59 9.84 28.85 +mouchoirs mouchoir NOM m p 11.53 34.59 1.69 5.74 +mouchons moucher VER 2.55 6.55 0.00 0.07 ind:pre:1p; +mouché moucher VER m s 2.55 6.55 0.39 0.81 par:pas; +mouchée moucher VER f s 2.55 6.55 0.06 0.20 par:pas; +mouchés moucher VER m p 2.55 6.55 0.04 0.07 par:pas; +moud moudre VER 1.43 2.57 0.38 0.14 ind:pre:3s; +moudjahiddine moudjahiddine NOM m s 0.03 0.07 0.03 0.07 +moudjahidin moudjahidin NOM m p 0.16 0.00 0.16 0.00 +moudjahidine moudjahidine NOM m p 0.01 0.00 0.01 0.00 +moudrai moudre VER 1.43 2.57 0.10 0.00 ind:fut:1s; +moudre moudre VER 1.43 2.57 0.72 1.22 inf; +mouds moudre VER 1.43 2.57 0.00 0.07 ind:pre:1s; +moue moue NOM f s 0.78 18.58 0.76 17.43 +moues moue NOM f p 0.78 18.58 0.02 1.15 +mouette mouette NOM f s 3.24 15.81 1.43 5.47 +mouettes mouette NOM f p 3.24 15.81 1.81 10.34 +moufetait moufeter VER 0.00 0.14 0.00 0.07 ind:imp:3s; +moufette moufette NOM f s 0.04 0.00 0.04 0.00 +moufeté moufeter VER m s 0.00 0.14 0.00 0.07 par:pas; +mouffette mouffette NOM f s 0.08 0.54 0.08 0.54 +moufle moufle NOM f s 0.73 1.76 0.28 0.34 +moufles moufle NOM f p 0.73 1.76 0.45 1.42 +mouflet mouflet NOM m s 0.41 5.68 0.17 3.18 +mouflets mouflet NOM m p 0.41 5.68 0.24 2.50 +mouflette mouflette NOM f s 0.19 2.43 0.19 2.09 +mouflettes mouflette NOM f p 0.19 2.43 0.00 0.34 +mouflon mouflon NOM m s 0.05 0.47 0.04 0.14 +mouflons mouflon NOM m p 0.05 0.47 0.01 0.34 +mouftaient moufter VER 0.20 4.12 0.01 0.00 ind:imp:3p; +mouftais moufter VER 0.20 4.12 0.00 0.07 ind:imp:1s; +mouftait moufter VER 0.20 4.12 0.00 0.61 ind:imp:3s; +moufte moufter VER 0.20 4.12 0.02 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mouftent moufter VER 0.20 4.12 0.01 0.27 ind:pre:3p; +moufter moufter VER 0.20 4.12 0.06 1.22 inf; +mouftera moufter VER 0.20 4.12 0.01 0.07 ind:fut:3s; +mouftes moufter VER 0.20 4.12 0.01 0.07 ind:pre:2s; +mouftez moufter VER 0.20 4.12 0.01 0.07 ind:pre:2p; +moufté moufter VER m s 0.20 4.12 0.06 0.47 par:pas; +mouilla mouiller VER 19.36 38.92 0.01 2.03 ind:pas:3s; +mouillage mouillage NOM m s 0.14 1.22 0.14 1.15 +mouillages mouillage NOM m p 0.14 1.22 0.00 0.07 +mouillaient mouiller VER 19.36 38.92 0.14 0.88 ind:imp:3p; +mouillais mouiller VER 19.36 38.92 0.04 0.27 ind:imp:1s;ind:imp:2s; +mouillait mouiller VER 19.36 38.92 0.32 2.64 ind:imp:3s; +mouillant mouiller VER 19.36 38.92 0.11 1.15 par:pre; +mouillante mouillant ADJ f s 0.00 0.14 0.00 0.07 +mouillasse mouiller VER 19.36 38.92 0.00 0.07 sub:imp:1s; +mouille mouiller VER 19.36 38.92 3.26 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mouillent mouiller VER 19.36 38.92 0.24 0.88 ind:pre:3p; +mouiller mouiller VER 19.36 38.92 4.43 7.50 inf; +mouillera mouiller VER 19.36 38.92 0.44 0.00 ind:fut:3s; +mouillerai mouiller VER 19.36 38.92 0.02 0.07 ind:fut:1s; +mouillerais mouiller VER 19.36 38.92 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +mouillerait mouiller VER 19.36 38.92 0.01 0.20 cnd:pre:3s; +mouilleras mouiller VER 19.36 38.92 0.01 0.07 ind:fut:2s; +mouilleront mouiller VER 19.36 38.92 0.16 0.07 ind:fut:3p; +mouilles mouiller VER 19.36 38.92 0.64 0.41 ind:pre:2s;sub:pre:2s; +mouillette mouillette NOM f s 0.25 0.68 0.04 0.41 +mouillettes mouillette NOM f p 0.25 0.68 0.21 0.27 +mouilleur mouilleur NOM m s 0.01 0.00 0.01 0.00 +mouilleuse mouilleur ADJ f s 0.00 0.07 0.00 0.07 +mouillez mouiller VER 19.36 38.92 0.32 0.14 imp:pre:2p;ind:pre:2p; +mouillon mouillon NOM m s 0.04 0.07 0.00 0.07 +mouillons mouillon NOM m p 0.04 0.07 0.04 0.00 +mouillèrent mouiller VER 19.36 38.92 0.00 0.27 ind:pas:3p; +mouillé mouiller VER m s 19.36 38.92 5.70 8.58 par:pas; +mouillée mouillé ADJ f s 12.92 33.51 5.26 10.54 +mouillées mouillé ADJ f p 12.92 33.51 1.60 3.92 +mouillure mouillure NOM f s 0.00 0.34 0.00 0.27 +mouillures mouillure NOM f p 0.00 0.34 0.00 0.07 +mouillés mouillé ADJ m p 12.92 33.51 1.96 5.74 +mouise mouise NOM f s 0.81 1.01 0.81 1.01 +moujahid moujahid NOM m s 0.00 0.47 0.00 0.47 +moujik moujik NOM m s 0.80 1.15 0.30 0.54 +moujiks moujik NOM m p 0.80 1.15 0.50 0.61 +moujingue moujingue NOM s 0.00 1.28 0.00 0.47 +moujingues moujingue NOM p 0.00 1.28 0.00 0.81 +moukère moukère NOM f s 0.00 0.41 0.00 0.20 +moukères moukère NOM f p 0.00 0.41 0.00 0.20 +moula mouler VER 1.56 8.78 0.00 0.07 ind:pas:3s; +moulage moulage NOM m s 0.80 1.15 0.53 0.54 +moulages moulage NOM m p 0.80 1.15 0.27 0.61 +moulaient mouler VER 1.56 8.78 0.01 0.41 ind:imp:3p; +moulait mouler VER 1.56 8.78 0.12 2.03 ind:imp:3s; +moulant moulant ADJ m s 1.75 1.76 0.71 1.15 +moulante moulant ADJ f s 1.75 1.76 0.31 0.27 +moulantes moulant ADJ f p 1.75 1.76 0.03 0.00 +moulants moulant ADJ m p 1.75 1.76 0.69 0.34 +moule moule NOM s 6.12 9.26 3.56 3.99 +moulent mouler VER 1.56 8.78 0.04 0.14 ind:pre:3p; +mouler mouler VER 1.56 8.78 0.15 0.47 inf; +mouleraient mouler VER 1.56 8.78 0.00 0.07 cnd:pre:3p; +moulerait mouler VER 1.56 8.78 0.00 0.07 cnd:pre:3s; +moules moule NOM p 6.12 9.26 2.56 5.27 +mouleur mouleur NOM m s 0.00 0.07 0.00 0.07 +moulez mouler VER 1.56 8.78 0.21 0.00 imp:pre:2p;ind:pre:2p; +moulin_à_vent moulin_à_vent NOM m 0.00 0.14 0.00 0.14 +moulin moulin NOM m s 7.75 19.05 6.80 15.61 +moulinage moulinage NOM m s 0.01 0.00 0.01 0.00 +moulinait mouliner VER 0.06 0.88 0.01 0.14 ind:imp:3s; +mouline mouliner VER 0.06 0.88 0.02 0.14 imp:pre:2s;ind:pre:3s; +moulinent mouliner VER 0.06 0.88 0.00 0.07 ind:pre:3p; +mouliner mouliner VER 0.06 0.88 0.00 0.47 inf; +moulines mouliner VER 0.06 0.88 0.00 0.07 ind:pre:2s; +moulinet moulinet NOM m s 0.50 3.18 0.44 1.82 +moulinets moulinet NOM m p 0.50 3.18 0.06 1.35 +moulinette moulinette NOM f s 0.27 0.68 0.23 0.61 +moulinettes moulinette NOM f p 0.27 0.68 0.05 0.07 +moulinez mouliner VER 0.06 0.88 0.02 0.00 imp:pre:2p; +moulins moulin NOM m p 7.75 19.05 0.94 3.45 +moult moult ADV 0.33 3.18 0.33 3.18 +moulé mouler VER m s 1.56 8.78 0.42 1.62 par:pas; +moulu moulu ADJ m s 0.48 0.88 0.26 0.47 +moulée mouler VER f s 1.56 8.78 0.14 1.69 par:pas; +moulue moudre VER f s 1.43 2.57 0.11 0.27 par:pas; +moulées mouler VER f p 1.56 8.78 0.01 0.74 par:pas; +moulues moulu ADJ f p 0.48 0.88 0.20 0.14 +moulurations mouluration NOM f p 0.00 0.07 0.00 0.07 +moulure moulure NOM f s 0.22 2.70 0.06 0.54 +moulures moulure NOM f p 0.22 2.70 0.16 2.16 +mouluré moulurer VER m s 0.00 0.20 0.00 0.20 par:pas; +moulés moulé ADJ m p 0.24 1.49 0.02 0.07 +moulus moulu ADJ m p 0.48 0.88 0.02 0.20 +moulut moudre VER 1.43 2.57 0.00 0.07 ind:pas:3s; +moumounes moumoune NOM f p 0.00 0.14 0.00 0.14 +moumoute moumoute NOM f s 0.87 0.61 0.86 0.47 +moumoutes moumoute NOM f p 0.87 0.61 0.01 0.14 +mound mound NOM m s 0.02 0.00 0.02 0.00 +mouquère mouquère NOM f s 0.00 0.27 0.00 0.27 +mourût mourir VER 916.42 391.08 0.02 0.61 sub:imp:3s; +mourûtes mourir VER 916.42 391.08 0.00 0.07 ind:pas:2p; +mouraient mourir VER 916.42 391.08 1.22 5.95 ind:imp:3p; +mourais mourir VER 916.42 391.08 2.23 1.89 ind:imp:1s;ind:imp:2s; +mourait mourir VER 916.42 391.08 2.92 11.35 ind:imp:3s; +mourant mourant ADJ m s 9.56 5.74 6.18 3.04 +mourante mourant ADJ f s 9.56 5.74 2.71 1.89 +mourantes mourant ADJ f p 9.56 5.74 0.27 0.54 +mourants mourant NOM m p 2.87 5.14 1.11 1.35 +mourez mourir VER 916.42 391.08 2.77 1.08 imp:pre:2p;ind:pre:2p; +mourides mouride ADJ f p 0.00 0.07 0.00 0.07 +mouriez mourir VER 916.42 391.08 0.73 0.00 ind:imp:2p; +mourions mourir VER 916.42 391.08 0.41 0.27 ind:imp:1p; +mourir mourir VER 916.42 391.08 234.74 130.61 inf;; +mouroir mouroir NOM m s 0.07 0.27 0.07 0.27 +mouron mouron NOM m s 0.73 4.26 0.53 4.12 +mouronne mouronner VER 0.00 0.14 0.00 0.07 ind:pre:1s; +mouronner mouronner VER 0.00 0.14 0.00 0.07 inf; +mourons mourir VER 916.42 391.08 1.33 0.47 imp:pre:1p;ind:pre:1p; +mourra mourir VER 916.42 391.08 13.63 4.93 ind:fut:3s; +mourrai mourir VER 916.42 391.08 7.54 3.04 ind:fut:1s; +mourraient mourir VER 916.42 391.08 1.38 0.61 cnd:pre:3p; +mourrais mourir VER 916.42 391.08 4.22 1.28 cnd:pre:1s;cnd:pre:2s; +mourrait mourir VER 916.42 391.08 3.45 3.78 cnd:pre:3s; +mourras mourir VER 916.42 391.08 7.67 1.15 ind:fut:2s; +mourre mourre NOM f s 0.03 0.07 0.03 0.07 +mourrez mourir VER 916.42 391.08 4.99 0.95 ind:fut:2p; +mourriez mourir VER 916.42 391.08 0.29 0.07 cnd:pre:2p; +mourrions mourir VER 916.42 391.08 0.16 0.07 cnd:pre:1p; +mourrons mourir VER 916.42 391.08 3.41 1.15 ind:fut:1p; +mourront mourir VER 916.42 391.08 3.86 1.08 ind:fut:3p; +moururent mourir VER 916.42 391.08 0.91 1.22 ind:pas:3p; +mourus mourir VER 916.42 391.08 0.11 0.34 ind:pas:1s;ind:pas:2s; +mourussent mourir VER 916.42 391.08 0.00 0.07 sub:imp:3p; +mourut mourir VER 916.42 391.08 5.62 11.35 ind:pas:3s; +mous mou ADJ m p 6.99 22.50 1.46 5.41 +mouscaille mouscaille NOM f s 0.00 0.81 0.00 0.74 +mouscailles mouscaille NOM f p 0.00 0.81 0.00 0.07 +mousmé mousmé NOM f s 0.22 0.20 0.21 0.14 +mousmés mousmé NOM f p 0.22 0.20 0.01 0.07 +mousquet mousquet NOM m s 1.31 0.95 0.48 0.54 +mousquetades mousquetade NOM f p 0.01 0.00 0.01 0.00 +mousquetaire mousquetaire NOM m s 3.02 3.65 0.82 1.15 +mousquetaires mousquetaire NOM m p 3.02 3.65 2.19 2.50 +mousqueterie mousqueterie NOM f s 0.01 0.20 0.01 0.20 +mousqueton mousqueton NOM m s 0.72 4.39 0.41 3.18 +mousquetons mousqueton NOM m p 0.72 4.39 0.32 1.22 +mousquets mousquet NOM m p 1.31 0.95 0.83 0.41 +moussage moussage NOM m s 0.00 0.07 0.00 0.07 +moussaient mousser VER 0.89 3.51 0.00 0.20 ind:imp:3p; +moussaillon moussaillon NOM m s 0.59 0.34 0.34 0.34 +moussaillons moussaillon NOM m p 0.59 0.34 0.25 0.00 +moussait mousser VER 0.89 3.51 0.00 0.68 ind:imp:3s; +moussaka moussaka NOM f s 0.07 0.27 0.07 0.14 +moussakas moussaka NOM f p 0.07 0.27 0.00 0.14 +moussant moussant ADJ m s 0.75 0.61 0.63 0.27 +moussante moussant ADJ f s 0.75 0.61 0.01 0.14 +moussants moussant ADJ m p 0.75 0.61 0.11 0.20 +mousse mousse NOM s 6.47 27.16 6.24 23.04 +mousseline mousseline NOM f s 0.36 4.73 0.36 4.19 +mousselines mousseline NOM f p 0.36 4.73 0.00 0.54 +moussent mousser VER 0.89 3.51 0.00 0.07 ind:pre:3p; +mousser mousser VER 0.89 3.51 0.66 1.82 inf;; +mousseron mousseron NOM m s 0.00 1.62 0.00 0.20 +mousserons mousseron NOM m p 0.00 1.62 0.00 1.42 +mousses mousse NOM p 6.47 27.16 0.24 4.12 +mousseuse mousseux ADJ f s 0.23 3.72 0.02 1.28 +mousseuses mousseux ADJ f p 0.23 3.72 0.00 0.41 +mousseux mousseux NOM m 1.45 1.82 1.45 1.82 +mousson mousson NOM f s 0.84 17.36 0.73 17.23 +moussons mousson NOM f p 0.84 17.36 0.11 0.14 +moussu moussu ADJ m s 0.04 2.23 0.00 0.68 +moussue moussu ADJ f s 0.04 2.23 0.03 0.41 +moussues moussu ADJ f p 0.04 2.23 0.01 0.47 +moussus moussu ADJ m p 0.04 2.23 0.00 0.68 +moustache moustache NOM f s 12.79 45.07 10.65 28.92 +moustaches moustache NOM f p 12.79 45.07 2.13 16.15 +moustachu moustachu ADJ m s 0.84 8.99 0.63 6.55 +moustachue moustachu ADJ f s 0.84 8.99 0.04 0.54 +moustachues moustachu ADJ f p 0.84 8.99 0.01 0.27 +moustachus moustachu ADJ m p 0.84 8.99 0.17 1.62 +moustagache moustagache NOM f s 0.00 0.54 0.00 0.34 +moustagaches moustagache NOM f p 0.00 0.54 0.00 0.20 +moustiquaire moustiquaire NOM f s 0.45 2.09 0.38 1.22 +moustiquaires moustiquaire NOM f p 0.45 2.09 0.07 0.88 +moustique moustique NOM m s 5.97 7.57 2.53 1.49 +moustiques moustique NOM m p 5.97 7.57 3.44 6.08 +moutard moutard NOM m s 0.86 3.31 0.54 1.49 +moutarde moutarde NOM f s 3.95 5.00 3.94 4.93 +moutardes moutarde NOM f p 3.95 5.00 0.01 0.07 +moutardier moutardier NOM m s 0.00 0.14 0.00 0.14 +moutards moutard NOM m p 0.86 3.31 0.32 1.82 +moutardé moutarder VER m s 0.00 0.07 0.00 0.07 par:pas; +moutier moutier NOM m s 0.14 0.00 0.14 0.00 +mouton mouton NOM m s 15.20 30.47 6.08 14.12 +moutonnaient moutonner VER 0.01 1.01 0.00 0.07 ind:imp:3p; +moutonnait moutonner VER 0.01 1.01 0.00 0.27 ind:imp:3s; +moutonnant moutonner VER 0.01 1.01 0.00 0.20 par:pre; +moutonnante moutonnant ADJ f s 0.00 0.47 0.00 0.20 +moutonnantes moutonnant ADJ f p 0.00 0.47 0.00 0.14 +moutonnants moutonnant ADJ m p 0.00 0.47 0.00 0.07 +moutonne moutonner VER 0.01 1.01 0.01 0.14 ind:pre:3s; +moutonnement moutonnement NOM m s 0.00 1.42 0.00 1.35 +moutonnements moutonnement NOM m p 0.00 1.42 0.00 0.07 +moutonnent moutonner VER 0.01 1.01 0.00 0.20 ind:pre:3p; +moutonner moutonner VER 0.01 1.01 0.00 0.14 inf; +moutonnerie moutonnerie NOM f s 0.00 0.07 0.00 0.07 +moutonneux moutonneux ADJ m s 0.00 0.20 0.00 0.20 +moutonnier moutonnier ADJ m s 0.00 0.27 0.00 0.07 +moutonniers moutonnier ADJ m p 0.00 0.27 0.00 0.07 +moutonnière moutonnier ADJ f s 0.00 0.27 0.00 0.14 +moutons mouton NOM m p 15.20 30.47 9.13 16.35 +mouture mouture NOM f s 0.06 0.20 0.06 0.14 +moutures mouture NOM f p 0.06 0.20 0.00 0.07 +mouvaient mouvoir VER 1.75 13.18 0.10 1.01 ind:imp:3p; +mouvais mouvoir VER 1.75 13.18 0.11 0.14 ind:imp:1s; +mouvait mouvoir VER 1.75 13.18 0.10 1.22 ind:imp:3s; +mouvance mouvance NOM f s 0.02 0.20 0.01 0.20 +mouvances mouvance NOM f p 0.02 0.20 0.01 0.00 +mouvant mouvant ADJ m s 1.77 13.18 0.39 3.45 +mouvante mouvant ADJ f s 1.77 13.18 0.55 4.39 +mouvantes mouvant ADJ f p 1.77 13.18 0.04 2.84 +mouvants mouvant ADJ m p 1.77 13.18 0.81 2.50 +mouvement mouvement NOM m s 40.33 182.97 29.26 134.80 +mouvementent mouvementer VER 0.51 0.41 0.00 0.07 ind:pre:3p; +mouvements mouvement NOM m p 40.33 182.97 11.07 48.18 +mouvementé mouvementé ADJ m s 0.92 1.42 0.16 0.34 +mouvementée mouvementé ADJ f s 0.92 1.42 0.47 0.74 +mouvementées mouvementé ADJ f p 0.92 1.42 0.16 0.34 +mouvementés mouvementé ADJ m p 0.92 1.42 0.12 0.00 +mouvoir mouvoir VER 1.75 13.18 0.58 4.26 inf; +moyen_âge moyen_âge NOM m s 1.15 0.20 1.15 0.20 +moyen_oriental moyen_oriental ADJ m s 0.03 0.00 0.03 0.00 +moyen_orientaux moyen_orientaux ADJ m p 0.01 0.00 0.01 0.00 +moyen moyen NOM m s 83.47 107.03 53.27 48.72 +moyennant moyennant PRE 0.49 4.53 0.49 4.53 +moyenne moyenne NOM f s 7.22 7.77 6.81 7.50 +moyennement moyennement ADV 0.42 0.54 0.42 0.54 +moyenner moyenner VER 0.06 0.20 0.00 0.07 inf; +moyennes moyen ADJ f p 50.69 41.69 0.63 0.81 +moyenâgeuse moyenâgeux ADJ f s 0.09 1.69 0.01 0.14 +moyenâgeuses moyenâgeux ADJ f p 0.09 1.69 0.01 0.47 +moyenâgeux moyenâgeux ADJ m 0.09 1.69 0.06 1.08 +moyens moyen NOM m p 83.47 107.03 30.20 58.31 +moyer moyer VER 0.10 0.00 0.10 0.00 inf; +moyeu moyeu NOM m s 0.01 0.68 0.01 0.68 +moyeux moyeux NOM m p 0.11 0.41 0.11 0.41 +mozarabe mozarabe ADJ s 0.20 0.14 0.20 0.14 +mozartiennes mozartien ADJ f p 0.00 0.07 0.00 0.07 +mozzarella mozzarella NOM f s 0.64 0.14 0.64 0.14 +mozzarelle mozzarelle NOM f s 0.03 0.00 0.03 0.00 +mèche mèche NOM f s 9.87 31.01 8.21 19.12 +mèches mèche NOM f p 9.87 31.01 1.66 11.89 +mène mener VER 99.86 137.70 31.86 21.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mènent mener VER 99.86 137.70 6.42 7.57 ind:pre:3p; +mènera mener VER 99.86 137.70 4.70 1.28 ind:fut:3s; +mènerai mener VER 99.86 137.70 0.73 0.41 ind:fut:1s; +mèneraient mener VER 99.86 137.70 0.05 0.68 cnd:pre:3p; +mènerais mener VER 99.86 137.70 0.25 0.14 cnd:pre:1s;cnd:pre:2s; +mènerait mener VER 99.86 137.70 0.98 2.30 cnd:pre:3s; +mèneras mener VER 99.86 137.70 0.19 0.00 ind:fut:2s; +mènerez mener VER 99.86 137.70 0.08 0.14 ind:fut:2p; +mènerons mener VER 99.86 137.70 0.26 0.07 ind:fut:1p; +mèneront mener VER 99.86 137.70 1.04 0.47 ind:fut:3p; +mènes mener VER 99.86 137.70 2.84 1.01 ind:pre:2s; +mère_grand mère_grand NOM f s 0.89 0.34 0.89 0.34 +mère_patrie mère_patrie NOM f s 0.04 0.41 0.04 0.41 +mère mère NOM f s 686.79 761.28 672.00 737.09 +mères mère NOM f p 686.79 761.28 14.79 24.19 +mètre mètre NOM m s 43.49 130.07 6.03 21.82 +mètres mètre NOM m p 43.49 130.07 37.46 108.24 +mua muer VER 1.63 7.03 0.14 0.68 ind:pas:3s; +muai muer VER 1.63 7.03 0.00 0.07 ind:pas:1s; +muaient muer VER 1.63 7.03 0.00 0.14 ind:imp:3p; +muait muer VER 1.63 7.03 0.02 1.01 ind:imp:3s; +méandre méandre NOM m s 0.72 3.72 0.14 0.54 +méandres méandre NOM m p 0.72 3.72 0.58 3.18 +méandreux méandreux ADJ m s 0.00 0.07 0.00 0.07 +méandrine méandrine NOM f s 0.00 0.07 0.00 0.07 +muant muer VER 1.63 7.03 0.00 0.20 par:pre; +méat méat NOM m s 0.00 0.14 0.00 0.14 +mécanicien mécanicien NOM m s 5.80 7.50 5.38 5.34 +mécanicienne mécanicien NOM f s 5.80 7.50 0.05 0.00 +mécaniciennes mécanicienne NOM f p 0.01 0.00 0.01 0.00 +mécaniciens mécanicien NOM m p 5.80 7.50 0.38 2.16 +mécanique mécanique ADJ s 3.47 21.82 2.83 15.47 +mécaniquement mécaniquement ADV 0.12 3.65 0.12 3.65 +mécaniques mécanique NOM f p 3.75 15.14 0.93 2.70 +mécanisait mécaniser VER 0.29 0.88 0.00 0.14 ind:imp:3s; +mécanisation mécanisation NOM f s 0.01 0.14 0.01 0.14 +mécanise mécaniser VER 0.29 0.88 0.00 0.07 ind:pre:3s; +mécaniser mécaniser VER 0.29 0.88 0.02 0.07 inf; +mécanisme mécanisme NOM m s 4.59 10.34 3.79 6.62 +mécanismes mécanisme NOM m p 4.59 10.34 0.80 3.72 +mécanistes mécaniste ADJ m p 0.00 0.07 0.00 0.07 +mécanisé mécaniser VER m s 0.29 0.88 0.04 0.47 par:pas; +mécanisée mécaniser VER f s 0.29 0.88 0.20 0.14 par:pas; +mécanisées mécaniser VER f p 0.29 0.88 0.01 0.00 par:pas; +mécanisés mécaniser VER m p 0.29 0.88 0.02 0.00 par:pas; +mécano mécano NOM m s 2.50 4.05 1.68 3.45 +mécanographiques mécanographique ADJ p 0.00 0.07 0.00 0.07 +mécanos mécano NOM m p 2.50 4.05 0.82 0.61 +muchacho muchacho NOM m s 1.56 0.07 1.03 0.00 +muchachos muchacho NOM m p 1.56 0.07 0.54 0.07 +méchait mécher VER 0.77 0.61 0.00 0.07 ind:imp:3s; +méchamment méchamment ADV 2.04 6.42 2.04 6.42 +méchanceté méchanceté NOM f s 4.13 12.97 3.38 11.22 +méchancetés méchanceté NOM f p 4.13 12.97 0.75 1.76 +méchant méchant ADJ m s 53.37 34.05 30.23 16.01 +méchante méchant ADJ f s 53.37 34.05 14.73 9.12 +méchantes méchant ADJ f p 53.37 34.05 1.73 1.62 +méchants méchant NOM m p 14.82 6.89 7.21 3.92 +muchas mucher VER 0.53 0.00 0.52 0.00 ind:pas:2s; +muche mucher VER 0.53 0.00 0.01 0.00 ind:pre:3s; +mécher mécher VER 0.77 0.61 0.01 0.00 inf; +méchoui méchoui NOM m s 0.04 0.47 0.03 0.41 +méchouis méchoui NOM m p 0.04 0.47 0.01 0.07 +mucilage mucilage NOM m s 0.01 0.00 0.01 0.00 +mucilagineuse mucilagineux ADJ f s 0.00 0.07 0.00 0.07 +mécompte mécompte NOM m s 0.00 0.81 0.00 0.27 +mécomptes mécompte NOM m p 0.00 0.81 0.00 0.54 +méconduite méconduite NOM f s 0.01 0.00 0.01 0.00 +méconium méconium NOM m s 0.03 0.00 0.03 0.00 +méconnaîtra méconnaître VER 0.27 4.93 0.00 0.07 ind:fut:3s; +méconnaître méconnaître VER 0.27 4.93 0.10 2.23 inf; +méconnais méconnaître VER 0.27 4.93 0.10 0.27 ind:pre:1s;ind:pre:2s; +méconnaissable méconnaissable ADJ s 1.82 6.22 1.53 4.86 +méconnaissables méconnaissable ADJ p 1.82 6.22 0.29 1.35 +méconnaissais méconnaître VER 0.27 4.93 0.00 0.20 ind:imp:1s; +méconnaissance méconnaissance NOM f s 0.03 0.81 0.03 0.81 +méconnaissant méconnaître VER 0.27 4.93 0.00 0.14 par:pre; +méconnaisse méconnaître VER 0.27 4.93 0.00 0.27 sub:pre:1s;sub:pre:3s; +méconnaissent méconnaître VER 0.27 4.93 0.01 0.14 ind:pre:3p; +méconnu méconnu ADJ m s 0.26 2.16 0.17 1.01 +méconnue méconnaître VER f s 0.27 4.93 0.05 0.41 par:pas; +méconnues méconnaître VER f p 0.27 4.93 0.00 0.20 par:pas; +méconnus méconnu ADJ m p 0.26 2.16 0.06 0.54 +mécontent mécontent ADJ m s 3.04 9.53 1.54 6.96 +mécontenta mécontenter VER 0.20 0.81 0.00 0.07 ind:pas:3s; +mécontentait mécontenter VER 0.20 0.81 0.00 0.07 ind:imp:3s; +mécontente mécontent ADJ f s 3.04 9.53 0.50 1.42 +mécontentement mécontentement NOM m s 1.62 4.05 1.60 3.58 +mécontentements mécontentement NOM m p 1.62 4.05 0.02 0.47 +mécontenter mécontenter VER 0.20 0.81 0.03 0.34 inf; +mécontentes mécontent ADJ f p 3.04 9.53 0.04 0.27 +mécontents mécontent ADJ m p 3.04 9.53 0.96 0.88 +mécontenté mécontenter VER m s 0.20 0.81 0.14 0.07 par:pas; +mécontentés mécontenter VER m p 0.20 0.81 0.00 0.07 par:pas; +mucor mucor NOM m s 0.01 0.00 0.01 0.00 +mucosité mucosité NOM f s 0.06 0.20 0.01 0.07 +mucosités mucosité NOM f p 0.06 0.20 0.05 0.14 +mucoviscidose mucoviscidose NOM f s 0.14 0.00 0.14 0.00 +mécru mécroire VER m s 0.00 0.07 0.00 0.07 par:pas; +mécréance mécréance NOM f s 0.00 0.20 0.00 0.20 +mécréant mécréant NOM m s 1.41 1.35 1.09 0.81 +mécréante mécréant ADJ f s 0.37 0.47 0.14 0.00 +mécréants mécréant NOM m p 1.41 1.35 0.31 0.54 +mécène mécène NOM m s 0.82 1.89 0.69 1.49 +mécènes mécène NOM m p 0.82 1.89 0.14 0.41 +mécénat mécénat NOM m s 0.04 0.00 0.04 0.00 +mucus mucus NOM m 0.38 0.20 0.38 0.20 +médaille médaille NOM f s 16.32 16.08 12.44 9.53 +médailles médaille NOM f p 16.32 16.08 3.89 6.55 +médailleurs médailleur NOM m p 0.00 0.07 0.00 0.07 +médaillon médaillon NOM m s 1.77 3.65 1.44 2.16 +médaillons médaillon NOM m p 1.77 3.65 0.33 1.49 +médaillé médaillé NOM m s 0.24 0.20 0.24 0.14 +médaillée médailler VER f s 0.13 0.07 0.02 0.00 par:pas; +médecin_chef médecin_chef NOM m s 0.56 2.09 0.56 2.09 +médecin_conseil médecin_conseil NOM m s 0.01 0.00 0.01 0.00 +médecin_général médecin_général NOM m s 0.01 0.20 0.01 0.20 +médecin_major médecin_major NOM m s 0.70 0.14 0.70 0.14 +médecin médecin NOM m s 140.19 75.61 112.35 60.68 +médecine_ball médecine_ball NOM m s 0.01 0.00 0.01 0.00 +médecine médecine NOM f s 23.51 12.43 23.29 12.36 +médecines médecine NOM f p 23.51 12.43 0.22 0.07 +médecins médecin NOM m p 140.19 75.61 27.84 14.93 +média média NOM m s 10.23 1.22 0.77 0.07 +médian médian ADJ m s 0.29 2.50 0.04 0.41 +médiane médian ADJ f s 0.29 2.50 0.21 1.96 +médianes médian ADJ f p 0.29 2.50 0.02 0.14 +médianoche médianoche NOM m s 0.00 0.47 0.00 0.47 +médians médian ADJ m p 0.29 2.50 0.01 0.00 +médias média NOM m p 10.23 1.22 9.46 1.15 +médiascope médiascope NOM m s 0.14 0.00 0.14 0.00 +médiastin médiastin NOM m s 0.20 0.00 0.20 0.00 +médiateur médiateur NOM m s 0.60 0.41 0.41 0.20 +médiateurs médiateur NOM m p 0.60 0.41 0.08 0.07 +médiation médiation NOM f s 0.46 0.74 0.46 0.74 +médiatique médiatique ADJ s 1.72 0.61 1.61 0.41 +médiatiques médiatique ADJ p 1.72 0.61 0.11 0.20 +médiatisant médiatiser VER 0.36 0.00 0.01 0.00 par:pre; +médiatisation médiatisation NOM f s 0.23 0.00 0.23 0.00 +médiatisé médiatiser VER m s 0.36 0.00 0.12 0.00 par:pas; +médiatisée médiatiser VER f s 0.36 0.00 0.21 0.00 par:pas; +médiatisées médiatiser VER f p 0.36 0.00 0.01 0.00 par:pas; +médiatisés médiatiser VER m p 0.36 0.00 0.01 0.00 par:pas; +médiator médiator NOM m s 0.09 0.00 0.09 0.00 +médiatrice médiateur NOM f s 0.60 0.41 0.12 0.07 +médiatrices médiateur NOM f p 0.60 0.41 0.00 0.07 +médical médical ADJ m s 31.48 11.89 13.65 4.80 +médicale médical ADJ f s 31.48 11.89 10.41 3.85 +médicalement médicalement ADV 1.03 0.61 1.03 0.61 +médicales médical ADJ f p 31.48 11.89 2.81 1.76 +médicalisation médicalisation NOM f s 0.01 0.00 0.01 0.00 +médicalisé médicaliser VER m s 0.04 0.07 0.04 0.00 par:pas; +médicalisée médicaliser VER f s 0.04 0.07 0.01 0.07 par:pas; +médicament médicament NOM m s 41.82 12.57 12.03 4.12 +médicamentait médicamenter VER 0.03 0.14 0.00 0.07 ind:imp:3s; +médicamentation médicamentation NOM f s 0.04 0.07 0.04 0.07 +médicamenter médicamenter VER 0.03 0.14 0.02 0.07 inf; +médicamenteuse médicamenteux ADJ f s 0.10 0.07 0.07 0.00 +médicamenteux médicamenteux ADJ m 0.10 0.07 0.02 0.07 +médicaments médicament NOM m p 41.82 12.57 29.80 8.45 +médicamenté médicamenter VER m s 0.03 0.14 0.01 0.00 par:pas; +médicastre médicastre NOM m s 0.00 0.41 0.00 0.14 +médicastres médicastre NOM m p 0.00 0.41 0.00 0.27 +médication médication NOM f s 0.23 0.27 0.22 0.07 +médications médication NOM f p 0.23 0.27 0.01 0.20 +médicaux médical ADJ m p 31.48 11.89 4.62 1.49 +médicinal médicinal ADJ m s 0.85 0.54 0.23 0.00 +médicinale médicinal ADJ f s 0.85 0.54 0.10 0.07 +médicinales médicinal ADJ f p 0.85 0.54 0.52 0.41 +médicinaux médicinal ADJ m p 0.85 0.54 0.01 0.07 +médicine médiciner VER 0.07 0.00 0.07 0.00 ind:pre:1s;ind:pre:3s; +médico_légal médico_légal ADJ m s 1.06 0.54 0.63 0.41 +médico_légal médico_légal ADJ f s 1.06 0.54 0.25 0.14 +médico_légal médico_légal ADJ f p 1.06 0.54 0.13 0.00 +médico_légal médico_légal ADJ m p 1.06 0.54 0.05 0.00 +médico_psychologique médico_psychologique ADJ m s 0.01 0.00 0.01 0.00 +médico_social médico_social ADJ m s 0.01 0.07 0.01 0.07 +médina médina NOM f s 0.37 1.28 0.37 1.08 +médinas médina NOM f p 0.37 1.28 0.00 0.20 +médiocre médiocre ADJ s 3.36 15.88 2.59 11.89 +médiocrement médiocrement ADV 0.28 2.43 0.28 2.43 +médiocres médiocre ADJ p 3.36 15.88 0.77 3.99 +médiocrité médiocrité NOM f s 2.04 5.54 2.02 5.34 +médiocrités médiocrité NOM f p 2.04 5.54 0.02 0.20 +médire médire VER 0.35 1.15 0.11 0.41 inf; +médis médire VER 0.35 1.15 0.02 0.07 imp:pre:2s;ind:pre:2s; +médisaient médire VER 0.35 1.15 0.00 0.07 ind:imp:3p; +médisait médire VER 0.35 1.15 0.01 0.07 ind:imp:3s; +médisance médisance NOM f s 0.13 1.62 0.04 0.88 +médisances médisance NOM f p 0.13 1.62 0.09 0.74 +médisant médisant ADJ m s 0.06 0.14 0.04 0.07 +médisante médisant ADJ f s 0.06 0.14 0.02 0.07 +médisants médisant NOM m p 0.17 0.68 0.16 0.47 +médise médire VER 0.35 1.15 0.00 0.07 sub:pre:3s; +médisent médire VER 0.35 1.15 0.00 0.20 ind:pre:3p; +médisez médire VER 0.35 1.15 0.02 0.00 imp:pre:2p; +médisons médire VER 0.35 1.15 0.00 0.14 imp:pre:1p;ind:pre:1p; +médit médire VER m s 0.35 1.15 0.17 0.14 ind:pre:3s;par:pas; +médita méditer VER 5.49 14.86 0.01 0.81 ind:pas:3s; +méditai méditer VER 5.49 14.86 0.00 0.14 ind:pas:1s; +méditaient méditer VER 5.49 14.86 0.01 0.47 ind:imp:3p; +méditais méditer VER 5.49 14.86 0.19 0.54 ind:imp:1s;ind:imp:2s; +méditait méditer VER 5.49 14.86 0.12 2.50 ind:imp:3s; +méditant méditer VER 5.49 14.86 0.07 1.22 par:pre; +méditatif méditatif ADJ m s 0.20 4.59 0.08 2.36 +méditatifs méditatif ADJ m p 0.20 4.59 0.00 0.74 +méditation méditation NOM f s 3.14 10.47 2.72 7.50 +méditations méditation NOM f p 3.14 10.47 0.42 2.97 +méditative méditatif ADJ f s 0.20 4.59 0.12 1.28 +méditativement méditativement ADV 0.00 0.34 0.00 0.34 +méditatives méditatif ADJ f p 0.20 4.59 0.00 0.20 +médite méditer VER 5.49 14.86 0.68 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +méditent méditer VER 5.49 14.86 0.28 0.41 ind:pre:3p; +méditer méditer VER 5.49 14.86 2.44 4.80 inf; +méditera méditer VER 5.49 14.86 0.03 0.07 ind:fut:3s; +méditerait méditer VER 5.49 14.86 0.00 0.07 cnd:pre:3s; +méditeras méditer VER 5.49 14.86 0.01 0.00 ind:fut:2s; +méditerranée méditerrané ADJ f s 0.04 0.95 0.04 0.95 +méditerranéen méditerranéen ADJ m s 0.74 5.34 0.08 2.64 +méditerranéenne méditerranéen ADJ f s 0.74 5.34 0.33 1.49 +méditerranéennes méditerranéenne NOM f p 0.03 0.14 0.03 0.14 +méditerranéens méditerranéen NOM m p 0.45 0.27 0.45 0.07 +médites méditer VER 5.49 14.86 0.31 0.07 ind:pre:2s; +méditez méditer VER 5.49 14.86 0.56 0.27 imp:pre:2p;ind:pre:2p; +méditiez méditer VER 5.49 14.86 0.02 0.00 ind:imp:2p; +méditons méditer VER 5.49 14.86 0.07 0.00 imp:pre:1p;ind:pre:1p; +méditèrent méditer VER 5.49 14.86 0.01 0.07 ind:pas:3p; +médité méditer VER m s 5.49 14.86 0.67 1.35 par:pas; +méditée méditer VER f s 5.49 14.86 0.01 0.27 par:pas; +méditées méditer VER f p 5.49 14.86 0.00 0.14 par:pas; +médités méditer VER m p 5.49 14.86 0.00 0.14 par:pas; +médium médium NOM m s 6.07 1.82 4.97 1.08 +médiumnique médiumnique ADJ s 0.21 0.14 0.11 0.14 +médiumniques médiumnique ADJ p 0.21 0.14 0.10 0.00 +médiumnité médiumnité NOM f s 0.03 0.00 0.03 0.00 +médiums médium NOM m p 6.07 1.82 1.10 0.74 +médius médius NOM m 0.16 1.69 0.16 1.69 +médiéval médiéval ADJ m s 1.66 4.26 0.70 1.15 +médiévale médiéval ADJ f s 1.66 4.26 0.50 1.62 +médiévales médiéval ADJ f p 1.66 4.26 0.42 0.88 +médiévaux médiéval ADJ m p 1.66 4.26 0.04 0.61 +médiéviste médiéviste NOM s 0.00 0.20 0.00 0.07 +médiévistes médiéviste NOM p 0.00 0.20 0.00 0.14 +médoc médoc NOM m s 1.48 1.35 0.19 0.14 +médocs médoc NOM m p 1.48 1.35 1.29 1.22 +mudéjar mudéjar ADJ m s 0.10 0.20 0.10 0.14 +mudéjare mudéjar ADJ f s 0.10 0.20 0.00 0.07 +médulla médulla NOM f s 0.01 0.00 0.01 0.00 +médullaire médullaire ADJ s 0.07 0.00 0.07 0.00 +médusa méduser VER 0.48 1.96 0.10 0.14 ind:pas:3s; +médusait méduser VER 0.48 1.96 0.00 0.14 ind:imp:3s; +médusant méduser VER 0.48 1.96 0.00 0.07 par:pre; +méduse méduse NOM f s 1.50 3.92 0.66 1.42 +médusent méduser VER 0.48 1.96 0.00 0.07 ind:pre:3p; +méduser méduser VER 0.48 1.96 0.01 0.00 inf; +méduses méduse NOM f p 1.50 3.92 0.84 2.50 +médusé méduser VER m s 0.48 1.96 0.15 0.47 par:pas; +médusée méduser VER f s 0.48 1.96 0.00 0.41 par:pas; +médusées médusé ADJ f p 0.02 1.96 0.00 0.14 +médusés méduser VER m p 0.48 1.96 0.21 0.61 par:pas; +mue muer VER 1.63 7.03 0.26 0.88 ind:pre:1s;ind:pre:3s; +muent muer VER 1.63 7.03 0.16 0.20 ind:pre:3p; +muer muer VER 1.63 7.03 0.65 0.95 inf; +muera muer VER 1.63 7.03 0.02 0.00 ind:fut:3s; +mueront muer VER 1.63 7.03 0.00 0.07 ind:fut:3p; +mues muer VER 1.63 7.03 0.02 0.07 ind:pre:2s;sub:pre:2s; +muesli muesli NOM m s 0.06 0.00 0.06 0.00 +muet muet ADJ m s 14.23 45.74 8.69 16.55 +muets muet ADJ m p 14.23 45.74 2.43 6.01 +muette muet ADJ f s 14.23 45.74 2.68 19.12 +muettement muettement ADV 0.00 0.68 0.00 0.68 +muettes muet ADJ f p 14.23 45.74 0.43 4.05 +muezzin muezzin NOM m s 0.14 0.61 0.14 0.41 +muezzins muezzin NOM m p 0.14 0.61 0.00 0.20 +méfait méfait NOM m s 1.85 2.64 0.46 0.74 +méfaits méfait NOM m p 1.85 2.64 1.39 1.89 +muffin muffin NOM m s 2.96 0.34 1.30 0.00 +muffins muffin NOM m p 2.96 0.34 1.65 0.34 +méfiaient méfier VER 26.68 35.95 0.03 0.88 ind:imp:3p; +méfiais méfier VER 26.68 35.95 0.29 1.42 ind:imp:1s;ind:imp:2s; +méfiait méfier VER 26.68 35.95 0.16 4.05 ind:imp:3s; +méfiance méfiance NOM f s 2.21 19.46 2.18 18.99 +méfiances méfiance NOM f p 2.21 19.46 0.02 0.47 +méfiant méfiant ADJ m s 3.64 9.93 2.07 5.14 +méfiante méfiant ADJ f s 3.64 9.93 1.12 2.36 +méfiantes méfiant ADJ f p 3.64 9.93 0.01 0.47 +méfiants méfiant ADJ m p 3.64 9.93 0.44 1.96 +méfie méfier VER 26.68 35.95 10.95 8.24 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +méfient méfier VER 26.68 35.95 1.31 1.15 ind:pre:3p; +méfier méfier VER 26.68 35.95 7.18 13.11 inf; +méfiera méfier VER 26.68 35.95 0.15 0.07 ind:fut:3s; +méfierai méfier VER 26.68 35.95 0.26 0.14 ind:fut:1s; +méfierais méfier VER 26.68 35.95 0.36 0.41 cnd:pre:1s; +méfierait méfier VER 26.68 35.95 0.30 0.07 cnd:pre:3s; +méfieront méfier VER 26.68 35.95 0.19 0.00 ind:fut:3p; +méfies méfier VER 26.68 35.95 0.61 0.20 ind:pre:2s; +méfiez méfier VER 26.68 35.95 3.63 2.70 imp:pre:2p;ind:pre:2p; +méfiions méfier VER 26.68 35.95 0.00 0.14 ind:imp:1p; +méfions méfier VER 26.68 35.95 0.73 0.34 imp:pre:1p;ind:pre:1p; +méfièrent méfier VER 26.68 35.95 0.02 0.07 ind:pas:3p; +méfié méfier VER m s 26.68 35.95 0.22 1.22 par:pas; +méfiée méfier VER f s 26.68 35.95 0.19 0.41 par:pas; +méfiés méfier VER m p 26.68 35.95 0.01 0.68 par:pas; +mufle mufle NOM m s 1.70 6.89 1.56 6.08 +muflerie muflerie NOM f s 0.12 1.01 0.12 0.81 +mufleries muflerie NOM f p 0.12 1.01 0.00 0.20 +mufles mufle NOM m p 1.70 6.89 0.14 0.81 +muflier muflier NOM m s 0.68 0.07 0.68 0.00 +mufliers muflier NOM m p 0.68 0.07 0.00 0.07 +muflée muflée NOM f s 0.01 0.20 0.01 0.20 +méforme méforme NOM f s 0.02 0.00 0.02 0.00 +mufti mufti NOM m s 0.26 0.41 0.25 0.14 +muftis mufti NOM m p 0.26 0.41 0.01 0.27 +méga méga ADJ s 4.75 0.81 4.75 0.81 +mégacôlon mégacôlon NOM m s 0.01 0.00 0.01 0.00 +mégahertz mégahertz NOM m 0.05 0.00 0.05 0.00 +mégajoules mégajoule NOM m p 0.02 0.00 0.02 0.00 +mégalithe mégalithe NOM m s 0.01 0.14 0.01 0.14 +mégalithique mégalithique ADJ f s 0.00 0.14 0.00 0.14 +mégalo mégalo ADJ m s 0.34 0.00 0.32 0.00 +mégalomane mégalomane ADJ s 0.42 0.47 0.41 0.34 +mégalomanes mégalomane ADJ m p 0.42 0.47 0.01 0.14 +mégalomaniaque mégalomaniaque ADJ s 0.01 0.14 0.01 0.14 +mégalomanie mégalomanie NOM f s 0.25 0.61 0.25 0.61 +mégalopole mégalopole NOM f s 0.02 0.00 0.02 0.00 +mégalos mégalo NOM p 0.03 0.20 0.03 0.00 +mégalosaure mégalosaure NOM m s 0.01 0.00 0.01 0.00 +mégaphone mégaphone NOM m s 0.89 0.61 0.58 0.54 +mégaphones mégaphone NOM m p 0.89 0.61 0.30 0.07 +mégapole mégapole NOM f s 0.01 0.27 0.01 0.27 +mégaron mégaron NOM m s 0.00 0.14 0.00 0.14 +mégathériums mégathérium NOM m p 0.00 0.07 0.00 0.07 +mégatonne mégatonne NOM f s 0.39 0.14 0.04 0.00 +mégatonnes mégatonne NOM f p 0.39 0.14 0.35 0.14 +mégawatts mégawatt NOM m p 0.00 0.07 0.00 0.07 +muges muge NOM m p 0.00 0.07 0.00 0.07 +mugi mugir VER m s 0.33 2.84 0.01 0.20 par:pas; +mugir mugir VER 0.33 2.84 0.04 0.95 inf; +mugis mugir VER 0.33 2.84 0.00 0.07 ind:pre:2s; +mugissaient mugir VER 0.33 2.84 0.00 0.07 ind:imp:3p; +mugissait mugir VER 0.33 2.84 0.00 0.34 ind:imp:3s; +mugissant mugissant ADJ m s 0.20 0.54 0.10 0.20 +mugissante mugissant ADJ f s 0.20 0.54 0.10 0.14 +mugissantes mugissant ADJ f p 0.20 0.54 0.00 0.14 +mugissants mugissant ADJ m p 0.20 0.54 0.00 0.07 +mugissement mugissement NOM m s 0.09 2.97 0.04 1.76 +mugissements mugissement NOM m p 0.09 2.97 0.04 1.22 +mugissent mugir VER 0.33 2.84 0.01 0.14 ind:pre:3p; +mégisserie mégisserie NOM f s 0.00 0.47 0.00 0.47 +mégissiers mégissier NOM m p 0.00 0.07 0.00 0.07 +mugit mugir VER 0.33 2.84 0.26 0.88 ind:pre:3s;ind:pas:3s; +mégot mégot NOM m s 2.66 17.30 1.20 9.53 +mégotage mégotage NOM m s 0.01 0.20 0.01 0.14 +mégotages mégotage NOM m p 0.01 0.20 0.00 0.07 +mégotaient mégoter VER 0.43 0.47 0.00 0.07 ind:imp:3p; +mégotait mégoter VER 0.43 0.47 0.00 0.07 ind:imp:3s; +mégote mégoter VER 0.43 0.47 0.02 0.14 ind:pre:3s; +mégoter mégoter VER 0.43 0.47 0.41 0.14 inf; +mégots mégot NOM m p 2.66 17.30 1.46 7.77 +mégoté mégoter VER m s 0.43 0.47 0.00 0.07 par:pas; +mégère mégère NOM f s 1.01 0.81 0.83 0.54 +mégères mégère NOM f p 1.01 0.81 0.18 0.27 +muguet muguet NOM m s 0.40 3.92 0.38 3.85 +muguets muguet NOM m p 0.40 3.92 0.02 0.07 +muguette mugueter VER 0.00 0.07 0.00 0.07 imp:pre:2s; +méhari méhari NOM m s 0.14 0.41 0.14 0.41 +méhariste méhariste NOM s 0.01 0.27 0.00 0.07 +méharistes méhariste NOM p 0.01 0.27 0.01 0.20 +muids muid NOM m p 0.00 0.14 0.00 0.14 +méiose méiose NOM f s 0.04 0.00 0.04 0.00 +méjugement méjugement NOM m s 0.00 0.07 0.00 0.07 +méjugez méjuger VER 0.05 0.07 0.03 0.00 imp:pre:2p;ind:pre:2p; +méjugé méjuger VER m s 0.05 0.07 0.01 0.00 par:pas; +méjugés méjuger VER m p 0.05 0.07 0.01 0.07 par:pas; +mêla mêler VER 53.84 112.64 0.04 2.50 ind:pas:3s; +mêlai mêler VER 53.84 112.64 0.00 0.54 ind:pas:1s; +mêlaient mêler VER 53.84 112.64 0.07 11.15 ind:imp:3p; +mêlais mêler VER 53.84 112.64 0.21 0.61 ind:imp:1s;ind:imp:2s; +mêlait mêler VER 53.84 112.64 0.14 13.31 ind:imp:3s; +mélancolie mélancolie NOM f s 2.60 21.01 2.60 20.68 +mélancolies mélancolie NOM f p 2.60 21.01 0.00 0.34 +mélancolieux mélancolieux ADJ m 0.00 0.07 0.00 0.07 +mélancolique mélancolique ADJ s 4.41 16.62 4.10 13.45 +mélancoliquement mélancoliquement ADV 0.00 1.82 0.00 1.82 +mélancoliques mélancolique ADJ p 4.41 16.62 0.31 3.18 +mélancoliser mélancoliser VER 0.00 0.07 0.00 0.07 inf; +mélange mélange NOM m s 9.90 31.01 9.56 28.58 +mélangea mélanger VER 14.36 22.84 0.01 0.61 ind:pas:3s; +mélangeaient mélanger VER 14.36 22.84 0.01 1.76 ind:imp:3p; +mélangeais mélanger VER 14.36 22.84 0.04 0.20 ind:imp:1s;ind:imp:2s; +mélangeait mélanger VER 14.36 22.84 0.10 2.50 ind:imp:3s; +mélangeant mélanger VER 14.36 22.84 0.27 1.96 par:pre; +mélangent mélanger VER 14.36 22.84 0.95 1.28 ind:pre:3p; +mélangeons mélanger VER 14.36 22.84 0.31 0.20 imp:pre:1p;ind:pre:1p; +mélanger mélanger VER 14.36 22.84 4.46 3.18 inf;; +mélangera mélanger VER 14.36 22.84 0.17 0.07 ind:fut:3s; +mélangerai mélanger VER 14.36 22.84 0.01 0.00 ind:fut:1s; +mélangeraient mélanger VER 14.36 22.84 0.00 0.07 cnd:pre:3p; +mélanges mélanger VER 14.36 22.84 0.88 0.47 ind:pre:2s;sub:pre:2s; +mélangeur mélangeur NOM m s 0.05 0.20 0.05 0.14 +mélangeurs mélangeur NOM m p 0.05 0.20 0.00 0.07 +mélangez mélanger VER 14.36 22.84 0.94 0.34 imp:pre:2p;ind:pre:2p; +mélangions mélanger VER 14.36 22.84 0.00 0.14 ind:imp:1p; +mélangèrent mélanger VER 14.36 22.84 0.00 0.20 ind:pas:3p; +mélangé mélanger VER m s 14.36 22.84 2.08 2.50 par:pas; +mélangée mélanger VER f s 14.36 22.84 0.24 1.42 par:pas; +mélangées mélangé ADJ f p 1.22 2.97 0.31 0.74 +mélangés mélanger VER m p 14.36 22.84 0.51 1.08 par:pas; +mélanine mélanine NOM f s 0.04 0.00 0.04 0.00 +mélanome mélanome NOM m s 0.52 0.00 0.42 0.00 +mélanomes mélanome NOM m p 0.52 0.00 0.09 0.00 +mêlant mêler VER 53.84 112.64 0.70 4.86 par:pre; +mélanésiennes mélanésien ADJ f p 0.01 0.00 0.01 0.00 +mulard mulard ADJ m s 0.01 0.00 0.01 0.00 +mélasse mélasse NOM f s 1.31 1.42 1.31 1.42 +mêlasse mêler VER 53.84 112.64 0.00 0.07 sub:imp:1s; +mélatonine mélatonine NOM f s 0.11 0.00 0.11 0.00 +mêle_tout mêle_tout NOM m 0.01 0.00 0.01 0.00 +mêle mêler VER 53.84 112.64 18.97 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +mule mule NOM f s 9.62 8.99 7.29 4.26 +mêlent mêler VER 53.84 112.64 1.77 6.01 ind:pre:3p; +mêler mêler VER 53.84 112.64 11.24 17.23 inf;; +mêlera mêler VER 53.84 112.64 0.41 0.14 ind:fut:3s; +mêlerai mêler VER 53.84 112.64 0.30 0.20 ind:fut:1s; +mêleraient mêler VER 53.84 112.64 0.02 0.07 cnd:pre:3p; +mêlerais mêler VER 53.84 112.64 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +mêlerait mêler VER 53.84 112.64 0.16 0.07 cnd:pre:3s; +mêleront mêler VER 53.84 112.64 0.31 0.14 ind:fut:3p; +mêles mêler VER 53.84 112.64 3.03 0.68 ind:pre:2s; +mules mule NOM f p 9.62 8.99 2.33 4.73 +mulet mulet NOM m s 3.67 7.43 3.19 2.77 +muleta muleta NOM f s 0.15 0.27 0.15 0.27 +muletier muletier ADJ m s 0.05 0.41 0.05 0.27 +muletiers muletier NOM m p 0.37 0.27 0.32 0.27 +muletière muletier ADJ f s 0.05 0.41 0.00 0.14 +mulets mulet NOM m p 3.67 7.43 0.49 4.66 +mulettes mulette NOM f p 0.01 0.00 0.01 0.00 +mêlez mêler VER 53.84 112.64 4.26 0.88 imp:pre:2p;ind:pre:2p; +mulhousien mulhousien ADJ m s 0.00 0.07 0.00 0.07 +méli_mélo méli_mélo NOM m s 0.39 0.81 0.39 0.68 +mêliez mêler VER 53.84 112.64 0.11 0.14 ind:imp:2p; +mélilot mélilot NOM m s 0.00 0.07 0.00 0.07 +mélinite mélinite NOM f s 0.00 0.14 0.00 0.14 +mêlions mêler VER 53.84 112.64 0.01 0.07 ind:imp:1p; +méli_mélo méli_mélo NOM m p 0.39 0.81 0.00 0.14 +mélisse mélisse NOM f s 0.00 0.34 0.00 0.34 +mullah mullah NOM m s 0.05 0.00 0.05 0.00 +mélo mélo NOM m s 0.89 1.08 0.84 0.95 +mélodie mélodie NOM f s 4.08 7.77 3.61 5.95 +mélodies mélodie NOM f p 4.08 7.77 0.47 1.82 +mélodieuse mélodieux ADJ f s 0.49 2.97 0.11 0.95 +mélodieusement mélodieusement ADV 0.01 0.07 0.01 0.07 +mélodieuses mélodieux ADJ f p 0.49 2.97 0.01 0.14 +mélodieux mélodieux ADJ m 0.49 2.97 0.37 1.89 +mélodique mélodique ADJ s 0.06 0.47 0.03 0.34 +mélodiques mélodique ADJ p 0.06 0.47 0.03 0.14 +mélodramatique mélodramatique ADJ s 0.64 0.68 0.51 0.68 +mélodramatiques mélodramatique ADJ p 0.64 0.68 0.13 0.00 +mélodrame mélodrame NOM m s 1.09 1.49 1.04 1.35 +mélodrames mélodrame NOM m p 1.09 1.49 0.05 0.14 +mélomane mélomane ADJ m s 0.21 0.54 0.21 0.54 +mélomanes mélomane NOM p 0.44 0.81 0.27 0.27 +mulon mulon NOM m s 0.00 0.07 0.00 0.07 +mêlons mêler VER 53.84 112.64 0.19 0.20 imp:pre:1p;ind:pre:1p; +mélopée mélopée NOM f s 0.02 3.51 0.01 2.84 +mélopées mélopée NOM f p 0.02 3.51 0.01 0.68 +mélos mélo NOM m p 0.89 1.08 0.05 0.14 +mêlât mêler VER 53.84 112.64 0.00 0.47 sub:imp:3s; +mulot mulot NOM m s 0.06 1.55 0.04 0.88 +mulâtre mulâtre NOM m s 0.77 1.08 0.50 0.74 +mulâtres mulâtre NOM m p 0.77 1.08 0.27 0.34 +mulâtresse mulâtresse NOM f s 0.14 0.34 0.01 0.20 +mulâtresses mulâtresse NOM f p 0.14 0.34 0.14 0.14 +mulots mulot NOM m p 0.06 1.55 0.01 0.68 +mêlèrent mêler VER 53.84 112.64 0.01 1.22 ind:pas:3p; +mélèze mélèze NOM m s 0.04 1.08 0.03 0.41 +mélèzes mélèze NOM m p 0.04 1.08 0.01 0.68 +multi_tâches multi_tâches ADJ f s 0.05 0.00 0.05 0.00 +multi multi ADV 2.37 0.61 2.37 0.61 +multicellulaire multicellulaire ADJ s 0.02 0.00 0.02 0.00 +multicolore multicolore ADJ s 0.42 13.72 0.19 3.04 +multicolores multicolore ADJ p 0.42 13.72 0.23 10.68 +multiconfessionnel multiconfessionnel ADJ m s 0.01 0.00 0.01 0.00 +multicouche multicouche ADJ m s 0.01 0.00 0.01 0.00 +multiculturalisme multiculturalisme NOM m s 0.01 0.00 0.01 0.00 +multiculturel multiculturel ADJ m s 0.10 0.00 0.03 0.00 +multiculturelle multiculturel ADJ f s 0.10 0.00 0.07 0.00 +multidimensionnel multidimensionnel ADJ m s 0.12 0.00 0.04 0.00 +multidimensionnelle multidimensionnel ADJ f s 0.12 0.00 0.06 0.00 +multidimensionnels multidimensionnel ADJ m p 0.12 0.00 0.01 0.00 +multidisciplinaire multidisciplinaire ADJ s 0.01 0.07 0.01 0.07 +multifamilial multifamilial ADJ m s 0.01 0.00 0.01 0.00 +multifonction multifonction ADJ m s 0.04 0.00 0.04 0.00 +multifonctionnel multifonctionnel ADJ m s 0.01 0.00 0.01 0.00 +multifonctions multifonctions ADJ m s 0.14 0.00 0.14 0.00 +multiforme multiforme ADJ s 0.04 0.74 0.02 0.47 +multiformes multiforme ADJ f p 0.04 0.74 0.01 0.27 +multifréquences multifréquence ADJ m p 0.01 0.00 0.01 0.00 +multigrade multigrade ADJ f s 0.00 0.34 0.00 0.34 +multimilliardaire multimilliardaire ADJ f s 0.04 0.00 0.04 0.00 +multimilliardaire multimilliardaire NOM s 0.04 0.00 0.04 0.00 +multimillionnaire multimillionnaire NOM s 0.13 0.00 0.09 0.00 +multimillionnaires multimillionnaire NOM p 0.13 0.00 0.04 0.00 +multimédia multimédia ADJ s 0.08 0.00 0.08 0.00 +multinational multinational ADJ m s 0.53 0.27 0.07 0.07 +multinationale multinationale NOM f s 1.71 0.41 0.48 0.27 +multinationales multinationale NOM f p 1.71 0.41 1.22 0.14 +multinationaux multinational ADJ m p 0.53 0.27 0.00 0.07 +multipare multipare NOM f s 0.00 0.07 0.00 0.07 +multipartite multipartite ADJ s 0.10 0.00 0.10 0.00 +multiple multiple ADJ s 6.60 18.18 0.84 3.92 +multiples multiple ADJ p 6.60 18.18 5.76 14.26 +multiplex multiplex NOM m 0.09 0.00 0.09 0.00 +multiplexe multiplexe NOM m s 0.04 0.00 0.01 0.00 +multiplexer multiplexer VER 0.02 0.00 0.01 0.00 inf; +multiplexes multiplexe NOM m p 0.04 0.00 0.03 0.00 +multiplexé multiplexer VER m s 0.02 0.00 0.01 0.00 par:pas; +multiplia multiplier VER 6.07 22.91 0.00 0.81 ind:pas:3s; +multipliai multiplier VER 6.07 22.91 0.00 0.20 ind:pas:1s; +multipliaient multiplier VER 6.07 22.91 0.07 2.91 ind:imp:3p; +multipliais multiplier VER 6.07 22.91 0.00 0.20 ind:imp:1s; +multipliait multiplier VER 6.07 22.91 0.07 2.50 ind:imp:3s; +multipliant multiplier VER 6.07 22.91 0.10 2.23 par:pre; +multiplicateur multiplicateur ADJ m s 0.04 0.00 0.04 0.00 +multiplication multiplication NOM f s 0.54 2.36 0.28 2.03 +multiplications multiplication NOM f p 0.54 2.36 0.26 0.34 +multiplicité multiplicité NOM f s 0.18 1.55 0.17 1.49 +multiplicités multiplicité NOM f p 0.18 1.55 0.01 0.07 +multiplie multiplier VER 6.07 22.91 1.06 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +multiplient multiplier VER 6.07 22.91 1.29 2.16 ind:pre:3p; +multiplier multiplier VER 6.07 22.91 1.39 3.51 inf; +multiplierai multiplier VER 6.07 22.91 0.00 0.07 ind:fut:1s; +multiplieraient multiplier VER 6.07 22.91 0.00 0.14 cnd:pre:3p; +multiplierait multiplier VER 6.07 22.91 0.00 0.07 cnd:pre:3s; +multiplierons multiplier VER 6.07 22.91 0.02 0.00 ind:fut:1p; +multiplieront multiplier VER 6.07 22.91 0.04 0.14 ind:fut:3p; +multiplies multiplier VER 6.07 22.91 0.14 0.07 ind:pre:2s; +multipliez multiplier VER 6.07 22.91 0.50 0.27 imp:pre:2p;ind:pre:2p; +multipliions multiplier VER 6.07 22.91 0.00 0.07 ind:imp:1p; +multipliât multiplier VER 6.07 22.91 0.00 0.14 sub:imp:3s; +multiplièrent multiplier VER 6.07 22.91 0.01 0.81 ind:pas:3p; +multiplié multiplier VER m s 6.07 22.91 0.75 1.76 par:pas; +multipliée multiplier VER f s 6.07 22.91 0.27 0.81 par:pas; +multipliées multiplier VER f p 6.07 22.91 0.20 0.88 par:pas; +multipliés multiplier VER m p 6.07 22.91 0.16 0.74 par:pas; +multipoints multipoints ADJ f s 0.01 0.00 0.01 0.00 +multiprise multiprise NOM f s 0.03 0.14 0.03 0.14 +multipropriété multipropriété NOM f s 0.23 0.00 0.23 0.00 +multiracial multiracial ADJ m s 0.14 0.00 0.02 0.00 +multiraciale multiracial ADJ f s 0.14 0.00 0.10 0.00 +multiraciaux multiracial ADJ m p 0.14 0.00 0.02 0.00 +multirisque multirisque ADJ f s 0.14 0.07 0.14 0.07 +multirécidiviste multirécidiviste NOM s 0.05 0.00 0.05 0.00 +multiséculaires multiséculaire ADJ p 0.00 0.07 0.00 0.07 +multitâche multitâche ADJ m s 0.04 0.00 0.03 0.00 +multitâches multitâche NOM m p 0.06 0.00 0.04 0.00 +multitude multitude NOM f s 1.38 10.27 1.31 9.66 +multitudes multitude NOM f p 1.38 10.27 0.07 0.61 +mêlé_cass mêlé_cass NOM m 0.00 0.20 0.00 0.20 +mêlé_casse mêlé_casse NOM m 0.00 0.14 0.00 0.14 +mêlé mêler VER m s 53.84 112.64 7.40 13.65 par:pas; +mêlécasse mêlécasse NOM m s 0.00 0.07 0.00 0.07 +mêlée mêler VER f s 53.84 112.64 2.98 11.89 par:pas; +mêlées mêler VER f p 53.84 112.64 0.23 6.76 par:pas; +mêlés mêler VER m p 53.84 112.64 1.12 8.72 par:pas; +même même PRO:ind s 43.18 55.74 43.18 55.74 +mêmement mêmement ADV 0.10 0.34 0.10 0.34 +mémentos mémento NOM m p 0.00 0.07 0.00 0.07 +mêmes mêmes PRO:ind p 14.48 18.38 14.48 18.38 +mémo mémo NOM m s 3.21 0.07 2.72 0.00 +mémoire mémoire NOM s 60.87 110.88 56.60 105.74 +mémoires mémoire NOM p 60.87 110.88 4.27 5.14 +mémorabilité mémorabilité NOM f s 0.00 0.07 0.00 0.07 +mémorable mémorable ADJ s 2.23 5.34 2.04 4.26 +mémorables mémorable ADJ p 2.23 5.34 0.19 1.08 +mémorandum mémorandum NOM m s 0.10 2.91 0.09 2.91 +mémorandums mémorandum NOM m p 0.10 2.91 0.01 0.00 +mémorial mémorial NOM m s 0.81 0.41 0.80 0.34 +mémorialiste mémorialiste NOM s 0.00 0.54 0.00 0.34 +mémorialistes mémorialiste NOM p 0.00 0.54 0.00 0.20 +mémoriaux mémorial NOM m p 0.81 0.41 0.01 0.07 +mémoriel mémoriel ADJ m s 0.18 0.07 0.07 0.00 +mémorielle mémoriel ADJ f s 0.18 0.07 0.06 0.00 +mémoriels mémoriel ADJ m p 0.18 0.07 0.04 0.07 +mémorisables mémorisable ADJ m p 0.00 0.07 0.00 0.07 +mémorisaient mémoriser VER 2.57 0.41 0.00 0.07 ind:imp:3p; +mémorisait mémoriser VER 2.57 0.41 0.02 0.00 ind:imp:3s; +mémorisation mémorisation NOM f s 0.02 0.00 0.02 0.00 +mémorise mémoriser VER 2.57 0.41 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +mémorisent mémoriser VER 2.57 0.41 0.03 0.00 ind:pre:3p; +mémoriser mémoriser VER 2.57 0.41 1.30 0.14 inf; +mémoriserai mémoriser VER 2.57 0.41 0.03 0.00 ind:fut:1s; +mémoriserais mémoriser VER 2.57 0.41 0.01 0.00 cnd:pre:1s; +mémorisez mémoriser VER 2.57 0.41 0.27 0.00 imp:pre:2p;ind:pre:2p; +mémorisiez mémoriser VER 2.57 0.41 0.02 0.00 ind:imp:2p; +mémorisé mémoriser VER m s 2.57 0.41 0.50 0.00 par:pas; +mémorisée mémoriser VER f s 2.57 0.41 0.08 0.00 par:pas; +mémorisées mémoriser VER f p 2.57 0.41 0.01 0.00 par:pas; +mémorisés mémoriser VER m p 2.57 0.41 0.07 0.14 par:pas; +mémos mémo NOM m p 3.21 0.07 0.49 0.07 +mémère mémère NOM f s 1.03 5.34 1.00 3.78 +mémères mémère NOM f p 1.03 5.34 0.04 1.55 +mémé mémé NOM f s 8.21 35.34 8.15 34.39 +mémés mémé NOM f p 8.21 35.34 0.06 0.95 +ménade ménade NOM f s 0.01 0.20 0.01 0.14 +ménades ménade NOM f p 0.01 0.20 0.00 0.07 +ménage ménage NOM m s 29.46 32.91 27.55 29.26 +ménagea ménager VER 5.12 23.65 0.01 0.41 ind:pas:3s; +ménageaient ménager VER 5.12 23.65 0.01 0.95 ind:imp:3p; +ménageais ménager VER 5.12 23.65 0.14 0.47 ind:imp:1s; +ménageait ménager VER 5.12 23.65 0.13 1.82 ind:imp:3s; +ménageant ménager VER 5.12 23.65 0.14 1.62 par:pre; +ménagement ménagement NOM m s 0.45 5.20 0.42 3.11 +ménagements ménagement NOM m p 0.45 5.20 0.03 2.09 +ménagent ménager VER 5.12 23.65 0.16 0.54 ind:pre:3p; +ménageât ménager VER 5.12 23.65 0.00 0.34 sub:imp:3s; +ménager ménager VER 5.12 23.65 1.73 8.45 inf;; +ménagera ménager VER 5.12 23.65 0.01 0.14 ind:fut:3s; +ménagerai ménager VER 5.12 23.65 0.01 0.07 ind:fut:1s; +ménagerait ménager VER 5.12 23.65 0.00 0.27 cnd:pre:3s; +ménageras ménager VER 5.12 23.65 0.01 0.00 ind:fut:2s; +ménagerie ménagerie NOM f s 0.56 2.23 0.54 2.09 +ménageries ménagerie NOM f p 0.56 2.23 0.02 0.14 +ménagers ménager ADJ m p 2.87 9.12 1.11 1.76 +ménages ménage NOM m p 29.46 32.91 1.91 3.65 +ménagez ménager VER 5.12 23.65 0.83 0.41 imp:pre:2p;ind:pre:2p; +ménagiez ménager VER 5.12 23.65 0.01 0.07 ind:imp:2p; +ménagions ménager VER 5.12 23.65 0.00 0.07 ind:imp:1p; +ménagère ménager NOM f s 2.57 8.72 1.57 4.05 +ménagèrent ménager VER 5.12 23.65 0.00 0.14 ind:pas:3p; +ménagères ménager NOM f p 2.57 8.72 0.95 4.53 +ménagé ménager VER m s 5.12 23.65 0.43 2.91 par:pas; +ménagée ménager VER f s 5.12 23.65 0.02 1.49 par:pas; +ménagées ménager VER f p 5.12 23.65 0.00 0.47 par:pas; +ménagés ménager VER m p 5.12 23.65 0.01 0.41 par:pas; +ménesse ménesse NOM f s 0.00 0.07 0.00 0.07 +ménestrel ménestrel NOM m s 0.43 0.14 0.28 0.00 +ménestrels ménestrel NOM m p 0.43 0.14 0.14 0.14 +mungo mungo NOM m s 0.02 0.00 0.02 0.00 +muni munir VER m s 2.06 14.53 1.14 6.62 par:pas; +munich munich NOM s 0.00 0.07 0.00 0.07 +munichois munichois ADJ m p 0.10 0.14 0.10 0.07 +munichoise munichois ADJ f s 0.10 0.14 0.00 0.07 +municipal municipal ADJ m s 9.92 14.53 6.25 7.03 +municipale municipal ADJ f s 9.92 14.53 1.66 3.18 +municipales municipal ADJ f p 9.92 14.53 0.54 1.22 +municipalité municipalité NOM f s 1.79 3.58 1.77 2.57 +municipalités municipalité NOM f p 1.79 3.58 0.03 1.01 +municipaux municipal ADJ m p 9.92 14.53 1.47 3.11 +municipe municipe NOM m s 0.00 0.27 0.00 0.20 +municipes municipe NOM m p 0.00 0.27 0.00 0.07 +munie munir VER f s 2.06 14.53 0.29 3.78 par:pas; +munies munir VER f p 2.06 14.53 0.14 1.01 par:pas; +munificence munificence NOM f s 0.14 1.01 0.00 0.81 +munificences munificence NOM f p 0.14 1.01 0.14 0.20 +munificente munificent ADJ f s 0.00 0.14 0.00 0.07 +munificents munificent ADJ m p 0.00 0.14 0.00 0.07 +méninges méninge NOM f p 1.08 2.70 1.08 2.70 +méningiome méningiome NOM m s 0.01 0.00 0.01 0.00 +méningite méningite NOM f s 0.99 0.81 0.96 0.81 +méningites méningite NOM f p 0.99 0.81 0.03 0.00 +méningocoque méningocoque NOM m s 0.01 0.00 0.01 0.00 +méningée méningé ADJ f s 0.04 0.07 0.04 0.07 +munir munir VER 2.06 14.53 0.24 0.88 inf; +munis munir VER m p 2.06 14.53 0.25 1.69 imp:pre:2s;ind:pre:1s;par:pas; +ménisque ménisque NOM m s 0.39 0.41 0.28 0.27 +ménisques ménisque NOM m p 0.39 0.41 0.10 0.14 +munissaient munir VER 2.06 14.53 0.00 0.07 ind:imp:3p; +munissait munir VER 2.06 14.53 0.00 0.14 ind:imp:3s; +munissant munir VER 2.06 14.53 0.00 0.07 par:pre; +munissent munir VER 2.06 14.53 0.00 0.07 ind:pre:3p; +munit munir VER 2.06 14.53 0.01 0.20 ind:pre:3s;ind:pas:3s; +munition munition NOM f s 14.68 8.45 0.28 0.07 +munitions munition NOM f p 14.68 8.45 14.40 8.38 +ménopause ménopause NOM f s 0.83 1.01 0.83 1.01 +ménopausé ménopausé ADJ m s 0.15 0.14 0.01 0.00 +ménopausée ménopausé ADJ f s 0.15 0.14 0.10 0.14 +ménopausées ménopausé ADJ f p 0.15 0.14 0.04 0.00 +munster munster NOM m s 0.05 0.20 0.05 0.20 +muon muon NOM m s 0.01 0.00 0.01 0.00 +méphistophélique méphistophélique ADJ s 0.01 0.41 0.01 0.27 +méphistophéliques méphistophélique ADJ p 0.01 0.41 0.00 0.14 +méphitique méphitique ADJ f s 0.06 0.68 0.04 0.27 +méphitiques méphitique ADJ p 0.06 0.68 0.01 0.41 +muphti muphti NOM m s 0.00 0.07 0.00 0.07 +méplat méplat NOM m s 0.00 0.88 0.00 0.27 +méplats méplat NOM m p 0.00 0.88 0.00 0.61 +méprît méprendre VER 4.70 6.15 0.00 0.07 sub:imp:3s; +méprenais méprendre VER 4.70 6.15 0.00 0.07 ind:imp:1s; +méprenait méprendre VER 4.70 6.15 0.00 0.14 ind:imp:3s; +méprenant méprendre VER 4.70 6.15 0.00 0.41 par:pre; +méprend méprendre VER 4.70 6.15 0.08 0.34 ind:pre:3s; +méprendre méprendre VER 4.70 6.15 0.27 2.09 inf; +méprendriez méprendre VER 4.70 6.15 0.00 0.07 cnd:pre:2p; +méprends méprendre VER 4.70 6.15 1.15 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +méprenez méprendre VER 4.70 6.15 2.51 0.27 imp:pre:2p;ind:pre:2p; +mépreniez méprendre VER 4.70 6.15 0.04 0.00 ind:imp:2p; +méprenne méprendre VER 4.70 6.15 0.04 0.27 sub:pre:3s; +méprennent méprendre VER 4.70 6.15 0.09 0.00 ind:pre:3p; +mépris mépris NOM m 7.39 36.55 7.39 36.55 +méprisa mépriser VER 15.05 27.57 0.20 0.27 ind:pas:3s; +méprisable méprisable ADJ s 1.91 2.84 1.41 2.09 +méprisables méprisable ADJ p 1.91 2.84 0.50 0.74 +méprisai mépriser VER 15.05 27.57 0.00 0.14 ind:pas:1s; +méprisaient mépriser VER 15.05 27.57 0.23 1.22 ind:imp:3p; +méprisais mépriser VER 15.05 27.57 0.13 1.28 ind:imp:1s;ind:imp:2s; +méprisait mépriser VER 15.05 27.57 0.39 5.27 ind:imp:3s; +méprisamment méprisamment ADV 0.01 0.00 0.01 0.00 +méprisant méprisant ADJ m s 0.63 9.86 0.40 4.80 +méprisante méprisant ADJ f s 0.63 9.86 0.19 3.65 +méprisantes méprisant ADJ f p 0.63 9.86 0.02 0.20 +méprisants méprisant ADJ m p 0.63 9.86 0.02 1.22 +méprise mépriser VER 15.05 27.57 6.43 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +méprisent mépriser VER 15.05 27.57 0.73 1.15 ind:pre:3p; +mépriser mépriser VER 15.05 27.57 1.76 4.93 inf; +méprisera mépriser VER 15.05 27.57 0.42 0.07 ind:fut:3s; +mépriserai mépriser VER 15.05 27.57 0.04 0.00 ind:fut:1s; +mépriseraient mépriser VER 15.05 27.57 0.01 0.00 cnd:pre:3p; +mépriserais mépriser VER 15.05 27.57 0.05 0.14 cnd:pre:1s;cnd:pre:2s; +mépriserait mépriser VER 15.05 27.57 0.02 0.20 cnd:pre:3s; +mépriseras mépriser VER 15.05 27.57 0.01 0.07 ind:fut:2s; +mépriseriez mépriser VER 15.05 27.57 0.10 0.07 cnd:pre:2p; +méprises mépriser VER 15.05 27.57 1.50 0.61 ind:pre:2s; +méprisez mépriser VER 15.05 27.57 0.79 0.34 imp:pre:2p;ind:pre:2p; +méprisiez mépriser VER 15.05 27.57 0.04 0.00 ind:imp:2p; +méprisions mépriser VER 15.05 27.57 0.01 0.47 ind:imp:1p;sub:pre:1p; +méprisons mépriser VER 15.05 27.57 0.29 0.14 imp:pre:1p;ind:pre:1p; +méprisé mépriser VER m s 15.05 27.57 0.85 2.77 par:pas; +méprisée mépriser VER f s 15.05 27.57 0.19 0.81 par:pas; +méprisées mépriser VER f p 15.05 27.57 0.30 0.47 par:pas; +méprisés mépriser VER m p 15.05 27.57 0.21 0.68 par:pas; +méprit méprendre VER 4.70 6.15 0.00 0.68 ind:pas:3s; +muqueuse muqueux NOM f s 0.11 1.82 0.11 0.61 +muqueuses muqueuse NOM f p 0.19 0.00 0.19 0.00 +muqueux muqueux ADJ m s 0.19 0.47 0.15 0.07 +mur mur NOM m s 88.93 317.77 58.90 172.57 +mura murer VER 1.39 6.96 0.11 0.20 ind:pas:3s; +murage murage NOM m s 0.01 0.00 0.01 0.00 +muraient murer VER 1.39 6.96 0.00 0.07 ind:imp:3p; +muraille muraille NOM f s 2.61 20.88 1.28 11.01 +murailles muraille NOM f p 2.61 20.88 1.32 9.86 +murait murer VER 1.39 6.96 0.00 0.34 ind:imp:3s; +mural mural ADJ m s 0.35 3.24 0.08 1.76 +murale mural ADJ f s 0.35 3.24 0.20 1.01 +murales mural ADJ f p 0.35 3.24 0.05 0.47 +murant murer VER 1.39 6.96 0.00 0.14 par:pre; +muraux mural ADJ m p 0.35 3.24 0.02 0.00 +mure murer VER 1.39 6.96 0.26 0.07 imp:pre:2s;ind:pre:3s; +murent mouvoir VER 1.75 13.18 0.00 0.07 ind:pas:3p; +murer murer VER 1.39 6.96 0.05 1.28 inf; +murerait murer VER 1.39 6.96 0.00 0.07 cnd:pre:3s; +mures murer VER 1.39 6.96 0.01 0.00 ind:pre:2s; +muret muret NOM m s 0.28 3.24 0.28 2.64 +muretin muretin NOM m s 0.00 0.27 0.00 0.07 +muretins muretin NOM m p 0.00 0.27 0.00 0.20 +murets muret NOM m p 0.28 3.24 0.00 0.61 +murette murette NOM f s 0.00 4.26 0.00 3.31 +murettes murette NOM f p 0.00 4.26 0.00 0.95 +murex murex NOM m 0.00 0.07 0.00 0.07 +murez murer VER 1.39 6.96 0.00 0.07 imp:pre:2p; +muriatique muriatique ADJ m s 0.01 0.07 0.01 0.07 +méridien méridien NOM m s 0.25 0.95 0.22 0.47 +méridienne méridien ADJ f s 0.09 0.54 0.04 0.14 +méridiennes méridien ADJ f p 0.09 0.54 0.00 0.07 +méridiens méridien NOM m p 0.25 0.95 0.01 0.14 +méridional méridional ADJ m s 1.00 2.43 0.32 1.15 +méridionale méridional ADJ f s 1.00 2.43 0.46 0.88 +méridionales méridional ADJ f p 1.00 2.43 0.11 0.34 +méridionaux méridional NOM m p 0.78 0.47 0.55 0.07 +muridés muridé NOM m p 0.02 0.00 0.02 0.00 +murin murin NOM m s 0.01 0.00 0.01 0.00 +mérinos mérinos NOM m 0.01 0.27 0.01 0.27 +mérita mériter VER 97.06 54.53 0.00 0.14 ind:pas:3s; +méritaient mériter VER 97.06 54.53 1.18 2.30 ind:imp:3p; +méritais mériter VER 97.06 54.53 2.12 1.76 ind:imp:1s;ind:imp:2s; +méritait mériter VER 97.06 54.53 6.08 9.93 ind:imp:3s; +méritant méritant ADJ m s 0.85 1.89 0.51 0.61 +méritante méritant ADJ f s 0.85 1.89 0.10 0.34 +méritantes méritant ADJ f p 0.85 1.89 0.04 0.41 +méritants méritant ADJ m p 0.85 1.89 0.21 0.54 +méritassent mériter VER 97.06 54.53 0.00 0.07 sub:imp:3p; +mérite mériter VER 97.06 54.53 39.92 13.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +méritent mériter VER 97.06 54.53 6.62 2.64 ind:pre:3p; +mériter mériter VER 97.06 54.53 6.73 6.42 inf; +méritera mériter VER 97.06 54.53 0.11 0.07 ind:fut:3s; +mériterai mériter VER 97.06 54.53 0.02 0.07 ind:fut:1s; +mériteraient mériter VER 97.06 54.53 0.31 0.47 cnd:pre:3p; +mériterais mériter VER 97.06 54.53 1.15 0.54 cnd:pre:1s;cnd:pre:2s; +mériterait mériter VER 97.06 54.53 1.29 1.82 cnd:pre:3s; +mériteras mériter VER 97.06 54.53 0.04 0.14 ind:fut:2s; +mériteriez mériter VER 97.06 54.53 0.31 0.20 cnd:pre:2p; +mériteront mériter VER 97.06 54.53 0.06 0.00 ind:fut:3p; +mérites mériter VER 97.06 54.53 11.08 1.15 ind:pre:2s;sub:pre:2s; +méritez mériter VER 97.06 54.53 5.25 1.01 imp:pre:2p;ind:pre:2p; +méritiez mériter VER 97.06 54.53 0.36 0.34 ind:imp:2p; +méritions mériter VER 97.06 54.53 0.04 0.20 ind:imp:1p; +méritocratie méritocratie NOM f s 0.01 0.00 0.01 0.00 +méritoire méritoire ADJ s 0.47 2.09 0.36 1.62 +méritoires méritoire ADJ p 0.47 2.09 0.11 0.47 +méritons mériter VER 97.06 54.53 1.16 0.20 imp:pre:1p;ind:pre:1p; +méritât mériter VER 97.06 54.53 0.00 0.20 sub:imp:3s; +mérité mériter VER m s 97.06 54.53 11.34 8.31 par:pas; +méritée mériter VER f s 97.06 54.53 1.43 1.42 par:pas; +méritées mériter VER f p 97.06 54.53 0.28 0.47 par:pas; +mérités mériter VER m p 97.06 54.53 0.05 0.47 par:pas; +murmel murmel NOM m s 0.00 0.07 0.00 0.07 +murmura murmurer VER 7.27 123.58 0.80 58.31 ind:pas:3s; +murmurai murmurer VER 7.27 123.58 0.12 3.31 ind:pas:1s; +murmuraient murmurer VER 7.27 123.58 0.35 1.55 ind:imp:3p; +murmurais murmurer VER 7.27 123.58 0.03 0.95 ind:imp:1s;ind:imp:2s; +murmurait murmurer VER 7.27 123.58 0.55 12.50 ind:imp:3s; +murmurant murmurer VER 7.27 123.58 0.38 7.64 par:pre; +murmurante murmurant ADJ f s 0.14 1.22 0.14 0.41 +murmurantes murmurant ADJ f p 0.14 1.22 0.00 0.14 +murmurants murmurant ADJ m p 0.14 1.22 0.00 0.14 +murmuras murmurer VER 7.27 123.58 0.00 0.07 ind:pas:2s; +murmure murmurer VER 7.27 123.58 2.29 14.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +murmurent murmurer VER 7.27 123.58 0.58 0.81 ind:pre:3p; +murmurer murmurer VER 7.27 123.58 1.17 10.14 inf; +murmurera murmurer VER 7.27 123.58 0.01 0.07 ind:fut:3s; +murmureraient murmurer VER 7.27 123.58 0.00 0.07 cnd:pre:3p; +murmurerait murmurer VER 7.27 123.58 0.01 0.27 cnd:pre:3s; +murmureront murmurer VER 7.27 123.58 0.01 0.00 ind:fut:3p; +murmures murmure NOM m p 3.40 31.62 1.78 6.49 +murmurez murmurer VER 7.27 123.58 0.12 0.14 imp:pre:2p;ind:pre:2p; +murmurions murmurer VER 7.27 123.58 0.01 0.14 ind:imp:1p; +murmurèrent murmurer VER 7.27 123.58 0.10 0.34 ind:pas:3p; +murmuré murmurer VER m s 7.27 123.58 0.63 10.81 par:pas; +murmurée murmurer VER f s 7.27 123.58 0.00 0.27 par:pas; +murmurées murmurer VER f p 7.27 123.58 0.01 0.81 par:pas; +murmurés murmurer VER m p 7.27 123.58 0.00 0.47 par:pas; +mérou mérou NOM m s 0.99 0.14 0.99 0.14 +mérovingien mérovingien ADJ m s 0.00 0.41 0.00 0.07 +mérovingienne mérovingien ADJ f s 0.00 0.41 0.00 0.14 +mérovingiennes mérovingien ADJ f p 0.00 0.41 0.00 0.20 +murs mur NOM m p 88.93 317.77 30.04 145.20 +murène murène NOM f s 0.56 0.47 0.41 0.20 +murènes murène NOM f p 0.56 0.47 0.14 0.27 +murèrent murer VER 1.39 6.96 0.00 0.07 ind:pas:3p; +muré murer VER m s 1.39 6.96 0.38 1.96 par:pas; +murée murer VER f s 1.39 6.96 0.56 1.42 par:pas; +murées murer VER f p 1.39 6.96 0.00 0.61 par:pas; +murés murer VER m p 1.39 6.96 0.02 0.68 par:pas; +mus mu ADJ m p 0.18 0.00 0.18 0.00 +musa muser VER 0.44 0.74 0.00 0.07 ind:pas:3s; +musagètes musagète ADJ m p 0.00 0.07 0.00 0.07 +musait muser VER 0.44 0.74 0.00 0.14 ind:imp:3s; +mésalliance mésalliance NOM f s 0.05 0.54 0.05 0.47 +mésalliances mésalliance NOM f p 0.05 0.54 0.00 0.07 +mésallieras mésallier VER 0.00 0.27 0.00 0.14 ind:fut:2s; +mésallies mésallier VER 0.00 0.27 0.00 0.07 ind:pre:2s; +mésalliés mésallier VER m p 0.00 0.27 0.00 0.07 par:pas; +mésange mésange NOM f s 0.42 7.64 0.19 6.89 +mésanges mésange NOM f p 0.42 7.64 0.23 0.74 +musant muser VER 0.44 0.74 0.00 0.14 par:pre; +musaraigne musaraigne NOM f s 0.07 0.61 0.05 0.47 +musaraignes musaraigne NOM f p 0.07 0.61 0.02 0.14 +musard musard ADJ m s 0.00 0.20 0.00 0.14 +musarda musarder VER 0.03 1.42 0.00 0.07 ind:pas:3s; +musardaient musarder VER 0.03 1.42 0.00 0.14 ind:imp:3p; +musardait musarder VER 0.03 1.42 0.00 0.34 ind:imp:3s; +musardant musarder VER 0.03 1.42 0.00 0.07 par:pre; +musarde musarder VER 0.03 1.42 0.00 0.20 ind:pre:3s; +musarder musarder VER 0.03 1.42 0.03 0.54 inf; +musardez musarder VER 0.03 1.42 0.00 0.07 imp:pre:2p; +musardise musardise NOM f s 0.00 0.07 0.00 0.07 +musards musard ADJ m p 0.00 0.20 0.00 0.07 +mésaventure mésaventure NOM f s 0.78 4.26 0.58 3.31 +mésaventures mésaventure NOM f p 0.78 4.26 0.20 0.95 +musc musc NOM m s 0.28 0.81 0.28 0.81 +muscade muscade NOM f s 0.52 1.15 0.52 1.15 +muscadelle muscadelle NOM f s 0.00 0.07 0.00 0.07 +muscadet muscadet NOM m s 0.30 1.69 0.30 1.69 +muscadin muscadin NOM m s 0.00 0.07 0.00 0.07 +muscadine muscadine NOM f s 0.00 0.07 0.00 0.07 +muscat muscat NOM m s 0.36 1.28 0.36 1.15 +muscats muscat NOM m p 0.36 1.28 0.00 0.14 +musclant muscler VER 1.46 2.50 0.01 0.00 par:pre; +muscle muscle NOM m s 15.61 34.53 3.86 3.92 +musclent muscler VER 1.46 2.50 0.01 0.14 ind:pre:3p; +muscler muscler VER 1.46 2.50 0.52 0.27 inf; +muscles muscle NOM m p 15.61 34.53 11.75 30.61 +musclé musclé ADJ m s 2.60 7.03 1.52 2.50 +musclée musclé ADJ f s 2.60 7.03 0.17 1.28 +musclées musclé ADJ f p 2.60 7.03 0.14 1.28 +musclés musclé ADJ m p 2.60 7.03 0.76 1.96 +muscovite muscovite NOM f s 0.01 0.00 0.01 0.00 +musculaire musculaire ADJ s 2.55 2.77 1.66 1.82 +musculaires musculaire ADJ p 2.55 2.77 0.90 0.95 +musculation musculation NOM f s 0.48 0.20 0.48 0.20 +musculature musculature NOM f s 0.36 1.89 0.36 1.89 +musculeuse musculeux ADJ f s 0.03 2.30 0.00 0.81 +musculeuses musculeux ADJ f p 0.03 2.30 0.00 0.41 +musculeux musculeux ADJ m 0.03 2.30 0.03 1.08 +muse muse NOM f s 2.42 1.35 1.82 0.81 +museau museau NOM m s 1.86 12.64 1.60 11.76 +museaux museau NOM m p 1.86 12.64 0.26 0.88 +muselait museler VER 0.40 1.01 0.00 0.07 ind:imp:3s; +muselant museler VER 0.40 1.01 0.01 0.07 par:pre; +museler museler VER 0.40 1.01 0.19 0.34 inf; +muselière muselière NOM f s 0.74 0.81 0.62 0.74 +muselières muselière NOM f p 0.74 0.81 0.12 0.07 +muselle museler VER 0.40 1.01 0.01 0.07 imp:pre:2s;ind:pre:3s; +musellerait museler VER 0.40 1.01 0.00 0.07 cnd:pre:3s; +muselons museler VER 0.40 1.01 0.01 0.00 imp:pre:1p; +muselé museler VER m s 0.40 1.01 0.15 0.07 par:pas; +muselée museler VER f s 0.40 1.01 0.01 0.07 par:pas; +muselées museler VER f p 0.40 1.01 0.00 0.07 par:pas; +muselés museler VER m p 0.40 1.01 0.02 0.20 par:pas; +mésencéphale mésencéphale NOM m s 0.04 0.00 0.04 0.00 +mésentente mésentente NOM f s 0.11 0.61 0.08 0.34 +mésententes mésentente NOM f p 0.11 0.61 0.03 0.27 +mésentère mésentère NOM m s 0.01 0.00 0.01 0.00 +mésentérique mésentérique ADJ s 0.11 0.00 0.11 0.00 +muser muser VER 0.44 0.74 0.10 0.07 inf; +muserolle muserolle NOM f s 0.00 0.07 0.00 0.07 +muses muse NOM f p 2.42 1.35 0.60 0.54 +mésestimant mésestimer VER 0.10 0.20 0.00 0.07 par:pre; +mésestime mésestimer VER 0.10 0.20 0.03 0.00 imp:pre:2s;ind:pre:1s; +mésestimer mésestimer VER 0.10 0.20 0.00 0.07 inf; +mésestimez mésestimer VER 0.10 0.20 0.02 0.07 imp:pre:2p;ind:pre:2p; +mésestimé mésestimer VER m s 0.10 0.20 0.05 0.00 par:pas; +musette musette NOM f s 0.77 18.45 0.75 13.78 +musettes_repa musettes_repa NOM f p 0.00 0.07 0.00 0.07 +musettes musette NOM f p 0.77 18.45 0.02 4.66 +music_hall music_hall NOM m s 1.85 4.32 1.70 3.78 +music_hall music_hall NOM m p 1.85 4.32 0.13 0.54 +music_hall music_hall NOM m s 1.85 4.32 0.02 0.00 +musical musical ADJ m s 24.76 10.54 17.50 3.45 +musicale musical ADJ f s 24.76 10.54 4.88 4.19 +musicalement musicalement ADV 0.30 0.27 0.30 0.27 +musicales musical ADJ f p 24.76 10.54 1.63 1.96 +musicalité musicalité NOM f s 0.14 0.47 0.14 0.47 +musicaux musical ADJ m p 24.76 10.54 0.75 0.95 +musicien musicien NOM m s 12.90 16.08 4.78 5.88 +musicienne musicien NOM f s 12.90 16.08 0.79 0.14 +musiciennes musicienne NOM f p 0.40 0.00 0.40 0.00 +musiciens musicien NOM m p 12.90 16.08 7.31 9.86 +musico musico ADV 0.00 0.68 0.00 0.68 +musicographes musicographe NOM p 0.00 0.07 0.00 0.07 +musicologie musicologie NOM f s 0.03 0.00 0.03 0.00 +musicologique musicologique ADJ m s 0.02 0.00 0.02 0.00 +musicologue musicologue NOM s 0.01 0.34 0.01 0.07 +musicologues musicologue NOM p 0.01 0.34 0.00 0.27 +musicothérapie musicothérapie NOM f s 0.01 0.00 0.01 0.00 +mésintelligence mésintelligence NOM f s 0.00 0.07 0.00 0.07 +mésinterpréter mésinterpréter VER 0.00 0.14 0.00 0.14 inf; +musiquait musiquer VER 0.27 0.34 0.00 0.07 ind:imp:3s; +musique musique NOM f s 169.80 114.32 168.89 109.80 +musiquer musiquer VER 0.27 0.34 0.00 0.14 inf; +musiques musique NOM f p 169.80 114.32 0.91 4.53 +musiquette musiquette NOM f s 0.00 0.47 0.00 0.34 +musiquettes musiquette NOM f p 0.00 0.47 0.00 0.14 +muskogee muskogee NOM s 0.01 0.00 0.01 0.00 +mésodermiques mésodermique ADJ p 0.01 0.00 0.01 0.00 +musoir musoir NOM m s 0.00 0.07 0.00 0.07 +mésomorphe mésomorphe ADJ m s 0.02 0.00 0.02 0.00 +mésomorphique mésomorphique ADJ s 0.01 0.00 0.01 0.00 +méson méson NOM m s 0.04 0.00 0.03 0.00 +mésons méson NOM m p 0.04 0.00 0.01 0.00 +mésopotamien mésopotamien ADJ m s 0.05 0.00 0.04 0.00 +mésopotamienne mésopotamienne NOM f s 0.00 0.07 0.00 0.07 +mésopotamiens mésopotamien NOM m p 0.03 0.00 0.03 0.00 +mésosphère mésosphère NOM f s 0.02 0.00 0.02 0.00 +mésozoïque mésozoïque ADJ f s 0.04 0.00 0.04 0.00 +musqué musqué ADJ m s 0.18 1.49 0.14 0.41 +musquée musqué ADJ f s 0.18 1.49 0.01 0.68 +musquées musqué ADJ f p 0.18 1.49 0.00 0.14 +musqués musqué ADJ m p 0.18 1.49 0.04 0.27 +mussais musser VER 0.00 0.41 0.00 0.07 ind:imp:1s; +musse musser VER 0.00 0.41 0.00 0.07 ind:pre:3s; +mussent musser VER 0.00 0.41 0.00 0.07 ind:pre:3p; +mussolinien mussolinien ADJ m s 0.00 0.41 0.00 0.14 +mussolinienne mussolinien ADJ f s 0.00 0.41 0.00 0.14 +mussoliniens mussolinien ADJ m p 0.00 0.41 0.00 0.14 +mussée musser VER f s 0.00 0.41 0.00 0.07 par:pas; +mussés musser VER m p 0.00 0.41 0.00 0.14 par:pas; +must must NOM m 3.98 0.54 3.98 0.54 +mustang mustang NOM m s 0.75 0.14 0.32 0.07 +mustangs mustang NOM m p 0.75 0.14 0.43 0.07 +mustélidés mustélidé NOM m p 0.00 0.07 0.00 0.07 +musée musée NOM m s 20.70 28.38 18.59 21.55 +musées musée NOM m p 20.70 28.38 2.11 6.82 +musulman musulman ADJ m s 5.84 7.09 2.00 2.09 +musulmane musulman ADJ f s 5.84 7.09 1.84 2.09 +musulmanes musulman ADJ f p 5.84 7.09 0.54 0.81 +musulmans musulman NOM m p 6.22 6.22 4.00 3.92 +muséologie muséologie NOM f s 0.01 0.00 0.01 0.00 +muséologique muséologique ADJ f s 0.01 0.00 0.01 0.00 +muséologue muséologue NOM s 0.01 0.00 0.01 0.00 +mésusage mésusage NOM m s 0.00 0.07 0.00 0.07 +mésuser mésuser VER 0.00 0.07 0.00 0.07 inf; +muséum muséum NOM m s 0.24 0.20 0.24 0.20 +méta méta NOM m s 0.14 0.14 0.14 0.14 +mutabilité mutabilité NOM f s 0.03 0.00 0.03 0.00 +mutable mutable ADJ s 0.03 0.00 0.02 0.00 +mutables mutable ADJ p 0.03 0.00 0.01 0.00 +métabolique métabolique ADJ s 0.28 0.00 0.28 0.00 +métaboliser métaboliser VER 0.02 0.00 0.02 0.00 inf; +métabolisme métabolisme NOM m s 1.27 0.20 1.22 0.20 +métabolismes métabolisme NOM m p 1.27 0.20 0.05 0.00 +métabolite métabolite NOM m s 0.07 0.00 0.07 0.00 +métacarpe métacarpe NOM m s 0.13 0.00 0.13 0.00 +métacarpien métacarpien NOM m s 0.04 0.00 0.03 0.00 +métacarpiens métacarpien NOM m p 0.04 0.00 0.01 0.00 +mutagène mutagène ADJ m s 0.02 0.00 0.02 0.00 +métairie métairie NOM f s 0.00 1.15 0.00 0.74 +métairies métairie NOM f p 0.00 1.15 0.00 0.41 +métal métal NOM m s 14.36 44.73 12.16 41.82 +métallique métallique ADJ s 3.34 23.78 2.60 16.49 +métalliques métallique ADJ p 3.34 23.78 0.74 7.30 +métallisation métallisation NOM f s 0.01 0.00 0.01 0.00 +métallise métalliser VER 0.62 1.15 0.00 0.07 ind:pre:3s; +métallisent métalliser VER 0.62 1.15 0.00 0.07 ind:pre:3p; +métallisé métalliser VER m s 0.62 1.15 0.48 0.68 par:pas; +métallisée métalliser VER f s 0.62 1.15 0.12 0.20 par:pas; +métallisées métalliser VER f p 0.62 1.15 0.00 0.07 par:pas; +métallisés métalliser VER m p 0.62 1.15 0.01 0.07 par:pas; +métallo métallo NOM m s 0.02 1.08 0.02 0.47 +métallographie métallographie NOM f s 0.04 0.00 0.04 0.00 +métallos métallo NOM m p 0.02 1.08 0.00 0.61 +métallurgie métallurgie NOM f s 0.16 0.47 0.16 0.47 +métallurgique métallurgique ADJ s 0.07 0.54 0.07 0.47 +métallurgiques métallurgique ADJ f p 0.07 0.54 0.00 0.07 +métallurgiste métallurgiste NOM m s 0.27 0.34 0.23 0.07 +métallurgistes métallurgiste NOM m p 0.27 0.34 0.04 0.27 +métamorphique métamorphique ADJ f s 0.01 0.00 0.01 0.00 +métamorphosa métamorphoser VER 0.94 9.26 0.02 0.20 ind:pas:3s; +métamorphosaient métamorphoser VER 0.94 9.26 0.00 0.27 ind:imp:3p; +métamorphosait métamorphoser VER 0.94 9.26 0.00 1.49 ind:imp:3s; +métamorphosant métamorphoser VER 0.94 9.26 0.10 0.27 par:pre; +métamorphose métamorphose NOM f s 1.59 11.22 1.22 9.12 +métamorphosent métamorphoser VER 0.94 9.26 0.00 0.20 ind:pre:3p; +métamorphoser métamorphoser VER 0.94 9.26 0.37 1.69 inf; +métamorphoseraient métamorphoser VER 0.94 9.26 0.00 0.07 cnd:pre:3p; +métamorphoserait métamorphoser VER 0.94 9.26 0.00 0.07 cnd:pre:3s; +métamorphoses métamorphose NOM f p 1.59 11.22 0.37 2.09 +métamorphosez métamorphoser VER 0.94 9.26 0.00 0.07 ind:pre:2p; +métamorphosions métamorphoser VER 0.94 9.26 0.00 0.07 ind:imp:1p; +métamorphosât métamorphoser VER 0.94 9.26 0.00 0.07 sub:imp:3s; +métamorphosèrent métamorphoser VER 0.94 9.26 0.01 0.00 ind:pas:3p; +métamorphosé métamorphoser VER m s 0.94 9.26 0.22 1.96 par:pas; +métamorphosée métamorphoser VER f s 0.94 9.26 0.11 1.08 par:pas; +métamorphosées métamorphoser VER f p 0.94 9.26 0.00 0.14 par:pas; +métamorphosés métamorphoser VER m p 0.94 9.26 0.01 0.47 par:pas; +mutant mutant NOM m s 4.67 0.81 1.93 0.27 +mutante mutant ADJ f s 2.02 0.07 0.98 0.00 +mutantes mutant ADJ f p 2.02 0.07 0.10 0.00 +mutants mutant NOM m p 4.67 0.81 2.46 0.54 +métaphase métaphase NOM f s 0.01 0.00 0.01 0.00 +métaphore métaphore NOM f s 4.71 3.31 4.04 1.89 +métaphores métaphore NOM f p 4.71 3.31 0.67 1.42 +métaphorique métaphorique ADJ s 0.27 0.20 0.26 0.20 +métaphoriquement métaphoriquement ADV 0.51 0.07 0.51 0.07 +métaphoriques métaphorique ADJ p 0.27 0.20 0.01 0.00 +métaphysicien métaphysicien NOM m s 0.03 0.47 0.02 0.14 +métaphysicienne métaphysicien NOM f s 0.03 0.47 0.00 0.07 +métaphysiciens métaphysicien NOM m p 0.03 0.47 0.01 0.27 +métaphysique métaphysique ADJ s 0.91 6.35 0.64 4.12 +métaphysiquement métaphysiquement ADV 0.01 0.14 0.01 0.14 +métaphysiques métaphysique ADJ p 0.91 6.35 0.27 2.23 +métapsychique métapsychique ADJ s 0.11 0.00 0.11 0.00 +métapsychologie métapsychologie NOM f s 0.01 0.07 0.01 0.07 +métapsychologique métapsychologique ADJ s 0.00 0.07 0.00 0.07 +métastase métastase NOM f s 0.28 0.27 0.08 0.20 +métastases métastase NOM f p 0.28 0.27 0.20 0.07 +métastasé métastaser VER m s 0.10 0.07 0.10 0.07 par:pas; +métastatique métastatique ADJ s 0.08 0.00 0.08 0.00 +métatarses métatarse NOM m p 0.01 0.00 0.01 0.00 +métatarsienne métatarsien ADJ f s 0.03 0.00 0.03 0.00 +mutation mutation NOM f s 5.53 4.32 4.67 3.18 +mutations mutation NOM f p 5.53 4.32 0.85 1.15 +mutatis_mutandis mutatis_mutandis ADV 0.00 0.07 0.00 0.07 +métaux métal NOM m p 14.36 44.73 2.19 2.91 +métayage métayage NOM m s 0.01 0.07 0.01 0.07 +métayer métayer NOM m s 0.23 1.49 0.11 0.81 +métayers métayer NOM m p 0.23 1.49 0.12 0.68 +métazoaires métazoaire NOM m p 0.00 0.07 0.00 0.07 +mute muter VER 7.04 2.09 0.24 0.14 ind:pre:1s;ind:pre:3s; +métempsychose métempsychose NOM f s 0.00 0.07 0.00 0.07 +métempsycose métempsycose NOM f s 0.14 0.27 0.14 0.27 +mutent muter VER 7.04 2.09 0.08 0.00 ind:pre:3p; +muter muter VER 7.04 2.09 1.88 0.47 inf; +mutera muter VER 7.04 2.09 0.01 0.00 ind:fut:3s; +muterai muter VER 7.04 2.09 0.34 0.00 ind:fut:1s; +muteront muter VER 7.04 2.09 0.01 0.00 ind:fut:3p; +méthacrylate méthacrylate NOM m s 0.01 0.00 0.01 0.00 +méthadone méthadone NOM f s 0.73 0.00 0.73 0.00 +méthanal méthanal NOM m s 0.01 0.00 0.01 0.00 +méthane méthane NOM m s 0.70 0.20 0.70 0.20 +méthanol méthanol NOM m s 0.13 0.00 0.13 0.00 +méthode méthode NOM f s 24.87 24.86 13.83 16.42 +méthodes méthode NOM f p 24.87 24.86 11.04 8.45 +méthodique méthodique ADJ s 0.67 3.18 0.60 2.84 +méthodiquement méthodiquement ADV 0.09 4.26 0.09 4.26 +méthodiques méthodique ADJ p 0.67 3.18 0.07 0.34 +méthodisme méthodisme NOM m s 0.00 0.14 0.00 0.14 +méthodiste méthodiste ADJ s 0.20 0.20 0.15 0.14 +méthodistes méthodiste NOM p 0.28 0.07 0.18 0.07 +méthodologie méthodologie NOM f s 0.27 0.00 0.27 0.00 +méthodologique méthodologique ADJ f s 0.02 0.07 0.02 0.07 +méthédrine méthédrine NOM f s 0.09 0.00 0.09 0.00 +méthyle méthyle NOM m s 0.05 0.00 0.05 0.00 +méthylique méthylique ADJ s 0.01 0.00 0.01 0.00 +méthylène méthylène NOM m s 0.05 0.34 0.05 0.34 +méticuleuse méticuleux ADJ f s 2.40 6.28 0.52 1.82 +méticuleusement méticuleusement ADV 0.37 2.57 0.37 2.57 +méticuleuses méticuleux ADJ f p 2.40 6.28 0.09 0.34 +méticuleux méticuleux ADJ m 2.40 6.28 1.79 4.12 +méticulosité méticulosité NOM f s 0.00 0.34 0.00 0.34 +métier métier NOM m s 55.03 84.53 53.22 75.54 +métiers métier NOM m p 55.03 84.53 1.81 8.99 +mutila mutiler VER 2.36 4.39 0.01 0.20 ind:pas:3s; +mutilais mutiler VER 2.36 4.39 0.01 0.00 ind:imp:2s; +mutilait mutiler VER 2.36 4.39 0.02 0.27 ind:imp:3s; +mutilant mutiler VER 2.36 4.39 0.14 0.07 par:pre; +mutilante mutilant ADJ f s 0.00 0.20 0.00 0.14 +mutilateur mutilateur ADJ m s 0.03 0.00 0.03 0.00 +mutilation mutilation NOM f s 2.02 2.57 1.13 1.82 +mutilations mutilation NOM f p 2.02 2.57 0.89 0.74 +mutile mutiler VER 2.36 4.39 0.17 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +mutilent mutiler VER 2.36 4.39 0.08 0.07 ind:pre:3p; +mutiler mutiler VER 2.36 4.39 0.67 0.81 inf; +mutilera mutiler VER 2.36 4.39 0.00 0.07 ind:fut:3s; +mutileraient mutiler VER 2.36 4.39 0.01 0.07 cnd:pre:3p; +mutilé mutilé ADJ m s 2.21 6.15 1.22 1.76 +mutilée mutiler VER f s 2.36 4.39 0.40 0.68 par:pas; +mutilées mutilé ADJ f p 2.21 6.15 0.04 1.01 +mutilés mutilé ADJ m p 2.21 6.15 0.72 1.96 +mutin mutin ADJ m s 0.33 0.88 0.27 0.27 +mutina mutiner VER 0.85 0.47 0.03 0.07 ind:pas:3s; +mutinaient mutiner VER 0.85 0.47 0.03 0.07 ind:imp:3p; +mutine mutiner VER 0.85 0.47 0.04 0.07 ind:pre:3s; +mutinent mutiner VER 0.85 0.47 0.11 0.00 ind:pre:3p; +mutiner mutiner VER 0.85 0.47 0.18 0.14 inf; +mutinerie mutinerie NOM f s 3.13 1.15 2.97 0.81 +mutineries mutinerie NOM f p 3.13 1.15 0.16 0.34 +mutines mutin ADJ f p 0.33 0.88 0.01 0.07 +mutinez mutiner VER 0.85 0.47 0.01 0.00 ind:pre:2p; +métingue métingue NOM m s 0.00 0.14 0.00 0.14 +mutins mutin NOM m p 0.70 1.01 0.59 0.61 +mutiné mutiner VER m s 0.85 0.47 0.31 0.14 par:pas; +mutinée mutiner VER f s 0.85 0.47 0.10 0.00 par:pas; +mutinés mutiné ADJ m p 0.15 0.07 0.05 0.07 +mutique mutique ADJ m s 0.01 0.07 0.01 0.07 +métis métis NOM m 1.91 2.97 1.91 2.97 +mutisme mutisme NOM m s 0.97 6.89 0.97 6.82 +mutismes mutisme NOM m p 0.97 6.89 0.00 0.07 +métissage métissage NOM m s 0.23 1.15 0.23 0.88 +métissages métissage NOM m p 0.23 1.15 0.00 0.27 +métisse métisse ADJ f s 0.23 0.54 0.19 0.34 +métisser métisser VER 0.40 0.34 0.00 0.07 inf; +métisses métisse ADJ f p 0.23 0.54 0.04 0.20 +métissez métisser VER 0.40 0.34 0.00 0.07 imp:pre:2p; +métissé métisser VER m s 0.40 0.34 0.39 0.14 par:pas; +métissée métisser VER f s 0.40 0.34 0.01 0.07 par:pas; +mutité mutité NOM f s 0.00 0.20 0.00 0.20 +métonymie métonymie NOM f s 0.00 0.07 0.00 0.07 +métopes métope NOM f p 0.00 0.07 0.00 0.07 +mutât muter VER 7.04 2.09 0.00 0.07 sub:imp:3s; +métra métrer VER 0.16 0.61 0.04 0.00 ind:pas:3s; +métrage métrage NOM m s 0.91 1.69 0.69 1.08 +métrages métrage NOM m p 0.91 1.69 0.22 0.61 +métras métrer VER 0.16 0.61 0.01 0.00 ind:pas:2s; +métreur métreur NOM m s 0.01 0.00 0.01 0.00 +métrique métrique ADJ s 0.24 0.27 0.24 0.27 +métriques métrique NOM f p 0.04 0.07 0.01 0.00 +métrite métrite NOM f s 0.00 0.14 0.00 0.07 +métrites métrite NOM f p 0.00 0.14 0.00 0.07 +métro métro NOM m s 18.17 41.35 17.66 40.00 +métronome métronome NOM m s 0.16 1.35 0.15 1.28 +métronomes métronome NOM m p 0.16 1.35 0.01 0.07 +métropole métropole NOM f s 1.17 10.74 0.95 10.34 +métropoles métropole NOM f p 1.17 10.74 0.22 0.41 +métropolitain métropolitain ADJ m s 0.23 3.92 0.07 1.96 +métropolitaine métropolitain ADJ f s 0.23 3.92 0.11 1.08 +métropolitaines métropolitain ADJ f p 0.23 3.92 0.03 0.41 +métropolitains métropolitain ADJ m p 0.23 3.92 0.02 0.47 +métropolite métropolite NOM m s 0.00 0.47 0.00 0.47 +métros métro NOM m p 18.17 41.35 0.51 1.35 +métèque métèque NOM s 1.26 4.19 0.64 2.91 +métèques métèque NOM p 1.26 4.19 0.61 1.28 +muté muter VER m s 7.04 2.09 3.59 1.08 par:pas; +mutualisme mutualisme NOM m s 0.00 0.07 0.00 0.07 +mutualité mutualité NOM f s 0.14 0.34 0.00 0.34 +mutualités mutualité NOM f p 0.14 0.34 0.14 0.00 +mutée muter VER f s 7.04 2.09 0.42 0.00 par:pas; +mutuel mutuel ADJ m s 4.00 3.78 1.50 1.15 +mutuelle mutuel ADJ f s 4.00 3.78 1.88 2.23 +mutuellement mutuellement ADV 3.40 4.59 3.40 4.59 +mutuelles mutuel ADJ f p 4.00 3.78 0.22 0.34 +mutuels mutuel ADJ m p 4.00 3.78 0.41 0.07 +mutées muter VER f p 7.04 2.09 0.05 0.00 par:pas; +météo météo NOM f s 8.90 1.69 8.90 1.69 +météore météore NOM m s 1.06 2.97 0.55 0.81 +météores météore NOM m p 1.06 2.97 0.52 2.16 +météorique météorique ADJ s 0.05 0.14 0.05 0.14 +météoriquement météoriquement ADV 0.01 0.07 0.01 0.07 +météorite météorite NOM f s 4.87 0.61 2.05 0.47 +météorites météorite NOM f p 4.87 0.61 2.82 0.14 +météoritique météoritique ADJ f s 0.01 0.07 0.01 0.07 +météorologie météorologie NOM f s 0.13 1.08 0.13 1.08 +météorologique météorologique ADJ s 0.71 1.82 0.47 0.88 +météorologiques météorologique ADJ p 0.71 1.82 0.25 0.95 +météorologiste météorologiste NOM s 0.05 0.07 0.05 0.07 +météorologue météorologue NOM s 0.40 0.20 0.32 0.00 +météorologues météorologue NOM p 0.40 0.20 0.08 0.20 +mutés muter VER m p 7.04 2.09 0.19 0.34 par:pas; +mué muer VER m s 1.63 7.03 0.32 1.62 par:pas; +muée muer VER f s 1.63 7.03 0.03 0.81 par:pas; +muées muer VER f p 1.63 7.03 0.00 0.07 par:pas; +mués muer VER m p 1.63 7.03 0.02 0.27 par:pas; +mévente mévente NOM f s 0.00 0.27 0.00 0.27 +mézig mézig PRO:per s 0.00 1.15 0.00 1.15 +mézigue mézigue PRO:per s 0.02 2.84 0.02 2.84 +myasthénie myasthénie NOM f s 0.12 0.00 0.12 0.00 +mycologie mycologie NOM f s 0.00 0.07 0.00 0.07 +mycologue mycologue NOM s 0.01 0.27 0.00 0.20 +mycologues mycologue NOM p 0.01 0.27 0.01 0.07 +mycose mycose NOM f s 0.73 0.00 0.73 0.00 +mycène mycène NOM m s 0.04 0.00 0.04 0.00 +mycénien mycénien ADJ m s 0.01 0.14 0.01 0.00 +mycéniennes mycénien ADJ f p 0.01 0.14 0.00 0.07 +mycéniens mycénien ADJ m p 0.01 0.14 0.00 0.07 +mygale mygale NOM f s 0.05 0.47 0.04 0.27 +mygales mygale NOM f p 0.05 0.47 0.01 0.20 +mylord mylord NOM m s 0.97 0.14 0.97 0.14 +myocarde myocarde NOM m s 0.12 0.20 0.12 0.20 +myocardiopathie myocardiopathie NOM f s 0.07 0.00 0.07 0.00 +myocardique myocardique ADJ f s 0.01 0.00 0.01 0.00 +myocardite myocardite NOM f s 0.03 0.07 0.03 0.07 +myoclonie myoclonie NOM f s 0.01 0.00 0.01 0.00 +myoglobine myoglobine NOM f s 0.04 0.00 0.04 0.00 +myographe myographe NOM m s 0.00 0.07 0.00 0.07 +myopathes myopathe NOM p 0.02 0.00 0.02 0.00 +myopathie myopathie NOM f s 0.03 0.07 0.03 0.07 +myopathique myopathique ADJ s 0.01 0.00 0.01 0.00 +myope myope ADJ s 1.76 4.05 1.71 3.24 +myopes myope ADJ m p 1.76 4.05 0.05 0.81 +myopie myopie NOM f s 0.29 2.16 0.29 2.09 +myopies myopie NOM f p 0.29 2.16 0.00 0.07 +myosine myosine NOM f s 0.01 0.00 0.01 0.00 +myosis myosis NOM m 0.04 0.00 0.04 0.00 +myosotis myosotis NOM m 0.17 1.49 0.17 1.49 +myriade myriade NOM f s 0.78 3.31 0.11 1.08 +myriades myriade NOM f p 0.78 3.31 0.67 2.23 +myriophylle myriophylle NOM f s 0.00 0.20 0.00 0.20 +myrmidon myrmidon NOM m s 0.69 0.00 0.67 0.00 +myrmidons myrmidon NOM m p 0.69 0.00 0.02 0.00 +myrrhe myrrhe NOM f s 0.43 0.54 0.43 0.54 +myrte myrte NOM m s 1.25 1.55 1.25 0.74 +myrtes myrte NOM m p 1.25 1.55 0.00 0.81 +myrtille myrtille NOM f s 3.43 2.16 1.71 0.34 +myrtilles myrtille NOM f p 3.43 2.16 1.72 1.82 +mystagogie mystagogie NOM f s 0.00 0.14 0.00 0.14 +mystagogique mystagogique ADJ f s 0.00 0.14 0.00 0.14 +mystagogue mystagogue NOM m s 0.00 0.07 0.00 0.07 +myste myste NOM m s 0.01 0.00 0.01 0.00 +mysticisme mysticisme NOM m s 0.79 1.89 0.79 1.82 +mysticismes mysticisme NOM m p 0.79 1.89 0.00 0.07 +mystificateur mystificateur NOM m s 0.09 0.41 0.05 0.34 +mystificateurs mystificateur NOM m p 0.09 0.41 0.02 0.07 +mystification mystification NOM f s 0.40 1.49 0.16 1.28 +mystifications mystification NOM f p 0.40 1.49 0.23 0.20 +mystificatrice mystificateur NOM f s 0.09 0.41 0.02 0.00 +mystifie mystifier VER 0.28 1.01 0.10 0.00 ind:pre:3s; +mystifier mystifier VER 0.28 1.01 0.03 0.54 inf; +mystifié mystifier VER m s 0.28 1.01 0.13 0.20 par:pas; +mystifiée mystifier VER f s 0.28 1.01 0.01 0.14 par:pas; +mystifiées mystifier VER f p 0.28 1.01 0.00 0.07 par:pas; +mystifiés mystifier VER m p 0.28 1.01 0.01 0.07 par:pas; +mystique mystique ADJ s 3.31 8.85 2.75 6.82 +mystiquement mystiquement ADV 0.04 0.20 0.04 0.20 +mystiques mystique ADJ p 3.31 8.85 0.57 2.03 +mystère mystère NOM m s 28.03 51.01 22.90 39.53 +mystères mystère NOM m p 28.03 51.01 5.13 11.49 +mystérieuse mystérieux ADJ f s 19.61 53.65 6.56 18.65 +mystérieusement mystérieusement ADV 1.63 6.82 1.63 6.82 +mystérieuses mystérieux ADJ f p 19.61 53.65 1.21 7.64 +mystérieux mystérieux ADJ m 19.61 53.65 11.84 27.36 +mythe mythe NOM m s 6.26 10.41 5.17 5.61 +mythes mythe NOM m p 6.26 10.41 1.10 4.80 +mythifiait mythifier VER 0.00 0.14 0.00 0.07 ind:imp:3s; +mythifier mythifier VER 0.00 0.14 0.00 0.07 inf; +mythique mythique ADJ s 1.15 4.19 1.01 3.11 +mythiques mythique ADJ p 1.15 4.19 0.14 1.08 +mythisation mythisation NOM f s 0.00 0.07 0.00 0.07 +mytho mytho ADV 0.36 0.20 0.36 0.20 +mythologie mythologie NOM f s 2.06 4.73 2.02 4.12 +mythologies mythologie NOM f p 2.06 4.73 0.04 0.61 +mythologique mythologique ADJ s 0.81 2.03 0.66 1.62 +mythologiques mythologique ADJ p 0.81 2.03 0.16 0.41 +mythologisé mythologiser VER m s 0.00 0.07 0.00 0.07 par:pas; +mythologue mythologue NOM s 0.00 0.14 0.00 0.07 +mythologues mythologue NOM p 0.00 0.14 0.00 0.07 +mythomane mythomane ADJ s 0.43 0.68 0.42 0.68 +mythomanes mythomane ADJ f p 0.43 0.68 0.01 0.00 +mythomanie mythomanie NOM f s 0.10 0.61 0.10 0.61 +myéline myéline NOM f s 0.01 0.00 0.01 0.00 +myélite myélite NOM f s 0.05 0.07 0.05 0.07 +myéloïde myéloïde ADJ f s 0.02 0.00 0.02 0.00 +myéloblaste myéloblaste NOM m s 0.00 0.20 0.00 0.07 +myéloblastes myéloblaste NOM m p 0.00 0.20 0.00 0.14 +myxoedémateuse myxoedémateux ADJ f s 0.00 0.07 0.00 0.07 +myxoedémateuse myxoedémateux NOM f s 0.00 0.07 0.00 0.07 +myxomatose myxomatose NOM f s 0.03 0.07 0.03 0.07 +n_ n_ PRO:per 0.18 0.00 0.18 0.00 +n_est_ce_pas n_est_ce_pas ADV 0.10 0.00 0.10 0.00 +n ne ADV 22287.83 13841.89 70.36 5.68 +nôtre nôtre PRO:pos s 19.00 23.51 19.00 23.51 +nôtres nôtres PRO:pos p 22.63 21.35 22.63 21.35 +na na ONO 5.66 0.81 5.66 0.81 +naît naître VER 116.11 119.32 5.47 6.82 ind:pre:3s; +naîtra naître VER 116.11 119.32 1.55 0.54 ind:fut:3s; +naîtrai naître VER 116.11 119.32 0.02 0.00 ind:fut:1s; +naîtraient naître VER 116.11 119.32 0.17 0.07 cnd:pre:3p; +naîtrait naître VER 116.11 119.32 0.11 0.34 cnd:pre:3s; +naître naître VER 116.11 119.32 12.74 19.86 inf; +naîtrions naître VER 116.11 119.32 0.00 0.07 cnd:pre:1p; +naîtront naître VER 116.11 119.32 0.34 0.47 ind:fut:3p; +naïade naïade NOM f s 0.04 0.54 0.03 0.14 +naïades naïade NOM f p 0.04 0.54 0.01 0.41 +naïf naïf ADJ m s 7.91 21.62 4.22 9.59 +naïfs naïf ADJ m p 7.91 21.62 0.76 3.18 +naïve naïf ADJ f s 7.91 21.62 2.76 6.69 +naïvement naïvement ADV 0.27 6.01 0.27 6.01 +naïves naïf ADJ f p 7.91 21.62 0.17 2.16 +naïveté naïveté NOM f s 0.95 10.68 0.94 9.86 +naïvetés naïveté NOM f p 0.95 10.68 0.01 0.81 +nabab nabab NOM m s 0.72 0.68 0.55 0.54 +nababs nabab NOM m p 0.72 0.68 0.18 0.14 +nabi nabi NOM m s 0.28 0.00 0.28 0.00 +nable nable NOM m s 0.02 0.00 0.02 0.00 +nabot nabot NOM m s 2.10 2.09 2.01 1.49 +nabote nabot NOM f s 2.10 2.09 0.00 0.14 +nabots nabot NOM m p 2.10 2.09 0.08 0.47 +nacarat nacarat NOM m s 0.00 0.20 0.00 0.20 +nacelle nacelle NOM f s 1.24 3.04 1.04 2.36 +nacelles nacelle NOM f p 1.24 3.04 0.20 0.68 +nacra nacrer VER 0.00 1.62 0.00 0.07 ind:pas:3s; +nacraient nacrer VER 0.00 1.62 0.00 0.07 ind:imp:3p; +nacre nacre NOM f s 0.58 5.34 0.58 5.20 +nacres nacre NOM f p 0.58 5.34 0.00 0.14 +nacré nacré ADJ m s 0.38 3.24 0.05 1.15 +nacrée nacré ADJ f s 0.38 3.24 0.01 0.74 +nacrées nacré ADJ f p 0.38 3.24 0.04 0.74 +nacrure nacrure NOM f s 0.00 0.14 0.00 0.14 +nacrés nacré ADJ m p 0.38 3.24 0.28 0.61 +nada nada ADV 2.63 0.41 2.63 0.41 +nadir nadir NOM m s 0.01 0.20 0.01 0.20 +naevus naevus NOM m 0.03 0.14 0.03 0.14 +naga naga NOM m 0.05 0.00 0.05 0.00 +nage nage NOM f s 5.42 6.28 5.37 6.22 +nagea nager VER 30.36 25.68 0.03 1.15 ind:pas:3s; +nageai nager VER 30.36 25.68 0.00 0.20 ind:pas:1s; +nageaient nager VER 30.36 25.68 0.08 1.82 ind:imp:3p; +nageais nager VER 30.36 25.68 0.57 0.74 ind:imp:1s;ind:imp:2s; +nageait nager VER 30.36 25.68 0.62 3.58 ind:imp:3s; +nageant nager VER 30.36 25.68 0.95 2.30 par:pre; +nageante nageant ADJ f s 0.03 0.07 0.00 0.07 +nagent nager VER 30.36 25.68 1.24 1.01 ind:pre:3p; +nageoire nageoire NOM f s 1.10 2.30 0.53 0.34 +nageoires nageoire NOM f p 1.10 2.30 0.57 1.96 +nageons nager VER 30.36 25.68 0.07 0.20 imp:pre:1p;ind:pre:1p; +nageât nager VER 30.36 25.68 0.00 0.07 sub:imp:3s; +nager nager VER 30.36 25.68 18.71 9.32 inf; +nagera nager VER 30.36 25.68 0.15 0.07 ind:fut:3s; +nagerai nager VER 30.36 25.68 0.22 0.00 ind:fut:1s; +nageraient nager VER 30.36 25.68 0.01 0.00 cnd:pre:3p; +nagerais nager VER 30.36 25.68 0.02 0.07 cnd:pre:1s; +nagerait nager VER 30.36 25.68 0.02 0.20 cnd:pre:3s; +nageras nager VER 30.36 25.68 0.03 0.07 ind:fut:2s; +nagerez nager VER 30.36 25.68 0.01 0.14 ind:fut:2p; +nagerons nager VER 30.36 25.68 0.03 0.00 ind:fut:1p; +nageront nager VER 30.36 25.68 0.01 0.00 ind:fut:3p; +nages nager VER 30.36 25.68 0.58 0.14 ind:pre:2s; +nageur nageur NOM m s 2.65 4.59 1.43 3.24 +nageurs nageur NOM m p 2.65 4.59 0.75 0.95 +nageuse nageur NOM f s 2.65 4.59 0.47 0.41 +nageuses nageuse NOM f p 0.07 0.00 0.07 0.00 +nagez nager VER 30.36 25.68 0.53 0.27 imp:pre:2p;ind:pre:2p; +nagiez nager VER 30.36 25.68 0.05 0.07 ind:imp:2p; +nagions nager VER 30.36 25.68 0.13 0.34 ind:imp:1p; +nagèrent nager VER 30.36 25.68 0.00 0.34 ind:pas:3p; +nagé nager VER m s 30.36 25.68 1.26 1.22 par:pas; +naguère naguère ADV 1.16 23.72 1.16 23.72 +nain nain NOM m s 13.87 8.99 9.08 6.69 +naine nain NOM f s 13.87 8.99 0.63 0.61 +naines naine NOM f p 0.03 0.00 0.03 0.00 +nains nain NOM m p 13.87 8.99 4.17 1.62 +naira naira NOM m s 0.03 0.00 0.03 0.00 +nais naître VER 116.11 119.32 0.57 0.27 ind:pre:1s;ind:pre:2s; +naissaient naître VER 116.11 119.32 0.16 3.85 ind:imp:3p; +naissain naissain NOM m s 0.00 0.07 0.00 0.07 +naissais naître VER 116.11 119.32 0.01 0.07 ind:imp:1s; +naissait naître VER 116.11 119.32 0.24 7.57 ind:imp:3s; +naissance naissance NOM f s 39.72 52.91 37.90 49.53 +naissances naissance NOM f p 39.72 52.91 1.83 3.38 +naissant naître VER 116.11 119.32 0.42 0.88 par:pre; +naissante naissant ADJ f s 0.94 5.61 0.33 2.50 +naissantes naissant ADJ f p 0.94 5.61 0.34 0.68 +naissants naissant ADJ m p 0.94 5.61 0.01 0.27 +naisse naître VER 116.11 119.32 0.92 0.88 sub:pre:1s;sub:pre:3s; +naissent naître VER 116.11 119.32 3.82 3.58 ind:pre:3p; +naisses naître VER 116.11 119.32 0.03 0.14 sub:pre:2s; +naisseur naisseur ADJ m s 0.01 0.00 0.01 0.00 +naissez naître VER 116.11 119.32 0.06 0.00 imp:pre:2p;ind:pre:2p; +naissions naître VER 116.11 119.32 0.03 0.14 ind:imp:1p; +naissons naître VER 116.11 119.32 0.21 0.27 ind:pre:1p; +naja naja NOM m s 0.02 0.41 0.02 0.34 +najas naja NOM m p 0.02 0.41 0.00 0.07 +namibiens namibien NOM m p 0.02 0.00 0.02 0.00 +nan nan NOM m s 11.92 1.42 11.92 1.42 +nana nana NOM f s 39.57 13.65 26.48 7.64 +nanan nanan NOM m s 0.04 0.74 0.04 0.74 +nanar nanar NOM m s 0.00 0.14 0.00 0.14 +nanard nanard NOM m s 0.01 0.07 0.01 0.07 +nanas nana NOM f p 39.57 13.65 13.09 6.01 +nancéiens nancéien ADJ m p 0.00 0.07 0.00 0.07 +nanisme nanisme NOM m s 0.02 0.14 0.02 0.14 +nankin nankin NOM m s 0.02 0.27 0.02 0.27 +nano nano ADV 0.14 0.14 0.14 0.14 +nanomètre nanomètre NOM m s 0.07 0.00 0.03 0.00 +nanomètres nanomètre NOM m p 0.07 0.00 0.04 0.00 +nanoseconde nanoseconde NOM f s 0.05 0.00 0.02 0.00 +nanosecondes nanoseconde NOM f p 0.05 0.00 0.03 0.00 +nanotechnologie nanotechnologie NOM f s 0.34 0.00 0.34 0.00 +nant nant NOM m s 0.32 0.81 0.32 0.81 +nantais nantais ADJ m s 0.00 0.41 0.00 0.34 +nantaise nantaise NOM f s 0.14 0.00 0.14 0.00 +nantaises nantais NOM f p 0.00 0.34 0.00 0.07 +nanti nanti NOM m s 0.44 1.62 0.17 0.14 +nantie nantir VER f s 0.11 1.96 0.05 0.61 par:pas; +nanties nantir VER f p 0.11 1.96 0.00 0.14 par:pas; +nantir nantir VER 0.11 1.96 0.01 0.20 inf; +nantis nanti NOM m p 0.44 1.62 0.25 1.42 +nantissement nantissement NOM m s 0.01 0.07 0.01 0.07 +nap nap ADJ m s 0.05 0.00 0.05 0.00 +napalm napalm NOM m s 0.96 0.68 0.96 0.68 +napel napel NOM m s 0.01 0.00 0.01 0.00 +naphtaline naphtaline NOM f s 0.53 2.30 0.53 2.23 +naphtalines naphtaline NOM f p 0.53 2.30 0.00 0.07 +naphtalène naphtalène NOM m s 0.09 0.00 0.09 0.00 +naphte naphte NOM m s 0.10 0.27 0.10 0.27 +napolitain napolitain ADJ m s 1.09 1.96 0.73 0.34 +napolitaine napolitain ADJ f s 1.09 1.96 0.21 0.74 +napolitaines napolitain ADJ f p 1.09 1.96 0.02 0.27 +napolitains napolitain NOM m p 1.21 0.74 0.63 0.07 +napoléon napoléon NOM m s 0.18 1.28 0.04 0.81 +napoléonien napoléonien ADJ m s 0.08 0.61 0.02 0.20 +napoléonienne napoléonien ADJ f s 0.08 0.61 0.01 0.20 +napoléoniennes napoléonien ADJ f p 0.08 0.61 0.04 0.14 +napoléoniens napoléonien ADJ m p 0.08 0.61 0.01 0.07 +napoléons napoléon NOM m p 0.18 1.28 0.14 0.47 +nappa napper VER 0.31 1.49 0.22 0.20 ind:pas:3s; +nappage nappage NOM m s 0.04 0.00 0.04 0.00 +nappaient napper VER 0.31 1.49 0.00 0.07 ind:imp:3p; +nappait napper VER 0.31 1.49 0.00 0.14 ind:imp:3s; +nappe nappe NOM f s 4.34 25.68 3.01 18.18 +napper napper VER 0.31 1.49 0.01 0.07 inf; +napperon napperon NOM m s 0.51 3.65 0.31 2.16 +napperons napperon NOM m p 0.51 3.65 0.20 1.49 +nappes nappe NOM f p 4.34 25.68 1.33 7.50 +nappé napper VER m s 0.31 1.49 0.04 0.41 par:pas; +nappée napper VER f s 0.31 1.49 0.01 0.20 par:pas; +nappées napper VER f p 0.31 1.49 0.01 0.20 par:pas; +nappés napper VER m p 0.31 1.49 0.02 0.14 par:pas; +naquît naître VER 116.11 119.32 0.00 0.20 sub:imp:3s; +naquirent naître VER 116.11 119.32 0.03 0.34 ind:pas:3p; +naquis naître VER 116.11 119.32 0.25 0.27 ind:pas:1s;ind:pas:2s; +naquisse naître VER 116.11 119.32 0.00 0.07 sub:imp:1s; +naquissent naître VER 116.11 119.32 0.00 0.07 sub:imp:3p; +naquit naître VER 116.11 119.32 1.40 3.18 ind:pas:3s; +narbonnais narbonnais ADJ m s 0.00 0.68 0.00 0.68 +narcisse narcisse NOM m s 0.34 0.95 0.04 0.27 +narcisses narcisse NOM m p 0.34 0.95 0.31 0.68 +narcissique narcissique ADJ s 1.16 0.88 0.88 0.61 +narcissiquement narcissiquement ADV 0.00 0.07 0.00 0.07 +narcissiques narcissique ADJ p 1.16 0.88 0.27 0.27 +narcissisme narcissisme NOM m s 1.18 1.15 1.18 1.15 +narcissiste narcissiste NOM s 0.03 0.00 0.03 0.00 +narco_analyse narco_analyse NOM f s 0.01 0.00 0.01 0.00 +narcolepsie narcolepsie NOM f s 0.21 0.00 0.21 0.00 +narcoleptique narcoleptique ADJ s 0.14 0.00 0.14 0.00 +narcose narcose NOM f s 0.00 0.14 0.00 0.14 +narcotique narcotique NOM m s 1.28 0.47 0.32 0.34 +narcotiques narcotique NOM m p 1.28 0.47 0.96 0.14 +narcotrafic narcotrafic NOM m s 0.01 0.00 0.01 0.00 +narcotrafiquants narcotrafiquant NOM m p 0.19 0.00 0.19 0.00 +nard nard NOM m s 0.02 0.14 0.01 0.14 +nards nard NOM m p 0.02 0.14 0.01 0.00 +narghileh narghileh NOM m s 0.00 0.07 0.00 0.07 +narghilé narghilé NOM m s 0.01 0.14 0.01 0.14 +nargua narguer VER 1.93 6.55 0.00 0.14 ind:pas:3s; +narguaient narguer VER 1.93 6.55 0.00 0.34 ind:imp:3p; +narguais narguer VER 1.93 6.55 0.02 0.07 ind:imp:2s; +narguait narguer VER 1.93 6.55 0.02 0.88 ind:imp:3s; +narguant narguer VER 1.93 6.55 0.04 0.47 par:pre; +nargue narguer VER 1.93 6.55 0.88 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +narguent narguer VER 1.93 6.55 0.48 0.20 ind:pre:3p; +narguer narguer VER 1.93 6.55 0.41 3.38 inf; +nargues narguer VER 1.93 6.55 0.01 0.00 ind:pre:2s; +narguez narguer VER 1.93 6.55 0.02 0.07 ind:pre:2p; +narguilé narguilé NOM m s 0.08 1.01 0.07 0.81 +narguilés narguilé NOM m p 0.08 1.01 0.01 0.20 +narguons narguer VER 1.93 6.55 0.01 0.00 imp:pre:1p; +nargué narguer VER m s 1.93 6.55 0.05 0.07 par:pas; +narguées narguer VER f p 1.93 6.55 0.00 0.07 par:pas; +narine narine NOM f s 3.41 25.81 1.11 5.14 +narines narine NOM f p 3.41 25.81 2.30 20.68 +narquois narquois ADJ m 0.26 6.35 0.12 4.73 +narquoise narquois ADJ f s 0.26 6.35 0.14 1.42 +narquoisement narquoisement ADV 0.00 0.27 0.00 0.27 +narquoiserie narquoiserie NOM f s 0.00 0.07 0.00 0.07 +narquoises narquois ADJ f p 0.26 6.35 0.00 0.20 +narra narrer VER 0.24 2.30 0.00 0.20 ind:pas:3s; +narrai narrer VER 0.24 2.30 0.00 0.07 ind:pas:1s; +narrait narrer VER 0.24 2.30 0.01 0.61 ind:imp:3s; +narrant narrer VER 0.24 2.30 0.02 0.27 par:pre; +narrateur narrateur NOM m s 0.61 2.36 0.43 2.23 +narratif narratif ADJ m s 0.20 0.34 0.05 0.34 +narratifs narratif ADJ m p 0.20 0.34 0.05 0.00 +narration narration NOM f s 0.44 2.43 0.43 2.30 +narrations narration NOM f p 0.44 2.43 0.01 0.14 +narrative narratif ADJ f s 0.20 0.34 0.07 0.00 +narratives narratif ADJ f p 0.20 0.34 0.04 0.00 +narratrice narrateur NOM f s 0.61 2.36 0.17 0.14 +narratrices narratrice NOM f p 0.14 0.00 0.14 0.00 +narre narrer VER 0.24 2.30 0.01 0.34 ind:pre:1s;ind:pre:3s; +narrer narrer VER 0.24 2.30 0.16 0.47 inf; +narré narrer VER m s 0.24 2.30 0.03 0.20 par:pas; +narrée narrer VER f s 0.24 2.30 0.00 0.07 par:pas; +narrées narrer VER f p 0.24 2.30 0.00 0.07 par:pas; +narthex narthex NOM m 0.01 0.61 0.01 0.61 +narval narval NOM m s 0.04 0.68 0.04 0.61 +narvals narval NOM m p 0.04 0.68 0.00 0.07 +nasal nasal ADJ m s 1.56 2.50 0.60 0.47 +nasale nasal ADJ f s 1.56 2.50 0.67 1.08 +nasales nasal ADJ f p 1.56 2.50 0.24 0.81 +nasard nasard NOM m s 0.00 0.14 0.00 0.07 +nasardes nasard NOM f p 0.00 0.14 0.00 0.07 +nasaux nasal ADJ m p 1.56 2.50 0.05 0.14 +nasdaq nasdaq NOM m s 0.14 0.00 0.14 0.00 +nase nase ADJ s 1.84 0.74 1.54 0.68 +naseau naseau NOM m s 0.35 5.20 0.14 0.20 +naseaux naseau NOM m p 0.35 5.20 0.21 5.00 +nases nase NOM m p 1.06 0.20 0.43 0.00 +nasilla nasiller VER 0.01 1.22 0.00 0.07 ind:pas:3s; +nasillaient nasiller VER 0.01 1.22 0.00 0.07 ind:imp:3p; +nasillait nasiller VER 0.01 1.22 0.00 0.41 ind:imp:3s; +nasillant nasiller VER 0.01 1.22 0.00 0.34 par:pre; +nasillard nasillard ADJ m s 0.02 2.64 0.01 0.54 +nasillarde nasillard ADJ f s 0.02 2.64 0.01 1.42 +nasillardes nasillard ADJ f p 0.02 2.64 0.00 0.27 +nasillards nasillard ADJ m p 0.02 2.64 0.00 0.41 +nasille nasiller VER 0.01 1.22 0.01 0.14 ind:pre:1s;ind:pre:3s; +nasillement nasillement NOM m s 0.00 0.41 0.00 0.41 +nasillent nasiller VER 0.01 1.22 0.00 0.07 ind:pre:3p; +nasiller nasiller VER 0.01 1.22 0.00 0.14 inf; +nasillonne nasillonner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +nasique nasique NOM m s 0.50 0.00 0.50 0.00 +nasopharynx nasopharynx NOM m 0.03 0.00 0.03 0.00 +nasse nasse NOM f s 0.54 1.82 0.39 1.22 +nasses nasse NOM f p 0.54 1.82 0.14 0.61 +nassérien nassérien ADJ m s 0.00 0.07 0.00 0.07 +natal natal ADJ m s 5.71 13.92 2.54 5.47 +natale natal ADJ f s 5.71 13.92 3.15 7.91 +natales natal ADJ f p 5.71 13.92 0.02 0.41 +natalité natalité NOM f s 0.20 0.54 0.20 0.54 +natals natal ADJ m p 5.71 13.92 0.00 0.14 +natation natation NOM f s 3.59 1.22 3.59 1.22 +natatoire natatoire ADJ f s 0.01 0.07 0.01 0.07 +natif natif ADJ m s 0.58 3.65 0.44 1.82 +natifs natif NOM m p 0.52 0.68 0.36 0.27 +nation nation NOM f s 24.80 47.23 16.97 31.96 +national_socialisme national_socialisme NOM m s 0.58 2.03 0.58 2.03 +national_socialiste national_socialiste ADJ m s 0.23 0.14 0.23 0.14 +national national ADJ m s 34.61 98.04 12.23 42.70 +nationale_socialiste nationale_socialiste ADJ f s 0.00 0.14 0.00 0.14 +nationale national ADJ f s 34.61 98.04 18.59 48.18 +nationalement nationalement ADV 0.00 0.14 0.00 0.14 +nationales national ADJ f p 34.61 98.04 1.43 4.39 +nationalisait nationaliser VER 0.06 0.68 0.00 0.07 ind:imp:3s; +nationalisation nationalisation NOM f s 0.11 1.08 0.01 0.61 +nationalisations nationalisation NOM f p 0.11 1.08 0.10 0.47 +nationalisent nationaliser VER 0.06 0.68 0.00 0.07 ind:pre:3p; +nationaliser nationaliser VER 0.06 0.68 0.01 0.07 inf; +nationalisme nationalisme NOM m s 2.75 3.11 2.75 3.11 +nationalisons nationaliser VER 0.06 0.68 0.00 0.07 imp:pre:1p; +nationaliste nationaliste ADJ s 1.65 2.57 1.16 1.76 +nationalistes nationaliste NOM p 1.45 1.55 1.40 1.22 +nationalisé nationaliser VER m s 0.06 0.68 0.01 0.07 par:pas; +nationalisée nationaliser VER f s 0.06 0.68 0.01 0.14 par:pas; +nationalisées nationaliser VER f p 0.06 0.68 0.01 0.20 par:pas; +nationalisés nationaliser VER m p 0.06 0.68 0.02 0.00 par:pas; +nationalité nationalité NOM f s 3.21 6.89 2.77 5.74 +nationalités nationalité NOM f p 3.21 6.89 0.43 1.15 +nationaux_socialistes nationaux_socialistes ADJ p 0.00 0.14 0.00 0.14 +nationaux national ADJ m p 34.61 98.04 2.35 2.77 +nations nation NOM f p 24.80 47.23 7.83 15.27 +native natif ADJ f s 0.58 3.65 0.06 1.28 +natives natif ADJ f p 0.58 3.65 0.01 0.20 +nativité nativité NOM f s 0.14 1.35 0.14 1.28 +nativités nativité NOM f p 0.14 1.35 0.00 0.07 +natron natron NOM m s 0.04 0.00 0.04 0.00 +natrum natrum NOM m s 0.01 0.00 0.01 0.00 +natrémie natrémie NOM f s 0.03 0.00 0.03 0.00 +natta natter VER 0.11 1.01 0.00 0.07 ind:pas:3s; +natte natte NOM f s 1.75 10.20 0.88 4.26 +natter natter VER 0.11 1.01 0.01 0.14 inf; +nattes natte NOM f p 1.75 10.20 0.87 5.95 +nattier nattier NOM m s 0.00 0.14 0.00 0.14 +natté natter VER m s 0.11 1.01 0.00 0.07 par:pas; +nattée natter VER f s 0.11 1.01 0.00 0.20 par:pas; +nattées natter VER f p 0.11 1.01 0.00 0.07 par:pas; +nattés natter VER m p 0.11 1.01 0.10 0.41 par:pas; +naturalisation naturalisation NOM f s 0.06 1.01 0.06 1.01 +naturaliser naturaliser VER 0.34 0.68 0.05 0.34 inf; +naturalisme naturalisme NOM m s 0.40 0.27 0.40 0.27 +naturaliste naturaliste NOM s 0.69 0.68 0.51 0.41 +naturalistes naturaliste NOM p 0.69 0.68 0.18 0.27 +naturalisé naturaliser VER m s 0.34 0.68 0.29 0.27 par:pas; +naturalisée naturalisé ADJ f s 0.04 0.47 0.01 0.00 +naturalisés naturalisé ADJ m p 0.04 0.47 0.01 0.20 +nature nature NOM f s 60.20 95.88 59.80 93.45 +naturel naturel ADJ m s 39.78 75.68 19.01 38.65 +naturelle naturel ADJ f s 39.78 75.68 14.02 24.86 +naturellement naturellement ADV 21.05 71.96 21.05 71.96 +naturelles naturel ADJ f p 39.78 75.68 3.90 6.28 +naturels naturel ADJ m p 39.78 75.68 2.86 5.88 +natures nature NOM f p 60.20 95.88 0.40 2.43 +naturisme naturisme NOM m s 0.03 0.14 0.03 0.14 +naturiste naturiste ADJ m s 0.20 0.41 0.18 0.20 +naturistes naturiste NOM p 0.03 0.20 0.03 0.14 +naturlich naturlich ADV 0.27 0.14 0.27 0.14 +naturopathe naturopathe NOM s 0.03 0.00 0.03 0.00 +naufrage naufrage NOM m s 3.04 11.62 2.76 10.61 +naufrageant naufrager VER 0.21 0.88 0.00 0.07 par:pre; +naufragent naufrager VER 0.21 0.88 0.00 0.07 ind:pre:3p; +naufrager naufrager VER 0.21 0.88 0.19 0.07 inf; +naufrages naufrage NOM m p 3.04 11.62 0.28 1.01 +naufrageur naufrageur NOM m s 0.02 0.20 0.00 0.07 +naufrageurs naufrageur NOM m p 0.02 0.20 0.02 0.07 +naufrageuse naufrageur NOM f s 0.02 0.20 0.00 0.07 +naufragé naufragé NOM m s 0.69 3.45 0.30 2.03 +naufragée naufragé NOM f s 0.69 3.45 0.00 0.41 +naufragées naufragé ADJ f p 0.06 1.08 0.00 0.07 +naufragés naufragé NOM m p 0.69 3.45 0.38 1.01 +nauséabond nauséabond ADJ m s 0.63 2.97 0.34 0.95 +nauséabonde nauséabond ADJ f s 0.63 2.97 0.17 0.88 +nauséabondes nauséabond ADJ f p 0.63 2.97 0.05 0.95 +nauséabonds nauséabond ADJ m p 0.63 2.97 0.06 0.20 +nausée nausée NOM f s 6.51 10.00 4.75 7.91 +nausées nausée NOM f p 6.51 10.00 1.76 2.09 +nauséeuse nauséeux ADJ f s 0.55 2.03 0.20 0.74 +nauséeuses nauséeux ADJ f p 0.55 2.03 0.14 0.14 +nauséeux nauséeux ADJ m 0.55 2.03 0.21 1.15 +nautes naute NOM m p 0.00 0.07 0.00 0.07 +nautile nautile NOM m s 0.05 0.00 0.05 0.00 +nautilus nautilus NOM m 1.26 0.14 1.26 0.14 +nautique nautique ADJ s 1.89 2.09 0.71 1.15 +nautiques nautique ADJ p 1.89 2.09 1.17 0.95 +nautonier nautonier NOM m s 0.00 0.27 0.00 0.07 +nautoniers nautonier NOM m p 0.00 0.27 0.00 0.20 +navaja navaja NOM f s 0.15 0.34 0.15 0.27 +navajas navaja NOM f p 0.15 0.34 0.00 0.07 +navajo navajo ADJ s 0.21 0.14 0.18 0.00 +navajos navajo NOM p 0.13 0.00 0.09 0.00 +naval naval ADJ m s 4.37 8.78 2.08 1.08 +navale naval ADJ f s 4.37 8.78 1.56 3.45 +navales naval ADJ f p 4.37 8.78 0.27 3.31 +navals naval ADJ m p 4.37 8.78 0.46 0.95 +navarin navarin NOM m s 0.10 0.27 0.10 0.20 +navarins navarin NOM m p 0.10 0.27 0.00 0.07 +navarrais navarrais NOM m 0.10 0.61 0.10 0.61 +nave nave NOM f s 0.02 0.74 0.02 0.74 +navel navel NOM f s 0.03 0.00 0.03 0.00 +navet navet NOM m s 3.16 2.77 1.25 0.88 +navets navet NOM m p 3.16 2.77 1.90 1.89 +navette navette NOM f s 9.35 3.65 8.44 3.04 +navettes navette NOM f p 9.35 3.65 0.91 0.61 +navicert navicert NOM m 0.00 0.07 0.00 0.07 +navigabilité navigabilité NOM f s 0.01 0.00 0.01 0.00 +navigable navigable ADJ m s 0.07 0.27 0.02 0.14 +navigables navigable ADJ f p 0.07 0.27 0.04 0.14 +navigant navigant ADJ m s 0.19 0.41 0.16 0.41 +navigante navigant ADJ f s 0.19 0.41 0.03 0.00 +navigateur navigateur NOM m s 2.23 3.78 1.95 1.89 +navigateurs navigateur NOM m p 2.23 3.78 0.25 1.82 +navigation navigation NOM f s 3.25 5.41 3.25 5.07 +navigations navigation NOM f p 3.25 5.41 0.00 0.34 +navigatrice navigateur NOM f s 2.23 3.78 0.04 0.07 +navigua naviguer VER 8.71 11.42 0.04 0.27 ind:pas:3s; +naviguaient naviguer VER 8.71 11.42 0.02 1.01 ind:imp:3p; +naviguais naviguer VER 8.71 11.42 0.12 0.27 ind:imp:1s; +naviguait naviguer VER 8.71 11.42 0.20 1.82 ind:imp:3s; +naviguant naviguer VER 8.71 11.42 0.07 1.08 par:pre; +navigue naviguer VER 8.71 11.42 2.18 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +naviguent naviguer VER 8.71 11.42 0.14 0.61 ind:pre:3p; +naviguer naviguer VER 8.71 11.42 3.33 2.57 inf; +naviguera naviguer VER 8.71 11.42 0.10 0.00 ind:fut:3s; +naviguerai naviguer VER 8.71 11.42 0.04 0.00 ind:fut:1s; +navigueraient naviguer VER 8.71 11.42 0.00 0.07 cnd:pre:3p; +naviguerons naviguer VER 8.71 11.42 0.25 0.00 ind:fut:1p; +navigues naviguer VER 8.71 11.42 0.02 0.00 ind:pre:2s; +naviguez naviguer VER 8.71 11.42 0.56 0.00 imp:pre:2p;ind:pre:2p; +naviguiez naviguer VER 8.71 11.42 0.14 0.00 ind:imp:2p; +naviguions naviguer VER 8.71 11.42 0.00 0.41 ind:imp:1p; +naviguons naviguer VER 8.71 11.42 0.19 0.14 imp:pre:1p;ind:pre:1p; +naviguèrent naviguer VER 8.71 11.42 0.02 0.00 ind:pas:3p; +navigué naviguer VER m s 8.71 11.42 1.29 1.35 par:pas; +navire_citerne navire_citerne NOM m s 0.14 0.00 0.01 0.00 +navire_hôpital navire_hôpital NOM m s 0.04 0.14 0.04 0.14 +navire navire NOM m s 21.98 50.20 15.83 28.04 +navire_citerne navire_citerne NOM m p 0.14 0.00 0.14 0.00 +navire_école navire_école NOM m p 0.00 0.07 0.00 0.07 +navires navire NOM m p 21.98 50.20 6.14 22.16 +navra navrer VER 18.68 4.19 0.00 0.20 ind:pas:3s; +navrait navrer VER 18.68 4.19 0.00 0.34 ind:imp:3s; +navrance navrance NOM f s 0.00 0.07 0.00 0.07 +navrant navrant ADJ m s 0.63 2.70 0.51 0.74 +navrante navrant ADJ f s 0.63 2.70 0.09 1.01 +navrantes navrant ADJ f p 0.63 2.70 0.02 0.54 +navrants navrant ADJ m p 0.63 2.70 0.01 0.41 +navre navrer VER 18.68 4.19 0.29 0.47 imp:pre:2s;ind:pre:3s; +navrer navrer VER 18.68 4.19 0.00 0.07 inf; +navres navrer VER 18.68 4.19 0.00 0.07 ind:pre:2s; +navrez navrer VER 18.68 4.19 0.01 0.00 ind:pre:2p; +navré navrer VER m s 18.68 4.19 12.01 1.42 par:pas; +navrée navrer VER f s 18.68 4.19 6.01 0.81 par:pas; +navrées navrer VER f p 18.68 4.19 0.03 0.07 par:pas; +navrés navrer VER m p 18.68 4.19 0.31 0.41 par:pas; +nay nay NOM f s 0.01 0.00 0.01 0.00 +nazaréen nazaréen NOM m s 0.48 0.14 0.48 0.14 +naze naze ADJ s 4.82 1.55 4.20 1.55 +nazes naze NOM m p 3.27 0.34 1.56 0.07 +nazi nazi NOM m s 14.76 7.50 4.13 0.74 +nazie nazi ADJ f s 7.11 7.70 1.27 1.62 +nazies nazi ADJ f p 7.11 7.70 0.53 0.88 +nazillons nazillon NOM m p 0.01 0.07 0.01 0.07 +nazis nazi NOM m p 14.76 7.50 9.81 6.76 +nazisme nazisme NOM m s 0.63 1.62 0.63 1.62 +ne_varietur ne_varietur ADV 0.00 0.14 0.00 0.14 +ne ne ADV 22287.83 13841.89 13357.03 7752.09 +nec nec NOM s 0.64 0.27 0.64 0.27 +neck neck NOM m s 0.21 0.00 0.21 0.00 +nectar nectar NOM m s 2.28 0.81 2.28 0.81 +nectarine nectarine NOM f s 0.14 0.00 0.12 0.00 +nectarines nectarine NOM f p 0.14 0.00 0.01 0.00 +nef nef NOM f s 0.55 6.89 0.41 6.49 +nefs nef NOM f p 0.55 6.89 0.13 0.41 +negro_spiritual negro_spiritual NOM m s 0.01 0.14 0.01 0.07 +negro_spiritual negro_spiritual NOM m p 0.01 0.14 0.00 0.07 +negro negro NOM s 0.07 0.07 0.07 0.07 +neige neige NOM f s 39.34 80.88 37.52 74.93 +neigeait neiger VER 7.87 3.92 0.89 1.22 ind:imp:3s; +neiger neiger VER 7.87 3.92 0.59 0.61 inf; +neigera neiger VER 7.87 3.92 0.21 0.07 ind:fut:3s; +neigerait neiger VER 7.87 3.92 0.02 0.00 cnd:pre:3s; +neiges neige NOM f p 39.34 80.88 1.82 5.95 +neigeuse neigeux ADJ f s 0.30 4.12 0.04 1.35 +neigeuses neigeux ADJ f p 0.30 4.12 0.03 1.22 +neigeux neigeux ADJ m 0.30 4.12 0.23 1.55 +neigé neiger VER m s 7.87 3.92 0.66 0.54 par:pas; +nem nem NOM m s 0.62 0.14 0.33 0.07 +nemrod nemrod NOM m s 0.00 0.07 0.00 0.07 +nems nem NOM m p 0.62 0.14 0.29 0.07 +nenni nenni ADV 0.52 0.34 0.52 0.34 +nephtys nephtys NOM m 0.00 0.07 0.00 0.07 +neptunienne neptunien ADJ f s 0.06 0.00 0.03 0.00 +neptuniens neptunien ADJ m p 0.06 0.00 0.04 0.00 +nerf nerf NOM m s 30.12 30.47 8.09 3.92 +nerfs nerf NOM m p 30.12 30.47 22.03 26.55 +nerprun nerprun NOM m s 0.00 0.20 0.00 0.14 +nerpruns nerprun NOM m p 0.00 0.20 0.00 0.07 +nerva nerver VER 0.35 0.07 0.34 0.00 ind:pas:3s; +nerver nerver VER 0.35 0.07 0.02 0.00 inf; +nerveuse nerveux ADJ f s 41.91 35.81 8.50 10.88 +nerveusement nerveusement ADV 0.38 7.36 0.38 7.36 +nerveuses nerveux ADJ f p 41.91 35.81 0.89 3.11 +nerveux nerveux ADJ m 41.91 35.81 32.52 21.82 +nervi nervi NOM m s 0.05 0.81 0.05 0.47 +nervis nervi NOM m p 0.05 0.81 0.00 0.34 +nervosité nervosité NOM f s 1.58 5.07 1.58 4.93 +nervosités nervosité NOM f p 1.58 5.07 0.00 0.14 +nervé nerver VER m s 0.35 0.07 0.00 0.07 par:pas; +nervure nervure NOM f s 0.01 3.24 0.00 0.54 +nervures nervure NOM f p 0.01 3.24 0.01 2.70 +nervuré nervurer VER m s 0.01 0.41 0.00 0.20 par:pas; +nervurée nervurer VER f s 0.01 0.41 0.01 0.14 par:pas; +nervurées nervurer VER f p 0.01 0.41 0.00 0.07 par:pas; +nescafé nescafé NOM m s 0.20 0.81 0.20 0.81 +nestor nestor NOM m s 0.01 0.00 0.01 0.00 +nestorianisme nestorianisme NOM m s 0.00 0.34 0.00 0.34 +nestorien nestorien NOM m s 0.00 2.09 0.00 1.35 +nestorienne nestorien ADJ f s 0.00 1.62 0.00 0.34 +nestoriennes nestorien ADJ f p 0.00 1.62 0.00 0.07 +nestoriens nestorien NOM m p 0.00 2.09 0.00 0.74 +net net ADJ m s 19.95 40.20 14.31 17.09 +nets net ADJ m p 19.95 40.20 0.94 4.19 +nette net ADJ f s 19.95 40.20 3.91 14.86 +nettement nettement ADV 3.17 20.34 3.17 20.34 +nettes net ADJ f p 19.95 40.20 0.79 4.05 +netteté netteté NOM f s 0.61 9.12 0.61 9.12 +nettoie nettoyer VER 61.93 28.11 12.09 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +nettoiement nettoiement NOM m s 0.03 0.27 0.03 0.27 +nettoient nettoyer VER 61.93 28.11 0.67 0.81 ind:pre:3p; +nettoiera nettoyer VER 61.93 28.11 0.33 0.20 ind:fut:3s; +nettoierai nettoyer VER 61.93 28.11 0.75 0.07 ind:fut:1s; +nettoieraient nettoyer VER 61.93 28.11 0.02 0.00 cnd:pre:3p; +nettoierais nettoyer VER 61.93 28.11 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +nettoierait nettoyer VER 61.93 28.11 0.13 0.07 cnd:pre:3s; +nettoieras nettoyer VER 61.93 28.11 0.33 0.00 ind:fut:2s; +nettoierez nettoyer VER 61.93 28.11 0.04 0.14 ind:fut:2p; +nettoierons nettoyer VER 61.93 28.11 0.13 0.00 ind:fut:1p; +nettoies nettoyer VER 61.93 28.11 1.42 0.14 ind:pre:2s;sub:pre:2s; +nettoya nettoyer VER 61.93 28.11 0.02 1.28 ind:pas:3s; +nettoyable nettoyable ADJ s 0.01 0.07 0.01 0.00 +nettoyables nettoyable ADJ p 0.01 0.07 0.00 0.07 +nettoyage nettoyage NOM m s 7.50 6.35 7.48 5.88 +nettoyages nettoyage NOM m p 7.50 6.35 0.02 0.47 +nettoyai nettoyer VER 61.93 28.11 0.00 0.14 ind:pas:1s; +nettoyaient nettoyer VER 61.93 28.11 0.07 0.95 ind:imp:3p; +nettoyais nettoyer VER 61.93 28.11 1.06 0.14 ind:imp:1s;ind:imp:2s; +nettoyait nettoyer VER 61.93 28.11 1.02 2.57 ind:imp:3s; +nettoyant nettoyer VER 61.93 28.11 0.64 1.01 par:pre; +nettoyante nettoyant ADJ f s 0.10 0.07 0.01 0.00 +nettoyants nettoyant NOM m p 0.35 0.07 0.02 0.07 +nettoyer nettoyer VER 61.93 28.11 30.26 10.95 inf; +nettoyeur nettoyeur NOM m s 2.51 0.68 1.24 0.34 +nettoyeurs nettoyeur NOM m p 2.51 0.68 0.91 0.20 +nettoyeuse nettoyeur NOM f s 2.51 0.68 0.36 0.07 +nettoyeuses nettoyeur NOM f p 2.51 0.68 0.00 0.07 +nettoyez nettoyer VER 61.93 28.11 2.88 0.00 imp:pre:2p;ind:pre:2p; +nettoyiez nettoyer VER 61.93 28.11 0.14 0.07 ind:imp:2p; +nettoyons nettoyer VER 61.93 28.11 0.46 0.14 imp:pre:1p;ind:pre:1p; +nettoyât nettoyer VER 61.93 28.11 0.00 0.20 sub:imp:3s; +nettoyèrent nettoyer VER 61.93 28.11 0.01 0.07 ind:pas:3p; +nettoyé nettoyer VER m s 61.93 28.11 7.72 4.19 par:pas; +nettoyée nettoyer VER f s 61.93 28.11 0.89 1.08 par:pas; +nettoyées nettoyer VER f p 61.93 28.11 0.29 0.41 par:pas; +nettoyés nettoyer VER m p 61.93 28.11 0.45 0.88 par:pas; +neuf neuf ADJ:num 59.45 113.18 32.05 56.01 +neufs neuf ADJ m p 59.45 113.18 3.50 11.89 +neuneu neuneu ADJ f s 0.49 0.07 0.49 0.07 +neural neural ADJ m s 1.21 0.00 0.79 0.00 +neurale neural ADJ f s 1.21 0.00 0.32 0.00 +neurales neural ADJ f p 1.21 0.00 0.10 0.00 +neurasthénie neurasthénie NOM f s 0.14 1.28 0.14 1.28 +neurasthénique neurasthénique ADJ s 0.71 1.15 0.70 0.81 +neurasthéniques neurasthénique NOM p 0.10 0.20 0.10 0.07 +neurinome neurinome NOM m s 0.01 0.00 0.01 0.00 +neurobiologie neurobiologie NOM f s 0.01 0.00 0.01 0.00 +neurobiologiste neurobiologiste NOM s 0.02 0.00 0.02 0.00 +neurochimie neurochimie NOM f s 0.03 0.00 0.03 0.00 +neurochimique neurochimique ADJ s 0.01 0.00 0.01 0.00 +neurochirurgie neurochirurgie NOM f s 0.53 0.00 0.53 0.00 +neurochirurgien neurochirurgien NOM m s 0.85 0.00 0.79 0.00 +neurochirurgienne neurochirurgien NOM f s 0.85 0.00 0.06 0.00 +neurofibromatose neurofibromatose NOM f s 0.05 0.00 0.05 0.00 +neuroleptique neuroleptique NOM m s 0.07 0.20 0.01 0.07 +neuroleptiques neuroleptique NOM m p 0.07 0.20 0.06 0.14 +neurolinguistique neurolinguistique NOM f s 0.01 0.00 0.01 0.00 +neurologie neurologie NOM f s 0.93 0.00 0.93 0.00 +neurologique neurologique ADJ s 1.71 0.00 1.26 0.00 +neurologiquement neurologiquement ADV 0.02 0.00 0.02 0.00 +neurologiques neurologique ADJ p 1.71 0.00 0.45 0.00 +neurologiste neurologiste NOM s 0.09 0.00 0.09 0.00 +neurologue neurologue NOM s 1.56 0.34 1.34 0.34 +neurologues neurologue NOM p 1.56 0.34 0.22 0.00 +neuromusculaire neuromusculaire ADJ m s 0.11 0.00 0.11 0.00 +neuronal neuronal ADJ m s 0.42 0.00 0.19 0.00 +neuronale neuronal ADJ f s 0.42 0.00 0.14 0.00 +neuronales neuronal ADJ f p 0.42 0.00 0.03 0.00 +neuronaux neuronal ADJ m p 0.42 0.00 0.06 0.00 +neurone neurone NOM m s 1.77 1.15 0.38 0.07 +neurones neurone NOM m p 1.77 1.15 1.39 1.08 +neuronique neuronique ADJ f s 0.03 0.00 0.03 0.00 +neuropathie neuropathie NOM f s 0.07 0.00 0.07 0.00 +neuropathologie neuropathologie NOM f s 0.01 0.00 0.01 0.00 +neuropeptide neuropeptide NOM m s 0.01 0.00 0.01 0.00 +neurophysiologie neurophysiologie NOM f s 0.02 0.07 0.02 0.07 +neuroplégique neuroplégique ADJ s 0.02 0.00 0.02 0.00 +neuropsychiatrie neuropsychiatrie NOM f s 0.03 0.00 0.03 0.00 +neuropsychologiques neuropsychologique ADJ p 0.11 0.00 0.11 0.00 +neuropsychologue neuropsychologue NOM s 0.02 0.00 0.02 0.00 +neuroscience neuroscience NOM f s 0.04 0.00 0.04 0.00 +neurotoxine neurotoxine NOM f s 0.05 0.00 0.05 0.00 +neurotoxique neurotoxique ADJ s 0.14 0.00 0.14 0.00 +neurotransmetteur neurotransmetteur NOM m s 0.36 0.00 0.05 0.00 +neurotransmetteurs neurotransmetteur NOM m p 0.36 0.00 0.31 0.00 +neutralisaient neutraliser VER 5.31 2.97 0.01 0.14 ind:imp:3p; +neutralisait neutraliser VER 5.31 2.97 0.05 0.07 ind:imp:3s; +neutralisant neutraliser VER 5.31 2.97 0.06 0.20 par:pre; +neutralisante neutralisant ADJ f s 0.04 0.00 0.02 0.00 +neutralisateur neutralisateur ADJ m s 0.01 0.07 0.01 0.07 +neutralisation neutralisation NOM f s 0.13 1.08 0.13 1.08 +neutralise neutraliser VER 5.31 2.97 0.53 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +neutralisent neutraliser VER 5.31 2.97 0.29 0.00 ind:pre:3p; +neutraliser neutraliser VER 5.31 2.97 2.31 1.28 inf; +neutralisera neutraliser VER 5.31 2.97 0.09 0.00 ind:fut:3s; +neutraliserai neutraliser VER 5.31 2.97 0.02 0.00 ind:fut:1s; +neutraliseraient neutraliser VER 5.31 2.97 0.00 0.07 cnd:pre:3p; +neutraliserait neutraliser VER 5.31 2.97 0.03 0.00 cnd:pre:3s; +neutraliseront neutraliser VER 5.31 2.97 0.04 0.00 ind:fut:3p; +neutralisez neutraliser VER 5.31 2.97 0.19 0.00 imp:pre:2p;ind:pre:2p; +neutralisiez neutraliser VER 5.31 2.97 0.01 0.00 ind:imp:2p; +neutralisons neutraliser VER 5.31 2.97 0.03 0.00 imp:pre:1p;ind:pre:1p; +neutraliste neutraliste NOM s 0.16 0.00 0.16 0.00 +neutralisé neutraliser VER m s 5.31 2.97 1.02 0.34 par:pas; +neutralisée neutraliser VER f s 5.31 2.97 0.29 0.27 par:pas; +neutralisées neutraliser VER f p 5.31 2.97 0.02 0.14 par:pas; +neutralisés neutraliser VER m p 5.31 2.97 0.31 0.20 par:pas; +neutralité neutralité NOM f s 0.46 2.97 0.46 2.97 +neutre neutre ADJ s 5.15 11.76 4.32 10.20 +neutres neutre ADJ p 5.15 11.76 0.83 1.55 +neutrino neutrino NOM m s 0.55 0.00 0.15 0.00 +neutrinos neutrino NOM m p 0.55 0.00 0.40 0.00 +neutron neutron NOM m s 0.68 0.54 0.46 0.14 +neutronique neutronique ADJ m s 0.01 0.00 0.01 0.00 +neutrons neutron NOM m p 0.68 0.54 0.23 0.41 +neutropénie neutropénie NOM f s 0.04 0.00 0.04 0.00 +neuvaine neuvaine NOM f s 0.38 0.61 0.14 0.14 +neuvaines neuvaine NOM f p 0.38 0.61 0.25 0.47 +neuve neuf ADJ f s 59.45 113.18 10.30 22.43 +neuves neuf ADJ f p 59.45 113.18 5.02 8.72 +neuvième neuvième ADJ 1.09 1.49 1.09 1.42 +neuvièmes neuvième NOM p 0.55 1.08 0.01 0.00 +neveu neveu NOM m s 22.90 26.35 22.90 13.92 +neveux neveux NOM m p 2.13 3.72 2.13 3.72 +new_yorkais new_yorkais ADJ m 0.00 1.42 0.00 0.95 +new_yorkais new_yorkais ADJ f s 0.00 1.42 0.00 0.34 +new_yorkais new_yorkais ADJ f p 0.00 1.42 0.00 0.14 +new_wave new_wave NOM f 0.00 0.07 0.00 0.07 +new new ADJ m s 0.74 3.51 0.74 3.51 +news new NOM m p 0.08 0.20 0.08 0.20 +ney ney NOM m s 1.68 0.14 1.68 0.14 +nez nez NOM m 75.18 177.64 75.18 177.64 +ni ni CON 377.64 662.36 377.64 662.36 +nia nier VER 24.86 23.58 0.13 1.01 ind:pas:3s; +niable niable ADJ s 0.00 0.61 0.00 0.61 +niai nier VER 24.86 23.58 0.00 0.20 ind:pas:1s; +niaient nier VER 24.86 23.58 0.03 0.54 ind:imp:3p; +niais niais ADJ m 1.19 5.68 1.11 3.51 +niaise niais NOM f s 0.71 1.49 0.14 0.41 +niaisement niaisement ADV 0.11 0.68 0.11 0.68 +niaiser niaiser VER 0.30 0.00 0.17 0.00 inf; +niaiserie niaiserie NOM f s 0.89 3.51 0.16 1.89 +niaiseries niaiserie NOM f p 0.89 3.51 0.73 1.62 +niaises niaise NOM f p 0.11 0.00 0.07 0.00 +niaiseuse niaiseux ADJ f s 0.05 0.07 0.01 0.00 +niaiseux niaiseux ADJ m p 0.05 0.07 0.04 0.07 +niaisé niaiser VER m s 0.30 0.00 0.14 0.00 par:pas; +niait nier VER 24.86 23.58 0.11 2.43 ind:imp:3s; +niakoué niakoué NOM s 0.07 0.14 0.03 0.07 +niakoués niakoué NOM p 0.07 0.14 0.04 0.07 +niant nier VER 24.86 23.58 0.35 0.95 par:pre; +nib nib ADV 0.16 2.03 0.16 2.03 +nibard nibard NOM m s 1.60 0.68 0.13 0.07 +nibards nibard NOM m p 1.60 0.68 1.47 0.61 +nibergue nibergue ADJ 0.00 0.07 0.00 0.07 +nicaraguayen nicaraguayen ADJ m s 0.06 0.00 0.04 0.00 +nicaraguayenne nicaraguayen NOM f s 0.07 0.00 0.02 0.00 +nicaraguayens nicaraguayen NOM m p 0.07 0.00 0.05 0.00 +nice nice NOM s 2.00 0.41 2.00 0.41 +nicet nicet ADJ m s 0.00 0.14 0.00 0.14 +nicha nicher VER 1.52 5.61 0.01 0.07 ind:pas:3s; +nichaient nicher VER 1.52 5.61 0.12 0.34 ind:imp:3p; +nichait nicher VER 1.52 5.61 0.10 0.27 ind:imp:3s; +nichan nichan NOM m s 0.00 0.07 0.00 0.07 +nichant nicher VER 1.52 5.61 0.00 0.34 par:pre; +niche niche NOM f s 2.27 9.39 2.17 6.35 +nichent nicher VER 1.52 5.61 0.16 0.27 ind:pre:3p; +nicher nicher VER 1.52 5.61 0.35 1.62 inf; +niches niche NOM f p 2.27 9.39 0.10 3.04 +nicheurs nicheur ADJ m p 0.00 0.07 0.00 0.07 +nichions nicher VER 1.52 5.61 0.00 0.07 ind:imp:1p; +nichon nichon NOM m s 9.85 6.35 0.67 0.54 +nichonnée nichonnée ADJ f s 0.00 0.27 0.00 0.14 +nichonnées nichonnée ADJ f p 0.00 0.27 0.00 0.14 +nichons nichon NOM m p 9.85 6.35 9.18 5.81 +nichèrent nicher VER 1.52 5.61 0.00 0.07 ind:pas:3p; +niché nicher VER m s 1.52 5.61 0.23 0.61 par:pas; +nichée nicher VER f s 1.52 5.61 0.14 0.61 par:pas; +nichées nichée NOM f p 0.07 1.22 0.01 0.00 +nichés nicher VER m p 1.52 5.61 0.02 0.27 par:pas; +nickel nickel ADJ 2.78 1.28 2.78 1.28 +nickelle nickeler VER 0.00 0.54 0.00 0.07 ind:pre:3s; +nickels nickel NOM m p 1.50 1.55 0.09 0.34 +nickelé nickelé ADJ m s 0.35 2.03 0.02 0.81 +nickelée nickelé ADJ f s 0.35 2.03 0.01 0.54 +nickelées nickelé ADJ f p 0.35 2.03 0.00 0.07 +nickelés nickelé ADJ m p 0.35 2.03 0.32 0.61 +nicotine nicotine NOM f s 1.66 1.28 1.66 1.28 +nicotinisé nicotiniser VER m s 0.00 0.14 0.00 0.07 par:pas; +nicotinisés nicotiniser VER m p 0.00 0.14 0.00 0.07 par:pas; +nictation nictation NOM f s 0.00 0.07 0.00 0.07 +nictitant nictitant ADJ m s 0.01 0.07 0.00 0.07 +nictitante nictitant ADJ f s 0.01 0.07 0.01 0.00 +nid_de_poule nid_de_poule NOM m s 0.20 0.20 0.14 0.07 +nid nid NOM m s 12.25 18.85 11.07 14.59 +nidification nidification NOM f s 0.04 0.07 0.04 0.07 +nidificatrices nidificateur NOM f p 0.00 0.07 0.00 0.07 +nidifie nidifier VER 0.01 0.00 0.01 0.00 ind:pre:3s; +nid_de_poule nid_de_poule NOM m p 0.20 0.20 0.06 0.14 +nids nid NOM m p 12.25 18.85 1.19 4.26 +nie nier VER 24.86 23.58 7.37 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +nielle nielle NOM s 0.00 0.14 0.00 0.14 +niellé nieller VER m s 0.00 0.07 0.00 0.07 par:pas; +nient nier VER 24.86 23.58 0.90 0.95 ind:pre:3p; +nier nier VER 24.86 23.58 7.76 10.68 inf; +niera nier VER 24.86 23.58 0.18 0.00 ind:fut:3s; +nierai nier VER 24.86 23.58 0.62 0.20 ind:fut:1s; +nierais nier VER 24.86 23.58 0.12 0.14 cnd:pre:1s; +nierait nier VER 24.86 23.58 0.19 0.07 cnd:pre:3s; +nieras nier VER 24.86 23.58 0.14 0.00 ind:fut:2s; +nierez nier VER 24.86 23.58 0.04 0.20 ind:fut:2p; +nieriez nier VER 24.86 23.58 0.01 0.00 cnd:pre:2p; +nierons nier VER 24.86 23.58 0.04 0.00 ind:fut:1p; +nieront nier VER 24.86 23.58 0.06 0.07 ind:fut:3p; +nies nier VER 24.86 23.58 2.96 0.20 ind:pre:2s; +niet niet ONO 0.33 0.27 0.33 0.27 +nietzschéen nietzschéen NOM m s 0.59 0.07 0.59 0.07 +nietzschéenne nietzschéen ADJ f s 0.79 0.74 0.41 0.20 +nietzschéennes nietzschéen ADJ f p 0.79 0.74 0.20 0.14 +niez nier VER 24.86 23.58 1.87 0.61 imp:pre:2p;ind:pre:2p; +nigaud nigaud NOM m s 1.59 1.42 1.27 0.95 +nigaude nigaud ADJ f s 0.62 1.15 0.05 0.14 +nigaudement nigaudement ADV 0.00 0.07 0.00 0.07 +nigauderie nigauderie NOM f s 0.00 0.07 0.00 0.07 +nigauds nigaud NOM m p 1.59 1.42 0.28 0.41 +nigelle nigel NOM f s 0.01 0.00 0.01 0.00 +night_club night_club NOM m s 1.31 0.88 1.16 0.61 +night_club night_club NOM m p 1.31 0.88 0.10 0.27 +night_club night_club NOM m s 1.31 0.88 0.05 0.00 +niguedouille niguedouille NOM s 0.00 0.07 0.00 0.07 +nigérian nigérian ADJ m s 0.13 0.00 0.08 0.00 +nigérian nigérian NOM m s 0.22 0.00 0.08 0.00 +nigériane nigérian ADJ f s 0.13 0.00 0.01 0.00 +nigérians nigérian NOM m p 0.22 0.00 0.14 0.00 +nigérien nigérien ADJ m s 0.17 0.00 0.17 0.00 +nigériens nigérien NOM m p 0.04 0.07 0.03 0.07 +nihil_obstat nihil_obstat ADV 0.00 0.20 0.00 0.20 +nihilisme nihilisme NOM m s 0.11 1.22 0.11 1.22 +nihiliste nihiliste ADJ s 0.09 0.74 0.09 0.54 +nihilistes nihiliste NOM p 0.16 0.41 0.08 0.00 +nikkei nikkei NOM m s 0.05 0.00 0.05 0.00 +nil nil NOM s 0.05 0.07 0.05 0.07 +nim nim NOM m s 1.78 0.07 1.78 0.07 +nimba nimber VER 0.17 2.50 0.00 0.07 ind:pas:3s; +nimbaient nimber VER 0.17 2.50 0.00 0.07 ind:imp:3p; +nimbait nimber VER 0.17 2.50 0.01 0.74 ind:imp:3s; +nimbant nimber VER 0.17 2.50 0.00 0.14 par:pre; +nimbe nimbe NOM m s 0.01 0.88 0.01 0.81 +nimbent nimber VER 0.17 2.50 0.00 0.07 ind:pre:3p; +nimber nimber VER 0.17 2.50 0.00 0.14 inf; +nimbes nimbe NOM m p 0.01 0.88 0.00 0.07 +nimbo_stratus nimbo_stratus NOM m 0.14 0.00 0.14 0.00 +nimbo nimbo ADV 0.00 0.07 0.00 0.07 +nimbostratus nimbostratus NOM m 0.00 0.07 0.00 0.07 +nimbé nimber VER m s 0.17 2.50 0.14 0.47 par:pas; +nimbée nimber VER f s 0.17 2.50 0.02 0.61 par:pas; +nimbées nimber VER f p 0.17 2.50 0.00 0.14 par:pas; +nimbés nimber VER m p 0.17 2.50 0.00 0.07 par:pas; +nimbus nimbus NOM m 0.09 0.20 0.09 0.20 +ninas ninas NOM m 0.01 0.95 0.01 0.95 +niobium niobium NOM m s 0.01 0.00 0.01 0.00 +niolo niolo NOM m s 0.00 0.14 0.00 0.14 +nions nier VER 24.86 23.58 0.16 0.07 imp:pre:1p;ind:pre:1p; +nioulouque nioulouque ADJ s 0.00 0.07 0.00 0.07 +nippe nippe NOM f s 0.14 2.43 0.01 0.07 +nipper nipper VER 0.38 0.88 0.04 0.14 inf; +nippes nippe NOM f p 0.14 2.43 0.13 2.36 +nippez nipper VER 0.38 0.88 0.10 0.07 imp:pre:2p; +nippo nippo ADV 0.03 0.00 0.03 0.00 +nippon nippon ADJ m s 0.34 1.22 0.33 0.41 +nippone nippon ADJ f s 0.34 1.22 0.01 0.14 +nippones nippon ADJ f p 0.34 1.22 0.00 0.34 +nipponne nipponne ADJ f s 0.14 0.00 0.14 0.00 +nippons nippon NOM m p 0.06 0.41 0.04 0.41 +nippé nipper VER m s 0.38 0.88 0.02 0.07 par:pas; +nippée nipper VER f s 0.38 0.88 0.02 0.34 par:pas; +nippées nipper VER f p 0.38 0.88 0.10 0.20 par:pas; +niquait niquer VER 7.57 1.35 0.06 0.00 ind:imp:3s; +nique nique NOM f s 1.56 0.61 1.56 0.61 +niquedouille niquedouille NOM s 0.03 0.20 0.03 0.20 +niquent niquer VER 7.57 1.35 0.23 0.00 ind:pre:3p; +niquer niquer VER 7.57 1.35 3.27 0.74 inf; +niquera niquer VER 7.57 1.35 0.03 0.00 ind:fut:3s; +niquerait niquer VER 7.57 1.35 0.01 0.00 cnd:pre:3s; +niques niquer VER 7.57 1.35 0.11 0.00 ind:pre:2s; +niquez niquer VER 7.57 1.35 0.08 0.00 imp:pre:2p;ind:pre:2p; +niquons niquer VER 7.57 1.35 0.01 0.00 imp:pre:1p; +niqué niquer VER m s 7.57 1.35 2.33 0.20 par:pas; +niquée niquer VER f s 7.57 1.35 0.11 0.00 par:pas; +niqués niquer VER m p 7.57 1.35 0.14 0.20 par:pas; +nirvana nirvana NOM m s 0.81 0.74 0.81 0.68 +nirvanas nirvana NOM m p 0.81 0.74 0.00 0.07 +nirvâna nirvâna NOM m s 0.01 2.09 0.01 2.09 +nisan nisan NOM m s 0.00 0.20 0.00 0.20 +nièce nièce NOM f s 10.10 0.00 9.28 0.00 +nièces nièce NOM f p 10.10 0.00 0.82 0.00 +nième nième NOM m s 0.03 0.07 0.03 0.07 +niçois niçois ADJ m 0.08 1.28 0.00 0.88 +niçoise niçois ADJ f s 0.08 1.28 0.08 0.34 +niçoises niçois NOM f p 0.03 0.47 0.00 0.20 +nière nière NOM m s 0.14 0.07 0.14 0.07 +nièrent nier VER 24.86 23.58 0.01 0.07 ind:pas:3p; +nitratant nitrater VER 0.01 0.00 0.01 0.00 par:pre; +nitrate nitrate NOM m s 0.64 0.54 0.38 0.41 +nitrates nitrate NOM m p 0.64 0.54 0.27 0.14 +nitre nitre NOM m s 0.07 0.00 0.07 0.00 +nitreuse nitreux ADJ f s 0.17 0.00 0.01 0.00 +nitreux nitreux ADJ m s 0.17 0.00 0.16 0.00 +nitrique nitrique ADJ s 0.25 0.14 0.25 0.14 +nitrite nitrite NOM m s 0.02 0.14 0.02 0.14 +nitroglycérine nitroglycérine NOM f s 0.79 0.20 0.79 0.20 +nitrogène nitrogène NOM m s 0.17 0.00 0.17 0.00 +nitré nitré ADJ m s 0.00 0.07 0.00 0.07 +nié nier VER m s 24.86 23.58 1.53 0.88 par:pas; +niébé niébé NOM m s 0.02 0.07 0.02 0.07 +niée nier VER f s 24.86 23.58 0.14 0.27 par:pas; +niés nier VER m p 24.86 23.58 0.01 0.07 par:pas; +nivôse nivôse NOM m s 0.00 0.41 0.00 0.41 +nivaquine nivaquine NOM f s 0.00 0.14 0.00 0.14 +niveau niveau NOM m s 50.70 32.91 45.46 30.74 +niveaux niveau NOM m p 50.70 32.91 5.24 2.16 +nivelait niveler VER 0.14 1.96 0.00 0.07 ind:imp:3s; +nivelant niveler VER 0.14 1.96 0.04 0.07 par:pre; +niveler niveler VER 0.14 1.96 0.09 0.27 inf; +niveleur niveleur NOM m s 0.01 0.27 0.01 0.00 +niveleurs niveleur NOM m p 0.01 0.27 0.00 0.20 +niveleuse niveleur NOM f s 0.01 0.27 0.00 0.07 +nivelle niveler VER 0.14 1.96 0.00 0.07 ind:pre:1s; +nivellement nivellement NOM m s 0.00 0.20 0.00 0.20 +nivellent niveler VER 0.14 1.96 0.00 0.07 ind:pre:3p; +nivelât niveler VER 0.14 1.96 0.00 0.07 sub:imp:3s; +nivelé niveler VER m s 0.14 1.96 0.02 0.68 par:pas; +nivelée niveler VER f s 0.14 1.96 0.00 0.27 par:pas; +nivelées niveler VER f p 0.14 1.96 0.00 0.07 par:pas; +nivelés niveler VER m p 0.14 1.96 0.00 0.34 par:pas; +nivernais nivernais ADJ m 0.00 0.07 0.00 0.07 +nivernaise nivernaise ADJ f s 0.00 0.20 0.00 0.20 +nixe nixe NOM f s 0.01 0.07 0.01 0.07 +no_man_s_land no_man_s_land NOM m s 0.95 1.49 0.95 1.49 +nobiliaire nobiliaire ADJ s 0.10 0.95 0.10 0.47 +nobiliaires nobiliaire ADJ p 0.10 0.95 0.00 0.47 +nobilitas nobilitas NOM f 0.10 0.00 0.10 0.00 +noblaillon noblaillon NOM m s 0.02 0.00 0.02 0.00 +noble noble ADJ s 28.70 31.62 23.73 20.00 +noblement noblement ADV 0.58 2.70 0.58 2.70 +nobles noble ADJ p 28.70 31.62 4.97 11.62 +noblesse noblesse NOM f s 6.09 12.64 6.09 12.43 +noblesses noblesse NOM f p 6.09 12.64 0.00 0.20 +nobliau nobliau NOM m s 0.01 0.14 0.01 0.00 +nobliaux nobliau NOM m p 0.01 0.14 0.00 0.14 +noce noce NOM f s 17.05 21.01 4.43 6.55 +nocer nocer VER 0.01 0.00 0.01 0.00 inf; +noces noce NOM f p 17.05 21.01 12.62 14.46 +noceur noceur NOM m s 0.17 0.88 0.15 0.47 +noceurs noceur NOM m p 0.17 0.88 0.02 0.20 +noceuse noceur NOM f s 0.17 0.88 0.00 0.14 +noceuses noceur NOM f p 0.17 0.88 0.00 0.07 +nocher nocher NOM m s 0.02 0.14 0.02 0.14 +nochère nochère NOM f s 0.00 0.14 0.00 0.14 +nocif nocif ADJ m s 1.53 1.69 0.56 0.74 +nocifs nocif ADJ m p 1.53 1.69 0.38 0.34 +nocive nocif ADJ f s 1.53 1.69 0.31 0.41 +nocives nocif ADJ f p 1.53 1.69 0.27 0.20 +nocivité nocivité NOM f s 0.16 0.20 0.16 0.20 +noctambule noctambule ADJ m s 0.51 0.61 0.38 0.27 +noctambules noctambule ADJ p 0.51 0.61 0.14 0.34 +noctambulisme noctambulisme NOM m s 0.00 0.14 0.00 0.14 +nocturnal nocturnal NOM m s 0.01 0.07 0.01 0.07 +nocturne nocturne ADJ s 5.71 37.16 4.09 25.41 +nocturnes nocturne ADJ p 5.71 37.16 1.62 11.76 +nodal nodal ADJ m s 0.01 0.41 0.01 0.34 +nodales nodal ADJ f p 0.01 0.41 0.00 0.07 +nodosités nodosité NOM f p 0.01 0.27 0.01 0.27 +nodule nodule NOM m s 0.43 0.00 0.12 0.00 +nodules nodule NOM m p 0.43 0.00 0.31 0.00 +noduleux noduleux ADJ m p 0.00 0.14 0.00 0.14 +nodus nodus NOM m 0.00 0.07 0.00 0.07 +noeud noeud NOM m s 11.12 24.26 7.64 14.46 +noeuds noeud NOM m p 11.12 24.26 3.48 9.80 +noie noyer VER 27.29 38.58 4.53 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +noient noyer VER 27.29 38.58 0.48 1.08 ind:pre:3p; +noiera noyer VER 27.29 38.58 0.14 0.07 ind:fut:3s; +noierai noyer VER 27.29 38.58 0.17 0.07 ind:fut:1s; +noieraient noyer VER 27.29 38.58 0.00 0.07 cnd:pre:3p; +noierait noyer VER 27.29 38.58 0.56 0.47 cnd:pre:3s; +noieras noyer VER 27.29 38.58 0.04 0.00 ind:fut:2s; +noierez noyer VER 27.29 38.58 0.10 0.07 ind:fut:2p; +noieront noyer VER 27.29 38.58 0.14 0.00 ind:fut:3p; +noies noyer VER 27.29 38.58 0.71 0.14 ind:pre:2s; +noir noir ADJ m s 144.81 482.23 72.20 184.86 +noiraud noiraud ADJ m s 0.70 4.80 0.69 1.28 +noiraude noiraud ADJ f s 0.70 4.80 0.01 3.31 +noiraudes noiraud ADJ f p 0.70 4.80 0.00 0.14 +noirauds noiraud NOM m p 0.37 0.81 0.01 0.00 +noirceur noirceur NOM f s 0.63 3.24 0.63 2.97 +noirceurs noirceur NOM f p 0.63 3.24 0.00 0.27 +noirci noirci ADJ m s 0.66 4.93 0.47 1.35 +noircie noircir VER f s 2.14 10.41 0.15 1.01 par:pas; +noircies noirci ADJ f p 0.66 4.93 0.04 1.69 +noircir noircir VER 2.14 10.41 0.68 2.16 inf; +noircirai noircir VER 2.14 10.41 0.01 0.00 ind:fut:1s; +noircirais noircir VER 2.14 10.41 0.00 0.07 cnd:pre:1s; +noircirait noircir VER 2.14 10.41 0.00 0.07 cnd:pre:3s; +noircirent noircir VER 2.14 10.41 0.00 0.20 ind:pas:3p; +noircis noircir VER m p 2.14 10.41 0.35 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +noircissaient noircir VER 2.14 10.41 0.14 0.20 ind:imp:3p; +noircissais noircir VER 2.14 10.41 0.00 0.07 ind:imp:1s; +noircissait noircir VER 2.14 10.41 0.01 1.28 ind:imp:3s; +noircissant noircir VER 2.14 10.41 0.00 0.34 par:pre; +noircisse noircir VER 2.14 10.41 0.00 0.07 sub:pre:1s; +noircissent noircir VER 2.14 10.41 0.11 0.20 ind:pre:3p; +noircissez noircir VER 2.14 10.41 0.05 0.07 imp:pre:2p;ind:pre:2p; +noircit noircir VER 2.14 10.41 0.25 0.68 ind:pre:3s;ind:pas:3s; +noire noir ADJ f s 144.81 482.23 41.57 140.88 +noires noir ADJ f p 144.81 482.23 9.39 62.64 +noirâtre noirâtre ADJ s 0.02 6.08 0.02 4.12 +noirâtres noirâtre ADJ p 0.02 6.08 0.00 1.96 +noirs noir ADJ m p 144.81 482.23 21.65 93.85 +noise noise NOM f s 1.14 0.68 0.35 0.27 +noises noise NOM f p 1.14 0.68 0.79 0.41 +noisetier noisetier NOM m s 1.12 3.24 1.10 1.62 +noisetiers noisetier NOM m p 1.12 3.24 0.03 1.62 +noisette noisette NOM f s 2.90 3.99 0.57 1.69 +noisettes noisette NOM f p 2.90 3.99 2.33 2.30 +noix noix NOM f 12.83 12.23 12.83 12.23 +nok nok ADJ f s 0.03 0.00 0.03 0.00 +nolis nolis NOM m 0.00 0.07 0.00 0.07 +nom nom NOM m s 570.67 395.00 528.17 326.89 +nomade nomade NOM s 1.32 4.86 0.60 1.62 +nomades nomade NOM p 1.32 4.86 0.72 3.24 +nomadisait nomadiser VER 0.00 0.20 0.00 0.07 ind:imp:3s; +nomadisant nomadiser VER 0.00 0.20 0.00 0.07 par:pre; +nomadisent nomadiser VER 0.00 0.20 0.00 0.07 ind:pre:3p; +nomadisme nomadisme NOM m s 0.01 0.68 0.01 0.68 +nombre nombre NOM m s 40.16 78.38 36.57 76.28 +nombres nombre NOM m p 40.16 78.38 3.59 2.09 +nombreuse nombreux ADJ f s 44.64 60.27 0.74 5.34 +nombreuses nombreux ADJ f p 44.64 60.27 14.01 17.91 +nombreux nombreux ADJ m 44.64 60.27 29.89 37.03 +nombril nombril NOM m s 4.34 5.54 4.26 5.20 +nombrilisme nombrilisme NOM m s 0.03 0.00 0.03 0.00 +nombriliste nombriliste NOM s 0.14 0.00 0.14 0.00 +nombrils nombril NOM m p 4.34 5.54 0.08 0.34 +nome nome NOM m s 0.24 0.07 0.24 0.07 +nomenclature nomenclature NOM f s 0.03 1.01 0.03 0.81 +nomenclatures nomenclature NOM f p 0.03 1.01 0.00 0.20 +nomenklatura nomenklatura NOM f s 0.00 0.14 0.00 0.14 +nominal nominal ADJ m s 0.39 0.34 0.09 0.14 +nominale nominal ADJ f s 0.39 0.34 0.10 0.07 +nominalement nominalement ADV 0.01 0.00 0.01 0.00 +nominales nominal ADJ f p 0.39 0.34 0.02 0.14 +nominaliste nominaliste ADJ m s 0.00 0.07 0.00 0.07 +nominatif nominatif ADJ m s 0.09 0.47 0.05 0.07 +nominatifs nominatif ADJ m p 0.09 0.47 0.00 0.20 +nomination nomination NOM f s 3.50 3.11 3.10 2.77 +nominations nomination NOM f p 3.50 3.11 0.40 0.34 +nominative nominatif ADJ f s 0.09 0.47 0.03 0.07 +nominatives nominatif ADJ f p 0.09 0.47 0.01 0.14 +nominaux nominal ADJ m p 0.39 0.34 0.17 0.00 +nomine nominer VER 1.42 0.34 0.25 0.34 ind:pre:1s;ind:pre:3s; +nominer nominer VER 1.42 0.34 0.04 0.00 inf; +nominé nominer VER m s 1.42 0.34 0.56 0.00 par:pas; +nominée nominer VER f s 1.42 0.34 0.21 0.00 par:pas; +nominées nominer VER f p 1.42 0.34 0.08 0.00 par:pas; +nominés nominer VER m p 1.42 0.34 0.27 0.00 par:pas; +nomma nommer VER 45.60 62.30 0.30 1.82 ind:pas:3s; +nommai nommer VER 45.60 62.30 0.00 0.68 ind:pas:1s; +nommaient nommer VER 45.60 62.30 0.02 1.22 ind:imp:3p; +nommais nommer VER 45.60 62.30 0.02 0.27 ind:imp:1s; +nommait nommer VER 45.60 62.30 0.51 6.82 ind:imp:3s; +nommant nommer VER 45.60 62.30 0.57 0.95 par:pre; +nomme nommer VER 45.60 62.30 9.41 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +nomment nommer VER 45.60 62.30 0.69 1.22 ind:pre:3p; +nommer nommer VER 45.60 62.30 7.41 10.47 inf; +nommera nommer VER 45.60 62.30 0.64 0.27 ind:fut:3s; +nommerai nommer VER 45.60 62.30 1.10 0.27 ind:fut:1s; +nommerais nommer VER 45.60 62.30 0.21 0.00 cnd:pre:1s;cnd:pre:2s; +nommerait nommer VER 45.60 62.30 0.04 0.14 cnd:pre:3s; +nommeras nommer VER 45.60 62.30 0.02 0.00 ind:fut:2s; +nommeriez nommer VER 45.60 62.30 0.02 0.00 cnd:pre:2p; +nommerons nommer VER 45.60 62.30 0.05 0.00 ind:fut:1p; +nommeront nommer VER 45.60 62.30 0.05 0.07 ind:fut:3p; +nommes nommer VER 45.60 62.30 0.61 0.07 ind:pre:2s;sub:pre:2s; +nommez nommer VER 45.60 62.30 1.14 0.61 imp:pre:2p;ind:pre:2p; +nommiez nommer VER 45.60 62.30 0.17 0.00 ind:imp:2p; +nommions nommer VER 45.60 62.30 0.01 0.27 ind:imp:1p; +nommons nommer VER 45.60 62.30 0.34 0.34 imp:pre:1p;ind:pre:1p; +nommât nommer VER 45.60 62.30 0.00 0.14 sub:imp:3s; +nommèrent nommer VER 45.60 62.30 0.15 0.14 ind:pas:3p; +nommé nommer VER m s 45.60 62.30 18.24 20.41 par:pas; +nommée nommer VER f s 45.60 62.30 3.01 3.51 par:pas; +nommées nommer VER f p 45.60 62.30 0.20 0.81 par:pas; +nommément nommément ADV 0.10 0.47 0.10 0.47 +nommés nommer VER m p 45.60 62.30 0.68 2.30 par:pas; +noms nom NOM m p 570.67 395.00 42.50 68.11 +non_agression non_agression NOM f s 0.07 0.61 0.07 0.61 +non_alignement non_alignement NOM m s 0.04 0.00 0.04 0.00 +non_aligné non_aligné ADJ m p 0.09 0.00 0.09 0.00 +non_amour non_amour NOM m s 0.10 0.00 0.10 0.00 +non_appartenance non_appartenance NOM f s 0.01 0.07 0.01 0.07 +non_assistance non_assistance NOM f s 0.10 0.07 0.10 0.07 +non_blanc non_blanc NOM m s 0.04 0.07 0.00 0.07 +non_blanc non_blanc NOM m p 0.04 0.07 0.04 0.00 +non_combattant non_combattant ADJ m s 0.15 0.00 0.01 0.00 +non_combattant non_combattant NOM m s 0.03 0.00 0.01 0.00 +non_combattant non_combattant ADJ m p 0.15 0.00 0.14 0.00 +non_comparution non_comparution NOM f s 0.01 0.00 0.01 0.00 +non_concurrence non_concurrence NOM f s 0.01 0.00 0.01 0.00 +non_conformisme non_conformisme NOM m s 0.00 0.20 0.00 0.20 +non_conformiste non_conformiste ADJ s 0.14 0.00 0.10 0.00 +non_conformiste non_conformiste ADJ p 0.14 0.00 0.04 0.00 +non_conformité non_conformité NOM f s 0.01 0.00 0.01 0.00 +non_consommation non_consommation NOM f s 0.03 0.00 0.03 0.00 +non_croyance non_croyance NOM f s 0.10 0.00 0.10 0.00 +non_croyant non_croyant NOM m s 0.62 0.07 0.21 0.07 +non_croyant non_croyant NOM m p 0.62 0.07 0.41 0.00 +non_culpabilité non_culpabilité NOM f s 0.01 0.00 0.01 0.00 +non_dit non_dit NOM m s 0.27 0.88 0.09 0.74 +non_dit non_dit NOM m p 0.27 0.88 0.18 0.14 +non_droit non_droit NOM m s 0.22 0.00 0.22 0.00 +non_existence non_existence NOM f s 0.07 0.07 0.07 0.07 +non_ferreux non_ferreux NOM m 0.01 0.00 0.01 0.00 +non_fumeur non_fumeur ADJ m s 0.68 0.00 0.68 0.00 +non_fumeurs non_fumeurs ADJ 0.44 0.07 0.44 0.07 +non_initié non_initié NOM m s 0.22 0.34 0.03 0.14 +non_initié non_initié NOM m p 0.22 0.34 0.19 0.20 +non_intervention non_intervention NOM f s 0.21 0.14 0.21 0.14 +non_lieu non_lieu NOM m s 1.08 1.42 1.08 1.42 +non_lieux non_lieux NOM m p 0.01 0.20 0.01 0.20 +non_malade non_malade NOM p 0.00 0.07 0.00 0.07 +non_paiement non_paiement NOM m s 0.10 0.07 0.10 0.07 +non_participation non_participation NOM f s 0.01 0.07 0.01 0.07 +non_pesanteur non_pesanteur NOM f s 0.00 0.07 0.00 0.07 +non_prolifération non_prolifération NOM f s 0.09 0.00 0.09 0.00 +non_présence non_présence NOM f s 0.01 0.14 0.01 0.14 +non_recevoir non_recevoir NOM m s 0.06 0.20 0.06 0.20 +non_représentation non_représentation NOM f s 0.01 0.00 0.01 0.00 +non_respect non_respect NOM m s 0.16 0.00 0.16 0.00 +non_retour non_retour NOM m s 0.34 0.41 0.34 0.41 +non_résistance non_résistance NOM f s 0.00 0.14 0.00 0.14 +non_savoir non_savoir NOM m s 0.04 0.07 0.04 0.07 +non_sens non_sens NOM m 0.83 0.95 0.83 0.95 +non_spécialiste non_spécialiste NOM s 0.02 0.07 0.01 0.00 +non_spécialiste non_spécialiste NOM p 0.02 0.07 0.01 0.07 +non_stop non_stop ADJ 0.89 0.14 0.89 0.14 +non_séparation non_séparation NOM f s 0.00 0.07 0.00 0.07 +non_utilisation non_utilisation NOM f s 0.01 0.00 0.01 0.00 +non_être non_être NOM m 0.00 0.95 0.00 0.95 +non_événement non_événement NOM m s 0.02 0.00 0.02 0.00 +non_vie non_vie NOM f s 0.04 0.00 0.04 0.00 +non_violence non_violence NOM f s 0.63 0.07 0.63 0.07 +non_violent non_violent ADJ m s 0.31 0.07 0.19 0.07 +non_violent non_violent ADJ f s 0.31 0.07 0.07 0.00 +non_violent non_violent ADJ m p 0.31 0.07 0.05 0.00 +non_vouloir non_vouloir NOM m s 0.00 0.07 0.00 0.07 +non_voyant non_voyant NOM m s 0.32 0.27 0.28 0.20 +non_voyant non_voyant NOM f s 0.32 0.27 0.02 0.00 +non_voyant non_voyant NOM m p 0.32 0.27 0.03 0.07 +non_troppo non_troppo ADV 0.00 0.07 0.00 0.07 +non non PRO:per s 0.01 0.00 0.01 0.00 +nonagénaire nonagénaire ADJ s 0.01 0.54 0.01 0.41 +nonagénaires nonagénaire NOM p 0.03 0.14 0.01 0.00 +nonante_huit nonante_huit ADJ:num 0.00 0.07 0.00 0.07 +nonante nonante ADJ:num 0.27 0.27 0.27 0.27 +nonce nonce NOM m s 0.01 0.68 0.01 0.68 +nonchalamment nonchalamment ADV 0.04 2.70 0.04 2.70 +nonchalance nonchalance NOM f s 0.47 5.00 0.47 5.00 +nonchalant nonchalant ADJ m s 0.60 7.64 0.21 3.31 +nonchalante nonchalant ADJ f s 0.60 7.64 0.27 2.77 +nonchalantes nonchalant ADJ f p 0.60 7.64 0.11 0.68 +nonchalants nonchalant ADJ m p 0.60 7.64 0.01 0.88 +nonciature nonciature NOM f s 0.14 0.14 0.14 0.14 +none none NOM f s 0.67 0.41 0.48 0.07 +nones none NOM f p 0.67 0.41 0.19 0.34 +nonette nonette NOM s 0.00 0.27 0.00 0.20 +nonettes nonette NOM p 0.00 0.27 0.00 0.07 +nonidi nonidi NOM m s 0.00 0.07 0.00 0.07 +nonnain nonnain NOM m s 0.00 0.61 0.00 0.61 +nonne nonne NOM f s 8.46 3.72 5.46 1.69 +nonnes nonne NOM f p 8.46 3.72 3.01 2.03 +nonnette nonnette NOM f s 0.14 0.41 0.04 0.34 +nonnettes nonnette NOM f p 0.14 0.41 0.10 0.07 +nonobstant nonobstant PRE 0.16 2.97 0.16 2.97 +nonpareille nonpareil ADJ f s 0.01 0.14 0.01 0.14 +nonsense nonsense NOM m s 0.04 0.07 0.04 0.07 +nope nope NOM f s 0.50 0.00 0.50 0.00 +noradrénaline noradrénaline NOM f s 0.05 0.00 0.05 0.00 +nord_africain nord_africain ADJ m s 0.05 1.96 0.02 0.20 +nord_africain nord_africain ADJ f s 0.05 1.96 0.01 0.95 +nord_africain nord_africain ADJ f p 0.05 1.96 0.01 0.07 +nord_africain nord_africain ADJ m p 0.05 1.96 0.01 0.74 +nord_américain nord_américain ADJ m s 0.32 0.20 0.24 0.07 +nord_américain nord_américain ADJ f s 0.32 0.20 0.06 0.14 +nord_américain nord_américain NOM m p 0.13 0.00 0.03 0.00 +nord_coréen nord_coréen ADJ m s 0.36 0.00 0.24 0.00 +nord_coréen nord_coréen ADJ f s 0.36 0.00 0.06 0.00 +nord_coréen nord_coréen ADJ f p 0.36 0.00 0.02 0.00 +nord_coréen nord_coréen NOM m p 0.23 0.07 0.18 0.07 +nord_est nord_est NOM m 1.40 2.84 1.40 2.84 +nord_nord_est nord_nord_est NOM m s 0.03 0.14 0.03 0.14 +nord_ouest nord_ouest NOM m 0.95 1.22 0.95 1.22 +nord_sud nord_sud ADJ 0.15 0.88 0.15 0.88 +nord_vietnamien nord_vietnamien ADJ m s 0.11 0.00 0.04 0.00 +nord_vietnamien nord_vietnamien ADJ f s 0.11 0.00 0.04 0.00 +nord_vietnamien nord_vietnamien NOM m p 0.12 0.00 0.11 0.00 +nord nord NOM m 50.38 72.30 50.38 72.30 +nordet nordet NOM m s 0.00 0.07 0.00 0.07 +nordicité nordicité NOM f s 0.01 0.00 0.01 0.00 +nordique nordique ADJ s 1.43 1.69 1.15 1.22 +nordiques nordique NOM p 0.71 0.47 0.31 0.07 +nordiste nordiste ADJ s 0.47 0.14 0.22 0.14 +nordistes nordiste NOM p 0.78 0.07 0.66 0.07 +noria noria NOM f s 0.01 0.61 0.01 0.54 +norias noria NOM f p 0.01 0.61 0.00 0.07 +normal normal ADJ m s 127.15 62.77 90.98 42.97 +normale normal ADJ f s 127.15 62.77 23.74 13.45 +normalement normalement ADV 20.37 12.43 20.37 12.43 +normales normal ADJ f p 127.15 62.77 4.08 2.30 +normalien normalien NOM m s 0.00 2.23 0.00 1.35 +normalienne normalien ADJ f s 0.00 0.34 0.00 0.14 +normaliennes normalien NOM f p 0.00 2.23 0.00 0.07 +normaliens normalien NOM m p 0.00 2.23 0.00 0.81 +normalisation normalisation NOM f s 0.13 0.41 0.13 0.41 +normalise normaliser VER 0.20 0.54 0.04 0.07 ind:pre:3s; +normalisent normaliser VER 0.20 0.54 0.00 0.07 ind:pre:3p; +normaliser normaliser VER 0.20 0.54 0.12 0.27 inf; +normalisons normaliser VER 0.20 0.54 0.00 0.07 ind:pre:1p; +normalisée normaliser VER f s 0.20 0.54 0.03 0.00 par:pas; +normalisées normaliser VER f p 0.20 0.54 0.00 0.07 par:pas; +normalisés normaliser VER m p 0.20 0.54 0.01 0.00 par:pas; +normalité normalité NOM f s 1.27 0.74 1.27 0.74 +normand normand ADJ m s 0.79 6.42 0.45 2.03 +normande normand ADJ f s 0.79 6.42 0.27 2.97 +normandes normand ADJ f p 0.79 6.42 0.03 0.74 +normands normand ADJ m p 0.79 6.42 0.05 0.68 +normatif normatif ADJ m s 0.01 0.27 0.01 0.14 +normative normatif ADJ f s 0.01 0.27 0.00 0.14 +normaux normal ADJ m p 127.15 62.77 8.35 4.05 +norme norme NOM f s 5.00 3.78 1.58 1.15 +normes norme NOM f p 5.00 3.78 3.42 2.64 +noroît noroît NOM m s 0.00 0.34 0.00 0.34 +norroise norrois ADJ f s 0.01 0.00 0.01 0.00 +norvégien norvégien ADJ m s 2.96 1.15 1.16 0.54 +norvégienne norvégien ADJ f s 2.96 1.15 1.00 0.14 +norvégiennes norvégien ADJ f p 2.96 1.15 0.47 0.14 +norvégiens norvégien ADJ m p 2.96 1.15 0.34 0.34 +nos nos ADJ:pos p 524.63 579.19 524.63 579.19 +nosocomiale nosocomial ADJ f s 0.01 0.00 0.01 0.00 +nostalgie nostalgie NOM f s 4.45 20.07 4.44 18.04 +nostalgies nostalgie NOM f p 4.45 20.07 0.01 2.03 +nostalgique nostalgique ADJ s 1.31 5.27 1.11 3.78 +nostalgiquement nostalgiquement ADV 0.00 0.20 0.00 0.20 +nostalgiques nostalgique ADJ p 1.31 5.27 0.20 1.49 +not not NOM 0.56 0.07 0.56 0.07 +nota_bene nota_bene ADV 0.01 0.07 0.01 0.07 +nota noter VER 31.24 44.53 0.02 4.12 ind:pas:3s; +notabilité notabilité NOM f s 0.00 0.74 0.00 0.07 +notabilités notabilité NOM f p 0.00 0.74 0.00 0.68 +notable notable ADJ s 0.69 5.00 0.49 3.65 +notablement notablement ADV 0.04 0.74 0.04 0.74 +notables notable NOM p 0.63 6.55 0.52 5.20 +notai noter VER 31.24 44.53 0.14 1.62 ind:pas:1s; +notaient noter VER 31.24 44.53 0.03 0.27 ind:imp:3p; +notaire notaire NOM m s 4.69 17.23 4.63 14.86 +notaires notaire NOM m p 4.69 17.23 0.06 2.36 +notais noter VER 31.24 44.53 0.31 1.01 ind:imp:1s; +notait noter VER 31.24 44.53 0.32 2.70 ind:imp:3s; +notamment notamment ADV 2.20 20.20 2.20 20.20 +notant noter VER 31.24 44.53 0.16 1.01 par:pre; +notarial notarial ADJ m s 0.03 0.20 0.01 0.14 +notariale notarial ADJ f s 0.03 0.20 0.01 0.00 +notariat notariat NOM m s 0.00 0.20 0.00 0.20 +notariaux notarial ADJ m p 0.03 0.20 0.00 0.07 +notarié notarier VER m s 0.09 0.20 0.05 0.07 par:pas; +notariée notarié ADJ f s 0.07 0.07 0.01 0.00 +notariées notarier VER f p 0.09 0.20 0.01 0.07 par:pas; +notariés notarier VER m p 0.09 0.20 0.03 0.07 par:pas; +notation notation NOM f s 0.21 1.08 0.19 0.54 +notations notation NOM f p 0.21 1.08 0.03 0.54 +note note NOM f s 62.82 77.43 33.42 39.32 +notent noter VER 31.24 44.53 0.28 0.14 ind:pre:3p; +noter noter VER 31.24 44.53 5.44 8.78 inf; +notera noter VER 31.24 44.53 0.03 0.47 ind:fut:3s; +noterai noter VER 31.24 44.53 0.51 0.20 ind:fut:1s; +noterais noter VER 31.24 44.53 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +noterait noter VER 31.24 44.53 0.04 0.27 cnd:pre:3s; +noteras noter VER 31.24 44.53 0.03 0.07 ind:fut:2s; +noterez noter VER 31.24 44.53 0.19 0.34 ind:fut:2p; +noterons noter VER 31.24 44.53 0.01 0.07 ind:fut:1p; +noteront noter VER 31.24 44.53 0.04 0.00 ind:fut:3p; +notes note NOM f p 62.82 77.43 29.40 38.11 +notez noter VER 31.24 44.53 5.74 5.14 imp:pre:2p;ind:pre:2p; +notice notice NOM f s 1.23 2.57 0.92 1.96 +notices notice NOM f p 1.23 2.57 0.31 0.61 +notiez noter VER 31.24 44.53 0.35 0.00 ind:imp:2p; +notifia notifier VER 0.75 3.18 0.00 0.47 ind:pas:3s; +notifiai notifier VER 0.75 3.18 0.00 0.20 ind:pas:1s; +notifiaient notifier VER 0.75 3.18 0.00 0.07 ind:imp:3p; +notifiait notifier VER 0.75 3.18 0.00 0.20 ind:imp:3s; +notifiant notifier VER 0.75 3.18 0.00 0.20 par:pre; +notification notification NOM f s 0.37 0.54 0.37 0.54 +notifier notifier VER 0.75 3.18 0.27 0.74 inf; +notifiez notifier VER 0.75 3.18 0.01 0.00 imp:pre:2p; +notifions notifier VER 0.75 3.18 0.02 0.07 ind:pre:1p; +notifié notifier VER m s 0.75 3.18 0.42 0.88 par:pas; +notifiée notifier VER f s 0.75 3.18 0.02 0.27 par:pas; +notifiées notifié ADJ f p 0.00 0.20 0.00 0.14 +notion notion NOM f s 5.79 14.05 4.99 10.61 +notions notion NOM f p 5.79 14.05 0.81 3.45 +notoire notoire ADJ s 1.81 5.81 1.55 4.39 +notoirement notoirement ADV 0.17 0.61 0.17 0.61 +notoires notoire ADJ p 1.81 5.81 0.26 1.42 +notonecte notonecte NOM s 0.00 0.14 0.00 0.07 +notonectes notonecte NOM p 0.00 0.14 0.00 0.07 +notons noter VER 31.24 44.53 0.18 0.20 imp:pre:1p;ind:pre:1p; +notoriété notoriété NOM f s 0.65 2.84 0.65 2.77 +notoriétés notoriété NOM f p 0.65 2.84 0.00 0.07 +notre_dame notre_dame NOM f 2.69 8.58 2.69 8.58 +notre notre ADJ:pos s 1022.94 680.68 1022.94 680.68 +notèrent noter VER 31.24 44.53 0.01 0.07 ind:pas:3p; +noté noter VER m s 31.24 44.53 11.04 8.11 par:pas; +notée noter VER f s 31.24 44.53 0.33 0.27 par:pas; +notées noté ADJ f p 1.40 0.68 0.16 0.00 +notules notule NOM f p 0.00 0.20 0.00 0.20 +notés noter VER m p 31.24 44.53 0.56 0.47 par:pas; +noua nouer VER 3.61 32.50 0.01 3.04 ind:pas:3s; +nouage nouage NOM m s 0.01 0.00 0.01 0.00 +nouai nouer VER 3.61 32.50 0.00 0.20 ind:pas:1s; +nouaient nouer VER 3.61 32.50 0.02 1.49 ind:imp:3p; +nouais nouer VER 3.61 32.50 0.00 0.27 ind:imp:1s; +nouait nouer VER 3.61 32.50 0.03 3.85 ind:imp:3s; +nouant nouer VER 3.61 32.50 0.01 1.01 par:pre; +nouas nouer VER 3.61 32.50 0.01 0.00 ind:pas:2s; +nouba nouba NOM f s 0.98 0.88 0.95 0.74 +noubas nouba NOM f p 0.98 0.88 0.04 0.14 +noue nouer VER 3.61 32.50 0.52 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +nouent nouer VER 3.61 32.50 0.16 1.69 ind:pre:3p; +nouer nouer VER 3.61 32.50 1.67 6.01 inf; +nouera nouer VER 3.61 32.50 0.01 0.07 ind:fut:3s; +nouerais nouer VER 3.61 32.50 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +nouerait nouer VER 3.61 32.50 0.00 0.07 cnd:pre:3s; +nouerez nouer VER 3.61 32.50 0.00 0.07 ind:fut:2p; +noueront nouer VER 3.61 32.50 0.00 0.07 ind:fut:3p; +noueuse noueux ADJ f s 0.22 5.14 0.00 0.74 +noueuses noueux ADJ f p 0.22 5.14 0.00 1.62 +noueux noueux ADJ m 0.22 5.14 0.22 2.77 +nouez nouer VER 3.61 32.50 0.18 0.00 imp:pre:2p;ind:pre:2p; +nougat nougat NOM m s 0.94 2.16 0.89 1.49 +nougatine nougatine NOM f s 0.04 0.47 0.03 0.41 +nougatines nougatine NOM f p 0.04 0.47 0.01 0.07 +nougats nougat NOM m p 0.94 2.16 0.05 0.68 +nouille nouille NOM f s 4.37 4.26 1.02 0.47 +nouilles nouille NOM f p 4.37 4.26 3.35 3.78 +noël noël NOM m s 2.98 6.69 2.14 5.95 +noëls noël NOM m p 2.98 6.69 0.84 0.74 +noumène noumène NOM m s 0.00 0.07 0.00 0.07 +nounou nounou NOM f s 4.40 5.00 3.87 4.86 +nounours nounours NOM m 3.71 2.03 3.71 2.03 +nounous nounou NOM f p 4.40 5.00 0.53 0.14 +nourrît nourrir VER 52.53 64.53 0.00 0.07 sub:imp:3s; +nourri nourrir VER m s 52.53 64.53 6.13 7.43 par:pas; +nourrice nourrice NOM f s 6.17 8.38 5.88 7.36 +nourrices nourrice NOM f p 6.17 8.38 0.29 1.01 +nourricier nourricier ADJ m s 0.34 2.91 0.15 1.01 +nourriciers nourricier ADJ m p 0.34 2.91 0.01 0.61 +nourricière nourricier ADJ f s 0.34 2.91 0.16 1.15 +nourricières nourricier ADJ f p 0.34 2.91 0.02 0.14 +nourrie nourrir VER f s 52.53 64.53 0.91 2.97 par:pas; +nourries nourrir VER f p 52.53 64.53 0.11 0.95 par:pas; +nourrir nourrir VER 52.53 64.53 22.08 24.05 inf;; +nourrira nourrir VER 52.53 64.53 0.52 0.47 ind:fut:3s; +nourrirai nourrir VER 52.53 64.53 0.36 0.20 ind:fut:1s; +nourriraient nourrir VER 52.53 64.53 0.01 0.20 cnd:pre:3p; +nourrirais nourrir VER 52.53 64.53 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +nourrirait nourrir VER 52.53 64.53 0.35 0.41 cnd:pre:3s; +nourriras nourrir VER 52.53 64.53 0.03 0.00 ind:fut:2s; +nourrirent nourrir VER 52.53 64.53 0.00 0.14 ind:pas:3p; +nourrirez nourrir VER 52.53 64.53 0.06 0.00 ind:fut:2p; +nourririons nourrir VER 52.53 64.53 0.01 0.00 cnd:pre:1p; +nourrirons nourrir VER 52.53 64.53 0.07 0.07 ind:fut:1p; +nourriront nourrir VER 52.53 64.53 0.18 0.20 ind:fut:3p; +nourris nourrir VER m p 52.53 64.53 6.36 3.51 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +nourrissage nourrissage NOM m s 0.02 0.14 0.02 0.14 +nourrissaient nourrir VER 52.53 64.53 0.26 1.82 ind:imp:3p; +nourrissais nourrir VER 52.53 64.53 0.54 0.95 ind:imp:1s;ind:imp:2s; +nourrissait nourrir VER 52.53 64.53 1.00 7.91 ind:imp:3s; +nourrissant nourrissant ADJ m s 1.01 1.49 0.68 0.81 +nourrissante nourrissant ADJ f s 1.01 1.49 0.28 0.47 +nourrissantes nourrissant ADJ f p 1.01 1.49 0.00 0.07 +nourrissants nourrissant ADJ m p 1.01 1.49 0.05 0.14 +nourrisse nourrir VER 52.53 64.53 0.52 0.74 sub:pre:1s;sub:pre:3s; +nourrissent nourrir VER 52.53 64.53 2.46 3.31 ind:pre:3p;sub:imp:3p; +nourrisses nourrir VER 52.53 64.53 0.06 0.14 sub:pre:2s; +nourrisseur nourrisseur NOM m s 0.00 0.14 0.00 0.14 +nourrissez nourrir VER 52.53 64.53 0.91 0.27 imp:pre:2p;ind:pre:2p; +nourrissiez nourrir VER 52.53 64.53 0.03 0.07 ind:imp:2p; +nourrissions nourrir VER 52.53 64.53 0.02 0.20 ind:imp:1p; +nourrisson nourrisson NOM m s 1.62 4.53 1.13 3.04 +nourrissons nourrisson NOM m p 1.62 4.53 0.49 1.49 +nourrit nourrir VER 52.53 64.53 8.78 6.55 ind:pre:3s;ind:pas:3s; +nourriture nourriture NOM f s 44.86 31.01 44.59 25.74 +nourritures nourriture NOM f p 44.86 31.01 0.27 5.27 +nous_même nous_même PRO:per p 1.12 0.61 1.12 0.61 +nous_mêmes nous_mêmes PRO:per p 11.11 16.28 11.11 16.28 +nous nous PRO:per p 4772.12 3867.84 4772.12 3867.84 +nouèrent nouer VER 3.61 32.50 0.00 0.34 ind:pas:3p; +noué nouer VER m s 3.61 32.50 0.47 5.81 par:pas; +nouée noué ADJ f s 1.01 6.62 0.45 3.24 +nouées nouer VER f p 3.61 32.50 0.17 1.62 par:pas; +noués nouer VER m p 3.61 32.50 0.21 3.04 par:pas; +nouveau_né nouveau_né NOM m s 2.72 4.80 2.27 3.18 +nouveau_né nouveau_né NOM m p 2.72 4.80 0.14 1.49 +nouveau nouveau ADJ m s 400.60 358.11 170.28 138.31 +nouveauté nouveauté NOM f s 4.23 8.72 3.23 6.55 +nouveautés nouveauté NOM f p 4.23 8.72 1.00 2.16 +nouveau_né nouveau_né NOM m p 2.72 4.80 0.30 0.14 +nouveaux nouveau ADJ m p 400.60 358.11 39.17 47.30 +nouvel nouvel ADJ m s 30.59 22.23 30.59 22.23 +nouvelle nouveau ADJ f s 400.60 358.11 152.78 130.81 +nouvellement nouvellement ADV 0.27 1.62 0.27 1.62 +nouvelles nouveau NOM f p 229.97 285.88 82.08 59.46 +nouvelleté nouvelleté NOM f s 0.00 0.07 0.00 0.07 +nouvelliste nouvelliste NOM s 0.01 0.00 0.01 0.00 +nova nova NOM f s 4.14 0.07 4.14 0.07 +novateur novateur ADJ m s 0.38 0.68 0.27 0.20 +novateurs novateur NOM m p 0.30 0.27 0.27 0.00 +novation novation NOM f s 0.14 0.00 0.14 0.00 +novatrice novateur ADJ f s 0.38 0.68 0.05 0.27 +novatrices novateur ADJ f p 0.38 0.68 0.02 0.07 +nove nover VER 0.02 0.07 0.00 0.07 imp:pre:2s; +novelettes novelette NOM f p 0.01 0.00 0.01 0.00 +novembre novembre NOM m 8.79 33.04 8.79 33.04 +novice novice NOM s 2.01 2.91 1.05 1.35 +novices novice NOM p 2.01 2.91 0.96 1.55 +noviciat noviciat NOM m s 0.04 0.61 0.04 0.61 +novilleros novillero NOM m p 0.00 0.07 0.00 0.07 +novillo novillo NOM m s 0.00 0.14 0.00 0.14 +novocaïne novocaïne NOM f s 0.13 0.27 0.13 0.27 +novotique novotique NOM f s 0.01 0.00 0.01 0.00 +novélisation novélisation NOM f s 0.03 0.00 0.03 0.00 +noya noyer VER 27.29 38.58 0.33 0.74 ind:pas:3s; +noyade noyade NOM f s 1.96 2.43 1.85 2.03 +noyades noyade NOM f p 1.96 2.43 0.12 0.41 +noyaient noyer VER 27.29 38.58 0.06 1.15 ind:imp:3p; +noyais noyer VER 27.29 38.58 0.30 0.20 ind:imp:1s;ind:imp:2s; +noyait noyer VER 27.29 38.58 0.38 3.24 ind:imp:3s; +noyant noyer VER 27.29 38.58 0.18 1.55 par:pre; +noyau noyau NOM m s 4.15 9.66 3.71 7.36 +noyauta noyauter VER 0.01 0.88 0.00 0.07 ind:pas:3s; +noyautage noyautage NOM m s 0.01 0.20 0.01 0.20 +noyautant noyauter VER 0.01 0.88 0.00 0.07 par:pre; +noyautent noyauter VER 0.01 0.88 0.00 0.07 ind:pre:3p; +noyauter noyauter VER 0.01 0.88 0.00 0.47 inf; +noyauté noyauter VER m s 0.01 0.88 0.00 0.07 par:pas; +noyautée noyauter VER f s 0.01 0.88 0.01 0.07 par:pas; +noyautées noyauter VER f p 0.01 0.88 0.00 0.07 par:pas; +noyaux noyau NOM m p 4.15 9.66 0.45 2.30 +noyer noyer VER 27.29 38.58 9.00 11.49 inf; +noyers noyer NOM m p 0.55 2.50 0.03 0.88 +noyez noyer VER 27.29 38.58 0.39 0.14 imp:pre:2p;ind:pre:2p; +noyions noyer VER 27.29 38.58 0.00 0.07 ind:imp:1p; +noyons noyer VER 27.29 38.58 0.13 0.14 imp:pre:1p;ind:pre:1p; +noyèrent noyer VER 27.29 38.58 0.00 0.27 ind:pas:3p; +noyé noyer VER m s 27.29 38.58 4.78 6.69 par:pas; +noyée noyer VER f s 27.29 38.58 3.35 3.11 par:pas; +noyées noyé ADJ f p 1.80 7.36 0.16 0.68 +noyés noyer VER m p 27.29 38.58 1.40 2.91 par:pas; +nèfles nèfle NOM f p 0.17 0.54 0.17 0.54 +nègre nègre NOM m s 18.93 27.64 11.26 15.54 +nègres nègre NOM m p 18.93 27.64 6.12 7.03 +nèpe nèpe NOM f s 0.00 0.14 0.00 0.07 +nèpes nèpe NOM f p 0.00 0.14 0.00 0.07 +nu_propriétaire nu_propriétaire NOM s 0.00 0.07 0.00 0.07 +nu_tête nu_tête ADJ m s 0.02 1.35 0.02 1.35 +né naître VER m s 116.11 119.32 53.72 36.01 par:pas; +nu nu ADJ m s 49.87 168.04 17.39 53.85 +nuage nuage NOM m s 30.27 76.82 11.81 26.49 +nuages nuage NOM m p 30.27 76.82 18.47 50.34 +nuageuse nuageux ADJ f s 1.24 1.28 0.22 0.14 +nuageuses nuageux ADJ f p 1.24 1.28 0.29 0.20 +nuageux nuageux ADJ m 1.24 1.28 0.73 0.95 +nuance nuance NOM f s 1.98 20.81 1.09 10.88 +nuancer nuancer VER 0.05 2.64 0.01 0.54 inf; +nuances nuance NOM f p 1.98 20.81 0.89 9.93 +nuancier nuancier NOM m s 0.04 0.00 0.04 0.00 +nuancé nuancé ADJ m s 0.20 0.81 0.16 0.41 +nuancée nuancé ADJ f s 0.20 0.81 0.04 0.07 +nuancées nuancer VER f p 0.05 2.64 0.00 0.07 par:pas; +nuancés nuancé ADJ m p 0.20 0.81 0.01 0.27 +néandertalien néandertalien ADJ m s 0.01 0.00 0.01 0.00 +néandertaliens néandertalien NOM m p 0.02 0.00 0.02 0.00 +néanderthalien néanderthalien NOM m s 0.01 0.07 0.01 0.07 +néanmoins néanmoins CON 2.70 16.35 2.70 16.35 +néant néant NOM m s 6.62 23.99 6.62 23.92 +nuança nuancer VER 0.05 2.64 0.00 0.27 ind:pas:3s; +nuançaient nuancer VER 0.05 2.64 0.00 0.14 ind:imp:3p; +nuançait nuancer VER 0.05 2.64 0.00 0.34 ind:imp:3s; +nuançant nuancer VER 0.05 2.64 0.00 0.14 par:pre; +nuançât nuancer VER 0.05 2.64 0.00 0.07 sub:imp:3s; +néantisation néantisation NOM f s 0.00 0.07 0.00 0.07 +néantisée néantiser VER f s 0.00 0.07 0.00 0.07 par:pas; +néants néant NOM m p 6.62 23.99 0.00 0.07 +nuas nuer VER 0.63 1.96 0.00 0.07 ind:pas:2s; +nubien nubien NOM m s 0.13 0.07 0.10 0.00 +nubienne nubienne ADJ f s 0.04 0.00 0.04 0.00 +nubiens nubien NOM m p 0.13 0.07 0.03 0.07 +nubile nubile ADJ s 0.31 0.54 0.25 0.34 +nubiles nubile ADJ f p 0.31 0.54 0.06 0.20 +nubilité nubilité NOM f s 0.00 0.14 0.00 0.14 +nubuck nubuck NOM m s 0.16 0.00 0.16 0.00 +nébuleuse nébuleux NOM f s 0.71 1.22 0.71 0.61 +nébuleuses nébuleux ADJ f p 0.45 1.28 0.04 0.27 +nébuleux nébuleux ADJ m 0.45 1.28 0.38 0.68 +nébuliseur nébuliseur NOM m s 0.01 0.00 0.01 0.00 +nébulosité nébulosité NOM f s 0.10 0.14 0.10 0.14 +nucal nucal ADJ m s 0.01 0.00 0.01 0.00 +nécessaire nécessaire ADJ s 52.00 68.11 44.29 48.45 +nécessairement nécessairement ADV 3.31 7.64 3.31 7.64 +nécessaires nécessaire ADJ p 52.00 68.11 7.71 19.66 +nécessita nécessiter VER 4.16 4.12 0.01 0.20 ind:pas:3s; +nécessitaient nécessiter VER 4.16 4.12 0.01 0.14 ind:imp:3p; +nécessitait nécessiter VER 4.16 4.12 0.54 1.01 ind:imp:3s; +nécessitant nécessiter VER 4.16 4.12 0.28 0.07 par:pre; +nécessite nécessiter VER 4.16 4.12 2.42 1.08 imp:pre:2s;ind:pre:3s; +nécessitent nécessiter VER 4.16 4.12 0.40 0.34 ind:pre:3p; +nécessiter nécessiter VER 4.16 4.12 0.16 0.07 inf; +nécessitera nécessiter VER 4.16 4.12 0.07 0.00 ind:fut:3s; +nécessiterait nécessiter VER 4.16 4.12 0.11 0.14 cnd:pre:3s; +nécessiteuse nécessiteux ADJ f s 0.21 0.47 0.01 0.00 +nécessiteuses nécessiteux ADJ f p 0.21 0.47 0.04 0.07 +nécessiteux nécessiteux NOM m 0.76 0.54 0.76 0.54 +nécessité nécessité NOM f s 5.93 33.78 5.61 28.78 +nécessitée nécessiter VER f s 4.16 4.12 0.00 0.14 par:pas; +nécessitées nécessiter VER f p 4.16 4.12 0.00 0.07 par:pas; +nécessités nécessité NOM f p 5.93 33.78 0.32 5.00 +nucléaire nucléaire ADJ s 15.49 1.82 11.45 1.22 +nucléaires nucléaire ADJ p 15.49 1.82 4.04 0.61 +nucléique nucléique ADJ m s 0.02 0.00 0.02 0.00 +nucléoside nucléoside NOM m s 0.01 0.00 0.01 0.00 +nucléotides nucléotide NOM m p 0.09 0.00 0.09 0.00 +nucléée nucléé ADJ f s 0.01 0.00 0.01 0.00 +nucléus nucléus NOM m 0.10 0.00 0.10 0.00 +nécro nécro NOM f s 0.35 0.07 0.25 0.07 +nécrobioses nécrobiose NOM f p 0.00 0.07 0.00 0.07 +nécrologe nécrologe NOM m s 0.00 0.14 0.00 0.14 +nécrologie nécrologie NOM f s 1.11 0.47 1.03 0.47 +nécrologies nécrologie NOM f p 1.11 0.47 0.08 0.00 +nécrologique nécrologique ADJ s 0.53 0.47 0.41 0.34 +nécrologiques nécrologique ADJ p 0.53 0.47 0.12 0.14 +nécrologue nécrologue NOM s 0.03 0.07 0.03 0.07 +nécromancie nécromancie NOM f s 0.09 0.07 0.09 0.07 +nécromancien nécromancien NOM m s 0.20 0.27 0.19 0.00 +nécromancienne nécromancien NOM f s 0.20 0.27 0.01 0.07 +nécromanciens nécromancien NOM m p 0.20 0.27 0.00 0.20 +nécromant nécromant NOM m s 0.03 0.07 0.03 0.07 +nécrophage nécrophage ADJ s 0.03 0.07 0.03 0.07 +nécrophagie nécrophagie NOM f s 0.00 0.07 0.00 0.07 +nécrophile nécrophile ADJ m s 0.25 0.00 0.20 0.00 +nécrophiles nécrophile ADJ f p 0.25 0.00 0.05 0.00 +nécrophilie nécrophilie NOM f s 0.08 0.27 0.08 0.27 +nécropole nécropole NOM f s 0.20 1.28 0.20 1.01 +nécropoles nécropole NOM f p 0.20 1.28 0.00 0.27 +nécropsie nécropsie NOM f s 0.05 0.00 0.05 0.00 +nécros nécro NOM f p 0.35 0.07 0.11 0.00 +nécrosant nécroser VER 0.20 0.07 0.10 0.00 par:pre; +nécrose nécrose NOM f s 0.45 0.27 0.28 0.14 +nécroser nécroser VER 0.20 0.07 0.01 0.00 inf; +nécroses nécrose NOM f p 0.45 0.27 0.17 0.14 +nécrosé nécroser VER m s 0.20 0.07 0.07 0.07 par:pas; +nécrosée nécroser VER f s 0.20 0.07 0.01 0.00 par:pas; +nécrotique nécrotique ADJ m s 0.05 0.00 0.05 0.00 +nudisme nudisme NOM m s 0.25 0.07 0.25 0.07 +nudiste nudiste NOM s 2.24 0.47 0.81 0.07 +nudistes nudiste NOM p 2.24 0.47 1.43 0.41 +nudité nudité NOM f s 2.11 13.51 2.10 12.57 +nudités nudité NOM f p 2.11 13.51 0.01 0.95 +nue_propriété nue_propriété NOM f s 0.00 0.07 0.00 0.07 +née naître VER f s 116.11 119.32 23.63 22.36 par:pas; +nue nu ADJ f s 49.87 168.04 15.23 43.85 +nuer nuer VER 0.63 1.96 0.01 0.00 inf; +néerlandais néerlandais ADJ m 1.47 0.88 1.10 0.47 +néerlandaise néerlandais ADJ f s 1.47 0.88 0.37 0.14 +néerlandaises néerlandais ADJ f p 1.47 0.88 0.00 0.27 +nées naître VER f p 116.11 119.32 1.37 3.51 par:pas; +nues nu ADJ f 49.87 168.04 6.46 21.42 +néfaste néfaste ADJ s 1.65 4.39 1.27 2.70 +néfastes néfaste ADJ p 1.65 4.39 0.38 1.69 +néflier néflier NOM m s 0.00 0.27 0.00 0.20 +néfliers néflier NOM m p 0.00 0.27 0.00 0.07 +négateur négateur ADJ m s 0.00 0.14 0.00 0.14 +négatif négatif ADJ m s 16.02 8.31 8.33 3.31 +négatifs négatif ADJ m p 16.02 8.31 2.13 0.68 +négation négation NOM f s 1.83 3.65 1.78 3.38 +négationnisme négationnisme NOM m s 0.01 0.00 0.01 0.00 +négations négation NOM f p 1.83 3.65 0.04 0.27 +négative négatif ADJ f s 16.02 8.31 3.33 3.65 +négativement négativement ADV 0.12 1.08 0.12 1.08 +négatives négatif ADJ f p 16.02 8.31 2.23 0.68 +négativisme négativisme NOM m s 0.01 0.00 0.01 0.00 +négativiste négativiste NOM s 0.01 0.07 0.01 0.07 +négativité négativité NOM f s 0.20 0.07 0.20 0.07 +néglige négliger VER 9.42 19.86 1.46 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +négligea négliger VER 9.42 19.86 0.01 1.08 ind:pas:3s; +négligeable négligeable ADJ s 1.16 5.00 0.82 3.92 +négligeables négligeable ADJ p 1.16 5.00 0.34 1.08 +négligeai négliger VER 9.42 19.86 0.00 0.20 ind:pas:1s; +négligeaient négliger VER 9.42 19.86 0.00 0.27 ind:imp:3p; +négligeais négliger VER 9.42 19.86 0.30 0.20 ind:imp:1s;ind:imp:2s; +négligeait négliger VER 9.42 19.86 0.12 1.62 ind:imp:3s; +négligeant négliger VER 9.42 19.86 0.17 2.16 par:pre; +négligemment négligemment ADV 0.04 8.45 0.04 8.45 +négligence négligence NOM f s 3.01 5.00 2.96 4.12 +négligences négligence NOM f p 3.01 5.00 0.05 0.88 +négligent négligent ADJ m s 1.70 3.31 0.92 2.09 +négligente négligent ADJ f s 1.70 3.31 0.36 0.95 +négligents négligent ADJ m p 1.70 3.31 0.41 0.27 +négligeons négliger VER 9.42 19.86 0.30 0.00 imp:pre:1p;ind:pre:1p; +négligeât négliger VER 9.42 19.86 0.00 0.20 sub:imp:3s; +négliger négliger VER 9.42 19.86 1.62 4.73 inf; +négligera négliger VER 9.42 19.86 0.00 0.07 ind:fut:3s; +négligerai négliger VER 9.42 19.86 0.14 0.00 ind:fut:1s; +négligerait négliger VER 9.42 19.86 0.01 0.14 cnd:pre:3s; +négligeriez négliger VER 9.42 19.86 0.01 0.00 cnd:pre:2p; +négliges négliger VER 9.42 19.86 0.23 0.20 ind:pre:2s; +négligez négliger VER 9.42 19.86 1.34 0.07 imp:pre:2p;ind:pre:2p; +négligiez négliger VER 9.42 19.86 0.01 0.00 ind:imp:2p; +négligions négliger VER 9.42 19.86 0.00 0.20 ind:imp:1p; +négligèrent négliger VER 9.42 19.86 0.00 0.07 ind:pas:3p; +négligé négliger VER m s 9.42 19.86 2.71 4.46 par:pas; +négligée négligé ADJ f s 1.37 2.70 0.65 1.08 +négligées négligé ADJ f p 1.37 2.70 0.11 0.34 +négligés négligé ADJ m p 1.37 2.70 0.14 0.54 +négoce négoce NOM m s 0.20 2.09 0.10 2.03 +négoces négoce NOM m p 0.20 2.09 0.10 0.07 +négocia négocier VER 18.82 10.81 0.03 0.14 ind:pas:3s; +négociable négociable ADJ s 1.31 0.68 1.08 0.41 +négociables négociable ADJ p 1.31 0.68 0.23 0.27 +négociaient négocier VER 18.82 10.81 0.04 0.34 ind:imp:3p; +négociais négocier VER 18.82 10.81 0.08 0.20 ind:imp:1s; +négociait négocier VER 18.82 10.81 0.23 0.81 ind:imp:3s; +négociant négociant NOM m s 0.43 2.43 0.30 0.88 +négociante négociant NOM f s 0.43 2.43 0.04 0.00 +négociants négociant NOM m p 0.43 2.43 0.10 1.55 +négociateur négociateur NOM m s 1.37 1.22 0.94 0.61 +négociateurs négociateur NOM m p 1.37 1.22 0.38 0.61 +négociation négociation NOM f s 6.70 11.28 2.71 2.84 +négociations négociation NOM f p 6.70 11.28 3.99 8.45 +négociatrice négociateur NOM f s 1.37 1.22 0.05 0.00 +négociatrices négociatrice NOM f p 0.01 0.00 0.01 0.00 +négocie négocier VER 18.82 10.81 2.49 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +négocient négocier VER 18.82 10.81 0.40 0.14 ind:pre:3p; +négocier négocier VER 18.82 10.81 11.88 5.61 inf; +négociera négocier VER 18.82 10.81 0.24 0.00 ind:fut:3s; +négocierai négocier VER 18.82 10.81 0.19 0.14 ind:fut:1s; +négocieraient négocier VER 18.82 10.81 0.00 0.07 cnd:pre:3p; +négocierions négocier VER 18.82 10.81 0.02 0.00 cnd:pre:1p; +négocierons négocier VER 18.82 10.81 0.28 0.00 ind:fut:1p; +négocieront négocier VER 18.82 10.81 0.19 0.00 ind:fut:3p; +négociez négocier VER 18.82 10.81 0.34 0.07 imp:pre:2p;ind:pre:2p; +négocions négocier VER 18.82 10.81 0.45 0.00 imp:pre:1p;ind:pre:1p; +négocié négocier VER m s 18.82 10.81 1.76 1.22 par:pas; +négociée négocier VER f s 18.82 10.81 0.00 0.14 par:pas; +négociées négocier VER f p 18.82 10.81 0.01 0.00 par:pas; +négociés négocier VER m p 18.82 10.81 0.09 0.47 par:pas; +négresse nègre NOM f s 18.93 27.64 1.56 3.78 +négresses négresse NOM f p 0.15 0.00 0.15 0.00 +négrier négrier ADJ m s 0.13 0.34 0.12 0.34 +négriers négrier NOM m p 0.33 0.54 0.23 0.07 +négril négril NOM m s 0.00 0.07 0.00 0.07 +négrillon négrillon NOM m s 0.07 1.01 0.04 0.14 +négrillons négrillon NOM m p 0.07 1.01 0.04 0.88 +négrière négrier NOM f s 0.33 0.54 0.02 0.00 +négritude négritude NOM f s 0.44 0.41 0.44 0.41 +négro négro NOM m s 6.02 2.97 4.64 2.43 +négroïde négroïde ADJ s 0.09 1.28 0.07 0.74 +négroïdes négroïde ADJ p 0.09 1.28 0.02 0.54 +négrophile négrophile ADJ m s 0.04 0.00 0.02 0.00 +négrophiles négrophile ADJ f p 0.04 0.00 0.02 0.00 +négros négro NOM m p 6.02 2.97 1.38 0.54 +négus négus NOM m 0.10 1.55 0.10 1.55 +nui nuire VER m s 14.76 11.22 1.31 0.61 par:pas; +nuira nuire VER 14.76 11.22 0.59 0.14 ind:fut:3s; +nuirai nuire VER 14.76 11.22 0.01 0.00 ind:fut:1s; +nuirait nuire VER 14.76 11.22 0.27 0.34 cnd:pre:3s; +nuiras nuire VER 14.76 11.22 0.11 0.00 ind:fut:2s; +nuire nuire VER 14.76 11.22 5.98 4.46 inf; +nuiront nuire VER 14.76 11.22 0.03 0.00 ind:fut:3p; +nuis nuire VER 14.76 11.22 0.20 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +nuisît nuire VER 14.76 11.22 0.00 0.07 sub:imp:3s; +nuisaient nuire VER 14.76 11.22 0.10 0.07 ind:imp:3p; +nuisait nuire VER 14.76 11.22 0.05 0.61 ind:imp:3s; +nuisance nuisance NOM f s 0.67 0.27 0.38 0.14 +nuisances nuisance NOM f p 0.67 0.27 0.30 0.14 +nuisant nuire VER 14.76 11.22 0.03 0.07 par:pre; +nuise nuire VER 14.76 11.22 0.22 0.41 sub:pre:1s;sub:pre:3s; +nuisent nuire VER 14.76 11.22 0.54 0.27 ind:pre:3p; +nuisette nuisette NOM f s 0.33 0.07 0.33 0.07 +nuisez nuire VER 14.76 11.22 0.02 0.00 ind:pre:2p; +nuisible nuisible ADJ s 0.83 2.23 0.56 1.42 +nuisibles nuisible ADJ p 0.83 2.23 0.28 0.81 +nuit nuit NOM f s 586.54 738.24 557.56 672.36 +nuitamment nuitamment ADV 0.02 0.47 0.02 0.47 +nuitards nuitard NOM m p 0.01 0.00 0.01 0.00 +nuiteux nuiteux NOM m s 0.01 0.20 0.01 0.20 +nuits nuit NOM f p 586.54 738.24 28.98 65.88 +nuitée nuitée NOM f s 0.01 0.34 0.00 0.20 +nuitées nuitée NOM f p 0.01 0.34 0.01 0.14 +nul nul ADJ:ind m s 44.53 35.07 28.80 19.93 +nullard nullard NOM m s 0.51 0.20 0.20 0.07 +nullarde nullard ADJ f s 0.17 0.14 0.03 0.07 +nullardes nullard ADJ f p 0.17 0.14 0.00 0.07 +nullards nullard NOM m p 0.51 0.20 0.32 0.14 +nulle nulle ADJ:ind f s 37.84 32.70 37.84 32.70 +nullement nullement ADV 1.45 14.19 1.45 14.19 +nulles nulles ADJ:ind f p 0.41 0.34 0.41 0.34 +nullissime nullissime ADJ s 0.01 0.07 0.01 0.07 +nullité nullité NOM f s 1.20 2.77 0.96 2.16 +nullités nullité NOM f p 1.20 2.77 0.24 0.61 +nullos nullos ADJ s 0.18 0.00 0.18 0.00 +nuls nuls ADJ:ind m p 0.63 0.34 0.63 0.34 +nématodes nématode NOM m p 0.01 0.00 0.01 0.00 +numerus_clausus numerus_clausus NOM m 0.00 0.07 0.00 0.07 +numide numide NOM s 0.04 0.14 0.04 0.14 +numides numide ADJ p 0.00 0.34 0.00 0.27 +numismate numismate NOM s 0.01 0.47 0.01 0.34 +numismates numismate NOM p 0.01 0.47 0.00 0.14 +numismatique numismatique ADJ m s 0.01 0.14 0.01 0.14 +numéraire numéraire NOM m s 0.01 0.27 0.01 0.27 +numéral numéral ADJ m s 0.00 0.07 0.00 0.07 +numérateur numérateur NOM m s 0.02 0.00 0.02 0.00 +numération numération NOM f s 0.23 0.07 0.23 0.07 +numérique numérique ADJ s 3.34 0.41 2.41 0.27 +numériquement numériquement ADV 0.09 0.20 0.09 0.20 +numériques numérique ADJ p 3.34 0.41 0.93 0.14 +numérisation numérisation NOM f s 0.07 0.00 0.07 0.00 +numérise numériser VER 0.22 0.00 0.04 0.00 imp:pre:2s;ind:pre:3s; +numériser numériser VER 0.22 0.00 0.02 0.00 inf; +numérisez numériser VER 0.22 0.00 0.02 0.00 imp:pre:2p; +numérisé numériser VER m s 0.22 0.00 0.09 0.00 par:pas; +numérisée numériser VER f s 0.22 0.00 0.01 0.00 par:pas; +numérisées numériser VER f p 0.22 0.00 0.04 0.00 par:pas; +numéro numéro NOM m s 173.48 70.07 162.08 60.00 +numérologie numérologie NOM f s 0.14 0.00 0.14 0.00 +numérologue numérologue NOM s 0.05 0.00 0.05 0.00 +numéros numéro NOM m p 173.48 70.07 11.40 10.07 +numérota numéroter VER 0.50 1.89 0.00 0.07 ind:pas:3s; +numérotage numérotage NOM m s 0.00 0.14 0.00 0.14 +numérotaient numéroter VER 0.50 1.89 0.00 0.07 ind:imp:3p; +numérotait numéroter VER 0.50 1.89 0.01 0.20 ind:imp:3s; +numérotation numérotation NOM f s 0.12 0.07 0.12 0.07 +numérote numéroter VER 0.50 1.89 0.11 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +numérotent numéroter VER 0.50 1.89 0.01 0.07 ind:pre:3p; +numéroter numéroter VER 0.50 1.89 0.04 0.27 inf; +numérotez numéroter VER 0.50 1.89 0.03 0.07 imp:pre:2p; +numéroté numéroter VER m s 0.50 1.89 0.20 0.14 par:pas; +numérotée numéroté ADJ f s 0.53 1.62 0.11 0.07 +numérotées numéroté ADJ f p 0.53 1.62 0.15 0.68 +numérotés numéroté ADJ m p 0.53 1.62 0.08 0.54 +nunchaku nunchaku NOM m s 0.24 0.00 0.05 0.00 +nunchakus nunchaku NOM m p 0.24 0.00 0.19 0.00 +nuncupatifs nuncupatif ADJ m p 0.00 0.07 0.00 0.07 +nénesse nénesse NOM m s 0.00 0.27 0.00 0.14 +nénesses nénesse NOM m p 0.00 0.27 0.00 0.14 +nénette nénette NOM f s 0.85 3.72 0.69 2.77 +nénettes nénette NOM f p 0.85 3.72 0.16 0.95 +néné néné NOM m s 5.41 3.04 3.76 2.03 +nunuche nunuche ADJ s 0.51 0.00 0.35 0.00 +nunuches nunuche ADJ p 0.51 0.00 0.16 0.00 +nénuphar nénuphar NOM m s 0.50 2.91 0.25 0.47 +nénuphars nénuphar NOM m p 0.50 2.91 0.24 2.43 +nénés néné NOM m p 5.41 3.04 1.65 1.01 +néo_barbare néo_barbare ADJ f p 0.00 0.07 0.00 0.07 +néo_classique néo_classique ADJ s 0.12 0.34 0.12 0.34 +néo_colonialisme néo_colonialisme NOM m s 0.00 0.20 0.00 0.20 +néo_communiste néo_communiste ADJ f s 0.01 0.00 0.01 0.00 +néo_fascisme néo_fascisme NOM m s 0.01 0.07 0.01 0.07 +néo_fasciste néo_fasciste ADJ p 0.01 0.00 0.01 0.00 +néo_fasciste néo_fasciste NOM p 0.01 0.00 0.01 0.00 +néo_figuration néo_figuration NOM f s 0.00 0.07 0.00 0.07 +néo_flic néo_flic NOM m p 0.02 0.00 0.02 0.00 +néo_gangster néo_gangster NOM m s 0.01 0.00 0.01 0.00 +néo_gothique néo_gothique ADJ f s 0.00 0.20 0.00 0.14 +néo_gothique néo_gothique ADJ p 0.00 0.20 0.00 0.07 +néo_grec néo_grec ADJ m s 0.00 0.07 0.00 0.07 +néo_hellénique néo_hellénique ADJ f p 0.00 0.07 0.00 0.07 +néo_malthusianisme néo_malthusianisme NOM m s 0.00 0.14 0.00 0.14 +néo_mauresque néo_mauresque ADJ m s 0.00 0.14 0.00 0.07 +néo_mauresque néo_mauresque ADJ f p 0.00 0.14 0.00 0.07 +néo_mouvement néo_mouvement NOM m s 0.00 0.07 0.00 0.07 +néo_renaissant néo_renaissant ADJ m s 0.00 0.07 0.00 0.07 +néo_romantique néo_romantique ADJ f s 0.01 0.00 0.01 0.00 +néo_réalisme néo_réalisme NOM m s 0.10 0.07 0.10 0.07 +néo_réaliste néo_réaliste ADJ m s 0.00 0.20 0.00 0.07 +néo_réaliste néo_réaliste ADJ m p 0.00 0.20 0.00 0.14 +néo_russe néo_russe ADJ s 0.00 0.14 0.00 0.14 +néo_zélandais néo_zélandais ADJ m 0.11 0.14 0.10 0.14 +néo_zélandais néo_zélandais ADJ f s 0.11 0.14 0.01 0.00 +néo néo ADV 0.62 0.61 0.62 0.61 +nuoc_mâm nuoc_mâm NOM m 0.00 0.07 0.00 0.07 +néoclassique néoclassique ADJ m s 0.01 0.07 0.01 0.07 +néocolonial néocolonial ADJ m s 0.00 0.07 0.00 0.07 +néocolonialisme néocolonialisme NOM m s 0.01 0.00 0.01 0.00 +néocortex néocortex NOM m 0.15 0.00 0.15 0.00 +néofascisme néofascisme NOM m s 0.01 0.00 0.01 0.00 +néogothique néogothique ADJ m s 0.14 0.07 0.14 0.07 +néolibéralisme néolibéralisme NOM m s 0.14 0.00 0.14 0.00 +néolithique néolithique NOM s 0.02 0.14 0.02 0.14 +néolithiques néolithique ADJ f p 0.01 0.14 0.00 0.07 +néologisme néologisme NOM m s 0.01 0.61 0.01 0.27 +néologismes néologisme NOM m p 0.01 0.61 0.00 0.34 +néon néon NOM m s 1.81 10.81 1.21 7.16 +néonatal néonatal ADJ m s 0.11 0.00 0.04 0.00 +néonatale néonatal ADJ f s 0.11 0.00 0.07 0.00 +néonazie néonazi ADJ f s 0.11 0.00 0.01 0.00 +néonazis néonazi ADJ m p 0.11 0.00 0.10 0.00 +néons néon NOM m p 1.81 10.81 0.61 3.65 +néophyte néophyte NOM s 0.17 0.95 0.12 0.54 +néophytes néophyte NOM p 0.17 0.95 0.05 0.41 +néoplasie néoplasie NOM f s 0.01 0.00 0.01 0.00 +néoplasique néoplasique ADJ s 0.04 0.00 0.04 0.00 +néoplasme néoplasme NOM m s 0.01 0.07 0.01 0.07 +néoplatonisme néoplatonisme NOM m s 0.00 0.07 0.00 0.07 +néoprène néoprène NOM m s 0.03 0.00 0.03 0.00 +néoréalisme néoréalisme NOM m s 0.02 0.00 0.02 0.00 +népalais népalais ADJ m p 0.03 0.20 0.02 0.07 +népalaise népalais NOM f s 0.01 0.20 0.00 0.14 +népalaises népalais ADJ f p 0.03 0.20 0.01 0.07 +népenthès népenthès NOM m 0.04 0.07 0.04 0.07 +néphrectomie néphrectomie NOM f s 0.03 0.00 0.03 0.00 +néphrite néphrite NOM f s 0.11 0.07 0.11 0.07 +néphrologie néphrologie NOM f s 0.05 0.00 0.05 0.00 +néphrologue néphrologue NOM s 0.03 0.00 0.03 0.00 +néphrétique néphrétique ADJ f s 0.02 0.20 0.01 0.07 +néphrétiques néphrétique ADJ f p 0.02 0.20 0.01 0.14 +népotisme népotisme NOM m s 0.13 0.20 0.13 0.20 +nuptial nuptial ADJ m s 2.92 4.32 1.05 1.35 +nuptiale nuptial ADJ f s 2.92 4.32 1.56 2.09 +nuptiales nuptial ADJ f p 2.92 4.32 0.17 0.68 +nuptialité nuptialité NOM f s 0.00 0.20 0.00 0.20 +nuptiaux nuptial ADJ m p 2.92 4.32 0.14 0.20 +nuque nuque NOM f s 7.80 50.95 7.58 48.51 +nuques nuque NOM f p 7.80 50.95 0.22 2.43 +néroli néroli NOM m s 0.03 0.00 0.03 0.00 +nurse nurse NOM f s 2.24 3.92 2.14 3.18 +nurseries nurseries NOM f p 0.00 0.07 0.00 0.07 +nursery nursery NOM f s 1.04 0.74 1.04 0.74 +nurses nurse NOM f p 2.24 3.92 0.10 0.74 +nursing nursing NOM m s 0.03 0.00 0.03 0.00 +néréide néréide NOM f s 0.00 0.20 0.00 0.07 +néréides néréide NOM f p 0.00 0.20 0.00 0.14 +nés naître VER m p 116.11 119.32 8.83 7.50 par:pas; +nus nu ADJ m p 49.87 168.04 10.80 48.92 +nutriment nutriment NOM m s 0.21 0.00 0.02 0.00 +nutriments nutriment NOM m p 0.21 0.00 0.19 0.00 +nutritif nutritif ADJ m s 1.05 0.41 0.16 0.20 +nutritifs nutritif ADJ m p 1.05 0.41 0.21 0.00 +nutrition nutrition NOM f s 0.86 0.34 0.86 0.34 +nutritionnel nutritionnel ADJ m s 0.10 0.07 0.04 0.00 +nutritionnelle nutritionnel ADJ f s 0.10 0.07 0.06 0.07 +nutritionniste nutritionniste NOM s 0.25 0.00 0.25 0.00 +nutritive nutritif ADJ f s 1.05 0.41 0.51 0.07 +nutritives nutritif ADJ f p 1.05 0.41 0.18 0.14 +nuée nuée NOM f s 1.27 10.74 0.54 3.99 +nuées nuée NOM f p 1.27 10.74 0.74 6.76 +névralgie névralgie NOM f s 0.21 0.61 0.17 0.34 +névralgies névralgie NOM f p 0.21 0.61 0.04 0.27 +névralgique névralgique ADJ m s 0.12 0.14 0.12 0.00 +névralgiques névralgique ADJ m p 0.12 0.14 0.00 0.14 +névrite névrite NOM f s 0.17 0.07 0.17 0.07 +névropathe névropathe NOM s 0.12 0.14 0.12 0.14 +névroptères névroptère NOM m p 0.00 0.07 0.00 0.07 +névrose névrose NOM f s 1.36 2.50 1.04 1.28 +névroses névrose NOM f p 1.36 2.50 0.32 1.22 +névrosé névrosé ADJ m s 1.20 0.74 0.49 0.14 +névrosée névrosé ADJ f s 1.20 0.74 0.61 0.41 +névrosées névrosé ADJ f p 1.20 0.74 0.04 0.14 +névrosés névrosé NOM m p 0.58 0.41 0.24 0.20 +névrotique névrotique ADJ s 0.21 0.27 0.13 0.14 +névrotiques névrotique ADJ p 0.21 0.27 0.08 0.14 +névé névé NOM m s 0.00 0.27 0.00 0.14 +névés névé NOM m p 0.00 0.27 0.00 0.14 +nyctalope nyctalope ADJ s 0.00 0.20 0.00 0.14 +nyctalopes nyctalope NOM p 0.00 0.41 0.00 0.34 +nylon nylon NOM m s 1.33 6.42 1.27 6.42 +nylons nylon NOM m p 1.33 6.42 0.05 0.00 +nymphal nymphal ADJ m s 0.04 0.00 0.04 0.00 +nymphe nymphe NOM f s 1.77 5.81 0.88 1.76 +nymphes nymphe NOM f p 1.77 5.81 0.90 4.05 +nymphette nymphette NOM f s 0.10 0.68 0.07 0.41 +nymphettes nymphette NOM f p 0.10 0.68 0.03 0.27 +nympho nympho NOM f s 0.80 0.14 0.69 0.07 +nymphomane nymphomane NOM s 0.92 0.20 0.80 0.07 +nymphomanes nymphomane NOM p 0.92 0.20 0.13 0.14 +nymphomanie nymphomanie NOM f s 0.20 0.00 0.20 0.00 +nymphos nympho NOM f p 0.80 0.14 0.11 0.07 +nymphéa nymphéa NOM m s 0.00 0.34 0.00 0.07 +nymphéas nymphéa NOM m p 0.00 0.34 0.00 0.27 +nymphées nymphée NOM m p 0.14 0.07 0.14 0.07 +à_côté à_côté NOM m s 0.00 0.68 0.00 0.34 +à_côté à_côté NOM m p 0.00 0.68 0.00 0.34 +à_coup à_coup NOM m s 0.00 4.80 0.00 0.54 +à_coup à_coup NOM m p 0.00 4.80 0.00 4.26 +à_dieu_vat à_dieu_vat ONO 0.00 0.07 0.00 0.07 +à_peu_près à_peu_près NOM m 0.00 0.74 0.00 0.74 +à_pic à_pic NOM m 0.00 1.42 0.00 1.08 +à_pic à_pic NOM m p 0.00 1.42 0.00 0.34 +à_plat à_plat NOM m s 0.00 0.27 0.00 0.14 +à_plat à_plat NOM m p 0.00 0.27 0.00 0.14 +à_propos à_propos NOM m 0.00 0.88 0.00 0.88 +à_valoir à_valoir NOM m 0.00 0.27 0.00 0.27 +à_brûle_pourpoint à_brûle_pourpoint 0.14 0.00 0.14 0.00 +à_cloche_pied à_cloche_pied 0.22 0.00 0.22 0.00 +à_cropetons à_cropetons ADV 0.00 0.07 0.00 0.07 +à_croupetons à_croupetons ADV 0.01 0.95 0.01 0.95 +à_fortiori à_fortiori ADV 0.16 0.20 0.16 0.20 +à_giorno à_giorno ADV 0.00 0.07 0.00 0.07 +à_glagla à_glagla ADV 0.00 0.07 0.00 0.07 +à_jeun à_jeun ADV 1.45 3.85 1.27 3.85 +à_l_aveuglette à_l_aveuglette ADV 1.11 2.16 1.11 2.16 +à_l_encan à_l_encan ADV 0.01 0.14 0.01 0.14 +à_l_encontre à_l_encontre PRE 2.67 1.89 2.67 1.89 +à_l_envi à_l_envi ADV 0.20 0.61 0.20 0.61 +à_l_improviste à_l_improviste ADV 2.67 4.53 2.67 4.53 +à_l_instar à_l_instar PRE 0.26 6.42 0.26 6.42 +à_la_daumont à_la_daumont ADV 0.00 0.07 0.00 0.07 +à_la_saint_glinglin à_la_saint_glinglin ADV 0.02 0.00 0.02 0.00 +à_leur_encontre à_leur_encontre ADV 0.03 0.07 0.03 0.07 +à_lurelure à_lurelure ADV 0.00 0.20 0.00 0.20 +à_mon_encontre à_mon_encontre ADV 0.05 0.14 0.05 0.14 +à_notre_encontre à_notre_encontre ADV 0.02 0.07 0.02 0.07 +a_posteriori a_posteriori ADV 0.05 0.20 0.04 0.07 +a_priori a_priori ADV 1.04 3.85 0.41 1.28 +à_rebrousse_poil à_rebrousse_poil 0.08 0.00 0.08 0.00 +à_son_encontre à_son_encontre ADV 0.05 0.20 0.05 0.20 +à_tire_larigot à_tire_larigot 0.17 0.00 0.17 0.00 +à_ton_encontre à_ton_encontre ADV 0.02 0.00 0.02 0.00 +à_tâtons à_tâtons ADV 0.60 8.78 0.60 8.78 +à_touche_touche à_touche_touche 0.01 0.00 0.01 0.00 +à_tue_tête à_tue_tête 0.54 0.00 0.54 0.00 +à_votre_encontre à_votre_encontre ADV 0.15 0.00 0.15 0.00 +à à PRE 12190.40 19209.05 12190.40 19209.05 +o o NOM m 57.07 11.49 57.07 11.49 +où où PRO:rel 2177.25 2068.11 1546.44 1767.23 +oïl oïl NOM m 0.01 0.00 0.01 0.00 +oaristys oaristys NOM f 0.00 0.07 0.00 0.07 +oasis oasis NOM f 1.61 6.42 1.61 6.42 +ob ob NOM m s 0.25 0.07 0.25 0.07 +obi obi NOM f s 0.30 0.07 0.30 0.07 +obituaire obituaire ADJ s 0.00 0.07 0.00 0.07 +objecta objecter VER 0.87 6.49 0.00 2.43 ind:pas:3s; +objectai objecter VER 0.87 6.49 0.00 0.47 ind:pas:1s; +objectais objecter VER 0.87 6.49 0.01 0.07 ind:imp:1s;ind:imp:2s; +objectait objecter VER 0.87 6.49 0.01 0.68 ind:imp:3s; +objectal objectal ADJ m s 0.01 0.07 0.00 0.07 +objectale objectal ADJ f s 0.01 0.07 0.01 0.00 +objectant objecter VER 0.87 6.49 0.00 0.14 par:pre; +objecte objecter VER 0.87 6.49 0.46 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +objectent objecter VER 0.87 6.49 0.00 0.07 ind:pre:3p; +objecter objecter VER 0.87 6.49 0.28 0.54 inf; +objectera objecter VER 0.87 6.49 0.01 0.07 ind:fut:3s; +objecterez objecter VER 0.87 6.49 0.01 0.07 ind:fut:2p; +objecteront objecter VER 0.87 6.49 0.01 0.00 ind:fut:3p; +objecteur objecteur NOM m s 0.43 0.20 0.36 0.20 +objecteurs objecteur NOM m p 0.43 0.20 0.07 0.00 +objectez objecter VER 0.87 6.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +objectif objectif NOM m s 18.91 12.43 15.44 9.19 +objectifs objectif NOM m p 18.91 12.43 3.46 3.24 +objection objection NOM f s 14.18 7.97 12.07 3.78 +objections objection NOM f p 14.18 7.97 2.10 4.19 +objectivation objectivation NOM f s 0.11 0.00 0.11 0.00 +objective objectif ADJ f s 4.30 3.72 1.34 1.42 +objectivement objectivement ADV 0.41 1.82 0.41 1.82 +objectivent objectiver VER 0.19 0.07 0.01 0.07 ind:pre:3p; +objectives objectif ADJ f p 4.30 3.72 0.20 0.41 +objectivité objectivité NOM f s 0.89 0.68 0.89 0.68 +objectèrent objecter VER 0.87 6.49 0.00 0.07 ind:pas:3p; +objecté objecter VER m s 0.87 6.49 0.04 0.81 par:pas; +objet objet NOM m s 45.94 124.32 26.88 67.09 +objets objet NOM m p 45.94 124.32 19.06 57.23 +objurgation objurgation NOM f s 0.00 2.03 0.00 0.14 +objurgations objurgation NOM f p 0.00 2.03 0.00 1.89 +objurgua objurguer VER 0.00 0.14 0.00 0.07 ind:pas:3s; +objurguant objurguer VER 0.00 0.14 0.00 0.07 par:pre; +oblatif oblatif ADJ m s 0.00 0.20 0.00 0.07 +oblation oblation NOM f s 0.00 0.20 0.00 0.20 +oblative oblatif ADJ f s 0.00 0.20 0.00 0.14 +oblats oblat NOM m p 0.00 0.07 0.00 0.07 +obligado obligado ADV 0.00 0.14 0.00 0.14 +obligataire obligataire ADJ m s 0.02 0.00 0.01 0.00 +obligataires obligataire ADJ m p 0.02 0.00 0.01 0.00 +obligation obligation NOM f s 11.34 15.74 6.66 9.12 +obligations obligation NOM f p 11.34 15.74 4.69 6.62 +obligatoire obligatoire ADJ s 5.57 7.97 5.18 6.49 +obligatoirement obligatoirement ADV 1.13 3.04 1.13 3.04 +obligatoires obligatoire ADJ p 5.57 7.97 0.39 1.49 +oblige obliger VER 91.63 107.57 14.74 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +obligea obliger VER 91.63 107.57 0.47 4.39 ind:pas:3s; +obligeai obliger VER 91.63 107.57 0.00 0.34 ind:pas:1s; +obligeaient obliger VER 91.63 107.57 0.17 2.43 ind:imp:3p; +obligeais obliger VER 91.63 107.57 0.04 0.47 ind:imp:1s;ind:imp:2s; +obligeait obliger VER 91.63 107.57 1.40 9.32 ind:imp:3s; +obligeamment obligeamment ADV 0.00 0.68 0.00 0.68 +obligeance obligeance NOM f s 0.85 1.62 0.84 1.55 +obligeances obligeance NOM f p 0.85 1.62 0.01 0.07 +obligeant obliger VER 91.63 107.57 0.45 4.19 par:pre; +obligeante obligeant ADJ f s 0.36 1.55 0.14 0.14 +obligeantes obligeant ADJ f p 0.36 1.55 0.01 0.20 +obligeants obligeant ADJ m p 0.36 1.55 0.03 0.14 +obligent obliger VER 91.63 107.57 1.93 2.30 ind:pre:3p; +obligeons obliger VER 91.63 107.57 0.06 0.07 imp:pre:1p;ind:pre:1p; +obligeât obliger VER 91.63 107.57 0.00 0.54 sub:imp:3s; +obliger obliger VER 91.63 107.57 6.30 9.39 ind:pre:2p;inf; +obligera obliger VER 91.63 107.57 0.84 0.20 ind:fut:3s; +obligerai obliger VER 91.63 107.57 0.77 0.07 ind:fut:1s; +obligerais obliger VER 91.63 107.57 0.18 0.07 cnd:pre:1s;cnd:pre:2s; +obligerait obliger VER 91.63 107.57 0.78 1.08 cnd:pre:3s; +obligeras obliger VER 91.63 107.57 0.15 0.14 ind:fut:2s; +obligerez obliger VER 91.63 107.57 0.04 0.07 ind:fut:2p; +obligeriez obliger VER 91.63 107.57 0.05 0.14 cnd:pre:2p; +obligeront obliger VER 91.63 107.57 0.06 0.07 ind:fut:3p; +obliges obliger VER 91.63 107.57 1.28 0.34 ind:pre:2s; +obligez obliger VER 91.63 107.57 2.81 0.20 imp:pre:2p;ind:pre:2p; +obligiez obliger VER 91.63 107.57 0.16 0.00 ind:imp:2p; +obligèrent obliger VER 91.63 107.57 0.20 0.61 ind:pas:3p; +obligé obliger VER m s 91.63 107.57 36.43 35.07 par:pas; +obligée obliger VER f s 91.63 107.57 12.01 11.96 par:pas; +obligées obliger VER f p 91.63 107.57 0.75 0.88 par:pas; +obligés obliger VER m p 91.63 107.57 9.56 10.27 par:pas; +obliqua obliquer VER 0.16 5.41 0.00 2.30 ind:pas:3s; +obliquaient obliquer VER 0.16 5.41 0.00 0.14 ind:imp:3p; +obliquait obliquer VER 0.16 5.41 0.00 0.20 ind:imp:3s; +obliquant obliquer VER 0.16 5.41 0.10 0.54 par:pre; +oblique oblique ADJ s 0.83 11.49 0.81 7.70 +obliquement obliquement ADV 0.02 2.23 0.02 2.23 +obliquent obliquer VER 0.16 5.41 0.01 0.14 ind:pre:3p; +obliquer obliquer VER 0.16 5.41 0.00 0.54 inf; +obliques oblique ADJ p 0.83 11.49 0.02 3.78 +obliquez obliquer VER 0.16 5.41 0.03 0.00 imp:pre:2p; +obliquité obliquité NOM f s 0.01 0.07 0.01 0.07 +obliquâmes obliquer VER 0.16 5.41 0.00 0.07 ind:pas:1p; +obliquèrent obliquer VER 0.16 5.41 0.00 0.34 ind:pas:3p; +obliqué obliquer VER m s 0.16 5.41 0.00 0.41 par:pas; +oblitère oblitérer VER 0.17 1.42 0.00 0.27 ind:pre:3s; +oblitèrent oblitérer VER 0.17 1.42 0.00 0.07 ind:pre:3p; +oblitéraient oblitérer VER 0.17 1.42 0.00 0.07 ind:imp:3p; +oblitérait oblitérer VER 0.17 1.42 0.00 0.27 ind:imp:3s; +oblitération oblitération NOM f s 0.03 0.07 0.03 0.07 +oblitérer oblitérer VER 0.17 1.42 0.07 0.20 inf; +oblitérons oblitérer VER 0.17 1.42 0.01 0.00 imp:pre:1p; +oblitérèrent oblitérer VER 0.17 1.42 0.00 0.07 ind:pas:3p; +oblitéré oblitérer VER m s 0.17 1.42 0.04 0.14 par:pas; +oblitérée oblitérer VER f s 0.17 1.42 0.02 0.14 par:pas; +oblitérées oblitérer VER f p 0.17 1.42 0.01 0.14 par:pas; +oblitérés oblitérer VER m p 0.17 1.42 0.02 0.07 par:pas; +oblong oblong ADJ m s 0.05 3.24 0.02 1.01 +oblongs oblong ADJ m p 0.05 3.24 0.00 0.27 +oblongue oblong ADJ f s 0.05 3.24 0.03 1.49 +oblongues oblong ADJ f p 0.05 3.24 0.00 0.47 +obnubila obnubiler VER 0.50 1.82 0.00 0.07 ind:pas:3s; +obnubilait obnubiler VER 0.50 1.82 0.01 0.00 ind:imp:3s; +obnubilant obnubiler VER 0.50 1.82 0.00 0.07 par:pre; +obnubilation obnubilation NOM f s 0.00 0.14 0.00 0.14 +obnubile obnubiler VER 0.50 1.82 0.03 0.07 ind:pre:3s; +obnubiler obnubiler VER 0.50 1.82 0.02 0.27 inf; +obnubilé obnubiler VER m s 0.50 1.82 0.22 0.88 par:pas; +obnubilée obnubiler VER f s 0.50 1.82 0.17 0.07 par:pas; +obnubilées obnubiler VER f p 0.50 1.82 0.00 0.07 par:pas; +obnubilés obnubiler VER m p 0.50 1.82 0.04 0.34 par:pas; +obole obole NOM f s 0.11 1.22 0.11 1.01 +oboles obole NOM f p 0.11 1.22 0.00 0.20 +obscène obscène ADJ s 4.48 13.04 3.25 7.91 +obscènement obscènement ADV 0.01 0.27 0.01 0.27 +obscènes obscène ADJ p 4.48 13.04 1.23 5.14 +obscénité obscénité NOM f s 1.63 3.78 0.92 2.23 +obscénités obscénité NOM f p 1.63 3.78 0.71 1.55 +obscur obscur ADJ m s 11.06 67.57 5.00 29.12 +obscurantisme obscurantisme NOM m s 0.14 0.81 0.14 0.74 +obscurantismes obscurantisme NOM m p 0.14 0.81 0.00 0.07 +obscurantiste obscurantiste NOM s 0.14 0.00 0.14 0.00 +obscurcît obscurcir VER 1.42 6.69 0.00 0.07 sub:imp:3s; +obscurci obscurcir VER m s 1.42 6.69 0.57 1.28 par:pas; +obscurcie obscurcir VER f s 1.42 6.69 0.15 0.74 par:pas; +obscurcies obscurcir VER f p 1.42 6.69 0.00 0.20 par:pas; +obscurcir obscurcir VER 1.42 6.69 0.24 0.88 inf; +obscurcira obscurcir VER 1.42 6.69 0.04 0.14 ind:fut:3s; +obscurcirait obscurcir VER 1.42 6.69 0.00 0.07 cnd:pre:3s; +obscurcis obscurcir VER m p 1.42 6.69 0.00 0.27 par:pas; +obscurcissaient obscurcir VER 1.42 6.69 0.01 0.47 ind:imp:3p; +obscurcissait obscurcir VER 1.42 6.69 0.01 0.68 ind:imp:3s; +obscurcissant obscurcir VER 1.42 6.69 0.00 0.14 par:pre; +obscurcissement obscurcissement NOM m s 0.11 0.41 0.11 0.27 +obscurcissements obscurcissement NOM m p 0.11 0.41 0.00 0.14 +obscurcissent obscurcir VER 1.42 6.69 0.06 0.47 ind:pre:3p; +obscurcit obscurcir VER 1.42 6.69 0.34 1.28 ind:pre:3s;ind:pas:3s; +obscure obscur ADJ f s 11.06 67.57 3.46 20.61 +obscures obscur ADJ f p 11.06 67.57 1.32 9.53 +obscurité obscurité NOM f s 14.33 49.39 14.33 48.65 +obscurités obscurité NOM f p 14.33 49.39 0.00 0.74 +obscurs obscur ADJ m p 11.06 67.57 1.28 8.31 +obscurément obscurément ADV 0.01 6.96 0.01 6.96 +observa observer VER 42.66 116.01 0.18 19.46 ind:pas:3s; +observable observable ADJ m s 0.03 0.00 0.03 0.00 +observai observer VER 42.66 116.01 0.01 1.76 ind:pas:1s; +observaient observer VER 42.66 116.01 0.26 3.85 ind:imp:3p; +observais observer VER 42.66 116.01 1.39 5.20 ind:imp:1s;ind:imp:2s; +observait observer VER 42.66 116.01 1.23 19.73 ind:imp:3s; +observance observance NOM f s 0.14 0.34 0.14 0.27 +observances observance NOM f p 0.14 0.34 0.00 0.07 +observant observer VER 42.66 116.01 1.17 6.89 par:pre; +observateur observateur NOM m s 3.08 6.08 1.94 4.53 +observateurs observateur NOM m p 3.08 6.08 1.05 1.35 +observation observation NOM f s 8.07 15.27 6.91 11.08 +observations observation NOM f p 8.07 15.27 1.16 4.19 +observatoire observatoire NOM m s 1.25 3.18 1.23 2.84 +observatoires observatoire NOM m p 1.25 3.18 0.02 0.34 +observatrice observateur ADJ f s 1.55 0.68 0.24 0.07 +observatrices observateur NOM f p 3.08 6.08 0.00 0.14 +observe observer VER 42.66 116.01 11.48 16.69 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +observent observer VER 42.66 116.01 1.41 2.16 ind:pre:3p; +observer observer VER 42.66 116.01 11.22 24.26 inf; +observera observer VER 42.66 116.01 0.11 0.07 ind:fut:3s; +observerai observer VER 42.66 116.01 0.51 0.07 ind:fut:1s; +observeraient observer VER 42.66 116.01 0.00 0.14 cnd:pre:3p; +observerais observer VER 42.66 116.01 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +observerait observer VER 42.66 116.01 0.04 0.20 cnd:pre:3s; +observerez observer VER 42.66 116.01 0.05 0.07 ind:fut:2p; +observerons observer VER 42.66 116.01 0.18 0.00 ind:fut:1p; +observeront observer VER 42.66 116.01 0.03 0.00 ind:fut:3p; +observes observer VER 42.66 116.01 0.75 0.34 ind:pre:2s;sub:pre:2s; +observez observer VER 42.66 116.01 3.63 1.35 imp:pre:2p;ind:pre:2p; +observiez observer VER 42.66 116.01 0.15 0.00 ind:imp:2p;sub:pre:2p; +observions observer VER 42.66 116.01 0.13 0.74 ind:imp:1p; +observâmes observer VER 42.66 116.01 0.00 0.20 ind:pas:1p; +observons observer VER 42.66 116.01 1.27 0.47 imp:pre:1p;ind:pre:1p; +observèrent observer VER 42.66 116.01 0.00 1.69 ind:pas:3p; +observé observer VER m s 42.66 116.01 5.53 6.96 par:pas; +observée observer VER f s 42.66 116.01 0.83 2.03 par:pas; +observées observer VER f p 42.66 116.01 0.22 0.54 par:pas; +observés observer VER m p 42.66 116.01 0.86 1.08 par:pas; +obsessif obsessif ADJ m s 0.20 0.00 0.13 0.00 +obsession obsession NOM f s 8.79 11.15 7.76 8.78 +obsessionnel obsessionnel ADJ m s 1.43 1.15 0.87 0.41 +obsessionnelle obsessionnel ADJ f s 1.43 1.15 0.37 0.47 +obsessionnellement obsessionnellement ADV 0.01 0.41 0.01 0.41 +obsessionnelles obsessionnel ADJ f p 1.43 1.15 0.06 0.07 +obsessionnels obsessionnel ADJ m p 1.43 1.15 0.13 0.20 +obsessions obsession NOM f p 8.79 11.15 1.02 2.36 +obsessive obsessif ADJ f s 0.20 0.00 0.08 0.00 +obsidienne obsidienne NOM f s 0.03 0.74 0.03 0.74 +obsidional obsidional ADJ m s 0.00 0.41 0.00 0.07 +obsidionale obsidional ADJ f s 0.00 0.41 0.00 0.34 +obsolescence obsolescence NOM f s 0.02 0.07 0.02 0.07 +obsolète obsolète ADJ s 1.19 0.14 0.84 0.07 +obsolètes obsolète ADJ p 1.19 0.14 0.35 0.07 +obstacle obstacle NOM m s 10.65 26.01 6.58 14.12 +obstacles obstacle NOM m p 10.65 26.01 4.07 11.89 +obsède obséder VER 11.53 9.12 2.15 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obsèdent obséder VER 11.53 9.12 0.19 0.27 ind:pre:3p; +obsèdes obséder VER 11.53 9.12 0.08 0.00 ind:pre:2s; +obsèques obsèques NOM f p 4.32 4.80 4.32 4.80 +obstina obstiner VER 3.77 16.49 0.03 0.88 ind:pas:3s; +obstinai obstiner VER 3.77 16.49 0.00 0.14 ind:pas:1s; +obstinaient obstiner VER 3.77 16.49 0.02 0.74 ind:imp:3p; +obstinais obstiner VER 3.77 16.49 0.00 0.68 ind:imp:1s;ind:imp:2s; +obstinait obstiner VER 3.77 16.49 0.03 4.66 ind:imp:3s; +obstinant obstiner VER 3.77 16.49 0.00 0.88 par:pre; +obstination obstination NOM f s 1.26 12.23 1.26 12.09 +obstinations obstination NOM f p 1.26 12.23 0.00 0.14 +obstine obstiner VER 3.77 16.49 0.94 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obstinent obstiner VER 3.77 16.49 0.16 0.81 ind:pre:3p; +obstiner obstiner VER 3.77 16.49 0.53 1.35 inf; +obstinera obstiner VER 3.77 16.49 0.01 0.07 ind:fut:3s; +obstineraient obstiner VER 3.77 16.49 0.00 0.07 cnd:pre:3p; +obstinerait obstiner VER 3.77 16.49 0.00 0.07 cnd:pre:3s; +obstineras obstiner VER 3.77 16.49 0.00 0.07 ind:fut:2s; +obstinerez obstiner VER 3.77 16.49 0.00 0.14 ind:fut:2p; +obstineriez obstiner VER 3.77 16.49 0.00 0.07 cnd:pre:2p; +obstineront obstiner VER 3.77 16.49 0.00 0.14 ind:fut:3p; +obstines obstiner VER 3.77 16.49 0.77 0.27 ind:pre:2s;sub:pre:2s; +obstinez obstiner VER 3.77 16.49 0.34 0.27 imp:pre:2p;ind:pre:2p; +obstinions obstiner VER 3.77 16.49 0.00 0.14 ind:imp:1p; +obstinons obstiner VER 3.77 16.49 0.01 0.14 ind:pre:1p; +obstinèrent obstiner VER 3.77 16.49 0.00 0.14 ind:pas:3p; +obstiné obstiner VER m s 3.77 16.49 0.51 1.15 par:pas; +obstinée obstiner VER f s 3.77 16.49 0.28 0.41 par:pas; +obstinées obstiné ADJ f p 0.55 6.96 0.01 0.68 +obstinément obstinément ADV 0.48 10.27 0.48 10.27 +obstinés obstiner VER m p 3.77 16.49 0.14 0.34 par:pas; +obstrua obstruer VER 1.35 4.86 0.01 0.14 ind:pas:3s; +obstruaient obstruer VER 1.35 4.86 0.01 0.68 ind:imp:3p; +obstruait obstruer VER 1.35 4.86 0.03 0.61 ind:imp:3s; +obstruant obstruer VER 1.35 4.86 0.03 0.27 par:pre; +obstructif obstructif ADJ m s 0.03 0.00 0.01 0.00 +obstruction obstruction NOM f s 3.64 0.47 3.20 0.47 +obstructionnisme obstructionnisme NOM m s 0.01 0.00 0.01 0.00 +obstructions obstruction NOM f p 3.64 0.47 0.44 0.00 +obstructive obstructif ADJ f s 0.03 0.00 0.01 0.00 +obstrue obstruer VER 1.35 4.86 0.55 0.54 imp:pre:2s;ind:pre:3s; +obstruent obstruer VER 1.35 4.86 0.00 0.47 ind:pre:3p; +obstruer obstruer VER 1.35 4.86 0.04 0.27 inf; +obstrueraient obstruer VER 1.35 4.86 0.00 0.07 cnd:pre:3p; +obstrueront obstruer VER 1.35 4.86 0.10 0.00 ind:fut:3p; +obstruez obstruer VER 1.35 4.86 0.02 0.00 imp:pre:2p;ind:pre:2p; +obstrué obstruer VER m s 1.35 4.86 0.31 0.54 par:pas; +obstruée obstruer VER f s 1.35 4.86 0.07 0.81 par:pas; +obstruées obstruer VER f p 1.35 4.86 0.01 0.27 par:pas; +obstrués obstruer VER m p 1.35 4.86 0.17 0.20 par:pas; +obstétrical obstétrical ADJ m s 0.01 0.00 0.01 0.00 +obstétricien obstétricien NOM m s 0.35 0.07 0.28 0.07 +obstétricienne obstétricien NOM f s 0.35 0.07 0.04 0.00 +obstétriciens obstétricien NOM m p 0.35 0.07 0.04 0.00 +obstétrique obstétrique NOM f s 0.83 0.14 0.83 0.14 +obséda obséder VER 11.53 9.12 0.00 0.14 ind:pas:3s; +obsédaient obséder VER 11.53 9.12 0.00 0.34 ind:imp:3p; +obsédais obséder VER 11.53 9.12 0.04 0.00 ind:imp:1s;ind:imp:2s; +obsédait obséder VER 11.53 9.12 0.40 1.82 ind:imp:3s; +obsédant obsédant ADJ m s 0.22 6.28 0.12 1.69 +obsédante obsédant ADJ f s 0.22 6.28 0.05 3.58 +obsédantes obsédant ADJ f p 0.22 6.28 0.02 0.54 +obsédants obsédant ADJ m p 0.22 6.28 0.03 0.47 +obséder obséder VER 11.53 9.12 0.12 0.61 inf; +obsédèrent obséder VER 11.53 9.12 0.14 0.07 ind:pas:3p; +obsédé obséder VER m s 11.53 9.12 5.12 2.57 par:pas; +obsédée obséder VER f s 11.53 9.12 2.19 0.95 par:pas; +obsédées obséder VER f p 11.53 9.12 0.10 0.20 par:pas; +obsédés obsédé NOM m p 3.73 2.23 1.33 0.95 +obséquieuse obséquieux ADJ f s 0.15 1.01 0.02 0.20 +obséquieusement obséquieusement ADV 0.01 0.14 0.01 0.14 +obséquieuses obséquieux ADJ f p 0.15 1.01 0.00 0.14 +obséquieux obséquieux ADJ m s 0.15 1.01 0.13 0.68 +obséquiosité obséquiosité NOM f s 0.01 0.54 0.01 0.54 +obtînmes obtenir VER 88.10 80.95 0.01 0.07 ind:pas:1p; +obtînt obtenir VER 88.10 80.95 0.00 0.14 sub:imp:3s; +obtempère obtempérer VER 1.12 2.16 0.18 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +obtempéra obtempérer VER 1.12 2.16 0.00 0.47 ind:pas:3s; +obtempérai obtempérer VER 1.12 2.16 0.00 0.07 ind:pas:1s; +obtempéraient obtempérer VER 1.12 2.16 0.01 0.07 ind:imp:3p; +obtempérait obtempérer VER 1.12 2.16 0.00 0.14 ind:imp:3s; +obtempérer obtempérer VER 1.12 2.16 0.82 0.74 inf; +obtempérez obtempérer VER 1.12 2.16 0.07 0.00 imp:pre:2p;ind:pre:2p; +obtempérions obtempérer VER 1.12 2.16 0.00 0.07 ind:imp:1p; +obtempérèrent obtempérer VER 1.12 2.16 0.00 0.07 ind:pas:3p; +obtempéré obtempérer VER m s 1.12 2.16 0.04 0.20 par:pas; +obtenaient obtenir VER 88.10 80.95 0.04 0.68 ind:imp:3p; +obtenais obtenir VER 88.10 80.95 0.51 1.08 ind:imp:1s;ind:imp:2s; +obtenait obtenir VER 88.10 80.95 0.35 2.36 ind:imp:3s; +obtenant obtenir VER 88.10 80.95 0.19 1.22 par:pre; +obtenez obtenir VER 88.10 80.95 2.40 0.20 imp:pre:2p;ind:pre:2p; +obteniez obtenir VER 88.10 80.95 0.27 0.00 ind:imp:2p; +obtenions obtenir VER 88.10 80.95 0.06 0.20 ind:imp:1p; +obtenir obtenir VER 88.10 80.95 36.70 37.77 inf; +obtenons obtenir VER 88.10 80.95 0.87 0.41 imp:pre:1p;ind:pre:1p; +obtention obtention NOM f s 0.53 0.47 0.53 0.47 +obtenu obtenir VER m s 88.10 80.95 20.36 14.73 par:pas; +obtenue obtenir VER f s 88.10 80.95 0.67 2.03 par:pas; +obtenues obtenir VER f p 88.10 80.95 0.55 0.68 par:pas; +obtenus obtenir VER m p 88.10 80.95 0.91 1.35 par:pas; +obère obérer VER 0.00 0.20 0.00 0.07 ind:pre:1s; +obèse obèse ADJ s 1.40 3.58 1.11 2.57 +obèses obèse ADJ p 1.40 3.58 0.29 1.01 +obtiendra obtenir VER 88.10 80.95 1.24 0.41 ind:fut:3s; +obtiendrai obtenir VER 88.10 80.95 1.62 0.20 ind:fut:1s; +obtiendraient obtenir VER 88.10 80.95 0.00 0.34 cnd:pre:3p; +obtiendrais obtenir VER 88.10 80.95 0.86 0.20 cnd:pre:1s;cnd:pre:2s; +obtiendrait obtenir VER 88.10 80.95 0.66 1.22 cnd:pre:3s; +obtiendras obtenir VER 88.10 80.95 0.85 0.07 ind:fut:2s; +obtiendrez obtenir VER 88.10 80.95 1.39 0.47 ind:fut:2p; +obtiendriez obtenir VER 88.10 80.95 0.17 0.00 cnd:pre:2p; +obtiendrions obtenir VER 88.10 80.95 0.03 0.07 cnd:pre:1p; +obtiendrons obtenir VER 88.10 80.95 0.53 0.41 ind:fut:1p; +obtiendront obtenir VER 88.10 80.95 0.55 0.27 ind:fut:3p; +obtienne obtenir VER 88.10 80.95 1.44 0.88 sub:pre:1s;sub:pre:3s; +obtiennent obtenir VER 88.10 80.95 1.23 0.47 ind:pre:3p; +obtiennes obtenir VER 88.10 80.95 0.33 0.07 sub:pre:2s; +obtiens obtenir VER 88.10 80.95 5.46 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +obtient obtenir VER 88.10 80.95 6.75 3.18 ind:pre:3s; +obtinrent obtenir VER 88.10 80.95 0.20 0.74 ind:pas:3p; +obtins obtenir VER 88.10 80.95 0.16 2.57 ind:pas:1s;ind:pas:2s; +obtinsse obtenir VER 88.10 80.95 0.00 0.07 sub:imp:1s; +obtint obtenir VER 88.10 80.95 0.74 5.95 ind:pas:3s; +obtura obturer VER 0.13 0.61 0.00 0.07 ind:pas:3s; +obturait obturer VER 0.13 0.61 0.00 0.14 ind:imp:3s; +obturateur obturateur ADJ m s 0.13 0.00 0.12 0.00 +obturateurs obturateur NOM m p 0.07 0.27 0.01 0.07 +obturation obturation NOM f s 0.06 0.00 0.06 0.00 +obture obturer VER 0.13 0.61 0.01 0.20 ind:pre:1s;ind:pre:3s; +obturer obturer VER 0.13 0.61 0.08 0.07 inf; +obturez obturer VER 0.13 0.61 0.01 0.00 imp:pre:2p; +obturé obturer VER m s 0.13 0.61 0.03 0.07 par:pas; +obturée obturer VER f s 0.13 0.61 0.00 0.07 par:pas; +obtus obtus ADJ m 1.17 4.66 0.85 2.70 +obtuse obtus ADJ f s 1.17 4.66 0.32 1.89 +obtuses obtus ADJ f p 1.17 4.66 0.00 0.07 +obéîmes obéir VER 45.12 45.88 0.01 0.07 ind:pas:1p; +obédience obédience NOM f s 0.14 2.36 0.14 2.30 +obédiences obédience NOM f p 0.14 2.36 0.00 0.07 +obéi obéir VER m s 45.12 45.88 3.38 4.59 par:pas; +obéie obéir VER f s 45.12 45.88 0.01 0.27 par:pas; +obéir obéir VER 45.12 45.88 13.76 14.26 inf;;inf;;inf;; +obéira obéir VER 45.12 45.88 0.86 0.61 ind:fut:3s; +obéirai obéir VER 45.12 45.88 1.47 0.20 ind:fut:1s; +obéiraient obéir VER 45.12 45.88 0.01 0.07 cnd:pre:3p; +obéirais obéir VER 45.12 45.88 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +obéirait obéir VER 45.12 45.88 0.03 0.07 cnd:pre:3s; +obéiras obéir VER 45.12 45.88 0.32 0.14 ind:fut:2s; +obéirent obéir VER 45.12 45.88 0.00 0.54 ind:pas:3p; +obéirez obéir VER 45.12 45.88 0.33 0.07 ind:fut:2p; +obéiriez obéir VER 45.12 45.88 0.03 0.07 cnd:pre:2p; +obéirons obéir VER 45.12 45.88 0.24 0.07 ind:fut:1p; +obéiront obéir VER 45.12 45.88 0.21 0.07 ind:fut:3p; +obéis obéir VER m p 45.12 45.88 10.93 2.91 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +obéissaient obéir VER 45.12 45.88 0.46 1.15 ind:imp:3p; +obéissais obéir VER 45.12 45.88 0.36 0.54 ind:imp:1s;ind:imp:2s; +obéissait obéir VER 45.12 45.88 0.36 4.05 ind:imp:3s; +obéissance obéissance NOM f s 4.24 5.07 4.24 5.07 +obéissant obéissant ADJ m s 2.59 2.30 0.99 1.15 +obéissante obéissant ADJ f s 2.59 2.30 1.10 0.41 +obéissantes obéissant ADJ f p 2.59 2.30 0.11 0.34 +obéissants obéissant ADJ m p 2.59 2.30 0.39 0.41 +obéisse obéir VER 45.12 45.88 0.39 0.41 sub:pre:1s;sub:pre:3s; +obéissent obéir VER 45.12 45.88 2.04 1.55 ind:pre:3p; +obéisses obéir VER 45.12 45.88 0.05 0.07 sub:pre:2s; +obéissez obéir VER 45.12 45.88 4.88 0.27 imp:pre:2p;ind:pre:2p; +obéissiez obéir VER 45.12 45.88 0.19 0.07 ind:imp:2p; +obéissions obéir VER 45.12 45.88 0.00 0.41 ind:imp:1p; +obéissons obéir VER 45.12 45.88 0.49 0.07 imp:pre:1p;ind:pre:1p; +obéit obéir VER 45.12 45.88 3.54 9.66 ind:pre:3s;ind:pas:3s; +obélisque obélisque NOM m s 0.36 1.22 0.10 0.74 +obélisques obélisque NOM m p 0.36 1.22 0.27 0.47 +obérant obérer VER 0.00 0.20 0.00 0.07 par:pre; +obérer obérer VER 0.00 0.20 0.00 0.07 inf; +obus obus NOM m 5.13 31.82 5.13 31.82 +obusier obusier NOM m s 0.05 0.68 0.01 0.07 +obusiers obusier NOM m p 0.05 0.68 0.04 0.61 +obésité obésité NOM f s 0.73 1.08 0.73 0.95 +obésités obésité NOM f p 0.73 1.08 0.00 0.14 +obverse obvers NOM f s 0.00 0.07 0.00 0.07 +obvie obvie ADJ s 0.00 0.07 0.00 0.07 +obvier obvier VER 0.00 0.14 0.00 0.14 inf; +ocarina ocarina NOM m s 0.03 0.27 0.03 0.20 +ocarinas ocarina NOM m p 0.03 0.27 0.00 0.07 +occase occase NOM f s 1.25 5.34 1.14 4.53 +occases occase NOM f p 1.25 5.34 0.11 0.81 +occasion occasion NOM f s 61.89 105.74 55.39 92.09 +occasionna occasionner VER 0.70 1.69 0.00 0.07 ind:pas:3s; +occasionnait occasionner VER 0.70 1.69 0.00 0.14 ind:imp:3s; +occasionnant occasionner VER 0.70 1.69 0.02 0.07 par:pre; +occasionne occasionner VER 0.70 1.69 0.02 0.34 ind:pre:1s;ind:pre:3s; +occasionnel occasionnel ADJ m s 0.99 1.22 0.46 0.54 +occasionnelle occasionnel ADJ f s 0.99 1.22 0.33 0.14 +occasionnellement occasionnellement ADV 0.59 0.27 0.59 0.27 +occasionnelles occasionnel ADJ f p 0.99 1.22 0.06 0.14 +occasionnels occasionnel ADJ m p 0.99 1.22 0.14 0.41 +occasionnent occasionner VER 0.70 1.69 0.01 0.07 ind:pre:3p; +occasionner occasionner VER 0.70 1.69 0.09 0.20 inf; +occasionnèrent occasionner VER 0.70 1.69 0.00 0.07 ind:pas:3p; +occasionné occasionner VER m s 0.70 1.69 0.23 0.07 par:pas; +occasionnée occasionner VER f s 0.70 1.69 0.12 0.14 par:pas; +occasionnées occasionner VER f p 0.70 1.69 0.03 0.20 par:pas; +occasionnés occasionner VER m p 0.70 1.69 0.19 0.34 par:pas; +occasions occasion NOM f p 61.89 105.74 6.50 13.65 +occident occident NOM m s 0.38 1.69 0.38 1.69 +occidental occidental ADJ m s 5.07 15.61 1.50 3.65 +occidentale occidental ADJ f s 5.07 15.61 2.15 8.65 +occidentales occidental ADJ f p 5.07 15.61 0.36 1.69 +occidentalisation occidentalisation NOM f s 0.10 0.14 0.10 0.14 +occidentalise occidentaliser VER 0.01 0.07 0.01 0.07 ind:pre:3s; +occidentalisme occidentalisme NOM m s 0.00 0.07 0.00 0.07 +occidentaux occidental ADJ m p 5.07 15.61 1.06 1.62 +occipital occipital ADJ m s 0.49 0.20 0.38 0.14 +occipitale occipital ADJ f s 0.49 0.20 0.08 0.00 +occipitales occipital ADJ f p 0.49 0.20 0.01 0.07 +occipitaux occipital ADJ m p 0.49 0.20 0.02 0.00 +occiput occiput NOM m s 0.19 1.69 0.19 1.69 +occire occire VER 0.10 0.41 0.10 0.41 inf; +occis occis ADJ m 0.28 0.68 0.28 0.68 +occitan occitan NOM m s 0.00 0.34 0.00 0.34 +occitane occitan ADJ f s 0.01 0.41 0.01 0.27 +occitans occitan ADJ m p 0.01 0.41 0.00 0.07 +occlusion occlusion NOM f s 0.31 0.34 0.31 0.34 +occlut occlure VER 0.00 0.07 0.00 0.07 ind:pas:3s; +occulta occulter VER 0.86 1.01 0.00 0.07 ind:pas:3s; +occultaient occulter VER 0.86 1.01 0.00 0.07 ind:imp:3p; +occultait occulter VER 0.86 1.01 0.01 0.34 ind:imp:3s; +occultant occulter VER 0.86 1.01 0.04 0.00 par:pre; +occultation occultation NOM f s 0.28 0.27 0.28 0.20 +occultations occultation NOM f p 0.28 0.27 0.00 0.07 +occulte occulte ADJ s 2.28 3.24 0.96 1.76 +occultement occultement ADV 0.00 0.07 0.00 0.07 +occultent occulter VER 0.86 1.01 0.12 0.07 ind:pre:3p; +occulter occulter VER 0.86 1.01 0.29 0.34 inf; +occultera occulter VER 0.86 1.01 0.01 0.00 ind:fut:3s; +occultes occulte ADJ p 2.28 3.24 1.33 1.49 +occultez occulter VER 0.86 1.01 0.07 0.00 imp:pre:2p; +occultisme occultisme NOM m s 0.33 0.34 0.33 0.27 +occultismes occultisme NOM m p 0.33 0.34 0.00 0.07 +occultiste occultiste NOM s 0.11 0.14 0.01 0.00 +occultistes occultiste NOM p 0.11 0.14 0.10 0.14 +occulté occulter VER m s 0.86 1.01 0.22 0.14 par:pas; +occultée occulter VER f s 0.86 1.01 0.08 0.00 par:pas; +occupa occuper VER 375.14 219.80 0.10 3.78 ind:pas:3s; +occupai occuper VER 375.14 219.80 0.01 0.61 ind:pas:1s; +occupaient occuper VER 375.14 219.80 0.93 10.34 ind:imp:3p; +occupais occuper VER 375.14 219.80 3.37 3.45 ind:imp:1s;ind:imp:2s; +occupait occuper VER 375.14 219.80 4.36 31.42 ind:imp:3s; +occupant occupant NOM m s 2.38 10.07 0.62 3.99 +occupante occupant NOM f s 2.38 10.07 0.03 0.14 +occupantes occupant ADJ f p 0.18 0.81 0.01 0.07 +occupants occupant NOM m p 2.38 10.07 1.73 5.88 +occupas occuper VER 375.14 219.80 0.00 0.07 ind:pas:2s; +occupation occupation NOM f s 6.71 30.61 4.91 22.84 +occupations occupation NOM f p 6.71 30.61 1.80 7.77 +occupe occuper VER 375.14 219.80 139.84 37.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +occupent occuper VER 375.14 219.80 6.45 7.30 ind:pre:3p; +occuper occuper VER 375.14 219.80 97.22 56.69 ind:pre:2p;inf; +occupera occuper VER 375.14 219.80 10.27 2.50 ind:fut:3s; +occuperai occuper VER 375.14 219.80 10.51 1.69 ind:fut:1s; +occuperaient occuper VER 375.14 219.80 0.31 0.54 cnd:pre:3p; +occuperais occuper VER 375.14 219.80 1.03 0.34 cnd:pre:1s;cnd:pre:2s; +occuperait occuper VER 375.14 219.80 0.67 2.50 cnd:pre:3s; +occuperas occuper VER 375.14 219.80 1.09 0.41 ind:fut:2s; +occuperez occuper VER 375.14 219.80 0.56 0.20 ind:fut:2p; +occuperions occuper VER 375.14 219.80 0.03 0.07 cnd:pre:1p; +occuperons occuper VER 375.14 219.80 0.79 0.00 ind:fut:1p; +occuperont occuper VER 375.14 219.80 1.61 0.61 ind:fut:3p; +occupes occuper VER 375.14 219.80 12.60 0.95 ind:pre:2s;sub:pre:2s; +occupez occuper VER 375.14 219.80 15.36 2.23 imp:pre:2p;ind:pre:2p; +occupiez occuper VER 375.14 219.80 1.08 0.07 ind:imp:2p; +occupions occuper VER 375.14 219.80 0.06 1.35 ind:imp:1p; +occupons occuper VER 375.14 219.80 2.23 0.95 imp:pre:1p;ind:pre:1p; +occupât occuper VER 375.14 219.80 0.00 0.88 sub:imp:3s; +occupèrent occuper VER 375.14 219.80 0.16 1.08 ind:pas:3p; +occupé occuper VER m s 375.14 219.80 41.37 25.47 par:pas; +occupée occuper VER f s 375.14 219.80 15.71 13.31 par:pas; +occupées occuper VER f p 375.14 219.80 1.67 3.31 par:pas; +occupés occuper VER m p 375.14 219.80 5.24 7.36 par:pas; +occurrence occurrence NOM f s 1.57 7.43 1.56 7.16 +occurrences occurrence NOM f p 1.57 7.43 0.01 0.27 +occurrentes occurrent ADJ f p 0.00 0.07 0.00 0.07 +ocelles ocelle NOM m p 0.00 0.14 0.00 0.14 +ocellée ocellé ADJ f s 0.00 0.41 0.00 0.20 +ocellés ocellé ADJ m p 0.00 0.41 0.00 0.20 +ocelot ocelot NOM m s 0.20 0.14 0.17 0.07 +ocelots ocelot NOM m p 0.20 0.14 0.03 0.07 +âcre âcre ADJ s 0.47 11.49 0.45 10.14 +ocre ocre NOM s 0.29 4.46 0.26 3.78 +âcrement âcrement ADV 0.00 0.14 0.00 0.14 +âcres âcre ADJ p 0.47 11.49 0.01 1.35 +ocres ocre NOM p 0.29 4.46 0.04 0.68 +âcreté âcreté NOM f s 0.11 0.95 0.11 0.95 +ocreux ocreux ADJ m 0.00 0.20 0.00 0.20 +ocré ocrer VER m s 0.00 0.34 0.00 0.07 par:pas; +ocrée ocré ADJ f s 0.00 0.27 0.00 0.20 +ocrées ocrer VER f p 0.00 0.34 0.00 0.07 par:pas; +ocrés ocrer VER m p 0.00 0.34 0.00 0.14 par:pas; +octane octane NOM m s 0.09 0.00 0.09 0.00 +octant octant NOM m s 0.00 0.14 0.00 0.14 +octante octante ADJ:num 0.00 0.14 0.00 0.14 +octave octave NOM f s 1.11 1.82 1.07 1.42 +octaves octave NOM f p 1.11 1.82 0.03 0.41 +octavia octavier VER 0.34 0.00 0.28 0.00 ind:pas:3s; +octavie octavier VER 0.34 0.00 0.07 0.00 imp:pre:2s; +octavo octavo ADV 0.01 0.00 0.01 0.00 +octet octet NOM m s 0.02 0.00 0.01 0.00 +octets octet NOM m p 0.02 0.00 0.01 0.00 +octidi octidi NOM m s 0.00 0.07 0.00 0.07 +octobre octobre NOM m 11.78 36.28 11.78 36.28 +octogonal octogonal ADJ m s 0.23 1.82 0.20 0.74 +octogonale octogonal ADJ f s 0.23 1.82 0.03 0.95 +octogonales octogonal ADJ f p 0.23 1.82 0.00 0.07 +octogonaux octogonal ADJ m p 0.23 1.82 0.00 0.07 +octogone octogone NOM m s 0.04 0.61 0.04 0.41 +octogones octogone NOM m p 0.04 0.61 0.00 0.20 +octogénaire octogénaire NOM s 0.22 0.41 0.21 0.27 +octogénaires octogénaire NOM p 0.22 0.41 0.01 0.14 +octosyllabe octosyllabe NOM m s 0.14 0.34 0.00 0.07 +octosyllabes octosyllabe NOM m p 0.14 0.34 0.14 0.27 +octroi octroi NOM m s 0.18 2.03 0.17 1.82 +octroie octroyer VER 1.35 3.58 0.41 0.47 ind:pre:1s;ind:pre:3s; +octroient octroyer VER 1.35 3.58 0.03 0.14 ind:pre:3p; +octroiera octroyer VER 1.35 3.58 0.02 0.07 ind:fut:3s; +octrois octroi NOM m p 0.18 2.03 0.01 0.20 +octroya octroyer VER 1.35 3.58 0.01 0.47 ind:pas:3s; +octroyaient octroyer VER 1.35 3.58 0.00 0.27 ind:imp:3p; +octroyait octroyer VER 1.35 3.58 0.01 0.20 ind:imp:3s; +octroyant octroyer VER 1.35 3.58 0.02 0.14 par:pre; +octroyer octroyer VER 1.35 3.58 0.11 0.27 inf; +octroyons octroyer VER 1.35 3.58 0.01 0.07 ind:pre:1p; +octroyât octroyer VER 1.35 3.58 0.00 0.07 sub:imp:3s; +octroyé octroyer VER m s 1.35 3.58 0.59 0.88 par:pas; +octroyée octroyer VER f s 1.35 3.58 0.13 0.27 par:pas; +octroyées octroyer VER f p 1.35 3.58 0.00 0.14 par:pas; +octroyés octroyer VER m p 1.35 3.58 0.00 0.14 par:pas; +octuor octuor NOM m s 0.01 0.14 0.01 0.14 +octuple octuple ADJ f s 0.02 0.00 0.02 0.00 +océan océan NOM m s 24.89 28.78 22.86 24.93 +océane océan ADJ f s 0.02 0.47 0.02 0.47 +océanienne océanien ADJ f s 0.00 0.07 0.00 0.07 +océanique océanique ADJ s 0.26 0.81 0.22 0.68 +océaniques océanique ADJ m p 0.26 0.81 0.04 0.14 +océanographe océanographe NOM s 0.07 0.00 0.07 0.00 +océanographie océanographie NOM f s 0.05 0.00 0.05 0.00 +océanographique océanographique ADJ s 0.33 0.00 0.30 0.00 +océanographiques océanographique ADJ m p 0.33 0.00 0.03 0.00 +océanologie océanologie NOM f s 0.01 0.00 0.01 0.00 +océanologue océanologue NOM s 0.08 0.00 0.08 0.00 +océans océan NOM m p 24.89 28.78 2.03 3.85 +oculaire oculaire ADJ s 3.36 0.81 1.98 0.20 +oculaires oculaire ADJ p 3.36 0.81 1.38 0.61 +oculi oculus NOM m p 0.02 0.00 0.01 0.00 +oculiste oculiste NOM s 0.37 0.81 0.37 0.74 +oculistes oculiste NOM p 0.37 0.81 0.00 0.07 +oculomoteur oculomoteur ADJ m s 0.01 0.00 0.01 0.00 +oculus oculus NOM m 0.02 0.00 0.01 0.00 +ocytocine ocytocine NOM f s 0.03 0.00 0.03 0.00 +odalisque odalisque NOM f s 0.38 1.28 0.22 0.54 +odalisques odalisque NOM f p 0.38 1.28 0.16 0.74 +ode ode NOM f s 0.96 0.81 0.94 0.61 +odelette odelette NOM f s 0.01 0.07 0.01 0.00 +odelettes odelette NOM f p 0.01 0.07 0.00 0.07 +odes ode NOM f p 0.96 0.81 0.03 0.20 +odeur odeur NOM f s 49.57 195.68 47.19 159.86 +odeurs odeur NOM f p 49.57 195.68 2.38 35.81 +odieuse odieux ADJ f s 8.59 14.32 2.14 3.78 +odieusement odieusement ADV 0.03 0.61 0.03 0.61 +odieuses odieux ADJ f p 8.59 14.32 0.23 1.01 +odieux odieux ADJ m 8.59 14.32 6.22 9.53 +odomètre odomètre NOM m s 0.10 0.00 0.10 0.00 +odontologie odontologie NOM f s 0.13 0.00 0.13 0.00 +odontologiste odontologiste NOM s 0.01 0.00 0.01 0.00 +odontologues odontologue NOM p 0.01 0.00 0.01 0.00 +odorant odorant ADJ m s 0.66 6.82 0.08 1.49 +odorante odorant ADJ f s 0.66 6.82 0.16 3.11 +odorantes odorant ADJ f p 0.66 6.82 0.40 1.35 +odorants odorant ADJ m p 0.66 6.82 0.03 0.88 +odorat odorat NOM m s 1.28 2.57 1.28 2.57 +odoriférant odoriférant ADJ m s 0.01 0.74 0.00 0.14 +odoriférante odoriférant ADJ f s 0.01 0.74 0.00 0.20 +odoriférantes odoriférant ADJ f p 0.01 0.74 0.01 0.14 +odoriférants odoriférant ADJ m p 0.01 0.74 0.00 0.27 +odéon odéon NOM m s 0.00 0.34 0.00 0.34 +odyssée odyssée NOM f s 0.24 1.01 0.23 0.95 +odyssées odyssée NOM f p 0.24 1.01 0.01 0.07 +oecuménique oecuménique ADJ s 0.33 0.41 0.33 0.34 +oecuméniques oecuménique ADJ f p 0.33 0.41 0.00 0.07 +oecuménisme oecuménisme NOM m s 0.01 0.34 0.01 0.34 +oedipe oedipe NOM m s 0.14 0.41 0.14 0.41 +oedipien oedipien ADJ m s 0.07 0.14 0.06 0.14 +oedipienne oedipien ADJ f s 0.07 0.14 0.01 0.00 +oedème oedème NOM m s 1.26 0.61 1.25 0.54 +oedèmes oedème NOM m p 1.26 0.61 0.01 0.07 +oedémateuse oedémateux ADJ f s 0.01 0.00 0.01 0.00 +oeil_de_boeuf oeil_de_boeuf NOM m s 0.00 0.95 0.00 0.47 +oeil oeil NOM m s 413.04 1234.59 97.13 278.51 +oeillade oeillade NOM f s 0.05 1.82 0.02 0.74 +oeillades oeillade NOM f p 0.05 1.82 0.03 1.08 +oeillet oeillet NOM m s 3.53 6.08 0.39 2.09 +oeilleton oeilleton NOM m s 0.00 1.35 0.00 1.15 +oeilletons oeilleton NOM m p 0.00 1.35 0.00 0.20 +oeillets oeillet NOM m p 3.53 6.08 3.13 3.99 +oeillette oeillette NOM f s 0.00 0.14 0.00 0.14 +oeillère oeillère NOM f s 0.44 1.82 0.00 0.07 +oeillères oeillère NOM f p 0.44 1.82 0.44 1.76 +oeil_de_boeuf oeil_de_boeuf NOM m p 0.00 0.95 0.00 0.47 +oeil_de_perdrix oeil_de_perdrix NOM m p 0.00 0.14 0.00 0.14 +oeils oeil NOM m p 413.04 1234.59 0.01 0.41 +oenologie oenologie NOM f s 0.01 0.00 0.01 0.00 +oenologique oenologique ADJ f s 0.00 0.07 0.00 0.07 +oenologues oenologue NOM p 0.00 0.14 0.00 0.14 +oenophile oenophile ADJ s 0.00 0.07 0.00 0.07 +oenothera oenothera NOM m s 0.01 0.00 0.01 0.00 +oenothère oenothère NOM m s 0.00 0.07 0.00 0.07 +oesophage oesophage NOM m s 0.48 1.22 0.48 1.08 +oesophages oesophage NOM m p 0.48 1.22 0.00 0.14 +oesophagien oesophagien ADJ m s 0.06 0.00 0.02 0.00 +oesophagienne oesophagien ADJ f s 0.06 0.00 0.01 0.00 +oesophagiennes oesophagien ADJ f p 0.06 0.00 0.03 0.00 +oestrogène oestrogène NOM m s 0.28 0.14 0.04 0.00 +oestrogènes oestrogène NOM m p 0.28 0.14 0.24 0.14 +oeuf oeuf NOM m s 39.40 50.14 13.53 20.34 +oeufs oeuf NOM m p 39.40 50.14 25.88 29.80 +oeuvraient oeuvrer VER 2.08 4.26 0.00 0.20 ind:imp:3p; +oeuvrait oeuvrer VER 2.08 4.26 0.14 0.61 ind:imp:3s; +oeuvrant oeuvrer VER 2.08 4.26 0.14 0.54 par:pre; +oeuvre oeuvre NOM s 30.10 92.23 23.38 68.11 +oeuvrent oeuvrer VER 2.08 4.26 0.16 0.20 ind:pre:3p; +oeuvrer oeuvrer VER 2.08 4.26 0.41 1.01 inf; +oeuvrera oeuvrer VER 2.08 4.26 0.03 0.00 ind:fut:3s; +oeuvres oeuvre NOM p 30.10 92.23 6.72 24.12 +oeuvrette oeuvrette NOM f s 0.00 0.20 0.00 0.07 +oeuvrettes oeuvrette NOM f p 0.00 0.20 0.00 0.14 +oeuvrez oeuvrer VER 2.08 4.26 0.03 0.00 imp:pre:2p; +oeuvrions oeuvrer VER 2.08 4.26 0.00 0.07 ind:imp:1p; +oeuvré oeuvrer VER m s 2.08 4.26 0.11 0.74 par:pas; +off_shore off_shore NOM m s 0.07 0.00 0.07 0.00 +off off ADJ 3.27 0.54 3.27 0.54 +offensa offenser VER 15.78 6.35 0.03 0.07 ind:pas:3s; +offensaient offenser VER 15.78 6.35 0.00 0.20 ind:imp:3p; +offensais offenser VER 15.78 6.35 0.00 0.07 ind:imp:1s; +offensait offenser VER 15.78 6.35 0.13 0.54 ind:imp:3s; +offensant offensant ADJ m s 0.93 1.01 0.82 0.34 +offensante offensant ADJ f s 0.93 1.01 0.07 0.41 +offensantes offensant ADJ f p 0.93 1.01 0.01 0.07 +offensants offensant ADJ m p 0.93 1.01 0.02 0.20 +offense offense NOM f s 7.45 3.24 5.41 2.03 +offensent offenser VER 15.78 6.35 0.34 0.34 ind:pre:3p; +offenser offenser VER 15.78 6.35 6.59 1.76 inf; +offensera offenser VER 15.78 6.35 0.04 0.00 ind:fut:3s; +offenserai offenser VER 15.78 6.35 0.01 0.07 ind:fut:1s; +offenseraient offenser VER 15.78 6.35 0.11 0.14 cnd:pre:3p; +offenserais offenser VER 15.78 6.35 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +offenserez offenser VER 15.78 6.35 0.01 0.00 ind:fut:2p; +offenseront offenser VER 15.78 6.35 0.01 0.00 ind:fut:3p; +offenses offense NOM f p 7.45 3.24 2.04 1.22 +offenseur offenseur NOM m s 0.66 0.14 0.55 0.14 +offenseurs offenseur NOM m p 0.66 0.14 0.11 0.00 +offensez offenser VER 15.78 6.35 0.64 0.07 imp:pre:2p;ind:pre:2p; +offensif offensif ADJ m s 0.85 2.36 0.32 0.61 +offensifs offensif ADJ m p 0.85 2.36 0.07 0.07 +offensive offensive NOM f s 3.12 12.30 2.91 11.96 +offensives offensive NOM f p 3.12 12.30 0.21 0.34 +offensons offenser VER 15.78 6.35 0.00 0.07 ind:pre:1p; +offensèrent offenser VER 15.78 6.35 0.00 0.07 ind:pas:3p; +offensé offenser VER m s 15.78 6.35 4.09 1.55 par:pas; +offensée offenser VER f s 15.78 6.35 0.97 0.47 par:pas; +offensées offensé ADJ f p 2.19 2.09 0.17 0.14 +offensés offenser VER m p 15.78 6.35 1.15 0.14 par:pas; +offert offrir VER m s 177.80 213.99 34.01 28.51 par:pas; +offerte offrir VER f s 177.80 213.99 5.08 12.03 par:pas; +offertes offrir VER f p 177.80 213.99 0.93 3.85 par:pas; +offertoire offertoire NOM m s 0.00 0.34 0.00 0.34 +offerts offrir VER m p 177.80 213.99 1.41 3.45 par:pas; +office office NOM s 6.37 25.00 6.13 21.28 +offices office NOM m p 6.37 25.00 0.25 3.72 +officiaient officier VER 7.15 6.69 0.00 0.41 ind:imp:3p; +officiais officier VER 7.15 6.69 0.00 0.14 ind:imp:1s; +officiait officier VER 7.15 6.69 0.05 1.08 ind:imp:3s; +official official NOM m s 0.03 0.00 0.03 0.00 +officialisait officialiser VER 0.23 0.07 0.00 0.07 ind:imp:3s; +officialise officialiser VER 0.23 0.07 0.03 0.00 ind:pre:1s;ind:pre:3s; +officialiser officialiser VER 0.23 0.07 0.14 0.00 inf; +officialisez officialiser VER 0.23 0.07 0.01 0.00 imp:pre:2p; +officialisé officialiser VER m s 0.23 0.07 0.04 0.00 par:pas; +officialité officialité NOM f s 0.00 0.20 0.00 0.20 +officiant officiant NOM m s 0.21 1.62 0.21 1.08 +officiants officiant ADJ m p 0.01 0.20 0.01 0.07 +officie officier VER 7.15 6.69 0.08 0.61 ind:pre:1s;ind:pre:3s; +officiel officiel ADJ m s 21.36 32.84 9.54 11.89 +officielle officiel ADJ f s 21.36 32.84 8.45 12.09 +officiellement officiellement ADV 10.41 7.36 10.41 7.36 +officielles officiel ADJ f p 21.36 32.84 1.59 4.05 +officiels officiel ADJ m p 21.36 32.84 1.78 4.80 +officient officier VER 7.15 6.69 0.01 0.07 ind:pre:3p; +officier officier NOM m s 55.35 79.05 35.47 35.68 +officiers officier NOM m p 55.35 79.05 19.87 43.38 +officieuse officielle ADJ f s 0.53 0.47 0.38 0.20 +officieusement officieusement ADV 1.13 0.54 1.13 0.54 +officieuses officielle ADJ f p 0.53 0.47 0.15 0.27 +officieux officieux ADJ m 0.92 0.88 0.92 0.88 +officiez officier VER 7.15 6.69 0.02 0.00 ind:pre:2p; +officine officine NOM f s 0.17 2.64 0.17 1.96 +officines officine NOM f p 0.17 2.64 0.00 0.68 +officions officier VER 7.15 6.69 0.01 0.00 ind:pre:1p; +officière officier NOM f s 55.35 79.05 0.01 0.00 +officié officier VER m s 7.15 6.69 0.05 0.00 par:pas; +offrît offrir VER 177.80 213.99 0.00 0.47 sub:imp:3s; +offraient offrir VER 177.80 213.99 0.71 8.38 ind:imp:3p; +offrais offrir VER 177.80 213.99 0.81 1.96 ind:imp:1s;ind:imp:2s; +offrait offrir VER 177.80 213.99 2.96 31.76 ind:imp:3s; +offrande offrande NOM f s 4.54 6.89 3.97 4.53 +offrandes offrande NOM f p 4.54 6.89 0.57 2.36 +offrant offrir VER 177.80 213.99 2.13 10.54 par:pre; +offrante offrant ADJ f s 1.09 0.47 0.01 0.00 +offrantes offrant ADJ f p 1.09 0.47 0.00 0.07 +offrants offrant ADJ m p 1.09 0.47 0.02 0.00 +offre offrir VER 177.80 213.99 51.81 29.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +offrent offrir VER 177.80 213.99 4.29 4.53 ind:pre:3p; +offres offrir VER 177.80 213.99 4.78 0.68 ind:pre:2s;sub:pre:2s; +offrez offrir VER 177.80 213.99 5.50 1.01 imp:pre:2p;ind:pre:2p; +offriez offrir VER 177.80 213.99 0.26 0.14 ind:imp:2p; +offrions offrir VER 177.80 213.99 0.07 0.34 ind:imp:1p; +offrir offrir VER 177.80 213.99 52.06 50.34 inf;; +offrira offrir VER 177.80 213.99 1.15 1.15 ind:fut:3s; +offrirai offrir VER 177.80 213.99 1.92 0.81 ind:fut:1s; +offriraient offrir VER 177.80 213.99 0.02 0.54 cnd:pre:3p; +offrirais offrir VER 177.80 213.99 1.23 0.34 cnd:pre:1s;cnd:pre:2s; +offrirait offrir VER 177.80 213.99 0.70 2.43 cnd:pre:3s; +offriras offrir VER 177.80 213.99 0.73 0.00 ind:fut:2s; +offrirent offrir VER 177.80 213.99 0.02 1.35 ind:pas:3p; +offrirez offrir VER 177.80 213.99 0.13 0.20 ind:fut:2p; +offririez offrir VER 177.80 213.99 0.06 0.07 cnd:pre:2p; +offrirons offrir VER 177.80 213.99 0.37 0.07 ind:fut:1p; +offriront offrir VER 177.80 213.99 0.24 0.27 ind:fut:3p; +offris offrir VER 177.80 213.99 0.06 1.69 ind:pas:1s; +offrit offrir VER 177.80 213.99 1.55 16.55 ind:pas:3s; +offrons offrir VER 177.80 213.99 2.81 0.74 imp:pre:1p;ind:pre:1p; +offset offset NOM s 0.01 0.20 0.01 0.20 +offshore offshore ADJ 0.43 0.00 0.43 0.00 +offuscation offuscation NOM f s 0.00 0.14 0.00 0.07 +offuscations offuscation NOM f p 0.00 0.14 0.00 0.07 +offusqua offusquer VER 1.04 4.93 0.01 0.47 ind:pas:3s; +offusquaient offusquer VER 1.04 4.93 0.00 0.41 ind:imp:3p; +offusquais offusquer VER 1.04 4.93 0.01 0.07 ind:imp:1s; +offusquait offusquer VER 1.04 4.93 0.01 0.68 ind:imp:3s; +offusquant offusquant ADJ m s 0.03 0.07 0.03 0.07 +offusque offusquer VER 1.04 4.93 0.30 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +offusquent offusquer VER 1.04 4.93 0.01 0.20 ind:pre:3p; +offusquer offusquer VER 1.04 4.93 0.23 0.74 inf; +offusquerai offusquer VER 1.04 4.93 0.04 0.00 ind:fut:1s; +offusquerait offusquer VER 1.04 4.93 0.01 0.00 cnd:pre:3s; +offusquerez offusquer VER 1.04 4.93 0.01 0.00 ind:fut:2p; +offusques offusquer VER 1.04 4.93 0.00 0.07 ind:pre:2s; +offusquât offusquer VER 1.04 4.93 0.00 0.07 sub:imp:3s; +offusquèrent offusquer VER 1.04 4.93 0.00 0.14 ind:pas:3p; +offusqué offusquer VER m s 1.04 4.93 0.27 0.34 par:pas; +offusquée offusquer VER f s 1.04 4.93 0.12 0.61 par:pas; +offusquées offusquer VER f p 1.04 4.93 0.00 0.14 par:pas; +offusqués offusquer VER m p 1.04 4.93 0.00 0.20 par:pas; +oflag oflag NOM m s 0.00 0.27 0.00 0.20 +oflags oflag NOM m p 0.00 0.27 0.00 0.07 +âge âge NOM m s 152.59 217.43 150.45 205.27 +âges âge NOM m p 152.59 217.43 2.13 12.16 +âgisme âgisme NOM m s 0.02 0.00 0.02 0.00 +ogival ogival ADJ m s 0.00 0.41 0.00 0.41 +ogive ogive NOM f s 2.35 3.45 1.40 1.69 +ogives ogive NOM f p 2.35 3.45 0.95 1.76 +ognons ognon NOM m p 0.11 0.00 0.11 0.00 +ogre ogre NOM m s 2.83 5.95 2.52 4.66 +ogres ogre NOM m p 2.83 5.95 0.30 1.28 +ogresse ogresse NOM f s 0.31 1.89 0.31 1.55 +ogresses ogresse NOM f p 0.31 1.89 0.00 0.34 +âgé âgé ADJ m s 19.81 30.74 7.67 14.39 +âgée âgé ADJ f s 19.81 30.74 7.75 8.92 +âgées âgé ADJ f p 19.81 30.74 1.91 1.69 +âgés âgé ADJ m p 19.81 30.74 2.48 5.74 +oh oh ONO 897.52 197.09 897.52 197.09 +ohms ohm NOM m p 0.02 0.14 0.02 0.14 +ohé ohé ONO 5.24 1.28 5.24 1.28 +oie oie NOM f s 9.15 9.32 5.42 5.20 +oies oie NOM f p 9.15 9.32 3.73 4.12 +oignait oindre VER 0.56 1.62 0.00 0.14 ind:imp:3s; +oignant oindre VER 0.56 1.62 0.00 0.07 par:pre; +oigne oindre VER 0.56 1.62 0.14 0.07 sub:pre:1s;sub:pre:3s; +oignes oindre VER 0.56 1.62 0.00 0.20 sub:pre:2s; +oignez oindre VER 0.56 1.62 0.03 0.00 imp:pre:2p; +oignit oindre VER 0.56 1.62 0.00 0.07 ind:pas:3s; +oignon oignon NOM m s 19.98 15.54 4.35 5.34 +oignons oignon NOM m p 19.98 15.54 15.63 10.20 +oille oille NOM f s 0.00 0.07 0.00 0.07 +oindra oindre VER 0.56 1.62 0.00 0.07 ind:fut:3s; +oindre oindre VER 0.56 1.62 0.12 0.20 inf; +oing oing NOM m s 0.00 0.07 0.00 0.07 +oins oindre VER 0.56 1.62 0.16 0.07 ind:pre:1s;ind:pre:2s; +oint oint NOM m s 0.10 0.27 0.10 0.14 +ointe oindre VER f s 0.56 1.62 0.00 0.20 par:pas; +ointes oindre VER f p 0.56 1.62 0.00 0.27 par:pas; +oints oint NOM m p 0.10 0.27 0.00 0.14 +ois ouïr VER 5.72 3.78 1.16 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +oiseau_clé oiseau_clé NOM m s 0.01 0.00 0.01 0.00 +oiseau_lyre oiseau_lyre NOM m s 0.00 0.07 0.00 0.07 +oiseau_mouche oiseau_mouche NOM m s 0.10 0.27 0.08 0.14 +oiseau_vedette oiseau_vedette NOM m s 0.01 0.00 0.01 0.00 +oiseau oiseau NOM m s 77.73 113.04 43.78 47.97 +oiseau_mouche oiseau_mouche NOM m p 0.10 0.27 0.01 0.14 +oiseaux oiseau NOM m p 77.73 113.04 33.96 65.07 +oiselet oiselet NOM m s 0.13 0.54 0.12 0.34 +oiselets oiselet NOM m p 0.13 0.54 0.01 0.20 +oiseleur oiseleur NOM m s 0.07 0.54 0.06 0.47 +oiseleurs oiseleur NOM m p 0.07 0.54 0.01 0.07 +oiselez oiseler VER 0.00 0.07 0.00 0.07 imp:pre:2p; +oiselier oiselier NOM m s 0.01 0.20 0.00 0.07 +oiseliers oiselier NOM m p 0.01 0.20 0.01 0.07 +oiselière oiselier NOM f s 0.01 0.20 0.00 0.07 +oiselle oiselle NOM f s 0.08 0.41 0.06 0.34 +oisellerie oisellerie NOM f s 0.04 0.00 0.04 0.00 +oiselles oiselle NOM f p 0.08 0.41 0.02 0.07 +oiseuse oiseux ADJ f s 0.28 2.36 0.01 0.47 +oiseuses oiseux ADJ f p 0.28 2.36 0.13 1.01 +oiseux oiseux ADJ m 0.28 2.36 0.14 0.88 +oisif oisif ADJ m s 0.85 2.03 0.36 0.41 +oisifs oisif NOM m p 0.10 1.28 0.06 1.01 +oisillon oisillon NOM m s 0.46 1.22 0.30 0.68 +oisillons oisillon NOM m p 0.46 1.22 0.15 0.54 +oisive oisif ADJ f s 0.85 2.03 0.35 0.95 +oisivement oisivement ADV 0.02 0.00 0.02 0.00 +oisives oisif ADJ f p 0.85 2.03 0.08 0.20 +oisiveté oisiveté NOM f s 0.59 3.65 0.59 3.65 +oison oison NOM m s 0.02 0.07 0.02 0.00 +oisons oison NOM m p 0.02 0.07 0.00 0.07 +oit ouïr VER 5.72 3.78 0.13 0.00 ind:pre:3s; +ok ok ADJ 234.89 1.15 234.89 1.15 +oka oka NOM m s 0.00 0.07 0.00 0.07 +okapi okapi NOM m s 0.08 0.00 0.08 0.00 +okoumé okoumé NOM m s 0.00 0.14 0.00 0.14 +ola ola NOM f s 1.31 0.00 1.31 0.00 +olfactif olfactif ADJ m s 0.47 1.01 0.11 0.54 +olfactifs olfactif ADJ m p 0.47 1.01 0.03 0.07 +olfactive olfactif ADJ f s 0.47 1.01 0.06 0.27 +olfactives olfactif ADJ f p 0.47 1.01 0.28 0.14 +olfactomètre olfactomètre NOM m s 0.00 0.07 0.00 0.07 +olibrius olibrius NOM m 0.03 0.20 0.03 0.20 +olifant olifant NOM m s 0.14 0.41 0.14 0.41 +oligarchie oligarchie NOM f s 0.12 0.07 0.12 0.07 +oligo_élément oligo_élément NOM m p 0.00 0.14 0.00 0.14 +olivaies olivaie NOM f p 0.00 0.07 0.00 0.07 +olive olive NOM f s 5.42 8.85 2.54 4.12 +oliver oliver NOM m s 0.06 0.00 0.06 0.00 +oliveraie oliveraie NOM f s 1.08 0.47 1.08 0.07 +oliveraies oliveraie NOM f p 1.08 0.47 0.00 0.41 +olives olive NOM f p 5.42 8.85 2.88 4.73 +olivette olivette NOM f s 0.00 0.68 0.00 0.07 +olivettes olivette NOM f p 0.00 0.68 0.00 0.61 +olivier olivier NOM m s 2.09 12.84 0.77 4.19 +oliviers olivier NOM m p 2.09 12.84 1.32 8.65 +olivine olivine NOM f s 0.05 0.00 0.05 0.00 +olivâtre olivâtre ADJ s 0.00 1.15 0.00 0.81 +olivâtres olivâtre ADJ f p 0.00 1.15 0.00 0.34 +olla_podrida olla_podrida NOM f 0.00 0.07 0.00 0.07 +ollé ollé ONO 0.02 0.00 0.02 0.00 +olmèque olmèque ADJ s 0.01 0.00 0.01 0.00 +olmèques olmèque NOM p 0.00 0.07 0.00 0.07 +olographe olographe ADJ m s 0.00 0.14 0.00 0.14 +olé_olé olé_olé ADJ m p 0.00 0.14 0.00 0.14 +olé olé ONO 2.37 0.47 2.37 0.47 +oléagineux oléagineux NOM m 0.00 0.07 0.00 0.07 +olécrane olécrane NOM m s 0.01 0.00 0.01 0.00 +olécrâne olécrâne NOM m s 0.00 0.07 0.00 0.07 +oléfine oléfine NOM f s 0.03 0.00 0.03 0.00 +oléiculteurs oléiculteur NOM m p 0.00 0.07 0.00 0.07 +oléine oléine NOM f s 0.00 0.07 0.00 0.07 +oléoduc oléoduc NOM m s 0.31 0.07 0.26 0.00 +oléoducs oléoduc NOM m p 0.31 0.07 0.05 0.07 +olympe olympe NOM m s 0.01 0.20 0.01 0.14 +olympes olympe NOM m p 0.01 0.20 0.00 0.07 +olympiade olympiade NOM f s 0.36 0.20 0.10 0.07 +olympiades olympiade NOM f p 0.36 0.20 0.26 0.14 +olympien olympien ADJ m s 0.08 2.03 0.07 1.35 +olympienne olympien ADJ f s 0.08 2.03 0.00 0.54 +olympiens olympien ADJ m p 0.08 2.03 0.01 0.14 +olympique olympique ADJ s 3.62 1.69 1.68 1.28 +olympiques olympique ADJ p 3.62 1.69 1.94 0.41 +omît omettre VER 2.73 6.42 0.00 0.07 sub:imp:3s; +omani omani ADJ m s 0.01 0.00 0.01 0.00 +ombelle ombelle NOM f s 0.01 0.74 0.00 0.07 +ombelles ombelle NOM f p 0.01 0.74 0.01 0.68 +ombellifères ombellifère NOM f p 0.00 0.20 0.00 0.20 +ombilic ombilic NOM m s 0.07 0.20 0.07 0.20 +ombilical ombilical ADJ m s 0.78 1.89 0.57 1.76 +ombilicale ombilical ADJ f s 0.78 1.89 0.19 0.00 +ombilicaux ombilical ADJ m p 0.78 1.89 0.02 0.14 +omble omble NOM m s 0.03 0.14 0.01 0.07 +ombles omble NOM m p 0.03 0.14 0.02 0.07 +ombra ombrer VER 0.54 2.50 0.00 0.07 ind:pas:3s; +ombrage ombrage NOM m s 0.57 2.64 0.46 1.28 +ombragea ombrager VER 0.03 2.77 0.00 0.07 ind:pas:3s; +ombrageaient ombrager VER 0.03 2.77 0.00 0.20 ind:imp:3p; +ombrageait ombrager VER 0.03 2.77 0.00 0.27 ind:imp:3s; +ombragent ombrager VER 0.03 2.77 0.00 0.27 ind:pre:3p; +ombrager ombrager VER 0.03 2.77 0.00 0.20 inf; +ombrages ombrage NOM m p 0.57 2.64 0.11 1.35 +ombrageuse ombrageux ADJ f s 0.45 2.84 0.14 0.81 +ombrageusement ombrageusement ADV 0.00 0.07 0.00 0.07 +ombrageuses ombrageux ADJ f p 0.45 2.84 0.00 0.14 +ombrageux ombrageux ADJ m 0.45 2.84 0.31 1.89 +ombragé ombragé ADJ m s 0.17 0.95 0.13 0.68 +ombragée ombragé ADJ f s 0.17 0.95 0.01 0.20 +ombragées ombrager VER f p 0.03 2.77 0.00 0.27 par:pas; +ombragés ombragé ADJ m p 0.17 0.95 0.03 0.00 +ombraient ombrer VER 0.54 2.50 0.00 0.07 ind:imp:3p; +ombrait ombrer VER 0.54 2.50 0.00 0.20 ind:imp:3s; +ombrant ombrer VER 0.54 2.50 0.00 0.14 par:pre; +ombre ombre NOM s 45.67 233.45 35.98 190.61 +ombrelle ombrelle NOM f s 0.97 4.80 0.86 3.72 +ombrelles ombrelle NOM f p 0.97 4.80 0.11 1.08 +ombrer ombrer VER 0.54 2.50 0.13 0.20 inf; +ombres ombre NOM p 45.67 233.45 9.70 42.84 +ombreuse ombreux ADJ f s 0.00 2.43 0.00 0.68 +ombreuses ombreux ADJ f p 0.00 2.43 0.00 0.95 +ombreux ombreux ADJ m 0.00 2.43 0.00 0.81 +ombré ombrer VER m s 0.54 2.50 0.01 0.34 par:pas; +ombrée ombrer VER f s 0.54 2.50 0.00 0.27 par:pas; +ombrées ombrée NOM f p 0.54 0.07 0.54 0.00 +ombrés ombrer VER m p 0.54 2.50 0.00 0.47 par:pas; +âme_soeur âme_soeur NOM f s 0.04 0.14 0.04 0.14 +âme âme NOM f s 141.59 151.62 122.22 129.53 +omelette omelette NOM f s 6.87 6.42 6.42 5.14 +omelettes omelette NOM f p 6.87 6.42 0.45 1.28 +omerta omerta NOM f s 0.14 0.14 0.14 0.14 +âmes âme NOM f p 141.59 151.62 19.37 22.09 +omet omettre VER 2.73 6.42 0.13 0.20 ind:pre:3s; +omets omettre VER 2.73 6.42 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +omettaient omettre VER 2.73 6.42 0.00 0.07 ind:imp:3p; +omettais omettre VER 2.73 6.42 0.00 0.07 ind:imp:1s; +omettait omettre VER 2.73 6.42 0.00 0.27 ind:imp:3s; +omettant omettre VER 2.73 6.42 0.10 0.54 par:pre; +omette omettre VER 2.73 6.42 0.00 0.07 sub:pre:3s; +omettent omettre VER 2.73 6.42 0.01 0.20 ind:pre:3p; +omettez omettre VER 2.73 6.42 0.24 0.00 imp:pre:2p;ind:pre:2p; +omettiez omettre VER 2.73 6.42 0.01 0.07 ind:imp:2p; +omettrai omettre VER 2.73 6.42 0.03 0.07 ind:fut:1s; +omettre omettre VER 2.73 6.42 0.35 0.74 inf; +omettrez omettre VER 2.73 6.42 0.01 0.00 ind:fut:2p; +omicron omicron NOM m s 0.12 0.07 0.12 0.07 +omis omettre VER m 2.73 6.42 1.74 3.58 par:pas; +omise omettre VER f s 2.73 6.42 0.04 0.14 par:pas; +omises omettre VER f p 2.73 6.42 0.03 0.07 par:pas; +omission omission NOM f s 1.02 2.09 0.78 1.76 +omissions omission NOM f p 1.02 2.09 0.25 0.34 +omit omettre VER 2.73 6.42 0.00 0.20 ind:pas:3s; +omni omni ADV 0.21 0.27 0.21 0.27 +omnibus omnibus NOM m 0.37 1.28 0.37 1.28 +omnidirectionnel omnidirectionnel ADJ m s 0.03 0.00 0.02 0.00 +omnidirectionnelle omnidirectionnel ADJ f s 0.03 0.00 0.01 0.00 +omnipotence omnipotence NOM f s 0.16 0.74 0.16 0.74 +omnipotent omnipotent ADJ m s 0.16 1.28 0.14 0.54 +omnipotente omnipotent ADJ f s 0.16 1.28 0.01 0.74 +omnipotentes omnipotent ADJ f p 0.16 1.28 0.01 0.00 +omniprésence omniprésence NOM f s 0.11 0.34 0.11 0.34 +omniprésent omniprésent ADJ m s 0.69 2.16 0.53 0.81 +omniprésente omniprésent ADJ f s 0.69 2.16 0.08 1.08 +omniprésentes omniprésent ADJ f p 0.69 2.16 0.03 0.20 +omniprésents omniprésent ADJ m p 0.69 2.16 0.06 0.07 +omnipuissance omnipuissance NOM f s 0.00 0.07 0.00 0.07 +omniscience omniscience NOM f s 0.09 0.00 0.09 0.00 +omniscient omniscient ADJ m s 0.33 0.47 0.14 0.34 +omnisciente omniscient ADJ f s 0.33 0.47 0.05 0.07 +omniscients omniscient ADJ m p 0.33 0.47 0.14 0.07 +omnisports omnisports ADJ m s 0.01 1.28 0.01 1.28 +omnium omnium NOM m s 0.00 0.20 0.00 0.20 +omnivore omnivore ADJ m s 0.16 0.14 0.02 0.07 +omnivores omnivore ADJ f p 0.16 0.14 0.14 0.07 +omoplate omoplate NOM f s 0.66 5.74 0.48 1.55 +omoplates omoplate NOM f p 0.66 5.74 0.18 4.19 +omphalos omphalos NOM m 0.00 0.07 0.00 0.07 +oméga oméga NOM m s 0.88 0.88 0.88 0.88 +on_dit on_dit NOM m 0.14 0.81 0.14 0.81 +on_line on_line ADV 0.07 0.00 0.07 0.00 +on on PRO:per s 8586.40 4838.38 8586.40 4838.38 +onagre onagre NOM s 0.00 0.14 0.00 0.14 +onanisme onanisme NOM m s 0.10 0.47 0.10 0.41 +onanismes onanisme NOM m p 0.10 0.47 0.00 0.07 +onaniste onaniste NOM s 0.02 0.14 0.02 0.14 +onc onc ADV 0.03 0.14 0.03 0.14 +once once NOM f s 4.66 1.89 3.77 1.76 +onces once NOM f p 4.66 1.89 0.89 0.14 +oncle oncle NOM m s 126.71 127.70 124.11 121.96 +oncles oncle NOM m p 126.71 127.70 2.60 5.74 +oncologie oncologie NOM f s 0.35 0.00 0.35 0.00 +oncologique oncologique ADJ f s 0.01 0.00 0.01 0.00 +oncologue oncologue NOM s 0.22 0.00 0.21 0.00 +oncologues oncologue NOM p 0.22 0.00 0.01 0.00 +onction onction NOM f s 0.28 1.28 0.28 1.15 +onctions onction NOM f p 0.28 1.28 0.00 0.14 +onctueuse onctueux ADJ f s 0.24 4.73 0.17 1.96 +onctueusement onctueusement ADV 0.00 0.07 0.00 0.07 +onctueuses onctueux ADJ f p 0.24 4.73 0.00 0.27 +onctueux onctueux ADJ m 0.24 4.73 0.07 2.50 +onctuosité onctuosité NOM f s 0.01 0.61 0.01 0.61 +ondatra ondatra NOM m s 0.02 0.00 0.02 0.00 +onde onde NOM f s 11.91 17.70 4.39 6.01 +onder onder VER 0.01 0.00 0.01 0.00 inf; +ondes onde NOM f p 11.91 17.70 7.52 11.69 +ondin ondin NOM m s 0.20 0.81 0.00 0.20 +ondine ondin NOM f s 0.20 0.81 0.20 0.34 +ondines ondine NOM f p 0.01 0.00 0.01 0.00 +ondins ondin NOM m p 0.20 0.81 0.00 0.20 +ondoie ondoyer VER 0.01 2.84 0.00 0.07 ind:pre:1s; +ondoiement ondoiement NOM m s 0.00 0.54 0.00 0.47 +ondoiements ondoiement NOM m p 0.00 0.54 0.00 0.07 +ondoient ondoyer VER 0.01 2.84 0.00 0.14 ind:pre:3p; +ondoyaient ondoyer VER 0.01 2.84 0.00 0.47 ind:imp:3p; +ondoyait ondoyer VER 0.01 2.84 0.00 0.54 ind:imp:3s; +ondoyant ondoyer VER 0.01 2.84 0.01 0.95 par:pre; +ondoyante ondoyant ADJ f s 0.10 1.15 0.10 0.47 +ondoyantes ondoyant ADJ f p 0.10 1.15 0.00 0.14 +ondoyants ondoyant ADJ m p 0.10 1.15 0.00 0.27 +ondoyer ondoyer VER 0.01 2.84 0.00 0.47 inf; +ondoyons ondoyer VER 0.01 2.84 0.00 0.07 imp:pre:1p; +ondoyé ondoyer VER m s 0.01 2.84 0.00 0.14 par:pas; +ondée ondée ADJ f s 0.01 0.07 0.01 0.00 +ondées ondée NOM f p 0.16 2.30 0.16 0.47 +ondula onduler VER 1.28 12.03 0.00 0.47 ind:pas:3s; +ondulaient onduler VER 1.28 12.03 0.14 0.81 ind:imp:3p; +ondulait onduler VER 1.28 12.03 0.11 2.64 ind:imp:3s; +ondulant onduler VER 1.28 12.03 0.24 1.96 par:pre; +ondulante ondulant ADJ f s 0.20 1.55 0.17 0.95 +ondulantes ondulant ADJ f p 0.20 1.55 0.01 0.20 +ondulants ondulant ADJ m p 0.20 1.55 0.01 0.14 +ondulation ondulation NOM f s 0.26 6.01 0.05 2.03 +ondulations ondulation NOM f p 0.26 6.01 0.21 3.99 +ondulatoire ondulatoire ADJ s 0.01 0.34 0.00 0.27 +ondulatoires ondulatoire ADJ m p 0.01 0.34 0.01 0.07 +ondule onduler VER 1.28 12.03 0.27 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ondulent onduler VER 1.28 12.03 0.23 1.01 ind:pre:3p; +onduler onduler VER 1.28 12.03 0.23 2.09 inf; +ondulerait onduler VER 1.28 12.03 0.00 0.07 cnd:pre:3s; +onduleuse onduleux ADJ f s 0.00 1.62 0.00 0.68 +onduleuses onduleux ADJ f p 0.00 1.62 0.00 0.34 +onduleux onduleux ADJ m s 0.00 1.62 0.00 0.61 +ondulons onduler VER 1.28 12.03 0.00 0.07 ind:pre:1p; +ondulèrent onduler VER 1.28 12.03 0.00 0.07 ind:pas:3p; +ondulé ondulé ADJ m s 0.73 4.59 0.04 0.95 +ondulée ondulé ADJ f s 0.73 4.59 0.38 2.03 +ondulées ondulé ADJ f p 0.73 4.59 0.02 0.41 +ondulés ondulé ADJ m p 0.73 4.59 0.29 1.22 +ondés ondé ADJ m p 0.00 0.14 0.00 0.14 +one_step one_step NOM m s 0.00 0.20 0.00 0.20 +âne âne NOM m s 14.19 18.58 12.33 14.32 +ânerie ânerie NOM f s 1.96 2.70 0.32 0.81 +âneries ânerie NOM f p 1.96 2.70 1.64 1.89 +ânes âne NOM m p 14.19 18.58 1.86 4.26 +ânesse ânesse NOM f s 0.90 0.41 0.90 0.20 +ânesses ânesse NOM f p 0.90 0.41 0.00 0.20 +ongle ongle NOM m s 20.37 45.47 2.35 10.14 +ongles ongle NOM m p 20.37 45.47 18.02 35.34 +onglet onglet NOM m s 0.67 0.34 0.52 0.14 +onglets onglet NOM m p 0.67 0.34 0.14 0.20 +onglon onglon NOM m s 0.00 0.07 0.00 0.07 +onglée onglée ADJ f s 0.01 0.00 0.01 0.00 +onguent onguent NOM m s 0.93 1.82 0.79 0.54 +onguents onguent NOM m p 0.93 1.82 0.14 1.28 +ongulé ongulé NOM m s 0.09 0.00 0.08 0.00 +ongulés ongulé NOM m p 0.09 0.00 0.01 0.00 +ânier ânier NOM m s 0.00 0.54 0.00 0.54 +onirique onirique ADJ s 0.17 0.41 0.04 0.34 +oniriques onirique ADJ p 0.17 0.41 0.13 0.07 +onirisme onirisme NOM m s 0.14 0.00 0.14 0.00 +onirologie onirologie NOM f s 0.00 0.07 0.00 0.07 +onomatopée onomatopée NOM f s 0.05 2.03 0.03 0.74 +onomatopées onomatopée NOM f p 0.05 2.03 0.02 1.28 +onomatopéique onomatopéique ADJ s 0.40 0.00 0.40 0.00 +ânon ânon NOM m s 0.17 0.47 0.16 0.41 +ânonna ânonner VER 0.16 2.50 0.00 0.27 ind:pas:3s; +ânonnaient ânonner VER 0.16 2.50 0.00 0.14 ind:imp:3p; +ânonnait ânonner VER 0.16 2.50 0.14 0.68 ind:imp:3s; +ânonnant ânonner VER 0.16 2.50 0.00 0.47 par:pre; +ânonne ânonner VER 0.16 2.50 0.00 0.27 ind:pre:1s;ind:pre:3s; +ânonnement ânonnement NOM m s 0.00 0.14 0.00 0.07 +ânonnements ânonnement NOM m p 0.00 0.14 0.00 0.07 +ânonner ânonner VER 0.16 2.50 0.02 0.54 inf; +ânonnions ânonner VER 0.16 2.50 0.00 0.07 ind:imp:1p; +ânonnés ânonner VER m p 0.16 2.50 0.00 0.07 par:pas; +ânons ânon NOM m p 0.17 0.47 0.01 0.07 +onopordons onopordon NOM m p 0.00 0.07 0.00 0.07 +ont avoir AUX 18559.23 12800.81 1063.32 553.31 ind:pre:3p; +onto onto ADV 0.05 0.07 0.05 0.07 +ontologie ontologie NOM f s 0.02 0.14 0.02 0.14 +ontologique ontologique ADJ s 0.04 0.34 0.04 0.34 +ontologiquement ontologiquement ADV 0.02 0.00 0.02 0.00 +onéreuse onéreux ADJ f s 0.84 1.08 0.21 0.14 +onéreuses onéreux ADJ f p 0.84 1.08 0.04 0.27 +onéreux onéreux ADJ m 0.84 1.08 0.60 0.68 +onusienne onusien ADJ f s 0.03 0.07 0.02 0.00 +onusiennes onusien ADJ f p 0.03 0.07 0.01 0.00 +onusiens onusien ADJ m p 0.03 0.07 0.00 0.07 +onyx onyx NOM m 0.34 0.61 0.34 0.61 +onze onze ADJ:num 11.27 38.85 11.27 38.85 +onzième onzième ADJ 0.34 1.49 0.34 1.49 +opacifiait opacifier VER 0.03 0.54 0.00 0.07 ind:imp:3s; +opacifiant opacifier VER 0.03 0.54 0.00 0.07 par:pre; +opacification opacification NOM f s 0.01 0.00 0.01 0.00 +opacifie opacifier VER 0.03 0.54 0.00 0.20 ind:pre:1s;ind:pre:3s; +opacifient opacifier VER 0.03 0.54 0.01 0.07 ind:pre:3p; +opacifier opacifier VER 0.03 0.54 0.01 0.07 inf; +opacifié opacifier VER m s 0.03 0.54 0.00 0.07 par:pas; +opacité opacité NOM f s 0.23 2.03 0.21 1.96 +opacités opacité NOM f p 0.23 2.03 0.03 0.07 +opale opale NOM f s 0.24 0.81 0.16 0.68 +opales opale NOM f p 0.24 0.81 0.08 0.14 +opalescence opalescence NOM f s 0.00 0.07 0.00 0.07 +opalescent opalescent ADJ m s 0.00 0.68 0.00 0.27 +opalescente opalescent ADJ f s 0.00 0.68 0.00 0.27 +opalescentes opalescent ADJ f p 0.00 0.68 0.00 0.14 +opalin opalin ADJ m s 0.02 0.74 0.00 0.41 +opaline opalin NOM f s 0.02 1.35 0.02 1.28 +opalines opalin NOM f p 0.02 1.35 0.00 0.07 +opalins opalin ADJ m p 0.02 0.74 0.01 0.14 +opaque opaque ADJ s 0.50 13.11 0.31 9.59 +opaques opaque ADJ p 0.50 13.11 0.19 3.51 +ope ope NOM s 0.08 0.00 0.08 0.00 +open open ADJ 1.75 0.00 1.75 0.00 +opercule opercule NOM m s 0.01 0.07 0.01 0.07 +ophidien ophidien NOM m s 0.02 0.07 0.01 0.00 +ophidiens ophidien NOM m p 0.02 0.07 0.01 0.07 +ophite ophite NOM m s 0.00 0.07 0.00 0.07 +ophtalmique ophtalmique ADJ f s 0.01 0.00 0.01 0.00 +ophtalmologie ophtalmologie NOM f s 0.09 0.07 0.09 0.07 +ophtalmologique ophtalmologique ADJ m s 0.02 0.00 0.02 0.00 +ophtalmologiste ophtalmologiste NOM s 0.09 0.61 0.09 0.54 +ophtalmologistes ophtalmologiste NOM p 0.09 0.61 0.00 0.07 +ophtalmologue ophtalmologue NOM s 0.04 0.07 0.04 0.07 +ophtalmoscope ophtalmoscope NOM m s 0.02 0.00 0.02 0.00 +opiacé opiacé NOM m s 0.58 0.00 0.06 0.00 +opiacées opiacé ADJ f p 0.19 0.00 0.14 0.00 +opiacés opiacé NOM m p 0.58 0.00 0.52 0.00 +opiat opiat NOM m s 0.03 0.20 0.01 0.00 +opiats opiat NOM m p 0.03 0.20 0.01 0.20 +opimes opimes ADJ f p 0.01 0.00 0.01 0.00 +opina opiner VER 0.38 4.46 0.10 0.95 ind:pas:3s; +opinai opiner VER 0.38 4.46 0.00 0.20 ind:pas:1s; +opinaient opiner VER 0.38 4.46 0.00 0.07 ind:imp:3p; +opinais opiner VER 0.38 4.46 0.00 0.14 ind:imp:1s; +opinait opiner VER 0.38 4.46 0.10 0.47 ind:imp:3s; +opinant opiner VER 0.38 4.46 0.00 0.14 par:pre; +opine opiner VER 0.38 4.46 0.02 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +opinel opinel NOM m s 0.00 1.22 0.00 1.15 +opinels opinel NOM m p 0.00 1.22 0.00 0.07 +opiner opiner VER 0.38 4.46 0.02 0.41 inf; +opines opiner VER 0.38 4.46 0.11 0.00 ind:pre:2s; +opinion opinion NOM f s 33.89 44.66 28.43 33.24 +opinions opinion NOM f p 33.89 44.66 5.47 11.42 +opiniâtra opiniâtrer VER 0.02 0.27 0.00 0.14 ind:pas:3s; +opiniâtre opiniâtre ADJ s 0.06 2.77 0.06 2.23 +opiniâtrement opiniâtrement ADV 0.02 0.27 0.02 0.27 +opiniâtres opiniâtre ADJ p 0.06 2.77 0.00 0.54 +opiniâtreté opiniâtreté NOM f s 0.01 1.76 0.01 1.76 +opiniâtrez opiniâtrer VER 0.02 0.27 0.00 0.07 ind:pre:2p; +opinèrent opiner VER 0.38 4.46 0.00 0.07 ind:pas:3p; +opiné opiner VER m s 0.38 4.46 0.01 0.34 par:pas; +opiomane opiomane ADJ f s 0.03 0.07 0.03 0.07 +opium opium NOM m s 3.95 5.61 3.95 5.61 +opopanax opopanax NOM m 0.00 0.07 0.00 0.07 +opoponax opoponax NOM m 0.00 0.07 0.00 0.07 +opossum opossum NOM m s 0.52 0.27 0.41 0.27 +opossums opossum NOM m p 0.52 0.27 0.12 0.00 +opothérapiques opothérapique ADJ f p 0.00 0.07 0.00 0.07 +oppidum oppidum NOM m s 0.00 0.27 0.00 0.27 +opportun opportun ADJ m s 1.68 2.57 1.45 1.89 +opportune opportun ADJ f s 1.68 2.57 0.08 0.54 +opportunes opportun ADJ f p 1.68 2.57 0.02 0.00 +opportunisme opportunisme NOM m s 0.11 0.20 0.11 0.20 +opportuniste opportuniste ADJ s 0.44 0.47 0.38 0.34 +opportunistes opportuniste NOM p 0.62 0.20 0.26 0.20 +opportunité opportunité NOM f s 11.84 2.50 9.50 2.36 +opportunités opportunité NOM f p 11.84 2.50 2.33 0.14 +opportuns opportun ADJ m p 1.68 2.57 0.14 0.14 +opportunément opportunément ADV 0.07 0.68 0.07 0.68 +opposa opposer VER 18.20 46.01 0.12 2.30 ind:pas:3s; +opposable opposable ADJ m s 0.14 0.07 0.05 0.00 +opposables opposable ADJ p 0.14 0.07 0.09 0.07 +opposai opposer VER 18.20 46.01 0.00 0.34 ind:pas:1s; +opposaient opposer VER 18.20 46.01 0.07 2.23 ind:imp:3p; +opposais opposer VER 18.20 46.01 0.18 0.41 ind:imp:1s;ind:imp:2s; +opposait opposer VER 18.20 46.01 0.53 7.03 ind:imp:3s; +opposant opposer VER 18.20 46.01 0.35 1.69 par:pre; +opposante opposant NOM f s 1.63 1.42 0.01 0.00 +opposants opposant NOM m p 1.63 1.42 1.28 0.95 +oppose opposer VER 18.20 46.01 4.27 5.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +opposent opposer VER 18.20 46.01 0.85 1.89 ind:pre:3p; +opposer opposer VER 18.20 46.01 6.48 9.93 ind:pre:2p;inf; +opposera opposer VER 18.20 46.01 0.28 0.54 ind:fut:3s; +opposerai opposer VER 18.20 46.01 0.55 0.00 ind:fut:1s; +opposeraient opposer VER 18.20 46.01 0.01 0.47 cnd:pre:3p; +opposerais opposer VER 18.20 46.01 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +opposerait opposer VER 18.20 46.01 0.15 0.34 cnd:pre:3s; +opposerez opposer VER 18.20 46.01 0.11 0.07 ind:fut:2p; +opposerions opposer VER 18.20 46.01 0.00 0.07 cnd:pre:1p; +opposerons opposer VER 18.20 46.01 0.14 0.07 ind:fut:1p; +opposeront opposer VER 18.20 46.01 0.28 0.00 ind:fut:3p; +opposes opposer VER 18.20 46.01 0.35 0.07 ind:pre:2s; +opposez opposer VER 18.20 46.01 0.29 0.20 imp:pre:2p;ind:pre:2p; +opposions opposer VER 18.20 46.01 0.02 0.27 ind:imp:1p; +opposition opposition NOM f s 5.28 11.49 5.26 10.68 +oppositionnel oppositionnel ADJ m s 0.01 0.07 0.01 0.00 +oppositionnelle oppositionnel ADJ f s 0.01 0.07 0.00 0.07 +oppositions opposition NOM f p 5.28 11.49 0.02 0.81 +opposons opposer VER 18.20 46.01 0.06 0.14 imp:pre:1p;ind:pre:1p; +opposât opposer VER 18.20 46.01 0.00 0.34 sub:imp:3s; +opposèrent opposer VER 18.20 46.01 0.03 0.61 ind:pas:3p; +opposé opposé NOM m s 2.38 5.34 2.13 5.20 +opposée opposé ADJ f s 3.51 14.46 0.92 3.18 +opposées opposé ADJ f p 3.51 14.46 0.69 1.89 +opposés opposer VER m p 18.20 46.01 0.60 1.42 par:pas; +oppressa oppresser VER 1.11 4.80 0.00 0.07 ind:pas:3s; +oppressaient oppresser VER 1.11 4.80 0.10 0.34 ind:imp:3p; +oppressait oppresser VER 1.11 4.80 0.17 1.35 ind:imp:3s; +oppressant oppressant ADJ m s 1.01 3.38 0.38 1.49 +oppressante oppressant ADJ f s 1.01 3.38 0.61 1.55 +oppressantes oppressant ADJ f p 1.01 3.38 0.01 0.20 +oppressants oppressant ADJ m p 1.01 3.38 0.01 0.14 +oppresse oppresser VER 1.11 4.80 0.38 1.15 ind:pre:1s;ind:pre:3s; +oppressent oppresser VER 1.11 4.80 0.06 0.27 ind:pre:3p; +oppresser oppresser VER 1.11 4.80 0.14 0.07 inf; +oppresseur oppresseur NOM m s 1.26 0.74 0.67 0.41 +oppresseurs oppresseur NOM m p 1.26 0.74 0.59 0.34 +oppressif oppressif ADJ m s 0.06 0.14 0.04 0.07 +oppression oppression NOM f s 2.25 6.82 2.17 6.69 +oppressions oppression NOM f p 2.25 6.82 0.07 0.14 +oppressive oppressif ADJ f s 0.06 0.14 0.02 0.07 +oppressé oppresser VER m s 1.11 4.80 0.25 0.68 par:pas; +oppressée oppressé ADJ f s 0.29 1.08 0.20 0.68 +oppressées oppressé ADJ f p 0.29 1.08 0.02 0.00 +opprimait opprimer VER 1.69 2.03 0.01 0.20 ind:imp:3s; +opprimant opprimer VER 1.69 2.03 0.01 0.07 par:pre; +opprime opprimer VER 1.69 2.03 0.40 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +oppriment opprimer VER 1.69 2.03 0.06 0.20 ind:pre:3p; +opprimer opprimer VER 1.69 2.03 0.07 0.68 inf; +opprimez opprimer VER 1.69 2.03 0.04 0.00 ind:pre:2p; +opprimé opprimer VER m s 1.69 2.03 0.35 0.20 par:pas; +opprimée opprimer VER f s 1.69 2.03 0.28 0.27 par:pas; +opprimées opprimé NOM f p 1.91 1.89 0.22 0.00 +opprimés opprimé NOM m p 1.91 1.89 1.48 1.28 +opprobre opprobre NOM m s 0.33 1.89 0.33 1.82 +opprobres opprobre NOM m p 0.33 1.89 0.00 0.07 +âpre âpre ADJ s 1.60 9.86 1.32 7.70 +âprement âprement ADV 0.13 3.11 0.13 3.11 +âpres âpre ADJ p 1.60 9.86 0.27 2.16 +âpreté âpreté NOM f s 0.04 2.77 0.04 2.70 +âpretés âpreté NOM f p 0.04 2.77 0.00 0.07 +opta opter VER 1.98 5.14 0.01 1.08 ind:pas:3s; +optai opter VER 1.98 5.14 0.00 0.34 ind:pas:1s; +optaient opter VER 1.98 5.14 0.00 0.20 ind:imp:3p; +optais opter VER 1.98 5.14 0.03 0.07 ind:imp:1s; +optait opter VER 1.98 5.14 0.01 0.07 ind:imp:3s; +optalidon optalidon NOM m s 0.14 0.07 0.14 0.07 +optant optant NOM m s 0.00 0.14 0.00 0.14 +optatif optatif ADJ m s 0.00 0.20 0.00 0.14 +optatifs optatif ADJ m p 0.00 0.20 0.00 0.07 +opte opter VER 1.98 5.14 0.31 0.54 ind:pre:1s;ind:pre:3s; +optent opter VER 1.98 5.14 0.14 0.14 ind:pre:3p; +opter opter VER 1.98 5.14 0.37 0.88 inf; +opterais opter VER 1.98 5.14 0.04 0.07 cnd:pre:1s; +optes opter VER 1.98 5.14 0.02 0.00 ind:pre:2s; +opère opérer VER 29.59 24.53 4.75 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +opèrent opérer VER 29.59 24.53 1.06 0.47 ind:pre:3p; +opticien opticien NOM m s 0.18 0.47 0.13 0.34 +opticienne opticien NOM f s 0.18 0.47 0.02 0.00 +opticiens opticien NOM m p 0.18 0.47 0.04 0.14 +optima optimum NOM m p 0.15 0.14 0.00 0.07 +optimal optimal ADJ m s 0.48 0.34 0.19 0.20 +optimale optimal ADJ f s 0.48 0.34 0.24 0.14 +optimales optimal ADJ f p 0.48 0.34 0.04 0.00 +optimaux optimal ADJ m p 0.48 0.34 0.02 0.00 +optime optime ADV 0.00 0.20 0.00 0.20 +optimisation optimisation NOM f s 0.14 0.00 0.14 0.00 +optimise optimiser VER 0.23 0.07 0.06 0.00 ind:pre:1s;ind:pre:3s; +optimiser optimiser VER 0.23 0.07 0.12 0.00 inf; +optimisez optimiser VER 0.23 0.07 0.01 0.00 ind:pre:2p; +optimisme optimisme NOM m s 1.66 6.55 1.66 6.55 +optimiste optimiste ADJ s 4.21 4.19 3.52 3.11 +optimistes optimiste ADJ p 4.21 4.19 0.70 1.08 +optimisé optimiser VER m s 0.23 0.07 0.05 0.00 par:pas; +optimisées optimiser VER f p 0.23 0.07 0.00 0.07 par:pas; +optimum optimum NOM m s 0.15 0.14 0.15 0.07 +option option NOM f s 12.31 2.09 7.37 1.08 +optionnel optionnel ADJ m s 0.19 0.00 0.16 0.00 +optionnelle optionnel ADJ f s 0.19 0.00 0.03 0.00 +options option NOM f p 12.31 2.09 4.94 1.01 +optique optique ADJ s 1.73 1.08 1.36 1.01 +optiques optique ADJ p 1.73 1.08 0.38 0.07 +optométrie optométrie NOM f s 0.01 0.00 0.01 0.00 +optométriste optométriste NOM s 0.05 0.00 0.05 0.00 +optons opter VER 1.98 5.14 0.03 0.00 imp:pre:1p;ind:pre:1p; +optât opter VER 1.98 5.14 0.00 0.14 sub:imp:3s; +optèrent opter VER 1.98 5.14 0.01 0.14 ind:pas:3p; +opté opter VER m s 1.98 5.14 0.90 1.49 par:pas; +opulence opulence NOM f s 0.54 3.31 0.54 3.24 +opulences opulence NOM f p 0.54 3.31 0.00 0.07 +opulent opulent ADJ m s 0.47 4.39 0.01 1.08 +opulente opulent ADJ f s 0.47 4.39 0.32 1.42 +opulentes opulent ADJ f p 0.47 4.39 0.02 1.08 +opulents opulent ADJ m p 0.47 4.39 0.11 0.81 +opéra_comique opéra_comique NOM m s 0.00 0.34 0.00 0.34 +opéra opéra NOM m s 19.61 20.07 18.93 18.99 +opérable opérable ADJ f s 0.13 0.07 0.13 0.07 +opéraient opérer VER 29.59 24.53 0.03 1.69 ind:imp:3p; +opérais opérer VER 29.59 24.53 0.05 0.34 ind:imp:1s;ind:imp:2s; +opérait opérer VER 29.59 24.53 0.56 3.11 ind:imp:3s; +opérant opérer VER 29.59 24.53 0.26 1.28 par:pre; +opéras opéra NOM m p 19.61 20.07 0.68 1.08 +opérateur opérateur NOM m s 6.54 2.84 5.07 2.03 +opérateurs opérateur NOM m p 6.54 2.84 0.28 0.74 +opération_miracle opération_miracle NOM f s 0.00 0.07 0.00 0.07 +opération opération NOM f s 61.94 70.20 50.01 41.42 +opérationnel opérationnel ADJ m s 5.07 0.34 2.21 0.14 +opérationnelle opérationnel ADJ f s 5.07 0.34 1.19 0.14 +opérationnelles opérationnel ADJ f p 5.07 0.34 0.26 0.07 +opérationnels opérationnel ADJ m p 5.07 0.34 1.42 0.00 +opérations opération NOM f p 61.94 70.20 11.94 28.78 +opératique opératique ADJ f s 0.01 0.00 0.01 0.00 +opératoire opératoire ADJ s 1.54 0.68 1.49 0.68 +opératoires opératoire ADJ p 1.54 0.68 0.05 0.00 +opératrice opérateur NOM f s 6.54 2.84 1.19 0.07 +opératrices opératrice NOM f p 0.19 0.00 0.19 0.00 +opérer opérer VER 29.59 24.53 14.94 8.58 ind:pre:2p;inf; +opérera opérer VER 29.59 24.53 0.20 0.27 ind:fut:3s; +opérerai opérer VER 29.59 24.53 0.28 0.00 ind:fut:1s; +opéreraient opérer VER 29.59 24.53 0.00 0.27 cnd:pre:3p; +opérerait opérer VER 29.59 24.53 0.04 0.41 cnd:pre:3s; +opéreras opérer VER 29.59 24.53 0.02 0.00 ind:fut:2s; +opérerez opérer VER 29.59 24.53 0.05 0.07 ind:fut:2p; +opérerons opérer VER 29.59 24.53 0.18 0.00 ind:fut:1p; +opéreront opérer VER 29.59 24.53 0.08 0.07 ind:fut:3p; +opérette opérette NOM f s 0.58 4.19 0.54 3.11 +opérettes opérette NOM f p 0.58 4.19 0.04 1.08 +opérez opérer VER 29.59 24.53 0.49 0.14 imp:pre:2p;ind:pre:2p; +opériez opérer VER 29.59 24.53 0.13 0.00 ind:imp:2p; +opérions opérer VER 29.59 24.53 0.00 0.27 ind:imp:1p; +opérons opérer VER 29.59 24.53 0.19 0.07 imp:pre:1p;ind:pre:1p; +opérât opérer VER 29.59 24.53 0.00 0.07 sub:imp:3s; +opérèrent opérer VER 29.59 24.53 0.00 0.07 ind:pas:3p; +opéré opérer VER m s 29.59 24.53 4.92 2.43 par:pas; +opérée opérer VER f s 29.59 24.53 1.00 0.88 par:pas; +opérées opérer VER f p 29.59 24.53 0.03 0.14 par:pas; +opérés opérer VER m p 29.59 24.53 0.06 0.54 par:pas; +opus opus NOM m 0.35 1.01 0.35 1.01 +opuscule opuscule NOM m s 0.04 0.88 0.03 0.61 +opuscules opuscule NOM m p 0.04 0.88 0.01 0.27 +or or CON 17.13 65.27 17.13 65.27 +oracle oracle NOM m s 3.21 2.77 2.32 2.16 +oracles oracle NOM m p 3.21 2.77 0.89 0.61 +orage orage NOM m s 17.14 35.41 14.50 30.61 +orages orage NOM m p 17.14 35.41 2.64 4.80 +orageuse orageux ADJ f s 0.61 4.12 0.11 1.82 +orageuses orageux ADJ f p 0.61 4.12 0.17 0.74 +orageux orageux ADJ m 0.61 4.12 0.33 1.55 +oraison oraison NOM f s 0.63 3.65 0.20 3.11 +oraisons oraison NOM f p 0.63 3.65 0.43 0.54 +oral oral NOM m s 1.42 2.70 1.42 2.70 +orale oral ADJ f s 2.31 1.96 1.31 0.88 +oralement oralement ADV 0.20 0.74 0.20 0.74 +orales oral ADJ f p 2.31 1.96 0.22 0.27 +oralité oralité NOM f s 0.01 0.07 0.01 0.07 +oranais oranais ADJ m s 0.00 0.41 0.00 0.34 +oranaise oranais ADJ f s 0.00 0.41 0.00 0.07 +orang_outan orang_outan NOM m s 0.28 0.20 0.22 0.07 +orang_outang orang_outang NOM m s 0.08 0.74 0.08 0.61 +orange orange NOM s 16.29 19.59 11.56 12.03 +orangeade orangeade NOM f s 1.91 2.03 1.44 1.76 +orangeades orangeade NOM f p 1.91 2.03 0.48 0.27 +oranger oranger NOM m s 1.67 5.27 1.03 2.09 +orangeraie orangeraie NOM f s 0.31 0.34 0.11 0.20 +orangeraies orangeraie NOM f p 0.31 0.34 0.20 0.14 +orangerie orangerie NOM f s 0.03 0.41 0.03 0.34 +orangeries orangerie NOM f p 0.03 0.41 0.00 0.07 +orangers oranger NOM m p 1.67 5.27 0.64 3.18 +oranges orange NOM p 16.29 19.59 4.73 7.57 +orangistes orangiste NOM p 0.04 0.00 0.04 0.00 +orang_outang orang_outang NOM m p 0.08 0.74 0.00 0.14 +orang_outan orang_outan NOM m p 0.28 0.20 0.06 0.14 +orangé orangé ADJ m s 0.32 4.93 0.17 1.96 +orangée orangé ADJ f s 0.32 4.93 0.14 1.62 +orangées orangé ADJ f p 0.32 4.93 0.01 0.61 +orangés orangé ADJ m p 0.32 4.93 0.00 0.74 +orant orant NOM m s 0.00 0.47 0.00 0.07 +orante orant NOM f s 0.00 0.47 0.00 0.34 +orantes orant ADJ f p 0.02 0.07 0.02 0.00 +orants orant NOM m p 0.00 0.47 0.00 0.07 +orateur orateur NOM m s 1.70 5.34 1.42 3.58 +orateurs orateur NOM m p 1.70 5.34 0.23 1.76 +oratoire oratoire NOM m s 0.42 1.49 0.42 1.28 +oratoires oratoire ADJ p 0.23 1.76 0.06 0.81 +oratorien oratorien NOM m s 0.00 0.34 0.00 0.14 +oratoriens oratorien NOM m p 0.00 0.34 0.00 0.20 +oratorio oratorio NOM m s 0.02 0.61 0.02 0.54 +oratorios oratorio NOM m p 0.02 0.61 0.00 0.07 +oratrice orateur NOM f s 1.70 5.34 0.05 0.00 +oraux oral ADJ m p 2.31 1.96 0.10 0.27 +orbe orbe NOM m s 0.59 1.22 0.46 1.01 +orbes orbe NOM m p 0.59 1.22 0.14 0.20 +orbiculaire orbiculaire ADJ m s 0.00 0.14 0.00 0.14 +orbitaire orbitaire ADJ f s 0.04 0.07 0.02 0.07 +orbitaires orbitaire ADJ f p 0.04 0.07 0.02 0.00 +orbital orbital ADJ m s 0.61 0.07 0.17 0.00 +orbitale orbital ADJ f s 0.61 0.07 0.29 0.07 +orbitales orbital ADJ f p 0.61 0.07 0.11 0.00 +orbitaux orbital ADJ m p 0.61 0.07 0.04 0.00 +orbite orbite NOM f s 9.81 8.31 8.59 2.64 +orbiter orbiter VER 0.03 0.00 0.01 0.00 inf; +orbites orbite NOM f p 9.81 8.31 1.22 5.68 +orbitons orbiter VER 0.03 0.00 0.02 0.00 ind:pre:1p; +orbitèle orbitèle ADJ m s 0.05 0.00 0.03 0.00 +orbitèles orbitèle ADJ m p 0.05 0.00 0.02 0.00 +orchestra orchestrer VER 4.29 1.08 2.99 0.00 ind:pas:3s; +orchestraient orchestrer VER 4.29 1.08 0.00 0.07 ind:imp:3p; +orchestrait orchestrer VER 4.29 1.08 0.03 0.07 ind:imp:3s; +orchestral orchestral ADJ m s 1.10 0.14 0.02 0.00 +orchestrale orchestral ADJ f s 1.10 0.14 1.08 0.07 +orchestration orchestration NOM f s 0.23 0.07 0.22 0.07 +orchestrations orchestration NOM f p 0.23 0.07 0.01 0.00 +orchestraux orchestral ADJ m p 1.10 0.14 0.00 0.07 +orchestre orchestre NOM m s 14.69 19.73 13.71 18.04 +orchestrent orchestrer VER 4.29 1.08 0.00 0.07 ind:pre:3p; +orchestrer orchestrer VER 4.29 1.08 0.12 0.20 inf; +orchestres orchestre NOM m p 14.69 19.73 0.98 1.69 +orchestré orchestrer VER m s 4.29 1.08 0.85 0.27 par:pas; +orchestrée orchestrer VER f s 4.29 1.08 0.18 0.07 par:pas; +orchestrées orchestrer VER f p 4.29 1.08 0.04 0.07 par:pas; +orchestrés orchestrer VER m p 4.29 1.08 0.03 0.00 par:pas; +orchidée orchidée NOM f s 3.88 2.57 1.98 1.42 +orchidées orchidée NOM f p 3.88 2.57 1.90 1.15 +orchis orchis NOM m 0.14 0.27 0.14 0.27 +ord ord ADJ m s 0.39 0.00 0.39 0.00 +ordalie ordalie NOM f s 0.04 0.20 0.04 0.20 +ordinaire ordinaire ADJ s 20.55 27.97 15.54 19.86 +ordinairement ordinairement ADV 0.21 2.70 0.21 2.70 +ordinaires ordinaire ADJ p 20.55 27.97 5.01 8.11 +ordinal ordinal ADJ m s 0.00 0.07 0.00 0.07 +ordinant ordinant NOM m s 0.00 0.07 0.00 0.07 +ordinateur ordinateur NOM m s 37.15 4.26 30.20 2.30 +ordinateurs ordinateur NOM m p 37.15 4.26 6.95 1.96 +ordination ordination NOM f s 0.12 0.34 0.12 0.34 +ordo ordo NOM m 0.01 0.07 0.01 0.07 +ordonna ordonner VER 36.73 35.68 1.34 9.05 ind:pas:3s; +ordonnai ordonner VER 36.73 35.68 0.10 0.68 ind:pas:1s; +ordonnaient ordonner VER 36.73 35.68 0.02 0.41 ind:imp:3p; +ordonnais ordonner VER 36.73 35.68 0.02 0.27 ind:imp:1s; +ordonnait ordonner VER 36.73 35.68 0.11 3.18 ind:imp:3s; +ordonnance ordonnance NOM s 9.71 23.65 7.94 19.66 +ordonnancement ordonnancement NOM m s 0.01 0.27 0.01 0.27 +ordonnancer ordonnancer VER 0.00 0.20 0.00 0.14 inf; +ordonnances ordonnance NOM p 9.71 23.65 1.78 3.99 +ordonnancée ordonnancer VER f s 0.00 0.20 0.00 0.07 par:pas; +ordonnant ordonner VER 36.73 35.68 0.11 1.15 par:pre; +ordonnateur ordonnateur NOM m s 0.16 0.68 0.16 0.47 +ordonnateurs ordonnateur NOM m p 0.16 0.68 0.00 0.14 +ordonnatrice ordonnateur NOM f s 0.16 0.68 0.00 0.07 +ordonne ordonner VER 36.73 35.68 16.69 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ordonnent ordonner VER 36.73 35.68 0.32 0.88 ind:pre:3p; +ordonner ordonner VER 36.73 35.68 2.36 3.78 inf; +ordonnera ordonner VER 36.73 35.68 0.11 0.20 ind:fut:3s; +ordonnerai ordonner VER 36.73 35.68 0.55 0.14 ind:fut:1s; +ordonnerais ordonner VER 36.73 35.68 0.01 0.00 cnd:pre:1s; +ordonnerait ordonner VER 36.73 35.68 0.05 0.07 cnd:pre:3s; +ordonneront ordonner VER 36.73 35.68 0.01 0.00 ind:fut:3p; +ordonnes ordonner VER 36.73 35.68 0.77 0.00 ind:pre:2s; +ordonnez ordonner VER 36.73 35.68 1.23 0.14 imp:pre:2p;ind:pre:2p; +ordonniez ordonner VER 36.73 35.68 0.01 0.00 ind:imp:2p; +ordonnons ordonner VER 36.73 35.68 0.97 0.41 imp:pre:1p;ind:pre:1p; +ordonnèrent ordonner VER 36.73 35.68 0.02 0.27 ind:pas:3p; +ordonné ordonner VER m s 36.73 35.68 11.52 6.82 par:pas;par:pas;par:pas; +ordonnée ordonné ADJ f s 0.99 4.39 0.38 1.76 +ordonnées ordonner VER f p 36.73 35.68 0.02 0.41 par:pas; +ordonnés ordonner VER m p 36.73 35.68 0.18 0.47 par:pas; +ordre ordre NOM m s 217.25 235.34 132.50 179.26 +ordres ordre NOM m p 217.25 235.34 84.75 56.08 +ordure ordure NOM f s 31.07 26.55 16.97 10.41 +ordureries ordurerie NOM f p 0.00 0.07 0.00 0.07 +ordures ordure NOM f p 31.07 26.55 14.10 16.15 +ordurier ordurier ADJ m s 0.30 2.97 0.16 1.08 +orduriers ordurier ADJ m p 0.30 2.97 0.08 0.68 +ordurière ordurier ADJ f s 0.30 2.97 0.04 0.54 +ordurières ordurier ADJ f p 0.30 2.97 0.03 0.68 +ore ore ADV 0.04 0.00 0.04 0.00 +oreille oreille NOM f s 73.54 194.12 34.46 103.45 +oreiller oreiller NOM m s 9.34 33.72 7.93 26.35 +oreillers oreiller NOM m p 9.34 33.72 1.41 7.36 +oreilles oreille NOM f p 73.54 194.12 39.08 90.68 +oreillette oreillette NOM f s 0.83 1.08 0.69 0.14 +oreillettes oreillette NOM f p 0.83 1.08 0.14 0.95 +oreillons oreillon NOM m p 1.07 0.54 1.07 0.54 +orfraie orfraie NOM f s 0.01 0.14 0.01 0.14 +orfèvre orfèvre NOM s 0.80 3.24 0.49 1.35 +orfèvrerie orfèvrerie NOM f s 0.02 0.74 0.02 0.54 +orfèvreries orfèvrerie NOM f p 0.02 0.74 0.00 0.20 +orfèvres orfèvre NOM p 0.80 3.24 0.31 1.89 +orfévrée orfévré ADJ f s 0.00 0.07 0.00 0.07 +organdi organdi NOM m s 0.45 1.22 0.45 1.15 +organdis organdi NOM m p 0.45 1.22 0.00 0.07 +organe organe NOM m s 13.69 15.68 3.14 6.55 +organes organe NOM m p 13.69 15.68 10.55 9.12 +organiciser organiciser ADJ m s 0.01 0.00 0.01 0.00 +organigramme organigramme NOM m s 0.13 0.07 0.13 0.07 +organique organique ADJ s 3.67 2.77 2.56 2.16 +organiquement organiquement ADV 0.02 0.74 0.02 0.74 +organiques organique ADJ p 3.67 2.77 1.11 0.61 +organisa organiser VER 47.90 47.16 0.38 2.09 ind:pas:3s; +organisai organiser VER 47.90 47.16 0.01 0.34 ind:pas:1s; +organisaient organiser VER 47.90 47.16 0.05 1.76 ind:imp:3p; +organisais organiser VER 47.90 47.16 0.31 0.07 ind:imp:1s;ind:imp:2s; +organisait organiser VER 47.90 47.16 1.08 4.46 ind:imp:3s; +organisant organiser VER 47.90 47.16 0.19 0.81 par:pre; +organisateur organisateur NOM m s 2.37 3.24 1.31 1.55 +organisateurs organisateur NOM m p 2.37 3.24 0.75 1.69 +organisation organisation NOM f s 20.97 39.12 18.96 34.32 +organisationnelle organisationnel ADJ f s 0.20 0.00 0.20 0.00 +organisations organisation NOM f p 20.97 39.12 2.02 4.80 +organisatrice organisateur NOM f s 2.37 3.24 0.30 0.00 +organise organiser VER 47.90 47.16 10.59 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +organisent organiser VER 47.90 47.16 1.83 0.88 ind:pre:3p; +organiser organiser VER 47.90 47.16 13.93 16.01 inf; +organisera organiser VER 47.90 47.16 0.38 0.27 ind:fut:3s; +organiserai organiser VER 47.90 47.16 0.38 0.07 ind:fut:1s; +organiserais organiser VER 47.90 47.16 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +organiserait organiser VER 47.90 47.16 0.07 0.41 cnd:pre:3s; +organiserez organiser VER 47.90 47.16 0.05 0.00 ind:fut:2p; +organiseriez organiser VER 47.90 47.16 0.02 0.00 cnd:pre:2p; +organiserons organiser VER 47.90 47.16 0.20 0.07 ind:fut:1p; +organiseront organiser VER 47.90 47.16 0.16 0.00 ind:fut:3p; +organises organiser VER 47.90 47.16 1.29 0.07 ind:pre:2s; +organiseur organiseur NOM m s 0.01 0.00 0.01 0.00 +organisez organiser VER 47.90 47.16 1.01 0.07 imp:pre:2p;ind:pre:2p; +organisiez organiser VER 47.90 47.16 0.11 0.07 ind:imp:2p; +organisions organiser VER 47.90 47.16 0.13 0.34 ind:imp:1p; +organisme organisme NOM m s 6.84 10.81 4.83 8.45 +organismes organisme NOM m p 6.84 10.81 2.02 2.36 +organisâmes organiser VER 47.90 47.16 0.00 0.07 ind:pas:1p; +organisons organiser VER 47.90 47.16 1.55 0.00 imp:pre:1p;ind:pre:1p; +organisât organiser VER 47.90 47.16 0.00 0.14 sub:imp:3s; +organiste organiste NOM s 0.52 1.01 0.51 1.01 +organistes organiste NOM p 0.52 1.01 0.01 0.00 +organisèrent organiser VER 47.90 47.16 0.11 0.54 ind:pas:3p; +organistique organistique ADJ m s 0.00 0.07 0.00 0.07 +organisé organiser VER m s 47.90 47.16 10.55 7.16 par:pas; +organisée organiser VER f s 47.90 47.16 2.13 3.99 par:pas; +organisées organisé ADJ f p 5.58 7.50 0.20 0.61 +organisés organisé ADJ m p 5.58 7.50 1.33 1.76 +organométallique organométallique ADJ m s 0.01 0.00 0.01 0.00 +organon organon NOM m s 0.01 0.00 0.01 0.00 +orgasme orgasme NOM m s 6.37 3.38 4.89 3.18 +orgasmes orgasme NOM m p 6.37 3.38 1.48 0.20 +orgasmique orgasmique ADJ s 0.08 0.00 0.08 0.00 +orgastique orgastique ADJ m s 0.00 0.14 0.00 0.14 +orge orge NOM s 1.98 3.72 1.96 3.58 +orgeat orgeat NOM m s 0.19 0.74 0.19 0.74 +orgelet orgelet NOM m s 0.89 0.27 0.78 0.07 +orgelets orgelet NOM m p 0.89 0.27 0.11 0.20 +orges orge NOM p 1.98 3.72 0.01 0.14 +orgiaque orgiaque ADJ m s 0.31 0.07 0.31 0.07 +orgiastique orgiastique ADJ m s 0.00 0.14 0.00 0.07 +orgiastiques orgiastique ADJ p 0.00 0.14 0.00 0.07 +orgie orgie NOM f s 3.46 3.72 2.09 2.36 +orgies orgie NOM f p 3.46 3.72 1.38 1.35 +orgue orgue NOM m s 3.12 8.31 3.08 5.41 +orgueil orgueil NOM m s 11.56 33.45 11.56 33.24 +orgueilleuse orgueilleux ADJ f s 1.81 9.19 0.37 4.59 +orgueilleusement orgueilleusement ADV 0.14 1.35 0.14 1.35 +orgueilleuses orgueilleux ADJ f p 1.81 9.19 0.23 0.54 +orgueilleux orgueilleux ADJ m 1.81 9.19 1.20 4.05 +orgueils orgueil NOM m p 11.56 33.45 0.00 0.20 +orgues orgue NOM f p 3.12 8.31 0.04 2.91 +oribus oribus NOM m 0.00 0.07 0.00 0.07 +orient orient NOM m s 0.78 3.78 0.78 3.72 +orienta orienter VER 3.90 11.89 0.10 0.81 ind:pas:3s; +orientable orientable ADJ s 0.14 0.34 0.14 0.34 +orientai orienter VER 3.90 11.89 0.01 0.07 ind:pas:1s; +orientaient orienter VER 3.90 11.89 0.01 0.41 ind:imp:3p; +orientais orienter VER 3.90 11.89 0.01 0.20 ind:imp:1s; +orientait orienter VER 3.90 11.89 0.00 0.81 ind:imp:3s; +oriental oriental ADJ m s 4.16 14.32 0.92 3.51 +orientale oriental ADJ f s 4.16 14.32 2.52 6.82 +orientales oriental ADJ f p 4.16 14.32 0.40 2.50 +orientalisme orientalisme NOM m s 0.00 0.14 0.00 0.14 +orientaliste orientaliste ADJ f s 0.01 0.07 0.01 0.07 +orientalistes orientaliste NOM p 0.00 0.20 0.00 0.14 +orientant orienter VER 3.90 11.89 0.01 0.54 par:pre; +orientateurs orientateur NOM m p 0.00 0.07 0.00 0.07 +orientation orientation NOM f s 3.86 6.89 3.76 6.62 +orientations orientation NOM f p 3.86 6.89 0.10 0.27 +orientaux oriental ADJ m p 4.16 14.32 0.32 1.49 +oriente orienter VER 3.90 11.89 0.96 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +orientent orienter VER 3.90 11.89 0.16 0.00 ind:pre:3p; +orienter orienter VER 3.90 11.89 1.39 3.65 inf; +orienterai orienter VER 3.90 11.89 0.04 0.00 ind:fut:1s; +orienterait orienter VER 3.90 11.89 0.01 0.07 cnd:pre:3s; +orienterez orienter VER 3.90 11.89 0.01 0.00 ind:fut:2p; +orienteur orienteur NOM m s 0.27 0.14 0.27 0.00 +orienteurs orienteur NOM m p 0.27 0.14 0.00 0.07 +orienteuse orienteur NOM f s 0.27 0.14 0.00 0.07 +orientez orienter VER 3.90 11.89 0.15 0.07 imp:pre:2p;ind:pre:2p; +orients orient NOM m p 0.78 3.78 0.00 0.07 +orientèrent orienter VER 3.90 11.89 0.00 0.07 ind:pas:3p; +orienté orienter VER m s 3.90 11.89 0.40 1.55 par:pas; +orientée orienter VER f s 3.90 11.89 0.27 1.08 par:pas; +orientées orienter VER f p 3.90 11.89 0.20 0.47 par:pas; +orientés orienter VER m p 3.90 11.89 0.17 0.74 par:pas; +orifice orifice NOM m s 1.85 4.05 1.23 3.24 +orifices orifice NOM m p 1.85 4.05 0.61 0.81 +oriflamme oriflamme NOM f s 0.22 2.84 0.01 1.08 +oriflammes oriflamme NOM f p 0.22 2.84 0.21 1.76 +origami origami NOM m s 0.23 0.07 0.23 0.07 +origan origan NOM m s 0.32 0.95 0.32 0.95 +originaire originaire ADJ s 2.58 5.41 2.06 4.19 +originairement originairement ADV 0.00 0.14 0.00 0.14 +originaires originaire ADJ p 2.58 5.41 0.51 1.22 +original original NOM m s 10.44 4.32 8.48 2.84 +originale original ADJ f s 14.45 10.54 4.15 3.24 +originalement originalement ADV 0.01 0.00 0.01 0.00 +originales original ADJ f p 14.45 10.54 1.03 1.55 +originalité originalité NOM f s 1.34 4.53 1.34 4.39 +originalités originalité NOM f p 1.34 4.53 0.00 0.14 +originaux original NOM m p 10.44 4.32 1.44 1.08 +origine origine NOM f s 28.07 46.82 22.18 34.19 +originel originel ADJ m s 1.84 6.49 1.03 3.11 +originelle originel ADJ f s 1.84 6.49 0.58 2.91 +originellement originellement ADV 0.09 0.34 0.09 0.34 +originelles originel ADJ f p 1.84 6.49 0.12 0.20 +originels originel ADJ m p 1.84 6.49 0.11 0.27 +origines origine NOM f p 28.07 46.82 5.88 12.64 +orignal orignal NOM m s 0.42 0.47 0.26 0.20 +orignaux orignal NOM m p 0.42 0.47 0.16 0.27 +orillon orillon NOM m s 0.00 0.14 0.00 0.07 +orillons orillon NOM m p 0.00 0.14 0.00 0.07 +orin orin NOM m s 0.21 0.00 0.21 0.00 +oriol oriol NOM m s 0.00 0.14 0.00 0.14 +oripeaux oripeau NOM m p 0.38 1.55 0.38 1.55 +orlon orlon NOM m s 0.04 0.00 0.04 0.00 +orléanais orléanais ADJ m 0.00 0.27 0.00 0.07 +orléanaise orléanais ADJ f s 0.00 0.27 0.00 0.14 +orléanaises orléanais ADJ f p 0.00 0.27 0.00 0.07 +orléanisme orléanisme NOM m s 0.00 0.20 0.00 0.20 +orléaniste orléaniste ADJ f s 0.14 0.20 0.00 0.14 +orléanistes orléaniste ADJ f p 0.14 0.20 0.14 0.07 +orme orme NOM m s 0.39 3.58 0.33 1.28 +ormeau ormeau NOM m s 0.03 1.08 0.01 0.47 +ormeaux ormeau NOM m p 0.03 1.08 0.02 0.61 +ormes orme NOM m p 0.39 3.58 0.06 2.30 +orna orner VER 3.11 31.15 0.00 0.20 ind:pas:3s; +ornaient orner VER 3.11 31.15 0.10 2.03 ind:imp:3p; +ornait orner VER 3.11 31.15 0.02 3.11 ind:imp:3s; +ornant orner VER 3.11 31.15 0.23 0.88 par:pre; +orne orner VER 3.11 31.15 0.44 1.08 imp:pre:2s;ind:pre:3s; +ornement ornement NOM m s 0.96 7.03 0.33 3.24 +ornemental ornemental ADJ m s 0.17 0.34 0.13 0.14 +ornementale ornemental ADJ f s 0.17 0.34 0.02 0.20 +ornementales ornemental ADJ f p 0.17 0.34 0.02 0.00 +ornementation ornementation NOM f s 0.14 0.81 0.14 0.74 +ornementations ornementation NOM f p 0.14 0.81 0.00 0.07 +ornementer ornementer VER 0.01 0.61 0.00 0.07 inf; +ornements ornement NOM m p 0.96 7.03 0.64 3.78 +ornementé ornementer VER m s 0.01 0.61 0.00 0.27 par:pas; +ornementée ornementer VER f s 0.01 0.61 0.01 0.14 par:pas; +ornementés ornementer VER m p 0.01 0.61 0.00 0.14 par:pas; +ornent orner VER 3.11 31.15 0.17 0.81 ind:pre:3p; +orner orner VER 3.11 31.15 1.11 1.82 inf; +ornera orner VER 3.11 31.15 0.07 0.07 ind:fut:3s; +ornerait orner VER 3.11 31.15 0.00 0.07 cnd:pre:3s; +orneront orner VER 3.11 31.15 0.11 0.07 ind:fut:3p; +ornez orner VER 3.11 31.15 0.25 0.00 imp:pre:2p; +ornithologie ornithologie NOM f s 0.20 0.07 0.20 0.07 +ornithologique ornithologique ADJ s 0.17 0.00 0.17 0.00 +ornithologue ornithologue NOM s 0.13 0.14 0.12 0.07 +ornithologues ornithologue NOM p 0.13 0.14 0.01 0.07 +ornithoptère ornithoptère NOM m s 0.01 0.00 0.01 0.00 +ornithorynque ornithorynque NOM m s 0.26 0.20 0.25 0.07 +ornithorynques ornithorynque NOM m p 0.26 0.20 0.01 0.14 +ornière ornière NOM f s 0.49 6.42 0.17 1.42 +ornières ornière NOM f p 0.49 6.42 0.31 5.00 +ornât orner VER 3.11 31.15 0.00 0.14 sub:imp:3s; +ornèrent orner VER 3.11 31.15 0.00 0.14 ind:pas:3p; +orné orner VER m s 3.11 31.15 0.26 8.38 par:pas; +ornée orner VER f s 3.11 31.15 0.08 6.01 par:pas; +ornées orner VER f p 3.11 31.15 0.26 2.77 par:pas; +ornés orné ADJ m p 0.04 0.88 0.03 0.27 +orographie orographie NOM f s 0.40 0.00 0.40 0.00 +oronge oronge NOM f s 0.00 0.20 0.00 0.07 +oronges oronge NOM f p 0.00 0.20 0.00 0.14 +oropharynx oropharynx NOM m 0.04 0.00 0.04 0.00 +orpailleur orpailleur NOM m s 0.02 0.07 0.01 0.07 +orpailleurs orpailleur NOM m p 0.02 0.07 0.01 0.00 +orphelin orphelin ADJ m s 7.57 6.49 3.92 3.78 +orphelinat orphelinat NOM m s 6.13 3.18 5.86 2.91 +orphelinats orphelinat NOM m p 6.13 3.18 0.28 0.27 +orpheline orphelin ADJ f s 7.57 6.49 2.11 1.35 +orphelines orphelin NOM f p 7.55 9.53 0.79 0.20 +orphelins orphelin NOM m p 7.55 9.53 3.91 2.30 +orphie orphie NOM f s 0.02 0.00 0.02 0.00 +orphique orphique ADJ m s 0.00 0.14 0.00 0.07 +orphiques orphique ADJ m p 0.00 0.14 0.00 0.07 +orphisme orphisme NOM m s 0.00 0.07 0.00 0.07 +orphée orphée NOM f s 0.00 0.07 0.00 0.07 +orphéon orphéon NOM m s 0.10 0.95 0.10 0.74 +orphéoniste orphéoniste NOM s 0.00 0.14 0.00 0.07 +orphéonistes orphéoniste NOM p 0.00 0.14 0.00 0.07 +orphéons orphéon NOM m p 0.10 0.95 0.00 0.20 +orpiment orpiment NOM m s 0.10 0.00 0.10 0.00 +orpin orpin NOM m s 0.00 0.14 0.00 0.14 +orque orque NOM f s 1.43 0.07 0.61 0.07 +orques orque NOM f p 1.43 0.07 0.82 0.00 +ors or NOM m p 110.28 130.00 0.32 2.77 +orsec orsec NOM m 0.00 0.07 0.00 0.07 +ort ort ADJ 0.16 0.00 0.16 0.00 +orteil orteil NOM m s 9.71 9.12 4.04 1.96 +orteils orteil NOM m p 9.71 9.12 5.67 7.16 +ortho ortho ADV 0.56 0.27 0.56 0.27 +orthodontie orthodontie NOM f s 0.04 0.00 0.04 0.00 +orthodontique orthodontique ADJ m s 0.01 0.00 0.01 0.00 +orthodontiste orthodontiste NOM s 0.28 0.00 0.22 0.00 +orthodontistes orthodontiste NOM p 0.28 0.00 0.05 0.00 +orthodoxe orthodoxe ADJ s 2.13 4.73 1.56 3.24 +orthodoxes orthodoxe NOM p 0.73 1.22 0.58 0.88 +orthodoxie orthodoxie NOM f s 0.15 1.42 0.15 1.42 +orthogonal orthogonal ADJ m s 0.04 0.07 0.03 0.00 +orthogonaux orthogonal ADJ m p 0.04 0.07 0.01 0.07 +orthographe orthographe NOM f s 3.34 5.88 3.34 5.88 +orthographiait orthographier VER 0.20 0.47 0.00 0.14 ind:imp:3s; +orthographie orthographier VER 0.20 0.47 0.02 0.07 ind:pre:3s; +orthographier orthographier VER 0.20 0.47 0.04 0.14 inf; +orthographique orthographique ADJ s 0.02 0.07 0.02 0.00 +orthographiques orthographique ADJ f p 0.02 0.07 0.00 0.07 +orthographié orthographier VER m s 0.20 0.47 0.13 0.14 par:pas; +orthographiées orthographier VER f p 0.20 0.47 0.01 0.00 par:pas; +orthophonie orthophonie NOM f s 0.07 0.00 0.07 0.00 +orthophoniste orthophoniste NOM s 0.30 0.14 0.30 0.07 +orthophonistes orthophoniste NOM p 0.30 0.14 0.00 0.07 +orthoptère orthoptère NOM m s 0.01 0.14 0.01 0.00 +orthoptères orthoptère NOM m p 0.01 0.14 0.00 0.14 +orthopédie orthopédie NOM f s 0.51 0.14 0.51 0.14 +orthopédique orthopédique ADJ s 0.28 0.81 0.18 0.54 +orthopédiques orthopédique ADJ p 0.28 0.81 0.09 0.27 +orthopédiste orthopédiste NOM s 0.10 0.00 0.10 0.00 +orthostatique orthostatique ADJ f s 0.01 0.00 0.01 0.00 +ortie ortie NOM f s 2.04 6.82 0.41 0.74 +orties ortie NOM f p 2.04 6.82 1.63 6.08 +ortolan ortolan NOM m s 0.41 1.89 0.11 0.27 +ortolans ortolan NOM m p 0.41 1.89 0.30 1.62 +ortédrine ortédrine NOM f s 0.00 0.07 0.00 0.07 +oréade oréade NOM f s 0.00 0.07 0.00 0.07 +orée orée NOM f s 0.67 4.86 0.67 4.86 +orémus orémus NOM m 0.00 0.14 0.00 0.14 +orvet orvet NOM m s 0.04 0.14 0.04 0.14 +oryctérope oryctérope NOM m s 0.03 0.00 0.03 0.00 +oryx oryx NOM m 0.08 0.00 0.08 0.00 +os os NOM m 40.77 49.73 40.77 49.73 +osa oser VER 90.06 155.47 0.05 11.35 ind:pas:3s; +osai oser VER 90.06 155.47 0.14 2.36 ind:pas:1s; +osaient oser VER 90.06 155.47 0.17 3.38 ind:imp:3p; +osais oser VER 90.06 155.47 2.73 12.77 ind:imp:1s;ind:imp:2s; +osait oser VER 90.06 155.47 1.91 27.30 ind:imp:3s; +osant oser VER 90.06 155.47 0.05 5.68 par:pre; +oscar oscar NOM m s 1.71 0.47 0.65 0.14 +oscars oscar NOM m p 1.71 0.47 1.07 0.34 +oscilla osciller VER 0.63 13.11 0.00 0.61 ind:pas:3s; +oscillai osciller VER 0.63 13.11 0.00 0.07 ind:pas:1s; +oscillaient osciller VER 0.63 13.11 0.00 0.81 ind:imp:3p; +oscillais osciller VER 0.63 13.11 0.01 0.20 ind:imp:1s; +oscillait osciller VER 0.63 13.11 0.01 3.18 ind:imp:3s; +oscillant oscillant ADJ m s 0.06 0.81 0.04 0.47 +oscillante oscillant ADJ f s 0.06 0.81 0.01 0.14 +oscillants oscillant ADJ m p 0.06 0.81 0.00 0.20 +oscillateur oscillateur NOM m s 0.17 0.07 0.17 0.07 +oscillation oscillation NOM f s 0.25 1.96 0.13 0.88 +oscillations oscillation NOM f p 0.25 1.96 0.12 1.08 +oscillatoire oscillatoire ADJ m s 0.01 0.14 0.01 0.07 +oscillatoires oscillatoire ADJ m p 0.01 0.14 0.00 0.07 +oscille osciller VER 0.63 13.11 0.46 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +oscillent osciller VER 0.63 13.11 0.09 0.61 ind:pre:3p; +osciller osciller VER 0.63 13.11 0.04 1.76 inf; +oscillez osciller VER 0.63 13.11 0.01 0.00 imp:pre:2p; +oscillographe oscillographe NOM s 0.07 0.00 0.07 0.00 +oscillomètre oscillomètre NOM m s 0.01 0.07 0.01 0.07 +oscilloscope oscilloscope NOM m s 0.08 0.00 0.08 0.00 +oscillèrent osciller VER 0.63 13.11 0.00 0.14 ind:pas:3p; +oscillé osciller VER m s 0.63 13.11 0.00 0.27 par:pas; +ose oser VER 90.06 155.47 22.97 28.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +oseille oseille NOM f s 1.78 4.32 1.78 4.19 +oseilles oseille NOM f p 1.78 4.32 0.00 0.14 +osent oser VER 90.06 155.47 3.23 3.92 ind:pre:3p; +oser oser VER 90.06 155.47 3.15 11.42 inf;; +osera oser VER 90.06 155.47 1.50 1.89 ind:fut:3s; +oserai oser VER 90.06 155.47 1.60 2.03 ind:fut:1s; +oseraie oseraie NOM f s 0.00 0.14 0.00 0.07 +oseraient oseraient ADV 0.00 0.07 0.00 0.07 +oseraies oseraie NOM f p 0.00 0.14 0.00 0.07 +oserais oser VER 90.06 155.47 3.86 3.99 cnd:pre:1s;cnd:pre:2s; +oserait oser VER 90.06 155.47 2.71 5.34 cnd:pre:3s; +oseras oser VER 90.06 155.47 1.42 0.14 ind:fut:2s; +oserez oser VER 90.06 155.47 0.33 0.27 ind:fut:2p; +oseriez oser VER 90.06 155.47 0.91 0.07 cnd:pre:2p; +oserions oser VER 90.06 155.47 0.04 0.14 cnd:pre:1p; +oserons oser VER 90.06 155.47 0.04 0.00 ind:fut:1p; +oseront oser VER 90.06 155.47 0.76 0.47 ind:fut:3p; +oses oser VER 90.06 155.47 18.16 1.89 ind:pre:2s; +osez oser VER 90.06 155.47 10.71 1.49 imp:pre:2p;ind:pre:2p; +osier osier NOM m s 0.35 12.64 0.35 12.30 +osiers osier NOM m p 0.35 12.64 0.00 0.34 +osiez oser VER 90.06 155.47 0.34 0.14 ind:imp:2p; +osions oser VER 90.06 155.47 0.16 1.55 ind:imp:1p; +osmium osmium NOM m s 0.02 0.00 0.02 0.00 +osmonde osmonde NOM f s 0.02 0.00 0.02 0.00 +osmose osmose NOM f s 0.50 1.08 0.50 1.01 +osmoses osmose NOM f p 0.50 1.08 0.00 0.07 +osâmes oser VER 90.06 155.47 0.00 0.20 ind:pas:1p; +osons oser VER 90.06 155.47 0.23 0.81 imp:pre:1p;ind:pre:1p; +osât oser VER 90.06 155.47 0.10 0.88 sub:imp:3s; +ossature ossature NOM f s 0.52 1.62 0.52 1.49 +ossatures ossature NOM f p 0.52 1.62 0.00 0.14 +osselet osselet NOM m s 0.39 3.31 0.00 0.14 +osselets osselet NOM m p 0.39 3.31 0.39 3.18 +ossement ossement NOM m s 1.33 3.78 0.02 0.14 +ossements ossement NOM m p 1.33 3.78 1.30 3.65 +osseuse osseux ADJ f s 1.73 9.32 1.33 2.64 +osseuses osseux ADJ f p 1.73 9.32 0.08 1.42 +osseux osseux ADJ m 1.73 9.32 0.32 5.27 +ossification ossification NOM f s 0.00 0.14 0.00 0.14 +ossifié ossifier VER m s 0.00 0.07 0.00 0.07 par:pas; +osso_buco osso_buco NOM m s 0.05 0.00 0.05 0.00 +ossuaire ossuaire NOM m s 0.43 0.54 0.42 0.41 +ossuaires ossuaire NOM m p 0.43 0.54 0.01 0.14 +ossue ossu ADJ f s 0.00 0.07 0.00 0.07 +ost ost NOM m s 0.18 0.00 0.18 0.00 +ostensible ostensible ADJ s 0.00 0.54 0.00 0.54 +ostensiblement ostensiblement ADV 0.04 4.66 0.04 4.66 +ostensoir ostensoir NOM m s 0.27 1.62 0.14 1.28 +ostensoirs ostensoir NOM m p 0.27 1.62 0.14 0.34 +ostentation ostentation NOM f s 0.32 3.38 0.32 3.38 +ostentatoire ostentatoire ADJ s 0.08 1.42 0.08 1.42 +ostentatoirement ostentatoirement ADV 0.00 0.14 0.00 0.14 +osèrent oser VER 90.06 155.47 0.34 0.54 ind:pas:3p; +ostinato ostinato ADV 0.02 0.00 0.02 0.00 +ostracisme ostracisme NOM m s 0.47 1.08 0.47 1.08 +ostrogoth ostrogoth NOM m s 0.02 0.20 0.01 0.14 +ostrogoths ostrogoth NOM m p 0.02 0.20 0.01 0.07 +ostréiculteur ostréiculteur NOM m s 0.01 0.14 0.00 0.07 +ostréiculteurs ostréiculteur NOM m p 0.01 0.14 0.01 0.07 +ostréiculture ostréiculture NOM f s 0.01 0.00 0.01 0.00 +ostéoarthrite ostéoarthrite NOM f s 0.01 0.00 0.01 0.00 +ostéogenèse ostéogenèse NOM f s 0.02 0.00 0.02 0.00 +ostéogéniques ostéogénique ADJ f p 0.01 0.00 0.01 0.00 +ostéologique ostéologique ADJ f s 0.01 0.00 0.01 0.00 +ostéomyélite ostéomyélite NOM f s 0.03 0.00 0.03 0.00 +ostéopathe ostéopathe NOM s 0.36 0.00 0.33 0.00 +ostéopathes ostéopathe NOM p 0.36 0.00 0.03 0.00 +ostéopathie ostéopathie NOM f s 0.01 0.07 0.01 0.07 +ostéoporose ostéoporose NOM f s 0.07 0.00 0.07 0.00 +ostéosarcome ostéosarcome NOM m s 0.04 0.00 0.04 0.00 +ostéotomie ostéotomie NOM f s 0.01 0.00 0.01 0.00 +osé oser VER m s 90.06 155.47 12.12 26.82 par:pas; +osée oser VER f s 90.06 155.47 0.21 0.07 par:pas; +osées osé ADJ f p 1.24 0.88 0.39 0.27 +osés osé ADJ m p 1.24 0.88 0.12 0.14 +otage otage NOM m s 26.40 5.74 15.22 2.97 +otages otage NOM m p 26.40 5.74 11.17 2.77 +otalgie otalgie NOM f s 0.03 0.00 0.03 0.00 +otarie otarie NOM f s 1.05 1.15 0.13 0.68 +otaries otarie NOM f p 1.05 1.15 0.92 0.47 +otite otite NOM f s 1.16 0.81 0.84 0.47 +otites otite NOM f p 1.16 0.81 0.31 0.34 +oto_rhino_laryngologique oto_rhino_laryngologique ADJ f s 0.00 0.07 0.00 0.07 +oto_rhino_laryngologiste oto_rhino_laryngologiste NOM s 0.02 0.00 0.02 0.00 +oto_rhino oto_rhino NOM s 0.49 1.22 0.48 1.08 +oto_rhino oto_rhino NOM p 0.49 1.22 0.01 0.07 +oto_rhino oto_rhino NOM s 0.49 1.22 0.00 0.07 +otoscope otoscope NOM m s 0.01 0.00 0.01 0.00 +otospongiose otospongiose NOM s 0.10 0.00 0.10 0.00 +âtre âtre NOM m s 0.10 5.88 0.08 5.61 +âtres âtre NOM m p 0.10 5.88 0.01 0.27 +ottoman ottoman ADJ m s 0.28 1.35 0.18 0.27 +ottomane ottomane NOM f s 0.01 0.27 0.01 0.27 +ottomanes ottoman ADJ f p 0.28 1.35 0.00 0.07 +ottomans ottoman ADJ m p 0.28 1.35 0.10 0.14 +ou ou CON 1583.95 2429.86 1583.95 2429.86 +ouï_dire ouï_dire NOM m 0.00 1.01 0.00 1.01 +ouï ouïr VER m s 5.72 3.78 0.87 0.68 par:pas; +ouïe ouïe NOM f s 2.38 4.46 2.21 3.38 +ouïes ouïe NOM f p 2.38 4.46 0.16 1.08 +ouïgour ouïgour NOM s 0.00 0.07 0.00 0.07 +ouïr ouïr VER 5.72 3.78 0.77 1.22 inf; +ouïrais ouïr VER 5.72 3.78 0.00 0.07 cnd:pre:1s; +ouïs ouïr VER m p 5.72 3.78 0.02 0.47 ind:pas:1s;par:pas; +ouït ouïr VER 5.72 3.78 0.00 0.41 ind:pas:3s; +ouah ouah ONO 9.30 1.28 9.30 1.28 +ouaille ouaille NOM f s 0.57 1.15 0.01 0.07 +ouailles ouaille NOM f p 0.57 1.15 0.56 1.08 +ouais ouais ADV 533.02 39.05 533.02 39.05 +ouananiche ouananiche NOM f s 0.06 0.07 0.04 0.00 +ouananiches ouananiche NOM f p 0.06 0.07 0.02 0.07 +ouaouaron ouaouaron NOM m s 0.01 0.00 0.01 0.00 +ouata ouater VER 0.00 1.82 0.00 0.07 ind:pas:3s; +ouatant ouater VER 0.00 1.82 0.00 0.07 par:pre; +ouate ouate NOM f s 0.27 3.72 0.26 3.58 +ouates ouate NOM f p 0.27 3.72 0.01 0.14 +ouateuse ouateux ADJ f s 0.00 0.14 0.00 0.07 +ouateux ouateux ADJ m s 0.00 0.14 0.00 0.07 +ouatiner ouatiner VER 0.00 0.41 0.00 0.07 inf; +ouatiné ouatiner VER m s 0.00 0.41 0.00 0.07 par:pas; +ouatinée ouatiner VER f s 0.00 0.41 0.00 0.14 par:pas; +ouatinées ouatiner VER f p 0.00 0.41 0.00 0.14 par:pas; +ouaté ouaté ADJ m s 0.01 2.23 0.01 0.74 +ouatée ouaté ADJ f s 0.01 2.23 0.00 1.01 +ouatées ouaté ADJ f p 0.01 2.23 0.00 0.14 +ouatés ouater VER m p 0.00 1.82 0.00 0.47 par:pas; +oubli oubli NOM m s 8.02 29.93 6.92 28.65 +oublia oublier VER 487.06 286.96 0.58 6.15 ind:pas:3s; +oubliable oubliable ADJ f s 0.03 0.14 0.03 0.14 +oubliai oublier VER 487.06 286.96 0.42 1.96 ind:pas:1s; +oubliaient oublier VER 487.06 286.96 0.17 2.16 ind:imp:3p; +oubliais oublier VER 487.06 286.96 9.17 9.12 ind:imp:1s;ind:imp:2s; +oubliait oublier VER 487.06 286.96 1.22 14.32 ind:imp:3s; +oubliant oublier VER 487.06 286.96 1.52 8.11 par:pre; +oublias oublier VER 487.06 286.96 0.00 0.07 ind:pas:2s; +oubliasse oublier VER 487.06 286.96 0.00 0.07 sub:imp:1s; +oublie oublier VER 487.06 286.96 104.78 34.66 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +oublient oublier VER 487.06 286.96 3.94 3.51 ind:pre:3p; +oublier oublier VER 487.06 286.96 85.96 74.19 ind:pre:2p;inf; +oubliera oublier VER 487.06 286.96 4.03 1.62 ind:fut:3s; +oublierai oublier VER 487.06 286.96 15.98 6.55 ind:fut:1s; +oublieraient oublier VER 487.06 286.96 0.09 0.20 cnd:pre:3p; +oublierais oublier VER 487.06 286.96 2.42 0.34 cnd:pre:1s;cnd:pre:2s; +oublierait oublier VER 487.06 286.96 0.89 2.97 cnd:pre:3s; +oublieras oublier VER 487.06 286.96 4.74 0.81 ind:fut:2s; +oublierez oublier VER 487.06 286.96 1.89 0.54 ind:fut:2p; +oublierions oublier VER 487.06 286.96 0.00 0.07 cnd:pre:1p; +oublierons oublier VER 487.06 286.96 1.56 0.27 ind:fut:1p; +oublieront oublier VER 487.06 286.96 1.10 0.34 ind:fut:3p; +oublies oublier VER 487.06 286.96 15.34 4.39 ind:pre:2s;sub:pre:2s; +oubliette oubliette NOM f s 1.21 1.62 0.19 0.14 +oubliettes oubliette NOM f p 1.21 1.62 1.01 1.49 +oublieuse oublieux ADJ f s 0.65 2.23 0.00 0.68 +oublieuses oublieux ADJ f p 0.65 2.23 0.20 0.27 +oublieux oublieux ADJ m 0.65 2.23 0.45 1.28 +oubliez oublier VER 487.06 286.96 49.48 11.15 imp:pre:2p;ind:pre:2p; +oubliiez oublier VER 487.06 286.96 0.00 0.07 ind:imp:2p; +oubliions oublier VER 487.06 286.96 0.00 0.27 ind:imp:1p; +oubliâmes oublier VER 487.06 286.96 0.14 0.07 ind:pas:1p; +oublions oublier VER 487.06 286.96 13.28 3.72 imp:pre:1p;ind:pre:1p; +oubliât oublier VER 487.06 286.96 0.00 0.41 sub:imp:3s; +oublis oubli NOM m p 8.02 29.93 0.20 1.22 +oublièrent oublier VER 487.06 286.96 0.02 1.08 ind:pas:3p; +oublié oublier VER m s 487.06 286.96 154.09 80.27 par:pas;par:pas;par:pas; +oubliée oublier VER f s 487.06 286.96 8.81 8.92 par:pas; +oubliées oublier VER f p 487.06 286.96 1.65 2.64 par:pas; +oubliés oublier VER m p 487.06 286.96 3.72 5.95 par:pas; +ouche ouche NOM f s 0.42 0.07 0.42 0.07 +oued oued NOM m s 0.27 0.61 0.27 0.47 +oueds oued NOM m p 0.27 0.61 0.00 0.14 +ouest_allemand ouest_allemand ADJ m s 0.12 0.00 0.12 0.00 +ouest ouest NOM m 27.79 27.77 27.79 27.77 +ouf ouf ONO 4.57 7.03 4.57 7.03 +ougandais ougandais NOM m 0.06 0.07 0.06 0.07 +ougandaise ougandais ADJ f s 0.04 0.00 0.04 0.00 +ouh ouh ONO 5.50 1.28 5.50 1.28 +oui_da oui_da ONO 0.27 0.07 0.27 0.07 +oui oui ADV 3207.35 637.57 3207.35 637.57 +ouiche ouiche ONO 0.02 1.96 0.02 1.96 +ouighour ouighour NOM m s 0.00 1.01 0.00 0.61 +ouighours ouighour NOM m p 0.00 1.01 0.00 0.41 +ouille ouille ONO 0.79 1.69 0.79 1.69 +ouistiti ouistiti NOM m s 1.51 0.81 1.46 0.61 +ouistitis ouistiti NOM m p 1.51 0.81 0.05 0.20 +oukases oukase NOM m p 0.00 0.07 0.00 0.07 +ouléma ouléma NOM m s 0.01 1.69 0.01 0.14 +oulémas ouléma NOM m p 0.01 1.69 0.00 1.55 +ounce ounce NOM f s 0.01 0.00 0.01 0.00 +ouragan ouragan NOM m s 6.05 4.19 5.09 3.72 +ouragans ouragan NOM m p 6.05 4.19 0.96 0.47 +ouralienne ouralien ADJ f s 0.00 0.07 0.00 0.07 +ouraniennes ouranien ADJ f p 0.00 0.07 0.00 0.07 +ourdi ourdir VER m s 0.72 1.55 0.39 0.27 par:pas; +ourdie ourdir VER f s 0.72 1.55 0.10 0.14 par:pas; +ourdies ourdir VER f p 0.72 1.55 0.00 0.07 par:pas; +ourdir ourdir VER 0.72 1.55 0.01 0.14 inf; +ourdira ourdir VER 0.72 1.55 0.00 0.07 ind:fut:3s; +ourdis ourdir VER 0.72 1.55 0.01 0.07 ind:pre:1s;ind:pre:2s; +ourdissage ourdissage NOM m s 0.00 0.54 0.00 0.54 +ourdissait ourdir VER 0.72 1.55 0.10 0.07 ind:imp:3s; +ourdissant ourdir VER 0.72 1.55 0.00 0.20 par:pre; +ourdissent ourdir VER 0.72 1.55 0.00 0.14 ind:pre:3p; +ourdisseur ourdisseur NOM m s 0.00 0.41 0.00 0.07 +ourdisseurs ourdisseur NOM m p 0.00 0.41 0.00 0.07 +ourdisseuses ourdisseur NOM f p 0.00 0.41 0.00 0.27 +ourdissoir ourdissoir NOM m s 0.00 0.27 0.00 0.27 +ourdit ourdir VER 0.72 1.55 0.11 0.41 ind:pre:3s;ind:pas:3s; +ourdou ourdou NOM m s 0.42 0.00 0.42 0.00 +ourlaient ourler VER 0.02 5.14 0.00 0.20 ind:imp:3p; +ourlait ourler VER 0.02 5.14 0.00 0.41 ind:imp:3s; +ourlant ourler VER 0.02 5.14 0.00 0.34 par:pre; +ourle ourler VER 0.02 5.14 0.00 0.34 ind:pre:3s; +ourlent ourler VER 0.02 5.14 0.00 0.20 ind:pre:3p; +ourler ourler VER 0.02 5.14 0.00 0.34 inf; +ourlet ourlet NOM m s 0.93 3.11 0.69 2.36 +ourlets ourlet NOM m p 0.93 3.11 0.24 0.74 +ourlé ourler VER m s 0.02 5.14 0.00 0.74 par:pas; +ourlée ourler VER f s 0.02 5.14 0.00 0.81 par:pas; +ourlées ourler VER f p 0.02 5.14 0.02 1.42 par:pas; +ourlés ourler VER m p 0.02 5.14 0.00 0.34 par:pas; +ouroboros ouroboros NOM m 0.02 0.00 0.02 0.00 +ours ours NOM m s 24.57 17.91 23.96 17.36 +ourse ours NOM f s 24.57 17.91 0.58 0.47 +ourses ours NOM f p 24.57 17.91 0.02 0.07 +oursin oursin NOM m s 0.38 2.03 0.04 0.54 +oursins oursin NOM m p 0.38 2.03 0.34 1.49 +ourson ourson NOM m s 1.62 0.74 1.52 0.41 +oursonne ourson NOM f s 1.62 0.74 0.01 0.07 +oursonnes oursonne NOM f p 0.01 0.00 0.01 0.00 +oursons ourson NOM m p 1.62 0.74 0.09 0.27 +ousque ousque ADV 0.01 0.07 0.01 0.07 +oust oust ONO 0.25 0.14 0.25 0.14 +oustachi oustachi NOM m s 0.28 0.27 0.14 0.00 +oustachis oustachi NOM m p 0.28 0.27 0.14 0.27 +ouste ouste ONO 5.24 1.82 5.24 1.82 +out out ADJ 8.04 0.68 8.04 0.68 +outarde outarde NOM f s 0.00 0.14 0.00 0.07 +outardes outarde NOM f p 0.00 0.14 0.00 0.07 +outil outil NOM m s 14.18 30.88 3.63 10.14 +outillage outillage NOM m s 0.36 2.70 0.25 2.23 +outillages outillage NOM m p 0.36 2.70 0.11 0.47 +outiller outiller VER 0.06 0.20 0.01 0.00 inf; +outilleur outilleur NOM m s 0.10 0.00 0.10 0.00 +outillé outiller VER m s 0.06 0.20 0.04 0.07 par:pas; +outillée outillé ADJ f s 0.01 0.41 0.00 0.07 +outillées outillé ADJ f p 0.01 0.41 0.00 0.07 +outillés outiller VER m p 0.06 0.20 0.01 0.07 par:pas; +outils outil NOM m p 14.18 30.88 10.56 20.74 +outlaw outlaw NOM m s 0.00 0.14 0.00 0.07 +outlaws outlaw NOM m p 0.00 0.14 0.00 0.07 +outrage outrage NOM m s 3.89 5.14 3.40 2.97 +outrageant outrageant ADJ m s 0.36 0.61 0.15 0.27 +outrageante outrageant ADJ f s 0.36 0.61 0.20 0.20 +outrageantes outrageant ADJ f p 0.36 0.61 0.00 0.07 +outrageants outrageant ADJ m p 0.36 0.61 0.02 0.07 +outragent outrager VER 2.36 4.66 0.01 0.07 ind:pre:3p; +outrager outrager VER 2.36 4.66 0.26 0.27 inf; +outragerais outrager VER 2.36 4.66 0.00 0.07 cnd:pre:1s; +outrages outrage NOM m p 3.89 5.14 0.49 2.16 +outrageuse outrageux ADJ f s 0.10 0.27 0.05 0.00 +outrageusement outrageusement ADV 0.08 1.35 0.08 1.35 +outrageuses outrageux ADJ f p 0.10 0.27 0.01 0.07 +outrageux outrageux ADJ m s 0.10 0.27 0.03 0.20 +outragez outrager VER 2.36 4.66 0.17 0.00 imp:pre:2p;ind:pre:2p; +outragèrent outrager VER 2.36 4.66 0.00 0.07 ind:pas:3p; +outragé outrager VER m s 2.36 4.66 0.26 1.42 par:pas; +outragée outrager VER f s 2.36 4.66 0.27 1.55 par:pas; +outragées outrager VER f p 2.36 4.66 0.01 0.20 par:pas; +outragés outrager VER m p 2.36 4.66 0.31 0.54 par:pas; +outrait outrer VER 0.57 3.11 0.00 0.34 ind:imp:3s; +outrance outrance NOM f s 0.17 3.51 0.17 2.77 +outrances outrance NOM f p 0.17 3.51 0.00 0.74 +outrancier outrancier ADJ m s 0.16 0.68 0.14 0.41 +outrancière outrancier ADJ f s 0.16 0.68 0.01 0.14 +outrancières outrancier ADJ f p 0.16 0.68 0.01 0.14 +outrant outrer VER 0.57 3.11 0.00 0.07 par:pre; +outre_atlantique outre_atlantique ADV 0.04 0.68 0.04 0.68 +outre_manche outre_manche ADV 0.00 0.20 0.00 0.20 +outre_mer outre_mer ADV 0.89 4.05 0.89 4.05 +outre_rhin outre_rhin ADV 0.00 0.27 0.00 0.27 +outre_tombe outre_tombe ADJ s 0.26 2.16 0.26 2.16 +outre outre PRE 3.03 15.27 3.03 15.27 +outrecuidance outrecuidance NOM f s 0.01 0.74 0.01 0.74 +outrecuidant outrecuidant ADJ m s 0.11 0.54 0.11 0.20 +outrecuidante outrecuidant ADJ f s 0.11 0.54 0.00 0.14 +outrecuidantes outrecuidant ADJ f p 0.11 0.54 0.00 0.14 +outrecuidants outrecuidant ADJ m p 0.11 0.54 0.00 0.07 +outremer outremer NOM m s 0.21 0.47 0.21 0.47 +outrepassa outrepasser VER 0.83 0.68 0.01 0.07 ind:pas:3s; +outrepassaient outrepasser VER 0.83 0.68 0.00 0.14 ind:imp:3p; +outrepassait outrepasser VER 0.83 0.68 0.03 0.07 ind:imp:3s; +outrepassant outrepasser VER 0.83 0.68 0.01 0.00 par:pre; +outrepasse outrepasser VER 0.83 0.68 0.13 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +outrepassent outrepasser VER 0.83 0.68 0.02 0.00 ind:pre:3p; +outrepasser outrepasser VER 0.83 0.68 0.23 0.07 inf; +outrepasserai outrepasser VER 0.83 0.68 0.00 0.07 ind:fut:1s; +outrepasses outrepasser VER 0.83 0.68 0.20 0.00 ind:pre:2s; +outrepassez outrepasser VER 0.83 0.68 0.07 0.00 ind:pre:2p; +outrepassé outrepasser VER m s 0.83 0.68 0.13 0.07 par:pas; +outrer outrer VER 0.57 3.11 0.00 0.07 inf; +outres outre NOM f p 4.45 24.59 0.02 1.42 +outrigger outrigger NOM m s 0.16 0.00 0.16 0.00 +outré outrer VER m s 0.57 3.11 0.27 0.61 par:pas; +outrée outré ADJ f s 0.47 2.23 0.26 0.68 +outrées outrer VER f p 0.57 3.11 0.01 0.07 par:pas; +outrés outré ADJ m p 0.47 2.23 0.01 0.34 +outsider outsider NOM m s 0.54 0.74 0.44 0.54 +outsiders outsider NOM m p 0.54 0.74 0.10 0.20 +ouvert ouvrir VER m s 413.32 492.50 56.83 56.35 par:pas; +ouverte ouvrir VER f s 413.32 492.50 22.29 27.97 par:pas; +ouvertement ouvertement ADV 2.50 6.96 2.50 6.96 +ouvertes ouvert ADJ f p 39.97 132.36 2.88 15.14 +ouverts ouvert ADJ m p 39.97 132.36 7.22 23.31 +ouverture ouverture NOM f s 18.31 26.69 16.87 23.04 +ouvertures ouverture NOM f p 18.31 26.69 1.44 3.65 +ouvrîmes ouvrir VER 413.32 492.50 0.00 0.34 ind:pas:1p; +ouvrît ouvrir VER 413.32 492.50 0.01 1.28 sub:imp:3s; +ouvrable ouvrable ADJ m s 0.31 1.35 0.03 0.47 +ouvrables ouvrable ADJ p 0.31 1.35 0.28 0.88 +ouvrage ouvrage NOM m s 5.50 37.30 4.72 26.15 +ouvrageant ouvrager VER 0.14 0.68 0.00 0.07 par:pre; +ouvrager ouvrager VER 0.14 0.68 0.00 0.07 inf; +ouvrages ouvrage NOM m p 5.50 37.30 0.78 11.15 +ouvragé ouvragé ADJ m s 0.15 2.30 0.02 0.88 +ouvragée ouvragé ADJ f s 0.15 2.30 0.12 0.54 +ouvragées ouvragé ADJ f p 0.15 2.30 0.00 0.61 +ouvragés ouvragé ADJ m p 0.15 2.30 0.01 0.27 +ouvraient ouvrir VER 413.32 492.50 0.52 12.50 ind:imp:3p; +ouvrais ouvrir VER 413.32 492.50 1.39 4.12 ind:imp:1s;ind:imp:2s; +ouvrait ouvrir VER 413.32 492.50 2.40 46.62 ind:imp:3s; +ouvrant ouvrir VER 413.32 492.50 1.86 18.65 par:pre; +ouvrants ouvrant ADJ m p 0.32 3.18 0.00 0.07 +ouvre_boîte ouvre_boîte NOM m s 0.32 0.20 0.32 0.20 +ouvre_boîtes ouvre_boîtes NOM m 0.16 0.34 0.16 0.34 +ouvre_bouteille ouvre_bouteille NOM m s 0.12 0.14 0.08 0.00 +ouvre_bouteille ouvre_bouteille NOM m p 0.12 0.14 0.04 0.14 +ouvre ouvrir VER 413.32 492.50 141.45 80.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +ouvrent ouvrir VER 413.32 492.50 6.24 10.88 ind:pre:3p;sub:pre:3p; +ouvrer ouvrer VER 0.02 0.14 0.00 0.07 inf; +ouvres ouvrir VER 413.32 492.50 10.20 1.62 ind:pre:2s;sub:pre:2s; +ouvreur ouvreur NOM m s 1.21 2.36 1.00 0.00 +ouvreurs ouvreur NOM m p 1.21 2.36 0.01 0.14 +ouvreuse ouvreur NOM f s 1.21 2.36 0.20 1.62 +ouvreuses ouvreuse NOM f p 0.17 0.00 0.17 0.00 +ouvrez ouvrir VER 413.32 492.50 64.17 6.22 imp:pre:2p;imp:pre:2p;ind:pre:2p; +ouvrier ouvrier NOM m s 22.38 51.35 7.17 12.64 +ouvriers ouvrier NOM m p 22.38 51.35 14.56 34.46 +ouvriez ouvrir VER 413.32 492.50 0.41 0.00 ind:imp:2p; +ouvrions ouvrir VER 413.32 492.50 0.10 0.88 ind:imp:1p; +ouvrir ouvrir VER 413.32 492.50 79.61 88.58 inf; +ouvrira ouvrir VER 413.32 492.50 4.13 1.96 ind:fut:3s; +ouvrirai ouvrir VER 413.32 492.50 2.45 0.95 ind:fut:1s; +ouvriraient ouvrir VER 413.32 492.50 0.09 1.28 cnd:pre:3p; +ouvrirais ouvrir VER 413.32 492.50 0.41 0.61 cnd:pre:1s;cnd:pre:2s; +ouvrirait ouvrir VER 413.32 492.50 0.75 4.26 cnd:pre:3s; +ouvriras ouvrir VER 413.32 492.50 0.85 0.27 ind:fut:2s; +ouvrirent ouvrir VER 413.32 492.50 0.51 3.78 ind:pas:3p; +ouvrirez ouvrir VER 413.32 492.50 0.60 0.07 ind:fut:2p; +ouvririez ouvrir VER 413.32 492.50 0.18 0.07 cnd:pre:2p; +ouvririons ouvrir VER 413.32 492.50 0.15 0.00 cnd:pre:1p; +ouvrirons ouvrir VER 413.32 492.50 0.77 0.00 ind:fut:1p; +ouvriront ouvrir VER 413.32 492.50 1.35 0.68 ind:fut:3p; +ouvris ouvrir VER 413.32 492.50 0.36 7.97 ind:pas:1s;ind:pas:2s; +ouvrissent ouvrir VER 413.32 492.50 0.00 0.20 sub:imp:3p; +ouvrit ouvrir VER 413.32 492.50 2.54 86.62 ind:pas:3s; +ouvrière ouvrier ADJ f s 6.07 15.88 2.48 6.69 +ouvrières ouvrière NOM f p 1.56 0.00 1.56 0.00 +ouvriérisme ouvriérisme NOM m s 0.00 0.07 0.00 0.07 +ouvriériste ouvriériste ADJ m s 0.00 0.20 0.00 0.20 +ouvroir ouvroir NOM m s 0.00 0.88 0.00 0.68 +ouvroirs ouvroir NOM m p 0.00 0.88 0.00 0.20 +ouvrons ouvrir VER 413.32 492.50 3.39 0.95 imp:pre:1p;ind:pre:1p; +ouvré ouvrer VER m s 0.02 0.14 0.02 0.07 par:pas; +ouvrées ouvré ADJ f p 0.04 0.27 0.00 0.14 +ouvrés ouvré ADJ m p 0.04 0.27 0.03 0.07 +ouzbeks ouzbek ADJ p 0.00 0.07 0.00 0.07 +ouzo ouzo NOM m s 0.58 2.36 0.48 2.30 +ouzos ouzo NOM m p 0.58 2.36 0.10 0.07 +ovaire ovaire NOM m s 1.20 1.35 0.49 0.14 +ovaires ovaire NOM m p 1.20 1.35 0.71 1.22 +ovalaire ovalaire ADJ f s 0.00 0.07 0.00 0.07 +ovale ovale ADJ s 1.88 10.54 1.83 8.18 +ovales ovale ADJ p 1.88 10.54 0.06 2.36 +ovalisées ovaliser VER f p 0.00 0.07 0.00 0.07 par:pas; +ovariectomie ovariectomie NOM f s 0.01 0.00 0.01 0.00 +ovarien ovarien ADJ m s 0.07 0.00 0.02 0.00 +ovarienne ovarien ADJ f s 0.07 0.00 0.05 0.00 +ovariotomie ovariotomie NOM f s 0.00 0.07 0.00 0.07 +ovation ovation NOM f s 0.96 2.50 0.91 1.49 +ovationnaient ovationner VER 0.03 0.34 0.00 0.07 ind:imp:3p; +ovationner ovationner VER 0.03 0.34 0.01 0.14 inf; +ovationné ovationner VER m s 0.03 0.34 0.01 0.07 par:pas; +ovationnés ovationner VER m p 0.03 0.34 0.01 0.07 par:pas; +ovations ovation NOM f p 0.96 2.50 0.06 1.01 +ove ove NOM m s 0.20 0.07 0.20 0.07 +overdose overdose NOM f s 5.11 1.28 4.81 1.28 +overdoses overdose NOM f p 5.11 1.28 0.29 0.00 +overdrive overdrive NOM m s 0.05 0.07 0.05 0.07 +ovibos ovibos NOM m 0.00 0.07 0.00 0.07 +ovin ovin ADJ m s 0.01 0.00 0.01 0.00 +ovins ovin NOM m p 0.04 0.07 0.04 0.07 +ovipare ovipare ADJ s 0.02 0.00 0.01 0.00 +ovipares ovipare ADJ p 0.02 0.00 0.01 0.00 +ovni ovni NOM m 2.98 0.27 1.07 0.14 +ovnis ovni NOM m p 2.98 0.27 1.91 0.14 +ovoïdal ovoïdal ADJ m s 0.01 0.61 0.00 0.61 +ovoïdale ovoïdal ADJ f s 0.01 0.61 0.01 0.00 +ovoïde ovoïde ADJ s 0.00 1.08 0.00 0.95 +ovoïdes ovoïde ADJ p 0.00 1.08 0.00 0.14 +ovocyte ovocyte NOM m s 0.03 0.41 0.00 0.14 +ovocytes ovocyte NOM m p 0.03 0.41 0.03 0.27 +ovée ové ADJ f s 0.01 0.00 0.01 0.00 +ovulaire ovulaire ADJ f s 0.01 0.00 0.01 0.00 +ovulation ovulation NOM f s 0.53 0.07 0.53 0.07 +ovule ovule NOM m s 1.16 0.47 0.64 0.27 +ovuler ovuler VER 0.11 0.00 0.04 0.00 inf; +ovules ovule NOM m p 1.16 0.47 0.52 0.20 +oxalate oxalate NOM m s 0.01 0.00 0.01 0.00 +oxer oxer NOM m s 0.00 0.07 0.00 0.07 +oxfordien oxfordien ADJ m s 0.00 0.14 0.00 0.07 +oxfordiennes oxfordien ADJ f p 0.00 0.14 0.00 0.07 +oxfords oxford NOM m p 0.03 0.14 0.03 0.14 +oxhydrique oxhydrique ADJ s 0.00 0.07 0.00 0.07 +oxo oxo ADJ 0.00 0.07 0.00 0.07 +oxonienne oxonien NOM f s 0.00 0.07 0.00 0.07 +oxychlorure oxychlorure NOM m s 0.01 0.00 0.01 0.00 +oxydant oxydant NOM m s 0.05 0.00 0.01 0.00 +oxydants oxydant NOM m p 0.05 0.00 0.04 0.00 +oxydation oxydation NOM f s 0.16 0.20 0.16 0.20 +oxyde oxyde NOM m s 1.03 0.41 0.99 0.34 +oxyder oxyder VER 0.10 0.61 0.00 0.07 inf; +oxydes oxyde NOM m p 1.03 0.41 0.04 0.07 +oxydé oxyder VER m s 0.10 0.61 0.07 0.14 par:pas; +oxydée oxyder VER f s 0.10 0.61 0.00 0.14 par:pas; +oxydées oxyder VER f p 0.10 0.61 0.00 0.14 par:pas; +oxygène oxygène NOM m s 14.03 4.39 14.03 4.39 +oxygènent oxygéner VER 0.53 0.20 0.01 0.07 ind:pre:3p; +oxygénation oxygénation NOM f s 0.15 0.07 0.15 0.07 +oxygéner oxygéner VER 0.53 0.20 0.19 0.00 inf; +oxygéné oxygéné ADJ m s 0.49 0.95 0.05 0.07 +oxygénée oxygéné ADJ f s 0.49 0.95 0.42 0.54 +oxygénées oxygéné ADJ f p 0.49 0.95 0.00 0.07 +oxygénés oxygéné ADJ m p 0.49 0.95 0.02 0.27 +oxymore oxymore NOM m s 0.04 0.00 0.03 0.00 +oxymores oxymore NOM m p 0.04 0.00 0.01 0.00 +oxymoron oxymoron NOM m s 0.05 0.00 0.05 0.00 +oxymétrie oxymétrie NOM f s 0.03 0.00 0.03 0.00 +oyant oyant ADJ m s 0.10 0.00 0.10 0.00 +oyat oyat NOM m s 0.11 0.14 0.00 0.07 +oyats oyat NOM m p 0.11 0.14 0.11 0.07 +oye oye NOM f s 0.21 0.95 0.21 0.95 +oyez ouïr VER 5.72 3.78 1.69 0.20 imp:pre:2p;ind:pre:2p; +oyons ouïr VER 5.72 3.78 0.01 0.07 imp:pre:1p; +ozone ozone NOM m s 1.35 0.54 1.35 0.54 +p. p. NOM m 3.66 0.34 3.66 0.34 +p.m. p.m. NOM m s 0.01 0.00 0.01 0.00 +pôle pôle NOM m s 3.59 3.99 3.12 2.77 +pôles pôle NOM m p 3.59 3.99 0.47 1.22 +pûmes pouvoir VER 5524.52 2659.80 0.16 1.62 ind:pas:1p; +pût pouvoir VER 5524.52 2659.80 0.50 42.70 sub:imp:3s; +pûtes pouvoir VER 5524.52 2659.80 0.04 0.00 ind:pas:2p; +pa pa ART:ind m s 0.01 0.00 0.01 0.00 +paît paître VER 2.29 4.46 0.20 0.00 ind:pre:3s; +paître paître VER 2.29 4.46 0.97 1.76 inf; +paîtront paître VER 2.29 4.46 0.12 0.00 ind:fut:3p; +païen païen ADJ m s 1.39 3.38 0.51 1.42 +païenne païen ADJ f s 1.39 3.38 0.39 1.28 +païennes païen ADJ f p 1.39 3.38 0.29 0.20 +païens païen NOM m p 2.22 2.57 1.91 1.28 +pacage pacage NOM m s 0.00 0.74 0.00 0.34 +pacages pacage NOM m p 0.00 0.74 0.00 0.41 +pacas paca ADJ m p 0.01 0.00 0.01 0.00 +pacemaker pacemaker NOM m s 0.56 0.34 0.41 0.34 +pacemakers pacemaker NOM m p 0.56 0.34 0.15 0.00 +pacha pacha NOM m s 7.28 11.96 7.11 11.15 +pachas pacha NOM m p 7.28 11.96 0.17 0.81 +pachinko pachinko NOM m s 0.00 0.07 0.00 0.07 +pachon pachon NOM m s 0.00 0.07 0.00 0.07 +pachyderme pachyderme NOM m s 0.21 1.01 0.14 0.74 +pachydermes pachyderme NOM m p 0.21 1.01 0.07 0.27 +pachydermique pachydermique ADJ s 0.01 0.74 0.01 0.68 +pachydermiques pachydermique ADJ p 0.01 0.74 0.00 0.07 +pacifiait pacifier VER 0.65 2.30 0.00 0.14 ind:imp:3s; +pacifiant pacifier VER 0.65 2.30 0.00 0.07 par:pre; +pacifiante pacifiant ADJ f s 0.00 0.27 0.00 0.20 +pacifiantes pacifiant ADJ f p 0.00 0.27 0.00 0.07 +pacificateur pacificateur NOM m s 4.01 0.07 1.10 0.07 +pacificateurs pacificateur NOM m p 4.01 0.07 2.74 0.00 +pacification pacification NOM f s 0.12 0.41 0.12 0.41 +pacificatrice pacificateur NOM f s 4.01 0.07 0.17 0.00 +pacifie pacifier VER 0.65 2.30 0.00 0.14 ind:pre:3s; +pacifier pacifier VER 0.65 2.30 0.45 0.61 inf; +pacifique pacifique ADJ s 4.00 4.26 2.90 3.11 +pacifiquement pacifiquement ADV 0.93 0.27 0.93 0.27 +pacifiques pacifique ADJ p 4.00 4.26 1.10 1.15 +pacifisme pacifisme NOM m s 0.14 0.54 0.14 0.54 +pacifiste pacifiste ADJ s 0.98 0.95 0.88 0.61 +pacifistes pacifiste NOM p 0.46 0.68 0.17 0.34 +pacifié pacifier VER m s 0.65 2.30 0.17 0.74 par:pas; +pacifiée pacifier VER f s 0.65 2.30 0.03 0.34 par:pas; +pacifiées pacifier VER f p 0.65 2.30 0.00 0.14 par:pas; +pacifiés pacifier VER m p 0.65 2.30 0.00 0.14 par:pas; +pack pack NOM m s 1.72 0.88 1.50 0.27 +package package NOM m s 0.09 0.00 0.09 0.00 +packaging packaging NOM m s 0.01 0.00 0.01 0.00 +packs pack NOM m p 1.72 0.88 0.22 0.61 +packson packson NOM m s 0.04 0.07 0.04 0.07 +pacotille pacotille NOM f s 1.63 3.24 1.61 2.91 +pacotilles pacotille NOM f p 1.63 3.24 0.02 0.34 +pacs pacs NOM m 0.58 0.00 0.58 0.00 +pacsif pacsif NOM m s 0.00 0.34 0.00 0.20 +pacsifs pacsif NOM m p 0.00 0.34 0.00 0.14 +pacson pacson NOM m s 0.06 0.61 0.04 0.61 +pacsons pacson NOM m p 0.06 0.61 0.02 0.00 +pacsés pacser VER m p 0.37 0.00 0.37 0.00 par:pas; +pacte pacte NOM m s 8.12 11.89 7.29 11.49 +pactes pacte NOM m p 8.12 11.89 0.83 0.41 +pactisaient pactiser VER 0.52 1.42 0.00 0.07 ind:imp:3p; +pactisait pactiser VER 0.52 1.42 0.01 0.20 ind:imp:3s; +pactisant pactiser VER 0.52 1.42 0.00 0.07 par:pre; +pactise pactiser VER 0.52 1.42 0.05 0.07 ind:pre:1s;ind:pre:3s; +pactiser pactiser VER 0.52 1.42 0.25 0.74 inf; +pactiseras pactiser VER 0.52 1.42 0.00 0.07 ind:fut:2s; +pactiseurs pactiseur NOM m p 0.00 0.07 0.00 0.07 +pactisez pactiser VER 0.52 1.42 0.01 0.00 imp:pre:2p; +pactisions pactiser VER 0.52 1.42 0.00 0.07 ind:imp:1p; +pactisé pactiser VER m s 0.52 1.42 0.20 0.14 par:pas; +pactole pactole NOM m s 1.14 0.74 1.14 0.61 +pactoles pactole NOM m p 1.14 0.74 0.00 0.14 +pad pad NOM m s 0.11 0.27 0.11 0.27 +paddock paddock NOM m s 0.28 2.64 0.27 2.36 +paddocker paddocker VER 0.00 0.07 0.00 0.07 inf; +paddocks paddock NOM m p 0.28 2.64 0.01 0.27 +paddy paddy NOM m s 1.52 0.47 1.52 0.47 +padouanes padouan ADJ f p 0.00 0.07 0.00 0.07 +paella paella NOM f s 1.98 0.68 1.71 0.54 +paellas paella NOM f p 1.98 0.68 0.27 0.14 +paf paf ADJ 1.31 2.23 1.31 2.23 +pagaïe pagaïe NOM f s 0.07 0.74 0.07 0.74 +pagaie pagaie NOM f s 0.72 1.08 0.65 0.47 +pagaient pagayer VER 0.42 1.08 0.02 0.00 ind:pre:3p; +pagaiera pagayer VER 0.42 1.08 0.01 0.00 ind:fut:3s; +pagaies pagaie NOM f p 0.72 1.08 0.07 0.61 +pagaille pagaille NOM f s 5.21 4.80 5.09 4.73 +pagailles pagaille NOM f p 5.21 4.80 0.13 0.07 +pagailleux pagailleux ADJ m 0.00 0.07 0.00 0.07 +paganisme paganisme NOM m s 0.04 0.47 0.04 0.47 +pagaya pagayer VER 0.42 1.08 0.00 0.07 ind:pas:3s; +pagayait pagayer VER 0.42 1.08 0.00 0.07 ind:imp:3s; +pagayant pagayer VER 0.42 1.08 0.02 0.07 par:pre; +pagaye pagaye NOM f s 0.02 0.41 0.02 0.41 +pagayer pagayer VER 0.42 1.08 0.13 0.34 inf; +pagayeur pagayeur NOM m s 0.03 0.14 0.00 0.07 +pagayeurs pagayeur NOM m p 0.03 0.14 0.03 0.07 +pagayez pagayer VER 0.42 1.08 0.09 0.00 imp:pre:2p; +pagayèrent pagayer VER 0.42 1.08 0.00 0.07 ind:pas:3p; +pagayé pagayer VER m s 0.42 1.08 0.05 0.14 par:pas; +page page NOM s 39.41 115.54 25.16 55.88 +pageais pager VER 1.01 0.61 0.00 0.07 ind:imp:1s; +pageait pager VER 1.01 0.61 0.00 0.07 ind:imp:3s; +pageant pager VER 1.01 0.61 0.01 0.00 par:pre; +pagels pagel NOM m p 0.01 0.00 0.01 0.00 +pageot pageot NOM m s 0.02 2.09 0.02 1.62 +pageots pageot NOM m p 0.02 2.09 0.00 0.47 +pager pager VER 1.01 0.61 0.99 0.27 inf; +pages page NOM p 39.41 115.54 14.25 59.66 +pagination pagination NOM f s 0.01 0.07 0.01 0.07 +paginer paginer VER 0.01 0.00 0.01 0.00 inf; +pagne pagne NOM m s 0.40 1.69 0.37 1.42 +pagnes pagne NOM m p 0.40 1.69 0.03 0.27 +pagnon pagnon NOM m s 0.00 0.07 0.00 0.07 +pagnote pagnoter VER 0.00 0.14 0.00 0.07 ind:pre:1s; +pagnoter pagnoter VER 0.00 0.14 0.00 0.07 inf; +pagode pagode NOM f s 0.40 2.84 0.23 2.36 +pagodes pagode NOM f p 0.40 2.84 0.16 0.47 +pagodon pagodon NOM m s 0.00 0.07 0.00 0.07 +pagé pager VER m s 1.01 0.61 0.01 0.07 par:pas; +pagée pager VER f s 1.01 0.61 0.00 0.07 par:pas; +pagure pagure NOM m s 0.00 0.14 0.00 0.07 +pagures pagure NOM m p 0.00 0.14 0.00 0.07 +pagus pagus NOM m 0.01 0.07 0.01 0.07 +pagés pager VER m p 1.01 0.61 0.00 0.07 par:pas; +paie payer VER 416.67 150.20 53.51 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +paiement paiement NOM m s 5.56 2.03 4.36 1.62 +paiements paiement NOM m p 5.56 2.03 1.20 0.41 +paient payer VER 416.67 150.20 6.98 2.09 ind:pre:3p; +paiera payer VER 416.67 150.20 8.71 1.96 ind:fut:3s; +paierai payer VER 416.67 150.20 14.53 2.57 ind:fut:1s; +paieraient payer VER 416.67 150.20 0.93 0.41 cnd:pre:3p; +paierais payer VER 416.67 150.20 2.84 0.41 cnd:pre:1s;cnd:pre:2s; +paierait payer VER 416.67 150.20 2.20 1.62 cnd:pre:3s; +paieras payer VER 416.67 150.20 6.30 1.22 ind:fut:2s; +paierez payer VER 416.67 150.20 4.70 0.34 ind:fut:2p; +paierie paierie NOM f s 0.01 0.20 0.01 0.20 +paieriez payer VER 416.67 150.20 0.11 0.00 cnd:pre:2p; +paierions payer VER 416.67 150.20 0.01 0.07 cnd:pre:1p; +paierons payer VER 416.67 150.20 1.01 0.27 ind:fut:1p; +paieront payer VER 416.67 150.20 2.84 0.54 ind:fut:3p; +paies payer VER 416.67 150.20 8.97 0.74 ind:pre:2s; +paillard paillard ADJ m s 0.35 0.95 0.17 0.61 +paillardait paillarder VER 0.00 0.07 0.00 0.07 ind:imp:3s; +paillarde paillard ADJ f s 0.35 0.95 0.01 0.14 +paillardement paillardement ADV 0.00 0.07 0.00 0.07 +paillardes paillard ADJ f p 0.35 0.95 0.17 0.14 +paillardise paillardise NOM f s 0.16 0.20 0.16 0.20 +paillards paillard ADJ m p 0.35 0.95 0.00 0.07 +paillasse paillasse NOM s 2.38 8.78 1.98 7.43 +paillasses paillasse NOM f p 2.38 8.78 0.40 1.35 +paillasson paillasson NOM m s 1.06 4.39 0.93 3.51 +paillassons paillasson NOM m p 1.06 4.39 0.14 0.88 +paille paille NOM f s 9.43 44.05 8.57 42.97 +pailler pailler VER 0.01 0.27 0.01 0.00 inf; +pailles paille NOM f p 9.43 44.05 0.86 1.08 +pailleter pailleter VER 0.03 1.35 0.00 0.14 inf; +paillette paillette NOM f s 1.71 5.14 0.08 0.41 +paillettes paillette NOM f p 1.71 5.14 1.63 4.73 +pailleté pailleter VER m s 0.03 1.35 0.02 0.34 par:pas; +pailletée pailleté ADJ f s 0.03 1.15 0.01 0.34 +pailletées pailleté ADJ f p 0.03 1.15 0.01 0.20 +pailletés pailleter VER m p 0.03 1.35 0.00 0.27 par:pas; +pailleux pailleux ADJ m 0.00 0.07 0.00 0.07 +paillis paillis NOM m 0.04 0.00 0.04 0.00 +paillon paillon NOM m s 0.00 0.41 0.00 0.20 +paillons paillon NOM m p 0.00 0.41 0.00 0.20 +paillot paillot NOM m s 0.00 0.81 0.00 0.81 +paillote paillote NOM f s 0.02 1.22 0.02 0.34 +paillotes paillote NOM f p 0.02 1.22 0.00 0.88 +paillé paillé ADJ m s 0.00 1.62 0.00 0.14 +paillu paillu ADJ m s 0.00 0.07 0.00 0.07 +paillée paillé ADJ f s 0.00 1.62 0.00 0.81 +paillées paillé ADJ f p 0.00 1.62 0.00 0.68 +paimpolaise paimpolais NOM f s 0.00 0.47 0.00 0.41 +paimpolaises paimpolais NOM f p 0.00 0.47 0.00 0.07 +pain pain NOM m s 67.58 105.41 62.81 99.32 +pains pain NOM m p 67.58 105.41 4.77 6.08 +pair pair NOM m s 3.54 6.62 2.27 3.92 +paire paire NOM f s 21.59 32.84 18.31 26.89 +paires paire NOM f p 21.59 32.84 3.28 5.95 +pairesses pairesse NOM f p 0.00 0.07 0.00 0.07 +pairie pairie NOM f s 0.03 0.07 0.03 0.07 +pairs pair NOM m p 3.54 6.62 1.27 2.70 +pais paître VER 2.29 4.46 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +paisible paisible ADJ s 7.55 36.42 6.32 27.84 +paisiblement paisiblement ADV 2.10 9.12 2.10 9.12 +paisibles paisible ADJ p 7.55 36.42 1.23 8.58 +paissaient paître VER 2.29 4.46 0.01 1.49 ind:imp:3p; +paissait paître VER 2.29 4.46 0.14 0.20 ind:imp:3s; +paissant paître VER 2.29 4.46 0.03 0.34 par:pre; +paissent paître VER 2.29 4.46 0.42 0.61 ind:pre:3p; +paiute paiute NOM s 0.05 0.07 0.04 0.07 +paiutes paiute NOM p 0.05 0.07 0.01 0.00 +paix paix NOM f 144.86 103.72 144.86 103.72 +pakistanais pakistanais NOM m 1.56 0.27 1.36 0.20 +pakistanaise pakistanais ADJ f s 1.22 0.47 0.23 0.20 +pakistanaises pakistanais ADJ f p 1.22 0.47 0.04 0.00 +pakistano pakistano ADV 0.01 0.07 0.01 0.07 +pal pal NOM m s 0.19 0.88 0.14 0.68 +palabra palabrer VER 0.64 2.03 0.09 0.07 ind:pas:3s; +palabraient palabrer VER 0.64 2.03 0.00 0.34 ind:imp:3p; +palabrait palabrer VER 0.64 2.03 0.00 0.34 ind:imp:3s; +palabrant palabrer VER 0.64 2.03 0.01 0.20 par:pre; +palabre palabrer VER 0.64 2.03 0.11 0.00 ind:pre:3s; +palabrent palabrer VER 0.64 2.03 0.02 0.20 ind:pre:3p; +palabrer palabrer VER 0.64 2.03 0.35 0.88 inf; +palabres palabre NOM p 0.14 3.51 0.13 3.04 +palabreur palabreur NOM m s 0.00 0.14 0.00 0.07 +palabreurs palabreur NOM m p 0.00 0.14 0.00 0.07 +palabré palabrer VER m s 0.64 2.03 0.06 0.00 par:pas; +palace palace NOM m s 4.85 7.77 4.56 5.47 +palaces palace NOM m p 4.85 7.77 0.29 2.30 +paladin paladin NOM m s 0.18 0.81 0.16 0.54 +paladins paladin NOM m p 0.18 0.81 0.03 0.27 +palais palais NOM m 29.55 58.72 29.55 58.72 +palan palan NOM m s 0.11 0.74 0.07 0.54 +palanche palanche NOM f s 0.10 0.14 0.00 0.14 +palanches palanche NOM f p 0.10 0.14 0.10 0.00 +palangrotte palangrotte NOM f s 0.00 0.14 0.00 0.14 +palanquer palanquer VER 0.01 0.14 0.01 0.00 inf; +palanquin palanquin NOM m s 0.32 0.41 0.32 0.34 +palanquins palanquin NOM m p 0.32 0.41 0.00 0.07 +palanquée palanquer VER f s 0.01 0.14 0.00 0.07 par:pas; +palanquées palanquer VER f p 0.01 0.14 0.00 0.07 par:pas; +palans palan NOM m p 0.11 0.74 0.04 0.20 +palastre palastre NOM m s 0.00 0.07 0.00 0.07 +palatales palatal ADJ f p 0.00 0.07 0.00 0.07 +palatin palatin ADJ m s 0.03 0.20 0.02 0.14 +palatine palatin ADJ f s 0.03 0.20 0.01 0.07 +palatines palatine NOM f p 0.00 0.07 0.00 0.07 +palatisation palatisation NOM f s 0.00 0.07 0.00 0.07 +palazzo palazzo NOM m s 0.56 1.62 0.56 1.62 +pale pale NOM f s 1.11 1.62 0.74 0.41 +palefrenier palefrenier NOM m s 0.69 1.01 0.64 0.68 +palefreniers palefrenier NOM m p 0.69 1.01 0.04 0.34 +palefrenière palefrenier NOM f s 0.69 1.01 0.01 0.00 +palefroi palefroi NOM m s 0.01 0.61 0.01 0.20 +palefrois palefroi NOM m p 0.01 0.61 0.00 0.41 +paleron paleron NOM m s 0.01 0.00 0.01 0.00 +pales pale NOM f p 1.11 1.62 0.37 1.22 +palestinien palestinien ADJ m s 3.09 0.74 1.78 0.20 +palestinienne palestinien ADJ f s 3.09 0.74 0.35 0.34 +palestiniens palestinien NOM m p 3.22 0.47 2.81 0.47 +palestre palestre NOM f s 0.00 0.41 0.00 0.27 +palestres palestre NOM f p 0.00 0.41 0.00 0.14 +palet palet NOM m s 1.08 0.41 0.93 0.34 +paletot paletot NOM m s 0.03 2.03 0.03 1.89 +paletots paletot NOM m p 0.03 2.03 0.00 0.14 +palets palet NOM m p 1.08 0.41 0.15 0.07 +palette palette NOM f s 0.87 5.68 0.28 4.12 +palettes palette NOM f p 0.87 5.68 0.58 1.55 +palier palier NOM m s 3.47 29.80 3.24 27.91 +paliers palier NOM m p 3.47 29.80 0.23 1.89 +palikare palikare NOM m s 0.00 0.54 0.00 0.20 +palikares palikare NOM m p 0.00 0.54 0.00 0.34 +palilalie palilalie NOM f s 0.01 0.00 0.01 0.00 +palimpseste palimpseste NOM m s 0.00 0.20 0.00 0.20 +palindrome palindrome NOM m s 0.55 0.00 0.45 0.00 +palindromes palindrome NOM m p 0.55 0.00 0.10 0.00 +palinodie palinodie NOM f s 0.01 0.54 0.00 0.27 +palinodier palinodier VER 0.00 0.07 0.00 0.07 inf; +palinodies palinodie NOM f p 0.01 0.54 0.01 0.27 +palis palis NOM m 0.00 0.07 0.00 0.07 +palissade palissade NOM f s 0.64 5.34 0.59 3.11 +palissades palissade NOM f p 0.64 5.34 0.05 2.23 +palissadé palissader VER m s 0.00 0.34 0.00 0.20 par:pas; +palissadée palissader VER f s 0.00 0.34 0.00 0.07 par:pas; +palissadés palissader VER m p 0.00 0.34 0.00 0.07 par:pas; +palissandre palissandre NOM m s 0.00 0.74 0.00 0.74 +palissant palisser VER 0.00 0.07 0.00 0.07 par:pre; +palissonnage palissonnage NOM m s 0.00 0.07 0.00 0.07 +palière palier ADJ f s 0.00 0.68 0.00 0.68 +palladiennes palladien ADJ f p 0.01 0.07 0.01 0.07 +palladium palladium NOM m s 0.17 0.34 0.17 0.34 +palle palle NOM f s 0.91 0.00 0.91 0.00 +palliait pallier VER 0.47 1.01 0.00 0.07 ind:imp:3s; +palliatif palliatif ADJ m s 0.14 0.07 0.05 0.07 +palliatifs palliatif ADJ m p 0.14 0.07 0.09 0.00 +pallient pallier VER 0.47 1.01 0.01 0.00 ind:pre:3p; +pallier pallier VER 0.47 1.01 0.44 0.88 inf; +palliera pallier VER 0.47 1.01 0.01 0.00 ind:fut:3s; +pallié pallier VER m s 0.47 1.01 0.01 0.07 par:pas; +palma_christi palma_christi NOM m 0.00 0.07 0.00 0.07 +palmaient palmer VER 0.02 0.47 0.00 0.07 ind:imp:3p; +palmaire palmaire ADJ m s 0.02 0.07 0.02 0.07 +palmarès palmarès NOM m 0.41 1.08 0.41 1.08 +palmas palma NOM f p 0.04 0.07 0.04 0.07 +palme palme NOM f s 2.09 9.53 1.25 2.91 +palmer palmer NOM m s 0.17 0.14 0.17 0.14 +palmeraie palmeraie NOM f s 0.31 1.28 0.29 0.74 +palmeraies palmeraie NOM f p 0.31 1.28 0.01 0.54 +palmes palme NOM f p 2.09 9.53 0.84 6.62 +palmette palmette NOM f s 0.00 0.20 0.00 0.07 +palmettes palmette NOM f p 0.00 0.20 0.00 0.14 +palmier palmier NOM m s 4.57 14.26 1.69 3.04 +palmiers palmier NOM m p 4.57 14.26 2.89 11.22 +palmipède palmipède NOM m s 0.00 0.27 0.00 0.14 +palmipèdes palmipède ADJ m p 0.27 0.14 0.27 0.14 +palmiste palmiste NOM m s 0.00 0.27 0.00 0.14 +palmistes palmiste NOM m p 0.00 0.27 0.00 0.14 +palmé palmer VER m s 0.02 0.47 0.00 0.20 par:pas; +palmée palmé ADJ f s 0.17 0.41 0.01 0.07 +palmées palmé ADJ f p 0.17 0.41 0.00 0.27 +palmure palmure NOM f s 0.01 0.07 0.01 0.00 +palmures palmure NOM f p 0.01 0.07 0.00 0.07 +palmés palmé ADJ m p 0.17 0.41 0.16 0.07 +palombe palombe NOM f s 0.11 0.61 0.01 0.27 +palombes palombe NOM f p 0.11 0.61 0.10 0.34 +palonnier palonnier NOM m s 0.01 0.07 0.01 0.07 +palot palot NOM m s 0.20 0.14 0.05 0.07 +palots palot NOM m p 0.20 0.14 0.15 0.07 +palourde palourde NOM f s 1.52 0.54 0.34 0.00 +palourdes palourde NOM f p 1.52 0.54 1.17 0.54 +palpa palper VER 1.81 13.04 0.00 1.62 ind:pas:3s; +palpable palpable ADJ s 0.65 2.77 0.52 2.50 +palpables palpable ADJ p 0.65 2.77 0.13 0.27 +palpaient palper VER 1.81 13.04 0.01 0.74 ind:imp:3p; +palpais palper VER 1.81 13.04 0.01 0.27 ind:imp:1s; +palpait palper VER 1.81 13.04 0.01 1.82 ind:imp:3s; +palpant palper VER 1.81 13.04 0.02 1.08 par:pre; +palpation palpation NOM f s 0.04 0.34 0.04 0.27 +palpations palpation NOM f p 0.04 0.34 0.00 0.07 +palpe palper VER 1.81 13.04 0.34 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +palpent palper VER 1.81 13.04 0.01 0.34 ind:pre:3p; +palper palper VER 1.81 13.04 0.97 4.19 inf; +palpera palper VER 1.81 13.04 0.01 0.00 ind:fut:3s; +palperai palper VER 1.81 13.04 0.00 0.07 ind:fut:1s; +palpes palper VER 1.81 13.04 0.08 0.00 ind:pre:2s; +palpeur palpeur NOM m s 0.02 0.14 0.01 0.07 +palpeurs palpeur NOM m p 0.02 0.14 0.01 0.07 +palpez palper VER 1.81 13.04 0.04 0.00 imp:pre:2p;ind:pre:2p; +palpita palpiter VER 1.64 10.41 0.00 0.14 ind:pas:3s; +palpitaient palpiter VER 1.64 10.41 0.01 1.08 ind:imp:3p; +palpitait palpiter VER 1.64 10.41 0.06 2.30 ind:imp:3s; +palpitant palpitant ADJ m s 2.13 6.82 1.53 3.31 +palpitante palpitant ADJ f s 2.13 6.82 0.42 1.96 +palpitantes palpitant ADJ f p 2.13 6.82 0.15 0.61 +palpitants palpitant ADJ m p 2.13 6.82 0.03 0.95 +palpitation palpitation NOM f s 0.86 3.65 0.04 2.30 +palpitations palpitation NOM f p 0.86 3.65 0.81 1.35 +palpite palpiter VER 1.64 10.41 1.07 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +palpitement palpitement NOM m s 0.00 0.07 0.00 0.07 +palpitent palpiter VER 1.64 10.41 0.16 1.28 ind:pre:3p; +palpiter palpiter VER 1.64 10.41 0.26 1.62 inf; +palpiterait palpiter VER 1.64 10.41 0.00 0.07 cnd:pre:3s; +palpites palpiter VER 1.64 10.41 0.00 0.07 ind:pre:2s; +palpitèrent palpiter VER 1.64 10.41 0.00 0.20 ind:pas:3p; +palpité palpiter VER m s 1.64 10.41 0.00 0.07 par:pas; +palpons palper VER 1.81 13.04 0.00 0.07 imp:pre:1p; +palpèrent palper VER 1.81 13.04 0.00 0.07 ind:pas:3p; +palpé palper VER m s 1.81 13.04 0.28 0.74 par:pas; +palpées palper VER f p 1.81 13.04 0.00 0.07 par:pas; +palpés palper VER m p 1.81 13.04 0.02 0.14 par:pas; +pals pal NOM m p 0.19 0.88 0.04 0.20 +palsambleu palsambleu ONO 0.03 0.20 0.03 0.20 +paltoquet paltoquet NOM m s 0.01 0.20 0.01 0.20 +palé palé ADJ m s 0.01 0.07 0.01 0.07 +palu palu NOM m s 0.80 0.14 0.80 0.14 +paluchait palucher VER 0.20 0.34 0.00 0.07 ind:imp:3s; +paluche paluche NOM f s 0.33 5.47 0.20 3.11 +palucher palucher VER 0.20 0.34 0.20 0.27 inf; +paluches paluche NOM f p 0.33 5.47 0.13 2.36 +paludamentum paludamentum NOM m s 0.00 0.07 0.00 0.07 +paludes palude NOM m p 0.00 0.20 0.00 0.20 +paludiers paludier NOM m p 0.00 0.14 0.00 0.14 +paludiques paludique ADJ p 0.00 0.07 0.00 0.07 +paludisme paludisme NOM m s 0.25 1.35 0.25 1.35 +paludière paludière NOM f s 0.00 0.07 0.00 0.07 +paludéenne paludéen ADJ f s 0.00 0.34 0.00 0.07 +paludéennes paludéen ADJ f p 0.00 0.34 0.00 0.20 +paludéens paludéen ADJ m p 0.00 0.34 0.00 0.07 +paléo paléo ADV 0.01 0.00 0.01 0.00 +paléographie paléographie NOM f s 0.00 0.14 0.00 0.14 +paléolithique paléolithique ADJ s 0.03 0.14 0.03 0.07 +paléolithiques paléolithique ADJ m p 0.03 0.14 0.00 0.07 +paléontologie paléontologie NOM f s 0.14 0.14 0.14 0.14 +paléontologiques paléontologique ADJ m p 0.00 0.07 0.00 0.07 +paléontologiste paléontologiste NOM s 0.05 0.00 0.04 0.00 +paléontologistes paléontologiste NOM p 0.05 0.00 0.01 0.00 +paléontologue paléontologue NOM s 0.20 0.07 0.18 0.00 +paléontologues paléontologue NOM p 0.20 0.07 0.02 0.07 +paléozoïque paléozoïque NOM m s 0.01 0.00 0.01 0.00 +palus palus NOM m 0.01 0.07 0.01 0.07 +palustre palustre ADJ s 0.00 0.07 0.00 0.07 +palétuvier palétuvier NOM m s 0.04 0.81 0.03 0.14 +palétuviers palétuvier NOM m p 0.04 0.81 0.01 0.68 +palynologie palynologie NOM f s 0.01 0.00 0.01 0.00 +pampa pampa NOM f s 0.61 0.95 0.34 0.81 +pampas pampa NOM f p 0.61 0.95 0.28 0.14 +pampero pampero NOM m s 0.00 0.07 0.00 0.07 +pamphlet pamphlet NOM m s 2.84 1.42 1.11 0.68 +pamphlets pamphlet NOM m p 2.84 1.42 1.73 0.74 +pamphlétaire pamphlétaire NOM s 0.00 0.41 0.00 0.34 +pamphlétaires pamphlétaire NOM p 0.00 0.41 0.00 0.07 +pamplemousse pamplemousse NOM s 2.01 1.55 1.56 0.95 +pamplemousses pamplemousse NOM p 2.01 1.55 0.45 0.61 +pamplemoussier pamplemoussier NOM m s 0.00 0.14 0.00 0.07 +pamplemoussiers pamplemoussier NOM m p 0.00 0.14 0.00 0.07 +pampre pampre NOM m s 0.41 1.01 0.27 0.20 +pampres pampre NOM m p 0.41 1.01 0.14 0.81 +pan_bagnat pan_bagnat NOM m s 0.00 0.14 0.00 0.14 +pan pan ONO 3.57 1.76 3.57 1.76 +pana paner VER 0.13 0.41 0.02 0.00 ind:pas:3s; +panachage panachage NOM m s 0.01 0.00 0.01 0.00 +panachait panacher VER 0.03 0.20 0.00 0.07 ind:imp:3s; +panache panache NOM m s 1.09 7.36 0.95 5.14 +panacher panacher VER 0.03 0.20 0.01 0.00 inf; +panaches panache NOM m p 1.09 7.36 0.14 2.23 +panaché panaché NOM m s 0.12 0.47 0.10 0.27 +panachée panacher VER f s 0.03 0.20 0.00 0.07 par:pas; +panachés panaché NOM m p 0.12 0.47 0.02 0.20 +panacée panacée NOM f s 0.29 0.81 0.27 0.74 +panacées panacée NOM f p 0.29 0.81 0.02 0.07 +panade panade NOM f s 0.96 1.22 0.96 0.95 +panades panade NOM f p 0.96 1.22 0.00 0.27 +panais panais NOM m 0.01 0.14 0.01 0.14 +panama panama NOM m s 0.15 1.35 0.15 1.22 +panamas panama NOM m p 0.15 1.35 0.00 0.14 +panamienne panamien ADJ f s 0.00 0.14 0.00 0.07 +panamiens panamien ADJ m p 0.00 0.14 0.00 0.07 +panaméen panaméen ADJ m s 0.09 0.34 0.09 0.34 +panaméenne panaméenne ADJ f s 0.14 0.00 0.14 0.00 +panaméricain panaméricain ADJ m s 0.11 0.00 0.10 0.00 +panaméricaine panaméricain ADJ f s 0.11 0.00 0.01 0.00 +panarabisme panarabisme NOM m s 0.00 0.41 0.00 0.41 +panard panard NOM m s 0.26 2.16 0.19 0.74 +panards panard NOM m p 0.26 2.16 0.07 1.42 +panaris panaris NOM m 0.03 0.34 0.03 0.34 +panatella panatella NOM m s 0.01 0.00 0.01 0.00 +panathénaïque panathénaïque ADJ m s 0.00 0.07 0.00 0.07 +panathénées panathénées NOM f p 0.00 0.07 0.00 0.07 +pancake pancake NOM m s 2.97 0.20 0.44 0.14 +pancakes pancake NOM m p 2.97 0.20 2.54 0.07 +pancarte pancarte NOM f s 3.90 8.99 3.28 5.95 +pancartes pancarte NOM f p 3.90 8.99 0.61 3.04 +panceltique panceltique ADJ m s 0.00 0.07 0.00 0.07 +pancetta pancetta NOM f s 0.03 0.00 0.03 0.00 +panclastite panclastite NOM f s 0.00 0.07 0.00 0.07 +pancrace pancrace NOM m s 0.00 0.47 0.00 0.34 +pancraces pancrace NOM m p 0.00 0.47 0.00 0.14 +pancréas pancréas NOM m 1.13 2.03 1.13 2.03 +pancréatectomie pancréatectomie NOM f s 0.09 0.00 0.09 0.00 +pancréatique pancréatique ADJ s 0.18 0.20 0.06 0.20 +pancréatiques pancréatique ADJ f p 0.18 0.20 0.12 0.00 +pancréatite pancréatite NOM f s 0.14 0.00 0.14 0.00 +panda panda NOM m s 1.71 0.14 1.46 0.14 +pandanus pandanus NOM m 0.00 0.14 0.00 0.14 +pandas panda NOM m p 1.71 0.14 0.26 0.00 +pandit pandit NOM m s 0.08 0.00 0.08 0.00 +pandore pandore NOM s 0.11 1.08 0.11 0.34 +pandores pandore NOM p 0.11 1.08 0.00 0.74 +pandémie pandémie NOM f s 0.17 0.00 0.17 0.00 +pandémonium pandémonium NOM m s 0.03 0.20 0.02 0.20 +pandémoniums pandémonium NOM m p 0.03 0.20 0.01 0.00 +pane paner VER 0.13 0.41 0.02 0.00 ind:pre:3s; +panel panel NOM m s 0.28 0.00 0.28 0.00 +paner paner VER 0.13 0.41 0.04 0.00 inf; +panetier panetier NOM m s 0.00 0.27 0.00 0.07 +panetière panetier NOM f s 0.00 0.27 0.00 0.14 +panetières panetier NOM f p 0.00 0.27 0.00 0.07 +pangermanisme pangermanisme NOM m s 0.01 0.20 0.01 0.20 +panic panic NOM m s 0.46 0.00 0.46 0.00 +panicules panicule NOM f p 0.00 0.14 0.00 0.14 +panier_repas panier_repas NOM m 0.21 0.07 0.21 0.07 +panier panier NOM m s 15.72 33.18 13.82 24.39 +paniers panier NOM m p 15.72 33.18 1.90 8.78 +panification panification NOM f s 0.00 0.14 0.00 0.14 +panini panini NOM m s 0.02 0.00 0.02 0.00 +paniqua paniquer VER 19.76 6.15 0.05 0.20 ind:pas:3s; +paniquaient paniquer VER 19.76 6.15 0.13 0.20 ind:imp:3p; +paniquais paniquer VER 19.76 6.15 0.12 0.20 ind:imp:1s;ind:imp:2s; +paniquait paniquer VER 19.76 6.15 0.22 0.54 ind:imp:3s; +paniquant paniquant ADJ m s 0.04 0.07 0.04 0.07 +paniquards paniquard NOM m p 0.00 0.20 0.00 0.20 +panique panique NOM f s 16.23 25.61 16.17 24.86 +paniquent paniquer VER 19.76 6.15 0.63 0.07 ind:pre:3p; +paniquer paniquer VER 19.76 6.15 4.25 0.88 inf; +paniquera paniquer VER 19.76 6.15 0.01 0.00 ind:fut:3s; +paniquerai paniquer VER 19.76 6.15 0.06 0.00 ind:fut:1s; +paniqueraient paniquer VER 19.76 6.15 0.05 0.00 cnd:pre:3p; +paniquerais paniquer VER 19.76 6.15 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +paniqueras paniquer VER 19.76 6.15 0.01 0.00 ind:fut:2s; +paniqueront paniquer VER 19.76 6.15 0.01 0.00 ind:fut:3p; +paniques paniquer VER 19.76 6.15 1.08 0.14 ind:pre:2s;sub:pre:2s; +paniquez paniquer VER 19.76 6.15 1.66 0.00 imp:pre:2p;ind:pre:2p; +paniquons paniquer VER 19.76 6.15 0.34 0.00 imp:pre:1p; +paniquèrent paniquer VER 19.76 6.15 0.02 0.00 ind:pas:3p; +paniqué paniquer VER m s 19.76 6.15 5.56 0.95 par:pas; +paniquée paniquer VER f s 19.76 6.15 0.68 0.34 par:pas; +paniqués paniqué ADJ m p 1.52 1.01 0.24 0.20 +panis panis NOM m 0.14 0.07 0.14 0.07 +panière panière NOM f s 0.16 0.54 0.16 0.34 +panières panière NOM f p 0.16 0.54 0.00 0.20 +panka panka NOM m s 0.00 0.27 0.00 0.07 +pankas panka NOM m p 0.00 0.27 0.00 0.20 +panna panner VER 0.14 0.34 0.02 0.07 ind:pas:3s; +pannais panner VER 0.14 0.34 0.00 0.07 ind:imp:1s; +pannait panner VER 0.14 0.34 0.00 0.07 ind:imp:3s; +panne panne NOM f s 24.59 11.69 23.84 10.81 +panneau_réclame panneau_réclame NOM m s 0.00 0.68 0.00 0.68 +panneau panneau NOM m s 12.67 26.69 9.87 16.55 +panneaux panneau NOM m p 12.67 26.69 2.80 10.14 +panner panner VER 0.14 0.34 0.00 0.14 inf; +pannes panne NOM f p 24.59 11.69 0.74 0.88 +panneton panneton NOM m s 0.01 0.00 0.01 0.00 +panné panner VER m s 0.14 0.34 0.11 0.00 par:pas; +pano pano ADJ m s 0.46 0.00 0.29 0.00 +panonceau panonceau NOM m s 0.00 0.88 0.00 0.68 +panonceaux panonceau NOM m p 0.00 0.88 0.00 0.20 +panoplie panoplie NOM f s 1.44 4.73 1.42 3.99 +panoplies panoplie NOM f p 1.44 4.73 0.02 0.74 +panorama panorama NOM m s 1.24 5.14 1.11 4.26 +panoramas panorama NOM m p 1.24 5.14 0.14 0.88 +panoramique panoramique ADJ s 0.61 1.15 0.60 0.81 +panoramiquer panoramiquer VER 0.00 0.14 0.00 0.07 inf; +panoramiques panoramique NOM m p 0.36 0.14 0.15 0.00 +panoramiqué panoramiquer VER m s 0.00 0.14 0.00 0.07 par:pas; +panos pano ADJ m p 0.46 0.00 0.17 0.00 +panosse panosse NOM f s 0.00 0.14 0.00 0.14 +panouille panouille NOM s 0.01 0.54 0.01 0.41 +panouilles panouille NOM p 0.01 0.54 0.00 0.14 +pans pan NOM m p 3.73 26.01 0.25 12.16 +pansa panser VER 1.34 3.65 0.14 0.20 ind:pas:3s; +pansage pansage NOM m s 0.00 0.14 0.00 0.14 +pansait panser VER 1.34 3.65 0.00 0.27 ind:imp:3s; +pansant panser VER 1.34 3.65 0.00 0.07 par:pre; +pansas panser VER 1.34 3.65 0.00 0.07 ind:pas:2s; +panse panse NOM f s 2.13 3.04 2.02 2.91 +pansement pansement NOM m s 6.52 13.45 4.70 8.38 +pansements pansement NOM m p 6.52 13.45 1.82 5.07 +pansent panser VER 1.34 3.65 0.01 0.00 ind:pre:3p; +panser panser VER 1.34 3.65 0.50 1.42 inf; +panserai panser VER 1.34 3.65 0.01 0.00 ind:fut:1s; +panses panse NOM f p 2.13 3.04 0.11 0.14 +pansez panser VER 1.34 3.65 0.07 0.07 imp:pre:2p;ind:pre:2p; +pansiez panser VER 1.34 3.65 0.00 0.07 ind:imp:2p; +pansions panser VER 1.34 3.65 0.14 0.00 ind:imp:1p; +panspermie panspermie NOM f s 0.01 0.00 0.01 0.00 +pansèrent panser VER 1.34 3.65 0.00 0.07 ind:pas:3p; +pansé panser VER m s 1.34 3.65 0.28 0.54 par:pas; +pansu pansu ADJ m s 0.00 1.01 0.00 0.34 +pansée panser VER f s 1.34 3.65 0.00 0.14 par:pas; +pansue pansu ADJ f s 0.00 1.01 0.00 0.14 +pansées panser VER f p 1.34 3.65 0.04 0.14 par:pas; +pansues pansu ADJ f p 0.00 1.01 0.00 0.34 +pansés panser VER m p 1.34 3.65 0.00 0.14 par:pas; +pansus pansu ADJ m p 0.00 1.01 0.00 0.20 +pantagruélique pantagruélique ADJ m s 0.00 0.34 0.00 0.20 +pantagruéliques pantagruélique ADJ p 0.00 0.34 0.00 0.14 +pantalon pantalon NOM m s 37.55 71.76 31.49 57.91 +pantalonnade pantalonnade NOM f s 0.00 0.27 0.00 0.20 +pantalonnades pantalonnade NOM f p 0.00 0.27 0.00 0.07 +pantalons pantalon NOM m p 37.55 71.76 6.06 13.85 +pante pante NOM m s 0.01 0.81 0.00 0.27 +pantela panteler VER 0.00 1.01 0.00 0.07 ind:pas:3s; +pantelaient panteler VER 0.00 1.01 0.00 0.07 ind:imp:3p; +pantelait panteler VER 0.00 1.01 0.00 0.20 ind:imp:3s; +pantelant pantelant ADJ m s 0.10 3.24 0.03 1.35 +pantelante pantelant ADJ f s 0.10 3.24 0.07 1.22 +pantelantes pantelant ADJ f p 0.10 3.24 0.00 0.27 +pantelants pantelant ADJ m p 0.10 3.24 0.00 0.41 +panteler panteler VER 0.00 1.01 0.00 0.14 inf; +pantelle panteler VER 0.00 1.01 0.00 0.20 ind:pre:3s; +pantelé panteler VER m s 0.00 1.01 0.00 0.07 par:pas; +pantes pante NOM m p 0.01 0.81 0.01 0.54 +panthère panthère NOM f s 2.08 5.41 1.84 3.65 +panthères panthère NOM f p 2.08 5.41 0.24 1.76 +panthéisme panthéisme NOM m s 0.00 0.20 0.00 0.20 +panthéiste panthéiste ADJ s 0.03 0.20 0.03 0.20 +panthéon panthéon NOM m s 0.79 6.42 0.78 6.35 +panthéons panthéon NOM m p 0.79 6.42 0.01 0.07 +pantin pantin NOM m s 3.96 5.88 3.25 4.19 +pantins pantin NOM m p 3.96 5.88 0.72 1.69 +pantière pantière NOM f s 0.00 0.14 0.00 0.14 +pantocrator pantocrator ADJ m s 0.14 0.00 0.14 0.00 +pantographe pantographe NOM m s 0.01 0.07 0.01 0.00 +pantographes pantographe NOM m p 0.01 0.07 0.00 0.07 +pantois pantois ADJ m 0.09 2.30 0.06 2.23 +pantoise pantois ADJ f s 0.09 2.30 0.01 0.00 +pantoises pantois ADJ f p 0.09 2.30 0.01 0.07 +pantomime pantomime NOM f s 0.41 1.82 0.41 1.42 +pantomimes pantomime NOM f p 0.41 1.82 0.00 0.41 +pantomètres pantomètre NOM m p 0.00 0.07 0.00 0.07 +pantouflard pantouflard ADJ m s 0.23 0.07 0.13 0.07 +pantouflarde pantouflard ADJ f s 0.23 0.07 0.10 0.00 +pantouflards pantouflard NOM m p 0.07 0.20 0.02 0.07 +pantoufle pantoufle NOM f s 3.08 8.78 0.57 0.95 +pantoufler pantoufler VER 0.01 0.34 0.01 0.00 inf; +pantoufles pantoufle NOM f p 3.08 8.78 2.51 7.84 +panty panty NOM m s 0.05 0.07 0.05 0.07 +pané pané ADJ m s 0.19 0.41 0.14 0.14 +panée paner VER f s 0.13 0.41 0.01 0.14 par:pas; +panées pané ADJ f p 0.19 0.41 0.01 0.20 +panégyrique panégyrique NOM m s 0.23 0.34 0.22 0.20 +panégyriques panégyrique NOM m p 0.23 0.34 0.01 0.14 +panégyristes panégyriste NOM p 0.00 0.07 0.00 0.07 +panurge panurge NOM m s 0.04 0.47 0.04 0.47 +panurgisme panurgisme NOM m s 0.00 0.07 0.00 0.07 +panés pané ADJ m p 0.19 0.41 0.04 0.00 +panzer panzer NOM m s 0.71 1.42 0.25 0.68 +panzers panzer NOM m p 0.71 1.42 0.46 0.74 +paolistes paoliste ADJ m p 0.00 0.14 0.00 0.14 +paolo paolo NOM m s 0.07 0.00 0.07 0.00 +paon paon NOM m s 1.30 5.34 0.60 3.85 +paonne paon NOM f s 1.30 5.34 0.10 0.07 +paons paon NOM m p 1.30 5.34 0.60 1.42 +papa_cadeau papa_cadeau NOM m s 0.01 0.00 0.01 0.00 +papa papa NOM m s 259.01 77.16 259.01 77.16 +papable papable ADJ m s 0.00 0.07 0.00 0.07 +papal papal ADJ m s 0.41 0.68 0.02 0.27 +papale papal ADJ f s 0.41 0.68 0.37 0.41 +papamobile papamobile NOM f s 0.14 0.00 0.14 0.00 +paparazzi paparazzi NOM m 1.46 0.34 0.67 0.34 +paparazzis paparazzi NOM m p 1.46 0.34 0.79 0.00 +paparazzo paparazzo NOM m s 0.03 0.07 0.03 0.07 +papas papas NOM m 1.25 1.08 1.25 1.08 +papauté papauté NOM f s 0.01 0.81 0.01 0.81 +papaux papal ADJ m p 0.41 0.68 0.02 0.00 +papaver papaver NOM m s 0.01 0.00 0.01 0.00 +papavérine papavérine NOM f s 0.00 0.07 0.00 0.07 +papaye papaye NOM f s 0.59 0.20 0.49 0.14 +papayer papayer NOM m s 0.00 0.14 0.00 0.07 +papayers papayer NOM m p 0.00 0.14 0.00 0.07 +papayes papaye NOM f p 0.59 0.20 0.10 0.07 +pape pape NOM m s 7.17 19.32 6.57 14.59 +papegai papegai NOM m s 0.00 0.14 0.00 0.07 +papegais papegai NOM m p 0.00 0.14 0.00 0.07 +papelard papelard NOM m s 0.17 2.43 0.16 1.62 +papelarde papelard ADJ f s 0.01 0.27 0.00 0.07 +papelards papelard NOM m p 0.17 2.43 0.01 0.81 +paperasse paperasse NOM f s 4.80 5.74 4.11 0.95 +paperasser paperasser VER 0.00 0.07 0.00 0.07 inf; +paperasserie paperasserie NOM f s 1.07 0.88 1.05 0.74 +paperasseries paperasserie NOM f p 1.07 0.88 0.01 0.14 +paperasses paperasse NOM f p 4.80 5.74 0.69 4.80 +paperassier paperassier NOM m s 0.01 0.07 0.01 0.07 +papes pape NOM m p 7.17 19.32 0.60 4.73 +papesse papesse NOM f s 0.39 0.14 0.39 0.14 +papet papet NOM m s 4.25 0.27 4.25 0.27 +papeterie papeterie NOM f s 0.91 2.84 0.82 1.28 +papeteries papeterie NOM f p 0.91 2.84 0.08 1.55 +papetier papetier NOM m s 0.44 0.27 0.44 0.07 +papetiers papetier NOM m p 0.44 0.27 0.00 0.20 +papi papi NOM m s 7.23 0.00 7.05 0.00 +papier_cadeau papier_cadeau NOM m s 0.07 0.07 0.07 0.07 +papier_monnaie papier_monnaie NOM m s 0.00 0.14 0.00 0.14 +papier papier NOM m s 120.51 203.11 56.32 144.59 +papier_calque papier_calque NOM m p 0.00 0.07 0.00 0.07 +papiers papier NOM m p 120.51 203.11 64.19 58.51 +papilionacé papilionacé ADJ m s 0.01 0.14 0.01 0.00 +papilionacée papilionacé ADJ f s 0.01 0.14 0.00 0.07 +papilionacées papilionacé ADJ f p 0.01 0.14 0.00 0.07 +papillaire papillaire ADJ m s 0.00 0.07 0.00 0.07 +papille papille NOM f s 0.35 1.15 0.01 0.07 +papilles papille NOM f p 0.35 1.15 0.34 1.08 +papillomavirus papillomavirus NOM m 0.04 0.00 0.04 0.00 +papillomes papillome NOM m p 0.01 0.14 0.01 0.14 +papillon papillon NOM m s 12.28 20.07 8.12 10.68 +papillonna papillonner VER 0.33 0.81 0.00 0.07 ind:pas:3s; +papillonnage papillonnage NOM m s 0.01 0.14 0.01 0.14 +papillonnaient papillonner VER 0.33 0.81 0.00 0.07 ind:imp:3p; +papillonnais papillonner VER 0.33 0.81 0.15 0.00 ind:imp:1s; +papillonnait papillonner VER 0.33 0.81 0.03 0.07 ind:imp:3s; +papillonnant papillonnant ADJ m s 0.00 0.14 0.00 0.07 +papillonnante papillonnant ADJ f s 0.00 0.14 0.00 0.07 +papillonne papillonner VER 0.33 0.81 0.04 0.27 ind:pre:1s;ind:pre:3s; +papillonnement papillonnement NOM m s 0.00 0.14 0.00 0.14 +papillonnent papillonner VER 0.33 0.81 0.01 0.14 ind:pre:3p; +papillonner papillonner VER 0.33 0.81 0.07 0.14 inf; +papillonnes papillonner VER 0.33 0.81 0.02 0.00 ind:pre:2s; +papillonné papillonner VER m s 0.33 0.81 0.00 0.07 par:pas; +papillons papillon NOM m p 12.28 20.07 4.16 9.39 +papillotaient papilloter VER 0.00 1.01 0.00 0.41 ind:imp:3p; +papillotait papilloter VER 0.00 1.01 0.00 0.07 ind:imp:3s; +papillotant papillotant ADJ m s 0.00 0.47 0.00 0.14 +papillotantes papillotant ADJ f p 0.00 0.47 0.00 0.14 +papillotants papillotant ADJ m p 0.00 0.47 0.00 0.20 +papillote papillote NOM f s 0.33 1.89 0.02 0.07 +papillotent papilloter VER 0.00 1.01 0.00 0.14 ind:pre:3p; +papilloter papilloter VER 0.00 1.01 0.00 0.20 inf; +papillotes papillote NOM f p 0.33 1.89 0.31 1.82 +papillotèrent papilloter VER 0.00 1.01 0.00 0.07 ind:pas:3p; +papis papi NOM m p 7.23 0.00 0.17 0.00 +papisme papisme NOM m s 0.04 0.07 0.04 0.07 +papiste papiste ADJ s 0.55 0.61 0.43 0.47 +papistes papiste ADJ f p 0.55 0.61 0.12 0.14 +papotage papotage NOM m s 0.27 0.61 0.19 0.14 +papotages papotage NOM m p 0.27 0.61 0.08 0.47 +papotaient papoter VER 1.77 1.62 0.02 0.20 ind:imp:3p; +papotait papoter VER 1.77 1.62 0.06 0.20 ind:imp:3s; +papotant papoter VER 1.77 1.62 0.03 0.27 par:pre; +papote papoter VER 1.77 1.62 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +papotent papoter VER 1.77 1.62 0.04 0.00 ind:pre:3p; +papoter papoter VER 1.77 1.62 1.16 0.61 inf; +papotera papoter VER 1.77 1.62 0.03 0.00 ind:fut:3s; +papotez papoter VER 1.77 1.62 0.04 0.00 imp:pre:2p; +papotèrent papoter VER 1.77 1.62 0.00 0.07 ind:pas:3p; +papoté papoter VER m s 1.77 1.62 0.13 0.07 par:pas; +papou papou NOM m s 0.04 0.07 0.02 0.00 +papouille papouille NOM f s 0.08 0.54 0.00 0.07 +papouillent papouiller VER 0.02 0.14 0.01 0.00 ind:pre:3p; +papouiller papouiller VER 0.02 0.14 0.01 0.00 inf; +papouilles papouille NOM f p 0.08 0.54 0.08 0.47 +papouillez papouiller VER 0.02 0.14 0.00 0.07 ind:pre:2p; +papouillé papouiller VER m s 0.02 0.14 0.00 0.07 par:pas; +papous papou NOM m p 0.04 0.07 0.02 0.07 +paprika paprika NOM m s 0.75 0.61 0.75 0.61 +papé papé NOM m s 0.00 0.14 0.00 0.14 +papy papy NOM m s 6.79 1.08 6.76 1.08 +papyrus papyrus NOM m 1.57 0.95 1.57 0.95 +papys papy NOM m p 6.79 1.08 0.04 0.00 +paqson paqson NOM m s 0.01 0.00 0.01 0.00 +paquebot paquebot NOM m s 1.18 7.43 1.10 5.07 +paquebots paquebot NOM m p 1.18 7.43 0.09 2.36 +paquet_cadeau paquet_cadeau NOM m s 0.19 0.20 0.19 0.20 +paquet paquet NOM m s 44.96 89.19 36.90 62.77 +paqueta paqueter VER 0.04 0.07 0.01 0.07 ind:pas:3s; +paquetage paquetage NOM m s 0.60 2.91 0.44 2.16 +paquetages paquetage NOM m p 0.60 2.91 0.16 0.74 +paquets_cadeaux paquets_cadeaux NOM m p 0.01 0.54 0.01 0.54 +paquets paquet NOM m p 44.96 89.19 8.06 26.42 +paquette paqueter VER 0.04 0.07 0.03 0.00 imp:pre:2s; +paqueté paqueté ADJ m s 0.02 0.00 0.02 0.00 +par_ci par_ci ADV 3.10 9.12 3.10 9.12 +par_dedans par_dedans PRE 0.00 0.07 0.00 0.07 +par_delà par_delà PRE 1.32 9.05 1.32 9.05 +par_derrière par_derrière PRE 2.04 6.35 2.04 6.35 +par_dessous par_dessous PRE 0.32 2.16 0.32 2.16 +par_dessus par_dessus PRE 16.10 69.19 16.10 69.19 +par_devant par_devant PRE 0.16 1.96 0.16 1.96 +par_devers par_devers PRE 0.01 1.08 0.01 1.08 +par_mégarde par_mégarde ADV 0.61 2.91 0.61 2.91 +par par PRE 1753.02 3727.09 1753.02 3727.09 +parût paraître VER 122.14 448.11 0.00 4.46 sub:imp:3s; +para_humain para_humain NOM m s 0.00 0.14 0.00 0.14 +para parer VER 30.50 19.66 4.71 0.20 ind:pas:3s; +paraît paraître VER 122.14 448.11 81.22 113.92 ind:pre:3s; +paraîtra paraître VER 122.14 448.11 1.99 3.24 ind:fut:3s; +paraîtrai paraître VER 122.14 448.11 0.02 0.14 ind:fut:1s; +paraîtraient paraître VER 122.14 448.11 0.10 0.81 cnd:pre:3p; +paraîtrais paraître VER 122.14 448.11 0.00 0.14 cnd:pre:1s; +paraîtrait paraître VER 122.14 448.11 0.43 3.11 cnd:pre:3s; +paraîtras paraître VER 122.14 448.11 0.25 0.00 ind:fut:2s; +paraître paraître VER 122.14 448.11 15.31 40.27 inf; +paraîtrez paraître VER 122.14 448.11 0.05 0.00 ind:fut:2p; +paraîtront paraître VER 122.14 448.11 0.47 0.61 ind:fut:3p; +parabellum parabellum NOM m s 0.24 0.61 0.23 0.54 +parabellums parabellum NOM m p 0.24 0.61 0.01 0.07 +parabole parabole NOM f s 1.90 2.57 1.78 1.96 +paraboles parabole NOM f p 1.90 2.57 0.12 0.61 +parabolique parabolique ADJ s 0.42 0.47 0.38 0.20 +paraboliquement paraboliquement ADV 0.01 0.00 0.01 0.00 +paraboliques parabolique ADJ p 0.42 0.47 0.04 0.27 +paraboloïde paraboloïde NOM m s 0.01 0.00 0.01 0.00 +parachevaient parachever VER 0.57 1.28 0.01 0.07 ind:imp:3p; +parachevait parachever VER 0.57 1.28 0.00 0.14 ind:imp:3s; +parachevant parachever VER 0.57 1.28 0.01 0.14 par:pre; +parachever parachever VER 0.57 1.28 0.28 0.47 inf; +parachevèrent parachever VER 0.57 1.28 0.00 0.07 ind:pas:3p; +parachevé parachever VER m s 0.57 1.28 0.26 0.20 par:pas; +parachèvement parachèvement NOM m s 0.01 0.14 0.01 0.14 +parachèvent parachever VER 0.57 1.28 0.00 0.14 ind:pre:3p; +parachèvera parachever VER 0.57 1.28 0.01 0.00 ind:fut:3s; +parachèveraient parachever VER 0.57 1.28 0.00 0.07 cnd:pre:3p; +parachutage parachutage NOM m s 0.22 0.95 0.17 0.41 +parachutages parachutage NOM m p 0.22 0.95 0.05 0.54 +parachute parachute NOM m s 4.79 3.58 4.12 3.04 +parachutent parachuter VER 1.12 1.96 0.01 0.14 ind:pre:3p; +parachuter parachuter VER 1.12 1.96 0.11 0.14 inf; +parachuterais parachuter VER 1.12 1.96 0.01 0.00 cnd:pre:1s; +parachuterons parachuter VER 1.12 1.96 0.01 0.00 ind:fut:1p; +parachutes parachute NOM m p 4.79 3.58 0.67 0.54 +parachutez parachuter VER 1.12 1.96 0.01 0.07 imp:pre:2p;ind:pre:2p; +parachutisme parachutisme NOM m s 0.29 0.07 0.29 0.07 +parachutiste parachutiste NOM s 2.50 4.80 0.57 1.49 +parachutistes parachutiste NOM p 2.50 4.80 1.93 3.31 +parachutèrent parachuter VER 1.12 1.96 0.00 0.07 ind:pas:3p; +parachuté parachuter VER m s 1.12 1.96 0.39 0.74 par:pas; +parachutée parachuter VER f s 1.12 1.96 0.02 0.07 par:pas; +parachutées parachuter VER f p 1.12 1.96 0.00 0.14 par:pas; +parachutés parachuter VER m p 1.12 1.96 0.07 0.41 par:pas; +paraclet paraclet NOM m s 0.04 0.68 0.04 0.68 +paracétamol paracétamol NOM m s 0.11 0.14 0.11 0.14 +parada parader VER 1.48 3.58 0.04 0.07 ind:pas:3s; +paradaient parader VER 1.48 3.58 0.00 0.47 ind:imp:3p; +paradais parader VER 1.48 3.58 0.01 0.14 ind:imp:1s; +paradait parader VER 1.48 3.58 0.14 0.68 ind:imp:3s; +paradant parader VER 1.48 3.58 0.04 0.41 par:pre; +parade parade NOM f s 5.10 11.22 4.79 9.93 +paradent parader VER 1.48 3.58 0.10 0.27 ind:pre:3p; +parader parader VER 1.48 3.58 0.72 0.81 inf; +paradera parader VER 1.48 3.58 0.00 0.07 ind:fut:3s; +parades parade NOM f p 5.10 11.22 0.30 1.28 +paradeurs paradeur NOM m p 0.00 0.07 0.00 0.07 +paradigme paradigme NOM m s 0.25 0.20 0.13 0.14 +paradigmes paradigme NOM m p 0.25 0.20 0.13 0.07 +paradis paradis NOM m 33.23 28.04 33.23 28.04 +paradisiaque paradisiaque ADJ s 0.61 1.01 0.59 0.95 +paradisiaques paradisiaque ADJ p 0.61 1.01 0.02 0.07 +paradisiers paradisier NOM m p 0.00 0.07 0.00 0.07 +paradons parader VER 1.48 3.58 0.01 0.00 ind:pre:1p; +parador parador NOM m s 0.10 0.14 0.10 0.14 +parados parados NOM m 0.00 0.81 0.00 0.81 +paradoxal paradoxal ADJ m s 0.78 5.14 0.65 2.16 +paradoxale paradoxal ADJ f s 0.78 5.14 0.12 1.96 +paradoxalement paradoxalement ADV 0.22 3.78 0.22 3.78 +paradoxales paradoxal ADJ f p 0.78 5.14 0.01 0.68 +paradoxaux paradoxal ADJ m p 0.78 5.14 0.00 0.34 +paradoxe paradoxe NOM m s 1.90 8.11 1.50 6.01 +paradoxes paradoxe NOM m p 1.90 8.11 0.40 2.09 +paradoxie paradoxie NOM f s 0.00 0.07 0.00 0.07 +paradèrent parader VER 1.48 3.58 0.00 0.07 ind:pas:3p; +paradé parader VER m s 1.48 3.58 0.01 0.14 par:pas; +paradée parader VER f s 1.48 3.58 0.01 0.00 par:pas; +parafer parafer VER 0.01 0.00 0.01 0.00 inf; +paraffine paraffine NOM f s 0.22 0.68 0.22 0.68 +paraffiné paraffiné ADJ m s 0.01 0.27 0.00 0.20 +paraffinée paraffiné ADJ f s 0.01 0.27 0.01 0.00 +paraffinés paraffiné ADJ m p 0.01 0.27 0.00 0.07 +parage parage NOM m s 5.99 5.74 0.01 0.00 +parages parage NOM m p 5.99 5.74 5.98 5.74 +paragouvernementales paragouvernemental ADJ f p 0.00 0.07 0.00 0.07 +paragraphe paragraphe NOM m s 3.58 3.65 3.21 2.57 +paragraphes paragraphe NOM m p 3.58 3.65 0.37 1.08 +paraguayen paraguayen ADJ m s 0.35 0.47 0.00 0.34 +paraguayenne paraguayen ADJ f s 0.35 0.47 0.23 0.07 +paraguayennes paraguayen ADJ f p 0.35 0.47 0.00 0.07 +paraguayens paraguayen NOM m p 0.14 0.14 0.14 0.07 +parai parer VER 30.50 19.66 0.02 0.14 ind:pas:1s; +paraient parer VER 30.50 19.66 0.00 0.34 ind:imp:3p; +parais parer VER 30.50 19.66 1.98 0.47 imp:pre:2s;ind:imp:1s;ind:imp:2s; +paraissaient paraître VER 122.14 448.11 0.73 26.96 ind:imp:3p; +paraissais paraître VER 122.14 448.11 0.46 0.61 ind:imp:1s;ind:imp:2s; +paraissait paraître VER 122.14 448.11 4.63 118.31 ind:imp:3s; +paraissant paraître VER 122.14 448.11 0.41 3.51 par:pre; +paraisse paraître VER 122.14 448.11 1.45 2.84 sub:pre:1s;sub:pre:3s; +paraissent paraître VER 122.14 448.11 2.88 13.04 ind:pre:3p; +paraissez paraître VER 122.14 448.11 2.30 0.68 imp:pre:2p;ind:pre:2p; +paraissiez paraître VER 122.14 448.11 0.03 0.41 ind:imp:2p; +paraissions paraître VER 122.14 448.11 0.02 0.14 ind:imp:1p; +paraissons paraître VER 122.14 448.11 0.04 0.27 imp:pre:1p;ind:pre:1p; +parait parer VER 30.50 19.66 12.53 2.09 ind:imp:3s; +parallaxe parallaxe NOM f s 0.03 0.07 0.02 0.00 +parallaxes parallaxe NOM f p 0.03 0.07 0.01 0.07 +parallèle parallèle ADJ s 2.79 13.11 1.36 3.51 +parallèlement parallèlement ADV 0.20 3.45 0.20 3.45 +parallèles parallèle ADJ p 2.79 13.11 1.42 9.59 +parallélisme parallélisme NOM m s 0.20 0.41 0.20 0.41 +paralléliste paralléliste ADJ s 0.01 0.00 0.01 0.00 +parallélogramme parallélogramme NOM m s 0.00 0.07 0.00 0.07 +parallélépipède parallélépipède NOM m s 0.00 0.54 0.00 0.20 +parallélépipèdes parallélépipède NOM m p 0.00 0.54 0.00 0.34 +parallélépipédique parallélépipédique ADJ s 0.00 0.20 0.00 0.20 +paralogismes paralogisme NOM m p 0.00 0.07 0.00 0.07 +paralympiques paralympique NOM m p 0.10 0.00 0.10 0.00 +paralysa paralyser VER 7.84 13.99 0.05 0.20 ind:pas:3s; +paralysaient paralyser VER 7.84 13.99 0.01 0.47 ind:imp:3p; +paralysais paralyser VER 7.84 13.99 0.00 0.07 ind:imp:1s; +paralysait paralyser VER 7.84 13.99 0.03 2.16 ind:imp:3s; +paralysant paralysant ADJ m s 0.86 1.01 0.52 0.41 +paralysante paralysant ADJ f s 0.86 1.01 0.17 0.54 +paralysantes paralysant ADJ f p 0.86 1.01 0.11 0.07 +paralysants paralysant ADJ m p 0.86 1.01 0.06 0.00 +paralyse paralyser VER 7.84 13.99 0.72 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +paralysent paralyser VER 7.84 13.99 0.07 0.47 ind:pre:3p; +paralyser paralyser VER 7.84 13.99 0.69 1.08 inf; +paralysera paralyser VER 7.84 13.99 0.15 0.07 ind:fut:3s; +paralyserait paralyser VER 7.84 13.99 0.19 0.00 cnd:pre:3s; +paralyserez paralyser VER 7.84 13.99 0.01 0.00 ind:fut:2p; +paralysie paralysie NOM f s 2.61 4.32 2.60 4.19 +paralysies paralysie NOM f p 2.61 4.32 0.01 0.14 +paralysât paralyser VER 7.84 13.99 0.00 0.14 sub:imp:3s; +paralysèrent paralyser VER 7.84 13.99 0.00 0.14 ind:pas:3p; +paralysé paralyser VER m s 7.84 13.99 3.69 4.12 par:pas; +paralysée paralyser VER f s 7.84 13.99 1.71 1.96 par:pas; +paralysées paralyser VER f p 7.84 13.99 0.18 0.14 par:pas; +paralysés paralyser VER m p 7.84 13.99 0.27 0.68 par:pas; +paralytique paralytique ADJ s 0.84 1.76 0.82 1.35 +paralytiques paralytique ADJ m p 0.84 1.76 0.02 0.41 +paramagnétique paramagnétique ADJ s 0.01 0.00 0.01 0.00 +paramilitaire paramilitaire ADJ s 0.30 1.01 0.12 0.27 +paramilitaires paramilitaire ADJ p 0.30 1.01 0.18 0.74 +paramnésie paramnésie NOM f s 0.01 0.14 0.01 0.14 +paramètre paramètre NOM m s 1.50 0.41 0.07 0.00 +paramètres paramètre NOM m p 1.50 0.41 1.43 0.41 +paramédical paramédical ADJ m s 0.37 0.14 0.30 0.14 +paramédicale paramédical ADJ f s 0.37 0.14 0.03 0.00 +paramédicaux paramédical ADJ m p 0.37 0.14 0.04 0.00 +paramétrique paramétrique ADJ f s 0.01 0.00 0.01 0.00 +parangon parangon NOM m s 0.13 1.22 0.12 1.08 +parangonnages parangonnage NOM m p 0.00 0.07 0.00 0.07 +parangons parangon NOM m p 0.13 1.22 0.01 0.14 +parano parano ADJ s 4.23 0.47 3.98 0.47 +paranoïa paranoïa NOM f s 2.03 1.15 2.03 1.15 +paranoïaque paranoïaque ADJ s 3.33 0.54 2.97 0.41 +paranoïaques paranoïaque ADJ p 3.33 0.54 0.35 0.14 +paranoïde paranoïde ADJ s 0.09 0.27 0.09 0.27 +paranormal paranormal NOM m s 0.61 0.07 0.61 0.07 +paranormale paranormal ADJ f s 2.04 0.07 1.02 0.07 +paranormales paranormal ADJ f p 2.04 0.07 0.14 0.00 +paranormaux paranormal ADJ m p 2.04 0.07 0.57 0.00 +paranos parano ADJ f p 4.23 0.47 0.25 0.00 +parant parer VER 30.50 19.66 0.01 1.28 par:pre; +paranéoplasique paranéoplasique ADJ m s 0.07 0.00 0.07 0.00 +parapente parapente NOM m s 0.31 0.00 0.31 0.00 +parapet parapet NOM m s 0.88 12.91 0.73 10.88 +parapets parapet NOM m p 0.88 12.91 0.16 2.03 +paraphait parapher VER 0.64 0.74 0.00 0.07 ind:imp:3s; +paraphant parapher VER 0.64 0.74 0.00 0.14 par:pre; +parapharmacie parapharmacie NOM f s 0.03 0.07 0.03 0.07 +paraphe paraphe NOM m s 0.10 1.55 0.10 1.01 +parapher parapher VER 0.64 0.74 0.06 0.00 inf; +paraphes parapher VER 0.64 0.74 0.02 0.00 ind:pre:2s; +parapheurs parapheur NOM m p 0.00 0.07 0.00 0.07 +paraphez parapher VER 0.64 0.74 0.24 0.00 imp:pre:2p;ind:pre:2p; +paraphrasa paraphraser VER 0.24 0.41 0.00 0.07 ind:pas:3s; +paraphrasait paraphraser VER 0.24 0.41 0.00 0.14 ind:imp:3s; +paraphrasant paraphraser VER 0.24 0.41 0.01 0.00 par:pre; +paraphrase paraphrase NOM f s 0.12 0.34 0.12 0.27 +paraphraser paraphraser VER 0.24 0.41 0.13 0.14 inf; +paraphrases paraphraser VER 0.24 0.41 0.01 0.00 ind:pre:2s; +paraphrasé paraphraser VER m s 0.24 0.41 0.00 0.07 par:pas; +paraphé parapher VER m s 0.64 0.74 0.25 0.34 par:pas; +paraphée parapher VER f s 0.64 0.74 0.03 0.07 par:pas; +paraphés parapher VER m p 0.64 0.74 0.02 0.07 par:pas; +paraplégique paraplégique ADJ s 0.29 0.14 0.25 0.07 +paraplégiques paraplégique ADJ m p 0.29 0.14 0.04 0.07 +parapluie parapluie NOM m s 7.38 16.28 6.37 12.50 +parapluies parapluie NOM m p 7.38 16.28 1.01 3.78 +parapsychique parapsychique ADJ s 0.04 0.00 0.04 0.00 +parapsychologie parapsychologie NOM f s 0.61 0.14 0.61 0.14 +parapsychologique parapsychologique ADJ s 0.03 0.07 0.02 0.00 +parapsychologiques parapsychologique ADJ m p 0.03 0.07 0.01 0.07 +parapsychologue parapsychologue NOM s 0.09 0.00 0.06 0.00 +parapsychologues parapsychologue NOM p 0.09 0.00 0.03 0.00 +parareligieuse parareligieux ADJ f s 0.10 0.00 0.10 0.00 +paras para NOM m p 3.23 1.49 0.90 0.61 +parascolaire parascolaire ADJ m s 0.04 0.07 0.00 0.07 +parascolaires parascolaire ADJ p 0.04 0.07 0.04 0.00 +parascève parascève NOM f s 0.00 0.47 0.00 0.47 +parasitaire parasitaire ADJ s 0.25 0.81 0.23 0.61 +parasitaires parasitaire ADJ p 0.25 0.81 0.03 0.20 +parasitait parasiter VER 0.39 0.27 0.00 0.07 ind:imp:3s; +parasite parasite NOM m s 8.72 4.53 4.66 1.22 +parasitent parasiter VER 0.39 0.27 0.12 0.00 ind:pre:3p; +parasiter parasiter VER 0.39 0.27 0.07 0.07 inf; +parasites parasite NOM m p 8.72 4.53 4.06 3.31 +parasiticide parasiticide ADJ m s 0.10 0.00 0.10 0.00 +parasitisme parasitisme NOM m s 0.01 0.74 0.01 0.74 +parasitologie parasitologie NOM f s 0.00 0.07 0.00 0.07 +parasitose parasitose NOM f s 0.01 0.00 0.01 0.00 +parasité parasiter VER m s 0.39 0.27 0.05 0.07 par:pas; +parasitée parasiter VER f s 0.39 0.27 0.01 0.07 par:pas; +parasités parasiter VER m p 0.39 0.27 0.06 0.00 par:pas; +parasol parasol NOM m s 0.80 6.69 0.72 3.72 +parasols parasol NOM m p 0.80 6.69 0.08 2.97 +parathyroïdienne parathyroïdien ADJ f s 0.01 0.00 0.01 0.00 +paratonnerre paratonnerre NOM m s 0.55 0.61 0.41 0.41 +paratonnerres paratonnerre NOM m p 0.55 0.61 0.14 0.20 +paravent paravent NOM m s 1.77 4.32 1.51 3.85 +paravents paravent NOM m p 1.77 4.32 0.26 0.47 +parbleu parbleu ONO 1.54 1.96 1.54 1.96 +parc parc NOM m s 32.85 43.99 31.02 38.72 +parcage parcage NOM m s 0.00 0.07 0.00 0.07 +parce_qu parce_qu CON 4.13 2.36 4.13 2.36 +parce_que parce_que CON 548.52 327.43 548.52 327.43 +parce parce ADV 3.49 0.95 3.49 0.95 +parcellaire parcellaire ADJ s 0.00 0.34 0.00 0.34 +parcelle parcelle NOM f s 2.73 11.15 1.99 7.09 +parcelles parcelle NOM f p 2.73 11.15 0.74 4.05 +parchemin parchemin NOM m s 3.61 4.80 3.47 3.85 +parchemineuse parchemineux ADJ f s 0.00 0.07 0.00 0.07 +parchemins parchemin NOM m p 3.61 4.80 0.14 0.95 +parcheminé parcheminé ADJ m s 0.04 1.49 0.03 0.47 +parcheminée parcheminé ADJ f s 0.04 1.49 0.01 0.47 +parcheminées parcheminé ADJ f p 0.04 1.49 0.00 0.34 +parcheminés parcheminé ADJ m p 0.04 1.49 0.00 0.20 +parcimonie parcimonie NOM f s 0.22 0.95 0.22 0.95 +parcimonieuse parcimonieux ADJ f s 0.00 1.55 0.00 0.61 +parcimonieusement parcimonieusement ADV 0.00 0.88 0.00 0.88 +parcimonieuses parcimonieux ADJ f p 0.00 1.55 0.00 0.07 +parcimonieux parcimonieux ADJ m 0.00 1.55 0.00 0.88 +parcmètre parcmètre NOM m s 0.38 0.00 0.22 0.00 +parcmètres parcmètre NOM m p 0.38 0.00 0.16 0.00 +parcomètre parcomètre NOM m s 0.01 0.00 0.01 0.00 +parcourûmes parcourir VER 15.46 61.82 0.00 0.47 ind:pas:1p; +parcouraient parcourir VER 15.46 61.82 0.16 1.89 ind:imp:3p; +parcourais parcourir VER 15.46 61.82 0.32 1.22 ind:imp:1s; +parcourait parcourir VER 15.46 61.82 0.47 6.28 ind:imp:3s; +parcourant parcourir VER 15.46 61.82 0.50 4.12 par:pre; +parcoure parcourir VER 15.46 61.82 0.06 0.07 sub:pre:1s;sub:pre:3s; +parcourent parcourir VER 15.46 61.82 0.57 1.15 ind:pre:3p; +parcourez parcourir VER 15.46 61.82 0.22 0.07 imp:pre:2p;ind:pre:2p; +parcouriez parcourir VER 15.46 61.82 0.05 0.07 ind:imp:2p; +parcourions parcourir VER 15.46 61.82 0.16 0.14 ind:imp:1p; +parcourir parcourir VER 15.46 61.82 3.50 13.65 inf; +parcourons parcourir VER 15.46 61.82 0.11 0.20 imp:pre:1p;ind:pre:1p; +parcourra parcourir VER 15.46 61.82 0.02 0.00 ind:fut:3s; +parcourrai parcourir VER 15.46 61.82 0.04 0.07 ind:fut:1s; +parcourraient parcourir VER 15.46 61.82 0.01 0.00 cnd:pre:3p; +parcourrais parcourir VER 15.46 61.82 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +parcourrait parcourir VER 15.46 61.82 0.01 0.14 cnd:pre:3s; +parcourrez parcourir VER 15.46 61.82 0.00 0.14 ind:fut:2p; +parcourrions parcourir VER 15.46 61.82 0.10 0.00 cnd:pre:1p; +parcourront parcourir VER 15.46 61.82 0.01 0.00 ind:fut:3p; +parcours parcours NOM m 7.42 17.64 7.42 17.64 +parcourt parcourir VER 15.46 61.82 2.30 4.59 ind:pre:3s; +parcouru parcourir VER m s 15.46 61.82 4.74 11.08 par:pas; +parcourue parcourir VER f s 15.46 61.82 0.38 2.97 par:pas; +parcourues parcourir VER f p 15.46 61.82 0.03 1.42 par:pas; +parcoururent parcourir VER 15.46 61.82 0.02 1.55 ind:pas:3p; +parcourus parcourir VER m p 15.46 61.82 0.20 2.77 ind:pas:1s;par:pas; +parcourut parcourir VER 15.46 61.82 0.15 6.49 ind:pas:3s; +parcs parc NOM m p 32.85 43.99 1.84 5.27 +pardessus pardessus NOM m 1.43 9.05 1.43 9.05 +pardi pardi ONO 2.66 6.22 2.66 6.22 +pardieu pardieu ONO 0.54 0.20 0.54 0.20 +pardingue pardingue NOM m s 0.00 0.07 0.00 0.07 +pardon pardon ONO 209.13 18.04 209.13 18.04 +pardonna pardonner VER 139.45 44.59 0.04 0.54 ind:pas:3s; +pardonnable pardonnable ADJ m s 0.03 0.20 0.03 0.20 +pardonnaient pardonner VER 139.45 44.59 0.00 0.68 ind:imp:3p; +pardonnais pardonner VER 139.45 44.59 0.07 0.07 ind:imp:1s;ind:imp:2s; +pardonnait pardonner VER 139.45 44.59 0.33 2.64 ind:imp:3s; +pardonnant pardonner VER 139.45 44.59 0.05 0.20 par:pre; +pardonne pardonner VER 139.45 44.59 53.11 12.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +pardonnent pardonner VER 139.45 44.59 1.09 0.81 ind:pre:3p; +pardonner pardonner VER 139.45 44.59 21.71 11.49 inf;; +pardonnera pardonner VER 139.45 44.59 3.72 0.74 ind:fut:3s; +pardonnerai pardonner VER 139.45 44.59 4.58 0.81 ind:fut:1s; +pardonneraient pardonner VER 139.45 44.59 0.13 0.07 cnd:pre:3p; +pardonnerais pardonner VER 139.45 44.59 1.02 0.20 cnd:pre:1s;cnd:pre:2s; +pardonnerait pardonner VER 139.45 44.59 0.55 1.08 cnd:pre:3s; +pardonneras pardonner VER 139.45 44.59 1.45 0.14 ind:fut:2s; +pardonnerez pardonner VER 139.45 44.59 0.66 0.81 ind:fut:2p; +pardonneriez pardonner VER 139.45 44.59 0.04 0.00 cnd:pre:2p; +pardonnerons pardonner VER 139.45 44.59 0.02 0.07 ind:fut:1p; +pardonneront pardonner VER 139.45 44.59 0.63 0.27 ind:fut:3p; +pardonnes pardonner VER 139.45 44.59 4.41 0.54 ind:pre:2s;sub:pre:2s; +pardonnez pardonner VER 139.45 44.59 34.31 5.74 imp:pre:2p;ind:pre:2p; +pardonniez pardonner VER 139.45 44.59 0.16 0.07 ind:imp:2p; +pardonnions pardonner VER 139.45 44.59 0.02 0.20 ind:imp:1p; +pardonnons pardonner VER 139.45 44.59 1.02 0.07 imp:pre:1p;ind:pre:1p; +pardonnât pardonner VER 139.45 44.59 0.00 0.07 sub:imp:3s; +pardonnèrent pardonner VER 139.45 44.59 0.02 0.07 ind:pas:3p; +pardonné pardonner VER m s 139.45 44.59 8.31 4.32 par:pas; +pardonnée pardonner VER f s 139.45 44.59 1.18 0.27 par:pas; +pardonnées pardonner VER f p 139.45 44.59 0.02 0.07 par:pas; +pardonnés pardonner VER m p 139.45 44.59 0.80 0.27 par:pas; +pardons pardon NOM m p 55.62 26.89 0.92 0.81 +pare_balle pare_balle ADJ s 0.13 0.00 0.13 0.00 +pare_balles pare_balles ADJ 1.92 0.34 1.92 0.34 +pare_boue pare_boue NOM m 0.04 0.00 0.04 0.00 +pare_brise pare_brise NOM m 4.12 7.16 4.08 7.16 +pare_brise pare_brise NOM m p 4.12 7.16 0.04 0.00 +pare_chocs pare_chocs NOM m 1.85 1.82 1.85 1.82 +pare_feu pare_feu NOM m 0.24 0.07 0.24 0.07 +pare_feux pare_feux NOM m p 0.05 0.00 0.05 0.00 +pare_soleil pare_soleil NOM m 0.26 0.54 0.26 0.54 +pare_éclats pare_éclats NOM m 0.00 0.07 0.00 0.07 +pare_étincelles pare_étincelles NOM m 0.00 0.07 0.00 0.07 +pare parer VER 30.50 19.66 1.64 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pareil pareil ADJ m s 133.45 149.66 95.18 70.47 +pareille pareil ADJ f s 133.45 149.66 21.01 41.22 +pareillement pareillement ADV 1.57 3.72 1.57 3.72 +pareilles pareil ADJ f p 133.45 149.66 6.97 16.82 +pareils pareil ADJ m p 133.45 149.66 10.29 21.15 +parement parement NOM m s 0.03 1.76 0.03 0.00 +parements parement NOM m p 0.03 1.76 0.00 1.76 +parenchyme parenchyme NOM m s 0.01 0.00 0.01 0.00 +parent parent NOM m s 188.38 146.35 10.03 4.53 +parentage parentage NOM m s 0.00 0.07 0.00 0.07 +parental parental ADJ m s 1.65 0.81 0.50 0.07 +parentale parental ADJ f s 1.65 0.81 0.72 0.61 +parentales parental ADJ f p 1.65 0.81 0.10 0.07 +parentaux parental ADJ m p 1.65 0.81 0.32 0.07 +parente parent NOM f s 188.38 146.35 1.12 2.30 +parentes parent NOM f p 188.38 146.35 0.20 0.81 +parenthèse parenthèse NOM f s 1.80 9.32 1.00 5.47 +parenthèses parenthèse NOM f p 1.80 9.32 0.80 3.85 +parents parent NOM m p 188.38 146.35 177.04 138.72 +parentèle parentèle NOM f s 0.11 0.34 0.11 0.27 +parentèles parentèle NOM f p 0.11 0.34 0.00 0.07 +parenté parenté NOM f s 1.42 6.42 1.42 5.68 +parentés parenté NOM f p 1.42 6.42 0.00 0.74 +parer parer VER 30.50 19.66 0.69 5.14 inf; +parerai parer VER 30.50 19.66 0.00 0.07 ind:fut:1s; +parerait parer VER 30.50 19.66 0.00 0.07 cnd:pre:3s; +paressaient paresser VER 0.42 0.95 0.00 0.07 ind:imp:3p; +paressais paresser VER 0.42 0.95 0.02 0.07 ind:imp:1s;ind:imp:2s; +paressait paresser VER 0.42 0.95 0.00 0.20 ind:imp:3s; +paressant paresser VER 0.42 0.95 0.01 0.07 par:pre; +paresse paresse NOM f s 2.65 12.43 2.54 11.89 +paresser paresser VER 0.42 0.95 0.25 0.34 inf; +paresses paresse NOM f p 2.65 12.43 0.10 0.54 +paresseuse paresseux ADJ f s 5.46 10.34 2.08 3.65 +paresseusement paresseusement ADV 0.01 2.97 0.01 2.97 +paresseuses paresseux ADJ f p 5.46 10.34 0.20 0.41 +paresseux paresseux ADJ m 5.46 10.34 3.19 6.28 +paressions paresser VER 0.42 0.95 0.10 0.07 ind:imp:1p; +paressé paresser VER m s 0.42 0.95 0.02 0.14 par:pas; +paresthésie paresthésie NOM f s 0.05 0.00 0.05 0.00 +pareur pareur NOM m s 0.01 0.00 0.01 0.00 +parez parer VER 30.50 19.66 1.44 0.14 imp:pre:2p;ind:pre:2p; +parfaire parfaire VER 60.06 19.86 0.58 2.64 inf; +parfais parfaire VER 60.06 19.86 0.09 0.00 imp:pre:2s;ind:pre:1s; +parfaisais parfaire VER 60.06 19.86 0.00 0.07 ind:imp:1s; +parfaisait parfaire VER 60.06 19.86 0.00 0.07 ind:imp:3s; +parfait parfaire VER m s 60.06 19.86 45.92 11.89 ind:pre:3s;par:pas; +parfaite parfait ADJ f s 58.77 43.45 19.32 18.45 +parfaitement parfaitement ADV 45.48 71.08 45.48 71.08 +parfaites parfait ADJ f p 58.77 43.45 1.52 2.03 +parfaits parfait ADJ m p 58.77 43.45 2.36 2.30 +parferont parfaire VER 60.06 19.86 0.00 0.07 ind:fut:3p; +parfit parfaire VER 60.06 19.86 0.00 0.07 ind:pas:3s; +parfois parfois ADV 152.86 287.36 152.86 287.36 +parfum parfum NOM m s 30.00 65.74 24.44 52.36 +parfuma parfumer VER 1.89 10.27 0.00 0.41 ind:pas:3s; +parfumaient parfumer VER 1.89 10.27 0.00 0.07 ind:imp:3p; +parfumait parfumer VER 1.89 10.27 0.01 1.22 ind:imp:3s; +parfume parfumer VER 1.89 10.27 0.14 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +parfument parfumer VER 1.89 10.27 0.06 0.41 ind:pre:3p; +parfumer parfumer VER 1.89 10.27 0.27 0.95 inf; +parfumera parfumer VER 1.89 10.27 0.00 0.07 ind:fut:3s; +parfumerie parfumerie NOM f s 0.47 1.42 0.47 1.22 +parfumeries parfumerie NOM f p 0.47 1.42 0.00 0.20 +parfumeur parfumeur NOM m s 0.13 1.15 0.12 0.47 +parfumeurs parfumeur NOM m p 0.13 1.15 0.00 0.41 +parfumeuse parfumeur NOM f s 0.13 1.15 0.01 0.27 +parfumez parfumer VER 1.89 10.27 0.11 0.00 imp:pre:2p;ind:pre:2p; +parfums parfum NOM m p 30.00 65.74 5.55 13.38 +parfumé parfumé ADJ m s 2.24 10.20 0.64 3.99 +parfumée parfumé ADJ f s 2.24 10.20 1.12 3.51 +parfumées parfumé ADJ f p 2.24 10.20 0.23 1.89 +parfumés parfumé ADJ m p 2.24 10.20 0.25 0.81 +pari pari NOM m s 26.61 12.57 13.93 4.59 +paria paria NOM m s 1.12 2.09 0.82 1.35 +pariade pariade NOM f s 0.01 0.14 0.01 0.14 +pariaient parier VER 81.96 15.61 0.15 0.20 ind:imp:3p; +pariais parier VER 81.96 15.61 0.25 0.07 ind:imp:1s;ind:imp:2s; +pariait parier VER 81.96 15.61 0.48 0.27 ind:imp:3s; +pariant parier VER 81.96 15.61 0.52 0.07 par:pre; +parias paria NOM m p 1.12 2.09 0.29 0.74 +parie parier VER 81.96 15.61 52.59 8.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +parient parier VER 81.96 15.61 0.33 0.00 ind:pre:3p; +parier parier VER 81.96 15.61 9.93 2.70 ind:pre:2p;inf; +parierai parier VER 81.96 15.61 0.51 0.07 ind:fut:1s; +parierais parier VER 81.96 15.61 1.81 1.01 cnd:pre:1s;cnd:pre:2s; +parierait parier VER 81.96 15.61 0.02 0.14 cnd:pre:3s; +parieriez parier VER 81.96 15.61 0.05 0.00 cnd:pre:2p; +paries parier VER 81.96 15.61 3.61 0.54 ind:pre:2s; +parieur parieur NOM m s 0.81 0.54 0.39 0.07 +parieurs parieur NOM m p 0.81 0.54 0.41 0.47 +parieuse parieur NOM f s 0.81 0.54 0.01 0.00 +pariez parier VER 81.96 15.61 1.69 0.14 imp:pre:2p;ind:pre:2p; +parigot parigot ADJ m s 0.40 1.22 0.27 0.81 +parigote parigot NOM f s 0.00 1.01 0.00 0.20 +parigotes parigot ADJ f p 0.40 1.22 0.00 0.14 +parigots parigot ADJ m p 0.40 1.22 0.14 0.14 +parions parier VER 81.96 15.61 0.38 0.20 imp:pre:1p;ind:imp:1p;ind:pre:1p; +paris_brest paris_brest NOM m 0.19 0.20 0.19 0.20 +paris pari NOM m p 26.61 12.57 12.68 7.97 +parisien parisien ADJ m s 2.73 30.61 0.94 12.09 +parisienne parisien ADJ f s 2.73 30.61 1.11 10.07 +parisiennes parisien ADJ f p 2.73 30.61 0.16 2.30 +parisiens parisien NOM m p 2.20 9.12 1.36 6.49 +paritaire paritaire ADJ s 0.00 0.07 0.00 0.07 +parité parité NOM f s 0.31 0.14 0.31 0.14 +parié parier VER m s 81.96 15.61 9.61 1.42 par:pas; +pariétal pariétal ADJ m s 0.26 0.20 0.20 0.14 +pariétale pariétal ADJ f s 0.26 0.20 0.04 0.07 +pariétaux pariétal ADJ m p 0.26 0.20 0.02 0.00 +parjurant parjurer VER 0.79 0.47 0.00 0.07 par:pre; +parjure parjure NOM m s 1.35 0.74 1.16 0.68 +parjurer parjurer VER 0.79 0.47 0.14 0.34 ind:pre:2p;inf; +parjurera parjurer VER 0.79 0.47 0.01 0.00 ind:fut:3s; +parjures parjure NOM m p 1.35 0.74 0.19 0.07 +parjuré parjurer VER m s 0.79 0.47 0.21 0.00 par:pas; +parjurée parjurer VER f s 0.79 0.47 0.03 0.00 par:pas; +parka parka NOM m s 0.28 0.41 0.28 0.41 +parking parking NOM m s 18.23 9.86 17.38 8.65 +parkings parking NOM m p 18.23 9.86 0.84 1.22 +parkinson parkinson NOM m 0.03 0.07 0.03 0.07 +parkinsonien parkinsonien ADJ m s 0.07 0.14 0.04 0.07 +parkinsonienne parkinsonien ADJ f s 0.07 0.14 0.00 0.07 +parkinsoniens parkinsonien ADJ m p 0.07 0.14 0.03 0.00 +parla parler VER 1970.58 1086.01 2.71 38.99 ind:pas:3s; +parlai parler VER 1970.58 1086.01 0.59 3.78 ind:pas:1s; +parlaient parler VER 1970.58 1086.01 5.94 40.27 ind:imp:3p; +parlais parler VER 1970.58 1086.01 32.98 19.53 ind:imp:1s;ind:imp:2s; +parlait parler VER 1970.58 1086.01 44.37 157.09 ind:imp:3s; +parlant parler VER 1970.58 1086.01 15.70 36.15 par:pre; +parlante parlant ADJ f s 5.62 5.47 1.01 0.68 +parlantes parlant ADJ f p 5.62 5.47 0.46 0.14 +parlants parlant ADJ m p 5.62 5.47 0.12 0.34 +parlas parler VER 1970.58 1086.01 0.01 0.07 ind:pas:2s; +parlassent parler VER 1970.58 1086.01 0.00 0.20 sub:imp:3p; +parlasses parler VER 1970.58 1086.01 0.00 0.07 sub:imp:2s; +parle parler VER 1970.58 1086.01 451.68 168.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +parlement parlement NOM m s 4.71 5.68 4.71 5.54 +parlementaire parlementaire ADJ s 0.77 3.72 0.72 2.70 +parlementaires parlementaire NOM p 0.27 2.91 0.16 2.70 +parlementait parlementer VER 0.82 1.69 0.00 0.34 ind:imp:3s; +parlementant parlementer VER 0.82 1.69 0.00 0.07 par:pre; +parlementarisme parlementarisme NOM m s 0.00 0.20 0.00 0.20 +parlementariste parlementariste ADJ s 0.00 0.07 0.00 0.07 +parlemente parlementer VER 0.82 1.69 0.15 0.27 ind:pre:1s;ind:pre:3s; +parlementent parlementer VER 0.82 1.69 0.01 0.14 ind:pre:3p; +parlementer parlementer VER 0.82 1.69 0.61 0.74 inf; +parlementons parlementer VER 0.82 1.69 0.01 0.07 imp:pre:1p;ind:pre:1p; +parlements parlement NOM m p 4.71 5.68 0.00 0.14 +parlementèrent parlementer VER 0.82 1.69 0.00 0.07 ind:pas:3p; +parlementé parlementer VER m s 0.82 1.69 0.04 0.00 par:pas; +parlent parler VER 1970.58 1086.01 32.08 29.39 ind:pre:3p;sub:pre:3p; +parler parler VER 1970.58 1086.01 728.02 341.82 inf;;inf;;inf;;inf;; +parlera parler VER 1970.58 1086.01 23.70 6.22 ind:fut:3s; +parlerai parler VER 1970.58 1086.01 22.47 8.24 ind:fut:1s; +parleraient parler VER 1970.58 1086.01 0.14 1.42 cnd:pre:3p; +parlerais parler VER 1970.58 1086.01 3.96 2.03 cnd:pre:1s;cnd:pre:2s; +parlerait parler VER 1970.58 1086.01 3.17 6.49 cnd:pre:3s; +parleras parler VER 1970.58 1086.01 3.89 1.28 ind:fut:2s; +parlerez parler VER 1970.58 1086.01 2.71 0.47 ind:fut:2p; +parlerie parlerie NOM f s 0.00 0.07 0.00 0.07 +parleriez parler VER 1970.58 1086.01 0.50 0.14 cnd:pre:2p; +parlerions parler VER 1970.58 1086.01 0.26 0.47 cnd:pre:1p; +parlerons parler VER 1970.58 1086.01 6.53 2.03 ind:fut:1p; +parleront parler VER 1970.58 1086.01 1.75 1.22 ind:fut:3p; +parlers parler NOM m p 11.58 9.05 0.00 0.14 +parles parler VER 1970.58 1086.01 152.20 35.34 ind:pre:2s;sub:pre:2s; +parleur parleur NOM m s 1.36 2.03 1.20 1.76 +parleurs parleur NOM m p 1.36 2.03 0.16 0.20 +parleuse parleur NOM f s 1.36 2.03 0.00 0.07 +parlez parler VER 1970.58 1086.01 120.79 22.03 imp:pre:2p;ind:pre:2p; +parliez parler VER 1970.58 1086.01 10.93 3.11 ind:imp:2p;sub:pre:2p; +parlions parler VER 1970.58 1086.01 6.69 12.16 ind:imp:1p; +parloir parloir NOM m s 2.64 4.39 2.64 4.19 +parloirs parloir NOM m p 2.64 4.39 0.00 0.20 +parlâmes parler VER 1970.58 1086.01 0.02 1.55 ind:pas:1p; +parlons parler VER 1970.58 1086.01 46.28 16.22 imp:pre:1p;ind:pre:1p; +parlophone parlophone NOM s 0.00 0.34 0.00 0.34 +parlât parler VER 1970.58 1086.01 0.10 3.11 sub:imp:3s; +parlotaient parloter VER 0.00 0.14 0.00 0.07 ind:imp:3p; +parlote parlote NOM f s 0.27 1.35 0.24 0.27 +parloter parloter VER 0.00 0.14 0.00 0.07 inf; +parlotes parlote NOM f p 0.27 1.35 0.03 1.08 +parlotte parlotte NOM f s 0.19 0.47 0.16 0.14 +parlottes parlotte NOM f p 0.19 0.47 0.04 0.34 +parlèrent parler VER 1970.58 1086.01 0.08 7.77 ind:pas:3p; +parlé parler VER m s 1970.58 1086.01 248.94 118.04 par:pas;par:pas;par:pas;par:pas; +parlée parler VER f s 1970.58 1086.01 0.39 0.27 par:pas; +parlées parler VER f p 1970.58 1086.01 0.30 0.07 par:pas; +parlés parler VER m p 1970.58 1086.01 0.65 0.20 par:pas; +parme parme ADJ 0.01 0.81 0.01 0.81 +parmentier parmentier NOM m s 0.04 0.27 0.04 0.27 +parmentures parmenture NOM f p 0.00 0.07 0.00 0.07 +parmesan parmesan NOM m s 0.66 0.54 0.66 0.47 +parmesane parmesan ADJ f s 0.18 0.20 0.01 0.07 +parmesans parmesan NOM m p 0.66 0.54 0.00 0.07 +parmi parmi PRE 69.17 171.96 69.17 171.96 +parmélies parmélie NOM f p 0.00 0.20 0.00 0.20 +parménidien parménidien ADJ m s 0.00 0.07 0.00 0.07 +parnassienne parnassien ADJ f s 0.00 0.14 0.00 0.14 +parodiai parodier VER 0.21 1.55 0.00 0.14 ind:pas:1s; +parodiait parodier VER 0.21 1.55 0.00 0.20 ind:imp:3s; +parodiant parodier VER 0.21 1.55 0.04 0.34 par:pre; +parodie parodie NOM f s 1.13 2.43 1.09 2.16 +parodier parodier VER 0.21 1.55 0.01 0.61 inf; +parodies parodie NOM f p 1.13 2.43 0.05 0.27 +parodique parodique ADJ s 0.06 1.08 0.05 0.95 +parodiquement parodiquement ADV 0.00 0.14 0.00 0.14 +parodiques parodique ADJ m p 0.06 1.08 0.01 0.14 +parodontal parodontal ADJ m s 0.02 0.00 0.01 0.00 +parodontale parodontal ADJ f s 0.02 0.00 0.01 0.00 +paroi paroi NOM f s 4.88 30.00 3.01 16.01 +paroir paroir NOM m s 0.00 0.14 0.00 0.07 +paroirs paroir NOM m p 0.00 0.14 0.00 0.07 +parois paroi NOM f p 4.88 30.00 1.87 13.99 +paroisse paroisse NOM f s 5.75 6.62 5.42 5.88 +paroisses paroisse NOM f p 5.75 6.62 0.33 0.74 +paroissial paroissial ADJ m s 0.67 1.35 0.24 0.27 +paroissiale paroissial ADJ f s 0.67 1.35 0.38 0.61 +paroissiales paroissial ADJ f p 0.67 1.35 0.00 0.20 +paroissiaux paroissial ADJ m p 0.67 1.35 0.04 0.27 +paroissien paroissien NOM m s 1.06 1.76 0.10 0.14 +paroissienne paroissien NOM f s 1.06 1.76 0.02 0.00 +paroissiennes paroissienne NOM f p 0.04 0.00 0.04 0.00 +paroissiens paroissien NOM m p 1.06 1.76 0.94 1.42 +parole parole NOM f s 103.48 178.31 71.07 81.82 +paroles parole NOM f p 103.48 178.31 32.41 96.49 +paroli paroli NOM m s 0.00 0.07 0.00 0.07 +parolier parolier NOM m s 0.07 0.07 0.06 0.07 +parolière parolier NOM f s 0.07 0.07 0.01 0.00 +paronomasie paronomasie NOM f s 0.00 0.07 0.00 0.07 +paros paros NOM m 0.27 1.08 0.27 1.08 +parotidienne parotidien ADJ f s 0.01 0.00 0.01 0.00 +parâtre parâtre NOM m s 0.02 0.00 0.02 0.00 +parousie parousie NOM f s 0.00 0.27 0.00 0.27 +paroxysme paroxysme NOM m s 0.27 3.24 0.27 3.18 +paroxysmes paroxysme NOM m p 0.27 3.24 0.00 0.07 +paroxysmique paroxysmique ADJ f s 0.01 0.07 0.01 0.00 +paroxysmiques paroxysmique ADJ p 0.01 0.07 0.00 0.07 +paroxystique paroxystique ADJ s 0.01 0.20 0.01 0.14 +paroxystiques paroxystique ADJ m p 0.01 0.20 0.00 0.07 +parpaillot parpaillot NOM m s 0.00 0.27 0.00 0.14 +parpaillote parpaillot NOM f s 0.00 0.27 0.00 0.07 +parpaillotes parpaillot NOM f p 0.00 0.27 0.00 0.07 +parpaing parpaing NOM m s 0.64 1.42 0.22 0.20 +parpaings parpaing NOM m p 0.64 1.42 0.42 1.22 +parquait parquer VER 0.41 2.36 0.00 0.14 ind:imp:3s; +parque parquer VER 0.41 2.36 0.06 0.14 imp:pre:2s;ind:pre:3s; +parquent parquer VER 0.41 2.36 0.14 0.14 ind:pre:3p; +parquer parquer VER 0.41 2.36 0.09 0.20 inf; +parquet parquet NOM m s 4.43 22.43 4.12 18.51 +parquetage parquetage NOM m s 0.00 0.14 0.00 0.14 +parqueteur parqueteur NOM m s 0.00 0.14 0.00 0.07 +parqueteuse parqueteur NOM f s 0.00 0.14 0.00 0.07 +parquets parquet NOM m p 4.43 22.43 0.32 3.92 +parqueté parqueter VER m s 0.00 0.61 0.00 0.07 par:pas; +parquetée parqueter VER f s 0.00 0.61 0.00 0.47 par:pas; +parquetées parqueter VER f p 0.00 0.61 0.00 0.07 par:pas; +parquez parquer VER 0.41 2.36 0.02 0.00 imp:pre:2p; +parqué parquer VER m s 0.41 2.36 0.05 0.20 par:pas; +parquée parqué ADJ f s 0.01 0.14 0.01 0.00 +parquées parquer VER f p 0.41 2.36 0.02 0.20 par:pas; +parqués parquer VER m p 0.41 2.36 0.02 1.28 par:pas; +parr parr NOM m s 0.12 0.14 0.12 0.14 +parrain parrain NOM m s 10.37 7.64 9.76 7.50 +parrainage parrainage NOM m s 0.11 0.14 0.11 0.14 +parrainait parrainer VER 0.96 0.27 0.04 0.14 ind:imp:3s; +parrainant parrainer VER 0.96 0.27 0.01 0.07 par:pre; +parraine parrainer VER 0.96 0.27 0.24 0.00 ind:pre:1s;ind:pre:3s; +parrainent parrainer VER 0.96 0.27 0.01 0.00 ind:pre:3p; +parrainer parrainer VER 0.96 0.27 0.26 0.07 inf; +parrainerai parrainer VER 0.96 0.27 0.01 0.00 ind:fut:1s; +parraineuse parraineur NOM f s 0.00 0.07 0.00 0.07 +parrains parrain NOM m p 10.37 7.64 0.61 0.14 +parrainé parrainer VER m s 0.96 0.27 0.33 0.00 par:pas; +parrainée parrainer VER f s 0.96 0.27 0.03 0.00 par:pas; +parrainés parrainer VER m p 0.96 0.27 0.03 0.00 par:pas; +parricide parricide NOM s 0.56 0.20 0.56 0.20 +parricides parricide ADJ m p 0.01 0.14 0.00 0.14 +pars partir VER 1111.97 485.68 109.45 14.53 imp:pre:2s;ind:pre:1s;ind:pre:2s; +parsec parsec NOM m s 0.27 0.07 0.01 0.00 +parsecs parsec NOM m p 0.27 0.07 0.25 0.07 +parsemaient parsemer VER 0.35 7.36 0.00 0.68 ind:imp:3p; +parsemant parsemer VER 0.35 7.36 0.01 0.61 par:pre; +parsemer parsemer VER 0.35 7.36 0.01 0.07 inf; +parsemé parsemer VER m s 0.35 7.36 0.10 2.09 par:pas; +parsemée parsemer VER f s 0.35 7.36 0.19 1.76 par:pas; +parsemées parsemer VER f p 0.35 7.36 0.00 0.54 par:pas; +parsemés parsemer VER m p 0.35 7.36 0.01 0.88 par:pas; +parsi parsi ADJ m s 0.27 0.00 0.27 0.00 +parsis parsi NOM m p 0.02 0.14 0.00 0.14 +parsème parsemer VER 0.35 7.36 0.00 0.14 ind:pre:3s; +parsèment parsemer VER 0.35 7.36 0.03 0.61 ind:pre:3p; +part_time part_time NOM f s 0.00 0.14 0.00 0.14 +part part NOM s 305.89 320.41 299.31 306.22 +partîmes partir VER 1111.97 485.68 0.26 1.76 ind:pas:1p; +partît partir VER 1111.97 485.68 0.00 0.47 sub:imp:3s; +partage partager VER 79.09 78.99 16.43 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +partagea partager VER 79.09 78.99 0.03 1.22 ind:pas:3s; +partageable partageable ADJ s 0.01 0.07 0.01 0.07 +partageai partager VER 79.09 78.99 0.00 0.41 ind:pas:1s; +partageaient partager VER 79.09 78.99 0.61 4.32 ind:imp:3p; +partageais partager VER 79.09 78.99 0.80 2.77 ind:imp:1s;ind:imp:2s; +partageait partager VER 79.09 78.99 1.74 11.62 ind:imp:3s; +partageant partager VER 79.09 78.99 0.57 2.03 par:pre; +partagent partager VER 79.09 78.99 3.44 3.11 ind:pre:3p; +partageâmes partager VER 79.09 78.99 0.02 0.07 ind:pas:1p; +partageons partager VER 79.09 78.99 3.48 1.15 imp:pre:1p;ind:pre:1p; +partageât partager VER 79.09 78.99 0.00 0.47 sub:imp:3s; +partager partager VER 79.09 78.99 34.05 24.93 inf; +partagera partager VER 79.09 78.99 1.42 0.14 ind:fut:3s; +partagerai partager VER 79.09 78.99 0.66 0.20 ind:fut:1s; +partageraient partager VER 79.09 78.99 0.15 0.41 cnd:pre:3p; +partagerais partager VER 79.09 78.99 0.61 0.47 cnd:pre:1s;cnd:pre:2s; +partagerait partager VER 79.09 78.99 0.33 0.54 cnd:pre:3s; +partageras partager VER 79.09 78.99 0.29 0.00 ind:fut:2s; +partagerez partager VER 79.09 78.99 0.42 0.00 ind:fut:2p; +partageriez partager VER 79.09 78.99 0.09 0.00 cnd:pre:2p; +partagerions partager VER 79.09 78.99 0.04 0.07 cnd:pre:1p; +partagerons partager VER 79.09 78.99 0.69 0.20 ind:fut:1p; +partageront partager VER 79.09 78.99 0.11 0.20 ind:fut:3p; +partages partager VER 79.09 78.99 1.63 0.14 ind:pre:2s; +partageur partageur ADJ m s 0.02 0.07 0.02 0.00 +partageurs partageur ADJ m p 0.02 0.07 0.00 0.07 +partageuse partageux ADJ f s 0.01 0.07 0.01 0.07 +partageux partageux NOM m 0.00 0.07 0.00 0.07 +partagez partager VER 79.09 78.99 2.54 0.20 imp:pre:2p;ind:pre:2p; +partagiez partager VER 79.09 78.99 0.21 0.00 ind:imp:2p; +partagions partager VER 79.09 78.99 0.80 1.28 ind:imp:1p; +partagèrent partager VER 79.09 78.99 0.12 1.01 ind:pas:3p; +partagé partager VER m s 79.09 78.99 5.73 8.51 par:pas; +partagée partager VER f s 79.09 78.99 1.01 3.04 par:pas; +partagées partager VER f p 79.09 78.99 0.21 1.35 par:pas; +partagés partager VER m p 79.09 78.99 0.85 1.49 par:pas; +partaient partir VER 1111.97 485.68 1.58 11.62 ind:imp:3p; +partais partir VER 1111.97 485.68 6.69 5.41 ind:imp:1s;ind:imp:2s; +partait partir VER 1111.97 485.68 8.52 25.81 ind:imp:3s; +partance partance NOM f s 0.77 1.76 0.77 1.76 +partant partir VER 1111.97 485.68 6.90 13.04 par:pre; +partante partant ADJ f s 5.07 1.82 1.25 0.20 +partantes partant ADJ f p 5.07 1.82 0.19 0.07 +partants partant ADJ m p 5.07 1.82 0.55 0.20 +parte partir VER 1111.97 485.68 22.87 7.84 sub:pre:1s;sub:pre:3s; +partenaire_robot partenaire_robot NOM s 0.01 0.00 0.01 0.00 +partenaire partenaire NOM s 28.54 15.00 22.22 10.47 +partenaires partenaire NOM p 28.54 15.00 6.33 4.53 +partenariat partenariat NOM m s 1.47 0.07 1.47 0.07 +partent partir VER 1111.97 485.68 14.19 8.45 ind:pre:3p; +parterre parterre NOM m s 2.76 6.82 2.31 4.05 +parterres parterre NOM m p 2.76 6.82 0.45 2.77 +partes partir VER 1111.97 485.68 7.50 0.95 sub:pre:2s; +partez partir VER 1111.97 485.68 73.82 6.62 imp:pre:2p;ind:pre:2p; +parthe parthe ADJ s 0.00 1.15 0.00 0.95 +parthes parthe ADJ p 0.00 1.15 0.00 0.20 +parthique parthique ADJ s 0.00 0.07 0.00 0.07 +parthénogenèse parthénogenèse NOM f s 0.04 0.07 0.04 0.07 +parthénogénèse parthénogénèse NOM f s 0.00 0.07 0.00 0.07 +parthénogénétique parthénogénétique ADJ m s 0.15 0.00 0.15 0.00 +parti partir VER m s 1111.97 485.68 162.93 58.72 par:pas; +partial partial ADJ m s 0.51 1.08 0.20 0.81 +partiale partial ADJ f s 0.51 1.08 0.30 0.20 +partiales partial ADJ f p 0.51 1.08 0.00 0.07 +partialité partialité NOM f s 0.25 1.22 0.25 1.22 +partiaux partial ADJ m p 0.51 1.08 0.01 0.00 +participa participer VER 33.56 40.07 0.34 0.61 ind:pas:3s; +participai participer VER 33.56 40.07 0.10 0.54 ind:pas:1s; +participaient participer VER 33.56 40.07 0.21 2.36 ind:imp:3p; +participais participer VER 33.56 40.07 0.18 1.15 ind:imp:1s;ind:imp:2s; +participait participer VER 33.56 40.07 0.30 4.73 ind:imp:3s; +participant participer VER 33.56 40.07 0.38 1.22 par:pre; +participante participant NOM f s 1.50 2.23 0.04 0.00 +participantes participant NOM f p 1.50 2.23 0.04 0.00 +participants participant NOM m p 1.50 2.23 1.23 1.96 +participation participation NOM f s 3.17 8.58 3.11 8.51 +participations participation NOM f p 3.17 8.58 0.05 0.07 +participative participatif ADJ f s 0.02 0.00 0.02 0.00 +participe participer VER 33.56 40.07 3.29 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +participent participer VER 33.56 40.07 1.47 2.57 ind:pre:3p; +participer participer VER 33.56 40.07 16.02 15.34 inf; +participera participer VER 33.56 40.07 0.49 0.20 ind:fut:3s; +participerai participer VER 33.56 40.07 0.38 0.00 ind:fut:1s; +participeraient participer VER 33.56 40.07 0.03 0.27 cnd:pre:3p; +participerais participer VER 33.56 40.07 0.09 0.07 cnd:pre:1s; +participerait participer VER 33.56 40.07 0.14 0.20 cnd:pre:3s; +participeras participer VER 33.56 40.07 0.16 0.07 ind:fut:2s; +participerez participer VER 33.56 40.07 0.09 0.00 ind:fut:2p; +participerons participer VER 33.56 40.07 0.34 0.00 ind:fut:1p; +participeront participer VER 33.56 40.07 0.13 0.27 ind:fut:3p; +participes participer VER 33.56 40.07 0.67 0.00 ind:pre:2s; +participez participer VER 33.56 40.07 1.25 0.07 imp:pre:2p;ind:pre:2p; +participiez participer VER 33.56 40.07 0.23 0.14 ind:imp:2p; +participions participer VER 33.56 40.07 0.10 0.27 ind:imp:1p; +participons participer VER 33.56 40.07 0.24 0.34 imp:pre:1p;ind:pre:1p; +participât participer VER 33.56 40.07 0.00 0.47 sub:imp:3s; +participèrent participer VER 33.56 40.07 0.01 0.20 ind:pas:3p; +participé participer VER m s 33.56 40.07 6.94 5.07 par:pas; +participés participer VER m p 33.56 40.07 0.01 0.00 par:pas; +particularisme particularisme NOM m s 0.00 0.41 0.00 0.14 +particularismes particularisme NOM m p 0.00 0.41 0.00 0.27 +particularisées particulariser VER f p 0.00 0.07 0.00 0.07 par:pas; +particularité particularité NOM f s 1.16 5.00 0.82 2.50 +particularités particularité NOM f p 1.16 5.00 0.34 2.50 +particule particule NOM f s 3.46 5.27 0.66 2.03 +particules particule NOM f p 3.46 5.27 2.80 3.24 +particulier particulier ADJ m s 24.91 53.99 13.88 23.65 +particuliers particulier ADJ m p 24.91 53.99 3.07 6.08 +particulière particulier ADJ f s 24.91 53.99 6.63 20.00 +particulièrement particulièrement ADV 14.78 36.62 14.78 36.62 +particulières particulier ADJ f p 24.91 53.99 1.33 4.26 +partie partie NOM f s 191.19 211.49 177.81 187.97 +partiel partiel ADJ m s 3.33 2.09 1.19 0.88 +partielle partiel ADJ f s 3.33 2.09 1.67 0.81 +partiellement partiellement ADV 1.03 2.97 1.03 2.97 +partielles partiel ADJ f p 3.33 2.09 0.41 0.27 +partiels partiel NOM m p 1.10 0.27 0.81 0.00 +parties partie NOM f p 191.19 211.49 13.39 23.51 +partiez partir VER 1111.97 485.68 5.93 1.42 ind:imp:2p;sub:pre:2p; +partions partir VER 1111.97 485.68 2.24 4.73 ind:imp:1p; +partir partir VER 1111.97 485.68 388.25 167.77 inf; +partira partir VER 1111.97 485.68 12.15 3.18 ind:fut:3s; +partirai partir VER 1111.97 485.68 11.98 3.99 ind:fut:1s; +partiraient partir VER 1111.97 485.68 0.61 0.81 cnd:pre:3p; +partirais partir VER 1111.97 485.68 3.12 2.30 cnd:pre:1s;cnd:pre:2s; +partirait partir VER 1111.97 485.68 2.37 5.47 cnd:pre:3s; +partiras partir VER 1111.97 485.68 4.25 1.01 ind:fut:2s; +partirent partir VER 1111.97 485.68 1.11 5.20 ind:pas:3p; +partirez partir VER 1111.97 485.68 3.31 0.88 ind:fut:2p; +partiriez partir VER 1111.97 485.68 0.27 0.14 cnd:pre:2p; +partirions partir VER 1111.97 485.68 0.34 0.47 cnd:pre:1p; +partirons partir VER 1111.97 485.68 4.76 1.82 ind:fut:1p; +partiront partir VER 1111.97 485.68 1.84 0.61 ind:fut:3p; +partis partir VER m p 1111.97 485.68 46.29 29.66 ind:pas:1s;ind:pas:2s;par:pas; +partisan partisan NOM m s 4.75 12.97 1.04 1.69 +partisane partisan ADJ f s 1.35 2.77 0.20 0.34 +partisanes partisan ADJ f p 1.35 2.77 0.10 0.20 +partisans partisan NOM m p 4.75 12.97 3.70 11.15 +partisse partir VER 1111.97 485.68 0.00 0.07 sub:imp:1s; +partissent partir VER 1111.97 485.68 0.00 0.07 sub:imp:3p; +partit partir VER 1111.97 485.68 4.17 28.78 ind:pas:3s; +partita partita NOM f s 0.00 0.20 0.00 0.14 +partitas partita NOM f p 0.00 0.20 0.00 0.07 +partitif partitif ADJ m s 0.00 0.07 0.00 0.07 +partition partition NOM f s 3.49 5.95 2.88 3.72 +partitions partition NOM f p 3.49 5.95 0.61 2.23 +partner partner NOM m s 0.26 0.00 0.26 0.00 +partons partir VER 1111.97 485.68 50.52 7.97 imp:pre:1p;ind:pre:1p;;imp:pre:1p;ind:pre:1p; +partouse partouse NOM f s 0.11 0.07 0.11 0.07 +partouser partouser VER 0.01 0.00 0.01 0.00 inf; +partout partout ADV 141.94 179.39 141.94 179.39 +partouzait partouzer VER 0.17 0.34 0.00 0.14 ind:imp:3s; +partouzarde partouzard ADJ f s 0.00 0.20 0.00 0.07 +partouzardes partouzard ADJ f p 0.00 0.20 0.00 0.07 +partouzards partouzard NOM m p 0.01 0.00 0.01 0.00 +partouze partouze NOM f s 2.33 2.16 1.95 1.28 +partouzent partouzer VER 0.17 0.34 0.14 0.07 ind:pre:3p; +partouzer partouzer VER 0.17 0.34 0.04 0.14 inf; +partouzes partouze NOM f p 2.33 2.16 0.38 0.88 +partouzeur partouzeur NOM m s 0.00 0.20 0.00 0.14 +partouzeurs partouzeur NOM m p 0.00 0.20 0.00 0.07 +parts part NOM f p 305.89 320.41 6.58 14.19 +parturiente parturiente NOM f s 0.00 0.34 0.00 0.27 +parturientes parturiente NOM f p 0.00 0.34 0.00 0.07 +parturition parturition NOM f s 0.01 0.27 0.01 0.14 +parturitions parturition NOM f p 0.01 0.27 0.00 0.14 +party party NOM f s 1.54 0.81 1.54 0.81 +paré parer VER m s 30.50 19.66 3.62 2.57 par:pas; +paru paraître VER m s 122.14 448.11 5.92 34.12 par:pas; +parée parer VER f s 30.50 19.66 1.21 2.43 par:pas; +parue paraître VER f s 122.14 448.11 0.36 0.61 par:pas; +parées parer VER f p 30.50 19.66 0.19 1.08 par:pas; +parégorique parégorique ADJ s 0.04 0.34 0.04 0.34 +paréo paréo NOM m s 0.01 0.47 0.01 0.20 +paréos paréo NOM m p 0.01 0.47 0.00 0.27 +parure parure NOM f s 1.00 4.05 0.48 2.70 +parurent paraître VER 122.14 448.11 0.11 7.36 ind:pas:3p; +parures parure NOM f p 1.00 4.05 0.52 1.35 +parés parer VER m p 30.50 19.66 2.31 1.62 par:pas; +parus paraître VER m p 122.14 448.11 0.23 0.54 ind:pas:1s;ind:pas:2s;par:pas; +parésie parésie NOM f s 0.01 0.00 0.01 0.00 +parussent paraître VER 122.14 448.11 0.00 0.34 sub:imp:3p; +parut paraître VER 122.14 448.11 1.48 71.28 ind:pas:3s; +parution parution NOM f s 0.36 1.15 0.36 1.15 +parvînmes parvenir VER 22.73 156.42 0.00 0.47 ind:pas:1p; +parvînt parvenir VER 22.73 156.42 0.01 1.01 sub:imp:3s; +parvenaient parvenir VER 22.73 156.42 0.04 10.68 ind:imp:3p; +parvenais parvenir VER 22.73 156.42 0.30 5.07 ind:imp:1s; +parvenait parvenir VER 22.73 156.42 0.48 25.88 ind:imp:3s; +parvenant parvenir VER 22.73 156.42 0.04 3.65 par:pre; +parvenez parvenir VER 22.73 156.42 0.48 0.20 ind:pre:2p; +parveniez parvenir VER 22.73 156.42 0.07 0.07 ind:imp:2p; +parvenions parvenir VER 22.73 156.42 0.03 0.61 ind:imp:1p; +parvenir parvenir VER 22.73 156.42 6.45 22.70 inf; +parvenons parvenir VER 22.73 156.42 0.52 0.68 imp:pre:1p;ind:pre:1p; +parvenu parvenir VER m s 22.73 156.42 2.63 14.93 par:pas; +parvenue parvenir VER f s 22.73 156.42 0.98 4.53 par:pas; +parvenues parvenir VER f p 22.73 156.42 0.29 1.22 par:pas; +parvenus parvenir VER m p 22.73 156.42 0.81 5.20 par:pas; +parviendra parvenir VER 22.73 156.42 0.80 1.22 ind:fut:3s; +parviendrai parvenir VER 22.73 156.42 0.41 0.54 ind:fut:1s; +parviendraient parvenir VER 22.73 156.42 0.00 0.54 cnd:pre:3p; +parviendrais parvenir VER 22.73 156.42 0.01 0.61 cnd:pre:1s; +parviendrait parvenir VER 22.73 156.42 0.27 3.18 cnd:pre:3s; +parviendras parvenir VER 22.73 156.42 0.12 0.14 ind:fut:2s; +parviendrez parvenir VER 22.73 156.42 0.34 0.07 ind:fut:2p; +parviendrions parvenir VER 22.73 156.42 0.00 0.20 cnd:pre:1p; +parviendrons parvenir VER 22.73 156.42 0.33 0.27 ind:fut:1p; +parviendront parvenir VER 22.73 156.42 0.24 0.54 ind:fut:3p; +parvienne parvenir VER 22.73 156.42 0.62 2.57 sub:pre:1s;sub:pre:3s; +parviennent parvenir VER 22.73 156.42 0.98 6.22 ind:pre:3p; +parviens parvenir VER 22.73 156.42 1.71 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +parvient parvenir VER 22.73 156.42 2.52 12.36 ind:pre:3s; +parvinrent parvenir VER 22.73 156.42 0.04 3.38 ind:pas:3p; +parvins parvenir VER 22.73 156.42 0.24 2.30 ind:pas:1s; +parvinssent parvenir VER 22.73 156.42 0.00 0.14 sub:imp:3p; +parvint parvenir VER 22.73 156.42 0.98 19.39 ind:pas:3s; +parvis parvis NOM m 0.19 6.28 0.19 6.28 +pas_de_porte pas_de_porte NOM m 0.00 0.20 0.00 0.20 +pas_je pas_je ADV 0.01 0.00 0.01 0.00 +pas pas ADV 18189.04 8795.20 18188.15 8795.14 +pascal pascal ADJ m s 0.79 18.24 0.23 17.64 +pascale pascal ADJ f s 0.79 18.24 0.56 0.41 +pascales pascal ADJ f p 0.79 18.24 0.00 0.20 +pascalien pascalien ADJ m s 0.00 0.27 0.00 0.07 +pascaliennes pascalien ADJ f p 0.00 0.27 0.00 0.14 +pascaliens pascalien ADJ m p 0.00 0.27 0.00 0.07 +paseo paseo NOM m s 0.00 0.88 0.00 0.88 +pasionaria pasionaria NOM f s 0.12 0.27 0.02 0.20 +pasionarias pasionaria NOM f p 0.12 0.27 0.10 0.07 +paso_doble paso_doble NOM m s 0.00 0.07 0.00 0.07 +paso_doble paso_doble NOM m 0.69 0.81 0.69 0.81 +paso paso NOM m s 0.23 0.14 0.23 0.00 +pasos paso NOM m p 0.23 0.14 0.00 0.14 +pasque pasque CON 0.05 1.69 0.05 1.69 +pasquins pasquin NOM m p 0.00 0.07 0.00 0.07 +passa passer VER 1495.48 1165.27 3.79 82.50 ind:pas:3s; +passable passable ADJ s 0.36 1.15 0.34 1.01 +passablement passablement ADV 0.51 3.72 0.51 3.72 +passables passable ADJ f p 0.36 1.15 0.02 0.14 +passade passade NOM f s 0.82 1.28 0.72 0.95 +passades passade NOM f p 0.82 1.28 0.10 0.34 +passage passage NOM m s 44.73 154.39 40.20 136.82 +passager passager NOM m s 19.23 13.24 3.75 3.24 +passagers passager NOM m p 19.23 13.24 14.23 8.31 +passages passage NOM m p 44.73 154.39 4.53 17.57 +passagère passager ADJ f s 5.09 6.82 1.69 3.31 +passagèrement passagèrement ADV 0.00 0.74 0.00 0.74 +passagères passager ADJ f p 5.09 6.82 0.25 0.74 +passai passer VER 1495.48 1165.27 0.25 10.74 ind:pas:1s; +passaient passer VER 1495.48 1165.27 3.44 42.23 ind:imp:3p; +passais passer VER 1495.48 1165.27 13.12 13.92 ind:imp:1s;ind:imp:2s; +passait passer VER 1495.48 1165.27 28.50 131.28 ind:imp:3s; +passant passer VER 1495.48 1165.27 10.91 60.88 par:pre; +passante passant NOM f s 2.76 32.57 0.27 1.08 +passantes passant NOM f p 2.76 32.57 0.01 0.61 +passants passant NOM m p 2.76 32.57 1.82 24.39 +passas passer VER 1495.48 1165.27 0.00 0.14 ind:pas:2s; +passation passation NOM f s 0.29 0.34 0.29 0.34 +passavant passavant NOM m s 0.44 0.00 0.44 0.00 +passe_boule passe_boule NOM m s 0.00 0.07 0.00 0.07 +passe_boules passe_boules NOM m 0.00 0.07 0.00 0.07 +passe_crassane passe_crassane NOM f 0.00 0.14 0.00 0.14 +passe_droit passe_droit NOM m s 0.25 0.47 0.08 0.27 +passe_droit passe_droit NOM m p 0.25 0.47 0.17 0.20 +passe_la_moi passe_la_moi NOM f s 0.35 0.07 0.35 0.07 +passe_lacet passe_lacet NOM m s 0.00 0.20 0.00 0.07 +passe_lacet passe_lacet NOM m p 0.00 0.20 0.00 0.14 +passe_montagne passe_montagne NOM m s 0.41 1.69 0.39 1.35 +passe_montagne passe_montagne NOM m p 0.41 1.69 0.02 0.34 +passe_muraille passe_muraille NOM m 0.01 0.07 0.01 0.07 +passe_partout passe_partout NOM m 0.45 1.22 0.45 1.22 +passe_passe passe_passe NOM m 0.97 1.15 0.97 1.15 +passe_pied passe_pied NOM m s 0.00 0.07 0.00 0.07 +passe_plat passe_plat NOM m s 0.04 0.14 0.04 0.14 +passe_rose passe_rose NOM f p 0.00 0.07 0.00 0.07 +passe_temps passe_temps NOM m 4.21 2.77 4.21 2.77 +passe passer VER 1495.48 1165.27 523.58 185.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +passement passement NOM m s 0.14 0.07 0.14 0.07 +passementaient passementer VER 0.01 0.20 0.00 0.14 ind:imp:3p; +passementent passementer VER 0.01 0.20 0.00 0.07 ind:pre:3p; +passementerie passementerie NOM f s 0.01 1.01 0.01 0.74 +passementeries passementerie NOM f p 0.01 1.01 0.00 0.27 +passementier passementier NOM m s 0.10 0.14 0.10 0.07 +passementière passementier NOM f s 0.10 0.14 0.00 0.07 +passementé passementer VER m s 0.01 0.20 0.01 0.00 par:pas; +passent passer VER 1495.48 1165.27 27.56 37.91 ind:pre:3p;sub:pre:3p; +passepoil passepoil NOM m s 0.01 0.14 0.01 0.14 +passeport passeport NOM m s 25.55 10.00 19.81 7.16 +passeports passeport NOM m p 25.55 10.00 5.75 2.84 +passer passer VER 1495.48 1165.27 345.67 288.78 inf;; +passera passer VER 1495.48 1165.27 39.92 13.99 ind:fut:3s; +passerai passer VER 1495.48 1165.27 15.96 4.39 ind:fut:1s; +passeraient passer VER 1495.48 1165.27 1.19 3.51 cnd:pre:3p; +passerais passer VER 1495.48 1165.27 3.77 2.91 cnd:pre:1s;cnd:pre:2s; +passerait passer VER 1495.48 1165.27 7.09 12.36 cnd:pre:3s; +passeras passer VER 1495.48 1165.27 4.39 1.15 ind:fut:2s; +passereau passereau NOM m s 0.55 0.95 0.25 0.34 +passereaux passereau NOM m p 0.55 0.95 0.30 0.61 +passerelle passerelle NOM f s 4.49 11.49 4.41 8.45 +passerelles passerelle NOM f p 4.49 11.49 0.09 3.04 +passerez passer VER 1495.48 1165.27 5.10 1.82 ind:fut:2p; +passeriez passer VER 1495.48 1165.27 0.97 0.20 cnd:pre:2p; +passerions passer VER 1495.48 1165.27 0.22 0.34 cnd:pre:1p; +passerons passer VER 1495.48 1165.27 2.32 2.30 ind:fut:1p; +passeront passer VER 1495.48 1165.27 3.58 1.96 ind:fut:3p; +passeroses passerose NOM f p 0.00 0.07 0.00 0.07 +passes passer VER 1495.48 1165.27 21.65 4.39 ind:pre:2s;sub:pre:2s; +passeur passeur NOM m s 2.24 2.77 1.65 1.96 +passeurs passeur NOM m p 2.24 2.77 0.56 0.74 +passeuse passeur NOM f s 2.24 2.77 0.04 0.07 +passez passer VER 1495.48 1165.27 52.84 6.62 imp:pre:2p;ind:pre:2p; +passible passible ADJ m s 1.04 0.61 0.82 0.34 +passibles passible ADJ m p 1.04 0.61 0.22 0.27 +passiez passer VER 1495.48 1165.27 2.19 1.08 ind:imp:2p;sub:pre:2p; +passif passif ADJ m s 4.00 7.23 1.89 1.82 +passiflore passiflore NOM f s 0.14 0.07 0.14 0.07 +passifs passif ADJ m p 4.00 7.23 0.36 0.74 +passim passim ADV 0.00 0.07 0.00 0.07 +passing passing NOM m s 0.04 0.00 0.04 0.00 +passion passion NOM f s 33.78 87.64 30.71 68.72 +passionna passionner VER 5.75 17.50 0.01 0.20 ind:pas:3s; +passionnai passionner VER 5.75 17.50 0.00 0.27 ind:pas:1s; +passionnaient passionner VER 5.75 17.50 0.12 0.27 ind:imp:3p; +passionnais passionner VER 5.75 17.50 0.00 0.34 ind:imp:1s;ind:imp:2s; +passionnait passionner VER 5.75 17.50 0.11 2.57 ind:imp:3s; +passionnant passionnant ADJ m s 8.93 7.03 6.17 4.19 +passionnante passionnant ADJ f s 8.93 7.03 2.23 1.42 +passionnantes passionnant ADJ f p 8.93 7.03 0.30 0.95 +passionnants passionnant ADJ m p 8.93 7.03 0.23 0.47 +passionne passionner VER 5.75 17.50 1.16 3.58 imp:pre:2s;ind:pre:1s;ind:pre:3s; +passionnel passionnel ADJ m s 1.43 3.92 1.05 1.89 +passionnelle passionnel ADJ f s 1.43 3.92 0.13 1.08 +passionnellement passionnellement ADV 0.00 0.07 0.00 0.07 +passionnelles passionnel ADJ f p 1.43 3.92 0.02 0.34 +passionnels passionnel ADJ m p 1.43 3.92 0.22 0.61 +passionnent passionner VER 5.75 17.50 0.34 0.68 ind:pre:3p; +passionner passionner VER 5.75 17.50 0.41 1.76 inf; +passionnera passionner VER 5.75 17.50 0.01 0.14 ind:fut:3s; +passionnerait passionner VER 5.75 17.50 0.03 0.07 cnd:pre:3s; +passionneras passionner VER 5.75 17.50 0.01 0.00 ind:fut:2s; +passionnons passionner VER 5.75 17.50 0.00 0.14 ind:pre:1p; +passionnèrent passionner VER 5.75 17.50 0.00 0.14 ind:pas:3p; +passionné passionner VER m s 5.75 17.50 1.84 3.58 par:pas; +passionnée passionné ADJ f s 4.14 14.80 1.44 5.74 +passionnées passionné ADJ f p 4.14 14.80 0.24 2.09 +passionnément passionnément ADV 1.38 9.39 1.38 9.39 +passionnés passionné ADJ m p 4.14 14.80 0.70 2.03 +passions passion NOM f p 33.78 87.64 3.07 18.92 +passive passif ADJ f s 4.00 7.23 1.73 4.32 +passivement passivement ADV 0.29 1.08 0.29 1.08 +passiver passiver VER 0.14 0.27 0.14 0.00 inf; +passives passif ADJ f p 4.00 7.23 0.03 0.34 +passiveté passiveté NOM f s 0.00 0.07 0.00 0.07 +passivité passivité NOM f s 0.46 3.38 0.46 3.38 +passoire passoire NOM f s 1.44 2.23 1.27 2.09 +passoires passoire NOM f p 1.44 2.23 0.17 0.14 +passâmes passer VER 1495.48 1165.27 0.46 3.85 ind:pas:1p; +passons passer VER 1495.48 1165.27 17.85 9.66 imp:pre:1p;ind:pre:1p; +passât passer VER 1495.48 1165.27 0.00 1.35 sub:imp:3s; +passâtes passer VER 1495.48 1165.27 0.00 0.07 ind:pas:2p; +passèrent passer VER 1495.48 1165.27 2.13 20.07 ind:pas:3p; +passé passer VER m s 1495.48 1165.27 297.63 157.09 par:pas;par:pas;par:pas;par:pas; +passée passer VER f s 1495.48 1165.27 32.14 25.68 par:pas; +passées passer VER f p 1495.48 1165.27 7.98 11.89 par:pas; +passéiste passéiste ADJ f s 0.16 0.07 0.16 0.07 +passés passer VER m p 1495.48 1165.27 18.16 18.18 par:pas; +past past NOM m s 0.58 0.00 0.58 0.00 +pastaga pastaga NOM m s 0.00 1.69 0.00 1.35 +pastagas pastaga NOM m p 0.00 1.69 0.00 0.34 +pastel pastel NOM m s 0.55 1.89 0.40 1.01 +pastels pastel NOM m p 0.55 1.89 0.14 0.88 +pastenague pastenague NOM f s 0.04 0.00 0.04 0.00 +pasteur pasteur NOM m s 17.74 11.35 16.61 10.07 +pasteurella pasteurella NOM f s 0.02 0.00 0.02 0.00 +pasteurisation pasteurisation NOM f s 0.10 0.14 0.10 0.14 +pasteuriser pasteuriser VER 0.00 0.07 0.00 0.07 inf; +pasteurisé pasteurisé ADJ m s 0.05 0.41 0.05 0.14 +pasteurisée pasteurisé ADJ f s 0.05 0.41 0.00 0.20 +pasteurisés pasteurisé ADJ m p 0.05 0.41 0.00 0.07 +pasteurs pasteur NOM m p 17.74 11.35 1.13 1.28 +pasticha pasticher VER 0.00 0.41 0.00 0.07 ind:pas:3s; +pastichai pasticher VER 0.00 0.41 0.00 0.07 ind:pas:1s; +pastichait pasticher VER 0.00 0.41 0.00 0.07 ind:imp:3s; +pastiche pastiche NOM m s 0.03 1.01 0.03 0.68 +pasticher pasticher VER 0.00 0.41 0.00 0.14 inf; +pastiches pastiche NOM m p 0.03 1.01 0.00 0.34 +pasticheur pasticheur NOM m s 0.00 0.14 0.00 0.14 +pastiché pasticher VER m s 0.00 0.41 0.00 0.07 par:pas; +pastille pastille NOM f s 1.51 5.81 0.56 1.35 +pastiller pastiller VER 0.01 0.00 0.01 0.00 inf; +pastilles pastille NOM f p 1.51 5.81 0.95 4.46 +pastis pastis NOM m 1.43 4.73 1.43 4.73 +pastophore pastophore NOM m s 0.00 0.14 0.00 0.14 +pastoral pastoral ADJ m s 0.57 1.08 0.14 0.27 +pastorale pastoral ADJ f s 0.57 1.08 0.33 0.54 +pastorales pastoral ADJ f p 0.57 1.08 0.10 0.20 +pastoraux pastoral ADJ m p 0.57 1.08 0.00 0.07 +pastour pastour NOM m s 0.00 0.07 0.00 0.07 +pastoureau pastoureau NOM m s 0.02 0.41 0.02 0.14 +pastoureaux pastoureau NOM m p 0.02 0.41 0.00 0.07 +pastourelle pastoureau NOM f s 0.02 0.41 0.00 0.07 +pastourelles pastoureau NOM f p 0.02 0.41 0.00 0.14 +pastèque pastèque NOM f s 4.16 2.50 2.39 1.62 +pastèques pastèque NOM f p 4.16 2.50 1.77 0.88 +pat pat ADJ m s 0.46 0.34 0.46 0.34 +patache patache NOM f s 0.30 0.20 0.30 0.20 +patachon patachon NOM m s 0.16 0.54 0.16 0.54 +patafiole patafioler VER 0.04 0.00 0.04 0.00 imp:pre:2s; +patagon patagon ADJ m s 0.01 0.07 0.01 0.07 +patagonien patagonien ADJ m s 0.02 0.07 0.02 0.07 +patagons patagon NOM m p 0.00 0.07 0.00 0.07 +patapouf patapouf ONO 0.03 0.00 0.03 0.00 +patapoufs patapouf NOM m p 0.17 0.34 0.00 0.07 +pataquès pataquès NOM m 0.02 0.34 0.02 0.34 +patarin patarin NOM m s 0.00 0.14 0.00 0.14 +patata patata ONO 0.32 1.15 0.32 1.15 +patate patate NOM f s 14.47 10.74 4.59 3.38 +patates patate NOM f p 14.47 10.74 9.88 7.36 +patati patati ONO 0.33 1.76 0.33 1.76 +patatras patatras ONO 0.04 0.54 0.04 0.54 +pataud pataud ADJ m s 0.03 1.35 0.01 0.34 +pataude pataud ADJ f s 0.03 1.35 0.01 0.41 +pataudes pataud ADJ f p 0.03 1.35 0.00 0.34 +patauds pataud ADJ m p 0.03 1.35 0.01 0.27 +pataugas pataugas NOM m 0.00 0.68 0.00 0.68 +patauge patauger VER 1.69 8.99 0.42 1.35 ind:pre:1s;ind:pre:3s; +pataugea patauger VER 1.69 8.99 0.00 0.41 ind:pas:3s; +pataugeaient patauger VER 1.69 8.99 0.01 0.81 ind:imp:3p; +pataugeais patauger VER 1.69 8.99 0.02 0.07 ind:imp:1s; +pataugeait patauger VER 1.69 8.99 0.18 0.74 ind:imp:3s; +pataugeant patauger VER 1.69 8.99 0.03 1.96 par:pre; +pataugent patauger VER 1.69 8.99 0.32 0.54 ind:pre:3p; +pataugeoire pataugeoire NOM f s 0.04 0.00 0.04 0.00 +pataugeons patauger VER 1.69 8.99 0.04 0.34 imp:pre:1p;ind:pre:1p; +patauger patauger VER 1.69 8.99 0.48 1.89 inf; +pataugera patauger VER 1.69 8.99 0.01 0.00 ind:fut:3s; +pataugerais patauger VER 1.69 8.99 0.01 0.00 cnd:pre:1s; +pataugerons patauger VER 1.69 8.99 0.00 0.07 ind:fut:1p; +patauges patauger VER 1.69 8.99 0.04 0.07 ind:pre:2s; +pataugez patauger VER 1.69 8.99 0.06 0.14 imp:pre:2p;ind:pre:2p; +pataugis pataugis NOM m 0.00 0.07 0.00 0.07 +pataugèrent patauger VER 1.69 8.99 0.00 0.14 ind:pas:3p; +pataugé patauger VER m s 1.69 8.99 0.05 0.47 par:pas; +patch patch NOM m s 1.11 0.14 0.88 0.07 +patches patch NOM m p 1.11 0.14 0.02 0.07 +patchouli patchouli NOM m s 0.31 0.20 0.31 0.20 +patchs patch NOM m p 1.11 0.14 0.22 0.00 +patchwork patchwork NOM m s 0.00 0.61 0.00 0.61 +patelin patelin NOM m s 1.62 3.51 1.56 3.31 +pateline patelin ADJ f s 0.63 0.47 0.01 0.07 +patelins patelin NOM m p 1.62 3.51 0.05 0.20 +patellaire patellaire ADJ m s 0.01 0.00 0.01 0.00 +patelles patelle NOM f p 0.00 0.27 0.00 0.27 +patenôtres patenôtre NOM f p 0.00 0.41 0.00 0.41 +patent patent ADJ m s 0.41 1.28 0.14 0.54 +patente patent ADJ f s 0.41 1.28 0.14 0.54 +patentes patente NOM f p 0.16 0.41 0.02 0.14 +patents patent ADJ m p 0.41 1.28 0.11 0.07 +patenté patenté ADJ m s 0.20 1.42 0.14 0.61 +patentée patenté ADJ f s 0.20 1.42 0.01 0.00 +patentées patenté ADJ f p 0.20 1.42 0.00 0.20 +patentés patenté ADJ m p 0.20 1.42 0.04 0.61 +pater_familias pater_familias NOM m 0.03 0.07 0.03 0.07 +pater_noster pater_noster NOM m s 0.10 0.41 0.10 0.41 +pater pater NOM m 0.56 1.62 0.56 1.62 +paternalisme paternalisme NOM m s 0.12 0.74 0.12 0.74 +paternaliste paternaliste ADJ s 0.17 0.27 0.16 0.20 +paternalistes paternaliste ADJ p 0.17 0.27 0.01 0.07 +paterne paterne ADJ m s 0.00 0.47 0.00 0.47 +paternel paternel ADJ m s 3.29 13.92 1.33 5.00 +paternelle paternel ADJ f s 3.29 13.92 1.48 6.82 +paternellement paternellement ADV 0.01 0.54 0.01 0.54 +paternelles paternel ADJ f p 3.29 13.92 0.16 0.88 +paternels paternel ADJ m p 3.29 13.92 0.32 1.22 +paternité paternité NOM f s 1.98 3.11 1.97 3.04 +paternités paternité NOM f p 1.98 3.11 0.01 0.07 +pathogène pathogène ADJ s 0.58 0.14 0.58 0.14 +pathogénique pathogénique ADJ m s 0.01 0.00 0.01 0.00 +pathologie pathologie NOM f s 1.58 0.20 1.58 0.20 +pathologique pathologique ADJ s 1.26 1.22 1.05 1.08 +pathologiquement pathologiquement ADV 0.08 0.14 0.08 0.14 +pathologiques pathologique ADJ m p 1.26 1.22 0.21 0.14 +pathologiste pathologiste NOM s 0.29 0.07 0.29 0.07 +pathos pathos NOM m 0.38 0.68 0.38 0.68 +pathétique pathétique ADJ s 9.17 11.08 7.92 8.18 +pathétiquement pathétiquement ADV 0.05 0.41 0.05 0.41 +pathétiques pathétique ADJ p 9.17 11.08 1.25 2.91 +pathétisme pathétisme NOM m s 0.01 0.14 0.01 0.14 +patibulaire patibulaire ADJ s 0.03 1.96 0.01 0.95 +patibulaires patibulaire ADJ p 0.03 1.96 0.02 1.01 +patiemment patiemment ADV 1.75 11.15 1.75 11.15 +patience patience NOM f s 30.68 33.58 29.93 32.97 +patiences patience NOM f p 30.68 33.58 0.75 0.61 +patient patient NOM m s 61.69 10.00 29.58 4.05 +patienta patienter VER 10.10 8.45 0.01 0.20 ind:pas:3s; +patientai patienter VER 10.10 8.45 0.00 0.07 ind:pas:1s; +patientaient patienter VER 10.10 8.45 0.00 0.34 ind:imp:3p; +patientait patienter VER 10.10 8.45 0.03 0.68 ind:imp:3s; +patientant patienter VER 10.10 8.45 0.01 0.07 par:pre; +patiente patient NOM f s 61.69 10.00 7.69 2.16 +patientent patienter VER 10.10 8.45 0.04 0.14 ind:pre:3p; +patienter patienter VER 10.10 8.45 4.71 4.66 inf; +patientera patienter VER 10.10 8.45 0.05 0.00 ind:fut:3s; +patienteraient patienter VER 10.10 8.45 0.00 0.07 cnd:pre:3p; +patienterait patienter VER 10.10 8.45 0.00 0.07 cnd:pre:3s; +patienteras patienter VER 10.10 8.45 0.00 0.07 ind:fut:2s; +patienterez patienter VER 10.10 8.45 0.23 0.07 ind:fut:2p; +patienterons patienter VER 10.10 8.45 0.01 0.00 ind:fut:1p; +patientes patient NOM f p 61.69 10.00 1.94 0.27 +patientez patienter VER 10.10 8.45 2.82 0.47 imp:pre:2p;ind:pre:2p; +patientions patienter VER 10.10 8.45 0.00 0.07 ind:imp:1p; +patientons patienter VER 10.10 8.45 0.14 0.07 imp:pre:1p;ind:pre:1p; +patients patient NOM m p 61.69 10.00 22.49 3.51 +patientèrent patienter VER 10.10 8.45 0.01 0.07 ind:pas:3p; +patienté patienter VER m s 10.10 8.45 0.54 0.27 par:pas; +patin patin NOM m s 3.77 5.61 1.12 1.35 +patina patiner VER 2.54 5.27 0.02 0.07 ind:pas:3s; +patinage patinage NOM m s 1.25 0.07 1.25 0.07 +patinaient patiner VER 2.54 5.27 0.00 0.34 ind:imp:3p; +patinais patiner VER 2.54 5.27 0.15 0.00 ind:imp:1s; +patinait patiner VER 2.54 5.27 0.06 0.74 ind:imp:3s; +patinant patiner VER 2.54 5.27 0.01 0.20 par:pre; +patine patiner VER 2.54 5.27 0.36 0.34 ind:pre:1s;ind:pre:3s; +patinent patiner VER 2.54 5.27 0.16 0.41 ind:pre:3p; +patiner patiner VER 2.54 5.27 1.26 0.27 inf; +patinerais patiner VER 2.54 5.27 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +patinerons patiner VER 2.54 5.27 0.00 0.07 ind:fut:1p; +patines patiner VER 2.54 5.27 0.03 0.00 ind:pre:2s; +patinette patinette NOM f s 0.02 0.27 0.01 0.20 +patinettes patinette NOM f p 0.02 0.27 0.01 0.07 +patineur patineur NOM m s 0.67 1.28 0.11 0.34 +patineurs patineur NOM m p 0.67 1.28 0.27 0.74 +patineuse patineur NOM f s 0.67 1.28 0.29 0.14 +patineuses patineuse NOM f p 0.16 0.00 0.16 0.00 +patinez patiner VER 2.54 5.27 0.10 0.00 imp:pre:2p;ind:pre:2p; +patiniez patiner VER 2.54 5.27 0.02 0.00 ind:imp:2p; +patinions patiner VER 2.54 5.27 0.00 0.07 ind:imp:1p; +patinoire patinoire NOM f s 1.37 0.41 1.21 0.41 +patinoires patinoire NOM f p 1.37 0.41 0.16 0.00 +patinons patiner VER 2.54 5.27 0.03 0.00 imp:pre:1p;ind:pre:1p; +patins patin NOM m p 3.77 5.61 2.65 4.26 +patiné patiner VER m s 2.54 5.27 0.27 1.01 par:pas; +patinée patiner VER f s 2.54 5.27 0.01 0.54 par:pas; +patinées patiner VER f p 2.54 5.27 0.02 0.68 par:pas; +patinés patiner VER m p 2.54 5.27 0.01 0.54 par:pas; +patio patio NOM m s 2.02 6.42 2.02 4.46 +patios patio NOM m p 2.02 6.42 0.00 1.96 +patoche patoche NOM f s 0.01 0.14 0.01 0.07 +patoches patoche NOM f p 0.01 0.14 0.00 0.07 +patois patois NOM m 0.85 8.58 0.85 8.58 +patoisante patoisant ADJ f s 0.00 0.14 0.00 0.14 +patoise patoiser VER 0.00 0.07 0.00 0.07 ind:pre:3s; +patouillard patouillard NOM m s 0.00 0.07 0.00 0.07 +patouille patouiller VER 0.03 0.14 0.03 0.07 imp:pre:2s;ind:pre:3s; +patouillons patouiller VER 0.03 0.14 0.00 0.07 ind:pre:1p; +patraque patraque ADJ s 0.97 0.81 0.97 0.81 +patri patri ADV 0.15 0.07 0.15 0.07 +patriarcal patriarcal ADJ m s 0.34 1.01 0.04 0.41 +patriarcale patriarcal ADJ f s 0.34 1.01 0.29 0.27 +patriarcales patriarcal ADJ f p 0.34 1.01 0.01 0.20 +patriarcat patriarcat NOM m s 0.15 0.34 0.15 0.27 +patriarcats patriarcat NOM m p 0.15 0.34 0.00 0.07 +patriarcaux patriarcal ADJ m p 0.34 1.01 0.00 0.14 +patriarche patriarche NOM m s 1.30 4.59 1.04 4.12 +patriarches patriarche NOM m p 1.30 4.59 0.26 0.47 +patriarchie patriarchie NOM f s 0.02 0.00 0.02 0.00 +patriciat patriciat NOM m s 0.00 0.07 0.00 0.07 +patricien patricien NOM m s 0.21 0.54 0.05 0.20 +patricienne patricien NOM f s 0.21 0.54 0.10 0.00 +patriciennes patricien ADJ f p 0.05 0.88 0.01 0.34 +patriciens patricien NOM m p 0.21 0.54 0.06 0.27 +patrie patrie NOM f s 23.36 29.19 23.36 28.65 +patries patrie NOM f p 23.36 29.19 0.00 0.54 +patrilinéaire patrilinéaire ADJ f s 0.00 0.07 0.00 0.07 +patrimoine patrimoine NOM m s 2.34 2.97 2.19 2.91 +patrimoines patrimoine NOM m p 2.34 2.97 0.15 0.07 +patrimonial patrimonial ADJ m s 0.00 0.34 0.00 0.34 +patriotard patriotard ADJ m s 0.00 0.34 0.00 0.27 +patriotardes patriotard ADJ f p 0.00 0.34 0.00 0.07 +patriotards patriotard NOM m p 0.00 0.07 0.00 0.07 +patriote patriote NOM s 3.29 5.47 1.96 1.76 +patriotes patriote NOM p 3.29 5.47 1.33 3.72 +patriotique patriotique ADJ s 1.95 5.34 1.73 3.31 +patriotiquement patriotiquement ADV 0.00 0.07 0.00 0.07 +patriotiques patriotique ADJ p 1.95 5.34 0.21 2.03 +patriotisme patriotisme NOM m s 2.54 3.65 2.54 3.65 +patron patron NOM m s 141.18 132.03 122.44 93.85 +patronage patronage NOM m s 0.07 2.43 0.07 1.96 +patronages patronage NOM m p 0.07 2.43 0.00 0.47 +patronal patronal ADJ m s 0.30 0.61 0.01 0.07 +patronale patronal ADJ f s 0.30 0.61 0.14 0.20 +patronales patronal ADJ f p 0.30 0.61 0.14 0.20 +patronat patronat NOM m s 0.51 0.47 0.51 0.47 +patronaux patronal ADJ m p 0.30 0.61 0.02 0.14 +patronna patronner VER 0.16 0.81 0.01 0.00 ind:pas:3s; +patronne patron NOM f s 141.18 132.03 11.23 26.82 +patronner patronner VER 0.16 0.81 0.00 0.14 inf; +patronnes patronne NOM f p 0.26 0.00 0.26 0.00 +patronnesse patronnesse ADJ f s 0.22 0.95 0.14 0.61 +patronnesses patronnesse ADJ f p 0.22 0.95 0.07 0.34 +patronné patronner VER m s 0.16 0.81 0.03 0.14 par:pas; +patronnée patronner VER f s 0.16 0.81 0.03 0.07 par:pas; +patronnés patronner VER m p 0.16 0.81 0.00 0.07 par:pas; +patrons patron NOM m p 141.18 132.03 7.50 10.88 +patronyme patronyme NOM m s 0.28 3.24 0.25 2.50 +patronymes patronyme NOM m p 0.28 3.24 0.03 0.74 +patronymique patronymique ADJ m s 0.20 0.20 0.20 0.07 +patronymiques patronymique ADJ m p 0.20 0.20 0.00 0.14 +patrouilla patrouiller VER 2.54 2.97 0.00 0.14 ind:pas:3s; +patrouillaient patrouiller VER 2.54 2.97 0.14 0.95 ind:imp:3p; +patrouillais patrouiller VER 2.54 2.97 0.08 0.00 ind:imp:1s; +patrouillait patrouiller VER 2.54 2.97 0.12 0.41 ind:imp:3s; +patrouillant patrouiller VER 2.54 2.97 0.09 0.34 par:pre; +patrouille patrouille NOM f s 14.45 10.47 10.83 6.42 +patrouillent patrouiller VER 2.54 2.97 0.28 0.27 ind:pre:3p; +patrouiller patrouiller VER 2.54 2.97 1.02 0.41 inf; +patrouillerai patrouiller VER 2.54 2.97 0.03 0.00 ind:fut:1s; +patrouilleras patrouiller VER 2.54 2.97 0.01 0.00 ind:fut:2s; +patrouillerez patrouiller VER 2.54 2.97 0.02 0.00 ind:fut:2p; +patrouilleront patrouiller VER 2.54 2.97 0.01 0.00 ind:fut:3p; +patrouilles patrouille NOM f p 14.45 10.47 3.61 4.05 +patrouilleur patrouilleur NOM m s 1.43 0.47 1.15 0.07 +patrouilleurs patrouilleur NOM m p 1.43 0.47 0.28 0.41 +patrouillez patrouiller VER 2.54 2.97 0.12 0.00 imp:pre:2p;ind:pre:2p; +patrouilliez patrouiller VER 2.54 2.97 0.04 0.00 ind:imp:2p; +patrouillions patrouiller VER 2.54 2.97 0.01 0.00 ind:imp:1p; +patrouillé patrouiller VER m s 2.54 2.97 0.12 0.07 par:pas; +patrouillée patrouiller VER f s 2.54 2.97 0.02 0.00 par:pas; +patrouillées patrouiller VER f p 2.54 2.97 0.02 0.14 par:pas; +patte patte NOM f s 34.60 85.14 6.45 21.28 +pattemouille pattemouille NOM f s 0.14 0.41 0.14 0.34 +pattemouilles pattemouille NOM f p 0.14 0.41 0.00 0.07 +pattern pattern NOM m s 0.06 0.00 0.06 0.00 +pattes patte NOM f p 34.60 85.14 28.16 63.85 +patène patène NOM f s 0.10 0.34 0.10 0.27 +patènes patène NOM f p 0.10 0.34 0.00 0.07 +patère patère NOM f s 0.08 1.76 0.08 1.08 +patères patère NOM f p 0.08 1.76 0.00 0.68 +pattu pattu ADJ m s 0.00 0.14 0.00 0.07 +pattée patté ADJ f s 0.00 0.14 0.00 0.14 +pattus pattu ADJ m p 0.00 0.14 0.00 0.07 +paturon paturon NOM m s 0.00 1.42 0.00 0.41 +paturons paturon NOM m p 0.00 1.42 0.00 1.01 +pauchouse pauchouse NOM f s 0.00 0.20 0.00 0.20 +pauline pauline NOM f s 0.00 0.07 0.00 0.07 +paulinienne paulinien ADJ f s 0.00 0.07 0.00 0.07 +paulownias paulownia NOM m p 0.00 0.07 0.00 0.07 +pauma paumer VER 4.27 8.92 0.00 0.14 ind:pas:3s; +paumais paumer VER 4.27 8.92 0.00 0.20 ind:imp:1s; +paumait paumer VER 4.27 8.92 0.00 0.20 ind:imp:3s; +paumant paumer VER 4.27 8.92 0.00 0.34 par:pre; +paume paume NOM f s 3.17 35.47 2.18 22.57 +paumelle paumelle NOM f s 0.00 0.14 0.00 0.07 +paumelles paumelle NOM f p 0.00 0.14 0.00 0.07 +paument paumer VER 4.27 8.92 0.01 0.20 ind:pre:3p; +paumer paumer VER 4.27 8.92 0.38 1.82 inf; +paumes paume NOM f p 3.17 35.47 0.99 12.91 +paumé paumer VER m s 4.27 8.92 2.58 2.97 par:pas; +paumée paumer VER f s 4.27 8.92 0.46 0.61 par:pas; +paumées paumé ADJ f p 2.46 2.84 0.02 0.27 +paumés paumé NOM m p 2.23 5.54 0.90 2.23 +paupiette paupiette NOM f s 0.19 0.07 0.02 0.00 +paupiettes paupiette NOM f p 0.19 0.07 0.17 0.07 +paupière paupière NOM f s 4.75 63.45 0.97 7.03 +paupières paupière NOM f p 4.75 63.45 3.77 56.42 +paupérisation paupérisation NOM f s 0.00 0.27 0.00 0.27 +paupérise paupériser VER 0.00 0.07 0.00 0.07 ind:pre:3s; +paupérisme paupérisme NOM m s 0.00 0.20 0.00 0.20 +pause_café pause_café NOM f s 0.29 0.14 0.26 0.07 +pause pause NOM f s 28.24 11.89 27.30 10.14 +pauser pauser VER 0.02 0.07 0.01 0.07 inf; +pause_café pause_café NOM f p 0.29 0.14 0.03 0.07 +pauses_repas pauses_repas NOM f p 0.01 0.07 0.01 0.07 +pauses pause NOM f p 28.24 11.89 0.94 1.76 +pausez pauser VER 0.02 0.07 0.01 0.00 imp:pre:2p; +pauvre pauvre ADJ s 178.03 187.77 148.93 148.78 +pauvrement pauvrement ADV 0.31 1.89 0.31 1.89 +pauvres pauvre ADJ p 178.03 187.77 29.09 38.99 +pauvresse pauvresse NOM f s 0.34 0.54 0.23 0.47 +pauvresses pauvresse NOM f p 0.34 0.54 0.11 0.07 +pauvret pauvret NOM m s 0.05 0.41 0.05 0.14 +pauvrets pauvret NOM m p 0.05 0.41 0.00 0.27 +pauvrette pauvrette NOM f s 1.16 0.95 1.16 0.81 +pauvrettes pauvrette NOM f p 1.16 0.95 0.00 0.14 +pauvreté pauvreté NOM f s 7.04 10.27 7.04 10.14 +pauvretés pauvreté NOM f p 7.04 10.27 0.00 0.14 +pavage pavage NOM m s 0.04 1.42 0.04 1.42 +pavait paver VER 0.33 1.01 0.00 0.07 ind:imp:3s; +pavana pavaner VER 1.53 2.23 0.00 0.14 ind:pas:3s; +pavanaient pavaner VER 1.53 2.23 0.03 0.41 ind:imp:3p; +pavanait pavaner VER 1.53 2.23 0.09 0.54 ind:imp:3s; +pavanant pavaner VER 1.53 2.23 0.10 0.27 par:pre; +pavane pavaner VER 1.53 2.23 0.47 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pavanent pavaner VER 1.53 2.23 0.07 0.14 ind:pre:3p; +pavaner pavaner VER 1.53 2.23 0.65 0.34 inf; +pavanera pavaner VER 1.53 2.23 0.01 0.00 ind:fut:3s; +pavanerez pavaner VER 1.53 2.23 0.01 0.07 ind:fut:2p; +pavanes pavaner VER 1.53 2.23 0.08 0.00 ind:pre:2s; +pavanons pavaner VER 1.53 2.23 0.00 0.07 ind:pre:1p; +pavané pavaner VER m s 1.53 2.23 0.03 0.00 par:pas; +pave paver VER 0.33 1.01 0.14 0.14 ind:pre:1s;ind:pre:3s; +pavement pavement NOM m s 0.00 1.76 0.00 1.28 +pavements pavement NOM m p 0.00 1.76 0.00 0.47 +paver paver VER 0.33 1.01 0.06 0.07 inf; +paveton paveton NOM m s 0.00 0.47 0.00 0.34 +pavetons paveton NOM m p 0.00 0.47 0.00 0.14 +paveur paveur NOM m s 0.00 0.20 0.00 0.14 +paveurs paveur NOM m p 0.00 0.20 0.00 0.07 +pavez paver VER 0.33 1.01 0.02 0.07 imp:pre:2p; +pavillon pavillon NOM m s 5.95 25.61 5.39 20.07 +pavillonnaire pavillonnaire ADJ s 0.03 0.20 0.03 0.14 +pavillonnaires pavillonnaire ADJ m p 0.03 0.20 0.00 0.07 +pavillons pavillon NOM m p 5.95 25.61 0.56 5.54 +pavlovien pavlovien ADJ m s 0.08 0.27 0.05 0.27 +pavlovienne pavlovien ADJ f s 0.08 0.27 0.03 0.00 +pavois pavois NOM m 0.01 1.49 0.01 1.49 +pavoisa pavoiser VER 0.38 3.65 0.00 0.14 ind:pas:3s; +pavoisaient pavoiser VER 0.38 3.65 0.00 0.07 ind:imp:3p; +pavoisait pavoiser VER 0.38 3.65 0.14 0.07 ind:imp:3s; +pavoise pavoiser VER 0.38 3.65 0.03 0.34 imp:pre:2s;ind:pre:3s; +pavoisement pavoisement NOM m s 0.00 0.07 0.00 0.07 +pavoisent pavoiser VER 0.38 3.65 0.03 0.54 ind:pre:3p; +pavoiser pavoiser VER 0.38 3.65 0.17 0.61 inf; +pavoisera pavoiser VER 0.38 3.65 0.01 0.00 ind:fut:3s; +pavoiseraient pavoiser VER 0.38 3.65 0.00 0.07 cnd:pre:3p; +pavoisé pavoiser VER m s 0.38 3.65 0.00 0.54 par:pas; +pavoisée pavoiser VER f s 0.38 3.65 0.00 0.61 par:pas; +pavoisées pavoiser VER f p 0.38 3.65 0.00 0.27 par:pas; +pavoisés pavoiser VER m p 0.38 3.65 0.00 0.41 par:pas; +pavot pavot NOM m s 0.85 1.49 0.74 1.15 +pavots pavot NOM m p 0.85 1.49 0.11 0.34 +pavé pavé NOM m s 3.00 26.62 2.08 13.24 +pavée pavé ADJ f s 0.92 5.68 0.33 3.51 +pavées pavé ADJ f p 0.92 5.68 0.17 0.74 +pavés pavé NOM m p 3.00 26.62 0.92 13.38 +pax_americana pax_americana NOM f 0.01 0.00 0.01 0.00 +paxon paxon NOM m s 0.07 0.07 0.07 0.07 +paya payer VER 416.67 150.20 0.76 5.14 ind:pas:3s; +payable payable ADJ s 0.74 0.61 0.58 0.34 +payables payable ADJ m p 0.74 0.61 0.16 0.27 +payai payer VER 416.67 150.20 0.01 0.41 ind:pas:1s; +payaient payer VER 416.67 150.20 0.66 2.50 ind:imp:3p; +payais payer VER 416.67 150.20 1.07 1.08 ind:imp:1s;ind:imp:2s; +payait payer VER 416.67 150.20 5.12 8.85 ind:imp:3s; +payant payant ADJ m s 2.09 2.03 1.23 0.74 +payante payant ADJ f s 2.09 2.03 0.39 0.74 +payantes payant ADJ f p 2.09 2.03 0.19 0.34 +payants payant ADJ m p 2.09 2.03 0.28 0.20 +payassent payer VER 416.67 150.20 0.00 0.07 sub:imp:3p; +payassiez payer VER 416.67 150.20 0.00 0.07 sub:imp:2p; +paye payer VER 416.67 150.20 29.91 10.34 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +payement payement NOM m s 0.06 0.34 0.03 0.34 +payements payement NOM m p 0.06 0.34 0.03 0.00 +payent payer VER 416.67 150.20 4.30 1.35 ind:pre:3p; +payer payer VER 416.67 150.20 149.10 58.31 inf;;inf;;inf;; +payera payer VER 416.67 150.20 2.24 0.20 ind:fut:3s; +payerai payer VER 416.67 150.20 2.40 0.34 ind:fut:1s; +payeraient payer VER 416.67 150.20 0.10 0.14 cnd:pre:3p; +payerais payer VER 416.67 150.20 0.33 0.34 cnd:pre:1s;cnd:pre:2s; +payerait payer VER 416.67 150.20 0.20 0.47 cnd:pre:3s; +payeras payer VER 416.67 150.20 0.37 0.34 ind:fut:2s; +payerez payer VER 416.67 150.20 1.49 0.20 ind:fut:2p; +payeriez payer VER 416.67 150.20 0.10 0.07 cnd:pre:2p; +payerons payer VER 416.67 150.20 0.58 0.14 ind:fut:1p; +payeront payer VER 416.67 150.20 0.55 0.14 ind:fut:3p; +payes payer VER 416.67 150.20 4.59 1.15 ind:pre:2s;sub:pre:2s; +payeur payeur NOM m s 0.21 0.27 0.07 0.14 +payeurs payeur NOM m p 0.21 0.27 0.14 0.14 +payez payer VER 416.67 150.20 13.15 1.01 imp:pre:2p;ind:pre:2p; +payiez payer VER 416.67 150.20 0.55 0.00 ind:imp:2p; +payions payer VER 416.67 150.20 0.03 0.07 ind:imp:1p; +payâmes payer VER 416.67 150.20 0.00 0.07 ind:pas:1p; +payons payer VER 416.67 150.20 1.68 0.74 imp:pre:1p;ind:pre:1p; +payât payer VER 416.67 150.20 0.00 0.34 sub:imp:3s; +pays pays NOM m 202.57 241.55 202.57 241.55 +paysage paysage NOM m s 13.19 64.12 10.57 50.47 +paysager paysager ADJ m s 0.06 0.07 0.06 0.07 +paysages paysage NOM m p 13.19 64.12 2.62 13.65 +paysagiste paysagiste NOM s 0.73 0.68 0.66 0.61 +paysagistes paysagiste NOM p 0.73 0.68 0.08 0.07 +paysagé paysagé ADJ m s 0.00 0.47 0.00 0.41 +paysagés paysagé ADJ m p 0.00 0.47 0.00 0.07 +paysan paysan NOM m s 22.34 57.30 9.06 17.77 +paysanne paysan NOM f s 22.34 57.30 2.66 6.82 +paysannerie paysannerie NOM f s 0.23 0.54 0.23 0.54 +paysannes paysanne NOM f p 0.95 0.00 0.95 0.00 +paysans paysan NOM m p 22.34 57.30 10.62 29.80 +payse payse NOM m 0.01 0.07 0.01 0.07 +payèrent payer VER 416.67 150.20 0.11 0.41 ind:pas:3p; +payé payer VER m s 416.67 150.20 66.22 23.24 par:pas; +payée payer VER f s 416.67 150.20 9.16 2.91 par:pas; +payées payer VER f p 416.67 150.20 1.53 1.01 par:pas; +payés payer VER m p 416.67 150.20 5.56 3.31 par:pas; +pc pc NOM m 0.16 0.00 0.16 0.00 +pchitt pchitt ONO 0.00 0.20 0.00 0.20 +peanuts peanuts NOM m p 0.07 0.07 0.07 0.07 +peau_rouge peau_rouge NOM s 0.51 0.54 0.49 0.27 +peau peau NOM f s 87.47 187.77 83.83 174.26 +peaucier peaucier NOM m s 0.00 0.14 0.00 0.07 +peauciers peaucier NOM m p 0.00 0.14 0.00 0.07 +peaufina peaufiner VER 0.67 1.08 0.00 0.14 ind:pas:3s; +peaufinage peaufinage NOM m s 0.01 0.00 0.01 0.00 +peaufinait peaufiner VER 0.67 1.08 0.03 0.20 ind:imp:3s; +peaufinant peaufiner VER 0.67 1.08 0.00 0.07 par:pre; +peaufiner peaufiner VER 0.67 1.08 0.44 0.34 inf; +peaufiné peaufiner VER m s 0.67 1.08 0.20 0.20 par:pas; +peaufinée peaufiner VER f s 0.67 1.08 0.00 0.07 par:pas; +peaufinés peaufiner VER m p 0.67 1.08 0.00 0.07 par:pas; +peausserie peausserie NOM f s 0.00 0.27 0.00 0.14 +peausseries peausserie NOM f p 0.00 0.27 0.00 0.14 +peaussier peaussier NOM m s 0.01 0.07 0.01 0.07 +peau_rouge peau_rouge NOM p 0.51 0.54 0.02 0.27 +peaux peau NOM f p 87.47 187.77 3.63 13.51 +pec pec ADJ m s 0.01 0.00 0.01 0.00 +peccable peccable ADJ m s 0.01 0.00 0.01 0.00 +peccadille peccadille NOM f s 0.08 1.08 0.04 0.34 +peccadilles peccadille NOM f p 0.08 1.08 0.04 0.74 +peccata peccata NOM m s 0.20 0.00 0.20 0.00 +peccavi peccavi NOM m s 0.10 0.14 0.10 0.14 +pecnots pecnot NOM m p 0.03 0.00 0.03 0.00 +pecorino pecorino NOM m s 0.25 0.00 0.25 0.00 +pectoral pectoral ADJ m s 0.19 1.08 0.07 0.00 +pectorale pectoral ADJ f s 0.19 1.08 0.04 0.27 +pectorales pectoral ADJ f p 0.19 1.08 0.03 0.41 +pectoraux pectoral NOM m p 0.70 2.09 0.66 1.76 +pedigree pedigree NOM m s 0.67 1.82 0.65 1.76 +pedigrees pedigree NOM m p 0.67 1.82 0.02 0.07 +pedzouille pedzouille NOM m s 0.04 0.54 0.04 0.41 +pedzouilles pedzouille NOM m p 0.04 0.54 0.00 0.14 +peeling peeling NOM m s 0.14 0.00 0.14 0.00 +peignît peindre VER 36.05 80.27 0.00 0.07 sub:imp:3s; +peigna peigner VER 2.25 4.39 0.00 0.41 ind:pas:3s; +peignaient peindre VER 36.05 80.27 0.16 0.88 ind:imp:3p; +peignais peindre VER 36.05 80.27 0.35 1.42 ind:imp:1s; +peignait peindre VER 36.05 80.27 1.61 4.86 ind:imp:3s; +peignant peindre VER 36.05 80.27 0.51 1.55 par:pre; +peigne_cul peigne_cul NOM m s 0.23 0.34 0.07 0.27 +peigne_cul peigne_cul NOM m p 0.23 0.34 0.17 0.07 +peigne_zizi peigne_zizi NOM s 0.00 0.07 0.00 0.07 +peigne peigne NOM m s 6.81 10.81 6.07 8.85 +peignent peindre VER 36.05 80.27 0.43 0.81 ind:pre:3p;sub:pre:3p; +peigner peigner VER 2.25 4.39 0.85 1.28 inf; +peignerais peigner VER 2.25 4.39 0.00 0.07 cnd:pre:2s; +peignerait peigner VER 2.25 4.39 0.00 0.07 cnd:pre:3s; +peignes peigne NOM m p 6.81 10.81 0.74 1.96 +peignez peindre VER 36.05 80.27 0.57 0.20 imp:pre:2p;ind:pre:2p; +peigniez peigner VER 2.25 4.39 0.03 0.00 ind:imp:2p; +peignions peigner VER 2.25 4.39 0.00 0.20 ind:imp:1p; +peignis peindre VER 36.05 80.27 0.00 1.22 ind:pas:1s; +peignit peindre VER 36.05 80.27 0.14 1.82 ind:pas:3s; +peignoir peignoir NOM m s 6.65 16.96 5.94 14.73 +peignoirs peignoir NOM m p 6.65 16.96 0.72 2.23 +peignons peindre VER 36.05 80.27 0.18 0.00 imp:pre:1p;ind:pre:1p; +peigné peigner VER m s 2.25 4.39 0.08 0.41 par:pas; +peignée peignée NOM f s 0.17 1.49 0.17 1.22 +peignées peignée NOM f p 0.17 1.49 0.00 0.27 +peignés peigné ADJ m p 0.06 1.89 0.02 1.01 +peina peiner VER 7.65 12.36 0.00 0.14 ind:pas:3s; +peinaient peiner VER 7.65 12.36 0.01 0.61 ind:imp:3p; +peinais peiner VER 7.65 12.36 0.02 0.07 ind:imp:1s; +peinait peiner VER 7.65 12.36 0.03 2.43 ind:imp:3s; +peinant peiner VER 7.65 12.36 0.15 0.68 par:pre; +peinard peinard ADJ m s 3.92 9.59 2.91 5.88 +peinarde peinard ADJ f s 3.92 9.59 0.33 1.35 +peinardement peinardement ADV 0.00 0.20 0.00 0.20 +peinardes peinard ADJ f p 3.92 9.59 0.02 0.20 +peinards peinard ADJ m p 3.92 9.59 0.67 2.16 +peindra peindre VER 36.05 80.27 0.19 0.07 ind:fut:3s; +peindrai peindre VER 36.05 80.27 0.51 0.34 ind:fut:1s; +peindrais peindre VER 36.05 80.27 0.06 0.27 cnd:pre:1s;cnd:pre:2s; +peindrait peindre VER 36.05 80.27 0.16 0.34 cnd:pre:3s; +peindras peindre VER 36.05 80.27 0.17 0.14 ind:fut:2s; +peindre peindre VER 36.05 80.27 12.75 22.64 inf;; +peine peine NOM f s 199.75 399.53 193.42 388.24 +peinent peiner VER 7.65 12.36 0.54 0.27 ind:pre:3p; +peiner peiner VER 7.65 12.36 0.45 2.36 ind:pre:2p;inf; +peinera peiner VER 7.65 12.36 0.14 0.07 ind:fut:3s; +peinerait peiner VER 7.65 12.36 0.18 0.00 cnd:pre:3s; +peinerez peiner VER 7.65 12.36 0.01 0.00 ind:fut:2p; +peines peine NOM f p 199.75 399.53 6.34 11.28 +peineuse peineuse ADJ m s 0.00 0.07 0.00 0.07 +peinez peiner VER 7.65 12.36 0.54 0.07 imp:pre:2p;ind:pre:2p; +peinions peiner VER 7.65 12.36 0.00 0.07 ind:imp:1p; +peinons peiner VER 7.65 12.36 0.14 0.07 ind:pre:1p; +peinât peiner VER 7.65 12.36 0.00 0.07 sub:imp:3s; +peins peindre VER 36.05 80.27 3.77 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s; +peint peindre VER m s 36.05 80.27 11.95 17.84 ind:pre:3s;par:pas;par:pas; +peinte peindre VER f s 36.05 80.27 0.95 9.53 par:pas; +peintes peindre VER f p 36.05 80.27 0.61 5.95 par:pas; +peinèrent peiner VER 7.65 12.36 0.00 0.07 ind:pas:3p; +peintre peintre NOM s 17.02 45.07 13.60 31.22 +peintres peintre NOM p 17.02 45.07 3.42 13.85 +peints peindre VER m p 36.05 80.27 1.00 7.64 par:pas; +peinture peinture NOM f s 29.53 67.64 25.83 59.39 +peintures peinture NOM f p 29.53 67.64 3.70 8.24 +peinturlure peinturlurer VER 0.47 2.23 0.14 0.00 ind:pre:1s;ind:pre:3s; +peinturlurent peinturlurer VER 0.47 2.23 0.00 0.07 ind:pre:3p; +peinturlurer peinturlurer VER 0.47 2.23 0.11 0.41 inf; +peinturlures peinturlurer VER 0.47 2.23 0.00 0.07 ind:pre:2s; +peinturlureur peinturlureur NOM m s 0.00 0.14 0.00 0.07 +peinturlureurs peinturlureur NOM m p 0.00 0.14 0.00 0.07 +peinturluré peinturlurer VER m s 0.47 2.23 0.12 0.74 par:pas; +peinturlurée peinturlurer VER f s 0.47 2.23 0.02 0.47 par:pas; +peinturlurées peinturlurer VER f p 0.47 2.23 0.03 0.14 par:pas; +peinturlurés peinturlurer VER m p 0.47 2.23 0.05 0.34 par:pas; +peinturé peinturer VER m s 0.02 0.20 0.02 0.14 par:pas; +peinturée peinturer VER f s 0.02 0.20 0.00 0.07 par:pas; +peiné peiner VER m s 7.65 12.36 1.68 2.50 par:pas; +peinée peiner VER f s 7.65 12.36 0.14 0.74 par:pas; +peinées peiner VER f p 7.65 12.36 0.11 0.00 par:pas; +peinés peiner VER m p 7.65 12.36 0.22 0.20 par:pas; +pela peler VER 1.78 4.93 0.00 0.20 ind:pas:3s; +pelade pelade NOM f s 0.16 0.47 0.16 0.41 +pelades pelade NOM f p 0.16 0.47 0.00 0.07 +pelage pelage NOM m s 0.44 6.01 0.44 5.74 +pelages pelage NOM m p 0.44 6.01 0.00 0.27 +pelaient peler VER 1.78 4.93 0.00 0.07 ind:imp:3p; +pelait peler VER 1.78 4.93 0.01 0.41 ind:imp:3s; +pelant peler VER 1.78 4.93 0.00 0.27 par:pre; +peler peler VER 1.78 4.93 0.44 1.22 inf; +pelisse pelisse NOM f s 0.11 3.51 0.11 2.84 +pelisses pelisse NOM f p 0.11 3.51 0.00 0.68 +pellagre pellagre NOM f s 0.04 0.00 0.04 0.00 +pelle_bêche pelle_bêche NOM f s 0.00 0.14 0.00 0.07 +pelle_pioche pelle_pioche NOM f s 0.00 0.41 0.00 0.07 +pelle pelle NOM f s 10.10 15.61 8.75 11.35 +pelle_bêche pelle_bêche NOM f p 0.00 0.14 0.00 0.07 +pelle_pioche pelle_pioche NOM f p 0.00 0.41 0.00 0.34 +pelles pelle NOM f p 10.10 15.61 1.35 4.26 +pelletage pelletage NOM m s 0.02 0.00 0.02 0.00 +pelletaient pelleter VER 0.27 0.95 0.00 0.14 ind:imp:3p; +pelletait pelleter VER 0.27 0.95 0.00 0.27 ind:imp:3s; +pelletant pelleter VER 0.27 0.95 0.00 0.14 par:pre; +pelleter pelleter VER 0.27 0.95 0.27 0.34 inf; +pelleterie pelleterie NOM f s 0.00 0.07 0.00 0.07 +pelleteur pelleteur NOM m s 0.44 0.27 0.04 0.00 +pelleteuse pelleteur NOM f s 0.44 0.27 0.40 0.14 +pelleteuses pelleteuse NOM f p 0.02 0.00 0.02 0.00 +pelletiers pelletier NOM m p 0.02 0.14 0.02 0.14 +pellette pelleter VER 0.27 0.95 0.00 0.07 ind:pre:3s; +pelletée pelletée NOM f s 0.31 2.03 0.29 0.47 +pelletées pelletée NOM f p 0.31 2.03 0.02 1.55 +pelliculages pelliculage NOM m p 0.00 0.07 0.00 0.07 +pelliculaire pelliculaire ADJ f s 0.00 0.07 0.00 0.07 +pellicule pellicule NOM f s 7.52 6.82 6.29 5.68 +pellicules pellicule NOM f p 7.52 6.82 1.23 1.15 +pelliculé pelliculer VER m s 0.00 0.14 0.00 0.07 par:pas; +pelliculée pelliculer VER f s 0.00 0.14 0.00 0.07 par:pas; +pelloche pelloche NOM f s 0.10 0.20 0.10 0.20 +pelota peloter VER 5.36 3.38 0.10 0.14 ind:pas:3s; +pelotage pelotage NOM m s 0.21 0.61 0.19 0.34 +pelotages pelotage NOM m p 0.21 0.61 0.02 0.27 +pelotaient peloter VER 5.36 3.38 0.03 0.14 ind:imp:3p; +pelotais peloter VER 5.36 3.38 0.07 0.00 ind:imp:1s;ind:imp:2s; +pelotait peloter VER 5.36 3.38 0.32 0.61 ind:imp:3s; +pelotant peloter VER 5.36 3.38 0.14 0.34 par:pre; +pelote pelote NOM f s 0.98 6.01 0.94 4.19 +pelotent peloter VER 5.36 3.38 0.14 0.00 ind:pre:3p; +peloter peloter VER 5.36 3.38 2.90 1.22 inf; +peloterai peloter VER 5.36 3.38 0.04 0.07 ind:fut:1s; +peloterait peloter VER 5.36 3.38 0.01 0.00 cnd:pre:3s; +pelotes peloter VER 5.36 3.38 0.17 0.00 ind:pre:2s; +peloteur peloteur NOM m s 0.03 0.14 0.02 0.00 +peloteurs peloteur NOM m p 0.03 0.14 0.01 0.14 +peloteuse peloteur ADJ f s 0.00 0.20 0.00 0.14 +pelotez peloter VER 5.36 3.38 0.11 0.00 imp:pre:2p;ind:pre:2p; +peloton peloton NOM m s 7.15 10.74 6.83 9.73 +pelotonna pelotonner VER 0.07 4.12 0.00 0.34 ind:pas:3s; +pelotonnai pelotonner VER 0.07 4.12 0.00 0.14 ind:pas:1s; +pelotonnaient pelotonner VER 0.07 4.12 0.01 0.07 ind:imp:3p; +pelotonnais pelotonner VER 0.07 4.12 0.00 0.07 ind:imp:1s; +pelotonnait pelotonner VER 0.07 4.12 0.00 0.14 ind:imp:3s; +pelotonnant pelotonner VER 0.07 4.12 0.00 0.07 par:pre; +pelotonne pelotonner VER 0.07 4.12 0.00 0.34 ind:pre:1s;ind:pre:3s; +pelotonnent pelotonner VER 0.07 4.12 0.00 0.14 ind:pre:3p; +pelotonner pelotonner VER 0.07 4.12 0.01 0.68 inf; +pelotonné pelotonner VER m s 0.07 4.12 0.00 1.22 par:pas; +pelotonnée pelotonner VER f s 0.07 4.12 0.02 0.61 par:pas; +pelotonnées pelotonner VER f p 0.07 4.12 0.00 0.14 par:pas; +pelotonnés pelotonner VER m p 0.07 4.12 0.02 0.20 par:pas; +pelotons peloton NOM m p 7.15 10.74 0.32 1.01 +peloté peloter VER m s 5.36 3.38 0.28 0.00 par:pas; +pelotée peloter VER f s 5.36 3.38 0.38 0.14 par:pas; +pelotés peloter VER m p 5.36 3.38 0.32 0.00 par:pas; +pelouse pelouse NOM f s 4.79 19.39 4.28 12.97 +pelouses pelouse NOM f p 4.79 19.39 0.52 6.42 +pelé peler VER m s 1.78 4.93 0.14 0.95 par:pas; +peluche peluche NOM f s 4.21 5.54 3.25 5.34 +peluches peluche NOM f p 4.21 5.54 0.96 0.20 +pelucheuse pelucheux ADJ f s 0.31 1.76 0.03 0.54 +pelucheuses pelucheux ADJ f p 0.31 1.76 0.01 0.27 +pelucheux pelucheux ADJ m 0.31 1.76 0.27 0.95 +peluchée peluché ADJ f s 0.00 0.20 0.00 0.20 +pelée pelé ADJ f s 0.44 3.24 0.30 1.08 +pelées peler VER f p 1.78 4.93 0.00 0.34 par:pas; +pelure pelure NOM f s 0.37 3.24 0.10 2.03 +pelures pelure NOM f p 0.37 3.24 0.28 1.22 +pelés peler VER m p 1.78 4.93 0.02 0.41 par:pas; +pelvien pelvien ADJ m s 0.55 0.00 0.18 0.00 +pelvienne pelvien ADJ f s 0.55 0.00 0.37 0.00 +pelvis pelvis NOM m 0.34 0.07 0.34 0.07 +pembina pembina NOM f s 0.00 0.07 0.00 0.07 +pemmican pemmican NOM m s 0.01 0.14 0.01 0.14 +penalties penalties NOM m p 0.29 0.14 0.29 0.14 +penalty penalty NOM m s 1.50 0.47 1.50 0.47 +penaud penaud ADJ m s 0.21 4.86 0.20 3.04 +penaude penaud ADJ f s 0.21 4.86 0.01 0.81 +penaudes penaud ADJ f p 0.21 4.86 0.00 0.07 +penauds penaud ADJ m p 0.21 4.86 0.00 0.95 +pence pence NOM m p 1.71 0.14 1.71 0.14 +pencha pencher VER 16.90 155.88 0.10 34.05 ind:pas:3s; +penchai pencher VER 16.90 155.88 0.00 2.36 ind:pas:1s; +penchaient pencher VER 16.90 155.88 0.00 2.30 ind:imp:3p; +penchais pencher VER 16.90 155.88 0.23 1.22 ind:imp:1s;ind:imp:2s; +penchait pencher VER 16.90 155.88 0.26 13.92 ind:imp:3s; +penchant penchant NOM m s 3.26 5.27 2.54 3.45 +penchante penchant ADJ f s 0.01 0.74 0.00 0.20 +penchants penchant NOM m p 3.26 5.27 0.72 1.82 +penche pencher VER 16.90 155.88 7.30 26.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +penchement penchement NOM m s 0.00 0.20 0.00 0.20 +penchent pencher VER 16.90 155.88 0.44 2.91 ind:pre:3p; +pencher pencher VER 16.90 155.88 2.08 11.76 inf; +penchera pencher VER 16.90 155.88 0.18 0.27 ind:fut:3s; +pencherai pencher VER 16.90 155.88 0.20 0.00 ind:fut:1s; +pencheraient pencher VER 16.90 155.88 0.04 0.07 cnd:pre:3p; +pencherais pencher VER 16.90 155.88 0.13 0.34 cnd:pre:1s; +pencherait pencher VER 16.90 155.88 0.04 0.14 cnd:pre:3s; +pencheras pencher VER 16.90 155.88 0.01 0.00 ind:fut:2s; +pencherez pencher VER 16.90 155.88 0.01 0.00 ind:fut:2p; +pencheriez pencher VER 16.90 155.88 0.01 0.00 cnd:pre:2p; +pencherons pencher VER 16.90 155.88 0.01 0.00 ind:fut:1p; +pencheront pencher VER 16.90 155.88 0.37 0.14 ind:fut:3p; +penches pencher VER 16.90 155.88 0.28 0.14 ind:pre:2s; +penchez pencher VER 16.90 155.88 1.75 0.27 imp:pre:2p;ind:pre:2p; +penchiez pencher VER 16.90 155.88 0.04 0.00 ind:imp:2p; +penchions pencher VER 16.90 155.88 0.02 0.34 ind:imp:1p; +penchâmes pencher VER 16.90 155.88 0.01 0.20 ind:pas:1p; +penchons pencher VER 16.90 155.88 0.11 0.27 imp:pre:1p;ind:pre:1p; +penchât pencher VER 16.90 155.88 0.00 0.14 sub:imp:3s; +penchèrent pencher VER 16.90 155.88 0.00 0.81 ind:pas:3p; +penché pencher VER m s 16.90 155.88 1.61 25.07 par:pas; +penchée pencher VER f s 16.90 155.88 1.32 12.36 par:pas; +penchées pencher VER f p 16.90 155.88 0.01 1.35 par:pas; +penchés penché ADJ m p 1.30 11.01 0.21 1.55 +pend pendre VER 43.03 58.04 2.50 6.69 ind:pre:3s; +pendable pendable ADJ s 0.04 0.88 0.02 0.61 +pendables pendable ADJ m p 0.04 0.88 0.02 0.27 +pendaient pendre VER 43.03 58.04 0.51 7.30 ind:imp:3p; +pendais pendre VER 43.03 58.04 0.02 0.00 ind:imp:1s; +pendaison pendaison NOM f s 3.02 1.08 2.78 1.08 +pendaisons pendaison NOM f p 3.02 1.08 0.24 0.00 +pendait pendre VER 43.03 58.04 0.86 13.38 ind:imp:3s; +pendant pendant PRE 312.62 450.14 312.62 450.14 +pendante pendant ADJ f s 3.56 12.50 0.36 3.24 +pendantes pendant ADJ f p 3.56 12.50 0.19 3.92 +pendants pendant ADJ m p 3.56 12.50 0.18 1.49 +pendard pendard NOM m s 0.05 0.07 0.03 0.07 +pendarde pendard NOM f s 0.05 0.07 0.01 0.00 +pendards pendard NOM m p 0.05 0.07 0.01 0.00 +pende pendre VER 43.03 58.04 1.15 0.34 sub:pre:1s;sub:pre:3s; +pendeloque pendeloque NOM f s 0.01 1.08 0.01 0.14 +pendeloques pendeloque NOM f p 0.01 1.08 0.00 0.95 +pendent pendre VER 43.03 58.04 1.41 4.53 ind:pre:3p; +pendentif pendentif NOM m s 1.04 1.22 1.00 0.74 +pendentifs pendentif NOM m p 1.04 1.22 0.03 0.47 +penderie penderie NOM f s 1.88 3.11 1.84 2.50 +penderies penderie NOM f p 1.88 3.11 0.04 0.61 +pendeur pendeur NOM m s 0.01 0.00 0.01 0.00 +pendez pendre VER 43.03 58.04 1.60 0.14 imp:pre:2p;ind:pre:2p; +pendillaient pendiller VER 0.01 0.41 0.00 0.14 ind:imp:3p; +pendillait pendiller VER 0.01 0.41 0.00 0.07 ind:imp:3s; +pendillant pendiller VER 0.01 0.41 0.00 0.14 par:pre; +pendille pendiller VER 0.01 0.41 0.01 0.07 ind:pre:3s; +pendirent pendre VER 43.03 58.04 0.00 0.07 ind:pas:3p; +pendit pendre VER 43.03 58.04 0.09 1.08 ind:pas:3s; +pendjabi pendjabi NOM m s 0.04 0.00 0.04 0.00 +pendons pendre VER 43.03 58.04 0.63 0.00 imp:pre:1p;ind:pre:1p; +pendouillaient pendouiller VER 0.47 2.23 0.01 0.27 ind:imp:3p; +pendouillait pendouiller VER 0.47 2.23 0.00 0.47 ind:imp:3s; +pendouillant pendouiller VER 0.47 2.23 0.02 0.47 par:pre; +pendouille pendouiller VER 0.47 2.23 0.30 0.61 ind:pre:1s;ind:pre:3s; +pendouillent pendouiller VER 0.47 2.23 0.03 0.27 ind:pre:3p; +pendouiller pendouiller VER 0.47 2.23 0.11 0.07 inf; +pendouilles pendouiller VER 0.47 2.23 0.00 0.07 ind:pre:2s; +pendra pendre VER 43.03 58.04 1.83 0.34 ind:fut:3s; +pendrai pendre VER 43.03 58.04 0.28 0.00 ind:fut:1s; +pendrais pendre VER 43.03 58.04 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +pendrait pendre VER 43.03 58.04 0.28 0.07 cnd:pre:3s; +pendras pendre VER 43.03 58.04 0.17 0.00 ind:fut:2s; +pendre pendre VER 43.03 58.04 12.40 8.51 inf; +pendrez pendre VER 43.03 58.04 0.05 0.00 ind:fut:2p; +pendrons pendre VER 43.03 58.04 0.07 0.00 ind:fut:1p; +pendront pendre VER 43.03 58.04 0.82 0.07 ind:fut:3p; +pends pendre VER 43.03 58.04 1.13 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +pendu pendre VER m s 43.03 58.04 11.02 5.74 par:pas; +pendue pendre VER f s 43.03 58.04 2.19 2.97 par:pas; +pendues pendu ADJ f p 2.90 3.78 0.18 0.47 +pendulaire pendulaire ADJ s 0.00 0.20 0.00 0.20 +pendulait penduler VER 0.00 0.07 0.00 0.07 ind:imp:3s; +pendule pendule NOM s 4.78 11.82 3.37 9.86 +pendules pendule NOM f p 4.78 11.82 1.42 1.96 +pendulette pendulette NOM f s 0.03 1.15 0.03 0.95 +pendulettes pendulette NOM f p 0.03 1.15 0.00 0.20 +pendus pendre VER m p 43.03 58.04 1.52 2.50 par:pas; +pennage pennage NOM m s 0.12 0.00 0.12 0.00 +penne penne NOM f s 0.39 0.54 0.34 0.34 +pennes penne NOM f p 0.39 0.54 0.05 0.20 +pennies pennies NOM m p 0.62 0.20 0.62 0.20 +pennon pennon NOM m s 0.02 0.07 0.01 0.00 +pennons pennon NOM m p 0.02 0.07 0.01 0.07 +pennées penné ADJ f p 0.00 0.07 0.00 0.07 +penny penny NOM f s 3.49 0.14 3.49 0.14 +penon penon NOM m s 0.00 0.07 0.00 0.07 +pensa penser VER 1485.46 869.80 1.52 78.11 ind:pas:3s; +pensable pensable ADJ f s 0.19 0.81 0.19 0.81 +pensai penser VER 1485.46 869.80 0.86 16.28 ind:pas:1s; +pensaient penser VER 1485.46 869.80 6.32 10.61 ind:imp:3p; +pensais penser VER 1485.46 869.80 199.51 69.66 ind:imp:1s;ind:imp:2s; +pensait penser VER 1485.46 869.80 32.53 109.05 ind:imp:3s; +pensant penser VER 1485.46 869.80 10.22 32.50 par:pre; +pensante pensant ADJ f s 1.09 6.08 0.19 1.22 +pensantes pensant ADJ f p 1.09 6.08 0.06 0.14 +pensants pensant ADJ m p 1.09 6.08 0.03 0.41 +pense_bête pense_bête NOM m s 0.34 0.41 0.17 0.41 +pense_bête pense_bête NOM m p 0.34 0.41 0.17 0.00 +pense penser VER 1485.46 869.80 517.64 178.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +pensent penser VER 1485.46 869.80 37.42 12.30 ind:pre:3p; +penser penser VER 1485.46 869.80 140.23 161.62 inf; +pensera penser VER 1485.46 869.80 3.66 1.62 ind:fut:3s; +penserai penser VER 1485.46 869.80 3.44 1.28 ind:fut:1s; +penseraient penser VER 1485.46 869.80 0.90 0.88 cnd:pre:3p; +penserais penser VER 1485.46 869.80 2.38 1.22 cnd:pre:1s;cnd:pre:2s; +penserait penser VER 1485.46 869.80 3.17 2.16 cnd:pre:3s; +penseras penser VER 1485.46 869.80 1.84 0.95 ind:fut:2s; +penserez penser VER 1485.46 869.80 0.93 0.61 ind:fut:2p; +penseriez penser VER 1485.46 869.80 0.66 0.20 cnd:pre:2p; +penserions penser VER 1485.46 869.80 0.01 0.20 cnd:pre:1p; +penserons penser VER 1485.46 869.80 0.30 0.14 ind:fut:1p; +penseront penser VER 1485.46 869.80 2.19 0.61 ind:fut:3p; +penses penser VER 1485.46 869.80 186.90 38.24 ind:pre:2s;sub:pre:2s; +penseur penseur NOM m s 1.64 3.92 0.84 1.96 +penseurs penseur NOM m p 1.64 3.92 0.80 1.69 +penseuse penseur NOM f s 1.64 3.92 0.00 0.14 +penseuses penseur NOM f p 1.64 3.92 0.00 0.14 +pensez penser VER 1485.46 869.80 148.70 41.69 imp:pre:2p;ind:pre:2p; +pensiez penser VER 1485.46 869.80 12.33 2.16 ind:imp:2p;sub:pre:2p; +pensif pensif ADJ m s 0.80 9.80 0.58 5.95 +pensifs pensif ADJ m p 0.80 9.80 0.01 1.42 +pension pension NOM f s 17.75 19.19 16.45 18.18 +pensionna pensionner VER 0.02 0.20 0.00 0.07 ind:pas:3s; +pensionnaire pensionnaire NOM s 2.41 10.54 1.42 4.19 +pensionnaires pensionnaire NOM p 2.41 10.54 0.99 6.35 +pensionnat pensionnat NOM m s 1.88 2.77 1.87 2.64 +pensionnats pensionnat NOM m p 1.88 2.77 0.01 0.14 +pensionner pensionner VER 0.02 0.20 0.00 0.07 inf; +pensionné pensionner VER m s 0.02 0.20 0.01 0.00 par:pas; +pensionnés pensionné NOM m p 0.21 0.20 0.21 0.00 +pensions penser VER 1485.46 869.80 5.41 4.26 ind:imp:1p; +pensive pensif ADJ f s 0.80 9.80 0.21 2.43 +pensivement pensivement ADV 0.01 5.20 0.01 5.20 +pensâmes penser VER 1485.46 869.80 0.00 0.07 ind:pas:1p; +pensons penser VER 1485.46 869.80 13.89 3.65 imp:pre:1p;ind:pre:1p; +pensât penser VER 1485.46 869.80 0.00 0.74 sub:imp:3s; +pensèrent penser VER 1485.46 869.80 0.07 1.01 ind:pas:3p; +pensé penser VER m s 1485.46 869.80 151.67 97.57 imp:pre:2s;par:pas;par:pas;par:pas;par:pas;par:pas; +pensée pensée NOM f s 57.87 151.55 26.25 98.92 +pensées pensée NOM f p 57.87 151.55 31.61 52.64 +pensum pensum NOM m s 0.03 1.22 0.02 0.95 +pensums pensum NOM m p 0.03 1.22 0.01 0.27 +pensés penser VER m p 1485.46 869.80 0.09 0.41 par:pas; +pentacle pentacle NOM m s 0.57 0.20 0.54 0.20 +pentacles pentacle NOM m p 0.57 0.20 0.04 0.00 +pentagonal pentagonal ADJ m s 0.01 0.00 0.01 0.00 +pentagone pentagone NOM m s 0.26 0.20 0.25 0.14 +pentagones pentagone NOM m p 0.26 0.20 0.01 0.07 +pentagramme pentagramme NOM m s 0.70 0.00 0.67 0.00 +pentagrammes pentagramme NOM m p 0.70 0.00 0.04 0.00 +pentamètre pentamètre NOM s 0.17 0.00 0.12 0.00 +pentamètres pentamètre NOM p 0.17 0.00 0.05 0.00 +pentasyllabe pentasyllabe NOM m s 0.00 0.07 0.00 0.07 +pentateuque pentateuque NOM m s 0.00 0.07 0.00 0.07 +pentathlon pentathlon NOM m s 0.00 0.07 0.00 0.07 +pente pente NOM f s 4.82 49.66 4.46 39.19 +pentecôte pentecôte NOM f s 0.57 3.85 0.57 3.85 +pentecôtiste pentecôtiste NOM s 0.04 0.20 0.02 0.20 +pentecôtistes pentecôtiste NOM p 0.04 0.20 0.02 0.00 +pentes pente NOM f p 4.82 49.66 0.36 10.47 +penthiobarbital penthiobarbital NOM m s 0.01 0.00 0.01 0.00 +penthotal penthotal NOM m s 0.06 0.20 0.06 0.20 +penthouse penthouse NOM m s 0.90 0.00 0.90 0.00 +pentothal pentothal NOM m s 0.17 0.00 0.17 0.00 +pentu pentu ADJ m s 0.05 1.22 0.05 0.61 +pentue pentu ADJ f s 0.05 1.22 0.00 0.27 +pentues pentu ADJ f p 0.05 1.22 0.00 0.07 +pentélique pentélique ADJ m s 0.00 0.07 0.00 0.07 +penture penture NOM f s 0.00 0.14 0.00 0.07 +pentures penture NOM f p 0.00 0.14 0.00 0.07 +pentus pentu ADJ m p 0.05 1.22 0.00 0.27 +people people ADJ 3.55 0.20 3.55 0.20 +pep pep NOM m s 0.33 0.14 0.15 0.14 +peppermint peppermint NOM m s 0.05 0.34 0.05 0.34 +peps pep NOM m p 0.33 0.14 0.18 0.00 +pepsine pepsine NOM f s 0.01 0.00 0.01 0.00 +peptide peptide NOM m s 0.03 0.00 0.03 0.00 +peptique peptique ADJ s 0.03 0.00 0.03 0.00 +percale percale NOM f s 0.11 0.68 0.11 0.61 +percales percale NOM f p 0.11 0.68 0.00 0.07 +perce_oreille perce_oreille NOM m s 0.04 0.20 0.03 0.07 +perce_oreille perce_oreille NOM m p 0.04 0.20 0.01 0.14 +perce_pierre perce_pierre NOM f s 0.00 0.07 0.00 0.07 +perce percer VER 15.77 42.03 2.09 3.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +percement percement NOM m s 0.01 0.41 0.01 0.41 +percent percer VER 15.77 42.03 0.42 1.08 ind:pre:3p; +percepteur percepteur NOM m s 1.03 1.42 0.93 1.28 +percepteurs percepteur NOM m p 1.03 1.42 0.09 0.14 +perceptible perceptible ADJ s 0.46 7.43 0.40 6.01 +perceptibles perceptible ADJ p 0.46 7.43 0.06 1.42 +perceptif perceptif ADJ m s 0.09 0.14 0.01 0.14 +perception perception NOM f s 2.92 3.72 2.62 2.70 +perceptions perception NOM f p 2.92 3.72 0.31 1.01 +perceptive perceptif ADJ f s 0.09 0.14 0.07 0.00 +perceptives perceptif ADJ f p 0.09 0.14 0.01 0.00 +perceptrice percepteur NOM f s 1.03 1.42 0.01 0.00 +perceptuels perceptuel ADJ m p 0.01 0.00 0.01 0.00 +percer percer VER 15.77 42.03 6.19 11.22 inf; +percera percer VER 15.77 42.03 0.26 0.20 ind:fut:3s; +percerai percer VER 15.77 42.03 0.08 0.00 ind:fut:1s; +percerait percer VER 15.77 42.03 0.03 0.00 cnd:pre:3s; +percerez percer VER 15.77 42.03 0.11 0.07 ind:fut:2p; +perceur perceur NOM m s 1.21 1.01 0.12 0.20 +perceurs perceur NOM m p 1.21 1.01 0.12 0.47 +perceuse perceur NOM f s 1.21 1.01 0.97 0.20 +perceuses perceuse NOM f p 0.01 0.00 0.01 0.00 +percevaient percevoir VER 7.39 41.01 0.01 0.81 ind:imp:3p; +percevais percevoir VER 7.39 41.01 0.26 2.30 ind:imp:1s;ind:imp:2s; +percevait percevoir VER 7.39 41.01 0.15 6.62 ind:imp:3s; +percevant percevoir VER 7.39 41.01 0.20 1.15 par:pre; +percevez percevoir VER 7.39 41.01 0.26 0.00 imp:pre:2p;ind:pre:2p; +perceviez percevoir VER 7.39 41.01 0.00 0.07 ind:imp:2p; +percevions percevoir VER 7.39 41.01 0.01 0.27 ind:imp:1p; +percevoir percevoir VER 7.39 41.01 1.19 9.19 inf; +percevons percevoir VER 7.39 41.01 0.20 0.20 ind:pre:1p; +percevra percevoir VER 7.39 41.01 0.17 0.00 ind:fut:3s; +percevrais percevoir VER 7.39 41.01 0.01 0.00 cnd:pre:1s; +percevrait percevoir VER 7.39 41.01 0.01 0.14 cnd:pre:3s; +percevrez percevoir VER 7.39 41.01 0.01 0.00 ind:fut:2p; +percez percer VER 15.77 42.03 0.33 0.00 imp:pre:2p;ind:pre:2p; +percha percher VER 2.37 12.97 0.04 0.20 ind:pas:3s; +perchaient percher VER 2.37 12.97 0.10 0.34 ind:imp:3p; +perchais percher VER 2.37 12.97 0.01 0.14 ind:imp:1s; +perchait percher VER 2.37 12.97 0.11 0.14 ind:imp:3s; +perche perche NOM f s 6.11 7.43 5.67 4.93 +perchent percher VER 2.37 12.97 0.00 0.14 ind:pre:3p; +percher percher VER 2.37 12.97 0.23 0.68 inf;; +percheron percheron NOM m s 0.02 2.30 0.02 1.22 +percheronne percheron ADJ f s 0.00 0.68 0.00 0.14 +percheronnes percheron NOM f p 0.02 2.30 0.00 0.07 +percherons percheron NOM m p 0.02 2.30 0.00 1.01 +perches perche NOM f p 6.11 7.43 0.45 2.50 +perchettes perchette NOM f p 0.00 0.07 0.00 0.07 +percheurs percheur ADJ m p 0.01 0.00 0.01 0.00 +perchiste perchiste NOM s 0.00 0.07 0.00 0.07 +perchlorate perchlorate NOM m s 0.04 0.00 0.04 0.00 +perchlorique perchlorique ADJ m s 0.01 0.00 0.01 0.00 +perchman perchman NOM m s 0.14 0.07 0.14 0.00 +perchmans perchman NOM m p 0.14 0.07 0.00 0.07 +perchoir perchoir NOM m s 0.46 3.78 0.43 3.58 +perchoirs perchoir NOM m p 0.46 3.78 0.03 0.20 +perchèrent percher VER 2.37 12.97 0.00 0.07 ind:pas:3p; +perché percher VER m s 2.37 12.97 1.12 4.59 par:pas; +perchée percher VER f s 2.37 12.97 0.49 2.97 par:pas; +perchées percher VER f p 2.37 12.97 0.00 0.68 par:pas; +perchés percher VER m p 2.37 12.97 0.10 2.70 par:pas; +percions percer VER 15.77 42.03 0.00 0.07 ind:imp:1p; +perclus perclus ADJ m 0.03 1.62 0.03 1.28 +percluse perclus ADJ f s 0.03 1.62 0.00 0.27 +percluses perclus ADJ f p 0.03 1.62 0.00 0.07 +perco perco NOM m s 0.07 0.27 0.07 0.14 +percolateur percolateur NOM m s 0.11 1.28 0.09 0.95 +percolateurs percolateur NOM m p 0.11 1.28 0.02 0.34 +percolation percolation NOM f s 0.01 0.00 0.01 0.00 +percoler percoler VER 0.01 0.00 0.01 0.00 inf; +percos perco NOM m p 0.07 0.27 0.00 0.14 +percèrent percer VER 15.77 42.03 0.10 0.47 ind:pas:3p; +percé percer VER m s 15.77 42.03 3.67 7.57 par:pas; +percée percée NOM f s 1.37 3.99 1.20 3.58 +percées percer VER f p 15.77 42.03 0.46 2.03 par:pas; +percés percer VER m p 15.77 42.03 0.51 2.77 par:pas; +percussion percussion NOM f s 1.04 1.76 0.16 0.61 +percussionniste percussionniste NOM s 0.09 0.00 0.08 0.00 +percussionnistes percussionniste NOM p 0.09 0.00 0.01 0.00 +percussions percussion NOM f p 1.04 1.76 0.89 1.15 +percuta percuter VER 3.87 2.77 0.01 0.61 ind:pas:3s; +percutait percuter VER 3.87 2.77 0.02 0.14 ind:imp:3s; +percutant percutant ADJ m s 0.38 1.01 0.32 0.41 +percutante percutant ADJ f s 0.38 1.01 0.01 0.00 +percutantes percutant ADJ f p 0.38 1.01 0.02 0.07 +percutants percutant ADJ m p 0.38 1.01 0.03 0.54 +percute percuter VER 3.87 2.77 0.49 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +percutent percuter VER 3.87 2.77 0.04 0.07 ind:pre:3p; +percuter percuter VER 3.87 2.77 0.69 0.74 inf; +percuterait percuter VER 3.87 2.77 0.00 0.07 cnd:pre:3s; +percutes percuter VER 3.87 2.77 0.26 0.00 ind:pre:2s; +percuteur percuteur NOM m s 0.25 0.07 0.22 0.07 +percuteurs percuteur NOM m p 0.25 0.07 0.02 0.00 +percutez percuter VER 3.87 2.77 0.06 0.00 imp:pre:2p;ind:pre:2p; +percuté percuter VER m s 3.87 2.77 2.07 0.54 par:pas; +percutée percuter VER f s 3.87 2.77 0.12 0.00 par:pas; +percutées percuter VER f p 3.87 2.77 0.02 0.00 par:pas; +percutés percuter VER m p 3.87 2.77 0.06 0.00 par:pas; +perd perdre VER 546.08 377.36 39.97 25.00 ind:pre:3s; +perdîmes perdre VER 546.08 377.36 0.02 0.20 ind:pas:1p; +perdît perdre VER 546.08 377.36 0.00 0.61 sub:imp:3s; +perdaient perdre VER 546.08 377.36 0.53 7.64 ind:imp:3p; +perdais perdre VER 546.08 377.36 2.85 4.80 ind:imp:1s;ind:imp:2s; +perdait perdre VER 546.08 377.36 2.52 24.73 ind:imp:3s; +perdant perdant NOM m s 6.71 1.42 4.04 0.74 +perdante perdant NOM f s 6.71 1.42 0.68 0.07 +perdants perdant NOM m p 6.71 1.42 2.00 0.61 +perde perdre VER 546.08 377.36 5.62 4.19 sub:pre:1s;sub:pre:3s; +perdent perdre VER 546.08 377.36 8.12 8.72 ind:pre:3p; +perdes perdre VER 546.08 377.36 0.89 0.20 sub:pre:2s; +perdez perdre VER 546.08 377.36 15.04 2.16 imp:pre:2p;ind:pre:2p; +perdiez perdre VER 546.08 377.36 0.59 0.20 ind:imp:2p; +perdions perdre VER 546.08 377.36 0.43 0.88 ind:imp:1p; +perdirent perdre VER 546.08 377.36 0.35 1.82 ind:pas:3p; +perdis perdre VER 546.08 377.36 0.27 2.16 ind:pas:1s; +perdisse perdre VER 546.08 377.36 0.00 0.07 sub:imp:1s; +perdit perdre VER 546.08 377.36 1.39 11.35 ind:pas:3s; +perdition perdition NOM f s 1.18 2.36 1.18 2.36 +perdons perdre VER 546.08 377.36 9.38 2.36 imp:pre:1p;ind:pre:1p; +perdra perdre VER 546.08 377.36 5.23 1.82 ind:fut:3s; +perdrai perdre VER 546.08 377.36 3.10 0.68 ind:fut:1s; +perdraient perdre VER 546.08 377.36 0.17 0.47 cnd:pre:3p; +perdrais perdre VER 546.08 377.36 2.26 1.01 cnd:pre:1s;cnd:pre:2s; +perdrait perdre VER 546.08 377.36 1.94 3.31 cnd:pre:3s; +perdras perdre VER 546.08 377.36 3.79 0.27 ind:fut:2s; +perdre perdre VER 546.08 377.36 131.47 97.70 inf; +perdreau perdreau NOM m s 1.45 2.84 0.84 1.15 +perdreaux perdreau NOM m p 1.45 2.84 0.61 1.69 +perdrez perdre VER 546.08 377.36 2.66 0.34 ind:fut:2p; +perdriez perdre VER 546.08 377.36 0.57 0.41 cnd:pre:2p; +perdrions perdre VER 546.08 377.36 0.11 0.68 cnd:pre:1p; +perdrix perdrix NOM f 2.83 1.49 2.83 1.49 +perdrons perdre VER 546.08 377.36 1.08 0.34 ind:fut:1p; +perdront perdre VER 546.08 377.36 0.50 0.34 ind:fut:3p; +perds perdre VER 546.08 377.36 48.13 11.35 imp:pre:2s;ind:pre:1s;ind:pre:2s; +perdu perdre VER m s 546.08 377.36 217.23 115.07 par:pas; +perdue perdre VER f s 546.08 377.36 22.38 22.70 par:pas; +perdues perdu ADJ f p 36.46 58.45 3.43 6.15 +perdurable perdurable ADJ m s 0.00 0.07 0.00 0.07 +perdurait perdurer VER 0.73 0.74 0.01 0.14 ind:imp:3s; +perdure perdurer VER 0.73 0.74 0.32 0.27 ind:pre:3s; +perdurent perdurer VER 0.73 0.74 0.05 0.20 ind:pre:3p; +perdurer perdurer VER 0.73 0.74 0.27 0.07 inf; +perdurera perdurer VER 0.73 0.74 0.05 0.00 ind:fut:3s; +perduré perdurer VER m s 0.73 0.74 0.03 0.07 par:pas; +perdus perdre VER m p 546.08 377.36 12.18 13.31 par:pas; +perestroïka perestroïka NOM f s 0.00 0.07 0.00 0.07 +perfectibilité perfectibilité NOM f s 0.00 0.07 0.00 0.07 +perfectible perfectible ADJ f s 0.00 0.14 0.00 0.07 +perfectibles perfectible ADJ p 0.00 0.14 0.00 0.07 +perfection perfection NOM f s 7.76 16.82 7.66 16.01 +perfectionna perfectionner VER 2.27 5.61 0.00 0.14 ind:pas:3s; +perfectionnaient perfectionner VER 2.27 5.61 0.00 0.07 ind:imp:3p; +perfectionnais perfectionner VER 2.27 5.61 0.00 0.07 ind:imp:1s; +perfectionnait perfectionner VER 2.27 5.61 0.02 0.14 ind:imp:3s; +perfectionnant perfectionner VER 2.27 5.61 0.00 0.47 par:pre; +perfectionne perfectionner VER 2.27 5.61 0.09 0.54 ind:pre:1s;ind:pre:3s; +perfectionnement perfectionnement NOM m s 0.31 1.35 0.30 0.95 +perfectionnements perfectionnement NOM m p 0.31 1.35 0.01 0.41 +perfectionnent perfectionner VER 2.27 5.61 0.00 0.07 ind:pre:3p; +perfectionner perfectionner VER 2.27 5.61 1.01 1.28 inf; +perfectionnerais perfectionner VER 2.27 5.61 0.00 0.07 cnd:pre:1s; +perfectionnions perfectionner VER 2.27 5.61 0.01 0.00 ind:imp:1p; +perfectionnisme perfectionnisme NOM m s 0.21 0.14 0.21 0.14 +perfectionniste perfectionniste ADJ s 0.51 0.14 0.43 0.14 +perfectionnistes perfectionniste ADJ m p 0.51 0.14 0.09 0.00 +perfectionnèrent perfectionner VER 2.27 5.61 0.02 0.00 ind:pas:3p; +perfectionné perfectionner VER m s 2.27 5.61 0.73 1.62 par:pas; +perfectionnée perfectionner VER f s 2.27 5.61 0.06 0.34 par:pas; +perfectionnées perfectionner VER f p 2.27 5.61 0.13 0.34 par:pas; +perfectionnés perfectionner VER m p 2.27 5.61 0.19 0.47 par:pas; +perfections perfection NOM f p 7.76 16.82 0.10 0.81 +perfecto perfecto NOM m s 0.19 0.27 0.19 0.20 +perfectos perfecto NOM m p 0.19 0.27 0.00 0.07 +perfide perfide ADJ s 2.48 4.86 1.69 3.18 +perfidement perfidement ADV 0.10 0.61 0.10 0.61 +perfides perfide ADJ p 2.48 4.86 0.79 1.69 +perfidie perfidie NOM f s 1.30 3.65 1.17 3.24 +perfidies perfidie NOM f p 1.30 3.65 0.14 0.41 +perfora perforer VER 1.45 1.35 0.00 0.14 ind:pas:3s; +perforage perforage NOM m s 0.01 0.00 0.01 0.00 +perforait perforer VER 1.45 1.35 0.01 0.14 ind:imp:3s; +perforant perforant ADJ m s 0.32 0.14 0.04 0.00 +perforante perforant ADJ f s 0.32 0.14 0.11 0.07 +perforantes perforant ADJ f p 0.32 0.14 0.05 0.07 +perforants perforant ADJ m p 0.32 0.14 0.12 0.00 +perforateur perforateur NOM m s 0.05 0.14 0.05 0.07 +perforation perforation NOM f s 0.67 0.88 0.53 0.47 +perforations perforation NOM f p 0.67 0.88 0.14 0.41 +perforatrice perforateur NOM f s 0.05 0.14 0.00 0.07 +perfore perforer VER 1.45 1.35 0.22 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +perforer perforer VER 1.45 1.35 0.21 0.47 inf; +perforera perforer VER 1.45 1.35 0.01 0.00 ind:fut:3s; +perforeuse perforeuse NOM f s 0.04 0.14 0.04 0.14 +perforez perforer VER 1.45 1.35 0.01 0.00 imp:pre:2p; +perforions perforer VER 1.45 1.35 0.00 0.07 ind:imp:1p; +performance performance NOM f s 4.71 4.19 3.48 2.23 +performances performance NOM f p 4.71 4.19 1.23 1.96 +performant performant ADJ m s 0.90 0.41 0.48 0.14 +performante performant ADJ f s 0.90 0.41 0.11 0.00 +performantes performant ADJ f p 0.90 0.41 0.04 0.07 +performants performant ADJ m p 0.90 0.41 0.27 0.20 +performer performer NOM m s 0.00 0.07 0.00 0.07 +perforé perforer VER m s 1.45 1.35 0.87 0.27 par:pas; +perforée perforer VER f s 1.45 1.35 0.07 0.14 par:pas; +perforées perforé ADJ f p 0.62 0.81 0.03 0.27 +perforés perforé ADJ m p 0.62 0.81 0.10 0.14 +perfuse perfuser VER 0.25 0.00 0.15 0.00 ind:pre:3s; +perfuser perfuser VER 0.25 0.00 0.08 0.00 inf; +perfusion perfusion NOM f s 2.14 0.81 1.95 0.54 +perfusions perfusion NOM f p 2.14 0.81 0.19 0.27 +perfusé perfuser VER m s 0.25 0.00 0.02 0.00 par:pas; +pergola pergola NOM f s 0.10 0.68 0.10 0.68 +pergélisol pergélisol NOM m s 0.01 0.00 0.01 0.00 +perla perler VER 0.38 7.77 0.01 0.14 ind:pas:3s; +perlaient perler VER 0.38 7.77 0.00 0.81 ind:imp:3p; +perlait perler VER 0.38 7.77 0.00 1.89 ind:imp:3s; +perlant perler VER 0.38 7.77 0.00 0.34 par:pre; +perle perle NOM f s 10.57 23.85 4.13 7.30 +perlent perler VER 0.38 7.77 0.14 0.41 ind:pre:3p; +perler perler VER 0.38 7.77 0.02 1.42 inf; +perleront perler VER 0.38 7.77 0.01 0.00 ind:fut:3p; +perles perle NOM f p 10.57 23.85 6.44 16.55 +perlimpinpin perlimpinpin NOM m s 0.03 0.20 0.03 0.20 +perlière perlière ADJ f s 0.01 0.00 0.01 0.00 +perlières perlier ADJ f p 0.00 0.27 0.00 0.07 +perlot perlot NOM m s 0.00 0.34 0.00 0.27 +perlots perlot NOM m p 0.00 0.34 0.00 0.07 +perlouse perlouse NOM f s 0.00 0.74 0.00 0.20 +perlouses perlouse NOM f p 0.00 0.74 0.00 0.54 +perlouze perlouze NOM f s 0.00 0.47 0.00 0.34 +perlouzes perlouze NOM f p 0.00 0.47 0.00 0.14 +perlèrent perler VER 0.38 7.77 0.00 0.07 ind:pas:3p; +perlé perler VER m s 0.38 7.77 0.14 0.20 par:pas; +perlée perlé ADJ f s 0.11 1.01 0.01 0.34 +perlées perlé ADJ f p 0.11 1.01 0.00 0.14 +perlés perlé ADJ m p 0.11 1.01 0.10 0.07 +perm perm NOM f s 1.38 1.22 1.38 1.01 +permît permettre VER 172.86 184.19 0.00 2.23 sub:imp:3s; +permafrost permafrost NOM m s 0.07 0.14 0.07 0.14 +permalloy permalloy NOM m s 0.01 0.00 0.01 0.00 +permane permaner VER 0.00 0.14 0.00 0.14 ind:pre:3s; +permanence permanence NOM f s 5.87 12.64 5.85 12.30 +permanences permanence NOM f p 5.87 12.64 0.02 0.34 +permanent permanent ADJ m s 8.86 14.80 3.73 7.97 +permanente permanent ADJ f s 8.86 14.80 4.03 5.20 +permanenter permanenter VER 0.07 0.14 0.02 0.00 inf; +permanentes permanent ADJ f p 8.86 14.80 0.63 0.41 +permanents permanent ADJ m p 8.86 14.80 0.48 1.22 +permanenté permanenter VER m s 0.07 0.14 0.01 0.00 par:pas; +permanentée permanenter VER f s 0.07 0.14 0.01 0.00 par:pas; +permanentés permanenter VER m p 0.07 0.14 0.01 0.14 par:pas; +permanganate permanganate NOM m s 0.04 0.20 0.04 0.20 +perme perme NOM f s 0.58 1.22 0.57 1.22 +permes perme NOM f p 0.58 1.22 0.01 0.00 +permet permettre VER 172.86 184.19 22.88 23.99 ind:pre:3s; +permets permettre VER 172.86 184.19 16.70 6.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +permettaient permettre VER 172.86 184.19 0.17 7.43 ind:imp:3p; +permettais permettre VER 172.86 184.19 0.10 0.61 ind:imp:1s;ind:imp:2s; +permettait permettre VER 172.86 184.19 2.04 26.22 ind:imp:3s; +permettant permettre VER 172.86 184.19 2.23 6.15 par:pre; +permette permettre VER 172.86 184.19 1.68 2.03 sub:pre:1s;sub:pre:3s; +permettent permettre VER 172.86 184.19 4.38 7.23 ind:pre:3p; +permettes permettre VER 172.86 184.19 0.04 0.00 sub:pre:2s; +permettez permettre VER 172.86 184.19 48.28 10.14 imp:pre:2p;ind:pre:2p; +permettiez permettre VER 172.86 184.19 0.03 0.07 ind:imp:2p; +permettions permettre VER 172.86 184.19 0.02 0.27 ind:imp:1p; +permettons permettre VER 172.86 184.19 0.17 0.14 imp:pre:1p;ind:pre:1p; +permettra permettre VER 172.86 184.19 6.38 3.85 ind:fut:3s; +permettrai permettre VER 172.86 184.19 3.96 0.88 ind:fut:1s; +permettraient permettre VER 172.86 184.19 0.42 2.16 cnd:pre:3p; +permettrais permettre VER 172.86 184.19 1.11 0.54 cnd:pre:1s;cnd:pre:2s; +permettrait permettre VER 172.86 184.19 3.11 8.24 cnd:pre:3s; +permettras permettre VER 172.86 184.19 0.05 0.27 ind:fut:2s; +permettre permettre VER 172.86 184.19 26.32 25.81 inf;; +permettrez permettre VER 172.86 184.19 0.84 0.14 ind:fut:2p; +permettriez permettre VER 172.86 184.19 0.02 0.07 cnd:pre:2p; +permettrions permettre VER 172.86 184.19 0.01 0.00 cnd:pre:1p; +permettrons permettre VER 172.86 184.19 0.12 0.00 ind:fut:1p; +permettront permettre VER 172.86 184.19 0.91 1.62 ind:fut:3p; +permirent permettre VER 172.86 184.19 0.24 1.89 ind:pas:3p; +permis permettre VER m 172.86 184.19 28.04 35.54 ind:pas:1s;par:pas;par:pas; +permise permettre VER f s 172.86 184.19 0.94 1.28 par:pas; +permises permettre VER f p 172.86 184.19 0.30 0.47 par:pas; +permissent permettre VER 172.86 184.19 0.00 0.07 sub:imp:3p; +permissifs permissif ADJ m p 0.09 0.07 0.01 0.07 +permission permission NOM f s 31.18 19.12 30.11 17.70 +permissionnaire permissionnaire NOM s 0.16 1.96 0.01 0.47 +permissionnaires permissionnaire NOM p 0.16 1.96 0.14 1.49 +permissions permission NOM f p 31.18 19.12 1.07 1.42 +permissive permissif ADJ f s 0.09 0.07 0.08 0.00 +permissivité permissivité NOM f s 0.00 0.14 0.00 0.14 +permit permettre VER 172.86 184.19 1.39 8.58 ind:pas:3s; +perméabilité perméabilité NOM f s 0.01 0.00 0.01 0.00 +perméable perméable ADJ s 0.23 1.01 0.19 0.88 +perméables perméable ADJ p 0.23 1.01 0.04 0.14 +permutant permutant ADJ m s 0.01 0.07 0.01 0.07 +permutation permutation NOM f s 0.37 0.81 0.26 0.41 +permutations permutation NOM f p 0.37 0.81 0.11 0.41 +permute permuter VER 0.41 0.41 0.24 0.00 ind:pre:1s;ind:pre:3s; +permutent permuter VER 0.41 0.41 0.00 0.07 ind:pre:3p; +permuter permuter VER 0.41 0.41 0.13 0.20 inf; +permutèrent permuter VER 0.41 0.41 0.00 0.07 ind:pas:3p; +permuté permuter VER m s 0.41 0.41 0.03 0.07 par:pas; +pernicieuse pernicieux ADJ f s 0.40 2.16 0.20 0.74 +pernicieuses pernicieux ADJ f p 0.40 2.16 0.02 0.34 +pernicieux pernicieux ADJ m 0.40 2.16 0.18 1.08 +pernod pernod NOM m s 0.17 4.73 0.17 4.46 +pernods pernod NOM m p 0.17 4.73 0.00 0.27 +peroxydase peroxydase NOM f s 0.01 0.00 0.01 0.00 +peroxyde peroxyde NOM m s 0.17 0.00 0.17 0.00 +peroxydé peroxyder VER m s 0.15 0.07 0.15 0.07 par:pas; +perpendiculaire perpendiculaire ADJ s 0.23 1.89 0.21 1.35 +perpendiculairement perpendiculairement ADV 0.02 1.15 0.02 1.15 +perpendiculaires perpendiculaire ADJ p 0.23 1.89 0.02 0.54 +perpette perpette NOM f s 0.21 0.41 0.21 0.41 +perpignan perpignan NOM m s 0.00 0.14 0.00 0.14 +perplexe perplexe ADJ s 2.27 10.81 2.03 9.39 +perplexes perplexe ADJ p 2.27 10.81 0.24 1.42 +perplexité perplexité NOM f s 0.21 5.54 0.21 4.66 +perplexités perplexité NOM f p 0.21 5.54 0.00 0.88 +perpète perpète ADV 1.46 1.49 1.46 1.49 +perpètrent perpétrer VER 1.86 2.03 0.01 0.00 ind:pre:3p; +perpètres perpétrer VER 1.86 2.03 0.00 0.07 ind:pre:2s; +perpétra perpétrer VER 1.86 2.03 0.01 0.00 ind:pas:3s; +perpétrait perpétrer VER 1.86 2.03 0.01 0.14 ind:imp:3s; +perpétration perpétration NOM f s 0.11 0.07 0.11 0.07 +perpétrer perpétrer VER 1.86 2.03 0.35 0.68 inf; +perpétrons perpétrer VER 1.86 2.03 0.00 0.07 ind:pre:1p; +perpétré perpétrer VER m s 1.86 2.03 0.94 0.41 par:pas; +perpétrée perpétrer VER f s 1.86 2.03 0.09 0.20 par:pas; +perpétrées perpétrer VER f p 1.86 2.03 0.09 0.07 par:pas; +perpétrés perpétrer VER m p 1.86 2.03 0.36 0.41 par:pas; +perpétua perpétuer VER 2.81 3.92 0.32 0.00 ind:pas:3s; +perpétuaient perpétuer VER 2.81 3.92 0.00 0.47 ind:imp:3p; +perpétuait perpétuer VER 2.81 3.92 0.01 0.47 ind:imp:3s; +perpétuant perpétuer VER 2.81 3.92 0.03 0.07 par:pre; +perpétuation perpétuation NOM f s 0.04 0.54 0.04 0.54 +perpétue perpétuer VER 2.81 3.92 0.18 0.68 ind:pre:1s;ind:pre:3s; +perpétuel perpétuel ADJ m s 3.00 18.24 1.87 8.04 +perpétuelle perpétuel ADJ f s 3.00 18.24 0.83 7.43 +perpétuellement perpétuellement ADV 0.26 4.66 0.26 4.66 +perpétuelles perpétuel ADJ f p 3.00 18.24 0.15 1.62 +perpétuels perpétuel ADJ m p 3.00 18.24 0.15 1.15 +perpétuent perpétuer VER 2.81 3.92 0.05 0.20 ind:pre:3p; +perpétuer perpétuer VER 2.81 3.92 1.73 1.62 inf; +perpétuera perpétuer VER 2.81 3.92 0.38 0.00 ind:fut:3s; +perpétuerait perpétuer VER 2.81 3.92 0.00 0.07 cnd:pre:3s; +perpétuité perpétuité NOM f s 3.24 2.09 3.11 2.09 +perpétuités perpétuité NOM f p 3.24 2.09 0.13 0.00 +perpétué perpétuer VER m s 2.81 3.92 0.09 0.27 par:pas; +perpétuée perpétuer VER f s 2.81 3.92 0.03 0.00 par:pas; +perpétués perpétuer VER m p 2.81 3.92 0.00 0.07 par:pas; +perquise perquise NOM f s 0.14 0.54 0.14 0.54 +perquisition perquisition NOM f s 3.75 2.30 3.54 1.82 +perquisitionne perquisitionner VER 1.30 0.74 0.14 0.20 ind:pre:1s;ind:pre:3s; +perquisitionnent perquisitionner VER 1.30 0.74 0.11 0.00 ind:pre:3p; +perquisitionner perquisitionner VER 1.30 0.74 0.72 0.47 inf; +perquisitionnera perquisitionner VER 1.30 0.74 0.01 0.00 ind:fut:3s; +perquisitionné perquisitionner VER m s 1.30 0.74 0.31 0.07 par:pas; +perquisitions perquisition NOM f p 3.75 2.30 0.21 0.47 +perrier perrier NOM m s 0.01 0.00 0.01 0.00 +perrières perrière NOM f p 0.00 0.14 0.00 0.14 +perron perron NOM m s 1.27 18.24 1.27 17.91 +perrons perron NOM m p 1.27 18.24 0.00 0.34 +perroquet perroquet NOM m s 5.55 8.78 4.39 7.36 +perroquets perroquet NOM m p 5.55 8.78 1.17 1.42 +perré perré NOM m s 0.00 0.41 0.00 0.27 +perruche perruche NOM f s 0.78 2.84 0.47 0.81 +perruches perruche NOM f p 0.78 2.84 0.31 2.03 +perruque perruque NOM f s 9.68 9.59 8.03 7.03 +perruques perruque NOM f p 9.68 9.59 1.65 2.57 +perruquier perruquier NOM m s 0.07 0.27 0.04 0.14 +perruquiers perruquier NOM m p 0.07 0.27 0.02 0.07 +perruquière perruquier NOM f s 0.07 0.27 0.01 0.07 +perrés perré NOM m p 0.00 0.41 0.00 0.14 +pers pers ADJ m 0.25 0.27 0.25 0.27 +persan persan ADJ m s 0.53 3.04 0.25 1.08 +persane persan ADJ f s 0.53 3.04 0.06 0.68 +persanes persan ADJ f p 0.53 3.04 0.00 0.54 +persans persan ADJ m p 0.53 3.04 0.22 0.74 +perse perse ADJ s 0.92 0.74 0.48 0.47 +perses perse ADJ p 0.92 0.74 0.44 0.27 +persienne persienne NOM f s 0.37 7.16 0.01 0.41 +persiennes persienne NOM f p 0.37 7.16 0.36 6.76 +persifla persifler VER 0.17 0.68 0.00 0.27 ind:pas:3s; +persiflage persiflage NOM m s 0.19 0.41 0.19 0.34 +persiflages persiflage NOM m p 0.19 0.41 0.00 0.07 +persiflait persifler VER 0.17 0.68 0.00 0.27 ind:imp:3s; +persifle persifler VER 0.17 0.68 0.02 0.00 ind:pre:3s; +persifler persifler VER 0.17 0.68 0.14 0.14 inf; +persifleur persifleur ADJ m s 0.00 0.41 0.00 0.20 +persifleurs persifleur NOM m p 0.00 0.20 0.00 0.14 +persifleuse persifleur ADJ f s 0.00 0.41 0.00 0.14 +persiflé persifler VER m s 0.17 0.68 0.01 0.00 par:pas; +persil persil NOM m s 1.75 2.36 1.75 2.36 +persillé persillé ADJ m s 0.01 0.41 0.00 0.34 +persillée persillé ADJ f s 0.01 0.41 0.01 0.00 +persillées persillé ADJ f p 0.01 0.41 0.00 0.07 +persique persique ADJ m s 0.17 0.34 0.17 0.34 +persista persister VER 3.66 15.41 0.02 0.81 ind:pas:3s; +persistai persister VER 3.66 15.41 0.01 0.07 ind:pas:1s; +persistaient persister VER 3.66 15.41 0.02 1.22 ind:imp:3p; +persistais persister VER 3.66 15.41 0.02 0.14 ind:imp:1s; +persistait persister VER 3.66 15.41 0.04 4.32 ind:imp:3s; +persistance persistance NOM f s 0.17 1.76 0.17 1.76 +persistant persistant ADJ m s 0.67 2.64 0.17 1.22 +persistante persistant ADJ f s 0.67 2.64 0.31 1.08 +persistantes persistant ADJ f p 0.67 2.64 0.11 0.34 +persistants persistant ADJ m p 0.67 2.64 0.07 0.00 +persiste persister VER 3.66 15.41 1.11 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persistent persister VER 3.66 15.41 0.32 0.81 ind:pre:3p; +persister persister VER 3.66 15.41 0.27 0.88 inf; +persistera persister VER 3.66 15.41 0.12 0.07 ind:fut:3s; +persisterai persister VER 3.66 15.41 0.01 0.07 ind:fut:1s; +persisterait persister VER 3.66 15.41 0.01 0.07 cnd:pre:3s; +persisteriez persister VER 3.66 15.41 0.00 0.07 cnd:pre:2p; +persistes persister VER 3.66 15.41 0.47 0.34 ind:pre:2s; +persistez persister VER 3.66 15.41 1.06 0.74 imp:pre:2p;ind:pre:2p; +persistions persister VER 3.66 15.41 0.00 0.14 ind:imp:1p; +persistons persister VER 3.66 15.41 0.01 0.07 imp:pre:1p;ind:pre:1p; +persistèrent persister VER 3.66 15.41 0.01 0.07 ind:pas:3p; +persisté persister VER m s 3.66 15.41 0.14 0.54 par:pas; +perso perso ADJ s 2.38 0.20 2.33 0.20 +persona_grata persona_grata ADJ 0.01 0.00 0.01 0.00 +persona_non_grata persona_non_grata NOM f 0.08 0.07 0.08 0.07 +personnage_clé personnage_clé NOM m s 0.02 0.00 0.02 0.00 +personnage personnage NOM m s 31.62 86.96 20.65 49.80 +personnages personnage NOM m p 31.62 86.96 10.97 37.16 +personnalisaient personnaliser VER 0.30 0.47 0.00 0.07 ind:imp:3p; +personnalisation personnalisation NOM f s 0.05 0.00 0.05 0.00 +personnalise personnaliser VER 0.30 0.47 0.00 0.07 ind:pre:3s; +personnalisent personnaliser VER 0.30 0.47 0.00 0.07 ind:pre:3p; +personnaliser personnaliser VER 0.30 0.47 0.10 0.07 inf; +personnalisez personnaliser VER 0.30 0.47 0.01 0.00 imp:pre:2p; +personnalisme personnalisme NOM m s 0.00 0.20 0.00 0.20 +personnalisons personnaliser VER 0.30 0.47 0.01 0.00 imp:pre:1p; +personnalisé personnalisé ADJ m s 0.64 0.27 0.39 0.07 +personnalisée personnalisé ADJ f s 0.64 0.27 0.20 0.07 +personnalisées personnalisé ADJ f p 0.64 0.27 0.05 0.14 +personnalité personnalité NOM f s 16.90 19.86 13.85 13.24 +personnalités personnalité NOM f p 16.90 19.86 3.04 6.62 +personne personne PRO:ind m s 577.60 312.16 577.60 312.16 +personnel personnel ADJ m s 61.02 50.00 28.48 18.38 +personnelle personnel ADJ f s 61.02 50.00 15.28 17.30 +personnellement personnellement ADV 18.39 14.93 18.39 14.93 +personnelles personnel ADJ f p 61.02 50.00 7.66 7.36 +personnels personnel ADJ m p 61.02 50.00 9.60 6.96 +personnes personne NOM f p 296.74 209.80 105.79 63.85 +personnifiaient personnifier VER 0.28 0.74 0.00 0.07 ind:imp:3p; +personnifiait personnifier VER 0.28 0.74 0.03 0.07 ind:imp:3s; +personnifiant personnifier VER 0.28 0.74 0.00 0.07 par:pre; +personnification personnification NOM f s 0.30 0.20 0.30 0.14 +personnifications personnification NOM f p 0.30 0.20 0.00 0.07 +personnifie personnifier VER 0.28 0.74 0.05 0.14 ind:pre:1s;ind:pre:3s; +personnifier personnifier VER 0.28 0.74 0.04 0.07 inf; +personnifié personnifié ADJ m s 0.30 0.54 0.17 0.41 +personnifiée personnifié ADJ f s 0.30 0.54 0.14 0.14 +persos perso ADJ p 2.38 0.20 0.06 0.00 +perspective perspective NOM f s 7.33 36.76 5.47 27.64 +perspectives perspective NOM f p 7.33 36.76 1.86 9.12 +perspicace perspicace ADJ s 2.31 2.50 2.16 1.69 +perspicaces perspicace ADJ m p 2.31 2.50 0.15 0.81 +perspicacité perspicacité NOM f s 0.95 1.28 0.95 1.28 +perspiration perspiration NOM f s 0.03 0.00 0.03 0.00 +persuada persuader VER 19.86 36.55 0.24 1.76 ind:pas:3s; +persuadai persuader VER 19.86 36.55 0.01 0.68 ind:pas:1s; +persuadaient persuader VER 19.86 36.55 0.02 0.34 ind:imp:3p; +persuadais persuader VER 19.86 36.55 0.01 0.88 ind:imp:1s; +persuadait persuader VER 19.86 36.55 0.28 1.15 ind:imp:3s; +persuadant persuader VER 19.86 36.55 0.24 1.22 par:pre; +persuade persuader VER 19.86 36.55 1.55 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persuadent persuader VER 19.86 36.55 0.36 0.07 ind:pre:3p; +persuader persuader VER 19.86 36.55 4.50 12.23 inf; +persuadera persuader VER 19.86 36.55 0.29 0.07 ind:fut:3s; +persuaderai persuader VER 19.86 36.55 0.03 0.07 ind:fut:1s; +persuaderais persuader VER 19.86 36.55 0.02 0.07 cnd:pre:1s; +persuaderait persuader VER 19.86 36.55 0.00 0.14 cnd:pre:3s; +persuaderas persuader VER 19.86 36.55 0.03 0.00 ind:fut:2s; +persuaderez persuader VER 19.86 36.55 0.05 0.00 ind:fut:2p; +persuaderons persuader VER 19.86 36.55 0.02 0.00 ind:fut:1p; +persuadez persuader VER 19.86 36.55 0.83 0.00 imp:pre:2p;ind:pre:2p; +persuadiez persuader VER 19.86 36.55 0.04 0.00 ind:imp:2p; +persuadons persuader VER 19.86 36.55 0.04 0.07 imp:pre:1p;ind:pre:1p; +persuadèrent persuader VER 19.86 36.55 0.01 0.20 ind:pas:3p; +persuadé persuader VER m s 19.86 36.55 7.17 10.07 par:pas; +persuadée persuader VER f s 19.86 36.55 2.65 3.78 ind:imp:3s;par:pas; +persuadées persuader VER f p 19.86 36.55 0.01 0.00 par:pas; +persuadés persuader VER m p 19.86 36.55 1.46 1.62 par:pas; +persuasif persuasif ADJ m s 1.28 2.50 0.80 1.15 +persuasifs persuasif ADJ m p 1.28 2.50 0.16 0.27 +persuasion persuasion NOM f s 0.81 2.09 0.81 2.09 +persuasive persuasif ADJ f s 1.28 2.50 0.33 0.81 +persuasives persuasif ADJ f p 1.28 2.50 0.00 0.27 +persécutaient persécuter VER 4.52 4.19 0.00 0.07 ind:imp:3p; +persécutait persécuter VER 4.52 4.19 0.05 0.07 ind:imp:3s; +persécutant persécuter VER 4.52 4.19 0.01 0.34 par:pre; +persécute persécuter VER 4.52 4.19 1.22 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persécutent persécuter VER 4.52 4.19 0.47 0.27 ind:pre:3p; +persécuter persécuter VER 4.52 4.19 0.75 0.47 inf; +persécuteraient persécuter VER 4.52 4.19 0.00 0.07 cnd:pre:3p; +persécuterez persécuter VER 4.52 4.19 0.14 0.00 ind:fut:2p; +persécutes persécuter VER 4.52 4.19 0.16 0.00 ind:pre:2s; +persécuteur persécuteur NOM m s 0.25 0.95 0.05 0.20 +persécuteurs persécuteur NOM m p 0.25 0.95 0.20 0.68 +persécutez persécuter VER 4.52 4.19 0.08 0.00 imp:pre:2p;ind:pre:2p; +persécution persécution NOM f s 2.40 4.66 1.79 2.09 +persécutions persécution NOM f p 2.40 4.66 0.61 2.57 +persécutrices persécuteur NOM f p 0.25 0.95 0.00 0.07 +persécuté persécuter VER m s 4.52 4.19 0.60 1.49 par:pas; +persécutée persécuter VER f s 4.52 4.19 0.37 0.20 par:pas; +persécutées persécuter VER f p 4.52 4.19 0.04 0.20 par:pas; +persécutés persécuter VER m p 4.52 4.19 0.63 0.47 par:pas; +perséides perséides NOM f p 0.01 0.00 0.01 0.00 +persévère persévérer VER 1.47 3.24 0.38 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +persévères persévérer VER 1.47 3.24 0.12 0.00 ind:pre:2s; +persévéra persévérer VER 1.47 3.24 0.00 0.14 ind:pas:3s; +persévérai persévérer VER 1.47 3.24 0.00 0.27 ind:pas:1s; +persévéraient persévérer VER 1.47 3.24 0.00 0.07 ind:imp:3p; +persévérait persévérer VER 1.47 3.24 0.01 0.20 ind:imp:3s; +persévéramment persévéramment ADV 0.00 0.07 0.00 0.07 +persévérance persévérance NOM f s 0.75 2.09 0.75 2.09 +persévérant persévérant ADJ m s 0.36 0.34 0.30 0.14 +persévérante persévérant ADJ f s 0.36 0.34 0.04 0.00 +persévérantes persévérant ADJ f p 0.36 0.34 0.00 0.14 +persévérants persévérant ADJ m p 0.36 0.34 0.02 0.07 +persévérer persévérer VER 1.47 3.24 0.48 1.28 inf; +persévérerai persévérer VER 1.47 3.24 0.02 0.00 ind:fut:1s; +persévérerait persévérer VER 1.47 3.24 0.01 0.00 cnd:pre:3s; +persévérez persévérer VER 1.47 3.24 0.24 0.20 imp:pre:2p;ind:pre:2p; +persévériez persévérer VER 1.47 3.24 0.00 0.07 ind:imp:2p; +persévérions persévérer VER 1.47 3.24 0.01 0.00 ind:imp:1p; +persévérons persévérer VER 1.47 3.24 0.04 0.20 imp:pre:1p;ind:pre:1p; +persévéré persévérer VER m s 1.47 3.24 0.12 0.27 par:pas; +perte perte NOM f s 37.80 36.28 30.20 26.62 +pertes perte NOM f p 37.80 36.28 7.60 9.66 +perçût percevoir VER 7.39 41.01 0.00 0.14 sub:imp:3s; +perça percer VER 15.77 42.03 0.04 1.15 ind:pas:3s; +perçage perçage NOM m s 0.03 0.07 0.03 0.07 +perçaient percer VER 15.77 42.03 0.23 2.03 ind:imp:3p; +perçais percer VER 15.77 42.03 0.01 0.20 ind:imp:1s; +perçait percer VER 15.77 42.03 0.31 5.00 ind:imp:3s; +perçant perçant ADJ m s 0.90 5.74 0.41 2.50 +perçante perçant ADJ f s 0.90 5.74 0.22 0.81 +perçantes perçant ADJ f p 0.90 5.74 0.00 0.14 +perçants perçant ADJ m p 0.90 5.74 0.27 2.30 +perçois percevoir VER 7.39 41.01 1.50 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +perçoit percevoir VER 7.39 41.01 0.90 4.73 ind:pre:3s; +perçoive percevoir VER 7.39 41.01 0.13 0.47 sub:pre:1s;sub:pre:3s; +perçoivent percevoir VER 7.39 41.01 0.26 0.81 ind:pre:3p; +perçons percer VER 15.77 42.03 0.05 0.00 imp:pre:1p;ind:pre:1p; +perçât percer VER 15.77 42.03 0.00 0.07 sub:imp:3s; +perçu percevoir VER m s 7.39 41.01 1.41 4.53 par:pas; +perçue percevoir VER f s 7.39 41.01 0.40 0.81 par:pas; +perçues perçu ADJ f p 0.31 1.35 0.06 0.07 +perçurent percevoir VER 7.39 41.01 0.01 0.41 ind:pas:3p; +perçus percevoir VER m p 7.39 41.01 0.24 1.35 ind:pas:1s;par:pas; +perçut percevoir VER 7.39 41.01 0.05 4.32 ind:pas:3s; +pertinemment pertinemment ADV 0.77 1.49 0.77 1.49 +pertinence pertinence NOM f s 0.57 0.34 0.57 0.34 +pertinent pertinent ADJ m s 2.22 1.28 1.10 0.41 +pertinente pertinent ADJ f s 2.22 1.28 0.58 0.27 +pertinentes pertinent ADJ f p 2.22 1.28 0.33 0.41 +pertinents pertinent ADJ m p 2.22 1.28 0.21 0.20 +pertuis pertuis NOM m 0.00 0.34 0.00 0.34 +pertuisane pertuisane NOM f s 0.00 0.20 0.00 0.07 +pertuisanes pertuisane NOM f p 0.00 0.20 0.00 0.14 +perturba perturber VER 11.79 3.58 0.03 0.00 ind:pas:3s; +perturbaient perturber VER 11.79 3.58 0.01 0.07 ind:imp:3p; +perturbait perturber VER 11.79 3.58 0.28 0.27 ind:imp:3s; +perturbant perturbant ADJ m s 1.00 0.14 0.83 0.07 +perturbante perturbant ADJ f s 1.00 0.14 0.13 0.00 +perturbants perturbant ADJ m p 1.00 0.14 0.04 0.07 +perturbateur perturbateur ADJ m s 0.36 0.54 0.27 0.34 +perturbateurs perturbateur NOM m p 0.17 0.20 0.06 0.00 +perturbation perturbation NOM f s 1.79 1.55 1.20 0.47 +perturbations perturbation NOM f p 1.79 1.55 0.59 1.08 +perturbatrice perturbateur ADJ f s 0.36 0.54 0.04 0.07 +perturbe perturber VER 11.79 3.58 2.54 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +perturbent perturber VER 11.79 3.58 0.32 0.07 ind:pre:3p; +perturber perturber VER 11.79 3.58 2.66 1.15 inf; +perturbera perturber VER 11.79 3.58 0.10 0.00 ind:fut:3s; +perturberait perturber VER 11.79 3.58 0.12 0.00 cnd:pre:3s; +perturberont perturber VER 11.79 3.58 0.02 0.00 ind:fut:3p; +perturbez perturber VER 11.79 3.58 0.12 0.00 ind:pre:2p; +perturbé perturber VER m s 11.79 3.58 2.83 1.01 par:pas; +perturbée perturber VER f s 11.79 3.58 2.08 0.34 par:pas; +perturbées perturber VER f p 11.79 3.58 0.20 0.00 par:pas; +perturbés perturbé ADJ m p 3.81 0.74 0.52 0.34 +pervenche pervenche ADJ 0.33 1.08 0.33 1.08 +pervenches pervenche NOM f p 0.37 0.81 0.08 0.47 +pervers pervers NOM m 8.01 0.88 7.77 0.54 +perverse pervers ADJ f s 5.83 6.15 1.27 2.23 +perversement perversement ADV 0.00 0.14 0.00 0.14 +perverses pervers ADJ f p 5.83 6.15 0.41 0.54 +perversion perversion NOM f s 3.00 1.69 1.61 1.22 +perversions perversion NOM f p 3.00 1.69 1.39 0.47 +perversité perversité NOM f s 0.72 1.49 0.72 1.49 +perverti perverti ADJ m s 0.74 0.61 0.45 0.14 +pervertie pervertir VER f s 1.55 1.49 0.17 0.20 par:pas; +perverties perverti ADJ f p 0.74 0.61 0.03 0.07 +pervertir pervertir VER 1.55 1.49 0.65 0.74 inf; +pervertis perverti ADJ m p 0.74 0.61 0.16 0.20 +pervertissaient pervertir VER 1.55 1.49 0.00 0.07 ind:imp:3p; +pervertissait pervertir VER 1.55 1.49 0.00 0.07 ind:imp:3s; +pervertissant pervertir VER 1.55 1.49 0.01 0.00 par:pre; +pervertisse pervertir VER 1.55 1.49 0.02 0.00 sub:pre:1s;sub:pre:3s; +pervertit pervertir VER 1.55 1.49 0.29 0.00 ind:pre:3s; +pesa peser VER 23.41 70.88 0.01 2.16 ind:pas:3s; +pesage pesage NOM m s 0.00 0.68 0.00 0.68 +pesai peser VER 23.41 70.88 0.00 0.07 ind:pas:1s; +pesaient peser VER 23.41 70.88 0.35 3.99 ind:imp:3p; +pesais peser VER 23.41 70.88 0.27 0.81 ind:imp:1s;ind:imp:2s; +pesait peser VER 23.41 70.88 1.95 18.72 ind:imp:3s; +pesamment pesamment ADV 0.00 4.93 0.00 4.93 +pesant pesant ADJ m s 2.62 17.64 1.21 6.76 +pesante pesant ADJ f s 2.62 17.64 0.79 6.69 +pesantes pesant ADJ f p 2.62 17.64 0.01 2.16 +pesanteur pesanteur NOM f s 1.12 6.96 1.12 6.69 +pesanteurs pesanteur NOM f p 1.12 6.96 0.00 0.27 +pesants pesant ADJ m p 2.62 17.64 0.61 2.03 +peser peser VER 23.41 70.88 3.92 13.72 inf; +peseta peseta NOM f s 6.92 0.68 0.11 0.07 +pesetas peseta NOM f p 6.92 0.68 6.81 0.61 +peseurs peseur NOM m p 0.00 0.07 0.00 0.07 +pesez peser VER 23.41 70.88 0.88 0.14 imp:pre:2p;ind:pre:2p; +pesions peser VER 23.41 70.88 0.00 0.14 ind:imp:1p; +peso peso NOM m s 11.02 0.81 0.73 0.20 +peson peson NOM m s 0.00 0.20 0.00 0.20 +pesons peser VER 23.41 70.88 0.16 0.27 imp:pre:1p;ind:pre:1p; +pesos peso NOM m p 11.02 0.81 10.29 0.61 +pesât peser VER 23.41 70.88 0.00 0.07 sub:imp:3s; +pessah pessah NOM s 0.03 0.00 0.03 0.00 +pessaire pessaire NOM m s 0.01 0.00 0.01 0.00 +pesse pesse NOM f s 0.01 0.00 0.01 0.00 +pessimisme pessimisme NOM m s 0.75 2.30 0.75 2.30 +pessimiste pessimiste ADJ s 1.45 3.65 1.38 2.50 +pessimistes pessimiste NOM p 0.41 0.81 0.07 0.20 +pesta pester VER 0.34 4.59 0.00 0.54 ind:pas:3s; +pestaient pester VER 0.34 4.59 0.00 0.07 ind:imp:3p; +pestais pester VER 0.34 4.59 0.03 0.14 ind:imp:1s;ind:imp:2s; +pestait pester VER 0.34 4.59 0.01 1.15 ind:imp:3s; +pestant pester VER 0.34 4.59 0.02 1.08 par:pre; +peste peste ONO 0.40 0.20 0.40 0.20 +pestent pester VER 0.34 4.59 0.16 0.20 ind:pre:3p; +pester pester VER 0.34 4.59 0.02 0.61 inf; +pestes peste NOM f p 16.95 8.31 0.27 0.07 +pesteuse pesteux ADJ f s 0.00 0.07 0.00 0.07 +pestez pester VER 0.34 4.59 0.00 0.07 ind:pre:2p; +pesèrent peser VER 23.41 70.88 0.01 0.07 ind:pas:3p; +pesticide pesticide NOM m s 1.11 0.00 0.21 0.00 +pesticides pesticide NOM m p 1.11 0.00 0.90 0.00 +pestiféré pestiféré NOM m s 0.71 1.01 0.15 0.20 +pestiférée pestiféré NOM f s 0.71 1.01 0.21 0.07 +pestiférées pestiféré NOM f p 0.71 1.01 0.00 0.07 +pestiférés pestiféré NOM m p 0.71 1.01 0.36 0.68 +pestilence pestilence NOM f s 0.08 1.22 0.06 1.15 +pestilences pestilence NOM f p 0.08 1.22 0.02 0.07 +pestilentiel pestilentiel ADJ m s 0.63 1.08 0.27 0.14 +pestilentielle pestilentiel ADJ f s 0.63 1.08 0.04 0.54 +pestilentielles pestilentiel ADJ f p 0.63 1.08 0.30 0.27 +pestilentiels pestilentiel ADJ m p 0.63 1.08 0.01 0.14 +pesté pester VER m s 0.34 4.59 0.00 0.20 par:pas; +pesé peser VER m s 23.41 70.88 0.97 5.27 par:pas; +pesée pesée NOM f s 0.61 2.36 0.61 2.09 +pesées peser VER f p 23.41 70.88 0.02 0.14 par:pas; +pesés peser VER m p 23.41 70.88 0.02 0.61 par:pas; +pet_de_loup pet_de_loup NOM m s 0.00 0.07 0.00 0.07 +pet pet NOM m s 4.30 5.41 3.51 4.53 +petiot petiot ADJ m s 0.69 1.49 0.56 0.81 +petiote petiot ADJ f s 0.69 1.49 0.11 0.54 +petiots petiot ADJ m p 0.69 1.49 0.03 0.14 +petit_beurre petit_beurre NOM m s 0.00 0.95 0.00 0.14 +petit_bourgeois petit_bourgeois ADJ m 0.77 1.42 0.77 1.42 +petit_cousin petit_cousin NOM m s 0.00 0.07 0.00 0.07 +petit_déjeuner petit_déjeuner NOM m s 13.51 0.07 13.37 0.00 +petit_fils petit_fils NOM m 12.90 12.70 12.50 11.01 +petit_four petit_four NOM m s 0.08 0.07 0.03 0.00 +petit_gris petit_gris NOM m 0.51 0.00 0.27 0.00 +petit_lait petit_lait NOM m s 0.05 0.54 0.05 0.54 +petit_maître petit_maître NOM m s 0.20 0.07 0.20 0.07 +petit_neveu petit_neveu NOM m s 0.04 0.95 0.04 0.61 +petit_nègre petit_nègre NOM m s 0.00 0.14 0.00 0.14 +petit_salé petit_salé NOM m s 0.00 0.07 0.00 0.07 +petit_suisse petit_suisse NOM m s 0.01 0.20 0.01 0.00 +petit petit ADJ m s 1106.80 1541.96 573.72 653.78 +petite_bourgeoise petite_bourgeoise ADJ f s 0.11 0.27 0.11 0.27 +petite_cousine petite_cousine NOM f s 0.00 0.14 0.00 0.14 +petite_fille petite_fille NOM f s 5.30 6.35 4.97 5.74 +petite_nièce petite_nièce NOM f s 0.02 0.20 0.02 0.20 +petite petit ADJ f s 1106.80 1541.96 355.66 491.82 +petitement petitement ADV 0.14 1.15 0.14 1.15 +petite_bourgeoise petite_bourgeoise NOM f p 0.00 0.34 0.00 0.14 +petite_fille petite_fille NOM f p 5.30 6.35 0.33 0.61 +petites petit ADJ f p 1106.80 1541.96 64.50 152.16 +petitesse petitesse NOM f s 0.09 2.16 0.08 1.82 +petitesses petitesse NOM f p 0.09 2.16 0.01 0.34 +petit_beurre petit_beurre NOM m p 0.00 0.95 0.00 0.81 +petit_bourgeois petit_bourgeois NOM m p 0.71 2.16 0.32 1.42 +petit_déjeuner petit_déjeuner NOM m p 13.51 0.07 0.14 0.07 +petit_enfant petit_enfant NOM m p 5.76 3.04 5.76 3.04 +petit_fils petit_fils NOM m p 12.90 12.70 0.40 1.69 +petit_four petit_four NOM m p 0.08 0.07 0.04 0.07 +petit_gris petit_gris NOM m p 0.51 0.00 0.25 0.00 +petit_neveu petit_neveu NOM m p 0.04 0.95 0.00 0.34 +petits_pois petits_pois NOM m p 0.10 0.00 0.10 0.00 +petit_suisse petit_suisse NOM m p 0.01 0.20 0.00 0.20 +petits petit ADJ m p 1106.80 1541.96 112.92 244.19 +peton peton NOM m s 0.09 0.47 0.01 0.07 +petons peton NOM m p 0.09 0.47 0.08 0.41 +petros petro NOM m p 0.00 1.28 0.00 1.28 +pet_de_nonne pet_de_nonne NOM m p 0.00 0.41 0.00 0.41 +pets pet NOM m p 4.30 5.41 0.79 0.88 +petzouille petzouille NOM s 0.01 0.20 0.00 0.07 +petzouilles petzouille NOM p 0.01 0.20 0.01 0.14 +peu_ou_prou peu_ou_prou ADV 0.40 0.68 0.40 0.68 +peu peu NOM m 894.78 1023.38 894.78 1023.38 +peuchère peuchère ONO 0.14 0.41 0.14 0.41 +peuh peuh ONO 0.08 1.96 0.08 1.96 +peuhl peuhl ADJ m s 0.00 0.14 0.00 0.14 +peul peul ADJ m s 0.02 0.07 0.02 0.07 +peulh peulh NOM s 0.00 0.07 0.00 0.07 +peupla peupler VER 4.58 19.66 0.02 0.34 ind:pas:3s; +peuplade peuplade NOM f s 0.16 1.35 0.01 0.61 +peuplades peuplade NOM f p 0.16 1.35 0.15 0.74 +peuplaient peupler VER 4.58 19.66 0.00 1.28 ind:imp:3p; +peuplait peupler VER 4.58 19.66 0.04 1.15 ind:imp:3s; +peuplant peupler VER 4.58 19.66 0.12 0.47 par:pre; +peuple peuple NOM m s 111.36 107.30 105.65 89.39 +peuplement peuplement NOM m s 0.04 0.88 0.04 0.47 +peuplements peuplement NOM m p 0.04 0.88 0.00 0.41 +peuplent peupler VER 4.58 19.66 0.56 1.62 ind:pre:3p; +peupler peupler VER 4.58 19.66 0.23 1.22 inf; +peuplera peupler VER 4.58 19.66 0.01 0.00 ind:fut:3s; +peupleraie peupleraie NOM f s 0.00 0.07 0.00 0.07 +peuplerait peupler VER 4.58 19.66 0.00 0.14 cnd:pre:3s; +peupleront peupler VER 4.58 19.66 0.11 0.07 ind:fut:3p; +peuples peuple NOM m p 111.36 107.30 5.71 17.91 +peuplier peuplier NOM m s 1.08 9.93 0.70 3.04 +peupliers peuplier NOM m p 1.08 9.93 0.37 6.89 +peuplèrent peupler VER 4.58 19.66 0.01 0.07 ind:pas:3p; +peuplé peupler VER m s 4.58 19.66 1.48 5.27 par:pas; +peuplée peupler VER f s 4.58 19.66 0.80 4.59 par:pas; +peuplées peupler VER f p 4.58 19.66 0.23 1.35 par:pas; +peuplés peupler VER m p 4.58 19.66 0.05 0.74 par:pas; +peur peur NOM f s 557.21 311.69 551.83 307.23 +peureuse peureux ADJ f s 2.31 3.51 0.94 1.15 +peureusement peureusement ADV 0.00 0.88 0.00 0.88 +peureuses peureux ADJ f p 2.31 3.51 0.12 0.20 +peureux peureux ADJ m 2.31 3.51 1.25 2.16 +peurs peur NOM f p 557.21 311.69 5.38 4.46 +peut_être peut_être ADV 907.68 697.97 907.68 697.97 +peut pouvoir VER 5524.52 2659.80 1209.64 508.99 ind:pre:3s; +peuvent pouvoir VER 5524.52 2659.80 133.30 69.32 ind:pre:3p; +peux pouvoir VER 5524.52 2659.80 1743.78 245.41 ind:pre:1s;ind:pre:2s; +peyotl peyotl NOM m s 0.16 0.07 0.16 0.07 +pfennig pfennig NOM m s 0.61 0.14 0.01 0.07 +pfennigs pfennig NOM m p 0.61 0.14 0.60 0.07 +pff pff ONO 1.59 0.41 1.59 0.41 +pfft pfft ONO 0.98 0.27 0.98 0.27 +pfutt pfutt ONO 0.00 0.07 0.00 0.07 +ph ph NOM m s 0.30 0.20 0.30 0.20 +phacochère phacochère NOM m s 0.50 0.20 0.47 0.14 +phacochères phacochère NOM m p 0.50 0.20 0.03 0.07 +phagocyte phagocyte NOM m s 0.04 0.07 0.01 0.00 +phagocyter phagocyter VER 0.00 0.14 0.00 0.07 inf; +phagocytes phagocyte NOM m p 0.04 0.07 0.03 0.07 +phalange phalange NOM f s 1.00 5.20 0.58 1.69 +phalanges phalange NOM f p 1.00 5.20 0.42 3.51 +phalangettes phalangette NOM f p 0.00 0.14 0.00 0.14 +phalangine phalangine NOM f s 0.00 0.07 0.00 0.07 +phalangisme phalangisme NOM m s 0.00 0.07 0.00 0.07 +phalangiste phalangiste NOM s 0.01 0.20 0.00 0.07 +phalangistes phalangiste NOM p 0.01 0.20 0.01 0.14 +phalanstère phalanstère NOM m s 0.00 0.41 0.00 0.41 +phalarope phalarope NOM m s 0.05 0.00 0.05 0.00 +phallique phallique ADJ s 0.43 1.08 0.38 0.95 +phalliques phallique ADJ p 0.43 1.08 0.05 0.14 +phallo phallo NOM m s 0.14 0.07 0.14 0.07 +phalloïdes phalloïde ADJ p 0.00 0.07 0.00 0.07 +phallocentrique phallocentrique ADJ s 0.01 0.00 0.01 0.00 +phallocrate phallocrate ADJ f s 0.03 0.14 0.03 0.14 +phallocratie phallocratie NOM f s 0.01 0.14 0.01 0.14 +phallocratique phallocratique ADJ m s 0.00 0.14 0.00 0.07 +phallocratiques phallocratique ADJ p 0.00 0.14 0.00 0.07 +phallologie phallologie NOM f s 0.00 0.14 0.00 0.14 +phallophore phallophore NOM m s 0.00 0.14 0.00 0.14 +phallus phallus NOM m 0.44 1.42 0.44 1.42 +phalène phalène NOM f s 0.06 0.68 0.05 0.34 +phalènes phalène NOM f p 0.06 0.68 0.01 0.34 +phalère phalère NOM f s 0.05 0.20 0.05 0.20 +phantasme phantasme NOM m s 0.27 2.36 0.00 0.41 +phantasmes phantasme NOM m p 0.27 2.36 0.27 1.96 +phanères phanère NOM m p 0.00 0.07 0.00 0.07 +phanérogames phanérogame NOM f p 0.00 0.14 0.00 0.14 +pharamineuses pharamineux ADJ f p 0.01 0.34 0.00 0.14 +pharamineux pharamineux ADJ m s 0.01 0.34 0.01 0.20 +pharaon pharaon NOM m s 3.63 2.64 2.50 1.62 +pharaonique pharaonique ADJ m s 0.02 0.68 0.01 0.61 +pharaoniques pharaonique ADJ f p 0.02 0.68 0.01 0.07 +pharaonnes pharaon NOM f p 3.63 2.64 0.00 0.07 +pharaons pharaon NOM m p 3.63 2.64 1.12 0.95 +phare phare NOM m s 11.88 31.49 7.17 10.68 +phares phare NOM m p 11.88 31.49 4.70 20.81 +pharisaïque pharisaïque ADJ s 0.06 0.07 0.04 0.00 +pharisaïques pharisaïque ADJ f p 0.06 0.07 0.02 0.07 +pharisaïsme pharisaïsme NOM m s 0.01 0.20 0.01 0.14 +pharisaïsmes pharisaïsme NOM m p 0.01 0.20 0.00 0.07 +pharisien pharisien NOM m s 1.46 0.74 0.02 0.14 +pharisiens pharisien NOM m p 1.46 0.74 1.44 0.61 +pharma pharma NOM s 0.04 0.14 0.04 0.14 +pharmaceutique pharmaceutique ADJ s 2.82 1.42 1.48 0.54 +pharmaceutiques pharmaceutique ADJ p 2.82 1.42 1.35 0.88 +pharmacie pharmacie NOM f s 10.46 10.20 10.08 9.32 +pharmacien pharmacien NOM m s 3.71 7.30 3.19 4.86 +pharmacienne pharmacien NOM f s 3.71 7.30 0.35 1.76 +pharmaciens pharmacien NOM m p 3.71 7.30 0.17 0.68 +pharmacies pharmacie NOM f p 10.46 10.20 0.38 0.88 +pharmaco pharmaco NOM f s 0.01 0.20 0.01 0.20 +pharmacognosie pharmacognosie NOM f s 0.01 0.00 0.01 0.00 +pharmacologie pharmacologie NOM f s 0.37 0.07 0.37 0.07 +pharmacologique pharmacologique ADJ m s 0.02 0.00 0.02 0.00 +pharmacomanie pharmacomanie NOM f s 0.00 0.14 0.00 0.14 +pharmacopée pharmacopée NOM f s 0.25 0.20 0.25 0.20 +pharmacothérapie pharmacothérapie NOM f s 0.03 0.07 0.03 0.07 +pharyngite pharyngite NOM f s 0.01 0.00 0.01 0.00 +pharynx pharynx NOM m 0.01 0.41 0.01 0.41 +phascolome phascolome NOM m s 0.01 0.00 0.01 0.00 +phase phase NOM f s 13.22 9.32 12.42 6.76 +phases phase NOM f p 13.22 9.32 0.80 2.57 +phasmes phasme NOM m p 0.01 0.07 0.01 0.07 +phaéton phaéton NOM m s 0.00 0.27 0.00 0.27 +phi phi NOM m 0.39 0.20 0.39 0.20 +philanthrope philanthrope NOM s 0.87 0.68 0.84 0.54 +philanthropes philanthrope NOM p 0.87 0.68 0.03 0.14 +philanthropie philanthropie NOM f s 0.17 0.47 0.17 0.47 +philanthropique philanthropique ADJ s 0.07 0.54 0.03 0.27 +philanthropiques philanthropique ADJ f p 0.07 0.54 0.04 0.27 +philarète philarète ADJ s 0.00 0.07 0.00 0.07 +philarète philarète NOM s 0.00 0.07 0.00 0.07 +philatélie philatélie NOM f s 0.02 0.00 0.02 0.00 +philatéliste philatéliste NOM s 0.12 0.27 0.11 0.14 +philatélistes philatéliste NOM p 0.12 0.27 0.01 0.14 +philharmonie philharmonie NOM f s 0.21 0.00 0.21 0.00 +philharmonique philharmonique ADJ m s 0.59 0.34 0.59 0.34 +philhellène philhellène NOM m s 0.00 0.14 0.00 0.07 +philhellènes philhellène NOM m p 0.00 0.14 0.00 0.07 +philippin philippin NOM m s 0.25 0.41 0.03 0.41 +philippine philippin ADJ f s 0.41 1.15 0.23 0.20 +philippines philippin ADJ f p 0.41 1.15 0.13 0.54 +philippins philippin NOM m p 0.25 0.41 0.22 0.00 +philistin philistin NOM m s 0.12 0.07 0.05 0.07 +philistins philistin NOM m p 0.12 0.07 0.06 0.00 +philo philo NOM f s 2.35 3.24 2.35 3.18 +philodendron philodendron NOM m s 0.03 0.74 0.03 0.34 +philodendrons philodendron NOM m p 0.03 0.74 0.00 0.41 +philologie philologie NOM f s 0.21 0.74 0.21 0.74 +philologique philologique ADJ f s 0.00 0.14 0.00 0.07 +philologiques philologique ADJ f p 0.00 0.14 0.00 0.07 +philologue philologue NOM s 0.26 1.35 0.26 0.88 +philologues philologue NOM p 0.26 1.35 0.00 0.47 +philos philo NOM f p 2.35 3.24 0.00 0.07 +philosophaient philosopher VER 0.64 2.09 0.00 0.14 ind:imp:3p; +philosophaillerie philosophaillerie NOM f s 0.00 0.14 0.00 0.14 +philosophait philosopher VER 0.64 2.09 0.00 0.27 ind:imp:3s; +philosophal philosophal ADJ m s 0.07 0.68 0.00 0.07 +philosophale philosophal ADJ f s 0.07 0.68 0.07 0.54 +philosophales philosophal ADJ f p 0.07 0.68 0.00 0.07 +philosophant philosopher VER 0.64 2.09 0.00 0.07 par:pre; +philosophard philosophard ADJ m s 0.00 0.07 0.00 0.07 +philosophe philosophe NOM s 6.02 19.39 4.11 11.62 +philosopher philosopher VER 0.64 2.09 0.37 0.81 inf; +philosophes philosophe NOM p 6.02 19.39 1.91 7.77 +philosophie philosophie NOM f s 10.32 24.73 9.82 24.32 +philosophies philosophie NOM f p 10.32 24.73 0.50 0.41 +philosophique philosophique ADJ s 1.48 4.19 1.06 2.50 +philosophiquement philosophiquement ADV 0.09 0.68 0.09 0.68 +philosophiques philosophique ADJ p 1.48 4.19 0.42 1.69 +philosophons philosopher VER 0.64 2.09 0.01 0.00 imp:pre:1p; +philosophé philosopher VER m s 0.64 2.09 0.10 0.14 par:pas; +philosémites philosémite NOM m p 0.00 0.07 0.00 0.07 +philosémitisme philosémitisme NOM m s 0.00 0.07 0.00 0.07 +philotechnique philotechnique ADJ f s 0.00 0.07 0.00 0.07 +philtre philtre NOM m s 0.96 1.69 0.84 1.01 +philtres philtre NOM m p 0.96 1.69 0.11 0.68 +phimosis phimosis NOM m 0.00 0.20 0.00 0.20 +phlox phlox NOM m 0.00 0.34 0.00 0.34 +phlébite phlébite NOM f s 0.08 0.34 0.08 0.27 +phlébites phlébite NOM f p 0.08 0.34 0.00 0.07 +phlébographie phlébographie NOM f s 0.01 0.00 0.01 0.00 +phlébologue phlébologue NOM s 0.01 0.00 0.01 0.00 +phlébotomie phlébotomie NOM f s 0.01 0.00 0.01 0.00 +phobie phobie NOM f s 2.62 1.08 1.43 0.47 +phobies phobie NOM f p 2.62 1.08 1.20 0.61 +phobique phobique ADJ f s 0.04 0.14 0.04 0.14 +phobiques phobique ADJ p 0.04 0.14 0.01 0.00 +phocéenne phocéen ADJ f s 0.00 0.07 0.00 0.07 +phoenix phoenix NOM m 0.48 0.07 0.48 0.07 +phonatoire phonatoire ADJ s 0.00 0.07 0.00 0.07 +phone phone NOM m s 0.67 0.14 0.64 0.07 +phones phone NOM m p 0.67 0.14 0.04 0.07 +phonique phonique ADJ s 0.18 0.00 0.17 0.00 +phoniques phonique ADJ p 0.18 0.00 0.01 0.00 +phono phono NOM m s 0.75 5.47 0.75 5.20 +phonographe phonographe NOM m s 0.87 6.01 0.86 5.41 +phonographes phonographe NOM m p 0.87 6.01 0.01 0.61 +phonographiques phonographique ADJ f p 0.00 0.14 0.00 0.14 +phonologie phonologie NOM f s 0.00 0.14 0.00 0.14 +phonos phono NOM m p 0.75 5.47 0.00 0.27 +phonèmes phonème NOM m p 0.00 0.41 0.00 0.41 +phonéticien phonéticien NOM m s 0.00 0.07 0.00 0.07 +phonétique phonétique ADJ s 0.20 0.41 0.19 0.27 +phonétiquement phonétiquement ADV 0.03 0.07 0.03 0.07 +phonétiques phonétique ADJ m p 0.20 0.41 0.01 0.14 +phoque phoque NOM m s 2.81 4.19 2.24 2.77 +phoques phoque NOM m p 2.81 4.19 0.57 1.42 +phosgène phosgène NOM m s 0.23 0.00 0.23 0.00 +phosphatase phosphatase NOM f s 0.02 0.00 0.02 0.00 +phosphate phosphate NOM m s 0.43 0.68 0.38 0.41 +phosphates phosphate NOM m p 0.43 0.68 0.05 0.27 +phosphatine phosphatine NOM f s 0.10 0.07 0.10 0.07 +phospholipide phospholipide NOM m s 0.01 0.00 0.01 0.00 +phosphore phosphore NOM m s 1.46 2.16 1.46 2.16 +phosphorescence phosphorescence NOM f s 0.02 0.88 0.02 0.68 +phosphorescences phosphorescence NOM f p 0.02 0.88 0.00 0.20 +phosphorescent phosphorescent ADJ m s 0.38 5.47 0.08 1.42 +phosphorescente phosphorescent ADJ f s 0.38 5.47 0.23 2.03 +phosphorescentes phosphorescent ADJ f p 0.38 5.47 0.01 1.01 +phosphorescents phosphorescent ADJ m p 0.38 5.47 0.06 1.01 +phosphoré phosphorer VER m s 0.14 0.07 0.01 0.00 par:pas; +phosphorylation phosphorylation NOM f s 0.03 0.00 0.03 0.00 +phosphène phosphène NOM m s 0.00 0.27 0.00 0.07 +phosphènes phosphène NOM m p 0.00 0.27 0.00 0.20 +phot phot NOM m s 1.00 0.00 1.00 0.00 +photique photique ADJ f s 0.01 0.00 0.01 0.00 +photo_finish photo_finish NOM f s 0.01 0.00 0.01 0.00 +photo_robot photo_robot NOM f s 0.01 0.14 0.01 0.14 +photo_électrique photo_électrique ADJ f s 0.00 0.14 0.00 0.14 +photo photo NOM f s 209.10 94.59 122.47 54.66 +photochimique photochimique ADJ m s 0.01 0.00 0.01 0.00 +photocomposition photocomposition NOM f s 0.14 0.07 0.14 0.07 +photoconducteur photoconducteur ADJ m s 0.01 0.00 0.01 0.00 +photocopie photocopie NOM f s 3.89 0.88 1.50 0.41 +photocopient photocopier VER 1.83 0.41 0.01 0.00 ind:pre:3p; +photocopier photocopier VER 1.83 0.41 0.72 0.07 inf; +photocopiera photocopier VER 1.83 0.41 0.01 0.00 ind:fut:3s; +photocopierai photocopier VER 1.83 0.41 0.01 0.00 ind:fut:1s; +photocopies photocopie NOM f p 3.89 0.88 2.39 0.47 +photocopieur photocopieur NOM m s 2.46 0.20 0.11 0.00 +photocopieurs photocopieur NOM m p 2.46 0.20 0.07 0.00 +photocopieuse photocopieur NOM f s 2.46 0.20 2.28 0.00 +photocopieuses photocopieuse NOM f p 0.14 0.00 0.14 0.00 +photocopié photocopier VER m s 1.83 0.41 0.50 0.07 par:pas; +photocopiée photocopier VER f s 1.83 0.41 0.13 0.07 par:pas; +photocopiées photocopier VER f p 1.83 0.41 0.00 0.07 par:pas; +photocopiés photocopier VER m p 1.83 0.41 0.04 0.07 par:pas; +photogramme photogramme NOM m s 0.01 0.00 0.01 0.00 +photographe photographe NOM s 15.82 17.64 12.51 11.96 +photographes photographe NOM p 15.82 17.64 3.31 5.68 +photographia photographier VER 10.35 13.65 0.03 0.68 ind:pas:3s; +photographiable photographiable NOM f s 0.01 0.00 0.01 0.00 +photographiaient photographier VER 10.35 13.65 0.28 0.27 ind:imp:3p; +photographiais photographier VER 10.35 13.65 0.20 0.14 ind:imp:1s;ind:imp:2s; +photographiait photographier VER 10.35 13.65 0.34 0.34 ind:imp:3s; +photographiant photographier VER 10.35 13.65 0.03 0.47 par:pre; +photographie photographie NOM f s 8.36 41.08 7.42 23.78 +photographient photographier VER 10.35 13.65 0.19 0.07 ind:pre:3p; +photographier photographier VER 10.35 13.65 4.42 5.54 inf; +photographierai photographier VER 10.35 13.65 0.02 0.07 ind:fut:1s; +photographierait photographier VER 10.35 13.65 0.01 0.27 cnd:pre:3s; +photographierions photographier VER 10.35 13.65 0.00 0.07 cnd:pre:1p; +photographierons photographier VER 10.35 13.65 0.01 0.00 ind:fut:1p; +photographieront photographier VER 10.35 13.65 0.01 0.00 ind:fut:3p; +photographies photographie NOM f p 8.36 41.08 0.94 17.30 +photographiez photographier VER 10.35 13.65 0.35 0.00 imp:pre:2p;ind:pre:2p; +photographiât photographier VER 10.35 13.65 0.00 0.07 sub:imp:3s; +photographique photographique ADJ s 1.30 3.78 1.25 3.24 +photographiques photographique ADJ p 1.30 3.78 0.05 0.54 +photographièrent photographier VER 10.35 13.65 0.10 0.14 ind:pas:3p; +photographié photographier VER m s 10.35 13.65 1.73 2.57 par:pas; +photographiée photographier VER f s 10.35 13.65 0.23 0.88 par:pas; +photographiées photographier VER f p 10.35 13.65 0.11 0.14 par:pas; +photographiés photographier VER m p 10.35 13.65 0.48 0.95 par:pas; +photograveur photograveur NOM m s 0.00 0.07 0.00 0.07 +photogravure photogravure NOM f s 0.04 0.07 0.04 0.07 +photogénie photogénie NOM f s 0.34 0.07 0.34 0.07 +photogénique photogénique ADJ s 2.01 0.41 1.97 0.34 +photogéniques photogénique ADJ p 2.01 0.41 0.04 0.07 +photojournalisme photojournalisme NOM m s 0.02 0.00 0.02 0.00 +photojournaliste photojournaliste NOM s 0.01 0.00 0.01 0.00 +photomaton photomaton ADJ m s 0.92 1.01 0.37 0.81 +photomatons photomaton ADJ m p 0.92 1.01 0.55 0.20 +photomicrographie photomicrographie NOM f s 0.01 0.00 0.01 0.00 +photomontage photomontage NOM m s 0.00 0.14 0.00 0.07 +photomontages photomontage NOM m p 0.00 0.14 0.00 0.07 +photon photon NOM m s 0.24 0.00 0.09 0.00 +photonique photonique ADJ f s 0.15 0.00 0.15 0.00 +photons photon NOM m p 0.24 0.00 0.16 0.00 +photophobie photophobie NOM f s 0.04 0.00 0.04 0.00 +photopile photopile NOM f s 0.12 0.00 0.12 0.00 +photopériodique photopériodique ADJ f s 0.01 0.00 0.01 0.00 +photos photo NOM f p 209.10 94.59 86.63 39.93 +photosensibilité photosensibilité NOM f s 0.04 0.00 0.04 0.00 +photosensible photosensible ADJ m s 0.08 0.07 0.06 0.07 +photosensibles photosensible ADJ p 0.08 0.07 0.02 0.00 +photostat photostat NOM m s 0.06 0.00 0.06 0.00 +photosynthèse photosynthèse NOM f s 0.25 0.00 0.25 0.00 +phototaxie phototaxie NOM f s 0.02 0.00 0.02 0.00 +phototype phototype NOM m s 0.01 0.00 0.01 0.00 +photoélectrique photoélectrique ADJ s 0.02 0.00 0.02 0.00 +photovoltaïque photovoltaïque ADJ m s 0.01 0.00 0.01 0.00 +phragmites phragmite NOM m p 0.00 0.07 0.00 0.07 +phrase_clé phrase_clé NOM f s 0.02 0.00 0.02 0.00 +phrase_robot phrase_robot NOM f s 0.00 0.07 0.00 0.07 +phrase phrase NOM f s 22.01 140.47 15.40 86.76 +phraser phraser VER 0.19 0.74 0.01 0.00 inf; +phrases_clé phrases_clé NOM f p 0.00 0.07 0.00 0.07 +phrases phrase NOM f p 22.01 140.47 6.61 53.72 +phraseur phraseur NOM m s 0.02 0.14 0.01 0.07 +phraseurs phraseur NOM m p 0.02 0.14 0.01 0.07 +phrasé phrasé NOM m s 0.05 0.20 0.05 0.20 +phrasée phraser VER f s 0.19 0.74 0.00 0.07 par:pas; +phraséologie phraséologie NOM f s 0.02 0.27 0.02 0.20 +phraséologies phraséologie NOM f p 0.02 0.27 0.00 0.07 +phraséologique phraséologique ADJ f s 0.00 0.07 0.00 0.07 +phréatique phréatique ADJ f s 0.17 0.27 0.16 0.20 +phréatiques phréatique ADJ f p 0.17 0.27 0.01 0.07 +phrénique phrénique ADJ m s 0.01 0.00 0.01 0.00 +phrénologie phrénologie NOM f s 0.03 0.00 0.03 0.00 +phrénologiste phrénologiste NOM s 0.01 0.07 0.01 0.00 +phrénologistes phrénologiste NOM p 0.01 0.07 0.00 0.07 +phrénologues phrénologue NOM p 0.00 0.07 0.00 0.07 +phrygien phrygien ADJ m s 0.00 0.74 0.00 0.54 +phrygiens phrygien ADJ m p 0.00 0.74 0.00 0.20 +phtaléine phtaléine NOM f s 0.03 0.00 0.03 0.00 +phtiriasis phtiriasis NOM m 0.00 0.07 0.00 0.07 +phtisie phtisie NOM f s 0.05 0.81 0.05 0.81 +phtisiologie phtisiologie NOM f s 0.00 0.14 0.00 0.14 +phtisique phtisique ADJ s 0.01 1.22 0.00 0.88 +phtisiques phtisique ADJ f p 0.01 1.22 0.01 0.34 +phénate phénate NOM m s 0.01 0.00 0.01 0.00 +phénicien phénicien NOM m s 0.57 0.07 0.04 0.00 +phénicienne phénicien ADJ f s 0.77 0.41 0.44 0.14 +phéniciennes phénicien ADJ f p 0.77 0.41 0.01 0.14 +phéniciens phénicien NOM m p 0.57 0.07 0.54 0.07 +phénique phénique ADJ m s 0.00 0.07 0.00 0.07 +phéniqués phéniqué ADJ m p 0.00 0.07 0.00 0.07 +phénix phénix NOM m 0.28 0.68 0.28 0.68 +phénobarbital phénobarbital NOM m s 0.10 0.00 0.10 0.00 +phénol phénol NOM m s 0.07 0.14 0.07 0.14 +phénomène phénomène NOM m s 10.77 13.72 8.62 10.81 +phénomènes phénomène NOM m p 10.77 13.72 2.15 2.91 +phénoménal phénoménal ADJ m s 1.36 1.62 0.77 0.74 +phénoménale phénoménal ADJ f s 1.36 1.62 0.46 0.68 +phénoménalement phénoménalement ADV 0.05 0.00 0.05 0.00 +phénoménales phénoménal ADJ f p 1.36 1.62 0.05 0.07 +phénoménaux phénoménal ADJ m p 1.36 1.62 0.08 0.14 +phénoménologie phénoménologie NOM f s 0.04 0.34 0.04 0.34 +phénoménologique phénoménologique ADJ s 0.02 0.00 0.02 0.00 +phénoménologues phénoménologue NOM p 0.00 0.07 0.00 0.07 +phénothiazine phénothiazine NOM f s 0.01 0.00 0.01 0.00 +phénotype phénotype NOM m s 0.01 0.00 0.01 0.00 +phéochromocytome phéochromocytome NOM m s 0.07 0.00 0.07 0.00 +phéromone phéromone NOM f s 0.69 0.00 0.10 0.00 +phéromones phéromone NOM f p 0.69 0.00 0.59 0.00 +phylactère phylactère NOM m s 0.00 0.34 0.00 0.34 +phylloxera phylloxera NOM m s 0.10 0.00 0.10 0.00 +phylloxéra phylloxéra NOM m s 0.10 0.47 0.10 0.47 +phylogenèse phylogenèse NOM f s 0.14 0.00 0.14 0.00 +phylum phylum NOM m s 0.03 0.00 0.03 0.00 +phynances phynances NOM f p 0.00 0.07 0.00 0.07 +physicien physicien NOM m s 1.18 1.55 0.75 0.95 +physicienne physicien NOM f s 1.18 1.55 0.15 0.07 +physiciennes physicienne NOM f p 0.01 0.00 0.01 0.00 +physiciens physicien NOM m p 1.18 1.55 0.29 0.54 +physico_chimique physico_chimique ADJ f p 0.00 0.07 0.00 0.07 +physio physio ADV 0.94 0.00 0.94 0.00 +physiologie physiologie NOM f s 0.76 1.42 0.75 1.35 +physiologies physiologie NOM f p 0.76 1.42 0.01 0.07 +physiologique physiologique ADJ s 1.59 2.09 0.84 1.49 +physiologiquement physiologiquement ADV 0.24 0.27 0.24 0.27 +physiologiques physiologique ADJ p 1.59 2.09 0.75 0.61 +physiologiste physiologiste ADJ s 0.10 0.00 0.10 0.00 +physionomie physionomie NOM f s 0.48 5.27 0.48 4.93 +physionomies physionomie NOM f p 0.48 5.27 0.00 0.34 +physionomique physionomique ADJ s 0.01 0.14 0.01 0.14 +physionomiste physionomiste NOM s 0.12 0.07 0.11 0.07 +physionomistes physionomiste ADJ p 0.11 0.14 0.02 0.00 +physiothérapie physiothérapie NOM f s 0.24 0.00 0.24 0.00 +physique physique ADJ s 19.42 33.18 14.76 27.50 +physiquement physiquement ADV 8.72 8.72 8.72 8.72 +physiques physique ADJ p 19.42 33.18 4.66 5.68 +phytoplancton phytoplancton NOM m s 0.01 0.00 0.01 0.00 +pi pi NOM m 0.69 1.28 0.69 1.28 +più più ADV 0.01 0.07 0.01 0.07 +piaf piaf NOM m s 2.00 5.14 1.75 1.82 +piaffa piaffer VER 0.14 2.57 0.00 0.14 ind:pas:3s; +piaffaient piaffer VER 0.14 2.57 0.00 0.14 ind:imp:3p; +piaffait piaffer VER 0.14 2.57 0.00 0.68 ind:imp:3s; +piaffant piaffer VER 0.14 2.57 0.00 0.54 par:pre; +piaffante piaffant ADJ f s 0.01 0.74 0.00 0.14 +piaffantes piaffant ADJ f p 0.01 0.74 0.01 0.14 +piaffants piaffant ADJ m p 0.01 0.74 0.00 0.20 +piaffe piaffer VER 0.14 2.57 0.12 0.34 ind:pre:1s;ind:pre:3s; +piaffement piaffement NOM m s 0.00 0.20 0.00 0.14 +piaffements piaffement NOM m p 0.00 0.20 0.00 0.07 +piaffent piaffer VER 0.14 2.57 0.02 0.34 ind:pre:3p; +piaffer piaffer VER 0.14 2.57 0.00 0.20 inf; +piaffes piaffer VER 0.14 2.57 0.00 0.14 ind:pre:2s; +piaffé piaffer VER m s 0.14 2.57 0.00 0.07 par:pas; +piafs piaf NOM m p 2.00 5.14 0.25 3.31 +piailla piailler VER 0.84 4.73 0.00 0.14 ind:pas:3s; +piaillaient piailler VER 0.84 4.73 0.02 0.74 ind:imp:3p; +piaillais piailler VER 0.84 4.73 0.00 0.07 ind:imp:2s; +piaillait piailler VER 0.84 4.73 0.22 0.74 ind:imp:3s; +piaillant piailler VER 0.84 4.73 0.00 1.08 par:pre; +piaillante piaillant ADJ f s 0.00 0.68 0.00 0.27 +piaillantes piaillant ADJ f p 0.00 0.68 0.00 0.07 +piaillarde piaillard ADJ f s 0.00 0.14 0.00 0.07 +piaillards piaillard ADJ m p 0.00 0.14 0.00 0.07 +piaille piailler VER 0.84 4.73 0.26 0.54 ind:pre:1s;ind:pre:3s; +piaillement piaillement NOM m s 5.37 2.57 0.70 0.68 +piaillements piaillement NOM m p 5.37 2.57 4.67 1.89 +piaillent piailler VER 0.84 4.73 0.13 0.61 ind:pre:3p; +piailler piailler VER 0.84 4.73 0.21 0.68 inf; +piaillerie piaillerie NOM f s 0.00 0.20 0.00 0.07 +piailleries piaillerie NOM f p 0.00 0.20 0.00 0.14 +piailleurs piailleur ADJ m p 0.00 0.20 0.00 0.14 +piailleuse piailleur ADJ f s 0.00 0.20 0.00 0.07 +piaillèrent piailler VER 0.84 4.73 0.00 0.14 ind:pas:3p; +pian pian NOM m s 0.03 0.00 0.03 0.00 +pianissimo pianissimo ADV 0.12 0.20 0.12 0.20 +pianissimos pianissimo NOM m p 0.10 0.14 0.00 0.07 +pianiste pianiste NOM s 5.75 5.20 5.52 4.80 +pianistes pianiste NOM p 5.75 5.20 0.23 0.41 +piano_bar piano_bar NOM m s 0.05 0.00 0.05 0.00 +piano piano NOM m s 22.22 31.28 21.50 28.51 +pianola pianola NOM m s 0.35 0.14 0.35 0.14 +pianos piano NOM m p 22.22 31.28 0.71 2.77 +pianota pianoter VER 0.41 2.36 0.10 0.34 ind:pas:3s; +pianotage pianotage NOM m s 0.10 0.07 0.10 0.07 +pianotaient pianoter VER 0.41 2.36 0.00 0.14 ind:imp:3p; +pianotait pianoter VER 0.41 2.36 0.00 0.68 ind:imp:3s; +pianotant pianoter VER 0.41 2.36 0.00 0.27 par:pre; +pianote pianoter VER 0.41 2.36 0.04 0.34 ind:pre:1s;ind:pre:3s; +pianoter pianoter VER 0.41 2.36 0.27 0.41 inf; +pianotèrent pianoter VER 0.41 2.36 0.00 0.07 ind:pas:3p; +pianoté pianoter VER m s 0.41 2.36 0.00 0.07 par:pas; +pianotée pianoter VER f s 0.41 2.36 0.00 0.07 par:pas; +piastre piastre NOM f s 1.36 0.54 0.14 0.14 +piastres piastre NOM f p 1.36 0.54 1.23 0.41 +piaula piauler VER 0.02 1.49 0.00 0.27 ind:pas:3s; +piaulaient piauler VER 0.02 1.49 0.01 0.27 ind:imp:3p; +piaulait piauler VER 0.02 1.49 0.00 0.20 ind:imp:3s; +piaulant piauler VER 0.02 1.49 0.00 0.20 par:pre; +piaulante piaulant ADJ f s 0.00 0.14 0.00 0.07 +piaule piaule NOM f s 3.36 12.16 3.02 11.42 +piaulement piaulement NOM m s 0.00 0.54 0.00 0.14 +piaulements piaulement NOM m p 0.00 0.54 0.00 0.41 +piaulent piauler VER 0.02 1.49 0.00 0.07 ind:pre:3p; +piauler piauler VER 0.02 1.49 0.00 0.14 inf; +piaulera piauler VER 0.02 1.49 0.00 0.07 ind:fut:3s; +piaules piaule NOM f p 3.36 12.16 0.34 0.74 +piauleur piauleur NOM m s 0.00 0.07 0.00 0.07 +piaulèrent piauler VER 0.02 1.49 0.00 0.14 ind:pas:3p; +piaye piaye NOM m s 0.00 0.07 0.00 0.07 +piazza piazza NOM f s 1.89 3.18 1.89 3.18 +piazzetta piazzetta NOM f 0.00 0.20 0.00 0.20 +pibloque pibloque NOM m s 0.00 0.34 0.00 0.34 +pic_vert pic_vert NOM m s 0.28 0.27 0.27 0.27 +pic pic NOM m s 5.30 12.43 4.61 10.34 +pica pica NOM m s 0.01 0.07 0.01 0.07 +picador picador NOM m s 0.01 0.34 0.00 0.27 +picadors picador NOM m p 0.01 0.34 0.01 0.07 +picaillon picaillon NOM m s 0.02 0.20 0.01 0.07 +picaillons picaillon NOM m p 0.02 0.20 0.01 0.14 +picard picard ADJ m s 0.00 0.61 0.00 0.14 +picarde picard ADJ f s 0.00 0.61 0.00 0.07 +picardes picard ADJ f p 0.00 0.61 0.00 0.20 +picards picard ADJ m p 0.00 0.61 0.00 0.20 +picaresque picaresque ADJ s 0.03 0.54 0.03 0.34 +picaresques picaresque ADJ p 0.03 0.54 0.00 0.20 +picaro picaro NOM m s 0.40 0.07 0.40 0.07 +picassien picassien ADJ m s 0.00 0.07 0.00 0.07 +piccolo piccolo NOM m s 0.41 0.07 0.40 0.07 +piccolos piccolo NOM m p 0.41 0.07 0.01 0.00 +pichenette pichenette NOM f s 0.27 2.30 0.27 2.09 +pichenettes pichenette NOM f p 0.27 2.30 0.00 0.20 +pichet pichet NOM m s 1.29 1.42 1.21 0.95 +pichets pichet NOM m p 1.29 1.42 0.09 0.47 +pick_up pick_up NOM m 1.98 2.64 1.98 2.64 +picker picker NOM m s 0.19 0.00 0.19 0.00 +pickles pickle NOM m p 0.47 0.20 0.47 0.20 +pickpocket pickpocket NOM m s 0.87 0.74 0.63 0.47 +pickpockets pickpocket NOM m p 0.87 0.74 0.24 0.27 +pico pico ADV 0.31 0.20 0.31 0.20 +picolaient picoler VER 5.89 4.66 0.00 0.07 ind:imp:3p; +picolais picoler VER 5.89 4.66 0.09 0.14 ind:imp:1s; +picolait picoler VER 5.89 4.66 0.21 0.14 ind:imp:3s; +picolant picoler VER 5.89 4.66 0.03 0.07 par:pre; +picole picoler VER 5.89 4.66 1.64 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +picolent picoler VER 5.89 4.66 0.08 0.00 ind:pre:3p; +picoler picoler VER 5.89 4.66 2.32 1.76 inf; +picolerait picoler VER 5.89 4.66 0.00 0.07 cnd:pre:3s; +picoles picoler VER 5.89 4.66 0.69 0.14 ind:pre:2s; +picoleur picoleur NOM m s 0.00 0.27 0.00 0.20 +picoleurs picoleur NOM m p 0.00 0.27 0.00 0.07 +picolez picoler VER 5.89 4.66 0.04 0.00 ind:pre:2p; +picoliez picoler VER 5.89 4.66 0.01 0.00 ind:imp:2p; +picolo picolo NOM m s 0.00 0.14 0.00 0.14 +picolé picoler VER m s 5.89 4.66 0.77 1.22 par:pas; +picora picorer VER 0.74 3.58 0.00 0.07 ind:pas:3s; +picoraient picorer VER 0.74 3.58 0.02 0.47 ind:imp:3p; +picorait picorer VER 0.74 3.58 0.00 0.47 ind:imp:3s; +picorant picorer VER 0.74 3.58 0.02 0.14 par:pre; +picore picorer VER 0.74 3.58 0.18 0.34 ind:pre:1s;ind:pre:3s; +picorent picorer VER 0.74 3.58 0.02 0.41 ind:pre:3p; +picorer picorer VER 0.74 3.58 0.33 1.28 inf; +picoreur picoreur NOM m s 0.00 0.07 0.00 0.07 +picorez picorer VER 0.74 3.58 0.14 0.00 ind:pre:2p; +picoré picorer VER m s 0.74 3.58 0.02 0.14 par:pas; +picorée picorer VER f s 0.74 3.58 0.00 0.07 par:pas; +picorées picorer VER f p 0.74 3.58 0.00 0.07 par:pas; +picorés picorer VER m p 0.74 3.58 0.01 0.14 par:pas; +picot picot NOM m s 0.26 1.35 0.03 1.22 +picota picoter VER 0.74 1.62 0.04 0.14 ind:pas:3s; +picotaient picoter VER 0.74 1.62 0.00 0.27 ind:imp:3p; +picotait picoter VER 0.74 1.62 0.00 0.47 ind:imp:3s; +picotant picoter VER 0.74 1.62 0.02 0.00 par:pre; +picote picoter VER 0.74 1.62 0.63 0.27 ind:pre:1s;ind:pre:3s; +picotement picotement NOM m s 0.50 1.62 0.22 0.95 +picotements picotement NOM m p 0.50 1.62 0.28 0.68 +picotent picoter VER 0.74 1.62 0.03 0.27 ind:pre:3p; +picoter picoter VER 0.74 1.62 0.01 0.07 inf; +picotin picotin NOM m s 0.24 0.61 0.24 0.61 +picotis picotis NOM m 0.00 0.07 0.00 0.07 +picots picot NOM m p 0.26 1.35 0.23 0.14 +picoté picoter VER m s 0.74 1.62 0.01 0.07 par:pas; +picotées picoter VER f p 0.74 1.62 0.00 0.07 par:pas; +picrate picrate NOM m s 0.01 1.35 0.01 1.35 +picrique picrique ADJ s 0.00 0.27 0.00 0.27 +pic_vert pic_vert NOM m p 0.28 0.27 0.01 0.00 +pics pic NOM m p 5.30 12.43 0.69 2.09 +picsou picsou NOM m s 0.43 0.00 0.43 0.00 +pictogramme pictogramme NOM m s 0.14 0.00 0.03 0.00 +pictogrammes pictogramme NOM m p 0.14 0.00 0.11 0.00 +picton picton NOM s 0.00 0.41 0.00 0.41 +picté picter VER m s 0.00 0.07 0.00 0.07 par:pas; +pictural pictural ADJ m s 0.15 0.95 0.01 0.47 +picturale pictural ADJ f s 0.15 0.95 0.14 0.20 +picturalement picturalement ADV 0.00 0.07 0.00 0.07 +picturales pictural ADJ f p 0.15 0.95 0.00 0.27 +pidgin pidgin NOM m s 0.00 0.14 0.00 0.14 +pie_grièche pie_grièche NOM f s 0.00 0.07 0.00 0.07 +pie_mère pie_mère NOM f s 0.01 0.07 0.01 0.07 +pie pie NOM f s 1.59 4.32 1.06 3.18 +pied_bot pied_bot NOM m s 0.28 0.61 0.28 0.61 +pied_d_alouette pied_d_alouette NOM m s 0.01 0.00 0.01 0.00 +pied_d_oeuvre pied_d_oeuvre NOM m s 0.00 0.07 0.00 0.07 +pied_de_biche pied_de_biche NOM m s 0.32 0.27 0.28 0.20 +pied_de_poule pied_de_poule ADJ 0.02 0.54 0.02 0.54 +pied_noir pied_noir NOM m s 0.28 3.78 0.09 0.54 +pied_plat pied_plat NOM m s 0.05 0.00 0.05 0.00 +pied pied NOM m s 214.08 486.42 105.51 248.18 +piedmont piedmont NOM m s 0.23 0.00 0.23 0.00 +pied_de_biche pied_de_biche NOM m p 0.32 0.27 0.04 0.07 +pied_de_coq pied_de_coq NOM m p 0.00 0.07 0.00 0.07 +pied_droit pied_droit NOM m p 0.00 0.07 0.00 0.07 +pied_noir pied_noir NOM m p 0.28 3.78 0.19 3.24 +pieds pied NOM m p 214.08 486.42 108.57 238.24 +pier pier NOM m s 0.01 0.00 0.01 0.00 +piercing piercing NOM m s 1.69 0.00 1.29 0.00 +piercings piercing NOM m p 1.69 0.00 0.40 0.00 +pierraille pierraille NOM f s 0.12 3.85 0.12 2.23 +pierrailles pierraille NOM f p 0.12 3.85 0.00 1.62 +pierre pierre NOM f s 67.17 189.86 40.58 119.39 +pierreries pierreries NOM f p 0.28 1.89 0.28 1.89 +pierres pierre NOM f p 67.17 189.86 26.60 70.47 +pierreuse pierreux ADJ f s 0.11 2.64 0.11 0.54 +pierreuses pierreux ADJ f p 0.11 2.64 0.00 0.47 +pierreux pierreux ADJ m 0.11 2.64 0.00 1.62 +pierrier pierrier NOM m s 0.00 0.20 0.00 0.14 +pierriers pierrier NOM m p 0.00 0.20 0.00 0.07 +pierrière pierrière NOM f s 0.00 0.07 0.00 0.07 +pierrot pierrot NOM m s 0.14 1.35 0.14 0.88 +pierrots pierrot NOM m p 0.14 1.35 0.01 0.47 +pierrures pierrure NOM f p 0.00 0.07 0.00 0.07 +pies pie NOM f p 1.59 4.32 0.53 1.15 +pietà pietà NOM f s 0.18 0.88 0.18 0.88 +pieu pieu NOM m s 5.45 5.34 5.45 5.34 +pieuse pieux ADJ f s 3.93 12.43 1.33 4.12 +pieusement pieusement ADV 0.41 3.11 0.41 3.11 +pieuses pieux ADJ f p 3.93 12.43 0.75 2.77 +pieutait pieuter VER 1.24 2.03 0.00 0.07 ind:imp:3s; +pieute pieuter VER 1.24 2.03 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pieuter pieuter VER 1.24 2.03 0.85 1.22 inf; +pieuterez pieuter VER 1.24 2.03 0.01 0.00 ind:fut:2p; +pieutes pieuter VER 1.24 2.03 0.03 0.14 ind:pre:2s; +pieutez pieuter VER 1.24 2.03 0.10 0.00 imp:pre:2p; +pieuté pieuter VER m s 1.24 2.03 0.04 0.20 par:pas; +pieutée pieuter VER f s 1.24 2.03 0.00 0.07 par:pas; +pieutés pieuter VER m p 1.24 2.03 0.01 0.07 par:pas; +pieuvre pieuvre NOM f s 1.73 2.97 1.65 1.82 +pieuvres pieuvre NOM f p 1.73 2.97 0.08 1.15 +pieux pieux ADJ m 3.93 12.43 1.86 5.54 +pif pif NOM m s 1.58 7.23 1.58 7.23 +pifer pifer VER 0.01 0.00 0.01 0.00 inf; +piffait piffer VER 0.16 0.68 0.00 0.14 ind:imp:3s; +piffer piffer VER 0.16 0.68 0.16 0.47 inf; +piffre piffre NOM s 0.00 0.07 0.00 0.07 +piffrer piffrer ADJ m s 0.16 0.00 0.16 0.00 +piffé piffer VER m s 0.16 0.68 0.00 0.07 par:pas; +pifomètre pifomètre NOM m s 0.02 0.61 0.02 0.61 +pige piger VER 41.77 11.96 6.40 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pigeais piger VER 41.77 11.96 0.17 0.54 ind:imp:1s;ind:imp:2s; +pigeait piger VER 41.77 11.96 0.09 0.88 ind:imp:3s; +pigent piger VER 41.77 11.96 0.50 0.14 ind:pre:3p; +pigeon_voyageur pigeon_voyageur NOM m s 0.14 0.00 0.14 0.00 +pigeon pigeon NOM m s 15.05 19.26 8.56 7.97 +pigeonnant pigeonnant ADJ m s 0.07 0.34 0.07 0.20 +pigeonnante pigeonnant ADJ f s 0.07 0.34 0.00 0.07 +pigeonnants pigeonnant ADJ m p 0.07 0.34 0.00 0.07 +pigeonne pigeon NOM f s 15.05 19.26 0.03 0.68 +pigeonneau pigeonneau NOM m s 0.29 0.34 0.06 0.27 +pigeonneaux pigeonneau NOM m p 0.29 0.34 0.23 0.07 +pigeonner pigeonner VER 0.24 0.34 0.05 0.14 inf; +pigeonnier pigeonnier NOM m s 0.27 3.45 0.27 3.18 +pigeonniers pigeonnier NOM m p 0.27 3.45 0.00 0.27 +pigeonné pigeonner VER m s 0.24 0.34 0.17 0.07 par:pas; +pigeons pigeon NOM m p 15.05 19.26 6.46 10.61 +piger piger VER 41.77 11.96 1.78 1.96 inf; +pigera piger VER 41.77 11.96 0.04 0.07 ind:fut:3s; +pigerai piger VER 41.77 11.96 0.01 0.00 ind:fut:1s; +pigeraient piger VER 41.77 11.96 0.01 0.00 cnd:pre:3p; +pigerait piger VER 41.77 11.96 0.02 0.00 cnd:pre:3s; +pigeras piger VER 41.77 11.96 0.06 0.07 ind:fut:2s; +pigerez piger VER 41.77 11.96 0.02 0.00 ind:fut:2p; +piges piger VER 41.77 11.96 10.99 2.03 ind:pre:2s;sub:pre:2s; +pigez piger VER 41.77 11.96 2.08 0.47 imp:pre:2p;ind:pre:2p; +pigiste pigiste NOM s 0.24 0.54 0.21 0.27 +pigistes pigiste NOM p 0.24 0.54 0.03 0.27 +pigment pigment NOM m s 0.35 0.61 0.07 0.34 +pigmentaire pigmentaire ADJ f s 0.04 0.07 0.04 0.07 +pigmentation pigmentation NOM f s 0.51 0.14 0.51 0.14 +pigments pigment NOM m p 0.35 0.61 0.28 0.27 +pigne pigne NOM f s 0.07 0.47 0.02 0.27 +pigner pigner VER 0.01 0.00 0.01 0.00 inf; +pignes pigne NOM f p 0.07 0.47 0.04 0.20 +pignochait pignocher VER 0.00 0.07 0.00 0.07 ind:imp:3s; +pignole pignole NOM f s 0.01 0.07 0.01 0.07 +pignon pignon NOM m s 4.94 8.31 4.79 6.55 +pignons pignon NOM m p 4.94 8.31 0.15 1.76 +pignouf pignouf NOM m s 0.27 0.54 0.25 0.34 +pignoufs pignouf NOM m p 0.27 0.54 0.02 0.20 +pigé piger VER m s 41.77 11.96 19.46 3.51 par:pas; +pila piler VER 3.34 6.15 0.00 0.34 ind:pas:3s; +pilaf pilaf NOM m s 0.26 0.27 0.26 0.27 +pilaient piler VER 3.34 6.15 0.00 0.14 ind:imp:3p; +pilait piler VER 3.34 6.15 0.00 0.54 ind:imp:3s; +pilant piler VER 3.34 6.15 0.07 0.07 par:pre; +pilastre pilastre NOM m s 0.03 1.15 0.02 0.20 +pilastres pilastre NOM m p 0.03 1.15 0.01 0.95 +pilchards pilchard NOM m p 0.00 0.27 0.00 0.27 +pile_poil pile_poil NOM f s 0.07 0.00 0.07 0.00 +pile pile NOM f s 21.30 32.50 16.22 21.62 +pilent piler VER 3.34 6.15 0.00 0.07 ind:pre:3p; +piler piler VER 3.34 6.15 0.35 0.27 inf; +piles pile NOM f p 21.30 32.50 5.08 10.88 +pileuse pileux ADJ f s 0.06 0.61 0.00 0.20 +pileuses pileux ADJ f p 0.06 0.61 0.00 0.07 +pileux pileux ADJ m 0.06 0.61 0.06 0.34 +pilier pilier NOM m s 3.82 16.15 2.43 7.23 +piliers pilier NOM m p 3.82 16.15 1.39 8.92 +pilifère pilifère ADJ s 0.00 0.07 0.00 0.07 +pilla piller VER 7.66 8.38 0.01 0.27 ind:pas:3s; +pillage pillage NOM m s 1.76 3.38 1.21 2.64 +pillages pillage NOM m p 1.76 3.38 0.56 0.74 +pillaient piller VER 7.66 8.38 0.06 0.41 ind:imp:3p; +pillais piller VER 7.66 8.38 0.01 0.00 ind:imp:1s; +pillait piller VER 7.66 8.38 0.16 0.34 ind:imp:3s; +pillant piller VER 7.66 8.38 0.17 0.68 par:pre; +pillard pillard NOM m s 1.00 1.89 0.15 0.47 +pillarde pillard NOM f s 1.00 1.89 0.00 0.07 +pillards pillard NOM m p 1.00 1.89 0.85 1.35 +pille piller VER 7.66 8.38 1.02 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pillent piller VER 7.66 8.38 0.78 0.07 ind:pre:3p; +piller piller VER 7.66 8.38 2.12 2.70 inf; +pillera piller VER 7.66 8.38 0.02 0.00 ind:fut:3s; +pillerait piller VER 7.66 8.38 0.02 0.00 cnd:pre:3s; +pillerons piller VER 7.66 8.38 0.02 0.07 ind:fut:1p; +pilleront piller VER 7.66 8.38 0.16 0.00 ind:fut:3p; +pilles piller VER 7.66 8.38 0.04 0.07 ind:pre:2s; +pilleur pilleur NOM m s 1.05 1.35 0.44 0.34 +pilleurs pilleur NOM m p 1.05 1.35 0.47 0.95 +pilleuse pilleur NOM f s 1.05 1.35 0.14 0.07 +pillez piller VER 7.66 8.38 0.35 0.07 imp:pre:2p;ind:pre:2p; +pilliez piller VER 7.66 8.38 0.02 0.00 ind:imp:2p; +pillons piller VER 7.66 8.38 0.03 0.00 imp:pre:1p;ind:pre:1p; +pillèrent piller VER 7.66 8.38 0.02 0.07 ind:pas:3p; +pillé piller VER m s 7.66 8.38 1.87 1.62 par:pas; +pillée piller VER f s 7.66 8.38 0.58 0.47 par:pas; +pillées piller VER f p 7.66 8.38 0.04 0.47 par:pas; +pillés piller VER m p 7.66 8.38 0.18 0.61 par:pas; +piloches piloche NOM f p 0.00 0.07 0.00 0.07 +pilon pilon NOM m s 0.62 1.69 0.47 1.28 +pilonnage pilonnage NOM m s 0.16 0.61 0.12 0.54 +pilonnages pilonnage NOM m p 0.16 0.61 0.04 0.07 +pilonnaient pilonner VER 0.60 1.35 0.01 0.20 ind:imp:3p; +pilonnait pilonner VER 0.60 1.35 0.01 0.20 ind:imp:3s; +pilonnant pilonner VER 0.60 1.35 0.01 0.07 par:pre; +pilonnent pilonner VER 0.60 1.35 0.13 0.14 ind:pre:3p; +pilonner pilonner VER 0.60 1.35 0.10 0.27 inf; +pilonnera pilonner VER 0.60 1.35 0.00 0.07 ind:fut:3s; +pilonneurs pilonneur NOM m p 0.00 0.07 0.00 0.07 +pilonnez pilonner VER 0.60 1.35 0.02 0.00 imp:pre:2p;ind:pre:2p; +pilonné pilonner VER m s 0.60 1.35 0.28 0.14 par:pas; +pilonnée pilonner VER f s 0.60 1.35 0.02 0.07 par:pas; +pilonnées pilonner VER f p 0.60 1.35 0.00 0.07 par:pas; +pilonnés pilonner VER m p 0.60 1.35 0.02 0.14 par:pas; +pilons pilon NOM m p 0.62 1.69 0.14 0.41 +pilori pilori NOM m s 0.79 2.50 0.78 2.36 +piloris pilori NOM m p 0.79 2.50 0.01 0.14 +pilosité pilosité NOM f s 0.09 0.27 0.09 0.27 +pilot pilot NOM m s 1.10 0.00 1.10 0.00 +pilota piloter VER 13.18 4.12 0.00 0.07 ind:pas:3s; +pilotage pilotage NOM m s 2.44 1.35 2.44 1.35 +pilotaient piloter VER 13.18 4.12 0.01 0.00 ind:imp:3p; +pilotais piloter VER 13.18 4.12 0.28 0.14 ind:imp:1s;ind:imp:2s; +pilotait piloter VER 13.18 4.12 0.79 0.61 ind:imp:3s; +pilotant piloter VER 13.18 4.12 0.06 0.27 par:pre; +pilote pilote NOM s 37.69 8.72 29.10 5.61 +pilotent piloter VER 13.18 4.12 0.06 0.07 ind:pre:3p; +piloter piloter VER 13.18 4.12 6.12 1.82 inf; +pilotera piloter VER 13.18 4.12 0.13 0.00 ind:fut:3s; +piloterai piloter VER 13.18 4.12 0.17 0.00 ind:fut:1s; +piloterait piloter VER 13.18 4.12 0.03 0.14 cnd:pre:3s; +piloteras piloter VER 13.18 4.12 0.02 0.00 ind:fut:2s; +piloteront piloter VER 13.18 4.12 0.01 0.00 ind:fut:3p; +pilotes pilote NOM p 37.69 8.72 8.59 3.11 +pilotez piloter VER 13.18 4.12 0.36 0.00 imp:pre:2p;ind:pre:2p; +pilotiez piloter VER 13.18 4.12 0.08 0.00 ind:imp:2p; +pilotin pilotin NOM m s 0.10 0.00 0.10 0.00 +pilotis pilotis NOM m 0.33 2.30 0.33 2.30 +pilotèrent piloter VER 13.18 4.12 0.00 0.07 ind:pas:3p; +piloté piloter VER m s 13.18 4.12 1.65 0.41 par:pas; +pilotée piloter VER f s 13.18 4.12 0.19 0.00 par:pas; +pilotées piloter VER f p 13.18 4.12 0.01 0.07 par:pas; +pilotés piloter VER m p 13.18 4.12 0.06 0.14 par:pas; +pilou pilou NOM m s 0.00 0.95 0.00 0.95 +pilsen pilsen NOM f s 0.00 0.07 0.00 0.07 +pilé piler VER m s 3.34 6.15 0.30 1.15 par:pas; +pilée piler VER f s 3.34 6.15 0.19 1.01 par:pas; +pilées piler VER f p 3.34 6.15 0.00 0.27 par:pas; +pilule pilule NOM f s 22.64 12.91 6.10 4.86 +pilules pilule NOM f p 22.64 12.91 16.54 8.04 +pilum pilum NOM m s 0.00 0.07 0.00 0.07 +pilés piler VER m p 3.34 6.15 0.04 0.41 par:pas; +pimbêche pimbêche NOM f s 0.45 0.47 0.42 0.34 +pimbêches pimbêche NOM f p 0.45 0.47 0.03 0.14 +piment piment NOM m s 4.76 4.66 2.94 2.77 +pimenta pimenter VER 0.82 0.88 0.00 0.07 ind:pas:3s; +pimentait pimenter VER 0.82 0.88 0.00 0.20 ind:imp:3s; +pimentant pimenter VER 0.82 0.88 0.00 0.07 par:pre; +pimente pimenter VER 0.82 0.88 0.17 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pimentent pimenter VER 0.82 0.88 0.01 0.00 ind:pre:3p; +pimenter pimenter VER 0.82 0.88 0.56 0.27 inf; +piments piment NOM m p 4.76 4.66 1.82 1.89 +pimenté pimenté ADJ m s 0.13 0.27 0.06 0.20 +pimentée pimenter VER f s 0.82 0.88 0.04 0.07 par:pas; +pimentées pimenté ADJ f p 0.13 0.27 0.01 0.00 +pimentés pimenté ADJ m p 0.13 0.27 0.03 0.00 +pimpant pimpant ADJ m s 0.81 4.05 0.34 0.54 +pimpante pimpant ADJ f s 0.81 4.05 0.12 2.09 +pimpantes pimpant ADJ f p 0.81 4.05 0.34 1.22 +pimpants pimpant ADJ m p 0.81 4.05 0.01 0.20 +pimpon pimpon NOM m s 0.01 0.41 0.00 0.14 +pimpons pimpon NOM m p 0.01 0.41 0.01 0.27 +pimprenelle pimprenelle NOM f s 0.08 0.14 0.08 0.07 +pimprenelles pimprenelle NOM f p 0.08 0.14 0.00 0.07 +pin_s pin_s NOM m 0.30 0.00 0.30 0.00 +pin_pon pin_pon ONO 0.00 0.34 0.00 0.34 +pin_up pin_up NOM f 0.71 0.54 0.71 0.54 +pin pin NOM m s 5.06 26.62 2.79 9.53 +pina piner VER 0.81 0.20 0.44 0.00 ind:pas:3s; +pinacle pinacle NOM m s 0.02 0.61 0.02 0.54 +pinacles pinacle NOM m p 0.02 0.61 0.00 0.07 +pinacothèque pinacothèque NOM f s 0.00 0.20 0.00 0.20 +pinaillage pinaillage NOM m s 0.02 0.00 0.02 0.00 +pinaillait pinailler VER 0.50 0.34 0.00 0.07 ind:imp:3s; +pinaille pinailler VER 0.50 0.34 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pinailler pinailler VER 0.50 0.34 0.41 0.14 inf; +pinailles pinailler VER 0.50 0.34 0.05 0.00 ind:pre:2s; +pinailleur pinailleur NOM m s 0.02 0.00 0.02 0.00 +pinaillé pinailler VER m s 0.50 0.34 0.02 0.00 par:pas; +pinard pinard NOM m s 0.39 6.89 0.39 6.76 +pinardiers pinardier NOM m p 0.00 0.14 0.00 0.07 +pinardière pinardier NOM f s 0.00 0.14 0.00 0.07 +pinards pinard NOM m p 0.39 6.89 0.00 0.14 +pinasse pinasse NOM f s 0.00 0.54 0.00 0.14 +pinasses pinasse NOM f p 0.00 0.54 0.00 0.41 +pince_fesse pince_fesse NOM m p 0.05 0.14 0.05 0.14 +pince_maille pince_maille NOM m p 0.00 0.07 0.00 0.07 +pince_monseigneur pince_monseigneur NOM f s 0.03 0.54 0.03 0.54 +pince_nez pince_nez NOM m 0.07 1.35 0.07 1.35 +pince_sans_rire pince_sans_rire ADJ s 0.05 0.47 0.05 0.47 +pince pince NOM f s 9.00 14.73 5.62 7.64 +pinceau pinceau NOM m s 4.59 17.91 2.96 10.27 +pinceaux pinceau NOM m p 4.59 17.91 1.63 7.64 +pincement pincement NOM m s 0.19 3.92 0.18 3.65 +pincements pincement NOM m p 0.19 3.92 0.01 0.27 +pincent pincer VER 10.84 23.65 0.14 0.54 ind:pre:3p; +pincer pincer VER 10.84 23.65 4.06 3.72 inf; +pincera pincer VER 10.84 23.65 0.20 0.07 ind:fut:3s; +pincerai pincer VER 10.84 23.65 0.02 0.00 ind:fut:1s; +pinceras pincer VER 10.84 23.65 0.01 0.00 ind:fut:2s; +pincerez pincer VER 10.84 23.65 0.01 0.00 ind:fut:2p; +pincerons pincer VER 10.84 23.65 0.01 0.00 ind:fut:1p; +pinces pince NOM f p 9.00 14.73 3.38 7.09 +pincette pincette NOM f s 0.29 1.49 0.05 0.34 +pincettes pincette NOM f p 0.29 1.49 0.25 1.15 +pinceur pinceur NOM m s 0.00 0.07 0.00 0.07 +pincez pincer VER 10.84 23.65 0.82 0.00 imp:pre:2p;ind:pre:2p; +pinchart pinchart NOM m s 0.00 0.07 0.00 0.07 +pinciez pincer VER 10.84 23.65 0.16 0.00 ind:imp:2p; +pincions pincer VER 10.84 23.65 0.01 0.20 ind:imp:1p; +pincèrent pincer VER 10.84 23.65 0.00 0.07 ind:pas:3p; +pincé pincer VER m s 10.84 23.65 1.27 2.03 par:pas; +pincée pincée NOM f s 1.37 3.31 1.30 2.91 +pincées pincer VER f p 10.84 23.65 0.10 3.04 par:pas; +pincés pincer VER m p 10.84 23.65 0.10 0.47 par:pas; +pine pine NOM f s 1.59 0.88 1.48 0.68 +pineau pineau NOM m s 0.00 0.14 0.00 0.14 +piner piner VER 0.81 0.20 0.16 0.07 inf; +pines pine NOM f p 1.59 0.88 0.11 0.20 +ping_pong ping_pong NOM m s 2.67 2.36 2.67 2.36 +pinglot pinglot NOM m s 0.00 0.14 0.00 0.07 +pinglots pinglot NOM m p 0.00 0.14 0.00 0.07 +pingouin pingouin NOM m s 3.51 2.64 2.29 1.35 +pingouins pingouin NOM m p 3.51 2.64 1.23 1.28 +pingre pingre ADJ s 0.58 0.74 0.56 0.54 +pingrerie pingrerie NOM f s 0.02 0.20 0.02 0.20 +pingres pingre NOM p 0.19 0.34 0.15 0.07 +pink pink NOM f s 1.00 0.34 1.00 0.34 +pinot pinot NOM m s 0.47 0.14 0.46 0.07 +pinots pinot NOM m p 0.47 0.14 0.01 0.07 +pins pin NOM m p 5.06 26.62 2.27 17.09 +pinson pinson NOM m s 2.86 1.82 2.68 1.08 +pinsons pinson NOM m p 2.86 1.82 0.18 0.74 +pinta pinter VER 0.33 0.68 0.05 0.20 ind:pas:3s;;ind:pas:3s; +pintade pintade NOM f s 0.44 2.16 0.44 0.54 +pintades pintade NOM f p 0.44 2.16 0.00 1.62 +pintait pinter VER 0.33 0.68 0.00 0.07 ind:imp:3s; +pinte pinte NOM f s 1.34 0.61 0.90 0.34 +pinter pinter VER 0.33 0.68 0.12 0.14 inf; +pintes pinte NOM f p 1.34 0.61 0.44 0.27 +pinça pincer VER 10.84 23.65 0.00 2.43 ind:pas:3s; +pinçage pinçage NOM m s 0.10 0.00 0.10 0.00 +pinçai pincer VER 10.84 23.65 0.00 0.07 ind:pas:1s; +pinçaient pincer VER 10.84 23.65 0.05 0.61 ind:imp:3p; +pinçais pincer VER 10.84 23.65 0.07 0.34 ind:imp:1s; +pinçait pincer VER 10.84 23.65 0.52 2.23 ind:imp:3s; +pinçant pincer VER 10.84 23.65 0.08 2.09 par:pre; +pinçard pinçard ADJ m s 0.00 0.07 0.00 0.07 +pinède pinède NOM f s 0.72 3.72 0.58 2.70 +pinèdes pinède NOM f p 0.72 3.72 0.15 1.01 +pinçon pinçon NOM m s 0.04 0.20 0.04 0.07 +pinçons pincer VER 10.84 23.65 0.01 0.00 imp:pre:1p; +pinçotait pinçoter VER 0.00 0.20 0.00 0.07 ind:imp:3s; +pinçotant pinçoter VER 0.00 0.20 0.00 0.07 par:pre; +pinçote pinçoter VER 0.00 0.20 0.00 0.07 ind:pre:3s; +pinçure pinçure NOM f s 0.00 0.07 0.00 0.07 +pinté pinter VER m s 0.33 0.68 0.04 0.00 par:pas; +pintée pinter VER f s 0.33 0.68 0.01 0.14 par:pas; +pintés pinter VER m p 0.33 0.68 0.00 0.07 par:pas; +piné piner VER m s 0.81 0.20 0.10 0.00 par:pas; +pinéal pinéal ADJ m s 0.23 0.07 0.02 0.07 +pinéale pinéal ADJ f s 0.23 0.07 0.19 0.00 +pinéales pinéal ADJ f p 0.23 0.07 0.02 0.00 +piochaient piocher VER 1.11 2.91 0.00 0.14 ind:imp:3p; +piochais piocher VER 1.11 2.91 0.00 0.14 ind:imp:1s; +piochait piocher VER 1.11 2.91 0.00 0.54 ind:imp:3s; +piochant piocher VER 1.11 2.91 0.01 0.14 par:pre; +pioche pioche NOM f s 4.36 6.42 4.18 4.39 +piochent piocher VER 1.11 2.91 0.01 0.07 ind:pre:3p; +piocher piocher VER 1.11 2.91 0.50 1.42 inf; +pioches pioche NOM f p 4.36 6.42 0.18 2.03 +piocheur piocheur NOM m s 0.00 0.07 0.00 0.07 +piochez piocher VER 1.11 2.91 0.25 0.00 imp:pre:2p;ind:pre:2p; +pioché piocher VER m s 1.11 2.91 0.18 0.00 par:pas; +piochée piocher VER f s 1.11 2.91 0.00 0.07 par:pas; +piochées piocher VER f p 1.11 2.91 0.00 0.07 par:pas; +piolet piolet NOM m s 0.31 0.14 0.31 0.14 +pion pion NOM m s 4.91 6.49 2.98 3.58 +pionce pioncer VER 1.63 2.64 0.28 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pioncent pioncer VER 1.63 2.64 0.00 0.20 ind:pre:3p; +pioncer pioncer VER 1.63 2.64 0.62 0.81 inf; +pioncera pioncer VER 1.63 2.64 0.01 0.00 ind:fut:3s; +pionces pioncer VER 1.63 2.64 0.15 0.14 ind:pre:2s; +pioncez pioncer VER 1.63 2.64 0.16 0.00 imp:pre:2p;ind:pre:2p; +pioncé pioncer VER m s 1.63 2.64 0.05 0.14 par:pas; +pionne pion NOM f s 4.91 6.49 0.01 0.14 +pionner pionner VER 0.01 0.00 0.01 0.00 inf; +pionnier pionnier NOM m s 4.17 9.73 1.27 2.50 +pionniers pionnier NOM m p 4.17 9.73 2.62 7.03 +pionnière pionnier NOM f s 4.17 9.73 0.28 0.07 +pionnières pionnière NOM f p 0.03 0.00 0.03 0.00 +pions pion NOM m p 4.91 6.49 1.92 2.77 +pionçais pioncer VER 1.63 2.64 0.33 0.07 ind:imp:1s;ind:imp:2s; +pionçait pioncer VER 1.63 2.64 0.03 0.41 ind:imp:3s; +pionçant pioncer VER 1.63 2.64 0.00 0.07 par:pre; +piot piot NOM m s 0.00 0.34 0.00 0.14 +piots piot NOM m p 0.00 0.34 0.00 0.20 +pioupiou pioupiou NOM m s 0.05 0.34 0.05 0.27 +pioupious pioupiou NOM m p 0.05 0.34 0.00 0.07 +pipa pipa NOM m s 0.02 0.07 0.02 0.07 +pipai piper VER 20.57 2.57 0.00 0.07 ind:pas:1s; +pipais piper VER 20.57 2.57 0.01 0.07 ind:imp:1s; +pipait piper VER 20.57 2.57 0.01 0.14 ind:imp:3s; +pipant piper VER 20.57 2.57 0.10 0.00 par:pre; +pipasse piper VER 20.57 2.57 0.00 0.07 sub:imp:1s; +pipe_line pipe_line NOM m s 0.11 0.34 0.09 0.34 +pipe_line pipe_line NOM m p 0.11 0.34 0.02 0.00 +pipe pipe NOM f s 16.38 32.84 12.74 25.74 +pipeau pipeau NOM m s 2.09 1.22 1.84 0.95 +pipeaux pipeau NOM m p 2.09 1.22 0.25 0.27 +pipelet pipelet NOM m s 0.00 0.47 0.00 0.34 +pipelets pipelet NOM m p 0.00 0.47 0.00 0.14 +pipelette pipelette NOM f s 0.35 1.82 0.27 1.62 +pipelettes pipelette NOM f p 0.35 1.82 0.09 0.20 +pipeline pipeline NOM m s 0.51 0.14 0.42 0.07 +pipelines pipeline NOM m p 0.51 0.14 0.08 0.07 +piper piper VER 20.57 2.57 19.94 0.88 inf; +pipera piper VER 20.57 2.57 0.01 0.00 ind:fut:3s; +piperade piperade NOM f s 0.00 0.07 0.00 0.07 +piperie piperie NOM f s 0.00 0.07 0.00 0.07 +pipes pipe NOM f p 16.38 32.84 3.64 7.09 +pipette pipette NOM f s 0.55 0.68 0.54 0.54 +pipettes pipette NOM f p 0.55 0.68 0.01 0.14 +pipeur pipeur NOM m s 0.00 0.47 0.00 0.14 +pipeuse pipeur NOM f s 0.00 0.47 0.00 0.14 +pipeuses pipeuse NOM f p 0.14 0.00 0.14 0.00 +pipi_room pipi_room NOM m s 0.05 0.00 0.05 0.00 +pipi pipi NOM m s 15.36 10.07 15.33 9.19 +pipiers pipier NOM m p 0.00 0.07 0.00 0.07 +pipis pipi NOM m p 15.36 10.07 0.03 0.88 +pipistrelle pipistrelle NOM f s 0.13 0.00 0.13 0.00 +pipo pipo NOM m s 0.18 0.00 0.18 0.00 +pipé piper VER m s 20.57 2.57 0.16 0.20 par:pas; +pipée pipée NOM f s 0.02 0.07 0.02 0.00 +pipées pipée NOM f p 0.02 0.07 0.00 0.07 +pipés piper VER m p 20.57 2.57 0.24 0.41 par:pas; +piqûre piqûre NOM f s 11.41 10.95 7.59 6.08 +piqûres piqûre NOM f p 11.41 10.95 3.82 4.86 +piqua piquer VER 50.05 64.86 0.03 3.72 ind:pas:3s; +piquage piquage NOM m s 0.02 0.07 0.02 0.00 +piquages piquage NOM m p 0.02 0.07 0.00 0.07 +piquai piquer VER 50.05 64.86 0.01 0.34 ind:pas:1s; +piquaient piquer VER 50.05 64.86 0.11 2.36 ind:imp:3p; +piquais piquer VER 50.05 64.86 0.91 0.88 ind:imp:1s;ind:imp:2s; +piquait piquer VER 50.05 64.86 0.90 6.55 ind:imp:3s; +piquant piquant NOM m s 1.17 1.76 0.74 1.15 +piquante piquant ADJ f s 2.59 6.82 1.60 2.57 +piquantes piquant ADJ f p 2.59 6.82 0.31 1.22 +piquants piquant NOM m p 1.17 1.76 0.43 0.61 +pique_assiette pique_assiette NOM s 0.39 0.34 0.27 0.27 +pique_assiette pique_assiette NOM p 0.39 0.34 0.12 0.07 +pique_boeuf pique_boeuf NOM m p 0.00 0.07 0.00 0.07 +pique_feu pique_feu NOM m 0.03 0.81 0.03 0.81 +pique_niquer pique_niquer VER 1.03 0.74 0.01 0.00 ind:imp:3p; +pique_nique pique_nique NOM m s 6.05 4.12 5.57 3.18 +pique_niquer pique_niquer VER 1.03 0.74 0.03 0.07 ind:pre:3p; +pique_niquer pique_niquer VER 1.03 0.74 0.83 0.47 inf;; +pique_niquer pique_niquer VER 1.03 0.74 0.01 0.00 cnd:pre:3p; +pique_niquer pique_niquer VER 1.03 0.74 0.01 0.00 ind:fut:1p; +pique_nique pique_nique NOM m p 6.05 4.12 0.48 0.95 +pique_niqueur pique_niqueur NOM m p 0.02 0.27 0.02 0.27 +pique_niquer pique_niquer VER 1.03 0.74 0.01 0.07 ind:pre:2p; +pique_niquer pique_niquer VER m s 1.03 0.74 0.05 0.07 par:pas; +pique piquer VER 50.05 64.86 7.74 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +piquent piquer VER 50.05 64.86 1.54 2.57 ind:pre:3p; +piquer piquer VER 50.05 64.86 15.35 14.26 inf; +piquera piquer VER 50.05 64.86 0.55 0.20 ind:fut:3s; +piquerai piquer VER 50.05 64.86 0.16 0.07 ind:fut:1s; +piqueraient piquer VER 50.05 64.86 0.02 0.07 cnd:pre:3p; +piquerais piquer VER 50.05 64.86 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +piquerait piquer VER 50.05 64.86 0.08 0.27 cnd:pre:3s; +piqueras piquer VER 50.05 64.86 0.17 0.14 ind:fut:2s; +piquerez piquer VER 50.05 64.86 0.01 0.00 ind:fut:2p; +piquerons piqueron NOM m p 0.14 0.00 0.14 0.00 +piqueront piquer VER 50.05 64.86 0.04 0.14 ind:fut:3p; +piques piquer VER 50.05 64.86 1.92 0.61 ind:pre:2s; +piquet piquet NOM m s 3.64 9.39 1.48 4.73 +piquetage piquetage NOM m s 0.00 0.07 0.00 0.07 +piquetaient piqueter VER 0.00 3.18 0.00 0.41 ind:imp:3p; +piquetait piqueter VER 0.00 3.18 0.00 0.07 ind:imp:3s; +piqueter piqueter VER 0.00 3.18 0.00 0.14 inf; +piquetis piquetis NOM m 0.00 0.14 0.00 0.14 +piquets piquet NOM m p 3.64 9.39 2.16 4.66 +piquette piquette NOM f s 0.99 1.15 0.99 1.08 +piquettes piquette NOM f p 0.99 1.15 0.00 0.07 +piqueté piqueter VER m s 0.00 3.18 0.00 0.95 par:pas; +piquetée piqueter VER f s 0.00 3.18 0.00 0.88 par:pas; +piquetées piqueter VER f p 0.00 3.18 0.00 0.47 par:pas; +piquetés piqueter VER m p 0.00 3.18 0.00 0.27 par:pas; +piqueur piqueur ADJ m s 0.76 0.61 0.61 0.54 +piqueurs piqueur NOM m p 0.32 1.35 0.14 0.34 +piqueuse piqueur NOM f s 0.32 1.35 0.00 0.27 +piqueuses piqueur NOM f p 0.32 1.35 0.00 0.41 +piqueux piqueux NOM m 0.01 0.20 0.01 0.20 +piquez piquer VER 50.05 64.86 1.15 0.20 imp:pre:2p;ind:pre:2p; +piquier piquier NOM m s 0.01 0.07 0.01 0.07 +piquiez piquer VER 50.05 64.86 0.13 0.07 ind:imp:2p; +piquions piquer VER 50.05 64.86 0.00 0.07 ind:imp:1p; +piquons piquer VER 50.05 64.86 0.04 0.27 imp:pre:1p;ind:pre:1p; +piquouse piquouse NOM f s 0.04 0.95 0.02 0.54 +piquouser piquouser VER 0.01 0.00 0.01 0.00 inf; +piquouses piquouse NOM f p 0.04 0.95 0.02 0.41 +piquouze piquouze NOM f s 0.05 0.34 0.02 0.20 +piquouzes piquouze NOM f p 0.05 0.34 0.03 0.14 +piquèrent piquer VER 50.05 64.86 0.00 0.47 ind:pas:3p; +piqué piquer VER m s 50.05 64.86 15.18 11.55 par:pas; +piquée piquer VER f s 50.05 64.86 2.79 3.78 par:pas; +piquées piquer VER f p 50.05 64.86 0.38 1.15 par:pas; +piqués piquer VER m p 50.05 64.86 0.58 2.57 par:pas; +pirandellienne pirandellien ADJ f s 0.00 0.07 0.00 0.07 +piranha piranha NOM m s 1.32 0.14 0.26 0.00 +piranhas piranha NOM m p 1.32 0.14 1.06 0.14 +piratage piratage NOM m s 0.56 0.07 0.53 0.07 +piratages piratage NOM m p 0.56 0.07 0.03 0.00 +pirataient pirater VER 2.84 0.47 0.00 0.07 ind:imp:3p; +piratant pirater VER 2.84 0.47 0.02 0.07 par:pre; +pirate pirate NOM m s 8.14 5.47 3.88 1.69 +piratent pirater VER 2.84 0.47 0.06 0.00 ind:pre:3p; +pirater pirater VER 2.84 0.47 0.90 0.14 inf; +piraterie piraterie NOM f s 0.51 0.61 0.49 0.41 +pirateries piraterie NOM f p 0.51 0.61 0.02 0.20 +pirates pirate NOM m p 8.14 5.47 4.26 3.78 +piratez pirater VER 2.84 0.47 0.06 0.00 imp:pre:2p;ind:pre:2p; +piraté pirater VER m s 2.84 0.47 1.14 0.14 par:pas; +piratée pirater VER f s 2.84 0.47 0.07 0.00 par:pas; +piratés pirater VER m p 2.84 0.47 0.25 0.07 par:pas; +pire pire ADJ s 98.83 57.70 83.22 39.80 +pires pire ADJ p 98.83 57.70 15.61 17.91 +piriforme piriforme ADJ m s 0.00 0.47 0.00 0.34 +piriformes piriforme ADJ f p 0.00 0.47 0.00 0.14 +pirogue pirogue NOM f s 0.76 4.73 0.65 2.50 +pirogues pirogue NOM f p 0.76 4.73 0.11 2.23 +pirojki pirojki NOM m 0.28 0.20 0.00 0.14 +pirojkis pirojki NOM m p 0.28 0.20 0.28 0.07 +pirolle pirolle NOM f s 0.00 0.20 0.00 0.20 +pirouetta pirouetter VER 0.10 0.81 0.00 0.20 ind:pas:3s; +pirouettais pirouetter VER 0.10 0.81 0.00 0.07 ind:imp:1s; +pirouettait pirouetter VER 0.10 0.81 0.00 0.07 ind:imp:3s; +pirouettant pirouetter VER 0.10 0.81 0.00 0.07 par:pre; +pirouette pirouette NOM f s 1.39 3.51 0.42 3.04 +pirouetter pirouetter VER 0.10 0.81 0.07 0.20 inf; +pirouettes pirouette NOM f p 1.39 3.51 0.96 0.47 +pis_aller pis_aller NOM m 0.14 0.81 0.14 0.81 +pis pis ADV 30.15 37.16 30.15 37.16 +pisa piser VER 0.50 0.00 0.50 0.00 ind:pas:3s; +pisan pisan ADJ m s 0.10 0.07 0.10 0.00 +pisans pisan ADJ m p 0.10 0.07 0.00 0.07 +pisans pisan NOM m p 0.00 0.07 0.00 0.07 +piscicole piscicole ADJ s 0.07 0.07 0.06 0.00 +piscicoles piscicole ADJ p 0.07 0.07 0.01 0.07 +pisciculteur pisciculteur NOM m s 0.01 0.07 0.01 0.07 +pisciculture pisciculture NOM f s 0.04 0.14 0.04 0.14 +pisciforme pisciforme ADJ f s 0.00 0.07 0.00 0.07 +piscine piscine NOM f s 23.62 17.09 22.19 15.74 +piscines piscine NOM f p 23.62 17.09 1.43 1.35 +pisiforme pisiforme NOM m s 0.03 0.00 0.03 0.00 +pissa pisser VER 39.03 26.49 0.01 0.54 ind:pas:3s; +pissaient pisser VER 39.03 26.49 0.04 0.68 ind:imp:3p; +pissais pisser VER 39.03 26.49 0.67 0.27 ind:imp:1s;ind:imp:2s; +pissait pisser VER 39.03 26.49 0.78 1.96 ind:imp:3s; +pissaladière pissaladière NOM f s 0.00 0.07 0.00 0.07 +pissant pisser VER 39.03 26.49 0.45 0.68 par:pre; +pissat pissat NOM m s 0.10 0.41 0.10 0.41 +pisse_copie pisse_copie NOM s 0.01 0.27 0.01 0.20 +pisse_copie pisse_copie NOM p 0.01 0.27 0.00 0.07 +pisse_froid pisse_froid NOM m 0.10 0.34 0.10 0.34 +pisse_vinaigre pisse_vinaigre NOM m 0.04 0.07 0.04 0.07 +pisse pisser VER 39.03 26.49 6.84 5.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pissenlit pissenlit NOM m s 1.32 3.24 0.68 1.28 +pissenlits pissenlit NOM m p 1.32 3.24 0.65 1.96 +pissent pisser VER 39.03 26.49 0.60 0.68 ind:pre:3p; +pisser pisser VER 39.03 26.49 20.83 13.65 inf; +pissera pisser VER 39.03 26.49 0.25 0.00 ind:fut:3s; +pisserai pisser VER 39.03 26.49 0.43 0.00 ind:fut:1s; +pisseraient pisser VER 39.03 26.49 0.01 0.14 cnd:pre:3p; +pisserais pisser VER 39.03 26.49 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +pisserait pisser VER 39.03 26.49 0.07 0.14 cnd:pre:3s; +pisseras pisser VER 39.03 26.49 0.06 0.27 ind:fut:2s; +pisses pisser VER 39.03 26.49 1.05 0.07 ind:pre:2s; +pissette pissette NOM f s 0.14 0.20 0.14 0.20 +pisseur pisseur NOM m s 0.51 0.88 0.25 0.14 +pisseurs pisseur NOM m p 0.51 0.88 0.03 0.07 +pisseuse pisseux ADJ f s 0.71 2.84 0.30 0.68 +pisseuses pisseuse NOM f p 0.14 0.00 0.14 0.00 +pisseux pisseux ADJ m 0.71 2.84 0.40 1.89 +pissez pisser VER 39.03 26.49 1.07 0.20 imp:pre:2p;ind:pre:2p; +pissoir pissoir NOM m s 0.02 0.00 0.02 0.00 +pissons pisser VER 39.03 26.49 0.14 0.00 imp:pre:1p;ind:pre:1p; +pissât pisser VER 39.03 26.49 0.00 0.07 sub:imp:3s; +pissotière pissotière NOM f s 0.61 3.45 0.41 2.03 +pissotières pissotière NOM f p 0.61 3.45 0.20 1.42 +pissou pissou NOM m s 5.28 0.07 5.28 0.07 +pissèrent pisser VER 39.03 26.49 0.00 0.07 ind:pas:3p; +pissé pisser VER m s 39.03 26.49 5.46 1.89 par:pas; +pissée pisser VER f s 39.03 26.49 0.13 0.00 par:pas; +pista pister VER 1.90 1.28 0.00 0.07 ind:pas:3s; +pistache pistache NOM f s 0.69 1.69 0.41 0.74 +pistaches pistache NOM f p 0.69 1.69 0.27 0.95 +pistachier pistachier NOM m s 0.00 0.14 0.00 0.07 +pistachiers pistachier NOM m p 0.00 0.14 0.00 0.07 +pistage pistage NOM m s 0.30 0.00 0.30 0.00 +pistais pister VER 1.90 1.28 0.00 0.07 ind:imp:1s; +pistait pister VER 1.90 1.28 0.06 0.07 ind:imp:3s; +pistant pister VER 1.90 1.28 0.00 0.20 par:pre; +pistard pistard NOM m s 0.01 0.47 0.01 0.20 +pistards pistard NOM m p 0.01 0.47 0.00 0.27 +piste piste NOM f s 51.77 41.15 43.01 34.86 +pistent pister VER 1.90 1.28 0.08 0.14 ind:pre:3p; +pister pister VER 1.90 1.28 0.76 0.47 inf; +pistera pister VER 1.90 1.28 0.01 0.00 ind:fut:3s; +pisterai pister VER 1.90 1.28 0.02 0.00 ind:fut:1s; +pistes piste NOM f p 51.77 41.15 8.77 6.28 +pisteur pisteur NOM m s 0.54 0.95 0.47 0.81 +pisteurs pisteur NOM m p 0.54 0.95 0.06 0.14 +pistez pister VER 1.90 1.28 0.15 0.00 imp:pre:2p;ind:pre:2p; +pistil pistil NOM m s 0.02 0.81 0.02 0.47 +pistils pistil NOM m p 0.02 0.81 0.00 0.34 +pistole pistole NOM f s 1.09 0.34 0.16 0.27 +pistolero pistolero NOM m s 0.24 0.14 0.08 0.07 +pistoleros pistolero NOM m p 0.24 0.14 0.16 0.07 +pistoles pistole NOM f p 1.09 0.34 0.93 0.07 +pistolet_mitrailleur pistolet_mitrailleur NOM m s 0.02 0.00 0.02 0.00 +pistolet pistolet NOM m s 34.92 18.78 31.63 14.80 +pistolets pistolet NOM m p 34.92 18.78 3.29 3.99 +pistoleurs pistoleur NOM m p 0.00 0.07 0.00 0.07 +pistolétade pistolétade NOM f s 0.00 0.14 0.00 0.14 +piston piston NOM m s 2.46 3.18 1.79 2.50 +pistonnais pistonner VER 1.03 0.47 0.00 0.07 ind:imp:2s; +pistonner pistonner VER 1.03 0.47 0.29 0.20 inf; +pistonnera pistonner VER 1.03 0.47 0.01 0.00 ind:fut:3s; +pistonnerai pistonner VER 1.03 0.47 0.01 0.00 ind:fut:1s; +pistonnions pistonner VER 1.03 0.47 0.01 0.00 ind:imp:1p; +pistonné pistonner VER m s 1.03 0.47 0.67 0.14 par:pas; +pistonnée pistonner VER f s 1.03 0.47 0.04 0.00 par:pas; +pistonnés pistonné NOM m p 0.35 0.07 0.10 0.07 +pistons piston NOM m p 2.46 3.18 0.68 0.68 +pistou pistou NOM m s 0.38 0.00 0.38 0.00 +pisté pister VER m s 1.90 1.28 0.17 0.14 par:pas; +pistée pister VER f s 1.90 1.28 0.03 0.00 par:pas; +pistées pister VER f p 1.90 1.28 0.00 0.07 par:pas; +pistés pister VER m p 1.90 1.28 0.08 0.00 par:pas; +pisé pisé NOM m s 0.02 0.47 0.02 0.47 +pit_bull pit_bull NOM m s 0.63 0.00 0.26 0.00 +pit_bull pit_bull NOM m p 0.63 0.00 0.06 0.00 +pit_bull pit_bull NOM m s 0.63 0.00 0.31 0.00 +pita pita NOM m s 0.73 0.00 0.70 0.00 +pitaine pitaine NOM m s 0.00 2.09 0.00 2.09 +pitance pitance NOM f s 0.35 2.70 0.35 2.57 +pitances pitance NOM f p 0.35 2.70 0.00 0.14 +pitancher pitancher VER 0.00 0.14 0.00 0.07 inf; +pitancherai pitancher VER 0.00 0.14 0.00 0.07 ind:fut:1s; +pitancier pitancier NOM m s 0.00 0.07 0.00 0.07 +pitas pita NOM m p 0.73 0.00 0.03 0.00 +pitbull pitbull NOM m s 1.02 0.00 0.82 0.00 +pitbulls pitbull NOM m p 1.02 0.00 0.20 0.00 +pitch pitch NOM m s 0.29 0.00 0.29 0.00 +pitcher pitcher VER 0.03 0.00 0.03 0.00 inf; +pitchoun pitchoun NOM m s 0.03 0.07 0.02 0.00 +pitchoune pitchoun ADJ f s 0.03 0.00 0.03 0.00 +pitchounet pitchounet NOM m s 0.14 0.00 0.14 0.00 +pitchounette pitchounette NOM f s 0.14 0.00 0.14 0.00 +pitchpin pitchpin NOM m s 0.00 0.47 0.00 0.47 +piteuse piteux ADJ f s 0.82 4.46 0.12 1.69 +piteusement piteusement ADV 0.14 1.42 0.14 1.42 +piteuses piteux ADJ f p 0.82 4.46 0.00 0.07 +piteux piteux ADJ m 0.82 4.46 0.70 2.70 +pièce pièce NOM f s 151.10 276.35 110.66 193.78 +pièces pièce NOM f p 151.10 276.35 40.44 82.57 +piège piège NOM m s 33.12 30.20 27.53 19.93 +piègent piéger VER 21.77 7.09 0.20 0.14 ind:pre:3p; +pièges piège NOM m p 33.12 30.20 5.59 10.27 +pithiviers pithiviers NOM m 0.00 0.07 0.00 0.07 +piète piéter VER 0.01 0.54 0.00 0.07 ind:pre:3s; +piètement piètement NOM m s 0.00 0.07 0.00 0.07 +piètre piètre ADJ s 2.65 4.19 2.47 3.45 +piètrement piètrement ADV 0.03 0.00 0.03 0.00 +piètres piètre ADJ p 2.65 4.19 0.18 0.74 +pithécanthrope pithécanthrope NOM m s 0.00 0.34 0.00 0.20 +pithécanthropes pithécanthrope NOM m p 0.00 0.34 0.00 0.14 +pitié pitié NOM f s 76.38 58.11 76.38 57.91 +pitiés pitié NOM f p 76.38 58.11 0.00 0.20 +piton piton NOM m s 0.46 7.30 0.40 6.42 +pitonnant pitonner VER 0.00 0.14 0.00 0.07 par:pre; +pitonner pitonner VER 0.00 0.14 0.00 0.07 inf; +pitons piton NOM m p 0.46 7.30 0.06 0.88 +pitoyable pitoyable ADJ s 6.26 9.19 5.63 6.96 +pitoyablement pitoyablement ADV 0.17 0.47 0.17 0.47 +pitoyables pitoyable ADJ p 6.26 9.19 0.63 2.23 +pitre pitre NOM m s 1.70 1.96 1.55 1.69 +pitrerie pitrerie NOM f s 0.99 1.28 0.16 0.34 +pitreries pitrerie NOM f p 0.99 1.28 0.83 0.95 +pitres pitre NOM m p 1.70 1.96 0.15 0.27 +pittoresque pittoresque ADJ s 1.71 6.49 1.47 4.53 +pittoresques pittoresque ADJ p 1.71 6.49 0.25 1.96 +pituitaire pituitaire ADJ s 0.15 0.20 0.12 0.14 +pituitaires pituitaire ADJ p 0.15 0.20 0.03 0.07 +pituite pituite NOM f s 0.01 0.07 0.01 0.07 +pityriasis pityriasis NOM m 0.01 0.07 0.01 0.07 +piu piu ADV 0.02 0.07 0.02 0.07 +piécette piécette NOM f s 0.09 1.89 0.07 0.68 +piécettes piécette NOM f p 0.09 1.89 0.02 1.22 +piédestal piédestal NOM m s 0.80 2.09 0.79 2.09 +piédestaux piédestal NOM m p 0.80 2.09 0.01 0.00 +piédroit piédroit NOM m s 0.00 0.20 0.00 0.14 +piédroits piédroit NOM m p 0.00 0.20 0.00 0.07 +piégeage piégeage NOM m s 0.01 0.27 0.01 0.14 +piégeages piégeage NOM m p 0.01 0.27 0.00 0.14 +piégeais piéger VER 21.77 7.09 0.02 0.07 ind:imp:1s; +piégeait piéger VER 21.77 7.09 0.04 0.41 ind:imp:3s; +piégeant piéger VER 21.77 7.09 0.04 0.00 par:pre; +piéger piéger VER 21.77 7.09 6.33 2.36 inf; +piégerai piéger VER 21.77 7.09 0.04 0.07 ind:fut:1s; +piégerais piéger VER 21.77 7.09 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +piégerait piéger VER 21.77 7.09 0.01 0.07 cnd:pre:3s; +piégerez piéger VER 21.77 7.09 0.03 0.00 ind:fut:2p; +piégeront piéger VER 21.77 7.09 0.01 0.07 ind:fut:3p; +piégeur piégeur NOM m s 0.23 0.34 0.08 0.20 +piégeurs piégeur NOM m p 0.23 0.34 0.00 0.07 +piégeuse piégeur NOM f s 0.23 0.34 0.15 0.00 +piégeuses piégeur NOM f p 0.23 0.34 0.00 0.07 +piégez piéger VER 21.77 7.09 0.07 0.00 imp:pre:2p;ind:pre:2p; +piégé piéger VER m s 21.77 7.09 9.12 1.69 par:pas; +piégée piéger VER f s 21.77 7.09 2.34 0.61 par:pas; +piégées piéger VER f p 21.77 7.09 0.43 0.54 par:pas; +piégés piéger VER m p 21.77 7.09 2.53 0.68 par:pas; +piémont piémont NOM m s 0.01 0.14 0.01 0.14 +piémontais piémontais NOM m 0.60 0.34 0.60 0.34 +piémontaise piémontais ADJ f s 0.34 0.34 0.01 0.07 +piéride piéride NOM f s 0.00 0.14 0.00 0.07 +piérides piéride NOM f p 0.00 0.14 0.00 0.07 +piéta piéta NOM f s 0.15 0.07 0.15 0.07 +piétaille piétaille NOM f s 0.20 1.28 0.20 1.28 +piétait piéter VER 0.01 0.54 0.00 0.07 ind:imp:3s; +piétant piéter VER 0.01 0.54 0.00 0.07 par:pre; +piétement piétement NOM m s 0.00 0.47 0.00 0.47 +piéter piéter VER 0.01 0.54 0.00 0.07 inf; +piétin piétin NOM m s 0.00 0.07 0.00 0.07 +piétina piétiner VER 6.78 20.61 0.10 0.74 ind:pas:3s; +piétinai piétiner VER 6.78 20.61 0.00 0.07 ind:pas:1s; +piétinaient piétiner VER 6.78 20.61 0.11 1.62 ind:imp:3p; +piétinais piétiner VER 6.78 20.61 0.29 0.14 ind:imp:1s;ind:imp:2s; +piétinait piétiner VER 6.78 20.61 0.03 1.89 ind:imp:3s; +piétinant piétiner VER 6.78 20.61 0.01 2.43 par:pre; +piétinante piétinant ADJ f s 0.00 0.34 0.00 0.07 +piétine piétiner VER 6.78 20.61 1.66 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +piétinement piétinement NOM m s 0.11 5.34 0.09 4.53 +piétinements piétinement NOM m p 0.11 5.34 0.01 0.81 +piétinent piétiner VER 6.78 20.61 0.39 1.28 ind:pre:3p; +piétiner piétiner VER 6.78 20.61 1.39 3.45 inf; +piétinera piétiner VER 6.78 20.61 0.26 0.14 ind:fut:3s; +piétinerai piétiner VER 6.78 20.61 0.14 0.00 ind:fut:1s; +piétinerais piétiner VER 6.78 20.61 0.03 0.00 cnd:pre:2s; +piétinerait piétiner VER 6.78 20.61 0.02 0.00 cnd:pre:3s; +piétineront piétiner VER 6.78 20.61 0.01 0.00 ind:fut:3p; +piétinez piétiner VER 6.78 20.61 0.20 0.07 imp:pre:2p;ind:pre:2p; +piétinons piétiner VER 6.78 20.61 0.02 0.14 ind:pre:1p; +piétinèrent piétiner VER 6.78 20.61 0.00 0.20 ind:pas:3p; +piétiné piétiner VER m s 6.78 20.61 1.35 2.57 par:pas; +piétinée piétiner VER f s 6.78 20.61 0.34 1.55 par:pas; +piétinées piétiner VER f p 6.78 20.61 0.05 0.74 par:pas; +piétinés piétiner VER m p 6.78 20.61 0.37 1.15 par:pas; +piétiste piétiste ADJ f s 0.00 0.07 0.00 0.07 +piéton piéton NOM m s 0.75 3.72 0.54 1.28 +piétonne piéton ADJ f s 0.85 1.82 0.04 0.14 +piétonnes piéton ADJ f p 0.85 1.82 0.01 0.00 +piétonnier piétonnier ADJ m s 0.14 0.20 0.02 0.07 +piétonnière piétonnier ADJ f s 0.14 0.20 0.02 0.07 +piétonnières piétonnier ADJ f p 0.14 0.20 0.10 0.07 +piétons piéton ADJ m p 0.85 1.82 0.26 1.62 +piété piété NOM f s 1.47 7.70 1.47 7.70 +pive pive NOM f s 0.00 0.07 0.00 0.07 +pivert pivert NOM m s 0.22 0.88 0.16 0.81 +piverts pivert NOM m p 0.22 0.88 0.06 0.07 +pivoine pivoine NOM f s 0.73 1.96 0.19 0.74 +pivoines pivoine NOM f p 0.73 1.96 0.54 1.22 +pivot pivot NOM m s 0.68 1.69 0.61 1.55 +pivota pivoter VER 1.19 9.39 0.00 2.09 ind:pas:3s; +pivotai pivoter VER 1.19 9.39 0.00 0.07 ind:pas:1s; +pivotaient pivoter VER 1.19 9.39 0.01 0.14 ind:imp:3p; +pivotait pivoter VER 1.19 9.39 0.04 0.54 ind:imp:3s; +pivotant pivotant ADJ m s 0.08 0.81 0.04 0.47 +pivotante pivotant ADJ f s 0.08 0.81 0.03 0.20 +pivotantes pivotant ADJ f p 0.08 0.81 0.00 0.07 +pivotants pivotant ADJ m p 0.08 0.81 0.00 0.07 +pivote pivoter VER 1.19 9.39 0.36 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pivotement pivotement NOM m s 0.01 0.07 0.01 0.07 +pivotent pivoter VER 1.19 9.39 0.01 0.14 ind:pre:3p; +pivoter pivoter VER 1.19 9.39 0.33 2.91 inf; +pivotes pivoter VER 1.19 9.39 0.01 0.00 ind:pre:2s; +pivotez pivoter VER 1.19 9.39 0.29 0.00 imp:pre:2p; +pivots pivot NOM m p 0.68 1.69 0.07 0.14 +pivotèrent pivoter VER 1.19 9.39 0.00 0.14 ind:pas:3p; +pivoté pivoter VER m s 1.19 9.39 0.13 0.27 par:pas; +pixel pixel NOM m s 0.36 0.00 0.03 0.00 +pixellisés pixelliser VER m p 0.03 0.00 0.03 0.00 par:pas; +pixels pixel NOM m p 0.36 0.00 0.34 0.00 +pizza pizza NOM f s 23.09 3.24 18.60 2.09 +pizzaiolo pizzaiolo NOM m s 0.02 0.00 0.02 0.00 +pizzas pizza NOM f p 23.09 3.24 4.49 1.15 +pizzeria pizzeria NOM f s 2.12 1.42 2.01 1.35 +pizzerias pizzeria NOM f p 2.12 1.42 0.10 0.07 +pizzicato pizzicato NOM m s 0.29 0.14 0.29 0.14 +plût plaire VER 607.24 139.80 0.22 1.69 sub:imp:3s; +plaît plaire VER 607.24 139.80 499.91 55.00 ind:pre:3s; +placage placage NOM m s 0.22 0.34 0.22 0.20 +placages placage NOM m p 0.22 0.34 0.00 0.14 +placard placard NOM m s 21.47 34.39 19.26 25.74 +placardait placarder VER 0.56 3.18 0.00 0.20 ind:imp:3s; +placarde placarder VER 0.56 3.18 0.11 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +placarder placarder VER 0.56 3.18 0.04 0.54 inf; +placardes placarder VER 0.56 3.18 0.00 0.07 ind:pre:2s; +placardier placardier NOM m s 0.00 0.14 0.00 0.14 +placards placard NOM m p 21.47 34.39 2.20 8.65 +placardé placarder VER m s 0.56 3.18 0.16 0.41 par:pas; +placardée placarder VER f s 0.56 3.18 0.07 0.41 par:pas; +placardées placarder VER f p 0.56 3.18 0.02 0.34 par:pas; +placardés placarder VER m p 0.56 3.18 0.16 0.14 par:pas; +place place NOM f s 301.30 468.58 280.54 437.97 +placebo placebo NOM m s 0.52 0.14 0.47 0.14 +placebos placebo NOM m p 0.52 0.14 0.05 0.00 +placement placement NOM m s 3.12 3.11 2.13 2.03 +placements placement NOM m p 3.12 3.11 0.99 1.08 +placent placer VER 52.95 101.76 0.58 0.74 ind:pre:3p; +placenta placenta NOM m s 0.70 0.61 0.69 0.54 +placentaire placentaire ADJ s 0.04 0.00 0.04 0.00 +placentas placenta NOM m p 0.70 0.61 0.02 0.07 +placer placer VER 52.95 101.76 10.24 21.69 inf; +placera placer VER 52.95 101.76 0.35 0.34 ind:fut:3s; +placerai placer VER 52.95 101.76 0.55 0.27 ind:fut:1s; +placeraient placer VER 52.95 101.76 0.00 0.07 cnd:pre:3p; +placerais placer VER 52.95 101.76 0.05 0.27 cnd:pre:1s; +placerait placer VER 52.95 101.76 0.17 0.68 cnd:pre:3s; +placeras placer VER 52.95 101.76 0.08 0.00 ind:fut:2s; +placerez placer VER 52.95 101.76 0.20 0.20 ind:fut:2p; +placerons placer VER 52.95 101.76 0.06 0.20 ind:fut:1p; +placeront placer VER 52.95 101.76 0.25 0.00 ind:fut:3p; +places place NOM f p 301.30 468.58 20.76 30.61 +placet placet NOM m s 0.01 0.27 0.00 0.20 +placets placet NOM m p 0.01 0.27 0.01 0.07 +placette placette NOM f s 0.00 1.82 0.00 1.49 +placettes placette NOM f p 0.00 1.82 0.00 0.34 +placeur placeur NOM m s 0.06 0.34 0.03 0.07 +placeurs placeur NOM m p 0.06 0.34 0.03 0.00 +placeuse placeur NOM f s 0.06 0.34 0.00 0.20 +placeuses placeur NOM f p 0.06 0.34 0.00 0.07 +placez placer VER 52.95 101.76 4.01 1.15 imp:pre:2p;ind:pre:2p; +placide placide ADJ s 0.29 5.95 0.19 5.20 +placidement placidement ADV 0.00 1.35 0.00 1.35 +placides placide ADJ p 0.29 5.95 0.11 0.74 +placidité placidité NOM f s 0.00 2.03 0.00 2.03 +placier placier NOM m s 0.03 0.14 0.03 0.07 +placiers placier NOM m p 0.03 0.14 0.00 0.07 +placiez placer VER 52.95 101.76 0.03 0.00 ind:imp:2p; +placions placer VER 52.95 101.76 0.04 0.07 ind:imp:1p; +placoplâtre placoplâtre NOM m s 0.06 0.00 0.06 0.00 +placèrent placer VER 52.95 101.76 0.14 0.68 ind:pas:3p; +placé placer VER m s 52.95 101.76 11.81 22.91 par:pas; +placée placer VER f s 52.95 101.76 4.51 8.18 par:pas; +placées placer VER f p 52.95 101.76 1.09 2.84 par:pas; +placés placer VER m p 52.95 101.76 2.19 6.96 par:pas; +plafond plafond NOM m s 10.34 50.34 9.44 46.35 +plafonds plafond NOM m p 10.34 50.34 0.90 3.99 +plafonnant plafonner VER 0.17 0.34 0.00 0.07 par:pre; +plafonne plafonner VER 0.17 0.34 0.07 0.07 imp:pre:2s;ind:pre:3s; +plafonnement plafonnement NOM m s 0.04 0.07 0.04 0.07 +plafonner plafonner VER 0.17 0.34 0.05 0.07 inf; +plafonnier plafonnier NOM m s 0.13 1.42 0.13 1.15 +plafonniers plafonnier NOM m p 0.13 1.42 0.00 0.20 +plafonnière plafonnier NOM f s 0.13 1.42 0.00 0.07 +plafonnons plafonner VER 0.17 0.34 0.00 0.07 ind:pre:1p; +plafonné plafonner VER m s 0.17 0.34 0.04 0.07 par:pas; +plafonnée plafonner VER f s 0.17 0.34 0.01 0.00 par:pas; +plafonnées plafonné ADJ f p 0.01 0.14 0.00 0.14 +plage plage NOM f s 48.19 86.89 44.99 72.03 +plages plage NOM f p 48.19 86.89 3.20 14.86 +plagiaire plagiaire NOM m s 0.19 0.07 0.17 0.00 +plagiaires plagiaire NOM m p 0.19 0.07 0.02 0.07 +plagiant plagier VER 0.40 0.47 0.00 0.14 par:pre; +plagiat plagiat NOM m s 0.38 0.41 0.35 0.20 +plagiats plagiat NOM m p 0.38 0.41 0.02 0.20 +plagie plagier VER 0.40 0.47 0.03 0.07 ind:pre:1s;ind:pre:3s; +plagier plagier VER 0.40 0.47 0.11 0.07 inf; +plagies plagier VER 0.40 0.47 0.01 0.00 ind:pre:2s; +plagioclase plagioclase NOM m s 0.01 0.00 0.01 0.00 +plagié plagier VER m s 0.40 0.47 0.25 0.20 par:pas; +plaid plaid NOM m s 0.34 1.15 0.28 0.95 +plaida plaider VER 11.46 12.70 0.14 0.81 ind:pas:3s; +plaidable plaidable ADJ f s 0.02 0.00 0.02 0.00 +plaidai plaider VER 11.46 12.70 0.00 0.07 ind:pas:1s; +plaidaient plaider VER 11.46 12.70 0.00 0.41 ind:imp:3p; +plaidais plaider VER 11.46 12.70 0.01 0.20 ind:imp:1s;ind:imp:2s; +plaidait plaider VER 11.46 12.70 0.06 0.88 ind:imp:3s; +plaidant plaider VER 11.46 12.70 0.21 0.41 par:pre; +plaidants plaidant ADJ m p 0.00 0.07 0.00 0.07 +plaide plaider VER 11.46 12.70 2.75 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +plaident plaider VER 11.46 12.70 0.13 0.20 ind:pre:3p; +plaider plaider VER 11.46 12.70 4.07 5.61 inf; +plaidera plaider VER 11.46 12.70 0.42 0.00 ind:fut:3s; +plaiderai plaider VER 11.46 12.70 0.61 0.14 ind:fut:1s; +plaiderait plaider VER 11.46 12.70 0.12 0.27 cnd:pre:3s; +plaideras plaider VER 11.46 12.70 0.13 0.07 ind:fut:2s; +plaiderez plaider VER 11.46 12.70 0.24 0.07 ind:fut:2p; +plaiderons plaider VER 11.46 12.70 0.08 0.14 ind:fut:1p; +plaideront plaider VER 11.46 12.70 0.01 0.00 ind:fut:3p; +plaides plaider VER 11.46 12.70 0.24 0.14 ind:pre:2s; +plaideur plaideur NOM m s 0.05 0.47 0.04 0.14 +plaideurs plaideur NOM m p 0.05 0.47 0.01 0.34 +plaidez plaider VER 11.46 12.70 1.03 0.20 imp:pre:2p;ind:pre:2p; +plaidiez plaider VER 11.46 12.70 0.03 0.07 ind:imp:2p; +plaidions plaider VER 11.46 12.70 0.00 0.07 ind:imp:1p; +plaidoirie plaidoirie NOM f s 1.27 2.36 1.14 1.22 +plaidoiries plaidoirie NOM f p 1.27 2.36 0.13 1.15 +plaidons plaider VER 11.46 12.70 0.09 0.14 imp:pre:1p;ind:pre:1p; +plaidoyer plaidoyer NOM m s 0.64 1.28 0.60 0.88 +plaidoyers plaidoyer NOM m p 0.64 1.28 0.04 0.41 +plaids plaid NOM m p 0.34 1.15 0.05 0.20 +plaidèrent plaider VER 11.46 12.70 0.00 0.14 ind:pas:3p; +plaidé plaider VER m s 11.46 12.70 1.03 0.81 par:pas; +plaidée plaider VER f s 11.46 12.70 0.05 0.14 par:pas; +plaie plaie NOM f s 15.02 24.26 10.42 14.32 +plaies plaie NOM f p 15.02 24.26 4.59 9.93 +plaignît plaindre VER 61.25 67.84 0.00 0.20 sub:imp:3s; +plaignaient plaindre VER 61.25 67.84 0.28 2.30 ind:imp:3p; +plaignais plaindre VER 61.25 67.84 0.70 1.49 ind:imp:1s;ind:imp:2s; +plaignait plaindre VER 61.25 67.84 0.94 8.92 ind:imp:3s; +plaignant plaignant NOM m s 1.56 0.74 0.86 0.34 +plaignante plaignant NOM f s 1.56 0.74 0.33 0.14 +plaignantes plaignant NOM f p 1.56 0.74 0.03 0.07 +plaignants plaignant NOM m p 1.56 0.74 0.34 0.20 +plaigne plaindre VER 61.25 67.84 0.34 0.81 sub:pre:1s;sub:pre:3s; +plaignent plaindre VER 61.25 67.84 2.71 1.49 ind:pre:3p; +plaignes plaindre VER 61.25 67.84 0.04 0.00 sub:pre:2s; +plaignez plaindre VER 61.25 67.84 1.60 0.74 imp:pre:2p;ind:pre:2p; +plaigniez plaindre VER 61.25 67.84 0.05 0.00 ind:imp:2p; +plaignions plaindre VER 61.25 67.84 0.02 0.20 ind:imp:1p; +plaignirent plaindre VER 61.25 67.84 0.01 0.27 ind:pas:3p; +plaignis plaindre VER 61.25 67.84 0.00 0.20 ind:pas:1s; +plaignit plaindre VER 61.25 67.84 0.14 2.84 ind:pas:3s; +plaignons plaindre VER 61.25 67.84 0.34 0.47 imp:pre:1p;ind:pre:1p; +plain_chant plain_chant NOM m s 0.10 0.27 0.10 0.27 +plain_pied plain_pied NOM m s 0.12 3.65 0.12 3.65 +plain plain ADJ m s 0.60 0.27 0.31 0.14 +plaindra plaindre VER 61.25 67.84 0.41 0.07 ind:fut:3s; +plaindrai plaindre VER 61.25 67.84 0.82 0.07 ind:fut:1s; +plaindraient plaindre VER 61.25 67.84 0.16 0.07 cnd:pre:3p; +plaindrais plaindre VER 61.25 67.84 0.40 0.20 cnd:pre:1s;cnd:pre:2s; +plaindrait plaindre VER 61.25 67.84 0.12 0.81 cnd:pre:3s; +plaindras plaindre VER 61.25 67.84 0.05 0.00 ind:fut:2s; +plaindre plaindre VER 61.25 67.84 17.27 24.53 inf;;inf;;inf;;inf;; +plaindrez plaindre VER 61.25 67.84 0.03 0.00 ind:fut:2p; +plaindriez plaindre VER 61.25 67.84 0.01 0.07 cnd:pre:2p; +plaindrions plaindre VER 61.25 67.84 0.00 0.07 cnd:pre:1p; +plaindront plaindre VER 61.25 67.84 0.11 0.14 ind:fut:3p; +plaine plaine NOM f s 3.52 39.86 3.52 39.86 +plaines plain NOM f p 1.63 7.43 1.63 7.43 +plains plaindre VER 61.25 67.84 12.84 5.61 imp:pre:2s;ind:pre:1s;ind:pre:2s; +plaint plaindre VER m s 61.25 67.84 7.28 7.84 ind:pre:3s;par:pas; +plainte plaindre VER f s 61.25 67.84 13.79 6.35 par:pas; +plaintes plainte NOM f p 15.07 26.69 5.46 9.59 +plaintif plaintif ADJ m s 1.12 6.82 0.81 3.31 +plaintifs plaintif ADJ m p 1.12 6.82 0.06 1.01 +plaintive plaintif ADJ f s 1.12 6.82 0.26 2.09 +plaintivement plaintivement ADV 0.00 0.81 0.00 0.81 +plaintives plaintif ADJ f p 1.12 6.82 0.00 0.41 +plaints plaindre VER m p 61.25 67.84 0.44 0.47 par:pas; +plaira plaire VER 607.24 139.80 12.63 3.45 ind:fut:3s; +plairai plaire VER 607.24 139.80 0.16 0.14 ind:fut:1s; +plairaient plaire VER 607.24 139.80 0.21 0.41 cnd:pre:3p; +plairais plaire VER 607.24 139.80 0.61 0.27 cnd:pre:1s;cnd:pre:2s; +plairait plaire VER 607.24 139.80 14.60 4.46 cnd:pre:3s; +plairas plaire VER 607.24 139.80 0.70 0.14 ind:fut:2s; +plaire plaire VER 607.24 139.80 19.00 19.66 inf;; +plairez plaire VER 607.24 139.80 1.07 0.34 ind:fut:2p; +plairiez plaire VER 607.24 139.80 0.30 0.00 cnd:pre:2p; +plairont plaire VER 607.24 139.80 0.81 0.20 ind:fut:3p; +plais plaire VER 607.24 139.80 21.48 4.66 imp:pre:2s;ind:pre:1s;ind:pre:2s; +plaisaient plaire VER 607.24 139.80 0.55 2.97 ind:imp:3p; +plaisais plaire VER 607.24 139.80 1.75 2.70 ind:imp:1s;ind:imp:2s; +plaisait plaire VER 607.24 139.80 8.75 27.50 ind:imp:3s; +plaisamment plaisamment ADV 0.02 2.03 0.02 2.03 +plaisance plaisance NOM f s 0.35 2.03 0.35 2.03 +plaisancier plaisancier NOM m s 0.19 0.20 0.00 0.07 +plaisanciers plaisancier NOM m p 0.19 0.20 0.19 0.14 +plaisant plaisant ADJ m s 4.88 9.73 2.11 4.32 +plaisanta plaisanter VER 87.13 27.43 0.00 2.03 ind:pas:3s; +plaisantai plaisanter VER 87.13 27.43 0.10 0.14 ind:pas:1s; +plaisantaient plaisanter VER 87.13 27.43 0.13 0.68 ind:imp:3p; +plaisantais plaisanter VER 87.13 27.43 7.92 1.22 ind:imp:1s;ind:imp:2s; +plaisantait plaisanter VER 87.13 27.43 2.08 5.95 ind:imp:3s; +plaisantant plaisanter VER 87.13 27.43 0.62 2.64 par:pre; +plaisante plaisanter VER 87.13 27.43 28.50 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +plaisantent plaisanter VER 87.13 27.43 0.61 0.27 ind:pre:3p; +plaisanter plaisanter VER 87.13 27.43 6.24 6.01 inf; +plaisantera plaisanter VER 87.13 27.43 0.00 0.07 ind:fut:3s; +plaisanterai plaisanter VER 87.13 27.43 0.03 0.07 ind:fut:1s; +plaisanteraient plaisanter VER 87.13 27.43 0.00 0.07 cnd:pre:3p; +plaisanterais plaisanter VER 87.13 27.43 0.15 0.00 cnd:pre:1s; +plaisanteras plaisanter VER 87.13 27.43 0.00 0.07 ind:fut:2s; +plaisanterie plaisanterie NOM f s 17.75 26.49 13.41 14.05 +plaisanteries plaisanterie NOM f p 17.75 26.49 4.33 12.43 +plaisanterons plaisanter VER 87.13 27.43 0.02 0.07 ind:fut:1p; +plaisantes plaisanter VER 87.13 27.43 24.29 0.95 ind:pre:2s; +plaisantez plaisanter VER 87.13 27.43 14.96 1.55 imp:pre:2p;ind:pre:2p; +plaisantiez plaisanter VER 87.13 27.43 0.32 0.00 ind:imp:2p; +plaisantin plaisantin NOM m s 0.86 0.95 0.68 0.68 +plaisantins plaisantin NOM m p 0.86 0.95 0.19 0.27 +plaisantions plaisanter VER 87.13 27.43 0.04 0.14 ind:imp:1p; +plaisantons plaisanter VER 87.13 27.43 0.28 0.20 imp:pre:1p;ind:pre:1p; +plaisants plaisant ADJ m p 4.88 9.73 0.22 0.61 +plaisantèrent plaisanter VER 87.13 27.43 0.00 0.07 ind:pas:3p; +plaisanté plaisanter VER m s 87.13 27.43 0.84 1.35 par:pas; +plaise plaire VER 607.24 139.80 6.49 3.65 sub:pre:1s;sub:pre:3s; +plaisent plaire VER 607.24 139.80 6.92 3.45 ind:pre:3p; +plaises plaire VER 607.24 139.80 0.35 0.20 sub:pre:2s; +plaisez plaire VER 607.24 139.80 3.83 1.42 ind:pre:2p; +plaisiez plaire VER 607.24 139.80 0.27 0.20 ind:imp:2p; +plaisions plaire VER 607.24 139.80 0.00 0.27 ind:imp:1p; +plaisir plaisir NOM m s 186.37 233.85 177.40 208.78 +plaisirs plaisir NOM m p 186.37 233.85 8.97 25.07 +plaisons plaire VER 607.24 139.80 0.04 0.20 ind:pre:1p; +plan_séquence plan_séquence NOM m s 0.10 0.00 0.10 0.00 +plan plan NOM m s 147.54 88.99 119.54 67.84 +plana planer VER 7.86 16.55 0.00 0.34 ind:pas:3s; +planaient planer VER 7.86 16.55 0.13 0.95 ind:imp:3p; +planais planer VER 7.86 16.55 0.24 0.41 ind:imp:1s;ind:imp:2s; +planait planer VER 7.86 16.55 0.70 3.99 ind:imp:3s; +planant planant ADJ m s 0.56 1.22 0.25 0.68 +planante planant ADJ f s 0.56 1.22 0.27 0.20 +planantes planant ADJ f p 0.56 1.22 0.02 0.34 +planants planant ADJ m p 0.56 1.22 0.03 0.00 +planas planer VER 7.86 16.55 0.00 0.07 ind:pas:2s; +planchais plancher VER 1.37 1.35 0.02 0.07 ind:imp:1s; +planche planche NOM f s 13.37 41.55 10.01 14.53 +planchent plancher VER 1.37 1.35 0.04 0.00 ind:pre:3p; +plancher plancher NOM m s 7.50 31.15 6.67 29.39 +planchers plancher NOM m p 7.50 31.15 0.84 1.76 +planche_contact planche_contact NOM f p 0.00 0.07 0.00 0.07 +planches planche NOM f p 13.37 41.55 3.36 27.03 +planchette planchette NOM f s 0.01 2.50 0.01 1.82 +planchettes planchette NOM f p 0.01 2.50 0.00 0.68 +planchiste planchiste NOM s 0.20 0.00 0.20 0.00 +planché plancher VER m s 1.37 1.35 0.24 0.07 par:pas; +plancton plancton NOM m s 0.65 0.47 0.52 0.47 +planctons plancton NOM m p 0.65 0.47 0.14 0.00 +plane planer VER 7.86 16.55 2.48 2.57 ind:pre:1s;ind:pre:3s;sub:pre:3s; +planelle planelle NOM f s 0.01 0.00 0.01 0.00 +planement planement NOM m s 0.00 0.07 0.00 0.07 +planent planer VER 7.86 16.55 0.45 0.88 ind:pre:3p; +planer planer VER 7.86 16.55 2.25 3.99 inf;; +planera planer VER 7.86 16.55 0.02 0.00 ind:fut:3s; +planerait planer VER 7.86 16.55 0.00 0.07 cnd:pre:3s; +planerions planer VER 7.86 16.55 0.00 0.07 cnd:pre:1p; +planeront planer VER 7.86 16.55 0.00 0.07 ind:fut:3p; +planes planer VER 7.86 16.55 0.58 0.14 ind:pre:2s; +planeur planeur NOM m s 1.31 0.61 0.66 0.27 +planeurs planeur NOM m p 1.31 0.61 0.65 0.34 +planez planer VER 7.86 16.55 0.12 0.07 imp:pre:2p;ind:pre:2p; +planiez planer VER 7.86 16.55 0.02 0.00 ind:imp:2p; +planifiable planifiable ADJ s 0.01 0.00 0.01 0.00 +planifiaient planifier VER 8.15 0.68 0.01 0.00 ind:imp:3p; +planifiait planifier VER 8.15 0.68 0.18 0.00 ind:imp:3s; +planifiant planifier VER 8.15 0.68 0.05 0.07 par:pre; +planificateur planificateur NOM m s 0.06 0.00 0.04 0.00 +planification planification NOM f s 0.42 0.34 0.42 0.34 +planificatrice planificateur NOM f s 0.06 0.00 0.01 0.00 +planifie planifier VER 8.15 0.68 0.87 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +planifient planifier VER 8.15 0.68 0.09 0.00 ind:pre:3p; +planifier planifier VER 8.15 0.68 1.94 0.07 inf; +planifierais planifier VER 8.15 0.68 0.01 0.07 cnd:pre:1s; +planifiez planifier VER 8.15 0.68 0.11 0.00 imp:pre:2p;ind:pre:2p; +planifions planifier VER 8.15 0.68 0.08 0.00 imp:pre:1p;ind:pre:1p; +planifié planifier VER m s 8.15 0.68 4.42 0.27 par:pas; +planifiée planifier VER f s 8.15 0.68 0.31 0.07 par:pas; +planifiés planifier VER m p 8.15 0.68 0.08 0.07 par:pas; +planisphère planisphère NOM m s 0.01 1.15 0.01 1.01 +planisphères planisphère NOM m p 0.01 1.15 0.00 0.14 +planitude planitude NOM f s 0.00 0.14 0.00 0.14 +planning planning NOM m s 4.77 0.81 4.55 0.81 +plannings planning NOM m p 4.77 0.81 0.22 0.00 +planqua planquer VER 18.79 21.76 0.00 0.07 ind:pas:3s; +planquaient planquer VER 18.79 21.76 0.12 0.41 ind:imp:3p; +planquais planquer VER 18.79 21.76 0.26 0.20 ind:imp:1s;ind:imp:2s; +planquait planquer VER 18.79 21.76 0.21 1.35 ind:imp:3s; +planquant planquer VER 18.79 21.76 0.01 0.27 par:pre; +planque planque NOM f s 9.10 7.30 8.21 6.42 +planquent planquer VER 18.79 21.76 0.68 0.74 ind:pre:3p; +planquer planquer VER 18.79 21.76 3.81 6.49 inf; +planquera planquer VER 18.79 21.76 0.05 0.07 ind:fut:3s; +planquerai planquer VER 18.79 21.76 0.02 0.07 ind:fut:1s; +planquerais planquer VER 18.79 21.76 0.04 0.00 cnd:pre:1s; +planquerait planquer VER 18.79 21.76 0.04 0.07 cnd:pre:3s; +planqueras planquer VER 18.79 21.76 0.03 0.00 ind:fut:2s; +planques planque NOM f p 9.10 7.30 0.90 0.88 +planquez planquer VER 18.79 21.76 1.77 0.34 imp:pre:2p;ind:pre:2p; +planquiez planquer VER 18.79 21.76 0.00 0.07 ind:imp:2p; +planquions planquer VER 18.79 21.76 0.00 0.07 ind:imp:1p; +planquons planquer VER 18.79 21.76 0.22 0.14 imp:pre:1p;ind:pre:1p; +planquèrent planquer VER 18.79 21.76 0.00 0.07 ind:pas:3p; +planqué planquer VER m s 18.79 21.76 3.87 4.66 par:pas; +planquée planquer VER f s 18.79 21.76 0.94 1.28 par:pas; +planquées planqué ADJ f p 1.67 1.69 0.14 0.14 +planqués planqué ADJ m p 1.67 1.69 0.74 0.88 +plans plan NOM m p 147.54 88.99 28.00 21.15 +plant plant NOM m s 2.54 4.53 1.07 1.62 +planta planter VER 38.29 75.88 0.19 7.84 ind:pas:3s; +plantage plantage NOM m s 0.04 0.00 0.04 0.00 +plantai planter VER 38.29 75.88 0.01 0.54 ind:pas:1s; +plantaient planter VER 38.29 75.88 0.14 0.74 ind:imp:3p; +plantain plantain NOM m s 0.04 0.14 0.01 0.00 +plantains plantain NOM m p 0.04 0.14 0.04 0.14 +plantaire plantaire ADJ s 0.14 0.20 0.10 0.14 +plantaires plantaire ADJ f p 0.14 0.20 0.04 0.07 +plantais planter VER 38.29 75.88 0.33 1.01 ind:imp:1s;ind:imp:2s; +plantait planter VER 38.29 75.88 0.43 3.24 ind:imp:3s; +plantant planter VER 38.29 75.88 0.43 2.03 par:pre; +plantation plantation NOM f s 5.73 6.35 2.25 3.72 +plantations plantation NOM f p 5.73 6.35 3.48 2.64 +plante plante NOM f s 21.86 35.00 9.00 11.49 +plantent planter VER 38.29 75.88 0.43 0.61 ind:pre:3p; +planter planter VER 38.29 75.88 10.58 12.16 inf;; +plantera planter VER 38.29 75.88 0.30 0.07 ind:fut:3s; +planterai planter VER 38.29 75.88 0.81 0.07 ind:fut:1s; +planterais planter VER 38.29 75.88 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +planterait planter VER 38.29 75.88 0.06 0.20 cnd:pre:3s; +planteras planter VER 38.29 75.88 0.17 0.00 ind:fut:2s; +planterez planter VER 38.29 75.88 0.02 0.00 ind:fut:2p; +planterons planter VER 38.29 75.88 0.05 0.14 ind:fut:1p; +planteront planter VER 38.29 75.88 0.13 0.00 ind:fut:3p; +plantes plante NOM f p 21.86 35.00 12.85 23.51 +planteur planteur NOM m s 0.64 2.23 0.42 1.15 +planteurs planteur NOM m p 0.64 2.23 0.22 1.08 +plantez planter VER 38.29 75.88 0.68 0.14 imp:pre:2p;ind:pre:2p; +planète planète NOM f s 61.11 22.91 55.29 19.86 +planètes planète NOM f p 61.11 22.91 5.82 3.04 +plantier plantier NOM m s 0.70 0.14 0.70 0.14 +plantiez planter VER 38.29 75.88 0.04 0.07 ind:imp:2p; +plantigrade plantigrade NOM m s 0.13 0.20 0.13 0.20 +plantions planter VER 38.29 75.88 0.02 0.14 ind:imp:1p; +plantoir plantoir NOM m s 0.14 0.07 0.14 0.07 +planton planton NOM m s 0.53 2.91 0.50 2.50 +plantons planter VER 38.29 75.88 0.25 0.14 imp:pre:1p;ind:pre:1p; +plants plant NOM m p 2.54 4.53 1.47 2.91 +plantèrent planter VER 38.29 75.88 0.01 0.68 ind:pas:3p; +planté planter VER m s 38.29 75.88 11.20 20.07 par:pas; +plantée planter VER f s 38.29 75.88 2.68 10.47 par:pas; +plantées planter VER f p 38.29 75.88 0.89 3.31 par:pas; +plantureuse plantureux ADJ f s 0.11 1.42 0.07 0.68 +plantureuses plantureux ADJ f p 0.11 1.42 0.04 0.27 +plantureux plantureux ADJ m s 0.11 1.42 0.01 0.47 +plantés planter VER m p 38.29 75.88 2.31 7.09 par:pas; +plané planer VER m s 7.86 16.55 0.76 1.76 par:pas; +planétaire planétaire ADJ s 2.27 1.35 1.93 0.95 +planétaires planétaire ADJ p 2.27 1.35 0.34 0.41 +planétarium planétarium NOM m s 0.31 0.27 0.31 0.20 +planétariums planétarium NOM m p 0.31 0.27 0.00 0.07 +planétoïde planétoïde NOM m s 0.04 0.00 0.04 0.00 +plaqua plaquer VER 12.46 27.70 0.01 2.64 ind:pas:3s; +plaquage plaquage NOM m s 0.26 0.20 0.22 0.07 +plaquages plaquage NOM m p 0.26 0.20 0.04 0.14 +plaquai plaquer VER 12.46 27.70 0.00 0.34 ind:pas:1s; +plaquaient plaquer VER 12.46 27.70 0.01 0.27 ind:imp:3p; +plaquais plaquer VER 12.46 27.70 0.14 0.14 ind:imp:1s;ind:imp:2s; +plaquait plaquer VER 12.46 27.70 0.13 2.23 ind:imp:3s; +plaquant plaquer VER 12.46 27.70 0.02 1.49 par:pre; +plaque plaque NOM f s 20.48 46.15 13.87 26.01 +plaqueminiers plaqueminier NOM m p 0.00 0.14 0.00 0.14 +plaquent plaquer VER 12.46 27.70 0.14 0.34 ind:pre:3p; +plaquer plaquer VER 12.46 27.70 2.48 3.92 inf; +plaquera plaquer VER 12.46 27.70 0.03 0.00 ind:fut:3s; +plaquerai plaquer VER 12.46 27.70 0.05 0.00 ind:fut:1s; +plaquerais plaquer VER 12.46 27.70 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +plaquerait plaquer VER 12.46 27.70 0.03 0.07 cnd:pre:3s; +plaqueras plaquer VER 12.46 27.70 0.01 0.00 ind:fut:2s; +plaques plaque NOM f p 20.48 46.15 6.62 20.14 +plaquettaire plaquettaire ADJ f s 0.01 0.00 0.01 0.00 +plaquette plaquette NOM f s 1.02 4.26 0.28 1.55 +plaquettes plaquette NOM f p 1.02 4.26 0.74 2.70 +plaqueur plaqueur NOM m s 0.07 0.07 0.07 0.07 +plaquez plaquer VER 12.46 27.70 0.20 0.20 imp:pre:2p;ind:pre:2p; +plaquèrent plaquer VER 12.46 27.70 0.00 0.27 ind:pas:3p; +plaqué plaquer VER m s 12.46 27.70 4.37 5.00 par:pas; +plaquée plaquer VER f s 12.46 27.70 2.07 4.32 par:pas; +plaquées plaquer VER f p 12.46 27.70 0.04 1.76 par:pas; +plaqués plaquer VER m p 12.46 27.70 0.42 1.76 par:pas; +plasma plasma NOM m s 2.85 0.34 2.85 0.34 +plasmagène plasmagène ADJ m s 0.01 0.00 0.01 0.00 +plasmaphérèse plasmaphérèse NOM f s 0.08 0.00 0.08 0.00 +plasmique plasmique ADJ m s 0.01 0.00 0.01 0.00 +plaste plaste NOM m s 0.01 0.00 0.01 0.00 +plastic plastic NOM m s 0.81 1.15 0.81 1.15 +plasticage plasticage NOM m s 0.01 0.34 0.01 0.00 +plasticages plasticage NOM m p 0.01 0.34 0.00 0.34 +plasticien plasticien NOM m s 0.40 0.00 0.38 0.00 +plasticienne plasticien NOM f s 0.40 0.00 0.01 0.00 +plasticité plasticité NOM f s 0.04 0.27 0.04 0.27 +plastie plastie NOM f s 0.03 0.00 0.03 0.00 +plastifiant plastifiant NOM m s 0.01 0.00 0.01 0.00 +plastification plastification NOM f s 0.01 0.00 0.01 0.00 +plastifier plastifier VER 0.23 0.95 0.06 0.00 inf; +plastifié plastifier VER m s 0.23 0.95 0.09 0.61 par:pas; +plastifiée plastifier VER f s 0.23 0.95 0.07 0.14 par:pas; +plastifiées plastifier VER f p 0.23 0.95 0.01 0.07 par:pas; +plastifiés plastifier VER m p 0.23 0.95 0.00 0.14 par:pas; +plastiquage plastiquage NOM m s 0.16 0.00 0.16 0.00 +plastiquais plastiquer VER 0.41 0.41 0.01 0.00 ind:imp:1s; +plastique plastique NOM s 13.44 16.96 12.89 16.82 +plastiquer plastiquer VER 0.41 0.41 0.16 0.07 inf; +plastiques plastique ADJ p 4.67 6.96 0.72 1.42 +plastiqueur plastiqueur NOM m s 0.22 0.14 0.22 0.14 +plastiqué plastiquer VER m s 0.41 0.41 0.18 0.07 par:pas; +plastisol plastisol NOM m s 0.01 0.00 0.01 0.00 +plastoc plastoc NOM m s 0.09 0.20 0.09 0.20 +plastron plastron NOM m s 0.11 2.57 0.09 2.30 +plastronnaient plastronner VER 0.02 1.35 0.00 0.07 ind:imp:3p; +plastronnait plastronner VER 0.02 1.35 0.00 0.20 ind:imp:3s; +plastronnant plastronner VER 0.02 1.35 0.00 0.20 par:pre; +plastronne plastronner VER 0.02 1.35 0.00 0.07 ind:pre:3s; +plastronnent plastronner VER 0.02 1.35 0.00 0.14 ind:pre:3p; +plastronner plastronner VER 0.02 1.35 0.02 0.61 inf; +plastronnes plastronner VER 0.02 1.35 0.00 0.07 ind:pre:2s; +plastronneur plastronneur NOM m s 0.00 0.07 0.00 0.07 +plastrons plastron NOM m p 0.11 2.57 0.02 0.27 +plat_bord plat_bord NOM m s 0.01 0.61 0.00 0.54 +plat_ventre plat_ventre NOM m s 0.11 0.07 0.11 0.07 +plat plat NOM s 30.24 61.35 21.87 44.26 +platane platane NOM m s 0.44 13.99 0.31 4.26 +platanes platane NOM m p 0.44 13.99 0.14 9.73 +plate_bande plate_bande NOM f s 0.82 2.77 0.12 0.54 +plate_forme plate_forme NOM f s 3.06 11.15 2.49 8.45 +plate plat ADJ f s 14.66 61.76 3.09 17.50 +plateau_repas plateau_repas NOM m 0.04 0.14 0.04 0.14 +plateau plateau NOM m s 17.17 54.53 15.73 45.74 +plateaux_repas plateaux_repas NOM m p 0.04 0.07 0.04 0.07 +plateaux plateau NOM m p 17.17 54.53 1.44 8.78 +platebandes platebande NOM f p 0.06 0.00 0.06 0.00 +plateforme plateforme NOM f s 0.59 0.34 0.59 0.34 +platelage platelage NOM m s 0.00 0.07 0.00 0.07 +platement platement ADV 0.14 1.08 0.14 1.08 +plateresque plateresque ADJ m s 0.00 0.20 0.00 0.14 +plateresques plateresque ADJ f p 0.00 0.20 0.00 0.07 +plate_bande plate_bande NOM f p 0.82 2.77 0.70 2.23 +plate_forme plate_forme NOM f p 3.06 11.15 0.57 2.70 +plates plat ADJ f p 14.66 61.76 0.92 7.23 +plaça placer VER 52.95 101.76 0.58 6.76 ind:pas:3s; +plaçai placer VER 52.95 101.76 0.02 0.74 ind:pas:1s; +plaçaient placer VER 52.95 101.76 0.03 1.55 ind:imp:3p; +plaçais placer VER 52.95 101.76 0.07 0.61 ind:imp:1s;ind:imp:2s; +plaçait placer VER 52.95 101.76 0.46 6.01 ind:imp:3s; +plaçant placer VER 52.95 101.76 0.79 3.38 par:pre; +plaçons placer VER 52.95 101.76 0.60 0.14 imp:pre:1p;ind:pre:1p; +plaçât placer VER 52.95 101.76 0.00 0.07 sub:imp:3s; +platine platine NOM s 2.06 3.31 1.73 3.18 +platines platine NOM p 2.06 3.31 0.32 0.14 +platiné platiné ADJ m s 0.01 1.15 0.00 0.07 +platinée platiné ADJ f s 0.01 1.15 0.00 0.61 +platinées platiné ADJ f p 0.01 1.15 0.01 0.34 +platinés platiné ADJ m p 0.01 1.15 0.00 0.14 +platière platière NOM f s 0.00 0.07 0.00 0.07 +platitude platitude NOM f s 0.29 2.30 0.18 1.55 +platitudes platitude NOM f p 0.29 2.30 0.12 0.74 +platonicien platonicien ADJ m s 0.14 0.41 0.00 0.27 +platonicienne platonicien ADJ f s 0.14 0.41 0.14 0.07 +platoniciens platonicien ADJ m p 0.14 0.41 0.00 0.07 +platonique platonique ADJ s 0.76 1.55 0.66 0.88 +platoniquement platoniquement ADV 0.05 0.27 0.05 0.27 +platoniques platonique ADJ p 0.76 1.55 0.10 0.68 +platonisant platonisant ADJ m s 0.00 0.07 0.00 0.07 +plat_bord plat_bord NOM m p 0.01 0.61 0.01 0.07 +plats plat NOM m p 30.24 61.35 8.37 17.09 +platée platée NOM f s 0.04 0.61 0.04 0.47 +platées platée NOM f p 0.04 0.61 0.00 0.14 +platures plature NOM m p 0.00 0.14 0.00 0.14 +platyrrhiniens platyrrhinien ADJ m p 0.00 0.07 0.00 0.07 +plausibilité plausibilité NOM f s 0.04 0.00 0.04 0.00 +plausible plausible ADJ s 2.68 3.92 2.48 3.24 +plausiblement plausiblement ADV 0.00 0.07 0.00 0.07 +plausibles plausible ADJ p 2.68 3.92 0.20 0.68 +play_back play_back NOM m 0.59 0.14 0.57 0.14 +play_boy play_boy NOM m s 0.69 1.08 0.58 0.95 +play_boy play_boy NOM m p 0.69 1.08 0.11 0.14 +play_back play_back NOM m 0.59 0.14 0.02 0.00 +play play ADV 0.01 0.00 0.01 0.00 +playboy playboy NOM m s 0.38 0.00 0.38 0.00 +playmate playmate NOM f s 0.36 0.34 0.30 0.27 +playmates playmate NOM f p 0.36 0.34 0.06 0.07 +playon playon NOM m s 0.02 0.00 0.02 0.00 +plaza plaza NOM f s 1.53 2.91 1.53 2.91 +plazza plazza NOM f s 0.05 0.14 0.05 0.14 +please please ADV 3.18 0.88 3.18 0.88 +plectre plectre NOM m s 0.00 0.07 0.00 0.07 +plein_air plein_air ADJ m s 0.00 0.07 0.00 0.07 +plein_air plein_air NOM m s 0.00 0.20 0.00 0.20 +plein_cintre plein_cintre NOM m s 0.00 0.07 0.00 0.07 +plein_emploi plein_emploi NOM m s 0.01 0.00 0.01 0.00 +plein_temps plein_temps NOM m 0.12 0.00 0.12 0.00 +plein plein PRE 89.11 52.77 89.11 52.77 +pleine plein ADJ f s 208.75 370.41 82.13 139.19 +pleinement pleinement ADV 3.44 7.77 3.44 7.77 +pleines plein ADJ f p 208.75 370.41 8.60 32.43 +pleins plein ADJ m p 208.75 370.41 13.46 40.95 +plessis plessis NOM m 0.00 0.07 0.00 0.07 +plet plet NOM m s 0.00 0.07 0.00 0.07 +pleur pleur NOM m s 9.52 12.50 0.20 0.81 +pleura pleurer VER 191.64 163.31 0.81 5.88 ind:pas:3s; +pleurai pleurer VER 191.64 163.31 0.00 1.22 ind:pas:1s; +pleuraient pleurer VER 191.64 163.31 1.16 3.72 ind:imp:3p; +pleurais pleurer VER 191.64 163.31 4.01 5.07 ind:imp:1s;ind:imp:2s; +pleurait pleurer VER 191.64 163.31 7.54 26.49 ind:imp:3s; +pleural pleural ADJ m s 0.32 0.00 0.12 0.00 +pleurale pleural ADJ f s 0.32 0.00 0.20 0.00 +pleurant pleurer VER 191.64 163.31 3.26 7.16 par:pre; +pleurante pleurant ADJ f s 0.20 2.09 0.00 0.95 +pleurantes pleurant ADJ f p 0.20 2.09 0.00 0.07 +pleurants pleurant ADJ m p 0.20 2.09 0.01 0.20 +pleurard pleurard ADJ m s 0.01 0.54 0.01 0.14 +pleurarde pleurard ADJ f s 0.01 0.54 0.00 0.20 +pleurards pleurard ADJ m p 0.01 0.54 0.00 0.20 +pleure pleurer VER 191.64 163.31 60.17 24.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +pleurement pleurement NOM m s 0.00 0.20 0.00 0.14 +pleurements pleurement NOM m p 0.00 0.20 0.00 0.07 +pleurent pleurer VER 191.64 163.31 5.41 4.19 ind:pre:3p;sub:pre:3p; +pleurer pleurer VER 191.64 163.31 61.60 63.51 inf; +pleurera pleurer VER 191.64 163.31 1.25 0.61 ind:fut:3s; +pleurerai pleurer VER 191.64 163.31 1.34 0.14 ind:fut:1s; +pleureraient pleurer VER 191.64 163.31 0.12 0.00 cnd:pre:3p; +pleurerais pleurer VER 191.64 163.31 1.19 0.47 cnd:pre:1s;cnd:pre:2s; +pleurerait pleurer VER 191.64 163.31 0.38 0.68 cnd:pre:3s; +pleureras pleurer VER 191.64 163.31 0.55 0.14 ind:fut:2s; +pleurerez pleurer VER 191.64 163.31 0.20 0.14 ind:fut:2p; +pleurerons pleurer VER 191.64 163.31 0.02 0.00 ind:fut:1p; +pleureront pleurer VER 191.64 163.31 0.16 0.00 ind:fut:3p; +pleures pleurer VER 191.64 163.31 17.00 2.84 ind:pre:2s; +pleureur pleureur ADJ m s 0.11 1.15 0.06 0.47 +pleureurs pleureur NOM m p 0.33 1.22 0.14 0.14 +pleureuse pleureur NOM f s 0.33 1.22 0.17 0.20 +pleureuses pleureuse NOM f p 0.14 0.00 0.14 0.00 +pleureux pleureur ADJ m 0.11 1.15 0.01 0.00 +pleurez pleurer VER 191.64 163.31 7.26 1.08 imp:pre:2p;ind:pre:2p; +pleuriez pleurer VER 191.64 163.31 0.31 0.14 ind:imp:2p; +pleurions pleurer VER 191.64 163.31 0.13 0.34 ind:imp:1p;sub:pre:1p; +pleurite pleurite NOM f s 0.10 0.07 0.10 0.07 +pleurnicha pleurnicher VER 5.75 6.08 0.00 0.95 ind:pas:3s; +pleurnichage pleurnichage NOM m s 0.03 0.00 0.01 0.00 +pleurnichages pleurnichage NOM m p 0.03 0.00 0.01 0.00 +pleurnichais pleurnicher VER 5.75 6.08 0.11 0.07 ind:imp:1s;ind:imp:2s; +pleurnichait pleurnicher VER 5.75 6.08 0.02 0.81 ind:imp:3s; +pleurnichant pleurnicher VER 5.75 6.08 0.05 0.68 par:pre; +pleurnichard pleurnichard NOM m s 0.55 0.07 0.47 0.07 +pleurnicharde pleurnichard ADJ f s 0.34 0.74 0.05 0.20 +pleurnichardes pleurnichard ADJ f p 0.34 0.74 0.01 0.00 +pleurnichards pleurnichard NOM m p 0.55 0.07 0.08 0.00 +pleurniche pleurnicher VER 5.75 6.08 1.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pleurnichement pleurnichement NOM m s 0.01 0.34 0.00 0.14 +pleurnichements pleurnichement NOM m p 0.01 0.34 0.01 0.20 +pleurnichent pleurnicher VER 5.75 6.08 0.07 0.27 ind:pre:3p; +pleurnicher pleurnicher VER 5.75 6.08 3.35 1.62 inf; +pleurnicherais pleurnicher VER 5.75 6.08 0.01 0.00 cnd:pre:2s; +pleurnicherait pleurnicher VER 5.75 6.08 0.00 0.07 cnd:pre:3s; +pleurnicheras pleurnicher VER 5.75 6.08 0.03 0.00 ind:fut:2s; +pleurnicherie pleurnicherie NOM f s 0.20 0.54 0.02 0.07 +pleurnicheries pleurnicherie NOM f p 0.20 0.54 0.17 0.47 +pleurniches pleurnicher VER 5.75 6.08 0.54 0.00 ind:pre:2s; +pleurnicheur pleurnicheur ADJ m s 0.28 0.34 0.22 0.14 +pleurnicheurs pleurnicheur NOM m p 0.25 0.14 0.04 0.00 +pleurnicheuse pleurnicheur NOM f s 0.25 0.14 0.06 0.07 +pleurnicheuses pleurnicheuse NOM f p 0.03 0.00 0.03 0.00 +pleurnichez pleurnicher VER 5.75 6.08 0.14 0.07 imp:pre:2p;ind:pre:2p; +pleurniché pleurnicher VER m s 5.75 6.08 0.08 0.74 par:pas; +pleurons pleurer VER 191.64 163.31 0.73 0.61 imp:pre:1p;ind:pre:1p; +pleurât pleurer VER 191.64 163.31 0.00 0.14 sub:imp:3s; +pleurotes pleurote NOM m p 0.00 0.07 0.00 0.07 +pleurs pleur NOM m p 9.52 12.50 9.32 11.69 +pleurèrent pleurer VER 191.64 163.31 0.01 0.41 ind:pas:3p; +pleuré pleurer VER m s 191.64 163.31 16.91 13.04 par:pas; +pleurée pleurer VER f s 191.64 163.31 0.07 0.14 par:pas; +pleurées pleurer VER f p 191.64 163.31 0.00 0.20 par:pas; +pleurés pleurer VER m p 191.64 163.31 0.03 0.07 par:pas; +pleurésie pleurésie NOM f s 0.17 0.54 0.17 0.54 +pleurétique pleurétique ADJ f s 0.01 0.00 0.01 0.00 +pleut pleuvoir VER 67.22 47.09 20.50 10.41 ind:pre:3s; +pleutre pleutre NOM m s 0.18 0.61 0.16 0.41 +pleutrerie pleutrerie NOM f s 0.00 0.14 0.00 0.14 +pleutres pleutre NOM m p 0.18 0.61 0.02 0.20 +pleuvaient pleuvoir VER 67.22 47.09 0.13 2.23 ind:imp:3p; +pleuvait pleuvoir VER 67.22 47.09 4.43 11.62 ind:imp:3s; +pleuvant pleuvoir VER 67.22 47.09 0.01 0.20 par:pre; +pleuve pleuvoir VER 67.22 47.09 3.29 0.95 sub:pre:3s; +pleuvent pleuvoir VER 67.22 47.09 0.38 0.88 ind:pre:3p; +pleuvinait pleuviner VER 0.02 0.14 0.00 0.07 ind:imp:3s; +pleuvine pleuviner VER 0.02 0.14 0.02 0.00 ind:pre:3s; +pleuviner pleuviner VER 0.02 0.14 0.00 0.07 inf; +pleuvioter pleuvioter VER 0.00 0.07 0.00 0.07 inf; +pleuvoir pleuvoir VER 67.22 47.09 7.98 6.69 inf; +pleuvra pleuvoir VER 67.22 47.09 0.87 0.68 ind:fut:3s; +pleuvrait pleuvoir VER 67.22 47.09 0.05 0.34 cnd:pre:3s; +plexi plexi NOM m s 0.01 0.00 0.01 0.00 +plexiglas plexiglas NOM m 0.13 0.47 0.13 0.47 +plexus plexus NOM m 0.43 0.88 0.43 0.88 +pleyel pleyel NOM m s 0.02 0.07 0.02 0.07 +pli pli NOM m s 6.00 41.42 4.42 16.76 +plia plier VER 14.37 50.20 0.00 3.99 ind:pas:3s; +pliable pliable ADJ s 0.19 0.00 0.19 0.00 +pliage pliage NOM m s 0.12 0.54 0.11 0.47 +pliages pliage NOM m p 0.12 0.54 0.01 0.07 +pliai plier VER 14.37 50.20 0.00 0.27 ind:pas:1s; +pliaient plier VER 14.37 50.20 0.02 1.08 ind:imp:3p; +pliais plier VER 14.37 50.20 0.01 0.34 ind:imp:1s; +pliait plier VER 14.37 50.20 0.13 3.18 ind:imp:3s; +pliant pliant ADJ m s 0.54 3.92 0.34 2.09 +pliante pliant ADJ f s 0.54 3.92 0.06 1.15 +pliantes pliant ADJ f p 0.54 3.92 0.12 0.27 +pliants pliant ADJ m p 0.54 3.92 0.03 0.41 +plie plier VER 14.37 50.20 3.54 5.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +plient plier VER 14.37 50.20 0.22 0.74 ind:pre:3p; +plier plier VER 14.37 50.20 5.02 10.68 inf; +pliera plier VER 14.37 50.20 0.08 0.07 ind:fut:3s; +plierai plier VER 14.37 50.20 0.28 0.14 ind:fut:1s; +plieraient plier VER 14.37 50.20 0.02 0.00 cnd:pre:3p; +plierait plier VER 14.37 50.20 0.04 0.27 cnd:pre:3s; +plieras plier VER 14.37 50.20 0.03 0.00 ind:fut:2s; +plierez plier VER 14.37 50.20 0.03 0.07 ind:fut:2p; +plierons plier VER 14.37 50.20 0.17 0.00 ind:fut:1p; +plies plier VER 14.37 50.20 0.28 0.14 ind:pre:2s; +plieur plieur NOM m s 0.02 0.00 0.01 0.00 +plieuse plieur NOM f s 0.02 0.00 0.01 0.00 +pliez plier VER 14.37 50.20 1.32 0.07 imp:pre:2p;ind:pre:2p; +plinthe plinthe NOM f s 0.26 2.43 0.10 1.01 +plinthes plinthe NOM f p 0.26 2.43 0.16 1.42 +pliocène pliocène NOM m s 0.01 0.00 0.01 0.00 +plioir plioir NOM m s 0.00 0.14 0.00 0.14 +plions plier VER 14.37 50.20 0.22 0.00 imp:pre:1p;ind:pre:1p; +pliât plier VER 14.37 50.20 0.00 0.07 sub:imp:3s; +plique plique NOM f s 0.03 0.00 0.03 0.00 +plis pli NOM m p 6.00 41.42 1.58 24.66 +plissa plisser VER 0.59 16.49 0.00 3.31 ind:pas:3s; +plissai plisser VER 0.59 16.49 0.00 0.14 ind:pas:1s; +plissaient plisser VER 0.59 16.49 0.00 0.54 ind:imp:3p; +plissais plisser VER 0.59 16.49 0.00 0.07 ind:imp:1s; +plissait plisser VER 0.59 16.49 0.00 1.69 ind:imp:3s; +plissant plisser VER 0.59 16.49 0.02 3.38 par:pre; +plisse plisser VER 0.59 16.49 0.10 2.50 imp:pre:2s;ind:pre:3s; +plissement plissement NOM m s 0.03 1.08 0.02 0.68 +plissements plissement NOM m p 0.03 1.08 0.01 0.41 +plissent plisser VER 0.59 16.49 0.02 0.41 ind:pre:3p; +plisser plisser VER 0.59 16.49 0.15 1.08 inf; +plisseront plisser VER 0.59 16.49 0.00 0.07 ind:fut:3p; +plisseur plisseur NOM m s 0.00 0.07 0.00 0.07 +plissèrent plisser VER 0.59 16.49 0.00 0.27 ind:pas:3p; +plissé plisser VER m s 0.59 16.49 0.12 1.42 par:pas; +plissée plissé ADJ f s 0.33 8.72 0.08 3.18 +plissées plissé ADJ f p 0.33 8.72 0.02 1.01 +plissure plissure NOM f s 0.00 0.20 0.00 0.07 +plissures plissure NOM f p 0.00 0.20 0.00 0.14 +plissés plissé ADJ m p 0.33 8.72 0.17 1.76 +plièrent plier VER 14.37 50.20 0.00 0.20 ind:pas:3p; +plié plier VER m s 14.37 50.20 1.43 10.27 par:pas; +pliée plier VER f s 14.37 50.20 0.68 5.34 par:pas; +pliées plier VER f p 14.37 50.20 0.37 1.62 par:pas; +pliure pliure NOM f s 0.03 0.95 0.03 0.41 +pliures pliure NOM f p 0.03 0.95 0.00 0.54 +pliés plier VER m p 14.37 50.20 0.32 3.92 par:pas; +ploc ploc ONO 0.65 0.61 0.65 0.61 +ploie ployer VER 0.44 7.36 0.03 0.95 ind:pre:1s;ind:pre:3s; +ploiement ploiement NOM m s 0.00 0.27 0.00 0.27 +ploient ployer VER 0.44 7.36 0.01 0.34 ind:pre:3p; +plomb plomb NOM m s 20.24 22.64 10.62 20.27 +plombage plombage NOM m s 0.99 0.41 0.43 0.14 +plombages plombage NOM m p 0.99 0.41 0.56 0.27 +plombaient plomber VER 1.77 2.70 0.00 0.14 ind:imp:3p; +plombait plomber VER 1.77 2.70 0.00 0.41 ind:imp:3s; +plombant plomber VER 1.77 2.70 0.01 0.14 par:pre; +plombe plombe NOM f s 1.00 7.09 0.45 1.55 +plombent plomber VER 1.77 2.70 0.01 0.07 ind:pre:3p; +plomber plomber VER 1.77 2.70 0.78 0.54 inf; +plomberie plomberie NOM f s 2.32 0.81 2.31 0.74 +plomberies plomberie NOM f p 2.32 0.81 0.01 0.07 +plombes plombe NOM f p 1.00 7.09 0.55 5.54 +plombez plomber VER 1.77 2.70 0.03 0.00 imp:pre:2p;ind:pre:2p; +plombier plombier NOM m s 5.85 3.99 5.22 3.31 +plombiers plombier NOM m p 5.85 3.99 0.63 0.68 +plombières plombières NOM f 0.00 0.20 0.00 0.20 +plombs plomb NOM m p 20.24 22.64 9.62 2.36 +plombé plomber VER m s 1.77 2.70 0.32 0.61 par:pas; +plombée plomber VER f s 1.77 2.70 0.16 0.07 par:pas; +plombées plombé ADJ f p 0.20 3.85 0.01 0.47 +plombure plombure NOM f s 0.00 0.07 0.00 0.07 +plombés plombé ADJ m p 0.20 3.85 0.01 0.54 +plonge plonger VER 31.96 86.22 5.37 12.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +plongea plonger VER 31.96 86.22 0.49 10.88 ind:pas:3s; +plongeai plonger VER 31.96 86.22 0.13 1.22 ind:pas:1s; +plongeaient plonger VER 31.96 86.22 0.16 2.64 ind:imp:3p; +plongeais plonger VER 31.96 86.22 0.29 2.43 ind:imp:1s;ind:imp:2s; +plongeait plonger VER 31.96 86.22 0.41 10.27 ind:imp:3s; +plongeant plonger VER 31.96 86.22 1.41 5.41 par:pre; +plongeante plongeant ADJ f s 0.20 1.28 0.04 0.47 +plongeantes plongeant ADJ f p 0.20 1.28 0.00 0.07 +plongeants plongeant ADJ m p 0.20 1.28 0.00 0.07 +plongement plongement NOM m s 0.00 0.07 0.00 0.07 +plongent plonger VER 31.96 86.22 1.04 2.09 ind:pre:3p; +plongeoir plongeoir NOM m s 0.44 1.08 0.44 1.01 +plongeoirs plongeoir NOM m p 0.44 1.08 0.00 0.07 +plongeâmes plonger VER 31.96 86.22 0.01 0.07 ind:pas:1p; +plongeon plongeon NOM m s 2.98 4.05 2.71 3.18 +plongeons plongeon NOM m p 2.98 4.05 0.27 0.88 +plongeât plonger VER 31.96 86.22 0.00 0.14 sub:imp:3s; +plonger plonger VER 31.96 86.22 9.36 14.66 inf; +plongera plonger VER 31.96 86.22 0.36 0.27 ind:fut:3s; +plongerai plonger VER 31.96 86.22 0.30 0.00 ind:fut:1s; +plongeraient plonger VER 31.96 86.22 0.02 0.00 cnd:pre:3p; +plongerais plonger VER 31.96 86.22 0.02 0.20 cnd:pre:1s; +plongerait plonger VER 31.96 86.22 0.21 0.47 cnd:pre:3s; +plongeras plonger VER 31.96 86.22 0.15 0.00 ind:fut:2s; +plongerez plonger VER 31.96 86.22 0.44 0.00 ind:fut:2p; +plongeriez plonger VER 31.96 86.22 0.01 0.00 cnd:pre:2p; +plongerons plonger VER 31.96 86.22 0.06 0.00 ind:fut:1p; +plongeront plonger VER 31.96 86.22 0.16 0.07 ind:fut:3p; +plonges plonger VER 31.96 86.22 0.61 0.20 ind:pre:2s; +plongeur plongeur NOM m s 3.88 3.11 2.06 1.69 +plongeurs plongeur NOM m p 3.88 3.11 1.70 0.68 +plongeuse plongeur NOM f s 3.88 3.11 0.13 0.68 +plongeuses plongeuse NOM f p 0.01 0.00 0.01 0.00 +plongez plonger VER 31.96 86.22 2.13 0.14 imp:pre:2p;ind:pre:2p; +plongiez plonger VER 31.96 86.22 0.37 0.00 ind:imp:2p; +plongions plonger VER 31.96 86.22 0.04 0.41 ind:imp:1p; +plongèrent plonger VER 31.96 86.22 0.16 0.95 ind:pas:3p; +plongé plonger VER m s 31.96 86.22 5.87 14.19 par:pas; +plongée plongée NOM f s 6.74 6.55 6.63 5.34 +plongées plonger VER f p 31.96 86.22 0.13 0.68 par:pas; +plongés plonger VER m p 31.96 86.22 0.72 2.50 par:pas; +plot plot NOM m s 0.32 0.61 0.26 0.54 +plâtra plâtrer VER 0.60 0.88 0.00 0.07 ind:pas:3s; +plâtrait plâtrer VER 0.60 0.88 0.00 0.07 ind:imp:3s; +plâtras plâtras NOM m 0.00 0.95 0.00 0.95 +plâtre plâtre NOM m s 5.42 15.81 5.06 14.59 +plâtrent plâtrer VER 0.60 0.88 0.00 0.07 ind:pre:3p; +plâtrer plâtrer VER 0.60 0.88 0.29 0.00 inf; +plâtres plâtre NOM m p 5.42 15.81 0.36 1.22 +plâtreuse plâtreux ADJ f s 0.00 0.95 0.00 0.20 +plâtreuses plâtreux ADJ f p 0.00 0.95 0.00 0.07 +plâtreux plâtreux ADJ m 0.00 0.95 0.00 0.68 +plâtrier plâtrier NOM m s 0.10 1.01 0.10 0.88 +plâtriers plâtrier NOM m p 0.10 1.01 0.00 0.14 +plâtré plâtré ADJ m s 0.25 0.47 0.13 0.20 +plâtrée plâtrer VER f s 0.60 0.88 0.05 0.34 par:pas; +plâtrées plâtrer VER f p 0.60 0.88 0.01 0.07 par:pas; +plâtrés plâtré ADJ m p 0.25 0.47 0.11 0.00 +plots plot NOM m p 0.32 0.61 0.06 0.07 +plouc plouc NOM m s 3.90 1.82 2.35 0.47 +ploucs plouc NOM m p 3.90 1.82 1.55 1.35 +plouf plouf ONO 1.31 1.55 1.31 1.55 +plouk plouk NOM m s 0.01 0.68 0.01 0.68 +ploutocrate ploutocrate NOM m s 0.02 0.07 0.01 0.00 +ploutocrates ploutocrate NOM m p 0.02 0.07 0.01 0.07 +ploutocratie ploutocratie NOM f s 0.20 0.00 0.20 0.00 +ploya ployer VER 0.44 7.36 0.00 0.14 ind:pas:3s; +ployaient ployer VER 0.44 7.36 0.01 0.34 ind:imp:3p; +ployait ployer VER 0.44 7.36 0.10 0.74 ind:imp:3s; +ployant ployant ADJ m s 0.01 0.20 0.01 0.07 +ployante ployant ADJ f s 0.01 0.20 0.00 0.14 +ployer ployer VER 0.44 7.36 0.14 1.42 inf; +ployé ployer VER m s 0.44 7.36 0.14 1.01 par:pas; +ployée ployer VER f s 0.44 7.36 0.00 0.95 par:pas; +ployées ployer VER f p 0.44 7.36 0.00 0.20 par:pas; +ployés ployer VER m p 0.44 7.36 0.00 0.27 par:pas; +plèbe plèbe NOM f s 0.70 0.41 0.70 0.41 +plèvre plèvre NOM f s 0.31 0.14 0.31 0.07 +plèvres plèvre NOM f p 0.31 0.14 0.00 0.07 +plu pleuvoir VER m s 67.22 47.09 29.54 13.11 par:pas; +plébiscite plébiscite NOM m s 0.43 0.95 0.42 0.95 +plébisciter plébisciter VER 0.02 0.14 0.01 0.00 inf; +plébiscites plébiscite NOM m p 0.43 0.95 0.01 0.00 +plébiscité plébisciter VER m s 0.02 0.14 0.01 0.00 par:pas; +plébiscités plébisciter VER m p 0.02 0.14 0.00 0.07 par:pas; +plébéien plébéien ADJ m s 0.06 0.68 0.04 0.34 +plébéienne plébéien ADJ f s 0.06 0.68 0.01 0.14 +plébéiennes plébéien NOM f p 0.14 0.07 0.01 0.00 +plébéiens plébéien NOM m p 0.14 0.07 0.09 0.00 +pluche plucher VER 0.01 1.01 0.01 0.95 imp:pre:2s;ind:pre:3s; +plucher plucher VER 0.01 1.01 0.00 0.07 inf; +pluches pluches NOM f p 0.01 0.54 0.01 0.54 +plue plue ADV 0.26 0.00 0.26 0.00 +pléiade pléiade NOM f s 0.16 1.82 0.16 1.69 +pléiades pléiade NOM f p 0.16 1.82 0.00 0.14 +pluie pluie NOM f s 46.10 122.57 42.91 111.76 +pluies pluie NOM f p 46.10 122.57 3.19 10.81 +pléistocène pléistocène NOM m s 0.02 0.00 0.02 0.00 +plum_pudding plum_pudding NOM m s 0.02 0.07 0.02 0.07 +plum plume NOM m s 15.29 60.00 0.11 0.61 +pluma plumer VER 2.44 3.78 0.00 0.07 ind:pas:3s; +plumage plumage NOM m s 0.41 2.64 0.41 2.30 +plumages plumage NOM m p 0.41 2.64 0.00 0.34 +plumaient plumer VER 2.44 3.78 0.00 0.27 ind:imp:3p; +plumait plumer VER 2.44 3.78 0.03 0.47 ind:imp:3s; +plumant plumer VER 2.44 3.78 0.04 0.20 par:pre; +plumard plumard NOM m s 0.84 5.95 0.70 5.68 +plumards plumard NOM m p 0.84 5.95 0.14 0.27 +plumassière plumassier NOM f s 0.00 0.07 0.00 0.07 +plume plume NOM f s 15.29 60.00 6.49 33.38 +plumeau plumeau NOM m s 0.59 2.70 0.48 2.30 +plumeaux plumeau NOM m p 0.59 2.70 0.11 0.41 +plument plumer VER 2.44 3.78 0.01 0.07 ind:pre:3p; +plumer plumer VER 2.44 3.78 1.06 1.01 inf; +plumes plume NOM f p 15.29 60.00 8.69 26.01 +plumet plumet NOM m s 0.23 2.03 0.23 0.74 +plumetis plumetis NOM m 0.00 0.20 0.00 0.20 +plumets plumet NOM m p 0.23 2.03 0.00 1.28 +plumeuse plumeux ADJ f s 0.00 0.74 0.00 0.20 +plumeuses plumeux ADJ f p 0.00 0.74 0.00 0.20 +plumeux plumeux ADJ m 0.00 0.74 0.00 0.34 +plumez plumer VER 2.44 3.78 0.04 0.00 imp:pre:2p;ind:pre:2p; +plumier plumier NOM m s 0.03 1.35 0.03 0.95 +plumiers plumier NOM m p 0.03 1.35 0.00 0.41 +plumitif plumitif NOM m s 0.32 1.15 0.31 0.41 +plumitifs plumitif NOM m p 0.32 1.15 0.01 0.74 +plumitives plumitive NOM f p 0.00 0.07 0.00 0.07 +plumé plumer VER m s 2.44 3.78 0.37 0.47 par:pas; +plumée plumer VER f s 2.44 3.78 0.26 0.27 par:pas; +plumées plumer VER f p 2.44 3.78 0.00 0.14 par:pas; +plumules plumule NOM f p 0.00 0.07 0.00 0.07 +plumés plumer VER m p 2.44 3.78 0.08 0.14 par:pas; +plénier plénier ADJ m s 0.00 1.42 0.00 0.20 +pléniers plénier ADJ m p 0.00 1.42 0.00 0.07 +plénipotentiaire plénipotentiaire ADJ m s 0.01 1.15 0.01 1.08 +plénipotentiaires plénipotentiaire NOM p 0.00 1.28 0.00 0.41 +plénière plénier ADJ f s 0.00 1.42 0.00 0.88 +plénières plénier ADJ f p 0.00 1.42 0.00 0.27 +plénitude plénitude NOM f s 1.27 6.96 1.27 6.76 +plénitudes plénitude NOM f p 1.27 6.96 0.00 0.20 +plénum plénum NOM m s 0.11 0.00 0.11 0.00 +pléonasme pléonasme NOM m s 0.17 0.47 0.17 0.27 +pléonasmes pléonasme NOM m p 0.17 0.47 0.00 0.20 +pléonastiques pléonastique ADJ p 0.01 0.00 0.01 0.00 +plupart plupart ADV 0.01 0.07 0.01 0.07 +pluralisme pluralisme NOM m s 0.16 0.07 0.16 0.07 +pluraliste pluraliste ADJ f s 0.22 0.14 0.22 0.14 +pluralité pluralité NOM f s 0.00 0.27 0.00 0.27 +plurent plaire VER 607.24 139.80 0.11 0.54 ind:pas:3p; +pluriannuel pluriannuel ADJ m s 0.01 0.00 0.01 0.00 +pluridisciplinaire pluridisciplinaire ADJ s 0.01 0.00 0.01 0.00 +pluriel pluriel NOM m s 0.82 3.11 0.81 2.97 +plurielle pluriel ADJ f s 0.27 0.41 0.00 0.20 +pluriels pluriel NOM m p 0.82 3.11 0.01 0.14 +plurinational plurinational ADJ m s 0.10 0.00 0.10 0.00 +plus_que_parfait plus_que_parfait NOM m s 0.02 0.14 0.02 0.07 +plus_que_parfait plus_que_parfait NOM m p 0.02 0.14 0.00 0.07 +plus_value plus_value NOM f s 0.72 0.68 0.48 0.54 +plus_value plus_value NOM f p 0.72 0.68 0.25 0.14 +plus plus ADV 4062.45 5014.53 4062.45 5014.53 +plusieurs plusieurs ADJ:ind p 66.98 203.58 66.98 203.58 +plésiosaure plésiosaure NOM m s 0.02 0.14 0.02 0.14 +plusse plaire VER 607.24 139.80 0.00 0.07 sub:imp:1s; +plut plaire VER 607.24 139.80 0.76 4.86 ind:pas:3p;ind:pas:3s;ind:pas:3s; +plutôt plutôt ADV 210.40 280.74 210.40 280.74 +pléthore pléthore NOM f s 0.32 0.27 0.32 0.27 +pléthorique pléthorique ADJ m s 0.00 0.41 0.00 0.34 +pléthoriques pléthorique ADJ f p 0.00 0.41 0.00 0.07 +pluton pluton NOM m s 0.14 0.00 0.14 0.00 +plutonien plutonien ADJ m s 0.03 0.00 0.02 0.00 +plutonienne plutonien ADJ f s 0.03 0.00 0.01 0.00 +plutonienne plutonienne ADJ f s 0.01 0.00 0.01 0.00 +plutonique plutonique ADJ s 0.01 0.00 0.01 0.00 +plutonium plutonium NOM m s 1.48 0.07 1.48 0.07 +pluviôse pluviôse NOM m s 0.00 0.14 0.00 0.14 +pluvial pluvial ADJ m s 0.10 0.00 0.06 0.00 +pluviale pluvial ADJ f s 0.10 0.00 0.01 0.00 +pluviales pluvial ADJ f p 0.10 0.00 0.02 0.00 +pluviaux pluvial ADJ m p 0.10 0.00 0.01 0.00 +pluvier pluvier NOM m s 0.04 0.27 0.03 0.07 +pluviers pluvier NOM m p 0.04 0.27 0.01 0.20 +pluvieuse pluvieux ADJ f s 0.79 4.46 0.20 1.89 +pluvieuses pluvieux ADJ f p 0.79 4.46 0.17 0.27 +pluvieux pluvieux ADJ m 0.79 4.46 0.42 2.30 +pluviomètre pluviomètre NOM m s 0.00 0.14 0.00 0.07 +pluviomètres pluviomètre NOM m p 0.00 0.14 0.00 0.07 +pluviométrie pluviométrie NOM f s 0.02 0.00 0.02 0.00 +pluviométrique pluviométrique ADJ s 0.00 0.07 0.00 0.07 +pluviosité pluviosité NOM f s 0.01 0.07 0.01 0.07 +pneu pneu NOM m s 13.44 17.03 5.64 4.93 +pneumatique pneumatique ADJ s 0.47 2.16 0.31 1.49 +pneumatiques pneumatique ADJ p 0.47 2.16 0.17 0.68 +pneumatophore pneumatophore NOM m s 0.00 0.07 0.00 0.07 +pneumo pneumo NOM m s 0.26 0.34 0.26 0.07 +pneumoconiose pneumoconiose NOM f s 0.01 0.00 0.01 0.00 +pneumocoque pneumocoque NOM m s 0.01 0.07 0.01 0.00 +pneumocoques pneumocoque NOM m p 0.01 0.07 0.00 0.07 +pneumocystose pneumocystose NOM f s 0.01 0.34 0.01 0.34 +pneumologue pneumologue NOM s 0.01 0.00 0.01 0.00 +pneumonectomie pneumonectomie NOM f s 0.01 0.00 0.01 0.00 +pneumonie pneumonie NOM f s 4.96 0.81 4.67 0.81 +pneumonies pneumonie NOM f p 4.96 0.81 0.29 0.00 +pneumonique pneumonique ADJ f s 0.09 0.00 0.09 0.00 +pneumopathie pneumopathie NOM f s 0.00 0.07 0.00 0.07 +pneumos pneumo NOM m p 0.26 0.34 0.00 0.27 +pneumothorax pneumothorax NOM m 0.45 0.27 0.45 0.27 +pneus_neige pneus_neige NOM m p 0.02 0.00 0.02 0.00 +pneus pneu NOM m p 13.44 17.03 7.79 12.09 +pochade pochade NOM f s 0.02 0.41 0.02 0.20 +pochades pochade NOM f p 0.02 0.41 0.00 0.20 +pochage pochage NOM m s 0.00 0.07 0.00 0.07 +pochard pochard NOM m s 0.73 1.01 0.49 0.54 +pocharde pochard NOM f s 0.73 1.01 0.11 0.34 +pochards pochard NOM m p 0.73 1.01 0.13 0.14 +poche_revolver poche_revolver NOM s 0.00 0.27 0.00 0.27 +poche poche NOM s 49.65 146.28 36.23 101.82 +pocher pocher VER 0.36 0.61 0.07 0.14 inf; +poches poche NOM p 49.65 146.28 13.42 44.46 +pochetron pochetron NOM m s 0.14 0.14 0.14 0.07 +pochetrons pochetron NOM m p 0.14 0.14 0.01 0.07 +pochette_surprise pochette_surprise NOM f s 0.20 0.34 0.20 0.20 +pochette pochette NOM f s 2.34 8.85 1.89 6.69 +pochette_surprise pochette_surprise NOM f p 0.20 0.34 0.00 0.14 +pochettes pochette NOM f p 2.34 8.85 0.44 2.16 +pocheté pocheté ADJ m s 0.00 0.07 0.00 0.07 +pochetée pocheté NOM f s 0.00 0.14 0.00 0.07 +pochetées pocheté NOM f p 0.00 0.14 0.00 0.07 +pochoir pochoir NOM m s 0.08 0.95 0.08 0.95 +pochon pochon NOM m s 0.01 0.47 0.01 0.27 +pochons pochon NOM m p 0.01 0.47 0.00 0.20 +pochtron pochtron NOM m s 0.12 0.00 0.11 0.00 +pochtrons pochtron NOM m p 0.12 0.00 0.01 0.00 +poché poché ADJ m s 0.61 0.81 0.28 0.41 +pochée poché ADJ f s 0.61 0.81 0.01 0.14 +pochées poché ADJ f p 0.61 0.81 0.03 0.00 +pochés poché ADJ m p 0.61 0.81 0.28 0.27 +podagre podagre ADJ s 0.00 0.20 0.00 0.20 +podestat podestat NOM m s 0.00 0.27 0.00 0.07 +podestats podestat NOM m p 0.00 0.27 0.00 0.20 +podium podium NOM m s 2.16 1.08 2.12 0.95 +podiums podium NOM m p 2.16 1.08 0.04 0.14 +podologue podologue NOM s 0.05 0.07 0.05 0.07 +podomètre podomètre NOM m s 0.01 0.00 0.01 0.00 +poecile poecile NOM m s 0.00 0.07 0.00 0.07 +pogne pogne NOM f s 0.76 13.38 0.69 8.31 +pognes pogne NOM f p 0.76 13.38 0.07 5.07 +pognon pognon NOM m s 13.85 11.96 13.85 11.96 +pogo pogo NOM m s 0.16 0.00 0.16 0.00 +pogrom pogrom NOM m s 0.05 1.08 0.04 0.41 +pogrome pogrome NOM m s 0.01 0.47 0.01 0.07 +pogromes pogrome NOM m p 0.01 0.47 0.00 0.41 +pogroms pogrom NOM m p 0.05 1.08 0.01 0.68 +poids_lourds poids_lourds NOM m 0.02 0.07 0.02 0.07 +poids poids NOM m 34.42 89.05 34.42 89.05 +poignaient poigner VER 0.17 1.08 0.00 0.14 ind:imp:3p; +poignait poigner VER 0.17 1.08 0.00 0.47 ind:imp:3s; +poignant poignant ADJ m s 0.78 6.22 0.38 2.23 +poignante poignant ADJ f s 0.78 6.22 0.22 2.84 +poignantes poignant ADJ f p 0.78 6.22 0.02 0.47 +poignants poignant ADJ m p 0.78 6.22 0.16 0.68 +poignard poignard NOM m s 9.89 10.14 9.38 8.11 +poignarda poignarder VER 14.32 3.31 0.02 0.07 ind:pas:3s; +poignardaient poignarder VER 14.32 3.31 0.01 0.27 ind:imp:3p; +poignardais poignarder VER 14.32 3.31 0.07 0.00 ind:imp:1s;ind:imp:2s; +poignardait poignarder VER 14.32 3.31 0.07 0.14 ind:imp:3s; +poignardant poignarder VER 14.32 3.31 0.05 0.07 par:pre; +poignarde poignarder VER 14.32 3.31 1.61 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +poignardent poignarder VER 14.32 3.31 0.36 0.00 ind:pre:3p; +poignarder poignarder VER 14.32 3.31 3.25 0.81 inf; +poignardera poignarder VER 14.32 3.31 0.03 0.00 ind:fut:3s; +poignarderai poignarder VER 14.32 3.31 0.07 0.07 ind:fut:1s; +poignarderais poignarder VER 14.32 3.31 0.05 0.00 cnd:pre:1s; +poignarderait poignarder VER 14.32 3.31 0.03 0.00 cnd:pre:3s; +poignarderont poignarder VER 14.32 3.31 0.00 0.07 ind:fut:3p; +poignardez poignarder VER 14.32 3.31 0.07 0.00 imp:pre:2p;ind:pre:2p; +poignards poignard NOM m p 9.89 10.14 0.51 2.03 +poignardé poignarder VER m s 14.32 3.31 5.91 0.95 par:pas; +poignardée poignarder VER f s 14.32 3.31 2.39 0.34 par:pas; +poignardées poignarder VER f p 14.32 3.31 0.05 0.00 par:pas; +poignardés poignarder VER m p 14.32 3.31 0.28 0.14 par:pas; +poigne poigne NOM f s 1.96 5.41 1.95 5.00 +poignent poigner VER 0.17 1.08 0.00 0.07 ind:pre:3p; +poigner poigner VER 0.17 1.08 0.14 0.00 inf; +poignerait poigner VER 0.17 1.08 0.00 0.07 cnd:pre:3s; +poignes poigne NOM f p 1.96 5.41 0.01 0.41 +poignet poignet NOM m s 10.00 42.84 6.38 27.70 +poignets poignet NOM m p 10.00 42.84 3.62 15.14 +poignons poigner VER 0.17 1.08 0.00 0.07 imp:pre:1p; +poignée poignée NOM f s 13.61 46.08 11.65 36.35 +poignées poignée NOM f p 13.61 46.08 1.95 9.73 +poil_de_carotte poil_de_carotte NOM m s 0.00 0.07 0.00 0.07 +poil poil NOM m s 39.33 76.01 27.09 42.91 +poilaient poiler VER 0.06 1.28 0.00 0.07 ind:imp:3p; +poilais poiler VER 0.06 1.28 0.00 0.20 ind:imp:1s; +poilait poiler VER 0.06 1.28 0.00 0.34 ind:imp:3s; +poilant poilant ADJ m s 0.10 0.14 0.10 0.14 +poile poiler VER 0.06 1.28 0.03 0.07 ind:pre:1s;ind:pre:3s; +poiler poiler VER 0.06 1.28 0.03 0.14 inf; +poileux poileux ADJ m 0.00 0.07 0.00 0.07 +poils poil NOM m p 39.33 76.01 12.24 33.11 +poilé poiler VER m s 0.06 1.28 0.00 0.07 par:pas; +poilu poilu ADJ m s 4.30 9.05 1.94 3.04 +poilue poilu ADJ f s 4.30 9.05 0.75 1.42 +poilues poilu ADJ f p 4.30 9.05 0.70 1.42 +poilés poiler VER m p 0.06 1.28 0.00 0.14 par:pas; +poilus poilu ADJ m p 4.30 9.05 0.92 3.18 +poindra poindre VER 5.28 5.61 0.11 0.07 ind:fut:3s; +poindre poindre VER 5.28 5.61 0.06 2.70 inf; +poing poing NOM m s 17.52 76.08 13.25 47.97 +poings poing NOM m p 17.52 76.08 4.27 28.11 +poinsettia poinsettia NOM f s 0.04 0.00 0.04 0.00 +point_clé point_clé NOM m s 0.02 0.00 0.02 0.00 +point_virgule point_virgule NOM m s 0.04 0.07 0.04 0.00 +point point NOM m s 225.32 323.58 186.70 272.57 +pointa pointer VER 25.45 38.51 0.03 1.89 ind:pas:3s; +pointage pointage NOM m s 0.31 0.41 0.30 0.41 +pointages pointage NOM m p 0.31 0.41 0.01 0.00 +pointai pointer VER 25.45 38.51 0.00 0.07 ind:pas:1s; +pointaient pointer VER 25.45 38.51 0.17 2.30 ind:imp:3p; +pointais pointer VER 25.45 38.51 0.11 0.27 ind:imp:1s;ind:imp:2s; +pointait pointer VER 25.45 38.51 0.61 5.00 ind:imp:3s; +pointant pointer VER 25.45 38.51 0.27 3.72 par:pre; +pointe pointe NOM f s 13.32 83.85 11.37 69.05 +pointeau pointeau NOM m s 0.01 0.14 0.01 0.14 +pointement pointement NOM m s 0.00 0.07 0.00 0.07 +pointent pointer VER 25.45 38.51 1.37 1.62 ind:pre:3p; +pointer pointer VER 25.45 38.51 4.63 5.14 inf; +pointera pointer VER 25.45 38.51 0.47 0.27 ind:fut:3s; +pointerai pointer VER 25.45 38.51 0.17 0.00 ind:fut:1s; +pointeraient pointer VER 25.45 38.51 0.01 0.14 cnd:pre:3p; +pointerais pointer VER 25.45 38.51 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +pointerait pointer VER 25.45 38.51 0.07 0.20 cnd:pre:3s; +pointeras pointer VER 25.45 38.51 0.02 0.00 ind:fut:2s; +pointerez pointer VER 25.45 38.51 0.04 0.00 ind:fut:2p; +pointeront pointer VER 25.45 38.51 0.06 0.00 ind:fut:3p; +pointers pointer NOM m p 0.12 0.00 0.01 0.00 +pointes pointe NOM f p 13.32 83.85 1.96 14.80 +pointeur pointeur NOM m s 0.35 0.61 0.03 0.41 +pointeurs pointeur NOM m p 0.35 0.61 0.00 0.14 +pointeuse pointeur NOM f s 0.35 0.61 0.33 0.07 +pointeuses pointeur ADJ f p 0.01 0.20 0.00 0.07 +pointez pointer VER 25.45 38.51 2.06 0.20 imp:pre:2p;ind:pre:2p; +poinçon poinçon NOM m s 0.37 1.89 0.35 1.55 +poinçonnait poinçonner VER 0.06 0.54 0.00 0.07 ind:imp:3s; +poinçonner poinçonner VER 0.06 0.54 0.04 0.14 inf; +poinçonneraient poinçonner VER 0.06 0.54 0.00 0.07 cnd:pre:3p; +poinçonneur poinçonneur NOM m s 0.16 0.20 0.16 0.14 +poinçonneurs poinçonneur NOM m p 0.16 0.20 0.00 0.07 +poinçonné poinçonner VER m s 0.06 0.54 0.01 0.07 par:pas; +poinçonnée poinçonner VER f s 0.06 0.54 0.01 0.07 par:pas; +poinçonnés poinçonner VER m p 0.06 0.54 0.00 0.14 par:pas; +poinçons poinçon NOM m p 0.37 1.89 0.02 0.34 +pointiez pointer VER 25.45 38.51 0.10 0.00 ind:imp:2p; +pointillaient pointiller VER 0.03 1.62 0.00 0.07 ind:imp:3p; +pointillant pointiller VER 0.03 1.62 0.00 0.27 par:pre; +pointille pointiller VER 0.03 1.62 0.00 0.07 ind:pre:3s; +pointilleuse pointilleux ADJ f s 1.01 1.76 0.06 0.74 +pointilleuses pointilleux ADJ f p 1.01 1.76 0.02 0.14 +pointilleux pointilleux ADJ m 1.01 1.76 0.92 0.88 +pointillisme pointillisme NOM m s 0.01 0.00 0.01 0.00 +pointilliste pointilliste ADJ m s 0.00 0.34 0.00 0.14 +pointillistes pointilliste ADJ p 0.00 0.34 0.00 0.20 +pointillé pointillé NOM m s 0.36 2.97 0.16 1.62 +pointillée pointiller VER f s 0.03 1.62 0.02 0.47 par:pas; +pointillées pointiller VER f p 0.03 1.62 0.00 0.27 par:pas; +pointillés pointillé NOM m p 0.36 2.97 0.20 1.35 +pointâmes pointer VER 25.45 38.51 0.00 0.07 ind:pas:1p; +pointons pointer VER 25.45 38.51 0.04 0.00 imp:pre:1p;ind:pre:1p; +point_virgule point_virgule NOM m p 0.04 0.07 0.00 0.07 +points point NOM m p 225.32 323.58 38.62 51.01 +pointèrent pointer VER 25.45 38.51 0.00 0.34 ind:pas:3p; +pointé pointer VER m s 25.45 38.51 3.17 6.28 par:pas; +pointu pointu ADJ m s 4.38 21.62 2.17 9.19 +pointée pointer VER f s 25.45 38.51 0.97 1.89 par:pas; +pointue pointu ADJ f s 4.38 21.62 0.48 3.65 +pointées pointer VER f p 25.45 38.51 0.32 0.20 par:pas; +pointues pointu ADJ f p 4.38 21.62 0.78 3.72 +pointure pointure NOM f s 3.27 1.49 2.67 1.01 +pointures pointure NOM f p 3.27 1.49 0.60 0.47 +pointés pointer VER m p 25.45 38.51 0.40 0.88 par:pas; +pointus pointu ADJ m p 4.38 21.62 0.95 5.07 +poire_vérité poire_vérité NOM f s 0.00 0.07 0.00 0.07 +poire poire NOM f s 7.58 15.07 5.67 10.81 +poireau poireau NOM m s 1.31 2.84 0.61 0.88 +poireautai poireauter VER 1.87 2.30 0.00 0.07 ind:pas:1s; +poireautaient poireauter VER 1.87 2.30 0.00 0.07 ind:imp:3p; +poireautais poireauter VER 1.87 2.30 0.02 0.20 ind:imp:1s; +poireautait poireauter VER 1.87 2.30 0.00 0.20 ind:imp:3s; +poireaute poireauter VER 1.87 2.30 0.58 0.20 ind:pre:1s;ind:pre:3s; +poireauter poireauter VER 1.87 2.30 1.18 1.28 inf; +poireautes poireauter VER 1.87 2.30 0.01 0.07 ind:pre:2s; +poireautions poireauter VER 1.87 2.30 0.00 0.07 ind:imp:1p; +poireauté poireauter VER m s 1.87 2.30 0.08 0.14 par:pas; +poireaux poireau NOM m p 1.31 2.84 0.70 1.96 +poirer poirer VER 0.00 0.14 0.00 0.14 inf; +poires poire NOM f p 7.58 15.07 1.91 4.26 +poirier poirier NOM m s 0.56 3.65 0.42 2.57 +poiriers poirier NOM m p 0.56 3.65 0.15 1.08 +poirota poiroter VER 0.02 0.27 0.00 0.14 ind:pas:3s; +poirotait poiroter VER 0.02 0.27 0.00 0.14 ind:imp:3s; +poiroter poiroter VER 0.02 0.27 0.02 0.00 inf; +poiré poiré NOM m s 0.00 0.27 0.00 0.14 +poirée poiré NOM f s 0.00 0.27 0.00 0.14 +pois pois NOM m 8.09 13.72 8.09 13.72 +poiscaille poiscaille NOM f s 0.23 0.81 0.21 0.41 +poiscailles poiscaille NOM f p 0.23 0.81 0.03 0.41 +poison poison NOM m s 19.76 12.23 18.59 9.86 +poisons poison NOM m p 19.76 12.23 1.18 2.36 +poissaient poisser VER 0.33 2.64 0.00 0.27 ind:imp:3p; +poissait poisser VER 0.33 2.64 0.00 0.41 ind:imp:3s; +poissard poissard NOM m s 0.00 0.14 0.00 0.07 +poissardes poissard NOM f p 0.00 0.14 0.00 0.07 +poisse poisse NOM f s 5.62 1.42 5.61 1.35 +poissent poisser VER 0.33 2.64 0.00 0.07 ind:pre:3p; +poisser poisser VER 0.33 2.64 0.11 0.61 inf; +poisses poisse NOM f p 5.62 1.42 0.01 0.07 +poisseuse poisseux ADJ f s 0.72 8.99 0.12 3.11 +poisseuses poisseux ADJ f p 0.72 8.99 0.06 1.89 +poisseux poisseux ADJ m 0.72 8.99 0.54 3.99 +poisson_chat poisson_chat NOM m s 0.64 0.54 0.54 0.34 +poisson_globe poisson_globe NOM m s 0.02 0.00 0.02 0.00 +poisson_lune poisson_lune NOM m s 0.15 0.07 0.15 0.07 +poisson_pilote poisson_pilote NOM m s 0.00 0.07 0.00 0.07 +poisson_épée poisson_épée NOM m s 0.09 0.00 0.09 0.00 +poisson poisson NOM m s 81.51 54.46 53.61 30.14 +poissonnerie poissonnerie NOM f s 0.22 0.47 0.22 0.47 +poissonneuse poissonneux ADJ f s 0.32 0.47 0.01 0.07 +poissonneuses poissonneux ADJ f p 0.32 0.47 0.10 0.07 +poissonneux poissonneux ADJ m 0.32 0.47 0.21 0.34 +poissonnier poissonnier NOM m s 0.69 0.88 0.69 0.41 +poissonniers poissonnier NOM m p 0.69 0.88 0.01 0.27 +poissonnière poissonnière NOM f s 0.09 3.92 0.07 3.92 +poissonnières poissonnière NOM f p 0.09 3.92 0.02 0.00 +poisson_chat poisson_chat NOM m p 0.64 0.54 0.11 0.20 +poissons poisson NOM m p 81.51 54.46 27.90 24.32 +poissé poisser VER m s 0.33 2.64 0.00 0.34 par:pas; +poissée poisser VER f s 0.33 2.64 0.00 0.20 par:pas; +poissées poisser VER f p 0.33 2.64 0.00 0.14 par:pas; +poissés poisser VER m p 0.33 2.64 0.00 0.07 par:pas; +poitevin poitevin ADJ m s 0.00 0.41 0.00 0.20 +poitevins poitevin ADJ m p 0.00 0.41 0.00 0.20 +poitrail poitrail NOM m s 0.20 5.07 0.20 4.73 +poitrails poitrail NOM m p 0.20 5.07 0.00 0.34 +poitrinaire poitrinaire ADJ s 0.02 1.08 0.02 0.88 +poitrinaires poitrinaire ADJ m p 0.02 1.08 0.00 0.20 +poitrinant poitriner VER 0.00 0.07 0.00 0.07 par:pre; +poitrine poitrine NOM f s 26.45 104.46 25.31 99.59 +poitrines poitrine NOM f p 26.45 104.46 1.14 4.86 +poitrinières poitrinière NOM f p 0.00 0.14 0.00 0.14 +poivra poivrer VER 0.17 2.30 0.00 0.07 ind:pas:3s; +poivrade poivrade NOM f s 0.14 0.68 0.14 0.27 +poivrades poivrade NOM f p 0.14 0.68 0.00 0.41 +poivrais poivrer VER 0.17 2.30 0.01 0.07 ind:imp:1s; +poivrait poivrer VER 0.17 2.30 0.00 0.14 ind:imp:3s; +poivre poivre NOM m s 3.80 6.89 3.79 6.69 +poivrent poivrer VER 0.17 2.30 0.00 0.14 ind:pre:3p; +poivrer poivrer VER 0.17 2.30 0.03 0.20 inf; +poivres poivre NOM m p 3.80 6.89 0.01 0.20 +poivrez poivrer VER 0.17 2.30 0.01 0.07 imp:pre:2p;ind:pre:2p; +poivrier poivrier NOM m s 0.08 0.88 0.08 0.34 +poivriers poivrier NOM m p 0.08 0.88 0.00 0.54 +poivrière poivrière NOM f s 0.08 0.34 0.05 0.07 +poivrières poivrière NOM f p 0.08 0.34 0.03 0.27 +poivron poivron NOM m s 2.35 1.15 0.51 0.27 +poivrons poivron NOM m p 2.35 1.15 1.85 0.88 +poivrot poivrot NOM m s 3.53 3.51 2.16 2.03 +poivrote poivrot NOM f s 3.53 3.51 0.38 0.20 +poivrotes poivrot NOM f p 3.53 3.51 0.00 0.20 +poivrots poivrot NOM m p 3.53 3.51 0.99 1.08 +poivré poivrer VER m s 0.17 2.30 0.04 0.20 par:pas; +poivrée poivré ADJ f s 0.11 1.22 0.09 0.68 +poivrées poivré ADJ f p 0.11 1.22 0.00 0.14 +poivrés poivrer VER m p 0.17 2.30 0.01 0.20 par:pas; +poix poix NOM f 0.14 1.22 0.14 1.22 +poker poker NOM m s 10.76 3.92 10.62 3.78 +pokers poker NOM m p 10.76 3.92 0.14 0.14 +polack polack NOM s 1.48 0.00 1.37 0.00 +polacks polack NOM p 1.48 0.00 0.11 0.00 +polaire polaire ADJ s 2.00 2.50 1.71 1.55 +polaires polaire ADJ p 2.00 2.50 0.28 0.95 +polak polak NOM m s 0.17 0.41 0.12 0.34 +polaks polak NOM m p 0.17 0.41 0.05 0.07 +polaque polaque NOM m s 0.05 0.47 0.05 0.07 +polaques polaque NOM m p 0.05 0.47 0.00 0.41 +polar polar NOM m s 0.86 1.49 0.23 1.08 +polarde polard ADJ f s 0.01 0.27 0.01 0.07 +polardes polard ADJ f p 0.01 0.27 0.00 0.14 +polards polard ADJ m p 0.01 0.27 0.00 0.07 +polarisaient polariser VER 0.41 0.34 0.00 0.07 ind:imp:3p; +polarisait polariser VER 0.41 0.34 0.01 0.07 ind:imp:3s; +polarisant polariser VER 0.41 0.34 0.01 0.00 par:pre; +polarisants polarisant ADJ m p 0.01 0.07 0.00 0.07 +polarisation polarisation NOM f s 0.06 0.00 0.06 0.00 +polarise polariser VER 0.41 0.34 0.01 0.00 imp:pre:2s; +polarisent polariser VER 0.41 0.34 0.01 0.00 ind:pre:3p; +polariser polariser VER 0.41 0.34 0.04 0.07 inf; +polarisé polariser VER m s 0.41 0.34 0.16 0.00 par:pas; +polarisée polariser VER f s 0.41 0.34 0.17 0.14 par:pas; +polarité polarité NOM f s 0.54 0.00 0.54 0.00 +polaroïd polaroïd NOM m s 0.74 0.95 0.47 0.88 +polaroïds polaroïd NOM m p 0.74 0.95 0.28 0.07 +polaroid polaroid NOM m s 0.39 0.00 0.39 0.00 +polars polar NOM m p 0.86 1.49 0.63 0.41 +polder polder NOM m s 0.00 0.20 0.00 0.07 +polders polder NOM m p 0.00 0.20 0.00 0.14 +pâle pâle ADJ s 16.50 83.58 14.52 67.23 +pole pole NOM m s 0.22 0.00 0.22 0.00 +pâlement pâlement ADV 0.00 0.54 0.00 0.54 +polenta polenta NOM f s 0.88 0.27 0.88 0.27 +pâles pâle ADJ p 16.50 83.58 1.98 16.35 +pâleur pâleur NOM f s 1.38 10.41 1.38 10.00 +pâleurs pâleur NOM f p 1.38 10.41 0.00 0.41 +pâli pâlir VER m s 1.19 15.14 0.31 2.50 par:pas; +poli polir VER m s 9.45 11.01 6.04 5.07 par:pas; +police_secours police_secours NOM f s 0.16 0.47 0.16 0.47 +police police NOM f s 276.21 83.72 274.31 81.69 +policeman policeman NOM m s 0.04 0.41 0.03 0.34 +policemen policeman NOM m p 0.04 0.41 0.01 0.07 +policer policer VER 1.27 0.61 0.04 0.00 inf; +polices police NOM f p 276.21 83.72 1.90 2.03 +polichinelle polichinelle NOM m s 0.50 2.09 0.49 1.76 +polichinelles polichinelle NOM m p 0.50 2.09 0.01 0.34 +pâlichon pâlichon ADJ m s 0.06 0.81 0.06 0.47 +pâlichonne pâlichon ADJ f s 0.06 0.81 0.00 0.20 +pâlichons pâlichon ADJ m p 0.06 0.81 0.00 0.14 +policier policier NOM m s 34.12 21.62 19.94 10.00 +policiers policier NOM m p 34.12 21.62 14.02 11.62 +policière policier ADJ f s 9.29 6.82 2.31 1.76 +policières policier ADJ f p 9.29 6.82 0.58 1.01 +policlinique policlinique NOM f s 0.10 0.00 0.10 0.00 +policé policer VER m s 1.27 0.61 0.01 0.07 par:pas; +policée policé ADJ f s 0.02 1.82 0.01 0.54 +policées policer VER f p 1.27 0.61 0.01 0.14 par:pas; +policés policé ADJ m p 0.02 1.82 0.01 0.27 +pâlie pâlir VER f s 1.19 15.14 0.10 0.68 par:pas; +polie polir VER f s 9.45 11.01 2.23 2.03 par:pas; +pâlies pâlir VER f p 1.19 15.14 0.00 0.54 par:pas; +polies poli ADJ f p 4.68 16.69 0.08 1.28 +poliment poliment ADV 3.29 10.00 3.29 10.00 +polio polio NOM f s 1.10 0.34 1.08 0.27 +poliomyélite poliomyélite NOM f s 0.28 0.27 0.28 0.27 +poliomyélitique poliomyélitique ADJ m s 0.01 0.27 0.00 0.14 +poliomyélitiques poliomyélitique ADJ p 0.01 0.27 0.01 0.14 +poliorcétique poliorcétique ADJ m s 0.00 0.07 0.00 0.07 +polios polio NOM f p 1.10 0.34 0.02 0.07 +pâlir pâlir VER 1.19 15.14 0.54 4.39 inf; +polir polir VER 9.45 11.01 0.38 1.42 inf; +pâlirait pâlir VER 1.19 15.14 0.00 0.07 cnd:pre:3s; +poliras polir VER 9.45 11.01 0.01 0.00 ind:fut:2s; +pâlirent pâlir VER 1.19 15.14 0.00 0.07 ind:pas:3p; +pâlis pâlir VER m p 1.19 15.14 0.05 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +polis poli ADJ m p 4.68 16.69 0.80 2.64 +polish polish NOM m s 0.06 0.07 0.06 0.07 +polissage polissage NOM m s 0.11 0.41 0.11 0.34 +polissages polissage NOM m p 0.11 0.41 0.00 0.07 +pâlissaient pâlir VER 1.19 15.14 0.00 0.68 ind:imp:3p; +polissaient polir VER 9.45 11.01 0.00 0.07 ind:imp:3p; +polissais polir VER 9.45 11.01 0.01 0.07 ind:imp:1s; +pâlissait pâlir VER 1.19 15.14 0.00 1.22 ind:imp:3s; +polissait polir VER 9.45 11.01 0.02 0.14 ind:imp:3s; +pâlissant pâlissant ADJ m s 0.10 0.74 0.10 0.61 +polissant polir VER 9.45 11.01 0.04 0.34 par:pre; +pâlissante pâlissant ADJ f s 0.10 0.74 0.00 0.07 +pâlissantes pâlissant ADJ f p 0.10 0.74 0.00 0.07 +pâlissent pâlir VER 1.19 15.14 0.03 0.61 ind:pre:3p; +polissent polir VER 9.45 11.01 0.01 0.14 ind:pre:3p; +polisseur polisseur NOM m s 0.01 0.14 0.01 0.00 +polisseurs polisseur NOM m p 0.01 0.14 0.00 0.07 +polisseuse polisseur NOM f s 0.01 0.14 0.00 0.07 +pâlissions pâlir VER 1.19 15.14 0.00 0.14 ind:imp:1p; +polissoir polissoir NOM m s 0.02 0.07 0.02 0.07 +polisson polisson NOM m s 1.12 0.47 0.83 0.27 +polissonnait polissonner VER 0.11 0.07 0.10 0.00 ind:imp:3s; +polissonne polisson ADJ f s 1.06 0.68 0.16 0.07 +polissonner polissonner VER 0.11 0.07 0.01 0.00 inf; +polissonnerie polissonnerie NOM f s 0.00 0.20 0.00 0.14 +polissonneries polissonnerie NOM f p 0.00 0.20 0.00 0.07 +polissonnes polisson ADJ f p 1.06 0.68 0.23 0.14 +polissons polisson NOM m p 1.12 0.47 0.28 0.14 +polissure polissure NOM f s 0.00 0.07 0.00 0.07 +pâlit pâlir VER 1.19 15.14 0.15 3.18 ind:pre:3s;ind:pas:3s; +polit polir VER 9.45 11.01 0.03 0.20 ind:pre:3s;ind:pas:3s; +politburo politburo NOM m s 0.03 0.47 0.03 0.47 +politesse politesse NOM f s 5.00 20.54 4.29 17.97 +politesses politesse NOM f p 5.00 20.54 0.70 2.57 +politicard politicard NOM m s 0.41 0.34 0.08 0.14 +politicards politicard NOM m p 0.41 0.34 0.33 0.20 +politicien politicien NOM m s 7.67 2.43 2.34 0.61 +politicienne politicien NOM f s 7.67 2.43 0.10 0.00 +politiciennes politicien ADJ f p 0.83 0.68 0.12 0.14 +politiciens politicien NOM m p 7.67 2.43 5.23 1.82 +politico_religieux politico_religieux ADJ f s 0.00 0.07 0.00 0.07 +politico politico ADV 0.17 0.27 0.17 0.27 +politique_fiction politique_fiction NOM f s 0.00 0.07 0.00 0.07 +politique politique NOM s 38.38 70.34 34.84 65.88 +politiquement politiquement ADV 2.73 2.77 2.73 2.77 +politiques politique ADJ p 38.09 70.81 13.20 26.42 +politisation politisation NOM f s 0.01 0.00 0.01 0.00 +politiser politiser VER 0.29 0.34 0.07 0.00 inf; +politisé politiser VER m s 0.29 0.34 0.06 0.07 par:pas; +politisée politiser VER f s 0.29 0.34 0.14 0.07 par:pas; +politisés politiser VER m p 0.29 0.34 0.02 0.20 par:pas; +polka polka NOM f s 1.98 7.64 1.90 7.50 +polkas polka NOM f p 1.98 7.64 0.08 0.14 +pollen pollen NOM m s 1.37 1.89 1.20 1.82 +pollens pollen NOM m p 1.37 1.89 0.17 0.07 +pollinies pollinie NOM f p 0.00 0.07 0.00 0.07 +pollinique pollinique ADJ f s 0.00 0.07 0.00 0.07 +pollinisateur pollinisateur ADJ m s 0.03 0.00 0.03 0.00 +pollinisation pollinisation NOM f s 0.09 0.00 0.09 0.00 +polliniser polliniser VER 0.02 0.00 0.01 0.00 inf; +pollinisé polliniser VER m s 0.02 0.00 0.01 0.00 par:pas; +pollope pollope ONO 0.00 0.07 0.00 0.07 +polluait polluer VER 3.38 2.09 0.12 0.07 ind:imp:3s; +polluant polluer VER 3.38 2.09 0.04 0.00 par:pre; +polluante polluant ADJ f s 0.21 0.14 0.02 0.00 +polluants polluant ADJ m p 0.21 0.14 0.16 0.07 +pollue polluer VER 3.38 2.09 0.45 0.07 ind:pre:1s;ind:pre:3s; +polluent polluer VER 3.38 2.09 0.22 0.14 ind:pre:3p; +polluer polluer VER 3.38 2.09 0.65 0.34 inf; +pollueront polluer VER 3.38 2.09 0.01 0.00 ind:fut:3p; +pollues polluer VER 3.38 2.09 0.12 0.07 ind:pre:2s; +pollueur pollueur NOM m s 0.25 0.14 0.04 0.00 +pollueurs pollueur NOM m p 0.25 0.14 0.18 0.14 +pollueuse pollueur NOM f s 0.25 0.14 0.02 0.00 +polluez polluer VER 3.38 2.09 0.04 0.00 imp:pre:2p;ind:pre:2p; +pollution pollution NOM f s 2.38 1.28 2.35 1.15 +pollutions pollution NOM f p 2.38 1.28 0.04 0.14 +pollué polluer VER m s 3.38 2.09 0.57 0.68 par:pas; +polluée polluer VER f s 3.38 2.09 0.86 0.20 par:pas; +polluées polluer VER f p 3.38 2.09 0.17 0.47 par:pas; +pollués polluer VER m p 3.38 2.09 0.14 0.07 par:pas; +polo polo NOM m s 1.51 2.03 1.46 1.96 +poloche poloche NOM f s 0.00 0.34 0.00 0.34 +polochon polochon NOM m s 0.19 0.81 0.06 0.41 +polochons polochon NOM m p 0.19 0.81 0.12 0.41 +polonais polonais NOM m 8.26 9.32 7.06 8.18 +polonaise polonais ADJ f s 8.41 14.73 1.87 4.39 +polonaises polonais ADJ f p 8.41 14.73 0.27 0.95 +polope polope ONO 0.00 0.41 0.00 0.41 +polos polo NOM m p 1.51 2.03 0.05 0.07 +pâlot pâlot ADJ m s 0.60 1.22 0.44 0.34 +pâlots pâlot ADJ m p 0.60 1.22 0.01 0.20 +pâlotte pâlot ADJ f s 0.60 1.22 0.15 0.61 +pâlottes pâlot ADJ f p 0.60 1.22 0.00 0.07 +polski polski NOM m s 0.14 0.14 0.14 0.14 +poltron poltron NOM m s 0.74 0.41 0.58 0.27 +poltronne poltron ADJ f s 0.32 0.34 0.03 0.07 +poltronnerie poltronnerie NOM f s 0.55 0.00 0.55 0.00 +poltrons poltron NOM m p 0.74 0.41 0.16 0.14 +polémique polémique NOM f s 0.73 1.35 0.46 1.22 +polémiquer polémiquer VER 0.07 0.14 0.03 0.14 inf; +polémiques polémique NOM f p 0.73 1.35 0.27 0.14 +polémiste polémiste NOM s 0.14 0.47 0.14 0.41 +polémistes polémiste NOM p 0.14 0.47 0.00 0.07 +poly_sexuel poly_sexuel ADJ f s 0.01 0.00 0.01 0.00 +poly poly NOM m s 0.30 0.14 0.30 0.14 +polyacrylate polyacrylate NOM m s 0.03 0.00 0.03 0.00 +polyamide polyamide NOM m s 0.00 0.20 0.00 0.14 +polyamides polyamide NOM m p 0.00 0.20 0.00 0.07 +polyandre polyandre ADJ f s 0.00 0.07 0.00 0.07 +polyarthrite polyarthrite NOM f s 0.03 0.00 0.03 0.00 +polycarbonate polycarbonate NOM m s 0.03 0.00 0.03 0.00 +polychlorure polychlorure NOM m s 0.01 0.00 0.01 0.00 +polychrome polychrome ADJ s 0.00 1.08 0.00 0.74 +polychromes polychrome ADJ m p 0.00 1.08 0.00 0.34 +polychromie polychromie NOM f s 0.00 0.27 0.00 0.27 +polychromé polychromé ADJ m s 0.00 0.27 0.00 0.14 +polychromées polychromé ADJ f p 0.00 0.27 0.00 0.14 +polyclinique polyclinique NOM f s 0.23 0.14 0.23 0.14 +polycopiait polycopier VER 0.12 0.54 0.00 0.07 ind:imp:3s; +polycopie polycopie NOM f s 0.01 0.07 0.01 0.07 +polycopier polycopier VER 0.12 0.54 0.01 0.34 inf; +polycopié polycopié NOM m s 0.00 0.20 0.00 0.07 +polycopiée polycopier VER f s 0.12 0.54 0.00 0.14 par:pas; +polycopiés polycopier VER m p 0.12 0.54 0.11 0.00 par:pas; +polyculture polyculture NOM f s 0.00 0.07 0.00 0.07 +polycéphale polycéphale ADJ m s 0.01 0.00 0.01 0.00 +polydactylie polydactylie NOM f s 0.01 0.00 0.01 0.00 +polyester polyester NOM m s 0.46 0.34 0.46 0.34 +polygame polygame ADJ s 0.15 0.00 0.15 0.00 +polygamie polygamie NOM f s 0.49 0.27 0.49 0.27 +polyglotte polyglotte ADJ s 0.08 1.01 0.08 0.61 +polyglottes polyglotte NOM p 0.03 0.14 0.01 0.00 +polygonal polygonal ADJ m s 0.01 0.20 0.01 0.00 +polygonales polygonal ADJ f p 0.01 0.20 0.00 0.14 +polygonaux polygonal ADJ m p 0.01 0.20 0.00 0.07 +polygone polygone NOM m s 0.13 0.88 0.12 0.47 +polygones polygone NOM m p 0.13 0.88 0.01 0.41 +polygraphe polygraphe NOM s 0.37 0.14 0.34 0.07 +polygraphes polygraphe NOM p 0.37 0.14 0.04 0.07 +polygénique polygénique ADJ f s 0.01 0.00 0.01 0.00 +polykystique polykystique ADJ m s 0.04 0.00 0.04 0.00 +polymorphe polymorphe ADJ s 0.06 0.07 0.05 0.07 +polymorphes polymorphe ADJ p 0.06 0.07 0.01 0.00 +polymorphie polymorphie NOM f s 0.02 0.00 0.02 0.00 +polymorphismes polymorphisme NOM m p 0.03 0.00 0.03 0.00 +polymère polymère NOM m s 0.16 0.00 0.16 0.00 +polymérase polymérase NOM f s 0.05 0.00 0.05 0.00 +polymérique polymérique ADJ m s 0.02 0.00 0.01 0.00 +polymériques polymérique ADJ m p 0.02 0.00 0.01 0.00 +polynésien polynésien ADJ m s 0.08 0.47 0.03 0.07 +polynésienne polynésienne ADJ f s 0.03 0.00 0.03 0.00 +polynésiennes polynésien ADJ f p 0.08 0.47 0.03 0.14 +polynésiens polynésien NOM m p 0.04 0.07 0.02 0.00 +polype polype NOM m s 0.32 0.74 0.23 0.54 +polypes polype NOM m p 0.32 0.74 0.09 0.20 +polyphone polyphone ADJ s 0.00 0.07 0.00 0.07 +polyphonie polyphonie NOM f s 0.02 0.14 0.02 0.14 +polyphonique polyphonique ADJ m s 0.23 0.14 0.23 0.14 +polypier polypier NOM m s 0.00 0.14 0.00 0.07 +polypiers polypier NOM m p 0.00 0.14 0.00 0.07 +polypropylène polypropylène NOM m s 0.01 0.14 0.01 0.14 +polysaccharides polysaccharide NOM m p 0.01 0.00 0.01 0.00 +polystyrène polystyrène NOM m s 0.38 0.14 0.38 0.14 +polysyllabe polysyllabe ADJ s 0.01 0.00 0.01 0.00 +polysyllabique polysyllabique ADJ m s 0.01 0.07 0.01 0.07 +polytechnicien polytechnicien NOM m s 0.25 1.35 0.14 0.81 +polytechnicienne polytechnicien NOM f s 0.25 1.35 0.01 0.00 +polytechniciens polytechnicien NOM m p 0.25 1.35 0.10 0.54 +polytechnique polytechnique NOM f s 0.44 0.47 0.44 0.47 +polyèdre polyèdre NOM m s 0.00 0.20 0.00 0.14 +polyèdres polyèdre NOM m p 0.00 0.20 0.00 0.07 +polythène polythène NOM m s 0.01 0.00 0.01 0.00 +polythéiste polythéiste ADJ s 0.01 0.00 0.01 0.00 +polytonal polytonal ADJ m s 0.00 0.07 0.00 0.07 +polytonalité polytonalité NOM f s 0.00 0.07 0.00 0.07 +polyuréthane polyuréthane NOM m s 0.05 0.00 0.05 0.00 +polyéthylène polyéthylène NOM m s 0.13 0.14 0.13 0.14 +polyvalence polyvalence NOM f s 0.01 0.14 0.01 0.14 +polyvalent polyvalent ADJ m s 0.15 0.14 0.02 0.14 +polyvalente polyvalent ADJ f s 0.15 0.14 0.12 0.00 +polyvalents polyvalent ADJ m p 0.15 0.14 0.01 0.00 +polyvinyle polyvinyle NOM m s 0.01 0.07 0.01 0.07 +polyvinylique polyvinylique ADJ m s 0.03 0.00 0.03 0.00 +pom_pom_girl pom_pom_girl NOM f s 2.06 0.00 0.95 0.00 +pom_pom_girl pom_pom_girl NOM f p 2.06 0.00 1.11 0.00 +pâma pâmer VER 0.47 3.18 0.01 0.07 ind:pas:3s; +pâmaient pâmer VER 0.47 3.18 0.01 0.20 ind:imp:3p; +pâmait pâmer VER 0.47 3.18 0.02 0.27 ind:imp:3s; +pâmant pâmer VER 0.47 3.18 0.00 0.27 par:pre; +pâme pâmer VER 0.47 3.18 0.07 0.27 ind:pre:1s;ind:pre:3s; +pomelo pomelo NOM m s 0.01 0.00 0.01 0.00 +pâment pâmer VER 0.47 3.18 0.04 0.00 ind:pre:3p; +pâmer pâmer VER 0.47 3.18 0.06 0.61 inf; +pâmerais pâmer VER 0.47 3.18 0.00 0.07 cnd:pre:1s; +pâmerait pâmer VER 0.47 3.18 0.01 0.00 cnd:pre:3s; +pomerols pomerol NOM m p 0.00 0.07 0.00 0.07 +pâmeront pâmer VER 0.47 3.18 0.03 0.00 ind:fut:3p; +pâmez pâmer VER 0.47 3.18 0.10 0.07 imp:pre:2p;ind:pre:2p; +pommade pommade NOM f s 2.35 3.04 2.21 2.16 +pommader pommader VER 0.02 0.54 0.00 0.41 inf; +pommades pommade NOM f p 2.35 3.04 0.14 0.88 +pommadin pommadin NOM m s 0.00 0.07 0.00 0.07 +pommadé pommadé ADJ m s 0.00 0.74 0.00 0.47 +pommadées pommadé ADJ f p 0.00 0.74 0.00 0.07 +pommadés pommadé ADJ m p 0.00 0.74 0.00 0.20 +pommaient pommer VER 0.38 1.96 0.00 0.07 ind:imp:3p; +pommard pommard NOM m s 0.00 0.20 0.00 0.07 +pommards pommard NOM m p 0.00 0.20 0.00 0.14 +pomme pomme NOM f s 42.35 82.36 19.77 46.08 +pommeau pommeau NOM m s 0.22 4.26 0.22 3.92 +pommeaux pommeau NOM m p 0.22 4.26 0.00 0.34 +pommeler pommeler VER 0.00 0.27 0.00 0.07 inf; +pommelé pommelé ADJ m s 0.28 1.49 0.26 0.95 +pommelées pommelé ADJ f p 0.28 1.49 0.00 0.07 +pommelés pommelé ADJ m p 0.28 1.49 0.02 0.47 +pommer pommer VER 0.38 1.96 0.04 0.00 inf; +pommeraie pommeraie NOM f s 0.01 0.14 0.01 0.14 +pommes pomme NOM f p 42.35 82.36 22.57 36.28 +pommette pommette NOM f s 0.90 16.35 0.21 2.70 +pommettes pommette NOM f p 0.90 16.35 0.69 13.65 +pommier pommier NOM m s 1.93 8.78 1.55 5.88 +pommiers pommier NOM m p 1.93 8.78 0.38 2.91 +pommé pommer VER m s 0.38 1.96 0.04 0.07 par:pas; +pommée pommé ADJ f s 0.01 0.27 0.01 0.07 +pommées pommé ADJ f p 0.01 0.27 0.00 0.14 +pommés pommé ADJ m p 0.01 0.27 0.00 0.07 +pâmoison pâmoison NOM f s 0.00 1.22 0.00 0.74 +pâmoisons pâmoison NOM f p 0.00 1.22 0.00 0.47 +pompadour pompadour ADJ 0.03 0.00 0.03 0.00 +pompage pompage NOM m s 0.35 0.14 0.35 0.14 +pompai pomper VER 5.24 4.59 0.00 0.07 ind:pas:1s; +pompaient pomper VER 5.24 4.59 0.01 0.14 ind:imp:3p; +pompais pomper VER 5.24 4.59 0.02 0.07 ind:imp:1s; +pompait pomper VER 5.24 4.59 0.15 0.61 ind:imp:3s; +pompant pomper VER 5.24 4.59 0.03 0.47 par:pre; +pompe pompe NOM f s 22.92 35.14 10.51 18.45 +pompent pomper VER 5.24 4.59 0.24 0.34 ind:pre:3p; +pomper pomper VER 5.24 4.59 1.72 1.15 inf; +pompera pomper VER 5.24 4.59 0.02 0.07 ind:fut:3s; +pomperais pomper VER 5.24 4.59 0.02 0.00 cnd:pre:2s; +pomperait pomper VER 5.24 4.59 0.01 0.00 cnd:pre:3s; +pompes pompe NOM f p 22.92 35.14 12.41 16.69 +pompette pompette ADJ s 1.21 0.41 1.21 0.41 +pompeur pompeur NOM m s 0.04 0.27 0.04 0.27 +pompeuse pompeux ADJ f s 0.97 4.26 0.09 1.15 +pompeusement pompeusement ADV 0.01 1.15 0.01 1.15 +pompeuses pompeux ADJ f p 0.97 4.26 0.04 0.61 +pompeux pompeux ADJ m 0.97 4.26 0.85 2.50 +pompez pomper VER 5.24 4.59 0.66 0.07 imp:pre:2p;ind:pre:2p; +pompidoliens pompidolien ADJ m p 0.00 0.07 0.00 0.07 +pompier pompier NOM m s 13.01 10.07 2.67 1.01 +pompiers pompier NOM m p 13.01 10.07 10.35 9.05 +pompions pomper VER 5.24 4.59 0.00 0.07 ind:imp:1p; +pompiste pompiste NOM s 2.10 4.05 2.05 3.51 +pompistes pompiste NOM p 2.10 4.05 0.05 0.54 +pompiérisme pompiérisme NOM m s 0.00 0.07 0.00 0.07 +pompon pompon NOM m s 1.56 3.92 1.22 1.35 +pomponna pomponner VER 0.94 1.69 0.00 0.07 ind:pas:3s; +pomponnaient pomponner VER 0.94 1.69 0.00 0.07 ind:imp:3p; +pomponnait pomponner VER 0.94 1.69 0.00 0.20 ind:imp:3s; +pomponnant pomponner VER 0.94 1.69 0.00 0.07 par:pre; +pomponne pomponner VER 0.94 1.69 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pomponnent pomponner VER 0.94 1.69 0.01 0.00 ind:pre:3p; +pomponner pomponner VER 0.94 1.69 0.32 0.14 inf; +pomponniez pomponner VER 0.94 1.69 0.00 0.07 ind:imp:2p; +pomponné pomponner VER m s 0.94 1.69 0.10 0.34 par:pas; +pomponnée pomponner VER f s 0.94 1.69 0.41 0.34 par:pas; +pomponnées pomponner VER f p 0.94 1.69 0.01 0.27 par:pas; +pomponnés pomponner VER m p 0.94 1.69 0.01 0.07 par:pas; +pompons pompon NOM m p 1.56 3.92 0.34 2.57 +pompé pomper VER m s 5.24 4.59 0.40 0.54 par:pas; +pompée pomper VER f s 5.24 4.59 0.25 0.00 par:pas; +pompéien pompéien ADJ m s 0.17 0.54 0.01 0.20 +pompéienne pompéien ADJ f s 0.17 0.54 0.01 0.20 +pompéiennes pompéien ADJ f p 0.17 0.54 0.00 0.07 +pompéiens pompéien ADJ m p 0.17 0.54 0.15 0.07 +pompés pomper VER m p 5.24 4.59 0.01 0.07 par:pas; +pâmèrent pâmer VER 0.47 3.18 0.01 0.07 ind:pas:3p; +pâmé pâmer VER m s 0.47 3.18 0.10 0.41 par:pas; +pâmée pâmer VER f s 0.47 3.18 0.01 0.54 par:pas; +pâmées pâmer VER f p 0.47 3.18 0.01 0.20 par:pas; +pomélo pomélo NOM m s 0.01 0.00 0.01 0.00 +poméranien poméranien ADJ m s 0.01 0.14 0.01 0.07 +poméranienne poméranien NOM f s 0.00 0.47 0.00 0.07 +poméraniennes poméranien NOM f p 0.00 0.47 0.00 0.34 +poméraniens poméranien NOM m p 0.00 0.47 0.00 0.07 +pâmés pâmer VER m p 0.47 3.18 0.00 0.14 par:pas; +ponant ponant NOM m s 0.04 0.34 0.04 0.34 +ponce poncer VER 0.42 2.43 0.18 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ponceau ponceau NOM m s 0.00 0.41 0.00 0.34 +ponceaux ponceau NOM m p 0.00 0.41 0.00 0.07 +poncer poncer VER 0.42 2.43 0.16 0.07 inf; +ponces poncer VER 0.42 2.43 0.00 0.27 sub:pre:2s; +ponceuse ponceur NOM f s 0.31 0.41 0.31 0.41 +poncho poncho NOM m s 1.04 0.20 1.00 0.20 +ponchos poncho NOM m p 1.04 0.20 0.04 0.00 +poncif poncif NOM m s 0.01 0.95 0.00 0.47 +poncifs poncif NOM m p 0.01 0.95 0.01 0.47 +ponction ponction NOM f s 1.72 1.08 1.68 0.74 +ponctionna ponctionner VER 0.02 0.27 0.00 0.07 ind:pas:3s; +ponctionnait ponctionner VER 0.02 0.27 0.00 0.07 ind:imp:3s; +ponctionne ponctionner VER 0.02 0.27 0.01 0.07 ind:pre:3s; +ponctionner ponctionner VER 0.02 0.27 0.01 0.07 inf; +ponctions ponction NOM f p 1.72 1.08 0.04 0.34 +ponctua ponctuer VER 0.12 9.32 0.00 0.27 ind:pas:3s; +ponctuaient ponctuer VER 0.12 9.32 0.00 0.47 ind:imp:3p; +ponctuait ponctuer VER 0.12 9.32 0.01 1.69 ind:imp:3s; +ponctualité ponctualité NOM f s 1.01 1.42 1.01 1.42 +ponctuant ponctuer VER 0.12 9.32 0.01 0.88 par:pre; +ponctuation ponctuation NOM f s 0.30 1.55 0.30 1.35 +ponctuations ponctuation NOM f p 0.30 1.55 0.00 0.20 +ponctue ponctuer VER 0.12 9.32 0.01 0.88 ind:pre:1s;ind:pre:3s; +ponctuel ponctuel ADJ m s 3.55 1.82 1.82 0.81 +ponctuelle ponctuel ADJ f s 3.55 1.82 1.13 0.27 +ponctuellement ponctuellement ADV 0.26 1.01 0.26 1.01 +ponctuelles ponctuel ADJ f p 3.55 1.82 0.06 0.41 +ponctuels ponctuel ADJ m p 3.55 1.82 0.54 0.34 +ponctuent ponctuer VER 0.12 9.32 0.01 0.27 ind:pre:3p; +ponctuer ponctuer VER 0.12 9.32 0.02 0.61 inf; +ponctuèrent ponctuer VER 0.12 9.32 0.00 0.07 ind:pas:3p; +ponctué ponctuer VER m s 0.12 9.32 0.02 2.16 par:pas; +ponctuée ponctuer VER f s 0.12 9.32 0.00 1.08 par:pas; +ponctuées ponctuer VER f p 0.12 9.32 0.00 0.47 par:pas; +ponctués ponctuer VER m p 0.12 9.32 0.03 0.47 par:pas; +poncé poncer VER m s 0.42 2.43 0.07 0.20 par:pas; +poncée poncer VER f s 0.42 2.43 0.00 0.27 par:pas; +poncées poncer VER f p 0.42 2.43 0.00 0.14 par:pas; +poncés poncer VER m p 0.42 2.43 0.00 0.07 par:pas; +pond pondre VER 5.41 6.82 1.18 0.74 ind:pre:3s; +pondaient pondre VER 5.41 6.82 0.01 0.20 ind:imp:3p; +pondait pondre VER 5.41 6.82 0.15 0.41 ind:imp:3s; +pondant pondre VER 5.41 6.82 0.02 0.07 par:pre; +ponde pondre VER 5.41 6.82 0.10 0.00 sub:pre:1s;sub:pre:3s; +pondent pondre VER 5.41 6.82 0.55 0.34 ind:pre:3p; +pondes pondre VER 5.41 6.82 0.00 0.07 sub:pre:2s; +pondeur pondeur NOM m s 0.08 0.20 0.00 0.07 +pondeuse pondeur NOM f s 0.08 0.20 0.08 0.00 +pondeuses pondeuse NOM f p 0.03 0.00 0.03 0.00 +pondez pondre VER 5.41 6.82 0.06 0.00 imp:pre:2p;ind:pre:2p; +pondiez pondre VER 5.41 6.82 0.00 0.07 ind:imp:2p; +pondoir pondoir NOM m s 0.00 0.20 0.00 0.14 +pondoirs pondoir NOM m p 0.00 0.20 0.00 0.07 +pondra pondre VER 5.41 6.82 0.04 0.07 ind:fut:3s; +pondrai pondre VER 5.41 6.82 0.16 0.07 ind:fut:1s; +pondraient pondre VER 5.41 6.82 0.01 0.14 cnd:pre:3p; +pondrais pondre VER 5.41 6.82 0.00 0.07 cnd:pre:2s; +pondras pondre VER 5.41 6.82 0.02 0.07 ind:fut:2s; +pondre pondre VER 5.41 6.82 1.64 1.69 inf; +pondront pondre VER 5.41 6.82 0.01 0.00 ind:fut:3p; +ponds pondre VER 5.41 6.82 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +pondu pondre VER m s 5.41 6.82 1.39 1.76 par:pas; +pondue pondre VER f s 5.41 6.82 0.01 0.27 par:pas; +pondérable pondérable ADJ f s 0.00 0.20 0.00 0.14 +pondérables pondérable ADJ p 0.00 0.20 0.00 0.07 +pondérale pondéral ADJ f s 0.05 0.00 0.05 0.00 +pondération pondération NOM f s 0.12 0.47 0.12 0.47 +pondérer pondérer VER 0.04 0.14 0.01 0.00 inf; +pondéré pondéré ADJ m s 0.18 1.15 0.03 0.68 +pondérée pondéré ADJ f s 0.18 1.15 0.13 0.14 +pondérées pondéré ADJ f p 0.18 1.15 0.00 0.07 +pondérés pondéré ADJ m p 0.18 1.15 0.02 0.27 +pondus pondre VER m p 5.41 6.82 0.02 0.74 par:pas; +ponette ponette NOM f s 0.00 0.47 0.00 0.27 +ponettes ponette NOM f p 0.00 0.47 0.00 0.20 +poney poney NOM m s 4.80 1.01 3.70 0.47 +poneys poney NOM m p 4.80 1.01 1.10 0.54 +pongiste pongiste NOM s 0.30 0.00 0.10 0.00 +pongistes pongiste NOM p 0.30 0.00 0.20 0.00 +pongo pongo NOM m s 1.72 0.00 1.72 0.00 +pongé pongé NOM m s 0.00 0.20 0.00 0.20 +pont_l_évêque pont_l_évêque NOM m s 0.00 0.07 0.00 0.07 +pont_levis pont_levis NOM m 0.46 1.42 0.46 1.42 +pont_neuf pont_neuf NOM m s 0.14 2.43 0.14 2.43 +pont_promenade pont_promenade NOM m s 0.00 0.07 0.00 0.07 +pont pont NOM m s 56.43 90.81 50.45 74.59 +pontage pontage NOM m s 0.65 0.07 0.60 0.07 +pontages pontage NOM m p 0.65 0.07 0.04 0.00 +ponte ponte NOM s 2.35 2.30 1.46 1.62 +ponter ponter VER 0.52 0.20 0.21 0.00 inf; +pontes ponte NOM p 2.35 2.30 0.89 0.68 +pontet pontet NOM m s 0.01 0.20 0.01 0.14 +pontets pontet NOM m p 0.01 0.20 0.00 0.07 +ponçage ponçage NOM m s 0.01 0.14 0.01 0.14 +ponçait poncer VER 0.42 2.43 0.01 0.20 ind:imp:3s; +ponçant poncer VER 0.42 2.43 0.00 0.07 par:pre; +pontife pontife NOM m s 0.26 1.28 0.23 0.88 +pontifes pontife NOM m p 0.26 1.28 0.03 0.41 +pontifia pontifier VER 0.04 0.54 0.00 0.07 ind:pas:3s; +pontifiait pontifier VER 0.04 0.54 0.00 0.14 ind:imp:3s; +pontifiant pontifiant ADJ m s 0.04 0.41 0.02 0.27 +pontifiante pontifiant ADJ f s 0.04 0.41 0.02 0.07 +pontifiants pontifiant ADJ m p 0.04 0.41 0.00 0.07 +pontifical pontifical ADJ m s 0.30 1.35 0.16 0.47 +pontificale pontifical ADJ f s 0.30 1.35 0.14 0.47 +pontificales pontifical ADJ f p 0.30 1.35 0.00 0.27 +pontificat pontificat NOM m s 0.01 0.14 0.01 0.14 +pontificaux pontifical ADJ m p 0.30 1.35 0.00 0.14 +pontifie pontifier VER 0.04 0.54 0.00 0.14 ind:pre:3s; +pontifier pontifier VER 0.04 0.54 0.04 0.07 inf; +pontifièrent pontifier VER 0.04 0.54 0.00 0.07 ind:pas:3p; +pontil pontil NOM m s 0.00 0.07 0.00 0.07 +pontin pontin ADJ m s 0.11 0.20 0.10 0.07 +pontins pontin ADJ m p 0.11 0.20 0.01 0.14 +ponton ponton NOM m s 1.01 3.99 0.98 2.16 +pontonnier pontonnier NOM m s 0.00 0.81 0.00 0.14 +pontonniers pontonnier NOM m p 0.00 0.81 0.00 0.68 +pontons ponton NOM m p 1.01 3.99 0.03 1.82 +ponts_levis ponts_levis NOM m p 0.00 0.27 0.00 0.27 +ponts pont NOM m p 56.43 90.81 5.97 16.22 +ponté ponter VER m s 0.52 0.20 0.01 0.07 par:pas; +pool pool NOM m s 1.19 0.20 1.19 0.20 +pop_club pop_club NOM s 0.00 0.07 0.00 0.07 +pop_corn pop_corn NOM m 3.79 0.14 3.79 0.14 +pop pop ADJ s 3.10 1.28 3.10 1.28 +popaul popaul NOM m s 0.28 0.07 0.28 0.07 +pope pope NOM m s 1.07 6.42 0.83 5.20 +popeline popeline NOM f s 0.00 4.66 0.00 4.66 +popes pope NOM m p 1.07 6.42 0.23 1.22 +popistes popiste ADJ f p 0.00 0.07 0.00 0.07 +poplité poplité ADJ m s 0.05 0.00 0.01 0.00 +poplitée poplité ADJ f s 0.05 0.00 0.04 0.00 +popote popote NOM f s 0.40 2.57 0.39 2.09 +popotes popote NOM f p 0.40 2.57 0.01 0.47 +popotin popotin NOM m s 0.79 0.74 0.79 0.74 +populace populace NOM f s 1.53 2.36 1.53 2.36 +populacier populacier ADJ m s 0.00 0.68 0.00 0.20 +populacière populacier ADJ f s 0.00 0.68 0.00 0.20 +populacières populacier ADJ f p 0.00 0.68 0.00 0.27 +populaire populaire ADJ s 19.34 31.28 16.23 23.45 +populairement populairement ADV 0.14 0.07 0.14 0.07 +populaires populaire ADJ p 19.34 31.28 3.11 7.84 +populariser populariser VER 0.12 0.14 0.12 0.07 inf; +popularisé populariser VER m s 0.12 0.14 0.00 0.07 par:pas; +popularité popularité NOM f s 2.03 1.82 2.03 1.76 +popularités popularité NOM f p 2.03 1.82 0.00 0.07 +population population NOM f s 15.68 33.65 14.86 23.58 +populations population NOM f p 15.68 33.65 0.82 10.07 +populeuse populeux ADJ f s 0.02 1.15 0.01 0.27 +populeuses populeux ADJ f p 0.02 1.15 0.00 0.14 +populeux populeux ADJ m 0.02 1.15 0.01 0.74 +populisme populisme NOM m s 0.02 0.14 0.02 0.07 +populismes populisme NOM m p 0.02 0.14 0.00 0.07 +populiste populiste ADJ s 0.17 0.41 0.16 0.27 +populistes populiste ADJ m p 0.17 0.41 0.01 0.14 +populo populo NOM m s 0.17 1.55 0.17 1.55 +poquait poquer VER 0.00 0.07 0.00 0.07 ind:imp:3s; +pâque pâque NOM f s 0.51 0.95 0.51 0.95 +poque poque NOM f s 0.16 0.07 0.16 0.07 +pâquerette pâquerette NOM f s 0.69 2.09 0.27 0.20 +pâquerettes pâquerette NOM f p 0.69 2.09 0.43 1.89 +pâques pâques NOM m s 0.26 1.01 0.26 1.01 +poquette poquette NOM f s 0.00 0.07 0.00 0.07 +pâquis pâquis NOM m 0.00 0.07 0.00 0.07 +porc_épic porc_épic NOM m s 0.55 0.27 0.55 0.27 +porc porc NOM m s 41.07 14.46 30.18 11.15 +porcelaine porcelaine NOM f s 3.07 12.43 2.85 10.74 +porcelaines porcelaine NOM f p 3.07 12.43 0.22 1.69 +porcelainiers porcelainier NOM m p 0.00 0.07 0.00 0.07 +porcelet porcelet NOM m s 0.57 0.54 0.44 0.27 +porcelets porcelet NOM m p 0.57 0.54 0.13 0.27 +porche porche NOM m s 3.10 17.03 2.95 15.34 +porcher porcher NOM m s 1.47 0.00 1.46 0.00 +porcherie porcherie NOM f s 2.76 1.22 2.73 1.22 +porcheries porcherie NOM f p 2.76 1.22 0.03 0.00 +porches porche NOM m p 3.10 17.03 0.14 1.69 +porchère porcher NOM f s 1.47 0.00 0.01 0.00 +porchères porchère NOM f p 0.01 0.00 0.01 0.00 +porcif porcif NOM f s 0.00 0.34 0.00 0.14 +porcifs porcif NOM f p 0.00 0.34 0.00 0.20 +porcin porcin ADJ m s 0.29 0.74 0.19 0.20 +porcine porcin ADJ f s 0.29 0.74 0.06 0.07 +porcins porcin NOM m p 0.12 0.00 0.10 0.00 +porcs porc NOM m p 41.07 14.46 10.89 3.31 +pore pore NOM m s 1.54 3.51 0.57 0.47 +pores pore NOM m p 1.54 3.51 0.97 3.04 +poreuse poreux ADJ f s 0.70 2.84 0.16 1.15 +poreuses poreux ADJ f p 0.70 2.84 0.04 0.14 +poreux poreux ADJ m 0.70 2.84 0.49 1.55 +porno porno NOM m s 9.77 1.08 8.73 0.47 +pornocrate pornocrate NOM s 0.00 0.14 0.00 0.07 +pornocrates pornocrate NOM p 0.00 0.14 0.00 0.07 +pornographe pornographe NOM s 0.19 0.47 0.17 0.47 +pornographes pornographe NOM p 0.19 0.47 0.02 0.00 +pornographie pornographie NOM f s 1.81 1.22 1.81 1.15 +pornographies pornographie NOM f p 1.81 1.22 0.00 0.07 +pornographique pornographique ADJ s 1.39 1.82 0.56 0.68 +pornographiques pornographique ADJ p 1.39 1.82 0.83 1.15 +pornos porno ADJ p 7.20 2.03 2.07 0.95 +porosité porosité NOM f s 0.04 0.34 0.04 0.34 +porphyre porphyre NOM m s 0.10 1.49 0.10 1.35 +porphyres porphyre NOM m p 0.10 1.49 0.00 0.14 +porphyrie porphyrie NOM f s 0.12 0.00 0.12 0.00 +porque porque NOM f s 0.32 0.00 0.32 0.00 +porridge porridge NOM m s 1.13 0.74 1.13 0.74 +port_salut port_salut NOM m 0.00 0.20 0.00 0.20 +port port NOM m s 31.68 76.42 29.40 64.86 +porta porter VER 319.85 474.93 1.41 16.55 ind:pas:3s; +portabilité portabilité NOM f s 0.01 0.00 0.01 0.00 +portable portable ADJ s 35.82 0.61 31.70 0.61 +portables portable ADJ p 35.82 0.61 4.12 0.00 +portage portage NOM m s 0.08 0.74 0.08 0.74 +portager portager VER 0.00 0.07 0.00 0.07 inf; +portai porter VER 319.85 474.93 0.12 1.01 ind:pas:1s; +portaient porter VER 319.85 474.93 2.81 28.72 ind:imp:3p; +portail portail NOM m s 8.61 22.97 7.97 21.82 +portails portail NOM m p 8.61 22.97 0.64 1.15 +portais porter VER 319.85 474.93 7.96 9.19 ind:imp:1s;ind:imp:2s; +portait porter VER 319.85 474.93 25.75 113.85 ind:imp:3s; +portal portal ADJ m s 0.05 0.14 0.05 0.14 +portance portance NOM f s 0.29 0.00 0.29 0.00 +portant portant ADJ m s 5.46 9.73 5.00 8.72 +portante portant ADJ f s 5.46 9.73 0.20 0.34 +portants portant ADJ m p 5.46 9.73 0.26 0.68 +portassent porter VER 319.85 474.93 0.00 0.07 sub:imp:3p; +portatif portatif ADJ m s 0.65 2.64 0.40 1.08 +portatifs portatif ADJ m p 0.65 2.64 0.10 0.41 +portative portatif ADJ f s 0.65 2.64 0.14 0.88 +portatives portatif ADJ f p 0.65 2.64 0.01 0.27 +porte_aiguille porte_aiguille NOM m s 0.07 0.00 0.07 0.00 +porte_avion porte_avion NOM m s 0.04 0.07 0.04 0.07 +porte_avions porte_avions NOM m 1.21 1.22 1.21 1.22 +porte_bagages porte_bagages NOM m 0.02 3.11 0.02 3.11 +porte_bannière porte_bannière NOM m s 0.00 0.07 0.00 0.07 +porte_billets porte_billets NOM m 0.00 0.14 0.00 0.14 +porte_bois porte_bois NOM m 0.00 0.07 0.00 0.07 +porte_bonheur porte_bonheur NOM m 4.58 1.08 4.58 1.08 +porte_bouteilles porte_bouteilles NOM m 0.00 0.27 0.00 0.27 +porte_bébé porte_bébé NOM m s 0.02 0.00 0.02 0.00 +porte_cannes porte_cannes NOM m 0.00 0.07 0.00 0.07 +porte_carte porte_carte NOM m s 0.00 0.07 0.00 0.07 +porte_cartes porte_cartes NOM m 0.00 0.34 0.00 0.34 +porte_chance porte_chance NOM m 0.17 0.07 0.17 0.07 +porte_chapeaux porte_chapeaux NOM m 0.04 0.00 0.04 0.00 +porte_cigarette porte_cigarette NOM m s 0.00 0.20 0.00 0.20 +porte_cigarettes porte_cigarettes NOM m 0.65 0.74 0.65 0.74 +porte_clef porte_clef NOM m s 0.02 0.14 0.02 0.14 +porte_clefs porte_clefs NOM m 0.27 0.34 0.27 0.34 +porte_clé porte_clé NOM m s 0.10 0.00 0.10 0.00 +porte_clés porte_clés NOM m 1.44 0.54 1.44 0.54 +porte_conteneurs porte_conteneurs NOM m 0.01 0.00 0.01 0.00 +porte_coton porte_coton NOM m s 0.00 0.07 0.00 0.07 +porte_couilles porte_couilles NOM m 0.00 0.07 0.00 0.07 +porte_couteau porte_couteau NOM m s 0.00 0.07 0.00 0.07 +porte_couteaux porte_couteaux NOM m p 0.00 0.07 0.00 0.07 +porte_cravate porte_cravate NOM m s 0.00 0.07 0.00 0.07 +porte_crayon porte_crayon NOM m s 0.01 0.00 0.01 0.00 +porte_document porte_document NOM m s 0.01 0.00 0.01 0.00 +porte_documents porte_documents NOM m 0.86 0.68 0.86 0.68 +porte_drapeau porte_drapeau NOM m s 0.19 0.68 0.19 0.68 +porte_drapeaux porte_drapeaux NOM m p 0.01 0.07 0.01 0.07 +porte_fanion porte_fanion NOM m s 0.00 0.14 0.00 0.14 +porte_fenêtre porte_fenêtre NOM f s 0.14 4.46 0.03 3.11 +porte_flingue porte_flingue NOM m s 0.08 0.07 0.08 0.00 +porte_flingue porte_flingue NOM m p 0.08 0.07 0.00 0.07 +porte_foret porte_foret NOM m p 0.00 0.07 0.00 0.07 +porte_glaive porte_glaive NOM m 0.10 1.01 0.10 1.01 +porte_jarretelles porte_jarretelles NOM m 0.59 1.89 0.59 1.89 +porte_malheur porte_malheur NOM m 0.19 0.07 0.19 0.07 +porte_mine porte_mine NOM m s 0.00 0.14 0.00 0.14 +porte_monnaie porte_monnaie NOM m 2.24 6.01 2.24 6.01 +porte_musique porte_musique NOM m s 0.00 0.07 0.00 0.07 +porte_à_faux porte_à_faux NOM m 0.00 0.61 0.00 0.61 +porte_à_porte porte_à_porte NOM m 0.00 0.41 0.00 0.41 +porte_objet porte_objet NOM m s 0.01 0.00 0.01 0.00 +porte_papier porte_papier NOM m 0.01 0.07 0.01 0.07 +porte_parapluie porte_parapluie NOM m s 0.00 0.07 0.00 0.07 +porte_parapluies porte_parapluies NOM m 0.14 0.47 0.14 0.47 +porte_plume porte_plume NOM m 0.29 3.78 0.29 3.72 +porte_plume porte_plume NOM m p 0.29 3.78 0.00 0.07 +porte_queue porte_queue NOM m 0.01 0.00 0.01 0.00 +porte_savon porte_savon NOM m s 0.09 0.27 0.09 0.27 +porte_serviette porte_serviette NOM m s 0.00 0.20 0.00 0.20 +porte_serviettes porte_serviettes NOM m 0.12 0.20 0.12 0.20 +porte_tambour porte_tambour NOM m 0.01 0.34 0.01 0.34 +porte_épée porte_épée NOM m s 0.00 0.14 0.00 0.14 +porte_étendard porte_étendard NOM m s 0.01 0.34 0.01 0.27 +porte_étendard porte_étendard NOM m p 0.01 0.34 0.00 0.07 +porte_étrier porte_étrier NOM m s 0.00 0.07 0.00 0.07 +porte_voix porte_voix NOM m 0.55 2.64 0.55 2.64 +porte porte NOM f s 333.85 617.43 288.39 536.96 +portefaix portefaix NOM m 0.01 1.15 0.01 1.15 +portefeuille portefeuille NOM m s 17.91 21.15 16.53 19.66 +portefeuilles portefeuille NOM m p 17.91 21.15 1.38 1.49 +portemanteau portemanteau NOM m s 0.36 4.05 0.30 2.97 +portemanteaux portemanteau NOM m p 0.36 4.05 0.07 1.08 +portement portement NOM m s 0.00 0.07 0.00 0.07 +portent porter VER 319.85 474.93 11.90 19.39 ind:pre:3p;sub:pre:3p; +porter porter VER 319.85 474.93 78.91 79.93 inf; +portera porter VER 319.85 474.93 7.54 3.11 ind:fut:3s; +porterai porter VER 319.85 474.93 5.49 1.62 ind:fut:1s; +porteraient porter VER 319.85 474.93 0.20 1.15 cnd:pre:3p; +porterais porter VER 319.85 474.93 1.14 0.81 cnd:pre:1s;cnd:pre:2s; +porterait porter VER 319.85 474.93 2.16 3.65 cnd:pre:3s; +porteras porter VER 319.85 474.93 2.10 0.47 ind:fut:2s; +porterez porter VER 319.85 474.93 1.53 0.54 ind:fut:2p; +porterie porterie NOM f s 0.01 0.14 0.01 0.14 +porteriez porter VER 319.85 474.93 0.30 0.07 cnd:pre:2p; +porterons porter VER 319.85 474.93 0.46 0.27 ind:fut:1p; +porteront porter VER 319.85 474.93 1.73 0.74 ind:fut:3p; +porte_fenêtre porte_fenêtre NOM f p 0.14 4.46 0.10 1.35 +portes porte NOM f p 333.85 617.43 45.46 80.47 +porteur porteur NOM m s 6.15 13.31 4.01 5.54 +porteurs porteur NOM m p 6.15 13.31 1.89 6.49 +porteuse porteur ADJ f s 4.31 11.15 0.98 1.82 +porteuses porteur ADJ f p 4.31 11.15 0.44 0.88 +portez porter VER 319.85 474.93 16.22 2.84 imp:pre:2p;ind:pre:2p; +portfolio portfolio NOM m s 0.68 0.00 0.68 0.00 +portier portier NOM m s 7.39 45.00 3.07 6.89 +portiers portier NOM m p 7.39 45.00 0.21 0.68 +portiez porter VER 319.85 474.93 2.56 1.15 ind:imp:2p; +portillon portillon NOM m s 0.36 3.24 0.35 3.04 +portillons portillon NOM m p 0.36 3.24 0.01 0.20 +portion portion NOM f s 3.13 7.57 2.30 5.61 +portions portion NOM f p 3.13 7.57 0.83 1.96 +portique portique NOM m s 0.40 4.53 0.35 3.11 +portiques portique NOM m p 0.40 4.53 0.04 1.42 +portière portier NOM f s 7.39 45.00 4.12 29.19 +portières portière NOM f p 0.84 0.00 0.84 0.00 +portland portland NOM m s 0.05 0.07 0.05 0.07 +porto porto NOM m s 2.30 5.00 2.27 4.46 +portâmes porter VER 319.85 474.93 0.00 0.14 ind:pas:1p; +portons porter VER 319.85 474.93 4.34 2.43 imp:pre:1p;ind:pre:1p; +portor portor NOM m s 0.00 0.07 0.00 0.07 +portoricain portoricain ADJ m s 1.09 0.07 0.53 0.00 +portoricaine portoricain ADJ f s 1.09 0.07 0.48 0.00 +portoricaines portoricain ADJ f p 1.09 0.07 0.03 0.07 +portoricains portoricain NOM m p 1.27 0.07 0.80 0.07 +portos porto NOM m p 2.30 5.00 0.03 0.54 +portât porter VER 319.85 474.93 0.01 0.95 sub:imp:3s; +portraire portraire VER 0.36 1.01 0.00 0.07 inf; +portrait_robot portrait_robot NOM m s 1.17 0.54 0.77 0.47 +portrait portrait NOM m s 25.73 54.59 22.64 39.19 +portraitiste portraitiste NOM s 0.28 0.47 0.26 0.27 +portraitistes portraitiste NOM p 0.28 0.47 0.03 0.20 +portrait_robot portrait_robot NOM m p 1.17 0.54 0.40 0.07 +portraits portrait NOM m p 25.73 54.59 3.09 15.41 +portraiturant portraiturer VER 0.00 0.54 0.00 0.07 par:pre; +portraiture portraiturer VER 0.00 0.54 0.00 0.14 ind:pre:3s; +portraiturer portraiturer VER 0.00 0.54 0.00 0.20 inf; +portraituré portraiturer VER m s 0.00 0.54 0.00 0.07 par:pas; +portraiturés portraiturer VER m p 0.00 0.54 0.00 0.07 par:pas; +ports port NOM m p 31.68 76.42 2.28 11.55 +portèrent porter VER 319.85 474.93 0.29 2.50 ind:pas:3p; +porté porter VER m s 319.85 474.93 20.56 38.65 par:pas;par:pas;par:pas; +portuaire portuaire ADJ f s 0.56 0.81 0.29 0.54 +portuaires portuaire ADJ f p 0.56 0.81 0.26 0.27 +portée portée NOM f s 13.38 33.85 13.05 33.18 +portées porter VER f p 319.85 474.93 1.00 3.38 par:pas; +portugais portugais NOM m 7.89 3.45 7.58 2.70 +portugaise portugais ADJ f s 3.88 3.51 0.55 1.49 +portugaises portugais ADJ f p 3.88 3.51 0.30 0.41 +portulan portulan NOM m s 0.00 0.61 0.00 0.34 +portulans portulan NOM m p 0.00 0.61 0.00 0.27 +portés porter VER m p 319.85 474.93 2.70 7.64 par:pas; +portus portus NOM m 0.00 0.07 0.00 0.07 +posa poser VER 217.20 409.05 1.77 65.68 ind:pas:3s; +posada posada NOM f s 0.12 0.81 0.12 0.74 +posadas posada NOM f p 0.12 0.81 0.00 0.07 +posai poser VER 217.20 409.05 0.03 5.20 ind:pas:1s; +posaient poser VER 217.20 409.05 0.73 7.30 ind:imp:3p; +posais poser VER 217.20 409.05 1.77 5.41 ind:imp:1s;ind:imp:2s; +posait poser VER 217.20 409.05 3.38 32.43 ind:imp:3s; +posant poser VER 217.20 409.05 1.47 16.28 par:pre; +posas poser VER 217.20 409.05 0.00 0.07 ind:pas:2s; +pose_la_moi pose_la_moi NOM f s 0.01 0.00 0.01 0.00 +pose poser VER 217.20 409.05 57.41 48.85 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +posemètre posemètre NOM m s 0.02 0.00 0.02 0.00 +posent poser VER 217.20 409.05 3.54 7.50 ind:pre:3p; +poser poser VER 217.20 409.05 73.73 73.85 inf;;inf;;inf;;inf;; +posera poser VER 217.20 409.05 3.04 1.08 ind:fut:3s; +poserai poser VER 217.20 409.05 1.73 0.74 ind:fut:1s; +poseraient poser VER 217.20 409.05 0.06 0.34 cnd:pre:3p; +poserais poser VER 217.20 409.05 0.40 0.14 cnd:pre:1s;cnd:pre:2s; +poserait poser VER 217.20 409.05 0.74 1.76 cnd:pre:3s; +poseras poser VER 217.20 409.05 0.41 0.07 ind:fut:2s; +poserez poser VER 217.20 409.05 0.35 0.07 ind:fut:2p; +poseriez poser VER 217.20 409.05 0.24 0.00 cnd:pre:2p; +poserions poser VER 217.20 409.05 0.01 0.00 cnd:pre:1p; +poserons poser VER 217.20 409.05 0.43 0.07 ind:fut:1p; +poseront poser VER 217.20 409.05 1.02 0.95 ind:fut:3p; +poses poser VER 217.20 409.05 6.12 0.95 ind:pre:2s;sub:pre:2s; +poseur poseur NOM m s 0.96 0.95 0.67 0.74 +poseurs poseur NOM m p 0.96 0.95 0.23 0.20 +poseuse poseur NOM f s 0.96 0.95 0.07 0.00 +posez poser VER 217.20 409.05 23.70 2.77 imp:pre:2p;ind:pre:2p; +posiez poser VER 217.20 409.05 0.47 0.27 ind:imp:2p; +posions poser VER 217.20 409.05 0.06 0.14 ind:imp:1p; +positif positif ADJ m s 17.27 7.70 9.69 3.99 +positifs positif ADJ m p 17.27 7.70 1.69 0.54 +position_clé position_clé NOM f s 0.01 0.00 0.01 0.00 +position position NOM f s 61.74 63.38 55.24 53.85 +positionne positionner VER 1.11 0.14 0.22 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +positionnel positionnel ADJ m s 0.01 0.00 0.01 0.00 +positionnement positionnement NOM m s 0.23 0.07 0.23 0.07 +positionnent positionner VER 1.11 0.14 0.03 0.00 ind:pre:3p; +positionner positionner VER 1.11 0.14 0.57 0.07 inf; +positionnera positionner VER 1.11 0.14 0.02 0.00 ind:fut:3s; +positionneur positionneur NOM m s 0.01 0.00 0.01 0.00 +positionné positionner VER m s 1.11 0.14 0.16 0.07 par:pas; +positionnée positionner VER f s 1.11 0.14 0.11 0.00 par:pas; +positions position NOM f p 61.74 63.38 6.49 9.53 +positive positif ADJ f s 17.27 7.70 4.63 2.57 +positivement positivement ADV 1.58 3.11 1.58 3.11 +positiver positiver VER 0.23 0.00 0.23 0.00 inf; +positives positif ADJ f p 17.27 7.70 1.25 0.61 +positivisme positivisme NOM m s 0.04 0.14 0.04 0.14 +positiviste positiviste ADJ s 0.20 0.20 0.20 0.14 +positivistes positiviste ADJ m p 0.20 0.20 0.00 0.07 +positivité positivité NOM f s 0.17 0.07 0.17 0.07 +positon positon NOM m s 0.01 0.00 0.01 0.00 +positron positron NOM m s 0.04 0.14 0.01 0.07 +positrons positron NOM m p 0.04 0.14 0.02 0.07 +posologie posologie NOM f s 0.26 0.34 0.15 0.27 +posologies posologie NOM f p 0.26 0.34 0.11 0.07 +posâmes poser VER 217.20 409.05 0.00 0.27 ind:pas:1p; +posons poser VER 217.20 409.05 1.38 0.34 imp:pre:1p;ind:pre:1p; +posât poser VER 217.20 409.05 0.00 0.81 sub:imp:3s; +possesseur possesseur NOM m s 0.53 3.78 0.50 2.57 +possesseurs possesseur NOM m p 0.53 3.78 0.04 1.22 +possessif possessif ADJ m s 1.04 1.76 0.41 0.81 +possessifs possessif ADJ m p 1.04 1.76 0.09 0.07 +possession possession NOM f s 12.76 27.64 11.56 24.19 +possessions possession NOM f p 12.76 27.64 1.20 3.45 +possessive possessif ADJ f s 1.04 1.76 0.53 0.81 +possessives possessif ADJ f p 1.04 1.76 0.02 0.07 +possessivité possessivité NOM f s 0.03 0.20 0.03 0.20 +possibilité possibilité NOM f s 25.87 30.54 16.79 19.46 +possibilités possibilité NOM f p 25.87 30.54 9.08 11.08 +possible possible ADJ s 201.41 211.96 193.91 197.16 +possiblement possiblement ADV 0.21 0.20 0.21 0.20 +possibles possible ADJ p 201.41 211.96 7.50 14.80 +possède posséder VER 42.76 82.23 17.80 20.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +possèdent posséder VER 42.76 82.23 3.27 4.59 ind:pre:3p; +possèdes posséder VER 42.76 82.23 1.44 0.47 ind:pre:2s; +posséda posséder VER 42.76 82.23 0.12 0.61 ind:pas:3s; +possédaient posséder VER 42.76 82.23 0.38 5.14 ind:imp:3p; +possédais posséder VER 42.76 82.23 0.72 3.11 ind:imp:1s;ind:imp:2s; +possédait posséder VER 42.76 82.23 2.84 21.42 ind:imp:3s; +possédant posséder VER 42.76 82.23 0.59 1.55 par:pre; +possédante possédant ADJ f s 0.27 0.34 0.21 0.20 +possédants possédant NOM m p 0.09 0.68 0.01 0.34 +possédasse posséder VER 42.76 82.23 0.00 0.07 sub:imp:1s; +posséder posséder VER 42.76 82.23 6.36 13.24 inf; +possédera posséder VER 42.76 82.23 0.39 0.27 ind:fut:3s; +posséderai posséder VER 42.76 82.23 0.27 0.20 ind:fut:1s; +posséderaient posséder VER 42.76 82.23 0.04 0.07 cnd:pre:3p; +posséderais posséder VER 42.76 82.23 0.00 0.07 cnd:pre:1s; +posséderait posséder VER 42.76 82.23 0.05 0.27 cnd:pre:3s; +posséderas posséder VER 42.76 82.23 0.01 0.07 ind:fut:2s; +posséderez posséder VER 42.76 82.23 0.05 0.00 ind:fut:2p; +posséderont posséder VER 42.76 82.23 0.20 0.07 ind:fut:3p; +possédez posséder VER 42.76 82.23 2.18 0.81 imp:pre:2p;ind:pre:2p; +possédiez posséder VER 42.76 82.23 0.29 0.07 ind:imp:2p; +possédions posséder VER 42.76 82.23 0.13 0.81 ind:imp:1p; +possédons posséder VER 42.76 82.23 1.09 1.01 imp:pre:1p;ind:pre:1p; +possédât posséder VER 42.76 82.23 0.01 0.74 sub:imp:3s; +possédé posséder VER m s 42.76 82.23 2.67 4.93 par:pas; +possédée posséder VER f s 42.76 82.23 1.44 1.55 par:pas; +possédées posséder VER f p 42.76 82.23 0.14 0.14 par:pas; +possédés posséder VER m p 42.76 82.23 0.29 0.95 par:pas; +post_apocalyptique post_apocalyptique ADJ s 0.04 0.00 0.04 0.00 +post_empire post_empire NOM m s 0.00 0.07 0.00 0.07 +post_hypnotique post_hypnotique ADJ f s 0.02 0.00 0.02 0.00 +post_impressionnisme post_impressionnisme NOM m s 0.01 0.00 0.01 0.00 +post_it post_it NOM m 1.85 0.00 1.84 0.00 +post_moderne post_moderne ADJ s 0.14 0.00 0.14 0.00 +post_natal post_natal ADJ m s 0.18 0.07 0.03 0.07 +post_natal post_natal ADJ f s 0.18 0.07 0.16 0.00 +post_opératoire post_opératoire ADJ s 0.19 0.00 0.17 0.00 +post_opératoire post_opératoire ADJ m p 0.19 0.00 0.02 0.00 +post_partum post_partum NOM m 0.04 0.00 0.04 0.00 +post_production post_production NOM f s 0.14 0.00 0.14 0.00 +post_punk post_punk NOM s 0.00 0.14 0.00 0.14 +post_romantique post_romantique ADJ m s 0.00 0.07 0.00 0.07 +post_rupture post_rupture NOM f s 0.01 0.00 0.01 0.00 +post_scriptum post_scriptum NOM m 0.29 1.96 0.29 1.96 +post_surréaliste post_surréaliste ADJ p 0.00 0.07 0.00 0.07 +post_synchro post_synchro ADJ s 0.05 0.00 0.05 0.00 +post_traumatique post_traumatique ADJ s 0.82 0.07 0.79 0.00 +post_traumatique post_traumatique ADJ p 0.82 0.07 0.03 0.07 +post_victorien post_victorien ADJ m s 0.01 0.00 0.01 0.00 +post_zoo post_zoo NOM m s 0.01 0.00 0.01 0.00 +post_it post_it NOM m 1.85 0.00 0.01 0.00 +post_mortem post_mortem ADV 0.28 0.20 0.28 0.20 +post post ADV 0.69 0.41 0.69 0.41 +posta poster VER 9.54 10.47 0.07 0.95 ind:pas:3s; +postage postage NOM m s 0.01 0.00 0.01 0.00 +postai poster VER 9.54 10.47 0.01 0.14 ind:pas:1s; +postaient poster VER 9.54 10.47 0.00 0.07 ind:imp:3p; +postais poster VER 9.54 10.47 0.02 0.14 ind:imp:1s; +postait poster VER 9.54 10.47 0.01 0.20 ind:imp:3s; +postal postal ADJ m s 9.04 16.76 1.69 1.35 +postale postal ADJ f s 9.04 16.76 5.18 6.89 +postales postal ADJ f p 9.04 16.76 1.94 8.11 +postant poster VER 9.54 10.47 0.05 0.14 par:pre; +postaux postal ADJ m p 9.04 16.76 0.22 0.41 +postcombustion postcombustion NOM f s 0.12 0.00 0.12 0.00 +postcure postcure NOM f s 0.04 0.27 0.04 0.27 +postdater postdater VER 0.04 0.00 0.01 0.00 inf; +postdaté postdater VER m s 0.04 0.00 0.02 0.00 par:pas; +postdoctoral postdoctoral ADJ m s 0.01 0.00 0.01 0.00 +poste_clé poste_clé NOM s 0.02 0.00 0.02 0.00 +poste poste NOM s 82.87 90.68 72.64 73.58 +postent poster VER 9.54 10.47 0.15 0.07 ind:pre:3p; +poster poster VER 9.54 10.47 2.51 2.16 inf; +postera poster VER 9.54 10.47 0.09 0.00 ind:fut:3s; +posterai poster VER 9.54 10.47 0.40 0.27 ind:fut:1s; +posterait poster VER 9.54 10.47 0.01 0.07 cnd:pre:3s; +posteras poster VER 9.54 10.47 0.02 0.07 ind:fut:2s; +posterons poster VER 9.54 10.47 0.12 0.07 ind:fut:1p; +posters poster NOM m p 2.41 2.03 0.81 1.01 +postes_clé postes_clé NOM p 0.01 0.00 0.01 0.00 +postes poste NOM p 82.87 90.68 10.23 17.09 +postez poster VER 9.54 10.47 0.80 0.00 imp:pre:2p;ind:pre:2p; +postface postface NOM f s 0.00 0.27 0.00 0.20 +postfaces postface NOM f p 0.00 0.27 0.00 0.07 +posèrent poser VER 217.20 409.05 0.02 2.91 ind:pas:3p; +posthume posthume ADJ s 0.83 4.32 0.81 3.78 +posthumes posthume ADJ p 0.83 4.32 0.02 0.54 +postiche postiche NOM m s 0.48 0.74 0.33 0.34 +postiches postiche ADJ p 0.44 1.28 0.17 0.61 +postier postier NOM m s 0.66 2.03 0.58 0.54 +postiers postier NOM m p 0.66 2.03 0.04 1.08 +postillon postillon NOM m s 0.22 1.42 0.03 0.68 +postillonna postillonner VER 0.20 2.30 0.00 0.14 ind:pas:3s; +postillonnait postillonner VER 0.20 2.30 0.00 0.34 ind:imp:3s; +postillonnant postillonner VER 0.20 2.30 0.01 0.88 par:pre; +postillonne postillonner VER 0.20 2.30 0.05 0.47 ind:pre:1s;ind:pre:3s; +postillonnent postillonner VER 0.20 2.30 0.02 0.07 ind:pre:3p; +postillonner postillonner VER 0.20 2.30 0.00 0.34 inf; +postillonnes postillonner VER 0.20 2.30 0.04 0.00 ind:pre:2s; +postillonneur postillonneur NOM m s 0.01 0.14 0.01 0.00 +postillonneurs postillonneur NOM m p 0.01 0.14 0.00 0.14 +postillonnez postillonner VER 0.20 2.30 0.03 0.00 ind:pre:2p; +postillonné postillonner VER m s 0.20 2.30 0.04 0.07 par:pas; +postillons postillon NOM m p 0.22 1.42 0.19 0.74 +postière postier NOM f s 0.66 2.03 0.04 0.41 +postmoderne postmoderne ADJ s 0.08 0.07 0.08 0.07 +postmodernisme postmodernisme NOM m s 0.01 0.07 0.01 0.07 +postmoderniste postmoderniste ADJ s 0.01 0.00 0.01 0.00 +postnatal postnatal ADJ m s 0.02 0.00 0.01 0.00 +postnatale postnatal ADJ f s 0.02 0.00 0.01 0.00 +postopératoire postopératoire ADJ s 0.18 0.07 0.13 0.00 +postopératoires postopératoire ADJ m p 0.18 0.07 0.05 0.07 +postproduction postproduction NOM f s 0.02 0.00 0.02 0.00 +postsynchronisation postsynchronisation NOM f s 0.00 0.07 0.00 0.07 +posté poster VER m s 9.54 10.47 1.94 2.23 par:pas; +postée poster VER f s 9.54 10.47 0.68 0.74 par:pas; +postées poster VER f p 9.54 10.47 0.14 0.54 par:pas; +postulai postuler VER 2.44 1.49 0.00 0.07 ind:pas:1s; +postulaient postuler VER 2.44 1.49 0.00 0.07 ind:imp:3p; +postulait postuler VER 2.44 1.49 0.07 0.20 ind:imp:3s; +postulant postulant NOM m s 0.78 1.28 0.05 0.27 +postulante postulant NOM f s 0.78 1.28 0.01 0.14 +postulantes postulant NOM f p 0.78 1.28 0.04 0.27 +postulants postulant NOM m p 0.78 1.28 0.68 0.61 +postulat postulat NOM m s 0.17 0.95 0.14 0.61 +postulations postulation NOM f p 0.00 0.07 0.00 0.07 +postulats postulat NOM m p 0.17 0.95 0.03 0.34 +postule postuler VER 2.44 1.49 0.36 0.14 ind:pre:1s;ind:pre:3s; +postulent postuler VER 2.44 1.49 0.19 0.07 ind:pre:3p; +postuler postuler VER 2.44 1.49 0.88 0.54 inf; +postuleras postuler VER 2.44 1.49 0.01 0.00 ind:fut:2s; +postules postuler VER 2.44 1.49 0.04 0.00 ind:pre:2s; +postulé postuler VER m s 2.44 1.49 0.87 0.20 par:pas; +posturaux postural ADJ m p 0.01 0.00 0.01 0.00 +posture posture NOM f s 1.30 9.46 1.26 7.84 +postures posture NOM f p 1.30 9.46 0.04 1.62 +postérieur postérieur NOM m s 0.90 1.35 0.73 1.01 +postérieure postérieur ADJ f s 0.68 1.76 0.37 0.74 +postérieurement postérieurement ADV 0.03 0.27 0.03 0.27 +postérieures postérieur ADJ f p 0.68 1.76 0.06 0.27 +postérieurs postérieur NOM m p 0.90 1.35 0.16 0.34 +postérité postérité NOM f s 1.54 2.30 1.54 2.23 +postérités postérité NOM f p 1.54 2.30 0.00 0.07 +postés poster VER m p 9.54 10.47 0.70 0.95 par:pas; +posé poser VER m s 217.20 409.05 28.09 69.26 par:pas; +posée poser VER f s 217.20 409.05 2.67 34.80 par:pas; +posées poser VER f p 217.20 409.05 1.13 14.39 par:pas; +posément posément ADV 0.10 8.38 0.10 8.38 +posés poser VER m p 217.20 409.05 1.33 14.39 par:pas; +pot_au_feu pot_au_feu NOM m 0.90 0.88 0.90 0.88 +pot_bouille pot_bouille NOM m 0.01 0.00 0.01 0.00 +pot_de_vin pot_de_vin NOM m s 1.22 0.41 1.22 0.41 +pot_pourri pot_pourri NOM m s 0.49 0.68 0.34 0.68 +pât pâte NOM m s 16.48 24.73 0.10 0.07 +pot pot NOM m s 29.89 48.04 25.72 32.30 +pâtît pâtir VER 1.41 2.64 0.00 0.07 sub:imp:3s; +potable potable ADJ s 2.26 1.28 2.15 1.08 +potables potable ADJ p 2.26 1.28 0.11 0.20 +potache potache NOM m s 0.09 0.54 0.08 0.47 +potaches potache NOM m p 0.09 0.54 0.01 0.07 +potage potage NOM m s 3.28 6.22 3.07 6.01 +potager potager NOM m s 2.21 3.24 1.93 3.04 +potagers potager NOM m p 2.21 3.24 0.29 0.20 +potages potage NOM m p 3.28 6.22 0.21 0.20 +potagère potager ADJ f s 0.41 1.35 0.00 0.07 +potagères potager ADJ f p 0.41 1.35 0.14 0.14 +potard potard NOM m s 0.00 0.68 0.00 0.68 +potassa potasser VER 0.83 0.81 0.00 0.07 ind:pas:3s; +potassait potasser VER 0.83 0.81 0.02 0.14 ind:imp:3s; +potasse potasse NOM f s 0.21 0.27 0.21 0.27 +potassent potasser VER 0.83 0.81 0.00 0.07 ind:pre:3p; +potasser potasser VER 0.83 0.81 0.17 0.14 inf; +potasserai potasser VER 0.83 0.81 0.00 0.07 ind:fut:1s; +potasses potasser VER 0.83 0.81 0.11 0.00 ind:pre:2s; +potassez potasser VER 0.83 0.81 0.01 0.07 imp:pre:2p; +potassium potassium NOM m s 1.68 0.47 1.68 0.47 +potassé potasser VER m s 0.83 0.81 0.37 0.14 par:pas; +pâte pâte NOM f s 16.48 24.73 7.04 18.45 +pote pote NOM m s 84.92 36.35 65.03 22.97 +poteau poteau NOM m s 5.17 13.04 3.88 7.70 +poteaux poteau NOM m p 5.17 13.04 1.28 5.34 +potelé potelé ADJ m s 0.79 3.38 0.33 0.54 +potelée potelé ADJ f s 0.79 3.38 0.38 1.22 +potelées potelé ADJ f p 0.79 3.38 0.06 1.15 +potelés potelé ADJ m p 0.79 3.38 0.02 0.47 +potence potence NOM f s 3.40 2.03 3.04 1.35 +potences potence NOM f p 3.40 2.03 0.35 0.68 +potencée potencé ADJ f s 0.00 0.07 0.00 0.07 +potentat potentat NOM m s 0.12 0.41 0.10 0.34 +potentats potentat NOM m p 0.12 0.41 0.02 0.07 +potentialisation potentialisation NOM f s 0.01 0.00 0.01 0.00 +potentialiser potentialiser VER 0.01 0.00 0.01 0.00 inf; +potentialité potentialité NOM f s 0.38 0.07 0.38 0.07 +potentiel potentiel NOM m s 6.04 1.01 5.94 0.95 +potentielle potentiel ADJ f s 5.69 0.95 0.88 0.20 +potentiellement potentiellement ADV 1.12 0.14 1.12 0.14 +potentielles potentiel ADJ f p 5.69 0.95 0.54 0.07 +potentiels potentiel ADJ m p 5.69 0.95 1.96 0.41 +potentiomètre potentiomètre NOM m s 0.14 0.20 0.14 0.20 +poter poter VER 0.02 0.00 0.02 0.00 inf; +poterie poterie NOM f s 0.95 4.32 0.78 1.89 +poteries poterie NOM f p 0.95 4.32 0.17 2.43 +poterne poterne NOM f s 0.02 2.03 0.02 1.76 +poternes poterne NOM f p 0.02 2.03 0.00 0.27 +pâtes pâte NOM f p 16.48 24.73 9.35 6.22 +potes pote NOM m p 84.92 36.35 19.89 13.38 +pâteuse pâteux ADJ f s 0.08 5.07 0.06 2.84 +pâteusement pâteusement ADV 0.00 0.20 0.00 0.20 +pâteuses pâteux ADJ f p 0.08 5.07 0.00 0.27 +pâteux pâteux ADJ m 0.08 5.07 0.02 1.96 +poème poème NOM m s 27.03 31.22 15.98 15.95 +poèmes poème NOM m p 27.03 31.22 11.05 15.27 +poète poète NOM m s 22.63 35.95 16.98 23.45 +poètes poète NOM m p 22.63 35.95 5.17 11.55 +pâti pâtir VER m s 1.41 2.64 0.18 0.61 par:pas; +potiche potiche NOM f s 0.64 1.15 0.55 0.61 +potiches potiche NOM f p 0.64 1.15 0.09 0.54 +potier potier NOM m s 0.47 0.68 0.26 0.61 +potiers potier NOM m p 0.47 0.68 0.20 0.07 +potimarron potimarron NOM m s 0.01 0.00 0.01 0.00 +potin potin NOM m s 2.02 3.85 0.61 1.55 +potinais potiner VER 0.01 0.81 0.00 0.07 ind:imp:1s; +potine potiner VER 0.01 0.81 0.01 0.20 ind:pre:3s; +potines potiner VER 0.01 0.81 0.00 0.54 ind:pre:2s; +potins potin NOM m p 2.02 3.85 1.41 2.30 +potion potion NOM f s 11.59 2.97 10.01 2.30 +potions potion NOM f p 11.59 2.97 1.58 0.68 +pâtir pâtir VER 1.41 2.64 0.56 1.08 inf; +pâtira pâtir VER 1.41 2.64 0.28 0.14 ind:fut:3s; +pâtiraient pâtir VER 1.41 2.64 0.01 0.07 cnd:pre:3p; +pâtirait pâtir VER 1.41 2.64 0.16 0.07 cnd:pre:3s; +pâtirent pâtir VER 1.41 2.64 0.01 0.07 ind:pas:3p; +potiron potiron NOM m s 1.08 0.95 0.99 0.61 +potirons potiron NOM m p 1.08 0.95 0.09 0.34 +pâtiront pâtir VER 1.41 2.64 0.04 0.00 ind:fut:3p; +pâtis pâtis NOM m 0.01 0.54 0.01 0.54 +pâtissaient pâtisser VER 0.38 0.88 0.00 0.07 ind:imp:3p; +pâtissais pâtisser VER 0.38 0.88 0.00 0.14 ind:imp:1s; +pâtissait pâtisser VER 0.38 0.88 0.00 0.14 ind:imp:3s; +pâtisse pâtisser VER 0.38 0.88 0.07 0.14 imp:pre:2s;ind:pre:3s; +pâtissent pâtisser VER 0.38 0.88 0.29 0.27 ind:pre:3p; +pâtisserie pâtisserie NOM f s 5.10 13.11 4.20 9.32 +pâtisseries pâtisserie NOM f p 5.10 13.11 0.90 3.78 +pâtisses pâtisser VER 0.38 0.88 0.01 0.07 ind:pre:2s; +pâtissez pâtisser VER 0.38 0.88 0.00 0.07 ind:pre:2p; +pâtissier pâtissier NOM m s 2.37 8.51 1.81 6.49 +pâtissiers pâtissier NOM m p 2.37 8.51 0.16 1.15 +pâtissière pâtissier NOM f s 2.37 8.51 0.41 0.88 +pâtissons pâtir VER 1.41 2.64 0.00 0.14 ind:pre:1p; +pâtit pâtir VER 1.41 2.64 0.17 0.34 ind:pre:3s;ind:pas:3s; +potière potier NOM f s 0.47 0.68 0.01 0.00 +potlatch potlatch NOM m s 0.00 0.20 0.00 0.20 +poto_poto poto_poto NOM m s 0.00 0.14 0.00 0.14 +pâton pâton NOM m s 0.00 0.20 0.00 0.07 +pâtons pâton NOM m p 0.00 0.20 0.00 0.14 +potos potos NOM m 0.00 0.07 0.00 0.07 +pâtour pâtour NOM m s 0.00 0.07 0.00 0.07 +pâtre pâtre NOM m s 0.11 1.62 0.11 1.15 +pâtres pâtre NOM m p 0.11 1.62 0.00 0.47 +potron_minet potron_minet NOM m s 0.03 0.27 0.03 0.27 +pots_de_vin pots_de_vin NOM m p 1.98 0.34 1.98 0.34 +pot_pourri pot_pourri NOM m p 0.49 0.68 0.15 0.00 +pots pot NOM m p 29.89 48.04 4.17 15.74 +pâté pâté NOM m s 7.18 16.55 5.22 11.01 +pâtée pâtée NOM f s 1.78 2.97 1.78 2.77 +potée potée NOM f s 0.04 1.35 0.04 0.95 +pâtées pâtée NOM f p 1.78 2.97 0.00 0.20 +potées potée NOM f p 0.04 1.35 0.00 0.41 +pâturage pâturage NOM m s 1.98 4.53 0.69 0.81 +pâturages pâturage NOM m p 1.98 4.53 1.29 3.72 +pâturaient pâturer VER 0.03 0.74 0.00 0.20 ind:imp:3p; +pâture pâture NOM f s 1.94 3.31 1.73 2.77 +pâturent pâturer VER 0.03 0.74 0.00 0.20 ind:pre:3p; +pâturer pâturer VER 0.03 0.74 0.01 0.34 inf; +pâtures pâture NOM f p 1.94 3.31 0.22 0.54 +pâturin pâturin NOM m s 0.02 0.07 0.02 0.07 +pâturé pâturer VER m s 0.03 0.74 0.01 0.00 par:pas; +pâtés pâté NOM m p 7.18 16.55 1.96 5.54 +pou pou NOM m s 10.41 8.51 1.92 1.42 +pouacre pouacre NOM m s 0.01 0.07 0.01 0.07 +pouah pouah ONO 0.89 1.82 0.89 1.82 +poubelle poubelle NOM f s 21.34 22.91 14.85 10.27 +poubelles poubelle NOM f p 21.34 22.91 6.49 12.64 +pouce_pied pouce_pied NOM m s 0.01 0.00 0.01 0.00 +pouce pouce ONO 0.50 0.54 0.50 0.54 +pouces pouce NOM m p 15.72 35.34 3.83 5.47 +poucet poucet NOM m s 0.84 1.08 0.84 0.95 +poucets poucet NOM m p 0.84 1.08 0.00 0.14 +poucette poucettes NOM f s 1.18 0.00 0.76 0.00 +poucettes poucettes NOM f p 1.18 0.00 0.41 0.00 +pouding pouding NOM m s 0.16 0.07 0.16 0.07 +poudingue poudingue NOM m s 0.00 0.07 0.00 0.07 +poudra poudrer VER 0.95 4.32 0.00 0.14 ind:pas:3s; +poudrage poudrage NOM m s 0.01 0.07 0.01 0.07 +poudraient poudrer VER 0.95 4.32 0.00 0.07 ind:imp:3p; +poudrait poudrer VER 0.95 4.32 0.00 0.34 ind:imp:3s; +poudrant poudrer VER 0.95 4.32 0.01 0.34 par:pre; +poudre poudre NOM f s 23.11 30.27 22.09 27.57 +poudrent poudrer VER 0.95 4.32 0.14 0.00 ind:pre:3p; +poudrer poudrer VER 0.95 4.32 0.42 0.41 inf; +poudres poudre NOM f p 23.11 30.27 1.02 2.70 +poudrette poudrette NOM f s 0.00 0.07 0.00 0.07 +poudreuse poudreux NOM f s 0.26 0.00 0.26 0.00 +poudreuses poudreux ADJ f p 0.07 3.18 0.00 0.47 +poudreux poudreux ADJ m 0.07 3.18 0.02 1.62 +poudrier poudrier NOM m s 0.25 1.42 0.25 1.35 +poudriers poudrier NOM m p 0.25 1.42 0.00 0.07 +poudrière poudrière NOM f s 0.25 0.61 0.25 0.61 +poudroie poudroyer VER 0.00 0.34 0.00 0.20 ind:pre:3s; +poudroiement poudroiement NOM m s 0.00 1.15 0.00 1.08 +poudroiements poudroiement NOM m p 0.00 1.15 0.00 0.07 +poudroyaient poudroyer VER 0.00 0.34 0.00 0.07 ind:imp:3p; +poudroyait poudroyer VER 0.00 0.34 0.00 0.07 ind:imp:3s; +poudroyante poudroyant ADJ f s 0.00 0.27 0.00 0.20 +poudroyantes poudroyant ADJ f p 0.00 0.27 0.00 0.07 +poudré poudrer VER m s 0.95 4.32 0.19 0.81 par:pas; +poudrée poudré ADJ f s 0.09 2.30 0.02 0.74 +poudrées poudré ADJ f p 0.09 2.30 0.02 0.47 +poudrés poudré ADJ m p 0.09 2.30 0.02 0.47 +pouf pouf ONO 0.53 0.20 0.53 0.20 +pouffa pouffer VER 0.98 9.12 0.00 1.69 ind:pas:3s; +pouffaient pouffer VER 0.98 9.12 0.00 0.74 ind:imp:3p; +pouffait pouffer VER 0.98 9.12 0.11 0.74 ind:imp:3s; +pouffant pouffer VER 0.98 9.12 0.00 1.22 par:pre; +pouffante pouffant ADJ f s 0.00 0.27 0.00 0.14 +pouffantes pouffant ADJ f p 0.00 0.27 0.00 0.07 +pouffe pouffer VER 0.98 9.12 0.41 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pouffement pouffement NOM m s 0.00 0.14 0.00 0.07 +pouffements pouffement NOM m p 0.00 0.14 0.00 0.07 +pouffent pouffer VER 0.98 9.12 0.27 0.27 ind:pre:3p; +pouffer pouffer VER 0.98 9.12 0.05 1.35 inf; +poufferais pouffer VER 0.98 9.12 0.00 0.14 cnd:pre:1s; +poufferait pouffer VER 0.98 9.12 0.00 0.07 cnd:pre:3s; +pouffes pouffer VER 0.98 9.12 0.14 0.00 ind:pre:2s; +pouffiasse pouffiasse NOM f s 3.09 2.09 2.73 1.35 +pouffiasses pouffiasse NOM f p 3.09 2.09 0.36 0.74 +pouffions pouffer VER 0.98 9.12 0.00 0.07 ind:imp:1p; +pouffons pouffer VER 0.98 9.12 0.00 0.14 ind:pre:1p; +pouffèrent pouffer VER 0.98 9.12 0.00 0.41 ind:pas:3p; +pouffé pouffer VER m s 0.98 9.12 0.00 0.34 par:pas; +poufiasse poufiasse NOM f s 1.64 0.34 1.50 0.20 +poufiasses poufiasse NOM f p 1.64 0.34 0.14 0.14 +poufs pouf NOM m p 0.83 5.07 0.07 1.15 +pouh pouh ONO 0.28 0.14 0.28 0.14 +pouic pouic ONO 0.04 0.41 0.04 0.41 +pouille pouille NOM f s 0.01 0.07 0.01 0.00 +pouillerie pouillerie NOM f s 0.00 0.54 0.00 0.41 +pouilleries pouillerie NOM f p 0.00 0.54 0.00 0.14 +pouilles pouille NOM f p 0.01 0.07 0.00 0.07 +pouilleuse pouilleux ADJ f s 0.61 1.22 0.14 0.27 +pouilleuses pouilleux ADJ f p 0.61 1.22 0.00 0.07 +pouilleux pouilleux NOM m 1.27 0.27 1.25 0.27 +pouillot pouillot NOM m s 0.01 0.07 0.01 0.00 +pouillots pouillot NOM m p 0.01 0.07 0.00 0.07 +pouillés pouillé NOM m p 0.01 0.00 0.01 0.00 +pouilly pouilly NOM m s 0.01 0.34 0.01 0.34 +poujadisme poujadisme NOM m s 0.00 0.07 0.00 0.07 +poujadiste poujadiste NOM s 0.10 0.20 0.10 0.14 +poujadistes poujadiste NOM p 0.10 0.20 0.00 0.07 +poulaga poulaga NOM m s 0.14 2.43 0.14 1.22 +poulagas poulaga NOM m p 0.14 2.43 0.00 1.22 +poulaille poulaille NOM f s 0.26 0.41 0.26 0.41 +poulailler poulailler NOM m s 2.45 3.51 2.43 3.04 +poulaillers poulailler NOM m p 2.45 3.51 0.02 0.47 +poulain poulain NOM m s 3.46 3.78 3.20 3.04 +poulaine poulain NOM f s 3.46 3.78 0.00 0.07 +poulaines poulain NOM f p 3.46 3.78 0.00 0.07 +poulains poulain NOM m p 3.46 3.78 0.26 0.61 +poularde poularde NOM f s 0.16 0.54 0.16 0.27 +poulardes poularde NOM f p 0.16 0.54 0.00 0.27 +poulardin poulardin NOM m s 0.00 0.34 0.00 0.20 +poulardins poulardin NOM m p 0.00 0.34 0.00 0.14 +poulbot poulbot NOM m s 0.00 0.54 0.00 0.20 +poulbots poulbot NOM m p 0.00 0.54 0.00 0.34 +poule poule NOM f s 36.70 31.82 23.50 16.69 +poêle poêle NOM s 5.12 19.93 4.58 17.84 +poules poule NOM f p 36.70 31.82 13.21 15.14 +poêles poêle NOM p 5.12 19.93 0.55 2.09 +poulet poulet NOM m s 41.25 25.34 32.33 14.53 +poulets poulet NOM m p 41.25 25.34 8.93 10.81 +poulette poulette NOM f s 3.41 1.15 2.71 0.95 +poulettes poulette NOM f p 3.41 1.15 0.70 0.20 +pouliche pouliche NOM f s 1.10 2.09 0.90 1.55 +pouliches pouliche NOM f p 1.10 2.09 0.20 0.54 +poulie poulie NOM f s 0.83 3.11 0.57 1.49 +poulies poulie NOM f p 0.83 3.11 0.27 1.62 +poulinière poulinière ADJ f s 0.14 0.07 0.14 0.07 +poêlon poêlon NOM m s 0.16 0.41 0.16 0.41 +poulot poulot NOM m s 0.00 0.20 0.00 0.07 +poulots poulot NOM m p 0.00 0.20 0.00 0.14 +poulottant poulotter VER 0.00 0.14 0.00 0.07 par:pre; +poulotter poulotter VER 0.00 0.14 0.00 0.07 inf; +poulpe poulpe NOM m s 1.77 3.11 1.48 1.22 +poulpes poulpe NOM m p 1.77 3.11 0.29 1.89 +pouls pouls NOM m 15.64 5.54 15.64 5.54 +poêlées poêler VER f p 0.10 0.14 0.10 0.07 par:pas; +poumon poumon NOM m s 16.65 21.55 4.55 3.58 +poumons poumon NOM m p 16.65 21.55 12.09 17.97 +pound pound NOM m s 0.20 0.07 0.03 0.00 +pounds pound NOM m p 0.20 0.07 0.16 0.07 +poupard poupard NOM m s 0.00 0.68 0.00 0.47 +poupards poupard NOM m p 0.00 0.68 0.00 0.20 +poupe poupe NOM f s 1.30 2.97 1.30 2.97 +poupin poupin ADJ m s 0.00 1.55 0.00 1.35 +poupine poupin ADJ f s 0.00 1.55 0.00 0.20 +poupon poupon NOM m s 0.33 2.77 0.33 2.30 +pouponnage pouponnage NOM m s 0.04 0.07 0.04 0.07 +pouponne pouponner VER 0.21 0.54 0.03 0.00 ind:pre:3s; +pouponnent pouponner VER 0.21 0.54 0.00 0.07 ind:pre:3p; +pouponner pouponner VER 0.21 0.54 0.14 0.47 inf; +pouponnière pouponnière NOM f s 0.23 0.20 0.20 0.14 +pouponnières pouponnière NOM f p 0.23 0.20 0.03 0.07 +pouponné pouponner VER m s 0.21 0.54 0.04 0.00 par:pas; +poupons poupon NOM m p 0.33 2.77 0.00 0.47 +poupoule poupoule NOM f s 0.10 0.74 0.10 0.74 +poupée poupée NOM f s 27.59 27.57 22.05 18.58 +poupées poupée NOM f p 27.59 27.57 5.54 8.99 +pour_cent pour_cent NOM m 0.56 0.00 0.56 0.00 +pour pour PRE 7078.55 6198.24 7078.55 6198.24 +pourboire pourboire NOM m s 8.77 8.24 6.00 5.20 +pourboires pourboire NOM m p 8.77 8.24 2.77 3.04 +pourceau pourceau NOM m s 0.74 0.95 0.30 0.34 +pourceaux pourceau NOM m p 0.74 0.95 0.44 0.61 +pourcent pourcent NOM m s 0.45 0.00 0.35 0.00 +pourcentage pourcentage NOM m s 4.75 2.43 3.83 1.76 +pourcentages pourcentage NOM m p 4.75 2.43 0.93 0.68 +pourcents pourcent NOM m p 0.45 0.00 0.10 0.00 +pourchas pourchas NOM m 0.00 0.27 0.00 0.27 +pourchassa pourchasser VER 4.66 4.93 0.01 0.34 ind:pas:3s; +pourchassaient pourchasser VER 4.66 4.93 0.08 0.47 ind:imp:3p; +pourchassais pourchasser VER 4.66 4.93 0.07 0.07 ind:imp:1s;ind:imp:2s; +pourchassait pourchasser VER 4.66 4.93 0.14 0.81 ind:imp:3s; +pourchassant pourchasser VER 4.66 4.93 0.14 0.41 par:pre; +pourchasse pourchasser VER 4.66 4.93 0.65 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pourchassent pourchasser VER 4.66 4.93 0.34 0.27 ind:pre:3p; +pourchasser pourchasser VER 4.66 4.93 0.82 0.27 inf; +pourchassera pourchasser VER 4.66 4.93 0.16 0.00 ind:fut:3s; +pourchasserai pourchasser VER 4.66 4.93 0.02 0.00 ind:fut:1s; +pourchasseraient pourchasser VER 4.66 4.93 0.02 0.00 cnd:pre:3p; +pourchasserait pourchasser VER 4.66 4.93 0.03 0.00 cnd:pre:3s; +pourchasserons pourchasser VER 4.66 4.93 0.02 0.00 ind:fut:1p; +pourchasseront pourchasser VER 4.66 4.93 0.09 0.00 ind:fut:3p; +pourchasseur pourchasseur NOM m s 0.00 0.07 0.00 0.07 +pourchassez pourchasser VER 4.66 4.93 0.31 0.00 imp:pre:2p;ind:pre:2p; +pourchassons pourchasser VER 4.66 4.93 0.07 0.00 imp:pre:1p;ind:pre:1p; +pourchassèrent pourchasser VER 4.66 4.93 0.00 0.07 ind:pas:3p; +pourchassé pourchasser VER m s 4.66 4.93 1.23 0.81 par:pas; +pourchassée pourchasser VER f s 4.66 4.93 0.26 0.20 par:pas; +pourchassées pourchasser VER f p 4.66 4.93 0.01 0.14 par:pas; +pourchassés pourchasser VER m p 4.66 4.93 0.17 0.81 par:pas; +pourcif pourcif NOM m s 0.00 0.07 0.00 0.07 +pourfendait pourfendre VER 0.10 1.01 0.00 0.07 ind:imp:3s; +pourfendant pourfendre VER 0.10 1.01 0.00 0.20 par:pre; +pourfende pourfendre VER 0.10 1.01 0.00 0.07 sub:pre:3s; +pourfendeur pourfendeur NOM m s 0.16 0.14 0.16 0.14 +pourfendions pourfendre VER 0.10 1.01 0.00 0.07 ind:imp:1p; +pourfendre pourfendre VER 0.10 1.01 0.04 0.54 inf; +pourfends pourfendre VER 0.10 1.01 0.02 0.00 imp:pre:2s;ind:pre:1s; +pourfendu pourfendre VER m s 0.10 1.01 0.04 0.07 par:pas; +pourim pourim NOM m s 0.68 0.27 0.68 0.27 +pourliche pourliche NOM m s 0.07 1.76 0.06 0.81 +pourliches pourliche NOM m p 0.07 1.76 0.01 0.95 +pourlèche pourlécher VER 0.10 1.35 0.10 0.27 imp:pre:2s;ind:pre:3s; +pourlèchent pourlécher VER 0.10 1.35 0.00 0.20 ind:pre:3p; +pourléchaient pourlécher VER 0.10 1.35 0.00 0.20 ind:imp:3p; +pourléchait pourlécher VER 0.10 1.35 0.00 0.20 ind:imp:3s; +pourléchant pourlécher VER 0.10 1.35 0.00 0.27 par:pre; +pourlécher pourlécher VER 0.10 1.35 0.00 0.14 inf; +pourléchée pourlécher VER f s 0.10 1.35 0.00 0.07 par:pas; +pourparler pourparler NOM m s 0.15 0.07 0.15 0.07 +pourparlers pourparlers NOM m p 0.96 2.23 0.96 2.23 +pourpier pourpier NOM m s 0.00 0.20 0.00 0.14 +pourpiers pourpier NOM m p 0.00 0.20 0.00 0.07 +pourpoint pourpoint NOM m s 0.59 1.49 0.59 1.15 +pourpoints pourpoint NOM m p 0.59 1.49 0.00 0.34 +pourpre pourpre ADJ s 2.25 6.82 1.35 4.73 +pourpres pourpre ADJ p 2.25 6.82 0.90 2.09 +pourpré pourpré ADJ m s 0.01 0.14 0.01 0.00 +pourprée pourpré ADJ f s 0.01 0.14 0.00 0.14 +pourprées pourprer VER f p 0.00 0.14 0.00 0.07 par:pas; +pourquoi pourquoi CON 655.75 297.64 655.75 297.64 +pourra pouvoir VER 5524.52 2659.80 85.18 37.36 ind:fut:3s; +pourrai pouvoir VER 5524.52 2659.80 46.71 23.11 ind:fut:1s; +pourraient pouvoir VER 5524.52 2659.80 32.66 26.62 cnd:pre:3p; +pourrais pouvoir VER 5524.52 2659.80 247.90 64.93 cnd:pre:1s;cnd:pre:2s; +pourrait pouvoir VER 5524.52 2659.80 313.54 159.32 cnd:pre:3s; +pourras pouvoir VER 5524.52 2659.80 44.35 10.00 ind:fut:2s; +pourrez pouvoir VER 5524.52 2659.80 38.28 11.08 ind:fut:2p; +pourri pourri ADJ m s 18.09 22.84 9.23 8.18 +pourrie pourri ADJ f s 18.09 22.84 4.95 6.89 +pourries pourri ADJ f p 18.09 22.84 1.49 4.39 +pourriez pouvoir VER 5524.52 2659.80 82.51 12.09 cnd:pre:2p; +pourrions pouvoir VER 5524.52 2659.80 24.56 12.23 cnd:pre:1p; +pourrir pourrir VER 22.64 21.89 5.79 5.95 inf; +pourrira pourrir VER 22.64 21.89 0.25 0.27 ind:fut:3s; +pourrirai pourrir VER 22.64 21.89 0.30 0.07 ind:fut:1s; +pourrirait pourrir VER 22.64 21.89 0.03 0.07 cnd:pre:3s; +pourriras pourrir VER 22.64 21.89 0.31 0.07 ind:fut:2s; +pourrirent pourrir VER 22.64 21.89 0.00 0.20 ind:pas:3p; +pourrirez pourrir VER 22.64 21.89 0.22 0.00 ind:fut:2p; +pourririez pourrir VER 22.64 21.89 0.14 0.00 cnd:pre:2p; +pourrirons pourrir VER 22.64 21.89 0.02 0.00 ind:fut:1p; +pourriront pourrir VER 22.64 21.89 0.17 0.27 ind:fut:3p; +pourris pourri ADJ m p 18.09 22.84 2.42 3.38 +pourrissaient pourrir VER 22.64 21.89 0.00 1.49 ind:imp:3p; +pourrissais pourrir VER 22.64 21.89 0.02 0.07 ind:imp:1s; +pourrissait pourrir VER 22.64 21.89 0.18 1.22 ind:imp:3s; +pourrissant pourrissant ADJ m s 0.26 2.30 0.06 0.81 +pourrissante pourrissant ADJ f s 0.26 2.30 0.14 0.34 +pourrissantes pourrissant ADJ f p 0.26 2.30 0.04 0.47 +pourrissants pourrissant ADJ m p 0.26 2.30 0.02 0.68 +pourrisse pourrir VER 22.64 21.89 1.23 0.20 sub:pre:1s;sub:pre:3s; +pourrissement pourrissement NOM m s 0.46 0.88 0.46 0.88 +pourrissent pourrir VER 22.64 21.89 0.84 1.42 ind:pre:3p; +pourrisseur pourrisseur ADJ m s 0.00 0.07 0.00 0.07 +pourrissez pourrir VER 22.64 21.89 0.20 0.00 imp:pre:2p;ind:pre:2p; +pourrissoir pourrissoir NOM m s 0.00 0.41 0.00 0.41 +pourrissons pourrir VER 22.64 21.89 0.03 0.00 imp:pre:1p;ind:pre:1p; +pourrit pourrir VER 22.64 21.89 2.13 1.62 ind:pre:3s;ind:pas:3s; +pourriture pourriture NOM f s 4.36 6.89 3.93 6.55 +pourritures pourriture NOM f p 4.36 6.89 0.43 0.34 +pourrons pouvoir VER 5524.52 2659.80 15.15 6.08 ind:fut:1p; +pourront pouvoir VER 5524.52 2659.80 12.79 11.35 ind:fut:3p; +poursuis poursuivre VER 64.84 106.42 4.58 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +poursuit poursuivre VER 64.84 106.42 10.56 13.45 ind:pre:3s; +poursuite poursuite NOM f s 11.03 15.47 6.92 12.36 +poursuites poursuite NOM f p 11.03 15.47 4.11 3.11 +poursuivîmes poursuivre VER 64.84 106.42 0.01 0.07 ind:pas:1p; +poursuivît poursuivre VER 64.84 106.42 0.00 0.14 sub:imp:3s; +poursuivaient poursuivre VER 64.84 106.42 0.68 5.81 ind:imp:3p; +poursuivais poursuivre VER 64.84 106.42 0.34 0.95 ind:imp:1s;ind:imp:2s; +poursuivait poursuivre VER 64.84 106.42 2.43 15.41 ind:imp:3s; +poursuivant poursuivre VER 64.84 106.42 0.90 5.14 par:pre; +poursuivante poursuivant NOM f s 0.74 2.43 0.01 0.07 +poursuivants poursuivant NOM m p 0.74 2.43 0.41 1.82 +poursuive poursuivre VER 64.84 106.42 0.63 0.68 sub:pre:1s;sub:pre:3s; +poursuivent poursuivre VER 64.84 106.42 2.77 3.11 ind:pre:3p; +poursuives poursuivre VER 64.84 106.42 0.04 0.00 sub:pre:2s; +poursuiveurs poursuiveur NOM m p 0.01 0.00 0.01 0.00 +poursuivez poursuivre VER 64.84 106.42 4.81 0.20 imp:pre:2p;ind:pre:2p; +poursuivi poursuivre VER m s 64.84 106.42 6.88 9.59 par:pas; +poursuivie poursuivre VER f s 64.84 106.42 2.40 2.91 par:pas; +poursuivies poursuivre VER f p 64.84 106.42 0.01 0.47 par:pas; +poursuiviez poursuivre VER 64.84 106.42 0.32 0.07 ind:imp:2p; +poursuivions poursuivre VER 64.84 106.42 0.11 0.68 ind:imp:1p; +poursuivirent poursuivre VER 64.84 106.42 0.26 1.35 ind:pas:3p; +poursuivis poursuivre VER m p 64.84 106.42 1.62 3.65 ind:pas:1s;par:pas; +poursuivit poursuivre VER 64.84 106.42 0.72 15.14 ind:pas:3s; +poursuivons poursuivre VER 64.84 106.42 2.50 0.88 imp:pre:1p;ind:pre:1p; +poursuivra poursuivre VER 64.84 106.42 1.45 0.68 ind:fut:3s; +poursuivrai poursuivre VER 64.84 106.42 1.08 0.20 ind:fut:1s; +poursuivraient poursuivre VER 64.84 106.42 0.17 0.20 cnd:pre:3p; +poursuivrais poursuivre VER 64.84 106.42 0.31 0.34 cnd:pre:1s;cnd:pre:2s; +poursuivrait poursuivre VER 64.84 106.42 0.43 1.08 cnd:pre:3s; +poursuivras poursuivre VER 64.84 106.42 0.07 0.00 ind:fut:2s; +poursuivre poursuivre VER 64.84 106.42 17.35 22.23 imp:pre:2p;ind:pre:2p;inf; +poursuivrez poursuivre VER 64.84 106.42 0.05 0.07 ind:fut:2p; +poursuivrions poursuivre VER 64.84 106.42 0.01 0.14 cnd:pre:1p; +poursuivrons poursuivre VER 64.84 106.42 0.96 0.14 ind:fut:1p; +poursuivront poursuivre VER 64.84 106.42 0.36 0.07 ind:fut:3p; +pourtant pourtant ADV 95.80 375.68 95.80 375.68 +pourtour pourtour NOM m s 0.09 2.84 0.09 2.57 +pourtours pourtour NOM m p 0.09 2.84 0.00 0.27 +pourvoi pourvoi NOM m s 0.31 0.07 0.31 0.00 +pourvoie pourvoir VER 21.48 33.78 0.02 0.00 sub:pre:3s; +pourvoient pourvoir VER 21.48 33.78 0.15 0.07 ind:pre:3p; +pourvoir pourvoir VER 21.48 33.78 1.25 2.57 inf; +pourvoira pourvoir VER 21.48 33.78 0.32 0.14 ind:fut:3s; +pourvoirai pourvoir VER 21.48 33.78 0.14 0.00 ind:fut:1s; +pourvoiraient pourvoir VER 21.48 33.78 0.00 0.07 cnd:pre:3p; +pourvoirait pourvoir VER 21.48 33.78 0.04 0.07 cnd:pre:3s; +pourvoirons pourvoir VER 21.48 33.78 0.00 0.07 ind:fut:1p; +pourvoiront pourvoir VER 21.48 33.78 0.01 0.07 ind:fut:3p; +pourvois pourvoir VER 21.48 33.78 0.04 0.00 ind:pre:1s;ind:pre:2s; +pourvoit pourvoir VER 21.48 33.78 0.45 0.14 ind:pre:3s; +pourvoyaient pourvoir VER 21.48 33.78 0.10 0.14 ind:imp:3p; +pourvoyait pourvoir VER 21.48 33.78 0.01 0.34 ind:imp:3s; +pourvoyant pourvoir VER 21.48 33.78 0.01 0.07 par:pre; +pourvoyeur pourvoyeur NOM m s 0.52 1.35 0.47 0.74 +pourvoyeurs pourvoyeur NOM m p 0.52 1.35 0.04 0.41 +pourvoyeuse pourvoyeur NOM f s 0.52 1.35 0.01 0.20 +pourvoyons pourvoir VER 21.48 33.78 0.01 0.00 ind:pre:1p; +pourvu pourvoir VER m s 21.48 33.78 18.50 24.59 par:pas; +pourvue pourvoir VER f s 21.48 33.78 0.24 1.89 par:pas; +pourvues pourvoir VER f p 21.48 33.78 0.02 1.15 par:pas; +pourvus pourvoir VER m p 21.48 33.78 0.18 2.30 par:pas; +pourvut pourvoir VER 21.48 33.78 0.00 0.14 ind:pas:3s; +poésie poésie NOM f s 19.07 21.89 17.56 19.86 +poésies poésie NOM f p 19.07 21.89 1.52 2.03 +poussa pousser VER 125.61 288.92 0.98 37.64 ind:pas:3s; +poussah poussah NOM m s 0.00 0.27 0.00 0.27 +poussai pousser VER 125.61 288.92 0.02 4.26 ind:pas:1s; +poussaient pousser VER 125.61 288.92 0.45 12.91 ind:imp:3p; +poussais pousser VER 125.61 288.92 0.46 2.30 ind:imp:1s;ind:imp:2s; +poussait pousser VER 125.61 288.92 2.59 33.78 ind:imp:3s; +poussant pousser VER 125.61 288.92 1.83 30.61 par:pre; +poussas pousser VER 125.61 288.92 0.00 0.07 ind:pas:2s; +pousse_au_crime pousse_au_crime NOM m 0.02 0.07 0.02 0.07 +pousse_café pousse_café NOM m 0.13 0.68 0.13 0.68 +pousse_cailloux pousse_cailloux NOM m s 0.00 0.07 0.00 0.07 +pousse_pousse pousse_pousse NOM m 1.43 0.41 1.43 0.41 +pousse pousser VER 125.61 288.92 29.60 41.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +poussent pousser VER 125.61 288.92 5.17 10.00 ind:pre:3p;sub:pre:3p; +pousser pousser VER 125.61 288.92 27.51 45.68 inf; +poussera pousser VER 125.61 288.92 1.25 1.01 ind:fut:3s; +pousserai pousser VER 125.61 288.92 0.50 0.20 ind:fut:1s; +pousseraient pousser VER 125.61 288.92 0.19 0.68 cnd:pre:3p; +pousserais pousser VER 125.61 288.92 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +pousserait pousser VER 125.61 288.92 0.35 2.09 cnd:pre:3s; +pousseras pousser VER 125.61 288.92 0.04 0.14 ind:fut:2s; +pousserez pousser VER 125.61 288.92 0.04 0.07 ind:fut:2p; +pousseriez pousser VER 125.61 288.92 0.02 0.00 cnd:pre:2p; +pousserions pousser VER 125.61 288.92 0.01 0.07 cnd:pre:1p; +pousserons pousser VER 125.61 288.92 0.09 0.00 ind:fut:1p; +pousseront pousser VER 125.61 288.92 0.36 0.14 ind:fut:3p; +pousses pousser VER 125.61 288.92 5.63 1.35 ind:pre:2s; +poussette poussette NOM f s 1.96 2.43 1.83 1.96 +poussettes poussette NOM f p 1.96 2.43 0.13 0.47 +pousseur pousseur NOM m s 0.04 0.34 0.02 0.20 +pousseurs pousseur NOM m p 0.04 0.34 0.02 0.14 +poussez pousser VER 125.61 288.92 21.60 1.69 imp:pre:2p;ind:pre:2p; +poussier poussier NOM m s 0.00 0.81 0.00 0.81 +poussiez pousser VER 125.61 288.92 0.10 0.07 ind:imp:2p; +poussif poussif ADJ m s 0.13 3.58 0.02 1.55 +poussifs poussif ADJ m p 0.13 3.58 0.00 0.95 +poussin poussin NOM m s 7.50 3.04 5.81 1.55 +poussine poussine NOM f s 0.00 0.07 0.00 0.07 +poussinière poussinière NOM f s 0.00 0.07 0.00 0.07 +poussins poussin NOM m p 7.50 3.04 1.69 1.49 +poussions pousser VER 125.61 288.92 0.19 0.61 ind:imp:1p; +poussière poussière NOM f s 24.40 78.45 22.77 73.38 +poussières poussière NOM f p 24.40 78.45 1.63 5.07 +poussiéreuse poussiéreux ADJ f s 2.02 16.55 0.76 4.53 +poussiéreuses poussiéreux ADJ f p 2.02 16.55 0.14 3.24 +poussiéreux poussiéreux ADJ m 2.02 16.55 1.12 8.78 +poussive poussif ADJ f s 0.13 3.58 0.10 0.88 +poussivement poussivement ADV 0.00 0.14 0.00 0.14 +poussives poussif ADJ f p 0.13 3.58 0.01 0.20 +poussoir poussoir NOM m s 0.02 0.07 0.02 0.07 +poussâmes pousser VER 125.61 288.92 0.00 0.41 ind:pas:1p; +poussons pousser VER 125.61 288.92 0.67 0.41 imp:pre:1p;ind:pre:1p; +poussât pousser VER 125.61 288.92 0.00 0.68 sub:imp:3s; +poussèrent pousser VER 125.61 288.92 0.24 3.85 ind:pas:3p; +poussé pousser VER m s 125.61 288.92 18.46 42.03 par:pas; +poussée pousser VER f s 125.61 288.92 4.63 8.24 par:pas; +poussées pousser VER f p 125.61 288.92 0.43 1.15 par:pas; +poussés pousser VER m p 125.61 288.92 1.92 4.93 par:pas; +poutargue poutargue NOM f s 0.00 0.07 0.00 0.07 +poétesse poète NOM f s 22.63 35.95 0.48 0.95 +poétesses poétesse NOM f p 0.02 0.00 0.02 0.00 +poéticien poéticien NOM m s 0.00 0.07 0.00 0.07 +poutine poutine ADJ f s 0.06 0.00 0.06 0.00 +poétique poétique ADJ s 2.60 8.11 2.34 6.15 +poétiquement poétiquement ADV 0.04 0.47 0.04 0.47 +poétiques poétique ADJ p 2.60 8.11 0.26 1.96 +poétisait poétiser VER 0.00 0.41 0.00 0.07 ind:imp:3s; +poétisant poétiser VER 0.00 0.41 0.00 0.07 par:pre; +poétise poétiser VER 0.00 0.41 0.00 0.14 imp:pre:2s;ind:pre:3s; +poétiser poétiser VER 0.00 0.41 0.00 0.07 inf; +poétisez poétiser VER 0.00 0.41 0.00 0.07 imp:pre:2p; +poutou poutou NOM m s 0.06 0.34 0.06 0.34 +poutrages poutrage NOM m p 0.00 0.07 0.00 0.07 +poutraison poutraison NOM f s 0.00 0.14 0.00 0.14 +poutre poutre NOM f s 2.04 15.74 1.38 5.34 +poutrelle poutrelle NOM f s 0.30 2.03 0.06 0.41 +poutrelles poutrelle NOM f p 0.30 2.03 0.24 1.62 +poutres poutre NOM f p 2.04 15.74 0.66 10.41 +pouvaient pouvoir VER 5524.52 2659.80 15.50 67.16 ind:imp:3p; +pouvais pouvoir VER 5524.52 2659.80 122.61 113.24 ind:imp:1s;ind:imp:2s; +pouvait pouvoir VER 5524.52 2659.80 108.02 445.00 ind:imp:3s; +pouvant pouvoir VER 5524.52 2659.80 4.43 18.65 par:pre; +pouvez pouvoir VER 5524.52 2659.80 353.43 53.11 ind:pre:2p; +pouviez pouvoir VER 5524.52 2659.80 17.64 4.59 ind:imp:2p; +pouvions pouvoir VER 5524.52 2659.80 6.86 14.73 ind:imp:1p; +pouvoir pouvoir VER 5524.52 2659.80 134.56 114.39 inf; +pouvoirs pouvoir NOM m p 117.87 107.91 28.36 21.42 +pouvons pouvoir VER 5524.52 2659.80 82.09 21.01 ind:pre:1p; +poux pou NOM m p 10.41 8.51 8.49 7.09 +pouzzolane pouzzolane NOM f s 0.00 0.14 0.00 0.14 +prîmes prendre VER 1913.83 1466.42 0.22 2.77 ind:pas:1p; +prît prendre VER 1913.83 1466.42 0.24 6.42 sub:imp:3s; +prônais prôner VER 1.34 1.49 0.01 0.00 ind:imp:2s; +prônait prôner VER 1.34 1.49 0.15 0.61 ind:imp:3s; +prônant prôner VER 1.34 1.49 0.13 0.20 par:pre; +prône prôner VER 1.34 1.49 0.46 0.27 ind:pre:1s;ind:pre:3s; +prônent prôner VER 1.34 1.49 0.18 0.07 ind:pre:3p; +prôner prôner VER 1.34 1.49 0.10 0.00 inf; +prônera prôner VER 1.34 1.49 0.01 0.00 ind:fut:3s; +prônerez prôner VER 1.34 1.49 0.01 0.00 ind:fut:2p; +prônes prôner VER 1.34 1.49 0.05 0.00 ind:pre:2s; +prôneur prôneur NOM m s 0.00 0.07 0.00 0.07 +prônez prôner VER 1.34 1.49 0.05 0.00 ind:pre:2p; +prônons prôner VER 1.34 1.49 0.02 0.00 imp:pre:1p;ind:pre:1p; +prôné prôner VER m s 1.34 1.49 0.03 0.07 par:pas; +prônée prôner VER f s 1.34 1.49 0.14 0.14 par:pas; +prônées prôner VER f p 1.34 1.49 0.00 0.07 par:pas; +prônés prôner VER m p 1.34 1.49 0.00 0.07 par:pas; +practice practice NOM m s 0.15 0.00 0.15 0.00 +pradelle pradelle NOM f s 0.00 6.08 0.00 6.08 +praesidium praesidium NOM m s 0.10 0.14 0.10 0.14 +pragmatique pragmatique ADJ s 0.51 0.41 0.43 0.34 +pragmatiquement pragmatiquement ADV 0.01 0.00 0.01 0.00 +pragmatiques pragmatique ADJ f p 0.51 0.41 0.08 0.07 +pragmatisme pragmatisme NOM m s 0.24 0.27 0.24 0.27 +pragmatiste pragmatiste NOM s 0.01 0.07 0.01 0.07 +praire praire NOM f s 0.13 0.20 0.01 0.07 +praires praire NOM f p 0.13 0.20 0.12 0.14 +prairial prairial NOM m s 0.00 0.20 0.00 0.20 +prairie prairie NOM f s 3.44 19.66 2.38 9.80 +prairies prairie NOM f p 3.44 19.66 1.06 9.86 +praline praline NOM f s 0.87 1.76 0.41 0.47 +pralines praline NOM f p 0.87 1.76 0.46 1.28 +praliné praliné ADJ m s 0.05 0.20 0.05 0.07 +pralinés praliné ADJ m p 0.05 0.20 0.00 0.14 +prang prang NOM m s 0.11 0.07 0.11 0.07 +praticable praticable ADJ s 0.48 1.28 0.30 1.01 +praticables praticable ADJ p 0.48 1.28 0.18 0.27 +praticien praticien NOM m s 0.57 1.76 0.30 1.35 +praticienne praticien NOM f s 0.57 1.76 0.00 0.14 +praticiens praticien NOM m p 0.57 1.76 0.26 0.27 +pratiqua pratiquer VER 13.87 24.59 0.02 0.34 ind:pas:3s; +pratiquai pratiquer VER 13.87 24.59 0.00 0.07 ind:pas:1s; +pratiquaient pratiquer VER 13.87 24.59 0.64 1.42 ind:imp:3p; +pratiquais pratiquer VER 13.87 24.59 0.11 0.61 ind:imp:1s; +pratiquait pratiquer VER 13.87 24.59 0.34 3.65 ind:imp:3s; +pratiquant pratiquant ADJ m s 0.75 0.88 0.56 0.54 +pratiquante pratiquant ADJ f s 0.75 0.88 0.13 0.34 +pratiquants pratiquant NOM m p 0.22 0.34 0.09 0.07 +pratique pratique ADJ s 13.18 16.69 11.00 10.54 +pratiquement pratiquement ADV 14.68 17.03 14.68 17.03 +pratiquent pratiquer VER 13.87 24.59 1.22 0.95 ind:pre:3p; +pratiquer pratiquer VER 13.87 24.59 3.65 4.53 inf; +pratiquera pratiquer VER 13.87 24.59 0.02 0.07 ind:fut:3s; +pratiquerai pratiquer VER 13.87 24.59 0.04 0.00 ind:fut:1s; +pratiquerais pratiquer VER 13.87 24.59 0.00 0.07 cnd:pre:1s; +pratiquerait pratiquer VER 13.87 24.59 0.00 0.07 cnd:pre:3s; +pratiquerons pratiquer VER 13.87 24.59 0.03 0.00 ind:fut:1p; +pratiques pratique NOM p 10.15 15.00 2.55 3.58 +pratiquez pratiquer VER 13.87 24.59 0.89 0.47 imp:pre:2p;ind:pre:2p; +pratiquiez pratiquer VER 13.87 24.59 0.03 0.14 ind:imp:2p; +pratiquions pratiquer VER 13.87 24.59 0.02 0.14 ind:imp:1p; +pratiquons pratiquer VER 13.87 24.59 0.25 0.14 imp:pre:1p;ind:pre:1p; +pratiquât pratiquer VER 13.87 24.59 0.00 0.07 sub:imp:3s; +pratiquèrent pratiquer VER 13.87 24.59 0.00 0.07 ind:pas:3p; +pratiqué pratiquer VER m s 13.87 24.59 1.87 3.31 par:pas; +pratiquée pratiquer VER f s 13.87 24.59 0.54 1.76 par:pas; +pratiquées pratiquer VER f p 13.87 24.59 0.19 0.88 par:pas; +pratiqués pratiquer VER m p 13.87 24.59 0.12 0.81 par:pas; +praxie praxie NOM f s 0.10 0.00 0.10 0.00 +premier_maître premier_maître NOM m s 0.16 0.00 0.16 0.00 +premier_né premier_né NOM m s 0.91 0.20 0.77 0.14 +premier premier ADJ m s 376.98 672.57 146.12 237.91 +premier_né premier_né NOM m p 0.91 0.20 0.14 0.07 +premiers premier ADJ m p 376.98 672.57 19.36 77.70 +première_née première_née NOM f s 0.11 0.00 0.11 0.00 +première premier ADJ f s 376.98 672.57 197.34 296.76 +premièrement premièrement ADV 5.51 1.76 5.51 1.76 +premières premier ADJ f p 376.98 672.57 14.16 60.20 +premium premium NOM m s 0.05 0.00 0.05 0.00 +prenable prenable ADJ m s 0.01 0.14 0.01 0.00 +prenables prenable ADJ f p 0.01 0.14 0.00 0.14 +prenaient prendre VER 1913.83 1466.42 3.31 30.68 ind:imp:3p; +prenais prendre VER 1913.83 1466.42 10.15 19.53 ind:imp:1s;ind:imp:2s; +prenait prendre VER 1913.83 1466.42 18.66 113.92 ind:imp:3s; +prenant prendre VER 1913.83 1466.42 6.62 48.04 par:pre; +prenante prenant ADJ f s 1.59 3.18 0.41 0.88 +prenantes prenant ADJ f p 1.59 3.18 0.02 0.34 +prenants prenant ADJ m p 1.59 3.18 0.02 0.07 +prend prendre VER 1913.83 1466.42 179.02 129.05 ind:pre:3s; +prendra prendre VER 1913.83 1466.42 37.82 9.66 ind:fut:3s; +prendrai prendre VER 1913.83 1466.42 27.68 5.14 ind:fut:1s; +prendraient prendre VER 1913.83 1466.42 1.24 2.57 cnd:pre:3p; +prendrais prendre VER 1913.83 1466.42 11.04 3.58 cnd:pre:1s;cnd:pre:2s; +prendrait prendre VER 1913.83 1466.42 7.91 14.80 cnd:pre:3s; +prendras prendre VER 1913.83 1466.42 7.86 2.50 ind:fut:2s; +prendre prendre VER 1913.83 1466.42 465.77 344.05 inf;;inf;;inf;; +prendrez prendre VER 1913.83 1466.42 8.49 2.64 ind:fut:2p; +prendriez prendre VER 1913.83 1466.42 1.36 0.74 cnd:pre:2p; +prendrions prendre VER 1913.83 1466.42 0.16 0.27 cnd:pre:1p; +prendrons prendre VER 1913.83 1466.42 6.12 1.49 ind:fut:1p; +prendront prendre VER 1913.83 1466.42 4.47 3.72 ind:fut:3p; +prends prendre VER 1913.83 1466.42 431.50 70.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +preneur preneur NOM m s 2.21 1.62 1.97 1.42 +preneurs preneur NOM m p 2.21 1.62 0.22 0.14 +preneuse preneur NOM f s 2.21 1.62 0.03 0.07 +prenez prendre VER 1913.83 1466.42 175.12 25.47 imp:pre:2p;ind:pre:2p; +preniez prendre VER 1913.83 1466.42 3.58 1.62 ind:imp:2p; +prenions prendre VER 1913.83 1466.42 1.40 4.66 ind:imp:1p; +prenne prendre VER 1913.83 1466.42 21.02 16.08 sub:pre:1s;sub:pre:3s; +prennent prendre VER 1913.83 1466.42 27.90 29.12 ind:pre:3p; +prennes prendre VER 1913.83 1466.42 5.01 2.03 sub:pre:2s; +prenons prendre VER 1913.83 1466.42 20.80 7.03 imp:pre:1p;ind:pre:1p; +presbyte presbyte ADJ s 0.19 0.14 0.19 0.14 +presbyterium presbyterium NOM m s 0.00 0.07 0.00 0.07 +presbytie presbytie NOM f s 0.00 0.34 0.00 0.34 +presbytère presbytère NOM m s 1.07 3.51 1.07 3.51 +presbytérien presbytérien ADJ m s 0.23 0.20 0.12 0.07 +presbytérienne presbytérien ADJ f s 0.23 0.20 0.11 0.07 +presbytériennes presbytérien ADJ f p 0.23 0.20 0.00 0.07 +prescience prescience NOM f s 0.04 1.01 0.04 1.01 +presciente prescient ADJ f s 0.01 0.00 0.01 0.00 +prescription prescription NOM f s 2.24 2.50 1.77 1.28 +prescriptions prescription NOM f p 2.24 2.50 0.47 1.22 +prescrirait prescrire VER 8.70 12.30 0.01 0.07 cnd:pre:3s; +prescrire prescrire VER 8.70 12.30 1.72 1.62 inf; +prescris prescrire VER 8.70 12.30 0.84 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prescrit prescrire VER m s 8.70 12.30 4.49 4.12 ind:pre:3s;par:pas; +prescrite prescrire VER f s 8.70 12.30 0.34 1.01 par:pas; +prescrites prescrire VER f p 8.70 12.30 0.58 0.68 par:pas; +prescrits prescrire VER m p 8.70 12.30 0.38 0.41 par:pas; +prescrivaient prescrire VER 8.70 12.30 0.00 0.20 ind:imp:3p; +prescrivais prescrire VER 8.70 12.30 0.00 0.34 ind:imp:1s; +prescrivait prescrire VER 8.70 12.30 0.01 1.01 ind:imp:3s; +prescrivant prescrire VER 8.70 12.30 0.01 0.54 par:pre; +prescrive prescrire VER 8.70 12.30 0.17 0.07 sub:pre:1s;sub:pre:3s; +prescrivent prescrire VER 8.70 12.30 0.07 0.20 ind:pre:3p; +prescrivez prescrire VER 8.70 12.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +prescrivis prescrire VER 8.70 12.30 0.00 0.41 ind:pas:1s; +prescrivit prescrire VER 8.70 12.30 0.00 0.74 ind:pas:3s; +presqu_île presqu_île NOM f s 0.16 1.49 0.16 1.35 +presqu_île presqu_île NOM f p 0.16 1.49 0.00 0.14 +presque presque ADV 181.81 465.54 181.81 465.54 +press_book press_book NOM m s 0.03 0.00 0.03 0.00 +pressa presser VER 52.28 71.01 0.03 6.35 ind:pas:3s; +pressage pressage NOM m s 0.07 0.00 0.07 0.00 +pressai presser VER 52.28 71.01 0.02 0.74 ind:pas:1s; +pressaient presser VER 52.28 71.01 0.06 5.68 ind:imp:3p; +pressais presser VER 52.28 71.01 0.13 1.22 ind:imp:1s;ind:imp:2s; +pressait presser VER 52.28 71.01 0.47 10.61 ind:imp:3s; +pressant pressant ADJ m s 2.09 7.70 0.97 2.50 +pressante pressant ADJ f s 2.09 7.70 0.72 3.72 +pressantes pressant ADJ f p 2.09 7.70 0.04 1.22 +pressants pressant ADJ m p 2.09 7.70 0.36 0.27 +presse_agrumes presse_agrumes NOM m 0.04 0.00 0.04 0.00 +presse_bouton presse_bouton ADJ f s 0.04 0.07 0.04 0.07 +presse_citron presse_citron NOM m s 0.02 0.00 0.02 0.00 +presse_fruits presse_fruits NOM m 0.07 0.00 0.07 0.00 +presse_papier presse_papier NOM m s 0.16 0.27 0.16 0.27 +presse_papiers presse_papiers NOM m 0.24 0.47 0.24 0.47 +presse_purée presse_purée NOM m 0.04 0.41 0.04 0.41 +presse_raquette presse_raquette NOM m s 0.00 0.07 0.00 0.07 +presse presse NOM f s 45.77 41.82 45.10 40.68 +pressement pressement NOM m s 0.01 0.34 0.01 0.20 +pressements pressement NOM m p 0.01 0.34 0.00 0.14 +pressens pressentir VER 2.18 19.12 0.28 1.15 ind:pre:1s;ind:pre:2s; +pressent pressentir VER 2.18 19.12 0.63 3.45 ind:pre:3s; +pressentîmes pressentir VER 2.18 19.12 0.00 0.14 ind:pas:1p; +pressentît pressentir VER 2.18 19.12 0.00 0.07 sub:imp:3s; +pressentaient pressentir VER 2.18 19.12 0.00 0.34 ind:imp:3p; +pressentais pressentir VER 2.18 19.12 0.12 2.43 ind:imp:1s;ind:imp:2s; +pressentait pressentir VER 2.18 19.12 0.15 3.18 ind:imp:3s; +pressentant pressentir VER 2.18 19.12 0.00 1.96 par:pre; +pressentent pressentir VER 2.18 19.12 0.04 0.20 ind:pre:3p; +pressentez pressentir VER 2.18 19.12 0.06 0.00 ind:pre:2p; +pressenti pressentir VER m s 2.18 19.12 0.68 2.09 par:pas; +pressentie pressentir VER f s 2.18 19.12 0.01 0.41 par:pas; +pressenties pressenti ADJ f p 0.01 1.01 0.00 0.07 +pressentiez pressentir VER 2.18 19.12 0.04 0.00 ind:imp:2p; +pressentiment pressentiment NOM m s 8.34 8.72 7.17 6.76 +pressentiments pressentiment NOM m p 8.34 8.72 1.17 1.96 +pressentions pressentir VER 2.18 19.12 0.00 0.20 ind:imp:1p; +pressentir pressentir VER 2.18 19.12 0.14 2.70 inf; +pressentirez pressentir VER 2.18 19.12 0.00 0.07 ind:fut:2p; +pressentis pressentir VER m p 2.18 19.12 0.03 0.27 ind:pas:1s;par:pas; +pressentit pressentir VER 2.18 19.12 0.00 0.47 ind:pas:3s; +pressentons pressentir VER 2.18 19.12 0.01 0.00 imp:pre:1p; +presser presser VER 52.28 71.01 5.64 12.43 inf; +pressera presser VER 52.28 71.01 0.03 0.07 ind:fut:3s; +presserai presser VER 52.28 71.01 0.16 0.00 ind:fut:1s; +presseraient presser VER 52.28 71.01 0.00 0.07 cnd:pre:3p; +presserait presser VER 52.28 71.01 0.11 0.07 cnd:pre:3s; +presseront presser VER 52.28 71.01 0.00 0.07 ind:fut:3p; +presses presse NOM f p 45.77 41.82 0.67 1.15 +presseur presseur ADJ m s 0.01 0.14 0.01 0.14 +pressez presser VER 52.28 71.01 2.46 0.54 imp:pre:2p;ind:pre:2p; +pressiez presser VER 52.28 71.01 0.01 0.00 ind:imp:2p; +pressing pressing NOM m s 2.63 0.81 2.52 0.74 +pressings pressing NOM m p 2.63 0.81 0.10 0.07 +pression pression NOM f s 37.28 21.76 35.33 19.05 +pressionnée pressionné ADJ f s 0.00 0.07 0.00 0.07 +pressions pression NOM f p 37.28 21.76 1.96 2.70 +pressoir pressoir NOM m s 0.19 1.15 0.17 0.95 +pressoirs pressoir NOM m p 0.19 1.15 0.01 0.20 +pressons presser VER 52.28 71.01 2.02 1.89 imp:pre:1p;ind:pre:1p; +pressât presser VER 52.28 71.01 0.00 0.14 sub:imp:3s; +pressèrent presser VER 52.28 71.01 0.01 0.54 ind:pas:3p; +pressé presser VER m s 52.28 71.01 17.12 12.23 par:pas; +pressée pressé ADJ f s 25.09 31.42 11.26 8.58 +pressées pressé ADJ f p 25.09 31.42 0.62 3.18 +pressurant pressurer VER 0.28 0.61 0.00 0.07 par:pre; +pressure pressurer VER 0.28 0.61 0.17 0.20 imp:pre:2s;ind:pre:3s; +pressurer pressurer VER 0.28 0.61 0.06 0.20 inf; +pressures pressurer VER 0.28 0.61 0.03 0.00 ind:pre:2s; +pressurisation pressurisation NOM f s 0.38 0.00 0.38 0.00 +pressuriser pressuriser VER 0.17 0.07 0.02 0.00 inf; +pressurisez pressuriser VER 0.17 0.07 0.02 0.00 imp:pre:2p; +pressurisé pressurisé ADJ m s 0.60 0.00 0.14 0.00 +pressurisée pressurisé ADJ f s 0.60 0.00 0.27 0.00 +pressurisées pressuriser VER f p 0.17 0.07 0.00 0.07 par:pas; +pressurisés pressurisé ADJ m p 0.60 0.00 0.19 0.00 +pressurée pressurer VER f s 0.28 0.61 0.00 0.07 par:pas; +pressurés pressurer VER m p 0.28 0.61 0.02 0.07 par:pas; +pressés presser VER m p 52.28 71.01 4.45 4.32 par:pas; +prestance prestance NOM f s 0.27 2.30 0.27 2.30 +prestataire prestataire NOM s 0.34 0.07 0.12 0.00 +prestataires prestataire NOM p 0.34 0.07 0.22 0.07 +prestation prestation NOM f s 1.95 2.30 1.58 1.28 +prestations prestation NOM f p 1.95 2.30 0.37 1.01 +preste preste ADJ s 0.04 2.50 0.04 1.55 +prestement prestement ADV 0.09 4.05 0.09 4.05 +prestes preste ADJ p 0.04 2.50 0.00 0.95 +prestesse prestesse NOM f s 0.00 0.61 0.00 0.61 +prestidigitateur prestidigitateur NOM m s 0.51 1.89 0.48 1.55 +prestidigitateurs prestidigitateur NOM m p 0.51 1.89 0.00 0.27 +prestidigitation prestidigitation NOM f s 0.10 0.41 0.10 0.34 +prestidigitations prestidigitation NOM f p 0.10 0.41 0.00 0.07 +prestidigitatrice prestidigitateur NOM f s 0.51 1.89 0.02 0.07 +prestige prestige NOM m s 2.54 16.96 2.54 14.73 +prestiges prestige NOM m p 2.54 16.96 0.00 2.23 +prestigieuse prestigieux ADJ f s 2.03 6.35 0.65 1.22 +prestigieuses prestigieux ADJ f p 2.03 6.35 0.11 0.41 +prestigieux prestigieux ADJ m 2.03 6.35 1.27 4.73 +presto presto ADV 1.18 1.22 1.18 1.22 +preuve preuve NOM f s 107.54 65.34 60.79 50.54 +preuves preuve NOM f p 107.54 65.34 46.75 14.80 +preux preux ADJ m 0.88 0.54 0.88 0.54 +pria prier VER 313.12 105.74 0.52 6.15 ind:pas:3s; +priai prier VER 313.12 105.74 0.20 1.76 ind:pas:1s; +priaient prier VER 313.12 105.74 0.34 1.01 ind:imp:3p; +priais prier VER 313.12 105.74 1.16 1.08 ind:imp:1s;ind:imp:2s; +priait prier VER 313.12 105.74 1.34 7.36 ind:imp:3s; +priant prier VER 313.12 105.74 1.61 3.31 par:pre; +priapique priapique ADJ m s 0.00 0.61 0.00 0.41 +priapiques priapique ADJ f p 0.00 0.61 0.00 0.20 +priapisme priapisme NOM m s 0.17 0.14 0.17 0.14 +priasse prier VER 313.12 105.74 0.00 0.07 sub:imp:1s; +prie_dieu prie_dieu NOM m 0.01 2.64 0.01 2.64 +prie prier VER 313.12 105.74 247.29 44.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +prient prier VER 313.12 105.74 1.52 1.55 ind:pre:3p; +prier prier VER 313.12 105.74 25.46 21.62 inf; +priera prier VER 313.12 105.74 0.29 0.07 ind:fut:3s; +prierai prier VER 313.12 105.74 2.83 1.22 ind:fut:1s; +prieraient prier VER 313.12 105.74 0.00 0.07 cnd:pre:3p; +prierais prier VER 313.12 105.74 0.38 0.20 cnd:pre:1s; +prierait prier VER 313.12 105.74 0.16 0.41 cnd:pre:3s; +prieras prier VER 313.12 105.74 0.51 0.34 ind:fut:2s; +prierez prier VER 313.12 105.74 0.07 0.07 ind:fut:2p; +prierons prier VER 313.12 105.74 0.42 0.14 ind:fut:1p; +prieront prier VER 313.12 105.74 0.14 0.07 ind:fut:3p; +pries prier VER 313.12 105.74 2.06 0.74 ind:pre:2s; +prieur prieur ADJ m s 0.38 0.95 0.38 0.95 +prieure prieur NOM f s 0.29 8.85 0.00 0.14 +prieurs prieur NOM m p 0.29 8.85 0.00 0.07 +prieuré prieuré NOM m s 0.22 0.68 0.22 0.61 +prieurés prieuré NOM m p 0.22 0.68 0.00 0.07 +priez prier VER 313.12 105.74 9.13 1.76 imp:pre:2p;ind:pre:2p; +priions prier VER 313.12 105.74 0.00 0.27 ind:imp:1p; +prima primer VER 2.01 2.09 0.83 0.74 ind:pas:3s; +primaire primaire ADJ s 4.95 5.54 3.98 4.26 +primaires primaire ADJ p 4.95 5.54 0.97 1.28 +primait primer VER 2.01 2.09 0.02 0.41 ind:imp:3s; +primal primal ADJ m s 0.29 0.07 0.11 0.00 +primale primal ADJ f s 0.29 0.07 0.18 0.07 +primant primer VER 2.01 2.09 0.01 0.07 par:pre; +primat primat NOM m s 0.09 0.34 0.09 0.34 +primate primate NOM m s 1.29 1.62 0.72 0.61 +primates primate NOM m p 1.29 1.62 0.57 1.01 +primatologue primatologue NOM s 0.01 0.00 0.01 0.00 +primauté primauté NOM f s 0.01 0.95 0.01 0.95 +prime_saut prime_saut NOM s 0.00 0.07 0.00 0.07 +prime_time prime_time NOM m 0.41 0.00 0.41 0.00 +prime prime NOM f s 17.79 8.11 10.63 7.09 +priment primer VER 2.01 2.09 0.16 0.20 ind:pre:3p; +primer primer VER 2.01 2.09 0.15 0.07 inf; +primerait primer VER 2.01 2.09 0.00 0.07 cnd:pre:3s; +primerose primerose NOM f s 0.01 0.07 0.01 0.07 +primes prime NOM f p 17.79 8.11 7.17 1.01 +primesautier primesautier ADJ m s 0.00 0.95 0.00 0.27 +primesautiers primesautier ADJ m p 0.00 0.95 0.00 0.07 +primesautière primesautier ADJ f s 0.00 0.95 0.00 0.61 +primeur primeur NOM f s 0.20 1.96 0.16 1.01 +primeurs primeur NOM f p 0.20 1.96 0.04 0.95 +primevère primevère NOM f s 0.06 1.01 0.01 0.14 +primevères primevère NOM f p 0.06 1.01 0.05 0.88 +primidi primidi NOM m s 0.00 0.07 0.00 0.07 +primitif primitif ADJ m s 7.00 10.20 2.84 3.31 +primitifs primitif ADJ m p 7.00 10.20 0.87 1.28 +primitive primitif ADJ f s 7.00 10.20 2.08 4.59 +primitivement primitivement ADV 0.02 0.54 0.02 0.54 +primitives primitif ADJ f p 7.00 10.20 1.22 1.01 +primitivisme primitivisme NOM m s 0.10 0.14 0.10 0.14 +primo_infection primo_infection NOM f s 0.00 0.07 0.00 0.07 +primo primo ADV 4.10 2.16 4.10 2.16 +primordial primordial ADJ m s 2.39 2.97 1.52 0.88 +primordiale primordial ADJ f s 2.39 2.97 0.63 1.82 +primordialement primordialement ADV 0.00 0.41 0.00 0.41 +primordiales primordial ADJ f p 2.39 2.97 0.18 0.00 +primordiaux primordial ADJ m p 2.39 2.97 0.06 0.27 +primé primé ADJ m s 0.14 0.07 0.09 0.00 +primée primer VER f s 2.01 2.09 0.05 0.07 par:pas; +primées primer VER f p 2.01 2.09 0.02 0.00 par:pas; +primés primé ADJ m p 0.14 0.07 0.03 0.00 +prin prin NOM m s 0.10 0.14 0.10 0.14 +prince_de_galles prince_de_galles NOM m 0.00 0.27 0.00 0.27 +prince_évêque prince_évêque NOM m s 0.00 0.14 0.00 0.14 +prince prince NOM m s 96.42 101.22 44.83 65.61 +princeps princeps ADJ f p 0.00 0.07 0.00 0.07 +princes prince NOM m p 96.42 101.22 5.29 11.08 +princesse prince NOM f s 96.42 101.22 46.31 21.01 +princesses princesse NOM f p 2.48 0.00 2.48 0.00 +princier princier ADJ m s 0.59 3.65 0.22 1.08 +princiers princier ADJ m p 0.59 3.65 0.02 0.74 +principal principal ADJ m s 36.68 38.92 17.53 15.81 +principale principal ADJ f s 36.68 38.92 10.68 12.30 +principalement principalement ADV 3.60 6.08 3.60 6.08 +principales principal ADJ f p 36.68 38.92 3.35 3.65 +principat principat NOM m s 0.00 0.34 0.00 0.34 +principauté principauté NOM f s 0.25 1.01 0.20 0.81 +principautés principauté NOM f p 0.25 1.01 0.05 0.20 +principaux principal ADJ m p 36.68 38.92 5.12 7.16 +principe principe NOM m s 26.36 47.57 15.62 30.88 +principes principe NOM m p 26.36 47.57 10.75 16.69 +princière princier ADJ f s 0.59 3.65 0.35 1.28 +princièrement princièrement ADV 0.11 0.20 0.11 0.20 +princières princier ADJ f p 0.59 3.65 0.00 0.54 +printanier printanier ADJ m s 0.66 4.32 0.33 1.89 +printaniers printanier ADJ m p 0.66 4.32 0.11 0.81 +printanière printanier ADJ f s 0.66 4.32 0.21 1.35 +printanières printanier ADJ f p 0.66 4.32 0.02 0.27 +printemps printemps NOM m 27.85 60.88 27.85 60.88 +priâmes prier VER 313.12 105.74 0.00 0.14 ind:pas:1p; +prion prion NOM m s 3.11 0.54 0.43 0.00 +prions prier VER 313.12 105.74 6.14 1.49 imp:pre:1p;ind:pre:1p; +prioritaire prioritaire ADJ s 3.07 0.54 2.43 0.34 +prioritaires prioritaire ADJ p 3.07 0.54 0.64 0.20 +priorité priorité NOM f s 12.15 4.80 8.84 4.53 +priorités priorité NOM f p 12.15 4.80 3.31 0.27 +priât prier VER 313.12 105.74 0.00 0.27 sub:imp:3s; +prirent prendre VER 1913.83 1466.42 0.80 15.20 ind:pas:3p; +pris prendre VER m 1913.83 1466.42 374.60 333.04 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +prisa priser VER 2.59 5.20 0.02 0.07 ind:pas:3s; +prisaient priser VER 2.59 5.20 0.00 0.14 ind:imp:3p; +prisait priser VER 2.59 5.20 0.10 0.61 ind:imp:3s; +prisant priser VER 2.59 5.20 0.00 0.07 par:pre; +prise prendre VER f s 1913.83 1466.42 38.26 42.64 par:pas; +prisent priser VER 2.59 5.20 0.14 0.14 ind:pre:3p; +priser priser VER 2.59 5.20 0.06 0.81 inf; +prises prendre VER f p 1913.83 1466.42 8.42 12.16 par:pas; +priseur priseur NOM m s 0.01 0.14 0.01 0.07 +priseurs priseur NOM m p 0.01 0.14 0.00 0.07 +prisez priser VER 2.59 5.20 0.00 0.07 imp:pre:2p; +prismatique prismatique ADJ m s 0.02 0.07 0.02 0.00 +prismatiques prismatique ADJ f p 0.02 0.07 0.00 0.07 +prisme prisme NOM m s 0.11 1.42 0.10 0.88 +prismes prisme NOM m p 0.11 1.42 0.01 0.54 +prison prison NOM f s 147.49 72.43 142.97 64.66 +prisonnier prisonnier NOM m s 37.80 40.00 16.97 11.69 +prisonniers prisonnier NOM m p 37.80 40.00 19.55 26.42 +prisonnière prisonnier ADJ f s 19.64 29.46 3.40 4.73 +prisonnières prisonnier ADJ f p 19.64 29.46 0.65 1.22 +prisons_école prisons_école NOM f p 0.00 0.07 0.00 0.07 +prisons prison NOM f p 147.49 72.43 4.52 7.77 +prisse prendre VER 1913.83 1466.42 0.01 0.14 sub:imp:1s; +prissent prendre VER 1913.83 1466.42 0.00 0.61 sub:imp:3p; +prissions prendre VER 1913.83 1466.42 0.00 0.07 sub:imp:1p; +pristi pristi ONO 0.00 0.20 0.00 0.20 +prisé priser VER m s 2.59 5.20 0.30 0.54 par:pas; +prisée priser VER f s 2.59 5.20 0.06 0.41 par:pas; +prisées priser VER f p 2.59 5.20 0.21 0.68 par:pas; +prisunic prisunic NOM m s 0.03 3.11 0.03 3.11 +prisés priser VER m p 2.59 5.20 0.28 0.07 par:pas; +prit prendre VER 1913.83 1466.42 7.27 164.80 ind:pas:3s; +prière prière NOM f s 32.73 45.95 19.15 30.00 +prièrent prier VER 313.12 105.74 0.03 0.34 ind:pas:3p; +prières prière NOM f p 32.73 45.95 13.58 15.95 +prié prier VER m s 313.12 105.74 9.03 7.84 par:pas; +priée prier VER f s 313.12 105.74 0.52 1.15 par:pas; +priées prier VER f p 313.12 105.74 0.05 0.14 par:pas; +priés prier VER m p 313.12 105.74 1.91 0.95 par:pas; +priva priver VER 24.06 42.70 0.16 0.74 ind:pas:3s; +privai priver VER 24.06 42.70 0.00 0.07 ind:pas:1s; +privaient priver VER 24.06 42.70 0.02 0.88 ind:imp:3p; +privais priver VER 24.06 42.70 0.02 0.61 ind:imp:1s;ind:imp:2s; +privait priver VER 24.06 42.70 0.09 3.65 ind:imp:3s; +privant priver VER 24.06 42.70 0.33 1.69 par:pre; +privasse priver VER 24.06 42.70 0.00 0.07 sub:imp:1s; +privatif privatif ADJ m s 0.06 0.47 0.02 0.27 +privatifs privatif ADJ m p 0.06 0.47 0.00 0.07 +privation privation NOM f s 1.55 4.53 0.70 1.49 +privations privation NOM f p 1.55 4.53 0.85 3.04 +privatisation privatisation NOM f s 0.41 0.07 0.41 0.07 +privatiser privatiser VER 0.36 0.00 0.31 0.00 inf; +privatisé privatiser VER m s 0.36 0.00 0.03 0.00 par:pas; +privatisée privatiser VER f s 0.36 0.00 0.01 0.00 par:pas; +privatisés privatiser VER m p 0.36 0.00 0.01 0.00 par:pas; +privative privatif ADJ f s 0.06 0.47 0.02 0.00 +privatives privatif ADJ f p 0.06 0.47 0.01 0.14 +privauté privauté NOM f s 0.02 0.54 0.00 0.07 +privautés privauté NOM f p 0.02 0.54 0.02 0.47 +prive priver VER 24.06 42.70 1.49 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s; +privent priver VER 24.06 42.70 0.46 0.47 ind:pre:3p; +priver priver VER 24.06 42.70 4.19 6.15 inf; +privera priver VER 24.06 42.70 0.44 0.27 ind:fut:3s; +priverai priver VER 24.06 42.70 0.27 0.00 ind:fut:1s; +priveraient priver VER 24.06 42.70 0.01 0.07 cnd:pre:3p; +priverais priver VER 24.06 42.70 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +priverait priver VER 24.06 42.70 0.17 0.27 cnd:pre:3s; +priveras priver VER 24.06 42.70 0.02 0.00 ind:fut:2s; +priveriez priver VER 24.06 42.70 0.12 0.00 cnd:pre:2p; +prives priver VER 24.06 42.70 0.47 0.14 ind:pre:2s; +privez priver VER 24.06 42.70 0.54 0.41 imp:pre:2p;ind:pre:2p; +priviez priver VER 24.06 42.70 0.02 0.00 ind:imp:2p; +privilège privilège NOM m s 10.41 17.70 7.06 11.96 +privilèges privilège NOM m p 10.41 17.70 3.35 5.74 +privilégiait privilégier VER 2.92 3.11 0.01 0.14 ind:imp:3s; +privilégiant privilégier VER 2.92 3.11 0.00 0.07 par:pre; +privilégie privilégier VER 2.92 3.11 0.42 0.27 ind:pre:1s;ind:pre:3s; +privilégient privilégier VER 2.92 3.11 0.04 0.00 ind:pre:3p; +privilégier privilégier VER 2.92 3.11 0.84 0.20 inf; +privilégions privilégier VER 2.92 3.11 0.02 0.00 ind:pre:1p; +privilégié privilégié ADJ m s 2.15 9.46 1.01 4.05 +privilégiée privilégié ADJ f s 2.15 9.46 0.56 2.84 +privilégiées privilégié ADJ f p 2.15 9.46 0.23 0.68 +privilégiés privilégié NOM m p 0.87 5.07 0.65 3.31 +privions priver VER 24.06 42.70 0.00 0.14 ind:imp:1p; +privons priver VER 24.06 42.70 0.03 0.00 ind:pre:1p; +privât priver VER 24.06 42.70 0.00 0.14 sub:imp:3s; +privèrent priver VER 24.06 42.70 0.00 0.07 ind:pas:3p; +privé privé ADJ m s 36.44 21.89 11.99 7.09 +privée privé ADJ f s 36.44 21.89 18.80 9.39 +privées privé ADJ f p 36.44 21.89 2.61 2.30 +privément privément ADV 0.01 0.00 0.01 0.00 +privés privé ADJ m p 36.44 21.89 3.04 3.11 +prix_choc prix_choc NOM m 0.00 0.07 0.00 0.07 +prix prix NOM m 126.55 107.50 126.55 107.50 +pro_occidental pro_occidental ADJ m s 0.01 0.00 0.01 0.00 +pro pro NOM s 19.45 2.03 14.45 1.62 +proactif proactif ADJ m s 0.07 0.00 0.07 0.00 +probabilité probabilité NOM f s 3.66 2.23 1.68 1.28 +probabilités probabilité NOM f p 3.66 2.23 1.99 0.95 +probable probable ADJ s 10.98 18.18 10.61 17.36 +probablement probablement ADV 69.41 37.64 69.41 37.64 +probables probable ADJ p 10.98 18.18 0.38 0.81 +probant probant ADJ m s 0.47 1.08 0.31 0.54 +probante probant ADJ f s 0.47 1.08 0.06 0.27 +probantes probant ADJ f p 0.47 1.08 0.04 0.00 +probants probant ADJ m p 0.47 1.08 0.06 0.27 +probation probation NOM f s 1.39 0.14 1.39 0.14 +probatoire probatoire ADJ s 0.12 0.27 0.12 0.27 +probe probe ADJ f s 0.38 0.20 0.36 0.14 +probes probe ADJ p 0.38 0.20 0.01 0.07 +probité probité NOM f s 0.10 1.89 0.10 1.89 +probloc probloc NOM m s 0.00 0.54 0.00 0.47 +problocs probloc NOM m p 0.00 0.54 0.00 0.07 +probloque probloque NOM m s 0.00 1.01 0.00 0.61 +probloques probloque NOM m p 0.00 1.01 0.00 0.41 +problème problème NOM m s 520.07 95.00 391.20 55.20 +problèmes problème NOM m p 520.07 95.00 128.87 39.80 +problématique problématique ADJ s 1.39 1.22 1.22 0.95 +problématiques problématique ADJ p 1.39 1.22 0.17 0.27 +proc proc NOM m s 0.27 0.68 0.27 0.61 +procaïne procaïne NOM f s 0.02 0.00 0.02 0.00 +procalmadiol procalmadiol NOM m s 0.00 0.07 0.00 0.07 +process process NOM m 0.07 0.07 0.07 0.07 +processeur processeur NOM m s 0.69 0.00 0.54 0.00 +processeurs processeur NOM m p 0.69 0.00 0.15 0.00 +procession procession NOM f s 3.81 10.20 3.21 7.91 +processionnaient processionner VER 0.00 0.14 0.00 0.07 ind:imp:3p; +processionnaire processionnaire ADJ f s 0.00 0.20 0.00 0.20 +processionnaires processionnaire NOM m p 0.00 0.20 0.00 0.20 +processionnant processionner VER 0.00 0.14 0.00 0.07 par:pre; +processionnelle processionnel ADJ f s 0.01 0.20 0.01 0.07 +processionnelles processionnel ADJ f p 0.01 0.20 0.00 0.14 +processions procession NOM f p 3.81 10.20 0.59 2.30 +processus processus NOM m 10.86 5.47 10.86 5.47 +prochain prochain ADJ m s 160.27 59.32 51.95 21.96 +prochaine prochain ADJ f s 160.27 59.32 100.44 32.50 +prochainement prochainement ADV 0.86 2.77 0.86 2.77 +prochaines prochain ADJ f p 160.27 59.32 4.27 2.70 +prochains prochain ADJ m p 160.27 59.32 3.62 2.16 +proche_oriental proche_oriental ADJ m s 0.01 0.00 0.01 0.00 +proche proche ADJ s 55.34 82.91 38.29 63.04 +proches proche ADJ p 55.34 82.91 17.05 19.86 +prochinois prochinois ADJ m 0.00 0.14 0.00 0.07 +prochinoise prochinois ADJ f s 0.00 0.14 0.00 0.07 +proclama proclamer VER 6.50 16.42 0.02 1.08 ind:pas:3s; +proclamai proclamer VER 6.50 16.42 0.00 0.14 ind:pas:1s; +proclamaient proclamer VER 6.50 16.42 0.00 0.61 ind:imp:3p; +proclamais proclamer VER 6.50 16.42 0.23 0.07 ind:imp:1s;ind:imp:2s; +proclamait proclamer VER 6.50 16.42 0.03 3.38 ind:imp:3s; +proclamant proclamer VER 6.50 16.42 0.41 1.01 par:pre; +proclamation proclamation NOM f s 0.60 4.19 0.60 3.45 +proclamations proclamation NOM f p 0.60 4.19 0.00 0.74 +proclamatrices proclamateur NOM f p 0.01 0.00 0.01 0.00 +proclame proclamer VER 6.50 16.42 2.37 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +proclament proclamer VER 6.50 16.42 0.17 0.68 ind:pre:3p; +proclamer proclamer VER 6.50 16.42 0.81 3.18 inf; +proclamera proclamer VER 6.50 16.42 0.03 0.00 ind:fut:3s; +proclamerai proclamer VER 6.50 16.42 0.01 0.07 ind:fut:1s; +proclameraient proclamer VER 6.50 16.42 0.00 0.07 cnd:pre:3p; +proclamerait proclamer VER 6.50 16.42 0.00 0.27 cnd:pre:3s; +proclamerons proclamer VER 6.50 16.42 0.02 0.07 ind:fut:1p; +proclamez proclamer VER 6.50 16.42 0.27 0.20 imp:pre:2p;ind:pre:2p; +proclamiez proclamer VER 6.50 16.42 0.00 0.07 ind:imp:2p; +proclamions proclamer VER 6.50 16.42 0.00 0.14 ind:imp:1p; +proclamons proclamer VER 6.50 16.42 0.24 0.07 imp:pre:1p;ind:pre:1p; +proclamât proclamer VER 6.50 16.42 0.00 0.14 sub:imp:3s; +proclamèrent proclamer VER 6.50 16.42 0.00 0.14 ind:pas:3p; +proclamé proclamer VER m s 6.50 16.42 1.38 1.96 par:pas; +proclamée proclamer VER f s 6.50 16.42 0.49 0.68 par:pas; +proclamées proclamer VER f p 6.50 16.42 0.03 0.07 par:pas; +proclamés proclamer VER m p 6.50 16.42 0.01 0.14 par:pas; +procommuniste procommuniste ADJ s 0.00 0.07 0.00 0.07 +proconsul proconsul NOM m s 0.51 1.35 0.51 0.41 +proconsuls proconsul NOM m p 0.51 1.35 0.00 0.95 +procrastination procrastination NOM f s 0.01 0.00 0.01 0.00 +procréa procréer VER 1.13 1.55 0.00 0.07 ind:pas:3s; +procréant procréer VER 1.13 1.55 0.01 0.14 par:pre; +procréateur procréateur NOM m s 0.01 0.14 0.01 0.07 +procréateurs procréateur NOM m p 0.01 0.14 0.00 0.07 +procréation procréation NOM f s 0.40 1.22 0.40 1.08 +procréations procréation NOM f p 0.40 1.22 0.00 0.14 +procréative procréatif ADJ f s 0.00 0.07 0.00 0.07 +procréatrice procréateur ADJ f s 0.05 0.07 0.03 0.00 +procréatrices procréateur ADJ f p 0.05 0.07 0.02 0.00 +procrée procréer VER 1.13 1.55 0.03 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procréent procréer VER 1.13 1.55 0.01 0.07 ind:pre:3p; +procréer procréer VER 1.13 1.55 1.01 0.61 inf; +procréerons procréer VER 1.13 1.55 0.02 0.00 ind:fut:1p; +procréé procréer VER m s 1.13 1.55 0.04 0.34 par:pas; +procs proc NOM m p 0.27 0.68 0.00 0.07 +procède procéder VER 12.91 25.88 1.75 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procèdent procéder VER 12.91 25.88 0.38 0.81 ind:pre:3p; +procès_test procès_test NOM m 0.02 0.00 0.02 0.00 +procès_verbal procès_verbal NOM m s 3.86 2.30 3.55 1.76 +procès_verbal procès_verbal NOM m p 3.86 2.30 0.31 0.54 +procès procès NOM m 45.41 24.32 45.41 24.32 +proctologie proctologie NOM f s 0.01 0.00 0.01 0.00 +proctologue proctologue NOM s 0.28 0.00 0.22 0.00 +proctologues proctologue NOM p 0.28 0.00 0.07 0.00 +procéda procéder VER 12.91 25.88 0.02 0.34 ind:pas:3s; +procédaient procéder VER 12.91 25.88 0.00 0.54 ind:imp:3p; +procédais procéder VER 12.91 25.88 0.01 0.14 ind:imp:1s; +procédait procéder VER 12.91 25.88 0.04 2.97 ind:imp:3s; +procédant procéder VER 12.91 25.88 0.07 0.81 par:pre; +procéder procéder VER 12.91 25.88 6.75 10.14 inf; +procédera procéder VER 12.91 25.88 0.27 0.54 ind:fut:3s; +procéderaient procéder VER 12.91 25.88 0.00 0.20 cnd:pre:3p; +procéderais procéder VER 12.91 25.88 0.03 0.00 cnd:pre:1s; +procéderait procéder VER 12.91 25.88 0.00 0.54 cnd:pre:3s; +procéderez procéder VER 12.91 25.88 0.08 0.00 ind:fut:2p; +procéderiez procéder VER 12.91 25.88 0.01 0.00 cnd:pre:2p; +procéderons procéder VER 12.91 25.88 0.45 0.14 ind:fut:1p; +procéderont procéder VER 12.91 25.88 0.00 0.27 ind:fut:3p; +procédez procéder VER 12.91 25.88 0.76 0.14 imp:pre:2p;ind:pre:2p; +procédiez procéder VER 12.91 25.88 0.01 0.07 ind:imp:2p; +procédions procéder VER 12.91 25.88 0.04 0.14 ind:imp:1p; +procédâmes procéder VER 12.91 25.88 0.00 0.07 ind:pas:1p; +procédons procéder VER 12.91 25.88 1.15 0.61 imp:pre:1p;ind:pre:1p; +procédât procéder VER 12.91 25.88 0.00 0.14 sub:imp:3s; +procédé procédé NOM m s 4.17 8.85 3.28 4.46 +procédural procédural ADJ m s 0.03 0.00 0.01 0.00 +procédurale procédural ADJ f s 0.03 0.00 0.01 0.00 +procédure procédure NOM f s 16.16 3.58 13.26 3.38 +procédures procédure NOM f p 16.16 3.58 2.91 0.20 +procédurier procédurier ADJ m s 0.04 0.14 0.03 0.07 +procédurière procédurier ADJ f s 0.04 0.14 0.01 0.00 +procédurières procédurier ADJ f p 0.04 0.14 0.00 0.07 +procédés procédé NOM m p 4.17 8.85 0.89 4.39 +procura procurer VER 12.77 27.97 0.16 1.01 ind:pas:3s; +procurai procurer VER 12.77 27.97 0.00 0.07 ind:pas:1s; +procuraient procurer VER 12.77 27.97 0.03 1.35 ind:imp:3p; +procurais procurer VER 12.77 27.97 0.01 0.14 ind:imp:1s; +procurait procurer VER 12.77 27.97 0.39 3.72 ind:imp:3s; +procurant procurer VER 12.77 27.97 0.04 0.61 par:pre; +procurateur procurateur NOM m s 0.03 0.88 0.03 0.20 +procurateurs procurateur NOM m p 0.03 0.88 0.00 0.07 +procuraties procuratie NOM f p 0.00 0.14 0.00 0.14 +procuration procuration NOM f s 1.69 2.50 1.69 2.50 +procuratrice procurateur NOM f s 0.03 0.88 0.00 0.61 +procure procurer VER 12.77 27.97 1.67 4.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +procurent procurer VER 12.77 27.97 0.34 0.88 ind:pre:3p; +procurer procurer VER 12.77 27.97 7.29 9.66 imp:pre:2p;inf; +procurera procurer VER 12.77 27.97 0.21 0.07 ind:fut:3s; +procurerai procurer VER 12.77 27.97 0.19 0.14 ind:fut:1s; +procureraient procurer VER 12.77 27.97 0.01 0.20 cnd:pre:3p; +procurerais procurer VER 12.77 27.97 0.01 0.00 cnd:pre:1s; +procurerait procurer VER 12.77 27.97 0.14 0.61 cnd:pre:3s; +procureras procurer VER 12.77 27.97 0.03 0.00 ind:fut:2s; +procureriez procurer VER 12.77 27.97 0.01 0.00 cnd:pre:2p; +procurerons procurer VER 12.77 27.97 0.04 0.00 ind:fut:1p; +procureront procurer VER 12.77 27.97 0.02 0.07 ind:fut:3p; +procures procurer VER 12.77 27.97 0.09 0.00 ind:pre:2s; +procureur procureur NOM m s 29.45 6.15 28.68 5.54 +procureurs procureur NOM m p 29.45 6.15 0.78 0.41 +procureuse procureur NOM f s 29.45 6.15 0.00 0.14 +procureuses procureur NOM f p 29.45 6.15 0.00 0.07 +procurez procurer VER 12.77 27.97 0.20 0.00 imp:pre:2p;ind:pre:2p; +procuriez procurer VER 12.77 27.97 0.01 0.07 ind:imp:2p; +procurions procurer VER 12.77 27.97 0.00 0.14 ind:imp:1p;sub:pre:1p; +procurât procurer VER 12.77 27.97 0.00 0.07 sub:imp:3s; +procurèrent procurer VER 12.77 27.97 0.00 0.14 ind:pas:3p; +procuré procurer VER m s 12.77 27.97 1.78 4.26 par:pas; +procurée procurer VER f s 12.77 27.97 0.03 0.41 par:pas; +procurées procurer VER f p 12.77 27.97 0.00 0.14 par:pas; +procurés procurer VER m p 12.77 27.97 0.08 0.07 par:pas; +prodigalité prodigalité NOM f s 0.04 1.01 0.03 0.95 +prodigalités prodigalité NOM f p 0.04 1.01 0.01 0.07 +prodige prodige NOM m s 5.83 8.78 4.62 5.61 +prodiges prodige NOM m p 5.83 8.78 1.21 3.18 +prodigieuse prodigieux ADJ f s 3.66 13.24 1.29 5.47 +prodigieusement prodigieusement ADV 0.67 3.65 0.67 3.65 +prodigieuses prodigieux ADJ f p 3.66 13.24 0.17 1.22 +prodigieux prodigieux ADJ m 3.66 13.24 2.19 6.55 +prodigua prodiguer VER 0.89 11.42 0.02 0.41 ind:pas:3s; +prodiguaient prodiguer VER 0.89 11.42 0.00 0.81 ind:imp:3p; +prodiguais prodiguer VER 0.89 11.42 0.01 0.14 ind:imp:1s;ind:imp:2s; +prodiguait prodiguer VER 0.89 11.42 0.01 1.82 ind:imp:3s; +prodiguant prodiguer VER 0.89 11.42 0.06 0.47 par:pre; +prodigue prodigue ADJ s 1.90 3.65 1.88 3.04 +prodiguent prodiguer VER 0.89 11.42 0.00 0.61 ind:pre:3p; +prodiguer prodiguer VER 0.89 11.42 0.09 1.76 inf; +prodiguera prodiguer VER 0.89 11.42 0.01 0.07 ind:fut:3s; +prodiguerais prodiguer VER 0.89 11.42 0.00 0.07 cnd:pre:2s; +prodigueras prodiguer VER 0.89 11.42 0.01 0.00 ind:fut:2s; +prodigueront prodiguer VER 0.89 11.42 0.00 0.07 ind:fut:3p; +prodigues prodiguer VER 0.89 11.42 0.04 0.07 ind:pre:2s; +prodiguions prodiguer VER 0.89 11.42 0.14 0.07 ind:imp:1p; +prodiguèrent prodiguer VER 0.89 11.42 0.00 0.27 ind:pas:3p; +prodigué prodiguer VER m s 0.89 11.42 0.31 1.49 par:pas; +prodiguée prodiguer VER f s 0.89 11.42 0.01 0.20 par:pas; +prodiguées prodiguer VER f p 0.89 11.42 0.11 0.81 par:pas; +prodigués prodiguer VER m p 0.89 11.42 0.03 0.88 par:pas; +prodrome prodrome NOM m s 0.00 0.47 0.00 0.07 +prodromes prodrome NOM m p 0.00 0.47 0.00 0.41 +producteur producteur NOM m s 12.82 5.74 9.01 3.45 +producteurs producteur NOM m p 12.82 5.74 3.19 2.03 +productif productif ADJ m s 1.66 0.81 0.89 0.34 +productifs productif ADJ m p 1.66 0.81 0.14 0.27 +production production NOM f s 18.73 14.59 17.10 12.30 +productions production NOM f p 18.73 14.59 1.63 2.30 +productive productif ADJ f s 1.66 0.81 0.46 0.07 +productives productif ADJ f p 1.66 0.81 0.17 0.14 +productivité productivité NOM f s 0.75 0.34 0.75 0.34 +productrice producteur NOM f s 12.82 5.74 0.63 0.27 +productrices producteur ADJ f p 1.34 1.01 0.07 0.07 +produira produire VER 49.81 68.92 1.71 0.61 ind:fut:3s; +produiraient produire VER 49.81 68.92 0.12 0.27 cnd:pre:3p; +produirais produire VER 49.81 68.92 0.05 0.00 cnd:pre:1s; +produirait produire VER 49.81 68.92 0.49 1.49 cnd:pre:3s; +produiras produire VER 49.81 68.92 0.00 0.07 ind:fut:2s; +produire produire VER 49.81 68.92 11.84 16.76 inf; +produirez produire VER 49.81 68.92 0.03 0.00 ind:fut:2p; +produiriez produire VER 49.81 68.92 0.01 0.00 cnd:pre:2p; +produirons produire VER 49.81 68.92 0.06 0.00 ind:fut:1p; +produiront produire VER 49.81 68.92 0.22 0.07 ind:fut:3p; +produis produire VER 49.81 68.92 1.05 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +produisît produire VER 49.81 68.92 0.01 0.61 sub:imp:3s; +produisaient produire VER 49.81 68.92 0.09 1.69 ind:imp:3p; +produisais produire VER 49.81 68.92 0.07 0.07 ind:imp:1s;ind:imp:2s; +produisait produire VER 49.81 68.92 1.50 6.28 ind:imp:3s; +produisant produire VER 49.81 68.92 0.53 2.03 par:pre; +produise produire VER 49.81 68.92 2.15 1.08 sub:pre:1s;sub:pre:3s; +produisent produire VER 49.81 68.92 3.91 2.70 ind:pre:3p; +produises produire VER 49.81 68.92 0.01 0.00 sub:pre:2s; +produisez produire VER 49.81 68.92 0.27 0.07 imp:pre:2p;ind:pre:2p; +produisions produire VER 49.81 68.92 0.02 0.00 ind:imp:1p; +produisirent produire VER 49.81 68.92 0.01 0.27 ind:pas:3p; +produisis produire VER 49.81 68.92 0.00 0.07 ind:pas:1s; +produisit produire VER 49.81 68.92 0.74 5.88 ind:pas:3s; +produisons produire VER 49.81 68.92 0.84 0.07 imp:pre:1p;ind:pre:1p; +produit produire VER m s 49.81 68.92 20.16 22.57 ind:pre:3s;par:pas; +produite produire VER f s 49.81 68.92 1.34 3.31 par:pas; +produites produire VER f p 49.81 68.92 0.82 0.47 par:pas; +produits produit NOM m p 28.80 23.99 14.17 11.28 +prof prof NOM s 37.82 20.20 30.36 15.07 +profana profaner VER 3.12 2.50 0.23 0.07 ind:pas:3s; +profanaient profaner VER 3.12 2.50 0.00 0.07 ind:imp:3p; +profanait profaner VER 3.12 2.50 0.00 0.14 ind:imp:3s; +profanant profaner VER 3.12 2.50 0.01 0.14 par:pre; +profanateur profanateur NOM m s 0.28 0.14 0.07 0.14 +profanateurs profanateur NOM m p 0.28 0.14 0.21 0.00 +profanation profanation NOM f s 1.21 1.08 1.04 0.95 +profanations profanation NOM f p 1.21 1.08 0.16 0.14 +profanatoire profanatoire ADJ f s 0.00 0.07 0.00 0.07 +profane profane ADJ s 1.11 2.84 0.88 1.89 +profanent profaner VER 3.12 2.50 0.40 0.00 ind:pre:3p; +profaner profaner VER 3.12 2.50 0.70 0.41 inf; +profanera profaner VER 3.12 2.50 0.12 0.07 ind:fut:3s; +profanes profane ADJ p 1.11 2.84 0.23 0.95 +profanez profaner VER 3.12 2.50 0.15 0.07 imp:pre:2p;ind:pre:2p; +profanèrent profaner VER 3.12 2.50 0.00 0.07 ind:pas:3p; +profané profaner VER m s 3.12 2.50 0.89 0.47 par:pas; +profanée profaner VER f s 3.12 2.50 0.19 0.47 par:pas; +profanées profaner VER f p 3.12 2.50 0.11 0.20 par:pas; +profanés profaner VER m p 3.12 2.50 0.01 0.14 par:pas; +professa professer VER 0.47 3.51 0.00 0.07 ind:pas:3s; +professaient professer VER 0.47 3.51 0.00 0.34 ind:imp:3p; +professait professer VER 0.47 3.51 0.00 1.42 ind:imp:3s; +professant professer VER 0.47 3.51 0.00 0.20 par:pre; +professe professer VER 0.47 3.51 0.22 0.41 ind:pre:1s;ind:pre:3s; +professent professer VER 0.47 3.51 0.00 0.20 ind:pre:3p; +professer professer VER 0.47 3.51 0.11 0.07 inf; +professeur professeur NOM s 98.55 63.92 90.02 49.53 +professeure professeur NOM f s 98.55 63.92 0.17 0.00 +professeurs professeur NOM p 98.55 63.92 8.35 14.39 +professiez professer VER 0.47 3.51 0.01 0.07 ind:imp:2p; +profession profession NOM f s 9.93 15.81 9.46 13.99 +professionnalisme professionnalisme NOM m s 1.03 0.34 1.03 0.34 +professionnel professionnel ADJ m s 23.09 20.61 11.75 7.23 +professionnelle professionnel ADJ f s 23.09 20.61 7.13 6.96 +professionnellement professionnellement ADV 1.13 0.74 1.13 0.74 +professionnelles professionnel ADJ f p 23.09 20.61 1.24 3.51 +professionnels professionnel NOM m p 12.91 6.82 4.29 3.24 +professions profession NOM f p 9.93 15.81 0.46 1.82 +professons professer VER 0.47 3.51 0.00 0.07 ind:pre:1p; +professoral professoral ADJ m s 0.06 0.41 0.06 0.41 +professorat professorat NOM m s 0.02 0.34 0.02 0.34 +professé professer VER m s 0.47 3.51 0.12 0.27 par:pas; +professées professer VER f p 0.47 3.51 0.00 0.20 par:pas; +profil profil NOM m s 14.44 29.12 13.38 26.69 +profila profiler VER 1.67 6.62 0.00 0.68 ind:pas:3s; +profilage profilage NOM m s 0.12 0.07 0.12 0.07 +profilaient profiler VER 1.67 6.62 0.00 0.74 ind:imp:3p; +profilait profiler VER 1.67 6.62 0.02 0.88 ind:imp:3s; +profilant profiler VER 1.67 6.62 0.00 0.61 par:pre; +profile profiler VER 1.67 6.62 1.16 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +profilent profiler VER 1.67 6.62 0.04 0.61 ind:pre:3p; +profiler profiler VER 1.67 6.62 0.35 1.15 inf; +profileur profileur NOM m s 0.13 0.00 0.11 0.00 +profileuse profileur NOM f s 0.13 0.00 0.01 0.00 +profils profil NOM m p 14.44 29.12 1.06 2.43 +profilèrent profiler VER 1.67 6.62 0.00 0.07 ind:pas:3p; +profilé profiler VER m s 1.67 6.62 0.06 0.07 par:pas; +profilée profiler VER f s 1.67 6.62 0.02 0.47 par:pas; +profilées profiler VER f p 1.67 6.62 0.00 0.20 par:pas; +profilés profiler VER m p 1.67 6.62 0.02 0.07 par:pas; +profit profit NOM m s 14.29 25.00 12.26 22.77 +profita profiter VER 67.20 91.22 0.13 7.84 ind:pas:3s; +profitabilité profitabilité NOM f s 0.01 0.00 0.01 0.00 +profitable profitable ADJ s 1.64 1.96 1.32 1.42 +profitables profitable ADJ p 1.64 1.96 0.32 0.54 +profitai profiter VER 67.20 91.22 0.01 1.35 ind:pas:1s; +profitaient profiter VER 67.20 91.22 0.09 3.04 ind:imp:3p; +profitais profiter VER 67.20 91.22 0.60 1.28 ind:imp:1s;ind:imp:2s; +profitait profiter VER 67.20 91.22 0.52 5.95 ind:imp:3s; +profitant profiter VER 67.20 91.22 0.59 10.20 par:pre; +profite profiter VER 67.20 91.22 13.06 12.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +profitent profiter VER 67.20 91.22 1.67 3.24 ind:pre:3p; +profiter profiter VER 67.20 91.22 22.50 25.14 inf; +profitera profiter VER 67.20 91.22 0.76 0.74 ind:fut:3s; +profiterai profiter VER 67.20 91.22 1.00 0.47 ind:fut:1s; +profiteraient profiter VER 67.20 91.22 0.05 0.47 cnd:pre:3p; +profiterais profiter VER 67.20 91.22 0.31 0.27 cnd:pre:1s;cnd:pre:2s; +profiterait profiter VER 67.20 91.22 0.27 1.22 cnd:pre:3s; +profiteras profiter VER 67.20 91.22 0.23 0.07 ind:fut:2s; +profiterez profiter VER 67.20 91.22 0.18 0.07 ind:fut:2p; +profiteriez profiter VER 67.20 91.22 0.04 0.00 cnd:pre:2p; +profiterole profiterole NOM f s 0.06 0.07 0.00 0.07 +profiteroles profiterole NOM f p 0.06 0.07 0.06 0.00 +profiterons profiter VER 67.20 91.22 0.54 0.14 ind:fut:1p; +profiteront profiter VER 67.20 91.22 0.27 0.14 ind:fut:3p; +profites profiter VER 67.20 91.22 6.34 0.61 ind:pre:2s;sub:pre:2s; +profiteur profiteur NOM m s 1.00 1.35 0.50 0.54 +profiteurs profiteur NOM m p 1.00 1.35 0.47 0.74 +profiteuse profiteur NOM f s 1.00 1.35 0.03 0.07 +profitez profiter VER 67.20 91.22 8.51 1.49 imp:pre:2p;ind:pre:2p; +profitiez profiter VER 67.20 91.22 0.19 0.07 ind:imp:2p; +profitions profiter VER 67.20 91.22 0.04 0.47 ind:imp:1p; +profitâmes profiter VER 67.20 91.22 0.00 0.14 ind:pas:1p; +profitons profiter VER 67.20 91.22 2.41 0.41 imp:pre:1p;ind:pre:1p; +profitât profiter VER 67.20 91.22 0.00 0.34 sub:imp:3s; +profits profit NOM m p 14.29 25.00 2.04 2.23 +profitèrent profiter VER 67.20 91.22 0.00 0.95 ind:pas:3p; +profité profiter VER m s 67.20 91.22 6.89 12.16 par:pas; +profitée profiter VER f s 67.20 91.22 0.00 0.07 par:pas; +profond profond ADJ m s 42.41 105.74 24.72 47.77 +profonde profond ADJ f s 42.41 105.74 11.71 37.97 +profondes profond ADJ f p 42.41 105.74 3.80 11.55 +profondeur profondeur NOM f s 13.30 32.64 8.84 17.84 +profondeurs profondeur NOM f p 13.30 32.64 4.46 14.80 +profonds profond ADJ m p 42.41 105.74 2.19 8.45 +profondément profondément ADV 19.00 34.59 19.00 34.59 +profs prof NOM p 37.82 20.20 7.46 5.14 +profère proférer VER 0.88 8.24 0.22 1.01 ind:pre:3s; +profèrent proférer VER 0.88 8.24 0.01 0.14 ind:pre:3p; +proféra proférer VER 0.88 8.24 0.02 1.62 ind:pas:3s; +proféraient proférer VER 0.88 8.24 0.00 0.07 ind:imp:3p; +proférait proférer VER 0.88 8.24 0.01 0.95 ind:imp:3s; +proférant proférer VER 0.88 8.24 0.05 0.54 par:pre; +proférations profération NOM f p 0.00 0.07 0.00 0.07 +proférer proférer VER 0.88 8.24 0.36 1.89 inf; +proféreraient proférer VER 0.88 8.24 0.00 0.07 cnd:pre:3p; +proférez proférer VER 0.88 8.24 0.02 0.00 ind:pre:2p; +proférions proférer VER 0.88 8.24 0.00 0.07 ind:imp:1p; +proférât proférer VER 0.88 8.24 0.00 0.07 sub:imp:3s; +proféré proférer VER m s 0.88 8.24 0.16 0.88 par:pas; +proférée proférer VER f s 0.88 8.24 0.02 0.34 par:pas; +proférées proférer VER f p 0.88 8.24 0.01 0.27 par:pas; +proférés proférer VER m p 0.88 8.24 0.00 0.34 par:pas; +profus profus ADJ m s 0.01 0.47 0.00 0.14 +profuse profus ADJ f s 0.01 0.47 0.01 0.27 +profuses profus ADJ f p 0.01 0.47 0.00 0.07 +profusion profusion NOM f s 0.24 4.73 0.24 4.66 +profusions profusion NOM f p 0.24 4.73 0.00 0.07 +progestérone progestérone NOM f s 0.07 0.07 0.07 0.07 +prognathe prognathe ADJ s 0.00 0.47 0.00 0.47 +prognathisme prognathisme NOM m s 0.01 0.00 0.01 0.00 +programma programmer VER 7.14 2.30 0.01 0.14 ind:pas:3s; +programmable programmable ADJ f s 0.06 0.00 0.04 0.00 +programmables programmable ADJ p 0.06 0.00 0.01 0.00 +programmaient programmer VER 7.14 2.30 0.01 0.07 ind:imp:3p; +programmait programmer VER 7.14 2.30 0.01 0.14 ind:imp:3s; +programmateur programmateur NOM m s 0.19 0.14 0.04 0.07 +programmateurs programmateur NOM m p 0.19 0.14 0.14 0.07 +programmation programmation NOM f s 1.09 0.41 1.09 0.41 +programmatrice programmateur ADJ f s 0.14 0.00 0.10 0.00 +programme programme NOM m s 49.11 26.49 44.16 21.89 +programment programmer VER 7.14 2.30 0.06 0.14 ind:pre:3p; +programmer programmer VER 7.14 2.30 1.36 0.14 inf; +programmerai programmer VER 7.14 2.30 0.04 0.00 ind:fut:1s; +programmes programme NOM m p 49.11 26.49 4.95 4.59 +programmeur programmeur NOM m s 0.64 0.00 0.38 0.00 +programmeurs programmeur NOM m p 0.64 0.00 0.21 0.00 +programmeuse programmeur NOM f s 0.64 0.00 0.05 0.00 +programmez programmer VER 7.14 2.30 0.33 0.07 imp:pre:2p;ind:pre:2p; +programmons programmer VER 7.14 2.30 0.01 0.00 imp:pre:1p; +programmé programmer VER m s 7.14 2.30 3.10 0.68 par:pas; +programmée programmer VER f s 7.14 2.30 0.78 0.27 par:pas; +programmées programmer VER f p 7.14 2.30 0.32 0.27 par:pas; +programmés programmer VER m p 7.14 2.30 0.45 0.27 par:pas; +progressa progresser VER 9.92 15.81 0.01 0.47 ind:pas:3s; +progressai progresser VER 9.92 15.81 0.00 0.14 ind:pas:1s; +progressaient progresser VER 9.92 15.81 0.01 0.95 ind:imp:3p; +progressais progresser VER 9.92 15.81 0.13 0.27 ind:imp:1s; +progressait progresser VER 9.92 15.81 0.22 2.91 ind:imp:3s; +progressant progresser VER 9.92 15.81 0.04 1.82 par:pre; +progresse progresser VER 9.92 15.81 3.74 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +progressent progresser VER 9.92 15.81 0.52 1.08 ind:pre:3p; +progresser progresser VER 9.92 15.81 2.23 3.04 inf; +progressera progresser VER 9.92 15.81 0.22 0.00 ind:fut:3s; +progresseraient progresser VER 9.92 15.81 0.00 0.07 cnd:pre:3p; +progresserais progresser VER 9.92 15.81 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +progresserait progresser VER 9.92 15.81 0.01 0.07 cnd:pre:3s; +progresserez progresser VER 9.92 15.81 0.04 0.00 ind:fut:2p; +progresserons progresser VER 9.92 15.81 0.16 0.00 ind:fut:1p; +progresseront progresser VER 9.92 15.81 0.03 0.07 ind:fut:3p; +progresses progresser VER 9.92 15.81 0.63 0.00 ind:pre:2s; +progressez progresser VER 9.92 15.81 0.36 0.00 imp:pre:2p;ind:pre:2p; +progressif progressif ADJ m s 1.01 5.27 0.42 2.09 +progression progression NOM f s 1.73 6.62 1.61 6.62 +progressions progression NOM f p 1.73 6.62 0.13 0.00 +progressisme progressisme NOM m s 0.01 0.34 0.01 0.34 +progressiste progressiste ADJ s 1.08 1.08 0.81 0.68 +progressistes progressiste ADJ p 1.08 1.08 0.28 0.41 +progressive progressif ADJ f s 1.01 5.27 0.57 2.97 +progressivement progressivement ADV 1.44 8.24 1.44 8.24 +progressives progressif ADJ f p 1.01 5.27 0.02 0.20 +progressons progresser VER 9.92 15.81 0.55 0.27 imp:pre:1p;ind:pre:1p; +progressèrent progresser VER 9.92 15.81 0.00 0.07 ind:pas:3p; +progressé progresser VER m s 9.92 15.81 0.98 1.15 par:pas; +progressée progresser VER f s 9.92 15.81 0.01 0.00 par:pas; +progrès progrès NOM m 18.52 29.73 18.52 29.73 +progéniteur progéniteur NOM m s 0.00 0.07 0.00 0.07 +progéniture progéniture NOM f s 1.64 2.64 1.60 2.57 +progénitures progéniture NOM f p 1.64 2.64 0.04 0.07 +prohibait prohiber VER 0.41 1.01 0.01 0.27 ind:imp:3s; +prohibe prohiber VER 0.41 1.01 0.02 0.14 ind:pre:3s; +prohibent prohiber VER 0.41 1.01 0.01 0.00 ind:pre:3p; +prohibition prohibition NOM f s 0.79 0.54 0.79 0.54 +prohibitive prohibitif ADJ f s 0.02 0.00 0.02 0.00 +prohibé prohiber VER m s 0.41 1.01 0.19 0.27 par:pas; +prohibée prohibé ADJ f s 0.41 0.61 0.18 0.20 +prohibées prohibé ADJ f p 0.41 0.61 0.04 0.07 +prohibés prohibé ADJ m p 0.41 0.61 0.15 0.07 +proie proie NOM f s 10.61 32.50 9.19 29.59 +proies proie NOM f p 10.61 32.50 1.42 2.91 +projecteur projecteur NOM m s 5.02 12.91 3.09 5.14 +projecteurs projecteur NOM m p 5.02 12.91 1.93 7.77 +projectif projectif ADJ m s 0.01 0.00 0.01 0.00 +projectile projectile NOM m s 1.40 4.46 0.82 1.69 +projectiles projectile NOM m p 1.40 4.46 0.58 2.77 +projection projection NOM f s 4.66 6.69 3.75 5.41 +projectionniste projectionniste NOM s 0.52 0.14 0.50 0.14 +projectionnistes projectionniste NOM p 0.52 0.14 0.02 0.00 +projections projection NOM f p 4.66 6.69 0.91 1.28 +projet projet NOM m s 69.59 70.00 44.18 39.86 +projeta projeter VER 9.75 32.77 0.03 1.28 ind:pas:3s; +projetai projeter VER 9.75 32.77 0.00 0.41 ind:pas:1s; +projetaient projeter VER 9.75 32.77 0.19 1.76 ind:imp:3p; +projetais projeter VER 9.75 32.77 0.24 0.74 ind:imp:1s;ind:imp:2s; +projetait projeter VER 9.75 32.77 0.00 6.69 ind:imp:3s; +projetant projeter VER 9.75 32.77 0.25 2.16 par:pre; +projeter projeter VER 9.75 32.77 1.59 3.11 inf; +projetez projeter VER 9.75 32.77 0.28 0.00 imp:pre:2p;ind:pre:2p; +projetiez projeter VER 9.75 32.77 0.05 0.00 ind:imp:2p; +projetions projeter VER 9.75 32.77 0.05 0.20 ind:imp:1p; +projetâmes projeter VER 9.75 32.77 0.01 0.07 ind:pas:1p; +projetons projeter VER 9.75 32.77 0.38 0.07 imp:pre:1p;ind:pre:1p; +projetât projeter VER 9.75 32.77 0.00 0.14 sub:imp:3s; +projets projet NOM m p 69.59 70.00 25.41 30.14 +projette projeter VER 9.75 32.77 2.34 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +projettent projeter VER 9.75 32.77 0.39 0.81 ind:pre:3p; +projettera projeter VER 9.75 32.77 0.05 0.07 ind:fut:3s; +projetterait projeter VER 9.75 32.77 0.00 0.07 cnd:pre:3s; +projetteriez projeter VER 9.75 32.77 0.00 0.07 cnd:pre:2p; +projetterons projeter VER 9.75 32.77 0.02 0.00 ind:fut:1p; +projettes projeter VER 9.75 32.77 0.33 0.00 ind:pre:2s; +projetèrent projeter VER 9.75 32.77 0.01 0.07 ind:pas:3p; +projeté projeter VER m s 9.75 32.77 2.31 5.54 par:pas; +projetée projeter VER f s 9.75 32.77 0.47 2.57 par:pas; +projetées projeter VER f p 9.75 32.77 0.14 0.41 par:pas; +projetés projeter VER m p 9.75 32.77 0.62 1.82 par:pas; +projo projo NOM m s 0.66 0.14 0.36 0.00 +projos projo NOM m p 0.66 0.14 0.30 0.14 +prolapsus prolapsus NOM m 0.15 0.00 0.15 0.00 +prolifique prolifique ADJ s 0.20 1.62 0.17 0.95 +prolifiques prolifique ADJ p 0.20 1.62 0.03 0.68 +prolifère proliférer VER 0.73 2.09 0.16 0.61 ind:pre:1s;ind:pre:3s; +prolifèrent proliférer VER 0.73 2.09 0.21 0.27 ind:pre:3p; +proliféraient proliférer VER 0.73 2.09 0.00 0.27 ind:imp:3p; +proliférait proliférer VER 0.73 2.09 0.01 0.14 ind:imp:3s; +proliférant proliférer VER 0.73 2.09 0.01 0.00 par:pre; +proliférante proliférant ADJ f s 0.00 0.54 0.00 0.14 +proliférantes proliférant ADJ f p 0.00 0.54 0.00 0.27 +proliférants proliférant ADJ m p 0.00 0.54 0.00 0.07 +prolifération prolifération NOM f s 0.37 1.08 0.37 1.08 +proliférer proliférer VER 0.73 2.09 0.30 0.54 inf; +proliférera proliférer VER 0.73 2.09 0.01 0.00 ind:fut:3s; +proliféré proliférer VER m s 0.73 2.09 0.03 0.27 par:pas; +proline proline NOM f s 0.03 0.00 0.03 0.00 +prolixe prolixe ADJ s 0.18 1.62 0.18 1.28 +prolixes prolixe ADJ p 0.18 1.62 0.00 0.34 +prolixité prolixité NOM f s 0.00 0.20 0.00 0.20 +prolo prolo NOM s 0.90 3.04 0.58 1.35 +prologue prologue NOM m s 1.38 1.42 1.38 1.42 +prolongateur prolongateur NOM m s 0.01 0.00 0.01 0.00 +prolongation prolongation NOM f s 0.97 0.81 0.74 0.54 +prolongations prolongation NOM f p 0.97 0.81 0.23 0.27 +prolonge prolonger VER 5.27 35.00 0.99 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prolongea prolonger VER 5.27 35.00 0.13 1.89 ind:pas:3s; +prolongeaient prolonger VER 5.27 35.00 0.00 2.09 ind:imp:3p; +prolongeais prolonger VER 5.27 35.00 0.00 0.27 ind:imp:1s; +prolongeait prolonger VER 5.27 35.00 0.11 4.46 ind:imp:3s; +prolongeant prolonger VER 5.27 35.00 0.16 2.57 par:pre; +prolongement prolongement NOM m s 0.36 4.66 0.35 3.65 +prolongements prolongement NOM m p 0.36 4.66 0.01 1.01 +prolongent prolonger VER 5.27 35.00 0.19 0.95 ind:pre:3p; +prolongeât prolonger VER 5.27 35.00 0.00 0.34 sub:imp:3s; +prolonger prolonger VER 5.27 35.00 2.42 9.39 inf; +prolongera prolonger VER 5.27 35.00 0.11 0.14 ind:fut:3s; +prolongeraient prolonger VER 5.27 35.00 0.00 0.27 cnd:pre:3p; +prolongerait prolonger VER 5.27 35.00 0.00 0.74 cnd:pre:3s; +prolongerons prolonger VER 5.27 35.00 0.01 0.07 ind:fut:1p; +prolonges prolonger VER 5.27 35.00 0.04 0.07 ind:pre:2s; +prolongez prolonger VER 5.27 35.00 0.00 0.07 ind:pre:2p; +prolongèrent prolonger VER 5.27 35.00 0.01 0.41 ind:pas:3p; +prolongé prolonger VER m s 5.27 35.00 0.41 2.97 par:pas; +prolongée prolongé ADJ f s 1.14 6.49 0.59 2.23 +prolongées prolongé ADJ f p 1.14 6.49 0.06 0.74 +prolongés prolongé ADJ m p 1.14 6.49 0.17 0.81 +prolos prolo NOM p 0.90 3.04 0.32 1.69 +prolégomènes prolégomènes NOM m p 0.00 0.68 0.00 0.68 +prolétaire prolétaire NOM s 1.79 3.78 0.83 1.35 +prolétaires prolétaire NOM p 1.79 3.78 0.96 2.43 +prolétariat prolétariat NOM m s 1.12 3.65 1.12 3.58 +prolétariats prolétariat NOM m p 1.12 3.65 0.00 0.07 +prolétarien prolétarien ADJ m s 0.56 2.36 0.14 0.47 +prolétarienne prolétarien ADJ f s 0.56 2.36 0.42 1.55 +prolétariennes prolétarien ADJ f p 0.56 2.36 0.00 0.20 +prolétariens prolétarien ADJ m p 0.56 2.36 0.00 0.14 +prolétarisation prolétarisation NOM f s 0.00 0.14 0.00 0.14 +prolétariser prolétariser VER 0.00 0.14 0.00 0.14 inf; +promîmes promettre VER 185.26 101.42 0.01 0.07 ind:pas:1p; +promît promettre VER 185.26 101.42 0.00 0.14 sub:imp:3s; +promazine promazine NOM f s 0.01 0.00 0.01 0.00 +promena promener VER 37.80 97.77 0.01 4.26 ind:pas:3s; +promenade promenade NOM f s 15.34 58.11 13.45 42.43 +promenades promenade NOM f p 15.34 58.11 1.88 15.68 +promenai promener VER 37.80 97.77 0.01 1.42 ind:pas:1s; +promenaient promener VER 37.80 97.77 0.23 5.68 ind:imp:3p; +promenais promener VER 37.80 97.77 1.84 2.84 ind:imp:1s;ind:imp:2s; +promenait promener VER 37.80 97.77 1.33 12.50 ind:imp:3s; +promenant promener VER 37.80 97.77 0.68 6.82 par:pre; +promener promener VER 37.80 97.77 20.02 32.43 inf;;inf;;inf;; +promeneur promeneur NOM m s 0.57 8.92 0.22 2.77 +promeneurs promeneur NOM m p 0.57 8.92 0.33 5.47 +promeneuse promeneur NOM f s 0.57 8.92 0.02 0.27 +promeneuses promeneur NOM f p 0.57 8.92 0.00 0.41 +promenez promener VER 37.80 97.77 0.91 0.61 imp:pre:2p;ind:pre:2p; +promeniez promener VER 37.80 97.77 0.03 0.20 ind:imp:2p; +promenions promener VER 37.80 97.77 0.21 1.89 ind:imp:1p; +promenoir promenoir NOM m s 0.00 0.54 0.00 0.54 +promenâmes promener VER 37.80 97.77 0.01 0.20 ind:pas:1p; +promenons promener VER 37.80 97.77 0.15 0.74 imp:pre:1p;ind:pre:1p; +promenât promener VER 37.80 97.77 0.00 0.07 sub:imp:3s; +promenèrent promener VER 37.80 97.77 0.00 1.35 ind:pas:3p; +promené promener VER m s 37.80 97.77 0.85 4.26 par:pas; +promenée promener VER f s 37.80 97.77 0.39 2.09 par:pas; +promenées promener VER f p 37.80 97.77 0.02 0.34 par:pas; +promenés promener VER m p 37.80 97.77 0.75 2.57 par:pas; +promesse promesse NOM f s 32.20 40.20 20.45 21.76 +promesses promesse NOM f p 32.20 40.20 11.75 18.45 +promet promettre VER 185.26 101.42 8.16 6.35 ind:pre:3s; +promets promettre VER 185.26 101.42 68.81 12.30 imp:pre:2s;ind:pre:1s;ind:pre:2s; +promettaient promettre VER 185.26 101.42 0.17 1.82 ind:imp:3p; +promettais promettre VER 185.26 101.42 0.39 1.69 ind:imp:1s;ind:imp:2s; +promettait promettre VER 185.26 101.42 0.82 8.72 ind:imp:3s; +promettant promettre VER 185.26 101.42 0.77 3.38 par:pre; +promette promettre VER 185.26 101.42 0.67 0.34 sub:pre:1s;sub:pre:3s; +promettent promettre VER 185.26 101.42 0.77 1.28 ind:pre:3p; +promettes promettre VER 185.26 101.42 0.67 0.07 sub:pre:2s; +prometteur prometteur ADJ m s 3.96 2.57 2.75 1.15 +prometteurs prometteur ADJ m p 3.96 2.57 0.29 0.61 +prometteuse prometteur ADJ f s 3.96 2.57 0.76 0.54 +prometteuses prometteur ADJ f p 3.96 2.57 0.16 0.27 +promettez promettre VER 185.26 101.42 7.25 1.42 imp:pre:2p;ind:pre:2p; +promettiez promettre VER 185.26 101.42 0.19 0.14 ind:imp:2p; +promettons promettre VER 185.26 101.42 0.76 0.20 imp:pre:1p;ind:pre:1p; +promettra promettre VER 185.26 101.42 0.03 0.00 ind:fut:3s; +promettrai promettre VER 185.26 101.42 0.28 0.00 ind:fut:1s; +promettraient promettre VER 185.26 101.42 0.00 0.07 cnd:pre:3p; +promettrais promettre VER 185.26 101.42 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +promettrait promettre VER 185.26 101.42 0.00 0.14 cnd:pre:3s; +promettras promettre VER 185.26 101.42 0.00 0.07 ind:fut:2s; +promettre promettre VER 185.26 101.42 10.05 7.16 inf; +promettriez promettre VER 185.26 101.42 0.01 0.00 cnd:pre:2p; +promettront promettre VER 185.26 101.42 0.01 0.14 ind:fut:3p; +promeut promouvoir VER 6.08 3.11 0.04 0.00 ind:pre:3s; +promirent promettre VER 185.26 101.42 0.01 0.34 ind:pas:3p; +promis promettre VER m 185.26 101.42 82.83 42.43 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +promiscuité promiscuité NOM f s 0.57 4.26 0.57 3.85 +promiscuités promiscuité NOM f p 0.57 4.26 0.00 0.41 +promise promis ADJ f s 10.21 6.62 2.26 4.12 +promises promettre VER f p 185.26 101.42 0.34 0.81 par:pas; +promit promettre VER 185.26 101.42 0.52 10.61 ind:pas:3s; +promo promo NOM f s 4.86 0.34 4.74 0.34 +promontoire promontoire NOM m s 0.18 3.24 0.18 2.77 +promontoires promontoire NOM m p 0.18 3.24 0.00 0.47 +promos promo NOM f p 4.86 0.34 0.12 0.00 +promoteur promoteur NOM m s 1.41 1.82 1.12 0.81 +promoteurs promoteur NOM m p 1.41 1.82 0.28 1.01 +promotion promotion NOM f s 14.81 7.64 14.12 6.55 +promotionnait promotionner VER 0.00 0.07 0.00 0.07 ind:imp:3s; +promotionnel promotionnel ADJ m s 0.23 0.14 0.10 0.07 +promotionnelle promotionnel ADJ f s 0.23 0.14 0.08 0.00 +promotionnelles promotionnel ADJ f p 0.23 0.14 0.05 0.07 +promotions promotion NOM f p 14.81 7.64 0.70 1.08 +promotrice promoteur NOM f s 1.41 1.82 0.01 0.00 +promouvaient promouvoir VER 6.08 3.11 0.01 0.07 ind:imp:3p; +promouvez promouvoir VER 6.08 3.11 0.01 0.00 ind:pre:2p; +promouvoir promouvoir VER 6.08 3.11 1.56 0.74 inf; +prompt prompt ADJ m s 2.06 8.65 1.70 3.72 +prompte prompt ADJ f s 2.06 8.65 0.22 2.57 +promptement promptement ADV 0.35 2.70 0.35 2.70 +promptes prompt ADJ f p 2.06 8.65 0.03 0.61 +prompteur prompteur NOM m s 0.24 0.07 0.21 0.00 +prompteurs prompteur NOM m p 0.24 0.07 0.03 0.07 +promptitude promptitude NOM f s 0.21 2.23 0.21 2.23 +prompto prompto ADV 0.00 0.07 0.00 0.07 +prompts prompt ADJ m p 2.06 8.65 0.12 1.76 +promène promener VER 37.80 97.77 6.97 11.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +promènent promener VER 37.80 97.77 1.58 3.11 ind:pre:3p; +promènera promener VER 37.80 97.77 0.30 0.14 ind:fut:3s; +promènerai promener VER 37.80 97.77 0.06 0.81 ind:fut:1s; +promèneraient promener VER 37.80 97.77 0.12 0.20 cnd:pre:3p; +promènerais promener VER 37.80 97.77 0.01 0.27 cnd:pre:1s; +promènerait promener VER 37.80 97.77 0.16 0.34 cnd:pre:3s; +promèneras promener VER 37.80 97.77 0.03 0.14 ind:fut:2s; +promènerez promener VER 37.80 97.77 0.04 0.07 ind:fut:2p; +promènerions promener VER 37.80 97.77 0.00 0.07 cnd:pre:1p; +promènerons promener VER 37.80 97.77 0.01 0.14 ind:fut:1p; +promènes promener VER 37.80 97.77 1.08 0.68 ind:pre:2s; +promu promouvoir VER m s 6.08 3.11 3.56 1.62 par:pas; +promue promouvoir VER f s 6.08 3.11 0.65 0.34 par:pas; +promues promouvoir VER f p 6.08 3.11 0.00 0.07 par:pas; +promulgation promulgation NOM f s 0.04 0.34 0.04 0.34 +promulguait promulguer VER 0.24 1.82 0.00 0.20 ind:imp:3s; +promulguant promulguer VER 0.24 1.82 0.10 0.07 par:pre; +promulguer promulguer VER 0.24 1.82 0.06 0.41 inf; +promulguera promulguer VER 0.24 1.82 0.00 0.07 ind:fut:3s; +promulgué promulguer VER m s 0.24 1.82 0.04 0.20 par:pas; +promulguée promulguer VER f s 0.24 1.82 0.01 0.34 par:pas; +promulguées promulguer VER f p 0.24 1.82 0.03 0.41 par:pas; +promulgués promulguer VER m p 0.24 1.82 0.00 0.14 par:pas; +promus promouvoir VER m p 6.08 3.11 0.23 0.20 ind:pas:1s;par:pas; +promut promouvoir VER 6.08 3.11 0.01 0.07 ind:pas:3s; +prométhéen prométhéen ADJ m s 0.04 0.00 0.03 0.00 +prométhéenne prométhéen ADJ f s 0.04 0.00 0.01 0.00 +pronateurs pronateur ADJ m p 0.01 0.00 0.01 0.00 +pronation pronation NOM f s 0.04 0.14 0.04 0.14 +pronom pronom NOM m s 0.22 0.74 0.12 0.68 +pronominal pronominal ADJ m s 0.00 0.20 0.00 0.07 +pronominale pronominal ADJ f s 0.00 0.20 0.00 0.07 +pronominaux pronominal ADJ m p 0.00 0.20 0.00 0.07 +pronoms pronom NOM m p 0.22 0.74 0.10 0.07 +prononce prononcer VER 24.81 86.08 5.82 9.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +prononcent prononcer VER 24.81 86.08 0.51 0.74 ind:pre:3p; +prononcer prononcer VER 24.81 86.08 7.56 21.76 inf; +prononcera prononcer VER 24.81 86.08 0.10 0.54 ind:fut:3s; +prononcerai prononcer VER 24.81 86.08 0.20 0.00 ind:fut:1s; +prononceraient prononcer VER 24.81 86.08 0.00 0.14 cnd:pre:3p; +prononcerais prononcer VER 24.81 86.08 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +prononcerait prononcer VER 24.81 86.08 0.03 0.47 cnd:pre:3s; +prononceras prononcer VER 24.81 86.08 0.03 0.00 ind:fut:2s; +prononcerez prononcer VER 24.81 86.08 0.02 0.14 ind:fut:2p; +prononceriez prononcer VER 24.81 86.08 0.00 0.07 cnd:pre:2p; +prononcerons prononcer VER 24.81 86.08 0.12 0.00 ind:fut:1p; +prononceront prononcer VER 24.81 86.08 0.02 0.14 ind:fut:3p; +prononces prononcer VER 24.81 86.08 0.85 0.00 ind:pre:2s; +prononcez prononcer VER 24.81 86.08 0.91 0.41 imp:pre:2p;ind:pre:2p; +prononciation prononciation NOM f s 0.68 1.69 0.67 1.55 +prononciations prononciation NOM f p 0.68 1.69 0.01 0.14 +prononciez prononcer VER 24.81 86.08 0.18 0.00 ind:imp:2p; +prononcions prononcer VER 24.81 86.08 0.04 0.14 ind:imp:1p; +prononcèrent prononcer VER 24.81 86.08 0.00 0.41 ind:pas:3p; +prononcé prononcer VER m s 24.81 86.08 4.99 16.69 par:pas; +prononcée prononcer VER f s 24.81 86.08 0.57 4.59 par:pas; +prononcées prononcer VER f p 24.81 86.08 0.18 1.69 par:pas; +prononcés prononcer VER m p 24.81 86.08 0.50 4.12 par:pas; +prononça prononcer VER 24.81 86.08 0.58 8.78 ind:pas:3s; +prononçable prononçable ADJ s 0.00 0.27 0.00 0.27 +prononçai prononcer VER 24.81 86.08 0.01 1.28 ind:pas:1s; +prononçaient prononcer VER 24.81 86.08 0.01 1.15 ind:imp:3p; +prononçais prononcer VER 24.81 86.08 0.05 0.47 ind:imp:1s; +prononçait prononcer VER 24.81 86.08 0.38 8.58 ind:imp:3s; +prononçant prononcer VER 24.81 86.08 0.95 3.85 par:pre; +prononças prononcer VER 24.81 86.08 0.10 0.00 ind:pas:2s; +prononçons prononcer VER 24.81 86.08 0.07 0.20 imp:pre:1p;ind:pre:1p; +prononçât prononcer VER 24.81 86.08 0.00 0.54 sub:imp:3s; +pronostic pronostic NOM m s 1.78 2.70 0.90 1.01 +pronostics pronostic NOM m p 1.78 2.70 0.89 1.69 +pronostiquait pronostiquer VER 0.12 0.47 0.01 0.20 ind:imp:3s; +pronostique pronostiquer VER 0.12 0.47 0.06 0.14 ind:pre:1s;ind:pre:3s; +pronostiquer pronostiquer VER 0.12 0.47 0.04 0.14 inf; +pronostiqueur pronostiqueur NOM m s 0.06 0.00 0.06 0.00 +pronostiquiez pronostiquer VER 0.12 0.47 0.01 0.00 ind:imp:2p; +pronunciamiento pronunciamiento NOM m s 0.00 0.14 0.00 0.14 +propagande propagande NOM f s 4.98 10.07 4.98 9.86 +propagandes propagande NOM f p 4.98 10.07 0.00 0.20 +propagandiste propagandiste NOM s 0.02 0.54 0.01 0.20 +propagandistes propagandiste NOM p 0.02 0.54 0.01 0.34 +propagateur propagateur NOM m s 0.03 0.41 0.02 0.14 +propagateurs propagateur NOM m p 0.03 0.41 0.01 0.27 +propagation propagation NOM f s 0.59 0.95 0.59 0.88 +propagations propagation NOM f p 0.59 0.95 0.00 0.07 +propage propager VER 6.42 6.01 1.98 0.81 ind:pre:1s;ind:pre:3s; +propagea propager VER 6.42 6.01 0.01 0.61 ind:pas:3s; +propageaient propager VER 6.42 6.01 0.00 0.61 ind:imp:3p; +propageait propager VER 6.42 6.01 0.20 1.01 ind:imp:3s; +propageant propager VER 6.42 6.01 0.08 0.27 par:pre; +propagent propager VER 6.42 6.01 0.30 0.68 ind:pre:3p; +propageât propager VER 6.42 6.01 0.00 0.07 sub:imp:3s; +propager propager VER 6.42 6.01 1.99 0.88 inf; +propagera propager VER 6.42 6.01 0.41 0.00 ind:fut:3s; +propageraient propager VER 6.42 6.01 0.00 0.07 cnd:pre:3p; +propagerait propager VER 6.42 6.01 0.08 0.00 cnd:pre:3s; +propagez propager VER 6.42 6.01 0.05 0.14 imp:pre:2p;ind:pre:2p; +propagèrent propager VER 6.42 6.01 0.01 0.20 ind:pas:3p; +propagé propager VER m s 6.42 6.01 0.96 0.34 par:pas; +propagée propager VER f s 6.42 6.01 0.30 0.14 par:pas; +propagées propager VER f p 6.42 6.01 0.02 0.14 par:pas; +propagés propager VER m p 6.42 6.01 0.02 0.07 par:pas; +propane propane NOM m s 0.39 0.00 0.39 0.00 +propension propension NOM f s 0.41 1.96 0.41 1.96 +propergol propergol NOM m s 0.01 0.00 0.01 0.00 +prophase prophase NOM f s 0.02 0.00 0.02 0.00 +prophète prophète NOM m s 12.36 10.61 8.49 6.42 +prophètes prophète NOM m p 12.36 10.61 2.83 4.05 +prophétesse prophète NOM f s 12.36 10.61 1.04 0.14 +prophétie prophétie NOM f s 5.36 3.51 3.69 1.89 +prophéties prophétie NOM f p 5.36 3.51 1.66 1.62 +prophétique prophétique ADJ s 0.84 1.55 0.55 1.01 +prophétiquement prophétiquement ADV 0.00 0.07 0.00 0.07 +prophétiques prophétique ADJ p 0.84 1.55 0.29 0.54 +prophétisaient prophétiser VER 0.43 1.35 0.00 0.20 ind:imp:3p; +prophétisait prophétiser VER 0.43 1.35 0.00 0.47 ind:imp:3s; +prophétisant prophétiser VER 0.43 1.35 0.02 0.00 par:pre; +prophétise prophétiser VER 0.43 1.35 0.02 0.27 imp:pre:2s;ind:pre:3s; +prophétisent prophétiser VER 0.43 1.35 0.02 0.07 ind:pre:3p; +prophétiser prophétiser VER 0.43 1.35 0.14 0.14 inf; +prophétisez prophétiser VER 0.43 1.35 0.00 0.07 ind:pre:2p; +prophétisé prophétiser VER m s 0.43 1.35 0.22 0.14 par:pas; +prophylactique prophylactique ADJ s 0.17 0.41 0.14 0.14 +prophylactiques prophylactique ADJ m p 0.17 0.41 0.03 0.27 +prophylaxie prophylaxie NOM f s 0.04 0.14 0.04 0.14 +propice propice ADJ s 2.86 9.80 2.13 7.77 +propices propice ADJ p 2.86 9.80 0.73 2.03 +propionate propionate NOM m s 0.01 0.07 0.01 0.07 +propitiatoire propitiatoire ADJ s 0.00 0.68 0.00 0.47 +propitiatoires propitiatoire ADJ f p 0.00 0.68 0.00 0.20 +propolis propolis NOM m 0.10 0.00 0.10 0.00 +proportion proportion NOM f s 3.17 12.70 1.30 4.26 +proportionnalité proportionnalité NOM f s 0.12 0.00 0.12 0.00 +proportionnel proportionnel ADJ m s 0.86 1.08 0.20 0.34 +proportionnelle proportionnel ADJ f s 0.86 1.08 0.51 0.74 +proportionnellement proportionnellement ADV 0.08 0.34 0.08 0.34 +proportionnelles proportionnel ADJ f p 0.86 1.08 0.15 0.00 +proportionner proportionner VER 0.07 1.22 0.00 0.14 inf; +proportionné proportionné ADJ m s 0.46 0.74 0.16 0.41 +proportionnée proportionné ADJ f s 0.46 0.74 0.26 0.20 +proportionnées proportionner VER f p 0.07 1.22 0.02 0.00 par:pas; +proportionnés proportionné ADJ m p 0.46 0.74 0.04 0.07 +proportions proportion NOM f p 3.17 12.70 1.87 8.45 +propos propos NOM m 115.21 106.28 115.21 106.28 +proposa proposer VER 70.00 119.66 0.52 22.91 ind:pas:3s; +proposai proposer VER 70.00 119.66 0.01 2.50 ind:pas:1s; +proposaient proposer VER 70.00 119.66 0.10 3.11 ind:imp:3p; +proposais proposer VER 70.00 119.66 0.80 3.11 ind:imp:1s;ind:imp:2s; +proposait proposer VER 70.00 119.66 0.48 15.61 ind:imp:3s; +proposant proposer VER 70.00 119.66 0.64 3.38 par:pre; +propose proposer VER 70.00 119.66 23.57 21.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +proposent proposer VER 70.00 119.66 1.21 2.16 ind:pre:3p; +proposer proposer VER 70.00 119.66 13.44 15.54 inf;; +proposera proposer VER 70.00 119.66 0.28 0.34 ind:fut:3s; +proposerai proposer VER 70.00 119.66 0.48 0.14 ind:fut:1s; +proposeraient proposer VER 70.00 119.66 0.03 0.14 cnd:pre:3p; +proposerais proposer VER 70.00 119.66 0.28 0.41 cnd:pre:1s;cnd:pre:2s; +proposerait proposer VER 70.00 119.66 0.01 0.74 cnd:pre:3s; +proposeras proposer VER 70.00 119.66 0.05 0.07 ind:fut:2s; +proposerez proposer VER 70.00 119.66 0.04 0.14 ind:fut:2p; +proposeriez proposer VER 70.00 119.66 0.01 0.00 cnd:pre:2p; +proposerions proposer VER 70.00 119.66 0.00 0.07 cnd:pre:1p; +proposerons proposer VER 70.00 119.66 0.19 0.00 ind:fut:1p; +proposeront proposer VER 70.00 119.66 0.13 0.14 ind:fut:3p; +proposes proposer VER 70.00 119.66 5.20 0.61 ind:pre:2s; +proposez proposer VER 70.00 119.66 3.30 1.82 imp:pre:2p;ind:pre:2p; +proposiez proposer VER 70.00 119.66 0.09 0.00 ind:imp:2p; +proposions proposer VER 70.00 119.66 0.04 0.41 ind:imp:1p; +proposition proposition NOM f s 22.43 20.14 19.28 12.64 +propositions proposition NOM f p 22.43 20.14 3.15 7.50 +proposâmes proposer VER 70.00 119.66 0.00 0.07 ind:pas:1p; +proposons proposer VER 70.00 119.66 1.13 0.27 imp:pre:1p;ind:pre:1p; +proposât proposer VER 70.00 119.66 0.00 0.41 sub:imp:3s; +proposèrent proposer VER 70.00 119.66 0.01 1.08 ind:pas:3p; +proposé proposer VER m s 70.00 119.66 16.86 18.92 imp:pre:2s;par:pas; +proposée proposer VER f s 70.00 119.66 0.44 1.96 par:pas; +proposées proposé ADJ f p 0.54 1.15 0.14 0.27 +proposés proposer VER m p 70.00 119.66 0.63 1.22 par:pas; +propre_à_rien propre_à_rien NOM m s 0.00 0.07 0.00 0.07 +propre propre ADJ s 163.24 207.50 120.61 149.80 +proprement proprement ADV 4.54 16.22 4.54 16.22 +propres propre ADJ p 163.24 207.50 42.63 57.70 +propret propret ADJ m s 0.18 2.03 0.02 0.81 +proprets propret ADJ m p 0.18 2.03 0.03 0.07 +proprette propret ADJ f s 0.18 2.03 0.10 0.54 +proprettes propret ADJ f p 0.18 2.03 0.02 0.61 +propreté propreté NOM f s 2.17 7.97 2.17 7.97 +proprio proprio NOM m s 3.55 4.12 3.08 3.78 +proprios proprio NOM m p 3.55 4.12 0.47 0.34 +propriétaire propriétaire NOM s 37.27 32.77 29.77 23.51 +propriétaires propriétaire NOM p 37.27 32.77 7.50 9.26 +propriété propriété NOM f s 22.70 20.61 19.18 17.43 +propriétés propriété NOM f p 22.70 20.61 3.52 3.18 +propédeute propédeute NOM s 0.00 0.07 0.00 0.07 +propulsa propulser VER 1.37 5.95 0.01 0.61 ind:pas:3s; +propulsaient propulser VER 1.37 5.95 0.00 0.14 ind:imp:3p; +propulsais propulser VER 1.37 5.95 0.00 0.07 ind:imp:1s; +propulsait propulser VER 1.37 5.95 0.01 0.47 ind:imp:3s; +propulsant propulser VER 1.37 5.95 0.04 0.27 par:pre; +propulse propulser VER 1.37 5.95 0.32 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +propulsent propulser VER 1.37 5.95 0.02 0.20 ind:pre:3p; +propulser propulser VER 1.37 5.95 0.22 0.74 inf; +propulsera propulser VER 1.37 5.95 0.07 0.00 ind:fut:3s; +propulserait propulser VER 1.37 5.95 0.01 0.00 cnd:pre:3s; +propulseur propulseur NOM m s 1.88 0.07 0.69 0.07 +propulseurs propulseur NOM m p 1.88 0.07 1.18 0.00 +propulsif propulsif ADJ m s 0.01 0.00 0.01 0.00 +propulsion propulsion NOM f s 2.07 0.34 2.05 0.34 +propulsions propulsion NOM f p 2.07 0.34 0.02 0.00 +propulsât propulser VER 1.37 5.95 0.00 0.07 sub:imp:3s; +propulsé propulser VER m s 1.37 5.95 0.36 1.35 par:pas; +propulsée propulser VER f s 1.37 5.95 0.19 0.88 par:pas; +propulsées propulser VER f p 1.37 5.95 0.02 0.07 par:pas; +propulsés propulser VER m p 1.37 5.95 0.10 0.20 par:pas; +propylène propylène NOM m s 0.05 0.00 0.05 0.00 +propylées propylée NOM m p 0.00 0.14 0.00 0.14 +prorata prorata NOM m 0.15 0.20 0.15 0.20 +prorogation prorogation NOM f s 0.04 0.07 0.04 0.07 +proroger proroger VER 0.10 0.14 0.10 0.00 inf; +prorogé proroger VER m s 0.10 0.14 0.00 0.14 par:pas; +pros pro NOM p 19.45 2.03 5.00 0.41 +prosaïque prosaïque ADJ s 0.30 1.55 0.28 0.88 +prosaïquement prosaïquement ADV 0.00 0.47 0.00 0.47 +prosaïques prosaïque ADJ p 0.30 1.55 0.03 0.68 +prosaïsme prosaïsme NOM m s 0.00 0.14 0.00 0.14 +prosateur prosateur NOM m s 0.00 0.20 0.00 0.14 +prosateurs prosateur NOM m p 0.00 0.20 0.00 0.07 +proscenium proscenium NOM m s 0.01 0.14 0.01 0.14 +proscription proscription NOM f s 0.01 0.27 0.01 0.20 +proscriptions proscription NOM f p 0.01 0.27 0.00 0.07 +proscrire proscrire VER 1.19 1.28 0.35 0.14 inf; +proscrit proscrire VER m s 1.19 1.28 0.53 0.27 ind:pre:3s;par:pas; +proscrite proscrire VER f s 1.19 1.28 0.02 0.07 par:pas; +proscrites proscrire VER f p 1.19 1.28 0.11 0.07 par:pas; +proscrits proscrit NOM m p 0.55 0.54 0.33 0.41 +proscrivait proscrire VER 1.19 1.28 0.00 0.14 ind:imp:3s; +proscrivant proscrire VER 1.19 1.28 0.00 0.14 par:pre; +proscrivit proscrire VER 1.19 1.28 0.00 0.14 ind:pas:3s; +prose prose NOM f s 0.81 3.31 0.81 3.31 +prosit prosit ONO 0.38 0.41 0.38 0.41 +prosodie prosodie NOM f s 0.00 0.27 0.00 0.27 +prosodique prosodique ADJ f s 0.00 0.07 0.00 0.07 +prosopopées prosopopée NOM f p 0.00 0.07 0.00 0.07 +prosoviétique prosoviétique ADJ s 0.00 0.07 0.00 0.07 +prospect prospect NOM m s 0.18 0.00 0.18 0.00 +prospectais prospecter VER 0.82 1.49 0.01 0.07 ind:imp:1s; +prospectait prospecter VER 0.82 1.49 0.01 0.20 ind:imp:3s; +prospectant prospecter VER 0.82 1.49 0.00 0.20 par:pre; +prospecte prospecter VER 0.82 1.49 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prospecter prospecter VER 0.82 1.49 0.66 0.68 inf; +prospecteur prospecteur NOM m s 0.94 0.27 0.34 0.07 +prospecteurs prospecteur NOM m p 0.94 0.27 0.60 0.20 +prospectif prospectif ADJ m s 0.00 0.34 0.00 0.20 +prospection prospection NOM f s 0.17 2.70 0.17 2.30 +prospections prospection NOM f p 0.17 2.70 0.00 0.41 +prospective prospective NOM f s 0.02 0.14 0.02 0.14 +prospecté prospecter VER m s 0.82 1.49 0.11 0.14 par:pas; +prospectus prospectus NOM m 2.06 6.49 2.06 6.49 +prospère prospère ADJ s 3.54 3.18 3.19 2.23 +prospèrent prospérer VER 1.31 2.03 0.16 0.41 ind:pre:3p; +prospères prospère ADJ p 3.54 3.18 0.35 0.95 +prospéra prospérer VER 1.31 2.03 0.05 0.14 ind:pas:3s; +prospéraient prospérer VER 1.31 2.03 0.00 0.41 ind:imp:3p; +prospérait prospérer VER 1.31 2.03 0.04 0.41 ind:imp:3s; +prospérer prospérer VER 1.31 2.03 0.44 0.47 inf; +prospérera prospérer VER 1.31 2.03 0.05 0.00 ind:fut:3s; +prospéreraient prospérer VER 1.31 2.03 0.01 0.00 cnd:pre:3p; +prospérité prospérité NOM f s 3.09 5.14 3.08 4.93 +prospérités prospérité NOM f p 3.09 5.14 0.01 0.20 +prospérons prospérer VER 1.31 2.03 0.01 0.00 ind:pre:1p; +prospérèrent prospérer VER 1.31 2.03 0.00 0.07 ind:pas:3p; +prospéré prospérer VER m s 1.31 2.03 0.34 0.00 par:pas; +prostate prostate NOM f s 1.59 1.42 1.59 1.42 +prostatectomie prostatectomie NOM f s 0.01 0.00 0.01 0.00 +prostatique prostatique ADJ s 0.04 0.20 0.04 0.20 +prostatite prostatite NOM f s 0.11 0.00 0.11 0.00 +prosterna prosterner VER 1.75 4.73 0.01 0.68 ind:pas:3s; +prosternaient prosterner VER 1.75 4.73 0.04 0.07 ind:imp:3p; +prosternais prosterner VER 1.75 4.73 0.14 0.07 ind:imp:1s; +prosternait prosterner VER 1.75 4.73 0.00 0.20 ind:imp:3s; +prosternant prosterner VER 1.75 4.73 0.18 0.14 par:pre; +prosternation prosternation NOM f s 0.11 0.27 0.09 0.07 +prosternations prosternation NOM f p 0.11 0.27 0.02 0.20 +prosterne prosterner VER 1.75 4.73 0.52 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prosternent prosterner VER 1.75 4.73 0.12 0.07 ind:pre:3p; +prosterner prosterner VER 1.75 4.73 0.12 0.95 inf; +prosternera prosterner VER 1.75 4.73 0.07 0.00 ind:fut:3s; +prosternerait prosterner VER 1.75 4.73 0.00 0.07 cnd:pre:3s; +prosterneras prosterner VER 1.75 4.73 0.00 0.14 ind:fut:2s; +prosternerons prosterner VER 1.75 4.73 0.03 0.00 ind:fut:1p; +prosterneront prosterner VER 1.75 4.73 0.01 0.00 ind:fut:3p; +prosternez prosterner VER 1.75 4.73 0.49 0.14 imp:pre:2p;ind:pre:2p; +prosternons prosterner VER 1.75 4.73 0.01 0.00 imp:pre:1p; +prosternèrent prosterner VER 1.75 4.73 0.01 0.14 ind:pas:3p; +prosterné prosterner VER m s 1.75 4.73 0.01 1.15 par:pas; +prosternée prosterner VER f s 1.75 4.73 0.00 0.27 par:pas; +prosternées prosterner VER f p 1.75 4.73 0.00 0.14 par:pas; +prosternés prosterner VER m p 1.75 4.73 0.01 0.27 par:pas; +prosthétique prosthétique ADJ m s 0.01 0.00 0.01 0.00 +prostitua prostituer VER 3.24 1.49 0.00 0.07 ind:pas:3s; +prostituais prostituer VER 3.24 1.49 0.03 0.00 ind:imp:1s; +prostituait prostituer VER 3.24 1.49 0.16 0.20 ind:imp:3s; +prostituant prostituer VER 3.24 1.49 0.01 0.07 par:pre; +prostitue prostituer VER 3.24 1.49 0.92 0.07 ind:pre:1s;ind:pre:3s; +prostituent prostituer VER 3.24 1.49 0.13 0.07 ind:pre:3p; +prostituer prostituer VER 3.24 1.49 0.77 0.47 inf; +prostituerais prostituer VER 3.24 1.49 0.14 0.00 cnd:pre:2s; +prostitution prostitution NOM f s 6.72 2.97 6.72 2.77 +prostitutionnel prostitutionnel ADJ m s 0.00 0.07 0.00 0.07 +prostitutions prostitution NOM f p 6.72 2.97 0.00 0.20 +prostitué prostituer VER m s 3.24 1.49 0.44 0.00 par:pas; +prostituée prostitué NOM f s 14.21 9.46 7.53 5.68 +prostituées prostitué NOM f p 14.21 9.46 5.63 3.58 +prostitués prostitué NOM m p 14.21 9.46 0.61 0.14 +prostrant prostrer VER 0.00 0.07 0.00 0.07 par:pre; +prostration prostration NOM f s 0.14 1.01 0.14 0.95 +prostrations prostration NOM f p 0.14 1.01 0.00 0.07 +prostré prostré ADJ m s 0.42 4.93 0.25 2.03 +prostrée prostré ADJ f s 0.42 4.93 0.15 2.36 +prostrées prostré ADJ f p 0.42 4.93 0.00 0.07 +prostrés prostré ADJ m p 0.42 4.93 0.02 0.47 +prosélyte prosélyte NOM s 0.14 0.20 0.14 0.00 +prosélytes prosélyte NOM p 0.14 0.20 0.00 0.20 +prosélytique prosélytique ADJ m s 0.00 0.07 0.00 0.07 +prosélytisme prosélytisme NOM m s 0.20 0.47 0.20 0.47 +protagoniste protagoniste NOM s 0.72 2.03 0.42 0.54 +protagonistes protagoniste NOM p 0.72 2.03 0.30 1.49 +protal protal NOM m s 0.01 0.20 0.01 0.20 +prote prote NOM m s 0.00 1.35 0.00 1.22 +protecteur protecteur NOM m s 3.79 5.61 2.71 4.26 +protecteurs protecteur NOM m p 3.79 5.61 0.79 0.68 +protection protection NOM f s 24.78 17.64 23.88 17.09 +protectionnisme protectionnisme NOM m s 0.02 0.14 0.02 0.14 +protections protection NOM f p 24.78 17.64 0.91 0.54 +protectorat protectorat NOM m s 0.18 1.01 0.18 0.88 +protectorats protectorat NOM m p 0.18 1.01 0.00 0.14 +protectrice protecteur ADJ f s 3.98 10.68 0.92 3.58 +protectrices protecteur ADJ f p 3.98 10.68 0.21 0.74 +protes prote NOM m p 0.00 1.35 0.00 0.14 +protesta protester VER 10.13 38.58 0.04 8.99 ind:pas:3s; +protestai protester VER 10.13 38.58 0.00 2.43 ind:pas:1s; +protestaient protester VER 10.13 38.58 0.05 0.61 ind:imp:3p; +protestais protester VER 10.13 38.58 0.03 1.01 ind:imp:1s; +protestait protester VER 10.13 38.58 0.08 4.12 ind:imp:3s; +protestant protestant ADJ m s 2.66 3.99 0.91 1.42 +protestante protestant ADJ f s 2.66 3.99 0.91 1.15 +protestantes protestant ADJ f p 2.66 3.99 0.14 0.61 +protestantisme protestantisme NOM m s 0.31 0.81 0.31 0.81 +protestants protestant NOM m p 2.43 4.12 1.79 1.76 +protestataires protestataire NOM p 0.07 0.07 0.07 0.07 +protestation protestation NOM f s 3.14 13.45 1.69 6.49 +protestations protestation NOM f p 3.14 13.45 1.45 6.96 +proteste protester VER 10.13 38.58 3.06 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +protestent protester VER 10.13 38.58 1.06 0.61 ind:pre:3p; +protester protester VER 10.13 38.58 3.44 8.65 inf; +protestera protester VER 10.13 38.58 0.31 0.14 ind:fut:3s; +protesterai protester VER 10.13 38.58 0.05 0.14 ind:fut:1s; +protesterais protester VER 10.13 38.58 0.01 0.20 cnd:pre:1s;cnd:pre:2s; +protesterait protester VER 10.13 38.58 0.02 0.07 cnd:pre:3s; +protesterons protester VER 10.13 38.58 0.02 0.00 ind:fut:1p; +protestes protester VER 10.13 38.58 0.04 0.14 ind:pre:2s; +protestez protester VER 10.13 38.58 0.52 0.61 imp:pre:2p;ind:pre:2p; +protestions protester VER 10.13 38.58 0.00 0.14 ind:imp:1p; +protestâmes protester VER 10.13 38.58 0.00 0.07 ind:pas:1p; +protestons protester VER 10.13 38.58 0.36 0.00 imp:pre:1p;ind:pre:1p; +protestât protester VER 10.13 38.58 0.00 0.07 sub:imp:3s; +protestèrent protester VER 10.13 38.58 0.01 0.20 ind:pas:3p; +protesté protester VER m s 10.13 38.58 0.88 2.64 par:pas; +protestés protester VER m p 10.13 38.58 0.01 0.00 par:pas; +proteus proteus NOM m 0.62 0.00 0.62 0.00 +proèdre proèdre NOM m s 0.00 0.07 0.00 0.07 +prothrombine prothrombine NOM f s 0.04 0.00 0.04 0.00 +prothèse prothèse NOM f s 2.11 1.69 1.73 0.68 +prothèses prothèse NOM f p 2.11 1.69 0.39 1.01 +prothésiste prothésiste NOM s 0.23 0.00 0.10 0.00 +prothésistes prothésiste NOM p 0.23 0.00 0.14 0.00 +prothétique prothétique ADJ f s 0.01 0.00 0.01 0.00 +protide protide NOM m s 0.14 0.07 0.00 0.07 +protides protide NOM m p 0.14 0.07 0.14 0.00 +protidique protidique ADJ m s 0.01 0.00 0.01 0.00 +protistes protiste NOM m p 0.01 0.00 0.01 0.00 +protococcus protococcus NOM m 0.01 0.00 0.01 0.00 +protocolaire protocolaire ADJ s 0.06 1.22 0.06 0.95 +protocolaires protocolaire ADJ p 0.06 1.22 0.00 0.27 +protocole protocole NOM m s 6.01 5.61 4.36 5.34 +protocoles protocole NOM m p 6.01 5.61 1.66 0.27 +protocoques protocoque NOM m p 0.01 0.00 0.01 0.00 +protohistoire protohistoire NOM f s 0.00 0.14 0.00 0.14 +proton proton NOM m s 0.53 0.14 0.21 0.07 +protonique protonique ADJ s 0.09 0.00 0.09 0.00 +protonotaire protonotaire NOM m s 0.00 0.34 0.00 0.34 +protons proton NOM m p 0.53 0.14 0.32 0.07 +protoplasme protoplasme NOM m s 0.09 0.00 0.08 0.00 +protoplasmes protoplasme NOM m p 0.09 0.00 0.01 0.00 +protoplasmique protoplasmique ADJ f s 0.00 0.07 0.00 0.07 +protoplaste protoplaste NOM m s 0.01 0.00 0.01 0.00 +prototype prototype NOM m s 2.81 1.08 2.29 0.74 +prototypes prototype NOM m p 2.81 1.08 0.53 0.34 +protoxyde protoxyde NOM m s 0.11 0.00 0.11 0.00 +protozoaire protozoaire NOM m s 0.04 0.00 0.04 0.00 +protrusion protrusion NOM f s 0.01 0.00 0.01 0.00 +protège_cahier protège_cahier NOM m s 0.01 0.07 0.01 0.07 +protège_dents protège_dents NOM m 0.10 0.27 0.10 0.27 +protège_slip protège_slip NOM m s 0.03 0.00 0.03 0.00 +protège_tibia protège_tibia NOM m s 0.02 0.00 0.02 0.00 +protège protéger VER 130.71 72.23 27.45 9.53 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +protègent protéger VER 130.71 72.23 3.87 2.43 ind:pre:3p;sub:pre:3p; +protèges protéger VER 130.71 72.23 2.37 0.27 ind:pre:2s;sub:pre:2s; +protéase protéase NOM f s 0.01 0.00 0.01 0.00 +protubérance protubérance NOM f s 0.42 0.74 0.33 0.47 +protubérances protubérance NOM f p 0.42 0.74 0.09 0.27 +protubérant protubérant ADJ m s 0.04 0.34 0.04 0.07 +protubérante protubérant ADJ f s 0.04 0.34 0.00 0.07 +protubérantes protubérant ADJ f p 0.04 0.34 0.00 0.14 +protubérants protubérant ADJ m p 0.04 0.34 0.00 0.07 +protégea protéger VER 130.71 72.23 0.03 0.41 ind:pas:3s; +protégeai protéger VER 130.71 72.23 0.00 0.14 ind:pas:1s; +protégeaient protéger VER 130.71 72.23 0.81 2.97 ind:imp:3p; +protégeais protéger VER 130.71 72.23 1.10 0.47 ind:imp:1s;ind:imp:2s; +protégeait protéger VER 130.71 72.23 2.42 8.45 ind:imp:3s; +protégeant protéger VER 130.71 72.23 1.15 3.65 par:pre; +protégeons protéger VER 130.71 72.23 0.81 0.00 imp:pre:1p;ind:pre:1p; +protégeât protéger VER 130.71 72.23 0.00 0.07 sub:imp:3s; +protéger protéger VER 130.71 72.23 62.53 26.82 inf;;inf;;inf;;inf;; +protégera protéger VER 130.71 72.23 4.26 0.34 ind:fut:3s; +protégerai protéger VER 130.71 72.23 1.90 0.07 ind:fut:1s; +protégeraient protéger VER 130.71 72.23 0.09 0.27 cnd:pre:3p; +protégerais protéger VER 130.71 72.23 0.21 0.07 cnd:pre:1s;cnd:pre:2s; +protégerait protéger VER 130.71 72.23 0.40 0.95 cnd:pre:3s; +protégeras protéger VER 130.71 72.23 0.31 0.00 ind:fut:2s; +protégerez protéger VER 130.71 72.23 0.29 0.00 ind:fut:2p; +protégeriez protéger VER 130.71 72.23 0.06 0.00 cnd:pre:2p; +protégerons protéger VER 130.71 72.23 0.18 0.00 ind:fut:1p; +protégeront protéger VER 130.71 72.23 0.49 0.14 ind:fut:3p; +protégez protéger VER 130.71 72.23 5.38 0.34 imp:pre:2p;ind:pre:2p; +protégiez protéger VER 130.71 72.23 0.27 0.00 ind:imp:2p; +protégions protéger VER 130.71 72.23 0.14 0.20 ind:imp:1p; +protégé protéger VER m s 130.71 72.23 7.76 6.69 par:pas; +protégée protéger VER f s 130.71 72.23 3.68 3.85 par:pas; +protégées protéger VER f p 130.71 72.23 0.73 1.15 par:pas; +protégés protéger VER m p 130.71 72.23 2.03 2.97 par:pas; +protéiforme protéiforme ADJ s 0.01 0.14 0.01 0.14 +protéine protéine NOM f s 3.59 0.47 0.89 0.07 +protéines protéine NOM f p 3.59 0.47 2.71 0.41 +protéinique protéinique ADJ m s 0.01 0.00 0.01 0.00 +protéiné protéiné ADJ m s 0.20 0.00 0.08 0.00 +protéinée protéiné ADJ f s 0.20 0.00 0.12 0.00 +protéinurie protéinurie NOM f s 0.04 0.00 0.04 0.00 +protéique protéique ADJ s 0.11 0.00 0.11 0.00 +protéolytique protéolytique ADJ f s 0.00 0.07 0.00 0.07 +protêt protêt NOM m s 0.00 0.14 0.00 0.07 +protêts protêt NOM m p 0.00 0.14 0.00 0.07 +proudhonisme proudhonisme NOM m s 0.00 0.07 0.00 0.07 +proue proue NOM f s 1.30 5.47 1.30 5.34 +proues proue NOM f p 1.30 5.47 0.00 0.14 +prouesse prouesse NOM f s 1.15 5.14 0.27 1.42 +prouesses prouesse NOM f p 1.15 5.14 0.88 3.72 +proéminait proéminer VER 0.00 0.14 0.00 0.07 ind:imp:3s; +proémine proéminer VER 0.00 0.14 0.00 0.07 ind:pre:3s; +proéminence proéminence NOM f s 0.01 0.14 0.01 0.00 +proéminences proéminence NOM f p 0.01 0.14 0.00 0.14 +proéminent proéminent ADJ m s 0.46 2.36 0.04 1.15 +proéminente proéminent ADJ f s 0.46 2.36 0.03 0.68 +proéminentes proéminent ADJ f p 0.46 2.36 0.15 0.20 +proéminents proéminent ADJ m p 0.46 2.36 0.25 0.34 +proustien proustien ADJ m s 0.02 0.14 0.02 0.00 +proustienne proustien ADJ f s 0.02 0.14 0.00 0.14 +prout prout ONO 0.04 0.27 0.04 0.27 +prouts prout NOM m p 0.32 0.00 0.07 0.00 +prouva prouver VER 88.82 52.43 0.04 0.88 ind:pas:3s; +prouvable prouvable ADJ s 0.02 0.07 0.02 0.07 +prouvai prouver VER 88.82 52.43 0.00 0.07 ind:pas:1s; +prouvaient prouver VER 88.82 52.43 0.14 1.22 ind:imp:3p; +prouvais prouver VER 88.82 52.43 0.08 0.07 ind:imp:1s; +prouvait prouver VER 88.82 52.43 0.53 5.14 ind:imp:3s; +prouvant prouver VER 88.82 52.43 1.09 1.42 par:pre; +prouve prouver VER 88.82 52.43 23.25 13.45 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +prouvent prouver VER 88.82 52.43 2.71 1.35 ind:pre:3p; +prouver prouver VER 88.82 52.43 41.05 21.15 inf; +prouvera prouver VER 88.82 52.43 2.18 0.27 ind:fut:3s; +prouverai prouver VER 88.82 52.43 2.82 0.34 ind:fut:1s; +prouveraient prouver VER 88.82 52.43 0.01 0.07 cnd:pre:3p; +prouverait prouver VER 88.82 52.43 0.91 0.54 cnd:pre:3s; +prouveras prouver VER 88.82 52.43 0.34 0.07 ind:fut:2s; +prouverez prouver VER 88.82 52.43 0.26 0.14 ind:fut:2p; +prouverons prouver VER 88.82 52.43 0.29 0.00 ind:fut:1p; +prouveront prouver VER 88.82 52.43 0.62 0.20 ind:fut:3p; +prouves prouver VER 88.82 52.43 0.45 0.00 ind:pre:2s; +prouvez prouver VER 88.82 52.43 2.44 0.07 imp:pre:2p;ind:pre:2p; +prouviez prouver VER 88.82 52.43 0.33 0.00 ind:imp:2p; +prouvons prouver VER 88.82 52.43 0.27 0.07 imp:pre:1p;ind:pre:1p; +prouvèrent prouver VER 88.82 52.43 0.01 0.20 ind:pas:3p; +prouvé prouver VER m s 88.82 52.43 8.53 5.41 par:pas; +prouvée prouver VER f s 88.82 52.43 0.24 0.34 par:pas; +prouvées prouver VER f p 88.82 52.43 0.05 0.00 par:pas; +prouvés prouver VER m p 88.82 52.43 0.20 0.00 par:pas; +provenaient provenir VER 13.66 15.34 0.41 1.55 ind:imp:3p; +provenait provenir VER 13.66 15.34 0.98 3.04 ind:imp:3s; +provenance provenance NOM f s 3.73 5.27 3.73 4.80 +provenances provenance NOM f p 3.73 5.27 0.00 0.47 +provenant provenir VER 13.66 15.34 3.74 6.15 par:pre; +provende provende NOM f s 0.00 0.95 0.00 0.95 +provenir provenir VER 13.66 15.34 1.36 1.89 inf; +provençal provençal ADJ m s 0.05 3.58 0.01 1.28 +provençale provençal ADJ f s 0.05 3.58 0.03 1.69 +provençales provençal ADJ f p 0.05 3.58 0.01 0.20 +provençaux provençal ADJ m p 0.05 3.58 0.00 0.41 +provenu provenir VER m s 13.66 15.34 0.01 0.00 par:pas; +proverbe proverbe NOM m s 4.90 4.19 3.90 2.64 +proverbes proverbe NOM m p 4.90 4.19 1.00 1.55 +proverbial proverbial ADJ m s 0.04 0.81 0.01 0.14 +proverbiale proverbial ADJ f s 0.04 0.81 0.02 0.68 +providence providence NOM f s 2.04 2.50 2.04 2.50 +providentiel providentiel ADJ m s 0.54 3.38 0.48 1.49 +providentielle providentiel ADJ f s 0.54 3.38 0.04 1.55 +providentiellement providentiellement ADV 0.00 0.61 0.00 0.61 +providentielles providentiel ADJ f p 0.54 3.38 0.01 0.07 +providentiels providentiel ADJ m p 0.54 3.38 0.01 0.27 +provider provider NOM m s 0.03 0.00 0.03 0.00 +proviendrait provenir VER 13.66 15.34 0.03 0.07 cnd:pre:3s; +provienne provenir VER 13.66 15.34 0.16 0.07 sub:pre:3s; +proviennent provenir VER 13.66 15.34 1.77 0.61 ind:pre:3p; +provient provenir VER 13.66 15.34 5.19 1.96 ind:pre:3s; +provietnamien provietnamien ADJ m s 0.00 0.07 0.00 0.07 +province province NOM f s 12.01 30.68 10.21 24.73 +provinces province NOM f p 12.01 30.68 1.79 5.95 +provincial provincial ADJ m s 1.26 5.74 0.28 1.55 +provinciale provincial ADJ f s 1.26 5.74 0.96 3.11 +provincialement provincialement ADV 0.00 0.07 0.00 0.07 +provinciales provincial ADJ f p 1.26 5.74 0.00 0.88 +provinciaux provincial NOM m p 0.78 2.09 0.51 0.81 +proviseur proviseur NOM m s 4.45 3.58 4.43 3.45 +proviseurs proviseur NOM m p 4.45 3.58 0.02 0.14 +provision provision NOM f s 7.46 18.04 1.01 5.34 +provisionnel provisionnel ADJ m s 0.01 0.20 0.01 0.20 +provisionner provisionner VER 0.00 0.14 0.00 0.07 inf; +provisionnons provisionner VER 0.00 0.14 0.00 0.07 imp:pre:1p; +provisions provision NOM f p 7.46 18.04 6.45 12.70 +provisoire provisoire ADJ s 5.80 16.28 5.44 13.85 +provisoirement provisoirement ADV 1.52 7.84 1.52 7.84 +provisoires provisoire ADJ p 5.80 16.28 0.36 2.43 +provo provo NOM m s 0.17 0.14 0.12 0.00 +provoc provoc NOM f s 0.21 0.14 0.21 0.14 +provocant provocant ADJ m s 1.23 5.68 0.17 1.76 +provocante provocant ADJ f s 1.23 5.68 0.73 2.91 +provocantes provocant ADJ f p 1.23 5.68 0.15 0.47 +provocants provocant ADJ m p 1.23 5.68 0.17 0.54 +provocateur provocateur NOM m s 0.56 1.01 0.53 0.61 +provocateurs provocateur ADJ m p 0.32 1.15 0.04 0.47 +provocation provocation NOM f s 4.19 11.01 3.32 8.99 +provocations provocation NOM f p 4.19 11.01 0.87 2.03 +provocatrice provocateur ADJ f s 0.32 1.15 0.02 0.07 +provolone provolone NOM m s 0.18 0.00 0.18 0.00 +provoqua provoquer VER 34.19 48.85 0.44 3.38 ind:pas:3s; +provoquai provoquer VER 34.19 48.85 0.00 0.07 ind:pas:1s; +provoquaient provoquer VER 34.19 48.85 0.08 2.30 ind:imp:3p; +provoquais provoquer VER 34.19 48.85 0.37 0.34 ind:imp:1s;ind:imp:2s; +provoquait provoquer VER 34.19 48.85 1.06 6.89 ind:imp:3s; +provoquant provoquer VER 34.19 48.85 0.95 2.97 par:pre; +provoque provoquer VER 34.19 48.85 7.12 5.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +provoquent provoquer VER 34.19 48.85 1.20 1.22 ind:pre:3p; +provoquer provoquer VER 34.19 48.85 9.30 12.23 inf; +provoquera provoquer VER 34.19 48.85 0.65 0.27 ind:fut:3s; +provoquerai provoquer VER 34.19 48.85 0.04 0.00 ind:fut:1s; +provoqueraient provoquer VER 34.19 48.85 0.01 0.14 cnd:pre:3p; +provoquerais provoquer VER 34.19 48.85 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +provoquerait provoquer VER 34.19 48.85 0.39 0.68 cnd:pre:3s; +provoquerez provoquer VER 34.19 48.85 0.04 0.07 ind:fut:2p; +provoqueriez provoquer VER 34.19 48.85 0.11 0.07 cnd:pre:2p; +provoquerions provoquer VER 34.19 48.85 0.01 0.07 cnd:pre:1p; +provoquerons provoquer VER 34.19 48.85 0.03 0.00 ind:fut:1p; +provoqueront provoquer VER 34.19 48.85 0.02 0.07 ind:fut:3p; +provoques provoquer VER 34.19 48.85 1.19 0.00 ind:pre:2s; +provoquez provoquer VER 34.19 48.85 0.50 0.00 imp:pre:2p;ind:pre:2p; +provoquions provoquer VER 34.19 48.85 0.00 0.07 ind:imp:1p; +provoquons provoquer VER 34.19 48.85 0.23 0.00 imp:pre:1p;ind:pre:1p; +provoquât provoquer VER 34.19 48.85 0.01 0.34 sub:imp:3s; +provoquèrent provoquer VER 34.19 48.85 0.01 0.27 ind:pas:3p; +provoqué provoquer VER m s 34.19 48.85 8.07 7.36 par:pas; +provoquée provoquer VER f s 34.19 48.85 1.27 2.50 par:pas; +provoquées provoquer VER f p 34.19 48.85 0.34 1.42 par:pas; +provoqués provoquer VER m p 34.19 48.85 0.59 0.88 par:pas; +provos provo NOM m p 0.17 0.14 0.05 0.14 +provéditeur provéditeur NOM m s 0.00 0.14 0.00 0.07 +provéditeurs provéditeur NOM m p 0.00 0.14 0.00 0.07 +proximal proximal ADJ m s 0.11 0.27 0.07 0.27 +proximale proximal ADJ f s 0.11 0.27 0.04 0.00 +proximité proximité NOM f s 3.99 14.46 3.99 14.46 +proxo proxo NOM m s 0.06 0.41 0.06 0.34 +proxos proxo NOM m p 0.06 0.41 0.00 0.07 +proxénète proxénète NOM s 0.71 1.01 0.52 0.74 +proxénètes proxénète NOM p 0.71 1.01 0.20 0.27 +proxénétisme proxénétisme NOM m s 0.42 0.41 0.42 0.41 +proze proze NOM m s 0.00 0.41 0.00 0.41 +prèle prèle NOM f s 0.02 0.00 0.02 0.00 +près_de près_de ADV 4.10 16.35 4.10 16.35 +près près PRE 134.13 285.41 134.13 285.41 +pré_salé pré_salé NOM m s 0.00 0.20 0.00 0.20 +pré_établi pré_établi ADJ m s 0.00 0.07 0.00 0.07 +pré pré NOM m s 21.59 32.50 5.03 19.80 +préadolescence préadolescence NOM f s 0.01 0.00 0.01 0.00 +préadolescente préadolescent NOM f s 0.01 0.00 0.01 0.00 +préalable préalable NOM m s 0.91 2.03 0.91 1.96 +préalablement préalablement ADV 0.08 2.03 0.08 2.03 +préalables préalable ADJ p 0.59 2.70 0.04 0.34 +préambule préambule NOM m s 0.29 2.77 0.25 2.57 +préambules préambule NOM m p 0.29 2.77 0.05 0.20 +préau préau NOM m s 0.10 4.59 0.10 3.51 +préaux préau NOM m p 0.10 4.59 0.00 1.08 +préavis préavis NOM m 2.00 1.08 2.00 1.08 +prébendes prébende NOM f p 0.00 0.20 0.00 0.20 +précaire précaire ADJ s 0.98 6.35 0.86 5.41 +précairement précairement ADV 0.00 0.47 0.00 0.47 +précaires précaire ADJ p 0.98 6.35 0.13 0.95 +précambrien précambrien ADJ m s 0.02 0.00 0.01 0.00 +précambrienne précambrien ADJ f s 0.02 0.00 0.01 0.00 +précarité précarité NOM f s 0.19 1.35 0.19 1.35 +précaution précaution NOM f s 10.26 36.01 4.80 19.39 +précautionneuse précautionneux ADJ f s 0.06 3.24 0.03 0.47 +précautionneusement précautionneusement ADV 0.01 3.72 0.01 3.72 +précautionneuses précautionneux ADJ f p 0.06 3.24 0.00 0.27 +précautionneux précautionneux ADJ m 0.06 3.24 0.04 2.50 +précautions précaution NOM f p 10.26 36.01 5.45 16.62 +précellence précellence NOM f s 0.00 0.07 0.00 0.07 +précelles précelles NOM f p 0.00 0.07 0.00 0.07 +précepte précepte NOM m s 1.55 2.23 0.17 1.08 +préceptes précepte NOM m p 1.55 2.23 1.38 1.15 +précepteur précepteur NOM m s 0.80 2.91 0.32 2.16 +précepteurs précepteur NOM m p 0.80 2.91 0.04 0.68 +préceptrice précepteur NOM f s 0.80 2.91 0.44 0.07 +précession précession NOM f s 0.00 0.20 0.00 0.20 +prêcha prêcher VER 7.82 7.43 0.12 0.20 ind:pas:3s; +prêchaient prêcher VER 7.82 7.43 0.03 0.61 ind:imp:3p; +prêchais prêcher VER 7.82 7.43 0.04 0.07 ind:imp:1s;ind:imp:2s; +prêchait prêcher VER 7.82 7.43 0.49 1.55 ind:imp:3s; +prêchant prêcher VER 7.82 7.43 0.34 0.27 par:pre; +préchauffage préchauffage NOM m s 0.02 0.00 0.02 0.00 +préchauffer préchauffer VER 0.01 0.00 0.01 0.00 inf; +prêche prêcher VER 7.82 7.43 1.70 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prêchent prêcher VER 7.82 7.43 0.77 0.41 ind:pre:3p; +prêcher prêcher VER 7.82 7.43 3.06 2.36 inf; +prêches prêcher VER 7.82 7.43 0.20 0.14 ind:pre:2s; +prêcheur prêcheur NOM m s 0.82 4.59 0.58 0.74 +prêcheurs prêcheur NOM m p 0.82 4.59 0.20 3.78 +prêcheuse prêcheur NOM f s 0.82 4.59 0.03 0.07 +prêchez prêcher VER 7.82 7.43 0.25 0.07 imp:pre:2p;ind:pre:2p; +prêchi_prêcha prêchi_prêcha NOM m 0.11 0.14 0.11 0.14 +prêché prêcher VER m s 7.82 7.43 0.63 0.88 par:pas; +prêchée prêcher VER f s 7.82 7.43 0.20 0.14 par:pas; +précieuse précieux ADJ f s 24.66 39.19 6.96 8.85 +précieusement précieusement ADV 0.44 1.76 0.44 1.76 +précieuses précieux ADJ f p 24.66 39.19 1.58 7.43 +précieux précieux ADJ m 24.66 39.19 16.13 22.91 +préciosité préciosité NOM f s 0.02 1.28 0.02 1.08 +préciosités préciosité NOM f p 0.02 1.28 0.00 0.20 +précipice précipice NOM m s 1.67 3.38 1.44 1.62 +précipices précipice NOM m p 1.67 3.38 0.24 1.76 +précipita précipiter VER 11.89 66.96 0.19 14.05 ind:pas:3s; +précipitai précipiter VER 11.89 66.96 0.01 2.09 ind:pas:1s; +précipitaient précipiter VER 11.89 66.96 0.02 2.91 ind:imp:3p; +précipitais précipiter VER 11.89 66.96 0.04 0.88 ind:imp:1s;ind:imp:2s; +précipitait précipiter VER 11.89 66.96 0.08 5.95 ind:imp:3s; +précipitamment précipitamment ADV 0.99 10.14 0.99 10.14 +précipitant précipiter VER 11.89 66.96 0.31 2.23 par:pre; +précipitation précipitation NOM f s 2.35 6.35 1.90 6.15 +précipitations précipitation NOM f p 2.35 6.35 0.45 0.20 +précipite précipiter VER 11.89 66.96 2.10 11.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +précipitent précipiter VER 11.89 66.96 0.51 2.84 ind:pre:3p; +précipiter précipiter VER 11.89 66.96 2.53 9.46 inf;; +précipitera précipiter VER 11.89 66.96 0.05 0.00 ind:fut:3s; +précipiterai précipiter VER 11.89 66.96 0.04 0.14 ind:fut:1s; +précipiteraient précipiter VER 11.89 66.96 0.05 0.20 cnd:pre:3p; +précipiterais précipiter VER 11.89 66.96 0.20 0.00 cnd:pre:1s;cnd:pre:2s; +précipiterait précipiter VER 11.89 66.96 0.02 0.74 cnd:pre:3s; +précipiteras précipiter VER 11.89 66.96 0.01 0.07 ind:fut:2s; +précipiterez précipiter VER 11.89 66.96 0.00 0.07 ind:fut:2p; +précipiterions précipiter VER 11.89 66.96 0.00 0.14 cnd:pre:1p; +précipiteront précipiter VER 11.89 66.96 0.02 0.14 ind:fut:3p; +précipites précipiter VER 11.89 66.96 0.37 0.20 ind:pre:2s;sub:pre:2s; +précipitez précipiter VER 11.89 66.96 0.44 0.14 imp:pre:2p;ind:pre:2p; +précipitiez précipiter VER 11.89 66.96 0.03 0.00 ind:imp:2p; +précipitions précipiter VER 11.89 66.96 0.00 0.14 ind:imp:1p; +précipitâmes précipiter VER 11.89 66.96 0.00 0.34 ind:pas:1p; +précipitons précipiter VER 11.89 66.96 0.36 0.47 imp:pre:1p;ind:pre:1p; +précipitât précipiter VER 11.89 66.96 0.00 0.27 sub:imp:3s; +précipitèrent précipiter VER 11.89 66.96 0.20 1.82 ind:pas:3p; +précipité précipiter VER m s 11.89 66.96 2.67 6.55 par:pas; +précipitée précipiter VER f s 11.89 66.96 1.36 2.09 par:pas; +précipitées précipité ADJ f p 1.83 8.45 0.10 0.95 +précipités précipiter VER m p 11.89 66.96 0.23 1.55 par:pas; +préciputs préciput NOM m p 0.00 0.07 0.00 0.07 +précis précis ADJ m 31.59 61.82 20.18 38.24 +précisa préciser VER 9.29 48.31 0.00 8.65 ind:pas:3s; +précisai préciser VER 9.29 48.31 0.00 0.74 ind:pas:1s; +précisaient préciser VER 9.29 48.31 0.02 0.95 ind:imp:3p; +précisais préciser VER 9.29 48.31 0.01 0.47 ind:imp:1s;ind:imp:2s; +précisait préciser VER 9.29 48.31 0.06 4.26 ind:imp:3s; +précisant préciser VER 9.29 48.31 0.12 2.77 par:pre; +précise précis ADJ f s 31.59 61.82 6.97 15.68 +précisent préciser VER 9.29 48.31 0.39 0.81 ind:pre:3p; +préciser préciser VER 9.29 48.31 3.77 13.04 inf; +précisera préciser VER 9.29 48.31 0.00 0.20 ind:fut:3s; +préciserai préciser VER 9.29 48.31 0.02 0.20 ind:fut:1s; +préciserais préciser VER 9.29 48.31 0.01 0.07 cnd:pre:1s; +préciserait préciser VER 9.29 48.31 0.00 0.14 cnd:pre:3s; +préciserez préciser VER 9.29 48.31 0.00 0.07 ind:fut:2p; +préciseront préciser VER 9.29 48.31 0.00 0.07 ind:fut:3p; +précises précis ADJ f p 31.59 61.82 4.43 7.91 +précisez préciser VER 9.29 48.31 0.38 0.14 imp:pre:2p; +précision précision NOM f s 6.86 24.26 5.50 18.99 +précisions précision NOM f p 6.86 24.26 1.35 5.27 +précisons préciser VER 9.29 48.31 0.02 0.00 imp:pre:1p;ind:pre:1p; +précisât préciser VER 9.29 48.31 0.00 0.34 sub:imp:3s; +précisèrent préciser VER 9.29 48.31 0.00 0.47 ind:pas:3p; +précisé préciser VER m s 9.29 48.31 2.48 5.34 par:pas; +précisée préciser VER f s 9.29 48.31 0.14 0.74 par:pas; +précisées préciser VER f p 9.29 48.31 0.01 0.68 par:pas; +précisément précisément ADV 12.80 34.80 12.80 34.80 +précisés préciser VER m p 9.29 48.31 0.01 0.07 par:pas; +précité précité ADJ m s 0.04 0.41 0.01 0.14 +précitée précité ADJ f s 0.04 0.41 0.01 0.00 +précitées précité ADJ f p 0.04 0.41 0.01 0.20 +précités précité ADJ m p 0.04 0.41 0.01 0.07 +précoce précoce ADJ s 2.66 5.61 2.31 4.39 +précocement précocement ADV 0.01 1.15 0.01 1.15 +précoces précoce ADJ p 2.66 5.61 0.35 1.22 +précocité précocité NOM f s 0.12 1.35 0.12 1.35 +précognition précognition NOM f s 0.03 0.00 0.03 0.00 +précolombien précolombien ADJ m s 0.06 0.07 0.02 0.00 +précolombienne précolombien ADJ f s 0.06 0.07 0.04 0.00 +précolombiennes précolombien ADJ f p 0.06 0.07 0.00 0.07 +préconisa préconiser VER 1.80 1.96 0.00 0.14 ind:pas:3s; +préconisaient préconiser VER 1.80 1.96 0.00 0.20 ind:imp:3p; +préconisais préconiser VER 1.80 1.96 0.03 0.00 ind:imp:1s;ind:imp:2s; +préconisait préconiser VER 1.80 1.96 0.02 0.41 ind:imp:3s; +préconisant préconiser VER 1.80 1.96 0.01 0.00 par:pre; +préconisation préconisation NOM f s 0.01 0.00 0.01 0.00 +préconise préconiser VER 1.80 1.96 0.82 0.41 ind:pre:1s;ind:pre:3s; +préconisent préconiser VER 1.80 1.96 0.17 0.14 ind:pre:3p; +préconiser préconiser VER 1.80 1.96 0.15 0.20 inf; +préconiserais préconiser VER 1.80 1.96 0.11 0.00 cnd:pre:1s; +préconises préconiser VER 1.80 1.96 0.01 0.07 ind:pre:2s; +préconisez préconiser VER 1.80 1.96 0.14 0.00 imp:pre:2p;ind:pre:2p; +préconisiez préconiser VER 1.80 1.96 0.02 0.00 ind:imp:2p; +préconisât préconiser VER 1.80 1.96 0.00 0.07 sub:imp:3s; +préconisé préconiser VER m s 1.80 1.96 0.19 0.20 par:pas; +préconisée préconiser VER f s 1.80 1.96 0.11 0.07 par:pas; +préconisées préconiser VER f p 1.80 1.96 0.00 0.07 par:pas; +préconisés préconiser VER m p 1.80 1.96 0.01 0.00 par:pas; +préconçu préconçu ADJ m s 0.06 0.81 0.00 0.07 +préconçue préconçu ADJ f s 0.06 0.81 0.04 0.20 +préconçues préconcevoir VER f p 0.04 0.00 0.04 0.00 par:pas; +précède précéder VER 6.09 41.22 1.30 7.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +précèdent précéder VER 6.09 41.22 0.30 2.16 ind:pre:3p; +précéda précéder VER 6.09 41.22 0.01 2.09 ind:pas:3s; +précédai précéder VER 6.09 41.22 0.00 0.07 ind:pas:1s; +précédaient précéder VER 6.09 41.22 0.04 1.76 ind:imp:3p; +précédais précéder VER 6.09 41.22 0.00 0.14 ind:imp:1s; +précédait précéder VER 6.09 41.22 0.20 5.54 ind:imp:3s; +précédant précéder VER 6.09 41.22 0.87 3.78 par:pre; +précédassent précéder VER 6.09 41.22 0.00 0.07 sub:imp:3p; +précédemment précédemment ADV 11.48 2.16 11.48 2.16 +précédent précédent NOM m s 5.08 10.07 3.36 4.66 +précédente précédent ADJ f s 7.63 24.12 2.21 8.99 +précédentes précédent ADJ f p 7.63 24.12 0.94 3.38 +précédents précédent ADJ m p 7.63 24.12 2.16 5.61 +précéder précéder VER 6.09 41.22 0.09 2.23 inf; +précédera précéder VER 6.09 41.22 0.13 0.14 ind:fut:3s; +précéderai précéder VER 6.09 41.22 0.14 0.00 ind:fut:1s; +précéderaient précéder VER 6.09 41.22 0.00 0.14 cnd:pre:3p; +précéderait précéder VER 6.09 41.22 0.01 0.20 cnd:pre:3s; +précéderions précéder VER 6.09 41.22 0.00 0.07 cnd:pre:1p; +précédez précéder VER 6.09 41.22 0.50 0.07 imp:pre:2p;ind:pre:2p; +précédons précéder VER 6.09 41.22 0.02 0.00 ind:pre:1p; +précédèrent précéder VER 6.09 41.22 0.02 1.76 ind:pas:3p; +précédé précéder VER m s 6.09 41.22 1.27 7.77 par:pas; +précédée précéder VER f s 6.09 41.22 0.56 2.97 par:pas; +précédées précéder VER f p 6.09 41.22 0.18 0.41 par:pas; +précédés précéder VER m p 6.09 41.22 0.45 2.84 par:pas; +précuit précuit ADJ m s 0.12 0.00 0.01 0.00 +précuites précuit ADJ f p 0.12 0.00 0.11 0.00 +précurseur précurseur NOM m s 0.34 1.49 0.14 1.01 +précurseurs précurseur NOM m p 0.34 1.49 0.20 0.47 +prud_homme prud_homme NOM m s 0.21 0.07 0.01 0.00 +prud_homme prud_homme NOM m p 0.21 0.07 0.20 0.07 +prédateur prédateur NOM m s 2.38 0.68 1.54 0.34 +prédateurs prédateur NOM m p 2.38 0.68 0.84 0.34 +prédation prédation NOM f s 0.04 0.00 0.04 0.00 +prédatrice prédateur ADJ f s 0.40 0.54 0.11 0.07 +prude prude ADJ s 0.52 0.81 0.50 0.61 +prédelle prédelle NOM f s 0.00 0.14 0.00 0.14 +prudemment prudemment ADV 2.76 9.86 2.76 9.86 +prudence prudence NOM f s 5.04 20.07 5.04 19.32 +prudences prudence NOM f p 5.04 20.07 0.00 0.74 +prudent prudent ADJ m s 37.60 20.41 23.79 12.43 +prudente prudent ADJ f s 37.60 20.41 6.15 4.53 +prudentes prudent ADJ f p 37.60 20.41 0.54 0.68 +prudents prudent ADJ m p 37.60 20.41 7.13 2.77 +pruderie pruderie NOM f s 0.01 0.68 0.01 0.54 +pruderies pruderie NOM f p 0.01 0.68 0.00 0.14 +prudes prude NOM p 0.51 0.47 0.20 0.14 +prédestinaient prédestiner VER 0.65 0.74 0.00 0.14 ind:imp:3p; +prédestination prédestination NOM f s 0.04 1.01 0.04 0.95 +prédestinations prédestination NOM f p 0.04 1.01 0.00 0.07 +prédestiné prédestiner VER m s 0.65 0.74 0.41 0.27 par:pas; +prédestinée prédestiner VER f s 0.65 0.74 0.20 0.07 par:pas; +prédestinées prédestiné ADJ f p 0.08 0.81 0.00 0.07 +prédestinés prédestiner VER m p 0.65 0.74 0.04 0.27 par:pas; +prudhommesque prudhommesque ADJ m s 0.14 0.07 0.14 0.00 +prudhommesques prudhommesque ADJ f p 0.14 0.07 0.00 0.07 +prédicant prédicant NOM m s 0.00 0.54 0.00 0.27 +prédicants prédicant NOM m p 0.00 0.54 0.00 0.27 +prédicat prédicat NOM m s 0.01 0.00 0.01 0.00 +prédicateur prédicateur NOM m s 0.84 1.69 0.66 1.01 +prédicateurs prédicateur NOM m p 0.84 1.69 0.19 0.68 +prédication prédication NOM f s 0.29 0.61 0.25 0.41 +prédications prédication NOM f p 0.29 0.61 0.05 0.20 +prédictible prédictible ADJ s 0.01 0.00 0.01 0.00 +prédictif prédictif ADJ m s 0.05 0.00 0.01 0.00 +prédiction prédiction NOM f s 2.06 3.24 1.08 1.89 +prédictions prédiction NOM f p 2.06 3.24 0.98 1.35 +prédictive prédictif ADJ f s 0.05 0.00 0.04 0.00 +prédigestion prédigestion NOM f s 0.00 0.07 0.00 0.07 +prédigéré prédigéré ADJ m s 0.01 0.00 0.01 0.00 +prédilection prédilection NOM f s 0.35 3.18 0.34 3.11 +prédilections prédilection NOM f p 0.35 3.18 0.01 0.07 +prédira prédire VER 9.05 6.82 0.01 0.00 ind:fut:3s; +prédire prédire VER 9.05 6.82 2.52 1.28 inf; +prédirent prédire VER 9.05 6.82 0.00 0.07 ind:pas:3p; +prédirez prédire VER 9.05 6.82 0.01 0.00 ind:fut:2p; +prédis prédire VER 9.05 6.82 1.02 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prédisaient prédire VER 9.05 6.82 0.03 0.14 ind:imp:3p; +prédisait prédire VER 9.05 6.82 0.12 0.61 ind:imp:3s; +prédisant prédire VER 9.05 6.82 0.12 0.20 par:pre; +prédise prédire VER 9.05 6.82 0.16 0.00 sub:pre:1s;sub:pre:3s; +prédisent prédire VER 9.05 6.82 0.25 0.20 ind:pre:3p; +prédisez prédire VER 9.05 6.82 0.04 0.00 ind:pre:2p; +prédisiez prédire VER 9.05 6.82 0.00 0.07 ind:imp:2p; +prédisposait prédisposer VER 0.27 0.68 0.00 0.07 ind:imp:3s; +prédisposant prédisposer VER 0.27 0.68 0.00 0.07 par:pre; +prédispose prédisposer VER 0.27 0.68 0.03 0.27 imp:pre:2s;ind:pre:3s; +prédisposition prédisposition NOM f s 0.46 0.41 0.21 0.27 +prédispositions prédisposition NOM f p 0.46 0.41 0.25 0.14 +prédisposé prédisposer VER m s 0.27 0.68 0.09 0.14 par:pas; +prédisposée prédisposer VER f s 0.27 0.68 0.13 0.07 par:pas; +prédisposées prédisposer VER f p 0.27 0.68 0.01 0.07 par:pas; +prédisposés prédisposer VER m p 0.27 0.68 0.01 0.00 par:pas; +prédit prédire VER m s 9.05 6.82 4.46 3.38 ind:pre:3s;par:pas; +prédite prédire VER f s 9.05 6.82 0.32 0.07 par:pas; +prédominaient prédominer VER 0.12 0.27 0.00 0.07 ind:imp:3p; +prédominait prédominer VER 0.12 0.27 0.00 0.14 ind:imp:3s; +prédominance prédominance NOM f s 0.01 0.47 0.01 0.47 +prédominant prédominant ADJ m s 0.11 0.34 0.04 0.14 +prédominante prédominant ADJ f s 0.11 0.34 0.07 0.20 +prédomine prédominer VER 0.12 0.27 0.08 0.00 ind:pre:3s; +prédominer prédominer VER 0.12 0.27 0.01 0.00 inf; +prédécesseur prédécesseur NOM m s 2.27 3.18 1.60 1.96 +prédécesseurs prédécesseur NOM m p 2.27 3.18 0.67 1.22 +prédécoupée prédécoupé ADJ f s 0.01 0.00 0.01 0.00 +prédéfini prédéfinir VER m s 0.03 0.00 0.01 0.00 par:pas; +prédéfinies prédéfinir VER f p 0.03 0.00 0.01 0.00 par:pas; +prédéterminer prédéterminer VER 0.55 0.07 0.00 0.07 inf; +prédéterminé prédéterminer VER m s 0.55 0.07 0.24 0.00 par:pas; +prédéterminée prédéterminer VER f s 0.55 0.07 0.26 0.00 par:pas; +prédéterminées prédéterminer VER f p 0.55 0.07 0.02 0.00 par:pas; +prédéterminés prédéterminer VER m p 0.55 0.07 0.02 0.00 par:pas; +préemption préemption NOM f s 0.05 0.07 0.05 0.07 +préemptive préemptif ADJ f s 0.01 0.00 0.01 0.00 +préencollé préencollé ADJ m s 0.01 0.00 0.01 0.00 +préexistaient préexister VER 0.01 0.27 0.00 0.07 ind:imp:3p; +préexistait préexister VER 0.01 0.27 0.00 0.07 ind:imp:3s; +préexistant préexistant ADJ m s 0.04 0.00 0.01 0.00 +préexistante préexistant ADJ f s 0.04 0.00 0.03 0.00 +préexistants préexistant ADJ m p 0.04 0.00 0.01 0.00 +préexiste préexister VER 0.01 0.27 0.00 0.14 ind:pre:3s; +préexisté préexister VER m s 0.01 0.27 0.01 0.00 par:pas; +préfabriqué préfabriqué ADJ m s 0.62 1.42 0.19 0.88 +préfabriquée préfabriqué ADJ f s 0.62 1.42 0.23 0.14 +préfabriquées préfabriqué ADJ f p 0.62 1.42 0.00 0.20 +préfabriqués préfabriqué ADJ m p 0.62 1.42 0.20 0.20 +préface préface NOM f s 0.42 2.97 0.42 2.64 +préfacent préfacer VER 0.04 0.34 0.00 0.07 ind:pre:3p; +préfacer préfacer VER 0.04 0.34 0.04 0.00 inf; +préfaces préface NOM f p 0.42 2.97 0.00 0.34 +préfacier préfacier NOM m s 0.00 0.07 0.00 0.07 +préfacé préfacer VER m s 0.04 0.34 0.00 0.14 par:pas; +préfacées préfacer VER f p 0.04 0.34 0.00 0.07 par:pas; +préfectance préfectance NOM f s 0.00 0.14 0.00 0.14 +préfectorale préfectoral ADJ f s 0.00 0.07 0.00 0.07 +préfecture préfecture NOM f s 3.98 7.91 3.97 7.36 +préfectures préfecture NOM f p 3.98 7.91 0.01 0.54 +préfet préfet NOM m s 7.56 8.45 7.42 7.09 +préfets préfet NOM m p 7.56 8.45 0.14 1.35 +préfiguraient préfigurer VER 0.02 1.69 0.00 0.34 ind:imp:3p; +préfigurait préfigurer VER 0.02 1.69 0.00 0.34 ind:imp:3s; +préfigurant préfigurer VER 0.02 1.69 0.00 0.07 par:pre; +préfiguration préfiguration NOM f s 0.00 0.61 0.00 0.61 +préfigure préfigurer VER 0.02 1.69 0.01 0.41 ind:pre:3s; +préfigurent préfigurer VER 0.02 1.69 0.00 0.14 ind:pre:3p; +préfigurer préfigurer VER 0.02 1.69 0.01 0.07 inf; +préfiguré préfigurer VER m s 0.02 1.69 0.00 0.07 par:pas; +préfigurée préfigurer VER f s 0.02 1.69 0.00 0.27 par:pas; +préfix préfix ADJ m 0.01 0.00 0.01 0.00 +préfixation préfixation NOM f s 0.01 0.00 0.01 0.00 +préfixe préfixe NOM m s 0.35 0.34 0.23 0.14 +préfixes préfixe NOM m p 0.35 0.34 0.12 0.20 +préformait préformer VER 0.00 0.14 0.00 0.07 ind:imp:3s; +préformation préformation NOM f s 0.00 0.07 0.00 0.07 +préformer préformer VER 0.00 0.14 0.00 0.07 inf; +préfrontal préfrontal ADJ m s 0.06 0.07 0.05 0.00 +préfrontale préfrontal ADJ f s 0.06 0.07 0.01 0.07 +préfère préférer VER 179.44 133.38 90.34 36.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +préfèrent préférer VER 179.44 133.38 5.94 3.85 ind:pre:3p;sub:pre:3p; +préfères préférer VER 179.44 133.38 21.62 5.68 ind:pre:2s; +préféra préférer VER 179.44 133.38 0.32 4.66 ind:pas:3s; +préférable préférable ADJ s 4.56 7.70 4.39 7.30 +préférablement préférablement ADV 0.01 0.00 0.01 0.00 +préférables préférable ADJ p 4.56 7.70 0.17 0.41 +préférai préférer VER 179.44 133.38 0.13 0.95 ind:pas:1s; +préféraient préférer VER 179.44 133.38 0.67 3.72 ind:imp:3p; +préférais préférer VER 179.44 133.38 3.66 9.19 ind:imp:1s;ind:imp:2s; +préférait préférer VER 179.44 133.38 2.85 21.55 ind:imp:3s; +préférant préférer VER 179.44 133.38 0.21 3.65 par:pre; +préférence préférence NOM f s 5.73 13.92 4.65 12.16 +préférences préférence NOM f p 5.73 13.92 1.09 1.76 +préférentiel préférentiel ADJ m s 0.16 0.14 0.06 0.07 +préférentielle préférentiel ADJ f s 0.16 0.14 0.10 0.07 +préférer préférer VER 179.44 133.38 1.68 5.95 inf; +préférera préférer VER 179.44 133.38 0.66 0.27 ind:fut:3s; +préférerai préférer VER 179.44 133.38 0.40 0.07 ind:fut:1s; +préféreraient préférer VER 179.44 133.38 0.43 0.47 cnd:pre:3p; +préférerais préférer VER 179.44 133.38 14.52 5.14 cnd:pre:1s;cnd:pre:2s; +préférerait préférer VER 179.44 133.38 1.73 1.22 cnd:pre:3s; +préféreras préférer VER 179.44 133.38 0.20 0.00 ind:fut:2s; +préférerez préférer VER 179.44 133.38 0.09 0.07 ind:fut:2p; +préféreriez préférer VER 179.44 133.38 1.17 0.68 cnd:pre:2p; +préférerions préférer VER 179.44 133.38 0.28 0.07 cnd:pre:1p; +préféreront préférer VER 179.44 133.38 0.03 0.00 ind:fut:3p; +préférez préférer VER 179.44 133.38 12.19 5.81 imp:pre:2p;ind:pre:2p; +préfériez préférer VER 179.44 133.38 0.39 0.20 ind:imp:2p; +préférions préférer VER 179.44 133.38 0.02 1.35 ind:imp:1p; +préférâmes préférer VER 179.44 133.38 0.00 0.07 ind:pas:1p; +préférons préférer VER 179.44 133.38 1.67 0.95 imp:pre:1p;ind:pre:1p; +préférât préférer VER 179.44 133.38 0.00 0.47 sub:imp:3s; +préférèrent préférer VER 179.44 133.38 0.00 0.47 ind:pas:3p; +préféré préférer VER m s 179.44 133.38 17.57 19.73 par:pas; +préférée préféré ADJ f s 27.42 11.01 9.82 3.45 +préférées préféré ADJ f p 27.42 11.01 1.80 1.15 +préférés préféré ADJ m p 27.42 11.01 2.04 1.96 +prégnance prégnance NOM f s 0.00 0.14 0.00 0.14 +prégnante prégnant ADJ f s 0.01 0.00 0.01 0.00 +préhenseur préhenseur ADJ m s 1.00 0.00 1.00 0.00 +préhensile préhensile ADJ m s 0.01 0.07 0.01 0.07 +préhension préhension NOM f s 0.10 0.07 0.10 0.07 +préhensives préhensif ADJ f p 0.00 0.07 0.00 0.07 +préhistoire préhistoire NOM f s 0.73 2.84 0.73 2.84 +préhistorien préhistorien NOM m s 0.00 0.07 0.00 0.07 +préhistorique préhistorique ADJ s 1.28 2.91 0.83 1.55 +préhistoriques préhistorique ADJ p 1.28 2.91 0.45 1.35 +préhominien préhominien NOM m s 0.00 0.07 0.00 0.07 +préindustriel préindustriel ADJ m s 0.01 0.00 0.01 0.00 +préjudice préjudice NOM m s 1.80 2.03 1.56 1.96 +préjudices préjudice NOM m p 1.80 2.03 0.25 0.07 +préjudiciable préjudiciable ADJ s 0.34 0.88 0.30 0.47 +préjudiciables préjudiciable ADJ m p 0.34 0.88 0.03 0.41 +préjuge préjuger VER 0.16 1.69 0.00 0.20 ind:pre:3s; +préjugeait préjuger VER 0.16 1.69 0.00 0.07 ind:imp:3s; +préjugeant préjuger VER 0.16 1.69 0.00 0.20 par:pre; +préjuger préjuger VER 0.16 1.69 0.02 0.88 inf; +préjugé préjugé NOM m s 4.79 10.61 0.93 2.43 +préjugée préjuger VER f s 0.16 1.69 0.00 0.07 par:pas; +préjugés préjugé NOM m p 4.79 10.61 3.86 8.18 +prélassaient prélasser VER 0.73 2.57 0.00 0.20 ind:imp:3p; +prélassais prélasser VER 0.73 2.57 0.02 0.07 ind:imp:1s; +prélassait prélasser VER 0.73 2.57 0.01 0.34 ind:imp:3s; +prélassant prélasser VER 0.73 2.57 0.01 0.14 par:pre; +prélasse prélasser VER 0.73 2.57 0.33 0.41 ind:pre:1s;ind:pre:3s; +prélassent prélasser VER 0.73 2.57 0.02 0.27 ind:pre:3p; +prélasser prélasser VER 0.73 2.57 0.33 0.88 inf; +prélassera prélasser VER 0.73 2.57 0.00 0.07 ind:fut:3s; +prélasseront prélasser VER 0.73 2.57 0.00 0.07 ind:fut:3p; +prélassez prélasser VER 0.73 2.57 0.00 0.07 ind:pre:2p; +prélassiez prélasser VER 0.73 2.57 0.01 0.00 ind:imp:2p; +prélassèrent prélasser VER 0.73 2.57 0.00 0.07 ind:pas:3p; +prélat prélat NOM m s 0.14 2.77 0.04 1.76 +prélats prélat NOM m p 0.14 2.77 0.10 1.01 +prélavage prélavage NOM m s 0.01 0.00 0.01 0.00 +prélaver prélaver VER 0.01 0.00 0.01 0.00 inf; +prélegs prélegs NOM m 0.00 0.07 0.00 0.07 +prêles prêle NOM f p 0.00 0.14 0.00 0.14 +préleva prélever VER 6.07 5.81 0.00 0.27 ind:pas:3s; +prélevaient prélever VER 6.07 5.81 0.11 0.14 ind:imp:3p; +prélevais prélever VER 6.07 5.81 0.11 0.07 ind:imp:1s; +prélevait prélever VER 6.07 5.81 0.01 0.47 ind:imp:3s; +prélevant prélever VER 6.07 5.81 0.16 0.14 par:pre; +prélever prélever VER 6.07 5.81 1.75 1.35 inf; +prélevez prélever VER 6.07 5.81 0.18 0.00 imp:pre:2p;ind:pre:2p; +prélevons prélever VER 6.07 5.81 0.07 0.00 imp:pre:1p;ind:pre:1p; +prélevèrent prélever VER 6.07 5.81 0.01 0.07 ind:pas:3p; +prélevé prélever VER m s 6.07 5.81 1.87 0.81 par:pas; +prélevée prélever VER f s 6.07 5.81 0.40 0.74 par:pas; +prélevées prélever VER f p 6.07 5.81 0.39 0.54 par:pas; +prélevés prélever VER m p 6.07 5.81 0.32 0.54 par:pas; +préliminaire préliminaire ADJ s 3.12 1.69 2.21 0.74 +préliminaires préliminaire NOM m p 1.67 1.08 1.56 0.88 +prélève prélever VER 6.07 5.81 0.59 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +prélèvement prélèvement NOM m s 4.33 1.28 2.43 0.54 +prélèvements prélèvement NOM m p 4.33 1.28 1.89 0.74 +prélèvent prélever VER 6.07 5.81 0.05 0.14 ind:pre:3p; +prélèveraient prélever VER 6.07 5.81 0.00 0.07 cnd:pre:3p; +prélèverait prélever VER 6.07 5.81 0.00 0.07 cnd:pre:3s; +prélèverez prélever VER 6.07 5.81 0.03 0.00 ind:fut:2p; +prélèverions prélever VER 6.07 5.81 0.02 0.00 cnd:pre:1p; +préluda préluder VER 0.00 2.57 0.00 0.20 ind:pas:3s; +préludaient préluder VER 0.00 2.57 0.00 0.07 ind:imp:3p; +préludait préluder VER 0.00 2.57 0.00 0.34 ind:imp:3s; +préludant préluder VER 0.00 2.57 0.00 0.14 par:pre; +prélude prélude NOM m s 1.23 2.91 0.89 2.36 +préludent préluder VER 0.00 2.57 0.00 0.14 ind:pre:3p; +préluder préluder VER 0.00 2.57 0.00 0.27 inf; +préluderait préluder VER 0.00 2.57 0.00 0.07 cnd:pre:3s; +préludes prélude NOM m p 1.23 2.91 0.34 0.54 +préludât préluder VER 0.00 2.57 0.00 0.07 sub:imp:3s; +préludèrent préluder VER 0.00 2.57 0.00 0.07 ind:pas:3p; +préludé préluder VER m s 0.00 2.57 0.00 0.27 par:pas; +prématurité prématurité NOM f s 0.01 0.00 0.01 0.00 +prématuré prématuré ADJ m s 2.39 3.18 1.51 1.22 +prématurée prématuré ADJ f s 2.39 3.18 0.68 1.28 +prématurées prématuré ADJ f p 2.39 3.18 0.14 0.61 +prématurément prématurément ADV 1.22 2.03 1.22 2.03 +prématurés prématuré NOM m p 1.00 0.20 0.20 0.00 +prémenstruel prémenstruel ADJ m s 0.26 0.00 0.21 0.00 +prémenstruelle prémenstruel ADJ f s 0.26 0.00 0.05 0.00 +prémices prémices NOM f p 0.34 1.35 0.34 1.35 +prémisse prémisse NOM f s 0.11 0.68 0.05 0.07 +prémisses prémisse NOM f p 0.11 0.68 0.05 0.61 +prémolaire prémolaire NOM f s 0.23 0.14 0.19 0.07 +prémolaires prémolaire NOM f p 0.23 0.14 0.04 0.07 +prémonition prémonition NOM f s 3.54 2.64 2.46 2.03 +prémonitions prémonition NOM f p 3.54 2.64 1.08 0.61 +prémonitoire prémonitoire ADJ s 0.43 1.62 0.24 1.22 +prémonitoires prémonitoire ADJ p 0.43 1.62 0.19 0.41 +prémontrés prémontré ADJ m p 0.00 0.07 0.00 0.07 +préméditait préméditer VER 0.66 1.89 0.00 0.14 ind:imp:3s; +préméditation préméditation NOM f s 1.30 1.82 1.30 1.69 +préméditations préméditation NOM f p 1.30 1.82 0.00 0.14 +prémédite préméditer VER 0.66 1.89 0.01 0.14 ind:pre:3s; +préméditer préméditer VER 0.66 1.89 0.02 0.00 inf; +préméditera préméditer VER 0.66 1.89 0.00 0.07 ind:fut:3s; +préméditons préméditer VER 0.66 1.89 0.00 0.07 ind:pre:1p; +prémédité prémédité ADJ m s 1.46 0.95 1.25 0.27 +préméditée prémédité ADJ f s 1.46 0.95 0.11 0.41 +préméditées préméditer VER f p 0.66 1.89 0.00 0.07 par:pas; +prémédités prémédité ADJ m p 1.46 0.95 0.11 0.20 +prémuni prémunir VER m s 0.07 0.95 0.02 0.14 par:pas; +prémunie prémunir VER f s 0.07 0.95 0.00 0.07 par:pas; +prémunir prémunir VER 0.07 0.95 0.04 0.54 inf; +prémuniraient prémunir VER 0.07 0.95 0.00 0.07 cnd:pre:3p; +prémunis prémunir VER m p 0.07 0.95 0.00 0.07 par:pas; +prémunissent prémunir VER 0.07 0.95 0.00 0.07 ind:pre:3p; +prénatal prénatal ADJ m s 0.46 0.54 0.27 0.14 +prénatale prénatal ADJ f s 0.46 0.54 0.12 0.41 +prénatales prénatal ADJ f p 0.46 0.54 0.05 0.00 +prénataux prénatal ADJ m p 0.46 0.54 0.02 0.00 +prune prune NOM f s 2.94 5.68 1.07 1.55 +pruneau pruneau NOM m s 1.59 3.65 0.92 1.35 +pruneaux pruneau NOM m p 1.59 3.65 0.67 2.30 +prunelle prunelle NOM f s 1.10 15.74 0.94 3.11 +prunelles prunelle NOM f p 1.10 15.74 0.16 12.64 +prunellier prunellier NOM m s 0.00 0.47 0.00 0.07 +prunelliers prunellier NOM m p 0.00 0.47 0.00 0.41 +prunes prune NOM f p 2.94 5.68 1.87 4.12 +prunier prunier NOM m s 0.96 2.57 0.49 1.28 +pruniers prunier NOM m p 0.96 2.57 0.47 1.28 +prénom_type prénom_type NOM m s 0.00 0.07 0.00 0.07 +prénom prénom NOM m s 25.88 30.47 23.18 24.19 +prénomma prénommer VER 0.83 2.36 0.00 0.07 ind:pas:3s; +prénommaient prénommer VER 0.83 2.36 0.00 0.07 ind:imp:3p; +prénommais prénommer VER 0.83 2.36 0.03 0.00 ind:imp:1s; +prénommait prénommer VER 0.83 2.36 0.02 0.81 ind:imp:3s; +prénommant prénommer VER 0.83 2.36 0.00 0.14 par:pre; +prénomme prénommer VER 0.83 2.36 0.06 0.47 imp:pre:2s;ind:pre:3s; +prénomment prénommer VER 0.83 2.36 0.14 0.07 ind:pre:3p; +prénommer prénommer VER 0.83 2.36 0.00 0.27 inf; +prénommez prénommer VER 0.83 2.36 0.02 0.00 ind:pre:2p; +prénommât prénommer VER 0.83 2.36 0.00 0.07 sub:imp:3s; +prénommèrent prénommer VER 0.83 2.36 0.01 0.00 ind:pas:3p; +prénommé prénommer VER m s 0.83 2.36 0.38 0.41 par:pas; +prénommée prénommé NOM f s 0.26 0.47 0.17 0.20 +prénoms prénom NOM m p 25.88 30.47 2.70 6.28 +prénuptial prénuptial ADJ m s 0.47 0.20 0.30 0.07 +prénuptiale prénuptial ADJ f s 0.47 0.20 0.17 0.14 +prunus prunus NOM m 0.00 0.07 0.00 0.07 +préoccupa préoccuper VER 17.43 18.92 0.01 0.07 ind:pas:3s; +préoccupai préoccuper VER 17.43 18.92 0.00 0.14 ind:pas:1s; +préoccupaient préoccuper VER 17.43 18.92 0.02 0.68 ind:imp:3p; +préoccupais préoccuper VER 17.43 18.92 0.23 0.27 ind:imp:1s;ind:imp:2s; +préoccupait préoccuper VER 17.43 18.92 0.52 3.78 ind:imp:3s; +préoccupant préoccupant ADJ m s 0.35 0.88 0.27 0.27 +préoccupante préoccupant ADJ f s 0.35 0.88 0.06 0.41 +préoccupantes préoccupant ADJ f p 0.35 0.88 0.02 0.20 +préoccupation préoccupation NOM f s 3.23 11.82 1.53 3.99 +préoccupations préoccupation NOM f p 3.23 11.82 1.69 7.84 +préoccupe préoccuper VER 17.43 18.92 7.48 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +préoccupent préoccuper VER 17.43 18.92 0.34 0.41 ind:pre:3p; +préoccuper préoccuper VER 17.43 18.92 2.68 3.45 inf; +préoccupera préoccuper VER 17.43 18.92 0.04 0.07 ind:fut:3s; +préoccuperai préoccuper VER 17.43 18.92 0.03 0.00 ind:fut:1s; +préoccuperaient préoccuper VER 17.43 18.92 0.01 0.00 cnd:pre:3p; +préoccuperais préoccuper VER 17.43 18.92 0.03 0.00 cnd:pre:1s; +préoccuperait préoccuper VER 17.43 18.92 0.06 0.00 cnd:pre:3s; +préoccupes préoccuper VER 17.43 18.92 0.81 0.14 ind:pre:2s; +préoccupez préoccuper VER 17.43 18.92 0.85 0.07 imp:pre:2p;ind:pre:2p; +préoccupiez préoccuper VER 17.43 18.92 0.02 0.00 ind:imp:2p; +préoccupions préoccuper VER 17.43 18.92 0.00 0.07 ind:imp:1p; +préoccupons préoccuper VER 17.43 18.92 0.02 0.20 imp:pre:1p;ind:pre:1p; +préoccupât préoccuper VER 17.43 18.92 0.00 0.20 sub:imp:3s; +préoccupâtes préoccuper VER 17.43 18.92 0.01 0.00 ind:pas:2p; +préoccupèrent préoccuper VER 17.43 18.92 0.00 0.07 ind:pas:3p; +préoccupé préoccuper VER m s 17.43 18.92 2.84 3.85 par:pas; +préoccupée préoccuper VER f s 17.43 18.92 0.71 1.35 par:pas; +préoccupées préoccupé ADJ f p 1.44 4.86 0.01 0.20 +préoccupés préoccuper VER m p 17.43 18.92 0.68 1.22 par:pas; +préopératoire préopératoire ADJ s 0.05 0.00 0.05 0.00 +prépa prépa NOM f s 0.78 0.00 0.78 0.00 +prépara préparer VER 174.32 154.12 0.30 5.00 ind:pas:3s; +préparai préparer VER 174.32 154.12 0.02 1.22 ind:pas:1s; +préparaient préparer VER 174.32 154.12 0.90 5.41 ind:imp:3p; +préparais préparer VER 174.32 154.12 1.68 2.43 ind:imp:1s;ind:imp:2s; +préparait préparer VER 174.32 154.12 3.38 25.00 ind:imp:3s; +préparant préparer VER 174.32 154.12 1.00 5.14 par:pre; +préparateur préparateur NOM m s 0.05 1.15 0.04 0.88 +préparateurs préparateur NOM m p 0.05 1.15 0.00 0.14 +préparatif préparatif NOM m s 3.09 7.36 0.00 0.07 +préparatifs préparatif NOM m p 3.09 7.36 3.09 7.30 +préparation préparation NOM f s 6.13 10.54 5.17 9.73 +préparations préparation NOM f p 6.13 10.54 0.95 0.81 +préparatoire préparatoire ADJ s 0.52 2.64 0.43 1.55 +préparatoires préparatoire ADJ p 0.52 2.64 0.09 1.08 +préparatrice préparateur NOM f s 0.05 1.15 0.01 0.07 +préparatrices préparateur NOM f p 0.05 1.15 0.00 0.07 +prépare préparer VER 174.32 154.12 45.54 19.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +préparent préparer VER 174.32 154.12 6.09 3.72 ind:pre:3p; +préparer préparer VER 174.32 154.12 46.70 43.24 ind:pre:2p;inf; +préparera préparer VER 174.32 154.12 0.85 0.41 ind:fut:3s; +préparerai préparer VER 174.32 154.12 1.65 0.47 ind:fut:1s; +prépareraient préparer VER 174.32 154.12 0.15 0.14 cnd:pre:3p; +préparerais préparer VER 174.32 154.12 0.24 0.14 cnd:pre:1s;cnd:pre:2s; +préparerait préparer VER 174.32 154.12 0.03 0.68 cnd:pre:3s; +prépareras préparer VER 174.32 154.12 0.05 0.00 ind:fut:2s; +préparerez préparer VER 174.32 154.12 0.04 0.00 ind:fut:2p; +préparerons préparer VER 174.32 154.12 0.30 0.07 ind:fut:1p; +prépareront préparer VER 174.32 154.12 0.04 0.07 ind:fut:3p; +prépares préparer VER 174.32 154.12 3.35 0.61 ind:pre:2s;sub:pre:2s; +préparez préparer VER 174.32 154.12 26.72 2.03 imp:pre:2p;ind:pre:2p; +prépariez préparer VER 174.32 154.12 0.38 0.07 ind:imp:2p; +préparions préparer VER 174.32 154.12 0.12 0.61 ind:imp:1p; +préparons préparer VER 174.32 154.12 2.92 0.74 imp:pre:1p;ind:pre:1p; +préparât préparer VER 174.32 154.12 0.00 0.54 sub:imp:3s; +préparèrent préparer VER 174.32 154.12 0.11 0.34 ind:pas:3p; +préparé préparer VER m s 174.32 154.12 25.19 21.96 par:pas; +préparée préparer VER f s 174.32 154.12 2.97 6.82 par:pas; +préparées préparer VER f p 174.32 154.12 0.75 2.77 par:pas; +préparés préparer VER m p 174.32 154.12 2.86 4.93 par:pas; +prépayée prépayer VER f s 0.01 0.00 0.01 0.00 par:pas; +prépondérance prépondérance NOM f s 0.07 0.61 0.07 0.61 +prépondérant prépondérant ADJ m s 0.15 1.35 0.12 0.27 +prépondérante prépondérant ADJ f s 0.15 1.35 0.03 0.88 +prépondérants prépondérant ADJ m p 0.15 1.35 0.00 0.20 +préposition préposition NOM f s 0.23 0.20 0.20 0.07 +prépositions préposition NOM f p 0.23 0.20 0.03 0.14 +préposé préposé NOM m s 0.91 3.99 0.77 2.84 +préposée préposé NOM f s 0.91 3.99 0.10 0.41 +préposées préposé NOM f p 0.91 3.99 0.00 0.07 +préposés préposé NOM m p 0.91 3.99 0.04 0.68 +prépotence prépotence NOM f s 0.00 0.07 0.00 0.07 +préprogrammé préprogrammé ADJ m s 0.09 0.00 0.07 0.00 +préprogrammée préprogrammé ADJ f s 0.09 0.00 0.03 0.00 +prépubère prépubère ADJ s 0.08 0.00 0.08 0.00 +prépuce prépuce NOM m s 0.89 0.47 0.88 0.41 +prépuces prépuce NOM m p 0.89 0.47 0.01 0.07 +préraphaélite préraphaélite ADJ s 0.00 0.07 0.00 0.07 +prérentrée prérentrée NOM f s 0.01 0.00 0.01 0.00 +préretraite préretraite NOM f s 0.04 0.00 0.04 0.00 +prurigo prurigo NOM m s 0.00 0.07 0.00 0.07 +prurit prurit NOM m s 2.15 0.88 2.15 0.88 +prérogative prérogative NOM f s 0.59 1.35 0.28 0.27 +prérogatives prérogative NOM f p 0.59 1.35 0.31 1.08 +préroman préroman ADJ m s 0.00 0.07 0.00 0.07 +préréglé prérégler VER m s 0.03 0.00 0.03 0.00 par:pas; +prérévolutionnaire prérévolutionnaire ADJ f s 0.00 0.07 0.00 0.07 +prés pré NOM m p 21.59 32.50 16.56 12.70 +présage présage NOM m s 2.99 4.59 1.95 2.77 +présagea présager VER 0.79 3.31 0.00 0.14 ind:pas:3s; +présageaient présager VER 0.79 3.31 0.01 0.27 ind:imp:3p; +présageait présager VER 0.79 3.31 0.13 0.95 ind:imp:3s; +présagent présager VER 0.79 3.31 0.01 0.00 ind:pre:3p; +présager présager VER 0.79 3.31 0.14 1.49 inf; +présagerait présager VER 0.79 3.31 0.01 0.07 cnd:pre:3s; +présages présage NOM m p 2.99 4.59 1.04 1.82 +présagé présager VER m s 0.79 3.31 0.01 0.00 par:pas; +préscolaire préscolaire ADJ f s 0.07 0.00 0.05 0.00 +préscolaires préscolaire ADJ p 0.07 0.00 0.02 0.00 +présence présence NOM f s 45.03 135.54 44.95 133.11 +présences présence NOM f p 45.03 135.54 0.07 2.43 +présent présent NOM m s 66.72 141.01 65.14 137.23 +présenta présenter VER 165.86 135.14 0.93 13.18 ind:pas:3s; +présentable présentable ADJ s 3.17 2.09 2.65 1.82 +présentables présentable ADJ p 3.17 2.09 0.52 0.27 +présentai présenter VER 165.86 135.14 0.17 1.28 ind:pas:1s; +présentaient présenter VER 165.86 135.14 0.21 4.32 ind:imp:3p; +présentais présenter VER 165.86 135.14 0.40 0.74 ind:imp:1s;ind:imp:2s; +présentait présenter VER 165.86 135.14 1.59 20.14 ind:imp:3s; +présentant présenter VER 165.86 135.14 1.09 5.54 par:pre; +présentassent présenter VER 165.86 135.14 0.00 0.07 sub:imp:3p; +présentateur présentateur NOM m s 2.91 1.49 1.76 1.08 +présentateurs présentateur NOM m p 2.91 1.49 0.20 0.14 +présentation présentation NOM f s 7.88 8.38 5.52 4.80 +présentations présentation NOM f p 7.88 8.38 2.37 3.58 +présentatrice présentateur NOM f s 2.91 1.49 0.95 0.20 +présentatrices présentatrice NOM f p 0.20 0.00 0.20 0.00 +présente présenter VER 165.86 135.14 61.59 27.50 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +présentement présentement ADV 1.27 3.78 1.27 3.78 +présentent présenter VER 165.86 135.14 3.81 4.73 ind:pre:3p; +présenter présenter VER 165.86 135.14 56.14 28.99 inf;; +présentera présenter VER 165.86 135.14 1.91 0.61 ind:fut:3s; +présenterai présenter VER 165.86 135.14 2.89 0.88 ind:fut:1s; +présenteraient présenter VER 165.86 135.14 0.00 0.61 cnd:pre:3p; +présenterais présenter VER 165.86 135.14 0.43 0.07 cnd:pre:1s;cnd:pre:2s; +présenterait présenter VER 165.86 135.14 0.36 2.03 cnd:pre:3s; +présenteras présenter VER 165.86 135.14 0.24 0.20 ind:fut:2s; +présenterez présenter VER 165.86 135.14 0.82 0.41 ind:fut:2p; +présenteriez présenter VER 165.86 135.14 0.03 0.00 cnd:pre:2p; +présenterons présenter VER 165.86 135.14 0.36 0.00 ind:fut:1p; +présenteront présenter VER 165.86 135.14 0.51 0.41 ind:fut:3p; +présentes présenter VER 165.86 135.14 3.44 0.41 ind:pre:2s; +présentez présenter VER 165.86 135.14 5.83 0.81 imp:pre:2p;ind:pre:2p; +présentiez présenter VER 165.86 135.14 0.40 0.14 ind:imp:2p; +présentions présenter VER 165.86 135.14 0.02 0.20 ind:imp:1p; +présentoir présentoir NOM m s 0.38 1.35 0.38 0.88 +présentoirs présentoir NOM m p 0.38 1.35 0.00 0.47 +présentons présenter VER 165.86 135.14 0.79 0.54 imp:pre:1p;ind:pre:1p; +présentât présenter VER 165.86 135.14 0.00 0.27 sub:imp:3s; +présents présent ADJ m p 53.70 80.74 5.38 8.85 +présentèrent présenter VER 165.86 135.14 0.15 1.28 ind:pas:3p; +présenté présenter VER m s 165.86 135.14 12.58 11.42 par:pas; +présentée présenter VER f s 165.86 135.14 3.86 3.99 par:pas; +présentées présenter VER f p 165.86 135.14 0.73 1.76 par:pas; +présentés présenter VER m p 165.86 135.14 4.57 2.64 par:pas; +préserva préserver VER 14.61 21.15 0.01 0.20 ind:pas:3s; +préservaient préserver VER 14.61 21.15 0.00 0.47 ind:imp:3p; +préservais préserver VER 14.61 21.15 0.11 0.07 ind:imp:1s; +préservait préserver VER 14.61 21.15 0.17 1.01 ind:imp:3s; +préservant préserver VER 14.61 21.15 0.45 0.41 par:pre; +préservateur préservateur NOM m s 0.01 0.00 0.01 0.00 +préservatif préservatif NOM m s 5.19 0.47 2.16 0.07 +préservatifs préservatif NOM m p 5.19 0.47 3.03 0.41 +préservation préservation NOM f s 1.00 0.47 1.00 0.47 +préserve préserver VER 14.61 21.15 2.99 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +préservent préserver VER 14.61 21.15 0.10 0.34 ind:pre:3p; +préserver préserver VER 14.61 21.15 7.26 9.66 ind:pre:2p;inf; +préservera préserver VER 14.61 21.15 0.23 0.07 ind:fut:3s; +préserverai préserver VER 14.61 21.15 0.03 0.00 ind:fut:1s; +préserverait préserver VER 14.61 21.15 0.00 0.20 cnd:pre:3s; +préservez préserver VER 14.61 21.15 0.54 0.20 imp:pre:2p;ind:pre:2p; +préservons préserver VER 14.61 21.15 0.21 0.00 imp:pre:1p;ind:pre:1p; +préservé préserver VER m s 14.61 21.15 1.49 3.65 par:pas; +préservée préserver VER f s 14.61 21.15 0.59 2.36 par:pas; +préservées préserver VER f p 14.61 21.15 0.32 0.41 par:pas; +préservés préserver VER m p 14.61 21.15 0.12 0.47 par:pas; +présida présider VER 4.72 10.61 0.14 0.27 ind:pas:3s; +présidai présider VER 4.72 10.61 0.00 0.20 ind:pas:1s; +présidaient présider VER 4.72 10.61 0.00 0.41 ind:imp:3p; +présidais présider VER 4.72 10.61 0.17 0.00 ind:imp:1s; +présidait présider VER 4.72 10.61 0.46 2.16 ind:imp:3s; +présidant présider VER 4.72 10.61 0.00 0.47 par:pre; +préside présider VER 4.72 10.61 1.20 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +présidence présidence NOM f s 4.27 5.95 4.26 5.88 +présidences présidence NOM f p 4.27 5.95 0.01 0.07 +président_directeur président_directeur NOM m s 0.02 0.27 0.02 0.27 +président président NOM m s 143.39 79.66 131.53 76.22 +présidente président NOM f s 143.39 79.66 9.21 1.08 +présidentes président NOM f p 143.39 79.66 0.17 0.07 +présidentiable présidentiable ADJ s 0.04 0.34 0.04 0.27 +présidentiables présidentiable ADJ p 0.04 0.34 0.00 0.07 +présidentiel présidentiel ADJ m s 3.80 1.69 1.86 0.68 +présidentielle présidentiel ADJ f s 3.80 1.69 1.85 0.95 +présidentielles présidentielle ADJ f p 0.62 0.27 0.62 0.27 +présidentiels présidentiel ADJ m p 3.80 1.69 0.09 0.07 +présidents_directeur présidents_directeur NOM m p 0.00 0.14 0.00 0.14 +présidents président NOM m p 143.39 79.66 2.48 2.30 +présider présider VER 4.72 10.61 1.01 1.89 inf; +présidera présider VER 4.72 10.61 0.38 0.07 ind:fut:3s; +présiderai présider VER 4.72 10.61 0.07 0.00 ind:fut:1s; +présiderais présider VER 4.72 10.61 0.00 0.07 cnd:pre:1s; +présiderait présider VER 4.72 10.61 0.03 0.14 cnd:pre:3s; +présideras présider VER 4.72 10.61 0.00 0.14 ind:fut:2s; +présiderez présider VER 4.72 10.61 0.01 0.07 ind:fut:2p; +présides présider VER 4.72 10.61 0.01 0.00 ind:pre:2s; +présidiez présider VER 4.72 10.61 0.02 0.00 ind:imp:2p; +présidium présidium NOM m s 0.02 0.14 0.02 0.14 +présidons présider VER 4.72 10.61 0.01 0.07 ind:pre:1p; +présidât présider VER 4.72 10.61 0.00 0.07 sub:imp:3s; +présidèrent présider VER 4.72 10.61 0.00 0.07 ind:pas:3p; +présidé présider VER m s 4.72 10.61 0.41 1.96 par:pas; +présidée présider VER f s 4.72 10.61 0.38 0.41 par:pas; +présidés présider VER m p 4.72 10.61 0.01 0.20 par:pas; +présocratique présocratique ADJ s 0.00 0.20 0.00 0.14 +présocratiques présocratique ADJ p 0.00 0.20 0.00 0.07 +présomptif présomptif ADJ m s 0.23 0.20 0.23 0.14 +présomption présomption NOM f s 1.46 1.76 1.06 1.08 +présomptions présomption NOM f p 1.46 1.76 0.39 0.68 +présomptive présomptif ADJ f s 0.23 0.20 0.00 0.07 +présomptueuse présomptueux NOM f s 0.42 0.20 0.14 0.00 +présomptueuses présomptueux ADJ f p 1.00 1.22 0.01 0.14 +présomptueux présomptueux ADJ m s 1.00 1.22 0.91 0.88 +prussianisé prussianiser VER m s 0.00 0.07 0.00 0.07 par:pas; +prussien prussien ADJ m s 0.41 3.38 0.16 1.01 +prussienne prussien ADJ f s 0.41 3.38 0.04 1.42 +prussiennes prussien ADJ f p 0.41 3.38 0.03 0.41 +prussiens prussien NOM m p 0.46 2.97 0.38 2.03 +prussik prussik NOM m s 0.02 0.00 0.02 0.00 +prussique prussique ADJ m s 0.41 0.20 0.41 0.20 +préséance préséance NOM f s 0.06 0.81 0.05 0.47 +préséances préséance NOM f p 0.06 0.81 0.01 0.34 +présélection présélection NOM f s 0.06 0.00 0.04 0.00 +présélectionné présélectionner VER m s 0.04 0.00 0.03 0.00 par:pas; +présélectionnée présélectionner VER f s 0.04 0.00 0.02 0.00 par:pas; +présélections présélection NOM f p 0.06 0.00 0.02 0.00 +présumables présumable ADJ m p 0.00 0.07 0.00 0.07 +présumai présumer VER 9.29 3.65 0.00 0.20 ind:pas:1s; +présumais présumer VER 9.29 3.65 0.16 0.00 ind:imp:1s;ind:imp:2s; +présumait présumer VER 9.29 3.65 0.01 0.47 ind:imp:3s; +présumant présumer VER 9.29 3.65 0.08 0.14 par:pre; +présume présumer VER 9.29 3.65 6.36 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +présumer présumer VER 9.29 3.65 0.82 0.61 inf; +présumerai présumer VER 9.29 3.65 0.02 0.00 ind:fut:1s; +présumez présumer VER 9.29 3.65 0.11 0.00 imp:pre:2p;ind:pre:2p; +présumons présumer VER 9.29 3.65 0.11 0.00 imp:pre:1p;ind:pre:1p; +présumé présumé ADJ m s 1.62 0.88 1.22 0.47 +présumée présumer VER f s 9.29 3.65 0.38 0.20 par:pas; +présumées présumé ADJ f p 1.62 0.88 0.02 0.07 +présumés présumer VER m p 9.29 3.65 0.21 0.00 par:pas; +préséniles présénile ADJ p 0.10 0.00 0.10 0.00 +présupposant présupposer VER 0.15 0.20 0.00 0.14 par:pre; +présuppose présupposer VER 0.15 0.20 0.14 0.00 ind:pre:3s; +présupposent présupposer VER 0.15 0.20 0.01 0.00 ind:pre:3p; +présupposée présupposer VER f s 0.15 0.20 0.00 0.07 par:pas; +prêt_bail prêt_bail NOM m s 0.00 0.27 0.00 0.27 +prêt_à_porter prêt_à_porter NOM m s 0.00 0.95 0.00 0.95 +prêt prêt ADJ m s 314.64 121.28 170.23 60.41 +prêta prêter VER 62.00 87.09 0.21 4.59 ind:pas:3s; +prêtai prêter VER 62.00 87.09 0.00 0.41 ind:pas:1s; +prêtaient prêter VER 62.00 87.09 0.28 2.77 ind:imp:3p; +prêtais prêter VER 62.00 87.09 0.38 1.42 ind:imp:1s;ind:imp:2s; +prêtait prêter VER 62.00 87.09 0.29 13.24 ind:imp:3s; +prêtant prêter VER 62.00 87.09 0.33 2.91 par:pre; +prêtassent prêter VER 62.00 87.09 0.00 0.14 sub:imp:3p; +prête_nom prête_nom NOM m s 0.00 0.27 0.00 0.27 +prête prêt ADJ f s 314.64 121.28 66.25 28.31 +prétend prétendre VER 35.64 67.43 11.42 13.24 ind:pre:3s; +prétendît prétendre VER 35.64 67.43 0.00 0.34 sub:imp:3s; +prétendaient prétendre VER 35.64 67.43 0.42 3.65 ind:imp:3p; +prétendais prétendre VER 35.64 67.43 0.55 1.49 ind:imp:1s;ind:imp:2s; +prétendait prétendre VER 35.64 67.43 1.24 16.49 ind:imp:3s; +prétendant prétendant NOM m s 3.16 2.16 1.96 1.01 +prétendante prétendant NOM f s 3.16 2.16 0.01 0.00 +prétendants prétendant NOM m p 3.16 2.16 1.20 1.15 +prétende prétendre VER 35.64 67.43 0.26 0.41 sub:pre:1s;sub:pre:3s; +prétendent prétendre VER 35.64 67.43 2.67 4.32 ind:pre:3p; +prétendez prétendre VER 35.64 67.43 3.10 1.22 imp:pre:2p;ind:pre:2p; +prétendiez prétendre VER 35.64 67.43 0.16 0.07 ind:imp:2p; +prétendions prétendre VER 35.64 67.43 0.02 0.34 ind:imp:1p; +prétendirent prétendre VER 35.64 67.43 0.02 0.54 ind:pas:3p; +prétendis prétendre VER 35.64 67.43 0.00 0.74 ind:pas:1s; +prétendissent prétendre VER 35.64 67.43 0.00 0.07 sub:imp:3p; +prétendit prétendre VER 35.64 67.43 0.17 1.82 ind:pas:3s; +prétendons prétendre VER 35.64 67.43 0.19 0.81 imp:pre:1p;ind:pre:1p; +prétendra prétendre VER 35.64 67.43 0.21 0.27 ind:fut:3s; +prétendrai prétendre VER 35.64 67.43 0.09 0.07 ind:fut:1s; +prétendraient prétendre VER 35.64 67.43 0.00 0.14 cnd:pre:3p; +prétendrais prétendre VER 35.64 67.43 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +prétendrait prétendre VER 35.64 67.43 0.13 0.34 cnd:pre:3s; +prétendras prétendre VER 35.64 67.43 0.29 0.00 ind:fut:2s; +prétendre prétendre VER 35.64 67.43 6.00 10.54 inf; +prétendront prétendre VER 35.64 67.43 0.03 0.20 ind:fut:3p; +prétends prétendre VER 35.64 67.43 4.84 3.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prétendu prétendre VER m s 35.64 67.43 2.41 3.65 par:pas; +prétendue prétendu ADJ f s 2.82 7.64 0.75 2.43 +prétendues prétendu ADJ f p 2.82 7.64 0.14 0.88 +prétendument prétendument ADV 0.37 1.76 0.37 1.76 +prétendus prétendu ADJ m p 2.82 7.64 0.61 1.82 +prêtent prêter VER 62.00 87.09 0.42 2.50 ind:pre:3p; +prétentaine prétentaine NOM f s 0.02 0.07 0.02 0.07 +prétentiard prétentiard ADJ m s 0.14 0.00 0.14 0.00 +prétentiarde prétentiard NOM f s 0.01 0.20 0.00 0.07 +prétentiards prétentiard NOM m p 0.01 0.20 0.00 0.07 +prétentieuse prétentieux ADJ f s 4.51 5.95 1.05 2.03 +prétentieuses prétentieux ADJ f p 4.51 5.95 0.10 0.68 +prétentieux prétentieux ADJ m 4.51 5.95 3.37 3.24 +prétention prétention NOM f s 2.63 10.68 1.51 6.28 +prétentions prétention NOM f p 2.63 10.68 1.12 4.39 +prêter prêter VER 62.00 87.09 14.40 21.22 inf;; +prêtera prêter VER 62.00 87.09 1.37 0.41 ind:fut:3s; +prêterai prêter VER 62.00 87.09 1.56 0.88 ind:fut:1s; +prêteraient prêter VER 62.00 87.09 0.03 0.41 cnd:pre:3p; +prêterais prêter VER 62.00 87.09 0.55 0.41 cnd:pre:1s;cnd:pre:2s; +prêterait prêter VER 62.00 87.09 0.48 1.08 cnd:pre:3s; +prêteras prêter VER 62.00 87.09 0.22 0.07 ind:fut:2s; +prêterez prêter VER 62.00 87.09 0.09 0.07 ind:fut:2p; +prêteriez prêter VER 62.00 87.09 0.16 0.27 cnd:pre:2p; +prêterions prêter VER 62.00 87.09 0.01 0.14 cnd:pre:1p; +préternaturel préternaturel ADJ m s 0.03 0.00 0.03 0.00 +prêterons prêter VER 62.00 87.09 0.02 0.20 ind:fut:1p; +prêteront prêter VER 62.00 87.09 0.41 0.20 ind:fut:3p; +prêtes prêt ADJ f p 314.64 121.28 10.78 7.64 +prêteur prêteur ADJ m s 0.27 0.41 0.23 0.20 +préteur préteur NOM m s 0.02 0.20 0.02 0.14 +prêteur prêteur NOM m s 1.56 0.61 1.13 0.27 +prêteurs prêteur ADJ m p 0.27 0.41 0.02 0.14 +préteurs préteur NOM m p 0.02 0.20 0.00 0.07 +prêteurs prêteur NOM m p 1.56 0.61 0.43 0.27 +prêteuse prêteur ADJ f s 0.27 0.41 0.01 0.07 +prétexta prétexter VER 0.87 5.61 0.01 0.61 ind:pas:3s; +prétextai prétexter VER 0.87 5.61 0.00 0.20 ind:pas:1s; +prétextait prétexter VER 0.87 5.61 0.01 0.41 ind:imp:3s; +prétextant prétexter VER 0.87 5.61 0.34 3.11 par:pre; +prétexte prétexte NOM m s 14.04 42.91 12.10 36.82 +prétextent prétexter VER 0.87 5.61 0.01 0.00 ind:pre:3p; +prétexter prétexter VER 0.87 5.61 0.19 0.07 inf; +prétextes prétexte NOM m p 14.04 42.91 1.94 6.08 +prétexté prétexter VER m s 0.87 5.61 0.19 0.54 par:pas; +prêtez prêter VER 62.00 87.09 4.16 0.74 imp:pre:2p;ind:pre:2p; +prêtiez prêter VER 62.00 87.09 0.22 0.07 ind:imp:2p; +prêtions prêter VER 62.00 87.09 0.02 0.20 ind:imp:1p; +prétoire prétoire NOM m s 0.24 2.30 0.09 2.16 +prétoires prétoire NOM m p 0.24 2.30 0.16 0.14 +prêtâmes prêter VER 62.00 87.09 0.00 0.07 ind:pas:1p; +prêtons prêter VER 62.00 87.09 0.26 0.41 imp:pre:1p;ind:pre:1p; +prétorien prétorien NOM m s 0.18 0.07 0.03 0.00 +prétorienne prétorien ADJ f s 0.36 0.34 0.35 0.14 +prétoriennes prétorien ADJ f p 0.36 0.34 0.00 0.07 +prétoriens prétorien NOM m p 0.18 0.07 0.15 0.07 +prêtât prêter VER 62.00 87.09 0.00 0.34 sub:imp:3s; +prêtraille prêtraille NOM f s 0.00 0.07 0.00 0.07 +prêtre_ouvrier prêtre_ouvrier NOM m s 0.00 0.07 0.00 0.07 +prêtre prêtre NOM m s 51.20 45.27 38.37 29.39 +prêtres prêtre NOM m p 51.20 45.27 11.31 14.66 +prêtresse prêtre NOM f s 51.20 45.27 1.52 0.88 +prêtresses prêtresse NOM f p 0.49 0.00 0.49 0.00 +prêtrise prêtrise NOM f s 0.28 0.41 0.28 0.41 +prêts prêt ADJ 314.64 121.28 67.39 24.93 +prêtèrent prêter VER 62.00 87.09 0.30 0.14 ind:pas:3p; +prêté prêter VER m s 62.00 87.09 10.73 11.08 par:pas; +prêtée prêter VER f s 62.00 87.09 1.28 2.57 par:pas; +prêtées prêter VER f p 62.00 87.09 0.12 0.54 par:pas; +préture préture NOM f s 0.01 0.00 0.01 0.00 +prêtés prêter VER m p 62.00 87.09 0.37 1.15 par:pas; +préélectoral préélectoral ADJ m s 0.02 0.00 0.01 0.00 +préélectorale préélectoral ADJ f s 0.02 0.00 0.01 0.00 +prééminence prééminence NOM f s 0.01 0.41 0.01 0.41 +prééminente prééminent ADJ f s 0.00 0.07 0.00 0.07 +préétabli préétabli ADJ m s 0.28 0.41 0.25 0.14 +préétablie préétabli ADJ f s 0.28 0.41 0.01 0.20 +préétablies préétabli ADJ f p 0.28 0.41 0.01 0.00 +préétablis préétabli ADJ m p 0.28 0.41 0.01 0.07 +prévînt prévenir VER 129.26 73.72 0.00 0.07 sub:imp:3s; +prévôt prévôt NOM m s 0.47 1.42 0.39 1.35 +prévôts prévôt NOM m p 0.47 1.42 0.08 0.07 +prévôté prévôté NOM f s 0.01 0.20 0.01 0.20 +prévalaient prévaloir VER 1.44 2.64 0.01 0.27 ind:imp:3p; +prévalait prévaloir VER 1.44 2.64 0.14 0.27 ind:imp:3s; +prévalant prévaloir VER 1.44 2.64 0.10 0.07 par:pre; +prévalence prévalence NOM f s 0.11 0.00 0.11 0.00 +prévalent prévalent ADJ m s 0.14 0.00 0.14 0.00 +prévalez prévaloir VER 1.44 2.64 0.00 0.07 ind:pre:2p; +prévaloir prévaloir VER 1.44 2.64 0.42 1.15 inf; +prévalu prévaloir VER m s 1.44 2.64 0.08 0.20 par:pas; +prévalut prévaloir VER 1.44 2.64 0.01 0.20 ind:pas:3s; +prévaricateur prévaricateur NOM m s 0.00 0.14 0.00 0.14 +prévaudra prévaloir VER 1.44 2.64 0.36 0.00 ind:fut:3s; +prévaudrait prévaloir VER 1.44 2.64 0.03 0.14 cnd:pre:3s; +prévaudront prévaloir VER 1.44 2.64 0.01 0.00 ind:fut:3p; +prévaut prévaloir VER 1.44 2.64 0.26 0.27 ind:pre:3s; +prévenaient prévenir VER 129.26 73.72 0.00 0.20 ind:imp:3p; +prévenais prévenir VER 129.26 73.72 0.06 0.07 ind:imp:1s;ind:imp:2s; +prévenait prévenir VER 129.26 73.72 0.32 2.23 ind:imp:3s; +prévenance prévenance NOM f s 0.43 2.50 0.23 0.41 +prévenances prévenance NOM f p 0.43 2.50 0.20 2.09 +prévenant prévenant ADJ m s 1.12 1.35 0.74 0.74 +prévenante prévenant ADJ f s 1.12 1.35 0.29 0.47 +prévenants prévenant ADJ m p 1.12 1.35 0.09 0.14 +prévenez prévenir VER 129.26 73.72 10.22 1.42 imp:pre:2p;ind:pre:2p; +préveniez prévenir VER 129.26 73.72 0.07 0.07 ind:imp:2p; +prévenions prévenir VER 129.26 73.72 0.11 0.07 ind:imp:1p; +prévenir prévenir VER 129.26 73.72 42.49 31.49 inf; +prévenons prévenir VER 129.26 73.72 0.67 0.00 imp:pre:1p;ind:pre:1p; +préventif préventif ADJ m s 1.85 1.22 0.26 0.41 +prévention prévention NOM f s 1.40 2.57 1.33 1.35 +préventions prévention NOM f p 1.40 2.57 0.07 1.22 +préventive préventif ADJ f s 1.85 1.22 1.50 0.61 +préventivement préventivement ADV 0.00 0.34 0.00 0.34 +préventives préventif ADJ f p 1.85 1.22 0.09 0.20 +préventorium préventorium NOM m s 0.00 0.41 0.00 0.41 +prévenu prévenir VER m s 129.26 73.72 24.25 14.53 par:pas; +prévenue prévenir VER f s 129.26 73.72 7.24 3.65 par:pas; +prévenues prévenir VER f p 129.26 73.72 0.33 0.20 par:pas; +prévenus prévenir VER m p 129.26 73.72 4.64 3.58 par:pas; +préviendra prévenir VER 129.26 73.72 1.06 0.20 ind:fut:3s; +préviendrai prévenir VER 129.26 73.72 1.96 0.41 ind:fut:1s; +préviendrais prévenir VER 129.26 73.72 0.07 0.07 cnd:pre:1s; +préviendrait prévenir VER 129.26 73.72 0.08 0.47 cnd:pre:3s; +préviendras prévenir VER 129.26 73.72 0.12 0.20 ind:fut:2s; +préviendrez prévenir VER 129.26 73.72 0.14 0.14 ind:fut:2p; +préviendrons prévenir VER 129.26 73.72 0.18 0.00 ind:fut:1p; +préviendront prévenir VER 129.26 73.72 0.10 0.07 ind:fut:3p; +prévienne prévenir VER 129.26 73.72 1.37 1.69 sub:pre:1s;sub:pre:3s; +préviennent prévenir VER 129.26 73.72 0.63 0.47 ind:pre:3p; +préviennes prévenir VER 129.26 73.72 0.23 0.00 sub:pre:2s; +préviens prévenir VER 129.26 73.72 29.86 6.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prévient prévenir VER 129.26 73.72 2.50 2.03 ind:pre:3s; +prévins prévenir VER 129.26 73.72 0.00 0.54 ind:pas:1s; +prévint prévenir VER 129.26 73.72 0.00 2.30 ind:pas:3s; +prévis prévis NOM f 0.00 0.14 0.00 0.14 +prévisibilité prévisibilité NOM f s 0.04 0.00 0.04 0.00 +prévisible prévisible ADJ s 2.79 3.45 2.40 2.77 +prévisibles prévisible ADJ p 2.79 3.45 0.39 0.68 +prévision prévision NOM f s 3.29 7.03 1.28 3.58 +prévisionnel prévisionnel ADJ m s 0.12 0.07 0.08 0.00 +prévisionnelles prévisionnel ADJ f p 0.12 0.07 0.01 0.00 +prévisionnels prévisionnel ADJ m p 0.12 0.07 0.03 0.07 +prévisions prévision NOM f p 3.29 7.03 2.00 3.45 +prévit prévoir VER 78.22 77.09 0.00 0.07 ind:pas:3s; +prévoie prévoir VER 78.22 77.09 0.44 0.00 sub:pre:1s;sub:pre:3s; +prévoient prévoir VER 78.22 77.09 0.54 0.34 ind:pre:3p; +prévoies prévoir VER 78.22 77.09 0.09 0.00 sub:pre:2s; +prévoir prévoir VER 78.22 77.09 8.23 17.70 inf; +prévoira prévoir VER 78.22 77.09 0.01 0.00 ind:fut:3s; +prévoirait prévoir VER 78.22 77.09 0.01 0.07 cnd:pre:3s; +prévois prévoir VER 78.22 77.09 1.86 1.08 imp:pre:2s;ind:pre:1s;ind:pre:2s; +prévoit prévoir VER 78.22 77.09 3.05 1.96 ind:pre:3s; +prévoyaient prévoir VER 78.22 77.09 0.19 0.54 ind:imp:3p; +prévoyais prévoir VER 78.22 77.09 0.40 1.62 ind:imp:1s;ind:imp:2s; +prévoyait prévoir VER 78.22 77.09 0.55 4.05 ind:imp:3s; +prévoyance prévoyance NOM f s 0.43 1.28 0.43 1.22 +prévoyances prévoyance NOM f p 0.43 1.28 0.00 0.07 +prévoyant prévoyant ADJ m s 0.78 1.89 0.58 0.88 +prévoyante prévoyant ADJ f s 0.78 1.89 0.06 0.47 +prévoyantes prévoyant ADJ f p 0.78 1.89 0.00 0.14 +prévoyants prévoyant ADJ m p 0.78 1.89 0.14 0.41 +prévoyez prévoir VER 78.22 77.09 0.96 0.14 imp:pre:2p;ind:pre:2p; +prévoyions prévoir VER 78.22 77.09 0.01 0.07 ind:imp:1p; +prévoyons prévoir VER 78.22 77.09 0.49 0.20 imp:pre:1p;ind:pre:1p; +prévu prévoir VER m s 78.22 77.09 55.54 33.45 par:pas; +prévue prévoir VER f s 78.22 77.09 4.35 7.70 par:pas; +prévues prévoir VER f p 78.22 77.09 0.65 3.51 par:pas; +prévus prévoir VER m p 78.22 77.09 0.76 2.43 par:pas; +prytanée prytanée NOM m s 0.00 0.27 0.00 0.27 +psalliotes psalliote NOM f p 0.00 0.20 0.00 0.20 +psalmiste psalmiste NOM s 0.00 0.14 0.00 0.14 +psalmodia psalmodier VER 0.33 3.24 0.00 0.20 ind:pas:3s; +psalmodiaient psalmodier VER 0.33 3.24 0.00 0.14 ind:imp:3p; +psalmodiais psalmodier VER 0.33 3.24 0.03 0.14 ind:imp:1s;ind:imp:2s; +psalmodiait psalmodier VER 0.33 3.24 0.01 0.81 ind:imp:3s; +psalmodiant psalmodier VER 0.33 3.24 0.01 0.81 par:pre; +psalmodie psalmodier VER 0.33 3.24 0.06 0.41 ind:pre:1s;ind:pre:3s; +psalmodient psalmodier VER 0.33 3.24 0.00 0.14 ind:pre:3p; +psalmodier psalmodier VER 0.33 3.24 0.16 0.47 inf; +psalmodies psalmodie NOM f p 0.15 0.74 0.12 0.41 +psalmodié psalmodier VER m s 0.33 3.24 0.01 0.14 par:pas; +psalmodiés psalmodier VER m p 0.33 3.24 0.01 0.00 par:pas; +psaume psaume NOM m s 1.73 4.39 0.83 1.96 +psaumes psaume NOM m p 1.73 4.39 0.90 2.43 +psautier psautier NOM m s 0.00 0.14 0.00 0.14 +pschent pschent NOM m s 0.00 0.07 0.00 0.07 +pschitt pschitt ONO 0.02 0.95 0.02 0.95 +pseudo_gouvernement pseudo_gouvernement NOM m s 0.00 0.14 0.00 0.14 +pseudo pseudo NOM m s 1.62 1.08 1.37 1.01 +pseudobulbaire pseudobulbaire ADJ f s 0.01 0.00 0.01 0.00 +pseudomonas pseudomonas NOM m 0.05 0.00 0.05 0.00 +pseudonyme pseudonyme NOM m s 1.62 4.05 1.46 3.38 +pseudonymes pseudonyme NOM m p 1.62 4.05 0.16 0.68 +pseudopodes pseudopode NOM m p 0.00 0.14 0.00 0.14 +pseudos pseudo NOM m p 1.62 1.08 0.25 0.07 +psi psi NOM m 0.04 0.00 0.04 0.00 +psilocybine psilocybine NOM f s 0.05 0.00 0.05 0.00 +psitt psitt ONO 0.01 0.20 0.01 0.20 +psittacose psittacose NOM f s 0.05 0.00 0.05 0.00 +psoriasis psoriasis NOM m 0.14 0.00 0.14 0.00 +pst pst ONO 0.43 0.00 0.43 0.00 +psy psy NOM s 17.22 3.85 15.94 3.85 +psychanalyse psychanalyse NOM f s 1.35 4.73 1.35 4.66 +psychanalyser psychanalyser VER 0.22 1.42 0.14 1.01 inf; +psychanalyserai psychanalyser VER 0.22 1.42 0.00 0.20 ind:fut:1s; +psychanalyses psychanalyser VER 0.22 1.42 0.01 0.00 ind:pre:2s; +psychanalyste psychanalyste NOM s 0.91 3.38 0.83 2.77 +psychanalystes psychanalyste NOM p 0.91 3.38 0.08 0.61 +psychanalysé psychanalyser VER m s 0.22 1.42 0.04 0.07 par:pas; +psychanalytique psychanalytique ADJ s 0.15 0.54 0.13 0.41 +psychanalytiques psychanalytique ADJ p 0.15 0.54 0.02 0.14 +psychasthéniques psychasthénique ADJ p 0.00 0.07 0.00 0.07 +psychiatre_conseil psychiatre_conseil NOM s 0.02 0.00 0.02 0.00 +psychiatre psychiatre NOM s 13.52 8.11 11.39 6.82 +psychiatres psychiatre NOM p 13.52 8.11 2.13 1.28 +psychiatrie psychiatrie NOM f s 3.59 1.22 3.59 1.22 +psychiatrique psychiatrique ADJ s 9.16 3.65 7.68 3.04 +psychiatriques psychiatrique ADJ p 9.16 3.65 1.48 0.61 +psychique psychique ADJ s 3.34 2.84 1.75 1.76 +psychiquement psychiquement ADV 0.13 0.00 0.13 0.00 +psychiques psychique ADJ p 3.34 2.84 1.59 1.08 +psychisme psychisme NOM m s 0.38 1.15 0.38 1.08 +psychismes psychisme NOM m p 0.38 1.15 0.00 0.07 +psycho psycho ADV 2.11 0.27 2.11 0.27 +psychochirurgie psychochirurgie NOM f s 0.02 0.00 0.02 0.00 +psychodrame psychodrame NOM m s 0.33 0.20 0.33 0.20 +psychodysleptique psychodysleptique ADJ s 0.01 0.00 0.01 0.00 +psychogène psychogène ADJ f s 0.01 1.08 0.01 0.20 +psychogènes psychogène ADJ p 0.01 1.08 0.00 0.88 +psychokinésie psychokinésie NOM f s 0.20 0.00 0.20 0.00 +psycholinguistes psycholinguiste NOM p 0.00 0.07 0.00 0.07 +psycholinguistique psycholinguistique ADJ s 0.01 0.00 0.01 0.00 +psychologie_fiction psychologie_fiction NOM f s 0.00 0.07 0.00 0.07 +psychologie psychologie NOM f s 5.64 8.24 5.64 8.11 +psychologies psychologie NOM f p 5.64 8.24 0.00 0.14 +psychologique psychologique ADJ s 8.07 6.69 6.79 4.93 +psychologiquement psychologiquement ADV 1.68 0.34 1.68 0.34 +psychologiques psychologique ADJ p 8.07 6.69 1.28 1.76 +psychologisation psychologisation NOM f s 0.00 0.07 0.00 0.07 +psychologue psychologue NOM s 6.67 3.72 5.98 2.64 +psychologues psychologue NOM p 6.67 3.72 0.69 1.08 +psychomotrice psychomoteur ADJ f s 0.14 0.00 0.14 0.00 +psychométrique psychométrique ADJ s 0.02 0.00 0.02 0.00 +psychonévrose psychonévrose NOM f s 0.01 0.00 0.01 0.00 +psychopathe psychopathe NOM s 9.38 0.14 8.01 0.14 +psychopathes psychopathe NOM p 9.38 0.14 1.38 0.00 +psychopathie psychopathie NOM f s 0.02 0.00 0.02 0.00 +psychopathique psychopathique ADJ f s 0.13 0.00 0.13 0.00 +psychopathologie psychopathologie NOM f s 0.05 0.07 0.05 0.07 +psychopathologique psychopathologique ADJ f s 0.01 0.07 0.01 0.07 +psychopharmacologie psychopharmacologie NOM f s 0.03 0.00 0.03 0.00 +psychophysiologie psychophysiologie NOM f s 0.01 0.00 0.01 0.00 +psychophysiologique psychophysiologique ADJ f s 0.01 0.00 0.01 0.00 +psychorigide psychorigide ADJ m s 0.02 0.00 0.02 0.00 +psychose psychose NOM f s 1.79 0.95 1.79 0.95 +psychosexuel psychosexuel ADJ m s 0.01 0.00 0.01 0.00 +psychosociologie psychosociologie NOM f s 0.00 0.07 0.00 0.07 +psychosociologue psychosociologue NOM s 0.10 0.00 0.10 0.00 +psychosomaticien psychosomaticien NOM m s 0.00 0.20 0.00 0.20 +psychosomatique psychosomatique ADJ s 0.66 0.47 0.55 0.41 +psychosomatiques psychosomatique ADJ p 0.66 0.47 0.11 0.07 +psychotechnicien psychotechnicien NOM m s 0.00 0.20 0.00 0.14 +psychotechniciens psychotechnicien NOM m p 0.00 0.20 0.00 0.07 +psychotechnique psychotechnique ADJ m s 0.20 0.00 0.20 0.00 +psychothérapeute psychothérapeute NOM s 0.23 0.14 0.23 0.14 +psychothérapie psychothérapie NOM f s 0.69 0.20 0.69 0.20 +psychotique psychotique ADJ s 2.66 0.27 2.25 0.00 +psychotiques psychotique ADJ p 2.66 0.27 0.42 0.27 +psychotoniques psychotonique NOM p 0.01 0.00 0.01 0.00 +psychotrope psychotrope NOM s 0.34 0.00 0.07 0.00 +psychotropes psychotrope NOM p 0.34 0.00 0.26 0.00 +psyché psyché NOM f s 0.73 1.08 0.70 1.01 +psychédélique psychédélique ADJ s 0.89 0.61 0.79 0.41 +psychédéliques psychédélique ADJ p 0.89 0.61 0.11 0.20 +psychés psyché NOM f p 0.73 1.08 0.03 0.07 +psyllium psyllium NOM m s 0.01 0.00 0.01 0.00 +psys psy NOM p 17.22 3.85 1.28 0.00 +pèche pécher VER 9.87 4.59 0.96 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèchent pécher VER 9.87 4.59 0.01 0.07 ind:pre:3p; +pègre pègre NOM f s 1.34 1.42 1.34 1.42 +pèle peler VER 1.78 4.93 0.88 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèlent peler VER 1.78 4.93 0.27 0.20 ind:pre:3p; +pèlerai peler VER 1.78 4.93 0.02 0.00 ind:fut:1s; +pèlerin pèlerin NOM m s 4.04 12.70 1.31 1.89 +pèlerinage pèlerinage NOM m s 2.32 8.58 2.02 7.23 +pèlerinages pèlerinage NOM m p 2.32 8.58 0.30 1.35 +pèlerine pèlerin NOM f s 4.04 12.70 0.27 4.80 +pèlerines pèlerin NOM f p 4.04 12.70 0.01 0.95 +pèlerins pèlerin NOM m p 4.04 12.70 2.45 5.07 +pèles peler VER 1.78 4.93 0.00 0.14 ind:pre:2s; +père père NOM m s 895.55 723.51 879.31 708.11 +pères père NOM m p 895.55 723.51 16.25 15.41 +pèse_acide pèse_acide NOM m s 0.00 0.07 0.00 0.07 +pèse_bébé pèse_bébé NOM m s 0.00 0.14 0.00 0.14 +pèse_lettre pèse_lettre NOM m s 0.00 0.07 0.00 0.07 +pèse_personne pèse_personne NOM m s 0.02 0.07 0.02 0.00 +pèse_personne pèse_personne NOM m p 0.02 0.07 0.00 0.07 +pèse peser VER 23.41 70.88 10.47 13.18 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pèsent peser VER 23.41 70.88 2.02 4.32 ind:pre:3p; +pèsera peser VER 23.41 70.88 0.30 0.54 ind:fut:3s; +pèserai peser VER 23.41 70.88 0.02 0.20 ind:fut:1s; +pèseraient peser VER 23.41 70.88 0.04 0.07 cnd:pre:3p; +pèserais peser VER 23.41 70.88 0.12 0.14 cnd:pre:1s;cnd:pre:2s; +pèserait peser VER 23.41 70.88 0.05 0.74 cnd:pre:3s; +pèseras peser VER 23.41 70.88 0.01 0.00 ind:fut:2s; +pèseront peser VER 23.41 70.88 0.13 0.07 ind:fut:3p; +pèses peser VER 23.41 70.88 0.61 0.14 ind:pre:2s; +pète_sec pète_sec ADJ 0.03 0.41 0.03 0.41 +pète péter VER 31.66 16.28 8.16 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pètent péter VER 31.66 16.28 0.79 0.68 ind:pre:3p; +pètes péter VER 31.66 16.28 0.85 0.27 ind:pre:2s; +pètesec pètesec ADJ f s 0.00 0.07 0.00 0.07 +pèze pèze NOM m s 0.82 0.95 0.82 0.95 +ptosis ptosis NOM m 0.01 0.00 0.01 0.00 +ptérodactyle ptérodactyle NOM m s 0.21 0.20 0.19 0.07 +ptérodactyles ptérodactyle NOM m p 0.21 0.20 0.02 0.14 +ptyx ptyx NOM m 0.00 0.07 0.00 0.07 +pu pouvoir VER m s 5524.52 2659.80 366.22 349.32 par:pas; +puîné puîné NOM m s 0.00 0.27 0.00 0.14 +puînée puîné ADJ f s 0.00 0.07 0.00 0.07 +puînés puîné NOM m p 0.00 0.27 0.00 0.14 +pua puer VER 36.29 18.65 0.01 0.07 ind:pas:3s; +péage péage NOM m s 1.08 1.01 0.90 0.88 +péages péage NOM m p 1.08 1.01 0.18 0.14 +péagiste péagiste NOM s 0.00 0.07 0.00 0.07 +puaient puer VER 36.29 18.65 0.04 0.47 ind:imp:3p; +puais puer VER 36.29 18.65 0.37 0.20 ind:imp:1s;ind:imp:2s; +puait puer VER 36.29 18.65 1.19 3.51 ind:imp:3s; +péan péan NOM m s 0.00 0.07 0.00 0.07 +puant puant ADJ m s 7.02 11.49 2.74 4.59 +puante puant ADJ f s 7.02 11.49 1.91 3.11 +puantes puant ADJ f p 7.02 11.49 0.77 2.30 +puanteur puanteur NOM f s 3.44 9.05 3.32 7.91 +puanteurs puanteur NOM f p 3.44 9.05 0.12 1.15 +puants puant ADJ m p 7.02 11.49 1.60 1.49 +pub pub NOM s 25.65 4.53 21.39 3.99 +pubertaire pubertaire ADJ s 0.14 0.20 0.14 0.07 +pubertaires pubertaire ADJ f p 0.14 0.20 0.00 0.14 +puberté puberté NOM f s 1.32 2.36 1.32 2.36 +pubescentes pubescent ADJ f p 0.01 0.00 0.01 0.00 +pubien pubien ADJ m s 1.51 0.41 0.57 0.07 +pubienne pubien ADJ f s 1.51 0.41 0.20 0.20 +pubiennes pubien ADJ f p 1.51 0.41 0.01 0.07 +pubiens pubien ADJ m p 1.51 0.41 0.72 0.07 +pubis pubis NOM m 0.59 1.15 0.59 1.15 +publia publier VER 21.07 33.92 0.03 1.35 ind:pas:3s; +publiable publiable ADJ s 0.03 0.07 0.01 0.07 +publiables publiable ADJ m p 0.03 0.07 0.02 0.00 +publiai publier VER 21.07 33.92 0.01 0.27 ind:pas:1s; +publiaient publier VER 21.07 33.92 0.02 1.01 ind:imp:3p; +publiais publier VER 21.07 33.92 0.00 0.14 ind:imp:1s; +publiait publier VER 21.07 33.92 0.27 1.89 ind:imp:3s; +publiant publier VER 21.07 33.92 0.07 0.61 par:pre; +public_relations public_relations NOM f p 0.01 0.20 0.01 0.20 +public_school public_school NOM f p 0.00 0.07 0.00 0.07 +public public NOM m s 46.97 38.04 46.72 37.91 +publicain publicain NOM m s 0.39 0.34 0.01 0.14 +publicains publicain NOM m p 0.39 0.34 0.38 0.20 +publication publication NOM f s 1.85 7.23 1.40 5.00 +publications publication NOM f p 1.85 7.23 0.45 2.23 +publiciste publiciste NOM s 0.18 0.74 0.12 0.47 +publicistes publiciste NOM p 0.18 0.74 0.06 0.27 +publicitaire publicitaire ADJ s 3.26 6.49 1.93 3.72 +publicitairement publicitairement ADV 0.00 0.07 0.00 0.07 +publicitaires publicitaire ADJ p 3.26 6.49 1.34 2.77 +publicité publicité NOM f s 13.30 14.66 12.12 12.57 +publicités publicité NOM f p 13.30 14.66 1.18 2.09 +publico publico ADV 0.01 0.07 0.01 0.07 +publics public ADJ m p 44.81 65.27 4.84 14.46 +publie publier VER 21.07 33.92 1.71 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +publient publier VER 21.07 33.92 0.41 0.34 ind:pre:3p; +publier publier VER 21.07 33.92 6.85 8.92 inf; +publiera publier VER 21.07 33.92 0.47 0.27 ind:fut:3s; +publierai publier VER 21.07 33.92 0.12 0.07 ind:fut:1s; +publieraient publier VER 21.07 33.92 0.01 0.00 cnd:pre:3p; +publierais publier VER 21.07 33.92 0.02 0.14 cnd:pre:1s; +publierait publier VER 21.07 33.92 0.01 0.34 cnd:pre:3s; +publierez publier VER 21.07 33.92 0.05 0.14 ind:fut:2p; +publierions publier VER 21.07 33.92 0.00 0.07 cnd:pre:1p; +publierons publier VER 21.07 33.92 0.05 0.07 ind:fut:1p; +publieront publier VER 21.07 33.92 0.08 0.14 ind:fut:3p; +publies publier VER 21.07 33.92 0.31 0.20 ind:pre:2s; +publieur publieur NOM m s 0.01 0.00 0.01 0.00 +publiez publier VER 21.07 33.92 1.06 0.07 imp:pre:2p;ind:pre:2p; +publions publier VER 21.07 33.92 0.31 0.34 imp:pre:1p;ind:pre:1p; +publiât publier VER 21.07 33.92 0.00 0.07 sub:imp:3s; +publiphone publiphone NOM m s 0.01 0.00 0.01 0.00 +publique public ADJ f s 44.81 65.27 16.50 24.93 +publiquement publiquement ADV 2.47 7.57 2.47 7.57 +publiques public ADJ f p 44.81 65.27 5.56 7.84 +publireportage publireportage NOM m s 0.03 0.00 0.03 0.00 +publièrent publier VER 21.07 33.92 0.00 0.34 ind:pas:3p; +publié publier VER m s 21.07 33.92 6.54 8.85 par:pas; +publiée publier VER f s 21.07 33.92 1.09 2.97 par:pas; +publiées publier VER f p 21.07 33.92 0.56 1.08 par:pas; +publiés publier VER m p 21.07 33.92 1.01 1.55 par:pas; +pébroc pébroc NOM m s 0.00 0.07 0.00 0.07 +pébroque pébroque NOM m s 0.00 1.62 0.00 1.49 +pébroques pébroque NOM m p 0.00 1.62 0.00 0.14 +pubs pub NOM p 25.65 4.53 4.26 0.54 +pubère pubère ADJ s 0.28 0.41 0.20 0.20 +pubères pubère ADJ p 0.28 0.41 0.09 0.20 +pécan pécan NOM m s 0.32 0.00 0.32 0.00 +pécari pécari NOM m s 0.00 0.81 0.00 0.61 +pécaris pécari NOM m p 0.00 0.81 0.00 0.20 +puce puce NOM f s 27.65 12.43 22.15 3.58 +puceau puceau ADJ m s 2.17 1.08 2.15 1.01 +puceaux puceau NOM m p 1.99 2.84 0.30 0.27 +pucelage pucelage NOM m s 0.38 1.15 0.38 0.95 +pucelages pucelage NOM m p 0.38 1.15 0.00 0.20 +pucelle puceau NOM f s 1.99 2.84 1.09 1.35 +pucelles pucelle NOM f p 0.31 0.00 0.31 0.00 +puceron puceron NOM m s 0.17 0.47 0.06 0.20 +pucerons puceron NOM m p 0.17 0.47 0.11 0.27 +puces puce NOM f p 27.65 12.43 5.50 8.85 +pêcha pêcher VER 16.52 12.84 0.00 0.27 ind:pas:3s; +pêchaient pêcher VER 16.52 12.84 0.05 0.74 ind:imp:3p; +pêchais pêcher VER 16.52 12.84 0.44 0.34 ind:imp:1s;ind:imp:2s; +péchais pécher VER 9.87 4.59 0.02 0.07 ind:imp:1s; +pêchait pêcher VER 16.52 12.84 0.76 0.95 ind:imp:3s; +péchait pécher VER 9.87 4.59 0.02 0.27 ind:imp:3s; +pêchant pêcher VER 16.52 12.84 0.14 0.54 par:pre; +péchant pécher VER 9.87 4.59 0.01 0.07 par:pre; +pêche pêche NOM f s 24.39 30.41 21.13 26.76 +pêchent pêcher VER 16.52 12.84 0.16 0.47 ind:pre:3p; +pêcher pêcher VER 16.52 12.84 9.04 5.47 inf; +pécher pécher VER 9.87 4.59 1.88 0.95 inf; +pucher pucher VER 0.02 0.00 0.02 0.00 inf; +pêchera pêcher VER 16.52 12.84 0.09 0.14 ind:fut:3s; +pécherai pécher VER 9.87 4.59 0.04 0.00 ind:fut:1s; +pêcherais pêcher VER 16.52 12.84 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +pécherais pécher VER 9.87 4.59 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +pécherait pécher VER 9.87 4.59 0.00 0.07 cnd:pre:3s; +pêcheras pêcher VER 16.52 12.84 0.01 0.07 ind:fut:2s; +pécheresse pécheur NOM f s 8.02 4.53 0.77 0.54 +pécheresses pécheur ADJ f p 1.75 1.55 0.07 0.07 +pêcherie pêcherie NOM f s 0.23 0.88 0.14 0.14 +pêcheries pêcherie NOM f p 0.23 0.88 0.10 0.74 +pêcherons pêcher VER 16.52 12.84 0.01 0.00 ind:fut:1p; +pêchers pêcher NOM m p 0.58 1.55 0.34 0.68 +pêches pêche NOM f p 24.39 30.41 3.25 3.65 +pécheur pécheur ADJ m s 1.75 1.55 0.62 0.74 +pêcheur pêcheur NOM m s 10.33 27.43 5.08 13.11 +pécheur pécheur NOM m s 8.02 4.53 3.54 1.82 +pécheurs pécheur ADJ m p 1.75 1.55 0.40 0.34 +pêcheurs pêcheur NOM m p 10.33 27.43 5.21 14.19 +pécheurs pécheur NOM m p 8.02 4.53 3.70 2.03 +pêcheuse pêcheur NOM f s 10.33 27.43 0.04 0.14 +pêcheuses pêcheuse NOM f p 0.01 0.00 0.01 0.00 +pucheux pucheux NOM m 0.00 0.07 0.00 0.07 +pêchez pêcher VER 16.52 12.84 0.45 0.07 imp:pre:2p;ind:pre:2p; +péchez pécher VER 9.87 4.59 0.01 0.14 imp:pre:2p;ind:pre:2p; +pêchions pêcher VER 16.52 12.84 0.04 0.20 ind:imp:1p; +péchons péchon NOM m p 0.03 0.00 0.03 0.00 +pêché pêcher VER m s 16.52 12.84 3.03 1.01 par:pas; +péché pécher VER m s 9.87 4.59 6.84 2.30 par:pas; +pêché pêché ADJ m s 1.77 0.20 0.94 0.20 +péché péché NOM m s 41.22 30.34 26.14 22.64 +pêchée pêcher VER f s 16.52 12.84 0.04 0.27 par:pas; +pêchées pêcher VER f p 16.52 12.84 0.01 0.14 par:pas; +pêchés pêcher VER m p 16.52 12.84 0.25 0.27 par:pas; +péchés pécher VER m p 9.87 4.59 0.05 0.14 par:pas; +pêchés pêché ADJ m p 1.77 0.20 0.83 0.00 +péchés péché NOM m p 41.22 30.34 15.08 7.70 +pucier pucier NOM m s 0.05 0.41 0.05 0.34 +puciers pucier NOM m p 0.05 0.41 0.00 0.07 +pécore pécore NOM s 0.62 1.01 0.49 0.61 +pécores pécore NOM p 0.62 1.01 0.14 0.41 +pécule pécule NOM m s 0.64 2.30 0.64 2.09 +pécules pécule NOM m p 0.64 2.30 0.00 0.20 +pécune pécune NOM f s 0.00 0.07 0.00 0.07 +pécuniaire pécuniaire ADJ s 0.13 0.41 0.11 0.14 +pécuniairement pécuniairement ADV 0.00 0.07 0.00 0.07 +pécuniaires pécuniaire ADJ p 0.13 0.41 0.02 0.27 +pécunieux pécunieux ADJ m 0.00 0.07 0.00 0.07 +pédagogie pédagogie NOM f s 0.45 1.22 0.45 1.22 +pédagogique pédagogique ADJ s 0.74 2.36 0.69 1.55 +pédagogiques pédagogique ADJ p 0.74 2.36 0.05 0.81 +pédagogue pédagogue NOM s 0.86 1.49 0.76 1.08 +pédagogues pédagogue NOM p 0.86 1.49 0.10 0.41 +pédala pédaler VER 1.58 7.03 0.01 0.27 ind:pas:3s; +pédalage pédalage NOM m s 0.00 0.14 0.00 0.14 +pédalai pédaler VER 1.58 7.03 0.00 0.14 ind:pas:1s; +pédalaient pédaler VER 1.58 7.03 0.00 0.20 ind:imp:3p; +pédalais pédaler VER 1.58 7.03 0.16 0.14 ind:imp:1s; +pédalait pédaler VER 1.58 7.03 0.19 1.55 ind:imp:3s; +pédalant pédaler VER 1.58 7.03 0.08 1.35 par:pre; +pédale pédale NOM f s 10.01 12.23 5.08 5.20 +pédalent pédaler VER 1.58 7.03 0.00 0.07 ind:pre:3p; +pédaler pédaler VER 1.58 7.03 0.37 2.57 inf; +pédalerait pédaler VER 1.58 7.03 0.00 0.07 cnd:pre:3s; +pédalerons pédaler VER 1.58 7.03 0.00 0.07 ind:fut:1p; +pédales pédale NOM f p 10.01 12.23 4.92 7.03 +pédaleur pédaleur NOM m s 0.00 0.14 0.00 0.07 +pédaleuses pédaleur NOM f p 0.00 0.14 0.00 0.07 +pédalier pédalier NOM m s 0.11 1.01 0.01 0.81 +pédaliers pédalier NOM m p 0.11 1.01 0.10 0.20 +pédalo pédalo NOM m s 0.05 0.41 0.03 0.20 +pédalos pédalo NOM m p 0.05 0.41 0.02 0.20 +pédalèrent pédaler VER 1.58 7.03 0.00 0.07 ind:pas:3p; +pédalé pédaler VER m s 1.58 7.03 0.14 0.07 par:pas; +pédalées pédaler VER f p 1.58 7.03 0.00 0.07 par:pas; +pédant pédant ADJ m s 0.43 1.55 0.18 0.68 +pédante pédant ADJ f s 0.43 1.55 0.11 0.34 +pédanterie pédanterie NOM f s 0.00 0.47 0.00 0.41 +pédanteries pédanterie NOM f p 0.00 0.47 0.00 0.07 +pédantes pédant ADJ f p 0.43 1.55 0.01 0.27 +pédantesque pédantesque ADJ s 0.00 0.07 0.00 0.07 +pédantisme pédantisme NOM m s 0.00 0.61 0.00 0.61 +pédants pédant ADJ m p 0.43 1.55 0.14 0.27 +pudding pudding NOM m s 2.86 0.68 2.80 0.54 +puddings pudding NOM m p 2.86 0.68 0.06 0.14 +puddle puddler VER 0.16 0.00 0.16 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pédestre pédestre ADJ s 0.01 0.54 0.01 0.34 +pédestrement pédestrement ADV 0.00 0.14 0.00 0.14 +pédestres pédestre ADJ f p 0.01 0.54 0.00 0.20 +pudeur pudeur NOM f s 5.08 20.07 4.98 19.32 +pudeurs pudeur NOM f p 5.08 20.07 0.10 0.74 +pédezouille pédezouille NOM s 0.00 0.07 0.00 0.07 +pédiatre pédiatre NOM s 2.55 0.95 2.03 0.81 +pédiatres pédiatre NOM p 2.55 0.95 0.52 0.14 +pédiatrie pédiatrie NOM f s 1.08 0.14 1.08 0.14 +pédiatrique pédiatrique ADJ s 0.48 0.00 0.48 0.00 +pudibond pudibond ADJ m s 0.06 0.41 0.02 0.14 +pudibonde pudibond ADJ f s 0.06 0.41 0.04 0.14 +pudibonderie pudibonderie NOM f s 0.01 0.47 0.01 0.34 +pudibonderies pudibonderie NOM f p 0.01 0.47 0.00 0.14 +pudibondes pudibond ADJ f p 0.06 0.41 0.00 0.07 +pudibonds pudibond ADJ m p 0.06 0.41 0.00 0.07 +pédibus pédibus ADV 0.00 0.20 0.00 0.20 +pudicité pudicité NOM f s 0.00 0.07 0.00 0.07 +pédicule pédicule NOM m s 0.03 0.07 0.03 0.07 +pédicure pédicure NOM s 0.76 0.41 0.71 0.34 +pédicures pédicure NOM p 0.76 0.41 0.05 0.07 +pédicurie pédicurie NOM f s 0.01 0.00 0.01 0.00 +pédieuse pédieux ADJ f s 0.03 0.00 0.01 0.00 +pédieux pédieux ADJ m 0.03 0.00 0.01 0.00 +pudique pudique ADJ s 1.12 5.27 0.98 4.39 +pudiquement pudiquement ADV 0.02 2.03 0.02 2.03 +pudiques pudique ADJ p 1.12 5.27 0.14 0.88 +pédologue pédologue NOM s 0.03 0.00 0.03 0.00 +pédomètre pédomètre NOM m s 0.01 0.00 0.01 0.00 +pédoncule pédoncule NOM m s 0.06 0.20 0.06 0.14 +pédoncules pédoncule NOM m p 0.06 0.20 0.00 0.07 +pédonculé pédonculé ADJ m s 0.00 0.07 0.00 0.07 +pédophile pédophile NOM m s 1.34 0.34 0.95 0.20 +pédophiles pédophile NOM m p 1.34 0.34 0.39 0.14 +pédophilie pédophilie NOM f s 0.58 0.14 0.58 0.14 +pédophiliques pédophilique ADJ m p 0.00 0.07 0.00 0.07 +pédopsychiatre pédopsychiatre NOM s 0.32 0.00 0.32 0.00 +pédoque pédoque NOM m s 0.00 0.54 0.00 0.54 +pédé pédé NOM m s 33.12 8.18 25.64 4.86 +pédégé pédégé NOM m s 0.00 0.07 0.00 0.07 +pédéraste pédéraste NOM m s 0.48 3.38 0.36 1.96 +pédérastes pédéraste NOM m p 0.48 3.38 0.13 1.42 +pédérastie pédérastie NOM f s 0.29 0.61 0.29 0.61 +pédérastique pédérastique ADJ s 0.00 0.27 0.00 0.27 +pédés pédé NOM m p 33.12 8.18 7.48 3.31 +pue puer VER 36.29 18.65 23.80 8.92 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pueblo pueblo ADJ m s 0.05 0.95 0.05 0.95 +puent puer VER 36.29 18.65 2.29 1.89 ind:pre:3p; +puer puer VER 36.29 18.65 1.44 1.49 inf; +puera puer VER 36.29 18.65 0.05 0.00 ind:fut:3s; +puerait puer VER 36.29 18.65 0.01 0.00 cnd:pre:3s; +pueras puer VER 36.29 18.65 0.23 0.00 ind:fut:2s; +puerez puer VER 36.29 18.65 0.01 0.00 ind:fut:2p; +puerpérale puerpéral ADJ f s 0.12 0.07 0.12 0.07 +pues puer VER 36.29 18.65 5.66 0.54 ind:pre:2s; +puez puer VER 36.29 18.65 0.67 0.14 imp:pre:2p;ind:pre:2p; +puff puff NOM m s 0.57 0.14 0.57 0.14 +puffin puffin NOM m s 0.54 0.00 0.54 0.00 +pégamoïd pégamoïd NOM m s 0.00 0.07 0.00 0.07 +pugilat pugilat NOM m s 0.12 1.08 0.11 0.74 +pugilats pugilat NOM m p 0.12 1.08 0.01 0.34 +pugiler pugiler VER 0.00 0.07 0.00 0.07 inf; +pugiliste pugiliste NOM s 0.20 0.41 0.20 0.20 +pugilistes pugiliste NOM p 0.20 0.41 0.00 0.20 +pugilistique pugilistique ADJ f s 0.00 0.07 0.00 0.07 +pugnace pugnace ADJ s 0.06 0.14 0.06 0.14 +pugnacité pugnacité NOM f s 0.04 0.20 0.04 0.20 +pégriot pégriot NOM m s 0.00 0.41 0.00 0.20 +pégriots pégriot NOM m p 0.00 0.41 0.00 0.20 +puis puis CON 256.19 836.42 256.19 836.42 +puisa puiser VER 2.97 14.46 0.02 0.68 ind:pas:3s; +puisai puiser VER 2.97 14.46 0.14 0.20 ind:pas:1s; +puisaient puiser VER 2.97 14.46 0.00 0.81 ind:imp:3p; +puisais puiser VER 2.97 14.46 0.00 0.61 ind:imp:1s; +puisait puiser VER 2.97 14.46 0.16 3.11 ind:imp:3s; +puisant puiser VER 2.97 14.46 0.17 1.01 par:pre; +puisard puisard NOM m s 0.29 0.20 0.29 0.14 +puisards puisard NOM m p 0.29 0.20 0.00 0.07 +puisatier puisatier NOM m s 0.00 0.07 0.00 0.07 +puise puiser VER 2.97 14.46 0.82 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +puisent puiser VER 2.97 14.46 0.02 0.20 ind:pre:3p; +puiser puiser VER 2.97 14.46 1.08 3.51 inf; +puisera puiser VER 2.97 14.46 0.01 0.07 ind:fut:3s; +puiserai puiser VER 2.97 14.46 0.00 0.07 ind:fut:1s; +puiserait puiser VER 2.97 14.46 0.00 0.07 cnd:pre:3s; +puiserez puiser VER 2.97 14.46 0.02 0.00 ind:fut:2p; +puiseront puiser VER 2.97 14.46 0.00 0.14 ind:fut:3p; +puises puiser VER 2.97 14.46 0.08 0.07 ind:pre:2s; +puisette puisette NOM f s 0.00 0.14 0.00 0.14 +puisez puiser VER 2.97 14.46 0.04 0.00 imp:pre:2p;ind:pre:2p; +puisions puiser VER 2.97 14.46 0.00 0.07 ind:imp:1p; +puisons puiser VER 2.97 14.46 0.03 0.27 imp:pre:1p;ind:pre:1p; +puisqu puisqu CON 0.03 0.00 0.03 0.00 +puisque puisque CON 59.09 131.82 59.09 131.82 +puissamment puissamment CON 0.12 0.95 0.12 0.95 +puissance puissance NOM f s 33.69 55.20 30.37 44.12 +puissances puissance NOM f p 33.69 55.20 3.33 11.08 +puissant puissant ADJ m s 39.99 47.70 22.65 19.86 +puissante puissant ADJ f s 39.99 47.70 9.16 14.26 +puissantes puissant ADJ f p 39.99 47.70 2.85 5.20 +puissants puissant ADJ m p 39.99 47.70 5.34 8.38 +puisse pouvoir VER 5524.52 2659.80 90.37 74.80 sub:pre:1s;sub:pre:3s; +puissent pouvoir VER 5524.52 2659.80 10.18 14.05 sub:pre:3p; +puisses pouvoir VER 5524.52 2659.80 13.79 2.50 sub:pre:2s; +puissiez pouvoir VER 5524.52 2659.80 8.59 2.97 sub:pre:2p; +puissions pouvoir VER 5524.52 2659.80 6.20 3.58 sub:pre:1p; +puisé puiser VER m s 2.97 14.46 0.35 1.35 par:pas; +puisée puiser VER f s 2.97 14.46 0.01 0.54 par:pas; +puisées puiser VER f p 2.97 14.46 0.02 0.34 par:pas; +puisés puiser VER m p 2.97 14.46 0.00 0.20 par:pas; +puits puits NOM m 19.52 21.69 19.52 21.69 +péjoratif péjoratif ADJ m s 0.09 1.28 0.07 1.01 +péjoratifs péjoratif ADJ m p 0.09 1.28 0.00 0.14 +péjorative péjoratif ADJ f s 0.09 1.28 0.01 0.07 +péjorativement péjorativement ADV 0.01 0.07 0.01 0.07 +péjoratives péjoratif ADJ f p 0.09 1.28 0.01 0.07 +pékan pékan NOM m s 0.03 0.00 0.03 0.00 +pékin pékin NOM m s 0.32 1.28 0.27 0.47 +pékinois pékinois NOM m 1.68 0.47 1.68 0.47 +pékinoise pékinois ADJ f s 0.07 0.20 0.03 0.00 +pékins pékin NOM m p 0.32 1.28 0.05 0.81 +pélagique pélagique ADJ m s 0.29 0.00 0.29 0.00 +pélasgiques pélasgique ADJ p 0.00 0.07 0.00 0.07 +pêle_mêle pêle_mêle ADV 0.00 8.24 0.00 8.24 +pélican pélican NOM m s 0.43 1.28 0.28 0.81 +pélicans pélican NOM m p 0.43 1.28 0.16 0.47 +pull_over pull_over NOM m s 0.80 6.35 0.78 5.27 +pull_over pull_over NOM m p 0.80 6.35 0.02 1.08 +pull pull NOM m s 13.43 8.65 11.41 7.03 +pullman pullman NOM m s 0.06 0.54 0.05 0.47 +pullmans pullman NOM m p 0.06 0.54 0.01 0.07 +pulls pull NOM m p 13.43 8.65 2.02 1.62 +pullula pulluler VER 0.78 2.91 0.00 0.07 ind:pas:3s; +pullulaient pulluler VER 0.78 2.91 0.01 0.74 ind:imp:3p; +pullulait pulluler VER 0.78 2.91 0.00 0.34 ind:imp:3s; +pullulant pulluler VER 0.78 2.91 0.00 0.14 par:pre; +pullulantes pullulant ADJ f p 0.00 0.20 0.00 0.07 +pullulants pullulant ADJ m p 0.00 0.20 0.00 0.14 +pullule pulluler VER 0.78 2.91 0.41 0.61 ind:pre:3s; +pullulement pullulement NOM m s 0.00 0.74 0.00 0.74 +pullulent pulluler VER 0.78 2.91 0.19 0.74 ind:pre:3p; +pulluler pulluler VER 0.78 2.91 0.16 0.27 inf; +pulluleront pulluler VER 0.78 2.91 0.01 0.00 ind:fut:3p; +pulmonaire pulmonaire ADJ s 2.31 1.35 2.00 0.95 +pulmonaires pulmonaire ADJ p 2.31 1.35 0.32 0.41 +pulmonie pulmonie NOM f s 0.00 0.07 0.00 0.07 +pulmonique pulmonique ADJ s 0.00 0.07 0.00 0.07 +pélot pélot NOM m s 0.00 0.07 0.00 0.07 +pulpe pulpe NOM f s 0.72 2.36 0.62 2.16 +pulpes pulpe NOM f p 0.72 2.36 0.10 0.20 +pulpeuse pulpeux ADJ f s 0.22 2.23 0.11 1.28 +pulpeuses pulpeux ADJ f p 0.22 2.23 0.09 0.41 +pulpeux pulpeux ADJ m 0.22 2.23 0.02 0.54 +pulque pulque NOM m s 0.60 0.00 0.60 0.00 +pulsait pulser VER 0.51 0.61 0.01 0.20 ind:imp:3s; +pulsant pulser VER 0.51 0.61 0.00 0.14 par:pre; +pulsar pulsar NOM m s 0.46 0.00 0.46 0.00 +pulsatile pulsatile ADJ f s 0.01 0.00 0.01 0.00 +pulsation pulsation NOM f s 1.24 4.19 0.54 2.09 +pulsations pulsation NOM f p 1.24 4.19 0.70 2.09 +pulsative pulsatif ADJ f s 0.01 0.00 0.01 0.00 +pulse pulser VER 0.51 0.61 0.21 0.20 imp:pre:2s;ind:pre:3s; +pulser pulser VER 0.51 0.61 0.11 0.07 inf; +pulseur pulseur NOM m s 0.15 0.07 0.15 0.07 +pulsion pulsion NOM f s 4.15 1.69 1.19 0.74 +pulsions pulsion NOM f p 4.15 1.69 2.96 0.95 +pulso_réacteur pulso_réacteur NOM m p 0.01 0.00 0.01 0.00 +pulsoréacteurs pulsoréacteur NOM m p 0.01 0.00 0.01 0.00 +pulsé pulser VER m s 0.51 0.61 0.17 0.00 par:pas; +pulvérin pulvérin NOM m s 0.00 0.07 0.00 0.07 +pulvérisa pulvériser VER 3.11 6.69 0.00 0.47 ind:pas:3s; +pulvérisaient pulvériser VER 3.11 6.69 0.00 0.07 ind:imp:3p; +pulvérisais pulvériser VER 3.11 6.69 0.01 0.00 ind:imp:2s; +pulvérisait pulvériser VER 3.11 6.69 0.12 0.61 ind:imp:3s; +pulvérisant pulvériser VER 3.11 6.69 0.08 0.61 par:pre; +pulvérisateur pulvérisateur NOM m s 0.22 0.14 0.18 0.07 +pulvérisateurs pulvérisateur NOM m p 0.22 0.14 0.03 0.07 +pulvérisation pulvérisation NOM f s 0.09 0.27 0.06 0.14 +pulvérisations pulvérisation NOM f p 0.09 0.27 0.02 0.14 +pulvérise pulvériser VER 3.11 6.69 0.42 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pulvérisent pulvériser VER 3.11 6.69 0.01 0.20 ind:pre:3p; +pulvériser pulvériser VER 3.11 6.69 1.14 1.15 inf; +pulvériserai pulvériser VER 3.11 6.69 0.02 0.07 ind:fut:1s; +pulvériserait pulvériser VER 3.11 6.69 0.01 0.07 cnd:pre:3s; +pulvériserons pulvériser VER 3.11 6.69 0.01 0.00 ind:fut:1p; +pulvériseront pulvériser VER 3.11 6.69 0.14 0.00 ind:fut:3p; +pulvérises pulvériser VER 3.11 6.69 0.00 0.07 ind:pre:2s; +pulvérisez pulvériser VER 3.11 6.69 0.06 0.00 imp:pre:2p;ind:pre:2p; +pulvérisé pulvériser VER m s 3.11 6.69 0.74 1.22 par:pas; +pulvérisée pulvériser VER f s 3.11 6.69 0.10 1.08 par:pas; +pulvérisées pulvériser VER f p 3.11 6.69 0.06 0.14 par:pas; +pulvérisés pulvériser VER m p 3.11 6.69 0.17 0.54 par:pas; +pulvérulence pulvérulence NOM f s 0.00 0.07 0.00 0.07 +pulvérulentes pulvérulent ADJ f p 0.00 0.07 0.00 0.07 +puma puma NOM m s 1.34 2.03 0.42 1.89 +pumas puma NOM m p 1.34 2.03 0.92 0.14 +punais punais ADJ m s 0.00 0.20 0.00 0.20 +punaisait punaiser VER 0.12 0.81 0.00 0.07 ind:imp:3s; +punaise punaise NOM f s 2.46 7.84 1.41 1.76 +punaises punaise NOM f p 2.46 7.84 1.05 6.08 +punaisé punaiser VER m s 0.12 0.81 0.01 0.27 par:pas; +punaisée punaiser VER f s 0.12 0.81 0.01 0.34 par:pas; +punaisées punaiser VER f p 0.12 0.81 0.00 0.14 par:pas; +punaisés punaiser VER m p 0.12 0.81 0.10 0.00 par:pas; +pénal pénal ADJ m s 4.64 3.38 3.78 2.91 +pénale pénal ADJ f s 4.64 3.38 0.54 0.20 +pénalement pénalement ADV 0.03 0.07 0.03 0.07 +pénales pénal ADJ f p 4.64 3.38 0.20 0.27 +pénalisaient pénaliser VER 0.46 0.34 0.01 0.00 ind:imp:3p; +pénalisation pénalisation NOM f s 0.01 0.00 0.01 0.00 +pénalise pénaliser VER 0.46 0.34 0.03 0.00 imp:pre:2s;ind:pre:1s; +pénaliser pénaliser VER 0.46 0.34 0.12 0.07 inf; +pénalisera pénaliser VER 0.46 0.34 0.01 0.07 ind:fut:3s; +pénaliserai pénaliser VER 0.46 0.34 0.03 0.00 ind:fut:1s; +pénaliste pénaliste NOM s 0.04 0.00 0.04 0.00 +pénalistes pénaliste NOM p 0.04 0.00 0.01 0.00 +pénalisé pénaliser VER m s 0.46 0.34 0.15 0.07 par:pas; +pénalisée pénaliser VER f s 0.46 0.34 0.04 0.00 par:pas; +pénalisés pénaliser VER m p 0.46 0.34 0.08 0.14 par:pas; +pénalité pénalité NOM f s 1.11 0.07 0.60 0.00 +pénalités pénalité NOM f p 1.11 0.07 0.51 0.07 +pénard pénard ADJ m s 0.02 1.08 0.01 0.54 +pénarde pénard ADJ f s 0.02 1.08 0.00 0.27 +pénardement pénardement ADV 0.00 0.07 0.00 0.07 +pénardes pénard ADJ f p 0.02 1.08 0.00 0.07 +pénards pénard ADJ m p 0.02 1.08 0.01 0.20 +pénates pénates NOM m p 0.15 0.88 0.15 0.88 +pénaux pénal ADJ m p 4.64 3.38 0.14 0.00 +punch punch NOM m s 3.67 3.11 3.65 2.97 +puncheur puncheur NOM m s 0.02 0.00 0.02 0.00 +punching_ball punching_ball NOM m s 0.71 0.61 0.64 0.61 +punching_ball punching_ball NOM m s 0.71 0.61 0.08 0.00 +punchs punch NOM m p 3.67 3.11 0.02 0.14 +punctiforme punctiforme ADJ f s 0.01 0.00 0.01 0.00 +puncture puncture NOM f s 0.10 0.00 0.10 0.00 +pêne pêne NOM m s 0.15 0.81 0.15 0.81 +puni punir VER m s 41.70 20.14 10.09 3.99 par:pas; +pénible pénible ADJ s 13.75 27.43 12.07 21.96 +péniblement péniblement ADV 0.74 11.01 0.74 11.01 +pénibles pénible ADJ p 13.75 27.43 1.69 5.47 +péniche péniche NOM f s 1.55 7.97 1.47 5.27 +péniches péniche NOM f p 1.55 7.97 0.08 2.70 +pénicilline pénicilline NOM f s 1.44 0.95 1.44 0.95 +punie punir VER f s 41.70 20.14 2.79 1.42 par:pas; +pénien pénien ADJ m s 0.04 0.00 0.02 0.00 +pénienne pénien ADJ f s 0.04 0.00 0.01 0.00 +punies punir VER f p 41.70 20.14 0.20 0.14 par:pas; +pénil pénil NOM m s 0.01 0.00 0.01 0.00 +péninsulaire péninsulaire ADJ s 0.00 0.14 0.00 0.07 +péninsulaires péninsulaire ADJ p 0.00 0.14 0.00 0.07 +péninsule péninsule NOM f s 0.89 3.31 0.88 3.18 +péninsules péninsule NOM f p 0.89 3.31 0.01 0.14 +punique punique ADJ m s 0.00 0.20 0.00 0.14 +puniques punique ADJ p 0.00 0.20 0.00 0.07 +punir punir VER 41.70 20.14 13.82 8.45 inf; +punira punir VER 41.70 20.14 1.89 0.27 ind:fut:3s; +punirai punir VER 41.70 20.14 0.91 0.00 ind:fut:1s; +punirais punir VER 41.70 20.14 0.04 0.07 cnd:pre:1s; +punirait punir VER 41.70 20.14 0.06 0.07 cnd:pre:3s; +puniras punir VER 41.70 20.14 0.02 0.07 ind:fut:2s; +punirez punir VER 41.70 20.14 0.03 0.00 ind:fut:2p; +punirons punir VER 41.70 20.14 0.17 0.00 ind:fut:1p; +puniront punir VER 41.70 20.14 0.03 0.00 ind:fut:3p; +pénis pénis NOM m 8.11 1.96 8.11 1.96 +punis punir VER m p 41.70 20.14 6.09 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +punissable punissable ADJ m s 0.21 0.14 0.21 0.07 +punissables punissable ADJ m p 0.21 0.14 0.00 0.07 +punissaient punir VER 41.70 20.14 0.02 0.20 ind:imp:3p; +punissais punir VER 41.70 20.14 0.26 0.14 ind:imp:1s;ind:imp:2s; +punissait punir VER 41.70 20.14 0.29 1.01 ind:imp:3s; +punissant punir VER 41.70 20.14 0.71 0.47 par:pre; +punisse punir VER 41.70 20.14 0.61 0.27 sub:pre:1s;sub:pre:3s; +punissent punir VER 41.70 20.14 0.26 0.20 ind:pre:3p; +punisses punir VER 41.70 20.14 0.30 0.00 sub:pre:2s; +punisseur punisseur NOM m s 0.11 0.00 0.11 0.00 +punissez punir VER 41.70 20.14 0.99 0.07 imp:pre:2p;ind:pre:2p; +punissions punir VER 41.70 20.14 0.01 0.07 ind:imp:1p; +punissons punir VER 41.70 20.14 0.15 0.00 imp:pre:1p;ind:pre:1p; +punit punir VER 41.70 20.14 1.98 1.55 ind:pre:3s;ind:pas:3s; +pénitence pénitence NOM f s 2.96 5.95 2.96 5.00 +pénitences pénitence NOM f p 2.96 5.95 0.00 0.95 +pénitencier pénitencier NOM m s 2.09 1.15 2.04 1.15 +pénitenciers pénitencier NOM m p 2.09 1.15 0.06 0.00 +pénitent pénitent NOM m s 0.90 2.84 0.27 0.61 +pénitente pénitent NOM f s 0.90 2.84 0.14 0.14 +pénitentes pénitent NOM f p 0.90 2.84 0.00 0.20 +pénitentiaire pénitentiaire ADJ s 3.21 2.77 2.79 2.23 +pénitentiaires pénitentiaire ADJ p 3.21 2.77 0.42 0.54 +pénitentielle pénitentiel ADJ f s 0.00 0.07 0.00 0.07 +pénitents pénitent NOM m p 0.90 2.84 0.49 1.89 +punitif punitif ADJ m s 0.42 1.08 0.27 0.14 +punition punition NOM f s 13.16 9.46 11.97 7.64 +punitions punition NOM f p 13.16 9.46 1.19 1.82 +punitive punitif ADJ f s 0.42 1.08 0.12 0.61 +punitives punitif ADJ f p 0.42 1.08 0.03 0.34 +punk punk NOM s 6.39 4.12 5.45 2.50 +punkette punkette NOM f s 0.00 0.14 0.00 0.14 +punks punk NOM p 6.39 4.12 0.94 1.62 +pénologie pénologie NOM f s 0.02 0.00 0.02 0.00 +pénombre pénombre NOM f s 1.23 28.24 1.22 28.04 +pénombres pénombre NOM f p 1.23 28.24 0.01 0.20 +punt punt NOM m s 0.23 0.00 0.23 0.00 +pénètre pénétrer VER 19.00 87.23 4.64 12.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +pénètrent pénétrer VER 19.00 87.23 0.84 2.77 ind:pre:3p; +pénètres pénétrer VER 19.00 87.23 0.11 0.20 ind:pre:2s; +pénultième pénultième NOM f s 0.03 0.07 0.03 0.07 +pénéplaines pénéplaine NOM f p 0.00 0.07 0.00 0.07 +pénurie pénurie NOM f s 2.15 2.84 2.12 2.70 +pénuries pénurie NOM f p 2.15 2.84 0.04 0.14 +pénétra pénétrer VER 19.00 87.23 0.32 9.66 ind:pas:3s; +pénétrable pénétrable ADJ f s 0.14 0.07 0.14 0.00 +pénétrables pénétrable ADJ p 0.14 0.07 0.00 0.07 +pénétrai pénétrer VER 19.00 87.23 0.00 1.42 ind:pas:1s; +pénétraient pénétrer VER 19.00 87.23 0.14 3.04 ind:imp:3p; +pénétrais pénétrer VER 19.00 87.23 0.00 1.08 ind:imp:1s;ind:imp:2s; +pénétrait pénétrer VER 19.00 87.23 0.26 9.66 ind:imp:3s; +pénétrant pénétrer VER 19.00 87.23 0.41 4.86 par:pre; +pénétrante pénétrante ADJ f s 0.29 2.43 0.20 2.23 +pénétrantes pénétrante ADJ f p 0.29 2.43 0.10 0.20 +pénétrants pénétrant ADJ m p 0.59 2.09 0.18 0.20 +pénétration pénétration NOM f s 2.20 3.38 1.91 3.18 +pénétrations pénétration NOM f p 2.20 3.38 0.29 0.20 +pénétrer pénétrer VER 19.00 87.23 6.94 24.19 inf; +pénétrera pénétrer VER 19.00 87.23 0.14 0.20 ind:fut:3s; +pénétrerai pénétrer VER 19.00 87.23 0.02 0.07 ind:fut:1s; +pénétreraient pénétrer VER 19.00 87.23 0.00 0.27 cnd:pre:3p; +pénétrerait pénétrer VER 19.00 87.23 0.01 0.54 cnd:pre:3s; +pénétrerons pénétrer VER 19.00 87.23 0.04 0.07 ind:fut:1p; +pénétreront pénétrer VER 19.00 87.23 0.01 0.07 ind:fut:3p; +pénétrez pénétrer VER 19.00 87.23 0.41 0.34 imp:pre:2p;ind:pre:2p; +pénétrions pénétrer VER 19.00 87.23 0.00 0.27 ind:imp:1p; +pénétrâmes pénétrer VER 19.00 87.23 0.00 0.61 ind:pas:1p; +pénétrons pénétrer VER 19.00 87.23 0.07 0.95 imp:pre:1p;ind:pre:1p; +pénétrât pénétrer VER 19.00 87.23 0.00 0.34 sub:imp:3s; +pénétrèrent pénétrer VER 19.00 87.23 0.02 3.24 ind:pas:3p; +pénétré pénétrer VER m s 19.00 87.23 4.07 8.72 par:pas; +pénétrée pénétrer VER f s 19.00 87.23 0.49 1.28 par:pas; +pénétrées pénétrer VER f p 19.00 87.23 0.00 0.07 par:pas; +pénétrés pénétrer VER m p 19.00 87.23 0.04 0.95 par:pas; +péon péon NOM m s 0.02 0.14 0.01 0.00 +péons péon NOM m p 0.02 0.14 0.01 0.14 +péottes péotte NOM f p 0.00 0.14 0.00 0.14 +pupazzo pupazzo NOM m s 0.00 0.14 0.00 0.14 +pupe pupe NOM f s 0.01 0.00 0.01 0.00 +pépettes pépettes NOM f p 0.03 0.20 0.03 0.20 +pépia pépier VER 0.35 1.28 0.00 0.07 ind:pas:3s; +pépiaient pépier VER 0.35 1.28 0.00 0.47 ind:imp:3p; +pépiait pépier VER 0.35 1.28 0.00 0.14 ind:imp:3s; +pépiant pépiant ADJ m s 0.14 0.20 0.14 0.20 +pépie pépier VER 0.35 1.28 0.20 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pépiement pépiement NOM m s 1.16 2.77 0.09 1.49 +pépiements pépiement NOM m p 1.16 2.77 1.07 1.28 +pépient pépier VER 0.35 1.28 0.04 0.34 ind:pre:3p; +pépier pépier VER 0.35 1.28 0.11 0.14 inf; +pupillaire pupillaire ADJ s 0.07 0.00 0.06 0.00 +pupillaires pupillaire ADJ m p 0.07 0.00 0.01 0.00 +pupille pupille NOM s 3.92 5.54 2.04 2.43 +pupilles pupille NOM p 3.92 5.54 1.88 3.11 +pépin pépin NOM m s 5.15 3.51 4.31 1.96 +pépinière pépinière NOM f s 0.51 0.95 0.45 0.68 +pépinières pépinière NOM f p 0.51 0.95 0.06 0.27 +pépiniériste pépiniériste NOM s 0.04 0.41 0.03 0.27 +pépiniéristes pépiniériste NOM p 0.04 0.41 0.01 0.14 +pépins pépin NOM m p 5.15 3.51 0.84 1.55 +pépite pépite NOM f s 2.04 0.61 0.77 0.20 +pépites pépite NOM f p 2.04 0.61 1.27 0.41 +pupitre pupitre NOM m s 0.80 6.89 0.73 5.74 +pupitres pupitre NOM m p 0.80 6.89 0.07 1.15 +pupitreur pupitreur NOM m s 0.01 0.00 0.01 0.00 +pépiés pépier VER m p 0.35 1.28 0.00 0.07 par:pas; +péplum péplum NOM m s 0.10 0.54 0.00 0.14 +péplums péplum NOM m p 0.10 0.54 0.10 0.41 +pépère pépère ADJ s 1.21 3.18 1.00 2.50 +pépères pépère ADJ p 1.21 3.18 0.20 0.68 +pépètes pépètes NOM f p 0.08 0.34 0.08 0.34 +pépé pépé NOM m s 4.95 16.96 4.81 16.76 +pépée pépée NOM f s 0.69 0.54 0.49 0.20 +pépées pépée NOM f p 0.69 0.54 0.20 0.34 +pépés pépé NOM m p 4.95 16.96 0.13 0.20 +péquenaud péquenaud NOM m s 1.60 0.27 1.00 0.07 +péquenaude péquenaud NOM f s 1.60 0.27 0.20 0.00 +péquenaudes péquenaud NOM f p 1.60 0.27 0.00 0.07 +péquenauds péquenaud NOM m p 1.60 0.27 0.41 0.14 +péquenot péquenot NOM m s 1.80 1.82 0.97 1.01 +péquenots péquenot NOM m p 1.80 1.82 0.83 0.81 +péquin péquin NOM m s 0.00 0.20 0.00 0.14 +péquins péquin NOM m p 0.00 0.20 0.00 0.07 +pur_sang pur_sang NOM m 1.01 2.23 1.01 2.23 +pur pur ADJ m s 58.46 90.34 26.48 44.59 +pérît périr VER 11.20 10.34 0.00 0.07 sub:imp:3s; +pure pur ADJ f s 58.46 90.34 26.97 34.19 +pureau pureau NOM m s 0.00 0.07 0.00 0.07 +purement purement ADV 3.99 9.32 3.99 9.32 +péremptoire péremptoire ADJ s 0.00 5.07 0.00 3.85 +péremptoirement péremptoirement ADV 0.00 0.61 0.00 0.61 +péremptoires péremptoire ADJ p 0.00 5.07 0.00 1.22 +pérenne pérenne ADJ s 0.00 0.14 0.00 0.07 +pérennes pérenne ADJ p 0.00 0.14 0.00 0.07 +pérennise pérenniser VER 0.00 0.07 0.00 0.07 ind:pre:3s; +pérennité pérennité NOM f s 0.00 0.74 0.00 0.74 +purent pouvoir VER 5524.52 2659.80 0.24 6.89 ind:pas:3p; +pures pur ADJ f p 58.46 90.34 1.35 4.66 +pureté pureté NOM f s 6.77 13.99 6.77 13.92 +puretés pureté NOM f p 6.77 13.99 0.00 0.07 +purgatif purgatif ADJ m s 0.40 0.14 0.30 0.07 +purgation purgation NOM f s 0.02 0.20 0.02 0.07 +purgations purgation NOM f p 0.02 0.20 0.00 0.14 +purgative purgatif ADJ f s 0.40 0.14 0.10 0.07 +purgatoire purgatoire NOM m s 1.92 2.84 1.92 2.77 +purgatoires purgatoire NOM m p 1.92 2.84 0.00 0.07 +purge purger VER 5.46 3.24 1.30 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +purgea purger VER 5.46 3.24 0.02 0.07 ind:pas:3s; +purgeaient purger VER 5.46 3.24 0.01 0.14 ind:imp:3p; +purgeais purger VER 5.46 3.24 0.02 0.00 ind:imp:1s;ind:imp:2s; +purgeait purger VER 5.46 3.24 0.28 0.41 ind:imp:3s; +purgeant purger VER 5.46 3.24 0.03 0.07 par:pre; +purgent purger VER 5.46 3.24 0.15 0.14 ind:pre:3p; +purger purger VER 5.46 3.24 1.59 1.08 inf; +purgera purger VER 5.46 3.24 0.11 0.00 ind:fut:3s; +purgerai purger VER 5.46 3.24 0.05 0.00 ind:fut:1s; +purgerais purger VER 5.46 3.24 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +purgeras purger VER 5.46 3.24 0.07 0.00 ind:fut:2s; +purgerez purger VER 5.46 3.24 0.07 0.00 ind:fut:2p; +purgeriez purger VER 5.46 3.24 0.01 0.00 cnd:pre:2p; +purges purge NOM f p 1.34 1.89 0.84 0.54 +purgez purger VER 5.46 3.24 0.23 0.00 imp:pre:2p;ind:pre:2p; +purgiez purger VER 5.46 3.24 0.02 0.00 ind:imp:2p; +purgé purger VER m s 5.46 3.24 0.93 0.81 par:pas; +purgée purger VER f s 5.46 3.24 0.21 0.00 par:pas; +purgées purger VER f p 5.46 3.24 0.01 0.07 par:pas; +purgés purger VER m p 5.46 3.24 0.23 0.14 par:pas; +péri périr VER m s 11.20 10.34 2.56 1.89 par:pas; +péricarde péricarde NOM m s 0.33 0.00 0.33 0.00 +péricardique péricardique ADJ s 0.12 0.00 0.12 0.00 +péricardite péricardite NOM f s 0.05 0.00 0.05 0.00 +péricarpe péricarpe NOM m s 0.01 0.00 0.01 0.00 +périclita péricliter VER 0.10 1.01 0.00 0.07 ind:pas:3s; +périclitait péricliter VER 0.10 1.01 0.02 0.20 ind:imp:3s; +périclitant péricliter VER 0.10 1.01 0.00 0.07 par:pre; +périclitent péricliter VER 0.10 1.01 0.01 0.07 ind:pre:3p; +péricliter péricliter VER 0.10 1.01 0.03 0.27 inf; +périclitèrent péricliter VER 0.10 1.01 0.01 0.07 ind:pas:3p; +périclité péricliter VER m s 0.10 1.01 0.04 0.27 par:pas; +péridurale péridural NOM f s 0.37 0.07 0.37 0.07 +périe périr VER f s 11.20 10.34 0.01 0.00 par:pas; +périf périf NOM m s 0.14 0.27 0.14 0.27 +purifiaient purifier VER 7.92 4.86 0.00 0.14 ind:imp:3p; +purifiais purifier VER 7.92 4.86 0.10 0.00 ind:imp:2s; +purifiait purifier VER 7.92 4.86 0.14 0.20 ind:imp:3s; +purifiant purifier VER 7.92 4.86 0.20 0.27 par:pre; +purificateur purificateur ADJ m s 0.75 0.68 0.47 0.54 +purificateurs purificateur NOM m p 0.22 0.07 0.07 0.00 +purification purification NOM f s 1.31 1.08 1.31 0.95 +purifications purification NOM f p 1.31 1.08 0.00 0.14 +purificatoire purificatoire ADJ m s 0.00 0.07 0.00 0.07 +purificatrice purificateur ADJ f s 0.75 0.68 0.02 0.07 +purificatrices purificateur ADJ f p 0.75 0.68 0.27 0.00 +purifie purifier VER 7.92 4.86 2.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +purifient purifier VER 7.92 4.86 0.30 0.07 ind:pre:3p; +purifier purifier VER 7.92 4.86 2.59 1.15 inf; +purifiera purifier VER 7.92 4.86 0.14 0.00 ind:fut:3s; +purifiez purifier VER 7.92 4.86 0.34 0.14 imp:pre:2p;ind:pre:2p; +purifions purifier VER 7.92 4.86 0.02 0.07 imp:pre:1p;ind:pre:1p; +purifiât purifier VER 7.92 4.86 0.00 0.07 sub:imp:3s; +purifié purifier VER m s 7.92 4.86 1.05 1.35 par:pas; +purifiée purifier VER f s 7.92 4.86 0.68 0.68 par:pas; +purifiées purifier VER f p 7.92 4.86 0.00 0.07 par:pas; +purifiés purifier VER m p 7.92 4.86 0.32 0.34 par:pas; +périgourdin périgourdin ADJ m s 0.02 0.27 0.00 0.07 +périgourdine périgourdin ADJ f s 0.02 0.27 0.01 0.20 +périgourdins périgourdin ADJ m p 0.02 0.27 0.01 0.00 +périgée périgée NOM m s 0.02 0.07 0.02 0.07 +péril péril NOM m s 7.76 13.78 6.32 10.00 +périlleuse périlleux ADJ f s 1.43 6.76 0.35 2.30 +périlleusement périlleusement ADV 0.00 0.20 0.00 0.20 +périlleuses périlleux ADJ f p 1.43 6.76 0.21 0.88 +périlleux périlleux ADJ m 1.43 6.76 0.87 3.58 +périls péril NOM m p 7.76 13.78 1.45 3.78 +périme périmer VER 1.68 0.54 0.02 0.00 ind:pre:3s; +périment périmer VER 1.68 0.54 0.01 0.00 ind:pre:3p; +périmer périmer VER 1.68 0.54 0.01 0.00 inf; +périmètre périmètre NOM m s 6.81 2.84 6.71 2.64 +périmètres périmètre NOM m p 6.81 2.84 0.10 0.20 +périmé périmer VER m s 1.68 0.54 0.69 0.27 par:pas; +périmée périmer VER f s 1.68 0.54 0.59 0.20 par:pas; +périmées périmé ADJ f p 0.79 2.36 0.09 0.47 +périmés périmer VER m p 1.68 0.54 0.28 0.00 par:pas; +purin purin NOM m s 0.38 2.23 0.38 2.23 +périnée périnée NOM m s 0.16 0.47 0.16 0.47 +période période NOM f s 25.65 41.89 23.72 32.09 +périodes période NOM f p 25.65 41.89 1.94 9.80 +périodicité périodicité NOM f s 0.01 0.07 0.01 0.07 +périodique périodique ADJ s 0.23 1.89 0.15 1.28 +périodiquement périodiquement ADV 0.17 3.18 0.17 3.18 +périodiques périodique ADJ p 0.23 1.89 0.09 0.61 +péripatéticiennes péripatéticienne NOM f p 0.14 0.00 0.14 0.00 +périph périph NOM m s 0.16 0.20 0.16 0.20 +périphrase périphrase NOM f s 0.11 0.27 0.11 0.14 +périphrases périphrase NOM f p 0.11 0.27 0.00 0.14 +périphérie périphérie NOM f s 1.30 3.04 1.21 2.91 +périphéries périphérie NOM f p 1.30 3.04 0.10 0.14 +périphérique périphérique NOM m s 0.53 1.15 0.52 1.15 +périphériques périphérique ADJ p 0.50 1.55 0.19 0.95 +périple périple NOM m s 1.14 2.64 0.98 2.09 +périples périple NOM m p 1.14 2.64 0.15 0.54 +péripétie péripétie NOM f s 0.85 6.69 0.59 1.35 +péripéties péripétie NOM f p 0.85 6.69 0.26 5.34 +périr périr VER 11.20 10.34 3.83 4.93 inf; +périra périr VER 11.20 10.34 1.01 0.20 ind:fut:3s; +périrais périr VER 11.20 10.34 0.01 0.14 cnd:pre:1s; +périrait périr VER 11.20 10.34 0.31 0.14 cnd:pre:3s; +périras périr VER 11.20 10.34 0.06 0.00 ind:fut:2s; +périrent périr VER 11.20 10.34 0.49 0.61 ind:pas:3p; +périrez périr VER 11.20 10.34 0.06 0.07 ind:fut:2p; +péririez périr VER 11.20 10.34 0.01 0.00 cnd:pre:2p; +périrons périr VER 11.20 10.34 0.14 0.07 ind:fut:1p; +périront périr VER 11.20 10.34 0.75 0.20 ind:fut:3p; +péris périr VER m p 11.20 10.34 0.05 0.07 ind:pre:1s;ind:pre:2s;par:pas; +périscolaire périscolaire ADJ f s 0.01 0.00 0.01 0.00 +périscope périscope NOM m s 1.28 0.88 1.24 0.68 +périscopes périscope NOM m p 1.28 0.88 0.04 0.20 +périscopique périscopique ADJ f s 0.31 0.00 0.31 0.00 +périssable périssable ADJ s 0.38 1.82 0.12 1.35 +périssables périssable ADJ p 0.38 1.82 0.27 0.47 +périssaient périr VER 11.20 10.34 0.01 0.27 ind:imp:3p; +périssait périr VER 11.20 10.34 0.00 0.34 ind:imp:3s; +périssant périr VER 11.20 10.34 0.01 0.07 par:pre; +périsse périr VER 11.20 10.34 0.34 0.47 sub:pre:3s; +périssent périr VER 11.20 10.34 0.54 0.27 ind:pre:3p; +périssez périr VER 11.20 10.34 0.10 0.00 imp:pre:2p; +périssodactyle périssodactyle NOM m s 0.14 0.00 0.14 0.00 +périssoire périssoire NOM f s 0.00 0.20 0.00 0.14 +périssoires périssoire NOM f p 0.00 0.20 0.00 0.07 +périssons périr VER 11.20 10.34 0.14 0.07 imp:pre:1p;ind:pre:1p; +péristaltique péristaltique ADJ f s 0.01 0.14 0.01 0.07 +péristaltiques péristaltique ADJ f p 0.01 0.14 0.00 0.07 +péristaltisme péristaltisme NOM m s 0.01 0.00 0.01 0.00 +puriste puriste NOM s 0.13 0.00 0.11 0.00 +puristes puriste NOM p 0.13 0.00 0.02 0.00 +péristyle péristyle NOM m s 0.00 1.49 0.00 1.49 +périt périr VER 11.20 10.34 0.76 0.47 ind:pre:3s;ind:pas:3s; +puritain puritain NOM m s 0.53 0.81 0.28 0.07 +puritaine puritain ADJ f s 1.16 2.03 0.67 0.54 +puritaines puritain ADJ f p 1.16 2.03 0.20 0.20 +puritains puritain NOM m p 0.53 0.81 0.20 0.61 +puritanisme puritanisme NOM m s 0.05 1.22 0.05 1.22 +péritoine péritoine NOM m s 0.13 0.14 0.13 0.14 +péritonite péritonite NOM f s 0.32 0.47 0.32 0.47 +péritonéal péritonéal ADJ m s 0.32 0.07 0.18 0.00 +péritonéale péritonéal ADJ f s 0.32 0.07 0.14 0.07 +périurbaines périurbain ADJ f p 0.01 0.00 0.01 0.00 +pérodictique pérodictique NOM m s 0.01 0.00 0.01 0.00 +péroniste péroniste ADJ m s 0.17 0.00 0.17 0.00 +péronnelle péronnelle NOM f s 0.04 0.07 0.04 0.07 +péroné péroné NOM m s 0.27 0.14 0.27 0.00 +péronés péroné NOM m p 0.27 0.14 0.00 0.14 +pérorais pérorer VER 0.22 3.24 0.00 0.07 ind:imp:1s; +péroraison péroraison NOM f s 0.00 1.08 0.00 0.95 +péroraisons péroraison NOM f p 0.00 1.08 0.00 0.14 +pérorait pérorer VER 0.22 3.24 0.00 1.49 ind:imp:3s; +pérorant pérorer VER 0.22 3.24 0.00 0.54 par:pre; +pérore pérorer VER 0.22 3.24 0.15 0.61 ind:pre:1s;ind:pre:3s; +pérorer pérorer VER 0.22 3.24 0.07 0.47 inf; +péroreur péroreur NOM m s 0.00 0.07 0.00 0.07 +pérorons pérorer VER 0.22 3.24 0.00 0.07 ind:pre:1p; +pérot pérot NOM m s 0.11 0.00 0.11 0.00 +purotin purotin NOM m s 0.00 0.41 0.00 0.14 +purotins purotin NOM m p 0.00 0.41 0.00 0.27 +pérou pérou NOM s 0.01 0.00 0.01 0.00 +purpura purpura NOM m s 0.09 0.00 0.09 0.00 +purpurin purpurin ADJ m s 0.01 0.61 0.00 0.27 +purpurine purpurin ADJ f s 0.01 0.61 0.01 0.14 +purpurines purpurin ADJ f p 0.01 0.61 0.00 0.07 +purpurins purpurin ADJ m p 0.01 0.61 0.00 0.14 +purs pur ADJ m p 58.46 90.34 3.67 6.89 +purée purée NOM f s 5.75 6.28 5.74 6.08 +purées purée NOM f p 5.75 6.28 0.01 0.20 +pérégrinant pérégriner VER 0.00 0.47 0.00 0.07 par:pre; +pérégrination pérégrination NOM f s 0.06 1.62 0.00 0.20 +pérégrinations pérégrination NOM f p 0.06 1.62 0.06 1.42 +pérégrine pérégriner VER 0.00 0.47 0.00 0.14 ind:pre:3s; +pérégriner pérégriner VER 0.00 0.47 0.00 0.20 inf; +pérégrines pérégriner VER 0.00 0.47 0.00 0.07 ind:pre:2s; +purulence purulence NOM f s 0.02 0.41 0.02 0.20 +purulences purulence NOM f p 0.02 0.41 0.00 0.20 +purulent purulent ADJ m s 0.26 0.74 0.06 0.20 +purulente purulent ADJ f s 0.26 0.74 0.10 0.20 +purulentes purulent ADJ f p 0.26 0.74 0.04 0.34 +purulents purulent ADJ m p 0.26 0.74 0.06 0.00 +péréquation péréquation NOM f s 0.00 0.20 0.00 0.14 +péréquations péréquation NOM f p 0.00 0.20 0.00 0.07 +péruvien péruvien ADJ m s 1.52 0.68 1.15 0.34 +péruvienne péruvien ADJ f s 1.52 0.68 0.19 0.27 +péruviens péruvien ADJ m p 1.52 0.68 0.19 0.07 +pus pus ADJ m s 1.90 5.00 1.90 5.00 +pusillanime pusillanime ADJ s 0.05 0.95 0.03 0.81 +pusillanimes pusillanime ADJ p 0.05 0.95 0.02 0.14 +pusillanimité pusillanimité NOM f s 0.00 0.34 0.00 0.34 +pusse pouvoir VER 5524.52 2659.80 0.00 1.28 sub:imp:1s; +pussent pouvoir VER 5524.52 2659.80 0.00 2.77 sub:imp:3p; +pusses pouvoir VER 5524.52 2659.80 0.00 0.07 sub:imp:2s; +pussiez pouvoir VER 5524.52 2659.80 0.00 0.07 sub:imp:2p; +pustule pustule NOM f s 0.69 1.35 0.28 0.14 +pustules pustule NOM f p 0.69 1.35 0.41 1.22 +pustuleuse pustuleux ADJ f s 0.02 0.61 0.00 0.27 +pustuleux pustuleux ADJ m p 0.02 0.61 0.02 0.34 +put pouvoir VER 5524.52 2659.80 5.10 49.66 ind:pas:3s; +pétaient péter VER 31.66 16.28 0.03 0.81 ind:imp:3p; +putain putain NOM f s 306.74 40.41 287.83 33.58 +pétainiste pétainiste ADJ m s 0.00 0.54 0.00 0.34 +pétainistes pétainiste ADJ f p 0.00 0.54 0.00 0.20 +putains putain NOM f p 306.74 40.41 18.91 6.82 +pétais péter VER 31.66 16.28 0.13 0.07 ind:imp:1s;ind:imp:2s; +pétait péter VER 31.66 16.28 0.38 1.28 ind:imp:3s; +pétale pétale NOM m s 3.47 8.24 1.17 1.42 +pétales pétale NOM m p 3.47 8.24 2.31 6.82 +pétaloïdes pétaloïde ADJ m p 0.01 0.00 0.01 0.00 +putanat putanat NOM m s 0.00 0.20 0.00 0.20 +pétanque pétanque NOM f s 0.17 1.49 0.17 1.49 +pétant péter VER 31.66 16.28 0.25 0.34 par:pre; +pétante pétant ADJ f s 0.33 0.68 0.02 0.00 +pétantes pétant ADJ f p 0.33 0.68 0.13 0.41 +pétants pétant ADJ m p 0.33 0.68 0.00 0.07 +pétaradaient pétarader VER 0.10 1.55 0.00 0.07 ind:imp:3p; +pétaradait pétarader VER 0.10 1.55 0.01 0.20 ind:imp:3s; +pétaradant pétarader VER 0.10 1.55 0.01 0.34 par:pre; +pétaradante pétaradant ADJ f s 0.01 0.88 0.00 0.14 +pétaradantes pétaradant ADJ f p 0.01 0.88 0.00 0.20 +pétaradants pétaradant ADJ m p 0.01 0.88 0.00 0.20 +pétarade pétarade NOM f s 0.30 2.36 0.16 1.55 +pétarader pétarader VER 0.10 1.55 0.04 0.47 inf; +pétarades pétarade NOM f p 0.30 2.36 0.14 0.81 +pétaradé pétarader VER m s 0.10 1.55 0.00 0.07 par:pas; +pétard pétard NOM m s 7.19 9.93 4.77 5.47 +pétarde pétarder VER 0.00 0.07 0.00 0.07 ind:pre:3s; +pétardier pétardier NOM m s 0.00 0.47 0.00 0.34 +pétardière pétardier NOM f s 0.00 0.47 0.00 0.14 +pétards pétard NOM m p 7.19 9.93 2.42 4.46 +pétase pétase NOM m s 0.00 0.14 0.00 0.14 +pétasse pétasse NOM f s 8.03 0.95 6.91 0.61 +putasse putasser VER 0.17 0.34 0.17 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +pétassent pétasser VER 0.00 0.07 0.00 0.07 ind:pre:3p; +putasserie putasserie NOM f s 0.34 0.41 0.10 0.41 +putasseries putasserie NOM f p 0.34 0.41 0.23 0.00 +pétasses pétasse NOM f p 8.03 0.95 1.12 0.34 +putasses putasser VER 0.17 0.34 0.01 0.07 ind:pre:2s; +putassier putassier ADJ m s 0.02 0.41 0.01 0.07 +putassiers putassier ADJ m p 0.02 0.41 0.00 0.14 +putassière putassier ADJ f s 0.02 0.41 0.01 0.14 +putassières putassier ADJ f p 0.02 0.41 0.00 0.07 +putatif putatif ADJ m s 0.00 0.74 0.00 0.47 +putatifs putatif ADJ m p 0.00 0.74 0.00 0.14 +putative putatif ADJ f s 0.00 0.74 0.00 0.14 +pétaudière pétaudière NOM f s 0.01 0.07 0.01 0.07 +pute pute NOM f s 105.25 20.27 87.91 13.65 +péter péter VER 31.66 16.28 11.08 5.34 inf; +pétera péter VER 31.66 16.28 0.34 0.14 ind:fut:3s; +péterai péter VER 31.66 16.28 0.05 0.00 ind:fut:1s; +péterais péter VER 31.66 16.28 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +péterait péter VER 31.66 16.28 0.10 0.07 cnd:pre:3s; +péteras péter VER 31.66 16.28 0.01 0.00 ind:fut:2s; +putes pute NOM f p 105.25 20.27 17.34 6.62 +péteur péteur NOM m s 0.11 0.07 0.11 0.07 +péteuse péteuse NOM f s 0.06 0.54 0.06 0.54 +péteux péteux NOM m 0.30 0.61 0.30 0.61 +pétez péter VER 31.66 16.28 0.21 0.00 imp:pre:2p;ind:pre:2p; +putier putier NOM m s 0.00 0.14 0.00 0.14 +pétiez péter VER 31.66 16.28 0.02 0.00 ind:imp:2p; +pétilla pétiller VER 0.32 4.39 0.00 0.14 ind:pas:3s; +pétillaient pétiller VER 0.32 4.39 0.00 0.54 ind:imp:3p; +pétillait pétiller VER 0.32 4.39 0.00 0.95 ind:imp:3s; +pétillant pétillant ADJ m s 1.27 3.24 0.55 1.55 +pétillante pétillant ADJ f s 1.27 3.24 0.44 0.81 +pétillantes pétillant ADJ f p 1.27 3.24 0.15 0.27 +pétillants pétillant ADJ m p 1.27 3.24 0.14 0.61 +pétille pétiller VER 0.32 4.39 0.21 1.01 ind:pre:1s;ind:pre:3s; +pétillement pétillement NOM m s 0.01 1.15 0.01 1.01 +pétillements pétillement NOM m p 0.01 1.15 0.00 0.14 +pétillent pétiller VER 0.32 4.39 0.03 0.47 ind:pre:3p; +pétiller pétiller VER 0.32 4.39 0.05 0.54 inf; +pétilles pétiller VER 0.32 4.39 0.01 0.00 ind:pre:2s; +pétillèrent pétiller VER 0.32 4.39 0.00 0.07 ind:pas:3p; +pétillé pétiller VER m s 0.32 4.39 0.00 0.07 par:pas; +pétiole pétiole NOM m s 0.00 0.07 0.00 0.07 +pétition pétition NOM f s 3.54 1.76 3.00 0.95 +pétitionnaires pétitionnaire NOM p 0.01 0.07 0.01 0.07 +pétitionnent pétitionner VER 0.01 0.07 0.00 0.07 ind:pre:3p; +pétitionner pétitionner VER 0.01 0.07 0.01 0.00 inf; +pétitions pétition NOM f p 3.54 1.76 0.55 0.81 +pétochais pétocher VER 0.01 0.07 0.00 0.07 ind:imp:1s; +pétochait pétocher VER 0.01 0.07 0.01 0.00 ind:imp:3s; +pétochard pétochard ADJ m s 0.02 0.14 0.02 0.14 +pétoche pétoche NOM f s 0.52 2.77 0.50 2.57 +pétoches pétoche NOM f p 0.52 2.77 0.02 0.20 +pétoire pétoire NOM f s 0.42 1.62 0.41 1.08 +pétoires pétoire NOM f p 0.42 1.62 0.01 0.54 +putois putois NOM m 1.06 1.28 1.06 1.28 +pétomane pétomane NOM s 0.05 0.47 0.03 0.34 +pétomanes pétomane NOM p 0.05 0.47 0.03 0.14 +pétoncle pétoncle NOM m s 0.08 0.00 0.05 0.00 +pétoncles pétoncle NOM m p 0.08 0.00 0.03 0.00 +pétons péter VER 31.66 16.28 0.01 0.00 imp:pre:1p; +pétouille pétouiller VER 0.00 0.07 0.00 0.07 ind:pre:3s; +pétoulet pétoulet NOM m s 0.00 0.41 0.00 0.41 +pétrarquistes pétrarquiste NOM p 0.00 0.07 0.00 0.07 +pétrel pétrel NOM m s 0.02 0.07 0.02 0.07 +putrescence putrescence NOM f s 0.01 0.14 0.01 0.07 +putrescences putrescence NOM f p 0.01 0.14 0.00 0.07 +putrescent putrescent ADJ m s 0.20 0.07 0.20 0.00 +putrescents putrescent ADJ m p 0.20 0.07 0.00 0.07 +putrescible putrescible ADJ f s 0.00 0.20 0.00 0.20 +putrescine putrescine NOM f s 0.01 0.00 0.01 0.00 +pétreux pétreux ADJ m 0.01 0.00 0.01 0.00 +pétri pétrir VER m s 1.48 11.01 0.42 1.76 par:pas; +putride putride ADJ s 1.04 0.95 0.74 0.54 +putrides putride ADJ p 1.04 0.95 0.30 0.41 +pétrie pétrir VER f s 1.48 11.01 0.17 1.15 par:pas; +pétries pétrir VER f p 1.48 11.01 0.01 0.34 par:pas; +pétrifia pétrifier VER 2.17 8.38 0.01 0.14 ind:pas:3s; +pétrifiaient pétrifier VER 2.17 8.38 0.00 0.14 ind:imp:3p; +pétrifiais pétrifier VER 2.17 8.38 0.00 0.07 ind:imp:1s; +pétrifiait pétrifier VER 2.17 8.38 0.10 0.74 ind:imp:3s; +pétrifiant pétrifier VER 2.17 8.38 0.00 0.14 par:pre; +pétrifiante pétrifiant ADJ f s 0.00 0.27 0.00 0.20 +pétrifiantes pétrifiant ADJ f p 0.00 0.27 0.00 0.07 +pétrification pétrification NOM f s 0.01 0.27 0.01 0.27 +pétrifie pétrifier VER 2.17 8.38 0.11 0.27 ind:pre:3s; +pétrifient pétrifier VER 2.17 8.38 0.01 0.07 ind:pre:3p; +pétrifier pétrifier VER 2.17 8.38 0.04 0.54 inf; +pétrifieront pétrifier VER 2.17 8.38 0.00 0.07 ind:fut:3p; +pétrifiez pétrifier VER 2.17 8.38 0.00 0.07 ind:pre:2p; +pétrifiât pétrifier VER 2.17 8.38 0.00 0.07 sub:imp:3s; +pétrifièrent pétrifier VER 2.17 8.38 0.00 0.07 ind:pas:3p; +pétrifié pétrifier VER m s 2.17 8.38 1.14 2.57 par:pas; +pétrifiée pétrifier VER f s 2.17 8.38 0.56 1.82 par:pas; +pétrifiées pétrifier VER f p 2.17 8.38 0.15 0.20 par:pas; +pétrifiés pétrifier VER m p 2.17 8.38 0.07 1.42 par:pas; +pétrin pétrin NOM m s 10.89 3.31 10.82 3.18 +pétrins pétrin NOM m p 10.89 3.31 0.07 0.14 +pétrir pétrir VER 1.48 11.01 0.68 3.31 inf; +pétrirai pétrir VER 1.48 11.01 0.00 0.07 ind:fut:1s; +pétrirent pétrir VER 1.48 11.01 0.00 0.07 ind:pas:3p; +pétris pétri ADJ m p 0.27 0.34 0.14 0.14 +pétrissage pétrissage NOM m s 0.00 0.14 0.00 0.14 +pétrissaient pétrir VER 1.48 11.01 0.00 0.34 ind:imp:3p; +pétrissait pétrir VER 1.48 11.01 0.10 1.42 ind:imp:3s; +pétrissant pétrir VER 1.48 11.01 0.00 0.68 par:pre; +pétrisse pétrir VER 1.48 11.01 0.00 0.14 sub:pre:3s; +pétrissent pétrir VER 1.48 11.01 0.01 0.07 ind:pre:3p; +pétrisseur pétrisseur NOM m s 0.00 0.07 0.00 0.07 +pétrissez pétrir VER 1.48 11.01 0.00 0.07 ind:pre:2p; +pétrit pétrir VER 1.48 11.01 0.03 1.15 ind:pre:3s;ind:pas:3s; +pétrochimie pétrochimie NOM f s 0.00 0.14 0.00 0.14 +pétrochimique pétrochimique ADJ s 0.04 0.00 0.04 0.00 +pétrodollars pétrodollar NOM m p 0.30 0.00 0.30 0.00 +pétrole pétrole NOM m s 13.84 15.41 13.71 14.73 +pétroles pétrole NOM m p 13.84 15.41 0.13 0.68 +pétrolette pétrolette NOM f s 0.02 0.20 0.02 0.20 +pétroleuse pétroleur NOM f s 0.03 0.20 0.03 0.14 +pétroleuses pétroleuse NOM f p 0.01 0.00 0.01 0.00 +pétrolier pétrolier ADJ m s 1.75 1.22 0.38 0.27 +pétroliers pétrolier NOM m p 0.73 2.23 0.36 0.61 +pétrolifère pétrolifère ADJ s 0.11 0.27 0.04 0.14 +pétrolifères pétrolifère ADJ p 0.11 0.27 0.06 0.14 +pétrolière pétrolier ADJ f s 1.75 1.22 0.79 0.14 +pétrolières pétrolier ADJ f p 1.75 1.22 0.37 0.61 +pétrousquin pétrousquin NOM m s 0.00 0.14 0.00 0.14 +pétrée pétré ADJ f s 0.00 0.07 0.00 0.07 +putréfaction putréfaction NOM f s 0.49 1.15 0.49 1.15 +putréfiaient putréfier VER 0.32 0.68 0.00 0.07 ind:imp:3p; +putréfiait putréfier VER 0.32 0.68 0.00 0.14 ind:imp:3s; +putréfiant putréfier VER 0.32 0.68 0.00 0.07 par:pre; +putréfient putréfier VER 0.32 0.68 0.00 0.07 ind:pre:3p; +putréfier putréfier VER 0.32 0.68 0.02 0.07 inf; +putréfié putréfier VER m s 0.32 0.68 0.09 0.00 par:pas; +putréfiée putréfier VER f s 0.32 0.68 0.17 0.07 par:pas; +putréfiées putréfier VER f p 0.32 0.68 0.01 0.14 par:pas; +putréfiés putréfier VER m p 0.32 0.68 0.02 0.07 par:pas; +pétrus pétrus NOM m 0.03 0.34 0.03 0.34 +putsch putsch NOM m s 1.46 1.55 1.46 1.55 +putschiste putschiste ADJ f s 0.27 0.00 0.27 0.00 +putt putt NOM m s 0.21 0.00 0.21 0.00 +putter putter VER 0.35 0.00 0.35 0.00 inf; +putti putto NOM m p 0.02 0.00 0.02 0.00 +putting putting NOM m s 0.17 0.00 0.17 0.00 +pété péter VER m s 31.66 16.28 8.47 1.01 par:pas; +pétéchiale pétéchial ADJ f s 0.10 0.00 0.10 0.00 +pétéchie pétéchie NOM f s 0.22 0.00 0.04 0.00 +pétéchies pétéchie NOM f p 0.22 0.00 0.17 0.00 +pétée péter VER f s 31.66 16.28 0.57 0.14 par:pas; +pétées pété ADJ f p 1.66 0.81 0.11 0.20 +pétulance pétulance NOM f s 0.02 0.34 0.02 0.34 +pétulant pétulant ADJ m s 0.05 0.54 0.01 0.20 +pétulante pétulant ADJ f s 0.05 0.54 0.03 0.07 +pétulantes pétulant ADJ f p 0.05 0.54 0.00 0.07 +pétulants pétulant ADJ m p 0.05 0.54 0.01 0.20 +pétunant pétuner VER 0.01 0.20 0.00 0.07 par:pre; +pétuner pétuner VER 0.01 0.20 0.00 0.07 inf; +pétunez pétuner VER 0.01 0.20 0.01 0.00 ind:pre:2p; +pétunia pétunia NOM m s 0.63 1.01 0.50 0.07 +pétunias pétunia NOM m p 0.63 1.01 0.13 0.95 +pétuné pétuner VER m s 0.01 0.20 0.00 0.07 par:pas; +pétés péter VER m p 31.66 16.28 0.17 0.34 par:pas; +puéricultrice puériculteur NOM f s 0.03 0.20 0.03 0.07 +puéricultrices puériculteur NOM f p 0.03 0.20 0.00 0.14 +puériculture puériculture NOM f s 0.01 0.47 0.01 0.47 +puéril puéril ADJ m s 3.73 9.59 2.08 3.18 +puérile puéril ADJ f s 3.73 9.59 1.01 3.92 +puérilement puérilement ADV 0.01 0.20 0.01 0.20 +puériles puéril ADJ f p 3.73 9.59 0.22 1.28 +puérilité puérilité NOM f s 0.47 1.28 0.32 1.08 +puérilités puérilité NOM f p 0.47 1.28 0.15 0.20 +puérils puéril ADJ m p 3.73 9.59 0.43 1.22 +puy puy NOM m s 0.00 0.14 0.00 0.14 +puzzle puzzle NOM m s 4.81 11.82 4.38 7.77 +puzzles puzzle NOM m p 4.81 11.82 0.43 4.05 +pygmée pygmée NOM s 0.58 0.47 0.28 0.00 +pygmées pygmée NOM p 0.58 0.47 0.30 0.47 +pyjama pyjama NOM m s 8.11 17.57 7.10 15.07 +pyjamas pyjama NOM m p 8.11 17.57 1.01 2.50 +pylône pylône NOM m s 0.36 1.96 0.31 0.88 +pylônes pylône NOM m p 0.36 1.96 0.05 1.08 +pylore pylore NOM m s 0.02 0.07 0.02 0.07 +pylorique pylorique ADJ s 0.03 0.00 0.03 0.00 +pyogène pyogène ADJ m s 0.01 0.00 0.01 0.00 +pyralène pyralène NOM m s 0.01 0.00 0.01 0.00 +pyrame pyrame NOM m s 0.01 0.14 0.01 0.14 +pyramidal pyramidal ADJ m s 0.36 1.15 0.26 0.34 +pyramidale pyramidal ADJ f s 0.36 1.15 0.07 0.47 +pyramidalement pyramidalement ADV 0.00 0.07 0.00 0.07 +pyramidales pyramidal ADJ f p 0.36 1.15 0.02 0.20 +pyramidaux pyramidal ADJ m p 0.36 1.15 0.01 0.14 +pyramide pyramide NOM f s 7.02 10.14 5.25 4.80 +pyramides pyramide NOM f p 7.02 10.14 1.77 5.34 +pyramidé pyramidé ADJ m s 0.00 0.07 0.00 0.07 +pyrex pyrex NOM m 0.01 0.07 0.01 0.07 +pyrexie pyrexie NOM f s 0.01 0.00 0.01 0.00 +pyridoxine pyridoxine NOM f s 0.01 0.00 0.01 0.00 +pyrite pyrite NOM f s 0.06 0.00 0.04 0.00 +pyrites pyrite NOM f p 0.06 0.00 0.02 0.00 +pyroclastique pyroclastique ADJ s 0.03 0.00 0.02 0.00 +pyroclastiques pyroclastique ADJ p 0.03 0.00 0.01 0.00 +pyrogravées pyrograver VER f p 0.00 0.07 0.00 0.07 par:pas; +pyrogène pyrogène ADJ s 0.00 0.14 0.00 0.14 +pyrolyse pyrolyse NOM f s 0.01 0.00 0.01 0.00 +pyromane pyromane NOM s 1.69 0.88 1.29 0.74 +pyromanes pyromane NOM p 1.69 0.88 0.40 0.14 +pyromanie pyromanie NOM f s 0.03 0.07 0.03 0.07 +pyromètre pyromètre NOM m s 0.00 0.27 0.00 0.27 +pyrosphère pyrosphère NOM f s 0.00 0.07 0.00 0.07 +pyrotechnicien pyrotechnicien NOM s 0.02 0.00 0.02 0.00 +pyrotechnie pyrotechnie NOM f s 0.15 0.41 0.15 0.41 +pyrotechnique pyrotechnique ADJ s 0.06 0.41 0.06 0.41 +pyroxène pyroxène NOM m s 0.01 0.00 0.01 0.00 +pyrrhique pyrrhique NOM f s 0.14 0.07 0.14 0.07 +pyrrhonien pyrrhonien NOM m s 0.00 0.14 0.00 0.14 +pyrrhonisme pyrrhonisme NOM m s 0.00 0.14 0.00 0.14 +pyrèthre pyrèthre NOM m s 0.00 0.07 0.00 0.07 +pyrénéen pyrénéen ADJ m s 0.00 0.07 0.00 0.07 +pyrénéenne pyrénéenne ADJ f s 0.00 0.07 0.00 0.07 +pyréthrine pyréthrine NOM f s 0.03 0.00 0.03 0.00 +pythagoricien pythagoricien ADJ m s 0.00 0.07 0.00 0.07 +pythagoriques pythagorique ADJ m p 0.01 0.00 0.01 0.00 +pythie pythie NOM f s 0.02 0.54 0.02 0.47 +pythies pythie NOM f p 0.02 0.54 0.00 0.07 +python python NOM m s 2.33 0.54 2.21 0.47 +pythonisse pythonisse NOM f s 0.00 0.20 0.00 0.20 +pythons python NOM m p 2.33 0.54 0.12 0.07 +pyxides pyxide NOM f p 0.00 0.07 0.00 0.07 +q q NOM m 3.49 0.61 3.49 0.61 +qu_en_dira_t_on qu_en_dira_t_on NOM m 0.10 0.41 0.10 0.41 +qu qu CON 22.07 1.55 22.07 1.55 +quadra quadra NOM s 0.05 0.00 0.03 0.00 +quadragénaire quadragénaire NOM s 0.40 1.01 0.19 0.74 +quadragénaires quadragénaire NOM p 0.40 1.01 0.21 0.27 +quadrangle quadrangle NOM m s 0.03 0.00 0.03 0.00 +quadrangulaire quadrangulaire ADJ f s 0.02 0.41 0.02 0.34 +quadrangulaires quadrangulaire ADJ m p 0.02 0.41 0.00 0.07 +quadrant quadrant NOM m s 0.73 0.00 0.64 0.00 +quadrants quadrant NOM m p 0.73 0.00 0.09 0.00 +quadras quadra NOM p 0.05 0.00 0.02 0.00 +quadratique quadratique ADJ s 0.01 0.00 0.01 0.00 +quadrature quadrature NOM f s 0.11 1.15 0.11 1.15 +quadri quadri NOM f s 0.02 0.07 0.02 0.07 +quadriceps quadriceps NOM m 0.11 0.07 0.11 0.07 +quadrichromie quadrichromie NOM f s 0.00 0.47 0.00 0.34 +quadrichromies quadrichromie NOM f p 0.00 0.47 0.00 0.14 +quadridimensionnel quadridimensionnel ADJ m s 0.01 0.00 0.01 0.00 +quadriennal quadriennal ADJ m s 0.09 0.00 0.09 0.00 +quadrige quadrige NOM m s 0.01 0.07 0.01 0.07 +quadrilatère quadrilatère NOM m s 0.16 1.76 0.16 1.62 +quadrilatères quadrilatère NOM m p 0.16 1.76 0.00 0.14 +quadrillage quadrillage NOM m s 0.51 1.01 0.49 0.88 +quadrillages quadrillage NOM m p 0.51 1.01 0.01 0.14 +quadrillaient quadriller VER 1.32 3.85 0.00 0.07 ind:imp:3p; +quadrillais quadriller VER 1.32 3.85 0.01 0.00 ind:imp:1s; +quadrillait quadriller VER 1.32 3.85 0.00 0.07 ind:imp:3s; +quadrille quadrille NOM s 0.23 0.88 0.20 0.88 +quadrillent quadriller VER 1.32 3.85 0.19 0.00 ind:pre:3p; +quadriller quadriller VER 1.32 3.85 0.38 0.20 inf; +quadrillerez quadriller VER 1.32 3.85 0.01 0.00 ind:fut:2p; +quadrilles quadrille NOM p 0.23 0.88 0.03 0.00 +quadrillez quadriller VER 1.32 3.85 0.19 0.00 imp:pre:2p;ind:pre:2p; +quadrillion quadrillion NOM m s 0.04 0.00 0.04 0.00 +quadrillons quadriller VER 1.32 3.85 0.02 0.00 imp:pre:1p;ind:pre:1p; +quadrillé quadriller VER m s 1.32 3.85 0.19 2.03 par:pas; +quadrillée quadriller VER f s 1.32 3.85 0.28 0.74 par:pas; +quadrillées quadriller VER f p 1.32 3.85 0.01 0.34 par:pas; +quadrillés quadriller VER m p 1.32 3.85 0.00 0.34 par:pas; +quadrilobé quadrilobé ADJ m s 0.00 0.07 0.00 0.07 +quadrimestre quadrimestre NOM m s 0.01 0.00 0.01 0.00 +quadrimoteur quadrimoteur ADJ m s 0.02 0.00 0.02 0.00 +quadripartite quadripartite ADJ s 0.02 0.07 0.02 0.00 +quadripartites quadripartite ADJ p 0.02 0.07 0.00 0.07 +quadriphonie quadriphonie NOM f s 0.02 0.14 0.02 0.14 +quadriphonique quadriphonique ADJ s 0.11 0.00 0.11 0.00 +quadriplégique quadriplégique ADJ s 0.03 0.00 0.03 0.00 +quadriréacteur quadriréacteur NOM m s 0.00 0.07 0.00 0.07 +quadrivium quadrivium NOM m s 0.00 0.07 0.00 0.07 +quadrumane quadrumane NOM m s 0.00 0.07 0.00 0.07 +quadrupla quadrupler VER 0.21 0.68 0.00 0.07 ind:pas:3s; +quadruplait quadrupler VER 0.21 0.68 0.00 0.14 ind:imp:3s; +quadruple quadruple ADJ 0.42 0.54 0.42 0.54 +quadrupler quadrupler VER 0.21 0.68 0.07 0.14 inf; +quadruples quadruple NOM m p 0.19 0.47 0.01 0.27 +quadruplé quadrupler VER m s 0.21 0.68 0.06 0.14 par:pas; +quadruplées quadruplée NOM f p 0.00 0.07 0.00 0.07 +quadruplés quadruplé NOM m p 0.06 0.00 0.06 0.00 +quadrupède quadrupède NOM m s 0.36 1.01 0.34 0.81 +quadrupèdes quadrupède NOM m p 0.36 1.01 0.01 0.20 +quai quai NOM m s 14.01 73.99 10.37 55.14 +quais quai NOM m p 14.01 73.99 3.64 18.85 +quaker quaker NOM m s 0.67 0.74 0.49 0.47 +quakeresse quakeresse NOM f s 0.02 0.14 0.02 0.14 +quakers quaker NOM m p 0.67 0.74 0.19 0.27 +qualifia qualifier VER 6.18 11.62 0.04 0.41 ind:pas:3s; +qualifiable qualifiable ADJ m s 0.00 0.07 0.00 0.07 +qualifiaient qualifier VER 6.18 11.62 0.00 0.27 ind:imp:3p; +qualifiais qualifier VER 6.18 11.62 0.00 0.14 ind:imp:1s; +qualifiait qualifier VER 6.18 11.62 0.06 0.88 ind:imp:3s; +qualifiant qualifier VER 6.18 11.62 0.03 0.34 par:pre; +qualifiassent qualifier VER 6.18 11.62 0.00 0.07 sub:imp:3p; +qualificatif qualificatif NOM m s 0.11 0.74 0.05 0.34 +qualificatifs qualificatif NOM m p 0.11 0.74 0.05 0.41 +qualification qualification NOM f s 2.45 0.81 0.68 0.68 +qualifications qualification NOM f p 2.45 0.81 1.78 0.14 +qualifie qualifier VER 6.18 11.62 0.63 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +qualifient qualifier VER 6.18 11.62 0.38 0.14 ind:pre:3p; +qualifier qualifier VER 6.18 11.62 0.96 3.04 inf; +qualifiera qualifier VER 6.18 11.62 0.01 0.20 ind:fut:3s; +qualifierai qualifier VER 6.18 11.62 0.16 0.07 ind:fut:1s; +qualifierais qualifier VER 6.18 11.62 0.26 0.20 cnd:pre:1s;cnd:pre:2s; +qualifierait qualifier VER 6.18 11.62 0.03 0.00 cnd:pre:3s; +qualifieriez qualifier VER 6.18 11.62 0.07 0.00 cnd:pre:2p; +qualifiez qualifier VER 6.18 11.62 0.06 0.07 ind:pre:2p; +qualifiât qualifier VER 6.18 11.62 0.00 0.07 sub:imp:3s; +qualifié qualifié ADJ m s 4.62 3.78 2.25 1.76 +qualifiée qualifié ADJ f s 4.62 3.78 1.13 0.68 +qualifiées qualifier VER f p 6.18 11.62 0.10 0.27 par:pas; +qualifiés qualifié ADJ m p 4.62 3.78 1.18 1.28 +qualitatif qualitatif ADJ m s 0.03 0.14 0.01 0.00 +qualitatifs qualitatif ADJ m p 0.03 0.14 0.00 0.07 +qualitative qualitatif ADJ f s 0.03 0.14 0.02 0.07 +qualité qualité NOM f s 29.13 59.12 20.84 42.70 +qualités qualité NOM f p 29.13 59.12 8.28 16.42 +quand quand CON 1827.92 1480.07 1827.92 1480.07 +quant_à_moi quant_à_moi NOM m 0.00 0.14 0.00 0.14 +quant_à_soi quant_à_soi NOM m 0.00 1.22 0.00 1.22 +quant quant NOM f s 7.94 32.30 7.94 32.30 +quanta quantum NOM m p 0.48 0.20 0.04 0.14 +quantifiable quantifiable ADJ s 0.15 0.00 0.15 0.00 +quantifier quantifier VER 0.23 0.07 0.20 0.07 inf; +quantifiée quantifier VER f s 0.23 0.07 0.03 0.00 par:pas; +quantique quantique ADJ s 1.36 0.07 1.16 0.07 +quantiques quantique ADJ p 1.36 0.07 0.20 0.00 +quantitatif quantitatif ADJ m s 0.05 0.14 0.03 0.00 +quantitative quantitatif ADJ f s 0.05 0.14 0.01 0.07 +quantitativement quantitativement ADV 0.10 0.00 0.10 0.00 +quantitatives quantitatif ADJ f p 0.05 0.14 0.01 0.07 +quantième quantième NOM m s 0.02 0.07 0.02 0.00 +quantièmes quantième NOM m p 0.02 0.07 0.00 0.07 +quantité quantité NOM f s 10.30 18.99 8.67 15.27 +quantités quantité NOM f p 10.30 18.99 1.63 3.72 +quanto quanto ADV 0.01 0.07 0.01 0.07 +quantum quantum NOM m s 0.48 0.20 0.45 0.07 +quarantaine quarantaine NOM f s 7.57 10.14 7.56 10.07 +quarantaines quarantaine NOM f p 7.57 10.14 0.01 0.07 +quarante_cinq quarante_cinq ADJ:num 1.16 8.85 1.16 8.85 +quarante_cinquième quarante_cinquième ADJ 0.10 0.07 0.10 0.07 +quarante_deux quarante_deux ADJ:num 0.29 2.09 0.29 2.09 +quarante_deuxième quarante_deuxième ADJ 0.03 0.07 0.03 0.07 +quarante_huit quarante_huit ADJ:num 1.11 6.76 1.11 6.76 +quarante_huitard quarante_huitard NOM m p 0.00 0.07 0.00 0.07 +quarante_huitième quarante_huitième ADJ 0.02 0.07 0.02 0.07 +quarante_neuf quarante_neuf ADJ:num 0.28 0.47 0.28 0.47 +quarante_quatre quarante_quatre ADJ:num 0.10 0.88 0.10 0.88 +quarante_sept quarante_sept ADJ:num 0.40 0.74 0.40 0.74 +quarante_septième quarante_septième ADJ 0.03 0.20 0.03 0.20 +quarante_six quarante_six ADJ:num 0.23 0.47 0.23 0.47 +quarante_trois quarante_trois ADJ:num 0.68 1.28 0.68 1.28 +quarante_troisième quarante_troisième ADJ 0.00 0.07 0.00 0.07 +quarante quarante ADJ:num 8.16 43.78 8.16 43.78 +quarantenaire quarantenaire ADJ m s 0.05 0.07 0.01 0.07 +quarantenaires quarantenaire ADJ p 0.05 0.07 0.04 0.00 +quarantième quarantième ADJ 0.03 0.27 0.03 0.27 +quarantièmes quarantième NOM p 0.04 0.14 0.01 0.07 +quark quark NOM m s 0.22 0.14 0.13 0.07 +quarks quark NOM m p 0.22 0.14 0.09 0.07 +quarre quarre NOM f s 0.04 0.00 0.04 0.00 +quarrez quarrer VER 0.00 0.07 0.00 0.07 imp:pre:2p; +quart_monde quart_monde NOM m s 0.02 0.00 0.02 0.00 +quart quart NOM m s 23.02 77.30 20.58 57.36 +quartaut quartaut NOM m s 0.00 0.20 0.00 0.20 +quarte quarte NOM f s 0.04 0.14 0.04 0.14 +quartenier quartenier NOM m s 0.00 0.07 0.00 0.07 +quarter quarter VER 0.44 0.00 0.44 0.00 inf;; +quarteron quarteron NOM m s 0.03 0.81 0.01 0.61 +quarteronnes quarteron NOM f p 0.03 0.81 0.00 0.07 +quarterons quarteron NOM m p 0.03 0.81 0.02 0.14 +quartet quartet NOM m s 0.20 0.00 0.20 0.00 +quartette quartette NOM m s 0.00 0.14 0.00 0.07 +quartettes quartette NOM m p 0.00 0.14 0.00 0.07 +quartidi quartidi NOM m s 0.00 0.07 0.00 0.07 +quartier_maître quartier_maître NOM m s 0.84 0.27 0.83 0.27 +quartier quartier NOM m s 65.70 112.16 55.23 89.86 +quartier_maître quartier_maître NOM m p 0.84 0.27 0.01 0.00 +quartiers quartier NOM m p 65.70 112.16 10.48 22.30 +quarto quarto ADV 0.02 0.14 0.02 0.14 +quarts quart NOM m p 23.02 77.30 2.43 19.93 +quarté quarté NOM m s 0.01 0.07 0.01 0.07 +quartz quartz NOM m 0.45 1.69 0.45 1.69 +quasar quasar NOM m s 0.09 0.00 0.09 0.00 +quasi_agonie quasi_agonie NOM f s 0.00 0.07 0.00 0.07 +quasi_blasphème quasi_blasphème NOM m s 0.00 0.07 0.00 0.07 +quasi_bonheur quasi_bonheur NOM m s 0.00 0.07 0.00 0.07 +quasi_certitude quasi_certitude NOM f s 0.04 0.41 0.04 0.41 +quasi_chômage quasi_chômage NOM m s 0.02 0.00 0.02 0.00 +quasi_débutant quasi_débutant ADV 0.01 0.00 0.01 0.00 +quasi_décapitation quasi_décapitation NOM f s 0.01 0.00 0.01 0.00 +quasi_désertification quasi_désertification NOM f s 0.00 0.07 0.00 0.07 +quasi_facétieux quasi_facétieux ADJ m 0.01 0.00 0.01 0.00 +quasi_fiancé quasi_fiancé NOM f s 0.00 0.07 0.00 0.07 +quasi_futuriste quasi_futuriste ADJ m p 0.01 0.00 0.01 0.00 +quasi_génocide quasi_génocide NOM m s 0.01 0.00 0.01 0.00 +quasi_hérétique quasi_hérétique NOM s 0.00 0.07 0.00 0.07 +quasi_ignare quasi_ignare NOM s 0.00 0.07 0.00 0.07 +quasi_impossibilité quasi_impossibilité NOM f s 0.00 0.14 0.00 0.14 +quasi_impunité quasi_impunité NOM f s 0.00 0.07 0.00 0.07 +quasi_inconnu quasi_inconnu ADV 0.02 0.07 0.02 0.07 +quasi_indifférence quasi_indifférence NOM f s 0.00 0.07 0.00 0.07 +quasi_infirme quasi_infirme NOM s 0.00 0.07 0.00 0.07 +quasi_instantanée quasi_instantanée ADV 0.02 0.00 0.02 0.00 +quasi_jungienne quasi_jungienne NOM f s 0.01 0.00 0.01 0.00 +quasi_mariage quasi_mariage NOM m s 0.00 0.07 0.00 0.07 +quasi_maximum quasi_maximum ADV 0.01 0.00 0.01 0.00 +quasi_mendiant quasi_mendiant NOM m s 0.14 0.00 0.14 0.00 +quasi_miracle quasi_miracle NOM m s 0.00 0.07 0.00 0.07 +quasi_monopole quasi_monopole NOM m s 0.10 0.00 0.10 0.00 +quasi_morceau quasi_morceau NOM m s 0.00 0.07 0.00 0.07 +quasi_noyade quasi_noyade NOM f s 0.01 0.00 0.01 0.00 +quasi_nudité quasi_nudité NOM f s 0.00 0.14 0.00 0.14 +quasi_permanence quasi_permanence NOM f s 0.00 0.07 0.00 0.07 +quasi_protection quasi_protection NOM f s 0.00 0.07 0.00 0.07 +quasi_religieux quasi_religieux ADJ m s 0.01 0.07 0.01 0.07 +quasi_respect quasi_respect NOM m s 0.00 0.07 0.00 0.07 +quasi_totalité quasi_totalité NOM f s 0.16 0.88 0.16 0.88 +quasi_émeute quasi_émeute NOM f s 0.02 0.00 0.02 0.00 +quasi_unanime quasi_unanime ADJ s 0.00 0.14 0.00 0.14 +quasi_unanimité quasi_unanimité NOM f s 0.00 0.07 0.00 0.07 +quasi_équitable quasi_équitable ADJ m s 0.01 0.00 0.01 0.00 +quasi_veuvage quasi_veuvage NOM m s 0.00 0.07 0.00 0.07 +quasi_ville quasi_ville NOM f s 0.00 0.07 0.00 0.07 +quasi_voisines quasi_voisines ADV 0.00 0.07 0.00 0.07 +quasi quasi ADV 2.69 17.36 2.69 17.36 +quasiment quasiment ADV 7.66 6.62 7.66 6.62 +quasimodo quasimodo NOM f s 0.04 0.07 0.04 0.00 +quasimodos quasimodo NOM f p 0.04 0.07 0.00 0.07 +quat_zarts quat_zarts NOM m p 0.00 0.07 0.00 0.07 +quater quater ADV 0.01 0.00 0.01 0.00 +quaternaire quaternaire NOM m s 0.27 0.14 0.27 0.14 +quatorze quatorze ADJ:num 6.70 22.09 6.70 22.09 +quatorzième quatorzième NOM s 0.07 0.54 0.07 0.54 +quatrain quatrain NOM m s 0.23 0.68 0.22 0.14 +quatrains quatrain NOM m p 0.23 0.68 0.01 0.54 +quatre_feuilles quatre_feuilles NOM m 0.01 0.07 0.01 0.07 +quatre_heures quatre_heures NOM m 0.04 0.41 0.04 0.41 +quatre_mâts quatre_mâts NOM m 0.27 0.14 0.27 0.14 +quatre_quarts quatre_quarts NOM m 0.26 0.14 0.26 0.14 +quatre_saisons quatre_saisons NOM f 0.47 1.15 0.47 1.15 +quatre_vingt_cinq quatre_vingt_cinq ADJ:num 0.07 0.88 0.07 0.88 +quatre_vingt_deux quatre_vingt_deux ADJ:num 0.00 0.27 0.00 0.27 +quatre_vingt_dix_huit quatre_vingt_dix_huit ADJ:num 0.02 0.34 0.02 0.34 +quatre_vingt_dix_neuf quatre_vingt_dix_neuf ADJ:num 0.21 0.47 0.21 0.47 +quatre_vingt_dix_sept quatre_vingt_dix_sept ADJ:num 0.00 0.27 0.00 0.27 +quatre_vingt_dix quatre_vingt_dix NOM m 0.33 0.61 0.33 0.61 +quatre_vingt_dixième quatre_vingt_dixième ADJ 0.01 0.14 0.01 0.14 +quatre_vingt_douze quatre_vingt_douze ADJ:num 0.11 0.54 0.11 0.54 +quatre_vingt_douzième quatre_vingt_douzième ADJ 0.00 0.07 0.00 0.07 +quatre_vingt_huit quatre_vingt_huit ADJ:num 0.02 0.20 0.02 0.20 +quatre_vingt_neuf quatre_vingt_neuf ADJ:num 0.14 0.61 0.14 0.61 +quatre_vingt_onze quatre_vingt_onze ADJ:num 0.10 0.34 0.10 0.34 +quatre_vingt_quatorze quatre_vingt_quatorze ADJ:num 0.10 0.07 0.10 0.07 +quatre_vingt_quatre quatre_vingt_quatre ADJ:num 0.03 0.74 0.03 0.74 +quatre_vingt_quinze quatre_vingt_quinze ADJ:num 0.14 2.16 0.14 2.16 +quatre_vingt_seize quatre_vingt_seize ADJ:num 0.10 0.07 0.10 0.07 +quatre_vingt_sept quatre_vingt_sept ADJ:num 0.07 0.27 0.07 0.27 +quatre_vingt_six quatre_vingt_six ADJ:num 0.19 0.34 0.19 0.34 +quatre_vingt_treize quatre_vingt_treize ADJ:num 0.11 0.95 0.11 0.95 +quatre_vingt_treizième quatre_vingt_treizième ADJ 0.00 0.07 0.00 0.07 +quatre_vingt_trois quatre_vingt_trois ADJ:num 0.06 0.41 0.06 0.41 +quatre_vingt_un quatre_vingt_un ADJ:num 0.02 0.14 0.02 0.14 +quatre_vingt quatre_vingt ADJ:num 0.93 1.01 0.93 1.01 +quatre_vingtième quatre_vingtième ADJ 0.00 0.14 0.00 0.14 +quatre_vingtième quatre_vingtième NOM s 0.00 0.14 0.00 0.14 +quatre_vingts quatre_vingts ADJ:num 0.36 9.05 0.36 9.05 +quatre quatre ADJ:num 150.93 282.64 150.93 282.64 +quatrillion quatrillion NOM m s 0.01 0.00 0.01 0.00 +quatrième quatrième ADJ 8.65 15.74 8.65 15.74 +quatrièmement quatrièmement ADV 0.41 0.14 0.41 0.14 +quatrièmes quatrième NOM p 7.14 13.04 0.05 0.27 +quattrocento quattrocento NOM m s 0.10 0.27 0.10 0.27 +quatuor quatuor NOM m s 1.07 3.45 1.04 3.04 +quatuors quatuor NOM m p 1.07 3.45 0.03 0.41 +que que PRO:rel 4100.90 3315.95 3330.88 2975.34 +quechua quechua NOM m s 0.05 0.00 0.05 0.00 +quel quel ADJ:int m s 657.71 265.34 657.71 265.34 +quelconque quelconque ADJ s 10.08 28.85 9.79 27.57 +quelconques quelconque ADJ p 10.08 28.85 0.29 1.28 +quelle quelle ADJ:int f s 512.55 244.39 512.55 244.39 +quelles quelles ADJ:int f p 46.92 35.95 46.92 35.95 +quelqu_un quelqu_un PRO:ind s 629.00 128.92 629.00 128.92 +quelqu_une quelqu_une PRO:ind f s 0.08 0.61 0.08 0.61 +quelque quelque ADJ:ind s 884.61 557.77 884.61 557.77 +quelquefois quelquefois ADV 11.87 60.47 11.87 60.47 +quelques_unes quelques_unes PRO:ind f p 3.50 8.51 3.50 8.51 +quelques_uns quelques_uns PRO:ind m p 8.33 22.09 8.33 22.09 +quelques quelques ADJ:ind p 337.35 732.57 337.35 732.57 +quels quels ADJ:int m p 56.44 37.23 56.44 37.23 +quenelle quenelle NOM f s 0.35 0.74 0.19 0.00 +quenelles quenelle NOM f p 0.35 0.74 0.16 0.74 +quenotte quenotte NOM f s 0.18 0.74 0.00 0.20 +quenottes quenotte NOM f p 0.18 0.74 0.18 0.54 +quenouille quenouille NOM f s 0.23 0.74 0.22 0.47 +quenouilles quenouille NOM f p 0.23 0.74 0.01 0.27 +querella quereller VER 2.15 2.16 0.00 0.07 ind:pas:3s; +querellaient quereller VER 2.15 2.16 0.14 0.54 ind:imp:3p; +querellais quereller VER 2.15 2.16 0.00 0.07 ind:imp:1s; +querellait quereller VER 2.15 2.16 0.03 0.14 ind:imp:3s; +querellant quereller VER 2.15 2.16 0.01 0.00 par:pre; +querelle querelle NOM f s 12.84 12.77 10.63 6.42 +querellent quereller VER 2.15 2.16 0.14 0.20 ind:pre:3p; +quereller quereller VER 2.15 2.16 0.91 0.27 inf; +querelles querelle NOM f p 12.84 12.77 2.21 6.35 +querelleur querelleur ADJ m s 0.33 0.14 0.14 0.07 +querelleurs querelleur ADJ m p 0.33 0.14 0.19 0.07 +querelleuse querelleux ADJ f s 0.02 0.00 0.02 0.00 +querellez quereller VER 2.15 2.16 0.13 0.00 imp:pre:2p;ind:pre:2p; +querellons quereller VER 2.15 2.16 0.14 0.00 imp:pre:1p;ind:pre:1p; +querellèrent quereller VER 2.15 2.16 0.00 0.07 ind:pas:3p; +querellé quereller VER m s 2.15 2.16 0.05 0.07 par:pas; +querellée quereller VER f s 2.15 2.16 0.02 0.14 par:pas; +querellées quereller VER f p 2.15 2.16 0.11 0.00 par:pas; +querellés quereller VER m p 2.15 2.16 0.07 0.34 par:pas; +questeur questeur NOM m s 0.13 0.07 0.10 0.00 +questeurs questeur NOM m p 0.13 0.07 0.03 0.07 +question_clé question_clé NOM f s 0.02 0.00 0.02 0.00 +question_réponse question_réponse NOM f s 0.02 0.00 0.02 0.00 +question question NOM f s 411.82 328.45 293.63 232.50 +questionna questionner VER 6.30 15.88 0.01 2.84 ind:pas:3s; +questionnai questionner VER 6.30 15.88 0.01 0.47 ind:pas:1s; +questionnaient questionner VER 6.30 15.88 0.02 0.47 ind:imp:3p; +questionnaire questionnaire NOM m s 2.05 1.82 1.69 1.15 +questionnaires questionnaire NOM m p 2.05 1.82 0.36 0.68 +questionnais questionner VER 6.30 15.88 0.04 0.34 ind:imp:1s; +questionnait questionner VER 6.30 15.88 0.23 1.35 ind:imp:3s; +questionnant questionner VER 6.30 15.88 0.04 0.27 par:pre; +questionne questionner VER 6.30 15.88 1.48 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +questionnement questionnement NOM m s 0.36 0.14 0.32 0.07 +questionnements questionnement NOM m p 0.36 0.14 0.04 0.07 +questionnent questionner VER 6.30 15.88 0.08 0.41 ind:pre:3p; +questionner questionner VER 6.30 15.88 2.66 3.51 ind:pre:2p;inf; +questionnera questionner VER 6.30 15.88 0.08 0.07 ind:fut:3s; +questionnerai questionner VER 6.30 15.88 0.02 0.00 ind:fut:1s; +questionnerait questionner VER 6.30 15.88 0.00 0.14 cnd:pre:3s; +questionnerons questionner VER 6.30 15.88 0.01 0.07 ind:fut:1p; +questionneront questionner VER 6.30 15.88 0.01 0.00 ind:fut:3p; +questionneur questionneur NOM m s 0.03 0.81 0.03 0.34 +questionneurs questionneur NOM m p 0.03 0.81 0.00 0.27 +questionneuse questionneur NOM f s 0.03 0.81 0.00 0.20 +questionnez questionner VER 6.30 15.88 0.34 0.14 imp:pre:2p;ind:pre:2p; +questionnions questionner VER 6.30 15.88 0.00 0.14 ind:imp:1p; +questionnons questionner VER 6.30 15.88 0.01 0.07 ind:pre:1p; +questionnât questionner VER 6.30 15.88 0.00 0.07 sub:imp:3s; +questionnèrent questionner VER 6.30 15.88 0.00 0.14 ind:pas:3p; +questionné questionner VER m s 6.30 15.88 0.98 1.42 par:pas; +questionnée questionner VER f s 6.30 15.88 0.16 0.41 par:pas; +questionnés questionner VER m p 6.30 15.88 0.12 0.47 par:pas; +questions_réponse questions_réponse NOM f p 0.07 0.07 0.07 0.07 +questions question NOM f p 411.82 328.45 118.19 95.95 +questure questure NOM f s 0.10 0.00 0.10 0.00 +quetsche quetsche NOM f s 0.00 0.74 0.00 0.34 +quetsches quetsche NOM f p 0.00 0.74 0.00 0.41 +quette quette NOM f s 0.01 0.00 0.01 0.00 +quetzal quetzal NOM m s 0.01 0.00 0.01 0.00 +queue_d_aronde queue_d_aronde NOM f s 0.00 0.14 0.00 0.07 +queue_de_cheval queue_de_cheval NOM f s 0.14 0.00 0.14 0.00 +queue_de_pie queue_de_pie NOM f s 0.05 0.27 0.05 0.27 +queue queue NOM f s 41.59 57.84 38.93 51.49 +queue_d_aronde queue_d_aronde NOM f p 0.00 0.14 0.00 0.07 +queue_de_rat queue_de_rat NOM f p 0.00 0.07 0.00 0.07 +queues queue NOM f p 41.59 57.84 2.66 6.35 +queursoir queursoir NOM m s 0.00 0.07 0.00 0.07 +queutard queutard NOM m s 0.19 0.00 0.19 0.00 +queuté queuter VER m s 0.00 0.14 0.00 0.07 par:pas; +queutée queuter VER f s 0.00 0.14 0.00 0.07 par:pas; +qui_vive qui_vive ONO 0.00 0.14 0.00 0.14 +qui qui PRO:rel 5516.52 7923.24 5344.98 7897.91 +quibus quibus NOM m 0.00 0.20 0.00 0.20 +quiche quiche NOM f s 1.21 0.68 1.10 0.41 +quiches quiche NOM f p 1.21 0.68 0.11 0.27 +quichotte quichotte NOM m s 0.00 0.07 0.00 0.07 +quick quick NOM m s 0.27 0.20 0.27 0.20 +quiconque quiconque PRO:rel s 22.81 9.12 15.43 6.08 +quidam quidam NOM m s 0.70 2.23 0.66 1.89 +quidams quidam NOM m p 0.70 2.23 0.04 0.34 +quiet quiet ADJ m s 0.39 0.74 0.28 0.07 +quiets quiet ADJ m p 0.39 0.74 0.00 0.20 +quignon quignon NOM m s 0.25 2.43 0.11 2.16 +quignons quignon NOM m p 0.25 2.43 0.14 0.27 +quillai quiller VER 0.06 0.27 0.00 0.20 ind:pas:1s; +quillards quillard NOM m p 0.00 0.34 0.00 0.34 +quille quille NOM f s 2.89 5.81 1.49 2.57 +quiller quiller VER 0.06 0.27 0.05 0.00 inf; +quilles quille NOM f p 2.89 5.81 1.40 3.24 +quillon quillon NOM m s 0.00 0.20 0.00 0.07 +quillons quillon NOM m p 0.00 0.20 0.00 0.14 +quillée quiller VER f s 0.06 0.27 0.00 0.07 par:pas; +quimpe quimper VER 0.00 1.15 0.00 0.27 ind:pre:1s;ind:pre:3s; +quimpent quimper VER 0.00 1.15 0.00 0.07 ind:pre:3p; +quimper quimper VER 0.00 1.15 0.00 0.68 inf; +quimpé quimper VER m s 0.00 1.15 0.00 0.14 par:pas; +quincaille quincaille NOM f s 0.00 0.34 0.00 0.34 +quincaillerie quincaillerie NOM f s 1.97 2.91 1.89 2.70 +quincailleries quincaillerie NOM f p 1.97 2.91 0.08 0.20 +quincaillier quincaillier NOM m s 0.30 1.49 0.21 1.28 +quincailliers quincaillier NOM m p 0.30 1.49 0.09 0.07 +quincaillière quincaillier NOM f s 0.30 1.49 0.00 0.14 +quinconce quinconce NOM m s 0.01 1.42 0.00 1.22 +quinconces quinconce NOM m p 0.01 1.42 0.01 0.20 +quine quine NOM m s 0.23 0.34 0.23 0.34 +quinine quinine NOM f s 0.54 0.95 0.54 0.95 +quinium quinium NOM m s 0.00 0.07 0.00 0.07 +quinoa quinoa NOM m s 0.01 0.00 0.01 0.00 +quinqua quinqua NOM m s 0.00 0.20 0.00 0.20 +quinquagénaire quinquagénaire ADJ s 0.16 0.68 0.16 0.54 +quinquagénaires quinquagénaire NOM p 0.15 1.35 0.02 0.27 +quinquagésime quinquagésime NOM f s 0.00 0.07 0.00 0.07 +quinquennal quinquennal ADJ m s 0.26 0.34 0.26 0.34 +quinquennat quinquennat NOM m s 0.10 0.00 0.10 0.00 +quinquet quinquet NOM m s 0.25 2.30 0.04 0.34 +quinquets quinquet NOM m p 0.25 2.30 0.21 1.96 +quinquina quinquina NOM m s 0.00 0.54 0.00 0.54 +quint quint ADJ 0.20 0.20 0.20 0.20 +quintaine quintaine NOM f s 0.00 0.07 0.00 0.07 +quintal quintal NOM m s 0.56 1.01 0.19 0.68 +quintaux quintal NOM m p 0.56 1.01 0.38 0.34 +quinte quinte NOM f s 1.42 4.86 1.25 3.85 +quintes quinte NOM f p 1.42 4.86 0.16 1.01 +quintessence quintessence NOM f s 0.43 1.22 0.43 1.22 +quintessencié quintessencié ADJ m s 0.00 0.41 0.00 0.27 +quintessenciée quintessencié ADJ f s 0.00 0.41 0.00 0.07 +quintessenciées quintessencié ADJ f p 0.00 0.41 0.00 0.07 +quintet quintet NOM m s 0.05 0.00 0.05 0.00 +quintette quintette NOM m s 0.09 1.22 0.09 1.15 +quintettes quintette NOM m p 0.09 1.22 0.00 0.07 +quinteux quinteux ADJ m s 0.00 0.20 0.00 0.20 +quintidi quintidi NOM m s 0.00 0.07 0.00 0.07 +quinto quinto ADV 0.22 0.00 0.22 0.00 +quintolet quintolet NOM m s 0.02 0.00 0.02 0.00 +quinton quinton NOM m s 0.01 0.00 0.01 0.00 +quinté quinté NOM m s 0.14 0.00 0.14 0.00 +quintupla quintupler VER 0.19 0.14 0.00 0.07 ind:pas:3s; +quintuple quintuple ADJ s 0.03 0.20 0.03 0.07 +quintuples quintuple ADJ f p 0.03 0.20 0.00 0.14 +quintuplé quintupler VER m s 0.19 0.14 0.15 0.00 par:pas; +quintuplées quintuplée NOM f p 0.08 0.14 0.08 0.14 +quintuplés quintuplé NOM m p 0.35 0.07 0.35 0.07 +quinzaine quinzaine NOM f s 2.02 11.89 2.01 11.69 +quinzaines quinzaine NOM f p 2.02 11.89 0.01 0.20 +quinze quinze ADJ:num 21.92 94.80 21.92 94.80 +quinzième quinzième NOM s 0.28 0.74 0.28 0.74 +quipos quipo NOM m p 0.00 0.07 0.00 0.07 +quiproquo quiproquo NOM m s 0.38 0.88 0.37 0.61 +quiproquos quiproquo NOM m p 0.38 0.88 0.01 0.27 +quipu quipu NOM m s 0.00 0.07 0.00 0.07 +quiquette quiquette NOM f s 0.00 0.07 0.00 0.07 +quiqui quiqui NOM m s 0.00 0.41 0.00 0.41 +quiscale quiscale NOM m s 0.11 0.00 0.11 0.00 +quite quite NOM m s 0.47 0.07 0.47 0.07 +quiète quiet ADJ f s 0.39 0.74 0.00 0.41 +quiètement quiètement ADV 0.00 0.14 0.00 0.14 +quiètes quiet ADJ f p 0.39 0.74 0.10 0.07 +quitta quitter VER 276.23 318.72 1.82 27.30 ind:pas:3s; +quittai quitter VER 276.23 318.72 0.23 6.62 ind:pas:1s; +quittaient quitter VER 276.23 318.72 0.36 7.36 ind:imp:3p; +quittais quitter VER 276.23 318.72 1.37 3.85 ind:imp:1s;ind:imp:2s; +quittait quitter VER 276.23 318.72 2.88 24.93 ind:imp:3s; +quittance quittance NOM f s 0.55 1.15 0.40 0.54 +quittances quittance NOM f p 0.55 1.15 0.14 0.61 +quittant quitter VER 276.23 318.72 3.60 18.38 par:pre; +quittas quitter VER 276.23 318.72 0.00 0.07 ind:pas:2s; +quittassent quitter VER 276.23 318.72 0.00 0.07 sub:imp:3p; +quitte quitter VER 276.23 318.72 49.07 32.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +quittent quitter VER 276.23 318.72 4.39 5.47 ind:pre:3p; +quitter quitter VER 276.23 318.72 88.02 85.95 ind:pre:2p;inf; +quittera quitter VER 276.23 318.72 4.62 2.09 ind:fut:3s; +quitterai quitter VER 276.23 318.72 6.18 1.89 ind:fut:1s; +quitteraient quitter VER 276.23 318.72 0.02 1.08 cnd:pre:3p; +quitterais quitter VER 276.23 318.72 1.73 1.01 cnd:pre:1s;cnd:pre:2s; +quitterait quitter VER 276.23 318.72 0.78 2.57 cnd:pre:3s; +quitteras quitter VER 276.23 318.72 1.75 0.47 ind:fut:2s; +quitterez quitter VER 276.23 318.72 1.11 0.41 ind:fut:2p; +quitteriez quitter VER 276.23 318.72 0.34 0.07 cnd:pre:2p; +quitterions quitter VER 276.23 318.72 0.02 0.07 cnd:pre:1p; +quitterons quitter VER 276.23 318.72 0.63 0.47 ind:fut:1p; +quitteront quitter VER 276.23 318.72 0.40 0.41 ind:fut:3p; +quittes quitter VER 276.23 318.72 6.03 1.42 ind:pre:2s;sub:pre:2s; +quittez quitter VER 276.23 318.72 19.72 1.96 imp:pre:2p;ind:pre:2p; +quittiez quitter VER 276.23 318.72 1.19 0.27 ind:imp:2p;sub:pre:2p; +quittions quitter VER 276.23 318.72 0.39 2.77 ind:imp:1p;sub:pre:1p; +quittâmes quitter VER 276.23 318.72 0.16 2.16 ind:pas:1p; +quittons quitter VER 276.23 318.72 3.44 1.96 imp:pre:1p;ind:pre:1p; +quittât quitter VER 276.23 318.72 0.01 1.01 sub:imp:3s; +quittèrent quitter VER 276.23 318.72 0.38 6.69 ind:pas:3p; +quitté quitter VER m s 276.23 318.72 62.92 60.14 par:pas; +quittée quitter VER f s 276.23 318.72 7.40 8.85 par:pas; +quittées quitter VER f p 276.23 318.72 0.36 0.95 par:pas; +quittés quitter VER m p 276.23 318.72 4.95 7.97 par:pas; +quitus quitus NOM m 0.14 0.07 0.14 0.07 +quiétisme quiétisme NOM m s 0.00 0.34 0.00 0.34 +quiétiste quiétiste NOM s 0.00 0.07 0.00 0.07 +quiétude quiétude NOM f s 0.64 5.14 0.64 5.07 +quiétudes quiétude NOM f p 0.64 5.14 0.00 0.07 +quiz quiz NOM m 0.53 0.00 0.53 0.00 +quoaillant quoailler VER 0.00 0.07 0.00 0.07 par:pre; +quoi quoi PRO:rel 923.03 380.07 904.12 376.89 +quoique quoique CON 11.68 19.05 11.68 19.05 +quolibet quolibet NOM m s 0.04 2.91 0.00 0.14 +quolibets quolibet NOM m p 0.04 2.91 0.04 2.77 +quorum quorum NOM m s 0.67 0.20 0.67 0.20 +quota quota NOM m s 2.12 0.47 1.39 0.27 +quotas quota NOM m p 2.12 0.47 0.73 0.20 +quote_part quote_part NOM f s 0.03 0.47 0.03 0.47 +quotidien quotidien ADJ m s 10.15 37.43 3.66 10.47 +quotidienne quotidien ADJ f s 10.15 37.43 3.91 17.30 +quotidiennement quotidiennement ADV 0.97 4.80 0.97 4.80 +quotidiennes quotidien ADJ f p 10.15 37.43 1.29 4.80 +quotidienneté quotidienneté NOM f s 0.00 0.14 0.00 0.14 +quotidiens quotidien ADJ m p 10.15 37.43 1.30 4.86 +quotient quotient NOM m s 0.42 0.61 0.42 0.47 +quotients quotient NOM m p 0.42 0.61 0.00 0.14 +quotité quotité NOM f s 0.00 0.07 0.00 0.07 +québécois québécois ADJ m s 0.25 0.07 0.11 0.00 +québécoise québécois ADJ f s 0.25 0.07 0.14 0.07 +quémanda quémander VER 0.60 2.70 0.00 0.07 ind:pas:3s; +quémandaient quémander VER 0.60 2.70 0.00 0.27 ind:imp:3p; +quémandait quémander VER 0.60 2.70 0.01 0.20 ind:imp:3s; +quémandant quémander VER 0.60 2.70 0.00 0.47 par:pre; +quémande quémander VER 0.60 2.70 0.03 0.14 ind:pre:3s; +quémandent quémander VER 0.60 2.70 0.12 0.07 ind:pre:3p; +quémander quémander VER 0.60 2.70 0.41 1.42 inf; +quémandeur quémandeur NOM m s 0.32 0.88 0.02 0.41 +quémandeurs quémandeur NOM m p 0.32 0.88 0.30 0.27 +quémandeuse quémandeur NOM f s 0.32 0.88 0.00 0.07 +quémandeuses quémandeur NOM f p 0.32 0.88 0.00 0.14 +quémandons quémander VER 0.60 2.70 0.01 0.00 ind:pre:1p; +quémandé quémander VER m s 0.60 2.70 0.02 0.07 par:pas; +quéquette quéquette NOM f s 1.30 2.36 1.27 2.09 +quéquettes quéquette NOM f p 1.30 2.36 0.03 0.27 +quérir quérir VER 0.65 1.76 0.65 1.76 inf; +quêta quêter VER 0.21 3.38 0.00 0.20 ind:pas:3s; +quêtai quêter VER 0.21 3.38 0.00 0.07 ind:pas:1s; +quêtaient quêter VER 0.21 3.38 0.00 0.27 ind:imp:3p; +quêtais quêter VER 0.21 3.38 0.01 0.20 ind:imp:1s;ind:imp:2s; +quêtait quêter VER 0.21 3.38 0.00 0.41 ind:imp:3s; +quêtant quêter VER 0.21 3.38 0.01 0.88 par:pre; +quête quête NOM f s 10.24 14.53 9.97 13.92 +quêtent quêter VER 0.21 3.38 0.00 0.14 ind:pre:3p; +quêter quêter VER 0.21 3.38 0.13 0.88 inf; +quêtes quête NOM f p 10.24 14.53 0.28 0.61 +quêteur quêteur NOM m s 0.04 0.81 0.04 0.20 +quêteurs quêteur NOM m p 0.04 0.81 0.00 0.34 +quêteuse quêteur NOM f s 0.04 0.81 0.00 0.27 +quêtez quêter VER 0.21 3.38 0.00 0.07 imp:pre:2p; +quêté quêter VER m s 0.21 3.38 0.00 0.07 par:pas; +quêtées quêter VER f p 0.21 3.38 0.00 0.07 par:pas; +rîmes rire VER 140.25 320.54 0.01 0.20 ind:pas:1p; +rît rire VER 140.25 320.54 0.00 0.07 sub:imp:3s; +röntgens röntgen NOM m p 0.02 0.00 0.02 0.00 +rôda rôder VER 5.76 20.07 0.00 0.07 ind:pas:3s; +rôdai rôder VER 5.76 20.07 0.00 0.20 ind:pas:1s; +rôdaient rôder VER 5.76 20.07 0.06 2.36 ind:imp:3p; +rôdailler rôdailler VER 0.00 0.20 0.00 0.20 inf; +rôdais rôder VER 5.76 20.07 0.07 0.47 ind:imp:1s;ind:imp:2s; +rôdait rôder VER 5.76 20.07 0.35 3.51 ind:imp:3s; +rôdant rôder VER 5.76 20.07 0.44 1.28 par:pre; +rôde rôder VER 5.76 20.07 1.93 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rôdent rôder VER 5.76 20.07 0.61 1.49 ind:pre:3p; +rôder rôder VER 5.76 20.07 1.63 5.41 inf; +rôdera rôder VER 5.76 20.07 0.01 0.07 ind:fut:3s; +rôderai rôder VER 5.76 20.07 0.00 0.07 ind:fut:1s; +rôderait rôder VER 5.76 20.07 0.00 0.07 cnd:pre:3s; +rôdes rôder VER 5.76 20.07 0.23 0.20 ind:pre:2s; +rôdeur rôdeur NOM m s 1.37 2.57 0.94 1.28 +rôdeurs rôdeur NOM m p 1.37 2.57 0.40 1.08 +rôdeuse rôdeur NOM f s 1.37 2.57 0.03 0.14 +rôdeuses rôdeur NOM f p 1.37 2.57 0.00 0.07 +rôdez rôder VER 5.76 20.07 0.04 0.00 imp:pre:2p;ind:pre:2p; +rôdiez rôder VER 5.76 20.07 0.01 0.00 ind:imp:2p; +rôdions rôder VER 5.76 20.07 0.14 0.14 ind:imp:1p; +rôdâmes rôder VER 5.76 20.07 0.00 0.07 ind:pas:1p; +rôdèrent rôder VER 5.76 20.07 0.00 0.14 ind:pas:3p; +rôdé rôder VER m s 5.76 20.07 0.20 0.68 par:pas; +rôdée rôder VER f s 5.76 20.07 0.01 0.14 par:pas; +rôdés rôder VER m p 5.76 20.07 0.01 0.00 par:pas; +rôle_titre rôle_titre NOM m s 0.01 0.00 0.01 0.00 +rôle rôle NOM m s 69.38 96.96 61.20 88.51 +rôles rôle NOM m p 69.38 96.96 8.18 8.45 +rônier rônier NOM m s 0.01 0.07 0.01 0.00 +rôniers rônier NOM m p 0.01 0.07 0.00 0.07 +rônin rônin NOM m s 0.10 0.00 0.07 0.00 +rônins rônin NOM m p 0.10 0.00 0.03 0.00 +rôt rôt NOM m s 0.05 0.07 0.04 0.00 +rôti rôti NOM m s 4.33 3.24 4.02 2.30 +rôtie rôti ADJ f s 2.13 3.78 0.33 0.41 +rôties rôti ADJ f p 2.13 3.78 0.15 0.34 +rôtir rôtir VER 2.90 5.27 1.73 2.16 inf; +rôtiront rôtir VER 2.90 5.27 0.00 0.07 ind:fut:3p; +rôtis rôti NOM m p 4.33 3.24 0.30 0.95 +rôtissaient rôtir VER 2.90 5.27 0.03 0.00 ind:imp:3p; +rôtissait rôtir VER 2.90 5.27 0.00 0.34 ind:imp:3s; +rôtissant rôtir VER 2.90 5.27 0.01 0.07 par:pre; +rôtissent rôtir VER 2.90 5.27 0.20 0.14 ind:pre:3p; +rôtisserie rôtisserie NOM f s 0.35 0.27 0.35 0.27 +rôtisseur rôtisseur NOM m s 0.07 0.20 0.05 0.14 +rôtisseurs rôtisseur NOM m p 0.07 0.20 0.01 0.00 +rôtisseuse rôtisseur NOM f s 0.07 0.20 0.01 0.00 +rôtisseuses rôtisseur NOM f p 0.07 0.20 0.00 0.07 +rôtissez rôtir VER 2.90 5.27 0.01 0.00 imp:pre:2p; +rôtissions rôtir VER 2.90 5.27 0.01 0.00 ind:imp:1p; +rôtissoire rôtissoire NOM f s 0.04 0.41 0.04 0.27 +rôtissoires rôtissoire NOM f p 0.04 0.41 0.00 0.14 +rôtit rôtir VER 2.90 5.27 0.20 0.07 ind:pre:3s;ind:pas:3s; +rôts rôt NOM m p 0.05 0.07 0.01 0.07 +ra ra NOM m 3.63 3.45 3.63 3.45 +raïa raïa NOM m s 0.10 0.00 0.10 0.00 +raïs raïs NOM m 0.00 0.14 0.00 0.14 +rab rab NOM m s 1.92 1.76 1.92 1.69 +rabais rabais NOM m 1.57 1.55 1.57 1.55 +rabaissa rabaisser VER 3.79 3.38 0.00 0.20 ind:pas:3s; +rabaissaient rabaisser VER 3.79 3.38 0.00 0.07 ind:imp:3p; +rabaissais rabaisser VER 3.79 3.38 0.04 0.07 ind:imp:1s; +rabaissait rabaisser VER 3.79 3.38 0.10 0.34 ind:imp:3s; +rabaissant rabaisser VER 3.79 3.38 0.04 0.34 par:pre; +rabaisse rabaisser VER 3.79 3.38 0.69 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rabaissement rabaissement NOM m s 0.01 0.07 0.01 0.07 +rabaissent rabaisser VER 3.79 3.38 0.15 0.14 ind:pre:3p; +rabaisser rabaisser VER 3.79 3.38 1.65 1.22 inf; +rabaissera rabaisser VER 3.79 3.38 0.02 0.00 ind:fut:3s; +rabaisserait rabaisser VER 3.79 3.38 0.12 0.00 cnd:pre:3s; +rabaisses rabaisser VER 3.79 3.38 0.17 0.00 ind:pre:2s; +rabaissez rabaisser VER 3.79 3.38 0.26 0.07 imp:pre:2p;ind:pre:2p; +rabaissé rabaisser VER m s 3.79 3.38 0.32 0.27 par:pas; +rabaissée rabaisser VER f s 3.79 3.38 0.23 0.14 par:pas; +rabaissées rabaisser VER f p 3.79 3.38 0.00 0.07 par:pas; +raban raban NOM m s 0.32 0.00 0.09 0.00 +rabane rabane NOM f s 0.00 0.14 0.00 0.07 +rabanes rabane NOM f p 0.00 0.14 0.00 0.07 +rabans raban NOM m p 0.32 0.00 0.24 0.00 +rabat_joie rabat_joie ADJ 0.91 0.14 0.91 0.14 +rabat rabattre VER 2.21 21.76 0.32 2.97 ind:pre:3s; +rabats rabattre VER 2.21 21.76 0.21 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rabattable rabattable ADJ s 0.01 0.00 0.01 0.00 +rabattaient rabattre VER 2.21 21.76 0.00 0.68 ind:imp:3p; +rabattais rabattre VER 2.21 21.76 0.01 0.07 ind:imp:1s; +rabattait rabattre VER 2.21 21.76 0.01 2.16 ind:imp:3s; +rabattant rabattre VER 2.21 21.76 0.00 0.68 par:pre; +rabatte rabattre VER 2.21 21.76 0.04 0.27 sub:pre:1s;sub:pre:3s; +rabattent rabattre VER 2.21 21.76 0.04 0.81 ind:pre:3p; +rabatteur rabatteur NOM m s 0.68 1.82 0.22 0.47 +rabatteurs rabatteur NOM m p 0.68 1.82 0.45 0.95 +rabatteuse rabatteur NOM f s 0.68 1.82 0.01 0.41 +rabatteuses rabatteuse NOM f p 0.01 0.00 0.01 0.00 +rabattez rabattre VER 2.21 21.76 0.11 0.07 imp:pre:2p;ind:pre:2p; +rabattions rabattre VER 2.21 21.76 0.00 0.07 ind:imp:1p; +rabattirent rabattre VER 2.21 21.76 0.00 0.34 ind:pas:3p; +rabattis rabattre VER 2.21 21.76 0.00 0.27 ind:pas:1s; +rabattit rabattre VER 2.21 21.76 0.01 2.91 ind:pas:3s; +rabattra rabattre VER 2.21 21.76 0.04 0.14 ind:fut:3s; +rabattraient rabattre VER 2.21 21.76 0.00 0.07 cnd:pre:3p; +rabattrait rabattre VER 2.21 21.76 0.00 0.14 cnd:pre:3s; +rabattras rabattre VER 2.21 21.76 0.00 0.07 ind:fut:2s; +rabattre rabattre VER 2.21 21.76 1.01 4.46 inf; +rabattrons rabattre VER 2.21 21.76 0.00 0.07 ind:fut:1p; +rabattu rabattre VER m s 2.21 21.76 0.28 3.11 par:pas; +rabattue rabattu ADJ f s 0.14 2.03 0.12 0.07 +rabattues rabattre VER f p 2.21 21.76 0.03 0.34 par:pas; +rabattus rabattre VER m p 2.21 21.76 0.07 0.41 par:pas; +rabbi rabbi NOM m s 4.83 0.74 4.83 0.74 +rabbin rabbin NOM m s 9.36 7.57 9.04 6.35 +rabbinat rabbinat NOM m s 0.00 0.20 0.00 0.20 +rabbinique rabbinique ADJ s 0.01 0.41 0.01 0.34 +rabbiniques rabbinique ADJ m p 0.01 0.41 0.00 0.07 +rabbins rabbin NOM m p 9.36 7.57 0.32 1.22 +rabe rabe NOM m s 0.05 0.14 0.05 0.07 +rabelaisien rabelaisien ADJ m s 0.00 0.68 0.00 0.27 +rabelaisienne rabelaisien ADJ f s 0.00 0.68 0.00 0.27 +rabelaisiennes rabelaisien ADJ f p 0.00 0.68 0.00 0.07 +rabelaisiens rabelaisien ADJ m p 0.00 0.68 0.00 0.07 +rabes rabe NOM m p 0.05 0.14 0.00 0.07 +rabibochage rabibochage NOM m s 0.00 0.14 0.00 0.14 +rabiboche rabibocher VER 0.84 0.54 0.06 0.00 ind:pre:1s;ind:pre:3s; +rabibochent rabibocher VER 0.84 0.54 0.01 0.00 ind:pre:3p; +rabibocher rabibocher VER 0.84 0.54 0.17 0.41 inf; +rabibocherez rabibocher VER 0.84 0.54 0.00 0.07 ind:fut:2p; +rabiboché rabibocher VER m s 0.84 0.54 0.40 0.00 par:pas; +rabibochées rabibocher VER f p 0.84 0.54 0.01 0.00 par:pas; +rabibochés rabibocher VER m p 0.84 0.54 0.19 0.07 par:pas; +rabiot rabiot NOM m s 0.06 0.88 0.06 0.88 +rabiotait rabioter VER 0.00 0.27 0.00 0.07 ind:imp:3s; +rabioter rabioter VER 0.00 0.27 0.00 0.20 inf; +rabique rabique ADJ f s 0.00 0.14 0.00 0.14 +rabâcha rabâcher VER 1.46 4.32 0.00 0.14 ind:pas:3s; +rabâchage rabâchage NOM m s 0.10 0.34 0.10 0.20 +rabâchages rabâchage NOM m p 0.10 0.34 0.00 0.14 +rabâchaient rabâcher VER 1.46 4.32 0.00 0.20 ind:imp:3p; +rabâchais rabâcher VER 1.46 4.32 0.01 0.00 ind:imp:2s; +rabâchait rabâcher VER 1.46 4.32 0.01 0.61 ind:imp:3s; +rabâchant rabâcher VER 1.46 4.32 0.15 0.14 par:pre; +rabâche rabâcher VER 1.46 4.32 0.32 0.81 ind:pre:1s;ind:pre:3s; +rabâchent rabâcher VER 1.46 4.32 0.04 0.00 ind:pre:3p; +rabâcher rabâcher VER 1.46 4.32 0.68 1.01 inf; +rabâcherait rabâcher VER 1.46 4.32 0.00 0.07 cnd:pre:3s; +rabâches rabâcher VER 1.46 4.32 0.15 0.54 ind:pre:2s; +rabâcheur rabâcheur ADJ m s 0.01 0.00 0.01 0.00 +rabâché rabâcher VER m s 1.46 4.32 0.12 0.34 par:pas; +rabâchée rabâcher VER f s 1.46 4.32 0.00 0.07 par:pas; +rabâchées rabâcher VER f p 1.46 4.32 0.00 0.41 par:pas; +rabonnir rabonnir VER 0.00 0.07 0.00 0.07 inf; +rabot rabot NOM m s 0.01 1.28 0.01 0.95 +rabotage rabotage NOM m s 0.00 0.14 0.00 0.14 +rabotais raboter VER 0.15 2.91 0.00 0.07 ind:imp:1s; +rabotait raboter VER 0.15 2.91 0.00 0.47 ind:imp:3s; +rabotant raboter VER 0.15 2.91 0.00 0.20 par:pre; +rabotent raboter VER 0.15 2.91 0.10 0.20 ind:pre:3p; +raboter raboter VER 0.15 2.91 0.03 0.41 inf; +raboteur raboteur NOM m s 0.01 0.07 0.01 0.07 +raboteuse raboteux ADJ f s 0.10 0.88 0.00 0.34 +raboteuses raboteux ADJ f p 0.10 0.88 0.00 0.07 +raboteux raboteux ADJ m 0.10 0.88 0.10 0.47 +rabotin rabotin NOM m s 0.00 0.34 0.00 0.34 +rabots rabot NOM m p 0.01 1.28 0.00 0.34 +raboté raboter VER m s 0.15 2.91 0.01 0.34 par:pas; +rabotée raboter VER f s 0.15 2.91 0.00 0.34 par:pas; +rabotées raboter VER f p 0.15 2.91 0.00 0.41 par:pas; +rabotés raboter VER m p 0.15 2.91 0.01 0.47 par:pas; +rabougri rabougri ADJ m s 0.25 3.38 0.19 1.55 +rabougrie rabougri ADJ f s 0.25 3.38 0.02 0.27 +rabougries rabougri ADJ f p 0.25 3.38 0.01 0.20 +rabougrir rabougrir VER 0.19 0.95 0.16 0.07 inf; +rabougris rabougri ADJ m p 0.25 3.38 0.03 1.35 +rabougrissent rabougrir VER 0.19 0.95 0.00 0.07 ind:pre:3p; +rabougrit rabougrir VER 0.19 0.95 0.00 0.20 ind:pre:3s; +rabouillères rabouiller NOM f p 0.00 0.07 0.00 0.07 +rabouin rabouin NOM m s 0.00 0.07 0.00 0.07 +rabouler rabouler VER 0.01 0.00 0.01 0.00 inf; +rabouter rabouter VER 0.00 0.14 0.00 0.07 inf; +rabouté rabouter VER m s 0.00 0.14 0.00 0.07 par:pas; +rabroua rabrouer VER 0.40 2.84 0.00 0.20 ind:pas:3s; +rabrouai rabrouer VER 0.40 2.84 0.00 0.07 ind:pas:1s; +rabrouaient rabrouer VER 0.40 2.84 0.00 0.14 ind:imp:3p; +rabrouait rabrouer VER 0.40 2.84 0.03 0.34 ind:imp:3s; +rabrouant rabrouer VER 0.40 2.84 0.00 0.14 par:pre; +rabroue rabrouer VER 0.40 2.84 0.05 0.20 ind:pre:1s;ind:pre:3s; +rabrouer rabrouer VER 0.40 2.84 0.04 0.68 inf; +rabrouât rabrouer VER 0.40 2.84 0.00 0.07 sub:imp:3s; +rabrouèrent rabrouer VER 0.40 2.84 0.00 0.07 ind:pas:3p; +rabroué rabrouer VER m s 0.40 2.84 0.05 0.41 par:pas; +rabrouée rabrouer VER f s 0.40 2.84 0.23 0.54 par:pas; +rabs rab NOM m p 1.92 1.76 0.00 0.07 +rac rac ADJ 0.00 0.95 0.00 0.95 +racaille racaille NOM f s 6.30 2.97 5.67 2.97 +racailles racaille NOM f p 6.30 2.97 0.62 0.00 +raccommoda raccommoder VER 0.68 3.04 0.00 0.14 ind:pas:3s; +raccommodage raccommodage NOM m s 0.04 0.61 0.04 0.47 +raccommodages raccommodage NOM m p 0.04 0.61 0.00 0.14 +raccommodaient raccommoder VER 0.68 3.04 0.00 0.07 ind:imp:3p; +raccommodait raccommoder VER 0.68 3.04 0.01 0.41 ind:imp:3s; +raccommodant raccommoder VER 0.68 3.04 0.01 0.07 par:pre; +raccommode raccommoder VER 0.68 3.04 0.18 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccommodements raccommodement NOM m p 0.00 0.07 0.00 0.07 +raccommodent raccommoder VER 0.68 3.04 0.14 0.00 ind:pre:3p; +raccommoder raccommoder VER 0.68 3.04 0.25 1.22 inf; +raccommodera raccommoder VER 0.68 3.04 0.00 0.07 ind:fut:3s; +raccommoderai raccommoder VER 0.68 3.04 0.02 0.00 ind:fut:1s; +raccommodeurs raccommodeur NOM m p 0.00 0.07 0.00 0.07 +raccommodez raccommoder VER 0.68 3.04 0.00 0.07 ind:pre:2p; +raccommodions raccommoder VER 0.68 3.04 0.01 0.00 ind:imp:1p; +raccommodé raccommoder VER m s 0.68 3.04 0.04 0.54 par:pas; +raccommodée raccommoder VER f s 0.68 3.04 0.01 0.14 par:pas; +raccommodées raccommoder VER f p 0.68 3.04 0.00 0.07 par:pas; +raccommodés raccommoder VER m p 0.68 3.04 0.02 0.07 par:pas; +raccompagna raccompagner VER 25.90 14.39 0.01 2.09 ind:pas:3s; +raccompagnai raccompagner VER 25.90 14.39 0.00 0.34 ind:pas:1s; +raccompagnaient raccompagner VER 25.90 14.39 0.00 0.20 ind:imp:3p; +raccompagnais raccompagner VER 25.90 14.39 0.34 0.41 ind:imp:1s;ind:imp:2s; +raccompagnait raccompagner VER 25.90 14.39 0.30 1.42 ind:imp:3s; +raccompagnant raccompagner VER 25.90 14.39 0.16 0.74 par:pre; +raccompagne raccompagner VER 25.90 14.39 11.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccompagnent raccompagner VER 25.90 14.39 0.04 0.14 ind:pre:3p; +raccompagner raccompagner VER 25.90 14.39 6.60 3.65 inf; +raccompagnera raccompagner VER 25.90 14.39 0.51 0.07 ind:fut:3s; +raccompagnerai raccompagner VER 25.90 14.39 0.60 0.00 ind:fut:1s; +raccompagnerais raccompagner VER 25.90 14.39 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +raccompagnerait raccompagner VER 25.90 14.39 0.01 0.34 cnd:pre:3s; +raccompagneras raccompagner VER 25.90 14.39 0.02 0.07 ind:fut:2s; +raccompagnerez raccompagner VER 25.90 14.39 0.00 0.07 ind:fut:2p; +raccompagnes raccompagner VER 25.90 14.39 0.71 0.14 ind:pre:2s; +raccompagnez raccompagner VER 25.90 14.39 1.52 0.14 imp:pre:2p;ind:pre:2p; +raccompagnons raccompagner VER 25.90 14.39 0.23 0.00 imp:pre:1p;ind:pre:1p; +raccompagnèrent raccompagner VER 25.90 14.39 0.00 0.20 ind:pas:3p; +raccompagné raccompagner VER m s 25.90 14.39 1.16 1.08 par:pas; +raccompagnée raccompagner VER f s 25.90 14.39 1.65 0.61 par:pas; +raccompagnés raccompagner VER m p 25.90 14.39 0.00 0.14 par:pas; +raccord raccord NOM m s 1.02 1.28 0.81 0.68 +raccordaient raccorder VER 0.73 2.64 0.02 0.14 ind:imp:3p; +raccordait raccorder VER 0.73 2.64 0.00 0.41 ind:imp:3s; +raccordant raccorder VER 0.73 2.64 0.03 0.14 par:pre; +raccorde raccorder VER 0.73 2.64 0.13 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raccordement raccordement NOM m s 0.20 0.27 0.09 0.14 +raccordements raccordement NOM m p 0.20 0.27 0.11 0.14 +raccordent raccorder VER 0.73 2.64 0.00 0.14 ind:pre:3p; +raccorder raccorder VER 0.73 2.64 0.21 0.61 inf; +raccorderait raccorder VER 0.73 2.64 0.00 0.07 cnd:pre:3s; +raccordez raccorder VER 0.73 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +raccords raccord NOM m p 1.02 1.28 0.21 0.61 +raccordé raccorder VER m s 0.73 2.64 0.23 0.41 par:pas; +raccordée raccorder VER f s 0.73 2.64 0.01 0.07 par:pas; +raccordées raccorder VER f p 0.73 2.64 0.01 0.00 par:pas; +raccordés raccorder VER m p 0.73 2.64 0.06 0.14 par:pas; +raccourci raccourci NOM m s 5.78 4.32 4.57 3.24 +raccourcie raccourcir VER f s 2.46 5.95 0.16 0.54 par:pas; +raccourcies raccourcir VER f p 2.46 5.95 0.01 0.07 par:pas; +raccourcir raccourcir VER 2.46 5.95 1.09 1.62 inf; +raccourcira raccourcir VER 2.46 5.95 0.04 0.07 ind:fut:3s; +raccourciras raccourcir VER 2.46 5.95 0.01 0.00 ind:fut:2s; +raccourcirons raccourcir VER 2.46 5.95 0.00 0.07 ind:fut:1p; +raccourcis raccourci NOM m p 5.78 4.32 1.21 1.08 +raccourcissaient raccourcir VER 2.46 5.95 0.00 0.20 ind:imp:3p; +raccourcissait raccourcir VER 2.46 5.95 0.01 0.20 ind:imp:3s; +raccourcissant raccourcir VER 2.46 5.95 0.10 0.61 par:pre; +raccourcisse raccourcir VER 2.46 5.95 0.01 0.07 sub:pre:1s;sub:pre:3s; +raccourcissement raccourcissement NOM m s 0.01 0.27 0.01 0.27 +raccourcissent raccourcir VER 2.46 5.95 0.14 0.54 ind:pre:3p; +raccourcit raccourcir VER 2.46 5.95 0.23 0.68 ind:pre:3s;ind:pas:3s; +raccroc raccroc NOM m s 0.00 0.47 0.00 0.34 +raccrocha raccrocher VER 28.09 26.08 0.02 5.07 ind:pas:3s; +raccrochage raccrochage NOM m s 0.01 0.14 0.01 0.07 +raccrochages raccrochage NOM m p 0.01 0.14 0.00 0.07 +raccrochai raccrocher VER 28.09 26.08 0.01 1.42 ind:pas:1s; +raccrochaient raccrocher VER 28.09 26.08 0.01 0.20 ind:imp:3p; +raccrochais raccrocher VER 28.09 26.08 0.12 0.27 ind:imp:1s;ind:imp:2s; +raccrochait raccrocher VER 28.09 26.08 0.29 0.95 ind:imp:3s; +raccrochant raccrocher VER 28.09 26.08 0.04 1.22 par:pre; +raccroche raccrocher VER 28.09 26.08 10.58 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +raccrochent raccrocher VER 28.09 26.08 0.49 0.14 ind:pre:3p; +raccrocher raccrocher VER 28.09 26.08 5.41 5.27 inf; +raccrochera raccrocher VER 28.09 26.08 0.04 0.00 ind:fut:3s; +raccrocherai raccrocher VER 28.09 26.08 0.13 0.00 ind:fut:1s; +raccrocheraient raccrocher VER 28.09 26.08 0.00 0.07 cnd:pre:3p; +raccrocherais raccrocher VER 28.09 26.08 0.02 0.00 cnd:pre:1s; +raccrocherait raccrocher VER 28.09 26.08 0.11 0.07 cnd:pre:3s; +raccrocheras raccrocher VER 28.09 26.08 0.04 0.00 ind:fut:2s; +raccroches raccrocher VER 28.09 26.08 0.53 0.20 ind:pre:2s; +raccrocheur raccrocheur ADJ m s 0.00 0.20 0.00 0.14 +raccrocheurs raccrocheur ADJ m p 0.00 0.20 0.00 0.07 +raccrochez raccrocher VER 28.09 26.08 3.49 0.20 imp:pre:2p;ind:pre:2p; +raccrochons raccrocher VER 28.09 26.08 0.03 0.00 imp:pre:1p;ind:pre:1p; +raccrochèrent raccrocher VER 28.09 26.08 0.00 0.07 ind:pas:3p; +raccroché raccrocher VER m s 28.09 26.08 6.67 5.00 par:pas; +raccrochée raccrocher VER f s 28.09 26.08 0.04 0.20 par:pas; +raccrochées raccrocher VER f p 28.09 26.08 0.00 0.07 par:pas; +raccrochés raccrocher VER m p 28.09 26.08 0.03 0.07 par:pas; +raccrocs raccroc NOM m p 0.00 0.47 0.00 0.14 +raccusa raccuser VER 0.00 0.07 0.00 0.07 ind:pas:3s; +race race NOM f s 30.56 34.93 27.09 28.72 +races race NOM f p 30.56 34.93 3.46 6.22 +rachat rachat NOM m s 1.79 1.01 1.75 0.95 +rachats rachat NOM m p 1.79 1.01 0.04 0.07 +racheta racheter VER 17.33 12.91 0.00 0.20 ind:pas:3s; +rachetai racheter VER 17.33 12.91 0.00 0.07 ind:pas:1s; +rachetaient racheter VER 17.33 12.91 0.01 0.20 ind:imp:3p; +rachetait racheter VER 17.33 12.91 0.00 0.68 ind:imp:3s; +rachetant racheter VER 17.33 12.91 0.19 0.20 par:pre; +racheter racheter VER 17.33 12.91 9.30 6.08 ind:pre:2p;inf; +rachetez racheter VER 17.33 12.91 0.09 0.07 imp:pre:2p;ind:pre:2p; +rachetiez racheter VER 17.33 12.91 0.03 0.07 ind:imp:2p; +rachetât racheter VER 17.33 12.91 0.00 0.07 sub:imp:3s; +rachetèrent racheter VER 17.33 12.91 0.00 0.07 ind:pas:3p; +racheté racheter VER m s 17.33 12.91 3.77 1.22 par:pas; +rachetée racheter VER f s 17.33 12.91 0.60 0.41 par:pas; +rachetées racheter VER f p 17.33 12.91 0.00 0.14 par:pas; +rachetés racheter VER m p 17.33 12.91 0.32 0.47 par:pas; +rachianesthésie rachianesthésie NOM f s 0.10 0.00 0.10 0.00 +rachidien rachidien ADJ m s 0.23 0.14 0.18 0.14 +rachidienne rachidien ADJ f s 0.23 0.14 0.04 0.00 +rachis rachis NOM m 0.04 0.07 0.04 0.07 +rachitique rachitique ADJ s 0.14 0.61 0.11 0.47 +rachitiques rachitique ADJ p 0.14 0.61 0.03 0.14 +rachitisme rachitisme NOM m s 0.05 0.14 0.05 0.14 +racho racho ADJ s 0.03 0.07 0.03 0.07 +rachète racheter VER 17.33 12.91 1.48 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rachètent racheter VER 17.33 12.91 0.20 0.41 ind:pre:3p; +rachètera racheter VER 17.33 12.91 0.64 0.41 ind:fut:3s; +rachèterai racheter VER 17.33 12.91 0.47 0.34 ind:fut:1s; +rachèterais racheter VER 17.33 12.91 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +rachèterait racheter VER 17.33 12.91 0.03 0.34 cnd:pre:3s; +rachèterez racheter VER 17.33 12.91 0.14 0.00 ind:fut:2p; +rachèteront racheter VER 17.33 12.91 0.01 0.00 ind:fut:3p; +racial racial ADJ m s 3.08 1.35 0.66 0.07 +raciale racial ADJ f s 3.08 1.35 1.50 0.61 +racialement racialement ADV 0.02 0.14 0.02 0.14 +raciales racial ADJ f p 3.08 1.35 0.71 0.47 +raciaux racial ADJ m p 3.08 1.35 0.22 0.20 +racinait raciner VER 0.00 0.34 0.00 0.07 ind:imp:3s; +racine racine NOM f s 12.53 31.96 5.17 11.01 +raciner raciner VER 0.00 0.34 0.00 0.07 inf; +racines racine NOM f p 12.53 31.96 7.36 20.95 +racingman racingman NOM m s 0.00 0.07 0.00 0.07 +racinienne racinien ADJ f s 0.00 0.20 0.00 0.07 +raciniennes racinien ADJ f p 0.00 0.20 0.00 0.07 +raciniens racinien ADJ m p 0.00 0.20 0.00 0.07 +racinée raciner VER f s 0.00 0.34 0.00 0.07 par:pas; +racinées raciner VER f p 0.00 0.34 0.00 0.07 par:pas; +racinés raciner VER m p 0.00 0.34 0.00 0.07 par:pas; +racisme racisme NOM m s 2.09 2.97 2.09 2.77 +racismes racisme NOM m p 2.09 2.97 0.00 0.20 +raciste raciste ADJ s 4.97 3.45 3.89 2.03 +racistes raciste NOM p 3.54 2.70 1.18 1.28 +rack rack NOM m s 0.25 0.07 0.25 0.07 +racket racket NOM m s 2.33 0.68 2.07 0.68 +rackets racket NOM m p 2.33 0.68 0.27 0.00 +rackette racketter VER 0.23 0.00 0.05 0.00 ind:pre:3s; +racketter racketter VER 0.23 0.00 0.16 0.00 inf; +racketteur racketteur NOM m s 0.22 0.00 0.22 0.00 +rackettez racketter VER 0.23 0.00 0.01 0.00 ind:pre:2p; +rackettons racketter VER 0.23 0.00 0.01 0.00 ind:pre:1p; +racketté racketter VER m s 0.23 0.00 0.01 0.00 par:pas; +racla racler VER 1.36 12.50 0.00 1.89 ind:pas:3s; +raclages raclage NOM m p 0.00 0.07 0.00 0.07 +raclaient racler VER 1.36 12.50 0.00 0.54 ind:imp:3p; +raclais racler VER 1.36 12.50 0.01 0.20 ind:imp:1s; +raclait racler VER 1.36 12.50 0.04 2.09 ind:imp:3s; +raclant racler VER 1.36 12.50 0.06 1.49 par:pre; +raclante raclant ADJ f s 0.00 0.27 0.00 0.07 +racle racler VER 1.36 12.50 0.26 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raclement raclement NOM m s 0.07 2.09 0.07 1.15 +raclements raclement NOM m p 0.07 2.09 0.00 0.95 +raclent racler VER 1.36 12.50 0.02 0.61 ind:pre:3p; +racler racler VER 1.36 12.50 0.51 2.03 inf; +raclerai racler VER 1.36 12.50 0.01 0.00 ind:fut:1s; +racleras racler VER 1.36 12.50 0.01 0.00 ind:fut:2s; +racles racler VER 1.36 12.50 0.01 0.07 ind:pre:2s; +raclette raclette NOM f s 1.13 0.81 1.13 0.81 +racleur racleur NOM m s 0.04 0.00 0.03 0.00 +racleuse racleur NOM f s 0.04 0.00 0.01 0.00 +racloir racloir NOM m s 0.25 0.07 0.25 0.07 +raclons raclon NOM m p 0.01 0.07 0.01 0.07 +raclèrent racler VER 1.36 12.50 0.00 0.20 ind:pas:3p; +raclé racler VER m s 1.36 12.50 0.43 0.95 par:pas; +raclée raclée NOM f s 6.88 3.24 6.43 2.57 +raclées raclée NOM f p 6.88 3.24 0.45 0.68 +raclure raclure NOM f s 1.73 1.49 1.48 0.88 +raclures raclure NOM f p 1.73 1.49 0.25 0.61 +raclés racler VER m p 1.36 12.50 0.00 0.20 par:pas; +racolage racolage NOM m s 0.57 0.61 0.57 0.54 +racolages racolage NOM m p 0.57 0.61 0.00 0.07 +racolaient racoler VER 0.59 1.42 0.00 0.07 ind:imp:3p; +racolais racoler VER 0.59 1.42 0.00 0.07 ind:imp:1s; +racolait racoler VER 0.59 1.42 0.07 0.20 ind:imp:3s; +racolant racoler VER 0.59 1.42 0.01 0.07 par:pre; +racole racoler VER 0.59 1.42 0.12 0.14 ind:pre:1s;ind:pre:3s; +racolent racoler VER 0.59 1.42 0.02 0.14 ind:pre:3p; +racoler racoler VER 0.59 1.42 0.16 0.54 inf; +racoles racoler VER 0.59 1.42 0.06 0.07 ind:pre:2s; +racoleur racoleur ADJ m s 0.33 0.41 0.15 0.20 +racoleurs racoleur NOM m p 0.09 0.14 0.03 0.07 +racoleuse racoleur ADJ f s 0.33 0.41 0.05 0.07 +racoleuses racoleur ADJ f p 0.33 0.41 0.12 0.14 +racolé racoler VER m s 0.59 1.42 0.16 0.14 par:pas; +raconta raconter VER 253.84 261.89 1.08 18.04 ind:pas:3s; +racontable racontable ADJ f s 0.12 0.20 0.10 0.14 +racontables racontable ADJ f p 0.12 0.20 0.02 0.07 +racontai raconter VER 253.84 261.89 0.26 3.11 ind:pas:1s; +racontaient raconter VER 253.84 261.89 1.05 4.05 ind:imp:3p; +racontais raconter VER 253.84 261.89 2.41 5.00 ind:imp:1s;ind:imp:2s; +racontait raconter VER 253.84 261.89 4.50 29.46 ind:imp:3s; +racontant raconter VER 253.84 261.89 0.93 6.15 par:pre; +racontar racontar NOM m s 1.11 2.23 0.02 0.47 +racontars racontar NOM m p 1.11 2.23 1.08 1.76 +racontas raconter VER 253.84 261.89 0.00 0.07 ind:pas:2s; +raconte raconter VER 253.84 261.89 78.06 54.12 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +racontent raconter VER 253.84 261.89 4.32 6.35 ind:pre:3p;sub:pre:3p; +raconter raconter VER 253.84 261.89 57.79 64.86 inf;; +racontera raconter VER 253.84 261.89 2.02 1.82 ind:fut:3s; +raconterai raconter VER 253.84 261.89 6.80 5.07 ind:fut:1s; +raconteraient raconter VER 253.84 261.89 0.03 0.20 cnd:pre:3p; +raconterais raconter VER 253.84 261.89 0.63 0.54 cnd:pre:1s;cnd:pre:2s; +raconterait raconter VER 253.84 261.89 0.08 2.09 cnd:pre:3s; +raconteras raconter VER 253.84 261.89 3.19 1.28 ind:fut:2s; +raconterez raconter VER 253.84 261.89 0.96 0.95 ind:fut:2p; +raconterons raconter VER 253.84 261.89 0.14 0.14 ind:fut:1p; +raconteront raconter VER 253.84 261.89 0.13 0.07 ind:fut:3p; +racontes raconter VER 253.84 261.89 34.95 7.23 ind:pre:1p;ind:pre:2s;sub:pre:2s; +raconteur raconteur NOM m s 0.18 0.14 0.17 0.00 +raconteuse raconteur NOM f s 0.18 0.14 0.01 0.14 +racontez raconter VER 253.84 261.89 17.02 5.74 imp:pre:2p;ind:pre:2p; +racontiez raconter VER 253.84 261.89 0.45 0.61 ind:imp:2p; +racontions raconter VER 253.84 261.89 0.04 0.47 ind:imp:1p; +racontons raconter VER 253.84 261.89 0.47 0.27 imp:pre:1p;ind:pre:1p; +racontât raconter VER 253.84 261.89 0.00 0.07 sub:imp:3s; +racontèrent raconter VER 253.84 261.89 0.03 1.22 ind:pas:3p; +raconté raconter VER m s 253.84 261.89 33.87 38.18 par:pas; +racontée raconter VER f s 253.84 261.89 1.93 2.91 par:pas; +racontées raconter VER f p 253.84 261.89 0.49 1.22 par:pas; +racontés raconter VER m p 253.84 261.89 0.24 0.61 par:pas; +racorni racornir VER m s 0.59 3.45 0.40 1.15 par:pas; +racornie racornir VER f s 0.59 3.45 0.02 0.95 par:pas; +racornies racornir VER f p 0.59 3.45 0.00 0.54 par:pas; +racornir racornir VER 0.59 3.45 0.02 0.07 inf; +racornis racornir VER m p 0.59 3.45 0.00 0.41 par:pas; +racornissait racornir VER 0.59 3.45 0.00 0.14 ind:imp:3s; +racornissent racornir VER 0.59 3.45 0.14 0.07 ind:pre:3p; +racornit racornir VER 0.59 3.45 0.01 0.14 ind:pre:3s;ind:pas:3s; +racé racé ADJ m s 0.07 1.69 0.03 0.81 +racée racé ADJ f s 0.07 1.69 0.01 0.68 +racés racé ADJ m p 0.07 1.69 0.03 0.20 +rad rad NOM m s 0.20 0.07 0.18 0.07 +radôme radôme NOM m s 0.01 0.00 0.01 0.00 +rada rader VER 0.47 0.61 0.02 0.00 ind:pas:3s; +radada radada NOM m s 0.00 0.07 0.00 0.07 +radar radar NOM m s 10.36 2.70 8.05 1.96 +radars radar NOM m p 10.36 2.70 2.31 0.74 +radasse rader VER 0.47 0.61 0.30 0.54 sub:imp:1s; +radasses rader VER 0.47 0.61 0.01 0.07 sub:imp:2s; +rade rade NOM f s 2.33 10.88 2.18 9.26 +radeau_radar radeau_radar NOM m s 0.00 0.07 0.00 0.07 +radeau radeau NOM m s 3.27 5.20 2.97 4.32 +radeaux radeau NOM m p 3.27 5.20 0.30 0.88 +rader rader VER 0.47 0.61 0.14 0.00 inf; +rades rade NOM f p 2.33 10.88 0.16 1.62 +radeuse radeuse NOM f s 0.00 0.34 0.00 0.27 +radeuses radeuse NOM f p 0.00 0.34 0.00 0.07 +radial radial ADJ m s 0.34 0.34 0.12 0.00 +radiale radial ADJ f s 0.34 0.34 0.19 0.27 +radiales radial ADJ f p 0.34 0.34 0.01 0.07 +radiant radiant NOM m s 0.02 0.00 0.02 0.00 +radiante radiant ADJ f s 0.02 0.14 0.01 0.07 +radiateur radiateur NOM m s 3.65 7.43 3.02 6.35 +radiateurs radiateur NOM m p 3.65 7.43 0.63 1.08 +radiation radiation NOM f s 6.89 0.74 2.71 0.34 +radiations radiation NOM f p 6.89 0.74 4.17 0.41 +radiative radiatif ADJ f s 0.01 0.00 0.01 0.00 +radiaux radial ADJ m p 0.34 0.34 0.02 0.00 +radical_socialisme radical_socialisme NOM m s 0.00 0.27 0.00 0.27 +radical_socialiste radical_socialiste ADJ m s 0.00 0.34 0.00 0.34 +radical radical ADJ m s 6.25 8.11 2.96 3.51 +radicale_socialiste radicale_socialiste NOM f s 0.00 0.20 0.00 0.20 +radicale radical ADJ f s 6.25 8.11 1.75 2.57 +radicalement radicalement ADV 0.99 3.65 0.99 3.65 +radicales radical ADJ f p 6.25 8.11 0.33 0.27 +radicalisation radicalisation NOM f s 0.10 0.14 0.10 0.14 +radicaliser radicaliser VER 0.02 0.00 0.01 0.00 inf; +radicalisme radicalisme NOM m s 0.02 0.47 0.02 0.47 +radicalisé radicaliser VER m s 0.02 0.00 0.01 0.00 par:pas; +radical_socialiste radical_socialiste NOM m p 0.00 0.34 0.00 0.27 +radicaux radical ADJ m p 6.25 8.11 1.22 1.76 +radicelles radicelle NOM f p 0.00 0.74 0.00 0.74 +radiculaire radiculaire ADJ s 0.16 0.07 0.16 0.07 +radicule radicule NOM f s 0.01 0.07 0.01 0.00 +radicules radicule NOM f p 0.01 0.07 0.00 0.07 +radier radier VER 1.33 0.27 0.20 0.07 inf; +radiers radier NOM m p 0.03 0.14 0.00 0.14 +radiesthésiste radiesthésiste NOM s 0.14 0.00 0.14 0.00 +radieuse radieux ADJ f s 3.88 12.09 1.47 4.39 +radieusement radieusement ADV 0.01 0.20 0.01 0.20 +radieuses radieux ADJ f p 3.88 12.09 0.22 1.15 +radieux radieux ADJ m 3.88 12.09 2.19 6.55 +radin radin ADJ m s 3.51 1.55 2.69 1.28 +radinait radiner VER 0.29 2.03 0.00 0.20 ind:imp:3s; +radine radin ADJ f s 3.51 1.55 0.50 0.20 +radinent radiner VER 0.29 2.03 0.01 0.47 ind:pre:3p; +radiner radiner VER 0.29 2.03 0.09 0.20 inf; +radinerie radinerie NOM f s 0.02 0.07 0.02 0.07 +radines radin NOM f p 1.10 0.34 0.10 0.00 +radinez radiner VER 0.29 2.03 0.00 0.07 imp:pre:2p; +radins radin ADJ m p 3.51 1.55 0.31 0.07 +radiné radiner VER m s 0.29 2.03 0.14 0.41 par:pas; +radinée radiner VER f s 0.29 2.03 0.02 0.07 par:pas; +radio_isotope radio_isotope NOM m s 0.04 0.00 0.04 0.00 +radio_réveil radio_réveil NOM m s 0.10 0.14 0.10 0.14 +radio_taxi radio_taxi NOM m s 0.14 0.07 0.14 0.07 +radio radio NOM s 78.23 55.00 71.31 50.54 +radioactif radioactif ADJ m s 2.65 0.68 1.11 0.47 +radioactifs radioactif ADJ m p 2.65 0.68 0.54 0.07 +radioactive radioactif ADJ f s 2.65 0.68 0.65 0.07 +radioactives radioactif ADJ f p 2.65 0.68 0.35 0.07 +radioactivité radioactivité NOM f s 0.86 0.07 0.86 0.07 +radioamateur radioamateur NOM m s 0.01 0.00 0.01 0.00 +radioastronome radioastronome NOM s 0.01 0.00 0.01 0.00 +radiobalisage radiobalisage NOM m s 0.01 0.00 0.01 0.00 +radiobalise radiobalise NOM f s 0.07 0.00 0.07 0.00 +radiocassette radiocassette NOM f s 0.02 0.00 0.02 0.00 +radiodiffusion radiodiffusion NOM f s 0.01 0.14 0.01 0.14 +radiodiffusé radiodiffuser VER m s 0.03 0.68 0.03 0.47 par:pas; +radiodiffusée radiodiffuser VER f s 0.03 0.68 0.00 0.14 par:pas; +radiodiffusées radiodiffuser VER f p 0.03 0.68 0.00 0.07 par:pas; +radiogoniomètre radiogoniomètre NOM m s 0.01 0.00 0.01 0.00 +radiogoniométrique radiogoniométrique ADJ s 0.10 0.00 0.10 0.00 +radiogramme radiogramme NOM m s 0.11 0.07 0.11 0.00 +radiogrammes radiogramme NOM m p 0.11 0.07 0.00 0.07 +radiographiant radiographier VER 0.10 0.34 0.00 0.07 par:pre; +radiographie radiographie NOM f s 0.93 0.88 0.79 0.34 +radiographient radiographier VER 0.10 0.34 0.00 0.07 ind:pre:3p; +radiographier radiographier VER 0.10 0.34 0.04 0.07 inf; +radiographies radiographie NOM f p 0.93 0.88 0.14 0.54 +radiographique radiographique ADJ f s 0.01 0.00 0.01 0.00 +radiographié radiographier VER m s 0.10 0.34 0.03 0.07 par:pas; +radiographiée radiographier VER f s 0.10 0.34 0.01 0.00 par:pas; +radiographiés radiographier VER m p 0.10 0.34 0.00 0.07 par:pas; +radioguidage radioguidage NOM m s 0.02 0.07 0.02 0.07 +radioguidera radioguider VER 0.01 0.00 0.01 0.00 ind:fut:3s; +radiologie radiologie NOM f s 1.16 0.07 1.16 0.07 +radiologique radiologique ADJ f s 0.09 0.07 0.09 0.00 +radiologiques radiologique ADJ f p 0.09 0.07 0.00 0.07 +radiologiste radiologiste NOM s 0.05 0.00 0.05 0.00 +radiologue radiologue NOM s 0.55 0.27 0.51 0.20 +radiologues radiologue NOM p 0.55 0.27 0.04 0.07 +radiomètre radiomètre NOM m s 0.01 0.07 0.01 0.00 +radiomètres radiomètre NOM m p 0.01 0.07 0.00 0.07 +radiométrie radiométrie NOM f s 0.01 0.00 0.01 0.00 +radiophare radiophare NOM m s 0.01 0.07 0.01 0.07 +radiophonie radiophonie NOM f s 0.00 0.27 0.00 0.27 +radiophonique radiophonique ADJ s 0.78 1.49 0.76 0.68 +radiophoniques radiophonique ADJ p 0.78 1.49 0.02 0.81 +radioréveil radioréveil NOM m s 0.01 0.00 0.01 0.00 +radios radio NOM p 78.23 55.00 6.92 4.46 +radioscopie radioscopie NOM f s 0.03 0.14 0.03 0.14 +radioscopique radioscopique ADJ f s 0.01 0.07 0.01 0.00 +radioscopiques radioscopique ADJ p 0.01 0.07 0.00 0.07 +radiosonde radiosonde NOM f s 0.01 0.00 0.01 0.00 +radiothérapie radiothérapie NOM f s 0.21 0.00 0.21 0.00 +radiotélescope radiotélescope NOM m s 0.10 0.00 0.09 0.00 +radiotélescopes radiotélescope NOM m p 0.10 0.00 0.01 0.00 +radiotélégraphie radiotélégraphie NOM f s 0.00 0.07 0.00 0.07 +radiotélégraphiste radiotélégraphiste NOM s 0.00 0.14 0.00 0.14 +radiotéléphone radiotéléphone NOM m s 0.03 0.00 0.02 0.00 +radiotéléphones radiotéléphone NOM m p 0.03 0.00 0.01 0.00 +radiotéléphonie radiotéléphonie NOM f s 0.10 0.00 0.10 0.00 +radiotéléphonique radiotéléphonique ADJ s 0.01 0.00 0.01 0.00 +radioélectrique radioélectrique ADJ s 0.01 0.00 0.01 0.00 +radioélément radioélément NOM m s 0.01 0.00 0.01 0.00 +radis radis NOM m 1.81 3.11 1.81 3.11 +radié radier VER m s 1.33 0.27 0.98 0.14 par:pas; +radiée radier VER f s 1.33 0.27 0.09 0.07 par:pas; +radium radium NOM m s 0.32 0.07 0.32 0.07 +radiés radié ADJ m p 0.18 0.07 0.14 0.00 +radius radius NOM m 0.15 0.07 0.15 0.07 +radja radja NOM m s 0.00 0.07 0.00 0.07 +radjah radjah NOM m s 0.00 0.14 0.00 0.07 +radjahs radjah NOM m p 0.00 0.14 0.00 0.07 +radon radon NOM m s 0.07 0.00 0.07 0.00 +radotage radotage NOM m s 0.36 0.81 0.28 0.34 +radotages radotage NOM m p 0.36 0.81 0.09 0.47 +radotait radoter VER 2.04 2.30 0.00 0.41 ind:imp:3s; +radotant radoter VER 2.04 2.30 0.03 0.27 par:pre; +radote radoter VER 2.04 2.30 0.69 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +radotent radoter VER 2.04 2.30 0.04 0.34 ind:pre:3p; +radoter radoter VER 2.04 2.30 0.59 0.41 inf; +radotes radoter VER 2.04 2.30 0.60 0.07 ind:pre:2s; +radoteur radoteur NOM m s 0.22 0.27 0.21 0.07 +radoteurs radoteur NOM m p 0.22 0.27 0.01 0.07 +radoteuses radoteur NOM f p 0.22 0.27 0.00 0.14 +radotez radoter VER 2.04 2.30 0.10 0.00 ind:pre:2p; +radoté radoter VER m s 2.04 2.30 0.00 0.14 par:pas; +radoub radoub NOM m s 0.03 0.41 0.03 0.41 +radoubait radouber VER 0.11 0.14 0.00 0.07 ind:imp:3s; +radouber radouber VER 0.11 0.14 0.11 0.07 inf; +radoubeur radoubeur NOM m s 0.00 0.07 0.00 0.07 +radouci radoucir VER m s 0.29 2.09 0.12 0.54 par:pas; +radoucie radoucir VER f s 0.29 2.09 0.03 0.61 par:pas; +radoucir radoucir VER 0.29 2.09 0.07 0.00 inf; +radouciraient radoucir VER 0.29 2.09 0.00 0.07 cnd:pre:3p; +radoucis radoucir VER m p 0.29 2.09 0.04 0.14 ind:pre:1s;ind:pre:2s;par:pas; +radoucissais radoucir VER 0.29 2.09 0.00 0.07 ind:imp:1s; +radoucissait radoucir VER 0.29 2.09 0.00 0.07 ind:imp:3s; +radoucissement radoucissement NOM m s 0.00 0.07 0.00 0.07 +radoucit radoucir VER 0.29 2.09 0.03 0.61 ind:pre:3s;ind:pas:3s; +rads rad NOM m p 0.20 0.07 0.02 0.00 +rafa rafer VER 2.44 0.00 2.11 0.00 ind:pas:3s; +rafale rafale NOM f s 1.59 19.46 0.79 8.85 +rafales rafale NOM f p 1.59 19.46 0.81 10.61 +rafe rafer VER 2.44 0.00 0.33 0.00 imp:pre:2s; +raff raff NOM m s 0.09 0.00 0.09 0.00 +raffermi raffermir VER m s 0.23 1.82 0.01 0.14 par:pas; +raffermie raffermir VER f s 0.23 1.82 0.01 0.27 par:pas; +raffermir raffermir VER 0.23 1.82 0.18 0.68 inf; +raffermira raffermir VER 0.23 1.82 0.03 0.00 ind:fut:3s; +raffermis raffermir VER m p 0.23 1.82 0.00 0.07 par:pas; +raffermissait raffermir VER 0.23 1.82 0.00 0.20 ind:imp:3s; +raffermissent raffermir VER 0.23 1.82 0.00 0.07 ind:pre:3p; +raffermit raffermir VER 0.23 1.82 0.00 0.41 ind:pre:3s;ind:pas:3s; +raffinage raffinage NOM m s 0.01 0.07 0.01 0.07 +raffinait raffiner VER 1.06 2.03 0.00 0.14 ind:imp:3s; +raffinant raffiner VER 1.06 2.03 0.00 0.20 par:pre; +raffine raffiner VER 1.06 2.03 0.05 0.20 imp:pre:2s;ind:pre:3s; +raffinement raffinement NOM m s 0.89 7.36 0.73 5.07 +raffinements raffinement NOM m p 0.89 7.36 0.16 2.30 +raffiner raffiner VER 1.06 2.03 0.06 0.20 inf; +raffinerie raffinerie NOM f s 0.85 1.01 0.73 0.88 +raffineries raffinerie NOM f p 0.85 1.01 0.12 0.14 +raffineur raffineur NOM m s 0.03 0.00 0.03 0.00 +raffiné raffiné ADJ m s 4.34 6.15 1.80 2.70 +raffinée raffiné ADJ f s 4.34 6.15 1.23 1.55 +raffinées raffiné ADJ f p 4.34 6.15 0.33 0.61 +raffinés raffiné ADJ m p 4.34 6.15 0.97 1.28 +raffolaient raffoler VER 3.16 3.85 0.01 0.14 ind:imp:3p; +raffolais raffoler VER 3.16 3.85 0.02 0.20 ind:imp:1s; +raffolait raffoler VER 3.16 3.85 0.19 1.62 ind:imp:3s; +raffolant raffoler VER 3.16 3.85 0.01 0.00 par:pre; +raffole raffoler VER 3.16 3.85 1.65 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raffolent raffoler VER 3.16 3.85 0.94 0.68 ind:pre:3p; +raffoler raffoler VER 3.16 3.85 0.05 0.27 inf; +raffoleront raffoler VER 3.16 3.85 0.01 0.07 ind:fut:3p; +raffoles raffoler VER 3.16 3.85 0.23 0.07 ind:pre:2s; +raffolez raffoler VER 3.16 3.85 0.04 0.00 ind:pre:2p; +raffoliez raffoler VER 3.16 3.85 0.00 0.07 ind:imp:2p; +raffolé raffoler VER m s 3.16 3.85 0.02 0.00 par:pas; +raffut raffut NOM m s 1.56 1.69 1.56 1.49 +raffuts raffut NOM m p 1.56 1.69 0.01 0.20 +rafiau rafiau NOM m s 0.00 0.07 0.00 0.07 +rafiot rafiot NOM m s 1.08 1.42 0.91 1.22 +rafiots rafiot NOM m p 1.08 1.42 0.17 0.20 +rafistola rafistoler VER 0.61 3.31 0.00 0.20 ind:pas:3s; +rafistolage rafistolage NOM m s 0.05 0.27 0.04 0.14 +rafistolages rafistolage NOM m p 0.05 0.27 0.01 0.14 +rafistolaient rafistoler VER 0.61 3.31 0.00 0.27 ind:imp:3p; +rafistolais rafistoler VER 0.61 3.31 0.01 0.07 ind:imp:1s; +rafistolait rafistoler VER 0.61 3.31 0.01 0.27 ind:imp:3s; +rafistole rafistoler VER 0.61 3.31 0.19 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rafistoler rafistoler VER 0.61 3.31 0.12 0.34 inf; +rafistolez rafistoler VER 0.61 3.31 0.05 0.00 imp:pre:2p;ind:pre:2p; +rafistolé rafistoler VER m s 0.61 3.31 0.13 0.74 par:pas; +rafistolée rafistoler VER f s 0.61 3.31 0.04 0.54 par:pas; +rafistolées rafistoler VER f p 0.61 3.31 0.04 0.20 par:pas; +rafistolés rafistoler VER m p 0.61 3.31 0.01 0.41 par:pas; +rafla rafler VER 3.56 5.20 0.01 0.41 ind:pas:3s; +raflais rafler VER 3.56 5.20 0.01 0.14 ind:imp:1s; +raflait rafler VER 3.56 5.20 0.05 0.27 ind:imp:3s; +raflant rafler VER 3.56 5.20 0.01 0.20 par:pre; +rafle rafle NOM f s 1.23 3.11 0.78 1.96 +raflent rafler VER 3.56 5.20 0.41 0.07 ind:pre:3p; +rafler rafler VER 3.56 5.20 0.81 1.42 inf; +raflera rafler VER 3.56 5.20 0.06 0.07 ind:fut:3s; +raflerai rafler VER 3.56 5.20 0.02 0.00 ind:fut:1s; +raflerait rafler VER 3.56 5.20 0.02 0.07 cnd:pre:3s; +rafles rafle NOM f p 1.23 3.11 0.46 1.15 +raflez rafler VER 3.56 5.20 0.04 0.00 imp:pre:2p;ind:pre:2p; +raflé rafler VER m s 3.56 5.20 1.09 1.49 par:pas; +raflée rafler VER f s 3.56 5.20 0.16 0.07 par:pas; +raflées rafler VER f p 3.56 5.20 0.03 0.14 par:pas; +raflés rafler VER m p 3.56 5.20 0.00 0.27 par:pas; +rafraîchi rafraîchir VER m s 8.94 10.41 0.44 1.01 par:pas; +rafraîchie rafraîchir VER f s 8.94 10.41 0.04 0.47 par:pas; +rafraîchies rafraîchir VER f p 8.94 10.41 0.00 0.27 par:pas; +rafraîchir rafraîchir VER 8.94 10.41 4.61 4.19 inf; +rafraîchira rafraîchir VER 8.94 10.41 0.25 0.14 ind:fut:3s; +rafraîchirais rafraîchir VER 8.94 10.41 0.01 0.00 cnd:pre:1s; +rafraîchirait rafraîchir VER 8.94 10.41 0.06 0.07 cnd:pre:3s; +rafraîchirent rafraîchir VER 8.94 10.41 0.00 0.07 ind:pas:3p; +rafraîchiront rafraîchir VER 8.94 10.41 0.04 0.00 ind:fut:3p; +rafraîchis rafraîchir VER m p 8.94 10.41 0.90 0.68 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rafraîchissaient rafraîchir VER 8.94 10.41 0.00 0.34 ind:imp:3p; +rafraîchissais rafraîchir VER 8.94 10.41 0.14 0.14 ind:imp:1s;ind:imp:2s; +rafraîchissait rafraîchir VER 8.94 10.41 0.02 1.08 ind:imp:3s; +rafraîchissant rafraîchissant ADJ m s 0.72 2.16 0.50 1.08 +rafraîchissante rafraîchissant ADJ f s 0.72 2.16 0.16 0.47 +rafraîchissantes rafraîchissant ADJ f p 0.72 2.16 0.03 0.34 +rafraîchissants rafraîchissant ADJ m p 0.72 2.16 0.02 0.27 +rafraîchisse rafraîchir VER 8.94 10.41 0.49 0.14 sub:pre:1s;sub:pre:3s; +rafraîchissement rafraîchissement NOM m s 2.48 1.62 1.39 0.54 +rafraîchissements rafraîchissement NOM m p 2.48 1.62 1.09 1.08 +rafraîchissent rafraîchir VER 8.94 10.41 0.01 0.14 ind:pre:3p; +rafraîchisseur rafraîchisseur NOM m s 0.00 0.07 0.00 0.07 +rafraîchissez rafraîchir VER 8.94 10.41 0.19 0.00 imp:pre:2p;ind:pre:2p; +rafraîchissoir rafraîchissoir NOM m s 0.00 1.28 0.00 1.01 +rafraîchissoirs rafraîchissoir NOM m p 0.00 1.28 0.00 0.27 +rafraîchissons rafraîchir VER 8.94 10.41 0.12 0.00 imp:pre:1p; +rafraîchit rafraîchir VER 8.94 10.41 1.50 1.35 ind:pre:3s;ind:pas:3s; +raft raft NOM m s 0.10 0.07 0.10 0.07 +rafting rafting NOM m s 0.22 0.00 0.22 0.00 +rag rag NOM m s 0.01 0.00 0.01 0.00 +raga raga NOM m s 0.10 0.00 0.10 0.00 +ragaillardi ragaillardir VER m s 0.06 2.57 0.01 1.35 par:pas; +ragaillardie ragaillardir VER f s 0.06 2.57 0.00 0.27 par:pas; +ragaillardir ragaillardir VER 0.06 2.57 0.02 0.07 inf; +ragaillardira ragaillardir VER 0.06 2.57 0.00 0.07 ind:fut:3s; +ragaillardirait ragaillardir VER 0.06 2.57 0.00 0.07 cnd:pre:3s; +ragaillardis ragaillardir VER m p 0.06 2.57 0.02 0.20 ind:pas:2s;par:pas; +ragaillardissaient ragaillardir VER 0.06 2.57 0.00 0.07 ind:imp:3p; +ragaillardisse ragaillardir VER 0.06 2.57 0.00 0.07 sub:pre:1s; +ragaillardit ragaillardir VER 0.06 2.57 0.00 0.41 ind:pre:3s;ind:pas:3s; +rage rage NOM f s 15.97 45.34 15.54 44.12 +ragea rager VER 0.71 2.64 0.00 0.81 ind:pas:3s; +rageaient rager VER 0.71 2.64 0.00 0.14 ind:imp:3p; +rageais rager VER 0.71 2.64 0.01 0.20 ind:imp:1s; +rageait rager VER 0.71 2.64 0.02 0.54 ind:imp:3s; +rageant rageant ADJ m s 0.25 0.20 0.25 0.20 +ragent rager VER 0.71 2.64 0.02 0.00 ind:pre:3p; +rager rager VER 0.71 2.64 0.09 0.27 inf; +rages rage NOM f p 15.97 45.34 0.44 1.22 +rageur rageur ADJ m s 0.07 9.26 0.05 4.46 +rageurs rageur ADJ m p 0.07 9.26 0.01 1.62 +rageuse rageur ADJ f s 0.07 9.26 0.01 2.57 +rageusement rageusement ADV 0.03 5.61 0.03 5.61 +rageuses rageur ADJ f p 0.07 9.26 0.00 0.61 +ragez rager VER 0.71 2.64 0.02 0.00 imp:pre:2p;ind:pre:2p; +raglan raglan NOM m s 0.00 0.54 0.00 0.47 +raglans raglan NOM m p 0.00 0.54 0.00 0.07 +ragnagnas ragnagnas NOM m p 0.21 0.07 0.21 0.07 +ragoût ragoût NOM m s 3.44 4.46 3.37 3.65 +ragoûtant ragoûtant ADJ m s 0.08 1.22 0.04 0.61 +ragoûtante ragoûtant ADJ f s 0.08 1.22 0.01 0.14 +ragoûtantes ragoûtant ADJ f p 0.08 1.22 0.01 0.20 +ragoûtants ragoûtant ADJ m p 0.08 1.22 0.01 0.27 +ragoûts ragoût NOM m p 3.44 4.46 0.07 0.81 +ragondins ragondin NOM m p 0.28 0.14 0.28 0.14 +ragot ragot NOM m s 5.67 4.32 0.07 0.54 +ragota ragoter VER 0.04 0.27 0.00 0.07 ind:pas:3s; +ragotait ragoter VER 0.04 0.27 0.00 0.07 ind:imp:3s; +ragote ragoter VER 0.04 0.27 0.01 0.00 ind:pre:3s; +ragoter ragoter VER 0.04 0.27 0.03 0.14 inf; +ragots ragot NOM m p 5.67 4.32 5.60 3.78 +ragougnasse ragougnasse NOM f s 0.23 0.14 0.23 0.07 +ragougnasses ragougnasse NOM f p 0.23 0.14 0.00 0.07 +ragrafait ragrafer VER 0.00 0.20 0.00 0.07 ind:imp:3s; +ragrafant ragrafer VER 0.00 0.20 0.00 0.07 par:pre; +ragrafe ragrafer VER 0.00 0.20 0.00 0.07 ind:pre:1s; +ragtime ragtime NOM m s 0.13 0.00 0.13 0.00 +rahat_lokoum rahat_lokoum NOM m s 0.00 0.47 0.00 0.41 +rahat_lokoum rahat_lokoum NOM m p 0.00 0.47 0.00 0.07 +rahat_loukoum rahat_loukoum NOM m p 0.00 0.07 0.00 0.07 +rai rai NOM m s 2.50 5.41 1.57 3.31 +raid raid NOM m s 3.98 2.84 2.82 1.62 +raide raide ADJ s 7.76 39.39 6.61 24.53 +raidement raidement ADV 0.00 0.14 0.00 0.14 +raider raider NOM m s 1.57 0.41 0.90 0.00 +raiders raider NOM m p 1.57 0.41 0.67 0.41 +raides raide ADJ p 7.76 39.39 1.15 14.86 +raideur raideur NOM f s 0.62 7.03 0.62 7.03 +raidi raidir VER m s 0.57 19.59 0.03 3.04 par:pas; +raidie raidir VER f s 0.57 19.59 0.00 2.09 par:pas; +raidies raidir VER f p 0.57 19.59 0.01 1.49 par:pas; +raidillon raidillon NOM m s 0.00 4.12 0.00 3.31 +raidillons raidillon NOM m p 0.00 4.12 0.00 0.81 +raidir raidir VER 0.57 19.59 0.17 1.55 inf; +raidirent raidir VER 0.57 19.59 0.00 0.20 ind:pas:3p; +raidis raidir VER m p 0.57 19.59 0.03 2.23 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +raidissaient raidir VER 0.57 19.59 0.00 0.27 ind:imp:3p; +raidissais raidir VER 0.57 19.59 0.00 0.20 ind:imp:1s; +raidissait raidir VER 0.57 19.59 0.00 1.49 ind:imp:3s; +raidissant raidir VER 0.57 19.59 0.00 0.68 par:pre; +raidisse raidir VER 0.57 19.59 0.01 0.34 sub:pre:1s;sub:pre:3s; +raidissement raidissement NOM m s 0.00 0.61 0.00 0.47 +raidissements raidissement NOM m p 0.00 0.61 0.00 0.14 +raidissent raidir VER 0.57 19.59 0.04 0.41 ind:pre:3p; +raidissez raidir VER 0.57 19.59 0.02 0.07 imp:pre:2p;ind:pre:2p; +raidit raidir VER 0.57 19.59 0.27 5.54 ind:pre:3s;ind:pas:3s; +raids raid NOM m p 3.98 2.84 1.16 1.22 +raie raie NOM f s 2.49 11.01 1.71 7.50 +raient rayer VER 7.42 11.22 0.00 0.27 ind:pre:3p; +raies raie NOM f p 2.49 11.01 0.78 3.51 +raifort raifort NOM m s 0.21 0.27 0.21 0.27 +rail rail NOM m s 9.31 16.22 1.70 2.50 +railla railler VER 2.77 3.31 0.00 0.61 ind:pas:3s; +raillaient railler VER 2.77 3.31 0.00 0.27 ind:imp:3p; +raillait railler VER 2.77 3.31 0.03 0.20 ind:imp:3s; +raillant railler VER 2.77 3.31 0.34 0.07 par:pre; +raille railler VER 2.77 3.31 0.38 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +railler railler VER 2.77 3.31 0.70 0.88 inf; +raillera railler VER 2.77 3.31 0.01 0.00 ind:fut:3s; +raillerai railler VER 2.77 3.31 0.01 0.00 ind:fut:1s; +raillerie raillerie NOM f s 0.90 3.04 0.54 1.15 +railleries raillerie NOM f p 0.90 3.04 0.36 1.89 +railleur railleur NOM m s 0.17 0.14 0.16 0.07 +railleurs railleur NOM m p 0.17 0.14 0.01 0.07 +railleuse railleur ADJ f s 0.04 1.89 0.01 0.54 +railleuses railleur ADJ f p 0.04 1.89 0.00 0.07 +raillez railler VER 2.77 3.31 0.47 0.20 imp:pre:2p;ind:pre:2p; +raillèrent railler VER 2.77 3.31 0.00 0.14 ind:pas:3p; +raillé railler VER m s 2.77 3.31 0.81 0.61 par:pas; +raillée railler VER f s 2.77 3.31 0.02 0.00 par:pas; +raillés railler VER m p 2.77 3.31 0.00 0.14 par:pas; +rails rail NOM m p 9.31 16.22 7.61 13.72 +railway railway NOM m s 0.00 0.07 0.00 0.07 +rain rain NOM m s 1.03 0.00 1.03 0.00 +raine rainer VER 0.82 0.27 0.00 0.14 ind:pre:3s; +rainer rainer VER 0.82 0.27 0.00 0.07 inf; +raines rainer VER 0.82 0.27 0.82 0.07 ind:pre:2s; +rainette rainette NOM f s 0.04 0.88 0.04 0.41 +rainettes rainette NOM f p 0.04 0.88 0.00 0.47 +raineuse raineuse NOM f s 0.00 0.07 0.00 0.07 +rainure rainure NOM f s 0.43 3.51 0.20 1.42 +rainurer rainurer VER 0.01 0.20 0.00 0.07 inf; +rainures rainure NOM f p 0.43 3.51 0.23 2.09 +rainuré rainurer VER m s 0.01 0.20 0.01 0.00 par:pas; +rainurés rainurer VER m p 0.01 0.20 0.00 0.14 par:pas; +raiponce raiponce NOM f s 0.03 0.00 0.03 0.00 +raire raire VER 0.31 2.09 0.01 0.07 inf; +rais rai NOM m p 2.50 5.41 0.93 2.09 +raisin raisin NOM m s 9.40 9.53 5.88 4.86 +raisinets raisinet NOM m p 0.02 0.00 0.02 0.00 +raisins raisin NOM m p 9.40 9.53 3.52 4.66 +raisiné raisiné NOM m s 0.01 1.35 0.01 1.35 +raison raison NOM f s 467.94 308.78 424.28 247.50 +raisonna raisonner VER 8.72 10.27 0.00 0.47 ind:pas:3s; +raisonnable raisonnable ADJ s 28.25 23.51 25.04 19.39 +raisonnablement raisonnablement ADV 1.03 2.36 1.03 2.36 +raisonnables raisonnable ADJ p 28.25 23.51 3.21 4.12 +raisonnai raisonner VER 8.72 10.27 0.00 0.07 ind:pas:1s; +raisonnaient raisonner VER 8.72 10.27 0.00 0.14 ind:imp:3p; +raisonnais raisonner VER 8.72 10.27 0.07 0.47 ind:imp:1s; +raisonnait raisonner VER 8.72 10.27 0.01 0.81 ind:imp:3s; +raisonnant raisonner VER 8.72 10.27 0.16 0.20 par:pre; +raisonnante raisonnant ADJ f s 0.00 0.07 0.00 0.07 +raisonnassent raisonner VER 8.72 10.27 0.00 0.07 sub:imp:3p; +raisonne raisonner VER 8.72 10.27 1.50 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raisonnement raisonnement NOM m s 4.16 11.35 3.69 7.91 +raisonnements raisonnement NOM m p 4.16 11.35 0.47 3.45 +raisonnent raisonner VER 8.72 10.27 0.31 0.20 ind:pre:3p; +raisonner raisonner VER 8.72 10.27 4.66 5.27 inf; +raisonnes raisonner VER 8.72 10.27 0.35 0.27 ind:pre:2s; +raisonneur raisonneur NOM m s 0.17 0.34 0.17 0.07 +raisonneurs raisonneur NOM m p 0.17 0.34 0.00 0.20 +raisonneuse raisonneur ADJ f s 0.00 0.54 0.00 0.14 +raisonnez raisonner VER 8.72 10.27 0.77 0.14 imp:pre:2p;ind:pre:2p; +raisonniez raisonner VER 8.72 10.27 0.00 0.14 ind:imp:2p; +raisonnons raisonner VER 8.72 10.27 0.47 0.20 imp:pre:1p;ind:pre:1p; +raisonné raisonné ADJ m s 0.51 0.68 0.50 0.27 +raisonnée raisonner VER f s 8.72 10.27 0.02 0.14 par:pas; +raisons raison NOM f p 467.94 308.78 43.67 61.28 +rait raire VER m s 0.31 2.09 0.29 2.03 ind:pre:3s;par:pas; +raites raire VER f p 0.31 2.09 0.01 0.00 par:pas; +raja raja NOM m s 0.03 0.00 0.03 0.00 +rajah rajah NOM m s 0.06 0.20 0.04 0.07 +rajahs rajah NOM m p 0.06 0.20 0.01 0.14 +rajeuni rajeunir VER m s 5.20 7.91 1.10 2.16 par:pas; +rajeunie rajeunir VER f s 5.20 7.91 0.20 0.88 par:pas; +rajeunies rajeunir VER f p 5.20 7.91 0.00 0.07 par:pas; +rajeunir rajeunir VER 5.20 7.91 1.26 0.88 inf; +rajeunira rajeunir VER 5.20 7.91 0.03 0.00 ind:fut:3s; +rajeunirai rajeunir VER 5.20 7.91 0.01 0.00 ind:fut:1s; +rajeunirait rajeunir VER 5.20 7.91 0.02 0.07 cnd:pre:3s; +rajeunirez rajeunir VER 5.20 7.91 0.01 0.07 ind:fut:2p; +rajeunis rajeunir VER m p 5.20 7.91 1.11 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rajeunissaient rajeunir VER 5.20 7.91 0.00 0.14 ind:imp:3p; +rajeunissais rajeunir VER 5.20 7.91 0.01 0.07 ind:imp:1s; +rajeunissait rajeunir VER 5.20 7.91 0.04 1.22 ind:imp:3s; +rajeunissant rajeunissant ADJ m s 0.04 0.00 0.02 0.00 +rajeunissante rajeunissant ADJ f s 0.04 0.00 0.02 0.00 +rajeunisse rajeunir VER 5.20 7.91 0.00 0.07 sub:pre:3s; +rajeunissement rajeunissement NOM m s 0.26 0.68 0.26 0.68 +rajeunissent rajeunir VER 5.20 7.91 0.03 0.14 ind:pre:3p; +rajeunisseurs rajeunisseur NOM m p 0.00 0.07 0.00 0.07 +rajeunissez rajeunir VER 5.20 7.91 0.17 0.00 ind:pre:2p; +rajeunissons rajeunir VER 5.20 7.91 0.00 0.07 ind:pre:1p; +rajeunit rajeunir VER 5.20 7.91 1.20 1.49 ind:pre:3s;ind:pas:3s; +rajout rajout NOM m s 0.27 0.20 0.23 0.07 +rajouta rajouter VER 13.09 9.32 0.01 0.54 ind:pas:3s; +rajoutaient rajouter VER 13.09 9.32 0.12 0.14 ind:imp:3p; +rajoutais rajouter VER 13.09 9.32 0.01 0.41 ind:imp:1s;ind:imp:2s; +rajoutait rajouter VER 13.09 9.32 0.05 1.01 ind:imp:3s; +rajoutant rajouter VER 13.09 9.32 0.16 0.20 par:pre; +rajoute rajouter VER 13.09 9.32 4.11 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rajoutent rajouter VER 13.09 9.32 0.19 0.14 ind:pre:3p; +rajouter rajouter VER 13.09 9.32 3.73 2.30 inf; +rajoutera rajouter VER 13.09 9.32 0.15 0.00 ind:fut:3s; +rajouterais rajouter VER 13.09 9.32 0.15 0.07 cnd:pre:1s; +rajouterait rajouter VER 13.09 9.32 0.01 0.07 cnd:pre:3s; +rajouteras rajouter VER 13.09 9.32 0.10 0.07 ind:fut:2s; +rajouterez rajouter VER 13.09 9.32 0.00 0.07 ind:fut:2p; +rajoutes rajouter VER 13.09 9.32 1.04 0.07 ind:pre:2s; +rajoutez rajouter VER 13.09 9.32 0.75 0.20 imp:pre:2p;ind:pre:2p; +rajoutons rajouter VER 13.09 9.32 0.07 0.00 imp:pre:1p; +rajouts rajout NOM m p 0.27 0.20 0.04 0.14 +rajouté rajouter VER m s 13.09 9.32 2.13 1.35 par:pas; +rajoutée rajouter VER f s 13.09 9.32 0.12 0.07 par:pas; +rajoutées rajouter VER f p 13.09 9.32 0.01 0.20 par:pas; +rajoutés rajouter VER m p 13.09 9.32 0.15 0.07 par:pas; +rajusta rajuster VER 0.41 6.08 0.00 0.95 ind:pas:3s; +rajustaient rajuster VER 0.41 6.08 0.00 0.20 ind:imp:3p; +rajustais rajuster VER 0.41 6.08 0.00 0.07 ind:imp:1s; +rajustait rajuster VER 0.41 6.08 0.00 0.47 ind:imp:3s; +rajustant rajuster VER 0.41 6.08 0.10 1.15 par:pre; +rajuste rajuster VER 0.41 6.08 0.02 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rajustement rajustement NOM m s 0.00 0.20 0.00 0.20 +rajustent rajuster VER 0.41 6.08 0.27 0.14 ind:pre:3p; +rajuster rajuster VER 0.41 6.08 0.02 1.01 inf; +rajusteront rajuster VER 0.41 6.08 0.00 0.07 ind:fut:3p; +rajusté rajuster VER m s 0.41 6.08 0.00 0.54 par:pas; +rajustée rajuster VER f s 0.41 6.08 0.00 0.07 par:pas; +rajustées rajuster VER f p 0.41 6.08 0.00 0.14 par:pas; +raki raki NOM m s 0.28 1.15 0.28 1.15 +ralbol ralbol NOM m s 0.00 0.20 0.00 0.20 +ralentît ralentir VER 17.42 30.95 0.00 0.07 sub:imp:3s; +ralenti ralenti NOM m s 9.20 10.61 3.08 10.20 +ralentie ralentir VER f s 17.42 30.95 0.22 1.49 par:pas; +ralenties ralentir VER f p 17.42 30.95 0.17 0.07 par:pas; +ralentir ralentir VER 17.42 30.95 5.25 5.20 inf; +ralentira ralentir VER 17.42 30.95 0.31 0.20 ind:fut:3s; +ralentirai ralentir VER 17.42 30.95 0.24 0.00 ind:fut:1s; +ralentiraient ralentir VER 17.42 30.95 0.03 0.00 cnd:pre:3p; +ralentirais ralentir VER 17.42 30.95 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +ralentirait ralentir VER 17.42 30.95 0.30 0.20 cnd:pre:3s; +ralentirent ralentir VER 17.42 30.95 0.02 0.61 ind:pas:3p; +ralentirez ralentir VER 17.42 30.95 0.02 0.07 ind:fut:2p; +ralentiriez ralentir VER 17.42 30.95 0.01 0.00 cnd:pre:2p; +ralentiront ralentir VER 17.42 30.95 0.07 0.00 ind:fut:3p; +ralentis ralenti NOM m p 9.20 10.61 6.12 0.41 +ralentissaient ralentir VER 17.42 30.95 0.04 1.22 ind:imp:3p; +ralentissais ralentir VER 17.42 30.95 0.17 0.34 ind:imp:1s;ind:imp:2s; +ralentissait ralentir VER 17.42 30.95 0.20 2.23 ind:imp:3s; +ralentissant ralentir VER 17.42 30.95 0.04 1.82 par:pre; +ralentisse ralentir VER 17.42 30.95 0.29 0.34 sub:pre:1s;sub:pre:3s; +ralentissement ralentissement NOM m s 0.38 1.89 0.34 1.55 +ralentissements ralentissement NOM m p 0.38 1.89 0.03 0.34 +ralentissent ralentir VER 17.42 30.95 0.83 0.68 ind:pre:3p; +ralentisseur ralentisseur NOM m s 0.09 0.00 0.04 0.00 +ralentisseurs ralentisseur NOM m p 0.09 0.00 0.04 0.00 +ralentissez ralentir VER 17.42 30.95 1.94 0.14 imp:pre:2p;ind:pre:2p; +ralentissiez ralentir VER 17.42 30.95 0.04 0.00 ind:imp:2p; +ralentissions ralentir VER 17.42 30.95 0.02 0.00 ind:imp:1p; +ralentissons ralentir VER 17.42 30.95 0.27 0.07 imp:pre:1p;ind:pre:1p; +ralentit ralentir VER 17.42 30.95 3.23 10.68 ind:pre:3s;ind:pas:3s; +ralingue ralingue NOM f s 0.00 0.14 0.00 0.07 +ralingues ralingue NOM f p 0.00 0.14 0.00 0.07 +raller raller VER 0.01 0.27 0.01 0.07 inf; +rallia rallier VER 2.35 13.78 0.10 0.41 ind:pas:3s; +ralliai rallier VER 2.35 13.78 0.00 0.20 ind:pas:1s; +ralliaient rallier VER 2.35 13.78 0.00 0.41 ind:imp:3p; +ralliais rallier VER 2.35 13.78 0.00 0.20 ind:imp:1s; +ralliait rallier VER 2.35 13.78 0.03 1.01 ind:imp:3s; +ralliant rallier VER 2.35 13.78 0.11 0.34 par:pre; +ralliassent rallier VER 2.35 13.78 0.00 0.07 sub:imp:3p; +rallie rallier VER 2.35 13.78 0.37 0.54 ind:pre:1s;ind:pre:3s; +ralliement ralliement NOM m s 1.16 8.18 1.16 7.50 +ralliements ralliement NOM m p 1.16 8.18 0.00 0.68 +rallient rallier VER 2.35 13.78 0.07 0.74 ind:pre:3p; +rallier rallier VER 2.35 13.78 0.89 4.86 inf; +ralliera rallier VER 2.35 13.78 0.06 0.14 ind:fut:3s; +rallierai rallier VER 2.35 13.78 0.02 0.00 ind:fut:1s; +rallieraient rallier VER 2.35 13.78 0.01 0.20 cnd:pre:3p; +rallierait rallier VER 2.35 13.78 0.02 0.07 cnd:pre:3s; +rallieriez rallier VER 2.35 13.78 0.00 0.07 cnd:pre:2p; +rallierons rallier VER 2.35 13.78 0.04 0.00 ind:fut:1p; +rallieront rallier VER 2.35 13.78 0.01 0.07 ind:fut:3p; +rallies rallier VER 2.35 13.78 0.03 0.07 ind:pre:2s; +ralliez rallier VER 2.35 13.78 0.08 0.07 imp:pre:2p;ind:pre:2p; +rallions raller VER 0.01 0.27 0.00 0.20 ind:imp:1p; +rallièrent rallier VER 2.35 13.78 0.01 0.14 ind:pas:3p; +rallié rallier VER m s 2.35 13.78 0.17 2.50 par:pas; +ralliée rallier VER f s 2.35 13.78 0.14 0.27 par:pas; +ralliées rallier VER f p 2.35 13.78 0.14 0.20 par:pas; +ralliés rallié ADJ m p 0.11 0.81 0.10 0.54 +rallonge rallonge NOM f s 0.91 2.09 0.72 1.22 +rallongea rallonger VER 1.45 1.35 0.00 0.14 ind:pas:3s; +rallongeaient rallonger VER 1.45 1.35 0.10 0.00 ind:imp:3p; +rallongeait rallonger VER 1.45 1.35 0.01 0.14 ind:imp:3s; +rallongement rallongement NOM m s 0.01 0.00 0.01 0.00 +rallongent rallonger VER 1.45 1.35 0.03 0.14 ind:pre:3p; +rallonger rallonger VER 1.45 1.35 0.56 0.27 inf; +rallongerait rallonger VER 1.45 1.35 0.01 0.00 cnd:pre:3s; +rallonges rallonge NOM f p 0.91 2.09 0.20 0.88 +rallongez rallonger VER 1.45 1.35 0.17 0.00 imp:pre:2p; +rallongé rallonger VER m s 1.45 1.35 0.07 0.27 par:pas; +rallongée rallonger VER f s 1.45 1.35 0.01 0.20 par:pas; +rallège ralléger VER 0.00 0.27 0.00 0.07 ind:pre:3s; +ralléger ralléger VER 0.00 0.27 0.00 0.14 inf; +rallégé ralléger VER m s 0.00 0.27 0.00 0.07 par:pas; +ralluma rallumer VER 4.85 8.99 0.00 2.03 ind:pas:3s; +rallumage rallumage NOM m s 0.01 0.07 0.01 0.07 +rallumai rallumer VER 4.85 8.99 0.00 0.07 ind:pas:1s; +rallumaient rallumer VER 4.85 8.99 0.11 0.20 ind:imp:3p; +rallumais rallumer VER 4.85 8.99 0.00 0.07 ind:imp:1s; +rallumait rallumer VER 4.85 8.99 0.01 0.88 ind:imp:3s; +rallumant rallumer VER 4.85 8.99 0.01 0.54 par:pre; +rallume rallumer VER 4.85 8.99 1.88 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rallument rallumer VER 4.85 8.99 0.12 0.20 ind:pre:3p; +rallumer rallumer VER 4.85 8.99 1.50 2.36 inf; +rallumerai rallumer VER 4.85 8.99 0.01 0.00 ind:fut:1s; +rallumeront rallumer VER 4.85 8.99 0.02 0.00 ind:fut:3p; +rallumes rallumer VER 4.85 8.99 0.17 0.00 ind:pre:2s; +rallumez rallumer VER 4.85 8.99 0.42 0.00 imp:pre:2p;ind:pre:2p; +rallumons rallumer VER 4.85 8.99 0.20 0.07 imp:pre:1p;ind:pre:1p; +rallumèrent rallumer VER 4.85 8.99 0.00 0.14 ind:pas:3p; +rallumé rallumer VER m s 4.85 8.99 0.22 0.74 par:pas; +rallumée rallumer VER f s 4.85 8.99 0.12 0.27 par:pas; +rallumées rallumer VER f p 4.85 8.99 0.04 0.07 par:pas; +rallumés rallumer VER m p 4.85 8.99 0.01 0.14 par:pas; +rallye rallye NOM m s 1.74 0.54 1.68 0.41 +rallyes rallye NOM m p 1.74 0.54 0.06 0.14 +ram ram NOM m s 0.11 0.07 0.11 0.07 +rama ramer VER 5.37 6.42 0.03 0.27 ind:pas:3s; +ramadan ramadan NOM m s 1.07 0.95 1.07 0.95 +ramage ramage NOM m s 0.16 2.57 0.16 0.61 +ramageait ramager VER 0.00 0.14 0.00 0.07 ind:imp:3s; +ramager ramager VER 0.00 0.14 0.00 0.07 inf; +ramages ramage NOM m p 0.16 2.57 0.00 1.96 +ramai ramer VER 5.37 6.42 0.00 0.07 ind:pas:1s; +ramaient ramer VER 5.37 6.42 0.01 0.27 ind:imp:3p; +ramais ramer VER 5.37 6.42 0.04 0.27 ind:imp:1s; +ramait ramer VER 5.37 6.42 0.03 0.81 ind:imp:3s; +ramant ramer VER 5.37 6.42 0.02 0.41 par:pre; +ramarraient ramarrer VER 0.00 0.14 0.00 0.07 ind:imp:3p; +ramarrer ramarrer VER 0.00 0.14 0.00 0.07 inf; +ramas ramer VER 5.37 6.42 0.10 0.00 ind:pas:2s; +ramassa ramasser VER 43.76 74.80 0.26 11.82 ind:pas:3s; +ramassage ramassage NOM m s 0.91 1.35 0.90 1.35 +ramassages ramassage NOM m p 0.91 1.35 0.01 0.00 +ramassai ramasser VER 43.76 74.80 0.01 0.88 ind:pas:1s; +ramassaient ramasser VER 43.76 74.80 0.18 1.55 ind:imp:3p; +ramassais ramasser VER 43.76 74.80 0.81 1.08 ind:imp:1s;ind:imp:2s; +ramassait ramasser VER 43.76 74.80 0.66 4.93 ind:imp:3s; +ramassant ramasser VER 43.76 74.80 0.30 3.92 par:pre; +ramasse_miettes ramasse_miettes NOM m 0.02 0.27 0.02 0.27 +ramasse_poussière ramasse_poussière NOM m 0.02 0.00 0.02 0.00 +ramasse ramasser VER 43.76 74.80 13.87 10.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ramassent ramasser VER 43.76 74.80 0.86 1.76 ind:pre:3p; +ramasser ramasser VER 43.76 74.80 13.15 17.91 inf; +ramassera ramasser VER 43.76 74.80 0.25 0.27 ind:fut:3s; +ramasserai ramasser VER 43.76 74.80 0.14 0.00 ind:fut:1s; +ramasseraient ramasser VER 43.76 74.80 0.00 0.14 cnd:pre:3p; +ramasserais ramasser VER 43.76 74.80 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +ramasserait ramasser VER 43.76 74.80 0.04 0.41 cnd:pre:3s; +ramasseras ramasser VER 43.76 74.80 0.04 0.07 ind:fut:2s; +ramasseront ramasser VER 43.76 74.80 0.07 0.20 ind:fut:3p; +ramasses ramasser VER 43.76 74.80 1.61 0.20 ind:pre:2s; +ramasseur ramasseur NOM m s 0.73 2.70 0.56 1.15 +ramasseurs ramasseur NOM m p 0.73 2.70 0.17 1.42 +ramasseuse ramasseur NOM f s 0.73 2.70 0.00 0.14 +ramassez ramasser VER 43.76 74.80 3.37 0.68 imp:pre:2p;ind:pre:2p; +ramassiez ramasser VER 43.76 74.80 0.05 0.00 ind:imp:2p; +ramassions ramasser VER 43.76 74.80 0.00 0.20 ind:imp:1p; +ramassis ramassis NOM m 1.50 1.62 1.50 1.62 +ramassons ramasser VER 43.76 74.80 0.30 0.14 imp:pre:1p;ind:pre:1p; +ramassât ramasser VER 43.76 74.80 0.00 0.07 sub:imp:3s; +ramassèrent ramasser VER 43.76 74.80 0.01 1.35 ind:pas:3p; +ramassé ramasser VER m s 43.76 74.80 5.62 10.34 par:pas; +ramassée ramasser VER f s 43.76 74.80 1.07 2.91 par:pas; +ramassées ramasser VER f p 43.76 74.80 0.42 0.68 par:pas; +ramassés ramasser VER m p 43.76 74.80 0.59 2.57 par:pas; +rambarde rambarde NOM f s 0.45 3.04 0.45 2.64 +rambardes rambarde NOM f p 0.45 3.04 0.00 0.41 +rambin rambin NOM m s 0.00 0.34 0.00 0.34 +rambinait rambiner VER 0.00 0.88 0.00 0.07 ind:imp:3s; +rambine rambiner VER 0.00 0.88 0.00 0.27 ind:pre:3s; +rambinent rambiner VER 0.00 0.88 0.00 0.07 ind:pre:3p; +rambiner rambiner VER 0.00 0.88 0.00 0.27 inf; +rambineur rambineur NOM m s 0.00 0.07 0.00 0.07 +rambiné rambiner VER m s 0.00 0.88 0.00 0.20 par:pas; +rambla rambla NOM f s 0.00 0.07 0.00 0.07 +rambot rambot NOM m s 0.01 0.07 0.01 0.07 +rambour rambour NOM m s 0.00 0.34 0.00 0.34 +ramdam ramdam NOM m s 0.21 1.01 0.21 0.95 +ramdams ramdam NOM m p 0.21 1.01 0.00 0.07 +rame rame NOM f s 4.38 11.55 2.47 5.74 +rameau rameau NOM m s 1.92 6.22 1.29 2.57 +rameaux rameau NOM m p 1.92 6.22 0.63 3.65 +ramena ramener VER 172.70 109.26 0.70 9.86 ind:pas:3s; +ramenai ramener VER 172.70 109.26 0.00 0.61 ind:pas:1s; +ramenaient ramener VER 172.70 109.26 0.13 3.72 ind:imp:3p; +ramenais ramener VER 172.70 109.26 0.88 1.28 ind:imp:1s;ind:imp:2s; +ramenait ramener VER 172.70 109.26 1.76 12.57 ind:imp:3s; +ramenant ramener VER 172.70 109.26 0.66 4.59 par:pre; +ramenard ramenard ADJ m s 0.02 0.20 0.01 0.20 +ramenards ramenard ADJ m p 0.02 0.20 0.01 0.00 +ramendé ramender VER m s 0.01 0.00 0.01 0.00 par:pas; +ramener ramener VER 172.70 109.26 51.43 24.93 inf;;inf;;inf;;inf;; +ramenez ramener VER 172.70 109.26 13.02 1.08 imp:pre:2p;ind:pre:2p; +rameniez ramener VER 172.70 109.26 0.59 0.00 ind:imp:2p;sub:pre:2p; +ramenions ramener VER 172.70 109.26 0.05 0.20 ind:imp:1p; +ramenâmes ramener VER 172.70 109.26 0.15 0.20 ind:pas:1p; +ramenons ramener VER 172.70 109.26 1.60 0.27 imp:pre:1p;ind:pre:1p; +ramenât ramener VER 172.70 109.26 0.00 0.41 sub:imp:3s; +rament ramer VER 5.37 6.42 0.17 0.27 ind:pre:3p; +ramenèrent ramener VER 172.70 109.26 0.50 1.08 ind:pas:3p; +ramené ramener VER m s 172.70 109.26 23.84 13.31 par:pas; +ramenée ramener VER f s 172.70 109.26 5.25 4.93 par:pas; +ramenées ramener VER f p 172.70 109.26 0.50 1.01 par:pas; +ramenés ramener VER m p 172.70 109.26 1.27 3.78 par:pas; +ramer ramer VER 5.37 6.42 1.73 1.82 inf; +ramera ramer VER 5.37 6.42 0.00 0.07 ind:fut:3s; +rameras ramer VER 5.37 6.42 0.01 0.00 ind:fut:2s; +ramerons ramer VER 5.37 6.42 0.01 0.20 ind:fut:1p; +rameront ramer VER 5.37 6.42 0.01 0.00 ind:fut:3p; +rames rame NOM f p 4.38 11.55 1.91 5.81 +ramette ramette NOM f s 0.00 0.14 0.00 0.14 +rameur rameur NOM m s 1.00 2.43 0.40 0.47 +rameurs rameur NOM m p 1.00 2.43 0.60 1.96 +rameutais rameuter VER 0.72 2.43 0.01 0.07 ind:imp:1s; +rameutait rameuter VER 0.72 2.43 0.00 0.47 ind:imp:3s; +rameutant rameuter VER 0.72 2.43 0.00 0.07 par:pre; +rameute rameuter VER 0.72 2.43 0.23 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rameutent rameuter VER 0.72 2.43 0.00 0.07 ind:pre:3p; +rameuter rameuter VER 0.72 2.43 0.32 0.68 inf; +rameutez rameuter VER 0.72 2.43 0.06 0.14 imp:pre:2p;ind:pre:2p; +rameutons rameuter VER 0.72 2.43 0.02 0.00 imp:pre:1p;ind:pre:1p; +rameuté rameuter VER m s 0.72 2.43 0.07 0.14 par:pas; +rameutées rameuter VER f p 0.72 2.43 0.00 0.20 par:pas; +rameutés rameuter VER m p 0.72 2.43 0.01 0.34 par:pas; +ramez ramer VER 5.37 6.42 1.17 0.00 imp:pre:2p;ind:pre:2p; +rami rami NOM m s 0.48 0.20 0.47 0.14 +ramier ramier ADJ m s 0.01 0.27 0.01 0.00 +ramiers ramier NOM m p 0.00 1.01 0.00 0.47 +ramies ramie NOM f p 0.00 0.07 0.00 0.07 +ramifia ramifier VER 0.06 0.74 0.00 0.07 ind:pas:3s; +ramifiaient ramifier VER 0.06 0.74 0.00 0.07 ind:imp:3p; +ramifiait ramifier VER 0.06 0.74 0.00 0.07 ind:imp:3s; +ramifiant ramifiant ADJ m s 0.00 0.54 0.00 0.54 +ramification ramification NOM f s 0.50 1.42 0.05 0.07 +ramifications ramification NOM f p 0.50 1.42 0.45 1.35 +ramifie ramifier VER 0.06 0.74 0.04 0.00 ind:pre:3s; +ramifient ramifier VER 0.06 0.74 0.00 0.07 ind:pre:3p; +ramifier ramifier VER 0.06 0.74 0.00 0.07 inf; +ramifié ramifier VER m s 0.06 0.74 0.02 0.20 par:pas; +ramifiée ramifié ADJ f s 0.04 0.61 0.02 0.27 +ramifiées ramifié ADJ f p 0.04 0.61 0.01 0.20 +ramifiés ramifié ADJ m p 0.04 0.61 0.01 0.07 +ramille ramille NOM f s 0.00 0.54 0.00 0.07 +ramilles ramille NOM f p 0.00 0.54 0.00 0.47 +raminagrobis raminagrobis NOM m 0.00 0.14 0.00 0.14 +ramions ramer VER 5.37 6.42 0.01 0.00 ind:imp:1p; +ramis rami NOM m p 0.48 0.20 0.01 0.07 +ramolli ramollir VER m s 2.30 1.49 0.26 0.27 par:pas; +ramollie ramolli ADJ f s 0.44 1.08 0.05 0.27 +ramollies ramollir VER f p 2.30 1.49 0.04 0.07 par:pas; +ramollir ramollir VER 2.30 1.49 0.53 0.27 inf; +ramollirent ramollir VER 2.30 1.49 0.00 0.07 ind:pas:3p; +ramollis ramollir VER m p 2.30 1.49 0.49 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +ramollissait ramollir VER 2.30 1.49 0.04 0.20 ind:imp:3s; +ramollisse ramollir VER 2.30 1.49 0.16 0.00 sub:pre:3s; +ramollissement ramollissement NOM m s 0.12 0.20 0.12 0.20 +ramollissent ramollir VER 2.30 1.49 0.28 0.00 ind:pre:3p; +ramollit ramollir VER 2.30 1.49 0.47 0.41 ind:pre:3s;ind:pas:3s; +ramollo ramollo ADJ m s 0.32 0.27 0.23 0.20 +ramollos ramollo ADJ m p 0.32 0.27 0.09 0.07 +ramon ramon NOM m s 0.00 0.14 0.00 0.14 +ramonage ramonage NOM m s 0.02 0.34 0.02 0.27 +ramonages ramonage NOM m p 0.02 0.34 0.00 0.07 +ramonait ramoner VER 0.60 1.55 0.00 0.14 ind:imp:3s; +ramonant ramoner VER 0.60 1.55 0.00 0.07 par:pre; +ramone ramoner VER 0.60 1.55 0.26 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ramonent ramoner VER 0.60 1.55 0.00 0.07 ind:pre:3p; +ramoner ramoner VER 0.60 1.55 0.17 0.61 inf; +ramones ramoner VER 0.60 1.55 0.02 0.00 ind:pre:2s; +ramoneur ramoneur NOM m s 0.12 0.88 0.08 0.74 +ramoneurs ramoneur NOM m p 0.12 0.88 0.03 0.14 +ramons ramer VER 5.37 6.42 0.04 0.07 imp:pre:1p;ind:pre:1p; +ramoné ramoner VER m s 0.60 1.55 0.03 0.07 par:pas; +ramonée ramoner VER f s 0.60 1.55 0.03 0.07 par:pas; +ramonées ramoner VER f p 0.60 1.55 0.10 0.07 par:pas; +rampa ramper VER 11.55 19.39 0.02 1.08 ind:pas:3s; +rampai ramper VER 11.55 19.39 0.01 0.20 ind:pas:1s; +rampaient ramper VER 11.55 19.39 0.27 0.95 ind:imp:3p; +rampais ramper VER 11.55 19.39 0.16 0.27 ind:imp:1s;ind:imp:2s; +rampait ramper VER 11.55 19.39 0.23 2.09 ind:imp:3s; +rampant ramper VER 11.55 19.39 1.51 3.51 par:pre; +rampante rampant ADJ f s 0.68 2.84 0.15 0.68 +rampantes rampant ADJ f p 0.68 2.84 0.20 0.68 +rampants rampant ADJ m p 0.68 2.84 0.19 0.68 +rampe rampe NOM f s 5.76 20.81 5.32 18.18 +rampement rampement NOM m s 0.00 0.20 0.00 0.07 +rampements rampement NOM m p 0.00 0.20 0.00 0.14 +rampent ramper VER 11.55 19.39 0.68 1.42 ind:pre:3p; +ramper ramper VER 11.55 19.39 3.32 5.20 inf; +rampera ramper VER 11.55 19.39 0.05 0.07 ind:fut:3s; +ramperai ramper VER 11.55 19.39 0.04 0.00 ind:fut:1s; +ramperaient ramper VER 11.55 19.39 0.00 0.07 cnd:pre:3p; +ramperais ramper VER 11.55 19.39 0.19 0.00 cnd:pre:1s;cnd:pre:2s; +ramperas ramper VER 11.55 19.39 0.13 0.00 ind:fut:2s; +ramperez ramper VER 11.55 19.39 0.02 0.07 ind:fut:2p; +rampes ramper VER 11.55 19.39 0.95 0.00 ind:pre:2s; +rampez ramper VER 11.55 19.39 1.32 0.07 imp:pre:2p;ind:pre:2p; +rampiez ramper VER 11.55 19.39 0.03 0.00 ind:imp:2p; +rampions ramper VER 11.55 19.39 0.02 0.07 ind:imp:1p; +ramponneau ramponneau NOM m s 0.00 0.34 0.00 0.34 +rampons ramper VER 11.55 19.39 0.01 0.07 ind:pre:1p; +rampèrent ramper VER 11.55 19.39 0.00 0.14 ind:pas:3p; +rampé ramper VER m s 11.55 19.39 0.64 0.74 par:pas; +rampée ramper VER f s 11.55 19.39 0.01 0.00 par:pas; +rams rams NOM m 0.35 0.00 0.35 0.00 +ramser ramser VER 0.01 0.00 0.01 0.00 inf; +ramène ramener VER 172.70 109.26 49.52 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +ramènent ramener VER 172.70 109.26 2.04 2.16 ind:pre:3p;sub:pre:3p; +ramènera ramener VER 172.70 109.26 3.95 1.15 ind:fut:3s; +ramènerai ramener VER 172.70 109.26 3.52 0.68 ind:fut:1s; +ramèneraient ramener VER 172.70 109.26 0.14 0.20 cnd:pre:3p; +ramènerais ramener VER 172.70 109.26 0.44 0.47 cnd:pre:1s;cnd:pre:2s; +ramènerait ramener VER 172.70 109.26 0.73 2.03 cnd:pre:3s; +ramèneras ramener VER 172.70 109.26 0.42 0.14 ind:fut:2s; +ramènerez ramener VER 172.70 109.26 0.48 0.14 ind:fut:2p; +ramèneriez ramener VER 172.70 109.26 0.17 0.14 cnd:pre:2p; +ramènerions ramener VER 172.70 109.26 0.03 0.07 cnd:pre:1p; +ramènerons ramener VER 172.70 109.26 0.76 0.20 ind:fut:1p; +ramèneront ramener VER 172.70 109.26 0.94 0.27 ind:fut:3p; +ramènes ramener VER 172.70 109.26 7.23 0.74 ind:pre:2s;sub:pre:2s; +ramèrent ramer VER 5.37 6.42 0.02 0.07 ind:pas:3p; +ramé ramer VER m s 5.37 6.42 0.28 0.27 par:pas; +ramée ramée NOM f s 0.00 0.34 0.00 0.14 +ramées ramée NOM f p 0.00 0.34 0.00 0.20 +ramure ramure NOM f s 0.12 4.12 0.01 1.55 +ramures ramure NOM f p 0.12 4.12 0.11 2.57 +ramés ramer VER m p 5.37 6.42 0.00 0.07 par:pas; +ran ran NOM m s 0.34 0.74 0.34 0.74 +ranatres ranatre NOM f p 0.00 0.07 0.00 0.07 +rancard rancard NOM m s 2.80 1.22 2.60 1.15 +rancardait rancarder VER 0.35 0.61 0.00 0.07 ind:imp:3s; +rancarde rancarder VER 0.35 0.61 0.10 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rancarder rancarder VER 0.35 0.61 0.07 0.34 inf; +rancardez rancarder VER 0.35 0.61 0.01 0.00 ind:pre:2p; +rancards rancard NOM m p 2.80 1.22 0.20 0.07 +rancardé rancarder VER m s 0.35 0.61 0.11 0.00 par:pas; +rancardée rancarder VER f s 0.35 0.61 0.01 0.07 par:pas; +rancardés rancarder VER m p 0.35 0.61 0.04 0.00 par:pas; +rancart rancart NOM m s 0.82 1.76 0.76 1.62 +rancarts rancart NOM m p 0.82 1.76 0.06 0.14 +rance rance ADJ s 1.34 4.26 1.18 3.65 +rances rance ADJ p 1.34 4.26 0.16 0.61 +ranch ranch NOM m s 7.31 0.81 6.95 0.61 +ranche ranch NOM f s 7.31 0.81 0.10 0.00 +rancher rancher NOM m s 0.15 0.00 0.15 0.00 +ranches ranche NOM f p 0.10 0.00 0.10 0.00 +rancho rancho NOM m s 0.87 0.00 0.87 0.00 +ranchs ranch NOM m p 7.31 0.81 0.26 0.00 +ranci ranci ADJ m s 0.04 0.27 0.02 0.07 +rancie ranci ADJ f s 0.04 0.27 0.01 0.07 +rancies rancir VER f p 0.01 0.54 0.00 0.07 par:pas; +rancio rancio NOM m s 0.00 0.20 0.00 0.20 +rancir rancir VER 0.01 0.54 0.00 0.20 inf; +rancis rancir VER 0.01 0.54 0.01 0.00 ind:pre:2s; +rancissait rancir VER 0.01 0.54 0.00 0.14 ind:imp:3s; +rancissure rancissure NOM f s 0.00 0.07 0.00 0.07 +rancit rancir VER 0.01 0.54 0.00 0.07 ind:pas:3s; +rancoeur rancoeur NOM f s 1.31 6.15 1.09 4.46 +rancoeurs rancoeur NOM f p 1.31 6.15 0.22 1.69 +rancune rancune NOM f s 7.20 17.23 6.76 14.86 +rancunes rancune NOM f p 7.20 17.23 0.44 2.36 +rancuneuses rancuneux ADJ f p 0.00 0.07 0.00 0.07 +rancunier rancunier ADJ m s 1.46 1.69 1.09 1.01 +rancuniers rancunier ADJ m p 1.46 1.69 0.17 0.14 +rancunière rancunier ADJ f s 1.46 1.69 0.17 0.54 +rancunières rancunier ADJ f p 1.46 1.69 0.02 0.00 +randonnait randonner VER 0.13 0.20 0.00 0.07 ind:imp:3s; +randonne randonner VER 0.13 0.20 0.01 0.07 imp:pre:2s;ind:pre:3s; +randonner randonner VER 0.13 0.20 0.04 0.00 inf; +randonneur randonneur NOM m s 0.40 0.20 0.17 0.00 +randonneurs randonneur NOM m p 0.40 0.20 0.20 0.20 +randonneuse randonneur NOM f s 0.40 0.20 0.03 0.00 +randonnez randonner VER 0.13 0.20 0.01 0.00 ind:pre:2p; +randonnée randonnée NOM f s 2.22 4.66 1.74 2.64 +randonnées randonnée NOM f p 2.22 4.66 0.48 2.03 +rang rang NOM m s 28.21 58.24 19.40 37.16 +range ranger VER 47.67 67.91 17.59 7.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rangea ranger VER 47.67 67.91 0.02 8.78 ind:pas:3s; +rangeai ranger VER 47.67 67.91 0.00 0.74 ind:pas:1s; +rangeaient ranger VER 47.67 67.91 0.03 1.82 ind:imp:3p; +rangeais ranger VER 47.67 67.91 0.50 1.08 ind:imp:1s;ind:imp:2s; +rangeait ranger VER 47.67 67.91 0.18 6.69 ind:imp:3s; +rangeant ranger VER 47.67 67.91 0.20 2.70 par:pre; +rangement rangement NOM m s 1.21 2.16 1.14 1.49 +rangements rangement NOM m p 1.21 2.16 0.07 0.68 +rangent ranger VER 47.67 67.91 0.47 1.08 ind:pre:3p; +rangeâmes ranger VER 47.67 67.91 0.00 0.07 ind:pas:1p; +rangeons ranger VER 47.67 67.91 0.20 0.14 imp:pre:1p;ind:pre:1p; +rangeât ranger VER 47.67 67.91 0.00 0.07 sub:imp:3s; +ranger ranger VER 47.67 67.91 14.95 14.53 inf; +rangera ranger VER 47.67 67.91 0.31 0.20 ind:fut:3s; +rangerai ranger VER 47.67 67.91 0.58 0.07 ind:fut:1s; +rangerais ranger VER 47.67 67.91 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +rangerait ranger VER 47.67 67.91 0.02 0.07 cnd:pre:3s; +rangeras ranger VER 47.67 67.91 0.10 0.14 ind:fut:2s; +rangerez ranger VER 47.67 67.91 0.16 0.00 ind:fut:2p; +rangerons ranger VER 47.67 67.91 0.00 0.07 ind:fut:1p; +rangeront ranger VER 47.67 67.91 0.06 0.07 ind:fut:3p; +rangers ranger NOM m p 4.60 3.38 2.36 2.36 +ranges ranger VER 47.67 67.91 1.21 0.14 ind:pre:2s;sub:pre:2s; +rangez ranger VER 47.67 67.91 4.54 0.68 imp:pre:2p;ind:pre:2p; +rangions ranger VER 47.67 67.91 0.01 0.20 ind:imp:1p; +rangs rang NOM m p 28.21 58.24 8.81 21.08 +rangèrent ranger VER 47.67 67.91 0.00 0.47 ind:pas:3p; +rangé ranger VER m s 47.67 67.91 4.09 8.78 par:pas; +rangée rangée NOM f s 3.29 20.47 2.54 10.88 +rangées rangée NOM f p 3.29 20.47 0.74 9.59 +rangés ranger VER m p 47.67 67.91 1.03 6.35 par:pas; +rani rani NOM f s 0.00 1.08 0.00 1.08 +ranima ranimer VER 2.92 9.19 0.14 0.74 ind:pas:3s; +ranimaient ranimer VER 2.92 9.19 0.00 0.34 ind:imp:3p; +ranimait ranimer VER 2.92 9.19 0.01 0.74 ind:imp:3s; +ranimant ranimer VER 2.92 9.19 0.02 0.20 par:pre; +ranimation ranimation NOM f s 0.00 0.07 0.00 0.07 +ranime ranimer VER 2.92 9.19 0.77 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raniment ranimer VER 2.92 9.19 0.04 0.20 ind:pre:3p; +ranimer ranimer VER 2.92 9.19 1.26 3.45 inf; +ranimera ranimer VER 2.92 9.19 0.05 0.00 ind:fut:3s; +ranimez ranimer VER 2.92 9.19 0.03 0.00 imp:pre:2p; +ranimions ranimer VER 2.92 9.19 0.00 0.07 ind:imp:1p; +ranimât ranimer VER 2.92 9.19 0.00 0.07 sub:imp:3s; +ranimèrent ranimer VER 2.92 9.19 0.00 0.27 ind:pas:3p; +ranimé ranimer VER m s 2.92 9.19 0.22 1.22 par:pas; +ranimée ranimer VER f s 2.92 9.19 0.22 0.54 par:pas; +ranimées ranimer VER f p 2.92 9.19 0.00 0.14 par:pas; +ranimés ranimer VER m p 2.92 9.19 0.17 0.41 par:pas; +rantanplan rantanplan ONO 0.03 0.07 0.03 0.07 +rançon rançon NOM f s 10.60 2.84 10.49 2.70 +rançonnage rançonnage NOM m s 0.01 0.00 0.01 0.00 +rançonnaient rançonner VER 0.13 0.95 0.00 0.14 ind:imp:3p; +rançonnait rançonner VER 0.13 0.95 0.00 0.27 ind:imp:3s; +rançonne rançonner VER 0.13 0.95 0.04 0.00 ind:pre:1s;ind:pre:3s; +rançonnement rançonnement NOM m s 0.00 0.07 0.00 0.07 +rançonner rançonner VER 0.13 0.95 0.04 0.20 inf; +rançonneurs rançonneur NOM m p 0.01 0.00 0.01 0.00 +rançonné rançonner VER m s 0.13 0.95 0.02 0.14 par:pas; +rançonnée rançonner VER f s 0.13 0.95 0.02 0.00 par:pas; +rançonnées rançonner VER f p 0.13 0.95 0.00 0.14 par:pas; +rançonnés rançonner VER m p 0.13 0.95 0.00 0.07 par:pas; +rançons rançon NOM f p 10.60 2.84 0.10 0.14 +ranz ranz NOM m 0.00 0.14 0.00 0.14 +raout raout NOM m s 0.10 0.74 0.08 0.41 +raouts raout NOM m p 0.10 0.74 0.02 0.34 +rap rap NOM m s 3.17 0.07 3.17 0.07 +rapace rapace ADJ s 0.95 1.28 0.86 0.47 +rapaces rapace NOM m p 0.92 2.70 0.39 1.22 +rapacité rapacité NOM f s 0.05 0.81 0.05 0.81 +rapatria rapatrier VER 2.48 3.11 0.00 0.07 ind:pas:3s; +rapatriait rapatrier VER 2.48 3.11 0.01 0.14 ind:imp:3s; +rapatriant rapatrier VER 2.48 3.11 0.01 0.07 par:pre; +rapatrie rapatrier VER 2.48 3.11 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rapatriement rapatriement NOM m s 0.29 1.96 0.29 1.89 +rapatriements rapatriement NOM m p 0.29 1.96 0.00 0.07 +rapatrient rapatrier VER 2.48 3.11 0.02 0.00 ind:pre:3p; +rapatrier rapatrier VER 2.48 3.11 1.36 0.88 inf; +rapatriera rapatrier VER 2.48 3.11 0.16 0.00 ind:fut:3s; +rapatriez rapatrier VER 2.48 3.11 0.13 0.00 imp:pre:2p;ind:pre:2p; +rapatrié rapatrier VER m s 2.48 3.11 0.33 0.81 par:pas; +rapatriée rapatrier VER f s 2.48 3.11 0.01 0.20 par:pas; +rapatriées rapatrier VER f p 2.48 3.11 0.01 0.14 par:pas; +rapatriés rapatrier VER m p 2.48 3.11 0.35 0.74 par:pas; +rapetassage rapetassage NOM m s 0.00 0.14 0.00 0.07 +rapetassages rapetassage NOM m p 0.00 0.14 0.00 0.07 +rapetasser rapetasser VER 0.00 0.61 0.00 0.14 inf; +rapetasseur rapetasseur NOM m s 0.00 0.07 0.00 0.07 +rapetassions rapetasser VER 0.00 0.61 0.00 0.07 ind:imp:1p; +rapetassé rapetasser VER m s 0.00 0.61 0.00 0.20 par:pas; +rapetassées rapetasser VER f p 0.00 0.61 0.00 0.07 par:pas; +rapetassés rapetasser VER m p 0.00 0.61 0.00 0.14 par:pas; +rapetissaient rapetisser VER 0.76 4.86 0.00 0.27 ind:imp:3p; +rapetissais rapetisser VER 0.76 4.86 0.00 0.07 ind:imp:1s; +rapetissait rapetisser VER 0.76 4.86 0.03 1.08 ind:imp:3s; +rapetissant rapetisser VER 0.76 4.86 0.00 0.47 par:pre; +rapetisse rapetisser VER 0.76 4.86 0.26 0.54 ind:pre:1s;ind:pre:3s; +rapetissement rapetissement NOM m s 0.01 0.27 0.01 0.27 +rapetissent rapetisser VER 0.76 4.86 0.04 0.47 ind:pre:3p; +rapetisser rapetisser VER 0.76 4.86 0.19 0.47 inf; +rapetissera rapetisser VER 0.76 4.86 0.00 0.07 ind:fut:3s; +rapetissez rapetisser VER 0.76 4.86 0.01 0.00 ind:pre:2p; +rapetissons rapetisser VER 0.76 4.86 0.01 0.07 ind:pre:1p; +rapetissèrent rapetisser VER 0.76 4.86 0.00 0.07 ind:pas:3p; +rapetissé rapetisser VER m s 0.76 4.86 0.20 0.61 par:pas; +rapetissée rapetisser VER f s 0.76 4.86 0.03 0.14 par:pas; +rapetissées rapetisser VER f p 0.76 4.86 0.00 0.27 par:pas; +rapetissés rapetisser VER m p 0.76 4.86 0.00 0.27 par:pas; +raphaélesque raphaélesque ADJ f s 0.00 0.07 0.00 0.07 +raphia raphia NOM m s 0.16 1.28 0.16 1.28 +raphé raphé NOM m s 0.00 0.07 0.00 0.07 +rapiat rapiat NOM m s 0.20 0.14 0.05 0.07 +rapiater rapiater VER 0.00 0.07 0.00 0.07 inf; +rapiaterie rapiaterie NOM f s 0.00 0.07 0.00 0.07 +rapiats rapiat NOM m p 0.20 0.14 0.15 0.07 +rapide rapide ADJ s 48.73 71.82 42.28 53.99 +rapidement rapidement ADV 26.49 62.64 26.49 62.64 +rapides rapide ADJ p 48.73 71.82 6.45 17.84 +rapidité rapidité NOM f s 2.36 10.54 2.36 10.41 +rapidités rapidité NOM f p 2.36 10.54 0.00 0.14 +rapidos rapidos ADV 0.53 1.89 0.53 1.89 +rapin rapin NOM m s 0.00 1.22 0.00 0.74 +rapine rapine NOM f s 0.13 1.69 0.08 1.15 +rapinent rapiner VER 0.00 0.14 0.00 0.07 ind:pre:3p; +rapines rapine NOM f p 0.13 1.69 0.05 0.54 +rapins rapin NOM m p 0.00 1.22 0.00 0.47 +rapinés rapiner VER m p 0.00 0.14 0.00 0.07 par:pas; +rapière rapière NOM f s 0.17 0.74 0.17 0.74 +rapiécer rapiécer VER 0.18 4.53 0.14 0.00 inf; +rapiécerait rapiécer VER 0.18 4.53 0.00 0.07 cnd:pre:3s; +rapiécé rapiécer VER m s 0.18 4.53 0.02 0.88 par:pas; +rapiécée rapiécer VER f s 0.18 4.53 0.02 1.62 par:pas; +rapiécées rapiécer VER f p 0.18 4.53 0.00 0.74 par:pas; +rapiécés rapiécer VER m p 0.18 4.53 0.00 1.22 par:pas; +rapiéçage rapiéçage NOM m s 0.01 0.20 0.01 0.00 +rapiéçages rapiéçage NOM m p 0.01 0.20 0.00 0.20 +raplapla raplapla ADJ 0.11 0.00 0.11 0.00 +rapointir rapointir VER 0.00 0.14 0.00 0.14 inf; +rappel rappel NOM m s 4.24 10.34 3.77 8.31 +rappela rappeler VER 281.75 202.23 0.36 14.53 ind:pas:3s; +rappelai rappeler VER 281.75 202.23 0.04 5.14 ind:pas:1s; +rappelaient rappeler VER 281.75 202.23 0.37 7.50 ind:imp:3p; +rappelais rappeler VER 281.75 202.23 1.94 7.43 ind:imp:1s;ind:imp:2s; +rappelait rappeler VER 281.75 202.23 2.22 29.73 ind:imp:3s; +rappelant rappeler VER 281.75 202.23 0.54 6.69 par:pre; +rappeler rappeler VER 281.75 202.23 46.03 33.11 inf;; +rappelez rappeler VER 281.75 202.23 36.35 8.04 imp:pre:2p;ind:pre:2p; +rappeliez rappeler VER 281.75 202.23 0.46 0.34 ind:imp:2p; +rappelions rappeler VER 281.75 202.23 0.15 0.07 ind:imp:1p; +rappelle rappeler VER 281.75 202.23 117.92 57.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rappellent rappeler VER 281.75 202.23 2.79 3.45 ind:pre:3p; +rappellera rappeler VER 281.75 202.23 4.08 1.28 ind:fut:3s; +rappellerai rappeler VER 281.75 202.23 7.96 0.95 ind:fut:1s; +rappelleraient rappeler VER 281.75 202.23 0.05 0.14 cnd:pre:3p; +rappellerais rappeler VER 281.75 202.23 0.79 0.27 cnd:pre:1s;cnd:pre:2s; +rappellerait rappeler VER 281.75 202.23 0.36 1.42 cnd:pre:3s; +rappelleras rappeler VER 281.75 202.23 1.00 0.34 ind:fut:2s; +rappellerez rappeler VER 281.75 202.23 0.62 0.14 ind:fut:2p; +rappelleriez rappeler VER 281.75 202.23 0.19 0.07 cnd:pre:2p; +rappellerons rappeler VER 281.75 202.23 0.37 0.07 ind:fut:1p; +rappelleront rappeler VER 281.75 202.23 0.45 0.00 ind:fut:3p; +rappelles rappeler VER 281.75 202.23 37.34 8.38 ind:pre:1p;ind:pre:2s;sub:pre:2s; +rappelâmes rappeler VER 281.75 202.23 0.10 0.00 ind:pas:1p; +rappelons rappeler VER 281.75 202.23 1.90 0.41 imp:pre:1p;ind:pre:1p; +rappelât rappeler VER 281.75 202.23 0.00 0.47 sub:imp:3s; +rappels rappel NOM m p 4.24 10.34 0.47 2.03 +rappelèrent rappeler VER 281.75 202.23 0.01 1.01 ind:pas:3p; +rappelé rappeler VER m s 281.75 202.23 14.60 11.49 par:pas; +rappelée rappeler VER f s 281.75 202.23 1.82 1.15 par:pas; +rappelés rappeler VER m p 281.75 202.23 0.94 0.95 par:pas; +rapper rapper VER 0.40 0.00 0.40 0.00 inf; +rappeur rappeur NOM m s 1.01 0.00 0.65 0.00 +rappeurs rappeur NOM m p 1.01 0.00 0.34 0.00 +rappeuse rappeur NOM f s 1.01 0.00 0.02 0.00 +rappliqua rappliquer VER 4.22 5.74 0.00 0.20 ind:pas:3s; +rappliquaient rappliquer VER 4.22 5.74 0.01 0.41 ind:imp:3p; +rappliquais rappliquer VER 4.22 5.74 0.00 0.07 ind:imp:2s; +rappliquait rappliquer VER 4.22 5.74 0.00 0.47 ind:imp:3s; +rapplique rappliquer VER 4.22 5.74 1.38 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rappliquent rappliquer VER 4.22 5.74 0.50 1.01 ind:pre:3p; +rappliquer rappliquer VER 4.22 5.74 1.31 1.76 inf; +rappliquera rappliquer VER 4.22 5.74 0.04 0.00 ind:fut:3s; +rappliquerais rappliquer VER 4.22 5.74 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +rappliquerait rappliquer VER 4.22 5.74 0.01 0.00 cnd:pre:3s; +rappliqueriez rappliquer VER 4.22 5.74 0.00 0.07 cnd:pre:2p; +rappliqueront rappliquer VER 4.22 5.74 0.15 0.14 ind:fut:3p; +rappliques rappliquer VER 4.22 5.74 0.07 0.20 ind:pre:2s; +rappliquez rappliquer VER 4.22 5.74 0.28 0.14 imp:pre:2p;ind:pre:2p; +rappliquèrent rappliquer VER 4.22 5.74 0.00 0.07 ind:pas:3p; +rappliqué rappliquer VER m s 4.22 5.74 0.43 0.47 par:pas; +rapport rapport NOM m s 140.08 130.95 115.57 87.23 +rapporta rapporter VER 56.99 62.43 0.43 3.45 ind:pas:3s; +rapportage rapportage NOM m s 0.01 0.00 0.01 0.00 +rapportai rapporter VER 56.99 62.43 0.00 1.01 ind:pas:1s; +rapportaient rapporter VER 56.99 62.43 0.26 2.03 ind:imp:3p; +rapportais rapporter VER 56.99 62.43 0.35 0.95 ind:imp:1s;ind:imp:2s; +rapportait rapporter VER 56.99 62.43 1.12 7.64 ind:imp:3s; +rapportant rapporter VER 56.99 62.43 0.28 1.76 par:pre; +rapporte rapporter VER 56.99 62.43 21.03 10.74 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rapportent rapporter VER 56.99 62.43 1.98 2.03 ind:pre:3p; +rapporter rapporter VER 56.99 62.43 12.12 11.96 inf; +rapportera rapporter VER 56.99 62.43 2.13 0.68 ind:fut:3s; +rapporterai rapporter VER 56.99 62.43 1.94 0.54 ind:fut:1s; +rapporteraient rapporter VER 56.99 62.43 0.08 0.00 cnd:pre:3p; +rapporterais rapporter VER 56.99 62.43 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +rapporterait rapporter VER 56.99 62.43 0.52 0.95 cnd:pre:3s; +rapporteras rapporter VER 56.99 62.43 0.40 0.27 ind:fut:2s; +rapporterez rapporter VER 56.99 62.43 0.46 0.27 ind:fut:2p; +rapporteriez rapporter VER 56.99 62.43 0.02 0.00 cnd:pre:2p; +rapporterons rapporter VER 56.99 62.43 0.03 0.00 ind:fut:1p; +rapporteront rapporter VER 56.99 62.43 0.11 0.07 ind:fut:3p; +rapportes rapporter VER 56.99 62.43 0.94 0.41 ind:pre:2s; +rapporteur rapporteur NOM m s 0.55 0.61 0.10 0.41 +rapporteurs rapporteur NOM m p 0.55 0.61 0.01 0.14 +rapporteuse rapporteur NOM f s 0.55 0.61 0.43 0.07 +rapporteuses rapporteuse NOM f p 0.03 0.00 0.03 0.00 +rapportez rapporter VER 56.99 62.43 2.19 0.47 imp:pre:2p;ind:pre:2p; +rapportiez rapporter VER 56.99 62.43 0.19 0.00 ind:imp:2p; +rapportions rapporter VER 56.99 62.43 0.01 0.14 ind:imp:1p; +rapportons rapporter VER 56.99 62.43 0.09 0.20 imp:pre:1p;ind:pre:1p; +rapportât rapporter VER 56.99 62.43 0.00 0.14 sub:imp:3s; +rapports rapport NOM m p 140.08 130.95 24.51 43.72 +rapportèrent rapporter VER 56.99 62.43 0.02 0.34 ind:pas:3p; +rapporté rapporter VER m s 56.99 62.43 8.58 11.89 par:pas; +rapportée rapporter VER f s 56.99 62.43 1.00 1.69 par:pas; +rapportées rapporter VER f p 56.99 62.43 0.42 1.55 par:pas; +rapportés rapporter VER m p 56.99 62.43 0.21 1.28 par:pas; +rapprendre rapprendre VER 0.02 0.27 0.02 0.20 inf; +rappris rapprendre VER 0.02 0.27 0.00 0.07 ind:pas:2s; +rapprocha rapprocher VER 25.18 54.66 0.15 6.62 ind:pas:3s; +rapprochai rapprocher VER 25.18 54.66 0.01 0.34 ind:pas:1s; +rapprochaient rapprocher VER 25.18 54.66 0.30 3.65 ind:imp:3p; +rapprochais rapprocher VER 25.18 54.66 0.05 0.27 ind:imp:1s;ind:imp:2s; +rapprochait rapprocher VER 25.18 54.66 0.69 7.57 ind:imp:3s; +rapprochant rapprocher VER 25.18 54.66 0.50 2.70 par:pre; +rapproche rapprocher VER 25.18 54.66 9.74 8.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rapprochement rapprochement NOM m s 1.69 7.23 1.66 6.55 +rapprochements rapprochement NOM m p 1.69 7.23 0.02 0.68 +rapprochent rapprocher VER 25.18 54.66 1.44 3.11 ind:pre:3p; +rapprocher rapprocher VER 25.18 54.66 6.53 9.93 inf; +rapprochera rapprocher VER 25.18 54.66 0.34 0.41 ind:fut:3s; +rapprocherais rapprocher VER 25.18 54.66 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +rapprocherait rapprocher VER 25.18 54.66 0.14 0.41 cnd:pre:3s; +rapprocheront rapprocher VER 25.18 54.66 0.00 0.07 ind:fut:3p; +rapprocheur rapprocheur NOM m s 0.00 0.14 0.00 0.14 +rapprochez rapprocher VER 25.18 54.66 2.65 0.34 imp:pre:2p;ind:pre:2p; +rapprochiez rapprocher VER 25.18 54.66 0.03 0.07 ind:imp:2p; +rapprochions rapprocher VER 25.18 54.66 0.01 0.14 ind:imp:1p; +rapprochons rapprocher VER 25.18 54.66 0.54 0.34 imp:pre:1p;ind:pre:1p; +rapprochât rapprocher VER 25.18 54.66 0.00 0.07 sub:imp:3s; +rapprochèrent rapprocher VER 25.18 54.66 0.04 1.96 ind:pas:3p; +rapproché rapprocher VER m s 25.18 54.66 0.86 3.51 par:pas; +rapprochée rapproché ADJ f s 1.70 3.72 0.78 0.41 +rapprochées rapproché ADJ f p 1.70 3.72 0.22 1.08 +rapprochés rapprocher VER m p 25.18 54.66 0.54 2.30 par:pas; +rappropriait rapproprier VER 0.00 0.07 0.00 0.07 ind:imp:3s; +rapsodie rapsodie NOM f s 0.02 0.00 0.02 0.00 +rapt rapt NOM m s 1.31 1.62 1.13 1.62 +rapts rapt NOM m p 1.31 1.62 0.18 0.00 +raquaient raquer VER 0.93 2.36 0.00 0.14 ind:imp:3p; +raquait raquer VER 0.93 2.36 0.00 0.07 ind:imp:3s; +raque raquer VER 0.93 2.36 0.34 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +raquent raquer VER 0.93 2.36 0.04 0.07 ind:pre:3p; +raquer raquer VER 0.93 2.36 0.40 0.88 inf; +raques raquer VER 0.93 2.36 0.07 0.00 ind:pre:2s; +raquette raquette NOM f s 2.05 3.51 1.77 1.69 +raquettes raquette NOM f p 2.05 3.51 0.28 1.82 +raquez raquer VER 0.93 2.36 0.02 0.00 imp:pre:2p;ind:pre:2p; +raquons raquer VER 0.93 2.36 0.00 0.07 ind:pre:1p; +raqué raquer VER m s 0.93 2.36 0.05 0.41 par:pas; +raquée raquer VER f s 0.93 2.36 0.01 0.07 par:pas; +raquées raquer VER f p 0.93 2.36 0.00 0.07 par:pas; +rare rare ADJ s 33.27 87.23 22.58 37.23 +rarement rarement ADV 14.05 31.62 14.05 31.62 +rares rare ADJ p 33.27 87.23 10.70 50.00 +rareté rareté NOM f s 0.63 2.43 0.51 2.30 +raretés rareté NOM f p 0.63 2.43 0.13 0.14 +rarissime rarissime ADJ s 0.54 1.96 0.38 1.35 +rarissimement rarissimement ADV 0.00 0.07 0.00 0.07 +rarissimes rarissime ADJ p 0.54 1.96 0.16 0.61 +raréfaction raréfaction NOM f s 0.01 0.27 0.01 0.27 +raréfia raréfier VER 0.35 1.89 0.00 0.14 ind:pas:3s; +raréfiaient raréfier VER 0.35 1.89 0.00 0.07 ind:imp:3p; +raréfiait raréfier VER 0.35 1.89 0.00 0.20 ind:imp:3s; +raréfiant raréfier VER 0.35 1.89 0.00 0.14 par:pre; +raréfie raréfier VER 0.35 1.89 0.06 0.00 ind:pre:3s; +raréfient raréfier VER 0.35 1.89 0.01 0.14 ind:pre:3p; +raréfier raréfier VER 0.35 1.89 0.10 0.27 inf; +raréfièrent raréfier VER 0.35 1.89 0.10 0.20 ind:pas:3p; +raréfié raréfier VER m s 0.35 1.89 0.06 0.34 par:pas; +raréfiée raréfié ADJ f s 0.06 0.34 0.04 0.07 +raréfiées raréfié ADJ f p 0.06 0.34 0.00 0.07 +raréfiés raréfier VER m p 0.35 1.89 0.00 0.20 par:pas; +ras_le_bol ras_le_bol NOM m 1.62 0.47 1.62 0.47 +ras ras ADJ m 7.51 16.89 5.92 9.32 +rasa raser VER 28.54 43.78 0.06 1.49 ind:pas:3s; +rasade rasade NOM f s 0.47 4.86 0.46 3.11 +rasades rasade NOM f p 0.47 4.86 0.01 1.76 +rasage rasage NOM m s 0.95 0.41 0.83 0.41 +rasages rasage NOM m p 0.95 0.41 0.12 0.00 +rasai raser VER 28.54 43.78 0.00 0.07 ind:pas:1s; +rasaient raser VER 28.54 43.78 0.01 0.68 ind:imp:3p; +rasais raser VER 28.54 43.78 0.51 0.47 ind:imp:1s;ind:imp:2s; +rasait raser VER 28.54 43.78 0.44 2.77 ind:imp:3s; +rasant raser VER 28.54 43.78 0.64 3.92 par:pre; +rasante rasant ADJ f s 0.33 1.89 0.15 0.74 +rasantes rasant ADJ f p 0.33 1.89 0.01 0.07 +rasants rasant ADJ m p 0.33 1.89 0.00 0.07 +rascasse rascasse NOM f s 0.41 0.41 0.40 0.00 +rascasses rascasse NOM f p 0.41 0.41 0.01 0.41 +rase_mottes rase_mottes NOM m 0.30 0.47 0.30 0.47 +rase_pet rase_pet NOM m s 0.02 0.20 0.00 0.20 +rase_pet rase_pet NOM m p 0.02 0.20 0.02 0.00 +rase raser VER 28.54 43.78 4.75 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +rasent raser VER 28.54 43.78 0.50 0.68 ind:pre:3p; +raser raser VER 28.54 43.78 10.27 7.50 inf;; +rasera raser VER 28.54 43.78 0.32 0.14 ind:fut:3s; +raserai raser VER 28.54 43.78 0.55 0.14 ind:fut:1s; +raserais raser VER 28.54 43.78 0.08 0.07 cnd:pre:1s;cnd:pre:2s; +raserait raser VER 28.54 43.78 0.05 0.27 cnd:pre:3s; +raseras raser VER 28.54 43.78 0.02 0.14 ind:fut:2s; +raserez raser VER 28.54 43.78 0.01 0.00 ind:fut:2p; +raseront raser VER 28.54 43.78 0.16 0.00 ind:fut:3p; +rases raser VER 28.54 43.78 1.13 0.34 ind:pre:2s; +raseur raseur NOM m s 0.65 1.15 0.46 0.47 +raseurs raseur NOM m p 0.65 1.15 0.16 0.14 +raseuse raseur NOM f s 0.65 1.15 0.03 0.47 +raseuses raseur NOM f p 0.65 1.15 0.00 0.07 +rasez raser VER 28.54 43.78 0.64 0.20 imp:pre:2p;ind:pre:2p; +rash rash NOM m s 0.03 0.07 0.03 0.07 +rasibus rasibus ADV 0.01 0.34 0.01 0.34 +rasiez raser VER 28.54 43.78 0.04 0.00 ind:imp:2p; +rasif rasif NOM m s 0.00 0.54 0.00 0.47 +rasifs rasif NOM m p 0.00 0.54 0.00 0.07 +rasoir rasoir NOM m s 8.92 16.82 8.18 15.61 +rasoirs rasoir NOM m p 8.92 16.82 0.74 1.22 +rasons raser VER 28.54 43.78 0.29 0.00 imp:pre:1p;ind:pre:1p; +rassasiaient rassasier VER 1.48 3.58 0.00 0.27 ind:imp:3p; +rassasiais rassasier VER 1.48 3.58 0.00 0.07 ind:imp:1s; +rassasiait rassasier VER 1.48 3.58 0.00 0.20 ind:imp:3s; +rassasiant rassasiant ADJ m s 0.01 0.07 0.01 0.00 +rassasiantes rassasiant ADJ f p 0.01 0.07 0.00 0.07 +rassasie rassasier VER 1.48 3.58 0.14 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassasient rassasier VER 1.48 3.58 0.02 0.00 ind:pre:3p; +rassasier rassasier VER 1.48 3.58 0.39 0.88 inf; +rassasieraient rassasier VER 1.48 3.58 0.00 0.07 cnd:pre:3p; +rassasiez rassasier VER 1.48 3.58 0.11 0.00 imp:pre:2p; +rassasiât rassasier VER 1.48 3.58 0.00 0.07 sub:imp:3s; +rassasié rassasier VER m s 1.48 3.58 0.50 1.08 par:pas; +rassasiée rassasier VER f s 1.48 3.58 0.18 0.41 par:pas; +rassasiées rassasié ADJ f p 0.53 1.35 0.01 0.07 +rassasiés rassasier VER m p 1.48 3.58 0.14 0.20 par:pas; +rasse rasse NOM f s 0.00 0.07 0.00 0.07 +rassembla rassembler VER 25.99 52.70 0.14 2.97 ind:pas:3s; +rassemblai rassembler VER 25.99 52.70 0.01 0.54 ind:pas:1s; +rassemblaient rassembler VER 25.99 52.70 0.18 2.50 ind:imp:3p; +rassemblais rassembler VER 25.99 52.70 0.07 0.81 ind:imp:1s; +rassemblait rassembler VER 25.99 52.70 0.18 2.97 ind:imp:3s; +rassemblant rassembler VER 25.99 52.70 0.45 2.97 par:pre; +rassemble rassembler VER 25.99 52.70 5.75 5.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassemblement rassemblement NOM m s 4.96 8.24 4.39 7.30 +rassemblements rassemblement NOM m p 4.96 8.24 0.57 0.95 +rassemblent rassembler VER 25.99 52.70 1.59 1.35 ind:pre:3p; +rassembler rassembler VER 25.99 52.70 6.89 11.76 inf; +rassemblera rassembler VER 25.99 52.70 0.26 0.27 ind:fut:3s; +rassemblerai rassembler VER 25.99 52.70 0.05 0.07 ind:fut:1s; +rassembleraient rassembler VER 25.99 52.70 0.00 0.07 cnd:pre:3p; +rassemblerais rassembler VER 25.99 52.70 0.00 0.07 cnd:pre:1s; +rassemblerait rassembler VER 25.99 52.70 0.01 0.20 cnd:pre:3s; +rassembleras rassembler VER 25.99 52.70 0.14 0.00 ind:fut:2s; +rassemblerez rassembler VER 25.99 52.70 0.02 0.00 ind:fut:2p; +rassemblerons rassembler VER 25.99 52.70 0.05 0.00 ind:fut:1p; +rassembleront rassembler VER 25.99 52.70 0.10 0.14 ind:fut:3p; +rassembles rassembler VER 25.99 52.70 0.09 0.07 ind:pre:2s; +rassembleur rassembleur NOM m s 0.00 0.14 0.00 0.14 +rassemblez rassembler VER 25.99 52.70 4.35 0.07 imp:pre:2p;ind:pre:2p; +rassemblons rassembler VER 25.99 52.70 1.06 0.00 imp:pre:1p;ind:pre:1p; +rassemblèrent rassembler VER 25.99 52.70 0.02 0.81 ind:pas:3p; +rassemblé rassembler VER m s 25.99 52.70 2.09 5.54 par:pas; +rassemblée rassembler VER f s 25.99 52.70 0.20 2.77 par:pas; +rassemblées rassembler VER f p 25.99 52.70 0.45 3.45 par:pas; +rassemblés rassembler VER m p 25.99 52.70 1.84 8.18 par:pas; +rasseoir rasseoir VER 1.97 14.05 0.52 2.91 inf; +rasseyaient rasseoir VER 1.97 14.05 0.00 0.07 ind:imp:3p; +rasseyais rasseoir VER 1.97 14.05 0.01 0.14 ind:imp:1s; +rasseyait rasseoir VER 1.97 14.05 0.00 0.41 ind:imp:3s; +rasseyant rasseoir VER 1.97 14.05 0.00 0.61 par:pre; +rasseyent rasseoir VER 1.97 14.05 0.00 0.07 ind:pre:3p; +rasseyez rasseoir VER 1.97 14.05 0.45 0.00 imp:pre:2p;ind:pre:2p; +rasseyons rasseoir VER 1.97 14.05 0.00 0.14 ind:pre:1p; +rassied rasseoir VER 1.97 14.05 0.01 0.74 ind:pre:3s; +rassieds rasseoir VER 1.97 14.05 0.22 0.00 imp:pre:2s;ind:pre:1s; +rassir rassir VER 0.01 0.00 0.01 0.00 inf; +rassirent rasseoir VER 1.97 14.05 0.00 0.14 ind:pas:3p; +rassis rasseoir VER m 1.97 14.05 0.47 3.24 ind:pas:1s;par:pas;par:pas; +rassise rasseoir VER f s 1.97 14.05 0.00 0.61 par:pas; +rassit rasseoir VER 1.97 14.05 0.01 4.12 ind:pas:3s; +rassoie rasseoir VER 1.97 14.05 0.01 0.00 sub:pre:3s; +rassoient rasseoir VER 1.97 14.05 0.00 0.07 ind:pre:3p; +rassoies rasseoir VER 1.97 14.05 0.01 0.00 sub:pre:2s; +rassois rasseoir VER 1.97 14.05 0.01 0.20 ind:pre:1s; +rassoit rasseoir VER 1.97 14.05 0.25 0.54 ind:pre:3s; +rassortiment rassortiment NOM m s 0.00 0.07 0.00 0.07 +rassortir rassortir VER 0.01 0.07 0.01 0.07 inf; +rassoté rassoter VER m s 0.00 0.07 0.00 0.07 par:pas; +rassoyait rasseoir VER 1.97 14.05 0.00 0.07 ind:imp:3s; +rassura rassurer VER 29.25 68.04 0.00 3.65 ind:pas:3s; +rassurai rassurer VER 29.25 68.04 0.01 0.88 ind:pas:1s; +rassuraient rassurer VER 29.25 68.04 0.01 1.42 ind:imp:3p; +rassurais rassurer VER 29.25 68.04 0.00 0.41 ind:imp:1s; +rassurait rassurer VER 29.25 68.04 0.46 5.07 ind:imp:3s; +rassurant rassurant ADJ m s 3.16 16.69 2.81 7.64 +rassurante rassurant ADJ f s 3.16 16.69 0.21 5.34 +rassurantes rassurant ADJ f p 3.16 16.69 0.09 2.50 +rassurants rassurant ADJ m p 3.16 16.69 0.05 1.22 +rassure rassurer VER 29.25 68.04 9.62 9.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rassurement rassurement NOM m s 0.00 0.07 0.00 0.07 +rassurent rassurer VER 29.25 68.04 0.42 0.54 ind:pre:3p; +rassurer rassurer VER 29.25 68.04 6.06 17.57 inf; +rassurera rassurer VER 29.25 68.04 0.34 0.20 ind:fut:3s; +rassurerait rassurer VER 29.25 68.04 0.34 0.54 cnd:pre:3s; +rassureront rassurer VER 29.25 68.04 0.14 0.07 ind:fut:3p; +rassures rassurer VER 29.25 68.04 0.58 0.14 ind:pre:2s; +rassurez rassurer VER 29.25 68.04 5.42 3.51 imp:pre:2p;ind:pre:2p; +rassuriez rassurer VER 29.25 68.04 0.00 0.07 ind:imp:2p; +rassurâmes rassurer VER 29.25 68.04 0.00 0.07 ind:pas:1p; +rassurons rassurer VER 29.25 68.04 0.02 0.20 imp:pre:1p;ind:pre:1p; +rassurât rassurer VER 29.25 68.04 0.00 0.14 sub:imp:3s; +rassérène rasséréner VER 0.02 4.39 0.00 0.41 ind:pre:1s;ind:pre:3s; +rassurèrent rassurer VER 29.25 68.04 0.00 0.34 ind:pas:3p; +rassuré rassurer VER m s 29.25 68.04 2.56 12.50 par:pas; +rassurée rassurer VER f s 29.25 68.04 2.44 5.88 par:pas; +rassurées rassurer VER f p 29.25 68.04 0.19 0.27 par:pas; +rasséréna rasséréner VER 0.02 4.39 0.00 0.54 ind:pas:3s; +rassérénai rasséréner VER 0.02 4.39 0.00 0.27 ind:pas:1s; +rassérénait rasséréner VER 0.02 4.39 0.01 0.34 ind:imp:3s; +rassérénant rasséréner VER 0.02 4.39 0.00 0.07 par:pre; +rasséréner rasséréner VER 0.02 4.39 0.00 0.20 inf; +rassérénera rasséréner VER 0.02 4.39 0.00 0.07 ind:fut:3s; +rasséréné rasséréner VER m s 0.02 4.39 0.00 1.82 par:pas; +rassérénée rasséréner VER f s 0.02 4.39 0.00 0.54 par:pas; +rassérénées rasséréner VER f p 0.02 4.39 0.00 0.07 par:pas; +rassérénés rasséréner VER m p 0.02 4.39 0.01 0.07 par:pas; +rassurés rassurer VER m p 29.25 68.04 0.55 2.64 par:pas; +rasta rasta NOM m s 0.43 0.34 0.32 0.20 +rastafari rastafari ADJ m s 0.03 0.00 0.03 0.00 +rastafari rastafari NOM m s 0.03 0.00 0.03 0.00 +rastaquouère rastaquouère NOM m s 0.05 0.41 0.01 0.20 +rastaquouères rastaquouère NOM m p 0.05 0.41 0.04 0.20 +rastas rasta NOM m p 0.43 0.34 0.12 0.14 +rasèrent raser VER 28.54 43.78 0.00 0.14 ind:pas:3p; +rasé raser VER m s 28.54 43.78 5.35 13.92 par:pas; +rasée raser VER f s 28.54 43.78 1.83 3.51 par:pas; +rasées raser VER f p 28.54 43.78 0.16 1.82 par:pas; +rasés raser VER m p 28.54 43.78 0.76 2.91 par:pas; +rat_de_cave rat_de_cave NOM m s 0.00 0.07 0.00 0.07 +rat rat NOM m s 45.60 37.64 24.21 20.81 +rata rata NOM m s 0.53 0.27 0.53 0.27 +ratafia ratafia NOM m s 0.02 0.54 0.02 0.54 +ratage ratage NOM m s 0.63 1.01 0.16 0.68 +ratages ratage NOM m p 0.63 1.01 0.47 0.34 +ratai rater VER 80.45 22.70 0.00 0.27 ind:pas:1s; +rataient rater VER 80.45 22.70 0.03 0.14 ind:imp:3p; +ratais rater VER 80.45 22.70 0.31 0.34 ind:imp:1s;ind:imp:2s; +ratait rater VER 80.45 22.70 0.23 1.22 ind:imp:3s; +ratant rater VER 80.45 22.70 0.09 0.07 par:pre; +rataplan rataplan ONO 0.00 0.07 0.00 0.07 +ratatinai ratatiner VER 0.69 3.65 0.00 0.07 ind:pas:1s; +ratatinaient ratatiner VER 0.69 3.65 0.00 0.14 ind:imp:3p; +ratatinais ratatiner VER 0.69 3.65 0.01 0.00 ind:imp:1s; +ratatinait ratatiner VER 0.69 3.65 0.00 0.47 ind:imp:3s; +ratatine ratatiner VER 0.69 3.65 0.13 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ratatinent ratatiner VER 0.69 3.65 0.01 0.00 ind:pre:3p; +ratatiner ratatiner VER 0.69 3.65 0.21 0.54 inf; +ratatinerait ratatiner VER 0.69 3.65 0.01 0.07 cnd:pre:3s; +ratatineront ratatiner VER 0.69 3.65 0.01 0.07 ind:fut:3p; +ratatiné ratatiner VER m s 0.69 3.65 0.24 1.08 par:pas; +ratatinée ratatiner VER f s 0.69 3.65 0.04 0.61 par:pas; +ratatinées ratatiné ADJ f p 0.40 2.09 0.11 0.27 +ratatinés ratatiner VER m p 0.69 3.65 0.03 0.27 par:pas; +ratatouille ratatouille NOM f s 0.54 0.74 0.54 0.61 +ratatouilles ratatouille NOM f p 0.54 0.74 0.00 0.14 +rate rater VER 80.45 22.70 8.32 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +ratent rater VER 80.45 22.70 0.54 0.61 ind:pre:3p; +rater rater VER 80.45 22.70 24.71 6.28 inf; +ratera rater VER 80.45 22.70 0.42 0.00 ind:fut:3s; +raterai rater VER 80.45 22.70 0.64 0.00 ind:fut:1s; +raterais rater VER 80.45 22.70 0.63 0.14 cnd:pre:1s;cnd:pre:2s; +raterait rater VER 80.45 22.70 0.40 0.07 cnd:pre:3s; +rateras rater VER 80.45 22.70 0.21 0.07 ind:fut:2s; +raterez rater VER 80.45 22.70 0.34 0.00 ind:fut:2p; +rateriez rater VER 80.45 22.70 0.03 0.00 cnd:pre:2p; +raterons rater VER 80.45 22.70 0.14 0.00 ind:fut:1p; +rateront rater VER 80.45 22.70 0.27 0.07 ind:fut:3p; +rates rater VER 80.45 22.70 3.75 0.27 ind:pre:2s;sub:pre:2s; +ratez rater VER 80.45 22.70 2.10 0.14 imp:pre:2p;ind:pre:2p; +ratiboisaient ratiboiser VER 0.09 0.81 0.00 0.07 ind:imp:3p; +ratiboisait ratiboiser VER 0.09 0.81 0.00 0.14 ind:imp:3s; +ratiboiser ratiboiser VER 0.09 0.81 0.06 0.07 inf; +ratiboises ratiboiser VER 0.09 0.81 0.00 0.07 ind:pre:2s; +ratiboisé ratiboiser VER m s 0.09 0.81 0.01 0.47 par:pas; +ratiboisés ratiboiser VER m p 0.09 0.81 0.02 0.00 par:pas; +ratiche ratiche NOM f s 0.04 1.76 0.00 0.47 +ratiches ratiche NOM f p 0.04 1.76 0.04 1.28 +ratichon ratichon NOM m s 0.00 0.61 0.00 0.41 +ratichons ratichon NOM m p 0.00 0.61 0.00 0.20 +raticide raticide NOM m s 0.04 0.00 0.04 0.00 +ratier ratier NOM m s 0.00 0.88 0.00 0.88 +ratiez rater VER 80.45 22.70 0.20 0.07 ind:imp:2p;sub:pre:2p; +ratifia ratifier VER 0.80 1.22 0.00 0.07 ind:pas:3s; +ratifiant ratifier VER 0.80 1.22 0.00 0.07 par:pre; +ratification ratification NOM f s 0.28 1.08 0.28 1.08 +ratifie ratifier VER 0.80 1.22 0.04 0.07 ind:pre:3s; +ratifient ratifier VER 0.80 1.22 0.00 0.07 ind:pre:3p; +ratifier ratifier VER 0.80 1.22 0.30 0.27 inf; +ratifieront ratifier VER 0.80 1.22 0.02 0.00 ind:fut:3p; +ratifié ratifier VER m s 0.80 1.22 0.34 0.27 par:pas; +ratifiée ratifier VER f s 0.80 1.22 0.10 0.27 par:pas; +ratifiés ratifier VER m p 0.80 1.22 0.00 0.14 par:pas; +ratine ratine NOM f s 0.00 0.47 0.00 0.47 +ratio ratio NOM m s 0.40 0.00 0.40 0.00 +ratiocinait ratiociner VER 0.00 0.14 0.00 0.07 ind:imp:3s; +ratiocinant ratiociner VER 0.00 0.14 0.00 0.07 par:pre; +ratiocination ratiocination NOM f s 0.02 0.54 0.02 0.00 +ratiocinations ratiocination NOM f p 0.02 0.54 0.00 0.54 +ratiocineur ratiocineur NOM m s 0.01 0.14 0.01 0.14 +ration ration NOM f s 3.54 8.18 2.24 5.95 +rational rational NOM m s 0.02 0.00 0.02 0.00 +rationalisation rationalisation NOM f s 0.08 0.20 0.08 0.20 +rationalise rationaliser VER 0.58 0.00 0.22 0.00 ind:pre:1s;ind:pre:3s; +rationaliser rationaliser VER 0.58 0.00 0.34 0.00 inf; +rationalisez rationaliser VER 0.58 0.00 0.01 0.00 ind:pre:2p; +rationalisme rationalisme NOM m s 0.34 0.41 0.34 0.41 +rationaliste rationaliste NOM s 0.14 0.27 0.14 0.20 +rationalistes rationaliste ADJ f p 0.01 0.47 0.00 0.07 +rationalisé rationaliser VER m s 0.58 0.00 0.01 0.00 par:pas; +rationalisée rationalisé ADJ f s 0.01 0.20 0.01 0.20 +rationalité rationalité NOM f s 0.11 0.27 0.11 0.27 +rationne rationner VER 0.66 1.01 0.06 0.07 ind:pre:1s;ind:pre:3s; +rationnel rationnel ADJ m s 3.50 3.04 1.26 1.08 +rationnelle rationnel ADJ f s 3.50 3.04 1.73 1.42 +rationnellement rationnellement ADV 0.41 0.41 0.41 0.41 +rationnelles rationnel ADJ f p 3.50 3.04 0.14 0.34 +rationnels rationnel ADJ m p 3.50 3.04 0.35 0.20 +rationnement rationnement NOM m s 1.12 1.55 1.12 1.55 +rationner rationner VER 0.66 1.01 0.19 0.20 inf; +rationnez rationner VER 0.66 1.01 0.01 0.00 ind:pre:2p; +rationné rationner VER m s 0.66 1.01 0.20 0.41 par:pas; +rationnée rationner VER f s 0.66 1.01 0.02 0.14 par:pas; +rationnées rationner VER f p 0.66 1.01 0.02 0.00 par:pas; +rationnés rationner VER m p 0.66 1.01 0.17 0.20 par:pas; +rations ration NOM f p 3.54 8.18 1.30 2.23 +ratissa ratisser VER 3.45 5.27 0.00 0.20 ind:pas:3s; +ratissage ratissage NOM m s 0.40 0.20 0.40 0.20 +ratissaient ratisser VER 3.45 5.27 0.01 0.20 ind:imp:3p; +ratissais ratisser VER 3.45 5.27 0.01 0.07 ind:imp:1s; +ratissait ratisser VER 3.45 5.27 0.03 0.47 ind:imp:3s; +ratissant ratisser VER 3.45 5.27 0.01 0.27 par:pre; +ratisse ratisser VER 3.45 5.27 0.81 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ratissent ratisser VER 3.45 5.27 0.58 0.00 ind:pre:3p; +ratisser ratisser VER 3.45 5.27 1.13 1.28 inf; +ratisserai ratisser VER 3.45 5.27 0.01 0.00 ind:fut:1s; +ratisseront ratisser VER 3.45 5.27 0.02 0.00 ind:fut:3p; +ratisseur ratisseur ADJ m s 0.00 0.07 0.00 0.07 +ratissez ratisser VER 3.45 5.27 0.27 0.00 imp:pre:2p; +ratissons ratisser VER 3.45 5.27 0.13 0.00 imp:pre:1p;ind:pre:1p; +ratissé ratisser VER m s 3.45 5.27 0.40 1.49 par:pas; +ratissée ratisser VER f s 3.45 5.27 0.01 0.41 par:pas; +ratissées ratisser VER f p 3.45 5.27 0.00 0.27 par:pas; +ratissés ratisser VER m p 3.45 5.27 0.01 0.07 par:pas; +ratite ratite NOM m s 0.05 0.00 0.03 0.00 +ratites ratite NOM m p 0.05 0.00 0.02 0.00 +ratière ratière NOM f s 0.12 1.49 0.12 1.42 +ratières ratière NOM f p 0.12 1.49 0.00 0.07 +raton raton NOM m s 1.70 5.41 1.37 3.11 +ratonnade ratonnade NOM f s 0.01 0.34 0.00 0.14 +ratonnades ratonnade NOM f p 0.01 0.34 0.01 0.20 +ratonnent ratonner VER 0.00 0.20 0.00 0.07 ind:pre:3p; +ratonner ratonner VER 0.00 0.20 0.00 0.14 inf; +ratons raton NOM m p 1.70 5.41 0.33 2.30 +rats rat NOM m p 45.60 37.64 21.39 16.82 +rattacha rattacher VER 2.13 12.03 0.00 0.07 ind:pas:3s; +rattachaient rattacher VER 2.13 12.03 0.00 0.68 ind:imp:3p; +rattachais rattacher VER 2.13 12.03 0.00 0.14 ind:imp:1s; +rattachait rattacher VER 2.13 12.03 0.05 2.43 ind:imp:3s; +rattachant rattacher VER 2.13 12.03 0.11 0.27 par:pre; +rattache rattacher VER 2.13 12.03 0.70 1.08 imp:pre:2s;ind:pre:3s; +rattachement rattachement NOM m s 0.13 0.68 0.13 0.68 +rattachent rattacher VER 2.13 12.03 0.07 0.68 ind:pre:3p; +rattacher rattacher VER 2.13 12.03 0.37 2.30 inf;; +rattachera rattacher VER 2.13 12.03 0.03 0.07 ind:fut:3s; +rattacherait rattacher VER 2.13 12.03 0.00 0.07 cnd:pre:3s; +rattachez rattacher VER 2.13 12.03 0.03 0.07 imp:pre:2p;ind:pre:2p; +rattachions rattacher VER 2.13 12.03 0.00 0.07 ind:imp:1p; +rattachons rattacher VER 2.13 12.03 0.00 0.07 ind:pre:1p; +rattachât rattacher VER 2.13 12.03 0.00 0.07 sub:imp:3s; +rattaché rattacher VER m s 2.13 12.03 0.45 1.35 par:pas; +rattachée rattacher VER f s 2.13 12.03 0.08 1.08 par:pas; +rattachées rattacher VER f p 2.13 12.03 0.06 0.34 par:pas; +rattachés rattacher VER m p 2.13 12.03 0.17 1.22 par:pas; +ratte ratte NOM f s 0.01 0.00 0.01 0.00 +ratèrent rater VER 80.45 22.70 0.00 0.14 ind:pas:3p; +rattrapa rattraper VER 38.32 39.39 0.05 3.99 ind:pas:3s; +rattrapage rattrapage NOM m s 0.88 0.68 0.84 0.61 +rattrapages rattrapage NOM m p 0.88 0.68 0.04 0.07 +rattrapai rattraper VER 38.32 39.39 0.00 0.41 ind:pas:1s; +rattrapaient rattraper VER 38.32 39.39 0.03 0.34 ind:imp:3p; +rattrapais rattraper VER 38.32 39.39 0.06 0.41 ind:imp:1s; +rattrapait rattraper VER 38.32 39.39 0.19 1.82 ind:imp:3s; +rattrapant rattraper VER 38.32 39.39 0.05 1.42 par:pre; +rattrape rattraper VER 38.32 39.39 7.35 4.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rattrapent rattraper VER 38.32 39.39 0.91 0.47 ind:pre:3p; +rattraper rattraper VER 38.32 39.39 16.35 16.49 inf; +rattrapera rattraper VER 38.32 39.39 1.67 0.54 ind:fut:3s; +rattraperai rattraper VER 38.32 39.39 1.41 0.34 ind:fut:1s; +rattraperaient rattraper VER 38.32 39.39 0.04 0.00 cnd:pre:3p; +rattraperais rattraper VER 38.32 39.39 0.23 0.20 cnd:pre:1s;cnd:pre:2s; +rattraperait rattraper VER 38.32 39.39 0.15 0.54 cnd:pre:3s; +rattraperas rattraper VER 38.32 39.39 0.53 0.27 ind:fut:2s; +rattraperez rattraper VER 38.32 39.39 0.34 0.14 ind:fut:2p; +rattraperons rattraper VER 38.32 39.39 0.42 0.14 ind:fut:1p; +rattraperont rattraper VER 38.32 39.39 0.50 0.07 ind:fut:3p; +rattrapes rattraper VER 38.32 39.39 0.37 0.07 ind:pre:2s; +rattrapez rattraper VER 38.32 39.39 3.11 0.07 imp:pre:2p;ind:pre:2p; +rattrapiez rattraper VER 38.32 39.39 0.01 0.00 ind:imp:2p; +rattrapions rattraper VER 38.32 39.39 0.00 0.41 ind:imp:1p; +rattrapons rattraper VER 38.32 39.39 0.82 0.07 imp:pre:1p;ind:pre:1p; +rattrapât rattraper VER 38.32 39.39 0.00 0.07 sub:imp:3s; +rattrapèrent rattraper VER 38.32 39.39 0.02 0.41 ind:pas:3p; +rattrapé rattraper VER m s 38.32 39.39 2.30 3.85 par:pas; +rattrapée rattraper VER f s 38.32 39.39 0.92 1.55 par:pas; +rattrapées rattraper VER f p 38.32 39.39 0.00 0.27 par:pas; +rattrapés rattraper VER m p 38.32 39.39 0.49 0.74 par:pas; +raté rater VER m s 80.45 22.70 34.33 7.70 par:pas; +ratée rater VER f s 80.45 22.70 1.59 1.08 par:pas; +ratées raté ADJ f p 4.52 4.05 0.44 0.34 +ratura raturer VER 0.04 2.09 0.00 0.14 ind:pas:3s; +raturai raturer VER 0.04 2.09 0.00 0.07 ind:pas:1s; +raturais raturer VER 0.04 2.09 0.00 0.07 ind:imp:1s; +raturait raturer VER 0.04 2.09 0.00 0.14 ind:imp:3s; +rature raturer VER 0.04 2.09 0.02 0.07 ind:pre:3s; +raturer raturer VER 0.04 2.09 0.00 0.41 inf; +ratures rature NOM f p 0.13 1.96 0.11 1.49 +raturé raturer VER m s 0.04 2.09 0.02 0.54 par:pas; +raturée raturer VER f s 0.04 2.09 0.00 0.41 par:pas; +raturées raturer VER f p 0.04 2.09 0.00 0.14 par:pas; +raturés raturer VER m p 0.04 2.09 0.00 0.14 par:pas; +ratés raté NOM m p 8.45 4.93 1.27 1.96 +raucité raucité NOM f s 0.00 0.61 0.00 0.61 +rauqua rauquer VER 0.00 0.20 0.00 0.07 ind:pas:3s; +rauque rauque ADJ s 0.44 18.85 0.30 14.80 +rauquement rauquement NOM m s 0.00 0.20 0.00 0.20 +rauques rauque ADJ p 0.44 18.85 0.14 4.05 +ravage ravager VER 3.65 9.26 0.34 0.54 ind:pre:3s; +ravagea ravager VER 3.65 9.26 0.14 0.34 ind:pas:3s; +ravageaient ravager VER 3.65 9.26 0.16 0.68 ind:imp:3p; +ravageais ravager VER 3.65 9.26 0.01 0.00 ind:imp:2s; +ravageait ravager VER 3.65 9.26 0.02 1.22 ind:imp:3s; +ravageant ravageant ADJ m s 0.05 0.27 0.05 0.20 +ravageante ravageant ADJ f s 0.05 0.27 0.00 0.07 +ravagent ravager VER 3.65 9.26 0.76 0.41 ind:pre:3p; +ravager ravager VER 3.65 9.26 0.28 1.22 inf; +ravagera ravager VER 3.65 9.26 0.02 0.00 ind:fut:3s; +ravagerai ravager VER 3.65 9.26 0.00 0.07 ind:fut:1s; +ravageraient ravager VER 3.65 9.26 0.00 0.07 cnd:pre:3p; +ravages ravage NOM m p 2.16 5.54 2.04 5.14 +ravageur ravageur ADJ m s 0.12 1.42 0.07 1.01 +ravageurs ravageur ADJ m p 0.12 1.42 0.02 0.14 +ravageuse ravageuse NOM f s 0.03 0.00 0.03 0.00 +ravageuses ravageur ADJ f p 0.12 1.42 0.01 0.00 +ravagez ravager VER 3.65 9.26 0.14 0.00 ind:pre:2p; +ravagèrent ravager VER 3.65 9.26 0.00 0.14 ind:pas:3p; +ravagé ravager VER m s 3.65 9.26 1.03 2.64 par:pas; +ravagée ravager VER f s 3.65 9.26 0.21 0.74 par:pas; +ravagées ravager VER f p 3.65 9.26 0.06 0.27 par:pas; +ravagés ravager VER m p 3.65 9.26 0.36 0.95 par:pas; +raval raval NOM m s 0.20 0.00 0.20 0.00 +ravala ravaler VER 1.42 8.99 0.00 0.88 ind:pas:3s; +ravalai ravaler VER 1.42 8.99 0.01 0.20 ind:pas:1s; +ravalaient ravaler VER 1.42 8.99 0.00 0.14 ind:imp:3p; +ravalais ravaler VER 1.42 8.99 0.00 0.14 ind:imp:1s; +ravalait ravaler VER 1.42 8.99 0.00 0.81 ind:imp:3s; +ravalant ravaler VER 1.42 8.99 0.11 0.95 par:pre; +ravale ravaler VER 1.42 8.99 0.46 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ravalement ravalement NOM m s 0.19 0.41 0.19 0.41 +ravalent ravaler VER 1.42 8.99 0.10 0.14 ind:pre:3p; +ravaler ravaler VER 1.42 8.99 0.47 2.09 inf; +ravalera ravaler VER 1.42 8.99 0.01 0.00 ind:fut:3s; +ravaleront ravaler VER 1.42 8.99 0.00 0.07 ind:fut:3p; +ravales ravaler VER 1.42 8.99 0.04 0.07 ind:pre:2s; +ravaleur ravaleur NOM m s 0.00 0.07 0.00 0.07 +ravalez ravaler VER 1.42 8.99 0.01 0.00 imp:pre:2p; +ravalons ravaler VER 1.42 8.99 0.02 0.00 imp:pre:1p; +ravalât ravaler VER 1.42 8.99 0.00 0.07 sub:imp:3s; +ravalé ravaler VER m s 1.42 8.99 0.07 1.01 par:pas; +ravalée ravaler VER f s 1.42 8.99 0.02 0.34 par:pas; +ravalées ravaler VER f p 1.42 8.99 0.10 0.34 par:pas; +ravalés ravaler VER m p 1.42 8.99 0.00 0.41 par:pas; +ravaudage ravaudage NOM m s 0.01 0.20 0.01 0.20 +ravaudait ravauder VER 0.00 1.08 0.00 0.34 ind:imp:3s; +ravaudant ravauder VER 0.00 1.08 0.00 0.14 par:pre; +ravaude ravauder VER 0.00 1.08 0.00 0.14 ind:pre:3s; +ravauder ravauder VER 0.00 1.08 0.00 0.27 inf; +ravaudé ravauder VER m s 0.00 1.08 0.00 0.07 par:pas; +ravaudées ravauder VER f p 0.00 1.08 0.00 0.07 par:pas; +ravaudés ravauder VER m p 0.00 1.08 0.00 0.07 par:pas; +rave rave NOM f s 1.57 1.01 1.27 0.00 +ravenelles ravenelle NOM f p 0.00 0.14 0.00 0.14 +ravennate ravennate ADJ s 0.00 0.07 0.00 0.07 +raves rave NOM f p 1.57 1.01 0.30 1.01 +ravi ravir VER m s 72.67 27.91 40.64 11.42 par:pas; +ravie ravir VER f s 72.67 27.91 23.25 5.20 par:pas; +ravier ravier NOM m s 0.00 1.01 0.00 0.61 +raviers ravier NOM m p 0.00 1.01 0.00 0.41 +ravies ravir VER f p 72.67 27.91 0.82 0.47 par:pas; +ravigotait ravigoter VER 0.02 0.07 0.00 0.07 ind:imp:3s; +ravigotant ravigotant ADJ m s 0.02 0.14 0.02 0.07 +ravigotants ravigotant ADJ m p 0.02 0.14 0.00 0.07 +ravigote ravigote NOM f s 0.00 0.14 0.00 0.14 +ravigoter ravigoter VER 0.02 0.07 0.02 0.00 inf; +ravin ravin NOM m s 4.93 11.35 4.30 9.12 +ravina raviner VER 0.08 2.57 0.04 0.07 ind:pas:3s; +ravinaient raviner VER 0.08 2.57 0.00 0.14 ind:imp:3p; +ravinant raviner VER 0.08 2.57 0.00 0.14 par:pre; +ravine ravine NOM f s 0.30 0.95 0.25 0.54 +ravinement ravinement NOM m s 0.00 0.14 0.00 0.07 +ravinements ravinement NOM m p 0.00 0.14 0.00 0.07 +ravinent raviner VER 0.08 2.57 0.00 0.07 ind:pre:3p; +raviner raviner VER 0.08 2.57 0.00 0.14 inf; +ravines ravine NOM f p 0.30 0.95 0.05 0.41 +ravins ravin NOM m p 4.93 11.35 0.63 2.23 +raviné raviner VER m s 0.08 2.57 0.00 0.61 par:pas; +ravinée raviner VER f s 0.08 2.57 0.01 0.54 par:pas; +ravinées raviner VER f p 0.08 2.57 0.01 0.27 par:pas; +ravinés raviner VER m p 0.08 2.57 0.01 0.54 par:pas; +ravioli ravioli NOM m 2.71 1.22 0.95 0.88 +raviolis ravioli NOM m p 2.71 1.22 1.76 0.34 +ravir ravir VER 72.67 27.91 2.08 3.45 inf; +ravirait ravir VER 72.67 27.91 0.13 0.20 cnd:pre:3s; +ravirent ravir VER 72.67 27.91 0.00 0.20 ind:pas:3p; +raviront ravir VER 72.67 27.91 0.11 0.00 ind:fut:3p; +ravis ravir VER m p 72.67 27.91 3.81 2.50 imp:pre:2s;par:pas; +ravisa raviser VER 0.99 5.95 0.02 2.57 ind:pas:3s; +ravisais raviser VER 0.99 5.95 0.04 0.00 ind:imp:1s;ind:imp:2s; +ravisait raviser VER 0.99 5.95 0.02 0.34 ind:imp:3s; +ravisant raviser VER 0.99 5.95 0.10 1.08 par:pre; +ravise raviser VER 0.99 5.95 0.22 0.81 ind:pre:1s;ind:pre:3s; +ravisent raviser VER 0.99 5.95 0.02 0.00 ind:pre:3p; +raviser raviser VER 0.99 5.95 0.07 0.61 inf; +ravisera raviser VER 0.99 5.95 0.03 0.00 ind:fut:3s; +raviserais raviser VER 0.99 5.95 0.04 0.00 cnd:pre:2s; +ravises raviser VER 0.99 5.95 0.02 0.00 ind:pre:2s; +ravisez raviser VER 0.99 5.95 0.02 0.00 imp:pre:2p;ind:pre:2p; +ravissaient ravir VER 72.67 27.91 0.02 0.34 ind:imp:3p; +ravissait ravir VER 72.67 27.91 0.02 2.43 ind:imp:3s; +ravissant ravissant ADJ m s 15.85 13.51 4.62 4.59 +ravissante ravissant ADJ f s 15.85 13.51 9.22 5.88 +ravissantes ravissant ADJ f p 15.85 13.51 1.47 1.62 +ravissants ravissant ADJ m p 15.85 13.51 0.54 1.42 +ravisse ravir VER 72.67 27.91 0.27 0.00 sub:pre:3s; +ravissement ravissement NOM m s 1.34 6.55 1.34 6.49 +ravissements ravissement NOM m p 1.34 6.55 0.00 0.07 +ravissent ravir VER 72.67 27.91 0.11 0.54 ind:pre:3p; +ravisseur ravisseur NOM m s 5.75 1.69 2.21 1.01 +ravisseurs ravisseur NOM m p 5.75 1.69 3.52 0.68 +ravisseuse ravisseur NOM f s 5.75 1.69 0.03 0.00 +ravisé raviser VER m s 0.99 5.95 0.32 0.34 par:pas; +ravisée raviser VER f s 0.99 5.95 0.07 0.20 par:pas; +ravit ravir VER 72.67 27.91 1.15 1.01 ind:pre:3s;ind:pas:3s; +ravitaillaient ravitailler VER 1.49 3.85 0.00 0.34 ind:imp:3p; +ravitaillait ravitailler VER 1.49 3.85 0.00 0.27 ind:imp:3s; +ravitaille ravitailler VER 1.49 3.85 0.36 0.34 imp:pre:2s;ind:pre:3s; +ravitaillement ravitaillement NOM m s 2.83 12.57 2.66 11.42 +ravitaillements ravitaillement NOM m p 2.83 12.57 0.17 1.15 +ravitaillent ravitailler VER 1.49 3.85 0.05 0.14 ind:pre:3p; +ravitailler ravitailler VER 1.49 3.85 0.82 1.69 inf; +ravitaillera ravitailler VER 1.49 3.85 0.05 0.00 ind:fut:3s; +ravitaillerait ravitailler VER 1.49 3.85 0.01 0.14 cnd:pre:3s; +ravitailleras ravitailler VER 1.49 3.85 0.00 0.07 ind:fut:2s; +ravitaillerez ravitailler VER 1.49 3.85 0.01 0.00 ind:fut:2p; +ravitailleur ravitailleur NOM m s 0.85 0.20 0.75 0.14 +ravitailleurs ravitailleur NOM m p 0.85 0.20 0.09 0.07 +ravitailleuse ravitailleur NOM f s 0.85 0.20 0.01 0.00 +ravitaillons ravitailler VER 1.49 3.85 0.01 0.00 ind:pre:1p; +ravitaillé ravitailler VER m s 1.49 3.85 0.08 0.41 par:pas; +ravitaillée ravitailler VER f s 1.49 3.85 0.01 0.27 par:pas; +ravitaillées ravitailler VER f p 1.49 3.85 0.01 0.20 par:pas; +ravitaillés ravitailler VER m p 1.49 3.85 0.08 0.00 par:pas; +raviva raviver VER 2.17 4.46 0.01 0.47 ind:pas:3s; +ravivaient raviver VER 2.17 4.46 0.00 0.07 ind:imp:3p; +ravivait raviver VER 2.17 4.46 0.00 0.61 ind:imp:3s; +ravivant raviver VER 2.17 4.46 0.11 0.14 par:pre; +ravive raviver VER 2.17 4.46 0.70 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ravivement ravivement NOM m s 0.00 0.07 0.00 0.07 +ravivent raviver VER 2.17 4.46 0.12 0.27 ind:pre:3p; +raviver raviver VER 2.17 4.46 0.79 1.62 inf; +ravivez raviver VER 2.17 4.46 0.16 0.00 imp:pre:2p;ind:pre:2p; +ravivât raviver VER 2.17 4.46 0.00 0.07 sub:imp:3s; +ravivé raviver VER m s 2.17 4.46 0.12 0.47 par:pas; +ravivée raviver VER f s 2.17 4.46 0.14 0.47 par:pas; +ravoir ravoir VER 1.16 1.08 1.16 1.08 inf; +ray_grass ray_grass NOM m 0.00 0.14 0.00 0.14 +raya rayer VER 7.42 11.22 0.02 0.54 ind:pas:3s; +rayables rayable ADJ p 0.00 0.07 0.00 0.07 +rayaient rayer VER 7.42 11.22 0.00 0.27 ind:imp:3p; +rayait rayer VER 7.42 11.22 0.02 0.61 ind:imp:3s; +rayant rayer VER 7.42 11.22 0.14 0.41 par:pre; +raye rayer VER 7.42 11.22 0.83 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +rayent rayer VER 7.42 11.22 0.09 0.07 ind:pre:3p; +rayer rayer VER 7.42 11.22 2.26 1.76 inf; +rayera rayer VER 7.42 11.22 0.02 0.00 ind:fut:3s; +rayerai rayer VER 7.42 11.22 0.02 0.00 ind:fut:1s; +rayerais rayer VER 7.42 11.22 0.00 0.07 cnd:pre:1s; +rayeras rayer VER 7.42 11.22 0.10 0.00 ind:fut:2s; +rayeront rayer VER 7.42 11.22 0.01 0.00 ind:fut:3p; +rayez rayer VER 7.42 11.22 0.60 0.14 imp:pre:2p;ind:pre:2p; +rayions rayer VER 7.42 11.22 0.00 0.07 ind:imp:1p; +rayon_éclair rayon_éclair NOM m s 0.00 0.07 0.00 0.07 +rayon rayon NOM m s 27.00 55.74 19.32 27.03 +rayonna rayonner VER 2.28 10.34 0.00 0.14 ind:pas:3s; +rayonnage rayonnage NOM m s 0.06 4.73 0.01 0.88 +rayonnages rayonnage NOM m p 0.06 4.73 0.05 3.85 +rayonnaient rayonner VER 2.28 10.34 0.00 1.01 ind:imp:3p; +rayonnais rayonner VER 2.28 10.34 0.03 0.07 ind:imp:1s; +rayonnait rayonner VER 2.28 10.34 0.32 3.85 ind:imp:3s; +rayonnant rayonnant ADJ m s 1.65 4.80 0.50 1.22 +rayonnante rayonnant ADJ f s 1.65 4.80 1.00 2.70 +rayonnantes rayonnant ADJ f p 1.65 4.80 0.03 0.41 +rayonnants rayonnant ADJ m p 1.65 4.80 0.12 0.47 +rayonne rayonner VER 2.28 10.34 1.00 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rayonnement rayonnement NOM m s 1.07 6.69 1.02 6.55 +rayonnements rayonnement NOM m p 1.07 6.69 0.05 0.14 +rayonnent rayonner VER 2.28 10.34 0.05 0.47 ind:pre:3p; +rayonner rayonner VER 2.28 10.34 0.21 0.81 inf; +rayonnera rayonner VER 2.28 10.34 0.01 0.07 ind:fut:3s; +rayonnerait rayonner VER 2.28 10.34 0.00 0.20 cnd:pre:3s; +rayonnes rayonner VER 2.28 10.34 0.25 0.07 ind:pre:2s; +rayonneur rayonneur NOM m s 0.03 0.00 0.03 0.00 +rayonnez rayonner VER 2.28 10.34 0.06 0.00 imp:pre:2p;ind:pre:2p; +rayonné rayonner VER m s 2.28 10.34 0.05 0.07 par:pas; +rayons rayon NOM m p 27.00 55.74 7.62 28.04 +rayât rayer VER 7.42 11.22 0.00 0.07 sub:imp:3s; +rayé rayer VER m s 7.42 11.22 2.09 3.04 par:pas; +rayée rayé ADJ f s 2.02 6.82 0.98 1.15 +rayées rayer VER f p 7.42 11.22 0.20 0.47 par:pas; +rayure rayure NOM f s 2.82 7.36 0.36 0.61 +rayures rayure NOM f p 2.82 7.36 2.46 6.76 +rayés rayer VER m p 7.42 11.22 0.30 1.01 par:pas; +raz_de_marée raz_de_marée NOM m 0.57 0.20 0.57 0.20 +raz raz NOM m 0.23 1.28 0.23 1.28 +razzia razzia NOM f s 0.55 1.28 0.45 0.95 +razziais razzier VER 0.00 0.27 0.00 0.07 ind:imp:1s; +razzias razzia NOM f p 0.55 1.28 0.10 0.34 +razzier razzier VER 0.00 0.27 0.00 0.20 inf; +reaboyer reaboyer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +rebalbutiant rebalbutiant ADJ m s 0.00 0.07 0.00 0.07 +rebaptême rebaptême NOM m s 0.00 0.07 0.00 0.07 +re_belote re_belote ONO 0.01 0.00 0.01 0.00 +rebiberonner rebiberonner VER 0.00 0.07 0.00 0.07 inf; +rebide rebide NOM m s 0.00 0.07 0.00 0.07 +reblinder reblinder VER 0.00 0.07 0.00 0.07 inf; +rebombardon rebombardon NOM m p 0.01 0.00 0.01 0.00 +reboucler reboucler VER 0.14 1.01 0.01 0.00 inf; +recabosser recabosser VER m s 0.00 0.07 0.00 0.07 par:pas; +recafé recafé ADJ 0.00 0.07 0.00 0.07 +recailloux recailloux NOM m p 0.00 0.07 0.00 0.07 +recalibrer recalibrer VER 0.01 0.00 0.01 0.00 ind:imp:1s; +recasser recasser VER f s 0.24 0.07 0.01 0.00 par:pas; +rechanteur rechanteur NOM m s 0.01 0.00 0.01 0.00 +rechiader rechiader VER 0.00 0.07 0.00 0.07 inf; +reciseler reciseler VER 0.00 0.07 0.00 0.07 ind:pre:3s; +reclasser reclasser VER 0.09 0.20 0.00 0.07 ind:pre:3s; +reclasser reclasser VER 0.09 0.20 0.00 0.07 inf; +reconnaître reconnaître VER 140.73 229.19 0.00 0.07 inf; +recontacter recontacter VER 0.38 0.07 0.03 0.00 ind:pre:1s; +recontacter recontacter VER 0.38 0.07 0.01 0.00 ind:pre:3p; +recontacter recontacter VER 0.38 0.07 0.01 0.00 inf; +recontacter recontacter VER 0.38 0.07 0.06 0.00 ind:fut:1s; +reconvaincre reconvaincre VER 0.00 0.07 0.00 0.07 ind:fut:3s; +recoup recoup NOM m s 0.00 0.07 0.00 0.07 +recrac recrac NOM m s 0.00 0.07 0.00 0.07 +recreuser recreuser VER m p 0.14 0.20 0.00 0.07 par:pas; +recroquis recroquis NOM m 0.00 0.07 0.00 0.07 +recréation recréation NOM f s 0.04 0.27 0.03 0.07 +recréer recréer VER f s 2.23 4.39 0.00 0.07 par:pas; +recul recul NOM m s 3.59 15.61 0.00 0.07 +rediffuser rediffuser VER 0.20 0.07 0.01 0.00 ind:pre:2s; +redose redose NOM f s 0.00 0.07 0.00 0.07 +redrapeau redrapeau NOM m s 0.00 0.07 0.00 0.07 +redéchirer redéchirer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +redéclic redéclic NOM m s 0.00 0.07 0.00 0.07 +redécorer redécorer VER 0.08 0.00 0.01 0.00 ind:pre:1s; +redécorer redécorer VER 0.08 0.00 0.07 0.00 inf; +redéménager redéménager VER 0.00 0.07 0.00 0.07 inf; +reexpliquer reexpliquer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +refaim refaim NOM f s 0.14 0.00 0.14 0.00 +refrapper refrapper VER 0.07 0.14 0.00 0.07 ind:pre:3s; +refrapper refrapper VER m s 0.07 0.14 0.01 0.07 par:pas; +refuser refuser VER 143.96 152.77 0.00 0.07 ind:pre:1s; +regomme regomme NOM f s 0.00 0.07 0.00 0.07 +rehistoire rehistoire NOM f p 0.00 0.07 0.00 0.07 +rehygiène rehygiène NOM f s 0.00 0.07 0.00 0.07 +re_inter re_inter NOM m s 0.00 0.07 0.00 0.07 +rekidnapper rekidnapper VER 0.01 0.00 0.01 0.00 ind:imp:1s; +relettre relettre NOM f s 0.00 0.07 0.00 0.07 +remain remain NOM f s 0.00 0.07 0.00 0.07 +rematérialisation rematérialisation NOM f s 0.01 0.00 0.01 0.00 +remorphine remorphine NOM f s 0.00 0.07 0.00 0.07 +rené rené ADJ m p 0.01 0.00 0.01 0.00 +repayer repayer VER 0.23 0.41 0.00 0.07 imp:pre:2s; +repenser repenser VER 9.68 12.16 0.01 0.00 inf; +repotasser repotasser VER m s 0.00 0.07 0.00 0.07 par:pas; +reprogrammation reprogrammation NOM f s 0.01 0.00 0.01 0.00 +reprogrammer reprogrammer VER f s 1.11 0.00 0.01 0.00 par:pas; +reraconter reraconter VER 0.00 0.14 0.00 0.07 ind:pre:3s; +reraconter reraconter VER f p 0.00 0.14 0.00 0.07 par:pas; +reremplir reremplir VER 0.01 0.07 0.01 0.07 inf; +rerentrer rerentrer VER 0.05 0.07 0.05 0.07 inf; +rerespirer rerespirer VER 0.00 0.07 0.00 0.07 inf; +reressortir reressortir VER 0.00 0.07 0.00 0.07 ind:imp:3s; +reretirer reretirer VER 0.00 0.07 0.00 0.07 ind:pre:3p; +rerigole rerigole NOM f s 0.00 0.07 0.00 0.07 +rerécurer rerécurer VER 0.00 0.07 0.00 0.07 ind:imp:3s; +reréparer reréparer VER 0.01 0.00 0.01 0.00 inf; +rerêvé rerêvé ADJ m s 0.00 0.07 0.00 0.07 +resaluer resaluer VER m s 0.00 0.07 0.00 0.07 par:pas; +resavater resavater VER m s 0.01 0.00 0.01 0.00 par:pas; +resculpter resculpter VER 0.00 0.07 0.00 0.07 ind:pre:3s; +resevrage resevrage NOM m s 0.00 0.07 0.00 0.07 +resigner resigner VER 0.02 0.00 0.02 0.00 inf; +resommeil resommeil NOM m s 0.00 0.07 0.00 0.07 +resonner resonner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +restructuration restructuration NOM f s 0.91 0.34 0.00 0.07 +reséparé reséparé ADJ m p 0.00 0.07 0.00 0.07 +retaloche retaloche NOM f s 0.00 0.14 0.00 0.14 +retitiller retitiller VER 0.00 0.14 0.00 0.14 ind:pre:3s; +retraité retraité ADJ f s 0.68 1.15 0.00 0.07 +retravail retravail NOM m s 0.00 0.07 0.00 0.07 +retuage retuage NOM m s 0.04 0.00 0.04 0.00 +retuer retuer VER 0.08 0.07 0.07 0.07 inf; +retu retu ADJ f p 0.01 0.00 0.01 0.00 +reébranler reébranler VER m p 0.00 0.07 0.00 0.07 par:pas; +reéchanger reéchanger VER 0.01 0.00 0.01 0.00 inf; +revouloir revouloir VER 0.45 0.41 0.04 0.00 ind:pre:2s; +revie revie NOM f s 0.00 0.07 0.00 0.07 +revisiter revisiter VER 0.21 0.61 0.00 0.07 ind:pre:3s; +revivre revivre VER 10.37 20.68 0.00 0.07 ind:pre:3s; +revérifier revérifier VER 0.67 0.00 0.10 0.00 inf; +revérifié revérifié ADJ m s 0.34 0.07 0.10 0.00 +re r ADV 21.43 7.50 21.43 7.50 +reître reître NOM m s 0.00 1.62 0.00 0.68 +reîtres reître NOM m p 0.00 1.62 0.00 0.95 +reader reader NOM m s 0.11 0.07 0.11 0.07 +ready_made ready_made NOM m s 0.00 0.07 0.00 0.07 +rebab rebab NOM m s 0.00 0.07 0.00 0.07 +rebaise rebaiser VER 0.12 0.27 0.12 0.00 ind:pre:1s;ind:pre:3s; +rebaisent rebaiser VER 0.12 0.27 0.00 0.07 ind:pre:3p; +rebaiser rebaiser VER 0.12 0.27 0.00 0.07 inf; +rebaissa rebaisser VER 0.01 0.74 0.00 0.27 ind:pas:3s; +rebaissait rebaisser VER 0.01 0.74 0.00 0.07 ind:imp:3s; +rebaisse rebaisser VER 0.01 0.74 0.01 0.27 imp:pre:2s;ind:pre:3s; +rebaissé rebaisser VER m s 0.01 0.74 0.00 0.14 par:pas; +rebaisé rebaiser VER m s 0.12 0.27 0.00 0.14 par:pas; +rebander rebander VER 0.01 0.14 0.01 0.14 inf; +rebaptisa rebaptiser VER 0.71 0.88 0.03 0.07 ind:pas:3s; +rebaptise rebaptiser VER 0.71 0.88 0.04 0.00 ind:pre:1s;ind:pre:3s; +rebaptiser rebaptiser VER 0.71 0.88 0.23 0.14 inf; +rebaptisé rebaptiser VER m s 0.71 0.88 0.18 0.34 par:pas; +rebaptisée rebaptiser VER f s 0.71 0.88 0.22 0.27 par:pas; +rebaptisées rebaptiser VER f p 0.71 0.88 0.00 0.07 par:pas; +rebarré rebarré ADJ m s 0.00 0.20 0.00 0.20 +rebasculait rebasculer VER 0.01 0.20 0.00 0.07 ind:imp:3s; +rebascule rebasculer VER 0.01 0.20 0.01 0.07 ind:pre:1s;ind:pre:3s; +rebasculera rebasculer VER 0.01 0.20 0.00 0.07 ind:fut:3s; +rebat rebattre VER 0.22 1.49 0.11 0.20 ind:pre:3s; +rebats rebattre VER 0.22 1.49 0.02 0.00 ind:pre:1s;ind:pre:2s; +rebattait rebattre VER 0.22 1.49 0.00 0.27 ind:imp:3s; +rebattent rebattre VER 0.22 1.49 0.01 0.07 ind:pre:3p; +rebattez rebattre VER 0.22 1.49 0.03 0.00 imp:pre:2p;ind:pre:2p; +rebattit rebattre VER 0.22 1.49 0.00 0.07 ind:pas:3s; +rebattre rebattre VER 0.22 1.49 0.04 0.34 inf; +rebattu rebattu ADJ m s 0.02 0.34 0.02 0.00 +rebattue rebattu ADJ f s 0.02 0.34 0.00 0.20 +rebattues rebattre VER f p 0.22 1.49 0.00 0.07 par:pas; +rebattus rebattu ADJ m p 0.02 0.34 0.00 0.07 +rebec rebec NOM m s 0.01 0.00 0.01 0.00 +rebecter rebecter VER 0.00 0.41 0.00 0.20 inf; +rebecté rebecter VER m s 0.00 0.41 0.00 0.20 par:pas; +rebella rebeller VER 3.77 1.62 0.02 0.07 ind:pas:3s; +rebellaient rebeller VER 3.77 1.62 0.03 0.07 ind:imp:3p; +rebellais rebeller VER 3.77 1.62 0.04 0.07 ind:imp:1s;ind:imp:2s; +rebellait rebeller VER 3.77 1.62 0.03 0.07 ind:imp:3s; +rebellant rebeller VER 3.77 1.62 0.01 0.00 par:pre; +rebelle rebelle ADJ s 5.95 4.32 3.73 2.77 +rebellent rebeller VER 3.77 1.62 0.76 0.00 ind:pre:3p; +rebeller rebeller VER 3.77 1.62 0.82 0.41 inf; +rebelles rebelle NOM p 8.66 6.08 6.41 4.26 +rebellez rebeller VER 3.77 1.62 0.03 0.07 imp:pre:2p;ind:pre:2p; +rebellât rebeller VER 3.77 1.62 0.00 0.07 sub:imp:3s; +rebellèrent rebeller VER 3.77 1.62 0.04 0.00 ind:pas:3p; +rebellé rebeller VER m s 3.77 1.62 0.47 0.20 par:pas; +rebellée rebeller VER f s 3.77 1.62 0.15 0.27 par:pas; +rebellés rebeller VER m p 3.77 1.62 0.19 0.00 par:pas; +rebelote rebelote ONO 0.27 0.68 0.27 0.68 +rebiffa rebiffer VER 0.29 3.58 0.01 0.20 ind:pas:3s; +rebiffai rebiffer VER 0.29 3.58 0.00 0.07 ind:pas:1s; +rebiffaient rebiffer VER 0.29 3.58 0.00 0.20 ind:imp:3p; +rebiffais rebiffer VER 0.29 3.58 0.01 0.00 ind:imp:2s; +rebiffait rebiffer VER 0.29 3.58 0.00 0.20 ind:imp:3s; +rebiffant rebiffer VER 0.29 3.58 0.00 0.07 par:pre; +rebiffe rebiffer VER 0.29 3.58 0.14 1.49 ind:pre:1s;ind:pre:3s; +rebiffent rebiffer VER 0.29 3.58 0.03 0.20 ind:pre:3p; +rebiffer rebiffer VER 0.29 3.58 0.04 0.88 inf; +rebifferai rebiffer VER 0.29 3.58 0.01 0.00 ind:fut:1s; +rebiffes rebiffer VER 0.29 3.58 0.03 0.00 ind:pre:2s; +rebiffèrent rebiffer VER 0.29 3.58 0.00 0.07 ind:pas:3p; +rebiffé rebiffer VER m s 0.29 3.58 0.02 0.00 par:pas; +rebiffée rebiffer VER f s 0.29 3.58 0.01 0.20 par:pas; +rebiquaient rebiquer VER 0.00 0.74 0.00 0.34 ind:imp:3p; +rebiquait rebiquer VER 0.00 0.74 0.00 0.07 ind:imp:3s; +rebique rebiquer VER 0.00 0.74 0.00 0.20 imp:pre:2s;ind:pre:3s; +rebiquer rebiquer VER 0.00 0.74 0.00 0.07 inf; +rebiquée rebiquer VER f s 0.00 0.74 0.00 0.07 par:pas; +reblanchir reblanchir VER 0.00 0.07 0.00 0.07 inf; +reblochon reblochon NOM m s 0.02 0.41 0.02 0.14 +reblochons reblochon NOM m p 0.02 0.41 0.00 0.27 +rebloquer rebloquer VER 0.14 0.00 0.14 0.00 inf; +rebobiner rebobiner VER 0.01 0.00 0.01 0.00 inf; +reboire reboire VER 0.40 0.47 0.17 0.14 inf; +rebois reboire VER 0.40 0.47 0.00 0.07 ind:pre:1s; +reboise reboiser VER 0.00 0.14 0.00 0.07 ind:pre:3s; +reboisement reboisement NOM m s 0.10 0.14 0.10 0.14 +reboisées reboiser VER f p 0.00 0.14 0.00 0.07 par:pas; +reboit reboire VER 0.40 0.47 0.04 0.00 ind:pre:3s; +rebond rebond NOM m s 0.62 0.74 0.55 0.68 +rebondi rebondir VER m s 3.42 10.68 0.47 0.81 par:pas; +rebondie rebondi ADJ f s 0.25 2.30 0.03 0.47 +rebondies rebondi ADJ f p 0.25 2.30 0.04 0.81 +rebondir rebondir VER 3.42 10.68 1.56 2.84 inf; +rebondira rebondir VER 3.42 10.68 0.05 0.00 ind:fut:3s; +rebondiraient rebondir VER 3.42 10.68 0.00 0.07 cnd:pre:3p; +rebondirait rebondir VER 3.42 10.68 0.01 0.07 cnd:pre:3s; +rebondirent rebondir VER 3.42 10.68 0.00 0.27 ind:pas:3p; +rebondis rebondi ADJ m p 0.25 2.30 0.14 0.34 +rebondissaient rebondir VER 3.42 10.68 0.27 0.74 ind:imp:3p; +rebondissais rebondir VER 3.42 10.68 0.00 0.14 ind:imp:1s; +rebondissait rebondir VER 3.42 10.68 0.03 1.55 ind:imp:3s; +rebondissant rebondissant ADJ m s 0.06 2.09 0.04 1.82 +rebondissante rebondissant ADJ f s 0.06 2.09 0.01 0.07 +rebondissantes rebondissant ADJ f p 0.06 2.09 0.01 0.07 +rebondissants rebondissant ADJ m p 0.06 2.09 0.00 0.14 +rebondisse rebondir VER 3.42 10.68 0.11 0.00 sub:pre:3s; +rebondissement rebondissement NOM m s 0.50 1.89 0.27 0.68 +rebondissements rebondissement NOM m p 0.50 1.89 0.22 1.22 +rebondissent rebondir VER 3.42 10.68 0.17 0.54 ind:pre:3p; +rebondit rebondir VER 3.42 10.68 0.65 3.31 ind:pre:3s;ind:pas:3s; +rebonds rebond NOM m p 0.62 0.74 0.07 0.07 +rebonjour rebonjour NOM m s 0.02 0.00 0.02 0.00 +rebooter rebooter VER 0.04 0.00 0.04 0.00 inf; +rebord rebord NOM m s 2.69 18.65 2.66 17.30 +reborder reborder VER 0.01 0.07 0.01 0.00 inf; +rebords rebord NOM m p 2.69 18.65 0.04 1.35 +rebordée reborder VER f s 0.01 0.07 0.00 0.07 par:pas; +rebâti rebâtir VER m s 0.97 2.36 0.04 0.41 par:pas; +rebâtie rebâtir VER f s 0.97 2.36 0.01 0.14 par:pas; +rebâties rebâtir VER f p 0.97 2.36 0.01 0.27 par:pas; +rebâtir rebâtir VER 0.97 2.36 0.82 0.88 inf; +rebâtirai rebâtir VER 0.97 2.36 0.01 0.00 ind:fut:1s; +rebâtirent rebâtir VER 0.97 2.36 0.00 0.07 ind:pas:3p; +rebâtirons rebâtir VER 0.97 2.36 0.01 0.00 ind:fut:1p; +rebâtis rebâtir VER m p 0.97 2.36 0.01 0.20 ind:pre:1s;par:pas; +rebâtissaient rebâtir VER 0.97 2.36 0.00 0.07 ind:imp:3p; +rebâtissant rebâtir VER 0.97 2.36 0.00 0.07 par:pre; +rebâtissent rebâtir VER 0.97 2.36 0.02 0.00 ind:pre:3p; +rebâtissons rebâtir VER 0.97 2.36 0.00 0.07 imp:pre:1p; +rebâtit rebâtir VER 0.97 2.36 0.05 0.20 ind:pre:3s;ind:pas:3s; +reboucha reboucher VER 0.80 1.42 0.00 0.20 ind:pas:3s; +rebouchait reboucher VER 0.80 1.42 0.00 0.07 ind:imp:3s; +rebouchant reboucher VER 0.80 1.42 0.00 0.07 par:pre; +rebouche reboucher VER 0.80 1.42 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebouchent reboucher VER 0.80 1.42 0.01 0.07 ind:pre:3p; +reboucher reboucher VER 0.80 1.42 0.36 0.47 inf; +reboucheront reboucher VER 0.80 1.42 0.10 0.00 ind:fut:3p; +rebouchez reboucher VER 0.80 1.42 0.04 0.00 imp:pre:2p; +rebouchèrent reboucher VER 0.80 1.42 0.00 0.07 ind:pas:3p; +rebouché reboucher VER m s 0.80 1.42 0.18 0.14 par:pas; +rebouchée reboucher VER f s 0.80 1.42 0.02 0.07 par:pas; +rebouchées reboucher VER f p 0.80 1.42 0.00 0.07 par:pas; +rebouchés reboucher VER m p 0.80 1.42 0.01 0.14 par:pas; +reboucla reboucler VER 0.14 1.01 0.00 0.07 ind:pas:3s; +reboucle reboucler VER 0.14 1.01 0.12 0.27 imp:pre:2s;ind:pre:3s; +reboucler reboucler VER 0.14 1.01 0.01 0.47 inf; +rebouclé reboucler VER m s 0.14 1.01 0.00 0.14 par:pas; +rebouclée reboucler VER f s 0.14 1.01 0.00 0.07 par:pas; +reboule reboule NOM f s 0.27 0.00 0.27 0.00 +rebourrer rebourrer VER 0.00 0.07 0.00 0.07 inf; +rebours rebours ADV 3.52 2.91 3.52 2.91 +reboute rebouter VER 0.14 0.34 0.00 0.20 ind:pre:1s; +rebouter rebouter VER 0.14 0.34 0.14 0.07 inf; +rebouteuse rebouteur NOM f s 0.14 0.00 0.14 0.00 +rebouteux rebouteux NOM m 0.26 0.54 0.26 0.54 +reboutez rebouter VER 0.14 0.34 0.00 0.07 ind:pre:2p; +reboutonna reboutonner VER 0.38 1.49 0.00 0.34 ind:pas:3s; +reboutonnaient reboutonner VER 0.38 1.49 0.00 0.07 ind:imp:3p; +reboutonnais reboutonner VER 0.38 1.49 0.00 0.07 ind:imp:1s; +reboutonnant reboutonner VER 0.38 1.49 0.00 0.20 par:pre; +reboutonne reboutonner VER 0.38 1.49 0.06 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reboutonner reboutonner VER 0.38 1.49 0.01 0.20 inf; +reboutonnerait reboutonner VER 0.38 1.49 0.00 0.07 cnd:pre:3s; +reboutonnez reboutonner VER 0.38 1.49 0.17 0.00 imp:pre:2p;ind:pre:2p; +reboutonnèrent reboutonner VER 0.38 1.49 0.00 0.07 ind:pas:3p; +reboutonné reboutonner VER m s 0.38 1.49 0.00 0.20 par:pas; +reboutonnée reboutonner VER f s 0.38 1.49 0.14 0.00 par:pas; +reboutonnés reboutonner VER m p 0.38 1.49 0.00 0.07 par:pas; +rebrûlé rebrûler VER m s 0.00 0.07 0.00 0.07 par:pas; +rebraguetter rebraguetter VER 0.00 0.14 0.00 0.07 inf; +rebraguetté rebraguetter VER m s 0.00 0.14 0.00 0.07 par:pas; +rebrancha rebrancher VER 0.73 0.81 0.00 0.07 ind:pas:3s; +rebranche rebrancher VER 0.73 0.81 0.22 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebrancher rebrancher VER 0.73 0.81 0.23 0.07 inf; +rebranchez rebrancher VER 0.73 0.81 0.12 0.00 imp:pre:2p; +rebranché rebrancher VER m s 0.73 0.81 0.16 0.34 par:pas; +rebranchée rebrancher VER f s 0.73 0.81 0.01 0.00 par:pas; +rebrodait rebroder VER 0.00 0.20 0.00 0.07 ind:imp:3s; +rebrodée rebroder VER f s 0.00 0.20 0.00 0.07 par:pas; +rebrodés rebroder VER m p 0.00 0.20 0.00 0.07 par:pas; +rebrosser rebrosser VER 0.02 0.00 0.02 0.00 inf; +rebroussa rebrousser VER 1.52 6.76 0.01 1.08 ind:pas:3s; +rebroussai rebrousser VER 1.52 6.76 0.01 0.07 ind:pas:1s; +rebroussaient rebrousser VER 1.52 6.76 0.01 0.14 ind:imp:3p; +rebroussait rebrousser VER 1.52 6.76 0.00 0.20 ind:imp:3s; +rebroussant rebrousser VER 1.52 6.76 0.14 0.27 par:pre; +rebrousse rebrousser VER 1.52 6.76 0.17 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rebroussement rebroussement NOM m s 0.00 0.07 0.00 0.07 +rebroussent rebrousser VER 1.52 6.76 0.03 0.20 ind:pre:3p; +rebrousser rebrousser VER 1.52 6.76 0.69 1.89 inf; +rebrousserai rebrousser VER 1.52 6.76 0.01 0.00 ind:fut:1s; +rebrousserez rebrousser VER 1.52 6.76 0.00 0.07 ind:fut:2p; +rebroussez rebrousser VER 1.52 6.76 0.14 0.00 imp:pre:2p;ind:pre:2p; +rebroussâmes rebrousser VER 1.52 6.76 0.00 0.07 ind:pas:1p; +rebroussons rebrousser VER 1.52 6.76 0.11 0.14 imp:pre:1p;ind:pre:1p; +rebroussât rebrousser VER 1.52 6.76 0.00 0.07 sub:imp:3s; +rebroussèrent rebrousser VER 1.52 6.76 0.00 0.27 ind:pas:3p; +rebroussé rebrousser VER m s 1.52 6.76 0.20 0.88 par:pas; +rebroussée rebrousser VER f s 1.52 6.76 0.00 0.07 par:pas; +rebroussées rebrousser VER f p 1.52 6.76 0.00 0.07 par:pas; +rebroussés rebrousser VER m p 1.52 6.76 0.00 0.14 par:pas; +rebu reboire VER m s 0.40 0.47 0.00 0.14 par:pas; +rebuffade rebuffade NOM f s 0.07 1.35 0.03 0.27 +rebuffades rebuffade NOM f p 0.07 1.35 0.04 1.08 +rebéquer rebéquer VER 0.00 0.07 0.00 0.07 inf; +rebus reboire VER m p 0.40 0.47 0.16 0.00 par:pas; +rebut rebut NOM m s 2.15 4.26 1.43 2.97 +rebuta rebuter VER 0.71 5.34 0.00 0.07 ind:pas:3s; +rebutaient rebuter VER 0.71 5.34 0.01 0.20 ind:imp:3p; +rebutait rebuter VER 0.71 5.34 0.00 1.08 ind:imp:3s; +rebutant rebutant ADJ m s 0.17 1.62 0.02 0.68 +rebutante rebutant ADJ f s 0.17 1.62 0.00 0.41 +rebutantes rebutant ADJ f p 0.17 1.62 0.01 0.27 +rebutants rebutant ADJ m p 0.17 1.62 0.14 0.27 +rebute rebuter VER 0.71 5.34 0.45 0.95 ind:pre:3s; +rebutent rebuter VER 0.71 5.34 0.01 0.27 ind:pre:3p; +rebuter rebuter VER 0.71 5.34 0.02 0.61 inf; +rebutera rebuter VER 0.71 5.34 0.00 0.07 ind:fut:3s; +rebuterait rebuter VER 0.71 5.34 0.00 0.07 cnd:pre:3s; +rebuts rebut NOM m p 2.15 4.26 0.72 1.28 +rebutèrent rebuter VER 0.71 5.34 0.00 0.07 ind:pas:3p; +rebuté rebuter VER m s 0.71 5.34 0.06 1.01 par:pas; +rebutée rebuter VER f s 0.71 5.34 0.03 0.47 par:pas; +rebutées rebuter VER f p 0.71 5.34 0.01 0.07 par:pas; +rebutés rebuter VER m p 0.71 5.34 0.12 0.20 par:pas; +rebuvait reboire VER 0.40 0.47 0.00 0.07 ind:imp:3s; +recache recacher VER 0.02 0.07 0.01 0.00 ind:pre:1s; +recacher recacher VER 0.02 0.07 0.01 0.07 inf; +recacheter recacheter VER 0.00 0.14 0.00 0.07 inf; +recachetée recacheter VER f s 0.00 0.14 0.00 0.07 par:pas; +recadre recadrer VER 0.23 0.14 0.02 0.00 imp:pre:2s;ind:pre:1s; +recadrer recadrer VER 0.23 0.14 0.20 0.14 inf; +recadrez recadrer VER 0.23 0.14 0.01 0.00 imp:pre:2p; +recala recaler VER 1.72 1.01 0.00 0.07 ind:pas:3s; +recalage recalage NOM m s 0.01 0.00 0.01 0.00 +recalculant recalculer VER 0.10 0.07 0.00 0.07 par:pre; +recalcule recalculer VER 0.10 0.07 0.01 0.00 ind:pre:3s; +recalculer recalculer VER 0.10 0.07 0.06 0.00 inf; +recalculez recalculer VER 0.10 0.07 0.01 0.00 imp:pre:2p; +recalculé recalculer VER m s 0.10 0.07 0.02 0.00 par:pas; +recaler recaler VER 1.72 1.01 0.32 0.07 inf; +recalez recaler VER 1.72 1.01 0.03 0.00 imp:pre:2p;ind:pre:2p; +recalé recaler VER m s 1.72 1.01 1.03 0.41 par:pas; +recalée recaler VER f s 1.72 1.01 0.28 0.34 par:pas; +recalés recaler VER m p 1.72 1.01 0.07 0.14 par:pas; +recarreler recarreler VER 0.01 0.00 0.01 0.00 inf; +recasa recaser VER 0.23 0.34 0.00 0.07 ind:pas:3s; +recasable recasable ADJ s 0.00 0.07 0.00 0.07 +recaser recaser VER 0.23 0.34 0.20 0.14 inf; +recaserai recaser VER 0.23 0.34 0.01 0.00 ind:fut:1s; +recasser recasser VER 0.24 0.07 0.14 0.00 inf; +recasses recasser VER 0.24 0.07 0.02 0.00 ind:pre:2s; +recassé recasser VER m s 0.24 0.07 0.05 0.00 par:pas; +recassée recasser VER f s 0.24 0.07 0.01 0.07 par:pas; +recasé recaser VER m s 0.23 0.34 0.01 0.14 par:pas; +recel recel NOM m s 0.77 1.01 0.77 1.01 +recelaient receler VER 1.02 3.72 0.00 0.20 ind:imp:3p; +recelait receler VER 1.02 3.72 0.04 0.95 ind:imp:3s; +recelant receler VER 1.02 3.72 0.00 0.27 par:pre; +receler receler VER 1.02 3.72 0.06 0.47 inf; +receleur_miracle receleur_miracle NOM m s 0.00 0.07 0.00 0.07 +receleur receleur NOM m s 0.45 1.28 0.34 0.68 +receleurs receleur NOM m p 0.45 1.28 0.10 0.47 +receleuse receleur NOM f s 0.45 1.28 0.01 0.07 +receleuses receleur NOM f p 0.45 1.28 0.00 0.07 +recelons receler VER 1.02 3.72 0.02 0.00 ind:pre:1p; +recelé receler VER m s 1.02 3.72 0.00 0.07 par:pas; +recelée receler VER f s 1.02 3.72 0.00 0.07 par:pas; +recelées receler VER f p 1.02 3.72 0.01 0.00 par:pas; +recelés receler VER m p 1.02 3.72 0.00 0.07 par:pas; +recensa recenser VER 1.29 1.96 0.00 0.20 ind:pas:3s; +recensais recenser VER 1.29 1.96 0.00 0.07 ind:imp:1s; +recensait recenser VER 1.29 1.96 0.00 0.07 ind:imp:3s; +recensant recenser VER 1.29 1.96 0.01 0.00 par:pre; +recense recenser VER 1.29 1.96 0.22 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recensement recensement NOM m s 1.17 1.08 1.14 0.95 +recensements recensement NOM m p 1.17 1.08 0.03 0.14 +recensent recenser VER 1.29 1.96 0.04 0.00 ind:pre:3p; +recenser recenser VER 1.29 1.96 0.20 0.54 inf; +recenseur recenseur NOM m s 0.03 0.00 0.03 0.00 +recension recension NOM f s 0.00 0.27 0.00 0.27 +recensâmes recenser VER 1.29 1.96 0.00 0.07 ind:pas:1p; +recensèrent recenser VER 1.29 1.96 0.00 0.07 ind:pas:3p; +recensé recenser VER m s 1.29 1.96 0.55 0.20 par:pas; +recensées recenser VER f p 1.29 1.96 0.04 0.14 par:pas; +recensés recenser VER m p 1.29 1.96 0.25 0.27 par:pas; +recentrage recentrage NOM m s 0.14 0.07 0.14 0.07 +recentre recentrer VER 0.44 0.20 0.24 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recentrer recentrer VER 0.44 0.20 0.17 0.07 inf; +recentrons recentrer VER 0.44 0.20 0.01 0.00 ind:pre:1p; +recentré recentrer VER m s 0.44 0.20 0.03 0.00 par:pas; +recentrée recentrer VER f s 0.44 0.20 0.00 0.07 par:pas; +recette recette NOM f s 12.56 13.38 9.56 6.89 +recettes recette NOM f p 12.56 13.38 3.00 6.49 +recevabilité recevabilité NOM f s 0.01 0.00 0.01 0.00 +recevable recevable ADJ s 0.87 0.27 0.78 0.14 +recevables recevable ADJ f p 0.87 0.27 0.09 0.14 +recevaient recevoir VER 192.73 224.46 0.32 4.93 ind:imp:3p; +recevais recevoir VER 192.73 224.46 0.87 2.77 ind:imp:1s;ind:imp:2s; +recevait recevoir VER 192.73 224.46 2.16 21.42 ind:imp:3s; +recevant recevoir VER 192.73 224.46 0.55 5.68 par:pre; +receveur receveur NOM m s 1.90 1.62 1.61 1.42 +receveurs receveur NOM m p 1.90 1.62 0.27 0.07 +receveuse receveur NOM f s 1.90 1.62 0.02 0.07 +receveuses receveur NOM f p 1.90 1.62 0.00 0.07 +recevez recevoir VER 192.73 224.46 11.20 1.15 imp:pre:2p;ind:pre:2p; +receviez recevoir VER 192.73 224.46 0.41 0.34 ind:imp:2p; +recevions recevoir VER 192.73 224.46 0.38 0.81 ind:imp:1p; +recevoir recevoir VER 192.73 224.46 37.20 49.12 inf; +recevons recevoir VER 192.73 224.46 3.02 1.15 imp:pre:1p;ind:pre:1p; +recevra recevoir VER 192.73 224.46 4.69 1.22 ind:fut:3s; +recevrai recevoir VER 192.73 224.46 1.29 0.54 ind:fut:1s; +recevraient recevoir VER 192.73 224.46 0.07 0.47 cnd:pre:3p; +recevrais recevoir VER 192.73 224.46 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +recevrait recevoir VER 192.73 224.46 0.39 2.70 cnd:pre:3s; +recevras recevoir VER 192.73 224.46 1.77 0.61 ind:fut:2s; +recevrez recevoir VER 192.73 224.46 2.50 0.47 ind:fut:2p; +recevriez recevoir VER 192.73 224.46 0.06 0.07 cnd:pre:2p; +recevrions recevoir VER 192.73 224.46 0.11 0.07 cnd:pre:1p; +recevrons recevoir VER 192.73 224.46 0.41 0.27 ind:fut:1p; +recevront recevoir VER 192.73 224.46 1.03 0.47 ind:fut:3p; +rechampi rechampi NOM m s 0.00 0.07 0.00 0.07 +rechampis rechampir VER m p 0.00 0.14 0.00 0.07 par:pas; +rechampit rechampir VER 0.00 0.14 0.00 0.07 ind:pre:3s; +rechange rechange NOM m s 4.73 2.77 4.71 2.70 +rechanger rechanger VER 0.17 0.07 0.10 0.00 inf; +rechanges rechange NOM m p 4.73 2.77 0.02 0.07 +rechangé rechanger VER m s 0.17 0.07 0.07 0.07 par:pas; +rechanta rechanter VER 0.05 0.14 0.00 0.07 ind:pas:3s; +rechanter rechanter VER 0.05 0.14 0.04 0.00 inf; +rechanté rechanter VER m s 0.05 0.14 0.01 0.07 par:pas; +rechaper rechaper VER 0.12 0.07 0.12 0.07 inf; +recharge recharger VER 4.07 3.99 0.81 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rechargea recharger VER 4.07 3.99 0.00 0.07 ind:pas:3s; +rechargeable rechargeable ADJ m s 0.02 0.00 0.02 0.00 +rechargeaient recharger VER 4.07 3.99 0.01 0.20 ind:imp:3p; +rechargeais recharger VER 4.07 3.99 0.01 0.00 ind:imp:1s; +rechargeait recharger VER 4.07 3.99 0.01 0.41 ind:imp:3s; +rechargeant recharger VER 4.07 3.99 0.00 0.20 par:pre; +rechargement rechargement NOM m s 0.04 0.00 0.04 0.00 +rechargent recharger VER 4.07 3.99 0.02 0.07 ind:pre:3p; +recharger recharger VER 4.07 3.99 1.76 1.89 inf; +rechargerai recharger VER 4.07 3.99 0.01 0.07 ind:fut:1s; +rechargerait recharger VER 4.07 3.99 0.00 0.07 cnd:pre:3s; +rechargerons recharger VER 4.07 3.99 0.01 0.00 ind:fut:1p; +recharges recharge NOM f p 0.83 0.34 0.27 0.07 +rechargez recharger VER 4.07 3.99 0.95 0.07 imp:pre:2p;ind:pre:2p; +rechargé recharger VER m s 4.07 3.99 0.32 0.41 par:pas; +rechargée recharger VER f s 4.07 3.99 0.03 0.00 par:pas; +rechargées recharger VER f p 4.07 3.99 0.05 0.07 par:pas; +rechargés recharger VER m p 4.07 3.99 0.04 0.00 par:pas; +rechasser rechasser VER 0.02 0.00 0.02 0.00 inf; +rechaussaient rechausser VER 0.01 0.68 0.00 0.07 ind:imp:3p; +rechaussant rechausser VER 0.01 0.68 0.00 0.07 par:pre; +rechausser rechausser VER 0.01 0.68 0.01 0.41 inf; +rechausserait rechausser VER 0.01 0.68 0.00 0.07 cnd:pre:3s; +rechaussée rechausser VER f s 0.01 0.68 0.00 0.07 par:pas; +rechercha rechercher VER 45.51 22.43 0.16 0.34 ind:pas:3s; +recherchai rechercher VER 45.51 22.43 0.01 0.07 ind:pas:1s; +recherchaient rechercher VER 45.51 22.43 0.36 1.01 ind:imp:3p; +recherchais rechercher VER 45.51 22.43 0.80 0.88 ind:imp:1s;ind:imp:2s; +recherchait rechercher VER 45.51 22.43 1.59 2.77 ind:imp:3s; +recherchant rechercher VER 45.51 22.43 0.39 0.47 par:pre; +recherche recherche NOM f s 77.30 54.80 48.70 39.93 +recherchent rechercher VER 45.51 22.43 4.25 1.35 ind:pre:3p; +rechercher rechercher VER 45.51 22.43 5.88 7.23 inf; +recherchera rechercher VER 45.51 22.43 0.05 0.07 ind:fut:3s; +rechercherai rechercher VER 45.51 22.43 0.03 0.14 ind:fut:1s; +rechercherais rechercher VER 45.51 22.43 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +rechercherait rechercher VER 45.51 22.43 0.15 0.14 cnd:pre:3s; +rechercherions rechercher VER 45.51 22.43 0.01 0.00 cnd:pre:1p; +rechercherons rechercher VER 45.51 22.43 0.04 0.00 ind:fut:1p; +rechercheront rechercher VER 45.51 22.43 0.07 0.00 ind:fut:3p; +recherches recherche NOM f p 77.30 54.80 28.60 14.86 +recherchez rechercher VER 45.51 22.43 2.86 0.27 imp:pre:2p;ind:pre:2p; +recherchiez rechercher VER 45.51 22.43 0.60 0.00 ind:imp:2p; +recherchions rechercher VER 45.51 22.43 0.12 0.14 ind:imp:1p; +recherchiste recherchiste NOM s 0.01 0.00 0.01 0.00 +recherchons rechercher VER 45.51 22.43 3.89 0.27 imp:pre:1p;ind:pre:1p; +recherché rechercher VER m s 45.51 22.43 5.39 2.77 par:pas; +recherchée rechercher VER f s 45.51 22.43 1.62 0.61 par:pas; +recherchées recherché ADJ f p 3.54 2.09 0.38 0.27 +recherchés recherché ADJ m p 3.54 2.09 0.97 0.41 +rechigna rechigner VER 0.71 3.92 0.00 0.14 ind:pas:3s; +rechignaient rechigner VER 0.71 3.92 0.01 0.14 ind:imp:3p; +rechignais rechigner VER 0.71 3.92 0.01 0.14 ind:imp:1s;ind:imp:2s; +rechignait rechigner VER 0.71 3.92 0.00 0.61 ind:imp:3s; +rechignant rechigner VER 0.71 3.92 0.00 0.41 par:pre; +rechigne rechigner VER 0.71 3.92 0.49 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rechignent rechigner VER 0.71 3.92 0.06 0.07 ind:pre:3p; +rechigner rechigner VER 0.71 3.92 0.08 1.49 inf; +rechignerais rechigner VER 0.71 3.92 0.01 0.00 cnd:pre:1s; +rechignes rechigner VER 0.71 3.92 0.03 0.00 ind:pre:2s; +rechigné rechigner VER m s 0.71 3.92 0.01 0.34 par:pas; +rechignée rechigner VER f s 0.71 3.92 0.00 0.07 par:pas; +rechignées rechigner VER f p 0.71 3.92 0.00 0.07 par:pas; +rechuta rechuter VER 0.69 0.74 0.00 0.07 ind:pas:3s; +rechutant rechuter VER 0.69 0.74 0.00 0.07 par:pre; +rechute rechute NOM f s 1.26 1.89 1.19 1.28 +rechuter rechuter VER 0.69 0.74 0.36 0.14 inf; +rechutera rechuter VER 0.69 0.74 0.01 0.00 ind:fut:3s; +rechuterait rechuter VER 0.69 0.74 0.00 0.07 cnd:pre:3s; +rechuteront rechuter VER 0.69 0.74 0.01 0.00 ind:fut:3p; +rechutes rechute NOM f p 1.26 1.89 0.07 0.61 +rechuté rechuter VER m s 0.69 0.74 0.10 0.34 par:pas; +reclassement reclassement NOM m s 0.14 0.27 0.14 0.27 +reclasser reclasser VER 0.09 0.20 0.04 0.07 inf; +reclassé reclasser VER m s 0.09 0.20 0.03 0.00 par:pas; +reclassée reclasser VER f s 0.09 0.20 0.02 0.00 par:pas; +reclouer reclouer VER 0.01 0.00 0.01 0.00 inf; +reclure reclure VER 0.00 0.07 0.00 0.07 inf; +reclus reclus ADJ m 0.56 1.76 0.37 0.81 +recluse reclus NOM f s 0.70 0.95 0.35 0.14 +recluses reclus NOM f p 0.70 0.95 0.01 0.14 +recâbler recâbler VER 0.03 0.00 0.03 0.00 inf; +recodage recodage NOM m s 0.01 0.00 0.01 0.00 +recogner recogner VER 0.00 0.07 0.00 0.07 inf; +recognition recognition NOM f s 0.00 0.07 0.00 0.07 +recoiffa recoiffer VER 0.25 2.09 0.00 0.07 ind:pas:3s; +recoiffai recoiffer VER 0.25 2.09 0.00 0.07 ind:pas:1s; +recoiffaient recoiffer VER 0.25 2.09 0.00 0.07 ind:imp:3p; +recoiffait recoiffer VER 0.25 2.09 0.01 0.20 ind:imp:3s; +recoiffant recoiffer VER 0.25 2.09 0.01 0.14 par:pre; +recoiffe recoiffer VER 0.25 2.09 0.07 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoiffent recoiffer VER 0.25 2.09 0.01 0.07 ind:pre:3p; +recoiffer recoiffer VER 0.25 2.09 0.12 0.54 inf; +recoiffez recoiffer VER 0.25 2.09 0.02 0.00 imp:pre:2p;ind:pre:2p; +recoiffèrent recoiffer VER 0.25 2.09 0.00 0.07 ind:pas:3p; +recoiffé recoiffer VER m s 0.25 2.09 0.00 0.20 par:pas; +recoiffée recoiffer VER f s 0.25 2.09 0.00 0.41 par:pas; +recoiffés recoiffer VER m p 0.25 2.09 0.00 0.07 par:pas; +recoin recoin NOM m s 2.27 12.36 0.83 5.14 +recoins recoin NOM m p 2.27 12.36 1.44 7.23 +recolla recoller VER 2.84 2.70 0.00 0.20 ind:pas:3s; +recollage recollage NOM m s 0.00 0.14 0.00 0.14 +recollait recoller VER 2.84 2.70 0.00 0.34 ind:imp:3s; +recolle recoller VER 2.84 2.70 0.53 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recollent recoller VER 2.84 2.70 0.03 0.00 ind:pre:3p; +recoller recoller VER 2.84 2.70 1.94 1.15 inf; +recollera recoller VER 2.84 2.70 0.05 0.00 ind:fut:3s; +recollé recoller VER m s 2.84 2.70 0.13 0.27 par:pas; +recollée recoller VER f s 2.84 2.70 0.16 0.20 par:pas; +recollés recoller VER m p 2.84 2.70 0.00 0.20 par:pas; +recoloration recoloration NOM f s 0.08 0.00 0.08 0.00 +recombinaison recombinaison NOM f s 0.06 0.00 0.06 0.00 +recombinant recombinant ADJ m s 0.01 0.00 0.01 0.00 +recombinant recombiner VER 0.10 0.00 0.01 0.00 par:pre; +recombiner recombiner VER 0.10 0.00 0.04 0.00 inf; +recombiné recombiner VER m s 0.10 0.00 0.05 0.00 par:pas; +recommanda recommander VER 16.86 21.35 0.00 2.30 ind:pas:3s; +recommandable recommandable ADJ s 0.42 0.68 0.32 0.68 +recommandables recommandable ADJ p 0.42 0.68 0.11 0.00 +recommandai recommander VER 16.86 21.35 0.00 0.14 ind:pas:1s; +recommandaient recommander VER 16.86 21.35 0.04 0.34 ind:imp:3p; +recommandais recommander VER 16.86 21.35 0.01 0.27 ind:imp:1s; +recommandait recommander VER 16.86 21.35 0.19 2.03 ind:imp:3s; +recommandant recommander VER 16.86 21.35 0.21 1.82 par:pre; +recommandation recommandation NOM f s 5.20 8.85 2.89 3.92 +recommandations recommandation NOM f p 5.20 8.85 2.30 4.93 +recommande recommander VER 16.86 21.35 6.13 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recommandent recommander VER 16.86 21.35 0.31 0.27 ind:pre:3p; +recommander recommander VER 16.86 21.35 2.58 2.91 inf; +recommandera recommander VER 16.86 21.35 0.10 0.14 ind:fut:3s; +recommanderai recommander VER 16.86 21.35 0.32 0.14 ind:fut:1s; +recommanderais recommander VER 16.86 21.35 0.25 0.00 cnd:pre:1s;cnd:pre:2s; +recommanderait recommander VER 16.86 21.35 0.12 0.07 cnd:pre:3s; +recommanderiez recommander VER 16.86 21.35 0.09 0.00 cnd:pre:2p; +recommandes recommander VER 16.86 21.35 0.24 0.07 ind:pre:2s;sub:pre:2s; +recommandez recommander VER 16.86 21.35 0.73 0.27 imp:pre:2p;ind:pre:2p; +recommandiez recommander VER 16.86 21.35 0.07 0.07 ind:imp:2p; +recommandons recommander VER 16.86 21.35 0.28 0.07 imp:pre:1p;ind:pre:1p; +recommandât recommander VER 16.86 21.35 0.00 0.07 sub:imp:3s; +recommandèrent recommander VER 16.86 21.35 0.11 0.14 ind:pas:3p; +recommandé recommander VER m s 16.86 21.35 4.07 5.68 par:pas; +recommandée recommander VER f s 16.86 21.35 0.80 0.95 par:pas; +recommandées recommander VER f p 16.86 21.35 0.03 0.54 par:pas; +recommandés recommander VER m p 16.86 21.35 0.21 0.27 par:pas; +recommence recommencer VER 84.69 83.31 31.98 17.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +recommencement recommencement NOM m s 0.08 0.81 0.07 0.47 +recommencements recommencement NOM m p 0.08 0.81 0.01 0.34 +recommencent recommencer VER 84.69 83.31 1.72 2.36 ind:pre:3p; +recommencer recommencer VER 84.69 83.31 26.90 22.50 inf; +recommencera recommencer VER 84.69 83.31 2.52 1.42 ind:fut:3s; +recommencerai recommencer VER 84.69 83.31 1.65 1.01 ind:fut:1s; +recommenceraient recommencer VER 84.69 83.31 0.02 0.20 cnd:pre:3p; +recommencerais recommencer VER 84.69 83.31 0.25 0.54 cnd:pre:1s;cnd:pre:2s; +recommencerait recommencer VER 84.69 83.31 0.70 1.42 cnd:pre:3s; +recommenceras recommencer VER 84.69 83.31 0.78 0.14 ind:fut:2s; +recommencerez recommencer VER 84.69 83.31 0.21 0.14 ind:fut:2p; +recommenceriez recommencer VER 84.69 83.31 0.06 0.00 cnd:pre:2p; +recommencerions recommencer VER 84.69 83.31 0.01 0.07 cnd:pre:1p; +recommencerons recommencer VER 84.69 83.31 0.54 0.14 ind:fut:1p; +recommenceront recommencer VER 84.69 83.31 0.42 0.07 ind:fut:3p; +recommences recommencer VER 84.69 83.31 4.02 0.95 ind:pre:2s; +recommencez recommencer VER 84.69 83.31 4.88 0.68 imp:pre:2p;ind:pre:2p; +recommenciez recommencer VER 84.69 83.31 0.19 0.07 ind:imp:2p; +recommencions recommencer VER 84.69 83.31 0.02 0.41 ind:imp:1p; +recommencèrent recommencer VER 84.69 83.31 0.00 1.55 ind:pas:3p; +recommencé recommencer VER m s 84.69 83.31 3.84 6.82 par:pas; +recommencée recommencer VER f s 84.69 83.31 0.12 0.81 par:pas; +recommencées recommencer VER f p 84.69 83.31 0.00 0.47 par:pas; +recommencés recommencer VER m p 84.69 83.31 0.00 0.41 par:pas; +recommença recommencer VER 84.69 83.31 0.06 7.77 ind:pas:3s; +recommençai recommencer VER 84.69 83.31 0.00 0.74 ind:pas:1s; +recommençaient recommencer VER 84.69 83.31 0.02 1.76 ind:imp:3p; +recommençais recommencer VER 84.69 83.31 0.11 1.22 ind:imp:1s;ind:imp:2s; +recommençait recommencer VER 84.69 83.31 1.22 10.41 ind:imp:3s; +recommençant recommencer VER 84.69 83.31 0.03 0.95 par:pre; +recommençâmes recommencer VER 84.69 83.31 0.02 0.20 ind:pas:1p; +recommençons recommencer VER 84.69 83.31 2.39 0.74 imp:pre:1p;ind:pre:1p; +recommençât recommencer VER 84.69 83.31 0.00 0.14 sub:imp:3s; +recommercer recommercer VER 0.00 0.07 0.00 0.07 inf; +recompléter recompléter VER 0.00 0.14 0.00 0.07 inf; +recomplété recompléter VER m s 0.00 0.14 0.00 0.07 par:pas; +recomposa recomposer VER 0.52 3.18 0.00 0.34 ind:pas:3s; +recomposaient recomposer VER 0.52 3.18 0.00 0.14 ind:imp:3p; +recomposais recomposer VER 0.52 3.18 0.00 0.07 ind:imp:1s; +recomposait recomposer VER 0.52 3.18 0.00 0.34 ind:imp:3s; +recompose recomposer VER 0.52 3.18 0.18 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recomposent recomposer VER 0.52 3.18 0.00 0.14 ind:pre:3p; +recomposer recomposer VER 0.52 3.18 0.28 1.01 inf; +recomposera recomposer VER 0.52 3.18 0.00 0.07 ind:fut:3s; +recomposition recomposition NOM f s 0.00 0.07 0.00 0.07 +recomposèrent recomposer VER 0.52 3.18 0.00 0.14 ind:pas:3p; +recomposé recomposer VER m s 0.52 3.18 0.03 0.20 par:pas; +recomposée recomposer VER f s 0.52 3.18 0.01 0.00 par:pas; +recomposés recomposer VER m p 0.52 3.18 0.01 0.14 par:pas; +recompta recompter VER 1.67 1.82 0.00 0.20 ind:pas:3s; +recomptaient recompter VER 1.67 1.82 0.00 0.07 ind:imp:3p; +recomptais recompter VER 1.67 1.82 0.00 0.20 ind:imp:1s; +recomptait recompter VER 1.67 1.82 0.01 0.27 ind:imp:3s; +recomptant recompter VER 1.67 1.82 0.00 0.07 par:pre; +recompte recompter VER 1.67 1.82 0.75 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recompter recompter VER 1.67 1.82 0.55 0.47 inf; +recomptez recompter VER 1.67 1.82 0.05 0.00 imp:pre:2p;ind:pre:2p; +recomptons recompter VER 1.67 1.82 0.11 0.00 ind:pre:1p; +recompté recompter VER m s 1.67 1.82 0.20 0.20 par:pas; +recomptées recompter VER f p 1.67 1.82 0.00 0.07 par:pas; +reconditionne reconditionner VER 0.03 0.07 0.01 0.00 ind:pre:3s; +reconditionnement reconditionnement NOM m s 0.05 0.00 0.05 0.00 +reconditionnons reconditionner VER 0.03 0.07 0.01 0.00 imp:pre:1p; +reconditionné reconditionner VER m s 0.03 0.07 0.01 0.00 par:pas; +reconditionnée reconditionner VER f s 0.03 0.07 0.00 0.07 par:pas; +reconductible reconductible ADJ s 0.01 0.07 0.01 0.07 +reconduction reconduction NOM f s 0.01 0.00 0.01 0.00 +reconduirai reconduire VER 5.83 7.23 0.03 0.07 ind:fut:1s; +reconduirais reconduire VER 5.83 7.23 0.01 0.00 cnd:pre:1s; +reconduirait reconduire VER 5.83 7.23 0.00 0.07 cnd:pre:3s; +reconduire reconduire VER 5.83 7.23 2.97 2.84 inf; +reconduirez reconduire VER 5.83 7.23 0.01 0.00 ind:fut:2p; +reconduirons reconduire VER 5.83 7.23 0.01 0.07 ind:fut:1p; +reconduis reconduire VER 5.83 7.23 1.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconduisît reconduire VER 5.83 7.23 0.00 0.07 sub:imp:3s; +reconduisaient reconduire VER 5.83 7.23 0.00 0.07 ind:imp:3p; +reconduisais reconduire VER 5.83 7.23 0.00 0.14 ind:imp:1s; +reconduisait reconduire VER 5.83 7.23 0.02 0.27 ind:imp:3s; +reconduisant reconduire VER 5.83 7.23 0.00 0.14 par:pre; +reconduise reconduire VER 5.83 7.23 0.33 0.07 sub:pre:1s;sub:pre:3s; +reconduisent reconduire VER 5.83 7.23 0.01 0.07 ind:pre:3p; +reconduisez reconduire VER 5.83 7.23 0.76 0.07 imp:pre:2p;ind:pre:2p; +reconduisions reconduire VER 5.83 7.23 0.00 0.07 ind:imp:1p; +reconduisirent reconduire VER 5.83 7.23 0.00 0.07 ind:pas:3p; +reconduisit reconduire VER 5.83 7.23 0.00 1.15 ind:pas:3s; +reconduit reconduire VER m s 5.83 7.23 0.43 1.22 ind:pre:3s;par:pas; +reconduite reconduire VER f s 5.83 7.23 0.16 0.27 par:pas; +reconduits reconduire VER m p 5.83 7.23 0.04 0.20 par:pas; +reconfiguration reconfiguration NOM f s 0.02 0.00 0.02 0.00 +reconfigure reconfigurer VER 0.39 0.00 0.05 0.00 ind:pre:1s;ind:pre:3s; +reconfigurer reconfigurer VER 0.39 0.00 0.18 0.00 inf; +reconfigurez reconfigurer VER 0.39 0.00 0.05 0.00 imp:pre:2p; +reconfiguré reconfigurer VER m s 0.39 0.00 0.09 0.00 par:pas; +reconfigurés reconfigurer VER m p 0.39 0.00 0.03 0.00 par:pas; +recongeler recongeler VER 0.01 0.00 0.01 0.00 inf; +reconnûmes reconnaître VER 140.73 229.19 0.01 0.34 ind:pas:1p; +reconnût reconnaître VER 140.73 229.19 0.00 1.22 sub:imp:3s; +reconnaît reconnaître VER 140.73 229.19 10.73 15.61 ind:pre:3s; +reconnaîtra reconnaître VER 140.73 229.19 2.80 1.49 ind:fut:3s; +reconnaîtrai reconnaître VER 140.73 229.19 0.66 0.68 ind:fut:1s; +reconnaîtraient reconnaître VER 140.73 229.19 0.10 0.41 cnd:pre:3p; +reconnaîtrais reconnaître VER 140.73 229.19 2.06 0.95 cnd:pre:1s;cnd:pre:2s; +reconnaîtrait reconnaître VER 140.73 229.19 0.56 2.09 cnd:pre:3s; +reconnaîtras reconnaître VER 140.73 229.19 1.54 0.54 ind:fut:2s; +reconnaître reconnaître VER 140.73 229.19 25.24 62.30 inf; +reconnaîtrez reconnaître VER 140.73 229.19 0.72 0.81 ind:fut:2p; +reconnaîtriez reconnaître VER 140.73 229.19 0.31 0.14 cnd:pre:2p; +reconnaîtrions reconnaître VER 140.73 229.19 0.00 0.07 cnd:pre:1p; +reconnaîtrons reconnaître VER 140.73 229.19 0.49 0.07 ind:fut:1p; +reconnaîtront reconnaître VER 140.73 229.19 1.01 0.34 ind:fut:3p; +reconnais reconnaître VER 140.73 229.19 37.36 24.12 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconnaissable reconnaissable ADJ s 0.56 4.66 0.50 3.45 +reconnaissables reconnaissable ADJ p 0.56 4.66 0.06 1.22 +reconnaissaient reconnaître VER 140.73 229.19 0.18 2.50 ind:imp:3p; +reconnaissais reconnaître VER 140.73 229.19 1.41 7.30 ind:imp:1s;ind:imp:2s; +reconnaissait reconnaître VER 140.73 229.19 0.65 17.50 ind:imp:3s; +reconnaissance reconnaissance NOM f s 15.28 22.77 15.08 21.49 +reconnaissances reconnaissance NOM f p 15.28 22.77 0.20 1.28 +reconnaissant reconnaissant ADJ m s 20.59 9.19 10.32 5.41 +reconnaissante reconnaissant ADJ f s 20.59 9.19 6.41 2.70 +reconnaissantes reconnaissant ADJ f p 20.59 9.19 0.17 0.27 +reconnaissants reconnaissant ADJ m p 20.59 9.19 3.69 0.81 +reconnaisse reconnaître VER 140.73 229.19 2.09 1.15 sub:pre:1s;sub:pre:3s; +reconnaissent reconnaître VER 140.73 229.19 2.10 3.65 ind:pre:3p; +reconnaisses reconnaître VER 140.73 229.19 0.13 0.07 sub:pre:2s; +reconnaissez reconnaître VER 140.73 229.19 13.49 2.97 imp:pre:2p;ind:pre:2p; +reconnaissiez reconnaître VER 140.73 229.19 0.22 0.27 ind:imp:2p; +reconnaissions reconnaître VER 140.73 229.19 0.11 1.08 ind:imp:1p; +reconnaissons reconnaître VER 140.73 229.19 0.69 1.08 imp:pre:1p;ind:pre:1p; +reconnecte reconnecter VER 0.52 0.00 0.07 0.00 imp:pre:2s;ind:pre:3s; +reconnecter reconnecter VER 0.52 0.00 0.29 0.00 inf; +reconnectez reconnecter VER 0.52 0.00 0.03 0.00 imp:pre:2p; +reconnecté reconnecter VER m s 0.52 0.00 0.06 0.00 par:pas; +reconnectés reconnecter VER m p 0.52 0.00 0.07 0.00 par:pas; +reconnu reconnaître VER m s 140.73 229.19 25.93 32.09 par:pas; +reconnue reconnaître VER f s 140.73 229.19 6.86 5.95 par:pas; +reconnues reconnaître VER f p 140.73 229.19 0.39 0.61 par:pas; +reconnurent reconnaître VER 140.73 229.19 0.03 1.42 ind:pas:3p; +reconnus reconnaître VER m p 140.73 229.19 1.34 8.72 ind:pas:1s;par:pas; +reconnusse reconnaître VER 140.73 229.19 0.00 0.07 sub:imp:1s; +reconnussent reconnaître VER 140.73 229.19 0.01 0.07 sub:imp:3p; +reconnut reconnaître VER 140.73 229.19 0.44 25.74 ind:pas:3s; +reconquerra reconquérir VER 1.54 3.18 0.01 0.07 ind:fut:3s; +reconquerrait reconquérir VER 1.54 3.18 0.00 0.07 cnd:pre:3s; +reconquerrons reconquérir VER 1.54 3.18 0.01 0.07 ind:fut:1p; +reconquiert reconquérir VER 1.54 3.18 0.01 0.07 ind:pre:3s; +reconquirent reconquérir VER 1.54 3.18 0.00 0.07 ind:pas:3p; +reconquis reconquérir VER m 1.54 3.18 0.07 0.68 par:pas; +reconquise reconquis ADJ f s 0.10 0.47 0.10 0.20 +reconquises reconquis ADJ f p 0.10 0.47 0.00 0.14 +reconquista reconquista NOM f s 0.00 0.07 0.00 0.07 +reconquit reconquérir VER 1.54 3.18 0.00 0.07 ind:pas:3s; +reconquière reconquérir VER 1.54 3.18 0.01 0.07 sub:pre:3s; +reconquérais reconquérir VER 1.54 3.18 0.00 0.07 ind:imp:1s; +reconquérait reconquérir VER 1.54 3.18 0.00 0.07 ind:imp:3s; +reconquérir reconquérir VER 1.54 3.18 1.41 1.55 inf; +reconquérons reconquérir VER 1.54 3.18 0.01 0.00 imp:pre:1p; +reconquête reconquête NOM f s 0.06 1.15 0.06 1.15 +reconsidère reconsidérer VER 1.51 1.55 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reconsidèrent reconsidérer VER 1.51 1.55 0.01 0.00 ind:pre:3p; +reconsidéra reconsidérer VER 1.51 1.55 0.00 0.27 ind:pas:3s; +reconsidérant reconsidérer VER 1.51 1.55 0.01 0.00 par:pre; +reconsidérer reconsidérer VER 1.51 1.55 1.06 1.01 inf; +reconsidérez reconsidérer VER 1.51 1.55 0.17 0.00 imp:pre:2p;ind:pre:2p; +reconsidéré reconsidérer VER m s 1.51 1.55 0.16 0.14 par:pas; +reconsidérée reconsidérer VER f s 1.51 1.55 0.01 0.07 par:pas; +reconstitua reconstituer VER 4.05 16.28 0.00 0.07 ind:pas:3s; +reconstituaient reconstituer VER 4.05 16.28 0.01 0.34 ind:imp:3p; +reconstituais reconstituer VER 4.05 16.28 0.04 0.14 ind:imp:1s;ind:imp:2s; +reconstituait reconstituer VER 4.05 16.28 0.01 1.01 ind:imp:3s; +reconstituant reconstituant NOM m s 0.15 0.27 0.15 0.20 +reconstituante reconstituant ADJ f s 0.02 0.27 0.00 0.14 +reconstituantes reconstituant ADJ f p 0.02 0.27 0.01 0.07 +reconstituants reconstituant ADJ m p 0.02 0.27 0.00 0.07 +reconstituants reconstituant NOM m p 0.15 0.27 0.00 0.07 +reconstitue reconstituer VER 4.05 16.28 0.42 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reconstituent reconstituer VER 4.05 16.28 0.03 0.47 ind:pre:3p; +reconstituer reconstituer VER 4.05 16.28 2.12 7.84 inf; +reconstitueraient reconstituer VER 4.05 16.28 0.00 0.07 cnd:pre:3p; +reconstituerais reconstituer VER 4.05 16.28 0.01 0.00 cnd:pre:1s; +reconstituerait reconstituer VER 4.05 16.28 0.00 0.20 cnd:pre:3s; +reconstituerons reconstituer VER 4.05 16.28 0.00 0.07 ind:fut:1p; +reconstitues reconstituer VER 4.05 16.28 0.02 0.07 ind:pre:2s; +reconstituâmes reconstituer VER 4.05 16.28 0.00 0.07 ind:pas:1p; +reconstituons reconstituer VER 4.05 16.28 0.08 0.00 imp:pre:1p;ind:pre:1p; +reconstituât reconstituer VER 4.05 16.28 0.00 0.14 sub:imp:3s; +reconstitution reconstitution NOM f s 2.23 2.57 2.12 2.23 +reconstitutions reconstitution NOM f p 2.23 2.57 0.11 0.34 +reconstitué reconstituer VER m s 4.05 16.28 1.05 1.69 par:pas; +reconstituée reconstituer VER f s 4.05 16.28 0.05 1.01 par:pas; +reconstituées reconstituer VER f p 4.05 16.28 0.16 0.14 par:pas; +reconstitués reconstituer VER m p 4.05 16.28 0.02 0.81 par:pas; +reconstructeur reconstructeur NOM m s 0.01 0.00 0.01 0.00 +reconstruction reconstruction NOM f s 2.25 4.19 2.07 4.12 +reconstructions reconstruction NOM f p 2.25 4.19 0.17 0.07 +reconstructrice reconstructeur ADJ f s 0.04 0.00 0.04 0.00 +reconstruira reconstruire VER 7.24 7.84 0.02 0.07 ind:fut:3s; +reconstruirai reconstruire VER 7.24 7.84 0.02 0.00 ind:fut:1s; +reconstruirais reconstruire VER 7.24 7.84 0.01 0.00 cnd:pre:1s; +reconstruirait reconstruire VER 7.24 7.84 0.02 0.07 cnd:pre:3s; +reconstruiras reconstruire VER 7.24 7.84 0.01 0.00 ind:fut:2s; +reconstruire reconstruire VER 7.24 7.84 4.59 3.24 inf; +reconstruirons reconstruire VER 7.24 7.84 0.36 0.07 ind:fut:1p; +reconstruiront reconstruire VER 7.24 7.84 0.04 0.00 ind:fut:3p; +reconstruis reconstruire VER 7.24 7.84 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reconstruisaient reconstruire VER 7.24 7.84 0.01 0.27 ind:imp:3p; +reconstruisait reconstruire VER 7.24 7.84 0.01 0.41 ind:imp:3s; +reconstruisant reconstruire VER 7.24 7.84 0.00 0.14 par:pre; +reconstruisent reconstruire VER 7.24 7.84 0.14 0.07 ind:pre:3p; +reconstruisez reconstruire VER 7.24 7.84 0.04 0.00 imp:pre:2p;ind:pre:2p; +reconstruisirent reconstruire VER 7.24 7.84 0.00 0.14 ind:pas:3p; +reconstruisons reconstruire VER 7.24 7.84 0.04 0.00 imp:pre:1p;ind:pre:1p; +reconstruit reconstruire VER m s 7.24 7.84 1.39 1.76 ind:pre:3s;par:pas; +reconstruite reconstruire VER f s 7.24 7.84 0.29 1.15 par:pas; +reconstruites reconstruire VER f p 7.24 7.84 0.06 0.27 par:pas; +reconstruits reconstruire VER m p 7.24 7.84 0.06 0.14 par:pas; +reconsulter reconsulter VER 0.01 0.00 0.01 0.00 inf; +recontacter recontacter VER 0.38 0.07 0.27 0.07 inf; +reconter reconter VER 0.00 0.07 0.00 0.07 inf; +recontrer recontrer VER 0.20 0.00 0.20 0.00 inf; +reconventionnelle reconventionnel ADJ f s 0.01 0.00 0.01 0.00 +reconversion reconversion NOM f s 0.36 0.74 0.36 0.74 +reconverti reconvertir VER m s 0.40 2.30 0.13 0.68 par:pas; +reconvertie reconvertir VER f s 0.40 2.30 0.10 0.20 par:pas; +reconvertir reconvertir VER 0.40 2.30 0.12 0.81 inf; +reconvertirent reconvertir VER 0.40 2.30 0.00 0.07 ind:pas:3p; +reconvertis reconvertir VER m p 0.40 2.30 0.02 0.27 imp:pre:2s;ind:pre:2s;ind:pas:2s;par:pas; +reconvertissant reconvertir VER 0.40 2.30 0.00 0.07 par:pre; +reconvertisse reconvertir VER 0.40 2.30 0.00 0.07 sub:pre:1s; +reconvertit reconvertir VER 0.40 2.30 0.02 0.14 ind:pre:3s;ind:pas:3s; +reconvoquer reconvoquer VER 0.02 0.00 0.02 0.00 inf; +recopia recopier VER 2.41 7.30 0.00 0.27 ind:pas:3s; +recopiage recopiage NOM m s 0.00 0.07 0.00 0.07 +recopiai recopier VER 2.41 7.30 0.00 0.14 ind:pas:1s; +recopiaient recopier VER 2.41 7.30 0.00 0.07 ind:imp:3p; +recopiais recopier VER 2.41 7.30 0.00 0.41 ind:imp:1s; +recopiait recopier VER 2.41 7.30 0.00 0.54 ind:imp:3s; +recopiant recopier VER 2.41 7.30 0.16 0.47 par:pre; +recopie recopier VER 2.41 7.30 0.50 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recopient recopier VER 2.41 7.30 0.00 0.07 ind:pre:3p; +recopier recopier VER 2.41 7.30 0.82 2.23 inf; +recopierai recopier VER 2.41 7.30 0.25 0.00 ind:fut:1s; +recopierait recopier VER 2.41 7.30 0.00 0.07 cnd:pre:3s; +recopies recopier VER 2.41 7.30 0.01 0.07 ind:pre:2s; +recopiez recopier VER 2.41 7.30 0.16 0.00 imp:pre:2p;ind:pre:2p; +recopiât recopier VER 2.41 7.30 0.00 0.07 sub:imp:3s; +recopié recopier VER m s 2.41 7.30 0.23 1.01 par:pas; +recopiée recopier VER f s 2.41 7.30 0.02 0.20 par:pas; +recopiées recopier VER f p 2.41 7.30 0.23 0.41 par:pas; +recopiés recopier VER m p 2.41 7.30 0.03 0.47 par:pas; +record record NOM m s 13.34 5.95 10.14 3.11 +recorder recorder VER 0.03 0.00 0.03 0.00 inf; +recordman recordman NOM m s 0.04 0.20 0.04 0.14 +recordmen recordman NOM m p 0.04 0.20 0.00 0.07 +records record NOM m p 13.34 5.95 3.20 2.84 +recors recors NOM m 0.01 0.00 0.01 0.00 +recoucha recoucher VER 3.69 8.11 0.00 1.69 ind:pas:3s; +recouchai recoucher VER 3.69 8.11 0.00 0.41 ind:pas:1s; +recouchais recoucher VER 3.69 8.11 0.00 0.07 ind:imp:1s; +recouchait recoucher VER 3.69 8.11 0.00 0.74 ind:imp:3s; +recouchant recoucher VER 3.69 8.11 0.00 0.20 par:pre; +recouche recoucher VER 3.69 8.11 1.54 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoucher recoucher VER 3.69 8.11 1.79 2.23 inf; +recoucherais recoucher VER 3.69 8.11 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +recoucheriez recoucher VER 3.69 8.11 0.01 0.00 cnd:pre:2p; +recouchez recoucher VER 3.69 8.11 0.08 0.07 imp:pre:2p; +recouchèrent recoucher VER 3.69 8.11 0.00 0.07 ind:pas:3p; +recouché recoucher VER m s 3.69 8.11 0.20 0.47 par:pas; +recouchée recoucher VER f s 3.69 8.11 0.03 0.61 par:pas; +recouchées recoucher VER f p 3.69 8.11 0.01 0.07 par:pas; +recouchés recoucher VER m p 3.69 8.11 0.00 0.07 par:pas; +recoud recoudre VER 5.80 3.92 0.11 0.41 ind:pre:3s; +recoudra recoudre VER 5.80 3.92 0.25 0.07 ind:fut:3s; +recoudrai recoudre VER 5.80 3.92 0.16 0.07 ind:fut:1s; +recoudras recoudre VER 5.80 3.92 0.01 0.07 ind:fut:2s; +recoudre recoudre VER 5.80 3.92 2.96 1.28 inf; +recouds recoudre VER 5.80 3.92 0.53 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +recouler recouler VER 0.01 0.07 0.01 0.07 inf; +recoupa recouper VER 0.81 1.96 0.00 0.07 ind:pas:3s; +recoupaient recouper VER 0.81 1.96 0.00 0.14 ind:imp:3p; +recoupait recouper VER 0.81 1.96 0.02 0.27 ind:imp:3s; +recoupant recouper VER 0.81 1.96 0.01 0.20 par:pre; +recoupe recouper VER 0.81 1.96 0.25 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recoupement recoupement NOM m s 0.24 1.42 0.08 0.27 +recoupements recoupement NOM m p 0.24 1.42 0.17 1.15 +recoupent recouper VER 0.81 1.96 0.10 0.41 ind:pre:3p; +recouper recouper VER 0.81 1.96 0.25 0.27 inf; +recouperait recouper VER 0.81 1.96 0.00 0.07 cnd:pre:3s; +recouperont recouper VER 0.81 1.96 0.01 0.00 ind:fut:3p; +recoupez recouper VER 0.81 1.96 0.04 0.00 imp:pre:2p; +recoupions recouper VER 0.81 1.96 0.00 0.07 ind:imp:1p; +recoupé recouper VER m s 0.81 1.96 0.10 0.14 par:pas; +recoupés recouper VER m p 0.81 1.96 0.02 0.00 par:pas; +recourait recourir VER 1.92 4.73 0.10 0.47 ind:imp:3s; +recourant recourir VER 1.92 4.73 0.04 0.07 par:pre; +recourba recourber VER 0.06 2.09 0.00 0.07 ind:pas:3s; +recourbaient recourber VER 0.06 2.09 0.00 0.07 ind:imp:3p; +recourbait recourber VER 0.06 2.09 0.00 0.14 ind:imp:3s; +recourbant recourber VER 0.06 2.09 0.00 0.14 par:pre; +recourbe recourber VER 0.06 2.09 0.03 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recourber recourber VER 0.06 2.09 0.01 0.14 inf; +recourbé recourbé ADJ m s 0.07 2.97 0.03 1.15 +recourbée recourber VER f s 0.06 2.09 0.01 0.47 par:pas; +recourbées recourbé ADJ f p 0.07 2.97 0.01 0.34 +recourbés recourbé ADJ m p 0.07 2.97 0.01 1.22 +recoure recourir VER 1.92 4.73 0.01 0.00 sub:pre:3s; +recourent recourir VER 1.92 4.73 0.10 0.20 ind:pre:3p; +recourez recourir VER 1.92 4.73 0.04 0.00 imp:pre:2p; +recourir recourir VER 1.92 4.73 1.25 2.77 inf; +recourons recourir VER 1.92 4.73 0.01 0.07 ind:pre:1p; +recourrait recourir VER 1.92 4.73 0.00 0.07 cnd:pre:3s; +recours recours NOM m 6.45 15.34 6.45 15.34 +recourt recourir VER 1.92 4.73 0.08 0.27 ind:pre:3s; +recouru recourir VER m s 1.92 4.73 0.11 0.20 par:pas; +recoururent recourir VER 1.92 4.73 0.00 0.14 ind:pas:3p; +recourus recourir VER 1.92 4.73 0.00 0.07 ind:pas:1s; +recourut recourir VER 1.92 4.73 0.01 0.20 ind:pas:3s; +recousais recoudre VER 5.80 3.92 0.02 0.00 ind:imp:1s; +recousait recoudre VER 5.80 3.92 0.13 0.27 ind:imp:3s; +recousant recoudre VER 5.80 3.92 0.02 0.27 par:pre; +recouse recoudre VER 5.80 3.92 0.07 0.07 sub:pre:1s;sub:pre:3s; +recousez recoudre VER 5.80 3.92 0.13 0.00 imp:pre:2p; +recousu recoudre VER m s 5.80 3.92 0.78 0.81 par:pas; +recousue recoudre VER f s 5.80 3.92 0.60 0.27 par:pas; +recousus recoudre VER m p 5.80 3.92 0.04 0.20 par:pas; +recouvert recouvrir VER m s 11.04 69.26 2.79 16.82 par:pas; +recouverte recouvrir VER f s 11.04 69.26 0.90 7.77 par:pas; +recouvertes recouvrir VER f p 11.04 69.26 0.14 3.65 par:pas; +recouverts recouvrir VER m p 11.04 69.26 0.88 9.59 par:pas; +recouvrît recouvrir VER 11.04 69.26 0.00 0.14 sub:imp:3s; +recouvra recouvrer VER 2.02 5.27 0.02 0.41 ind:pas:3s; +recouvrables recouvrable ADJ f p 0.00 0.07 0.00 0.07 +recouvrai recouvrer VER 2.02 5.27 0.00 0.07 ind:pas:1s; +recouvraient recouvrir VER 11.04 69.26 0.23 2.30 ind:imp:3p; +recouvrais recouvrir VER 11.04 69.26 0.00 0.34 ind:imp:1s; +recouvrait recouvrir VER 11.04 69.26 0.46 7.91 ind:imp:3s; +recouvrance recouvrance NOM f s 0.00 0.27 0.00 0.27 +recouvrant recouvrir VER 11.04 69.26 0.47 2.91 par:pre; +recouvre recouvrir VER 11.04 69.26 2.28 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recouvrement recouvrement NOM m s 0.28 0.14 0.28 0.14 +recouvrent recouvrir VER 11.04 69.26 0.25 1.62 ind:pre:3p;sub:pre:3p; +recouvrer recouvrer VER 2.02 5.27 0.46 2.30 inf; +recouvrerai recouvrer VER 2.02 5.27 0.01 0.00 ind:fut:1s; +recouvrerait recouvrer VER 2.02 5.27 0.03 0.14 cnd:pre:3s; +recouvrerez recouvrer VER 2.02 5.27 0.02 0.00 ind:fut:2p; +recouvreront recouvrer VER 2.02 5.27 0.00 0.07 ind:fut:3p; +recouvrez recouvrir VER 11.04 69.26 0.71 0.07 imp:pre:2p;imp:pre:2p;ind:pre:2p; +recouvriez recouvrir VER 11.04 69.26 0.02 0.00 ind:imp:2p; +recouvrir recouvrir VER 11.04 69.26 1.74 5.27 inf; +recouvrira recouvrir VER 11.04 69.26 0.06 0.34 ind:fut:3s; +recouvrirai recouvrir VER 11.04 69.26 0.02 0.07 ind:fut:1s; +recouvriraient recouvrir VER 11.04 69.26 0.00 0.07 cnd:pre:3p; +recouvrirait recouvrir VER 11.04 69.26 0.02 0.27 cnd:pre:3s; +recouvrirent recouvrir VER 11.04 69.26 0.00 0.34 ind:pas:3p; +recouvris recouvrir VER 11.04 69.26 0.01 0.07 ind:pas:1s; +recouvrissent recouvrir VER 11.04 69.26 0.00 0.07 sub:imp:3p; +recouvrit recouvrir VER 11.04 69.26 0.04 1.55 ind:pas:3s; +recouvrons recouvrir VER 11.04 69.26 0.03 0.07 imp:pre:1p;ind:pre:1p; +recouvrât recouvrer VER 2.02 5.27 0.00 0.07 sub:imp:3s; +recouvré recouvrer VER m s 2.02 5.27 0.66 1.62 par:pas; +recouvrée recouvrer VER f s 2.02 5.27 0.02 0.47 par:pas; +recouvrées recouvrer VER f p 2.02 5.27 0.21 0.07 par:pas; +recouvrés recouvrer VER m p 2.02 5.27 0.01 0.07 par:pas; +recracha recracher VER 2.26 2.36 0.00 0.74 ind:pas:3s; +recrachaient recracher VER 2.26 2.36 0.01 0.14 ind:imp:3p; +recrachais recracher VER 2.26 2.36 0.01 0.07 ind:imp:1s; +recrachait recracher VER 2.26 2.36 0.03 0.20 ind:imp:3s; +recrachant recracher VER 2.26 2.36 0.01 0.00 par:pre; +recrache recracher VER 2.26 2.36 0.61 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recrachent recracher VER 2.26 2.36 0.06 0.07 ind:pre:3p; +recracher recracher VER 2.26 2.36 0.66 0.34 inf; +recrachera recracher VER 2.26 2.36 0.02 0.07 ind:fut:3s; +recraches recracher VER 2.26 2.36 0.15 0.00 ind:pre:2s; +recrachez recracher VER 2.26 2.36 0.17 0.00 imp:pre:2p;ind:pre:2p; +recraché recracher VER m s 2.26 2.36 0.47 0.27 par:pas; +recrachée recracher VER f s 2.26 2.36 0.05 0.07 par:pas; +recreuse recreuser VER 0.14 0.20 0.00 0.07 ind:pre:3s; +recreuser recreuser VER 0.14 0.20 0.14 0.07 inf; +recroisait recroiser VER 0.17 0.88 0.00 0.07 ind:imp:3s; +recroisant recroiser VER 0.17 0.88 0.00 0.14 par:pre; +recroise recroiser VER 0.17 0.88 0.03 0.34 ind:pre:1s;ind:pre:3s; +recroiser recroiser VER 0.17 0.88 0.05 0.07 inf; +recroiseras recroiser VER 0.17 0.88 0.03 0.00 ind:fut:2s; +recroiserons recroiser VER 0.17 0.88 0.01 0.00 ind:fut:1p; +recroisé recroiser VER m s 0.17 0.88 0.04 0.14 par:pas; +recroisés recroiser VER m p 0.17 0.88 0.01 0.14 par:pas; +recroquevilla recroqueviller VER 0.29 14.05 0.00 0.95 ind:pas:3s; +recroquevillai recroqueviller VER 0.29 14.05 0.01 0.14 ind:pas:1s; +recroquevillaient recroqueviller VER 0.29 14.05 0.00 0.41 ind:imp:3p; +recroquevillais recroqueviller VER 0.29 14.05 0.00 0.27 ind:imp:1s; +recroquevillait recroqueviller VER 0.29 14.05 0.00 0.74 ind:imp:3s; +recroquevillant recroqueviller VER 0.29 14.05 0.00 0.20 par:pre; +recroqueville recroqueviller VER 0.29 14.05 0.03 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recroquevillement recroquevillement NOM m s 0.00 0.14 0.00 0.14 +recroquevillent recroqueviller VER 0.29 14.05 0.01 0.61 ind:pre:3p; +recroqueviller recroqueviller VER 0.29 14.05 0.03 1.22 inf; +recroquevillions recroqueviller VER 0.29 14.05 0.00 0.14 ind:imp:1p; +recroquevillé recroqueviller VER m s 0.29 14.05 0.12 4.59 par:pas; +recroquevillée recroqueviller VER f s 0.29 14.05 0.09 1.96 par:pas; +recroquevillées recroquevillé ADJ f p 0.12 3.72 0.00 0.61 +recroquevillés recroquevillé ADJ m p 0.12 3.72 0.10 0.41 +recru recroître VER m s 0.00 0.47 0.00 0.34 par:pas; +recréa recréer VER 2.23 4.39 0.00 0.14 ind:pas:3s; +recréaient recréer VER 2.23 4.39 0.01 0.14 ind:imp:3p; +recréais recréer VER 2.23 4.39 0.01 0.07 ind:imp:1s; +recréait recréer VER 2.23 4.39 0.00 0.07 ind:imp:3s; +recréant recréer VER 2.23 4.39 0.04 0.27 par:pre; +recréation recréation NOM f s 0.04 0.27 0.01 0.20 +recrudescence recrudescence NOM f s 0.21 0.81 0.21 0.81 +recrudescente recrudescent ADJ f s 0.01 0.00 0.01 0.00 +recrée recréer VER 2.23 4.39 0.28 0.34 ind:pre:1s;ind:pre:3s; +recrue recrue NOM f s 4.61 3.85 1.73 1.35 +recréent recréer VER 2.23 4.39 0.00 0.14 ind:pre:3p; +recréer recréer VER 2.23 4.39 1.61 2.16 inf; +recréerait recréer VER 2.23 4.39 0.01 0.14 cnd:pre:3s; +recrues recrue NOM f p 4.61 3.85 2.87 2.50 +recrépi recrépir VER m s 0.00 0.34 0.00 0.07 par:pas; +recrépie recrépir VER f s 0.00 0.34 0.00 0.07 par:pas; +recrépir recrépir VER 0.00 0.34 0.00 0.07 inf; +recrépis recrépir VER m p 0.00 0.34 0.00 0.07 par:pas; +recrépit recrépir VER 0.00 0.34 0.00 0.07 ind:pre:3s; +recrus recroître VER m p 0.00 0.47 0.00 0.14 par:pas; +recruta recruter VER 7.45 6.15 0.01 0.20 ind:pas:3s; +recrutaient recruter VER 7.45 6.15 0.03 0.27 ind:imp:3p; +recrutais recruter VER 7.45 6.15 0.02 0.00 ind:imp:1s;ind:imp:2s; +recrutait recruter VER 7.45 6.15 0.24 0.54 ind:imp:3s; +recrutant recruter VER 7.45 6.15 0.08 0.07 par:pre; +recrute recruter VER 7.45 6.15 1.01 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recrutement recrutement NOM m s 1.66 3.51 1.66 3.51 +recrutent recruter VER 7.45 6.15 0.24 0.27 ind:pre:3p; +recruter recruter VER 7.45 6.15 2.59 1.76 inf; +recrutera recruter VER 7.45 6.15 0.04 0.00 ind:fut:3s; +recruterai recruter VER 7.45 6.15 0.04 0.00 ind:fut:1s; +recruterez recruter VER 7.45 6.15 0.00 0.07 ind:fut:2p; +recruteur recruteur NOM m s 1.34 0.20 0.87 0.14 +recruteurs recruteur NOM m p 1.34 0.20 0.47 0.07 +recrutez recruter VER 7.45 6.15 0.13 0.00 imp:pre:2p;ind:pre:2p; +recrutiez recruter VER 7.45 6.15 0.02 0.00 ind:imp:2p; +recrutions recruter VER 7.45 6.15 0.01 0.07 ind:imp:1p; +recrutons recruter VER 7.45 6.15 0.07 0.00 imp:pre:1p;ind:pre:1p; +recruté recruter VER m s 7.45 6.15 2.27 1.08 par:pas; +recrutée recruter VER f s 7.45 6.15 0.29 0.34 par:pas; +recrutées recruter VER f p 7.45 6.15 0.02 0.20 par:pas; +recrutés recruter VER m p 7.45 6.15 0.34 0.88 par:pas; +recréé recréer VER m s 2.23 4.39 0.16 0.61 par:pas; +recréée recréer VER f s 2.23 4.39 0.02 0.20 par:pas; +recréées recréer VER f p 2.23 4.39 0.01 0.07 par:pas; +recréés recréer VER m p 2.23 4.39 0.07 0.00 par:pas; +recta recta ADV 0.08 1.08 0.08 1.08 +rectal rectal ADJ m s 0.66 0.14 0.33 0.00 +rectale rectal ADJ f s 0.66 0.14 0.29 0.14 +rectangle rectangle NOM m s 0.47 16.69 0.38 12.91 +rectangles rectangle NOM m p 0.47 16.69 0.09 3.78 +rectangulaire rectangulaire ADJ s 0.25 8.18 0.09 5.14 +rectangulaires rectangulaire ADJ p 0.25 8.18 0.16 3.04 +rectaux rectal ADJ m p 0.66 0.14 0.03 0.00 +recteur recteur NOM m s 2.17 1.55 2.13 1.42 +recteurs recteur NOM m p 2.17 1.55 0.04 0.07 +recèle receler VER 1.02 3.72 0.58 0.95 ind:pre:1s;ind:pre:3s; +recèlent receler VER 1.02 3.72 0.31 0.68 ind:pre:3p; +recèles receler VER 1.02 3.72 0.01 0.00 ind:pre:2s; +recès recès NOM m 0.00 0.07 0.00 0.07 +rectifia rectifier VER 2.04 10.68 0.00 2.64 ind:pas:3s; +rectifiai rectifier VER 2.04 10.68 0.00 0.20 ind:pas:1s; +rectifiait rectifier VER 2.04 10.68 0.01 0.81 ind:imp:3s; +rectifiant rectifier VER 2.04 10.68 0.00 0.34 par:pre; +rectificatif rectificatif NOM m s 0.05 0.07 0.05 0.07 +rectification rectification NOM f s 0.93 0.61 0.91 0.34 +rectifications rectification NOM f p 0.93 0.61 0.02 0.27 +rectifie rectifier VER 2.04 10.68 0.26 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rectifient rectifier VER 2.04 10.68 0.01 0.14 ind:pre:3p; +rectifier rectifier VER 2.04 10.68 0.92 2.50 inf; +rectifiera rectifier VER 2.04 10.68 0.02 0.00 ind:fut:3s; +rectifierai rectifier VER 2.04 10.68 0.00 0.07 ind:fut:1s; +rectifierez rectifier VER 2.04 10.68 0.00 0.07 ind:fut:2p; +rectifies rectifier VER 2.04 10.68 0.01 0.07 ind:pre:2s; +rectifiez rectifier VER 2.04 10.68 0.34 0.14 imp:pre:2p;ind:pre:2p; +rectifions rectifier VER 2.04 10.68 0.03 0.07 imp:pre:1p; +rectifièrent rectifier VER 2.04 10.68 0.00 0.14 ind:pas:3p; +rectifié rectifier VER m s 2.04 10.68 0.36 1.22 par:pas; +rectifiée rectifier VER f s 2.04 10.68 0.06 0.47 par:pas; +rectifiées rectifier VER f p 2.04 10.68 0.00 0.34 par:pas; +rectifiés rectifier VER m p 2.04 10.68 0.01 0.14 par:pas; +rectiligne rectiligne ADJ s 0.16 6.08 0.16 4.46 +rectilignes rectiligne ADJ p 0.16 6.08 0.00 1.62 +rectilinéaire rectilinéaire ADJ m s 0.01 0.00 0.01 0.00 +rectitude rectitude NOM f s 0.05 0.68 0.05 0.68 +recto_tono recto_tono ADV 0.00 0.20 0.00 0.20 +recto recto NOM m s 0.30 0.95 0.30 0.88 +rectorat rectorat NOM m s 0.18 0.00 0.18 0.00 +rectos recto NOM m p 0.30 0.95 0.00 0.07 +rectrices recteur NOM f p 2.17 1.55 0.00 0.07 +rectum rectum NOM m s 0.50 0.81 0.50 0.81 +recueil recueil NOM m s 1.52 3.78 1.33 2.97 +recueillît recueillir VER 8.54 31.42 0.00 0.34 sub:imp:3s; +recueillaient recueillir VER 8.54 31.42 0.02 0.34 ind:imp:3p; +recueillais recueillir VER 8.54 31.42 0.04 0.20 ind:imp:1s; +recueillait recueillir VER 8.54 31.42 0.05 1.96 ind:imp:3s; +recueillant recueillir VER 8.54 31.42 0.05 1.01 par:pre; +recueille recueillir VER 8.54 31.42 1.12 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recueillement recueillement NOM m s 0.20 3.04 0.20 2.97 +recueillements recueillement NOM m p 0.20 3.04 0.00 0.07 +recueillent recueillir VER 8.54 31.42 0.21 0.81 ind:pre:3p; +recueillera recueillir VER 8.54 31.42 0.05 0.47 ind:fut:3s; +recueillerai recueillir VER 8.54 31.42 0.02 0.07 ind:fut:1s; +recueilleraient recueillir VER 8.54 31.42 0.00 0.07 cnd:pre:3p; +recueillerait recueillir VER 8.54 31.42 0.01 0.27 cnd:pre:3s; +recueilleront recueillir VER 8.54 31.42 0.00 0.07 ind:fut:3p; +recueillez recueillir VER 8.54 31.42 0.22 0.00 imp:pre:2p;ind:pre:2p; +recueilli recueillir VER m s 8.54 31.42 2.20 5.88 par:pas; +recueillie recueillir VER f s 8.54 31.42 0.42 1.15 par:pas; +recueillies recueillir VER f p 8.54 31.42 0.29 0.74 par:pas; +recueillions recueillir VER 8.54 31.42 0.00 0.07 ind:imp:1p; +recueillir recueillir VER 8.54 31.42 2.59 9.46 inf; +recueillirent recueillir VER 8.54 31.42 0.11 0.41 ind:pas:3p; +recueillis recueillir VER m p 8.54 31.42 0.58 2.09 ind:pas:1s;par:pas; +recueillit recueillir VER 8.54 31.42 0.18 2.57 ind:pas:3s; +recueillons recueillir VER 8.54 31.42 0.38 0.07 imp:pre:1p;ind:pre:1p; +recueils recueil NOM m p 1.52 3.78 0.19 0.81 +recuire recuire VER 0.02 0.68 0.02 0.07 inf; +recuisson recuisson NOM f s 0.00 0.07 0.00 0.07 +recuit recuit ADJ m s 0.03 1.55 0.03 0.54 +recuite recuit ADJ f s 0.03 1.55 0.00 0.54 +recuites recuire VER f p 0.02 0.68 0.00 0.27 par:pas; +recuits recuit ADJ m p 0.03 1.55 0.00 0.34 +recul recul NOM m s 3.59 15.61 3.59 14.73 +recula reculer VER 52.15 69.05 0.02 13.31 ind:pas:3s; +reculade reculade NOM f s 0.00 0.54 0.00 0.47 +reculades reculade NOM f p 0.00 0.54 0.00 0.07 +reculai reculer VER 52.15 69.05 0.03 0.68 ind:pas:1s; +reculaient reculer VER 52.15 69.05 0.01 1.62 ind:imp:3p; +reculais reculer VER 52.15 69.05 0.04 0.54 ind:imp:1s;ind:imp:2s; +reculait reculer VER 52.15 69.05 0.20 4.86 ind:imp:3s; +recélait recéler VER 0.02 0.54 0.02 0.34 ind:imp:3s; +reculant reculer VER 52.15 69.05 0.25 3.78 par:pre; +recélant recéler VER 0.02 0.54 0.00 0.07 par:pre; +recule reculer VER 52.15 69.05 15.11 11.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reculent reculer VER 52.15 69.05 1.31 1.49 ind:pre:3p; +reculer reculer VER 52.15 69.05 6.83 15.41 inf; +recéler recéler VER 0.02 0.54 0.00 0.14 inf; +reculera reculer VER 52.15 69.05 0.14 0.14 ind:fut:3s; +reculerai reculer VER 52.15 69.05 0.24 0.00 ind:fut:1s; +reculeraient reculer VER 52.15 69.05 0.01 0.07 cnd:pre:3p; +reculerais reculer VER 52.15 69.05 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +reculerait reculer VER 52.15 69.05 0.01 0.14 cnd:pre:3s; +reculeras reculer VER 52.15 69.05 0.26 0.00 ind:fut:2s; +reculerons reculer VER 52.15 69.05 0.02 0.00 ind:fut:1p; +reculeront reculer VER 52.15 69.05 0.20 0.00 ind:fut:3p; +recules reculer VER 52.15 69.05 1.00 0.07 ind:pre:2s;sub:pre:2s; +reculez reculer VER 52.15 69.05 22.91 0.20 imp:pre:2p;ind:pre:2p; +reculons reculer VER 52.15 69.05 1.67 6.62 imp:pre:1p;ind:pre:1p; +reculât reculer VER 52.15 69.05 0.00 0.07 sub:imp:3s; +reculotta reculotter VER 0.02 0.47 0.00 0.20 ind:pas:3s; +reculotte reculotter VER 0.02 0.47 0.02 0.07 imp:pre:2s;ind:pre:3s; +reculotter reculotter VER 0.02 0.47 0.00 0.07 inf; +reculotté reculotter VER m s 0.02 0.47 0.00 0.07 par:pas; +reculottée reculotter VER f s 0.02 0.47 0.00 0.07 par:pas; +reculs recul NOM m p 3.59 15.61 0.00 0.81 +reculèrent reculer VER 52.15 69.05 0.01 1.22 ind:pas:3p; +reculé reculer VER m s 52.15 69.05 1.71 6.96 par:pas; +reculée reculé ADJ f s 0.71 3.78 0.14 0.54 +reculées reculer VER f p 52.15 69.05 0.02 0.00 par:pas; +reculés reculé ADJ m p 0.71 3.78 0.18 1.15 +recépages recépage NOM m p 0.00 0.07 0.00 0.07 +recyclable recyclable ADJ s 0.14 0.00 0.06 0.00 +recyclables recyclable ADJ p 0.14 0.00 0.09 0.00 +recyclage recyclage NOM m s 0.78 0.47 0.78 0.47 +recyclaient recycler VER 1.77 1.15 0.02 0.00 ind:imp:3p; +recyclait recycler VER 1.77 1.15 0.01 0.00 ind:imp:3s; +recycle recycler VER 1.77 1.15 0.46 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +recyclent recycler VER 1.77 1.15 0.06 0.07 ind:pre:3p; +recycler recycler VER 1.77 1.15 0.56 0.41 inf; +recyclerai recycler VER 1.77 1.15 0.01 0.00 ind:fut:1s; +recycleur recycleur NOM m s 0.01 0.00 0.01 0.00 +recyclez recycler VER 1.77 1.15 0.07 0.00 imp:pre:2p;ind:pre:2p; +recycliez recycler VER 1.77 1.15 0.00 0.07 ind:imp:2p; +recyclé recycler VER m s 1.77 1.15 0.39 0.41 par:pas; +recyclée recycler VER f s 1.77 1.15 0.10 0.14 par:pas; +recyclées recycler VER f p 1.77 1.15 0.03 0.00 par:pas; +recyclés recycler VER m p 1.77 1.15 0.06 0.07 par:pas; +red_river red_river NOM s 0.00 0.14 0.00 0.14 +redan redan NOM m s 0.00 0.27 0.00 0.27 +reddition reddition NOM f s 2.21 3.24 2.21 3.24 +redemanda redemander VER 3.72 4.19 0.00 0.61 ind:pas:3s; +redemandai redemander VER 3.72 4.19 0.14 0.00 ind:pas:1s; +redemandaient redemander VER 3.72 4.19 0.00 0.27 ind:imp:3p; +redemandais redemander VER 3.72 4.19 0.13 0.00 ind:imp:1s;ind:imp:2s; +redemandait redemander VER 3.72 4.19 0.16 0.68 ind:imp:3s; +redemandant redemander VER 3.72 4.19 0.00 0.07 par:pre; +redemande redemander VER 3.72 4.19 1.16 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redemandent redemander VER 3.72 4.19 0.23 0.14 ind:pre:3p; +redemander redemander VER 3.72 4.19 0.54 0.41 inf; +redemanderai redemander VER 3.72 4.19 0.36 0.00 ind:fut:1s; +redemanderait redemander VER 3.72 4.19 0.01 0.00 cnd:pre:3s; +redemanderas redemander VER 3.72 4.19 0.20 0.00 ind:fut:2s; +redemanderez redemander VER 3.72 4.19 0.03 0.00 ind:fut:2p; +redemanderont redemander VER 3.72 4.19 0.00 0.07 ind:fut:3p; +redemandes redemander VER 3.72 4.19 0.28 0.00 ind:pre:2s; +redemandez redemander VER 3.72 4.19 0.20 0.00 imp:pre:2p;ind:pre:2p; +redemandions redemander VER 3.72 4.19 0.00 0.07 ind:imp:1p; +redemandé redemander VER m s 3.72 4.19 0.29 0.95 par:pas; +redents redent NOM m p 0.00 0.07 0.00 0.07 +redescend redescendre VER 11.61 28.38 1.82 2.84 ind:pre:3s; +redescendît redescendre VER 11.61 28.38 0.00 0.07 sub:imp:3s; +redescendaient redescendre VER 11.61 28.38 0.00 0.88 ind:imp:3p; +redescendais redescendre VER 11.61 28.38 0.01 0.41 ind:imp:1s; +redescendait redescendre VER 11.61 28.38 0.12 2.30 ind:imp:3s; +redescendant redescendre VER 11.61 28.38 0.29 1.55 par:pre; +redescende redescendre VER 11.61 28.38 0.50 0.41 sub:pre:1s;sub:pre:3s; +redescendent redescendre VER 11.61 28.38 0.33 0.41 ind:pre:3p; +redescendes redescendre VER 11.61 28.38 0.12 0.00 sub:pre:2s; +redescendez redescendre VER 11.61 28.38 0.92 0.14 imp:pre:2p;ind:pre:2p; +redescendiez redescendre VER 11.61 28.38 0.01 0.00 ind:imp:2p; +redescendions redescendre VER 11.61 28.38 0.00 0.14 ind:imp:1p; +redescendirent redescendre VER 11.61 28.38 0.00 1.01 ind:pas:3p; +redescendis redescendre VER 11.61 28.38 0.00 0.47 ind:pas:1s;ind:pas:2s; +redescendit redescendre VER 11.61 28.38 0.01 4.19 ind:pas:3s; +redescendons redescendre VER 11.61 28.38 0.14 0.41 imp:pre:1p;ind:pre:1p; +redescendra redescendre VER 11.61 28.38 0.06 0.14 ind:fut:3s; +redescendrai redescendre VER 11.61 28.38 0.19 0.20 ind:fut:1s; +redescendrais redescendre VER 11.61 28.38 0.01 0.00 cnd:pre:1s; +redescendrait redescendre VER 11.61 28.38 0.00 0.20 cnd:pre:3s; +redescendre redescendre VER 11.61 28.38 3.08 5.88 inf; +redescendrons redescendre VER 11.61 28.38 0.01 0.07 ind:fut:1p; +redescendront redescendre VER 11.61 28.38 0.02 0.00 ind:fut:3p; +redescends redescendre VER 11.61 28.38 3.05 1.69 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redescendu redescendre VER m s 11.61 28.38 0.51 3.04 par:pas; +redescendue redescendre VER f s 11.61 28.38 0.25 0.41 par:pas; +redescendues redescendre VER f p 11.61 28.38 0.00 0.14 par:pas; +redescendus redescendre VER m p 11.61 28.38 0.16 1.42 par:pas; +redescente redescente NOM f s 0.01 0.14 0.01 0.14 +redessina redessiner VER 0.13 1.08 0.00 0.14 ind:pas:3s; +redessinaient redessiner VER 0.13 1.08 0.00 0.07 ind:imp:3p; +redessinait redessiner VER 0.13 1.08 0.00 0.14 ind:imp:3s; +redessine redessiner VER 0.13 1.08 0.08 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redessinent redessiner VER 0.13 1.08 0.00 0.07 ind:pre:3p; +redessiner redessiner VER 0.13 1.08 0.04 0.34 inf; +redessiné redessiner VER m s 0.13 1.08 0.00 0.20 par:pas; +redessinée redessiner VER f s 0.13 1.08 0.00 0.07 par:pas; +redevînt redevenir VER 17.88 37.57 0.00 0.20 sub:imp:3s; +redevable redevable ADJ s 3.76 0.81 3.46 0.74 +redevables redevable ADJ p 3.76 0.81 0.30 0.07 +redevais redevoir VER 0.03 0.20 0.00 0.07 ind:imp:1s; +redevait redevoir VER 0.03 0.20 0.00 0.07 ind:imp:3s; +redevance redevance NOM f s 0.04 0.47 0.03 0.27 +redevances redevance NOM f p 0.04 0.47 0.01 0.20 +redevenaient redevenir VER 17.88 37.57 0.01 0.74 ind:imp:3p; +redevenais redevenir VER 17.88 37.57 0.17 0.47 ind:imp:1s; +redevenait redevenir VER 17.88 37.57 0.11 4.73 ind:imp:3s; +redevenant redevenir VER 17.88 37.57 0.05 0.47 par:pre; +redevenez redevenir VER 17.88 37.57 0.39 0.14 imp:pre:2p;ind:pre:2p; +redeveniez redevenir VER 17.88 37.57 0.09 0.14 ind:imp:2p; +redevenir redevenir VER 17.88 37.57 5.52 5.88 inf; +redevenons redevenir VER 17.88 37.57 0.04 0.07 imp:pre:1p;ind:pre:1p; +redevenu redevenir VER m s 17.88 37.57 1.65 6.35 par:pas; +redevenue redevenir VER f s 17.88 37.57 0.56 4.53 par:pas; +redevenues redevenir VER f p 17.88 37.57 0.08 0.61 par:pas; +redevenus redevenir VER m p 17.88 37.57 0.40 1.42 par:pas; +redeviendra redevenir VER 17.88 37.57 1.50 0.54 ind:fut:3s; +redeviendrai redevenir VER 17.88 37.57 0.25 0.07 ind:fut:1s; +redeviendraient redevenir VER 17.88 37.57 0.01 0.14 cnd:pre:3p; +redeviendrais redevenir VER 17.88 37.57 0.38 0.07 cnd:pre:1s;cnd:pre:2s; +redeviendrait redevenir VER 17.88 37.57 0.15 0.61 cnd:pre:3s; +redeviendras redevenir VER 17.88 37.57 0.37 0.00 ind:fut:2s; +redeviendrez redevenir VER 17.88 37.57 0.13 0.00 ind:fut:2p; +redeviendriez redevenir VER 17.88 37.57 0.14 0.00 cnd:pre:2p; +redeviendrons redevenir VER 17.88 37.57 0.03 0.07 ind:fut:1p; +redeviendront redevenir VER 17.88 37.57 0.28 0.07 ind:fut:3p; +redevienne redevenir VER 17.88 37.57 1.65 0.34 sub:pre:1s;sub:pre:3s; +redeviennent redevenir VER 17.88 37.57 0.44 0.61 ind:pre:3p; +redeviennes redevenir VER 17.88 37.57 0.17 0.00 sub:pre:2s; +redeviens redevenir VER 17.88 37.57 1.88 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redevient redevenir VER 17.88 37.57 1.21 4.05 ind:pre:3s; +redevinrent redevenir VER 17.88 37.57 0.01 0.20 ind:pas:3p; +redevins redevenir VER 17.88 37.57 0.00 0.20 ind:pas:1s; +redevint redevenir VER 17.88 37.57 0.23 3.65 ind:pas:3s; +redevoir redevoir VER 0.03 0.20 0.01 0.00 inf; +redevra redevoir VER 0.03 0.20 0.00 0.07 ind:fut:3s; +redevrez redevoir VER 0.03 0.20 0.01 0.00 ind:fut:2p; +rediffusent rediffuser VER 0.20 0.07 0.02 0.00 ind:pre:3p; +rediffuser rediffuser VER 0.20 0.07 0.05 0.00 inf; +rediffuserons rediffuser VER 0.20 0.07 0.02 0.00 ind:fut:1p; +rediffusez rediffuser VER 0.20 0.07 0.01 0.00 imp:pre:2p; +rediffusion rediffusion NOM f s 0.64 0.00 0.44 0.00 +rediffusions rediffusion NOM f p 0.64 0.00 0.20 0.00 +rediffusé rediffuser VER m s 0.20 0.07 0.05 0.00 par:pas; +rediffusés rediffuser VER m p 0.20 0.07 0.03 0.07 par:pas; +redimensionner redimensionner VER 0.03 0.00 0.01 0.00 inf; +redimensionnées redimensionner VER f p 0.03 0.00 0.01 0.00 par:pas; +redingote redingote NOM f s 0.81 5.07 0.54 4.66 +redingotes redingote NOM f p 0.81 5.07 0.27 0.41 +redirai redire VER 8.61 10.20 0.47 0.07 ind:fut:1s; +redirais redire VER 8.61 10.20 0.03 0.00 cnd:pre:1s; +redirait redire VER 8.61 10.20 0.01 0.07 cnd:pre:3s; +redire redire VER 8.61 10.20 3.04 5.07 inf; +redirez redire VER 8.61 10.20 0.01 0.07 ind:fut:2p; +rediriez redire VER 8.61 10.20 0.01 0.00 cnd:pre:2p; +redirige rediriger VER 0.37 0.00 0.08 0.00 ind:pre:1s;ind:pre:3s; +rediriger rediriger VER 0.37 0.00 0.15 0.00 inf; +redirigé rediriger VER m s 0.37 0.00 0.14 0.00 par:pas; +redis redire VER 8.61 10.20 3.46 1.62 imp:pre:2s;ind:pre:1s;ind:pre:2s; +redisais redire VER 8.61 10.20 0.01 0.20 ind:imp:1s; +redisait redire VER 8.61 10.20 0.00 0.34 ind:imp:3s; +redisant redire VER 8.61 10.20 0.01 0.20 par:pre; +rediscuter rediscuter VER 0.20 0.07 0.10 0.07 inf; +rediscutera rediscuter VER 0.20 0.07 0.05 0.00 ind:fut:3s; +rediscuterons rediscuter VER 0.20 0.07 0.05 0.00 ind:fut:1p; +redise redire VER 8.61 10.20 0.02 0.20 sub:pre:1s;sub:pre:3s; +redisent redire VER 8.61 10.20 0.01 0.07 ind:pre:3p; +redises redire VER 8.61 10.20 0.27 0.00 sub:pre:2s; +redisposer redisposer VER 0.16 0.14 0.16 0.14 inf; +redistribua redistribuer VER 0.34 0.61 0.01 0.00 ind:pas:3s; +redistribuais redistribuer VER 0.34 0.61 0.02 0.07 ind:imp:1s;ind:imp:2s; +redistribuait redistribuer VER 0.34 0.61 0.00 0.20 ind:imp:3s; +redistribue redistribuer VER 0.34 0.61 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redistribuent redistribuer VER 0.34 0.61 0.01 0.00 ind:pre:3p; +redistribuer redistribuer VER 0.34 0.61 0.13 0.14 inf; +redistribueras redistribuer VER 0.34 0.61 0.01 0.00 ind:fut:2s; +redistribuons redistribuer VER 0.34 0.61 0.01 0.00 imp:pre:1p; +redistribution redistribution NOM f s 0.10 0.41 0.10 0.34 +redistributions redistribution NOM f p 0.10 0.41 0.00 0.07 +redistribué redistribuer VER m s 0.34 0.61 0.04 0.07 par:pas; +redistribués redistribuer VER m p 0.34 0.61 0.03 0.07 par:pas; +redit redire VER m s 8.61 10.20 0.39 1.96 ind:pre:3s;par:pas; +redite redire VER f s 8.61 10.20 0.01 0.00 par:pas; +redites redire VER f p 8.61 10.20 0.85 0.20 par:pas; +redits redire VER m p 8.61 10.20 0.00 0.14 par:pas; +redondance redondance NOM f s 0.07 0.34 0.04 0.07 +redondances redondance NOM f p 0.07 0.34 0.04 0.27 +redondant redondant ADJ m s 0.39 0.27 0.32 0.14 +redondante redondant ADJ f s 0.39 0.27 0.03 0.07 +redondantes redondant ADJ f p 0.39 0.27 0.01 0.07 +redondants redondant ADJ m p 0.39 0.27 0.04 0.00 +redonna redonner VER 9.43 11.49 0.03 0.54 ind:pas:3s; +redonnai redonner VER 9.43 11.49 0.00 0.07 ind:pas:1s; +redonnaient redonner VER 9.43 11.49 0.00 0.20 ind:imp:3p; +redonnais redonner VER 9.43 11.49 0.01 0.07 ind:imp:1s; +redonnait redonner VER 9.43 11.49 0.05 1.55 ind:imp:3s; +redonnant redonner VER 9.43 11.49 0.03 0.47 par:pre; +redonne redonner VER 9.43 11.49 2.77 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redonnent redonner VER 9.43 11.49 0.25 0.20 ind:pre:3p; +redonner redonner VER 9.43 11.49 2.87 4.73 inf; +redonnera redonner VER 9.43 11.49 0.27 0.20 ind:fut:3s; +redonnerai redonner VER 9.43 11.49 0.11 0.00 ind:fut:1s; +redonneraient redonner VER 9.43 11.49 0.01 0.07 cnd:pre:3p; +redonnerais redonner VER 9.43 11.49 0.00 0.07 cnd:pre:1s; +redonnerait redonner VER 9.43 11.49 0.04 0.14 cnd:pre:3s; +redonneras redonner VER 9.43 11.49 0.14 0.00 ind:fut:2s; +redonnerons redonner VER 9.43 11.49 0.01 0.00 ind:fut:1p; +redonneront redonner VER 9.43 11.49 0.02 0.00 ind:fut:3p; +redonnes redonner VER 9.43 11.49 0.56 0.00 ind:pre:2s; +redonnez redonner VER 9.43 11.49 0.54 0.07 imp:pre:2p;ind:pre:2p; +redonniez redonner VER 9.43 11.49 0.01 0.00 ind:imp:2p; +redonnons redonner VER 9.43 11.49 0.42 0.00 imp:pre:1p;ind:pre:1p; +redonnât redonner VER 9.43 11.49 0.00 0.07 sub:imp:3s; +redonné redonner VER m s 9.43 11.49 1.28 1.42 par:pas; +redorer redorer VER 0.18 0.41 0.18 0.27 inf; +redormir redormir VER 0.01 0.27 0.01 0.14 inf; +redors redormir VER 0.01 0.27 0.00 0.07 ind:pre:1s; +redort redormir VER 0.01 0.27 0.00 0.07 ind:pre:3s; +redoré redorer VER m s 0.18 0.41 0.00 0.07 par:pas; +redorées redorer VER f p 0.18 0.41 0.00 0.07 par:pas; +redoubla redoubler VER 2.73 11.01 0.00 1.08 ind:pas:3s; +redoublai redoubler VER 2.73 11.01 0.01 0.20 ind:pas:1s; +redoublaient redoubler VER 2.73 11.01 0.00 0.74 ind:imp:3p; +redoublais redoubler VER 2.73 11.01 0.01 0.07 ind:imp:1s; +redoublait redoubler VER 2.73 11.01 0.02 1.96 ind:imp:3s; +redoublant redoubler VER 2.73 11.01 0.01 0.20 par:pre; +redoublants redoublant NOM m p 0.00 0.07 0.00 0.07 +redouble redoubler VER 2.73 11.01 0.57 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redoublement redoublement NOM m s 0.03 0.47 0.03 0.47 +redoublent redoubler VER 2.73 11.01 0.17 0.74 ind:pre:3p; +redoubler redoubler VER 2.73 11.01 1.16 1.96 inf; +redoublera redoubler VER 2.73 11.01 0.11 0.07 ind:fut:3s; +redoublerai redoubler VER 2.73 11.01 0.12 0.07 ind:fut:1s; +redoublerait redoubler VER 2.73 11.01 0.00 0.14 cnd:pre:3s; +redoubleront redoubler VER 2.73 11.01 0.01 0.07 ind:fut:3p; +redoublez redoubler VER 2.73 11.01 0.04 0.00 imp:pre:2p;ind:pre:2p; +redoublions redoubler VER 2.73 11.01 0.00 0.07 ind:imp:1p; +redoublons redoubler VER 2.73 11.01 0.00 0.07 imp:pre:1p; +redoublèrent redoubler VER 2.73 11.01 0.00 0.27 ind:pas:3p; +redoublé redoubler VER m s 2.73 11.01 0.35 0.61 par:pas; +redoublée redoubler VER f s 2.73 11.01 0.00 0.20 par:pas; +redoublées redoublé ADJ f p 0.05 1.28 0.00 0.14 +redoublés redoubler VER m p 2.73 11.01 0.14 0.27 par:pas; +redouta redouter VER 6.58 38.58 0.00 0.54 ind:pas:3s; +redoutable redoutable ADJ s 6.61 23.18 5.94 17.77 +redoutablement redoutablement ADV 0.01 0.41 0.01 0.41 +redoutables redoutable ADJ p 6.61 23.18 0.67 5.41 +redoutaient redouter VER 6.58 38.58 0.08 0.74 ind:imp:3p; +redoutais redouter VER 6.58 38.58 0.66 3.65 ind:imp:1s;ind:imp:2s; +redoutait redouter VER 6.58 38.58 0.73 11.49 ind:imp:3s; +redoutant redouter VER 6.58 38.58 0.12 3.18 par:pre; +redoutasse redouter VER 6.58 38.58 0.00 0.07 sub:imp:1s; +redoute redouter VER 6.58 38.58 1.51 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redoutent redouter VER 6.58 38.58 0.40 1.15 ind:pre:3p;sub:pre:3p; +redouter redouter VER 6.58 38.58 1.03 4.80 inf; +redouterait redouter VER 6.58 38.58 0.00 0.07 cnd:pre:3s; +redouteras redouter VER 6.58 38.58 0.00 0.07 ind:fut:2s; +redoutes redouter VER 6.58 38.58 0.15 0.07 ind:pre:2s; +redoutez redouter VER 6.58 38.58 0.44 0.07 imp:pre:2p;ind:pre:2p; +redoutiez redouter VER 6.58 38.58 0.37 0.00 ind:imp:2p; +redoutions redouter VER 6.58 38.58 0.04 0.54 ind:imp:1p;sub:pre:1p; +redoutons redouter VER 6.58 38.58 0.04 0.14 imp:pre:1p;ind:pre:1p; +redoutât redouter VER 6.58 38.58 0.00 0.20 sub:imp:3s; +redoutèrent redouter VER 6.58 38.58 0.00 0.07 ind:pas:3p; +redouté redouter VER m s 6.58 38.58 0.79 4.05 par:pas; +redoutée redouter VER f s 6.58 38.58 0.20 1.69 par:pas; +redoutées redouter VER f p 6.58 38.58 0.00 0.47 par:pas; +redoutés redouter VER m p 6.58 38.58 0.02 0.68 par:pas; +redoux redoux NOM m 0.01 0.88 0.01 0.88 +redressa redresser VER 8.93 64.39 0.03 22.16 ind:pas:3s; +redressai redresser VER 8.93 64.39 0.00 1.08 ind:pas:1s; +redressaient redresser VER 8.93 64.39 0.00 0.74 ind:imp:3p; +redressais redresser VER 8.93 64.39 0.00 0.34 ind:imp:1s; +redressait redresser VER 8.93 64.39 0.01 4.26 ind:imp:3s; +redressant redresser VER 8.93 64.39 0.04 5.47 par:pre; +redresse redresser VER 8.93 64.39 3.91 10.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redressement redressement NOM m s 1.63 6.62 1.63 6.55 +redressements redressement NOM m p 1.63 6.62 0.00 0.07 +redressent redresser VER 8.93 64.39 0.17 0.68 ind:pre:3p; +redresser redresser VER 8.93 64.39 2.28 8.24 inf; +redressera redresser VER 8.93 64.39 0.12 0.07 ind:fut:3s; +redresserai redresser VER 8.93 64.39 0.13 0.00 ind:fut:1s; +redresserait redresser VER 8.93 64.39 0.01 0.27 cnd:pre:3s; +redresserons redresser VER 8.93 64.39 0.00 0.07 ind:fut:1p; +redresses redresser VER 8.93 64.39 0.23 0.00 ind:pre:2s;sub:pre:2s; +redresseur redresseur NOM m s 0.32 0.34 0.27 0.20 +redresseurs redresseur NOM m p 0.32 0.34 0.03 0.14 +redresseuse redresseur NOM f s 0.32 0.34 0.02 0.00 +redressez redresser VER 8.93 64.39 1.40 0.14 imp:pre:2p;ind:pre:2p; +redressons redresser VER 8.93 64.39 0.13 0.07 imp:pre:1p;ind:pre:1p; +redressât redresser VER 8.93 64.39 0.00 0.20 sub:imp:3s; +redressèrent redresser VER 8.93 64.39 0.00 0.47 ind:pas:3p; +redressé redresser VER m s 8.93 64.39 0.30 5.61 par:pas; +redressée redresser VER f s 8.93 64.39 0.15 2.77 par:pas; +redressées redresser VER f p 8.93 64.39 0.00 0.34 par:pas; +redressés redresser VER m p 8.93 64.39 0.01 0.54 par:pas; +redéconner redéconner VER 0.01 0.00 0.01 0.00 inf; +redécoré redécoré ADJ m s 0.26 0.14 0.26 0.14 +redécoupage redécoupage NOM m s 0.01 0.00 0.01 0.00 +redécouvert redécouvrir VER m s 0.70 3.18 0.13 0.41 par:pas; +redécouverte redécouverte NOM f s 0.03 0.14 0.03 0.14 +redécouvertes redécouvrir VER f p 0.70 3.18 0.00 0.07 par:pas; +redécouverts redécouvert ADJ m p 0.00 0.07 0.00 0.07 +redécouvrît redécouvrir VER 0.70 3.18 0.00 0.07 sub:imp:3s; +redécouvraient redécouvrir VER 0.70 3.18 0.01 0.07 ind:imp:3p; +redécouvrait redécouvrir VER 0.70 3.18 0.00 0.34 ind:imp:3s; +redécouvrant redécouvrir VER 0.70 3.18 0.10 0.14 par:pre; +redécouvre redécouvrir VER 0.70 3.18 0.01 0.41 ind:pre:1s;ind:pre:3s; +redécouvrent redécouvrir VER 0.70 3.18 0.10 0.07 ind:pre:3p; +redécouvrions redécouvrir VER 0.70 3.18 0.00 0.14 ind:imp:1p; +redécouvrir redécouvrir VER 0.70 3.18 0.29 1.22 inf; +redécouvrira redécouvrir VER 0.70 3.18 0.00 0.07 ind:fut:3s; +redécouvriront redécouvrir VER 0.70 3.18 0.00 0.07 ind:fut:3p; +redécouvris redécouvrir VER 0.70 3.18 0.00 0.07 ind:pas:1s; +redécouvrit redécouvrir VER 0.70 3.18 0.02 0.07 ind:pas:3s; +redécouvrons redécouvrir VER 0.70 3.18 0.04 0.00 ind:pre:1p; +redéfini redéfinir VER m s 0.29 0.07 0.03 0.00 par:pas; +redéfinir redéfinir VER 0.29 0.07 0.13 0.00 inf; +redéfinis redéfinir VER m p 0.29 0.07 0.03 0.07 ind:pre:1s;par:pas; +redéfinissons redéfinir VER 0.29 0.07 0.11 0.00 imp:pre:1p;ind:pre:1p; +redéfinition redéfinition NOM f s 0.01 0.00 0.01 0.00 +redégringoler redégringoler VER 0.00 0.07 0.00 0.07 inf; +redémarra redémarrer VER 1.90 2.16 0.00 0.14 ind:pas:3s; +redémarrage redémarrage NOM m s 0.13 0.00 0.13 0.00 +redémarraient redémarrer VER 1.90 2.16 0.00 0.07 ind:imp:3p; +redémarrais redémarrer VER 1.90 2.16 0.01 0.07 ind:imp:1s; +redémarrait redémarrer VER 1.90 2.16 0.00 0.14 ind:imp:3s; +redémarrant redémarrer VER 1.90 2.16 0.01 0.07 par:pre; +redémarre redémarrer VER 1.90 2.16 0.40 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +redémarrent redémarrer VER 1.90 2.16 0.00 0.07 ind:pre:3p; +redémarrer redémarrer VER 1.90 2.16 1.00 0.47 inf; +redémarrera redémarrer VER 1.90 2.16 0.01 0.07 ind:fut:3s; +redémarrerait redémarrer VER 1.90 2.16 0.01 0.00 cnd:pre:3s; +redémarrez redémarrer VER 1.90 2.16 0.18 0.00 imp:pre:2p;ind:pre:2p; +redémarrons redémarrer VER 1.90 2.16 0.02 0.00 imp:pre:1p; +redémarré redémarrer VER m s 1.90 2.16 0.25 0.07 par:pas; +redémolir redémolir VER 0.01 0.00 0.01 0.00 inf; +redéploie redéployer VER 0.14 0.00 0.03 0.00 ind:pre:3s; +redéploiement redéploiement NOM m s 0.04 0.07 0.04 0.07 +redéployer redéployer VER 0.14 0.00 0.09 0.00 inf; +redéployez redéployer VER 0.14 0.00 0.04 0.00 imp:pre:2p;ind:pre:2p; +redéposer redéposer VER 0.08 0.07 0.01 0.00 inf; +redéposé redéposer VER m s 0.08 0.07 0.07 0.07 par:pas; +refîmes refaire VER 58.27 40.81 0.00 0.07 ind:pas:1p; +refît refaire VER 58.27 40.81 0.00 0.14 sub:imp:3s; +refabriquer refabriquer VER 0.01 0.00 0.01 0.00 inf; +refaire refaire VER 58.27 40.81 26.29 18.24 inf; +refais refaire VER 58.27 40.81 8.71 1.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +refaisaient refaire VER 58.27 40.81 0.01 0.41 ind:imp:3p; +refaisais refaire VER 58.27 40.81 0.11 0.41 ind:imp:1s;ind:imp:2s; +refaisait refaire VER 58.27 40.81 0.18 1.89 ind:imp:3s; +refaisant refaire VER 58.27 40.81 0.03 1.28 par:pre; +refaisions refaire VER 58.27 40.81 0.01 0.54 ind:imp:1p; +refaisons refaire VER 58.27 40.81 0.79 0.00 imp:pre:1p;ind:pre:1p; +refait refaire VER m s 58.27 40.81 11.23 8.58 ind:pre:3s;par:pas;par:pas; +refaite refaire VER f s 58.27 40.81 0.44 0.88 par:pas; +refaites refaire VER f p 58.27 40.81 2.55 0.54 imp:pre:2p;ind:pre:2p;par:pas; +refaits refaire VER m p 58.27 40.81 0.19 0.14 par:pas; +refamiliariser refamiliariser VER 0.01 0.00 0.01 0.00 inf; +refasse refaire VER 58.27 40.81 1.18 0.41 sub:pre:1s;sub:pre:3s; +refassent refaire VER 58.27 40.81 0.02 0.07 sub:pre:3p; +refasses refaire VER 58.27 40.81 0.41 0.00 sub:pre:2s; +refassiez refaire VER 58.27 40.81 0.04 0.00 sub:pre:2p; +refaçonner refaçonner VER 0.01 0.00 0.01 0.00 inf; +refaufile refaufiler VER 0.00 0.07 0.00 0.07 ind:pre:3s; +refendre refendre VER 0.00 0.27 0.00 0.14 inf; +refendu refendre VER m s 0.00 0.27 0.00 0.14 par:pas; +refera refaire VER 58.27 40.81 1.28 0.27 ind:fut:3s; +referai refaire VER 58.27 40.81 1.49 0.34 ind:fut:1s; +referais refaire VER 58.27 40.81 1.56 0.54 cnd:pre:1s;cnd:pre:2s; +referait refaire VER 58.27 40.81 0.21 0.47 cnd:pre:3s; +referas refaire VER 58.27 40.81 0.49 0.00 ind:fut:2s; +referendum referendum NOM m s 0.13 0.00 0.13 0.00 +referions refaire VER 58.27 40.81 0.01 0.00 cnd:pre:1p; +referma refermer VER 11.97 91.76 0.33 20.34 ind:pas:3s; +refermai refermer VER 11.97 91.76 0.00 1.35 ind:pas:1s; +refermaient refermer VER 11.97 91.76 0.03 1.42 ind:imp:3p; +refermais refermer VER 11.97 91.76 0.00 0.68 ind:imp:1s; +refermait refermer VER 11.97 91.76 0.05 7.09 ind:imp:3s; +refermant refermer VER 11.97 91.76 0.05 4.80 par:pre; +refermassent refermer VER 11.97 91.76 0.00 0.07 sub:imp:3p; +referme refermer VER 11.97 91.76 3.50 14.93 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +referment refermer VER 11.97 91.76 0.35 1.82 ind:pre:3p; +refermer refermer VER 11.97 91.76 3.26 13.11 inf; +refermera refermer VER 11.97 91.76 0.36 0.20 ind:fut:3s; +refermeraient refermer VER 11.97 91.76 0.00 0.27 cnd:pre:3p; +refermerais refermer VER 11.97 91.76 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +refermerait refermer VER 11.97 91.76 0.11 0.27 cnd:pre:3s; +refermeront refermer VER 11.97 91.76 0.15 0.00 ind:fut:3p; +refermes refermer VER 11.97 91.76 0.21 0.00 ind:pre:2s; +refermez refermer VER 11.97 91.76 0.73 0.20 imp:pre:2p;ind:pre:2p; +refermâmes refermer VER 11.97 91.76 0.00 0.07 ind:pas:1p; +refermons refermer VER 11.97 91.76 0.26 0.14 imp:pre:1p;ind:pre:1p; +refermât refermer VER 11.97 91.76 0.00 0.47 sub:imp:3s; +refermèrent refermer VER 11.97 91.76 0.00 1.08 ind:pas:3p; +refermé refermer VER m s 11.97 91.76 0.98 11.15 par:pas; +refermée refermer VER f s 11.97 91.76 1.19 9.59 par:pas; +refermées refermer VER f p 11.97 91.76 0.17 1.49 par:pas; +refermés refermer VER m p 11.97 91.76 0.20 1.22 par:pas; +referons refaire VER 58.27 40.81 0.14 0.41 ind:fut:1p; +referont refaire VER 58.27 40.81 0.30 0.07 ind:fut:3p; +refeuilleter refeuilleter VER 0.00 0.07 0.00 0.07 inf; +reficelai reficeler VER 0.00 0.14 0.00 0.07 ind:pas:1s; +reficelle reficeler VER 0.00 0.14 0.00 0.07 ind:pre:1s; +refil refil NOM m s 0.00 0.14 0.00 0.14 +refila refiler VER 9.70 12.09 0.14 0.14 ind:pas:3s; +refilai refiler VER 9.70 12.09 0.00 0.07 ind:pas:1s; +refilaient refiler VER 9.70 12.09 0.01 0.14 ind:imp:3p; +refilais refiler VER 9.70 12.09 0.00 0.14 ind:imp:1s; +refilait refiler VER 9.70 12.09 0.33 0.81 ind:imp:3s; +refilant refiler VER 9.70 12.09 0.15 0.47 par:pre; +refile refiler VER 9.70 12.09 2.00 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refilent refiler VER 9.70 12.09 0.17 0.41 ind:pre:3p; +refiler refiler VER 9.70 12.09 2.58 3.99 inf; +refilera refiler VER 9.70 12.09 0.03 0.14 ind:fut:3s; +refilerait refiler VER 9.70 12.09 0.04 0.07 cnd:pre:3s; +refiles refiler VER 9.70 12.09 0.37 0.07 ind:pre:2s; +refilez refiler VER 9.70 12.09 0.25 0.00 imp:pre:2p;ind:pre:2p; +refilé refiler VER m s 9.70 12.09 3.13 2.43 par:pas; +refilée refiler VER f s 9.70 12.09 0.37 0.41 par:pas; +refilées refiler VER f p 9.70 12.09 0.02 0.07 par:pas; +refilés refiler VER m p 9.70 12.09 0.13 0.14 par:pas; +refinancement refinancement NOM m s 0.04 0.00 0.04 0.00 +refinancée refinancer VER f s 0.01 0.00 0.01 0.00 par:pas; +refirent refaire VER 58.27 40.81 0.01 0.47 ind:pas:3p; +refis refaire VER 58.27 40.81 0.14 0.34 ind:pas:1s; +refit refaire VER 58.27 40.81 0.03 2.77 ind:pas:3s; +reflet reflet NOM m s 6.41 50.74 5.63 27.36 +reflets reflet NOM m p 6.41 50.74 0.77 23.38 +refleurir refleurir VER 0.28 0.88 0.14 0.34 inf; +refleurira refleurir VER 0.28 0.88 0.11 0.07 ind:fut:3s; +refleurissaient refleurir VER 0.28 0.88 0.00 0.14 ind:imp:3p; +refleurissait refleurir VER 0.28 0.88 0.00 0.14 ind:imp:3s; +refleurissent refleurir VER 0.28 0.88 0.01 0.07 ind:pre:3p; +refleurit refleurir VER 0.28 0.88 0.02 0.14 ind:pre:3s;ind:pas:3s; +reflex reflex NOM m 0.14 0.00 0.14 0.00 +reflète refléter VER 5.57 22.23 2.89 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reflètent refléter VER 5.57 22.23 0.68 2.16 ind:pre:3p; +reflua refluer VER 0.40 8.04 0.00 0.88 ind:pas:3s; +refluaient refluer VER 0.40 8.04 0.01 0.68 ind:imp:3p; +refluait refluer VER 0.40 8.04 0.00 1.28 ind:imp:3s; +refluant refluer VER 0.40 8.04 0.00 0.81 par:pre; +reflue refluer VER 0.40 8.04 0.00 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refluent refluer VER 0.40 8.04 0.10 0.61 ind:pre:3p; +refluer refluer VER 0.40 8.04 0.13 1.28 inf; +refluera refluer VER 0.40 8.04 0.00 0.07 ind:fut:3s; +refléta refléter VER 5.57 22.23 0.00 0.20 ind:pas:3s; +reflétaient refléter VER 5.57 22.23 0.19 4.26 ind:imp:3p; +reflétait refléter VER 5.57 22.23 0.35 6.15 ind:imp:3s; +reflétant refléter VER 5.57 22.23 0.08 1.22 par:pre; +refléter refléter VER 5.57 22.23 0.80 1.42 inf; +reflétera refléter VER 5.57 22.23 0.08 0.14 ind:fut:3s; +refléteraient refléter VER 5.57 22.23 0.00 0.07 cnd:pre:3p; +refléterait refléter VER 5.57 22.23 0.02 0.07 cnd:pre:3s; +refluèrent refluer VER 0.40 8.04 0.00 0.54 ind:pas:3p; +reflétons refléter VER 5.57 22.23 0.00 0.07 ind:pre:1p; +reflétèrent refléter VER 5.57 22.23 0.00 0.07 ind:pas:3p; +reflété refléter VER m s 5.57 22.23 0.22 1.76 par:pas; +reflétée refléter VER f s 5.57 22.23 0.12 1.28 par:pas; +reflétées refléter VER f p 5.57 22.23 0.14 0.34 par:pas; +reflétés refléter VER m p 5.57 22.23 0.00 0.14 par:pas; +reflué refluer VER m s 0.40 8.04 0.16 0.47 par:pas; +refluée refluer VER f s 0.40 8.04 0.00 0.07 par:pas; +reflux reflux NOM m 0.47 3.45 0.47 3.45 +refoncer refoncer VER 0.01 0.00 0.01 0.00 inf; +refondant refonder VER 0.00 0.20 0.00 0.07 par:pre; +refonde refonder VER 0.00 0.20 0.00 0.14 ind:pre:3s; +refondre refondre VER 0.17 0.68 0.14 0.34 inf; +refonds refondre VER 0.17 0.68 0.01 0.00 imp:pre:2s; +refondu refondre VER m s 0.17 0.68 0.01 0.07 par:pas; +refondus refondre VER m p 0.17 0.68 0.00 0.27 par:pas; +refont refaire VER 58.27 40.81 0.42 0.41 ind:pre:3p; +refonte refonte NOM f s 0.28 0.47 0.28 0.47 +reforger reforger VER 0.54 0.14 0.14 0.14 inf; +reforgé reforger VER m s 0.54 0.14 0.14 0.00 par:pas; +reforgée reforger VER f s 0.54 0.14 0.27 0.00 par:pas; +reforma reformer VER 0.71 6.49 0.04 0.61 ind:pas:3s; +reformaient reformer VER 0.71 6.49 0.00 0.88 ind:imp:3p; +reformait reformer VER 0.71 6.49 0.00 1.01 ind:imp:3s; +reformant reformer VER 0.71 6.49 0.00 0.20 par:pre; +reformassent reformer VER 0.71 6.49 0.00 0.07 sub:imp:3p; +reformater reformater VER 0.01 0.00 0.01 0.00 inf; +reformation reformation NOM f s 0.02 0.07 0.02 0.07 +reforme reformer VER 0.71 6.49 0.16 1.08 ind:pre:1s;ind:pre:3s; +reforment reformer VER 0.71 6.49 0.03 0.27 ind:pre:3p; +reformer reformer VER 0.71 6.49 0.29 1.01 inf; +reformerons reformer VER 0.71 6.49 0.00 0.07 ind:fut:1p; +reformeront reformer VER 0.71 6.49 0.02 0.14 ind:fut:3p; +reformez reformer VER 0.71 6.49 0.08 0.00 imp:pre:2p; +reformèrent reformer VER 0.71 6.49 0.00 0.07 ind:pas:3p; +reformé reformer VER m s 0.71 6.49 0.05 0.47 par:pas; +reformée reformer VER f s 0.71 6.49 0.04 0.27 par:pas; +reformulation reformulation NOM f s 0.01 0.00 0.01 0.00 +reformuler reformuler VER 0.55 0.14 0.50 0.00 inf; +reformulé reformuler VER m s 0.55 0.14 0.04 0.00 par:pas; +reformulée reformuler VER f s 0.55 0.14 0.00 0.14 par:pas; +reformés reformer VER m p 0.71 6.49 0.01 0.34 par:pas; +refouiller refouiller VER 0.03 0.07 0.01 0.00 inf; +refouillé refouiller VER m s 0.03 0.07 0.01 0.07 par:pas; +refoula refouler VER 1.88 7.36 0.00 0.41 ind:pas:3s; +refoulai refouler VER 1.88 7.36 0.00 0.07 ind:pas:1s; +refoulaient refouler VER 1.88 7.36 0.00 0.14 ind:imp:3p; +refoulais refouler VER 1.88 7.36 0.03 0.07 ind:imp:1s;ind:imp:2s; +refoulait refouler VER 1.88 7.36 0.03 0.41 ind:imp:3s; +refoulant refouler VER 1.88 7.36 0.01 0.27 par:pre; +refoulante refoulant ADJ f s 0.00 0.27 0.00 0.20 +refoule refouler VER 1.88 7.36 0.30 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refoulement refoulement NOM m s 0.17 1.08 0.15 0.88 +refoulements refoulement NOM m p 0.17 1.08 0.02 0.20 +refoulent refouler VER 1.88 7.36 0.03 0.14 ind:pre:3p; +refouler refouler VER 1.88 7.36 0.72 2.30 inf; +refoulerait refouler VER 1.88 7.36 0.00 0.07 cnd:pre:3s; +refoulez refouler VER 1.88 7.36 0.05 0.07 imp:pre:2p;ind:pre:2p; +refouloir refouloir NOM m s 0.01 0.00 0.01 0.00 +refoulé refouler VER m s 1.88 7.36 0.53 1.35 par:pas; +refoulée refoulé ADJ f s 1.24 1.69 0.34 0.47 +refoulées refoulé ADJ f p 1.24 1.69 0.27 0.27 +refoulés refoulé ADJ m p 1.24 1.69 0.27 0.47 +refourgua refourguer VER 0.95 1.82 0.00 0.07 ind:pas:3s; +refourgue refourguer VER 0.95 1.82 0.12 0.54 imp:pre:2s;ind:pre:1s;ind:pre:3s; +refourguer refourguer VER 0.95 1.82 0.44 0.88 inf; +refourguera refourguer VER 0.95 1.82 0.01 0.00 ind:fut:3s; +refourguerait refourguer VER 0.95 1.82 0.00 0.07 cnd:pre:3s; +refourguions refourguer VER 0.95 1.82 0.01 0.00 ind:imp:1p; +refourgué refourguer VER m s 0.95 1.82 0.36 0.00 par:pas; +refourguées refourguer VER f p 0.95 1.82 0.00 0.07 par:pas; +refourgués refourguer VER m p 0.95 1.82 0.01 0.20 par:pas; +refourrait refourrer VER 0.00 0.07 0.00 0.07 ind:imp:3s; +refous refoutre VER 0.11 0.95 0.06 0.07 ind:pre:1s;ind:pre:2s; +refout refoutre VER 0.11 0.95 0.00 0.14 ind:pre:3s; +refoutait refoutre VER 0.11 0.95 0.00 0.14 ind:imp:3s; +refoute refoutre VER 0.11 0.95 0.01 0.00 sub:pre:3s; +refoutent refoutre VER 0.11 0.95 0.01 0.00 ind:pre:3p; +refoutes refoutre VER 0.11 0.95 0.00 0.07 sub:pre:2s; +refoutez refoutre VER 0.11 0.95 0.00 0.07 imp:pre:2p; +refoutre refoutre VER 0.11 0.95 0.03 0.41 inf; +refoutu refoutre VER m s 0.11 0.95 0.00 0.07 par:pas; +refrain refrain NOM m s 2.39 10.68 1.98 8.24 +refrains refrain NOM m p 2.39 10.68 0.41 2.43 +refranchies refranchir VER f p 0.01 0.07 0.00 0.07 par:pas; +refranchir refranchir VER 0.01 0.07 0.01 0.00 inf; +refrappe refrapper VER 0.07 0.14 0.04 0.00 imp:pre:2s;ind:pre:3s; +refrapper refrapper VER 0.07 0.14 0.01 0.00 inf; +refroidi refroidir VER m s 10.57 8.58 1.32 0.88 par:pas; +refroidie refroidir VER f s 10.57 8.58 0.17 0.34 par:pas; +refroidies refroidir VER f p 10.57 8.58 0.17 0.14 par:pas; +refroidir refroidir VER 10.57 8.58 3.17 3.11 inf; +refroidira refroidir VER 10.57 8.58 0.06 0.14 ind:fut:3s; +refroidiraient refroidir VER 10.57 8.58 0.00 0.14 cnd:pre:3p; +refroidirais refroidir VER 10.57 8.58 0.01 0.00 cnd:pre:2s; +refroidirait refroidir VER 10.57 8.58 0.05 0.14 cnd:pre:3s; +refroidis refroidir VER m p 10.57 8.58 0.80 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +refroidissaient refroidir VER 10.57 8.58 0.01 0.14 ind:imp:3p; +refroidissais refroidir VER 10.57 8.58 0.00 0.07 ind:imp:1s; +refroidissait refroidir VER 10.57 8.58 0.06 1.01 ind:imp:3s; +refroidissant refroidir VER 10.57 8.58 0.06 0.07 par:pre; +refroidisse refroidir VER 10.57 8.58 1.43 0.41 sub:pre:1s;sub:pre:3s; +refroidissement refroidissement NOM m s 1.56 1.01 1.56 1.01 +refroidissent refroidir VER 10.57 8.58 0.22 0.20 ind:pre:3p; +refroidisseur refroidisseur NOM m s 0.10 0.00 0.10 0.00 +refroidissiez refroidir VER 10.57 8.58 0.00 0.07 ind:imp:2p; +refroidit refroidir VER 10.57 8.58 3.03 1.35 ind:pre:3s;ind:pas:3s; +refrène refréner VER 0.01 1.82 0.00 0.14 ind:pre:3s; +refréna refréner VER 0.01 1.82 0.00 0.07 ind:pas:3s; +refrénai refréner VER 0.01 1.82 0.00 0.14 ind:pas:1s; +refrénait refréner VER 0.01 1.82 0.00 0.07 ind:imp:3s; +refrénant refréner VER 0.01 1.82 0.00 0.27 par:pre; +refréner refréner VER 0.01 1.82 0.01 0.88 inf; +refrénerait refréner VER 0.01 1.82 0.00 0.07 cnd:pre:3s; +refréné refréner VER m s 0.01 1.82 0.00 0.14 par:pas; +refrénés refréner VER m p 0.01 1.82 0.00 0.07 par:pas; +refuge refuge NOM m s 8.38 18.65 8.02 16.89 +refuges refuge NOM m p 8.38 18.65 0.36 1.76 +refuites refuite NOM f p 0.00 0.07 0.00 0.07 +refumer refumer VER 0.03 0.07 0.03 0.07 inf; +refus refus NOM m 9.02 27.03 9.02 27.03 +refusa refuser VER 143.96 152.77 1.82 14.59 ind:pas:3s; +refusai refuser VER 143.96 152.77 0.13 3.24 ind:pas:1s; +refusaient refuser VER 143.96 152.77 0.85 4.53 ind:imp:3p; +refusais refuser VER 143.96 152.77 2.15 4.59 ind:imp:1s;ind:imp:2s; +refusait refuser VER 143.96 152.77 4.17 21.82 ind:imp:3s; +refusant refuser VER 143.96 152.77 1.90 6.89 par:pre; +refuse refuser VER 143.96 152.77 49.29 24.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +refusent refuser VER 143.96 152.77 7.76 4.26 ind:pre:3p; +refuser refuser VER 143.96 152.77 21.34 27.84 inf;; +refusera refuser VER 143.96 152.77 2.03 0.81 ind:fut:3s; +refuserai refuser VER 143.96 152.77 0.85 0.47 ind:fut:1s; +refuseraient refuser VER 143.96 152.77 0.09 0.41 cnd:pre:3p; +refuserais refuser VER 143.96 152.77 1.08 0.61 cnd:pre:1s;cnd:pre:2s; +refuserait refuser VER 143.96 152.77 1.43 2.03 cnd:pre:3s; +refuseras refuser VER 143.96 152.77 0.15 0.27 ind:fut:2s; +refuserez refuser VER 143.96 152.77 0.58 0.27 ind:fut:2p; +refuseriez refuser VER 143.96 152.77 0.17 0.20 cnd:pre:2p; +refuserions refuser VER 143.96 152.77 0.02 0.07 cnd:pre:1p; +refuseront refuser VER 143.96 152.77 0.58 0.14 ind:fut:3p; +refuses refuser VER 143.96 152.77 8.60 1.28 ind:pre:2s; +refusez refuser VER 143.96 152.77 8.29 2.43 imp:pre:2p;ind:pre:2p; +refusiez refuser VER 143.96 152.77 0.59 0.20 ind:imp:2p; +refusions refuser VER 143.96 152.77 0.12 0.61 ind:imp:1p; +refusons refuser VER 143.96 152.77 1.29 1.01 imp:pre:1p;ind:pre:1p; +refusât refuser VER 143.96 152.77 0.00 0.88 sub:imp:3s; +refusèrent refuser VER 143.96 152.77 0.05 1.76 ind:pas:3p; +refusé refuser VER m s 143.96 152.77 26.03 22.70 par:pas; +refusée refuser VER f s 143.96 152.77 2.12 3.31 par:pas; +refusées refuser VER f p 143.96 152.77 0.23 0.54 par:pas; +refusés refuser VER m p 143.96 152.77 0.27 0.74 par:pas; +reg reg NOM m s 1.52 0.14 1.52 0.14 +regagna regagner VER 9.54 49.80 0.02 9.05 ind:pas:3s; +regagnai regagner VER 9.54 49.80 0.01 1.96 ind:pas:1s; +regagnaient regagner VER 9.54 49.80 0.02 1.01 ind:imp:3p; +regagnais regagner VER 9.54 49.80 0.03 0.74 ind:imp:1s; +regagnait regagner VER 9.54 49.80 0.13 4.05 ind:imp:3s; +regagnant regagner VER 9.54 49.80 0.06 2.70 par:pre; +regagne regagner VER 9.54 49.80 1.30 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regagnent regagner VER 9.54 49.80 0.22 0.68 ind:pre:3p; +regagner regagner VER 9.54 49.80 3.90 16.49 inf; +regagnera regagner VER 9.54 49.80 0.24 0.07 ind:fut:3s; +regagnerai regagner VER 9.54 49.80 0.15 0.00 ind:fut:1s; +regagneraient regagner VER 9.54 49.80 0.00 0.07 cnd:pre:3p; +regagnerais regagner VER 9.54 49.80 0.10 0.07 cnd:pre:1s; +regagnerait regagner VER 9.54 49.80 0.00 0.34 cnd:pre:3s; +regagneras regagner VER 9.54 49.80 0.06 0.00 ind:fut:2s; +regagnerez regagner VER 9.54 49.80 0.04 0.07 ind:fut:2p; +regagnerons regagner VER 9.54 49.80 0.02 0.27 ind:fut:1p; +regagneront regagner VER 9.54 49.80 0.00 0.07 ind:fut:3p; +regagnez regagner VER 9.54 49.80 1.84 0.07 imp:pre:2p;ind:pre:2p; +regagniez regagner VER 9.54 49.80 0.02 0.07 ind:imp:2p; +regagnions regagner VER 9.54 49.80 0.01 0.41 ind:imp:1p; +regagnâmes regagner VER 9.54 49.80 0.14 0.47 ind:pas:1p; +regagnons regagner VER 9.54 49.80 0.50 0.95 imp:pre:1p;ind:pre:1p; +regagnât regagner VER 9.54 49.80 0.00 0.07 sub:imp:3s; +regagnèrent regagner VER 9.54 49.80 0.01 1.55 ind:pas:3p; +regagné regagner VER m s 9.54 49.80 0.71 5.07 par:pas; +regagnée regagner VER f s 9.54 49.80 0.01 0.20 par:pas; +regagnés regagner VER m p 9.54 49.80 0.00 0.07 par:pas; +regain regain NOM m s 0.14 3.24 0.14 3.18 +regains regain NOM m p 0.14 3.24 0.00 0.07 +regard regard NOM m s 61.35 423.18 52.39 354.93 +regarda regarder VER 1197.37 997.91 2.18 149.05 ind:pas:3s; +regardable regardable ADJ s 0.10 0.74 0.09 0.47 +regardables regardable ADJ p 0.10 0.74 0.01 0.27 +regardai regarder VER 1197.37 997.91 0.82 14.73 ind:pas:1s; +regardaient regarder VER 1197.37 997.91 3.49 33.51 ind:imp:3p; +regardais regarder VER 1197.37 997.91 16.18 36.01 ind:imp:1s;ind:imp:2s; +regardait regarder VER 1197.37 997.91 16.30 160.81 ind:imp:3s; +regardant regarder VER 1197.37 997.91 13.99 73.78 par:pre; +regardante regardant ADJ f s 0.65 6.15 0.04 0.41 +regardants regardant ADJ m p 0.65 6.15 0.04 0.27 +regarde regarder VER 1197.37 997.91 613.45 203.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +regardent regarder VER 1197.37 997.91 14.68 22.30 ind:pre:3p; +regarder regarder VER 1197.37 997.91 138.28 163.51 inf;;inf;;inf;; +regardera regarder VER 1197.37 997.91 3.55 1.49 ind:fut:3s; +regarderai regarder VER 1197.37 997.91 3.30 1.08 ind:fut:1s; +regarderaient regarder VER 1197.37 997.91 0.09 0.68 cnd:pre:3p; +regarderais regarder VER 1197.37 997.91 0.82 0.68 cnd:pre:1s;cnd:pre:2s; +regarderait regarder VER 1197.37 997.91 0.95 1.76 cnd:pre:3s; +regarderas regarder VER 1197.37 997.91 1.30 0.47 ind:fut:2s; +regarderez regarder VER 1197.37 997.91 0.53 0.34 ind:fut:2p; +regarderiez regarder VER 1197.37 997.91 0.26 0.07 cnd:pre:2p; +regarderions regarder VER 1197.37 997.91 0.01 0.20 cnd:pre:1p; +regarderons regarder VER 1197.37 997.91 0.14 0.61 ind:fut:1p; +regarderont regarder VER 1197.37 997.91 0.87 0.88 ind:fut:3p; +regardes regarder VER 1197.37 997.91 43.64 5.34 ind:pre:2s;sub:pre:2s; +regardeur regardeur NOM m s 0.01 0.07 0.01 0.07 +regardez regarder VER 1197.37 997.91 261.81 30.95 imp:pre:2p;ind:pre:2p; +regardiez regarder VER 1197.37 997.91 2.53 0.54 ind:imp:2p; +regardions regarder VER 1197.37 997.91 0.56 4.39 ind:imp:1p; +regardâmes regarder VER 1197.37 997.91 0.00 1.28 ind:pas:1p; +regardons regarder VER 1197.37 997.91 6.65 4.86 imp:pre:1p;ind:pre:1p; +regardât regarder VER 1197.37 997.91 0.00 0.34 sub:imp:3s; +regards regard NOM m p 61.35 423.18 8.96 68.24 +regardèrent regarder VER 1197.37 997.91 0.32 15.68 ind:pas:3p; +regardé regarder VER m s 1197.37 997.91 41.29 51.55 par:pas; +regardée regarder VER f s 1197.37 997.91 7.61 11.01 ind:imp:3s;par:pas; +regardées regarder VER f p 1197.37 997.91 0.20 1.15 par:pas; +regardés regarder VER m p 1197.37 997.91 1.47 5.20 par:pas; +regarni regarnir VER m s 0.16 0.81 0.01 0.00 par:pas; +regarnies regarnir VER f p 0.16 0.81 0.00 0.07 par:pas; +regarnir regarnir VER 0.16 0.81 0.14 0.41 inf; +regarnirez regarnir VER 0.16 0.81 0.00 0.14 ind:fut:2p; +regarnis regarnir VER 0.16 0.81 0.00 0.14 ind:pre:1s; +regarnissez regarnir VER 0.16 0.81 0.00 0.07 imp:pre:2p; +regelés regeler VER m p 0.00 0.07 0.00 0.07 par:pas; +regency regency NOM m 0.09 0.41 0.09 0.41 +reggae reggae NOM m s 1.79 0.20 1.79 0.14 +reggaes reggae NOM m p 1.79 0.20 0.00 0.07 +regimba regimber VER 0.23 0.88 0.01 0.14 ind:pas:3s; +regimbais regimber VER 0.23 0.88 0.00 0.14 ind:imp:1s; +regimbait regimber VER 0.23 0.88 0.00 0.14 ind:imp:3s; +regimbe regimber VER 0.23 0.88 0.11 0.27 imp:pre:2s;ind:pre:3s; +regimbements regimbement NOM m p 0.00 0.07 0.00 0.07 +regimber regimber VER 0.23 0.88 0.11 0.14 inf; +regimbé regimber VER m s 0.23 0.88 0.00 0.07 par:pas; +registre registre NOM m s 8.62 12.84 6.39 8.11 +registres registre NOM m p 8.62 12.84 2.23 4.73 +reglissé reglisser VER m s 0.14 0.20 0.14 0.20 par:pas; +regoûter regoûter VER 0.03 0.14 0.03 0.07 inf; +regoûté regoûter VER m s 0.03 0.14 0.00 0.07 par:pas; +regonflage regonflage NOM m s 0.01 0.00 0.01 0.00 +regonflait regonfler VER 0.39 1.42 0.00 0.20 ind:imp:3s; +regonfle regonfler VER 0.39 1.42 0.06 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regonfler regonfler VER 0.39 1.42 0.29 0.41 inf; +regonflera regonfler VER 0.39 1.42 0.01 0.00 ind:fut:3s; +regonflerais regonfler VER 0.39 1.42 0.01 0.00 cnd:pre:1s; +regonflerait regonfler VER 0.39 1.42 0.00 0.07 cnd:pre:3s; +regonflé regonfler VER m s 0.39 1.42 0.01 0.47 par:pas; +regonflés regonfler VER m p 0.39 1.42 0.01 0.07 par:pas; +regorge regorger VER 1.75 3.92 1.34 0.68 ind:pre:3s; +regorgea regorger VER 1.75 3.92 0.01 0.00 ind:pas:3s; +regorgeaient regorger VER 1.75 3.92 0.00 0.81 ind:imp:3p; +regorgeais regorger VER 1.75 3.92 0.00 0.07 ind:imp:1s; +regorgeait regorger VER 1.75 3.92 0.11 1.35 ind:imp:3s; +regorgeant regorger VER 1.75 3.92 0.02 0.47 par:pre; +regorgent regorger VER 1.75 3.92 0.23 0.47 ind:pre:3p; +regorger regorger VER 1.75 3.92 0.03 0.07 inf; +regorges regorger VER 1.75 3.92 0.01 0.00 ind:pre:2s; +regrattières regrattier NOM f p 0.00 0.07 0.00 0.07 +regreffe regreffer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +regret regret NOM m s 13.77 40.00 7.25 29.32 +regrets regret NOM m p 13.77 40.00 6.53 10.68 +regretta regretter VER 89.11 75.88 0.15 4.53 ind:pas:3s; +regrettable regrettable ADJ s 3.41 3.51 3.27 3.04 +regrettablement regrettablement ADV 0.02 0.07 0.02 0.07 +regrettables regrettable ADJ p 3.41 3.51 0.14 0.47 +regrettai regretter VER 89.11 75.88 0.00 1.22 ind:pas:1s; +regrettaient regretter VER 89.11 75.88 0.01 0.81 ind:imp:3p; +regrettais regretter VER 89.11 75.88 0.38 4.86 ind:imp:1s;ind:imp:2s; +regrettait regretter VER 89.11 75.88 0.32 9.12 ind:imp:3s; +regrettant regretter VER 89.11 75.88 0.21 3.11 par:pre; +regrette regretter VER 89.11 75.88 51.99 21.55 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +regrettent regretter VER 89.11 75.88 0.88 0.88 ind:pre:3p; +regretter regretter VER 89.11 75.88 12.05 12.57 inf; +regrettera regretter VER 89.11 75.88 1.50 0.74 ind:fut:3s; +regretterai regretter VER 89.11 75.88 0.78 1.49 ind:fut:1s; +regretteraient regretter VER 89.11 75.88 0.03 0.34 cnd:pre:3p; +regretterais regretter VER 89.11 75.88 0.65 0.68 cnd:pre:1s;cnd:pre:2s; +regretterait regretter VER 89.11 75.88 0.13 0.68 cnd:pre:3s; +regretteras regretter VER 89.11 75.88 5.58 1.49 ind:fut:2s; +regretterez regretter VER 89.11 75.88 4.47 0.74 ind:fut:2p; +regretteriez regretter VER 89.11 75.88 0.13 0.07 cnd:pre:2p; +regretterons regretter VER 89.11 75.88 0.10 0.07 ind:fut:1p; +regretteront regretter VER 89.11 75.88 0.46 0.14 ind:fut:3p; +regrettes regretter VER 89.11 75.88 4.46 1.28 ind:pre:2s; +regrettez regretter VER 89.11 75.88 1.31 1.28 imp:pre:2p;ind:pre:2p; +regrettiez regretter VER 89.11 75.88 0.14 0.27 ind:imp:2p; +regrettions regretter VER 89.11 75.88 0.02 0.20 ind:imp:1p; +regrettons regretter VER 89.11 75.88 0.76 0.20 imp:pre:1p;ind:pre:1p; +regrettât regretter VER 89.11 75.88 0.00 0.27 sub:imp:3s; +regrettèrent regretter VER 89.11 75.88 0.00 0.27 ind:pas:3p; +regretté regretter VER m s 89.11 75.88 2.43 6.22 par:pas; +regrettée regretter VER f s 89.11 75.88 0.15 0.54 par:pas; +regrettées regretter VER f p 89.11 75.88 0.02 0.07 par:pas; +regrettés regretter VER m p 89.11 75.88 0.01 0.20 par:pas; +regrimpa regrimper VER 0.17 1.15 0.00 0.07 ind:pas:3s; +regrimpaient regrimper VER 0.17 1.15 0.00 0.07 ind:imp:3p; +regrimpait regrimper VER 0.17 1.15 0.00 0.07 ind:imp:3s; +regrimpe regrimper VER 0.17 1.15 0.01 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regrimpent regrimper VER 0.17 1.15 0.00 0.07 ind:pre:3p; +regrimper regrimper VER 0.17 1.15 0.12 0.27 inf; +regrimperas regrimper VER 0.17 1.15 0.01 0.00 ind:fut:2s; +regrimperons regrimper VER 0.17 1.15 0.01 0.00 ind:fut:1p; +regrimpez regrimper VER 0.17 1.15 0.01 0.00 imp:pre:2p; +regrimpé regrimper VER m s 0.17 1.15 0.01 0.34 par:pas; +regrossir regrossir VER 0.01 0.00 0.01 0.00 inf; +regroupa regrouper VER 3.09 6.42 0.00 0.07 ind:pas:3s; +regroupaient regrouper VER 3.09 6.42 0.03 0.54 ind:imp:3p; +regroupait regrouper VER 3.09 6.42 0.26 0.41 ind:imp:3s; +regroupant regrouper VER 3.09 6.42 0.06 0.74 par:pre; +regroupe regrouper VER 3.09 6.42 0.76 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +regroupement regroupement NOM m s 0.65 1.76 0.52 1.55 +regroupements regroupement NOM m p 0.65 1.76 0.14 0.20 +regroupent regrouper VER 3.09 6.42 0.37 0.34 ind:pre:3p; +regrouper regrouper VER 3.09 6.42 0.59 1.69 inf; +regrouperaient regrouper VER 3.09 6.42 0.02 0.07 cnd:pre:3p; +regrouperions regrouper VER 3.09 6.42 0.01 0.00 cnd:pre:1p; +regroupez regrouper VER 3.09 6.42 0.40 0.00 imp:pre:2p;ind:pre:2p; +regroupèrent regrouper VER 3.09 6.42 0.02 0.20 ind:pas:3p; +regroupé regrouper VER m s 3.09 6.42 0.12 0.34 par:pas; +regroupée regrouper VER f s 3.09 6.42 0.02 0.20 par:pas; +regroupées regrouper VER f p 3.09 6.42 0.02 0.20 par:pas; +regroupés regrouper VER m p 3.09 6.42 0.41 1.01 par:pas; +regréaient regréer VER 0.00 0.34 0.00 0.07 ind:imp:3p; +regréer regréer VER 0.00 0.34 0.00 0.07 inf; +regréé regréer VER m s 0.00 0.34 0.00 0.20 par:pas; +rehaussaient rehausser VER 0.77 5.81 0.00 0.20 ind:imp:3p; +rehaussait rehausser VER 0.77 5.81 0.01 1.01 ind:imp:3s; +rehaussant rehausser VER 0.77 5.81 0.00 0.47 par:pre; +rehausse rehausser VER 0.77 5.81 0.20 0.41 ind:pre:3s; +rehaussement rehaussement NOM m s 0.01 0.00 0.01 0.00 +rehaussent rehausser VER 0.77 5.81 0.00 0.34 ind:pre:3p; +rehausser rehausser VER 0.77 5.81 0.34 0.88 inf; +rehaussera rehausser VER 0.77 5.81 0.01 0.14 ind:fut:3s; +rehausses rehausse NOM f p 0.00 0.14 0.00 0.07 +rehausseur rehausseur NOM m s 0.11 0.00 0.11 0.00 +rehaussez rehausser VER 0.77 5.81 0.01 0.00 imp:pre:2p; +rehaussé rehausser VER m s 0.77 5.81 0.03 1.15 par:pas; +rehaussée rehausser VER f s 0.77 5.81 0.03 0.68 par:pas; +rehaussées rehausser VER f p 0.77 5.81 0.14 0.20 par:pas; +rehaussés rehausser VER m p 0.77 5.81 0.00 0.34 par:pas; +rehaut rehaut NOM m s 0.00 0.20 0.00 0.07 +rehauts rehaut NOM m p 0.00 0.20 0.00 0.14 +reich reich NOM m s 0.03 4.26 0.03 4.26 +reichsmark reichsmark NOM m 0.01 0.00 0.01 0.00 +reichstag reichstag NOM m s 0.85 0.68 0.85 0.68 +reichswehr reichswehr NOM f s 0.00 0.14 0.00 0.14 +rein rein NOM m s 13.96 34.05 4.53 1.76 +reine_claude reine_claude NOM f s 0.01 0.41 0.00 0.14 +reine_mère reine_mère NOM f s 0.00 0.34 0.00 0.34 +reine reine NOM f s 59.05 33.78 56.26 30.00 +reine_claude reine_claude NOM f p 0.01 0.41 0.01 0.27 +reine_marguerite reine_marguerite NOM f p 0.00 0.27 0.00 0.27 +reines reine NOM f p 59.05 33.78 2.79 3.78 +reinette reinette NOM f s 0.30 0.95 0.01 0.34 +reinettes reinette NOM f p 0.30 0.95 0.29 0.61 +reins rein NOM m p 13.96 34.05 9.43 32.30 +reis reis NOM m 0.52 0.20 0.52 0.20 +rejailli rejaillir VER m s 1.05 2.64 0.14 0.27 par:pas; +rejaillir rejaillir VER 1.05 2.64 0.24 0.54 inf; +rejailliraient rejaillir VER 1.05 2.64 0.00 0.07 cnd:pre:3p; +rejaillirait rejaillir VER 1.05 2.64 0.11 0.20 cnd:pre:3s; +rejaillissaient rejaillir VER 1.05 2.64 0.00 0.07 ind:imp:3p; +rejaillissait rejaillir VER 1.05 2.64 0.00 0.61 ind:imp:3s; +rejaillissant rejaillir VER 1.05 2.64 0.00 0.14 par:pre; +rejaillissements rejaillissement NOM m p 0.00 0.07 0.00 0.07 +rejaillissent rejaillir VER 1.05 2.64 0.02 0.07 ind:pre:3p; +rejaillit rejaillir VER 1.05 2.64 0.54 0.68 ind:pre:3s;ind:pas:3s; +rejet rejet NOM m s 2.94 3.31 2.71 3.04 +rejeta rejeter VER 23.16 47.84 0.18 5.74 ind:pas:3s; +rejetable rejetable ADJ s 0.00 0.07 0.00 0.07 +rejetai rejeter VER 23.16 47.84 0.00 0.68 ind:pas:1s; +rejetaient rejeter VER 23.16 47.84 0.17 0.95 ind:imp:3p; +rejetais rejeter VER 23.16 47.84 0.22 0.74 ind:imp:1s;ind:imp:2s; +rejetait rejeter VER 23.16 47.84 0.00 5.74 ind:imp:3s; +rejetant rejeter VER 23.16 47.84 0.44 4.12 par:pre; +rejeter rejeter VER 23.16 47.84 3.94 6.82 inf; +rejetez rejeter VER 23.16 47.84 1.24 0.07 imp:pre:2p;ind:pre:2p; +rejetiez rejeter VER 23.16 47.84 0.11 0.07 ind:imp:2p; +rejetions rejeter VER 23.16 47.84 0.01 0.20 ind:imp:1p; +rejeton rejeton NOM m s 1.25 3.92 0.61 2.30 +rejetons rejeton NOM m p 1.25 3.92 0.64 1.62 +rejetât rejeter VER 23.16 47.84 0.00 0.07 sub:imp:3s; +rejets rejet NOM m p 2.94 3.31 0.23 0.27 +rejette rejeter VER 23.16 47.84 4.43 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rejettent rejeter VER 23.16 47.84 0.93 1.22 ind:pre:3p; +rejettera rejeter VER 23.16 47.84 0.57 0.27 ind:fut:3s; +rejetterai rejeter VER 23.16 47.84 0.29 0.07 ind:fut:1s; +rejetteraient rejeter VER 23.16 47.84 0.02 0.00 cnd:pre:3p; +rejetterais rejeter VER 23.16 47.84 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +rejetterait rejeter VER 23.16 47.84 0.06 0.20 cnd:pre:3s; +rejetteras rejeter VER 23.16 47.84 0.00 0.07 ind:fut:2s; +rejetteront rejeter VER 23.16 47.84 0.17 0.14 ind:fut:3p; +rejettes rejeter VER 23.16 47.84 0.77 0.00 ind:pre:2s;sub:pre:2s; +rejetèrent rejeter VER 23.16 47.84 0.00 0.07 ind:pas:3p; +rejeté rejeter VER m s 23.16 47.84 5.65 7.84 par:pas; +rejetée rejeté ADJ f s 4.03 1.62 2.18 0.47 +rejetées rejeter VER f p 23.16 47.84 0.37 1.28 par:pas; +rejetés rejeter VER m p 23.16 47.84 0.98 2.16 par:pas; +rejoignîmes rejoindre VER 96.98 134.80 0.01 0.41 ind:pas:1p; +rejoignît rejoindre VER 96.98 134.80 0.00 0.27 sub:imp:3s; +rejoignaient rejoindre VER 96.98 134.80 0.15 4.80 ind:imp:3p; +rejoignais rejoindre VER 96.98 134.80 0.35 0.34 ind:imp:1s;ind:imp:2s; +rejoignait rejoindre VER 96.98 134.80 0.16 6.35 ind:imp:3s; +rejoignant rejoindre VER 96.98 134.80 0.31 2.91 par:pre; +rejoigne rejoindre VER 96.98 134.80 1.96 1.15 sub:pre:1s;sub:pre:3s; +rejoignent rejoindre VER 96.98 134.80 1.69 5.07 ind:pre:3p; +rejoignes rejoindre VER 96.98 134.80 0.47 0.00 sub:pre:2s; +rejoignez rejoindre VER 96.98 134.80 6.00 0.61 imp:pre:2p;ind:pre:2p; +rejoigniez rejoindre VER 96.98 134.80 0.15 0.07 ind:imp:2p;sub:pre:2p; +rejoignions rejoindre VER 96.98 134.80 0.13 0.20 ind:imp:1p; +rejoignirent rejoindre VER 96.98 134.80 0.15 2.84 ind:pas:3p; +rejoignis rejoindre VER 96.98 134.80 0.01 1.69 ind:pas:1s; +rejoignisse rejoindre VER 96.98 134.80 0.00 0.07 sub:imp:1s; +rejoignissent rejoindre VER 96.98 134.80 0.00 0.07 sub:imp:3p; +rejoignit rejoindre VER 96.98 134.80 0.37 13.58 ind:pas:3s; +rejoignons rejoindre VER 96.98 134.80 1.52 0.54 imp:pre:1p;ind:pre:1p; +rejoindra rejoindre VER 96.98 134.80 2.42 0.81 ind:fut:3s; +rejoindrai rejoindre VER 96.98 134.80 3.25 0.54 ind:fut:1s; +rejoindraient rejoindre VER 96.98 134.80 0.04 0.47 cnd:pre:3p; +rejoindrais rejoindre VER 96.98 134.80 0.50 0.47 cnd:pre:1s;cnd:pre:2s; +rejoindrait rejoindre VER 96.98 134.80 0.14 1.15 cnd:pre:3s; +rejoindras rejoindre VER 96.98 134.80 0.55 0.07 ind:fut:2s; +rejoindre rejoindre VER 96.98 134.80 41.59 59.66 ind:pre:2p;inf; +rejoindrez rejoindre VER 96.98 134.80 0.93 0.14 ind:fut:2p; +rejoindrions rejoindre VER 96.98 134.80 0.00 0.20 cnd:pre:1p; +rejoindrons rejoindre VER 96.98 134.80 0.76 0.34 ind:fut:1p; +rejoindront rejoindre VER 96.98 134.80 0.58 0.41 ind:fut:3p; +rejoins rejoindre VER 96.98 134.80 20.16 3.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rejoint rejoindre VER m s 96.98 134.80 11.16 20.27 ind:pre:3s;par:pas; +rejointe rejoindre VER f s 96.98 134.80 0.31 1.35 par:pas; +rejointes rejoindre VER f p 96.98 134.80 0.01 0.54 par:pas; +rejointoyer rejointoyer VER 0.00 0.27 0.00 0.07 inf; +rejointoyé rejointoyer VER m s 0.00 0.27 0.00 0.07 par:pas; +rejointoyés rejointoyer VER m p 0.00 0.27 0.00 0.14 par:pas; +rejoints rejoindre VER m p 96.98 134.80 1.19 3.78 par:pas; +rejoua rejouer VER 3.51 1.69 0.00 0.20 ind:pas:3s; +rejouaient rejouer VER 3.51 1.69 0.02 0.00 ind:imp:3p; +rejouais rejouer VER 3.51 1.69 0.02 0.07 ind:imp:1s; +rejouant rejouer VER 3.51 1.69 0.02 0.14 par:pre; +rejoue rejouer VER 3.51 1.69 1.18 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rejouent rejouer VER 3.51 1.69 0.21 0.07 ind:pre:3p; +rejouer rejouer VER 3.51 1.69 1.48 0.88 inf; +rejouerait rejouer VER 3.51 1.69 0.02 0.07 cnd:pre:3s; +rejoueras rejouer VER 3.51 1.69 0.03 0.00 ind:fut:2s; +rejouerez rejouer VER 3.51 1.69 0.16 0.07 ind:fut:2p; +rejouerons rejouer VER 3.51 1.69 0.00 0.07 ind:fut:1p; +rejoues rejouer VER 3.51 1.69 0.04 0.00 ind:pre:2s; +rejouez rejouer VER 3.51 1.69 0.10 0.00 imp:pre:2p;ind:pre:2p; +rejouons rejouer VER 3.51 1.69 0.03 0.00 imp:pre:1p; +rejoué rejouer VER m s 3.51 1.69 0.19 0.14 par:pas; +rejuger rejuger VER 0.34 0.14 0.07 0.07 inf; +rejugez rejuger VER 0.34 0.14 0.02 0.00 imp:pre:2p; +rejugé rejuger VER m s 0.34 0.14 0.22 0.07 par:pas; +rejugés rejuger VER m p 0.34 0.14 0.02 0.00 par:pas; +relacent relacer VER 0.01 0.41 0.00 0.07 ind:pre:3p; +relacer relacer VER 0.01 0.41 0.00 0.07 inf; +relaie relayer VER 2.63 5.81 0.27 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaient relayer VER 2.63 5.81 0.52 0.27 ind:pre:3p; +relaiera relayer VER 2.63 5.81 0.07 0.14 ind:fut:3s; +relaieraient relayer VER 2.63 5.81 0.00 0.07 cnd:pre:3p; +relaierait relayer VER 2.63 5.81 0.00 0.07 cnd:pre:3s; +relaieront relayer VER 2.63 5.81 0.17 0.00 ind:fut:3p; +relais relais NOM m 7.09 8.51 7.09 8.51 +relaisser relaisser VER 0.00 0.07 0.00 0.07 inf; +relance relancer VER 4.95 7.43 1.87 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relancement relancement NOM m s 0.03 0.00 0.03 0.00 +relancent relancer VER 4.95 7.43 0.01 0.07 ind:pre:3p; +relancer relancer VER 4.95 7.43 1.96 2.77 inf; +relancera relancer VER 4.95 7.43 0.02 0.00 ind:fut:3s; +relancerait relancer VER 4.95 7.43 0.04 0.00 cnd:pre:3s; +relanceront relancer VER 4.95 7.43 0.01 0.00 ind:fut:3p; +relances relancer VER 4.95 7.43 0.05 0.00 ind:pre:2s; +relanceur relanceur NOM m s 0.01 0.00 0.01 0.00 +relancez relancer VER 4.95 7.43 0.27 0.00 imp:pre:2p;ind:pre:2p; +relancèrent relancer VER 4.95 7.43 0.00 0.07 ind:pas:3p; +relancé relancer VER m s 4.95 7.43 0.48 1.22 par:pas; +relancée relancer VER f s 4.95 7.43 0.16 0.20 par:pas; +relancées relancer VER f p 4.95 7.43 0.01 0.07 par:pas; +relancés relancer VER m p 4.95 7.43 0.01 0.07 par:pas; +relança relancer VER 4.95 7.43 0.01 0.41 ind:pas:3s; +relançai relancer VER 4.95 7.43 0.00 0.07 ind:pas:1s; +relançaient relancer VER 4.95 7.43 0.00 0.41 ind:imp:3p; +relançais relancer VER 4.95 7.43 0.00 0.07 ind:imp:1s; +relançait relancer VER 4.95 7.43 0.01 0.81 ind:imp:3s; +relançant relancer VER 4.95 7.43 0.00 0.41 par:pre; +relançons relancer VER 4.95 7.43 0.05 0.00 imp:pre:1p; +relançât relancer VER 4.95 7.43 0.00 0.14 sub:imp:3s; +relaps relaps NOM m 0.01 0.34 0.00 0.34 +relapse relaps ADJ f s 0.00 0.34 0.00 0.07 +relapses relaps NOM f p 0.01 0.34 0.01 0.00 +relargué relargué ADJ m s 0.00 0.14 0.00 0.14 +relata relater VER 1.18 5.61 0.03 0.47 ind:pas:3s; +relatai relater VER 1.18 5.61 0.00 0.07 ind:pas:1s; +relataient relater VER 1.18 5.61 0.01 0.27 ind:imp:3p; +relatais relater VER 1.18 5.61 0.00 0.20 ind:imp:1s; +relatait relater VER 1.18 5.61 0.02 0.81 ind:imp:3s; +relatant relater VER 1.18 5.61 0.05 0.95 par:pre; +relate relater VER 1.18 5.61 0.19 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relatent relater VER 1.18 5.61 0.06 0.14 ind:pre:3p; +relater relater VER 1.18 5.61 0.39 0.54 inf; +relateraient relater VER 1.18 5.61 0.00 0.07 cnd:pre:3p; +relateront relater VER 1.18 5.61 0.01 0.00 ind:fut:3p; +relaça relacer VER 0.01 0.41 0.00 0.07 ind:pas:3s; +relaçaient relacer VER 0.01 0.41 0.00 0.07 ind:imp:3p; +relaçait relacer VER 0.01 0.41 0.01 0.14 ind:imp:3s; +relatif relatif ADJ m s 3.12 14.05 1.05 3.78 +relatifs relatif ADJ m p 3.12 14.05 0.56 1.22 +relation relation NOM f s 74.95 52.36 44.03 10.20 +relationnel relationnel ADJ m s 0.38 0.00 0.14 0.00 +relationnelle relationnel ADJ f s 0.38 0.00 0.01 0.00 +relationnelles relationnel ADJ f p 0.38 0.00 0.09 0.00 +relationnels relationnel ADJ m p 0.38 0.00 0.14 0.00 +relations relation NOM f p 74.95 52.36 30.92 42.16 +relative relatif ADJ f s 3.12 14.05 0.93 7.09 +relativement relativement ADV 4.48 8.65 4.48 8.65 +relatives relatif ADJ f p 3.12 14.05 0.57 1.96 +relativisant relativiser VER 0.39 0.20 0.00 0.07 par:pre; +relativisation relativisation NOM f s 0.00 0.14 0.00 0.14 +relativise relativiser VER 0.39 0.20 0.14 0.00 imp:pre:2s;ind:pre:3s; +relativisent relativiser VER 0.39 0.20 0.00 0.07 ind:pre:3p; +relativiser relativiser VER 0.39 0.20 0.23 0.07 inf; +relativisme relativisme NOM m s 0.05 0.00 0.05 0.00 +relativiste relativiste ADJ f s 0.02 0.00 0.02 0.00 +relativisé relativiser VER m s 0.39 0.20 0.02 0.00 par:pas; +relativité relativité NOM f s 0.50 1.22 0.50 1.22 +relaté relater VER m s 1.18 5.61 0.13 0.68 par:pas; +relatée relater VER f s 1.18 5.61 0.02 0.07 par:pas; +relatées relater VER f p 1.18 5.61 0.01 0.14 par:pas; +relatés relater VER m p 1.18 5.61 0.25 0.14 par:pas; +relavait relaver VER 0.13 0.47 0.00 0.07 ind:imp:3s; +relave relaver VER 0.13 0.47 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaver relaver VER 0.13 0.47 0.06 0.27 inf; +relavés relaver VER m p 0.13 0.47 0.00 0.07 par:pas; +relax relax ADJ 8.16 0.88 8.16 0.88 +relaxais relaxer VER 5.46 0.74 0.00 0.07 ind:imp:1s; +relaxant relaxant ADJ m s 0.72 0.07 0.61 0.00 +relaxante relaxant ADJ f s 0.72 0.07 0.08 0.00 +relaxantes relaxant ADJ f p 0.72 0.07 0.01 0.07 +relaxants relaxant ADJ m p 0.72 0.07 0.03 0.00 +relaxation relaxation NOM f s 0.63 0.68 0.63 0.68 +relaxe relaxer VER 5.46 0.74 1.47 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relaxer relaxer VER 5.46 0.74 2.64 0.20 ind:pre:2p;inf; +relaxes relaxe NOM f p 1.63 0.61 0.21 0.07 +relaxez relaxer VER 5.46 0.74 0.77 0.14 imp:pre:2p;ind:pre:2p; +relaxons relaxer VER 5.46 0.74 0.03 0.00 imp:pre:1p;ind:pre:1p; +relaxé relaxer VER m s 5.46 0.74 0.27 0.27 par:pas; +relaxée relaxer VER f s 5.46 0.74 0.07 0.07 par:pas; +relaya relayer VER 2.63 5.81 0.00 0.14 ind:pas:3s; +relayaient relayer VER 2.63 5.81 0.25 1.22 ind:imp:3p; +relayait relayer VER 2.63 5.81 0.01 0.47 ind:imp:3s; +relayant relayer VER 2.63 5.81 0.01 0.54 par:pre; +relaye relayer VER 2.63 5.81 0.01 0.07 ind:pre:1s;ind:pre:3s; +relayent relayer VER 2.63 5.81 0.00 0.14 ind:pre:3p; +relayer relayer VER 2.63 5.81 0.93 1.01 inf; +relayera relayer VER 2.63 5.81 0.01 0.07 ind:fut:3s; +relayerai relayer VER 2.63 5.81 0.10 0.00 ind:fut:1s; +relayeur relayeur NOM m s 0.02 0.00 0.02 0.00 +relayez relayer VER 2.63 5.81 0.05 0.00 imp:pre:2p; +relayions relayer VER 2.63 5.81 0.00 0.07 ind:imp:1p; +relayâmes relayer VER 2.63 5.81 0.00 0.14 ind:pas:1p; +relayons relayer VER 2.63 5.81 0.02 0.07 imp:pre:1p;ind:pre:1p; +relayèrent relayer VER 2.63 5.81 0.00 0.20 ind:pas:3p; +relayé relayer VER m s 2.63 5.81 0.14 0.61 par:pas; +relayée relayer VER f s 2.63 5.81 0.02 0.14 par:pas; +relayées relayer VER f p 2.63 5.81 0.01 0.07 par:pas; +relayés relayer VER m p 2.63 5.81 0.03 0.20 par:pas; +relecture relecture NOM f s 0.80 0.47 0.80 0.47 +relent relent NOM m s 0.32 9.12 0.10 2.64 +relents relent NOM m p 0.32 9.12 0.23 6.49 +releva relever VER 39.49 124.93 0.05 25.74 ind:pas:3s; +relevable relevable ADJ m s 0.00 0.07 0.00 0.07 +relevai relever VER 39.49 124.93 0.14 1.82 ind:pas:1s; +relevaient relever VER 39.49 124.93 0.06 3.51 ind:imp:3p; +relevailles relevailles NOM f p 0.00 0.07 0.00 0.07 +relevais relever VER 39.49 124.93 0.06 0.95 ind:imp:1s;ind:imp:2s; +relevait relever VER 39.49 124.93 0.53 9.80 ind:imp:3s; +relevant relever VER 39.49 124.93 0.53 10.68 par:pre; +relever relever VER 39.49 124.93 10.46 24.39 inf; +releveur releveur ADJ m s 0.03 0.07 0.03 0.00 +releveurs releveur NOM m p 0.02 0.00 0.01 0.00 +relevez relever VER 39.49 124.93 5.95 0.34 imp:pre:2p;ind:pre:2p; +releviez relever VER 39.49 124.93 0.14 0.07 ind:imp:2p; +relevions relever VER 39.49 124.93 0.00 0.27 ind:imp:1p; +relevâmes relever VER 39.49 124.93 0.00 0.07 ind:pas:1p; +relevons relever VER 39.49 124.93 0.33 0.27 imp:pre:1p;ind:pre:1p; +relevât relever VER 39.49 124.93 0.00 0.54 sub:imp:3s; +relevèrent relever VER 39.49 124.93 0.01 1.28 ind:pas:3p; +relevé relever VER m s 39.49 124.93 6.04 13.72 par:pas; +relevée relevé ADJ f s 2.30 10.14 0.64 2.03 +relevées relever VER f p 39.49 124.93 0.30 1.35 par:pas; +relevés relevé NOM m p 5.00 2.36 3.12 0.81 +reliage reliage NOM m s 0.01 0.00 0.01 0.00 +reliaient relier VER 12.83 20.47 0.22 0.88 ind:imp:3p; +reliait relier VER 12.83 20.47 0.20 2.64 ind:imp:3s; +reliant relier VER 12.83 20.47 0.78 1.55 par:pre; +relie relier VER 12.83 20.47 1.95 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +relief relief NOM m s 1.25 19.32 1.11 13.51 +reliefs relief NOM m p 1.25 19.32 0.14 5.81 +relient relier VER 12.83 20.47 0.30 1.01 ind:pre:3p; +relier relier VER 12.83 20.47 2.34 2.64 inf; +reliera relier VER 12.83 20.47 0.29 0.14 ind:fut:3s; +relieur relieur NOM m s 0.33 0.41 0.33 0.27 +relieurs relieur NOM m p 0.33 0.41 0.00 0.14 +reliez relier VER 12.83 20.47 0.11 0.00 imp:pre:2p; +religieuse religieux ADJ f s 15.52 24.26 4.85 11.42 +religieusement religieusement ADV 0.80 3.04 0.80 3.04 +religieuses religieux ADJ f p 15.52 24.26 2.17 3.78 +religieux religieux ADJ m 15.52 24.26 8.51 9.05 +religion religion NOM f s 24.68 35.07 22.86 30.88 +religionnaires religionnaire NOM p 0.00 0.07 0.00 0.07 +religions religion NOM f p 24.68 35.07 1.81 4.19 +religiosité religiosité NOM f s 0.01 0.41 0.01 0.41 +reliât relier VER 12.83 20.47 0.00 0.14 sub:imp:3s; +reliquaire reliquaire NOM s 0.28 0.95 0.28 0.68 +reliquaires reliquaire NOM p 0.28 0.95 0.00 0.27 +reliquat reliquat NOM m s 0.04 1.76 0.04 1.35 +reliquats reliquat NOM m p 0.04 1.76 0.00 0.41 +relique relique NOM f s 2.59 5.95 1.41 2.23 +reliques relique NOM f p 2.59 5.95 1.19 3.72 +relirai relire VER 6.31 25.81 0.04 0.07 ind:fut:1s; +relirais relire VER 6.31 25.81 0.02 0.07 cnd:pre:1s;cnd:pre:2s; +relirait relire VER 6.31 25.81 0.00 0.27 cnd:pre:3s; +reliras relire VER 6.31 25.81 0.00 0.07 ind:fut:2s; +relire relire VER 6.31 25.81 1.84 6.42 inf; +relirez relire VER 6.31 25.81 0.01 0.07 ind:fut:2p; +relirons relire VER 6.31 25.81 0.01 0.07 ind:fut:1p; +relis relire VER 6.31 25.81 1.78 2.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +relisaient relire VER 6.31 25.81 0.00 0.07 ind:imp:3p; +relisais relire VER 6.31 25.81 0.12 1.55 ind:imp:1s;ind:imp:2s; +relisait relire VER 6.31 25.81 0.01 2.03 ind:imp:3s; +relisant relire VER 6.31 25.81 0.07 1.69 par:pre; +relise relire VER 6.31 25.81 0.07 0.27 sub:pre:1s;sub:pre:3s; +relisez relire VER 6.31 25.81 0.70 0.54 imp:pre:2p;ind:pre:2p; +relisions relire VER 6.31 25.81 0.00 0.07 ind:imp:1p; +relit relire VER 6.31 25.81 0.22 1.49 ind:pre:3s; +relié relier VER m s 12.83 20.47 3.03 2.77 par:pas; +reliée relier VER f s 12.83 20.47 0.95 1.08 par:pas; +reliées relier VER f p 12.83 20.47 0.53 2.09 par:pas; +reliure reliure NOM f s 0.67 4.12 0.61 2.23 +reliures reliure NOM f p 0.67 4.12 0.06 1.89 +reliés relier VER m p 12.83 20.47 2.12 2.77 par:pas; +relâcha relâcher VER 21.40 13.45 0.13 1.69 ind:pas:3s; +relâchai relâcher VER 21.40 13.45 0.00 0.20 ind:pas:1s; +relâchaient relâcher VER 21.40 13.45 0.01 0.41 ind:imp:3p; +relâchais relâcher VER 21.40 13.45 0.01 0.07 ind:imp:1s; +relâchait relâcher VER 21.40 13.45 0.02 1.89 ind:imp:3s; +relâchant relâcher VER 21.40 13.45 0.04 0.68 par:pre; +relâche relâcher VER 21.40 13.45 4.25 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +relâchement relâchement NOM m s 0.47 2.70 0.44 2.36 +relâchements relâchement NOM m p 0.47 2.70 0.02 0.34 +relâchent relâcher VER 21.40 13.45 0.35 0.61 ind:pre:3p; +relâcher relâcher VER 21.40 13.45 4.09 3.24 imp:pre:2p;inf; +relâchera relâcher VER 21.40 13.45 0.41 0.07 ind:fut:3s; +relâcherai relâcher VER 21.40 13.45 0.54 0.00 ind:fut:1s; +relâcheraient relâcher VER 21.40 13.45 0.04 0.00 cnd:pre:3p; +relâcherait relâcher VER 21.40 13.45 0.02 0.07 cnd:pre:3s; +relâcheras relâcher VER 21.40 13.45 0.01 0.00 ind:fut:2s; +relâcherez relâcher VER 21.40 13.45 0.06 0.00 ind:fut:2p; +relâcherons relâcher VER 21.40 13.45 0.04 0.00 ind:fut:1p; +relâcheront relâcher VER 21.40 13.45 0.44 0.20 ind:fut:3p; +relâchez relâcher VER 21.40 13.45 4.77 0.00 imp:pre:2p;ind:pre:2p; +relâchiez relâcher VER 21.40 13.45 0.11 0.00 ind:imp:2p; +relâchons relâcher VER 21.40 13.45 0.27 0.07 imp:pre:1p;ind:pre:1p; +relâchèrent relâcher VER 21.40 13.45 0.01 0.54 ind:pas:3p; +relâché relâcher VER m s 21.40 13.45 4.08 1.76 par:pas; +relâchée relâcher VER f s 21.40 13.45 0.92 0.41 par:pas; +relâchées relâcher VER f p 21.40 13.45 0.07 0.20 par:pas; +relâchés relâcher VER m p 21.40 13.45 0.72 0.07 par:pas; +reloge reloger VER 0.52 0.34 0.14 0.14 ind:pre:3s; +relogement relogement NOM m s 0.08 0.14 0.07 0.07 +relogements relogement NOM m p 0.08 0.14 0.01 0.07 +reloger reloger VER 0.52 0.34 0.23 0.14 ind:pre:2p;inf; +relogerais reloger VER 0.52 0.34 0.00 0.07 cnd:pre:1s; +relogé reloger VER m s 0.52 0.34 0.15 0.00 par:pas; +relooker relooker VER 0.18 0.00 0.07 0.00 inf; +relookerai relooker VER 0.18 0.00 0.01 0.00 ind:fut:1s; +relooké relooker VER m s 0.18 0.00 0.06 0.00 par:pas; +relookée relooker VER f s 0.18 0.00 0.03 0.00 par:pas; +reloquer reloquer VER 0.00 0.07 0.00 0.07 inf; +relouer relouer VER 0.14 0.07 0.04 0.00 inf; +relouerons relouer VER 0.14 0.07 0.00 0.07 ind:fut:1p; +relourde relourder VER 0.00 0.20 0.00 0.07 ind:pre:3s; +relourder relourder VER 0.00 0.20 0.00 0.07 inf; +relourdé relourder VER m s 0.00 0.20 0.00 0.07 par:pas; +reloué relouer VER m s 0.14 0.07 0.10 0.00 par:pas; +relègue reléguer VER 0.54 4.53 0.06 0.47 ind:pre:1s;ind:pre:3s; +relèguent reléguer VER 0.54 4.53 0.00 0.07 ind:pre:3p; +relève relever VER 39.49 124.93 11.74 19.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +relèvement relèvement NOM m s 0.45 0.95 0.43 0.88 +relèvements relèvement NOM m p 0.45 0.95 0.02 0.07 +relèvent relever VER 39.49 124.93 0.68 2.57 ind:pre:3p; +relèvera relever VER 39.49 124.93 0.51 0.41 ind:fut:3s; +relèverai relever VER 39.49 124.93 0.19 0.00 ind:fut:1s; +relèveraient relever VER 39.49 124.93 0.04 0.34 cnd:pre:3p; +relèverais relever VER 39.49 124.93 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +relèverait relever VER 39.49 124.93 0.09 0.81 cnd:pre:3s; +relèveras relever VER 39.49 124.93 0.12 0.07 ind:fut:2s; +relèverez relever VER 39.49 124.93 0.01 0.14 ind:fut:2p; +relèverions relever VER 39.49 124.93 0.00 0.07 cnd:pre:1p; +relèverons relever VER 39.49 124.93 0.17 0.00 ind:fut:1p; +relèveront relever VER 39.49 124.93 0.09 0.07 ind:fut:3p; +relèves relever VER 39.49 124.93 0.15 0.20 ind:pre:2s;sub:pre:2s; +relu relire VER m s 6.31 25.81 1.35 3.65 par:pas; +relue relire VER f s 6.31 25.81 0.02 0.20 par:pas; +relues relire VER f p 6.31 25.81 0.01 0.14 par:pas; +relégation relégation NOM f s 0.10 0.68 0.10 0.68 +relégua reléguer VER 0.54 4.53 0.00 0.14 ind:pas:3s; +reléguai reléguer VER 0.54 4.53 0.00 0.07 ind:pas:1s; +reléguaient reléguer VER 0.54 4.53 0.00 0.14 ind:imp:3p; +reléguait reléguer VER 0.54 4.53 0.00 0.34 ind:imp:3s; +reléguant reléguer VER 0.54 4.53 0.00 0.27 par:pre; +reléguer reléguer VER 0.54 4.53 0.06 0.68 inf; +reléguera reléguer VER 0.54 4.53 0.00 0.07 ind:fut:3s; +relégueraient reléguer VER 0.54 4.53 0.00 0.07 cnd:pre:3p; +reléguerait reléguer VER 0.54 4.53 0.00 0.07 cnd:pre:3s; +reléguons reléguer VER 0.54 4.53 0.00 0.07 ind:pre:1p; +reléguèrent reléguer VER 0.54 4.53 0.00 0.07 ind:pas:3p; +relégué reléguer VER m s 0.54 4.53 0.31 0.95 par:pas; +reléguée reléguer VER f s 0.54 4.53 0.05 0.61 par:pas; +reléguées reléguer VER f p 0.54 4.53 0.00 0.27 par:pas; +relégués relégué ADJ m p 0.13 0.74 0.10 0.20 +relui reluire VER m s 0.54 4.05 0.02 0.07 par:pas; +reluire reluire VER 0.54 4.05 0.34 2.77 inf; +reluiront reluire VER 0.54 4.05 0.00 0.07 ind:fut:3p; +reluis reluire VER 0.54 4.05 0.00 0.07 ind:pre:2s; +reluisaient reluire VER 0.54 4.05 0.00 0.14 ind:imp:3p; +reluisais reluire VER 0.54 4.05 0.00 0.07 ind:imp:1s; +reluisant reluisant ADJ m s 0.27 1.96 0.14 0.81 +reluisante reluisant ADJ f s 0.27 1.96 0.06 0.34 +reluisantes reluisant ADJ f p 0.27 1.96 0.01 0.34 +reluisants reluisant ADJ m p 0.27 1.96 0.06 0.47 +reluise reluire VER 0.54 4.05 0.16 0.07 sub:pre:3s; +reluisent reluire VER 0.54 4.05 0.01 0.20 ind:pre:3p; +reluit reluire VER 0.54 4.05 0.00 0.41 ind:pre:3s; +reluqua reluquer VER 2.16 5.47 0.00 0.07 ind:pas:3s; +reluquaient reluquer VER 2.16 5.47 0.05 0.47 ind:imp:3p; +reluquais reluquer VER 2.16 5.47 0.12 0.20 ind:imp:1s;ind:imp:2s; +reluquait reluquer VER 2.16 5.47 0.10 0.41 ind:imp:3s; +reluquant reluquer VER 2.16 5.47 0.01 0.68 par:pre; +reluque reluquer VER 2.16 5.47 0.36 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reluquent reluquer VER 2.16 5.47 0.13 0.07 ind:pre:3p; +reluquer reluquer VER 2.16 5.47 1.09 1.49 inf; +reluques reluquer VER 2.16 5.47 0.12 0.07 ind:pre:2s; +reluquiez reluquer VER 2.16 5.47 0.01 0.00 ind:imp:2p; +reluqué reluquer VER m s 2.16 5.47 0.04 0.14 par:pas; +reluquée reluquer VER f s 2.16 5.47 0.09 0.14 par:pas; +reluqués reluquer VER m p 2.16 5.47 0.04 0.07 par:pas; +relus relire VER m p 6.31 25.81 0.04 0.95 ind:pas:1s;par:pas; +relut relire VER 6.31 25.81 0.01 3.58 ind:pas:3s; +remîmes remettre VER 144.94 202.50 0.01 0.20 ind:pas:1p; +remît remettre VER 144.94 202.50 0.01 1.22 sub:imp:3s; +remaigrir remaigrir VER 0.01 0.00 0.01 0.00 inf; +remaillage remaillage NOM m s 0.00 0.20 0.00 0.20 +remaillaient remailler VER 0.00 0.27 0.00 0.07 ind:imp:3p; +remaillant remailler VER 0.00 0.27 0.00 0.07 par:pre; +remailler remailler VER 0.00 0.27 0.00 0.07 inf; +remailleuse mailleur NOM f s 0.00 0.07 0.00 0.07 +remaillés remailler VER m p 0.00 0.27 0.00 0.07 par:pas; +remake remake NOM m s 0.66 0.54 0.66 0.54 +remange remanger VER 0.07 0.07 0.03 0.00 ind:pre:1s; +remanger remanger VER 0.07 0.07 0.04 0.00 inf; +remangerait remanger VER 0.07 0.07 0.00 0.07 cnd:pre:3s; +remania remanier VER 0.79 0.88 0.00 0.07 ind:pas:3s; +remaniait remanier VER 0.79 0.88 0.00 0.07 ind:imp:3s; +remaniant remanier VER 0.79 0.88 0.00 0.14 par:pre; +remanie remanier VER 0.79 0.88 0.16 0.00 ind:pre:1s;ind:pre:3s; +remaniement remaniement NOM m s 0.16 1.08 0.09 0.95 +remaniements remaniement NOM m p 0.16 1.08 0.07 0.14 +remanier remanier VER 0.79 0.88 0.12 0.27 inf; +remanié remanier VER m s 0.79 0.88 0.48 0.20 par:pas; +remaniée remanier VER f s 0.79 0.88 0.01 0.14 par:pas; +remaniés remanier VER m p 0.79 0.88 0.02 0.00 par:pas; +remaquilla remaquiller VER 0.28 0.81 0.00 0.27 ind:pas:3s; +remaquillait remaquiller VER 0.28 0.81 0.00 0.14 ind:imp:3s; +remaquille remaquiller VER 0.28 0.81 0.02 0.00 ind:pre:1s;ind:pre:3s; +remaquiller remaquiller VER 0.28 0.81 0.26 0.20 inf; +remaquillé remaquiller VER m s 0.28 0.81 0.01 0.00 par:pas; +remaquillée remaquiller VER f s 0.28 0.81 0.00 0.20 par:pas; +remarchait remarcher VER 1.32 0.41 0.00 0.14 ind:imp:3s; +remarche remarcher VER 1.32 0.41 0.47 0.07 ind:pre:3s; +remarchent remarcher VER 1.32 0.41 0.02 0.00 ind:pre:3p; +remarcher remarcher VER 1.32 0.41 0.67 0.20 inf; +remarchera remarcher VER 1.32 0.41 0.13 0.00 ind:fut:3s; +remarcheras remarcher VER 1.32 0.41 0.02 0.00 ind:fut:2s; +remaria remarier VER 6.14 4.32 0.08 0.14 ind:pas:3s; +remariage remariage NOM m s 0.10 0.54 0.10 0.54 +remariaient remarier VER 6.14 4.32 0.01 0.00 ind:imp:3p; +remariait remarier VER 6.14 4.32 0.05 0.07 ind:imp:3s; +remariant remarier VER 6.14 4.32 0.01 0.07 par:pre; +remarie remarier VER 6.14 4.32 0.72 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remarient remarier VER 6.14 4.32 0.04 0.14 ind:pre:3p; +remarier remarier VER 6.14 4.32 2.48 1.28 inf;; +remariera remarier VER 6.14 4.32 0.07 0.20 ind:fut:3s; +remarierai remarier VER 6.14 4.32 0.14 0.00 ind:fut:1s; +remarierais remarier VER 6.14 4.32 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +remarierait remarier VER 6.14 4.32 0.02 0.07 cnd:pre:3s; +remarieras remarier VER 6.14 4.32 0.04 0.00 ind:fut:2s; +remarierez remarier VER 6.14 4.32 0.01 0.00 ind:fut:2p; +remarieront remarier VER 6.14 4.32 0.00 0.07 ind:fut:3p; +remaries remarier VER 6.14 4.32 0.06 0.07 ind:pre:2s; +remariez remarier VER 6.14 4.32 0.18 0.07 imp:pre:2p;ind:pre:2p; +remariions remarier VER 6.14 4.32 0.00 0.07 ind:imp:1p; +remarié remarier VER m s 6.14 4.32 0.81 1.15 par:pas; +remariée remarier VER f s 6.14 4.32 1.20 0.74 par:pas; +remariés remarier VER m p 6.14 4.32 0.17 0.00 par:pas; +remarqua remarquer VER 80.56 142.16 0.88 22.36 ind:pas:3s; +remarquable remarquable ADJ s 13.22 13.24 12.20 10.74 +remarquablement remarquablement ADV 0.99 1.89 0.99 1.89 +remarquables remarquable ADJ p 13.22 13.24 1.02 2.50 +remarquai remarquer VER 80.56 142.16 0.31 6.35 ind:pas:1s; +remarquaient remarquer VER 80.56 142.16 0.10 0.54 ind:imp:3p; +remarquais remarquer VER 80.56 142.16 0.07 1.76 ind:imp:1s;ind:imp:2s; +remarquait remarquer VER 80.56 142.16 0.41 5.20 ind:imp:3s; +remarquant remarquer VER 80.56 142.16 0.01 1.42 par:pre; +remarquas remarquer VER 80.56 142.16 0.00 0.07 ind:pas:2s; +remarque remarquer VER 80.56 142.16 7.76 12.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +remarquent remarquer VER 80.56 142.16 1.01 1.01 ind:pre:3p; +remarquer remarquer VER 80.56 142.16 11.32 32.70 inf; +remarquera remarquer VER 80.56 142.16 1.05 0.68 ind:fut:3s; +remarquerai remarquer VER 80.56 142.16 0.04 0.00 ind:fut:1s; +remarqueraient remarquer VER 80.56 142.16 0.08 0.00 cnd:pre:3p; +remarquerais remarquer VER 80.56 142.16 0.41 0.20 cnd:pre:1s;cnd:pre:2s; +remarquerait remarquer VER 80.56 142.16 0.66 0.68 cnd:pre:3s; +remarqueras remarquer VER 80.56 142.16 0.37 0.20 ind:fut:2s; +remarquerez remarquer VER 80.56 142.16 0.92 0.61 ind:fut:2p; +remarqueriez remarquer VER 80.56 142.16 0.19 0.00 cnd:pre:2p; +remarqueront remarquer VER 80.56 142.16 0.53 0.07 ind:fut:3p; +remarques remarque NOM f p 11.24 21.28 3.59 5.07 +remarquez remarquer VER 80.56 142.16 4.07 6.35 imp:pre:2p;ind:pre:2p; +remarquiez remarquer VER 80.56 142.16 0.14 0.14 ind:imp:2p;sub:pre:2p; +remarquions remarquer VER 80.56 142.16 0.03 0.20 ind:imp:1p; +remarquâmes remarquer VER 80.56 142.16 0.00 0.34 ind:pas:1p; +remarquons remarquer VER 80.56 142.16 0.05 0.00 imp:pre:1p;ind:pre:1p; +remarquât remarquer VER 80.56 142.16 0.00 0.54 sub:imp:3s; +remarquèrent remarquer VER 80.56 142.16 0.01 0.34 ind:pas:3p; +remarqué remarquer VER m s 80.56 142.16 47.20 39.86 par:pas; +remarquée remarquer VER f s 80.56 142.16 1.30 5.47 par:pas; +remarquées remarquer VER f p 80.56 142.16 0.08 0.68 par:pas; +remarqués remarquer VER m p 80.56 142.16 0.36 1.08 par:pas; +remballa remballer VER 3.06 1.96 0.00 0.20 ind:pas:3s; +remballage remballage NOM m s 0.01 0.07 0.01 0.07 +remballaient remballer VER 3.06 1.96 0.00 0.07 ind:imp:3p; +remballait remballer VER 3.06 1.96 0.00 0.07 ind:imp:3s; +remballant remballer VER 3.06 1.96 0.00 0.20 par:pre; +remballe remballer VER 3.06 1.96 1.68 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remballent remballer VER 3.06 1.96 0.01 0.14 ind:pre:3p; +remballer remballer VER 3.06 1.96 0.66 0.34 inf; +remballez remballer VER 3.06 1.96 0.58 0.00 imp:pre:2p;ind:pre:2p; +remballé remballer VER m s 3.06 1.96 0.13 0.34 par:pas; +remballés remballer VER m p 3.06 1.96 0.01 0.14 par:pas; +rembarqua rembarquer VER 0.21 0.95 0.00 0.07 ind:pas:3s; +rembarquaient rembarquer VER 0.21 0.95 0.00 0.07 ind:imp:3p; +rembarque rembarquer VER 0.21 0.95 0.04 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembarquement rembarquement NOM m s 0.00 0.47 0.00 0.41 +rembarquements rembarquement NOM m p 0.00 0.47 0.00 0.07 +rembarquer rembarquer VER 0.21 0.95 0.04 0.41 inf; +rembarquez rembarquer VER 0.21 0.95 0.12 0.00 imp:pre:2p;ind:pre:2p; +rembarquèrent rembarquer VER 0.21 0.95 0.00 0.20 ind:pas:3p; +rembarqué rembarquer VER m s 0.21 0.95 0.01 0.00 par:pas; +rembarquées rembarquer VER f p 0.21 0.95 0.00 0.14 par:pas; +rembarra rembarrer VER 0.68 0.88 0.00 0.07 ind:pas:3s; +rembarrais rembarrer VER 0.68 0.88 0.01 0.14 ind:imp:1s; +rembarrait rembarrer VER 0.68 0.88 0.01 0.07 ind:imp:3s; +rembarre rembarrer VER 0.68 0.88 0.22 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembarrer rembarrer VER 0.68 0.88 0.25 0.34 inf; +rembarres rembarrer VER 0.68 0.88 0.05 0.00 ind:pre:2s; +rembarré rembarrer VER m s 0.68 0.88 0.11 0.07 par:pas; +rembarrée rembarrer VER f s 0.68 0.88 0.03 0.07 par:pas; +rembauche rembaucher VER 0.00 0.14 0.00 0.07 ind:pre:3s; +rembauchés rembaucher VER m p 0.00 0.14 0.00 0.07 par:pas; +remblai remblai NOM m s 0.09 5.34 0.07 4.66 +remblaiement remblaiement NOM m s 0.00 0.14 0.00 0.14 +remblais remblai NOM m p 0.09 5.34 0.02 0.68 +remblaya remblayer VER 0.01 0.34 0.00 0.07 ind:pas:3s; +remblayer remblayer VER 0.01 0.34 0.01 0.14 inf; +remblayé remblayer VER m s 0.01 0.34 0.00 0.07 par:pas; +remblayée remblayer VER f s 0.01 0.34 0.00 0.07 par:pas; +remboîter remboîter VER 0.00 0.07 0.00 0.07 inf; +rembobinage rembobinage NOM m s 0.23 0.00 0.23 0.00 +rembobine rembobiner VER 1.59 0.20 1.10 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rembobiner rembobiner VER 1.59 0.20 0.33 0.07 inf; +rembobinez rembobiner VER 1.59 0.20 0.16 0.00 imp:pre:2p; +rembour rembour NOM m s 0.00 0.07 0.00 0.07 +rembourrage rembourrage NOM m s 0.52 0.47 0.51 0.34 +rembourrages rembourrage NOM m p 0.52 0.47 0.01 0.14 +rembourraient rembourrer VER 0.74 2.36 0.01 0.07 ind:imp:3p; +rembourrait rembourrer VER 0.74 2.36 0.01 0.14 ind:imp:3s; +rembourrant rembourrer VER 0.74 2.36 0.00 0.07 par:pre; +rembourre rembourrer VER 0.74 2.36 0.06 0.07 ind:pre:3s; +rembourrer rembourrer VER 0.74 2.36 0.06 0.00 inf; +rembourré rembourrer VER m s 0.74 2.36 0.35 0.81 par:pas; +rembourrée rembourrer VER f s 0.74 2.36 0.19 0.27 par:pas; +rembourrées rembourrer VER f p 0.74 2.36 0.03 0.34 par:pas; +rembourrés rembourrer VER m p 0.74 2.36 0.02 0.61 par:pas; +remboursa rembourser VER 27.71 9.26 0.01 0.00 ind:pas:3s; +remboursable remboursable ADJ s 0.38 0.00 0.38 0.00 +remboursaient rembourser VER 27.71 9.26 0.00 0.07 ind:imp:3p; +remboursais rembourser VER 27.71 9.26 0.03 0.00 ind:imp:1s;ind:imp:2s; +remboursait rembourser VER 27.71 9.26 0.17 0.14 ind:imp:3s; +remboursant rembourser VER 27.71 9.26 0.01 0.07 par:pre; +rembourse rembourser VER 27.71 9.26 3.81 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remboursement remboursement NOM m s 2.09 1.15 1.89 1.01 +remboursements remboursement NOM m p 2.09 1.15 0.20 0.14 +remboursent rembourser VER 27.71 9.26 0.16 0.14 ind:pre:3p; +rembourser rembourser VER 27.71 9.26 11.77 4.39 inf;; +remboursera rembourser VER 27.71 9.26 1.31 0.34 ind:fut:3s; +rembourserai rembourser VER 27.71 9.26 4.24 0.34 ind:fut:1s; +rembourserais rembourser VER 27.71 9.26 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +rembourserait rembourser VER 27.71 9.26 0.08 0.07 cnd:pre:3s; +rembourseras rembourser VER 27.71 9.26 0.74 0.34 ind:fut:2s; +rembourserez rembourser VER 27.71 9.26 0.12 0.14 ind:fut:2p; +rembourserons rembourser VER 27.71 9.26 0.06 0.14 ind:fut:1p; +rembourseront rembourser VER 27.71 9.26 0.05 0.14 ind:fut:3p; +rembourses rembourser VER 27.71 9.26 0.56 0.07 ind:pre:2s; +remboursez rembourser VER 27.71 9.26 0.72 0.34 imp:pre:2p;ind:pre:2p; +remboursons rembourser VER 27.71 9.26 0.15 0.07 imp:pre:1p;ind:pre:1p; +remboursât rembourser VER 27.71 9.26 0.00 0.14 sub:imp:3s; +remboursèrent rembourser VER 27.71 9.26 0.00 0.07 ind:pas:3p; +remboursé rembourser VER m s 27.71 9.26 2.71 0.88 par:pas; +remboursée rembourser VER f s 27.71 9.26 0.48 0.27 par:pas; +remboursées rembourser VER f p 27.71 9.26 0.06 0.14 par:pas; +remboursés rembourser VER m p 27.71 9.26 0.34 0.20 par:pas; +rembruni rembrunir VER m s 0.01 2.36 0.00 0.14 par:pas; +rembrunir rembrunir VER 0.01 2.36 0.00 0.20 inf; +rembrunis rembrunir VER m p 0.01 2.36 0.00 0.07 par:pas; +rembrunissait rembrunir VER 0.01 2.36 0.00 0.27 ind:imp:3s; +rembrunissent rembrunir VER 0.01 2.36 0.00 0.07 ind:pre:3p; +rembrunit rembrunir VER 0.01 2.36 0.01 1.62 ind:pre:3s;ind:pas:3s; +remembrance remembrance NOM f s 0.01 0.14 0.01 0.14 +remembrement remembrement NOM m s 0.01 0.14 0.01 0.14 +remembrés remembrer VER m p 0.00 0.07 0.00 0.07 par:pas; +remercia remercier VER 113.70 54.46 0.04 8.31 ind:pas:3s; +remerciai remercier VER 113.70 54.46 0.01 1.15 ind:pas:1s; +remerciaient remercier VER 113.70 54.46 0.11 0.54 ind:imp:3p; +remerciais remercier VER 113.70 54.46 0.14 0.54 ind:imp:1s; +remerciait remercier VER 113.70 54.46 0.06 2.50 ind:imp:3s; +remerciant remercier VER 113.70 54.46 0.40 1.76 par:pre; +remercie remercier VER 113.70 54.46 51.61 17.09 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +remerciement remerciement NOM m s 5.52 6.22 2.53 2.64 +remerciements remerciement NOM m p 5.52 6.22 2.99 3.58 +remercient remercier VER 113.70 54.46 0.98 0.27 ind:pre:3p; +remercier remercier VER 113.70 54.46 38.60 15.47 inf;; +remerciera remercier VER 113.70 54.46 0.47 0.14 ind:fut:3s; +remercierai remercier VER 113.70 54.46 0.84 0.20 ind:fut:1s; +remercierais remercier VER 113.70 54.46 0.12 0.07 cnd:pre:1s;cnd:pre:2s; +remercierait remercier VER 113.70 54.46 0.06 0.20 cnd:pre:3s; +remercieras remercier VER 113.70 54.46 1.39 0.20 ind:fut:2s; +remercierez remercier VER 113.70 54.46 1.00 0.14 ind:fut:2p; +remercierons remercier VER 113.70 54.46 0.02 0.00 ind:fut:1p; +remercieront remercier VER 113.70 54.46 0.30 0.00 ind:fut:3p; +remercies remercier VER 113.70 54.46 1.37 0.07 ind:pre:2s; +remerciez remercier VER 113.70 54.46 6.25 0.88 imp:pre:2p;ind:pre:2p; +remerciâmes remercier VER 113.70 54.46 0.00 0.07 ind:pas:1p; +remercions remercier VER 113.70 54.46 5.00 0.68 imp:pre:1p;ind:pre:1p; +remercièrent remercier VER 113.70 54.46 0.00 0.54 ind:pas:3p; +remercié remercier VER m s 113.70 54.46 3.59 2.91 par:pas; +remerciée remercier VER f s 113.70 54.46 0.94 0.54 par:pas; +remerciés remercier VER m p 113.70 54.46 0.38 0.20 par:pas; +remet remettre VER 144.94 202.50 12.56 15.74 ind:pre:3s; +remets remettre VER 144.94 202.50 24.72 6.76 imp:pre:2s;ind:pre:1s;ind:pre:2s; +remettaient remettre VER 144.94 202.50 0.06 2.30 ind:imp:3p; +remettais remettre VER 144.94 202.50 0.56 1.69 ind:imp:1s;ind:imp:2s; +remettait remettre VER 144.94 202.50 0.63 12.84 ind:imp:3s; +remettant remettre VER 144.94 202.50 0.31 5.61 par:pre; +remette remettre VER 144.94 202.50 2.94 2.64 sub:pre:1s;sub:pre:3s; +remettent remettre VER 144.94 202.50 2.26 2.91 ind:pre:3p; +remettes remettre VER 144.94 202.50 0.33 0.07 sub:pre:2s; +remettez remettre VER 144.94 202.50 10.44 2.03 imp:pre:2p;ind:pre:2p; +remettiez remettre VER 144.94 202.50 0.52 0.14 ind:imp:2p; +remettions remettre VER 144.94 202.50 0.07 0.07 ind:imp:1p; +remettons remettre VER 144.94 202.50 2.10 0.47 imp:pre:1p;ind:pre:1p; +remettra remettre VER 144.94 202.50 5.79 2.23 ind:fut:3s; +remettrai remettre VER 144.94 202.50 3.32 0.81 ind:fut:1s; +remettraient remettre VER 144.94 202.50 0.04 0.07 cnd:pre:3p; +remettrais remettre VER 144.94 202.50 0.45 0.34 cnd:pre:1s;cnd:pre:2s; +remettrait remettre VER 144.94 202.50 0.67 2.43 cnd:pre:3s; +remettras remettre VER 144.94 202.50 1.54 0.61 ind:fut:2s; +remettre remettre VER 144.94 202.50 46.99 56.08 inf; +remettrez remettre VER 144.94 202.50 1.09 0.27 ind:fut:2p; +remettriez remettre VER 144.94 202.50 0.07 0.07 cnd:pre:2p; +remettrions remettre VER 144.94 202.50 0.00 0.07 cnd:pre:1p; +remettrons remettre VER 144.94 202.50 0.25 0.00 ind:fut:1p; +remettront remettre VER 144.94 202.50 0.27 0.14 ind:fut:3p; +remeublé remeubler VER m s 0.01 0.00 0.01 0.00 par:pas; +remirent remettre VER 144.94 202.50 0.04 2.97 ind:pas:3p; +remis remettre VER m 144.94 202.50 20.27 39.12 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas;par:pas; +remisa remiser VER 1.43 4.19 0.00 0.20 ind:pas:3s; +remisai remiser VER 1.43 4.19 0.00 0.14 ind:pas:1s; +remisaient remiser VER 1.43 4.19 0.01 0.07 ind:imp:3p; +remisait remiser VER 1.43 4.19 0.00 0.27 ind:imp:3s; +remise remise NOM f s 9.77 12.09 8.81 10.95 +remisent remiser VER 1.43 4.19 0.00 0.07 ind:pre:3p; +remiser remiser VER 1.43 4.19 0.18 0.47 inf; +remises remise NOM f p 9.77 12.09 0.96 1.15 +remisez remiser VER 1.43 4.19 0.11 0.00 imp:pre:2p; +remisons remiser VER 1.43 4.19 0.00 0.07 ind:pre:1p; +remisse remettre VER 144.94 202.50 0.00 0.07 sub:imp:1s; +remisèrent remiser VER 1.43 4.19 0.00 0.20 ind:pas:3p; +remisé remiser VER m s 1.43 4.19 0.12 0.74 par:pas; +remisée remiser VER f s 1.43 4.19 0.00 0.27 par:pas; +remisés remiser VER m p 1.43 4.19 0.01 0.34 par:pas; +remit remettre VER 144.94 202.50 0.66 32.16 ind:pas:3s; +remix remix NOM m 0.15 0.00 0.15 0.00 +remixer remixer VER 0.02 0.00 0.02 0.00 inf; +remmailleuses remmailleuse NOM f p 0.00 0.14 0.00 0.14 +remmenaient remmener VER 0.41 0.14 0.00 0.07 ind:imp:3p; +remmener remmener VER 0.41 0.14 0.16 0.07 inf; +remmenez remmener VER 0.41 0.14 0.14 0.00 imp:pre:2p;ind:pre:2p; +remmenée remmener VER f s 0.41 0.14 0.01 0.00 par:pas; +remmène remmener VER 0.41 0.14 0.09 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remmènes remmener VER 0.41 0.14 0.01 0.00 ind:pre:2s; +remobilisés remobiliser VER m p 0.00 0.07 0.00 0.07 par:pas; +remâcha remâcher VER 0.03 2.16 0.00 0.14 ind:pas:3s; +remâchaient remâcher VER 0.03 2.16 0.00 0.14 ind:imp:3p; +remâchais remâcher VER 0.03 2.16 0.00 0.14 ind:imp:1s; +remâchait remâcher VER 0.03 2.16 0.00 0.27 ind:imp:3s; +remâchant remâcher VER 0.03 2.16 0.00 0.34 par:pre; +remâche remâcher VER 0.03 2.16 0.01 0.27 ind:pre:1s;ind:pre:3s; +remâchent remâcher VER 0.03 2.16 0.00 0.14 ind:pre:3p; +remâcher remâcher VER 0.03 2.16 0.01 0.41 inf; +remâchez remâcher VER 0.03 2.16 0.00 0.07 ind:pre:2p; +remâché remâcher VER m s 0.03 2.16 0.00 0.07 par:pas; +remâchée remâcher VER f s 0.03 2.16 0.01 0.14 par:pas; +remâchées remâcher VER f p 0.03 2.16 0.00 0.07 par:pas; +remodela remodeler VER 0.35 0.88 0.00 0.14 ind:pas:3s; +remodelage remodelage NOM m s 0.03 0.14 0.03 0.14 +remodelant remodeler VER 0.35 0.88 0.01 0.07 par:pre; +remodeler remodeler VER 0.35 0.88 0.20 0.07 inf; +remodelé remodeler VER m s 0.35 0.88 0.10 0.27 par:pas; +remodelée remodeler VER f s 0.35 0.88 0.04 0.07 par:pas; +remodelées remodeler VER f p 0.35 0.88 0.00 0.07 par:pas; +remodèle remodeler VER 0.35 0.88 0.00 0.14 ind:pre:3s; +remodèles remodeler VER 0.35 0.88 0.00 0.07 ind:pre:2s; +remonta remonter VER 71.33 160.14 0.32 16.22 ind:pas:3s; +remontage remontage NOM m s 0.03 0.07 0.03 0.07 +remontai remonter VER 71.33 160.14 0.01 1.76 ind:pas:1s; +remontaient remonter VER 71.33 160.14 0.38 6.15 ind:imp:3p; +remontais remonter VER 71.33 160.14 0.33 2.36 ind:imp:1s;ind:imp:2s; +remontait remonter VER 71.33 160.14 0.65 17.84 ind:imp:3s; +remontant remontant NOM m s 2.61 1.01 2.30 0.81 +remontantes remontant ADJ f p 0.11 0.61 0.00 0.07 +remontants remontant NOM m p 2.61 1.01 0.31 0.20 +remonte_pente remonte_pente NOM m s 0.02 0.07 0.02 0.07 +remonte_pentes remonte_pentes NOM m 0.00 0.07 0.00 0.07 +remonte remonter VER 71.33 160.14 25.55 26.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remontent remonter VER 71.33 160.14 2.78 5.61 ind:pre:3p; +remonter remonter VER 71.33 160.14 19.13 38.51 inf; +remontera remonter VER 71.33 160.14 1.83 0.88 ind:fut:3s; +remonterai remonter VER 71.33 160.14 0.40 0.14 ind:fut:1s; +remonteraient remonter VER 71.33 160.14 0.04 0.14 cnd:pre:3p; +remonterait remonter VER 71.33 160.14 0.35 0.74 cnd:pre:3s; +remonteras remonter VER 71.33 160.14 0.06 0.20 ind:fut:2s; +remonterez remonter VER 71.33 160.14 0.08 0.07 ind:fut:2p; +remonteriez remonter VER 71.33 160.14 0.01 0.00 cnd:pre:2p; +remonterons remonter VER 71.33 160.14 0.14 0.27 ind:fut:1p; +remonteront remonter VER 71.33 160.14 0.30 0.14 ind:fut:3p; +remontes remonter VER 71.33 160.14 1.02 0.54 ind:pre:2s; +remontez remonter VER 71.33 160.14 6.73 0.81 imp:pre:2p;ind:pre:2p; +remontiez remonter VER 71.33 160.14 0.06 0.07 ind:imp:2p; +remontions remonter VER 71.33 160.14 0.30 0.74 ind:imp:1p; +remontoir remontoir NOM m s 0.12 0.27 0.12 0.27 +remontâmes remonter VER 71.33 160.14 0.00 0.27 ind:pas:1p; +remontons remonter VER 71.33 160.14 1.21 2.16 imp:pre:1p;ind:pre:1p; +remontât remonter VER 71.33 160.14 0.00 0.41 sub:imp:3s; +remontrait remontrer VER 0.55 1.42 0.06 0.20 ind:imp:3s; +remontrance remontrance NOM f s 0.87 1.69 0.16 0.20 +remontrances remontrance NOM f p 0.87 1.69 0.71 1.49 +remontrassent remontrer VER 0.55 1.42 0.00 0.07 sub:imp:3p; +remontre remontrer VER 0.55 1.42 0.19 0.14 imp:pre:2s;ind:pre:3s; +remontrer remontrer VER 0.55 1.42 0.19 0.14 inf; +remontrera remontrer VER 0.55 1.42 0.00 0.07 ind:fut:3s; +remontrerai remontrer VER 0.55 1.42 0.01 0.07 ind:fut:1s; +remontrerais remontrer VER 0.55 1.42 0.00 0.07 cnd:pre:1s; +remontrerait remontrer VER 0.55 1.42 0.00 0.27 cnd:pre:3s; +remontreras remontrer VER 0.55 1.42 0.00 0.07 ind:fut:2s; +remontres remontrer VER 0.55 1.42 0.01 0.07 ind:pre:2s; +remontrez remontrer VER 0.55 1.42 0.08 0.00 imp:pre:2p; +remontré remontrer VER m s 0.55 1.42 0.01 0.27 par:pas; +remontèrent remonter VER 71.33 160.14 0.01 3.85 ind:pas:3p; +remonté remonter VER m s 71.33 160.14 5.83 14.39 par:pas; +remontée remonter VER f s 71.33 160.14 1.25 3.31 par:pas; +remontées remontée NOM f p 0.38 1.76 0.16 0.27 +remontés remonter VER m p 71.33 160.14 1.04 3.11 par:pas; +remord remordre VER 0.61 0.41 0.43 0.20 ind:pre:3s; +remordait remordre VER 0.61 0.41 0.00 0.14 ind:imp:3s; +remords remords NOM m 10.67 27.64 10.67 27.64 +remordu remordre VER m s 0.61 0.41 0.01 0.00 par:pas; +remorqua remorquer VER 1.60 1.35 0.00 0.20 ind:pas:3s; +remorquage remorquage NOM m s 0.49 0.07 0.49 0.07 +remorquaient remorquer VER 1.60 1.35 0.00 0.07 ind:imp:3p; +remorquait remorquer VER 1.60 1.35 0.01 0.14 ind:imp:3s; +remorquant remorquer VER 1.60 1.35 0.02 0.34 par:pre; +remorque remorque NOM f s 1.31 5.54 1.16 5.14 +remorquer remorquer VER 1.60 1.35 0.85 0.41 inf; +remorquera remorquer VER 1.60 1.35 0.00 0.07 ind:fut:3s; +remorquerai remorquer VER 1.60 1.35 0.02 0.00 ind:fut:1s; +remorques remorque NOM f p 1.31 5.54 0.15 0.41 +remorqueur remorqueur NOM m s 0.36 1.55 0.28 0.27 +remorqueurs remorqueur NOM m p 0.36 1.55 0.08 1.28 +remorqueuse remorqueur ADJ f s 0.12 0.34 0.09 0.00 +remorquez remorquer VER 1.60 1.35 0.02 0.00 imp:pre:2p; +remorquions remorquer VER 1.60 1.35 0.01 0.00 ind:imp:1p; +remorquons remorquer VER 1.60 1.35 0.03 0.00 imp:pre:1p;ind:pre:1p; +remorqué remorquer VER m s 1.60 1.35 0.37 0.14 par:pas; +remorquée remorquer VER f s 1.60 1.35 0.08 0.00 par:pas; +remoucha remoucher VER 0.00 0.07 0.00 0.07 ind:pas:3s; +remouillaient remouiller VER 0.02 0.20 0.00 0.07 ind:imp:3p; +remouiller remouiller VER 0.02 0.20 0.02 0.14 inf; +remous remous NOM m 1.49 14.66 1.49 14.66 +rempaillaient rempailler VER 0.01 0.20 0.00 0.07 ind:imp:3p; +rempailler rempailler VER 0.01 0.20 0.01 0.07 inf; +rempailleur rempailleur NOM m s 0.00 0.34 0.00 0.20 +rempailleurs rempailleur NOM m p 0.00 0.34 0.00 0.07 +rempailleuses rempailleur NOM f p 0.00 0.34 0.00 0.07 +rempaillée rempailler VER f s 0.01 0.20 0.00 0.07 par:pas; +rempaquette rempaqueter VER 0.00 0.14 0.00 0.07 ind:pre:3s; +rempaqueté rempaqueter VER m s 0.00 0.14 0.00 0.07 par:pas; +rempart rempart NOM m s 2.95 20.00 1.56 8.31 +remparts rempart NOM m p 2.95 20.00 1.39 11.69 +rempilait rempiler VER 0.75 1.15 0.00 0.07 ind:imp:3s; +rempile rempiler VER 0.75 1.15 0.17 0.14 ind:pre:1s;ind:pre:3s; +rempilent rempiler VER 0.75 1.15 0.00 0.07 ind:pre:3p; +rempiler rempiler VER 0.75 1.15 0.20 0.54 inf; +rempilerai rempiler VER 0.75 1.15 0.01 0.07 ind:fut:1s; +rempilerais rempiler VER 0.75 1.15 0.00 0.07 cnd:pre:1s; +rempilerez rempiler VER 0.75 1.15 0.00 0.07 ind:fut:2p; +rempiles rempiler VER 0.75 1.15 0.03 0.00 ind:pre:2s; +rempilez rempiler VER 0.75 1.15 0.04 0.07 imp:pre:2p;ind:pre:2p; +rempilé rempiler VER m s 0.75 1.15 0.29 0.07 par:pas; +remplît remplir VER 61.21 81.42 0.00 0.20 sub:imp:3s; +remplace remplacer VER 52.84 60.61 11.59 5.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remplacement remplacement NOM m s 2.03 4.59 1.86 3.92 +remplacements remplacement NOM m p 2.03 4.59 0.17 0.68 +remplacent remplacer VER 52.84 60.61 0.84 1.08 ind:pre:3p; +remplacer remplacer VER 52.84 60.61 22.95 18.38 inf;;inf;;inf;; +remplacera remplacer VER 52.84 60.61 2.13 1.22 ind:fut:3s; +remplacerai remplacer VER 52.84 60.61 0.56 0.07 ind:fut:1s; +remplaceraient remplacer VER 52.84 60.61 0.02 0.20 cnd:pre:3p; +remplacerais remplacer VER 52.84 60.61 0.22 0.20 cnd:pre:1s;cnd:pre:2s; +remplacerait remplacer VER 52.84 60.61 0.20 1.22 cnd:pre:3s; +remplaceras remplacer VER 52.84 60.61 0.33 0.07 ind:fut:2s; +remplacerez remplacer VER 52.84 60.61 0.26 0.41 ind:fut:2p; +remplaceriez remplacer VER 52.84 60.61 0.01 0.00 cnd:pre:2p; +remplacerons remplacer VER 52.84 60.61 0.27 0.14 ind:fut:1p; +remplaceront remplacer VER 52.84 60.61 0.30 0.00 ind:fut:3p; +remplaces remplacer VER 52.84 60.61 0.84 0.14 ind:pre:2s; +remplacez remplacer VER 52.84 60.61 1.81 0.07 imp:pre:2p;ind:pre:2p; +remplaciez remplacer VER 52.84 60.61 0.30 0.00 ind:imp:2p; +remplacèrent remplacer VER 52.84 60.61 0.01 0.47 ind:pas:3p; +remplacé remplacer VER m s 52.84 60.61 6.47 11.96 par:pas; +remplacée remplacer VER f s 52.84 60.61 0.92 2.84 par:pas; +remplacées remplacer VER f p 52.84 60.61 0.54 1.42 par:pas; +remplacés remplacer VER m p 52.84 60.61 0.81 3.11 par:pas; +remplaça remplacer VER 52.84 60.61 0.07 1.82 ind:pas:3s; +remplaçable remplaçable ADJ s 0.41 0.20 0.28 0.07 +remplaçables remplaçable ADJ m p 0.41 0.20 0.13 0.14 +remplaçai remplacer VER 52.84 60.61 0.02 0.14 ind:pas:1s; +remplaçaient remplacer VER 52.84 60.61 0.05 2.43 ind:imp:3p; +remplaçais remplacer VER 52.84 60.61 0.06 0.47 ind:imp:1s;ind:imp:2s; +remplaçait remplacer VER 52.84 60.61 0.53 5.41 ind:imp:3s; +remplaçant remplaçant NOM m s 7.92 2.03 5.20 1.28 +remplaçante remplaçant NOM f s 7.92 2.03 1.72 0.47 +remplaçantes remplaçant NOM f p 7.92 2.03 0.09 0.00 +remplaçants remplaçant NOM m p 7.92 2.03 0.91 0.27 +remplaçons remplacer VER 52.84 60.61 0.10 0.07 imp:pre:1p;ind:pre:1p; +remplaçât remplacer VER 52.84 60.61 0.00 0.07 sub:imp:3s; +rempli remplir VER m s 61.21 81.42 16.17 16.82 par:pas; +remplie rempli ADJ f s 12.74 20.74 6.64 9.93 +remplies rempli ADJ f p 12.74 20.74 1.82 4.59 +remplir remplir VER 61.21 81.42 18.92 22.50 inf; +remplira remplir VER 61.21 81.42 1.00 0.74 ind:fut:3s; +remplirai remplir VER 61.21 81.42 0.90 0.27 ind:fut:1s; +rempliraient remplir VER 61.21 81.42 0.01 0.20 cnd:pre:3p; +remplirais remplir VER 61.21 81.42 0.24 0.00 cnd:pre:1s; +remplirait remplir VER 61.21 81.42 0.20 0.74 cnd:pre:3s; +rempliras remplir VER 61.21 81.42 0.16 0.00 ind:fut:2s; +remplirent remplir VER 61.21 81.42 0.25 1.69 ind:pas:3p; +remplirez remplir VER 61.21 81.42 0.17 0.00 ind:fut:2p; +remplirons remplir VER 61.21 81.42 0.28 0.07 ind:fut:1p; +rempliront remplir VER 61.21 81.42 0.21 0.14 ind:fut:3p; +remplis remplir VER m p 61.21 81.42 7.08 3.78 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +remplissage remplissage NOM m s 0.37 0.27 0.37 0.27 +remplissaient remplir VER 61.21 81.42 0.07 3.45 ind:imp:3p; +remplissais remplir VER 61.21 81.42 0.28 0.61 ind:imp:1s;ind:imp:2s; +remplissait remplir VER 61.21 81.42 1.15 9.59 ind:imp:3s; +remplissant remplir VER 61.21 81.42 0.48 2.43 par:pre; +remplisse remplir VER 61.21 81.42 1.09 0.61 sub:pre:1s;sub:pre:3s; +remplissent remplir VER 61.21 81.42 2.17 2.50 ind:pre:3p; +remplisses remplir VER 61.21 81.42 0.17 0.20 sub:pre:2s; +remplisseur remplisseur NOM m s 0.00 0.07 0.00 0.07 +remplissez remplir VER 61.21 81.42 4.65 0.41 imp:pre:2p;ind:pre:2p; +remplissiez remplir VER 61.21 81.42 0.17 0.00 ind:imp:2p; +remplissions remplir VER 61.21 81.42 0.01 0.07 ind:imp:1p; +remplissons remplir VER 61.21 81.42 0.18 0.14 imp:pre:1p;ind:pre:1p; +remplit remplir VER 61.21 81.42 5.20 14.26 ind:pre:3s;ind:pas:3s; +remploi remploi NOM m s 0.00 0.20 0.00 0.20 +remployée remployer VER f s 0.00 0.07 0.00 0.07 par:pas; +remplumer remplumer VER 0.09 0.34 0.04 0.27 inf; +remplumez remplumer VER 0.09 0.34 0.02 0.00 imp:pre:2p;ind:pre:2p; +remplumé remplumer VER m s 0.09 0.34 0.03 0.07 par:pas; +rempochait rempocher VER 0.00 0.20 0.00 0.07 ind:imp:3s; +rempoche rempocher VER 0.00 0.20 0.00 0.14 ind:pre:1s;ind:pre:3s; +remporta remporter VER 9.27 10.61 0.27 0.27 ind:pas:3s; +remportai remporter VER 9.27 10.61 0.00 0.14 ind:pas:1s; +remportaient remporter VER 9.27 10.61 0.01 0.20 ind:imp:3p; +remportais remporter VER 9.27 10.61 0.00 0.07 ind:imp:2s; +remportait remporter VER 9.27 10.61 0.17 0.74 ind:imp:3s; +remportant remporter VER 9.27 10.61 0.07 0.41 par:pre; +remportassent remporter VER 9.27 10.61 0.00 0.07 sub:imp:3p; +remporte remporter VER 9.27 10.61 1.93 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remportent remporter VER 9.27 10.61 0.24 0.20 ind:pre:3p; +remporter remporter VER 9.27 10.61 3.06 2.09 inf; +remportera remporter VER 9.27 10.61 0.22 0.07 ind:fut:3s; +remporterai remporter VER 9.27 10.61 0.04 0.00 ind:fut:1s; +remporterait remporter VER 9.27 10.61 0.04 0.34 cnd:pre:3s; +remporterez remporter VER 9.27 10.61 0.02 0.00 ind:fut:2p; +remporterons remporter VER 9.27 10.61 0.10 0.00 ind:fut:1p; +remportez remporter VER 9.27 10.61 0.71 0.14 imp:pre:2p;ind:pre:2p; +remportiez remporter VER 9.27 10.61 0.01 0.00 ind:imp:2p; +remportions remporter VER 9.27 10.61 0.00 0.07 ind:imp:1p; +remportât remporter VER 9.27 10.61 0.00 0.07 sub:imp:3s; +remportèrent remporter VER 9.27 10.61 0.00 0.14 ind:pas:3p; +remporté remporter VER m s 9.27 10.61 2.11 2.84 par:pas; +remportée remporter VER f s 9.27 10.61 0.22 1.35 par:pas; +remportées remporter VER f p 9.27 10.61 0.01 0.07 par:pas; +remportés remporter VER m p 9.27 10.61 0.04 0.47 par:pas; +rempoter rempoter VER 0.01 0.00 0.01 0.00 inf; +remprunter remprunter VER 0.03 0.00 0.03 0.00 inf; +remède_miracle remède_miracle NOM m s 0.01 0.00 0.01 0.00 +remède remède NOM m s 16.14 13.45 14.09 10.07 +remèdes remède NOM m p 16.14 13.45 2.05 3.38 +remua remuer VER 24.42 62.84 0.03 3.99 ind:pas:3s; +remuage remuage NOM m s 0.01 0.00 0.01 0.00 +remuai remuer VER 24.42 62.84 0.02 0.27 ind:pas:1s; +remuaient remuer VER 24.42 62.84 0.08 3.78 ind:imp:3p; +remuais remuer VER 24.42 62.84 0.01 0.41 ind:imp:1s;ind:imp:2s; +remuait remuer VER 24.42 62.84 0.59 9.93 ind:imp:3s; +remuant remuer VER 24.42 62.84 0.42 5.81 par:pre; +remuante remuant ADJ f s 0.32 3.24 0.05 1.35 +remuantes remuant ADJ f p 0.32 3.24 0.00 0.41 +remuants remuant ADJ m p 0.32 3.24 0.01 0.27 +remédia remédier VER 3.80 3.18 0.01 0.07 ind:pas:3s; +remédiable remédiable ADJ m s 0.01 0.00 0.01 0.00 +remédiait remédier VER 3.80 3.18 0.01 0.07 ind:imp:3s; +remédie remédier VER 3.80 3.18 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remédier remédier VER 3.80 3.18 3.21 2.50 inf; +remédiera remédier VER 3.80 3.18 0.05 0.07 ind:fut:3s; +remédierait remédier VER 3.80 3.18 0.00 0.07 cnd:pre:3s; +remédierons remédier VER 3.80 3.18 0.10 0.00 ind:fut:1p; +remédiez remédier VER 3.80 3.18 0.04 0.00 imp:pre:2p;ind:pre:2p; +remédions remédier VER 3.80 3.18 0.10 0.00 ind:pre:1p; +remédié remédier VER m s 3.80 3.18 0.20 0.34 par:pas; +remue_ménage remue_ménage NOM m 0.78 4.80 0.78 4.80 +remue_méninges remue_méninges NOM m 0.05 0.07 0.05 0.07 +remue remuer VER 24.42 62.84 8.30 8.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remuement remuement NOM m s 0.00 2.03 0.00 1.49 +remuements remuement NOM m p 0.00 2.03 0.00 0.54 +remuent remuer VER 24.42 62.84 0.41 1.96 ind:pre:3p; +remuer remuer VER 24.42 62.84 6.38 15.34 inf; +remuera remuer VER 24.42 62.84 0.32 0.20 ind:fut:3s; +remuerai remuer VER 24.42 62.84 0.19 0.14 ind:fut:1s; +remueraient remuer VER 24.42 62.84 0.00 0.07 cnd:pre:3p; +remuerais remuer VER 24.42 62.84 0.02 0.14 cnd:pre:1s; +remuerait remuer VER 24.42 62.84 0.04 0.27 cnd:pre:3s; +remueront remuer VER 24.42 62.84 0.02 0.00 ind:fut:3p; +remues remuer VER 24.42 62.84 1.14 0.27 ind:pre:2s; +remueur remueur NOM m s 0.04 0.14 0.04 0.00 +remueurs remueur NOM m p 0.04 0.14 0.00 0.14 +remuez remuer VER 24.42 62.84 4.06 0.34 imp:pre:2p;ind:pre:2p; +remugle remugle NOM m s 0.01 2.36 0.00 0.81 +remugles remugle NOM m p 0.01 2.36 0.01 1.55 +remuions remuer VER 24.42 62.84 0.00 0.07 ind:imp:1p; +remémora remémorer VER 1.28 4.12 0.00 0.47 ind:pas:3s; +remémorais remémorer VER 1.28 4.12 0.03 0.27 ind:imp:1s; +remémorait remémorer VER 1.28 4.12 0.00 0.27 ind:imp:3s; +remémorant remémorer VER 1.28 4.12 0.02 0.34 par:pre; +remémoration remémoration NOM f s 0.02 0.00 0.02 0.00 +remémorative remémoratif ADJ f s 0.00 0.07 0.00 0.07 +remémore remémorer VER 1.28 4.12 0.34 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +remémorent remémorer VER 1.28 4.12 0.01 0.00 ind:pre:3p; +remémorer remémorer VER 1.28 4.12 0.74 1.55 inf; +remémoré remémorer VER m s 1.28 4.12 0.14 0.41 par:pas; +remuâmes remuer VER 24.42 62.84 0.00 0.07 ind:pas:1p; +remuons remuer VER 24.42 62.84 0.20 0.00 imp:pre:1p;ind:pre:1p; +remuât remuer VER 24.42 62.84 0.00 0.20 sub:imp:3s; +remuscle remuscler VER 0.17 0.00 0.01 0.00 imp:pre:2s; +remuscler remuscler VER 0.17 0.00 0.16 0.00 inf; +remuèrent remuer VER 24.42 62.84 0.00 1.15 ind:pas:3p; +remué remuer VER m s 24.42 62.84 1.68 5.47 par:pas; +remuée remuer VER f s 24.42 62.84 0.44 2.97 par:pas; +remuées remuer VER f p 24.42 62.84 0.01 0.81 par:pas; +remués remuer VER m p 24.42 62.84 0.06 0.95 par:pas; +renaît renaître VER 7.45 13.04 0.96 1.96 ind:pre:3s; +renaîtra renaître VER 7.45 13.04 0.44 0.74 ind:fut:3s; +renaîtrai renaître VER 7.45 13.04 0.01 0.00 ind:fut:1s; +renaîtraient renaître VER 7.45 13.04 0.00 0.07 cnd:pre:3p; +renaîtrais renaître VER 7.45 13.04 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +renaîtrait renaître VER 7.45 13.04 0.01 0.20 cnd:pre:3s; +renaîtras renaître VER 7.45 13.04 0.29 0.00 ind:fut:2s; +renaître renaître VER 7.45 13.04 3.07 4.86 inf; +renaîtrez renaître VER 7.45 13.04 0.04 0.00 ind:fut:2p; +renaîtrons renaître VER 7.45 13.04 0.03 0.00 ind:fut:1p; +renaîtront renaître VER 7.45 13.04 0.03 0.14 ind:fut:3p; +renais renaître VER 7.45 13.04 0.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +renaissaient renaître VER 7.45 13.04 0.00 0.41 ind:imp:3p; +renaissais renaître VER 7.45 13.04 0.16 0.00 ind:imp:1s; +renaissait renaître VER 7.45 13.04 0.00 1.15 ind:imp:3s; +renaissance renaissance NOM f s 2.77 10.61 2.75 10.34 +renaissances renaissance NOM f p 2.77 10.61 0.02 0.27 +renaissant renaître VER 7.45 13.04 0.04 0.68 par:pre; +renaissante renaissant ADJ f s 0.39 2.43 0.34 0.74 +renaissantes renaissant ADJ f p 0.39 2.43 0.00 0.88 +renaissants renaissant ADJ m p 0.39 2.43 0.00 0.27 +renaisse renaître VER 7.45 13.04 0.10 0.54 sub:pre:3s; +renaissent renaître VER 7.45 13.04 0.11 0.41 ind:pre:3p; +renaisses renaître VER 7.45 13.04 0.02 0.00 sub:pre:2s; +renaissons renaître VER 7.45 13.04 0.03 0.00 ind:pre:1p; +renaquit renaître VER 7.45 13.04 0.02 0.00 ind:pas:3s; +renard renard NOM m s 6.66 11.96 4.69 8.58 +renarde renard NOM f s 6.66 11.96 0.22 0.20 +renardeau renardeau NOM m s 0.01 0.54 0.01 0.41 +renardeaux renardeau NOM m p 0.01 0.54 0.00 0.14 +renardes renard NOM f p 6.66 11.96 0.01 0.00 +renards renard NOM m p 6.66 11.96 1.74 3.18 +renaud renaud NOM s 0.00 0.68 0.00 0.68 +renaudais renauder VER 0.00 2.64 0.00 0.07 ind:imp:1s; +renaudait renauder VER 0.00 2.64 0.00 0.47 ind:imp:3s; +renaudant renauder VER 0.00 2.64 0.00 0.20 par:pre; +renaude renauder VER 0.00 2.64 0.00 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renaudent renauder VER 0.00 2.64 0.00 0.07 ind:pre:3p; +renauder renauder VER 0.00 2.64 0.00 1.08 inf; +renaudeur renaudeur NOM m s 0.00 0.07 0.00 0.07 +renaudé renauder VER m s 0.00 2.64 0.00 0.14 par:pas; +rencard rencard NOM m s 10.76 1.42 9.62 1.08 +rencardaient rencarder VER 1.07 2.30 0.00 0.14 ind:imp:3p; +rencardait rencarder VER 1.07 2.30 0.01 0.14 ind:imp:3s; +rencarde rencarder VER 1.07 2.30 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rencarder rencarder VER 1.07 2.30 0.17 0.68 inf; +rencards rencard NOM m p 10.76 1.42 1.14 0.34 +rencardé rencarder VER m s 1.07 2.30 0.38 0.68 par:pas; +rencardée rencarder VER f s 1.07 2.30 0.04 0.07 par:pas; +rencardées rencarder VER f p 1.07 2.30 0.00 0.07 par:pas; +rencardés rencarder VER m p 1.07 2.30 0.12 0.27 par:pas; +renchéri renchérir VER m s 0.18 3.58 0.05 0.14 par:pas; +renchérir renchérir VER 0.18 3.58 0.06 0.68 inf; +renchériront renchérir VER 0.18 3.58 0.00 0.14 ind:fut:3p; +renchéris renchérir VER 0.18 3.58 0.05 0.14 ind:pre:1s;ind:pre:2s; +renchérissais renchérir VER 0.18 3.58 0.00 0.07 ind:imp:1s; +renchérissait renchérir VER 0.18 3.58 0.00 0.41 ind:imp:3s; +renchérissant renchérir VER 0.18 3.58 0.00 0.14 par:pre; +renchérissent renchérir VER 0.18 3.58 0.00 0.07 ind:pre:3p; +renchérit renchérir VER 0.18 3.58 0.02 1.82 ind:pre:3s;ind:pas:3s; +rencogna rencogner VER 0.00 1.49 0.00 0.34 ind:pas:3s; +rencognait rencogner VER 0.00 1.49 0.00 0.14 ind:imp:3s; +rencognant rencogner VER 0.00 1.49 0.00 0.07 par:pre; +rencogne rencogner VER 0.00 1.49 0.00 0.07 ind:pre:3s; +rencogner rencogner VER 0.00 1.49 0.00 0.27 inf; +rencognerait rencogner VER 0.00 1.49 0.00 0.07 cnd:pre:3s; +rencogné rencogner VER m s 0.00 1.49 0.00 0.47 par:pas; +rencognés rencogner VER m p 0.00 1.49 0.00 0.07 par:pas; +rencontra rencontrer VER 241.04 188.51 1.64 11.49 ind:pas:3s; +rencontrai rencontrer VER 241.04 188.51 0.25 4.73 ind:pas:1s; +rencontraient rencontrer VER 241.04 188.51 0.49 3.24 ind:imp:3p; +rencontrais rencontrer VER 241.04 188.51 1.12 4.05 ind:imp:1s;ind:imp:2s; +rencontrait rencontrer VER 241.04 188.51 1.11 11.08 ind:imp:3s; +rencontrant rencontrer VER 241.04 188.51 0.82 3.18 par:pre; +rencontrasse rencontrer VER 241.04 188.51 0.00 0.07 sub:imp:1s; +rencontre rencontre NOM f s 35.68 81.76 30.61 63.24 +rencontrent rencontrer VER 241.04 188.51 2.76 3.92 ind:pre:3p; +rencontrer rencontrer VER 241.04 188.51 82.72 43.92 inf;; +rencontrera rencontrer VER 241.04 188.51 1.10 0.95 ind:fut:3s; +rencontrerai rencontrer VER 241.04 188.51 0.67 0.68 ind:fut:1s; +rencontreraient rencontrer VER 241.04 188.51 0.05 0.27 cnd:pre:3p; +rencontrerais rencontrer VER 241.04 188.51 0.97 0.47 cnd:pre:1s;cnd:pre:2s; +rencontrerait rencontrer VER 241.04 188.51 0.48 1.69 cnd:pre:3s; +rencontreras rencontrer VER 241.04 188.51 1.55 0.54 ind:fut:2s; +rencontrerez rencontrer VER 241.04 188.51 1.18 0.54 ind:fut:2p; +rencontreriez rencontrer VER 241.04 188.51 0.05 0.00 cnd:pre:2p; +rencontrerions rencontrer VER 241.04 188.51 0.04 0.34 cnd:pre:1p; +rencontrerons rencontrer VER 241.04 188.51 0.37 0.34 ind:fut:1p; +rencontreront rencontrer VER 241.04 188.51 0.22 0.34 ind:fut:3p; +rencontres rencontre NOM f p 35.68 81.76 5.07 18.51 +rencontrez rencontrer VER 241.04 188.51 1.80 0.88 imp:pre:2p;ind:pre:2p; +rencontriez rencontrer VER 241.04 188.51 0.92 0.27 ind:imp:2p; +rencontrions rencontrer VER 241.04 188.51 0.23 0.95 ind:imp:1p; +rencontrâmes rencontrer VER 241.04 188.51 0.01 0.68 ind:pas:1p; +rencontrons rencontrer VER 241.04 188.51 1.21 1.42 imp:pre:1p;ind:pre:1p; +rencontrât rencontrer VER 241.04 188.51 0.00 0.47 sub:imp:3s; +rencontrèrent rencontrer VER 241.04 188.51 0.83 4.19 ind:pas:3p; +rencontré rencontrer VER m s 241.04 188.51 77.82 45.00 par:pas; +rencontrée rencontrer VER f s 241.04 188.51 12.09 7.23 par:pas; +rencontrées rencontrer VER f p 241.04 188.51 2.61 1.35 par:pas; +rencontrés rencontrer VER m p 241.04 188.51 18.45 10.27 par:pas; +rend rendre VER 508.81 468.11 82.91 40.00 ind:pre:3s; +rendîmes rendre VER 508.81 468.11 0.00 0.68 ind:pas:1p; +rendît rendre VER 508.81 468.11 0.00 2.43 sub:imp:3s; +rendaient rendre VER 508.81 468.11 1.40 14.59 ind:imp:3p; +rendais rendre VER 508.81 468.11 3.25 8.92 ind:imp:1s;ind:imp:2s; +rendait rendre VER 508.81 468.11 9.17 58.24 ind:imp:3s; +rendant rendre VER 508.81 468.11 1.96 9.80 par:pre; +rende rendre VER 508.81 468.11 9.30 5.54 sub:pre:1s;sub:pre:3s; +rendement rendement NOM m s 1.37 2.97 1.34 2.84 +rendements rendement NOM m p 1.37 2.97 0.02 0.14 +rendent rendre VER 508.81 468.11 13.16 9.73 ind:pre:3p;sub:pre:3p; +rendes rendre VER 508.81 468.11 2.06 0.61 sub:pre:2s; +rendez_vous rendez_vous NOM m 91.95 53.72 91.95 53.72 +rendez rendre VER 508.81 468.11 46.77 14.19 imp:pre:2p;ind:pre:2p; +rendiez rendre VER 508.81 468.11 1.12 0.47 ind:imp:2p; +rendions rendre VER 508.81 468.11 0.10 1.35 ind:imp:1p;sub:pre:1p; +rendirent rendre VER 508.81 468.11 0.57 3.92 ind:pas:3p; +rendis rendre VER 508.81 468.11 0.37 9.39 ind:pas:1s; +rendisse rendre VER 508.81 468.11 0.00 0.14 sub:imp:1s; +rendissent rendre VER 508.81 468.11 0.00 0.20 sub:imp:3p; +rendit rendre VER 508.81 468.11 2.13 27.23 ind:pas:3s; +rendons rendre VER 508.81 468.11 4.93 0.95 imp:pre:1p;ind:pre:1p; +rendormît rendormir VER 5.36 8.31 0.00 0.07 sub:imp:3s; +rendormais rendormir VER 5.36 8.31 0.12 0.14 ind:imp:1s; +rendormait rendormir VER 5.36 8.31 0.01 0.20 ind:imp:3s; +rendormant rendormir VER 5.36 8.31 0.00 0.07 par:pre; +rendorme rendormir VER 5.36 8.31 0.02 0.00 sub:pre:3s; +rendorment rendormir VER 5.36 8.31 0.01 0.20 ind:pre:3p; +rendormez rendormir VER 5.36 8.31 0.34 0.00 imp:pre:2p;ind:pre:2p; +rendormi rendormir VER m s 5.36 8.31 0.64 0.81 par:pas; +rendormiez rendormir VER 5.36 8.31 0.00 0.07 ind:imp:2p; +rendormir rendormir VER 5.36 8.31 1.62 3.58 inf; +rendormira rendormir VER 5.36 8.31 0.14 0.14 ind:fut:3s; +rendormirai rendormir VER 5.36 8.31 0.22 0.00 ind:fut:1s; +rendormirait rendormir VER 5.36 8.31 0.00 0.07 cnd:pre:3s; +rendormis rendormir VER m p 5.36 8.31 0.01 0.54 ind:pas:1s;par:pas; +rendormit rendormir VER 5.36 8.31 0.00 1.82 ind:pas:3s; +rendors rendormir VER 5.36 8.31 2.04 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rendort rendormir VER 5.36 8.31 0.20 0.34 ind:pre:3s; +rendra rendre VER 508.81 468.11 13.01 3.78 ind:fut:3s; +rendrai rendre VER 508.81 468.11 10.69 2.50 ind:fut:1s; +rendraient rendre VER 508.81 468.11 0.59 0.27 cnd:pre:3p; +rendrais rendre VER 508.81 468.11 2.17 1.22 cnd:pre:1s;cnd:pre:2s; +rendrait rendre VER 508.81 468.11 6.09 5.95 cnd:pre:3s; +rendras rendre VER 508.81 468.11 2.54 1.42 ind:fut:2s; +rendre rendre VER 508.81 468.11 141.31 150.07 inf;;inf;;inf;;inf;; +rendrez rendre VER 508.81 468.11 2.68 1.08 ind:fut:2p; +rendriez rendre VER 508.81 468.11 0.85 0.14 cnd:pre:2p; +rendrons rendre VER 508.81 468.11 1.18 0.27 ind:fut:1p; +rendront rendre VER 508.81 468.11 2.16 1.08 ind:fut:3p; +rends rendre VER 508.81 468.11 84.13 27.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rendu rendre VER m s 508.81 468.11 48.31 46.08 par:pas; +rendue rendre VER f s 508.81 468.11 8.88 9.46 par:pas; +rendues rendre VER f p 508.81 468.11 1.01 1.82 par:pas; +rendus rendre VER m p 508.81 468.11 4.00 7.43 par:pas; +reneige reneiger VER 0.01 0.07 0.00 0.07 ind:pre:3s; +reneiger reneiger VER 0.01 0.07 0.01 0.00 inf; +renettoyer renettoyer VER 0.01 0.00 0.01 0.00 inf; +renferma renfermer VER 3.25 4.59 0.10 0.14 ind:pas:3s; +renfermaient renfermer VER 3.25 4.59 0.00 0.34 ind:imp:3p; +renfermait renfermer VER 3.25 4.59 0.17 0.88 ind:imp:3s; +renfermant renfermer VER 3.25 4.59 0.16 0.14 par:pre; +renferme renfermer VER 3.25 4.59 1.08 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renfermement renfermement NOM m s 0.00 0.14 0.00 0.14 +renferment renfermer VER 3.25 4.59 0.23 0.34 ind:pre:3p; +renfermer renfermer VER 3.25 4.59 0.57 0.41 inf; +renfermerait renfermer VER 3.25 4.59 0.00 0.07 cnd:pre:3s; +renfermez renfermer VER 3.25 4.59 0.03 0.07 imp:pre:2p; +renfermé renfermé ADJ m s 1.42 1.01 1.22 0.74 +renfermée renfermé ADJ f s 1.42 1.01 0.19 0.20 +renfermées renfermé NOM f p 0.48 2.03 0.01 0.00 +renfermés renfermer VER m p 3.25 4.59 0.05 0.07 par:pas; +renfila renfiler VER 0.10 0.88 0.00 0.07 ind:pas:3s; +renfilait renfiler VER 0.10 0.88 0.00 0.07 ind:imp:3s; +renfilant renfiler VER 0.10 0.88 0.00 0.07 par:pre; +renfile renfiler VER 0.10 0.88 0.10 0.20 imp:pre:2s;ind:pre:3s; +renfiler renfiler VER 0.10 0.88 0.00 0.14 inf; +renfilé renfiler VER m s 0.10 0.88 0.00 0.34 par:pas; +renflait renfler VER 0.00 1.15 0.00 0.14 ind:imp:3s; +renflant renfler VER 0.00 1.15 0.00 0.07 par:pre; +renflement renflement NOM m s 0.17 1.49 0.17 1.22 +renflements renflement NOM m p 0.17 1.49 0.00 0.27 +renflent renfler VER 0.00 1.15 0.00 0.07 ind:pre:3p; +renfloua renflouer VER 0.48 1.15 0.00 0.14 ind:pas:3s; +renflouage renflouage NOM m s 0.01 0.14 0.01 0.14 +renflouait renflouer VER 0.48 1.15 0.00 0.07 ind:imp:3s; +renflouant renflouer VER 0.48 1.15 0.00 0.07 par:pre; +renfloue renflouer VER 0.48 1.15 0.17 0.00 ind:pre:1s;ind:pre:3s; +renflouement renflouement NOM m s 0.01 0.07 0.01 0.07 +renflouent renflouer VER 0.48 1.15 0.02 0.00 ind:pre:3p; +renflouer renflouer VER 0.48 1.15 0.23 0.54 inf; +renfloué renflouer VER m s 0.48 1.15 0.03 0.14 par:pas; +renflouée renflouer VER f s 0.48 1.15 0.01 0.07 par:pas; +renfloués renflouer VER m p 0.48 1.15 0.02 0.14 par:pas; +renflé renflé ADJ m s 0.00 0.74 0.00 0.41 +renflée renfler VER f s 0.00 1.15 0.00 0.34 par:pas; +renflées renfler VER f p 0.00 1.15 0.00 0.07 par:pas; +renflés renfler VER m p 0.00 1.15 0.00 0.14 par:pas; +renfonce renfoncer VER 0.07 1.35 0.02 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renfoncement renfoncement NOM m s 0.04 3.51 0.03 3.11 +renfoncements renfoncement NOM m p 0.04 3.51 0.01 0.41 +renfoncer renfoncer VER 0.07 1.35 0.00 0.14 inf; +renfoncé renfoncer VER m s 0.07 1.35 0.02 0.54 par:pas; +renfoncée renfoncer VER f s 0.07 1.35 0.02 0.14 par:pas; +renfoncées renfoncer VER f p 0.07 1.35 0.01 0.00 par:pas; +renfoncés renfoncer VER m p 0.07 1.35 0.00 0.14 par:pas; +renfonça renfoncer VER 0.07 1.35 0.00 0.14 ind:pas:3s; +renfonçait renfoncer VER 0.07 1.35 0.00 0.07 ind:imp:3s; +renforce renforcer VER 10.34 17.84 2.05 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renforcement renforcement NOM m s 0.19 0.74 0.16 0.74 +renforcements renforcement NOM m p 0.19 0.74 0.03 0.00 +renforcent renforcer VER 10.34 17.84 0.51 0.74 ind:pre:3p; +renforcer renforcer VER 10.34 17.84 4.29 6.35 inf; +renforcera renforcer VER 10.34 17.84 0.35 0.14 ind:fut:3s; +renforcerai renforcer VER 10.34 17.84 0.04 0.00 ind:fut:1s; +renforceraient renforcer VER 10.34 17.84 0.01 0.07 cnd:pre:3p; +renforcerait renforcer VER 10.34 17.84 0.14 0.07 cnd:pre:3s; +renforcerez renforcer VER 10.34 17.84 0.15 0.00 ind:fut:2p; +renforcerons renforcer VER 10.34 17.84 0.01 0.07 ind:fut:1p; +renforcez renforcer VER 10.34 17.84 0.48 0.07 imp:pre:2p;ind:pre:2p; +renforciez renforcer VER 10.34 17.84 0.04 0.00 ind:imp:2p; +renforcèrent renforcer VER 10.34 17.84 0.00 0.20 ind:pas:3p; +renforcé renforcer VER m s 10.34 17.84 0.90 1.89 par:pas; +renforcée renforcer VER f s 10.34 17.84 0.76 2.09 par:pas; +renforcées renforcer VER f p 10.34 17.84 0.10 1.01 par:pas; +renforcés renforcer VER m p 10.34 17.84 0.26 0.34 par:pas; +renfort renfort NOM m s 21.41 13.45 7.50 7.50 +renforça renforcer VER 10.34 17.84 0.01 0.47 ind:pas:3s; +renforçaient renforcer VER 10.34 17.84 0.00 0.47 ind:imp:3p; +renforçait renforcer VER 10.34 17.84 0.17 1.49 ind:imp:3s; +renforçant renforcer VER 10.34 17.84 0.03 0.61 par:pre; +renforçons renforcer VER 10.34 17.84 0.05 0.07 imp:pre:1p;ind:pre:1p; +renforçât renforcer VER 10.34 17.84 0.00 0.07 sub:imp:3s; +renforts renfort NOM m p 21.41 13.45 13.91 5.95 +renfourché renfourcher VER m s 0.00 0.07 0.00 0.07 par:pas; +renfournait renfourner VER 0.00 0.07 0.00 0.07 ind:imp:3s; +renfrogna renfrogner VER 0.27 2.57 0.01 0.74 ind:pas:3s; +renfrognait renfrogner VER 0.27 2.57 0.00 0.27 ind:imp:3s; +renfrognant renfrogner VER 0.27 2.57 0.00 0.07 par:pre; +renfrogne renfrogner VER 0.27 2.57 0.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renfrognement renfrognement NOM m s 0.01 0.14 0.01 0.14 +renfrogner renfrogner VER 0.27 2.57 0.01 0.14 inf; +renfrognerait renfrogner VER 0.27 2.57 0.00 0.07 cnd:pre:3s; +renfrogné renfrogner VER m s 0.27 2.57 0.21 0.47 par:pas; +renfrognée renfrogné ADJ f s 0.30 2.36 0.16 0.54 +renfrognés renfrogner VER m p 0.27 2.57 0.02 0.07 par:pas; +rengageait rengager VER 0.12 0.61 0.00 0.07 ind:imp:3s; +rengagement rengagement NOM m s 0.01 0.07 0.01 0.07 +rengager rengager VER 0.12 0.61 0.09 0.34 inf; +rengagerais rengager VER 0.12 0.61 0.01 0.00 cnd:pre:1s; +rengagez rengager VER 0.12 0.61 0.02 0.07 imp:pre:2p;ind:pre:2p; +rengagés rengager VER m p 0.12 0.61 0.00 0.14 par:pas; +rengaina rengainer VER 0.60 1.42 0.00 0.27 ind:pas:3s; +rengainait rengainer VER 0.60 1.42 0.00 0.07 ind:imp:3s; +rengainant rengainer VER 0.60 1.42 0.01 0.07 par:pre; +rengaine rengaine NOM f s 1.48 4.59 1.41 3.31 +rengainer rengainer VER 0.60 1.42 0.05 0.20 inf; +rengaines rengaine NOM f p 1.48 4.59 0.06 1.28 +rengainez rengainer VER 0.60 1.42 0.35 0.07 imp:pre:2p; +rengainèrent rengainer VER 0.60 1.42 0.00 0.07 ind:pas:3p; +rengainé rengainer VER m s 0.60 1.42 0.01 0.47 par:pas; +rengainés rengainer VER m p 0.60 1.42 0.01 0.00 par:pas; +rengorge rengorger VER 0.04 2.97 0.03 0.61 ind:pre:3s; +rengorgea rengorger VER 0.04 2.97 0.00 0.88 ind:pas:3s; +rengorgeai rengorger VER 0.04 2.97 0.00 0.07 ind:pas:1s; +rengorgeaient rengorger VER 0.04 2.97 0.00 0.07 ind:imp:3p; +rengorgeais rengorger VER 0.04 2.97 0.00 0.14 ind:imp:1s; +rengorgeait rengorger VER 0.04 2.97 0.00 0.27 ind:imp:3s; +rengorgeant rengorger VER 0.04 2.97 0.00 0.34 par:pre; +rengorgement rengorgement NOM m s 0.00 0.14 0.00 0.07 +rengorgements rengorgement NOM m p 0.00 0.14 0.00 0.07 +rengorgent rengorger VER 0.04 2.97 0.01 0.14 ind:pre:3p; +rengorger rengorger VER 0.04 2.97 0.00 0.27 inf; +rengorges rengorger VER 0.04 2.97 0.00 0.07 ind:pre:2s; +rengorgé rengorger VER m s 0.04 2.97 0.00 0.07 par:pas; +rengorgés rengorger VER m p 0.04 2.97 0.00 0.07 par:pas; +rengracie rengracier VER 0.00 0.20 0.00 0.14 ind:pre:3s; +rengracié rengracier VER m s 0.00 0.20 0.00 0.07 par:pas; +renia renier VER 6.88 13.85 0.20 0.20 ind:pas:3s; +reniai renier VER 6.88 13.85 0.00 0.20 ind:pas:1s; +reniaient renier VER 6.88 13.85 0.00 0.41 ind:imp:3p; +reniais renier VER 6.88 13.85 0.11 0.54 ind:imp:1s;ind:imp:2s; +reniait renier VER 6.88 13.85 0.01 0.95 ind:imp:3s; +reniant renier VER 6.88 13.85 0.18 0.61 par:pre; +renie renier VER 6.88 13.85 1.65 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reniement reniement NOM m s 0.02 2.09 0.02 1.42 +reniements reniement NOM m p 0.02 2.09 0.00 0.68 +renient renier VER 6.88 13.85 0.07 0.20 ind:pre:3p; +renier renier VER 6.88 13.85 1.93 4.80 inf; +renierai renier VER 6.88 13.85 0.33 0.14 ind:fut:1s; +renierais renier VER 6.88 13.85 0.02 0.07 cnd:pre:1s; +renierait renier VER 6.88 13.85 0.33 0.27 cnd:pre:3s; +renieras renier VER 6.88 13.85 0.28 0.00 ind:fut:2s; +renieront renier VER 6.88 13.85 0.10 0.00 ind:fut:3p; +renies renier VER 6.88 13.85 0.25 0.27 ind:pre:2s; +reniez renier VER 6.88 13.85 0.03 0.14 imp:pre:2p;ind:pre:2p; +renifla renifler VER 5.56 24.39 0.00 3.31 ind:pas:3s; +reniflage reniflage NOM m s 0.05 0.00 0.05 0.00 +reniflai renifler VER 5.56 24.39 0.00 0.20 ind:pas:1s; +reniflaient renifler VER 5.56 24.39 0.00 0.88 ind:imp:3p; +reniflais renifler VER 5.56 24.39 0.04 0.34 ind:imp:1s;ind:imp:2s; +reniflait renifler VER 5.56 24.39 0.07 3.58 ind:imp:3s; +reniflant renifler VER 5.56 24.39 0.05 3.38 par:pre; +renifle renifler VER 5.56 24.39 2.67 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reniflement reniflement NOM m s 0.04 1.28 0.01 0.47 +reniflements reniflement NOM m p 0.04 1.28 0.02 0.81 +reniflent renifler VER 5.56 24.39 0.11 0.68 ind:pre:3p; +renifler renifler VER 5.56 24.39 1.64 5.20 inf; +reniflera renifler VER 5.56 24.39 0.02 0.00 ind:fut:3s; +reniflerait renifler VER 5.56 24.39 0.01 0.07 cnd:pre:3s; +renifleries reniflerie NOM f p 0.00 0.14 0.00 0.14 +reniflette reniflette NOM f s 0.00 0.07 0.00 0.07 +renifleur renifleur NOM m s 0.25 0.14 0.20 0.07 +renifleurs renifleur NOM m p 0.25 0.14 0.05 0.07 +renifleuse renifleur ADJ f s 0.12 0.07 0.01 0.00 +reniflez renifler VER 5.56 24.39 0.17 0.27 imp:pre:2p;ind:pre:2p; +reniflé renifler VER m s 5.56 24.39 0.63 1.69 par:pas; +reniflée renifler VER f s 5.56 24.39 0.15 0.41 par:pas; +reniflées renifler VER f p 5.56 24.39 0.01 0.00 par:pas; +renions renier VER 6.88 13.85 0.03 0.00 imp:pre:1p;ind:pre:1p; +renièrent renier VER 6.88 13.85 0.00 0.07 ind:pas:3p; +renié renier VER m s 6.88 13.85 1.01 1.76 par:pas; +reniée renier VER f s 6.88 13.85 0.30 0.81 par:pas; +reniées renier VER f p 6.88 13.85 0.00 0.14 par:pas; +reniés renier VER m p 6.88 13.85 0.03 0.14 par:pas; +rennais rennais ADJ m 0.00 0.20 0.00 0.07 +rennaises rennais ADJ f p 0.00 0.20 0.00 0.14 +renne renne NOM m s 1.79 1.15 0.81 0.47 +rennes renne NOM m p 1.79 1.15 0.98 0.68 +renâcla renâcler VER 0.09 2.36 0.00 0.07 ind:pas:3s; +renâclaient renâcler VER 0.09 2.36 0.00 0.07 ind:imp:3p; +renâclais renâcler VER 0.09 2.36 0.00 0.20 ind:imp:1s; +renâclait renâcler VER 0.09 2.36 0.01 0.20 ind:imp:3s; +renâclant renâcler VER 0.09 2.36 0.00 0.54 par:pre; +renâcle renâcler VER 0.09 2.36 0.06 0.34 ind:pre:1s;ind:pre:3s; +renâclent renâcler VER 0.09 2.36 0.00 0.07 ind:pre:3p; +renâcler renâcler VER 0.09 2.36 0.01 0.54 inf; +renâcles renâcler VER 0.09 2.36 0.00 0.07 ind:pre:2s; +renâclez renâcler VER 0.09 2.36 0.01 0.00 ind:pre:2p; +renâclions renâcler VER 0.09 2.36 0.00 0.07 ind:imp:1p; +renâclé renâcler VER m s 0.09 2.36 0.00 0.20 par:pas; +renom renom NOM m s 1.15 2.43 1.15 2.43 +renommait renommer VER 0.77 1.22 0.00 0.07 ind:imp:3s; +renommer renommer VER 0.77 1.22 0.22 0.00 inf; +renommera renommer VER 0.77 1.22 0.01 0.00 ind:fut:3s; +renommez renommer VER 0.77 1.22 0.00 0.27 imp:pre:2p;ind:pre:2p; +renommé renommé ADJ m s 0.97 1.08 0.45 0.47 +renommée renommée NOM f s 1.89 3.11 1.89 3.11 +renommées renommé ADJ f p 0.97 1.08 0.01 0.07 +renommés renommé ADJ m p 0.97 1.08 0.15 0.27 +renonce renoncer VER 41.65 64.46 9.28 5.61 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renoncement renoncement NOM m s 0.70 6.82 0.69 5.95 +renoncements renoncement NOM m p 0.70 6.82 0.02 0.88 +renoncent renoncer VER 41.65 64.46 0.75 1.28 ind:pre:3p; +renoncer renoncer VER 41.65 64.46 15.23 21.55 inf; +renoncera renoncer VER 41.65 64.46 0.50 0.27 ind:fut:3s; +renoncerai renoncer VER 41.65 64.46 1.06 0.27 ind:fut:1s; +renonceraient renoncer VER 41.65 64.46 0.01 0.00 cnd:pre:3p; +renoncerais renoncer VER 41.65 64.46 0.99 0.34 cnd:pre:1s;cnd:pre:2s; +renoncerait renoncer VER 41.65 64.46 0.14 0.34 cnd:pre:3s; +renonceras renoncer VER 41.65 64.46 0.06 0.00 ind:fut:2s; +renoncerez renoncer VER 41.65 64.46 0.07 0.07 ind:fut:2p; +renonceriez renoncer VER 41.65 64.46 0.05 0.00 cnd:pre:2p; +renoncerions renoncer VER 41.65 64.46 0.14 0.00 cnd:pre:1p; +renoncerons renoncer VER 41.65 64.46 0.16 0.00 ind:fut:1p; +renonceront renoncer VER 41.65 64.46 0.19 0.07 ind:fut:3p; +renonces renoncer VER 41.65 64.46 1.50 0.07 ind:pre:2s;sub:pre:2s; +renoncez renoncer VER 41.65 64.46 2.91 0.68 imp:pre:2p;ind:pre:2p; +renonciateur renonciateur NOM m s 0.00 0.07 0.00 0.07 +renonciation renonciation NOM f s 0.38 0.41 0.35 0.34 +renonciations renonciation NOM f p 0.38 0.41 0.03 0.07 +renonciez renoncer VER 41.65 64.46 0.23 0.14 ind:imp:2p; +renoncions renoncer VER 41.65 64.46 0.04 0.47 ind:imp:1p; +renoncèrent renoncer VER 41.65 64.46 0.03 0.47 ind:pas:3p; +renoncé renoncer VER m s 41.65 64.46 6.43 17.30 par:pas; +renoncée renoncer VER f s 41.65 64.46 0.00 0.07 par:pas; +renonculacées renonculacée NOM f p 0.01 0.00 0.01 0.00 +renoncule renoncule NOM f s 0.07 0.54 0.01 0.07 +renoncules renoncule NOM f p 0.07 0.54 0.05 0.47 +renonça renoncer VER 41.65 64.46 0.16 4.19 ind:pas:3s; +renonçai renoncer VER 41.65 64.46 0.14 1.69 ind:pas:1s; +renonçaient renoncer VER 41.65 64.46 0.00 0.68 ind:imp:3p; +renonçais renoncer VER 41.65 64.46 0.20 0.54 ind:imp:1s; +renonçait renoncer VER 41.65 64.46 0.18 3.18 ind:imp:3s; +renonçant renoncer VER 41.65 64.46 0.71 4.46 par:pre; +renonçons renoncer VER 41.65 64.46 0.47 0.47 imp:pre:1p;ind:pre:1p; +renonçât renoncer VER 41.65 64.46 0.01 0.27 sub:imp:3s; +renoter renoter VER 0.01 0.00 0.01 0.00 inf; +renoua renouer VER 1.56 7.91 0.00 0.27 ind:pas:3s; +renouai renouer VER 1.56 7.91 0.00 0.20 ind:pas:1s; +renouaient renouer VER 1.56 7.91 0.00 0.20 ind:imp:3p; +renouais renouer VER 1.56 7.91 0.01 0.07 ind:imp:1s; +renouait renouer VER 1.56 7.91 0.01 0.81 ind:imp:3s; +renouant renouer VER 1.56 7.91 0.01 0.47 par:pre; +renoue renouer VER 1.56 7.91 0.40 0.81 ind:pre:1s;ind:pre:3s; +renouent renouer VER 1.56 7.91 0.10 0.07 ind:pre:3p; +renouer renouer VER 1.56 7.91 0.70 3.18 inf; +renouerait renouer VER 1.56 7.91 0.00 0.07 cnd:pre:3s; +renoueront renouer VER 1.56 7.91 0.00 0.14 ind:fut:3p; +renouons renouer VER 1.56 7.91 0.01 0.14 imp:pre:1p;ind:pre:1p; +renouèrent renouer VER 1.56 7.91 0.00 0.14 ind:pas:3p; +renoué renouer VER m s 1.56 7.91 0.32 1.08 par:pas; +renouée renouée NOM f s 0.00 0.34 0.00 0.34 +renoués renouer VER m p 1.56 7.91 0.00 0.07 par:pas; +renouveau renouveau NOM m s 1.38 3.85 1.38 3.72 +renouveaux renouveau NOM m p 1.38 3.85 0.00 0.14 +renouvela renouveler VER 4.71 19.39 0.12 0.61 ind:pas:3s; +renouvelable renouvelable ADJ s 0.09 0.07 0.09 0.07 +renouvelai renouveler VER 4.71 19.39 0.00 0.34 ind:pas:1s; +renouvelaient renouveler VER 4.71 19.39 0.00 0.20 ind:imp:3p; +renouvelais renouveler VER 4.71 19.39 0.00 0.14 ind:imp:1s; +renouvelait renouveler VER 4.71 19.39 0.02 1.62 ind:imp:3s; +renouvelant renouveler VER 4.71 19.39 0.00 0.68 par:pre; +renouveler renouveler VER 4.71 19.39 1.98 5.81 inf; +renouvelez renouveler VER 4.71 19.39 0.08 0.00 imp:pre:2p;ind:pre:2p; +renouvelions renouveler VER 4.71 19.39 0.00 0.07 ind:imp:1p; +renouvelle renouveler VER 4.71 19.39 1.06 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renouvellement renouvellement NOM m s 0.94 2.43 0.89 2.30 +renouvellements renouvellement NOM m p 0.94 2.43 0.05 0.14 +renouvellent renouveler VER 4.71 19.39 0.34 0.27 ind:pre:3p; +renouvellera renouveler VER 4.71 19.39 0.10 0.14 ind:fut:3s; +renouvellerai renouveler VER 4.71 19.39 0.01 0.07 ind:fut:1s; +renouvellerait renouveler VER 4.71 19.39 0.00 0.41 cnd:pre:3s; +renouvellerons renouveler VER 4.71 19.39 0.01 0.00 ind:fut:1p; +renouvelleront renouveler VER 4.71 19.39 0.04 0.07 ind:fut:3p; +renouvelles renouveler VER 4.71 19.39 0.03 0.00 ind:pre:2s; +renouvelâmes renouveler VER 4.71 19.39 0.00 0.07 ind:pas:1p; +renouvelons renouveler VER 4.71 19.39 0.04 0.07 imp:pre:1p;ind:pre:1p; +renouvelât renouveler VER 4.71 19.39 0.00 0.14 sub:imp:3s; +renouvelèrent renouveler VER 4.71 19.39 0.00 0.07 ind:pas:3p; +renouvelé renouveler VER m s 4.71 19.39 0.52 2.70 par:pas; +renouvelée renouveler VER f s 4.71 19.39 0.15 2.36 par:pas; +renouvelées renouveler VER f p 4.71 19.39 0.03 1.15 par:pas; +renouvelés renouveler VER m p 4.71 19.39 0.18 0.81 par:pas; +renquillait renquiller VER 0.00 0.34 0.00 0.07 ind:imp:3s; +renquille renquiller VER 0.00 0.34 0.00 0.07 ind:pre:3s; +renquillé renquiller VER m s 0.00 0.34 0.00 0.20 par:pas; +renseigna renseigner VER 20.46 24.26 0.00 1.01 ind:pas:3s; +renseignai renseigner VER 20.46 24.26 0.00 0.20 ind:pas:1s; +renseignaient renseigner VER 20.46 24.26 0.00 0.34 ind:imp:3p; +renseignais renseigner VER 20.46 24.26 0.26 0.00 ind:imp:1s;ind:imp:2s; +renseignait renseigner VER 20.46 24.26 0.08 1.01 ind:imp:3s; +renseignant renseigner VER 20.46 24.26 0.02 0.14 par:pre; +renseigne renseigner VER 20.46 24.26 3.44 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +renseignement renseignement NOM m s 18.98 22.91 5.07 5.68 +renseignements renseignement NOM m p 18.98 22.91 13.91 17.23 +renseignent renseigner VER 20.46 24.26 0.14 0.47 ind:pre:3p; +renseigner renseigner VER 20.46 24.26 9.07 7.03 inf; +renseignera renseigner VER 20.46 24.26 0.59 0.27 ind:fut:3s; +renseignerai renseigner VER 20.46 24.26 0.19 0.20 ind:fut:1s; +renseigneraient renseigner VER 20.46 24.26 0.01 0.14 cnd:pre:3p; +renseignerais renseigner VER 20.46 24.26 0.22 0.00 cnd:pre:1s;cnd:pre:2s; +renseignerait renseigner VER 20.46 24.26 0.17 0.27 cnd:pre:3s; +renseigneras renseigner VER 20.46 24.26 0.01 0.07 ind:fut:2s; +renseigneriez renseigner VER 20.46 24.26 0.02 0.00 cnd:pre:2p; +renseignerons renseigner VER 20.46 24.26 0.16 0.00 ind:fut:1p; +renseigneront renseigner VER 20.46 24.26 0.00 0.20 ind:fut:3p; +renseignez renseigner VER 20.46 24.26 0.86 0.34 imp:pre:2p;ind:pre:2p; +renseignât renseigner VER 20.46 24.26 0.00 0.07 sub:imp:3s; +renseignèrent renseigner VER 20.46 24.26 0.00 0.07 ind:pas:3p; +renseigné renseigner VER m s 20.46 24.26 3.04 5.81 par:pas; +renseignée renseigner VER f s 20.46 24.26 1.23 1.62 par:pas; +renseignées renseigner VER f p 20.46 24.26 0.03 0.14 par:pas; +renseignés renseigner VER m p 20.46 24.26 0.93 2.16 par:pas; +renta renter VER 0.47 0.00 0.11 0.00 ind:pas:3s; +rentabilisation rentabilisation NOM f s 0.00 0.07 0.00 0.07 +rentabilise rentabiliser VER 0.47 0.14 0.07 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rentabiliser rentabiliser VER 0.47 0.14 0.37 0.07 inf; +rentabilisé rentabiliser VER m s 0.47 0.14 0.04 0.00 par:pas; +rentabilisée rentabiliser VER f s 0.47 0.14 0.00 0.07 par:pas; +rentabilité rentabilité NOM f s 0.27 0.61 0.27 0.61 +rentable rentable ADJ s 2.58 1.69 2.21 1.42 +rentables rentable ADJ p 2.58 1.69 0.36 0.27 +rentamer rentamer VER 0.01 0.00 0.01 0.00 inf; +rente rente NOM f s 1.61 3.78 1.17 1.96 +renter renter VER 0.47 0.00 0.34 0.00 inf; +rentes rente NOM f p 1.61 3.78 0.44 1.82 +rentier rentier NOM m s 0.17 3.11 0.12 1.08 +rentiers rentier NOM m p 0.17 3.11 0.05 1.42 +rentière rentier NOM f s 0.17 3.11 0.00 0.47 +rentières rentier NOM f p 0.17 3.11 0.00 0.14 +rentoilages rentoilage NOM m p 0.00 0.07 0.00 0.07 +rentoilée rentoiler VER f s 0.00 0.07 0.00 0.07 par:pas; +rentra rentrer VER 532.51 279.93 1.11 18.51 ind:pas:3s; +rentrai rentrer VER 532.51 279.93 0.39 5.20 ind:pas:1s; +rentraient rentrer VER 532.51 279.93 1.29 6.49 ind:imp:3p;ind:pre:3p; +rentrais rentrer VER 532.51 279.93 5.36 5.95 ind:imp:1s;ind:imp:2s;ind:pre:2s; +rentrait rentrer VER 532.51 279.93 6.21 17.57 ind:imp:3s;ind:pre:3s; +rentrant rentrer VER 532.51 279.93 9.50 21.49 par:pre; +rentrante rentrant ADJ f s 0.04 1.01 0.01 0.00 +rentrantes rentrant ADJ f p 0.04 1.01 0.00 0.20 +rentrants rentrant ADJ m p 0.04 1.01 0.00 0.07 +rentre_dedans rentre_dedans NOM m 0.47 0.07 0.47 0.07 +rentre rentrer VER 532.51 279.93 151.42 41.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rentrent rentrer VER 532.51 279.93 6.04 5.07 ind:pre:3p; +rentrer rentrer VER 532.51 279.93 166.36 77.23 inf; +rentrera rentrer VER 532.51 279.93 9.64 2.70 ind:fut:3s; +rentrerai rentrer VER 532.51 279.93 9.91 2.23 ind:fut:1s; +rentreraient rentrer VER 532.51 279.93 0.07 0.88 cnd:pre:3p; +rentrerais rentrer VER 532.51 279.93 1.09 0.74 cnd:pre:1s;cnd:pre:2s; +rentrerait rentrer VER 532.51 279.93 1.45 3.24 cnd:pre:3s; +rentreras rentrer VER 532.51 279.93 3.16 0.74 ind:fut:2s; +rentrerez rentrer VER 532.51 279.93 1.12 0.34 ind:fut:2p; +rentreriez rentrer VER 532.51 279.93 0.23 0.07 cnd:pre:2p; +rentrerions rentrer VER 532.51 279.93 0.07 0.41 cnd:pre:1p; +rentrerons rentrer VER 532.51 279.93 1.05 0.74 ind:fut:1p; +rentreront rentrer VER 532.51 279.93 0.98 0.68 ind:fut:3p; +rentres rentrer VER 532.51 279.93 24.90 2.36 ind:pre:2s;sub:pre:2s; +rentrez rentrer VER 532.51 279.93 31.60 2.57 imp:pre:2p;ind:pre:2p; +rentriez rentrer VER 532.51 279.93 0.61 0.68 ind:imp:2p;sub:pre:2p; +rentrions rentrer VER 532.51 279.93 0.48 2.36 ind:imp:1p; +rentrâmes rentrer VER 532.51 279.93 0.01 1.01 ind:pas:1p; +rentrons rentrer VER 532.51 279.93 19.04 5.54 imp:pre:1p;ind:pre:1p; +rentrât rentrer VER 532.51 279.93 0.00 0.47 sub:imp:3s; +rentrèrent rentrer VER 532.51 279.93 0.09 2.36 ind:pas:3p; +rentré rentrer VER m s 532.51 279.93 44.27 24.05 par:pas; +rentrée rentrer VER f s 532.51 279.93 25.00 14.66 par:pas; +rentrées rentrer VER f p 532.51 279.93 0.78 3.11 par:pas; +rentrés rentrer VER m p 532.51 279.93 9.29 8.72 par:pas; +rentée renter VER f s 0.47 0.00 0.02 0.00 par:pas; +rené renaître VER m s 7.45 13.04 1.46 1.42 par:pas; +renée renaître VER f s 7.45 13.04 0.25 0.14 par:pas; +renégat renégat NOM m s 1.60 1.96 0.89 1.15 +renégate renégat NOM f s 1.60 1.96 0.15 0.14 +renégats renégat NOM m p 1.60 1.96 0.56 0.68 +renégociation renégociation NOM f s 0.05 0.00 0.05 0.00 +renégocie renégocier VER 0.36 0.00 0.03 0.00 ind:pre:1s;ind:pre:3s; +renégocier renégocier VER 0.36 0.00 0.30 0.00 inf; +renégociées renégocier VER f p 0.36 0.00 0.01 0.00 par:pas; +renégociés renégocier VER m p 0.36 0.00 0.02 0.00 par:pas; +renverra renvoyer VER 59.22 42.70 1.40 0.14 ind:fut:3s; +renverrai renvoyer VER 59.22 42.70 0.98 0.14 ind:fut:1s; +renverraient renvoyer VER 59.22 42.70 0.10 0.07 cnd:pre:3p; +renverrais renvoyer VER 59.22 42.70 0.16 0.07 cnd:pre:1s;cnd:pre:2s; +renverrait renvoyer VER 59.22 42.70 0.27 0.20 cnd:pre:3s; +renverras renvoyer VER 59.22 42.70 0.16 0.00 ind:fut:2s; +renverrez renvoyer VER 59.22 42.70 0.09 0.00 ind:fut:2p; +renverrions renvoyer VER 59.22 42.70 0.01 0.07 cnd:pre:1p; +renverrons renvoyer VER 59.22 42.70 0.12 0.07 ind:fut:1p; +renverront renvoyer VER 59.22 42.70 0.54 0.07 ind:fut:3p; +renversa renverser VER 24.02 39.46 0.27 5.34 ind:pas:3s; +renversai renverser VER 24.02 39.46 0.01 0.07 ind:pas:1s; +renversaient renverser VER 24.02 39.46 0.02 1.01 ind:imp:3p; +renversais renverser VER 24.02 39.46 0.02 0.07 ind:imp:1s; +renversait renverser VER 24.02 39.46 0.12 2.97 ind:imp:3s; +renversant renversant ADJ m s 1.31 0.95 0.87 0.68 +renversante renversant ADJ f s 1.31 0.95 0.40 0.07 +renversantes renversant ADJ f p 1.31 0.95 0.04 0.20 +renverse renverser VER 24.02 39.46 1.93 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +renversement renversement NOM m s 0.27 2.23 0.25 1.96 +renversements renversement NOM m p 0.27 2.23 0.03 0.27 +renversent renverser VER 24.02 39.46 0.10 0.54 ind:pre:3p; +renverser renverser VER 24.02 39.46 7.00 7.64 inf; +renversera renverser VER 24.02 39.46 0.15 0.00 ind:fut:3s; +renverserai renverser VER 24.02 39.46 0.16 0.00 ind:fut:1s; +renverserais renverser VER 24.02 39.46 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +renverserait renverser VER 24.02 39.46 0.07 0.41 cnd:pre:3s; +renverseras renverser VER 24.02 39.46 0.02 0.00 ind:fut:2s; +renverseront renverser VER 24.02 39.46 0.01 0.14 ind:fut:3p; +renverses renverser VER 24.02 39.46 0.48 0.20 ind:pre:2s; +renverseur renverseur NOM m s 0.00 0.07 0.00 0.07 +renversez renverser VER 24.02 39.46 0.35 0.07 imp:pre:2p;ind:pre:2p; +renversons renverser VER 24.02 39.46 0.04 0.07 imp:pre:1p;ind:pre:1p; +renversât renverser VER 24.02 39.46 0.00 0.07 sub:imp:3s; +renversèrent renverser VER 24.02 39.46 0.01 0.20 ind:pas:3p; +renversé renverser VER m s 24.02 39.46 10.41 6.62 par:pas; +renversée renverser VER f s 24.02 39.46 2.04 4.26 par:pas; +renversées renversé ADJ f p 1.33 10.47 0.08 1.69 +renversés renverser VER m p 24.02 39.46 0.50 1.42 par:pas; +renvoi renvoi NOM m s 3.50 4.80 3.19 3.38 +renvoie renvoyer VER 59.22 42.70 11.56 6.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +renvoient renvoyer VER 59.22 42.70 1.62 1.89 ind:pre:3p; +renvoies renvoyer VER 59.22 42.70 0.67 0.14 ind:pre:2s; +renvois renvoi NOM m p 3.50 4.80 0.31 1.42 +renvoya renvoyer VER 59.22 42.70 0.17 3.58 ind:pas:3s; +renvoyai renvoyer VER 59.22 42.70 0.01 0.14 ind:pas:1s; +renvoyaient renvoyer VER 59.22 42.70 0.07 1.69 ind:imp:3p; +renvoyais renvoyer VER 59.22 42.70 0.12 0.20 ind:imp:1s;ind:imp:2s; +renvoyait renvoyer VER 59.22 42.70 0.53 5.61 ind:imp:3s; +renvoyant renvoyer VER 59.22 42.70 0.09 1.28 par:pre; +renvoyer renvoyer VER 59.22 42.70 16.45 8.45 inf; +renvoyez renvoyer VER 59.22 42.70 5.48 0.20 imp:pre:2p;ind:pre:2p; +renvoyiez renvoyer VER 59.22 42.70 0.05 0.00 ind:imp:2p;sub:pre:2p; +renvoyions renvoyer VER 59.22 42.70 0.02 0.00 ind:imp:1p; +renvoyons renvoyer VER 59.22 42.70 0.22 0.00 imp:pre:1p;ind:pre:1p; +renvoyât renvoyer VER 59.22 42.70 0.00 0.20 sub:imp:3s; +renvoyèrent renvoyer VER 59.22 42.70 0.02 0.54 ind:pas:3p; +renvoyé renvoyer VER m s 59.22 42.70 11.06 7.36 par:pas; +renvoyée renvoyer VER f s 59.22 42.70 4.71 1.96 par:pas; +renvoyées renvoyer VER f p 59.22 42.70 0.50 0.81 par:pas; +renvoyés renvoyer VER m p 59.22 42.70 2.04 1.69 par:pas; +rep rep NOM m s 0.00 0.07 0.00 0.07 +repaît repaître VER 0.48 2.57 0.12 0.07 ind:pre:3s; +repaître repaître VER 0.48 2.57 0.20 1.42 inf; +repaie repayer VER 0.23 0.41 0.01 0.07 ind:pre:3s; +repaies repayer VER 0.23 0.41 0.01 0.00 ind:pre:2s; +repaire repaire NOM m s 3.19 3.31 3.02 2.43 +repaires repaire NOM m p 3.19 3.31 0.17 0.88 +repais repaître VER 0.48 2.57 0.01 0.41 imp:pre:2s;ind:pre:1s; +repaissaient repaître VER 0.48 2.57 0.01 0.07 ind:imp:3p; +repaissais repaître VER 0.48 2.57 0.00 0.07 ind:imp:1s; +repaissait repaître VER 0.48 2.57 0.00 0.47 ind:imp:3s; +repaissant repaître VER 0.48 2.57 0.01 0.00 par:pre; +repaissent repaître VER 0.48 2.57 0.14 0.07 ind:pre:3p; +reparût reparaître VER 0.80 15.68 0.00 0.20 sub:imp:3s; +reparaît reparaître VER 0.80 15.68 0.16 2.23 ind:pre:3s; +reparaîtra reparaître VER 0.80 15.68 0.01 0.27 ind:fut:3s; +reparaîtrait reparaître VER 0.80 15.68 0.00 0.07 cnd:pre:3s; +reparaître reparaître VER 0.80 15.68 0.06 3.38 inf; +reparais reparaître VER 0.80 15.68 0.14 0.00 ind:pre:2s; +reparaissaient reparaître VER 0.80 15.68 0.01 0.74 ind:imp:3p; +reparaissait reparaître VER 0.80 15.68 0.00 1.28 ind:imp:3s; +reparaissant reparaître VER 0.80 15.68 0.00 0.41 par:pre; +reparaisse reparaître VER 0.80 15.68 0.01 0.41 sub:pre:3s; +reparaissent reparaître VER 0.80 15.68 0.00 0.34 ind:pre:3p; +reparaissez reparaître VER 0.80 15.68 0.00 0.07 ind:pre:2p; +reparaissons reparaître VER 0.80 15.68 0.00 0.07 ind:pre:1p; +reparcourant reparcourir VER 0.14 0.34 0.00 0.20 par:pre; +reparcourir reparcourir VER 0.14 0.34 0.13 0.07 inf; +reparcouru reparcourir VER m s 0.14 0.34 0.01 0.07 par:pas; +reparla reparler VER 19.93 8.65 0.03 0.95 ind:pas:3s; +reparlaient reparler VER 19.93 8.65 0.00 0.14 ind:imp:3p; +reparlais reparler VER 19.93 8.65 0.04 0.07 ind:imp:1s;ind:imp:2s; +reparlait reparler VER 19.93 8.65 0.09 0.20 ind:imp:3s; +reparlant reparler VER 19.93 8.65 0.00 0.07 par:pre; +reparle reparler VER 19.93 8.65 3.02 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reparlent reparler VER 19.93 8.65 0.03 0.07 ind:pre:3p; +reparler reparler VER 19.93 8.65 2.88 1.28 inf; +reparlera reparler VER 19.93 8.65 8.40 0.88 ind:fut:3s; +reparlerai reparler VER 19.93 8.65 0.33 0.41 ind:fut:1s; +reparlerez reparler VER 19.93 8.65 0.01 0.00 ind:fut:2p; +reparlerions reparler VER 19.93 8.65 0.03 0.07 cnd:pre:1p; +reparlerons reparler VER 19.93 8.65 2.58 1.96 ind:fut:1p; +reparles reparler VER 19.93 8.65 0.45 0.07 ind:pre:2s; +reparlez reparler VER 19.93 8.65 0.12 0.07 imp:pre:2p;ind:pre:2p; +reparliez reparler VER 19.93 8.65 0.03 0.07 ind:imp:2p; +reparlâmes reparler VER 19.93 8.65 0.00 0.20 ind:pas:1p; +reparlons reparler VER 19.93 8.65 0.56 0.14 imp:pre:1p;ind:pre:1p; +reparlé reparler VER m s 19.93 8.65 1.36 1.42 par:pas; +repars repartir VER 58.84 87.57 6.61 2.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repart repartir VER 58.84 87.57 8.08 8.11 ind:pre:3s; +repartîmes repartir VER 58.84 87.57 0.01 0.41 ind:pas:1p; +repartît repartir VER 58.84 87.57 0.01 0.20 sub:imp:3s; +repartaient repartir VER 58.84 87.57 0.16 2.57 ind:imp:3p; +repartais repartir VER 58.84 87.57 0.46 1.22 ind:imp:1s;ind:imp:2s; +repartait repartir VER 58.84 87.57 0.83 10.20 ind:imp:3s; +repartant repartir VER 58.84 87.57 0.16 1.62 par:pre; +reparte repartir VER 58.84 87.57 1.09 0.81 sub:pre:1s;sub:pre:3s; +repartent repartir VER 58.84 87.57 1.53 1.89 ind:pre:3p; +repartes repartir VER 58.84 87.57 0.24 0.20 sub:pre:2s; +repartez repartir VER 58.84 87.57 1.58 0.68 imp:pre:2p;ind:pre:2p; +reparti repartir VER m s 58.84 87.57 9.19 9.05 par:pas; +repartie repartir VER f s 58.84 87.57 2.54 3.72 par:pas; +reparties repartir VER f p 58.84 87.57 0.07 0.41 par:pas; +repartiez repartir VER 58.84 87.57 0.13 0.07 ind:imp:2p; +repartions repartir VER 58.84 87.57 0.05 0.74 ind:imp:1p; +repartir repartir VER 58.84 87.57 19.56 22.91 inf; +repartira repartir VER 58.84 87.57 0.89 0.54 ind:fut:3s; +repartirai repartir VER 58.84 87.57 0.66 0.41 ind:fut:1s; +repartiraient repartir VER 58.84 87.57 0.03 0.07 cnd:pre:3p; +repartirais repartir VER 58.84 87.57 0.19 0.41 cnd:pre:1s;cnd:pre:2s; +repartirait repartir VER 58.84 87.57 0.06 0.41 cnd:pre:3s; +repartiras repartir VER 58.84 87.57 0.55 0.47 ind:fut:2s; +repartirent repartir VER 58.84 87.57 0.01 1.55 ind:pas:3p; +repartirez repartir VER 58.84 87.57 0.46 0.20 ind:fut:2p; +repartirons repartir VER 58.84 87.57 0.21 0.41 ind:fut:1p; +repartiront repartir VER 58.84 87.57 0.20 0.14 ind:fut:3p; +repartis repartir VER m p 58.84 87.57 1.52 3.65 ind:pas:1s;par:pas; +repartisse repartir VER 58.84 87.57 0.00 0.07 sub:imp:1s; +repartit repartir VER 58.84 87.57 0.36 10.14 ind:pas:3s; +repartons repartir VER 58.84 87.57 1.40 1.89 imp:pre:1p;ind:pre:1p; +reparu reparaître VER m s 0.80 15.68 0.32 2.64 par:pas; +reparue reparaître VER f s 0.80 15.68 0.00 0.14 par:pas; +reparurent reparaître VER 0.80 15.68 0.00 0.27 ind:pas:3p; +reparut reparaître VER 0.80 15.68 0.10 3.18 ind:pas:3s; +repas repas NOM m 48.53 76.62 48.53 76.62 +repassa repasser VER 26.91 34.19 0.00 1.49 ind:pas:3s; +repassage repassage NOM m s 1.06 2.03 1.05 1.82 +repassages repassage NOM m p 1.06 2.03 0.01 0.20 +repassai repasser VER 26.91 34.19 0.00 0.61 ind:pas:1s; +repassaient repasser VER 26.91 34.19 0.02 1.15 ind:imp:3p; +repassais repasser VER 26.91 34.19 0.13 0.47 ind:imp:1s;ind:imp:2s; +repassait repasser VER 26.91 34.19 0.21 3.45 ind:imp:3s; +repassant repasser VER 26.91 34.19 0.31 1.96 par:pre; +repasse repasser VER 26.91 34.19 6.34 4.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repassent repasser VER 26.91 34.19 0.37 1.15 ind:pre:3p; +repasser repasser VER 26.91 34.19 7.27 9.39 inf; +repassera repasser VER 26.91 34.19 0.73 0.81 ind:fut:3s; +repasserai repasser VER 26.91 34.19 4.89 1.01 ind:fut:1s; +repasseraient repasser VER 26.91 34.19 0.01 0.14 cnd:pre:3p; +repasserais repasser VER 26.91 34.19 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +repasserait repasser VER 26.91 34.19 0.03 0.47 cnd:pre:3s; +repasseras repasser VER 26.91 34.19 0.11 0.41 ind:fut:2s; +repasserez repasser VER 26.91 34.19 0.25 0.47 ind:fut:2p; +repasserons repasser VER 26.91 34.19 0.07 0.00 ind:fut:1p; +repasseront repasser VER 26.91 34.19 0.12 0.14 ind:fut:3p; +repasses repasser VER 26.91 34.19 0.60 0.07 ind:pre:2s; +repasseur repasseur NOM m s 0.00 0.68 0.00 0.41 +repasseuse repasseur NOM f s 0.00 0.68 0.00 0.20 +repasseuses repasseur NOM f p 0.00 0.68 0.00 0.07 +repassez repasser VER 26.91 34.19 1.85 0.41 imp:pre:2p;ind:pre:2p; +repassiez repasser VER 26.91 34.19 0.03 0.00 ind:imp:2p; +repassions repasser VER 26.91 34.19 0.03 0.14 ind:imp:1p; +repassons repasser VER 26.91 34.19 0.22 0.07 imp:pre:1p;ind:pre:1p; +repassé repasser VER m s 26.91 34.19 1.79 3.51 par:pas; +repassée repasser VER f s 26.91 34.19 0.52 1.15 par:pas; +repassées repasser VER f p 26.91 34.19 0.14 0.34 par:pas; +repassés repasser VER m p 26.91 34.19 0.70 0.95 par:pas; +repavage repavage NOM m s 0.04 0.00 0.04 0.00 +repaver repaver VER 0.01 0.07 0.01 0.00 inf; +repavé repaver VER m s 0.01 0.07 0.00 0.07 par:pas; +repayais repayer VER 0.23 0.41 0.00 0.07 ind:imp:1s; +repayait repayer VER 0.23 0.41 0.00 0.07 ind:imp:3s; +repaye repayer VER 0.23 0.41 0.00 0.07 ind:pre:1s; +repayer repayer VER 0.23 0.41 0.21 0.00 inf;; +repayé repayer VER m s 0.23 0.41 0.00 0.07 par:pas; +repeigna repeigner VER 0.35 1.35 0.00 0.07 ind:pas:3s; +repeignais repeigner VER 0.35 1.35 0.01 0.14 ind:imp:1s; +repeignait repeigner VER 0.35 1.35 0.01 0.41 ind:imp:3s; +repeignant repeigner VER 0.35 1.35 0.02 0.00 par:pre; +repeigne repeigner VER 0.35 1.35 0.06 0.14 ind:pre:1s;ind:pre:3s; +repeignent repeigner VER 0.35 1.35 0.19 0.27 ind:pre:3p; +repeignez repeigner VER 0.35 1.35 0.06 0.00 imp:pre:2p;ind:pre:2p; +repeignit repeindre VER 5.05 6.96 0.00 0.07 ind:pas:3s; +repeigné repeigner VER m s 0.35 1.35 0.00 0.07 par:pas; +repeignée repeigner VER f s 0.35 1.35 0.00 0.20 par:pas; +repeignées repeigner VER f p 0.35 1.35 0.00 0.07 par:pas; +repeindra repeindre VER 5.05 6.96 0.03 0.00 ind:fut:3s; +repeindrai repeindre VER 5.05 6.96 0.01 0.00 ind:fut:1s; +repeindrait repeindre VER 5.05 6.96 0.25 0.00 cnd:pre:3s; +repeindre repeindre VER 5.05 6.96 2.79 2.70 inf; +repeins repeindre VER 5.05 6.96 0.29 0.00 imp:pre:2s;ind:pre:1s; +repeint repeindre VER m s 5.05 6.96 1.46 1.35 ind:pre:3s;par:pas; +repeinte repeindre VER f s 5.05 6.96 0.20 1.69 par:pas; +repeintes repeindre VER f p 5.05 6.96 0.02 0.61 par:pas; +repeints repeindre VER m p 5.05 6.96 0.01 0.54 par:pas; +rependra rependre VER 0.38 0.14 0.00 0.07 ind:fut:3s; +rependre rependre VER 0.38 0.14 0.22 0.00 inf; +repends rependre VER 0.38 0.14 0.15 0.00 imp:pre:2s;ind:pre:1s; +rependu rependre VER m s 0.38 0.14 0.01 0.00 par:pas; +rependus rependre VER m p 0.38 0.14 0.00 0.07 par:pas; +repens repentir VER 9.49 6.28 1.47 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repensa repenser VER 9.68 12.16 0.01 0.95 ind:pas:3s; +repensai repenser VER 9.68 12.16 0.02 0.74 ind:pas:1s; +repensais repenser VER 9.68 12.16 0.56 0.81 ind:imp:1s; +repensait repenser VER 9.68 12.16 0.26 0.88 ind:imp:3s; +repensant repenser VER 9.68 12.16 0.98 1.01 par:pre; +repense repenser VER 9.68 12.16 2.91 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +repensent repenser VER 9.68 12.16 0.01 0.07 ind:pre:3p; +repenser repenser VER 9.68 12.16 1.74 2.36 inf; +repensera repenser VER 9.68 12.16 0.13 0.07 ind:fut:3s; +repenserai repenser VER 9.68 12.16 0.02 0.00 ind:fut:1s; +repenserais repenser VER 9.68 12.16 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +repenserez repenser VER 9.68 12.16 0.03 0.14 ind:fut:2p; +repenses repenser VER 9.68 12.16 0.55 0.07 ind:pre:2s;sub:pre:2s; +repensez repenser VER 9.68 12.16 0.22 0.00 imp:pre:2p;ind:pre:2p; +repensons repenser VER 9.68 12.16 0.02 0.00 imp:pre:1p; +repensé repenser VER m s 9.68 12.16 2.12 1.55 par:pas; +repensée repenser VER f s 9.68 12.16 0.01 0.00 par:pas; +repent repentir VER 9.49 6.28 0.96 0.34 ind:pre:3s; +repentaient repentir VER 9.49 6.28 0.00 0.07 ind:imp:3p; +repentait repentir VER 9.49 6.28 0.00 0.61 ind:imp:3s; +repentance repentance NOM f s 0.15 0.20 0.15 0.20 +repentant repentir VER 9.49 6.28 0.13 0.07 par:pre; +repentante repentant ADJ f s 0.17 0.74 0.02 0.41 +repentantes repentant ADJ f p 0.17 0.74 0.00 0.07 +repentants repentant ADJ m p 0.17 0.74 0.12 0.07 +repentent repentir VER 9.49 6.28 0.02 0.14 ind:pre:3p; +repentez repentir VER 9.49 6.28 0.80 0.34 imp:pre:2p;ind:pre:2p; +repenti repenti ADJ m s 0.84 1.15 0.76 0.61 +repentie repentir VER f s 9.49 6.28 0.05 0.20 par:pas; +repenties repenti ADJ f p 0.84 1.15 0.00 0.14 +repentir repentir VER 9.49 6.28 3.59 2.50 inf; +repentira repentir VER 9.49 6.28 0.34 0.07 ind:fut:3s; +repentirai repentir VER 9.49 6.28 0.25 0.14 ind:fut:1s; +repentirais repentir VER 9.49 6.28 0.00 0.07 cnd:pre:2s; +repentiras repentir VER 9.49 6.28 0.76 0.00 ind:fut:2s; +repentirez repentir VER 9.49 6.28 0.56 0.14 ind:fut:2p; +repentirs repentir NOM m p 2.59 5.20 0.00 0.61 +repentis repenti ADJ m p 0.84 1.15 0.07 0.27 +repentisse repentir VER 9.49 6.28 0.01 0.00 sub:imp:1s; +repentissent repentir VER 9.49 6.28 0.01 0.07 sub:imp:3p; +repentit repentir VER 9.49 6.28 0.02 0.20 ind:pas:3s; +repentons repentir VER 9.49 6.28 0.02 0.00 imp:pre:1p;ind:pre:1p; +reperdaient reperdre VER 0.32 0.88 0.00 0.07 ind:imp:3p; +reperdais reperdre VER 0.32 0.88 0.00 0.07 ind:imp:1s; +reperdons reperdre VER 0.32 0.88 0.00 0.07 imp:pre:1p; +reperdre reperdre VER 0.32 0.88 0.16 0.14 inf; +reperds reperdre VER 0.32 0.88 0.01 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reperdu reperdre VER m s 0.32 0.88 0.15 0.20 par:pas; +reperdue reperdre VER f s 0.32 0.88 0.00 0.14 par:pas; +reperdues reperdre VER f p 0.32 0.88 0.00 0.07 par:pas; +repeuplaient repeupler VER 0.62 0.74 0.00 0.07 ind:imp:3p; +repeuplait repeupler VER 0.62 0.74 0.00 0.07 ind:imp:3s; +repeuple repeupler VER 0.62 0.74 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repeuplement repeuplement NOM m s 0.01 0.00 0.01 0.00 +repeupler repeupler VER 0.62 0.74 0.32 0.07 inf; +repeuplée repeupler VER f s 0.62 0.74 0.01 0.27 par:pas; +repeuplées repeupler VER f p 0.62 0.74 0.00 0.07 par:pas; +repincer repincer VER 0.15 0.27 0.15 0.07 inf; +repincé repincer VER m s 0.15 0.27 0.00 0.20 par:pas; +repiqua repiquer VER 0.53 2.09 0.00 0.27 ind:pas:3s; +repiquage repiquage NOM m s 0.10 0.61 0.10 0.61 +repiquaient repiquer VER 0.53 2.09 0.00 0.07 ind:imp:3p; +repiquait repiquer VER 0.53 2.09 0.00 0.20 ind:imp:3s; +repique repiquer VER 0.53 2.09 0.16 0.68 ind:pre:1s;ind:pre:3s; +repiquer repiquer VER 0.53 2.09 0.07 0.47 inf; +repiquerai repiquer VER 0.53 2.09 0.00 0.07 ind:fut:1s; +repiqué repiquer VER m s 0.53 2.09 0.30 0.27 par:pas; +repiquées repiquer VER f p 0.53 2.09 0.00 0.07 par:pas; +replace replacer VER 1.54 7.70 0.32 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +replacement replacement NOM m s 0.02 0.00 0.02 0.00 +replacent replacer VER 1.54 7.70 0.02 0.00 ind:pre:3p; +replacer replacer VER 1.54 7.70 0.41 2.36 inf; +replacerai replacer VER 1.54 7.70 0.02 0.00 ind:fut:1s; +replacerez replacer VER 1.54 7.70 0.01 0.00 ind:fut:2p; +replacez replacer VER 1.54 7.70 0.26 0.07 imp:pre:2p; +replacèrent replacer VER 1.54 7.70 0.00 0.07 ind:pas:3p; +replacé replacer VER m s 1.54 7.70 0.39 1.01 par:pas; +replacée replacer VER f s 1.54 7.70 0.05 0.07 par:pas; +replacés replacer VER m p 1.54 7.70 0.02 0.20 par:pas; +replanta replanter VER 0.25 1.69 0.00 0.07 ind:pas:3s; +replantait replanter VER 0.25 1.69 0.00 0.20 ind:imp:3s; +replantation replantation NOM f s 0.00 0.07 0.00 0.07 +replante replanter VER 0.25 1.69 0.00 0.14 ind:pre:3s; +replantent replanter VER 0.25 1.69 0.00 0.07 ind:pre:3p; +replanter replanter VER 0.25 1.69 0.21 0.47 inf; +replantez replanter VER 0.25 1.69 0.00 0.07 imp:pre:2p; +replanté replanter VER m s 0.25 1.69 0.00 0.14 par:pas; +replantée replanter VER f s 0.25 1.69 0.01 0.27 par:pas; +replantées replanter VER f p 0.25 1.69 0.01 0.20 par:pas; +replantés replanter VER m p 0.25 1.69 0.02 0.07 par:pas; +replat replat NOM m s 0.16 0.61 0.16 0.54 +replaça replacer VER 1.54 7.70 0.01 1.22 ind:pas:3s; +replaçaient replacer VER 1.54 7.70 0.00 0.14 ind:imp:3p; +replaçais replacer VER 1.54 7.70 0.00 0.14 ind:imp:1s; +replaçait replacer VER 1.54 7.70 0.02 0.61 ind:imp:3s; +replaçant replacer VER 1.54 7.70 0.00 0.74 par:pre; +replaçons replacer VER 1.54 7.70 0.01 0.14 imp:pre:1p;ind:pre:1p; +replats replat NOM m p 0.16 0.61 0.00 0.07 +replet replet ADJ m s 0.14 1.62 0.03 0.74 +replets replet ADJ m p 0.14 1.62 0.00 0.14 +repli repli NOM m s 1.40 10.14 1.12 5.88 +replia replier VER 6.78 33.18 0.00 3.31 ind:pas:3s; +repliai replier VER 6.78 33.18 0.00 0.14 ind:pas:1s; +repliaient replier VER 6.78 33.18 0.01 0.47 ind:imp:3p; +repliais replier VER 6.78 33.18 0.10 0.14 ind:imp:1s; +repliait replier VER 6.78 33.18 0.12 2.23 ind:imp:3s; +repliant replier VER 6.78 33.18 0.11 0.95 par:pre; +replie replier VER 6.78 33.18 1.42 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repliement repliement NOM m s 0.01 0.54 0.01 0.54 +replient replier VER 6.78 33.18 0.28 0.47 ind:pre:3p; +replier replier VER 6.78 33.18 1.56 3.31 inf; +repliera replier VER 6.78 33.18 0.02 0.00 ind:fut:3s; +replierai replier VER 6.78 33.18 0.02 0.00 ind:fut:1s; +replierez replier VER 6.78 33.18 0.00 0.07 ind:fut:2p; +replierons replier VER 6.78 33.18 0.04 0.00 ind:fut:1p; +replieront replier VER 6.78 33.18 0.01 0.00 ind:fut:3p; +replies replier VER 6.78 33.18 0.02 0.14 ind:pre:2s; +repliez replier VER 6.78 33.18 1.81 0.07 imp:pre:2p;ind:pre:2p; +replions replier VER 6.78 33.18 0.13 0.14 imp:pre:1p;ind:pre:1p; +repliât replier VER 6.78 33.18 0.00 0.14 sub:imp:3s; +replis repli NOM m p 1.40 10.14 0.28 4.26 +replièrent replier VER 6.78 33.18 0.01 0.34 ind:pas:3p; +replié replier VER m s 6.78 33.18 0.37 7.91 par:pas; +repliée replier VER f s 6.78 33.18 0.23 3.04 par:pas; +repliées replier VER f p 6.78 33.18 0.21 3.65 par:pas; +repliés replier VER m p 6.78 33.18 0.29 4.12 par:pas; +replonge replonger VER 2.14 11.08 0.50 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +replongea replonger VER 2.14 11.08 0.01 1.42 ind:pas:3s; +replongeai replonger VER 2.14 11.08 0.01 0.20 ind:pas:1s; +replongeaient replonger VER 2.14 11.08 0.00 0.07 ind:imp:3p; +replongeais replonger VER 2.14 11.08 0.16 0.68 ind:imp:1s;ind:imp:2s; +replongeait replonger VER 2.14 11.08 0.02 0.81 ind:imp:3s; +replongeant replonger VER 2.14 11.08 0.00 0.68 par:pre; +replongent replonger VER 2.14 11.08 0.02 0.41 ind:pre:3p; +replonger replonger VER 2.14 11.08 0.86 2.97 inf; +replongera replonger VER 2.14 11.08 0.01 0.07 ind:fut:3s; +replongerai replonger VER 2.14 11.08 0.02 0.07 ind:fut:1s; +replongerais replonger VER 2.14 11.08 0.01 0.00 cnd:pre:2s; +replongerait replonger VER 2.14 11.08 0.02 0.20 cnd:pre:3s; +replonges replonger VER 2.14 11.08 0.06 0.20 ind:pre:2s;sub:pre:2s; +replongiez replonger VER 2.14 11.08 0.01 0.00 ind:imp:2p; +replongé replonger VER m s 2.14 11.08 0.42 1.35 par:pas; +replongée replonger VER f s 2.14 11.08 0.00 0.54 par:pas; +replongées replonger VER f p 2.14 11.08 0.00 0.07 par:pas; +replongés replonger VER m p 2.14 11.08 0.00 0.07 par:pas; +replâtra replâtrer VER 0.03 0.81 0.00 0.14 ind:pas:3s; +replâtrage replâtrage NOM m s 0.00 0.34 0.00 0.34 +replâtraient replâtrer VER 0.03 0.81 0.00 0.07 ind:imp:3p; +replâtrer replâtrer VER 0.03 0.81 0.01 0.14 inf; +replâtrerait replâtrer VER 0.03 0.81 0.00 0.07 cnd:pre:3s; +replâtré replâtrer VER m s 0.03 0.81 0.00 0.14 par:pas; +replâtrée replâtrer VER f s 0.03 0.81 0.01 0.20 par:pas; +replâtrées replâtrer VER f p 0.03 0.81 0.00 0.07 par:pas; +reployait reployer VER 0.00 0.07 0.00 0.07 ind:imp:3s; +replète replet ADJ f s 0.14 1.62 0.11 0.68 +replètes replet ADJ f p 0.14 1.62 0.00 0.07 +report report NOM m s 1.03 0.27 0.61 0.14 +reporta reporter VER 5.32 7.70 0.03 0.88 ind:pas:3s; +reportage_vérité reportage_vérité NOM m s 0.00 0.14 0.00 0.14 +reportage reportage NOM m s 11.16 7.16 10.07 5.07 +reportages reportage NOM m p 11.16 7.16 1.09 2.09 +reportait reporter VER 5.32 7.70 0.03 0.81 ind:imp:3s; +reportant reporter VER 5.32 7.70 0.01 0.61 par:pre; +reporte reporter VER 5.32 7.70 0.57 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reportent reporter VER 5.32 7.70 0.09 0.07 ind:pre:3p; +reporter reporter NOM m s 5.12 3.04 3.01 1.49 +reportera reporter VER 5.32 7.70 0.04 0.00 ind:fut:3s; +reporterai reporter VER 5.32 7.70 0.02 0.00 ind:fut:1s; +reporterait reporter VER 5.32 7.70 0.01 0.07 cnd:pre:3s; +reporters reporter NOM m p 5.12 3.04 2.11 1.55 +reportez reporter VER 5.32 7.70 0.38 0.07 imp:pre:2p;ind:pre:2p; +reportons reporter VER 5.32 7.70 0.07 0.07 imp:pre:1p;ind:pre:1p; +reports report NOM m p 1.03 0.27 0.43 0.14 +reportèrent reporter VER 5.32 7.70 0.00 0.14 ind:pas:3p; +reporté reporter VER m s 5.32 7.70 0.90 1.69 par:pas; +reportée reporter VER f s 5.32 7.70 0.74 0.47 par:pas; +reportées reporter VER f p 5.32 7.70 0.03 0.14 par:pas; +reportés reporter VER m p 5.32 7.70 0.05 0.14 par:pas; +repos repos NOM m 42.29 43.58 42.29 43.58 +reposa reposer VER 95.19 83.92 0.03 7.16 ind:pas:3s; +reposai reposer VER 95.19 83.92 0.00 0.41 ind:pas:1s; +reposaient reposer VER 95.19 83.92 0.07 5.00 ind:imp:3p; +reposais reposer VER 95.19 83.92 0.58 0.41 ind:imp:1s;ind:imp:2s; +reposait reposer VER 95.19 83.92 1.05 15.41 ind:imp:3s; +reposant reposant ADJ m s 1.14 3.58 0.84 1.96 +reposante reposant ADJ f s 1.14 3.58 0.25 1.28 +reposantes reposant ADJ f p 1.14 3.58 0.04 0.27 +reposants reposant ADJ m p 1.14 3.58 0.02 0.07 +repose_pied repose_pied NOM m s 0.02 0.07 0.01 0.00 +repose_pied repose_pied NOM m p 0.02 0.07 0.01 0.07 +repose reposer VER 95.19 83.92 33.27 14.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +reposent reposer VER 95.19 83.92 3.26 4.39 ind:pre:3p; +reposer reposer VER 95.19 83.92 39.81 20.95 inf;; +reposera reposer VER 95.19 83.92 1.06 0.47 ind:fut:3s; +reposerai reposer VER 95.19 83.92 0.24 0.14 ind:fut:1s; +reposeraient reposer VER 95.19 83.92 0.00 0.07 cnd:pre:3p; +reposerais reposer VER 95.19 83.92 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +reposerait reposer VER 95.19 83.92 0.01 0.54 cnd:pre:3s; +reposeras reposer VER 95.19 83.92 0.55 0.27 ind:fut:2s; +reposerez reposer VER 95.19 83.92 0.28 0.00 ind:fut:2p; +reposerions reposer VER 95.19 83.92 0.00 0.07 cnd:pre:1p; +reposerons reposer VER 95.19 83.92 0.37 0.14 ind:fut:1p; +reposeront reposer VER 95.19 83.92 0.18 0.07 ind:fut:3p; +reposes reposer VER 95.19 83.92 2.45 0.34 ind:pre:2s;sub:pre:2s; +reposez reposer VER 95.19 83.92 7.81 0.74 imp:pre:2p;ind:pre:2p; +reposiez reposer VER 95.19 83.92 0.39 0.00 ind:imp:2p; +reposions reposer VER 95.19 83.92 0.05 0.20 ind:imp:1p; +repositionnent repositionner VER 0.20 0.00 0.03 0.00 ind:pre:3p; +repositionner repositionner VER 0.20 0.00 0.17 0.00 inf; +repositionnez repositionner VER 0.20 0.00 0.01 0.00 imp:pre:2p; +reposoir reposoir NOM m s 0.17 1.01 0.17 0.81 +reposoirs reposoir NOM m p 0.17 1.01 0.00 0.20 +reposons reposer VER 95.19 83.92 1.04 0.27 imp:pre:1p;ind:pre:1p; +reposât reposer VER 95.19 83.92 0.00 0.14 sub:imp:3s; +reposséder reposséder VER 0.03 0.00 0.03 0.00 inf; +repostait reposter VER 0.00 0.07 0.00 0.07 ind:imp:3s; +reposèrent reposer VER 95.19 83.92 0.00 0.41 ind:pas:3p; +reposé reposer VER m s 95.19 83.92 0.76 3.38 par:pas; +reposée reposer VER f s 95.19 83.92 1.16 1.62 par:pas; +reposées reposer VER f p 95.19 83.92 0.03 0.27 par:pas; +reposés reposer VER m p 95.19 83.92 0.29 0.61 par:pas; +repoudraient repoudrer VER 0.43 0.41 0.00 0.07 ind:imp:3p; +repoudrait repoudrer VER 0.43 0.41 0.00 0.14 ind:imp:3s; +repoudrant repoudrer VER 0.43 0.41 0.00 0.14 par:pre; +repoudre repoudrer VER 0.43 0.41 0.04 0.00 imp:pre:2s;ind:pre:1s; +repoudrer repoudrer VER 0.43 0.41 0.37 0.00 inf; +repoudré repoudrer VER m s 0.43 0.41 0.02 0.00 par:pas; +repoudrée repoudrer VER f s 0.43 0.41 0.00 0.07 par:pas; +repoussa repousser VER 22.62 63.45 0.03 11.15 ind:pas:3s; +repoussage repoussage NOM m s 0.02 0.00 0.02 0.00 +repoussai repousser VER 22.62 63.45 0.01 1.01 ind:pas:1s; +repoussaient repousser VER 22.62 63.45 0.06 1.49 ind:imp:3p; +repoussais repousser VER 22.62 63.45 0.13 0.74 ind:imp:1s;ind:imp:2s; +repoussait repousser VER 22.62 63.45 0.22 6.22 ind:imp:3s; +repoussant repoussant ADJ m s 2.29 2.57 1.33 1.22 +repoussante repoussant ADJ f s 2.29 2.57 0.87 0.81 +repoussantes repoussant ADJ f p 2.29 2.57 0.03 0.14 +repoussants repoussant ADJ m p 2.29 2.57 0.07 0.41 +repousse repousser VER 22.62 63.45 6.53 9.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repoussent repousser VER 22.62 63.45 0.59 0.95 ind:pre:3p; +repousser repousser VER 22.62 63.45 6.14 12.03 inf; +repoussera repousser VER 22.62 63.45 0.79 0.07 ind:fut:3s; +repousserai repousser VER 22.62 63.45 0.04 0.07 ind:fut:1s; +repousseraient repousser VER 22.62 63.45 0.01 0.41 cnd:pre:3p; +repousserais repousser VER 22.62 63.45 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +repousserait repousser VER 22.62 63.45 0.17 0.14 cnd:pre:3s; +repousserons repousser VER 22.62 63.45 0.14 0.07 ind:fut:1p; +repousseront repousser VER 22.62 63.45 0.42 0.27 ind:fut:3p; +repousses repousser VER 22.62 63.45 0.51 0.07 ind:pre:2s; +repoussez repousser VER 22.62 63.45 0.96 0.07 imp:pre:2p;ind:pre:2p; +repoussions repousser VER 22.62 63.45 0.03 0.07 ind:imp:1p; +repoussoir repoussoir NOM m s 0.01 0.68 0.00 0.47 +repoussoirs repoussoir NOM m p 0.01 0.68 0.01 0.20 +repoussâmes repousser VER 22.62 63.45 0.00 0.14 ind:pas:1p; +repoussons repousser VER 22.62 63.45 0.15 0.07 imp:pre:1p;ind:pre:1p; +repoussât repousser VER 22.62 63.45 0.00 0.07 sub:imp:3s; +repoussèrent repousser VER 22.62 63.45 0.05 0.41 ind:pas:3p; +repoussé repousser VER m s 22.62 63.45 3.31 7.36 par:pas; +repoussée repousser VER f s 22.62 63.45 1.01 2.30 par:pas; +repoussées repousser VER f p 22.62 63.45 0.13 0.68 par:pas; +repoussés repousser VER m p 22.62 63.45 0.62 1.42 par:pas; +reprîmes reprendre VER 126.91 340.14 0.00 0.61 ind:pas:1p; +reprît reprendre VER 126.91 340.14 0.00 0.81 sub:imp:3s; +reprenaient reprendre VER 126.91 340.14 0.14 5.88 ind:imp:3p; +reprenais reprendre VER 126.91 340.14 0.40 3.18 ind:imp:1s;ind:imp:2s; +reprenait reprendre VER 126.91 340.14 0.75 27.36 ind:imp:3s; +reprenant reprendre VER 126.91 340.14 0.35 13.92 par:pre; +reprend reprendre VER 126.91 340.14 14.24 31.35 ind:pre:3s; +reprendra reprendre VER 126.91 340.14 4.04 2.03 ind:fut:3s; +reprendrai reprendre VER 126.91 340.14 1.86 1.01 ind:fut:1s; +reprendraient reprendre VER 126.91 340.14 0.32 0.68 cnd:pre:3p; +reprendrais reprendre VER 126.91 340.14 0.67 0.47 cnd:pre:1s;cnd:pre:2s; +reprendrait reprendre VER 126.91 340.14 0.17 2.36 cnd:pre:3s; +reprendras reprendre VER 126.91 340.14 0.49 0.07 ind:fut:2s; +reprendre reprendre VER 126.91 340.14 36.98 67.70 inf; +reprendrez reprendre VER 126.91 340.14 0.72 0.47 ind:fut:2p; +reprendriez reprendre VER 126.91 340.14 0.02 0.07 cnd:pre:2p; +reprendrions reprendre VER 126.91 340.14 0.01 0.14 cnd:pre:1p; +reprendrons reprendre VER 126.91 340.14 1.88 0.88 ind:fut:1p; +reprendront reprendre VER 126.91 340.14 0.89 0.34 ind:fut:3p; +reprends reprendre VER 126.91 340.14 20.08 7.16 imp:pre:2s;ind:pre:1s;ind:pre:2s; +repreneur repreneur NOM m s 0.04 0.07 0.03 0.00 +repreneurs repreneur NOM m p 0.04 0.07 0.01 0.07 +reprenez reprendre VER 126.91 340.14 9.97 1.15 imp:pre:2p;ind:pre:2p; +repreniez reprendre VER 126.91 340.14 0.53 0.14 ind:imp:2p; +reprenions reprendre VER 126.91 340.14 0.20 0.68 ind:imp:1p; +reprenne reprendre VER 126.91 340.14 3.42 4.12 sub:pre:1s;sub:pre:3s; +reprennent reprendre VER 126.91 340.14 3.13 5.54 ind:pre:3p; +reprennes reprendre VER 126.91 340.14 0.93 0.27 sub:pre:2s; +reprenons reprendre VER 126.91 340.14 5.59 2.09 imp:pre:1p;ind:pre:1p; +reprirent reprendre VER 126.91 340.14 0.12 6.49 ind:pas:3p; +repris reprendre VER m 126.91 340.14 16.65 51.55 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +reprisaient repriser VER 0.64 4.66 0.00 0.07 ind:imp:3p; +reprisait repriser VER 0.64 4.66 0.01 0.74 ind:imp:3s; +reprisant repriser VER 0.64 4.66 0.01 0.14 par:pre; +reprise reprise NOM f s 6.23 36.42 2.27 8.38 +reprisent repriser VER 0.64 4.66 0.01 0.07 ind:pre:3p; +repriser repriser VER 0.64 4.66 0.25 1.76 inf; +reprises reprise NOM f p 6.23 36.42 3.96 28.04 +reprisse reprendre VER 126.91 340.14 0.00 0.07 sub:imp:1s; +reprissent reprendre VER 126.91 340.14 0.00 0.14 sub:imp:3p; +reprisé repriser VER m s 0.64 4.66 0.01 0.74 par:pas; +reprisée repriser VER f s 0.64 4.66 0.01 0.20 par:pas; +reprisées repriser VER f p 0.64 4.66 0.00 0.27 par:pas; +reprisés repriser VER m p 0.64 4.66 0.00 0.41 par:pas; +reprit reprendre VER 126.91 340.14 0.52 96.01 ind:pas:3s; +reprocha reprocher VER 19.85 44.73 0.04 2.30 ind:pas:3s; +reprochai reprocher VER 19.85 44.73 0.00 0.61 ind:pas:1s; +reprochaient reprocher VER 19.85 44.73 0.01 1.01 ind:imp:3p; +reprochais reprocher VER 19.85 44.73 0.17 1.69 ind:imp:1s;ind:imp:2s; +reprochait reprocher VER 19.85 44.73 0.54 10.27 ind:imp:3s; +reprochant reprocher VER 19.85 44.73 0.01 1.01 par:pre; +reproche reprocher VER 19.85 44.73 5.05 6.82 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +reprochent reprocher VER 19.85 44.73 0.20 0.54 ind:pre:3p; +reprocher reprocher VER 19.85 44.73 7.53 11.76 inf; +reprochera reprocher VER 19.85 44.73 0.48 0.34 ind:fut:3s; +reprocherai reprocher VER 19.85 44.73 0.39 0.00 ind:fut:1s; +reprocherais reprocher VER 19.85 44.73 0.05 0.27 cnd:pre:1s; +reprocherait reprocher VER 19.85 44.73 0.20 0.47 cnd:pre:3s; +reprocheras reprocher VER 19.85 44.73 0.13 0.14 ind:fut:2s; +reprocheriez reprocher VER 19.85 44.73 0.01 0.14 cnd:pre:2p; +reprocherons reprocher VER 19.85 44.73 0.00 0.07 ind:fut:1p; +reprocheront reprocher VER 19.85 44.73 0.03 0.07 ind:fut:3p; +reproches reproche NOM m p 6.01 30.68 3.13 13.31 +reprochez reprocher VER 19.85 44.73 1.21 1.08 imp:pre:2p;ind:pre:2p; +reprochiez reprocher VER 19.85 44.73 0.05 0.00 ind:imp:2p; +reprochions reprocher VER 19.85 44.73 0.00 0.34 ind:imp:1p; +reprochons reprocher VER 19.85 44.73 0.10 0.07 ind:pre:1p; +reprochât reprocher VER 19.85 44.73 0.00 0.20 sub:imp:3s; +reprochèrent reprocher VER 19.85 44.73 0.00 0.07 ind:pas:3p; +reproché reprocher VER m s 19.85 44.73 1.26 3.58 par:pas; +reprochée reprocher VER f s 19.85 44.73 0.07 0.20 par:pas; +reprochées reprocher VER f p 19.85 44.73 0.01 0.20 par:pas; +reprochés reprocher VER m p 19.85 44.73 0.24 0.68 par:pas; +reproducteur reproducteur NOM m s 0.53 0.27 0.29 0.14 +reproducteurs reproducteur NOM m p 0.53 0.27 0.23 0.00 +reproductible reproductible ADJ m s 0.00 0.07 0.00 0.07 +reproductif reproductif ADJ m s 0.15 0.20 0.12 0.20 +reproductifs reproductif ADJ m p 0.15 0.20 0.02 0.00 +reproduction reproduction NOM f s 4.24 7.97 4.08 5.34 +reproductions reproduction NOM f p 4.24 7.97 0.16 2.64 +reproductive reproductif ADJ f s 0.15 0.20 0.01 0.00 +reproductrice reproducteur ADJ f s 0.20 0.27 0.03 0.07 +reproductrices reproductrice NOM f p 0.10 0.00 0.10 0.00 +reproduira reproduire VER 16.31 16.01 4.27 0.41 ind:fut:3s; +reproduirai reproduire VER 16.31 16.01 0.05 0.14 ind:fut:1s; +reproduiraient reproduire VER 16.31 16.01 0.00 0.07 cnd:pre:3p; +reproduirait reproduire VER 16.31 16.01 0.23 0.14 cnd:pre:3s; +reproduire reproduire VER 16.31 16.01 4.68 4.73 inf; +reproduirons reproduire VER 16.31 16.01 0.02 0.00 ind:fut:1p; +reproduiront reproduire VER 16.31 16.01 0.20 0.14 ind:fut:3p; +reproduis reproduire VER 16.31 16.01 0.39 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reproduisît reproduire VER 16.31 16.01 0.00 0.14 sub:imp:3s; +reproduisaient reproduire VER 16.31 16.01 0.04 0.34 ind:imp:3p; +reproduisait reproduire VER 16.31 16.01 0.11 1.55 ind:imp:3s; +reproduisant reproduire VER 16.31 16.01 0.13 1.49 par:pre; +reproduise reproduire VER 16.31 16.01 1.70 0.27 sub:pre:1s;sub:pre:3s; +reproduisent reproduire VER 16.31 16.01 1.03 0.95 ind:pre:3p; +reproduisez reproduire VER 16.31 16.01 0.02 0.00 imp:pre:2p; +reproduisirent reproduire VER 16.31 16.01 0.00 0.07 ind:pas:3p; +reproduisit reproduire VER 16.31 16.01 0.01 0.20 ind:pas:3s; +reproduisons reproduire VER 16.31 16.01 0.02 0.07 ind:pre:1p; +reproduit reproduire VER m s 16.31 16.01 2.98 3.11 ind:pre:3s;par:pas; +reproduite reproduire VER f s 16.31 16.01 0.12 0.68 par:pas; +reproduites reproduire VER f p 16.31 16.01 0.15 0.61 par:pas; +reproduits reproduire VER m p 16.31 16.01 0.15 0.61 par:pas; +reprogrammant reprogrammer VER 1.11 0.00 0.01 0.00 par:pre; +reprogramme reprogrammer VER 1.11 0.00 0.14 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +reprogramment reprogrammer VER 1.11 0.00 0.03 0.00 ind:pre:3p; +reprogrammer reprogrammer VER 1.11 0.00 0.70 0.00 inf; +reprogrammera reprogrammer VER 1.11 0.00 0.02 0.00 ind:fut:3s; +reprogrammé reprogrammer VER m s 1.11 0.00 0.15 0.00 par:pas; +reprogrammée reprogrammer VER f s 1.11 0.00 0.04 0.00 par:pas; +reprogrammés reprogrammer VER m p 1.11 0.00 0.01 0.00 par:pas; +reprographie reprographie NOM f s 0.08 0.07 0.08 0.07 +reproposer reproposer VER 0.01 0.00 0.01 0.00 inf; +représaille représailles NOM f s 3.08 4.93 0.01 0.07 +représailles représailles NOM f p 3.08 4.93 3.07 4.86 +représenta représenter VER 48.78 85.54 0.16 0.95 ind:pas:3s; +représentai représenter VER 48.78 85.54 0.00 0.27 ind:pas:1s; +représentaient représenter VER 48.78 85.54 0.56 5.47 ind:imp:3p; +représentais représenter VER 48.78 85.54 0.32 1.15 ind:imp:1s;ind:imp:2s; +représentait représenter VER 48.78 85.54 2.57 19.12 ind:imp:3s; +représentant représentant NOM m s 10.81 25.88 6.28 12.30 +représentante représentant NOM f s 10.81 25.88 0.80 0.41 +représentantes représentant NOM f p 10.81 25.88 0.13 0.07 +représentants représentant NOM m p 10.81 25.88 3.59 13.11 +représentatif représentatif ADJ m s 1.06 2.16 0.46 0.61 +représentatifs représentatif ADJ m p 1.06 2.16 0.09 0.61 +représentation représentation NOM f s 8.67 18.99 7.61 16.08 +représentations représentation NOM f p 8.67 18.99 1.07 2.91 +représentative représentatif ADJ f s 1.06 2.16 0.48 0.54 +représentatives représentatif ADJ f p 1.06 2.16 0.04 0.41 +représente représenter VER 48.78 85.54 23.52 17.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +représentent représenter VER 48.78 85.54 3.63 3.78 ind:pre:3p;sub:pre:3p; +représenter représenter VER 48.78 85.54 5.38 11.08 inf; +représentera représenter VER 48.78 85.54 0.71 0.61 ind:fut:3s; +représenterai représenter VER 48.78 85.54 0.10 0.00 ind:fut:1s; +représenteraient représenter VER 48.78 85.54 0.02 0.07 cnd:pre:3p; +représenterais représenter VER 48.78 85.54 0.03 0.07 cnd:pre:1s;cnd:pre:2s; +représenterait représenter VER 48.78 85.54 0.14 0.41 cnd:pre:3s; +représenteras représenter VER 48.78 85.54 0.05 0.00 ind:fut:2s; +représenterez représenter VER 48.78 85.54 0.06 0.00 ind:fut:2p; +représenteront représenter VER 48.78 85.54 0.11 0.07 ind:fut:3p; +représentes représenter VER 48.78 85.54 1.76 0.34 ind:pre:2s; +représentez représenter VER 48.78 85.54 2.12 0.34 imp:pre:2p;ind:pre:2p; +représentiez représenter VER 48.78 85.54 0.11 0.07 ind:imp:2p; +représentions représenter VER 48.78 85.54 0.04 0.20 ind:imp:1p; +représentons représenter VER 48.78 85.54 1.09 0.47 imp:pre:1p;ind:pre:1p; +représentât représenter VER 48.78 85.54 0.00 0.14 sub:imp:3s; +représentèrent représenter VER 48.78 85.54 0.00 0.07 ind:pas:3p; +représenté représenter VER m s 48.78 85.54 1.58 3.38 par:pas; +représentée représenter VER f s 48.78 85.54 1.42 1.49 par:pas; +représentées représenter VER f p 48.78 85.54 0.18 0.47 par:pas; +représentés représenter VER m p 48.78 85.54 0.81 1.49 par:pas; +reps reps NOM m 0.01 1.49 0.01 1.49 +reptation reptation NOM f s 0.00 0.88 0.00 0.74 +reptations reptation NOM f p 0.00 0.88 0.00 0.14 +repère repère NOM m s 3.52 9.59 2.44 5.34 +repèrent repérer VER 27.23 31.15 0.71 0.27 ind:pre:3p; +repères repère NOM m p 3.52 9.59 1.09 4.26 +reptile reptile NOM m s 3.46 2.36 1.90 1.01 +reptiles reptile NOM m p 3.46 2.36 1.56 1.35 +reptilien reptilien ADJ m s 0.16 0.47 0.07 0.07 +reptilienne reptilien ADJ f s 0.16 0.47 0.07 0.20 +reptiliennes reptilien ADJ f p 0.16 0.47 0.01 0.07 +reptiliens reptilien ADJ m p 0.16 0.47 0.00 0.14 +repu repu ADJ m s 1.10 3.18 0.54 1.49 +republication republication NOM f s 0.01 0.00 0.01 0.00 +republier republier VER 0.01 0.07 0.00 0.07 inf; +republions republier VER 0.01 0.07 0.01 0.00 imp:pre:1p; +repêcha repêcher VER 3.27 4.05 0.00 0.20 ind:pas:3s; +repêchage repêchage NOM m s 0.16 0.27 0.15 0.20 +repêchages repêchage NOM m p 0.16 0.27 0.01 0.07 +repêchai repêcher VER 3.27 4.05 0.00 0.14 ind:pas:1s; +repêchait repêcher VER 3.27 4.05 0.01 0.34 ind:imp:3s; +repêchant repêcher VER 3.27 4.05 0.01 0.00 par:pre; +repêche repêcher VER 3.27 4.05 0.39 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +repêcher repêcher VER 3.27 4.05 0.91 1.08 inf; +repêchera repêcher VER 3.27 4.05 0.11 0.07 ind:fut:3s; +repêcherait repêcher VER 3.27 4.05 0.02 0.07 cnd:pre:3s; +repêches repêcher VER 3.27 4.05 0.00 0.07 ind:pre:2s; +repêchèrent repêcher VER 3.27 4.05 0.00 0.07 ind:pas:3p; +repêché repêcher VER m s 3.27 4.05 1.27 0.81 par:pas; +repêchée repêcher VER f s 3.27 4.05 0.36 0.27 par:pas; +repêchées repêcher VER f p 3.27 4.05 0.00 0.07 par:pas; +repêchés repêcher VER m p 3.27 4.05 0.20 0.07 par:pas; +repue repu ADJ f s 1.10 3.18 0.17 0.47 +repues repu ADJ f p 1.10 3.18 0.14 0.27 +repuiser repuiser VER 0.00 0.07 0.00 0.07 inf; +repéra repérer VER 27.23 31.15 0.02 1.35 ind:pas:3s; +repérable repérable ADJ s 0.21 1.22 0.16 0.95 +repérables repérable ADJ f p 0.21 1.22 0.05 0.27 +repérage repérage NOM m s 1.75 1.15 1.62 0.88 +repérages repérage NOM m p 1.75 1.15 0.14 0.27 +repéraient repérer VER 27.23 31.15 0.00 0.20 ind:imp:3p; +repérais repérer VER 27.23 31.15 0.05 0.14 ind:imp:1s; +repérait repérer VER 27.23 31.15 0.08 1.22 ind:imp:3s; +repérant repérer VER 27.23 31.15 0.02 0.47 par:pre; +repérer repérer VER 27.23 31.15 7.92 9.93 inf; +repérera repérer VER 27.23 31.15 0.14 0.00 ind:fut:3s; +repérerai repérer VER 27.23 31.15 0.02 0.00 ind:fut:1s; +repéreraient repérer VER 27.23 31.15 0.01 0.07 cnd:pre:3p; +repérerais repérer VER 27.23 31.15 0.01 0.00 cnd:pre:2s; +repérerait repérer VER 27.23 31.15 0.01 0.07 cnd:pre:3s; +repérerons repérer VER 27.23 31.15 0.01 0.00 ind:fut:1p; +repéreront repérer VER 27.23 31.15 0.07 0.07 ind:fut:3p; +repéreur repéreur NOM m s 0.05 0.00 0.05 0.00 +repérez repérer VER 27.23 31.15 0.75 0.00 imp:pre:2p;ind:pre:2p; +repériez repérer VER 27.23 31.15 0.03 0.00 ind:imp:2p; +repérions repérer VER 27.23 31.15 0.00 0.20 ind:imp:1p; +repérèrent repérer VER 27.23 31.15 0.00 0.20 ind:pas:3p; +repéré repérer VER m s 27.23 31.15 9.98 10.27 par:pas; +repérée repérer VER f s 27.23 31.15 1.44 1.49 par:pas; +repérées repérer VER f p 27.23 31.15 0.11 0.34 par:pas; +repérés repérer VER m p 27.23 31.15 3.52 2.30 par:pas; +repus repu ADJ m p 1.10 3.18 0.25 0.95 +repétrir repétrir VER 0.00 0.20 0.00 0.07 inf; +repétrissait repétrir VER 0.00 0.20 0.00 0.07 ind:imp:3s; +repétrit repétrir VER 0.00 0.20 0.00 0.07 ind:pas:3s; +requalifier requalifier VER 0.01 0.00 0.01 0.00 inf; +requiem requiem NOM m s 2.76 0.68 2.76 0.61 +requiems requiem NOM m p 2.76 0.68 0.00 0.07 +requiers requérir VER 6.24 6.35 0.76 0.00 ind:pre:1s; +requiert requérir VER 6.24 6.35 2.33 0.95 ind:pre:3s; +requiescat_in_pace requiescat_in_pace NOM m s 0.00 0.07 0.00 0.07 +requin_baleine requin_baleine NOM m s 0.01 0.00 0.01 0.00 +requin_tigre requin_tigre NOM m s 0.04 0.00 0.04 0.00 +requin requin NOM m s 12.24 4.80 8.15 1.62 +requinqua requinquer VER 1.30 1.89 0.00 0.20 ind:pas:3s; +requinquait requinquer VER 1.30 1.89 0.00 0.07 ind:imp:3s; +requinque requinquer VER 1.30 1.89 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +requinquent requinquer VER 1.30 1.89 0.01 0.07 ind:pre:3p; +requinquer requinquer VER 1.30 1.89 0.66 0.27 inf; +requinquera requinquer VER 1.30 1.89 0.19 0.00 ind:fut:3s; +requinquerait requinquer VER 1.30 1.89 0.02 0.00 cnd:pre:3s; +requinqué requinquer VER m s 1.30 1.89 0.04 0.81 par:pas; +requinquée requinquer VER f s 1.30 1.89 0.03 0.20 par:pas; +requinqués requinquer VER m p 1.30 1.89 0.14 0.00 par:pas; +requin_marteau requin_marteau NOM m p 0.00 0.07 0.00 0.07 +requins requin NOM m p 12.24 4.80 4.09 3.18 +requis requérir VER m 6.24 6.35 1.63 2.57 par:pas; +requise requis ADJ f s 1.17 0.68 0.61 0.20 +requises requis ADJ f p 1.17 0.68 0.45 0.27 +requière requérir VER 6.24 6.35 0.10 0.00 sub:pre:3s; +requièrent requérir VER 6.24 6.35 0.20 0.41 ind:pre:3p; +requéraient requérir VER 6.24 6.35 0.00 0.14 ind:imp:3p; +requérais requérir VER 6.24 6.35 0.00 0.07 ind:imp:1s; +requérait requérir VER 6.24 6.35 0.03 0.47 ind:imp:3s; +requérant requérir VER 6.24 6.35 0.13 0.20 par:pre; +requérante requérant NOM f s 0.16 0.00 0.02 0.00 +requérants requérant NOM m p 0.16 0.00 0.01 0.00 +requérir requérir VER 6.24 6.35 0.14 0.41 inf; +requérons requérir VER 6.24 6.35 0.04 0.07 imp:pre:1p;ind:pre:1p; +requête requête NOM f s 8.82 1.96 7.75 1.69 +requêtes requête NOM f p 8.82 1.96 1.07 0.27 +resalir resalir VER 0.01 0.00 0.01 0.00 inf; +resape resaper VER 0.00 0.34 0.00 0.07 ind:pre:1s; +resapent resaper VER 0.00 0.34 0.00 0.07 ind:pre:3p; +resapée resaper VER f s 0.00 0.34 0.00 0.14 par:pas; +resapés resaper VER m p 0.00 0.34 0.00 0.07 par:pas; +rescaper rescaper VER 0.34 1.82 0.00 0.07 inf; +rescapes rescaper VER 0.34 1.82 0.03 0.00 ind:pre:2s; +rescapé rescapé NOM m s 1.70 4.93 0.89 1.69 +rescapée rescapé NOM f s 1.70 4.93 0.18 0.47 +rescapées rescapé ADJ f p 0.12 1.89 0.00 0.27 +rescapés rescapé NOM m p 1.70 4.93 0.63 2.70 +rescision rescision NOM f s 0.00 0.07 0.00 0.07 +rescousse rescousse NOM f s 1.43 3.18 1.43 3.18 +rescrit rescrit NOM m s 0.00 0.14 0.00 0.14 +reservir reservir VER 0.04 0.00 0.04 0.00 inf; +reset reset NOM m s 0.05 0.00 0.05 0.00 +resocialisation resocialisation NOM f s 0.01 0.00 0.01 0.00 +resongeait resonger VER 0.00 0.27 0.00 0.14 ind:imp:3s; +resonger resonger VER 0.00 0.27 0.00 0.14 inf; +respect respect NOM m s 54.78 43.85 50.47 42.43 +respecta respecter VER 65.41 33.58 0.01 0.20 ind:pas:3s; +respectabilité respectabilité NOM f s 1.22 2.30 1.22 2.30 +respectable respectable ADJ s 7.03 6.82 5.73 5.20 +respectables respectable ADJ p 7.03 6.82 1.30 1.62 +respectai respecter VER 65.41 33.58 0.00 0.07 ind:pas:1s; +respectaient respecter VER 65.41 33.58 0.34 1.49 ind:imp:3p; +respectais respecter VER 65.41 33.58 0.75 0.88 ind:imp:1s;ind:imp:2s; +respectait respecter VER 65.41 33.58 1.49 3.45 ind:imp:3s; +respectant respecter VER 65.41 33.58 0.66 1.89 par:pre; +respecte respecter VER 65.41 33.58 21.80 6.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +respectent respecter VER 65.41 33.58 4.49 1.69 ind:pre:3p; +respecter respecter VER 65.41 33.58 17.54 10.14 inf; +respectera respecter VER 65.41 33.58 0.67 0.41 ind:fut:3s; +respecterai respecter VER 65.41 33.58 0.58 0.00 ind:fut:1s; +respecteraient respecter VER 65.41 33.58 0.01 0.07 cnd:pre:3p; +respecterais respecter VER 65.41 33.58 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +respecterait respecter VER 65.41 33.58 0.14 0.20 cnd:pre:3s; +respecteras respecter VER 65.41 33.58 0.68 0.00 ind:fut:2s; +respecterez respecter VER 65.41 33.58 0.16 0.00 ind:fut:2p; +respecterons respecter VER 65.41 33.58 0.31 0.07 ind:fut:1p; +respecteront respecter VER 65.41 33.58 0.53 0.07 ind:fut:3p; +respectes respecter VER 65.41 33.58 2.68 0.27 ind:pre:2s; +respectez respecter VER 65.41 33.58 3.22 0.95 imp:pre:2p;ind:pre:2p; +respectiez respecter VER 65.41 33.58 0.33 0.07 ind:imp:2p; +respectif respectif ADJ m s 1.17 7.70 0.02 0.41 +respectifs respectif ADJ m p 1.17 7.70 0.63 3.92 +respections respecter VER 65.41 33.58 0.06 0.34 ind:imp:1p; +respective respectif ADJ f s 1.17 7.70 0.03 0.54 +respectivement respectivement ADV 0.16 4.26 0.16 4.26 +respectives respectif ADJ f p 1.17 7.70 0.49 2.84 +respectons respecter VER 65.41 33.58 1.75 0.34 imp:pre:1p;ind:pre:1p; +respectât respecter VER 65.41 33.58 0.00 0.20 sub:imp:3s; +respects respect NOM m p 54.78 43.85 4.32 1.42 +respecté respecter VER m s 65.41 33.58 4.79 2.84 par:pas; +respectée respecter VER f s 65.41 33.58 1.10 0.81 par:pas; +respectées respecter VER f p 65.41 33.58 0.68 0.41 par:pas; +respectueuse respectueux ADJ f s 4.17 8.92 0.52 3.18 +respectueusement respectueusement ADV 0.79 3.85 0.79 3.85 +respectueuses respectueux ADJ f p 4.17 8.92 0.17 0.34 +respectueux respectueux ADJ m 4.17 8.92 3.47 5.41 +respectés respecté ADJ m p 3.58 3.45 0.65 0.74 +respir respir NOM m s 0.00 0.14 0.00 0.14 +respira respirer VER 76.08 102.43 0.11 8.78 ind:pas:3s; +respirable respirable ADJ s 0.45 0.88 0.44 0.81 +respirables respirable ADJ m p 0.45 0.88 0.01 0.07 +respirai respirer VER 76.08 102.43 0.02 1.01 ind:pas:1s; +respiraient respirer VER 76.08 102.43 0.03 1.28 ind:imp:3p; +respirais respirer VER 76.08 102.43 0.86 4.32 ind:imp:1s;ind:imp:2s; +respirait respirer VER 76.08 102.43 2.40 17.43 ind:imp:3s; +respirant respirer VER 76.08 102.43 0.69 7.57 par:pre; +respirateur respirateur NOM m s 1.68 0.34 1.64 0.34 +respirateurs respirateur NOM m p 1.68 0.34 0.04 0.00 +respiration respiration NOM f s 9.56 31.82 9.19 28.65 +respirations respiration NOM f p 9.56 31.82 0.38 3.18 +respiratoire respiratoire ADJ s 3.73 1.49 2.26 0.88 +respiratoires respiratoire ADJ p 3.73 1.49 1.48 0.61 +respire respirer VER 76.08 102.43 29.20 17.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +respirent respirer VER 76.08 102.43 1.17 2.09 ind:pre:3p; +respirer respirer VER 76.08 102.43 27.58 33.51 inf; +respirera respirer VER 76.08 102.43 0.11 0.20 ind:fut:3s; +respirerai respirer VER 76.08 102.43 0.08 0.34 ind:fut:1s; +respirerais respirer VER 76.08 102.43 0.04 0.14 cnd:pre:1s; +respirerait respirer VER 76.08 102.43 0.11 0.27 cnd:pre:3s; +respireras respirer VER 76.08 102.43 0.16 0.00 ind:fut:2s; +respirerez respirer VER 76.08 102.43 0.02 0.00 ind:fut:2p; +respirerons respirer VER 76.08 102.43 0.00 0.07 ind:fut:1p; +respireront respirer VER 76.08 102.43 0.05 0.07 ind:fut:3p; +respires respirer VER 76.08 102.43 1.88 0.54 ind:pre:2s; +respirez respirer VER 76.08 102.43 9.23 0.68 imp:pre:2p;ind:pre:2p; +respiriez respirer VER 76.08 102.43 0.11 0.00 ind:imp:2p; +respirions respirer VER 76.08 102.43 0.14 0.34 ind:imp:1p; +respirons respirer VER 76.08 102.43 0.96 1.15 imp:pre:1p;ind:pre:1p; +respirât respirer VER 76.08 102.43 0.00 0.07 sub:imp:3s; +respirèrent respirer VER 76.08 102.43 0.01 0.07 ind:pas:3p; +respiré respirer VER m s 76.08 102.43 1.07 4.12 par:pas; +respirée respirer VER f s 76.08 102.43 0.02 0.41 par:pas; +respirées respirer VER f p 76.08 102.43 0.01 0.07 par:pas; +respirés respirer VER m p 76.08 102.43 0.03 0.14 par:pas; +resplendi resplendir VER m s 2.42 4.66 0.00 0.14 par:pas; +resplendir resplendir VER 2.42 4.66 0.32 0.61 inf; +resplendira resplendir VER 2.42 4.66 0.58 0.00 ind:fut:3s; +resplendiraient resplendir VER 2.42 4.66 0.00 0.07 cnd:pre:3p; +resplendirent resplendir VER 2.42 4.66 0.00 0.07 ind:pas:3p; +resplendis resplendir VER 2.42 4.66 0.11 0.07 ind:pre:1s;ind:pre:2s; +resplendissaient resplendir VER 2.42 4.66 0.00 0.27 ind:imp:3p; +resplendissait resplendir VER 2.42 4.66 0.49 1.49 ind:imp:3s; +resplendissant resplendissant ADJ m s 1.85 1.89 0.30 0.41 +resplendissante resplendissant ADJ f s 1.85 1.89 1.12 0.95 +resplendissantes resplendissant ADJ f p 1.85 1.89 0.07 0.27 +resplendissants resplendissant ADJ m p 1.85 1.89 0.35 0.27 +resplendisse resplendir VER 2.42 4.66 0.16 0.07 sub:pre:3s; +resplendissement resplendissement NOM m s 0.00 0.07 0.00 0.07 +resplendissent resplendir VER 2.42 4.66 0.00 0.27 ind:pre:3p; +resplendissez resplendir VER 2.42 4.66 0.21 0.00 ind:pre:2p; +resplendit resplendir VER 2.42 4.66 0.52 1.22 ind:pre:3s;ind:pas:3s; +responsabilisation responsabilisation NOM f s 0.01 0.00 0.01 0.00 +responsabilise responsabiliser VER 0.30 0.07 0.00 0.07 ind:pre:1s; +responsabiliser responsabiliser VER 0.30 0.07 0.30 0.00 inf; +responsabilité responsabilité NOM f s 37.46 28.72 26.04 18.11 +responsabilités responsabilité NOM f p 37.46 28.72 11.42 10.61 +responsable responsable ADJ s 46.01 21.82 40.66 17.43 +responsables responsable ADJ p 46.01 21.82 5.35 4.39 +resquillaient resquiller VER 0.45 0.68 0.00 0.07 ind:imp:3p; +resquillant resquiller VER 0.45 0.68 0.03 0.14 par:pre; +resquille resquiller VER 0.45 0.68 0.23 0.14 ind:pre:1s;ind:pre:3s; +resquiller resquiller VER 0.45 0.68 0.14 0.34 inf; +resquillera resquiller VER 0.45 0.68 0.01 0.00 ind:fut:3s; +resquilles resquiller VER 0.45 0.68 0.01 0.00 ind:pre:2s; +resquilleur resquilleur ADJ m s 0.10 0.07 0.10 0.07 +resquilleurs resquilleur NOM m p 0.24 0.61 0.17 0.41 +resquilleuse resquilleur NOM f s 0.24 0.61 0.01 0.00 +resquilleuses resquilleur NOM f p 0.24 0.61 0.00 0.07 +resquillé resquiller VER m s 0.45 0.68 0.03 0.00 par:pas; +ressac ressac NOM m s 0.14 4.39 0.14 4.32 +ressacs ressac NOM m p 0.14 4.39 0.00 0.07 +ressaie ressayer VER 0.17 0.00 0.05 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressaisît ressaisir VER 5.87 7.77 0.00 0.07 sub:imp:3s; +ressaisi ressaisir VER m s 5.87 7.77 0.22 0.81 par:pas; +ressaisie ressaisir VER f s 5.87 7.77 0.06 0.47 par:pas; +ressaisir ressaisir VER 5.87 7.77 1.26 2.57 inf; +ressaisira ressaisir VER 5.87 7.77 0.10 0.14 ind:fut:3s; +ressaisirais ressaisir VER 5.87 7.77 0.01 0.00 cnd:pre:1s; +ressaisis ressaisir VER m p 5.87 7.77 3.06 0.61 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +ressaisissaient ressaisir VER 5.87 7.77 0.00 0.07 ind:imp:3p; +ressaisissais ressaisir VER 5.87 7.77 0.01 0.07 ind:imp:1s; +ressaisissait ressaisir VER 5.87 7.77 0.01 0.14 ind:imp:3s; +ressaisissant ressaisir VER 5.87 7.77 0.00 0.20 par:pre; +ressaisisse ressaisir VER 5.87 7.77 0.02 0.34 sub:pre:1s;sub:pre:3s; +ressaisissement ressaisissement NOM m s 0.00 0.07 0.00 0.07 +ressaisisses ressaisir VER 5.87 7.77 0.05 0.00 sub:pre:2s; +ressaisissez ressaisir VER 5.87 7.77 0.86 0.20 imp:pre:2p;ind:pre:2p; +ressaisissions ressaisir VER 5.87 7.77 0.00 0.07 ind:imp:1p; +ressaisissons ressaisir VER 5.87 7.77 0.03 0.07 imp:pre:1p; +ressaisit ressaisir VER 5.87 7.77 0.17 1.96 ind:pre:3s;ind:pas:3s; +ressassaient ressasser VER 1.31 5.27 0.00 0.14 ind:imp:3p; +ressassais ressasser VER 1.31 5.27 0.01 0.14 ind:imp:1s;ind:imp:2s; +ressassait ressasser VER 1.31 5.27 0.01 1.28 ind:imp:3s; +ressassant ressasser VER 1.31 5.27 0.05 0.54 par:pre; +ressasse ressasser VER 1.31 5.27 0.27 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressassement ressassement NOM m s 0.00 0.47 0.00 0.47 +ressassent ressasser VER 1.31 5.27 0.01 0.20 ind:pre:3p; +ressasser ressasser VER 1.31 5.27 0.77 1.28 inf; +ressasseur ressasseur NOM m s 0.00 0.07 0.00 0.07 +ressassez ressasser VER 1.31 5.27 0.00 0.07 ind:pre:2p; +ressassions ressasser VER 1.31 5.27 0.00 0.07 ind:imp:1p; +ressassèrent ressasser VER 1.31 5.27 0.01 0.00 ind:pas:3p; +ressassé ressasser VER m s 1.31 5.27 0.16 0.41 par:pas; +ressassée ressasser VER f s 1.31 5.27 0.00 0.14 par:pas; +ressassées ressasser VER f p 1.31 5.27 0.01 0.14 par:pas; +ressassés ressasser VER m p 1.31 5.27 0.02 0.54 par:pas; +ressaut ressaut NOM m s 0.01 1.15 0.01 0.74 +ressauter ressauter VER 0.09 0.00 0.07 0.00 inf; +ressauts ressaut NOM m p 0.01 1.15 0.00 0.41 +ressauté ressauter VER m s 0.09 0.00 0.01 0.00 par:pas; +ressayer ressayer VER 0.17 0.00 0.12 0.00 inf; +ressembla ressembler VER 148.60 157.50 0.00 1.01 ind:pas:3s; +ressemblaient ressembler VER 148.60 157.50 2.17 15.54 ind:imp:3p; +ressemblais ressembler VER 148.60 157.50 2.23 1.15 ind:imp:1s;ind:imp:2s; +ressemblait ressembler VER 148.60 157.50 13.41 54.26 ind:imp:3s; +ressemblance ressemblance NOM f s 5.02 10.54 4.46 9.26 +ressemblances ressemblance NOM f p 5.02 10.54 0.56 1.28 +ressemblant ressemblant ADJ m s 2.07 2.77 1.57 1.49 +ressemblante ressemblant ADJ f s 2.07 2.77 0.29 0.61 +ressemblantes ressemblant ADJ f p 2.07 2.77 0.14 0.20 +ressemblants ressemblant ADJ m p 2.07 2.77 0.06 0.47 +ressemblassent ressembler VER 148.60 157.50 0.00 0.14 sub:imp:3p; +ressemble ressembler VER 148.60 157.50 83.47 40.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +ressemblent ressembler VER 148.60 157.50 11.21 13.18 ind:pre:3p; +ressembler ressembler VER 148.60 157.50 11.44 18.72 inf; +ressemblera ressembler VER 148.60 157.50 1.14 0.68 ind:fut:3s; +ressemblerai ressembler VER 148.60 157.50 0.09 0.14 ind:fut:1s; +ressembleraient ressembler VER 148.60 157.50 0.05 0.27 cnd:pre:3p; +ressemblerais ressembler VER 148.60 157.50 0.53 0.00 cnd:pre:1s;cnd:pre:2s; +ressemblerait ressembler VER 148.60 157.50 1.12 2.16 cnd:pre:3s; +ressembleras ressembler VER 148.60 157.50 0.21 0.07 ind:fut:2s; +ressemblerez ressembler VER 148.60 157.50 0.05 0.07 ind:fut:2p; +ressembleront ressembler VER 148.60 157.50 0.28 0.14 ind:fut:3p; +ressembles ressembler VER 148.60 157.50 11.93 1.01 ind:pre:2s;sub:pre:2s; +ressemblez ressembler VER 148.60 157.50 6.92 1.35 imp:pre:2p;ind:pre:2p; +ressembliez ressembler VER 148.60 157.50 0.26 0.14 ind:imp:2p; +ressemblions ressembler VER 148.60 157.50 0.03 0.61 ind:imp:1p; +ressemblons ressembler VER 148.60 157.50 0.89 0.74 ind:pre:1p; +ressemblât ressembler VER 148.60 157.50 0.01 1.28 sub:imp:3s; +ressemblèrent ressembler VER 148.60 157.50 0.00 0.20 ind:pas:3p; +ressemblé ressembler VER m s 148.60 157.50 0.17 1.49 par:pas; +ressemelage ressemelage NOM m s 0.00 0.41 0.00 0.27 +ressemelages ressemelage NOM m p 0.00 0.41 0.00 0.14 +ressemelait ressemeler VER 0.02 0.34 0.00 0.07 ind:imp:3s; +ressemeler ressemeler VER 0.02 0.34 0.02 0.14 inf; +ressemellent ressemeler VER 0.02 0.34 0.00 0.07 ind:pre:3p; +ressemelée ressemeler VER f s 0.02 0.34 0.00 0.07 par:pas; +ressemer ressemer VER 0.01 0.00 0.01 0.00 inf; +ressens ressentir VER 78.78 70.14 27.91 5.68 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressent ressentir VER 78.78 70.14 10.23 7.23 ind:pre:3s; +ressentîmes ressentir VER 78.78 70.14 0.00 0.07 ind:pas:1p; +ressentît ressentir VER 78.78 70.14 0.00 0.34 sub:imp:3s; +ressentaient ressentir VER 78.78 70.14 0.12 1.28 ind:imp:3p; +ressentais ressentir VER 78.78 70.14 2.72 5.81 ind:imp:1s;ind:imp:2s; +ressentait ressentir VER 78.78 70.14 1.66 12.77 ind:imp:3s; +ressentant ressentir VER 78.78 70.14 0.08 0.61 par:pre; +ressente ressentir VER 78.78 70.14 0.72 0.47 sub:pre:1s;sub:pre:3s; +ressentent ressentir VER 78.78 70.14 2.49 1.28 ind:pre:3p; +ressentes ressentir VER 78.78 70.14 0.41 0.00 sub:pre:2s; +ressentez ressentir VER 78.78 70.14 6.70 0.27 imp:pre:2p;ind:pre:2p; +ressenti ressentir VER m s 78.78 70.14 11.36 10.68 par:pas; +ressentie ressentir VER f s 78.78 70.14 0.60 2.64 par:pas; +ressenties ressentir VER f p 78.78 70.14 0.07 0.34 par:pas; +ressentiez ressentir VER 78.78 70.14 0.50 0.00 ind:imp:2p; +ressentiment ressentiment NOM m s 1.83 5.00 1.56 4.59 +ressentiments ressentiment NOM m p 1.83 5.00 0.27 0.41 +ressentions ressentir VER 78.78 70.14 0.04 0.34 ind:imp:1p; +ressentir ressentir VER 78.78 70.14 9.76 10.54 inf; +ressentira ressentir VER 78.78 70.14 0.26 0.00 ind:fut:3s; +ressentirai ressentir VER 78.78 70.14 0.11 0.00 ind:fut:1s; +ressentirais ressentir VER 78.78 70.14 0.42 0.14 cnd:pre:1s;cnd:pre:2s; +ressentirait ressentir VER 78.78 70.14 0.16 0.14 cnd:pre:3s; +ressentiras ressentir VER 78.78 70.14 0.06 0.07 ind:fut:2s; +ressentirent ressentir VER 78.78 70.14 0.00 0.27 ind:pas:3p; +ressentirez ressentir VER 78.78 70.14 0.16 0.00 ind:fut:2p; +ressentiriez ressentir VER 78.78 70.14 0.17 0.00 cnd:pre:2p; +ressentirions ressentir VER 78.78 70.14 0.01 0.00 cnd:pre:1p; +ressentiront ressentir VER 78.78 70.14 0.04 0.07 ind:fut:3p; +ressentis ressentir VER m p 78.78 70.14 0.66 3.24 ind:pas:1s;par:pas; +ressentit ressentir VER 78.78 70.14 0.45 5.74 ind:pas:3s; +ressentons ressentir VER 78.78 70.14 0.90 0.14 imp:pre:1p;ind:pre:1p; +resserra resserrer VER 3.74 11.08 0.00 1.01 ind:pas:3s; +resserrage resserrage NOM m s 0.10 0.00 0.10 0.00 +resserraient resserrer VER 3.74 11.08 0.02 0.34 ind:imp:3p; +resserrait resserrer VER 3.74 11.08 0.02 1.82 ind:imp:3s; +resserrant resserrer VER 3.74 11.08 0.00 0.61 par:pre; +resserre resserrer VER 3.74 11.08 1.15 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +resserrement resserrement NOM m s 0.00 1.15 0.00 1.15 +resserrent resserrer VER 3.74 11.08 0.35 0.95 ind:pre:3p; +resserrer resserrer VER 3.74 11.08 1.19 2.23 inf; +resserrera resserrer VER 3.74 11.08 0.04 0.07 ind:fut:3s; +resserrerai resserrer VER 3.74 11.08 0.01 0.14 ind:fut:1s; +resserrerait resserrer VER 3.74 11.08 0.02 0.07 cnd:pre:3s; +resserres resserrer VER 3.74 11.08 0.02 0.00 ind:pre:2s; +resserrez resserrer VER 3.74 11.08 0.45 0.00 imp:pre:2p;ind:pre:2p; +resserrions resserrer VER 3.74 11.08 0.00 0.07 ind:imp:1p; +resserrons resserrer VER 3.74 11.08 0.02 0.07 imp:pre:1p;ind:pre:1p; +resserrèrent resserrer VER 3.74 11.08 0.00 0.20 ind:pas:3p; +resserré resserrer VER m s 3.74 11.08 0.42 0.95 par:pas; +resserrée resserrer VER f s 3.74 11.08 0.01 0.34 par:pas; +resserrées resserrer VER f p 3.74 11.08 0.01 0.41 par:pas; +resserrés resserré ADJ m p 0.06 1.69 0.04 0.54 +ressers resservir VER 2.25 3.04 1.13 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressert resservir VER 2.25 3.04 0.07 0.27 ind:pre:3s; +resservais resservir VER 2.25 3.04 0.01 0.00 ind:imp:2s; +resservait resservir VER 2.25 3.04 0.01 0.47 ind:imp:3s; +resservez resservir VER 2.25 3.04 0.17 0.00 imp:pre:2p;ind:pre:2p; +resservi resservir VER m s 2.25 3.04 0.06 0.68 par:pas; +resservir resservir VER 2.25 3.04 0.58 0.81 inf; +resservirai resservir VER 2.25 3.04 0.02 0.00 ind:fut:1s; +resservirais resservir VER 2.25 3.04 0.10 0.00 cnd:pre:1s; +resservirait resservir VER 2.25 3.04 0.00 0.14 cnd:pre:3s; +resservis resservir VER m p 2.25 3.04 0.10 0.07 par:pas; +resservit resservir VER 2.25 3.04 0.00 0.34 ind:pas:3s; +ressors ressortir VER 15.23 31.69 1.35 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s; +ressort ressort NOM m s 6.95 20.54 5.69 13.65 +ressortîmes ressortir VER 15.23 31.69 0.00 0.14 ind:pas:1p; +ressortaient ressortir VER 15.23 31.69 0.05 1.35 ind:imp:3p; +ressortais ressortir VER 15.23 31.69 0.04 0.20 ind:imp:1s;ind:imp:2s; +ressortait ressortir VER 15.23 31.69 0.12 4.19 ind:imp:3s; +ressortant ressortir VER 15.23 31.69 0.08 0.95 par:pre; +ressorte ressortir VER 15.23 31.69 0.41 0.20 sub:pre:1s;sub:pre:3s; +ressortent ressortir VER 15.23 31.69 0.79 1.22 ind:pre:3p; +ressortes ressortir VER 15.23 31.69 0.03 0.00 sub:pre:2s; +ressortez ressortir VER 15.23 31.69 0.22 0.20 imp:pre:2p;ind:pre:2p; +ressorti ressortir VER m s 15.23 31.69 1.91 2.84 par:pas; +ressortie ressortir VER f s 15.23 31.69 1.27 1.22 par:pas; +ressorties ressortir VER f p 15.23 31.69 0.04 0.14 par:pas; +ressortions ressortir VER 15.23 31.69 0.02 0.20 ind:imp:1p; +ressortir ressortir VER 15.23 31.69 4.64 7.91 inf; +ressortira ressortir VER 15.23 31.69 0.26 0.41 ind:fut:3s; +ressortirai ressortir VER 15.23 31.69 0.37 0.00 ind:fut:1s; +ressortiraient ressortir VER 15.23 31.69 0.00 0.07 cnd:pre:3p; +ressortirais ressortir VER 15.23 31.69 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +ressortirait ressortir VER 15.23 31.69 0.09 0.14 cnd:pre:3s; +ressortiras ressortir VER 15.23 31.69 0.17 0.14 ind:fut:2s; +ressortirent ressortir VER 15.23 31.69 0.01 0.54 ind:pas:3p; +ressortirez ressortir VER 15.23 31.69 0.03 0.00 ind:fut:2p; +ressortiront ressortir VER 15.23 31.69 0.05 0.07 ind:fut:3p; +ressortis ressortir VER m p 15.23 31.69 0.43 1.01 ind:pas:1s;par:pas; +ressortissant ressortissant NOM m s 0.46 1.49 0.11 0.47 +ressortissante ressortissant NOM f s 0.46 1.49 0.01 0.14 +ressortissants ressortissant NOM m p 0.46 1.49 0.34 0.88 +ressortit ressortir VER 15.23 31.69 0.26 4.05 ind:pas:3s; +ressortons ressortir VER 15.23 31.69 0.04 0.00 imp:pre:1p;ind:pre:1p; +ressorts ressort NOM m p 6.95 20.54 1.27 6.89 +ressoudant ressouder VER 0.39 1.01 0.00 0.07 par:pre; +ressoude ressouder VER 0.39 1.01 0.01 0.07 ind:pre:3s; +ressouder ressouder VER 0.39 1.01 0.20 0.41 inf; +ressoudé ressouder VER m s 0.39 1.01 0.01 0.27 par:pas; +ressoudée ressouder VER f s 0.39 1.01 0.12 0.14 par:pas; +ressoudés ressouder VER m p 0.39 1.01 0.04 0.07 par:pas; +ressource ressource NOM f s 8.81 22.50 1.13 5.95 +ressourcement ressourcement NOM m s 0.01 0.07 0.01 0.07 +ressourcer ressourcer VER 0.40 0.47 0.40 0.27 ind:pre:2p;inf; +ressources ressource NOM f p 8.81 22.50 7.68 16.55 +ressourcé ressourcer VER m s 0.40 0.47 0.00 0.07 par:pas; +ressourçais ressourcer VER 0.40 0.47 0.00 0.07 ind:imp:1s; +ressourçait ressourcer VER 0.40 0.47 0.00 0.07 ind:imp:3s; +ressouvenait ressouvenir VER 0.68 0.88 0.00 0.14 ind:imp:3s; +ressouvenant ressouvenir VER 0.68 0.88 0.00 0.07 par:pre; +ressouvenir ressouvenir VER 0.68 0.88 0.68 0.47 inf; +ressouvenue ressouvenir VER f s 0.68 0.88 0.00 0.07 par:pas; +ressouviens ressouvenir VER 0.68 0.88 0.00 0.07 ind:pre:1s; +ressouvint ressouvenir VER 0.68 0.88 0.00 0.07 ind:pas:3s; +ressui ressui NOM m s 0.00 0.07 0.00 0.07 +ressuiement ressuiement NOM m s 0.00 0.07 0.00 0.07 +ressurgi ressurgir VER m s 0.70 1.55 0.04 0.34 par:pas; +ressurgie ressurgir VER f s 0.70 1.55 0.00 0.14 par:pas; +ressurgir ressurgir VER 0.70 1.55 0.36 0.41 inf; +ressurgirait ressurgir VER 0.70 1.55 0.00 0.07 cnd:pre:3s; +ressurgirent ressurgir VER 0.70 1.55 0.00 0.07 ind:pas:3p; +ressurgiront ressurgir VER 0.70 1.55 0.02 0.00 ind:fut:3p; +ressurgissait ressurgir VER 0.70 1.55 0.01 0.14 ind:imp:3s; +ressurgissant ressurgir VER 0.70 1.55 0.00 0.20 par:pre; +ressurgissent ressurgir VER 0.70 1.55 0.09 0.00 ind:pre:3p; +ressurgit ressurgir VER 0.70 1.55 0.18 0.20 ind:pre:3s; +ressuscita ressusciter VER 11.44 17.91 0.06 0.27 ind:pas:3s; +ressuscitai ressusciter VER 11.44 17.91 0.00 0.14 ind:pas:1s; +ressuscitaient ressusciter VER 11.44 17.91 0.02 0.95 ind:imp:3p; +ressuscitais ressusciter VER 11.44 17.91 0.01 0.20 ind:imp:1s; +ressuscitait ressusciter VER 11.44 17.91 0.11 1.35 ind:imp:3s; +ressuscitant ressusciter VER 11.44 17.91 0.03 0.68 par:pre; +ressuscite ressusciter VER 11.44 17.91 0.82 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ressuscitent ressusciter VER 11.44 17.91 0.51 1.08 ind:pre:3p; +ressusciter ressusciter VER 11.44 17.91 2.94 4.80 inf; +ressuscitera ressusciter VER 11.44 17.91 1.03 0.27 ind:fut:3s; +ressusciterai ressusciter VER 11.44 17.91 0.11 0.07 ind:fut:1s; +ressusciteraient ressusciter VER 11.44 17.91 0.01 0.20 cnd:pre:3p; +ressusciterait ressusciter VER 11.44 17.91 0.29 0.47 cnd:pre:3s; +ressusciteras ressusciter VER 11.44 17.91 0.00 0.07 ind:fut:2s; +ressusciterez ressusciter VER 11.44 17.91 0.01 0.07 ind:fut:2p; +ressusciterons ressusciter VER 11.44 17.91 0.27 0.14 ind:fut:1p; +ressusciteront ressusciter VER 11.44 17.91 0.06 0.14 ind:fut:3p; +ressuscites ressusciter VER 11.44 17.91 0.22 0.07 ind:pre:2s; +ressuscitez ressusciter VER 11.44 17.91 0.27 0.00 imp:pre:2p;ind:pre:2p; +ressuscitons ressusciter VER 11.44 17.91 0.01 0.00 imp:pre:1p; +ressuscitât ressusciter VER 11.44 17.91 0.00 0.07 sub:imp:3s; +ressuscité ressusciter VER m s 11.44 17.91 3.86 3.72 par:pas; +ressuscitée ressusciter VER f s 11.44 17.91 0.56 0.81 par:pas; +ressuscitées ressusciter VER f p 11.44 17.91 0.01 0.20 par:pas; +ressuscités ressusciter VER m p 11.44 17.91 0.23 0.74 par:pas; +ressué ressuer VER m s 0.00 0.07 0.00 0.07 par:pas; +ressuyé ressuyer VER m s 0.00 0.34 0.00 0.20 par:pas; +ressuyée ressuyer VER f s 0.00 0.34 0.00 0.14 par:pas; +resta rester VER 1003.57 793.78 3.53 52.70 ind:pas:3s; +restai rester VER 1003.57 793.78 1.27 13.92 ind:pas:1s; +restaient rester VER 1003.57 793.78 2.81 32.23 ind:imp:3p; +restais rester VER 1003.57 793.78 4.84 13.58 ind:imp:1s;ind:imp:2s; +restait rester VER 1003.57 793.78 18.34 152.64 ind:imp:3s; +restant restant NOM m s 5.74 5.68 5.54 5.41 +restante restant ADJ f s 2.42 3.24 0.83 1.35 +restantes restant ADJ f p 2.42 3.24 0.28 0.47 +restants restant ADJ m p 2.42 3.24 0.81 0.14 +restassent rester VER 1003.57 793.78 0.00 0.27 sub:imp:3p; +restau restau NOM m s 3.65 2.50 3.31 2.09 +restaura restaurer VER 6.31 9.26 0.00 0.07 ind:pas:3s; +restaurait restaurer VER 6.31 9.26 0.04 0.34 ind:imp:3s; +restaurant restaurant NOM m s 50.04 48.99 44.29 38.85 +restaurants restaurant NOM m p 50.04 48.99 5.75 10.14 +restaurateur restaurateur NOM m s 1.25 2.57 1.09 1.62 +restaurateurs restaurateur NOM m p 1.25 2.57 0.09 0.61 +restauration restauration NOM f s 2.96 5.27 2.90 5.07 +restaurations restauration NOM f p 2.96 5.27 0.06 0.20 +restauratrice restaurateur NOM f s 1.25 2.57 0.07 0.34 +restaure restaurer VER 6.31 9.26 1.24 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +restaurent restaurer VER 6.31 9.26 0.23 0.14 ind:pre:3p; +restaurer restaurer VER 6.31 9.26 2.20 4.32 inf;; +restaurera restaurer VER 6.31 9.26 0.01 0.00 ind:fut:3s; +restaurerai restaurer VER 6.31 9.26 0.01 0.00 ind:fut:1s; +restaureraient restaurer VER 6.31 9.26 0.00 0.07 cnd:pre:3p; +restaurerait restaurer VER 6.31 9.26 0.01 0.07 cnd:pre:3s; +restaurez restaurer VER 6.31 9.26 0.22 0.00 imp:pre:2p;ind:pre:2p; +restaurons restaurer VER 6.31 9.26 0.03 0.00 imp:pre:1p; +restauroute restauroute NOM m s 0.00 0.41 0.00 0.41 +restauré restaurer VER m s 6.31 9.26 0.93 1.49 par:pas; +restaurée restaurer VER f s 6.31 9.26 0.49 0.81 par:pas; +restaurées restaurer VER f p 6.31 9.26 0.14 0.47 par:pas; +restaurés restaurer VER m p 6.31 9.26 0.05 0.14 par:pas; +restaus restau NOM m p 3.65 2.50 0.34 0.41 +reste rester VER 1003.57 793.78 320.44 153.99 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +restent rester VER 1003.57 793.78 21.75 25.20 ind:pre:3p; +rester rester VER 1003.57 793.78 310.37 123.78 inf;;inf;;inf;; +restera rester VER 1003.57 793.78 25.73 15.68 ind:fut:3s; +resterai rester VER 1003.57 793.78 11.80 3.85 ind:fut:1s; +resteraient rester VER 1003.57 793.78 0.43 3.04 cnd:pre:3p; +resterais rester VER 1003.57 793.78 4.68 2.50 cnd:pre:1s;cnd:pre:2s; +resterait rester VER 1003.57 793.78 5.30 12.09 cnd:pre:3s; +resteras rester VER 1003.57 793.78 6.32 1.82 ind:fut:2s; +resterez rester VER 1003.57 793.78 5.75 1.35 ind:fut:2p; +resteriez rester VER 1003.57 793.78 1.00 0.20 cnd:pre:2p; +resterions rester VER 1003.57 793.78 0.05 0.61 cnd:pre:1p; +resterons rester VER 1003.57 793.78 3.63 1.49 ind:fut:1p; +resteront rester VER 1003.57 793.78 3.98 2.23 ind:fut:3p; +restes rester VER 1003.57 793.78 44.15 6.28 ind:pre:2s;sub:pre:2s; +restez rester VER 1003.57 793.78 105.52 10.81 imp:pre:2p;ind:pre:2p; +restiez rester VER 1003.57 793.78 4.42 1.01 ind:imp:2p; +restions rester VER 1003.57 793.78 0.94 4.86 ind:imp:1p; +restituaient restituer VER 2.44 9.39 0.00 0.14 ind:imp:3p; +restituait restituer VER 2.44 9.39 0.00 1.49 ind:imp:3s; +restituant restituer VER 2.44 9.39 0.00 0.61 par:pre; +restitue restituer VER 2.44 9.39 0.43 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +restituent restituer VER 2.44 9.39 0.02 0.27 ind:pre:3p; +restituer restituer VER 2.44 9.39 1.10 2.84 inf; +restituera restituer VER 2.44 9.39 0.02 0.14 ind:fut:3s; +restituerai restituer VER 2.44 9.39 0.03 0.00 ind:fut:1s; +restituerait restituer VER 2.44 9.39 0.00 0.20 cnd:pre:3s; +restituerons restituer VER 2.44 9.39 0.14 0.07 ind:fut:1p; +restituez restituer VER 2.44 9.39 0.04 0.00 imp:pre:2p; +restituiez restituer VER 2.44 9.39 0.00 0.07 ind:imp:2p; +restitution restitution NOM f s 0.28 0.88 0.28 0.88 +restitué restituer VER m s 2.44 9.39 0.38 0.81 par:pas; +restituée restituer VER f s 2.44 9.39 0.20 0.61 par:pas; +restituées restituer VER f p 2.44 9.39 0.04 0.27 par:pas; +restitués restituer VER m p 2.44 9.39 0.03 0.34 par:pas; +resto resto NOM m s 10.47 1.62 9.36 1.42 +restâmes rester VER 1003.57 793.78 0.04 3.04 ind:pas:1p; +restons rester VER 1003.57 793.78 16.36 6.82 imp:pre:1p;ind:pre:1p; +restoroute restoroute NOM m s 0.16 0.14 0.16 0.14 +restos resto NOM m p 10.47 1.62 1.10 0.20 +restât rester VER 1003.57 793.78 0.03 4.19 sub:imp:3s; +restreignait restreindre VER 1.14 2.30 0.00 0.07 ind:imp:3s; +restreignant restreindre VER 1.14 2.30 0.02 0.07 par:pre; +restreignent restreindre VER 1.14 2.30 0.00 0.07 ind:pre:3p; +restreignez restreindre VER 1.14 2.30 0.01 0.00 ind:pre:2p; +restreignit restreindre VER 1.14 2.30 0.00 0.07 ind:pas:3s; +restreindre restreindre VER 1.14 2.30 0.30 0.41 inf; +restreins restreindre VER 1.14 2.30 0.04 0.00 imp:pre:2s;ind:pre:1s; +restreint restreindre VER m s 1.14 2.30 0.58 0.68 ind:pre:3s;par:pas; +restreinte restreint ADJ f s 0.54 5.41 0.20 1.42 +restreintes restreint ADJ f p 0.54 5.41 0.03 0.34 +restreints restreint ADJ m p 0.54 5.41 0.01 0.74 +restrictif restrictif ADJ m s 0.80 0.20 0.20 0.07 +restriction restriction NOM f s 1.94 6.69 1.07 2.36 +restrictions restriction NOM f p 1.94 6.69 0.88 4.32 +restrictive restrictif ADJ f s 0.80 0.20 0.58 0.07 +restrictives restrictif ADJ f p 0.80 0.20 0.02 0.07 +restructurant restructurer VER 0.94 0.07 0.01 0.00 par:pre; +restructuration restructuration NOM f s 0.91 0.34 0.91 0.20 +restructurations restructuration NOM f p 0.91 0.34 0.00 0.07 +restructurer restructurer VER 0.94 0.07 0.45 0.00 inf; +restructureront restructurer VER 0.94 0.07 0.01 0.00 ind:fut:3p; +restructurons restructurer VER 0.94 0.07 0.00 0.07 ind:pre:1p; +restructuré restructurer VER m s 0.94 0.07 0.34 0.00 par:pas; +restructurée restructurer VER f s 0.94 0.07 0.13 0.00 par:pas; +restèrent rester VER 1003.57 793.78 0.45 14.19 ind:pas:3p; +resté rester VER m s 1003.57 793.78 43.45 62.09 par:pas; +restée rester VER f s 1003.57 793.78 19.08 31.08 ind:imp:3p;par:pas; +restées rester VER f p 1003.57 793.78 1.62 6.01 par:pas; +restés rester VER m p 1003.57 793.78 10.74 21.08 par:pas; +resucée resucée NOM f s 0.03 0.14 0.03 0.14 +resurgît resurgir VER 0.85 3.92 0.00 0.07 sub:imp:3s; +resurgi resurgir VER m s 0.85 3.92 0.04 0.20 par:pas; +resurgies resurgir VER f p 0.85 3.92 0.00 0.14 par:pas; +resurgir resurgir VER 0.85 3.92 0.39 1.42 inf; +resurgira resurgir VER 0.85 3.92 0.05 0.07 ind:fut:3s; +resurgirai resurgir VER 0.85 3.92 0.01 0.00 ind:fut:1s; +resurgirait resurgir VER 0.85 3.92 0.01 0.07 cnd:pre:3s; +resurgirent resurgir VER 0.85 3.92 0.00 0.07 ind:pas:3p; +resurgiront resurgir VER 0.85 3.92 0.00 0.07 ind:fut:3p; +resurgis resurgir VER m p 0.85 3.92 0.00 0.07 par:pas; +resurgissaient resurgir VER 0.85 3.92 0.00 0.20 ind:imp:3p; +resurgissait resurgir VER 0.85 3.92 0.01 0.41 ind:imp:3s; +resurgissant resurgir VER 0.85 3.92 0.01 0.14 par:pre; +resurgisse resurgir VER 0.85 3.92 0.03 0.07 sub:pre:3s; +resurgissent resurgir VER 0.85 3.92 0.02 0.34 ind:pre:3p; +resurgit resurgir VER 0.85 3.92 0.28 0.61 ind:pre:3s;ind:pas:3s; +retînmes retenir VER 71.58 143.92 0.00 0.14 ind:pas:1p; +retînt retenir VER 71.58 143.92 0.00 0.34 sub:imp:3s; +retable retable NOM m s 0.34 1.15 0.24 0.81 +retables retable NOM m p 0.34 1.15 0.10 0.34 +retaillaient retailler VER 0.05 1.01 0.00 0.07 ind:imp:3p; +retaillait retailler VER 0.05 1.01 0.00 0.07 ind:imp:3s; +retaille retailler VER 0.05 1.01 0.00 0.14 ind:pre:1s;ind:pre:3s; +retailler retailler VER 0.05 1.01 0.02 0.27 inf; +retaillé retailler VER m s 0.05 1.01 0.01 0.27 par:pas; +retaillée retailler VER f s 0.05 1.01 0.00 0.07 par:pas; +retaillées retailler VER f p 0.05 1.01 0.01 0.07 par:pas; +retaillés retailler VER m p 0.05 1.01 0.00 0.07 par:pas; +retapa retaper VER 3.50 4.05 0.00 0.14 ind:pas:3s; +retapaient retaper VER 3.50 4.05 0.00 0.07 ind:imp:3p; +retapait retaper VER 3.50 4.05 0.01 0.14 ind:imp:3s; +retapant retaper VER 3.50 4.05 0.00 0.14 par:pre; +retape retaper VER 3.50 4.05 0.36 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retapent retaper VER 3.50 4.05 0.01 0.07 ind:pre:3p; +retaper retaper VER 3.50 4.05 1.60 1.28 inf; +retaperait retaper VER 3.50 4.05 0.00 0.07 cnd:pre:3s; +retapeur retapeur NOM m s 0.01 0.00 0.01 0.00 +retapez retaper VER 3.50 4.05 0.08 0.00 imp:pre:2p;ind:pre:2p; +retapissant retapisser VER 0.32 3.31 0.00 0.07 par:pre; +retapisse retapisser VER 0.32 3.31 0.25 0.95 ind:pre:1s;ind:pre:3s; +retapissent retapisser VER 0.32 3.31 0.00 0.27 ind:pre:3p; +retapisser retapisser VER 0.32 3.31 0.05 0.88 inf; +retapisserait retapisser VER 0.32 3.31 0.00 0.07 cnd:pre:3s; +retapisses retapisser VER 0.32 3.31 0.00 0.07 ind:pre:2s; +retapissé retapisser VER m s 0.32 3.31 0.03 0.61 par:pas; +retapissée retapisser VER f s 0.32 3.31 0.00 0.34 par:pas; +retapissées retapisser VER f p 0.32 3.31 0.00 0.07 par:pas; +retapé retaper VER m s 3.50 4.05 1.14 1.01 par:pas; +retapée retaper VER f s 3.50 4.05 0.28 0.47 par:pas; +retapées retaper VER f p 3.50 4.05 0.00 0.14 par:pas; +retapés retaper VER m p 3.50 4.05 0.01 0.07 par:pas; +retard retard NOM m s 126.45 46.62 125.65 43.45 +retarda retarder VER 11.89 14.53 0.00 0.47 ind:pas:3s; +retardaient retarder VER 11.89 14.53 0.01 0.54 ind:imp:3p; +retardais retarder VER 11.89 14.53 0.17 0.27 ind:imp:1s;ind:imp:2s; +retardait retarder VER 11.89 14.53 0.21 1.08 ind:imp:3s; +retardant retarder VER 11.89 14.53 0.03 0.88 par:pre; +retardataire retardataire ADJ s 0.33 0.68 0.32 0.47 +retardataires retardataire NOM p 0.70 1.01 0.52 0.88 +retardateur retardateur NOM m s 0.14 0.00 0.14 0.00 +retarde retarder VER 11.89 14.53 1.95 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retardement retardement NOM m s 1.61 2.03 1.61 2.03 +retardent retarder VER 11.89 14.53 0.36 0.47 ind:pre:3p; +retarder retarder VER 11.89 14.53 3.09 4.46 inf;; +retardera retarder VER 11.89 14.53 0.24 0.00 ind:fut:3s; +retarderai retarder VER 11.89 14.53 0.04 0.14 ind:fut:1s; +retarderaient retarder VER 11.89 14.53 0.02 0.07 cnd:pre:3p; +retarderait retarder VER 11.89 14.53 0.10 0.41 cnd:pre:3s; +retarderez retarder VER 11.89 14.53 0.01 0.00 ind:fut:2p; +retarderiez retarder VER 11.89 14.53 0.01 0.00 cnd:pre:2p; +retardes retarder VER 11.89 14.53 0.87 0.14 ind:pre:2s; +retardez retarder VER 11.89 14.53 0.56 0.20 imp:pre:2p;ind:pre:2p; +retardions retarder VER 11.89 14.53 0.00 0.07 ind:imp:1p; +retardons retarder VER 11.89 14.53 0.20 0.14 imp:pre:1p;ind:pre:1p; +retardât retarder VER 11.89 14.53 0.00 0.07 sub:imp:3s; +retards retard NOM m p 126.45 46.62 0.81 3.18 +retardèrent retarder VER 11.89 14.53 0.00 0.07 ind:pas:3p; +retardé retarder VER m s 11.89 14.53 2.90 2.36 par:pas; +retardée retarder VER f s 11.89 14.53 0.67 1.01 par:pas; +retardées retarder VER f p 11.89 14.53 0.06 0.07 par:pas; +retardés retarder VER m p 11.89 14.53 0.39 0.07 par:pas; +reteindre reteindre VER 0.12 0.20 0.11 0.07 inf; +reteints reteindre VER m p 0.12 0.20 0.01 0.14 par:pas; +retenaient retenir VER 71.58 143.92 0.42 4.66 ind:imp:3p; +retenais retenir VER 71.58 143.92 0.34 2.23 ind:imp:1s;ind:imp:2s; +retenait retenir VER 71.58 143.92 1.10 15.34 ind:imp:3s; +retenant retenir VER 71.58 143.92 0.70 8.78 par:pre; +retendait retendre VER 0.16 0.61 0.00 0.20 ind:imp:3s; +retendre retendre VER 0.16 0.61 0.01 0.20 inf; +retends retendre VER 0.16 0.61 0.00 0.07 ind:pre:2s; +retendu retendre VER m s 0.16 0.61 0.15 0.07 par:pas; +retendues retendre VER f p 0.16 0.61 0.00 0.07 par:pas; +retenez retenir VER 71.58 143.92 6.15 0.88 imp:pre:2p;ind:pre:2p; +reteniez retenir VER 71.58 143.92 0.05 0.07 ind:imp:2p; +retenions retenir VER 71.58 143.92 0.02 0.34 ind:imp:1p; +retenir retenir VER 71.58 143.92 19.63 38.65 inf; +retenons retenir VER 71.58 143.92 0.19 0.14 imp:pre:1p;ind:pre:1p; +retente retenter VER 0.70 0.00 0.23 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retenter retenter VER 0.70 0.00 0.44 0.00 inf; +retentes retenter VER 0.70 0.00 0.04 0.00 ind:pre:2s; +retenti retentir VER m s 2.86 25.34 0.48 2.16 par:pas; +retentir retentir VER 2.86 25.34 0.27 3.58 inf; +retentira retentir VER 2.86 25.34 0.15 0.20 ind:fut:3s; +retentirait retentir VER 2.86 25.34 0.00 0.34 cnd:pre:3s; +retentirent retentir VER 2.86 25.34 0.00 1.62 ind:pas:3p; +retentiront retentir VER 2.86 25.34 0.04 0.07 ind:fut:3p; +retentissaient retentir VER 2.86 25.34 0.00 1.76 ind:imp:3p; +retentissait retentir VER 2.86 25.34 0.04 2.43 ind:imp:3s; +retentissant retentissant ADJ m s 0.20 2.50 0.14 1.01 +retentissante retentissant ADJ f s 0.20 2.50 0.03 0.68 +retentissantes retentissant ADJ f p 0.20 2.50 0.00 0.20 +retentissants retentissant ADJ m p 0.20 2.50 0.03 0.61 +retentisse retentir VER 2.86 25.34 0.03 0.14 sub:pre:3s; +retentissement retentissement NOM m s 0.02 1.55 0.02 1.55 +retentissent retentir VER 2.86 25.34 0.19 1.22 ind:pre:3p; +retentit retentir VER 2.86 25.34 1.62 11.01 ind:pre:3s;ind:pas:3s; +retenu retenir VER m s 71.58 143.92 10.20 21.22 par:pas; +retenue retenue NOM f s 3.74 8.04 3.47 7.64 +retenues retenir VER f p 71.58 143.92 0.59 1.55 par:pas; +retenus retenir VER m p 71.58 143.92 0.98 4.12 par:pas; +reçûmes recevoir VER 192.73 224.46 0.01 0.54 ind:pas:1p; +reçût recevoir VER 192.73 224.46 0.01 0.54 sub:imp:3s; +reçois recevoir VER 192.73 224.46 17.48 7.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +reçoit recevoir VER 192.73 224.46 14.90 14.19 ind:pre:3s; +reçoive recevoir VER 192.73 224.46 2.11 1.55 sub:pre:1s;sub:pre:3s; +reçoivent recevoir VER 192.73 224.46 3.08 4.19 ind:pre:3p;sub:pre:3p; +reçoives recevoir VER 192.73 224.46 0.20 0.00 sub:pre:2s; +reçu recevoir VER m s 192.73 224.46 76.46 56.15 par:pas; +reçue recevoir VER f s 192.73 224.46 4.55 7.03 par:pas; +reçues recevoir VER f p 192.73 224.46 1.29 3.18 par:pas; +reçurent recevoir VER 192.73 224.46 0.23 2.64 ind:pas:3p; +reçus recevoir VER m p 192.73 224.46 1.85 10.88 ind:pas:1s;ind:pas:2s;par:pas; +reçut recevoir VER 192.73 224.46 1.87 21.82 ind:pas:3s; +retiendra retenir VER 71.58 143.92 0.68 0.54 ind:fut:3s; +retiendrai retenir VER 71.58 143.92 1.05 0.54 ind:fut:1s; +retiendraient retenir VER 71.58 143.92 0.01 0.20 cnd:pre:3p; +retiendrais retenir VER 71.58 143.92 0.20 0.14 cnd:pre:1s;cnd:pre:2s; +retiendrait retenir VER 71.58 143.92 0.11 1.08 cnd:pre:3s; +retiendras retenir VER 71.58 143.92 0.20 0.00 ind:fut:2s; +retiendrez retenir VER 71.58 143.92 0.14 0.00 ind:fut:2p; +retiendrions retenir VER 71.58 143.92 0.00 0.07 cnd:pre:1p; +retiendrons retenir VER 71.58 143.92 0.08 0.07 ind:fut:1p; +retiendront retenir VER 71.58 143.92 0.14 0.07 ind:fut:3p; +retienne retenir VER 71.58 143.92 0.89 0.61 sub:pre:1s;sub:pre:3s; +retiennent retenir VER 71.58 143.92 1.69 3.58 ind:pre:3p; +retiennes retenir VER 71.58 143.92 0.22 0.00 sub:pre:2s; +retiens retenir VER 71.58 143.92 12.91 5.88 imp:pre:2s;ind:pre:1s;ind:pre:2s; +retient retenir VER 71.58 143.92 9.17 13.11 ind:pre:3s; +retinrent retenir VER 71.58 143.92 0.14 1.01 ind:pas:3p; +retins retenir VER 71.58 143.92 0.02 1.82 ind:pas:1s; +retint retenir VER 71.58 143.92 0.35 11.22 ind:pas:3s; +retira retirer VER 80.26 98.31 0.45 15.81 ind:pas:3s; +retirable retirable ADJ f s 0.01 0.00 0.01 0.00 +retirai retirer VER 80.26 98.31 0.01 1.76 ind:pas:1s; +retiraient retirer VER 80.26 98.31 0.14 1.69 ind:imp:3p; +retirais retirer VER 80.26 98.31 0.23 0.68 ind:imp:1s;ind:imp:2s; +retirait retirer VER 80.26 98.31 0.45 7.16 ind:imp:3s; +retirant retirer VER 80.26 98.31 0.38 3.58 par:pre; +retire retirer VER 80.26 98.31 21.56 14.80 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +retirement retirement NOM m s 0.14 0.00 0.14 0.00 +retirent retirer VER 80.26 98.31 1.19 1.42 ind:pre:3p; +retirer retirer VER 80.26 98.31 27.39 21.96 ind:pre:2p;inf; +retirera retirer VER 80.26 98.31 0.72 0.68 ind:fut:3s; +retirerai retirer VER 80.26 98.31 0.38 0.54 ind:fut:1s; +retireraient retirer VER 80.26 98.31 0.28 0.34 cnd:pre:3p; +retirerais retirer VER 80.26 98.31 0.15 0.07 cnd:pre:1s;cnd:pre:2s; +retirerait retirer VER 80.26 98.31 0.32 0.61 cnd:pre:3s; +retireras retirer VER 80.26 98.31 0.14 0.07 ind:fut:2s; +retirerez retirer VER 80.26 98.31 0.09 0.00 ind:fut:2p; +retireriez retirer VER 80.26 98.31 0.00 0.07 cnd:pre:2p; +retirerions retirer VER 80.26 98.31 0.00 0.07 cnd:pre:1p; +retirerons retirer VER 80.26 98.31 0.23 0.07 ind:fut:1p; +retireront retirer VER 80.26 98.31 0.32 0.14 ind:fut:3p; +retires retirer VER 80.26 98.31 1.45 0.27 ind:pre:2s; +retirez retirer VER 80.26 98.31 6.20 0.95 imp:pre:2p;ind:pre:2p; +retiriez retirer VER 80.26 98.31 0.24 0.07 ind:imp:2p; +retirions retirer VER 80.26 98.31 0.15 0.27 ind:imp:1p; +retiro retiro NOM m s 0.10 0.07 0.10 0.07 +retirâmes retirer VER 80.26 98.31 0.01 0.07 ind:pas:1p; +retirons retirer VER 80.26 98.31 0.83 0.14 imp:pre:1p;ind:pre:1p; +retirât retirer VER 80.26 98.31 0.00 0.20 sub:imp:3s; +retirèrent retirer VER 80.26 98.31 0.21 1.55 ind:pas:3p; +retiré retirer VER m s 80.26 98.31 12.70 15.07 par:pas; +retirée retirer VER f s 80.26 98.31 2.02 4.73 par:pas; +retirées retirer VER f p 80.26 98.31 0.68 0.74 par:pas; +retirés retirer VER m p 80.26 98.31 1.36 2.77 par:pas; +retissaient retisser VER 0.00 0.34 0.00 0.07 ind:imp:3p; +retissait retisser VER 0.00 0.34 0.00 0.07 ind:imp:3s; +retisser retisser VER 0.00 0.34 0.00 0.20 inf; +retomba retomber VER 11.04 58.58 0.28 7.23 ind:pas:3s; +retombai retomber VER 11.04 58.58 0.00 0.27 ind:pas:1s; +retombaient retomber VER 11.04 58.58 0.15 3.45 ind:imp:3p; +retombais retomber VER 11.04 58.58 0.26 0.68 ind:imp:1s;ind:imp:2s; +retombait retomber VER 11.04 58.58 0.15 6.35 ind:imp:3s; +retombant retomber VER 11.04 58.58 0.02 2.84 par:pre; +retombante retombant ADJ f s 0.02 0.61 0.00 0.14 +retombantes retombant ADJ f p 0.02 0.61 0.00 0.14 +retombe retomber VER 11.04 58.58 3.89 9.32 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retombement retombement NOM m s 0.00 0.14 0.00 0.14 +retombent retomber VER 11.04 58.58 0.70 2.70 ind:pre:3p; +retomber retomber VER 11.04 58.58 2.74 15.95 inf; +retombera retomber VER 11.04 58.58 0.69 0.68 ind:fut:3s; +retomberai retomber VER 11.04 58.58 0.06 0.00 ind:fut:1s; +retomberaient retomber VER 11.04 58.58 0.01 0.27 cnd:pre:3p; +retomberais retomber VER 11.04 58.58 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +retomberait retomber VER 11.04 58.58 0.27 0.47 cnd:pre:3s; +retomberas retomber VER 11.04 58.58 0.05 0.07 ind:fut:2s; +retomberez retomber VER 11.04 58.58 0.03 0.00 ind:fut:2p; +retomberont retomber VER 11.04 58.58 0.00 0.07 ind:fut:3p; +retombes retomber VER 11.04 58.58 0.25 0.14 ind:pre:2s; +retombez retomber VER 11.04 58.58 0.17 0.07 imp:pre:2p;ind:pre:2p; +retombions retomber VER 11.04 58.58 0.00 0.27 ind:imp:1p; +retombâmes retomber VER 11.04 58.58 0.00 0.14 ind:pas:1p; +retombons retomber VER 11.04 58.58 0.12 0.41 imp:pre:1p;ind:pre:1p; +retombât retomber VER 11.04 58.58 0.00 0.14 sub:imp:3s; +retombèrent retomber VER 11.04 58.58 0.00 0.81 ind:pas:3p; +retombé retomber VER m s 11.04 58.58 0.71 3.65 par:pas; +retombée retomber VER f s 11.04 58.58 0.28 1.96 par:pas; +retombées retombée NOM f p 0.79 2.36 0.73 1.01 +retombés retomber VER m p 11.04 58.58 0.19 0.34 par:pas; +retordre retordre VER 1.29 0.61 1.29 0.61 inf; +retors retors ADJ m 0.53 1.69 0.48 1.28 +retorse retors ADJ f s 0.53 1.69 0.03 0.41 +retorses retors ADJ f p 0.53 1.69 0.02 0.00 +retâté retâter VER m s 0.00 0.07 0.00 0.07 par:pas; +retoucha retoucher VER 1.98 2.09 0.00 0.14 ind:pas:3s; +retouchai retoucher VER 1.98 2.09 0.00 0.14 ind:pas:1s; +retouchait retoucher VER 1.98 2.09 0.01 0.20 ind:imp:3s; +retouchant retoucher VER 1.98 2.09 0.00 0.14 par:pre; +retouche retouche NOM f s 1.30 2.30 0.61 0.74 +retouchent retoucher VER 1.98 2.09 0.01 0.07 ind:pre:3p; +retoucher retoucher VER 1.98 2.09 1.10 0.54 inf; +retouchera retoucher VER 1.98 2.09 0.03 0.00 ind:fut:3s; +retoucherais retoucher VER 1.98 2.09 0.00 0.07 cnd:pre:1s; +retoucherait retoucher VER 1.98 2.09 0.00 0.14 cnd:pre:3s; +retouches retouche NOM f p 1.30 2.30 0.69 1.55 +retoucheur retoucheur NOM m s 0.01 0.00 0.01 0.00 +retouchez retoucher VER 1.98 2.09 0.07 0.00 imp:pre:2p;ind:pre:2p; +retouché retoucher VER m s 1.98 2.09 0.20 0.20 par:pas; +retouchée retoucher VER f s 1.98 2.09 0.22 0.14 par:pas; +retouchées retoucher VER f p 1.98 2.09 0.02 0.07 par:pas; +retouchés retoucher VER m p 1.98 2.09 0.02 0.20 par:pas; +retour retour NOM m s 138.94 158.65 138.02 153.31 +retourna retourner VER 245.33 290.88 1.14 61.62 ind:pas:3s; +retournai retourner VER 245.33 290.88 0.22 6.55 ind:pas:1s; +retournaient retourner VER 245.33 290.88 0.15 4.80 ind:imp:3p; +retournais retourner VER 245.33 290.88 0.96 3.85 ind:imp:1s;ind:imp:2s; +retournait retourner VER 245.33 290.88 0.93 18.51 ind:imp:3s; +retournant retourner VER 245.33 290.88 0.69 16.89 par:pre; +retourne retourner VER 245.33 290.88 77.27 50.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +retournement retournement NOM m s 0.86 2.91 0.82 2.30 +retournements retournement NOM m p 0.86 2.91 0.04 0.61 +retournent retourner VER 245.33 290.88 2.29 5.00 ind:pre:3p; +retourner retourner VER 245.33 290.88 76.94 57.16 imp:pre:2p;inf; +retournera retourner VER 245.33 290.88 3.56 1.08 ind:fut:3s; +retournerai retourner VER 245.33 290.88 5.58 1.89 ind:fut:1s; +retourneraient retourner VER 245.33 290.88 0.14 0.68 cnd:pre:3p; +retournerais retourner VER 245.33 290.88 0.60 1.01 cnd:pre:1s;cnd:pre:2s; +retournerait retourner VER 245.33 290.88 0.77 1.96 cnd:pre:3s; +retourneras retourner VER 245.33 290.88 1.86 0.20 ind:fut:2s; +retournerez retourner VER 245.33 290.88 0.79 0.34 ind:fut:2p; +retourneriez retourner VER 245.33 290.88 0.13 0.00 cnd:pre:2p; +retournerions retourner VER 245.33 290.88 0.02 0.14 cnd:pre:1p; +retournerons retourner VER 245.33 290.88 0.98 0.68 ind:fut:1p; +retourneront retourner VER 245.33 290.88 0.73 0.41 ind:fut:3p; +retournes retourner VER 245.33 290.88 10.40 1.42 ind:pre:2s;sub:pre:2s; +retournez retourner VER 245.33 290.88 23.55 2.36 imp:pre:2p;ind:pre:2p; +retourniez retourner VER 245.33 290.88 0.80 0.20 ind:imp:2p; +retournions retourner VER 245.33 290.88 0.13 0.95 ind:imp:1p; +retournâmes retourner VER 245.33 290.88 0.00 0.81 ind:pas:1p; +retournons retourner VER 245.33 290.88 9.53 1.22 imp:pre:1p;ind:pre:1p; +retournât retourner VER 245.33 290.88 0.00 0.54 sub:imp:3s; +retournèrent retourner VER 245.33 290.88 0.17 4.39 ind:pas:3p; +retourné retourner VER m s 245.33 290.88 15.05 26.69 par:pas; +retournée retourner VER f s 245.33 290.88 7.81 11.82 par:pas; +retournées retourner VER f p 245.33 290.88 0.34 1.89 par:pas; +retournés retourner VER m p 245.33 290.88 1.79 5.27 par:pas; +retours retour NOM m p 138.94 158.65 0.92 5.34 +retrace retracer VER 1.50 3.58 0.16 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retracent retracer VER 1.50 3.58 0.04 0.14 ind:pre:3p; +retracer retracer VER 1.50 3.58 1.03 1.55 inf; +retracera retracer VER 1.50 3.58 0.01 0.07 ind:fut:3s; +retracerais retracer VER 1.50 3.58 0.00 0.07 cnd:pre:1s; +retracerait retracer VER 1.50 3.58 0.01 0.07 cnd:pre:3s; +retraceront retracer VER 1.50 3.58 0.01 0.00 ind:fut:3p; +retracez retracer VER 1.50 3.58 0.05 0.00 imp:pre:2p; +retracions retracer VER 1.50 3.58 0.01 0.07 ind:imp:1p; +retracé retracer VER m s 1.50 3.58 0.13 0.14 par:pas; +retracée retracer VER f s 1.50 3.58 0.00 0.07 par:pas; +retraduction retraduction NOM f s 0.01 0.00 0.01 0.00 +retraduit retraduire VER m s 0.01 0.14 0.01 0.14 ind:pre:3s;par:pas; +retraire retraire VER 0.12 0.07 0.01 0.00 inf; +retrait retrait NOM m s 4.87 13.72 4.63 13.04 +retraitait retraiter VER 0.79 0.61 0.00 0.14 ind:imp:3s; +retraite retraite NOM f s 39.45 40.14 38.30 38.78 +retraitement retraitement NOM m s 0.06 0.07 0.06 0.07 +retraites retraite NOM f p 39.45 40.14 1.16 1.35 +retraitions retraiter VER 0.79 0.61 0.00 0.07 ind:imp:1p; +retraits retrait NOM m p 4.87 13.72 0.24 0.68 +retraité retraité NOM m s 2.25 5.95 1.17 3.31 +retraitée retraité NOM f s 2.25 5.95 0.11 0.14 +retraitées retraité NOM f p 2.25 5.95 0.10 0.07 +retraités retraité NOM m p 2.25 5.95 0.86 2.43 +retranchai retrancher VER 1.00 7.64 0.00 0.07 ind:pas:1s; +retranchaient retrancher VER 1.00 7.64 0.01 0.14 ind:imp:3p; +retranchait retrancher VER 1.00 7.64 0.00 0.68 ind:imp:3s; +retranchant retrancher VER 1.00 7.64 0.02 0.14 par:pre; +retranche retrancher VER 1.00 7.64 0.04 0.47 ind:pre:3s; +retranchement retranchement NOM m s 0.20 1.69 0.03 0.41 +retranchements retranchement NOM m p 0.20 1.69 0.17 1.28 +retranchent retrancher VER 1.00 7.64 0.04 0.34 ind:pre:3p; +retrancher retrancher VER 1.00 7.64 0.29 1.01 inf; +retranchera retrancher VER 1.00 7.64 0.01 0.07 ind:fut:3s; +retranchez retrancher VER 1.00 7.64 0.01 0.07 imp:pre:2p;ind:pre:2p; +retranchions retrancher VER 1.00 7.64 0.00 0.07 ind:imp:1p; +retranché retrancher VER m s 1.00 7.64 0.47 2.23 par:pas; +retranchée retrancher VER f s 1.00 7.64 0.02 1.08 par:pas; +retranchées retrancher VER f p 1.00 7.64 0.00 0.14 par:pas; +retranchés retrancher VER m p 1.00 7.64 0.09 1.15 par:pas; +retranscription retranscription NOM f s 0.03 0.00 0.03 0.00 +retranscrire retranscrire VER 0.26 0.34 0.21 0.07 inf; +retranscris retranscrire VER 0.26 0.34 0.01 0.14 ind:pre:1s; +retranscrit retranscrire VER m s 0.26 0.34 0.04 0.07 ind:pre:3s;par:pas; +retranscrits retranscrire VER m p 0.26 0.34 0.00 0.07 par:pas; +retransforme retransformer VER 0.20 0.07 0.02 0.07 ind:pre:1s; +retransformer retransformer VER 0.20 0.07 0.16 0.00 inf; +retransformera retransformer VER 0.20 0.07 0.02 0.00 ind:fut:3s; +retransférer retransférer VER 0.01 0.00 0.01 0.00 inf; +retransmet retransmettre VER 1.03 0.74 0.05 0.07 ind:pre:3s; +retransmettait retransmettre VER 1.03 0.74 0.01 0.00 ind:imp:3s; +retransmettant retransmettre VER 1.03 0.74 0.01 0.00 par:pre; +retransmettez retransmettre VER 1.03 0.74 0.02 0.00 imp:pre:2p;ind:pre:2p; +retransmettra retransmettre VER 1.03 0.74 0.02 0.00 ind:fut:3s; +retransmettre retransmettre VER 1.03 0.74 0.25 0.00 inf; +retransmettrons retransmettre VER 1.03 0.74 0.11 0.00 ind:fut:1p; +retransmis retransmettre VER m 1.03 0.74 0.39 0.34 ind:pas:1s;par:pas;par:pas; +retransmise retransmettre VER f s 1.03 0.74 0.16 0.27 par:pas; +retransmission retransmission NOM f s 0.47 0.47 0.36 0.34 +retransmissions retransmission NOM f p 0.47 0.47 0.11 0.14 +retransmit retransmettre VER 1.03 0.74 0.01 0.07 ind:pas:3s; +retraçaient retracer VER 1.50 3.58 0.00 0.20 ind:imp:3p; +retraçais retracer VER 1.50 3.58 0.00 0.07 ind:imp:1s; +retraçait retracer VER 1.50 3.58 0.01 0.68 ind:imp:3s; +retraçant retracer VER 1.50 3.58 0.04 0.27 par:pre; +retravaillait retravailler VER 3.12 0.20 0.03 0.00 ind:imp:3s; +retravaille retravailler VER 3.12 0.20 0.65 0.00 ind:pre:1s;ind:pre:3s; +retravaillent retravailler VER 3.12 0.20 0.01 0.00 ind:pre:3p; +retravailler retravailler VER 3.12 0.20 1.89 0.14 inf; +retravaillera retravailler VER 3.12 0.20 0.05 0.00 ind:fut:3s; +retravaillerai retravailler VER 3.12 0.20 0.04 0.00 ind:fut:1s; +retravaillerait retravailler VER 3.12 0.20 0.03 0.00 cnd:pre:3s; +retravaillerez retravailler VER 3.12 0.20 0.01 0.00 ind:fut:2p; +retravailles retravailler VER 3.12 0.20 0.17 0.00 ind:pre:2s; +retravaillez retravailler VER 3.12 0.20 0.13 0.00 imp:pre:2p;ind:pre:2p; +retravaillé retravailler VER m s 3.12 0.20 0.09 0.07 par:pas; +retravaillée retravailler VER f s 3.12 0.20 0.02 0.00 par:pas; +retraversa retraverser VER 0.17 3.04 0.00 0.41 ind:pas:3s; +retraversai retraverser VER 0.17 3.04 0.00 0.20 ind:pas:1s; +retraversaient retraverser VER 0.17 3.04 0.00 0.07 ind:imp:3p; +retraversais retraverser VER 0.17 3.04 0.00 0.07 ind:imp:1s; +retraversait retraverser VER 0.17 3.04 0.00 0.07 ind:imp:3s; +retraversant retraverser VER 0.17 3.04 0.00 0.27 par:pre; +retraverse retraverser VER 0.17 3.04 0.03 0.27 ind:pre:1s;ind:pre:3s; +retraversent retraverser VER 0.17 3.04 0.00 0.07 ind:pre:3p; +retraverser retraverser VER 0.17 3.04 0.12 0.81 inf; +retraverserait retraverser VER 0.17 3.04 0.00 0.07 cnd:pre:3s; +retraversions retraverser VER 0.17 3.04 0.00 0.07 ind:imp:1p; +retraversons retraverser VER 0.17 3.04 0.01 0.20 imp:pre:1p;ind:pre:1p; +retraversé retraverser VER m s 0.17 3.04 0.01 0.27 par:pas; +retraversée retraverser VER f s 0.17 3.04 0.00 0.20 par:pas; +retreinte retreinte NOM f s 0.01 0.00 0.01 0.00 +retrempai retremper VER 0.01 0.95 0.00 0.07 ind:pas:1s; +retrempaient retremper VER 0.01 0.95 0.01 0.14 ind:imp:3p; +retrempait retremper VER 0.01 0.95 0.00 0.07 ind:imp:3s; +retremper retremper VER 0.01 0.95 0.00 0.54 inf; +retrempé retremper VER m s 0.01 0.95 0.00 0.14 par:pas; +retriever retriever NOM m s 0.17 0.00 0.17 0.00 +retroussa retrousser VER 0.92 9.46 0.01 0.54 ind:pas:3s; +retroussage retroussage NOM m s 0.00 0.07 0.00 0.07 +retroussaient retrousser VER 0.92 9.46 0.00 0.20 ind:imp:3p; +retroussais retrousser VER 0.92 9.46 0.00 0.07 ind:imp:1s; +retroussait retrousser VER 0.92 9.46 0.00 1.28 ind:imp:3s; +retroussant retrousser VER 0.92 9.46 0.00 1.55 par:pre; +retrousse retrousser VER 0.92 9.46 0.39 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retroussent retrousser VER 0.92 9.46 0.00 0.27 ind:pre:3p; +retrousser retrousser VER 0.92 9.46 0.21 0.95 inf; +retroussette retroussette NOM f s 0.00 0.27 0.00 0.27 +retroussez retrousser VER 0.92 9.46 0.14 0.00 imp:pre:2p; +retroussis retroussis NOM m 0.00 0.41 0.00 0.41 +retroussé retroussé ADJ m s 0.35 6.49 0.20 1.89 +retroussée retroussé ADJ f s 0.35 6.49 0.01 1.08 +retroussées retroussé ADJ f p 0.35 6.49 0.03 3.11 +retroussés retroussé ADJ m p 0.35 6.49 0.11 0.41 +retrouva retrouver VER 295.09 416.22 1.60 28.24 ind:pas:3s; +retrouvai retrouver VER 295.09 416.22 0.32 13.85 ind:pas:1s; +retrouvaient retrouver VER 295.09 416.22 0.48 9.05 ind:imp:3p; +retrouvaille retrouvaille NOM f s 2.46 6.82 0.03 0.47 +retrouvailles retrouvaille NOM f p 2.46 6.82 2.43 6.35 +retrouvais retrouver VER 295.09 416.22 1.42 12.77 ind:imp:1s;ind:imp:2s; +retrouvait retrouver VER 295.09 416.22 1.89 31.01 ind:imp:3s; +retrouvant retrouver VER 295.09 416.22 0.47 9.86 par:pre; +retrouvas retrouver VER 295.09 416.22 0.00 0.07 ind:pas:2s; +retrouve retrouver VER 295.09 416.22 61.54 47.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +retrouvent retrouver VER 295.09 416.22 4.47 7.23 ind:pre:3p; +retrouver retrouver VER 295.09 416.22 100.83 125.20 inf;; +retrouvera retrouver VER 295.09 416.22 11.55 5.07 ind:fut:3s; +retrouverai retrouver VER 295.09 416.22 8.23 3.04 ind:fut:1s; +retrouveraient retrouver VER 295.09 416.22 0.26 2.43 cnd:pre:3p; +retrouverais retrouver VER 295.09 416.22 1.24 3.11 cnd:pre:1s;cnd:pre:2s; +retrouverait retrouver VER 295.09 416.22 1.17 6.62 cnd:pre:3s; +retrouveras retrouver VER 295.09 416.22 3.36 0.95 ind:fut:2s; +retrouverez retrouver VER 295.09 416.22 3.13 0.95 ind:fut:2p; +retrouveriez retrouver VER 295.09 416.22 0.09 0.27 cnd:pre:2p; +retrouverions retrouver VER 295.09 416.22 0.06 0.81 cnd:pre:1p; +retrouverons retrouver VER 295.09 416.22 2.52 2.30 ind:fut:1p; +retrouveront retrouver VER 295.09 416.22 2.21 1.42 ind:fut:3p; +retrouves retrouver VER 295.09 416.22 5.05 1.28 ind:pre:2s;sub:pre:2s; +retrouvez retrouver VER 295.09 416.22 5.79 0.81 imp:pre:2p;ind:pre:2p; +retrouviez retrouver VER 295.09 416.22 0.72 0.34 ind:imp:2p;sub:pre:2p; +retrouvions retrouver VER 295.09 416.22 0.47 5.41 ind:imp:1p; +retrouvâmes retrouver VER 295.09 416.22 0.04 2.16 ind:pas:1p; +retrouvons retrouver VER 295.09 416.22 3.60 3.85 imp:pre:1p;ind:pre:1p; +retrouvât retrouver VER 295.09 416.22 0.00 0.68 sub:imp:3s; +retrouvèrent retrouver VER 295.09 416.22 0.36 6.42 ind:pas:3p; +retrouvé retrouver VER m s 295.09 416.22 50.38 55.00 par:pas;par:pas;par:pas; +retrouvée retrouver VER f s 295.09 416.22 13.51 15.20 par:pas; +retrouvées retrouver VER f p 295.09 416.22 1.90 2.64 par:pas; +retrouvés retrouver VER m p 295.09 416.22 6.44 10.61 par:pas; +rets rets NOM m 0.12 0.27 0.12 0.27 +retsina retsina NOM m s 0.13 0.00 0.13 0.00 +retuber retuber VER 0.03 0.00 0.03 0.00 inf; +retuer retuer VER 0.08 0.07 0.01 0.00 inf; +retéléphone retéléphoner VER 0.29 0.07 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +retéléphoner retéléphoner VER 0.29 0.07 0.15 0.00 inf; +reubeu reubeu NOM m s 0.01 0.61 0.01 0.47 +reubeus reubeu NOM m p 0.01 0.61 0.00 0.14 +revîmes revoir VER 162.83 139.46 0.10 0.20 ind:pas:1p; +revînt revenir VER 618.61 490.54 0.00 1.69 sub:imp:3s; +revalidation revalidation NOM f s 0.01 0.00 0.01 0.00 +revalider revalider VER 0.02 0.00 0.02 0.00 inf; +revaloir revaloir VER 3.46 0.74 0.11 0.07 inf; +revalorisait revaloriser VER 0.03 0.34 0.00 0.14 ind:imp:3s; +revalorisation revalorisation NOM f s 0.00 0.14 0.00 0.14 +revalorisent revaloriser VER 0.03 0.34 0.00 0.07 ind:pre:3p; +revaloriser revaloriser VER 0.03 0.34 0.02 0.00 inf; +revalorisé revaloriser VER m s 0.03 0.34 0.01 0.14 par:pas; +revancha revancher VER 0.00 0.34 0.00 0.07 ind:pas:3s; +revanchaient revancher VER 0.00 0.34 0.00 0.07 ind:imp:3p; +revanchard revanchard ADJ m s 0.06 0.34 0.04 0.14 +revancharde revanchard ADJ f s 0.06 0.34 0.02 0.07 +revanchardes revanchard ADJ f p 0.06 0.34 0.00 0.14 +revanchards revanchard NOM m p 0.03 0.27 0.00 0.27 +revanche revanche NOM f s 13.81 41.62 13.73 41.01 +revanchent revancher VER 0.00 0.34 0.00 0.07 ind:pre:3p; +revancher revancher VER 0.00 0.34 0.00 0.14 inf; +revanches revanche NOM f p 13.81 41.62 0.08 0.61 +revaudra revaloir VER 3.46 0.74 0.25 0.07 ind:fut:3s; +revaudrai revaloir VER 3.46 0.74 2.80 0.54 ind:fut:1s; +revaudraient revaloir VER 3.46 0.74 0.01 0.00 cnd:pre:3p; +revaudrais revaloir VER 3.46 0.74 0.13 0.00 cnd:pre:1s;cnd:pre:2s; +revaudrait revaloir VER 3.46 0.74 0.02 0.07 cnd:pre:3s; +revaudras revaloir VER 3.46 0.74 0.13 0.00 ind:fut:2s; +revenaient revenir VER 618.61 490.54 1.27 17.64 ind:imp:3p; +revenais revenir VER 618.61 490.54 3.95 8.24 ind:imp:1s;ind:imp:2s; +revenait revenir VER 618.61 490.54 7.47 56.76 ind:imp:3s; +revenant revenir VER 618.61 490.54 4.49 17.23 par:pre; +revenante revenant ADJ f s 0.35 1.69 0.23 0.27 +revenants revenant NOM m p 1.82 3.99 0.95 1.55 +revend revendre VER 6.76 6.89 0.51 0.14 ind:pre:3s; +revendable revendable ADJ s 0.01 0.07 0.01 0.07 +revendaient revendre VER 6.76 6.89 0.01 0.34 ind:imp:3p; +revendais revendre VER 6.76 6.89 0.02 0.00 ind:imp:1s; +revendait revendre VER 6.76 6.89 0.39 0.54 ind:imp:3s; +revendant revendre VER 6.76 6.89 0.09 0.07 par:pre; +revendent revendre VER 6.76 6.89 0.29 0.34 ind:pre:3p; +revendes revendre VER 6.76 6.89 0.00 0.07 sub:pre:2s; +revendeur revendeur NOM m s 1.23 0.88 0.86 0.47 +revendeurs revendeur NOM m p 1.23 0.88 0.34 0.34 +revendeuse revendeur NOM f s 1.23 0.88 0.03 0.07 +revendez revendre VER 6.76 6.89 0.14 0.00 imp:pre:2p;ind:pre:2p; +revendicateur revendicateur ADJ m s 0.00 0.27 0.00 0.07 +revendicateurs revendicateur NOM m p 0.00 0.07 0.00 0.07 +revendicatif revendicatif ADJ m s 0.00 0.27 0.00 0.07 +revendicatifs revendicatif ADJ m p 0.00 0.27 0.00 0.07 +revendication revendication NOM f s 1.98 3.78 0.94 1.42 +revendications revendication NOM f p 1.98 3.78 1.04 2.36 +revendicative revendicatif ADJ f s 0.00 0.27 0.00 0.07 +revendicatives revendicatif ADJ f p 0.00 0.27 0.00 0.07 +revendicatrice revendicateur ADJ f s 0.00 0.27 0.00 0.14 +revendicatrices revendicateur ADJ f p 0.00 0.27 0.00 0.07 +revendiqua revendiquer VER 2.89 5.07 0.01 0.07 ind:pas:3s; +revendiquai revendiquer VER 2.89 5.07 0.00 0.07 ind:pas:1s; +revendiquaient revendiquer VER 2.89 5.07 0.00 0.34 ind:imp:3p; +revendiquais revendiquer VER 2.89 5.07 0.02 0.20 ind:imp:1s;ind:imp:2s; +revendiquait revendiquer VER 2.89 5.07 0.03 0.61 ind:imp:3s; +revendiquant revendiquer VER 2.89 5.07 0.17 0.47 par:pre; +revendique revendiquer VER 2.89 5.07 0.73 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +revendiquent revendiquer VER 2.89 5.07 0.12 0.34 ind:pre:3p; +revendiquer revendiquer VER 2.89 5.07 0.82 1.42 inf; +revendiquera revendiquer VER 2.89 5.07 0.04 0.07 ind:fut:3s; +revendiquerais revendiquer VER 2.89 5.07 0.01 0.00 cnd:pre:2s; +revendiquerait revendiquer VER 2.89 5.07 0.00 0.07 cnd:pre:3s; +revendiquez revendiquer VER 2.89 5.07 0.02 0.14 imp:pre:2p;ind:pre:2p; +revendiquons revendiquer VER 2.89 5.07 0.02 0.14 imp:pre:1p;ind:pre:1p; +revendiquât revendiquer VER 2.89 5.07 0.00 0.07 sub:imp:3s; +revendiqué revendiquer VER m s 2.89 5.07 0.69 0.27 par:pas; +revendiquée revendiquer VER f s 2.89 5.07 0.20 0.07 par:pas; +revendis revendre VER 6.76 6.89 0.00 0.07 ind:pas:1s; +revendit revendre VER 6.76 6.89 0.00 0.47 ind:pas:3s; +revendra revendre VER 6.76 6.89 0.13 0.00 ind:fut:3s; +revendrai revendre VER 6.76 6.89 0.29 0.14 ind:fut:1s; +revendraient revendre VER 6.76 6.89 0.00 0.07 cnd:pre:3p; +revendrais revendre VER 6.76 6.89 0.13 0.00 cnd:pre:1s; +revendrait revendre VER 6.76 6.89 0.01 0.14 cnd:pre:3s; +revendre revendre VER 6.76 6.89 3.25 2.91 inf; +revendrons revendre VER 6.76 6.89 0.03 0.00 ind:fut:1p; +revendront revendre VER 6.76 6.89 0.03 0.00 ind:fut:3p; +revends revendre VER 6.76 6.89 0.34 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revendu revendre VER m s 6.76 6.89 0.55 0.95 par:pas; +revendue revendre VER f s 6.76 6.89 0.12 0.14 par:pas; +revendues revendre VER f p 6.76 6.89 0.28 0.00 par:pas; +revendus revendre VER m p 6.76 6.89 0.14 0.27 par:pas; +revenez revenir VER 618.61 490.54 33.64 6.49 imp:pre:2p;ind:pre:2p; +reveniez revenir VER 618.61 490.54 1.13 0.54 ind:imp:2p;sub:pre:2p; +revenions revenir VER 618.61 490.54 0.80 2.03 ind:imp:1p; +revenir revenir VER 618.61 490.54 105.46 76.28 inf; +revenons revenir VER 618.61 490.54 8.01 4.59 imp:pre:1p;ind:pre:1p; +revente revente NOM f s 0.28 0.34 0.27 0.20 +reventes revente NOM f p 0.28 0.34 0.01 0.14 +revenu revenir VER m s 618.61 490.54 57.30 42.43 par:pas; +revenue revenir VER f s 618.61 490.54 23.46 19.32 par:pas; +revenues revenir VER f p 618.61 490.54 1.50 2.03 par:pas; +revenus revenir VER m p 618.61 490.54 8.69 9.46 par:pas; +reverdi reverdir VER m s 0.17 1.08 0.14 0.20 par:pas; +reverdie reverdir VER f s 0.17 1.08 0.00 0.20 par:pas; +reverdies reverdir VER f p 0.17 1.08 0.00 0.14 par:pas; +reverdir reverdir VER 0.17 1.08 0.02 0.20 inf; +reverdiront reverdir VER 0.17 1.08 0.00 0.07 ind:fut:3p; +reverdissaient reverdir VER 0.17 1.08 0.00 0.14 ind:imp:3p; +reverdit reverdir VER 0.17 1.08 0.02 0.14 ind:pre:3s; +reverni revernir VER m s 0.03 0.00 0.01 0.00 par:pas; +revernie reverni VER f s 0.01 0.07 0.01 0.07 par:pas; +revernir revernir VER 0.03 0.00 0.01 0.00 inf; +reverra revoir VER 162.83 139.46 14.31 3.24 ind:fut:3s; +reverrai revoir VER 162.83 139.46 9.07 4.05 ind:fut:1s; +reverraient revoir VER 162.83 139.46 0.03 0.88 cnd:pre:3p; +reverrais revoir VER 162.83 139.46 1.15 1.76 cnd:pre:1s;cnd:pre:2s; +reverrait revoir VER 162.83 139.46 1.09 3.38 cnd:pre:3s; +reverras revoir VER 162.83 139.46 5.30 0.95 ind:fut:2s; +reverrez revoir VER 162.83 139.46 2.74 0.47 ind:fut:2p; +reverrions revoir VER 162.83 139.46 0.40 0.27 cnd:pre:1p; +reverrons revoir VER 162.83 139.46 5.41 2.77 ind:fut:1p; +reverront revoir VER 162.83 139.46 0.55 0.74 ind:fut:3p; +revers revers NOM m 3.60 25.00 3.60 25.00 +reversa reverser VER 0.48 1.22 0.00 0.27 ind:pas:3s; +reversaient reverser VER 0.48 1.22 0.01 0.00 ind:imp:3p; +reversait reverser VER 0.48 1.22 0.02 0.07 ind:imp:3s; +reversant reverser VER 0.48 1.22 0.00 0.07 par:pre; +reverse reverser VER 0.48 1.22 0.08 0.34 imp:pre:2s;ind:pre:3s; +reverser reverser VER 0.48 1.22 0.09 0.14 inf; +reverserait reverser VER 0.48 1.22 0.00 0.07 cnd:pre:3s; +reversez reverser VER 0.48 1.22 0.11 0.00 imp:pre:2p; +reversé reverser VER m s 0.48 1.22 0.17 0.27 par:pas; +reveuille revouloir VER 0.45 0.41 0.00 0.07 sub:pre:1s; +reveulent revouloir VER 0.45 0.41 0.02 0.07 ind:pre:3p; +reveux revouloir VER 0.45 0.41 0.24 0.07 ind:pre:1s;ind:pre:2s; +revida revider VER 0.00 0.14 0.00 0.07 ind:pas:3s; +revidèrent revider VER 0.00 0.14 0.00 0.07 ind:pas:3p; +reviendra revenir VER 618.61 490.54 34.48 11.62 ind:fut:3s; +reviendrai revenir VER 618.61 490.54 29.57 8.65 ind:fut:1s; +reviendraient revenir VER 618.61 490.54 0.99 1.96 cnd:pre:3p; +reviendrais revenir VER 618.61 490.54 5.80 1.76 cnd:pre:1s;cnd:pre:2s; +reviendrait revenir VER 618.61 490.54 5.18 11.76 cnd:pre:3s; +reviendras revenir VER 618.61 490.54 7.64 2.09 ind:fut:2s; +reviendrez revenir VER 618.61 490.54 4.05 2.64 ind:fut:2p; +reviendriez revenir VER 618.61 490.54 0.70 0.34 cnd:pre:2p; +reviendrions revenir VER 618.61 490.54 0.11 0.27 cnd:pre:1p; +reviendrons revenir VER 618.61 490.54 4.21 1.82 ind:fut:1p; +reviendront revenir VER 618.61 490.54 5.40 3.45 ind:fut:3p; +revienne revenir VER 618.61 490.54 14.99 7.57 sub:pre:1s;sub:pre:3s; +reviennent revenir VER 618.61 490.54 15.50 14.86 ind:pre:3p;sub:pre:3p; +reviennes revenir VER 618.61 490.54 3.25 0.95 sub:pre:2s; +reviens revenir VER 618.61 490.54 163.19 22.36 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revient revenir VER 618.61 490.54 63.17 51.49 ind:pre:3s; +revigoraient revigorer VER 0.29 0.54 0.00 0.07 ind:imp:3p; +revigorant revigorant ADJ m s 0.28 0.74 0.28 0.20 +revigorante revigorant ADJ f s 0.28 0.74 0.01 0.41 +revigorantes revigorant ADJ f p 0.28 0.74 0.00 0.14 +revigore revigorer VER 0.29 0.54 0.04 0.07 ind:pre:3s; +revigorent revigorer VER 0.29 0.54 0.00 0.07 ind:pre:3p; +revigorer revigorer VER 0.29 0.54 0.11 0.07 inf; +revigoré revigorer VER m s 0.29 0.54 0.07 0.07 par:pas; +revigorée revigorer VER f s 0.29 0.54 0.01 0.07 par:pas; +revigorées revigorer VER f p 0.29 0.54 0.01 0.00 par:pas; +revinrent revenir VER 618.61 490.54 0.47 7.64 ind:pas:3p; +revins revenir VER 618.61 490.54 0.50 4.12 ind:pas:1s;ind:pas:2s; +revinssent revenir VER 618.61 490.54 0.00 0.07 sub:imp:3p; +revint revenir VER 618.61 490.54 2.24 70.41 ind:pas:3s; +revirement revirement NOM m s 0.66 1.62 0.57 1.35 +revirements revirement NOM m p 0.66 1.62 0.09 0.27 +revirent revoir VER 162.83 139.46 0.01 0.34 ind:pas:3p; +revirer revirer VER 0.01 0.34 0.01 0.00 inf; +revis revivre VER 10.37 20.68 1.16 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revisita revisiter VER 0.21 0.61 0.00 0.07 ind:pas:3s; +revisite revisiter VER 0.21 0.61 0.02 0.00 ind:pre:3s; +revisitent revisiter VER 0.21 0.61 0.00 0.07 ind:pre:3p; +revisiter revisiter VER 0.21 0.61 0.16 0.14 inf; +revisité revisiter VER m s 0.21 0.61 0.02 0.14 par:pas; +revisitée revisiter VER f s 0.21 0.61 0.01 0.14 par:pas; +revissa revisser VER 0.15 0.27 0.00 0.07 ind:pas:3s; +revisse revisser VER 0.15 0.27 0.01 0.07 ind:pre:1s; +revisser revisser VER 0.15 0.27 0.00 0.07 inf; +revissé revisser VER m s 0.15 0.27 0.14 0.00 par:pas; +revissées revisser VER f p 0.15 0.27 0.00 0.07 par:pas; +revit revivre VER 10.37 20.68 0.70 1.01 ind:pre:3s; +revitalisant revitalisant ADJ m s 0.04 0.00 0.04 0.00 +revitalisation revitalisation NOM f s 0.04 0.07 0.04 0.07 +revitalise revitaliser VER 0.19 0.00 0.03 0.00 imp:pre:2s;ind:pre:3s; +revitaliser revitaliser VER 0.19 0.00 0.15 0.00 inf; +revitalisera revitaliser VER 0.19 0.00 0.01 0.00 ind:fut:3s; +revivaient revivre VER 10.37 20.68 0.01 0.47 ind:imp:3p; +revivais revivre VER 10.37 20.68 0.03 0.47 ind:imp:1s;ind:imp:2s; +revivait revivre VER 10.37 20.68 0.28 2.23 ind:imp:3s; +revival revival NOM m s 0.14 0.00 0.14 0.00 +revivant revivre VER 10.37 20.68 0.12 0.95 par:pre; +revive revivre VER 10.37 20.68 0.47 0.07 sub:pre:1s;sub:pre:3s; +revivent revivre VER 10.37 20.68 0.57 0.34 ind:pre:3p; +revivez revivre VER 10.37 20.68 0.14 0.00 imp:pre:2p;ind:pre:2p; +revivifiant revivifier VER 0.06 0.20 0.04 0.00 par:pre; +revivifie revivifier VER 0.06 0.20 0.01 0.07 ind:pre:1s;ind:pre:3s; +revivifier revivifier VER 0.06 0.20 0.01 0.00 inf; +revivifié revivifié ADJ m s 0.00 0.07 0.00 0.07 +revivifiée revivifier VER f s 0.06 0.20 0.00 0.07 par:pas; +revivifiées revivifier VER f p 0.06 0.20 0.00 0.07 par:pas; +revivions revivre VER 10.37 20.68 0.01 0.07 ind:imp:1p; +reviviscence reviviscence NOM f s 0.00 0.07 0.00 0.07 +revivons revivre VER 10.37 20.68 0.02 0.00 ind:pre:1p; +revivra revivre VER 10.37 20.68 0.13 0.20 ind:fut:3s; +revivrai revivre VER 10.37 20.68 0.14 0.14 ind:fut:1s; +revivraient revivre VER 10.37 20.68 0.01 0.14 cnd:pre:3p; +revivrais revivre VER 10.37 20.68 0.04 0.00 cnd:pre:1s;cnd:pre:2s; +revivrait revivre VER 10.37 20.68 0.02 0.34 cnd:pre:3s; +revivras revivre VER 10.37 20.68 0.03 0.00 ind:fut:2s; +revivre revivre VER 10.37 20.68 6.04 8.45 inf; +revivrez revivre VER 10.37 20.68 0.05 0.00 ind:fut:2p; +revivrons revivre VER 10.37 20.68 0.14 0.07 ind:fut:1p; +revoici revoici PRE 0.67 1.62 0.67 1.62 +revoie revoir VER 162.83 139.46 3.92 2.16 sub:pre:1s;sub:pre:3s; +revoient revoir VER 162.83 139.46 0.10 0.41 ind:pre:3p;sub:pre:3p; +revoies revoir VER 162.83 139.46 0.15 0.00 sub:pre:2s; +revoilà revoilà PRE 7.56 3.04 7.56 3.04 +revoir revoir NOM m s 262.05 36.01 262.05 36.01 +revois revoir VER 162.83 139.46 10.32 17.77 imp:pre:2s;ind:pre:1s;ind:pre:2s; +revoit revoir VER 162.83 139.46 5.92 5.81 ind:pre:3s; +revolait revoler VER 0.08 0.20 0.00 0.07 ind:imp:3s; +revole revoler VER 0.08 0.20 0.01 0.07 ind:pre:3s; +revolent revoler VER 0.08 0.20 0.00 0.07 ind:pre:3p; +revoler revoler VER 0.08 0.20 0.03 0.00 inf; +revolera revoler VER 0.08 0.20 0.02 0.00 ind:fut:3s; +revolé revoler VER m s 0.08 0.20 0.02 0.00 par:pas; +revolver revolver NOM m s 30.74 25.20 28.05 23.31 +revolvers revolver NOM m p 30.74 25.20 2.69 1.89 +revomir revomir VER 0.01 0.07 0.01 0.00 inf; +revomissant revomir VER 0.01 0.07 0.00 0.07 par:pre; +revoter revoter VER 0.03 0.00 0.03 0.00 inf; +revoulait revouloir VER 0.45 0.41 0.01 0.14 ind:imp:3s; +revoulez revouloir VER 0.45 0.41 0.14 0.00 ind:pre:2p; +revouloir revouloir VER 0.45 0.41 0.00 0.07 inf; +revoyaient revoir VER 162.83 139.46 0.00 0.34 ind:imp:3p; +revoyais revoir VER 162.83 139.46 0.96 4.73 ind:imp:1s;ind:imp:2s; +revoyait revoir VER 162.83 139.46 0.40 9.73 ind:imp:3s; +revoyant revoir VER 162.83 139.46 0.39 1.82 par:pre; +revoyez revoir VER 162.83 139.46 0.95 0.14 imp:pre:2p;ind:pre:2p; +revoyiez revoir VER 162.83 139.46 0.11 0.00 ind:imp:2p;sub:pre:2p; +revoyions revoir VER 162.83 139.46 0.18 0.14 ind:imp:1p; +revoyons revoir VER 162.83 139.46 1.44 0.41 imp:pre:1p;ind:pre:1p; +revoyure revoyure NOM f s 0.28 0.47 0.28 0.47 +revu revoir VER m s 162.83 139.46 14.38 14.80 par:pas; +revêche revêche ADJ s 0.28 1.76 0.23 1.35 +revêches revêche ADJ p 0.28 1.76 0.05 0.41 +revécu revivre VER m s 10.37 20.68 0.27 0.27 par:pas; +revécue revivre VER f s 10.37 20.68 0.00 0.07 par:pas; +revécues revécu ADJ f p 0.00 0.07 0.00 0.07 +revécurent revivre VER 10.37 20.68 0.00 0.07 ind:pas:3p; +revécut revivre VER 10.37 20.68 0.00 0.41 ind:pas:3s; +revue revue NOM f s 10.10 33.92 7.79 25.14 +revues revue NOM f p 10.10 33.92 2.31 8.78 +revuistes revuiste NOM p 0.01 0.00 0.01 0.00 +revérifier revérifier VER 0.67 0.00 0.57 0.00 inf; +revérifié revérifié ADJ m s 0.34 0.07 0.25 0.07 +revus revoir VER m p 162.83 139.46 2.02 3.31 par:pas; +revêt revêtir VER 2.68 26.08 0.25 2.09 ind:pre:3s; +revêtît revêtir VER 2.68 26.08 0.00 0.07 sub:imp:3s; +revêtaient revêtir VER 2.68 26.08 0.04 0.68 ind:imp:3p; +revêtais revêtir VER 2.68 26.08 0.00 0.20 ind:imp:1s; +revêtait revêtir VER 2.68 26.08 0.02 2.97 ind:imp:3s; +revêtant revêtir VER 2.68 26.08 0.01 0.88 par:pre; +revêtement revêtement NOM m s 1.11 0.74 0.99 0.68 +revêtements revêtement NOM m p 1.11 0.74 0.12 0.07 +revêtent revêtir VER 2.68 26.08 0.11 0.61 ind:pre:3p; +revêtez revêtir VER 2.68 26.08 0.32 0.07 imp:pre:2p; +revêtir revêtir VER 2.68 26.08 0.60 3.11 inf; +revêtira revêtir VER 2.68 26.08 0.02 0.14 ind:fut:3s; +revêtirait revêtir VER 2.68 26.08 0.00 0.41 cnd:pre:3s; +revêtirent revêtir VER 2.68 26.08 0.00 0.14 ind:pas:3p; +revêtiront revêtir VER 2.68 26.08 0.00 0.07 ind:fut:3p; +revêtis revêtir VER 2.68 26.08 0.01 0.20 ind:pas:1s; +revêtit revêtir VER 2.68 26.08 0.01 1.15 ind:pas:3s; +revêts revêtir VER 2.68 26.08 0.03 0.07 ind:pre:1s;ind:pre:2s; +revêtu revêtir VER m s 2.68 26.08 1.16 8.45 par:pas; +revêtue revêtir VER f s 2.68 26.08 0.02 2.36 par:pas; +revêtues revêtir VER f p 2.68 26.08 0.00 0.41 par:pas; +revêtus revêtir VER m p 2.68 26.08 0.07 2.03 par:pas; +rewrité rewriter VER m s 0.00 0.07 0.00 0.07 par:pas; +rex rex NOM m 10.57 1.28 10.57 1.28 +rexiste rexiste ADJ f s 0.01 0.00 0.01 0.00 +rexistes rexiste NOM p 0.00 0.07 0.00 0.07 +rez_de_chaussée rez_de_chaussée NOM m 2.34 16.96 2.34 16.96 +rez_de_jardin rez_de_jardin NOM m 0.01 0.00 0.01 0.00 +rez rez PRE 0.36 0.34 0.36 0.34 +rezzou rezzou NOM m s 0.00 0.20 0.00 0.07 +rezzous rezzou NOM m p 0.00 0.20 0.00 0.14 +rhô rhô NOM m 0.01 0.00 0.01 0.00 +rhabilla rhabiller VER 5.50 9.53 0.00 0.95 ind:pas:3s; +rhabillage rhabillage NOM m s 0.01 0.00 0.01 0.00 +rhabillaient rhabiller VER 5.50 9.53 0.00 0.14 ind:imp:3p; +rhabillais rhabiller VER 5.50 9.53 0.03 0.00 ind:imp:1s;ind:imp:2s; +rhabillait rhabiller VER 5.50 9.53 0.01 0.20 ind:imp:3s; +rhabillant rhabiller VER 5.50 9.53 0.14 0.68 par:pre; +rhabille rhabiller VER 5.50 9.53 0.79 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +rhabillent rhabiller VER 5.50 9.53 0.00 0.20 ind:pre:3p; +rhabiller rhabiller VER 5.50 9.53 2.22 3.45 inf; +rhabilles rhabiller VER 5.50 9.53 0.28 0.14 ind:pre:2s; +rhabilleur rhabilleur NOM m s 0.00 0.07 0.00 0.07 +rhabillez rhabiller VER 5.50 9.53 1.42 0.14 imp:pre:2p;ind:pre:2p; +rhabilliez rhabiller VER 5.50 9.53 0.01 0.00 ind:imp:2p; +rhabillons rhabiller VER 5.50 9.53 0.02 0.00 imp:pre:1p; +rhabillèrent rhabiller VER 5.50 9.53 0.00 0.20 ind:pas:3p; +rhabillé rhabiller VER m s 5.50 9.53 0.41 0.68 par:pas; +rhabillée rhabiller VER f s 5.50 9.53 0.17 0.74 par:pas; +rhabillées rhabiller VER f p 5.50 9.53 0.01 0.07 par:pas; +rhabillés rhabiller VER m p 5.50 9.53 0.00 0.54 par:pas; +rhapsodie rhapsodie NOM f s 0.07 0.41 0.07 0.34 +rhapsodies rhapsodie NOM f p 0.07 0.41 0.00 0.07 +rhingraves rhingrave NOM m p 0.00 0.07 0.00 0.07 +rhinite rhinite NOM f s 0.03 0.14 0.03 0.07 +rhinites rhinite NOM f p 0.03 0.14 0.00 0.07 +rhino rhino NOM m s 0.90 0.61 0.83 0.54 +rhinocéros rhinocéros NOM m 2.51 2.50 2.51 2.50 +rhinoplastie rhinoplastie NOM f s 0.23 0.00 0.23 0.00 +rhinos rhino NOM m p 0.90 0.61 0.07 0.07 +rhinoscopie rhinoscopie NOM f s 0.10 0.00 0.10 0.00 +rhizome rhizome NOM m s 0.01 0.00 0.01 0.00 +rhizopus rhizopus NOM m 0.04 0.00 0.04 0.00 +rho rho NOM m s 0.06 0.00 0.06 0.00 +rhodamine rhodamine NOM f s 0.01 0.00 0.01 0.00 +rhodanien rhodanien ADJ m s 0.00 0.14 0.00 0.14 +rhodia rhodia NOM m s 0.00 0.07 0.00 0.07 +rhodium rhodium NOM m s 0.04 0.00 0.04 0.00 +rhodo rhodo NOM m s 0.00 0.07 0.00 0.07 +rhodoïd rhodoïd NOM m s 0.00 0.14 0.00 0.14 +rhododendron rhododendron NOM m s 0.06 0.81 0.02 0.07 +rhododendrons rhododendron NOM m p 0.06 0.81 0.04 0.74 +rhombe rhombe NOM m s 0.00 0.07 0.00 0.07 +rhomboïdal rhomboïdal ADJ m s 0.00 0.14 0.00 0.14 +rhomboïdes rhomboïde NOM m p 0.00 0.07 0.00 0.07 +rhovyl rhovyl NOM m s 0.00 0.07 0.00 0.07 +rhubarbe rhubarbe NOM f s 0.26 6.55 0.26 6.49 +rhubarbes rhubarbe NOM f p 0.26 6.55 0.00 0.07 +rhum rhum NOM m s 6.29 12.70 6.29 12.70 +rhumatisant rhumatisant ADJ m s 0.14 0.61 0.00 0.34 +rhumatisante rhumatisant ADJ f s 0.14 0.61 0.14 0.07 +rhumatisants rhumatisant ADJ m p 0.14 0.61 0.00 0.20 +rhumatismal rhumatismal ADJ m s 0.03 0.20 0.00 0.07 +rhumatismale rhumatismal ADJ f s 0.03 0.20 0.03 0.07 +rhumatismales rhumatismal ADJ f p 0.03 0.20 0.00 0.07 +rhumatisme rhumatisme NOM m s 2.31 3.78 0.96 0.95 +rhumatismes rhumatisme NOM m p 2.31 3.78 1.35 2.84 +rhumatoïde rhumatoïde ADJ f s 0.01 0.00 0.01 0.00 +rhumatologie rhumatologie NOM f s 0.16 0.00 0.16 0.00 +rhumatologue rhumatologue NOM s 0.04 0.00 0.04 0.00 +rhumbs rhumb NOM m p 0.00 0.14 0.00 0.14 +rhume rhume NOM m s 8.17 5.61 7.72 4.93 +rhumerie rhumerie NOM f s 0.03 0.14 0.03 0.14 +rhumes rhume NOM m p 8.17 5.61 0.45 0.68 +rhénan rhénan ADJ m s 0.00 1.69 0.00 0.20 +rhénane rhénan ADJ f s 0.00 1.69 0.00 0.41 +rhénans rhénan ADJ m p 0.00 1.69 0.00 1.08 +rhéostat rhéostat NOM m s 0.00 0.34 0.00 0.34 +rhésus rhésus NOM m 0.37 0.14 0.37 0.14 +rhéteur rhéteur NOM m s 0.00 0.47 0.00 0.20 +rhéteurs rhéteur NOM m p 0.00 0.47 0.00 0.27 +rhétoricien rhétoricien ADJ m s 0.01 0.00 0.01 0.00 +rhétorique rhétorique NOM f s 0.89 2.03 0.88 2.03 +rhétoriques rhétorique ADJ f p 0.48 0.47 0.04 0.20 +rhynchites rhynchite NOM m p 0.00 0.07 0.00 0.07 +rhyolite rhyolite NOM f s 0.02 0.00 0.02 0.00 +rhythm_n_blues rhythm_n_blues NOM m 0.02 0.00 0.02 0.00 +rhythm_and_blues rhythm_and_blues NOM m 0.08 0.00 0.08 0.00 +ri rire VER m s 140.25 320.54 8.22 15.00 par:pas; +ria ria NOM f s 2.21 0.00 2.21 0.00 +riaient rire VER 140.25 320.54 1.60 12.70 ind:imp:3p; +riais rire VER 140.25 320.54 1.32 3.85 ind:imp:1s;ind:imp:2s; +riait rire VER 140.25 320.54 3.34 37.97 ind:imp:3s; +rial rial NOM m s 0.04 0.00 0.01 0.00 +rials rial NOM m p 0.04 0.00 0.03 0.00 +riant rire VER 140.25 320.54 1.89 41.96 par:pre; +riante riant ADJ f s 0.53 3.04 0.28 1.01 +riantes riant ADJ f p 0.53 3.04 0.10 0.34 +riants riant ADJ m p 0.53 3.04 0.00 0.34 +ribambelle ribambelle NOM f s 0.82 2.36 0.81 1.82 +ribambelles ribambelle NOM f p 0.82 2.36 0.01 0.54 +ribaud ribaud NOM m s 0.15 0.47 0.14 0.07 +ribaude ribaud ADJ f s 1.06 0.27 0.68 0.14 +ribaudes ribaud ADJ f p 1.06 0.27 0.38 0.14 +ribauds ribaud NOM m p 0.15 0.47 0.01 0.41 +ribes ribes NOM m 0.14 0.00 0.14 0.00 +rible ribler VER 0.00 0.07 0.00 0.07 ind:pre:3s; +ribleur ribleur NOM m s 0.00 0.07 0.00 0.07 +riboflavine riboflavine NOM f s 0.05 0.00 0.05 0.00 +ribosomes ribosome NOM m p 0.19 0.00 0.19 0.00 +ribot ribot NOM m s 0.00 0.20 0.00 0.07 +ribote ribot NOM f s 0.00 0.20 0.00 0.14 +riboter riboter VER 0.00 0.07 0.00 0.07 inf; +riboteur riboteur NOM m s 0.01 0.00 0.01 0.00 +ribouis ribouis NOM m 0.00 0.20 0.00 0.20 +riboulait ribouler VER 0.01 0.27 0.01 0.07 ind:imp:3s; +riboulant ribouler VER 0.01 0.27 0.00 0.14 par:pre; +riboulants riboulant ADJ m p 0.00 0.07 0.00 0.07 +ribouldingue ribouldingue NOM f s 0.02 0.41 0.02 0.41 +ribouler ribouler VER 0.01 0.27 0.00 0.07 inf; +ric_à_rac ric_à_rac ADV 0.00 0.20 0.00 0.20 +ric_rac ric_rac ADV 0.04 0.47 0.04 0.47 +ric_et_rac ric_et_rac ADV 0.00 0.61 0.00 0.61 +ricain ricain NOM m s 2.55 1.08 0.33 0.14 +ricaine ricain ADJ f s 0.36 0.41 0.14 0.00 +ricaines ricain ADJ f p 0.36 0.41 0.01 0.00 +ricains ricain NOM m p 2.55 1.08 2.22 0.88 +ricana ricaner VER 2.04 30.61 0.02 7.50 ind:pas:3s; +ricanai ricaner VER 2.04 30.61 0.00 0.14 ind:pas:1s; +ricanaient ricaner VER 2.04 30.61 0.02 0.68 ind:imp:3p; +ricanais ricaner VER 2.04 30.61 0.02 0.61 ind:imp:1s;ind:imp:2s; +ricanait ricaner VER 2.04 30.61 0.04 3.85 ind:imp:3s; +ricanant ricaner VER 2.04 30.61 0.03 4.12 par:pre; +ricanante ricanant ADJ f s 0.11 1.89 0.00 0.54 +ricanantes ricanant ADJ f p 0.11 1.89 0.10 0.47 +ricanants ricanant ADJ m p 0.11 1.89 0.00 0.27 +ricane ricaner VER 2.04 30.61 1.17 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ricanement ricanement NOM m s 0.39 10.14 0.27 6.96 +ricanements ricanement NOM m p 0.39 10.14 0.12 3.18 +ricanent ricaner VER 2.04 30.61 0.08 0.81 ind:pre:3p; +ricaner ricaner VER 2.04 30.61 0.33 4.59 inf; +ricaneraient ricaner VER 2.04 30.61 0.00 0.07 cnd:pre:3p; +ricaneront ricaner VER 2.04 30.61 0.01 0.00 ind:fut:3p; +ricanes ricaner VER 2.04 30.61 0.20 0.20 ind:pre:2s; +ricaneur ricaneur NOM m s 0.03 0.27 0.03 0.14 +ricaneurs ricaneur ADJ m p 0.00 0.68 0.00 0.34 +ricaneuse ricaneur ADJ f s 0.00 0.68 0.00 0.14 +ricanions ricaner VER 2.04 30.61 0.00 0.14 ind:imp:1p; +ricanèrent ricaner VER 2.04 30.61 0.00 0.47 ind:pas:3p; +ricané ricaner VER m s 2.04 30.61 0.12 2.09 par:pas;par:pas;par:pas; +ricassant ricasser VER 0.00 0.14 0.00 0.07 par:pre; +ricasser ricasser VER 0.00 0.14 0.00 0.07 inf; +richard richard ADJ m s 3.57 0.81 2.01 0.20 +richarde richard NOM f s 2.05 1.08 0.01 0.00 +richards richard ADJ m p 3.57 0.81 1.56 0.61 +riche riche ADJ s 73.85 65.47 54.28 42.57 +richelieu richelieu NOM m s 0.05 0.14 0.02 0.00 +richelieus richelieu NOM m p 0.05 0.14 0.03 0.14 +richement richement ADV 0.22 1.76 0.22 1.76 +riches riche ADJ p 73.85 65.47 19.57 22.91 +richesse richesse NOM f s 13.21 22.16 8.44 14.66 +richesses richesse NOM f p 13.21 22.16 4.76 7.50 +richissime richissime ADJ s 0.39 1.08 0.35 0.74 +richissimes richissime ADJ f p 0.39 1.08 0.04 0.34 +richomme richomme NOM m s 0.00 0.74 0.00 0.74 +ricin ricin NOM m s 0.28 0.47 0.28 0.47 +ricocha ricocher VER 0.70 2.16 0.00 0.27 ind:pas:3s; +ricochaient ricocher VER 0.70 2.16 0.20 0.14 ind:imp:3p; +ricochait ricocher VER 0.70 2.16 0.00 0.14 ind:imp:3s; +ricochant ricocher VER 0.70 2.16 0.00 0.41 par:pre; +ricoche ricocher VER 0.70 2.16 0.10 0.14 ind:pre:3s; +ricochent ricocher VER 0.70 2.16 0.04 0.41 ind:pre:3p; +ricocher ricocher VER 0.70 2.16 0.08 0.54 inf; +ricochet ricochet NOM m s 1.03 2.09 0.44 0.74 +ricochets ricochet NOM m p 1.03 2.09 0.59 1.35 +ricoché ricocher VER m s 0.70 2.16 0.27 0.14 par:pas; +ricotta ricotta NOM f s 0.45 0.00 0.45 0.00 +rictus rictus NOM m 0.25 6.35 0.25 6.35 +rida rider VER 2.06 3.99 0.00 0.34 ind:pas:3s; +ridaient rider VER 2.06 3.99 0.00 0.07 ind:imp:3p; +ridait rider VER 2.06 3.99 0.01 0.41 ind:imp:3s; +ridant rider VER 2.06 3.99 0.01 0.14 par:pre; +ride ride NOM f s 4.20 24.26 1.18 3.51 +rideau rideau NOM m s 19.11 84.53 10.81 43.65 +rideaux rideau NOM m p 19.11 84.53 8.29 37.97 +ridelle rideau NOM f s 19.11 84.53 0.01 0.81 +ridelles rideau NOM f p 19.11 84.53 0.00 2.09 +rident rider VER 2.06 3.99 0.01 0.00 ind:pre:3p; +rider rider VER 2.06 3.99 1.05 0.47 inf; +rides ride NOM f p 4.20 24.26 3.02 20.74 +ridicule ridicule ADJ s 61.57 45.54 57.05 36.49 +ridiculement ridiculement ADV 0.30 2.57 0.30 2.57 +ridicules ridicule ADJ p 61.57 45.54 4.53 9.05 +ridiculisa ridiculiser VER 7.54 4.32 0.00 0.07 ind:pas:3s; +ridiculisaient ridiculiser VER 7.54 4.32 0.00 0.20 ind:imp:3p; +ridiculisais ridiculiser VER 7.54 4.32 0.01 0.14 ind:imp:1s; +ridiculisait ridiculiser VER 7.54 4.32 0.03 0.34 ind:imp:3s; +ridiculisant ridiculiser VER 7.54 4.32 0.02 0.34 par:pre; +ridiculisation ridiculisation NOM f s 0.01 0.00 0.01 0.00 +ridiculise ridiculiser VER 7.54 4.32 1.16 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ridiculisent ridiculiser VER 7.54 4.32 0.33 0.14 ind:pre:3p; +ridiculiser ridiculiser VER 7.54 4.32 3.02 1.69 inf; +ridiculisera ridiculiser VER 7.54 4.32 0.03 0.07 ind:fut:3s; +ridiculiserai ridiculiser VER 7.54 4.32 0.16 0.00 ind:fut:1s; +ridiculiserais ridiculiser VER 7.54 4.32 0.02 0.00 cnd:pre:1s; +ridiculiserait ridiculiser VER 7.54 4.32 0.01 0.07 cnd:pre:3s; +ridiculiseras ridiculiser VER 7.54 4.32 0.03 0.00 ind:fut:2s; +ridiculises ridiculiser VER 7.54 4.32 0.54 0.07 ind:pre:2s;sub:pre:2s; +ridiculisez ridiculiser VER 7.54 4.32 0.38 0.00 imp:pre:2p;ind:pre:2p; +ridiculisiez ridiculiser VER 7.54 4.32 0.01 0.00 ind:imp:2p; +ridiculisé ridiculiser VER m s 7.54 4.32 1.09 0.61 par:pas; +ridiculisée ridiculiser VER f s 7.54 4.32 0.51 0.07 par:pas; +ridiculisées ridiculiser VER f p 7.54 4.32 0.10 0.07 par:pas; +ridiculisés ridiculiser VER m p 7.54 4.32 0.10 0.14 par:pas; +ridiculités ridiculité NOM f p 0.14 0.00 0.14 0.00 +ridé ridé ADJ m s 1.04 7.16 0.45 2.77 +ridée ridé ADJ f s 1.04 7.16 0.30 2.16 +ridées ridé ADJ f p 1.04 7.16 0.14 1.49 +ridule ridule NOM f s 0.16 0.07 0.01 0.00 +ridules ridule NOM f p 0.16 0.07 0.15 0.07 +ridés ridé ADJ m p 1.04 7.16 0.16 0.74 +rie rire VER 140.25 320.54 1.09 0.81 sub:pre:1s;sub:pre:3s; +riel riel NOM m s 0.16 0.00 0.16 0.00 +rien rien PRO:ind s 2374.91 1522.91 2374.91 1522.91 +riens rien NOM m p 7.26 24.19 0.62 3.38 +rient rire VER 140.25 320.54 5.17 5.54 ind:pre:3p; +ries rire VER 140.25 320.54 0.10 0.20 sub:pre:2s; +riesling riesling NOM m s 0.71 0.20 0.71 0.20 +rieur rieur ADJ m s 0.45 4.93 0.41 2.84 +rieurs rieur ADJ m p 0.45 4.93 0.04 2.09 +rieuse rieux ADJ f s 0.07 4.12 0.06 3.24 +rieuses rieux ADJ f p 0.07 4.12 0.01 0.88 +riez rire VER 140.25 320.54 8.51 3.04 imp:pre:2p;ind:pre:2p; +rif rif NOM m s 0.07 1.42 0.07 1.42 +rifain rifain NOM m s 0.03 0.00 0.01 0.00 +rifains rifain NOM m p 0.03 0.00 0.02 0.00 +riff riff NOM m s 0.53 0.27 0.43 0.20 +riffaude riffauder VER 0.00 0.20 0.00 0.07 ind:pre:1s; +riffauder riffauder VER 0.00 0.20 0.00 0.07 inf; +riffaudé riffauder VER m s 0.00 0.20 0.00 0.07 par:pas; +riffs riff NOM m p 0.53 0.27 0.10 0.07 +rififi rififi NOM m s 0.09 0.47 0.09 0.47 +riflard riflard NOM m s 0.01 0.41 0.01 0.41 +rifle rifle NOM m s 0.12 0.74 0.02 0.74 +rifles rifle NOM m p 0.12 0.74 0.10 0.00 +riflette riflette NOM f s 0.00 0.61 0.00 0.61 +rift rift NOM m s 0.03 0.20 0.03 0.20 +rigaudon rigaudon NOM m s 0.01 0.07 0.01 0.00 +rigaudons rigaudon NOM m p 0.01 0.07 0.00 0.07 +rigide rigide ADJ s 3.27 9.93 2.96 6.42 +rigidement rigidement ADV 0.00 0.14 0.00 0.14 +rigides rigide ADJ p 3.27 9.93 0.32 3.51 +rigidifier rigidifier VER 0.01 0.00 0.01 0.00 inf; +rigidité rigidité NOM f s 0.88 1.89 0.88 1.82 +rigidités rigidité NOM f p 0.88 1.89 0.00 0.07 +rigodon rigodon NOM m s 0.00 0.61 0.00 0.61 +rigola rigoler VER 47.56 33.85 0.02 1.42 ind:pas:3s; +rigolade rigolade NOM f s 2.43 9.19 2.41 8.38 +rigolades rigolade NOM f p 2.43 9.19 0.02 0.81 +rigolage rigolage NOM m s 0.00 0.07 0.00 0.07 +rigolaient rigoler VER 47.56 33.85 0.47 0.74 ind:imp:3p; +rigolais rigoler VER 47.56 33.85 1.32 0.47 ind:imp:1s;ind:imp:2s; +rigolait rigoler VER 47.56 33.85 1.00 3.11 ind:imp:3s; +rigolant rigoler VER 47.56 33.85 0.23 2.64 par:pre; +rigolard rigolard ADJ m s 0.01 2.70 0.01 1.69 +rigolarde rigolard NOM f s 0.01 0.34 0.01 0.00 +rigolardes rigolard ADJ f p 0.01 2.70 0.00 0.20 +rigolards rigolard ADJ m p 0.01 2.70 0.00 0.41 +rigole rigoler VER 47.56 33.85 12.08 6.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rigolent rigoler VER 47.56 33.85 1.46 0.95 ind:pre:3p; +rigoler rigoler VER 47.56 33.85 10.48 9.80 inf; +rigolera rigoler VER 47.56 33.85 0.19 0.54 ind:fut:3s; +rigolerai rigoler VER 47.56 33.85 0.17 0.00 ind:fut:1s; +rigoleraient rigoler VER 47.56 33.85 0.03 0.07 cnd:pre:3p; +rigolerais rigoler VER 47.56 33.85 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +rigolerait rigoler VER 47.56 33.85 0.07 0.27 cnd:pre:3s; +rigoleras rigoler VER 47.56 33.85 0.24 0.07 ind:fut:2s; +rigolerez rigoler VER 47.56 33.85 0.03 0.00 ind:fut:2p; +rigoleront rigoler VER 47.56 33.85 0.02 0.00 ind:fut:3p; +rigoles rigoler VER 47.56 33.85 13.56 3.31 ind:pre:2s;sub:pre:2s; +rigoleur rigoleur ADJ m s 0.00 0.07 0.00 0.07 +rigolez rigoler VER 47.56 33.85 3.90 0.68 imp:pre:2p;ind:pre:2p; +rigoliez rigoler VER 47.56 33.85 0.07 0.07 ind:imp:2p; +rigolions rigoler VER 47.56 33.85 0.01 0.07 ind:imp:1p; +rigollot rigollot NOM m s 0.00 0.07 0.00 0.07 +rigolo rigolo ADJ m s 6.25 3.85 5.00 2.64 +rigolons rigoler VER 47.56 33.85 0.11 0.07 imp:pre:1p;ind:pre:1p; +rigolos rigolo NOM m p 3.99 2.30 1.17 0.88 +rigolote rigolo ADJ f s 6.25 3.85 0.73 0.27 +rigolotes rigolo ADJ f p 6.25 3.85 0.23 0.14 +rigolèrent rigoler VER 47.56 33.85 0.00 0.34 ind:pas:3p; +rigolé rigoler VER m s 47.56 33.85 1.82 2.77 par:pas; +rigorisme rigorisme NOM m s 0.00 0.20 0.00 0.20 +rigoriste rigoriste ADJ f s 0.14 0.20 0.14 0.20 +rigoristes rigoriste NOM p 0.00 0.07 0.00 0.07 +rigoureuse rigoureux ADJ f s 1.94 8.31 0.27 3.38 +rigoureusement rigoureusement ADV 0.23 4.73 0.23 4.73 +rigoureuses rigoureux ADJ f p 1.94 8.31 0.17 1.55 +rigoureux rigoureux ADJ m 1.94 8.31 1.50 3.38 +rigueur rigueur NOM f s 4.87 40.34 4.72 37.77 +rigueurs rigueur NOM f p 4.87 40.34 0.15 2.57 +riiez rire VER 140.25 320.54 0.00 0.14 ind:imp:2p; +riions rire VER 140.25 320.54 0.00 1.15 ind:imp:1p; +rikiki rikiki ADJ m s 0.09 2.97 0.09 2.97 +rillettes rillettes NOM f p 0.17 2.43 0.17 2.43 +rillons rillons NOM m p 0.00 0.41 0.00 0.41 +rima rimer VER 6.89 5.27 0.00 0.34 ind:pas:3s; +rimaient rimer VER 6.89 5.27 0.02 0.20 ind:imp:3p; +rimaillerie rimaillerie NOM f s 0.00 0.07 0.00 0.07 +rimailles rimailler VER 0.01 0.07 0.01 0.07 ind:pre:2s; +rimailleur rimailleur NOM m s 0.01 0.07 0.01 0.00 +rimailleurs rimailleur NOM m p 0.01 0.07 0.00 0.07 +rimait rimer VER 6.89 5.27 0.28 1.08 ind:imp:3s; +rimante rimant ADJ f s 0.00 0.07 0.00 0.07 +rimaye rimaye NOM f s 0.01 0.00 0.01 0.00 +rimbaldien rimbaldien ADJ m s 0.00 0.07 0.00 0.07 +rime rimer VER 6.89 5.27 5.66 2.36 imp:pre:2s;ind:pre:3s; +riment rimer VER 6.89 5.27 0.50 0.20 ind:pre:3p; +rimer rimer VER 6.89 5.27 0.15 0.27 inf; +rimes rime NOM f p 3.08 2.16 1.75 1.22 +rimeur rimeur NOM m s 0.04 0.00 0.02 0.00 +rimeurs rimeur NOM m p 0.04 0.00 0.01 0.00 +rimeuse rimeur NOM f s 0.04 0.00 0.01 0.00 +rimez rimer VER 6.89 5.27 0.03 0.07 imp:pre:2p;ind:pre:2p; +rimions rimer VER 6.89 5.27 0.00 0.07 ind:imp:1p; +rimmel rimmel NOM m s 0.16 3.04 0.16 3.04 +rimé rimer VER m s 6.89 5.27 0.22 0.27 par:pas; +rimée rimer VER f s 6.89 5.27 0.00 0.20 par:pas; +rimés rimer VER m p 6.89 5.27 0.01 0.20 par:pas; +rince_bouche rince_bouche NOM m 0.03 0.00 0.03 0.00 +rince_doigts rince_doigts NOM m 0.08 0.27 0.08 0.27 +rince rincer VER 4.46 11.15 1.29 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rinceau rinceau NOM m s 0.00 0.68 0.00 0.07 +rinceaux rinceau NOM m p 0.00 0.68 0.00 0.61 +rincent rincer VER 4.46 11.15 0.16 0.34 ind:pre:3p; +rincer rincer VER 4.46 11.15 1.86 3.18 inf; +rincera rincer VER 4.46 11.15 0.01 0.00 ind:fut:3s; +rincerai rincer VER 4.46 11.15 0.10 0.07 ind:fut:1s; +rinceraient rincer VER 4.46 11.15 0.00 0.07 cnd:pre:3p; +rinces rincer VER 4.46 11.15 0.28 0.07 ind:pre:2s; +rincette rincette NOM f s 0.00 0.27 0.00 0.27 +rinceur rinceur NOM m s 0.00 0.07 0.00 0.07 +rincez rincer VER 4.46 11.15 0.27 0.07 imp:pre:2p;ind:pre:2p; +rincèrent rincer VER 4.46 11.15 0.00 0.07 ind:pas:3p; +rincé rincer VER m s 4.46 11.15 0.18 1.28 par:pas; +rincée rincer VER f s 4.46 11.15 0.02 0.20 par:pas; +rincées rincer VER f p 4.46 11.15 0.02 0.07 par:pas; +rincés rincer VER m p 4.46 11.15 0.14 0.68 par:pas; +rinforzando rinforzando ADV 0.00 0.07 0.00 0.07 +ring ring NOM m s 6.49 4.66 6.19 4.39 +ringard ringard ADJ m s 2.94 1.42 1.99 0.88 +ringarde ringard ADJ f s 2.94 1.42 0.27 0.27 +ringardes ringard ADJ f p 2.94 1.42 0.39 0.00 +ringardise ringardise NOM f s 0.06 0.14 0.04 0.14 +ringardises ringardise NOM f p 0.06 0.14 0.01 0.00 +ringards ringard NOM m p 2.54 0.95 0.64 0.20 +rings ring NOM m p 6.49 4.66 0.29 0.27 +rink rink NOM m s 0.14 2.84 0.14 2.84 +rinker rinker VER 0.02 0.00 0.02 0.00 inf; +rinça rincer VER 4.46 11.15 0.00 1.15 ind:pas:3s; +rinçage rinçage NOM m s 0.43 0.74 0.28 0.68 +rinçages rinçage NOM m p 0.43 0.74 0.14 0.07 +rinçaient rincer VER 4.46 11.15 0.00 0.07 ind:imp:3p; +rinçais rincer VER 4.46 11.15 0.01 0.14 ind:imp:1s;ind:imp:2s; +rinçait rincer VER 4.46 11.15 0.01 1.42 ind:imp:3s; +rinçant rincer VER 4.46 11.15 0.11 0.27 par:pre; +rioja rioja NOM m s 0.01 0.00 0.01 0.00 +rions rire VER 140.25 320.54 0.63 1.49 imp:pre:1p;ind:pre:1p; +ripa riper VER 0.35 0.81 0.00 0.07 ind:pas:3s; +ripaillait ripailler VER 0.14 0.81 0.00 0.07 ind:imp:3s; +ripaille ripailler VER 0.14 0.81 0.14 0.20 ind:pre:3s; +ripailler ripailler VER 0.14 0.81 0.00 0.20 inf; +ripailles ripaille NOM f p 0.20 1.62 0.14 0.54 +ripaillons ripailler VER 0.14 0.81 0.00 0.07 ind:pre:1p; +ripaillé ripailler VER m s 0.14 0.81 0.00 0.27 par:pas; +ripant riper VER 0.35 0.81 0.00 0.14 par:pre; +ripaton ripaton NOM m s 0.01 0.20 0.00 0.07 +ripatons ripaton NOM m p 0.01 0.20 0.01 0.14 +ripe ripe NOM f s 0.18 0.27 0.18 0.27 +riper riper VER 0.35 0.81 0.03 0.34 inf; +ripes riper VER 0.35 0.81 0.14 0.00 ind:pre:2s; +ripeur ripeur NOM m s 0.00 0.07 0.00 0.07 +ripolin ripolin NOM m s 0.00 0.41 0.00 0.41 +ripoliner ripoliner VER 0.00 1.55 0.00 0.07 inf; +ripolines ripoliner VER 0.00 1.55 0.00 0.07 ind:pre:2s; +ripoliné ripoliner VER m s 0.00 1.55 0.00 0.41 par:pas; +ripolinée ripoliner VER f s 0.00 1.55 0.00 0.54 par:pas; +ripolinées ripoliner VER f p 0.00 1.55 0.00 0.27 par:pas; +ripolinés ripoliner VER m p 0.00 1.55 0.00 0.20 par:pas; +riposta riposter VER 3.61 5.34 0.01 1.55 ind:pas:3s; +ripostai riposter VER 3.61 5.34 0.00 0.20 ind:pas:1s; +ripostaient riposter VER 3.61 5.34 0.01 0.07 ind:imp:3p; +ripostais riposter VER 3.61 5.34 0.01 0.07 ind:imp:1s; +ripostait riposter VER 3.61 5.34 0.00 0.41 ind:imp:3s; +ripostant riposter VER 3.61 5.34 0.03 0.14 par:pre; +riposte riposte NOM f s 1.75 2.97 1.70 2.64 +ripostent riposter VER 3.61 5.34 0.21 0.07 ind:pre:3p; +riposter riposter VER 3.61 5.34 1.41 1.28 inf; +ripostera riposter VER 3.61 5.34 0.05 0.00 ind:fut:3s; +riposterai riposter VER 3.61 5.34 0.19 0.00 ind:fut:1s; +riposterez riposter VER 3.61 5.34 0.02 0.00 ind:fut:2p; +riposterons riposter VER 3.61 5.34 0.05 0.00 ind:fut:1p; +riposteront riposter VER 3.61 5.34 0.08 0.00 ind:fut:3p; +ripostes riposte NOM f p 1.75 2.97 0.05 0.34 +ripostez riposter VER 3.61 5.34 0.14 0.00 imp:pre:2p;ind:pre:2p; +ripostions riposter VER 3.61 5.34 0.01 0.00 ind:imp:1p; +ripostons riposter VER 3.61 5.34 0.05 0.00 imp:pre:1p;ind:pre:1p; +riposté riposter VER m s 3.61 5.34 0.60 1.01 par:pas; +ripou ripou ADJ s 0.66 0.27 0.66 0.27 +ripoux ripoux NOM m p 1.54 0.00 1.54 0.00 +ripper ripper NOM m s 0.31 0.00 0.31 0.00 +ripé riper VER m s 0.35 0.81 0.19 0.27 par:pas; +ripuaire ripuaire ADJ s 0.00 0.07 0.00 0.07 +riquiqui riquiqui ADJ 0.50 0.68 0.50 0.68 +rira rire VER 140.25 320.54 2.99 0.74 ind:fut:3s; +rirai rire VER 140.25 320.54 0.88 0.47 ind:fut:1s; +riraient rire VER 140.25 320.54 0.07 0.27 cnd:pre:3p; +rirais rire VER 140.25 320.54 0.66 0.34 cnd:pre:1s;cnd:pre:2s; +rirait rire VER 140.25 320.54 0.20 0.81 cnd:pre:3s; +riras rire VER 140.25 320.54 0.80 0.07 ind:fut:2s; +rire rire VER 140.25 320.54 63.29 144.19 inf; +rirent rire VER 140.25 320.54 0.01 2.57 ind:pas:3p; +rires rire NOM m p 38.88 155.47 16.09 42.91 +rirez rire VER 140.25 320.54 0.60 0.14 ind:fut:2p; +rirons rire VER 140.25 320.54 0.23 0.34 ind:fut:1p; +riront rire VER 140.25 320.54 0.30 0.14 ind:fut:3p; +ris rire VER 140.25 320.54 20.86 8.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rise ris NOM f s 1.74 0.34 0.24 0.00 +riser riser NOM m s 0.06 0.00 0.06 0.00 +risette risette NOM f s 0.75 1.08 0.70 0.81 +risettes risette NOM f p 0.75 1.08 0.05 0.27 +risibilité risibilité NOM f s 0.01 0.14 0.01 0.14 +risible risible ADJ s 1.05 3.45 0.88 2.70 +risiblement risiblement ADV 0.00 0.07 0.00 0.07 +risibles risible ADJ p 1.05 3.45 0.17 0.74 +risorius risorius NOM m 0.01 0.14 0.01 0.14 +risotto risotto NOM m s 0.54 0.07 0.54 0.07 +risqua risquer VER 100.40 99.32 0.45 3.58 ind:pas:3s; +risquai risquer VER 100.40 99.32 0.00 0.81 ind:pas:1s; +risquaient risquer VER 100.40 99.32 0.68 4.66 ind:imp:3p; +risquais risquer VER 100.40 99.32 0.92 3.51 ind:imp:1s;ind:imp:2s; +risquait risquer VER 100.40 99.32 2.59 21.62 ind:imp:3s; +risquant risquer VER 100.40 99.32 0.99 1.82 par:pre; +risque_tout risque_tout ADJ 0.00 0.07 0.00 0.07 +risque risque NOM m s 69.33 50.27 45.98 30.27 +risquent risquer VER 100.40 99.32 4.59 3.85 ind:pre:3p; +risquer risquer VER 100.40 99.32 13.06 14.19 inf; +risquera risquer VER 100.40 99.32 0.38 0.54 ind:fut:3s; +risquerai risquer VER 100.40 99.32 0.30 0.14 ind:fut:1s; +risqueraient risquer VER 100.40 99.32 0.45 0.81 cnd:pre:3p; +risquerais risquer VER 100.40 99.32 1.47 0.88 cnd:pre:1s;cnd:pre:2s; +risquerait risquer VER 100.40 99.32 1.59 3.11 cnd:pre:3s; +risqueras risquer VER 100.40 99.32 0.03 0.07 ind:fut:2s; +risquerez risquer VER 100.40 99.32 0.17 0.07 ind:fut:2p; +risqueriez risquer VER 100.40 99.32 0.32 0.41 cnd:pre:2p; +risquerions risquer VER 100.40 99.32 0.09 0.14 cnd:pre:1p; +risquerons risquer VER 100.40 99.32 0.00 0.07 ind:fut:1p; +risqueront risquer VER 100.40 99.32 0.12 0.20 ind:fut:3p; +risques risque NOM m p 69.33 50.27 23.36 20.00 +risquez risquer VER 100.40 99.32 7.54 1.96 imp:pre:2p;ind:pre:2p; +risquiez risquer VER 100.40 99.32 0.20 0.61 ind:imp:2p; +risquions risquer VER 100.40 99.32 0.06 0.74 ind:imp:1p; +risquons risquer VER 100.40 99.32 1.80 0.95 imp:pre:1p;ind:pre:1p; +risquât risquer VER 100.40 99.32 0.00 0.54 sub:imp:3s; +risqué risquer VER m s 100.40 99.32 10.77 5.00 par:pas; +risquée risqué ADJ f s 8.29 2.70 0.47 0.68 +risquées risqué ADJ f p 8.29 2.70 0.13 0.27 +risqués risqué ADJ m p 8.29 2.70 0.08 0.20 +rissolaient rissoler VER 0.01 0.74 0.00 0.14 ind:imp:3p; +rissolait rissoler VER 0.01 0.74 0.00 0.07 ind:imp:3s; +rissole rissole NOM f s 0.02 0.34 0.00 0.14 +rissolent rissoler VER 0.01 0.74 0.00 0.14 ind:pre:3p; +rissoler rissoler VER 0.01 0.74 0.01 0.27 inf; +rissoles rissole NOM f p 0.02 0.34 0.02 0.20 +rissolé rissoler VER m s 0.01 0.74 0.00 0.07 par:pas; +rissolée rissolé ADJ f s 0.03 0.34 0.00 0.07 +rissolées rissolé ADJ f p 0.03 0.34 0.03 0.20 +rissolés rissolé ADJ m p 0.03 0.34 0.00 0.07 +ristournait ristourner VER 0.14 0.07 0.00 0.07 ind:imp:3s; +ristourne ristourne NOM f s 0.54 0.54 0.50 0.54 +ristournes ristourne NOM f p 0.54 0.54 0.04 0.00 +risée risée NOM f s 2.22 2.50 2.12 1.76 +risées risée NOM f p 2.22 2.50 0.10 0.74 +rit rire VER 140.25 320.54 17.47 37.70 ind:pre:3s;ind:pas:3s; +rital rital NOM m s 2.66 3.51 1.36 2.09 +ritale rital NOM f s 2.66 3.51 0.14 0.34 +ritales rital NOM f p 2.66 3.51 0.00 0.14 +ritals rital NOM m p 2.66 3.51 1.16 0.95 +rite rite NOM m s 5.43 17.84 3.77 8.45 +rites rite NOM m p 5.43 17.84 1.66 9.39 +ritournelle ritournelle NOM f s 0.03 2.03 0.01 1.28 +ritournelles ritournelle NOM f p 0.03 2.03 0.02 0.74 +rittes rittes NOM f p 0.00 0.07 0.00 0.07 +ritualisa ritualiser VER 0.01 0.14 0.00 0.07 ind:pas:3s; +ritualisation ritualisation NOM f s 0.00 0.07 0.00 0.07 +ritualiste ritualiste ADJ m s 0.16 0.00 0.01 0.00 +ritualistes ritualiste ADJ m p 0.16 0.00 0.15 0.00 +ritualisé ritualiser VER m s 0.01 0.14 0.01 0.00 par:pas; +ritualisés ritualiser VER m p 0.01 0.14 0.00 0.07 par:pas; +rituel rituel NOM m s 8.82 6.22 7.03 5.54 +rituelle rituel ADJ f s 3.29 12.97 0.45 4.73 +rituellement rituellement ADV 0.14 1.76 0.14 1.76 +rituelles rituel ADJ f p 3.29 12.97 0.39 2.23 +rituels rituel NOM m p 8.82 6.22 1.79 0.68 +riva river VER 3.47 10.88 0.02 0.47 ind:pas:3s; +rivage rivage NOM m s 5.46 17.23 4.38 12.36 +rivages rivage NOM m p 5.46 17.23 1.08 4.86 +rivaient river VER 3.47 10.88 0.00 0.20 ind:imp:3p; +rivais river VER 3.47 10.88 0.00 0.07 ind:imp:1s; +rivait river VER 3.47 10.88 0.00 0.61 ind:imp:3s; +rival rival NOM m s 4.75 10.20 2.68 4.80 +rivale rival NOM f s 4.75 10.20 1.23 2.97 +rivales rival ADJ f p 1.34 4.05 0.44 1.96 +rivalisaient rivaliser VER 1.99 4.39 0.04 1.15 ind:imp:3p; +rivalisait rivaliser VER 1.99 4.39 0.12 0.54 ind:imp:3s; +rivalisant rivaliser VER 1.99 4.39 0.08 0.20 par:pre; +rivalise rivaliser VER 1.99 4.39 0.20 0.20 ind:pre:1s;ind:pre:3s; +rivalisent rivaliser VER 1.99 4.39 0.10 0.41 ind:pre:3p; +rivaliser rivaliser VER 1.99 4.39 1.40 1.55 inf; +rivalisera rivaliser VER 1.99 4.39 0.03 0.00 ind:fut:3s; +rivaliserait rivaliser VER 1.99 4.39 0.01 0.00 cnd:pre:3s; +rivalisèrent rivaliser VER 1.99 4.39 0.00 0.27 ind:pas:3p; +rivalisé rivaliser VER m s 1.99 4.39 0.01 0.07 par:pas; +rivalité rivalité NOM f s 2.25 4.93 1.58 2.97 +rivalités rivalité NOM f p 2.25 4.93 0.67 1.96 +rivant river VER 3.47 10.88 0.00 0.20 par:pre; +rivaux rival NOM m p 4.75 10.20 0.69 1.76 +rive rive NOM f s 7.92 46.15 6.03 35.14 +river river VER 3.47 10.88 2.70 1.15 inf; +riverain riverain NOM m s 0.36 0.81 0.00 0.07 +riveraines riverain ADJ f p 0.00 0.47 0.00 0.27 +riverains riverain NOM m p 0.36 0.81 0.36 0.74 +riverait river VER 3.47 10.88 0.00 0.07 cnd:pre:3s; +rives rive NOM f p 7.92 46.15 1.89 11.01 +rivet rivet NOM m s 0.56 1.08 0.35 0.14 +rivetage rivetage NOM m s 0.01 0.20 0.01 0.20 +riveteuse riveteur NOM f s 0.01 0.00 0.01 0.00 +riveteuse riveteuse NOM f s 0.01 0.00 0.01 0.00 +rivets rivet NOM m p 0.56 1.08 0.22 0.95 +rivette riveter VER 0.16 0.27 0.14 0.00 imp:pre:2s; +riveté riveter VER m s 0.16 0.27 0.00 0.07 par:pas; +rivetées riveter VER f p 0.16 0.27 0.03 0.20 par:pas; +riviera riviera NOM f s 0.00 0.14 0.00 0.07 +rivieras riviera NOM f p 0.00 0.14 0.00 0.07 +rivière rivière NOM f s 32.73 43.72 28.17 36.49 +rivières rivière NOM f p 32.73 43.72 4.56 7.23 +rivoir rivoir NOM m s 0.01 0.27 0.01 0.27 +rivé river VER m s 3.47 10.88 0.22 3.24 par:pas; +rivée river VER f s 3.47 10.88 0.02 1.08 par:pas; +rivées river VER f p 3.47 10.88 0.00 0.47 par:pas; +rivés river VER m p 3.47 10.88 0.49 2.64 par:pas; +rixdales rixdale NOM f p 0.00 0.07 0.00 0.07 +rixe rixe NOM f s 0.84 2.16 0.80 1.28 +rixes rixe NOM f p 0.84 2.16 0.04 0.88 +riz_minute riz_minute NOM m 0.00 0.07 0.00 0.07 +riz_pain_sel riz_pain_sel NOM m s 0.00 0.07 0.00 0.07 +riz riz NOM m 18.49 17.70 18.49 17.70 +rizière rizière NOM f s 6.45 3.78 5.30 1.15 +rizières rizière NOM f p 6.45 3.78 1.15 2.64 +roadster roadster NOM m s 0.03 0.27 0.03 0.27 +roast_beef roast_beef NOM m s 0.16 0.00 0.14 0.00 +roast_beef roast_beef NOM m s 0.16 0.00 0.02 0.00 +robe robe NOM f s 84.43 148.18 72.72 111.96 +rober rober VER 0.02 0.00 0.02 0.00 inf; +robert robert NOM m s 1.51 1.49 1.44 0.27 +roberts robert NOM m p 1.51 1.49 0.07 1.22 +robes robe NOM f p 84.43 148.18 11.71 36.22 +robette robette NOM f s 0.00 0.07 0.00 0.07 +robin robin NOM m s 0.41 0.34 0.03 0.07 +robinet robinet NOM m s 5.89 18.24 5.12 13.65 +robinets robinet NOM m p 5.89 18.24 0.77 4.59 +robinetterie robinetterie NOM f s 0.03 0.27 0.03 0.27 +robiniers robinier NOM m p 0.00 0.07 0.00 0.07 +robins robin NOM m p 0.41 0.34 0.38 0.27 +robinsonnade robinsonnade NOM m s 0.00 0.07 0.00 0.07 +robinsons robinson NOM m p 0.00 0.20 0.00 0.20 +râble râble NOM m s 0.01 1.96 0.01 1.96 +roblot roblot NOM m s 0.00 1.15 0.00 1.15 +râblé râblé ADJ m s 0.01 1.82 0.01 1.28 +râblée râblé ADJ f s 0.01 1.82 0.00 0.07 +râblés râblé ADJ m p 0.01 1.82 0.00 0.47 +roboratif roboratif ADJ m s 0.00 0.54 0.00 0.34 +roborative roboratif ADJ f s 0.00 0.54 0.00 0.07 +roboratives roboratif ADJ f p 0.00 0.54 0.00 0.14 +robot robot NOM m s 22.89 3.18 14.97 1.69 +robotique robotique NOM f s 0.72 0.00 0.69 0.00 +robotiques robotique NOM f p 0.72 0.00 0.04 0.00 +robotisé robotiser VER m s 0.10 0.20 0.07 0.07 par:pas; +robotisée robotiser VER f s 0.10 0.20 0.01 0.07 par:pas; +robotisées robotiser VER f p 0.10 0.20 0.01 0.07 par:pas; +robots robot NOM m p 22.89 3.18 7.92 1.49 +roburite roburite NOM f s 0.00 0.07 0.00 0.07 +robuste robuste ADJ s 2.90 10.07 2.14 7.03 +robustement robustement ADV 0.00 0.14 0.00 0.14 +robustes robuste ADJ p 2.90 10.07 0.76 3.04 +robustesse robustesse NOM f s 0.17 0.81 0.17 0.81 +roc roc NOM m s 3.58 11.76 3.37 7.50 +rocade rocade NOM f s 0.27 0.27 0.27 0.20 +rocades rocade NOM f p 0.27 0.27 0.00 0.07 +rocaille rocaille NOM f s 0.16 2.16 0.16 1.28 +rocailles rocaille NOM f p 0.16 2.16 0.00 0.88 +rocailleuse rocailleux ADJ f s 0.17 3.18 0.07 1.22 +rocailleuses rocailleux ADJ f p 0.17 3.18 0.00 0.07 +rocailleux rocailleux ADJ m 0.17 3.18 0.10 1.89 +rocaillé rocailler VER m s 0.00 0.07 0.00 0.07 par:pas; +rocambole rocambole NOM f s 0.00 0.41 0.00 0.41 +rocambolesque rocambolesque ADJ s 0.18 0.41 0.18 0.27 +rocambolesques rocambolesque ADJ p 0.18 0.41 0.00 0.14 +rochas rocher VER 0.08 0.47 0.00 0.34 ind:pas:2s; +rochassier rochassier NOM m s 0.00 0.07 0.00 0.07 +roche roche NOM f s 5.81 23.38 3.68 14.12 +rochelle rochelle NOM f s 0.74 0.00 0.74 0.00 +rocher rocher NOM m s 16.97 39.53 10.37 17.50 +rochers rocher NOM m p 16.97 39.53 6.61 22.03 +roches roche NOM f p 5.81 23.38 2.13 9.26 +rochet rochet NOM m s 0.01 0.14 0.01 0.14 +rocheuse rocheux ADJ f s 1.06 10.00 0.17 2.64 +rocheuses rocheux ADJ f p 1.06 10.00 0.73 2.70 +rocheux rocheux ADJ m 1.06 10.00 0.16 4.66 +rochiers rochier NOM m p 0.00 0.07 0.00 0.07 +roché rocher VER m s 0.08 0.47 0.01 0.00 par:pas; +rock_n_roll rock_n_roll NOM m 0.19 0.14 0.19 0.14 +rock_n_roll rock_n_roll NOM m s 0.01 0.00 0.01 0.00 +rock rock NOM m s 22.11 20.00 21.47 19.59 +rocker rocker NOM s 1.52 2.91 0.86 1.15 +rockers rocker NOM p 1.52 2.91 0.66 1.76 +rocket rocket NOM m s 1.40 0.07 1.04 0.07 +rockets rocket NOM m p 1.40 0.07 0.35 0.00 +rockeur rockeur NOM m s 0.30 0.14 0.11 0.07 +rockeurs rockeur NOM m p 0.30 0.14 0.05 0.00 +rockeuse rockeur NOM f s 0.30 0.14 0.14 0.07 +rocking_chair rocking_chair NOM m s 0.36 1.15 0.28 0.95 +rocking_chair rocking_chair NOM m p 0.36 1.15 0.01 0.20 +rocking_chair rocking_chair NOM m s 0.36 1.15 0.06 0.00 +rocks rock NOM m p 22.11 20.00 0.64 0.41 +rococo rococo NOM m s 0.14 0.20 0.13 0.07 +rococos rococo NOM m p 0.14 0.20 0.01 0.14 +rocs roc NOM m p 3.58 11.76 0.21 4.26 +rodage rodage NOM m s 0.32 0.41 0.32 0.34 +rodages rodage NOM m p 0.32 0.41 0.00 0.07 +rodait roder VER 1.35 1.76 0.17 0.07 ind:imp:3s; +rode roder VER 1.35 1.76 0.40 0.00 ind:pre:1s;ind:pre:3s; +rodeo rodeo NOM m s 0.23 0.00 0.23 0.00 +roder roder VER 1.35 1.76 0.30 0.34 inf; +roderait roder VER 1.35 1.76 0.00 0.07 cnd:pre:3s; +rodomontades rodomontade NOM f p 0.01 0.47 0.01 0.47 +rodé roder VER m s 1.35 1.76 0.13 0.47 par:pas; +rodée roder VER f s 1.35 1.76 0.05 0.61 par:pas; +rodées roder VER f p 1.35 1.76 0.00 0.14 par:pas; +rodéo rodéo NOM m s 2.01 0.74 1.92 0.74 +rodéos rodéo NOM m p 2.01 0.74 0.09 0.00 +rodés roder VER m p 1.35 1.76 0.30 0.07 par:pas; +roentgens roentgen NOM m p 0.02 0.00 0.02 0.00 +rogations rogation NOM f p 0.00 0.34 0.00 0.34 +rogatoire rogatoire ADJ f s 0.16 0.81 0.16 0.47 +rogatoires rogatoire ADJ f p 0.16 0.81 0.00 0.34 +rogaton rogaton NOM m s 0.11 1.15 0.11 0.14 +rogatons rogaton NOM m p 0.11 1.15 0.00 1.01 +rogna rogner VER 0.39 2.97 0.00 0.07 ind:pas:3s; +rognais rogner VER 0.39 2.97 0.00 0.07 ind:imp:1s; +rognait rogner VER 0.39 2.97 0.00 0.07 ind:imp:3s; +rognant rogner VER 0.39 2.97 0.00 0.14 par:pre; +rogne_pied rogne_pied NOM m s 0.00 0.07 0.00 0.07 +rogne rogne NOM f s 3.68 2.43 3.67 2.23 +rognent rogner VER 0.39 2.97 0.00 0.07 ind:pre:3p; +rogner rogner VER 0.39 2.97 0.09 0.74 inf; +rognes rogne NOM f p 3.68 2.43 0.01 0.20 +rogneux rogneux ADJ m p 0.00 0.14 0.00 0.14 +rognez rogner VER 0.39 2.97 0.01 0.00 imp:pre:2p; +rognon rognon NOM m s 1.12 1.28 0.06 0.74 +rognonnait rognonner VER 0.00 0.07 0.00 0.07 ind:imp:3s; +rognons rognon NOM m p 1.12 1.28 1.06 0.54 +rogné rogner VER m s 0.39 2.97 0.04 0.47 par:pas; +rognée rogner VER f s 0.39 2.97 0.00 0.27 par:pas; +rognées rogner VER f p 0.39 2.97 0.16 0.41 par:pas; +rognure rognure NOM f s 0.35 0.74 0.16 0.20 +rognures rognure NOM f p 0.35 0.74 0.20 0.54 +rognés rogner VER m p 0.39 2.97 0.00 0.47 par:pas; +rogomme rogomme NOM m s 0.00 0.54 0.00 0.41 +rogommes rogomme NOM m p 0.00 0.54 0.00 0.14 +rogue rogue ADJ s 0.66 1.96 0.65 1.69 +rogues rogue ADJ m p 0.66 1.96 0.01 0.27 +roi_roi roi_roi NOM m s 0.01 0.00 0.01 0.00 +roi_soleil roi_soleil NOM m s 0.00 0.14 0.00 0.14 +roi roi NOM m s 177.53 98.92 166.34 85.95 +roide roide ADJ s 0.04 2.57 0.03 1.49 +roidement roidement ADV 0.00 0.34 0.00 0.34 +roides roide ADJ p 0.04 2.57 0.01 1.08 +roideur roideur NOM f s 0.00 0.20 0.00 0.20 +roidi roidir VER m s 0.02 0.27 0.01 0.14 par:pas; +roidie roidir VER f s 0.02 0.27 0.00 0.07 par:pas; +roidir roidir VER 0.02 0.27 0.01 0.00 inf; +roidissait roidir VER 0.02 0.27 0.00 0.07 ind:imp:3s; +rois roi NOM m p 177.53 98.92 11.19 12.97 +roitelet roitelet NOM m s 0.22 0.41 0.19 0.27 +roitelets roitelet NOM m p 0.22 0.41 0.03 0.14 +râla râler VER 6.61 10.41 0.00 0.54 ind:pas:3s; +râlai râler VER 6.61 10.41 0.00 0.07 ind:pas:1s; +râlaient râler VER 6.61 10.41 0.00 0.47 ind:imp:3p; +râlais râler VER 6.61 10.41 0.19 0.07 ind:imp:1s;ind:imp:2s; +râlait râler VER 6.61 10.41 0.15 2.36 ind:imp:3s; +râlant râler VER 6.61 10.41 0.16 0.54 par:pre; +râlante râlant ADJ f s 0.02 0.47 0.02 0.14 +râle râler VER 6.61 10.41 1.70 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +râlement râlement NOM m s 0.00 0.07 0.00 0.07 +râlent râler VER 6.61 10.41 0.37 0.20 ind:pre:3p; +râler râler VER 6.61 10.41 3.05 2.77 inf; +râlera râler VER 6.61 10.41 0.01 0.14 ind:fut:3s; +râlerai râler VER 6.61 10.41 0.02 0.00 ind:fut:1s; +râlerait râler VER 6.61 10.41 0.01 0.34 cnd:pre:3s; +râles râle NOM m p 1.89 9.46 0.84 3.58 +râleur râleur NOM m s 0.48 0.47 0.34 0.14 +râleurs râleur ADJ m p 0.33 0.47 0.21 0.27 +râleuse râleur NOM f s 0.48 0.47 0.03 0.14 +râleuses râleur NOM f p 0.48 0.47 0.00 0.07 +râleux râleux NOM m 0.00 0.14 0.00 0.14 +râlez râler VER 6.61 10.41 0.21 0.14 imp:pre:2p;ind:pre:2p; +roll roll NOM m s 5.67 1.35 5.67 1.35 +rolle rolle NOM m s 0.01 0.00 0.01 0.00 +roller roller NOM m s 1.41 0.00 0.88 0.00 +rollers roller NOM m p 1.41 0.00 0.53 0.00 +rollmops rollmops NOM m 0.03 0.20 0.03 0.20 +râlé râler VER m s 6.61 10.41 0.15 0.54 par:pas; +rom rom NOM s 0.16 0.14 0.01 0.07 +romain romain ADJ m s 11.02 21.55 5.28 8.04 +romaine romain ADJ f s 11.02 21.55 3.77 6.55 +romaines romain ADJ f p 11.02 21.55 0.75 3.58 +romains romain ADJ m p 11.02 21.55 1.23 3.38 +roman_feuilleton roman_feuilleton NOM m s 0.13 0.41 0.03 0.27 +roman_fleuve roman_fleuve NOM m s 0.00 0.07 0.00 0.07 +roman_photo roman_photo NOM m s 0.28 0.41 0.14 0.20 +roman roman NOM m s 23.73 74.80 17.79 51.28 +romance romance NOM s 3.12 3.99 2.98 2.91 +romancer romancer VER 0.17 0.27 0.08 0.07 inf; +romancero romancero NOM m s 0.00 0.07 0.00 0.07 +romances romance NOM p 3.12 3.99 0.14 1.08 +romanche romanche NOM m s 0.00 0.07 0.00 0.07 +romancier romancier NOM m s 0.93 11.89 0.68 8.18 +romanciers romancier NOM m p 0.93 11.89 0.09 2.97 +romancière romancier NOM f s 0.93 11.89 0.16 0.61 +romancières romancier NOM f p 0.93 11.89 0.00 0.14 +romancé romancé ADJ m s 0.07 0.34 0.03 0.00 +romancée romancé ADJ f s 0.07 0.34 0.04 0.20 +romancées romancé ADJ f p 0.07 0.34 0.01 0.14 +romande romand ADJ f s 0.00 0.07 0.00 0.07 +romane roman ADJ f s 2.09 13.11 0.02 1.76 +romanes roman ADJ f p 2.09 13.11 0.02 1.69 +romanesque romanesque ADJ s 1.03 10.07 0.95 8.11 +romanesques romanesque ADJ p 1.03 10.07 0.09 1.96 +romani romani NOM m s 0.11 0.07 0.11 0.07 +romanichel romanichel NOM m s 0.17 1.35 0.01 0.34 +romanichelle romanichel NOM f s 0.17 1.35 0.14 0.14 +romanichelles romanichel NOM f p 0.17 1.35 0.00 0.07 +romanichels romanichel NOM m p 0.17 1.35 0.02 0.81 +romanisation romanisation NOM f s 0.00 0.07 0.00 0.07 +romanistes romaniste NOM p 0.01 0.07 0.01 0.07 +romanité romanité NOM f s 0.00 0.14 0.00 0.14 +romano romano NOM s 0.28 0.54 0.22 0.20 +romanos romano NOM p 0.28 0.54 0.06 0.34 +roman_feuilleton roman_feuilleton NOM m p 0.13 0.41 0.10 0.14 +roman_photo roman_photo NOM m p 0.28 0.41 0.14 0.20 +romans roman NOM m p 23.73 74.80 5.94 23.51 +romanticisme romanticisme NOM m s 0.01 0.00 0.01 0.00 +romantique romantique ADJ s 22.48 10.27 20.58 7.64 +romantiquement romantiquement ADV 0.09 0.27 0.09 0.27 +romantiques romantique ADJ p 22.48 10.27 1.89 2.64 +romantisme romantisme NOM m s 1.48 3.85 1.48 3.72 +romantismes romantisme NOM m p 1.48 3.85 0.00 0.14 +romarin romarin NOM m s 1.47 1.01 1.47 1.01 +rombière rombière NOM f s 0.18 2.70 0.05 1.96 +rombières rombière NOM f p 0.18 2.70 0.13 0.74 +rompît rompre VER 41.37 52.64 0.01 0.61 sub:imp:3s; +rompaient rompre VER 41.37 52.64 0.13 0.61 ind:imp:3p; +rompais rompre VER 41.37 52.64 0.18 0.14 ind:imp:1s;ind:imp:2s; +rompait rompre VER 41.37 52.64 0.06 1.82 ind:imp:3s; +rompant rompre VER 41.37 52.64 0.20 2.36 par:pre; +rompe rompre VER 41.37 52.64 0.72 0.61 sub:pre:1s;sub:pre:3s; +rompent rompre VER 41.37 52.64 0.29 0.47 ind:pre:3p; +rompez rompre VER 41.37 52.64 6.20 1.15 imp:pre:2p;ind:pre:2p; +rompiez rompre VER 41.37 52.64 0.01 0.00 ind:imp:2p; +rompirent rompre VER 41.37 52.64 0.00 0.34 ind:pas:3p; +rompis rompre VER 41.37 52.64 0.00 0.14 ind:pas:1s; +rompissent rompre VER 41.37 52.64 0.00 0.07 sub:imp:3p; +rompit rompre VER 41.37 52.64 0.28 3.24 ind:pas:3s; +rompons rompre VER 41.37 52.64 0.02 0.14 imp:pre:1p;ind:pre:1p; +rompra rompre VER 41.37 52.64 0.20 0.27 ind:fut:3s; +romprai rompre VER 41.37 52.64 0.15 0.00 ind:fut:1s; +rompraient rompre VER 41.37 52.64 0.00 0.14 cnd:pre:3p; +romprais rompre VER 41.37 52.64 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +romprait rompre VER 41.37 52.64 0.05 0.27 cnd:pre:3s; +rompre rompre VER 41.37 52.64 12.61 21.82 inf; +romprez rompre VER 41.37 52.64 0.04 0.07 ind:fut:2p; +romprions rompre VER 41.37 52.64 0.00 0.07 cnd:pre:1p; +romprons rompre VER 41.37 52.64 0.01 0.00 ind:fut:1p; +romps rompre VER 41.37 52.64 2.01 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +rompt rompre VER 41.37 52.64 1.66 2.57 ind:pre:3s; +rompu rompre VER m s 41.37 52.64 15.16 10.68 par:pas; +rompue rompre VER f s 41.37 52.64 0.84 2.03 par:pas; +rompues rompre VER f p 41.37 52.64 0.15 0.61 par:pas; +rompus rompu ADJ m p 1.13 5.07 0.33 1.62 +roms rom NOM p 0.16 0.14 0.14 0.07 +ron ron NOM m s 0.23 0.34 0.23 0.34 +ronce ronce NOM f s 1.10 13.78 0.14 1.28 +ronces ronce NOM f p 1.10 13.78 0.95 12.50 +roncet roncet NOM m s 0.00 0.07 0.00 0.07 +ronceux ronceux ADJ m 0.00 0.07 0.00 0.07 +ronchon ronchon ADJ m s 0.45 0.14 0.41 0.14 +ronchonna ronchonner VER 0.41 4.32 0.00 0.95 ind:pas:3s; +ronchonnaient ronchonner VER 0.41 4.32 0.00 0.07 ind:imp:3p; +ronchonnais ronchonner VER 0.41 4.32 0.00 0.14 ind:imp:1s; +ronchonnait ronchonner VER 0.41 4.32 0.00 0.74 ind:imp:3s; +ronchonnant ronchonner VER 0.41 4.32 0.11 0.47 par:pre; +ronchonne ronchonner VER 0.41 4.32 0.09 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronchonnent ronchonner VER 0.41 4.32 0.01 0.14 ind:pre:3p; +ronchonner ronchonner VER 0.41 4.32 0.16 0.95 inf; +ronchonnes ronchonner VER 0.41 4.32 0.02 0.00 ind:pre:2s; +ronchonneur ronchonneur NOM m s 0.02 0.20 0.02 0.07 +ronchonneuse ronchonneur NOM f s 0.02 0.20 0.00 0.14 +ronchonnot ronchonnot NOM m s 0.00 0.14 0.00 0.14 +ronchonné ronchonner VER m s 0.41 4.32 0.02 0.14 par:pas; +roncier roncier NOM m s 0.00 2.64 0.00 1.76 +ronciers roncier NOM m p 0.00 2.64 0.00 0.88 +rond_de_cuir rond_de_cuir NOM m s 0.26 0.34 0.23 0.27 +rond_point rond_point NOM m s 0.44 2.50 0.44 2.43 +rond rond NOM m s 16.84 33.65 15.11 24.46 +rondache rondache NOM f s 0.02 0.07 0.02 0.07 +ronde_bosse ronde_bosse NOM f s 0.00 0.61 0.00 0.61 +ronde ronde NOM f s 9.54 20.81 7.93 17.97 +rondeau rondeau NOM m s 0.02 0.07 0.02 0.07 +rondelet rondelet ADJ m s 0.34 1.22 0.06 0.54 +rondelette rondelet ADJ f s 0.34 1.22 0.28 0.54 +rondelettes rondelet ADJ f p 0.34 1.22 0.00 0.14 +rondelle rondelle NOM f s 1.16 5.34 0.42 2.23 +rondelles rondelle NOM f p 1.16 5.34 0.73 3.11 +rondement rondement ADV 0.22 1.28 0.22 1.28 +rondes ronde NOM f p 9.54 20.81 1.61 2.84 +rondeur rondeur NOM f s 0.41 6.49 0.19 3.99 +rondeurs rondeur NOM f p 0.41 6.49 0.23 2.50 +rondin rondin NOM m s 0.76 8.78 0.23 1.08 +rondins rondin NOM m p 0.76 8.78 0.53 7.70 +rondo rondo NOM m s 0.34 0.68 0.34 0.61 +rondos rondo NOM m p 0.34 0.68 0.00 0.07 +rondouillard rondouillard ADJ m s 0.04 1.55 0.03 1.01 +rondouillarde rondouillard ADJ f s 0.04 1.55 0.01 0.41 +rondouillards rondouillard ADJ m p 0.04 1.55 0.00 0.14 +rond_de_cuir rond_de_cuir NOM m p 0.26 0.34 0.03 0.07 +rond_point rond_point NOM m p 0.44 2.50 0.00 0.07 +ronds rond NOM m p 16.84 33.65 1.73 9.19 +ronfla ronfler VER 6.62 18.24 0.00 0.47 ind:pas:3s; +ronflaient ronfler VER 6.62 18.24 0.01 0.81 ind:imp:3p; +ronflais ronfler VER 6.62 18.24 0.25 0.20 ind:imp:1s;ind:imp:2s; +ronflait ronfler VER 6.62 18.24 0.19 4.80 ind:imp:3s; +ronflant ronflant ADJ m s 0.33 2.16 0.27 0.68 +ronflante ronflant ADJ f s 0.33 2.16 0.00 0.47 +ronflantes ronflant ADJ f p 0.33 2.16 0.01 0.27 +ronflants ronflant ADJ m p 0.33 2.16 0.05 0.74 +ronfle ronfler VER 6.62 18.24 2.52 3.65 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronflement ronflement NOM m s 1.39 10.41 0.67 6.49 +ronflements ronflement NOM m p 1.39 10.41 0.72 3.92 +ronflent ronfler VER 6.62 18.24 0.30 1.22 ind:pre:3p; +ronfler ronfler VER 6.62 18.24 1.14 5.47 inf; +ronflerais ronfler VER 6.62 18.24 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +ronfleras ronfler VER 6.62 18.24 0.11 0.00 ind:fut:2s; +ronfles ronfler VER 6.62 18.24 0.78 0.14 ind:pre:2s; +ronflette ronflette NOM f s 0.14 0.81 0.14 0.81 +ronfleur ronfleur NOM m s 0.00 0.68 0.00 0.54 +ronfleurs ronfleur NOM m p 0.00 0.68 0.00 0.07 +ronfleuse ronfleur NOM f s 0.00 0.68 0.00 0.07 +ronflez ronfler VER 6.62 18.24 0.32 0.00 imp:pre:2p;ind:pre:2p; +ronfliez ronfler VER 6.62 18.24 0.01 0.00 ind:imp:2p; +ronflotait ronfloter VER 0.00 0.20 0.00 0.07 ind:imp:3s; +ronflotant ronfloter VER 0.00 0.20 0.00 0.07 par:pre; +ronflote ronfloter VER 0.00 0.20 0.00 0.07 ind:pre:3s; +ronflèrent ronfler VER 6.62 18.24 0.00 0.07 ind:pas:3p; +ronflé ronfler VER m s 6.62 18.24 0.90 0.27 par:pas; +ronge ronger VER 11.68 28.38 4.23 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rongea ronger VER 11.68 28.38 0.00 0.14 ind:pas:3s; +rongeai ronger VER 11.68 28.38 0.00 0.20 ind:pas:1s; +rongeaient ronger VER 11.68 28.38 0.18 0.88 ind:imp:3p; +rongeais ronger VER 11.68 28.38 0.02 0.27 ind:imp:1s;ind:imp:2s; +rongeait ronger VER 11.68 28.38 0.88 3.85 ind:imp:3s; +rongeant ronger VER 11.68 28.38 0.16 1.01 par:pre; +rongeante rongeant ADJ f s 0.00 0.27 0.00 0.14 +rongeantes rongeant ADJ f p 0.00 0.27 0.00 0.07 +rongement rongement NOM m s 0.00 0.14 0.00 0.14 +rongent ronger VER 11.68 28.38 0.53 1.08 ind:pre:3p; +rongeât ronger VER 11.68 28.38 0.00 0.14 sub:imp:3s; +ronger ronger VER 11.68 28.38 1.54 2.84 inf; +rongera ronger VER 11.68 28.38 0.36 0.07 ind:fut:3s; +rongerait ronger VER 11.68 28.38 0.05 0.07 cnd:pre:3s; +ronges ronger VER 11.68 28.38 0.38 0.14 ind:pre:2s; +rongeur rongeur NOM m s 1.43 2.91 0.52 1.01 +rongeurs rongeur NOM m p 1.43 2.91 0.91 1.89 +rongeuse rongeuse ADJ f s 0.01 0.00 0.01 0.00 +rongeuses rongeur ADJ f p 0.27 0.95 0.10 0.07 +rongez ronger VER 11.68 28.38 0.21 0.00 imp:pre:2p;ind:pre:2p; +rongicide rongicide ADJ s 0.00 0.07 0.00 0.07 +rongèrent ronger VER 11.68 28.38 0.00 0.07 ind:pas:3p; +rongé ronger VER m s 11.68 28.38 2.10 4.66 par:pas; +rongée ronger VER f s 11.68 28.38 0.68 3.38 par:pas; +rongées ronger VER f p 11.68 28.38 0.17 1.96 par:pas; +rongés ronger VER m p 11.68 28.38 0.19 3.51 par:pas; +ronin ronin NOM m s 0.30 0.07 0.30 0.07 +ronron ronron NOM m s 0.16 3.51 0.16 2.70 +ronronna ronronner VER 0.76 11.08 0.00 0.47 ind:pas:3s; +ronronnaient ronronner VER 0.76 11.08 0.00 0.68 ind:imp:3p; +ronronnais ronronner VER 0.76 11.08 0.01 0.20 ind:imp:1s;ind:imp:2s; +ronronnait ronronner VER 0.76 11.08 0.03 2.50 ind:imp:3s; +ronronnant ronronner VER 0.76 11.08 0.02 1.42 par:pre; +ronronnante ronronnant ADJ f s 0.01 0.81 0.01 0.34 +ronronnantes ronronnant ADJ f p 0.01 0.81 0.00 0.14 +ronronnants ronronnant ADJ m p 0.01 0.81 0.00 0.07 +ronronne ronronner VER 0.76 11.08 0.48 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ronronnement ronronnement NOM m s 0.04 5.27 0.04 4.93 +ronronnements ronronnement NOM m p 0.04 5.27 0.00 0.34 +ronronnent ronronner VER 0.76 11.08 0.00 0.41 ind:pre:3p; +ronronner ronronner VER 0.76 11.08 0.17 2.03 inf; +ronronnerait ronronner VER 0.76 11.08 0.00 0.07 cnd:pre:3s; +ronronnons ronronner VER 0.76 11.08 0.00 0.07 imp:pre:1p; +ronronnèrent ronronner VER 0.76 11.08 0.00 0.07 ind:pas:3p; +ronronné ronronner VER m s 0.76 11.08 0.04 0.41 par:pas; +ronrons ronron NOM m p 0.16 3.51 0.00 0.81 +ronéo ronéo NOM f s 0.02 0.14 0.02 0.14 +ronéotions ronéoter VER 0.00 0.14 0.00 0.07 ind:imp:1p; +ronéoté ronéoter VER m s 0.00 0.14 0.00 0.07 par:pas; +ronéotyper ronéotyper VER 0.00 0.34 0.00 0.07 inf; +ronéotypé ronéotyper VER m s 0.00 0.34 0.00 0.14 par:pas; +ronéotypés ronéotyper VER m p 0.00 0.34 0.00 0.14 par:pas; +roof roof NOM m s 0.03 0.20 0.03 0.20 +râpa râper VER 1.22 4.39 0.00 0.07 ind:pas:3s; +râpaient râper VER 1.22 4.39 0.00 0.27 ind:imp:3p; +râpait râper VER 1.22 4.39 0.00 0.34 ind:imp:3s; +râpant râper VER 1.22 4.39 0.00 0.14 par:pre; +râpe râpe NOM f s 1.25 1.55 1.02 1.35 +râpent râper VER 1.22 4.39 0.00 0.20 ind:pre:3p; +râper râper VER 1.22 4.39 0.07 0.47 inf; +râperait râper VER 1.22 4.39 0.00 0.07 cnd:pre:3s; +râperas râper VER 1.22 4.39 0.00 0.07 ind:fut:2s; +râpes râpe NOM f p 1.25 1.55 0.23 0.20 +râpeuse râpeux ADJ f s 0.30 3.85 0.01 1.69 +râpeuses râpeux ADJ f p 0.30 3.85 0.00 0.68 +râpeux râpeux ADJ m 0.30 3.85 0.29 1.49 +roploplos roploplo NOM m p 0.01 0.07 0.01 0.07 +râpé râper VER m s 1.22 4.39 0.96 1.76 par:pas; +râpée râpé ADJ f s 0.49 3.51 0.30 0.54 +râpées râpé ADJ f p 0.49 3.51 0.03 0.88 +râpés râpé ADJ m p 0.49 3.51 0.02 0.47 +roque roque NOM m s 1.14 0.74 1.14 0.34 +roquefort roquefort NOM m s 0.07 0.61 0.07 0.61 +roquentin roquentin NOM m s 0.00 0.14 0.00 0.14 +roquer roquer VER 0.20 0.07 0.00 0.07 inf; +roques roque NOM m p 1.14 0.74 0.00 0.41 +roquet roquet NOM m s 0.25 1.89 0.23 1.35 +roquets roquet NOM m p 0.25 1.89 0.02 0.54 +roquette roquette NOM f s 1.68 1.01 0.91 0.74 +roquettes roquette NOM f p 1.68 1.01 0.76 0.27 +rorqual rorqual NOM m s 0.00 0.20 0.00 0.14 +rorquals rorqual NOM m p 0.00 0.20 0.00 0.07 +rosa roser VER 0.51 3.31 0.01 0.14 ind:pas:3s; +rosace rosace NOM f s 0.00 2.16 0.00 1.08 +rosaces rosace NOM f p 0.00 2.16 0.00 1.08 +rosages rosage NOM m p 0.00 0.07 0.00 0.07 +rosaire rosaire NOM m s 1.54 0.74 1.33 0.61 +rosaires rosaire NOM m p 1.54 0.74 0.21 0.14 +rosales rosales NOM f p 0.36 0.00 0.36 0.00 +rosat rosat ADJ f s 0.00 0.20 0.00 0.20 +rosbif rosbif NOM m s 1.81 0.54 1.38 0.47 +rosbifs rosbif NOM m p 1.81 0.54 0.43 0.07 +rose_croix rose_croix NOM m 0.00 0.07 0.00 0.07 +rose_thé rose_thé ADJ m s 0.00 0.07 0.00 0.07 +rose_thé rose_thé NOM s 0.00 0.07 0.00 0.07 +rose rose ADJ s 23.72 96.08 18.43 66.62 +roseau roseau NOM m s 1.13 16.55 0.63 2.97 +roseaux roseau NOM m p 1.13 16.55 0.50 13.58 +roselière roselier NOM f s 0.00 0.61 0.00 0.14 +roselières roselier NOM f p 0.00 0.61 0.00 0.47 +roser roser VER 0.51 3.31 0.00 0.07 inf; +roseraie roseraie NOM f s 0.31 0.20 0.30 0.14 +roseraies roseraie NOM f p 0.31 0.20 0.01 0.07 +roses rose NOM p 24.67 57.30 13.56 26.96 +rosette rosette NOM f s 0.10 2.03 0.07 1.76 +rosettes rosette NOM f p 0.10 2.03 0.03 0.27 +roseur roseur NOM f s 0.00 0.68 0.00 0.54 +roseurs roseur NOM f p 0.00 0.68 0.00 0.14 +rosi rosir VER m s 1.44 3.51 0.10 0.20 par:pas; +rosicrucien rosicrucien ADJ m s 0.01 0.07 0.01 0.00 +rosicrucienne rosicrucien NOM f s 0.02 0.00 0.01 0.00 +rosicrucienne rosicrucienne ADJ f s 0.01 0.00 0.01 0.00 +rosicruciens rosicrucien NOM m p 0.02 0.00 0.01 0.00 +rosie rosir VER f s 1.44 3.51 1.24 0.00 par:pas; +rosier rosier NOM m s 0.85 5.41 0.24 1.22 +rosiers rosier NOM m p 0.85 5.41 0.61 4.19 +rosies rosir VER f p 1.44 3.51 0.00 0.14 par:pas; +rosir rosir VER 1.44 3.51 0.04 0.74 inf; +rosis rosir VER m p 1.44 3.51 0.00 0.14 ind:pas:1s;par:pas; +rosissaient rosir VER 1.44 3.51 0.00 0.27 ind:imp:3p; +rosissait rosir VER 1.44 3.51 0.00 0.54 ind:imp:3s; +rosissant rosir VER 1.44 3.51 0.00 0.34 par:pre; +rosissent rosir VER 1.44 3.51 0.00 0.14 ind:pre:3p; +rosit rosir VER 1.44 3.51 0.06 1.01 ind:pre:3s;ind:pas:3s; +rosière rosière NOM f s 0.00 0.14 0.00 0.14 +rosâtre rosâtre ADJ s 0.04 2.16 0.04 1.55 +rosâtres rosâtre ADJ p 0.04 2.16 0.00 0.61 +rossa rosser VER 2.49 2.43 0.02 0.07 ind:pas:3s; +rossaient rosser VER 2.49 2.43 0.01 0.07 ind:imp:3p; +rossait rosser VER 2.49 2.43 0.01 0.07 ind:imp:3s; +rossant rosser VER 2.49 2.43 0.00 0.07 par:pre; +rossard rossard NOM m s 0.00 0.20 0.00 0.07 +rossards rossard NOM m p 0.00 0.20 0.00 0.14 +rosse rosser VER 2.49 2.43 0.45 0.14 ind:pre:1s;ind:pre:3s; +rossent rosser VER 2.49 2.43 0.01 0.07 ind:pre:3p; +rosser rosser VER 2.49 2.43 0.79 0.74 inf; +rosserai rosser VER 2.49 2.43 0.12 0.07 ind:fut:1s; +rosserie rosserie NOM f s 0.02 0.47 0.00 0.14 +rosseries rosserie NOM f p 0.02 0.47 0.02 0.34 +rosses rosse ADJ f p 0.61 0.41 0.20 0.14 +rossez rosser VER 2.49 2.43 0.16 0.00 imp:pre:2p;ind:pre:2p; +rossignol rossignol NOM m s 2.56 3.51 2.06 1.76 +rossignols rossignol NOM m p 2.56 3.51 0.50 1.76 +rossinante rossinante NOM f s 0.09 0.07 0.09 0.00 +rossinantes rossinante NOM f p 0.09 0.07 0.00 0.07 +rossé rosser VER m s 2.49 2.43 0.52 0.81 par:pas; +rossée rosser VER f s 2.49 2.43 0.14 0.20 par:pas; +rossés rosser VER m p 2.49 2.43 0.26 0.14 par:pas; +rostre rostre NOM m s 0.03 0.14 0.02 0.00 +rostres rostre NOM m p 0.03 0.14 0.01 0.14 +rosé rosé NOM m s 0.86 2.70 0.86 2.43 +rosée rosée NOM f s 3.19 9.46 3.19 9.26 +rosées roser VER f p 0.51 3.31 0.02 0.41 par:pas; +roséole roséole NOM f s 0.01 0.07 0.01 0.07 +rosés rosé ADJ m p 0.50 2.64 0.27 0.34 +rot rot NOM m s 1.85 1.69 1.76 1.08 +rota roter VER 1.30 3.45 0.23 0.47 ind:pas:3s; +rotaient roter VER 1.30 3.45 0.01 0.27 ind:imp:3p; +rotais roter VER 1.30 3.45 0.00 0.07 ind:imp:1s; +rotait roter VER 1.30 3.45 0.01 0.41 ind:imp:3s; +rotant roter VER 1.30 3.45 0.04 0.00 par:pre; +rotariens rotarien ADJ m p 0.01 0.00 0.01 0.00 +rotary rotary NOM m s 0.76 0.34 0.76 0.34 +rotateur rotateur ADJ m s 0.02 0.00 0.02 0.00 +rotatif rotatif ADJ m s 0.17 0.81 0.07 0.47 +rotatifs rotatif ADJ m p 0.17 0.81 0.04 0.00 +rotation rotation NOM f s 2.30 3.58 2.08 3.38 +rotationnel rotationnel ADJ m s 0.01 0.00 0.01 0.00 +rotations rotation NOM f p 2.30 3.58 0.22 0.20 +rotative rotatif ADJ f s 0.17 0.81 0.03 0.27 +rotatives rotative NOM f p 0.07 1.08 0.07 0.95 +rotativistes rotativiste NOM p 0.00 0.07 0.00 0.07 +rotatoire rotatoire ADJ m s 0.01 0.07 0.01 0.07 +rote roter VER 1.30 3.45 0.43 0.88 ind:pre:1s;ind:pre:3s; +râteau râteau NOM m s 0.83 2.50 0.77 1.62 +râteaux râteau NOM m p 0.83 2.50 0.07 0.88 +râtelait râteler VER 0.01 0.14 0.00 0.07 ind:imp:3s; +râteler râteler VER 0.01 0.14 0.01 0.00 inf; +râtelier râtelier NOM m s 0.39 2.77 0.36 2.43 +râteliers râtelier NOM m p 0.39 2.77 0.03 0.34 +râtelées râteler VER f p 0.01 0.14 0.00 0.07 par:pas; +rotengles rotengle NOM m p 0.00 0.07 0.00 0.07 +rotent roter VER 1.30 3.45 0.04 0.14 ind:pre:3p; +roter roter VER 1.30 3.45 0.45 0.81 inf; +rotera roter VER 1.30 3.45 0.00 0.07 ind:fut:3s; +rotes roter VER 1.30 3.45 0.02 0.00 ind:pre:2s; +roteur roteur NOM m s 0.01 0.68 0.01 0.00 +roteuse roteuse NOM f s 0.01 0.00 0.01 0.00 +roteuses roteur NOM f p 0.01 0.68 0.00 0.07 +rotez roter VER 1.30 3.45 0.00 0.07 ind:pre:2p; +rotin rotin NOM m s 0.13 3.38 0.13 3.38 +roto roto NOM f s 0.04 0.07 0.03 0.07 +rotonde rotonde NOM f s 0.21 1.69 0.21 1.62 +rotondes rotonde NOM f p 0.21 1.69 0.00 0.07 +rotondité rotondité NOM f s 0.01 0.54 0.01 0.27 +rotondités rotondité NOM f p 0.01 0.54 0.00 0.27 +rotoplos rotoplos NOM m p 0.01 0.27 0.01 0.27 +rotoplots rotoplots NOM m p 0.01 0.07 0.01 0.07 +rotor rotor NOM m s 0.37 0.41 0.31 0.41 +rotors rotor NOM m p 0.37 0.41 0.06 0.00 +rotos roto NOM f p 0.04 0.07 0.01 0.00 +rototo rototo NOM m s 0.03 0.07 0.02 0.00 +rototos rototo NOM m p 0.03 0.07 0.01 0.07 +rots rot NOM m p 1.85 1.69 0.09 0.61 +roté roter VER m s 1.30 3.45 0.06 0.20 par:pas; +rotées roter VER f p 1.30 3.45 0.00 0.07 par:pas; +rotule rotule NOM f s 1.29 1.76 0.57 0.61 +rotules rotule NOM f p 1.29 1.76 0.72 1.15 +rotulien rotulien ADJ m s 0.03 0.00 0.03 0.00 +roténone roténone NOM f s 0.09 0.00 0.09 0.00 +roture roture NOM f s 0.14 0.47 0.14 0.47 +roturier roturier NOM m s 0.17 0.54 0.06 0.27 +roturiers roturier NOM m p 0.17 0.54 0.05 0.14 +roturière roturier NOM f s 0.17 0.54 0.06 0.14 +roua rouer VER 2.20 2.57 0.00 0.07 ind:pas:3s; +rouage rouage NOM m s 1.18 4.05 0.30 0.47 +rouages rouage NOM m p 1.18 4.05 0.88 3.58 +rouaient rouer VER 2.20 2.57 0.01 0.07 ind:imp:3p; +rouais rouer VER 2.20 2.57 0.02 0.00 ind:imp:2s; +rouait rouer VER 2.20 2.57 0.13 0.14 ind:imp:3s; +rouan rouan NOM m s 0.16 0.20 0.16 0.20 +rouant rouer VER 2.20 2.57 0.01 0.14 par:pre; +roubaisienne roubaisien NOM f s 0.00 0.07 0.00 0.07 +roubignoles roubignoles NOM f p 0.06 0.27 0.06 0.27 +roublard roublard NOM m s 0.33 0.27 0.32 0.27 +roublarde roublard ADJ f s 0.10 0.74 0.01 0.14 +roublarder roublarder VER 0.00 0.07 0.00 0.07 inf; +roublardes roublard ADJ f p 0.10 0.74 0.01 0.07 +roublardise roublardise NOM f s 0.00 0.20 0.00 0.14 +roublardises roublardise NOM f p 0.00 0.20 0.00 0.07 +rouble rouble NOM m s 7.88 0.68 1.22 0.14 +roubles rouble NOM m p 7.88 0.68 6.66 0.54 +roucoula roucouler VER 0.70 3.45 0.00 0.47 ind:pas:3s; +roucoulade roucoulade NOM f s 0.16 0.68 0.16 0.14 +roucoulades roucoulade NOM f p 0.16 0.68 0.00 0.54 +roucoulaient roucouler VER 0.70 3.45 0.00 0.20 ind:imp:3p; +roucoulais roucouler VER 0.70 3.45 0.01 0.00 ind:imp:2s; +roucoulait roucouler VER 0.70 3.45 0.03 0.68 ind:imp:3s; +roucoulant roucouler VER 0.70 3.45 0.00 0.47 par:pre; +roucoulante roucoulant ADJ f s 0.02 0.61 0.02 0.27 +roucoulantes roucoulant ADJ f p 0.02 0.61 0.00 0.14 +roucoulants roucoulant ADJ m p 0.02 0.61 0.00 0.14 +roucoule roucouler VER 0.70 3.45 0.38 0.34 ind:pre:1s;ind:pre:3s; +roucoulement roucoulement NOM m s 0.33 1.42 0.16 0.61 +roucoulements roucoulement NOM m p 0.33 1.42 0.16 0.81 +roucoulent roucouler VER 0.70 3.45 0.03 0.20 ind:pre:3p; +roucouler roucouler VER 0.70 3.45 0.23 0.81 inf; +roucoulerez roucouler VER 0.70 3.45 0.01 0.00 ind:fut:2p; +roucouleur roucouleur NOM m s 0.02 0.07 0.02 0.07 +roucoulé roucouler VER m s 0.70 3.45 0.01 0.20 par:pas; +roucoulés roucouler VER m p 0.70 3.45 0.00 0.07 par:pas; +roudoudou roudoudou NOM m s 0.28 0.68 0.28 0.54 +roudoudous roudoudou NOM m p 0.28 0.68 0.00 0.14 +roue roue NOM f s 21.87 42.43 13.49 17.77 +rouelle rouelle NOM f s 0.00 0.14 0.00 0.14 +rouennaise rouennais NOM f s 0.27 0.00 0.27 0.00 +rouenneries rouennerie NOM f p 0.00 0.07 0.00 0.07 +rouent rouer VER 2.20 2.57 0.12 0.00 ind:pre:3p; +rouer rouer VER 2.20 2.57 0.46 0.34 inf; +rouerai rouer VER 2.20 2.57 0.20 0.00 ind:fut:1s; +rouergat rouergat ADJ m s 0.00 0.07 0.00 0.07 +rouerie rouerie NOM f s 0.01 0.95 0.01 0.74 +roueries rouerie NOM f p 0.01 0.95 0.00 0.20 +roueront rouer VER 2.20 2.57 0.14 0.00 ind:fut:3p; +roues roue NOM f p 21.87 42.43 8.38 24.66 +rouet rouet NOM m s 0.15 0.54 0.15 0.54 +rouf rouf NOM m s 0.00 0.27 0.00 0.27 +rouflaquettes rouflaquette NOM f p 0.13 0.81 0.13 0.81 +rougît rougir VER 9.01 42.09 0.00 0.07 sub:imp:3s; +rouge_brun rouge_brun ADJ m s 0.00 0.20 0.00 0.20 +rouge_feu rouge_feu ADJ m s 0.00 0.07 0.00 0.07 +rouge_gorge rouge_gorge NOM m s 0.44 1.08 0.30 0.68 +rouge_queue rouge_queue NOM m s 0.00 0.07 0.00 0.07 +rouge_sang rouge_sang NOM s 0.00 0.07 0.00 0.07 +rouge rouge ADJ s 102.93 273.24 79.70 195.27 +rougeaud rougeaud NOM m s 0.10 0.74 0.10 0.68 +rougeaude rougeaud ADJ f s 0.04 3.78 0.00 0.61 +rougeaudes rougeaud ADJ f p 0.04 3.78 0.00 0.27 +rougeauds rougeaud ADJ m p 0.04 3.78 0.00 0.81 +rougeoie rougeoyer VER 0.38 3.51 0.14 0.68 imp:pre:2s;ind:pre:3s; +rougeoiement rougeoiement NOM m s 0.03 1.42 0.03 1.15 +rougeoiements rougeoiement NOM m p 0.03 1.42 0.00 0.27 +rougeoient rougeoyer VER 0.38 3.51 0.00 0.27 ind:pre:3p; +rougeole rougeole NOM f s 1.27 1.69 1.27 1.69 +rougeâtre rougeâtre ADJ s 0.17 6.08 0.15 3.85 +rougeâtres rougeâtre ADJ p 0.17 6.08 0.02 2.23 +rougeoya rougeoyer VER 0.38 3.51 0.00 0.07 ind:pas:3s; +rougeoyaient rougeoyer VER 0.38 3.51 0.00 0.41 ind:imp:3p; +rougeoyait rougeoyer VER 0.38 3.51 0.00 1.35 ind:imp:3s; +rougeoyant rougeoyant ADJ m s 0.28 2.03 0.15 0.54 +rougeoyante rougeoyant ADJ f s 0.28 2.03 0.11 0.61 +rougeoyantes rougeoyant ADJ f p 0.28 2.03 0.00 0.54 +rougeoyants rougeoyant ADJ m p 0.28 2.03 0.01 0.34 +rougeoyer rougeoyer VER 0.38 3.51 0.22 0.61 inf; +rougeoyé rougeoyer VER m s 0.38 3.51 0.00 0.07 par:pas; +rouge_gorge rouge_gorge NOM m p 0.44 1.08 0.13 0.41 +rouges rouge ADJ p 102.93 273.24 23.23 77.97 +rouget rouget NOM m s 0.35 1.49 0.35 0.54 +rougets rouget NOM m p 0.35 1.49 0.00 0.95 +rougeur rougeur NOM f s 1.16 3.04 0.63 1.89 +rougeurs rougeur NOM f p 1.16 3.04 0.53 1.15 +rough rough NOM m s 0.20 0.00 0.20 0.00 +rougi rougir VER m s 9.01 42.09 0.72 4.19 par:pas; +rougie rougir VER f s 9.01 42.09 0.17 1.62 par:pas; +rougies rougir VER f p 9.01 42.09 0.10 1.22 par:pas; +rougir rougir VER 9.01 42.09 2.51 10.68 inf; +rougira rougir VER 9.01 42.09 0.01 0.07 ind:fut:3s; +rougiraient rougir VER 9.01 42.09 0.00 0.07 cnd:pre:3p; +rougirais rougir VER 9.01 42.09 0.13 0.14 cnd:pre:1s; +rougirait rougir VER 9.01 42.09 0.29 0.00 cnd:pre:3s; +rougirent rougir VER 9.01 42.09 0.00 0.20 ind:pas:3p; +rougirez rougir VER 9.01 42.09 0.27 0.00 ind:fut:2p; +rougis rougir VER m p 9.01 42.09 1.75 4.32 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rougissaient rougir VER 9.01 42.09 0.02 0.54 ind:imp:3p; +rougissais rougir VER 9.01 42.09 0.19 0.68 ind:imp:1s;ind:imp:2s; +rougissait rougir VER 9.01 42.09 0.03 2.36 ind:imp:3s; +rougissant rougir VER 9.01 42.09 0.02 3.78 par:pre; +rougissante rougissant ADJ f s 0.20 2.16 0.15 1.28 +rougissantes rougissant ADJ f p 0.20 2.16 0.02 0.14 +rougissants rougissant ADJ m p 0.20 2.16 0.01 0.07 +rougisse rougir VER 9.01 42.09 0.01 0.07 sub:pre:1s;sub:pre:3s; +rougissement rougissement NOM m s 0.06 0.07 0.03 0.07 +rougissements rougissement NOM m p 0.06 0.07 0.04 0.00 +rougissent rougir VER 9.01 42.09 0.68 0.27 ind:pre:3p; +rougissez rougir VER 9.01 42.09 0.46 0.34 imp:pre:2p;ind:pre:2p; +rougit rougir VER 9.01 42.09 1.65 11.49 ind:pre:3s;ind:pas:3s; +roui rouir VER m s 0.00 0.27 0.00 0.07 par:pas; +rouies rouir VER f p 0.00 0.27 0.00 0.07 par:pas; +rouillaient rouiller VER 6.75 19.46 0.00 0.47 ind:imp:3p; +rouillait rouiller VER 6.75 19.46 0.00 0.54 ind:imp:3s; +rouillant rouiller VER 6.75 19.46 0.00 0.14 par:pre; +rouillarde rouillarde NOM f s 0.00 0.07 0.00 0.07 +rouille rouille NOM f s 1.97 8.85 1.96 8.72 +rouillent rouiller VER 6.75 19.46 0.75 0.20 ind:pre:3p; +rouiller rouiller VER 6.75 19.46 0.90 0.54 inf; +rouillerait rouiller VER 6.75 19.46 0.02 0.14 cnd:pre:3s; +rouilleront rouiller VER 6.75 19.46 0.01 0.00 ind:fut:3p; +rouilles rouille NOM f p 1.97 8.85 0.01 0.14 +rouilleux rouilleux ADJ m 0.00 0.14 0.00 0.14 +rouillé rouiller VER m s 6.75 19.46 2.26 5.41 par:pas; +rouillée rouiller VER f s 6.75 19.46 1.46 2.91 par:pas; +rouillées rouiller VER f p 6.75 19.46 0.49 3.65 par:pas; +rouillures rouillure NOM f p 0.00 0.07 0.00 0.07 +rouillés rouiller VER m p 6.75 19.46 0.42 4.26 par:pas; +rouissant rouir VER 0.00 0.27 0.00 0.07 par:pre; +rouissent rouir VER 0.00 0.27 0.00 0.07 ind:pre:3p; +roula rouler VER 61.82 163.45 0.16 12.43 ind:pas:3s; +roulade roulade NOM f s 0.20 1.28 0.14 0.47 +roulades roulade NOM f p 0.20 1.28 0.06 0.81 +roulage roulage NOM m s 0.02 0.20 0.02 0.14 +roulages roulage NOM m p 0.02 0.20 0.00 0.07 +roulai rouler VER 61.82 163.45 0.02 0.41 ind:pas:1s; +roulaient rouler VER 61.82 163.45 0.34 10.41 ind:imp:3p; +roulais rouler VER 61.82 163.45 1.21 2.43 ind:imp:1s;ind:imp:2s; +roulait rouler VER 61.82 163.45 2.43 22.91 ind:imp:3s; +roulant roulant ADJ m s 7.03 10.54 4.84 6.69 +roulante roulant ADJ f s 7.03 10.54 1.75 2.16 +roulantes roulant ADJ f p 7.03 10.54 0.17 0.88 +roulants roulant ADJ m p 7.03 10.54 0.27 0.81 +roule rouler VER 61.82 163.45 22.86 24.32 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +rouleau rouleau NOM m s 5.93 19.19 3.87 10.88 +rouleaux rouleau NOM m p 5.93 19.19 2.06 8.31 +roulement roulement NOM m s 2.94 10.41 2.17 7.97 +roulements roulement NOM m p 2.94 10.41 0.77 2.43 +roulent rouler VER 61.82 163.45 2.02 6.28 ind:pre:3p; +rouler rouler VER 61.82 163.45 14.41 33.78 ind:pre:2p;inf; +roulera rouler VER 61.82 163.45 0.62 0.34 ind:fut:3s; +roulerai rouler VER 61.82 163.45 0.09 0.14 ind:fut:1s; +rouleraient rouler VER 61.82 163.45 0.01 0.34 cnd:pre:3p; +roulerais rouler VER 61.82 163.45 0.24 0.00 cnd:pre:1s;cnd:pre:2s; +roulerait rouler VER 61.82 163.45 0.27 0.81 cnd:pre:3s; +rouleras rouler VER 61.82 163.45 0.07 0.00 ind:fut:2s; +roulerez rouler VER 61.82 163.45 0.29 0.00 ind:fut:2p; +rouleriez rouler VER 61.82 163.45 0.02 0.00 cnd:pre:2p; +roulerons rouler VER 61.82 163.45 0.08 0.07 ind:fut:1p; +rouleront rouler VER 61.82 163.45 0.17 0.27 ind:fut:3p; +roules rouler VER 61.82 163.45 1.89 0.61 ind:pre:2s; +roulette roulette NOM f s 5.55 8.78 2.50 2.77 +roulettes roulette NOM f p 5.55 8.78 3.05 6.01 +rouleur rouleur ADJ m s 0.03 0.41 0.03 0.20 +rouleurs rouleur NOM m p 0.06 0.41 0.03 0.27 +rouleuse rouleur ADJ f s 0.03 0.41 0.00 0.14 +rouleuses rouleur ADJ f p 0.03 0.41 0.00 0.07 +roulez rouler VER 61.82 163.45 3.83 0.95 imp:pre:2p;ind:pre:2p; +roulier roulier NOM m s 0.30 1.01 0.16 0.61 +rouliers roulier NOM m p 0.30 1.01 0.14 0.41 +rouliez rouler VER 61.82 163.45 0.75 0.07 ind:imp:2p; +roulions rouler VER 61.82 163.45 0.09 2.09 ind:imp:1p; +roulis roulis NOM m 0.56 3.04 0.56 3.04 +roulâmes rouler VER 61.82 163.45 0.00 0.54 ind:pas:1p; +roulons rouler VER 61.82 163.45 0.44 2.91 imp:pre:1p;ind:pre:1p;;imp:pre:1p;ind:pre:1p; +roulât rouler VER 61.82 163.45 0.00 0.07 sub:imp:3s; +roulottait roulotter VER 0.00 0.20 0.00 0.07 ind:imp:3s; +roulotte roulotte NOM f s 1.59 4.80 1.32 3.58 +roulottent roulotter VER 0.00 0.20 0.00 0.14 ind:pre:3p; +roulottes roulotte NOM f p 1.59 4.80 0.27 1.22 +roulottiers roulottier NOM m p 0.00 0.20 0.00 0.14 +roulottière roulottier NOM f s 0.00 0.20 0.00 0.07 +roulèrent rouler VER 61.82 163.45 0.28 4.26 ind:pas:3p; +roulé_boulé roulé_boulé NOM m s 0.00 0.27 0.00 0.14 +roulé rouler VER m s 61.82 163.45 6.25 16.28 par:pas; +roulée roulé ADJ f s 2.15 8.99 1.18 2.23 +roulées rouler VER f p 61.82 163.45 0.17 1.08 par:pas; +roulure roulure NOM f s 0.86 0.88 0.71 0.68 +roulures roulure NOM f p 0.86 0.88 0.14 0.20 +roulé_boulé roulé_boulé NOM m p 0.00 0.27 0.00 0.14 +roulés rouler VER m p 61.82 163.45 1.00 3.65 par:pas; +roumain roumain ADJ m s 3.11 1.42 2.23 0.41 +roumaine roumain ADJ f s 3.11 1.42 0.78 0.68 +roumaines roumain NOM f p 2.58 1.76 0.14 0.00 +roumains roumain NOM m p 2.58 1.76 0.87 0.88 +roumi roumi NOM m s 0.14 0.47 0.14 0.00 +roumis roumi NOM m p 0.14 0.47 0.00 0.47 +round round NOM m s 7.59 2.84 5.75 2.30 +rounds round NOM m p 7.59 2.84 1.84 0.54 +roupane roupane NOM f s 0.00 0.27 0.00 0.27 +roupette roupette NOM f s 0.15 0.00 0.15 0.00 +roupettes roupettes NOM f p 0.56 0.20 0.56 0.20 +roupie roupie NOM f s 1.30 0.95 0.29 0.41 +roupies roupie NOM f p 1.30 0.95 1.01 0.54 +roupillaient roupiller VER 2.47 6.82 0.00 0.07 ind:imp:3p; +roupillais roupiller VER 2.47 6.82 0.06 0.14 ind:imp:1s;ind:imp:2s; +roupillait roupiller VER 2.47 6.82 0.04 0.54 ind:imp:3s; +roupille roupiller VER 2.47 6.82 0.64 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +roupillent roupiller VER 2.47 6.82 0.12 0.81 ind:pre:3p; +roupiller roupiller VER 2.47 6.82 1.22 2.43 inf; +roupillerai roupiller VER 2.47 6.82 0.00 0.07 ind:fut:1s; +roupillerais roupiller VER 2.47 6.82 0.01 0.00 cnd:pre:1s; +roupillerait roupiller VER 2.47 6.82 0.00 0.07 cnd:pre:3s; +roupilles roupiller VER 2.47 6.82 0.06 0.27 ind:pre:2s; +roupillez roupiller VER 2.47 6.82 0.19 0.07 imp:pre:2p;ind:pre:2p; +roupillon roupillon NOM m s 0.56 1.08 0.42 1.01 +roupillons roupillon NOM m p 0.56 1.08 0.14 0.07 +roupillé roupiller VER m s 2.47 6.82 0.14 0.68 par:pas; +rouquemoute rouquemoute NOM s 0.00 3.85 0.00 3.85 +rouquette rouquette NOM f s 0.00 0.07 0.00 0.07 +rouquin rouquin NOM m s 2.84 10.07 1.33 8.31 +rouquine rouquin NOM f s 2.84 10.07 1.06 1.35 +rouquines rouquin NOM f p 2.84 10.07 0.05 0.07 +rouquins rouquin NOM m p 2.84 10.07 0.39 0.34 +rouscaillait rouscailler VER 0.04 0.54 0.00 0.07 ind:imp:3s; +rouscaillant rouscailler VER 0.04 0.54 0.00 0.07 par:pre; +rouscaille rouscailler VER 0.04 0.54 0.04 0.14 imp:pre:2s;ind:pre:3s; +rouscaillent rouscailler VER 0.04 0.54 0.00 0.07 ind:pre:3p; +rouscailler rouscailler VER 0.04 0.54 0.00 0.20 inf; +rouspète rouspéter VER 1.02 1.69 0.16 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rouspètent rouspéter VER 1.02 1.69 0.05 0.07 ind:pre:3p; +rouspètes rouspéter VER 1.02 1.69 0.13 0.00 ind:pre:2s; +rouspéta rouspéter VER 1.02 1.69 0.01 0.20 ind:pas:3s; +rouspétage rouspétage NOM m s 0.00 0.07 0.00 0.07 +rouspétaient rouspéter VER 1.02 1.69 0.00 0.07 ind:imp:3p; +rouspétais rouspéter VER 1.02 1.69 0.01 0.00 ind:imp:1s; +rouspétait rouspéter VER 1.02 1.69 0.03 0.34 ind:imp:3s; +rouspétance rouspétance NOM f s 0.01 0.27 0.01 0.27 +rouspétant rouspéter VER 1.02 1.69 0.17 0.14 par:pre; +rouspéter rouspéter VER 1.02 1.69 0.46 0.27 inf; +rouspétera rouspéter VER 1.02 1.69 0.00 0.07 ind:fut:3s; +rouspéteur rouspéteur NOM m s 0.04 0.00 0.01 0.00 +rouspéteurs rouspéteur NOM m p 0.04 0.00 0.02 0.00 +rouspétez rouspéter VER 1.02 1.69 0.01 0.14 imp:pre:2p;ind:pre:2p; +rousse roux NOM f s 4.50 11.08 3.69 5.61 +rousseau rousseau NOM m s 0.00 0.20 0.00 0.14 +rousseauiste rousseauiste ADJ f s 0.01 0.07 0.01 0.07 +rousseaux rousseau NOM m p 0.00 0.20 0.00 0.07 +rousselée rousseler VER f s 0.10 0.00 0.10 0.00 par:pas; +rousserolle rousserolle NOM f s 0.00 0.07 0.00 0.07 +rousses rousse NOM f p 0.53 0.00 0.53 0.00 +roussette roussette NOM f s 0.01 1.69 0.01 1.55 +roussettes roussette NOM f p 0.01 1.69 0.00 0.14 +rousseur rousseur NOM f s 1.45 5.54 1.40 5.14 +rousseurs rousseur NOM f p 1.45 5.54 0.05 0.41 +roussi roussi NOM m s 1.00 1.22 1.00 1.15 +roussie roussi ADJ f s 0.04 2.23 0.01 0.61 +roussies roussir VER f p 0.23 1.76 0.10 0.14 par:pas; +roussin roussin NOM m s 0.00 0.68 0.00 0.34 +roussins roussin NOM m p 0.00 0.68 0.00 0.34 +roussir roussir VER 0.23 1.76 0.02 0.27 inf; +roussis roussi ADJ m p 0.04 2.23 0.01 0.61 +roussissaient roussir VER 0.23 1.76 0.00 0.07 ind:imp:3p; +roussissait roussir VER 0.23 1.76 0.00 0.14 ind:imp:3s; +roussissant roussir VER 0.23 1.76 0.00 0.07 par:pre; +roussissures roussissure NOM f p 0.00 0.07 0.00 0.07 +roussit roussir VER 0.23 1.76 0.01 0.20 ind:pre:3s;ind:pas:3s; +roussâtre roussâtre ADJ s 0.00 1.22 0.00 0.81 +roussâtres roussâtre ADJ p 0.00 1.22 0.00 0.41 +roussé rousser VER m s 0.00 0.07 0.00 0.07 par:pas; +rouste rouste NOM f s 0.34 0.41 0.32 0.34 +roustes rouste NOM f p 0.34 0.41 0.02 0.07 +rousti roustir VER m s 0.01 0.34 0.01 0.14 par:pas; +rousties roustir VER f p 0.01 0.34 0.00 0.07 par:pas; +roustis roustir VER m p 0.01 0.34 0.00 0.14 par:pas; +rouston rouston NOM m s 0.01 0.00 0.01 0.00 +roustons roustons NOM m p 0.24 0.20 0.24 0.20 +routage routage NOM m s 0.16 0.07 0.16 0.07 +routard routard NOM m s 0.32 0.07 0.26 0.00 +routarde routard ADJ f s 0.01 0.07 0.00 0.07 +routards routard NOM m p 0.32 0.07 0.06 0.07 +route route NOM f s 166.72 288.04 152.83 251.35 +router router VER 0.05 0.00 0.03 0.00 inf; +routes route NOM f p 166.72 288.04 13.89 36.69 +routeur routeur NOM m s 0.17 0.00 0.11 0.00 +routeurs routeur NOM m p 0.17 0.00 0.06 0.00 +routier routier ADJ m s 4.63 4.26 1.41 0.74 +routiers routier NOM m p 2.00 5.54 0.98 2.97 +routin routin NOM m s 0.00 0.47 0.00 0.47 +routine routine NOM f s 12.14 12.77 11.67 9.53 +routines routine NOM f p 12.14 12.77 0.47 3.24 +routinier routinier ADJ m s 0.15 1.62 0.09 0.41 +routiniers routinier ADJ m p 0.15 1.62 0.00 0.47 +routinière routinier ADJ f s 0.15 1.62 0.05 0.47 +routinières routinier ADJ f p 0.15 1.62 0.01 0.27 +routière routier ADJ f s 4.63 4.26 2.34 2.30 +routières routier ADJ f p 4.63 4.26 0.39 0.54 +routé router VER m s 0.05 0.00 0.02 0.00 par:pas; +roué rouer VER m s 2.20 2.57 0.53 1.22 par:pas; +rouée rouer VER f s 2.20 2.57 0.36 0.41 par:pas; +roués roué ADJ m p 0.02 0.54 0.01 0.20 +rouvert rouvrir VER m s 6.76 18.45 0.62 1.89 par:pas; +rouverte rouvrir VER f s 6.76 18.45 0.19 0.81 par:pas; +rouvertes rouvrir VER f p 6.76 18.45 0.14 0.41 par:pas; +rouverts rouvrir VER m p 6.76 18.45 0.02 0.27 par:pas; +rouvrît rouvrir VER 6.76 18.45 0.00 0.14 sub:imp:3s; +rouvraient rouvrir VER 6.76 18.45 0.01 0.20 ind:imp:3p; +rouvrais rouvrir VER 6.76 18.45 0.02 0.47 ind:imp:1s;ind:imp:2s; +rouvrait rouvrir VER 6.76 18.45 0.01 1.01 ind:imp:3s; +rouvrant rouvrir VER 6.76 18.45 0.01 0.61 par:pre; +rouvre rouvrir VER 6.76 18.45 0.94 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rouvrent rouvrir VER 6.76 18.45 0.35 0.41 ind:pre:3p; +rouvres rouvrir VER 6.76 18.45 0.02 0.27 ind:pre:2s;sub:pre:2s; +rouvrez rouvrir VER 6.76 18.45 0.25 0.00 imp:pre:2p;ind:pre:2p; +rouvriez rouvrir VER 6.76 18.45 0.01 0.00 ind:imp:2p; +rouvrir rouvrir VER 6.76 18.45 3.46 3.65 inf; +rouvrira rouvrir VER 6.76 18.45 0.28 0.07 ind:fut:3s; +rouvrirai rouvrir VER 6.76 18.45 0.09 0.20 ind:fut:1s; +rouvriraient rouvrir VER 6.76 18.45 0.00 0.14 cnd:pre:3p; +rouvrirais rouvrir VER 6.76 18.45 0.00 0.14 cnd:pre:1s;cnd:pre:2s; +rouvrirait rouvrir VER 6.76 18.45 0.01 0.14 cnd:pre:3s; +rouvrirent rouvrir VER 6.76 18.45 0.00 0.41 ind:pas:3p; +rouvrirez rouvrir VER 6.76 18.45 0.04 0.07 ind:fut:2p; +rouvriront rouvrir VER 6.76 18.45 0.14 0.00 ind:fut:3p; +rouvris rouvrir VER 6.76 18.45 0.01 0.34 ind:pas:1s; +rouvrit rouvrir VER 6.76 18.45 0.12 3.92 ind:pas:3s; +rouvrons rouvrir VER 6.76 18.45 0.03 0.00 imp:pre:1p;ind:pre:1p; +roux roux ADJ m 3.66 20.68 3.66 20.68 +roy roy NOM m s 0.17 0.27 0.17 0.27 +royal royal ADJ m s 22.65 29.26 10.51 16.49 +royale royal ADJ f s 22.65 29.26 9.64 9.59 +royalement royalement ADV 0.83 1.82 0.83 1.82 +royales royal ADJ f p 22.65 29.26 1.50 1.69 +royaliste royaliste ADJ s 0.35 0.68 0.20 0.47 +royalistes royaliste NOM p 0.28 0.34 0.16 0.27 +royalties royalties NOM f p 0.54 0.14 0.54 0.14 +royalty royalty NOM f s 0.01 0.07 0.01 0.07 +royaume royaume NOM m s 27.79 20.68 24.16 18.78 +royaumes royaume NOM m p 27.79 20.68 3.62 1.89 +royauté royauté NOM f s 0.59 1.28 0.58 1.15 +royautés royauté NOM f p 0.59 1.28 0.01 0.14 +royaux royal ADJ m p 22.65 29.26 1.00 1.49 +règle règle NOM f s 79.51 49.93 33.17 27.91 +règlement règlement NOM m s 21.27 17.16 19.40 12.16 +règlements règlement NOM m p 21.27 17.16 1.87 5.00 +règlent régler VER 85.81 54.19 0.76 0.47 ind:pre:3p; +règles règle NOM f p 79.51 49.93 46.34 22.03 +règne régner VER 22.75 47.43 8.06 10.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +règnent régner VER 22.75 47.43 1.52 1.89 ind:pre:3p; +règnes régner VER 22.75 47.43 0.16 0.07 ind:pre:2s; +ré ré NOM m 3.06 0.54 3.06 0.54 +ru ru NOM m s 0.26 0.88 0.14 0.61 +rua ruer VER 3.27 20.81 0.03 3.11 ind:pas:3s; +réa réa NOM m s 0.88 0.00 0.88 0.00 +réabonnement réabonnement NOM m s 0.03 0.07 0.03 0.07 +réabonner réabonner VER 0.03 0.00 0.03 0.00 inf; +réabsorption réabsorption NOM f s 0.03 0.00 0.03 0.00 +réac réac ADJ m s 0.59 0.47 0.42 0.41 +réaccoutumer réaccoutumer VER 0.00 0.20 0.00 0.14 inf; +réaccoutumerait réaccoutumer VER 0.00 0.20 0.00 0.07 cnd:pre:3s; +réacheminer réacheminer VER 0.01 0.00 0.01 0.00 inf; +réacs réac ADJ m p 0.59 0.47 0.17 0.07 +réactant réactant NOM m s 0.01 0.00 0.01 0.00 +réacteur réacteur NOM m s 5.24 0.81 3.62 0.14 +réacteurs réacteur NOM m p 5.24 0.81 1.62 0.68 +réactif réactif NOM m s 0.38 0.20 0.27 0.20 +réactifs réactif NOM m p 0.38 0.20 0.11 0.00 +réaction réaction NOM f s 26.41 30.68 21.23 20.00 +réactionnaire réactionnaire ADJ s 1.55 2.43 0.54 1.76 +réactionnaires réactionnaire ADJ p 1.55 2.43 1.01 0.68 +réactionnel réactionnel ADJ m s 0.01 0.00 0.01 0.00 +réactions réaction NOM f p 26.41 30.68 5.17 10.68 +réactiva réactiver VER 1.21 0.34 0.00 0.07 ind:pas:3s; +réactivait réactiver VER 1.21 0.34 0.00 0.07 ind:imp:3s; +réactivation réactivation NOM f s 0.03 0.07 0.03 0.07 +réactive réactiver VER 1.21 0.34 0.09 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réactiver réactiver VER 1.21 0.34 0.49 0.00 inf; +réactiveront réactiver VER 1.21 0.34 0.01 0.00 ind:fut:3p; +réactives réactif ADJ f p 0.63 0.07 0.24 0.00 +réactivez réactiver VER 1.21 0.34 0.13 0.00 imp:pre:2p; +réactiviez réactiver VER 1.21 0.34 0.01 0.00 ind:imp:2p; +réactivité réactivité NOM f s 0.20 0.00 0.20 0.00 +réactivé réactiver VER m s 1.21 0.34 0.37 0.14 par:pas; +réactivée réactiver VER f s 1.21 0.34 0.09 0.00 par:pas; +réactivées réactiver VER f p 1.21 0.34 0.01 0.00 par:pas; +réactualisation réactualisation NOM f s 0.01 0.00 0.01 0.00 +réactualise réactualiser VER 0.05 0.14 0.00 0.07 ind:pre:3s; +réactualiser réactualiser VER 0.05 0.14 0.03 0.07 inf; +réactualisé réactualiser VER m s 0.05 0.14 0.03 0.00 par:pas; +réadaptait réadapter VER 0.09 0.27 0.00 0.07 ind:imp:3s; +réadaptant réadapter VER 0.09 0.27 0.00 0.07 par:pre; +réadaptation réadaptation NOM f s 0.24 0.14 0.24 0.14 +réadapte réadapter VER 0.09 0.27 0.01 0.00 ind:pre:3s; +réadapter réadapter VER 0.09 0.27 0.08 0.14 inf; +ruade ruade NOM f s 0.28 2.09 0.28 0.95 +ruades ruade NOM f p 0.28 2.09 0.01 1.15 +réadmis réadmettre VER m s 0.06 0.00 0.04 0.00 par:pas; +réadmise réadmettre VER f s 0.06 0.00 0.01 0.00 par:pas; +réadmission réadmission NOM f s 0.04 0.00 0.04 0.00 +réadopter réadopter VER 0.00 0.07 0.00 0.07 inf; +réaffûtée réaffûter VER f s 0.00 0.07 0.00 0.07 par:pas; +réaffectait réaffecter VER 0.51 0.00 0.01 0.00 ind:imp:3s; +réaffectation réaffectation NOM f s 0.16 0.00 0.16 0.00 +réaffecter réaffecter VER 0.51 0.00 0.11 0.00 inf; +réaffectons réaffecter VER 0.51 0.00 0.01 0.00 imp:pre:1p; +réaffecté réaffecter VER m s 0.51 0.00 0.28 0.00 par:pas; +réaffectée réaffecter VER f s 0.51 0.00 0.07 0.00 par:pas; +réaffectés réaffecter VER m p 0.51 0.00 0.03 0.00 par:pas; +réaffichées réafficher VER f p 0.00 0.07 0.00 0.07 par:pas; +réaffirmai réaffirmer VER 0.46 0.47 0.00 0.07 ind:pas:1s; +réaffirmaient réaffirmer VER 0.46 0.47 0.00 0.07 ind:imp:3p; +réaffirmait réaffirmer VER 0.46 0.47 0.01 0.00 ind:imp:3s; +réaffirmation réaffirmation NOM f s 0.01 0.00 0.01 0.00 +réaffirme réaffirmer VER 0.46 0.47 0.22 0.00 ind:pre:1s;ind:pre:3s; +réaffirmer réaffirmer VER 0.46 0.47 0.13 0.27 inf; +réaffirmé réaffirmer VER m s 0.46 0.47 0.07 0.00 par:pas; +réaffirmée réaffirmer VER f s 0.46 0.47 0.03 0.07 par:pas; +réagît réagir VER 33.19 23.45 0.00 0.20 sub:imp:3s; +réagencement réagencement NOM m s 0.00 0.07 0.00 0.07 +réagi réagir VER m s 33.19 23.45 5.95 3.85 par:pas; +réagir réagir VER 33.19 23.45 9.92 7.97 inf; +réagira réagir VER 33.19 23.45 0.93 0.00 ind:fut:3s; +réagirai réagir VER 33.19 23.45 0.06 0.07 ind:fut:1s; +réagiraient réagir VER 33.19 23.45 0.34 0.00 cnd:pre:3p; +réagirais réagir VER 33.19 23.45 1.19 0.00 cnd:pre:1s;cnd:pre:2s; +réagirait réagir VER 33.19 23.45 0.40 0.47 cnd:pre:3s; +réagiras réagir VER 33.19 23.45 0.02 0.00 ind:fut:2s; +réagirent réagir VER 33.19 23.45 0.00 0.34 ind:pas:3p; +réagirez réagir VER 33.19 23.45 0.08 0.00 ind:fut:2p; +réagiriez réagir VER 33.19 23.45 0.12 0.07 cnd:pre:2p; +réagirons réagir VER 33.19 23.45 0.15 0.00 ind:fut:1p; +réagiront réagir VER 33.19 23.45 0.15 0.00 ind:fut:3p; +réagis réagir VER m p 33.19 23.45 4.01 1.55 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réagissaient réagir VER 33.19 23.45 0.03 0.41 ind:imp:3p; +réagissais réagir VER 33.19 23.45 0.01 0.61 ind:imp:1s; +réagissait réagir VER 33.19 23.45 0.17 1.49 ind:imp:3s; +réagissant réagir VER 33.19 23.45 0.07 0.20 par:pre; +réagissante réagissant ADJ f s 0.00 0.07 0.00 0.07 +réagisse réagir VER 33.19 23.45 0.84 0.41 sub:pre:1s;sub:pre:3s; +réagissent réagir VER 33.19 23.45 2.06 0.81 ind:pre:3p; +réagisses réagir VER 33.19 23.45 0.07 0.00 sub:pre:2s; +réagissez réagir VER 33.19 23.45 1.39 0.27 imp:pre:2p;ind:pre:2p; +réagissiez réagir VER 33.19 23.45 0.12 0.07 ind:imp:2p; +réagissions réagir VER 33.19 23.45 0.00 0.20 ind:imp:1p; +réagissons réagir VER 33.19 23.45 0.04 0.07 imp:pre:1p;ind:pre:1p; +réagit réagir VER 33.19 23.45 5.09 4.39 ind:pre:3s;ind:pas:3s; +ruai ruer VER 3.27 20.81 0.01 0.47 ind:pas:1s; +ruaient ruer VER 3.27 20.81 0.01 0.74 ind:imp:3p; +ruais ruer VER 3.27 20.81 0.01 0.34 ind:imp:1s; +ruait ruer VER 3.27 20.81 0.13 1.42 ind:imp:3s; +réait réer VER 0.09 0.07 0.00 0.07 ind:imp:3s; +réajusta réajuster VER 0.38 1.22 0.00 0.14 ind:pas:3s; +réajustaient réajuster VER 0.38 1.22 0.00 0.07 ind:imp:3p; +réajustait réajuster VER 0.38 1.22 0.00 0.07 ind:imp:3s; +réajustant réajuster VER 0.38 1.22 0.00 0.34 par:pre; +réajuste réajuster VER 0.38 1.22 0.06 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réajustement réajustement NOM m s 0.18 0.07 0.15 0.00 +réajustements réajustement NOM m p 0.18 0.07 0.03 0.07 +réajuster réajuster VER 0.38 1.22 0.26 0.41 inf; +réajusté réajuster VER m s 0.38 1.22 0.03 0.07 par:pas; +réajustées réajuster VER f p 0.38 1.22 0.00 0.07 par:pas; +réajustés réajuster VER m p 0.38 1.22 0.02 0.00 par:pas; +réal réal NOM m s 0.16 0.00 0.16 0.00 +réaligne réaligner VER 0.11 0.00 0.06 0.00 ind:pre:1s;ind:pre:3s; +réalignement réalignement NOM m s 0.07 0.00 0.07 0.00 +réaligner réaligner VER 0.11 0.00 0.05 0.00 inf; +réalimenter réalimenter VER 0.01 0.00 0.01 0.00 inf; +réalisa réaliser VER 71.27 35.95 1.44 2.03 ind:pas:3s; +réalisable réalisable ADJ s 0.63 0.68 0.61 0.68 +réalisables réalisable ADJ p 0.63 0.68 0.02 0.00 +réalisai réaliser VER 71.27 35.95 0.13 1.82 ind:pas:1s; +réalisaient réaliser VER 71.27 35.95 0.47 0.68 ind:imp:3p; +réalisais réaliser VER 71.27 35.95 0.69 0.41 ind:imp:1s;ind:imp:2s; +réalisait réaliser VER 71.27 35.95 0.59 1.28 ind:imp:3s; +réalisant réaliser VER 71.27 35.95 0.72 1.08 par:pre; +réalisateur réalisateur NOM m s 17.06 1.08 13.96 0.74 +réalisateurs réalisateur NOM m p 17.06 1.08 2.50 0.27 +réalisation réalisation NOM f s 3.31 4.19 2.86 3.24 +réalisations réalisation NOM f p 3.31 4.19 0.45 0.95 +réalisatrice réalisateur NOM f s 17.06 1.08 0.60 0.00 +réalisatrices réalisatrice NOM f p 0.02 0.00 0.02 0.00 +réalise réaliser VER 71.27 35.95 9.95 3.51 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +réalisent réaliser VER 71.27 35.95 2.74 1.15 ind:pre:3p; +réaliser réaliser VER 71.27 35.95 16.95 12.97 inf; +réalisera réaliser VER 71.27 35.95 1.39 0.14 ind:fut:3s; +réaliserai réaliser VER 71.27 35.95 0.12 0.00 ind:fut:1s; +réaliseraient réaliser VER 71.27 35.95 0.03 0.07 cnd:pre:3p; +réaliserais réaliser VER 71.27 35.95 0.20 0.07 cnd:pre:1s;cnd:pre:2s; +réaliserait réaliser VER 71.27 35.95 0.17 0.27 cnd:pre:3s; +réaliseras réaliser VER 71.27 35.95 0.35 0.00 ind:fut:2s; +réaliserez réaliser VER 71.27 35.95 0.19 0.00 ind:fut:2p; +réaliserions réaliser VER 71.27 35.95 0.00 0.07 cnd:pre:1p; +réaliseront réaliser VER 71.27 35.95 0.81 0.20 ind:fut:3p; +réalises réaliser VER 71.27 35.95 5.29 0.34 ind:pre:2p;ind:pre:2s; +réalisez réaliser VER 71.27 35.95 4.33 0.07 imp:pre:2p;ind:pre:2p; +réalisiez réaliser VER 71.27 35.95 0.14 0.07 ind:imp:2p; +réalisions réaliser VER 71.27 35.95 0.04 0.07 ind:imp:1p; +réalisme réalisme NOM m s 1.19 5.41 1.19 5.41 +réalisâmes réaliser VER 71.27 35.95 0.14 0.07 ind:pas:1p; +réalisons réaliser VER 71.27 35.95 0.39 0.07 imp:pre:1p;ind:pre:1p; +réalisât réaliser VER 71.27 35.95 0.00 0.07 sub:imp:3s; +réaliste réaliste ADJ s 7.05 5.81 5.54 3.92 +réalistes réaliste ADJ p 7.05 5.81 1.52 1.89 +réalisèrent réaliser VER 71.27 35.95 0.14 0.07 ind:pas:3p; +réalisé réaliser VER m s 71.27 35.95 21.23 6.22 par:pas; +réalisée réaliser VER f s 71.27 35.95 0.71 1.69 par:pas; +réalisées réaliser VER f p 71.27 35.95 0.74 0.81 par:pas; +réalisés réaliser VER m p 71.27 35.95 1.23 0.68 par:pas; +réalité réalité NOM f s 53.77 82.77 52.15 75.95 +réalités réalité NOM f p 53.77 82.77 1.62 6.82 +réamorce réamorcer VER 0.07 0.27 0.01 0.07 ind:pre:1s;ind:pre:3s; +réamorcent réamorcer VER 0.07 0.27 0.00 0.07 ind:pre:3p; +réamorcer réamorcer VER 0.07 0.27 0.06 0.07 inf; +réamorçage réamorçage NOM m s 0.01 0.00 0.01 0.00 +réamorçait réamorcer VER 0.07 0.27 0.00 0.07 ind:imp:3s; +réaménageait réaménager VER 0.19 0.27 0.00 0.07 ind:imp:3s; +réaménagement réaménagement NOM m s 0.19 0.14 0.19 0.07 +réaménagements réaménagement NOM m p 0.19 0.14 0.00 0.07 +réaménager réaménager VER 0.19 0.27 0.12 0.07 inf; +réaménagé réaménager VER m s 0.19 0.27 0.06 0.14 par:pas; +réanimait réanimer VER 1.65 0.20 0.01 0.00 ind:imp:3s; +réanimateur réanimateur NOM m s 0.04 0.00 0.04 0.00 +réanimation réanimation NOM f s 2.16 1.35 2.16 1.35 +réanime réanimer VER 1.65 0.20 0.09 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réanimer réanimer VER 1.65 0.20 1.08 0.00 inf; +réanimeraient réanimer VER 1.65 0.20 0.00 0.07 cnd:pre:3p; +réanimez réanimer VER 1.65 0.20 0.04 0.00 imp:pre:2p; +réanimions réanimer VER 1.65 0.20 0.01 0.00 ind:imp:1p; +réanimé réanimer VER m s 1.65 0.20 0.35 0.00 par:pas; +réanimée réanimer VER f s 1.65 0.20 0.07 0.00 par:pas; +ruant ruer VER 3.27 20.81 0.05 1.49 par:pre; +réapercevoir réapercevoir VER 0.00 0.07 0.00 0.07 inf; +réapparût réapparaître VER 4.81 12.23 0.00 0.07 sub:imp:3s; +réapparaît réapparaître VER 4.81 12.23 0.52 1.35 ind:pre:3s; +réapparaîtra réapparaître VER 4.81 12.23 0.47 0.14 ind:fut:3s; +réapparaîtrai réapparaître VER 4.81 12.23 0.00 0.14 ind:fut:1s; +réapparaîtraient réapparaître VER 4.81 12.23 0.01 0.07 cnd:pre:3p; +réapparaîtrait réapparaître VER 4.81 12.23 0.07 0.20 cnd:pre:3s; +réapparaître réapparaître VER 4.81 12.23 0.83 1.96 inf; +réapparaîtront réapparaître VER 4.81 12.23 0.01 0.00 ind:fut:3p; +réapparais réapparaître VER 4.81 12.23 0.21 0.07 ind:pre:1s;ind:pre:2s; +réapparaissaient réapparaître VER 4.81 12.23 0.01 0.34 ind:imp:3p; +réapparaissais réapparaître VER 4.81 12.23 0.01 0.14 ind:imp:1s;ind:imp:2s; +réapparaissait réapparaître VER 4.81 12.23 0.05 1.76 ind:imp:3s; +réapparaissant réapparaître VER 4.81 12.23 0.01 0.27 par:pre; +réapparaisse réapparaître VER 4.81 12.23 0.26 0.20 sub:pre:1s;sub:pre:3s; +réapparaissent réapparaître VER 4.81 12.23 0.58 0.54 ind:pre:3p; +réapparaisses réapparaître VER 4.81 12.23 0.02 0.00 sub:pre:2s; +réapparition réapparition NOM f s 0.17 1.69 0.16 1.55 +réapparitions réapparition NOM f p 0.17 1.69 0.01 0.14 +réapparu réapparaître VER m s 4.81 12.23 1.19 0.74 par:pas; +réapparue réapparaître VER f s 4.81 12.23 0.11 0.54 par:pas; +réapparues réapparaître VER f p 4.81 12.23 0.01 0.00 par:pas; +réapparurent réapparaître VER 4.81 12.23 0.04 0.41 ind:pas:3p; +réapparus réapparaître VER m p 4.81 12.23 0.32 0.27 par:pas; +réapparut réapparaître VER 4.81 12.23 0.07 3.04 ind:pas:3s; +réappeler réappeler VER 0.01 0.00 0.01 0.00 inf; +réapprenaient réapprendre VER 0.91 1.89 0.00 0.14 ind:imp:3p; +réapprenais réapprendre VER 0.91 1.89 0.00 0.07 ind:imp:1s; +réapprenait réapprendre VER 0.91 1.89 0.01 0.27 ind:imp:3s; +réapprend réapprendre VER 0.91 1.89 0.01 0.14 ind:pre:3s; +réapprendraient réapprendre VER 0.91 1.89 0.00 0.07 cnd:pre:3p; +réapprendre réapprendre VER 0.91 1.89 0.70 0.81 inf; +réapprendrez réapprendre VER 0.91 1.89 0.01 0.00 ind:fut:2p; +réapprends réapprendre VER 0.91 1.89 0.01 0.07 ind:pre:1s; +réapprenne réapprendre VER 0.91 1.89 0.01 0.20 sub:pre:1s; +réappris réapprendre VER m s 0.91 1.89 0.14 0.00 par:pas; +réapprises réapprendre VER f p 0.91 1.89 0.00 0.07 par:pas; +réapprit réapprendre VER 0.91 1.89 0.01 0.07 ind:pas:3s; +réapprovisionne réapprovisionner VER 0.47 0.47 0.04 0.00 ind:pre:3s; +réapprovisionnement réapprovisionnement NOM m s 0.21 0.14 0.21 0.14 +réapprovisionner réapprovisionner VER 0.47 0.47 0.38 0.34 inf; +réapprovisionnerait réapprovisionner VER 0.47 0.47 0.00 0.07 cnd:pre:3s; +réapprovisionné réapprovisionner VER m s 0.47 0.47 0.04 0.00 par:pas; +réapprovisionnée réapprovisionner VER f s 0.47 0.47 0.01 0.07 par:pas; +réargenter réargenter VER 0.01 0.00 0.01 0.00 inf; +réarma réarmer VER 0.10 0.47 0.00 0.07 ind:pas:3s; +réarmant réarmer VER 0.10 0.47 0.01 0.00 par:pre; +réarme réarmer VER 0.10 0.47 0.00 0.07 ind:pre:3s; +réarmement réarmement NOM m s 0.09 0.34 0.09 0.34 +réarmer réarmer VER 0.10 0.47 0.05 0.14 inf; +réarmé réarmer VER m s 0.10 0.47 0.03 0.07 par:pas; +réarmées réarmer VER f p 0.10 0.47 0.00 0.14 par:pas; +réarrange réarranger VER 0.23 0.27 0.06 0.00 ind:pre:1s;ind:pre:3s; +réarrangeait réarranger VER 0.23 0.27 0.00 0.07 ind:imp:3s; +réarrangeant réarranger VER 0.23 0.27 0.01 0.00 par:pre; +réarrangement réarrangement NOM m s 0.03 0.00 0.03 0.00 +réarrangent réarranger VER 0.23 0.27 0.01 0.07 ind:pre:3p; +réarranger réarranger VER 0.23 0.27 0.14 0.14 inf; +réarrangé réarranger VER m s 0.23 0.27 0.01 0.00 par:pas; +réassembler réassembler VER 0.14 0.00 0.14 0.00 inf; +réassignation réassignation NOM f s 0.03 0.00 0.03 0.00 +réassigner réassigner VER 0.14 0.07 0.07 0.00 inf; +réassigneront réassigner VER 0.14 0.07 0.00 0.07 ind:fut:3p; +réassigné réassigner VER m s 0.14 0.07 0.07 0.00 par:pas; +réassimilé réassimiler VER m s 0.02 0.00 0.02 0.00 par:pas; +réassorties réassortir VER f p 0.00 0.20 0.00 0.07 par:pas; +réassortir réassortir VER 0.00 0.20 0.00 0.14 inf; +réassumer réassumer VER 0.00 0.14 0.00 0.14 inf; +réassurer réassurer VER 0.02 0.07 0.02 0.07 inf; +réattaquai réattaquer VER 0.03 0.41 0.00 0.07 ind:pas:1s; +réattaquait réattaquer VER 0.03 0.41 0.00 0.14 ind:imp:3s; +réattaque réattaquer VER 0.03 0.41 0.02 0.07 ind:pre:3s; +réattaquer réattaquer VER 0.03 0.41 0.01 0.00 inf; +réattaqué réattaquer VER m s 0.03 0.41 0.00 0.14 par:pas; +réaux réal ADJ m p 0.40 0.54 0.40 0.54 +ruban ruban NOM m s 8.49 23.18 6.56 15.20 +rubans ruban NOM m p 8.49 23.18 1.93 7.97 +rébarbatif rébarbatif ADJ m s 0.17 1.35 0.16 0.61 +rébarbatifs rébarbatif ADJ m p 0.17 1.35 0.00 0.27 +rébarbative rébarbatif ADJ f s 0.17 1.35 0.00 0.27 +rébarbatives rébarbatif ADJ f p 0.17 1.35 0.01 0.20 +rubato rubato ADV 0.00 0.07 0.00 0.07 +rébecca rébecca NOM f s 0.00 0.07 0.00 0.07 +rébellion rébellion NOM f s 4.04 3.85 4.00 3.65 +rébellions rébellion NOM f p 4.04 3.85 0.04 0.20 +rubia rubia NOM m s 0.01 0.00 0.01 0.00 +rubican rubican ADJ m s 0.00 0.07 0.00 0.07 +rubicond rubicond ADJ m s 0.00 1.49 0.00 0.88 +rubiconde rubicond ADJ f s 0.00 1.49 0.00 0.34 +rubicondes rubicond ADJ f p 0.00 1.49 0.00 0.14 +rubiconds rubicond ADJ m p 0.00 1.49 0.00 0.14 +rubis rubis NOM m 2.22 3.11 2.22 3.11 +rubricard rubricard NOM m s 0.00 0.07 0.00 0.07 +rubrique rubrique NOM f s 3.06 6.69 2.90 5.00 +rubriques rubrique NOM f p 3.06 6.69 0.16 1.69 +rubénienne rubénien ADJ f s 0.00 0.07 0.00 0.07 +rubéole rubéole NOM f s 0.14 0.14 0.14 0.14 +rébus rébus NOM m p 0.10 1.28 0.10 1.28 +récalcitrant récalcitrant ADJ m s 0.48 1.08 0.21 0.61 +récalcitrante récalcitrant ADJ f s 0.48 1.08 0.03 0.07 +récalcitrantes récalcitrant ADJ f p 0.48 1.08 0.10 0.00 +récalcitrants récalcitrant ADJ m p 0.48 1.08 0.14 0.41 +récapitula récapituler VER 2.65 1.62 0.00 0.07 ind:pas:3s; +récapitulai récapituler VER 2.65 1.62 0.00 0.07 ind:pas:1s; +récapitulais récapituler VER 2.65 1.62 0.02 0.07 ind:imp:1s; +récapitulait récapituler VER 2.65 1.62 0.00 0.27 ind:imp:3s; +récapitulant récapituler VER 2.65 1.62 0.01 0.20 par:pre; +récapitulatif récapitulatif NOM m s 0.06 0.20 0.06 0.20 +récapitulation récapitulation NOM f s 0.20 0.47 0.20 0.47 +récapitule récapituler VER 2.65 1.62 0.61 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récapitulent récapituler VER 2.65 1.62 0.00 0.07 ind:pre:3p; +récapituler récapituler VER 2.65 1.62 0.40 0.34 inf; +récapitulez récapituler VER 2.65 1.62 0.04 0.00 imp:pre:2p; +récapitulions récapituler VER 2.65 1.62 0.01 0.00 ind:imp:1p; +récapitulons récapituler VER 2.65 1.62 1.51 0.07 imp:pre:1p; +récapitulé récapituler VER m s 2.65 1.62 0.04 0.14 par:pas; +récapitulée récapituler VER f s 2.65 1.62 0.00 0.07 par:pas; +récemment récemment ADV 21.07 15.07 21.07 15.07 +récent récent ADJ m s 12.42 23.45 3.96 5.61 +récente récent ADJ f s 12.42 23.45 3.72 8.72 +récentes récent ADJ f p 12.42 23.45 2.09 4.39 +récents récent ADJ m p 12.42 23.45 2.65 4.73 +réceptacle réceptacle NOM m s 0.70 0.54 0.64 0.47 +réceptacles réceptacle NOM m p 0.70 0.54 0.06 0.07 +récepteur récepteur NOM m s 0.85 3.58 0.56 3.24 +récepteurs récepteur NOM m p 0.85 3.58 0.29 0.34 +réceptif réceptif ADJ m s 1.44 0.68 0.88 0.41 +réceptifs réceptif ADJ m p 1.44 0.68 0.14 0.07 +réception réception NOM f s 17.47 16.82 16.60 12.70 +réceptionna réceptionner VER 0.69 0.88 0.00 0.07 ind:pas:3s; +réceptionnant réceptionner VER 0.69 0.88 0.00 0.07 par:pre; +réceptionne réceptionner VER 0.69 0.88 0.32 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réceptionnent réceptionner VER 0.69 0.88 0.01 0.00 ind:pre:3p; +réceptionner réceptionner VER 0.69 0.88 0.13 0.14 inf; +réceptionnera réceptionner VER 0.69 0.88 0.01 0.00 ind:fut:3s; +réceptionniste réceptionniste NOM s 1.69 1.96 1.64 1.76 +réceptionnistes réceptionniste NOM p 1.69 1.96 0.04 0.20 +réceptionné réceptionner VER m s 0.69 0.88 0.23 0.20 par:pas; +réceptionnées réceptionner VER f p 0.69 0.88 0.00 0.07 par:pas; +réceptions réception NOM f p 17.47 16.82 0.86 4.12 +réceptive réceptif ADJ f s 1.44 0.68 0.38 0.14 +réceptives réceptif ADJ f p 1.44 0.68 0.04 0.07 +réceptivité réceptivité NOM f s 0.04 0.20 0.04 0.20 +réceptrice récepteur ADJ f s 0.27 0.27 0.02 0.14 +récessif récessif ADJ m s 0.12 0.00 0.09 0.00 +récessifs récessif ADJ m p 0.12 0.00 0.02 0.00 +récession récession NOM f s 0.96 0.20 0.96 0.20 +récessive récessif ADJ f s 0.12 0.00 0.01 0.00 +réchappai réchapper VER 2.42 1.55 0.01 0.00 ind:pas:1s; +réchappais réchapper VER 2.42 1.55 0.03 0.07 ind:imp:1s;ind:imp:2s; +réchappait réchapper VER 2.42 1.55 0.00 0.07 ind:imp:3s; +réchappe réchapper VER 2.42 1.55 0.92 0.27 ind:pre:1s;ind:pre:3s; +réchappent réchapper VER 2.42 1.55 0.02 0.07 ind:pre:3p; +réchapper réchapper VER 2.42 1.55 0.64 0.14 inf; +réchappera réchapper VER 2.42 1.55 0.05 0.00 ind:fut:3s; +réchapperaient réchapper VER 2.42 1.55 0.00 0.07 cnd:pre:3p; +réchapperais réchapper VER 2.42 1.55 0.01 0.07 cnd:pre:1s;cnd:pre:2s; +réchapperait réchapper VER 2.42 1.55 0.00 0.27 cnd:pre:3s; +réchappes réchapper VER 2.42 1.55 0.12 0.07 ind:pre:2s; +réchappez réchapper VER 2.42 1.55 0.01 0.00 ind:pre:2p; +réchappons réchapper VER 2.42 1.55 0.11 0.00 ind:pre:1p; +réchappé réchapper VER m s 2.42 1.55 0.50 0.47 par:pas; +réchappés réchapper VER m p 2.42 1.55 0.01 0.00 par:pas; +réchaud réchaud NOM m s 1.00 6.82 0.83 6.22 +réchauds réchaud NOM m p 1.00 6.82 0.17 0.61 +réchauffa réchauffer VER 16.27 22.16 0.01 0.95 ind:pas:3s; +réchauffage réchauffage NOM m s 0.01 0.00 0.01 0.00 +réchauffai réchauffer VER 16.27 22.16 0.00 0.14 ind:pas:1s; +réchauffaient réchauffer VER 16.27 22.16 0.03 0.34 ind:imp:3p; +réchauffais réchauffer VER 16.27 22.16 0.03 0.00 ind:imp:1s;ind:imp:2s; +réchauffait réchauffer VER 16.27 22.16 0.08 2.23 ind:imp:3s; +réchauffant réchauffer VER 16.27 22.16 0.03 0.41 par:pre; +réchauffante réchauffant ADJ f s 0.00 0.27 0.00 0.07 +réchauffantes réchauffant ADJ f p 0.00 0.27 0.00 0.14 +réchauffants réchauffant ADJ m p 0.00 0.27 0.00 0.07 +réchauffe réchauffer VER 16.27 22.16 5.06 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réchauffement réchauffement NOM m s 1.02 0.07 1.02 0.07 +réchauffent réchauffer VER 16.27 22.16 0.34 0.68 ind:pre:3p; +réchauffer réchauffer VER 16.27 22.16 7.64 11.62 inf; +réchauffera réchauffer VER 16.27 22.16 0.79 0.47 ind:fut:3s; +réchaufferai réchauffer VER 16.27 22.16 0.07 0.07 ind:fut:1s; +réchaufferait réchauffer VER 16.27 22.16 0.04 0.07 cnd:pre:3s; +réchaufferas réchauffer VER 16.27 22.16 0.10 0.00 ind:fut:2s; +réchaufferez réchauffer VER 16.27 22.16 0.12 0.00 ind:fut:2p; +réchaufferont réchauffer VER 16.27 22.16 0.02 0.07 ind:fut:3p; +réchauffeur réchauffeur NOM m s 0.03 0.00 0.03 0.00 +réchauffez réchauffer VER 16.27 22.16 0.81 0.00 imp:pre:2p;ind:pre:2p; +réchauffions réchauffer VER 16.27 22.16 0.00 0.07 ind:imp:1p; +réchauffons réchauffer VER 16.27 22.16 0.03 0.00 imp:pre:1p;ind:pre:1p; +réchauffât réchauffer VER 16.27 22.16 0.00 0.07 sub:imp:3s; +réchauffèrent réchauffer VER 16.27 22.16 0.00 0.07 ind:pas:3p; +réchauffé réchauffer VER m s 16.27 22.16 0.79 0.81 par:pas; +réchauffée réchauffer VER f s 16.27 22.16 0.28 0.47 par:pas; +réchauffées réchauffé ADJ f p 1.04 1.15 0.01 0.07 +réchauffés réchauffé ADJ m p 1.04 1.15 0.15 0.14 +rêche rêche ADJ s 0.51 8.11 0.47 6.08 +ruche ruche NOM f s 3.57 3.51 2.64 2.03 +rucher rucher NOM m s 0.11 0.20 0.11 0.14 +ruchers rucher NOM m p 0.11 0.20 0.00 0.07 +rêches rêche ADJ p 0.51 8.11 0.04 2.03 +ruches ruche NOM f p 3.57 3.51 0.93 1.49 +ruché ruché NOM m s 0.00 0.14 0.00 0.07 +ruchée ruché NOM f s 0.00 0.14 0.00 0.07 +récidivai récidiver VER 0.48 0.68 0.00 0.07 ind:pas:1s; +récidivaient récidiver VER 0.48 0.68 0.00 0.07 ind:imp:3p; +récidivant récidivant ADJ m s 0.03 0.00 0.01 0.00 +récidivante récidivant ADJ f s 0.03 0.00 0.01 0.00 +récidive récidive NOM f s 0.61 0.81 0.57 0.61 +récidiver récidiver VER 0.48 0.68 0.12 0.14 inf; +récidiveras récidiver VER 0.48 0.68 0.01 0.00 ind:fut:2s; +récidives récidive NOM f p 0.61 0.81 0.04 0.20 +récidivez récidiver VER 0.48 0.68 0.01 0.00 ind:pre:2p; +récidiviste récidiviste NOM s 0.79 0.27 0.65 0.20 +récidivistes récidiviste NOM p 0.79 0.27 0.14 0.07 +récidivé récidiver VER m s 0.48 0.68 0.07 0.07 par:pas; +récif récif NOM m s 1.44 2.03 0.75 0.54 +récifale récifal ADJ f s 0.01 0.00 0.01 0.00 +récifs récif NOM m p 1.44 2.03 0.69 1.49 +récipiendaire récipiendaire NOM s 0.03 0.41 0.01 0.20 +récipiendaires récipiendaire NOM p 0.03 0.41 0.02 0.20 +récipient récipient NOM m s 1.64 4.12 1.36 2.77 +récipients récipient NOM m p 1.64 4.12 0.27 1.35 +réciprocité réciprocité NOM f s 0.28 1.55 0.28 1.55 +réciproque réciproque ADJ s 3.91 8.24 3.59 5.68 +réciproquement réciproquement ADV 0.26 3.45 0.26 3.45 +réciproques réciproque ADJ p 3.91 8.24 0.32 2.57 +récit récit NOM m s 9.89 56.15 7.12 37.84 +récita réciter VER 11.89 28.51 0.01 3.24 ind:pas:3s; +récitai réciter VER 11.89 28.51 0.00 0.41 ind:pas:1s; +récitaient réciter VER 11.89 28.51 0.00 1.08 ind:imp:3p; +récitais réciter VER 11.89 28.51 0.12 1.15 ind:imp:1s;ind:imp:2s; +récitait réciter VER 11.89 28.51 0.39 4.86 ind:imp:3s; +récital récital NOM m s 1.41 1.89 1.33 1.28 +récitals récital NOM m p 1.41 1.89 0.08 0.61 +récitant réciter VER 11.89 28.51 0.04 1.89 par:pre; +récitante récitant NOM f s 0.02 1.28 0.00 0.07 +récitants récitant NOM m p 0.02 1.28 0.00 0.20 +récitassent réciter VER 11.89 28.51 0.00 0.07 sub:imp:3p; +récitatif récitatif ADJ m s 0.01 0.00 0.01 0.00 +récitatifs récitatif NOM m p 0.00 0.20 0.00 0.07 +récitation récitation NOM f s 0.19 2.91 0.17 2.03 +récitations récitation NOM f p 0.19 2.91 0.02 0.88 +récite réciter VER 11.89 28.51 3.44 3.72 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récitent réciter VER 11.89 28.51 0.47 0.27 ind:pre:3p; +réciter réciter VER 11.89 28.51 4.21 7.97 inf; +récitera réciter VER 11.89 28.51 0.23 0.07 ind:fut:3s; +réciterai réciter VER 11.89 28.51 0.27 0.07 ind:fut:1s; +réciteraient réciter VER 11.89 28.51 0.00 0.07 cnd:pre:3p; +réciterait réciter VER 11.89 28.51 0.01 0.34 cnd:pre:3s; +réciteras réciter VER 11.89 28.51 0.04 0.00 ind:fut:2s; +réciterez réciter VER 11.89 28.51 0.16 0.00 ind:fut:2p; +réciterons réciter VER 11.89 28.51 0.14 0.07 ind:fut:1p; +réciteront réciter VER 11.89 28.51 0.00 0.07 ind:fut:3p; +récites réciter VER 11.89 28.51 0.45 0.14 ind:pre:2s; +récitez réciter VER 11.89 28.51 0.83 0.27 imp:pre:2p;ind:pre:2p; +récitions réciter VER 11.89 28.51 0.01 0.27 ind:imp:1p; +récitons réciter VER 11.89 28.51 0.28 0.20 imp:pre:1p;ind:pre:1p; +récits récit NOM m p 9.89 56.15 2.77 18.31 +récitèrent réciter VER 11.89 28.51 0.00 0.14 ind:pas:3p; +récité réciter VER m s 11.89 28.51 0.69 1.35 par:pas; +récitée réciter VER f s 11.89 28.51 0.00 0.41 par:pas; +récitées réciter VER f p 11.89 28.51 0.00 0.20 par:pas; +récités réciter VER m p 11.89 28.51 0.12 0.20 par:pas; +rucksack rucksack NOM m s 0.00 0.07 0.00 0.07 +réclama réclamer VER 21.00 49.26 0.12 4.32 ind:pas:3s; +réclamai réclamer VER 21.00 49.26 0.00 0.20 ind:pas:1s; +réclamaient réclamer VER 21.00 49.26 0.26 4.05 ind:imp:3p; +réclamais réclamer VER 21.00 49.26 0.07 0.68 ind:imp:1s;ind:imp:2s; +réclamait réclamer VER 21.00 49.26 0.91 8.51 ind:imp:3s; +réclamant réclamer VER 21.00 49.26 0.52 2.43 par:pre; +réclamantes réclamant NOM f p 0.00 0.07 0.00 0.07 +réclamation réclamation NOM f s 2.15 1.42 1.02 0.68 +réclamations réclamation NOM f p 2.15 1.42 1.13 0.74 +réclame réclamer VER 21.00 49.26 8.98 7.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réclament réclamer VER 21.00 49.26 2.20 2.50 ind:pre:3p; +réclamer réclamer VER 21.00 49.26 3.18 11.76 inf; +réclamera réclamer VER 21.00 49.26 0.31 0.14 ind:fut:3s; +réclamerai réclamer VER 21.00 49.26 0.04 0.07 ind:fut:1s; +réclameraient réclamer VER 21.00 49.26 0.04 0.00 cnd:pre:3p; +réclamerais réclamer VER 21.00 49.26 0.00 0.14 cnd:pre:1s; +réclamerait réclamer VER 21.00 49.26 0.06 0.41 cnd:pre:3s; +réclameras réclamer VER 21.00 49.26 0.02 0.07 ind:fut:2s; +réclamerez réclamer VER 21.00 49.26 0.05 0.14 ind:fut:2p; +réclameriez réclamer VER 21.00 49.26 0.01 0.00 cnd:pre:2p; +réclamerons réclamer VER 21.00 49.26 0.01 0.07 ind:fut:1p; +réclameront réclamer VER 21.00 49.26 0.08 0.07 ind:fut:3p; +réclames réclame NOM f p 1.43 6.15 0.28 2.91 +réclamez réclamer VER 21.00 49.26 0.55 0.20 imp:pre:2p;ind:pre:2p; +réclamiez réclamer VER 21.00 49.26 0.04 0.20 ind:imp:2p; +réclamions réclamer VER 21.00 49.26 0.01 0.14 ind:imp:1p; +réclamons réclamer VER 21.00 49.26 0.40 0.41 imp:pre:1p;ind:pre:1p; +réclamèrent réclamer VER 21.00 49.26 0.01 0.61 ind:pas:3p; +réclamé réclamer VER m s 21.00 49.26 1.85 2.64 par:pas; +réclamée réclamer VER f s 21.00 49.26 0.60 1.15 par:pas; +réclamées réclamer VER f p 21.00 49.26 0.39 0.14 par:pas; +réclamés réclamer VER m p 21.00 49.26 0.13 0.27 par:pas; +réclusion réclusion NOM f s 1.10 3.04 1.09 3.04 +réclusionnaires réclusionnaire NOM p 0.00 0.07 0.00 0.07 +réclusions réclusion NOM f p 1.10 3.04 0.01 0.00 +récollet récollet NOM m s 0.00 0.81 0.00 0.07 +récollets récollet NOM m p 0.00 0.81 0.00 0.74 +récolta récolter VER 10.65 7.36 0.00 0.07 ind:pas:3s; +récoltable récoltable ADJ s 0.01 0.00 0.01 0.00 +récoltai récolter VER 10.65 7.36 0.00 0.07 ind:pas:1s; +récoltaient récolter VER 10.65 7.36 0.06 0.07 ind:imp:3p; +récoltais récolter VER 10.65 7.36 0.05 0.14 ind:imp:1s;ind:imp:2s; +récoltait récolter VER 10.65 7.36 0.07 0.81 ind:imp:3s; +récoltant récolter VER 10.65 7.36 0.08 0.14 par:pre; +récolte récolte NOM f s 9.83 8.99 7.93 5.54 +récoltent récolter VER 10.65 7.36 0.45 0.34 ind:pre:3p; +récolter récolter VER 10.65 7.36 3.66 2.43 inf; +récoltera récolter VER 10.65 7.36 0.07 0.00 ind:fut:3s; +récolterai récolter VER 10.65 7.36 0.03 0.00 ind:fut:1s; +récolteraient récolter VER 10.65 7.36 0.01 0.07 cnd:pre:3p; +récolterais récolter VER 10.65 7.36 0.10 0.00 cnd:pre:2s; +récolterait récolter VER 10.65 7.36 0.02 0.14 cnd:pre:3s; +récolteras récolter VER 10.65 7.36 0.07 0.00 ind:fut:2s; +récolterons récolter VER 10.65 7.36 0.16 0.07 ind:fut:1p; +récolteront récolter VER 10.65 7.36 0.02 0.00 ind:fut:3p; +récoltes récolte NOM f p 9.83 8.99 1.90 3.45 +récolteurs récolteur NOM m p 0.03 0.07 0.02 0.07 +récolteuse récolteur NOM f s 0.03 0.07 0.01 0.00 +récoltez récolter VER 10.65 7.36 0.14 0.00 imp:pre:2p;ind:pre:2p; +récoltions récolter VER 10.65 7.36 0.00 0.14 ind:imp:1p; +récoltons récolter VER 10.65 7.36 0.29 0.00 imp:pre:1p;ind:pre:1p; +récolté récolter VER m s 10.65 7.36 1.42 1.42 par:pas; +récoltée récolter VER f s 10.65 7.36 0.09 0.07 par:pas; +récoltées récolter VER f p 10.65 7.36 0.20 0.20 par:pas; +récoltés récolter VER m p 10.65 7.36 0.22 0.41 par:pas; +récompensa récompenser VER 9.96 8.38 0.01 0.14 ind:pas:3s; +récompensaient récompenser VER 9.96 8.38 0.00 0.20 ind:imp:3p; +récompensait récompenser VER 9.96 8.38 0.17 1.22 ind:imp:3s; +récompensant récompenser VER 9.96 8.38 0.04 0.14 par:pre; +récompense récompense NOM f s 19.66 9.73 18.39 8.31 +récompensent récompenser VER 9.96 8.38 0.23 0.00 ind:pre:3p; +récompenser récompenser VER 9.96 8.38 2.29 2.77 inf;;inf;;inf;; +récompensera récompenser VER 9.96 8.38 0.76 0.00 ind:fut:3s; +récompenserai récompenser VER 9.96 8.38 0.37 0.14 ind:fut:1s; +récompenserais récompenser VER 9.96 8.38 0.00 0.07 cnd:pre:1s; +récompenserons récompenser VER 9.96 8.38 0.06 0.00 ind:fut:1p; +récompenseront récompenser VER 9.96 8.38 0.04 0.00 ind:fut:3p; +récompenses récompense NOM f p 19.66 9.73 1.27 1.42 +récompensez récompenser VER 9.96 8.38 0.13 0.14 imp:pre:2p;ind:pre:2p; +récompensons récompenser VER 9.96 8.38 0.03 0.00 imp:pre:1p;ind:pre:1p; +récompensèrent récompenser VER 9.96 8.38 0.00 0.07 ind:pas:3p; +récompensé récompenser VER m s 9.96 8.38 2.39 1.28 par:pas; +récompensée récompenser VER f s 9.96 8.38 1.15 0.47 par:pas; +récompensées récompenser VER f p 9.96 8.38 0.21 0.14 par:pas; +récompensés récompenser VER m p 9.96 8.38 0.69 0.61 par:pas; +réconcilia réconcilier VER 9.04 10.61 0.01 0.07 ind:pas:3s; +réconciliaient réconcilier VER 9.04 10.61 0.01 0.34 ind:imp:3p; +réconciliait réconcilier VER 9.04 10.61 0.04 0.74 ind:imp:3s; +réconciliant réconcilier VER 9.04 10.61 0.03 0.14 par:pre; +réconciliateur réconciliateur NOM m s 0.02 0.07 0.02 0.07 +réconciliation réconciliation NOM f s 2.62 5.47 2.38 4.73 +réconciliations réconciliation NOM f p 2.62 5.47 0.23 0.74 +réconciliatrice réconciliateur ADJ f s 0.00 0.07 0.00 0.07 +réconcilie réconcilier VER 9.04 10.61 0.90 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réconcilient réconcilier VER 9.04 10.61 0.25 0.20 ind:pre:3p; +réconcilier réconcilier VER 9.04 10.61 3.61 3.38 inf; +réconciliera réconcilier VER 9.04 10.61 0.15 0.00 ind:fut:3s; +réconcilierai réconcilier VER 9.04 10.61 0.02 0.07 ind:fut:1s; +réconcilieraient réconcilier VER 9.04 10.61 0.00 0.07 cnd:pre:3p; +réconcilierait réconcilier VER 9.04 10.61 0.00 0.20 cnd:pre:3s; +réconcilierez réconcilier VER 9.04 10.61 0.04 0.00 ind:fut:2p; +réconciliez réconcilier VER 9.04 10.61 0.23 0.00 imp:pre:2p;ind:pre:2p; +réconciliions réconcilier VER 9.04 10.61 0.00 0.14 ind:imp:1p; +réconciliâmes réconcilier VER 9.04 10.61 0.00 0.07 ind:pas:1p; +réconcilions réconcilier VER 9.04 10.61 0.30 0.07 imp:pre:1p;ind:pre:1p; +réconcilié réconcilier VER m s 9.04 10.61 0.59 2.03 par:pas; +réconciliée réconcilier VER f s 9.04 10.61 0.42 0.61 par:pas; +réconciliées réconcilier VER f p 9.04 10.61 0.65 0.07 par:pas; +réconciliés réconcilier VER m p 9.04 10.61 1.78 1.76 par:pas; +réconfort réconfort NOM m s 4.75 6.42 4.71 6.35 +réconforta réconforter VER 6.86 9.19 0.02 0.95 ind:pas:3s; +réconfortaient réconforter VER 6.86 9.19 0.01 0.27 ind:imp:3p; +réconfortait réconforter VER 6.86 9.19 0.02 1.08 ind:imp:3s; +réconfortant réconfortant ADJ m s 2.00 6.08 1.62 2.91 +réconfortante réconfortant ADJ f s 2.00 6.08 0.20 2.36 +réconfortantes réconfortant ADJ f p 2.00 6.08 0.11 0.68 +réconfortants réconfortant ADJ m p 2.00 6.08 0.07 0.14 +réconforte réconforter VER 6.86 9.19 1.73 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réconfortent réconforter VER 6.86 9.19 0.41 0.41 ind:pre:3p; +réconforter réconforter VER 6.86 9.19 3.21 2.77 ind:pre:2p;inf; +réconfortera réconforter VER 6.86 9.19 0.16 0.00 ind:fut:3s; +réconforterai réconforter VER 6.86 9.19 0.01 0.00 ind:fut:1s; +réconforterait réconforter VER 6.86 9.19 0.02 0.07 cnd:pre:3s; +réconforteras réconforter VER 6.86 9.19 0.01 0.00 ind:fut:2s; +réconforterez réconforter VER 6.86 9.19 0.01 0.00 ind:fut:2p; +réconfortez réconforter VER 6.86 9.19 0.30 0.00 imp:pre:2p; +réconforts réconfort NOM m p 4.75 6.42 0.04 0.07 +réconforté réconforter VER m s 6.86 9.19 0.48 1.62 par:pas; +réconfortée réconforter VER f s 6.86 9.19 0.19 0.34 par:pas; +réconfortés réconforter VER m p 6.86 9.19 0.18 0.27 par:pas; +récri récri NOM m s 0.02 0.14 0.00 0.14 +récria récrier VER 0.00 2.91 0.00 0.68 ind:pas:3s; +récriai récrier VER 0.00 2.91 0.00 0.14 ind:pas:1s; +récriaient récrier VER 0.00 2.91 0.00 0.14 ind:imp:3p; +récriait récrier VER 0.00 2.91 0.00 0.34 ind:imp:3s; +récrie récrier VER 0.00 2.91 0.00 0.54 ind:pre:1s;ind:pre:3s; +récrient récrier VER 0.00 2.91 0.00 0.07 ind:pre:3p; +récrier récrier VER 0.00 2.91 0.00 0.14 inf; +récriminait récriminer VER 0.16 0.68 0.00 0.27 ind:imp:3s; +récrimination récrimination NOM f s 0.64 3.11 0.03 0.61 +récriminations récrimination NOM f p 0.64 3.11 0.61 2.50 +récriminer récriminer VER 0.16 0.68 0.16 0.41 inf; +récrirai récrire VER 0.46 0.95 0.03 0.07 ind:fut:1s; +récrire récrire VER 0.46 0.95 0.29 0.61 inf; +récris récrire VER 0.46 0.95 0.02 0.00 imp:pre:2s; +récrit récrire VER m s 0.46 0.95 0.11 0.14 ind:pre:3s;par:pas; +récrites récrire VER f p 0.46 0.95 0.00 0.07 par:pas; +récrièrent récrier VER 0.00 2.91 0.00 0.27 ind:pas:3p; +récrié récrier VER m s 0.00 2.91 0.00 0.20 par:pas; +récriée récrier VER f s 0.00 2.91 0.00 0.20 par:pas; +récriées récrier VER f p 0.00 2.91 0.00 0.07 par:pas; +récriés récrier VER m p 0.00 2.91 0.00 0.14 par:pas; +récrivent récrire VER 0.46 0.95 0.01 0.00 ind:pre:3p; +récrivit récrire VER 0.46 0.95 0.00 0.07 ind:pas:3s; +récré récré NOM f s 2.29 2.70 2.25 2.16 +récréatif récréatif ADJ m s 0.38 0.47 0.06 0.00 +récréation récréation NOM f s 2.88 11.28 2.43 9.26 +récréations récréation NOM f p 2.88 11.28 0.45 2.03 +récréative récréatif ADJ f s 0.38 0.47 0.24 0.41 +récréatives récréatif ADJ f p 0.38 0.47 0.07 0.07 +récrée récréer VER 0.06 0.00 0.04 0.00 ind:pre:3s; +récréer récréer VER 0.06 0.00 0.01 0.00 inf; +récrés récré NOM f p 2.29 2.70 0.05 0.54 +récréé récréer VER m s 0.06 0.00 0.01 0.00 par:pas; +récup récup NOM m s 0.13 0.14 0.13 0.00 +récupe récup NOM f s 0.13 0.14 0.00 0.14 +récépissé récépissé NOM m s 0.09 0.34 0.09 0.34 +récupère récupérer VER 75.93 31.82 9.77 2.77 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +récupèrent récupérer VER 75.93 31.82 0.61 0.20 ind:pre:3p; +récupères récupérer VER 75.93 31.82 1.28 0.20 ind:pre:2s; +récupéra récupérer VER 75.93 31.82 0.06 1.82 ind:pas:3s; +récupérable récupérable ADJ m s 0.43 0.88 0.14 0.61 +récupérables récupérable ADJ p 0.43 0.88 0.28 0.27 +récupérai récupérer VER 75.93 31.82 0.00 0.54 ind:pas:1s; +récupéraient récupérer VER 75.93 31.82 0.01 0.14 ind:imp:3p; +récupérais récupérer VER 75.93 31.82 0.16 0.20 ind:imp:1s;ind:imp:2s; +récupérait récupérer VER 75.93 31.82 0.32 1.49 ind:imp:3s; +récupérant récupérer VER 75.93 31.82 0.19 1.22 par:pre; +récupérateur récupérateur NOM m s 0.27 0.07 0.12 0.07 +récupérateurs récupérateur NOM m p 0.27 0.07 0.15 0.00 +récupération récupération NOM f s 2.04 1.89 2.01 1.82 +récupérations récupération NOM f p 2.04 1.89 0.04 0.07 +récupérer récupérer VER 75.93 31.82 44.59 14.19 inf; +récupérera récupérer VER 75.93 31.82 0.72 0.07 ind:fut:3s; +récupérerai récupérer VER 75.93 31.82 0.84 0.07 ind:fut:1s; +récupérerais récupérer VER 75.93 31.82 0.09 0.07 cnd:pre:1s;cnd:pre:2s; +récupérerait récupérer VER 75.93 31.82 0.09 0.20 cnd:pre:3s; +récupéreras récupérer VER 75.93 31.82 0.45 0.07 ind:fut:2s; +récupérerez récupérer VER 75.93 31.82 0.49 0.00 ind:fut:2p; +récupérerons récupérer VER 75.93 31.82 0.32 0.00 ind:fut:1p; +récupéreront récupérer VER 75.93 31.82 0.06 0.00 ind:fut:3p; +récupérez récupérer VER 75.93 31.82 1.80 0.20 imp:pre:2p;ind:pre:2p; +récupériez récupérer VER 75.93 31.82 0.04 0.00 ind:imp:2p; +récupérions récupérer VER 75.93 31.82 0.07 0.07 ind:imp:1p; +récupérâmes récupérer VER 75.93 31.82 0.02 0.07 ind:pas:1p; +récupérons récupérer VER 75.93 31.82 0.65 0.07 imp:pre:1p;ind:pre:1p; +récupérèrent récupérer VER 75.93 31.82 0.00 0.14 ind:pas:3p; +récupéré récupérer VER m s 75.93 31.82 10.33 5.41 par:pas; +récupérée récupérer VER f s 75.93 31.82 1.26 0.95 par:pas; +récupérées récupérer VER f p 75.93 31.82 0.80 0.74 par:pas; +récupérés récupérer VER m p 75.93 31.82 0.90 0.95 par:pas; +récurage récurage NOM m s 0.03 0.27 0.03 0.27 +récuraient récurer VER 0.54 2.84 0.00 0.14 ind:imp:3p; +récurais récurer VER 0.54 2.84 0.00 0.14 ind:imp:1s; +récurait récurer VER 0.54 2.84 0.01 0.14 ind:imp:3s; +récurant récurer VER 0.54 2.84 0.00 0.20 par:pre; +récure récurer VER 0.54 2.84 0.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récurent récurer VER 0.54 2.84 0.01 0.20 ind:pre:3p; +récurer récurer VER 0.54 2.84 0.35 0.74 inf; +récurerai récurer VER 0.54 2.84 0.00 0.07 ind:fut:1s; +récurrence récurrence NOM f s 0.19 0.14 0.17 0.14 +récurrences récurrence NOM f p 0.19 0.14 0.01 0.00 +récurrent récurrent ADJ m s 1.38 0.41 0.56 0.07 +récurrente récurrent ADJ f s 1.38 0.41 0.28 0.14 +récurrentes récurrent ADJ f p 1.38 0.41 0.21 0.07 +récurrents récurrent ADJ m p 1.38 0.41 0.33 0.14 +récursif récursif ADJ m s 0.03 0.00 0.03 0.00 +récuré récurer VER m s 0.54 2.84 0.08 0.34 par:pas; +récurée récurer VER f s 0.54 2.84 0.00 0.20 par:pas; +récurées récurer VER f p 0.54 2.84 0.01 0.14 par:pas; +récurés récurer VER m p 0.54 2.84 0.01 0.27 par:pas; +récusa récuser VER 0.78 3.04 0.00 0.14 ind:pas:3s; +récusable récusable ADJ m s 0.00 0.14 0.00 0.07 +récusables récusable ADJ p 0.00 0.14 0.00 0.07 +récusaient récuser VER 0.78 3.04 0.00 0.14 ind:imp:3p; +récusais récuser VER 0.78 3.04 0.00 0.27 ind:imp:1s; +récusait récuser VER 0.78 3.04 0.01 0.41 ind:imp:3s; +récusant récuser VER 0.78 3.04 0.03 0.14 par:pre; +récusation récusation NOM f s 0.09 0.07 0.07 0.07 +récusations récusation NOM f p 0.09 0.07 0.02 0.00 +récuse récuser VER 0.78 3.04 0.19 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +récuser récuser VER 0.78 3.04 0.31 1.08 inf; +récuserait récuser VER 0.78 3.04 0.00 0.07 cnd:pre:3s; +récuserons récuser VER 0.78 3.04 0.01 0.00 ind:fut:1p; +récusons récuser VER 0.78 3.04 0.07 0.00 imp:pre:1p;ind:pre:1p; +récusèrent récuser VER 0.78 3.04 0.00 0.14 ind:pas:3p; +récusé récuser VER m s 0.78 3.04 0.14 0.34 par:pas; +récusée récuser VER f s 0.78 3.04 0.01 0.20 par:pas; +rédacteur rédacteur NOM m s 4.93 5.68 3.32 3.85 +rédacteurs rédacteur NOM m p 4.93 5.68 0.67 1.35 +rédaction rédaction NOM f s 2.93 12.23 2.82 11.22 +rédactionnel rédactionnel ADJ m s 0.02 0.07 0.01 0.00 +rédactionnelle rédactionnel ADJ f s 0.02 0.07 0.01 0.07 +rédactions rédaction NOM f p 2.93 12.23 0.11 1.01 +rédactrice rédacteur NOM f s 4.93 5.68 0.94 0.27 +rédactrices rédactrice NOM f p 0.02 0.00 0.02 0.00 +rude rude ADJ s 6.85 29.80 5.68 22.64 +rudement rudement ADV 2.42 10.07 2.42 10.07 +rédempteur rédempteur NOM m s 0.78 0.27 0.78 0.20 +rédemption rédemption NOM f s 2.35 1.35 2.35 1.22 +rédemptions rédemption NOM f p 2.35 1.35 0.00 0.14 +rédemptoriste rédemptoriste NOM s 0.10 0.00 0.10 0.00 +rédemptrice rédempteur ADJ f s 0.40 0.34 0.00 0.07 +rudes rude ADJ p 6.85 29.80 1.17 7.16 +rudesse rudesse NOM f s 0.42 3.65 0.42 3.38 +rudesses rudesse NOM f p 0.42 3.65 0.00 0.27 +rédhibition rédhibition NOM f s 0.00 0.07 0.00 0.07 +rédhibitoire rédhibitoire ADJ s 0.06 0.47 0.06 0.34 +rédhibitoires rédhibitoire ADJ p 0.06 0.47 0.00 0.14 +rédige rédiger VER 8.49 22.16 0.72 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rédigea rédiger VER 8.49 22.16 0.02 1.35 ind:pas:3s; +rédigeai rédiger VER 8.49 22.16 0.00 0.47 ind:pas:1s; +rédigeaient rédiger VER 8.49 22.16 0.01 0.27 ind:imp:3p; +rédigeais rédiger VER 8.49 22.16 0.05 0.20 ind:imp:1s; +rédigeait rédiger VER 8.49 22.16 0.05 1.01 ind:imp:3s; +rédigeant rédiger VER 8.49 22.16 0.04 0.41 par:pre; +rédigent rédiger VER 8.49 22.16 0.06 0.07 ind:pre:3p; +rédigeons rédiger VER 8.49 22.16 0.05 0.34 imp:pre:1p;ind:pre:1p; +rédiger rédiger VER 8.49 22.16 2.27 6.96 inf; +rédigera rédiger VER 8.49 22.16 0.02 0.00 ind:fut:3s; +rédigerai rédiger VER 8.49 22.16 0.05 0.14 ind:fut:1s; +rédigerais rédiger VER 8.49 22.16 0.01 0.00 cnd:pre:1s; +rédigeras rédiger VER 8.49 22.16 0.03 0.07 ind:fut:2s; +rédigerez rédiger VER 8.49 22.16 0.03 0.14 ind:fut:2p; +rédiges rédiger VER 8.49 22.16 0.06 0.20 ind:pre:2s; +rédigez rédiger VER 8.49 22.16 0.83 0.00 imp:pre:2p;ind:pre:2p; +rédigiez rédiger VER 8.49 22.16 0.04 0.07 ind:imp:2p; +rédigions rédiger VER 8.49 22.16 0.00 0.14 ind:imp:1p; +rédigèrent rédiger VER 8.49 22.16 0.00 0.14 ind:pas:3p; +rédigé rédiger VER m s 8.49 22.16 2.55 4.19 par:pas; +rédigée rédiger VER f s 8.49 22.16 1.31 2.16 par:pas; +rédigées rédiger VER f p 8.49 22.16 0.03 1.08 par:pas; +rédigés rédiger VER m p 8.49 22.16 0.26 1.28 par:pas; +rédimaient rédimer VER 0.00 0.07 0.00 0.07 ind:imp:3p; +rudiment rudiment NOM m s 0.24 1.89 0.01 0.27 +rudimentaire rudimentaire ADJ s 0.87 3.11 0.73 2.09 +rudimentaires rudimentaire ADJ p 0.87 3.11 0.14 1.01 +rudiments rudiment NOM m p 0.24 1.89 0.23 1.62 +rudoie rudoyer VER 0.45 1.22 0.01 0.00 ind:pre:3s; +rudoiement rudoiement NOM m s 0.00 0.14 0.00 0.07 +rudoiements rudoiement NOM m p 0.00 0.14 0.00 0.07 +rudoient rudoyer VER 0.45 1.22 0.00 0.07 ind:pre:3p; +rudoies rudoyer VER 0.45 1.22 0.01 0.00 ind:pre:2s; +rudoya rudoyer VER 0.45 1.22 0.00 0.07 ind:pas:3s; +rudoyais rudoyer VER 0.45 1.22 0.00 0.07 ind:imp:1s; +rudoyait rudoyer VER 0.45 1.22 0.02 0.41 ind:imp:3s; +rudoyant rudoyer VER 0.45 1.22 0.00 0.07 par:pre; +rudoyer rudoyer VER 0.45 1.22 0.32 0.20 inf; +rudoyèrent rudoyer VER 0.45 1.22 0.00 0.07 ind:pas:3p; +rudoyé rudoyer VER m s 0.45 1.22 0.08 0.20 par:pas; +rudoyés rudoyer VER m p 0.45 1.22 0.01 0.07 par:pas; +réducteur réducteur ADJ m s 0.12 0.07 0.12 0.07 +réducteurs réducteur NOM m p 0.26 0.14 0.23 0.07 +réduction réduction NOM f s 4.51 3.18 3.37 2.91 +réductionnisme réductionnisme NOM m s 0.03 0.00 0.03 0.00 +réductionniste réductionniste ADJ s 0.01 0.00 0.01 0.00 +réductions réduction NOM f p 4.51 3.18 1.14 0.27 +réduira réduire VER 27.88 50.61 0.53 0.34 ind:fut:3s; +réduirai réduire VER 27.88 50.61 0.26 0.20 ind:fut:1s; +réduiraient réduire VER 27.88 50.61 0.02 0.07 cnd:pre:3p; +réduirait réduire VER 27.88 50.61 0.44 0.34 cnd:pre:3s; +réduire réduire VER 27.88 50.61 8.85 13.04 ind:pre:2p;inf; +réduirons réduire VER 27.88 50.61 0.05 0.07 ind:fut:1p; +réduiront réduire VER 27.88 50.61 0.22 0.07 ind:fut:3p; +réduis réduire VER 27.88 50.61 1.35 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +réduisît réduire VER 27.88 50.61 0.00 0.14 sub:imp:3s; +réduisaient réduire VER 27.88 50.61 0.01 0.88 ind:imp:3p; +réduisais réduire VER 27.88 50.61 0.04 0.20 ind:imp:1s;ind:imp:2s; +réduisait réduire VER 27.88 50.61 0.13 4.46 ind:imp:3s; +réduisant réduire VER 27.88 50.61 0.24 1.55 par:pre; +réduise réduire VER 27.88 50.61 0.32 0.68 sub:pre:1s;sub:pre:3s; +réduisent réduire VER 27.88 50.61 1.03 1.01 ind:pre:3p; +réduises réduire VER 27.88 50.61 0.04 0.00 sub:pre:2s; +réduisez réduire VER 27.88 50.61 0.56 0.14 imp:pre:2p;ind:pre:2p; +réduisions réduire VER 27.88 50.61 0.01 0.07 ind:imp:1p; +réduisirent réduire VER 27.88 50.61 0.00 0.27 ind:pas:3p; +réduisis réduire VER 27.88 50.61 0.00 0.07 ind:pas:1s; +réduisit réduire VER 27.88 50.61 0.01 0.74 ind:pas:3s; +réduisons réduire VER 27.88 50.61 0.27 0.14 imp:pre:1p;ind:pre:1p; +réduit réduire VER m s 27.88 50.61 8.48 13.51 ind:pre:3s;par:pas; +réduite réduire VER f s 27.88 50.61 2.82 6.55 par:pas; +réduites réduire VER f p 27.88 50.61 0.43 2.03 par:pas; +réduits réduire VER m p 27.88 50.61 1.78 3.85 par:pas; +réduplication réduplication NOM f s 0.00 0.07 0.00 0.07 +rue rue NOM f s 157.81 562.97 127.35 449.53 +réel réel ADJ m s 38.70 40.95 23.97 15.20 +ruelle ruelle NOM f s 6.25 30.47 4.04 13.51 +réelle réel ADJ f s 38.70 40.95 8.88 17.50 +réellement réellement ADV 18.27 26.62 18.27 26.62 +ruelles ruelle NOM f p 6.25 30.47 2.21 16.96 +réelles réel ADJ f p 38.70 40.95 2.35 4.12 +réels réel ADJ m p 38.70 40.95 3.50 4.12 +réemballer réemballer VER 0.01 0.00 0.01 0.00 inf; +réembarque réembarquer VER 0.00 0.27 0.00 0.07 ind:pre:3s; +réembarquement réembarquement NOM m s 0.00 0.07 0.00 0.07 +réembarquer réembarquer VER 0.00 0.27 0.00 0.20 inf; +réembauche réembaucher VER 0.22 0.00 0.09 0.00 ind:pre:1s;ind:pre:3s; +réembaucher réembaucher VER 0.22 0.00 0.08 0.00 inf; +réembauché réembaucher VER m s 0.22 0.00 0.05 0.00 par:pas; +réemploi réemploi NOM m s 0.00 0.14 0.00 0.14 +réemployant réemployer VER 0.00 0.20 0.00 0.07 par:pre; +réemployer réemployer VER 0.00 0.20 0.00 0.14 inf; +réemprunter réemprunter VER 0.00 0.07 0.00 0.07 inf; +réencadrer réencadrer VER 0.00 0.07 0.00 0.07 inf; +réenclenches réenclencher VER 0.01 0.00 0.01 0.00 ind:pre:2s; +réendossant réendosser VER 0.02 0.14 0.00 0.07 par:pre; +réendosser réendosser VER 0.02 0.14 0.02 0.07 inf; +réengage réengager VER 0.24 0.07 0.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réengagement réengagement NOM m s 0.00 0.07 0.00 0.07 +réengager réengager VER 0.24 0.07 0.10 0.00 inf; +réengagé réengager VER m s 0.24 0.07 0.10 0.00 par:pas; +réengagées réengager VER f p 0.24 0.07 0.00 0.07 par:pas; +réenregistrer réenregistrer VER 0.12 0.00 0.11 0.00 inf; +réenregistré réenregistrer VER m s 0.12 0.00 0.01 0.00 par:pas; +ruent ruer VER 3.27 20.81 0.38 1.08 ind:pre:3p; +réentendaient réentendre VER 0.26 1.01 0.00 0.07 ind:imp:3p; +réentendais réentendre VER 0.26 1.01 0.00 0.07 ind:imp:1s; +réentendons réentendre VER 0.26 1.01 0.00 0.07 ind:pre:1p; +réentendre réentendre VER 0.26 1.01 0.25 0.61 inf; +réentends réentendre VER 0.26 1.01 0.00 0.20 ind:pre:1s; +réentendu réentendre VER m s 0.26 1.01 0.01 0.00 par:pas; +réenterrer réenterrer VER 0.01 0.00 0.01 0.00 inf; +réentraîner réentraîner VER 0.01 0.00 0.01 0.00 inf; +réenvahir réenvahir VER 0.01 0.00 0.01 0.00 inf; +réenvisager réenvisager VER 0.15 0.00 0.15 0.00 inf; +ruer ruer VER 3.27 20.81 0.59 3.18 inf; +rueront ruer VER 3.27 20.81 0.00 0.07 ind:fut:3p; +rues rue NOM p 157.81 562.97 30.46 113.45 +réessaie réessayer VER 5.30 0.14 0.75 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réessaient réessayer VER 5.30 0.14 0.07 0.00 ind:pre:3p; +réessaiera réessayer VER 5.30 0.14 0.22 0.00 ind:fut:3s; +réessaierai réessayer VER 5.30 0.14 0.33 0.00 ind:fut:1s; +réessaieras réessayer VER 5.30 0.14 0.03 0.00 ind:fut:2s; +réessaieront réessayer VER 5.30 0.14 0.03 0.00 ind:fut:3p; +réessayant réessayer VER 5.30 0.14 0.00 0.07 par:pre; +réessaye réessayer VER 5.30 0.14 0.37 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réessayer réessayer VER 5.30 0.14 2.40 0.07 inf; +réessayez réessayer VER 5.30 0.14 0.61 0.00 imp:pre:2p;ind:pre:2p; +réessayiez réessayer VER 5.30 0.14 0.01 0.00 ind:imp:2p; +réessayons réessayer VER 5.30 0.14 0.31 0.00 imp:pre:1p;ind:pre:1p; +réessayé réessayer VER m s 5.30 0.14 0.16 0.00 par:pas; +réexamen réexamen NOM m s 0.07 0.00 0.07 0.00 +réexaminant réexaminer VER 0.89 0.20 0.00 0.07 par:pre; +réexamine réexaminer VER 0.89 0.20 0.08 0.00 ind:pre:1s;ind:pre:3s; +réexaminer réexaminer VER 0.89 0.20 0.44 0.00 inf; +réexaminerons réexaminer VER 0.89 0.20 0.03 0.00 ind:fut:1p; +réexamines réexaminer VER 0.89 0.20 0.02 0.00 ind:pre:2s; +réexaminez réexaminer VER 0.89 0.20 0.04 0.00 imp:pre:2p;ind:pre:2p; +réexaminiez réexaminer VER 0.89 0.20 0.04 0.00 ind:imp:2p; +réexaminions réexaminer VER 0.89 0.20 0.01 0.07 ind:imp:1p; +réexaminé réexaminer VER m s 0.89 0.20 0.21 0.00 par:pas; +réexaminée réexaminer VER f s 0.89 0.20 0.01 0.00 par:pas; +réexaminées réexaminer VER f p 0.89 0.20 0.00 0.07 par:pas; +réexpédia réexpédier VER 0.37 0.68 0.00 0.07 ind:pas:3s; +réexpédiait réexpédier VER 0.37 0.68 0.01 0.14 ind:imp:3s; +réexpédiant réexpédier VER 0.37 0.68 0.01 0.00 par:pre; +réexpédier réexpédier VER 0.37 0.68 0.07 0.07 inf; +réexpédiez réexpédier VER 0.37 0.68 0.02 0.00 imp:pre:2p; +réexpédions réexpédier VER 0.37 0.68 0.01 0.00 imp:pre:1p; +réexpédition réexpédition NOM f s 0.05 0.00 0.05 0.00 +réexpédié réexpédier VER m s 0.37 0.68 0.24 0.27 par:pas; +réexpédiés réexpédier VER m p 0.37 0.68 0.01 0.14 par:pas; +réf réf NOM f s 0.02 0.00 0.02 0.00 +réfection réfection NOM f s 0.23 1.96 0.23 1.69 +réfections réfection NOM f p 0.23 1.96 0.00 0.27 +réfectoire réfectoire NOM m s 1.13 9.66 1.11 9.59 +réfectoires réfectoire NOM m p 1.13 9.66 0.01 0.07 +ruffian ruffian NOM m s 0.55 0.81 0.48 0.41 +ruffians ruffian NOM m p 0.55 0.81 0.07 0.41 +rufian rufian NOM m s 0.01 0.00 0.01 0.00 +réflecteur réflecteur NOM m s 0.32 0.54 0.20 0.27 +réflecteurs réflecteur NOM m p 0.32 0.54 0.13 0.27 +réflexe réflexe NOM m s 6.13 18.85 2.55 11.89 +réflexes réflexe NOM m p 6.13 18.85 3.57 6.96 +réflexif réflexif ADJ m s 0.10 0.14 0.00 0.07 +réflexion réflexion NOM f s 7.47 37.03 6.29 23.38 +réflexions réflexion NOM f p 7.47 37.03 1.18 13.65 +réflexive réflexif ADJ f s 0.10 0.14 0.10 0.07 +réflexologie réflexologie NOM f s 0.02 0.00 0.02 0.00 +réfléchît réfléchir VER 116.71 89.05 0.00 0.14 sub:imp:3s; +réfléchi réfléchir VER m s 116.71 89.05 27.23 11.01 par:pas; +réfléchie réfléchi ADJ f s 20.28 6.69 0.36 1.22 +réfléchies réfléchi ADJ f p 20.28 6.69 0.01 0.07 +réfléchir réfléchir VER 116.71 89.05 47.59 36.55 inf; +réfléchira réfléchir VER 116.71 89.05 0.31 0.27 ind:fut:3s; +réfléchirai réfléchir VER 116.71 89.05 1.30 0.34 ind:fut:1s; +réfléchirais réfléchir VER 116.71 89.05 0.31 0.07 cnd:pre:1s;cnd:pre:2s; +réfléchirait réfléchir VER 116.71 89.05 0.09 0.14 cnd:pre:3s; +réfléchiras réfléchir VER 116.71 89.05 0.13 0.27 ind:fut:2s; +réfléchirent réfléchir VER 116.71 89.05 0.01 0.34 ind:pas:3p; +réfléchirez réfléchir VER 116.71 89.05 0.14 0.07 ind:fut:2p; +réfléchiriez réfléchir VER 116.71 89.05 0.03 0.00 cnd:pre:2p; +réfléchirons réfléchir VER 116.71 89.05 0.28 0.07 ind:fut:1p; +réfléchiront réfléchir VER 116.71 89.05 0.07 0.00 ind:fut:3p; +réfléchis réfléchi ADJ m p 20.28 6.69 18.86 2.77 +réfléchissaient réfléchir VER 116.71 89.05 0.16 0.27 ind:imp:3p; +réfléchissais réfléchir VER 116.71 89.05 2.10 1.96 ind:imp:1s;ind:imp:2s; +réfléchissait réfléchir VER 116.71 89.05 0.48 5.14 ind:imp:3s; +réfléchissant réfléchir VER 116.71 89.05 1.09 2.64 par:pre; +réfléchissante réfléchissant ADJ f s 0.73 0.68 0.04 0.07 +réfléchissantes réfléchissant ADJ f p 0.73 0.68 0.06 0.00 +réfléchissants réfléchissant ADJ m p 0.73 0.68 0.00 0.07 +réfléchisse réfléchir VER 116.71 89.05 2.28 0.95 sub:pre:1s;sub:pre:3s; +réfléchissent réfléchir VER 116.71 89.05 0.54 0.54 ind:pre:3p; +réfléchisses réfléchir VER 116.71 89.05 0.63 0.07 sub:pre:2s; +réfléchissez réfléchir VER 116.71 89.05 10.10 2.50 imp:pre:2p;ind:pre:2p; +réfléchissiez réfléchir VER 116.71 89.05 0.35 0.07 ind:imp:2p;sub:pre:2p; +réfléchissons réfléchir VER 116.71 89.05 1.71 0.34 imp:pre:1p;ind:pre:1p; +réfléchit réfléchir VER 116.71 89.05 3.81 19.39 ind:pre:3s;ind:pas:3s; +réforma réformer VER 1.52 2.70 0.00 0.07 ind:pas:3s; +réformateur réformateur NOM m s 0.16 1.49 0.09 0.61 +réformateurs réformateur NOM m p 0.16 1.49 0.08 0.88 +réformation réformation NOM f s 0.00 0.07 0.00 0.07 +réforme réforme NOM f s 3.10 11.35 2.24 4.93 +réformer réformer VER 1.52 2.70 0.75 1.35 inf; +réformera réformer VER 1.52 2.70 0.14 0.00 ind:fut:3s; +réformes réforme NOM f p 3.10 11.35 0.86 6.42 +réformisme réformisme NOM m s 0.01 0.00 0.01 0.00 +réformiste réformiste ADJ m s 0.44 0.41 0.38 0.14 +réformistes réformiste ADJ m p 0.44 0.41 0.06 0.27 +réformons réformer VER 1.52 2.70 0.01 0.00 ind:pre:1p; +réformé réformer VER m s 1.52 2.70 0.40 1.01 par:pas; +réformée réformé ADJ f s 0.26 1.28 0.03 0.41 +réformées réformé ADJ f p 0.26 1.28 0.00 0.07 +réformés réformé NOM m p 0.14 0.54 0.07 0.27 +réfractaire réfractaire ADJ s 0.17 1.89 0.15 1.28 +réfractaires réfractaire NOM p 0.07 1.22 0.05 0.95 +réfractant réfracter VER 0.01 0.27 0.00 0.07 par:pre; +réfractera réfracter VER 0.01 0.27 0.00 0.07 ind:fut:3s; +réfracterait réfracter VER 0.01 0.27 0.00 0.07 cnd:pre:3s; +réfraction réfraction NOM f s 0.27 0.41 0.27 0.41 +réfractionniste réfractionniste NOM s 0.01 0.00 0.01 0.00 +réfracté réfracter VER m s 0.01 0.27 0.01 0.07 par:pas; +réfrigèrent réfrigérer VER 0.20 0.34 0.01 0.00 ind:pre:3p; +réfrigérant réfrigérant ADJ m s 0.18 0.27 0.09 0.14 +réfrigérante réfrigérant ADJ f s 0.18 0.27 0.04 0.07 +réfrigérantes réfrigérant ADJ f p 0.18 0.27 0.01 0.07 +réfrigérants réfrigérant ADJ m p 0.18 0.27 0.04 0.00 +réfrigérateur réfrigérateur NOM m s 3.58 2.77 2.94 2.43 +réfrigérateurs réfrigérateur NOM m p 3.58 2.77 0.64 0.34 +réfrigération réfrigération NOM f s 0.23 0.00 0.23 0.00 +réfrigérer réfrigérer VER 0.20 0.34 0.06 0.00 inf; +réfrigéré réfrigérer VER m s 0.20 0.34 0.09 0.14 par:pas; +réfrigérée réfrigéré ADJ f s 0.16 0.34 0.09 0.07 +réfrigérées réfrigérer VER f p 0.20 0.34 0.00 0.14 par:pas; +réfrigérés réfrigérer VER m p 0.20 0.34 0.02 0.00 par:pas; +réfrène réfréner VER 0.45 0.27 0.22 0.00 imp:pre:2s;ind:pre:1s; +réfréna réfréner VER 0.45 0.27 0.00 0.07 ind:pas:3s; +réfréner réfréner VER 0.45 0.27 0.20 0.07 inf; +réfrénez réfréner VER 0.45 0.27 0.02 0.00 imp:pre:2p; +réfrénée réfréner VER f s 0.45 0.27 0.01 0.14 par:pas; +réfère référer VER 3.02 3.78 1.00 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réfèrent référer VER 3.02 3.78 0.09 0.07 ind:pre:3p; +réfugia réfugier VER 6.72 25.20 0.05 1.01 ind:pas:3s; +réfugiai réfugier VER 6.72 25.20 0.01 0.68 ind:pas:1s; +réfugiaient réfugier VER 6.72 25.20 0.05 0.74 ind:imp:3p; +réfugiais réfugier VER 6.72 25.20 0.30 0.74 ind:imp:1s;ind:imp:2s; +réfugiait réfugier VER 6.72 25.20 0.16 1.49 ind:imp:3s; +réfugiant réfugier VER 6.72 25.20 0.01 0.47 par:pre; +réfugie réfugier VER 6.72 25.20 1.31 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +réfugient réfugier VER 6.72 25.20 0.11 0.74 ind:pre:3p; +réfugier réfugier VER 6.72 25.20 1.86 6.49 inf; +réfugiera réfugier VER 6.72 25.20 0.03 0.14 ind:fut:3s; +réfugierais réfugier VER 6.72 25.20 0.01 0.07 cnd:pre:1s; +réfugies réfugier VER 6.72 25.20 0.04 0.14 ind:pre:2s; +réfugiez réfugier VER 6.72 25.20 0.05 0.00 imp:pre:2p;ind:pre:2p; +réfugiions réfugier VER 6.72 25.20 0.00 0.41 ind:imp:1p; +réfugions réfugier VER 6.72 25.20 0.03 0.14 imp:pre:1p;ind:pre:1p; +réfugièrent réfugier VER 6.72 25.20 0.04 0.34 ind:pas:3p; +réfugié réfugier VER m s 6.72 25.20 1.49 4.12 par:pas; +réfugiée réfugier VER f s 6.72 25.20 0.34 2.16 par:pas; +réfugiées réfugier VER f p 6.72 25.20 0.02 0.61 par:pas; +réfugiés réfugié NOM m p 6.02 10.20 4.96 8.18 +référaient référer VER 3.02 3.78 0.01 0.14 ind:imp:3p; +référait référer VER 3.02 3.78 0.32 0.34 ind:imp:3s; +référant référer VER 3.02 3.78 0.11 0.68 par:pre; +référence référence NOM f s 10.45 7.23 6.54 3.58 +référencement référencement NOM m s 0.01 0.00 0.01 0.00 +référencer référencer VER 0.17 0.00 0.05 0.00 inf; +références référence NOM f p 10.45 7.23 3.91 3.65 +référencé référencer VER m s 0.17 0.00 0.09 0.00 par:pas; +référencée référencer VER f s 0.17 0.00 0.04 0.00 par:pas; +référendaire référendaire ADJ m s 0.00 0.20 0.00 0.20 +référendum référendum NOM m s 0.65 2.57 0.65 2.50 +référendums référendum NOM m p 0.65 2.57 0.00 0.07 +référent référent NOM m s 0.02 0.00 0.02 0.00 +référer référer VER 3.02 3.78 0.88 1.42 inf; +référera référer VER 3.02 3.78 0.01 0.00 ind:fut:3s; +référerai référer VER 3.02 3.78 0.29 0.00 ind:fut:1s; +référerez référer VER 3.02 3.78 0.01 0.14 ind:fut:2p; +référez référer VER 3.02 3.78 0.19 0.07 imp:pre:2p;ind:pre:2p; +référiez référer VER 3.02 3.78 0.00 0.07 ind:imp:2p; +référèrent référer VER 3.02 3.78 0.00 0.07 ind:pas:3p; +référé référé NOM m s 0.14 0.07 0.13 0.07 +référée référer VER f s 3.02 3.78 0.04 0.00 par:pas; +référés référé NOM m p 0.14 0.07 0.01 0.00 +réfuta réfuter VER 1.46 1.69 0.10 0.07 ind:pas:3s; +réfutable réfutable ADJ s 0.01 0.00 0.01 0.00 +réfutaient réfuter VER 1.46 1.69 0.00 0.07 ind:imp:3p; +réfutant réfuter VER 1.46 1.69 0.01 0.00 par:pre; +réfutation réfutation NOM f s 0.22 0.41 0.22 0.34 +réfutations réfutation NOM f p 0.22 0.41 0.00 0.07 +réfute réfuter VER 1.46 1.69 0.20 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réfutent réfuter VER 1.46 1.69 0.01 0.07 ind:pre:3p; +réfuter réfuter VER 1.46 1.69 0.89 0.81 inf; +réfutons réfuter VER 1.46 1.69 0.14 0.00 ind:pre:1p; +réfutèrent réfuter VER 1.46 1.69 0.00 0.07 ind:pas:3p; +réfuté réfuter VER m s 1.46 1.69 0.05 0.20 par:pas; +réfutée réfuter VER f s 1.46 1.69 0.03 0.07 par:pas; +réfutées réfuter VER f p 1.46 1.69 0.02 0.07 par:pas; +régal régal NOM m s 2.19 2.97 2.18 2.91 +régala régaler VER 7.54 11.76 0.00 0.20 ind:pas:3s; +régalade régalade NOM f s 0.00 0.81 0.00 0.81 +régalai régaler VER 7.54 11.76 0.00 0.07 ind:pas:1s; +régalaient régaler VER 7.54 11.76 0.02 0.47 ind:imp:3p; +régalais régaler VER 7.54 11.76 0.06 0.41 ind:imp:1s;ind:imp:2s; +régalait régaler VER 7.54 11.76 0.19 1.96 ind:imp:3s; +régalant régaler VER 7.54 11.76 0.02 0.47 par:pre; +régale régaler VER 7.54 11.76 3.02 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +régalent régaler VER 7.54 11.76 0.14 0.41 ind:pre:3p; +régaler régaler VER 7.54 11.76 2.57 2.91 inf;; +régalera régaler VER 7.54 11.76 0.02 0.14 ind:fut:3s; +régaleraient régaler VER 7.54 11.76 0.00 0.14 cnd:pre:3p; +régalerais régaler VER 7.54 11.76 0.01 0.07 cnd:pre:1s; +régalerait régaler VER 7.54 11.76 0.00 0.20 cnd:pre:3s; +régaleras régaler VER 7.54 11.76 0.12 0.07 ind:fut:2s; +régalerez régaler VER 7.54 11.76 0.02 0.00 ind:fut:2p; +régaleront régaler VER 7.54 11.76 0.16 0.20 ind:fut:3p; +régaleur régaleur NOM m s 0.00 0.07 0.00 0.07 +régalez régaler VER 7.54 11.76 0.60 0.07 imp:pre:2p;ind:pre:2p; +régalien régalien ADJ m s 0.01 0.07 0.01 0.07 +régalions régaler VER 7.54 11.76 0.00 0.07 ind:imp:1p; +régalât régaler VER 7.54 11.76 0.00 0.07 sub:imp:3s; +régals régal NOM m p 2.19 2.97 0.01 0.07 +régalèrent régaler VER 7.54 11.76 0.00 0.27 ind:pas:3p; +régalé régaler VER m s 7.54 11.76 0.24 0.95 par:pas; +régalée régaler VER f s 7.54 11.76 0.06 0.27 par:pas; +régalés régaler VER m p 7.54 11.76 0.28 0.47 par:pas; +régate régate NOM f s 1.13 0.81 0.93 0.41 +régates régate NOM f p 1.13 0.81 0.19 0.41 +rugby rugby NOM m s 1.14 3.11 1.14 3.11 +rugbyman rugbyman NOM m s 0.03 1.28 0.03 0.34 +rugbymen rugbyman NOM m p 0.03 1.28 0.00 0.95 +régence régence NOM f s 0.07 1.69 0.07 1.69 +régent régent NOM m s 1.14 2.30 0.77 1.08 +régentaient régenter VER 0.32 1.22 0.00 0.07 ind:imp:3p; +régentait régenter VER 0.32 1.22 0.00 0.27 ind:imp:3s; +régentant régenter VER 0.32 1.22 0.10 0.07 par:pre; +régente régent NOM f s 1.14 2.30 0.37 1.15 +régentent régenter VER 0.32 1.22 0.01 0.00 ind:pre:3p; +régenter régenter VER 0.32 1.22 0.16 0.47 inf; +régenteraient régenter VER 0.32 1.22 0.00 0.07 cnd:pre:3p; +régentes régenter VER 0.32 1.22 0.01 0.00 ind:pre:2s; +régenté régenter VER m s 0.32 1.22 0.01 0.07 par:pas; +régentée régenter VER f s 0.32 1.22 0.00 0.14 par:pas; +régi régir VER m s 3.10 8.45 0.50 0.68 par:pas; +rugi rugir VER m s 1.73 7.50 0.00 0.61 par:pas; +régicide régicide NOM s 0.20 1.01 0.20 0.88 +régicides régicide NOM p 0.20 1.01 0.00 0.14 +régie régie NOM f s 0.92 0.54 0.92 0.47 +régies régir VER f p 3.10 8.45 0.00 0.07 par:pas; +régime régime NOM m s 19.43 39.73 18.52 36.69 +régiment régiment NOM m s 12.30 25.54 11.48 19.86 +régimentaire régimentaire ADJ s 0.10 0.41 0.10 0.20 +régimentaires régimentaire ADJ f p 0.10 0.41 0.00 0.20 +régiments régiment NOM m p 12.30 25.54 0.82 5.68 +régimes régime NOM m p 19.43 39.73 0.92 3.04 +région région NOM f s 28.16 53.31 25.80 39.05 +régional régional ADJ m s 2.63 2.70 1.23 1.69 +régionale régional ADJ f s 2.63 2.70 1.01 0.54 +régionales régional ADJ f p 2.63 2.70 0.39 0.47 +régionaliser régionaliser VER 0.00 0.07 0.00 0.07 inf; +régionalisme régionalisme NOM m s 0.00 0.14 0.00 0.14 +régionaliste régionaliste ADJ m s 0.00 0.14 0.00 0.07 +régionalistes régionaliste ADJ p 0.00 0.14 0.00 0.07 +régionaux régional NOM m p 0.32 1.22 0.20 1.08 +régions région NOM f p 28.16 53.31 2.36 14.26 +régir régir VER 3.10 8.45 0.36 0.07 inf; +rugir rugir VER 1.73 7.50 0.52 0.88 inf; +régira régir VER 3.10 8.45 0.05 0.00 ind:fut:3s; +régiraient régir VER 3.10 8.45 0.00 0.07 cnd:pre:3p; +rugiraient rugir VER 1.73 7.50 0.00 0.07 cnd:pre:3p; +régirait régir VER 3.10 8.45 0.01 0.00 cnd:pre:3s; +rugirent rugir VER 1.73 7.50 0.00 0.07 ind:pas:3p; +régiront régir VER 3.10 8.45 0.14 0.00 ind:fut:3p; +rugiront rugir VER 1.73 7.50 0.01 0.00 ind:fut:3p; +régis régir VER m p 3.10 8.45 0.50 6.08 imp:pre:2s;par:pas; +rugis rugir VER m p 1.73 7.50 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +régissaient régir VER 3.10 8.45 0.02 0.07 ind:imp:3p; +rugissaient rugir VER 1.73 7.50 0.02 0.34 ind:imp:3p; +régissait régir VER 3.10 8.45 0.00 0.41 ind:imp:3s; +rugissait rugir VER 1.73 7.50 0.05 1.22 ind:imp:3s; +régissant régir VER 3.10 8.45 0.05 0.14 par:pre; +rugissant rugissant ADJ m s 0.12 1.22 0.09 0.61 +rugissante rugissant ADJ f s 0.12 1.22 0.01 0.27 +rugissantes rugissant ADJ f p 0.12 1.22 0.00 0.07 +rugissants rugissant ADJ m p 0.12 1.22 0.02 0.27 +rugisse rugir VER 1.73 7.50 0.02 0.00 sub:pre:3s; +rugissement rugissement NOM m s 0.66 4.93 0.61 2.91 +rugissements rugissement NOM m p 0.66 4.93 0.05 2.03 +régissent régir VER 3.10 8.45 0.39 0.41 ind:pre:3p; +rugissent rugir VER 1.73 7.50 0.05 0.07 ind:pre:3p; +régisseur régisseur NOM m s 1.40 4.26 1.28 3.65 +régisseurs régisseur NOM m p 1.40 4.26 0.11 0.61 +régisseuse régisseur NOM f s 1.40 4.26 0.01 0.00 +rugissez rugir VER 1.73 7.50 0.03 0.00 imp:pre:2p; +régit régir VER 3.10 8.45 0.72 0.41 ind:pre:3s;ind:pas:3s; +rugit rugir VER 1.73 7.50 0.95 3.51 ind:pre:3s;ind:pas:3s; +régla régler VER 85.81 54.19 0.25 1.42 ind:pas:3s; +réglable réglable ADJ s 0.20 0.54 0.18 0.41 +réglables réglable ADJ m p 0.20 0.54 0.02 0.14 +réglage réglage NOM m s 0.90 1.15 0.59 1.01 +réglages réglage NOM m p 0.90 1.15 0.30 0.14 +réglai régler VER 85.81 54.19 0.00 0.41 ind:pas:1s; +réglaient régler VER 85.81 54.19 0.20 0.74 ind:imp:3p; +réglais régler VER 85.81 54.19 0.19 0.00 ind:imp:1s;ind:imp:2s; +réglait régler VER 85.81 54.19 0.41 3.31 ind:imp:3s; +réglant régler VER 85.81 54.19 0.14 1.15 par:pre; +réglasse régler VER 85.81 54.19 0.00 0.07 sub:imp:1s; +réglementaire réglementaire ADJ s 0.90 6.96 0.73 4.46 +réglementairement réglementairement ADV 0.15 0.61 0.15 0.61 +réglementaires réglementaire ADJ p 0.90 6.96 0.17 2.50 +réglementait réglementer VER 0.22 0.81 0.00 0.07 ind:imp:3s; +réglementant réglementer VER 0.22 0.81 0.02 0.27 par:pre; +réglementation réglementation NOM f s 0.56 0.47 0.31 0.41 +réglementations réglementation NOM f p 0.56 0.47 0.25 0.07 +réglemente réglementer VER 0.22 0.81 0.00 0.07 ind:pre:3s; +réglementer réglementer VER 0.22 0.81 0.04 0.07 inf; +réglementé réglementer VER m s 0.22 0.81 0.05 0.07 par:pas; +réglementée réglementer VER f s 0.22 0.81 0.07 0.07 par:pas; +réglementées réglementer VER f p 0.22 0.81 0.00 0.20 par:pas; +réglementés réglementer VER m p 0.22 0.81 0.04 0.00 par:pas; +régler régler VER 85.81 54.19 42.27 22.36 ind:pre:2p;inf; +réglera régler VER 85.81 54.19 2.02 0.74 ind:fut:3s; +réglerai régler VER 85.81 54.19 0.73 0.07 ind:fut:1s; +réglerais régler VER 85.81 54.19 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +réglerait régler VER 85.81 54.19 0.16 0.68 cnd:pre:3s; +régleras régler VER 85.81 54.19 0.26 0.07 ind:fut:2s; +réglerez régler VER 85.81 54.19 0.37 0.14 ind:fut:2p; +réglerions régler VER 85.81 54.19 0.01 0.00 cnd:pre:1p; +réglerons régler VER 85.81 54.19 0.56 0.27 ind:fut:1p; +régleront régler VER 85.81 54.19 0.04 0.34 ind:fut:3p; +réglette réglette NOM f s 0.01 0.20 0.01 0.20 +régleur régleur NOM m s 0.10 1.82 0.10 1.82 +réglez régler VER 85.81 54.19 3.06 0.00 imp:pre:2p;ind:pre:2p; +régliez régler VER 85.81 54.19 0.06 0.00 ind:imp:2p; +réglions régler VER 85.81 54.19 0.00 0.07 ind:imp:1p; +réglisse réglisse NOM f s 0.77 2.57 0.71 2.43 +réglisses réglisse NOM f p 0.77 2.57 0.06 0.14 +réglo réglo ADJ s 6.61 1.22 5.99 1.08 +réglons régler VER 85.81 54.19 1.19 0.41 imp:pre:1p;ind:pre:1p; +réglos réglo ADJ m p 6.61 1.22 0.62 0.14 +réglât régler VER 85.81 54.19 0.00 0.14 sub:imp:3s; +réglèrent régler VER 85.81 54.19 0.00 0.34 ind:pas:3p; +réglé régler VER m s 85.81 54.19 21.02 10.47 par:pas; +réglée régler VER f s 85.81 54.19 2.37 4.26 par:pas; +réglées régler VER f p 85.81 54.19 0.88 1.49 par:pas; +réglure réglure NOM f s 0.00 0.20 0.00 0.20 +réglés régler VER m p 85.81 54.19 0.39 0.88 par:pas; +régna régner VER 22.75 47.43 0.08 0.74 ind:pas:3s; +régnaient régner VER 22.75 47.43 0.29 2.30 ind:imp:3p; +régnais régner VER 22.75 47.43 0.02 0.47 ind:imp:1s;ind:imp:2s; +régnait régner VER 22.75 47.43 2.63 20.47 ind:imp:3s; +régnant régner VER 22.75 47.43 0.28 1.01 par:pre; +régnante régnant ADJ f s 0.17 1.15 0.05 0.41 +régnants régnant ADJ m p 0.17 1.15 0.10 0.14 +régnas régner VER 22.75 47.43 0.00 0.07 ind:pas:2s; +régner régner VER 22.75 47.43 5.52 7.64 inf; +régnera régner VER 22.75 47.43 1.33 0.61 ind:fut:3s; +régnerai régner VER 22.75 47.43 0.13 0.07 ind:fut:1s; +régneraient régner VER 22.75 47.43 0.11 0.14 cnd:pre:3p; +régnerais régner VER 22.75 47.43 0.01 0.00 cnd:pre:2s; +régnerait régner VER 22.75 47.43 0.18 0.27 cnd:pre:3s; +régneras régner VER 22.75 47.43 0.14 0.07 ind:fut:2s; +régnerez régner VER 22.75 47.43 0.03 0.00 ind:fut:2p; +régnerons régner VER 22.75 47.43 0.32 0.00 ind:fut:1p; +régneront régner VER 22.75 47.43 0.27 0.07 ind:fut:3p; +régnez régner VER 22.75 47.43 1.04 0.07 imp:pre:2p;ind:pre:2p; +régnions régner VER 22.75 47.43 0.00 0.07 ind:imp:1p; +régnons régner VER 22.75 47.43 0.20 0.00 ind:pre:1p; +régnèrent régner VER 22.75 47.43 0.02 0.00 ind:pas:3p; +régné régner VER m s 22.75 47.43 0.40 1.28 par:pas; +rugosité rugosité NOM f s 0.00 0.81 0.00 0.47 +rugosités rugosité NOM f p 0.00 0.81 0.00 0.34 +régressait régresser VER 0.85 0.88 0.00 0.07 ind:imp:3s; +régressant régresser VER 0.85 0.88 0.00 0.07 par:pre; +régresse régresser VER 0.85 0.88 0.23 0.14 ind:pre:1s;ind:pre:3s; +régresser régresser VER 0.85 0.88 0.39 0.34 inf; +régressera régresser VER 0.85 0.88 0.05 0.00 ind:fut:3s; +régressif régressif ADJ m s 0.07 0.00 0.03 0.00 +régression régression NOM f s 0.52 1.55 0.51 1.35 +régressions régression NOM f p 0.52 1.55 0.01 0.20 +régressive régressif ADJ f s 0.07 0.00 0.04 0.00 +régressé régresser VER m s 0.85 0.88 0.19 0.27 par:pas; +rugueuse rugueux ADJ f s 1.08 8.78 0.45 3.31 +rugueuses rugueux ADJ f p 1.08 8.78 0.13 0.88 +rugueux rugueux ADJ m 1.08 8.78 0.50 4.59 +régul régul ADJ m s 0.04 0.34 0.04 0.34 +régulant réguler VER 0.61 0.14 0.03 0.00 par:pre; +régularisa régulariser VER 0.38 0.88 0.00 0.07 ind:pas:3s; +régularisation régularisation NOM f s 0.11 0.14 0.01 0.14 +régularisations régularisation NOM f p 0.11 0.14 0.10 0.00 +régulariser régulariser VER 0.38 0.88 0.33 0.61 inf; +régularisera régulariser VER 0.38 0.88 0.02 0.00 ind:fut:3s; +régularisé régulariser VER m s 0.38 0.88 0.03 0.20 par:pas; +régularité régularité NOM f s 0.55 6.96 0.55 6.96 +régulateur régulateur NOM m s 1.05 0.27 0.65 0.07 +régulateurs régulateur NOM m p 1.05 0.27 0.41 0.20 +régulation régulation NOM f s 0.46 0.34 0.46 0.34 +régulatrice régulateur ADJ f s 0.14 0.27 0.01 0.00 +régulatrices régulateur ADJ f p 0.14 0.27 0.01 0.00 +régule régule NOM m s 0.28 0.20 0.28 0.20 +régulent réguler VER 0.61 0.14 0.20 0.00 ind:pre:3p; +réguler réguler VER 0.61 0.14 0.28 0.14 inf; +régulera réguler VER 0.61 0.14 0.01 0.00 ind:fut:3s; +régulier régulier ADJ m s 8.29 41.35 4.48 16.42 +réguliers régulier ADJ m p 8.29 41.35 1.48 9.59 +régulière régulier ADJ f s 8.29 41.35 1.55 9.66 +régulièrement régulièrement ADV 5.72 27.77 5.72 27.77 +régulières régulier ADJ f p 8.29 41.35 0.79 5.68 +régulé réguler VER m s 0.61 0.14 0.03 0.00 par:pas; +régulée réguler VER f s 0.61 0.14 0.04 0.00 par:pas; +régulées réguler VER f p 0.61 0.14 0.01 0.00 par:pas; +régulés réguler VER m p 0.61 0.14 0.02 0.00 par:pas; +régénère régénérer VER 1.83 1.55 0.60 0.07 ind:pre:3s; +régénèrent régénérer VER 1.83 1.55 0.06 0.00 ind:pre:3p; +régénérait régénérer VER 1.83 1.55 0.00 0.07 ind:imp:3s; +régénérant régénérer VER 1.83 1.55 0.07 0.14 par:pre; +régénérateur régénérateur NOM m s 0.19 0.07 0.17 0.07 +régénérateurs régénérateur ADJ m p 0.05 0.41 0.01 0.00 +régénération régénération NOM f s 0.67 0.14 0.67 0.14 +régénératrice régénérateur ADJ f s 0.05 0.41 0.01 0.27 +régénérer régénérer VER 1.83 1.55 0.72 0.68 inf; +régénérera régénérer VER 1.83 1.55 0.02 0.00 ind:fut:3s; +régénérerait régénérer VER 1.83 1.55 0.00 0.07 cnd:pre:3s; +régénérescence régénérescence NOM f s 0.02 0.27 0.02 0.27 +régénéré régénérer VER m s 1.83 1.55 0.17 0.27 par:pas; +régénérée régénérer VER f s 1.83 1.55 0.03 0.14 par:pas; +régénérées régénéré ADJ f p 0.15 0.41 0.01 0.00 +régénérés régénérer VER m p 1.83 1.55 0.17 0.14 par:pas; +régurgitaient régurgiter VER 0.21 0.20 0.00 0.07 ind:imp:3p; +régurgitant régurgiter VER 0.21 0.20 0.01 0.07 par:pre; +régurgitation régurgitation NOM f s 0.09 0.07 0.04 0.07 +régurgitations régurgitation NOM f p 0.09 0.07 0.05 0.00 +régurgite régurgiter VER 0.21 0.20 0.07 0.00 ind:pre:3s; +régurgiter régurgiter VER 0.21 0.20 0.09 0.07 inf; +régurgiteras régurgiter VER 0.21 0.20 0.01 0.00 ind:fut:2s; +régurgité régurgiter VER m s 0.21 0.20 0.02 0.00 par:pas; +réhabilitaient réhabiliter VER 1.14 2.23 0.00 0.07 ind:imp:3p; +réhabilitait réhabiliter VER 1.14 2.23 0.00 0.14 ind:imp:3s; +réhabilitant réhabiliter VER 1.14 2.23 0.14 0.00 par:pre; +réhabilitation réhabilitation NOM f s 1.55 0.68 1.55 0.68 +réhabilite réhabiliter VER 1.14 2.23 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réhabilitent réhabiliter VER 1.14 2.23 0.02 0.07 ind:pre:3p; +réhabiliter réhabiliter VER 1.14 2.23 0.28 1.01 inf; +réhabilitera réhabiliter VER 1.14 2.23 0.01 0.00 ind:fut:3s; +réhabiliterait réhabiliter VER 1.14 2.23 0.02 0.07 cnd:pre:3s; +réhabilité réhabiliter VER m s 1.14 2.23 0.46 0.47 par:pas; +réhabilitée réhabiliter VER f s 1.14 2.23 0.03 0.14 par:pas; +réhabilitées réhabiliter VER f p 1.14 2.23 0.01 0.00 par:pas; +réhabilités réhabiliter VER m p 1.14 2.23 0.12 0.14 par:pas; +réhabituais réhabituer VER 0.20 0.81 0.00 0.14 ind:imp:1s; +réhabituait réhabituer VER 0.20 0.81 0.00 0.07 ind:imp:3s; +réhabitue réhabituer VER 0.20 0.81 0.14 0.20 ind:pre:1s;ind:pre:3s; +réhabituer réhabituer VER 0.20 0.81 0.07 0.41 inf; +réhydratation réhydratation NOM f s 0.03 0.00 0.03 0.00 +réhydrater réhydrater VER 0.09 0.07 0.08 0.07 inf; +réhydraté réhydrater VER m s 0.09 0.07 0.01 0.00 par:pas; +réifiés réifier VER m p 0.00 0.07 0.00 0.07 par:pas; +réimplantation réimplantation NOM f s 0.09 0.00 0.09 0.00 +réimplanter réimplanter VER 0.11 0.00 0.06 0.00 inf; +réimplanté réimplanter VER m s 0.11 0.00 0.02 0.00 par:pas; +réimplantée réimplanter VER f s 0.11 0.00 0.02 0.00 par:pas; +réimpression réimpression NOM f s 0.02 0.14 0.02 0.14 +réimprima réimprimer VER 0.04 0.27 0.00 0.07 ind:pas:3s; +réimprimer réimprimer VER 0.04 0.27 0.04 0.14 inf; +réimprimé réimprimer VER m s 0.04 0.27 0.00 0.07 par:pas; +ruina ruiner VER 20.39 12.09 0.03 0.20 ind:pas:3s; +ruinaient ruiner VER 20.39 12.09 0.01 0.47 ind:imp:3p; +ruinais ruiner VER 20.39 12.09 0.02 0.00 ind:imp:1s;ind:imp:2s; +ruinait ruiner VER 20.39 12.09 0.37 0.47 ind:imp:3s; +ruinant ruiner VER 20.39 12.09 0.11 0.27 par:pre; +réincarcérer réincarcérer VER 0.01 0.00 0.01 0.00 inf; +réincarnait réincarner VER 1.25 0.88 0.00 0.07 ind:imp:3s; +réincarnation réincarnation NOM f s 1.75 1.55 1.68 1.49 +réincarnations réincarnation NOM f p 1.75 1.55 0.07 0.07 +réincarne réincarner VER 1.25 0.88 0.12 0.07 ind:pre:1s;ind:pre:3s; +réincarnent réincarner VER 1.25 0.88 0.10 0.07 ind:pre:3p; +réincarner réincarner VER 1.25 0.88 0.30 0.07 inf; +réincarnera réincarner VER 1.25 0.88 0.01 0.00 ind:fut:3s; +réincarnerait réincarner VER 1.25 0.88 0.00 0.07 cnd:pre:3s; +réincarneront réincarner VER 1.25 0.88 0.01 0.00 ind:fut:3p; +réincarnons réincarner VER 1.25 0.88 0.01 0.00 ind:pre:1p; +réincarnèrent réincarner VER 1.25 0.88 0.01 0.00 ind:pas:3p; +réincarné réincarner VER m s 1.25 0.88 0.47 0.27 par:pas; +réincarnée réincarner VER f s 1.25 0.88 0.15 0.14 par:pas; +réincarnés réincarner VER m p 1.25 0.88 0.06 0.14 par:pas; +réincorpora réincorporer VER 0.04 0.07 0.00 0.07 ind:pas:3s; +réincorporé réincorporer VER m s 0.04 0.07 0.02 0.00 par:pas; +réincorporés réincorporer VER m p 0.04 0.07 0.02 0.00 par:pas; +ruine ruine NOM f s 17.93 39.39 9.23 15.47 +ruinent ruiner VER 20.39 12.09 0.67 0.47 ind:pre:3p; +ruiner ruiner VER 20.39 12.09 7.21 2.91 inf; +ruinera ruiner VER 20.39 12.09 0.54 0.20 ind:fut:3s; +ruinerai ruiner VER 20.39 12.09 0.26 0.00 ind:fut:1s; +ruinerais ruiner VER 20.39 12.09 0.27 0.07 cnd:pre:1s;cnd:pre:2s; +ruinerait ruiner VER 20.39 12.09 0.40 0.00 cnd:pre:3s; +ruineras ruiner VER 20.39 12.09 0.03 0.14 ind:fut:2s; +ruinerez ruiner VER 20.39 12.09 0.03 0.00 ind:fut:2p; +ruinerons ruiner VER 20.39 12.09 0.02 0.00 ind:fut:1p; +ruineront ruiner VER 20.39 12.09 0.01 0.07 ind:fut:3p; +ruines ruine NOM f p 17.93 39.39 8.70 23.92 +ruineuse ruineux ADJ f s 0.30 1.82 0.06 0.61 +ruineuses ruineux ADJ f p 0.30 1.82 0.02 0.41 +ruineux ruineux ADJ m 0.30 1.82 0.22 0.81 +ruinez ruiner VER 20.39 12.09 0.35 0.07 imp:pre:2p;ind:pre:2p; +réinfecter réinfecter VER 0.05 0.00 0.01 0.00 inf; +réinfecté réinfecter VER m s 0.05 0.00 0.04 0.00 par:pas; +ruiniez ruiner VER 20.39 12.09 0.02 0.00 ind:imp:2p; +réinitialisation réinitialisation NOM f s 0.13 0.00 0.13 0.00 +réinitialiser réinitialiser VER 0.23 0.00 0.17 0.00 inf; +réinitialisez réinitialiser VER 0.23 0.00 0.03 0.00 imp:pre:2p; +réinitialisé réinitialiser VER m s 0.23 0.00 0.03 0.00 par:pas; +réinjecter réinjecter VER 0.02 0.00 0.02 0.00 inf; +réinjection réinjection NOM f s 0.00 0.14 0.00 0.14 +ruinât ruiner VER 20.39 12.09 0.00 0.14 sub:imp:3s; +réinscrire réinscrire VER 0.08 0.00 0.04 0.00 inf; +réinscrit réinscrire VER m s 0.08 0.00 0.04 0.00 par:pas; +réinsertion réinsertion NOM f s 1.51 0.88 1.51 0.88 +réinstalla réinstaller VER 0.28 1.89 0.01 0.07 ind:pas:3s; +réinstallaient réinstaller VER 0.28 1.89 0.00 0.07 ind:imp:3p; +réinstallait réinstaller VER 0.28 1.89 0.00 0.27 ind:imp:3s; +réinstallant réinstaller VER 0.28 1.89 0.00 0.14 par:pre; +réinstallation réinstallation NOM f s 0.03 0.14 0.03 0.14 +réinstalle réinstaller VER 0.28 1.89 0.04 0.14 ind:pre:1s;ind:pre:3s; +réinstallent réinstaller VER 0.28 1.89 0.01 0.07 ind:pre:3p; +réinstaller réinstaller VER 0.28 1.89 0.13 0.54 inf; +réinstallez réinstaller VER 0.28 1.89 0.01 0.00 imp:pre:2p; +réinstallons réinstaller VER 0.28 1.89 0.00 0.07 ind:pre:1p; +réinstallé réinstaller VER m s 0.28 1.89 0.04 0.27 par:pas; +réinstallée réinstaller VER f s 0.28 1.89 0.02 0.14 par:pas; +réinstallées réinstaller VER f p 0.28 1.89 0.00 0.07 par:pas; +réinstallés réinstaller VER m p 0.28 1.89 0.01 0.07 par:pas; +réinstaurer réinstaurer VER 0.02 0.00 0.02 0.00 inf; +réinsérer réinsérer VER 0.41 0.47 0.23 0.41 inf; +réinséré réinsérer VER m s 0.41 0.47 0.17 0.07 par:pas; +réinterprète réinterpréter VER 0.03 0.14 0.00 0.07 ind:pre:3s; +réinterprétation réinterprétation NOM f s 0.10 0.07 0.10 0.07 +réinterpréter réinterpréter VER 0.03 0.14 0.03 0.07 inf; +réinterroge réinterroger VER 0.22 0.00 0.05 0.00 ind:pre:3s; +réinterroger réinterroger VER 0.22 0.00 0.17 0.00 inf; +réintroduire réintroduire VER 0.23 0.27 0.18 0.07 inf; +réintroduisait réintroduire VER 0.23 0.27 0.00 0.07 ind:imp:3s; +réintroduisit réintroduire VER 0.23 0.27 0.00 0.07 ind:pas:3s; +réintroduit réintroduire VER m s 0.23 0.27 0.05 0.00 ind:pre:3s;par:pas; +réintroduite réintroduire VER f s 0.23 0.27 0.00 0.07 par:pas; +réintègre réintégrer VER 2.94 5.20 0.32 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réintègrent réintégrer VER 2.94 5.20 0.00 0.14 ind:pre:3p; +réintégra réintégrer VER 2.94 5.20 0.00 0.41 ind:pas:3s; +réintégrai réintégrer VER 2.94 5.20 0.00 0.14 ind:pas:1s; +réintégraient réintégrer VER 2.94 5.20 0.00 0.20 ind:imp:3p; +réintégrais réintégrer VER 2.94 5.20 0.00 0.07 ind:imp:1s; +réintégrait réintégrer VER 2.94 5.20 0.01 0.34 ind:imp:3s; +réintégrant réintégrer VER 2.94 5.20 0.01 0.20 par:pre; +réintégration réintégration NOM f s 0.26 0.34 0.26 0.27 +réintégrations réintégration NOM f p 0.26 0.34 0.00 0.07 +réintégrer réintégrer VER 2.94 5.20 1.38 2.16 inf; +réintégrerait réintégrer VER 2.94 5.20 0.00 0.07 cnd:pre:3s; +réintégrez réintégrer VER 2.94 5.20 0.22 0.00 imp:pre:2p;ind:pre:2p; +réintégrions réintégrer VER 2.94 5.20 0.00 0.07 ind:imp:1p; +réintégrons réintégrer VER 2.94 5.20 0.02 0.00 imp:pre:1p;ind:pre:1p; +réintégrèrent réintégrer VER 2.94 5.20 0.00 0.20 ind:pas:3p; +réintégré réintégrer VER m s 2.94 5.20 0.53 1.01 par:pas; +réintégrée réintégrer VER f s 2.94 5.20 0.21 0.00 par:pas; +réintégrés réintégrer VER m p 2.94 5.20 0.24 0.07 par:pas; +ruiné ruiner VER m s 20.39 12.09 5.81 3.92 par:pas; +ruinée ruiner VER f s 20.39 12.09 1.09 0.68 par:pas; +ruinées ruiner VER f p 20.39 12.09 0.15 0.14 par:pas; +ruinés ruiner VER m p 20.39 12.09 1.02 1.01 par:pas; +réinventa réinventer VER 0.73 2.43 0.01 0.07 ind:pas:3s; +réinventaient réinventer VER 0.73 2.43 0.01 0.14 ind:imp:3p; +réinventait réinventer VER 0.73 2.43 0.00 0.20 ind:imp:3s; +réinventant réinventer VER 0.73 2.43 0.00 0.14 par:pre; +réinvente réinventer VER 0.73 2.43 0.19 0.41 imp:pre:2s;ind:pre:3s; +réinventent réinventer VER 0.73 2.43 0.00 0.07 ind:pre:3p; +réinventer réinventer VER 0.73 2.43 0.41 1.01 inf; +réinventeraient réinventer VER 0.73 2.43 0.00 0.14 cnd:pre:3p; +réinvention réinvention NOM f s 0.01 0.07 0.01 0.07 +réinventé réinventer VER m s 0.73 2.43 0.11 0.20 par:pas; +réinventées réinventer VER f p 0.73 2.43 0.00 0.07 par:pas; +réinvesti réinvestir VER m s 0.33 0.81 0.04 0.34 par:pas; +réinvestir réinvestir VER 0.33 0.81 0.10 0.14 inf; +réinvestirent réinvestir VER 0.33 0.81 0.00 0.07 ind:pas:3p; +réinvestis réinvestir VER 0.33 0.81 0.16 0.00 imp:pre:2s;ind:pre:1s; +réinvestissait réinvestir VER 0.33 0.81 0.00 0.14 ind:imp:3s; +réinvestissement réinvestissement NOM m s 0.01 0.00 0.01 0.00 +réinvestissent réinvestir VER 0.33 0.81 0.00 0.14 ind:pre:3p; +réinvestit réinvestir VER 0.33 0.81 0.03 0.00 ind:pre:3s; +réinvita réinviter VER 0.05 0.07 0.00 0.07 ind:pas:3s; +réinvite réinviter VER 0.05 0.07 0.02 0.00 ind:pre:1s; +réinviter réinviter VER 0.05 0.07 0.01 0.00 inf; +réinviterai réinviter VER 0.05 0.07 0.02 0.00 ind:fut:1s; +ruisseau ruisseau NOM m s 7.50 24.59 6.10 18.72 +ruisseaux ruisseau NOM m p 7.50 24.59 1.40 5.88 +ruissela ruisseler VER 0.81 19.12 0.00 0.27 ind:pas:3s; +ruisselaient ruisseler VER 0.81 19.12 0.00 1.96 ind:imp:3p; +ruisselait ruisseler VER 0.81 19.12 0.02 4.80 ind:imp:3s; +ruisselant ruisseler VER 0.81 19.12 0.16 4.05 par:pre; +ruisselante ruisselant ADJ f s 0.33 6.82 0.03 3.11 +ruisselantes ruisselant ADJ f p 0.33 6.82 0.02 0.68 +ruisselants ruisselant ADJ m p 0.33 6.82 0.14 1.69 +ruisseler ruisseler VER 0.81 19.12 0.03 2.30 inf; +ruisselet ruisselet NOM m s 0.01 1.01 0.01 0.54 +ruisselets ruisselet NOM m p 0.01 1.01 0.00 0.47 +ruisselle ruisseler VER 0.81 19.12 0.50 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ruissellement ruissellement NOM m s 0.01 4.53 0.01 4.12 +ruissellements ruissellement NOM m p 0.01 4.53 0.00 0.41 +ruissellent ruisseler VER 0.81 19.12 0.10 1.22 ind:pre:3p; +ruissellerait ruisseler VER 0.81 19.12 0.00 0.07 cnd:pre:3s; +ruisselât ruisseler VER 0.81 19.12 0.00 0.07 sub:imp:3s; +ruisselèrent ruisseler VER 0.81 19.12 0.00 0.14 ind:pas:3p; +ruisselé ruisseler VER m s 0.81 19.12 0.00 0.47 par:pas; +ruisson ruisson NOM m s 0.00 0.07 0.00 0.07 +réitère réitérer VER 1.13 2.77 0.34 0.41 ind:pre:1s;ind:pre:3s; +réitéra réitérer VER 1.13 2.77 0.00 0.54 ind:pas:3s; +réitérait réitérer VER 1.13 2.77 0.00 0.07 ind:imp:3s; +réitérant réitérer VER 1.13 2.77 0.00 0.07 par:pre; +réitération réitération NOM f s 0.00 0.14 0.00 0.07 +réitérations réitération NOM f p 0.00 0.14 0.00 0.07 +réitérer réitérer VER 1.13 2.77 0.35 0.41 inf; +réitérera réitérer VER 1.13 2.77 0.01 0.00 ind:fut:3s; +réitérèrent réitérer VER 1.13 2.77 0.00 0.07 ind:pas:3p; +réitéré réitérer VER m s 1.13 2.77 0.15 0.27 par:pas; +réitérée réitérer VER f s 1.13 2.77 0.14 0.27 par:pas; +réitérées réitérer VER f p 1.13 2.77 0.01 0.47 par:pas; +réitérés réitérer VER m p 1.13 2.77 0.14 0.20 par:pas; +réjouît réjouir VER 21.02 25.61 0.00 0.07 sub:imp:3s; +réjoui réjouir VER m s 21.02 25.61 0.50 1.89 par:pas; +réjouie réjouir VER f s 21.02 25.61 0.33 1.08 par:pas; +réjouies réjoui ADJ f p 0.45 2.43 0.02 0.20 +réjouir réjouir VER 21.02 25.61 3.96 6.15 inf; +réjouira réjouir VER 21.02 25.61 0.38 0.07 ind:fut:3s; +réjouirai réjouir VER 21.02 25.61 0.05 0.00 ind:fut:1s; +réjouirais réjouir VER 21.02 25.61 0.02 0.14 cnd:pre:1s;cnd:pre:2s; +réjouirait réjouir VER 21.02 25.61 0.10 0.34 cnd:pre:3s; +réjouirent réjouir VER 21.02 25.61 0.01 0.14 ind:pas:3p; +réjouirez réjouir VER 21.02 25.61 0.00 0.07 ind:fut:2p; +réjouirons réjouir VER 21.02 25.61 0.04 0.00 ind:fut:1p; +réjouiront réjouir VER 21.02 25.61 0.64 0.14 ind:fut:3p; +réjouis réjouir VER m p 21.02 25.61 8.42 2.36 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réjouissaient réjouir VER 21.02 25.61 0.01 0.61 ind:imp:3p; +réjouissais réjouir VER 21.02 25.61 0.33 1.28 ind:imp:1s;ind:imp:2s; +réjouissait réjouir VER 21.02 25.61 0.44 4.73 ind:imp:3s; +réjouissance réjouissance NOM f s 0.72 2.91 0.22 1.22 +réjouissances réjouissance NOM f p 0.72 2.91 0.50 1.69 +réjouissant réjouissant ADJ m s 1.06 1.76 0.95 0.81 +réjouissante réjouissant ADJ f s 1.06 1.76 0.11 0.54 +réjouissantes réjouissant ADJ f p 1.06 1.76 0.00 0.27 +réjouissants réjouissant ADJ m p 1.06 1.76 0.00 0.14 +réjouisse réjouir VER 21.02 25.61 0.37 0.41 sub:pre:1s;sub:pre:3s; +réjouissent réjouir VER 21.02 25.61 0.74 0.61 ind:pre:3p; +réjouissez réjouir VER 21.02 25.61 1.15 0.27 imp:pre:2p;ind:pre:2p; +réjouissiez réjouir VER 21.02 25.61 0.01 0.00 ind:imp:2p; +réjouissions réjouir VER 21.02 25.61 0.01 0.07 ind:imp:1p; +réjouissons réjouir VER 21.02 25.61 0.65 0.27 imp:pre:1p;ind:pre:1p; +réjouit réjouir VER 21.02 25.61 2.75 4.32 ind:pre:3s;ind:pas:3s; +rémanence rémanence NOM f s 0.01 0.20 0.01 0.20 +rémanent rémanent ADJ m s 0.02 0.14 0.02 0.00 +rémanente rémanent ADJ f s 0.02 0.14 0.00 0.14 +rumba rumba NOM f s 0.68 0.68 0.68 0.61 +rumbas rumba NOM f p 0.68 0.68 0.00 0.07 +rumeur rumeur NOM f s 22.11 37.97 10.15 27.03 +rumeurs rumeur NOM f p 22.11 37.97 11.96 10.95 +rémiges rémige NOM f p 0.00 0.68 0.00 0.68 +rumina ruminer VER 1.65 8.85 0.01 0.34 ind:pas:3s; +ruminaient ruminer VER 1.65 8.85 0.00 0.27 ind:imp:3p; +ruminais ruminer VER 1.65 8.85 0.20 0.20 ind:imp:1s; +ruminait ruminer VER 1.65 8.85 0.16 1.62 ind:imp:3s; +ruminant ruminant NOM m s 0.11 1.08 0.01 0.47 +ruminante ruminant ADJ f s 0.03 0.27 0.01 0.07 +ruminants ruminant NOM m p 0.11 1.08 0.10 0.61 +rumination rumination NOM f s 0.14 2.16 0.00 1.35 +ruminations rumination NOM f p 0.14 2.16 0.14 0.81 +rumine ruminer VER 1.65 8.85 0.36 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ruminement ruminement NOM m s 0.00 0.27 0.00 0.20 +ruminements ruminement NOM m p 0.00 0.27 0.00 0.07 +ruminent ruminer VER 1.65 8.85 0.03 0.41 ind:pre:3p; +ruminer ruminer VER 1.65 8.85 0.82 2.77 inf; +ruminerez ruminer VER 1.65 8.85 0.00 0.07 ind:fut:2p; +rumineront ruminer VER 1.65 8.85 0.01 0.00 ind:fut:3p; +réminiscence réminiscence NOM f s 0.12 3.92 0.04 1.49 +réminiscences réminiscence NOM f p 0.12 3.92 0.07 2.43 +ruminé ruminer VER m s 1.65 8.85 0.04 0.61 par:pas; +ruminée ruminer VER f s 1.65 8.85 0.00 0.14 par:pas; +ruminées ruminer VER f p 1.65 8.85 0.00 0.07 par:pas; +ruminés ruminer VER m p 1.65 8.85 0.01 0.14 par:pas; +rémission rémission NOM f s 1.71 2.77 1.69 2.36 +rémissions rémission NOM f p 1.71 2.77 0.02 0.41 +rémiz rémiz NOM f 0.00 0.07 0.00 0.07 +rémora rémora NOM m s 0.02 0.00 0.02 0.00 +rémoulade rémoulade NOM f s 0.02 0.20 0.02 0.20 +rémouleur rémouleur NOM m s 0.02 0.95 0.02 0.68 +rémouleurs rémouleur NOM m p 0.02 0.95 0.00 0.27 +rumsteck rumsteck NOM m s 0.03 0.07 0.03 0.07 +rémunère rémunérer VER 1.20 0.54 0.12 0.00 ind:pre:1s;ind:pre:3s; +rémunéraient rémunérer VER 1.20 0.54 0.00 0.07 ind:imp:3p; +rémunérateur rémunérateur ADJ m s 0.18 0.34 0.07 0.27 +rémunérateurs rémunérateur ADJ m p 0.18 0.34 0.01 0.07 +rémunération rémunération NOM f s 0.22 0.81 0.22 0.61 +rémunérations rémunération NOM f p 0.22 0.81 0.00 0.20 +rémunératoires rémunératoire ADJ p 0.00 0.07 0.00 0.07 +rémunératrice rémunérateur ADJ f s 0.18 0.34 0.10 0.00 +rémunérer rémunérer VER 1.20 0.54 0.04 0.00 inf; +rémunéré rémunérer VER m s 1.20 0.54 0.68 0.27 par:pas; +rémunérées rémunérer VER f p 1.20 0.54 0.01 0.07 par:pas; +rémunérés rémunérer VER m p 1.20 0.54 0.36 0.14 par:pas; +run rune NOM m s 4.75 0.14 2.36 0.00 +rénal rénal ADJ m s 1.57 0.47 0.32 0.14 +rénale rénal ADJ f s 1.57 0.47 0.82 0.27 +rénales rénal ADJ f p 1.57 0.47 0.12 0.07 +rénaux rénal ADJ m p 1.57 0.47 0.32 0.00 +rêne rêne NOM f s 2.23 5.74 0.02 0.14 +rune rune NOM f s 4.75 0.14 1.08 0.00 +rênes rêne NOM f p 2.23 5.74 2.21 5.61 +runes rune NOM f p 4.75 0.14 1.32 0.14 +rénettes rénette NOM f p 0.00 0.07 0.00 0.07 +rénine rénine NOM f s 0.01 0.00 0.01 0.00 +runique runique ADJ f s 0.20 0.00 0.16 0.00 +runiques runique ADJ m p 0.20 0.00 0.04 0.00 +running running NOM m s 0.66 0.00 0.66 0.00 +rénovait rénover VER 2.33 2.50 0.01 0.07 ind:imp:3s; +rénovant rénover VER 2.33 2.50 0.10 0.07 par:pre; +rénovateur rénovateur NOM m s 0.01 0.20 0.01 0.07 +rénovateurs rénovateur ADJ m p 0.02 0.07 0.01 0.07 +rénovation rénovation NOM f s 1.11 3.65 0.51 3.58 +rénovations rénovation NOM f p 1.11 3.65 0.60 0.07 +rénovatrice rénovateur ADJ f s 0.02 0.07 0.01 0.00 +rénove rénover VER 2.33 2.50 0.24 0.27 ind:pre:1s;ind:pre:3s; +rénover rénover VER 2.33 2.50 1.12 1.08 inf; +rénové rénover VER m s 2.33 2.50 0.53 0.54 par:pas; +rénovée rénover VER f s 2.33 2.50 0.31 0.20 par:pas; +rénovées rénover VER f p 2.33 2.50 0.02 0.14 par:pas; +rénovés rénover VER m p 2.33 2.50 0.00 0.14 par:pas; +réoccupait réoccuper VER 0.01 0.41 0.00 0.07 ind:imp:3s; +réoccuper réoccuper VER 0.01 0.41 0.01 0.27 inf; +réoccupons réoccuper VER 0.01 0.41 0.00 0.07 ind:pre:1p; +ruâmes ruer VER 3.27 20.81 0.00 0.07 ind:pas:1p; +ruons ruer VER 3.27 20.81 0.01 0.07 imp:pre:1p;ind:pre:1p; +réopère réopérer VER 0.20 0.20 0.04 0.00 ind:pre:3s; +réopérer réopérer VER 0.20 0.20 0.16 0.20 inf; +réordonnant réordonner VER 0.00 0.20 0.00 0.07 par:pre; +réordonner réordonner VER 0.00 0.20 0.00 0.14 inf; +réorganisa réorganiser VER 1.29 1.42 0.01 0.07 ind:pas:3s; +réorganisait réorganiser VER 1.29 1.42 0.01 0.14 ind:imp:3s; +réorganisant réorganiser VER 1.29 1.42 0.01 0.00 par:pre; +réorganisation réorganisation NOM f s 0.36 1.42 0.36 1.35 +réorganisations réorganisation NOM f p 0.36 1.42 0.00 0.07 +réorganise réorganiser VER 1.29 1.42 0.42 0.20 ind:pre:1s;ind:pre:3s; +réorganiser réorganiser VER 1.29 1.42 0.70 0.68 inf; +réorganisez réorganiser VER 1.29 1.42 0.02 0.00 imp:pre:2p;ind:pre:2p; +réorganisé réorganiser VER m s 1.29 1.42 0.12 0.20 par:pas; +réorganisées réorganiser VER f p 1.29 1.42 0.00 0.07 par:pas; +réorganisés réorganiser VER m p 1.29 1.42 0.00 0.07 par:pas; +réorientation réorientation NOM f s 0.08 0.00 0.08 0.00 +réorienter réorienter VER 0.09 0.00 0.07 0.00 inf; +réorienté réorienter VER m s 0.09 0.00 0.01 0.00 par:pas; +ruât ruer VER 3.27 20.81 0.00 0.14 sub:imp:3s; +réouverture réouverture NOM f s 0.48 0.61 0.48 0.54 +réouvertures réouverture NOM f p 0.48 0.61 0.00 0.07 +répand répandre VER 20.39 44.32 4.14 4.73 ind:pre:3s; +répandît répandre VER 20.39 44.32 0.14 0.14 sub:imp:3s; +répandaient répandre VER 20.39 44.32 0.15 3.38 ind:imp:3p; +répandais répandre VER 20.39 44.32 0.01 0.07 ind:imp:1s; +répandait répandre VER 20.39 44.32 0.13 8.04 ind:imp:3s; +répandant répandre VER 20.39 44.32 0.41 2.23 par:pre; +répande répandre VER 20.39 44.32 0.59 0.20 sub:pre:1s;sub:pre:3s; +répandent répandre VER 20.39 44.32 1.75 1.42 ind:pre:3p; +répandeur répandeur NOM m s 0.00 0.07 0.00 0.07 +répandez répandre VER 20.39 44.32 0.23 0.20 imp:pre:2p;ind:pre:2p; +répandirent répandre VER 20.39 44.32 0.15 0.68 ind:pas:3p; +répandit répandre VER 20.39 44.32 0.54 4.32 ind:pas:3s; +répandons répandre VER 20.39 44.32 0.06 0.00 imp:pre:1p;ind:pre:1p; +répandra répandre VER 20.39 44.32 0.35 0.00 ind:fut:3s; +répandrai répandre VER 20.39 44.32 0.19 0.14 ind:fut:1s; +répandraient répandre VER 20.39 44.32 0.01 0.20 cnd:pre:3p; +répandrait répandre VER 20.39 44.32 0.04 0.20 cnd:pre:3s; +répandras répandre VER 20.39 44.32 0.14 0.00 ind:fut:2s; +répandre répandre VER 20.39 44.32 5.53 6.82 inf; +répandrez répandre VER 20.39 44.32 0.04 0.00 ind:fut:2p; +répandrons répandre VER 20.39 44.32 0.15 0.00 ind:fut:1p; +répandront répandre VER 20.39 44.32 0.07 0.07 ind:fut:3p; +répands répandre VER 20.39 44.32 1.24 0.34 imp:pre:2s;ind:pre:1s;ind:pre:2s; +répandu répandre VER m s 20.39 44.32 2.67 4.53 par:pas; +répandue répandre VER f s 20.39 44.32 1.38 3.38 par:pas; +répandues répandre VER f p 20.39 44.32 0.16 1.49 par:pas; +répandus répandre VER m p 20.39 44.32 0.14 1.76 par:pas; +répara réparer VER 67.70 25.14 0.01 0.41 ind:pas:3s; +réparable réparable ADJ s 0.85 0.41 0.80 0.07 +réparables réparable ADJ f p 0.85 0.41 0.05 0.34 +réparaient réparer VER 67.70 25.14 0.08 0.41 ind:imp:3p; +réparais réparer VER 67.70 25.14 0.52 0.27 ind:imp:1s;ind:imp:2s; +réparait réparer VER 67.70 25.14 0.41 1.49 ind:imp:3s; +réparant réparer VER 67.70 25.14 0.14 0.54 par:pre; +réparateur réparateur NOM m s 1.04 0.54 0.95 0.34 +réparateurs réparateur NOM m p 1.04 0.54 0.06 0.20 +réparation réparation NOM f s 8.35 7.97 5.07 4.80 +réparations réparation NOM f p 8.35 7.97 3.28 3.18 +réparatrice réparateur ADJ f s 0.76 1.69 0.09 0.20 +réparatrices réparateur ADJ f p 0.76 1.69 0.02 0.00 +répare réparer VER 67.70 25.14 7.29 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réparent réparer VER 67.70 25.14 2.34 0.68 ind:pre:3p;sub:pre:3p; +réparer réparer VER 67.70 25.14 39.13 13.92 inf; +réparera réparer VER 67.70 25.14 0.64 0.07 ind:fut:3s; +réparerai réparer VER 67.70 25.14 1.26 0.14 ind:fut:1s; +répareraient réparer VER 67.70 25.14 0.00 0.07 cnd:pre:3p; +réparerait réparer VER 67.70 25.14 0.07 0.07 cnd:pre:3s; +répareras réparer VER 67.70 25.14 0.16 0.00 ind:fut:2s; +réparerez réparer VER 67.70 25.14 0.01 0.00 ind:fut:2p; +réparerons réparer VER 67.70 25.14 0.04 0.07 ind:fut:1p; +répareront réparer VER 67.70 25.14 0.02 0.00 ind:fut:3p; +réparez réparer VER 67.70 25.14 2.71 0.00 imp:pre:2p;ind:pre:2p; +répariez réparer VER 67.70 25.14 0.17 0.00 ind:imp:2p; +réparions réparer VER 67.70 25.14 0.00 0.07 ind:imp:1p; +réparons réparer VER 67.70 25.14 0.21 0.07 imp:pre:1p;ind:pre:1p; +répartîmes répartir VER 2.87 9.93 0.00 0.07 ind:pas:1p; +réparèrent réparer VER 67.70 25.14 0.00 0.07 ind:pas:3p; +réparti répartir VER m s 2.87 9.93 0.39 0.88 par:pas; +répartie répartie NOM f s 0.88 0.14 0.79 0.07 +réparties répartie NOM f p 0.88 0.14 0.09 0.07 +répartir répartir VER 2.87 9.93 1.23 1.82 inf; +répartirent répartir VER 2.87 9.93 0.01 0.07 ind:pas:3p; +répartiront répartir VER 2.87 9.93 0.02 0.00 ind:fut:3p; +répartis répartir VER m p 2.87 9.93 0.59 2.30 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +répartissaient répartir VER 2.87 9.93 0.00 0.54 ind:imp:3p; +répartissait répartir VER 2.87 9.93 0.01 0.41 ind:imp:3s; +répartissant répartir VER 2.87 9.93 0.04 0.27 par:pre; +répartissent répartir VER 2.87 9.93 0.01 0.41 ind:pre:3p; +répartissez répartir VER 2.87 9.93 0.10 0.00 imp:pre:2p; +répartissons répartir VER 2.87 9.93 0.01 0.00 imp:pre:1p; +répartit répartir VER 2.87 9.93 0.22 0.95 ind:pre:3s;ind:pas:3s; +répartiteur répartiteur NOM m s 0.07 0.00 0.07 0.00 +répartition répartition NOM f s 1.65 3.11 1.62 2.97 +répartitions répartition NOM f p 1.65 3.11 0.03 0.14 +réparé réparer VER m s 67.70 25.14 9.35 2.97 par:pas; +réparée réparer VER f s 67.70 25.14 2.38 1.08 par:pas; +réparées réparer VER f p 67.70 25.14 0.42 0.88 par:pas; +réparés réparer VER m p 67.70 25.14 0.34 0.34 par:pas; +répercussion répercussion NOM f s 1.05 1.69 0.11 0.68 +répercussions répercussion NOM f p 1.05 1.69 0.94 1.01 +répercuta répercuter VER 0.35 7.91 0.00 0.34 ind:pas:3s; +répercutaient répercuter VER 0.35 7.91 0.00 0.74 ind:imp:3p; +répercutait répercuter VER 0.35 7.91 0.01 1.08 ind:imp:3s; +répercutant répercuter VER 0.35 7.91 0.00 0.74 par:pre; +répercute répercuter VER 0.35 7.91 0.25 1.22 ind:pre:3s; +répercutent répercuter VER 0.35 7.91 0.03 0.47 ind:pre:3p; +répercuter répercuter VER 0.35 7.91 0.04 0.74 inf; +répercuterait répercuter VER 0.35 7.91 0.00 0.14 cnd:pre:3s; +répercuteront répercuter VER 0.35 7.91 0.01 0.00 ind:fut:3p; +répercutons répercuter VER 0.35 7.91 0.00 0.07 ind:pre:1p; +répercutèrent répercuter VER 0.35 7.91 0.00 0.07 ind:pas:3p; +répercuté répercuter VER m s 0.35 7.91 0.00 1.42 par:pas; +répercutée répercuter VER f s 0.35 7.91 0.00 0.41 par:pas; +répercutées répercuter VER f p 0.35 7.91 0.00 0.20 par:pas; +répercutés répercuter VER m p 0.35 7.91 0.00 0.27 par:pas; +répertoire répertoire NOM m s 2.17 5.68 2.04 5.34 +répertoires répertoire NOM m p 2.17 5.68 0.14 0.34 +répertoriant répertorier VER 1.73 2.43 0.03 0.00 par:pre; +répertorier répertorier VER 1.73 2.43 0.14 0.34 inf; +répertorié répertorier VER m s 1.73 2.43 0.50 0.41 par:pas; +répertoriée répertorier VER f s 1.73 2.43 0.21 0.41 par:pas; +répertoriées répertorier VER f p 1.73 2.43 0.52 0.41 par:pas; +répertoriés répertorier VER m p 1.73 2.43 0.34 0.88 par:pas; +rupestre rupestre ADJ s 0.20 0.47 0.14 0.20 +rupestres rupestre ADJ p 0.20 0.47 0.06 0.27 +rupin rupin ADJ m s 0.34 1.28 0.32 0.54 +rupinasse rupiner VER 0.00 0.14 0.00 0.07 sub:imp:1s; +rupine rupin ADJ f s 0.34 1.28 0.00 0.27 +rupines rupin NOM f p 0.68 1.69 0.00 0.07 +rupiniez rupiner VER 0.00 0.14 0.00 0.07 ind:imp:2p; +rupins rupin NOM m p 0.68 1.69 0.43 1.22 +répit répit NOM m s 3.87 11.76 3.86 11.01 +répits répit NOM m p 3.87 11.76 0.01 0.74 +réplication réplication NOM f s 0.23 0.00 0.23 0.00 +répliqua répliquer VER 1.53 17.91 0.19 7.50 ind:pas:3s; +répliquai répliquer VER 1.53 17.91 0.00 1.42 ind:pas:1s; +répliquaient répliquer VER 1.53 17.91 0.00 0.41 ind:imp:3p; +répliquais répliquer VER 1.53 17.91 0.01 0.14 ind:imp:1s;ind:imp:2s; +répliquait répliquer VER 1.53 17.91 0.02 1.62 ind:imp:3s; +répliquant répliquer VER 1.53 17.91 0.04 0.07 par:pre; +réplique réplique NOM f s 8.94 16.82 6.16 12.77 +répliquent répliquer VER 1.53 17.91 0.07 0.07 ind:pre:3p; +répliquer répliquer VER 1.53 17.91 0.42 1.15 inf; +répliquera répliquer VER 1.53 17.91 0.01 0.07 ind:fut:3s; +répliquerons répliquer VER 1.53 17.91 0.02 0.00 ind:fut:1p; +répliqueront répliquer VER 1.53 17.91 0.01 0.00 ind:fut:3p; +répliques réplique NOM f p 8.94 16.82 2.78 4.05 +répliquât répliquer VER 1.53 17.91 0.00 0.14 sub:imp:3s; +répliquèrent répliquer VER 1.53 17.91 0.01 0.07 ind:pas:3p; +répliqué répliquer VER m s 1.53 17.91 0.37 3.38 par:pas; +répond répondre VER 251.57 466.76 27.42 51.55 ind:pre:3s; +répondîmes répondre VER 251.57 466.76 0.10 0.07 ind:pas:1p; +répondît répondre VER 251.57 466.76 0.00 1.15 sub:imp:3s; +répondaient répondre VER 251.57 466.76 0.65 5.95 ind:imp:3p; +répondais répondre VER 251.57 466.76 1.93 7.70 ind:imp:1s;ind:imp:2s; +répondait répondre VER 251.57 466.76 4.18 45.14 ind:imp:3s; +répondant répondre VER 251.57 466.76 0.99 9.59 par:pre; +répondants répondant NOM m p 0.25 1.82 0.03 0.27 +réponde répondre VER 251.57 466.76 2.96 4.39 sub:pre:1s;sub:pre:3s; +répondent répondre VER 251.57 466.76 5.96 6.82 ind:pre:3p; +répondes répondre VER 251.57 466.76 1.20 0.34 sub:pre:2s; +répondeur répondeur NOM m s 7.95 1.55 7.76 1.49 +répondeurs répondeur NOM m p 7.95 1.55 0.18 0.07 +répondeuse répondeur ADJ f s 0.20 0.07 0.01 0.00 +répondez répondre VER 251.57 466.76 31.77 3.65 imp:pre:2p;ind:pre:2p; +répondiez répondre VER 251.57 466.76 0.93 0.41 ind:imp:2p; +répondions répondre VER 251.57 466.76 0.04 0.41 ind:imp:1p;sub:pre:1p; +répondirent répondre VER 251.57 466.76 0.16 2.91 ind:pas:3p; +répondis répondre VER 251.57 466.76 0.73 20.74 ind:pas:1s; +répondit répondre VER 251.57 466.76 2.94 107.30 ind:pas:3s; +répondons répondre VER 251.57 466.76 0.51 0.95 imp:pre:1p;ind:pre:1p; +répondra répondre VER 251.57 466.76 3.42 2.23 ind:fut:3s; +répondrai répondre VER 251.57 466.76 4.30 2.23 ind:fut:1s; +répondraient répondre VER 251.57 466.76 0.28 0.27 cnd:pre:3p; +répondrais répondre VER 251.57 466.76 1.06 0.95 cnd:pre:1s;cnd:pre:2s; +répondrait répondre VER 251.57 466.76 0.77 3.04 cnd:pre:3s; +répondras répondre VER 251.57 466.76 0.67 0.27 ind:fut:2s; +répondre répondre VER 251.57 466.76 57.76 98.58 inf;; +répondrez répondre VER 251.57 466.76 0.94 0.61 ind:fut:2p; +répondriez répondre VER 251.57 466.76 0.24 0.34 cnd:pre:2p; +répondrons répondre VER 251.57 466.76 0.77 0.07 ind:fut:1p; +répondront répondre VER 251.57 466.76 0.37 0.27 ind:fut:3p; +réponds répondre VER 251.57 466.76 63.59 28.65 imp:pre:2s;ind:pre:1s;ind:pre:2s; +répondu répondre VER m s 251.57 466.76 34.90 60.14 par:pas; +répondues répondre VER f p 251.57 466.76 0.02 0.07 par:pas; +répons répons NOM m 0.04 0.68 0.04 0.68 +réponse réponse NOM f s 97.06 99.93 79.19 83.72 +réponses réponse NOM f p 97.06 99.93 17.87 16.22 +répresseur répresseur NOM m s 0.01 0.00 0.01 0.00 +répressif répressif ADJ m s 0.60 0.47 0.32 0.20 +répression répression NOM f s 2.49 4.05 2.49 3.72 +répressions répression NOM f p 2.49 4.05 0.00 0.34 +répressive répressif ADJ f s 0.60 0.47 0.24 0.27 +répressives répressif ADJ f p 0.60 0.47 0.05 0.00 +réprima réprimer VER 2.71 11.08 0.00 1.69 ind:pas:3s; +réprimai réprimer VER 2.71 11.08 0.00 0.07 ind:pas:1s; +réprimaient réprimer VER 2.71 11.08 0.01 0.07 ind:imp:3p; +réprimais réprimer VER 2.71 11.08 0.00 0.14 ind:imp:1s; +réprimait réprimer VER 2.71 11.08 0.01 0.20 ind:imp:3s; +réprimanda réprimander VER 1.08 1.49 0.00 0.14 ind:pas:3s; +réprimandait réprimander VER 1.08 1.49 0.00 0.14 ind:imp:3s; +réprimande réprimande NOM f s 0.34 1.96 0.23 0.81 +réprimander réprimander VER 1.08 1.49 0.55 0.68 inf; +réprimandes réprimande NOM f p 0.34 1.96 0.11 1.15 +réprimandiez réprimander VER 1.08 1.49 0.01 0.00 ind:imp:2p; +réprimandé réprimander VER m s 1.08 1.49 0.35 0.14 par:pas; +réprimandée réprimander VER f s 1.08 1.49 0.02 0.07 par:pas; +réprimant réprimer VER 2.71 11.08 0.03 0.88 par:pre; +réprime réprimer VER 2.71 11.08 0.39 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réprimer réprimer VER 2.71 11.08 0.94 4.26 inf; +réprimerai réprimer VER 2.71 11.08 0.01 0.00 ind:fut:1s; +réprimerait réprimer VER 2.71 11.08 0.00 0.07 cnd:pre:3s; +réprimerez réprimer VER 2.71 11.08 0.01 0.00 ind:fut:2p; +réprimâmes réprimer VER 2.71 11.08 0.00 0.14 ind:pas:1p; +réprimèrent réprimer VER 2.71 11.08 0.00 0.14 ind:pas:3p; +réprimé réprimer VER m s 2.71 11.08 0.28 1.35 par:pas; +réprimée réprimer VER f s 2.71 11.08 0.47 0.47 par:pas; +réprimées réprimer VER f p 2.71 11.08 0.38 0.20 par:pas; +réprimés réprimer VER m p 2.71 11.08 0.18 0.41 par:pas; +réprobateur réprobateur ADJ m s 0.01 2.43 0.00 1.82 +réprobateurs réprobateur ADJ m p 0.01 2.43 0.00 0.27 +réprobation réprobation NOM f s 0.04 5.27 0.04 5.27 +réprobatrice réprobateur ADJ f s 0.01 2.43 0.01 0.34 +réprouvais réprouver VER 1.25 2.64 0.00 0.07 ind:imp:1s; +réprouvait réprouver VER 1.25 2.64 0.12 0.74 ind:imp:3s; +réprouvant réprouver VER 1.25 2.64 0.00 0.14 par:pre; +réprouve réprouver VER 1.25 2.64 0.49 0.54 ind:pre:1s;ind:pre:3s; +réprouvent réprouver VER 1.25 2.64 0.23 0.07 ind:pre:3p; +réprouver réprouver VER 1.25 2.64 0.05 0.27 inf; +réprouverait réprouver VER 1.25 2.64 0.00 0.07 cnd:pre:3s; +réprouveront réprouver VER 1.25 2.64 0.01 0.00 ind:fut:3p; +réprouves réprouver VER 1.25 2.64 0.01 0.20 ind:pre:2s; +réprouvez réprouver VER 1.25 2.64 0.19 0.07 imp:pre:2p;ind:pre:2p; +réprouvons réprouver VER 1.25 2.64 0.02 0.00 ind:pre:1p; +réprouvât réprouver VER 1.25 2.64 0.00 0.14 sub:imp:3s; +réprouvé réprouvé NOM m s 0.00 1.42 0.00 0.41 +réprouvées réprouver VER f p 1.25 2.64 0.14 0.07 par:pas; +réprouvés réprouvé NOM m p 0.00 1.42 0.00 0.95 +répréhensible répréhensible ADJ s 0.69 1.55 0.65 1.22 +répréhensibles répréhensible ADJ p 0.69 1.55 0.04 0.34 +rupteur rupteur NOM m s 0.02 0.00 0.02 0.00 +répète répéter VER 98.30 200.14 45.14 37.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +répètent répéter VER 98.30 200.14 1.58 3.51 ind:pre:3p; +répètes répéter VER 98.30 200.14 2.91 0.81 ind:pre:2s;sub:pre:2s; +rupture rupture NOM f s 8.39 21.49 7.87 19.73 +ruptures rupture NOM f p 8.39 21.49 0.52 1.76 +républicain républicain ADJ m s 4.14 8.85 1.92 2.84 +républicaine républicain ADJ f s 4.14 8.85 1.22 3.18 +républicaines républicain ADJ f p 4.14 8.85 0.09 1.42 +républicains républicain NOM m p 4.19 3.38 3.67 2.77 +république république NOM f s 3.69 21.96 3.44 20.41 +républiques république NOM f p 3.69 21.96 0.25 1.55 +répudiant répudier VER 1.33 1.82 0.00 0.07 par:pre; +répudiation répudiation NOM f s 0.02 0.34 0.02 0.34 +répudie répudier VER 1.33 1.82 0.33 0.34 ind:pre:1s;ind:pre:3s; +répudier répudier VER 1.33 1.82 0.05 0.47 inf; +répudiera répudier VER 1.33 1.82 0.14 0.00 ind:fut:3s; +répudierai répudier VER 1.33 1.82 0.14 0.00 ind:fut:1s; +répudies répudier VER 1.33 1.82 0.00 0.07 ind:pre:2s; +répudié répudier VER m s 1.33 1.82 0.14 0.27 par:pas; +répudiée répudier VER f s 1.33 1.82 0.54 0.47 par:pas; +répudiées répudier VER f p 1.33 1.82 0.00 0.07 par:pas; +répudiés répudier VER m p 1.33 1.82 0.00 0.07 par:pas; +répugna répugner VER 4.55 10.34 0.00 0.07 ind:pas:3s; +répugnai répugner VER 4.55 10.34 0.00 0.07 ind:pas:1s; +répugnaient répugner VER 4.55 10.34 0.01 0.88 ind:imp:3p; +répugnais répugner VER 4.55 10.34 0.10 0.74 ind:imp:1s; +répugnait répugner VER 4.55 10.34 0.24 3.51 ind:imp:3s; +répugnance répugnance NOM f s 0.56 7.91 0.56 6.96 +répugnances répugnance NOM f p 0.56 7.91 0.00 0.95 +répugnant répugnant ADJ m s 11.59 8.58 7.47 3.04 +répugnante répugnant ADJ f s 11.59 8.58 2.46 3.31 +répugnantes répugnant ADJ f p 11.59 8.58 0.57 1.35 +répugnants répugnant ADJ m p 11.59 8.58 1.09 0.88 +répugne répugner VER 4.55 10.34 2.59 2.70 ind:pre:1s;ind:pre:3s; +répugnent répugner VER 4.55 10.34 0.30 0.34 ind:pre:3p; +répugner répugner VER 4.55 10.34 0.01 0.20 inf; +répugnerait répugner VER 4.55 10.34 0.01 0.07 cnd:pre:3s; +répugneront répugner VER 4.55 10.34 0.00 0.07 ind:fut:3p; +répugnes répugner VER 4.55 10.34 0.22 0.00 ind:pre:2s; +répugnez répugner VER 4.55 10.34 0.32 0.07 imp:pre:2p;ind:pre:2p; +répugniez répugner VER 4.55 10.34 0.02 0.07 ind:imp:2p; +répugnons répugner VER 4.55 10.34 0.10 0.07 ind:pre:1p; +répugnât répugner VER 4.55 10.34 0.00 0.27 sub:imp:3s; +répugné répugner VER m s 4.55 10.34 0.01 0.47 par:pas; +répugnée répugner VER f s 4.55 10.34 0.01 0.07 par:pas; +répulsif répulsif ADJ m s 0.08 0.00 0.03 0.00 +répulsion répulsion NOM f s 0.56 5.27 0.56 4.66 +répulsions répulsion NOM f p 0.56 5.27 0.00 0.61 +répulsive répulsif ADJ f s 0.08 0.00 0.04 0.00 +répéta répéter VER 98.30 200.14 0.15 41.62 ind:pas:3s; +répétai répéter VER 98.30 200.14 0.02 2.91 ind:pas:1s; +répétaient répéter VER 98.30 200.14 0.47 4.46 ind:imp:3p; +réputaient réputer VER 2.10 3.65 0.00 0.07 ind:imp:3p; +répétais répéter VER 98.30 200.14 1.02 4.12 ind:imp:1s;ind:imp:2s; +répétait répéter VER 98.30 200.14 3.01 33.18 ind:imp:3s; +réputait réputer VER 2.10 3.65 0.00 0.14 ind:imp:3s; +répétant répéter VER 98.30 200.14 0.85 16.55 par:pre; +réputation réputation NOM f s 21.40 22.50 21.14 22.16 +réputations réputation NOM f p 21.40 22.50 0.26 0.34 +répute réputer VER 2.10 3.65 0.00 0.07 ind:pre:3s; +réputent réputer VER 2.10 3.65 0.00 0.14 ind:pre:3p; +répéter répéter VER 98.30 200.14 22.20 30.88 ind:pre:2p;inf; +réputer réputer VER 2.10 3.65 0.00 0.14 inf; +répétera répéter VER 98.30 200.14 0.59 0.74 ind:fut:3s; +répéterai répéter VER 98.30 200.14 2.63 0.95 ind:fut:1s; +répéteraient répéter VER 98.30 200.14 0.00 0.34 cnd:pre:3p; +répéterais répéter VER 98.30 200.14 0.16 0.34 cnd:pre:1s;cnd:pre:2s; +répéterait répéter VER 98.30 200.14 0.02 0.34 cnd:pre:3s; +répéteras répéter VER 98.30 200.14 0.36 0.20 ind:fut:2s; +répéterez répéter VER 98.30 200.14 0.11 0.20 ind:fut:2p; +répéteriez répéter VER 98.30 200.14 0.03 0.00 cnd:pre:2p; +répétez répéter VER 98.30 200.14 7.95 1.01 imp:pre:2p;ind:pre:2p; +répétiez répéter VER 98.30 200.14 0.67 0.20 ind:imp:2p; +répétions répéter VER 98.30 200.14 0.16 0.81 ind:imp:1p; +répétiteur répétiteur NOM m s 0.07 1.15 0.05 0.88 +répétiteurs répétiteur NOM m p 0.07 1.15 0.00 0.14 +répétitif répétitif ADJ m s 0.90 0.88 0.52 0.27 +répétitifs répétitif ADJ m p 0.90 0.88 0.03 0.14 +répétition répétition NOM f s 15.06 12.97 11.31 9.80 +répétitions répétition NOM f p 15.06 12.97 3.75 3.18 +répétitive répétitif ADJ f s 0.90 0.88 0.27 0.14 +répétitives répétitif ADJ f p 0.90 0.88 0.08 0.34 +répétitrice répétiteur NOM f s 0.07 1.15 0.03 0.14 +répétons répéter VER 98.30 200.14 1.78 0.34 imp:pre:1p;ind:pre:1p; +répétât répéter VER 98.30 200.14 0.00 0.27 sub:imp:3s; +répétèrent répéter VER 98.30 200.14 0.00 0.81 ind:pas:3p; +répété répéter VER m s 98.30 200.14 5.35 13.45 par:pas; +réputé réputer VER m s 2.10 3.65 1.21 1.42 par:pas; +répétée répéter VER f s 98.30 200.14 0.44 1.62 par:pas; +réputée réputer VER f s 2.10 3.65 0.54 0.95 par:pas; +répétées répéter VER f p 98.30 200.14 0.33 1.55 par:pas; +réputées réputer VER f p 2.10 3.65 0.08 0.20 par:pas; +répétés répéter VER m p 98.30 200.14 0.36 1.62 par:pas; +réputés réputer VER m p 2.10 3.65 0.27 0.54 par:pas; +réquisition réquisition NOM f s 0.52 2.77 0.48 1.82 +réquisitionnais réquisitionner VER 2.12 4.59 0.00 0.07 ind:imp:1s; +réquisitionnait réquisitionner VER 2.12 4.59 0.00 0.34 ind:imp:3s; +réquisitionnant réquisitionner VER 2.12 4.59 0.00 0.27 par:pre; +réquisitionne réquisitionner VER 2.12 4.59 0.38 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réquisitionner réquisitionner VER 2.12 4.59 0.53 0.68 inf; +réquisitionnez réquisitionner VER 2.12 4.59 0.17 0.07 imp:pre:2p; +réquisitionnons réquisitionner VER 2.12 4.59 0.03 0.00 imp:pre:1p;ind:pre:1p; +réquisitionné réquisitionner VER m s 2.12 4.59 0.80 1.42 par:pas; +réquisitionnée réquisitionner VER f s 2.12 4.59 0.04 0.34 par:pas; +réquisitionnées réquisitionner VER f p 2.12 4.59 0.01 0.61 par:pas; +réquisitionnés réquisitionner VER m p 2.12 4.59 0.16 0.61 par:pas; +réquisitions réquisition NOM f p 0.52 2.77 0.04 0.95 +réquisitoire réquisitoire NOM m s 0.40 2.50 0.39 2.03 +réquisitoires réquisitoire NOM m p 0.40 2.50 0.01 0.47 +rural rural ADJ m s 1.19 3.51 0.66 1.15 +rurale rural ADJ f s 1.19 3.51 0.23 0.88 +rurales rural ADJ f p 1.19 3.51 0.25 0.34 +ruraux rural ADJ m p 1.19 3.51 0.05 1.15 +rus ru NOM m p 0.26 0.88 0.11 0.27 +rusa ruser VER 3.12 4.66 0.03 0.14 ind:pas:3s; +rusais ruser VER 3.12 4.66 0.01 0.07 ind:imp:1s; +rusait ruser VER 3.12 4.66 0.02 0.14 ind:imp:3s; +rusant ruser VER 3.12 4.66 0.02 0.07 par:pre; +ruse ruse NOM f s 9.98 19.93 8.09 13.31 +réseau réseau NOM m s 14.41 18.92 13.23 14.66 +réseaux réseau NOM m p 14.41 18.92 1.18 4.26 +résection résection NOM f s 0.18 0.14 0.18 0.14 +rusent ruser VER 3.12 4.66 0.01 0.07 ind:pre:3p; +ruser ruser VER 3.12 4.66 0.61 2.03 inf; +rusera ruser VER 3.12 4.66 0.00 0.07 ind:fut:3s; +ruserai ruser VER 3.12 4.66 0.00 0.14 ind:fut:1s; +ruserais ruser VER 3.12 4.66 0.00 0.07 cnd:pre:1s; +réserva réserver VER 34.33 47.57 0.01 0.88 ind:pas:3s; +réservai réserver VER 34.33 47.57 0.00 0.14 ind:pas:1s; +réservaient réserver VER 34.33 47.57 0.04 1.42 ind:imp:3p; +réservais réserver VER 34.33 47.57 0.32 0.61 ind:imp:1s;ind:imp:2s; +réservait réserver VER 34.33 47.57 0.37 5.95 ind:imp:3s; +réservant réserver VER 34.33 47.57 0.01 2.03 par:pre; +réservataire réservataire ADJ s 0.00 0.07 0.00 0.07 +réservation réservation NOM f s 4.99 0.41 3.69 0.27 +réservations réservation NOM f p 4.99 0.41 1.29 0.14 +réserve réserve NOM f s 21.11 51.55 14.47 38.99 +réservent réserver VER 34.33 47.57 0.32 0.95 ind:pre:3p; +réserver réserver VER 34.33 47.57 4.40 4.26 inf; +réservera réserver VER 34.33 47.57 0.07 0.07 ind:fut:3s; +réserverai réserver VER 34.33 47.57 0.12 0.07 ind:fut:1s; +réserverait réserver VER 34.33 47.57 0.02 0.20 cnd:pre:3s; +réserveriez réserver VER 34.33 47.57 0.01 0.00 cnd:pre:2p; +réserveront réserver VER 34.33 47.57 0.00 0.07 ind:fut:3p; +réserves réserve NOM f p 21.11 51.55 6.64 12.57 +réservez réserver VER 34.33 47.57 1.05 0.20 imp:pre:2p;ind:pre:2p; +réserviez réserver VER 34.33 47.57 0.05 0.00 ind:imp:2p; +réservions réserver VER 34.33 47.57 0.00 0.27 ind:imp:1p; +réserviste réserviste NOM s 0.48 1.42 0.16 0.54 +réservistes réserviste NOM p 0.48 1.42 0.33 0.88 +réservoir réservoir NOM m s 8.53 5.95 6.83 4.59 +réservoirs réservoir NOM m p 8.53 5.95 1.70 1.35 +réservons réserver VER 34.33 47.57 0.47 0.34 imp:pre:1p;ind:pre:1p; +réservât réserver VER 34.33 47.57 0.00 0.07 sub:imp:3s; +réservèrent réserver VER 34.33 47.57 0.00 0.07 ind:pas:3p; +réservé réserver VER m s 34.33 47.57 14.65 11.55 par:pas; +réservée réserver VER f s 34.33 47.57 2.69 6.96 par:pas; +réservées réserver VER f p 34.33 47.57 0.85 2.77 par:pas; +réservés réserver VER m p 34.33 47.57 0.95 3.45 par:pas; +ruses ruse NOM f p 9.98 19.93 1.89 6.62 +rush rush NOM m s 2.02 0.88 1.04 0.54 +rushes rush NOM m p 2.02 0.88 0.98 0.34 +résidaient résider VER 4.95 6.82 0.04 0.41 ind:imp:3p; +résidais résider VER 4.95 6.82 0.06 0.07 ind:imp:1s;ind:imp:2s; +résidait résider VER 4.95 6.82 0.29 1.96 ind:imp:3s; +résidant résider VER 4.95 6.82 0.15 0.95 par:pre; +réside résider VER 4.95 6.82 3.51 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résidence résidence NOM f s 8.04 10.95 7.56 8.85 +résidences résidence NOM f p 8.04 10.95 0.48 2.09 +résident résident NOM m s 1.66 1.49 0.48 0.54 +résidente résident NOM f s 1.66 1.49 0.11 0.00 +résidentiel résidentiel ADJ m s 1.91 1.35 0.70 0.61 +résidentielle résidentiel ADJ f s 1.91 1.35 0.33 0.34 +résidentielles résidentiel ADJ f p 1.91 1.35 0.69 0.20 +résidentiels résidentiel ADJ m p 1.91 1.35 0.19 0.20 +résidents résident NOM m p 1.66 1.49 1.08 0.95 +résider résider VER 4.95 6.82 0.35 1.08 inf; +résidera résider VER 4.95 6.82 0.02 0.00 ind:fut:3s; +résiderez résider VER 4.95 6.82 0.01 0.00 ind:fut:2p; +résides résider VER 4.95 6.82 0.05 0.00 ind:pre:2s; +résidez résider VER 4.95 6.82 0.11 0.00 ind:pre:2p; +résidons résider VER 4.95 6.82 0.00 0.07 ind:pre:1p; +résidé résider VER m s 4.95 6.82 0.04 0.20 par:pas; +résidu résidu NOM m s 2.72 2.70 0.89 1.76 +résiduel résiduel ADJ m s 0.55 0.27 0.11 0.07 +résiduelle résiduel ADJ f s 0.55 0.27 0.26 0.14 +résiduelles résiduel ADJ f p 0.55 0.27 0.07 0.00 +résiduels résiduel ADJ m p 0.55 0.27 0.12 0.07 +résidus résidu NOM m p 2.72 2.70 1.83 0.95 +résigna résigner VER 3.84 20.34 0.00 1.28 ind:pas:3s; +résignai résigner VER 3.84 20.34 0.00 0.81 ind:pas:1s; +résignaient résigner VER 3.84 20.34 0.00 0.41 ind:imp:3p; +résignais résigner VER 3.84 20.34 0.00 0.74 ind:imp:1s; +résignait résigner VER 3.84 20.34 0.01 1.76 ind:imp:3s; +résignant résigner VER 3.84 20.34 0.00 0.41 par:pre; +résignassent résigner VER 3.84 20.34 0.00 0.07 sub:imp:3p; +résignation résignation NOM f s 0.98 9.93 0.98 9.86 +résignations résignation NOM f p 0.98 9.93 0.00 0.07 +résigne résigner VER 3.84 20.34 1.07 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résignent résigner VER 3.84 20.34 0.03 0.27 ind:pre:3p; +résigner résigner VER 3.84 20.34 1.50 5.68 inf; +résignera résigner VER 3.84 20.34 0.00 0.07 ind:fut:3s; +résignerais résigner VER 3.84 20.34 0.00 0.07 cnd:pre:1s; +résignerait résigner VER 3.84 20.34 0.00 0.20 cnd:pre:3s; +résigneront résigner VER 3.84 20.34 0.01 0.00 ind:fut:3p; +résignez résigner VER 3.84 20.34 0.22 0.07 imp:pre:2p;ind:pre:2p; +résignions résigner VER 3.84 20.34 0.00 0.14 ind:imp:1p; +résignâmes résigner VER 3.84 20.34 0.00 0.14 ind:pas:1p; +résignât résigner VER 3.84 20.34 0.00 0.20 sub:imp:3s; +résignèrent résigner VER 3.84 20.34 0.00 0.14 ind:pas:3p; +résigné résigner VER m s 3.84 20.34 0.67 3.31 par:pas; +résignée résigner VER f s 3.84 20.34 0.16 1.89 par:pas; +résignées résigner VER f p 3.84 20.34 0.01 0.34 par:pas; +résignés résigner VER m p 3.84 20.34 0.15 0.74 par:pas; +résilia résilier VER 0.72 0.27 0.00 0.07 ind:pas:3s; +résiliable résiliable ADJ s 0.01 0.07 0.01 0.07 +résiliation résiliation NOM f s 0.07 0.00 0.07 0.00 +résilie résilier VER 0.72 0.27 0.06 0.00 ind:pre:1s;ind:pre:3s; +résilience résilience NOM f s 0.02 0.00 0.02 0.00 +résilier résilier VER 0.72 0.27 0.20 0.07 inf; +résilierait résilier VER 0.72 0.27 0.01 0.00 cnd:pre:3s; +résilié résilier VER m s 0.72 0.27 0.40 0.07 par:pas; +résiliée résilier VER f s 0.72 0.27 0.04 0.00 par:pas; +résiliées résilier VER f p 0.72 0.27 0.01 0.07 par:pas; +résille résille NOM f s 0.36 1.96 0.27 1.89 +résilles résille NOM f p 0.36 1.96 0.09 0.07 +résine résine NOM f s 0.84 5.54 0.83 5.20 +résines résine NOM f p 0.84 5.54 0.01 0.34 +résineuse résineux ADJ f s 0.13 1.01 0.01 0.61 +résineuses résineux ADJ f p 0.13 1.01 0.00 0.27 +résineux résineux ADJ m s 0.13 1.01 0.11 0.14 +résiné résiné NOM m s 0.00 2.43 0.00 2.43 +résinée résiner VER f s 0.00 0.07 0.00 0.07 par:pas; +résipiscence résipiscence NOM f s 0.00 0.47 0.00 0.47 +résista résister VER 38.91 52.16 0.17 2.16 ind:pas:3s; +résistai résister VER 38.91 52.16 0.00 0.47 ind:pas:1s; +résistaient résister VER 38.91 52.16 0.07 1.15 ind:imp:3p; +résistais résister VER 38.91 52.16 0.23 0.20 ind:imp:1s;ind:imp:2s; +résistait résister VER 38.91 52.16 0.38 5.68 ind:imp:3s; +résistance résistance NOM f s 13.23 56.49 12.99 54.32 +résistances résistance NOM f p 13.23 56.49 0.23 2.16 +résistant résistant ADJ m s 3.63 3.58 1.77 1.15 +résistante résistant ADJ f s 3.63 3.58 0.78 0.81 +résistantes résistant ADJ f p 3.63 3.58 0.42 0.20 +résistants résistant NOM m p 1.38 6.15 0.86 4.59 +résiste résister VER 38.91 52.16 8.18 9.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résistent résister VER 38.91 52.16 1.35 1.89 ind:pre:3p;sub:pre:3p; +résister résister VER 38.91 52.16 17.54 19.93 inf; +résistera résister VER 38.91 52.16 1.93 0.54 ind:fut:3s; +résisterai résister VER 38.91 52.16 0.28 0.47 ind:fut:1s; +résisteraient résister VER 38.91 52.16 0.18 0.61 cnd:pre:3p; +résisterais résister VER 38.91 52.16 0.08 0.14 cnd:pre:1s;cnd:pre:2s; +résisterait résister VER 38.91 52.16 0.23 1.22 cnd:pre:3s; +résisteras résister VER 38.91 52.16 0.05 0.00 ind:fut:2s; +résisterez résister VER 38.91 52.16 0.06 0.00 ind:fut:2p; +résisteriez résister VER 38.91 52.16 0.04 0.00 cnd:pre:2p; +résisterions résister VER 38.91 52.16 0.01 0.00 cnd:pre:1p; +résisterons résister VER 38.91 52.16 0.16 0.00 ind:fut:1p; +résisteront résister VER 38.91 52.16 0.22 0.20 ind:fut:3p; +résistes résister VER 38.91 52.16 0.83 0.07 ind:pre:2s;sub:pre:2s; +résistez résister VER 38.91 52.16 1.43 0.20 imp:pre:2p;ind:pre:2p; +résistible résistible ADJ s 0.01 0.00 0.01 0.00 +résistiez résister VER 38.91 52.16 0.00 0.07 ind:imp:2p; +résistions résister VER 38.91 52.16 0.02 0.07 ind:imp:1p; +résistons résister VER 38.91 52.16 0.04 0.07 ind:pre:1p; +résistât résister VER 38.91 52.16 0.00 0.41 sub:imp:3s; +résistèrent résister VER 38.91 52.16 0.01 0.47 ind:pas:3p; +résisté résister VER m s 38.91 52.16 5.16 5.74 par:pas; +résolu résoudre VER m s 40.95 36.96 9.28 11.82 par:pas; +résoluble résoluble ADJ m s 0.03 0.00 0.03 0.00 +résolue résolu ADJ f s 6.05 11.28 2.63 4.59 +résolues résolu ADJ f p 6.05 11.28 0.90 0.61 +résolument résolument ADV 0.39 5.34 0.39 5.34 +résolurent résoudre VER 40.95 36.96 0.00 0.07 ind:pas:3p; +résolus résoudre VER m p 40.95 36.96 1.23 3.04 ind:pas:1s;ind:pas:2s;par:pas; +résolut résoudre VER 40.95 36.96 0.13 3.11 ind:pas:3s; +résolution résolution NOM f s 4.51 14.39 3.24 10.47 +résolutions résolution NOM f p 4.51 14.39 1.27 3.92 +résolvaient résoudre VER 40.95 36.96 0.03 0.34 ind:imp:3p; +résolvais résoudre VER 40.95 36.96 0.02 0.07 ind:imp:1s;ind:imp:2s; +résolvait résoudre VER 40.95 36.96 0.13 1.15 ind:imp:3s; +résolvant résoudre VER 40.95 36.96 0.01 0.20 par:pre; +résolve résoudre VER 40.95 36.96 0.58 0.14 sub:pre:1s;sub:pre:3s; +résolvent résoudre VER 40.95 36.96 0.55 0.27 ind:pre:3p; +résolves résoudre VER 40.95 36.96 0.05 0.00 sub:pre:2s; +résolvez résoudre VER 40.95 36.96 0.36 0.00 imp:pre:2p;ind:pre:2p; +résolviez résoudre VER 40.95 36.96 0.04 0.07 ind:imp:2p; +résolvons résoudre VER 40.95 36.96 0.08 0.00 imp:pre:1p;ind:pre:1p; +rusâmes ruser VER 3.12 4.66 0.00 0.07 ind:pas:1p; +résonance résonance NOM f s 0.71 5.27 0.69 3.72 +résonances résonance NOM f p 0.71 5.27 0.03 1.55 +résonateur résonateur NOM m s 0.13 0.00 0.13 0.00 +résonna résonner VER 5.07 31.96 0.24 4.26 ind:pas:3s; +résonnaient résonner VER 5.07 31.96 0.16 4.53 ind:imp:3p; +résonnait résonner VER 5.07 31.96 0.64 7.09 ind:imp:3s; +résonnant résonner VER 5.07 31.96 0.14 0.74 par:pre; +résonnante résonnant ADJ f s 0.12 0.47 0.03 0.07 +résonnants résonnant ADJ m p 0.12 0.47 0.00 0.07 +résonne résonner VER 5.07 31.96 1.38 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résonnent résonner VER 5.07 31.96 1.11 2.70 ind:pre:3p; +résonner résonner VER 5.07 31.96 0.81 5.47 inf; +résonnera résonner VER 5.07 31.96 0.17 0.07 ind:fut:3s; +résonneraient résonner VER 5.07 31.96 0.02 0.07 cnd:pre:3p; +résonneront résonner VER 5.07 31.96 0.11 0.07 ind:fut:3p; +résonnez résonner VER 5.07 31.96 0.02 0.20 imp:pre:2p; +résonnèrent résonner VER 5.07 31.96 0.01 1.28 ind:pas:3p; +résonné résonner VER m s 5.07 31.96 0.27 0.88 par:pas; +résorba résorber VER 0.26 2.97 0.00 0.07 ind:pas:3s; +résorbable résorbable ADJ s 0.01 0.00 0.01 0.00 +résorbaient résorber VER 0.26 2.97 0.00 0.20 ind:imp:3p; +résorbait résorber VER 0.26 2.97 0.00 0.14 ind:imp:3s; +résorbant résorber VER 0.26 2.97 0.00 0.07 par:pre; +résorbe résorber VER 0.26 2.97 0.04 0.74 ind:pre:3s; +résorbent résorber VER 0.26 2.97 0.00 0.14 ind:pre:3p; +résorber résorber VER 0.26 2.97 0.06 0.54 inf; +résorberait résorber VER 0.26 2.97 0.00 0.07 cnd:pre:3s; +résorberons résorber VER 0.26 2.97 0.01 0.00 ind:fut:1p; +résorbé résorber VER m s 0.26 2.97 0.14 0.54 par:pas; +résorbée résorber VER f s 0.26 2.97 0.01 0.34 par:pas; +résorbés résorber VER m p 0.26 2.97 0.00 0.14 par:pas; +résorption résorption NOM f s 0.00 0.20 0.00 0.14 +résorptions résorption NOM f p 0.00 0.20 0.00 0.07 +résoudra résoudre VER 40.95 36.96 1.67 0.41 ind:fut:3s; +résoudrai résoudre VER 40.95 36.96 0.12 0.00 ind:fut:1s; +résoudraient résoudre VER 40.95 36.96 0.00 0.07 cnd:pre:3p; +résoudrais résoudre VER 40.95 36.96 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +résoudrait résoudre VER 40.95 36.96 0.32 0.41 cnd:pre:3s; +résoudras résoudre VER 40.95 36.96 0.05 0.00 ind:fut:2s; +résoudre résoudre VER 40.95 36.96 20.89 13.58 inf; +résoudrez résoudre VER 40.95 36.96 0.10 0.00 ind:fut:2p; +résoudrons résoudre VER 40.95 36.96 0.07 0.00 ind:fut:1p; +résoudront résoudre VER 40.95 36.96 0.47 0.00 ind:fut:3p; +résous résoudre VER 40.95 36.96 1.04 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +résout résoudre VER 40.95 36.96 3.38 1.82 ind:pre:3s; +russe russe ADJ s 32.27 48.51 24.85 35.34 +russes russe NOM p 35.44 40.27 19.76 24.73 +russifiant russifier VER 0.00 0.27 0.00 0.07 par:pre; +russification russification NOM f s 0.00 0.14 0.00 0.14 +russifié russifier VER m s 0.00 0.27 0.00 0.14 par:pas; +russifiée russifier VER f s 0.00 0.27 0.00 0.07 par:pas; +russo_allemand russo_allemand ADJ m s 0.00 0.14 0.00 0.07 +russo_allemand russo_allemand ADJ f s 0.00 0.14 0.00 0.07 +russo_américain russo_américain ADJ m s 0.00 0.07 0.00 0.07 +russo_japonais russo_japonais ADJ f s 0.00 0.20 0.00 0.20 +russo_polonais russo_polonais ADJ m 0.00 0.14 0.00 0.07 +russo_polonais russo_polonais ADJ f s 0.00 0.14 0.00 0.07 +russo_turque russo_turque ADJ f s 0.00 0.14 0.00 0.14 +russophone russophone ADJ m s 0.01 0.00 0.01 0.00 +russules russule NOM f p 0.00 0.14 0.00 0.14 +rustaud rustaud NOM m s 0.39 0.20 0.33 0.14 +rustaude rustaud ADJ f s 0.12 0.68 0.02 0.27 +rustaudes rustaud NOM f p 0.39 0.20 0.01 0.00 +rustauds rustaud NOM m p 0.39 0.20 0.05 0.07 +rusticité rusticité NOM f s 0.02 1.08 0.02 1.08 +rustine rustine NOM f s 0.10 1.69 0.08 0.95 +rustines rustine NOM f p 0.10 1.69 0.02 0.74 +rustique rustique ADJ s 1.29 6.22 0.95 4.26 +rustiques rustique ADJ p 1.29 6.22 0.34 1.96 +rustre rustre NOM s 2.26 1.28 1.63 0.74 +rustres rustre NOM p 2.26 1.28 0.63 0.54 +rusé rusé ADJ m s 3.27 4.80 2.46 2.77 +réséda réséda NOM m s 0.10 0.41 0.10 0.34 +résédas réséda NOM m p 0.10 0.41 0.00 0.07 +rusée rusé ADJ f s 3.27 4.80 0.52 0.95 +rusées ruser VER f p 3.12 4.66 0.13 0.00 par:pas; +résulta résulter VER 2.58 9.46 0.11 0.47 ind:pas:3s; +résultaient résulter VER 2.58 9.46 0.00 0.27 ind:imp:3p; +résultais résulter VER 2.58 9.46 0.00 0.07 ind:imp:1s; +résultait résulter VER 2.58 9.46 0.15 1.62 ind:imp:3s; +résultant résulter VER 2.58 9.46 0.42 0.74 par:pre; +résultante résultant ADJ f s 0.07 0.07 0.06 0.00 +résultantes résultante NOM f p 0.01 0.54 0.00 0.14 +résultat résultat NOM m s 59.47 38.38 25.15 27.43 +résultats résultat NOM m p 59.47 38.38 34.31 10.95 +résulte résulter VER 2.58 9.46 1.19 3.38 imp:pre:2s;ind:pre:3s; +résultent résulter VER 2.58 9.46 0.23 0.54 ind:pre:3p; +résulter résulter VER 2.58 9.46 0.26 0.81 inf; +résulteraient résulter VER 2.58 9.46 0.00 0.34 cnd:pre:3p; +résulterait résulter VER 2.58 9.46 0.13 0.47 cnd:pre:3s; +résulteront résulter VER 2.58 9.46 0.00 0.07 ind:fut:3p; +résulté résulter VER m s 2.58 9.46 0.09 0.54 par:pas; +résultées résulter VER f p 2.58 9.46 0.00 0.14 par:pas; +résuma résumer VER 7.48 14.53 0.01 0.68 ind:pas:3s; +résumai résumer VER 7.48 14.53 0.00 0.07 ind:pas:1s; +résumaient résumer VER 7.48 14.53 0.04 0.61 ind:imp:3p; +résumais résumer VER 7.48 14.53 0.00 0.27 ind:imp:1s; +résumait résumer VER 7.48 14.53 0.26 2.03 ind:imp:3s; +résumant résumer VER 7.48 14.53 0.00 0.68 par:pre; +résume résumer VER 7.48 14.53 3.50 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +résument résumer VER 7.48 14.53 0.18 0.68 ind:pre:3p; +résumer résumer VER 7.48 14.53 2.31 3.31 inf; +résumera résumer VER 7.48 14.53 0.04 0.14 ind:fut:3s; +résumerai résumer VER 7.48 14.53 0.02 0.27 ind:fut:1s; +résumerait résumer VER 7.48 14.53 0.04 0.07 cnd:pre:3s; +résumeriez résumer VER 7.48 14.53 0.00 0.07 cnd:pre:2p; +résumez résumer VER 7.48 14.53 0.08 0.00 imp:pre:2p;ind:pre:2p; +résumons résumer VER 7.48 14.53 0.38 0.54 imp:pre:1p;ind:pre:1p; +résumé résumé NOM m s 3.95 3.72 3.86 3.24 +résumée résumer VER f s 7.48 14.53 0.07 0.61 par:pas; +résumées résumer VER f p 7.48 14.53 0.02 0.27 par:pas; +résumés résumé NOM m p 3.95 3.72 0.09 0.47 +réséquer réséquer VER 0.01 0.07 0.01 0.07 inf; +résurgence résurgence NOM f s 0.46 1.08 0.46 0.88 +résurgences résurgence NOM f p 0.46 1.08 0.00 0.20 +résurgente résurgent ADJ f s 0.00 0.07 0.00 0.07 +résurrection résurrection NOM f s 4.29 8.11 4.15 7.50 +résurrections résurrection NOM f p 4.29 8.11 0.14 0.61 +rusés ruser VER m p 3.12 4.66 0.24 0.14 par:pas; +rut rut NOM m s 2.00 2.09 2.00 2.09 +rutabaga rutabaga NOM m s 0.26 1.49 0.24 0.74 +rutabagas rutabaga NOM m p 0.26 1.49 0.03 0.74 +rétabli rétablir VER m s 12.38 22.36 2.78 3.65 par:pas; +rétablie rétablir VER f s 12.38 22.36 1.55 1.42 par:pas; +rétablies rétablir VER f p 12.38 22.36 0.18 0.41 par:pas; +rétablir rétablir VER 12.38 22.36 5.19 11.15 inf; +rétablira rétablir VER 12.38 22.36 0.49 0.20 ind:fut:3s; +rétablirai rétablir VER 12.38 22.36 0.01 0.07 ind:fut:1s; +rétablirait rétablir VER 12.38 22.36 0.04 0.34 cnd:pre:3s; +rétabliras rétablir VER 12.38 22.36 0.15 0.00 ind:fut:2s; +rétablirent rétablir VER 12.38 22.36 0.00 0.07 ind:pas:3p; +rétablirez rétablir VER 12.38 22.36 0.02 0.00 ind:fut:2p; +rétablirons rétablir VER 12.38 22.36 0.06 0.07 ind:fut:1p; +rétabliront rétablir VER 12.38 22.36 0.01 0.07 ind:fut:3p; +rétablis rétablir VER m p 12.38 22.36 0.52 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +rétablissaient rétablir VER 12.38 22.36 0.00 0.34 ind:imp:3p; +rétablissais rétablir VER 12.38 22.36 0.00 0.07 ind:imp:1s; +rétablissait rétablir VER 12.38 22.36 0.01 0.88 ind:imp:3s; +rétablissant rétablir VER 12.38 22.36 0.03 0.54 par:pre; +rétablisse rétablir VER 12.38 22.36 0.26 0.07 sub:pre:1s;sub:pre:3s; +rétablissement rétablissement NOM m s 2.08 3.85 2.08 3.65 +rétablissements rétablissement NOM m p 2.08 3.85 0.00 0.20 +rétablissent rétablir VER 12.38 22.36 0.06 0.14 ind:pre:3p; +rétablisses rétablir VER 12.38 22.36 0.01 0.00 sub:pre:2s; +rétablissez rétablir VER 12.38 22.36 0.26 0.00 imp:pre:2p;ind:pre:2p; +rétablissons rétablir VER 12.38 22.36 0.16 0.34 imp:pre:1p;ind:pre:1p; +rétablit rétablir VER 12.38 22.36 0.60 1.82 ind:pre:3s;ind:pas:3s; +rétamai rétamer VER 0.56 1.55 0.00 0.07 ind:pas:1s; +rétamait rétamer VER 0.56 1.55 0.00 0.07 ind:imp:3s; +rétame rétamer VER 0.56 1.55 0.04 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétamer rétamer VER 0.56 1.55 0.23 0.47 inf; +rétameras rétamer VER 0.56 1.55 0.01 0.00 ind:fut:2s; +rétameur rétameur NOM m s 0.05 0.14 0.05 0.14 +rétamé rétamer VER m s 0.56 1.55 0.25 0.68 par:pas; +rétamées rétamer VER f p 0.56 1.55 0.00 0.07 par:pas; +rétamés rétamer VER m p 0.56 1.55 0.03 0.07 par:pas; +rétention rétention NOM f s 0.48 0.47 0.48 0.47 +rutherford rutherford NOM m s 0.04 0.00 0.04 0.00 +ruèrent ruer VER 3.27 20.81 0.03 1.15 ind:pas:3p; +réticence réticence NOM f s 1.10 7.64 0.69 3.24 +réticences réticence NOM f p 1.10 7.64 0.41 4.39 +réticent réticent ADJ m s 1.49 3.92 0.90 1.62 +réticente réticent ADJ f s 1.49 3.92 0.17 1.35 +réticentes réticent ADJ f p 1.49 3.92 0.12 0.14 +réticents réticent ADJ m p 1.49 3.92 0.29 0.81 +réticulaire réticulaire ADJ m s 0.06 0.00 0.02 0.00 +réticulaires réticulaire ADJ p 0.06 0.00 0.03 0.00 +réticulation réticulation NOM f s 0.00 0.07 0.00 0.07 +réticule réticule NOM m s 0.02 0.81 0.02 0.81 +réticulé réticulé ADJ m s 0.04 0.00 0.01 0.00 +réticulée réticuler VER f s 0.03 0.00 0.03 0.00 par:pas; +réticulée réticulé ADJ f s 0.04 0.00 0.03 0.00 +réticulum réticulum NOM m s 0.04 0.00 0.04 0.00 +rétif rétif ADJ m s 0.21 4.26 0.04 1.62 +rétifs rétif ADJ m p 0.21 4.26 0.14 0.41 +rutilaient rutiler VER 0.02 1.76 0.00 0.14 ind:imp:3p; +rutilait rutiler VER 0.02 1.76 0.00 0.47 ind:imp:3s; +rutilances rutilance NOM f p 0.00 0.07 0.00 0.07 +rutilant rutilant ADJ m s 0.42 3.11 0.15 0.95 +rutilante rutilant ADJ f s 0.42 3.11 0.23 0.81 +rutilantes rutilant ADJ f p 0.42 3.11 0.04 0.61 +rutilants rutilant ADJ m p 0.42 3.11 0.01 0.74 +rutile rutiler VER 0.02 1.76 0.01 0.54 ind:pre:3s; +rutilent rutiler VER 0.02 1.76 0.00 0.14 ind:pre:3p; +rutiler rutiler VER 0.02 1.76 0.00 0.14 inf; +rétinal rétinal NOM m s 0.01 0.00 0.01 0.00 +rétine rétine NOM f s 0.80 2.97 0.69 2.36 +rétines rétine NOM f p 0.80 2.97 0.11 0.61 +rétinien rétinien ADJ m s 0.26 0.14 0.10 0.00 +rétinienne rétinien ADJ f s 0.26 0.14 0.14 0.07 +rétiniennes rétinien ADJ f p 0.26 0.14 0.02 0.07 +rétinite rétinite NOM f s 0.02 0.07 0.02 0.07 +rétinopathie rétinopathie NOM f s 0.02 0.00 0.02 0.00 +rétive rétif ADJ f s 0.21 4.26 0.02 2.03 +rétives rétif ADJ f p 0.21 4.26 0.01 0.20 +rétorqua rétorquer VER 0.20 9.32 0.02 2.77 ind:pas:3s; +rétorquai rétorquer VER 0.20 9.32 0.00 0.81 ind:pas:1s; +rétorquais rétorquer VER 0.20 9.32 0.00 0.27 ind:imp:1s; +rétorquait rétorquer VER 0.20 9.32 0.01 1.35 ind:imp:3s; +rétorquant rétorquer VER 0.20 9.32 0.00 0.07 par:pre; +rétorque rétorquer VER 0.20 9.32 0.11 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétorquer rétorquer VER 0.20 9.32 0.01 0.74 inf; +rétorquera rétorquer VER 0.20 9.32 0.01 0.07 ind:fut:3s; +rétorquèrent rétorquer VER 0.20 9.32 0.00 0.07 ind:pas:3p; +rétorqué rétorquer VER m s 0.20 9.32 0.04 0.81 par:pas; +rétorsion rétorsion NOM f s 0.03 0.07 0.03 0.07 +rétracta rétracter VER 1.71 5.14 0.01 0.34 ind:pas:3s; +rétractable rétractable ADJ s 0.07 0.07 0.07 0.07 +rétractais rétracter VER 1.71 5.14 0.00 0.07 ind:imp:1s; +rétractait rétracter VER 1.71 5.14 0.01 0.47 ind:imp:3s; +rétractant rétracter VER 1.71 5.14 0.01 0.47 par:pre; +rétractation rétractation NOM f s 0.18 0.34 0.17 0.27 +rétractations rétractation NOM f p 0.18 0.34 0.01 0.07 +rétracte rétracter VER 1.71 5.14 0.36 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rétractent rétracter VER 1.71 5.14 0.04 0.14 ind:pre:3p; +rétracter rétracter VER 1.71 5.14 0.50 1.15 inf; +rétractera rétracter VER 1.71 5.14 0.04 0.00 ind:fut:3s; +rétracterait rétracter VER 1.71 5.14 0.10 0.00 cnd:pre:3s; +rétracteur rétracteur NOM m s 0.08 0.00 0.07 0.00 +rétracteurs rétracteur NOM m p 0.08 0.00 0.01 0.00 +rétractez rétracter VER 1.71 5.14 0.06 0.14 imp:pre:2p;ind:pre:2p; +rétractile rétractile ADJ f s 0.02 0.20 0.01 0.07 +rétractiles rétractile ADJ f p 0.02 0.20 0.01 0.14 +rétraction rétraction NOM f s 0.06 0.20 0.06 0.20 +rétractèrent rétracter VER 1.71 5.14 0.00 0.14 ind:pas:3p; +rétracté rétracter VER m s 1.71 5.14 0.39 0.54 par:pas; +rétractée rétracter VER f s 1.71 5.14 0.13 0.20 par:pas; +rétractées rétracter VER f p 1.71 5.14 0.02 0.00 par:pas; +rétractés rétracter VER m p 1.71 5.14 0.04 0.14 par:pas; +rétreint rétreindre VER 0.01 0.00 0.01 0.00 ind:pre:3s; +rétribuant rétribuer VER 0.35 0.68 0.00 0.14 par:pre; +rétribue rétribuer VER 0.35 0.68 0.02 0.07 ind:pre:1s;ind:pre:3s; +rétribuer rétribuer VER 0.35 0.68 0.14 0.14 inf; +rétribution rétribution NOM f s 0.60 0.41 0.60 0.34 +rétributions rétribution NOM f p 0.60 0.41 0.00 0.07 +rétribué rétribué ADJ m s 0.12 0.20 0.12 0.07 +rétribuée rétribuer VER f s 0.35 0.68 0.15 0.14 par:pas; +rétribués rétribuer VER m p 0.35 0.68 0.01 0.07 par:pas; +rétro rétro ADJ 1.12 0.81 1.12 0.81 +rétroactif rétroactif ADJ m s 0.29 0.14 0.22 0.14 +rétroaction rétroaction NOM f s 0.13 0.07 0.13 0.07 +rétroactive rétroactif ADJ f s 0.29 0.14 0.07 0.00 +rétroactivement rétroactivement ADV 0.05 0.14 0.05 0.14 +rétrocession rétrocession NOM f s 0.00 0.07 0.00 0.07 +rétrocède rétrocéder VER 0.01 0.27 0.01 0.07 ind:pre:3s; +rétrocédait rétrocéder VER 0.01 0.27 0.00 0.07 ind:imp:3s; +rétrocéder rétrocéder VER 0.01 0.27 0.00 0.14 inf; +rétrofusée rétrofusée NOM f s 0.25 0.00 0.02 0.00 +rétrofusées rétrofusée NOM f p 0.25 0.00 0.23 0.00 +rétrograda rétrograder VER 0.97 0.74 0.00 0.07 ind:pas:3s; +rétrogradation rétrogradation NOM f s 0.09 0.20 0.07 0.14 +rétrogradations rétrogradation NOM f p 0.09 0.20 0.01 0.07 +rétrograde rétrograde ADJ s 0.57 0.95 0.50 0.81 +rétrogradent rétrograder VER 0.97 0.74 0.00 0.07 ind:pre:3p; +rétrograder rétrograder VER 0.97 0.74 0.16 0.34 inf; +rétrogrades rétrograde ADJ p 0.57 0.95 0.07 0.14 +rétrogradez rétrograder VER 0.97 0.74 0.03 0.00 imp:pre:2p;ind:pre:2p; +rétrogradé rétrograder VER m s 0.97 0.74 0.55 0.07 par:pas; +rétrogradée rétrograder VER f s 0.97 0.74 0.06 0.00 par:pas; +rétrogradés rétrograder VER m p 0.97 0.74 0.01 0.07 par:pas; +rétrogression rétrogression NOM f s 0.01 0.00 0.01 0.00 +rétroprojecteur rétroprojecteur NOM m s 0.11 0.07 0.11 0.07 +rétropropulsion rétropropulsion NOM f s 0.03 0.00 0.03 0.00 +rétros rétro NOM m p 0.92 3.65 0.12 0.27 +rétrospectif rétrospectif ADJ m s 0.15 2.91 0.00 0.88 +rétrospectifs rétrospectif ADJ m p 0.15 2.91 0.00 0.14 +rétrospection rétrospection NOM f s 0.03 0.00 0.03 0.00 +rétrospective rétrospective NOM f s 0.36 0.61 0.36 0.54 +rétrospectivement rétrospectivement ADV 0.36 1.08 0.36 1.08 +rétrospectives rétrospectif ADJ f p 0.15 2.91 0.00 0.27 +rétroversion rétroversion NOM f s 0.00 0.07 0.00 0.07 +rétrovirale rétroviral ADJ f s 0.01 0.00 0.01 0.00 +rétrovirus rétrovirus NOM m 1.11 0.14 1.11 0.14 +rétroviseur rétroviseur NOM m s 0.93 5.20 0.86 5.07 +rétroviseurs rétroviseur NOM m p 0.93 5.20 0.07 0.14 +rétréci rétrécir VER m s 3.51 7.57 1.06 1.22 par:pas; +rétrécie rétrécir VER f s 3.51 7.57 0.13 0.47 par:pas; +rétrécies rétrécir VER f p 3.51 7.57 0.01 0.07 par:pas; +rétrécir rétrécir VER 3.51 7.57 0.53 1.42 inf; +rétrécirent rétrécir VER 3.51 7.57 0.00 0.27 ind:pas:3p; +rétrécis rétrécir VER m p 3.51 7.57 0.06 0.00 imp:pre:2s;par:pas; +rétrécissaient rétrécir VER 3.51 7.57 0.00 0.27 ind:imp:3p; +rétrécissait rétrécir VER 3.51 7.57 0.02 1.08 ind:imp:3s; +rétrécissant rétrécir VER 3.51 7.57 0.02 0.81 par:pre; +rétrécisse rétrécir VER 3.51 7.57 0.04 0.00 sub:pre:3s; +rétrécissement rétrécissement NOM m s 0.15 0.88 0.14 0.81 +rétrécissements rétrécissement NOM m p 0.15 0.88 0.01 0.07 +rétrécissent rétrécir VER 3.51 7.57 0.31 0.34 ind:pre:3p; +rétrécissez rétrécir VER 3.51 7.57 0.03 0.00 imp:pre:2p; +rétrécit rétrécir VER 3.51 7.57 1.31 1.62 ind:pre:3s;ind:pas:3s; +rué ruer VER m s 3.27 20.81 0.67 1.69 par:pas; +rééchelonnement rééchelonnement NOM m s 0.00 0.07 0.00 0.07 +réécoutais réécouter VER 0.63 0.68 0.00 0.14 ind:imp:1s; +réécoutait réécouter VER 0.63 0.68 0.00 0.07 ind:imp:3s; +réécoute réécouter VER 0.63 0.68 0.03 0.07 imp:pre:2s;ind:pre:1s; +réécoutent réécouter VER 0.63 0.68 0.00 0.07 ind:pre:3p; +réécouter réécouter VER 0.63 0.68 0.57 0.34 inf; +réécouterez réécouter VER 0.63 0.68 0.01 0.00 ind:fut:2p; +réécouté réécouter VER m s 0.63 0.68 0.02 0.00 par:pas; +réécrira réécrire VER 2.64 0.81 0.04 0.00 ind:fut:3s; +réécrirai réécrire VER 2.64 0.81 0.01 0.00 ind:fut:1s; +réécrire réécrire VER 2.64 0.81 1.27 0.07 inf; +réécris réécrire VER 2.64 0.81 0.39 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +réécrit réécrire VER m s 2.64 0.81 0.67 0.47 ind:pre:3s;par:pas; +réécrite réécrire VER f s 2.64 0.81 0.11 0.07 par:pas; +réécrits réécrire VER m p 2.64 0.81 0.08 0.07 par:pas; +réécriture réécriture NOM f s 0.13 0.00 0.11 0.00 +réécritures réécriture NOM f p 0.13 0.00 0.02 0.00 +réécrivaient réécrire VER 2.64 0.81 0.01 0.00 ind:imp:3p; +réécrive réécrire VER 2.64 0.81 0.02 0.07 sub:pre:1s;sub:pre:3s; +réécrivez réécrire VER 2.64 0.81 0.05 0.00 imp:pre:2p;ind:pre:2p; +réédifier réédifier VER 0.01 0.14 0.01 0.07 inf; +réédifieras réédifier VER 0.01 0.14 0.00 0.07 ind:fut:2s; +rééditait rééditer VER 0.05 0.95 0.00 0.20 ind:imp:3s; +rééditant rééditer VER 0.05 0.95 0.00 0.07 par:pre; +rééditer rééditer VER 0.05 0.95 0.01 0.34 inf; +réédition réédition NOM f s 0.19 0.68 0.18 0.47 +rééditions réédition NOM f p 0.19 0.68 0.01 0.20 +réédité rééditer VER m s 0.05 0.95 0.04 0.20 par:pas; +rééditées rééditer VER f p 0.05 0.95 0.00 0.07 par:pas; +réédités rééditer VER m p 0.05 0.95 0.00 0.07 par:pas; +rééducateur rééducateur NOM m s 0.00 0.07 0.00 0.07 +rééducation rééducation NOM f s 2.48 0.68 2.48 0.68 +rééduquais rééduquer VER 1.66 0.68 0.00 0.07 ind:imp:1s; +rééduquait rééduquer VER 1.66 0.68 0.00 0.07 ind:imp:3s; +rééduque rééduquer VER 1.66 0.68 0.01 0.07 ind:pre:3s; +rééduquer rééduquer VER 1.66 0.68 0.42 0.34 inf;; +rééduqué rééduquer VER m s 1.66 0.68 0.41 0.07 par:pas; +rééduqués rééduquer VER m p 1.66 0.68 0.81 0.07 par:pas; +ruée ruée NOM f s 0.86 4.73 0.85 4.66 +ruées ruer VER f p 3.27 20.81 0.01 0.14 par:pas; +réélection réélection NOM f s 0.56 0.07 0.56 0.07 +rééligible rééligible ADJ s 0.03 0.00 0.03 0.00 +réélira réélire VER 0.94 0.27 0.10 0.00 ind:fut:3s; +réélire réélire VER 0.94 0.27 0.17 0.00 inf; +réélisent réélire VER 0.94 0.27 0.02 0.00 ind:pre:3p; +réélisez réélire VER 0.94 0.27 0.06 0.00 imp:pre:2p; +réélu réélire VER m s 0.94 0.27 0.56 0.20 par:pas; +réélus réélire VER m p 0.94 0.27 0.03 0.00 par:pas; +réélut réélire VER 0.94 0.27 0.00 0.07 ind:pas:3s; +réunîmes réunir VER 41.93 56.69 0.00 0.07 ind:pas:1p; +réuni réunir VER m s 41.93 56.69 3.95 4.32 par:pas; +réunie réunir VER f s 41.93 56.69 1.61 3.18 par:pas; +réunies réunir VER f p 41.93 56.69 2.35 4.93 par:pas; +réunification réunification NOM f s 1.30 0.14 1.30 0.14 +réunifier réunifier VER 0.17 0.27 0.04 0.00 inf; +réunifié réunifier VER m s 0.17 0.27 0.03 0.00 par:pas; +réunifiée réunifier VER f s 0.17 0.27 0.10 0.20 par:pas; +réunifiées réunifier VER f p 0.17 0.27 0.00 0.07 par:pas; +réunion réunion NOM f s 56.82 28.18 49.17 19.12 +réunionnais réunionnais NOM m 0.00 0.07 0.00 0.07 +réunionnite réunionnite NOM f s 0.01 0.00 0.01 0.00 +réunions réunion NOM f p 56.82 28.18 7.66 9.05 +réunir réunir VER 41.93 56.69 9.11 8.45 inf; +réunira réunir VER 41.93 56.69 0.52 0.47 ind:fut:3s; +réunirai réunir VER 41.93 56.69 0.06 0.00 ind:fut:1s; +réuniraient réunir VER 41.93 56.69 0.05 0.27 cnd:pre:3p; +réunirais réunir VER 41.93 56.69 0.12 0.00 cnd:pre:1s;cnd:pre:2s; +réunirait réunir VER 41.93 56.69 0.09 0.41 cnd:pre:3s; +réuniras réunir VER 41.93 56.69 0.00 0.07 ind:fut:2s; +réunirent réunir VER 41.93 56.69 0.06 0.88 ind:pas:3p; +réunirons réunir VER 41.93 56.69 0.14 0.07 ind:fut:1p; +réuniront réunir VER 41.93 56.69 0.15 0.07 ind:fut:3p; +réunis réunir VER m p 41.93 56.69 15.85 18.18 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +réunissaient réunir VER 41.93 56.69 0.24 2.91 ind:imp:3p; +réunissais réunir VER 41.93 56.69 0.14 0.07 ind:imp:1s; +réunissait réunir VER 41.93 56.69 0.69 3.72 ind:imp:3s; +réunissant réunir VER 41.93 56.69 0.34 1.62 par:pre; +réunisse réunir VER 41.93 56.69 0.81 0.14 sub:pre:1s;sub:pre:3s; +réunissent réunir VER 41.93 56.69 1.26 1.42 ind:pre:3p; +réunisses réunir VER 41.93 56.69 0.02 0.00 sub:pre:2s; +réunissez réunir VER 41.93 56.69 0.37 0.20 imp:pre:2p;ind:pre:2p; +réunissions réunir VER 41.93 56.69 0.19 0.20 ind:imp:1p; +réunissons réunir VER 41.93 56.69 0.42 0.07 imp:pre:1p;ind:pre:1p; +réunit réunir VER 41.93 56.69 3.39 5.00 ind:pre:3s;ind:pas:3s; +rééquilibrage rééquilibrage NOM m s 0.01 0.07 0.01 0.07 +rééquilibrait rééquilibrer VER 0.13 0.20 0.00 0.07 ind:imp:3s; +rééquilibrant rééquilibrer VER 0.13 0.20 0.01 0.00 par:pre; +rééquilibre rééquilibrer VER 0.13 0.20 0.04 0.00 ind:pre:3s; +rééquilibrer rééquilibrer VER 0.13 0.20 0.08 0.07 inf; +rééquilibrera rééquilibrer VER 0.13 0.20 0.00 0.07 ind:fut:3s; +rééquipent rééquiper VER 0.02 0.27 0.01 0.07 ind:pre:3p; +rééquiper rééquiper VER 0.02 0.27 0.01 0.00 inf; +rééquipé rééquiper VER m s 0.02 0.27 0.00 0.07 par:pas; +rééquipée rééquiper VER f s 0.02 0.27 0.00 0.14 par:pas; +rués ruer VER m p 3.27 20.81 0.06 0.54 par:pas; +réussîmes réussir VER 131.88 122.16 0.00 0.20 ind:pas:1p; +réussît réussir VER 131.88 122.16 0.01 0.34 sub:imp:3s; +réussi réussir VER m s 131.88 122.16 78.63 55.74 par:pas; +réussie réussi ADJ f s 6.11 7.70 2.17 2.77 +réussies réussi ADJ f p 6.11 7.70 0.61 0.81 +réussir réussir VER 131.88 122.16 20.99 16.55 inf; +réussira réussir VER 131.88 122.16 2.27 0.81 ind:fut:3s; +réussirai réussir VER 131.88 122.16 1.50 0.34 ind:fut:1s; +réussiraient réussir VER 131.88 122.16 0.02 0.14 cnd:pre:3p; +réussirais réussir VER 131.88 122.16 0.64 0.95 cnd:pre:1s;cnd:pre:2s; +réussirait réussir VER 131.88 122.16 0.50 0.74 cnd:pre:3s; +réussiras réussir VER 131.88 122.16 1.51 0.41 ind:fut:2s; +réussirent réussir VER 131.88 122.16 0.04 1.55 ind:pas:3p; +réussirez réussir VER 131.88 122.16 1.37 0.20 ind:fut:2p; +réussiriez réussir VER 131.88 122.16 0.22 0.00 cnd:pre:2p; +réussirions réussir VER 131.88 122.16 0.04 0.14 cnd:pre:1p; +réussirons réussir VER 131.88 122.16 0.93 0.34 ind:fut:1p; +réussiront réussir VER 131.88 122.16 0.57 0.27 ind:fut:3p; +réussis réussir VER m p 131.88 122.16 4.48 5.00 ind:pre:1s;ind:pre:2s;par:pas; +réussissaient réussir VER 131.88 122.16 0.12 1.76 ind:imp:3p; +réussissais réussir VER 131.88 122.16 0.24 2.30 ind:imp:1s;ind:imp:2s; +réussissait réussir VER 131.88 122.16 0.41 6.69 ind:imp:3s; +réussissant réussir VER 131.88 122.16 0.10 1.89 par:pre; +réussisse réussir VER 131.88 122.16 1.88 1.55 sub:pre:1s;sub:pre:3s; +réussissent réussir VER 131.88 122.16 1.85 1.82 ind:pre:3p; +réussisses réussir VER 131.88 122.16 0.47 0.00 sub:pre:2s; +réussissez réussir VER 131.88 122.16 1.25 0.47 imp:pre:2p;ind:pre:2p; +réussissiez réussir VER 131.88 122.16 0.39 0.27 ind:imp:2p; +réussissions réussir VER 131.88 122.16 0.05 0.34 ind:imp:1p; +réussissons réussir VER 131.88 122.16 0.59 0.20 imp:pre:1p;ind:pre:1p; +réussit réussir VER 131.88 122.16 9.70 19.39 ind:pre:3s;ind:pas:3s; +réussite réussite NOM f s 9.46 20.74 8.80 18.18 +réussites réussite NOM f p 9.46 20.74 0.66 2.57 +réutilisables réutilisable ADJ p 0.03 0.00 0.03 0.00 +réutilisait réutiliser VER 0.38 0.27 0.02 0.14 ind:imp:3s; +réutilisation réutilisation NOM f s 0.15 0.00 0.15 0.00 +réutilise réutiliser VER 0.38 0.27 0.10 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +réutiliser réutiliser VER 0.38 0.27 0.20 0.07 inf; +réutilisé réutiliser VER m s 0.38 0.27 0.04 0.00 par:pas; +réutilisés réutiliser VER m p 0.38 0.27 0.01 0.07 par:pas; +réétudier réétudier VER 0.02 0.07 0.02 0.00 inf; +réétudiez réétudier VER 0.02 0.07 0.00 0.07 ind:pre:2p; +réévaluation réévaluation NOM f s 0.07 0.07 0.07 0.07 +réévalue réévaluer VER 0.72 0.34 0.28 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +réévaluer réévaluer VER 0.72 0.34 0.31 0.14 inf; +réévaluera réévaluer VER 0.72 0.34 0.06 0.00 ind:fut:3s; +réévaluez réévaluer VER 0.72 0.34 0.01 0.00 imp:pre:2p; +réévalué réévaluer VER m s 0.72 0.34 0.02 0.00 par:pas; +réévaluée réévaluer VER f s 0.72 0.34 0.01 0.00 par:pas; +réévaluées réévaluer VER f p 0.72 0.34 0.02 0.00 par:pas; +réévalués réévaluer VER m p 0.72 0.34 0.00 0.07 par:pas; +rêva rêver VER 122.96 128.18 0.03 3.04 ind:pas:3s; +rêvai rêver VER 122.96 128.18 0.31 0.54 ind:pas:1s; +rêvaient rêver VER 122.96 128.18 0.52 4.53 ind:imp:3p; +rêvais rêver VER 122.96 128.18 11.00 11.28 ind:imp:1s;ind:imp:2s; +rêvait rêver VER 122.96 128.18 3.59 18.65 ind:imp:3s; +rêvant rêver VER 122.96 128.18 1.26 6.28 par:pre; +rêvassa rêvasser VER 0.92 6.01 0.00 0.27 ind:pas:3s; +rêvassai rêvasser VER 0.92 6.01 0.00 0.07 ind:pas:1s; +rêvassaient rêvasser VER 0.92 6.01 0.00 0.20 ind:imp:3p; +rêvassais rêvasser VER 0.92 6.01 0.20 0.61 ind:imp:1s;ind:imp:2s; +rêvassait rêvasser VER 0.92 6.01 0.02 1.22 ind:imp:3s; +rêvassant rêvasser VER 0.92 6.01 0.04 0.54 par:pre; +rêvasse rêvasser VER 0.92 6.01 0.14 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rêvassent rêvasser VER 0.92 6.01 0.00 0.14 ind:pre:3p; +rêvasser rêvasser VER 0.92 6.01 0.51 1.89 inf; +rêvasserie rêvasserie NOM f s 0.02 0.41 0.01 0.07 +rêvasseries rêvasserie NOM f p 0.02 0.41 0.01 0.34 +rêvassé rêvasser VER m s 0.92 6.01 0.01 0.00 par:pas; +rêve rêve NOM m s 158.75 128.58 99.39 80.20 +réveil réveil NOM m s 18.43 28.58 18.16 26.22 +réveilla réveiller VER 175.94 125.41 0.46 11.89 ind:pas:3s; +réveillai réveiller VER 175.94 125.41 0.27 2.70 ind:pas:1s; +réveillaient réveiller VER 175.94 125.41 0.07 2.09 ind:imp:3p; +réveillais réveiller VER 175.94 125.41 0.96 1.89 ind:imp:1s;ind:imp:2s; +réveillait réveiller VER 175.94 125.41 1.21 10.74 ind:imp:3s; +réveillant réveiller VER 175.94 125.41 0.89 3.85 par:pre; +réveille_matin réveille_matin NOM m 0.19 0.88 0.19 0.88 +réveille réveiller VER 175.94 125.41 59.67 17.57 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +réveillent réveiller VER 175.94 125.41 1.75 2.30 ind:pre:3p; +réveiller réveiller VER 175.94 125.41 36.66 28.92 ind:pre:2p;inf; +réveillera réveiller VER 175.94 125.41 4.42 1.35 ind:fut:3s; +réveillerai réveiller VER 175.94 125.41 1.54 0.41 ind:fut:1s; +réveilleraient réveiller VER 175.94 125.41 0.17 0.20 cnd:pre:3p; +réveillerais réveiller VER 175.94 125.41 0.61 0.41 cnd:pre:1s;cnd:pre:2s; +réveillerait réveiller VER 175.94 125.41 0.56 1.22 cnd:pre:3s; +réveilleras réveiller VER 175.94 125.41 1.44 0.47 ind:fut:2s; +réveillerez réveiller VER 175.94 125.41 0.33 0.14 ind:fut:2p; +réveilleriez réveiller VER 175.94 125.41 0.07 0.00 cnd:pre:2p; +réveillerons réveiller VER 175.94 125.41 0.20 0.07 ind:fut:1p; +réveilleront réveiller VER 175.94 125.41 0.38 0.27 ind:fut:3p; +réveilles réveiller VER 175.94 125.41 4.27 0.68 ind:pre:2s;sub:pre:2s; +réveilleurs réveilleur NOM m p 0.00 0.07 0.00 0.07 +réveillez réveiller VER 175.94 125.41 11.33 0.95 imp:pre:2p;ind:pre:2p; +réveilliez réveiller VER 175.94 125.41 0.07 0.00 ind:imp:2p; +réveillions réveiller VER 175.94 125.41 0.03 0.27 ind:imp:1p; +réveillâmes réveiller VER 175.94 125.41 0.00 0.07 ind:pas:1p; +réveillon réveillon NOM m s 4.64 5.07 4.46 4.73 +réveillonnaient réveillonner VER 0.34 1.22 0.00 0.07 ind:imp:3p; +réveillonnait réveillonner VER 0.34 1.22 0.00 0.14 ind:imp:3s; +réveillonne réveillonner VER 0.34 1.22 0.30 0.07 ind:pre:3s; +réveillonner réveillonner VER 0.34 1.22 0.03 0.68 inf; +réveillonnerons réveillonner VER 0.34 1.22 0.00 0.07 ind:fut:1p; +réveillonneurs réveillonneur NOM m p 0.00 0.20 0.00 0.20 +réveillonnâmes réveillonner VER 0.34 1.22 0.00 0.07 ind:pas:1p; +réveillonnons réveillonner VER 0.34 1.22 0.00 0.07 imp:pre:1p; +réveillonnèrent réveillonner VER 0.34 1.22 0.00 0.07 ind:pas:3p; +réveillonné réveillonner VER m s 0.34 1.22 0.01 0.00 par:pas; +réveillons réveiller VER 175.94 125.41 0.38 0.47 imp:pre:1p;ind:pre:1p; +réveillât réveiller VER 175.94 125.41 0.00 0.27 sub:imp:3s; +réveillèrent réveiller VER 175.94 125.41 0.17 1.62 ind:pas:3p; +réveillé réveiller VER m s 175.94 125.41 30.63 18.78 par:pas; +réveillée réveiller VER f s 175.94 125.41 15.63 10.88 par:pas; +réveillées réveiller VER f p 175.94 125.41 0.18 0.68 par:pas; +réveillés réveiller VER m p 175.94 125.41 1.61 4.26 par:pas; +réveils réveil NOM m p 18.43 28.58 0.27 2.36 +rêvent rêver VER 122.96 128.18 3.63 4.19 ind:pre:3p; +rêver rêver VER 122.96 128.18 20.80 29.39 inf; +rêvera rêver VER 122.96 128.18 0.08 0.20 ind:fut:3s; +rêverai rêver VER 122.96 128.18 0.12 0.41 ind:fut:1s; +rêveraient rêver VER 122.96 128.18 0.05 0.14 cnd:pre:3p; +rêverait rêver VER 122.96 128.18 0.07 0.20 cnd:pre:3s; +réverbère réverbère NOM m s 0.53 10.81 0.42 4.86 +réverbèrent réverbérer VER 0.02 1.28 0.00 0.07 ind:pre:3p; +réverbères réverbère NOM m p 0.53 10.81 0.11 5.95 +réverbéra réverbérer VER 0.02 1.28 0.00 0.07 ind:pas:3s; +réverbéraient réverbérer VER 0.02 1.28 0.00 0.27 ind:imp:3p; +réverbérait réverbérer VER 0.02 1.28 0.01 0.20 ind:imp:3s; +réverbérant réverbérer VER 0.02 1.28 0.00 0.14 par:pre; +réverbération réverbération NOM f s 0.06 1.69 0.05 1.55 +réverbérations réverbération NOM f p 0.06 1.69 0.01 0.14 +réverbérer réverbérer VER 0.02 1.28 0.00 0.20 inf; +réverbéré réverbérer VER m s 0.02 1.28 0.00 0.07 par:pas; +réverbérée réverbérer VER f s 0.02 1.28 0.00 0.20 par:pas; +rêverie rêverie NOM f s 0.65 19.46 0.26 12.36 +rêveries rêverie NOM f p 0.65 19.46 0.40 7.09 +rêveront rêver VER 122.96 128.18 0.00 0.27 ind:fut:3p; +réversibilité réversibilité NOM f s 0.01 0.61 0.01 0.61 +réversible réversible ADJ s 0.21 0.54 0.17 0.47 +réversibles réversible ADJ f p 0.21 0.54 0.04 0.07 +réversion réversion NOM f s 0.07 0.14 0.07 0.14 +rêves rêve NOM m p 158.75 128.58 59.35 48.38 +rêveur rêveur NOM m s 2.50 4.66 1.48 3.31 +rêveurs rêveur NOM m p 2.50 4.66 0.90 0.88 +rêveuse rêveur ADJ f s 1.77 15.34 0.61 4.66 +rêveusement rêveusement ADV 0.10 3.45 0.10 3.45 +rêveuses rêveur ADJ f p 1.77 15.34 0.03 0.81 +rêvez rêver VER 122.96 128.18 4.31 0.81 imp:pre:2p;ind:pre:2p; +rêviez rêver VER 122.96 128.18 0.58 0.34 ind:imp:2p; +rêvions rêver VER 122.96 128.18 0.28 1.01 ind:imp:1p; +révisa réviser VER 8.21 3.72 0.00 0.07 ind:pas:3s; +révisai réviser VER 8.21 3.72 0.00 0.14 ind:pas:1s; +révisaient réviser VER 8.21 3.72 0.00 0.14 ind:imp:3p; +révisais réviser VER 8.21 3.72 0.12 0.34 ind:imp:1s;ind:imp:2s; +révisait réviser VER 8.21 3.72 0.06 0.20 ind:imp:3s; +révisant réviser VER 8.21 3.72 0.03 0.14 par:pre; +révise réviser VER 8.21 3.72 1.65 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révisent réviser VER 8.21 3.72 0.02 0.00 ind:pre:3p; +réviser réviser VER 8.21 3.72 4.35 2.03 inf; +réviserais réviser VER 8.21 3.72 0.01 0.00 cnd:pre:1s; +réviserait réviser VER 8.21 3.72 0.01 0.00 cnd:pre:3s; +révises réviser VER 8.21 3.72 0.21 0.07 ind:pre:2s; +réviseur réviseur NOM m s 0.01 0.00 0.01 0.00 +révisez réviser VER 8.21 3.72 0.08 0.00 imp:pre:2p; +révisiez réviser VER 8.21 3.72 0.01 0.00 ind:imp:2p; +révision révision NOM f s 3.99 3.78 3.09 3.11 +révisionnisme révisionnisme NOM m s 0.00 0.07 0.00 0.07 +révisionniste révisionniste ADJ s 0.09 0.34 0.07 0.27 +révisionnistes révisionniste NOM p 0.29 0.20 0.28 0.20 +révisions révision NOM f p 3.99 3.78 0.90 0.68 +réviso réviso NOM s 0.00 0.07 0.00 0.07 +révisons réviser VER 8.21 3.72 0.19 0.00 imp:pre:1p;ind:pre:1p; +révisé réviser VER m s 8.21 3.72 1.10 0.14 par:pas; +révisée réviser VER f s 8.21 3.72 0.29 0.07 par:pas; +révisées réviser VER f p 8.21 3.72 0.02 0.14 par:pas; +révisés réviser VER m p 8.21 3.72 0.06 0.07 par:pas; +révocable révocable ADJ f s 0.03 0.41 0.03 0.20 +révocables révocable ADJ m p 0.03 0.41 0.00 0.20 +révocation révocation NOM f s 0.32 0.61 0.32 0.54 +révocations révocation NOM f p 0.32 0.61 0.00 0.07 +révolta révolter VER 4.65 10.81 0.10 1.08 ind:pas:3s; +révoltai révolter VER 4.65 10.81 0.00 0.07 ind:pas:1s; +révoltaient révolter VER 4.65 10.81 0.03 0.41 ind:imp:3p; +révoltais révolter VER 4.65 10.81 0.00 0.20 ind:imp:1s; +révoltait révolter VER 4.65 10.81 0.02 2.36 ind:imp:3s; +révoltant révoltant ADJ m s 0.92 1.96 0.60 0.88 +révoltante révoltant ADJ f s 0.92 1.96 0.14 0.61 +révoltantes révoltant ADJ f p 0.92 1.96 0.16 0.34 +révoltants révoltant ADJ m p 0.92 1.96 0.02 0.14 +révolte révolte NOM f s 6.66 25.07 6.35 21.82 +révoltent révolter VER 4.65 10.81 0.44 0.54 ind:pre:3p; +révolter révolter VER 4.65 10.81 1.19 1.08 inf; +révolteront révolter VER 4.65 10.81 0.15 0.00 ind:fut:3p; +révoltes révolte NOM f p 6.66 25.07 0.31 3.24 +révoltez révolter VER 4.65 10.81 0.04 0.00 imp:pre:2p;ind:pre:2p; +révoltions révolter VER 4.65 10.81 0.00 0.07 ind:imp:1p; +révoltons révolter VER 4.65 10.81 0.14 0.07 imp:pre:1p;ind:pre:1p; +révoltât révolter VER 4.65 10.81 0.00 0.14 sub:imp:3s; +révoltèrent révolter VER 4.65 10.81 0.24 0.27 ind:pas:3p; +révolté révolter VER m s 4.65 10.81 0.36 1.01 par:pas; +révoltée révolter VER f s 4.65 10.81 0.05 0.88 par:pas; +révoltées révolté ADJ f p 0.17 2.97 0.01 0.20 +révoltés révolté NOM m p 1.08 2.43 0.87 1.35 +révolu révolu ADJ m s 2.25 5.34 0.60 2.09 +révolue révolu ADJ f s 2.25 5.34 1.20 1.35 +révolues révolu ADJ f p 2.25 5.34 0.06 0.27 +révolus révolu ADJ m p 2.25 5.34 0.40 1.62 +révolution révolution NOM f s 25.00 46.08 23.07 41.08 +révolutionna révolutionner VER 0.97 0.88 0.01 0.14 ind:pas:3s; +révolutionnaient révolutionner VER 0.97 0.88 0.00 0.07 ind:imp:3p; +révolutionnaire révolutionnaire ADJ s 7.30 12.09 4.76 8.78 +révolutionnairement révolutionnairement ADV 0.01 0.00 0.01 0.00 +révolutionnaires révolutionnaire ADJ p 7.30 12.09 2.54 3.31 +révolutionnait révolutionner VER 0.97 0.88 0.00 0.07 ind:imp:3s; +révolutionner révolutionner VER 0.97 0.88 0.55 0.20 inf; +révolutionnera révolutionner VER 0.97 0.88 0.12 0.00 ind:fut:3s; +révolutionnerait révolutionner VER 0.97 0.88 0.02 0.00 cnd:pre:3s; +révolutionneront révolutionner VER 0.97 0.88 0.01 0.00 ind:fut:3p; +révolutionné révolutionner VER m s 0.97 0.88 0.27 0.34 par:pas; +révolutionnées révolutionner VER f p 0.97 0.88 0.00 0.07 par:pas; +révolutions révolution NOM f p 25.00 46.08 1.94 5.00 +rêvons rêver VER 122.96 128.18 0.68 0.68 imp:pre:1p;ind:pre:1p; +révoquais révoquer VER 0.82 0.88 0.01 0.00 ind:imp:1s; +révoque révoquer VER 0.82 0.88 0.20 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révoquer révoquer VER 0.82 0.88 0.25 0.14 inf; +révoqué révoquer VER m s 0.82 0.88 0.23 0.20 par:pas; +révoquée révoquer VER f s 0.82 0.88 0.05 0.07 par:pas; +révoquées révoquer VER f p 0.82 0.88 0.00 0.07 par:pas; +révoqués révoquer VER m p 0.82 0.88 0.08 0.27 par:pas; +rêvât rêver VER 122.96 128.18 0.00 0.14 sub:imp:3s; +révèle révéler VER 32.70 60.34 6.32 8.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révèlent révéler VER 32.70 60.34 1.62 2.50 ind:pre:3p; +révèles révéler VER 32.70 60.34 0.14 0.07 ind:pre:2s; +révère révérer VER 0.96 0.95 0.21 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +rêvèrent rêver VER 122.96 128.18 0.00 0.34 ind:pas:3p; +révèrent révérer VER 0.96 0.95 0.33 0.07 ind:pre:3p; +rêvé rêver VER m s 122.96 128.18 32.08 20.88 par:pas; +rêvée rêvé ADJ f s 2.61 3.38 1.62 1.55 +rêvées rêver VER f p 122.96 128.18 0.05 0.07 par:pas; +révéla révéler VER 32.70 60.34 0.66 5.14 ind:pas:3s; +révélai révéler VER 32.70 60.34 0.01 0.41 ind:pas:1s; +révélaient révéler VER 32.70 60.34 0.20 3.18 ind:imp:3p; +révélais révéler VER 32.70 60.34 0.11 0.20 ind:imp:1s;ind:imp:2s; +révélait révéler VER 32.70 60.34 0.65 9.39 ind:imp:3s; +révélant révéler VER 32.70 60.34 0.38 3.11 par:pre; +révélateur révélateur ADJ m s 1.04 2.91 0.66 1.15 +révélateurs révélateur ADJ m p 1.04 2.91 0.28 0.41 +révélation révélation NOM f s 7.33 20.61 4.66 14.86 +révélations révélation NOM f p 7.33 20.61 2.67 5.74 +révélatrice révélateur ADJ f s 1.04 2.91 0.06 0.95 +révélatrices révélateur ADJ f p 1.04 2.91 0.04 0.41 +révéler révéler VER 32.70 60.34 10.33 13.31 inf;; +révélera révéler VER 32.70 60.34 0.46 0.34 ind:fut:3s; +révélerai révéler VER 32.70 60.34 0.37 0.07 ind:fut:1s; +révéleraient révéler VER 32.70 60.34 0.06 0.20 cnd:pre:3p; +révélerais révéler VER 32.70 60.34 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +révélerait révéler VER 32.70 60.34 0.14 0.95 cnd:pre:3s; +révéleras révéler VER 32.70 60.34 0.10 0.00 ind:fut:2s; +révélerez révéler VER 32.70 60.34 0.05 0.14 ind:fut:2p; +révélerons révéler VER 32.70 60.34 0.17 0.00 ind:fut:1p; +révéleront révéler VER 32.70 60.34 0.34 0.14 ind:fut:3p; +révélez révéler VER 32.70 60.34 0.38 0.07 imp:pre:2p;ind:pre:2p; +révéliez révéler VER 32.70 60.34 0.06 0.00 ind:imp:2p; +révélons révéler VER 32.70 60.34 0.05 0.00 ind:pre:1p; +révélât révéler VER 32.70 60.34 0.00 0.20 sub:imp:3s; +révulsaient révulser VER 0.44 2.57 0.00 0.27 ind:imp:3p; +révulsait révulser VER 0.44 2.57 0.01 0.41 ind:imp:3s; +révulsant révulser VER 0.44 2.57 0.00 0.07 par:pre; +révulse révulser VER 0.44 2.57 0.35 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +révulser révulser VER 0.44 2.57 0.02 0.00 inf; +révulserait révulser VER 0.44 2.57 0.00 0.07 cnd:pre:3s; +révulsif révulsif NOM m s 0.00 0.34 0.00 0.34 +révulsifs révulsif ADJ m p 0.00 0.27 0.00 0.07 +révulsion révulsion NOM f s 0.02 0.20 0.02 0.20 +révulsive révulsif ADJ f s 0.00 0.27 0.00 0.07 +révulsèrent révulser VER 0.44 2.57 0.00 0.14 ind:pas:3p; +révulsé révulser VER m s 0.44 2.57 0.02 0.41 par:pas; +révulsée révulser VER f s 0.44 2.57 0.02 0.20 par:pas; +révulsés révulsé ADJ m p 0.01 1.08 0.01 0.74 +révélèrent révéler VER 32.70 60.34 0.23 1.22 ind:pas:3p; +révélé révéler VER m s 32.70 60.34 7.86 8.45 par:pas; +révélée révéler VER f s 32.70 60.34 1.22 1.69 par:pas; +révélées révéler VER f p 32.70 60.34 0.38 0.74 par:pas; +révélés révéler VER m p 32.70 60.34 0.36 0.47 par:pas; +révérait révérer VER 0.96 0.95 0.01 0.14 ind:imp:3s; +révérant révérer VER 0.96 0.95 0.09 0.00 par:pre; +révérence révérence NOM f s 2.69 6.49 2.45 6.01 +révérences révérence NOM f p 2.69 6.49 0.23 0.47 +révérenciel révérenciel ADJ m s 0.01 0.00 0.01 0.00 +révérencieuse révérencieux ADJ f s 0.00 0.41 0.00 0.34 +révérencieusement révérencieusement ADV 0.00 0.27 0.00 0.27 +révérencieux révérencieux ADJ m p 0.00 0.41 0.00 0.07 +révérend révérend NOM m s 7.64 1.01 7.51 0.95 +révérende révérend ADJ f s 5.24 0.74 0.90 0.14 +révérendissime révérendissime ADJ m s 0.00 0.41 0.00 0.41 +révérends révérend NOM m p 7.64 1.01 0.14 0.07 +révérer révérer VER 0.96 0.95 0.12 0.07 inf; +révérerait révérer VER 0.96 0.95 0.00 0.07 cnd:pre:3s; +révérons révérer VER 0.96 0.95 0.00 0.07 ind:pre:1p; +révéré révérer VER m s 0.96 0.95 0.07 0.34 par:pas; +révérée révérer VER f s 0.96 0.95 0.14 0.07 par:pas; +rêvés rêver VER m p 122.96 128.18 0.17 0.20 par:pas; +rythmaient rythmer VER 0.47 6.76 0.00 0.34 ind:imp:3p; +rythmait rythmer VER 0.47 6.76 0.00 0.88 ind:imp:3s; +rythmant rythmer VER 0.47 6.76 0.00 0.34 par:pre; +rythme rythme NOM m s 20.43 45.95 19.15 42.57 +rythment rythmer VER 0.47 6.76 0.00 0.41 ind:pre:3p; +rythmer rythmer VER 0.47 6.76 0.11 0.81 inf; +rythmera rythmer VER 0.47 6.76 0.00 0.07 ind:fut:3s; +rythmes rythme NOM m p 20.43 45.95 1.28 3.38 +rythmique rythmique NOM f s 0.26 0.54 0.25 0.47 +rythmiquement rythmiquement ADV 0.02 0.20 0.02 0.20 +rythmiques rythmique ADJ p 0.52 1.15 0.31 0.41 +rythmé rythmé ADJ m s 0.91 1.96 0.30 0.68 +rythmée rythmé ADJ f s 0.91 1.96 0.57 0.68 +rythmées rythmé ADJ f p 0.91 1.96 0.01 0.20 +rythmés rythmé ADJ m p 0.91 1.96 0.03 0.41 +s_ s_ PRO:per 2418.95 5391.62 2418.95 5391.62 +s s PRO:per 40.59 13.99 40.59 13.99 +sûmes savoir VER 4516.72 2003.58 0.00 0.61 ind:pas:1p; +sûr sûr ADJ m s 943.56 412.97 801.64 343.51 +sûre sûr ADJ f s 943.56 412.97 122.03 56.55 +sûrement sûrement ADV 133.67 74.12 133.67 74.12 +sûres sûr ADJ f p 943.56 412.97 2.47 2.91 +sûreté sûreté NOM f s 7.04 10.07 7.01 9.86 +sûretés sûreté NOM f p 7.04 10.07 0.03 0.20 +sûrs sûr ADJ m p 943.56 412.97 17.43 10.00 +sût savoir VER 4516.72 2003.58 0.08 6.62 sub:imp:3s; +sa sa ADJ:pos 1276.29 3732.43 1276.29 3732.43 +saï saï NOM m s 0.01 0.47 0.01 0.47 +sabayon sabayon NOM m s 0.30 0.27 0.30 0.07 +sabayons sabayon NOM m p 0.30 0.27 0.00 0.20 +sabbat sabbat NOM m s 3.28 2.77 3.14 2.77 +sabbatique sabbatique ADJ s 0.78 0.47 0.76 0.41 +sabbatiques sabbatique ADJ f p 0.78 0.47 0.02 0.07 +sabbats sabbat NOM m p 3.28 2.77 0.14 0.00 +sabelles sabelle NOM f p 0.00 0.07 0.00 0.07 +sabin sabin ADJ s 0.00 0.41 0.00 0.27 +sabines sabine NOM f p 0.00 0.14 0.00 0.14 +sabins sabin ADJ m p 0.00 0.41 0.00 0.14 +sabir sabir NOM m s 0.00 0.74 0.00 0.74 +sabla sabler VER 0.28 1.42 0.00 0.20 ind:pas:3s; +sablaient sabler VER 0.28 1.42 0.00 0.07 ind:imp:3p; +sablait sabler VER 0.28 1.42 0.00 0.14 ind:imp:3s; +sablant sabler VER 0.28 1.42 0.01 0.14 par:pre; +sable sable NOM m s 25.23 96.55 23.14 87.91 +sabler sabler VER 0.28 1.42 0.16 0.27 inf; +sablera sabler VER 0.28 1.42 0.01 0.07 ind:fut:3s; +sablerais sabler VER 0.28 1.42 0.00 0.07 cnd:pre:1s; +sables sable NOM m p 25.23 96.55 2.09 8.65 +sableuse sableux ADJ f s 0.23 1.01 0.21 0.41 +sableuses sableux ADJ f p 0.23 1.01 0.00 0.14 +sableux sableux ADJ m 0.23 1.01 0.03 0.47 +sablez sabler VER 0.28 1.42 0.02 0.07 imp:pre:2p;ind:pre:2p; +sablier sablier NOM m s 1.18 3.11 1.03 2.64 +sabliers sablier NOM m p 1.18 3.11 0.14 0.47 +sablière sablière NOM f s 0.01 0.47 0.01 0.27 +sablières sablière NOM f p 0.01 0.47 0.00 0.20 +sablonneuse sablonneux ADJ f s 0.06 3.92 0.00 1.76 +sablonneuses sablonneux ADJ f p 0.06 3.92 0.03 0.41 +sablonneux sablonneux ADJ m 0.06 3.92 0.03 1.76 +sablons sablon NOM m p 0.00 0.20 0.00 0.20 +sablé sablé ADJ m s 0.40 0.68 0.14 0.14 +sablée sabler VER f s 0.28 1.42 0.01 0.14 par:pas; +sablées sablé ADJ f p 0.40 0.68 0.00 0.07 +sablés sablé ADJ m p 0.40 0.68 0.25 0.34 +sabord sabord NOM m s 0.17 1.89 0.03 1.28 +sabordage sabordage NOM m s 0.02 0.20 0.02 0.20 +sabordait saborder VER 0.74 1.42 0.01 0.07 ind:imp:3s; +saborde saborder VER 0.74 1.42 0.07 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sabordent saborder VER 0.74 1.42 0.02 0.00 ind:pre:3p; +saborder saborder VER 0.74 1.42 0.45 0.47 inf; +sabordez saborder VER 0.74 1.42 0.04 0.00 imp:pre:2p;ind:pre:2p; +sabords sabord NOM m p 0.17 1.89 0.14 0.61 +sabordé saborder VER m s 0.74 1.42 0.14 0.34 par:pas; +sabordée saborder VER f s 0.74 1.42 0.01 0.07 par:pas; +sabordés saborder VER m p 0.74 1.42 0.01 0.27 par:pas; +sabot sabot NOM m s 4.95 24.66 1.79 5.74 +sabotage sabotage NOM m s 4.69 2.97 4.32 2.30 +sabotages sabotage NOM m p 4.69 2.97 0.37 0.68 +sabotais saboter VER 6.25 2.77 0.02 0.07 ind:imp:1s; +sabotait saboter VER 6.25 2.77 0.04 0.34 ind:imp:3s; +sabotant saboter VER 6.25 2.77 0.03 0.00 par:pre; +sabote saboter VER 6.25 2.77 0.34 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sabotent saboter VER 6.25 2.77 0.14 0.14 ind:pre:3p; +saboter saboter VER 6.25 2.77 2.84 1.22 inf; +saboterai saboter VER 6.25 2.77 0.02 0.00 ind:fut:1s; +saboterait saboter VER 6.25 2.77 0.01 0.07 cnd:pre:3s; +saboterie saboterie NOM f s 0.00 0.07 0.00 0.07 +saboteront saboter VER 6.25 2.77 0.01 0.00 ind:fut:3p; +saboteur saboteur NOM m s 1.15 0.54 0.66 0.14 +saboteurs saboteur NOM m p 1.15 0.54 0.48 0.41 +saboteuse saboteur NOM f s 1.15 0.54 0.01 0.00 +sabotez saboter VER 6.25 2.77 0.38 0.00 ind:pre:2p; +sabotier sabotier NOM m s 0.00 0.61 0.00 0.41 +sabotiers sabotier NOM m p 0.00 0.61 0.00 0.20 +sabotons saboter VER 6.25 2.77 0.02 0.07 imp:pre:1p;ind:pre:1p; +sabots sabot NOM m p 4.95 24.66 3.16 18.92 +saboté saboter VER m s 6.25 2.77 2.05 0.41 par:pas; +sabotée saboter VER f s 6.25 2.77 0.13 0.14 par:pas; +sabotées saboter VER f p 6.25 2.77 0.01 0.14 par:pas; +sabotés saboter VER m p 6.25 2.77 0.22 0.07 par:pas; +saboule sabouler VER 0.00 0.41 0.00 0.07 ind:pre:3s; +saboulent sabouler VER 0.00 0.41 0.00 0.07 ind:pre:3p; +sabouler sabouler VER 0.00 0.41 0.00 0.07 inf; +saboulé sabouler VER m s 0.00 0.41 0.00 0.07 par:pas; +saboulés sabouler VER m p 0.00 0.41 0.00 0.14 par:pas; +sabra sabra NOM m s 0.12 0.00 0.12 0.00 +sabrait sabrer VER 0.39 3.04 0.00 0.54 ind:imp:3s; +sabrant sabrer VER 0.39 3.04 0.01 0.14 par:pre; +sabre sabre NOM m s 6.95 17.03 5.44 13.85 +sabrent sabrer VER 0.39 3.04 0.00 0.07 ind:pre:3p; +sabrer sabrer VER 0.39 3.04 0.11 0.41 inf; +sabrerai sabrer VER 0.39 3.04 0.00 0.07 ind:fut:1s; +sabreraient sabrer VER 0.39 3.04 0.00 0.07 cnd:pre:3p; +sabrerais sabrer VER 0.39 3.04 0.01 0.00 cnd:pre:2s; +sabreras sabrer VER 0.39 3.04 0.00 0.07 ind:fut:2s; +sabrerons sabrer VER 0.39 3.04 0.00 0.07 ind:fut:1p; +sabres sabre NOM m p 6.95 17.03 1.50 3.18 +sabretache sabretache NOM f s 0.00 0.27 0.00 0.20 +sabretaches sabretache NOM f p 0.00 0.27 0.00 0.07 +sabreur sabreur NOM m s 0.14 0.47 0.00 0.27 +sabreurs sabreur NOM m p 0.14 0.47 0.14 0.20 +sabrez sabrer VER 0.39 3.04 0.03 0.00 imp:pre:2p; +sabré sabrer VER m s 0.39 3.04 0.17 0.34 par:pas; +sabrée sabrer VER f s 0.39 3.04 0.00 0.07 par:pas; +sabrées sabrer VER f p 0.39 3.04 0.00 0.20 par:pas; +sabrés sabrer VER m p 0.39 3.04 0.01 0.07 par:pas; +sabéen sabéen ADJ m s 0.01 0.00 0.01 0.00 +sabéenne sabéenne ADJ f s 0.05 0.00 0.05 0.00 +sac_poubelle sac_poubelle NOM m s 0.24 0.41 0.19 0.34 +sac sac NOM m s 124.60 174.26 105.96 125.47 +saccade saccader VER 0.04 1.96 0.01 0.07 ind:pre:3s; +saccader saccader VER 0.04 1.96 0.00 0.07 inf; +saccades saccade NOM f p 0.01 6.15 0.01 5.68 +saccadé saccadé ADJ m s 1.17 5.20 0.21 1.69 +saccadée saccadé ADJ f s 1.17 5.20 0.44 1.82 +saccadées saccadé ADJ f p 1.17 5.20 0.01 0.47 +saccadés saccadé ADJ m p 1.17 5.20 0.51 1.22 +saccage saccager VER 4.00 6.69 0.29 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saccagea saccager VER 4.00 6.69 0.10 0.27 ind:pas:3s; +saccageaient saccager VER 4.00 6.69 0.00 0.14 ind:imp:3p; +saccageais saccager VER 4.00 6.69 0.00 0.07 ind:imp:1s; +saccageait saccager VER 4.00 6.69 0.01 0.27 ind:imp:3s; +saccageant saccager VER 4.00 6.69 0.13 0.27 par:pre; +saccagent saccager VER 4.00 6.69 0.15 0.07 ind:pre:3p; +saccageons saccager VER 4.00 6.69 0.02 0.00 imp:pre:1p; +saccager saccager VER 4.00 6.69 0.82 1.69 inf; +saccageraient saccager VER 4.00 6.69 0.01 0.00 cnd:pre:3p; +saccages saccager VER 4.00 6.69 0.02 0.00 ind:pre:2s; +saccageurs saccageur NOM m p 0.00 0.07 0.00 0.07 +saccagez saccager VER 4.00 6.69 0.04 0.00 imp:pre:2p;ind:pre:2p; +saccagiez saccager VER 4.00 6.69 0.01 0.07 ind:imp:2p; +saccagne saccagne NOM f s 0.00 0.68 0.00 0.68 +saccagèrent saccager VER 4.00 6.69 0.00 0.14 ind:pas:3p; +saccagé saccager VER m s 4.00 6.69 1.81 1.96 par:pas; +saccagée saccager VER f s 4.00 6.69 0.58 0.68 par:pas; +saccagées saccager VER f p 4.00 6.69 0.00 0.27 par:pas; +saccagés saccager VER m p 4.00 6.69 0.00 0.61 par:pas; +saccharine saccharine NOM f s 0.09 0.54 0.09 0.54 +saccharomyces saccharomyces NOM m p 0.01 0.00 0.01 0.00 +saccharose saccharose NOM m s 0.04 0.00 0.04 0.00 +sacculine sacculine NOM f s 0.03 0.00 0.02 0.00 +sacculines sacculine NOM f p 0.03 0.00 0.01 0.00 +sacerdoce sacerdoce NOM m s 0.77 0.74 0.76 0.74 +sacerdoces sacerdoce NOM m p 0.77 0.74 0.01 0.00 +sacerdotal sacerdotal ADJ m s 0.31 0.81 0.03 0.27 +sacerdotale sacerdotal ADJ f s 0.31 0.81 0.01 0.27 +sacerdotales sacerdotal ADJ f p 0.31 0.81 0.14 0.20 +sacerdotaux sacerdotal ADJ m p 0.31 0.81 0.14 0.07 +sachant savoir VER 4516.72 2003.58 14.39 34.59 par:pre; +sache savoir VER 4516.72 2003.58 54.06 27.09 imp:pre:2s;sub:pre:1s;sub:pre:3s; +sachem sachem NOM m s 0.05 0.07 0.05 0.07 +sachent savoir VER 4516.72 2003.58 6.46 3.04 sub:pre:3p; +saches savoir VER 4516.72 2003.58 17.03 3.04 sub:pre:2s; +sachet sachet NOM m s 4.38 5.41 2.84 2.09 +sachets sachet NOM m p 4.38 5.41 1.53 3.31 +sachez savoir VER 4516.72 2003.58 13.07 5.20 imp:pre:2p; +sachiez savoir VER 4516.72 2003.58 8.97 2.30 sub:pre:2p; +sachions savoir VER 4516.72 2003.58 0.94 0.88 sub:pre:1p; +sachons savoir VER 4516.72 2003.58 0.14 0.27 imp:pre:1p; +sacoche sacoche NOM f s 3.16 6.82 2.79 4.80 +sacoches sacoche NOM f p 3.16 6.82 0.37 2.03 +sacqua sacquer VER 0.20 0.34 0.00 0.07 ind:pas:3s; +sacquais sacquer VER 0.20 0.34 0.00 0.07 ind:imp:1s; +sacquant sacquer VER 0.20 0.34 0.00 0.07 par:pre; +sacque sacquer VER 0.20 0.34 0.03 0.00 imp:pre:2s;ind:pre:3s; +sacquer sacquer VER 0.20 0.34 0.12 0.14 inf; +sacqué sacquer VER m s 0.20 0.34 0.05 0.00 par:pas; +sacra sacrer VER 25.16 16.82 0.14 0.34 ind:pas:3s; +sacrait sacrer VER 25.16 16.82 0.00 0.20 ind:imp:3s; +sacralisation sacralisation NOM f s 0.00 0.07 0.00 0.07 +sacralisés sacraliser VER m p 0.00 0.07 0.00 0.07 par:pas; +sacramentel sacramentel ADJ m s 0.00 0.47 0.00 0.20 +sacramentelle sacramentel ADJ f s 0.00 0.47 0.00 0.20 +sacramentelles sacramentel ADJ f p 0.00 0.47 0.00 0.07 +sacrant sacrer VER 25.16 16.82 0.00 0.41 par:pre; +sacre sacre NOM m s 0.75 0.74 0.73 0.61 +sacrebleu sacrebleu ONO 0.94 0.61 0.94 0.61 +sacredieu sacredieu ONO 0.33 0.00 0.33 0.00 +sacrement sacrement NOM m s 2.45 4.93 1.58 2.57 +sacrements sacrement NOM m p 2.45 4.93 0.88 2.36 +sacrer sacrer VER 25.16 16.82 0.06 0.00 inf; +sacrera sacrer VER 25.16 16.82 0.01 0.00 ind:fut:3s; +sacrerai sacrer VER 25.16 16.82 0.00 0.07 ind:fut:1s; +sacres sacrer VER 25.16 16.82 0.03 0.00 ind:pre:2s;sub:pre:2s; +sacret sacret NOM m s 0.03 0.00 0.03 0.00 +sacrifia sacrifier VER 25.67 20.20 0.30 0.47 ind:pas:3s; +sacrifiaient sacrifier VER 25.67 20.20 0.06 0.61 ind:imp:3p; +sacrifiais sacrifier VER 25.67 20.20 0.04 0.07 ind:imp:1s;ind:imp:2s; +sacrifiait sacrifier VER 25.67 20.20 0.28 1.15 ind:imp:3s; +sacrifiant sacrifier VER 25.67 20.20 0.66 1.01 par:pre; +sacrificateur sacrificateur NOM m s 0.02 1.22 0.00 0.88 +sacrificateurs sacrificateur NOM m p 0.02 1.22 0.02 0.34 +sacrifice sacrifice NOM m s 23.11 26.08 15.90 16.96 +sacrifices sacrifice NOM m p 23.11 26.08 7.21 9.12 +sacrificiel sacrificiel ADJ m s 0.25 0.74 0.21 0.41 +sacrificielle sacrificiel ADJ f s 0.25 0.74 0.04 0.27 +sacrificiels sacrificiel ADJ m p 0.25 0.74 0.00 0.07 +sacrifie sacrifier VER 25.67 20.20 2.49 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sacrifient sacrifier VER 25.67 20.20 0.22 0.14 ind:pre:3p; +sacrifier sacrifier VER 25.67 20.20 9.05 7.36 inf; +sacrifiera sacrifier VER 25.67 20.20 0.17 0.27 ind:fut:3s; +sacrifierai sacrifier VER 25.67 20.20 0.43 0.00 ind:fut:1s; +sacrifieraient sacrifier VER 25.67 20.20 0.05 0.00 cnd:pre:3p; +sacrifierais sacrifier VER 25.67 20.20 0.56 0.00 cnd:pre:1s;cnd:pre:2s; +sacrifierait sacrifier VER 25.67 20.20 0.13 0.07 cnd:pre:3s; +sacrifieras sacrifier VER 25.67 20.20 0.02 0.00 ind:fut:2s; +sacrifierez sacrifier VER 25.67 20.20 0.04 0.00 ind:fut:2p; +sacrifieriez sacrifier VER 25.67 20.20 0.07 0.07 cnd:pre:2p; +sacrifierions sacrifier VER 25.67 20.20 0.10 0.00 cnd:pre:1p; +sacrifierons sacrifier VER 25.67 20.20 0.16 0.00 ind:fut:1p; +sacrifies sacrifier VER 25.67 20.20 0.55 0.07 ind:pre:2s; +sacrifiez sacrifier VER 25.67 20.20 0.55 0.14 imp:pre:2p;ind:pre:2p; +sacrifiiez sacrifier VER 25.67 20.20 0.00 0.07 ind:imp:2p; +sacrifions sacrifier VER 25.67 20.20 0.55 0.07 imp:pre:1p;ind:pre:1p; +sacrifiât sacrifier VER 25.67 20.20 0.00 0.07 sub:imp:3s; +sacrifièrent sacrifier VER 25.67 20.20 0.04 0.14 ind:pas:3p; +sacrifié sacrifier VER m s 25.67 20.20 5.98 4.26 par:pas; +sacrifiée sacrifier VER f s 25.67 20.20 1.94 1.22 par:pas; +sacrifiées sacrifier VER f p 25.67 20.20 0.34 0.34 par:pas; +sacrifiés sacrifier VER m p 25.67 20.20 0.89 0.68 par:pas; +sacrilège sacrilège NOM m s 1.93 3.24 1.69 2.64 +sacrilèges sacrilège NOM m p 1.93 3.24 0.25 0.61 +sacripant sacripant NOM m s 0.47 0.47 0.47 0.27 +sacripants sacripant NOM m p 0.47 0.47 0.00 0.20 +sacristain sacristain NOM m s 1.38 3.92 1.25 3.72 +sacristaine sacristain NOM f s 1.38 3.92 0.00 0.07 +sacristaines sacristaine NOM f p 0.14 0.00 0.14 0.00 +sacristains sacristain NOM m p 1.38 3.92 0.14 0.14 +sacristie sacristie NOM f s 1.23 4.39 1.13 3.65 +sacristies sacristie NOM f p 1.23 4.39 0.10 0.74 +sacristine sacristine NOM f s 0.10 0.07 0.10 0.07 +sacro_iliaque sacro_iliaque ADJ s 0.03 0.00 0.02 0.00 +sacro_iliaque sacro_iliaque ADJ f p 0.03 0.00 0.01 0.00 +sacro_saint sacro_saint ADJ m s 0.65 1.35 0.21 0.68 +sacro_saint sacro_saint ADJ f s 0.65 1.35 0.41 0.47 +sacro_saint sacro_saint ADJ f p 0.65 1.35 0.00 0.14 +sacro_saint sacro_saint ADJ m p 0.65 1.35 0.02 0.07 +sacro sacro ADV 0.11 0.68 0.11 0.68 +sacré_coeur sacré_coeur NOM m s 0.00 0.20 0.00 0.20 +sacré sacré ADJ m s 56.88 45.20 29.19 20.47 +sacrédié sacrédié ONO 0.00 0.07 0.00 0.07 +sacrée sacré ADJ f s 56.88 45.20 20.68 16.55 +sacrées sacré ADJ f p 56.88 45.20 2.11 2.43 +sacrum sacrum NOM m s 0.04 0.07 0.04 0.07 +sacrément sacrément ADV 6.01 2.16 6.01 2.16 +sacrés sacré ADJ m p 56.88 45.20 4.90 5.74 +sac_poubelle sac_poubelle NOM m p 0.24 0.41 0.06 0.07 +sacs sac NOM m p 124.60 174.26 18.64 48.78 +sadducéen sadducéen NOM m s 0.00 0.07 0.00 0.07 +sadienne sadien ADJ f s 0.00 0.07 0.00 0.07 +sadique sadique NOM s 2.89 2.30 2.23 1.49 +sadiquement sadiquement ADV 0.01 0.20 0.01 0.20 +sadiques sadique NOM p 2.89 2.30 0.66 0.81 +sadisme sadisme NOM m s 0.36 1.96 0.36 1.89 +sadismes sadisme NOM m p 0.36 1.96 0.00 0.07 +sado sado ADJ m s 0.37 0.00 0.37 0.00 +sadomasochisme sadomasochisme NOM m s 0.02 0.00 0.02 0.00 +sadomasochiste sadomasochiste ADJ s 0.13 0.07 0.13 0.07 +sados sado NOM p 0.00 0.07 0.00 0.07 +saducéen saducéen NOM m s 0.02 0.14 0.02 0.14 +safari_photo safari_photo NOM m s 0.01 0.00 0.01 0.00 +safari safari NOM m s 1.77 1.28 1.58 0.88 +safaris safari NOM m p 1.77 1.28 0.20 0.41 +safran safran NOM m s 0.38 1.89 0.38 1.89 +safrane safraner VER 0.14 0.00 0.14 0.00 ind:pre:3s; +safrané safrané ADJ m s 0.00 0.14 0.00 0.14 +saga saga NOM f s 0.95 1.01 0.73 0.81 +sagace sagace ADJ s 0.11 1.55 0.09 0.95 +sagaces sagace ADJ p 0.11 1.55 0.02 0.61 +sagacité sagacité NOM f s 0.09 1.42 0.09 1.42 +sagaie sagaie NOM f s 0.14 0.41 0.01 0.07 +sagaies sagaie NOM f p 0.14 0.41 0.13 0.34 +sagard sagard NOM m s 0.00 0.07 0.00 0.07 +sagas saga NOM f p 0.95 1.01 0.22 0.20 +sage_femme sage_femme NOM f s 1.52 1.22 1.35 1.22 +sage sage ADJ s 39.09 31.15 31.93 23.45 +sagement sagement ADV 2.39 9.46 2.39 9.46 +sage_femme sage_femme NOM f p 1.52 1.22 0.17 0.00 +sages sage ADJ p 39.09 31.15 7.17 7.70 +sagesse sagesse NOM f s 13.58 21.55 13.56 21.42 +sagesses sagesse NOM f p 13.58 21.55 0.02 0.14 +sagettes sagette NOM f p 0.00 0.07 0.00 0.07 +sagittaire sagittaire NOM s 0.16 0.14 0.14 0.00 +sagittaires sagittaire NOM p 0.16 0.14 0.02 0.14 +sagittal sagittal ADJ m s 0.07 0.00 0.04 0.00 +sagittale sagittal ADJ f s 0.07 0.00 0.03 0.00 +sagouin sagouin NOM m s 0.35 1.22 0.34 1.08 +sagouins sagouin NOM m p 0.35 1.22 0.01 0.14 +sagoutier sagoutier NOM m s 0.00 0.14 0.00 0.14 +sagum sagum NOM m s 0.00 0.07 0.00 0.07 +saharien saharien ADJ m s 0.02 1.55 0.01 0.41 +saharienne saharien NOM f s 0.62 0.74 0.61 0.41 +sahariennes saharien ADJ f p 0.02 1.55 0.01 0.41 +sahariens saharien ADJ m p 0.02 1.55 0.00 0.34 +sahib sahib NOM m s 1.63 0.07 1.61 0.07 +sahibs sahib NOM m p 1.63 0.07 0.02 0.00 +saie saie NOM f s 0.04 0.00 0.04 0.00 +saigna saigner VER 34.86 21.82 0.00 0.27 ind:pas:3s; +saignaient saigner VER 34.86 21.82 0.16 1.08 ind:imp:3p; +saignais saigner VER 34.86 21.82 0.45 0.20 ind:imp:1s;ind:imp:2s; +saignait saigner VER 34.86 21.82 1.66 3.31 ind:imp:3s; +saignant saignant ADJ m s 1.94 4.32 1.25 1.55 +saignante saignant ADJ f s 1.94 4.32 0.26 1.08 +saignantes saignant ADJ f p 1.94 4.32 0.04 0.81 +saignants saignant ADJ m p 1.94 4.32 0.39 0.88 +saignasse saigner VER 34.86 21.82 0.00 0.07 sub:imp:1s; +saigne saigner VER 34.86 21.82 14.30 5.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saignement saignement NOM m s 2.67 0.54 1.81 0.34 +saignements saignement NOM m p 2.67 0.54 0.86 0.20 +saignent saigner VER 34.86 21.82 1.30 0.74 ind:pre:3p; +saigner saigner VER 34.86 21.82 7.63 6.01 inf; +saignera saigner VER 34.86 21.82 0.28 0.14 ind:fut:3s; +saignerai saigner VER 34.86 21.82 0.09 0.00 ind:fut:1s; +saignerais saigner VER 34.86 21.82 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +saignerait saigner VER 34.86 21.82 0.02 0.20 cnd:pre:3s; +saigneras saigner VER 34.86 21.82 0.03 0.00 ind:fut:2s; +saignerez saigner VER 34.86 21.82 0.02 0.00 ind:fut:2p; +saigneront saigner VER 34.86 21.82 0.03 0.07 ind:fut:3p; +saignes saigner VER 34.86 21.82 3.23 0.34 ind:pre:2s; +saigneur saigneur NOM m s 0.02 0.07 0.02 0.07 +saignez saigner VER 34.86 21.82 1.50 0.07 imp:pre:2p;ind:pre:2p; +saigniez saigner VER 34.86 21.82 0.07 0.00 ind:imp:2p; +saignons saigner VER 34.86 21.82 0.07 0.00 imp:pre:1p;ind:pre:1p; +saigné saigner VER m s 34.86 21.82 2.87 2.09 par:pas; +saignée saignée NOM f s 0.59 2.84 0.56 2.36 +saignées saigner VER f p 34.86 21.82 0.14 0.00 par:pas; +saignés saigner VER m p 34.86 21.82 0.35 0.41 par:pas; +saillaient saillir VER 0.04 6.82 0.00 1.35 ind:imp:3p; +saillait saillir VER 0.04 6.82 0.00 0.81 ind:imp:3s; +saillant saillant ADJ m s 0.18 10.07 0.07 1.76 +saillante saillant ADJ f s 0.18 10.07 0.02 0.95 +saillantes saillant ADJ f p 0.18 10.07 0.05 4.59 +saillants saillant ADJ m p 0.18 10.07 0.04 2.77 +saille saillir VER 0.04 6.82 0.00 0.14 ind:pre:3s; +saillent saillir VER 0.04 6.82 0.01 0.27 ind:pre:3p; +sailli saillir VER m s 0.04 6.82 0.00 0.27 par:pas; +saillie saillie NOM f s 0.68 5.54 0.61 3.24 +saillies saillie NOM f p 0.68 5.54 0.06 2.30 +saillir saillir VER 0.04 6.82 0.01 2.64 inf; +saillissent saillir VER 0.04 6.82 0.02 0.07 sub:imp:3p; +saillit saillir VER 0.04 6.82 0.00 0.07 ind:pas:3s; +sain sain ADJ m s 26.61 18.65 13.89 8.58 +saindoux saindoux NOM m 0.68 9.80 0.68 9.80 +saine sain ADJ f s 26.61 18.65 6.96 6.15 +sainement sainement ADV 0.47 0.47 0.47 0.47 +saines sain ADJ f p 26.61 18.65 1.35 2.09 +sainfoin sainfoin NOM m s 0.00 0.81 0.00 0.74 +sainfoins sainfoin NOM m p 0.00 0.81 0.00 0.07 +sains sain ADJ m p 26.61 18.65 4.42 1.82 +saint_bernard saint_bernard NOM m 0.17 0.68 0.17 0.68 +saint_crépin saint_crépin NOM m 0.05 0.00 0.05 0.00 +saint_cyrien saint_cyrien NOM m s 0.00 1.01 0.00 0.68 +saint_cyrien saint_cyrien NOM m p 0.00 1.01 0.00 0.34 +saint_esprit saint_esprit NOM m 0.20 0.47 0.20 0.47 +saint_frusquin saint_frusquin NOM m 0.17 0.74 0.17 0.74 +saint_germain saint_germain NOM m 0.00 0.34 0.00 0.34 +saint_glinglin saint_glinglin NOM f s 0.01 0.07 0.01 0.07 +saint_guy saint_guy NOM m 0.03 0.00 0.03 0.00 +saint_honoré saint_honoré NOM m 0.14 0.20 0.14 0.20 +saint_hubert saint_hubert NOM f s 0.00 0.07 0.00 0.07 +saint_michel saint_michel NOM s 0.00 0.07 0.00 0.07 +saint_nectaire saint_nectaire NOM m 0.00 0.14 0.00 0.14 +saint_paulin saint_paulin NOM m 0.00 0.34 0.00 0.34 +saint_pierre saint_pierre NOM m 0.16 0.20 0.16 0.20 +saint_père saint_père NOM m s 0.14 2.16 0.14 0.20 +saint_siège saint_siège NOM m s 0.30 1.28 0.30 1.28 +saint_synode saint_synode NOM m s 0.00 0.07 0.00 0.07 +saint_émilion saint_émilion NOM m 0.00 0.41 0.00 0.41 +saint saint NOM s 39.23 63.31 12.37 35.88 +sainte_nitouche sainte_nitouche NOM f s 0.46 0.20 0.35 0.20 +sainte_nitouche sainte_nitouche NOM f s 0.51 0.14 0.51 0.14 +sainte saint NOM f s 39.23 63.31 17.17 11.89 +saintement saintement ADV 0.00 0.20 0.00 0.20 +sainte_nitouche sainte_nitouche NOM f p 0.46 0.20 0.11 0.00 +saintes saint ADJ f p 23.22 42.77 2.30 4.39 +sainteté sainteté NOM f s 4.74 5.54 4.64 5.41 +saintetés sainteté NOM f p 4.74 5.54 0.10 0.14 +saint_père saint_père NOM m p 0.14 2.16 0.00 1.96 +saints saint NOM m p 39.23 63.31 9.69 14.46 +sais savoir VER 4516.72 2003.58 2492.92 615.27 ind:pre:1s;ind:pre:2s; +saisît saisir VER 36.81 135.74 0.00 0.41 sub:imp:3s; +saisi saisir VER m s 36.81 135.74 10.15 25.54 par:pas; +saisie_arrêt saisie_arrêt NOM f s 0.00 0.20 0.00 0.20 +saisie saisie NOM f s 2.75 1.62 1.73 1.42 +saisies saisie NOM f p 2.75 1.62 1.02 0.20 +saisir saisir VER 36.81 135.74 9.40 33.78 inf; +saisira saisir VER 36.81 135.74 0.40 0.34 ind:fut:3s; +saisirai saisir VER 36.81 135.74 0.17 0.07 ind:fut:1s; +saisirais saisir VER 36.81 135.74 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +saisirait saisir VER 36.81 135.74 0.03 0.47 cnd:pre:3s; +saisiras saisir VER 36.81 135.74 0.03 0.20 ind:fut:2s; +saisirent saisir VER 36.81 135.74 0.14 1.15 ind:pas:3p; +saisirez saisir VER 36.81 135.74 0.03 0.00 ind:fut:2p; +saisirions saisir VER 36.81 135.74 0.00 0.07 cnd:pre:1p; +saisirons saisir VER 36.81 135.74 0.04 0.20 ind:fut:1p; +saisiront saisir VER 36.81 135.74 0.04 0.07 ind:fut:3p; +saisis saisir VER m p 36.81 135.74 8.34 10.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +saisissable saisissable ADJ s 0.00 0.20 0.00 0.14 +saisissables saisissable ADJ p 0.00 0.20 0.00 0.07 +saisissaient saisir VER 36.81 135.74 0.01 1.42 ind:imp:3p; +saisissais saisir VER 36.81 135.74 0.16 0.81 ind:imp:1s;ind:imp:2s; +saisissait saisir VER 36.81 135.74 0.05 7.09 ind:imp:3s; +saisissant saisissant ADJ m s 0.61 5.00 0.33 2.23 +saisissante saisissant ADJ f s 0.61 5.00 0.11 2.43 +saisissantes saisissant ADJ f p 0.61 5.00 0.04 0.20 +saisissants saisissant ADJ m p 0.61 5.00 0.13 0.14 +saisisse saisir VER 36.81 135.74 0.19 0.47 sub:pre:1s;sub:pre:3s; +saisissement saisissement NOM m s 0.14 1.96 0.14 1.89 +saisissements saisissement NOM m p 0.14 1.96 0.00 0.07 +saisissent saisir VER 36.81 135.74 0.20 1.49 ind:pre:3p; +saisisses saisir VER 36.81 135.74 0.09 0.07 sub:pre:2s; +saisissez saisir VER 36.81 135.74 2.84 0.47 imp:pre:2p;ind:pre:2p; +saisissiez saisir VER 36.81 135.74 0.13 0.00 ind:imp:2p; +saisissions saisir VER 36.81 135.74 0.01 0.20 ind:imp:1p; +saisissons saisir VER 36.81 135.74 0.25 0.14 imp:pre:1p;ind:pre:1p; +saisit saisir VER 36.81 135.74 2.39 36.69 ind:pre:3s;ind:pas:3s; +saison saison NOM f s 31.95 49.59 28.72 35.54 +saisonnier saisonnier ADJ m s 0.55 1.42 0.17 0.54 +saisonniers saisonnier NOM m p 0.44 0.27 0.43 0.07 +saisonnière saisonnier ADJ f s 0.55 1.42 0.16 0.07 +saisonnières saisonnier ADJ f p 0.55 1.42 0.04 0.41 +saisons saison NOM f p 31.95 49.59 3.23 14.05 +sait savoir VER 4516.72 2003.58 401.46 245.00 ind:pre:3s; +saki saki NOM m s 0.05 0.00 0.05 0.00 +saké saké NOM m s 2.55 0.61 2.55 0.54 +sakés saké NOM m p 2.55 0.61 0.00 0.07 +sala saler VER 7.65 6.35 0.10 0.20 ind:pas:3s; +salace salace ADJ s 0.55 1.28 0.33 0.47 +salaces salace ADJ p 0.55 1.28 0.21 0.81 +salacité salacité NOM f s 0.00 0.20 0.00 0.14 +salacités salacité NOM f p 0.00 0.20 0.00 0.07 +salade salade NOM f s 21.80 24.26 15.88 15.41 +salader salader VER 0.00 0.07 0.00 0.07 inf; +salades salade NOM f p 21.80 24.26 5.92 8.85 +saladier saladier NOM m s 0.77 2.43 0.68 2.30 +saladiers saladier NOM m p 0.77 2.43 0.09 0.14 +salaient saler VER 7.65 6.35 0.01 0.07 ind:imp:3p; +salaire salaire NOM m s 26.43 12.50 22.99 8.92 +salaires salaire NOM m p 26.43 12.50 3.44 3.58 +salaison salaison NOM f s 0.14 1.22 0.14 0.27 +salaisons salaison NOM f p 0.14 1.22 0.00 0.95 +salait saler VER 7.65 6.35 0.01 0.14 ind:imp:3s; +salam salam NOM m s 0.03 0.00 0.03 0.00 +salamalec salamalec NOM m s 0.32 1.49 0.00 0.41 +salamalecs salamalec NOM m p 0.32 1.49 0.32 1.08 +salamandre salamandre NOM f s 0.50 1.62 0.48 1.35 +salamandres salamandre NOM f p 0.50 1.62 0.01 0.27 +salami salami NOM m s 2.06 0.47 2.04 0.34 +salamis salami NOM m p 2.06 0.47 0.02 0.14 +salanque salanque NOM f s 0.00 0.07 0.00 0.07 +salant salant ADJ m s 0.07 1.01 0.02 0.20 +salants salant ADJ m p 0.07 1.01 0.05 0.81 +salariait salarier VER 0.38 0.07 0.00 0.07 ind:imp:3s; +salariale salarial ADJ f s 0.18 0.00 0.17 0.00 +salariat salariat NOM m s 0.00 0.27 0.00 0.27 +salariaux salarial ADJ m p 0.18 0.00 0.01 0.00 +salarier salarier VER 0.38 0.07 0.14 0.00 inf; +salarié salarié ADJ m s 0.39 0.20 0.20 0.14 +salariée salarié NOM f s 0.52 0.95 0.12 0.07 +salariés salarié NOM m p 0.52 0.95 0.28 0.20 +salas saler VER 7.65 6.35 1.37 0.00 ind:pas:2s; +salat salat NOM f s 0.03 0.00 0.03 0.00 +salaud salaud NOM m s 87.40 37.84 66.74 24.86 +salauds salaud NOM m p 87.40 37.84 20.66 12.97 +salazariste salazariste ADJ s 0.00 0.07 0.00 0.07 +sale sale ADJ s 146.86 102.03 120.13 74.86 +salement salement ADV 2.28 6.01 2.28 6.01 +saler saler VER 7.65 6.35 0.30 0.41 inf; +salera saler VER 7.65 6.35 0.00 0.07 ind:fut:3s; +sales sale ADJ p 146.86 102.03 26.73 27.16 +saleté saleté NOM f s 17.55 12.91 11.96 9.66 +saletés saleté NOM f p 17.55 12.91 5.59 3.24 +saleur saleur NOM m s 0.00 0.07 0.00 0.07 +salez saler VER 7.65 6.35 0.11 0.14 imp:pre:2p;ind:pre:2p; +sali salir VER m s 17.51 15.95 2.66 2.36 par:pas; +salicaires salicaire NOM f p 0.00 0.07 0.00 0.07 +salicine salicine NOM f s 0.10 0.00 0.10 0.00 +salicole salicole ADJ s 0.00 0.07 0.00 0.07 +salicorne salicorne NOM f s 0.00 0.07 0.00 0.07 +salie salir VER f s 17.51 15.95 2.12 1.42 par:pas; +salies salir VER f p 17.51 15.95 0.10 0.74 par:pas; +saligaud saligaud NOM m s 3.36 1.01 2.46 0.95 +saligauds saligaud NOM m p 3.36 1.01 0.90 0.07 +salin salin ADJ m s 0.31 1.01 0.01 0.61 +saline salin ADJ f s 0.31 1.01 0.28 0.14 +salines salin NOM f p 0.02 2.16 0.02 2.09 +salingue salingue ADJ m s 0.00 2.03 0.00 1.55 +salingues salingue ADJ p 0.00 2.03 0.00 0.47 +salinité salinité NOM f s 0.06 0.07 0.06 0.07 +salins salin NOM m p 0.02 2.16 0.00 0.07 +salique salique ADJ f s 0.06 0.14 0.06 0.14 +salir salir VER 17.51 15.95 6.81 6.08 inf; +salira salir VER 17.51 15.95 0.06 0.00 ind:fut:3s; +salirai salir VER 17.51 15.95 0.09 0.07 ind:fut:1s; +saliraient salir VER 17.51 15.95 0.14 0.00 cnd:pre:3p; +salirais salir VER 17.51 15.95 0.07 0.00 cnd:pre:1s;cnd:pre:2s; +salirait salir VER 17.51 15.95 0.05 0.07 cnd:pre:3s; +salirez salir VER 17.51 15.95 0.02 0.00 ind:fut:2p; +salis salir VER m p 17.51 15.95 2.59 1.89 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +salissaient salir VER 17.51 15.95 0.03 0.54 ind:imp:3p; +salissait salir VER 17.51 15.95 0.26 0.68 ind:imp:3s; +salissant salissant ADJ m s 0.65 0.81 0.62 0.54 +salissante salissant ADJ f s 0.65 0.81 0.03 0.00 +salissantes salissant ADJ f p 0.65 0.81 0.00 0.14 +salissants salissant ADJ m p 0.65 0.81 0.00 0.14 +salisse salir VER 17.51 15.95 0.23 0.27 sub:pre:1s;sub:pre:3s; +salissent salir VER 17.51 15.95 0.56 0.41 ind:pre:3p; +salisses salir VER 17.51 15.95 0.01 0.00 sub:pre:2s; +salisseur salisseur ADJ m s 0.01 0.00 0.01 0.00 +salissez salir VER 17.51 15.95 0.44 0.00 imp:pre:2p;ind:pre:2p; +salissiez salir VER 17.51 15.95 0.10 0.00 ind:imp:2p; +salissure salissure NOM f s 0.02 0.74 0.02 0.61 +salissures salissure NOM f p 0.02 0.74 0.00 0.14 +salit salir VER 17.51 15.95 1.10 1.01 ind:pre:3s;ind:pas:3s; +salière salière NOM f s 0.28 2.03 0.20 1.28 +salières salière NOM f p 0.28 2.03 0.09 0.74 +saliva saliver VER 0.61 2.70 0.00 0.14 ind:pas:3s; +salivaient saliver VER 0.61 2.70 0.00 0.14 ind:imp:3p; +salivaire salivaire ADJ s 0.22 0.07 0.04 0.00 +salivaires salivaire ADJ f p 0.22 0.07 0.19 0.07 +salivais saliver VER 0.61 2.70 0.00 0.07 ind:imp:1s; +salivait saliver VER 0.61 2.70 0.01 0.47 ind:imp:3s; +salivant saliver VER 0.61 2.70 0.01 0.34 par:pre; +salivation salivation NOM f s 0.01 0.07 0.01 0.07 +salive salive NOM f s 4.94 18.65 4.91 18.51 +salivent saliver VER 0.61 2.70 0.02 0.07 ind:pre:3p; +saliver saliver VER 0.61 2.70 0.36 1.49 inf; +salives salive NOM f p 4.94 18.65 0.03 0.14 +saliveur saliveur NOM m s 0.00 0.07 0.00 0.07 +saliveuse saliveux ADJ f s 0.00 0.34 0.00 0.27 +saliveuses saliveux ADJ f p 0.00 0.34 0.00 0.07 +salivez saliver VER 0.61 2.70 0.01 0.00 ind:pre:2p; +salivé saliver VER m s 0.61 2.70 0.01 0.00 par:pas; +salle salle NOM f s 116.91 215.81 111.10 197.64 +salles salle NOM f p 116.91 215.81 5.81 18.18 +salmigondis salmigondis NOM m 0.00 0.34 0.00 0.34 +salmis salmis NOM m 0.00 0.47 0.00 0.47 +salmonelle salmonelle NOM f s 0.45 0.00 0.45 0.00 +salmonellose salmonellose NOM f s 0.02 0.00 0.02 0.00 +salmonidé salmonidé NOM m s 0.01 0.00 0.01 0.00 +saloir saloir NOM m s 0.10 0.74 0.10 0.68 +saloirs saloir NOM m p 0.10 0.74 0.00 0.07 +salon salon NOM m s 39.24 101.22 37.06 84.12 +salonnard salonnard NOM m s 0.00 0.07 0.00 0.07 +salonniers salonnier NOM m p 0.00 0.07 0.00 0.07 +salonnières salonnière NOM f p 0.14 0.00 0.14 0.00 +salons salon NOM m p 39.24 101.22 2.19 17.09 +saloon saloon NOM m s 5.08 0.47 4.65 0.34 +saloons saloon NOM m p 5.08 0.47 0.42 0.14 +salop salop NOM m s 0.82 0.54 0.73 0.41 +salopard salopard NOM m s 21.80 4.80 16.41 2.77 +salopards salopard NOM m p 21.80 4.80 5.38 2.03 +salope salope NOM f s 66.97 20.54 62.54 17.97 +salopent saloper VER 0.66 1.01 0.01 0.14 ind:pre:3p; +saloper saloper VER 0.66 1.01 0.16 0.47 inf; +saloperie saloperie NOM f s 25.27 19.46 19.38 13.04 +saloperies saloperie NOM f p 25.27 19.46 5.89 6.42 +salopes salope NOM f p 66.97 20.54 4.42 2.57 +salopette salopette NOM f s 0.59 5.61 0.53 4.73 +salopettes salopette NOM f p 0.59 5.61 0.07 0.88 +salopez saloper VER 0.66 1.01 0.01 0.00 ind:pre:2p; +salopiaud salopiaud NOM m s 0.16 0.14 0.16 0.00 +salopiauds salopiaud NOM m p 0.16 0.14 0.00 0.14 +salopiaux salopiau NOM m p 0.00 0.07 0.00 0.07 +salopiot salopiot NOM m s 0.11 0.74 0.09 0.20 +salopiots salopiot NOM m p 0.11 0.74 0.02 0.54 +salops salop NOM m p 0.82 0.54 0.09 0.14 +salopé saloper VER m s 0.66 1.01 0.45 0.20 par:pas; +salopée saloper VER f s 0.66 1.01 0.00 0.14 par:pas; +salopées saloper VER f p 0.66 1.01 0.01 0.07 par:pas; +salopés saloper VER m p 0.66 1.01 0.02 0.00 par:pas; +salpicon salpicon NOM m s 0.00 0.14 0.00 0.14 +salpingite salpingite NOM f s 0.01 0.00 0.01 0.00 +salpêtre salpêtre NOM m s 0.72 2.16 0.72 2.16 +salpêtreux salpêtreux ADJ m p 0.00 0.07 0.00 0.07 +salpêtrière salpêtrière NOM f s 0.00 0.07 0.00 0.07 +salpêtrées salpêtrer VER f p 0.00 0.14 0.00 0.07 par:pas; +salpêtrés salpêtrer VER m p 0.00 0.14 0.00 0.07 par:pas; +sals sal NOM m p 0.06 0.00 0.06 0.00 +salsa salsa NOM f s 1.43 0.14 1.43 0.14 +salsepareille salsepareille NOM f s 0.19 0.00 0.19 0.00 +salsifis salsifis NOM m 0.00 1.01 0.00 1.01 +saltimbanque saltimbanque NOM s 0.51 2.16 0.33 1.96 +saltimbanques saltimbanque NOM p 0.51 2.16 0.17 0.20 +salto salto NOM m s 0.08 0.00 0.08 0.00 +salé saler VER m s 7.65 6.35 1.33 0.95 par:pas; +salua saluer VER 45.09 67.64 0.48 10.27 ind:pas:3s; +saluai saluer VER 45.09 67.64 0.10 1.08 ind:pas:1s; +saluaient saluer VER 45.09 67.64 0.13 3.24 ind:imp:3p; +saluais saluer VER 45.09 67.64 0.08 0.41 ind:imp:1s;ind:imp:2s; +saluait saluer VER 45.09 67.64 0.69 5.34 ind:imp:3s; +saluant saluer VER 45.09 67.64 0.41 3.72 par:pre; +salubre salubre ADJ s 0.29 1.22 0.01 1.22 +salubres salubre ADJ p 0.29 1.22 0.28 0.00 +salubrité salubrité NOM f s 0.04 0.34 0.04 0.34 +salée salé ADJ f s 4.47 11.01 2.30 4.26 +salue saluer VER 45.09 67.64 17.53 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saluent saluer VER 45.09 67.64 1.56 2.43 ind:pre:3p; +saluer saluer VER 45.09 67.64 11.85 16.49 ind:pre:2p;inf; +saluera saluer VER 45.09 67.64 0.57 0.20 ind:fut:3s; +saluerai saluer VER 45.09 67.64 0.23 0.07 ind:fut:1s; +salueraient saluer VER 45.09 67.64 0.00 0.07 cnd:pre:3p; +saluerais saluer VER 45.09 67.64 0.03 0.00 cnd:pre:1s; +saluerait saluer VER 45.09 67.64 0.03 0.07 cnd:pre:3s; +salueras saluer VER 45.09 67.64 0.30 0.07 ind:fut:2s; +saluerons saluer VER 45.09 67.64 0.02 0.07 ind:fut:1p; +salueront saluer VER 45.09 67.64 0.06 0.07 ind:fut:3p; +salées salé ADJ f p 4.47 11.01 0.40 1.55 +salues saluer VER 45.09 67.64 0.99 0.07 ind:pre:2s; +salueur salueur NOM m s 0.01 0.00 0.01 0.00 +saluez saluer VER 45.09 67.64 4.48 0.68 imp:pre:2p;ind:pre:2p; +saluiez saluer VER 45.09 67.64 0.01 0.07 ind:imp:2p; +saluions saluer VER 45.09 67.64 0.00 0.14 ind:imp:1p; +saluâmes saluer VER 45.09 67.64 0.00 0.20 ind:pas:1p; +saluons saluer VER 45.09 67.64 2.09 0.61 imp:pre:1p;ind:pre:1p; +saluât saluer VER 45.09 67.64 0.00 0.14 sub:imp:3s; +salés salé ADJ m p 4.47 11.01 0.49 1.82 +salésienne salésien ADJ f s 0.00 0.07 0.00 0.07 +salut salut ONO 203.10 6.55 203.10 6.55 +salutaire salutaire ADJ s 1.29 2.50 1.28 2.16 +salutairement salutairement ADV 0.00 0.07 0.00 0.07 +salutaires salutaire ADJ p 1.29 2.50 0.01 0.34 +salutation salutation NOM f s 5.79 2.36 0.24 0.81 +salutations salutation NOM f p 5.79 2.36 5.55 1.55 +saluèrent saluer VER 45.09 67.64 0.00 2.84 ind:pas:3p; +salutiste salutiste NOM s 0.01 0.34 0.00 0.07 +salutistes salutiste NOM p 0.01 0.34 0.01 0.27 +saluts salut NOM m p 277.42 61.82 0.07 2.84 +salué saluer VER m s 45.09 67.64 2.36 5.61 par:pas; +saluée saluer VER f s 45.09 67.64 0.69 1.76 par:pas; +saluées saluer VER f p 45.09 67.64 0.14 0.07 par:pas; +salués saluer VER m p 45.09 67.64 0.25 0.88 par:pas; +salvadorien salvadorien NOM m s 0.78 0.00 0.14 0.00 +salvadorienne salvadorien ADJ f s 0.18 0.00 0.02 0.00 +salvadoriens salvadorien NOM m p 0.78 0.00 0.64 0.00 +salvateur salvateur ADJ m s 0.19 0.95 0.02 0.74 +salvateurs salvateur ADJ m p 0.19 0.95 0.01 0.00 +salvation salvation NOM f s 0.04 0.00 0.04 0.00 +salvatrice salvateur ADJ f s 0.19 0.95 0.16 0.20 +salve salve NOM f s 1.69 7.43 1.29 4.53 +salves salve NOM f p 1.69 7.43 0.40 2.91 +salvifique salvifique ADJ s 0.00 0.07 0.00 0.07 +salzbourgeoises salzbourgeois ADJ f p 0.00 0.07 0.00 0.07 +samaras samara NOM m p 0.00 0.07 0.00 0.07 +samaritain samaritain NOM m s 0.50 0.41 0.28 0.07 +samaritaine samaritaine NOM f s 0.27 1.08 0.27 1.08 +samaritains samaritain NOM m p 0.50 0.41 0.22 0.34 +samba samba NOM f s 2.91 7.50 2.91 7.50 +sambenito sambenito NOM m s 0.00 0.14 0.00 0.14 +sambo sambo NOM m s 0.20 0.00 0.20 0.00 +samedi samedi NOM m s 46.53 37.43 44.51 34.26 +samedis samedi NOM m p 46.53 37.43 2.03 3.18 +samizdats samizdat NOM m p 0.00 0.07 0.00 0.07 +sammy sammy NOM m s 0.13 0.00 0.13 0.00 +samoan samoan ADJ m s 0.15 0.00 0.13 0.00 +samoans samoan ADJ m p 0.15 0.00 0.02 0.00 +samouraï samouraï NOM m s 1.66 2.77 1.30 1.69 +samouraïs samouraï NOM m p 1.66 2.77 0.36 1.08 +samovar samovar NOM m s 0.45 3.78 0.45 2.23 +samovars samovar NOM m p 0.45 3.78 0.00 1.55 +samoyède samoyède NOM m s 0.00 0.07 0.00 0.07 +sampan sampan NOM m s 0.09 0.07 0.09 0.07 +sampang sampang NOM m s 0.14 0.34 0.14 0.27 +sampangs sampang NOM m p 0.14 0.34 0.00 0.07 +sample sample NOM m s 0.07 0.00 0.07 0.00 +sampler sampler NOM m s 0.10 0.00 0.10 0.00 +samurai samurai NOM m s 0.68 0.00 0.68 0.00 +san_francisco san_francisco NOM s 0.02 0.07 0.02 0.07 +sana sana NOM m s 0.53 2.43 0.53 2.30 +sanas sana NOM m p 0.53 2.43 0.00 0.14 +sanatorium sanatorium NOM m s 1.69 4.39 1.59 4.19 +sanatoriums sanatorium NOM m p 1.69 4.39 0.10 0.20 +sancerre sancerre NOM m s 0.00 0.20 0.00 0.20 +sanctifiai sanctifier VER 3.82 1.69 0.00 0.07 ind:pas:1s; +sanctifiait sanctifier VER 3.82 1.69 0.00 0.07 ind:imp:3s; +sanctifiante sanctifiant ADJ f s 0.00 0.14 0.00 0.14 +sanctification sanctification NOM f s 0.01 0.07 0.01 0.07 +sanctificatrice sanctificateur ADJ f s 0.00 0.07 0.00 0.07 +sanctifie sanctifier VER 3.82 1.69 0.25 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +sanctifier sanctifier VER 3.82 1.69 0.48 0.20 inf; +sanctifiez sanctifier VER 3.82 1.69 0.00 0.07 imp:pre:2p; +sanctifié sanctifier VER m s 3.82 1.69 2.87 0.81 par:pas; +sanctifiée sanctifier VER f s 3.82 1.69 0.06 0.14 par:pas; +sanctifiées sanctifier VER f p 3.82 1.69 0.01 0.07 par:pas; +sanctifiés sanctifier VER m p 3.82 1.69 0.14 0.07 par:pas; +sanction sanction NOM f s 2.35 4.86 1.23 2.30 +sanctionnaient sanctionner VER 1.01 2.91 0.00 0.14 ind:imp:3p; +sanctionnait sanctionner VER 1.01 2.91 0.00 0.14 ind:imp:3s; +sanctionnant sanctionner VER 1.01 2.91 0.01 0.07 par:pre; +sanctionne sanctionner VER 1.01 2.91 0.13 0.14 ind:pre:3s; +sanctionner sanctionner VER 1.01 2.91 0.15 0.74 inf; +sanctionnera sanctionner VER 1.01 2.91 0.03 0.00 ind:fut:3s; +sanctionnerait sanctionner VER 1.01 2.91 0.00 0.14 cnd:pre:3s; +sanctionnez sanctionner VER 1.01 2.91 0.01 0.00 ind:pre:2p; +sanctionnions sanctionner VER 1.01 2.91 0.00 0.07 ind:imp:1p; +sanctionnèrent sanctionner VER 1.01 2.91 0.00 0.07 ind:pas:3p; +sanctionné sanctionner VER m s 1.01 2.91 0.35 0.34 par:pas; +sanctionnée sanctionner VER f s 1.01 2.91 0.15 0.68 par:pas; +sanctionnées sanctionner VER f p 1.01 2.91 0.15 0.20 par:pas; +sanctionnés sanctionner VER m p 1.01 2.91 0.04 0.20 par:pas; +sanctions sanction NOM f p 2.35 4.86 1.12 2.57 +sanctuaire sanctuaire NOM m s 4.34 6.42 4.26 5.20 +sanctuaires sanctuaire NOM m p 4.34 6.42 0.08 1.22 +sanctus sanctus NOM m 0.23 0.68 0.23 0.68 +sandale sandale NOM f s 3.21 8.72 0.22 0.74 +sandales sandale NOM f p 3.21 8.72 2.99 7.97 +sandalettes sandalette NOM f p 0.01 0.61 0.01 0.61 +sandalier sandalier NOM m s 0.00 0.07 0.00 0.07 +sanderling sanderling NOM m s 0.03 0.00 0.03 0.00 +sandiniste sandiniste ADJ m s 0.02 0.00 0.02 0.00 +sandinistes sandiniste NOM p 0.11 0.00 0.11 0.00 +sandjak sandjak NOM m s 0.00 0.20 0.00 0.20 +sandow sandow NOM m s 0.00 0.27 0.00 0.07 +sandows sandow NOM m p 0.00 0.27 0.00 0.20 +sandre sandre NOM m s 0.02 0.07 0.01 0.00 +sandres sandre NOM m p 0.02 0.07 0.01 0.07 +sandwich sandwich NOM m s 0.00 9.93 0.00 8.18 +sandwiches sandwiche NOM m p 0.00 4.93 0.00 4.93 +sandwichs sandwich NOM m p 0.00 9.93 0.00 1.76 +sang_froid sang_froid NOM m 5.41 9.26 5.41 9.26 +sang sang NOM m s 304.75 207.30 304.30 205.20 +sangla sangler VER 0.86 6.49 0.00 0.07 ind:pas:3s; +sanglai sangler VER 0.86 6.49 0.00 0.07 ind:pas:1s; +sanglait sangler VER 0.86 6.49 0.00 0.20 ind:imp:3s; +sanglant sanglant ADJ m s 6.69 20.00 3.23 6.01 +sanglante sanglant ADJ f s 6.69 20.00 1.69 6.22 +sanglantes sanglant ADJ f p 6.69 20.00 0.86 3.58 +sanglants sanglant ADJ m p 6.69 20.00 0.91 4.19 +sangle sangle NOM f s 1.68 3.78 1.08 1.55 +sanglent sangler VER 0.86 6.49 0.00 0.07 ind:pre:3p; +sangler sangler VER 0.86 6.49 0.07 0.07 inf; +sangles sangle NOM f p 1.68 3.78 0.59 2.23 +sanglez sangler VER 0.86 6.49 0.04 0.00 imp:pre:2p; +sanglier sanglier NOM m s 6.05 8.78 4.59 5.34 +sangliers sanglier NOM m p 6.05 8.78 1.47 3.45 +sanglot sanglot NOM m s 3.79 29.12 0.30 9.59 +sanglota sangloter VER 2.27 14.66 0.04 1.69 ind:pas:3s; +sanglotai sangloter VER 2.27 14.66 0.00 0.34 ind:pas:1s; +sanglotaient sangloter VER 2.27 14.66 0.00 0.14 ind:imp:3p; +sanglotais sangloter VER 2.27 14.66 0.05 0.27 ind:imp:1s;ind:imp:2s; +sanglotait sangloter VER 2.27 14.66 0.28 3.45 ind:imp:3s; +sanglotant sangloter VER 2.27 14.66 0.05 2.03 par:pre; +sanglotante sanglotant ADJ f s 0.01 0.95 0.00 0.47 +sanglotants sanglotant ADJ m p 0.01 0.95 0.00 0.07 +sanglote sangloter VER 2.27 14.66 1.06 2.09 ind:pre:1s;ind:pre:3s; +sanglotent sangloter VER 2.27 14.66 0.32 0.27 ind:pre:3p; +sangloter sangloter VER 2.27 14.66 0.31 3.45 inf; +sanglotez sangloter VER 2.27 14.66 0.05 0.00 imp:pre:2p;ind:pre:2p; +sanglotâmes sangloter VER 2.27 14.66 0.00 0.07 ind:pas:1p; +sanglots sanglot NOM m p 3.79 29.12 3.49 19.53 +sangloté sangloter VER m s 2.27 14.66 0.11 0.81 par:pas; +sanglotés sangloter VER m p 2.27 14.66 0.00 0.07 par:pas; +sanglé sangler VER m s 0.86 6.49 0.04 2.43 par:pas; +sanglée sangler VER f s 0.86 6.49 0.04 0.81 par:pas; +sanglées sangler VER f p 0.86 6.49 0.00 0.20 par:pas; +sanglés sangler VER m p 0.86 6.49 0.00 1.35 par:pas; +sangria sangria NOM f s 0.72 0.34 0.72 0.34 +sangs sang NOM m p 304.75 207.30 0.45 2.09 +sangsue sangsue NOM f s 2.90 1.28 1.05 0.54 +sangsues sangsue NOM f p 2.90 1.28 1.85 0.74 +sanguin sanguin ADJ m s 8.84 3.78 4.33 2.30 +sanguinaire sanguinaire ADJ s 3.06 2.30 2.14 1.82 +sanguinaires sanguinaire ADJ p 3.06 2.30 0.91 0.47 +sanguine sanguin ADJ f s 8.84 3.78 1.81 0.95 +sanguines sanguin ADJ f p 8.84 3.78 0.27 0.00 +sanguinolent sanguinolent ADJ m s 0.28 3.18 0.05 0.95 +sanguinolente sanguinolent ADJ f s 0.28 3.18 0.07 1.22 +sanguinolentes sanguinolent ADJ f p 0.28 3.18 0.01 0.54 +sanguinolents sanguinolent ADJ m p 0.28 3.18 0.15 0.47 +sanguins sanguin ADJ m p 8.84 3.78 2.44 0.54 +sanhédrin sanhédrin NOM m s 0.00 0.41 0.00 0.41 +sanie sanie NOM f s 0.01 1.08 0.00 0.61 +sanies sanie NOM f p 0.01 1.08 0.01 0.47 +sanieuses sanieux ADJ f p 0.00 0.14 0.00 0.07 +sanieux sanieux ADJ m 0.00 0.14 0.00 0.07 +sanitaire sanitaire ADJ s 3.52 1.55 2.42 1.08 +sanitaires sanitaire ADJ p 3.52 1.55 1.11 0.47 +sans_coeur sans_coeur ADJ 0.01 0.07 0.01 0.07 +sans_culotte sans_culotte NOM m s 0.16 0.41 0.16 0.00 +sans_culotte sans_culotte NOM m p 0.16 0.41 0.00 0.41 +sans_culottide sans_culottide NOM f p 0.00 0.07 0.00 0.07 +sans_façon sans_façon NOM m 0.10 0.14 0.10 0.14 +sans_faute sans_faute NOM m 0.05 0.00 0.05 0.00 +sans_fil sans_fil NOM m 0.21 0.20 0.21 0.20 +sans_filiste sans_filiste NOM m s 0.00 0.74 0.00 0.61 +sans_filiste sans_filiste NOM m p 0.00 0.74 0.00 0.14 +sans_grade sans_grade NOM m 0.05 0.14 0.05 0.14 +sans_pareil sans_pareil NOM m 0.00 5.20 0.00 5.20 +sans sans PRE 1003.44 2224.12 1003.44 2224.12 +sanscrit sanscrit ADJ m s 0.05 0.20 0.04 0.14 +sanscrite sanscrit ADJ f s 0.05 0.20 0.01 0.00 +sanscrits sanscrit ADJ m p 0.05 0.20 0.00 0.07 +sanskrit sanskrit NOM m s 0.11 0.14 0.11 0.14 +sansonnet sansonnet NOM m s 0.32 0.47 0.32 0.41 +sansonnets sansonnet NOM m p 0.32 0.47 0.00 0.07 +santal santal NOM m s 0.15 1.08 0.15 0.81 +santals santal NOM m p 0.15 1.08 0.00 0.27 +santiag santiag NOM f s 0.08 1.49 0.01 0.07 +santiags santiag NOM m p 0.08 1.49 0.07 1.42 +santoche santoche NOM f s 0.00 0.07 0.00 0.07 +santon santon NOM m s 0.03 0.34 0.03 0.00 +santons santon NOM m p 0.03 0.34 0.00 0.34 +santé santé NOM f s 88.69 52.70 88.58 52.43 +santés santé NOM f p 88.69 52.70 0.11 0.27 +saoudien saoudien ADJ m s 0.60 0.14 0.37 0.00 +saoudienne saoudien ADJ f s 0.60 0.14 0.07 0.00 +saoudiennes saoudienne NOM f p 0.05 0.00 0.03 0.00 +saoudiens saoudien NOM m p 0.47 0.00 0.45 0.00 +saoudite saoudite ADJ f s 0.05 0.07 0.05 0.07 +saoul saoul ADJ m s 11.97 13.18 7.81 9.46 +saoula saouler VER 6.84 8.38 0.01 0.07 ind:pas:3s; +saoulaient saouler VER 6.84 8.38 0.01 0.27 ind:imp:3p; +saoulais saouler VER 6.84 8.38 0.01 0.14 ind:imp:1s; +saoulait saouler VER 6.84 8.38 0.11 0.88 ind:imp:3s; +saoulant saouler VER 6.84 8.38 0.04 0.07 par:pre; +saoulard saoulard NOM m s 0.17 0.07 0.17 0.07 +saoule saoul ADJ f s 11.97 13.18 2.87 2.09 +saoulent saouler VER 6.84 8.38 0.30 0.07 ind:pre:3p; +saouler saouler VER 6.84 8.38 2.21 1.82 inf; +saoulerait saouler VER 6.84 8.38 0.01 0.14 cnd:pre:3s; +saouleras saouler VER 6.84 8.38 0.00 0.07 ind:fut:2s; +saoulerez saouler VER 6.84 8.38 0.02 0.00 ind:fut:2p; +saoulerie saoulerie NOM f s 0.03 0.47 0.03 0.27 +saouleries saoulerie NOM f p 0.03 0.47 0.00 0.20 +saoules saouler VER 6.84 8.38 0.83 0.07 ind:pre:2s; +saoulez saouler VER 6.84 8.38 0.14 0.20 imp:pre:2p;ind:pre:2p; +saoulions saouler VER 6.84 8.38 0.00 0.07 ind:imp:1p; +saouls saoul ADJ m p 11.97 13.18 1.24 1.55 +saoulé saouler VER m s 6.84 8.38 0.89 1.89 par:pas; +saoulée saouler VER f s 6.84 8.38 0.30 0.41 par:pas; +saoulées saouler VER f p 6.84 8.38 0.01 0.00 par:pas; +saoulés saouler VER m p 6.84 8.38 0.07 0.68 par:pas; +sapaient saper VER 3.23 7.91 0.00 0.20 ind:imp:3p; +sapait saper VER 3.23 7.91 0.03 0.41 ind:imp:3s; +sapajou sapajou NOM m s 0.01 0.47 0.01 0.41 +sapajous sapajou NOM m p 0.01 0.47 0.00 0.07 +sape saper VER 3.23 7.91 0.35 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sapement sapement NOM m s 0.00 0.95 0.00 0.61 +sapements sapement NOM m p 0.00 0.95 0.00 0.34 +sapent saper VER 3.23 7.91 0.08 0.27 ind:pre:3p; +saper saper VER 3.23 7.91 1.13 1.22 inf; +saperai saper VER 3.23 7.91 0.02 0.00 ind:fut:1s; +saperlipopette saperlipopette ONO 0.62 0.07 0.62 0.07 +saperlotte saperlotte NOM m s 0.07 0.14 0.07 0.14 +sapes sape NOM f p 0.59 5.95 0.48 1.82 +sapeur_pompier sapeur_pompier NOM m s 0.11 0.61 0.07 0.00 +sapeur sapeur NOM m s 0.78 4.80 0.56 1.69 +sapeur_pompier sapeur_pompier NOM m p 0.11 0.61 0.04 0.61 +sapeurs sapeur NOM m p 0.78 4.80 0.21 3.11 +sapez saper VER 3.23 7.91 0.08 0.00 ind:pre:2p; +saphir saphir NOM m s 0.64 1.96 0.34 1.22 +saphirs saphir NOM m p 0.64 1.96 0.30 0.74 +saphisme saphisme NOM m s 0.00 0.07 0.00 0.07 +saphène saphène ADJ f s 0.07 0.00 0.07 0.00 +sapide sapide ADJ m s 0.00 0.20 0.00 0.14 +sapides sapide ADJ p 0.00 0.20 0.00 0.07 +sapidité sapidité NOM f s 0.00 0.07 0.00 0.07 +sapien sapiens ADJ m s 0.64 0.68 0.09 0.00 +sapience sapience NOM f s 0.00 0.07 0.00 0.07 +sapiens sapiens ADJ m p 0.64 0.68 0.56 0.68 +sapin sapin NOM m s 6.91 26.28 5.95 9.86 +sapines sapine NOM f p 0.00 0.27 0.00 0.27 +sapinette sapinette NOM f s 0.00 0.20 0.00 0.07 +sapinettes sapinette NOM f p 0.00 0.20 0.00 0.14 +sapinière sapinière NOM f s 0.00 1.42 0.00 0.81 +sapinières sapinière NOM f p 0.00 1.42 0.00 0.61 +sapins sapin NOM m p 6.91 26.28 0.95 16.42 +saponaires saponaire NOM f p 0.00 0.07 0.00 0.07 +saponification saponification NOM f s 0.03 0.14 0.03 0.14 +saponifiées saponifier VER f p 0.00 0.07 0.00 0.07 par:pas; +saponite saponite NOM f s 0.02 0.27 0.02 0.27 +sapotille sapotille NOM f s 0.10 0.00 0.10 0.00 +sapotillier sapotillier NOM m s 0.00 0.27 0.00 0.27 +sapristi sapristi ONO 1.69 0.68 1.69 0.68 +sapé saper VER m s 3.23 7.91 0.99 2.84 par:pas; +sapée saper VER f s 3.23 7.91 0.20 1.55 par:pas; +sapées saper VER f p 3.23 7.91 0.02 0.14 par:pas; +sapés saper VER m p 3.23 7.91 0.10 0.61 par:pas; +saque saquer VER 1.37 1.08 0.03 0.07 ind:pre:1s; +saquent saquer VER 1.37 1.08 0.14 0.00 ind:pre:3p; +saquer saquer VER 1.37 1.08 0.87 0.68 inf; +saqué saquer VER m s 1.37 1.08 0.20 0.14 par:pas; +saquée saquer VER f s 1.37 1.08 0.01 0.07 par:pas; +saqués saquer VER m p 1.37 1.08 0.12 0.14 par:pas; +sar sar NOM m s 0.00 0.07 0.00 0.07 +sara sara NOM f s 0.10 0.00 0.10 0.00 +sarabande sarabande NOM f s 0.31 1.89 0.21 1.69 +sarabandes sarabande NOM f p 0.31 1.89 0.10 0.20 +sarbacane sarbacane NOM f s 0.21 0.95 0.14 0.47 +sarbacanes sarbacane NOM f p 0.21 0.95 0.07 0.47 +sarcasme sarcasme NOM m s 2.37 4.66 1.13 1.35 +sarcasmes sarcasme NOM m p 2.37 4.66 1.24 3.31 +sarcastique sarcastique ADJ s 2.23 2.84 2.05 2.43 +sarcastiquement sarcastiquement ADV 0.00 0.20 0.00 0.20 +sarcastiques sarcastique ADJ p 2.23 2.84 0.18 0.41 +sarcelle sarcelle NOM f s 0.16 0.81 0.16 0.27 +sarcelles sarcelle NOM f p 0.16 0.81 0.00 0.54 +sarcine sarcine NOM f s 0.01 0.00 0.01 0.00 +sarclage sarclage NOM m s 0.00 0.07 0.00 0.07 +sarclait sarcler VER 0.13 1.89 0.01 0.47 ind:imp:3s; +sarclant sarcler VER 0.13 1.89 0.00 0.27 par:pre; +sarcle sarcler VER 0.13 1.89 0.01 0.07 ind:pre:3s; +sarclent sarcler VER 0.13 1.89 0.00 0.07 ind:pre:3p; +sarcler sarcler VER 0.13 1.89 0.10 0.95 inf; +sarclette sarclette NOM f s 0.01 0.00 0.01 0.00 +sarcleuse sarcleur NOM f s 0.06 0.00 0.06 0.00 +sarcloir sarcloir NOM m s 0.00 0.14 0.00 0.14 +sarclées sarcler VER f p 0.13 1.89 0.01 0.07 par:pas; +sarcoïdose sarcoïdose NOM f s 0.10 0.00 0.10 0.00 +sarcome sarcome NOM m s 0.34 0.00 0.34 0.00 +sarcophage sarcophage NOM m s 2.43 1.28 2.34 0.95 +sarcophages sarcophage NOM m p 2.43 1.28 0.09 0.34 +sardanapalesques sardanapalesque ADJ m p 0.00 0.07 0.00 0.07 +sardanes sardane NOM f p 0.00 0.07 0.00 0.07 +sarde sarde ADJ m s 0.31 0.00 0.31 0.00 +sardinaient sardiner VER 0.00 0.07 0.00 0.07 ind:imp:3p; +sardine sardine NOM f s 3.88 8.38 0.84 1.28 +sardines sardine NOM f p 3.88 8.38 3.04 7.09 +sardiniers sardinier NOM m p 0.01 0.07 0.01 0.07 +sardoine sardoine NOM f s 0.00 0.07 0.00 0.07 +sardonique sardonique ADJ s 0.10 1.01 0.10 0.95 +sardoniquement sardoniquement ADV 0.00 0.07 0.00 0.07 +sardoniques sardonique ADJ m p 0.10 1.01 0.00 0.07 +sargasse sargasse NOM f s 0.00 0.14 0.00 0.07 +sargasses sargasse NOM f p 0.00 0.14 0.00 0.07 +sari sari NOM m s 0.98 0.20 0.72 0.14 +sarigue sarigue NOM f s 0.00 0.07 0.00 0.07 +sarin sarin ADJ f s 0.25 0.00 0.25 0.00 +saris sari NOM m p 0.98 0.20 0.26 0.07 +sarment sarment NOM m s 0.11 1.28 0.11 0.27 +sarments sarment NOM m p 0.11 1.28 0.00 1.01 +sarong sarong NOM m s 0.19 0.00 0.19 0.00 +saroual saroual NOM m s 0.01 0.07 0.01 0.07 +sarouel sarouel NOM m s 0.00 0.14 0.00 0.14 +sarracénie sarracénie NOM f s 0.01 0.00 0.01 0.00 +sarrasin sarrasin NOM m s 0.20 0.68 0.20 0.41 +sarrasine sarrasin ADJ f s 0.30 0.74 0.16 0.20 +sarrasines sarrasin ADJ f p 0.30 0.74 0.00 0.07 +sarrasins sarrasin ADJ m p 0.30 0.74 0.00 0.20 +sarrau sarrau NOM m s 0.14 1.42 0.04 1.28 +sarraus sarrau NOM m p 0.14 1.42 0.10 0.14 +sarreau sarreau NOM m s 0.00 0.20 0.00 0.20 +sarriette sarriette NOM f s 0.01 0.07 0.01 0.07 +sarrois sarrois ADJ m 0.00 0.20 0.00 0.14 +sarroise sarrois ADJ f s 0.00 0.20 0.00 0.07 +sarrussophone sarrussophone NOM m s 0.00 0.07 0.00 0.07 +sas sas NOM m 3.26 0.74 3.26 0.74 +sashimi sashimi NOM m s 0.23 0.00 0.23 0.00 +sassafras sassafras NOM m 0.07 0.00 0.07 0.00 +sassanide sassanide ADJ f s 0.00 0.20 0.00 0.14 +sassanides sassanide ADJ p 0.00 0.20 0.00 0.07 +sasse sasser VER 0.14 0.07 0.14 0.07 ind:pre:3s; +sasseur sasseur NOM m s 0.54 0.00 0.54 0.00 +satan satan NOM m s 0.42 0.14 0.42 0.14 +satana sataner VER 1.12 0.81 0.01 0.34 ind:pas:3s; +satanaient sataner VER 1.12 0.81 0.00 0.07 ind:imp:3p; +satanas sataner VER 1.12 0.81 0.64 0.14 ind:pas:2s; +sataner sataner VER 1.12 0.81 0.00 0.20 inf; +satanique satanique ADJ s 3.11 1.49 1.80 0.95 +sataniques satanique ADJ p 3.11 1.49 1.31 0.54 +sataniser sataniser VER 0.12 0.00 0.12 0.00 inf; +satanisme satanisme NOM m s 0.31 0.34 0.31 0.34 +sataniste sataniste ADJ s 0.21 0.07 0.21 0.07 +satané satané ADJ m s 6.89 2.36 3.16 0.81 +satanée satané ADJ f s 6.89 2.36 2.08 0.74 +satanées satané ADJ f p 6.89 2.36 0.53 0.41 +satanés satané ADJ m p 6.89 2.36 1.12 0.41 +satelliser satelliser VER 0.02 0.07 0.02 0.00 inf; +satellisée satelliser VER f s 0.02 0.07 0.00 0.07 par:pas; +satellitaire satellitaire ADJ s 0.02 0.00 0.02 0.00 +satellite satellite NOM m s 13.41 1.96 10.63 0.81 +satellites_espion satellites_espion NOM m p 0.02 0.00 0.02 0.00 +satellites satellite NOM m p 13.41 1.96 2.79 1.15 +sati sati NOM m s 0.02 0.00 0.02 0.00 +satiation satiation NOM f s 0.00 0.07 0.00 0.07 +satin satin NOM m s 2.65 8.58 2.65 8.11 +satinait satiner VER 0.07 0.41 0.00 0.07 ind:imp:3s; +satine satiner VER 0.07 0.41 0.06 0.00 imp:pre:2s; +satinette satinette NOM f s 0.00 0.41 0.00 0.41 +satins satin NOM m p 2.65 8.58 0.00 0.47 +satiné satiné ADJ m s 0.11 1.35 0.03 0.20 +satinée satiné ADJ f s 0.11 1.35 0.05 0.68 +satinées satiné ADJ f p 0.11 1.35 0.02 0.27 +satinés satiné ADJ m p 0.11 1.35 0.01 0.20 +satire satire NOM f s 0.35 0.47 0.27 0.41 +satires satire NOM f p 0.35 0.47 0.08 0.07 +satirique satirique ADJ s 0.24 0.68 0.22 0.41 +satiriques satirique ADJ p 0.24 0.68 0.02 0.27 +satirisaient satiriser VER 0.00 0.07 0.00 0.07 ind:imp:3p; +satiriste satiriste NOM s 0.12 0.07 0.12 0.07 +satisfaction satisfaction NOM f s 7.37 41.22 7.03 37.09 +satisfactions satisfaction NOM f p 7.37 41.22 0.34 4.12 +satisfaire satisfaire VER 25.10 38.11 9.60 12.36 ind:pre:2p;inf; +satisfais satisfaire VER 25.10 38.11 0.33 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +satisfaisaient satisfaire VER 25.10 38.11 0.04 0.07 ind:imp:3p; +satisfaisais satisfaire VER 25.10 38.11 0.18 0.20 ind:imp:1s;ind:imp:2s; +satisfaisait satisfaire VER 25.10 38.11 0.13 2.43 ind:imp:3s; +satisfaisant satisfaisant ADJ m s 2.64 8.18 1.35 2.64 +satisfaisante satisfaisant ADJ f s 2.64 8.18 0.78 3.92 +satisfaisantes satisfaisant ADJ f p 2.64 8.18 0.23 1.15 +satisfaisants satisfaisant ADJ m p 2.64 8.18 0.29 0.47 +satisfait satisfaire VER m s 25.10 38.11 7.89 13.45 ind:pre:3s;par:pas;par:pas; +satisfaite satisfaire VER f s 25.10 38.11 2.29 4.53 par:pas; +satisfaites satisfaire VER f p 25.10 38.11 0.29 0.27 ind:pre:2p;par:pas; +satisfaits satisfaire VER m p 25.10 38.11 2.30 1.96 par:pas; +satisfasse satisfaire VER 25.10 38.11 0.07 0.14 sub:pre:3s; +satisfassent satisfaire VER 25.10 38.11 0.01 0.07 sub:pre:3p; +satisfecit satisfecit NOM m 0.02 0.34 0.02 0.34 +satisfera satisfaire VER 25.10 38.11 0.52 0.07 ind:fut:3s; +satisferai satisfaire VER 25.10 38.11 0.15 0.00 ind:fut:1s; +satisferaient satisfaire VER 25.10 38.11 0.04 0.00 cnd:pre:3p; +satisferais satisfaire VER 25.10 38.11 0.14 0.00 cnd:pre:1s; +satisferait satisfaire VER 25.10 38.11 0.28 0.20 cnd:pre:3s; +satisferiez satisfaire VER 25.10 38.11 0.03 0.00 cnd:pre:2p; +satisferons satisfaire VER 25.10 38.11 0.23 0.00 ind:fut:1p; +satisferont satisfaire VER 25.10 38.11 0.02 0.07 ind:fut:3p; +satisfirent satisfaire VER 25.10 38.11 0.00 0.14 ind:pas:3p; +satisfis satisfaire VER 25.10 38.11 0.00 0.07 ind:pas:1s; +satisfit satisfaire VER 25.10 38.11 0.01 0.47 ind:pas:3s; +satisfont satisfaire VER 25.10 38.11 0.43 0.20 ind:pre:3p; +satiété satiété NOM f s 0.43 1.42 0.43 1.42 +satonne satonner VER 0.00 0.54 0.00 0.07 ind:pre:3s; +satonner satonner VER 0.00 0.54 0.00 0.34 inf; +satonné satonner VER m s 0.00 0.54 0.00 0.14 par:pas; +satrape satrape NOM m s 0.02 0.88 0.02 0.34 +satrapes satrape NOM m p 0.02 0.88 0.00 0.54 +satrapie satrapie NOM f s 0.01 0.00 0.01 0.00 +saturait saturer VER 1.81 4.32 0.01 0.27 ind:imp:3s; +saturant saturer VER 1.81 4.32 0.00 0.14 par:pre; +saturation saturation NOM f s 1.08 1.08 1.08 1.08 +sature saturer VER 1.81 4.32 0.47 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saturent saturer VER 1.81 4.32 0.01 0.00 ind:pre:3p; +saturer saturer VER 1.81 4.32 0.29 0.27 inf; +saturnales saturnales NOM f p 0.14 0.34 0.14 0.34 +saturnien saturnien ADJ m s 0.00 0.20 0.00 0.07 +saturniennes saturnienne NOM f p 0.00 0.07 0.00 0.07 +saturniens saturnien ADJ m p 0.00 0.20 0.00 0.14 +saturnisme saturnisme NOM m s 0.00 0.07 0.00 0.07 +saturons saturer VER 1.81 4.32 0.01 0.00 ind:pre:1p; +saturé saturer VER m s 1.81 4.32 0.50 1.82 par:pas; +saturée saturer VER f s 1.81 4.32 0.06 1.42 par:pas; +saturées saturer VER f p 1.81 4.32 0.30 0.14 par:pas; +saturés saturer VER m p 1.81 4.32 0.16 0.20 par:pas; +satyre satyre NOM m s 0.99 5.54 0.42 3.85 +satyres satyre NOM m p 0.99 5.54 0.57 1.69 +satyrique satyrique ADJ s 0.01 0.00 0.01 0.00 +sauce sauce NOM f s 19.24 13.72 18.33 11.76 +saucent saucer VER 0.69 2.30 0.00 0.07 ind:pre:3p; +saucer saucer VER 0.69 2.30 0.06 0.34 inf; +sauces sauce NOM f p 19.24 13.72 0.91 1.96 +saucier saucier NOM m s 0.14 0.00 0.14 0.00 +sauciflard sauciflard NOM m s 0.00 0.34 0.00 0.34 +saucisse saucisse NOM f s 15.89 8.78 7.37 3.18 +saucisses saucisse NOM f p 15.89 8.78 8.53 5.61 +saucisson saucisson NOM m s 2.09 8.04 2.08 6.08 +saucissonnage saucissonnage NOM m s 0.00 0.14 0.00 0.07 +saucissonnages saucissonnage NOM m p 0.00 0.14 0.00 0.07 +saucissonnant saucissonner VER 0.03 0.95 0.00 0.07 par:pre; +saucissonne saucissonner VER 0.03 0.95 0.00 0.14 ind:pre:3s; +saucissonner saucissonner VER 0.03 0.95 0.01 0.20 inf; +saucissonné saucissonner VER m s 0.03 0.95 0.01 0.20 par:pas; +saucissonnée saucissonner VER f s 0.03 0.95 0.00 0.20 par:pas; +saucissonnés saucissonner VER m p 0.03 0.95 0.01 0.14 par:pas; +saucissons saucisson NOM m p 2.09 8.04 0.01 1.96 +saucière saucière NOM f s 0.27 0.47 0.24 0.34 +saucières saucière NOM f p 0.27 0.47 0.03 0.14 +saucée saucée NOM f s 0.13 0.00 0.13 0.00 +sauf_conduit sauf_conduit NOM m s 1.14 1.01 0.77 0.88 +sauf_conduit sauf_conduit NOM m p 1.14 1.01 0.37 0.14 +sauf sauf PRE 108.54 83.99 108.54 83.99 +saufs sauf ADJ m p 12.52 6.69 2.38 0.74 +sauge sauge NOM f s 0.81 0.74 0.81 0.74 +saugrenu saugrenu ADJ m s 0.62 7.23 0.20 2.09 +saugrenue saugrenu ADJ f s 0.62 7.23 0.32 2.84 +saugrenues saugrenu ADJ f p 0.62 7.23 0.09 1.42 +saugrenus saugrenu ADJ m p 0.62 7.23 0.01 0.88 +saulaie saulaie NOM f s 0.00 0.20 0.00 0.07 +saulaies saulaie NOM f p 0.00 0.20 0.00 0.14 +saule saule NOM m s 1.90 8.65 1.27 1.96 +saules saule NOM m p 1.90 8.65 0.63 6.69 +saulnier saulnier NOM m s 0.00 0.07 0.00 0.07 +saumon saumon NOM m s 5.92 4.73 5.28 3.65 +saumoneau saumoneau NOM m s 0.00 0.07 0.00 0.07 +saumonette saumonette NOM f s 0.00 0.14 0.00 0.14 +saumons saumon NOM m p 5.92 4.73 0.64 1.08 +saumoné saumoné ADJ m s 0.00 0.47 0.00 0.07 +saumonée saumoné ADJ f s 0.00 0.47 0.00 0.20 +saumonées saumoné ADJ f p 0.00 0.47 0.00 0.20 +saumâtre saumâtre ADJ s 0.41 2.03 0.20 1.49 +saumâtres saumâtre ADJ p 0.41 2.03 0.21 0.54 +saumurage saumurage NOM m s 0.01 0.00 0.01 0.00 +saumure saumure NOM f s 0.42 1.76 0.42 1.76 +saumurer saumurer VER 0.01 0.00 0.01 0.00 inf; +saumurées saumuré ADJ f p 0.14 0.00 0.14 0.00 +sauna sauna NOM m s 3.85 1.08 3.45 0.61 +saunas sauna NOM m p 3.85 1.08 0.40 0.47 +saunier saunier NOM m s 0.00 0.68 0.00 0.34 +sauniers saunier NOM m p 0.00 0.68 0.00 0.34 +saunières saunière NOM f p 0.00 0.07 0.00 0.07 +saupoudra saupoudrer VER 0.57 4.80 0.00 0.41 ind:pas:3s; +saupoudrage saupoudrage NOM m s 0.02 0.00 0.02 0.00 +saupoudrai saupoudrer VER 0.57 4.80 0.00 0.07 ind:pas:1s; +saupoudraient saupoudrer VER 0.57 4.80 0.00 0.14 ind:imp:3p; +saupoudrait saupoudrer VER 0.57 4.80 0.00 0.34 ind:imp:3s; +saupoudrant saupoudrer VER 0.57 4.80 0.03 0.47 par:pre; +saupoudre saupoudrer VER 0.57 4.80 0.16 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +saupoudrer saupoudrer VER 0.57 4.80 0.10 0.27 inf; +saupoudreur saupoudreur NOM m s 0.02 0.00 0.02 0.00 +saupoudrez saupoudrer VER 0.57 4.80 0.03 0.14 imp:pre:2p;ind:pre:2p; +saupoudriez saupoudrer VER 0.57 4.80 0.00 0.07 ind:imp:2p; +saupoudrons saupoudrer VER 0.57 4.80 0.02 0.00 imp:pre:1p; +saupoudré saupoudrer VER m s 0.57 4.80 0.12 0.74 par:pas; +saupoudrée saupoudrer VER f s 0.57 4.80 0.04 0.81 par:pas; +saupoudrées saupoudrer VER f p 0.57 4.80 0.01 0.34 par:pas; +saupoudrés saupoudrer VER m p 0.57 4.80 0.06 0.61 par:pas; +saur saur ADJ m s 0.09 0.88 0.08 0.34 +saura savoir VER 4516.72 2003.58 34.23 14.93 ind:fut:3s;ind:pas:3s; +saurai savoir VER 4516.72 2003.58 18.40 8.85 ind:fut:1s; +sauraient savoir VER 4516.72 2003.58 1.48 5.47 cnd:pre:3p; +saurais savoir VER 4516.72 2003.58 13.01 10.14 cnd:pre:1s;cnd:pre:2s; +saurait savoir VER 4516.72 2003.58 11.90 33.92 cnd:pre:3s; +sauras savoir VER 4516.72 2003.58 15.22 4.59 ind:fut:2s;ind:pas:2s; +saurer saurer VER 22.06 10.27 0.00 0.41 inf; +sauret sauret ADJ m s 0.00 0.47 0.00 0.27 +saurets sauret ADJ m p 0.00 0.47 0.00 0.20 +saurez saurer VER 22.06 10.27 4.76 2.23 ind:pre:2p; +sauri saurir VER m s 0.01 0.00 0.01 0.00 par:pas; +saurien saurien NOM m s 0.01 0.47 0.01 0.20 +sauriens saurien NOM m p 0.01 0.47 0.00 0.27 +sauriez saurer VER 22.06 10.27 3.29 0.74 ind:imp:2p;sub:pre:2p; +saurin saurin NOM m s 0.00 0.07 0.00 0.07 +saurions saurer VER 22.06 10.27 0.56 0.74 ind:imp:1p; +saurons saurer VER 22.06 10.27 3.17 1.76 imp:pre:1p;ind:pre:1p; +sauront savoir VER 4516.72 2003.58 7.72 2.77 ind:fut:3p; +saurs saur ADJ m p 0.09 0.88 0.01 0.54 +saussaies saussaie NOM f p 0.00 1.22 0.00 1.22 +saut_de_lit saut_de_lit NOM m s 0.00 0.20 0.00 0.14 +saut saut NOM m s 14.77 17.03 13.53 14.26 +sauta sauter VER 123.04 134.59 0.84 15.27 ind:pas:3s; +sautai sauter VER 123.04 134.59 0.04 2.50 ind:pas:1s; +sautaient sauter VER 123.04 134.59 0.15 4.12 ind:imp:3p; +sautais sauter VER 123.04 134.59 1.00 0.88 ind:imp:1s;ind:imp:2s; +sautait sauter VER 123.04 134.59 1.81 9.39 ind:imp:3s; +sautant sauter VER 123.04 134.59 1.60 8.92 par:pre; +sautante sautant ADJ f s 0.04 0.14 0.01 0.14 +saute_mouton saute_mouton NOM m 0.14 0.54 0.14 0.54 +saute_ruisseau saute_ruisseau NOM m s 0.00 0.07 0.00 0.07 +saute sauter VER 123.04 134.59 22.66 19.39 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +sautelant sauteler VER 0.00 0.07 0.00 0.07 par:pre; +sautelle sautelle NOM f s 0.01 0.00 0.01 0.00 +sautent sauter VER 123.04 134.59 2.09 4.59 ind:pre:3p; +sauter sauter VER 123.04 134.59 57.89 43.31 inf; +sautera sauter VER 123.04 134.59 0.90 0.41 ind:fut:3s; +sauterai sauter VER 123.04 134.59 1.05 0.20 ind:fut:1s; +sauteraient sauter VER 123.04 134.59 0.06 0.14 cnd:pre:3p; +sauterais sauter VER 123.04 134.59 0.59 0.14 cnd:pre:1s;cnd:pre:2s; +sauterait sauter VER 123.04 134.59 0.39 0.74 cnd:pre:3s; +sauteras sauter VER 123.04 134.59 0.60 0.00 ind:fut:2s; +sauterelle sauterelle NOM f s 3.29 1.62 1.63 1.62 +sauterelles sauterelle NOM f p 3.29 1.62 1.67 0.00 +sauterez sauter VER 123.04 134.59 0.23 0.00 ind:fut:2p; +sauterie sauterie NOM f s 0.63 0.41 0.51 0.14 +sauteries sauterie NOM f p 0.63 0.41 0.12 0.27 +sauteriez sauter VER 123.04 134.59 0.04 0.00 cnd:pre:2p; +sauternes sauternes NOM m 0.67 1.08 0.67 1.08 +sauterons sauter VER 123.04 134.59 0.19 0.07 ind:fut:1p; +sauteront sauter VER 123.04 134.59 0.33 0.47 ind:fut:3p; +sautes sauter VER 123.04 134.59 3.25 0.61 ind:pre:2s; +sauteur sauteur NOM m s 1.12 1.89 0.66 0.61 +sauteurs sauteur NOM m p 1.12 1.89 0.10 0.20 +sauteuse sauteur NOM f s 1.12 1.89 0.33 0.95 +sauteuses sauteur NOM f p 1.12 1.89 0.03 0.14 +sautez sauter VER 123.04 134.59 5.62 0.54 imp:pre:2p;ind:pre:2p; +sauça saucer VER 0.69 2.30 0.00 0.20 ind:pas:3s; +sauçant saucer VER 0.69 2.30 0.00 0.14 par:pre; +sauçons saucer VER 0.69 2.30 0.00 0.07 ind:pre:1p; +sautiez sauter VER 123.04 134.59 0.36 0.00 ind:imp:2p; +sautilla sautiller VER 1.48 7.97 0.00 0.41 ind:pas:3s; +sautillaient sautiller VER 1.48 7.97 0.11 0.54 ind:imp:3p; +sautillais sautiller VER 1.48 7.97 0.04 0.07 ind:imp:1s; +sautillait sautiller VER 1.48 7.97 0.01 1.69 ind:imp:3s; +sautillant sautiller VER 1.48 7.97 0.16 2.64 par:pre; +sautillante sautillant ADJ f s 0.11 2.57 0.06 1.15 +sautillantes sautillant ADJ f p 0.11 2.57 0.00 0.41 +sautillants sautillant ADJ m p 0.11 2.57 0.02 0.20 +sautille sautiller VER 1.48 7.97 0.73 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sautillement sautillement NOM m s 0.03 0.74 0.00 0.34 +sautillements sautillement NOM m p 0.03 0.74 0.03 0.41 +sautillent sautiller VER 1.48 7.97 0.02 0.34 ind:pre:3p; +sautiller sautiller VER 1.48 7.97 0.30 0.81 inf; +sautilles sautiller VER 1.48 7.97 0.05 0.00 ind:pre:2s; +sautillez sautiller VER 1.48 7.97 0.04 0.00 imp:pre:2p;ind:pre:2p; +sautillèrent sautiller VER 1.48 7.97 0.01 0.14 ind:pas:3p; +sautillé sautiller VER m s 1.48 7.97 0.01 0.07 par:pas; +sautions sauter VER 123.04 134.59 0.13 0.27 ind:imp:1p; +sautoir sautoir NOM m s 0.18 2.70 0.18 2.50 +sautoirs sautoir NOM m p 0.18 2.70 0.00 0.20 +sautâmes sauter VER 123.04 134.59 0.00 0.14 ind:pas:1p; +sauton sauton NOM m s 0.14 0.20 0.09 0.00 +sautons sauter VER 123.04 134.59 0.54 0.47 imp:pre:1p;ind:pre:1p; +sautât sauter VER 123.04 134.59 0.00 0.07 sub:imp:3s; +saut_de_lit saut_de_lit NOM m p 0.00 0.20 0.00 0.07 +sauts saut NOM m p 14.77 17.03 1.23 2.77 +sautèrent sauter VER 123.04 134.59 0.01 2.43 ind:pas:3p; +sauté sauter VER m s 123.04 134.59 18.77 18.78 par:pas; +sautée sauter VER f s 123.04 134.59 1.46 0.41 par:pas; +sautées sauté ADJ f p 0.80 0.95 0.46 0.27 +sautés sauter VER m p 123.04 134.59 0.22 0.34 par:pas; +sauva sauver VER 246.51 99.05 0.61 2.97 ind:pas:3s; +sauvage sauvage ADJ s 24.68 54.66 16.67 34.46 +sauvagement sauvagement ADV 1.48 6.28 1.48 6.28 +sauvageon sauvageon NOM m s 0.65 0.41 0.01 0.00 +sauvageonne sauvageon NOM f s 0.65 0.41 0.60 0.27 +sauvageonnes sauvageon NOM f p 0.65 0.41 0.00 0.07 +sauvageons sauvageon NOM m p 0.65 0.41 0.03 0.07 +sauvagerie sauvagerie NOM f s 0.95 7.70 0.95 7.36 +sauvageries sauvagerie NOM f p 0.95 7.70 0.00 0.34 +sauvages sauvage ADJ p 24.68 54.66 8.01 20.20 +sauvagesse sauvagesse NOM f s 0.02 0.14 0.02 0.07 +sauvagesses sauvagesse NOM f p 0.02 0.14 0.00 0.07 +sauvagin sauvagin NOM m s 0.00 1.28 0.00 0.20 +sauvagine sauvagin NOM f s 0.00 1.28 0.00 0.68 +sauvagines sauvagin NOM f p 0.00 1.28 0.00 0.41 +sauvai sauver VER 246.51 99.05 0.01 0.27 ind:pas:1s; +sauvaient sauver VER 246.51 99.05 0.04 0.88 ind:imp:3p; +sauvais sauver VER 246.51 99.05 0.58 0.54 ind:imp:1s;ind:imp:2s; +sauvait sauver VER 246.51 99.05 0.57 2.43 ind:imp:3s; +sauvant sauver VER 246.51 99.05 1.62 1.15 par:pre; +sauve_qui_peut sauve_qui_peut NOM m 0.10 0.68 0.10 0.68 +sauve sauver VER 246.51 99.05 24.34 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sauvegardaient sauvegarder VER 2.77 3.65 0.00 0.07 ind:imp:3p; +sauvegardait sauvegarder VER 2.77 3.65 0.00 0.14 ind:imp:3s; +sauvegardant sauvegarder VER 2.77 3.65 0.00 0.20 par:pre; +sauvegarde sauvegarde NOM f s 1.19 2.57 1.03 2.50 +sauvegarder sauvegarder VER 2.77 3.65 1.36 2.03 inf; +sauvegarderaient sauvegarder VER 2.77 3.65 0.00 0.07 cnd:pre:3p; +sauvegarderait sauvegarder VER 2.77 3.65 0.00 0.07 cnd:pre:3s; +sauvegardes sauvegarde NOM f p 1.19 2.57 0.16 0.07 +sauvegardât sauvegarder VER 2.77 3.65 0.00 0.07 sub:imp:3s; +sauvegardé sauvegarder VER m s 2.77 3.65 0.94 0.41 par:pas; +sauvegardée sauvegarder VER f s 2.77 3.65 0.14 0.07 par:pas; +sauvegardées sauvegarder VER f p 2.77 3.65 0.07 0.14 par:pas; +sauvegardés sauvegarder VER m p 2.77 3.65 0.07 0.20 par:pas; +sauvent sauver VER 246.51 99.05 1.02 1.28 ind:pre:3p; +sauver sauver VER 246.51 99.05 103.06 36.89 inf;;inf;;inf;; +sauvera sauver VER 246.51 99.05 4.17 1.49 ind:fut:3s; +sauverai sauver VER 246.51 99.05 2.21 0.20 ind:fut:1s; +sauveraient sauver VER 246.51 99.05 0.07 0.20 cnd:pre:3p; +sauverais sauver VER 246.51 99.05 1.21 0.14 cnd:pre:1s;cnd:pre:2s; +sauverait sauver VER 246.51 99.05 1.31 1.55 cnd:pre:3s; +sauveras sauver VER 246.51 99.05 1.18 0.00 ind:fut:2s; +sauverez sauver VER 246.51 99.05 0.68 0.07 ind:fut:2p; +sauverons sauver VER 246.51 99.05 0.42 0.14 ind:fut:1p; +sauveront sauver VER 246.51 99.05 0.39 0.14 ind:fut:3p; +sauves sauver VER 246.51 99.05 3.51 0.47 ind:pre:2s; +sauvetage sauvetage NOM m s 8.32 3.72 8.20 3.45 +sauvetages sauvetage NOM m p 8.32 3.72 0.12 0.27 +sauveteur sauveteur NOM m s 1.38 1.35 0.75 0.27 +sauveteurs sauveteur NOM m p 1.38 1.35 0.64 1.08 +sauvette sauveter VER 0.25 3.38 0.25 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sauveté sauveté NOM f s 0.00 0.27 0.00 0.27 +sauveur sauveur NOM m s 6.93 3.31 5.87 2.77 +sauveurs sauveur NOM m p 6.93 3.31 0.82 0.47 +sauveuse sauveur NOM f s 6.93 3.31 0.12 0.07 +sauvez sauver VER 246.51 99.05 12.63 1.08 imp:pre:2p;ind:pre:2p; +sauviez sauver VER 246.51 99.05 0.23 0.00 ind:imp:2p; +sauvignon sauvignon NOM m s 0.04 0.20 0.04 0.20 +sauvions sauver VER 246.51 99.05 0.17 0.07 ind:imp:1p; +sauvâmes sauver VER 246.51 99.05 0.00 0.07 ind:pas:1p; +sauvons sauver VER 246.51 99.05 1.48 0.27 imp:pre:1p;ind:pre:1p; +sauvât sauver VER 246.51 99.05 0.00 0.20 sub:imp:3s; +sauvèrent sauver VER 246.51 99.05 0.18 0.41 ind:pas:3p; +sauvé sauver VER m s 246.51 99.05 61.62 23.18 par:pas;par:pas;par:pas; +sauvée sauver VER f s 246.51 99.05 12.58 6.35 par:pas; +sauvées sauver VER f p 246.51 99.05 1.35 1.22 par:pas; +sauvés sauver VER m p 246.51 99.05 9.28 5.00 par:pas; +savaient savoir VER 4516.72 2003.58 14.72 30.20 ind:imp:3p; +savais savoir VER 4516.72 2003.58 236.66 132.09 ind:imp:1s;ind:imp:2s; +savait savoir VER 4516.72 2003.58 80.85 237.84 ind:imp:3s; +savamment savamment ADV 0.03 4.80 0.03 4.80 +savane savane NOM f s 0.34 2.57 0.34 1.76 +savanes savane NOM f p 0.34 2.57 0.00 0.81 +savant savant NOM m s 5.66 12.03 3.16 5.54 +savantasses savantasse NOM m p 0.00 0.07 0.00 0.07 +savante savant ADJ f s 3.99 17.30 0.44 3.72 +savantes savant ADJ f p 3.99 17.30 0.24 3.18 +savantissimes savantissime ADJ p 0.00 0.07 0.00 0.07 +savants savant NOM m p 5.66 12.03 2.42 6.42 +savarin savarin NOM m s 0.20 0.07 0.20 0.07 +savata savater VER 0.05 0.27 0.00 0.07 ind:pas:3s; +savatait savater VER 0.05 0.27 0.00 0.07 ind:imp:3s; +savate savate NOM f s 0.44 3.99 0.30 1.76 +savater savater VER 0.05 0.27 0.02 0.07 inf; +savates savate NOM f p 0.44 3.99 0.13 2.23 +savent savoir VER 4516.72 2003.58 64.32 44.53 ind:pre:3p; +savetier savetier NOM m s 0.39 0.34 0.39 0.20 +savetiers savetier NOM m p 0.39 0.34 0.00 0.14 +saveur saveur NOM f s 3.52 12.36 3.11 10.41 +saveurs saveur NOM f p 3.52 12.36 0.42 1.96 +savez savoir VER 4516.72 2003.58 407.94 132.91 ind:pre:2p; +saviez savoir VER 4516.72 2003.58 32.68 8.24 ind:imp:2p; +savions savoir VER 4516.72 2003.58 5.30 12.30 ind:imp:1p; +savoir_faire savoir_faire NOM m 1.23 2.03 1.23 2.03 +savoir_vivre savoir_vivre NOM m 1.67 1.76 1.67 1.76 +savoir savoir VER 4516.72 2003.58 421.10 250.00 inf; +savoirs savoir NOM m p 37.32 41.42 0.05 0.47 +savon savon NOM m s 16.68 18.04 15.65 16.55 +savonna savonner VER 0.79 4.19 0.00 0.41 ind:pas:3s; +savonnage savonnage NOM m s 0.10 0.07 0.10 0.00 +savonnages savonnage NOM m p 0.10 0.07 0.00 0.07 +savonnai savonner VER 0.79 4.19 0.00 0.07 ind:pas:1s; +savonnaient savonner VER 0.79 4.19 0.00 0.07 ind:imp:3p; +savonnais savonner VER 0.79 4.19 0.02 0.14 ind:imp:1s;ind:imp:2s; +savonnait savonner VER 0.79 4.19 0.01 0.54 ind:imp:3s; +savonnant savonner VER 0.79 4.19 0.03 0.41 par:pre; +savonne savonner VER 0.79 4.19 0.38 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +savonnent savonner VER 0.79 4.19 0.02 0.14 ind:pre:3p; +savonner savonner VER 0.79 4.19 0.26 1.22 inf; +savonnera savonner VER 0.79 4.19 0.01 0.00 ind:fut:3s; +savonneries savonnerie NOM f p 0.00 0.14 0.00 0.14 +savonnette savonnette NOM f s 0.72 3.92 0.62 2.84 +savonnettes savonnette NOM f p 0.72 3.92 0.10 1.08 +savonneuse savonneux ADJ f s 0.29 2.23 0.27 1.76 +savonneuses savonneux ADJ f p 0.29 2.23 0.00 0.34 +savonneux savonneux ADJ m 0.29 2.23 0.02 0.14 +savonnier savonnier ADJ m s 0.00 0.07 0.00 0.07 +savonné savonner VER m s 0.79 4.19 0.02 0.47 par:pas; +savonnée savonner VER f s 0.79 4.19 0.04 0.20 par:pas; +savonnées savonner VER f p 0.79 4.19 0.00 0.14 par:pas; +savons savoir VER 4516.72 2003.58 47.84 19.05 ind:pre:1p; +savoura savourer VER 4.24 14.26 0.01 0.47 ind:pas:3s; +savourai savourer VER 4.24 14.26 0.00 0.27 ind:pas:1s; +savouraient savourer VER 4.24 14.26 0.01 0.54 ind:imp:3p; +savourais savourer VER 4.24 14.26 0.14 0.61 ind:imp:1s; +savourait savourer VER 4.24 14.26 0.06 1.69 ind:imp:3s; +savourant savourer VER 4.24 14.26 0.03 2.36 par:pre; +savoure savourer VER 4.24 14.26 1.28 2.09 imp:pre:2s;ind:pre:1s;ind:pre:3s; +savourent savourer VER 4.24 14.26 0.03 0.41 ind:pre:3p; +savourer savourer VER 4.24 14.26 1.71 4.12 inf; +savourera savourer VER 4.24 14.26 0.15 0.07 ind:fut:3s; +savourerai savourer VER 4.24 14.26 0.03 0.00 ind:fut:1s; +savourerait savourer VER 4.24 14.26 0.01 0.07 cnd:pre:3s; +savourerons savourer VER 4.24 14.26 0.01 0.00 ind:fut:1p; +savoureuse savoureux ADJ f s 1.34 6.89 0.15 1.82 +savoureusement savoureusement ADV 0.00 0.14 0.00 0.14 +savoureuses savoureux ADJ f p 1.34 6.89 0.11 0.68 +savoureux savoureux ADJ m 1.34 6.89 1.08 4.39 +savourez savourer VER 4.24 14.26 0.46 0.07 imp:pre:2p;ind:pre:2p; +savourions savourer VER 4.24 14.26 0.01 0.14 ind:imp:1p; +savourons savourer VER 4.24 14.26 0.19 0.00 imp:pre:1p;ind:pre:1p; +savourèrent savourer VER 4.24 14.26 0.00 0.07 ind:pas:3p; +savouré savourer VER m s 4.24 14.26 0.10 0.68 par:pas; +savourée savourer VER f s 4.24 14.26 0.01 0.41 par:pas; +savourés savourer VER m p 4.24 14.26 0.01 0.20 par:pas; +savoyard savoyard NOM m s 0.50 3.24 0.10 2.91 +savoyarde savoyard NOM f s 0.50 3.24 0.14 0.27 +savoyardes savoyard ADJ f p 0.00 1.42 0.00 0.07 +savoyards savoyard NOM m p 0.50 3.24 0.27 0.07 +sax sax NOM m 0.36 0.14 0.36 0.14 +saxes saxe NOM m p 0.00 0.14 0.00 0.14 +saxhorn saxhorn NOM m s 0.40 0.00 0.40 0.00 +saxifragacées saxifragacée NOM f p 0.00 0.07 0.00 0.07 +saxifrage saxifrage NOM f s 0.00 0.14 0.00 0.07 +saxifrages saxifrage NOM f p 0.00 0.14 0.00 0.07 +saxo saxo NOM m s 0.73 1.01 0.72 0.81 +saxon saxon ADJ m s 0.39 0.81 0.19 0.27 +saxonne saxon ADJ f s 0.39 0.81 0.11 0.20 +saxonnes saxonne NOM f p 0.10 0.00 0.10 0.00 +saxons saxon ADJ m p 0.39 0.81 0.04 0.27 +saxophone saxophone NOM m s 1.32 1.28 1.30 1.22 +saxophones saxophone NOM m p 1.32 1.28 0.02 0.07 +saxophoniste saxophoniste NOM s 0.45 0.14 0.41 0.14 +saxophonistes saxophoniste NOM p 0.45 0.14 0.04 0.00 +saxos saxo NOM m p 0.73 1.01 0.01 0.20 +saynète saynète NOM f s 0.10 0.74 0.06 0.47 +saynètes saynète NOM f p 0.10 0.74 0.04 0.27 +sayon sayon NOM m s 0.00 0.14 0.00 0.14 +sbire sbire NOM m s 1.35 1.62 0.43 0.07 +sbires sbire NOM m p 1.35 1.62 0.92 1.55 +scabieuse scabieux ADJ f s 0.00 0.14 0.00 0.14 +scabreuse scabreux ADJ f s 0.55 1.49 0.03 0.27 +scabreuses scabreux ADJ f p 0.55 1.49 0.24 0.14 +scabreux scabreux ADJ m 0.55 1.49 0.28 1.08 +scaferlati scaferlati NOM m s 0.00 0.14 0.00 0.14 +scalaire scalaire NOM m s 0.03 0.00 0.03 0.00 +scalp scalp NOM m s 1.44 0.74 1.02 0.54 +scalpa scalper VER 1.45 0.47 0.01 0.07 ind:pas:3s; +scalpaient scalper VER 1.45 0.47 0.02 0.07 ind:imp:3p; +scalpait scalper VER 1.45 0.47 0.01 0.00 ind:imp:3s; +scalpe scalper VER 1.45 0.47 0.43 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scalpel scalpel NOM m s 2.45 1.01 2.26 0.88 +scalpels scalpel NOM m p 2.45 1.01 0.19 0.14 +scalpent scalper VER 1.45 0.47 0.12 0.00 ind:pre:3p; +scalper scalper VER 1.45 0.47 0.35 0.14 inf; +scalpera scalper VER 1.45 0.47 0.01 0.07 ind:fut:3s; +scalpeur scalpeur NOM m s 0.01 0.00 0.01 0.00 +scalpez scalper VER 1.45 0.47 0.03 0.00 imp:pre:2p; +scalps scalp NOM m p 1.44 0.74 0.42 0.20 +scalpé scalper VER m s 1.45 0.47 0.33 0.14 par:pas; +scalpés scalper VER m p 1.45 0.47 0.14 0.00 par:pas; +scalène scalène ADJ m s 0.04 0.00 0.04 0.00 +scampi scampi NOM m p 0.09 0.07 0.09 0.07 +scanda scander VER 0.36 7.30 0.00 0.34 ind:pas:3s; +scandaient scander VER 0.36 7.30 0.00 0.61 ind:imp:3p; +scandait scander VER 0.36 7.30 0.00 1.01 ind:imp:3s; +scandale scandale NOM m s 20.92 24.05 19.09 21.49 +scandales scandale NOM m p 20.92 24.05 1.84 2.57 +scandaleuse scandaleux ADJ f s 4.83 8.31 1.10 3.04 +scandaleusement scandaleusement ADV 0.26 0.41 0.26 0.41 +scandaleuses scandaleux ADJ f p 4.83 8.31 0.28 0.74 +scandaleux scandaleux ADJ m 4.83 8.31 3.45 4.53 +scandalisa scandaliser VER 1.28 7.30 0.00 0.61 ind:pas:3s; +scandalisai scandaliser VER 1.28 7.30 0.00 0.14 ind:pas:1s; +scandalisaient scandaliser VER 1.28 7.30 0.00 0.34 ind:imp:3p; +scandalisais scandaliser VER 1.28 7.30 0.00 0.20 ind:imp:1s; +scandalisait scandaliser VER 1.28 7.30 0.01 1.08 ind:imp:3s; +scandalisant scandaliser VER 1.28 7.30 0.00 0.20 par:pre; +scandalise scandaliser VER 1.28 7.30 0.18 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scandalisent scandaliser VER 1.28 7.30 0.00 0.34 ind:pre:3p; +scandaliser scandaliser VER 1.28 7.30 0.05 0.74 inf; +scandalisera scandaliser VER 1.28 7.30 0.14 0.00 ind:fut:3s; +scandaliserait scandaliser VER 1.28 7.30 0.00 0.07 cnd:pre:3s; +scandalisons scandaliser VER 1.28 7.30 0.00 0.07 imp:pre:1p; +scandalisèrent scandaliser VER 1.28 7.30 0.00 0.07 ind:pas:3p; +scandalisé scandaliser VER m s 1.28 7.30 0.56 1.69 par:pas; +scandalisée scandaliser VER f s 1.28 7.30 0.29 0.74 par:pas; +scandalisées scandalisé ADJ f p 0.39 3.04 0.00 0.20 +scandalisés scandalisé ADJ m p 0.39 3.04 0.32 0.47 +scandant scander VER 0.36 7.30 0.03 1.28 par:pre; +scande scander VER 0.36 7.30 0.01 0.41 imp:pre:2s;ind:pre:3s; +scandent scander VER 0.36 7.30 0.16 0.61 ind:pre:3p; +scander scander VER 0.36 7.30 0.05 0.61 inf; +scandera scander VER 0.36 7.30 0.00 0.07 ind:fut:3s; +scandinave scandinave ADJ s 0.39 2.43 0.29 1.49 +scandinaves scandinave NOM p 0.37 1.28 0.36 0.95 +scandé scander VER m s 0.36 7.30 0.01 0.81 par:pas; +scandée scander VER f s 0.36 7.30 0.00 0.61 par:pas; +scandées scander VER f p 0.36 7.30 0.00 0.34 par:pas; +scandés scander VER m p 0.36 7.30 0.10 0.61 par:pas; +scannage scannage NOM m s 0.10 0.00 0.10 0.00 +scannais scanner VER 2.90 0.00 0.01 0.00 ind:imp:1s; +scanne scanner VER 2.90 0.00 0.58 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scannent scanner VER 2.90 0.00 0.13 0.00 ind:pre:3p; +scanner scanner NOM m s 8.56 0.14 6.90 0.14 +scannera scanner VER 2.90 0.00 0.02 0.00 ind:fut:3s; +scanneront scanner VER 2.90 0.00 0.01 0.00 ind:fut:3p; +scanners scanner NOM m p 8.56 0.14 1.66 0.00 +scannes scanner VER 2.90 0.00 0.06 0.00 ind:pre:2s; +scanneur scanneur NOM m s 0.04 0.00 0.04 0.00 +scannez scanner VER 2.90 0.00 0.16 0.00 imp:pre:2p;ind:pre:2p; +scanning scanning NOM m s 0.17 0.00 0.17 0.00 +scannons scanner VER 2.90 0.00 0.02 0.00 imp:pre:1p;ind:pre:1p; +scanné scanner VER m s 2.90 0.00 0.54 0.00 par:pas; +scannée scanner VER f s 2.90 0.00 0.10 0.00 par:pas; +scannés scanner VER m p 2.90 0.00 0.11 0.00 par:pas; +scanographie scanographie NOM f s 0.08 0.00 0.08 0.00 +scansion scansion NOM f s 0.00 0.34 0.00 0.27 +scansions scansion NOM f p 0.00 0.34 0.00 0.07 +scaphandre scaphandre NOM m s 0.79 0.61 0.49 0.61 +scaphandres scaphandre NOM m p 0.79 0.61 0.30 0.00 +scaphandrier scaphandrier NOM m s 0.04 0.34 0.03 0.27 +scaphandriers scaphandrier NOM m p 0.04 0.34 0.01 0.07 +scaphoïde scaphoïde ADJ s 0.08 0.00 0.08 0.00 +scapin scapin NOM m s 0.00 0.07 0.00 0.07 +scapulaire scapulaire NOM m s 0.04 0.68 0.03 0.54 +scapulaires scapulaire NOM m p 0.04 0.68 0.01 0.14 +scarabée scarabée NOM m s 1.33 1.42 0.60 0.95 +scarabées scarabée NOM m p 1.33 1.42 0.73 0.47 +scare scare NOM m s 0.06 0.00 0.06 0.00 +scarifiant scarifier VER 0.02 0.14 0.00 0.14 par:pre; +scarification scarification NOM f s 0.14 0.07 0.14 0.00 +scarifications scarification NOM f p 0.14 0.07 0.00 0.07 +scarifié scarifier VER m s 0.02 0.14 0.02 0.00 par:pas; +scarlatin scarlatine ADJ m s 0.01 0.00 0.01 0.00 +scarlatine scarlatine NOM f s 0.35 1.08 0.35 1.01 +scarlatines scarlatine NOM f p 0.35 1.08 0.00 0.07 +scarole scarole NOM f s 0.12 0.14 0.12 0.07 +scaroles scarole NOM f p 0.12 0.14 0.00 0.07 +scat scat NOM m s 0.06 0.00 0.06 0.00 +scato scato ADJ f s 0.04 0.07 0.04 0.00 +scatologie scatologie NOM f s 0.01 0.00 0.01 0.00 +scatologique scatologique ADJ s 0.03 0.54 0.01 0.20 +scatologiques scatologique ADJ p 0.03 0.54 0.01 0.34 +scatologue scatologue NOM m s 0.00 0.07 0.00 0.07 +scatophiles scatophile ADJ m p 0.01 0.07 0.01 0.07 +scatos scato ADJ f p 0.04 0.07 0.00 0.07 +scatter scatter NOM m s 0.14 0.00 0.14 0.00 +scazons scazon NOM m p 0.00 0.14 0.00 0.14 +sceau sceau NOM m s 3.72 4.93 3.54 3.45 +sceaux sceau NOM m p 3.72 4.93 0.18 1.49 +scella sceller VER 5.62 7.30 0.02 0.14 ind:pas:3s; +scellage scellage NOM m s 0.01 0.00 0.01 0.00 +scellaient sceller VER 5.62 7.30 0.23 0.00 ind:imp:3p; +scellait sceller VER 5.62 7.30 0.11 0.47 ind:imp:3s; +scellant sceller VER 5.62 7.30 0.18 0.41 par:pre; +scelle sceller VER 5.62 7.30 0.63 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scellement scellement NOM m s 0.01 0.27 0.01 0.14 +scellements scellement NOM m p 0.01 0.27 0.00 0.14 +scellent sceller VER 5.62 7.30 0.23 0.00 ind:pre:3p; +sceller sceller VER 5.62 7.30 0.90 1.08 inf; +scellera sceller VER 5.62 7.30 0.03 0.00 ind:fut:3s; +scellerait sceller VER 5.62 7.30 0.00 0.07 cnd:pre:3s; +scelleront sceller VER 5.62 7.30 0.01 0.14 ind:fut:3p; +scellez sceller VER 5.62 7.30 0.53 0.00 imp:pre:2p; +scellons sceller VER 5.62 7.30 0.16 0.00 imp:pre:1p;ind:pre:1p; +scellèrent sceller VER 5.62 7.30 0.01 0.00 ind:pas:3p; +scellé sceller VER m s 5.62 7.30 1.23 2.16 par:pas; +scellée sceller VER f s 5.62 7.30 0.69 1.42 par:pas; +scellées sceller VER f p 5.62 7.30 0.44 0.61 par:pas; +scellés scellé NOM m p 1.91 1.62 1.58 1.55 +scenarii scenarii NOM m p 0.00 0.07 0.00 0.07 +scenic_railway scenic_railway NOM m s 0.00 0.20 0.00 0.20 +scepticisme scepticisme NOM m s 0.62 5.00 0.62 5.00 +sceptique sceptique ADJ s 2.52 5.81 2.21 4.59 +sceptiques sceptique NOM p 0.87 1.22 0.43 0.68 +sceptre sceptre NOM m s 1.62 1.69 1.61 1.42 +sceptres sceptre NOM m p 1.62 1.69 0.01 0.27 +schah schah NOM m s 0.02 0.00 0.02 0.00 +schako schako NOM m s 0.00 0.07 0.00 0.07 +schampooing schampooing NOM m s 0.00 0.07 0.00 0.07 +schbeb schbeb NOM m s 0.00 0.41 0.00 0.41 +scheik scheik NOM m s 0.01 0.00 0.01 0.00 +schilling schilling NOM m s 1.42 0.00 0.13 0.00 +schillings schilling NOM m p 1.42 0.00 1.29 0.00 +schismatique schismatique ADJ m s 0.00 0.20 0.00 0.14 +schismatiques schismatique ADJ p 0.00 0.20 0.00 0.07 +schisme schisme NOM m s 0.32 0.81 0.09 0.61 +schismes schisme NOM m p 0.32 0.81 0.23 0.20 +schiste schiste NOM m s 0.07 1.28 0.05 1.01 +schistes schiste NOM m p 0.07 1.28 0.02 0.27 +schisteuses schisteux ADJ f p 0.00 0.07 0.00 0.07 +schizoïde schizoïde ADJ s 0.14 0.14 0.14 0.07 +schizoïdes schizoïde ADJ m p 0.14 0.14 0.00 0.07 +schizophasie schizophasie NOM f s 0.01 0.00 0.01 0.00 +schizophrène schizophrène ADJ s 1.09 0.41 1.03 0.27 +schizophrènes schizophrène NOM p 0.93 0.88 0.49 0.34 +schizophrénie schizophrénie NOM f s 1.83 0.95 1.83 0.95 +schizophrénique schizophrénique ADJ s 0.14 0.14 0.13 0.07 +schizophréniques schizophrénique ADJ p 0.14 0.14 0.01 0.07 +schlague schlague NOM f s 0.00 0.20 0.00 0.20 +schlass schlass NOM m 0.14 0.07 0.14 0.07 +schlem schlem NOM m s 0.06 0.07 0.06 0.07 +schleu schleu ADJ m s 0.03 0.07 0.03 0.07 +schlinguait schlinguer VER 0.32 1.01 0.02 0.20 ind:imp:3s; +schlinguant schlinguer VER 0.32 1.01 0.00 0.07 par:pre; +schlingue schlinguer VER 0.32 1.01 0.23 0.54 imp:pre:2s;ind:pre:3s; +schlinguer schlinguer VER 0.32 1.01 0.02 0.14 inf; +schlingues schlinguer VER 0.32 1.01 0.05 0.07 ind:pre:2s; +schlitte schlitte NOM f s 0.00 0.07 0.00 0.07 +schmecte schmecter VER 0.00 0.07 0.00 0.07 ind:pre:3s; +schnaps schnaps NOM m 1.86 1.08 1.86 1.08 +schnauzer schnauzer NOM m s 0.04 0.00 0.04 0.00 +schnick schnick NOM m s 0.00 0.14 0.00 0.14 +schnitzel schnitzel NOM m s 0.46 0.00 0.46 0.00 +schnock schnock NOM s 1.06 0.81 0.93 0.81 +schnocks schnock NOM p 1.06 0.81 0.14 0.00 +schnoque schnoque NOM s 0.26 0.47 0.25 0.34 +schnoques schnoque NOM p 0.26 0.47 0.01 0.14 +schnouf schnouf NOM f s 0.01 0.00 0.01 0.00 +schnouff schnouff NOM f s 0.01 0.00 0.01 0.00 +schnouffe schnouffer VER 0.01 0.07 0.01 0.07 ind:pre:3s; +schooner schooner NOM m s 0.04 0.00 0.03 0.00 +schooners schooner NOM m p 0.04 0.00 0.01 0.00 +schpile schpile NOM m s 0.00 1.28 0.00 1.28 +schproum schproum NOM m s 0.00 0.41 0.00 0.41 +schème schème NOM m s 0.00 0.14 0.00 0.07 +schèmes schème NOM m p 0.00 0.14 0.00 0.07 +schtroumf schtroumf NOM m s 0.02 0.00 0.02 0.00 +schtroumpf schtroumpf NOM m s 0.55 0.14 0.19 0.07 +schtroumpfs schtroumpf NOM m p 0.55 0.14 0.37 0.07 +schéma schéma NOM m s 4.03 2.64 3.02 1.82 +schémas schéma NOM m p 4.03 2.64 1.01 0.81 +schématique schématique ADJ s 0.12 0.68 0.12 0.41 +schématiquement schématiquement ADV 0.01 0.61 0.01 0.61 +schématiques schématique ADJ f p 0.12 0.68 0.00 0.27 +schématise schématiser VER 0.05 0.14 0.02 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +schématiser schématiser VER 0.05 0.14 0.03 0.00 inf; +schématisme schématisme NOM m s 0.00 0.07 0.00 0.07 +schématisée schématiser VER f s 0.05 0.14 0.00 0.07 par:pas; +schupo schupo NOM m s 0.00 0.54 0.00 0.41 +schupos schupo NOM m p 0.00 0.54 0.00 0.14 +schuss schuss NOM m 0.14 0.41 0.14 0.41 +scia scier VER 5.01 9.86 0.01 0.14 ind:pas:3s; +sciage sciage NOM m s 0.06 0.14 0.06 0.14 +sciaient scier VER 5.01 9.86 0.00 0.20 ind:imp:3p; +sciais scier VER 5.01 9.86 0.02 0.07 ind:imp:1s;ind:imp:2s; +sciait scier VER 5.01 9.86 0.01 1.69 ind:imp:3s; +scialytique scialytique ADJ m s 0.00 0.27 0.00 0.27 +sciant scier VER 5.01 9.86 0.01 0.20 par:pre; +sciatique sciatique NOM s 0.57 0.20 0.57 0.20 +scie scie NOM f s 5.36 10.07 5.21 8.11 +sciemment sciemment ADV 0.48 1.49 0.48 1.49 +science_fiction science_fiction NOM f s 2.36 1.22 2.36 1.22 +science science NOM f s 32.97 31.08 25.28 24.93 +sciences science NOM f p 32.97 31.08 7.69 6.15 +scient scier VER 5.01 9.86 0.05 0.14 ind:pre:3p; +scientificité scientificité NOM f s 0.01 0.00 0.01 0.00 +scientifique scientifique ADJ s 17.07 6.55 13.62 4.46 +scientifiquement scientifiquement ADV 2.22 1.08 2.22 1.08 +scientifiques scientifique NOM p 14.59 1.42 6.40 0.74 +scientisme scientisme NOM m s 0.02 0.00 0.02 0.00 +scientiste scientiste ADJ s 0.15 0.14 0.15 0.14 +scientologie scientologie NOM f s 0.30 0.00 0.30 0.00 +scientologue scientologue NOM s 0.20 0.00 0.07 0.00 +scientologues scientologue NOM p 0.20 0.00 0.13 0.00 +scier scier VER 5.01 9.86 1.12 2.43 inf; +sciera scier VER 5.01 9.86 0.01 0.07 ind:fut:3s; +scierait scier VER 5.01 9.86 0.02 0.00 cnd:pre:3s; +scierie scierie NOM f s 0.92 2.30 0.76 1.96 +scieries scierie NOM f p 0.92 2.30 0.16 0.34 +scieront scier VER 5.01 9.86 0.01 0.00 ind:fut:3p; +scies scier VER 5.01 9.86 0.28 0.07 ind:pre:2s; +scieur scieur NOM m s 0.01 0.54 0.00 0.47 +scieurs scieur NOM m p 0.01 0.54 0.01 0.07 +sciez scier VER 5.01 9.86 0.12 0.07 imp:pre:2p;ind:pre:2p; +scindaient scinder VER 0.52 1.49 0.00 0.07 ind:imp:3p; +scindait scinder VER 0.52 1.49 0.00 0.34 ind:imp:3s; +scindant scinder VER 0.52 1.49 0.00 0.07 par:pre; +scinde scinder VER 0.52 1.49 0.41 0.34 ind:pre:3s; +scinder scinder VER 0.52 1.49 0.05 0.14 inf; +scinderas scinder VER 0.52 1.49 0.01 0.00 ind:fut:2s; +scindez scinder VER 0.52 1.49 0.01 0.00 imp:pre:2p; +scindèrent scinder VER 0.52 1.49 0.00 0.07 ind:pas:3p; +scindé scinder VER m s 0.52 1.49 0.02 0.20 par:pas; +scindée scinder VER f s 0.52 1.49 0.01 0.20 par:pas; +scindés scinder VER m p 0.52 1.49 0.00 0.07 par:pas; +scintigraphie scintigraphie NOM f s 0.36 0.00 0.36 0.00 +scintillaient scintiller VER 1.77 12.36 0.01 2.64 ind:imp:3p; +scintillait scintiller VER 1.77 12.36 0.19 2.84 ind:imp:3s; +scintillant scintillant ADJ m s 1.10 6.01 0.35 1.28 +scintillante scintillant ADJ f s 1.10 6.01 0.24 2.91 +scintillantes scintillant ADJ f p 1.10 6.01 0.40 1.15 +scintillants scintillant ADJ m p 1.10 6.01 0.11 0.68 +scintillation scintillation NOM f s 0.00 0.41 0.00 0.07 +scintillations scintillation NOM f p 0.00 0.41 0.00 0.34 +scintille scintiller VER 1.77 12.36 0.88 1.89 imp:pre:2s;ind:pre:3s; +scintillement scintillement NOM m s 0.23 4.53 0.17 3.24 +scintillements scintillement NOM m p 0.23 4.53 0.05 1.28 +scintillent scintiller VER 1.77 12.36 0.32 1.35 ind:pre:3p; +scintiller scintiller VER 1.77 12.36 0.24 1.49 inf; +scintilleraient scintiller VER 1.77 12.36 0.01 0.07 cnd:pre:3p; +scintillerais scintiller VER 1.77 12.36 0.00 0.07 cnd:pre:1s; +scintilleront scintiller VER 1.77 12.36 0.00 0.07 ind:fut:3p; +scintilles scintiller VER 1.77 12.36 0.02 0.07 ind:pre:2s; +scintillons scintiller VER 1.77 12.36 0.02 0.00 ind:pre:1p; +scintillèrent scintiller VER 1.77 12.36 0.00 0.14 ind:pas:3p; +scintillé scintiller VER m s 1.77 12.36 0.00 0.14 par:pas; +scion scion NOM m s 0.28 0.61 0.27 0.47 +scions scion NOM m p 0.28 0.61 0.01 0.14 +scirpe scirpe NOM m s 0.01 0.07 0.01 0.00 +scirpes scirpe NOM m p 0.01 0.07 0.00 0.07 +scission scission NOM f s 0.03 0.68 0.03 0.68 +scissionniste scissionniste ADJ m s 0.00 0.07 0.00 0.07 +scissiparité scissiparité NOM f s 0.01 0.00 0.01 0.00 +scissures scissure NOM f p 0.00 0.07 0.00 0.07 +sciène sciène NOM f s 0.14 0.00 0.14 0.00 +scièrent scier VER 5.01 9.86 0.01 0.00 ind:pas:3p; +scié scier VER m s 5.01 9.86 1.25 2.30 par:pas; +sciée scier VER f s 5.01 9.86 0.45 0.54 par:pas; +sciées scier VER f p 5.01 9.86 0.01 0.41 par:pas; +sciure sciure NOM f s 0.69 6.08 0.69 6.01 +sciures sciure NOM f p 0.69 6.08 0.00 0.07 +sciés scier VER m p 5.01 9.86 0.50 0.47 par:pas; +scléreux scléreux ADJ m 0.01 0.00 0.01 0.00 +sclérodermie sclérodermie NOM f s 0.03 0.00 0.03 0.00 +sclérosante sclérosant ADJ f s 0.01 0.00 0.01 0.00 +sclérose sclérose NOM f s 0.79 0.88 0.79 0.81 +scléroserai scléroser VER 0.16 0.34 0.01 0.00 ind:fut:1s; +scléroses sclérose NOM f p 0.79 0.88 0.00 0.07 +sclérosé scléroser VER m s 0.16 0.34 0.14 0.20 par:pas; +sclérosée scléroser VER f s 0.16 0.34 0.00 0.14 par:pas; +sclérosés sclérosé ADJ m p 0.02 0.20 0.00 0.07 +sclérotique sclérotique NOM f s 0.00 0.54 0.00 0.41 +sclérotiques sclérotique NOM f p 0.00 0.54 0.00 0.14 +scolaire scolaire ADJ s 7.00 14.12 5.61 9.66 +scolairement scolairement ADV 0.01 0.07 0.01 0.07 +scolaires scolaire ADJ p 7.00 14.12 1.39 4.46 +scolarisation scolarisation NOM f s 0.01 0.07 0.01 0.07 +scolariser scolariser VER 0.01 0.00 0.01 0.00 inf; +scolarité scolarité NOM f s 1.63 0.81 1.61 0.81 +scolarités scolarité NOM f p 1.63 0.81 0.02 0.00 +scolastique scolastique ADJ m s 0.01 0.20 0.01 0.14 +scolastiques scolastique ADJ f p 0.01 0.20 0.00 0.07 +scolie scolie NOM s 0.00 0.47 0.00 0.47 +scoliose scoliose NOM f s 0.24 0.34 0.23 0.27 +scolioses scoliose NOM f p 0.24 0.34 0.01 0.07 +scolopendre scolopendre NOM f s 0.00 0.34 0.00 0.07 +scolopendres scolopendre NOM f p 0.00 0.34 0.00 0.27 +scolyte scolyte NOM m s 0.01 0.00 0.01 0.00 +scone scone NOM m s 0.45 0.20 0.11 0.00 +scones scone NOM m p 0.45 0.20 0.34 0.20 +sconse sconse NOM m s 0.04 0.00 0.04 0.00 +scoop scoop NOM m s 5.29 1.22 5.12 1.08 +scoops scoop NOM m p 5.29 1.22 0.17 0.14 +scooter scooter NOM m s 3.62 2.77 3.41 2.30 +scooters scooter NOM m p 3.62 2.77 0.20 0.47 +scope scope NOM m s 0.41 0.07 0.36 0.07 +scopes scope NOM m p 0.41 0.07 0.04 0.00 +scopie scopie NOM f s 0.01 0.00 0.01 0.00 +scopitones scopitone NOM m p 0.00 0.07 0.00 0.07 +scopolamine scopolamine NOM f s 0.02 0.00 0.02 0.00 +scorbut scorbut NOM m s 0.46 0.95 0.46 0.95 +score score NOM m s 5.92 0.74 5.29 0.61 +scores score NOM m p 5.92 0.74 0.64 0.14 +scories scorie NOM f p 0.17 0.74 0.17 0.74 +scorpion scorpion NOM m s 3.54 2.64 1.78 0.88 +scorpions scorpion NOM m p 3.54 2.64 1.75 1.76 +scotch_terrier scotch_terrier NOM m s 0.01 0.00 0.01 0.00 +scotch scotch NOM m s 9.45 6.35 9.30 6.28 +scotchais scotcher VER 1.63 0.74 0.01 0.00 ind:imp:1s; +scotcher scotcher VER 1.63 0.74 0.17 0.00 inf; +scotches scotcher VER 1.63 0.74 0.10 0.20 ind:pre:2s; +scotchons scotcher VER 1.63 0.74 0.00 0.07 ind:pre:1p; +scotchs scotch NOM m p 9.45 6.35 0.15 0.07 +scotché scotcher VER m s 1.63 0.74 0.85 0.20 par:pas; +scotchée scotcher VER f s 1.63 0.74 0.26 0.07 par:pas; +scotchées scotcher VER f p 1.63 0.74 0.04 0.00 par:pas; +scotchés scotcher VER m p 1.63 0.74 0.20 0.20 par:pas; +scotomisant scotomiser VER 0.00 0.14 0.00 0.07 par:pre; +scotomiser scotomiser VER 0.00 0.14 0.00 0.07 inf; +scottish scottish NOM f s 0.14 0.14 0.14 0.14 +scoubidou scoubidou NOM m s 0.23 0.34 0.20 0.27 +scoubidous scoubidou NOM m p 0.23 0.34 0.03 0.07 +scoumoune scoumoune NOM f s 0.10 0.20 0.10 0.20 +scout scout ADJ m s 1.94 2.50 1.63 1.62 +scoute scout ADJ f s 1.94 2.50 0.07 0.41 +scoutisme scoutisme NOM m s 0.05 0.54 0.05 0.54 +scouts scout NOM m p 3.73 2.09 2.48 1.08 +scrabble scrabble NOM m s 1.39 0.20 1.39 0.20 +scratch scratch NOM m s 0.41 0.07 0.41 0.07 +scratcher scratcher VER 0.02 0.00 0.02 0.00 inf; +scratching scratching NOM m s 0.17 0.00 0.17 0.00 +scriban scriban NOM m s 0.00 0.07 0.00 0.07 +scribe scribe NOM m s 2.05 3.18 0.65 1.55 +scribes scribe NOM m p 2.05 3.18 1.40 1.62 +scribouillages scribouillage NOM m p 0.00 0.07 0.00 0.07 +scribouillard scribouillard NOM m s 0.17 1.01 0.06 0.88 +scribouillards scribouillard NOM m p 0.17 1.01 0.11 0.14 +scribouille scribouiller VER 0.03 0.20 0.02 0.07 ind:pre:1s;ind:pre:3s; +scribouiller scribouiller VER 0.03 0.20 0.01 0.14 inf; +script_girl script_girl NOM f s 0.00 0.20 0.00 0.20 +script script NOM m s 6.45 0.41 5.73 0.41 +scripte scripte NOM s 1.23 0.00 1.23 0.00 +scripteur scripteur NOM m s 0.00 0.14 0.00 0.07 +scripteurs scripteur NOM m p 0.00 0.14 0.00 0.07 +scripts script NOM m p 6.45 0.41 0.72 0.00 +scrofulaire scrofulaire NOM f s 0.01 0.00 0.01 0.00 +scrofule scrofule NOM f s 0.03 0.14 0.02 0.07 +scrofules scrofule NOM f p 0.03 0.14 0.01 0.07 +scrofuleux scrofuleux ADJ m s 0.02 0.34 0.02 0.34 +scrogneugneu scrogneugneu ONO 0.00 0.20 0.00 0.20 +scrotal scrotal ADJ m s 0.01 0.00 0.01 0.00 +scrotum scrotum NOM m s 0.77 0.07 0.77 0.07 +scrub scrub NOM m s 2.72 0.07 0.07 0.00 +scrubs scrub NOM m p 2.72 0.07 2.66 0.07 +scrupule scrupule NOM m s 6.66 16.42 0.94 6.28 +scrupules scrupule NOM m p 6.66 16.42 5.71 10.14 +scrupuleuse scrupuleux ADJ f s 0.76 3.78 0.11 1.28 +scrupuleusement scrupuleusement ADV 0.56 3.04 0.56 3.04 +scrupuleuses scrupuleux ADJ f p 0.76 3.78 0.01 0.07 +scrupuleux scrupuleux ADJ m 0.76 3.78 0.64 2.43 +scrupulosité scrupulosité NOM f s 0.01 0.00 0.01 0.00 +scruta scruter VER 2.30 15.54 0.00 1.89 ind:pas:3s; +scrutai scruter VER 2.30 15.54 0.00 0.20 ind:pas:1s; +scrutaient scruter VER 2.30 15.54 0.10 0.41 ind:imp:3p; +scrutais scruter VER 2.30 15.54 0.03 0.41 ind:imp:1s; +scrutait scruter VER 2.30 15.54 0.16 2.36 ind:imp:3s; +scrutant scruter VER 2.30 15.54 0.26 2.70 par:pre; +scrutateur scrutateur ADJ m s 0.39 0.41 0.39 0.20 +scrutateurs scrutateur ADJ m p 0.39 0.41 0.00 0.14 +scrutation scrutation NOM f s 0.04 0.00 0.04 0.00 +scrutatrices scrutateur ADJ f p 0.39 0.41 0.00 0.07 +scrute scruter VER 2.30 15.54 0.59 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +scrutent scruter VER 2.30 15.54 0.17 0.47 ind:pre:3p; +scruter scruter VER 2.30 15.54 0.47 2.91 inf; +scrutera scruter VER 2.30 15.54 0.01 0.07 ind:fut:3s; +scruterai scruter VER 2.30 15.54 0.01 0.00 ind:fut:1s; +scruterait scruter VER 2.30 15.54 0.00 0.07 cnd:pre:3s; +scruteront scruter VER 2.30 15.54 0.01 0.00 ind:fut:3p; +scrutez scruter VER 2.30 15.54 0.06 0.00 imp:pre:2p;ind:pre:2p; +scrutin scrutin NOM m s 0.71 1.49 0.62 1.28 +scrutins scrutin NOM m p 0.71 1.49 0.09 0.20 +scrutions scruter VER 2.30 15.54 0.00 0.20 ind:imp:1p; +scrutâmes scruter VER 2.30 15.54 0.00 0.14 ind:pas:1p; +scrutons scruter VER 2.30 15.54 0.02 0.00 imp:pre:1p;ind:pre:1p; +scrutèrent scruter VER 2.30 15.54 0.00 0.07 ind:pas:3p; +scruté scruter VER m s 2.30 15.54 0.38 0.74 par:pas; +scrutée scruter VER f s 2.30 15.54 0.02 0.07 par:pas; +scrutés scruter VER m p 2.30 15.54 0.01 0.20 par:pas; +scène_clé scène_clé NOM f s 0.01 0.00 0.01 0.00 +scène scène NOM f s 107.96 114.93 96.66 95.27 +scènes_clé scènes_clé NOM f p 0.01 0.00 0.01 0.00 +scènes scène NOM f p 107.96 114.93 11.30 19.66 +sculpta sculpter VER 2.92 13.72 0.04 0.34 ind:pas:3s; +sculptaient sculpter VER 2.92 13.72 0.00 0.07 ind:imp:3p; +sculptais sculpter VER 2.92 13.72 0.11 0.07 ind:imp:1s; +sculptait sculpter VER 2.92 13.72 0.02 1.15 ind:imp:3s; +sculptant sculpter VER 2.92 13.72 0.10 0.41 par:pre; +sculpte sculpter VER 2.92 13.72 0.63 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sculptent sculpter VER 2.92 13.72 0.03 0.14 ind:pre:3p; +sculpter sculpter VER 2.92 13.72 0.87 2.16 inf; +sculptera sculpter VER 2.92 13.72 0.01 0.14 ind:fut:3s; +sculpterai sculpter VER 2.92 13.72 0.02 0.00 ind:fut:1s; +sculpterait sculpter VER 2.92 13.72 0.00 0.07 cnd:pre:3s; +sculpteras sculpter VER 2.92 13.72 0.01 0.07 ind:fut:2s; +sculpterez sculpter VER 2.92 13.72 0.01 0.07 ind:fut:2p; +sculptes sculpter VER 2.92 13.72 0.14 0.20 ind:pre:2s; +sculpteur sculpteur NOM m s 3.63 7.50 3.31 4.93 +sculpteurs sculpteur NOM m p 3.63 7.50 0.29 2.57 +sculptez sculpter VER 2.92 13.72 0.04 0.07 imp:pre:2p;ind:pre:2p; +sculptiez sculpter VER 2.92 13.72 0.00 0.07 ind:imp:2p; +sculptâtes sculpter VER 2.92 13.72 0.00 0.07 ind:pas:2p; +sculptrice sculpteur NOM f s 3.63 7.50 0.02 0.00 +sculpté sculpter VER m s 2.92 13.72 0.56 3.38 par:pas; +sculptée sculpté ADJ f s 0.50 7.23 0.15 1.28 +sculptées sculpter VER f p 2.92 13.72 0.17 0.74 par:pas; +sculptural sculptural ADJ m s 0.02 0.68 0.00 0.20 +sculpturale sculptural ADJ f s 0.02 0.68 0.02 0.34 +sculpturales sculptural ADJ f p 0.02 0.68 0.00 0.07 +sculpturaux sculptural ADJ m p 0.02 0.68 0.00 0.07 +sculpture sculpture NOM f s 7.12 7.91 5.48 3.78 +sculptures sculpture NOM f p 7.12 7.91 1.64 4.12 +sculptés sculpter VER m p 2.92 13.72 0.06 1.76 par:pas; +scélérat scélérat NOM m s 2.87 0.74 2.19 0.27 +scélérate scélérat ADJ f s 1.05 0.27 0.12 0.00 +scélérates scélérat ADJ f p 1.05 0.27 0.01 0.07 +scélératesse scélératesse NOM f s 0.00 0.14 0.00 0.07 +scélératesses scélératesse NOM f p 0.00 0.14 0.00 0.07 +scélérats scélérat NOM m p 2.87 0.74 0.66 0.47 +scénar scénar NOM m s 0.51 0.34 0.46 0.34 +scénarii scénario NOM m p 19.14 9.26 0.00 0.07 +scénarimage scénarimage NOM m s 0.01 0.00 0.01 0.00 +scénario scénario NOM m s 19.14 9.26 16.70 8.18 +scénarios scénario NOM m p 19.14 9.26 2.44 1.01 +scénariste scénariste NOM s 2.70 0.68 1.98 0.41 +scénaristes scénariste NOM p 2.70 0.68 0.72 0.27 +scénaristique scénaristique ADJ f s 0.01 0.14 0.01 0.14 +scénars scénar NOM m p 0.51 0.34 0.04 0.00 +scénique scénique ADJ f s 0.12 0.20 0.11 0.00 +scéniques scénique ADJ p 0.12 0.20 0.01 0.20 +scénographe scénographe NOM s 0.03 0.00 0.03 0.00 +scénographie scénographie NOM f s 0.35 0.07 0.35 0.07 +scénographique scénographique ADJ m s 0.01 0.00 0.01 0.00 +scutigère scutigère NOM f s 0.00 0.61 0.00 0.54 +scutigères scutigère NOM f p 0.00 0.61 0.00 0.07 +scythe scythe ADJ s 0.04 0.34 0.04 0.20 +scythes scythe ADJ m p 0.04 0.34 0.00 0.14 +se se PRO:per 2813.77 6587.77 2813.77 6587.77 +señor señor NOM m s 9.75 0.00 9.75 0.00 +seaborgium seaborgium NOM m s 0.10 0.00 0.10 0.00 +seau seau NOM m s 9.01 24.05 7.02 14.73 +seaux seau NOM m p 9.01 24.05 2.00 9.32 +sec sec ADJ m s 43.02 142.84 27.40 72.30 +secco secco NOM m s 0.00 0.61 0.00 0.34 +seccos secco NOM m p 0.00 0.61 0.00 0.27 +seccotine seccotine NOM f s 0.00 0.34 0.00 0.34 +second_maître second_maître NOM m s 0.05 0.07 0.05 0.07 +second second ADJ m s 52.50 88.58 15.32 32.30 +secondaient seconder VER 1.76 5.00 0.00 0.07 ind:imp:3p; +secondaire secondaire ADJ s 8.06 8.65 4.16 5.07 +secondairement secondairement ADV 0.00 0.27 0.00 0.27 +secondaires secondaire ADJ p 8.06 8.65 3.91 3.58 +secondais seconder VER 1.76 5.00 0.03 0.00 ind:imp:1s; +secondait seconder VER 1.76 5.00 0.10 0.41 ind:imp:3s; +secondant seconder VER 1.76 5.00 0.00 0.07 par:pre; +seconde seconde NOM f s 124.54 121.49 72.34 66.22 +secondement secondement ADV 0.00 0.14 0.00 0.14 +secondent seconder VER 1.76 5.00 0.01 0.27 ind:pre:3p; +seconder seconder VER 1.76 5.00 0.37 1.96 inf; +secondera seconder VER 1.76 5.00 0.07 0.00 ind:fut:3s; +seconderai seconder VER 1.76 5.00 0.03 0.00 ind:fut:1s; +seconderas seconder VER 1.76 5.00 0.02 0.00 ind:fut:2s; +seconderez seconder VER 1.76 5.00 0.02 0.00 ind:fut:2p; +seconderont seconder VER 1.76 5.00 0.02 0.00 ind:fut:3p; +secondes seconde NOM f p 124.54 121.49 52.20 55.27 +secondo secondo NOM m s 0.20 0.07 0.20 0.07 +seconds second ADJ m p 52.50 88.58 0.28 0.34 +secondé seconder VER m s 1.76 5.00 0.24 1.01 par:pas; +secondée seconder VER f s 1.76 5.00 0.01 0.34 par:pas; +secondés seconder VER m p 1.76 5.00 0.04 0.20 par:pas; +secoua secouer VER 19.00 116.35 0.26 25.68 ind:pas:3s; +secouai secouer VER 19.00 116.35 0.01 1.82 ind:pas:1s; +secouaient secouer VER 19.00 116.35 0.01 3.24 ind:imp:3p; +secouais secouer VER 19.00 116.35 0.04 0.47 ind:imp:1s;ind:imp:2s; +secouait secouer VER 19.00 116.35 0.67 12.84 ind:imp:3s; +secouant secouer VER 19.00 116.35 0.39 11.49 par:pre; +secouassent secouer VER 19.00 116.35 0.00 0.07 sub:imp:3p; +secoue secouer VER 19.00 116.35 4.77 17.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +secouement secouement NOM m s 0.00 0.07 0.00 0.07 +secouent secouer VER 19.00 116.35 0.29 1.76 ind:pre:3p; +secouer secouer VER 19.00 116.35 4.50 14.19 ind:pre:2p;inf; +secouera secouer VER 19.00 116.35 0.04 0.14 ind:fut:3s; +secouerai secouer VER 19.00 116.35 0.02 0.14 ind:fut:1s; +secoueraient secouer VER 19.00 116.35 0.01 0.14 cnd:pre:3p; +secouerais secouer VER 19.00 116.35 0.01 0.14 cnd:pre:1s; +secouerait secouer VER 19.00 116.35 0.04 0.41 cnd:pre:3s; +secouerez secouer VER 19.00 116.35 0.01 0.00 ind:fut:2p; +secoueront secouer VER 19.00 116.35 0.01 0.07 ind:fut:3p; +secoues secouer VER 19.00 116.35 0.56 0.20 ind:pre:2s; +secoueur secoueur NOM m s 0.09 0.07 0.02 0.07 +secoueurs secoueur NOM m p 0.09 0.07 0.06 0.00 +secouez secouer VER 19.00 116.35 1.24 0.61 imp:pre:2p;ind:pre:2p; +secouions secouer VER 19.00 116.35 0.00 0.14 ind:imp:1p; +secouâmes secouer VER 19.00 116.35 0.00 0.27 ind:pas:1p; +secouons secouer VER 19.00 116.35 0.04 0.14 imp:pre:1p;ind:pre:1p; +secourût secourir VER 6.05 4.93 0.00 0.14 sub:imp:3s; +secourable secourable ADJ s 0.69 1.42 0.66 1.22 +secourables secourable ADJ p 0.69 1.42 0.03 0.20 +secouraient secourir VER 6.05 4.93 0.00 0.07 ind:imp:3p; +secourait secourir VER 6.05 4.93 0.02 0.07 ind:imp:3s; +secourant secourir VER 6.05 4.93 0.12 0.00 par:pre; +secoures secourir VER 6.05 4.93 0.11 0.00 sub:pre:2s; +secourez secourir VER 6.05 4.93 0.74 0.00 imp:pre:2p;ind:pre:2p; +secourions secourir VER 6.05 4.93 0.03 0.07 ind:imp:1p; +secourir secourir VER 6.05 4.93 2.97 2.64 inf; +secourisme secourisme NOM m s 0.26 0.07 0.26 0.07 +secouriste secouriste NOM s 0.94 0.34 0.43 0.20 +secouristes secouriste NOM p 0.94 0.34 0.51 0.14 +secourra secourir VER 6.05 4.93 0.01 0.00 ind:fut:3s; +secours secours NOM m 70.36 40.47 70.36 40.47 +secourt secourir VER 6.05 4.93 0.06 0.00 ind:pre:3s; +secouru secourir VER m s 6.05 4.93 1.10 0.88 par:pas; +secourue secourir VER f s 6.05 4.93 0.30 0.54 par:pas; +secourues secourir VER f p 6.05 4.93 0.02 0.14 par:pas; +secourus secourir VER m p 6.05 4.93 0.31 0.00 par:pas; +secourut secourir VER 6.05 4.93 0.00 0.20 ind:pas:3s; +secousse secousse NOM f s 2.59 16.28 1.44 8.72 +secousses secousse NOM f p 2.59 16.28 1.15 7.57 +secouèrent secouer VER 19.00 116.35 0.01 0.81 ind:pas:3p; +secoué secouer VER m s 19.00 116.35 3.96 13.99 par:pas; +secouée secouer VER f s 19.00 116.35 1.49 6.35 par:pas; +secouées secouer VER f p 19.00 116.35 0.04 0.81 par:pas; +secoués secouer VER m p 19.00 116.35 0.59 2.84 par:pas; +secret secret NOM m s 103.49 96.01 81.34 70.81 +secrets secret NOM m p 103.49 96.01 22.15 25.20 +secrète secret ADJ f s 62.68 83.11 14.43 28.51 +secrètement secrètement ADV 3.20 13.04 3.20 13.04 +secrètent secréter VER 0.52 0.74 0.04 0.00 ind:pre:3p; +secrètes secret ADJ f p 62.68 83.11 3.79 10.47 +secrétaient secréter VER 0.52 0.74 0.00 0.07 ind:imp:3p; +secrétaire secrétaire NOM s 31.22 43.78 29.43 38.58 +secrétairerie secrétairerie NOM f s 0.00 0.07 0.00 0.07 +secrétaires secrétaire NOM p 31.22 43.78 1.79 5.20 +secrétariat secrétariat NOM m s 1.43 3.31 1.43 3.24 +secrétariats secrétariat NOM m p 1.43 3.31 0.00 0.07 +secréter secréter VER 0.52 0.74 0.01 0.07 inf; +secrété secréter VER m s 0.52 0.74 0.01 0.14 par:pas; +secrétée secréter VER f s 0.52 0.74 0.01 0.07 par:pas; +secs sec ADJ m p 43.02 142.84 4.91 17.09 +sectaire sectaire ADJ s 0.35 0.68 0.22 0.34 +sectaires sectaire ADJ p 0.35 0.68 0.13 0.34 +sectarisme sectarisme NOM m s 0.06 0.34 0.06 0.34 +sectateur sectateur NOM m s 0.01 0.34 0.00 0.14 +sectateurs sectateur NOM m p 0.01 0.34 0.01 0.20 +secte secte NOM f s 5.02 4.19 4.15 3.11 +sectes secte NOM f p 5.02 4.19 0.87 1.08 +secteur secteur NOM m s 26.50 20.34 24.57 18.45 +secteurs secteur NOM m p 26.50 20.34 1.93 1.89 +section section NOM f s 20.34 22.23 18.03 16.35 +sectionna sectionner VER 1.75 1.89 0.00 0.14 ind:pas:3s; +sectionnaient sectionner VER 1.75 1.89 0.00 0.07 ind:imp:3p; +sectionnant sectionner VER 1.75 1.89 0.04 0.00 par:pre; +sectionne sectionner VER 1.75 1.89 0.27 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sectionnement sectionnement NOM m s 0.01 0.07 0.01 0.07 +sectionnent sectionner VER 1.75 1.89 0.00 0.14 ind:pre:3p; +sectionner sectionner VER 1.75 1.89 0.33 0.07 inf; +sectionnera sectionner VER 1.75 1.89 0.02 0.00 ind:fut:3s; +sectionnez sectionner VER 1.75 1.89 0.06 0.00 imp:pre:2p; +sectionné sectionner VER m s 1.75 1.89 0.53 0.54 par:pas; +sectionnée sectionner VER f s 1.75 1.89 0.34 0.41 par:pas; +sectionnées sectionner VER f p 1.75 1.89 0.06 0.20 par:pas; +sectionnés sectionner VER m p 1.75 1.89 0.09 0.14 par:pas; +sections section NOM f p 20.34 22.23 2.31 5.88 +sectorielles sectoriel ADJ f p 0.00 0.14 0.00 0.07 +sectoriels sectoriel ADJ m p 0.00 0.14 0.00 0.07 +sectorisation sectorisation NOM f s 0.01 0.00 0.01 0.00 +secundo secundo ADV 1.64 0.88 1.64 0.88 +sedan sedan NOM m s 0.04 0.07 0.04 0.07 +sedia_gestatoria sedia_gestatoria NOM f 0.00 0.20 0.00 0.20 +sedums sedum NOM m p 0.00 0.07 0.00 0.07 +seersucker seersucker NOM m s 0.02 0.00 0.02 0.00 +segment segment NOM m s 0.69 1.42 0.36 0.88 +segmentaire segmentaire ADJ s 0.03 0.00 0.03 0.00 +segmentale segmental ADJ f s 0.01 0.00 0.01 0.00 +segmentez segmenter VER 0.03 0.00 0.01 0.00 imp:pre:2p; +segments segment NOM m p 0.69 1.42 0.33 0.54 +segmenté segmenter VER m s 0.03 0.00 0.01 0.00 par:pas; +seguedilla seguedilla NOM f s 0.00 0.20 0.00 0.07 +seguedillas seguedilla NOM f p 0.00 0.20 0.00 0.14 +seiche seiche NOM f s 0.23 0.88 0.23 0.61 +seiches seiche NOM f p 0.23 0.88 0.00 0.27 +seigle seigle NOM m s 0.69 2.36 0.69 2.09 +seigles seigle NOM m p 0.69 2.36 0.00 0.27 +seigneur seigneur NOM m s 153.82 60.14 147.72 51.82 +seigneurial seigneurial ADJ m s 0.02 1.01 0.01 0.34 +seigneuriale seigneurial ADJ f s 0.02 1.01 0.00 0.41 +seigneuriales seigneurial ADJ f p 0.02 1.01 0.01 0.20 +seigneuriaux seigneurial ADJ m p 0.02 1.01 0.00 0.07 +seigneurie seigneurie NOM f s 3.00 4.86 2.81 4.59 +seigneuries seigneurie NOM f p 3.00 4.86 0.19 0.27 +seigneurs seigneur NOM m p 153.82 60.14 6.10 8.31 +seille seille NOM f s 0.00 0.27 0.00 0.07 +seilles seille NOM f p 0.00 0.27 0.00 0.20 +seillon seillon NOM m s 0.00 0.07 0.00 0.07 +sein sein NOM m s 44.90 84.05 16.93 32.23 +seine seine NOM f s 0.14 0.47 0.14 0.27 +seing seing NOM m s 0.01 0.07 0.01 0.07 +seins sein NOM m p 44.90 84.05 27.97 51.82 +seize seize ADJ:num 7.71 31.42 7.71 31.42 +seizième seizième NOM s 0.68 1.08 0.68 1.08 +sel sel NOM m s 21.83 33.24 20.93 31.01 +seldjoukide seldjoukide ADJ m s 0.00 0.14 0.00 0.14 +seldjoukides seldjoukide NOM p 0.00 0.07 0.00 0.07 +select select ADJ m s 0.14 0.34 0.12 0.27 +selects select ADJ m p 0.14 0.34 0.02 0.07 +self_contrôle self_contrôle NOM m s 0.19 0.07 0.19 0.07 +self_control self_control NOM m s 0.16 0.34 0.16 0.34 +self_défense self_défense NOM f s 0.18 0.00 0.18 0.00 +self_made_man self_made_man NOM m s 0.02 0.07 0.02 0.07 +self_made_men self_made_men NOM m p 0.01 0.07 0.01 0.07 +self_made_man self_made_man NOM m s 0.14 0.07 0.14 0.07 +self_service self_service NOM m s 0.37 0.47 0.36 0.47 +self_service self_service NOM m p 0.37 0.47 0.01 0.00 +self self NOM m s 0.67 0.34 0.67 0.27 +selfs self NOM m p 0.67 0.34 0.00 0.07 +sellait seller VER 1.81 1.96 0.00 0.07 ind:imp:3s; +selle selle NOM f s 10.26 19.05 8.90 16.08 +seller seller VER 1.81 1.96 0.52 0.68 inf; +sellerie sellerie NOM f s 0.05 0.27 0.05 0.20 +selleries sellerie NOM f p 0.05 0.27 0.00 0.07 +selles selle NOM f p 10.26 19.05 1.36 2.97 +sellette sellette NOM f s 0.36 0.88 0.36 0.88 +sellez seller VER 1.81 1.96 0.42 0.00 imp:pre:2p;ind:pre:2p; +sellier sellier NOM m s 0.02 0.47 0.02 0.47 +sellé seller VER m s 1.81 1.96 0.28 0.54 par:pas; +sellée seller VER f s 1.81 1.96 0.02 0.00 par:pas; +sellées seller VER f p 1.81 1.96 0.00 0.14 par:pas; +sellés seller VER m p 1.81 1.96 0.05 0.41 par:pas; +selon selon PRE 81.40 110.88 81.40 110.88 +sels sel NOM m p 21.83 33.24 0.90 2.23 +seltz seltz NOM m 0.17 0.00 0.17 0.00 +selva selva NOM f s 0.44 0.00 0.44 0.00 +sema semer VER 19.80 25.41 0.20 0.34 ind:pas:3s; +semaient semer VER 19.80 25.41 0.03 0.54 ind:imp:3p; +semailles semailles NOM f p 0.19 0.81 0.19 0.81 +semaine semaine NOM f s 290.85 197.50 186.01 111.89 +semaines semaine NOM f p 290.85 197.50 104.84 85.61 +semainier semainier NOM m s 0.00 0.34 0.00 0.34 +semait semer VER 19.80 25.41 0.03 1.49 ind:imp:3s; +semant semer VER 19.80 25.41 0.62 1.35 par:pre; +sembla sembler VER 229.25 572.84 0.87 32.43 ind:pas:3s; +semblable semblable ADJ s 8.93 52.91 5.99 31.42 +semblablement semblablement ADV 0.01 0.81 0.01 0.81 +semblables semblable NOM p 5.35 13.31 3.17 9.53 +semblaient sembler VER 229.25 572.84 2.99 55.81 ind:imp:3p; +semblais sembler VER 229.25 572.84 1.31 0.88 ind:imp:1s;ind:imp:2s; +semblait sembler VER 229.25 572.84 26.84 260.54 ind:imp:3s; +semblance semblance NOM f s 0.02 0.27 0.02 0.27 +semblant semblant NOM m s 25.63 32.09 25.55 31.89 +semblants semblant NOM m p 25.63 32.09 0.08 0.20 +semble sembler VER 229.25 572.84 128.91 154.19 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +semblent sembler VER 229.25 572.84 14.09 22.23 ind:pre:3p;sub:pre:3p; +sembler sembler VER 229.25 572.84 6.01 4.53 inf;; +semblera sembler VER 229.25 572.84 2.15 1.42 ind:fut:3s; +sembleraient sembler VER 229.25 572.84 0.05 0.20 cnd:pre:3p; +semblerait sembler VER 229.25 572.84 10.04 2.57 cnd:pre:3s; +sembleront sembler VER 229.25 572.84 0.20 0.20 ind:fut:3p; +sembles sembler VER 229.25 572.84 5.11 1.22 ind:pre:2s; +semblez sembler VER 229.25 572.84 14.02 1.96 imp:pre:2p;ind:pre:2p; +sembliez sembler VER 229.25 572.84 0.94 0.34 ind:imp:2p; +semblions sembler VER 229.25 572.84 0.05 0.34 ind:imp:1p; +semblons sembler VER 229.25 572.84 0.53 0.00 imp:pre:1p;ind:pre:1p; +semblât sembler VER 229.25 572.84 0.00 0.74 sub:imp:3s; +semblèrent sembler VER 229.25 572.84 0.01 1.69 ind:pas:3p; +semblé sembler VER m s 229.25 572.84 7.21 16.96 par:pas; +semelle semelle NOM f s 4.10 21.96 2.83 7.43 +semelles semelle NOM f p 4.10 21.96 1.27 14.53 +semen_contra semen_contra NOM m s 0.00 0.07 0.00 0.07 +semence semence NOM f s 4.80 5.27 4.20 4.05 +semences semence NOM f p 4.80 5.27 0.60 1.22 +semer semer VER 19.80 25.41 6.09 5.07 inf; +semestre semestre NOM m s 3.53 1.49 3.24 1.49 +semestres semestre NOM m p 3.53 1.49 0.29 0.00 +semestriel semestriel ADJ m s 0.05 0.07 0.01 0.07 +semestrielle semestriel ADJ f s 0.05 0.07 0.04 0.00 +semestriellement semestriellement ADV 0.01 0.00 0.01 0.00 +semeur semeur NOM m s 0.44 0.74 0.40 0.34 +semeurs semeur NOM m p 0.44 0.74 0.04 0.27 +semeuse semeuse NOM f s 0.11 0.47 0.11 0.47 +semeuses semeur NOM f p 0.44 0.74 0.00 0.14 +semez semer VER 19.80 25.41 0.46 0.07 imp:pre:2p;ind:pre:2p; +semi_aride semi_aride ADJ f p 0.01 0.00 0.01 0.00 +semi_automatique semi_automatique ADJ s 0.71 0.07 0.59 0.07 +semi_automatique semi_automatique ADJ f p 0.71 0.07 0.12 0.00 +semi_circulaire semi_circulaire ADJ s 0.01 0.14 0.01 0.14 +semi_conducteur semi_conducteur NOM m s 0.08 0.00 0.02 0.00 +semi_conducteur semi_conducteur NOM m p 0.08 0.00 0.06 0.00 +semi_liberté semi_liberté NOM f s 0.26 0.07 0.26 0.07 +semi_lunaire semi_lunaire ADJ f s 0.02 0.00 0.02 0.00 +semi_nomade semi_nomade ADJ m p 0.00 0.07 0.00 0.07 +semi_officiel semi_officiel ADJ m s 0.01 0.14 0.01 0.07 +semi_officiel semi_officiel ADJ f s 0.01 0.14 0.00 0.07 +semi_ouvert semi_ouvert ADJ m s 0.01 0.00 0.01 0.00 +semi_perméable semi_perméable ADJ f s 0.01 0.00 0.01 0.00 +semi_phonétique semi_phonétique ADJ f s 0.00 0.07 0.00 0.07 +semi_précieuse semi_précieuse ADJ f s 0.01 0.00 0.01 0.00 +semi_précieux semi_précieux ADJ f p 0.00 0.14 0.00 0.07 +semi_public semi_public ADJ m s 0.01 0.00 0.01 0.00 +semi_remorque semi_remorque NOM m s 0.48 0.61 0.45 0.54 +semi_remorque semi_remorque NOM m p 0.48 0.61 0.04 0.07 +semi_rigide semi_rigide ADJ f s 0.01 0.07 0.01 0.07 +semi semi NOM m s 0.52 1.28 0.52 1.28 +semis semis NOM m 0.04 2.84 0.04 2.84 +semoir semoir NOM m s 0.04 0.34 0.04 0.20 +semoirs semoir NOM m p 0.04 0.34 0.00 0.14 +semonce semonce NOM f s 0.30 1.49 0.29 1.35 +semoncer semoncer VER 0.00 0.41 0.00 0.14 inf; +semonces semonce NOM f p 0.30 1.49 0.01 0.14 +semoncé semoncer VER m s 0.00 0.41 0.00 0.07 par:pas; +semons semer VER 19.80 25.41 0.34 0.00 imp:pre:1p;ind:pre:1p; +semonça semoncer VER 0.00 0.41 0.00 0.07 ind:pas:3s; +semonçait semoncer VER 0.00 0.41 0.00 0.07 ind:imp:3s; +semonçant semoncer VER 0.00 0.41 0.00 0.07 par:pre; +semât semer VER 19.80 25.41 0.00 0.07 sub:imp:3s; +semoule semoule NOM f s 0.89 1.35 0.89 1.35 +sempiternel sempiternel ADJ m s 0.07 2.77 0.00 0.88 +sempiternelle sempiternel ADJ f s 0.07 2.77 0.03 0.47 +sempiternellement sempiternellement ADV 0.01 0.07 0.01 0.07 +sempiternelles sempiternel ADJ f p 0.07 2.77 0.01 0.88 +sempiternels sempiternel ADJ m p 0.07 2.77 0.03 0.54 +semtex semtex NOM m 0.10 0.00 0.10 0.00 +semé semer VER m s 19.80 25.41 4.10 6.08 par:pas; +semée semer VER f s 19.80 25.41 0.40 3.99 par:pas; +semées semer VER f p 19.80 25.41 0.17 1.76 par:pas; +semés semer VER m p 19.80 25.41 1.44 1.69 par:pas; +sen sen NOM m s 0.48 0.07 0.48 0.07 +senestre senestre ADJ f s 0.00 0.27 0.00 0.27 +senior senior ADJ m s 0.99 0.20 0.71 0.14 +seniors senior NOM m p 0.64 0.07 0.30 0.07 +senne seine NOM f s 0.14 0.47 0.00 0.20 +sens sentir VER 535.41 718.78 240.85 82.91 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sensas sensas ADJ s 0.44 0.00 0.44 0.00 +sensass sensass ADJ s 2.05 0.20 2.05 0.20 +sensation sensation NOM f s 17.26 46.89 13.20 37.09 +sensationnalisme sensationnalisme NOM m s 0.07 0.00 0.07 0.00 +sensationnel sensationnel ADJ m s 4.36 3.45 2.69 1.55 +sensationnelle sensationnel ADJ f s 4.36 3.45 1.37 1.35 +sensationnellement sensationnellement ADV 0.00 0.07 0.00 0.07 +sensationnelles sensationnel ADJ f p 4.36 3.45 0.18 0.27 +sensationnels sensationnel ADJ m p 4.36 3.45 0.12 0.27 +sensations sensation NOM f p 17.26 46.89 4.06 9.80 +senseur senseur NOM m s 0.42 0.07 0.04 0.07 +senseurs senseur NOM m p 0.42 0.07 0.38 0.00 +sensibilisait sensibiliser VER 0.27 0.68 0.00 0.07 ind:imp:3s; +sensibilisation sensibilisation NOM f s 0.09 0.07 0.09 0.07 +sensibilise sensibiliser VER 0.27 0.68 0.02 0.14 imp:pre:2s;ind:pre:3s; +sensibiliser sensibiliser VER 0.27 0.68 0.16 0.07 inf; +sensibilisé sensibiliser VER m s 0.27 0.68 0.05 0.07 par:pas; +sensibilisée sensibiliser VER f s 0.27 0.68 0.01 0.27 par:pas; +sensibilisés sensibiliser VER m p 0.27 0.68 0.02 0.07 par:pas; +sensibilité sensibilité NOM f s 5.95 12.36 5.72 12.03 +sensibilités sensibilité NOM f p 5.95 12.36 0.23 0.34 +sensible sensible ADJ s 26.79 38.85 21.11 30.88 +sensiblement sensiblement ADV 0.13 3.58 0.13 3.58 +sensiblerie sensiblerie NOM f s 0.50 1.15 0.48 1.08 +sensibleries sensiblerie NOM f p 0.50 1.15 0.02 0.07 +sensibles sensible ADJ p 26.79 38.85 5.67 7.97 +sensitif sensitif ADJ m s 0.21 0.54 0.00 0.20 +sensitifs sensitif ADJ m p 0.21 0.54 0.03 0.00 +sensitive sensitif ADJ f s 0.21 0.54 0.19 0.27 +sensitives sensitif ADJ f p 0.21 0.54 0.00 0.07 +sensorialité sensorialité NOM f s 0.00 0.07 0.00 0.07 +sensoriel sensoriel ADJ m s 0.86 0.54 0.22 0.07 +sensorielle sensoriel ADJ f s 0.86 0.54 0.23 0.34 +sensorielles sensoriel ADJ f p 0.86 0.54 0.10 0.14 +sensoriels sensoriel ADJ m p 0.86 0.54 0.32 0.00 +sensé sensé ADJ m s 10.50 2.64 6.47 1.28 +sensualiste sensualiste NOM s 0.00 0.07 0.00 0.07 +sensualité sensualité NOM f s 1.14 6.76 1.14 6.69 +sensualités sensualité NOM f p 1.14 6.76 0.00 0.07 +sensée sensé ADJ f s 10.50 2.64 2.86 0.88 +sensuel sensuel ADJ m s 4.10 10.68 1.28 4.05 +sensuelle sensuel ADJ f s 4.10 10.68 1.82 5.07 +sensuellement sensuellement ADV 0.28 0.54 0.28 0.54 +sensuelles sensuel ADJ f p 4.10 10.68 0.33 0.95 +sensuels sensuel ADJ m p 4.10 10.68 0.67 0.61 +sensées sensé ADJ f p 10.50 2.64 0.37 0.07 +sensément sensément ADV 0.00 0.07 0.00 0.07 +sensés sensé ADJ m p 10.50 2.64 0.80 0.41 +sent_bon sent_bon NOM m s 0.00 0.54 0.00 0.54 +sent sentir VER 535.41 718.78 74.27 84.73 ind:pre:3s; +sentîmes sentir VER 535.41 718.78 0.00 0.41 ind:pas:1p; +sentît sentir VER 535.41 718.78 0.00 1.76 sub:imp:3s; +sentaient sentir VER 535.41 718.78 0.80 13.99 ind:imp:3p; +sentais sentir VER 535.41 718.78 23.21 84.59 ind:imp:1s;ind:imp:2s; +sentait sentir VER 535.41 718.78 13.37 170.47 ind:imp:3s; +sentant sentir VER 535.41 718.78 1.93 14.39 par:pre; +sente sentir VER 535.41 718.78 4.89 4.46 sub:pre:1s;sub:pre:3s; +sentence sentence NOM f s 7.70 5.68 7.17 4.19 +sentences sentence NOM f p 7.70 5.68 0.52 1.49 +sentencieuse sentencieux ADJ f s 0.06 2.70 0.01 0.54 +sentencieusement sentencieusement ADV 0.00 1.22 0.00 1.22 +sentencieuses sentencieux ADJ f p 0.06 2.70 0.00 0.20 +sentencieux sentencieux ADJ m 0.06 2.70 0.05 1.96 +sentent sentir VER 535.41 718.78 11.21 11.08 ind:pre:3p;sub:pre:3p; +sentes sentir VER 535.41 718.78 2.60 0.41 sub:pre:2s; +senteur senteur NOM f s 0.71 11.69 0.51 6.01 +senteurs senteur NOM f p 0.71 11.69 0.20 5.68 +sentez sentir VER 535.41 718.78 32.56 5.34 imp:pre:2p;ind:pre:2p; +senti sentir VER m s 535.41 718.78 34.33 49.05 par:pas; +sentie sentir VER f s 535.41 718.78 7.30 7.91 par:pas; +sentier sentier NOM m s 5.72 36.62 3.88 28.45 +sentiers sentier NOM m p 5.72 36.62 1.85 8.18 +senties sentir VER f p 535.41 718.78 0.06 0.61 par:pas; +sentiez sentir VER 535.41 718.78 1.86 1.01 ind:imp:2p;sub:pre:2p; +sentiment sentiment NOM m s 75.72 157.30 36.87 106.42 +sentimental sentimental ADJ m s 8.69 17.16 4.40 6.01 +sentimentale sentimental ADJ f s 8.69 17.16 2.30 5.81 +sentimentalement sentimentalement ADV 0.82 0.54 0.82 0.54 +sentimentales sentimental ADJ f p 8.69 17.16 1.35 3.24 +sentimentaliser sentimentaliser VER 0.01 0.00 0.01 0.00 inf; +sentimentalisme sentimentalisme NOM m s 0.75 0.27 0.75 0.27 +sentimentalité sentimentalité NOM f s 0.18 1.22 0.18 1.15 +sentimentalités sentimentalité NOM f p 0.18 1.22 0.00 0.07 +sentimentaux sentimental ADJ m p 8.69 17.16 0.64 2.09 +sentiments sentiment NOM m p 75.72 157.30 38.86 50.88 +sentine sentine NOM f s 0.00 0.54 0.00 0.34 +sentinelle sentinelle NOM f s 4.50 12.57 2.91 7.64 +sentinelles sentinelle NOM f p 4.50 12.57 1.59 4.93 +sentines sentine NOM f p 0.00 0.54 0.00 0.20 +sentions sentir VER 535.41 718.78 0.59 3.11 ind:imp:1p;sub:pre:1p; +sentir sentir VER 535.41 718.78 58.48 74.19 inf; +sentira sentir VER 535.41 718.78 2.50 1.08 ind:fut:3s; +sentirai sentir VER 535.41 718.78 2.08 1.42 ind:fut:1s; +sentiraient sentir VER 535.41 718.78 0.09 0.47 cnd:pre:3p; +sentirais sentir VER 535.41 718.78 3.82 1.28 cnd:pre:1s;cnd:pre:2s; +sentirait sentir VER 535.41 718.78 1.20 2.91 cnd:pre:3s; +sentiras sentir VER 535.41 718.78 7.07 0.47 ind:fut:2s; +sentirent sentir VER 535.41 718.78 0.05 2.09 ind:pas:3p; +sentirez sentir VER 535.41 718.78 3.74 0.74 ind:fut:2p; +sentiriez sentir VER 535.41 718.78 0.37 0.14 cnd:pre:2p; +sentirons sentir VER 535.41 718.78 0.08 0.07 ind:fut:1p; +sentiront sentir VER 535.41 718.78 0.51 0.61 ind:fut:3p; +sentis sentir VER m p 535.41 718.78 2.60 24.12 ind:pas:1s;par:pas; +sentisse sentir VER 535.41 718.78 0.00 0.34 sub:imp:1s; +sentissent sentir VER 535.41 718.78 0.00 0.20 sub:imp:3p; +sentit sentir VER 535.41 718.78 1.98 69.66 ind:pas:3s; +sentons sentir VER 535.41 718.78 1.03 2.77 imp:pre:1p;ind:pre:1p; +seppuku seppuku NOM m s 0.07 0.00 0.07 0.00 +seps seps NOM m 0.00 0.07 0.00 0.07 +sept sept ADJ:num 66.07 75.61 66.07 75.61 +septale septal ADJ f s 0.04 0.00 0.03 0.00 +septante_cinq septante_cinq ADJ:num 0.00 0.07 0.00 0.07 +septante_sept septante_sept ADJ:num 0.20 0.07 0.20 0.07 +septante septante ADJ:num 0.11 0.07 0.11 0.07 +septaux septal ADJ m p 0.04 0.00 0.01 0.00 +septembre septembre NOM m 16.01 43.58 16.01 43.58 +septembriseur septembriseur NOM m s 0.00 0.07 0.00 0.07 +septennat septennat NOM m s 0.00 0.14 0.00 0.14 +septentrion septentrion NOM m s 0.16 0.07 0.16 0.07 +septentrional septentrional ADJ m s 0.02 0.74 0.01 0.14 +septentrionale septentrional ADJ f s 0.02 0.74 0.01 0.41 +septentrionales septentrional ADJ f p 0.02 0.74 0.00 0.20 +septicité septicité NOM f s 0.03 0.00 0.03 0.00 +septicémie septicémie NOM f s 0.23 0.20 0.23 0.20 +septicémique septicémique ADJ f s 0.04 0.00 0.04 0.00 +septidi septidi NOM m s 0.00 0.07 0.00 0.07 +septime septime NOM f s 0.81 0.00 0.81 0.00 +septique septique ADJ s 0.58 0.41 0.58 0.41 +septième septième ADJ 4.25 5.61 4.25 5.61 +septièmes septième NOM p 2.81 3.18 0.01 0.00 +septuagénaire septuagénaire NOM s 0.05 0.88 0.04 0.74 +septuagénaires septuagénaire NOM p 0.05 0.88 0.01 0.14 +septum septum NOM m s 0.09 0.00 0.09 0.00 +septuor septuor NOM m s 0.01 0.00 0.01 0.00 +septuple septuple NOM m s 0.03 0.00 0.03 0.00 +sepuku sepuku NOM m s 0.00 0.07 0.00 0.07 +sequin sequin NOM m s 0.29 0.27 0.01 0.07 +sequins sequin NOM m p 0.29 0.27 0.28 0.20 +sera être AUX 8074.24 6501.82 159.41 66.69 ind:fut:3s; +serai être AUX 8074.24 6501.82 28.15 10.20 ind:fut:1s; +seraient être AUX 8074.24 6501.82 10.47 30.81 cnd:pre:3p; +serais être AUX 8074.24 6501.82 45.02 36.42 cnd:pre:2s; +serait être AUX 8074.24 6501.82 59.74 111.35 cnd:pre:3s; +seras être AUX 8074.24 6501.82 25.57 4.39 ind:fut:2s; +serbe serbe ADJ s 3.48 0.88 2.44 0.54 +serbes serbe NOM p 2.85 0.95 2.31 0.74 +serbo_croate serbo_croate NOM s 0.14 0.20 0.14 0.20 +serein serein ADJ m s 5.22 10.61 3.38 3.72 +sereine serein ADJ f s 5.22 10.61 1.04 5.81 +sereinement sereinement ADV 0.43 0.74 0.43 0.74 +sereines serein ADJ f p 5.22 10.61 0.31 0.41 +sereins serein ADJ m p 5.22 10.61 0.50 0.68 +serez être AUX 8074.24 6501.82 26.65 6.76 ind:fut:2p; +serf serf NOM m s 0.56 1.08 0.23 0.27 +serfouette serfouette NOM f s 0.00 0.07 0.00 0.07 +serfs serf NOM m p 0.56 1.08 0.33 0.81 +serge serge NOM f s 1.10 2.64 1.10 2.50 +sergent_chef sergent_chef NOM m s 1.52 1.49 1.38 1.42 +sergent_major sergent_major NOM m s 0.71 1.35 0.71 1.28 +sergent_pilote sergent_pilote NOM m s 0.00 0.07 0.00 0.07 +sergent sergent NOM m s 27.36 23.65 26.48 20.88 +sergent_chef sergent_chef NOM m p 1.52 1.49 0.14 0.07 +sergent_major sergent_major NOM m p 0.71 1.35 0.00 0.07 +sergents sergent NOM m p 27.36 23.65 0.88 2.77 +serges serge NOM f p 1.10 2.64 0.00 0.14 +sergot sergot NOM m s 0.01 0.14 0.01 0.07 +sergots sergot NOM m p 0.01 0.14 0.00 0.07 +sergé sergé NOM m s 0.00 0.20 0.00 0.20 +serial serial NOM m s 0.69 0.07 0.69 0.07 +seriez être AUX 8074.24 6501.82 6.69 3.24 cnd:pre:2p; +serin serin NOM m s 0.07 3.24 0.05 1.49 +serinais seriner VER 0.25 2.03 0.01 0.07 ind:imp:1s;ind:imp:2s; +serinait seriner VER 0.25 2.03 0.01 0.54 ind:imp:3s; +serine seriner VER 0.25 2.03 0.01 0.47 ind:pre:1s;ind:pre:3s; +seriner seriner VER 0.25 2.03 0.19 0.47 inf; +serinera seriner VER 0.25 2.03 0.00 0.07 ind:fut:3s; +serines seriner VER 0.25 2.03 0.03 0.07 ind:pre:2s; +seringa seringa NOM m s 0.14 0.81 0.14 0.54 +seringas seringa NOM m p 0.14 0.81 0.00 0.27 +seringuaient seringuer VER 0.00 0.34 0.00 0.07 ind:imp:3p; +seringuait seringuer VER 0.00 0.34 0.00 0.07 ind:imp:3s; +seringue seringue NOM f s 6.15 5.00 4.39 4.39 +seringueiros seringueiro NOM m p 0.00 0.07 0.00 0.07 +seringuer seringuer VER 0.00 0.34 0.00 0.14 inf; +seringues seringue NOM f p 6.15 5.00 1.76 0.61 +seringuée seringuer VER f s 0.00 0.34 0.00 0.07 par:pas; +serinions seriner VER 0.25 2.03 0.00 0.07 ind:imp:1p; +serins serin NOM m p 0.07 3.24 0.01 1.49 +seriné seriner VER m s 0.25 2.03 0.00 0.20 par:pas; +serinées seriner VER f p 0.25 2.03 0.00 0.07 par:pas; +serions être AUX 8074.24 6501.82 2.56 3.99 cnd:pre:1p; +serment serment NOM m s 21.19 12.23 18.18 8.85 +serments serment NOM m p 21.19 12.23 3.01 3.38 +sermon sermon NOM m s 7.61 6.42 4.38 3.85 +sermonna sermonner VER 1.40 1.89 0.00 0.34 ind:pas:3s; +sermonnaient sermonner VER 1.40 1.89 0.00 0.14 ind:imp:3p; +sermonnait sermonner VER 1.40 1.89 0.00 0.20 ind:imp:3s; +sermonnant sermonner VER 1.40 1.89 0.04 0.07 par:pre; +sermonne sermonner VER 1.40 1.89 0.14 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sermonner sermonner VER 1.40 1.89 0.78 0.47 inf; +sermonnerai sermonner VER 1.40 1.89 0.01 0.00 ind:fut:1s; +sermonnes sermonner VER 1.40 1.89 0.02 0.00 ind:pre:2s; +sermonneur sermonneur NOM m s 0.28 0.00 0.27 0.00 +sermonneurs sermonneur NOM m p 0.28 0.00 0.01 0.00 +sermonnez sermonner VER 1.40 1.89 0.33 0.00 imp:pre:2p;ind:pre:2p; +sermonné sermonner VER m s 1.40 1.89 0.05 0.34 par:pas; +sermonnée sermonner VER f s 1.40 1.89 0.03 0.07 par:pas; +sermons sermon NOM m p 7.61 6.42 3.22 2.57 +serons être AUX 8074.24 6501.82 8.50 5.41 ind:fut:1p; +seront être AUX 8074.24 6501.82 39.61 23.65 ind:fut:3p; +serpe serpe NOM f s 0.01 4.32 0.01 4.12 +serpent serpent NOM m s 32.20 21.08 20.91 13.24 +serpentaient serpenter VER 0.09 5.88 0.00 0.61 ind:imp:3p; +serpentaire serpentaire NOM s 0.00 0.07 0.00 0.07 +serpentait serpenter VER 0.09 5.88 0.02 1.89 ind:imp:3s; +serpentant serpenter VER 0.09 5.88 0.04 0.74 par:pre; +serpente serpenter VER 0.09 5.88 0.01 1.62 ind:pre:1s;ind:pre:3s; +serpenteau serpenteau NOM m s 0.01 0.00 0.01 0.00 +serpentement serpentement NOM m s 0.00 0.14 0.00 0.07 +serpentements serpentement NOM m p 0.00 0.14 0.00 0.07 +serpentent serpenter VER 0.09 5.88 0.01 0.27 ind:pre:3p; +serpenter serpenter VER 0.09 5.88 0.00 0.61 inf; +serpentiforme serpentiforme ADJ m s 0.00 0.07 0.00 0.07 +serpentin serpentin ADJ m s 0.22 0.47 0.03 0.07 +serpentine serpentin ADJ f s 0.22 0.47 0.04 0.20 +serpentines serpentin ADJ f p 0.22 0.47 0.15 0.14 +serpentins serpentin NOM m p 0.22 1.49 0.20 1.08 +serpentons serpenter VER 0.09 5.88 0.00 0.07 ind:pre:1p; +serpents serpent NOM m p 32.20 21.08 11.29 7.84 +serpenté serpenter VER m s 0.09 5.88 0.00 0.07 par:pas; +serpes serpe NOM f p 0.01 4.32 0.00 0.20 +serpette serpette NOM f s 0.00 0.47 0.00 0.47 +serpillière serpillière NOM f s 1.85 4.46 1.65 3.11 +serpillières serpillière NOM f p 1.85 4.46 0.21 1.35 +serpolet serpolet NOM m s 0.00 0.14 0.00 0.14 +serra serra NOM f s 0.82 2.09 0.82 2.09 +serrage serrage NOM m s 0.01 0.47 0.01 0.47 +serrai serrer VER 50.99 207.50 0.01 2.84 ind:pas:1s; +serraient serrer VER 50.99 207.50 0.04 5.81 ind:imp:3p; +serrais serrer VER 50.99 207.50 0.68 2.77 ind:imp:1s;ind:imp:2s; +serrait serrer VER 50.99 207.50 1.29 26.96 ind:imp:3s; +serrant serrer VER 50.99 207.50 1.08 22.84 par:pre; +serrante serrante NOM f s 0.00 0.20 0.00 0.20 +serre_file serre_file NOM m s 0.04 0.34 0.04 0.34 +serre_joint serre_joint NOM m s 0.04 0.14 0.01 0.00 +serre_joint serre_joint NOM m p 0.04 0.14 0.03 0.14 +serre_livres serre_livres NOM m 0.03 0.07 0.03 0.07 +serre_tête serre_tête NOM m s 0.22 0.74 0.21 0.74 +serre_tête serre_tête NOM m p 0.22 0.74 0.01 0.00 +serre serrer VER 50.99 207.50 11.84 27.36 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +serrement serrement NOM m s 0.03 1.76 0.03 1.55 +serrements serrement NOM m p 0.03 1.76 0.00 0.20 +serrent serrer VER 50.99 207.50 1.78 3.38 ind:pre:3p;sub:pre:3p; +serrer serrer VER 50.99 207.50 13.68 23.24 inf; +serrera serrer VER 50.99 207.50 0.69 0.20 ind:fut:3s; +serrerai serrer VER 50.99 207.50 0.32 0.34 ind:fut:1s; +serreraient serrer VER 50.99 207.50 0.00 0.34 cnd:pre:3p; +serrerais serrer VER 50.99 207.50 0.12 0.41 cnd:pre:1s; +serrerait serrer VER 50.99 207.50 0.13 0.47 cnd:pre:3s; +serrerez serrer VER 50.99 207.50 0.06 0.07 ind:fut:2p; +serrerons serrer VER 50.99 207.50 0.00 0.07 ind:fut:1p; +serreront serrer VER 50.99 207.50 0.01 0.20 ind:fut:3p; +serres serrer VER 50.99 207.50 1.60 0.34 ind:pre:2s;sub:pre:2s; +serrez serrer VER 50.99 207.50 5.34 1.28 imp:pre:2p;ind:pre:2p; +serriez serrer VER 50.99 207.50 0.06 0.07 ind:imp:2p; +serrions serrer VER 50.99 207.50 0.12 0.47 ind:imp:1p; +serrâmes serrer VER 50.99 207.50 0.00 0.41 ind:pas:1p; +serrons serrer VER 50.99 207.50 0.97 1.22 imp:pre:1p;ind:pre:1p; +serrât serrer VER 50.99 207.50 0.00 0.07 sub:imp:3s; +serrèrent serrer VER 50.99 207.50 0.00 3.78 ind:pas:3p; +serré serré ADJ m s 12.00 41.28 7.31 9.53 +serrée serré ADJ f s 12.00 41.28 1.68 8.72 +serrées serré ADJ f p 12.00 41.28 0.78 13.31 +serrure serrure NOM f s 10.07 19.26 7.40 16.08 +serrurerie serrurerie NOM f s 0.22 0.54 0.22 0.54 +serrures serrure NOM f p 10.07 19.26 2.67 3.18 +serrurier serrurier NOM m s 2.25 2.23 2.20 1.96 +serruriers serrurier NOM m p 2.25 2.23 0.04 0.27 +serrurière serrurier NOM f s 2.25 2.23 0.01 0.00 +serrés serré ADJ m p 12.00 41.28 2.23 9.73 +sers servir VER 309.81 286.22 44.58 5.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sert servir VER 309.81 286.22 73.13 45.47 ind:pre:3s; +sertao sertao NOM m s 0.10 0.07 0.10 0.07 +serti sertir VER m s 0.52 3.04 0.19 0.95 par:pas; +sertie sertir VER f s 0.52 3.04 0.17 0.95 par:pas; +serties sertir VER f p 0.52 3.04 0.01 0.34 par:pas; +sertir sertir VER 0.52 3.04 0.01 0.07 inf; +sertirait sertir VER 0.52 3.04 0.00 0.07 cnd:pre:3s; +sertis sertir VER m p 0.52 3.04 0.14 0.41 par:pas; +sertissage sertissage NOM m s 0.00 0.07 0.00 0.07 +sertissaient sertir VER 0.52 3.04 0.00 0.07 ind:imp:3p; +sertissait sertir VER 0.52 3.04 0.00 0.07 ind:imp:3s; +sertissant sertir VER 0.52 3.04 0.00 0.07 par:pre; +sertissent sertir VER 0.52 3.04 0.00 0.07 ind:pre:3p; +sertisseur sertisseur NOM m s 0.00 0.07 0.00 0.07 +sertão sertão NOM m s 2.00 0.00 2.00 0.00 +servîmes servir VER 309.81 286.22 0.00 0.07 ind:pas:1p; +servît servir VER 309.81 286.22 0.00 0.74 sub:imp:3s; +servage servage NOM m s 0.03 0.54 0.03 0.54 +servaient servir VER 309.81 286.22 1.98 12.30 ind:imp:3p; +servais servir VER 309.81 286.22 1.19 1.69 ind:imp:1s;ind:imp:2s; +servait servir VER 309.81 286.22 6.41 42.43 ind:imp:3s; +serval serval NOM m s 0.01 0.00 0.01 0.00 +servant servir VER 309.81 286.22 2.20 7.64 par:pre; +servante servant NOM f s 7.41 18.65 6.36 12.30 +servantes servant NOM f p 7.41 18.65 0.77 4.46 +servants servant ADJ m p 1.09 1.15 0.26 0.27 +serve servir VER 309.81 286.22 5.83 4.12 sub:pre:1s;sub:pre:3s; +servent servir VER 309.81 286.22 14.43 11.82 ind:pre:3p; +serves servir VER 309.81 286.22 0.62 0.00 sub:pre:2s; +serveur serveur NOM m s 21.57 16.42 9.21 5.27 +serveurs serveur NOM m p 21.57 16.42 2.41 2.84 +serveuse serveur NOM f s 21.57 16.42 9.96 6.62 +serveuses serveuse NOM f p 1.64 0.00 1.64 0.00 +servez servir VER 309.81 286.22 13.39 1.89 imp:pre:2p;ind:pre:2p; +servi servir VER m s 309.81 286.22 36.58 38.72 par:pas; +serviabilité serviabilité NOM f s 0.01 0.00 0.01 0.00 +serviable serviable ADJ s 1.88 2.23 1.48 2.03 +serviables serviable ADJ m p 1.88 2.23 0.39 0.20 +service service NOM m s 187.67 142.77 156.00 106.28 +services service NOM m p 187.67 142.77 31.67 36.49 +servie servir VER f s 309.81 286.22 3.04 3.45 par:pas; +servies servir VER f p 309.81 286.22 0.44 0.88 par:pas; +serviette_éponge serviette_éponge NOM f s 0.00 1.49 0.00 1.22 +serviette serviette NOM f s 25.64 35.07 17.16 26.62 +serviette_éponge serviette_éponge NOM f p 0.00 1.49 0.00 0.27 +serviettes serviette NOM f p 25.64 35.07 8.48 8.45 +serviez servir VER 309.81 286.22 0.19 0.34 ind:imp:2p; +servile servile ADJ s 1.14 3.65 0.89 2.77 +servilement servilement ADV 0.02 0.47 0.02 0.47 +serviles servile ADJ p 1.14 3.65 0.25 0.88 +servilité servilité NOM f s 0.01 1.22 0.01 1.15 +servilités servilité NOM f p 0.01 1.22 0.00 0.07 +servions servir VER 309.81 286.22 0.19 0.61 ind:imp:1p; +servir servir VER 309.81 286.22 73.55 74.59 inf; +servira servir VER 309.81 286.22 12.20 3.58 ind:fut:3s; +servirai servir VER 309.81 286.22 3.13 0.68 ind:fut:1s; +serviraient servir VER 309.81 286.22 0.23 1.49 cnd:pre:3p; +servirais servir VER 309.81 286.22 0.77 0.41 cnd:pre:1s;cnd:pre:2s; +servirait servir VER 309.81 286.22 6.40 7.09 cnd:pre:3s; +serviras servir VER 309.81 286.22 0.88 0.27 ind:fut:2s; +servirent servir VER 309.81 286.22 0.04 1.15 ind:pas:3p; +servirez servir VER 309.81 286.22 1.14 0.07 ind:fut:2p; +serviriez servir VER 309.81 286.22 0.07 0.07 cnd:pre:2p; +servirions servir VER 309.81 286.22 0.02 0.07 cnd:pre:1p; +servirons servir VER 309.81 286.22 0.64 0.14 ind:fut:1p; +serviront servir VER 309.81 286.22 2.02 2.03 ind:fut:3p; +servis servir VER m p 309.81 286.22 2.71 4.05 ind:pas:1s;par:pas; +servissent servir VER 309.81 286.22 0.00 0.27 sub:imp:3p; +servit servir VER 309.81 286.22 0.46 12.23 ind:pas:3s; +serviteur serviteur NOM m s 16.43 17.77 10.63 7.16 +serviteurs serviteur NOM m p 16.43 17.77 5.80 10.61 +servitude servitude NOM f s 0.57 7.43 0.42 4.73 +servitudes servitude NOM f p 0.57 7.43 0.16 2.70 +servofrein servofrein NOM m s 0.03 0.00 0.03 0.00 +servomoteur servomoteur NOM m s 0.02 0.00 0.01 0.00 +servomoteurs servomoteur NOM m p 0.02 0.00 0.01 0.00 +servomécanisme servomécanisme NOM m s 0.01 0.00 0.01 0.00 +servons servir VER 309.81 286.22 1.36 0.47 imp:pre:1p;ind:pre:1p; +ses ses ADJ:pos 757.68 3105.41 757.68 3105.41 +session session NOM f s 3.29 2.30 2.36 1.89 +sessions session NOM f p 3.29 2.30 0.93 0.41 +sesterces sesterce NOM m p 0.85 0.34 0.85 0.34 +set set NOM m s 3.76 0.61 3.05 0.34 +sets set NOM m p 3.76 0.61 0.71 0.27 +setter setter NOM m s 0.07 0.61 0.07 0.41 +setters setter NOM m p 0.07 0.61 0.00 0.20 +seuil seuil NOM m s 5.49 49.86 5.45 48.85 +seuils seuil NOM m p 5.49 49.86 0.04 1.01 +seul seul ADJ m s 891.45 915.27 461.20 478.58 +seulabre seulabre ADJ m s 0.00 0.88 0.00 0.81 +seulabres seulabre ADJ p 0.00 0.88 0.00 0.07 +seule seul ADJ f s 891.45 915.27 349.74 318.85 +seulement seulement ADV 279.25 397.97 279.25 397.97 +seules seul ADJ f p 891.45 915.27 17.22 30.27 +seulet seulet ADJ m s 0.51 1.22 0.20 0.00 +seulette seulet ADJ f s 0.51 1.22 0.31 1.15 +seulettes seulet ADJ f p 0.51 1.22 0.00 0.07 +seuls seul ADJ m p 891.45 915.27 63.29 87.57 +seventies seventies NOM p 0.07 0.07 0.07 0.07 +sevrage sevrage NOM m s 0.51 1.08 0.51 1.01 +sevrages sevrage NOM m p 0.51 1.08 0.00 0.07 +sevrait sevrer VER 0.42 2.36 0.00 0.07 ind:imp:3s; +sevrer sevrer VER 0.42 2.36 0.12 0.27 inf; +sevré sevrer VER m s 0.42 2.36 0.07 0.95 par:pas; +sevrée sevrer VER f s 0.42 2.36 0.05 0.81 par:pas; +sevrées sevrer VER f p 0.42 2.36 0.01 0.00 par:pas; +sevrés sevrer VER m p 0.42 2.36 0.17 0.27 par:pas; +sex_appeal sex_appeal NOM m s 0.44 0.74 0.38 0.68 +sex_shop sex_shop NOM m s 0.57 0.54 0.41 0.34 +sex_shop sex_shop NOM m p 0.57 0.54 0.07 0.20 +sex_symbol sex_symbol NOM m s 0.08 0.07 0.08 0.07 +sex_appeal sex_appeal NOM m s 0.44 0.74 0.06 0.07 +sex_shop sex_shop NOM m s 0.57 0.54 0.08 0.00 +sex_shop sex_shop NOM m p 0.57 0.54 0.01 0.00 +sexagénaire sexagénaire NOM s 0.17 0.74 0.15 0.61 +sexagénaires sexagénaire NOM p 0.17 0.74 0.02 0.14 +sexe sexe NOM m s 52.09 52.70 50.44 46.49 +sexes sexe NOM m p 52.09 52.70 1.65 6.22 +sexisme sexisme NOM m s 0.39 0.20 0.39 0.20 +sexiste sexiste ADJ s 1.09 0.07 0.96 0.07 +sexistes sexiste ADJ p 1.09 0.07 0.13 0.00 +sexologie sexologie NOM f s 0.21 0.27 0.21 0.27 +sexologique sexologique ADJ s 0.00 0.07 0.00 0.07 +sexologue sexologue NOM s 0.07 0.20 0.07 0.00 +sexologues sexologue NOM p 0.07 0.20 0.00 0.20 +sextant sextant NOM m s 0.22 0.54 0.22 0.54 +sextidi sextidi NOM m s 0.00 0.07 0.00 0.07 +sextile sextil ADJ f s 0.00 0.07 0.00 0.07 +sexto sexto ADV 0.01 0.00 0.01 0.00 +sextuor sextuor NOM m s 0.07 0.14 0.07 0.14 +sextuple sextuple ADJ m s 0.01 0.07 0.01 0.07 +sexualiser sexualiser VER 0.02 0.00 0.01 0.00 inf; +sexualisé sexualiser VER m s 0.02 0.00 0.01 0.00 par:pas; +sexualité sexualité NOM f s 6.02 5.14 6.02 5.14 +sexuel sexuel ADJ m s 46.15 20.54 15.97 6.62 +sexuelle sexuel ADJ f s 46.15 20.54 14.74 8.31 +sexuellement sexuellement ADV 4.61 0.88 4.61 0.88 +sexuelles sexuel ADJ f p 46.15 20.54 6.37 2.57 +sexuels sexuel ADJ m p 46.15 20.54 9.07 3.04 +sexué sexué ADJ m s 0.01 0.20 0.00 0.14 +sexués sexué ADJ m p 0.01 0.20 0.01 0.07 +sexy sexy ADJ 26.83 1.49 26.83 1.49 +seyait seoir VER 1.75 3.78 0.00 0.74 ind:imp:3s; +seyant seyant ADJ m s 0.67 1.15 0.54 0.88 +seyante seyant ADJ f s 0.67 1.15 0.07 0.00 +seyantes seyant ADJ f p 0.67 1.15 0.02 0.14 +seyants seyant ADJ m p 0.67 1.15 0.03 0.14 +shôgun shôgun NOM m s 0.00 0.07 0.00 0.07 +shabbat shabbat NOM m s 4.25 0.74 4.25 0.74 +shah shah NOM m s 1.13 0.61 1.13 0.54 +shahs shah NOM m p 1.13 0.61 0.00 0.07 +shake_hand shake_hand NOM m s 0.00 0.14 0.00 0.14 +shaker shaker NOM m s 0.50 0.81 0.50 0.81 +shakespearien shakespearien ADJ m s 0.21 0.41 0.15 0.27 +shakespearienne shakespearien ADJ f s 0.21 0.41 0.05 0.14 +shakespeariens shakespearien ADJ m p 0.21 0.41 0.01 0.00 +shako shako NOM m s 0.01 1.22 0.01 0.81 +shakos shako NOM m p 0.01 1.22 0.00 0.41 +shale shale NOM m s 0.17 0.00 0.17 0.00 +shaman shaman NOM m s 0.92 0.07 0.81 0.07 +shamans shaman NOM m p 0.92 0.07 0.11 0.00 +shamisen shamisen NOM m s 0.01 0.07 0.01 0.07 +shampoing shampoing NOM m s 1.57 0.07 1.38 0.07 +shampoings shampoing NOM m p 1.57 0.07 0.19 0.00 +shampooiner shampooiner VER 0.03 0.00 0.03 0.00 inf; +shampooing shampooing NOM m s 2.61 2.30 2.35 1.69 +shampooings shampooing NOM m p 2.61 2.30 0.25 0.61 +shampouine shampouiner VER 0.14 0.14 0.01 0.07 ind:pre:3s; +shampouiner shampouiner VER 0.14 0.14 0.12 0.00 inf; +shampouineur shampouineur NOM m s 0.24 1.62 0.11 0.00 +shampouineuse shampouineur NOM f s 0.24 1.62 0.13 1.42 +shampouineuses shampouineur NOM f p 0.24 1.62 0.00 0.20 +shampouiné shampouiner VER m s 0.14 0.14 0.00 0.07 par:pas; +shanghaien shanghaien ADJ m s 0.01 0.00 0.01 0.00 +shanghaien shanghaien NOM m s 0.02 0.00 0.01 0.00 +shanghaiens shanghaien NOM m p 0.02 0.00 0.01 0.00 +shantung shantung NOM m s 0.00 1.08 0.00 1.08 +shed shed NOM m s 0.17 0.00 0.17 0.00 +shekels shekel NOM m p 1.03 0.00 1.03 0.00 +sheriff sheriff NOM m s 2.61 0.14 2.61 0.14 +sherpa sherpa NOM m s 0.18 0.07 0.14 0.00 +sherpas sherpa NOM m p 0.18 0.07 0.04 0.07 +sherry sherry NOM m s 2.75 0.27 2.75 0.27 +shetland shetland NOM m s 0.00 0.74 0.00 0.61 +shetlands shetland NOM m p 0.00 0.74 0.00 0.14 +shiatsu shiatsu NOM m s 0.28 0.00 0.28 0.00 +shift shift ADJ s 0.19 0.00 0.19 0.00 +shilling shilling NOM m s 2.28 0.20 0.55 0.00 +shillings shilling NOM m p 2.28 0.20 1.73 0.20 +shilom shilom NOM m s 0.01 0.00 0.01 0.00 +shimmy shimmy NOM m s 0.11 0.20 0.11 0.20 +shingle shingle NOM m s 0.01 0.00 0.01 0.00 +shintô shintô NOM m s 0.01 0.00 0.01 0.00 +shintoïsme shintoïsme NOM m s 0.00 0.07 0.00 0.07 +shintoïste shintoïste ADJ m s 0.02 0.07 0.02 0.07 +shipchandler shipchandler NOM m s 0.00 0.07 0.00 0.07 +shipping shipping NOM m s 0.04 0.07 0.04 0.07 +shirting shirting NOM m s 0.00 0.07 0.00 0.07 +shit shit NOM m s 3.00 1.35 3.00 1.35 +shocking shocking ADJ m s 0.03 0.07 0.03 0.07 +shogoun shogoun NOM m s 0.10 0.00 0.10 0.00 +shogun shogun NOM m s 0.32 0.00 0.32 0.00 +shogunal shogunal ADJ m s 0.03 0.00 0.01 0.00 +shogunale shogunal ADJ f s 0.03 0.00 0.02 0.00 +shogunat shogunat NOM m s 0.06 0.00 0.06 0.00 +shoot shoot NOM m s 1.29 2.50 1.21 2.23 +shoota shooter VER 6.84 5.14 0.00 0.14 ind:pas:3s; +shootai shooter VER 6.84 5.14 0.00 0.07 ind:pas:1s; +shootais shooter VER 6.84 5.14 0.05 0.14 ind:imp:1s;ind:imp:2s; +shootait shooter VER 6.84 5.14 0.16 0.27 ind:imp:3s; +shootant shooter VER 6.84 5.14 0.04 0.14 par:pre; +shoote shooter VER 6.84 5.14 2.67 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +shootent shooter VER 6.84 5.14 0.14 0.20 ind:pre:3p; +shooter shooter VER 6.84 5.14 1.88 1.22 inf;; +shootera shooter VER 6.84 5.14 0.04 0.00 ind:fut:3s; +shooterai shooter VER 6.84 5.14 0.02 0.07 ind:fut:1s; +shooteraient shooter VER 6.84 5.14 0.01 0.00 cnd:pre:3p; +shooteras shooter VER 6.84 5.14 0.01 0.07 ind:fut:2s; +shootes shooter VER 6.84 5.14 0.22 0.20 ind:pre:2s; +shooteuse shooteur NOM f s 0.03 0.27 0.03 0.27 +shootiez shooter VER 6.84 5.14 0.01 0.00 ind:imp:2p; +shootions shooter VER 6.84 5.14 0.00 0.07 ind:imp:1p; +shootons shooter VER 6.84 5.14 0.01 0.00 imp:pre:1p; +shoots shoot NOM m p 1.29 2.50 0.08 0.27 +shooté shooter VER m s 6.84 5.14 0.96 1.01 par:pas; +shootée shooter VER f s 6.84 5.14 0.45 0.14 par:pas; +shootés shooter VER m p 6.84 5.14 0.19 0.00 par:pas; +shopping shopping NOM m s 5.75 0.54 5.64 0.47 +shoppings shopping NOM m p 5.75 0.54 0.10 0.07 +short short NOM m s 4.42 8.24 3.79 6.55 +shorts short NOM m p 4.42 8.24 0.62 1.69 +shoshones shoshone NOM p 0.07 0.00 0.07 0.00 +show_business show_business NOM m 0.00 0.27 0.00 0.27 +show show NOM m s 0.09 2.64 0.09 2.57 +showbiz showbiz NOM m 0.00 0.68 0.00 0.68 +shows show NOM m p 0.09 2.64 0.00 0.07 +shrapnel shrapnel NOM m s 0.10 0.34 0.09 0.00 +shrapnell shrapnell NOM m s 0.01 1.42 0.01 0.54 +shrapnells shrapnell NOM m p 0.01 1.42 0.00 0.88 +shrapnels shrapnel NOM m p 0.10 0.34 0.01 0.34 +shunt shunt NOM m s 0.16 0.00 0.16 0.00 +shunte shunter VER 0.03 0.07 0.01 0.07 ind:pre:1s;ind:pre:3s; +shunter shunter VER 0.03 0.07 0.02 0.00 inf; +shéol shéol NOM m s 0.00 0.07 0.00 0.07 +shérif shérif NOM m s 46.65 1.28 45.75 1.08 +shérifs shérif NOM m p 46.65 1.28 0.90 0.20 +si si CON 1374.43 933.99 1374.43 933.99 +siam siam NOM m s 0.01 0.00 0.01 0.00 +siamois siamois NOM m 1.57 2.36 1.48 2.23 +siamoise siamois ADJ f s 0.85 1.62 0.01 0.20 +siamoises siamois NOM f p 1.57 2.36 0.08 0.00 +sibilant sibilant ADJ m s 0.00 0.07 0.00 0.07 +sibérien sibérien ADJ m s 0.71 3.99 0.22 0.74 +sibérienne sibérien ADJ f s 0.71 3.99 0.05 2.77 +sibériennes sibérien ADJ f p 0.71 3.99 0.20 0.34 +sibériens sibérien ADJ m p 0.71 3.99 0.24 0.14 +sibylle sibylle NOM f s 0.37 0.61 0.34 0.34 +sibylles sibylle NOM f p 0.37 0.61 0.04 0.27 +sibyllin sibyllin ADJ m s 0.07 2.36 0.02 0.95 +sibylline sibyllin ADJ f s 0.07 2.36 0.03 0.68 +sibyllines sibyllin ADJ f p 0.07 2.36 0.01 0.47 +sibyllins sibyllin ADJ m p 0.07 2.36 0.01 0.27 +sic_transit_gloria_mundi sic_transit_gloria_mundi ADV 0.03 0.07 0.03 0.07 +sic sic ADV 0.20 1.35 0.20 1.35 +sicaire sicaire NOM m s 0.00 0.14 0.00 0.07 +sicaires sicaire NOM m p 0.00 0.14 0.00 0.07 +sicilien sicilien NOM m s 3.27 1.96 1.03 1.69 +sicilienne sicilien ADJ f s 2.61 1.22 0.84 0.20 +siciliennes sicilien ADJ f p 2.61 1.22 0.25 0.34 +siciliens sicilien NOM m p 3.27 1.96 2.21 0.27 +sicle sicle NOM m s 0.02 0.00 0.02 0.00 +sida sida NOM m s 5.02 5.20 5.02 5.14 +sidaïque sidaïque ADJ m s 0.02 0.00 0.02 0.00 +sidas sida NOM m p 5.02 5.20 0.00 0.07 +side_car side_car NOM m s 0.23 1.08 0.23 0.81 +side_car side_car NOM m p 0.23 1.08 0.00 0.27 +sidi sidi NOM m s 0.00 0.81 0.00 0.68 +sidis sidi NOM m p 0.00 0.81 0.00 0.14 +sidère sidérer VER 1.03 2.16 0.29 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sidéenne sidéen ADJ f s 0.03 0.00 0.01 0.00 +sidéens sidéen NOM m p 0.18 0.00 0.18 0.00 +sidérais sidérer VER 1.03 2.16 0.00 0.07 ind:imp:1s; +sidérait sidérer VER 1.03 2.16 0.01 0.20 ind:imp:3s; +sidéral sidéral ADJ m s 0.11 0.88 0.04 0.41 +sidérale sidéral ADJ f s 0.11 0.88 0.07 0.27 +sidérales sidéral ADJ f p 0.11 0.88 0.00 0.14 +sidérant sidérant ADJ m s 0.20 0.27 0.17 0.14 +sidérante sidérant ADJ f s 0.20 0.27 0.03 0.14 +sidération sidération NOM f s 0.03 0.00 0.03 0.00 +sidéraux sidéral ADJ m p 0.11 0.88 0.00 0.07 +sidérer sidérer VER 1.03 2.16 0.02 0.00 inf; +sidérite sidérite NOM f s 0.01 0.00 0.01 0.00 +sidéré sidérer VER m s 1.03 2.16 0.42 1.15 par:pas; +sidérée sidérer VER f s 1.03 2.16 0.22 0.34 par:pas; +sidérées sidérer VER f p 1.03 2.16 0.00 0.07 par:pas; +sidérurgie sidérurgie NOM f s 0.12 0.27 0.12 0.27 +sidérurgique sidérurgique ADJ f s 0.03 0.27 0.03 0.20 +sidérurgiques sidérurgique ADJ p 0.03 0.27 0.00 0.07 +sidérurgistes sidérurgiste NOM p 0.02 0.00 0.02 0.00 +sidérés sidérer VER m p 1.03 2.16 0.06 0.27 par:pas; +sied seoir VER 1.75 3.78 1.67 2.84 ind:pre:3s; +sien sien PRO:pos m s 13.40 36.08 13.40 36.08 +sienne sienne PRO:pos f s 14.21 40.68 14.21 40.68 +siennes siennes PRO:pos f p 2.74 9.73 2.74 9.73 +siennois siennois NOM m 0.00 0.20 0.00 0.20 +siennoise siennois ADJ f s 0.00 0.41 0.00 0.20 +siennoises siennois ADJ f p 0.00 0.41 0.00 0.14 +siens siens PRO:pos m p 7.54 29.80 7.54 29.80 +sierra sierra NOM f s 4.27 3.51 4.00 2.77 +sierras sierra NOM f p 4.27 3.51 0.27 0.74 +siesta siester VER 0.06 0.07 0.06 0.00 ind:pas:3s; +siestant siester VER 0.06 0.07 0.00 0.07 par:pre; +sieste sieste NOM f s 9.58 14.86 9.23 13.38 +siestes sieste NOM f p 9.58 14.86 0.34 1.49 +sieur sieur NOM m s 8.06 21.35 7.66 20.81 +sieurs sieur NOM m p 8.06 21.35 0.41 0.54 +siffla siffler VER 13.04 40.20 0.06 5.47 ind:pas:3s; +sifflai siffler VER 13.04 40.20 0.00 0.14 ind:pas:1s; +sifflaient siffler VER 13.04 40.20 0.22 2.57 ind:imp:3p; +sifflais siffler VER 13.04 40.20 0.19 0.14 ind:imp:1s;ind:imp:2s; +sifflait siffler VER 13.04 40.20 0.65 5.88 ind:imp:3s; +sifflant siffler VER 13.04 40.20 0.41 3.45 par:pre; +sifflante sifflante ADJ f s 0.24 3.58 0.06 3.11 +sifflantes sifflante ADJ f p 0.24 3.58 0.17 0.47 +sifflants sifflant ADJ m p 0.05 1.76 0.01 0.47 +sifflard sifflard NOM m s 0.00 0.34 0.00 0.34 +siffle siffler VER 13.04 40.20 4.62 7.23 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sifflement sifflement NOM m s 4.83 13.78 4.45 10.47 +sifflements sifflement NOM m p 4.83 13.78 0.38 3.31 +sifflent siffler VER 13.04 40.20 0.96 2.64 ind:pre:3p; +siffler siffler VER 13.04 40.20 3.02 8.24 inf; +sifflera siffler VER 13.04 40.20 0.63 0.14 ind:fut:3s; +sifflerai siffler VER 13.04 40.20 0.12 0.00 ind:fut:1s; +siffleraient siffler VER 13.04 40.20 0.00 0.14 cnd:pre:3p; +sifflerait siffler VER 13.04 40.20 0.16 0.07 cnd:pre:3s; +siffleras siffler VER 13.04 40.20 0.03 0.00 ind:fut:2s; +siffles siffler VER 13.04 40.20 0.65 0.07 ind:pre:2s; +sifflet sifflet NOM m s 4.61 17.91 3.76 13.31 +sifflets sifflet NOM m p 4.61 17.91 0.84 4.59 +siffleur siffleur ADJ m s 0.05 0.07 0.05 0.07 +sifflez siffler VER 13.04 40.20 0.38 0.14 imp:pre:2p;ind:pre:2p; +siffliez siffler VER 13.04 40.20 0.04 0.00 ind:imp:2p; +sifflota siffloter VER 0.28 10.81 0.00 1.15 ind:pas:3s; +sifflotais siffloter VER 0.28 10.81 0.00 0.14 ind:imp:1s; +sifflotait siffloter VER 0.28 10.81 0.00 1.82 ind:imp:3s; +sifflotant siffloter VER 0.28 10.81 0.06 3.85 par:pre; +sifflote siffloter VER 0.28 10.81 0.16 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sifflotement sifflotement NOM m s 0.01 0.34 0.01 0.34 +siffloter siffloter VER 0.28 10.81 0.05 2.16 inf; +siffloterai siffloter VER 0.28 10.81 0.01 0.00 ind:fut:1s; +sifflotiez siffloter VER 0.28 10.81 0.00 0.07 ind:imp:2p; +sifflotis sifflotis NOM m 0.00 0.14 0.00 0.14 +sifflotèrent siffloter VER 0.28 10.81 0.00 0.07 ind:pas:3p; +siffloté siffloter VER m s 0.28 10.81 0.00 0.27 par:pas; +sifflèrent siffler VER 13.04 40.20 0.00 0.61 ind:pas:3p; +sifflé siffler VER m s 13.04 40.20 0.86 2.97 par:pas; +sifflée siffler VER f s 13.04 40.20 0.06 0.20 par:pas; +sifflées siffler VER f p 13.04 40.20 0.00 0.07 par:pas; +sifflés siffler VER m p 13.04 40.20 0.00 0.07 par:pas; +sigillaire sigillaire ADJ m s 0.04 0.07 0.04 0.07 +sigillé sigillé ADJ m s 0.00 0.27 0.00 0.07 +sigillée sigillé ADJ f s 0.00 0.27 0.00 0.20 +sigisbée sigisbée NOM m s 0.00 0.20 0.00 0.14 +sigisbées sigisbée NOM m p 0.00 0.20 0.00 0.07 +sigle sigle NOM m s 0.70 1.62 0.56 1.01 +sigles sigle NOM m p 0.70 1.62 0.14 0.61 +sigmoïde sigmoïde ADJ s 0.01 0.07 0.01 0.07 +signa signer VER 98.19 55.81 0.29 3.38 ind:pas:3s; +signai signer VER 98.19 55.81 0.42 0.34 ind:pas:1s; +signaient signer VER 98.19 55.81 0.04 0.68 ind:imp:3p; +signais signer VER 98.19 55.81 0.25 0.47 ind:imp:1s;ind:imp:2s; +signait signer VER 98.19 55.81 0.44 3.31 ind:imp:3s; +signal signal NOM m s 37.74 23.11 33.98 18.72 +signala signaler VER 27.92 27.50 0.00 1.42 ind:pas:3s; +signalai signaler VER 27.92 27.50 0.00 0.14 ind:pas:1s; +signalaient signaler VER 27.92 27.50 0.02 0.74 ind:imp:3p; +signalais signaler VER 27.92 27.50 0.01 0.07 ind:imp:1s; +signalait signaler VER 27.92 27.50 0.08 3.04 ind:imp:3s; +signalant signaler VER 27.92 27.50 0.18 1.82 par:pre; +signale signaler VER 27.92 27.50 7.26 5.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +signalement signalement NOM m s 3.43 2.70 3.38 2.30 +signalements signalement NOM m p 3.43 2.70 0.05 0.41 +signalent signaler VER 27.92 27.50 0.81 1.01 ind:pre:3p; +signaler signaler VER 27.92 27.50 9.51 6.62 inf; +signalera signaler VER 27.92 27.50 0.38 0.07 ind:fut:3s; +signalerai signaler VER 27.92 27.50 0.26 0.07 ind:fut:1s; +signalerait signaler VER 27.92 27.50 0.01 0.34 cnd:pre:3s; +signaleront signaler VER 27.92 27.50 0.04 0.00 ind:fut:3p; +signales signaler VER 27.92 27.50 0.24 0.00 ind:pre:2s; +signaleur signaleur NOM m s 0.83 0.20 0.83 0.07 +signaleurs signaleur NOM m p 0.83 0.20 0.00 0.14 +signalez signaler VER 27.92 27.50 1.20 0.14 imp:pre:2p;ind:pre:2p; +signalisation signalisation NOM f s 0.52 1.08 0.41 1.08 +signalisations signalisation NOM f p 0.52 1.08 0.11 0.00 +signaliser signaliser VER 0.01 0.00 0.01 0.00 inf; +signalons signaler VER 27.92 27.50 0.22 0.27 imp:pre:1p;ind:pre:1p; +signalât signaler VER 27.92 27.50 0.00 0.14 sub:imp:3s; +signalé signaler VER m s 27.92 27.50 6.82 3.78 par:pas; +signalée signaler VER f s 27.92 27.50 0.57 0.95 par:pas; +signalées signaler VER f p 27.92 27.50 0.10 0.41 par:pas; +signalés signaler VER m p 27.92 27.50 0.23 0.61 par:pas; +signalétique signalétique ADJ s 0.15 0.41 0.04 0.34 +signalétiques signalétique ADJ m p 0.15 0.41 0.11 0.07 +signant signer VER 98.19 55.81 0.39 1.35 par:pre; +signasse signer VER 98.19 55.81 0.00 0.07 sub:imp:1s; +signataire signataire NOM s 0.26 0.95 0.17 0.68 +signataires signataire NOM p 0.26 0.95 0.09 0.27 +signature signature NOM f s 18.47 15.20 16.55 13.45 +signatures signature NOM f p 18.47 15.20 1.92 1.76 +signaux signal NOM m p 37.74 23.11 3.76 4.39 +signe signe NOM m s 82.73 161.28 67.74 119.19 +signent signer VER 98.19 55.81 0.62 0.54 ind:pre:3p; +signer signer VER 98.19 55.81 29.25 13.51 ind:pre:2p;inf; +signera signer VER 98.19 55.81 1.20 0.41 ind:fut:3s; +signerai signer VER 98.19 55.81 1.64 0.27 ind:fut:1s; +signeraient signer VER 98.19 55.81 0.11 0.14 cnd:pre:3p; +signerais signer VER 98.19 55.81 0.27 0.27 cnd:pre:1s;cnd:pre:2s; +signerait signer VER 98.19 55.81 0.06 0.34 cnd:pre:3s; +signeras signer VER 98.19 55.81 0.13 0.00 ind:fut:2s; +signerez signer VER 98.19 55.81 0.39 0.14 ind:fut:2p; +signeriez signer VER 98.19 55.81 0.17 0.00 cnd:pre:2p; +signerions signer VER 98.19 55.81 0.00 0.07 cnd:pre:1p; +signerons signer VER 98.19 55.81 0.04 0.07 ind:fut:1p; +signeront signer VER 98.19 55.81 0.33 0.14 ind:fut:3p; +signes signe NOM m p 82.73 161.28 15.00 42.09 +signet signet NOM m s 0.16 0.74 0.13 0.47 +signets signet NOM m p 0.16 0.74 0.02 0.27 +signez signer VER 98.19 55.81 13.62 0.68 imp:pre:2p;ind:pre:2p; +signiez signer VER 98.19 55.81 0.34 0.14 ind:imp:2p; +signifia signifier VER 67.72 47.23 0.12 1.08 ind:pas:3s; +signifiaient signifier VER 67.72 47.23 0.08 2.70 ind:imp:3p; +signifiais signifier VER 67.72 47.23 0.04 0.07 ind:imp:1s;ind:imp:2s; +signifiait signifier VER 67.72 47.23 3.59 15.34 ind:imp:3s; +signifiance signifiance NOM f s 0.14 0.07 0.14 0.07 +signifiant signifiant ADJ m s 0.31 0.81 0.27 0.61 +signifiante signifiant ADJ f s 0.31 0.81 0.04 0.07 +signifiantes signifiant ADJ f p 0.31 0.81 0.00 0.07 +signifiants signifiant ADJ m p 0.31 0.81 0.00 0.07 +significatif significatif ADJ m s 1.81 4.46 1.02 2.16 +significatifs significatif ADJ m p 1.81 4.46 0.17 0.81 +signification signification NOM f s 5.77 16.76 5.62 15.61 +significations signification NOM f p 5.77 16.76 0.16 1.15 +significative significatif ADJ f s 1.81 4.46 0.46 1.15 +significativement significativement ADV 0.14 0.07 0.14 0.07 +significatives significatif ADJ f p 1.81 4.46 0.16 0.34 +signifie signifier VER 67.72 47.23 56.66 15.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +signifient signifier VER 67.72 47.23 2.62 2.23 ind:pre:3p; +signifier signifier VER 67.72 47.23 2.08 6.62 inf; +signifiera signifier VER 67.72 47.23 0.27 0.41 ind:fut:3s; +signifierai signifier VER 67.72 47.23 0.07 0.00 ind:fut:1s; +signifierait signifier VER 67.72 47.23 1.36 0.54 cnd:pre:3s; +signifiât signifier VER 67.72 47.23 0.00 0.14 sub:imp:3s; +signifièrent signifier VER 67.72 47.23 0.00 0.07 ind:pas:3p; +signifié signifier VER m s 67.72 47.23 0.64 1.28 par:pas; +signifiée signifier VER f s 67.72 47.23 0.00 0.27 par:pas; +signifiées signifier VER f p 67.72 47.23 0.00 0.07 par:pas; +signâmes signer VER 98.19 55.81 0.00 0.07 ind:pas:1p; +signons signer VER 98.19 55.81 0.48 0.41 imp:pre:1p;ind:pre:1p; +signor signor NOM m s 5.36 2.64 3.39 0.88 +signora signor NOM f s 5.36 2.64 1.96 1.76 +signorina signorina NOM f s 0.64 0.34 0.64 0.34 +signât signer VER 98.19 55.81 0.00 0.07 sub:imp:3s; +signèrent signer VER 98.19 55.81 0.00 0.41 ind:pas:3p; +signé signer VER m s 98.19 55.81 24.19 14.66 par:pas; +signée signer VER f s 98.19 55.81 3.58 3.92 par:pas; +signées signer VER f p 98.19 55.81 0.48 0.68 par:pas; +signés signer VER m p 98.19 55.81 1.28 1.42 par:pas; +sikh sikh NOM s 0.17 1.49 0.03 0.20 +sikhs sikh NOM p 0.17 1.49 0.14 1.28 +sil sil NOM m s 2.65 0.00 2.29 0.00 +silence silence NOM m s 106.43 325.54 105.53 313.24 +silences silence NOM m p 106.43 325.54 0.90 12.30 +silencieuse silencieux ADJ f s 10.98 74.05 1.86 25.68 +silencieusement silencieusement ADV 0.99 17.16 0.99 17.16 +silencieuses silencieux ADJ f p 10.98 74.05 0.82 5.74 +silencieux silencieux ADJ m 10.98 74.05 8.30 42.64 +silex silex NOM m 0.33 5.14 0.33 5.14 +silhouettait silhouetter VER 0.00 1.08 0.00 0.20 ind:imp:3s; +silhouettant silhouetter VER 0.00 1.08 0.00 0.07 par:pre; +silhouette silhouette NOM f s 4.11 73.31 3.44 52.57 +silhouettent silhouetter VER 0.00 1.08 0.00 0.14 ind:pre:3p; +silhouetter silhouetter VER 0.00 1.08 0.00 0.07 inf; +silhouettes silhouette NOM f p 4.11 73.31 0.67 20.74 +silhouetté silhouetter VER m s 0.00 1.08 0.00 0.14 par:pas; +silhouettée silhouetter VER f s 0.00 1.08 0.00 0.14 par:pas; +silicate silicate NOM m s 0.07 0.00 0.07 0.00 +silice silice NOM f s 0.18 0.34 0.18 0.20 +silices silice NOM f p 0.18 0.34 0.00 0.14 +siliceuse siliceux ADJ f s 0.01 0.07 0.01 0.00 +siliceux siliceux ADJ m 0.01 0.07 0.00 0.07 +silicium silicium NOM m s 0.24 0.00 0.24 0.00 +silicone silicone NOM f s 2.42 0.00 2.42 0.00 +siliconer siliconer VER 0.20 0.07 0.01 0.00 inf; +siliconé siliconer VER m s 0.20 0.07 0.02 0.00 par:pas; +siliconée siliconer VER f s 0.20 0.07 0.03 0.00 par:pas; +siliconées siliconer VER f p 0.20 0.07 0.14 0.07 par:pas; +silicose silicose NOM f s 0.19 0.34 0.19 0.34 +silicosé silicosé ADJ m s 0.00 0.27 0.00 0.20 +silicosée silicosé ADJ f s 0.00 0.27 0.00 0.07 +silionne silionne NOM f s 0.01 0.00 0.01 0.00 +sillage sillage NOM m s 1.43 10.88 1.27 10.07 +sillages sillage NOM m p 1.43 10.88 0.16 0.81 +sillet sillet NOM m s 0.01 0.00 0.01 0.00 +sillon sillon NOM m s 0.72 12.30 0.46 7.30 +sillonna sillonner VER 2.00 8.58 0.00 0.14 ind:pas:3s; +sillonnaient sillonner VER 2.00 8.58 0.05 0.95 ind:imp:3p; +sillonnais sillonner VER 2.00 8.58 0.03 0.07 ind:imp:1s;ind:imp:2s; +sillonnait sillonner VER 2.00 8.58 0.04 0.95 ind:imp:3s; +sillonnant sillonner VER 2.00 8.58 0.17 0.54 par:pre; +sillonne sillonner VER 2.00 8.58 0.20 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sillonnent sillonner VER 2.00 8.58 0.29 1.22 ind:pre:3p; +sillonner sillonner VER 2.00 8.58 0.58 1.15 inf; +sillonnes sillonner VER 2.00 8.58 0.00 0.07 ind:pre:2s; +sillonnez sillonner VER 2.00 8.58 0.02 0.00 ind:pre:2p; +sillonnons sillonner VER 2.00 8.58 0.00 0.07 ind:pre:1p; +sillonnèrent sillonner VER 2.00 8.58 0.00 0.07 ind:pas:3p; +sillonné sillonner VER m s 2.00 8.58 0.61 1.49 par:pas; +sillonnée sillonner VER f s 2.00 8.58 0.01 0.81 par:pas; +sillonnées sillonner VER f p 2.00 8.58 0.00 0.61 par:pas; +sillonnés sillonner VER m p 2.00 8.58 0.00 0.07 par:pas; +sillons sillon NOM m p 0.72 12.30 0.27 5.00 +silo silo NOM m s 1.23 1.69 0.66 0.27 +silos silo NOM m p 1.23 1.69 0.56 1.42 +sils sil NOM m p 2.65 0.00 0.37 0.00 +silène silène NOM m s 0.00 0.14 0.00 0.07 +silènes silène NOM m p 0.00 0.14 0.00 0.07 +silésien silésien ADJ m s 0.00 0.07 0.00 0.07 +silvaner silvaner NOM m s 0.00 0.14 0.00 0.14 +sima sima NOM m s 0.37 0.00 0.37 0.00 +simagrée simagrée NOM f s 1.03 3.18 0.14 0.20 +simagrées simagrée NOM f p 1.03 3.18 0.90 2.97 +simarre simarre NOM f s 0.00 0.14 0.00 0.14 +simien simien ADJ m s 0.08 0.00 0.02 0.00 +simienne simien ADJ f s 0.08 0.00 0.03 0.00 +simiens simien NOM m p 0.05 0.07 0.04 0.07 +simiesque simiesque ADJ s 0.17 1.15 0.15 0.88 +simiesques simiesque ADJ p 0.17 1.15 0.02 0.27 +similaire similaire ADJ s 6.03 1.35 2.43 0.95 +similairement similairement ADV 0.00 0.07 0.00 0.07 +similaires similaire ADJ p 6.03 1.35 3.60 0.41 +similarité similarité NOM f s 0.31 0.00 0.15 0.00 +similarités similarité NOM f p 0.31 0.00 0.16 0.00 +simili simili NOM m s 0.04 1.01 0.04 1.01 +similicuir similicuir NOM m s 0.01 0.00 0.01 0.00 +similitude similitude NOM f s 0.87 1.55 0.34 0.95 +similitudes similitude NOM f p 0.87 1.55 0.54 0.61 +similor similor NOM m s 0.01 0.07 0.01 0.00 +similors similor NOM m p 0.01 0.07 0.00 0.07 +simoniaque simoniaque ADJ s 0.00 0.07 0.00 0.07 +simoun simoun NOM m s 0.01 0.54 0.01 0.54 +simple simple ADJ s 137.69 148.58 124.57 124.26 +simplement simplement ADV 84.76 134.32 84.76 134.32 +simples simple ADJ p 137.69 148.58 13.12 24.32 +simplesse simplesse NOM f s 0.00 0.20 0.00 0.20 +simplet simplet NOM m s 0.78 0.34 0.63 0.20 +simplets simplet NOM m p 0.78 0.34 0.15 0.14 +simplette simplette NOM f s 0.17 0.14 0.17 0.14 +simplettes simplet ADJ f p 0.44 1.35 0.00 0.20 +simplicité simplicité NOM f s 2.75 21.69 2.75 21.69 +simplifiaient simplifier VER 2.80 7.84 0.00 0.41 ind:imp:3p; +simplifiais simplifier VER 2.80 7.84 0.01 0.00 ind:imp:1s; +simplifiait simplifier VER 2.80 7.84 0.02 0.61 ind:imp:3s; +simplifiant simplifier VER 2.80 7.84 0.00 0.14 par:pre; +simplification simplification NOM f s 0.15 0.61 0.15 0.54 +simplifications simplification NOM f p 0.15 0.61 0.00 0.07 +simplifie simplifier VER 2.80 7.84 0.60 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +simplifient simplifier VER 2.80 7.84 0.01 0.20 ind:pre:3p; +simplifier simplifier VER 2.80 7.84 1.32 1.89 inf; +simplifiera simplifier VER 2.80 7.84 0.14 0.14 ind:fut:3s; +simplifierait simplifier VER 2.80 7.84 0.10 0.14 cnd:pre:3s; +simplifiez simplifier VER 2.80 7.84 0.19 0.07 imp:pre:2p;ind:pre:2p; +simplifions simplifier VER 2.80 7.84 0.08 0.27 imp:pre:1p;ind:pre:1p; +simplifié simplifier VER m s 2.80 7.84 0.15 1.35 par:pas; +simplifiée simplifier VER f s 2.80 7.84 0.18 0.74 par:pas; +simplifiées simplifier VER f p 2.80 7.84 0.00 0.41 par:pas; +simplifiés simplifier VER m p 2.80 7.84 0.00 0.20 par:pas; +simplissime simplissime ADJ f s 0.04 0.07 0.04 0.07 +simpliste simpliste ADJ s 0.58 1.28 0.45 0.95 +simplistes simpliste ADJ p 0.58 1.28 0.13 0.34 +simula simuler VER 5.46 6.22 0.14 0.34 ind:pas:3s; +simulacre simulacre NOM m s 0.84 6.22 0.69 4.59 +simulacres simulacre NOM m p 0.84 6.22 0.16 1.62 +simulaient simuler VER 5.46 6.22 0.14 0.14 ind:imp:3p; +simulais simuler VER 5.46 6.22 0.12 0.07 ind:imp:1s;ind:imp:2s; +simulait simuler VER 5.46 6.22 0.26 0.68 ind:imp:3s; +simulant simuler VER 5.46 6.22 0.07 1.55 par:pre; +simulateur simulateur NOM m s 1.05 0.68 0.80 0.20 +simulateurs simulateur NOM m p 1.05 0.68 0.20 0.07 +simulation simulation NOM f s 3.69 0.61 3.11 0.54 +simulations simulation NOM f p 3.69 0.61 0.58 0.07 +simulatrice simulateur NOM f s 1.05 0.68 0.04 0.41 +simule simuler VER 5.46 6.22 1.08 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +simulent simuler VER 5.46 6.22 0.12 0.14 ind:pre:3p; +simuler simuler VER 5.46 6.22 1.76 1.89 inf; +simulera simuler VER 5.46 6.22 0.02 0.00 ind:fut:3s; +simulerai simuler VER 5.46 6.22 0.01 0.00 ind:fut:1s; +simulerez simuler VER 5.46 6.22 0.01 0.00 ind:fut:2p; +simules simuler VER 5.46 6.22 0.28 0.07 ind:pre:2s; +simulez simuler VER 5.46 6.22 0.15 0.00 imp:pre:2p;ind:pre:2p; +simuliez simuler VER 5.46 6.22 0.01 0.00 ind:imp:2p; +simulons simuler VER 5.46 6.22 0.09 0.07 imp:pre:1p;ind:pre:1p; +simultané simultané ADJ m s 0.57 3.11 0.25 0.61 +simultanée simultané ADJ f s 0.57 3.11 0.19 1.15 +simultanées simultané ADJ f p 0.57 3.11 0.09 0.68 +simultanéité simultanéité NOM f s 0.00 1.15 0.00 1.15 +simultanément simultanément ADV 1.29 5.81 1.29 5.81 +simultanés simultané ADJ m p 0.57 3.11 0.05 0.68 +simulèrent simuler VER 5.46 6.22 0.00 0.07 ind:pas:3p; +simulé simuler VER m s 5.46 6.22 0.86 0.27 par:pas; +simulée simulé ADJ f s 0.62 0.61 0.18 0.34 +simulées simuler VER f p 5.46 6.22 0.16 0.00 par:pas; +simulés simulé ADJ m p 0.62 0.61 0.11 0.07 +sinapisme sinapisme NOM m s 0.00 0.20 0.00 0.14 +sinapismes sinapisme NOM m p 0.00 0.20 0.00 0.07 +sinciput sinciput NOM m s 0.00 0.20 0.00 0.20 +sincère sincère ADJ s 19.51 22.50 15.20 18.65 +sincèrement sincèrement ADV 13.58 13.11 13.58 13.11 +sincères sincère ADJ p 19.51 22.50 4.31 3.85 +sincérité sincérité NOM f s 3.77 9.66 3.77 9.66 +sindon sindon NOM m s 0.00 0.27 0.00 0.27 +sine_die sine_die ADV 0.00 0.34 0.00 0.34 +sine_qua_non sine_qua_non ADV 0.16 0.47 0.16 0.47 +singe_araignée singe_araignée NOM m s 0.01 0.00 0.01 0.00 +singe singe NOM m s 35.48 22.57 21.59 15.00 +singea singer VER 0.45 3.92 0.00 0.61 ind:pas:3s; +singeaient singer VER 0.45 3.92 0.01 0.34 ind:imp:3p; +singeait singer VER 0.45 3.92 0.00 0.61 ind:imp:3s; +singeant singer VER 0.45 3.92 0.05 0.54 par:pre; +singent singer VER 0.45 3.92 0.00 0.14 ind:pre:3p; +singer singer VER 0.45 3.92 0.15 1.28 inf; +singerie singerie NOM f s 0.90 2.23 0.01 0.41 +singeries singerie NOM f p 0.90 2.23 0.89 1.82 +singes singe NOM m p 35.48 22.57 13.90 7.57 +singiez singer VER 0.45 3.92 0.01 0.00 ind:imp:2p; +single single NOM m s 1.10 0.14 0.67 0.14 +singles single NOM m p 1.10 0.14 0.43 0.00 +singleton singleton NOM m s 0.17 0.00 0.17 0.00 +singé singer VER m s 0.45 3.92 0.00 0.20 par:pas; +singées singer VER f p 0.45 3.92 0.00 0.07 par:pas; +singularisait singulariser VER 0.05 1.08 0.00 0.07 ind:imp:3s; +singularise singulariser VER 0.05 1.08 0.01 0.27 imp:pre:2s;ind:pre:3s; +singulariser singulariser VER 0.05 1.08 0.04 0.68 inf; +singularises singulariser VER 0.05 1.08 0.00 0.07 ind:pre:2s; +singularité singularité NOM f s 0.89 3.11 0.86 2.43 +singularités singularité NOM f p 0.89 3.11 0.03 0.68 +singulier singulier ADJ m s 2.31 21.42 1.20 9.80 +singuliers singulier ADJ m p 2.31 21.42 0.05 2.03 +singulière singulier ADJ f s 2.31 21.42 1.00 8.31 +singulièrement singulièrement ADV 0.13 8.58 0.13 8.58 +singulières singulier ADJ f p 2.31 21.42 0.07 1.28 +sinistre sinistre ADJ s 8.27 25.88 7.39 19.86 +sinistrement sinistrement ADV 0.01 1.28 0.01 1.28 +sinistres sinistre ADJ p 8.27 25.88 0.88 6.01 +sinistrose sinistrose NOM f s 0.00 0.07 0.00 0.07 +sinistré sinistré ADJ m s 0.28 0.81 0.02 0.20 +sinistrée sinistré ADJ f s 0.28 0.81 0.25 0.27 +sinistrées sinistré ADJ f p 0.28 0.81 0.02 0.20 +sinistrés sinistré NOM m p 0.26 0.61 0.25 0.54 +sino_américain sino_américain NOM m s 0.02 0.00 0.02 0.00 +sino_arabe sino_arabe ADJ f s 0.01 0.00 0.01 0.00 +sino_japonais sino_japonais ADJ f s 0.00 0.14 0.00 0.14 +sino sino ADV 0.12 0.00 0.12 0.00 +sinologie sinologie NOM f s 0.00 0.07 0.00 0.07 +sinon sinon CON 164.85 89.26 164.85 89.26 +sinople sinople NOM m s 0.00 0.14 0.00 0.14 +sinoque sinoque ADJ s 0.01 0.34 0.00 0.27 +sinoques sinoque ADJ p 0.01 0.34 0.01 0.07 +sinoquet sinoquet NOM m s 0.00 0.88 0.00 0.88 +sinuaient sinuer VER 0.01 1.76 0.00 0.20 ind:imp:3p; +sinuait sinuer VER 0.01 1.76 0.00 0.74 ind:imp:3s; +sinuant sinuer VER 0.01 1.76 0.01 0.07 par:pre; +sinécure sinécure NOM f s 0.52 0.88 0.52 0.81 +sinécures sinécure NOM f p 0.52 0.88 0.00 0.07 +sinue sinuer VER 0.01 1.76 0.00 0.34 ind:pre:3s; +sinuent sinuer VER 0.01 1.76 0.00 0.20 ind:pre:3p; +sinuer sinuer VER 0.01 1.76 0.00 0.14 inf; +sinueuse sinueux ADJ f s 0.97 5.61 0.07 2.23 +sinueusement sinueusement ADV 0.00 0.07 0.00 0.07 +sinueuses sinueux ADJ f p 0.97 5.61 0.32 0.95 +sinueux sinueux ADJ m 0.97 5.61 0.58 2.43 +sinuosité sinuosité NOM f s 0.00 0.68 0.00 0.14 +sinuosités sinuosité NOM f p 0.00 0.68 0.00 0.54 +sinus sinus NOM m 1.30 1.01 1.30 1.01 +sinusal sinusal ADJ m s 0.46 0.00 0.29 0.00 +sinusale sinusal ADJ f s 0.46 0.00 0.17 0.00 +sinusite sinusite NOM f s 0.33 0.14 0.32 0.14 +sinusites sinusite NOM f p 0.33 0.14 0.01 0.00 +sinusoïdal sinusoïdal ADJ m s 0.07 0.14 0.04 0.07 +sinusoïdale sinusoïdal ADJ f s 0.07 0.14 0.03 0.00 +sinusoïdaux sinusoïdal ADJ m p 0.07 0.14 0.00 0.07 +sinusoïdes sinusoïde NOM f p 0.00 0.14 0.00 0.14 +sinué sinuer VER m s 0.01 1.76 0.00 0.07 par:pas; +sionisme sionisme NOM m s 0.04 0.27 0.04 0.27 +sioniste sioniste ADJ s 0.49 0.14 0.39 0.14 +sionistes sioniste NOM p 0.32 0.07 0.28 0.07 +sioux sioux ADJ 0.36 0.34 0.36 0.34 +siphon siphon NOM m s 0.83 2.23 0.43 1.96 +siphonnage siphonnage NOM m s 0.00 0.07 0.00 0.07 +siphonnait siphonner VER 0.35 0.68 0.04 0.07 ind:imp:3s; +siphonne siphonner VER 0.35 0.68 0.07 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +siphonner siphonner VER 0.35 0.68 0.10 0.20 inf; +siphonné siphonné ADJ m s 0.18 0.20 0.17 0.14 +siphonnée siphonner VER f s 0.35 0.68 0.01 0.14 par:pas; +siphonnés siphonné ADJ m p 0.18 0.20 0.01 0.00 +siphons siphon NOM m p 0.83 2.23 0.40 0.27 +sipo sipo NOM m s 0.03 0.00 0.03 0.00 +sir sir NOM m s 10.48 2.57 10.48 2.57 +sirdar sirdar NOM m s 0.00 0.41 0.00 0.41 +sire sire NOM m s 3.37 0.74 3.37 0.47 +sires sire NOM m p 3.37 0.74 0.00 0.27 +sirocco sirocco NOM m s 1.52 0.68 1.52 0.68 +sirop sirop NOM m s 5.75 8.18 5.70 7.64 +sirops sirop NOM m p 5.75 8.18 0.05 0.54 +sirota siroter VER 1.59 5.74 0.00 0.14 ind:pas:3s; +sirotaient siroter VER 1.59 5.74 0.01 0.27 ind:imp:3p; +sirotais siroter VER 1.59 5.74 0.05 0.14 ind:imp:1s;ind:imp:2s; +sirotait siroter VER 1.59 5.74 0.04 1.01 ind:imp:3s; +sirotant siroter VER 1.59 5.74 0.28 1.08 par:pre; +sirote siroter VER 1.59 5.74 0.12 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sirotent siroter VER 1.59 5.74 0.06 0.20 ind:pre:3p; +siroter siroter VER 1.59 5.74 0.99 1.35 inf; +siroterais siroter VER 1.59 5.74 0.01 0.00 cnd:pre:1s; +sirotiez siroter VER 1.59 5.74 0.01 0.00 ind:imp:2p; +sirotions siroter VER 1.59 5.74 0.00 0.07 ind:imp:1p; +siroté siroter VER m s 1.59 5.74 0.02 0.61 par:pas; +sirène sirène NOM f s 11.35 17.50 8.06 10.34 +sirènes sirène NOM f p 11.35 17.50 3.28 7.16 +sirupeuse sirupeux ADJ f s 0.19 1.55 0.13 0.54 +sirupeuses sirupeux ADJ f p 0.19 1.55 0.01 0.20 +sirupeux sirupeux ADJ m 0.19 1.55 0.06 0.81 +sirventès sirventès NOM m 0.00 0.14 0.00 0.14 +sis sis ADJ m s 1.77 1.55 1.77 0.74 +sisal sisal NOM m s 0.03 0.34 0.03 0.34 +sise sis ADJ f s 1.77 1.55 0.00 0.74 +sises sis ADJ f p 1.77 1.55 0.00 0.07 +sismique sismique ADJ s 0.75 0.41 0.56 0.34 +sismiques sismique ADJ p 0.75 0.41 0.19 0.07 +sismographe sismographe NOM s 0.10 0.14 0.04 0.00 +sismographes sismographe NOM p 0.10 0.14 0.07 0.14 +sismologie sismologie NOM f s 0.02 0.00 0.02 0.00 +sismologique sismologique ADJ f s 0.01 0.00 0.01 0.00 +sismologue sismologue NOM s 0.14 0.07 0.07 0.00 +sismologues sismologue NOM p 0.14 0.07 0.06 0.07 +sismomètre sismomètre NOM m s 0.01 0.00 0.01 0.00 +sismothérapie sismothérapie NOM f s 0.01 0.00 0.01 0.00 +sisymbre sisymbre NOM m s 0.00 0.07 0.00 0.07 +sit_in sit_in NOM m 0.30 0.00 0.30 0.00 +sitôt sitôt ADV 3.59 19.12 3.59 19.12 +sitar sitar NOM m s 0.16 0.00 0.16 0.00 +sitariste sitariste NOM s 0.01 0.00 0.01 0.00 +sitcom sitcom NOM f s 0.85 0.00 0.63 0.00 +sitcoms sitcom NOM f p 0.85 0.00 0.23 0.00 +site site NOM m s 17.17 4.46 13.91 3.58 +sites site NOM m p 17.17 4.46 3.26 0.88 +siècle siècle NOM m s 45.77 132.91 27.29 79.05 +siècles siècle NOM m p 45.77 132.91 18.48 53.85 +siège siège NOM m s 29.44 57.91 23.69 46.08 +siègent siéger VER 2.87 5.34 0.31 0.27 ind:pre:3p; +sièges siège NOM m p 29.44 57.91 5.75 11.82 +sittelle sittelle NOM f s 0.03 0.00 0.03 0.00 +situ situ NOM m s 0.95 0.00 0.95 0.00 +situa situer VER 10.44 37.84 0.00 0.47 ind:pas:3s; +situable situable ADJ f s 0.00 0.14 0.00 0.14 +situaient situer VER 10.44 37.84 0.01 1.15 ind:imp:3p; +situais situer VER 10.44 37.84 0.02 0.07 ind:imp:1s; +situait situer VER 10.44 37.84 0.26 3.72 ind:imp:3s; +situant situer VER 10.44 37.84 0.01 0.41 par:pre; +situasse situer VER 10.44 37.84 0.00 0.95 sub:imp:1s; +situation situation NOM f s 108.99 104.86 101.39 96.62 +situationnel situationnel ADJ m s 0.01 0.00 0.01 0.00 +situationnisme situationnisme NOM m s 0.01 0.00 0.01 0.00 +situationnistes situationniste ADJ p 0.00 0.14 0.00 0.14 +situations situation NOM f p 108.99 104.86 7.60 8.24 +situe situer VER 10.44 37.84 2.34 4.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +situent situer VER 10.44 37.84 0.44 0.54 ind:pre:3p; +situer situer VER 10.44 37.84 1.16 6.55 inf; +situera situer VER 10.44 37.84 0.03 0.14 ind:fut:3s; +situerai situer VER 10.44 37.84 0.01 0.00 ind:fut:1s; +situeraient situer VER 10.44 37.84 0.01 0.00 cnd:pre:3p; +situerais situer VER 10.44 37.84 0.01 0.14 cnd:pre:1s; +situerait situer VER 10.44 37.84 0.22 0.07 cnd:pre:3s; +situes situer VER 10.44 37.84 0.04 0.07 ind:pre:2s;sub:pre:2s; +situez situer VER 10.44 37.84 0.10 0.27 ind:pre:2p; +situions situer VER 10.44 37.84 0.00 0.14 ind:imp:1p; +situons situer VER 10.44 37.84 0.13 0.20 imp:pre:1p;ind:pre:1p; +situât situer VER 10.44 37.84 0.00 0.07 sub:imp:3s; +situèrent situer VER 10.44 37.84 0.00 0.07 ind:pas:3p; +situé situer VER m s 10.44 37.84 2.70 7.84 par:pas; +située situer VER f s 10.44 37.84 2.15 7.23 par:pas; +situées situer VER f p 10.44 37.84 0.14 1.49 par:pas; +situés situer VER m p 10.44 37.84 0.64 1.42 par:pas; +siéent seoir VER 1.75 3.78 0.01 0.14 ind:pre:3p; +siégeaient siéger VER 2.87 5.34 0.00 0.61 ind:imp:3p; +siégeais siéger VER 2.87 5.34 0.01 0.07 ind:imp:1s; +siégeait siéger VER 2.87 5.34 0.11 1.35 ind:imp:3s; +siégeant siéger VER 2.87 5.34 0.03 0.54 par:pre; +siégeons siéger VER 2.87 5.34 0.06 0.07 imp:pre:1p;ind:pre:1p; +siéger siéger VER 2.87 5.34 0.60 0.68 inf; +siégera siéger VER 2.87 5.34 0.41 0.00 ind:fut:3s; +siégerai siéger VER 2.87 5.34 0.02 0.07 ind:fut:1s; +siégeraient siéger VER 2.87 5.34 0.00 0.14 cnd:pre:3p; +siégerait siéger VER 2.87 5.34 0.00 0.14 cnd:pre:3s; +siégeras siéger VER 2.87 5.34 0.03 0.00 ind:fut:2s; +siégerons siéger VER 2.87 5.34 0.01 0.00 ind:fut:1p; +siégeront siéger VER 2.87 5.34 0.00 0.07 ind:fut:3p; +siégez siéger VER 2.87 5.34 0.03 0.00 ind:pre:2p; +siégiez siéger VER 2.87 5.34 0.02 0.00 ind:imp:2p; +siégions siéger VER 2.87 5.34 0.00 0.14 ind:imp:1p; +siégé siéger VER m s 2.87 5.34 0.13 0.27 par:pas; +siéra seoir VER 1.75 3.78 0.05 0.00 ind:fut:3s; +siérait seoir VER 1.75 3.78 0.02 0.07 cnd:pre:3s; +six_quatre six_quatre NOM m 0.00 0.07 0.00 0.07 +six six ADJ:num 117.37 156.22 117.37 156.22 +sixain sixain NOM m s 0.00 0.20 0.00 0.20 +sixième sixième ADJ m 3.77 7.23 3.76 7.16 +sixièmement sixièmement ADV 0.01 0.00 0.01 0.00 +sixièmes sixième NOM p 2.11 6.01 0.23 0.27 +sixte sixte NOM f s 0.02 0.14 0.02 0.14 +sixties sixties NOM p 0.40 0.20 0.40 0.20 +sixtus sixtus NOM m 0.01 0.00 0.01 0.00 +sizain sizain NOM m s 0.00 0.14 0.00 0.14 +ska ska NOM m s 0.35 0.00 0.35 0.00 +skaï skaï NOM m s 0.12 1.82 0.12 1.82 +skaal skaal ONO 0.00 0.07 0.00 0.07 +skate_board skate_board NOM m s 0.57 0.07 0.57 0.07 +skate skate NOM m s 2.50 0.07 2.14 0.07 +skateboard skateboard NOM m s 1.13 0.00 1.06 0.00 +skateboards skateboard NOM m p 1.13 0.00 0.07 0.00 +skates skate NOM m p 2.50 0.07 0.36 0.00 +skating skating NOM m s 0.00 0.07 0.00 0.07 +skeet skeet NOM m s 0.04 0.00 0.02 0.00 +skeets skeet NOM m p 0.04 0.00 0.02 0.00 +sketch sketch NOM m s 2.54 1.28 1.50 0.74 +sketches sketch NOM m p 2.54 1.28 0.69 0.54 +sketchs sketch NOM m p 2.54 1.28 0.34 0.00 +ski ski NOM m s 16.57 6.49 13.84 5.00 +skiable skiable ADJ m s 0.01 0.00 0.01 0.00 +skiais skier VER 3.81 0.81 0.12 0.07 ind:imp:1s;ind:imp:2s; +skiait skier VER 3.81 0.81 0.14 0.14 ind:imp:3s; +skiant skier VER 3.81 0.81 0.06 0.00 par:pre; +skie skier VER 3.81 0.81 0.30 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +skient skier VER 3.81 0.81 0.04 0.00 ind:pre:3p; +skier skier VER 3.81 0.81 2.52 0.27 inf; +skierai skier VER 3.81 0.81 0.01 0.00 ind:fut:1s; +skierait skier VER 3.81 0.81 0.00 0.07 cnd:pre:3s; +skies skier VER 3.81 0.81 0.22 0.00 ind:pre:2s; +skieur skieur NOM m s 1.11 1.28 0.20 0.61 +skieurs skieur NOM m p 1.11 1.28 0.74 0.20 +skieuse skieur NOM f s 1.11 1.28 0.17 0.41 +skieuses skieuse NOM f p 0.02 0.00 0.02 0.00 +skiez skier VER 3.81 0.81 0.05 0.07 imp:pre:2p;ind:pre:2p; +skiff skiff NOM m s 0.14 0.27 0.14 0.20 +skiffs skiff NOM m p 0.14 0.27 0.00 0.07 +skin skin NOM m s 0.93 0.14 0.44 0.14 +skinhead skinhead NOM m s 1.59 0.20 0.38 0.14 +skinheads skinhead NOM m p 1.59 0.20 1.22 0.07 +skins skin NOM m p 0.93 0.14 0.48 0.00 +skip skip NOM m s 2.27 0.14 2.27 0.14 +skipper skipper NOM m s 1.32 0.07 1.32 0.07 +skis ski NOM m p 16.57 6.49 2.73 1.49 +skié skier VER m s 3.81 0.81 0.37 0.14 par:pas; +skunks skunks NOM m 0.00 1.55 0.00 1.55 +skydome skydome NOM m s 0.01 0.00 0.01 0.00 +slalom slalom NOM m s 0.20 0.95 0.20 0.81 +slalomant slalomer VER 0.07 0.41 0.00 0.14 par:pre; +slalomer slalomer VER 0.07 0.41 0.05 0.20 inf; +slaloms slalom NOM m p 0.20 0.95 0.00 0.14 +slalomé slalomer VER m s 0.07 0.41 0.03 0.07 par:pas; +slang slang NOM m 0.00 0.07 0.00 0.07 +slash slash NOM m s 0.07 0.00 0.07 0.00 +slave slave ADJ s 0.22 3.38 0.19 2.36 +slaves slave ADJ p 0.22 3.38 0.03 1.01 +slavisant slaviser VER 0.00 0.07 0.00 0.07 par:pre; +slavisme slavisme NOM m s 0.00 0.07 0.00 0.07 +slavon slavon ADJ m s 0.00 0.07 0.00 0.07 +slavon slavon NOM m s 0.00 0.07 0.00 0.07 +slavophiles slavophile ADJ p 0.00 0.07 0.00 0.07 +sleeping sleeping NOM m s 0.37 0.34 0.37 0.27 +sleepings sleeping NOM m p 0.37 0.34 0.00 0.07 +slibard slibard NOM m s 0.11 0.47 0.11 0.47 +slice slice NOM m s 0.19 0.00 0.19 0.00 +slip slip NOM m s 11.35 12.77 9.29 10.07 +slips slip NOM m p 11.35 12.77 2.06 2.70 +slogan slogan NOM m s 4.96 6.96 3.96 2.36 +slogans slogan NOM m p 4.96 6.96 1.00 4.59 +sloop sloop NOM m s 0.06 0.07 0.06 0.07 +sloughi sloughi NOM m s 0.00 0.07 0.00 0.07 +slovaque slovaque ADJ s 0.01 0.00 0.01 0.00 +slovaques slovaque NOM p 0.03 0.07 0.03 0.07 +slovène slovène ADJ f s 0.00 0.20 0.00 0.20 +slow slow NOM m s 0.10 2.16 0.10 1.82 +slows slow NOM m p 0.10 2.16 0.00 0.34 +slug slug NOM m s 0.10 0.00 0.10 0.00 +slush slush NOM s 0.01 0.07 0.01 0.07 +smack smack NOM m s 0.15 0.14 0.14 0.14 +smacks smack NOM m p 0.15 0.14 0.01 0.00 +smala smala NOM f s 0.20 0.61 0.20 0.61 +smalah smalah NOM f s 0.00 0.20 0.00 0.20 +smaragdin smaragdin ADJ m s 0.00 0.07 0.00 0.07 +smart smart ADJ s 0.20 0.27 0.20 0.27 +smash smash NOM m s 0.40 0.20 0.40 0.20 +smashe smasher VER 0.41 0.00 0.25 0.00 imp:pre:2s;ind:pre:3s; +smasher smasher VER 0.41 0.00 0.15 0.00 inf; +smegma smegma NOM m s 0.04 0.00 0.04 0.00 +smicard smicard NOM m s 0.03 0.14 0.03 0.07 +smicards smicard NOM m p 0.03 0.14 0.00 0.07 +smigard smigard NOM m s 0.00 0.07 0.00 0.07 +smiley smiley NOM m s 0.78 0.00 0.78 0.00 +smocks smocks NOM m p 0.01 0.34 0.01 0.34 +smog smog NOM m s 0.29 0.07 0.29 0.07 +smoking smoking NOM m s 4.90 4.53 4.74 3.92 +smokings smoking NOM m p 4.90 4.53 0.16 0.61 +smorrebrod smorrebrod NOM m s 0.00 0.07 0.00 0.07 +smurf smurf NOM m s 0.03 0.00 0.03 0.00 +smyrniote smyrniote NOM s 0.00 0.07 0.00 0.07 +snack_bar snack_bar NOM m s 0.23 0.61 0.23 0.54 +snack_bar snack_bar NOM m p 0.23 0.61 0.00 0.07 +snack snack NOM m s 1.21 0.95 1.06 0.74 +snacks snack NOM m p 1.21 0.95 0.15 0.20 +snif snif ONO 0.26 0.20 0.26 0.20 +snifer snifer VER 0.03 0.00 0.03 0.00 inf; +sniff sniff ONO 0.12 0.34 0.12 0.34 +sniffaient sniffer VER 3.28 2.70 0.00 0.07 ind:imp:3p; +sniffais sniffer VER 3.28 2.70 0.08 0.07 ind:imp:1s;ind:imp:2s; +sniffait sniffer VER 3.28 2.70 0.14 0.20 ind:imp:3s; +sniffant sniffer VER 3.28 2.70 0.02 0.14 par:pre; +sniffe sniffer VER 3.28 2.70 0.77 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sniffent sniffer VER 3.28 2.70 0.03 0.07 ind:pre:3p; +sniffer sniffer VER 3.28 2.70 1.25 0.74 inf; +snifferai sniffer VER 3.28 2.70 0.01 0.07 ind:fut:1s; +sniffes sniffer VER 3.28 2.70 0.24 0.07 ind:pre:2s; +sniffette sniffette NOM f s 0.00 0.07 0.00 0.07 +sniffez sniffer VER 3.28 2.70 0.08 0.00 imp:pre:2p;ind:pre:2p; +sniffé sniffer VER m s 3.28 2.70 0.66 0.14 par:pas; +sniffée sniffer VER f s 3.28 2.70 0.01 0.14 par:pas; +sniffées sniffer VER f p 3.28 2.70 0.00 0.07 par:pas; +snipe snipe NOM m s 0.07 0.00 0.07 0.00 +sniper sniper NOM m s 4.50 0.00 2.46 0.00 +snipers sniper NOM m p 4.50 0.00 2.03 0.00 +snob snob ADJ s 1.75 3.31 1.61 2.64 +snobaient snober VER 0.67 0.68 0.00 0.20 ind:imp:3p; +snobais snober VER 0.67 0.68 0.01 0.00 ind:imp:2s; +snobe snober VER 0.67 0.68 0.10 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +snobent snober VER 0.67 0.68 0.02 0.00 ind:pre:3p; +snober snober VER 0.67 0.68 0.21 0.20 inf; +snoberez snober VER 0.67 0.68 0.01 0.00 ind:fut:2p; +snobez snober VER 0.67 0.68 0.07 0.00 imp:pre:2p;ind:pre:2p; +snobinard snobinard NOM m s 0.46 0.07 0.22 0.00 +snobinarde snobinard NOM f s 0.46 0.07 0.02 0.00 +snobinardes snobinard NOM f p 0.46 0.07 0.01 0.00 +snobinards snobinard NOM m p 0.46 0.07 0.22 0.07 +snobisme snobisme NOM m s 0.79 3.45 0.79 3.38 +snobismes snobisme NOM m p 0.79 3.45 0.00 0.07 +snobs snob NOM p 1.35 1.82 0.39 0.68 +snobé snober VER m s 0.67 0.68 0.23 0.14 par:pas; +snobée snober VER f s 0.67 0.68 0.00 0.07 par:pas; +snobés snober VER m p 0.67 0.68 0.03 0.07 par:pas; +snow_boot snow_boot NOM m p 0.00 0.07 0.00 0.07 +soûl soûl ADJ m s 12.96 2.77 10.22 2.03 +soûlait soûler VER 6.13 2.43 0.14 0.14 ind:imp:3s; +soûlant soûler VER 6.13 2.43 0.02 0.00 par:pre; +soûlante soûlant ADJ f s 0.01 0.07 0.00 0.07 +soûlard soûlard NOM m s 1.19 0.14 0.82 0.14 +soûlarde soûlard NOM f s 1.19 0.14 0.23 0.00 +soûlards soûlard NOM m p 1.19 0.14 0.14 0.00 +soûlaud soûlaud ADJ m s 0.01 0.20 0.01 0.14 +soûlauds soûlaud ADJ m p 0.01 0.20 0.00 0.07 +soûle soûl ADJ f s 12.96 2.77 1.96 0.68 +soûlent soûler VER 6.13 2.43 0.30 0.27 ind:pre:3p; +soûler soûler VER 6.13 2.43 2.54 0.81 inf; +soûlerais soûler VER 6.13 2.43 0.16 0.00 cnd:pre:1s; +soûlerait soûler VER 6.13 2.43 0.00 0.07 cnd:pre:3s; +soûlerie soûlerie NOM f s 0.08 0.20 0.08 0.20 +soûlez soûler VER 6.13 2.43 0.22 0.00 imp:pre:2p;ind:pre:2p; +soûlographe soûlographe NOM s 0.00 0.14 0.00 0.14 +soûlographie soûlographie NOM f s 0.00 0.14 0.00 0.14 +soûlons soûler VER 6.13 2.43 0.01 0.00 imp:pre:1p; +soûlot soûlot NOM m s 0.29 0.27 0.28 0.20 +soûlots soûlot NOM m p 0.29 0.27 0.01 0.07 +soûls soûl ADJ m p 12.96 2.77 0.78 0.07 +soûlèrent soûler VER 6.13 2.43 0.01 0.00 ind:pas:3p; +soûlé soûler VER m s 6.13 2.43 0.85 0.27 par:pas; +soûlée soûler VER f s 6.13 2.43 0.43 0.07 par:pas; +soûlées soûler VER f p 6.13 2.43 0.03 0.00 par:pas; +soûlés soûler VER m p 6.13 2.43 0.14 0.34 par:pas; +soap_opéra soap_opéra NOM m s 0.17 0.00 0.15 0.00 +soap_opéra soap_opéra NOM m s 0.17 0.00 0.02 0.00 +sobre sobre ADJ s 6.18 4.66 5.80 3.24 +sobrement sobrement ADV 0.06 1.28 0.06 1.28 +sobres sobre ADJ p 6.18 4.66 0.37 1.42 +sobriquet sobriquet NOM m s 0.52 4.86 0.48 3.45 +sobriquets sobriquet NOM m p 0.52 4.86 0.04 1.42 +sobriété sobriété NOM f s 0.70 1.62 0.70 1.62 +soc soc NOM m s 0.57 1.89 0.31 1.62 +soccer soccer NOM m s 0.64 0.00 0.64 0.00 +sociabiliser sociabiliser VER 0.01 0.00 0.01 0.00 inf; +sociabilité sociabilité NOM f s 0.09 0.41 0.09 0.41 +sociable sociable ADJ s 2.08 0.81 1.79 0.54 +sociables sociable ADJ p 2.08 0.81 0.29 0.27 +social_démocrate social_démocrate ADJ m s 0.21 0.14 0.21 0.14 +social_démocratie social_démocratie NOM f s 0.02 0.34 0.02 0.34 +social_traître social_traître NOM m s 0.00 0.27 0.00 0.27 +social social ADJ m s 34.40 49.80 9.16 12.30 +sociale social ADJ f s 34.40 49.80 16.06 24.80 +socialement socialement ADV 1.04 0.95 1.04 0.95 +sociales social ADJ f p 34.40 49.80 4.59 8.85 +socialisation socialisation NOM f s 0.10 0.00 0.10 0.00 +socialise socialiser VER 0.16 0.00 0.02 0.00 ind:pre:1s;ind:pre:3s; +socialiser socialiser VER 0.16 0.00 0.13 0.00 inf; +socialisez socialiser VER 0.16 0.00 0.01 0.00 ind:pre:2p; +socialisme socialisme NOM m s 4.90 6.76 4.90 6.69 +socialismes socialisme NOM m p 4.90 6.76 0.00 0.07 +socialiste socialiste ADJ s 6.68 10.41 5.00 7.97 +socialistes socialiste ADJ p 6.68 10.41 1.68 2.43 +socialo socialo NOM s 0.03 0.14 0.01 0.00 +socialos socialo NOM p 0.03 0.14 0.02 0.14 +sociaux_démocrates sociaux_démocrates ADJ m 0.23 0.00 0.23 0.00 +sociaux social ADJ m p 34.40 49.80 4.59 3.85 +sociniens socinien NOM m p 0.00 0.07 0.00 0.07 +socio_culturel socio_culturel ADJ f p 0.01 0.14 0.00 0.07 +socio_culturel socio_culturel ADJ m p 0.01 0.14 0.01 0.07 +socio_économique socio_économique ADJ m s 0.08 0.07 0.06 0.00 +socio_économique socio_économique ADJ m p 0.08 0.07 0.02 0.07 +socio socio ADV 0.09 0.14 0.09 0.14 +sociobiologie sociobiologie NOM f s 0.01 0.00 0.01 0.00 +socioculturel socioculturel ADJ m s 0.01 0.14 0.00 0.07 +socioculturelles socioculturel ADJ f p 0.01 0.14 0.01 0.07 +sociologie sociologie NOM f s 1.09 1.28 1.09 1.28 +sociologique sociologique ADJ s 0.64 0.68 0.39 0.47 +sociologiquement sociologiquement ADV 0.00 0.07 0.00 0.07 +sociologiques sociologique ADJ f p 0.64 0.68 0.25 0.20 +sociologue sociologue NOM s 0.93 1.55 0.48 0.54 +sociologues sociologue NOM p 0.93 1.55 0.45 1.01 +sociopathe sociopathe ADJ s 0.88 0.00 0.67 0.00 +sociopathes sociopathe ADJ p 0.88 0.00 0.21 0.00 +sociopathie sociopathie NOM f s 0.04 0.00 0.04 0.00 +sociopolitique sociopolitique ADJ f s 0.01 0.00 0.01 0.00 +socius socius NOM m 0.00 0.07 0.00 0.07 +sociétaire sociétaire ADJ f s 0.01 0.07 0.01 0.07 +sociétaires sociétaire NOM p 0.00 0.34 0.00 0.20 +sociétal sociétal ADJ m s 0.05 0.00 0.03 0.00 +sociétale sociétal ADJ f s 0.05 0.00 0.03 0.00 +société société NOM f s 75.46 62.23 69.38 56.55 +sociétés société NOM f p 75.46 62.23 6.08 5.68 +socket socket NOM m s 0.03 0.00 0.03 0.00 +socle socle NOM m s 0.72 8.45 0.70 7.91 +socles socle NOM m p 0.72 8.45 0.02 0.54 +socque socque NOM m s 0.00 0.47 0.00 0.07 +socques socque NOM m p 0.00 0.47 0.00 0.41 +socquette socquette NOM f s 0.38 2.16 0.02 0.41 +socquettes socquette NOM f p 0.38 2.16 0.36 1.76 +socratique socratique ADJ s 0.07 0.20 0.07 0.14 +socratiques socratique ADJ p 0.07 0.20 0.00 0.07 +socs soc NOM m p 0.57 1.89 0.27 0.27 +soda soda NOM m s 10.23 1.55 9.12 1.01 +sodas soda NOM m p 10.23 1.55 1.11 0.54 +sodique sodique ADJ s 0.02 0.00 0.02 0.00 +sodium sodium NOM m s 1.13 0.00 1.13 0.00 +sodomie sodomie NOM f s 1.44 0.47 1.44 0.47 +sodomisa sodomiser VER 1.33 1.49 0.00 0.07 ind:pas:3s; +sodomisait sodomiser VER 1.33 1.49 0.00 0.14 ind:imp:3s; +sodomisant sodomiser VER 1.33 1.49 0.10 0.14 par:pre; +sodomisation sodomisation NOM f s 0.00 0.34 0.00 0.34 +sodomise sodomiser VER 1.33 1.49 0.17 0.41 ind:pre:1s;ind:pre:3s; +sodomiser sodomiser VER 1.33 1.49 0.59 0.27 inf; +sodomiseront sodomiser VER 1.33 1.49 0.14 0.00 ind:fut:3p; +sodomisez sodomiser VER 1.33 1.49 0.00 0.07 ind:pre:2p; +sodomisé sodomiser VER m s 1.33 1.49 0.23 0.27 par:pas; +sodomisée sodomiser VER f s 1.33 1.49 0.10 0.07 par:pas; +sodomisés sodomiser VER m p 1.33 1.49 0.00 0.07 par:pas; +sodomite sodomite NOM m s 0.86 0.47 0.68 0.27 +sodomites sodomite NOM m p 0.86 0.47 0.19 0.20 +sodomitiques sodomitique ADJ p 0.00 0.07 0.00 0.07 +soeur soeur NOM f s 184.99 161.01 155.22 116.55 +soeurette soeurette NOM f s 2.12 0.95 2.12 0.95 +soeurs soeur NOM f p 184.99 161.01 29.76 44.46 +sofa sofa NOM m s 4.77 5.68 4.43 4.73 +sofas sofa NOM m p 4.77 5.68 0.33 0.95 +soft soft ADJ s 0.79 0.20 0.79 0.20 +softball softball NOM m s 0.69 0.00 0.69 0.00 +soi_disant soi_disant ADJ 9.46 13.11 9.46 13.11 +soi_même soi_même PRO:per s 6.86 24.86 6.86 24.86 +soi soi PRO:per s 28.23 83.65 28.23 83.65 +soie soie NOM f s 10.38 51.62 9.95 50.00 +soient être AUX 8074.24 6501.82 17.35 21.89 sub:pre:3p; +soierie soierie NOM f s 0.32 1.96 0.27 0.54 +soieries soierie NOM f p 0.32 1.96 0.05 1.42 +soies soie NOM f p 10.38 51.62 0.42 1.62 +soif soif NOM f s 31.82 35.54 31.28 35.27 +soiffard soiffard ADJ m s 0.03 0.27 0.03 0.14 +soiffarde soiffard NOM f s 0.33 0.54 0.02 0.07 +soiffards soiffard NOM m p 0.33 0.54 0.29 0.41 +soifs soif NOM f p 31.82 35.54 0.54 0.27 +soigna soigner VER 47.77 42.84 0.26 0.81 ind:pas:3s; +soignable soignable ADJ f s 0.16 0.00 0.16 0.00 +soignai soigner VER 47.77 42.84 0.00 0.07 ind:pas:1s; +soignaient soigner VER 47.77 42.84 0.02 0.68 ind:imp:3p; +soignais soigner VER 47.77 42.84 0.40 0.41 ind:imp:1s;ind:imp:2s; +soignait soigner VER 47.77 42.84 0.57 4.66 ind:imp:3s; +soignant soignant ADJ m s 0.17 0.07 0.12 0.07 +soignante soignant ADJ f s 0.17 0.07 0.03 0.00 +soignantes soignant ADJ f p 0.17 0.07 0.01 0.00 +soignants soignant NOM m p 0.10 0.27 0.06 0.00 +soigne soigner VER 47.77 42.84 9.23 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soignent soigner VER 47.77 42.84 1.01 0.88 ind:pre:3p; +soigner soigner VER 47.77 42.84 22.82 17.64 ind:imp:3s;inf; +soignera soigner VER 47.77 42.84 1.19 0.54 ind:fut:3s; +soignerai soigner VER 47.77 42.84 0.50 0.61 ind:fut:1s; +soigneraient soigner VER 47.77 42.84 0.17 0.00 cnd:pre:3p; +soignerais soigner VER 47.77 42.84 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +soignerait soigner VER 47.77 42.84 0.08 0.47 cnd:pre:3s; +soigneras soigner VER 47.77 42.84 0.04 0.00 ind:fut:2s; +soignerez soigner VER 47.77 42.84 0.17 0.00 ind:fut:2p; +soignerons soigner VER 47.77 42.84 0.17 0.00 ind:fut:1p; +soigneront soigner VER 47.77 42.84 0.34 0.14 ind:fut:3p; +soignes soigner VER 47.77 42.84 1.06 0.54 ind:pre:2s; +soigneur soigneur NOM m s 0.16 0.95 0.09 0.34 +soigneurs soigneur NOM m p 0.16 0.95 0.07 0.61 +soigneuse soigneux ADJ f s 0.78 3.78 0.22 1.28 +soigneusement soigneusement ADV 3.52 34.39 3.52 34.39 +soigneuses soigneux ADJ f p 0.78 3.78 0.00 0.20 +soigneux soigneux ADJ m 0.78 3.78 0.56 2.30 +soignez soigner VER 47.77 42.84 2.04 0.41 imp:pre:2p;ind:pre:2p; +soigniez soigner VER 47.77 42.84 0.08 0.00 ind:imp:2p;sub:pre:2p; +soignons soigner VER 47.77 42.84 0.18 0.00 imp:pre:1p;ind:pre:1p; +soignèrent soigner VER 47.77 42.84 0.00 0.27 ind:pas:3p; +soigné soigner VER m s 47.77 42.84 5.42 6.35 par:pas; +soignée soigner VER f s 47.77 42.84 1.10 1.76 par:pas; +soignées soigné ADJ f p 1.91 9.80 0.19 1.35 +soignés soigner VER m p 47.77 42.84 0.47 0.81 par:pas; +soin soin NOM m s 71.99 68.24 54.45 45.41 +soins soin NOM m p 71.99 68.24 17.55 22.84 +soir soir NOM m s 575.70 562.64 555.85 527.23 +soirs soir NOM m p 575.70 562.64 19.86 35.41 +soirée soirée NOM f s 102.37 76.69 94.36 58.24 +soirées soirée NOM f p 102.37 76.69 8.02 18.45 +sois être AUX 8074.24 6501.82 49.52 14.19 sub:pre:2s; +soissonnais soissonnais NOM m 0.00 0.14 0.00 0.14 +soit être AUX 8074.24 6501.82 100.79 76.01 sub:pre:3s; +soixantaine soixantaine NOM f s 0.42 4.53 0.42 4.53 +soixante_cinq soixante_cinq ADJ:num 0.12 3.58 0.12 3.58 +soixante_deux soixante_deux ADJ:num 0.15 0.34 0.15 0.34 +soixante_deuxième soixante_deuxième ADJ 0.00 0.07 0.00 0.07 +soixante_dix_huit soixante_dix_huit ADJ:num 0.16 0.47 0.16 0.47 +soixante_dix_neuf soixante_dix_neuf ADJ:num 0.01 0.20 0.01 0.20 +soixante_dix_neuvième soixante_dix_neuvième ADJ 0.00 0.07 0.00 0.07 +soixante_dix_sept soixante_dix_sept ADJ:num 0.21 0.74 0.21 0.74 +soixante_dix soixante_dix ADJ:num 1.12 8.85 1.12 8.85 +soixante_dixième soixante_dixième NOM s 0.00 0.47 0.00 0.47 +soixante_douze soixante_douze ADJ:num 0.23 1.15 0.23 1.15 +soixante_huit soixante_huit ADJ:num 0.16 0.81 0.16 0.81 +soixante_huitard soixante_huitard NOM m s 0.01 0.14 0.01 0.00 +soixante_huitard soixante_huitard ADJ f s 0.00 0.07 0.00 0.07 +soixante_huitard soixante_huitard NOM m p 0.01 0.14 0.00 0.14 +soixante_neuf soixante_neuf ADJ:num 0.16 0.41 0.16 0.41 +soixante_quatorze soixante_quatorze ADJ:num 0.03 0.61 0.03 0.61 +soixante_quatre soixante_quatre ADJ:num 0.04 0.61 0.04 0.61 +soixante_quinze soixante_quinze ADJ:num 0.27 3.85 0.27 3.85 +soixante_seize soixante_seize ADJ:num 0.07 0.68 0.07 0.68 +soixante_sept soixante_sept ADJ:num 0.20 0.81 0.20 0.81 +soixante_six soixante_six ADJ:num 0.08 0.81 0.08 0.81 +soixante_treize soixante_treize ADJ:num 0.01 1.08 0.01 1.08 +soixante_trois soixante_trois ADJ:num 0.15 0.20 0.15 0.20 +soixante soixante ADJ:num 3.92 22.70 3.92 22.70 +soixantième soixantième NOM s 0.01 0.20 0.01 0.20 +soja soja NOM m s 2.28 0.61 2.28 0.61 +sol_air sol_air ADJ 0.32 0.00 0.32 0.00 +sol sol NOM m s 47.17 150.34 45.83 148.31 +solaire solaire ADJ s 8.53 7.43 7.04 6.49 +solaires solaire ADJ p 8.53 7.43 1.49 0.95 +solanacée solanacée NOM f s 0.03 0.07 0.01 0.07 +solanacées solanacée NOM f p 0.03 0.07 0.02 0.00 +solarium solarium NOM m s 0.36 0.74 0.36 0.68 +solariums solarium NOM m p 0.36 0.74 0.00 0.07 +solda solder VER 1.52 3.72 0.01 0.07 ind:pas:3s; +soldaient solder VER 1.52 3.72 0.00 0.07 ind:imp:3p; +soldait solder VER 1.52 3.72 0.01 0.20 ind:imp:3s; +soldat soldat NOM m s 107.92 128.92 52.78 46.22 +soldate soldat NOM f s 107.92 128.92 0.18 0.20 +soldatesque soldatesque NOM f s 0.00 0.81 0.00 0.81 +soldats soldat NOM m p 107.92 128.92 54.96 82.50 +solde solde NOM s 6.76 9.05 5.09 6.89 +soldent solder VER 1.52 3.72 0.01 0.20 ind:pre:3p; +solder solder VER 1.52 3.72 0.33 0.74 inf; +soldera solder VER 1.52 3.72 0.15 0.07 ind:fut:3s; +solderais solder VER 1.52 3.72 0.01 0.00 cnd:pre:1s; +solderait solder VER 1.52 3.72 0.00 0.27 cnd:pre:3s; +solderie solderie NOM f s 0.05 0.00 0.05 0.00 +soldes solde NOM p 6.76 9.05 1.67 2.16 +soldeur soldeur NOM m s 0.01 0.20 0.01 0.07 +soldeurs soldeur NOM m p 0.01 0.20 0.00 0.14 +soldez solder VER 1.52 3.72 0.02 0.00 imp:pre:2p;ind:pre:2p; +soldât solder VER 1.52 3.72 0.00 0.14 sub:imp:3s; +soldèrent solder VER 1.52 3.72 0.01 0.07 ind:pas:3p; +soldé solder VER m s 1.52 3.72 0.28 0.47 par:pas; +soldée solder VER f s 1.52 3.72 0.19 0.47 par:pas; +soldées solder VER f p 1.52 3.72 0.05 0.14 par:pas; +soldés solder VER m p 1.52 3.72 0.17 0.41 par:pas; +sole sole NOM f s 1.35 2.50 1.29 1.89 +soleil_roi soleil_roi NOM m s 0.00 0.07 0.00 0.07 +soleil soleil NOM m s 123.34 334.39 120.72 328.78 +soleilleux soleilleux ADJ m s 0.00 0.07 0.00 0.07 +soleils soleil NOM m p 123.34 334.39 2.61 5.61 +solen solen NOM m s 0.03 0.07 0.03 0.07 +solennel solennel ADJ m s 4.58 19.66 2.30 8.11 +solennelle solennel ADJ f s 4.58 19.66 1.85 8.24 +solennellement solennellement ADV 1.77 6.15 1.77 6.15 +solennelles solennel ADJ f p 4.58 19.66 0.19 1.35 +solennels solennel ADJ m p 4.58 19.66 0.25 1.96 +solenniser solenniser VER 0.01 0.07 0.01 0.00 inf; +solennisèrent solenniser VER 0.01 0.07 0.00 0.07 ind:pas:3p; +solennité solennité NOM f s 0.15 8.11 0.15 7.77 +solennités solennité NOM f p 0.15 8.11 0.00 0.34 +soles sole NOM f p 1.35 2.50 0.06 0.61 +solex solex NOM m 0.25 3.38 0.25 3.38 +solfatares solfatare NOM f p 0.00 0.14 0.00 0.14 +solfège solfège NOM m s 0.16 0.95 0.16 0.95 +soli solo NOM m p 5.22 3.38 0.00 0.20 +solicitor solicitor NOM m s 0.00 0.14 0.00 0.07 +solicitors solicitor NOM m p 0.00 0.14 0.00 0.07 +solidaire solidaire ADJ s 2.17 4.80 0.91 2.50 +solidairement solidairement ADV 0.00 0.20 0.00 0.20 +solidaires solidaire ADJ p 2.17 4.80 1.26 2.30 +solidariser solidariser VER 0.00 0.27 0.00 0.20 inf; +solidarisez solidariser VER 0.00 0.27 0.00 0.07 ind:pre:2p; +solidarité solidarité NOM f s 2.87 9.05 2.87 8.99 +solidarités solidarité NOM f p 2.87 9.05 0.00 0.07 +solide solide ADJ s 21.71 42.77 17.31 31.49 +solidement solidement ADV 0.81 10.00 0.81 10.00 +solides solide ADJ p 21.71 42.77 4.40 11.28 +solidifia solidifier VER 0.45 1.42 0.00 0.27 ind:pas:3s; +solidifiait solidifier VER 0.45 1.42 0.00 0.07 ind:imp:3s; +solidification solidification NOM f s 0.01 0.00 0.01 0.00 +solidifie solidifier VER 0.45 1.42 0.17 0.14 ind:pre:1s;ind:pre:3s; +solidifient solidifier VER 0.45 1.42 0.10 0.00 ind:pre:3p; +solidifier solidifier VER 0.45 1.42 0.08 0.20 inf; +solidifié solidifier VER m s 0.45 1.42 0.06 0.27 par:pas; +solidifiée solidifier VER f s 0.45 1.42 0.02 0.27 par:pas; +solidifiées solidifier VER f p 0.45 1.42 0.00 0.14 par:pas; +solidifiés solidifier VER m p 0.45 1.42 0.01 0.07 par:pas; +solidité solidité NOM f s 0.65 4.66 0.65 4.66 +solidus solidus NOM m 0.00 0.07 0.00 0.07 +soliflore soliflore NOM m s 0.00 0.20 0.00 0.20 +soliloqua soliloquer VER 0.01 0.95 0.00 0.14 ind:pas:3s; +soliloquait soliloquer VER 0.01 0.95 0.00 0.34 ind:imp:3s; +soliloque soliloque NOM m s 0.02 1.22 0.01 0.81 +soliloquer soliloquer VER 0.01 0.95 0.00 0.14 inf; +soliloques soliloque NOM m p 0.02 1.22 0.01 0.41 +solipsisme solipsisme NOM m s 0.01 0.00 0.01 0.00 +solipsiste solipsiste ADJ s 0.04 0.00 0.04 0.00 +soliste soliste NOM s 0.95 1.08 0.94 0.61 +solistes soliste NOM p 0.95 1.08 0.01 0.47 +solitaire solitaire ADJ s 13.19 26.96 11.04 20.88 +solitairement solitairement ADV 0.01 1.22 0.01 1.22 +solitaires solitaire ADJ p 13.19 26.96 2.15 6.08 +solitude solitude NOM f s 19.64 69.73 19.48 66.96 +solitudes solitude NOM f p 19.64 69.73 0.16 2.77 +solive solive NOM f s 0.22 0.95 0.04 0.27 +soliveau soliveau NOM m s 0.00 0.14 0.00 0.14 +solives solive NOM f p 0.22 0.95 0.18 0.68 +sollicita solliciter VER 4.44 11.82 0.01 0.47 ind:pas:3s; +sollicitai solliciter VER 4.44 11.82 0.00 0.34 ind:pas:1s; +sollicitaient solliciter VER 4.44 11.82 0.00 0.54 ind:imp:3p; +sollicitais solliciter VER 4.44 11.82 0.00 0.27 ind:imp:1s; +sollicitait solliciter VER 4.44 11.82 0.01 0.88 ind:imp:3s; +sollicitant solliciter VER 4.44 11.82 0.06 0.47 par:pre; +sollicitation sollicitation NOM f s 0.24 2.30 0.23 0.61 +sollicitations sollicitation NOM f p 0.24 2.30 0.01 1.69 +sollicite solliciter VER 4.44 11.82 1.00 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sollicitent solliciter VER 4.44 11.82 0.09 0.34 ind:pre:3p;sub:pre:3p; +solliciter solliciter VER 4.44 11.82 0.74 3.11 inf; +sollicitera solliciter VER 4.44 11.82 0.17 0.00 ind:fut:3s; +solliciteraient solliciter VER 4.44 11.82 0.00 0.07 cnd:pre:3p; +solliciteur solliciteur NOM m s 0.40 0.68 0.13 0.14 +solliciteurs solliciteur NOM m p 0.40 0.68 0.27 0.47 +solliciteuse solliciteur NOM f s 0.40 0.68 0.00 0.07 +sollicitez solliciter VER 4.44 11.82 0.43 0.07 imp:pre:2p;ind:pre:2p; +sollicitons solliciter VER 4.44 11.82 0.12 0.00 imp:pre:1p;ind:pre:1p; +sollicitât solliciter VER 4.44 11.82 0.00 0.14 sub:imp:3s; +sollicitèrent solliciter VER 4.44 11.82 0.00 0.07 ind:pas:3p; +sollicité solliciter VER m s 4.44 11.82 1.28 2.30 par:pas; +sollicitude sollicitude NOM f s 1.85 9.46 1.84 8.99 +sollicitudes sollicitude NOM f p 1.85 9.46 0.01 0.47 +sollicitée solliciter VER f s 4.44 11.82 0.22 0.61 par:pas; +sollicitées solliciter VER f p 4.44 11.82 0.11 0.27 par:pas; +sollicités solliciter VER m p 4.44 11.82 0.22 0.54 par:pas; +solo solo NOM m s 5.22 3.38 4.81 2.57 +solognot solognot ADJ m s 0.00 0.54 0.00 0.27 +solognote solognot ADJ f s 0.00 0.54 0.00 0.07 +solognots solognot ADJ m p 0.00 0.54 0.00 0.20 +solos solo NOM m p 5.22 3.38 0.41 0.61 +sols sol NOM m p 47.17 150.34 1.34 2.03 +solstice solstice NOM m s 0.54 1.42 0.54 1.28 +solstices solstice NOM m p 0.54 1.42 0.00 0.14 +solubilité solubilité NOM f s 0.01 0.00 0.01 0.00 +soluble soluble ADJ s 0.41 0.34 0.39 0.20 +solubles soluble ADJ p 0.41 0.34 0.02 0.14 +solucamphre solucamphre NOM m s 0.00 0.07 0.00 0.07 +solécismes solécisme NOM m p 0.00 0.14 0.00 0.14 +solénoïde solénoïde NOM m s 0.11 0.00 0.09 0.00 +solénoïdes solénoïde NOM m p 0.11 0.00 0.02 0.00 +solution solution NOM f s 61.96 43.51 56.46 36.89 +solutionnait solutionner VER 0.13 0.14 0.00 0.07 ind:imp:3s; +solutionner solutionner VER 0.13 0.14 0.12 0.07 inf; +solutionneur solutionneur NOM m s 0.03 0.00 0.03 0.00 +solutionnons solutionner VER 0.13 0.14 0.01 0.00 imp:pre:1p; +solutions solution NOM f p 61.96 43.51 5.50 6.62 +soluté soluté NOM m s 0.17 0.07 0.15 0.07 +solutés soluté NOM m p 0.17 0.07 0.01 0.00 +solvabilité solvabilité NOM f s 0.15 0.14 0.15 0.14 +solvable solvable ADJ m s 0.36 0.00 0.36 0.00 +solvant solvant NOM m s 0.24 0.27 0.18 0.20 +solvants solvant NOM m p 0.24 0.27 0.06 0.07 +soma soma NOM m s 0.48 0.00 0.48 0.00 +somalien somalien ADJ m s 0.07 0.00 0.04 0.00 +somalienne somalien ADJ f s 0.07 0.00 0.01 0.00 +somaliens somalien NOM m p 0.32 0.14 0.32 0.14 +somalis somali ADJ m p 0.00 0.07 0.00 0.07 +somatique somatique ADJ m s 0.20 0.14 0.04 0.14 +somatiques somatique ADJ p 0.20 0.14 0.16 0.00 +somatisant somatiser VER 0.01 0.47 0.00 0.07 par:pre; +somatise somatiser VER 0.01 0.47 0.01 0.14 ind:pre:3s; +somatiser somatiser VER 0.01 0.47 0.00 0.14 inf; +somatiserez somatiser VER 0.01 0.47 0.00 0.07 ind:fut:2p; +somatisée somatiser VER f s 0.01 0.47 0.00 0.07 par:pas; +sombra sombrer VER 5.51 19.32 0.53 1.62 ind:pas:3s; +sombrai sombrer VER 5.51 19.32 0.01 0.41 ind:pas:1s; +sombraient sombrer VER 5.51 19.32 0.01 0.88 ind:imp:3p; +sombrais sombrer VER 5.51 19.32 0.01 0.68 ind:imp:1s;ind:imp:2s; +sombrait sombrer VER 5.51 19.32 0.19 1.76 ind:imp:3s; +sombrant sombrer VER 5.51 19.32 0.04 0.41 par:pre; +sombre sombre ADJ s 31.86 125.74 24.66 93.72 +sombrement sombrement ADV 0.12 2.03 0.12 2.03 +sombrent sombrer VER 5.51 19.32 0.33 0.41 ind:pre:3p; +sombrer sombrer VER 5.51 19.32 2.22 6.49 inf; +sombrera sombrer VER 5.51 19.32 0.21 0.41 ind:fut:3s; +sombreraient sombrer VER 5.51 19.32 0.00 0.07 cnd:pre:3p; +sombrerais sombrer VER 5.51 19.32 0.01 0.00 cnd:pre:2s; +sombrerait sombrer VER 5.51 19.32 0.03 0.07 cnd:pre:3s; +sombrerez sombrer VER 5.51 19.32 0.01 0.00 ind:fut:2p; +sombrero sombrero NOM m s 0.57 0.68 0.44 0.34 +sombrerons sombrer VER 5.51 19.32 0.02 0.07 ind:fut:1p; +sombreros sombrero NOM m p 0.57 0.68 0.13 0.34 +sombres sombre ADJ p 31.86 125.74 7.21 32.03 +sombrez sombrer VER 5.51 19.32 0.03 0.00 ind:pre:2p; +sombrions sombrer VER 5.51 19.32 0.00 0.27 ind:imp:1p; +sombrons sombrer VER 5.51 19.32 0.02 0.14 imp:pre:1p;ind:pre:1p; +sombrèrent sombrer VER 5.51 19.32 0.00 0.14 ind:pas:3p; +sombré sombrer VER m s 5.51 19.32 1.22 2.70 par:pas; +sombrée sombrer VER f s 5.51 19.32 0.00 0.20 par:pas; +sombrées sombrer VER f p 5.51 19.32 0.00 0.14 par:pas; +sombrés sombrer VER m p 5.51 19.32 0.01 0.07 par:pas; +somma sommer VER 3.17 6.01 0.00 0.47 ind:pas:3s; +sommai sommer VER 3.17 6.01 0.00 0.20 ind:pas:1s; +sommaire sommaire ADJ s 0.56 4.80 0.46 3.45 +sommairement sommairement ADV 0.13 2.16 0.13 2.16 +sommaires sommaire ADJ p 0.56 4.80 0.10 1.35 +sommais sommer VER 3.17 6.01 0.00 0.07 ind:imp:1s; +sommait sommer VER 3.17 6.01 0.01 0.47 ind:imp:3s; +sommant sommer VER 3.17 6.01 0.00 0.27 par:pre; +sommation sommation NOM f s 1.00 3.24 0.94 1.69 +sommations sommation NOM f p 1.00 3.24 0.07 1.55 +somme somme NOM s 32.89 79.26 28.27 72.70 +sommeil sommeil NOM m s 44.53 114.80 44.51 112.03 +sommeilla sommeiller VER 1.67 6.89 0.00 0.14 ind:pas:3s; +sommeillaient sommeiller VER 1.67 6.89 0.02 0.81 ind:imp:3p; +sommeillais sommeiller VER 1.67 6.89 0.03 0.07 ind:imp:1s; +sommeillait sommeiller VER 1.67 6.89 0.05 1.89 ind:imp:3s; +sommeillant sommeillant ADJ m s 0.00 1.08 0.00 0.61 +sommeillante sommeillant ADJ f s 0.00 1.08 0.00 0.27 +sommeillants sommeillant ADJ m p 0.00 1.08 0.00 0.20 +sommeille sommeiller VER 1.67 6.89 0.89 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sommeillent sommeiller VER 1.67 6.89 0.17 0.61 ind:pre:3p; +sommeiller sommeiller VER 1.67 6.89 0.50 1.08 inf; +sommeilleux sommeilleux ADJ m p 0.00 0.34 0.00 0.34 +sommeillèrent sommeiller VER 1.67 6.89 0.00 0.07 ind:pas:3p; +sommeillé sommeiller VER m s 1.67 6.89 0.01 0.41 par:pas; +sommeils sommeil NOM m p 44.53 114.80 0.02 2.77 +sommelier sommelier NOM m s 0.34 1.15 0.34 1.15 +somment sommer VER 3.17 6.01 0.14 0.07 ind:pre:3p; +sommer sommer VER 3.17 6.01 0.36 0.27 inf; +sommes être AUX 8074.24 6501.82 109.26 99.46 ind:pre:1p; +sommet sommet NOM m s 17.44 47.50 15.15 38.85 +sommets sommet NOM m p 17.44 47.50 2.29 8.65 +sommier sommier NOM m s 0.30 7.97 0.28 6.82 +sommiers sommier NOM m p 0.30 7.97 0.02 1.15 +sommiez sommer VER 3.17 6.01 0.01 0.00 ind:imp:2p; +sommitales sommital ADJ f p 0.00 0.07 0.00 0.07 +sommité sommité NOM f s 0.50 2.64 0.24 2.03 +sommités sommité NOM f p 0.50 2.64 0.26 0.61 +sommons sommer VER 3.17 6.01 0.02 0.07 ind:pre:1p; +sommèrent sommer VER 3.17 6.01 0.00 0.07 ind:pas:3p; +sommé sommer VER m s 3.17 6.01 0.14 1.42 par:pas; +sommée sommer VER f s 3.17 6.01 0.01 0.68 par:pas; +sommés sommer VER m p 3.17 6.01 0.02 0.27 par:pas; +somnambulant somnambuler VER 0.00 0.14 0.00 0.14 par:pre; +somnambule somnambule NOM s 2.71 4.73 2.33 4.05 +somnambules somnambule NOM p 2.71 4.73 0.38 0.68 +somnambulique somnambulique ADJ s 0.02 1.62 0.02 1.28 +somnambuliquement somnambuliquement ADV 0.00 0.07 0.00 0.07 +somnambuliques somnambulique ADJ p 0.02 1.62 0.00 0.34 +somnambulisme somnambulisme NOM m s 0.27 0.74 0.27 0.74 +somnifère somnifère NOM m s 5.73 2.97 2.01 1.55 +somnifères somnifère NOM m p 5.73 2.97 3.72 1.42 +somno somno NOM m s 0.00 0.07 0.00 0.07 +somnola somnoler VER 0.50 10.47 0.00 0.14 ind:pas:3s; +somnolai somnoler VER 0.50 10.47 0.00 0.07 ind:pas:1s; +somnolaient somnoler VER 0.50 10.47 0.00 0.88 ind:imp:3p; +somnolais somnoler VER 0.50 10.47 0.05 0.54 ind:imp:1s; +somnolait somnoler VER 0.50 10.47 0.02 3.45 ind:imp:3s; +somnolant somnoler VER 0.50 10.47 0.03 1.01 par:pre; +somnole somnoler VER 0.50 10.47 0.17 1.89 ind:pre:1s;ind:pre:3s; +somnolence somnolence NOM f s 0.37 3.58 0.36 3.18 +somnolences somnolence NOM f p 0.37 3.58 0.01 0.41 +somnolent somnolent ADJ m s 0.18 4.05 0.08 1.69 +somnolente somnolent ADJ f s 0.18 4.05 0.08 1.01 +somnolentes somnolent ADJ f p 0.18 4.05 0.01 0.54 +somnolents somnolent ADJ m p 0.18 4.05 0.01 0.81 +somnoler somnoler VER 0.50 10.47 0.11 1.35 inf; +somnolerais somnoler VER 0.50 10.47 0.00 0.07 cnd:pre:1s; +somnolez somnoler VER 0.50 10.47 0.00 0.07 ind:pre:2p; +somnolé somnoler VER m s 0.50 10.47 0.11 0.34 par:pas; +somozistes somoziste NOM p 0.01 0.00 0.01 0.00 +somptuaire somptuaire ADJ s 0.02 0.41 0.00 0.14 +somptuaires somptuaire ADJ f p 0.02 0.41 0.02 0.27 +somptueuse somptueux ADJ f s 3.06 13.18 0.68 3.78 +somptueusement somptueusement ADV 0.50 0.95 0.50 0.95 +somptueuses somptueux ADJ f p 3.06 13.18 0.19 1.96 +somptueux somptueux ADJ m 3.06 13.18 2.20 7.43 +somptuosité somptuosité NOM f s 0.03 1.08 0.03 0.81 +somptuosités somptuosité NOM f p 0.03 1.08 0.00 0.27 +son son ADJ:pos 1740.43 4696.15 1740.43 4696.15 +sonagramme sonagramme NOM m s 0.01 0.00 0.01 0.00 +sonar sonar NOM m s 1.71 0.07 1.54 0.07 +sonars sonar NOM m p 1.71 0.07 0.17 0.00 +sonate sonate NOM f s 2.98 1.69 2.95 1.15 +sonates sonate NOM f p 2.98 1.69 0.03 0.54 +sonatine sonatine NOM f s 0.14 1.62 0.14 1.62 +sonda sonder VER 3.31 5.07 0.00 0.61 ind:pas:3s; +sondage sondage NOM m s 4.64 2.16 2.33 0.74 +sondages sondage NOM m p 4.64 2.16 2.32 1.42 +sondaient sonder VER 3.31 5.07 0.00 0.07 ind:imp:3p; +sondait sonder VER 3.31 5.07 0.01 0.27 ind:imp:3s; +sondant sonder VER 3.31 5.07 0.19 0.34 par:pre; +sondas sonder VER 3.31 5.07 0.00 0.07 ind:pas:2s; +sonde sonde NOM f s 6.31 0.95 5.30 0.81 +sondent sonder VER 3.31 5.07 0.08 0.14 ind:pre:3p; +sonder sonder VER 3.31 5.07 1.69 2.23 inf; +sonderai sonder VER 3.31 5.07 0.00 0.07 ind:fut:1s; +sondes sonde NOM f p 6.31 0.95 1.01 0.14 +sondeur sondeur NOM m s 0.13 0.20 0.07 0.07 +sondeurs sondeur NOM m p 0.13 0.20 0.04 0.14 +sondeuse sondeur NOM f s 0.13 0.20 0.01 0.00 +sondez sonder VER 3.31 5.07 0.20 0.07 imp:pre:2p;ind:pre:2p; +sondions sonder VER 3.31 5.07 0.01 0.00 ind:imp:1p; +sondons sonder VER 3.31 5.07 0.04 0.00 imp:pre:1p;ind:pre:1p; +sondèrent sonder VER 3.31 5.07 0.00 0.14 ind:pas:3p; +sondé sonder VER m s 3.31 5.07 0.46 0.41 par:pas; +sondée sonder VER f s 3.31 5.07 0.05 0.00 par:pas; +sondés sonder VER m p 3.31 5.07 0.03 0.00 par:pas; +song song NOM m 0.40 0.14 0.40 0.14 +songe_creux songe_creux NOM m 0.01 0.41 0.01 0.41 +songe songer VER 24.59 104.86 4.28 17.03 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +songea songer VER 24.59 104.86 0.24 14.80 ind:pas:3s; +songeai songer VER 24.59 104.86 0.15 2.77 ind:pas:1s; +songeaient songer VER 24.59 104.86 0.01 1.69 ind:imp:3p; +songeais songer VER 24.59 104.86 0.92 6.08 ind:imp:1s;ind:imp:2s; +songeait songer VER 24.59 104.86 0.34 17.30 ind:imp:3s; +songeant songer VER 24.59 104.86 0.61 8.11 par:pre; +songeasse songer VER 24.59 104.86 0.00 0.14 sub:imp:1s; +songent songer VER 24.59 104.86 0.58 0.74 ind:pre:3p; +songeons songer VER 24.59 104.86 0.35 0.34 imp:pre:1p;ind:pre:1p; +songeât songer VER 24.59 104.86 0.00 0.41 sub:imp:3s; +songer songer VER 24.59 104.86 5.56 18.31 inf; +songera songer VER 24.59 104.86 0.03 0.41 ind:fut:3s; +songerai songer VER 24.59 104.86 0.26 0.27 ind:fut:1s; +songeraient songer VER 24.59 104.86 0.02 0.07 cnd:pre:3p; +songerais songer VER 24.59 104.86 0.19 0.27 cnd:pre:1s;cnd:pre:2s; +songerait songer VER 24.59 104.86 0.05 0.61 cnd:pre:3s; +songerie songerie NOM f s 0.16 1.69 0.14 0.81 +songeries songerie NOM f p 0.16 1.69 0.02 0.88 +songeriez songer VER 24.59 104.86 0.04 0.07 cnd:pre:2p; +songerons songer VER 24.59 104.86 0.28 0.07 ind:fut:1p; +songes songer VER 24.59 104.86 0.86 0.68 ind:pre:2s;sub:pre:2s; +songeur songeur ADJ m s 0.26 6.08 0.25 3.45 +songeurs songeur ADJ m p 0.26 6.08 0.00 0.34 +songeuse songeur ADJ f s 0.26 6.08 0.01 1.96 +songeusement songeusement ADV 0.00 0.20 0.00 0.20 +songeuses songeur ADJ f p 0.26 6.08 0.00 0.34 +songez songer VER 24.59 104.86 5.00 3.45 imp:pre:2p;ind:pre:2p; +songiez songer VER 24.59 104.86 0.14 0.00 ind:imp:2p; +songions songer VER 24.59 104.86 0.00 0.14 ind:imp:1p; +songèrent songer VER 24.59 104.86 0.00 0.27 ind:pas:3p; +songé songer VER m s 24.59 104.86 4.69 10.88 par:pas; +sonique sonique ADJ s 0.45 0.07 0.35 0.07 +soniques sonique ADJ p 0.45 0.07 0.09 0.00 +sonna sonner VER 73.67 92.57 0.67 12.23 ind:pas:3s; +sonnai sonner VER 73.67 92.57 0.01 0.81 ind:pas:1s; +sonnaient sonner VER 73.67 92.57 0.59 6.22 ind:imp:3p; +sonnaillaient sonnailler VER 0.00 0.20 0.00 0.14 ind:imp:3p; +sonnaille sonnaille NOM f s 0.00 1.15 0.00 0.20 +sonnailler sonnailler VER 0.00 0.20 0.00 0.07 inf; +sonnailles sonnaille NOM f p 0.00 1.15 0.00 0.95 +sonnais sonner VER 73.67 92.57 0.33 0.41 ind:imp:1s;ind:imp:2s; +sonnait sonner VER 73.67 92.57 2.78 12.84 ind:imp:3s; +sonnant sonner VER 73.67 92.57 0.32 1.96 par:pre; +sonnante sonnant ADJ f s 0.20 6.89 0.00 0.34 +sonnantes sonnant ADJ f p 0.20 6.89 0.14 5.54 +sonnants sonnant ADJ m p 0.20 6.89 0.01 0.14 +sonne sonner VER 73.67 92.57 31.69 16.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sonnent sonner VER 73.67 92.57 2.92 3.85 ind:pre:3p;sub:pre:3p; +sonner sonner VER 73.67 92.57 11.77 18.04 inf; +sonnera sonner VER 73.67 92.57 1.69 1.15 ind:fut:3s; +sonnerai sonner VER 73.67 92.57 0.25 0.27 ind:fut:1s; +sonnerais sonner VER 73.67 92.57 0.13 0.20 cnd:pre:1s;cnd:pre:2s; +sonnerait sonner VER 73.67 92.57 0.50 1.08 cnd:pre:3s; +sonneras sonner VER 73.67 92.57 0.02 0.07 ind:fut:2s; +sonnerez sonner VER 73.67 92.57 0.01 0.14 ind:fut:2p; +sonnerie sonnerie NOM f s 6.65 18.31 6.03 15.68 +sonneries sonnerie NOM f p 6.65 18.31 0.63 2.64 +sonneront sonner VER 73.67 92.57 0.37 0.20 ind:fut:3p; +sonnes sonner VER 73.67 92.57 0.48 0.14 ind:pre:2s; +sonnet sonnet NOM m s 1.21 2.09 0.72 1.35 +sonnets sonnet NOM m p 1.21 2.09 0.49 0.74 +sonnette sonnette NOM f s 9.55 16.15 8.47 14.12 +sonnettes sonnette NOM f p 9.55 16.15 1.08 2.03 +sonneur sonneur NOM m s 1.34 0.61 1.31 0.34 +sonneurs sonneur NOM m p 1.34 0.61 0.03 0.27 +sonnez sonner VER 73.67 92.57 2.09 0.14 imp:pre:2p;ind:pre:2p; +sonniez sonner VER 73.67 92.57 0.04 0.00 ind:imp:2p; +sonnons sonner VER 73.67 92.57 0.04 0.14 imp:pre:1p;ind:pre:1p; +sonnât sonner VER 73.67 92.57 0.01 0.34 sub:imp:3s; +sonnèrent sonner VER 73.67 92.57 0.13 1.76 ind:pas:3p; +sonné sonner VER m s 73.67 92.57 16.04 12.23 par:pas; +sonnée sonner VER f s 73.67 92.57 0.71 0.81 par:pas; +sonnées sonné ADJ f p 0.66 3.58 0.01 0.14 +sonnés sonner VER m p 73.67 92.57 0.07 0.54 par:pas; +sono sono NOM f s 1.23 1.89 1.18 1.89 +sonoluminescence sonoluminescence NOM f s 0.01 0.00 0.01 0.00 +sonomètres sonomètre NOM m p 0.01 0.00 0.01 0.00 +sonore sonore ADJ s 4.17 27.30 3.26 19.80 +sonorement sonorement ADV 0.00 0.07 0.00 0.07 +sonores sonore ADJ p 4.17 27.30 0.91 7.50 +sonorisateurs sonorisateur NOM m p 0.00 0.07 0.00 0.07 +sonorisation sonorisation NOM f s 0.03 0.27 0.03 0.27 +sonorise sonoriser VER 0.06 0.27 0.01 0.07 ind:pre:3s; +sonoriser sonoriser VER 0.06 0.27 0.03 0.14 inf; +sonorisé sonoriser VER m s 0.06 0.27 0.02 0.00 par:pas; +sonorisées sonoriser VER f p 0.06 0.27 0.00 0.07 par:pas; +sonorité sonorité NOM f s 0.29 6.15 0.26 4.53 +sonorités sonorité NOM f p 0.29 6.15 0.04 1.62 +sonos sono NOM f p 1.23 1.89 0.05 0.00 +sonothèque sonothèque NOM f s 0.01 0.00 0.01 0.00 +sonotone sonotone NOM m s 0.17 0.07 0.16 0.00 +sonotones sonotone NOM m p 0.17 0.07 0.01 0.07 +sons son NOM m p 47.51 67.84 7.83 18.51 +sont être AUX 8074.24 6501.82 511.66 386.35 ind:pre:3p; +sopha sopha NOM m s 0.00 0.27 0.00 0.27 +sophie sophie NOM f s 1.23 0.00 1.23 0.00 +sophisme sophisme NOM m s 0.29 0.54 0.29 0.20 +sophismes sophisme NOM m p 0.29 0.54 0.00 0.34 +sophiste sophiste NOM s 0.10 0.47 0.10 0.27 +sophistes sophiste NOM p 0.10 0.47 0.00 0.20 +sophistication sophistication NOM f s 0.22 0.68 0.22 0.61 +sophistications sophistication NOM f p 0.22 0.68 0.00 0.07 +sophistique sophistique ADJ s 0.11 0.00 0.11 0.00 +sophistiqué sophistiqué ADJ m s 3.57 2.23 1.79 0.34 +sophistiquée sophistiqué ADJ f s 3.57 2.23 0.94 0.95 +sophistiquées sophistiqué ADJ f p 3.57 2.23 0.32 0.41 +sophistiqués sophistiqué ADJ m p 3.57 2.23 0.53 0.54 +sophora sophora NOM m s 0.14 0.00 0.14 0.00 +sopor sopor NOM m s 0.00 0.07 0.00 0.07 +soporifique soporifique ADJ s 0.62 0.20 0.59 0.20 +soporifiques soporifique ADJ f p 0.62 0.20 0.04 0.00 +soprano soprano NOM s 5.21 2.03 4.80 1.76 +sopranos soprano NOM p 5.21 2.03 0.41 0.27 +sorbes sorbe NOM f p 0.00 0.07 0.00 0.07 +sorbet sorbet NOM m s 0.55 1.55 0.37 0.81 +sorbetière sorbetière NOM f s 0.09 0.27 0.09 0.07 +sorbetières sorbetière NOM f p 0.09 0.27 0.00 0.20 +sorbets sorbet NOM m p 0.55 1.55 0.19 0.74 +sorbier sorbier NOM m s 1.18 0.47 1.18 0.34 +sorbiers sorbier NOM m p 1.18 0.47 0.00 0.14 +sorbitol sorbitol NOM m s 0.03 0.00 0.03 0.00 +sorbonnarde sorbonnard NOM f s 0.00 0.07 0.00 0.07 +sorbonne sorbon NOM f s 0.00 0.20 0.00 0.20 +sorcellerie sorcellerie NOM f s 5.24 1.35 5.21 1.22 +sorcelleries sorcellerie NOM f p 5.24 1.35 0.04 0.14 +sorcier sorcier NOM m s 54.09 14.66 4.49 4.32 +sorciers sorcier NOM m p 54.09 14.66 2.42 1.62 +sorcière sorcier NOM f s 54.09 14.66 33.84 6.42 +sorcières sorcier NOM f p 54.09 14.66 13.34 2.30 +sordide sordide ADJ s 6.37 10.95 4.39 7.57 +sordidement sordidement ADV 0.14 0.20 0.14 0.20 +sordides sordide ADJ p 6.37 10.95 1.98 3.38 +sordidité sordidité NOM f s 0.03 0.14 0.03 0.14 +sorgho sorgho NOM m s 0.03 0.07 0.03 0.07 +sorite sorite NOM m s 0.01 0.00 0.01 0.00 +sornette sornette NOM f s 1.83 1.69 0.11 0.07 +sornettes sornette NOM f p 1.83 1.69 1.72 1.62 +sororal sororal ADJ m s 0.01 0.27 0.01 0.07 +sororale sororal ADJ f s 0.01 0.27 0.00 0.14 +sororales sororal ADJ f p 0.01 0.27 0.00 0.07 +sororité sororité NOM f s 0.11 0.14 0.11 0.14 +sors sortir VER 884.26 627.57 156.13 25.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +sort sortir VER 884.26 627.57 82.41 58.51 ind:pre:3s; +sortîmes sortir VER 884.26 627.57 0.16 1.35 ind:pas:1p; +sortît sortir VER 884.26 627.57 0.00 0.61 sub:imp:3s; +sortable sortable ADJ s 0.29 0.07 0.28 0.07 +sortables sortable ADJ p 0.29 0.07 0.01 0.00 +sortaient sortir VER 884.26 627.57 2.76 21.42 ind:imp:3p; +sortais sortir VER 884.26 627.57 6.38 6.28 ind:imp:1s;ind:imp:2s; +sortait sortir VER 884.26 627.57 12.62 50.81 ind:imp:3s; +sortant sortir VER 884.26 627.57 10.57 34.66 par:pre; +sortante sortant ADJ f s 1.17 1.49 0.09 0.00 +sortantes sortant ADJ f p 1.17 1.49 0.02 0.07 +sortants sortant ADJ m p 1.17 1.49 0.27 0.14 +sorte sorte NOM f s 114.73 307.16 98.33 273.38 +sortent sortir VER 884.26 627.57 18.97 17.43 ind:pre:3p; +sortes sorte NOM f p 114.73 307.16 16.41 33.78 +sortez sortir VER 884.26 627.57 87.79 5.27 imp:pre:2p;ind:pre:2p; +sorti sortir VER m s 884.26 627.57 81.08 67.97 par:pas; +sortie sortie NOM f s 47.81 75.27 42.58 66.01 +sorties sortie NOM f p 47.81 75.27 5.23 9.26 +sortiez sortir VER 884.26 627.57 2.87 0.54 ind:imp:2p; +sortilège sortilège NOM m s 3.19 3.18 2.46 1.62 +sortilèges sortilège NOM m p 3.19 3.18 0.72 1.55 +sortions sortir VER 884.26 627.57 0.67 3.38 ind:imp:1p; +sortir sortir VER 884.26 627.57 285.45 145.34 inf; +sortira sortir VER 884.26 627.57 18.31 6.55 ind:fut:3s; +sortirai sortir VER 884.26 627.57 7.69 1.89 ind:fut:1s; +sortiraient sortir VER 884.26 627.57 0.38 2.03 cnd:pre:3p; +sortirais sortir VER 884.26 627.57 3.06 0.81 cnd:pre:1s;cnd:pre:2s; +sortirait sortir VER 884.26 627.57 3.02 5.47 cnd:pre:3s; +sortiras sortir VER 884.26 627.57 9.37 1.42 ind:fut:2s; +sortirent sortir VER 884.26 627.57 0.39 12.91 ind:pas:3p; +sortirez sortir VER 884.26 627.57 3.12 0.61 ind:fut:2p; +sortiriez sortir VER 884.26 627.57 0.40 0.07 cnd:pre:2p; +sortirions sortir VER 884.26 627.57 0.21 0.14 cnd:pre:1p; +sortirons sortir VER 884.26 627.57 2.50 0.88 ind:fut:1p; +sortiront sortir VER 884.26 627.57 2.61 0.95 ind:fut:3p; +sortis sortir VER m p 884.26 627.57 15.65 26.76 ind:pas:1s;ind:pas:2s;par:pas; +sortit sortir VER 884.26 627.57 2.31 86.96 ind:pas:3s; +sortons sortir VER 884.26 627.57 13.57 4.19 imp:pre:1p;ind:pre:1p; +sorts sort NOM m p 44.80 58.92 1.88 1.42 +sosie sosie NOM m s 1.89 1.22 1.54 0.88 +sosies sosie NOM m p 1.89 1.22 0.34 0.34 +sostenuto sostenuto ADV 0.00 0.07 0.00 0.07 +sot sot NOM m s 5.61 3.99 2.38 1.01 +sotie sotie NOM f s 0.00 0.07 0.00 0.07 +sots sot NOM m p 5.61 3.99 1.27 0.88 +sotte sot ADJ f s 6.34 8.11 2.73 3.78 +sottement sottement ADV 0.33 2.30 0.33 2.30 +sottes sot ADJ f p 6.34 8.11 0.99 0.88 +sottise sottise NOM f s 6.97 11.82 2.44 6.96 +sottises sottise NOM f p 6.97 11.82 4.54 4.86 +sou sou NOM m s 35.92 41.22 14.43 12.57 +souabe souabe ADJ s 0.14 0.07 0.14 0.00 +souabes souabe NOM p 0.20 0.34 0.20 0.34 +soubassement soubassement NOM m s 0.13 2.23 0.02 1.82 +soubassements soubassement NOM m p 0.13 2.23 0.11 0.41 +soubise soubise NOM f s 0.00 0.07 0.00 0.07 +soubresaut soubresaut NOM m s 0.53 6.96 0.26 1.49 +soubresautaient soubresauter VER 0.00 0.14 0.00 0.07 ind:imp:3p; +soubresautait soubresauter VER 0.00 0.14 0.00 0.07 ind:imp:3s; +soubresauts soubresaut NOM m p 0.53 6.96 0.27 5.47 +soubrette soubrette NOM f s 1.11 3.11 0.95 2.36 +soubrettes soubrette NOM f p 1.11 3.11 0.16 0.74 +souche souche NOM f s 4.93 10.54 3.45 7.36 +souches souche NOM f p 4.93 10.54 1.48 3.18 +souchet souchet NOM m s 0.01 0.07 0.01 0.07 +souchette souchette NOM f s 0.00 0.07 0.00 0.07 +souci souci NOM m s 49.47 61.22 26.73 39.80 +soucia soucier VER 22.45 26.62 0.00 0.41 ind:pas:3s; +souciai soucier VER 22.45 26.62 0.01 0.20 ind:pas:1s; +souciaient soucier VER 22.45 26.62 0.28 1.22 ind:imp:3p; +souciais soucier VER 22.45 26.62 0.63 1.49 ind:imp:1s;ind:imp:2s; +souciait soucier VER 22.45 26.62 0.88 5.54 ind:imp:3s; +souciant soucier VER 22.45 26.62 0.05 0.41 par:pre; +soucie soucier VER 22.45 26.62 7.01 4.12 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soucient soucier VER 22.45 26.62 0.95 0.47 ind:pre:3p; +soucier soucier VER 22.45 26.62 5.62 8.92 inf; +souciera soucier VER 22.45 26.62 0.27 0.14 ind:fut:3s; +soucierai soucier VER 22.45 26.62 0.12 0.14 ind:fut:1s; +soucieraient soucier VER 22.45 26.62 0.04 0.14 cnd:pre:3p; +soucierais soucier VER 22.45 26.62 0.13 0.00 cnd:pre:1s;cnd:pre:2s; +soucierait soucier VER 22.45 26.62 0.22 0.27 cnd:pre:3s; +soucierez soucier VER 22.45 26.62 0.02 0.00 ind:fut:2p; +soucies soucier VER 22.45 26.62 2.19 0.20 ind:pre:2s; +soucieuse soucieux ADJ f s 2.28 16.62 0.37 3.45 +soucieuses soucieux ADJ f p 2.28 16.62 0.11 0.34 +soucieux soucieux ADJ m 2.28 16.62 1.79 12.84 +souciez soucier VER 22.45 26.62 1.86 0.41 imp:pre:2p;ind:pre:2p; +soucions soucier VER 22.45 26.62 0.16 0.07 imp:pre:1p;ind:pre:1p; +souciât soucier VER 22.45 26.62 0.00 0.34 sub:imp:3s; +soucis souci NOM m p 49.47 61.22 22.73 21.42 +soucièrent soucier VER 22.45 26.62 0.00 0.07 ind:pas:3p; +soucié soucier VER m s 22.45 26.62 1.39 1.62 par:pas; +souciée soucier VER f s 22.45 26.62 0.36 0.20 par:pas; +souciées soucier VER f p 22.45 26.62 0.00 0.07 par:pas; +souciés soucier VER m p 22.45 26.62 0.28 0.20 par:pas; +soucoupe soucoupe NOM f s 4.14 8.85 2.92 5.95 +soucoupes soucoupe NOM f p 4.14 8.85 1.23 2.91 +soudage soudage NOM m s 0.04 0.00 0.04 0.00 +soudaient souder VER 3.20 8.04 0.00 0.68 ind:imp:3p; +soudain soudain ADV 21.16 207.30 21.16 207.30 +soudaine soudain ADJ f s 13.62 65.27 3.42 17.16 +soudainement soudainement ADV 6.98 5.54 6.98 5.54 +soudaines soudain ADJ f p 13.62 65.27 0.28 1.69 +soudaineté soudaineté NOM f s 0.05 1.28 0.05 1.28 +soudains soudain ADJ m p 13.62 65.27 0.15 1.62 +soudait souder VER 3.20 8.04 0.01 0.47 ind:imp:3s; +soudanais soudanais NOM m 0.24 0.07 0.24 0.07 +soudanaise soudanais ADJ f s 0.20 0.20 0.00 0.07 +soudant souder VER 3.20 8.04 0.00 0.20 par:pre; +soudard soudard NOM m s 0.16 2.23 0.01 1.08 +soudards soudard NOM m p 0.16 2.23 0.15 1.15 +soude soude NOM f s 0.88 0.88 0.88 0.88 +soudent souder VER 3.20 8.04 0.04 0.34 ind:pre:3p; +souder souder VER 3.20 8.04 1.10 1.08 inf; +souderait souder VER 3.20 8.04 0.01 0.07 cnd:pre:3s; +soudeur soudeur NOM m s 1.42 0.27 1.29 0.20 +soudeurs soudeur NOM m p 1.42 0.27 0.08 0.07 +soudeuse soudeur NOM f s 1.42 0.27 0.05 0.00 +soudez souder VER 3.20 8.04 0.03 0.00 imp:pre:2p;ind:pre:2p; +soudoie soudoyer VER 1.92 1.01 0.04 0.00 ind:pre:1s;ind:pre:3s; +soudoya soudoyer VER 1.92 1.01 0.00 0.07 ind:pas:3s; +soudoyaient soudoyer VER 1.92 1.01 0.01 0.07 ind:imp:3p; +soudoyait soudoyer VER 1.92 1.01 0.02 0.07 ind:imp:3s; +soudoyant soudoyer VER 1.92 1.01 0.21 0.14 par:pre; +soudoyer soudoyer VER 1.92 1.01 0.60 0.34 inf; +soudoyez soudoyer VER 1.92 1.01 0.09 0.00 imp:pre:2p;ind:pre:2p; +soudoyé soudoyer VER m s 1.92 1.01 0.75 0.20 par:pas; +soudoyée soudoyer VER f s 1.92 1.01 0.04 0.07 par:pas; +soudoyés soudoyer VER m p 1.92 1.01 0.16 0.07 par:pas; +soudèrent souder VER 3.20 8.04 0.00 0.07 ind:pas:3p; +soudé souder VER m s 3.20 8.04 0.57 1.35 par:pas; +soudée souder VER f s 3.20 8.04 0.19 0.95 par:pas; +soudées souder VER f p 3.20 8.04 0.17 1.22 par:pas; +soudure soudure NOM f s 1.35 1.08 1.09 0.95 +soudures soudure NOM f p 1.35 1.08 0.26 0.14 +soudés souder VER m p 3.20 8.04 0.92 1.35 par:pas; +soue soue NOM f s 0.11 0.34 0.11 0.34 +souffert souffrir VER m s 113.83 119.26 18.45 18.78 par:pas; +soufferte souffrir VER f s 113.83 119.26 0.00 0.07 par:pas; +souffertes souffrir VER f p 113.83 119.26 0.00 0.14 par:pas; +soufferts souffrir VER m p 113.83 119.26 0.03 0.00 par:pas; +souffla souffler VER 28.33 83.65 0.30 14.80 ind:pas:3s; +soufflages soufflage NOM m p 0.00 0.07 0.00 0.07 +soufflai souffler VER 28.33 83.65 0.00 0.54 ind:pas:1s; +soufflaient souffler VER 28.33 83.65 0.06 1.49 ind:imp:3p; +soufflais souffler VER 28.33 83.65 0.05 0.54 ind:imp:1s;ind:imp:2s; +soufflait souffler VER 28.33 83.65 0.86 15.34 ind:imp:3s; +soufflant souffler VER 28.33 83.65 0.38 8.72 par:pre; +soufflante soufflant ADJ f s 0.03 1.08 0.01 0.34 +soufflants soufflant NOM m p 0.02 0.34 0.00 0.14 +souffle souffle NOM m s 26.98 100.20 26.55 93.18 +soufflement soufflement NOM m s 0.01 0.27 0.01 0.20 +soufflements soufflement NOM m p 0.01 0.27 0.00 0.07 +soufflent souffler VER 28.33 83.65 0.81 1.49 ind:pre:3p; +souffler souffler VER 28.33 83.65 6.26 13.65 inf; +soufflera souffler VER 28.33 83.65 0.39 0.14 ind:fut:3s; +soufflerai souffler VER 28.33 83.65 0.28 0.07 ind:fut:1s; +soufflerais souffler VER 28.33 83.65 0.02 0.07 cnd:pre:1s; +soufflerait souffler VER 28.33 83.65 0.14 0.54 cnd:pre:3s; +soufflerez souffler VER 28.33 83.65 0.01 0.00 ind:fut:2p; +soufflerie soufflerie NOM f s 0.98 0.88 0.98 0.88 +souffleront souffler VER 28.33 83.65 0.02 0.00 ind:fut:3p; +souffles souffler VER 28.33 83.65 0.60 0.27 ind:pre:2s; +soufflet soufflet NOM m s 0.47 6.22 0.43 4.26 +souffletai souffleter VER 0.02 2.09 0.00 0.07 ind:pas:1s; +souffletaient souffleter VER 0.02 2.09 0.00 0.07 ind:imp:3p; +souffletait souffleter VER 0.02 2.09 0.00 0.20 ind:imp:3s; +souffletant souffleter VER 0.02 2.09 0.00 0.07 par:pre; +souffleter souffleter VER 0.02 2.09 0.00 0.41 inf; +soufflets soufflet NOM m p 0.47 6.22 0.04 1.96 +soufflette souffleter VER 0.02 2.09 0.02 0.14 imp:pre:2s;ind:pre:3s; +soufflettent souffleter VER 0.02 2.09 0.00 0.14 ind:pre:3p; +soufflettes souffleter VER 0.02 2.09 0.00 0.07 ind:pre:2s; +souffleté souffleter VER m s 0.02 2.09 0.00 0.47 par:pas; +souffletée souffleter VER f s 0.02 2.09 0.00 0.20 par:pas; +souffletés souffleter VER m p 0.02 2.09 0.00 0.27 par:pas; +souffleur souffleur NOM m s 1.35 1.22 0.92 1.01 +souffleurs souffleur NOM m p 1.35 1.22 0.32 0.20 +souffleuse souffleur NOM f s 1.35 1.22 0.11 0.00 +soufflez souffler VER 28.33 83.65 2.60 0.07 imp:pre:2p;ind:pre:2p; +soufflons souffler VER 28.33 83.65 0.26 0.34 imp:pre:1p;ind:pre:1p; +soufflât souffler VER 28.33 83.65 0.00 0.20 sub:imp:3s; +soufflèrent souffler VER 28.33 83.65 0.00 0.47 ind:pas:3p; +soufflé souffler VER m s 28.33 83.65 3.40 7.64 par:pas; +soufflée souffler VER f s 28.33 83.65 0.43 0.95 par:pas; +soufflées souffler VER f p 28.33 83.65 0.11 0.54 par:pas; +soufflure soufflure NOM f s 0.00 0.20 0.00 0.14 +soufflures soufflure NOM f p 0.00 0.20 0.00 0.07 +soufflés soufflé NOM m p 1.33 1.22 0.47 0.00 +souffrît souffrir VER 113.83 119.26 0.00 0.74 sub:imp:3s; +souffraient souffrir VER 113.83 119.26 0.25 2.43 ind:imp:3p; +souffrais souffrir VER 113.83 119.26 0.86 4.26 ind:imp:1s;ind:imp:2s; +souffrait souffrir VER 113.83 119.26 4.14 18.18 ind:imp:3s; +souffrance souffrance NOM f s 30.02 47.16 20.05 33.58 +souffrances souffrance NOM f p 30.02 47.16 9.97 13.58 +souffrant souffrant ADJ m s 6.47 5.14 2.88 1.96 +souffrante souffrant ADJ f s 6.47 5.14 3.12 2.84 +souffrantes souffrant ADJ f p 6.47 5.14 0.03 0.00 +souffrants souffrant ADJ m p 6.47 5.14 0.44 0.34 +souffre_douleur souffre_douleur NOM m 0.27 1.22 0.27 1.22 +souffre souffrir VER 113.83 119.26 31.52 16.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +souffrent souffrir VER 113.83 119.26 5.25 4.86 ind:pre:3p; +souffres souffrir VER 113.83 119.26 5.27 1.15 ind:pre:2s; +souffreteuse souffreteux ADJ f s 0.24 2.50 0.22 0.68 +souffreteuses souffreteux ADJ f p 0.24 2.50 0.00 0.14 +souffreteux souffreteux ADJ m 0.24 2.50 0.02 1.69 +souffrez souffrir VER 113.83 119.26 4.97 1.01 imp:pre:2p;ind:pre:2p; +souffriez souffrir VER 113.83 119.26 0.37 0.07 ind:imp:2p; +souffrions souffrir VER 113.83 119.26 0.12 0.20 ind:imp:1p; +souffrir souffrir VER 113.83 119.26 34.26 40.41 inf; +souffrira souffrir VER 113.83 119.26 1.77 0.74 ind:fut:3s; +souffrirai souffrir VER 113.83 119.26 0.79 0.47 ind:fut:1s; +souffriraient souffrir VER 113.83 119.26 0.04 0.14 cnd:pre:3p; +souffrirais souffrir VER 113.83 119.26 0.41 0.68 cnd:pre:1s;cnd:pre:2s; +souffrirait souffrir VER 113.83 119.26 0.34 1.42 cnd:pre:3s; +souffriras souffrir VER 113.83 119.26 1.56 0.41 ind:fut:2s; +souffrirent souffrir VER 113.83 119.26 0.04 0.61 ind:pas:3p; +souffrirez souffrir VER 113.83 119.26 0.25 0.14 ind:fut:2p; +souffririez souffrir VER 113.83 119.26 0.03 0.07 cnd:pre:2p; +souffririons souffrir VER 113.83 119.26 0.00 0.14 cnd:pre:1p; +souffrirons souffrir VER 113.83 119.26 0.44 0.07 ind:fut:1p; +souffriront souffrir VER 113.83 119.26 0.27 0.07 ind:fut:3p; +souffris souffrir VER 113.83 119.26 0.03 0.68 ind:pas:1s;ind:pas:2s; +souffrisse souffrir VER 113.83 119.26 0.00 0.14 sub:imp:1s; +souffrissent souffrir VER 113.83 119.26 0.00 0.14 sub:imp:3p; +souffrit souffrir VER 113.83 119.26 0.29 1.49 ind:pas:3s; +souffrons souffrir VER 113.83 119.26 1.06 0.74 imp:pre:1p;ind:pre:1p; +soufi soufi ADJ m s 0.02 0.07 0.02 0.00 +soufis soufi NOM m p 0.44 0.00 0.44 0.00 +soufrages soufrage NOM m p 0.00 0.07 0.00 0.07 +soufre soufre NOM m s 2.37 4.53 2.37 4.53 +soufré soufré ADJ m s 0.01 0.47 0.01 0.07 +soufrée soufré ADJ f s 0.01 0.47 0.00 0.20 +soufrées soufré ADJ f p 0.01 0.47 0.00 0.14 +soufrés soufré ADJ m p 0.01 0.47 0.00 0.07 +souhait souhait NOM m s 10.41 8.65 5.69 6.22 +souhaita souhaiter VER 85.59 82.16 0.16 2.84 ind:pas:3s; +souhaitable souhaitable ADJ s 1.40 3.72 1.23 3.24 +souhaitables souhaitable ADJ p 1.40 3.72 0.17 0.47 +souhaitai souhaiter VER 85.59 82.16 0.02 0.74 ind:pas:1s; +souhaitaient souhaiter VER 85.59 82.16 0.63 2.03 ind:imp:3p; +souhaitais souhaiter VER 85.59 82.16 1.72 6.76 ind:imp:1s;ind:imp:2s; +souhaitait souhaiter VER 85.59 82.16 1.96 13.72 ind:imp:3s; +souhaitant souhaiter VER 85.59 82.16 0.72 2.84 par:pre; +souhaite souhaiter VER 85.59 82.16 39.98 17.30 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +souhaitent souhaiter VER 85.59 82.16 2.87 0.95 ind:pre:3p; +souhaiter souhaiter VER 85.59 82.16 8.87 10.41 inf;; +souhaitera souhaiter VER 85.59 82.16 0.10 0.14 ind:fut:3s; +souhaiterai souhaiter VER 85.59 82.16 0.40 0.00 ind:fut:1s; +souhaiteraient souhaiter VER 85.59 82.16 0.27 0.14 cnd:pre:3p; +souhaiterais souhaiter VER 85.59 82.16 3.11 1.55 cnd:pre:1s;cnd:pre:2s; +souhaiterait souhaiter VER 85.59 82.16 1.49 1.28 cnd:pre:3s; +souhaiteras souhaiter VER 85.59 82.16 0.11 0.00 ind:fut:2s; +souhaiterez souhaiter VER 85.59 82.16 0.22 0.20 ind:fut:2p; +souhaiteriez souhaiter VER 85.59 82.16 0.57 0.14 cnd:pre:2p; +souhaiterions souhaiter VER 85.59 82.16 0.34 0.07 cnd:pre:1p; +souhaiterons souhaiter VER 85.59 82.16 0.16 0.00 ind:fut:1p; +souhaiteront souhaiter VER 85.59 82.16 0.00 0.14 ind:fut:3p; +souhaites souhaiter VER 85.59 82.16 3.14 0.81 ind:pre:2s; +souhaitez souhaiter VER 85.59 82.16 7.19 1.55 imp:pre:2p;ind:pre:2p; +souhaitiez souhaiter VER 85.59 82.16 0.85 0.47 ind:imp:2p;sub:pre:2p; +souhaitions souhaiter VER 85.59 82.16 0.10 0.74 ind:imp:1p; +souhaitâmes souhaiter VER 85.59 82.16 0.00 0.14 ind:pas:1p; +souhaitons souhaiter VER 85.59 82.16 4.28 1.96 imp:pre:1p;ind:pre:1p; +souhaitât souhaiter VER 85.59 82.16 0.00 0.20 sub:imp:3s; +souhaits souhait NOM m p 10.41 8.65 4.72 2.43 +souhaitèrent souhaiter VER 85.59 82.16 0.02 0.27 ind:pas:3p; +souhaité souhaiter VER m s 85.59 82.16 5.91 12.50 par:pas; +souhaitée souhaiter VER f s 85.59 82.16 0.07 1.55 par:pas; +souhaitées souhaiter VER f p 85.59 82.16 0.04 0.27 par:pas; +souhaités souhaiter VER m p 85.59 82.16 0.31 0.47 par:pas; +souilla souiller VER 6.52 15.81 0.10 0.07 ind:pas:3s; +souillage souillage NOM m s 0.00 0.07 0.00 0.07 +souillaient souiller VER 6.52 15.81 0.01 0.20 ind:imp:3p; +souillait souiller VER 6.52 15.81 0.02 1.01 ind:imp:3s; +souillant souiller VER 6.52 15.81 0.04 0.20 par:pre; +souillarde souillard NOM f s 0.00 2.03 0.00 2.03 +souille souiller VER 6.52 15.81 0.38 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +souillent souiller VER 6.52 15.81 0.07 0.54 ind:pre:3p; +souiller souiller VER 6.52 15.81 1.57 1.62 inf; +souillerai souiller VER 6.52 15.81 0.05 0.07 ind:fut:1s; +souilleraient souiller VER 6.52 15.81 0.01 0.00 cnd:pre:3p; +souillerait souiller VER 6.52 15.81 0.03 0.07 cnd:pre:3s; +souilleras souiller VER 6.52 15.81 0.16 0.00 ind:fut:2s; +souilleront souiller VER 6.52 15.81 0.00 0.07 ind:fut:3p; +souilles souiller VER 6.52 15.81 0.02 0.00 ind:pre:2s; +souillez souiller VER 6.52 15.81 0.16 0.00 imp:pre:2p;ind:pre:2p; +souillon souillon NOM s 0.99 1.08 0.82 0.88 +souillonnes souillonner VER 0.00 0.07 0.00 0.07 ind:pre:2s; +souillons souillon NOM p 0.99 1.08 0.17 0.20 +souillé souiller VER m s 6.52 15.81 2.29 4.19 par:pas; +souillée souiller VER f s 6.52 15.81 1.10 3.45 par:pas; +souillées souiller VER f p 6.52 15.81 0.06 1.76 par:pas; +souillure souillure NOM f s 0.79 2.91 0.45 1.49 +souillures souillure NOM f p 0.79 2.91 0.35 1.42 +souillés souiller VER m p 6.52 15.81 0.45 1.76 par:pas; +souk souk NOM m s 0.81 2.64 0.81 1.49 +souks souk NOM m p 0.81 2.64 0.00 1.15 +soul soul NOM f s 1.71 0.20 1.71 0.20 +soulage soulager VER 21.57 29.12 4.10 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +soulagea soulager VER 21.57 29.12 0.01 0.68 ind:pas:3s; +soulageai soulager VER 21.57 29.12 0.00 0.14 ind:pas:1s; +soulageaient soulager VER 21.57 29.12 0.03 0.14 ind:imp:3p; +soulageait soulager VER 21.57 29.12 0.17 1.28 ind:imp:3s; +soulageant soulager VER 21.57 29.12 0.11 0.20 par:pre; +soulagement soulagement NOM m s 4.94 21.22 4.84 21.22 +soulagements soulagement NOM m p 4.94 21.22 0.10 0.00 +soulagent soulager VER 21.57 29.12 0.34 0.34 ind:pre:3p; +soulageâmes soulager VER 21.57 29.12 0.00 0.07 ind:pas:1p; +soulageons soulager VER 21.57 29.12 0.01 0.07 ind:pre:1p; +soulager soulager VER 21.57 29.12 6.62 6.49 inf; +soulagera soulager VER 21.57 29.12 0.59 0.41 ind:fut:3s; +soulagerai soulager VER 21.57 29.12 0.06 0.00 ind:fut:1s; +soulageraient soulager VER 21.57 29.12 0.00 0.07 cnd:pre:3p; +soulagerait soulager VER 21.57 29.12 0.78 0.54 cnd:pre:3s; +soulagerez soulager VER 21.57 29.12 0.15 0.00 ind:fut:2p; +soulages soulager VER 21.57 29.12 0.24 0.00 ind:pre:2s; +soulagez soulager VER 21.57 29.12 0.15 0.00 imp:pre:2p;ind:pre:2p; +soulagèrent soulager VER 21.57 29.12 0.00 0.20 ind:pas:3p; +soulagé soulager VER m s 21.57 29.12 4.67 10.00 par:pas; +soulagée soulager VER f s 21.57 29.12 2.98 4.53 par:pas; +soulagées soulager VER f p 21.57 29.12 0.04 0.14 par:pas; +soulagés soulager VER m p 21.57 29.12 0.53 1.22 par:pas; +soule soule ADJ m s 0.30 0.00 0.30 0.00 +souleva soulever VER 24.26 113.38 0.60 19.39 ind:pas:3s; +soulevai soulever VER 24.26 113.38 0.00 1.15 ind:pas:1s; +soulevaient soulever VER 24.26 113.38 0.23 4.80 ind:imp:3p; +soulevais soulever VER 24.26 113.38 0.10 0.34 ind:imp:1s;ind:imp:2s; +soulevait soulever VER 24.26 113.38 0.26 14.80 ind:imp:3s; +soulevant soulever VER 24.26 113.38 0.50 10.20 par:pre; +soulever soulever VER 24.26 113.38 5.92 17.16 inf; +soulevez soulever VER 24.26 113.38 2.44 0.54 imp:pre:2p;ind:pre:2p; +soulevions soulever VER 24.26 113.38 0.00 0.07 ind:imp:1p; +soulevons soulever VER 24.26 113.38 0.35 0.14 imp:pre:1p;ind:pre:1p; +soulevât soulever VER 24.26 113.38 0.00 0.14 sub:imp:3s; +soulevèrent soulever VER 24.26 113.38 0.02 1.96 ind:pas:3p; +soulevé soulever VER m s 24.26 113.38 3.04 11.08 par:pas; +soulevée soulever VER f s 24.26 113.38 0.56 5.54 par:pas; +soulevées soulever VER f p 24.26 113.38 0.02 1.08 par:pas; +soulevés soulever VER m p 24.26 113.38 0.54 2.16 par:pas; +soulier soulier NOM m s 9.76 35.68 2.53 4.80 +souliers soulier NOM m p 9.76 35.68 7.23 30.88 +souligna souligner VER 4.72 22.57 0.00 0.95 ind:pas:3s; +soulignai souligner VER 4.72 22.57 0.00 0.41 ind:pas:1s; +soulignaient souligner VER 4.72 22.57 0.10 1.28 ind:imp:3p; +soulignais souligner VER 4.72 22.57 0.00 0.20 ind:imp:1s; +soulignait souligner VER 4.72 22.57 0.04 2.84 ind:imp:3s; +soulignant souligner VER 4.72 22.57 0.27 2.30 par:pre; +souligne souligner VER 4.72 22.57 0.73 2.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soulignent souligner VER 4.72 22.57 0.14 0.74 ind:pre:3p; +souligner souligner VER 4.72 22.57 1.65 4.86 inf; +soulignera souligner VER 4.72 22.57 0.00 0.07 ind:fut:3s; +souligneraient souligner VER 4.72 22.57 0.00 0.07 cnd:pre:3p; +soulignerait souligner VER 4.72 22.57 0.00 0.07 cnd:pre:3s; +soulignez souligner VER 4.72 22.57 0.04 0.07 imp:pre:2p; +souligniez souligner VER 4.72 22.57 0.01 0.00 ind:imp:2p; +soulignions souligner VER 4.72 22.57 0.00 0.07 ind:imp:1p; +souligné souligner VER m s 4.72 22.57 1.41 2.91 par:pas; +soulignée souligner VER f s 4.72 22.57 0.01 1.08 par:pas; +soulignées souligner VER f p 4.72 22.57 0.02 0.81 par:pas; +soulignés souligner VER m p 4.72 22.57 0.29 1.22 par:pas; +soulève soulever VER 24.26 113.38 7.72 17.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soulèvement soulèvement NOM m s 1.04 2.36 0.77 2.23 +soulèvements soulèvement NOM m p 1.04 2.36 0.28 0.14 +soulèvent soulever VER 24.26 113.38 0.47 4.26 ind:pre:3p; +soulèvera soulever VER 24.26 113.38 0.22 0.20 ind:fut:3s; +soulèverai soulever VER 24.26 113.38 0.27 0.14 ind:fut:1s; +soulèveraient soulever VER 24.26 113.38 0.00 0.27 cnd:pre:3p; +soulèverais soulever VER 24.26 113.38 0.03 0.07 cnd:pre:1s; +soulèverait soulever VER 24.26 113.38 0.04 0.34 cnd:pre:3s; +soulèverez soulever VER 24.26 113.38 0.01 0.00 ind:fut:2p; +soulèveriez soulever VER 24.26 113.38 0.01 0.00 cnd:pre:2p; +soulèverons soulever VER 24.26 113.38 0.04 0.00 ind:fut:1p; +soulèveront soulever VER 24.26 113.38 0.28 0.00 ind:fut:3p; +soulèves soulever VER 24.26 113.38 0.57 0.07 ind:pre:2s; +soumît soumettre VER 17.51 37.57 0.00 0.07 sub:imp:3s; +soumet soumettre VER 17.51 37.57 0.88 1.49 ind:pre:3s; +soumets soumettre VER 17.51 37.57 1.89 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s; +soumettaient soumettre VER 17.51 37.57 0.00 0.41 ind:imp:3p; +soumettais soumettre VER 17.51 37.57 0.01 0.41 ind:imp:1s; +soumettait soumettre VER 17.51 37.57 0.00 1.96 ind:imp:3s; +soumettant soumettre VER 17.51 37.57 0.07 0.34 par:pre; +soumette soumettre VER 17.51 37.57 0.23 0.41 sub:pre:1s;sub:pre:3s; +soumettent soumettre VER 17.51 37.57 0.06 0.54 ind:pre:3p; +soumettez soumettre VER 17.51 37.57 0.25 0.20 imp:pre:2p;ind:pre:2p; +soumettions soumettre VER 17.51 37.57 0.01 0.14 ind:imp:1p; +soumettons soumettre VER 17.51 37.57 0.12 0.00 imp:pre:1p;ind:pre:1p; +soumettra soumettre VER 17.51 37.57 0.27 0.20 ind:fut:3s; +soumettrai soumettre VER 17.51 37.57 0.47 0.14 ind:fut:1s; +soumettraient soumettre VER 17.51 37.57 0.00 0.07 cnd:pre:3p; +soumettrais soumettre VER 17.51 37.57 0.02 0.20 cnd:pre:1s; +soumettrait soumettre VER 17.51 37.57 0.01 0.20 cnd:pre:3s; +soumettras soumettre VER 17.51 37.57 0.03 0.00 ind:fut:2s; +soumettre soumettre VER 17.51 37.57 5.84 9.26 inf; +soumettrez soumettre VER 17.51 37.57 0.05 0.07 ind:fut:2p; +soumettront soumettre VER 17.51 37.57 0.04 0.07 ind:fut:3p; +soumirent soumettre VER 17.51 37.57 0.21 0.20 ind:pas:3p; +soumis soumettre VER m 17.51 37.57 5.22 13.65 ind:pas:1s;par:pas;par:pas; +soumise soumettre VER f s 17.51 37.57 1.21 3.78 par:pas; +soumises soumettre VER f p 17.51 37.57 0.58 1.69 par:pas; +soumission soumission NOM f s 1.63 10.95 1.63 10.27 +soumissionner soumissionner VER 0.01 0.00 0.01 0.00 inf; +soumissions soumission NOM f p 1.63 10.95 0.00 0.68 +soumit soumettre VER 17.51 37.57 0.02 1.55 ind:pas:3s; +soupa souper VER 8.81 6.96 0.00 0.20 ind:pas:3s; +soupaient souper VER 8.81 6.96 0.00 0.20 ind:imp:3p; +soupais souper VER 8.81 6.96 0.11 0.14 ind:imp:1s; +soupait souper VER 8.81 6.96 0.23 0.20 ind:imp:3s; +soupant souper VER 8.81 6.96 0.00 0.14 par:pre; +soupape soupape NOM f s 0.92 1.28 0.39 0.61 +soupapes soupape NOM f p 0.92 1.28 0.54 0.68 +soupasse souper VER 8.81 6.96 0.10 0.07 sub:imp:1s; +soupe soupe NOM f s 32.26 38.04 31.72 35.74 +soupent souper VER 8.81 6.96 0.00 0.07 ind:pre:3p; +soupente soupente NOM f s 0.19 3.11 0.19 2.70 +soupentes soupente NOM f p 0.19 3.11 0.00 0.41 +souper souper NOM m s 6.48 7.70 6.39 6.82 +soupera souper VER 8.81 6.96 0.03 0.20 ind:fut:3s; +souperaient souper VER 8.81 6.96 0.00 0.07 cnd:pre:3p; +souperait souper VER 8.81 6.96 0.00 0.07 cnd:pre:3s; +souperons souper VER 8.81 6.96 0.04 0.07 ind:fut:1p; +soupers souper NOM m p 6.48 7.70 0.09 0.88 +soupes soupe NOM f p 32.26 38.04 0.54 2.30 +soupesa soupeser VER 0.34 5.14 0.00 0.81 ind:pas:3s; +soupesait soupeser VER 0.34 5.14 0.00 0.88 ind:imp:3s; +soupesant soupeser VER 0.34 5.14 0.02 0.34 par:pre; +soupeser soupeser VER 0.34 5.14 0.05 1.55 inf; +soupesez soupeser VER 0.34 5.14 0.06 0.07 imp:pre:2p;ind:pre:2p; +soupesé soupeser VER m s 0.34 5.14 0.02 0.07 par:pas; +soupesée soupeser VER f s 0.34 5.14 0.00 0.14 par:pas; +soupesés soupeser VER m p 0.34 5.14 0.00 0.07 par:pas; +soupeur soupeur NOM m s 0.00 0.20 0.00 0.07 +soupeurs soupeur NOM m p 0.00 0.20 0.00 0.14 +soupez souper VER 8.81 6.96 0.06 0.00 imp:pre:2p;ind:pre:2p; +soupier soupier ADJ m s 0.00 2.57 0.00 2.57 +soupir soupir NOM m s 7.85 35.95 4.75 26.82 +soupira soupirer VER 9.81 65.47 0.03 30.74 ind:pas:3s; +soupirai soupirer VER 9.81 65.47 0.00 1.15 ind:pas:1s; +soupiraient soupirer VER 9.81 65.47 0.00 0.41 ind:imp:3p; +soupirail soupirail NOM m s 0.16 3.24 0.16 2.84 +soupirais soupirer VER 9.81 65.47 0.01 0.47 ind:imp:1s;ind:imp:2s; +soupirait soupirer VER 9.81 65.47 0.13 6.96 ind:imp:3s; +soupirant soupirant NOM m s 0.96 2.23 0.61 1.55 +soupirants soupirant NOM m p 0.96 2.23 0.35 0.68 +soupiraux soupirail NOM m p 0.16 3.24 0.00 0.41 +soupire soupirer VER 9.81 65.47 6.71 10.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupirent soupirer VER 9.81 65.47 0.19 0.27 ind:pre:3p; +soupirer soupirer VER 9.81 65.47 0.99 2.91 inf; +soupirerait soupirer VER 9.81 65.47 0.00 0.07 cnd:pre:3s; +soupires soupirer VER 9.81 65.47 0.36 0.34 ind:pre:2s; +soupirez soupirer VER 9.81 65.47 0.38 0.20 imp:pre:2p;ind:pre:2p; +soupirions soupirer VER 9.81 65.47 0.00 0.07 ind:imp:1p; +soupirons soupirer VER 9.81 65.47 0.00 0.14 ind:pre:1p; +soupirât soupirer VER 9.81 65.47 0.00 0.20 sub:imp:3s; +soupirs soupir NOM m p 7.85 35.95 3.10 9.12 +soupirèrent soupirer VER 9.81 65.47 0.00 0.20 ind:pas:3p; +soupiré soupirer VER m s 9.81 65.47 0.69 5.47 par:pas; +soupière soupière NOM f s 0.10 2.43 0.07 2.23 +soupières soupière NOM f p 0.10 2.43 0.02 0.20 +souple souple ADJ s 4.22 27.23 3.21 20.00 +souplement souplement ADV 0.00 1.55 0.00 1.55 +souples souple ADJ p 4.22 27.23 1.02 7.23 +souplesse souplesse NOM f s 1.28 9.86 1.28 9.73 +souplesses souplesse NOM f p 1.28 9.86 0.00 0.14 +soupâmes souper VER 8.81 6.96 0.00 0.07 ind:pas:1p; +soupons souper VER 8.81 6.96 0.13 0.14 imp:pre:1p;ind:pre:1p; +soupçon soupçon NOM m s 15.53 23.58 5.75 15.61 +soupçonna soupçonner VER 19.88 34.59 0.04 0.54 ind:pas:3s; +soupçonnable soupçonnable ADJ s 0.00 0.07 0.00 0.07 +soupçonnai soupçonner VER 19.88 34.59 0.00 0.27 ind:pas:1s; +soupçonnaient soupçonner VER 19.88 34.59 0.34 1.08 ind:imp:3p; +soupçonnais soupçonner VER 19.88 34.59 0.83 3.11 ind:imp:1s;ind:imp:2s; +soupçonnait soupçonner VER 19.88 34.59 0.65 5.14 ind:imp:3s; +soupçonnant soupçonner VER 19.88 34.59 0.12 0.74 par:pre; +soupçonne soupçonner VER 19.88 34.59 6.25 6.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupçonnent soupçonner VER 19.88 34.59 0.79 0.61 ind:pre:3p; +soupçonner soupçonner VER 19.88 34.59 2.82 7.84 inf; +soupçonnera soupçonner VER 19.88 34.59 0.58 0.14 ind:fut:3s; +soupçonnerais soupçonner VER 19.88 34.59 0.04 0.14 cnd:pre:1s;cnd:pre:2s; +soupçonnerait soupçonner VER 19.88 34.59 0.32 0.41 cnd:pre:3s; +soupçonneriez soupçonner VER 19.88 34.59 0.01 0.07 cnd:pre:2p; +soupçonneront soupçonner VER 19.88 34.59 0.19 0.07 ind:fut:3p; +soupçonnes soupçonner VER 19.88 34.59 0.48 0.34 ind:pre:2s; +soupçonneuse soupçonneux ADJ f s 1.25 6.22 0.30 1.08 +soupçonneuses soupçonneux ADJ f p 1.25 6.22 0.00 0.20 +soupçonneux soupçonneux ADJ m 1.25 6.22 0.95 4.93 +soupçonnez soupçonner VER 19.88 34.59 1.32 0.20 imp:pre:2p;ind:pre:2p; +soupçonniez soupçonner VER 19.88 34.59 0.41 0.20 ind:imp:2p; +soupçonnions soupçonner VER 19.88 34.59 0.16 0.14 ind:imp:1p; +soupçonnons soupçonner VER 19.88 34.59 0.15 0.27 ind:pre:1p; +soupçonnât soupçonner VER 19.88 34.59 0.00 0.20 sub:imp:3s; +soupçonnèrent soupçonner VER 19.88 34.59 0.01 0.14 ind:pas:3p; +soupçonné soupçonner VER m s 19.88 34.59 3.49 4.86 par:pas; +soupçonnée soupçonner VER f s 19.88 34.59 0.64 1.28 par:pas; +soupçonnées soupçonner VER f p 19.88 34.59 0.03 0.27 par:pas; +soupçonnés soupçonner VER m p 19.88 34.59 0.22 0.47 par:pas; +soupçons soupçon NOM m p 15.53 23.58 9.78 7.97 +soupèrent souper VER 8.81 6.96 0.01 0.20 ind:pas:3p; +soupèse soupeser VER 0.34 5.14 0.19 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +soupèserait soupeser VER 0.34 5.14 0.00 0.07 cnd:pre:3s; +soupé souper VER m s 8.81 6.96 1.73 0.95 par:pas; +souquaient souquer VER 0.43 0.20 0.00 0.07 ind:imp:3p; +souque souquer VER 0.43 0.20 0.01 0.07 imp:pre:2s;ind:pre:3s; +souquenille souquenille NOM f s 0.00 0.41 0.00 0.27 +souquenilles souquenille NOM f p 0.00 0.41 0.00 0.14 +souquer souquer VER 0.43 0.20 0.01 0.00 inf; +souquez souquer VER 0.43 0.20 0.40 0.00 imp:pre:2p; +souqué souquer VER m s 0.43 0.20 0.01 0.07 par:pas; +sourîmes sourire VER 53.97 262.91 0.00 0.07 ind:pas:1p; +sourît sourire VER 53.97 262.91 0.00 0.20 sub:imp:3s; +sourate sourate NOM f s 0.14 0.20 0.14 0.14 +sourates sourate NOM f p 0.14 0.20 0.00 0.07 +source source NOM f s 46.44 49.19 37.34 35.41 +sources source NOM f p 46.44 49.19 9.11 13.78 +sourcier sourcier NOM m s 0.40 0.81 0.40 0.74 +sourciers sourcier NOM m p 0.40 0.81 0.00 0.07 +sourcil sourcil NOM m s 5.85 47.64 1.42 8.65 +sourcilière sourcilier ADJ f s 0.20 1.62 0.20 0.95 +sourcilières sourcilier ADJ f p 0.20 1.62 0.00 0.68 +sourcilla sourciller VER 0.61 2.09 0.00 0.34 ind:pas:3s; +sourcillai sourciller VER 0.61 2.09 0.00 0.07 ind:pas:1s; +sourcille sourciller VER 0.61 2.09 0.00 0.07 ind:pre:3s; +sourciller sourciller VER 0.61 2.09 0.54 1.49 inf; +sourcilleuse sourcilleux ADJ f s 0.01 1.96 0.00 0.61 +sourcilleuses sourcilleux ADJ f p 0.01 1.96 0.00 0.20 +sourcilleux sourcilleux ADJ m 0.01 1.96 0.01 1.15 +sourcillé sourciller VER m s 0.61 2.09 0.07 0.14 par:pas; +sourcils sourcil NOM m p 5.85 47.64 4.43 38.99 +sourd_muet sourd_muet ADJ m s 0.78 0.20 0.77 0.20 +sourd sourd ADJ m s 25.69 50.68 16.96 19.73 +sourdaient sourdaient VER 0.00 0.20 0.00 0.20 inf; +sourdait sourdait VER 0.00 1.08 0.00 1.08 inf; +sourdant sourdre VER 0.42 5.47 0.00 0.20 par:pre; +sourde_muette sourde_muette NOM f s 0.24 0.07 0.24 0.07 +sourde sourd ADJ f s 25.69 50.68 5.58 21.76 +sourdement sourdement ADV 0.00 6.55 0.00 6.55 +sourdes sourd ADJ f p 25.69 50.68 0.48 2.91 +sourdine sourdine NOM f s 0.73 6.49 0.73 6.49 +sourdingue sourdingue ADJ s 0.10 1.42 0.10 1.28 +sourdingues sourdingue ADJ m p 0.10 1.42 0.00 0.14 +sourdre sourdre VER 0.42 5.47 0.00 3.45 inf; +sourdront sourdre VER 0.42 5.47 0.00 0.07 ind:fut:3p; +sourd_muet sourd_muet NOM m p 1.48 1.01 0.88 0.68 +sourds sourd ADJ m p 25.69 50.68 2.66 6.28 +souri sourire VER m s 53.97 262.91 3.19 12.97 par:pas; +souriaient sourire VER 53.97 262.91 0.39 5.34 ind:imp:3p; +souriais sourire VER 53.97 262.91 0.67 3.31 ind:imp:1s;ind:imp:2s; +souriait sourire VER 53.97 262.91 2.00 44.26 ind:imp:3s; +souriant souriant ADJ m s 4.02 23.45 2.22 9.46 +souriante souriant ADJ f s 4.02 23.45 1.07 10.95 +souriantes souriant ADJ f p 4.02 23.45 0.25 1.28 +souriants souriant ADJ m p 4.02 23.45 0.47 1.76 +souriceau souriceau NOM m s 0.35 0.41 0.35 0.34 +souriceaux souriceau NOM m p 0.35 0.41 0.00 0.07 +souricière souricière NOM f s 0.27 0.34 0.23 0.34 +souricières souricière NOM f p 0.27 0.34 0.04 0.00 +sourie sourire VER 53.97 262.91 0.50 0.14 sub:pre:1s;sub:pre:3s; +sourient sourire VER 53.97 262.91 1.49 3.38 ind:pre:3p; +souries sourire VER 53.97 262.91 0.09 0.00 sub:pre:2s; +souriez sourire VER 53.97 262.91 10.00 0.88 imp:pre:2p;ind:pre:2p; +souriions sourire VER 53.97 262.91 0.00 0.20 ind:imp:1p; +sourions sourire VER 53.97 262.91 0.08 0.34 imp:pre:1p;ind:pre:1p; +sourira sourire VER 53.97 262.91 0.46 0.41 ind:fut:3s; +sourirai sourire VER 53.97 262.91 0.35 0.07 ind:fut:1s; +souriraient sourire VER 53.97 262.91 0.01 0.14 cnd:pre:3p; +sourirais sourire VER 53.97 262.91 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +sourirait sourire VER 53.97 262.91 0.04 0.88 cnd:pre:3s; +souriras sourire VER 53.97 262.91 0.20 0.00 ind:fut:2s; +sourire sourire NOM m s 36.08 215.34 33.79 196.55 +sourirent sourire VER 53.97 262.91 0.00 2.03 ind:pas:3p; +sourires sourire NOM m p 36.08 215.34 2.29 18.78 +sourirons sourire VER 53.97 262.91 0.02 0.00 ind:fut:1p; +souriront sourire VER 53.97 262.91 0.02 0.00 ind:fut:3p; +souris souris NOM 21.94 22.57 21.94 22.57 +sourit sourire VER 53.97 262.91 11.70 95.74 ind:pre:3s;ind:pas:3s; +sournois sournois ADJ m 2.64 16.89 1.87 8.92 +sournoise sournois ADJ f s 2.64 16.89 0.72 6.28 +sournoisement sournoisement ADV 0.12 4.80 0.12 4.80 +sournoiserie sournoiserie NOM f s 0.04 0.95 0.04 0.61 +sournoiseries sournoiserie NOM f p 0.04 0.95 0.00 0.34 +sournoises sournois ADJ f p 2.64 16.89 0.04 1.69 +sous_alimentation sous_alimentation NOM f s 0.03 0.27 0.03 0.27 +sous_alimenter sous_alimenter VER m s 0.04 0.00 0.02 0.00 par:pas; +sous_alimenté sous_alimenté ADJ f s 0.04 0.20 0.04 0.07 +sous_alimenté sous_alimenté NOM m p 0.01 0.27 0.01 0.14 +sous_bibliothécaire sous_bibliothécaire NOM s 0.00 0.47 0.00 0.47 +sous_bois sous_bois NOM m 0.49 7.57 0.49 7.57 +sous_chef sous_chef NOM m s 0.73 0.88 0.69 0.74 +sous_chef sous_chef NOM m p 0.73 0.88 0.04 0.14 +sous_classe sous_classe NOM f s 0.01 0.00 0.01 0.00 +sous_clavier sous_clavier ADJ f s 0.28 0.00 0.28 0.00 +sous_comité sous_comité NOM m s 0.26 0.07 0.26 0.07 +sous_commission sous_commission NOM f s 0.18 0.07 0.18 0.07 +sous_continent sous_continent NOM m s 0.06 0.07 0.05 0.07 +sous_continent sous_continent NOM m p 0.06 0.07 0.01 0.00 +sous_couche sous_couche NOM f s 0.03 0.00 0.03 0.00 +sous_cul sous_cul NOM m s 0.00 0.07 0.00 0.07 +sous_cutané sous_cutané ADJ m s 0.28 0.07 0.10 0.00 +sous_cutané sous_cutané ADJ f s 0.28 0.07 0.10 0.00 +sous_cutané sous_cutané ADJ f p 0.28 0.07 0.05 0.07 +sous_cutané sous_cutané ADJ m p 0.28 0.07 0.03 0.00 +sous_diacre sous_diacre NOM m s 0.00 0.07 0.00 0.07 +sous_directeur sous_directeur NOM m s 0.66 1.96 0.63 1.82 +sous_directeur sous_directeur NOM m p 0.66 1.96 0.00 0.07 +sous_directeur sous_directeur NOM f s 0.66 1.96 0.03 0.07 +sous_division sous_division NOM f s 0.04 0.00 0.04 0.00 +sous_dominante sous_dominante NOM f s 0.01 0.07 0.01 0.07 +sous_développement sous_développement NOM m s 0.30 0.27 0.30 0.27 +sous_développé sous_développé ADJ m s 0.31 0.68 0.09 0.27 +sous_développé sous_développé ADJ f s 0.31 0.68 0.02 0.00 +sous_développé sous_développé ADJ f p 0.31 0.68 0.02 0.07 +sous_développé sous_développé ADJ m p 0.31 0.68 0.19 0.34 +sous_effectif sous_effectif NOM m s 0.11 0.00 0.10 0.00 +sous_effectif sous_effectif NOM m p 0.11 0.00 0.01 0.00 +sous_emploi sous_emploi NOM m s 0.00 0.07 0.00 0.07 +sous_ensemble sous_ensemble NOM m s 0.08 0.14 0.08 0.14 +sous_entendre sous_entendre VER 2.03 1.82 0.39 0.20 ind:pre:3s; +sous_entendre sous_entendre VER 2.03 1.82 0.17 0.00 ind:imp:1s; +sous_entendre sous_entendre VER 2.03 1.82 0.03 0.54 ind:imp:3s; +sous_entendre sous_entendre VER 2.03 1.82 0.01 0.47 par:pre; +sous_entendre sous_entendre VER 2.03 1.82 0.01 0.00 ind:pre:3p; +sous_entendre sous_entendre VER 2.03 1.82 0.42 0.00 ind:pre:2p; +sous_entendre sous_entendre VER 2.03 1.82 0.10 0.00 ind:imp:2p; +sous_entendre sous_entendre VER 2.03 1.82 0.01 0.00 cnd:pre:3s; +sous_entendre sous_entendre VER 2.03 1.82 0.11 0.27 inf; +sous_entendre sous_entendre VER 2.03 1.82 0.39 0.00 ind:pre:1s;ind:pre:2s; +sous_entendre sous_entendre VER m s 2.03 1.82 0.38 0.14 par:pas; +sous_entendu sous_entendu ADJ f s 0.06 0.68 0.01 0.07 +sous_entendu sous_entendu NOM m p 0.77 5.34 0.45 3.38 +sous_espace sous_espace NOM m s 0.22 0.00 0.22 0.00 +sous_espèce sous_espèce NOM f s 0.11 0.00 0.11 0.00 +sous_estimer sous_estimer VER 7.27 1.08 0.05 0.00 ind:imp:1s; +sous_estimer sous_estimer VER 7.27 1.08 0.03 0.34 ind:imp:3s; +sous_estimation sous_estimation NOM f s 0.06 0.07 0.06 0.07 +sous_estimer sous_estimer VER 7.27 1.08 1.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sous_estimer sous_estimer VER 7.27 1.08 0.22 0.00 ind:pre:3p; +sous_estimer sous_estimer VER 7.27 1.08 1.05 0.54 inf; +sous_estimer sous_estimer VER 7.27 1.08 0.03 0.00 ind:fut:1s; +sous_estimer sous_estimer VER 7.27 1.08 0.72 0.00 ind:pre:2s; +sous_estimer sous_estimer VER 7.27 1.08 1.53 0.00 imp:pre:2p;ind:pre:2p; +sous_estimer sous_estimer VER 7.27 1.08 0.11 0.00 imp:pre:1p;ind:pre:1p; +sous_estimer sous_estimer VER m s 7.27 1.08 1.71 0.14 par:pas; +sous_estimer sous_estimer VER f s 7.27 1.08 0.14 0.00 par:pas; +sous_estimer sous_estimer VER f p 7.27 1.08 0.07 0.00 par:pas; +sous_estimer sous_estimer VER m p 7.27 1.08 0.09 0.00 par:pas; +sous_exposer sous_exposer VER m s 0.02 0.00 0.01 0.00 par:pas; +sous_exposer sous_exposer VER f p 0.02 0.00 0.01 0.00 par:pas; +sous_fifre sous_fifre NOM m s 0.72 0.41 0.45 0.20 +sous_fifre sous_fifre NOM m p 0.72 0.41 0.27 0.20 +sous_garde sous_garde NOM f s 0.01 0.07 0.01 0.07 +sous_genre sous_genre NOM m s 0.02 0.00 0.02 0.00 +sous_gorge sous_gorge NOM f 0.00 0.07 0.00 0.07 +sous_groupe sous_groupe NOM m s 0.01 0.00 0.01 0.00 +sous_homme sous_homme NOM m s 0.20 0.61 0.16 0.00 +sous_homme sous_homme NOM m p 0.20 0.61 0.05 0.61 +sous_humanité sous_humanité NOM f s 0.01 0.20 0.01 0.20 +sous_intendant sous_intendant NOM m s 0.30 0.00 0.10 0.00 +sous_intendant sous_intendant NOM m p 0.30 0.00 0.20 0.00 +sous_jacent sous_jacent ADJ m s 0.81 0.34 0.19 0.20 +sous_jacent sous_jacent ADJ f s 0.81 0.34 0.22 0.07 +sous_jacent sous_jacent ADJ f p 0.81 0.34 0.01 0.07 +sous_jacent sous_jacent ADJ m p 0.81 0.34 0.39 0.00 +sous_lieutenant sous_lieutenant NOM m s 0.81 5.61 0.76 4.93 +sous_lieutenant sous_lieutenant NOM m p 0.81 5.61 0.05 0.68 +sous_locataire sous_locataire NOM s 0.02 0.14 0.02 0.00 +sous_locataire sous_locataire NOM p 0.02 0.14 0.00 0.14 +sous_location sous_location NOM f s 0.09 0.07 0.06 0.07 +sous_location sous_location NOM f p 0.09 0.07 0.03 0.00 +sous_louer sous_louer VER 0.63 0.47 0.00 0.07 ind:pas:3s; +sous_louer sous_louer VER 0.63 0.47 0.03 0.00 ind:imp:3s; +sous_louer sous_louer VER 0.63 0.47 0.21 0.00 ind:pre:1s;ind:pre:3s; +sous_louer sous_louer VER 0.63 0.47 0.17 0.14 inf; +sous_louer sous_louer VER 0.63 0.47 0.11 0.00 ind:fut:1s; +sous_louer sous_louer VER 0.63 0.47 0.02 0.00 ind:pre:2p; +sous_louer sous_louer VER 0.63 0.47 0.00 0.07 ind:pas:3p; +sous_louer sous_louer VER m s 0.63 0.47 0.08 0.20 par:pas; +sous_maîtresse sous_maîtresse NOM f s 0.07 0.20 0.07 0.20 +sous_main sous_main NOM m s 0.28 1.96 0.28 1.96 +sous_marin sous_marin NOM m s 11.14 6.42 9.07 2.70 +sous_marin sous_marin ADJ f s 4.47 5.00 1.06 1.89 +sous_marin sous_marin ADJ f p 4.47 5.00 0.41 0.88 +sous_marinier sous_marinier NOM m s 0.26 0.00 0.04 0.00 +sous_marinier sous_marinier NOM m p 0.26 0.00 0.22 0.00 +sous_marin sous_marin NOM m p 11.14 6.42 2.07 3.72 +sous_marque sous_marque NOM f s 0.01 0.14 0.01 0.07 +sous_marque sous_marque NOM f p 0.01 0.14 0.00 0.07 +sous_merde sous_merde NOM f s 0.59 0.14 0.54 0.14 +sous_merde sous_merde NOM f p 0.59 0.14 0.05 0.00 +sous_ministre sous_ministre NOM m s 0.17 0.07 0.17 0.07 +sous_off sous_off NOM m s 0.14 4.26 0.11 2.16 +sous_officier sous_officier NOM m s 0.65 9.53 0.28 4.80 +sous_officier sous_officier NOM m p 0.65 9.53 0.36 4.73 +sous_off sous_off NOM m p 0.14 4.26 0.03 2.09 +sous_ordre sous_ordre NOM m s 0.01 0.61 0.01 0.54 +sous_ordre sous_ordre NOM m p 0.01 0.61 0.00 0.07 +sous_payer sous_payer VER 0.28 0.07 0.04 0.00 inf; +sous_payer sous_payer VER m s 0.28 0.07 0.14 0.07 par:pas; +sous_payer sous_payer VER m p 0.28 0.07 0.10 0.00 par:pas; +sous_pied sous_pied NOM m s 0.00 0.20 0.00 0.07 +sous_pied sous_pied NOM m p 0.00 0.20 0.00 0.14 +sous_plat sous_plat NOM m s 0.00 0.07 0.00 0.07 +sous_prieur sous_prieur PRE 0.00 0.47 0.00 0.47 +sous_produit sous_produit NOM m s 0.48 0.54 0.42 0.27 +sous_produit sous_produit NOM m p 0.48 0.54 0.06 0.27 +sous_programme sous_programme NOM m s 0.12 0.00 0.09 0.00 +sous_programme sous_programme NOM m p 0.12 0.00 0.03 0.00 +sous_prolétaire sous_prolétaire NOM s 0.11 0.07 0.11 0.07 +sous_prolétariat sous_prolétariat NOM m s 0.34 0.27 0.34 0.27 +sous_préfecture sous_préfecture NOM f s 0.17 1.62 0.03 1.35 +sous_préfecture sous_préfecture NOM f p 0.17 1.62 0.14 0.27 +sous_préfet sous_préfet NOM m s 0.02 1.01 0.02 0.95 +sous_préfet sous_préfet NOM m p 0.02 1.01 0.00 0.07 +sous_pull sous_pull NOM m p 0.01 0.00 0.01 0.00 +sous_qualifié sous_qualifié ADJ m s 0.04 0.00 0.03 0.00 +sous_qualifié sous_qualifié ADJ f s 0.04 0.00 0.01 0.00 +sous_secrétaire sous_secrétaire NOM m s 0.65 1.15 0.65 0.74 +sous_secrétaire sous_secrétaire NOM m p 0.65 1.15 0.00 0.41 +sous_secrétariat sous_secrétariat NOM m s 0.10 0.00 0.10 0.00 +sous_secteur sous_secteur NOM m s 0.02 0.27 0.02 0.27 +sous_section sous_section NOM f s 0.09 0.00 0.09 0.00 +sous_sol sous_sol NOM m s 13.50 10.54 12.80 8.31 +sous_sol sous_sol NOM m p 13.50 10.54 0.70 2.23 +sous_station sous_station NOM f s 0.17 0.07 0.17 0.07 +sous_système sous_système NOM m s 0.04 0.00 0.04 0.00 +sous_tasse sous_tasse NOM f s 0.11 0.20 0.11 0.14 +sous_tasse sous_tasse NOM f p 0.11 0.20 0.00 0.07 +sous_tendre sous_tendre VER 0.07 0.54 0.02 0.00 ind:pre:3s; +sous_tendre sous_tendre VER 0.07 0.54 0.00 0.07 ind:imp:3p; +sous_tendre sous_tendre VER 0.07 0.54 0.01 0.20 ind:imp:3s; +sous_tendre sous_tendre VER 0.07 0.54 0.01 0.14 ind:pre:3p; +sous_tendre sous_tendre VER m s 0.07 0.54 0.03 0.07 par:pas; +sous_tendre sous_tendre VER f s 0.07 0.54 0.00 0.07 par:pas; +sous_tension sous_tension NOM f s 0.03 0.00 0.03 0.00 +sous_titrage sous_titrage NOM m s 54.64 0.00 54.64 0.00 +sous_titre sous_titre NOM m s 23.09 0.95 0.83 0.68 +sous_titrer sous_titrer VER 5.81 0.14 0.01 0.00 inf; +sous_titre sous_titre NOM m p 23.09 0.95 22.26 0.27 +sous_titrer sous_titrer VER m s 5.81 0.14 5.72 0.00 par:pas; +sous_titrer sous_titrer VER f s 5.81 0.14 0.00 0.07 par:pas; +sous_titrer sous_titrer VER m p 5.81 0.14 0.09 0.07 par:pas; +sous_traitance sous_traitance NOM f s 0.04 0.00 0.04 0.00 +sous_traitant sous_traitant NOM m s 0.23 0.00 0.10 0.00 +sous_traitant sous_traitant NOM m p 0.23 0.00 0.13 0.00 +sous_traiter sous_traiter VER 0.13 0.14 0.04 0.00 ind:pre:3s; +sous_traiter sous_traiter VER 0.13 0.14 0.01 0.00 ind:pre:3p; +sous_traiter sous_traiter VER 0.13 0.14 0.06 0.07 inf; +sous_traiter sous_traiter VER m p 0.13 0.14 0.00 0.07 par:pas; +sous_équipé sous_équipé ADJ m p 0.07 0.00 0.07 0.00 +sous_évaluer sous_évaluer VER 0.10 0.00 0.01 0.00 ind:imp:3s; +sous_évaluer sous_évaluer VER m s 0.10 0.00 0.06 0.00 par:pas; +sous_évaluer sous_évaluer VER f p 0.10 0.00 0.02 0.00 par:pas; +sous_ventrière sous_ventrière NOM f s 0.03 0.47 0.03 0.47 +sous_verge sous_verge NOM m 0.00 0.54 0.00 0.54 +sous_verre sous_verre NOM m 0.06 0.20 0.06 0.20 +sous_vêtement sous_vêtement NOM m s 6.57 2.77 0.33 0.41 +sous_vêtement sous_vêtement NOM m p 6.57 2.77 6.24 2.36 +sous sous PRE 315.49 1032.70 315.49 1032.70 +souscripteur souscripteur NOM m s 0.02 0.20 0.01 0.00 +souscripteurs souscripteur NOM m p 0.02 0.20 0.01 0.20 +souscription souscription NOM f s 0.16 0.41 0.14 0.27 +souscriptions souscription NOM f p 0.16 0.41 0.03 0.14 +souscrira souscrire VER 0.95 3.11 0.04 0.00 ind:fut:3s; +souscrirai souscrire VER 0.95 3.11 0.00 0.07 ind:fut:1s; +souscrirait souscrire VER 0.95 3.11 0.00 0.07 cnd:pre:3s; +souscrire souscrire VER 0.95 3.11 0.20 0.88 inf; +souscris souscrire VER 0.95 3.11 0.27 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +souscrit souscrire VER m s 0.95 3.11 0.22 1.15 ind:pre:3s;par:pas; +souscrite souscrire VER f s 0.95 3.11 0.03 0.14 par:pas; +souscrites souscrire VER f p 0.95 3.11 0.01 0.14 par:pas; +souscrits souscrire VER m p 0.95 3.11 0.00 0.20 par:pas; +souscrivais souscrire VER 0.95 3.11 0.01 0.07 ind:imp:1s; +souscrivait souscrire VER 0.95 3.11 0.00 0.14 ind:imp:3s; +souscrivez souscrire VER 0.95 3.11 0.17 0.00 imp:pre:2p;ind:pre:2p; +souscrivons souscrire VER 0.95 3.11 0.00 0.07 ind:pre:1p; +soussigner sous-signer VER 0.00 0.07 0.00 0.07 inf; +soussigné soussigné ADJ m s 1.83 0.61 1.44 0.61 +soussignée soussigné ADJ f s 1.83 0.61 0.03 0.00 +soussignés soussigné ADJ m p 1.83 0.61 0.36 0.00 +soussou soussou NOM s 0.00 0.54 0.00 0.47 +soussous soussou NOM p 0.00 0.54 0.00 0.07 +soustraction soustraction NOM f s 0.15 1.08 0.11 0.68 +soustractions soustraction NOM f p 0.15 1.08 0.04 0.41 +soustrairait soustraire VER 2.17 7.84 0.00 0.07 cnd:pre:3s; +soustraire soustraire VER 2.17 7.84 1.72 4.73 inf; +soustrais soustraire VER 2.17 7.84 0.02 0.00 imp:pre:2s;ind:pre:1s; +soustrait soustraire VER m s 2.17 7.84 0.36 1.15 ind:pre:3s;par:pas; +soustraite soustraire VER f s 2.17 7.84 0.00 0.20 par:pas; +soustraites soustraire VER f p 2.17 7.84 0.00 0.07 par:pas; +soustraits soustraire VER m p 2.17 7.84 0.04 1.08 par:pas; +soustrayaient soustraire VER 2.17 7.84 0.00 0.07 ind:imp:3p; +soustrayait soustraire VER 2.17 7.84 0.00 0.27 ind:imp:3s; +soustrayant soustraire VER 2.17 7.84 0.00 0.20 par:pre; +soustrayez soustraire VER 2.17 7.84 0.03 0.00 imp:pre:2p; +soutînt soutenir VER 35.56 61.22 0.01 0.07 sub:imp:3s; +soutachait soutacher VER 0.00 0.81 0.00 0.07 ind:imp:3s; +soutache soutache NOM f s 0.00 0.14 0.00 0.07 +soutaches soutache NOM f p 0.00 0.14 0.00 0.07 +soutaché soutacher VER m s 0.00 0.81 0.00 0.20 par:pas; +soutachée soutacher VER f s 0.00 0.81 0.00 0.27 par:pas; +soutachées soutacher VER f p 0.00 0.81 0.00 0.07 par:pas; +soutachés soutacher VER m p 0.00 0.81 0.00 0.20 par:pas; +soutane soutane NOM f s 1.75 6.89 1.49 6.08 +soutanelle soutanelle NOM f s 0.00 0.07 0.00 0.07 +soutanes soutane NOM f p 1.75 6.89 0.26 0.81 +soute soute NOM f s 2.62 2.16 2.33 0.95 +soutenable soutenable ADJ s 0.00 0.14 0.00 0.14 +soutenaient soutenir VER 35.56 61.22 0.34 2.77 ind:imp:3p; +soutenais soutenir VER 35.56 61.22 0.34 0.68 ind:imp:1s;ind:imp:2s; +soutenait soutenir VER 35.56 61.22 0.96 7.23 ind:imp:3s; +soutenance soutenance NOM f s 0.03 0.14 0.03 0.14 +soutenant soutenir VER 35.56 61.22 0.27 3.31 par:pre; +souteneur souteneur NOM m s 1.36 1.89 0.75 1.08 +souteneurs souteneur NOM m p 1.36 1.89 0.61 0.81 +soutenez soutenir VER 35.56 61.22 1.70 0.27 imp:pre:2p;ind:pre:2p; +souteniez soutenir VER 35.56 61.22 0.14 0.07 ind:imp:2p; +soutenions soutenir VER 35.56 61.22 0.14 0.34 ind:imp:1p; +soutenir soutenir VER 35.56 61.22 10.17 18.45 inf; +soutenons soutenir VER 35.56 61.22 0.92 0.00 imp:pre:1p;ind:pre:1p; +soutenu soutenir VER m s 35.56 61.22 5.46 8.92 par:pas; +soutenue soutenir VER f s 35.56 61.22 1.36 3.45 par:pas; +soutenues soutenir VER f p 35.56 61.22 0.07 0.95 par:pas; +soutenus soutenir VER m p 35.56 61.22 0.45 1.69 par:pas; +souter souter VER 0.03 0.00 0.03 0.00 inf; +souterrain souterrain ADJ m s 4.88 13.04 2.63 4.86 +souterraine souterrain ADJ f s 4.88 13.04 0.98 3.72 +souterrainement souterrainement ADV 0.00 0.27 0.00 0.27 +souterraines souterrain ADJ f p 4.88 13.04 0.40 2.23 +souterrains souterrain NOM m p 2.90 5.07 1.60 1.82 +soutes soute NOM f p 2.62 2.16 0.29 1.22 +soutien_gorge soutien_gorge NOM m s 5.86 8.65 4.89 7.91 +soutien soutien NOM m s 18.87 9.53 18.21 8.92 +soutiendra soutenir VER 35.56 61.22 0.58 0.34 ind:fut:3s; +soutiendrai soutenir VER 35.56 61.22 0.70 0.07 ind:fut:1s; +soutiendraient soutenir VER 35.56 61.22 0.07 0.20 cnd:pre:3p; +soutiendrais soutenir VER 35.56 61.22 0.09 0.27 cnd:pre:1s;cnd:pre:2s; +soutiendrait soutenir VER 35.56 61.22 0.10 0.54 cnd:pre:3s; +soutiendras soutenir VER 35.56 61.22 0.05 0.00 ind:fut:2s; +soutiendrez soutenir VER 35.56 61.22 0.07 0.00 ind:fut:2p; +soutiendriez soutenir VER 35.56 61.22 0.02 0.00 cnd:pre:2p; +soutiendrons soutenir VER 35.56 61.22 0.08 0.07 ind:fut:1p; +soutiendront soutenir VER 35.56 61.22 0.39 0.34 ind:fut:3p; +soutienne soutenir VER 35.56 61.22 0.43 0.41 sub:pre:1s;sub:pre:3s; +soutiennent soutenir VER 35.56 61.22 1.85 2.84 ind:pre:3p; +soutiennes soutenir VER 35.56 61.22 0.16 0.00 sub:pre:2s; +soutien_gorge soutien_gorge NOM m p 5.86 8.65 0.96 0.74 +soutiens soutenir VER 35.56 61.22 3.34 1.28 imp:pre:2s;ind:pre:1s;ind:pre:2s; +soutient soutenir VER 35.56 61.22 5.14 4.59 ind:pre:3s; +soutier soutier NOM m s 0.03 0.54 0.03 0.47 +soutiers soutier NOM m p 0.03 0.54 0.00 0.07 +soutif soutif NOM m s 2.11 0.20 1.81 0.14 +soutifs soutif NOM m p 2.11 0.20 0.29 0.07 +soutinrent soutenir VER 35.56 61.22 0.14 0.27 ind:pas:3p; +soutins soutenir VER 35.56 61.22 0.00 0.07 ind:pas:1s; +soutint soutenir VER 35.56 61.22 0.02 1.76 ind:pas:3s; +soutirage soutirage NOM m s 0.00 0.07 0.00 0.07 +soutiraient soutirer VER 2.32 1.82 0.00 0.07 ind:imp:3p; +soutire soutirer VER 2.32 1.82 0.14 0.14 ind:pre:1s;ind:pre:3s; +soutirent soutirer VER 2.32 1.82 0.03 0.00 ind:pre:3p; +soutirer soutirer VER 2.32 1.82 1.88 1.42 inf; +soutirerai soutirer VER 2.32 1.82 0.03 0.00 ind:fut:1s; +soutirez soutirer VER 2.32 1.82 0.02 0.00 ind:pre:2p; +soutiré soutirer VER m s 2.32 1.82 0.21 0.14 par:pas; +soutirée soutirer VER f s 2.32 1.82 0.01 0.00 par:pas; +soutirées soutirer VER f p 2.32 1.82 0.00 0.07 par:pas; +soutra soutra NOM m s 0.20 0.00 0.20 0.00 +soutènement soutènement NOM m s 0.04 0.54 0.04 0.54 +souvînt souvenir VER 315.05 215.41 0.00 0.81 sub:imp:3s; +souvenaient souvenir VER 315.05 215.41 0.10 2.16 ind:imp:3p; +souvenais souvenir VER 315.05 215.41 1.76 8.99 ind:imp:1s;ind:imp:2s; +souvenait souvenir VER 315.05 215.41 1.23 24.12 ind:imp:3s; +souvenance souvenance NOM f s 0.03 0.81 0.03 0.47 +souvenances souvenance NOM f p 0.03 0.81 0.00 0.34 +souvenant souvenir VER 315.05 215.41 0.26 3.72 par:pre; +souvenez souvenir VER 315.05 215.41 36.70 10.88 imp:pre:2p;ind:pre:2p; +souveniez souvenir VER 315.05 215.41 0.54 0.54 ind:imp:2p;sub:pre:2p; +souvenions souvenir VER 315.05 215.41 0.01 0.27 ind:imp:1p; +souvenir souvenir VER 315.05 215.41 31.36 38.65 inf; +souvenirs souvenir NOM m p 63.24 197.03 32.79 90.34 +souvenons souvenir VER 315.05 215.41 0.97 0.27 imp:pre:1p;ind:pre:1p; +souvent souvent ADV 135.54 286.96 135.54 286.96 +souventefois souventefois ADV 0.00 0.14 0.00 0.14 +souventes_fois souventes_fois ADV 0.00 0.27 0.00 0.27 +souvenu souvenir VER m s 315.05 215.41 3.71 3.38 par:pas; +souvenue souvenir VER f s 315.05 215.41 0.89 1.35 par:pas; +souvenus souvenir VER m p 315.05 215.41 0.20 0.00 par:pas; +souverain souverain NOM m s 5.33 8.18 3.97 4.19 +souveraine souverain ADJ f s 3.36 10.00 1.54 5.14 +souverainement souverainement ADV 0.16 2.09 0.16 2.09 +souveraines souverain ADJ f p 3.36 10.00 0.02 0.27 +souveraineté souveraineté NOM f s 0.63 10.81 0.63 10.74 +souverainetés souveraineté NOM f p 0.63 10.81 0.00 0.07 +souverains souverain NOM m p 5.33 8.18 0.43 2.03 +souviendra souvenir VER 315.05 215.41 3.56 1.76 ind:fut:3s; +souviendrai souvenir VER 315.05 215.41 5.67 1.69 ind:fut:1s; +souviendraient souvenir VER 315.05 215.41 0.05 0.54 cnd:pre:3p; +souviendrais souvenir VER 315.05 215.41 1.44 0.68 cnd:pre:1s;cnd:pre:2s; +souviendrait souvenir VER 315.05 215.41 0.60 1.76 cnd:pre:3s; +souviendras souvenir VER 315.05 215.41 2.79 0.68 ind:fut:2s; +souviendrez souvenir VER 315.05 215.41 0.73 0.34 ind:fut:2p; +souviendriez souvenir VER 315.05 215.41 0.14 0.00 cnd:pre:2p; +souviendrons souvenir VER 315.05 215.41 0.22 0.07 ind:fut:1p; +souviendront souvenir VER 315.05 215.41 0.73 0.68 ind:fut:3p; +souvienne souvenir VER 315.05 215.41 5.55 3.38 sub:pre:1s;sub:pre:3s; +souviennent souvenir VER 315.05 215.41 2.83 3.04 ind:pre:3p; +souviennes souvenir VER 315.05 215.41 1.58 0.27 sub:pre:2s; +souviens souvenir VER 315.05 215.41 198.30 72.84 imp:pre:2s;ind:pre:1s;ind:pre:2s; +souvient souvenir VER 315.05 215.41 12.60 15.68 ind:pre:3s; +souvinrent souvenir VER 315.05 215.41 0.01 0.20 ind:pas:3p; +souvins souvenir VER 315.05 215.41 0.31 2.91 ind:pas:1s; +souvinssent souvenir VER 315.05 215.41 0.00 0.07 sub:imp:3p; +souvint souvenir VER 315.05 215.41 0.23 13.72 ind:pas:3s; +souvlaki souvlaki NOM m s 0.02 0.14 0.02 0.14 +soviet soviet NOM m s 2.54 7.70 0.73 2.43 +soviets soviet NOM m p 2.54 7.70 1.81 5.27 +soviétique soviétique ADJ s 10.68 24.59 8.89 20.47 +soviétiques soviétique ADJ p 10.68 24.59 1.79 4.12 +soviétisation soviétisation NOM f s 0.00 0.14 0.00 0.14 +soviétisme soviétisme NOM m s 0.00 0.34 0.00 0.34 +soviétologues soviétologue NOM p 0.00 0.07 0.00 0.07 +sovkhoze sovkhoze NOM m s 0.01 0.07 0.01 0.00 +sovkhozes sovkhoze NOM m p 0.01 0.07 0.00 0.07 +soya soya NOM m s 0.09 0.00 0.09 0.00 +soyeuse soyeux ADJ f s 0.61 13.04 0.10 4.12 +soyeusement soyeusement ADV 0.00 0.07 0.00 0.07 +soyeuses soyeux ADJ f p 0.61 13.04 0.04 1.76 +soyeux soyeux ADJ m 0.61 13.04 0.47 7.16 +soyez être AUX 8074.24 6501.82 24.16 5.34 sub:pre:2p; +soyons être AUX 8074.24 6501.82 4.79 3.11 sub:pre:1p; +spa spa NOM m s 1.05 0.00 0.79 0.00 +spacieuse spacieux ADJ f s 2.00 4.26 0.68 1.62 +spacieuses spacieux ADJ f p 2.00 4.26 0.20 0.54 +spacieux spacieux ADJ m 2.00 4.26 1.12 2.09 +spadassin spadassin NOM m s 0.02 1.15 0.02 0.68 +spadassins spadassin NOM m p 0.02 1.15 0.00 0.47 +spadille spadille NOM m s 0.00 0.07 0.00 0.07 +spaghetti spaghetti NOM m s 7.02 2.97 3.73 1.89 +spaghettis spaghetti NOM m p 7.02 2.97 3.29 1.08 +spahi spahi NOM m s 0.00 2.30 0.00 0.41 +spahis spahi NOM m p 0.00 2.30 0.00 1.89 +spamming spamming NOM m s 0.01 0.00 0.01 0.00 +sparadrap sparadrap NOM m s 1.78 1.96 1.66 1.89 +sparadraps sparadrap NOM m p 1.78 1.96 0.12 0.07 +sparring_partner sparring_partner NOM m s 0.00 0.07 0.00 0.07 +spartakistes spartakiste ADJ p 0.01 0.00 0.01 0.00 +sparte sparte NOM f s 0.00 0.14 0.00 0.14 +sparterie sparterie NOM f s 0.00 0.34 0.00 0.34 +spartiate spartiate ADJ s 0.60 0.41 0.50 0.34 +spartiates spartiate NOM p 0.36 0.34 0.26 0.14 +spartéine spartéine NOM f s 0.01 0.00 0.01 0.00 +spas spa NOM m p 1.05 0.00 0.26 0.00 +spasme spasme NOM m s 2.13 6.76 0.47 3.38 +spasmes spasme NOM m p 2.13 6.76 1.66 3.38 +spasmodique spasmodique ADJ s 0.34 0.81 0.15 0.41 +spasmodiquement spasmodiquement ADV 0.01 0.88 0.01 0.88 +spasmodiques spasmodique ADJ p 0.34 0.81 0.20 0.41 +spasmophile spasmophile ADJ m s 0.02 0.07 0.02 0.07 +spasmophilie spasmophilie NOM f s 0.01 0.20 0.01 0.20 +spasticité spasticité NOM f s 0.03 0.00 0.03 0.00 +spastique spastique ADJ f s 0.01 0.00 0.01 0.00 +spath spath NOM m s 0.07 0.00 0.07 0.00 +spatial spatial ADJ m s 10.94 1.35 5.90 0.61 +spatiale spatial ADJ f s 10.94 1.35 3.42 0.41 +spatialement spatialement ADV 0.01 0.00 0.01 0.00 +spatiales spatial ADJ f p 10.94 1.35 0.57 0.14 +spatiaux spatial ADJ m p 10.94 1.35 1.05 0.20 +spatio_temporel spatio_temporel ADJ m s 0.21 0.20 0.09 0.07 +spatio_temporel spatio_temporel ADJ f s 0.21 0.20 0.13 0.14 +spationaute spationaute NOM s 0.09 0.00 0.09 0.00 +spatiotemporel spatiotemporel ADJ m s 0.05 0.00 0.05 0.00 +spatule spatule NOM f s 0.45 1.82 0.44 1.62 +spatuler spatuler VER 0.01 0.00 0.01 0.00 inf; +spatules spatule NOM f p 0.45 1.82 0.01 0.20 +spatulée spatulé ADJ f s 0.15 0.14 0.01 0.00 +spatulées spatulé ADJ f p 0.15 0.14 0.14 0.07 +spatulés spatulé ADJ m p 0.15 0.14 0.00 0.07 +speakeasy speakeasy NOM m s 0.05 0.07 0.05 0.07 +speaker speaker NOM m s 1.12 3.99 0.95 2.70 +speakerine speaker NOM f s 1.12 3.99 0.15 0.34 +speakerines speakerine NOM f p 0.14 0.00 0.14 0.00 +speakers speaker NOM m p 1.12 3.99 0.02 0.68 +species species NOM m 0.10 0.07 0.10 0.07 +spectacle spectacle NOM m s 55.19 73.78 51.14 66.76 +spectacles spectacle NOM m p 55.19 73.78 4.05 7.03 +spectaculaire spectaculaire ADJ s 3.88 6.22 3.50 4.59 +spectaculairement spectaculairement ADV 0.04 0.34 0.04 0.34 +spectaculaires spectaculaire ADJ p 3.88 6.22 0.37 1.62 +spectateur spectateur NOM m s 8.41 21.69 2.50 6.49 +spectateurs spectateur NOM m p 8.41 21.69 5.48 13.45 +spectatrice spectateur NOM f s 8.41 21.69 0.43 1.08 +spectatrices spectatrice NOM f p 0.01 0.00 0.01 0.00 +spectral spectral ADJ m s 0.94 0.81 0.17 0.34 +spectrale spectral ADJ f s 0.94 0.81 0.58 0.14 +spectrales spectral ADJ f p 0.94 0.81 0.13 0.34 +spectraux spectral ADJ m p 0.94 0.81 0.05 0.00 +spectre spectre NOM m s 4.25 6.96 3.87 4.73 +spectres spectre NOM m p 4.25 6.96 0.37 2.23 +spectrogramme spectrogramme NOM m s 0.03 0.00 0.03 0.00 +spectrographe spectrographe NOM m s 0.05 0.00 0.05 0.00 +spectrographie spectrographie NOM f s 0.14 0.00 0.14 0.00 +spectrographique spectrographique ADJ s 0.09 0.00 0.09 0.00 +spectrohéliographe spectrohéliographe NOM m s 0.01 0.00 0.01 0.00 +spectromètre spectromètre NOM m s 0.34 0.00 0.34 0.00 +spectrométrie spectrométrie NOM f s 0.09 0.00 0.09 0.00 +spectrométrique spectrométrique ADJ f s 0.01 0.00 0.01 0.00 +spectrophotomètre spectrophotomètre NOM m s 0.01 0.00 0.01 0.00 +spectroscope spectroscope NOM m s 0.07 0.00 0.07 0.00 +spectroscopie spectroscopie NOM f s 0.01 0.00 0.01 0.00 +speech speech NOM m s 1.88 0.74 1.88 0.74 +speed speed NOM m s 3.45 1.49 3.45 1.49 +speede speeder VER 0.33 0.54 0.01 0.07 ind:pre:1s;ind:pre:3s; +speeder speeder VER 0.33 0.54 0.20 0.07 inf; +speedes speeder VER 0.33 0.54 0.10 0.07 ind:pre:2s; +speedé speedé ADJ m s 0.21 0.61 0.04 0.07 +speedée speedé ADJ f s 0.21 0.61 0.01 0.14 +speedés speedé ADJ m p 0.21 0.61 0.16 0.41 +spencer spencer NOM m s 0.04 0.27 0.03 0.20 +spencers spencer NOM m p 0.04 0.27 0.02 0.07 +spenglérienne spenglérienne NOM f s 0.00 0.07 0.00 0.07 +spermaceti spermaceti NOM m s 0.08 0.00 0.08 0.00 +spermatique spermatique ADJ s 0.01 0.27 0.01 0.27 +spermato spermato NOM m s 0.03 0.41 0.01 0.14 +spermatogenèse spermatogenèse NOM f s 0.04 0.00 0.04 0.00 +spermatos spermato NOM m p 0.03 0.41 0.02 0.27 +spermatozoïde spermatozoïde NOM m s 0.51 0.74 0.23 0.14 +spermatozoïdes spermatozoïde NOM m p 0.51 0.74 0.28 0.61 +sperme sperme NOM m s 8.47 5.07 8.31 4.93 +spermes sperme NOM m p 8.47 5.07 0.15 0.14 +spermicide spermicide NOM m s 0.07 0.07 0.07 0.07 +spermogramme spermogramme NOM m s 0.01 0.00 0.01 0.00 +spermophiles spermophile NOM m p 0.01 0.00 0.01 0.00 +spetsnaz spetsnaz NOM f p 0.02 0.00 0.02 0.00 +sphaigne sphaigne NOM f s 0.01 0.07 0.01 0.00 +sphaignes sphaigne NOM f p 0.01 0.07 0.00 0.07 +sphincter sphincter NOM m s 0.34 1.01 0.31 0.14 +sphincters sphincter NOM m p 0.34 1.01 0.02 0.88 +sphinge sphinge NOM f s 0.00 0.20 0.00 0.07 +sphinges sphinge NOM f p 0.00 0.20 0.00 0.14 +sphinx sphinx NOM m 1.27 3.04 1.27 3.04 +sphère sphère NOM f s 3.90 9.19 2.48 5.74 +sphères sphère NOM f p 3.90 9.19 1.42 3.45 +sphénoïde sphénoïde ADJ s 0.01 0.00 0.01 0.00 +sphéricité sphéricité NOM f s 0.00 0.07 0.00 0.07 +sphérique sphérique ADJ s 0.26 1.62 0.23 1.01 +sphériquement sphériquement ADV 0.01 0.00 0.01 0.00 +sphériques sphérique ADJ p 0.26 1.62 0.02 0.61 +sphéroïde sphéroïde NOM m s 0.01 0.14 0.00 0.14 +sphéroïdes sphéroïde NOM m p 0.01 0.14 0.01 0.00 +sphygmomanomètre sphygmomanomètre NOM m s 0.02 0.00 0.02 0.00 +spi spi NOM m s 0.01 0.00 0.01 0.00 +spic spic NOM m s 0.14 0.00 0.05 0.00 +spica spica NOM m s 0.08 0.14 0.08 0.14 +spics spic NOM m p 0.14 0.00 0.09 0.00 +spicules spicule NOM m p 0.01 0.00 0.01 0.00 +spider spider NOM m s 3.27 0.41 3.27 0.41 +spin spin NOM m s 0.14 0.00 0.14 0.00 +spina_bifida spina_bifida NOM m s 0.04 0.00 0.04 0.00 +spina_ventosa spina_ventosa NOM m s 0.00 0.07 0.00 0.07 +spina spina NOM f s 0.05 0.00 0.05 0.00 +spinal spinal ADJ m s 0.64 0.00 0.50 0.00 +spinale spinal ADJ f s 0.64 0.00 0.13 0.00 +spinaux spinal ADJ m p 0.64 0.00 0.01 0.00 +spinnaker spinnaker NOM m s 0.02 0.14 0.02 0.07 +spinnakers spinnaker NOM m p 0.02 0.14 0.00 0.07 +spinozisme spinozisme NOM m s 0.00 0.07 0.00 0.07 +spirale spirale NOM f s 1.31 6.08 1.20 3.45 +spiraler spiraler VER 0.00 0.07 0.00 0.07 inf; +spirales spirale NOM f p 1.31 6.08 0.11 2.64 +spiralé spiralé ADJ m s 0.01 0.20 0.01 0.07 +spiralées spiralé ADJ f p 0.01 0.20 0.00 0.07 +spiralés spiralé ADJ m p 0.01 0.20 0.00 0.07 +spire spire NOM f s 0.23 0.81 0.06 0.14 +spires spire NOM f p 0.23 0.81 0.17 0.68 +spirite spirite ADJ f s 0.03 0.07 0.02 0.00 +spirites spirite NOM p 0.04 0.07 0.04 0.00 +spiritisme spiritisme NOM m s 1.81 0.20 1.81 0.20 +spiritualisaient spiritualiser VER 0.10 0.74 0.00 0.07 ind:imp:3p; +spiritualise spiritualiser VER 0.10 0.74 0.00 0.20 ind:pre:3s; +spiritualiser spiritualiser VER 0.10 0.74 0.00 0.07 inf; +spiritualisme spiritualisme NOM m s 0.14 0.00 0.14 0.00 +spiritualiste spiritualiste ADJ s 0.02 0.41 0.01 0.34 +spiritualistes spiritualiste NOM p 0.02 0.00 0.02 0.00 +spiritualisé spiritualiser VER m s 0.10 0.74 0.10 0.41 par:pas; +spiritualité spiritualité NOM f s 0.79 1.15 0.79 1.08 +spiritualités spiritualité NOM f p 0.79 1.15 0.00 0.07 +spirituel spirituel ADJ m s 12.10 14.53 6.83 4.93 +spirituelle spirituel ADJ f s 12.10 14.53 3.89 6.15 +spirituellement spirituellement ADV 0.78 0.81 0.78 0.81 +spirituelles spirituel ADJ f p 12.10 14.53 0.58 1.76 +spirituels spirituel ADJ m p 12.10 14.53 0.80 1.69 +spiritueux spiritueux NOM m 0.41 0.61 0.41 0.61 +spirochète spirochète NOM m s 0.02 0.00 0.02 0.00 +spirographe spirographe NOM m s 0.03 0.00 0.03 0.00 +spiromètres spiromètre NOM m p 0.00 0.07 0.00 0.07 +spirées spirée NOM f p 0.00 0.07 0.00 0.07 +spiruline spiruline NOM f s 0.01 0.00 0.01 0.00 +spitz spitz NOM m s 0.01 0.00 0.01 0.00 +splash splash ONO 0.27 0.27 0.27 0.27 +spleen spleen NOM m s 0.11 1.55 0.11 1.35 +spleens spleen NOM m p 0.11 1.55 0.00 0.20 +splendeur splendeur NOM f s 5.02 14.59 4.67 10.95 +splendeurs splendeur NOM f p 5.02 14.59 0.35 3.65 +splendide splendide ADJ s 16.73 10.14 15.45 7.30 +splendidement splendidement ADV 0.21 0.07 0.21 0.07 +splendides splendide ADJ p 16.73 10.14 1.28 2.84 +splittaient splitter VER 0.01 0.07 0.00 0.07 ind:imp:3p; +splitter splitter VER 0.01 0.07 0.01 0.00 inf; +splénectomie splénectomie NOM f s 0.09 0.00 0.09 0.00 +splénique splénique NOM m s 0.05 0.00 0.05 0.00 +spoiler spoiler NOM m s 0.01 0.00 0.01 0.00 +spoliait spolier VER 0.59 0.54 0.00 0.07 ind:imp:3s; +spoliation spoliation NOM f s 0.00 0.61 0.00 0.47 +spoliations spoliation NOM f p 0.00 0.61 0.00 0.14 +spolie spolier VER 0.59 0.54 0.14 0.00 ind:pre:3s; +spolier spolier VER 0.59 0.54 0.04 0.00 inf; +spolié spolier VER m s 0.59 0.54 0.29 0.14 par:pas; +spoliée spolier VER f s 0.59 0.54 0.00 0.07 par:pas; +spoliées spolié NOM f p 0.01 0.07 0.00 0.07 +spoliés spolier VER m p 0.59 0.54 0.11 0.27 par:pas; +spondées spondée NOM m p 0.00 0.07 0.00 0.07 +spondylarthrose spondylarthrose NOM f s 0.01 0.00 0.01 0.00 +spondylite spondylite NOM f s 0.01 0.00 0.01 0.00 +spongieuse spongieux ADJ f s 0.20 4.26 0.04 1.82 +spongieuses spongieux ADJ f p 0.20 4.26 0.00 0.34 +spongieux spongieux ADJ m 0.20 4.26 0.16 2.09 +spongiforme spongiforme ADJ f s 0.03 0.00 0.03 0.00 +sponsor sponsor NOM m s 2.72 0.20 1.72 0.14 +sponsoring sponsoring NOM m s 0.09 0.07 0.09 0.07 +sponsorisait sponsoriser VER 1.19 0.00 0.04 0.00 ind:imp:3s; +sponsorise sponsoriser VER 1.19 0.00 0.16 0.00 ind:pre:1s;ind:pre:3s; +sponsoriser sponsoriser VER 1.19 0.00 0.33 0.00 inf; +sponsorisera sponsoriser VER 1.19 0.00 0.03 0.00 ind:fut:3s; +sponsorisé sponsoriser VER m s 1.19 0.00 0.22 0.00 par:pas; +sponsorisée sponsoriser VER f s 1.19 0.00 0.37 0.00 par:pas; +sponsorisés sponsoriser VER m p 1.19 0.00 0.04 0.00 par:pas; +sponsors sponsor NOM m p 2.72 0.20 1.00 0.07 +spontané spontané ADJ m s 4.14 7.97 2.02 2.77 +spontanée spontané ADJ f s 4.14 7.97 1.67 3.51 +spontanées spontané ADJ f p 4.14 7.97 0.31 0.81 +spontanéistes spontanéiste ADJ p 0.00 0.07 0.00 0.07 +spontanéité spontanéité NOM f s 0.91 2.50 0.91 2.50 +spontanément spontanément ADV 1.35 8.11 1.35 8.11 +spontanés spontané ADJ m p 4.14 7.97 0.15 0.88 +spoon spoon NOM m s 0.31 0.00 0.31 0.00 +sporadique sporadique ADJ s 0.31 1.62 0.11 0.54 +sporadiquement sporadiquement ADV 0.17 0.54 0.17 0.54 +sporadiques sporadique ADJ p 0.31 1.62 0.20 1.08 +spore spore NOM f s 0.91 0.14 0.01 0.00 +spores spore NOM f p 0.91 0.14 0.90 0.14 +sport sport NOM m s 30.04 20.81 24.61 15.54 +sportif sportif ADJ m s 7.72 9.39 4.58 3.45 +sportifs sportif NOM m p 2.98 4.80 1.46 2.16 +sportive sportif ADJ f s 7.72 9.39 1.40 2.91 +sportivement sportivement ADV 0.00 0.20 0.00 0.20 +sportives sportif ADJ f p 7.72 9.39 0.49 0.88 +sportivité sportivité NOM f s 0.02 0.00 0.02 0.00 +sports sport NOM m p 30.04 20.81 5.42 5.27 +sportsman sportsman NOM m s 0.00 0.61 0.00 0.41 +sportsmen sportsman NOM m p 0.00 0.61 0.00 0.20 +sportswear sportswear NOM m s 0.00 0.07 0.00 0.07 +spot spot NOM m s 3.50 1.49 2.50 0.47 +spots spot NOM m p 3.50 1.49 1.00 1.01 +spoutnik spoutnik NOM m s 0.24 0.07 0.13 0.07 +spoutniks spoutnik NOM m p 0.24 0.07 0.11 0.00 +sprat sprat NOM m s 0.40 0.14 0.18 0.00 +sprats sprat NOM m p 0.40 0.14 0.22 0.14 +spray spray NOM m s 2.71 0.27 2.65 0.27 +sprays spray NOM m p 2.71 0.27 0.06 0.00 +sprechgesang sprechgesang NOM m s 0.00 0.07 0.00 0.07 +spring spring NOM m s 0.83 0.68 0.83 0.68 +springer springer NOM m s 0.59 0.00 0.59 0.00 +sprinkler sprinkler NOM m s 0.05 0.00 0.02 0.00 +sprinklers sprinkler NOM m p 0.05 0.00 0.03 0.00 +sprint sprint NOM m s 0.89 2.23 0.85 1.82 +sprinta sprinter VER 0.41 0.68 0.00 0.07 ind:pas:3s; +sprintait sprinter VER 0.41 0.68 0.00 0.07 ind:imp:3s; +sprintant sprinter VER 0.41 0.68 0.06 0.07 par:pre; +sprinte sprinter VER 0.41 0.68 0.14 0.20 ind:pre:1s;ind:pre:3s; +sprinter sprinter NOM m s 0.34 0.27 0.23 0.14 +sprinters sprinter NOM m p 0.34 0.27 0.11 0.14 +sprinteur sprinteur NOM m s 0.03 0.00 0.01 0.00 +sprinteurs sprinteur NOM m p 0.03 0.00 0.02 0.00 +sprints sprint NOM m p 0.89 2.23 0.04 0.41 +spruce spruce NOM m s 0.04 0.00 0.04 0.00 +spécial spécial ADJ m s 83.73 31.22 48.12 14.46 +spéciale spécial ADJ f s 83.73 31.22 22.77 7.09 +spécialement spécialement ADV 9.60 14.80 9.60 14.80 +spéciales spécial ADJ f p 83.73 31.22 6.48 5.00 +spécialisa spécialiser VER 4.05 5.68 0.00 0.14 ind:pas:3s; +spécialisaient spécialiser VER 4.05 5.68 0.10 0.00 ind:imp:3p; +spécialisait spécialiser VER 4.05 5.68 0.00 0.14 ind:imp:3s; +spécialisant spécialiser VER 4.05 5.68 0.02 0.07 par:pre; +spécialisation spécialisation NOM f s 0.43 0.41 0.43 0.41 +spécialise spécialiser VER 4.05 5.68 0.44 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +spécialiser spécialiser VER 4.05 5.68 0.21 0.27 inf; +spécialiste spécialiste NOM s 16.69 16.96 11.91 10.07 +spécialistes spécialiste NOM p 16.69 16.96 4.79 6.89 +spécialisé spécialiser VER m s 4.05 5.68 1.80 2.43 par:pas; +spécialisée spécialiser VER f s 4.05 5.68 0.89 1.22 par:pas; +spécialisées spécialisé ADJ f p 1.60 5.41 0.14 1.08 +spécialisés spécialiser VER m p 4.05 5.68 0.51 0.95 par:pas; +spécialité spécialité NOM f s 10.06 9.73 8.70 7.91 +spécialités spécialité NOM f p 10.06 9.73 1.36 1.82 +spéciaux spécial ADJ m p 83.73 31.22 6.36 4.66 +spécieuse spécieux ADJ f s 0.11 0.41 0.04 0.07 +spécieusement spécieusement ADV 0.00 0.07 0.00 0.07 +spécieuses spécieux ADJ f p 0.11 0.41 0.01 0.20 +spécieux spécieux ADJ m 0.11 0.41 0.06 0.14 +spécifiais spécifier VER 1.19 2.16 0.00 0.07 ind:imp:1s; +spécifiait spécifier VER 1.19 2.16 0.04 0.41 ind:imp:3s; +spécifiant spécifier VER 1.19 2.16 0.00 0.20 par:pre; +spécification spécification NOM f s 0.48 0.07 0.02 0.00 +spécifications spécification NOM f p 0.48 0.07 0.46 0.07 +spécificité spécificité NOM f s 0.25 0.34 0.07 0.34 +spécificités spécificité NOM f p 0.25 0.34 0.17 0.00 +spécifie spécifier VER 1.19 2.16 0.37 0.27 imp:pre:2s;ind:pre:3s; +spécifient spécifier VER 1.19 2.16 0.00 0.07 ind:pre:3p; +spécifier spécifier VER 1.19 2.16 0.19 0.27 inf; +spécifiera spécifier VER 1.19 2.16 0.03 0.00 ind:fut:3s; +spécifiez spécifier VER 1.19 2.16 0.02 0.00 imp:pre:2p; +spécifique spécifique ADJ s 4.80 1.96 3.59 1.42 +spécifiquement spécifiquement ADV 1.18 1.22 1.18 1.22 +spécifiques spécifique ADJ p 4.80 1.96 1.22 0.54 +spécifié spécifier VER m s 1.19 2.16 0.53 0.88 par:pas; +spécifiée spécifié ADJ f s 0.15 0.07 0.03 0.00 +spécifiées spécifié ADJ f p 0.15 0.07 0.04 0.00 +spécifiés spécifié ADJ m p 0.15 0.07 0.02 0.00 +spécimen spécimen NOM m s 5.26 3.31 3.46 1.49 +spécimens spécimen NOM m p 5.26 3.31 1.80 1.82 +spéculaient spéculer VER 1.86 1.62 0.01 0.07 ind:imp:3p; +spéculaire spéculaire ADJ s 0.00 0.14 0.00 0.14 +spéculait spéculer VER 1.86 1.62 0.00 0.07 ind:imp:3s; +spéculant spéculer VER 1.86 1.62 0.03 0.34 par:pre; +spéculateur spéculateur NOM m s 0.88 0.68 0.13 0.54 +spéculateurs spéculateur NOM m p 0.88 0.68 0.64 0.07 +spéculatif spéculatif ADJ m s 0.08 0.61 0.02 0.14 +spéculatifs spéculatif ADJ m p 0.08 0.61 0.04 0.14 +spéculation spéculation NOM f s 2.13 3.92 1.08 1.35 +spéculations spéculation NOM f p 2.13 3.92 1.04 2.57 +spéculative spéculatif ADJ f s 0.08 0.61 0.02 0.27 +spéculatives spéculatif ADJ f p 0.08 0.61 0.00 0.07 +spéculatrice spéculateur NOM f s 0.88 0.68 0.10 0.00 +spéculatrices spéculateur NOM f p 0.88 0.68 0.00 0.07 +spécule spéculer VER 1.86 1.62 0.51 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +spéculent spéculer VER 1.86 1.62 0.15 0.14 ind:pre:3p; +spéculer spéculer VER 1.86 1.62 0.77 0.47 inf; +spéculeraient spéculer VER 1.86 1.62 0.00 0.07 cnd:pre:3p; +spéculez spéculer VER 1.86 1.62 0.34 0.00 imp:pre:2p;ind:pre:2p; +spéculoos spéculoos NOM m 0.14 0.00 0.14 0.00 +spéculé spéculer VER m s 1.86 1.62 0.05 0.07 par:pas; +spéculum spéculum NOM m s 0.13 0.14 0.13 0.14 +spéléo spéléo NOM f s 0.27 0.00 0.27 0.00 +spéléologie spéléologie NOM f s 0.02 0.07 0.02 0.07 +spéléologue spéléologue NOM s 0.29 0.27 0.12 0.07 +spéléologues spéléologue NOM p 0.29 0.27 0.17 0.20 +spéléotomie spéléotomie NOM f s 0.00 0.14 0.00 0.14 +spumescent spumescent ADJ m s 0.00 0.07 0.00 0.07 +spumosité spumosité NOM f s 0.00 0.07 0.00 0.07 +squale squale NOM m s 0.47 0.20 0.23 0.00 +squales squale NOM m p 0.47 0.20 0.24 0.20 +squames squame NOM f p 0.01 0.14 0.01 0.14 +squameuse squameux ADJ f s 0.05 0.41 0.01 0.34 +squameux squameux ADJ m s 0.05 0.41 0.04 0.07 +square square NOM m s 5.89 16.69 5.51 14.39 +squares square NOM m p 5.89 16.69 0.38 2.30 +squash squash NOM m s 0.73 0.07 0.73 0.07 +squat squat NOM m s 1.23 0.00 1.20 0.00 +squats squat NOM m p 1.23 0.00 0.03 0.00 +squattait squatter VER 1.28 0.41 0.04 0.00 ind:imp:3s; +squatte squatter VER 1.28 0.41 0.50 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +squatter squatter VER 1.28 0.41 0.43 0.07 inf; +squatteras squatter VER 1.28 0.41 0.01 0.00 ind:fut:2s; +squatters squatter NOM m p 0.46 0.27 0.30 0.14 +squatteur squatteur NOM m s 0.17 0.00 0.05 0.00 +squatteurs squatteur NOM m p 0.17 0.00 0.12 0.00 +squattez squatter VER 1.28 0.41 0.03 0.00 ind:pre:2p; +squatté squatter VER m s 1.28 0.41 0.28 0.00 par:pas; +squattée squatter VER f s 1.28 0.41 0.00 0.07 par:pas; +squattées squatter VER f p 1.28 0.41 0.00 0.07 par:pas; +squattérisé squattériser VER m s 0.00 0.07 0.00 0.07 par:pas; +squattés squatter VER m p 1.28 0.41 0.00 0.07 par:pas; +squaw squaw NOM f s 0.00 6.08 0.00 6.01 +squaws squaw NOM f p 0.00 6.08 0.00 0.07 +squeeze squeeze NOM m s 0.10 0.07 0.10 0.07 +squeezent squeezer VER 0.02 0.00 0.01 0.00 ind:pre:3p; +squeezer squeezer VER 0.02 0.00 0.01 0.00 inf; +squelette squelette NOM m s 6.75 11.69 5.09 8.58 +squelettes squelette NOM m p 6.75 11.69 1.65 3.11 +squelettique squelettique ADJ s 0.39 3.45 0.29 2.09 +squelettiques squelettique ADJ p 0.39 3.45 0.10 1.35 +squire squire NOM m s 0.04 0.07 0.01 0.07 +squires squire NOM m p 0.04 0.07 0.03 0.00 +sri_lankais sri_lankais ADJ m 0.01 0.00 0.01 0.00 +sri_lankais sri_lankais NOM m 0.01 0.00 0.01 0.00 +stabat_mater stabat_mater NOM m 0.00 0.07 0.00 0.07 +stabilisa stabiliser VER 4.84 1.42 0.01 0.00 ind:pas:3s; +stabilisait stabiliser VER 4.84 1.42 0.00 0.14 ind:imp:3s; +stabilisant stabilisant NOM m s 0.02 0.00 0.02 0.00 +stabilisante stabilisant ADJ f s 0.03 0.00 0.03 0.00 +stabilisateur stabilisateur NOM m s 0.84 0.00 0.41 0.00 +stabilisateurs stabilisateur NOM m p 0.84 0.00 0.43 0.00 +stabilisation stabilisation NOM f s 0.36 0.41 0.36 0.41 +stabilisatrice stabilisateur ADJ f s 0.35 0.00 0.03 0.00 +stabilise stabiliser VER 4.84 1.42 1.02 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stabilisent stabiliser VER 4.84 1.42 0.09 0.07 ind:pre:3p; +stabiliser stabiliser VER 4.84 1.42 1.65 0.61 inf; +stabilisez stabiliser VER 4.84 1.42 0.37 0.00 imp:pre:2p; +stabilisons stabiliser VER 4.84 1.42 0.02 0.00 imp:pre:1p;ind:pre:1p; +stabilisèrent stabiliser VER 4.84 1.42 0.00 0.07 ind:pas:3p; +stabilisé stabiliser VER m s 4.84 1.42 1.20 0.20 par:pas; +stabilisée stabiliser VER f s 4.84 1.42 0.45 0.00 par:pas; +stabilisées stabilisé ADJ f p 0.56 0.41 0.01 0.14 +stabilisés stabiliser VER m p 4.84 1.42 0.04 0.00 par:pas; +stabilité stabilité NOM f s 1.81 3.18 1.81 3.18 +stable stable ADJ s 10.09 4.53 8.67 3.78 +stablement stablement ADV 0.00 0.07 0.00 0.07 +stables stable ADJ p 10.09 4.53 1.42 0.74 +stabulation stabulation NOM f s 0.00 0.14 0.00 0.14 +staccato staccato NOM m s 0.02 0.41 0.02 0.41 +stade stade NOM m s 15.14 14.80 14.34 13.18 +stades stade NOM m p 15.14 14.80 0.80 1.62 +stadium stadium NOM m s 0.22 0.07 0.22 0.07 +staff staff NOM m s 1.39 0.54 1.36 0.47 +staffs staff NOM m p 1.39 0.54 0.03 0.07 +stage stage NOM m s 6.16 5.54 4.87 4.80 +stages stage NOM m p 6.16 5.54 1.28 0.74 +stagflation stagflation NOM f s 0.01 0.00 0.01 0.00 +stagiaire stagiaire NOM s 2.47 1.55 1.79 1.22 +stagiaires stagiaire NOM p 2.47 1.55 0.69 0.34 +stagna stagner VER 0.59 5.41 0.00 0.20 ind:pas:3s; +stagnaient stagner VER 0.59 5.41 0.00 0.27 ind:imp:3p; +stagnait stagner VER 0.59 5.41 0.04 1.69 ind:imp:3s; +stagnant stagnant ADJ m s 0.41 2.97 0.04 0.61 +stagnante stagnant ADJ f s 0.41 2.97 0.26 1.69 +stagnantes stagnant ADJ f p 0.41 2.97 0.11 0.68 +stagnation stagnation NOM f s 0.19 0.61 0.19 0.61 +stagne stagner VER 0.59 5.41 0.24 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stagnent stagner VER 0.59 5.41 0.06 0.20 ind:pre:3p; +stagner stagner VER 0.59 5.41 0.21 0.74 inf; +stagnez stagner VER 0.59 5.41 0.02 0.00 ind:pre:2p; +stagné stagner VER m s 0.59 5.41 0.02 0.27 par:pas; +stakhanoviste stakhanoviste NOM s 0.27 0.07 0.27 0.07 +stalactite stalactite NOM f s 0.15 0.61 0.11 0.07 +stalactites stalactite NOM f p 0.15 0.61 0.04 0.54 +stalag stalag NOM m s 0.37 0.74 0.37 0.61 +stalagmite stalagmite NOM f s 0.12 0.34 0.11 0.07 +stalagmites stalagmite NOM f p 0.12 0.34 0.01 0.27 +stalags stalag NOM m p 0.37 0.74 0.00 0.14 +stalinien stalinien ADJ m s 0.48 3.72 0.02 1.42 +stalinienne stalinien ADJ f s 0.48 3.72 0.42 1.35 +staliniennes stalinien ADJ f p 0.48 3.72 0.03 0.54 +staliniens stalinien NOM m p 0.05 1.69 0.04 1.28 +stalinisme stalinisme NOM m s 0.14 1.01 0.14 1.01 +stalinisée staliniser VER f s 0.00 0.07 0.00 0.07 par:pas; +stalino stalino ADV 0.00 0.07 0.00 0.07 +stalle stalle NOM f s 0.32 2.43 0.19 0.74 +stalles stalle NOM f p 0.32 2.43 0.13 1.69 +stals stal NOM p 0.00 0.20 0.00 0.20 +stance stance NOM f s 0.25 0.41 0.25 0.00 +stances stance NOM f p 0.25 0.41 0.00 0.41 +stand_by stand_by NOM m 0.83 0.07 0.83 0.07 +stand stand NOM m s 7.02 3.72 5.66 2.64 +standard standard ADJ 4.17 1.01 4.17 1.01 +standardisation standardisation NOM f s 0.00 0.07 0.00 0.07 +standardiste standardiste NOM s 0.56 1.55 0.53 1.28 +standardistes standardiste NOM p 0.56 1.55 0.03 0.27 +standardisé standardiser VER m s 0.03 0.00 0.01 0.00 par:pas; +standardisée standardisé ADJ f s 0.13 0.14 0.11 0.00 +standardisées standardiser VER f p 0.03 0.00 0.01 0.00 par:pas; +standardisés standardisé ADJ m p 0.13 0.14 0.01 0.00 +standards standard NOM m p 3.24 2.30 0.72 0.27 +standing standing NOM m s 1.00 2.03 1.00 2.03 +stands stand NOM m p 7.02 3.72 1.36 1.08 +staphylococcie staphylococcie NOM f s 0.01 0.00 0.01 0.00 +staphylococcique staphylococcique ADJ m s 0.01 0.00 0.01 0.00 +staphylocoque staphylocoque NOM m s 0.11 0.00 0.09 0.00 +staphylocoques staphylocoque NOM m p 0.11 0.00 0.02 0.00 +star_system star_system NOM m s 0.01 0.00 0.01 0.00 +star star NOM f s 39.34 9.86 28.91 6.35 +starking starking NOM f s 0.00 0.14 0.00 0.14 +starlette starlette NOM f s 0.39 1.22 0.21 0.54 +starlettes starlette NOM f p 0.39 1.22 0.18 0.68 +staroste staroste NOM m s 0.60 0.14 0.60 0.14 +stars star NOM f p 39.34 9.86 10.44 3.51 +start_up start_up NOM f 0.35 0.00 0.35 0.00 +starter starter NOM m s 1.00 0.34 1.00 0.34 +starting_gate starting_gate NOM f s 0.04 0.14 0.04 0.14 +stase stase NOM f s 1.23 0.07 1.23 0.07 +stat stat NOM s 0.05 0.00 0.05 0.00 +state stater VER 0.58 1.69 0.57 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stater stater VER 0.58 1.69 0.01 0.00 inf; +statices statice NOM m p 0.00 0.07 0.00 0.07 +station_service station_service NOM f s 4.22 3.58 3.95 3.24 +station_éclair station_éclair NOM f s 0.00 0.07 0.00 0.07 +station station NOM f s 29.71 24.26 26.73 17.97 +stationna stationner VER 1.67 8.85 0.00 0.07 ind:pas:3s; +stationnaient stationner VER 1.67 8.85 0.00 2.03 ind:imp:3p; +stationnaire stationnaire ADJ s 0.64 0.41 0.64 0.41 +stationnait stationner VER 1.67 8.85 0.00 1.89 ind:imp:3s; +stationnant stationner VER 1.67 8.85 0.01 0.41 par:pre; +stationne stationner VER 1.67 8.85 0.30 0.61 imp:pre:2s;ind:pre:3s; +stationnement stationnement NOM m s 1.83 2.64 1.79 2.64 +stationnements stationnement NOM m p 1.83 2.64 0.04 0.00 +stationnent stationner VER 1.67 8.85 0.10 0.41 ind:pre:3p; +stationner stationner VER 1.67 8.85 0.47 0.81 inf; +stationnera stationner VER 1.67 8.85 0.01 0.07 ind:fut:3s; +stationnez stationner VER 1.67 8.85 0.07 0.00 imp:pre:2p;ind:pre:2p; +stationnions stationner VER 1.67 8.85 0.00 0.07 ind:imp:1p; +stationnèrent stationner VER 1.67 8.85 0.00 0.07 ind:pas:3p; +stationné stationner VER m s 1.67 8.85 0.41 0.68 par:pas; +stationnée stationner VER f s 1.67 8.85 0.09 0.81 par:pas; +stationnées stationner VER f p 1.67 8.85 0.14 0.61 par:pas; +stationnés stationner VER m p 1.67 8.85 0.06 0.34 par:pas; +station_service station_service NOM f p 4.22 3.58 0.27 0.34 +stations station NOM f p 29.71 24.26 2.98 6.28 +statique statique ADJ s 0.65 1.42 0.61 1.28 +statiques statique ADJ p 0.65 1.42 0.03 0.14 +statisticien statisticien NOM m s 0.10 0.00 0.09 0.00 +statisticienne statisticien NOM f s 0.10 0.00 0.01 0.00 +statistique statistique ADJ s 1.13 0.88 0.61 0.47 +statistiquement statistiquement ADV 0.91 0.07 0.91 0.07 +statistiquer statistiquer VER 0.00 0.07 0.00 0.07 inf; +statistiques statistique NOM f p 5.11 3.45 4.59 3.31 +statère statère NOM m s 0.00 0.74 0.00 0.68 +statères statère NOM m p 0.00 0.74 0.00 0.07 +statu_quo statu_quo NOM m s 0.94 1.08 0.94 1.08 +statuaient statuer VER 0.71 1.01 0.00 0.07 ind:imp:3p; +statuaire statuaire NOM s 0.00 0.88 0.00 0.88 +statuant statuer VER 0.71 1.01 0.01 0.07 par:pre; +statue statue NOM f s 19.50 42.84 15.42 25.54 +statuer statuer VER 0.71 1.01 0.27 0.34 inf; +statuera statuer VER 0.71 1.01 0.02 0.07 ind:fut:3s; +statuerai statuer VER 0.71 1.01 0.01 0.00 ind:fut:1s; +statuerait statuer VER 0.71 1.01 0.00 0.07 cnd:pre:3s; +statues statue NOM f p 19.50 42.84 4.08 17.30 +statuette statuette NOM f s 0.54 4.93 0.37 3.45 +statuettes statuette NOM f p 0.54 4.93 0.17 1.49 +statufia statufier VER 0.06 1.28 0.00 0.07 ind:pas:3s; +statufiais statufier VER 0.06 1.28 0.00 0.07 ind:imp:1s; +statufiait statufier VER 0.06 1.28 0.00 0.07 ind:imp:3s; +statufiant statufier VER 0.06 1.28 0.00 0.14 par:pre; +statufier statufier VER 0.06 1.28 0.01 0.14 inf; +statufièrent statufier VER 0.06 1.28 0.01 0.00 ind:pas:3p; +statufié statufier VER m s 0.06 1.28 0.03 0.27 par:pas; +statufiée statufier VER f s 0.06 1.28 0.00 0.41 par:pas; +statufiées statufier VER f p 0.06 1.28 0.00 0.07 par:pas; +statufiés statufier VER m p 0.06 1.28 0.01 0.07 par:pas; +stature stature NOM f s 0.75 4.05 0.75 3.92 +statures stature NOM f p 0.75 4.05 0.00 0.14 +staturo_pondéral staturo_pondéral ADJ m s 0.01 0.00 0.01 0.00 +status status NOM m 0.22 0.14 0.22 0.14 +statut statut NOM m s 6.13 5.74 5.66 4.66 +statutaire statutaire ADJ f s 0.11 0.00 0.11 0.00 +statuts statut NOM m p 6.13 5.74 0.48 1.08 +statué statuer VER m s 0.71 1.01 0.19 0.00 par:pas; +stayer stayer NOM m s 0.00 0.47 0.00 0.47 +steak steak NOM m s 10.76 2.57 8.15 1.69 +steaks steak NOM m p 10.76 2.57 2.61 0.88 +steamboat steamboat NOM m s 0.04 0.00 0.04 0.00 +steamer steamer NOM m s 0.06 0.27 0.05 0.20 +steamers steamer NOM m p 0.06 0.27 0.01 0.07 +steeple_chase steeple_chase NOM m s 0.02 0.07 0.02 0.07 +steeple steeple NOM m s 0.09 0.07 0.08 0.07 +steeples steeple NOM m p 0.09 0.07 0.01 0.00 +stegomya stegomya NOM f s 0.00 0.07 0.00 0.07 +stellaire stellaire ADJ s 1.76 0.88 1.55 0.54 +stellaires stellaire ADJ p 1.76 0.88 0.21 0.34 +stem stem NOM m s 0.00 0.07 0.00 0.07 +stencil stencil NOM m s 0.01 0.07 0.01 0.07 +stendhalien stendhalien ADJ m s 0.00 0.07 0.00 0.07 +stendhalien stendhalien NOM m s 0.00 0.07 0.00 0.07 +stentor stentor NOM m s 0.04 0.88 0.04 0.81 +stentors stentor NOM m p 0.04 0.88 0.00 0.07 +steppe steppe NOM f s 2.78 18.65 1.57 12.97 +stepper stepper NOM m s 0.09 0.00 0.07 0.00 +steppers stepper NOM m p 0.09 0.00 0.01 0.00 +steppes steppe NOM f p 2.78 18.65 1.21 5.68 +stercoraire stercoraire ADJ m s 0.00 0.07 0.00 0.07 +stercoraires stercoraire NOM m p 0.00 0.07 0.00 0.07 +sterling sterling ADJ 0.93 0.61 0.93 0.61 +sternal sternal ADJ m s 0.26 0.14 0.04 0.14 +sternale sternal ADJ f s 0.26 0.14 0.22 0.00 +sterne sterne NOM f s 0.01 0.14 0.00 0.07 +sternes sterne NOM f p 0.01 0.14 0.01 0.07 +sterno_cléido_mastoïdien sterno_cléido_mastoïdien ADJ m s 0.01 0.00 0.01 0.00 +sternum sternum NOM m s 0.97 0.81 0.97 0.81 +stetson stetson NOM m s 0.21 0.07 0.21 0.07 +steward steward NOM m s 0.00 1.35 0.00 1.35 +sèche_cheveux sèche_cheveux NOM m 0.97 0.00 0.97 0.00 +sèche_linge sèche_linge NOM m 0.74 0.00 0.74 0.00 +sèche_mains sèche_mains NOM m 0.04 0.00 0.04 0.00 +sèche sec ADJ f s 43.02 142.84 8.72 35.00 +sèchement sèchement ADV 0.35 11.55 0.35 11.55 +sèchent sécher VER 19.49 40.41 0.57 2.57 ind:pre:3p; +sèches sec ADJ f p 43.02 142.84 2.00 18.45 +sème semer VER 19.80 25.41 4.35 1.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sèment semer VER 19.80 25.41 0.94 0.54 ind:pre:3p; +sèmera semer VER 19.80 25.41 0.18 0.00 ind:fut:3s; +sèmerai semer VER 19.80 25.41 0.01 0.07 ind:fut:1s; +sèmerais semer VER 19.80 25.41 0.01 0.00 cnd:pre:2s; +sèmerait semer VER 19.80 25.41 0.06 0.14 cnd:pre:3s; +sèmeras semer VER 19.80 25.41 0.01 0.00 ind:fut:2s; +sèmerez semer VER 19.80 25.41 0.01 0.00 ind:fut:2p; +sèmerions semer VER 19.80 25.41 0.00 0.07 cnd:pre:1p; +sèmerons semer VER 19.80 25.41 0.01 0.07 ind:fut:1p; +sèmeront semer VER 19.80 25.41 0.01 0.07 ind:fut:3p; +sèmes semer VER 19.80 25.41 0.32 0.14 ind:pre:2s; +sève sève NOM f s 3.19 7.91 3.19 7.03 +sèves sève NOM f p 3.19 7.91 0.00 0.88 +sèvres sèvres NOM m 0.01 0.07 0.01 0.07 +stick stick NOM m s 0.78 0.95 0.54 0.95 +sticker sticker NOM m s 0.04 0.00 0.04 0.00 +sticks stick NOM m p 0.78 0.95 0.23 0.00 +stigma stigma NOM m s 0.00 0.07 0.00 0.07 +stigmate stigmate NOM m s 0.99 3.11 0.16 0.27 +stigmates stigmate NOM m p 0.99 3.11 0.83 2.84 +stigmatisaient stigmatiser VER 0.18 0.74 0.00 0.07 ind:imp:3p; +stigmatisait stigmatiser VER 0.18 0.74 0.00 0.14 ind:imp:3s; +stigmatisant stigmatiser VER 0.18 0.74 0.01 0.20 par:pre; +stigmatiser stigmatiser VER 0.18 0.74 0.01 0.14 inf; +stigmatisé stigmatiser VER m s 0.18 0.74 0.02 0.00 par:pas; +stigmatisée stigmatiser VER f s 0.18 0.74 0.14 0.14 par:pas; +stigmatisés stigmatisé ADJ m p 0.06 0.07 0.05 0.00 +stilton stilton NOM m s 0.04 0.20 0.04 0.20 +stimula stimuler VER 4.60 4.05 0.00 0.14 ind:pas:3s; +stimulaient stimuler VER 4.60 4.05 0.01 0.07 ind:imp:3p; +stimulait stimuler VER 4.60 4.05 0.03 0.41 ind:imp:3s; +stimulant stimulant NOM m s 1.81 0.47 1.47 0.27 +stimulante stimulant ADJ f s 1.97 1.55 0.33 0.41 +stimulantes stimulant ADJ f p 1.97 1.55 0.04 0.07 +stimulants stimulant NOM m p 1.81 0.47 0.35 0.20 +stimulateur stimulateur NOM m s 0.42 0.00 0.42 0.00 +stimulation stimulation NOM f s 1.29 0.27 1.23 0.27 +stimulations stimulation NOM f p 1.29 0.27 0.05 0.00 +stimule stimuler VER 4.60 4.05 1.58 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stimulent stimuler VER 4.60 4.05 0.08 0.20 ind:pre:3p; +stimuler stimuler VER 4.60 4.05 1.45 1.22 inf; +stimulera stimuler VER 4.60 4.05 0.09 0.00 ind:fut:3s; +stimulerait stimuler VER 4.60 4.05 0.12 0.07 cnd:pre:3s; +stimuleront stimuler VER 4.60 4.05 0.02 0.00 ind:fut:3p; +stimulez stimuler VER 4.60 4.05 0.01 0.00 imp:pre:2p; +stimuli stimulus NOM m p 0.84 0.14 0.45 0.00 +stimulons stimuler VER 4.60 4.05 0.02 0.00 imp:pre:1p;ind:pre:1p; +stimulé stimuler VER m s 4.60 4.05 0.66 0.41 par:pas; +stimulée stimuler VER f s 4.60 4.05 0.09 0.27 par:pas; +stimulées stimuler VER f p 4.60 4.05 0.03 0.07 par:pas; +stimulus_réponse stimulus_réponse NOM m 0.00 0.14 0.00 0.14 +stimulés stimuler VER m p 4.60 4.05 0.16 0.20 par:pas; +stimulus stimulus NOM m 0.84 0.14 0.39 0.14 +stipendiés stipendier VER m p 0.00 0.14 0.00 0.14 par:pas; +stipes stipe NOM m p 0.01 0.07 0.01 0.07 +stipulait stipuler VER 1.81 0.54 0.21 0.00 ind:imp:3s; +stipulant stipuler VER 1.81 0.54 0.10 0.27 par:pre; +stipulation stipulation NOM f s 0.02 0.20 0.01 0.00 +stipulations stipulation NOM f p 0.02 0.20 0.01 0.20 +stipule stipuler VER 1.81 0.54 0.98 0.20 imp:pre:2s;ind:pre:3s; +stipulent stipuler VER 1.81 0.54 0.14 0.00 ind:pre:3p; +stipuler stipuler VER 1.81 0.54 0.03 0.00 inf; +stipulé stipuler VER m s 1.81 0.54 0.29 0.07 par:pas; +stipulée stipuler VER f s 1.81 0.54 0.01 0.00 par:pas; +stipulées stipuler VER f p 1.81 0.54 0.03 0.00 par:pas; +stipulés stipuler VER m p 1.81 0.54 0.01 0.00 par:pas; +stoïcien stoïcien ADJ m s 0.01 0.34 0.01 0.34 +stoïciens stoïcien NOM m p 0.01 0.61 0.01 0.41 +stoïcisme stoïcisme NOM m s 0.07 0.61 0.07 0.61 +stoïque stoïque ADJ s 0.39 0.95 0.35 0.88 +stoïquement stoïquement ADV 0.00 0.27 0.00 0.27 +stoïques stoïque ADJ p 0.39 0.95 0.03 0.07 +stochastique stochastique ADJ m s 0.01 0.00 0.01 0.00 +stock_car stock_car NOM m s 0.19 0.14 0.16 0.14 +stock_car stock_car NOM m p 0.19 0.14 0.03 0.00 +stock_option stock_option NOM f p 0.18 0.00 0.18 0.00 +stock stock NOM m s 5.66 7.91 4.23 4.80 +stockage stockage NOM m s 1.33 0.47 1.32 0.41 +stockages stockage NOM m p 1.33 0.47 0.01 0.07 +stockaient stocker VER 3.54 1.15 0.07 0.07 ind:imp:3p; +stockait stocker VER 3.54 1.15 0.06 0.20 ind:imp:3s; +stocke stocker VER 3.54 1.15 0.48 0.00 ind:pre:1s;ind:pre:3s; +stockent stocker VER 3.54 1.15 0.20 0.14 ind:pre:3p; +stocker stocker VER 3.54 1.15 1.22 0.14 inf; +stockez stocker VER 3.54 1.15 0.17 0.00 imp:pre:2p;ind:pre:2p; +stockons stocker VER 3.54 1.15 0.04 0.00 imp:pre:1p;ind:pre:1p; +stocks stock NOM m p 5.66 7.91 1.44 3.11 +stocké stocker VER m s 3.54 1.15 0.31 0.27 par:pas; +stockée stocker VER f s 3.54 1.15 0.24 0.00 par:pas; +stockées stocker VER f p 3.54 1.15 0.50 0.14 par:pas; +stockés stocker VER m p 3.54 1.15 0.24 0.20 par:pas; +stoker stoker NOM m s 0.65 0.00 0.65 0.00 +stokes stokes NOM m 0.10 0.00 0.10 0.00 +stomacal stomacal ADJ m s 0.06 0.61 0.03 0.27 +stomacale stomacal ADJ f s 0.06 0.61 0.03 0.14 +stomacales stomacal ADJ f p 0.06 0.61 0.00 0.14 +stomacaux stomacal ADJ m p 0.06 0.61 0.00 0.07 +stomates stomate NOM m p 0.01 0.00 0.01 0.00 +stomie stomie NOM f s 0.02 0.00 0.02 0.00 +stomoxys stomoxys NOM m 0.27 0.00 0.27 0.00 +stone stone ADJ s 2.06 2.16 1.11 0.34 +stones stone ADJ p 2.06 2.16 0.94 1.82 +stop stop NOM m s 44.50 6.76 44.36 6.49 +stoppa stopper VER 9.46 15.61 0.11 2.36 ind:pas:3s; +stoppage stoppage NOM m s 0.00 0.14 0.00 0.14 +stoppai stopper VER 9.46 15.61 0.00 0.07 ind:pas:1s; +stoppaient stopper VER 9.46 15.61 0.00 0.20 ind:imp:3p; +stoppais stopper VER 9.46 15.61 0.00 0.07 ind:imp:1s; +stoppait stopper VER 9.46 15.61 0.01 0.68 ind:imp:3s; +stoppant stopper VER 9.46 15.61 0.01 0.34 par:pre; +stoppe stopper VER 9.46 15.61 0.54 2.91 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stoppent stopper VER 9.46 15.61 0.06 0.14 ind:pre:3p; +stopper stopper VER 9.46 15.61 4.88 3.11 inf; +stoppera stopper VER 9.46 15.61 0.09 0.00 ind:fut:3s; +stopperai stopper VER 9.46 15.61 0.02 0.00 ind:fut:1s; +stopperiez stopper VER 9.46 15.61 0.01 0.00 cnd:pre:2p; +stoppes stopper VER 9.46 15.61 0.01 0.14 ind:pre:2s; +stoppeur stoppeur NOM m s 0.07 0.14 0.04 0.07 +stoppeurs stoppeur NOM m p 0.07 0.14 0.02 0.00 +stoppeuse stoppeur NOM f s 0.07 0.14 0.00 0.07 +stoppez stopper VER 9.46 15.61 1.33 0.00 imp:pre:2p;ind:pre:2p; +stoppions stopper VER 9.46 15.61 0.01 0.07 ind:imp:1p; +stoppons stopper VER 9.46 15.61 0.08 0.00 imp:pre:1p;ind:pre:1p; +stoppât stopper VER 9.46 15.61 0.00 0.07 sub:imp:3s; +stoppèrent stopper VER 9.46 15.61 0.10 0.61 ind:pas:3p; +stoppé stopper VER m s 9.46 15.61 1.60 3.38 par:pas; +stoppée stopper VER f s 9.46 15.61 0.44 0.74 par:pas; +stoppées stopper VER f p 9.46 15.61 0.03 0.20 par:pas; +stoppés stopper VER m p 9.46 15.61 0.13 0.54 par:pas; +stops stop NOM m p 44.50 6.76 0.14 0.27 +storage storage NOM m s 0.01 0.00 0.01 0.00 +store store NOM m s 3.59 7.09 1.35 4.12 +stores store NOM m p 3.59 7.09 2.23 2.97 +story_board story_board NOM m s 0.28 0.07 0.23 0.00 +story_board story_board NOM m p 0.28 0.07 0.03 0.00 +story_board story_board NOM m s 0.28 0.07 0.03 0.07 +stout stout NOM m s 0.45 0.14 0.45 0.14 +strabisme strabisme NOM m s 0.02 0.95 0.02 0.88 +strabismes strabisme NOM m p 0.02 0.95 0.00 0.07 +stradivarius stradivarius NOM m 0.04 0.07 0.04 0.07 +straight straight ADJ s 0.40 0.14 0.40 0.14 +stramoine stramoine NOM f s 0.01 0.00 0.01 0.00 +stramonium stramonium NOM m s 0.04 0.00 0.04 0.00 +strangula stranguler VER 0.02 0.47 0.01 0.07 ind:pas:3s; +strangulant stranguler VER 0.02 0.47 0.00 0.14 par:pre; +strangulation strangulation NOM f s 1.28 0.68 1.28 0.68 +stranguler stranguler VER 0.02 0.47 0.00 0.07 inf; +strangulé stranguler VER m s 0.02 0.47 0.00 0.20 par:pas; +strangulées stranguler VER f p 0.02 0.47 0.01 0.00 par:pas; +strapontin strapontin NOM m s 0.18 1.89 0.16 1.35 +strapontins strapontin NOM m p 0.18 1.89 0.03 0.54 +strasbourgeois strasbourgeois ADJ m s 0.14 0.54 0.14 0.47 +strasbourgeoise strasbourgeois ADJ f s 0.14 0.54 0.00 0.07 +strass strass NOM m 0.21 1.69 0.21 1.69 +strasse strasse NOM f s 0.39 0.20 0.39 0.20 +stratagème stratagème NOM m s 1.89 1.76 1.54 1.35 +stratagèmes stratagème NOM m p 1.89 1.76 0.34 0.41 +strate strate NOM f s 0.34 0.47 0.17 0.00 +strates strate NOM f p 0.34 0.47 0.17 0.47 +stratification stratification NOM f s 0.01 0.41 0.01 0.14 +stratifications stratification NOM f p 0.01 0.41 0.00 0.27 +stratifié stratifié ADJ m s 0.04 0.54 0.04 0.41 +stratifiée stratifier VER f s 0.01 0.00 0.01 0.00 par:pas; +stratifiées stratifié ADJ f p 0.04 0.54 0.00 0.07 +stratigraphique stratigraphique ADJ s 0.00 0.07 0.00 0.07 +stratosphère stratosphère NOM f s 0.62 0.68 0.62 0.68 +stratosphérique stratosphérique ADJ m s 0.02 0.14 0.02 0.07 +stratosphériques stratosphérique ADJ f p 0.02 0.14 0.00 0.07 +stratège stratège NOM m s 1.31 1.62 1.11 1.01 +stratèges stratège NOM m p 1.31 1.62 0.20 0.61 +stratégie stratégie NOM f s 9.80 7.23 8.96 6.89 +stratégies stratégie NOM f p 9.80 7.23 0.84 0.34 +stratégique stratégique ADJ s 3.21 10.14 2.26 6.96 +stratégiquement stratégiquement ADV 0.30 0.54 0.30 0.54 +stratégiques stratégique ADJ p 3.21 10.14 0.95 3.18 +stratégiste stratégiste NOM s 0.01 0.00 0.01 0.00 +stratus stratus NOM m 0.01 0.00 0.01 0.00 +strelitzia strelitzia NOM m s 0.01 0.00 0.01 0.00 +streptococcie streptococcie NOM f s 0.01 0.00 0.01 0.00 +streptococcique streptococcique ADJ f s 0.01 0.00 0.01 0.00 +streptocoque streptocoque NOM m s 0.18 0.07 0.18 0.07 +streptokinase streptokinase NOM f s 0.01 0.00 0.01 0.00 +streptomycine streptomycine NOM f s 0.04 0.14 0.04 0.14 +stress stress NOM m 10.85 0.41 10.85 0.41 +stressais stresser VER 7.34 0.34 0.11 0.00 ind:imp:1s; +stressait stresser VER 7.34 0.34 0.02 0.00 ind:imp:3s; +stressant stressant ADJ m s 1.81 0.00 1.16 0.00 +stressante stressant ADJ f s 1.81 0.00 0.45 0.00 +stressantes stressant ADJ f p 1.81 0.00 0.13 0.00 +stressants stressant ADJ m p 1.81 0.00 0.07 0.00 +stresse stresser VER 7.34 0.34 1.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stressent stresser VER 7.34 0.34 0.13 0.00 ind:pre:3p; +stresser stresser VER 7.34 0.34 0.75 0.00 inf; +stressera stresser VER 7.34 0.34 0.01 0.00 ind:fut:3s; +stresserai stresser VER 7.34 0.34 0.01 0.00 ind:fut:1s; +stressé stresser VER m s 7.34 0.34 2.94 0.14 par:pas; +stressée stresser VER f s 7.34 0.34 1.81 0.14 par:pas; +stressées stresser VER f p 7.34 0.34 0.07 0.00 par:pas; +stressés stresser VER m p 7.34 0.34 0.35 0.07 par:pas; +stretch stretch NOM m s 0.29 0.20 0.29 0.20 +stretching stretching NOM m s 0.28 0.00 0.28 0.00 +striaient strier VER 0.03 4.26 0.01 0.20 ind:imp:3p; +striait strier VER 0.03 4.26 0.00 0.27 ind:imp:3s; +striations striation NOM f p 0.09 0.00 0.09 0.00 +strict strict ADJ m s 7.66 14.39 3.36 7.03 +stricte strict ADJ f s 7.66 14.39 2.58 5.27 +strictement strictement ADV 4.95 7.91 4.95 7.91 +strictes strict ADJ f p 7.66 14.39 1.18 1.22 +stricto_sensu stricto_sensu ADV 0.01 0.00 0.01 0.00 +stricts strict ADJ m p 7.66 14.39 0.54 0.88 +stridence stridence NOM f s 0.01 1.96 0.01 0.95 +stridences stridence NOM f p 0.01 1.96 0.00 1.01 +strident strident ADJ m s 0.74 7.30 0.40 3.04 +stridente strident ADJ f s 0.74 7.30 0.14 1.15 +stridentes strident ADJ f p 0.74 7.30 0.02 1.01 +stridents strident ADJ m p 0.74 7.30 0.19 2.09 +strider strider VER 0.12 0.00 0.12 0.00 inf; +stridor stridor NOM m s 0.04 0.00 0.04 0.00 +stridulait striduler VER 0.00 0.20 0.00 0.07 ind:imp:3s; +stridulation stridulation NOM f s 0.16 0.27 0.02 0.14 +stridulations stridulation NOM f p 0.16 0.27 0.14 0.14 +stridule striduler VER 0.00 0.20 0.00 0.07 ind:pre:3s; +striduler striduler VER 0.00 0.20 0.00 0.07 inf; +striduleuse striduleux ADJ f s 0.00 0.07 0.00 0.07 +strie strie NOM f s 0.73 1.82 0.05 0.07 +strient strier VER 0.03 4.26 0.00 0.07 ind:pre:3p; +strier strier VER 0.03 4.26 0.00 0.14 inf; +stries strie NOM f p 0.73 1.82 0.68 1.76 +string string NOM m s 3.90 0.34 2.59 0.34 +strings string NOM m p 3.90 0.34 1.31 0.00 +strip_poker strip_poker NOM m s 0.08 0.07 0.08 0.07 +strip_tease strip_tease NOM m s 4.04 1.01 3.63 0.95 +strip_tease strip_tease NOM m p 4.04 1.01 0.41 0.07 +strip_teaseur strip_teaseur NOM m s 3.23 0.47 0.11 0.00 +strip_teaseur strip_teaseur NOM m p 3.23 0.47 0.14 0.00 +strip_teaseur strip_teaseur NOM f s 3.23 0.47 2.98 0.27 +strip_teaseuse strip_teaseuse NOM f p 0.79 0.00 0.79 0.00 +strip strip NOM m s 2.44 0.27 2.44 0.27 +stripper stripper VER 0.01 0.00 0.01 0.00 inf; +striptease striptease NOM m s 0.60 0.00 0.60 0.00 +stripteaseuse stripteaseur NOM f s 0.26 0.20 0.26 0.14 +stripteaseuses stripteaseuse NOM f p 0.19 0.00 0.19 0.00 +strié strié ADJ m s 0.06 0.74 0.03 0.14 +striée strier VER f s 0.03 4.26 0.01 0.81 par:pas; +striées strié ADJ f p 0.06 0.74 0.01 0.14 +striures striure NOM f p 0.05 0.41 0.05 0.41 +striés strié ADJ m p 0.06 0.74 0.01 0.20 +stroboscope stroboscope NOM m s 0.05 0.00 0.05 0.00 +stroboscopique stroboscopique ADJ m s 0.10 0.00 0.10 0.00 +strontiane strontiane NOM f s 0.00 0.07 0.00 0.07 +strontium strontium NOM m s 0.06 0.07 0.06 0.07 +strophe strophe NOM f s 0.30 2.16 0.26 0.81 +strophes strophe NOM f p 0.30 2.16 0.04 1.35 +stropiats stropiat NOM m p 0.00 0.68 0.00 0.68 +structura structurer VER 0.51 1.22 0.00 0.47 ind:pas:3s; +structuraient structurer VER 0.51 1.22 0.00 0.07 ind:imp:3p; +structurait structurer VER 0.51 1.22 0.00 0.14 ind:imp:3s; +structural structural ADJ m s 0.06 0.27 0.00 0.20 +structurale structural ADJ f s 0.06 0.27 0.04 0.07 +structuralement structuralement ADV 0.00 0.07 0.00 0.07 +structurales structural ADJ f p 0.06 0.27 0.01 0.00 +structuralisme structuralisme NOM m s 0.00 0.14 0.00 0.14 +structuraliste structuraliste ADJ s 0.01 0.07 0.01 0.00 +structuralistes structuraliste ADJ m p 0.01 0.07 0.00 0.07 +structurant structurer VER 0.51 1.22 0.01 0.00 par:pre; +structurations structuration NOM f p 0.00 0.07 0.00 0.07 +structuraux structural ADJ m p 0.06 0.27 0.01 0.00 +structure structure NOM f s 8.74 7.70 7.81 5.88 +structurel structurel ADJ m s 0.59 0.00 0.12 0.00 +structurelle structurel ADJ f s 0.59 0.00 0.27 0.00 +structurellement structurellement ADV 0.05 0.00 0.05 0.00 +structurels structurel ADJ m p 0.59 0.00 0.20 0.00 +structurent structurer VER 0.51 1.22 0.00 0.14 ind:pre:3p; +structurer structurer VER 0.51 1.22 0.14 0.00 inf; +structures structure NOM f p 8.74 7.70 0.93 1.82 +structuré structurer VER m s 0.51 1.22 0.29 0.27 par:pas; +structurée structuré ADJ f s 0.25 0.54 0.07 0.07 +structurés structuré ADJ m p 0.25 0.54 0.14 0.00 +strudel strudel NOM m s 0.46 0.41 0.37 0.07 +strudels strudel NOM m p 0.46 0.41 0.09 0.34 +struggle_for_life struggle_for_life NOM m 0.00 0.07 0.00 0.07 +strychnine strychnine NOM f s 0.74 0.20 0.74 0.20 +strychnos strychnos NOM m 0.01 0.00 0.01 0.00 +stryges stryge NOM f p 0.00 0.07 0.00 0.07 +stèle stèle NOM f s 0.35 2.57 0.31 1.49 +stèles stèle NOM f p 0.35 2.57 0.04 1.08 +stère stère NOM m s 0.04 0.61 0.01 0.14 +stères stère NOM m p 0.04 0.61 0.03 0.47 +stéarate stéarate NOM m s 0.01 0.00 0.01 0.00 +stéarique stéarique ADJ s 0.01 0.00 0.01 0.00 +stéatopyges stéatopyge ADJ m p 0.00 0.07 0.00 0.07 +stuc stuc NOM m s 0.16 1.89 0.15 1.55 +stucs stuc NOM m p 0.16 1.89 0.01 0.34 +studette studette NOM f s 0.00 0.07 0.00 0.07 +studieuse studieux ADJ f s 0.67 4.05 0.09 1.42 +studieusement studieusement ADV 0.00 0.27 0.00 0.27 +studieuses studieux ADJ f p 0.67 4.05 0.04 0.81 +studieux studieux ADJ m 0.67 4.05 0.54 1.82 +studio studio NOM m s 27.77 22.09 20.95 18.85 +studiolo studiolo NOM m s 0.01 0.00 0.01 0.00 +studios studio NOM m p 27.77 22.09 6.82 3.24 +stégosaure stégosaure NOM m s 0.06 0.00 0.06 0.00 +stuka stuka NOM m s 0.05 1.15 0.02 0.34 +stukas stuka NOM m p 0.05 1.15 0.03 0.81 +sténo sténo NOM s 0.86 0.61 0.80 0.54 +sténodactylo sténodactylo NOM s 0.02 0.14 0.02 0.14 +sténodactylographie sténodactylographie NOM f s 0.00 0.07 0.00 0.07 +sténographe sténographe NOM s 0.08 0.00 0.08 0.00 +sténographiai sténographier VER 0.00 0.07 0.00 0.07 ind:pas:1s; +sténographie sténographie NOM f s 0.32 0.14 0.32 0.14 +sténographique sténographique ADJ m s 0.02 0.07 0.02 0.00 +sténographiques sténographique ADJ m p 0.02 0.07 0.00 0.07 +sténopé sténopé NOM m s 0.07 0.14 0.07 0.07 +sténopés sténopé NOM m p 0.07 0.14 0.00 0.07 +sténos sténo NOM p 0.86 0.61 0.06 0.07 +sténose sténose NOM f s 0.07 0.00 0.07 0.00 +sténotype sténotype NOM f s 0.01 0.00 0.01 0.00 +sténotypiste sténotypiste NOM s 0.02 0.07 0.02 0.00 +sténotypistes sténotypiste NOM p 0.02 0.07 0.00 0.07 +stup stups NOM m s 2.47 0.20 0.20 0.00 +stupas stupa NOM m p 0.00 0.07 0.00 0.07 +stupeur stupeur NOM f s 1.57 24.05 1.57 24.05 +stéphanois stéphanois NOM m 0.27 0.14 0.27 0.14 +stupide stupide ADJ s 71.75 27.50 60.06 21.76 +stupidement stupidement ADV 0.82 5.07 0.82 5.07 +stupides stupide ADJ p 71.75 27.50 11.70 5.74 +stupidité stupidité NOM f s 3.63 3.31 2.98 2.77 +stupidités stupidité NOM f p 3.63 3.31 0.65 0.54 +stuporeuse stuporeux ADJ f s 0.00 0.07 0.00 0.07 +stupre stupre NOM m s 0.14 0.81 0.14 0.81 +stups stups NOM m p 2.47 0.20 2.26 0.20 +stupéfaction stupéfaction NOM f s 0.36 8.04 0.36 8.04 +stupéfait stupéfait ADJ m s 2.25 14.73 1.43 8.24 +stupéfaite stupéfait ADJ f s 2.25 14.73 0.48 4.05 +stupéfaites stupéfait ADJ f p 2.25 14.73 0.00 0.14 +stupéfaits stupéfait ADJ m p 2.25 14.73 0.34 2.30 +stupéfia stupéfier VER 0.98 5.07 0.02 0.54 ind:pas:3s; +stupéfiaient stupéfier VER 0.98 5.07 0.00 0.07 ind:imp:3p; +stupéfiait stupéfier VER 0.98 5.07 0.00 1.08 ind:imp:3s; +stupéfiant stupéfiant ADJ m s 2.80 6.49 1.77 2.36 +stupéfiante stupéfiant ADJ f s 2.80 6.49 0.60 3.58 +stupéfiantes stupéfiant ADJ f p 2.80 6.49 0.09 0.34 +stupéfiants stupéfiant NOM m p 2.69 0.88 1.54 0.47 +stupéfie stupéfier VER 0.98 5.07 0.22 0.68 ind:pre:3s; +stupéfient stupéfier VER 0.98 5.07 0.04 0.14 ind:pre:3p; +stupéfier stupéfier VER 0.98 5.07 0.15 0.20 inf; +stupéfierait stupéfier VER 0.98 5.07 0.00 0.07 cnd:pre:3s; +stupéfiez stupéfier VER 0.98 5.07 0.04 0.00 ind:pre:2p; +stupéfié stupéfier VER m s 0.98 5.07 0.26 1.55 par:pas; +stupéfiée stupéfier VER f s 0.98 5.07 0.11 0.54 par:pas; +stupéfiées stupéfier VER f p 0.98 5.07 0.10 0.07 par:pas; +stupéfiés stupéfier VER m p 0.98 5.07 0.01 0.07 par:pas; +stérile stérile ADJ s 7.07 11.69 5.59 9.59 +stérilement stérilement ADV 0.00 0.20 0.00 0.20 +stériles stérile ADJ p 7.07 11.69 1.48 2.09 +stérilet stérilet NOM m s 0.11 0.61 0.11 0.61 +stérilisa stériliser VER 1.49 0.81 0.00 0.07 ind:pas:3s; +stérilisait stériliser VER 1.49 0.81 0.00 0.07 ind:imp:3s; +stérilisant stériliser VER 1.49 0.81 0.02 0.00 par:pre; +stérilisante stérilisant ADJ f s 0.01 0.14 0.00 0.07 +stérilisantes stérilisant ADJ f p 0.01 0.14 0.00 0.07 +stérilisateur stérilisateur NOM m s 0.18 0.00 0.18 0.00 +stérilisation stérilisation NOM f s 0.37 0.07 0.37 0.00 +stérilisations stérilisation NOM f p 0.37 0.07 0.00 0.07 +stérilise stériliser VER 1.49 0.81 0.22 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +stérilisent stériliser VER 1.49 0.81 0.04 0.00 ind:pre:3p; +stériliser stériliser VER 1.49 0.81 0.76 0.27 inf; +stérilisez stériliser VER 1.49 0.81 0.17 0.00 imp:pre:2p;ind:pre:2p; +stérilisé stériliser VER m s 1.49 0.81 0.17 0.20 par:pas; +stérilisée stérilisé ADJ f s 0.23 0.41 0.06 0.34 +stérilisées stériliser VER f p 1.49 0.81 0.02 0.07 par:pas; +stérilisés stériliser VER m p 1.49 0.81 0.06 0.00 par:pas; +stérilité stérilité NOM f s 1.09 2.91 1.09 2.91 +stéroïde stéroïde ADJ m s 2.00 0.00 0.13 0.00 +stéroïdes stéroïde ADJ p 2.00 0.00 1.88 0.00 +stéréo stéréo NOM f s 2.51 1.15 2.47 1.15 +stéréophonie stéréophonie NOM f s 0.01 0.27 0.01 0.27 +stéréophonique stéréophonique ADJ m s 0.04 0.14 0.04 0.14 +stéréos stéréo NOM f p 2.51 1.15 0.04 0.00 +stéréoscope stéréoscope NOM m s 0.01 0.27 0.01 0.27 +stéréoscopie stéréoscopie NOM f s 0.00 0.07 0.00 0.07 +stéréoscopique stéréoscopique ADJ s 0.02 0.20 0.02 0.20 +stéréotype stéréotype NOM m s 0.54 1.22 0.23 0.54 +stéréotyper stéréotyper VER 0.05 0.61 0.01 0.00 inf; +stéréotypes stéréotype NOM m p 0.54 1.22 0.31 0.68 +stéréotypie stéréotypie NOM f s 0.00 0.07 0.00 0.07 +stéréotypé stéréotypé ADJ m s 0.16 0.68 0.03 0.20 +stéréotypée stéréotypé ADJ f s 0.16 0.68 0.01 0.20 +stéréotypées stéréotyper VER f p 0.05 0.61 0.02 0.07 par:pas; +stéréotypés stéréotypé ADJ m p 0.16 0.68 0.11 0.14 +stéthoscope stéthoscope NOM m s 0.50 0.68 0.48 0.54 +stéthoscopes stéthoscope NOM m p 0.50 0.68 0.02 0.14 +stygien stygien ADJ m s 0.01 0.00 0.01 0.00 +style style NOM m s 32.34 46.62 31.08 45.14 +styler styler VER 0.29 1.55 0.04 0.00 inf; +styles style NOM m p 32.34 46.62 1.26 1.49 +stylet stylet NOM m s 0.07 0.74 0.07 0.61 +stylets stylet NOM m p 0.07 0.74 0.00 0.14 +stylisa styliser VER 0.44 1.96 0.00 0.07 ind:pas:3s; +stylisation stylisation NOM f s 0.01 0.00 0.01 0.00 +stylise styliser VER 0.44 1.96 0.02 0.07 ind:pre:1s;ind:pre:3s; +stylisme stylisme NOM m s 0.23 0.07 0.23 0.07 +styliste styliste NOM s 1.34 0.54 1.17 0.34 +stylistes styliste NOM p 1.34 0.54 0.17 0.20 +stylistique stylistique ADJ m s 0.11 0.20 0.11 0.14 +stylistiques stylistique ADJ p 0.11 0.20 0.00 0.07 +stylisé styliser VER m s 0.44 1.96 0.30 0.74 par:pas; +stylisée styliser VER f s 0.44 1.96 0.12 0.41 par:pas; +stylisées styliser VER f p 0.44 1.96 0.00 0.34 par:pas; +stylisés styliser VER m p 0.44 1.96 0.00 0.34 par:pas; +stylite stylite NOM m s 0.00 0.27 0.00 0.27 +stylo_bille stylo_bille NOM m s 0.17 0.14 0.17 0.14 +stylo_feutre stylo_feutre NOM m s 0.00 0.27 0.00 0.14 +stylo stylo NOM m s 17.73 12.77 15.34 10.61 +styloïde styloïde ADJ s 0.01 0.00 0.01 0.00 +stylobille stylobille NOM m s 0.00 0.27 0.00 0.27 +stylographe stylographe NOM m s 0.01 0.47 0.01 0.41 +stylographes stylographe NOM m p 0.01 0.47 0.00 0.07 +stylomine stylomine NOM m s 0.00 0.54 0.00 0.54 +stylo_feutre stylo_feutre NOM m p 0.00 0.27 0.00 0.14 +stylos stylo NOM m p 17.73 12.77 2.39 2.16 +stylé stylé ADJ m s 0.20 0.88 0.11 0.54 +stylée stylé ADJ f s 0.20 0.88 0.05 0.27 +stylées stylé ADJ f p 0.20 0.88 0.01 0.07 +stylés stylé ADJ m p 0.20 0.88 0.03 0.00 +styrax styrax NOM m 0.00 0.07 0.00 0.07 +styrène styrène NOM m s 0.04 0.00 0.04 0.00 +su savoir VER m s 4516.72 2003.58 83.37 77.64 par:pas; +sua suer VER 7.28 10.34 0.00 0.47 ind:pas:3s; +suaient suer VER 7.28 10.34 0.00 0.41 ind:imp:3p; +suaire suaire NOM m s 0.30 2.64 0.28 1.82 +suaires suaire NOM m p 0.30 2.64 0.02 0.81 +suais suer VER 7.28 10.34 0.07 0.54 ind:imp:1s; +suait suer VER 7.28 10.34 0.04 2.09 ind:imp:3s; +séance séance NOM f s 22.91 32.36 18.49 22.30 +séances séance NOM f p 22.91 32.36 4.43 10.07 +suant suant ADJ m s 0.25 2.43 0.20 1.15 +séant séant NOM m s 0.04 1.42 0.04 1.42 +suante suant ADJ f s 0.25 2.43 0.02 0.34 +séante séant ADJ f s 0.04 0.27 0.01 0.00 +suantes suant ADJ f p 0.25 2.43 0.01 0.20 +suants suant ADJ m p 0.25 2.43 0.02 0.74 +suave suave ADJ s 1.11 7.43 0.94 5.47 +suavement suavement ADV 0.01 0.61 0.01 0.61 +suaves suave ADJ p 1.11 7.43 0.17 1.96 +suavité suavité NOM f s 0.02 1.55 0.02 1.55 +sub_aquatique sub_aquatique ADJ f s 0.00 0.07 0.00 0.07 +sub_atomique sub_atomique ADJ s 0.07 0.00 0.04 0.00 +sub_atomique sub_atomique ADJ p 0.07 0.00 0.04 0.00 +sub_claquant sub_claquant ADJ m s 0.01 0.00 0.01 0.00 +sub_espace sub_espace NOM m s 0.08 0.00 0.08 0.00 +sub_normaux sub_normaux ADJ m p 0.14 0.00 0.14 0.00 +sub_nucléaire sub_nucléaire ADJ f p 0.01 0.00 0.01 0.00 +sub_vocal sub_vocal ADJ m s 0.01 0.07 0.01 0.07 +sub_véhiculaire sub_véhiculaire ADJ s 0.01 0.00 0.01 0.00 +sub_zéro sub_zéro NOM m s 0.01 0.00 0.01 0.00 +sub sub ADV 0.22 0.20 0.22 0.20 +subît subir VER 30.13 53.72 0.00 0.07 sub:imp:3s; +subîtes subir VER 30.13 53.72 0.00 0.07 ind:pas:2p; +sébacé sébacé ADJ m s 0.10 0.14 0.05 0.00 +sébacée sébacé ADJ f s 0.10 0.14 0.01 0.00 +sébacées sébacé ADJ f p 0.10 0.14 0.04 0.14 +subaiguë subaigu ADJ f s 0.01 0.00 0.01 0.00 +subalterne subalterne NOM s 0.42 1.49 0.28 0.47 +subalternes subalterne ADJ p 0.58 2.36 0.46 1.42 +subaquatique subaquatique ADJ s 0.03 0.00 0.03 0.00 +sébaste sébaste NOM m s 0.01 0.00 0.01 0.00 +subatomique subatomique ADJ s 0.33 0.00 0.13 0.00 +subatomiques subatomique ADJ p 0.33 0.00 0.19 0.00 +subcarpatique subcarpatique ADJ f s 0.00 0.07 0.00 0.07 +subcellulaire subcellulaire ADJ s 0.02 0.00 0.02 0.00 +subconsciemment subconsciemment ADV 0.04 0.00 0.04 0.00 +subconscient subconscient NOM m s 2.17 1.28 2.16 1.28 +subconsciente subconscient ADJ f s 0.27 0.34 0.04 0.00 +subconscientes subconscient ADJ f p 0.27 0.34 0.00 0.14 +subconscients subconscient NOM m p 2.17 1.28 0.01 0.00 +subculture subculture NOM f s 0.02 0.00 0.02 0.00 +subdivisa subdiviser VER 0.02 0.41 0.00 0.07 ind:pas:3s; +subdivisaient subdiviser VER 0.02 0.41 0.00 0.07 ind:imp:3p; +subdivisait subdiviser VER 0.02 0.41 0.00 0.14 ind:imp:3s; +subdivisent subdiviser VER 0.02 0.41 0.00 0.07 ind:pre:3p; +subdivision subdivision NOM f s 0.16 0.47 0.06 0.34 +subdivisions subdivision NOM f p 0.16 0.47 0.10 0.14 +subdivisé subdiviser VER m s 0.02 0.41 0.01 0.00 par:pas; +subdivisée subdiviser VER f s 0.02 0.41 0.01 0.00 par:pas; +subdivisés subdiviser VER m p 0.02 0.41 0.00 0.07 par:pas; +subduction subduction NOM f s 0.04 0.00 0.04 0.00 +suber suber NOM m s 0.01 0.00 0.01 0.00 +subi subir VER m s 30.13 53.72 10.22 10.81 par:pas; +subie subir VER f s 30.13 53.72 0.10 1.28 par:pas; +subies subir VER f p 30.13 53.72 0.40 2.50 par:pas; +sébile sébile NOM f s 0.04 0.47 0.04 0.41 +sébiles sébile NOM f p 0.04 0.47 0.01 0.07 +subir subir VER 30.13 53.72 10.64 21.28 inf; +subira subir VER 30.13 53.72 0.68 0.34 ind:fut:3s; +subirai subir VER 30.13 53.72 0.12 0.07 ind:fut:1s; +subiraient subir VER 30.13 53.72 0.04 0.14 cnd:pre:3p; +subirais subir VER 30.13 53.72 0.02 0.07 cnd:pre:1s; +subirait subir VER 30.13 53.72 0.04 0.14 cnd:pre:3s; +subiras subir VER 30.13 53.72 0.17 0.00 ind:fut:2s; +subirent subir VER 30.13 53.72 0.12 0.20 ind:pas:3p; +subirez subir VER 30.13 53.72 0.67 0.14 ind:fut:2p; +subirions subir VER 30.13 53.72 0.00 0.07 cnd:pre:1p; +subirons subir VER 30.13 53.72 0.16 0.20 ind:fut:1p; +subiront subir VER 30.13 53.72 0.26 0.27 ind:fut:3p; +subis subir VER m p 30.13 53.72 1.59 2.09 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +subissaient subir VER 30.13 53.72 0.01 1.35 ind:imp:3p; +subissais subir VER 30.13 53.72 0.04 1.01 ind:imp:1s;ind:imp:2s; +subissait subir VER 30.13 53.72 0.54 4.46 ind:imp:3s; +subissant subir VER 30.13 53.72 0.10 1.01 par:pre; +subisse subir VER 30.13 53.72 0.31 0.41 sub:pre:1s;sub:pre:3s; +subissent subir VER 30.13 53.72 1.13 1.82 ind:pre:3p; +subisses subir VER 30.13 53.72 0.05 0.00 sub:pre:2s; +subissez subir VER 30.13 53.72 0.25 0.20 imp:pre:2p;ind:pre:2p; +subissiez subir VER 30.13 53.72 0.04 0.00 ind:imp:2p; +subissions subir VER 30.13 53.72 0.10 0.07 ind:imp:1p; +subissons subir VER 30.13 53.72 0.26 0.27 imp:pre:1p;ind:pre:1p; +subit subir VER 30.13 53.72 2.07 3.38 ind:pre:3s; +subite subit ADJ f s 3.06 16.49 1.45 9.19 +subitement subitement ADV 4.39 15.54 4.39 15.54 +subites subit ADJ f p 3.06 16.49 0.15 1.28 +subito subito ADV 0.05 1.15 0.05 1.15 +subits subit ADJ m p 3.06 16.49 0.12 1.01 +subjectif subjectif ADJ m s 1.25 1.49 0.65 0.54 +subjectifs subjectif ADJ m p 1.25 1.49 0.03 0.07 +subjective subjectif ADJ f s 1.25 1.49 0.43 0.61 +subjectivement subjectivement ADV 0.01 0.00 0.01 0.00 +subjectives subjectif ADJ f p 1.25 1.49 0.14 0.27 +subjectivisme subjectivisme NOM m s 0.00 0.20 0.00 0.20 +subjectiviste subjectiviste ADJ m s 0.00 0.07 0.00 0.07 +subjectivité subjectivité NOM f s 0.44 0.20 0.44 0.20 +subjonctif subjonctif NOM m s 0.22 1.55 0.22 1.35 +subjonctifs subjonctif NOM m p 0.22 1.55 0.00 0.20 +subjugation subjugation NOM f s 0.01 0.00 0.01 0.00 +subjugua subjuguer VER 0.88 5.27 0.01 0.34 ind:pas:3s; +subjuguaient subjuguer VER 0.88 5.27 0.00 0.07 ind:imp:3p; +subjuguait subjuguer VER 0.88 5.27 0.00 0.27 ind:imp:3s; +subjuguant subjuguer VER 0.88 5.27 0.00 0.07 par:pre; +subjugue subjuguer VER 0.88 5.27 0.04 0.47 imp:pre:2s;ind:pre:3s; +subjuguer subjuguer VER 0.88 5.27 0.28 0.81 inf; +subjuguerais subjuguer VER 0.88 5.27 0.00 0.07 cnd:pre:1s; +subjuguerait subjuguer VER 0.88 5.27 0.00 0.07 cnd:pre:3s; +subjugues subjuguer VER 0.88 5.27 0.01 0.07 ind:pre:2s; +subjugué subjuguer VER m s 0.88 5.27 0.35 1.55 par:pas; +subjuguée subjuguer VER f s 0.88 5.27 0.17 1.01 par:pas; +subjuguées subjuguer VER f p 0.88 5.27 0.00 0.20 par:pas; +subjugués subjuguer VER m p 0.88 5.27 0.03 0.27 par:pas; +sublimable sublimable ADJ f s 0.00 0.07 0.00 0.07 +sublimais sublimer VER 0.67 1.42 0.02 0.07 ind:imp:1s; +sublimait sublimer VER 0.67 1.42 0.00 0.14 ind:imp:3s; +sublimant sublimer VER 0.67 1.42 0.01 0.07 par:pre; +sublimation sublimation NOM f s 0.04 0.41 0.03 0.27 +sublimations sublimation NOM f p 0.04 0.41 0.01 0.14 +sublime sublime ADJ s 11.74 12.91 9.51 9.39 +sublimement sublimement ADV 0.02 0.14 0.02 0.14 +subliment sublimer VER 0.67 1.42 0.00 0.07 ind:pre:3p; +sublimer sublimer VER 0.67 1.42 0.11 0.14 inf; +sublimes sublime ADJ p 11.74 12.91 2.23 3.51 +subliminal subliminal ADJ m s 0.53 0.07 0.14 0.00 +subliminale subliminal ADJ f s 0.53 0.07 0.05 0.07 +subliminales subliminal ADJ f p 0.53 0.07 0.06 0.00 +subliminaux subliminal ADJ m p 0.53 0.07 0.27 0.00 +sublimissime sublimissime ADJ f s 0.00 0.07 0.00 0.07 +sublimité sublimité NOM f s 0.01 0.20 0.01 0.07 +sublimités sublimité NOM f p 0.01 0.20 0.00 0.14 +sublimé sublimer VER m s 0.67 1.42 0.03 0.00 par:pas; +sublimée sublimer VER f s 0.67 1.42 0.03 0.27 par:pas; +sublimées sublimer VER f p 0.67 1.42 0.01 0.07 par:pas; +sublimés sublimer VER m p 0.67 1.42 0.01 0.07 par:pas; +sublingual sublingual ADJ m s 0.04 0.07 0.04 0.00 +sublinguaux sublingual ADJ m p 0.04 0.07 0.00 0.07 +sublunaire sublunaire ADJ s 0.00 0.20 0.00 0.14 +sublunaires sublunaire ADJ p 0.00 0.20 0.00 0.07 +submerge submerger VER 3.57 12.91 0.44 2.03 ind:pre:1s;ind:pre:3s; +submergea submerger VER 3.57 12.91 0.02 1.01 ind:pas:3s; +submergeaient submerger VER 3.57 12.91 0.01 0.14 ind:imp:3p; +submergeait submerger VER 3.57 12.91 0.14 1.15 ind:imp:3s; +submergeant submerger VER 3.57 12.91 0.01 0.34 par:pre; +submergent submerger VER 3.57 12.91 0.16 0.54 ind:pre:3p; +submergeât submerger VER 3.57 12.91 0.00 0.14 sub:imp:3s; +submerger submerger VER 3.57 12.91 0.53 1.22 inf; +submergera submerger VER 3.57 12.91 0.04 0.07 ind:fut:3s; +submergerait submerger VER 3.57 12.91 0.00 0.20 cnd:pre:3s; +submergèrent submerger VER 3.57 12.91 0.01 0.00 ind:pas:3p; +submergé submerger VER m s 3.57 12.91 1.23 2.97 par:pas; +submergée submerger VER f s 3.57 12.91 0.39 1.49 par:pas; +submergées submerger VER f p 3.57 12.91 0.14 0.47 par:pas; +submergés submerger VER m p 3.57 12.91 0.46 1.15 par:pas; +submersible submersible NOM m s 0.19 0.27 0.17 0.00 +submersibles submersible NOM m p 0.19 0.27 0.02 0.27 +submersion submersion NOM f s 0.05 0.00 0.05 0.00 +subodora subodorer VER 0.30 2.50 0.00 0.07 ind:pas:3s; +subodorais subodorer VER 0.30 2.50 0.00 0.27 ind:imp:1s; +subodorait subodorer VER 0.30 2.50 0.01 0.41 ind:imp:3s; +subodorant subodorer VER 0.30 2.50 0.01 0.07 par:pre; +subodore subodorer VER 0.30 2.50 0.16 0.88 ind:pre:1s;ind:pre:3s; +subodorent subodorer VER 0.30 2.50 0.00 0.07 ind:pre:3p; +subodorer subodorer VER 0.30 2.50 0.11 0.14 inf; +subodorèrent subodorer VER 0.30 2.50 0.00 0.07 ind:pas:3p; +subodoré subodorer VER m s 0.30 2.50 0.01 0.47 par:pas; +subodorés subodorer VER m p 0.30 2.50 0.00 0.07 par:pas; +suborbitale suborbital ADJ f s 0.01 0.00 0.01 0.00 +subordination subordination NOM f s 0.01 1.55 0.01 1.55 +subordonnaient subordonner VER 0.31 2.23 0.00 0.07 ind:imp:3p; +subordonnais subordonner VER 0.31 2.23 0.00 0.07 ind:imp:1s; +subordonnant subordonner VER 0.31 2.23 0.00 0.07 par:pre; +subordonne subordonner VER 0.31 2.23 0.00 0.14 ind:pre:3s;sub:pre:1s; +subordonner subordonner VER 0.31 2.23 0.14 0.68 inf; +subordonné subordonné NOM m s 0.81 2.77 0.14 1.01 +subordonnée subordonné ADJ f s 0.24 0.47 0.16 0.00 +subordonnées subordonner VER f p 0.31 2.23 0.00 0.34 par:pas; +subordonnés subordonné NOM m p 0.81 2.77 0.67 1.76 +subornation subornation NOM f s 0.09 0.07 0.09 0.07 +suborner suborner VER 0.21 0.07 0.04 0.00 inf; +suborneur suborneur NOM m s 0.01 0.41 0.01 0.34 +suborneurs suborneur NOM m p 0.01 0.41 0.00 0.07 +suborné suborner VER m s 0.21 0.07 0.03 0.00 par:pas; +subornée suborner VER f s 0.21 0.07 0.00 0.07 par:pas; +subornés suborner VER m p 0.21 0.07 0.14 0.00 par:pas; +séborrhée séborrhée NOM f s 0.00 0.07 0.00 0.07 +séborrhéique séborrhéique ADJ f s 0.01 0.00 0.01 0.00 +subreptice subreptice ADJ s 0.02 0.61 0.02 0.41 +subrepticement subrepticement ADV 0.15 2.64 0.15 2.64 +subreptices subreptice ADJ m p 0.02 0.61 0.00 0.20 +subrogation subrogation NOM f s 0.02 0.00 0.02 0.00 +subrogé subroger VER m s 0.00 0.07 0.00 0.07 par:pas; +subrécargue subrécargue NOM m s 0.01 0.07 0.01 0.07 +subsaharienne subsaharien ADJ f s 0.00 0.07 0.00 0.07 +subside subside NOM m s 0.51 0.88 0.28 0.00 +subsides subside NOM m p 0.51 0.88 0.23 0.88 +subsidiaire subsidiaire ADJ s 0.11 0.20 0.06 0.14 +subsidiairement subsidiairement ADV 0.00 0.07 0.00 0.07 +subsidiaires subsidiaire ADJ p 0.11 0.20 0.04 0.07 +subsista subsister VER 2.08 17.09 0.01 0.34 ind:pas:3s; +subsistaient subsister VER 2.08 17.09 0.12 1.62 ind:imp:3p; +subsistait subsister VER 2.08 17.09 0.04 3.78 ind:imp:3s; +subsistance subsistance NOM f s 0.67 1.55 0.64 1.42 +subsistances subsistance NOM f p 0.67 1.55 0.02 0.14 +subsistant subsistant ADJ m s 0.01 0.20 0.01 0.07 +subsistantes subsistant ADJ f p 0.01 0.20 0.00 0.07 +subsistants subsistant ADJ m p 0.01 0.20 0.00 0.07 +subsiste subsister VER 2.08 17.09 1.17 4.39 imp:pre:2s;ind:pre:1s;ind:pre:3s; +subsistent subsister VER 2.08 17.09 0.05 1.82 ind:pre:3p; +subsister subsister VER 2.08 17.09 0.45 3.92 inf; +subsistera subsister VER 2.08 17.09 0.04 0.07 ind:fut:3s; +subsisteraient subsister VER 2.08 17.09 0.00 0.07 cnd:pre:3p; +subsisterait subsister VER 2.08 17.09 0.00 0.34 cnd:pre:3s; +subsisteront subsister VER 2.08 17.09 0.03 0.07 ind:fut:3p; +subsistions subsister VER 2.08 17.09 0.00 0.07 ind:imp:1p; +subsistâmes subsister VER 2.08 17.09 0.01 0.00 ind:pas:1p; +subsistons subsister VER 2.08 17.09 0.01 0.00 ind:pre:1p; +subsistât subsister VER 2.08 17.09 0.00 0.20 sub:imp:3s; +subsistèrent subsister VER 2.08 17.09 0.00 0.07 ind:pas:3p; +subsisté subsister VER m s 2.08 17.09 0.14 0.20 par:pas; +subsonique subsonique ADJ s 0.19 0.00 0.19 0.00 +substance substance NOM f s 8.87 14.39 6.60 12.84 +substances substance NOM f p 8.87 14.39 2.27 1.55 +substantiel substantiel ADJ m s 1.08 2.43 0.46 0.41 +substantielle substantiel ADJ f s 1.08 2.43 0.45 0.81 +substantiellement substantiellement ADV 0.04 0.27 0.04 0.27 +substantielles substantiel ADJ f p 1.08 2.43 0.08 0.68 +substantiels substantiel ADJ m p 1.08 2.43 0.10 0.54 +substantif substantif NOM m s 0.01 0.34 0.01 0.20 +substantifique substantifique ADJ f s 0.00 0.20 0.00 0.20 +substantifs substantif NOM m p 0.01 0.34 0.00 0.14 +substitua substituer VER 1.23 8.11 0.00 0.61 ind:pas:3s; +substituai substituer VER 1.23 8.11 0.01 0.07 ind:pas:1s; +substituaient substituer VER 1.23 8.11 0.01 0.41 ind:imp:3p; +substituait substituer VER 1.23 8.11 0.11 0.81 ind:imp:3s; +substituant substituer VER 1.23 8.11 0.05 0.41 par:pre; +substitue substituer VER 1.23 8.11 0.03 0.88 ind:pre:3s; +substituent substituer VER 1.23 8.11 0.01 0.07 ind:pre:3p; +substituer substituer VER 1.23 8.11 0.58 3.45 inf; +substituerait substituer VER 1.23 8.11 0.00 0.07 cnd:pre:3s; +substituerez substituer VER 1.23 8.11 0.01 0.00 ind:fut:2p; +substituez substituer VER 1.23 8.11 0.06 0.07 imp:pre:2p;ind:pre:2p; +substituons substituer VER 1.23 8.11 0.00 0.14 imp:pre:1p; +substitut substitut NOM m s 2.37 2.70 2.05 2.09 +substitution substitution NOM f s 0.69 2.30 0.67 2.03 +substitutions substitution NOM f p 0.69 2.30 0.02 0.27 +substituts substitut NOM m p 2.37 2.70 0.32 0.61 +substitué substituer VER m s 1.23 8.11 0.34 0.68 par:pas; +substituées substituer VER f p 1.23 8.11 0.00 0.14 par:pas; +substitués substituer VER m p 1.23 8.11 0.00 0.34 par:pas; +substrat substrat NOM m s 0.09 0.00 0.09 0.00 +substratum substratum NOM m s 0.00 0.27 0.00 0.27 +substruction substruction NOM f s 0.00 0.07 0.00 0.07 +subséquemment subséquemment ADV 0.23 0.20 0.23 0.20 +subséquent subséquent ADJ m s 0.09 0.34 0.02 0.00 +subséquente subséquent ADJ f s 0.09 0.34 0.04 0.14 +subséquentes subséquent ADJ f p 0.09 0.34 0.01 0.14 +subséquents subséquent ADJ m p 0.09 0.34 0.02 0.07 +subterfuge subterfuge NOM m s 0.80 1.35 0.48 0.88 +subterfuges subterfuge NOM m p 0.80 1.35 0.32 0.47 +subtil subtil ADJ m s 7.54 22.91 4.54 10.88 +subtile subtil ADJ f s 7.54 22.91 2.12 5.68 +subtilement subtilement ADV 0.44 2.30 0.44 2.30 +subtiles subtil ADJ f p 7.54 22.91 0.37 3.11 +subtilisa subtiliser VER 0.52 2.16 0.00 0.27 ind:pas:3s; +subtilisait subtiliser VER 0.52 2.16 0.00 0.07 ind:imp:3s; +subtilisant subtiliser VER 0.52 2.16 0.02 0.07 par:pre; +subtilisassent subtiliser VER 0.52 2.16 0.00 0.07 sub:imp:3p; +subtilise subtiliser VER 0.52 2.16 0.00 0.14 ind:pre:1s;ind:pre:3s; +subtiliser subtiliser VER 0.52 2.16 0.16 0.41 inf; +subtilisera subtiliser VER 0.52 2.16 0.00 0.07 ind:fut:3s; +subtilisé subtiliser VER m s 0.52 2.16 0.28 0.54 par:pas; +subtilisée subtiliser VER f s 0.52 2.16 0.02 0.20 par:pas; +subtilisées subtiliser VER f p 0.52 2.16 0.04 0.07 par:pas; +subtilisés subtiliser VER m p 0.52 2.16 0.00 0.27 par:pas; +subtilité subtilité NOM f s 0.97 5.20 0.55 3.45 +subtilités subtilité NOM f p 0.97 5.20 0.41 1.76 +subtils subtil ADJ m p 7.54 22.91 0.52 3.24 +subtropical subtropical ADJ m s 0.04 0.14 0.00 0.07 +subtropicale subtropical ADJ f s 0.04 0.14 0.03 0.00 +subtropicales subtropical ADJ f p 0.04 0.14 0.01 0.07 +sébum sébum NOM m s 0.00 0.07 0.00 0.07 +suburbain suburbain ADJ m s 0.05 0.34 0.01 0.07 +suburbaine suburbain ADJ f s 0.05 0.34 0.01 0.00 +suburbaines suburbain ADJ f p 0.05 0.34 0.02 0.14 +suburbains suburbain ADJ m p 0.05 0.34 0.00 0.14 +subvenant subvenir VER 1.52 1.08 0.03 0.00 par:pre; +subvenez subvenir VER 1.52 1.08 0.02 0.00 ind:pre:2p; +subvenir subvenir VER 1.52 1.08 1.30 1.01 inf; +subvention subvention NOM f s 3.00 0.88 1.66 0.54 +subventionnant subventionner VER 0.79 0.68 0.01 0.07 par:pre; +subventionne subventionner VER 0.79 0.68 0.30 0.00 imp:pre:2s;ind:pre:3s; +subventionnent subventionner VER 0.79 0.68 0.05 0.00 ind:pre:3p; +subventionner subventionner VER 0.79 0.68 0.24 0.20 inf; +subventionnera subventionner VER 0.79 0.68 0.00 0.07 ind:fut:3s; +subventionné subventionner VER m s 0.79 0.68 0.11 0.20 par:pas; +subventionnée subventionné ADJ f s 0.10 0.14 0.07 0.00 +subventionnées subventionné ADJ f p 0.10 0.14 0.00 0.07 +subventionnés subventionner VER m p 0.79 0.68 0.04 0.14 par:pas; +subventions subvention NOM f p 3.00 0.88 1.34 0.34 +subvenu subvenir VER m s 1.52 1.08 0.07 0.00 par:pas; +subversif subversif ADJ m s 3.61 2.43 1.30 0.54 +subversifs subversif ADJ m p 3.61 2.43 0.97 0.47 +subversion subversion NOM f s 0.66 0.95 0.56 0.95 +subversions subversion NOM f p 0.66 0.95 0.10 0.00 +subversive subversif ADJ f s 3.61 2.43 0.41 0.54 +subversives subversif ADJ f p 3.61 2.43 0.94 0.88 +subvertir subvertir VER 0.00 0.07 0.00 0.07 inf; +subviendra subvenir VER 1.52 1.08 0.00 0.07 ind:fut:3s; +subviendrait subvenir VER 1.52 1.08 0.01 0.00 cnd:pre:3s; +subviens subvenir VER 1.52 1.08 0.03 0.00 ind:pre:1s; +subvient subvenir VER 1.52 1.08 0.06 0.00 ind:pre:3s; +suc suc NOM m s 0.61 3.18 0.53 1.89 +sécateur sécateur NOM m s 0.17 1.49 0.15 1.35 +sécateurs sécateur NOM m p 0.17 1.49 0.03 0.14 +successeur successeur NOM m s 2.80 6.96 2.59 5.47 +successeurs successeur NOM m p 2.80 6.96 0.21 1.49 +successibles successible ADJ p 0.00 0.07 0.00 0.07 +successif successif ADJ m s 0.69 18.99 0.00 0.20 +successifs successif ADJ m p 0.69 18.99 0.26 8.78 +succession succession NOM f s 2.92 11.35 2.72 11.01 +successions succession NOM f p 2.92 11.35 0.20 0.34 +successive successif ADJ f s 0.69 18.99 0.00 0.41 +successivement successivement ADV 0.32 12.57 0.32 12.57 +successives successif ADJ f p 0.69 18.99 0.43 9.59 +successoral successoral ADJ m s 0.03 0.00 0.02 0.00 +successorale successoral ADJ f s 0.03 0.00 0.01 0.00 +succinct succinct ADJ m s 0.20 0.88 0.12 0.54 +succincte succinct ADJ f s 0.20 0.88 0.06 0.14 +succinctement succinctement ADV 0.07 0.41 0.07 0.41 +succinctes succinct ADJ f p 0.20 0.88 0.02 0.20 +succion succion NOM f s 0.33 1.69 0.33 1.49 +succions succion NOM f p 0.33 1.69 0.00 0.20 +succomba succomber VER 4.79 9.66 0.14 0.88 ind:pas:3s; +succombai succomber VER 4.79 9.66 0.00 0.20 ind:pas:1s; +succombaient succomber VER 4.79 9.66 0.00 0.34 ind:imp:3p; +succombais succomber VER 4.79 9.66 0.00 0.14 ind:imp:1s; +succombait succomber VER 4.79 9.66 0.02 0.61 ind:imp:3s; +succombant succomber VER 4.79 9.66 0.17 0.34 par:pre; +succombe succomber VER 4.79 9.66 1.21 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +succombent succomber VER 4.79 9.66 0.32 0.68 ind:pre:3p; +succomber succomber VER 4.79 9.66 1.15 2.43 inf; +succombera succomber VER 4.79 9.66 0.13 0.20 ind:fut:3s; +succomberai succomber VER 4.79 9.66 0.01 0.07 ind:fut:1s; +succomberaient succomber VER 4.79 9.66 0.00 0.07 cnd:pre:3p; +succomberais succomber VER 4.79 9.66 0.01 0.00 cnd:pre:1s; +succomberait succomber VER 4.79 9.66 0.03 0.07 cnd:pre:3s; +succomberont succomber VER 4.79 9.66 0.31 0.07 ind:fut:3p; +succombes succomber VER 4.79 9.66 0.01 0.00 ind:pre:2s; +succombez succomber VER 4.79 9.66 0.03 0.00 imp:pre:2p;ind:pre:2p; +succombions succomber VER 4.79 9.66 0.00 0.07 ind:imp:1p; +succombèrent succomber VER 4.79 9.66 0.00 0.14 ind:pas:3p; +succombé succomber VER m s 4.79 9.66 1.24 2.43 par:pas; +succède succéder VER 4.25 33.78 0.60 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +succèdent succéder VER 4.25 33.78 0.32 5.07 ind:pre:3p; +succès succès NOM m 39.58 53.72 39.58 53.72 +succube succube NOM m s 0.46 0.34 0.39 0.27 +succubes succube NOM m p 0.46 0.34 0.07 0.07 +succéda succéder VER 4.25 33.78 0.16 1.82 ind:pas:3s; +succédaient succéder VER 4.25 33.78 0.06 5.74 ind:imp:3p; +succédait succéder VER 4.25 33.78 0.10 2.64 ind:imp:3s; +succédant succéder VER 4.25 33.78 0.00 2.77 par:pre; +succédané succédané NOM m s 0.04 0.95 0.03 0.68 +succédanés succédané NOM m p 0.04 0.95 0.01 0.27 +succédassent succéder VER 4.25 33.78 0.00 0.07 sub:imp:3p; +succéder succéder VER 4.25 33.78 1.78 4.53 inf; +succédera succéder VER 4.25 33.78 0.36 0.54 ind:fut:3s; +succéderai succéder VER 4.25 33.78 0.01 0.00 ind:fut:1s; +succéderaient succéder VER 4.25 33.78 0.00 0.07 cnd:pre:3p; +succéderait succéder VER 4.25 33.78 0.16 0.47 cnd:pre:3s; +succéderas succéder VER 4.25 33.78 0.01 0.00 ind:fut:2s; +succéderez succéder VER 4.25 33.78 0.02 0.00 ind:fut:2p; +succéderiez succéder VER 4.25 33.78 0.01 0.00 cnd:pre:2p; +succéderont succéder VER 4.25 33.78 0.21 0.20 ind:fut:3p; +succédions succéder VER 4.25 33.78 0.00 0.07 ind:imp:1p; +succédâmes succéder VER 4.25 33.78 0.00 0.07 ind:pas:1p; +succédât succéder VER 4.25 33.78 0.00 0.07 sub:imp:3s; +succédèrent succéder VER 4.25 33.78 0.02 2.50 ind:pas:3p; +succédé succéder VER m s 4.25 33.78 0.41 4.73 par:pas; +succédées succéder VER f p 4.25 33.78 0.02 0.07 par:pas; +succulence succulence NOM f s 0.01 0.68 0.01 0.68 +succulent succulent ADJ m s 1.46 2.77 0.71 1.15 +succulente succulent ADJ f s 1.46 2.77 0.51 0.61 +succulentes succulent ADJ f p 1.46 2.77 0.14 0.47 +succulents succulent ADJ m p 1.46 2.77 0.09 0.54 +succursale succursale NOM f s 1.17 1.42 1.05 1.15 +succursales succursale NOM f p 1.17 1.42 0.12 0.27 +suce sucer VER 23.45 18.51 7.84 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +sucent sucer VER 23.45 18.51 0.51 0.27 ind:pre:3p; +sucer sucer VER 23.45 18.51 9.68 4.86 ind:imp:3s;ind:pre:2p;inf; +sucera sucer VER 23.45 18.51 0.22 0.07 ind:fut:3s; +sucerai sucer VER 23.45 18.51 0.10 0.27 ind:fut:1s; +suceraient sucer VER 23.45 18.51 0.02 0.07 cnd:pre:3p; +sucerais sucer VER 23.45 18.51 0.06 0.00 cnd:pre:1s;cnd:pre:2s; +sucerait sucer VER 23.45 18.51 0.07 0.14 cnd:pre:3s; +suces sucer VER 23.45 18.51 0.94 0.07 ind:pre:2s;sub:pre:2s; +sécession sécession NOM f s 0.26 0.74 0.26 0.74 +sécessionniste sécessionniste NOM s 0.06 0.00 0.02 0.00 +sécessionnistes sécessionniste NOM p 0.06 0.00 0.04 0.00 +sucette sucette NOM f s 2.29 2.64 1.27 1.49 +sucettes sucette NOM f p 2.29 2.64 1.02 1.15 +suceur suceur NOM m s 2.15 0.54 0.96 0.07 +suceurs suceur NOM m p 2.15 0.54 0.65 0.14 +suceuse suceur NOM f s 2.15 0.54 0.55 0.34 +suceuses suceuse NOM f p 0.73 0.00 0.73 0.00 +sucez sucer VER 23.45 18.51 0.39 0.07 imp:pre:2p;ind:pre:2p; +sécha sécher VER 19.49 40.41 0.01 0.61 ind:pas:3s; +séchage séchage NOM m s 0.17 0.41 0.17 0.41 +séchai sécher VER 19.49 40.41 0.00 0.14 ind:pas:1s; +séchaient sécher VER 19.49 40.41 0.05 3.24 ind:imp:3p; +séchais sécher VER 19.49 40.41 0.35 0.20 ind:imp:1s;ind:imp:2s; +séchait sécher VER 19.49 40.41 0.54 2.57 ind:imp:3s; +séchant sécher VER 19.49 40.41 0.15 1.42 par:pre; +séchard séchard NOM m s 0.01 0.14 0.01 0.14 +sécher sécher VER 19.49 40.41 5.84 10.27 inf; +séchera sécher VER 19.49 40.41 0.05 0.41 ind:fut:3s; +sécherai sécher VER 19.49 40.41 0.13 0.00 ind:fut:1s; +sécheraient sécher VER 19.49 40.41 0.00 0.07 cnd:pre:3p; +sécherais sécher VER 19.49 40.41 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +sécherait sécher VER 19.49 40.41 0.02 0.20 cnd:pre:3s; +sécheresse sécheresse NOM f s 2.63 11.15 2.30 10.81 +sécheresses sécheresse NOM f p 2.63 11.15 0.33 0.34 +sécherez sécher VER 19.49 40.41 0.01 0.00 ind:fut:2p; +sécherie sécherie NOM f s 0.03 0.20 0.01 0.14 +sécheries sécherie NOM f p 0.03 0.20 0.01 0.07 +sécheront sécher VER 19.49 40.41 0.01 0.07 ind:fut:3p; +sécheuse sécheur NOM f s 0.05 0.00 0.05 0.00 +séchez sécher VER 19.49 40.41 0.79 0.20 imp:pre:2p;ind:pre:2p; +séchiez sécher VER 19.49 40.41 0.03 0.00 ind:imp:2p; +séchions sécher VER 19.49 40.41 0.01 0.07 ind:imp:1p; +séchoir séchoir NOM m s 0.95 1.28 0.91 1.08 +séchoirs séchoir NOM m p 0.95 1.28 0.04 0.20 +séchons sécher VER 19.49 40.41 0.11 0.00 imp:pre:1p;ind:pre:1p; +séchât sécher VER 19.49 40.41 0.00 0.07 sub:imp:3s; +séchèrent sécher VER 19.49 40.41 0.00 0.47 ind:pas:3p; +séché sécher VER m s 19.49 40.41 3.68 5.34 par:pas; +séchée sécher VER f s 19.49 40.41 1.09 3.11 par:pas; +séchées sécher VER f p 19.49 40.41 0.56 2.23 par:pas; +séchés sécher VER m p 19.49 40.41 0.16 1.42 par:pas; +sécolle sécolle PRO:per 0.00 0.14 0.00 0.14 +sécot sécot NOM m s 0.00 0.07 0.00 0.07 +sucra sucrer VER 1.90 4.73 0.00 0.14 ind:pas:3s; +sucrait sucrer VER 1.90 4.73 0.05 0.07 ind:imp:3s; +sucrant sucrer VER 1.90 4.73 0.00 0.07 par:pre; +sucre sucre NOM m s 32.01 32.77 30.57 30.54 +sucrent sucrer VER 1.90 4.73 0.05 0.07 ind:pre:3p; +sucrer sucrer VER 1.90 4.73 0.38 0.74 inf; +sucrerait sucrer VER 1.90 4.73 0.00 0.14 cnd:pre:3s; +sucrerie sucrerie NOM f s 2.82 3.58 0.25 0.88 +sucreries sucrerie NOM f p 2.82 3.58 2.57 2.70 +sucres sucre NOM m p 32.01 32.77 1.44 2.23 +sucrette sucrette NOM f s 0.52 0.14 0.04 0.00 +sucrettes sucrette NOM f p 0.52 0.14 0.48 0.14 +sucrier sucrier NOM m s 0.58 1.08 0.51 0.95 +sucriers sucrier NOM m p 0.58 1.08 0.05 0.14 +sucrins sucrin ADJ m p 0.00 0.07 0.00 0.07 +sucrière sucrier ADJ f s 1.79 0.20 1.47 0.07 +sucrières sucrier ADJ f p 1.79 0.20 0.32 0.00 +sécrète sécréter VER 0.85 3.24 0.41 0.68 ind:pre:3s; +sécrètent sécréter VER 0.85 3.24 0.12 0.27 ind:pre:3p; +sécrètes sécréter VER 0.85 3.24 0.01 0.00 ind:pre:2s; +sucré sucré ADJ m s 3.69 9.05 2.19 4.39 +sucrée sucré ADJ f s 3.69 9.05 0.96 2.77 +sucrées sucré ADJ f p 3.69 9.05 0.42 0.88 +sucrés sucré ADJ m p 3.69 9.05 0.13 1.01 +sécrétaient sécréter VER 0.85 3.24 0.00 0.07 ind:imp:3p; +sécrétais sécréter VER 0.85 3.24 0.00 0.07 ind:imp:1s; +sécrétait sécréter VER 0.85 3.24 0.00 0.47 ind:imp:3s; +sécrétant sécréter VER 0.85 3.24 0.00 0.27 par:pre; +sécréter sécréter VER 0.85 3.24 0.02 0.47 inf; +sécréteur sécréteur NOM m s 0.02 0.00 0.01 0.00 +sécréteurs sécréteur NOM m p 0.02 0.00 0.01 0.00 +sécrétez sécréter VER 0.85 3.24 0.00 0.07 ind:pre:2p; +sécrétine sécrétine NOM f s 0.01 0.00 0.01 0.00 +sécrétion sécrétion NOM f s 0.83 1.49 0.17 0.41 +sécrétions sécrétion NOM f p 0.83 1.49 0.66 1.08 +sécrétât sécréter VER 0.85 3.24 0.00 0.07 sub:imp:3s; +sécrété sécréter VER m s 0.85 3.24 0.15 0.41 par:pas; +sécrétée sécréter VER f s 0.85 3.24 0.14 0.27 par:pas; +sécrétés sécréter VER m p 0.85 3.24 0.00 0.14 par:pas; +sucs suc NOM m p 0.61 3.18 0.08 1.28 +sucèrent sucer VER 23.45 18.51 0.00 0.07 ind:pas:3p; +sécu sécu NOM f s 1.50 0.74 1.50 0.74 +sucé sucer VER m s 23.45 18.51 2.34 1.76 par:pas; +sucée sucer VER f s 23.45 18.51 0.12 0.27 par:pas; +sucées sucer VER f p 23.45 18.51 0.04 0.07 par:pas; +séculaire séculaire ADJ s 0.26 4.73 0.12 3.04 +séculairement séculairement ADV 0.00 0.14 0.00 0.14 +séculaires séculaire ADJ p 0.26 4.73 0.14 1.69 +séculariser séculariser VER 0.01 0.07 0.01 0.00 inf; +sécularisées séculariser VER f p 0.01 0.07 0.00 0.07 par:pas; +séculier séculier ADJ m s 0.02 1.49 0.00 1.15 +séculiers séculier ADJ m p 0.02 1.49 0.00 0.07 +séculière séculier ADJ f s 0.02 1.49 0.02 0.27 +sécurisait sécuriser VER 6.48 0.34 0.00 0.07 ind:imp:3s; +sécurisant sécurisant ADJ m s 0.37 0.20 0.34 0.00 +sécurisante sécurisant ADJ f s 0.37 0.20 0.04 0.20 +sécurisation sécurisation NOM f s 0.01 0.00 0.01 0.00 +sécuriser sécuriser VER 6.48 0.34 1.09 0.00 inf; +sécurisez sécuriser VER 6.48 0.34 0.79 0.00 imp:pre:2p;ind:pre:2p; +sécurisé sécuriser VER m s 6.48 0.34 2.16 0.07 par:pas; +sécurisée sécuriser VER f s 6.48 0.34 1.94 0.07 par:pas; +sécurisées sécuriser VER f p 6.48 0.34 0.20 0.00 par:pas; +sécurisés sécuriser VER m p 6.48 0.34 0.28 0.07 par:pas; +sécurit sécurit NOM m s 0.15 0.14 0.15 0.14 +sécuritaire sécuritaire ADJ s 0.23 0.00 0.23 0.00 +sécurité sécurité NOM f s 113.17 39.12 112.69 38.92 +sécurités sécurité NOM f p 113.17 39.12 0.48 0.20 +sucés sucer VER m p 23.45 18.51 0.06 0.07 par:pas; +sud_africain sud_africain NOM m s 0.28 0.07 0.15 0.00 +sud_africain sud_africain ADJ f s 0.29 0.47 0.07 0.34 +sud_africain sud_africain ADJ f p 0.29 0.47 0.04 0.00 +sud_africain sud_africain NOM m p 0.28 0.07 0.10 0.07 +sud_américain sud_américain ADJ m s 0.77 1.55 0.29 0.41 +sud_américain sud_américain ADJ f s 0.77 1.55 0.35 0.54 +sud_américain sud_américain ADJ f p 0.77 1.55 0.01 0.20 +sud_américain sud_américain ADJ m p 0.77 1.55 0.11 0.41 +sud_coréen sud_coréen ADJ m s 0.21 0.00 0.01 0.00 +sud_coréen sud_coréen NOM m s 0.01 0.00 0.01 0.00 +sud_coréen sud_coréen ADJ f s 0.21 0.00 0.15 0.00 +sud_coréen sud_coréen ADJ f p 0.21 0.00 0.02 0.00 +sud_coréen sud_coréen ADJ m p 0.21 0.00 0.02 0.00 +sud_est sud_est NOM m 3.30 2.30 3.30 2.30 +sud_ouest sud_ouest NOM m 2.10 3.51 2.10 3.51 +sud_sud_est sud_sud_est NOM m s 0.03 0.00 0.03 0.00 +sud_vietnamien sud_vietnamien ADJ m s 0.10 0.07 0.05 0.00 +sud_vietnamien sud_vietnamien ADJ f s 0.10 0.07 0.03 0.00 +sud_vietnamien sud_vietnamien NOM m p 0.12 0.20 0.11 0.20 +sud sud NOM m s 23.95 28.38 23.95 28.38 +sédatif sédatif NOM m s 3.93 0.27 2.80 0.00 +sédatifs sédatif NOM m p 3.93 0.27 1.13 0.27 +sédation sédation NOM f s 0.08 0.00 0.08 0.00 +sudation sudation NOM f s 0.14 0.07 0.14 0.07 +sédative sédatif ADJ f s 0.27 0.34 0.00 0.20 +sédatives sédatif ADJ f p 0.27 0.34 0.02 0.07 +sudatoires sudatoire ADJ f p 0.00 0.07 0.00 0.07 +sédentaire sédentaire ADJ s 0.23 2.30 0.21 1.76 +sédentaires sédentaire NOM p 0.05 1.55 0.05 0.81 +sédentarisaient sédentariser VER 0.01 0.14 0.00 0.07 ind:imp:3p; +sédentarisation sédentarisation NOM f s 0.00 0.07 0.00 0.07 +sédentarise sédentariser VER 0.01 0.14 0.01 0.00 ind:pre:3s; +sédentariser sédentariser VER 0.01 0.14 0.00 0.07 inf; +sédentarisme sédentarisme NOM m s 0.00 0.07 0.00 0.07 +sédentarité sédentarité NOM f s 0.00 0.27 0.00 0.27 +sédiment sédiment NOM m s 0.14 0.61 0.03 0.14 +sédimentaire sédimentaire ADJ s 0.05 0.20 0.05 0.07 +sédimentaires sédimentaire ADJ f p 0.05 0.20 0.00 0.14 +sédimentation sédimentation NOM f s 0.09 0.20 0.09 0.14 +sédimentations sédimentation NOM f p 0.09 0.20 0.00 0.07 +sédimente sédimenter VER 0.00 0.14 0.00 0.07 ind:pre:3s; +sédiments sédiment NOM m p 0.14 0.61 0.11 0.47 +sédimentée sédimenter VER f s 0.00 0.14 0.00 0.07 par:pas; +sudiste sudiste NOM s 2.82 0.68 1.94 0.47 +sudistes sudiste NOM p 2.82 0.68 0.88 0.20 +séditieuse séditieux ADJ f s 0.35 0.74 0.03 0.14 +séditieuses séditieux ADJ f p 0.35 0.74 0.00 0.07 +séditieux séditieux ADJ m 0.35 0.74 0.32 0.54 +sédition sédition NOM f s 1.28 0.54 1.28 0.54 +sudoripare sudoripare ADJ s 0.14 0.14 0.02 0.07 +sudoripares sudoripare ADJ f p 0.14 0.14 0.13 0.07 +sudète sudète ADJ s 0.00 0.14 0.00 0.07 +sudètes sudète ADJ m p 0.00 0.14 0.00 0.07 +séducteur séducteur NOM m s 2.34 4.86 1.97 3.72 +séducteurs séducteur NOM m p 2.34 4.86 0.20 0.68 +séduction séduction NOM f s 2.54 9.39 2.50 7.97 +séductions séduction NOM f p 2.54 9.39 0.04 1.42 +séductrice séducteur NOM f s 2.34 4.86 0.16 0.41 +séductrices séducteur ADJ f p 0.31 2.36 0.01 0.34 +séduira séduire VER 16.48 22.23 0.16 0.07 ind:fut:3s; +séduirait séduire VER 16.48 22.23 0.16 0.00 cnd:pre:3s; +séduiras séduire VER 16.48 22.23 0.12 0.00 ind:fut:2s; +séduire séduire VER 16.48 22.23 7.64 9.59 inf; +séduis séduire VER 16.48 22.23 0.70 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +séduisaient séduire VER 16.48 22.23 0.00 0.14 ind:imp:3p; +séduisait séduire VER 16.48 22.23 0.19 1.42 ind:imp:3s; +séduisant séduisant ADJ m s 9.13 8.18 4.68 3.85 +séduisante séduisant ADJ f s 9.13 8.18 3.71 2.91 +séduisantes séduisant ADJ f p 9.13 8.18 0.39 0.54 +séduisants séduisant ADJ m p 9.13 8.18 0.35 0.88 +séduise séduire VER 16.48 22.23 0.17 0.20 sub:pre:1s;sub:pre:3s; +séduisent séduire VER 16.48 22.23 0.10 0.41 ind:pre:3p; +séduises séduire VER 16.48 22.23 0.02 0.07 sub:pre:2s; +séduisez séduire VER 16.48 22.23 0.16 0.00 imp:pre:2p;ind:pre:2p; +séduisirent séduire VER 16.48 22.23 0.10 0.14 ind:pas:3p; +séduisit séduire VER 16.48 22.23 0.03 0.41 ind:pas:3s; +séduit séduire VER m s 16.48 22.23 5.09 5.95 ind:pre:3s;par:pas; +séduite séduire VER f s 16.48 22.23 1.09 2.30 par:pas; +séduites séduit ADJ f p 1.08 1.89 0.27 0.14 +séduits séduire VER m p 16.48 22.23 0.08 0.41 par:pas; +sue suer VER 7.28 10.34 0.85 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +suent suer VER 7.28 10.34 0.23 0.34 ind:pre:3p; +suer suer VER 7.28 10.34 2.72 2.77 inf; +suerai suer VER 7.28 10.34 0.03 0.00 ind:fut:1s; +suerais suer VER 7.28 10.34 0.01 0.00 cnd:pre:2s; +suerait suer VER 7.28 10.34 0.00 0.07 cnd:pre:3s; +suerte suerte NOM f s 0.22 0.00 0.22 0.00 +sues suer VER 7.28 10.34 0.41 0.07 ind:pre:2s; +sueur sueur NOM f s 11.71 60.34 10.27 57.30 +sueurs sueur NOM f p 11.71 60.34 1.45 3.04 +suez suer VER 7.28 10.34 0.35 0.07 imp:pre:2p;ind:pre:2p; +séfarade séfarade ADJ m s 0.01 0.00 0.01 0.00 +séfarade séfarade NOM s 0.01 0.00 0.01 0.00 +suffît suffire VER 232.08 159.39 0.64 0.14 sub:imp:3s; +suffi suffire VER m s 232.08 159.39 4.52 17.97 par:pas; +sufficit sufficit ADV 0.00 0.07 0.00 0.07 +suffira suffire VER 232.08 159.39 13.85 4.39 ind:fut:3s; +suffirai suffire VER 232.08 159.39 0.02 0.00 ind:fut:1s; +suffiraient suffire VER 232.08 159.39 0.63 1.82 cnd:pre:3p; +suffirais suffire VER 232.08 159.39 0.02 0.00 cnd:pre:1s; +suffirait suffire VER 232.08 159.39 4.81 11.89 cnd:pre:3s; +suffire suffire VER 232.08 159.39 5.24 4.86 inf; +suffirent suffire VER 232.08 159.39 0.05 0.95 ind:pas:3p; +suffiront suffire VER 232.08 159.39 2.23 0.68 ind:fut:3p; +suffis suffire VER 232.08 159.39 0.53 0.41 imp:pre:2s;ind:pre:1s;ind:pre:2s; +suffisaient suffire VER 232.08 159.39 0.73 4.93 ind:imp:3p; +suffisais suffire VER 232.08 159.39 0.01 0.27 ind:imp:1s; +suffisait suffire VER 232.08 159.39 6.56 44.66 ind:imp:3s; +suffisamment suffisamment ADV 18.30 20.07 18.30 20.07 +suffisance suffisance NOM f s 0.90 3.99 0.90 3.92 +suffisances suffisance NOM f p 0.90 3.99 0.00 0.07 +suffisant suffisant ADJ m s 17.56 18.99 12.95 10.00 +suffisante suffisant ADJ f s 17.56 18.99 2.98 5.61 +suffisantes suffisant ADJ f p 17.56 18.99 0.93 2.03 +suffisants suffisant ADJ m p 17.56 18.99 0.70 1.35 +suffise suffire VER 232.08 159.39 0.80 1.15 sub:pre:3s; +suffisent suffire VER 232.08 159.39 2.91 4.32 ind:pre:3p; +suffisez suffire VER 232.08 159.39 0.01 0.14 ind:pre:2p; +suffisions suffire VER 232.08 159.39 0.11 0.14 ind:imp:1p; +suffisons suffire VER 232.08 159.39 0.02 0.00 ind:pre:1p; +suffit suffire VER 232.08 159.39 188.10 59.66 ind:pre:3s;ind:pas:3s; +suffixes suffixe NOM m p 0.00 0.14 0.00 0.14 +suffocant suffocant ADJ m s 0.33 3.78 0.24 1.28 +suffocante suffocant ADJ f s 0.33 3.78 0.06 1.76 +suffocantes suffocant ADJ f p 0.33 3.78 0.01 0.27 +suffocants suffocant ADJ m p 0.33 3.78 0.01 0.47 +suffocation suffocation NOM f s 0.42 1.35 0.42 1.01 +suffocations suffocation NOM f p 0.42 1.35 0.00 0.34 +suffoqua suffoquer VER 2.48 11.76 0.00 0.47 ind:pas:3s; +suffoquai suffoquer VER 2.48 11.76 0.00 0.07 ind:pas:1s; +suffoquaient suffoquer VER 2.48 11.76 0.00 0.27 ind:imp:3p; +suffoquais suffoquer VER 2.48 11.76 0.15 0.47 ind:imp:1s; +suffoquait suffoquer VER 2.48 11.76 0.07 1.89 ind:imp:3s; +suffoquant suffoquer VER 2.48 11.76 0.01 1.55 par:pre; +suffoque suffoquer VER 2.48 11.76 0.93 1.69 ind:pre:1s;ind:pre:3s; +suffoquent suffoquer VER 2.48 11.76 0.02 0.14 ind:pre:3p; +suffoquer suffoquer VER 2.48 11.76 0.91 0.81 inf; +suffoquera suffoquer VER 2.48 11.76 0.03 0.00 ind:fut:3s; +suffoquerait suffoquer VER 2.48 11.76 0.01 0.00 cnd:pre:3s; +suffoqueront suffoquer VER 2.48 11.76 0.01 0.07 ind:fut:3p; +suffoquez suffoquer VER 2.48 11.76 0.03 0.07 imp:pre:2p;ind:pre:2p; +suffoquions suffoquer VER 2.48 11.76 0.00 0.20 ind:imp:1p; +suffoquons suffoquer VER 2.48 11.76 0.00 0.14 imp:pre:1p;ind:pre:1p; +suffoquèrent suffoquer VER 2.48 11.76 0.00 0.07 ind:pas:3p; +suffoqué suffoquer VER m s 2.48 11.76 0.13 2.23 par:pas; +suffoquée suffoquer VER f s 2.48 11.76 0.15 1.28 par:pas; +suffoqués suffoquer VER m p 2.48 11.76 0.04 0.34 par:pas; +suffrage suffrage NOM m s 0.60 3.99 0.33 2.50 +suffrages suffrage NOM m p 0.60 3.99 0.27 1.49 +suffragette suffragette NOM f s 0.20 0.27 0.12 0.27 +suffragettes suffragette NOM f p 0.20 0.27 0.08 0.00 +suffète suffète NOM m s 0.00 0.07 0.00 0.07 +suggestibilité suggestibilité NOM f s 0.02 0.00 0.02 0.00 +suggestif suggestif ADJ m s 0.58 1.22 0.27 0.27 +suggestifs suggestif ADJ m p 0.58 1.22 0.01 0.14 +suggestion suggestion NOM f s 8.35 7.77 5.63 3.51 +suggestionner suggestionner VER 0.02 0.14 0.01 0.07 inf; +suggestionné suggestionner VER m s 0.02 0.14 0.01 0.07 par:pas; +suggestions suggestion NOM f p 8.35 7.77 2.71 4.26 +suggestive suggestif ADJ f s 0.58 1.22 0.16 0.74 +suggestives suggestif ADJ f p 0.58 1.22 0.14 0.07 +suggestivité suggestivité NOM f s 0.01 0.00 0.01 0.00 +suggère suggérer VER 28.99 25.34 11.47 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +suggèrent suggérer VER 28.99 25.34 0.82 0.54 ind:pre:3p; +suggères suggérer VER 28.99 25.34 1.54 0.00 ind:pre:2s; +suggéra suggérer VER 28.99 25.34 0.11 4.46 ind:pas:3s; +suggérai suggérer VER 28.99 25.34 0.01 1.01 ind:pas:1s; +suggéraient suggérer VER 28.99 25.34 0.04 0.27 ind:imp:3p; +suggérais suggérer VER 28.99 25.34 0.47 0.54 ind:imp:1s;ind:imp:2s; +suggérait suggérer VER 28.99 25.34 0.23 3.24 ind:imp:3s; +suggérant suggérer VER 28.99 25.34 0.89 0.95 par:pre; +suggérer suggérer VER 28.99 25.34 4.18 3.45 ind:pre:2p;inf; +suggérera suggérer VER 28.99 25.34 0.01 0.07 ind:fut:3s; +suggérerai suggérer VER 28.99 25.34 0.01 0.07 ind:fut:1s; +suggérerais suggérer VER 28.99 25.34 0.32 0.00 cnd:pre:1s;cnd:pre:2s; +suggérerait suggérer VER 28.99 25.34 0.16 0.27 cnd:pre:3s; +suggérez suggérer VER 28.99 25.34 3.29 0.07 imp:pre:2p;ind:pre:2p; +suggériez suggérer VER 28.99 25.34 0.17 0.00 ind:imp:2p; +suggérions suggérer VER 28.99 25.34 0.01 0.07 ind:imp:1p; +suggérons suggérer VER 28.99 25.34 0.18 0.07 imp:pre:1p;ind:pre:1p; +suggérât suggérer VER 28.99 25.34 0.00 0.14 sub:imp:3s; +suggérèrent suggérer VER 28.99 25.34 0.00 0.07 ind:pas:3p; +suggéré suggérer VER m s 28.99 25.34 4.76 3.99 par:pas; +suggérée suggérer VER f s 28.99 25.34 0.14 0.95 par:pas; +suggérées suggérer VER f p 28.99 25.34 0.15 0.41 par:pas; +suggérés suggérer VER m p 28.99 25.34 0.02 0.14 par:pas; +ségrégation ségrégation NOM f s 0.40 0.74 0.40 0.74 +ségrégationniste ségrégationniste ADJ m s 0.11 0.00 0.11 0.00 +séguedille séguedille NOM f s 0.00 0.14 0.00 0.14 +sui_generis sui_generis ADJ m p 0.23 0.07 0.23 0.07 +sui sui NOM m s 0.55 0.27 0.55 0.27 +suicida suicider VER 30.09 11.35 0.30 0.47 ind:pas:3s; +suicidaient suicider VER 30.09 11.35 0.01 0.14 ind:imp:3p; +suicidaire suicidaire ADJ s 2.63 1.22 2.63 1.22 +suicidaires suicidaire NOM p 1.79 1.35 1.23 0.68 +suicidait suicider VER 30.09 11.35 0.09 0.27 ind:imp:3s; +suicidant suicidant NOM m s 0.08 0.20 0.08 0.14 +suicidants suicidant NOM m p 0.08 0.20 0.00 0.07 +suicide suicide NOM m s 27.33 18.92 25.34 17.50 +suicident suicider VER 30.09 11.35 0.62 0.41 ind:pre:3p; +suicider suicider VER 30.09 11.35 10.49 4.19 inf; +suicidera suicider VER 30.09 11.35 0.09 0.27 ind:fut:3s; +suiciderai suicider VER 30.09 11.35 0.48 0.07 ind:fut:1s; +suiciderais suicider VER 30.09 11.35 0.06 0.07 cnd:pre:1s;cnd:pre:2s; +suiciderait suicider VER 30.09 11.35 0.33 0.14 cnd:pre:3s; +suiciderez suicider VER 30.09 11.35 0.00 0.14 ind:fut:2p; +suicideriez suicider VER 30.09 11.35 0.01 0.00 cnd:pre:2p; +suicides suicide NOM m p 27.33 18.92 1.98 1.42 +suicidez suicider VER 30.09 11.35 0.27 0.00 ind:pre:2p; +suicidiez suicider VER 30.09 11.35 0.04 0.00 ind:imp:2p; +suicidons suicider VER 30.09 11.35 0.11 0.07 imp:pre:1p;ind:pre:1p; +suicidât suicider VER 30.09 11.35 0.00 0.07 sub:imp:3s; +suicidèrent suicider VER 30.09 11.35 0.00 0.07 ind:pas:3p; +suicidé suicider VER m s 30.09 11.35 8.38 1.82 par:pas; +suicidée suicider VER f s 30.09 11.35 2.75 1.35 par:pas; +suicidées suicider VER f p 30.09 11.35 0.15 0.00 par:pas; +suicidés suicider VER m p 30.09 11.35 1.25 0.34 par:pas; +séide séide NOM m s 0.02 0.20 0.01 0.00 +séides séide NOM m p 0.02 0.20 0.01 0.20 +suie suie NOM f s 0.72 7.43 0.72 7.30 +suies suie NOM f p 0.72 7.43 0.00 0.14 +suif suif NOM m s 0.96 2.03 0.96 2.03 +suifer suifer VER 0.00 0.14 0.00 0.07 inf; +suiffard suiffard NOM m s 0.00 0.07 0.00 0.07 +suiffeuses suiffeux ADJ f p 0.00 0.14 0.00 0.07 +suiffeux suiffeux ADJ m 0.00 0.14 0.00 0.07 +suiffé suiffer VER m s 0.00 0.27 0.00 0.14 par:pas; +suiffée suiffer VER f s 0.00 0.27 0.00 0.07 par:pas; +suiffés suiffer VER m p 0.00 0.27 0.00 0.07 par:pas; +suifés suifer VER m p 0.00 0.14 0.00 0.07 par:pas; +suint suint NOM m s 0.00 0.88 0.00 0.88 +suinta suinter VER 0.96 5.95 0.00 0.14 ind:pas:3s; +suintaient suinter VER 0.96 5.95 0.02 0.54 ind:imp:3p; +suintait suinter VER 0.96 5.95 0.02 1.96 ind:imp:3s; +suintant suinter VER 0.96 5.95 0.10 0.41 par:pre; +suintante suintant ADJ f s 0.17 2.70 0.05 0.34 +suintantes suintant ADJ f p 0.17 2.70 0.01 0.68 +suintants suintant ADJ m p 0.17 2.70 0.06 0.88 +suinte suinter VER 0.96 5.95 0.43 1.55 imp:pre:2s;ind:pre:3s; +suintement suintement NOM m s 0.12 0.81 0.11 0.54 +suintements suintement NOM m p 0.12 0.81 0.01 0.27 +suintent suinter VER 0.96 5.95 0.06 0.47 ind:pre:3p; +suinter suinter VER 0.96 5.95 0.20 0.74 inf; +suinté suinter VER m s 0.96 5.95 0.13 0.14 par:pas; +suis être AUX 8074.24 6501.82 1272.28 560.47 ind:pre:1s; +séisme séisme NOM m s 3.31 1.22 2.60 1.01 +séismes séisme NOM m p 3.31 1.22 0.71 0.20 +suisse suisse ADJ s 5.01 10.27 3.91 6.62 +suisses suisse ADJ p 5.01 10.27 1.10 3.58 +suissesse suisse NOM f s 1.42 3.38 0.11 0.47 +suissesses suisse NOM f p 1.42 3.38 0.00 0.07 +suit suivre VER 2090.53 949.12 32.57 29.39 ind:pre:3s; +suite suite NOM f s 275.90 275.81 274.18 270.88 +suites suite NOM f p 275.90 275.81 1.72 4.93 +suitée suitée ADJ f s 0.00 0.07 0.00 0.07 +suiv suiv ADJ 0.01 0.00 0.01 0.00 +suivîmes suivre VER 2090.53 949.12 0.02 0.74 ind:pas:1p; +suivît suivre VER 2090.53 949.12 0.00 0.41 sub:imp:3s; +suivaient suivre VER 2090.53 949.12 1.11 15.54 ind:imp:3p; +suivais suivre VER 2090.53 949.12 3.46 8.11 ind:imp:1s;ind:imp:2s; +suivait suivre VER 2090.53 949.12 6.09 40.54 ind:imp:3s; +suivant suivant PRE 2.61 15.47 2.61 15.47 +suivante suivant ADJ f s 28.81 51.08 11.20 19.46 +suivantes suivant ADJ f p 28.81 51.08 2.55 5.61 +suivants suivant ADJ m p 28.81 51.08 4.26 9.19 +suive suivre VER 2090.53 949.12 4.09 1.62 sub:pre:1s;sub:pre:3s; +suivent suivre VER 2090.53 949.12 11.14 12.64 ind:pre:3p;sub:pre:3p; +suives suivre VER 2090.53 949.12 0.98 0.00 sub:pre:2s; +suiveur suiveur NOM m s 0.27 0.88 0.07 0.27 +suiveurs suiveur NOM m p 0.27 0.88 0.17 0.54 +suiveuse suiveur NOM f s 0.27 0.88 0.03 0.07 +suiveuses suiveur ADJ f p 0.02 0.27 0.00 0.14 +suivez_moi_jeune_homme suivez_moi_jeune_homme NOM m s 0.00 0.07 0.00 0.07 +suivez suivre VER 2090.53 949.12 57.03 6.35 imp:pre:2p;ind:pre:2p; +suivi suivre VER m s 2090.53 949.12 34.99 48.04 par:pas; +suivie suivre VER f s 2090.53 949.12 9.18 15.54 par:pas; +suivies suivre VER f p 2090.53 949.12 1.21 3.51 par:pas; +suiviez suivre VER 2090.53 949.12 1.27 0.14 ind:imp:2p;sub:pre:2p; +suivions suivre VER 2090.53 949.12 0.24 2.70 ind:imp:1p; +suivirent suivre VER 2090.53 949.12 0.69 15.27 ind:pas:3p; +suivis suivre VER m p 2090.53 949.12 4.80 11.42 ind:pas:1s;par:pas;par:pas; +suivissent suivre VER 2090.53 949.12 0.00 0.20 sub:imp:3p; +suivistes suiviste NOM p 0.00 0.07 0.00 0.07 +suivit suivre VER 2090.53 949.12 0.70 35.47 ind:pas:3s; +suivons suivre VER 2090.53 949.12 4.45 3.11 imp:pre:1p;ind:pre:1p; +suivra suivre VER 2090.53 949.12 5.27 2.70 ind:fut:3s; +suivrai suivre VER 2090.53 949.12 4.21 1.15 ind:fut:1s; +suivraient suivre VER 2090.53 949.12 0.58 1.42 cnd:pre:3p; +suivrais suivre VER 2090.53 949.12 1.62 0.95 cnd:pre:1s;cnd:pre:2s; +suivrait suivre VER 2090.53 949.12 0.96 3.18 cnd:pre:3s; +suivras suivre VER 2090.53 949.12 0.64 0.20 ind:fut:2s; +suivre suivre VER 2090.53 949.12 73.91 80.14 inf;; +suivrez suivre VER 2090.53 949.12 1.18 0.20 ind:fut:2p; +suivriez suivre VER 2090.53 949.12 0.06 0.00 cnd:pre:2p; +suivrions suivre VER 2090.53 949.12 0.00 0.14 cnd:pre:1p; +suivrons suivre VER 2090.53 949.12 1.94 0.34 ind:fut:1p; +suivront suivre VER 2090.53 949.12 2.46 2.16 ind:fut:3p; +sujet sujet NOM m s 120.42 105.74 107.92 88.04 +sujets sujet NOM m p 120.42 105.74 12.51 17.70 +sujette sujet ADJ f s 3.90 6.62 0.70 1.42 +sujettes sujet ADJ f p 3.90 6.62 0.09 0.20 +séjour séjour NOM m s 16.60 43.58 15.70 36.82 +séjourna séjourner VER 2.48 6.96 0.00 0.34 ind:pas:3s; +séjournaient séjourner VER 2.48 6.96 0.02 0.34 ind:imp:3p; +séjournais séjourner VER 2.48 6.96 0.00 0.07 ind:imp:1s; +séjournait séjourner VER 2.48 6.96 0.27 1.22 ind:imp:3s; +séjournant séjourner VER 2.48 6.96 0.00 0.27 par:pre; +séjourne séjourner VER 2.48 6.96 0.83 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +séjournent séjourner VER 2.48 6.96 0.14 0.07 ind:pre:3p; +séjourner séjourner VER 2.48 6.96 0.39 1.35 inf; +séjourneraient séjourner VER 2.48 6.96 0.00 0.07 cnd:pre:3p; +séjournerez séjourner VER 2.48 6.96 0.12 0.07 ind:fut:2p; +séjourneriez séjourner VER 2.48 6.96 0.01 0.00 cnd:pre:2p; +séjournerons séjourner VER 2.48 6.96 0.01 0.00 ind:fut:1p; +séjournes séjourner VER 2.48 6.96 0.01 0.00 ind:pre:2s; +séjournez séjourner VER 2.48 6.96 0.10 0.00 imp:pre:2p;ind:pre:2p; +séjourniez séjourner VER 2.48 6.96 0.01 0.07 ind:imp:2p; +séjournions séjourner VER 2.48 6.96 0.00 0.20 ind:imp:1p; +séjournâmes séjourner VER 2.48 6.96 0.00 0.07 ind:pas:1p; +séjourné séjourner VER m s 2.48 6.96 0.56 2.36 par:pas; +séjours séjour NOM m p 16.60 43.58 0.90 6.76 +sujétion sujétion NOM f s 0.03 1.15 0.03 0.81 +sujétions sujétion NOM f p 0.03 1.15 0.00 0.34 +sélect sélect ADJ m s 0.13 0.54 0.08 0.41 +sélecte sélect ADJ f s 0.13 0.54 0.02 0.00 +sélecteur sélecteur NOM m s 0.05 0.27 0.03 0.07 +sélecteurs sélecteur NOM m p 0.05 0.27 0.03 0.20 +sélectif sélectif ADJ m s 1.18 1.22 0.21 0.47 +sélectifs sélectif ADJ m p 1.18 1.22 0.08 0.14 +sélection sélection NOM f s 4.69 2.64 4.45 2.36 +sélectionna sélectionner VER 4.08 1.76 0.00 0.07 ind:pas:3s; +sélectionnaient sélectionner VER 4.08 1.76 0.00 0.07 ind:imp:3p; +sélectionnait sélectionner VER 4.08 1.76 0.03 0.14 ind:imp:3s; +sélectionnant sélectionner VER 4.08 1.76 0.16 0.00 par:pre; +sélectionne sélectionner VER 4.08 1.76 0.38 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sélectionner sélectionner VER 4.08 1.76 1.13 0.61 inf; +sélectionnera sélectionner VER 4.08 1.76 0.11 0.00 ind:fut:3s; +sélectionnerai sélectionner VER 4.08 1.76 0.02 0.00 ind:fut:1s; +sélectionnerais sélectionner VER 4.08 1.76 0.01 0.00 cnd:pre:1s; +sélectionneur sélectionneur NOM m s 0.00 0.07 0.00 0.07 +sélectionneuse sélectionneuse NOM f s 0.01 0.00 0.01 0.00 +sélectionnez sélectionner VER 4.08 1.76 0.11 0.00 imp:pre:2p;ind:pre:2p; +sélectionné sélectionner VER m s 4.08 1.76 1.09 0.27 par:pas; +sélectionnée sélectionner VER f s 4.08 1.76 0.13 0.27 par:pas; +sélectionnées sélectionner VER f p 4.08 1.76 0.17 0.07 par:pas; +sélectionnés sélectionner VER m p 4.08 1.76 0.75 0.27 par:pas; +sélections sélection NOM f p 4.69 2.64 0.24 0.27 +sélective sélectif ADJ f s 1.18 1.22 0.83 0.61 +sélectivement sélectivement ADV 0.05 0.00 0.05 0.00 +sélectives sélectif ADJ f p 1.18 1.22 0.05 0.00 +sélectivité sélectivité NOM f s 0.01 0.07 0.01 0.07 +sélects sélect ADJ m p 0.13 0.54 0.02 0.14 +sulfamide sulfamide NOM m s 0.19 0.14 0.02 0.00 +sulfamides sulfamide NOM m p 0.19 0.14 0.17 0.14 +sulfatages sulfatage NOM m p 0.00 0.07 0.00 0.07 +sulfatant sulfater VER 0.04 0.27 0.00 0.07 par:pre; +sulfate sulfate NOM m s 0.46 0.68 0.45 0.47 +sulfater sulfater VER 0.04 0.27 0.01 0.20 inf; +sulfates sulfate NOM m p 0.46 0.68 0.01 0.20 +sulfateuse sulfateur NOM f s 0.06 0.27 0.06 0.14 +sulfateuses sulfateur NOM f p 0.06 0.27 0.00 0.14 +sulfaté sulfaté ADJ m s 0.10 0.07 0.10 0.00 +sulfatées sulfaté ADJ f p 0.10 0.07 0.00 0.07 +sulfhydrique sulfhydrique ADJ m s 0.01 0.07 0.01 0.07 +sulfite sulfite NOM m s 0.03 0.07 0.03 0.07 +sulfonate sulfonate NOM m s 0.03 0.00 0.03 0.00 +sulfonique sulfonique ADJ s 0.01 0.00 0.01 0.00 +sulfonée sulfoner VER f s 0.00 0.14 0.00 0.07 par:pas; +sulfonés sulfoner VER m p 0.00 0.14 0.00 0.07 par:pas; +sulfure sulfure NOM m s 0.15 0.68 0.14 0.34 +sulfures sulfure NOM m p 0.15 0.68 0.01 0.34 +sulfureuse sulfureux ADJ f s 0.50 1.89 0.27 0.95 +sulfureuses sulfureux ADJ f p 0.50 1.89 0.16 0.47 +sulfureux sulfureux ADJ m 0.50 1.89 0.07 0.47 +sulfurique sulfurique ADJ m s 0.82 0.41 0.82 0.41 +sulfurisé sulfurisé ADJ m s 0.04 0.20 0.04 0.20 +sulfuré sulfuré ADJ m s 0.03 0.00 0.02 0.00 +sulfurée sulfuré ADJ f s 0.03 0.00 0.01 0.00 +sulky sulky NOM m s 0.14 0.41 0.14 0.41 +sulpicien sulpicien ADJ m s 0.00 0.61 0.00 0.20 +sulpicienne sulpicien ADJ f s 0.00 0.61 0.00 0.27 +sulpiciennes sulpicien ADJ f p 0.00 0.61 0.00 0.14 +sultan sultan NOM m s 1.75 7.09 1.68 4.86 +sultanat sultanat NOM m s 0.02 0.20 0.02 0.20 +sultane sultane NOM f s 0.05 3.78 0.05 3.78 +sultanes sultan NOM f p 1.75 7.09 0.00 0.07 +sultans sultan NOM m p 1.75 7.09 0.07 2.16 +sélénite sélénite NOM s 0.20 0.00 0.02 0.00 +sélénites sélénite NOM p 0.20 0.00 0.17 0.00 +sélénium sélénium NOM m s 0.19 0.00 0.19 0.00 +séléniure séléniure NOM m s 0.03 0.00 0.03 0.00 +sélénographie sélénographie NOM f s 0.00 0.07 0.00 0.07 +sumac sumac NOM m s 0.13 0.14 0.13 0.14 +sémantique sémantique NOM f s 0.29 0.34 0.29 0.34 +sémantiques sémantique ADJ p 0.05 0.14 0.00 0.07 +sémaphore sémaphore NOM m s 0.15 1.01 0.12 0.61 +sémaphores sémaphore NOM m p 0.15 1.01 0.03 0.41 +sémaphoriques sémaphorique ADJ m p 0.00 0.07 0.00 0.07 +sémillant sémillant ADJ m s 0.19 0.61 0.19 0.41 +sémillante sémillant ADJ f s 0.19 0.61 0.00 0.20 +sémillon sémillon NOM m s 0.00 0.07 0.00 0.07 +séminaire séminaire NOM m s 3.58 4.59 2.73 3.58 +séminaires séminaire NOM m p 3.58 4.59 0.86 1.01 +séminal séminal ADJ m s 0.21 1.08 0.17 0.07 +séminale séminal ADJ f s 0.21 1.08 0.03 0.74 +séminales séminal ADJ f p 0.21 1.08 0.01 0.07 +séminariste séminariste NOM s 0.21 3.72 0.20 2.97 +séminaristes séminariste NOM p 0.21 3.72 0.01 0.74 +séminaux séminal ADJ m p 0.21 1.08 0.00 0.20 +séminole séminole NOM s 0.08 0.07 0.03 0.00 +séminoles séminole NOM p 0.08 0.07 0.05 0.07 +séminome séminome NOM m s 0.01 0.00 0.01 0.00 +sémiologie sémiologie NOM f s 0.01 0.07 0.01 0.07 +sémiologue sémiologue NOM s 0.00 0.07 0.00 0.07 +sémiotique sémiotique NOM f s 0.04 0.00 0.04 0.00 +sémiotiques sémiotique NOM f p 0.04 0.00 0.01 0.00 +sémite sémite NOM s 0.36 0.34 0.12 0.20 +sémites sémite NOM p 0.36 0.34 0.23 0.14 +sémitique sémitique ADJ s 0.02 0.20 0.02 0.07 +sémitiques sémitique ADJ f p 0.02 0.20 0.00 0.14 +summum summum NOM m s 0.56 0.47 0.56 0.47 +sumo sumo NOM m s 0.88 0.07 0.88 0.07 +sumérien sumérien NOM m s 0.04 0.00 0.04 0.00 +sénat sénat NOM m s 1.38 1.82 1.38 1.82 +sénateur sénateur NOM m s 19.77 3.31 14.85 2.03 +sénateurs sénateur NOM m p 19.77 3.31 4.48 1.28 +sénatorial sénatorial ADJ m s 0.25 0.47 0.07 0.20 +sénatoriale sénatorial ADJ f s 0.25 0.47 0.17 0.20 +sénatoriales sénatorial NOM f p 0.03 0.00 0.03 0.00 +sénatrice sénateur NOM f s 19.77 3.31 0.44 0.00 +sénatus_consulte sénatus_consulte NOM m s 0.00 0.07 0.00 0.07 +sénescence sénescence NOM f s 0.01 0.14 0.01 0.14 +sénevé sénevé NOM m s 0.00 0.14 0.00 0.14 +sénile sénile ADJ s 2.18 1.82 1.94 1.49 +sénilement sénilement ADV 0.00 0.07 0.00 0.07 +séniles sénile ADJ p 2.18 1.82 0.23 0.34 +sénilité sénilité NOM f s 0.23 0.81 0.23 0.81 +sunlight sunlight NOM m s 0.16 0.41 0.16 0.00 +sunlights sunlight NOM m p 0.16 0.41 0.00 0.41 +sunna sunna NOM f s 0.02 0.07 0.02 0.07 +sunnites sunnite NOM p 0.02 0.00 0.02 0.00 +séné séné NOM m s 0.16 0.14 0.16 0.07 +sénéchal sénéchal NOM m s 0.01 5.81 0.01 5.20 +sénéchaux sénéchal NOM m p 0.01 5.81 0.00 0.61 +sénégalais sénégalais NOM m 0.14 2.09 0.14 1.82 +sénégalaise sénégalais ADJ f s 0.11 3.24 0.01 0.00 +sénégalaises sénégalais ADJ f p 0.11 3.24 0.01 0.00 +sénés séné NOM m p 0.16 0.14 0.00 0.07 +suons suer VER 7.28 10.34 0.02 0.00 ind:pre:1p; +suât suer VER 7.28 10.34 0.00 0.07 sub:imp:3s; +séoudite séoudite ADJ f s 0.00 0.27 0.00 0.27 +sépale sépale NOM m s 0.03 0.00 0.01 0.00 +sépales sépale NOM m p 0.03 0.00 0.02 0.00 +sépara séparer VER 66.22 109.80 0.27 2.77 ind:pas:3s; +séparable séparable ADJ s 0.00 0.14 0.00 0.14 +séparai séparer VER 66.22 109.80 0.01 0.14 ind:pas:1s; +séparaient séparer VER 66.22 109.80 0.30 7.70 ind:imp:3p; +séparais séparer VER 66.22 109.80 0.01 0.34 ind:imp:1s; +séparait séparer VER 66.22 109.80 1.23 18.04 ind:imp:3s; +séparant séparer VER 66.22 109.80 0.56 4.26 par:pre; +séparateur séparateur NOM m s 0.07 0.00 0.07 0.00 +séparation séparation NOM f s 10.15 14.39 9.88 13.45 +séparations séparation NOM f p 10.15 14.39 0.27 0.95 +séparatiste séparatiste ADJ m s 0.45 0.20 0.09 0.20 +séparatistes séparatiste NOM p 0.45 0.00 0.40 0.00 +séparatrice séparateur ADJ f s 0.01 0.20 0.01 0.00 +sépare séparer VER 66.22 109.80 12.77 14.19 imp:pre:2s;ind:pre:1s;ind:pre:3s; +séparent séparer VER 66.22 109.80 3.41 6.42 ind:pre:3p; +séparer séparer VER 66.22 109.80 20.34 18.38 ind:pre:2p;inf; +séparera séparer VER 66.22 109.80 1.39 0.34 ind:fut:3s; +séparerai séparer VER 66.22 109.80 0.32 0.34 ind:fut:1s; +sépareraient séparer VER 66.22 109.80 0.17 0.14 cnd:pre:3p; +séparerais séparer VER 66.22 109.80 0.28 0.07 cnd:pre:1s;cnd:pre:2s; +séparerait séparer VER 66.22 109.80 0.22 0.54 cnd:pre:3s; +sépareras séparer VER 66.22 109.80 0.02 0.00 ind:fut:2s; +séparerez séparer VER 66.22 109.80 0.16 0.14 ind:fut:2p; +séparerons séparer VER 66.22 109.80 0.25 0.20 ind:fut:1p; +sépareront séparer VER 66.22 109.80 0.09 0.00 ind:fut:3p; +séparez séparer VER 66.22 109.80 2.59 0.14 imp:pre:2p;ind:pre:2p; +sépariez séparer VER 66.22 109.80 0.32 0.07 ind:imp:2p; +séparions séparer VER 66.22 109.80 0.08 0.68 ind:imp:1p; +séparâmes séparer VER 66.22 109.80 0.01 0.34 ind:pas:1p; +séparons séparer VER 66.22 109.80 2.17 0.47 imp:pre:1p;ind:pre:1p; +séparât séparer VER 66.22 109.80 0.00 0.27 sub:imp:3s; +séparèrent séparer VER 66.22 109.80 0.30 3.11 ind:pas:3p; +séparé séparer VER m s 66.22 109.80 4.11 8.78 par:pas; +séparée séparer VER f s 66.22 109.80 2.11 6.49 par:pas; +séparées séparé ADJ f p 5.41 7.30 1.11 1.28 +séparément séparément ADV 4.01 3.78 4.01 3.78 +séparés séparer VER m p 66.22 109.80 11.81 12.43 par:pas; +super_espion super_espion NOM m s 0.02 0.00 0.02 0.00 +super_grand super_grand NOM m p 0.00 0.07 0.00 0.07 +super_pilote super_pilote ADJ s 0.01 0.00 0.01 0.00 +super_puissance super_puissance NOM f p 0.03 0.00 0.03 0.00 +super super ADJ 154.83 7.09 154.83 7.09 +superbe superbe ADJ s 53.42 23.85 45.32 19.05 +superbement superbement ADV 0.30 2.64 0.30 2.64 +superbes superbe ADJ p 53.42 23.85 8.10 4.80 +supercalculateur supercalculateur NOM m s 0.06 0.00 0.06 0.00 +supercarburant supercarburant NOM m s 0.02 0.00 0.02 0.00 +superchampion superchampion NOM m s 0.01 0.07 0.00 0.07 +superchampions superchampion NOM m p 0.01 0.07 0.01 0.00 +supercherie supercherie NOM f s 1.60 1.76 1.55 1.69 +supercheries supercherie NOM f p 1.60 1.76 0.04 0.07 +superfamille superfamille NOM f s 0.01 0.00 0.01 0.00 +superficialité superficialité NOM f s 0.27 0.34 0.26 0.34 +superficialités superficialité NOM f p 0.27 0.34 0.01 0.00 +superficie superficie NOM f s 0.35 1.01 0.35 1.01 +superficiel superficiel ADJ m s 5.71 5.61 2.12 1.96 +superficielle superficiel ADJ f s 5.71 5.61 1.93 2.23 +superficiellement superficiellement ADV 0.06 0.41 0.06 0.41 +superficielles superficiel ADJ f p 5.71 5.61 1.00 0.68 +superficiels superficiel ADJ m p 5.71 5.61 0.67 0.74 +superfin superfin ADJ m s 0.00 0.07 0.00 0.07 +superflu superflu ADJ m s 2.94 4.46 1.41 2.16 +superflue superflu ADJ f s 2.94 4.46 0.16 1.08 +superflues superflu ADJ f p 2.94 4.46 0.35 0.68 +superfluité superfluité NOM f s 0.00 0.20 0.00 0.07 +superfluités superfluité NOM f p 0.00 0.20 0.00 0.14 +superflus superflu ADJ m p 2.94 4.46 1.01 0.54 +superforteresses superforteresse ADJ f p 0.00 0.07 0.00 0.07 +superfétatoire superfétatoire ADJ s 0.03 0.54 0.03 0.27 +superfétatoires superfétatoire ADJ f p 0.03 0.54 0.00 0.27 +supergrand supergrand NOM m s 0.00 0.07 0.00 0.07 +superintendant superintendant NOM m s 0.10 0.14 0.10 0.07 +superintendante superintendante NOM f s 0.00 0.07 0.00 0.07 +superintendants superintendant NOM m p 0.10 0.14 0.00 0.07 +superlatif superlatif ADJ m s 0.03 0.07 0.02 0.07 +superlatifs superlatif NOM m p 0.02 0.27 0.02 0.27 +superlative superlatif ADJ f s 0.03 0.07 0.01 0.00 +superlativement superlativement ADV 0.00 0.07 0.00 0.07 +superman superman NOM m 1.52 0.20 1.12 0.14 +supermarché supermarché NOM m s 12.19 5.68 10.68 5.34 +supermarchés supermarché NOM m p 12.19 5.68 1.51 0.34 +supermen superman NOM m p 1.52 0.20 0.40 0.07 +supernova supernova NOM f s 0.58 0.07 0.55 0.07 +supernovas supernova NOM f p 0.58 0.07 0.04 0.00 +superordinateur superordinateur NOM m s 0.03 0.00 0.03 0.00 +superphosphates superphosphate NOM m p 0.00 0.07 0.00 0.07 +superposa superposer VER 0.56 7.50 0.00 0.07 ind:pas:3s; +superposable superposable ADJ s 0.00 0.20 0.00 0.07 +superposables superposable ADJ m p 0.00 0.20 0.00 0.14 +superposaient superposer VER 0.56 7.50 0.00 1.01 ind:imp:3p; +superposait superposer VER 0.56 7.50 0.00 0.34 ind:imp:3s; +superposant superposer VER 0.56 7.50 0.02 0.74 par:pre; +superpose superposer VER 0.56 7.50 0.04 0.81 ind:pre:1s;ind:pre:3s; +superposent superposer VER 0.56 7.50 0.26 1.35 ind:pre:3p; +superposer superposer VER 0.56 7.50 0.03 0.88 inf; +superposez superposer VER 0.56 7.50 0.01 0.00 ind:pre:2p; +superposition superposition NOM f s 0.03 0.95 0.02 0.61 +superpositions superposition NOM f p 0.03 0.95 0.01 0.34 +superposé superposé ADJ m s 0.37 5.00 0.10 0.14 +superposée superposer VER f s 0.56 7.50 0.01 0.27 par:pas; +superposées superposé ADJ f p 0.37 5.00 0.04 1.96 +superposés superposé ADJ m p 0.37 5.00 0.23 2.84 +superpouvoirs superpouvoir NOM m p 0.20 0.00 0.20 0.00 +superproduction superproduction NOM f s 0.08 0.27 0.06 0.20 +superproductions superproduction NOM f p 0.08 0.27 0.02 0.07 +superpuissance superpuissance NOM f s 0.34 0.00 0.22 0.00 +superpuissances superpuissance NOM f p 0.34 0.00 0.12 0.00 +superpuissant superpuissant ADJ m s 0.04 0.07 0.01 0.00 +superpuissante superpuissant ADJ f s 0.04 0.07 0.01 0.00 +superpuissants superpuissant ADJ m p 0.04 0.07 0.01 0.07 +supers super NOM m p 73.26 2.77 1.78 0.07 +supersonique supersonique ADJ s 0.33 0.20 0.11 0.07 +supersoniques supersonique ADJ p 0.33 0.20 0.23 0.14 +superstar superstar NOM f s 1.82 0.41 1.67 0.34 +superstars superstar NOM f p 1.82 0.41 0.15 0.07 +superstitieuse superstitieux ADJ f s 2.54 3.92 0.30 1.82 +superstitieusement superstitieusement ADV 0.00 0.34 0.00 0.34 +superstitieuses superstitieux ADJ f p 2.54 3.92 0.17 0.14 +superstitieux superstitieux ADJ m 2.54 3.92 2.08 1.96 +superstition superstition NOM f s 6.11 5.95 3.61 4.19 +superstitions superstition NOM f p 6.11 5.95 2.50 1.76 +superstructure superstructure NOM f s 0.11 1.35 0.11 0.20 +superstructures superstructure NOM f p 0.11 1.35 0.00 1.15 +supertanker supertanker NOM m s 0.03 0.00 0.03 0.00 +supervisa superviser VER 3.61 0.74 0.02 0.00 ind:pas:3s; +supervisais superviser VER 3.61 0.74 0.03 0.00 ind:imp:1s; +supervisait superviser VER 3.61 0.74 0.14 0.27 ind:imp:3s; +supervisant superviser VER 3.61 0.74 0.03 0.00 par:pre; +supervise superviser VER 3.61 0.74 1.03 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supervisent superviser VER 3.61 0.74 0.05 0.00 ind:pre:3p; +superviser superviser VER 3.61 0.74 1.03 0.20 inf; +supervisera superviser VER 3.61 0.74 0.11 0.00 ind:fut:3s; +superviserai superviser VER 3.61 0.74 0.09 0.00 ind:fut:1s; +superviserais superviser VER 3.61 0.74 0.01 0.00 cnd:pre:1s; +superviserait superviser VER 3.61 0.74 0.04 0.00 cnd:pre:3s; +superviseras superviser VER 3.61 0.74 0.02 0.00 ind:fut:2s; +superviserez superviser VER 3.61 0.74 0.04 0.00 ind:fut:2p; +superviserons superviser VER 3.61 0.74 0.01 0.00 ind:fut:1p; +superviseront superviser VER 3.61 0.74 0.01 0.07 ind:fut:3p; +superviseur superviseur NOM m s 1.99 0.07 1.66 0.00 +superviseurs superviseur NOM m p 1.99 0.07 0.33 0.07 +supervisez superviser VER 3.61 0.74 0.04 0.00 ind:pre:2p; +supervisiez superviser VER 3.61 0.74 0.05 0.00 ind:imp:2p; +supervision supervision NOM f s 0.68 0.27 0.68 0.20 +supervisions supervision NOM f p 0.68 0.27 0.00 0.07 +supervisons superviser VER 3.61 0.74 0.05 0.00 ind:pre:1p; +supervisé superviser VER m s 3.61 0.74 0.62 0.07 par:pas; +supervisée superviser VER f s 3.61 0.74 0.11 0.00 par:pas; +supervisées superviser VER f p 3.61 0.74 0.04 0.00 par:pas; +supervisés superviser VER m p 3.61 0.74 0.03 0.07 par:pas; +sépharade sépharade ADJ f s 0.01 0.20 0.01 0.07 +sépharades sépharade NOM p 0.00 0.41 0.00 0.14 +sépia sépia NOM f s 0.02 1.15 0.02 1.08 +sépias sépia NOM f p 0.02 1.15 0.00 0.07 +supin supin NOM m s 0.00 0.07 0.00 0.07 +supination supination NOM f s 0.05 0.14 0.05 0.14 +suppôt suppôt NOM m s 0.39 0.95 0.17 0.54 +suppôts suppôt NOM m p 0.39 0.95 0.22 0.41 +supplanta supplanter VER 0.60 1.62 0.00 0.07 ind:pas:3s; +supplantait supplanter VER 0.60 1.62 0.03 0.20 ind:imp:3s; +supplantant supplanter VER 0.60 1.62 0.01 0.07 par:pre; +supplante supplanter VER 0.60 1.62 0.07 0.00 ind:pre:3s; +supplantent supplanter VER 0.60 1.62 0.04 0.07 ind:pre:3p; +supplanter supplanter VER 0.60 1.62 0.20 0.34 inf; +supplanté supplanter VER m s 0.60 1.62 0.26 0.54 par:pas; +supplantée supplanter VER f s 0.60 1.62 0.00 0.34 par:pas; +supplia supplier VER 53.65 34.46 0.55 3.65 ind:pas:3s; +suppliai supplier VER 53.65 34.46 0.01 0.81 ind:pas:1s; +suppliaient supplier VER 53.65 34.46 0.08 0.95 ind:imp:3p; +suppliais supplier VER 53.65 34.46 0.27 0.88 ind:imp:1s;ind:imp:2s; +suppliait supplier VER 53.65 34.46 0.95 5.07 ind:imp:3s; +suppliant supplier VER 53.65 34.46 0.57 3.11 par:pre; +suppliante suppliant ADJ f s 1.20 7.09 0.50 2.70 +suppliantes suppliant ADJ f p 1.20 7.09 0.00 0.47 +suppliants suppliant ADJ m p 1.20 7.09 0.50 1.15 +supplication supplication NOM f s 0.33 4.80 0.11 2.03 +supplications supplication NOM f p 0.33 4.80 0.22 2.77 +supplice supplice NOM m s 3.77 13.38 3.13 11.35 +supplices supplice NOM m p 3.77 13.38 0.64 2.03 +supplicia supplicier VER 0.48 0.88 0.00 0.07 ind:pas:3s; +suppliciant suppliciant ADJ m s 0.00 0.27 0.00 0.14 +suppliciantes suppliciant ADJ f p 0.00 0.27 0.00 0.14 +supplicient supplicier VER 0.48 0.88 0.00 0.14 ind:pre:3p; +supplicier supplicier VER 0.48 0.88 0.14 0.41 inf; +supplicierez supplicier VER 0.48 0.88 0.14 0.00 ind:fut:2p; +supplicié supplicier VER m s 0.48 0.88 0.10 0.14 par:pas; +suppliciée supplicié NOM f s 0.01 2.64 0.01 0.20 +suppliciées supplicié NOM f p 0.01 2.64 0.00 0.14 +suppliciés supplicier VER m p 0.48 0.88 0.11 0.07 par:pas; +supplie supplier VER 53.65 34.46 37.38 11.01 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +supplient supplier VER 53.65 34.46 0.12 0.74 ind:pre:3p; +supplier supplier VER 53.65 34.46 4.96 4.19 inf; +suppliera supplier VER 53.65 34.46 0.10 0.00 ind:fut:3s; +supplierai supplier VER 53.65 34.46 0.39 0.07 ind:fut:1s; +supplieraient supplier VER 53.65 34.46 0.02 0.00 cnd:pre:3p; +supplierais supplier VER 53.65 34.46 0.03 0.00 cnd:pre:1s;cnd:pre:2s; +supplierait supplier VER 53.65 34.46 0.05 0.07 cnd:pre:3s; +supplieras supplier VER 53.65 34.46 0.44 0.00 ind:fut:2s; +supplierez supplier VER 53.65 34.46 0.06 0.00 ind:fut:2p; +supplieriez supplier VER 53.65 34.46 0.01 0.00 cnd:pre:2p; +supplieront supplier VER 53.65 34.46 0.17 0.00 ind:fut:3p; +supplies supplier VER 53.65 34.46 0.42 0.14 ind:pre:2s; +suppliez supplier VER 53.65 34.46 0.17 0.00 imp:pre:2p;ind:pre:2p; +supplions supplier VER 53.65 34.46 0.27 0.20 ind:pre:1p; +suppliât supplier VER 53.65 34.46 0.00 0.07 sub:imp:3s; +supplique supplique NOM f s 0.28 1.08 0.21 0.68 +suppliques supplique NOM f p 0.28 1.08 0.07 0.41 +supplié supplier VER m s 53.65 34.46 4.33 2.97 par:pas; +suppliée supplier VER f s 53.65 34.46 1.89 0.41 par:pas; +suppliés supplier VER m p 53.65 34.46 0.42 0.14 par:pas; +suppléaient suppléer VER 0.19 2.30 0.00 0.20 ind:imp:3p; +suppléait suppléer VER 0.19 2.30 0.01 0.34 ind:imp:3s; +suppléance suppléance NOM f s 0.14 0.00 0.14 0.00 +suppléant suppléant NOM m s 0.50 0.54 0.34 0.41 +suppléante suppléant ADJ f s 0.20 0.20 0.03 0.00 +suppléants suppléant NOM m p 0.50 0.54 0.14 0.14 +supplée suppléer VER 0.19 2.30 0.00 0.47 ind:pre:3s; +suppléent suppléer VER 0.19 2.30 0.00 0.07 ind:pre:3p; +suppléer suppléer VER 0.19 2.30 0.14 0.68 inf; +suppléeraient suppléer VER 0.19 2.30 0.00 0.07 cnd:pre:3p; +suppléerait suppléer VER 0.19 2.30 0.00 0.14 cnd:pre:3s; +suppléerez suppléer VER 0.19 2.30 0.00 0.07 ind:fut:2p; +supplément supplément NOM m s 2.80 7.50 2.60 6.42 +supplémentaire supplémentaire ADJ s 8.97 15.68 4.19 10.20 +supplémentaires supplémentaire ADJ p 8.97 15.68 4.79 5.47 +supplémenter supplémenter VER 0.00 0.14 0.00 0.07 inf; +suppléments supplément NOM m p 2.80 7.50 0.20 1.08 +supplémentées supplémenter VER f p 0.00 0.14 0.00 0.07 par:pas; +supplétifs supplétif NOM m p 0.00 0.14 0.00 0.14 +supplétive supplétif ADJ f s 0.00 0.14 0.00 0.14 +suppléé suppléer VER m s 0.19 2.30 0.00 0.07 par:pas; +support support NOM m s 2.94 6.42 2.71 5.20 +supporta supporter VER 86.04 81.22 0.05 1.01 ind:pas:3s; +supportable supportable ADJ s 1.73 6.22 1.60 5.00 +supportables supportable ADJ p 1.73 6.22 0.13 1.22 +supportai supporter VER 86.04 81.22 0.01 0.14 ind:pas:1s; +supportaient supporter VER 86.04 81.22 0.14 1.49 ind:imp:3p; +supportais supporter VER 86.04 81.22 2.29 2.30 ind:imp:1s;ind:imp:2s; +supportait supporter VER 86.04 81.22 2.38 10.47 ind:imp:3s; +supportant supporter VER 86.04 81.22 0.14 2.43 par:pre; +supporte supporter VER 86.04 81.22 29.14 12.43 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +supportent supporter VER 86.04 81.22 2.14 2.23 ind:pre:3p;sub:pre:3p; +supporter supporter VER 86.04 81.22 30.04 33.45 inf; +supportera supporter VER 86.04 81.22 1.46 0.47 ind:fut:3s; +supporterai supporter VER 86.04 81.22 2.27 0.95 ind:fut:1s; +supporteraient supporter VER 86.04 81.22 0.23 0.20 cnd:pre:3p; +supporterais supporter VER 86.04 81.22 2.58 1.01 cnd:pre:1s;cnd:pre:2s; +supporterait supporter VER 86.04 81.22 1.18 3.38 cnd:pre:3s; +supporteras supporter VER 86.04 81.22 0.52 0.07 ind:fut:2s; +supporterez supporter VER 86.04 81.22 0.25 0.14 ind:fut:2p; +supporteriez supporter VER 86.04 81.22 0.05 0.20 cnd:pre:2p; +supporterons supporter VER 86.04 81.22 0.22 0.07 ind:fut:1p; +supporteront supporter VER 86.04 81.22 0.13 0.07 ind:fut:3p; +supporters supporter NOM m p 6.07 5.54 1.75 2.91 +supportes supporter VER 86.04 81.22 3.86 0.34 ind:pre:2s; +supporteur supporteur NOM m s 0.08 0.07 0.02 0.00 +supportez supporter VER 86.04 81.22 1.37 0.54 imp:pre:2p;ind:pre:2p; +supportiez supporter VER 86.04 81.22 0.18 0.00 ind:imp:2p; +supportions supporter VER 86.04 81.22 0.00 0.41 ind:imp:1p; +supportons supporter VER 86.04 81.22 0.44 0.27 imp:pre:1p;ind:pre:1p; +supportât supporter VER 86.04 81.22 0.00 0.27 sub:imp:3s; +supportrice supporteur NOM f s 0.08 0.07 0.06 0.00 +supportrices supportrice NOM f p 0.13 0.00 0.13 0.00 +support_chaussette support_chaussette NOM m p 0.00 0.07 0.00 0.07 +supports support NOM m p 2.94 6.42 0.22 1.22 +supportèrent supporter VER 86.04 81.22 0.00 0.07 ind:pas:3p; +supporté supporter VER m s 86.04 81.22 4.56 5.00 par:pas; +supportée supporter VER f s 86.04 81.22 0.20 0.81 par:pas; +supportées supporter VER f p 86.04 81.22 0.01 0.54 par:pas; +supportés supporter VER m p 86.04 81.22 0.21 0.47 par:pas; +supposa supposer VER 120.31 62.50 0.02 0.95 ind:pas:3s; +supposable supposable ADJ s 0.00 0.07 0.00 0.07 +supposai supposer VER 120.31 62.50 0.00 0.61 ind:pas:1s; +supposaient supposer VER 120.31 62.50 0.03 0.41 ind:imp:3p; +supposais supposer VER 120.31 62.50 0.50 2.30 ind:imp:1s;ind:imp:2s; +supposait supposer VER 120.31 62.50 0.11 3.18 ind:imp:3s; +supposant supposer VER 120.31 62.50 1.62 1.89 par:pre; +suppose supposer VER 120.31 62.50 89.07 29.53 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supposent supposer VER 120.31 62.50 0.16 0.88 ind:pre:3p; +supposer supposer VER 120.31 62.50 3.92 14.46 inf; +supposera supposer VER 120.31 62.50 0.05 0.00 ind:fut:3s; +supposerai supposer VER 120.31 62.50 0.14 0.00 ind:fut:1s; +supposerait supposer VER 120.31 62.50 0.22 0.34 cnd:pre:3s; +supposeront supposer VER 120.31 62.50 0.04 0.07 ind:fut:3p; +supposes supposer VER 120.31 62.50 0.88 0.07 ind:pre:2s; +supposez supposer VER 120.31 62.50 1.43 1.28 imp:pre:2p;ind:pre:2p; +supposiez supposer VER 120.31 62.50 0.07 0.07 ind:imp:2p; +supposions supposer VER 120.31 62.50 0.06 0.07 ind:imp:1p; +supposition supposition NOM f s 4.10 5.34 2.74 2.50 +suppositions supposition NOM f p 4.10 5.34 1.36 2.84 +suppositoire suppositoire NOM m s 0.56 0.88 0.27 0.54 +suppositoires suppositoire NOM m p 0.56 0.88 0.29 0.34 +supposâmes supposer VER 120.31 62.50 0.00 0.07 ind:pas:1p; +supposons supposer VER 120.31 62.50 4.54 1.62 imp:pre:1p;ind:pre:1p; +supposèrent supposer VER 120.31 62.50 0.01 0.07 ind:pas:3p; +supposé supposer VER m s 120.31 62.50 12.07 3.24 par:pas; +supposée supposer VER f s 120.31 62.50 2.71 0.95 par:pas; +supposées supposer VER f p 120.31 62.50 0.36 0.07 par:pas; +supposément supposément ADV 0.04 0.00 0.04 0.00 +supposés supposer VER m p 120.31 62.50 2.30 0.41 par:pas; +suppresseur suppresseur ADJ m s 0.03 0.00 0.03 0.00 +suppresseur suppresseur NOM m s 0.03 0.00 0.03 0.00 +suppression suppression NOM f s 0.80 2.09 0.74 1.96 +suppressions suppression NOM f p 0.80 2.09 0.06 0.14 +supprima supprimer VER 13.45 15.07 0.00 0.41 ind:pas:3s; +supprimai supprimer VER 13.45 15.07 0.00 0.07 ind:pas:1s; +supprimaient supprimer VER 13.45 15.07 0.10 0.07 ind:imp:3p; +supprimais supprimer VER 13.45 15.07 0.07 0.07 ind:imp:1s; +supprimait supprimer VER 13.45 15.07 0.17 0.88 ind:imp:3s; +supprimant supprimer VER 13.45 15.07 0.21 1.28 par:pre; +supprime supprimer VER 13.45 15.07 1.99 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +suppriment supprimer VER 13.45 15.07 0.21 0.14 ind:pre:3p; +supprimer supprimer VER 13.45 15.07 5.86 5.74 inf; +supprimera supprimer VER 13.45 15.07 0.05 0.07 ind:fut:3s; +supprimerai supprimer VER 13.45 15.07 0.15 0.07 ind:fut:1s; +supprimeraient supprimer VER 13.45 15.07 0.03 0.07 cnd:pre:3p; +supprimerait supprimer VER 13.45 15.07 0.07 0.14 cnd:pre:3s; +supprimerons supprimer VER 13.45 15.07 0.00 0.07 ind:fut:1p; +supprimez supprimer VER 13.45 15.07 0.62 0.07 imp:pre:2p;ind:pre:2p; +supprimons supprimer VER 13.45 15.07 0.54 0.14 imp:pre:1p;ind:pre:1p; +supprimât supprimer VER 13.45 15.07 0.00 0.14 sub:imp:3s; +supprimé supprimer VER m s 13.45 15.07 2.19 2.57 par:pas; +supprimée supprimer VER f s 13.45 15.07 0.35 0.61 par:pas; +supprimées supprimer VER f p 13.45 15.07 0.23 0.34 par:pas; +supprimés supprimer VER m p 13.45 15.07 0.60 0.54 par:pas; +suppuraient suppurer VER 0.23 0.68 0.00 0.07 ind:imp:3p; +suppurait suppurer VER 0.23 0.68 0.00 0.14 ind:imp:3s; +suppurant suppurer VER 0.23 0.68 0.01 0.07 par:pre; +suppurante suppurant ADJ f s 0.03 0.07 0.01 0.00 +suppurantes suppurant ADJ f p 0.03 0.07 0.01 0.07 +suppuration suppuration NOM f s 0.01 0.14 0.01 0.07 +suppurations suppuration NOM f p 0.01 0.14 0.00 0.07 +suppure suppurer VER 0.23 0.68 0.17 0.20 ind:pre:3s; +suppurent suppurer VER 0.23 0.68 0.02 0.00 ind:pre:3p; +suppurer suppurer VER 0.23 0.68 0.02 0.14 inf; +suppurerait suppurer VER 0.23 0.68 0.00 0.07 cnd:pre:3s; +supputa supputer VER 0.16 4.19 0.00 0.14 ind:pas:3s; +supputai supputer VER 0.16 4.19 0.00 0.07 ind:pas:1s; +supputaient supputer VER 0.16 4.19 0.00 0.27 ind:imp:3p; +supputais supputer VER 0.16 4.19 0.00 0.07 ind:imp:1s; +supputait supputer VER 0.16 4.19 0.01 0.88 ind:imp:3s; +supputant supputer VER 0.16 4.19 0.00 0.54 par:pre; +supputation supputation NOM f s 0.03 0.95 0.00 0.14 +supputations supputation NOM f p 0.03 0.95 0.03 0.81 +suppute supputer VER 0.16 4.19 0.13 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +supputent supputer VER 0.16 4.19 0.00 0.14 ind:pre:3p; +supputer supputer VER 0.16 4.19 0.01 0.95 inf; +supputé supputer VER m s 0.16 4.19 0.00 0.20 par:pas; +supputées supputer VER f p 0.16 4.19 0.00 0.07 par:pas; +supra_humain supra_humain ADJ m s 0.00 0.07 0.00 0.07 +supra supra ADV 0.26 0.34 0.26 0.34 +supraconducteur supraconducteur NOM m s 0.16 0.00 0.09 0.00 +supraconducteurs supraconducteur NOM m p 0.16 0.00 0.07 0.00 +supraconductivité supraconductivité NOM f s 0.01 0.00 0.01 0.00 +supraconductrice supraconducteur ADJ f s 0.01 0.00 0.01 0.00 +supranational supranational ADJ m s 0.00 0.14 0.00 0.07 +supranationales supranational ADJ f p 0.00 0.14 0.00 0.07 +supranaturel supranaturel ADJ m s 0.01 0.00 0.01 0.00 +supraterrestre supraterrestre ADJ s 0.01 0.14 0.01 0.14 +suprématie suprématie NOM f s 0.47 1.08 0.47 1.08 +suprême suprême ADJ s 15.26 22.97 14.98 21.76 +suprêmement suprêmement ADV 0.09 0.81 0.09 0.81 +suprêmes suprême ADJ p 15.26 22.97 0.28 1.22 +sépulcral sépulcral ADJ m s 0.03 1.08 0.01 0.34 +sépulcrale sépulcral ADJ f s 0.03 1.08 0.01 0.68 +sépulcrales sépulcral ADJ f p 0.03 1.08 0.01 0.07 +sépulcre sépulcre NOM m s 0.48 1.08 0.08 1.01 +sépulcres sépulcre NOM m p 0.48 1.08 0.40 0.07 +sépulture sépulture NOM f s 1.51 2.97 1.44 2.16 +sépultures sépulture NOM f p 1.51 2.97 0.07 0.81 +supérette supérette NOM f s 0.56 0.07 0.56 0.07 +supérieur supérieur ADJ m s 25.72 46.69 8.74 17.70 +supérieure supérieur ADJ f s 25.72 46.69 10.70 18.65 +supérieurement supérieurement ADV 0.07 1.01 0.07 1.01 +supérieures supérieur ADJ f p 25.72 46.69 2.82 3.51 +supérieurs supérieur NOM m p 13.63 8.11 6.04 2.77 +supériorité supériorité NOM f s 2.00 9.26 2.00 8.72 +supériorités supériorité NOM f p 2.00 9.26 0.00 0.54 +séquanaise séquanais NOM f s 0.00 0.20 0.00 0.20 +séquelle séquelle NOM f s 1.31 2.36 0.11 0.41 +séquelles séquelle NOM f p 1.31 2.36 1.21 1.96 +séquence séquence NOM f s 7.61 4.73 6.02 2.97 +séquencer séquencer VER 0.20 0.00 0.20 0.00 inf; +séquences séquence NOM f p 7.61 4.73 1.59 1.76 +séquenceur séquenceur NOM m s 0.11 0.00 0.11 0.00 +séquençage séquençage NOM m s 0.27 0.00 0.27 0.00 +séquentiel séquentiel ADJ m s 0.13 0.00 0.02 0.00 +séquentielle séquentiel ADJ f s 0.13 0.00 0.11 0.00 +séquentiellement séquentiellement ADV 0.01 0.00 0.01 0.00 +séquestraient séquestrer VER 2.05 2.03 0.01 0.07 ind:imp:3p; +séquestrait séquestrer VER 2.05 2.03 0.14 0.20 ind:imp:3s; +séquestration séquestration NOM f s 0.50 0.47 0.30 0.34 +séquestrations séquestration NOM f p 0.50 0.47 0.20 0.14 +séquestre séquestre NOM m s 0.33 0.95 0.31 0.81 +séquestrer séquestrer VER 2.05 2.03 0.44 0.47 inf; +séquestres séquestre NOM m p 0.33 0.95 0.02 0.14 +séquestrez séquestrer VER 2.05 2.03 0.12 0.00 ind:pre:2p; +séquestré séquestrer VER m s 2.05 2.03 0.37 0.54 par:pas; +séquestrée séquestrer VER f s 2.05 2.03 0.83 0.47 par:pas; +séquestrés séquestrer VER m p 2.05 2.03 0.08 0.14 par:pas; +séquoia séquoia NOM m s 0.41 1.49 0.30 1.22 +séquoias séquoia NOM m p 0.41 1.49 0.11 0.27 +sur_le_champ sur_le_champ ADV 6.79 10.95 6.79 10.95 +sur_mesure sur_mesure NOM m s 0.03 0.00 0.03 0.00 +sur_place sur_place NOM m s 0.20 0.27 0.20 0.27 +sur sur PRE 2520.11 5320.47 2520.11 5320.47 +surabondaient surabonder VER 0.00 0.14 0.00 0.07 ind:imp:3p; +surabondamment surabondamment ADV 0.00 0.20 0.00 0.20 +surabondance surabondance NOM f s 0.08 1.35 0.08 1.08 +surabondances surabondance NOM f p 0.08 1.35 0.00 0.27 +surabondant surabondant ADJ m s 0.00 0.61 0.00 0.27 +surabondante surabondant ADJ f s 0.00 0.61 0.00 0.27 +surabondantes surabondant ADJ f p 0.00 0.61 0.00 0.07 +surabondent surabonder VER 0.00 0.14 0.00 0.07 ind:pre:3p; +sérac sérac NOM m s 0.21 0.07 0.21 0.00 +séracs sérac NOM m p 0.21 0.07 0.00 0.07 +suractiver suractiver VER 0.01 0.00 0.01 0.00 inf; +suractivité suractivité NOM f s 0.00 0.07 0.00 0.07 +suractivé suractivé ADJ m s 0.03 0.14 0.03 0.07 +suractivée suractivé ADJ f s 0.03 0.14 0.00 0.07 +suradaptation suradaptation NOM f s 0.00 0.14 0.00 0.14 +suradapté antiadapter VER m s 0.00 0.20 0.00 0.20 par:pas; +surah surah NOM m s 0.00 0.20 0.00 0.20 +suraigu suraigu ADJ m s 0.03 3.38 0.01 1.28 +suraigus suraigu ADJ m p 0.03 3.38 0.01 0.61 +suraiguë suraigu ADJ f s 0.03 3.38 0.01 1.22 +suraiguës suraigu ADJ f p 0.03 3.38 0.00 0.27 +sérail sérail NOM m s 0.47 13.31 0.47 13.31 +surajoute surajouter VER 0.00 0.41 0.00 0.07 ind:pre:3s; +surajouter surajouter VER 0.00 0.41 0.00 0.07 inf; +surajouté surajouter VER m s 0.00 0.41 0.00 0.07 par:pas; +surajoutée surajouter VER f s 0.00 0.41 0.00 0.07 par:pas; +surajoutés surajouter VER m p 0.00 0.41 0.00 0.14 par:pas; +suralimentation suralimentation NOM f s 0.00 0.07 0.00 0.07 +suralimenter suralimenter VER 0.04 0.20 0.02 0.07 inf; +suralimentes suralimenter VER 0.04 0.20 0.01 0.07 ind:pre:2s; +suralimentée suralimenté ADJ f s 0.14 0.14 0.00 0.14 +suralimentés suralimenté ADJ m p 0.14 0.14 0.14 0.00 +suranné suranné ADJ m s 0.04 1.96 0.02 0.61 +surannée suranné ADJ f s 0.04 1.96 0.01 0.47 +surannées suranné ADJ f p 0.04 1.96 0.00 0.41 +surannés suranné ADJ m p 0.04 1.96 0.01 0.47 +séraphin séraphin NOM m s 0.20 0.41 0.06 0.20 +séraphins séraphin NOM m p 0.20 0.41 0.14 0.20 +séraphique séraphique ADJ s 0.00 0.54 0.00 0.34 +séraphiques séraphique ADJ p 0.00 0.54 0.00 0.20 +surard surard NOM m s 0.00 0.07 0.00 0.07 +surarmement surarmement NOM m s 0.01 0.00 0.01 0.00 +surarmé surarmer VER m s 0.07 0.00 0.02 0.00 par:pas; +surarmée surarmer VER f s 0.07 0.00 0.01 0.00 par:pas; +surarmés surarmer VER m p 0.07 0.00 0.04 0.00 par:pas; +surbaissé surbaissé ADJ m s 0.01 0.68 0.00 0.14 +surbaissée surbaissé ADJ f s 0.01 0.68 0.01 0.27 +surbaissées surbaissé ADJ f p 0.01 0.68 0.00 0.14 +surbaissés surbaissé ADJ m p 0.01 0.68 0.00 0.14 +surbooké surbooké ADJ m s 0.23 0.00 0.18 0.00 +surbookée surbooké ADJ f s 0.23 0.00 0.03 0.00 +surbookées surbooké ADJ f p 0.23 0.00 0.02 0.00 +surboum surboum NOM f s 0.23 0.88 0.20 0.41 +surboums surboum NOM f p 0.23 0.88 0.03 0.47 +surbrillance surbrillance NOM f s 0.01 0.00 0.01 0.00 +surbrodé surbrodé ADJ m s 0.00 0.07 0.00 0.07 +surcapacité surcapacité NOM f s 0.03 0.00 0.03 0.00 +surcharge surcharge NOM f s 1.57 0.88 1.55 0.61 +surchargeaient surcharger VER 2.52 7.30 0.00 0.20 ind:imp:3p; +surchargeait surcharger VER 2.52 7.30 0.12 0.00 ind:imp:3s; +surchargeant surcharger VER 2.52 7.30 0.00 0.14 par:pre; +surcharger surcharger VER 2.52 7.30 0.44 0.27 inf; +surcharges surcharge NOM f p 1.57 0.88 0.02 0.27 +surchargé surcharger VER m s 2.52 7.30 1.07 1.76 par:pas; +surchargée surcharger VER f s 2.52 7.30 0.28 1.69 par:pas; +surchargées surcharger VER f p 2.52 7.30 0.03 1.15 par:pas; +surchargés surcharger VER m p 2.52 7.30 0.32 1.76 par:pas; +surchauffait surchauffer VER 0.67 3.31 0.01 0.07 ind:imp:3s; +surchauffe surchauffe NOM f s 0.48 0.27 0.48 0.27 +surchauffer surchauffer VER 0.67 3.31 0.13 0.00 inf; +surchauffez surchauffer VER 0.67 3.31 0.01 0.00 ind:pre:2p; +surchauffé surchauffer VER m s 0.67 3.31 0.29 1.08 par:pas; +surchauffée surchauffer VER f s 0.67 3.31 0.03 1.28 par:pas; +surchauffées surchauffer VER f p 0.67 3.31 0.00 0.27 par:pas; +surchauffés surchauffer VER m p 0.67 3.31 0.00 0.54 par:pas; +surchoix surchoix NOM m 0.01 0.20 0.01 0.20 +surclassait surclasser VER 0.28 0.47 0.01 0.07 ind:imp:3s; +surclassant surclasser VER 0.28 0.47 0.00 0.07 par:pre; +surclasse surclasser VER 0.28 0.47 0.08 0.00 ind:pre:1s;ind:pre:3s; +surclassent surclasser VER 0.28 0.47 0.00 0.07 ind:pre:3p; +surclasser surclasser VER 0.28 0.47 0.02 0.07 inf; +surclasserais surclasser VER 0.28 0.47 0.00 0.07 cnd:pre:1s; +surclasserait surclasser VER 0.28 0.47 0.02 0.00 cnd:pre:3s; +surclasseras surclasser VER 0.28 0.47 0.00 0.07 ind:fut:2s; +surclassé surclasser VER m s 0.28 0.47 0.11 0.00 par:pas; +surclassés surclasser VER m p 0.28 0.47 0.04 0.07 par:pas; +surcoût surcoût NOM m s 0.02 0.00 0.02 0.00 +surcompensation surcompensation NOM f s 0.01 0.07 0.01 0.07 +surcompenser surcompenser VER 0.03 0.07 0.00 0.07 inf; +surcompensé surcompenser VER m s 0.03 0.07 0.03 0.00 par:pas; +surcomprimée surcomprimer VER f s 0.01 0.00 0.01 0.00 par:pas; +surconsommation surconsommation NOM f s 0.02 0.00 0.02 0.00 +surconsomme surconsommer VER 0.00 0.07 0.00 0.07 ind:pre:3s; +surcontre surcontre NOM m s 0.03 0.00 0.03 0.00 +surcot surcot NOM m s 0.00 0.14 0.00 0.07 +surcots surcot NOM m p 0.00 0.14 0.00 0.07 +surcoupé surcouper VER m s 0.01 0.00 0.01 0.00 par:pas; +surcroît surcroît NOM m s 1.21 17.03 1.21 16.96 +surcroîts surcroît NOM m p 1.21 17.03 0.00 0.07 +surdimensionné surdimensionné ADJ m s 0.13 0.00 0.09 0.00 +surdimensionnée surdimensionné ADJ f s 0.13 0.00 0.04 0.00 +surdité surdité NOM f s 0.41 2.16 0.41 2.16 +surdoré surdorer VER m s 0.00 0.14 0.00 0.07 par:pas; +surdorée surdorer VER f s 0.00 0.14 0.00 0.07 par:pas; +surdosage surdosage NOM m s 0.01 0.00 0.01 0.00 +surdose surdose NOM f s 0.27 0.00 0.27 0.00 +surdoué surdoué NOM m s 1.00 1.08 0.23 0.47 +surdouée surdoué NOM f s 1.00 1.08 0.04 0.00 +surdoués surdoué NOM m p 1.00 1.08 0.72 0.61 +surdéterminé surdéterminer VER m s 0.00 0.07 0.00 0.07 par:pas; +surdévelopper surdévelopper VER 0.01 0.00 0.01 0.00 inf; +surdéveloppé surdéveloppé ADJ m s 0.06 0.07 0.04 0.00 +surdéveloppée surdéveloppé ADJ f s 0.06 0.07 0.01 0.00 +surdéveloppées surdéveloppé ADJ f p 0.06 0.07 0.00 0.07 +surdéveloppés surdéveloppé ADJ m p 0.06 0.07 0.01 0.00 +sure sur ADJ f s 65.92 16.22 12.38 0.41 +sureau sureau NOM m s 0.15 1.89 0.05 1.42 +sureaux sureau NOM m p 0.15 1.89 0.10 0.47 +sureffectif sureffectif NOM m s 0.10 0.00 0.10 0.00 +suremploi suremploi NOM m s 0.01 0.00 0.01 0.00 +surenchère surenchère NOM f s 0.65 2.91 0.64 1.76 +surenchères surenchère NOM f p 0.65 2.91 0.01 1.15 +surenchéri surenchérir VER m s 0.30 1.08 0.11 0.00 par:pas; +surenchérir surenchérir VER 0.30 1.08 0.16 0.34 inf; +surenchérissant surenchérir VER 0.30 1.08 0.00 0.07 par:pre; +surenchérissent surenchérir VER 0.30 1.08 0.00 0.07 ind:pre:3p; +surenchérit surenchérir VER 0.30 1.08 0.04 0.61 ind:pre:3s;ind:pas:3s; +surencombrée surencombré ADJ f s 0.00 0.07 0.00 0.07 +surendettés surendetté ADJ m p 0.04 0.00 0.04 0.00 +surent savoir VER 4516.72 2003.58 0.07 1.42 ind:pas:3p; +surentraînement surentraînement NOM m s 0.10 0.00 0.10 0.00 +surentraîné surentraîné ADJ m s 0.09 0.00 0.02 0.00 +surentraînées surentraîné ADJ f p 0.09 0.00 0.02 0.00 +surentraînés surentraîné ADJ m p 0.09 0.00 0.05 0.00 +sures sur ADJ f p 65.92 16.22 0.25 0.20 +surestimation surestimation NOM f s 0.01 0.00 0.01 0.00 +surestime surestimer VER 1.83 0.54 0.34 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surestimer surestimer VER 1.83 0.54 0.16 0.07 inf; +surestimerais surestimer VER 1.83 0.54 0.00 0.07 cnd:pre:2s; +surestimez surestimer VER 1.83 0.54 0.58 0.07 imp:pre:2p;ind:pre:2p; +surestimé surestimer VER m s 1.83 0.54 0.44 0.07 par:pas; +surestimée surestimer VER f s 1.83 0.54 0.28 0.14 par:pas; +surestimés surestimer VER m p 1.83 0.54 0.04 0.07 par:pas; +suret suret ADJ m s 0.10 0.27 0.00 0.07 +surets suret ADJ m p 0.10 0.27 0.10 0.00 +surette suret ADJ f s 0.10 0.27 0.00 0.20 +séreux séreux ADJ m s 0.00 0.07 0.00 0.07 +surexcitait surexciter VER 1.48 1.69 0.00 0.07 ind:imp:3s; +surexcitant surexciter VER 1.48 1.69 0.01 0.00 par:pre; +surexcitation surexcitation NOM f s 0.04 0.81 0.04 0.81 +surexcite surexciter VER 1.48 1.69 0.02 0.00 ind:pre:3s; +surexciter surexciter VER 1.48 1.69 0.00 0.14 inf; +surexcité surexciter VER m s 1.48 1.69 0.92 0.54 par:pas; +surexcitée surexciter VER f s 1.48 1.69 0.18 0.27 par:pas; +surexcitées surexciter VER f p 1.48 1.69 0.14 0.14 par:pas; +surexcités surexciter VER m p 1.48 1.69 0.20 0.54 par:pas; +surexploité surexploiter VER m s 0.03 0.00 0.03 0.00 par:pas; +surexposition surexposition NOM f s 0.02 0.00 0.02 0.00 +surexposé surexposer VER m s 0.07 0.14 0.02 0.07 par:pas; +surexposée surexposer VER f s 0.07 0.14 0.01 0.00 par:pas; +surexposées surexposer VER f p 0.07 0.14 0.02 0.00 par:pas; +surexposés surexposer VER m p 0.07 0.14 0.02 0.07 par:pas; +surf surf NOM m s 5.57 0.34 5.57 0.34 +surface surface NOM f s 22.70 57.23 21.85 51.49 +surfacer surfacer VER 0.01 0.00 0.01 0.00 inf; +surfaces surface NOM f p 22.70 57.23 0.84 5.74 +surfactant surfactant NOM m s 0.08 0.00 0.08 0.00 +surfacturation surfacturation NOM f s 0.04 0.00 0.04 0.00 +surfacture surfacturer VER 0.15 0.00 0.04 0.00 ind:pre:1s;ind:pre:3s; +surfacturer surfacturer VER 0.15 0.00 0.05 0.00 inf; +surfacturé surfacturer VER m s 0.15 0.00 0.03 0.00 par:pas; +surfacturés surfacturer VER m p 0.15 0.00 0.02 0.00 par:pas; +surfaire surfaire VER 0.09 0.20 0.00 0.07 inf; +surfais surfer VER 9.38 0.34 0.09 0.00 ind:imp:1s; +surfaisait surfaire VER 0.09 0.20 0.00 0.07 ind:imp:3s; +surfait surfait ADJ m s 0.46 0.34 0.38 0.14 +surfaite surfaire VER f s 0.09 0.20 0.07 0.07 par:pas; +surfaites surfait ADJ f p 0.46 0.34 0.03 0.00 +surfaits surfaire VER m p 0.09 0.20 0.02 0.00 par:pas; +surfant surfer VER 9.38 0.34 0.16 0.00 par:pre; +surfaçage surfaçage NOM m s 0.00 0.07 0.00 0.07 +surfe surfer VER 9.38 0.34 3.15 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surfent surfer VER 9.38 0.34 0.09 0.00 ind:pre:3p; +surfer surfer VER 9.38 0.34 5.28 0.20 inf; +surferas surfer VER 9.38 0.34 0.01 0.00 ind:fut:2s; +surfes surfer VER 9.38 0.34 0.10 0.00 ind:pre:2s; +surfeur surfeur NOM m s 1.95 0.00 0.65 0.00 +surfeurs surfeur NOM m p 1.95 0.00 1.06 0.00 +surfeuse surfeur NOM f s 1.95 0.00 0.24 0.00 +surfeuses surfeuse NOM f p 0.01 0.00 0.01 0.00 +surfez surfer VER 9.38 0.34 0.09 0.00 imp:pre:2p;ind:pre:2p; +surfilage surfilage NOM m s 0.00 0.07 0.00 0.07 +surfin surfin ADJ m s 0.14 0.07 0.14 0.00 +surfine surfin ADJ f s 0.14 0.07 0.00 0.07 +surfons surfer VER 9.38 0.34 0.02 0.00 imp:pre:1p; +surfé surfer VER m s 9.38 0.34 0.28 0.00 par:pas; +surgît surgir VER 10.95 73.18 0.00 0.07 sub:imp:3s; +surgeler surgeler VER 0.09 0.34 0.01 0.00 inf; +surgelé surgelé NOM m s 1.11 0.47 0.22 0.27 +surgelée surgelé ADJ f s 0.64 0.54 0.19 0.14 +surgelées surgelé ADJ f p 0.64 0.54 0.17 0.00 +surgelés surgelé NOM m p 1.11 0.47 0.88 0.20 +surgeon surgeon NOM m s 0.02 0.54 0.02 0.34 +surgeonnent surgeonner VER 0.00 0.07 0.00 0.07 ind:pre:3p; +surgeons surgeon NOM m p 0.02 0.54 0.00 0.20 +surgi surgir VER m s 10.95 73.18 2.79 7.70 par:pas; +surgie surgir VER f s 10.95 73.18 0.04 2.23 par:pas; +surgies surgir VER f p 10.95 73.18 0.02 0.95 par:pas; +surgir surgir VER 10.95 73.18 2.26 17.84 inf; +surgira surgir VER 10.95 73.18 0.19 0.34 ind:fut:3s; +surgiraient surgir VER 10.95 73.18 0.00 0.14 cnd:pre:3p; +surgirait surgir VER 10.95 73.18 0.02 0.54 cnd:pre:3s; +surgirent surgir VER 10.95 73.18 0.17 1.55 ind:pas:3p; +surgiront surgir VER 10.95 73.18 0.04 0.41 ind:fut:3p; +surgis surgir VER m p 10.95 73.18 0.09 1.96 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +surgissaient surgir VER 10.95 73.18 0.28 5.20 ind:imp:3p; +surgissais surgir VER 10.95 73.18 0.10 0.07 ind:imp:1s;ind:imp:2s; +surgissait surgir VER 10.95 73.18 0.30 8.04 ind:imp:3s; +surgissant surgir VER 10.95 73.18 0.20 3.85 par:pre; +surgisse surgir VER 10.95 73.18 0.04 0.81 sub:pre:3s; +surgissement surgissement NOM m s 0.00 1.01 0.00 0.95 +surgissements surgissement NOM m p 0.00 1.01 0.00 0.07 +surgissent surgir VER 10.95 73.18 1.31 4.39 ind:pre:3p; +surgissez surgir VER 10.95 73.18 0.14 0.14 imp:pre:2p;ind:pre:2p; +surgit surgir VER 10.95 73.18 2.96 16.96 ind:pre:3s;ind:pas:3s; +surgèle surgeler VER 0.09 0.34 0.00 0.14 ind:pre:3s; +surgé surgé NOM s 0.01 1.08 0.01 1.08 +surgénérateur surgénérateur NOM m s 0.03 0.00 0.03 0.00 +surhomme surhomme NOM m s 1.11 1.08 0.86 0.81 +surhommes surhomme NOM m p 1.11 1.08 0.25 0.27 +surhumain surhumain ADJ m s 1.71 4.19 0.40 2.50 +surhumaine surhumain ADJ f s 1.71 4.19 1.00 1.15 +surhumaines surhumain ADJ f p 1.71 4.19 0.04 0.27 +surhumains surhumain ADJ m p 1.71 4.19 0.28 0.27 +surhumanité surhumanité NOM f s 0.00 0.07 0.00 0.07 +suri suri ADJ m s 0.07 0.54 0.06 0.20 +sérial sérial NOM m s 0.03 0.00 0.03 0.00 +sériant sérier VER 0.00 0.14 0.00 0.07 par:pre; +suricate suricate NOM m s 0.05 0.00 0.05 0.00 +série série NOM f s 36.53 39.59 33.34 35.41 +surie suri ADJ f s 0.07 0.54 0.01 0.27 +sériel sériel ADJ m s 0.01 0.41 0.01 0.14 +sérielle sériel ADJ f s 0.01 0.41 0.00 0.27 +sérier sérier VER 0.00 0.14 0.00 0.07 inf; +séries série NOM f p 36.53 39.59 3.19 4.19 +suries suri ADJ f p 0.07 0.54 0.00 0.07 +sérieuse sérieux ADJ f s 110.48 66.01 23.64 13.65 +sérieusement sérieusement ADV 39.34 21.76 39.34 21.76 +sérieuses sérieux ADJ f p 110.48 66.01 5.85 9.53 +sérieux sérieux ADJ m 110.48 66.01 80.99 42.84 +surimi surimi NOM m s 0.01 0.00 0.01 0.00 +surimpression surimpression NOM f s 0.05 0.81 0.05 0.68 +surimpressions surimpression NOM f p 0.05 0.81 0.00 0.14 +surin surin NOM m s 0.66 3.99 0.66 3.85 +surinait suriner VER 0.15 0.54 0.01 0.00 ind:imp:3s; +surine suriner VER 0.15 0.54 0.00 0.07 ind:pre:3s; +surinent suriner VER 0.15 0.54 0.00 0.07 ind:pre:3p; +suriner suriner VER 0.15 0.54 0.02 0.34 inf; +surinerais suriner VER 0.15 0.54 0.00 0.07 cnd:pre:2s; +surinfections surinfection NOM f p 0.00 0.07 0.00 0.07 +surinformation surinformation NOM f s 0.00 0.07 0.00 0.07 +surinformé surinformer VER m s 0.00 0.88 0.00 0.88 par:pas; +surins surin NOM m p 0.66 3.99 0.00 0.14 +surintendance surintendance NOM f s 0.00 0.07 0.00 0.07 +surintendant surintendant NOM m s 0.43 0.27 0.43 0.07 +surintendante surintendant NOM f s 0.43 0.27 0.00 0.20 +surintensité surintensité NOM f s 0.04 0.00 0.04 0.00 +suriné suriner VER m s 0.15 0.54 0.12 0.00 par:pas; +surinvestissement surinvestissement NOM m s 0.01 0.07 0.01 0.07 +sérique sérique ADJ m s 0.01 0.00 0.01 0.00 +surir surir VER 0.01 0.20 0.00 0.14 inf; +surit surir VER 0.01 0.20 0.00 0.07 ind:pre:3s; +surjet surjet NOM m s 0.04 0.14 0.04 0.07 +surjeteuse jeteur NOM f s 0.23 0.47 0.02 0.00 +surjets surjet NOM m p 0.04 0.14 0.00 0.07 +surlendemain surlendemain NOM m s 0.35 7.57 0.35 7.57 +surligner surligner VER 0.24 0.00 0.07 0.00 inf; +surligneur surligneur NOM m s 0.03 0.00 0.03 0.00 +surligné surligner VER m s 0.24 0.00 0.17 0.00 par:pas; +surmenage surmenage NOM m s 0.63 0.61 0.63 0.61 +surmenait surmener VER 1.33 0.88 0.01 0.14 ind:imp:3s; +surmenant surmener VER 1.33 0.88 0.01 0.00 par:pre; +surmener surmener VER 1.33 0.88 0.08 0.07 ind:pre:2p;inf; +surmenez surmener VER 1.33 0.88 0.15 0.00 imp:pre:2p;ind:pre:2p; +surmené surmener VER m s 1.33 0.88 0.69 0.20 par:pas; +surmenée surmené ADJ f s 0.69 1.01 0.20 0.20 +surmenées surmené ADJ f p 0.69 1.01 0.03 0.14 +surmenés surmener VER m p 1.33 0.88 0.15 0.20 par:pas; +surmoi surmoi NOM m 0.12 0.68 0.12 0.68 +surmâle surmâle NOM m s 0.00 0.14 0.00 0.14 +surmonta surmonter VER 9.31 28.11 0.10 0.47 ind:pas:3s; +surmontai surmonter VER 9.31 28.11 0.00 0.14 ind:pas:1s; +surmontaient surmonter VER 9.31 28.11 0.01 0.47 ind:imp:3p; +surmontais surmonter VER 9.31 28.11 0.00 0.07 ind:imp:1s; +surmontait surmonter VER 9.31 28.11 0.00 1.62 ind:imp:3s; +surmontant surmonter VER 9.31 28.11 0.00 1.96 par:pre; +surmonte surmonter VER 9.31 28.11 0.51 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surmontent surmonter VER 9.31 28.11 0.06 0.47 ind:pre:3p; +surmonter surmonter VER 9.31 28.11 5.85 5.00 inf; +surmontera surmonter VER 9.31 28.11 0.17 0.14 ind:fut:3s; +surmonterai surmonter VER 9.31 28.11 0.04 0.00 ind:fut:1s; +surmonteraient surmonter VER 9.31 28.11 0.00 0.07 cnd:pre:3p; +surmonterait surmonter VER 9.31 28.11 0.00 0.20 cnd:pre:3s; +surmonteras surmonter VER 9.31 28.11 0.32 0.00 ind:fut:2s; +surmonterez surmonter VER 9.31 28.11 0.03 0.07 ind:fut:2p; +surmonterons surmonter VER 9.31 28.11 0.23 0.00 ind:fut:1p; +surmontez surmonter VER 9.31 28.11 0.04 0.00 imp:pre:2p;ind:pre:2p; +surmontions surmonter VER 9.31 28.11 0.00 0.07 ind:imp:1p; +surmontèrent surmonter VER 9.31 28.11 0.01 0.07 ind:pas:3p; +surmonté surmonter VER m s 9.31 28.11 1.46 6.49 par:pas; +surmontée surmonter VER f s 9.31 28.11 0.28 5.27 par:pas; +surmontées surmonter VER f p 9.31 28.11 0.03 1.82 par:pas; +surmontés surmonter VER m p 9.31 28.11 0.14 2.30 par:pas; +surmène surmener VER 1.33 0.88 0.08 0.07 imp:pre:2s;ind:pre:3s; +surmédicalisation surmédicalisation NOM f s 0.01 0.00 0.01 0.00 +surmulot surmulot NOM m s 0.00 0.34 0.00 0.07 +surmulots surmulot NOM m p 0.00 0.34 0.00 0.27 +surmultipliée surmultiplié ADJ f s 0.04 0.14 0.04 0.07 +surmultipliées surmultiplié ADJ f p 0.04 0.14 0.00 0.07 +surnage surnager VER 0.09 2.64 0.05 0.41 imp:pre:2s;ind:pre:3s; +surnagea surnager VER 0.09 2.64 0.00 0.14 ind:pas:3s; +surnageaient surnager VER 0.09 2.64 0.00 0.34 ind:imp:3p; +surnageait surnager VER 0.09 2.64 0.00 0.61 ind:imp:3s; +surnageant surnager VER 0.09 2.64 0.00 0.14 par:pre; +surnageants surnageant ADJ m p 0.00 0.20 0.00 0.07 +surnagent surnager VER 0.09 2.64 0.01 0.27 ind:pre:3p; +surnageons surnager VER 0.09 2.64 0.01 0.00 ind:pre:1p; +surnager surnager VER 0.09 2.64 0.01 0.54 inf; +surnagera surnager VER 0.09 2.64 0.00 0.07 ind:fut:3s; +surnages surnager VER 0.09 2.64 0.00 0.07 ind:pre:2s; +surnagèrent surnager VER 0.09 2.64 0.00 0.07 ind:pas:3p; +surnagé surnager VER m s 0.09 2.64 0.01 0.00 par:pas; +surnaturel surnaturel NOM m s 2.71 0.54 2.71 0.54 +surnaturelle surnaturel ADJ f s 3.38 6.22 0.88 2.30 +surnaturelles surnaturel ADJ f p 3.38 6.22 0.39 1.01 +surnaturels surnaturel ADJ m p 3.38 6.22 0.75 0.34 +surnom surnom NOM m s 7.79 6.49 6.20 5.61 +surnombre surnombre NOM m s 0.30 0.68 0.30 0.68 +surnomma surnommer VER 4.93 6.55 0.03 0.14 ind:pas:3s; +surnommaient surnommer VER 4.93 6.55 0.01 0.14 ind:imp:3p; +surnommais surnommer VER 4.93 6.55 0.02 0.00 ind:imp:1s;ind:imp:2s; +surnommait surnommer VER 4.93 6.55 0.48 1.08 ind:imp:3s; +surnommant surnommer VER 4.93 6.55 0.01 0.07 par:pre; +surnomme surnommer VER 4.93 6.55 1.27 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surnomment surnommer VER 4.93 6.55 0.44 0.07 ind:pre:3p; +surnommer surnommer VER 4.93 6.55 0.04 0.74 inf;; +surnommera surnommer VER 4.93 6.55 0.01 0.00 ind:fut:3s; +surnommerais surnommer VER 4.93 6.55 0.00 0.07 cnd:pre:1s; +surnommions surnommer VER 4.93 6.55 0.00 0.07 ind:imp:1p; +surnommèrent surnommer VER 4.93 6.55 0.01 0.00 ind:pas:3p; +surnommé surnommer VER m s 4.93 6.55 2.28 2.77 par:pas; +surnommée surnommé ADJ f s 0.84 1.69 0.26 0.20 +surnommés surnommer VER m p 4.93 6.55 0.08 0.07 par:pas; +surnoms surnom NOM m p 7.79 6.49 1.59 0.88 +surnuméraire surnuméraire NOM s 0.07 0.14 0.07 0.00 +surnuméraires surnuméraire ADJ m p 0.04 0.14 0.03 0.00 +suroît suroît NOM m s 0.03 0.61 0.03 0.47 +suroîts suroît NOM m p 0.03 0.61 0.00 0.14 +sérologie sérologie NOM f s 0.09 0.00 0.09 0.00 +séronégatif séronégatif ADJ m s 0.23 0.14 0.19 0.14 +séronégatifs séronégatif NOM m p 0.03 0.34 0.03 0.27 +séronégative séronégatif ADJ f s 0.23 0.14 0.03 0.00 +séropo séropo NOM s 0.17 0.14 0.17 0.14 +séropositif séropositif ADJ m s 2.04 1.15 0.99 0.81 +séropositifs séropositif ADJ m p 2.04 1.15 0.17 0.27 +séropositive séropositif ADJ f s 2.04 1.15 0.81 0.00 +séropositives séropositif ADJ f p 2.04 1.15 0.09 0.07 +séropositivité séropositivité NOM f s 0.09 0.27 0.09 0.27 +sérosité sérosité NOM f s 0.02 0.07 0.02 0.07 +sérotonine sérotonine NOM f s 0.61 0.00 0.61 0.00 +suroxygéner suroxygéner VER 0.01 0.00 0.01 0.00 inf; +suroxygéné suroxygéné ADJ m s 0.00 0.07 0.00 0.07 +surpassa surpasser VER 6.64 3.45 0.12 0.27 ind:pas:3s; +surpassaient surpasser VER 6.64 3.45 0.01 0.07 ind:imp:3p; +surpassais surpasser VER 6.64 3.45 0.10 0.20 ind:imp:1s; +surpassait surpasser VER 6.64 3.45 0.05 0.41 ind:imp:3s; +surpassant surpasser VER 6.64 3.45 0.14 0.14 par:pre; +surpasse surpasser VER 6.64 3.45 1.36 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surpassent surpasser VER 6.64 3.45 0.35 0.14 ind:pre:3p; +surpasser surpasser VER 6.64 3.45 1.46 0.74 inf; +surpassera surpasser VER 6.64 3.45 0.54 0.00 ind:fut:3s; +surpasserai surpasser VER 6.64 3.45 0.02 0.00 ind:fut:1s; +surpasseraient surpasser VER 6.64 3.45 0.01 0.00 cnd:pre:3p; +surpasserait surpasser VER 6.64 3.45 0.02 0.14 cnd:pre:3s; +surpasseras surpasser VER 6.64 3.45 0.01 0.00 ind:fut:2s; +surpasses surpasser VER 6.64 3.45 0.21 0.00 ind:pre:2s; +surpassez surpasser VER 6.64 3.45 0.04 0.00 imp:pre:2p;ind:pre:2p; +surpassons surpasser VER 6.64 3.45 0.16 0.00 imp:pre:1p;ind:pre:1p; +surpassât surpasser VER 6.64 3.45 0.01 0.07 sub:imp:3s; +surpassé surpasser VER m s 6.64 3.45 1.50 0.41 par:pas; +surpassée surpasser VER f s 6.64 3.45 0.36 0.20 par:pas; +surpassées surpasser VER f p 6.64 3.45 0.00 0.07 par:pas; +surpassés surpasser VER m p 6.64 3.45 0.20 0.20 par:pas; +surpatte surpatte NOM f s 0.00 0.20 0.00 0.14 +surpattes surpatte NOM f p 0.00 0.20 0.00 0.07 +surpaye surpayer VER 0.21 0.00 0.01 0.00 ind:pre:3s; +surpayé surpayer VER m s 0.21 0.00 0.13 0.00 par:pas; +surpayés surpayer VER m p 0.21 0.00 0.08 0.00 par:pas; +surpeuplement surpeuplement NOM m s 0.03 0.07 0.03 0.07 +surpeupler surpeupler VER 0.01 0.00 0.01 0.00 inf; +surpeuplé surpeuplé ADJ m s 0.80 1.62 0.27 0.74 +surpeuplée surpeuplé ADJ f s 0.80 1.62 0.33 0.20 +surpeuplées surpeuplé ADJ f p 0.80 1.62 0.06 0.14 +surpeuplés surpeuplé ADJ m p 0.80 1.62 0.13 0.54 +surpiqûres surpiqûre NOM f p 0.00 0.07 0.00 0.07 +surplace surplace NOM m s 0.30 0.34 0.30 0.34 +surplis surplis NOM m 0.07 1.69 0.07 1.69 +surplomb surplomb NOM m s 0.09 2.23 0.09 2.03 +surplomba surplomber VER 0.69 8.85 0.00 0.07 ind:pas:3s; +surplombaient surplomber VER 0.69 8.85 0.00 0.88 ind:imp:3p; +surplombait surplomber VER 0.69 8.85 0.03 2.30 ind:imp:3s; +surplombant surplomber VER 0.69 8.85 0.24 1.28 par:pre; +surplombante surplombant ADJ f s 0.02 0.41 0.00 0.07 +surplombe surplomber VER 0.69 8.85 0.37 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surplombent surplomber VER 0.69 8.85 0.03 0.54 ind:pre:3p; +surplomber surplomber VER 0.69 8.85 0.01 0.14 inf; +surplomberait surplomber VER 0.69 8.85 0.00 0.07 cnd:pre:3s; +surplombions surplomber VER 0.69 8.85 0.00 0.14 ind:imp:1p; +surplombs surplomb NOM m p 0.09 2.23 0.00 0.20 +surplombé surplomber VER m s 0.69 8.85 0.01 0.34 par:pas; +surplombée surplomber VER f s 0.69 8.85 0.00 0.20 par:pas; +surplombés surplomber VER m p 0.69 8.85 0.00 0.07 par:pas; +surplus surplus NOM m 1.25 10.95 1.25 10.95 +surpoids surpoids NOM m 0.23 0.00 0.23 0.00 +surpopulation surpopulation NOM f s 0.45 0.14 0.45 0.14 +surprît surprendre VER 56.80 116.62 0.01 0.47 sub:imp:3s; +surprenaient surprendre VER 56.80 116.62 0.11 0.74 ind:imp:3p; +surprenais surprendre VER 56.80 116.62 0.07 1.76 ind:imp:1s;ind:imp:2s; +surprenait surprendre VER 56.80 116.62 0.45 7.30 ind:imp:3s; +surprenant surprenant ADJ m s 8.03 19.73 4.89 8.78 +surprenante surprenant ADJ f s 8.03 19.73 2.67 7.84 +surprenantes surprenant ADJ f p 8.03 19.73 0.34 1.76 +surprenants surprenant ADJ m p 8.03 19.73 0.14 1.35 +surprend surprendre VER 56.80 116.62 5.74 7.09 ind:pre:3s; +surprendra surprendre VER 56.80 116.62 0.75 0.61 ind:fut:3s; +surprendrai surprendre VER 56.80 116.62 0.20 0.14 ind:fut:1s; +surprendraient surprendre VER 56.80 116.62 0.05 0.07 cnd:pre:3p; +surprendrais surprendre VER 56.80 116.62 0.04 0.07 cnd:pre:1s;cnd:pre:2s; +surprendrait surprendre VER 56.80 116.62 0.33 0.88 cnd:pre:3s; +surprendras surprendre VER 56.80 116.62 0.07 0.00 ind:fut:2s; +surprendre surprendre VER 56.80 116.62 8.00 17.43 inf; +surprendrez surprendre VER 56.80 116.62 0.02 0.00 ind:fut:2p; +surprendrons surprendre VER 56.80 116.62 0.01 0.07 ind:fut:1p; +surprendront surprendre VER 56.80 116.62 0.19 0.07 ind:fut:3p; +surprends surprendre VER 56.80 116.62 1.59 2.03 imp:pre:2s;ind:pre:1s;ind:pre:2s; +surprenez surprendre VER 56.80 116.62 1.06 0.27 imp:pre:2p;ind:pre:2p; +surpreniez surprendre VER 56.80 116.62 0.11 0.00 ind:imp:2p; +surprenions surprendre VER 56.80 116.62 0.00 0.14 ind:imp:1p; +surprenne surprendre VER 56.80 116.62 0.98 0.61 sub:pre:1s;sub:pre:3s; +surprennent surprendre VER 56.80 116.62 0.33 0.88 ind:pre:3p; +surprenons surprendre VER 56.80 116.62 0.04 0.14 imp:pre:1p;ind:pre:1p; +surpresseur surpresseur NOM m s 0.01 0.00 0.01 0.00 +surpression surpression NOM f s 0.09 0.14 0.09 0.14 +surprime surprime NOM f s 0.14 0.00 0.14 0.00 +surprirent surprendre VER 56.80 116.62 0.11 0.68 ind:pas:3p; +surpris surprendre VER m 56.80 116.62 24.64 50.00 ind:pas:1s;ind:pas:2s;par:pas;par:pas;par:pas; +surprise_partie surprise_partie NOM f s 0.20 0.61 0.18 0.27 +surprise_party surprise_party NOM f s 0.10 0.07 0.10 0.07 +surprise surprise NOM f s 82.94 77.16 75.62 68.51 +surprise_partie surprise_partie NOM f p 0.20 0.61 0.02 0.34 +surprises surprise NOM f p 82.94 77.16 7.32 8.65 +surprit surprendre VER 56.80 116.62 0.39 10.61 ind:pas:3s; +surproduction surproduction NOM f s 0.05 0.14 0.05 0.14 +surprotecteur surprotecteur ADJ m s 0.06 0.00 0.06 0.00 +surprotectrice surprotecteur NOM f s 0.10 0.00 0.10 0.00 +surprotège surprotéger VER 0.17 0.00 0.04 0.00 ind:pre:1s; +surprotégeais surprotéger VER 0.17 0.00 0.01 0.00 ind:imp:1s; +surprotéger surprotéger VER 0.17 0.00 0.10 0.00 inf; +surprotégé surprotéger VER m s 0.17 0.00 0.02 0.00 par:pas; +surpuissance surpuissance NOM f s 0.01 0.07 0.01 0.07 +surpuissant surpuissant ADJ m s 0.16 0.41 0.09 0.27 +surpuissante surpuissant ADJ f s 0.16 0.41 0.04 0.07 +surpuissants surpuissant ADJ m p 0.16 0.41 0.03 0.07 +surqualifié surqualifié ADJ m s 0.11 0.00 0.08 0.00 +surqualifiée surqualifié ADJ f s 0.11 0.00 0.03 0.00 +surréalisme surréalisme NOM m s 0.10 1.96 0.10 1.96 +surréaliste surréaliste ADJ s 0.98 2.64 0.95 1.96 +surréalistes surréaliste ADJ p 0.98 2.64 0.03 0.68 +surréalité surréalité NOM f s 0.00 0.14 0.00 0.14 +surréel surréel ADJ m s 0.06 0.41 0.03 0.07 +surréelle surréel ADJ f s 0.06 0.41 0.02 0.20 +surréelles surréel ADJ f p 0.06 0.41 0.00 0.14 +surrégime surrégime NOM m s 0.03 0.07 0.03 0.07 +surrénal surrénal ADJ m s 0.23 0.07 0.01 0.00 +surrénale surrénal ADJ f s 0.23 0.07 0.05 0.00 +surrénales surrénal ADJ f p 0.23 0.07 0.17 0.07 +surrénalien surrénalien ADJ m s 0.01 0.00 0.01 0.00 +surréservation surréservation NOM f s 0.01 0.00 0.01 0.00 +surs sur ADJ m p 65.92 16.22 1.11 0.07 +sursaturé sursaturer VER m s 0.01 0.20 0.01 0.20 par:pas; +sursaturée sursaturé ADJ f s 0.00 0.14 0.00 0.07 +sursaturées sursaturé ADJ f p 0.00 0.14 0.00 0.07 +sursaut sursaut NOM m s 0.77 21.28 0.71 17.57 +sursauta sursauter VER 1.66 28.11 0.22 8.78 ind:pas:3s; +sursautai sursauter VER 1.66 28.11 0.10 1.15 ind:pas:1s; +sursautaient sursauter VER 1.66 28.11 0.01 0.54 ind:imp:3p; +sursautais sursauter VER 1.66 28.11 0.00 0.20 ind:imp:1s;ind:imp:2s; +sursautait sursauter VER 1.66 28.11 0.00 1.15 ind:imp:3s; +sursautant sursauter VER 1.66 28.11 0.00 1.89 par:pre; +sursaute sursauter VER 1.66 28.11 0.14 4.66 imp:pre:2s;ind:pre:1s;ind:pre:3s; +sursautent sursauter VER 1.66 28.11 0.02 0.34 ind:pre:3p; +sursauter sursauter VER 1.66 28.11 0.69 5.95 inf; +sursauteraient sursauter VER 1.66 28.11 0.00 0.07 cnd:pre:3p; +sursauterais sursauter VER 1.66 28.11 0.00 0.07 cnd:pre:1s; +sursautez sursauter VER 1.66 28.11 0.01 0.14 imp:pre:2p;ind:pre:2p; +sursautons sursauter VER 1.66 28.11 0.00 0.14 ind:pre:1p; +sursautât sursauter VER 1.66 28.11 0.00 0.07 sub:imp:3s; +sursauts sursaut NOM m p 0.77 21.28 0.06 3.72 +sursautèrent sursauter VER 1.66 28.11 0.00 0.14 ind:pas:3p; +sursauté sursauter VER m s 1.66 28.11 0.47 2.84 par:pas; +surseoir surseoir VER 0.12 0.74 0.10 0.47 inf; +sursis sursis NOM m 3.60 7.36 3.60 7.36 +sursitaire sursitaire ADJ s 0.01 0.00 0.01 0.00 +sursitaires sursitaire NOM p 0.00 0.07 0.00 0.07 +sursum_corda sursum_corda ADV 0.00 0.20 0.00 0.20 +surtaxe surtaxe NOM f s 0.13 0.14 0.13 0.07 +surtaxer surtaxer VER 0.04 0.00 0.01 0.00 inf; +surtaxes surtaxe NOM f p 0.13 0.14 0.00 0.07 +surtaxés surtaxer VER m p 0.04 0.00 0.02 0.00 par:pas; +surtendu surtendu ADJ m s 0.00 0.07 0.00 0.07 +surtension surtension NOM f s 0.37 0.00 0.37 0.00 +surtout surtout ADV 148.66 291.49 148.66 291.49 +surtouts surtout NOM m p 0.54 2.84 0.00 0.14 +surélevait surélever VER 0.34 2.50 0.00 0.07 ind:imp:3s; +surélever surélever VER 0.34 2.50 0.06 0.14 inf; +surélevez surélever VER 0.34 2.50 0.02 0.00 imp:pre:2p; +surélevé surélever VER m s 0.34 2.50 0.10 1.15 par:pas; +surélevée surélever VER f s 0.34 2.50 0.08 0.47 par:pas; +surélevées surélever VER f p 0.34 2.50 0.02 0.41 par:pas; +surélevés surélever VER m p 0.34 2.50 0.04 0.14 par:pas; +surélève surélever VER 0.34 2.50 0.02 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +surélévation surélévation NOM f s 0.03 0.00 0.03 0.00 +sérum sérum NOM m s 4.16 0.81 4.00 0.74 +suréminente suréminent ADJ f s 0.00 0.07 0.00 0.07 +sérums sérum NOM m p 4.16 0.81 0.15 0.07 +sérénade sérénade NOM f s 1.13 1.08 1.02 0.81 +sérénades sérénade NOM f p 1.13 1.08 0.11 0.27 +sérénissime sérénissime ADJ s 0.07 1.62 0.07 1.62 +sérénité sérénité NOM f s 4.71 12.91 4.71 12.91 +suréquipée suréquiper VER f s 0.01 0.07 0.01 0.07 par:pas; +surévaluation surévaluation NOM f s 0.01 0.07 0.01 0.07 +surévalué surévaluer VER m s 0.03 0.07 0.03 0.07 par:pas; +survînt survenir VER 4.86 15.54 0.00 0.20 sub:imp:3s; +surveilla surveiller VER 84.82 54.39 0.01 0.41 ind:pas:3s; +surveillaient surveiller VER 84.82 54.39 0.46 1.96 ind:imp:3p; +surveillais surveiller VER 84.82 54.39 0.98 1.89 ind:imp:1s;ind:imp:2s; +surveillait surveiller VER 84.82 54.39 1.61 8.92 ind:imp:3s; +surveillance surveillance NOM f s 19.16 12.23 19.05 12.16 +surveillances surveillance NOM f p 19.16 12.23 0.11 0.07 +surveillant surveillant NOM m s 2.58 6.55 1.65 3.58 +surveillante surveillant NOM f s 2.58 6.55 0.45 0.74 +surveillantes surveillant NOM f p 2.58 6.55 0.03 0.68 +surveillants surveillant NOM m p 2.58 6.55 0.45 1.55 +surveille surveiller VER 84.82 54.39 26.27 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +surveillent surveiller VER 84.82 54.39 3.72 1.69 ind:pre:3p; +surveiller surveiller VER 84.82 54.39 26.94 18.11 inf;; +surveillera surveiller VER 84.82 54.39 1.13 0.07 ind:fut:3s; +surveillerai surveiller VER 84.82 54.39 0.90 0.27 ind:fut:1s; +surveilleraient surveiller VER 84.82 54.39 0.02 0.07 cnd:pre:3p; +surveillerais surveiller VER 84.82 54.39 0.23 0.00 cnd:pre:1s;cnd:pre:2s; +surveillerait surveiller VER 84.82 54.39 0.08 0.41 cnd:pre:3s; +surveilleras surveiller VER 84.82 54.39 0.25 0.14 ind:fut:2s; +surveillerez surveiller VER 84.82 54.39 0.09 0.00 ind:fut:2p; +surveillerons surveiller VER 84.82 54.39 0.23 0.00 ind:fut:1p; +surveilleront surveiller VER 84.82 54.39 0.27 0.00 ind:fut:3p; +surveilles surveiller VER 84.82 54.39 2.09 0.34 ind:pre:2s; +surveillez surveiller VER 84.82 54.39 9.71 0.68 imp:pre:2p;ind:pre:2p; +surveilliez surveiller VER 84.82 54.39 0.41 0.00 ind:imp:2p; +surveillions surveiller VER 84.82 54.39 0.02 0.14 ind:imp:1p; +surveillons surveiller VER 84.82 54.39 0.90 0.20 imp:pre:1p;ind:pre:1p; +surveillât surveiller VER 84.82 54.39 0.00 0.07 sub:imp:3s; +surveillé surveiller VER m s 84.82 54.39 3.77 3.11 par:pas; +surveillée surveiller VER f s 84.82 54.39 2.46 2.09 par:pas; +surveillées surveiller VER f p 84.82 54.39 0.58 0.68 par:pas; +surveillés surveiller VER m p 84.82 54.39 1.33 1.49 par:pas; +survenaient survenir VER 4.86 15.54 0.00 0.41 ind:imp:3p; +survenais survenir VER 4.86 15.54 0.00 0.07 ind:imp:1s; +survenait survenir VER 4.86 15.54 0.12 1.49 ind:imp:3s; +survenant survenir VER 4.86 15.54 0.02 0.81 par:pre; +survenants survenant NOM m p 0.00 0.14 0.00 0.14 +survenir survenir VER 4.86 15.54 0.80 1.69 inf; +survenu survenir VER m s 4.86 15.54 0.61 1.96 par:pas; +survenue survenir VER f s 4.86 15.54 0.32 0.95 par:pas; +survenues survenue NOM f p 0.17 1.62 0.14 0.00 +survenus survenir VER m p 4.86 15.54 0.72 0.95 par:pas; +survie survie NOM f s 11.64 6.08 11.64 6.08 +surviendra survenir VER 4.86 15.54 0.17 0.14 ind:fut:3s; +surviendraient survenir VER 4.86 15.54 0.00 0.14 cnd:pre:3p; +surviendrait survenir VER 4.86 15.54 0.01 0.34 cnd:pre:3s; +surviendront survenir VER 4.86 15.54 0.00 0.20 ind:fut:3p; +survienne survenir VER 4.86 15.54 0.20 0.27 sub:pre:3s; +surviennent survenir VER 4.86 15.54 0.36 0.47 ind:pre:3p; +survient survenir VER 4.86 15.54 1.01 1.96 ind:pre:3s; +survinrent survenir VER 4.86 15.54 0.14 0.34 ind:pas:3p; +survint survenir VER 4.86 15.54 0.30 2.84 ind:pas:3s; +survire survirer VER 0.01 0.00 0.01 0.00 ind:pre:3s; +survis survivre VER 63.65 27.77 1.33 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +survit survivre VER 63.65 27.77 3.88 2.23 ind:pre:3s; +survitesse survitesse NOM f s 0.00 0.14 0.00 0.14 +survivaient survivre VER 63.65 27.77 0.16 0.81 ind:imp:3p; +survivais survivre VER 63.65 27.77 0.04 0.14 ind:imp:1s;ind:imp:2s; +survivait survivre VER 63.65 27.77 0.28 1.76 ind:imp:3s; +survivaliste survivaliste NOM s 0.01 0.00 0.01 0.00 +survivance survivance NOM f s 0.05 1.08 0.04 0.88 +survivances survivance NOM f p 0.05 1.08 0.01 0.20 +survivant survivant NOM m s 12.80 7.77 3.57 2.03 +survivante survivant NOM f s 12.80 7.77 0.39 0.14 +survivantes survivant NOM f p 12.80 7.77 0.03 0.20 +survivants survivant NOM m p 12.80 7.77 8.81 5.41 +survive survivre VER 63.65 27.77 1.42 0.54 sub:pre:1s;sub:pre:3s; +survivent survivre VER 63.65 27.77 1.79 1.22 ind:pre:3p; +survives survivre VER 63.65 27.77 0.24 0.00 sub:pre:2s; +survivez survivre VER 63.65 27.77 0.30 0.00 imp:pre:2p;ind:pre:2p; +surviviez survivre VER 63.65 27.77 0.06 0.00 ind:imp:2p; +survivions survivre VER 63.65 27.77 0.06 0.00 ind:imp:1p; +survivons survivre VER 63.65 27.77 0.20 0.14 imp:pre:1p;ind:pre:1p; +survivra survivre VER 63.65 27.77 3.92 0.54 ind:fut:3s; +survivrai survivre VER 63.65 27.77 2.99 0.14 ind:fut:1s; +survivraient survivre VER 63.65 27.77 0.25 0.27 cnd:pre:3p; +survivrais survivre VER 63.65 27.77 0.46 0.07 cnd:pre:1s;cnd:pre:2s; +survivrait survivre VER 63.65 27.77 0.80 1.28 cnd:pre:3s; +survivras survivre VER 63.65 27.77 0.61 0.00 ind:fut:2s; +survivre survivre VER 63.65 27.77 22.44 11.42 inf; +survivrez survivre VER 63.65 27.77 0.61 0.00 ind:fut:2p; +survivriez survivre VER 63.65 27.77 0.06 0.00 cnd:pre:2p; +survivrons survivre VER 63.65 27.77 0.33 0.07 ind:fut:1p; +survivront survivre VER 63.65 27.77 0.94 0.54 ind:fut:3p; +survol survol NOM m s 0.83 0.27 0.80 0.27 +survola survoler VER 5.38 6.22 0.01 0.14 ind:pas:3s; +survolaient survoler VER 5.38 6.22 0.04 0.41 ind:imp:3p; +survolais survoler VER 5.38 6.22 0.06 0.07 ind:imp:1s; +survolait survoler VER 5.38 6.22 0.38 0.61 ind:imp:3s; +survolant survoler VER 5.38 6.22 0.19 0.54 par:pre; +survole survoler VER 5.38 6.22 1.04 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +survolent survoler VER 5.38 6.22 0.90 0.27 ind:pre:3p; +survoler survoler VER 5.38 6.22 1.27 1.76 inf; +survolera survoler VER 5.38 6.22 0.10 0.00 ind:fut:3s; +survolerai survoler VER 5.38 6.22 0.04 0.00 ind:fut:1s; +survolerez survoler VER 5.38 6.22 0.16 0.00 ind:fut:2p; +survolerons survoler VER 5.38 6.22 0.07 0.00 ind:fut:1p; +survolez survoler VER 5.38 6.22 0.22 0.00 imp:pre:2p;ind:pre:2p; +survolions survoler VER 5.38 6.22 0.01 0.14 ind:imp:1p; +survolâmes survoler VER 5.38 6.22 0.00 0.07 ind:pas:1p; +survolons survoler VER 5.38 6.22 0.22 0.07 imp:pre:1p;ind:pre:1p; +survols survol NOM m p 0.83 0.27 0.03 0.00 +survoltage survoltage NOM m s 0.05 0.20 0.05 0.20 +survoltait survolter VER 0.25 0.68 0.00 0.07 ind:imp:3s; +survolteur survolteur NOM m s 0.02 0.00 0.02 0.00 +survolté survolté ADJ m s 0.28 1.42 0.10 0.34 +survoltée survolté ADJ f s 0.28 1.42 0.16 0.54 +survoltées survolté ADJ f p 0.28 1.42 0.02 0.07 +survoltés survolter VER m p 0.25 0.68 0.05 0.14 par:pas; +survolé survoler VER m s 5.38 6.22 0.65 1.08 par:pas; +survolée survoler VER f s 5.38 6.22 0.03 0.27 par:pas; +survolées survoler VER f p 5.38 6.22 0.00 0.20 par:pas; +survécûmes survivre VER 63.65 27.77 0.01 0.00 ind:pas:1p; +survécût survivre VER 63.65 27.77 0.00 0.14 sub:imp:3s; +survécu survivre VER m s 63.65 27.77 18.74 4.53 par:pas; +survécurent survivre VER 63.65 27.77 0.27 0.00 ind:pas:3p; +survécus survivre VER 63.65 27.77 0.07 0.14 ind:pas:1s; +survécut survivre VER 63.65 27.77 0.21 0.81 ind:pas:3s; +survêt survêt NOM m s 0.00 0.47 0.00 0.27 +survêtement survêtement NOM m s 0.65 2.77 0.63 2.23 +survêtements survêtement NOM m p 0.65 2.77 0.02 0.54 +survêts survêt NOM m p 0.00 0.47 0.00 0.20 +sus_orbitaire sus_orbitaire ADJ m s 0.01 0.00 0.01 0.00 +sus sus ADV 2.57 3.65 2.57 3.65 +sésame sésame NOM m s 1.26 1.35 1.26 1.35 +sésamoïdes sésamoïde ADJ p 0.01 0.00 0.01 0.00 +susceptibilité susceptibilité NOM f s 0.09 2.57 0.09 1.49 +susceptibilités susceptibilité NOM f p 0.09 2.57 0.00 1.08 +susceptible susceptible ADJ s 5.18 11.89 3.87 7.77 +susceptibles susceptible ADJ p 5.18 11.89 1.30 4.12 +suscita susciter VER 3.94 23.31 0.12 1.15 ind:pas:3s; +suscitaient susciter VER 3.94 23.31 0.01 1.49 ind:imp:3p; +suscitais susciter VER 3.94 23.31 0.10 0.14 ind:imp:1s;ind:imp:2s; +suscitait susciter VER 3.94 23.31 0.10 2.97 ind:imp:3s; +suscitant susciter VER 3.94 23.31 0.14 1.42 par:pre; +suscite susciter VER 3.94 23.31 1.08 2.84 imp:pre:2s;ind:pre:1s;ind:pre:3s; +suscitent susciter VER 3.94 23.31 0.16 1.01 ind:pre:3p; +susciter susciter VER 3.94 23.31 1.23 7.16 inf; +susciteraient susciter VER 3.94 23.31 0.10 0.07 cnd:pre:3p; +susciterait susciter VER 3.94 23.31 0.01 0.20 cnd:pre:3s; +susciteront susciter VER 3.94 23.31 0.00 0.07 ind:fut:3p; +suscites susciter VER 3.94 23.31 0.02 0.07 ind:pre:2s; +suscité susciter VER m s 3.94 23.31 0.59 2.23 par:pas; +suscitée susciter VER f s 3.94 23.31 0.21 1.42 par:pas; +suscitées susciter VER f p 3.94 23.31 0.02 0.47 par:pas; +suscités susciter VER m p 3.94 23.31 0.04 0.61 par:pas; +suscription suscription NOM f s 0.00 0.14 0.00 0.14 +susdit susdit ADJ m s 0.14 0.47 0.12 0.27 +susdite susdit NOM f s 0.31 0.07 0.20 0.00 +susdites susdit ADJ f p 0.14 0.47 0.00 0.14 +sushi sushi NOM m 2.03 0.00 2.03 0.00 +susmentionné susmentionné ADJ m s 0.30 0.07 0.19 0.00 +susmentionnée susmentionné ADJ f s 0.30 0.07 0.11 0.07 +susnommé susnommé ADJ m s 0.05 0.27 0.04 0.07 +susnommée susnommé ADJ f s 0.05 0.27 0.01 0.14 +susnommés susnommé ADJ m p 0.05 0.27 0.00 0.07 +suspect suspect NOM m s 32.45 3.65 22.86 1.55 +suspectaient suspecter VER 6.13 3.38 0.00 0.14 ind:imp:3p; +suspectais suspecter VER 6.13 3.38 0.10 0.07 ind:imp:1s;ind:imp:2s; +suspectait suspecter VER 6.13 3.38 0.29 0.20 ind:imp:3s; +suspectant suspecter VER 6.13 3.38 0.11 0.07 par:pre; +suspecte suspect ADJ f s 12.95 16.82 2.34 4.93 +suspectent suspecter VER 6.13 3.38 0.25 0.00 ind:pre:3p; +suspecter suspecter VER 6.13 3.38 0.95 0.88 inf; +suspectera suspecter VER 6.13 3.38 0.07 0.00 ind:fut:3s; +suspecteraient suspecter VER 6.13 3.38 0.00 0.07 cnd:pre:3p; +suspecterait suspecter VER 6.13 3.38 0.05 0.00 cnd:pre:3s; +suspecteront suspecter VER 6.13 3.38 0.03 0.00 ind:fut:3p; +suspectes suspect ADJ f p 12.95 16.82 0.69 1.49 +suspectez suspecter VER 6.13 3.38 0.34 0.00 imp:pre:2p;ind:pre:2p; +suspectiez suspecter VER 6.13 3.38 0.11 0.00 ind:imp:2p; +suspectons suspecter VER 6.13 3.38 0.12 0.07 imp:pre:1p;ind:pre:1p; +suspects suspect NOM m p 32.45 3.65 8.81 1.76 +suspecté suspecter VER m s 6.13 3.38 1.48 0.88 par:pas; +suspectée suspecter VER f s 6.13 3.38 0.38 0.14 par:pas; +suspectées suspecter VER f p 6.13 3.38 0.04 0.00 par:pas; +suspectés suspecter VER m p 6.13 3.38 0.16 0.41 par:pas; +suspend suspendre VER 13.99 39.32 0.53 1.55 ind:pre:3s; +suspendît suspendre VER 13.99 39.32 0.00 0.07 sub:imp:3s; +suspendaient suspendre VER 13.99 39.32 0.02 0.27 ind:imp:3p; +suspendais suspendre VER 13.99 39.32 0.01 0.07 ind:imp:1s; +suspendait suspendre VER 13.99 39.32 0.03 1.28 ind:imp:3s; +suspendant suspendre VER 13.99 39.32 0.04 0.74 par:pre; +suspende suspendre VER 13.99 39.32 0.13 0.00 sub:pre:1s;sub:pre:3s; +suspendent suspendre VER 13.99 39.32 0.04 0.27 ind:pre:3p; +suspendez suspendre VER 13.99 39.32 0.54 0.07 imp:pre:2p;ind:pre:2p; +suspendirent suspendre VER 13.99 39.32 0.00 0.20 ind:pas:3p; +suspendit suspendre VER 13.99 39.32 0.01 1.96 ind:pas:3s; +suspendons suspendre VER 13.99 39.32 0.06 0.20 imp:pre:1p;ind:pre:1p; +suspendra suspendre VER 13.99 39.32 0.08 0.07 ind:fut:3s; +suspendrai suspendre VER 13.99 39.32 0.06 0.00 ind:fut:1s; +suspendrait suspendre VER 13.99 39.32 0.10 0.27 cnd:pre:3s; +suspendre suspendre VER 13.99 39.32 2.42 4.19 inf;; +suspendrez suspendre VER 13.99 39.32 0.01 0.00 ind:fut:2p; +suspendrons suspendre VER 13.99 39.32 0.04 0.00 ind:fut:1p; +suspendront suspendre VER 13.99 39.32 0.03 0.07 ind:fut:3p; +suspends suspendre VER 13.99 39.32 0.98 0.27 imp:pre:2s;ind:pre:1s;ind:pre:2s; +suspendu suspendre VER m s 13.99 39.32 4.41 12.77 par:pas; +suspendue suspendre VER f s 13.99 39.32 2.59 7.50 par:pas; +suspendues suspendre VER f p 13.99 39.32 0.75 3.11 par:pas; +suspendus suspendre VER m p 13.99 39.32 1.13 4.39 par:pas; +suspens suspens NOM m 1.44 7.43 1.44 7.43 +suspense suspense NOM s 4.09 1.76 4.08 1.62 +suspenses suspense NOM p 4.09 1.76 0.01 0.14 +suspenseur suspenseur ADJ m s 0.01 0.07 0.01 0.00 +suspenseurs suspenseur ADJ m p 0.01 0.07 0.00 0.07 +suspensif suspensif ADJ m s 0.01 0.07 0.00 0.07 +suspension suspension NOM f s 4.06 7.91 3.92 7.23 +suspensions suspension NOM f p 4.06 7.91 0.14 0.68 +suspensive suspensif ADJ f s 0.01 0.07 0.01 0.00 +suspensoir suspensoir NOM m s 0.11 0.14 0.09 0.14 +suspensoirs suspensoir NOM m p 0.11 0.14 0.02 0.00 +suspente suspente NOM f s 0.01 0.14 0.00 0.07 +suspentes suspente NOM f p 0.01 0.14 0.01 0.07 +suspicieuse suspicieux ADJ f s 1.10 0.88 0.33 0.34 +suspicieusement suspicieusement ADV 0.04 0.14 0.04 0.14 +suspicieuses suspicieux ADJ f p 1.10 0.88 0.12 0.00 +suspicieux suspicieux ADJ m 1.10 0.88 0.65 0.54 +suspicion suspicion NOM f s 1.44 2.57 1.21 2.23 +suspicions suspicion NOM f p 1.44 2.57 0.23 0.34 +susse savoir VER 4516.72 2003.58 0.00 0.20 sub:imp:1s; +sussent savoir VER 4516.72 2003.58 0.00 0.14 sub:imp:3p; +sustentation sustentation NOM f s 0.01 0.14 0.01 0.14 +sustente sustenter VER 0.11 0.68 0.04 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +sustenter sustenter VER 0.11 0.68 0.08 0.54 inf; +sustentés sustenter VER m p 0.11 0.68 0.00 0.07 par:pas; +susu susu ADJ s 0.00 0.07 0.00 0.07 +susucre susucre NOM m s 0.00 0.20 0.00 0.20 +susurra susurrer VER 0.22 4.86 0.00 1.08 ind:pas:3s; +susurrai susurrer VER 0.22 4.86 0.00 0.07 ind:pas:1s; +susurraient susurrer VER 0.22 4.86 0.00 0.14 ind:imp:3p; +susurrait susurrer VER 0.22 4.86 0.01 0.74 ind:imp:3s; +susurrant susurrer VER 0.22 4.86 0.13 0.14 par:pre; +susurre susurrer VER 0.22 4.86 0.01 1.01 imp:pre:2s;ind:pre:3s; +susurrement susurrement NOM m s 0.00 0.47 0.00 0.14 +susurrements susurrement NOM m p 0.00 0.47 0.00 0.34 +susurrent susurrer VER 0.22 4.86 0.02 0.34 ind:pre:3p; +susurrer susurrer VER 0.22 4.86 0.01 0.54 inf; +susurrerai susurrer VER 0.22 4.86 0.01 0.00 ind:fut:1s; +susurré susurrer VER m s 0.22 4.86 0.01 0.54 par:pas; +susurrée susurrer VER f s 0.22 4.86 0.00 0.14 par:pas; +susurrées susurrer VER f p 0.22 4.86 0.01 0.07 par:pas; +susurrés susurrer VER m p 0.22 4.86 0.00 0.07 par:pas; +susvisée susvisé ADJ f s 0.00 0.07 0.00 0.07 +sut savoir VER 4516.72 2003.58 1.68 20.41 ind:pas:3s; +suça sucer VER 23.45 18.51 0.14 0.54 ind:pas:3s; +suçage suçage NOM m s 0.01 0.07 0.01 0.00 +suçages suçage NOM m p 0.01 0.07 0.00 0.07 +suçaient sucer VER 23.45 18.51 0.02 0.81 ind:imp:3p; +suçais sucer VER 23.45 18.51 0.32 0.20 ind:imp:1s;ind:imp:2s; +suçait sucer VER 23.45 18.51 0.21 2.36 ind:imp:3s; +suçant sucer VER 23.45 18.51 0.39 1.96 par:pre; +suède suède NOM m s 0.00 0.07 0.00 0.07 +suçoir suçoir NOM m s 0.00 0.27 0.00 0.14 +suçoirs suçoir NOM m p 0.00 0.27 0.00 0.14 +suçon suçon NOM m s 1.05 0.14 0.89 0.00 +suçons suçon NOM m p 1.05 0.14 0.17 0.14 +suçota suçoter VER 0.01 1.35 0.00 0.07 ind:pas:3s; +suçotait suçoter VER 0.01 1.35 0.00 0.27 ind:imp:3s; +suçotant suçoter VER 0.01 1.35 0.00 0.07 par:pre; +suçote suçoter VER 0.01 1.35 0.00 0.34 ind:pre:1s;ind:pre:3s; +suçotements suçotement NOM m p 0.00 0.07 0.00 0.07 +suçotent suçoter VER 0.01 1.35 0.00 0.07 ind:pre:3p; +suçoter suçoter VER 0.01 1.35 0.01 0.41 inf; +suçoté suçoter VER m s 0.01 1.35 0.00 0.14 par:pas; +séton séton NOM m s 0.00 0.07 0.00 0.07 +sutra sutra NOM m s 0.20 0.20 0.20 0.20 +sutémi sutémi NOM m s 0.00 0.14 0.00 0.14 +suturant suturer VER 0.45 0.27 0.00 0.07 par:pre; +suture suture NOM f s 4.54 0.68 3.77 0.47 +suturer suturer VER 0.45 0.27 0.38 0.07 inf; +sutures suture NOM f p 4.54 0.68 0.77 0.20 +suturé suturer VER m s 0.45 0.27 0.06 0.07 par:pas; +suturée suturer VER f s 0.45 0.27 0.01 0.07 par:pas; +sué suer VER m s 7.28 10.34 2.50 0.41 par:pas; +suédine suédine NOM f s 0.00 0.54 0.00 0.54 +suédois suédois NOM m 4.76 2.64 3.21 1.49 +suédoise suédois ADJ f s 3.67 6.89 1.41 2.77 +suédoises suédois NOM f p 4.76 2.64 0.69 0.34 +suée suée NOM f s 0.35 1.96 0.33 0.81 +suées suée NOM f p 0.35 1.96 0.02 1.15 +sévît sévir VER 3.23 5.61 0.00 0.07 sub:imp:3s; +sévi sévir VER m s 3.23 5.61 0.14 0.68 par:pas; +sévice sévices NOM m s 1.25 2.50 0.12 0.34 +sévices sévices NOM m p 1.25 2.50 1.13 2.16 +sévillan sévillan NOM m s 0.00 0.27 0.00 0.07 +sévillane sévillan NOM f s 0.00 0.27 0.00 0.20 +sévir sévir VER 3.23 5.61 0.75 1.62 inf; +sévira sévir VER 3.23 5.61 0.04 0.00 ind:fut:3s; +sévirai sévir VER 3.23 5.61 0.14 0.07 ind:fut:1s; +sévissaient sévir VER 3.23 5.61 0.10 0.34 ind:imp:3p; +sévissais sévir VER 3.23 5.61 0.00 0.07 ind:imp:1s; +sévissait sévir VER 3.23 5.61 0.50 1.01 ind:imp:3s; +sévissant sévir VER 3.23 5.61 0.01 0.00 par:pre; +sévisse sévir VER 3.23 5.61 0.03 0.07 sub:pre:3s; +sévissent sévir VER 3.23 5.61 0.18 0.34 ind:pre:3p; +sévit sévir VER 3.23 5.61 1.33 1.35 ind:pre:3s;ind:pas:3s; +sévrienne sévrienne NOM f s 0.00 0.14 0.00 0.07 +sévriennes sévrienne NOM f p 0.00 0.14 0.00 0.07 +sévère sévère ADJ s 9.47 29.73 8.28 22.91 +sévèrement sévèrement ADV 2.46 6.08 2.46 6.08 +sévères sévère ADJ p 9.47 29.73 1.20 6.82 +sévérité sévérité NOM f s 0.96 7.16 0.95 6.89 +sévérités sévérité NOM f p 0.96 7.16 0.01 0.27 +suzerain suzerain NOM m s 0.20 0.68 0.20 0.47 +suzeraine suzerain NOM f s 0.20 0.68 0.00 0.14 +suzeraineté suzeraineté NOM f s 0.01 0.14 0.01 0.14 +suzerains suzerain NOM m p 0.20 0.68 0.00 0.07 +sézigue sézigue PRO:per s 0.00 0.27 0.00 0.27 +svastika svastika NOM m s 0.09 0.20 0.09 0.14 +svastikas svastika NOM m p 0.09 0.20 0.00 0.07 +svelte svelte ADJ s 0.43 2.77 0.39 2.43 +sveltes svelte ADJ p 0.43 2.77 0.04 0.34 +sveltesse sveltesse NOM f s 0.00 0.61 0.00 0.61 +svp svp ADV 6.36 0.07 6.36 0.07 +swahili swahili NOM m s 0.00 0.54 0.00 0.54 +sweat_shirt sweat_shirt NOM m s 0.00 0.20 0.00 0.20 +sweater sweater NOM m s 0.00 1.01 0.00 0.74 +sweaters sweater NOM m p 0.00 1.01 0.00 0.27 +sweepstake sweepstake NOM m s 0.00 0.07 0.00 0.07 +swiftiennes swiftien ADJ f p 0.00 0.07 0.00 0.07 +swing swing NOM m s 0.00 0.88 0.00 0.74 +swings swing NOM m p 0.00 0.88 0.00 0.14 +swinguaient swinguer VER 0.00 0.07 0.00 0.07 ind:imp:3p; +sybarites sybarite ADJ p 0.01 0.00 0.01 0.00 +sybaritisme sybaritisme NOM m s 0.00 0.07 0.00 0.07 +sycomore sycomore NOM m s 0.14 1.08 0.11 0.34 +sycomores sycomore NOM m p 0.14 1.08 0.04 0.74 +sycophante sycophante NOM m s 0.03 0.07 0.03 0.00 +sycophantes sycophante NOM m p 0.03 0.07 0.00 0.07 +syllabe syllabe NOM f s 1.52 11.28 0.65 2.30 +syllabes syllabe NOM f p 1.52 11.28 0.88 8.99 +syllabus syllabus NOM m 0.01 0.00 0.01 0.00 +syllepse syllepse NOM f s 0.00 0.07 0.00 0.07 +syllogisme syllogisme NOM m s 0.13 0.54 0.13 0.14 +syllogismes syllogisme NOM m p 0.13 0.54 0.00 0.41 +syllogistique syllogistique ADJ f s 0.01 0.07 0.01 0.00 +syllogistiques syllogistique ADJ p 0.01 0.07 0.00 0.07 +sylphes sylphe NOM m p 0.02 0.07 0.02 0.07 +sylphide sylphide NOM f s 0.01 0.27 0.00 0.07 +sylphides sylphide NOM f p 0.01 0.27 0.01 0.20 +sylvain sylvain NOM m s 0.20 0.07 0.20 0.00 +sylvains sylvain NOM m p 0.20 0.07 0.00 0.07 +sylvaner sylvaner NOM m s 0.00 0.14 0.00 0.14 +sylve sylve NOM f s 0.00 0.14 0.00 0.14 +sylvestre sylvestre ADJ s 0.35 1.22 0.23 0.81 +sylvestres sylvestre ADJ p 0.35 1.22 0.12 0.41 +sylviculture sylviculture NOM f s 0.01 0.14 0.01 0.14 +sylvie sylvie NOM f s 0.00 2.09 0.00 2.09 +symbionte symbionte NOM m s 0.01 0.00 0.01 0.00 +symbiose symbiose NOM f s 0.68 0.41 0.68 0.41 +symbiote symbiote NOM m s 4.04 0.00 3.38 0.00 +symbiotes symbiote NOM m p 4.04 0.00 0.66 0.00 +symbiotique symbiotique ADJ s 0.36 0.00 0.36 0.00 +symbole symbole NOM m s 14.95 18.92 10.74 12.57 +symboles symbole NOM m p 14.95 18.92 4.20 6.35 +symbolique symbolique ADJ s 2.35 9.53 2.23 7.91 +symboliquement symboliquement ADV 0.21 0.88 0.21 0.88 +symboliques symbolique ADJ p 2.35 9.53 0.12 1.62 +symbolisa symboliser VER 2.65 5.07 0.00 0.07 ind:pas:3s; +symbolisaient symboliser VER 2.65 5.07 0.04 0.20 ind:imp:3p; +symbolisait symboliser VER 2.65 5.07 0.18 1.28 ind:imp:3s; +symbolisant symboliser VER 2.65 5.07 0.20 0.47 par:pre; +symbolisation symbolisation NOM f s 0.00 0.14 0.00 0.14 +symbolise symboliser VER 2.65 5.07 1.17 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +symbolisent symboliser VER 2.65 5.07 0.30 0.54 ind:pre:3p; +symboliser symboliser VER 2.65 5.07 0.28 0.61 inf; +symbolisera symboliser VER 2.65 5.07 0.03 0.07 ind:fut:3s; +symboliserai symboliser VER 2.65 5.07 0.01 0.00 ind:fut:1s; +symboliserait symboliser VER 2.65 5.07 0.01 0.00 cnd:pre:3s; +symbolisme symbolisme NOM m s 0.19 0.81 0.19 0.81 +symbolisât symboliser VER 2.65 5.07 0.00 0.07 sub:imp:3s; +symboliste symboliste ADJ s 0.01 0.20 0.01 0.20 +symbolisé symboliser VER m s 2.65 5.07 0.14 0.27 par:pas; +symbolisée symboliser VER f s 2.65 5.07 0.04 0.34 par:pas; +symbolisés symboliser VER m p 2.65 5.07 0.23 0.07 par:pas; +sympa sympa ADJ s 83.39 7.77 77.46 7.16 +sympas sympa ADJ p 83.39 7.77 5.92 0.61 +sympathectomie sympathectomie NOM f s 0.01 0.07 0.01 0.07 +sympathie sympathie NOM f s 7.68 26.15 6.87 24.05 +sympathies sympathie NOM f p 7.68 26.15 0.81 2.09 +sympathique sympathique ADJ s 16.23 15.54 12.79 13.11 +sympathiques sympathique ADJ p 16.23 15.54 3.45 2.43 +sympathisai sympathiser VER 2.12 1.96 0.00 0.07 ind:pas:1s; +sympathisaient sympathiser VER 2.12 1.96 0.01 0.00 ind:imp:3p; +sympathisait sympathiser VER 2.12 1.96 0.02 0.41 ind:imp:3s; +sympathisant sympathisant NOM m s 0.75 1.62 0.33 0.20 +sympathisante sympathisant NOM f s 0.75 1.62 0.03 0.00 +sympathisantes sympathisant ADJ f p 0.41 0.20 0.02 0.07 +sympathisants sympathisant NOM m p 0.75 1.62 0.36 1.42 +sympathise sympathiser VER 2.12 1.96 0.40 0.20 ind:pre:1s;ind:pre:3s; +sympathiser sympathiser VER 2.12 1.96 0.42 0.47 inf; +sympathisera sympathiser VER 2.12 1.96 0.00 0.07 ind:fut:3s; +sympathiserez sympathiser VER 2.12 1.96 0.01 0.00 ind:fut:2p; +sympathisez sympathiser VER 2.12 1.96 0.04 0.00 ind:pre:2p; +sympathisions sympathiser VER 2.12 1.96 0.00 0.07 ind:imp:1p; +sympathisons sympathiser VER 2.12 1.96 0.00 0.14 ind:pre:1p; +sympathisé sympathiser VER m s 2.12 1.96 1.21 0.54 par:pas; +sympathomimétique sympathomimétique ADJ s 0.01 0.00 0.01 0.00 +symphonie symphonie NOM f s 1.63 5.54 1.30 4.86 +symphonies symphonie NOM f p 1.63 5.54 0.32 0.68 +symphonique symphonique ADJ s 1.02 0.14 1.01 0.14 +symphoniques symphonique ADJ m p 1.02 0.14 0.01 0.00 +symphorines symphorine NOM f p 0.00 0.07 0.00 0.07 +symphyse symphyse NOM f s 0.05 0.00 0.05 0.00 +symposium symposium NOM m s 0.15 0.81 0.14 0.68 +symposiums symposium NOM m p 0.15 0.81 0.01 0.14 +symptôme symptôme NOM m s 11.64 4.39 2.03 1.22 +symptômes symptôme NOM m p 11.64 4.39 9.61 3.18 +symptomatique symptomatique ADJ m s 0.25 0.41 0.11 0.34 +symptomatiques symptomatique ADJ m p 0.25 0.41 0.14 0.07 +symptomatologie symptomatologie NOM f s 0.11 0.00 0.11 0.00 +symétrie symétrie NOM f s 1.20 2.97 1.20 2.70 +symétries symétrie NOM f p 1.20 2.97 0.00 0.27 +symétrique symétrique ADJ s 1.03 3.92 0.46 2.16 +symétriquement symétriquement ADV 0.03 0.95 0.03 0.95 +symétriques symétrique ADJ p 1.03 3.92 0.57 1.76 +synagogale synagogal ADJ f s 0.00 0.14 0.00 0.07 +synagogaux synagogal ADJ m p 0.00 0.14 0.00 0.07 +synagogue synagogue NOM f s 2.88 3.65 2.31 3.11 +synagogues synagogue NOM f p 2.88 3.65 0.57 0.54 +synapse synapse NOM f s 0.70 0.34 0.32 0.07 +synapses synapse NOM f p 0.70 0.34 0.38 0.27 +synaptique synaptique ADJ s 0.23 0.00 0.16 0.00 +synaptiques synaptique ADJ m p 0.23 0.00 0.07 0.00 +synchro synchro ADJ s 1.97 0.14 1.93 0.14 +synchrone synchrone ADJ s 0.16 0.54 0.10 0.07 +synchrones synchrone ADJ p 0.16 0.54 0.06 0.47 +synchronie synchronie NOM f s 0.00 0.07 0.00 0.07 +synchronique synchronique ADJ s 0.02 0.07 0.02 0.07 +synchronisaient synchroniser VER 2.09 0.54 0.01 0.00 ind:imp:3p; +synchronisation synchronisation NOM f s 1.87 0.27 1.87 0.27 +synchronise synchroniser VER 2.09 0.54 0.22 0.00 imp:pre:2s;ind:pre:3s; +synchroniser synchroniser VER 2.09 0.54 0.27 0.07 inf; +synchronisera synchroniser VER 2.09 0.54 0.04 0.00 ind:fut:3s; +synchroniseur synchroniseur NOM m s 0.05 0.00 0.05 0.00 +synchronisez synchroniser VER 2.09 0.54 0.26 0.00 imp:pre:2p; +synchronisme synchronisme NOM m s 0.08 0.54 0.08 0.54 +synchronisons synchroniser VER 2.09 0.54 0.34 0.00 imp:pre:1p;ind:pre:1p; +synchronisé synchroniser VER m s 2.09 0.54 0.44 0.34 par:pas; +synchronisée synchroniser VER f s 2.09 0.54 0.14 0.07 par:pas; +synchronisées synchroniser VER f p 2.09 0.54 0.08 0.07 par:pas; +synchronisés synchroniser VER m p 2.09 0.54 0.29 0.00 par:pas; +synchros synchro ADJ p 1.97 0.14 0.04 0.00 +synchrotron synchrotron NOM m s 0.01 0.00 0.01 0.00 +syncopal syncopal ADJ m s 0.01 0.07 0.01 0.07 +syncope syncope NOM f s 0.76 1.76 0.73 1.35 +syncoper syncoper VER 0.02 0.54 0.01 0.00 inf; +syncopes syncope NOM f p 0.76 1.76 0.02 0.41 +syncopé syncopé ADJ m s 0.05 0.95 0.03 0.34 +syncopée syncopé ADJ f s 0.05 0.95 0.01 0.14 +syncopées syncopé ADJ f p 0.05 0.95 0.01 0.14 +syncopés syncoper VER m p 0.02 0.54 0.01 0.07 par:pas; +syncrétisme syncrétisme NOM m s 0.00 0.14 0.00 0.14 +syncrétiste syncrétiste ADJ s 0.00 0.07 0.00 0.07 +syncytial syncytial ADJ m s 0.01 0.00 0.01 0.00 +syndic syndic NOM m s 0.61 1.08 0.48 0.95 +syndical syndical ADJ m s 1.50 2.23 0.65 0.47 +syndicale syndical ADJ f s 1.50 2.23 0.38 0.95 +syndicales syndical ADJ f p 1.50 2.23 0.33 0.41 +syndicalisation syndicalisation NOM f s 0.04 0.00 0.04 0.00 +syndicaliser syndicaliser VER 0.02 0.00 0.02 0.00 inf; +syndicalisme syndicalisme NOM m s 0.04 0.95 0.04 0.95 +syndicaliste syndicaliste NOM s 0.53 0.74 0.30 0.41 +syndicalistes syndicaliste NOM p 0.53 0.74 0.23 0.34 +syndicat syndicat NOM m s 14.25 8.45 9.93 5.20 +syndication syndication NOM f s 0.05 0.00 0.05 0.00 +syndicats syndicat NOM m p 14.25 8.45 4.33 3.24 +syndicaux syndical ADJ m p 1.50 2.23 0.15 0.41 +syndics syndic NOM m p 0.61 1.08 0.14 0.14 +syndique syndiquer VER 0.63 0.68 0.03 0.07 ind:pre:1s;ind:pre:3s; +syndiquer syndiquer VER 0.63 0.68 0.23 0.07 inf; +syndiquez syndiquer VER 0.63 0.68 0.05 0.00 imp:pre:2p; +syndiqué syndiqué ADJ m s 0.45 0.61 0.24 0.14 +syndiquée syndiquer VER f s 0.63 0.68 0.04 0.00 par:pas; +syndiquées syndiqué ADJ f p 0.45 0.61 0.02 0.07 +syndiqués syndiqué ADJ m p 0.45 0.61 0.15 0.41 +syndrome syndrome NOM m s 5.47 0.81 5.26 0.68 +syndromes syndrome NOM m p 5.47 0.81 0.21 0.14 +synecdoque synecdoque NOM f s 0.00 0.14 0.00 0.14 +synergie synergie NOM f s 0.15 0.00 0.14 0.00 +synergies synergie NOM f p 0.15 0.00 0.01 0.00 +synergique synergique ADJ f s 0.02 0.00 0.02 0.00 +synergétique synergétique ADJ m s 0.03 0.00 0.03 0.00 +synesthésie synesthésie NOM f s 0.01 0.00 0.01 0.00 +synode synode NOM m s 0.20 0.07 0.20 0.07 +synonyme synonyme ADJ s 0.97 1.49 0.84 1.08 +synonymes synonyme ADJ f p 0.97 1.49 0.13 0.41 +synopsie synopsie NOM f s 0.01 0.00 0.01 0.00 +synopsis synopsis NOM m 0.17 0.47 0.17 0.47 +synoptique synoptique ADJ s 0.01 0.07 0.01 0.07 +synoviales synovial ADJ f p 0.01 0.00 0.01 0.00 +synovite synovite NOM f s 0.04 0.00 0.04 0.00 +syntagme syntagme NOM m s 0.00 0.07 0.00 0.07 +syntaxe syntaxe NOM f s 0.27 2.03 0.27 1.96 +syntaxes syntaxe NOM f p 0.27 2.03 0.00 0.07 +syntaxique syntaxique ADJ m s 0.01 0.00 0.01 0.00 +synthèse synthèse NOM f s 1.63 1.96 1.62 1.82 +synthèses synthèse NOM f p 1.63 1.96 0.01 0.14 +synthé synthé NOM m s 0.61 0.27 0.60 0.20 +synthés synthé NOM m p 0.61 0.27 0.01 0.07 +synthétique synthétique ADJ s 3.05 2.64 1.58 1.96 +synthétiquement synthétiquement ADV 0.01 0.00 0.01 0.00 +synthétiques synthétique ADJ p 3.05 2.64 1.47 0.68 +synthétise synthétiser VER 0.61 0.20 0.04 0.20 ind:pre:1s;ind:pre:3s; +synthétisent synthétiser VER 0.61 0.20 0.01 0.00 ind:pre:3p; +synthétiser synthétiser VER 0.61 0.20 0.32 0.00 inf; +synthétisera synthétiser VER 0.61 0.20 0.01 0.00 ind:fut:3s; +synthétiseur synthétiseur NOM m s 0.39 0.41 0.36 0.34 +synthétiseurs synthétiseur NOM m p 0.39 0.41 0.03 0.07 +synthétisé synthétiser VER m s 0.61 0.20 0.16 0.00 par:pas; +synthétisée synthétiser VER f s 0.61 0.20 0.05 0.00 par:pas; +synthétisés synthétiser VER m p 0.61 0.20 0.02 0.00 par:pas; +synérèses synérèse NOM f p 0.00 0.07 0.00 0.07 +syphilis syphilis NOM f 1.53 1.01 1.53 1.01 +syphilitique syphilitique ADJ s 0.86 0.61 0.71 0.41 +syphilitiques syphilitique ADJ p 0.86 0.61 0.15 0.20 +syrah syrah NOM f s 0.09 0.00 0.09 0.00 +syriaque syriaque NOM s 0.00 0.07 0.00 0.07 +syriaques syriaque ADJ p 0.00 0.07 0.00 0.07 +syrien syrien ADJ m s 1.79 6.82 0.81 2.30 +syrienne syrien ADJ f s 1.79 6.82 0.58 1.76 +syriennes syrienne ADJ f p 0.03 0.00 0.03 0.00 +syriens syrien NOM m p 1.40 1.42 1.38 0.88 +syringomyélie syringomyélie NOM f s 0.01 0.00 0.01 0.00 +syrinx syrinx NOM f 0.00 0.07 0.00 0.07 +syro syro ADV 0.03 0.20 0.03 0.20 +syrtes syrte NOM f p 0.00 5.47 0.00 5.47 +systole systole NOM f s 0.01 0.20 0.01 0.20 +systolique systolique ADJ s 0.77 0.07 0.76 0.00 +systoliques systolique ADJ p 0.77 0.07 0.01 0.07 +système système NOM m s 76.92 46.96 66.12 42.23 +systèmes_clé systèmes_clé NOM m p 0.03 0.00 0.03 0.00 +systèmes système NOM m p 76.92 46.96 10.80 4.73 +systématique systématique ADJ s 0.86 3.85 0.67 3.45 +systématiquement systématiquement ADV 1.25 4.19 1.25 4.19 +systématiques systématique ADJ p 0.86 3.85 0.19 0.41 +systématisation systématisation NOM f s 0.00 0.07 0.00 0.07 +systématiser systématiser VER 0.00 0.07 0.00 0.07 inf; +systématisé systématisé ADJ m s 0.00 0.27 0.00 0.07 +systématisée systématisé ADJ f s 0.00 0.27 0.00 0.14 +systématisés systématisé ADJ m p 0.00 0.27 0.00 0.07 +systémique systémique ADJ s 0.14 0.00 0.14 0.00 +syénite syénite NOM f s 0.01 0.00 0.01 0.00 +syzygie syzygie NOM m s 0.00 0.20 0.00 0.14 +syzygies syzygie NOM m p 0.00 0.20 0.00 0.07 +t_ t_ PRO:per s 4344.23 779.93 4344.23 779.93 +t_shirt t_shirt NOM m s 10.87 0.54 7.59 0.20 +t_shirt t_shirt NOM m p 10.87 0.54 3.28 0.34 +t t PRO:per s 88.47 4.53 88.47 4.53 +tînmes tenir VER 504.69 741.22 0.00 0.20 ind:pas:1p; +tînt tenir VER 504.69 741.22 0.00 2.57 sub:imp:3s; +tôlarde tôlard NOM f s 0.01 0.00 0.01 0.00 +tôle tôle NOM f s 3.58 15.41 3.29 12.50 +tôlerie tôlerie NOM f s 0.00 0.20 0.00 0.20 +tôles tôle NOM f p 3.58 15.41 0.29 2.91 +tôlier tôlier NOM m s 0.02 0.27 0.01 0.14 +tôliers tôlier NOM m p 0.02 0.27 0.00 0.07 +tôlière tôlier NOM f s 0.02 0.27 0.01 0.07 +tôt_fait tôt_fait NOM m s 0.00 0.07 0.00 0.07 +tôt tôt ADV 129.98 126.76 129.98 126.76 +tûmes taire VER 154.47 139.80 0.00 0.20 ind:pas:1p; +tût taire VER 154.47 139.80 0.03 0.41 sub:imp:3s; +ta ta ADJ:pos 1265.97 251.69 1265.97 251.69 +taï_chi taï_chi NOM m s 0.16 0.00 0.16 0.00 +taïaut taïaut ONO 0.20 0.74 0.20 0.74 +taïga taïga NOM f s 1.50 0.95 1.50 0.88 +taïgas taïga NOM f p 1.50 0.95 0.00 0.07 +tab tab ADJ m s 0.23 0.00 0.23 0.00 +tabac tabac NOM m s 16.00 41.89 15.70 41.28 +tabacs tabac NOM m p 16.00 41.89 0.30 0.61 +tabagie tabagie NOM f s 0.15 0.41 0.15 0.27 +tabagies tabagie NOM f p 0.15 0.41 0.00 0.14 +tabagisme tabagisme NOM m s 0.26 0.00 0.26 0.00 +tabard tabard NOM m s 0.13 0.00 0.13 0.00 +tabaski tabaski NOM f s 0.00 0.07 0.00 0.07 +tabassage tabassage NOM m s 0.07 0.27 0.07 0.14 +tabassages tabassage NOM m p 0.07 0.27 0.00 0.14 +tabassaient tabasser VER 12.71 2.30 0.04 0.00 ind:imp:3p; +tabassais tabasser VER 12.71 2.30 0.14 0.00 ind:imp:1s;ind:imp:2s; +tabassait tabasser VER 12.71 2.30 0.33 0.14 ind:imp:3s; +tabassant tabasser VER 12.71 2.30 0.01 0.00 par:pre; +tabasse tabasser VER 12.71 2.30 1.96 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tabassent tabasser VER 12.71 2.30 0.38 0.07 ind:pre:3p; +tabasser tabasser VER 12.71 2.30 4.91 1.01 inf; +tabassera tabasser VER 12.71 2.30 0.08 0.00 ind:fut:3s; +tabasseraient tabasser VER 12.71 2.30 0.01 0.00 cnd:pre:3p; +tabasserais tabasser VER 12.71 2.30 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +tabasses tabasser VER 12.71 2.30 0.25 0.07 ind:pre:2s; +tabassez tabasser VER 12.71 2.30 0.09 0.00 imp:pre:2p;ind:pre:2p; +tabassons tabasser VER 12.71 2.30 0.01 0.07 imp:pre:1p;ind:pre:1p; +tabassèrent tabasser VER 12.71 2.30 0.01 0.00 ind:pas:3p; +tabassé tabasser VER m s 12.71 2.30 3.59 0.34 par:pas; +tabassée tabasser VER f s 12.71 2.30 0.48 0.14 par:pas; +tabassés tabasser VER m p 12.71 2.30 0.26 0.20 par:pas; +tabatière tabatière NOM f s 0.46 2.57 0.35 2.16 +tabatières tabatière NOM f p 0.46 2.57 0.11 0.41 +tabellion tabellion NOM m s 0.00 0.20 0.00 0.14 +tabellions tabellion NOM m p 0.00 0.20 0.00 0.07 +tabernacle tabernacle NOM m s 0.69 2.16 0.69 2.03 +tabernacles tabernacle NOM m p 0.69 2.16 0.00 0.14 +tabla tabler VER 0.95 1.62 0.01 0.00 ind:pas:3s; +tablais tabler VER 0.95 1.62 0.01 0.00 ind:imp:2s; +tablant tabler VER 0.95 1.62 0.01 0.14 par:pre; +tablature tablature NOM f s 0.00 0.07 0.00 0.07 +table_bureau table_bureau NOM f s 0.00 0.07 0.00 0.07 +table_coiffeuse table_coiffeuse NOM f s 0.00 0.27 0.00 0.27 +table table NOM f s 118.37 379.80 111.44 341.08 +tableau tableau NOM m s 50.11 90.00 37.80 57.84 +tableautin tableautin NOM m s 0.00 0.27 0.00 0.07 +tableautins tableautin NOM m p 0.00 0.27 0.00 0.20 +tableaux tableau NOM m p 50.11 90.00 12.31 32.16 +tabler tabler VER 0.95 1.62 0.04 0.54 inf; +tablerez tabler VER 0.95 1.62 0.01 0.00 ind:fut:2p; +tables table NOM f p 118.37 379.80 6.92 38.72 +tablette tablette NOM f s 2.70 9.86 2.08 6.76 +tabletterie tabletterie NOM f s 0.00 0.07 0.00 0.07 +tablettes tablette NOM f p 2.70 9.86 0.63 3.11 +tableur tableur NOM m s 0.05 0.00 0.05 0.00 +tablier tablier NOM m s 4.98 30.34 4.13 27.16 +tabliers tablier NOM m p 4.98 30.34 0.86 3.18 +tabloïd tabloïd NOM m s 0.45 0.00 0.17 0.00 +tabloïde tabloïde NOM s 0.11 0.07 0.04 0.07 +tabloïdes tabloïde NOM p 0.11 0.07 0.07 0.00 +tabloïds tabloïd NOM m p 0.45 0.00 0.27 0.00 +tablons tabler VER 0.95 1.62 0.02 0.00 imp:pre:1p;ind:pre:1p; +tablé tabler VER m s 0.95 1.62 0.00 0.07 par:pas; +tablée tablée NOM f s 0.02 1.49 0.02 1.15 +tablées tablée NOM f p 0.02 1.49 0.00 0.34 +tabor tabor NOM m s 0.00 1.15 0.00 0.07 +taborites taborite NOM m p 0.00 0.07 0.00 0.07 +tabors tabor NOM m p 0.00 1.15 0.00 1.08 +tabou tabou ADJ m s 1.11 1.35 0.78 0.95 +taboue tabou ADJ f s 1.11 1.35 0.11 0.07 +taboues tabou ADJ f p 1.11 1.35 0.01 0.00 +taboulé taboulé NOM m s 0.18 0.00 0.18 0.00 +tabouret tabouret NOM m s 3.19 18.38 2.79 15.47 +tabourets tabouret NOM m p 3.19 18.38 0.41 2.91 +tabous tabou NOM m p 1.18 3.11 0.64 1.42 +tabès tabès NOM m 0.00 0.07 0.00 0.07 +tabula tabuler VER 0.04 0.00 0.04 0.00 ind:pas:3s; +tabulaire tabulaire ADJ f s 0.00 0.20 0.00 0.20 +tabulateur tabulateur NOM m s 0.01 0.07 0.01 0.07 +tabulations tabulation NOM f p 0.01 0.00 0.01 0.00 +tac tac NOM m s 3.21 4.66 3.16 4.59 +tacatac tacatac ONO 0.00 0.07 0.00 0.07 +tacatacatac tacatacatac ONO 0.00 0.07 0.00 0.07 +tacauds tacaud NOM m p 0.00 0.07 0.00 0.07 +tachaient tacher VER 6.53 16.49 0.00 0.27 ind:imp:3p; +tachait tacher VER 6.53 16.49 0.00 0.88 ind:imp:3s; +tachant tacher VER 6.53 16.49 0.00 0.41 par:pre; +tache tache NOM f s 21.04 71.28 12.61 33.92 +tachent tacher VER 6.53 16.49 0.05 0.07 ind:pre:3p; +tacher tacher VER 6.53 16.49 1.10 1.01 inf; +tachera tacher VER 6.53 16.49 0.16 0.07 ind:fut:3s; +tacherai tacher VER 6.53 16.49 0.03 0.14 ind:fut:1s; +tacherais tacher VER 6.53 16.49 0.00 0.07 cnd:pre:2s; +tacherait tacher VER 6.53 16.49 0.10 0.07 cnd:pre:3s; +taches tache NOM f p 21.04 71.28 8.44 37.36 +tachetaient tacheter VER 0.29 3.11 0.00 0.07 ind:imp:3p; +tachetant tacheter VER 0.29 3.11 0.00 0.07 par:pre; +tacheter tacheter VER 0.29 3.11 0.00 0.07 inf; +tacheté tacheter VER m s 0.29 3.11 0.16 0.81 par:pas; +tachetée tacheter VER f s 0.29 3.11 0.10 1.08 par:pas; +tachetées tacheter VER f p 0.29 3.11 0.02 0.54 par:pas; +tachetures tacheture NOM f p 0.00 0.07 0.00 0.07 +tachetés tacheter VER m p 0.29 3.11 0.01 0.47 par:pas; +tachez tacher VER 6.53 16.49 0.19 0.07 imp:pre:2p;ind:pre:2p; +tachiste tachiste ADJ f s 0.00 0.07 0.00 0.07 +tachons tacher VER 6.53 16.49 0.04 0.00 imp:pre:1p; +taché tacher VER m s 6.53 16.49 1.70 4.32 par:pas; +tachée tacher VER f s 6.53 16.49 1.05 3.92 par:pas; +tachées tacher VER f p 6.53 16.49 0.69 1.42 par:pas; +tachéomètre tachéomètre NOM m s 0.02 0.00 0.02 0.00 +tachés tacher VER m p 6.53 16.49 0.39 2.36 par:pas; +tachyarythmie tachyarythmie NOM f s 0.04 0.00 0.04 0.00 +tachycarde tachycarder VER 0.53 0.07 0.53 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tachycardie tachycardie NOM f s 0.82 0.61 0.82 0.47 +tachycardies tachycardie NOM f p 0.82 0.61 0.00 0.14 +tachymètre tachymètre NOM m s 0.00 0.14 0.00 0.14 +tachyon tachyon NOM m s 0.24 0.00 0.07 0.00 +tachyons tachyon NOM m p 0.24 0.00 0.16 0.00 +tacite tacite ADJ s 0.58 4.66 0.57 4.26 +tacitement tacitement ADV 0.01 1.62 0.01 1.62 +tacites tacite ADJ p 0.58 4.66 0.01 0.41 +taciturne taciturne ADJ s 1.03 6.55 0.93 5.41 +taciturnes taciturne ADJ p 1.03 6.55 0.10 1.15 +taciturnité taciturnité NOM f s 0.00 0.20 0.00 0.20 +tacle tacle NOM m s 0.38 0.07 0.38 0.07 +tacler tacler VER 0.04 0.00 0.04 0.00 inf; +taco taco NOM m s 2.00 0.27 0.99 0.00 +tacon tacon NOM m s 0.00 0.14 0.00 0.14 +taconnet taconnet NOM m s 0.00 0.34 0.00 0.34 +tacos taco NOM m p 2.00 0.27 1.01 0.27 +tacot tacot NOM m s 1.31 0.74 1.25 0.74 +tacots tacot NOM m p 1.31 0.74 0.06 0.00 +tacs tac NOM m p 3.21 4.66 0.05 0.07 +tact tact NOM m s 2.68 4.80 2.68 4.80 +tacticien tacticien NOM m s 0.36 0.41 0.25 0.41 +tacticienne tacticien NOM f s 0.36 0.41 0.10 0.00 +tacticiens tacticien NOM m p 0.36 0.41 0.01 0.00 +tactile tactile ADJ s 0.21 0.88 0.14 0.61 +tactilement tactilement ADV 0.00 0.14 0.00 0.14 +tactiles tactile ADJ p 0.21 0.88 0.07 0.27 +tactique tactique NOM f s 5.31 6.69 4.46 6.42 +tactiquement tactiquement ADV 0.25 0.07 0.25 0.07 +tactiques tactique NOM f p 5.31 6.69 0.85 0.27 +tadjik tadjik NOM m s 0.00 0.14 0.00 0.14 +tadorne tadorne NOM m s 0.00 0.41 0.00 0.20 +tadornes tadorne NOM m p 0.00 0.41 0.00 0.20 +taenia taenia NOM m s 0.00 0.68 0.00 0.68 +taf taf NOM m s 1.05 0.54 1.04 0.54 +tafanard tafanard NOM m s 0.00 0.20 0.00 0.20 +taffe taffe NOM f s 2.06 0.14 2.02 0.14 +taffes taffe NOM f p 2.06 0.14 0.03 0.00 +taffetas taffetas NOM m 0.17 1.76 0.17 1.76 +tafia tafia NOM m s 0.01 0.07 0.01 0.07 +tafs taf NOM m p 1.05 0.54 0.01 0.00 +tag tag NOM m s 0.79 0.41 0.79 0.41 +tagada tagada ONO 0.99 0.34 0.99 0.34 +tagalog tagalog NOM m s 0.04 0.14 0.04 0.14 +tagger tagger NOM m s 0.13 0.00 0.13 0.00 +tagliatelle tagliatelle NOM f s 0.38 0.47 0.01 0.34 +tagliatelles tagliatelle NOM f p 0.38 0.47 0.37 0.14 +taguais taguer VER 0.28 0.00 0.01 0.00 ind:imp:2s; +tague taguer VER 0.28 0.00 0.06 0.00 imp:pre:2s;ind:pre:3s; +taguer taguer VER 0.28 0.00 0.21 0.00 inf; +tagueur tagueur NOM m s 0.06 0.00 0.03 0.00 +tagueurs tagueur NOM m p 0.06 0.00 0.04 0.00 +tahitien tahitien NOM m s 0.06 0.34 0.04 0.00 +tahitienne tahitien ADJ f s 0.16 0.00 0.11 0.00 +tahitiennes tahitien NOM f p 0.06 0.34 0.02 0.20 +tahitiens tahitien NOM m p 0.06 0.34 0.00 0.07 +tai_chi tai_chi NOM m s 0.12 0.00 0.12 0.00 +taie taie NOM f s 0.51 2.57 0.35 1.96 +taies taie NOM f p 0.51 2.57 0.16 0.61 +taifas taifa NOM m p 0.00 0.07 0.00 0.07 +tailla tailler VER 13.28 37.64 0.01 1.01 ind:pas:3s; +taillable taillable ADJ m s 0.00 0.14 0.00 0.07 +taillables taillable ADJ p 0.00 0.14 0.00 0.07 +taillada taillader VER 1.57 1.82 0.00 0.07 ind:pas:3s; +tailladait taillader VER 1.57 1.82 0.03 0.20 ind:imp:3s; +tailladant taillader VER 1.57 1.82 0.12 0.20 par:pre; +taillade taillade NOM f s 0.30 0.00 0.30 0.00 +tailladent taillader VER 1.57 1.82 0.01 0.07 ind:pre:3p; +taillader taillader VER 1.57 1.82 0.47 0.34 inf; +tailladez taillader VER 1.57 1.82 0.00 0.07 imp:pre:2p; +tailladé taillader VER m s 1.57 1.82 0.48 0.34 par:pas; +tailladée taillader VER f s 1.57 1.82 0.25 0.14 par:pas; +tailladées taillader VER f p 1.57 1.82 0.00 0.14 par:pas; +tailladés taillader VER m p 1.57 1.82 0.06 0.27 par:pas; +taillaient tailler VER 13.28 37.64 0.03 0.68 ind:imp:3p; +taillais tailler VER 13.28 37.64 0.19 0.41 ind:imp:1s;ind:imp:2s; +taillait tailler VER 13.28 37.64 0.25 3.11 ind:imp:3s; +taillandier taillandier NOM m s 0.00 0.07 0.00 0.07 +taillant tailler VER 13.28 37.64 0.14 1.42 par:pre; +taillants taillant NOM m p 0.00 0.07 0.00 0.07 +taille_crayon taille_crayon NOM m s 0.07 0.68 0.04 0.54 +taille_crayon taille_crayon NOM m p 0.07 0.68 0.03 0.14 +taille_douce taille_douce NOM f s 0.00 0.20 0.00 0.14 +taille_haie taille_haie NOM m s 0.07 0.07 0.06 0.00 +taille_haie taille_haie NOM m p 0.07 0.07 0.01 0.07 +taille taille NOM f s 43.17 76.49 41.32 72.84 +taillent tailler VER 13.28 37.64 0.56 1.15 ind:pre:3p; +tailler tailler VER 13.28 37.64 2.93 6.89 inf; +taillera tailler VER 13.28 37.64 0.06 0.14 ind:fut:3s; +taillerai tailler VER 13.28 37.64 0.18 0.27 ind:fut:1s; +taillerais tailler VER 13.28 37.64 0.30 0.00 cnd:pre:1s;cnd:pre:2s; +taillerait tailler VER 13.28 37.64 0.02 0.27 cnd:pre:3s; +taillerez tailler VER 13.28 37.64 0.00 0.07 ind:fut:2p; +tailleront tailler VER 13.28 37.64 0.04 0.00 ind:fut:3p; +taille_douce taille_douce NOM f p 0.00 0.20 0.00 0.07 +tailles taille NOM f p 43.17 76.49 1.85 3.65 +tailleur_pantalon tailleur_pantalon NOM m s 0.01 0.07 0.01 0.07 +tailleur tailleur NOM m s 8.03 25.20 7.00 22.64 +tailleurs tailleur NOM m p 8.03 25.20 1.03 2.57 +tailleuse tailleuse NOM f s 2.29 0.07 2.29 0.07 +taillez tailler VER 13.28 37.64 0.27 0.27 imp:pre:2p;ind:pre:2p; +taillis taillis NOM m 0.34 15.00 0.34 15.00 +tailloir tailloir NOM m s 0.00 0.20 0.00 0.14 +tailloirs tailloir NOM m p 0.00 0.20 0.00 0.07 +taillons taillon NOM m p 0.12 0.14 0.12 0.14 +taillèrent tailler VER 13.28 37.64 0.01 0.07 ind:pas:3p; +taillé tailler VER m s 13.28 37.64 2.38 7.70 par:pas; +taillée tailler VER f s 13.28 37.64 0.48 4.32 par:pas; +taillées tailler VER f p 13.28 37.64 0.28 2.30 par:pas; +taillés tailler VER m p 13.28 37.64 0.27 3.85 par:pas; +tain tain NOM m s 0.83 1.55 0.83 1.55 +taira taire VER 154.47 139.80 0.22 0.74 ind:fut:3s; +tairai taire VER 154.47 139.80 1.74 0.34 ind:fut:1s; +tairaient taire VER 154.47 139.80 0.01 0.07 cnd:pre:3p; +tairais taire VER 154.47 139.80 0.34 0.14 cnd:pre:1s;cnd:pre:2s; +tairait taire VER 154.47 139.80 0.01 0.88 cnd:pre:3s; +tairas taire VER 154.47 139.80 0.29 0.00 ind:fut:2s; +taire taire VER 154.47 139.80 31.81 31.69 inf; +tairez taire VER 154.47 139.80 0.06 0.07 ind:fut:2p; +tairions taire VER 154.47 139.80 0.00 0.14 cnd:pre:1p; +tairons taire VER 154.47 139.80 0.06 0.20 ind:fut:1p; +tairont taire VER 154.47 139.80 0.51 0.14 ind:fut:3p; +tais taire VER 154.47 139.80 77.46 17.43 imp:pre:2s;ind:pre:1s;ind:pre:2s; +taisaient taire VER 154.47 139.80 0.30 4.53 ind:imp:3p; +taisais taire VER 154.47 139.80 0.53 2.50 ind:imp:1s;ind:imp:2s; +taisait taire VER 154.47 139.80 0.63 12.36 ind:imp:3s; +taisant taire VER 154.47 139.80 0.24 2.03 par:pre; +taise taire VER 154.47 139.80 1.51 1.49 sub:pre:1s;sub:pre:3s; +taisent taire VER 154.47 139.80 1.28 5.00 ind:pre:3p; +taises taire VER 154.47 139.80 0.16 0.14 sub:pre:2s; +taiseux taiseux ADJ m s 0.02 0.14 0.02 0.14 +taisez taire VER 154.47 139.80 24.30 4.39 imp:pre:2p;ind:pre:2p; +taisiez taire VER 154.47 139.80 0.10 0.07 ind:imp:2p; +taisions taire VER 154.47 139.80 0.02 1.08 ind:imp:1p; +taisons taire VER 154.47 139.80 0.23 1.82 imp:pre:1p;ind:pre:1p; +tait taire VER 154.47 139.80 7.42 11.62 ind:pre:3s; +tajine tajine NOM m s 0.00 0.41 0.00 0.20 +tajines tajine NOM m p 0.00 0.41 0.00 0.20 +take_off take_off NOM m 0.08 0.00 0.08 0.00 +tala tala NOM m s 0.34 0.27 0.34 0.07 +talait taler VER 0.12 0.54 0.00 0.14 ind:imp:3s; +talas tala NOM m p 0.34 0.27 0.00 0.20 +talavera_de_la_reina talavera_de_la_reina NOM s 0.00 0.07 0.00 0.07 +talbin talbin NOM m s 0.05 1.49 0.01 0.47 +talbins talbin NOM m p 0.05 1.49 0.04 1.01 +talc talc NOM m s 1.40 1.49 1.40 1.49 +tale taler VER 0.12 0.54 0.02 0.14 ind:pre:3s; +talent talent NOM m s 44.17 38.11 33.28 31.08 +talents talent NOM m p 44.17 38.11 10.89 7.03 +talentueuse talentueux ADJ f s 4.39 0.95 0.93 0.14 +talentueusement talentueusement ADV 0.00 0.07 0.00 0.07 +talentueuses talentueux ADJ f p 4.39 0.95 0.12 0.00 +talentueux talentueux ADJ m 4.39 0.95 3.35 0.81 +taler taler VER 0.12 0.54 0.00 0.07 inf; +taleth taleth NOM m s 0.03 0.27 0.03 0.20 +taleths taleth NOM m p 0.03 0.27 0.00 0.07 +taliban taliban NOM m s 1.81 0.00 0.23 0.00 +talibans taliban NOM m p 1.81 0.00 1.58 0.00 +talion talion NOM m s 0.05 3.18 0.05 3.18 +talisman talisman NOM m s 1.79 2.97 1.38 2.64 +talismans talisman NOM m p 1.79 2.97 0.41 0.34 +talkie_walkie talkie_walkie NOM m s 1.37 0.20 0.89 0.07 +talkie talkie NOM m s 0.32 0.00 0.17 0.00 +talkie_walkie talkie_walkie NOM m p 1.37 0.20 0.48 0.14 +talkies talkie NOM m p 0.32 0.00 0.16 0.00 +talle talle NOM f s 0.00 0.07 0.00 0.07 +taller taller VER 0.02 0.00 0.01 0.00 inf; +tallipot tallipot NOM m s 0.00 0.07 0.00 0.07 +tallons taller VER 0.02 0.00 0.01 0.00 ind:pre:1p; +talmouse talmouse NOM f s 0.00 0.07 0.00 0.07 +talmudique talmudique ADJ s 0.94 0.07 0.94 0.00 +talmudiques talmudique ADJ p 0.94 0.07 0.00 0.07 +talmudiste talmudiste NOM s 0.14 0.34 0.14 0.27 +talmudistes talmudiste NOM p 0.14 0.34 0.00 0.07 +talochaient talocher VER 0.01 0.27 0.00 0.07 ind:imp:3p; +talochait talocher VER 0.01 0.27 0.00 0.07 ind:imp:3s; +taloche taloche NOM f s 0.25 1.22 0.14 0.47 +talocher talocher VER 0.01 0.27 0.01 0.07 inf; +taloches taloche NOM f p 0.25 1.22 0.11 0.74 +talon talon NOM m s 11.72 49.26 4.03 12.36 +talonna talonner VER 0.37 2.57 0.00 0.14 ind:pas:3s; +talonnades talonnade NOM f p 0.00 0.07 0.00 0.07 +talonnait talonner VER 0.37 2.57 0.01 0.47 ind:imp:3s; +talonnant talonner VER 0.37 2.57 0.01 0.27 par:pre; +talonne talonner VER 0.37 2.57 0.20 0.41 ind:pre:1s;ind:pre:3s; +talonnent talonner VER 0.37 2.57 0.05 0.07 ind:pre:3p; +talonner talonner VER 0.37 2.57 0.06 0.20 inf; +talonnette talonnette NOM f s 0.06 0.74 0.00 0.27 +talonnettes talonnette NOM f p 0.06 0.74 0.06 0.47 +talonneur talonneur NOM m s 0.00 0.07 0.00 0.07 +talonnons talonner VER 0.37 2.57 0.01 0.00 ind:pre:1p; +talonné talonner VER m s 0.37 2.57 0.03 0.61 par:pas; +talonnée talonner VER f s 0.37 2.57 0.01 0.20 par:pas; +talonnés talonner VER m p 0.37 2.57 0.00 0.20 par:pas; +talons talon NOM m p 11.72 49.26 7.70 36.89 +talqua talquer VER 0.04 0.54 0.00 0.07 ind:pas:3s; +talquer talquer VER 0.04 0.54 0.02 0.20 inf; +talquât talquer VER 0.04 0.54 0.00 0.07 sub:imp:3s; +talqué talquer VER m s 0.04 0.54 0.01 0.14 par:pas; +talquées talquer VER f p 0.04 0.54 0.00 0.07 par:pas; +talée taler VER f s 0.12 0.54 0.00 0.07 par:pas; +talées talé ADJ f p 0.14 0.27 0.00 0.14 +talures talure NOM f p 0.00 0.07 0.00 0.07 +talés talé ADJ m p 0.14 0.27 0.14 0.07 +talus talus NOM m 0.69 19.53 0.69 19.53 +tam_tam tam_tam NOM m s 1.06 3.45 0.37 2.77 +tam_tam tam_tam NOM m p 1.06 3.45 0.69 0.68 +tamagotchi tamagotchi NOM m s 0.08 0.00 0.08 0.00 +tamanoir tamanoir NOM m s 0.00 0.07 0.00 0.07 +tamarin tamarin NOM m s 0.14 0.07 0.14 0.07 +tamarinier tamarinier NOM m s 0.01 0.14 0.01 0.00 +tamariniers tamarinier NOM m p 0.01 0.14 0.00 0.14 +tamaris tamaris NOM m 0.01 0.61 0.01 0.61 +tambouille tambouille NOM f s 0.71 1.96 0.71 1.69 +tambouilles tambouille NOM f p 0.71 1.96 0.00 0.27 +tambour_major tambour_major NOM m s 0.26 0.74 0.26 0.74 +tambour tambour NOM m s 10.20 19.32 7.80 10.54 +tambourin tambourin NOM m s 0.56 1.08 0.49 0.47 +tambourina tambouriner VER 0.66 5.54 0.00 0.47 ind:pas:3s; +tambourinade tambourinade NOM f s 0.00 0.07 0.00 0.07 +tambourinaient tambouriner VER 0.66 5.54 0.00 0.20 ind:imp:3p; +tambourinaire tambourinaire NOM m s 0.00 0.27 0.00 0.07 +tambourinaires tambourinaire NOM m p 0.00 0.27 0.00 0.20 +tambourinais tambouriner VER 0.66 5.54 0.01 0.07 ind:imp:1s; +tambourinait tambouriner VER 0.66 5.54 0.02 1.08 ind:imp:3s; +tambourinant tambouriner VER 0.66 5.54 0.04 0.74 par:pre; +tambourine tambouriner VER 0.66 5.54 0.08 1.08 ind:pre:1s;ind:pre:3s; +tambourinement tambourinement NOM m s 0.00 0.95 0.00 0.95 +tambourinent tambouriner VER 0.66 5.54 0.28 0.07 ind:pre:3p; +tambouriner tambouriner VER 0.66 5.54 0.09 1.42 inf; +tambourineur tambourineur NOM m s 0.00 0.07 0.00 0.07 +tambourins tambourin NOM m p 0.56 1.08 0.07 0.61 +tambourinèrent tambouriner VER 0.66 5.54 0.00 0.07 ind:pas:3p; +tambouriné tambouriner VER m s 0.66 5.54 0.01 0.27 par:pas; +tambourinée tambouriner VER f s 0.66 5.54 0.14 0.07 par:pas; +tambours tambour NOM m p 10.20 19.32 2.40 8.78 +tamia tamia NOM m s 0.04 0.00 0.04 0.00 +tamis tamis NOM m 0.53 1.82 0.53 1.82 +tamisage tamisage NOM m s 0.01 0.00 0.01 0.00 +tamisaient tamiser VER 0.38 2.30 0.00 0.14 ind:imp:3p; +tamisais tamiser VER 0.38 2.30 0.00 0.07 ind:imp:1s; +tamisait tamiser VER 0.38 2.30 0.00 0.20 ind:imp:3s; +tamisant tamiser VER 0.38 2.30 0.00 0.20 par:pre; +tamise tamiser VER 0.38 2.30 0.16 0.07 imp:pre:2s;ind:pre:3s; +tamisent tamiser VER 0.38 2.30 0.00 0.07 ind:pre:3p; +tamiser tamiser VER 0.38 2.30 0.17 0.27 inf; +tamiseur tamiseur NOM m s 0.14 0.00 0.14 0.00 +tamisez tamiser VER 0.38 2.30 0.02 0.00 imp:pre:2p; +tamisé tamisé ADJ m s 0.76 1.96 0.02 0.34 +tamisée tamisé ADJ f s 0.76 1.96 0.68 1.01 +tamisées tamisé ADJ f p 0.76 1.96 0.07 0.54 +tamisés tamiser VER m p 0.38 2.30 0.00 0.14 par:pas; +tamoul tamoul NOM m s 0.00 0.14 0.00 0.14 +tamouré tamouré NOM m s 0.02 0.07 0.02 0.07 +tampax tampax NOM m 0.29 0.27 0.29 0.27 +tampon_buvard tampon_buvard NOM m s 0.00 0.20 0.00 0.20 +tampon tampon NOM m s 4.28 8.72 2.96 5.14 +tamponna tamponner VER 1.66 6.35 0.00 0.61 ind:pas:3s; +tamponnade tamponnade NOM f s 0.17 0.00 0.17 0.00 +tamponnage tamponnage NOM m s 0.02 0.07 0.02 0.00 +tamponnages tamponnage NOM m p 0.02 0.07 0.00 0.07 +tamponnai tamponner VER 1.66 6.35 0.00 0.07 ind:pas:1s; +tamponnaient tamponner VER 1.66 6.35 0.00 0.20 ind:imp:3p; +tamponnais tamponner VER 1.66 6.35 0.11 0.07 ind:imp:1s;ind:imp:2s; +tamponnait tamponner VER 1.66 6.35 0.01 0.95 ind:imp:3s; +tamponnant tamponner VER 1.66 6.35 0.00 0.41 par:pre; +tamponne tamponner VER 1.66 6.35 0.52 2.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tamponnement tamponnement NOM m s 0.00 0.20 0.00 0.20 +tamponnent tamponner VER 1.66 6.35 0.03 0.14 ind:pre:3p; +tamponner tamponner VER 1.66 6.35 0.27 0.81 inf; +tamponnera tamponner VER 1.66 6.35 0.01 0.00 ind:fut:3s; +tamponneur tamponneur ADJ m s 0.26 0.54 0.02 0.00 +tamponneuse tamponneur ADJ f s 0.26 0.54 0.10 0.00 +tamponneuses tamponneur ADJ f p 0.26 0.54 0.14 0.54 +tamponnez tamponner VER 1.66 6.35 0.15 0.07 imp:pre:2p;ind:pre:2p; +tamponnoir tamponnoir NOM m s 0.00 0.14 0.00 0.07 +tamponnoirs tamponnoir NOM m p 0.00 0.14 0.00 0.07 +tamponné tamponner VER m s 1.66 6.35 0.40 0.41 par:pas; +tamponnée tamponner VER f s 1.66 6.35 0.15 0.00 par:pas; +tamponnés tamponner VER m p 1.66 6.35 0.02 0.14 par:pas; +tampons tampon NOM m p 4.28 8.72 1.32 3.58 +tamtam tamtam NOM m s 0.13 0.07 0.13 0.07 +tan_sad tan_sad NOM m s 0.00 0.20 0.00 0.20 +tan tan NOM m s 0.66 0.20 0.50 0.20 +tanaisie tanaisie NOM f s 0.01 0.00 0.01 0.00 +tance tancer VER 0.03 1.01 0.00 0.14 ind:pre:3s; +tancer tancer VER 0.03 1.01 0.01 0.47 inf; +tanche tanche NOM f s 0.06 0.74 0.04 0.41 +tanches tanche NOM f p 0.06 0.74 0.01 0.34 +tancé tancer VER m s 0.03 1.01 0.00 0.07 par:pas; +tancée tancer VER f s 0.03 1.01 0.00 0.07 par:pas; +tancés tancer VER m p 0.03 1.01 0.01 0.07 par:pas; +tandem tandem NOM m s 0.60 2.03 0.60 1.82 +tandems tandem NOM m p 0.60 2.03 0.00 0.20 +tandis_qu tandis_qu CON 0.01 0.07 0.01 0.07 +tandis_que tandis_que CON 15.04 136.15 15.04 136.15 +tandoori tandoori NOM m s 0.06 0.00 0.06 0.00 +tangage tangage NOM m s 0.24 1.08 0.24 1.08 +tangara tangara NOM m s 0.08 0.00 0.06 0.00 +tangaras tangara NOM m p 0.08 0.00 0.02 0.00 +tangence tangence NOM f s 0.00 0.14 0.00 0.14 +tangent tangent ADJ m s 0.03 0.61 0.03 0.07 +tangente tangente NOM f s 0.35 1.15 0.35 0.88 +tangentes tangente NOM f p 0.35 1.15 0.00 0.27 +tangentiel tangentiel ADJ m s 0.00 0.07 0.00 0.07 +tangents tangent ADJ m p 0.03 0.61 0.00 0.14 +tangerine tangerine NOM f s 0.00 0.14 0.00 0.14 +tangibilité tangibilité NOM f s 0.01 0.00 0.01 0.00 +tangible tangible ADJ s 1.53 2.09 0.90 1.55 +tangibles tangible ADJ p 1.53 2.09 0.63 0.54 +tango tango NOM m s 5.74 6.28 5.58 4.53 +tangon tangon NOM m s 0.02 0.00 0.02 0.00 +tangos tango NOM m p 5.74 6.28 0.16 1.76 +tangua tanguer VER 0.69 7.91 0.00 0.74 ind:pas:3s; +tanguaient tanguer VER 0.69 7.91 0.00 0.20 ind:imp:3p; +tanguait tanguer VER 0.69 7.91 0.02 2.64 ind:imp:3s; +tanguant tanguer VER 0.69 7.91 0.01 0.54 par:pre; +tangue tanguer VER 0.69 7.91 0.38 1.69 ind:pre:1s;ind:pre:3s; +tanguent tanguer VER 0.69 7.91 0.11 0.27 ind:pre:3p; +tanguer tanguer VER 0.69 7.91 0.17 1.55 inf; +tangueraient tanguer VER 0.69 7.91 0.00 0.07 cnd:pre:3p; +tangérois tangérois ADJ m s 0.00 0.07 0.00 0.07 +tangué tanguer VER m s 0.69 7.91 0.00 0.20 par:pas; +tanin tanin NOM m s 0.05 0.34 0.05 0.34 +tanière tanière NOM f s 2.06 4.80 2.00 3.92 +tanières tanière NOM f p 2.06 4.80 0.06 0.88 +tank tank NOM m s 8.41 4.86 3.80 1.89 +tanka tanka NOM m s 0.00 0.54 0.00 0.54 +tanker tanker NOM m s 0.78 0.07 0.49 0.07 +tankers tanker NOM m p 0.78 0.07 0.29 0.00 +tankiste tankiste NOM s 0.00 0.27 0.00 0.07 +tankistes tankiste NOM p 0.00 0.27 0.00 0.20 +tanks tank NOM m p 8.41 4.86 4.62 2.97 +tanna tanner VER 2.71 2.70 0.45 0.00 ind:pas:3s; +tannage tannage NOM m s 0.01 0.00 0.01 0.00 +tannaient tanner VER 2.71 2.70 0.00 0.07 ind:imp:3p; +tannait tanner VER 2.71 2.70 0.02 0.27 ind:imp:3s; +tannant tanner VER 2.71 2.70 0.01 0.00 par:pre; +tannante tannant ADJ f s 0.00 0.27 0.00 0.07 +tannantes tannant ADJ f p 0.00 0.27 0.00 0.07 +tanne tanner VER 2.71 2.70 0.44 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tannent tanner VER 2.71 2.70 0.06 0.14 ind:pre:3p;sub:pre:3p; +tanner tanner VER 2.71 2.70 0.73 0.41 inf; +tannerai tanner VER 2.71 2.70 0.03 0.07 ind:fut:1s; +tannerie tannerie NOM f s 0.04 0.34 0.04 0.34 +tannes tanner VER 2.71 2.70 0.04 0.00 ind:pre:2s; +tanneur tanneur NOM m s 0.31 1.15 0.31 0.27 +tanneurs tanneur NOM m p 0.31 1.15 0.00 0.88 +tannin tannin NOM m s 0.01 0.00 0.01 0.00 +tanné tanner VER m s 2.71 2.70 0.70 0.74 par:pas; +tannée tanner VER f s 2.71 2.70 0.17 0.61 par:pas; +tannées tannée NOM f p 0.18 0.27 0.01 0.00 +tannés tanner VER m p 2.71 2.70 0.04 0.20 par:pas; +tanrec tanrec NOM m s 0.00 0.07 0.00 0.07 +tans tan NOM m p 0.66 0.20 0.13 0.00 +tansad tansad NOM m s 0.00 0.07 0.00 0.07 +tant tant ADV 380.34 436.42 380.34 436.42 +tantôt tantôt ADV 5.62 66.76 5.62 66.76 +tante tante NOM f s 76.62 118.38 70.69 110.95 +tantes tante NOM f p 76.62 118.38 5.93 7.43 +tançai tancer VER 0.03 1.01 0.00 0.07 ind:pas:1s; +tançait tancer VER 0.03 1.01 0.00 0.07 ind:imp:3s; +tançant tancer VER 0.03 1.01 0.00 0.07 par:pre; +tantine tantine NOM f s 1.08 0.20 1.08 0.14 +tantines tantine NOM f p 1.08 0.20 0.00 0.07 +tantinet tantinet NOM m s 1.02 1.55 1.02 1.55 +tantièmes tantième NOM m p 0.00 0.07 0.00 0.07 +tantouse tantouse NOM f s 0.69 0.74 0.63 0.14 +tantouses tantouse NOM f p 0.69 0.74 0.06 0.61 +tantouze tantouze NOM f s 1.14 0.27 0.85 0.14 +tantouzes tantouze NOM f p 1.14 0.27 0.28 0.14 +tantra tantra NOM m s 0.11 0.00 0.11 0.00 +tantrique tantrique ADJ m s 0.19 0.14 0.18 0.07 +tantriques tantrique ADJ m p 0.19 0.14 0.01 0.07 +tantrisme tantrisme NOM m s 0.17 0.34 0.17 0.34 +tao tao NOM m s 0.05 0.61 0.05 0.61 +taoïsme taoïsme NOM m s 0.06 0.07 0.06 0.07 +taoïste taoïste ADJ s 0.03 0.47 0.03 0.34 +taoïstes taoïste NOM p 0.03 0.61 0.02 0.20 +taon taon NOM m s 0.73 0.61 0.01 0.14 +taons taon NOM m p 0.73 0.61 0.72 0.47 +tap tap ONO 0.53 2.50 0.53 2.50 +tapa taper VER 61.06 67.91 0.03 4.93 ind:pas:3s;;ind:pas:3s; +tapage tapage NOM m s 1.53 6.08 1.52 6.01 +tapageait tapager VER 0.00 0.14 0.00 0.14 ind:imp:3s; +tapages tapage NOM m p 1.53 6.08 0.01 0.07 +tapageur tapageur ADJ m s 0.23 2.97 0.10 1.28 +tapageurs tapageur NOM m p 0.11 0.07 0.05 0.07 +tapageuse tapageur ADJ f s 0.23 2.97 0.10 1.01 +tapageuses tapageur ADJ f p 0.23 2.97 0.01 0.20 +tapai taper VER 61.06 67.91 0.00 0.14 ind:pas:1s; +tapaient taper VER 61.06 67.91 0.32 2.57 ind:imp:3p; +tapais taper VER 61.06 67.91 0.68 1.08 ind:imp:1s;ind:imp:2s; +tapait taper VER 61.06 67.91 1.78 9.05 ind:imp:3s; +tapant taper VER 61.06 67.91 0.72 5.81 par:pre; +tapante tapant ADJ f s 0.57 0.68 0.02 0.00 +tapantes tapant ADJ f p 0.57 0.68 0.49 0.27 +tapas tapa NOM m p 0.15 0.00 0.15 0.00 +tape_cul tape_cul NOM m s 0.04 0.41 0.04 0.41 +tape_à_l_oeil tape_à_l_oeil ADJ 0.00 0.41 0.00 0.41 +tape taper VER 61.06 67.91 18.45 11.89 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tapecul tapecul NOM m s 0.00 0.07 0.00 0.07 +tapement tapement NOM m s 0.01 0.14 0.01 0.00 +tapements tapement NOM m p 0.01 0.14 0.00 0.14 +tapenade tapenade NOM f s 0.02 0.00 0.02 0.00 +tapent taper VER 61.06 67.91 1.60 1.76 ind:pre:3p; +taper taper VER 61.06 67.91 19.14 20.07 inf; +tapera taper VER 61.06 67.91 0.19 0.34 ind:fut:3s; +taperai taper VER 61.06 67.91 0.59 0.14 ind:fut:1s; +taperaient taper VER 61.06 67.91 0.01 0.07 cnd:pre:3p; +taperais taper VER 61.06 67.91 0.65 0.20 cnd:pre:1s;cnd:pre:2s; +taperait taper VER 61.06 67.91 0.07 0.34 cnd:pre:3s; +taperas taper VER 61.06 67.91 0.13 0.00 ind:fut:2s; +taperez taper VER 61.06 67.91 0.01 0.14 ind:fut:2p; +taperiez taper VER 61.06 67.91 0.01 0.00 cnd:pre:2p; +taperont taper VER 61.06 67.91 0.04 0.00 ind:fut:3p; +tapes taper VER 61.06 67.91 3.17 0.54 ind:pre:2s;sub:pre:2s; +tapette tapette NOM f s 7.16 1.15 4.77 0.61 +tapettes tapette NOM f p 7.16 1.15 2.39 0.54 +tapeur tapeur NOM m s 0.20 0.27 0.19 0.07 +tapeurs tapeur NOM m p 0.20 0.27 0.02 0.14 +tapeuses tapeur NOM f p 0.20 0.27 0.00 0.07 +tapez taper VER 61.06 67.91 2.83 0.14 imp:pre:2p;ind:pre:2p; +tapi tapir VER m s 0.92 11.82 0.19 4.39 par:pas; +tapie tapir VER f s 0.92 11.82 0.22 2.84 par:pas; +tapies tapir VER f p 0.92 11.82 0.02 0.61 par:pas; +tapiez taper VER 61.06 67.91 0.06 0.07 ind:imp:2p; +tapin tapin NOM m s 2.31 5.41 2.25 3.58 +tapinage tapinage NOM m s 0.16 0.00 0.16 0.00 +tapinaient tapiner VER 1.76 2.70 0.01 0.07 ind:imp:3p; +tapinais tapiner VER 1.76 2.70 0.02 0.14 ind:imp:1s;ind:imp:2s; +tapinait tapiner VER 1.76 2.70 0.09 0.47 ind:imp:3s; +tapinant tapiner VER 1.76 2.70 0.01 0.00 par:pre; +tapine tapiner VER 1.76 2.70 0.97 0.68 ind:pre:1s;ind:pre:3s; +tapinent tapiner VER 1.76 2.70 0.14 0.41 ind:pre:3p; +tapiner tapiner VER 1.76 2.70 0.39 0.68 inf; +tapinera tapiner VER 1.76 2.70 0.01 0.07 ind:fut:3s; +tapinerai tapiner VER 1.76 2.70 0.00 0.07 ind:fut:1s; +tapinerais tapiner VER 1.76 2.70 0.01 0.00 cnd:pre:1s; +tapines tapiner VER 1.76 2.70 0.11 0.00 ind:pre:2s; +tapineuse tapineur NOM f s 0.06 0.54 0.06 0.20 +tapineuses tapineuse NOM f p 0.02 0.00 0.02 0.00 +tapins tapin NOM m p 2.31 5.41 0.06 1.82 +tapiné tapiner VER m s 1.76 2.70 0.00 0.07 par:pas; +tapinée tapiner VER f s 1.76 2.70 0.00 0.07 par:pas; +tapioca tapioca NOM m s 0.33 1.69 0.33 1.69 +tapir tapir NOM m s 0.16 0.34 0.13 0.34 +tapira tapir VER 0.92 11.82 0.01 0.07 ind:fut:3s; +tapirs tapir NOM m p 0.16 0.34 0.02 0.00 +tapis_brosse tapis_brosse NOM m s 0.01 0.14 0.01 0.14 +tapis tapis NOM m 20.13 60.88 20.13 60.88 +tapissa tapisser VER 1.12 10.95 0.00 0.14 ind:pas:3s; +tapissaient tapisser VER 1.12 10.95 0.01 0.88 ind:imp:3p; +tapissais tapisser VER 1.12 10.95 0.00 0.07 ind:imp:1s; +tapissait tapisser VER 1.12 10.95 0.00 1.28 ind:imp:3s; +tapissant tapisser VER 1.12 10.95 0.01 0.27 par:pre; +tapisse tapisser VER 1.12 10.95 0.06 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tapissent tapir VER 0.92 11.82 0.10 0.00 sub:imp:3p; +tapisser tapisser VER 1.12 10.95 0.14 0.54 inf; +tapisserai tapisser VER 1.12 10.95 0.01 0.00 ind:fut:1s; +tapisserie tapisserie NOM f s 1.34 12.57 0.89 9.73 +tapisseries tapisserie NOM f p 1.34 12.57 0.45 2.84 +tapissier tapissier NOM m s 0.32 1.69 0.17 1.22 +tapissiers tapissier NOM m p 0.32 1.69 0.05 0.34 +tapissière tapissier NOM f s 0.32 1.69 0.10 0.14 +tapissé tapisser VER m s 1.12 10.95 0.33 1.82 par:pas; +tapissée tapisser VER f s 1.12 10.95 0.27 2.57 par:pas; +tapissées tapisser VER f p 1.12 10.95 0.01 0.81 par:pas; +tapissés tapisser VER m p 1.12 10.95 0.20 1.76 par:pas; +tapit tapir VER 0.92 11.82 0.06 0.54 ind:pre:3s;ind:pas:3s; +tapâmes taper VER 61.06 67.91 0.00 0.14 ind:pas:1p; +tapons taper VER 61.06 67.91 0.06 0.14 imp:pre:1p;ind:pre:1p; +tapota tapoter VER 1.16 16.55 0.11 3.18 ind:pas:3s; +tapotai tapoter VER 1.16 16.55 0.00 0.07 ind:pas:1s; +tapotaient tapoter VER 1.16 16.55 0.00 0.27 ind:imp:3p; +tapotais tapoter VER 1.16 16.55 0.00 0.07 ind:imp:1s; +tapotait tapoter VER 1.16 16.55 0.04 3.38 ind:imp:3s; +tapotant tapoter VER 1.16 16.55 0.04 3.31 par:pre; +tapote tapoter VER 1.16 16.55 0.36 3.11 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tapotement tapotement NOM m s 0.07 1.22 0.06 0.47 +tapotements tapotement NOM m p 0.07 1.22 0.01 0.74 +tapotent tapoter VER 1.16 16.55 0.01 0.47 ind:pre:3p; +tapoter tapoter VER 1.16 16.55 0.29 1.76 inf; +tapotez tapoter VER 1.16 16.55 0.20 0.00 imp:pre:2p;ind:pre:2p; +tapotis tapotis NOM m 0.00 0.07 0.00 0.07 +tapotons tapoter VER 1.16 16.55 0.00 0.07 imp:pre:1p; +tapotèrent tapoter VER 1.16 16.55 0.00 0.20 ind:pas:3p; +tapoté tapoter VER m s 1.16 16.55 0.11 0.68 par:pas; +tapèrent taper VER 61.06 67.91 0.00 0.47 ind:pas:3p; +tapé taper VER m s 61.06 67.91 9.43 6.55 par:pas; +tapée taper VER f s 61.06 67.91 0.92 0.81 par:pas; +tapées tapé ADJ f p 0.37 0.61 0.16 0.14 +tapés tapé ADJ m p 0.37 0.61 0.14 0.07 +taquet taquet NOM m s 0.14 0.27 0.10 0.27 +taquets taquet NOM m p 0.14 0.27 0.04 0.00 +taquin taquin ADJ m s 0.46 1.35 0.34 0.88 +taquina taquiner VER 5.24 5.74 0.00 0.34 ind:pas:3s; +taquinaient taquiner VER 5.24 5.74 0.04 0.20 ind:imp:3p; +taquinais taquiner VER 5.24 5.74 0.28 0.20 ind:imp:1s;ind:imp:2s; +taquinait taquiner VER 5.24 5.74 0.27 1.15 ind:imp:3s; +taquinant taquiner VER 5.24 5.74 0.01 0.20 par:pre; +taquine taquiner VER 5.24 5.74 1.91 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +taquinent taquiner VER 5.24 5.74 0.06 0.27 ind:pre:3p; +taquiner taquiner VER 5.24 5.74 1.48 2.03 inf; +taquinerait taquiner VER 5.24 5.74 0.21 0.00 cnd:pre:3s; +taquinerie taquinerie NOM f s 0.27 0.74 0.03 0.20 +taquineries taquinerie NOM f p 0.27 0.74 0.23 0.54 +taquines taquiner VER 5.24 5.74 0.29 0.00 ind:pre:2s; +taquinez taquiner VER 5.24 5.74 0.16 0.00 imp:pre:2p;ind:pre:2p; +taquins taquin ADJ m p 0.46 1.35 0.02 0.07 +taquiné taquiner VER m s 5.24 5.74 0.41 0.27 par:pas; +taquinée taquiner VER f s 5.24 5.74 0.11 0.00 par:pas; +taquoir taquoir NOM m s 0.00 0.14 0.00 0.14 +tar tare NOM m s 1.79 5.20 0.23 0.00 +tara tarer VER 6.08 0.54 0.57 0.00 ind:pas:3s;;ind:pas:3s;;ind:pas:3s; +tarabiscot tarabiscot NOM m s 0.00 0.07 0.00 0.07 +tarabiscotages tarabiscotage NOM m p 0.00 0.14 0.00 0.14 +tarabiscoté tarabiscoté ADJ m s 0.16 1.01 0.01 0.34 +tarabiscotée tarabiscoté ADJ f s 0.16 1.01 0.14 0.27 +tarabiscotées tarabiscoté ADJ f p 0.16 1.01 0.01 0.20 +tarabiscotés tarabiscoté ADJ m p 0.16 1.01 0.00 0.20 +tarabustait tarabuster VER 0.19 1.55 0.00 0.54 ind:imp:3s; +tarabuste tarabuster VER 0.19 1.55 0.01 0.47 ind:pre:1s;ind:pre:3s; +tarabustent tarabuster VER 0.19 1.55 0.01 0.07 ind:pre:3p; +tarabuster tarabuster VER 0.19 1.55 0.16 0.14 inf; +tarabustes tarabuster VER 0.19 1.55 0.00 0.07 ind:pre:2s; +tarabustèrent tarabuster VER 0.19 1.55 0.00 0.07 ind:pas:3p; +tarabusté tarabuster VER m s 0.19 1.55 0.01 0.14 par:pas; +tarabustés tarabuster VER m p 0.19 1.55 0.00 0.07 par:pas; +tarama tarama NOM m s 0.28 0.00 0.28 0.00 +tarare tarare NOM m s 0.00 0.20 0.00 0.20 +taratata taratata ONO 0.29 0.34 0.29 0.34 +taraud taraud NOM m s 0.00 0.34 0.00 0.20 +taraudaient tarauder VER 0.77 2.64 0.00 0.07 ind:imp:3p; +taraudait tarauder VER 0.77 2.64 0.00 0.34 ind:imp:3s; +taraudant taraudant ADJ m s 0.00 0.14 0.00 0.14 +taraude tarauder VER 0.77 2.64 0.73 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +taraudent tarauder VER 0.77 2.64 0.01 0.27 ind:pre:3p; +tarauder tarauder VER 0.77 2.64 0.02 0.41 inf; +tarauds taraud NOM m p 0.00 0.34 0.00 0.14 +taraudèrent tarauder VER 0.77 2.64 0.00 0.07 ind:pas:3p; +taraudé tarauder VER m s 0.77 2.64 0.00 0.34 par:pas; +taraudée tarauder VER f s 0.77 2.64 0.00 0.14 par:pas; +taraudées tarauder VER f p 0.77 2.64 0.00 0.07 par:pas; +taraudés tarauder VER m p 0.77 2.64 0.00 0.14 par:pas; +tarbais tarbais ADJ m 0.00 0.20 0.00 0.20 +tarbouche tarbouche NOM m s 0.00 0.07 0.00 0.07 +tarbouif tarbouif NOM m s 0.00 0.14 0.00 0.14 +tard_venu tard_venu ADJ m s 0.00 0.07 0.00 0.07 +tard tard ADV 350.38 344.26 350.38 344.26 +tarda tarder VER 28.36 34.46 0.17 3.51 ind:pas:3s; +tardai tarder VER 28.36 34.46 0.01 0.34 ind:pas:1s; +tardaient tarder VER 28.36 34.46 0.00 0.68 ind:imp:3p; +tardais tarder VER 28.36 34.46 0.47 0.20 ind:imp:1s;ind:imp:2s; +tardait tarder VER 28.36 34.46 0.35 4.46 ind:imp:3s; +tardant tarder VER 28.36 34.46 0.01 0.20 par:pre; +tarde tarder VER 28.36 34.46 4.63 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tardent tarder VER 28.36 34.46 0.52 0.27 ind:pre:3p; +tarder tarder VER 28.36 34.46 15.01 12.09 inf; +tardera tarder VER 28.36 34.46 1.69 0.47 ind:fut:3s; +tarderai tarder VER 28.36 34.46 0.51 0.07 ind:fut:1s; +tarderaient tarder VER 28.36 34.46 0.03 0.54 cnd:pre:3p; +tarderais tarder VER 28.36 34.46 0.11 0.27 cnd:pre:1s; +tarderait tarder VER 28.36 34.46 0.03 1.82 cnd:pre:3s; +tarderas tarder VER 28.36 34.46 0.33 0.00 ind:fut:2s; +tarderez tarder VER 28.36 34.46 0.05 0.00 ind:fut:2p; +tarderie tarderie NOM f s 0.00 0.20 0.00 0.14 +tarderies tarderie NOM f p 0.00 0.20 0.00 0.07 +tarderiez tarder VER 28.36 34.46 0.01 0.00 cnd:pre:2p; +tarderions tarder VER 28.36 34.46 0.00 0.14 cnd:pre:1p; +tarderons tarder VER 28.36 34.46 0.02 0.07 ind:fut:1p; +tarderont tarder VER 28.36 34.46 0.32 0.14 ind:fut:3p; +tardes tarder VER 28.36 34.46 0.65 0.00 ind:pre:2s; +tardez tarder VER 28.36 34.46 1.14 0.27 imp:pre:2p;ind:pre:2p; +tardiez tarder VER 28.36 34.46 0.01 0.07 ind:imp:2p; +tardif tardif ADJ m s 2.62 10.00 0.65 2.23 +tardifs tardif ADJ m p 2.62 10.00 0.34 0.68 +tardigrade tardigrade NOM m s 0.01 0.00 0.01 0.00 +tardillon tardillon NOM m s 0.00 0.14 0.00 0.14 +tardions tarder VER 28.36 34.46 0.00 0.07 ind:imp:1p; +tardive tardif ADJ f s 2.62 10.00 1.36 5.74 +tardivement tardivement ADV 0.46 1.35 0.46 1.35 +tardives tardif ADJ f p 2.62 10.00 0.28 1.35 +tardâmes tarder VER 28.36 34.46 0.00 0.07 ind:pas:1p; +tardons tarder VER 28.36 34.46 0.07 0.14 imp:pre:1p;ind:pre:1p; +tardèrent tarder VER 28.36 34.46 0.15 0.81 ind:pas:3p; +tardé tarder VER m s 28.36 34.46 2.08 3.92 par:pas; +tardée tarder VER f s 28.36 34.46 0.00 0.07 par:pas; +tare tare NOM f s 1.79 5.20 1.06 3.04 +tarentelle tarentelle NOM f s 0.12 0.14 0.12 0.07 +tarentelles tarentelle NOM f p 0.12 0.14 0.00 0.07 +tarentule tarentule NOM f s 0.32 0.41 0.23 0.34 +tarentules tarentule NOM f p 0.32 0.41 0.08 0.07 +tares tare NOM f p 1.79 5.20 0.49 2.16 +taret taret NOM m s 0.00 0.20 0.00 0.14 +tarets taret NOM m p 0.00 0.20 0.00 0.07 +targe targe NOM f s 0.40 0.00 0.40 0.00 +targette targette NOM f s 0.00 1.01 0.00 0.68 +targettes targette NOM f p 0.00 1.01 0.00 0.34 +targua targuer VER 0.27 1.69 0.00 0.07 ind:pas:3s; +targuaient targuer VER 0.27 1.69 0.00 0.14 ind:imp:3p; +targuais targuer VER 0.27 1.69 0.00 0.07 ind:imp:1s; +targuait targuer VER 0.27 1.69 0.00 0.41 ind:imp:3s; +targuant targuer VER 0.27 1.69 0.00 0.14 par:pre; +targue targuer VER 0.27 1.69 0.22 0.27 ind:pre:1s;ind:pre:3s; +targuent targuer VER 0.27 1.69 0.00 0.14 ind:pre:3p; +targuer targuer VER 0.27 1.69 0.04 0.34 inf; +targuez targuer VER 0.27 1.69 0.01 0.00 ind:pre:2p; +targui targui ADJ m s 0.00 0.07 0.00 0.07 +targui targui NOM m s 0.00 0.07 0.00 0.07 +targuât targuer VER 0.27 1.69 0.00 0.07 sub:imp:3s; +targué targuer VER m s 0.27 1.69 0.00 0.07 par:pas; +tari tarir VER m s 1.83 4.93 0.28 0.61 par:pas; +taride taride NOM f s 0.00 0.20 0.00 0.20 +tarie tarir VER f s 1.83 4.93 0.69 0.74 par:pas; +taries tarir VER f p 1.83 4.93 0.01 0.34 par:pas; +tarif tarif NOM m s 6.26 4.80 4.58 2.84 +tarification tarification NOM f s 0.02 0.00 0.01 0.00 +tarifications tarification NOM f p 0.02 0.00 0.01 0.00 +tarifié tarifier VER m s 0.00 0.07 0.00 0.07 par:pas; +tarifs tarif NOM m p 6.26 4.80 1.69 1.96 +tarifée tarifer VER f s 0.01 0.27 0.00 0.14 par:pas; +tarifées tarifer VER f p 0.01 0.27 0.01 0.07 par:pas; +tarifés tarifer VER m p 0.01 0.27 0.00 0.07 par:pas; +tarin tarin NOM m s 0.10 2.91 0.10 2.91 +tarir tarir VER 1.83 4.93 0.05 1.22 inf; +tarira tarir VER 1.83 4.93 0.02 0.00 ind:fut:3s; +tarirent tarir VER 1.83 4.93 0.14 0.20 ind:pas:3p; +taris tarir VER m p 1.83 4.93 0.01 0.07 ind:pre:2s;par:pas; +tarissaient tarir VER 1.83 4.93 0.00 0.14 ind:imp:3p; +tarissait tarir VER 1.83 4.93 0.00 0.27 ind:imp:3s; +tarissant tarir VER 1.83 4.93 0.00 0.20 par:pre; +tarisse tarir VER 1.83 4.93 0.00 0.07 sub:pre:1s; +tarissement tarissement NOM m s 0.00 0.27 0.00 0.27 +tarissent tarir VER 1.83 4.93 0.01 0.14 ind:pre:3p; +tarissez tarir VER 1.83 4.93 0.00 0.07 imp:pre:2p; +tarit tarir VER 1.83 4.93 0.62 0.88 ind:pre:3s;ind:pas:3s; +tarière tarière NOM f s 0.00 0.20 0.00 0.07 +tarières tarière NOM f p 0.00 0.20 0.00 0.14 +tarlatane tarlatane NOM f s 0.00 0.07 0.00 0.07 +tarmac tarmac NOM m s 0.28 0.07 0.28 0.07 +taro taro NOM m s 4.21 0.00 4.21 0.00 +tarot tarot NOM m s 0.65 2.09 0.37 0.74 +tarots tarot NOM m p 0.65 2.09 0.28 1.35 +tarpan tarpan NOM m s 0.00 0.20 0.00 0.14 +tarpans tarpan NOM m p 0.00 0.20 0.00 0.07 +tarpon tarpon NOM m s 0.08 0.00 0.08 0.00 +tarpé tarpé NOM m s 0.32 0.07 0.32 0.07 +tarpéienne tarpéienne NOM s 0.01 0.00 0.01 0.00 +tarse tarse NOM m s 0.02 0.14 0.02 0.07 +tarses tarse NOM m p 0.02 0.14 0.00 0.07 +tarsienne tarsien ADJ f s 0.01 0.14 0.01 0.00 +tarsiens tarsien ADJ m p 0.01 0.14 0.00 0.14 +tarsier tarsier NOM m s 0.01 0.00 0.01 0.00 +tartan tartan NOM m s 0.51 0.27 0.07 0.20 +tartane tartan NOM f s 0.51 0.27 0.44 0.07 +tartare tartare ADJ s 0.46 1.15 0.45 0.61 +tartares tartare NOM p 0.94 1.76 0.52 1.15 +tartarin tartarin NOM m s 0.00 0.47 0.00 0.41 +tartarinades tartarinade NOM f p 0.00 0.14 0.00 0.14 +tartarins tartarin NOM m p 0.00 0.47 0.00 0.07 +tarte_minute tarte_minute ADJ f s 0.01 0.00 0.01 0.00 +tarte tarte NOM f s 13.04 10.34 10.41 8.31 +tartelette tartelette NOM f s 0.68 0.81 0.04 0.34 +tartelettes tartelette NOM f p 0.68 0.81 0.64 0.47 +tartempion tartempion NOM m s 0.04 0.00 0.04 0.00 +tartes tarte NOM f p 13.04 10.34 2.62 2.03 +tartignolle tartignolle ADJ s 0.00 0.20 0.00 0.14 +tartignolles tartignolle ADJ p 0.00 0.20 0.00 0.07 +tartina tartiner VER 0.65 3.18 0.00 0.14 ind:pas:3s; +tartinaient tartiner VER 0.65 3.18 0.00 0.07 ind:imp:3p; +tartinais tartiner VER 0.65 3.18 0.00 0.07 ind:imp:1s; +tartinait tartiner VER 0.65 3.18 0.00 0.34 ind:imp:3s; +tartinant tartiner VER 0.65 3.18 0.01 0.14 par:pre; +tartine tartine NOM f s 2.23 16.89 1.41 8.38 +tartinent tartiner VER 0.65 3.18 0.02 0.27 ind:pre:3p; +tartiner tartiner VER 0.65 3.18 0.41 0.88 inf;; +tartinerait tartiner VER 0.65 3.18 0.00 0.07 cnd:pre:3s; +tartines tartine NOM f p 2.23 16.89 0.82 8.51 +tartinez tartiner VER 0.65 3.18 0.03 0.00 imp:pre:2p;ind:pre:2p; +tartiné tartiner VER m s 0.65 3.18 0.03 0.27 par:pas; +tartinée tartiner VER f s 0.65 3.18 0.00 0.34 par:pas; +tartinées tartiner VER f p 0.65 3.18 0.00 0.20 par:pas; +tartir tartir VER 0.00 1.89 0.00 1.28 inf; +tartiss tartiss NOM m 0.00 0.41 0.00 0.41 +tartissent tartir VER 0.00 1.89 0.00 0.07 ind:pre:3p; +tartisses tartir VER 0.00 1.89 0.00 0.54 sub:pre:2s; +tartouille tartouille NOM f s 0.00 0.20 0.00 0.07 +tartouilles tartouille NOM f p 0.00 0.20 0.00 0.14 +tartre tartre NOM m s 0.03 0.54 0.03 0.54 +tartufe tartufe NOM m s 0.01 0.14 0.01 0.14 +tartuferie tartuferie NOM f s 0.00 0.14 0.00 0.07 +tartuferies tartuferie NOM f p 0.00 0.14 0.00 0.07 +tartufferie tartufferie NOM f s 0.00 0.07 0.00 0.07 +tartuffes tartuffe NOM m p 0.00 0.07 0.00 0.07 +taré taré NOM m s 10.48 2.09 6.96 1.01 +tarée taré ADJ f s 4.44 1.08 1.45 0.20 +tarées tarer VER f p 6.08 0.54 0.17 0.00 par:pas; +tarés taré NOM m p 10.48 2.09 3.53 1.08 +tarzan tarzan NOM m s 0.16 0.20 0.14 0.14 +tarzans tarzan NOM m p 0.16 0.20 0.01 0.07 +tas tas NOM m 65.28 83.78 65.28 83.78 +tasmanien tasmanien ADJ m s 0.01 0.07 0.01 0.07 +tassa tasser VER 2.21 19.19 0.00 1.08 ind:pas:3s; +tassai tasser VER 2.21 19.19 0.00 0.20 ind:pas:1s; +tassaient tasser VER 2.21 19.19 0.01 0.54 ind:imp:3p; +tassais tasser VER 2.21 19.19 0.00 0.07 ind:imp:1s; +tassait tasser VER 2.21 19.19 0.01 2.03 ind:imp:3s; +tassant tasser VER 2.21 19.19 0.00 0.88 par:pre; +tasse tasse NOM f s 21.89 34.12 18.52 25.07 +tasseau tasseau NOM m s 0.01 0.00 0.01 0.00 +tassement tassement NOM m s 0.06 0.68 0.04 0.61 +tassements tassement NOM m p 0.06 0.68 0.01 0.07 +tassent tasser VER 2.21 19.19 0.10 0.81 ind:pre:3p; +tasser tasser VER 2.21 19.19 0.45 1.76 inf; +tassera tasser VER 2.21 19.19 0.25 0.27 ind:fut:3s; +tasserai tasser VER 2.21 19.19 0.00 0.07 ind:fut:1s; +tasserait tasser VER 2.21 19.19 0.03 0.07 cnd:pre:3s; +tasses tasse NOM f p 21.89 34.12 3.37 9.05 +tassez tasser VER 2.21 19.19 0.17 0.07 imp:pre:2p; +tassiez tasser VER 2.21 19.19 0.00 0.07 ind:imp:2p; +tassili tassili NOM m s 0.00 0.34 0.00 0.34 +tassons tasser VER 2.21 19.19 0.00 0.07 ind:pre:1p; +tassèrent tasser VER 2.21 19.19 0.00 0.34 ind:pas:3p; +tassé tasser VER m s 2.21 19.19 0.41 3.78 par:pas; +tassée tasser VER f s 2.21 19.19 0.06 2.57 par:pas; +tassées tasser VER f p 2.21 19.19 0.04 0.41 par:pas; +tassés tassé ADJ m p 0.26 4.32 0.06 0.81 +taste_vin taste_vin NOM m 0.01 0.14 0.01 0.14 +tata tata NOM f s 3.00 0.68 2.96 0.47 +tatami tatami NOM m s 0.02 0.20 0.02 0.14 +tatamis tatami NOM m p 0.02 0.20 0.00 0.07 +tatane tatane NOM f s 0.02 2.64 0.01 1.01 +tatanes tatane NOM f p 0.02 2.64 0.01 1.62 +tatar tatar NOM m s 0.01 0.07 0.01 0.07 +tatars tatar ADJ m p 0.00 0.20 0.00 0.07 +tatas tata NOM f p 3.00 0.68 0.04 0.20 +tatillon tatillon ADJ m s 0.47 1.76 0.22 1.01 +tatillonne tatillon ADJ f s 0.47 1.76 0.09 0.34 +tatillonner tatillonner VER 0.00 0.07 0.00 0.07 inf; +tatillonnes tatillon ADJ f p 0.47 1.76 0.00 0.07 +tatillons tatillon ADJ m p 0.47 1.76 0.16 0.34 +tatin tatin NOM f s 0.03 0.14 0.03 0.14 +tatou tatou NOM m s 0.51 0.27 0.46 0.20 +tatouage tatouage NOM m s 12.06 3.38 8.28 1.55 +tatouages tatouage NOM m p 12.06 3.38 3.77 1.82 +tatouaient tatouer VER 4.22 3.72 0.00 0.07 ind:imp:3p; +tatouait tatouer VER 4.22 3.72 0.01 0.14 ind:imp:3s; +tatoue tatouer VER 4.22 3.72 0.08 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tatouent tatouer VER 4.22 3.72 0.02 0.00 ind:pre:3p; +tatouer tatouer VER 4.22 3.72 1.91 0.81 inf; +tatoueur tatoueur NOM m s 0.37 1.01 0.14 1.01 +tatoueurs tatoueur NOM m p 0.37 1.01 0.09 0.00 +tatoueuse tatoueur NOM f s 0.37 1.01 0.14 0.00 +tatouez tatouer VER 4.22 3.72 0.02 0.00 imp:pre:2p;ind:pre:2p; +tatous tatou NOM m p 0.51 0.27 0.04 0.07 +tatoué tatouer VER m s 4.22 3.72 1.23 1.15 par:pas; +tatouée tatouer VER f s 4.22 3.72 0.52 0.61 par:pas; +tatouées tatoué ADJ f p 1.61 2.16 0.11 0.07 +tatoués tatouer VER m p 4.22 3.72 0.36 0.54 par:pas; +tau tau NOM m s 0.88 0.07 0.88 0.07 +taube taube NOM m s 0.07 0.27 0.07 0.27 +taudis taudis NOM m 4.17 3.24 4.17 3.24 +taulard taulard NOM m s 1.78 2.03 0.82 0.61 +taularde taulard NOM f s 1.78 2.03 0.17 0.14 +taulardes taulard NOM f p 1.78 2.03 0.02 0.07 +taulards taulard NOM m p 1.78 2.03 0.77 1.22 +taule taule NOM f s 27.00 14.73 26.92 13.85 +taules taule NOM f p 27.00 14.73 0.08 0.88 +taulier taulier NOM m s 0.95 5.41 0.67 3.31 +tauliers taulier NOM m p 0.95 5.41 0.14 0.54 +taulière taulier NOM f s 0.95 5.41 0.15 1.49 +taulières taulier NOM f p 0.95 5.41 0.00 0.07 +taupe taupe NOM f s 6.60 4.39 5.42 2.84 +taupes taupe NOM f p 6.60 4.39 1.17 1.55 +taupicide taupicide NOM m s 0.00 0.07 0.00 0.07 +taupin taupin NOM m s 0.40 0.07 0.40 0.07 +taupinière taupinière NOM f s 0.07 1.22 0.05 0.88 +taupinières taupinière NOM f p 0.07 1.22 0.02 0.34 +taupinées taupinée NOM f p 0.00 0.07 0.00 0.07 +taupé taupé ADJ m s 0.01 0.14 0.01 0.07 +taupés taupé ADJ m p 0.01 0.14 0.00 0.07 +taure taure NOM f s 0.00 0.07 0.00 0.07 +taureau taureau NOM m s 10.82 13.38 8.37 10.00 +taureaux taureau NOM m p 10.82 13.38 2.46 3.38 +taurillon taurillon NOM m s 0.00 0.27 0.00 0.20 +taurillons taurillon NOM m p 0.00 0.27 0.00 0.07 +taurin taurin ADJ m s 0.00 0.20 0.00 0.07 +taurine taurin ADJ f s 0.00 0.20 0.00 0.07 +taurins taurin ADJ m p 0.00 0.20 0.00 0.07 +taurobole taurobole NOM m s 0.00 0.14 0.00 0.14 +tauromachie tauromachie NOM f s 0.22 0.34 0.22 0.34 +tauromachique tauromachique ADJ s 0.00 0.14 0.00 0.14 +tautologie tautologie NOM f s 0.01 0.14 0.01 0.14 +taux taux NOM m 11.22 2.64 11.22 2.64 +tavel tavel NOM m s 0.03 0.14 0.03 0.14 +tavelant taveler VER 0.00 0.74 0.00 0.14 par:pre; +tavelé taveler VER m s 0.00 0.74 0.00 0.14 par:pas; +tavelée taveler VER f s 0.00 0.74 0.00 0.27 par:pas; +tavelées taveler VER f p 0.00 0.74 0.00 0.20 par:pas; +tavelures tavelure NOM f p 0.01 0.34 0.01 0.34 +taverne taverne NOM f s 3.02 8.51 2.63 6.01 +tavernes taverne NOM f p 3.02 8.51 0.39 2.50 +tavernier tavernier NOM m s 0.06 0.88 0.06 0.68 +taverniers tavernier NOM m p 0.06 0.88 0.00 0.20 +taxa taxer VER 2.19 3.04 0.00 0.14 ind:pas:3s; +taxables taxable ADJ f p 0.01 0.00 0.01 0.00 +taxaient taxer VER 2.19 3.04 0.00 0.14 ind:imp:3p; +taxait taxer VER 2.19 3.04 0.02 0.14 ind:imp:3s; +taxant taxer VER 2.19 3.04 0.05 0.07 par:pre; +taxation taxation NOM f s 0.02 0.07 0.02 0.07 +taxaudier taxaudier NOM m s 0.00 0.20 0.00 0.20 +taxe taxe NOM f s 4.34 1.82 1.86 1.15 +taxent taxer VER 2.19 3.04 0.16 0.20 ind:pre:3p; +taxer taxer VER 2.19 3.04 0.83 1.15 inf; +taxerait taxer VER 2.19 3.04 0.01 0.14 cnd:pre:3s; +taxes taxe NOM f p 4.34 1.82 2.49 0.68 +taxez taxer VER 2.19 3.04 0.01 0.00 ind:pre:2p; +taxi_auto taxi_auto NOM m s 0.00 0.07 0.00 0.07 +taxi_brousse taxi_brousse NOM m s 0.14 0.14 0.14 0.14 +taxi_girl taxi_girl NOM f s 0.00 0.27 0.00 0.07 +taxi_girl taxi_girl NOM f p 0.00 0.27 0.00 0.20 +taxi taxi NOM m s 63.77 46.82 59.42 41.22 +taxidermie taxidermie NOM f s 0.07 0.07 0.07 0.07 +taxidermiste taxidermiste NOM s 0.17 0.14 0.16 0.14 +taxidermistes taxidermiste NOM p 0.17 0.14 0.01 0.00 +taximan taximan NOM m s 0.34 0.27 0.23 0.14 +taximen taximan NOM m p 0.34 0.27 0.10 0.14 +taximètre taximètre NOM m s 0.01 0.00 0.01 0.00 +taxinomie taxinomie NOM f s 0.10 0.14 0.10 0.14 +taxinomique taxinomique ADJ m s 0.00 0.07 0.00 0.07 +taxinomiste taxinomiste NOM s 0.01 0.00 0.01 0.00 +taxiphone taxiphone NOM m s 0.02 0.07 0.01 0.07 +taxiphones taxiphone NOM m p 0.02 0.07 0.01 0.00 +taxis taxi NOM m p 63.77 46.82 4.35 5.61 +taxonomie taxonomie NOM f s 0.01 0.00 0.01 0.00 +taxonomique taxonomique ADJ m s 0.01 0.00 0.01 0.00 +taxé taxer VER m s 2.19 3.04 0.45 0.61 par:pas; +taxée taxer VER f s 2.19 3.04 0.10 0.14 par:pas; +taxés taxé ADJ m p 0.07 0.14 0.05 0.00 +taylorisme taylorisme NOM m s 0.00 0.07 0.00 0.07 +taylorisé tayloriser VER m s 0.00 0.07 0.00 0.07 par:pas; +tchadiens tchadien NOM m p 0.00 0.07 0.00 0.07 +tchador tchador NOM m s 0.23 0.07 0.23 0.07 +tchao tchao ONO 2.25 2.03 2.25 2.03 +tchatchant tchatcher VER 0.68 0.14 0.00 0.07 par:pre; +tchatche tchatche NOM f s 0.79 0.27 0.79 0.27 +tchatchent tchatcher VER 0.68 0.14 0.14 0.07 ind:pre:3p; +tchatcher tchatcher VER 0.68 0.14 0.47 0.00 inf; +tchatches tchatcher VER 0.68 0.14 0.01 0.00 ind:pre:2s; +tchatché tchatcher VER m s 0.68 0.14 0.04 0.00 par:pas; +tcherkesse tcherkesse NOM m s 0.00 0.07 0.00 0.07 +tchernoziom tchernoziom NOM m s 0.00 0.14 0.00 0.14 +tchetnik tchetnik NOM m s 0.83 0.00 0.81 0.00 +tchetniks tchetnik NOM m p 0.83 0.00 0.02 0.00 +tchin_tchin tchin_tchin ONO 0.11 0.14 0.11 0.14 +tchin_tchin tchin_tchin ONO 0.01 0.47 0.01 0.47 +tchèque tchèque ADJ s 2.00 1.55 1.83 0.68 +tchèques tchèque NOM p 0.81 1.42 0.33 0.68 +tchécoslovaque tchécoslovaque ADJ s 0.37 1.82 0.35 1.35 +tchécoslovaques tchécoslovaque NOM p 0.16 0.20 0.09 0.20 +tchékhoviennes tchékhovien ADJ f p 0.10 0.00 0.10 0.00 +tchékiste tchékiste NOM s 0.00 0.14 0.00 0.14 +tchétchène tchétchène NOM s 1.08 0.00 0.63 0.00 +tchétchènes tchétchène NOM p 1.08 0.00 0.45 0.00 +te_deum te_deum NOM m 0.00 0.14 0.00 0.14 +te te PRO:per s 4006.10 774.32 4006.10 774.32 +tea_room tea_room NOM m s 0.00 0.20 0.00 0.20 +team team NOM m s 13.84 0.27 13.68 0.20 +teams team NOM m p 13.84 0.27 0.16 0.07 +teaser teaser NOM m s 0.04 0.00 0.04 0.00 +tec tec NOM m 0.01 0.00 0.01 0.00 +technicien technicien NOM m s 5.03 4.32 1.99 1.01 +technicienne technicien ADJ f s 1.73 0.74 0.34 0.07 +techniciens technicien NOM m p 5.03 4.32 3.01 3.24 +technicité technicité NOM f s 0.14 0.07 0.14 0.07 +technico_commerciaux technico_commerciaux NOM m p 0.00 0.07 0.00 0.07 +technicolor technicolor NOM m s 0.41 0.88 0.41 0.88 +technique technique ADJ s 14.90 13.04 11.72 8.31 +techniquement techniquement ADV 6.42 0.61 6.42 0.61 +techniques technique NOM p 11.39 14.05 3.30 3.65 +techno techno ADJ s 0.52 0.00 0.52 0.00 +technocrate technocrate NOM s 0.32 0.47 0.31 0.20 +technocrates technocrate NOM p 0.32 0.47 0.01 0.27 +technocratique technocratique ADJ s 0.00 0.07 0.00 0.07 +technocratisme technocratisme NOM m s 0.00 0.07 0.00 0.07 +technologie technologie NOM f s 17.57 0.54 14.78 0.54 +technologies technologie NOM f p 17.57 0.54 2.79 0.00 +technologique technologique ADJ s 1.62 0.27 1.27 0.27 +technologiquement technologiquement ADV 0.15 0.00 0.15 0.00 +technologiques technologique ADJ p 1.62 0.27 0.35 0.00 +technétium technétium NOM m s 0.01 0.00 0.01 0.00 +teck teck NOM m s 0.11 0.34 0.11 0.34 +teckel teckel NOM m s 0.23 1.01 0.21 0.81 +teckels teckel NOM m p 0.23 1.01 0.02 0.20 +tectonique tectonique ADJ s 0.10 0.07 0.03 0.00 +tectoniques tectonique ADJ f p 0.10 0.07 0.08 0.07 +tee_shirt tee_shirt NOM m s 3.19 5.27 2.94 3.99 +tee_shirt tee_shirt NOM m p 3.19 5.27 0.25 1.28 +tee tee NOM m s 0.93 0.34 0.90 0.34 +teen_ager teen_ager NOM p 0.00 0.20 0.00 0.20 +teenager teenager NOM s 0.06 0.27 0.02 0.14 +teenagers teenager NOM p 0.06 0.27 0.03 0.14 +tees tee NOM m p 0.93 0.34 0.03 0.00 +tefillin tefillin NOM m s 0.02 0.14 0.02 0.14 +teignais teindre VER 3.71 4.32 0.14 0.00 ind:imp:1s; +teignait teindre VER 3.71 4.32 0.02 0.74 ind:imp:3s; +teignant teindre VER 3.71 4.32 0.00 0.07 par:pre; +teigne teigne NOM f s 1.22 1.15 1.18 0.95 +teignent teindre VER 3.71 4.32 0.22 0.07 ind:pre:3p; +teignes teigne NOM f p 1.22 1.15 0.04 0.20 +teigneuse teigneux ADJ f s 0.66 2.84 0.04 0.68 +teigneuses teigneux ADJ f p 0.66 2.84 0.00 0.14 +teigneux teigneux ADJ m 0.66 2.84 0.62 2.03 +teignit teindre VER 3.71 4.32 0.00 0.14 ind:pas:3s; +teille teiller VER 0.00 0.07 0.00 0.07 ind:pre:3s; +teindra teindre VER 3.71 4.32 0.02 0.00 ind:fut:3s; +teindrai teindre VER 3.71 4.32 0.12 0.00 ind:fut:1s; +teindrait teindre VER 3.71 4.32 0.01 0.07 cnd:pre:3s; +teindre teindre VER 3.71 4.32 1.28 1.22 inf; +teins teindre VER 3.71 4.32 0.74 0.14 imp:pre:2s;ind:pre:1s;ind:pre:2s; +teint teint NOM m s 4.87 24.26 4.84 23.58 +teinta teinter VER 1.32 10.14 0.00 0.27 ind:pas:3s; +teintaient teinter VER 1.32 10.14 0.00 0.27 ind:imp:3p; +teintait teinter VER 1.32 10.14 0.00 0.95 ind:imp:3s; +teintant teinter VER 1.32 10.14 0.28 0.47 par:pre; +teinte teinte NOM f s 0.77 12.91 0.60 7.43 +teintent teinter VER 1.32 10.14 0.03 0.14 ind:pre:3p; +teinter teinter VER 1.32 10.14 0.01 0.27 inf; +teinteraient teinter VER 1.32 10.14 0.00 0.07 cnd:pre:3p; +teintes teinte NOM f p 0.77 12.91 0.17 5.47 +teints teint ADJ m p 0.99 3.85 0.25 1.62 +teinté teinter VER m s 1.32 10.14 0.35 2.43 par:pas; +teintée teinter VER f s 1.32 10.14 0.26 2.77 par:pas; +teintées teinter VER f p 1.32 10.14 0.37 1.15 par:pas; +teinture teinture NOM f s 2.49 3.38 2.18 3.04 +teinturerie teinturerie NOM f s 0.46 0.61 0.43 0.47 +teintureries teinturerie NOM f p 0.46 0.61 0.03 0.14 +teintures teinture NOM f p 2.49 3.38 0.31 0.34 +teinturier teinturier NOM m s 1.06 1.55 0.99 1.08 +teinturiers teinturier NOM m p 1.06 1.55 0.06 0.20 +teinturière teinturier NOM f s 1.06 1.55 0.01 0.27 +teintés teinter VER m p 1.32 10.14 0.01 1.01 par:pas; +tek tek NOM m s 0.12 0.00 0.12 0.00 +tel tel ADJ:ind m s 66.90 115.74 66.90 115.74 +tell tell NOM m s 2.92 0.07 2.92 0.07 +telle telle ADJ:ind f s 48.77 118.58 48.77 118.58 +tellement tellement ADV 183.70 168.51 183.70 168.51 +telles telles ADJ:ind f p 15.12 27.16 15.12 27.16 +tellure tellure NOM m s 0.14 0.00 0.14 0.00 +tellurique tellurique ADJ s 0.00 1.62 0.00 1.42 +telluriques tellurique ADJ m p 0.00 1.62 0.00 0.20 +tels tels ADJ:ind m p 13.65 30.14 13.65 30.14 +telson telson NOM m s 0.07 0.00 0.07 0.00 +tem tem NOM m s 0.03 0.07 0.03 0.07 +tempe tempe NOM f s 3.38 29.46 2.23 9.66 +tempera tempera NOM f s 0.10 0.00 0.10 0.00 +tempes tempe NOM f p 3.38 29.46 1.15 19.80 +tempi tempo NOM m p 1.44 1.35 0.00 0.14 +temple temple NOM m s 15.69 20.20 14.36 13.72 +temples temple NOM m p 15.69 20.20 1.33 6.49 +templier templier NOM m s 0.35 5.74 0.12 3.65 +templiers templier NOM m p 0.35 5.74 0.23 2.09 +templière templier ADJ f s 0.23 0.14 0.23 0.14 +tempo tempo NOM m s 1.44 1.35 1.38 1.22 +temporaire temporaire ADJ s 7.51 3.38 6.54 2.57 +temporairement temporairement ADV 2.64 0.95 2.64 0.95 +temporaires temporaire ADJ p 7.51 3.38 0.96 0.81 +temporal temporal ADJ m s 0.76 0.34 0.65 0.00 +temporale temporal ADJ f s 0.76 0.34 0.02 0.14 +temporales temporal ADJ f p 0.76 0.34 0.01 0.14 +temporalité temporalité NOM f s 0.00 0.34 0.00 0.27 +temporalités temporalité NOM f p 0.00 0.34 0.00 0.07 +temporaux temporal ADJ m p 0.76 0.34 0.07 0.07 +temporel temporel ADJ m s 4.59 1.82 1.36 1.08 +temporelle temporel ADJ f s 4.59 1.82 2.61 0.54 +temporellement temporellement ADV 0.00 0.14 0.00 0.14 +temporelles temporel ADJ f p 4.59 1.82 0.37 0.07 +temporels temporel ADJ m p 4.59 1.82 0.26 0.14 +temporisaient temporiser VER 0.49 0.74 0.00 0.07 ind:imp:3p; +temporisait temporiser VER 0.49 0.74 0.01 0.07 ind:imp:3s; +temporisateur temporisateur ADJ m s 0.00 0.07 0.00 0.07 +temporisation temporisation NOM f s 0.02 0.20 0.02 0.20 +temporise temporiser VER 0.49 0.74 0.01 0.07 ind:pre:1s;ind:pre:3s; +temporisent temporiser VER 0.49 0.74 0.01 0.00 ind:pre:3p; +temporiser temporiser VER 0.49 0.74 0.41 0.34 inf; +temporiserai temporiser VER 0.49 0.74 0.01 0.00 ind:fut:1s; +temporisez temporiser VER 0.49 0.74 0.01 0.00 imp:pre:2p; +temporisons temporiser VER 0.49 0.74 0.00 0.07 imp:pre:1p; +temporisé temporiser VER m s 0.49 0.74 0.02 0.07 par:pas; +temporisée temporiser VER f s 0.49 0.74 0.01 0.07 par:pas; +tempos tempo NOM m p 1.44 1.35 0.06 0.00 +temps temps NOM m s 1031.05 1289.39 1031.05 1289.39 +tempère tempérer VER 0.25 3.85 0.03 0.34 imp:pre:2s;ind:pre:3s; +tempéra tempérer VER 0.25 3.85 0.00 0.34 ind:pas:3s; +tempura tempura NOM f s 0.06 0.00 0.05 0.00 +tempéraient tempérer VER 0.25 3.85 0.00 0.14 ind:imp:3p; +tempérait tempérer VER 0.25 3.85 0.00 0.88 ind:imp:3s; +tempérament tempérament NOM m s 4.74 9.93 4.69 9.05 +tempéraments tempérament NOM m p 4.74 9.93 0.05 0.88 +tempérance tempérance NOM f s 0.32 0.07 0.32 0.07 +tempuras tempura NOM f p 0.06 0.00 0.01 0.00 +température température NOM f s 15.68 10.95 14.42 10.41 +températures température NOM f p 15.68 10.95 1.26 0.54 +tempérer tempérer VER 0.25 3.85 0.12 0.68 inf; +tempéreraient tempérer VER 0.25 3.85 0.00 0.07 cnd:pre:3p; +tempérerait tempérer VER 0.25 3.85 0.01 0.07 cnd:pre:3s; +tempéré tempéré ADJ m s 0.34 1.22 0.22 0.54 +tempérée tempéré ADJ f s 0.34 1.22 0.11 0.20 +tempérées tempéré ADJ f p 0.34 1.22 0.01 0.27 +tempérés tempérer VER m p 0.25 3.85 0.00 0.20 par:pas; +tempêta tempêter VER 0.57 3.51 0.00 0.34 ind:pas:3s; +tempêtaient tempêter VER 0.57 3.51 0.01 0.07 ind:imp:3p; +tempêtais tempêter VER 0.57 3.51 0.00 0.14 ind:imp:1s; +tempêtait tempêter VER 0.57 3.51 0.00 0.74 ind:imp:3s; +tempêtant tempêter VER 0.57 3.51 0.00 0.47 par:pre; +tempête tempête NOM f s 19.73 31.28 15.72 24.26 +tempêtent tempêter VER 0.57 3.51 0.01 0.07 ind:pre:3p; +tempêter tempêter VER 0.57 3.51 0.11 0.61 inf; +tempêtes tempête NOM f p 19.73 31.28 4.01 7.03 +tempêté tempêter VER m s 0.57 3.51 0.01 0.14 par:pas; +tempétueux tempétueux ADJ m s 0.02 0.14 0.02 0.14 +tenable tenable ADJ f s 0.03 0.68 0.03 0.68 +tenace tenace ADJ s 1.96 12.43 1.62 10.20 +tenacement tenacement ADV 0.00 0.20 0.00 0.20 +tenaces tenace ADJ p 1.96 12.43 0.34 2.23 +tenaient tenir VER 504.69 741.22 3.56 35.68 ind:imp:3p; +tenaillaient tenailler VER 0.48 3.92 0.00 0.27 ind:imp:3p; +tenaillait tenailler VER 0.48 3.92 0.02 1.42 ind:imp:3s; +tenaillant tenailler VER 0.48 3.92 0.00 0.27 par:pre; +tenaille tenaille NOM f s 1.83 2.43 0.48 1.22 +tenaillent tenailler VER 0.48 3.92 0.00 0.07 ind:pre:3p; +tenailler tenailler VER 0.48 3.92 0.10 0.14 inf; +tenailles tenaille NOM f p 1.83 2.43 1.34 1.22 +tenaillé tenailler VER m s 0.48 3.92 0.01 0.88 par:pas; +tenaillée tenailler VER f s 0.48 3.92 0.02 0.14 par:pas; +tenais tenir VER 504.69 741.22 11.03 24.80 ind:imp:1s;ind:imp:2s; +tenait tenir VER 504.69 741.22 20.65 179.12 ind:imp:3s; +tenancier tenancier NOM m s 0.48 2.43 0.18 0.95 +tenanciers tenancier NOM m p 0.48 2.43 0.03 0.34 +tenancière tenancier NOM f s 0.48 2.43 0.28 1.08 +tenancières tenancier NOM f p 0.48 2.43 0.00 0.07 +tenant tenir VER 504.69 741.22 3.68 46.62 par:pre; +tenante tenant ADJ f s 0.88 4.73 0.47 1.69 +tenants tenant NOM m p 0.69 4.46 0.39 2.16 +tend tendre VER 26.65 218.38 3.72 31.22 ind:pre:3s; +tendît tendre VER 26.65 218.38 0.00 0.27 sub:imp:3s; +tendaient tendre VER 26.65 218.38 0.10 6.15 ind:imp:3p; +tendais tendre VER 26.65 218.38 0.19 2.03 ind:imp:1s;ind:imp:2s; +tendait tendre VER 26.65 218.38 1.17 24.12 ind:imp:3s; +tendance tendance NOM f s 12.98 20.88 10.95 14.26 +tendances tendance NOM f p 12.98 20.88 2.03 6.62 +tendancieuse tendancieux ADJ f s 0.34 0.95 0.05 0.20 +tendancieusement tendancieusement ADV 0.00 0.14 0.00 0.14 +tendancieuses tendancieux ADJ f p 0.34 0.95 0.01 0.47 +tendancieux tendancieux ADJ m p 0.34 0.95 0.28 0.27 +tendant tendre VER 26.65 218.38 0.93 16.01 par:pre; +tende tendre VER 26.65 218.38 0.42 0.54 sub:pre:1s;sub:pre:3s; +tendelet tendelet NOM m s 0.00 0.20 0.00 0.20 +tendent tendre VER 26.65 218.38 0.54 5.20 ind:pre:3p; +tender tender NOM m s 0.36 0.95 0.36 0.88 +tenders tender NOM m p 0.36 0.95 0.00 0.07 +tendeur tendeur NOM m s 0.23 0.74 0.19 0.41 +tendeurs tendeur NOM m p 0.23 0.74 0.04 0.34 +tendez tendre VER 26.65 218.38 2.00 0.54 imp:pre:2p;ind:pre:2p; +tendiez tendre VER 26.65 218.38 0.03 0.00 ind:imp:2p; +tendineuses tendineux ADJ f p 0.00 0.07 0.00 0.07 +tendinite tendinite NOM f s 0.24 0.00 0.24 0.00 +tendions tendre VER 26.65 218.38 0.00 0.20 ind:imp:1p; +tendirent tendre VER 26.65 218.38 0.00 1.49 ind:pas:3p; +tendis tendre VER 26.65 218.38 0.12 2.70 ind:pas:1s; +tendissent tendre VER 26.65 218.38 0.00 0.07 sub:imp:3p; +tendit tendre VER 26.65 218.38 0.05 51.22 ind:pas:3s; +tendon tendon NOM m s 1.38 3.99 0.90 0.61 +tendons tendon NOM m p 1.38 3.99 0.48 3.38 +tendra tendre VER 26.65 218.38 0.06 0.68 ind:fut:3s; +tendrai tendre VER 26.65 218.38 0.42 0.07 ind:fut:1s; +tendraient tendre VER 26.65 218.38 0.01 0.07 cnd:pre:3p; +tendrais tendre VER 26.65 218.38 0.08 0.14 cnd:pre:1s;cnd:pre:2s; +tendrait tendre VER 26.65 218.38 0.22 0.74 cnd:pre:3s; +tendre tendre ADJ s 21.66 61.15 18.34 45.54 +tendrement tendrement ADV 3.42 12.84 3.42 12.84 +tendres tendre ADJ p 21.66 61.15 3.33 15.61 +tendresse tendresse NOM f s 15.87 61.69 15.66 59.39 +tendresses tendresse NOM f p 15.87 61.69 0.20 2.30 +tendreté tendreté NOM f s 0.01 0.14 0.01 0.14 +tendron tendron NOM m s 0.35 0.61 0.05 0.34 +tendrons tendron NOM m p 0.35 0.61 0.30 0.27 +tendront tendre VER 26.65 218.38 0.00 0.07 ind:fut:3p; +tends tendre VER 26.65 218.38 3.46 6.15 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tendu tendre VER m s 26.65 218.38 6.24 25.68 par:pas; +tendue tendu ADJ f s 9.71 37.57 3.10 13.51 +tendues tendu ADJ f p 9.71 37.57 0.85 3.45 +tendus tendu ADJ m p 9.71 37.57 1.26 7.23 +teneur teneur NOM s 0.90 1.35 0.90 1.35 +tenez tenir VER 504.69 741.22 99.49 30.61 imp:pre:2p;ind:pre:2p; +teniez tenir VER 504.69 741.22 2.34 0.95 ind:imp:2p; +tenions tenir VER 504.69 741.22 0.57 4.80 ind:imp:1p;sub:pre:1p; +tenir tenir VER 504.69 741.22 82.83 126.82 inf; +tennis_ballon tennis_ballon NOM m 0.00 0.07 0.00 0.07 +tennis_club tennis_club NOM m 0.00 0.34 0.00 0.34 +tennis tennis NOM m 11.37 13.24 11.37 13.24 +tennisman tennisman NOM m s 0.07 0.61 0.06 0.34 +tennismen tennisman NOM m p 0.07 0.61 0.01 0.27 +tenon tenon NOM m s 0.23 0.34 0.16 0.14 +tenons tenir VER 504.69 741.22 5.94 3.92 imp:pre:1p;ind:pre:1p; +tenseur tenseur NOM m s 0.02 0.00 0.02 0.00 +tensiomètre tensiomètre NOM m s 0.02 0.00 0.02 0.00 +tension tension NOM f s 21.28 15.61 20.05 14.93 +tensions tension NOM f p 21.28 15.61 1.23 0.68 +tenta tenter VER 79.74 126.96 1.00 14.19 ind:pas:3s; +tentaculaire tentaculaire ADJ s 0.01 0.61 0.01 0.47 +tentaculaires tentaculaire ADJ p 0.01 0.61 0.00 0.14 +tentacule tentacule NOM m s 1.11 2.50 0.27 0.20 +tentacules tentacule NOM m p 1.11 2.50 0.84 2.30 +tentai tenter VER 79.74 126.96 0.02 3.38 ind:pas:1s; +tentaient tenter VER 79.74 126.96 0.68 4.73 ind:imp:3p; +tentais tenter VER 79.74 126.96 0.42 2.16 ind:imp:1s;ind:imp:2s; +tentait tenter VER 79.74 126.96 1.98 15.41 ind:imp:3s; +tentant tentant ADJ m s 2.70 3.18 2.10 2.23 +tentante tentant ADJ f s 2.70 3.18 0.51 0.47 +tentantes tentant ADJ f p 2.70 3.18 0.01 0.27 +tentants tentant ADJ m p 2.70 3.18 0.09 0.20 +tentateur tentateur ADJ m s 0.48 1.01 0.34 0.54 +tentateurs tentateur ADJ m p 0.48 1.01 0.10 0.07 +tentation tentation NOM f s 7.56 20.61 5.82 16.01 +tentations tentation NOM f p 7.56 20.61 1.74 4.59 +tentative tentative NOM f s 19.04 19.53 16.24 14.12 +tentatives tentative NOM f p 19.04 19.53 2.81 5.41 +tentatrice tentateur NOM f s 0.18 0.41 0.17 0.07 +tentatrices tentatrice NOM f p 0.01 0.00 0.01 0.00 +tente tenter VER 79.74 126.96 16.94 13.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tentent tenter VER 79.74 126.96 2.28 1.76 ind:pre:3p; +tenter tenter VER 79.74 126.96 20.40 32.43 inf; +tentera tenter VER 79.74 126.96 1.30 0.34 ind:fut:3s; +tenterai tenter VER 79.74 126.96 0.56 0.14 ind:fut:1s; +tenteraient tenter VER 79.74 126.96 0.10 0.54 cnd:pre:3p; +tenterais tenter VER 79.74 126.96 0.20 0.34 cnd:pre:1s;cnd:pre:2s; +tenterait tenter VER 79.74 126.96 0.33 1.42 cnd:pre:3s; +tenteras tenter VER 79.74 126.96 0.19 0.14 ind:fut:2s; +tenterez tenter VER 79.74 126.96 0.17 0.00 ind:fut:2p; +tenteriez tenter VER 79.74 126.96 0.01 0.00 cnd:pre:2p; +tenterons tenter VER 79.74 126.96 0.74 0.00 ind:fut:1p; +tenteront tenter VER 79.74 126.96 0.48 0.20 ind:fut:3p; +tentes tente NOM f p 16.65 26.22 2.25 7.09 +tentez tenter VER 79.74 126.96 3.31 0.54 imp:pre:2p;ind:pre:2p; +tentiaire tentiaire NOM f s 0.00 0.41 0.00 0.41 +tentiez tenter VER 79.74 126.96 0.45 0.14 ind:imp:2p; +tentions tenter VER 79.74 126.96 0.12 0.68 ind:imp:1p; +tentâmes tenter VER 79.74 126.96 0.00 0.14 ind:pas:1p; +tentons tenter VER 79.74 126.96 2.03 0.20 imp:pre:1p;ind:pre:1p; +tentât tenter VER 79.74 126.96 0.00 0.61 sub:imp:3s; +tentèrent tenter VER 79.74 126.96 0.22 1.96 ind:pas:3p; +tenté tenter VER m s 79.74 126.96 21.70 25.34 par:pas; +tentée tenter VER f s 79.74 126.96 1.29 2.50 par:pas; +tentées tenter VER f p 79.74 126.96 0.24 0.34 par:pas; +tenture tenture NOM f s 0.66 8.18 0.20 3.24 +tentures tenture NOM f p 0.66 8.18 0.45 4.93 +tentés tenter VER m p 79.74 126.96 0.30 1.49 par:pas; +tenu tenir VER m s 504.69 741.22 27.10 54.12 par:pas; +tenue tenue NOM f s 21.96 31.89 19.64 27.97 +tenues tenue NOM f p 21.96 31.89 2.32 3.92 +tenure tenure NOM f s 0.01 0.00 0.01 0.00 +tenus tenir VER m p 504.69 741.22 1.39 6.89 par:pas; +tepidarium tepidarium NOM m s 0.01 0.00 0.01 0.00 +tequila tequila NOM f s 3.81 0.20 3.52 0.20 +tequilas tequila NOM f p 3.81 0.20 0.29 0.00 +ter ter ADV 0.72 9.46 0.72 9.46 +terce tercer VER 0.10 0.07 0.00 0.07 ind:pre:3s; +tercer tercer VER 0.10 0.07 0.10 0.00 inf; +tercets tercet NOM m p 0.00 0.07 0.00 0.07 +tercio tercio NOM m s 0.01 0.14 0.01 0.14 +tergal tergal NOM m s 0.16 0.41 0.16 0.41 +tergiversaient tergiverser VER 0.81 1.35 0.00 0.07 ind:imp:3p; +tergiversais tergiverser VER 0.81 1.35 0.00 0.07 ind:imp:1s; +tergiversant tergiverser VER 0.81 1.35 0.00 0.07 par:pre; +tergiversation tergiversation NOM f s 0.09 1.28 0.03 0.00 +tergiversations tergiversation NOM f p 0.09 1.28 0.06 1.28 +tergiverse tergiverser VER 0.81 1.35 0.23 0.20 imp:pre:2s;ind:pre:3s; +tergiverser tergiverser VER 0.81 1.35 0.40 0.81 inf; +tergiverses tergiverser VER 0.81 1.35 0.03 0.00 ind:pre:2s; +tergiversez tergiverser VER 0.81 1.35 0.04 0.00 imp:pre:2p;ind:pre:2p; +tergiversons tergiverser VER 0.81 1.35 0.03 0.07 imp:pre:1p;ind:pre:1p; +tergiversé tergiverser VER m s 0.81 1.35 0.09 0.07 par:pas; +terme terme NOM m s 37.67 59.73 25.72 34.86 +termes terme NOM m p 37.67 59.73 11.96 24.86 +termina terminer VER 142.38 100.00 0.28 5.20 ind:pas:3s; +terminai terminer VER 142.38 100.00 0.05 0.68 ind:pas:1s; +terminaient terminer VER 142.38 100.00 0.05 2.09 ind:imp:3p; +terminais terminer VER 142.38 100.00 0.56 0.27 ind:imp:1s; +terminaison terminaison NOM f s 0.36 0.41 0.17 0.00 +terminaisons terminaison NOM f p 0.36 0.41 0.20 0.41 +terminait terminer VER 142.38 100.00 0.41 7.91 ind:imp:3s; +terminal terminal NOM m s 5.61 0.88 2.08 0.14 +terminale terminal NOM f s 5.61 0.88 2.94 0.61 +terminales terminal NOM f p 5.61 0.88 0.36 0.14 +terminant terminer VER 142.38 100.00 0.14 2.43 par:pre; +terminateur terminateur NOM m s 0.02 0.00 0.02 0.00 +terminatrice terminateur ADJ f s 0.01 0.00 0.01 0.00 +terminaux terminal NOM m p 5.61 0.88 0.23 0.00 +termine terminer VER 142.38 100.00 14.90 9.86 imp:pre:2s;ind:pre:1s;ind:pre:3s; +terminent terminer VER 142.38 100.00 1.14 1.49 ind:pre:3p; +terminer terminer VER 142.38 100.00 18.04 13.18 inf; +terminera terminer VER 142.38 100.00 1.35 0.34 ind:fut:3s; +terminerai terminer VER 142.38 100.00 0.88 0.34 ind:fut:1s; +termineraient terminer VER 142.38 100.00 0.03 0.20 cnd:pre:3p; +terminerait terminer VER 142.38 100.00 0.41 1.28 cnd:pre:3s; +termineras terminer VER 142.38 100.00 0.08 0.07 ind:fut:2s; +terminerez terminer VER 142.38 100.00 0.15 0.14 ind:fut:2p; +terminerons terminer VER 142.38 100.00 0.24 0.00 ind:fut:1p; +termineront terminer VER 142.38 100.00 0.04 0.14 ind:fut:3p; +termines terminer VER 142.38 100.00 0.82 0.07 ind:pre:2s; +terminez terminer VER 142.38 100.00 0.85 0.00 imp:pre:2p;ind:pre:2p; +terminiez terminer VER 142.38 100.00 0.03 0.00 ind:imp:2p; +terminions terminer VER 142.38 100.00 0.02 0.20 ind:imp:1p; +terminologie terminologie NOM f s 0.46 0.27 0.46 0.27 +terminologique terminologique ADJ s 0.00 0.07 0.00 0.07 +terminons terminer VER 142.38 100.00 0.57 0.14 imp:pre:1p;ind:pre:1p; +terminât terminer VER 142.38 100.00 0.00 0.34 sub:imp:3s; +terminèrent terminer VER 142.38 100.00 0.01 0.47 ind:pas:3p; +terminé terminer VER m s 142.38 100.00 78.47 34.93 par:pas; +terminée terminer VER f s 142.38 100.00 18.61 12.70 par:pas; +terminées terminer VER f p 142.38 100.00 2.34 2.91 par:pas; +terminés terminer VER m p 142.38 100.00 1.92 2.64 par:pas; +terminus terminus NOM m 3.30 5.00 3.30 5.00 +termite termite NOM m s 2.23 1.96 0.35 0.00 +termites termite NOM m p 2.23 1.96 1.88 1.96 +termitière termitière NOM f s 0.00 0.81 0.00 0.61 +termitières termitière NOM f p 0.00 0.81 0.00 0.20 +ternaire ternaire ADJ s 0.00 0.14 0.00 0.14 +terne terne ADJ s 2.00 16.15 1.36 9.73 +ternes terne ADJ p 2.00 16.15 0.64 6.42 +terni ternir VER m s 1.32 6.28 0.35 1.01 par:pas; +ternie ternir VER f s 1.32 6.28 0.20 0.34 par:pas; +ternies ternir VER f p 1.32 6.28 0.01 0.34 par:pas; +ternir ternir VER 1.32 6.28 0.35 1.49 inf; +ternirai ternir VER 1.32 6.28 0.01 0.00 ind:fut:1s; +ternirait ternir VER 1.32 6.28 0.06 0.07 cnd:pre:3s; +ternis ternir VER m p 1.32 6.28 0.04 0.34 ind:pre:2s;par:pas; +ternissaient ternir VER 1.32 6.28 0.00 0.14 ind:imp:3p; +ternissait ternir VER 1.32 6.28 0.00 1.22 ind:imp:3s; +ternissant ternir VER 1.32 6.28 0.00 0.07 par:pre; +ternisse ternir VER 1.32 6.28 0.15 0.14 sub:pre:3s; +ternissent ternir VER 1.32 6.28 0.05 0.14 ind:pre:3p; +ternit ternir VER 1.32 6.28 0.10 1.01 ind:pre:3s;ind:pas:3s; +terra_incognita terra_incognita NOM f s 0.02 0.34 0.02 0.34 +terra terrer VER 2.62 7.70 0.90 0.41 ind:pas:3s;;ind:pas:3s; +terrage terrage NOM m s 0.00 0.54 0.00 0.54 +terrai terrer VER 2.62 7.70 0.00 0.07 ind:pas:1s; +terraient terrer VER 2.62 7.70 0.03 0.20 ind:imp:3p; +terrain terrain NOM m s 52.58 74.73 49.12 64.86 +terrains terrain NOM m p 52.58 74.73 3.46 9.86 +terrait terrer VER 2.62 7.70 0.05 0.54 ind:imp:3s; +terramycine terramycine NOM f s 0.14 0.00 0.14 0.00 +terrant terrer VER 2.62 7.70 0.00 0.20 par:pre; +terraplane terraplane NOM m s 0.02 0.00 0.02 0.00 +terrarium terrarium NOM m s 0.06 0.00 0.06 0.00 +terrassa terrasser VER 2.48 5.00 0.23 0.34 ind:pas:3s; +terrassai terrasser VER 2.48 5.00 0.00 0.14 ind:pas:1s; +terrassaient terrasser VER 2.48 5.00 0.00 0.14 ind:imp:3p; +terrassait terrasser VER 2.48 5.00 0.00 0.27 ind:imp:3s; +terrassant terrasser VER 2.48 5.00 0.00 0.27 par:pre; +terrasse terrasse NOM f s 10.57 74.05 9.66 61.15 +terrassement terrassement NOM m s 0.02 0.95 0.01 0.68 +terrassements terrassement NOM m p 0.02 0.95 0.01 0.27 +terrasser terrasser VER 2.48 5.00 0.37 0.34 inf; +terrasserait terrasser VER 2.48 5.00 0.00 0.20 cnd:pre:3s; +terrasses terrasse NOM f p 10.57 74.05 0.92 12.91 +terrassier terrassier NOM m s 0.36 2.97 0.15 1.15 +terrassiers terrassier NOM m p 0.36 2.97 0.22 1.82 +terrasson terrasson NOM m s 0.00 0.14 0.00 0.14 +terrassât terrasser VER 2.48 5.00 0.00 0.07 sub:imp:3s; +terrassèrent terrasser VER 2.48 5.00 0.00 0.07 ind:pas:3p; +terrassé terrasser VER m s 2.48 5.00 1.29 1.76 par:pas; +terrassée terrasser VER f s 2.48 5.00 0.18 0.81 par:pas; +terrassées terrasser VER f p 2.48 5.00 0.02 0.00 par:pas; +terrassés terrasser VER m p 2.48 5.00 0.07 0.14 par:pas; +terre_neuvas terre_neuvas NOM m 0.00 0.34 0.00 0.34 +terre_neuve terre_neuve NOM m 0.03 0.27 0.03 0.27 +terre_neuvien terre_neuvien ADJ m s 0.01 0.00 0.01 0.00 +terre_neuvien terre_neuvien NOM m s 0.01 0.00 0.01 0.00 +terre_à_terre terre_à_terre ADJ f s 0.00 0.20 0.00 0.20 +terre_plein terre_plein NOM m s 0.20 5.81 0.20 5.74 +terre_plein terre_plein NOM m p 0.20 5.81 0.00 0.07 +terre terre NOM f s 294.45 452.91 276.29 420.88 +terreau terreau NOM m s 0.19 3.78 0.18 3.72 +terreaux terreau NOM m p 0.19 3.78 0.01 0.07 +terrent terrer VER 2.62 7.70 0.26 0.34 ind:pre:3p; +terrer terrer VER 2.62 7.70 0.46 1.96 inf; +terrerait terrer VER 2.62 7.70 0.02 0.00 cnd:pre:3s; +terreront terrer VER 2.62 7.70 0.01 0.07 ind:fut:3p; +terres terre NOM f p 294.45 452.91 18.16 32.03 +terrestre terrestre ADJ s 6.96 12.57 4.92 7.36 +terrestres terrestre ADJ p 6.96 12.57 2.04 5.20 +terreur terreur NOM f s 15.18 27.09 13.87 23.78 +terreurs terreur NOM f p 15.18 27.09 1.30 3.31 +terreuse terreuse ADJ f s 0.06 0.00 0.06 0.00 +terreuses terreux ADJ f p 0.47 5.88 0.12 1.01 +terreux terreux ADJ m 0.47 5.88 0.35 2.50 +terrez terrer VER 2.62 7.70 0.02 0.00 ind:pre:2p; +terri terri NOM m s 0.43 0.00 0.43 0.00 +terrible terrible ADJ s 87.66 88.11 76.56 73.24 +terriblement terriblement ADV 11.88 14.53 11.88 14.53 +terribles terrible ADJ p 87.66 88.11 11.10 14.86 +terrien terrien ADJ m s 4.20 1.82 1.35 0.88 +terrienne terrien ADJ f s 4.20 1.82 1.59 0.20 +terriennes terrien ADJ f p 4.20 1.82 0.63 0.34 +terriens terrien NOM m p 3.59 1.01 1.85 0.54 +terrier terrier NOM m s 1.15 2.91 0.90 2.23 +terriers terrier NOM m p 1.15 2.91 0.25 0.68 +terrifia terrifier VER 8.49 4.86 0.02 0.14 ind:pas:3s; +terrifiaient terrifier VER 8.49 4.86 0.25 0.27 ind:imp:3p; +terrifiait terrifier VER 8.49 4.86 0.39 0.54 ind:imp:3s; +terrifiant terrifiant ADJ m s 8.33 10.34 5.20 4.39 +terrifiante terrifiant ADJ f s 8.33 10.34 2.19 3.31 +terrifiantes terrifiant ADJ f p 8.33 10.34 0.45 1.28 +terrifiants terrifiant ADJ m p 8.33 10.34 0.48 1.35 +terrifie terrifier VER 8.49 4.86 1.15 0.41 ind:pre:1s;ind:pre:3s; +terrifient terrifier VER 8.49 4.86 0.14 0.27 ind:pre:3p; +terrifier terrifier VER 8.49 4.86 0.19 0.14 inf; +terrifierait terrifier VER 8.49 4.86 0.11 0.00 cnd:pre:3s; +terrifiez terrifier VER 8.49 4.86 0.08 0.00 imp:pre:2p;ind:pre:2p; +terrifions terrifier VER 8.49 4.86 0.01 0.00 ind:pre:1p; +terrifique terrifique ADJ m s 0.00 0.14 0.00 0.14 +terrifié terrifier VER m s 8.49 4.86 2.61 1.76 par:pas; +terrifiée terrifier VER f s 8.49 4.86 1.88 0.68 par:pas; +terrifiées terrifier VER f p 8.49 4.86 0.07 0.07 par:pas; +terrifiés terrifier VER m p 8.49 4.86 1.07 0.14 par:pas; +terril terril NOM m s 0.03 0.68 0.02 0.27 +terrils terril NOM m p 0.03 0.68 0.01 0.41 +terrine terrine NOM f s 0.21 3.31 0.20 2.23 +terrines terrine NOM f p 0.21 3.31 0.01 1.08 +territoire territoire NOM m s 19.09 58.24 15.34 36.08 +territoires territoire NOM m p 19.09 58.24 3.75 22.16 +territorial territorial ADJ m s 0.67 3.24 0.08 0.61 +territoriale territorial ADJ f s 0.67 3.24 0.15 1.22 +territorialement territorialement ADV 0.00 0.07 0.00 0.07 +territoriales territorial ADJ f p 0.67 3.24 0.20 1.08 +territorialité territorialité NOM f s 0.05 0.00 0.05 0.00 +territoriaux territorial ADJ m p 0.67 3.24 0.24 0.34 +terroir terroir NOM m s 0.17 1.82 0.17 1.82 +terrons terrer VER 2.62 7.70 0.00 0.07 ind:pre:1p; +terrorisa terroriser VER 7.82 4.59 0.14 0.14 ind:pas:3s; +terrorisaient terroriser VER 7.82 4.59 0.03 0.27 ind:imp:3p; +terrorisait terroriser VER 7.82 4.59 0.30 0.74 ind:imp:3s; +terrorisant terroriser VER 7.82 4.59 0.06 0.34 par:pre; +terrorisante terrorisant ADJ f s 0.03 0.34 0.00 0.07 +terrorisants terrorisant ADJ m p 0.03 0.34 0.01 0.07 +terrorise terroriser VER 7.82 4.59 1.35 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +terrorisent terroriser VER 7.82 4.59 0.55 0.20 ind:pre:3p; +terroriser terroriser VER 7.82 4.59 1.56 0.88 inf; +terroriseront terroriser VER 7.82 4.59 0.01 0.00 ind:fut:3p; +terrorises terroriser VER 7.82 4.59 0.16 0.07 ind:pre:2s; +terrorisez terroriser VER 7.82 4.59 0.05 0.00 ind:pre:2p; +terrorisme terrorisme NOM m s 5.59 1.22 5.59 1.15 +terrorismes terrorisme NOM m p 5.59 1.22 0.00 0.07 +terroriste terroriste NOM s 16.62 2.50 5.87 0.74 +terroristes terroriste NOM p 16.62 2.50 10.75 1.76 +terrorisé terroriser VER m s 7.82 4.59 1.06 0.81 par:pas; +terrorisée terroriser VER f s 7.82 4.59 1.74 0.47 par:pas; +terrorisées terrorisé ADJ f p 1.43 2.97 0.14 0.20 +terrorisés terroriser VER m p 7.82 4.59 0.69 0.34 par:pas; +terré terrer VER m s 2.62 7.70 0.42 0.74 par:pas; +terrée terrer VER f s 2.62 7.70 0.04 0.88 par:pas; +terrées terrer VER f p 2.62 7.70 0.00 0.20 par:pas; +terrés terrer VER m p 2.62 7.70 0.12 0.74 par:pas; +tertiaire tertiaire ADJ s 0.09 0.14 0.06 0.14 +tertiaires tertiaire ADJ m p 0.09 0.14 0.03 0.00 +tertio tertio ADV 1.08 0.81 1.08 0.81 +tertre tertre NOM m s 0.17 2.50 0.16 2.23 +tertres tertre NOM m p 0.17 2.50 0.01 0.27 +tes tes ADJ:pos 690.24 145.00 690.24 145.00 +tesla tesla NOM m s 0.02 0.00 0.02 0.00 +tessiture tessiture NOM f s 0.00 0.41 0.00 0.41 +tesson tesson NOM m s 0.76 2.43 0.48 0.27 +tessons tesson NOM m p 0.76 2.43 0.28 2.16 +test_match test_match NOM m s 0.01 0.00 0.01 0.00 +test test NOM m s 55.38 5.61 34.87 2.91 +testa tester VER 20.66 2.43 0.21 0.54 ind:pas:3s; +testais tester VER 20.66 2.43 0.29 0.00 ind:imp:1s;ind:imp:2s; +testait tester VER 20.66 2.43 0.28 0.14 ind:imp:3s; +testament testament NOM m s 10.90 8.24 10.70 7.70 +testamentaire testamentaire ADJ s 0.47 0.27 0.44 0.07 +testamentaires testamentaire ADJ f p 0.47 0.27 0.04 0.20 +testaments testament NOM m p 10.90 8.24 0.20 0.54 +testant tester VER 20.66 2.43 0.23 0.14 par:pre; +teste tester VER 20.66 2.43 2.76 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +testent tester VER 20.66 2.43 0.53 0.00 ind:pre:3p; +tester tester VER 20.66 2.43 8.73 0.81 inf; +testera tester VER 20.66 2.43 0.03 0.00 ind:fut:3s; +testeras tester VER 20.66 2.43 0.01 0.00 ind:fut:2s; +testerons tester VER 20.66 2.43 0.18 0.00 ind:fut:1p; +testeront tester VER 20.66 2.43 0.01 0.00 ind:fut:3p; +testes tester VER 20.66 2.43 0.37 0.07 ind:pre:2s; +testeur testeur NOM m s 0.17 0.00 0.16 0.00 +testeuse testeur NOM f s 0.17 0.00 0.01 0.00 +testez tester VER 20.66 2.43 1.18 0.00 imp:pre:2p;ind:pre:2p; +testiculaire testiculaire ADJ s 0.07 0.07 0.07 0.07 +testicule testicule NOM m s 2.46 1.89 0.44 0.27 +testicules testicule NOM m p 2.46 1.89 2.02 1.62 +testiez tester VER 20.66 2.43 0.11 0.00 ind:imp:2p; +testions tester VER 20.66 2.43 0.03 0.07 ind:imp:1p; +testons tester VER 20.66 2.43 0.39 0.00 imp:pre:1p;ind:pre:1p; +testostérone testostérone NOM f s 1.18 0.00 1.15 0.00 +testostérones testostérone NOM f p 1.18 0.00 0.03 0.00 +tests test NOM m p 55.38 5.61 20.50 2.70 +testèrent tester VER 20.66 2.43 0.00 0.07 ind:pas:3p; +testé tester VER m s 20.66 2.43 3.88 0.14 par:pas; +testu testu NOM m s 0.00 0.07 0.00 0.07 +testée tester VER f s 20.66 2.43 0.71 0.07 par:pas; +testées tester VER f p 20.66 2.43 0.23 0.00 par:pas; +testés tester VER m p 20.66 2.43 0.48 0.07 par:pas; +tette tette NOM f s 0.14 0.00 0.14 0.00 +teuf_teuf teuf_teuf NOM m s 0.04 0.41 0.04 0.41 +teuton teuton NOM m s 0.14 0.34 0.13 0.14 +teutonique teutonique ADJ s 0.11 0.88 0.00 0.34 +teutoniques teutonique ADJ m p 0.11 0.88 0.11 0.54 +teutonne teuton ADJ f s 0.25 0.74 0.12 0.54 +teutonnes teuton ADJ f p 0.25 0.74 0.00 0.14 +teutons teuton NOM m p 0.14 0.34 0.01 0.20 +tex tex NOM m 1.70 0.14 1.70 0.14 +texan texan NOM m s 0.95 0.61 0.47 0.41 +texane texan ADJ f s 0.79 0.61 0.21 0.07 +texanes texan ADJ f p 0.79 0.61 0.03 0.20 +texans texan NOM m p 0.95 0.61 0.39 0.20 +texte texte NOM m s 20.42 43.24 16.22 31.42 +textes texte NOM m p 20.42 43.24 4.20 11.82 +textile textile ADJ s 0.65 0.88 0.62 0.47 +textiles textile NOM m p 0.72 1.22 0.15 0.20 +texto texto ADV 0.45 0.61 0.45 0.61 +textologie textologie NOM f s 0.00 0.07 0.00 0.07 +textuel textuel ADJ m s 0.03 0.41 0.00 0.27 +textuelle textuel ADJ f s 0.03 0.41 0.01 0.07 +textuellement textuellement ADV 0.03 1.08 0.03 1.08 +textuelles textuel ADJ f p 0.03 0.41 0.01 0.07 +texture texture NOM f s 1.57 1.69 1.33 1.69 +textures texture NOM f p 1.57 1.69 0.25 0.00 +ça ça PRO:dem s 8933.66 2477.64 8933.66 2477.64 +thaï thaï ADJ m s 0.97 0.34 0.52 0.20 +thaïe thaï ADJ f s 0.97 0.34 0.16 0.07 +thaïlandais thaïlandais ADJ m 0.56 0.41 0.40 0.27 +thaïlandaise thaïlandais ADJ f s 0.56 0.41 0.13 0.00 +thaïlandaises thaïlandais ADJ f p 0.56 0.41 0.04 0.14 +thaïs thaï ADJ m p 0.97 0.34 0.29 0.07 +thalamique thalamique ADJ f s 0.01 0.00 0.01 0.00 +thalamus thalamus NOM m 0.13 0.00 0.13 0.00 +thalasso thalasso NOM f s 0.45 0.00 0.45 0.00 +thalassothérapeutes thalassothérapeute NOM p 0.00 0.07 0.00 0.07 +thalassothérapie thalassothérapie NOM f s 0.01 0.20 0.01 0.20 +thalassémie thalassémie NOM f s 0.01 0.00 0.01 0.00 +thaler thaler NOM m s 0.10 0.07 0.05 0.00 +thalers thaler NOM m p 0.10 0.07 0.05 0.07 +thalidomide thalidomide NOM f s 0.05 0.00 0.05 0.00 +thallium thallium NOM m s 0.14 0.00 0.14 0.00 +thalweg thalweg NOM m s 0.00 0.07 0.00 0.07 +thanatologie thanatologie NOM f s 0.01 0.00 0.01 0.00 +thanatologique thanatologique ADJ m s 0.00 0.07 0.00 0.07 +thanatopraxie thanatopraxie NOM f s 0.01 0.00 0.01 0.00 +thanatos thanatos NOM m 0.04 0.00 0.04 0.00 +thanksgiving thanksgiving NOM m s 6.89 0.00 6.89 0.00 +thatchériennes thatchérien ADJ f p 0.00 0.07 0.00 0.07 +thaumaturge thaumaturge NOM s 0.00 0.47 0.00 0.34 +thaumaturges thaumaturge NOM p 0.00 0.47 0.00 0.14 +thaumaturgie thaumaturgie NOM f s 0.00 0.07 0.00 0.07 +thermal thermal ADJ m s 0.83 1.69 0.21 0.54 +thermale thermal ADJ f s 0.83 1.69 0.38 0.74 +thermales thermal ADJ f p 0.83 1.69 0.11 0.41 +thermaux thermal ADJ m p 0.83 1.69 0.14 0.00 +thermes thermes NOM m p 0.55 0.41 0.55 0.41 +thermidor thermidor NOM m s 0.07 0.20 0.07 0.20 +thermidorienne thermidorien ADJ f s 0.00 0.07 0.00 0.07 +thermique thermique ADJ s 2.37 0.47 1.58 0.34 +thermiques thermique ADJ p 2.37 0.47 0.79 0.14 +thermite thermite NOM f s 0.04 0.00 0.04 0.00 +thermo thermo NOM m s 0.10 0.00 0.10 0.00 +thermocollants thermocollant ADJ m p 0.00 0.07 0.00 0.07 +thermodynamique thermodynamique NOM f s 0.09 0.20 0.09 0.20 +thermoformage thermoformage NOM m s 0.00 0.07 0.00 0.07 +thermographe thermographe NOM m s 0.04 0.00 0.04 0.00 +thermographie thermographie NOM f s 0.04 0.00 0.04 0.00 +thermogène thermogène ADJ s 0.00 0.54 0.00 0.54 +thermoluminescence thermoluminescence NOM f s 0.01 0.00 0.01 0.00 +thermomètre thermomètre NOM m s 1.43 5.27 1.37 5.07 +thermomètres thermomètre NOM m p 1.43 5.27 0.06 0.20 +thermonucléaire thermonucléaire ADJ s 0.66 0.14 0.42 0.07 +thermonucléaires thermonucléaire ADJ p 0.66 0.14 0.23 0.07 +thermorégulateur thermorégulateur ADJ m s 0.01 0.00 0.01 0.00 +thermos thermos ADJ s 0.91 2.36 0.91 2.36 +thermosensible thermosensible ADJ m s 0.03 0.00 0.03 0.00 +thermostat thermostat NOM m s 1.31 0.54 1.21 0.54 +thermostats thermostat NOM m p 1.31 0.54 0.10 0.00 +thermoélectriques thermoélectrique ADJ m p 0.01 0.00 0.01 0.00 +thesaurus thesaurus NOM m 0.01 0.00 0.01 0.00 +thessalien thessalien ADJ m s 0.03 0.00 0.02 0.00 +thessaliens thessalien ADJ m p 0.03 0.00 0.01 0.00 +thiamine thiamine NOM f s 0.04 0.00 0.04 0.00 +thibaude thibaude NOM f s 0.00 0.14 0.00 0.14 +çà çà ADV 7.78 21.15 7.78 21.15 +thomas thomas NOM m 4.83 25.81 4.83 25.81 +thomisme thomisme NOM m s 0.00 0.14 0.00 0.14 +thomiste thomiste ADJ m s 0.00 0.14 0.00 0.14 +thon thon NOM m s 5.88 2.16 5.66 1.89 +thonier thonier NOM m s 0.03 0.34 0.03 0.14 +thoniers thonier NOM m p 0.03 0.34 0.00 0.20 +thons thon NOM m p 5.88 2.16 0.23 0.27 +thoracentèse thoracentèse NOM f s 0.04 0.00 0.04 0.00 +thoracique thoracique ADJ s 2.12 1.82 1.89 1.42 +thoraciques thoracique ADJ p 2.12 1.82 0.23 0.41 +thoracotomie thoracotomie NOM f s 0.31 0.00 0.31 0.00 +thorax thorax NOM m 3.62 2.03 3.62 2.03 +thorine thorine NOM f s 0.13 0.00 0.13 0.00 +thoron thoron NOM m s 0.01 0.00 0.01 0.00 +thrace thrace ADJ s 0.14 0.41 0.13 0.20 +thraces thrace ADJ f p 0.14 0.41 0.01 0.20 +ère ère NOM f s 13.23 7.84 12.91 7.64 +ères ère NOM f p 13.23 7.84 0.32 0.20 +thrill thrill NOM m s 0.07 0.00 0.07 0.00 +thriller thriller NOM m s 0.58 0.07 0.55 0.00 +thrillers thriller NOM m p 0.58 0.07 0.03 0.07 +thrombolyse thrombolyse NOM f s 0.01 0.00 0.01 0.00 +thrombolytique thrombolytique ADJ f s 0.01 0.00 0.01 0.00 +thrombose thrombose NOM f s 0.56 0.00 0.56 0.00 +thrombosé thrombosé ADJ m s 0.03 0.00 0.03 0.00 +thrombotique thrombotique ADJ s 0.07 0.00 0.07 0.00 +thrène thrène NOM m s 0.10 0.00 0.10 0.00 +çruti çruti NOM m s 0.00 0.07 0.00 0.07 +ès ès PRE 0.00 1.08 0.00 1.08 +thème thème NOM m s 17.32 14.26 15.49 10.54 +thèmes thème NOM m p 17.32 14.26 1.83 3.72 +thèse thèse NOM f s 10.67 9.32 10.22 7.77 +thèses thèse NOM f p 10.67 9.32 0.46 1.55 +thé thé NOM m s 69.01 44.86 67.84 44.19 +thébaïde thébaïde NOM f s 0.00 0.34 0.00 0.27 +thébaïdes thébaïde NOM f p 0.00 0.34 0.00 0.07 +thébaïne thébaïne NOM f s 0.00 0.07 0.00 0.07 +thug thug NOM m s 0.33 0.14 0.01 0.00 +thugs thug NOM m p 0.33 0.14 0.32 0.14 +théier théier NOM m s 0.01 0.00 0.01 0.00 +théine théine NOM f s 0.01 0.00 0.01 0.00 +théiste théiste ADJ f s 0.02 0.00 0.02 0.00 +théière théière NOM f s 1.00 2.91 0.80 2.43 +théières théière NOM f p 1.00 2.91 0.20 0.47 +thématique thématique NOM f s 0.14 0.07 0.12 0.00 +thématiquement thématiquement ADV 0.00 0.07 0.00 0.07 +thématiques thématique ADJ m p 0.06 0.20 0.03 0.00 +thune thune NOM f s 4.63 5.68 3.52 5.00 +thunes thune NOM f p 4.63 5.68 1.11 0.68 +théo théo NOM s 0.14 0.00 0.14 0.00 +théocratique théocratique ADJ f s 0.00 0.14 0.00 0.14 +théodolite théodolite NOM m s 0.01 0.00 0.01 0.00 +théologales théologal ADJ f p 0.00 0.20 0.00 0.20 +théologie théologie NOM f s 1.97 4.19 1.96 4.19 +théologien théologien NOM m s 0.46 2.09 0.35 0.81 +théologiennes théologien NOM f p 0.46 2.09 0.00 0.07 +théologiens théologien NOM m p 0.46 2.09 0.11 1.22 +théologies théologie NOM f p 1.97 4.19 0.01 0.00 +théologique théologique ADJ s 0.39 1.35 0.29 0.88 +théologiquement théologiquement ADV 0.03 0.00 0.03 0.00 +théologiques théologique ADJ f p 0.39 1.35 0.10 0.47 +théophylline théophylline NOM f s 0.04 0.00 0.04 0.00 +théorbe théorbe NOM m s 0.00 0.34 0.00 0.20 +théorbes théorbe NOM m p 0.00 0.34 0.00 0.14 +théoricien théoricien NOM m s 0.40 1.15 0.25 0.47 +théoricienne théoricien NOM f s 0.40 1.15 0.13 0.00 +théoriciens théoricien NOM m p 0.40 1.15 0.03 0.68 +théorie théorie NOM f s 32.38 15.27 27.29 8.04 +théories théorie NOM f p 32.38 15.27 5.09 7.23 +théorique théorique ADJ s 2.11 3.58 1.76 2.43 +théoriquement théoriquement ADV 2.58 2.70 2.58 2.70 +théoriques théorique ADJ p 2.11 3.58 0.35 1.15 +théorise théoriser VER 0.07 0.00 0.02 0.00 ind:pre:1s;ind:pre:3s; +théoriser théoriser VER 0.07 0.00 0.04 0.00 inf; +théorème théorème NOM m s 0.41 0.81 0.36 0.41 +théorèmes théorème NOM m p 0.41 0.81 0.05 0.41 +théosophes théosophe NOM p 0.00 0.07 0.00 0.07 +théosophie théosophie NOM f s 0.03 0.00 0.03 0.00 +théosophique théosophique ADJ m s 0.00 0.07 0.00 0.07 +théâtral théâtral ADJ m s 1.78 7.97 0.80 3.51 +théâtrale théâtral ADJ f s 1.78 7.97 0.76 3.45 +théâtralement théâtralement ADV 0.02 0.47 0.02 0.47 +théâtrales théâtral ADJ f p 1.78 7.97 0.17 0.88 +théâtralisant théâtraliser VER 0.00 0.20 0.00 0.07 par:pre; +théâtralisé théâtraliser VER m s 0.00 0.20 0.00 0.07 par:pas; +théâtralisée théâtraliser VER f s 0.00 0.20 0.00 0.07 par:pas; +théâtralité théâtralité NOM f s 0.04 0.07 0.04 0.07 +théâtraux théâtral ADJ m p 1.78 7.97 0.05 0.14 +théâtre théâtre NOM m s 41.49 68.18 40.51 64.32 +théâtres théâtre NOM m p 41.49 68.18 0.98 3.85 +théâtreuse théâtreux NOM f s 0.18 0.20 0.02 0.07 +théâtreux théâtreux NOM m 0.18 0.20 0.16 0.14 +thérapeute thérapeute NOM s 3.67 0.07 3.44 0.07 +thérapeutes thérapeute NOM p 3.67 0.07 0.23 0.00 +thérapeutique thérapeutique ADJ s 1.68 0.54 1.30 0.34 +thérapeutiques thérapeutique ADJ p 1.68 0.54 0.38 0.20 +thérapie thérapie NOM f s 13.63 0.07 12.98 0.07 +thérapies thérapie NOM f p 13.63 0.07 0.65 0.00 +thuriféraire thuriféraire NOM m s 0.00 0.34 0.00 0.14 +thuriféraires thuriféraire NOM m p 0.00 0.34 0.00 0.20 +thés thé NOM m p 69.01 44.86 1.17 0.68 +thésard thésard NOM m s 0.08 0.00 0.04 0.00 +thésards thésard NOM m p 0.08 0.00 0.04 0.00 +thésaurise thésauriser VER 0.25 0.41 0.11 0.14 ind:pre:3s; +thésauriser thésauriser VER 0.25 0.41 0.14 0.14 inf; +thésaurisés thésauriser VER m p 0.25 0.41 0.00 0.14 par:pas; +thésaurus thésaurus NOM m 0.01 0.00 0.01 0.00 +thêta thêta NOM m 0.21 0.00 0.21 0.00 +théurgiques théurgique ADJ p 0.00 0.07 0.00 0.07 +thuya thuya NOM m s 0.00 0.27 0.00 0.20 +thuyas thuya NOM m p 0.00 0.27 0.00 0.07 +ève pas ADV 18189.04 8795.20 0.01 0.00 +thym thym NOM m s 1.17 2.09 1.17 2.09 +thymectomie thymectomie NOM f s 0.03 0.00 0.03 0.00 +thymine thymine NOM f s 0.04 0.00 0.04 0.00 +thymus thymus NOM m 0.05 0.00 0.05 0.00 +thyroïde thyroïde NOM f s 0.27 0.14 0.27 0.14 +thyroïdectomie thyroïdectomie NOM f s 0.03 0.00 0.03 0.00 +thyroïdien thyroïdien ADJ m s 0.04 0.00 0.03 0.00 +thyroïdienne thyroïdien ADJ f s 0.04 0.00 0.01 0.00 +thyroxine thyroxine NOM f s 0.02 0.00 0.02 0.00 +thyrses thyrse NOM m p 0.00 0.07 0.00 0.07 +thyréotoxicose thyréotoxicose NOM f s 0.01 0.00 0.01 0.00 +tiama tiama NOM m s 0.17 0.00 0.17 0.00 +tian tian NOM m s 0.18 0.20 0.18 0.20 +tiare tiare NOM f s 0.51 0.88 0.50 0.81 +tiares tiare NOM f p 0.51 0.88 0.01 0.07 +tiaré tiaré NOM m s 0.00 0.07 0.00 0.07 +tibia tibia NOM m s 2.33 3.04 2.02 1.01 +tibial tibial ADJ m s 0.09 0.14 0.04 0.00 +tibiale tibial ADJ f s 0.09 0.14 0.05 0.14 +tibias tibia NOM m p 2.33 3.04 0.30 2.03 +tibétain tibétain ADJ m s 0.53 0.68 0.29 0.27 +tibétaine tibétain ADJ f s 0.53 0.68 0.11 0.07 +tibétaines tibétain ADJ f p 0.53 0.68 0.02 0.07 +tibétains tibétain ADJ m p 0.53 0.68 0.11 0.27 +tic_tac tic_tac NOM m 2.52 2.91 2.52 2.91 +tic tic NOM m s 3.00 9.86 2.47 4.86 +ticheurte ticheurte NOM m s 0.00 0.07 0.00 0.07 +ticket ticket NOM m s 24.25 15.81 13.62 6.15 +tickets ticket NOM m p 24.25 15.81 10.63 9.66 +tics tic NOM m p 3.00 9.86 0.53 5.00 +ticsons ticson NOM m p 0.00 0.14 0.00 0.14 +tictaquer tictaquer VER 0.03 0.00 0.03 0.00 inf; +tie_break tie_break NOM m s 0.02 0.00 0.02 0.00 +tien tien PRO:pos m s 26.21 5.54 26.21 5.54 +tiendra tenir VER 504.69 741.22 12.15 4.59 ind:fut:3s; +tiendrai tenir VER 504.69 741.22 8.61 1.89 ind:fut:1s; +tiendraient tenir VER 504.69 741.22 0.28 1.28 cnd:pre:3p; +tiendrais tenir VER 504.69 741.22 1.36 1.89 cnd:pre:1s;cnd:pre:2s; +tiendrait tenir VER 504.69 741.22 2.39 6.49 cnd:pre:3s; +tiendras tenir VER 504.69 741.22 2.76 0.61 ind:fut:2s; +tiendrez tenir VER 504.69 741.22 1.42 0.74 ind:fut:2p; +tiendriez tenir VER 504.69 741.22 0.28 0.14 cnd:pre:2p; +tiendrons tenir VER 504.69 741.22 1.94 0.74 ind:fut:1p; +tiendront tenir VER 504.69 741.22 1.86 0.68 ind:fut:3p; +tienne tienne PRO:pos f s 25.41 5.81 25.41 5.81 +tiennent tenir VER 504.69 741.22 11.43 24.26 ind:pre:3p; +tiennes tiennes PRO:pos f p 4.09 0.95 4.09 0.95 +tiens_la_moi tiens_la_moi ADJ:pos m s 0.14 0.00 0.14 0.00 +tiens tiens ONO 212.99 81.89 212.99 81.89 +tient tenir VER 504.69 741.22 78.32 96.69 ind:pre:3s; +tierce tiers ADJ f s 0.78 2.97 0.32 0.41 +tiercefeuille tiercefeuille NOM f s 0.00 0.07 0.00 0.07 +tiercelet tiercelet NOM m s 0.00 0.14 0.00 0.07 +tiercelets tiercelet NOM m p 0.00 0.14 0.00 0.07 +tierces tiers ADJ f p 0.78 2.97 0.00 0.14 +tiercé tiercé NOM m s 1.32 2.03 1.32 1.89 +tiercés tiercé NOM m p 1.32 2.03 0.00 0.14 +tiers_monde tiers_monde NOM m s 1.96 0.20 1.96 0.14 +tiers_monde tiers_monde NOM m p 1.96 0.20 0.00 0.07 +tiers_mondisme tiers_mondisme NOM m s 0.00 0.07 0.00 0.07 +tiers_mondiste tiers_mondiste ADJ f s 0.15 0.20 0.15 0.00 +tiers_mondiste tiers_mondiste ADJ m p 0.15 0.20 0.00 0.20 +tiers_ordre tiers_ordre NOM m 0.00 0.07 0.00 0.07 +tiers_point tiers_point NOM m s 0.00 0.14 0.00 0.14 +tiers_état tiers_état NOM m s 0.03 0.00 0.03 0.00 +tiers tiers NOM m 6.24 14.93 6.18 13.85 +tif tif NOM m s 1.71 6.01 0.84 0.27 +tifs tif NOM m p 1.71 6.01 0.86 5.74 +tige tige NOM f s 3.73 22.23 2.39 11.15 +tigelles tigelle NOM f p 0.00 0.20 0.00 0.20 +tiges tige NOM f p 3.73 22.23 1.34 11.08 +tignasse tignasse NOM f s 0.89 4.80 0.87 4.46 +tignasses tignasse NOM f p 0.89 4.80 0.02 0.34 +tigre tigre NOM m s 14.90 8.65 11.14 4.86 +tigres tigre NOM m p 14.90 8.65 2.66 2.50 +tigresse tigre NOM f s 14.90 8.65 1.10 1.08 +tigresses tigresse NOM f p 0.29 0.00 0.29 0.00 +tigré tigrer VER m s 0.02 0.47 0.02 0.27 par:pas; +tigrée tigré ADJ f s 0.01 1.69 0.00 0.41 +tigrées tigré ADJ f p 0.01 1.69 0.00 0.14 +tigrure tigrure NOM f s 0.00 0.07 0.00 0.07 +tigrés tigré ADJ m p 0.01 1.69 0.00 0.54 +tiki tiki NOM m s 0.16 0.00 0.16 0.00 +tilbury tilbury NOM m s 0.00 0.81 0.00 0.74 +tilburys tilbury NOM m p 0.00 0.81 0.00 0.07 +till till NOM m s 0.35 0.00 0.35 0.00 +tillac tillac NOM m s 0.00 0.14 0.00 0.07 +tillacs tillac NOM m p 0.00 0.14 0.00 0.07 +tille tille NOM f s 0.18 0.00 0.12 0.00 +tiller tiller VER 0.01 0.00 0.01 0.00 inf; +tilles tille NOM f p 0.18 0.00 0.07 0.00 +tilleul tilleul NOM m s 1.59 11.01 1.03 5.00 +tilleuls tilleul NOM m p 1.59 11.01 0.56 6.01 +tilt tilt NOM m s 1.11 1.55 1.11 1.49 +tilts tilt NOM m p 1.11 1.55 0.00 0.07 +timbale timbale NOM f s 0.97 2.43 0.60 1.76 +timbales timbale NOM f p 0.97 2.43 0.37 0.68 +timbalier timbalier NOM m s 0.00 0.14 0.00 0.07 +timbaliers timbalier NOM m p 0.00 0.14 0.00 0.07 +timbrage timbrage NOM m s 0.00 0.07 0.00 0.07 +timbrait timbrer VER 1.38 1.22 0.00 0.07 ind:imp:3s; +timbre_poste timbre_poste NOM m s 0.12 1.28 0.11 0.68 +timbre timbre NOM m s 7.86 20.81 1.82 13.18 +timbrer timbrer VER 1.38 1.22 0.05 0.00 inf; +timbre_poste timbre_poste NOM m p 0.12 1.28 0.01 0.61 +timbres timbre NOM m p 7.86 20.81 6.04 7.64 +timbrât timbrer VER 1.38 1.22 0.00 0.07 sub:imp:3s; +timbré timbrer VER m s 1.38 1.22 1.03 0.27 par:pas; +timbrée timbré ADJ f s 1.57 2.36 0.25 1.08 +timbrées timbré ADJ f p 1.57 2.36 0.01 0.14 +timbrés timbré ADJ m p 1.57 2.36 0.48 0.27 +time_sharing time_sharing NOM m s 0.01 0.00 0.01 0.00 +timide timide ADJ s 16.36 25.14 14.18 19.53 +timidement timidement ADV 0.10 11.22 0.10 11.22 +timides timide ADJ p 16.36 25.14 2.18 5.61 +timidité timidité NOM f s 1.75 11.55 1.75 11.15 +timidités timidité NOM f p 1.75 11.55 0.00 0.41 +timing timing NOM m s 3.59 0.14 3.58 0.07 +timings timing NOM m p 3.59 0.14 0.01 0.07 +timon timon NOM m s 0.10 2.09 0.10 2.03 +timonerie timonerie NOM f s 0.09 0.54 0.09 0.54 +timonier timonier NOM m s 1.05 0.68 1.03 0.68 +timoniers timonier NOM m p 1.05 0.68 0.02 0.00 +timons timon NOM m p 0.10 2.09 0.00 0.07 +timoré timoré ADJ m s 0.70 2.09 0.44 0.68 +timorée timoré ADJ f s 0.70 2.09 0.05 0.41 +timorées timoré ADJ f p 0.70 2.09 0.00 0.07 +timorés timoré ADJ m p 0.70 2.09 0.21 0.95 +tin tin NOM m s 0.52 0.20 0.45 0.00 +tine tine NOM f s 0.16 0.00 0.16 0.00 +tinette tinette NOM f s 0.12 1.55 0.12 0.68 +tinettes tinette NOM f p 0.12 1.55 0.00 0.88 +tinrent tenir VER 504.69 741.22 0.01 1.55 ind:pas:3p; +tins tenir VER 504.69 741.22 0.16 2.57 ind:pas:1s;ind:pas:2s; +tinssent tenir VER 504.69 741.22 0.00 0.27 sub:imp:3p; +tint tenir VER 504.69 741.22 0.84 15.20 ind:pas:3s; +tinta tinter VER 0.95 11.76 0.00 0.88 ind:pas:3s; +tintaient tinter VER 0.95 11.76 0.02 0.47 ind:imp:3p; +tintait tinter VER 0.95 11.76 0.17 1.08 ind:imp:3s; +tintamarre tintamarre NOM m s 0.04 3.51 0.04 3.31 +tintamarrent tintamarrer VER 0.00 0.07 0.00 0.07 ind:pre:3p; +tintamarres tintamarre NOM m p 0.04 3.51 0.00 0.20 +tintamarresque tintamarresque ADJ s 0.00 0.41 0.00 0.34 +tintamarresques tintamarresque ADJ p 0.00 0.41 0.00 0.07 +tintant tinter VER 0.95 11.76 0.00 1.15 par:pre; +tinte tinter VER 0.95 11.76 0.39 1.55 imp:pre:2s;ind:pre:3s; +tintement tintement NOM m s 0.95 8.78 0.68 6.82 +tintements tintement NOM m p 0.95 8.78 0.28 1.96 +tintent tinter VER 0.95 11.76 0.07 1.82 ind:pre:3p; +tinter tinter VER 0.95 11.76 0.31 3.92 inf; +tintin tintin ONO 1.08 1.69 1.08 1.69 +tintinnabula tintinnabuler VER 0.01 0.74 0.00 0.07 ind:pas:3s; +tintinnabulaient tintinnabuler VER 0.01 0.74 0.00 0.07 ind:imp:3p; +tintinnabulant tintinnabuler VER 0.01 0.74 0.01 0.07 par:pre; +tintinnabulante tintinnabulant ADJ f s 0.00 0.41 0.00 0.14 +tintinnabulantes tintinnabulant ADJ f p 0.00 0.41 0.00 0.07 +tintinnabulants tintinnabulant ADJ m p 0.00 0.41 0.00 0.07 +tintinnabule tintinnabuler VER 0.01 0.74 0.00 0.14 ind:pre:3s; +tintinnabulement tintinnabulement NOM m s 0.00 0.14 0.00 0.07 +tintinnabulements tintinnabulement NOM m p 0.00 0.14 0.00 0.07 +tintinnabulent tintinnabuler VER 0.01 0.74 0.00 0.34 ind:pre:3p; +tintinnabuler tintinnabuler VER 0.01 0.74 0.00 0.07 inf; +tintouin tintouin NOM m s 0.39 2.09 0.39 1.89 +tintouins tintouin NOM m p 0.39 2.09 0.00 0.20 +tintèrent tinter VER 0.95 11.76 0.00 0.41 ind:pas:3p; +tinté tinter VER m s 0.95 11.76 0.00 0.41 par:pas; +tintés tinter VER m p 0.95 11.76 0.00 0.07 par:pas; +tinée tinée NOM f s 0.00 0.14 0.00 0.14 +tipe tiper VER 0.02 0.00 0.02 0.00 ind:pre:3s; +tipi tipi NOM m s 0.36 0.00 0.32 0.00 +tipis tipi NOM m p 0.36 0.00 0.04 0.00 +tipper tipper VER 0.05 0.00 0.05 0.00 inf; +tipule tipule NOM f s 0.00 0.07 0.00 0.07 +tiqua tiquer VER 0.28 2.91 0.00 0.20 ind:pas:3s; +tiquai tiquer VER 0.28 2.91 0.00 0.07 ind:pas:1s; +tiquaient tiquer VER 0.28 2.91 0.00 0.07 ind:imp:3p; +tiquais tiquer VER 0.28 2.91 0.00 0.14 ind:imp:1s; +tiquait tiquer VER 0.28 2.91 0.01 0.34 ind:imp:3s; +tiquant tiquer VER 0.28 2.91 0.00 0.14 par:pre; +tique tique NOM f s 1.95 0.81 0.72 0.54 +tiquent tiquer VER 0.28 2.91 0.01 0.07 ind:pre:3p; +tiquer tiquer VER 0.28 2.91 0.13 0.47 inf; +tiquerais tiquer VER 0.28 2.91 0.01 0.00 cnd:pre:2s; +tiques tique NOM f p 1.95 0.81 1.23 0.27 +tiqueté tiqueté ADJ m s 0.00 0.07 0.00 0.07 +tiqué tiquer VER m s 0.28 2.91 0.08 0.88 par:pas; +tir tir NOM m s 32.11 18.85 24.54 16.01 +tira tirer VER 415.14 383.24 1.39 39.59 ind:pas:3s; +tirade tirade NOM f s 1.55 4.05 1.25 3.18 +tirades tirade NOM f p 1.55 4.05 0.30 0.88 +tirage tirage NOM m s 3.76 6.01 3.01 5.07 +tirages tirage NOM m p 3.76 6.01 0.75 0.95 +tirai tirer VER 415.14 383.24 0.23 2.43 ind:pas:1s; +tiraient tirer VER 415.14 383.24 1.76 10.47 ind:imp:3p; +tirailla tirailler VER 0.68 3.85 0.00 0.20 ind:pas:3s; +tiraillaient tirailler VER 0.68 3.85 0.00 0.20 ind:imp:3p; +tiraillait tirailler VER 0.68 3.85 0.15 0.68 ind:imp:3s; +tiraillant tirailler VER 0.68 3.85 0.01 0.41 par:pre; +tiraille tirailler VER 0.68 3.85 0.00 0.20 ind:pre:3s; +tiraillement tiraillement NOM m s 0.13 0.95 0.10 0.34 +tiraillements tiraillement NOM m p 0.13 0.95 0.03 0.61 +tiraillent tirailler VER 0.68 3.85 0.01 0.07 ind:pre:3p; +tirailler tirailler VER 0.68 3.85 0.16 0.61 inf; +tiraillerait tirailler VER 0.68 3.85 0.00 0.14 cnd:pre:3s; +tirailleries tiraillerie NOM f p 0.00 0.07 0.00 0.07 +tirailleur tirailleur NOM m s 0.12 6.49 0.04 0.88 +tirailleurs tirailleur NOM m p 0.12 6.49 0.08 5.61 +tiraillez tirailler VER 0.68 3.85 0.01 0.00 imp:pre:2p; +tiraillons tirailler VER 0.68 3.85 0.00 0.07 ind:pre:1p; +tiraillé tirailler VER m s 0.68 3.85 0.26 0.95 par:pas; +tiraillée tirailler VER f s 0.68 3.85 0.07 0.07 par:pas; +tiraillées tirailler VER f p 0.68 3.85 0.00 0.07 par:pas; +tiraillés tirailler VER m p 0.68 3.85 0.01 0.20 par:pas; +tirais tirer VER 415.14 383.24 1.71 3.24 ind:imp:1s;ind:imp:2s; +tirait tirer VER 415.14 383.24 3.97 34.86 ind:imp:3s; +tiramisu tiramisu NOM m s 0.24 0.00 0.24 0.00 +tirant tirer VER 415.14 383.24 2.66 25.95 par:pre; +tirants tirant NOM m p 0.33 1.89 0.02 0.20 +tiras tirer VER 415.14 383.24 0.00 0.07 ind:pas:2s; +tirassent tirasser VER 0.00 0.07 0.00 0.07 ind:pre:3p; +tire_au_cul tire_au_cul NOM m 0.02 0.00 0.02 0.00 +tire_au_flanc tire_au_flanc NOM m 0.51 0.34 0.51 0.34 +tire_botte tire_botte NOM m s 0.01 0.07 0.01 0.07 +tire_bouchon tire_bouchon NOM m s 0.93 2.43 0.90 2.16 +tire_bouchonner tire_bouchonner VER 0.02 0.88 0.00 0.14 ind:imp:3p; +tire_bouchonner tire_bouchonner VER 0.02 0.88 0.00 0.07 par:pre; +tire_bouchonner tire_bouchonner VER 0.02 0.88 0.01 0.27 ind:pre:3s; +tire_bouchonner tire_bouchonner VER 0.02 0.88 0.01 0.07 ind:pre:3p; +tire_bouchonner tire_bouchonner VER m s 0.02 0.88 0.00 0.27 par:pas; +tire_bouchonner tire_bouchonner VER m p 0.02 0.88 0.00 0.07 par:pas; +tire_bouchon tire_bouchon NOM m p 0.93 2.43 0.03 0.27 +tire_bouton tire_bouton NOM m s 0.00 0.07 0.00 0.07 +tire_d_aile tire_d_aile NOM f s 0.02 0.00 0.02 0.00 +tire_fesse tire_fesse NOM f s 0.01 0.00 0.01 0.00 +tire_jus tire_jus NOM m 0.00 0.20 0.00 0.20 +tire_laine tire_laine NOM m 0.02 0.07 0.02 0.07 +tire_lait tire_lait NOM m 0.07 0.00 0.07 0.00 +tire_larigot tire_larigot NOM f s 0.00 0.07 0.00 0.07 +tire_ligne tire_ligne NOM m s 0.00 0.34 0.00 0.20 +tire_ligne tire_ligne NOM m p 0.00 0.34 0.00 0.14 +tire_lire tire_lire NOM m 0.00 0.14 0.00 0.14 +tire tirer VER 415.14 383.24 107.25 55.14 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tirebouchonner tirebouchonner VER 0.00 0.34 0.00 0.14 inf; +tirebouchonné tirebouchonner VER m s 0.00 0.34 0.00 0.14 par:pas; +tirebouchonnée tirebouchonner VER f s 0.00 0.34 0.00 0.07 par:pas; +tirelire tirelire NOM f s 1.43 2.16 1.39 2.09 +tirelirent tirelirer VER 0.00 0.07 0.00 0.07 ind:pre:3p; +tirelires tirelire NOM f p 1.43 2.16 0.03 0.07 +tirent tirer VER 415.14 383.24 10.30 10.95 ind:pre:3p;sub:pre:3p; +tirer tirer VER 415.14 383.24 113.71 99.73 inf;;inf;;inf;;inf;; +tirera tirer VER 415.14 383.24 5.81 2.16 ind:fut:3s; +tirerai tirer VER 415.14 383.24 2.57 1.08 ind:fut:1s; +tireraient tirer VER 415.14 383.24 0.21 0.88 cnd:pre:3p; +tirerais tirer VER 415.14 383.24 1.54 0.61 cnd:pre:1s;cnd:pre:2s; +tirerait tirer VER 415.14 383.24 0.76 3.24 cnd:pre:3s; +tireras tirer VER 415.14 383.24 2.94 0.54 ind:fut:2s; +tirerez tirer VER 415.14 383.24 2.13 0.54 ind:fut:2p; +tireriez tirer VER 415.14 383.24 0.27 0.07 cnd:pre:2p; +tirerions tirer VER 415.14 383.24 0.00 0.07 cnd:pre:1p; +tirerons tirer VER 415.14 383.24 1.02 0.47 ind:fut:1p; +tireront tirer VER 415.14 383.24 1.75 0.61 ind:fut:3p; +tires tirer VER 415.14 383.24 11.70 2.09 ind:pre:2s;sub:pre:2s; +tiret tiret NOM m s 0.20 0.54 0.20 0.27 +tirets tiret NOM m p 0.20 0.54 0.00 0.27 +tirette tirette NOM f s 0.04 1.22 0.03 0.41 +tirettes tirette NOM f p 0.04 1.22 0.01 0.81 +tireur tireur NOM m s 18.07 8.72 12.83 5.41 +tireurs tireur NOM m p 18.07 8.72 5.08 2.64 +tireuse tireur NOM f s 18.07 8.72 0.16 0.54 +tireuses tireuse NOM f p 0.02 0.00 0.02 0.00 +tirez tirer VER 415.14 383.24 45.90 3.51 imp:pre:2p;ind:pre:2p; +tiriez tirer VER 415.14 383.24 0.42 0.20 ind:imp:2p; +tirions tirer VER 415.14 383.24 0.05 0.81 ind:imp:1p;sub:pre:1p; +tiroir_caisse tiroir_caisse NOM m s 0.49 2.16 0.48 2.03 +tiroir tiroir NOM m s 14.65 37.09 12.18 26.22 +tiroir_caisse tiroir_caisse NOM m p 0.49 2.16 0.01 0.14 +tiroirs tiroir NOM m p 14.65 37.09 2.47 10.88 +tirâmes tirer VER 415.14 383.24 0.00 0.07 ind:pas:1p; +tirons tirer VER 415.14 383.24 6.13 1.82 imp:pre:1p;ind:pre:1p; +tirât tirer VER 415.14 383.24 0.00 0.34 sub:imp:3s; +tirs tir NOM m p 32.11 18.85 7.57 2.84 +tirèrent tirer VER 415.14 383.24 0.48 2.03 ind:pas:3p; +tiré tirer VER m s 415.14 383.24 76.78 53.04 par:pas; +tirée tirer VER f s 415.14 383.24 6.45 10.20 par:pas; +tirées tirer VER f p 415.14 383.24 1.16 2.77 par:pas; +tirés tirer VER m p 415.14 383.24 4.11 13.65 par:pas; +tisa tiser VER 0.28 0.14 0.00 0.14 ind:pas:3s; +tisane tisane NOM f s 2.86 4.80 2.15 3.78 +tisanes tisane NOM f p 2.86 4.80 0.72 1.01 +tisanière tisanière NOM f s 0.00 0.14 0.00 0.14 +tisané tisaner VER m s 0.00 0.20 0.00 0.20 par:pas; +tiser tiser VER 0.28 0.14 0.28 0.00 inf; +tison tison NOM m s 0.23 2.16 0.13 0.74 +tisonna tisonner VER 0.02 1.22 0.00 0.41 ind:pas:3s; +tisonnait tisonner VER 0.02 1.22 0.01 0.14 ind:imp:3s; +tisonnant tisonner VER 0.02 1.22 0.00 0.27 par:pre; +tisonne tisonner VER 0.02 1.22 0.00 0.07 ind:pre:3s; +tisonnent tisonner VER 0.02 1.22 0.00 0.14 ind:pre:3p; +tisonner tisonner VER 0.02 1.22 0.01 0.14 inf; +tisonnier tisonnier NOM m s 1.01 0.95 0.98 0.88 +tisonniers tisonnier NOM m p 1.01 0.95 0.04 0.07 +tisonné tisonner VER m s 0.02 1.22 0.00 0.07 par:pas; +tisonnés tisonné ADJ m p 0.00 0.14 0.00 0.07 +tisons tison NOM m p 0.23 2.16 0.10 1.42 +tissa tisser VER 2.97 11.15 0.06 0.00 ind:pas:3s; +tissage tissage NOM m s 0.26 1.55 0.25 1.49 +tissages tissage NOM m p 0.26 1.55 0.01 0.07 +tissaient tisser VER 2.97 11.15 0.00 0.61 ind:imp:3p; +tissais tisser VER 2.97 11.15 0.01 0.00 ind:imp:2s; +tissait tisser VER 2.97 11.15 0.03 1.22 ind:imp:3s; +tissant tisser VER 2.97 11.15 0.01 0.61 par:pre; +tisse tisser VER 2.97 11.15 0.87 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tissent tisser VER 2.97 11.15 0.14 0.74 ind:pre:3p; +tisser tisser VER 2.97 11.15 0.58 2.36 inf; +tisserai tisser VER 2.97 11.15 0.02 0.00 ind:fut:1s; +tisserais tisser VER 2.97 11.15 0.01 0.00 cnd:pre:1s; +tisserait tisser VER 2.97 11.15 0.01 0.07 cnd:pre:3s; +tisserand tisserand NOM m s 0.34 1.08 0.11 0.34 +tisserande tisserand NOM f s 0.34 1.08 0.21 0.07 +tisserands tisserand NOM m p 0.34 1.08 0.02 0.68 +tisserons tisser VER 2.97 11.15 0.01 0.07 ind:fut:1p; +tisseur tisseur NOM m s 0.44 0.47 0.00 0.34 +tisseuse tisseur NOM f s 0.44 0.47 0.44 0.14 +tissez tisser VER 2.97 11.15 0.29 0.00 imp:pre:2p;ind:pre:2p; +tissons tisser VER 2.97 11.15 0.01 0.07 ind:pre:1p; +tissât tisser VER 2.97 11.15 0.00 0.07 sub:imp:3s; +tissèrent tisser VER 2.97 11.15 0.00 0.07 ind:pas:3p; +tissu_éponge tissu_éponge NOM m s 0.00 0.41 0.00 0.41 +tissé tisser VER m s 2.97 11.15 0.73 1.55 par:pas; +tissu tissu NOM m s 15.69 34.66 9.21 25.95 +tissée tisser VER f s 2.97 11.15 0.13 1.55 par:pas; +tissue tissu ADJ f s 0.98 1.69 0.07 0.00 +tissées tissé ADJ f p 0.04 0.74 0.01 0.00 +tissues tissu ADJ f p 0.98 1.69 0.00 0.14 +tissulaire tissulaire ADJ s 0.33 0.07 0.28 0.00 +tissulaires tissulaire ADJ p 0.33 0.07 0.05 0.07 +tissés tisser VER m p 2.97 11.15 0.05 0.88 par:pas; +tissus tissu NOM m p 15.69 34.66 6.48 8.72 +tissuterie tissuterie NOM f s 0.00 0.14 0.00 0.14 +tissutier tissutier NOM m s 0.00 0.07 0.00 0.07 +titan titan NOM m s 1.33 0.88 1.06 0.68 +titane titane NOM m s 1.69 0.20 1.69 0.20 +titanesque titanesque ADJ s 0.25 0.88 0.21 0.74 +titanesques titanesque ADJ p 0.25 0.88 0.03 0.14 +titanique titanique ADJ m s 0.01 0.00 0.01 0.00 +titans titan NOM m p 1.33 0.88 0.27 0.20 +tiède tiède ADJ s 3.85 44.73 3.35 36.69 +tièdement tièdement ADV 0.00 0.14 0.00 0.14 +tièdes tiède ADJ p 3.85 44.73 0.50 8.04 +titi titi NOM m s 4.79 6.28 4.79 6.15 +titilla titiller VER 1.10 1.69 0.00 0.07 ind:pas:3s; +titillaient titiller VER 1.10 1.69 0.03 0.07 ind:imp:3p; +titillais titiller VER 1.10 1.69 0.02 0.07 ind:imp:1s;ind:imp:2s; +titillait titiller VER 1.10 1.69 0.04 0.41 ind:imp:3s; +titillant titiller VER 1.10 1.69 0.03 0.07 par:pre; +titillation titillation NOM f s 0.00 0.27 0.00 0.20 +titillations titillation NOM f p 0.00 0.27 0.00 0.07 +titille titiller VER 1.10 1.69 0.48 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +titillement titillement NOM m s 0.02 0.20 0.00 0.14 +titillements titillement NOM m p 0.02 0.20 0.02 0.07 +titillent titiller VER 1.10 1.69 0.04 0.00 ind:pre:3p; +titiller titiller VER 1.10 1.69 0.36 0.34 inf; +titillera titiller VER 1.10 1.69 0.01 0.00 ind:fut:3s; +titillé titiller VER m s 1.10 1.69 0.09 0.00 par:pas; +titillées titiller VER f p 1.10 1.69 0.00 0.14 par:pas; +titillés titiller VER m p 1.10 1.69 0.00 0.14 par:pas; +titis titi NOM m p 4.79 6.28 0.00 0.14 +titisme titisme NOM m s 0.00 0.14 0.00 0.14 +titra titrer VER 1.75 1.08 1.10 0.07 ind:pas:3s; +titrage titrage NOM m s 0.31 0.00 0.31 0.00 +titrait titrer VER 1.75 1.08 0.00 0.27 ind:imp:3s; +titre titre NOM m s 41.35 71.22 32.40 53.04 +titrer titrer VER 1.75 1.08 0.03 0.34 inf; +titres titre NOM m p 41.35 71.22 8.95 18.18 +titré titré ADJ m s 0.46 0.61 0.28 0.20 +titrée titrer VER f s 1.75 1.08 0.01 0.00 par:pas; +titrées titré ADJ f p 0.46 0.61 0.15 0.07 +titrés titré ADJ m p 0.46 0.61 0.01 0.34 +tituba tituber VER 1.34 13.31 0.01 0.74 ind:pas:3s; +titubai tituber VER 1.34 13.31 0.00 0.07 ind:pas:1s; +titubaient tituber VER 1.34 13.31 0.00 0.47 ind:imp:3p; +titubais tituber VER 1.34 13.31 0.13 0.20 ind:imp:1s;ind:imp:2s; +titubait tituber VER 1.34 13.31 0.06 1.96 ind:imp:3s; +titubant tituber VER 1.34 13.31 0.28 5.61 par:pre; +titubante titubant ADJ f s 0.24 3.78 0.02 1.49 +titubantes titubant ADJ f p 0.24 3.78 0.01 0.20 +titubants titubant ADJ m p 0.24 3.78 0.20 0.81 +titubation titubation NOM f s 0.00 0.20 0.00 0.14 +titubations titubation NOM f p 0.00 0.20 0.00 0.07 +titube tituber VER 1.34 13.31 0.31 2.30 imp:pre:2s;ind:pre:1s;ind:pre:3s; +titubement titubement NOM m s 0.00 0.07 0.00 0.07 +titubent tituber VER 1.34 13.31 0.24 0.14 ind:pre:3p; +tituber tituber VER 1.34 13.31 0.13 1.35 inf; +titubez tituber VER 1.34 13.31 0.04 0.00 imp:pre:2p;ind:pre:2p; +titubiez tituber VER 1.34 13.31 0.02 0.00 ind:imp:2p; +titubions tituber VER 1.34 13.31 0.00 0.07 ind:imp:1p; +titubèrent tituber VER 1.34 13.31 0.01 0.07 ind:pas:3p; +titubé tituber VER m s 1.34 13.31 0.11 0.34 par:pas; +titulaire titulaire NOM s 1.80 0.95 1.27 0.61 +titulaires titulaire NOM p 1.80 0.95 0.53 0.34 +titularisation titularisation NOM f s 0.13 0.00 0.13 0.00 +titulariser titulariser VER 0.22 0.07 0.03 0.00 inf; +titularisé titulariser VER m s 0.22 0.07 0.06 0.00 par:pas; +titularisée titulariser VER f s 0.22 0.07 0.13 0.07 par:pas; +tiédasse tiédasse ADJ s 0.01 0.61 0.00 0.54 +tiédasses tiédasse ADJ p 0.01 0.61 0.01 0.07 +tiédeur tiédeur NOM f s 0.28 10.27 0.28 10.00 +tiédeurs tiédeur NOM f p 0.28 10.27 0.00 0.27 +tiédi tiédir VER m s 0.17 2.16 0.00 0.20 par:pas; +tiédie tiédir VER f s 0.17 2.16 0.00 0.34 par:pas; +tiédies tiédir VER f p 0.17 2.16 0.00 0.07 par:pas; +tiédir tiédir VER 0.17 2.16 0.01 0.61 inf; +tiédirait tiédir VER 0.17 2.16 0.00 0.07 cnd:pre:3s; +tiédis tiédir VER m p 0.17 2.16 0.00 0.07 par:pas; +tiédissaient tiédir VER 0.17 2.16 0.00 0.14 ind:imp:3p; +tiédissait tiédir VER 0.17 2.16 0.00 0.27 ind:imp:3s; +tiédissant tiédir VER 0.17 2.16 0.00 0.14 par:pre; +tiédissent tiédir VER 0.17 2.16 0.00 0.07 ind:pre:3p; +tiédit tiédir VER 0.17 2.16 0.16 0.20 ind:pre:3s;ind:pas:3s; +to to PRO:per f s 0.01 0.00 0.01 0.00 +toast toast NOM m s 16.30 4.39 13.73 1.96 +toaster toaster NOM m s 0.45 0.00 0.45 0.00 +toasteur toasteur NOM m s 0.17 0.00 0.17 0.00 +toasts toast NOM m p 16.30 4.39 2.56 2.43 +toasté toaster VER m s 0.09 0.00 0.07 0.00 par:pas; +toboggan toboggan NOM m s 0.86 1.69 0.59 1.22 +toboggans toboggan NOM m p 0.86 1.69 0.28 0.47 +toc toc ADJ 4.83 7.09 4.83 7.09 +tocade tocade NOM f s 0.30 0.00 0.30 0.00 +tocante tocante NOM f s 0.06 0.54 0.06 0.54 +tocard tocard NOM m s 1.27 1.08 0.94 0.74 +tocarde tocard ADJ f s 0.39 1.15 0.09 0.27 +tocardes tocard ADJ f p 0.39 1.15 0.00 0.07 +tocards tocard NOM m p 1.27 1.08 0.33 0.34 +toccata toccata NOM f s 0.04 0.07 0.04 0.07 +tâcha tâcher VER 11.41 27.50 0.00 1.35 ind:pas:3s; +tâchai tâcher VER 11.41 27.50 0.00 0.81 ind:pas:1s; +tâchaient tâcher VER 11.41 27.50 0.00 0.74 ind:imp:3p; +tâchais tâcher VER 11.41 27.50 0.02 1.35 ind:imp:1s; +tâchait tâcher VER 11.41 27.50 0.13 2.77 ind:imp:3s; +tâchant tâcher VER 11.41 27.50 0.15 2.43 par:pre; +tâche tâche NOM f s 31.01 44.53 25.20 35.95 +tâchent tâcher VER 11.41 27.50 0.00 0.61 ind:pre:3p; +tâcher tâcher VER 11.41 27.50 2.31 6.35 inf; +tâchera tâcher VER 11.41 27.50 0.34 0.41 ind:fut:3s; +tâcherai tâcher VER 11.41 27.50 1.10 1.62 ind:fut:1s; +tâcheraient tâcher VER 11.41 27.50 0.00 0.07 cnd:pre:3p; +tâcherait tâcher VER 11.41 27.50 0.00 0.54 cnd:pre:3s; +tâcheras tâcher VER 11.41 27.50 0.02 0.00 ind:fut:2s; +tâcherez tâcher VER 11.41 27.50 0.00 0.27 ind:fut:2p; +tâcheron tâcheron NOM m s 0.05 0.81 0.01 0.20 +tâcherons tâcher VER 11.41 27.50 0.13 0.14 ind:fut:1p; +tâcheront tâcher VER 11.41 27.50 0.01 0.07 ind:fut:3p; +tâches tâche NOM f p 31.01 44.53 5.81 8.58 +tâchez tâcher VER 11.41 27.50 4.41 1.96 imp:pre:2p;ind:pre:2p; +tâchions tâcher VER 11.41 27.50 0.00 0.68 ind:imp:1p; +tâchons tâcher VER 11.41 27.50 1.31 0.47 imp:pre:1p;ind:pre:1p; +tâchât tâcher VER 11.41 27.50 0.00 0.07 sub:imp:3s; +tâchèrent tâcher VER 11.41 27.50 0.00 0.07 ind:pas:3p; +tâché tâcher VER m s 11.41 27.50 0.33 1.08 par:pas; +tâchée tâcher VER f s 11.41 27.50 0.08 0.07 par:pas; +tâchés tâcher VER m p 11.41 27.50 0.04 0.00 par:pas; +tocs toc NOM m p 2.26 4.05 0.00 0.54 +tocsin tocsin NOM m s 0.48 1.42 0.48 1.28 +tocsins tocsin NOM m p 0.48 1.42 0.00 0.14 +toffee toffee NOM m s 0.01 0.00 0.01 0.00 +tofu tofu NOM m s 1.56 0.00 1.56 0.00 +toge toge NOM f s 0.77 1.55 0.60 1.35 +toges toge NOM f p 0.77 1.55 0.16 0.20 +togolais togolais ADJ m 0.00 0.41 0.00 0.14 +togolaise togolais ADJ f s 0.00 0.41 0.00 0.20 +togolaises togolais ADJ f p 0.00 0.41 0.00 0.07 +tohu_bohu tohu_bohu NOM m 0.18 1.42 0.18 1.42 +toi_même toi_même PRO:per s 45.83 11.89 45.83 11.89 +toi toi PRO:per s 2519.50 450.34 2519.50 450.34 +toilasses toiler VER 0.00 0.27 0.00 0.07 sub:imp:2s; +toile toile NOM f s 17.99 106.62 11.75 81.35 +toiles toile NOM f p 17.99 106.62 6.24 25.27 +toiletta toiletter VER 0.03 0.68 0.00 0.07 ind:pas:3s; +toilettage toilettage NOM m s 0.13 0.00 0.13 0.00 +toilettait toiletter VER 0.03 0.68 0.00 0.14 ind:imp:3s; +toilette toilette NOM f s 62.84 45.68 9.76 32.30 +toiletter toiletter VER 0.03 0.68 0.01 0.20 inf; +toilettes toilette NOM f p 62.84 45.68 53.08 13.38 +toiletteur toiletteur NOM m s 0.04 0.00 0.04 0.00 +toiletté toiletter VER m s 0.03 0.68 0.02 0.14 par:pas; +toilettées toiletter VER f p 0.03 0.68 0.00 0.07 par:pas; +toilettés toiletter VER m p 0.03 0.68 0.00 0.07 par:pas; +toilé toiler VER m s 0.00 0.27 0.00 0.07 par:pas; +toilée toiler VER f s 0.00 0.27 0.00 0.07 par:pas; +toilés toiler VER m p 0.00 0.27 0.00 0.07 par:pas; +toisa toiser VER 0.14 8.38 0.01 3.04 ind:pas:3s; +toisaient toiser VER 0.14 8.38 0.01 0.20 ind:imp:3p; +toisait toiser VER 0.14 8.38 0.00 0.81 ind:imp:3s; +toisant toiser VER 0.14 8.38 0.00 0.95 par:pre; +toise toiser VER 0.14 8.38 0.04 1.35 ind:pre:3s; +toisent toiser VER 0.14 8.38 0.02 0.07 ind:pre:3p; +toiser toiser VER 0.14 8.38 0.03 0.81 inf; +toises toise NOM f p 0.29 1.01 0.27 0.47 +toisez toiser VER 0.14 8.38 0.00 0.07 ind:pre:2p; +toison toison NOM f s 0.69 6.35 0.68 5.74 +toisons toison NOM f p 0.69 6.35 0.01 0.61 +toisèrent toiser VER 0.14 8.38 0.00 0.54 ind:pas:3p; +toisé toiser VER m s 0.14 8.38 0.01 0.14 par:pas; +toisée toiser VER f s 0.14 8.38 0.03 0.20 par:pas; +toisés toiser VER m p 0.14 8.38 0.00 0.20 par:pas; +toit toit NOM m s 49.01 91.76 42.63 54.59 +toits toit NOM m p 49.01 91.76 6.37 37.16 +toiture toiture NOM f s 0.50 7.57 0.28 5.95 +toitures toiture NOM f p 0.50 7.57 0.22 1.62 +tokamak tokamak NOM m s 0.04 0.00 0.04 0.00 +tokay tokay NOM m s 0.00 0.07 0.00 0.07 +tokharien tokharien NOM m s 0.00 0.07 0.00 0.07 +tolar tolar NOM m s 0.08 0.00 0.08 0.00 +tolet tolet NOM m s 0.02 0.27 0.01 0.07 +tolets tolet NOM m p 0.02 0.27 0.01 0.20 +tollé tollé NOM m s 0.19 0.47 0.19 0.47 +tolstoïen tolstoïen ADJ m s 0.00 0.07 0.00 0.07 +tolère tolérer VER 13.05 13.45 2.58 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tolèrent tolérer VER 13.05 13.45 0.28 0.47 ind:pre:3p; +toltèque toltèque ADJ s 0.03 0.14 0.02 0.07 +toltèques toltèque ADJ m p 0.03 0.14 0.01 0.07 +tolu tolu NOM m s 0.00 0.14 0.00 0.14 +toluidine toluidine NOM f s 0.01 0.00 0.01 0.00 +toléra tolérer VER 13.05 13.45 0.02 0.00 ind:pas:3s; +tolérable tolérable ADJ s 0.47 1.49 0.29 1.01 +tolérables tolérable ADJ p 0.47 1.49 0.18 0.47 +toléraient tolérer VER 13.05 13.45 0.11 0.54 ind:imp:3p; +tolérais tolérer VER 13.05 13.45 0.04 0.41 ind:imp:1s; +tolérait tolérer VER 13.05 13.45 0.58 2.30 ind:imp:3s; +tolérance tolérance NOM f s 3.03 4.39 3.03 4.39 +tolérant tolérant ADJ m s 2.44 1.49 1.30 0.74 +tolérante tolérant ADJ f s 2.44 1.49 0.45 0.34 +tolérantes tolérant ADJ f p 2.44 1.49 0.16 0.07 +tolérants tolérant ADJ m p 2.44 1.49 0.54 0.34 +tolérer tolérer VER 13.05 13.45 2.96 2.97 inf; +tolérera tolérer VER 13.05 13.45 0.31 0.14 ind:fut:3s; +tolérerai tolérer VER 13.05 13.45 2.31 0.20 ind:fut:1s; +tolérerais tolérer VER 13.05 13.45 0.15 0.07 cnd:pre:1s; +tolérerait tolérer VER 13.05 13.45 0.07 0.34 cnd:pre:3s; +tolérerions tolérer VER 13.05 13.45 0.00 0.07 cnd:pre:1p; +tolérerons tolérer VER 13.05 13.45 0.24 0.00 ind:fut:1p; +toléreront tolérer VER 13.05 13.45 0.14 0.00 ind:fut:3p; +tolérez tolérer VER 13.05 13.45 0.24 0.07 imp:pre:2p;ind:pre:2p; +tolériez tolérer VER 13.05 13.45 0.01 0.00 ind:imp:2p; +tolérions tolérer VER 13.05 13.45 0.00 0.07 ind:imp:1p; +tolérons tolérer VER 13.05 13.45 0.37 0.07 ind:pre:1p; +tolérât tolérer VER 13.05 13.45 0.00 0.14 sub:imp:3s; +toléré tolérer VER m s 13.05 13.45 1.50 2.30 par:pas; +tolérée tolérer VER f s 13.05 13.45 0.25 0.74 par:pas; +tolérées tolérer VER f p 13.05 13.45 0.06 0.47 par:pas; +tolérés tolérer VER m p 13.05 13.45 0.10 0.20 par:pas; +toluène toluène NOM m s 0.04 0.00 0.04 0.00 +tom_pouce tom_pouce NOM m 0.00 0.54 0.00 0.54 +tom_tom tom_tom NOM m 0.04 0.00 0.04 0.00 +tom tom NOM m s 2.51 0.14 2.51 0.14 +toma tomer VER 0.14 0.00 0.14 0.00 ind:pas:3s; +tomahawk tomahawk NOM m s 0.00 0.27 0.00 0.20 +tomahawks tomahawk NOM m p 0.00 0.27 0.00 0.07 +toman toman NOM m s 0.27 0.00 0.27 0.00 +tomate tomate NOM f s 20.77 13.31 7.88 5.74 +tomates tomate NOM f p 20.77 13.31 12.89 7.57 +tomba tomber VER 407.82 441.42 4.17 31.08 ind:pas:3s; +tombai tomber VER 407.82 441.42 0.23 3.58 ind:pas:1s; +tombaient tomber VER 407.82 441.42 1.49 18.65 ind:imp:3p; +tombais tomber VER 407.82 441.42 1.36 2.43 ind:imp:1s;ind:imp:2s; +tombait tomber VER 407.82 441.42 4.01 49.05 ind:imp:3s; +tombal tombal ADJ m s 2.71 2.70 0.14 0.00 +tombale tombal ADJ f s 2.71 2.70 1.99 1.49 +tombales tombal ADJ f p 2.71 2.70 0.58 1.22 +tombant tomber VER 407.82 441.42 3.26 12.97 par:pre; +tombante tombant ADJ f s 0.88 9.12 0.34 5.00 +tombantes tombant ADJ f p 0.88 9.12 0.10 1.15 +tombants tombant ADJ m p 0.88 9.12 0.05 0.41 +tombe tomber VER 407.82 441.42 66.39 60.27 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tombeau tombeau NOM m s 10.22 11.96 9.51 8.92 +tombeaux tombeau NOM m p 10.22 11.96 0.71 3.04 +tombent tomber VER 407.82 441.42 13.08 17.97 ind:pre:3p; +tomber tomber VER 407.82 441.42 180.25 133.18 inf; +tombera tomber VER 407.82 441.42 6.26 2.16 ind:fut:3s; +tomberai tomber VER 407.82 441.42 0.88 0.74 ind:fut:1s; +tomberaient tomber VER 407.82 441.42 0.28 0.74 cnd:pre:3p; +tomberais tomber VER 407.82 441.42 0.45 0.81 cnd:pre:1s;cnd:pre:2s; +tomberait tomber VER 407.82 441.42 1.56 3.18 cnd:pre:3s; +tomberas tomber VER 407.82 441.42 1.52 0.07 ind:fut:2s; +tombereau tombereau NOM m s 0.01 2.50 0.01 1.15 +tombereaux tombereau NOM m p 0.01 2.50 0.00 1.35 +tomberez tomber VER 407.82 441.42 0.90 0.27 ind:fut:2p; +tomberiez tomber VER 407.82 441.42 0.26 0.07 cnd:pre:2p; +tomberions tomber VER 407.82 441.42 0.16 0.07 cnd:pre:1p; +tomberons tomber VER 407.82 441.42 0.16 0.14 ind:fut:1p; +tomberont tomber VER 407.82 441.42 1.54 0.95 ind:fut:3p; +tombes tombe NOM f p 49.67 34.86 8.34 10.68 +tombeur tombeur NOM m s 2.12 1.01 1.94 0.74 +tombeurs tombeur NOM m p 2.12 1.01 0.17 0.20 +tombeuse tombeur NOM f s 2.12 1.01 0.01 0.07 +tombeuses tombeuse NOM f p 0.01 0.00 0.01 0.00 +tombez tomber VER 407.82 441.42 4.88 1.96 imp:pre:2p;ind:pre:2p; +tombiez tomber VER 407.82 441.42 0.45 0.34 ind:imp:2p; +tombions tomber VER 407.82 441.42 0.17 0.54 ind:imp:1p; +tombola tombola NOM f s 1.23 0.68 1.21 0.61 +tombolas tombola NOM f p 1.23 0.68 0.02 0.07 +tombâmes tomber VER 407.82 441.42 0.01 0.68 ind:pas:1p; +tombons tomber VER 407.82 441.42 0.91 1.08 imp:pre:1p;ind:pre:1p; +tombât tomber VER 407.82 441.42 0.02 1.55 sub:imp:3s; +tombèrent tomber VER 407.82 441.42 0.27 6.08 ind:pas:3p; +tombé tomber VER m s 407.82 441.42 62.89 47.97 par:pas; +tombée tomber VER f s 407.82 441.42 30.49 25.20 par:pas; +tombées tomber VER f p 407.82 441.42 2.15 3.38 par:pas; +tombés tomber VER m p 407.82 441.42 9.63 12.70 par:pas; +tome tome NOM m s 0.88 7.09 0.67 4.66 +tomes tome NOM m p 0.88 7.09 0.21 2.43 +tomettes tomette NOM f p 0.00 0.47 0.00 0.47 +tomme tomme NOM f s 0.07 0.14 0.07 0.07 +tommes tomme NOM f p 0.07 0.14 0.00 0.07 +tommette tommette NOM f s 0.00 0.88 0.00 0.14 +tommettes tommette NOM f p 0.00 0.88 0.00 0.74 +tommies tommies NOM m p 0.12 0.07 0.12 0.07 +tommy tommy NOM m s 0.11 0.00 0.11 0.00 +tomodensitomètre tomodensitomètre NOM m s 0.03 0.00 0.03 0.00 +tomodensitométrie tomodensitométrie NOM f s 0.04 0.00 0.04 0.00 +tomographe tomographe NOM m s 0.03 0.00 0.03 0.00 +tomographie tomographie NOM f s 0.56 0.00 0.56 0.00 +ton ton NOM m s 53.24 146.35 51.73 138.45 +tonal tonal ADJ m s 0.12 0.07 0.02 0.00 +tonale tonal ADJ f s 0.12 0.07 0.10 0.07 +tonalité tonalité NOM f s 1.78 3.04 1.26 2.50 +tonalités tonalité NOM f p 1.78 3.04 0.52 0.54 +tond tondre VER 2.77 4.26 0.48 0.20 ind:pre:3s; +tondais tondre VER 2.77 4.26 0.02 0.00 ind:imp:1s; +tondait tondre VER 2.77 4.26 0.05 0.34 ind:imp:3s; +tondant tondre VER 2.77 4.26 0.04 0.00 par:pre; +tonde tondre VER 2.77 4.26 0.03 0.07 sub:pre:1s;sub:pre:3s; +tondent tondre VER 2.77 4.26 0.05 0.14 ind:pre:3p; +tondes tondre VER 2.77 4.26 0.01 0.00 sub:pre:2s; +tondeur tondeur NOM m s 1.76 2.30 0.04 0.61 +tondeuse tondeur NOM f s 1.76 2.30 1.72 1.49 +tondeuses tondeuse NOM f p 0.28 0.00 0.28 0.00 +tondit tondre VER 2.77 4.26 0.01 0.07 ind:pas:3s; +tondons tondre VER 2.77 4.26 0.02 0.00 imp:pre:1p;ind:pre:1p; +tondrai tondre VER 2.77 4.26 0.02 0.00 ind:fut:1s; +tondrais tondre VER 2.77 4.26 0.16 0.00 cnd:pre:1s; +tondre tondre VER 2.77 4.26 1.38 1.01 inf; +tonds tondre VER 2.77 4.26 0.13 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tondu tondu ADJ m s 0.74 3.65 0.51 1.89 +tondue tondre VER f s 2.77 4.26 0.06 0.54 par:pas; +tondues tondu ADJ f p 0.74 3.65 0.00 0.41 +tondus tondu ADJ m p 0.74 3.65 0.20 0.81 +toner toner NOM m s 0.07 0.00 0.07 0.00 +tong tong NOM f s 1.73 0.20 1.12 0.07 +tongs tong NOM f p 1.73 0.20 0.61 0.14 +tonic tonic NOM m s 2.04 0.20 1.93 0.20 +tonicardiaque tonicardiaque NOM m s 0.14 0.00 0.14 0.00 +tonicité tonicité NOM f s 0.07 0.00 0.07 0.00 +tonics tonic NOM m p 2.04 0.20 0.11 0.00 +tonie tonie NOM f s 0.02 0.00 0.02 0.00 +tonifiaient tonifier VER 0.06 0.34 0.00 0.07 ind:imp:3p; +tonifiant tonifiant ADJ m s 0.04 0.14 0.03 0.00 +tonifiante tonifiant ADJ f s 0.04 0.14 0.00 0.07 +tonifiants tonifiant ADJ m p 0.04 0.14 0.01 0.07 +tonifie tonifier VER 0.06 0.34 0.03 0.07 ind:pre:3s; +tonifient tonifier VER 0.06 0.34 0.01 0.07 ind:pre:3p; +tonifier tonifier VER 0.06 0.34 0.01 0.07 inf; +tonique tonique ADJ s 0.40 1.82 0.35 1.55 +toniques tonique ADJ p 0.40 1.82 0.05 0.27 +tonitrua tonitruer VER 0.01 1.89 0.00 0.68 ind:pas:3s; +tonitruaient tonitruer VER 0.01 1.89 0.00 0.07 ind:imp:3p; +tonitruais tonitruer VER 0.01 1.89 0.00 0.07 ind:imp:1s; +tonitruait tonitruer VER 0.01 1.89 0.00 0.27 ind:imp:3s; +tonitruance tonitruance NOM f s 0.00 0.14 0.00 0.07 +tonitruances tonitruance NOM f p 0.00 0.14 0.00 0.07 +tonitruant tonitruant ADJ m s 0.29 3.04 0.05 0.95 +tonitruante tonitruant ADJ f s 0.29 3.04 0.24 1.28 +tonitruantes tonitruant ADJ f p 0.29 3.04 0.00 0.34 +tonitruants tonitruant ADJ m p 0.29 3.04 0.00 0.47 +tonitrue tonitruer VER 0.01 1.89 0.01 0.14 imp:pre:2s;ind:pre:3s; +tonitruent tonitruer VER 0.01 1.89 0.00 0.07 ind:pre:3p; +tonitruer tonitruer VER 0.01 1.89 0.00 0.20 inf; +tonitrué tonitruer VER m s 0.01 1.89 0.00 0.07 par:pas; +tonka tonka NOM f s 0.03 0.00 0.03 0.00 +tonkinois tonkinois NOM m 0.02 0.20 0.01 0.07 +tonkinoise tonkinois NOM f s 0.02 0.20 0.01 0.14 +tonna tonner VER 1.94 5.14 0.14 0.74 ind:pas:3s; +tonnage tonnage NOM m s 0.07 1.55 0.07 1.42 +tonnages tonnage NOM m p 0.07 1.55 0.00 0.14 +tonnaient tonner VER 1.94 5.14 0.01 0.41 ind:imp:3p; +tonnais tonner VER 1.94 5.14 0.01 0.00 ind:imp:2s; +tonnait tonner VER 1.94 5.14 0.01 0.68 ind:imp:3s; +tonnant tonnant ADJ m s 0.14 1.08 0.14 0.14 +tonnante tonnant ADJ f s 0.14 1.08 0.00 0.74 +tonnantes tonnant ADJ f p 0.14 1.08 0.00 0.07 +tonnants tonnant ADJ m p 0.14 1.08 0.00 0.14 +tonne tonne NOM f s 16.29 14.19 4.48 2.64 +tonneau tonneau NOM m s 4.37 12.16 2.94 6.89 +tonneaux tonneau NOM m p 4.37 12.16 1.43 5.27 +tonnelet tonnelet NOM m s 0.43 1.55 0.40 1.15 +tonnelets tonnelet NOM m p 0.43 1.55 0.03 0.41 +tonnelier tonnelier NOM m s 0.06 0.61 0.06 0.47 +tonneliers tonnelier NOM m p 0.06 0.61 0.00 0.14 +tonnelle tonnelle NOM f s 0.62 3.51 0.61 2.84 +tonnellerie tonnellerie NOM f s 0.07 0.88 0.07 0.81 +tonnelleries tonnellerie NOM f p 0.07 0.88 0.00 0.07 +tonnelles tonnelle NOM f p 0.62 3.51 0.01 0.68 +tonnent tonner VER 1.94 5.14 0.02 0.74 ind:pre:3p; +tonner tonner VER 1.94 5.14 0.12 1.28 inf; +tonnerait tonner VER 1.94 5.14 0.00 0.07 cnd:pre:3s; +tonnerre tonnerre NOM m s 11.40 19.39 10.90 18.65 +tonnerres tonnerre NOM m p 11.40 19.39 0.50 0.74 +tonnes tonne NOM f p 16.29 14.19 11.80 11.55 +tonnez tonner VER 1.94 5.14 0.00 0.07 imp:pre:2p; +tonné tonner VER m s 1.94 5.14 0.20 0.20 par:pas; +tons ton NOM m p 53.24 146.35 1.51 7.91 +tonsure tonsure NOM f s 0.85 0.88 0.85 0.81 +tonsures tonsure NOM f p 0.85 0.88 0.00 0.07 +tonsuré tonsurer VER m s 0.00 0.07 0.00 0.07 par:pas; +tonte tonte NOM f s 0.17 0.74 0.17 0.74 +tonton tonton NOM m s 14.02 12.43 13.94 11.89 +tontons tonton NOM m p 14.02 12.43 0.08 0.54 +tonus tonus NOM m 0.34 0.61 0.34 0.61 +too_much too_much ADJ m s 0.19 0.47 0.19 0.47 +top_modèle top_modèle NOM f s 0.22 0.00 0.21 0.00 +top_modèle top_modèle NOM f p 0.22 0.00 0.01 0.00 +top_model top_model NOM f p 0.12 0.07 0.12 0.07 +top top NOM m s 19.35 2.09 19.18 2.09 +topa toper VER 2.59 0.68 0.00 0.07 ind:pas:3s; +topaze topaze NOM f s 0.37 0.88 0.36 0.81 +topazes topaze NOM f p 0.37 0.88 0.01 0.07 +tope toper VER 2.59 0.68 2.04 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +toper toper VER 2.59 0.68 0.04 0.07 inf; +topette topette NOM f s 0.00 0.20 0.00 0.14 +topettes topette NOM f p 0.00 0.20 0.00 0.07 +topez toper VER 2.59 0.68 0.18 0.07 imp:pre:2p; +tophus tophus NOM m 0.00 0.07 0.00 0.07 +topinambour topinambour NOM m s 0.16 1.35 0.02 0.41 +topinambours topinambour NOM m p 0.16 1.35 0.14 0.95 +topions toper VER 2.59 0.68 0.01 0.00 ind:imp:1p; +topique topique ADJ m s 0.03 0.07 0.03 0.07 +topless topless ADJ f 0.26 0.00 0.26 0.00 +topo topo NOM m s 3.17 2.43 3.16 2.36 +topographie topographie NOM f s 0.33 1.35 0.33 1.35 +topographique topographique ADJ s 0.23 0.54 0.17 0.34 +topographiquement topographiquement ADV 0.00 0.14 0.00 0.14 +topographiques topographique ADJ p 0.23 0.54 0.06 0.20 +topologie topologie NOM f s 0.04 0.07 0.04 0.07 +topologique topologique ADJ f s 0.01 0.00 0.01 0.00 +topons toper VER 2.59 0.68 0.03 0.14 imp:pre:1p; +toponymie toponymie NOM f s 0.00 0.07 0.00 0.07 +topos topo NOM m p 3.17 2.43 0.01 0.07 +tops top NOM m p 19.35 2.09 0.17 0.00 +topé toper VER m s 2.59 0.68 0.28 0.00 par:pas; +topés toper VER m p 2.59 0.68 0.01 0.00 par:pas; +toqua toquer VER 1.33 2.03 0.10 0.34 ind:pas:3s; +toquade toquade NOM f s 0.13 0.41 0.13 0.14 +toquades toquade NOM f p 0.13 0.41 0.00 0.27 +toquais toquer VER 1.33 2.03 0.00 0.07 ind:imp:1s; +toquait toquer VER 1.33 2.03 0.00 0.14 ind:imp:3s; +toquant toquer VER 1.33 2.03 0.00 0.07 par:pre; +toquante toquante NOM f s 0.03 0.27 0.01 0.20 +toquantes toquante NOM f p 0.03 0.27 0.02 0.07 +toquard toquard NOM m s 0.11 0.41 0.07 0.27 +toquarde toquard ADJ f s 0.13 0.41 0.10 0.07 +toquardes toquard ADJ f p 0.13 0.41 0.00 0.07 +toquards toquard NOM m p 0.11 0.41 0.04 0.14 +toque toque NOM f s 0.82 7.57 0.65 6.55 +toquer toquer VER 1.33 2.03 0.07 0.41 inf; +toques toque NOM f p 0.82 7.57 0.17 1.01 +toquez toquer VER 1.33 2.03 0.01 0.00 imp:pre:2p; +toqué toquer VER m s 1.33 2.03 0.72 0.20 par:pas; +toquée toqué ADJ f s 0.89 0.34 0.36 0.07 +toquées toquer VER f p 1.33 2.03 0.10 0.07 par:pas; +toqués toqué ADJ m p 0.89 0.34 0.11 0.00 +torana torana NOM m s 0.01 0.00 0.01 0.00 +torcha torcher VER 3.20 5.54 0.00 0.34 ind:pas:3s; +torchaient torcher VER 3.20 5.54 0.00 0.07 ind:imp:3p; +torchais torcher VER 3.20 5.54 0.01 0.07 ind:imp:1s;ind:imp:2s; +torchait torcher VER 3.20 5.54 0.03 0.20 ind:imp:3s; +torchant torcher VER 3.20 5.54 0.02 0.20 par:pre; +torchassions torcher VER 3.20 5.54 0.00 0.07 sub:imp:1p; +torche_cul torche_cul NOM m s 0.06 0.00 0.06 0.00 +torche torche NOM f s 8.09 11.96 6.71 7.16 +torchent torcher VER 3.20 5.54 0.01 0.27 ind:pre:3p; +torcher torcher VER 3.20 5.54 1.23 1.89 inf; +torcherais torcher VER 3.20 5.54 0.04 0.07 cnd:pre:1s; +torcheras torcher VER 3.20 5.54 0.01 0.07 ind:fut:2s; +torches torche NOM f p 8.09 11.96 1.38 4.80 +torchez torcher VER 3.20 5.54 0.03 0.00 imp:pre:2p;ind:pre:2p; +torchis torchis NOM m 0.03 2.23 0.03 2.23 +torchon torchon NOM m s 3.48 10.14 2.95 7.23 +torchonnait torchonner VER 0.00 0.68 0.00 0.34 ind:imp:3s; +torchonne torchonner VER 0.00 0.68 0.00 0.14 ind:pre:3s; +torchonner torchonner VER 0.00 0.68 0.00 0.20 inf; +torchons torchon NOM m p 3.48 10.14 0.54 2.91 +torchère torchère NOM f s 0.01 1.42 0.00 0.47 +torchères torchère NOM f p 0.01 1.42 0.01 0.95 +torché torcher VER m s 3.20 5.54 0.38 0.41 par:pas; +torchée torcher VER f s 3.20 5.54 0.01 0.14 par:pas; +torchées torchée NOM f p 0.00 0.07 0.00 0.07 +torchés torcher VER m p 3.20 5.54 0.16 0.07 par:pas; +tord_boyaux tord_boyaux NOM m 0.27 0.47 0.27 0.47 +tord_nez tord_nez NOM m s 0.00 0.14 0.00 0.14 +tord tordre VER 12.24 38.38 2.08 4.80 ind:pre:3s; +tordît tordre VER 12.24 38.38 0.00 0.07 sub:imp:3s; +tordage tordage NOM m s 0.07 0.00 0.07 0.00 +tordaient tordre VER 12.24 38.38 0.17 1.89 ind:imp:3p; +tordais tordre VER 12.24 38.38 0.17 0.34 ind:imp:1s;ind:imp:2s; +tordait tordre VER 12.24 38.38 0.14 6.89 ind:imp:3s; +tordant tordant ADJ m s 1.65 0.88 1.25 0.61 +tordante tordant ADJ f s 1.65 0.88 0.33 0.00 +tordantes tordant ADJ f p 1.65 0.88 0.02 0.07 +tordants tordant ADJ m p 1.65 0.88 0.05 0.20 +torde tordre VER 12.24 38.38 0.26 0.14 sub:pre:1s;sub:pre:3s; +tordent tordre VER 12.24 38.38 0.36 1.28 ind:pre:3p; +tordeur tordeur NOM m s 0.13 0.00 0.12 0.00 +tordeurs tordeur NOM m p 0.13 0.00 0.01 0.00 +tordez tordre VER 12.24 38.38 0.10 0.14 imp:pre:2p;ind:pre:2p; +tordiez tordre VER 12.24 38.38 0.01 0.00 ind:imp:2p; +tordion tordion NOM m s 0.00 0.14 0.00 0.07 +tordions tordion NOM m p 0.00 0.14 0.00 0.07 +tordirent tordre VER 12.24 38.38 0.01 0.34 ind:pas:3p; +tordis tordre VER 12.24 38.38 0.00 0.14 ind:pas:1s; +tordit tordre VER 12.24 38.38 0.01 2.64 ind:pas:3s; +tordra tordre VER 12.24 38.38 0.01 0.07 ind:fut:3s; +tordrai tordre VER 12.24 38.38 0.18 0.07 ind:fut:1s; +tordraient tordre VER 12.24 38.38 0.00 0.07 cnd:pre:3p; +tordrais tordre VER 12.24 38.38 0.20 0.07 cnd:pre:1s;cnd:pre:2s; +tordrait tordre VER 12.24 38.38 0.06 0.20 cnd:pre:3s; +tordras tordre VER 12.24 38.38 0.02 0.00 ind:fut:2s; +tordre tordre VER 12.24 38.38 2.77 5.27 inf; +tordrez tordre VER 12.24 38.38 0.01 0.07 ind:fut:2p; +tordront tordre VER 12.24 38.38 0.01 0.14 ind:fut:3p; +tords tordre VER 12.24 38.38 1.17 0.74 imp:pre:2s;ind:pre:1s;ind:pre:2s; +tordu tordu ADJ m s 7.76 14.80 4.10 4.46 +tordue tordu ADJ f s 7.76 14.80 1.75 4.12 +tordues tordu ADJ f p 7.76 14.80 0.66 2.30 +tordus tordu ADJ m p 7.76 14.80 1.25 3.92 +tore tore NOM m s 0.14 0.07 0.04 0.00 +torera torera NOM f s 0.20 0.00 0.20 0.00 +torero torero NOM m s 1.17 2.43 0.94 1.35 +toreros torero NOM m p 1.17 2.43 0.23 1.08 +tores tore NOM m p 0.14 0.07 0.10 0.07 +torgnole torgnole NOM f s 0.31 1.08 0.14 0.47 +torgnoles torgnole NOM f p 0.31 1.08 0.17 0.61 +tories tories NOM m p 0.12 0.00 0.12 0.00 +toril toril NOM m s 0.00 0.41 0.00 0.41 +tornade tornade NOM f s 2.66 4.12 2.13 3.11 +tornades tornade NOM f p 2.66 4.12 0.52 1.01 +toro toro NOM m s 0.91 0.74 0.91 0.74 +torons toron NOM m p 0.00 0.07 0.00 0.07 +torpeur torpeur NOM f s 0.78 13.38 0.78 13.24 +torpeurs torpeur NOM f p 0.78 13.38 0.00 0.14 +torpide torpide ADJ f s 0.00 0.27 0.00 0.27 +torpillage torpillage NOM m s 0.13 0.20 0.13 0.14 +torpillages torpillage NOM m p 0.13 0.20 0.00 0.07 +torpillaient torpiller VER 1.21 1.08 0.00 0.07 ind:imp:3p; +torpillait torpiller VER 1.21 1.08 0.00 0.07 ind:imp:3s; +torpille torpille NOM f s 5.28 1.62 2.42 0.61 +torpiller torpiller VER 1.21 1.08 0.28 0.34 inf; +torpillera torpiller VER 1.21 1.08 0.01 0.00 ind:fut:3s; +torpilles torpille NOM f p 5.28 1.62 2.86 1.01 +torpilleur torpilleur NOM m s 0.39 1.62 0.28 0.68 +torpilleurs torpilleur NOM m p 0.39 1.62 0.11 0.95 +torpillé torpiller VER m s 1.21 1.08 0.32 0.34 par:pas; +torpillée torpiller VER f s 1.21 1.08 0.03 0.07 par:pas; +torpillés torpiller VER m p 1.21 1.08 0.03 0.00 par:pas; +torpédo torpédo NOM f s 0.03 2.91 0.03 2.70 +torpédos torpédo NOM f p 0.03 2.91 0.00 0.20 +torque torque NOM m s 0.05 0.00 0.05 0.00 +torrent torrent NOM m s 2.46 16.35 1.60 11.96 +torrentiel torrentiel ADJ m s 0.23 1.01 0.02 0.14 +torrentielle torrentiel ADJ f s 0.23 1.01 0.20 0.27 +torrentielles torrentiel ADJ f p 0.23 1.01 0.01 0.47 +torrentiels torrentiel ADJ m p 0.23 1.01 0.00 0.14 +torrents torrent NOM m p 2.46 16.35 0.86 4.39 +torrentueuses torrentueux ADJ f p 0.00 0.20 0.00 0.14 +torrentueux torrentueux ADJ m s 0.00 0.20 0.00 0.07 +torride torride ADJ s 1.96 4.32 1.70 3.18 +torrides torride ADJ p 1.96 4.32 0.26 1.15 +torréfaction torréfaction NOM f s 0.02 0.07 0.02 0.07 +torréfiait torréfier VER 0.01 0.41 0.00 0.14 ind:imp:3s; +torréfiant torréfier VER 0.01 0.41 0.00 0.07 par:pre; +torréfie torréfier VER 0.01 0.41 0.00 0.07 ind:pre:3s; +torréfient torréfier VER 0.01 0.41 0.00 0.07 ind:pre:3p; +torréfié torréfié ADJ m s 0.12 0.47 0.12 0.14 +torréfiée torréfié ADJ f s 0.12 0.47 0.00 0.27 +torréfiées torréfié ADJ f p 0.12 0.47 0.00 0.07 +tors tors ADJ m s 0.67 4.73 0.27 0.34 +torsada torsader VER 0.12 2.57 0.00 0.07 ind:pas:3s; +torsade torsade NOM f s 0.17 2.91 0.00 1.01 +torsades torsade NOM f p 0.17 2.91 0.17 1.89 +torsadé torsader VER m s 0.12 2.57 0.00 0.54 par:pas; +torsadée torsader VER f s 0.12 2.57 0.03 0.61 par:pas; +torsadées torsader VER f p 0.12 2.57 0.01 0.88 par:pas; +torsadés torsader VER m p 0.12 2.57 0.08 0.47 par:pas; +torse torse NOM m s 3.82 21.08 3.75 19.39 +torses torse NOM m p 3.82 21.08 0.07 1.69 +torsion torsion NOM f s 0.37 3.11 0.36 2.23 +torsions torsion NOM f p 0.37 3.11 0.01 0.88 +tort tort NOM m s 67.97 55.00 64.89 51.55 +tortellini tortellini NOM m s 0.34 0.00 0.23 0.00 +tortellinis tortellini NOM m p 0.34 0.00 0.11 0.00 +torticolis torticolis NOM m 0.92 0.74 0.92 0.74 +tortil tortil NOM m s 0.00 0.14 0.00 0.07 +tortilla tortilla NOM f s 1.73 0.41 1.40 0.07 +tortillaient tortiller VER 1.96 9.66 0.02 0.20 ind:imp:3p; +tortillais tortiller VER 1.96 9.66 0.02 0.20 ind:imp:1s; +tortillait tortiller VER 1.96 9.66 0.14 2.09 ind:imp:3s; +tortillant tortiller VER 1.96 9.66 0.06 1.49 par:pre; +tortillard tortillard NOM m s 0.16 1.69 0.16 1.62 +tortillards tortillard NOM m p 0.16 1.69 0.00 0.07 +tortillas tortilla NOM f p 1.73 0.41 0.34 0.34 +tortille tortiller VER 1.96 9.66 0.72 1.96 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tortillement tortillement NOM m s 0.03 0.20 0.02 0.00 +tortillements tortillement NOM m p 0.03 0.20 0.01 0.20 +tortillent tortiller VER 1.96 9.66 0.06 0.20 ind:pre:3p; +tortiller tortiller VER 1.96 9.66 0.76 1.82 inf; +tortillez tortiller VER 1.96 9.66 0.12 0.00 imp:pre:2p;ind:pre:2p; +tortillon tortillon NOM m s 0.06 1.28 0.06 0.81 +tortillons tortillon NOM m p 0.06 1.28 0.00 0.47 +tortillé tortiller VER m s 1.96 9.66 0.03 0.41 par:pas; +tortillée tortiller VER f s 1.96 9.66 0.02 0.34 par:pas; +tortillées tortiller VER f p 1.96 9.66 0.00 0.14 par:pas; +tortillés tortiller VER m p 1.96 9.66 0.00 0.27 par:pas; +tortils tortil NOM m p 0.00 0.14 0.00 0.07 +tortionnaire tortionnaire NOM s 0.50 2.43 0.24 1.28 +tortionnaires tortionnaire NOM p 0.50 2.43 0.26 1.15 +tortora tortorer VER 0.00 0.81 0.00 0.14 ind:pas:3s; +tortorait tortorer VER 0.00 0.81 0.00 0.14 ind:imp:3s; +tortorant tortorer VER 0.00 0.81 0.00 0.07 par:pre; +tortore tortore NOM f s 0.00 1.82 0.00 1.82 +tortorent tortorer VER 0.00 0.81 0.00 0.07 ind:pre:3p; +tortorer tortorer VER 0.00 0.81 0.00 0.27 inf; +tortoré tortorer VER m s 0.00 0.81 0.00 0.14 par:pas; +torts tort NOM m p 67.97 55.00 3.08 3.45 +tortu tortu ADJ m s 0.69 0.68 0.00 0.07 +tortue tortue NOM f s 5.34 6.22 4.00 4.66 +tortues tortue NOM f p 5.34 6.22 1.33 1.55 +tortueuse tortueux ADJ f s 0.86 3.11 0.39 0.68 +tortueuses tortueux ADJ f p 0.86 3.11 0.04 0.95 +tortueux tortueux ADJ m 0.86 3.11 0.44 1.49 +tortura torturer VER 24.63 15.41 0.03 0.07 ind:pas:3s; +torturai torturer VER 24.63 15.41 0.01 0.07 ind:pas:1s; +torturaient torturer VER 24.63 15.41 0.25 0.61 ind:imp:3p; +torturais torturer VER 24.63 15.41 0.07 0.14 ind:imp:1s;ind:imp:2s; +torturait torturer VER 24.63 15.41 0.59 2.36 ind:imp:3s; +torturant torturer VER 24.63 15.41 0.13 0.54 par:pre; +torturante torturant ADJ f s 0.12 1.28 0.10 0.41 +torturantes torturant ADJ f p 0.12 1.28 0.00 0.20 +torturants torturant ADJ m p 0.12 1.28 0.01 0.14 +torture torture NOM f s 12.94 17.03 10.13 11.96 +torturent torturer VER 24.63 15.41 0.96 0.68 ind:pre:3p;sub:pre:3p; +torturer torturer VER 24.63 15.41 8.28 3.78 inf;;inf;;inf;; +torturera torturer VER 24.63 15.41 0.10 0.07 ind:fut:3s; +torturerai torturer VER 24.63 15.41 0.06 0.00 ind:fut:1s; +tortureraient torturer VER 24.63 15.41 0.01 0.00 cnd:pre:3p; +torturerez torturer VER 24.63 15.41 0.00 0.07 ind:fut:2p; +tortureront torturer VER 24.63 15.41 0.05 0.00 ind:fut:3p; +tortures torture NOM f p 12.94 17.03 2.81 5.07 +tortureurs tortureur NOM m p 0.00 0.07 0.00 0.07 +torturez torturer VER 24.63 15.41 1.24 0.20 imp:pre:2p;ind:pre:2p; +torturions torturer VER 24.63 15.41 0.00 0.07 ind:imp:1p; +torturons torturer VER 24.63 15.41 0.30 0.00 imp:pre:1p;ind:pre:1p; +torturèrent torturer VER 24.63 15.41 0.00 0.07 ind:pas:3p; +torturé torturer VER m s 24.63 15.41 5.56 3.11 par:pas; +torturée torturer VER f s 24.63 15.41 1.27 1.01 par:pas; +torturées torturé ADJ f p 2.44 4.26 0.33 0.41 +torturés torturé VER m p 0.92 0.00 0.92 0.00 par:pas; +tortus tortu ADJ m p 0.69 0.68 0.00 0.07 +toréador_vedette toréador_vedette NOM m s 0.00 0.07 0.00 0.07 +toréador toréador NOM m s 0.31 0.61 0.29 0.47 +toréadors toréador NOM m p 0.31 0.61 0.02 0.14 +torée toréer VER 0.43 0.07 0.01 0.00 ind:pre:3s; +toréer toréer VER 0.43 0.07 0.42 0.07 inf; +torve torve ADJ s 0.12 2.36 0.02 1.96 +torves torve ADJ p 0.12 2.36 0.10 0.41 +tos to NOM m p 55.51 3.78 0.02 0.00 +toscan toscan ADJ m s 0.46 1.22 0.21 0.41 +toscane toscan ADJ f s 0.46 1.22 0.05 0.68 +toscanes toscan ADJ f p 0.46 1.22 0.20 0.07 +toscans toscan NOM m p 0.04 0.20 0.03 0.00 +toss toss NOM m 0.02 0.07 0.02 0.07 +tossé tosser VER m s 0.00 0.07 0.00 0.07 par:pas; +tâta tâter VER 3.95 21.55 0.00 2.91 ind:pas:3s; +tâtai tâter VER 3.95 21.55 0.00 0.34 ind:pas:1s; +tâtaient tâter VER 3.95 21.55 0.00 0.68 ind:imp:3p; +tâtais tâter VER 3.95 21.55 0.01 0.54 ind:imp:1s; +tâtait tâter VER 3.95 21.55 0.03 2.03 ind:imp:3s; +total total ADJ m s 24.59 41.62 9.29 16.35 +totale total ADJ f s 24.59 41.62 15.26 24.86 +totalement totalement ADV 28.62 22.16 28.62 22.16 +totales total ADJ f p 24.59 41.62 0.02 0.41 +totalisait totaliser VER 0.13 0.95 0.02 0.20 ind:imp:3s; +totalisant totalisant ADJ m s 0.01 0.27 0.01 0.27 +totalisateur totalisateur NOM m s 0.01 0.00 0.01 0.00 +totalisation totalisation NOM f s 0.00 0.07 0.00 0.07 +totalise totaliser VER 0.13 0.95 0.03 0.20 ind:pre:1s;ind:pre:3s; +totalisent totaliser VER 0.13 0.95 0.03 0.07 ind:pre:3p; +totaliser totaliser VER 0.13 0.95 0.03 0.20 inf; +totalisé totaliser VER m s 0.13 0.95 0.01 0.07 par:pas; +totalitaire totalitaire ADJ s 0.09 1.42 0.05 1.08 +totalitaires totalitaire ADJ p 0.09 1.42 0.04 0.34 +totalitarisme totalitarisme NOM m s 0.03 0.95 0.03 0.88 +totalitarismes totalitarisme NOM m p 0.03 0.95 0.00 0.07 +totalité totalité NOM f s 3.11 9.39 3.11 9.26 +totalités totalité NOM f p 3.11 9.39 0.00 0.14 +tâtant tâter VER 3.95 21.55 0.04 2.03 par:pre; +totaux total NOM m p 3.86 9.66 0.20 0.14 +tâte tâter VER 3.95 21.55 1.02 4.46 imp:pre:2s;ind:pre:1s;ind:pre:3s; +totem totem NOM m s 1.42 1.35 1.27 0.81 +totems totem NOM m p 1.42 1.35 0.15 0.54 +tâtent tâter VER 3.95 21.55 0.04 0.20 ind:pre:3p; +tâter tâter VER 3.95 21.55 1.94 5.74 inf; +tâtera tâter VER 3.95 21.55 0.01 0.07 ind:fut:3s; +tâterai tâter VER 3.95 21.55 0.06 0.00 ind:fut:1s; +tâteras tâter VER 3.95 21.55 0.01 0.00 ind:fut:2s; +tâterez tâter VER 3.95 21.55 0.05 0.00 ind:fut:2p; +tâtez tâter VER 3.95 21.55 0.41 0.14 imp:pre:2p;ind:pre:2p; +tâtiez tâter VER 3.95 21.55 0.00 0.14 ind:imp:2p; +toto toto NOM m s 0.30 0.20 0.26 0.00 +totoche totoche NOM s 0.00 0.41 0.00 0.27 +totoches totoche NOM p 0.00 0.41 0.00 0.14 +toton toton NOM m s 0.15 0.41 0.14 0.27 +tâtonna tâtonner VER 0.70 10.54 0.00 1.28 ind:pas:3s; +tâtonnai tâtonner VER 0.70 10.54 0.00 0.14 ind:pas:1s; +tâtonnaient tâtonner VER 0.70 10.54 0.00 0.27 ind:imp:3p; +tâtonnais tâtonner VER 0.70 10.54 0.01 0.07 ind:imp:1s; +tâtonnait tâtonner VER 0.70 10.54 0.10 0.81 ind:imp:3s; +tâtonnant tâtonner VER 0.70 10.54 0.00 3.38 par:pre; +tâtonnante tâtonnant ADJ f s 0.00 1.28 0.00 0.41 +tâtonnantes tâtonnant ADJ f p 0.00 1.28 0.00 0.41 +tâtonnants tâtonnant ADJ m p 0.00 1.28 0.00 0.07 +tâtonne tâtonner VER 0.70 10.54 0.47 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tâtonnement tâtonnement NOM m s 0.12 2.03 0.00 0.47 +tâtonnements tâtonnement NOM m p 0.12 2.03 0.12 1.55 +tâtonnent tâtonner VER 0.70 10.54 0.01 0.34 ind:pre:3p; +tâtonner tâtonner VER 0.70 10.54 0.08 0.81 inf; +tâtonnera tâtonner VER 0.70 10.54 0.01 0.07 ind:fut:3s; +tâtonnerais tâtonner VER 0.70 10.54 0.00 0.07 cnd:pre:1s; +tâtonnions tâtonner VER 0.70 10.54 0.00 0.20 ind:imp:1p; +tâtonnâmes tâtonner VER 0.70 10.54 0.00 0.07 ind:pas:1p; +tâtonnât tâtonner VER 0.70 10.54 0.00 0.07 sub:imp:3s; +tâtonnèrent tâtonner VER 0.70 10.54 0.00 0.14 ind:pas:3p; +tâtonné tâtonner VER m s 0.70 10.54 0.01 0.41 par:pas; +tâtonnée tâtonner VER f s 0.70 10.54 0.00 0.07 par:pas; +tâtons tâter VER 3.95 21.55 0.03 0.07 imp:pre:1p; +totons toton NOM m p 0.15 0.41 0.01 0.14 +totos toto NOM m p 0.30 0.20 0.04 0.20 +tâtèrent tâter VER 3.95 21.55 0.00 0.14 ind:pas:3p; +tâté tâter VER m s 3.95 21.55 0.29 2.03 par:pas; +totémique totémique ADJ m s 0.01 0.27 0.00 0.14 +totémiques totémique ADJ m p 0.01 0.27 0.01 0.14 +totémisme totémisme NOM m s 0.01 0.00 0.01 0.00 +tâtés tâter VER m p 3.95 21.55 0.01 0.07 par:pas; +touareg touareg ADJ m s 0.06 0.00 0.03 0.00 +touaregs touareg ADJ m p 0.06 0.00 0.03 0.00 +toubab toubab NOM m s 0.30 0.61 0.10 0.54 +toubabs toubab NOM m p 0.30 0.61 0.20 0.07 +toubib toubib NOM m s 6.62 13.72 5.71 11.35 +toubibs toubib NOM m p 6.62 13.72 0.91 2.36 +toucan toucan NOM m s 0.03 0.14 0.03 0.14 +toucha toucher VER 270.26 190.27 0.32 10.95 ind:pas:3s; +touchai toucher VER 270.26 190.27 0.01 1.82 ind:pas:1s; +touchaient toucher VER 270.26 190.27 0.44 6.15 ind:imp:3p; +touchais toucher VER 270.26 190.27 1.87 3.04 ind:imp:1s;ind:imp:2s; +touchait toucher VER 270.26 190.27 2.99 18.58 ind:imp:3s; +touchant touchant ADJ m s 7.42 9.73 6.02 5.34 +touchante touchant ADJ f s 7.42 9.73 1.04 2.70 +touchantes touchant ADJ f p 7.42 9.73 0.03 1.01 +touchants touchant ADJ m p 7.42 9.73 0.33 0.68 +touche_pipi touche_pipi NOM m 0.35 0.61 0.35 0.61 +touche_touche touche_touche NOM f s 0.01 0.00 0.01 0.00 +touche toucher VER 270.26 190.27 91.91 29.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +touchent toucher VER 270.26 190.27 4.96 6.69 ind:pre:3p;sub:pre:3p; +toucher toucher VER 270.26 190.27 49.41 56.15 inf;;inf;;inf;; +touchera toucher VER 270.26 190.27 4.35 1.35 ind:fut:3s; +toucherai toucher VER 270.26 190.27 2.73 0.61 ind:fut:1s; +toucheraient toucher VER 270.26 190.27 0.08 0.27 cnd:pre:3p; +toucherais toucher VER 270.26 190.27 1.12 0.47 cnd:pre:1s;cnd:pre:2s; +toucherait toucher VER 270.26 190.27 1.05 1.62 cnd:pre:3s; +toucheras toucher VER 270.26 190.27 1.27 0.14 ind:fut:2s; +toucherez toucher VER 270.26 190.27 0.98 0.41 ind:fut:2p; +toucherions toucher VER 270.26 190.27 0.02 0.07 cnd:pre:1p; +toucherons toucher VER 270.26 190.27 0.06 0.14 ind:fut:1p; +toucheront toucher VER 270.26 190.27 0.56 0.20 ind:fut:3p; +touchers toucher NOM m p 7.41 10.14 0.00 0.20 +touches toucher VER 270.26 190.27 10.35 1.55 ind:pre:2s; +touchette touchette NOM f s 0.01 0.00 0.01 0.00 +touchez toucher VER 270.26 190.27 26.76 2.84 imp:pre:2p;ind:pre:2p; +touchiez toucher VER 270.26 190.27 0.27 0.07 ind:imp:2p; +touchions toucher VER 270.26 190.27 0.13 1.08 ind:imp:1p; +touchons toucher VER 270.26 190.27 0.66 0.81 imp:pre:1p;ind:pre:1p; +touchât toucher VER 270.26 190.27 0.01 0.74 sub:imp:3s; +touchotter touchotter NOM m s 0.00 0.07 0.00 0.07 +touchèrent toucher VER 270.26 190.27 0.26 1.22 ind:pas:3p; +touché toucher VER m s 270.26 190.27 50.97 27.77 par:pas; +touchée toucher VER f s 270.26 190.27 11.29 4.93 par:pas; +touchées toucher VER f p 270.26 190.27 0.74 0.68 par:pas; +touchés toucher VER m p 270.26 190.27 3.34 2.36 par:pas; +toue toue NOM f s 0.02 0.68 0.02 0.61 +touer touer VER 0.02 0.14 0.02 0.00 inf; +toues toue NOM f p 0.02 0.68 0.00 0.07 +touffe touffe NOM f s 2.20 16.69 1.60 6.69 +touffes touffe NOM f p 2.20 16.69 0.60 10.00 +touffeur touffeur NOM f s 0.00 1.35 0.00 1.28 +touffeurs touffeur NOM f p 0.00 1.35 0.00 0.07 +touffu touffu ADJ m s 1.01 4.80 0.42 1.49 +touffue touffu ADJ f s 1.01 4.80 0.14 0.88 +touffues touffu ADJ f p 1.01 4.80 0.01 0.34 +touffus touffu ADJ m p 1.01 4.80 0.43 2.09 +touillais touiller VER 0.29 2.30 0.00 0.07 ind:imp:1s; +touillait touiller VER 0.29 2.30 0.14 0.27 ind:imp:3s; +touillant touiller VER 0.29 2.30 0.00 0.47 par:pre; +touille touiller VER 0.29 2.30 0.01 0.61 imp:pre:2s;ind:pre:1s;ind:pre:3s; +touillent touiller VER 0.29 2.30 0.00 0.14 ind:pre:3p; +touiller touiller VER 0.29 2.30 0.10 0.54 inf; +touillé touillé ADJ m s 0.10 0.20 0.10 0.07 +touillée touillé ADJ f s 0.10 0.20 0.00 0.07 +touillées touiller VER f p 0.29 2.30 0.00 0.07 par:pas; +touillés touiller VER m p 0.29 2.30 0.01 0.07 par:pas; +toujours toujours ADV 1072.36 1093.78 1072.36 1093.78 +toulonnais toulonnais NOM m 0.00 0.41 0.00 0.41 +touloupes touloupe NOM f p 0.00 0.14 0.00 0.14 +toulousain toulousain NOM m s 0.00 2.57 0.00 1.01 +toulousaine toulousain ADJ f s 0.00 1.49 0.00 0.14 +toulousaines toulousain ADJ f p 0.00 1.49 0.00 0.14 +toulousains toulousain NOM m p 0.00 2.57 0.00 1.49 +toundra toundra NOM f s 0.29 0.47 0.19 0.41 +toundras toundra NOM f p 0.29 0.47 0.10 0.07 +toungouse toungouse ADJ f s 0.00 0.14 0.00 0.14 +toupet toupet NOM m s 2.23 2.30 2.08 2.23 +toupets toupet NOM m p 2.23 2.30 0.15 0.07 +toupie toupie NOM f s 1.79 3.92 1.50 3.04 +toupies toupie NOM f p 1.79 3.92 0.29 0.88 +toupilleur toupilleur NOM m s 0.00 0.07 0.00 0.07 +toupinant toupiner VER 0.00 0.14 0.00 0.14 par:pre; +touque touque NOM f s 0.02 0.14 0.02 0.07 +touques touque NOM f p 0.02 0.14 0.00 0.07 +tour tour NOM s 193.82 308.72 175.56 280.27 +tourangeau tourangeau ADJ m s 0.00 0.41 0.00 0.20 +tourangeaux tourangeau ADJ m p 0.00 0.41 0.00 0.20 +tourangelle tourangelle ADJ f s 0.00 0.14 0.00 0.07 +tourangelles tourangelle ADJ f p 0.00 0.14 0.00 0.07 +tourbe tourbe NOM f s 0.44 2.03 0.44 1.96 +tourbes tourbe NOM f p 0.44 2.03 0.00 0.07 +tourbeuse tourbeux ADJ f s 0.00 0.20 0.00 0.14 +tourbeux tourbeux ADJ m p 0.00 0.20 0.00 0.07 +tourbiers tourbier NOM m p 0.06 0.95 0.00 0.07 +tourbillon tourbillon NOM m s 2.88 17.77 2.34 11.01 +tourbillonna tourbillonner VER 1.16 5.88 0.00 0.20 ind:pas:3s; +tourbillonnaient tourbillonner VER 1.16 5.88 0.04 0.74 ind:imp:3p; +tourbillonnaire tourbillonnaire ADJ f s 0.00 0.14 0.00 0.14 +tourbillonnais tourbillonner VER 1.16 5.88 0.00 0.07 ind:imp:1s; +tourbillonnait tourbillonner VER 1.16 5.88 0.02 1.08 ind:imp:3s; +tourbillonnant tourbillonner VER 1.16 5.88 0.01 1.15 par:pre; +tourbillonnante tourbillonnant ADJ f s 0.06 1.62 0.03 0.54 +tourbillonnantes tourbillonnant ADJ f p 0.06 1.62 0.03 0.34 +tourbillonnants tourbillonnant ADJ m p 0.06 1.62 0.00 0.27 +tourbillonne tourbillonner VER 1.16 5.88 0.26 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tourbillonnement tourbillonnement NOM m s 0.00 0.20 0.00 0.14 +tourbillonnements tourbillonnement NOM m p 0.00 0.20 0.00 0.07 +tourbillonnent tourbillonner VER 1.16 5.88 0.68 0.81 ind:pre:3p; +tourbillonner tourbillonner VER 1.16 5.88 0.12 0.74 inf; +tourbillonnez tourbillonner VER 1.16 5.88 0.02 0.00 imp:pre:2p; +tourbillonnèrent tourbillonner VER 1.16 5.88 0.00 0.07 ind:pas:3p; +tourbillonné tourbillonner VER m s 1.16 5.88 0.02 0.00 par:pas; +tourbillons tourbillon NOM m p 2.88 17.77 0.54 6.76 +tourbière tourbier NOM f s 0.06 0.95 0.06 0.20 +tourbières tourbière NOM f p 0.04 0.00 0.04 0.00 +tourde tourd NOM f s 0.10 0.00 0.10 0.00 +tourelle tourelle NOM f s 1.71 3.92 1.53 1.69 +tourelles tourelle NOM f p 1.71 3.92 0.18 2.23 +touret touret NOM m s 0.00 0.07 0.00 0.07 +tourillon tourillon NOM m s 0.00 0.07 0.00 0.07 +tourisme tourisme NOM m s 2.98 4.66 2.98 4.66 +touriste touriste NOM s 14.36 24.19 4.05 6.28 +touristes touriste NOM p 14.36 24.19 10.31 17.91 +touristique touristique ADJ s 2.54 3.51 1.95 2.16 +touristiques touristique ADJ p 2.54 3.51 0.59 1.35 +tourière tourier ADJ f s 0.00 0.41 0.00 0.41 +tourlourou tourlourou NOM m s 0.01 0.07 0.01 0.07 +tourlousine tourlousine NOM f s 0.00 0.07 0.00 0.07 +tourmalines tourmaline NOM f p 0.01 0.20 0.01 0.20 +tourment tourment NOM m s 7.30 12.30 2.94 5.41 +tourmenta tourmenter VER 10.50 16.28 0.01 0.41 ind:pas:3s; +tourmentai tourmenter VER 10.50 16.28 0.00 0.07 ind:pas:1s; +tourmentaient tourmenter VER 10.50 16.28 0.03 0.95 ind:imp:3p; +tourmentais tourmenter VER 10.50 16.28 0.01 0.41 ind:imp:1s; +tourmentait tourmenter VER 10.50 16.28 0.36 2.64 ind:imp:3s; +tourmentant tourmenter VER 10.50 16.28 0.03 0.14 par:pre; +tourmentante tourmentant ADJ f s 0.00 0.20 0.00 0.07 +tourmentantes tourmentant ADJ f p 0.00 0.20 0.00 0.07 +tourmente tourmenter VER 10.50 16.28 3.48 2.16 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tourmentent tourmenter VER 10.50 16.28 0.52 0.54 ind:pre:3p; +tourmenter tourmenter VER 10.50 16.28 2.59 3.58 inf; +tourmentera tourmenter VER 10.50 16.28 0.21 0.07 ind:fut:3s; +tourmenterai tourmenter VER 10.50 16.28 0.01 0.07 ind:fut:1s; +tourmenteraient tourmenter VER 10.50 16.28 0.00 0.07 cnd:pre:3p; +tourmenteront tourmenter VER 10.50 16.28 0.02 0.07 ind:fut:3p; +tourmentes tourmente NOM f p 1.48 2.84 0.28 0.54 +tourmenteur tourmenteur NOM m s 0.03 0.47 0.02 0.14 +tourmenteurs tourmenteur NOM m p 0.03 0.47 0.01 0.34 +tourmentez tourmenter VER 10.50 16.28 0.49 0.47 imp:pre:2p;ind:pre:2p; +tourmentiez tourmenter VER 10.50 16.28 0.00 0.07 ind:imp:2p; +tourmentin tourmentin NOM m s 0.03 0.07 0.03 0.00 +tourmentins tourmentin NOM m p 0.03 0.07 0.00 0.07 +tourmentât tourmenter VER 10.50 16.28 0.00 0.27 sub:imp:3s; +tourments tourment NOM m p 7.30 12.30 4.36 6.89 +tourmentèrent tourmenter VER 10.50 16.28 0.00 0.07 ind:pas:3p; +tourmenté tourmenter VER m s 10.50 16.28 1.48 2.64 par:pas; +tourmentée tourmenter VER f s 10.50 16.28 0.78 1.01 par:pas; +tourmentées tourmenté ADJ f p 2.31 5.41 0.19 0.20 +tourmentés tourmenté ADJ m p 2.31 5.41 0.40 0.95 +tourna tourner VER 204.13 377.09 0.43 58.72 ind:pas:3s; +tournage tournage NOM m s 16.59 2.70 15.75 2.36 +tournages tournage NOM m p 16.59 2.70 0.84 0.34 +tournai tourner VER 204.13 377.09 0.14 5.07 ind:pas:1s; +tournaient tourner VER 204.13 377.09 0.98 16.42 ind:imp:3p; +tournaillaient tournailler VER 0.14 0.20 0.00 0.07 ind:imp:3p; +tournailler tournailler VER 0.14 0.20 0.14 0.07 inf; +tournaillé tournailler VER m s 0.14 0.20 0.00 0.07 par:pas; +tournais tourner VER 204.13 377.09 1.23 3.58 ind:imp:1s;ind:imp:2s; +tournait tourner VER 204.13 377.09 5.65 50.41 ind:imp:3s; +tournant tournant NOM m s 3.44 20.34 3.38 18.31 +tournante tournant ADJ f s 1.42 7.09 0.59 1.35 +tournantes tournant ADJ f p 1.42 7.09 0.20 0.68 +tournants tournant NOM m p 3.44 20.34 0.06 2.03 +tournas tourner VER 204.13 377.09 0.00 0.07 ind:pas:2s; +tourne_disque tourne_disque NOM m s 0.74 1.35 0.50 0.95 +tourne_disque tourne_disque NOM m p 0.74 1.35 0.24 0.41 +tourne tourner VER 204.13 377.09 80.72 60.81 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +tourneboulant tournebouler VER 0.40 0.88 0.00 0.07 par:pre; +tourneboule tournebouler VER 0.40 0.88 0.05 0.20 ind:pre:3s; +tourneboulé tournebouler VER m s 0.40 0.88 0.32 0.34 par:pas; +tourneboulée tournebouler VER f s 0.40 0.88 0.03 0.20 par:pas; +tourneboulés tournebouler VER m p 0.40 0.88 0.00 0.07 par:pas; +tournebroche tournebroche NOM m s 0.02 0.07 0.02 0.07 +tournedos tournedos NOM m 0.25 0.20 0.25 0.20 +tournelle tournelle NOM f s 0.00 1.15 0.00 1.15 +tournemain tournemain NOM m s 0.06 0.74 0.06 0.74 +tournements tournement NOM m p 0.00 0.07 0.00 0.07 +tournent tourner VER 204.13 377.09 5.97 11.35 ind:pre:3p;sub:pre:3p; +tourner tourner VER 204.13 377.09 51.03 68.78 inf; +tournera tourner VER 204.13 377.09 1.71 0.68 ind:fut:3s; +tournerai tourner VER 204.13 377.09 0.70 0.34 ind:fut:1s; +tourneraient tourner VER 204.13 377.09 0.06 0.34 cnd:pre:3p; +tournerais tourner VER 204.13 377.09 0.11 0.34 cnd:pre:1s;cnd:pre:2s; +tournerait tourner VER 204.13 377.09 1.08 1.82 cnd:pre:3s; +tourneras tourner VER 204.13 377.09 0.21 0.14 ind:fut:2s; +tournerez tourner VER 204.13 377.09 0.44 0.14 ind:fut:2p; +tourneries tournerie NOM f p 0.00 0.07 0.00 0.07 +tourneriez tourner VER 204.13 377.09 0.03 0.00 cnd:pre:2p; +tournerions tourner VER 204.13 377.09 0.01 0.00 cnd:pre:1p; +tournerons tourner VER 204.13 377.09 0.18 0.07 ind:fut:1p; +tourneront tourner VER 204.13 377.09 0.36 0.20 ind:fut:3p; +tournes tourner VER 204.13 377.09 4.85 0.95 ind:pre:2s; +tournesol tournesol NOM m s 1.43 1.22 0.86 0.61 +tournesols tournesol NOM m p 1.43 1.22 0.57 0.61 +tournette tournette NOM f s 0.01 0.00 0.01 0.00 +tourneur tourneur NOM m s 0.57 1.08 0.35 0.61 +tourneurs tourneur NOM m p 0.57 1.08 0.22 0.41 +tourneuses tourneur NOM f p 0.57 1.08 0.00 0.07 +tournevis tournevis NOM m 3.46 3.24 3.46 3.24 +tournez tourner VER 204.13 377.09 15.82 1.55 imp:pre:2p;ind:pre:2p; +tournicota tournicoter VER 0.03 1.01 0.01 0.00 ind:pas:3s; +tournicotais tournicoter VER 0.03 1.01 0.00 0.07 ind:imp:1s; +tournicotait tournicoter VER 0.03 1.01 0.00 0.20 ind:imp:3s; +tournicotant tournicoter VER 0.03 1.01 0.00 0.07 par:pre; +tournicote tournicoter VER 0.03 1.01 0.01 0.20 imp:pre:2s;ind:pre:3s; +tournicotent tournicoter VER 0.03 1.01 0.00 0.07 ind:pre:3p; +tournicoter tournicoter VER 0.03 1.01 0.01 0.20 inf; +tournicoterais tournicoter VER 0.03 1.01 0.00 0.07 cnd:pre:1s; +tournicoté tournicoter VER m s 0.03 1.01 0.00 0.07 par:pas; +tournicotés tournicoter VER m p 0.03 1.01 0.00 0.07 par:pas; +tournillant tourniller VER 0.00 0.07 0.00 0.07 par:pre; +tournions tourner VER 204.13 377.09 0.06 0.68 ind:imp:1p; +tourniquant tourniquer VER 0.20 0.20 0.00 0.14 par:pre; +tournique tourniquer VER 0.20 0.20 0.00 0.07 ind:pre:3s; +tourniquer tourniquer VER 0.20 0.20 0.20 0.00 inf; +tourniquet tourniquet NOM m s 0.68 2.77 0.65 2.30 +tourniquets tourniquet NOM m p 0.68 2.77 0.03 0.47 +tournis tournis NOM m 0.58 1.62 0.58 1.62 +tournoi tournoi NOM m s 6.86 3.38 5.84 2.16 +tournoie tournoyer VER 1.26 14.80 0.19 1.28 ind:pre:3s; +tournoiement tournoiement NOM m s 0.04 1.49 0.04 1.15 +tournoiements tournoiement NOM m p 0.04 1.49 0.00 0.34 +tournoient tournoyer VER 1.26 14.80 0.19 2.30 ind:pre:3p; +tournoieraient tournoyer VER 1.26 14.80 0.11 0.07 cnd:pre:3p; +tournoieront tournoyer VER 1.26 14.80 0.00 0.07 ind:fut:3p; +tournois tournoi NOM m p 6.86 3.38 1.02 1.22 +tournâmes tourner VER 204.13 377.09 0.00 0.41 ind:pas:1p; +tournons tourner VER 204.13 377.09 1.88 1.82 imp:pre:1p;ind:pre:1p; +tournât tourner VER 204.13 377.09 0.01 0.54 sub:imp:3s; +tournoya tournoyer VER 1.26 14.80 0.00 0.47 ind:pas:3s; +tournoyaient tournoyer VER 1.26 14.80 0.03 2.50 ind:imp:3p; +tournoyais tournoyer VER 1.26 14.80 0.00 0.07 ind:imp:1s; +tournoyait tournoyer VER 1.26 14.80 0.19 1.96 ind:imp:3s; +tournoyant tournoyer VER 1.26 14.80 0.26 2.16 par:pre; +tournoyante tournoyant ADJ f s 0.04 2.36 0.01 0.68 +tournoyantes tournoyant ADJ f p 0.04 2.36 0.01 0.34 +tournoyants tournoyant ADJ m p 0.04 2.36 0.00 0.54 +tournoyer tournoyer VER 1.26 14.80 0.27 3.65 inf; +tournoyèrent tournoyer VER 1.26 14.80 0.00 0.14 ind:pas:3p; +tournoyé tournoyer VER m s 1.26 14.80 0.02 0.14 par:pas; +tournèrent tourner VER 204.13 377.09 0.08 4.59 ind:pas:3p; +tourné tourner VER m s 204.13 377.09 24.84 38.78 par:pas; +tournée tournée NOM f s 20.57 23.85 18.64 18.72 +tournées tournée NOM f p 20.57 23.85 1.93 5.14 +tournure tournure NOM f s 3.00 8.24 2.82 6.42 +tournures tournure NOM f p 3.00 8.24 0.18 1.82 +tournés tourner VER m p 204.13 377.09 1.17 4.46 par:pas; +tours_minute tours_minute NOM p 0.00 0.07 0.00 0.07 +tours tour NOM p 193.82 308.72 18.26 28.45 +tourte tourte NOM f s 1.15 0.74 1.03 0.54 +tourteau tourteau NOM m s 0.01 0.81 0.00 0.27 +tourteaux tourteau NOM m p 0.01 0.81 0.01 0.54 +tourtereau tourtereau NOM m s 2.00 2.50 0.13 0.00 +tourtereaux tourtereau NOM m p 2.00 2.50 1.59 0.61 +tourterelle tourtereau NOM f s 2.00 2.50 0.28 1.01 +tourterelles tourterelle NOM f p 0.39 0.00 0.39 0.00 +tourtes tourte NOM f p 1.15 0.74 0.12 0.20 +tourtière tourtière NOM f s 0.03 0.07 0.02 0.00 +tourtières tourtière NOM f p 0.03 0.07 0.01 0.07 +tous_terrains tous_terrains ADJ m p 0.00 0.07 0.00 0.07 +tous tous PRO:ind m p 376.64 238.72 376.64 238.72 +toussa tousser VER 9.28 23.18 0.00 5.34 ind:pas:3s; +toussai tousser VER 9.28 23.18 0.00 0.07 ind:pas:1s; +toussaient tousser VER 9.28 23.18 0.11 0.34 ind:imp:3p; +toussaint toussaint NOM f s 0.54 0.27 0.54 0.27 +toussais tousser VER 9.28 23.18 0.16 0.07 ind:imp:1s;ind:imp:2s; +toussait tousser VER 9.28 23.18 0.35 3.65 ind:imp:3s; +toussant tousser VER 9.28 23.18 0.08 0.95 par:pre; +tousse tousser VER 9.28 23.18 4.89 4.73 imp:pre:2s;ind:pre:1s;ind:pre:3s; +toussent tousser VER 9.28 23.18 0.33 0.20 ind:pre:3p; +tousser tousser VER 9.28 23.18 1.84 5.81 inf; +toussera tousser VER 9.28 23.18 0.03 0.07 ind:fut:3s; +tousserait tousser VER 9.28 23.18 0.00 0.27 cnd:pre:3s; +tousses tousser VER 9.28 23.18 0.27 0.14 ind:pre:2s; +tousseur tousseur ADJ m s 0.01 0.20 0.00 0.14 +tousseurs tousseur ADJ m p 0.01 0.20 0.01 0.07 +tousseux tousseux ADJ m 0.00 0.07 0.00 0.07 +toussez tousser VER 9.28 23.18 0.51 0.20 imp:pre:2p;ind:pre:2p; +toussions tousser VER 9.28 23.18 0.00 0.07 ind:imp:1p; +toussons tousser VER 9.28 23.18 0.01 0.14 imp:pre:1p;ind:pre:1p; +toussota toussoter VER 0.14 5.14 0.00 2.43 ind:pas:3s; +toussotai toussoter VER 0.14 5.14 0.00 0.07 ind:pas:1s; +toussotaient toussoter VER 0.14 5.14 0.00 0.07 ind:imp:3p; +toussotait toussoter VER 0.14 5.14 0.00 0.54 ind:imp:3s; +toussotant toussoter VER 0.14 5.14 0.00 0.47 par:pre; +toussote toussoter VER 0.14 5.14 0.00 0.95 ind:pre:1s;ind:pre:3s; +toussotement toussotement NOM m s 0.01 0.68 0.01 0.41 +toussotements toussotement NOM m p 0.01 0.68 0.00 0.27 +toussotent toussoter VER 0.14 5.14 0.00 0.07 ind:pre:3p; +toussoter toussoter VER 0.14 5.14 0.01 0.34 inf; +toussoteux toussoteux ADJ m p 0.00 0.07 0.00 0.07 +toussotiez toussoter VER 0.14 5.14 0.00 0.07 ind:imp:2p; +toussoté toussoter VER m s 0.14 5.14 0.14 0.14 par:pas; +toussé tousser VER m s 9.28 23.18 0.70 1.15 par:pas; +tout_fait tout_fait ADJ:ind m s 0.14 0.00 0.11 0.00 +tout_fou tout_fou ADJ m s 0.01 0.00 0.01 0.00 +tout_à_l_égout tout_à_l_égout NOM m 0.00 0.47 0.00 0.47 +tout_paris tout_paris NOM m 0.16 1.01 0.16 1.01 +tout_petit tout_petit NOM m s 0.20 0.74 0.03 0.34 +tout_petit tout_petit NOM m p 0.20 0.74 0.17 0.41 +tout_puissant tout_puissant ADJ m s 7.22 3.65 5.70 2.09 +tout_puissant tout_puissant ADJ m p 7.22 3.65 0.17 0.41 +tout_terrain tout_terrain NOM m s 0.28 0.00 0.28 0.00 +tout_étoile tout_étoile NOM m s 0.01 0.00 0.01 0.00 +tout_venant tout_venant NOM m 0.05 0.74 0.05 0.74 +tout tout PRO:ind m s 1366.45 838.04 1366.45 838.04 +toute_puissance toute_puissance NOM f 0.08 2.03 0.08 2.03 +tout_puissant tout_puissant ADJ f s 7.22 3.65 1.35 1.15 +toute toute ADJ:ind f s 118.32 194.26 118.32 194.26 +toutefois toutefois ADV 5.37 35.47 5.37 35.47 +toute_puissante toute_puissante ADJ f p 0.01 0.14 0.01 0.14 +toutes toutes PRO:ind f p 20.86 24.19 20.86 24.19 +toutim toutim NOM m s 0.31 0.88 0.31 0.88 +toutime toutime NOM m s 0.00 0.74 0.00 0.74 +toutou toutou NOM m s 6.06 1.89 5.65 1.55 +toutous toutou NOM m p 6.06 1.89 0.41 0.34 +touts tout NOM m p 330.70 281.01 0.10 0.00 +toué touer VER m s 0.02 0.14 0.00 0.07 par:pas; +toux toux NOM f 4.94 12.23 4.94 12.23 +toxicité toxicité NOM f s 0.34 0.20 0.34 0.20 +toxico toxico NOM s 1.33 0.88 1.14 0.20 +toxicologie toxicologie NOM f s 0.61 0.00 0.61 0.00 +toxicologique toxicologique ADJ s 0.93 0.00 0.93 0.00 +toxicologue toxicologue NOM s 0.06 0.00 0.04 0.00 +toxicologues toxicologue NOM p 0.06 0.00 0.01 0.00 +toxicomane toxicomane NOM s 1.67 0.54 1.16 0.07 +toxicomanes toxicomane NOM p 1.67 0.54 0.51 0.47 +toxicomanie toxicomanie NOM f s 0.21 0.00 0.21 0.00 +toxicos toxico NOM p 1.33 0.88 0.19 0.68 +toxine toxine NOM f s 2.29 0.07 0.90 0.00 +toxines toxine NOM f p 2.29 0.07 1.39 0.07 +toxique toxique ADJ s 5.20 0.74 3.00 0.34 +toxiques toxique ADJ p 5.20 0.74 2.20 0.41 +toxoplasmose toxoplasmose NOM f s 0.07 0.20 0.07 0.20 +trôler trôler VER 0.01 0.00 0.01 0.00 inf; +trôna trôner VER 0.34 10.20 0.00 0.07 ind:pas:3s; +trônaient trôner VER 0.34 10.20 0.00 0.81 ind:imp:3p; +trônais trôner VER 0.34 10.20 0.00 0.07 ind:imp:1s; +trônait trôner VER 0.34 10.20 0.11 5.34 ind:imp:3s; +trônant trôner VER 0.34 10.20 0.11 1.49 par:pre; +trône trône NOM m s 14.32 12.03 13.99 11.49 +trônent trôner VER 0.34 10.20 0.01 0.34 ind:pre:3p; +trôner trôner VER 0.34 10.20 0.03 0.34 inf; +trônerait trôner VER 0.34 10.20 0.00 0.07 cnd:pre:3s; +trônes trône NOM m p 14.32 12.03 0.33 0.54 +trôné trôner VER m s 0.34 10.20 0.00 0.07 par:pas; +traîna traîner VER 65.49 122.77 0.05 4.05 ind:pas:3s; +traînage traînage NOM m s 0.01 0.00 0.01 0.00 +traînai traîner VER 65.49 122.77 0.01 1.08 ind:pas:1s; +traînaient traîner VER 65.49 122.77 0.45 11.15 ind:imp:3p; +traînaillait traînailler VER 0.03 0.74 0.00 0.07 ind:imp:3s; +traînaillant traînailler VER 0.03 0.74 0.01 0.14 par:pre; +traînaille traînailler VER 0.03 0.74 0.00 0.07 ind:pre:3s; +traînailler traînailler VER 0.03 0.74 0.02 0.27 inf; +traînaillons traînailler VER 0.03 0.74 0.00 0.07 imp:pre:1p; +traînaillé traînailler VER m s 0.03 0.74 0.00 0.14 par:pas; +traînais traîner VER 65.49 122.77 1.94 2.16 ind:imp:1s;ind:imp:2s; +traînait traîner VER 65.49 122.77 3.66 19.59 ind:imp:3s; +traînant traîner VER 65.49 122.77 1.41 13.18 par:pre; +traînante traînant ADJ f s 0.05 5.88 0.00 1.96 +traînantes traînant ADJ f p 0.05 5.88 0.00 0.61 +traînants traînant ADJ m p 0.05 5.88 0.01 0.27 +traînard traînard NOM m s 0.35 1.35 0.16 0.27 +traînarde traînard ADJ f s 0.07 0.88 0.01 0.07 +traînards traînard NOM m p 0.35 1.35 0.19 1.01 +traînassaient traînasser VER 0.49 1.28 0.01 0.07 ind:imp:3p; +traînassais traînasser VER 0.49 1.28 0.02 0.00 ind:imp:1s; +traînassait traînasser VER 0.49 1.28 0.00 0.07 ind:imp:3s; +traînassant traînasser VER 0.49 1.28 0.00 0.07 par:pre; +traînasse traînasser VER 0.49 1.28 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +traînassent traînasser VER 0.49 1.28 0.00 0.14 ind:pre:3p; +traînasser traînasser VER 0.49 1.28 0.34 0.41 inf; +traînasserai traînasser VER 0.49 1.28 0.01 0.00 ind:fut:1s; +traînasses traînasser VER 0.49 1.28 0.03 0.00 ind:pre:2s; +traînassez traînasser VER 0.49 1.28 0.01 0.00 imp:pre:2p; +traînassons traînasser VER 0.49 1.28 0.00 0.07 ind:pre:1p; +traînassé traînasser VER m s 0.49 1.28 0.00 0.14 par:pas; +traîne_misère traîne_misère NOM m 0.01 0.07 0.01 0.07 +traîne_patins traîne_patins NOM m 0.00 0.47 0.00 0.47 +traîne_savate traîne_savate NOM m s 0.01 0.07 0.01 0.07 +traîne_savates traîne_savates NOM m 0.22 0.54 0.22 0.54 +traîne_semelle traîne_semelle NOM s 0.00 0.07 0.00 0.07 +traîne_semelles traîne_semelles NOM m 0.01 0.07 0.01 0.07 +traîne traîner VER 65.49 122.77 14.63 16.49 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +traîneau traîneau NOM m s 2.27 3.45 2.27 3.45 +traîneaux traineaux NOM m p 0.10 1.08 0.10 1.08 +traînement traînement NOM m s 0.03 0.00 0.03 0.00 +traînent traîner VER 65.49 122.77 3.42 7.03 ind:pre:3p; +traîner traîner VER 65.49 122.77 21.48 28.04 inf;; +traînera traîner VER 65.49 122.77 0.31 0.47 ind:fut:3s; +traînerai traîner VER 65.49 122.77 0.54 0.07 ind:fut:1s; +traîneraient traîner VER 65.49 122.77 0.02 0.07 cnd:pre:3p; +traînerais traîner VER 65.49 122.77 0.25 0.07 cnd:pre:1s;cnd:pre:2s; +traînerait traîner VER 65.49 122.77 0.10 0.34 cnd:pre:3s; +traîneras traîner VER 65.49 122.77 0.09 0.00 ind:fut:2s; +traînerez traîner VER 65.49 122.77 0.19 0.00 ind:fut:2p; +traînerons traîner VER 65.49 122.77 0.17 0.00 ind:fut:1p; +traîneront traîner VER 65.49 122.77 0.04 0.20 ind:fut:3p; +traînes traîner VER 65.49 122.77 4.29 0.68 ind:pre:2s; +traîneur traîneur NOM m s 0.01 0.41 0.00 0.27 +traîneurs traîneur NOM m p 0.01 0.41 0.01 0.07 +traîneuses traîneuse NOM f p 0.01 0.00 0.01 0.00 +traînez traîner VER 65.49 122.77 2.95 0.47 imp:pre:2p;ind:pre:2p; +traînier traînier NOM m s 0.00 0.20 0.00 0.20 +traîniez traîner VER 65.49 122.77 0.12 0.07 ind:imp:2p; +traînions traîner VER 65.49 122.77 0.04 0.41 ind:imp:1p; +traînâmes traîner VER 65.49 122.77 0.00 0.07 ind:pas:1p; +traînons traîner VER 65.49 122.77 0.29 0.47 imp:pre:1p;ind:pre:1p; +traînât traîner VER 65.49 122.77 0.00 0.20 sub:imp:3s; +traînèrent traîner VER 65.49 122.77 0.12 0.88 ind:pas:3p; +traîné traîner VER m s 65.49 122.77 6.80 11.89 par:pas; +traînée traînée NOM f s 7.35 13.24 6.49 6.28 +traînées traînée NOM f p 7.35 13.24 0.86 6.96 +traînés traîner VER m p 65.49 122.77 0.73 1.35 par:pas; +traître traître NOM m s 26.36 13.24 19.18 7.30 +traîtres traître NOM m p 26.36 13.24 7.18 5.95 +traîtresse traîtresse NOM f s 1.54 0.41 1.14 0.34 +traîtresses traîtresse NOM f p 1.54 0.41 0.41 0.07 +traîtreusement traîtreusement ADV 0.01 1.01 0.01 1.01 +traîtrise traîtrise NOM f s 1.27 1.96 1.27 1.82 +traîtrises traîtrise NOM f p 1.27 1.96 0.00 0.14 +trabans traban NOM m p 0.00 0.07 0.00 0.07 +traboules traboule NOM f p 0.14 0.07 0.14 0.07 +trabuco trabuco NOM m s 0.02 0.14 0.02 0.14 +trac trac NOM m s 5.17 8.38 4.91 8.24 +tracas tracas NOM m 1.43 4.46 1.43 4.46 +tracassa tracasser VER 10.37 5.88 0.00 0.07 ind:pas:3s; +tracassaient tracasser VER 10.37 5.88 0.03 0.14 ind:imp:3p; +tracassait tracasser VER 10.37 5.88 0.47 1.42 ind:imp:3s; +tracassant tracasser VER 10.37 5.88 0.00 0.14 par:pre; +tracasse tracasser VER 10.37 5.88 7.15 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tracassent tracasser VER 10.37 5.88 0.27 0.20 ind:pre:3p; +tracasser tracasser VER 10.37 5.88 0.56 0.68 inf; +tracassera tracasser VER 10.37 5.88 0.02 0.00 ind:fut:3s; +tracasserais tracasser VER 10.37 5.88 0.02 0.00 cnd:pre:1s; +tracasserait tracasser VER 10.37 5.88 0.03 0.07 cnd:pre:3s; +tracasserie tracasserie NOM f s 0.34 0.95 0.01 0.07 +tracasseries tracasserie NOM f p 0.34 0.95 0.33 0.88 +tracasserons tracasser VER 10.37 5.88 0.01 0.00 ind:fut:1p; +tracasses tracasser VER 10.37 5.88 0.47 0.07 ind:pre:2s; +tracassez tracasser VER 10.37 5.88 0.83 0.61 imp:pre:2p;ind:pre:2p; +tracassier tracassier ADJ m s 0.10 0.27 0.10 0.20 +tracassin tracassin NOM m s 0.00 0.27 0.00 0.27 +tracassière tracassier NOM f s 0.00 0.07 0.00 0.07 +tracassières tracassier ADJ f p 0.10 0.27 0.00 0.07 +tracassé tracasser VER m s 10.37 5.88 0.45 0.41 par:pas; +tracassée tracasser VER f s 10.37 5.88 0.06 0.27 par:pas; +tracassées tracasser VER f p 10.37 5.88 0.00 0.07 par:pas; +trace trace NOM f s 60.18 80.27 29.20 39.32 +tracent tracer VER 10.49 42.36 0.30 1.42 ind:pre:3p; +tracer tracer VER 10.49 42.36 2.08 7.23 inf; +tracera tracer VER 10.49 42.36 0.01 0.07 ind:fut:3s; +tracerez tracer VER 10.49 42.36 0.01 0.00 ind:fut:2p; +tracerons tracer VER 10.49 42.36 0.01 0.00 ind:fut:1p; +traces trace NOM f p 60.18 80.27 30.98 40.95 +traceur traceur NOM m s 0.59 0.00 0.52 0.00 +traceurs traceur NOM m p 0.59 0.00 0.08 0.00 +traceuse traceur ADJ f s 0.11 0.20 0.01 0.00 +traceuses traceur ADJ f p 0.11 0.20 0.00 0.20 +tracez tracer VER 10.49 42.36 0.26 0.14 imp:pre:2p;ind:pre:2p; +trachome trachome NOM m s 0.02 0.07 0.02 0.07 +trachéal trachéal ADJ m s 0.09 0.00 0.05 0.00 +trachéale trachéal ADJ f s 0.09 0.00 0.04 0.00 +trachée_artère trachée_artère NOM f s 0.02 0.20 0.02 0.20 +trachée trachée NOM f s 0.97 0.41 0.97 0.34 +trachées trachée NOM f p 0.97 0.41 0.00 0.07 +trachéite trachéite NOM f s 0.00 0.07 0.00 0.07 +trachéotomie trachéotomie NOM f s 0.35 0.14 0.35 0.14 +tracions tracer VER 10.49 42.36 0.00 0.07 ind:imp:1p; +tracs trac NOM m p 5.17 8.38 0.26 0.14 +tract tract NOM m s 3.67 9.39 0.41 2.50 +tractage tractage NOM m s 0.01 0.00 0.01 0.00 +tractait tracter VER 0.27 0.41 0.01 0.07 ind:imp:3s; +tractant tracter VER 0.27 0.41 0.01 0.07 par:pre; +tractation tractation NOM f s 0.12 1.96 0.01 0.27 +tractations tractation NOM f p 0.12 1.96 0.11 1.69 +tracter tracter VER 0.27 0.41 0.23 0.14 inf; +tracteur tracteur NOM m s 3.86 6.82 2.87 5.27 +tracteurs tracteur NOM m p 3.86 6.82 0.99 1.55 +tracèrent tracer VER 10.49 42.36 0.00 0.14 ind:pas:3p; +traction_avant traction_avant NOM f s 0.00 0.07 0.00 0.07 +traction traction NOM f s 1.19 8.31 1.06 7.43 +tractions traction NOM f p 1.19 8.31 0.13 0.88 +tractopelle tractopelle NOM f s 0.24 0.00 0.24 0.00 +tractoriste tractoriste NOM s 0.10 0.20 0.10 0.07 +tractoristes tractoriste NOM p 0.10 0.20 0.00 0.14 +tracts tract NOM m p 3.67 9.39 3.26 6.89 +tracté tracté ADJ m s 0.04 0.20 0.04 0.14 +tractée tracter VER f s 0.27 0.41 0.00 0.07 par:pas; +tractés tracté ADJ m p 0.04 0.20 0.00 0.07 +tractus tractus NOM m 0.12 0.20 0.12 0.20 +tracé tracer VER m s 10.49 42.36 2.22 7.30 par:pas; +tracée tracer VER f s 10.49 42.36 1.13 3.24 par:pas; +tracées tracer VER f p 10.49 42.36 0.28 3.31 par:pas; +tracés tracer VER m p 10.49 42.36 0.40 3.51 par:pas; +trader trader NOM m s 0.33 0.00 0.33 0.00 +tradition tradition NOM f s 20.56 33.92 15.68 23.38 +traditionalisme traditionalisme NOM m s 0.11 0.54 0.11 0.54 +traditionaliste traditionaliste ADJ s 0.07 0.41 0.07 0.41 +traditionalistes traditionaliste NOM p 0.09 0.61 0.04 0.41 +traditionnel traditionnel ADJ m s 6.85 15.20 2.66 5.47 +traditionnelle traditionnel ADJ f s 6.85 15.20 2.72 5.14 +traditionnellement traditionnellement ADV 0.34 3.24 0.34 3.24 +traditionnelles traditionnel ADJ f p 6.85 15.20 0.75 2.43 +traditionnels traditionnel ADJ m p 6.85 15.20 0.71 2.16 +traditions tradition NOM f p 20.56 33.92 4.87 10.54 +traduc traduc NOM f s 0.17 0.00 0.17 0.00 +traducteur traducteur NOM m s 4.41 3.51 2.95 2.09 +traducteurs traducteur NOM m p 4.41 3.51 0.85 0.88 +traduction traduction NOM f s 5.24 11.15 4.70 8.45 +traductions traduction NOM f p 5.24 11.15 0.55 2.70 +traductrice traducteur NOM f s 4.41 3.51 0.60 0.41 +traductrices traductrice NOM f p 0.01 0.00 0.01 0.00 +traduira traduire VER 15.41 34.32 0.25 0.14 ind:fut:3s; +traduirai traduire VER 15.41 34.32 0.09 0.07 ind:fut:1s; +traduiraient traduire VER 15.41 34.32 0.00 0.14 cnd:pre:3p; +traduirais traduire VER 15.41 34.32 0.25 0.00 cnd:pre:1s; +traduirait traduire VER 15.41 34.32 0.01 0.14 cnd:pre:3s; +traduire traduire VER 15.41 34.32 5.27 11.01 inf; +traduirez traduire VER 15.41 34.32 0.23 0.07 ind:fut:2p; +traduis traduire VER 15.41 34.32 2.17 1.22 imp:pre:2s;ind:pre:1s;ind:pre:2s; +traduisît traduire VER 15.41 34.32 0.00 0.07 sub:imp:3s; +traduisaient traduire VER 15.41 34.32 0.01 0.74 ind:imp:3p; +traduisais traduire VER 15.41 34.32 0.16 0.47 ind:imp:1s;ind:imp:2s; +traduisait traduire VER 15.41 34.32 0.15 4.86 ind:imp:3s; +traduisant traduire VER 15.41 34.32 0.14 1.08 par:pre; +traduise traduire VER 15.41 34.32 0.21 0.14 sub:pre:1s;sub:pre:3s; +traduisent traduire VER 15.41 34.32 0.23 0.95 ind:pre:3p; +traduises traduire VER 15.41 34.32 0.03 0.00 sub:pre:2s; +traduisez traduire VER 15.41 34.32 0.99 0.20 imp:pre:2p;ind:pre:2p; +traduisibles traduisible ADJ f p 0.01 0.14 0.01 0.14 +traduisions traduire VER 15.41 34.32 0.01 0.00 ind:imp:1p; +traduisis traduire VER 15.41 34.32 0.00 0.47 ind:pas:1s; +traduisit traduire VER 15.41 34.32 0.01 1.69 ind:pas:3s; +traduisons traduire VER 15.41 34.32 0.00 0.07 imp:pre:1p; +traduit traduire VER m s 15.41 34.32 4.30 8.24 ind:pre:3s;par:pas; +traduite traduire VER f s 15.41 34.32 0.25 0.81 par:pas; +traduites traduire VER f p 15.41 34.32 0.06 0.68 par:pas; +traduits traduire VER m p 15.41 34.32 0.59 1.08 par:pas; +trafalgar trafalgar NOM s 0.00 0.20 0.00 0.20 +trafic trafic NOM m s 14.02 10.27 13.24 8.65 +traficotaient traficoter VER 0.49 0.47 0.00 0.07 ind:imp:3p; +traficotait traficoter VER 0.49 0.47 0.16 0.14 ind:imp:3s; +traficote traficoter VER 0.49 0.47 0.13 0.07 ind:pre:3s; +traficoter traficoter VER 0.49 0.47 0.11 0.14 inf; +traficotes traficoter VER 0.49 0.47 0.06 0.00 ind:pre:2s; +traficoteurs traficoteur NOM m p 0.00 0.07 0.00 0.07 +traficotez traficoter VER 0.49 0.47 0.01 0.00 ind:pre:2p; +traficoté traficoter VER m s 0.49 0.47 0.02 0.07 par:pas; +trafics trafic NOM m p 14.02 10.27 0.78 1.62 +trafiquaient trafiquer VER 7.25 3.78 0.07 0.20 ind:imp:3p; +trafiquais trafiquer VER 7.25 3.78 0.31 0.00 ind:imp:1s;ind:imp:2s; +trafiquait trafiquer VER 7.25 3.78 0.29 0.27 ind:imp:3s; +trafiquant_espion trafiquant_espion NOM m s 0.00 0.07 0.00 0.07 +trafiquant trafiquant NOM m s 5.41 3.38 2.65 1.28 +trafiquante trafiquant NOM f s 5.41 3.38 0.04 0.00 +trafiquants trafiquant NOM m p 5.41 3.38 2.72 2.09 +trafique trafiquer VER 7.25 3.78 1.06 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trafiquent trafiquer VER 7.25 3.78 0.13 0.34 ind:pre:3p; +trafiquer trafiquer VER 7.25 3.78 1.08 1.01 inf; +trafiquerais trafiquer VER 7.25 3.78 0.01 0.00 cnd:pre:1s; +trafiques trafiquer VER 7.25 3.78 0.34 0.07 ind:pre:2s; +trafiquez trafiquer VER 7.25 3.78 0.31 0.07 imp:pre:2p;ind:pre:2p; +trafiquions trafiquer VER 7.25 3.78 0.00 0.07 ind:imp:1p; +trafiqué trafiquer VER m s 7.25 3.78 1.83 0.54 par:pas; +trafiquée trafiquer VER f s 7.25 3.78 0.46 0.34 par:pas; +trafiquées trafiquer VER f p 7.25 3.78 0.53 0.07 par:pas; +trafiqués trafiquer VER m p 7.25 3.78 0.25 0.07 par:pas; +tragi_comique tragi_comique ADJ f s 0.00 0.47 0.00 0.34 +tragi_comique tragi_comique ADJ m p 0.00 0.47 0.00 0.14 +tragi_comédie tragi_comédie NOM f s 0.00 0.27 0.00 0.14 +tragi_comédie tragi_comédie NOM f p 0.00 0.27 0.00 0.14 +tragicomédies tragicomédie NOM f p 0.01 0.00 0.01 0.00 +tragique tragique ADJ s 12.13 22.50 10.55 17.97 +tragiquement tragiquement ADV 0.58 1.96 0.58 1.96 +tragiques tragique ADJ p 12.13 22.50 1.59 4.53 +tragédie tragédie NOM f s 15.59 14.46 14.23 10.88 +tragédien tragédien NOM m s 0.52 1.15 0.07 0.20 +tragédienne tragédien NOM f s 0.52 1.15 0.25 0.54 +tragédiennes tragédienne NOM f p 0.01 0.00 0.01 0.00 +tragédiens tragédien NOM m p 0.52 1.15 0.20 0.34 +tragédies tragédie NOM f p 15.59 14.46 1.36 3.58 +trahi trahir VER m s 46.83 41.55 16.18 8.11 par:pas; +trahie trahir VER f s 46.83 41.55 2.35 2.97 par:pas; +trahies trahir VER f p 46.83 41.55 0.17 0.14 par:pas; +trahir trahir VER 46.83 41.55 10.16 11.01 inf; +trahira trahir VER 46.83 41.55 1.38 0.34 ind:fut:3s; +trahirai trahir VER 46.83 41.55 0.97 0.07 ind:fut:1s; +trahiraient trahir VER 46.83 41.55 0.07 0.20 cnd:pre:3p; +trahirais trahir VER 46.83 41.55 0.40 0.07 cnd:pre:1s;cnd:pre:2s; +trahirait trahir VER 46.83 41.55 0.77 0.34 cnd:pre:3s; +trahiras trahir VER 46.83 41.55 0.09 0.07 ind:fut:2s; +trahirent trahir VER 46.83 41.55 0.00 0.20 ind:pas:3p; +trahirez trahir VER 46.83 41.55 0.07 0.14 ind:fut:2p; +trahiriez trahir VER 46.83 41.55 0.05 0.00 cnd:pre:2p; +trahirons trahir VER 46.83 41.55 0.01 0.00 ind:fut:1p; +trahiront trahir VER 46.83 41.55 0.10 0.41 ind:fut:3p; +trahis trahir VER m p 46.83 41.55 5.92 2.91 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +trahison trahison NOM f s 18.61 18.51 16.74 15.27 +trahisons trahison NOM f p 18.61 18.51 1.88 3.24 +trahissaient trahir VER 46.83 41.55 0.26 1.55 ind:imp:3p; +trahissais trahir VER 46.83 41.55 0.06 0.34 ind:imp:1s;ind:imp:2s; +trahissait trahir VER 46.83 41.55 0.16 4.59 ind:imp:3s; +trahissant trahir VER 46.83 41.55 0.50 0.95 par:pre; +trahisse trahir VER 46.83 41.55 0.45 0.74 sub:pre:1s;sub:pre:3s; +trahissent trahir VER 46.83 41.55 1.50 1.62 ind:pre:3p; +trahissez trahir VER 46.83 41.55 1.07 0.27 imp:pre:2p;ind:pre:2p; +trahissiez trahir VER 46.83 41.55 0.28 0.00 ind:imp:2p; +trahissions trahir VER 46.83 41.55 0.01 0.00 ind:imp:1p; +trahissons trahir VER 46.83 41.55 0.01 0.00 imp:pre:1p; +trahit trahir VER 46.83 41.55 3.85 4.53 ind:pre:3s;ind:pas:3s; +traie traire VER 3.69 4.59 0.27 0.00 sub:pre:1s; +train_train train_train NOM m 0.69 1.62 0.69 1.62 +train train NOM m s 255.28 288.65 244.40 271.28 +trainglots trainglot NOM m p 0.00 0.07 0.00 0.07 +training training NOM m s 0.02 0.07 0.02 0.07 +trains train NOM m p 255.28 288.65 10.88 17.36 +traintrain traintrain NOM m 0.00 0.14 0.00 0.14 +traira traire VER 3.69 4.59 0.01 0.00 ind:fut:3s; +trairait traire VER 3.69 4.59 0.01 0.07 cnd:pre:3s; +traire traire VER 3.69 4.59 1.80 1.82 inf; +trais traire VER 3.69 4.59 0.35 0.00 ind:pre:1s;ind:pre:2s; +trait trait NOM m s 15.86 97.30 7.83 37.91 +traita traiter VER 104.05 69.93 0.38 2.43 ind:pas:3s; +traitable traitable ADJ m s 0.05 0.14 0.05 0.07 +traitables traitable ADJ p 0.05 0.14 0.00 0.07 +traitai traiter VER 104.05 69.93 0.00 0.47 ind:pas:1s; +traitaient traiter VER 104.05 69.93 0.67 2.91 ind:imp:3p; +traitais traiter VER 104.05 69.93 0.81 0.47 ind:imp:1s;ind:imp:2s; +traitait traiter VER 104.05 69.93 2.74 10.34 ind:imp:3s; +traitant traiter VER 104.05 69.93 1.30 3.18 par:pre; +traitante traitant ADJ f s 0.34 0.41 0.00 0.07 +traitants traitant ADJ m p 0.34 0.41 0.01 0.07 +traitassent traiter VER 104.05 69.93 0.00 0.07 sub:imp:3p; +traite traiter VER 104.05 69.93 24.08 8.11 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +traitement traitement NOM m s 29.23 14.66 25.44 11.08 +traitements traitement NOM m p 29.23 14.66 3.79 3.58 +traitent traiter VER 104.05 69.93 3.95 1.15 ind:pre:3p;sub:pre:3p; +traiter traiter VER 104.05 69.93 25.23 20.27 ind:pre:2p;inf; +traitera traiter VER 104.05 69.93 1.15 0.27 ind:fut:3s; +traiterai traiter VER 104.05 69.93 0.51 0.14 ind:fut:1s; +traiteraient traiter VER 104.05 69.93 0.09 0.14 cnd:pre:3p; +traiterais traiter VER 104.05 69.93 0.19 0.07 cnd:pre:1s;cnd:pre:2s; +traiterait traiter VER 104.05 69.93 0.39 0.81 cnd:pre:3s; +traiteras traiter VER 104.05 69.93 0.25 0.00 ind:fut:2s; +traiterez traiter VER 104.05 69.93 0.32 0.00 ind:fut:2p; +traiteriez traiter VER 104.05 69.93 0.10 0.00 cnd:pre:2p; +traiterons traiter VER 104.05 69.93 0.20 0.00 ind:fut:1p; +traiteront traiter VER 104.05 69.93 0.49 0.27 ind:fut:3p; +traites traiter VER 104.05 69.93 6.84 0.14 ind:pre:2s;sub:pre:2s; +traiteur traiteur NOM m s 4.07 1.62 3.45 1.35 +traiteurs traiteur NOM m p 4.07 1.62 0.62 0.27 +traitez traiter VER 104.05 69.93 6.09 0.74 imp:pre:2p;ind:pre:2p; +traitiez traiter VER 104.05 69.93 0.40 0.07 ind:imp:2p;sub:pre:2p; +traitions traiter VER 104.05 69.93 0.05 0.54 ind:imp:1p; +traitons traiter VER 104.05 69.93 1.16 0.14 imp:pre:1p;ind:pre:1p; +traitât traiter VER 104.05 69.93 0.00 0.54 sub:imp:3s; +traits trait NOM m p 15.86 97.30 8.03 59.39 +traitèrent traiter VER 104.05 69.93 0.10 0.20 ind:pas:3p; +traité traiter VER m s 104.05 69.93 15.51 7.84 par:pas; +traitée traiter VER f s 104.05 69.93 6.87 3.99 par:pas; +traitées traiter VER f p 104.05 69.93 0.78 0.74 par:pas; +traités traiter VER m p 104.05 69.93 3.41 3.92 par:pas; +trajectographie trajectographie NOM f s 0.02 0.00 0.02 0.00 +trajectoire trajectoire NOM f s 5.90 6.42 5.53 5.54 +trajectoires trajectoire NOM f p 5.90 6.42 0.37 0.88 +trajet trajet NOM m s 7.74 16.69 7.23 14.66 +trajets trajet NOM m p 7.74 16.69 0.51 2.03 +tralala tralala NOM m s 1.10 1.55 1.09 1.28 +tralalas tralala NOM m p 1.10 1.55 0.01 0.27 +tram tram NOM m s 5.73 2.30 5.51 1.69 +tramaient tramer VER 3.06 3.31 0.01 0.54 ind:imp:3p; +tramail tramail NOM m s 0.00 0.27 0.00 0.20 +tramails tramail NOM m p 0.00 0.27 0.00 0.07 +tramait tramer VER 3.06 3.31 0.16 0.88 ind:imp:3s; +tramant tramer VER 3.06 3.31 0.00 0.27 par:pre; +trame tramer VER 3.06 3.31 2.36 1.08 ind:pre:1s;ind:pre:3s; +trament tramer VER 3.06 3.31 0.10 0.00 ind:pre:3p; +tramer tramer VER 3.06 3.31 0.32 0.07 inf; +trames trame NOM f p 0.75 5.41 0.32 0.14 +tramez tramer VER 3.06 3.31 0.03 0.00 imp:pre:2p;ind:pre:2p; +tramontane tramontane NOM f s 0.14 0.34 0.14 0.27 +tramontanes tramontane NOM f p 0.14 0.34 0.00 0.07 +tramp tramp NOM m s 0.04 0.00 0.04 0.00 +trampoline trampoline NOM s 1.17 0.14 1.17 0.14 +trams tram NOM m p 5.73 2.30 0.22 0.61 +tramé tramer VER m s 3.06 3.31 0.06 0.41 par:pas; +tramés tramer VER m p 3.06 3.31 0.00 0.07 par:pas; +tramway tramway NOM m s 0.17 7.64 0.17 5.54 +tramways tramway NOM m p 0.17 7.64 0.00 2.09 +trancha trancher VER 11.97 24.73 0.02 4.39 ind:pas:3s; +tranchage tranchage NOM m s 0.01 0.07 0.01 0.07 +tranchai trancher VER 11.97 24.73 0.01 0.07 ind:pas:1s; +tranchaient trancher VER 11.97 24.73 0.01 0.95 ind:imp:3p; +tranchais trancher VER 11.97 24.73 0.23 0.00 ind:imp:1s; +tranchait trancher VER 11.97 24.73 0.05 2.43 ind:imp:3s; +tranchant tranchant ADJ m s 2.54 5.27 1.49 2.43 +tranchante tranchant ADJ f s 2.54 5.27 0.62 1.96 +tranchantes tranchant ADJ f p 2.54 5.27 0.23 0.41 +tranchants tranchant ADJ m p 2.54 5.27 0.20 0.47 +tranche_montagne tranche_montagne NOM m s 0.28 0.07 0.28 0.07 +tranche tranche NOM f s 6.95 21.82 5.28 11.08 +tranchecaille tranchecaille NOM f s 0.00 0.07 0.00 0.07 +tranchelards tranchelard NOM m p 0.00 0.07 0.00 0.07 +tranchent trancher VER 11.97 24.73 0.18 0.81 ind:pre:3p; +trancher trancher VER 11.97 24.73 3.88 5.07 inf; +tranchera trancher VER 11.97 24.73 0.26 0.14 ind:fut:3s; +trancherai trancher VER 11.97 24.73 0.23 0.20 ind:fut:1s; +trancherais trancher VER 11.97 24.73 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +trancherait trancher VER 11.97 24.73 0.17 0.27 cnd:pre:3s; +trancheras trancher VER 11.97 24.73 0.16 0.00 ind:fut:2s; +trancheront trancher VER 11.97 24.73 0.06 0.00 ind:fut:3p; +tranches tranche NOM f p 6.95 21.82 1.68 10.74 +tranchet tranchet NOM m s 0.00 0.27 0.00 0.20 +tranchets tranchet NOM m p 0.00 0.27 0.00 0.07 +trancheur trancheur NOM m s 0.19 0.00 0.15 0.00 +trancheuse trancheur NOM f s 0.19 0.00 0.04 0.00 +tranchez trancher VER 11.97 24.73 0.24 0.00 imp:pre:2p; +tranchiez trancher VER 11.97 24.73 0.01 0.00 ind:imp:2p; +tranchoir tranchoir NOM m s 0.03 0.34 0.01 0.14 +tranchoirs tranchoir NOM m p 0.03 0.34 0.01 0.20 +tranchons trancher VER 11.97 24.73 0.06 0.14 imp:pre:1p;ind:pre:1p; +tranchât trancher VER 11.97 24.73 0.00 0.14 sub:imp:3s; +tranchèrent trancher VER 11.97 24.73 0.03 0.00 ind:pas:3p; +tranché trancher VER m s 11.97 24.73 2.51 2.91 par:pas; +tranchée_abri tranchée_abri NOM f s 0.00 0.81 0.00 0.74 +tranchée tranchée NOM f s 6.22 33.72 3.70 21.55 +tranchée_abri tranchée_abri NOM f p 0.00 0.81 0.00 0.07 +tranchées tranchée NOM f p 6.22 33.72 2.52 12.16 +tranchés tranché ADJ m p 2.13 3.72 0.05 0.34 +tranquille tranquille ADJ s 119.69 91.96 103.28 77.50 +tranquillement tranquillement ADV 13.26 26.82 13.26 26.82 +tranquilles tranquille ADJ p 119.69 91.96 16.41 14.46 +tranquillisa tranquilliser VER 1.22 2.09 0.00 0.07 ind:pas:3s; +tranquillisai tranquilliser VER 1.22 2.09 0.01 0.07 ind:pas:1s; +tranquillisaient tranquilliser VER 1.22 2.09 0.00 0.07 ind:imp:3p; +tranquillisait tranquilliser VER 1.22 2.09 0.01 0.34 ind:imp:3s; +tranquillisant tranquillisant NOM m s 2.33 1.01 0.86 0.14 +tranquillisante tranquillisant ADJ f s 0.51 0.20 0.17 0.07 +tranquillisantes tranquillisant ADJ f p 0.51 0.20 0.06 0.00 +tranquillisants tranquillisant NOM m p 2.33 1.01 1.46 0.88 +tranquillise tranquilliser VER 1.22 2.09 0.31 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tranquillisent tranquilliser VER 1.22 2.09 0.01 0.07 ind:pre:3p; +tranquilliser tranquilliser VER 1.22 2.09 0.65 0.20 inf; +tranquillisera tranquilliser VER 1.22 2.09 0.11 0.00 ind:fut:3s; +tranquilliserait tranquilliser VER 1.22 2.09 0.01 0.07 cnd:pre:3s; +tranquillises tranquilliser VER 1.22 2.09 0.01 0.07 ind:pre:2s; +tranquillisez tranquilliser VER 1.22 2.09 0.01 0.14 imp:pre:2p;ind:pre:2p; +tranquillisé tranquilliser VER m s 1.22 2.09 0.03 0.14 par:pas; +tranquillisée tranquilliser VER f s 1.22 2.09 0.03 0.47 par:pas; +tranquillisés tranquilliser VER m p 1.22 2.09 0.00 0.14 par:pas; +tranquillité tranquillité NOM f s 4.68 11.01 4.68 10.81 +tranquillités tranquillité NOM f p 4.68 11.01 0.00 0.20 +tranquillos tranquillos ADV 0.00 0.81 0.00 0.81 +trans trans ADV 0.16 0.00 0.16 0.00 +transaction transaction NOM f s 4.47 1.28 3.26 0.34 +transactionnelle transactionnel ADJ f s 0.00 0.07 0.00 0.07 +transactions transaction NOM f p 4.47 1.28 1.21 0.95 +transafricain transafricain ADJ m s 0.00 0.07 0.00 0.07 +transalpines transalpin ADJ f p 0.00 0.07 0.00 0.07 +transamazonienne transamazonien ADJ f s 0.00 0.14 0.00 0.14 +transaminase transaminase NOM f s 0.03 0.07 0.01 0.00 +transaminases transaminase NOM f p 0.03 0.07 0.01 0.07 +transat transat NOM s 0.31 1.49 0.16 0.88 +transatlantique transatlantique NOM m s 0.19 2.50 0.19 2.09 +transatlantiques transatlantique ADJ p 0.12 1.01 0.05 0.34 +transats transat NOM p 0.31 1.49 0.15 0.61 +transbahutaient transbahuter VER 0.04 1.42 0.00 0.07 ind:imp:3p; +transbahutant transbahuter VER 0.04 1.42 0.01 0.34 par:pre; +transbahute transbahuter VER 0.04 1.42 0.00 0.14 ind:pre:3s; +transbahutent transbahuter VER 0.04 1.42 0.00 0.07 ind:pre:3p; +transbahuter transbahuter VER 0.04 1.42 0.03 0.27 inf; +transbahutez transbahuter VER 0.04 1.42 0.00 0.07 ind:pre:2p; +transbahuté transbahuter VER m s 0.04 1.42 0.00 0.34 par:pas; +transbahutée transbahuter VER f s 0.04 1.42 0.00 0.07 par:pas; +transbahutés transbahuter VER m p 0.04 1.42 0.00 0.07 par:pas; +transbordement transbordement NOM m s 0.06 0.61 0.06 0.41 +transbordements transbordement NOM m p 0.06 0.61 0.00 0.20 +transborder transborder VER 0.02 0.14 0.01 0.07 inf; +transbordeur transbordeur NOM m s 0.04 0.20 0.04 0.20 +transbordé transborder VER m s 0.02 0.14 0.01 0.07 par:pas; +transcanadienne transcanadienne ADJ f s 0.03 0.00 0.03 0.00 +transcaspien transcaspien ADJ m s 0.00 0.07 0.00 0.07 +transcendance transcendance NOM f s 0.04 0.61 0.04 0.61 +transcendant transcendant ADJ m s 0.33 0.68 0.13 0.41 +transcendantal transcendantal ADJ m s 0.08 0.95 0.00 0.54 +transcendantale transcendantal ADJ f s 0.08 0.95 0.08 0.34 +transcendantales transcendantal ADJ f p 0.08 0.95 0.00 0.07 +transcendantalistes transcendantaliste NOM p 0.01 0.07 0.01 0.07 +transcendante transcendant ADJ f s 0.33 0.68 0.15 0.27 +transcendantes transcendant ADJ f p 0.33 0.68 0.03 0.00 +transcendants transcendant ADJ m p 0.33 0.68 0.02 0.00 +transcende transcender VER 2.83 0.61 0.46 0.14 imp:pre:2s;ind:pre:3s; +transcendent transcender VER 2.83 0.61 1.84 0.00 ind:pre:3p; +transcender transcender VER 2.83 0.61 0.29 0.20 inf; +transcendons transcender VER 2.83 0.61 0.01 0.00 imp:pre:1p; +transcendé transcender VER m s 2.83 0.61 0.18 0.14 par:pas; +transcendée transcender VER f s 2.83 0.61 0.01 0.07 par:pas; +transcontinental transcontinental ADJ m s 0.13 0.07 0.09 0.07 +transcontinentale transcontinental ADJ f s 0.13 0.07 0.05 0.00 +transcriptase transcriptase NOM f s 0.12 0.00 0.12 0.00 +transcripteur transcripteur NOM m s 0.01 0.00 0.01 0.00 +transcription transcription NOM f s 1.24 1.15 0.84 1.08 +transcriptions transcription NOM f p 1.24 1.15 0.40 0.07 +transcrire transcrire VER 0.71 3.51 0.35 0.88 inf; +transcris transcrire VER 0.71 3.51 0.01 0.41 imp:pre:2s;ind:pre:1s; +transcrit transcrire VER m s 0.71 3.51 0.24 0.61 ind:pre:3s;par:pas; +transcrite transcrire VER f s 0.71 3.51 0.02 0.20 par:pas; +transcrites transcrire VER f p 0.71 3.51 0.01 0.14 par:pas; +transcrits transcrire VER m p 0.71 3.51 0.01 0.27 par:pas; +transcrivaient transcrire VER 0.71 3.51 0.00 0.07 ind:imp:3p; +transcrivais transcrire VER 0.71 3.51 0.02 0.07 ind:imp:1s; +transcrivait transcrire VER 0.71 3.51 0.00 0.47 ind:imp:3s; +transcrivant transcrire VER 0.71 3.51 0.00 0.20 par:pre; +transcrive transcrire VER 0.71 3.51 0.01 0.07 sub:pre:1s; +transcrivez transcrire VER 0.71 3.51 0.03 0.00 imp:pre:2p;ind:pre:2p; +transcrivis transcrire VER 0.71 3.51 0.00 0.07 ind:pas:1s; +transcrivit transcrire VER 0.71 3.51 0.00 0.07 ind:pas:3s; +transcutané transcutané ADJ m s 0.03 0.00 0.03 0.00 +transdermique transdermique ADJ f s 0.01 0.00 0.01 0.00 +transducteur transducteur NOM m s 0.06 0.00 0.04 0.00 +transducteurs transducteur NOM m p 0.06 0.00 0.02 0.00 +transduction transduction NOM f s 0.03 0.00 0.03 0.00 +transe transe NOM f s 2.49 5.14 2.41 3.51 +transept transept NOM m s 0.01 1.01 0.00 0.88 +transepts transept NOM m p 0.01 1.01 0.01 0.14 +transes transe NOM f p 2.49 5.14 0.08 1.62 +transfert transfert NOM m s 11.07 3.85 10.14 3.31 +transferts transfert NOM m p 11.07 3.85 0.94 0.54 +transfigura transfigurer VER 0.28 5.07 0.00 0.14 ind:pas:3s; +transfiguraient transfigurer VER 0.28 5.07 0.00 0.14 ind:imp:3p; +transfigurait transfigurer VER 0.28 5.07 0.00 1.01 ind:imp:3s; +transfigurant transfigurer VER 0.28 5.07 0.10 0.14 par:pre; +transfiguration transfiguration NOM f s 0.25 0.88 0.25 0.81 +transfigurations transfiguration NOM f p 0.25 0.88 0.00 0.07 +transfiguratrice transfigurateur NOM f s 0.00 0.07 0.00 0.07 +transfigure transfigurer VER 0.28 5.07 0.01 0.47 imp:pre:2s;ind:pre:3s; +transfigurent transfigurer VER 0.28 5.07 0.00 0.27 ind:pre:3p; +transfigurer transfigurer VER 0.28 5.07 0.00 0.47 inf; +transfigurerait transfigurer VER 0.28 5.07 0.00 0.07 cnd:pre:3s; +transfigurez transfigurer VER 0.28 5.07 0.14 0.00 imp:pre:2p; +transfiguré transfigurer VER m s 0.28 5.07 0.01 1.35 par:pas; +transfigurée transfigurer VER f s 0.28 5.07 0.01 0.61 par:pas; +transfigurées transfigurer VER f p 0.28 5.07 0.00 0.14 par:pas; +transfigurés transfigurer VER m p 0.28 5.07 0.02 0.27 par:pas; +transfilaient transfiler VER 0.00 0.14 0.00 0.07 ind:imp:3p; +transfilée transfiler VER f s 0.00 0.14 0.00 0.07 par:pas; +transfo transfo NOM m s 0.34 0.00 0.24 0.00 +transforma transformer VER 42.14 60.68 0.50 3.11 ind:pas:3s; +transformable transformable ADJ s 0.01 0.14 0.01 0.14 +transformai transformer VER 42.14 60.68 0.01 0.34 ind:pas:1s; +transformaient transformer VER 42.14 60.68 0.35 2.77 ind:imp:3p; +transformais transformer VER 42.14 60.68 0.13 0.14 ind:imp:1s;ind:imp:2s; +transformait transformer VER 42.14 60.68 0.67 7.36 ind:imp:3s; +transformant transformer VER 42.14 60.68 0.77 1.89 par:pre; +transformas transformer VER 42.14 60.68 0.00 0.07 ind:pas:2s; +transformateur transformateur NOM m s 0.64 0.47 0.43 0.34 +transformateurs transformateur NOM m p 0.64 0.47 0.22 0.14 +transformation transformation NOM f s 4.48 6.22 3.12 4.39 +transformations transformation NOM f p 4.48 6.22 1.36 1.82 +transformatrice transformateur ADJ f s 0.11 0.14 0.01 0.00 +transforme transformer VER 42.14 60.68 9.38 6.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +transforment transformer VER 42.14 60.68 1.76 1.82 ind:pre:3p; +transformer transformer VER 42.14 60.68 11.79 13.99 inf; +transformera transformer VER 42.14 60.68 0.66 0.34 ind:fut:3s; +transformerai transformer VER 42.14 60.68 0.42 0.00 ind:fut:1s; +transformeraient transformer VER 42.14 60.68 0.05 0.14 cnd:pre:3p; +transformerais transformer VER 42.14 60.68 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +transformerait transformer VER 42.14 60.68 0.15 0.54 cnd:pre:3s; +transformeras transformer VER 42.14 60.68 0.05 0.07 ind:fut:2s; +transformeriez transformer VER 42.14 60.68 0.04 0.00 cnd:pre:2p; +transformerons transformer VER 42.14 60.68 0.04 0.00 ind:fut:1p; +transformeront transformer VER 42.14 60.68 0.34 0.14 ind:fut:3p; +transformes transformer VER 42.14 60.68 0.70 0.14 ind:pre:2s; +transformez transformer VER 42.14 60.68 0.99 0.14 imp:pre:2p;ind:pre:2p; +transformiez transformer VER 42.14 60.68 0.04 0.00 ind:imp:2p; +transformiste transformiste NOM s 0.19 0.00 0.19 0.00 +transformons transformer VER 42.14 60.68 0.23 0.07 imp:pre:1p;ind:pre:1p; +transformât transformer VER 42.14 60.68 0.00 0.34 sub:imp:3s; +transformèrent transformer VER 42.14 60.68 0.03 0.27 ind:pas:3p; +transformé transformer VER m s 42.14 60.68 8.41 10.20 par:pas; +transformée transformer VER f s 42.14 60.68 2.50 6.69 par:pas; +transformées transformer VER f p 42.14 60.68 0.36 1.49 par:pas; +transformés transformer VER m p 42.14 60.68 1.74 1.89 par:pas; +transfos transfo NOM m p 0.34 0.00 0.10 0.00 +transfère transférer VER 18.40 5.20 2.07 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transfèrement transfèrement NOM m s 0.00 0.27 0.00 0.14 +transfèrements transfèrement NOM m p 0.00 0.27 0.00 0.14 +transfèrent transférer VER 18.40 5.20 0.34 0.00 ind:pre:3p; +transfuge transfuge NOM m s 0.60 1.15 0.41 0.47 +transfuges transfuge NOM m p 0.60 1.15 0.20 0.68 +transféra transférer VER 18.40 5.20 0.02 0.00 ind:pas:3s; +transférable transférable ADJ s 0.02 0.00 0.02 0.00 +transféraient transférer VER 18.40 5.20 0.01 0.07 ind:imp:3p; +transférais transférer VER 18.40 5.20 0.01 0.07 ind:imp:1s;ind:imp:2s; +transférait transférer VER 18.40 5.20 0.09 0.27 ind:imp:3s; +transférant transférer VER 18.40 5.20 0.09 0.07 par:pre; +transférer transférer VER 18.40 5.20 4.67 0.88 inf; +transférera transférer VER 18.40 5.20 0.05 0.00 ind:fut:3s; +transférerai transférer VER 18.40 5.20 0.30 0.00 ind:fut:1s; +transférerait transférer VER 18.40 5.20 0.02 0.00 cnd:pre:3s; +transféreras transférer VER 18.40 5.20 0.01 0.00 ind:fut:2s; +transférerez transférer VER 18.40 5.20 0.01 0.00 ind:fut:2p; +transférerons transférer VER 18.40 5.20 0.11 0.00 ind:fut:1p; +transféreront transférer VER 18.40 5.20 0.05 0.00 ind:fut:3p; +transférez transférer VER 18.40 5.20 0.80 0.00 imp:pre:2p;ind:pre:2p; +transfériez transférer VER 18.40 5.20 0.03 0.00 ind:imp:2p; +transférâmes transférer VER 18.40 5.20 0.00 0.07 ind:pas:1p; +transférons transférer VER 18.40 5.20 0.20 0.00 imp:pre:1p;ind:pre:1p; +transférèrent transférer VER 18.40 5.20 0.01 0.07 ind:pas:3p; +transféré transférer VER m s 18.40 5.20 6.51 2.09 par:pas; +transférée transférer VER f s 18.40 5.20 1.69 0.88 par:pas; +transférées transférer VER f p 18.40 5.20 0.28 0.07 par:pas; +transférés transférer VER m p 18.40 5.20 1.03 0.41 par:pas; +transfusait transfuser VER 0.33 0.54 0.01 0.14 ind:imp:3s; +transfuse transfuser VER 0.33 0.54 0.06 0.00 imp:pre:2s;ind:pre:3s; +transfuser transfuser VER 0.33 0.54 0.23 0.34 inf; +transfuseur transfuseur NOM m s 0.01 0.00 0.01 0.00 +transfusion transfusion NOM f s 2.37 1.82 2.02 1.42 +transfusions transfusion NOM f p 2.37 1.82 0.35 0.41 +transfusé transfuser VER m s 0.33 0.54 0.03 0.00 par:pas; +transfusée transfusé NOM f s 0.01 0.00 0.01 0.00 +transfusés transfuser VER m p 0.33 0.54 0.00 0.07 par:pas; +transgressait transgresser VER 1.58 1.28 0.00 0.14 ind:imp:3s; +transgresse transgresser VER 1.58 1.28 0.12 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transgressent transgresser VER 1.58 1.28 0.04 0.00 ind:pre:3p; +transgresser transgresser VER 1.58 1.28 0.87 0.61 inf; +transgresseur transgresseur NOM m s 0.04 0.00 0.04 0.00 +transgressez transgresser VER 1.58 1.28 0.14 0.00 ind:pre:2p; +transgression transgression NOM f s 0.95 1.28 0.56 1.08 +transgressions transgression NOM f p 0.95 1.28 0.39 0.20 +transgressons transgresser VER 1.58 1.28 0.01 0.07 imp:pre:1p;ind:pre:1p; +transgressé transgresser VER m s 1.58 1.28 0.28 0.27 par:pas; +transgressée transgresser VER f s 1.58 1.28 0.04 0.07 par:pas; +transgressées transgresser VER f p 1.58 1.28 0.07 0.07 par:pas; +transgénique transgénique ADJ s 0.37 0.00 0.20 0.00 +transgéniques transgénique ADJ p 0.37 0.00 0.17 0.00 +transhistorique transhistorique ADJ s 0.00 0.07 0.00 0.07 +transhumait transhumer VER 0.01 0.07 0.00 0.07 ind:imp:3s; +transhumance transhumance NOM f s 0.01 0.14 0.01 0.07 +transhumances transhumance NOM f p 0.01 0.14 0.00 0.07 +transhumant transhumant ADJ m s 0.00 0.20 0.00 0.07 +transhumantes transhumant ADJ f p 0.00 0.20 0.00 0.07 +transhumants transhumant ADJ m p 0.00 0.20 0.00 0.07 +transhumés transhumer VER m p 0.01 0.07 0.01 0.00 par:pas; +transi transi ADJ m s 0.53 3.85 0.40 2.43 +transie transi ADJ f s 0.53 3.85 0.10 0.27 +transies transir VER f p 0.17 2.43 0.02 0.27 par:pas; +transige transiger VER 0.64 1.42 0.08 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transigeait transiger VER 0.64 1.42 0.00 0.20 ind:imp:3s; +transigeant transiger VER 0.64 1.42 0.00 0.07 par:pre; +transigent transiger VER 0.64 1.42 0.00 0.07 ind:pre:3p; +transigeons transiger VER 0.64 1.42 0.02 0.00 imp:pre:1p; +transiger transiger VER 0.64 1.42 0.46 0.74 inf; +transigera transiger VER 0.64 1.42 0.01 0.07 ind:fut:3s; +transigerai transiger VER 0.64 1.42 0.00 0.07 ind:fut:1s; +transigé transiger VER m s 0.64 1.42 0.07 0.20 par:pas; +transillumination transillumination NOM f s 0.01 0.00 0.01 0.00 +transir transir VER 0.17 2.43 0.00 0.14 inf; +transis transi ADJ m p 0.53 3.85 0.02 1.01 +transistor transistor NOM m s 1.00 5.07 0.62 3.99 +transistorisées transistorisé ADJ f p 0.01 0.07 0.00 0.07 +transistorisés transistorisé ADJ m p 0.01 0.07 0.01 0.00 +transistors transistor NOM m p 1.00 5.07 0.38 1.08 +transit transit NOM m s 1.64 2.64 1.62 2.50 +transitaient transiter VER 0.44 1.35 0.00 0.14 ind:imp:3p; +transitaire transitaire ADJ f s 0.04 0.07 0.04 0.00 +transitaires transitaire ADJ p 0.04 0.07 0.00 0.07 +transitaires transitaire NOM p 0.00 0.07 0.00 0.07 +transitais transiter VER 0.44 1.35 0.00 0.07 ind:imp:1s; +transitait transiter VER 0.44 1.35 0.00 0.20 ind:imp:3s; +transitant transiter VER 0.44 1.35 0.00 0.14 par:pre; +transite transiter VER 0.44 1.35 0.08 0.07 imp:pre:2s;ind:pre:3s; +transitent transiter VER 0.44 1.35 0.04 0.00 ind:pre:3p; +transiter transiter VER 0.44 1.35 0.22 0.41 inf; +transitif transitif ADJ m s 0.04 0.14 0.01 0.14 +transitifs transitif ADJ m p 0.04 0.14 0.02 0.00 +transition transition NOM f s 3.68 8.78 3.45 7.57 +transitionnel transitionnel ADJ m s 0.04 0.00 0.03 0.00 +transitionnelle transitionnel ADJ f s 0.04 0.00 0.01 0.00 +transitions transition NOM f p 3.68 8.78 0.23 1.22 +transitoire transitoire ADJ s 0.41 1.42 0.39 1.01 +transitoirement transitoirement ADV 0.01 0.00 0.01 0.00 +transitoires transitoire ADJ f p 0.41 1.42 0.02 0.41 +transits transit NOM m p 1.64 2.64 0.03 0.14 +transité transiter VER m s 0.44 1.35 0.10 0.34 par:pas; +translater translater VER 0.01 0.07 0.01 0.00 inf; +translates translater VER 0.01 0.07 0.00 0.07 ind:pre:2s; +translation translation NOM f s 0.60 0.47 0.60 0.41 +translations translation NOM f p 0.60 0.47 0.00 0.07 +translocation translocation NOM f s 0.01 0.00 0.01 0.00 +translucide translucide ADJ s 0.84 5.88 0.81 4.26 +translucides translucide ADJ p 0.84 5.88 0.03 1.62 +translucidité translucidité NOM f s 0.00 0.14 0.00 0.14 +transmet transmettre VER 25.09 24.39 3.00 2.09 ind:pre:3s; +transmets transmettre VER 25.09 24.39 1.75 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +transmettaient transmettre VER 25.09 24.39 0.03 0.95 ind:imp:3p; +transmettais transmettre VER 25.09 24.39 0.03 0.14 ind:imp:1s; +transmettait transmettre VER 25.09 24.39 0.05 1.89 ind:imp:3s; +transmettant transmettre VER 25.09 24.39 0.32 0.54 par:pre; +transmette transmettre VER 25.09 24.39 0.31 0.27 sub:pre:1s;sub:pre:3s; +transmettent transmettre VER 25.09 24.39 0.75 0.88 ind:pre:3p; +transmetteur transmetteur NOM m s 1.83 0.00 1.62 0.00 +transmetteurs transmetteur NOM m p 1.83 0.00 0.21 0.00 +transmettez transmettre VER 25.09 24.39 1.61 0.20 imp:pre:2p;ind:pre:2p; +transmettions transmettre VER 25.09 24.39 0.00 0.07 ind:imp:1p; +transmettons transmettre VER 25.09 24.39 0.43 0.00 imp:pre:1p;ind:pre:1p; +transmettra transmettre VER 25.09 24.39 0.74 0.07 ind:fut:3s; +transmettrai transmettre VER 25.09 24.39 1.53 0.20 ind:fut:1s; +transmettrait transmettre VER 25.09 24.39 0.04 0.14 cnd:pre:3s; +transmettras transmettre VER 25.09 24.39 0.07 0.07 ind:fut:2s; +transmettre transmettre VER 25.09 24.39 7.79 7.70 inf; +transmettrez transmettre VER 25.09 24.39 0.12 0.07 ind:fut:2p; +transmettrons transmettre VER 25.09 24.39 0.21 0.00 ind:fut:1p; +transmettront transmettre VER 25.09 24.39 0.08 0.07 ind:fut:3p; +transmigrait transmigrer VER 0.00 0.14 0.00 0.07 ind:imp:3s; +transmigration transmigration NOM f s 0.05 0.14 0.05 0.14 +transmigrent transmigrer VER 0.00 0.14 0.00 0.07 ind:pre:3p; +transmirent transmettre VER 25.09 24.39 0.00 0.14 ind:pas:3p; +transmis transmettre VER m 25.09 24.39 5.25 5.27 par:pas; +transmise transmettre VER f s 25.09 24.39 0.61 1.49 par:pas; +transmises transmettre VER f p 25.09 24.39 0.34 1.22 par:pas; +transmissible transmissible ADJ s 0.39 0.41 0.19 0.34 +transmissibles transmissible ADJ f p 0.39 0.41 0.20 0.07 +transmission transmission NOM f s 9.63 6.55 7.63 3.24 +transmissions transmission NOM f p 9.63 6.55 1.99 3.31 +transmit transmettre VER 25.09 24.39 0.04 0.88 ind:pas:3s; +transmuait transmuer VER 0.11 0.54 0.00 0.07 ind:imp:3s; +transmuer transmuer VER 0.11 0.54 0.11 0.00 inf; +transmutait transmuter VER 0.16 0.41 0.01 0.14 ind:imp:3s; +transmutant transmuter VER 0.16 0.41 0.01 0.00 par:pre; +transmutation transmutation NOM f s 0.15 1.35 0.10 1.22 +transmutations transmutation NOM f p 0.15 1.35 0.05 0.14 +transmute transmuter VER 0.16 0.41 0.01 0.14 ind:pre:1s;ind:pre:3s; +transmutent transmuter VER 0.16 0.41 0.00 0.07 ind:pre:3p; +transmuter transmuter VER 0.16 0.41 0.01 0.00 inf; +transmuté transmuter VER m s 0.16 0.41 0.11 0.07 par:pas; +transmué transmuer VER m s 0.11 0.54 0.00 0.07 par:pas; +transmuée transmuer VER f s 0.11 0.54 0.00 0.20 par:pas; +transmuées transmuer VER f p 0.11 0.54 0.00 0.07 par:pas; +transmués transmuer VER m p 0.11 0.54 0.00 0.14 par:pas; +transnational transnational ADJ m s 0.02 0.00 0.01 0.00 +transnationaux transnational ADJ m p 0.02 0.00 0.01 0.00 +transocéanique transocéanique ADJ s 0.01 0.07 0.01 0.00 +transocéaniques transocéanique ADJ m p 0.01 0.07 0.00 0.07 +transparaît transparaître VER 0.44 3.72 0.13 0.68 ind:pre:3s; +transparaître transparaître VER 0.44 3.72 0.19 1.15 inf; +transparaissaient transparaître VER 0.44 3.72 0.00 0.07 ind:imp:3p; +transparaissait transparaître VER 0.44 3.72 0.01 1.42 ind:imp:3s; +transparaisse transparaître VER 0.44 3.72 0.11 0.07 sub:pre:3s; +transparaissent transparaître VER 0.44 3.72 0.00 0.34 ind:pre:3p; +transparence transparence NOM f s 1.64 11.35 1.59 10.68 +transparences transparence NOM f p 1.64 11.35 0.05 0.68 +transparent transparent ADJ m s 5.48 30.81 2.66 11.89 +transparente transparent ADJ f s 5.48 30.81 1.69 12.23 +transparentes transparent ADJ f p 5.48 30.81 0.69 3.92 +transparents transparent ADJ m p 5.48 30.81 0.45 2.77 +transperce transpercer VER 4.42 8.11 0.82 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transpercent transpercer VER 4.42 8.11 0.05 0.41 ind:pre:3p; +transpercer transpercer VER 4.42 8.11 0.73 0.95 inf; +transpercerai transpercer VER 4.42 8.11 0.13 0.00 ind:fut:1s; +transpercerait transpercer VER 4.42 8.11 0.03 0.07 cnd:pre:3s; +transpercez transpercer VER 4.42 8.11 0.15 0.00 imp:pre:2p;ind:pre:2p; +transpercèrent transpercer VER 4.42 8.11 0.00 0.07 ind:pas:3p; +transpercé transpercer VER m s 4.42 8.11 1.63 2.09 par:pas; +transpercée transpercer VER f s 4.42 8.11 0.32 1.08 par:pas; +transpercées transpercer VER f p 4.42 8.11 0.01 0.14 par:pas; +transpercés transpercer VER m p 4.42 8.11 0.06 0.27 par:pas; +transperça transpercer VER 4.42 8.11 0.35 0.54 ind:pas:3s; +transperçaient transpercer VER 4.42 8.11 0.01 0.41 ind:imp:3p; +transperçait transpercer VER 4.42 8.11 0.02 0.61 ind:imp:3s; +transperçant transpercer VER 4.42 8.11 0.10 0.07 par:pre; +transpira transpirer VER 7.75 10.74 0.00 0.27 ind:pas:3s; +transpiraient transpirer VER 7.75 10.74 0.12 0.47 ind:imp:3p; +transpirais transpirer VER 7.75 10.74 0.10 0.34 ind:imp:1s;ind:imp:2s; +transpirait transpirer VER 7.75 10.74 0.10 3.51 ind:imp:3s; +transpirant transpirer VER 7.75 10.74 0.10 1.01 par:pre; +transpirante transpirant ADJ f s 0.07 0.61 0.00 0.07 +transpirants transpirant ADJ m p 0.07 0.61 0.02 0.07 +transpiration transpiration NOM f s 0.75 3.24 0.75 3.24 +transpire transpirer VER 7.75 10.74 2.52 2.43 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transpirent transpirer VER 7.75 10.74 0.25 0.27 ind:pre:3p; +transpirer transpirer VER 7.75 10.74 1.94 1.96 inf; +transpirera transpirer VER 7.75 10.74 0.18 0.00 ind:fut:3s; +transpirerait transpirer VER 7.75 10.74 0.00 0.07 cnd:pre:3s; +transpires transpirer VER 7.75 10.74 0.84 0.14 ind:pre:2s; +transpirez transpirer VER 7.75 10.74 0.80 0.07 imp:pre:2p;ind:pre:2p; +transpiré transpirer VER m s 7.75 10.74 0.79 0.20 par:pas; +transplantable transplantable ADJ m s 0.00 0.07 0.00 0.07 +transplantait transplanter VER 0.20 1.08 0.01 0.07 ind:imp:3s; +transplantation transplantation NOM f s 2.85 0.20 2.04 0.14 +transplantations transplantation NOM f p 2.85 0.20 0.81 0.07 +transplante transplanter VER 0.20 1.08 0.03 0.07 ind:pre:3s; +transplanter transplanter VER 0.20 1.08 0.05 0.34 inf; +transplantons transplanter VER 0.20 1.08 0.01 0.00 ind:pre:1p; +transplants transplant NOM m p 0.02 0.00 0.02 0.00 +transplanté transplanter VER m s 0.20 1.08 0.04 0.27 par:pas; +transplantée transplanter VER f s 0.20 1.08 0.03 0.27 par:pas; +transplantées transplanté ADJ f p 0.07 0.34 0.00 0.07 +transplantés transplanter VER m p 0.20 1.08 0.04 0.07 par:pas; +transpondeur transpondeur NOM m s 0.97 0.00 0.97 0.00 +transport transport NOM m s 20.34 22.16 13.06 14.12 +transporta transporter VER 22.06 40.88 0.22 1.96 ind:pas:3s; +transportable transportable ADJ s 0.52 0.61 0.41 0.47 +transportables transportable ADJ m p 0.52 0.61 0.11 0.14 +transportai transporter VER 22.06 40.88 0.00 0.20 ind:pas:1s; +transportaient transporter VER 22.06 40.88 0.43 1.76 ind:imp:3p; +transportais transporter VER 22.06 40.88 0.21 0.68 ind:imp:1s;ind:imp:2s; +transportait transporter VER 22.06 40.88 1.28 4.86 ind:imp:3s; +transportant transporter VER 22.06 40.88 1.18 1.69 par:pre; +transportation transportation NOM f s 0.07 0.00 0.07 0.00 +transporte transporter VER 22.06 40.88 3.56 3.18 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +transportent transporter VER 22.06 40.88 0.59 1.28 ind:pre:3p;sub:pre:3p; +transporter transporter VER 22.06 40.88 7.31 10.34 inf; +transportera transporter VER 22.06 40.88 0.16 0.34 ind:fut:3s; +transporteraient transporter VER 22.06 40.88 0.00 0.20 cnd:pre:3p; +transporterais transporter VER 22.06 40.88 0.02 0.07 cnd:pre:1s; +transporterait transporter VER 22.06 40.88 0.01 0.20 cnd:pre:3s; +transporterons transporter VER 22.06 40.88 0.00 0.07 ind:fut:1p; +transporteur transporteur NOM m s 2.46 0.74 2.20 0.41 +transporteurs transporteur NOM m p 2.46 0.74 0.26 0.34 +transporteuse transporteur ADJ f s 0.50 0.20 0.01 0.00 +transportez transporter VER 22.06 40.88 1.43 0.54 imp:pre:2p;ind:pre:2p; +transportiez transporter VER 22.06 40.88 0.06 0.07 ind:imp:2p; +transportions transporter VER 22.06 40.88 0.04 0.20 ind:imp:1p; +transportâmes transporter VER 22.06 40.88 0.00 0.14 ind:pas:1p; +transportons transporter VER 22.06 40.88 0.44 0.00 imp:pre:1p;ind:pre:1p; +transportât transporter VER 22.06 40.88 0.00 0.14 sub:imp:3s; +transports transport NOM m p 20.34 22.16 7.28 8.04 +transportèrent transporter VER 22.06 40.88 0.00 0.47 ind:pas:3p; +transporté transporter VER m s 22.06 40.88 3.59 6.62 par:pas; +transportée transporter VER f s 22.06 40.88 0.91 3.24 par:pas; +transportées transporter VER f p 22.06 40.88 0.24 1.15 par:pas; +transportés transporter VER m p 22.06 40.88 0.37 1.49 par:pas; +transposable transposable ADJ m s 0.00 0.14 0.00 0.07 +transposables transposable ADJ m p 0.00 0.14 0.00 0.07 +transposaient transposer VER 0.36 3.31 0.00 0.27 ind:imp:3p; +transposait transposer VER 0.36 3.31 0.00 0.41 ind:imp:3s; +transposant transposer VER 0.36 3.31 0.01 0.20 par:pre; +transpose transposer VER 0.36 3.31 0.00 0.41 imp:pre:2s;ind:pre:3s; +transposent transposer VER 0.36 3.31 0.00 0.07 ind:pre:3p; +transposer transposer VER 0.36 3.31 0.10 0.81 inf; +transposez transposer VER 0.36 3.31 0.02 0.07 imp:pre:2p;ind:pre:2p; +transposition transposition NOM f s 0.41 0.61 0.31 0.34 +transpositions transposition NOM f p 0.41 0.61 0.10 0.27 +transposon transposon NOM m s 0.04 0.00 0.04 0.00 +transposons transposer VER 0.36 3.31 0.02 0.14 imp:pre:1p;ind:pre:1p;; +transposé transposer VER m s 0.36 3.31 0.08 0.41 par:pas; +transposée transposer VER f s 0.36 3.31 0.12 0.27 par:pas; +transposés transposer VER m p 0.36 3.31 0.01 0.27 par:pas; +transsaharienne transsaharien ADJ f s 0.00 0.07 0.00 0.07 +transsaharienne transsaharien NOM f s 0.00 0.07 0.00 0.07 +transsexualisme transsexualisme NOM m s 0.01 0.00 0.01 0.00 +transsexualité transsexualité NOM f s 0.01 0.00 0.01 0.00 +transsexuel transsexuel ADJ m s 0.69 0.14 0.32 0.07 +transsexuelle transsexuel ADJ f s 0.69 0.14 0.12 0.00 +transsexuels transsexuel ADJ m p 0.69 0.14 0.26 0.07 +transsibérien transsibérien NOM m s 0.11 0.07 0.11 0.07 +transsibérienne transsibérien ADJ f s 0.02 0.07 0.02 0.07 +transsubstantiation transsubstantiation NOM f s 0.03 0.34 0.03 0.34 +transsudait transsuder VER 0.00 0.14 0.00 0.07 ind:imp:3s; +transsudant transsuder VER 0.00 0.14 0.00 0.07 par:pre; +transsudat transsudat NOM m s 0.03 0.00 0.03 0.00 +transuranienne transuranien ADJ f s 0.01 0.00 0.01 0.00 +transvasait transvaser VER 0.31 0.61 0.00 0.20 ind:imp:3s; +transvase transvaser VER 0.31 0.61 0.14 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +transvaser transvaser VER 0.31 0.61 0.06 0.14 inf; +transvasons transvaser VER 0.31 0.61 0.10 0.00 ind:pre:1p; +transvasèrent transvaser VER 0.31 0.61 0.00 0.07 ind:pas:3p; +transvasées transvaser VER f p 0.31 0.61 0.00 0.07 par:pas; +transversal transversal ADJ m s 0.28 2.70 0.06 0.20 +transversale transversal ADJ f s 0.28 2.70 0.13 1.62 +transversalement transversalement ADV 0.01 0.07 0.01 0.07 +transversales transversal ADJ f p 0.28 2.70 0.08 0.81 +transversaux transversal ADJ m p 0.28 2.70 0.00 0.07 +transverse transverse ADJ f s 0.08 0.00 0.08 0.00 +transvestisme transvestisme NOM m s 0.02 0.00 0.02 0.00 +transylvain transylvain ADJ m s 0.00 0.07 0.00 0.07 +transylvanienne transylvanien ADJ f s 0.01 0.00 0.01 0.00 +trappe trappe NOM f s 5.18 6.49 4.86 5.41 +trappes trappe NOM f p 5.18 6.49 0.32 1.08 +trappeur trappeur NOM m s 1.65 2.03 1.00 1.35 +trappeurs trappeur NOM m p 1.65 2.03 0.65 0.68 +trappiste trappiste NOM m s 0.12 0.47 0.05 0.27 +trappistes trappiste NOM m p 0.12 0.47 0.07 0.20 +trappon trappon NOM m s 0.00 0.41 0.00 0.41 +trapèze trapèze NOM m s 1.14 3.78 1.10 3.04 +trapèzes trapèze NOM m p 1.14 3.78 0.04 0.74 +trapu trapu ADJ m s 0.42 9.05 0.39 4.86 +trapue trapu ADJ f s 0.42 9.05 0.02 1.76 +trapues trapu ADJ f p 0.42 9.05 0.01 0.81 +trapus trapu ADJ m p 0.42 9.05 0.00 1.62 +trapéziste trapéziste NOM s 1.03 1.01 0.95 0.81 +trapézistes trapéziste NOM p 1.03 1.01 0.08 0.20 +trapézoïdal trapézoïdal ADJ m s 0.02 0.68 0.02 0.14 +trapézoïdale trapézoïdal ADJ f s 0.02 0.68 0.00 0.27 +trapézoïdales trapézoïdal ADJ f p 0.02 0.68 0.00 0.20 +trapézoïdaux trapézoïdal ADJ m p 0.02 0.68 0.00 0.07 +trapézoïde trapézoïde ADJ s 0.08 0.00 0.08 0.00 +traqua traquer VER 13.97 14.39 0.01 0.07 ind:pas:3s; +traquaient traquer VER 13.97 14.39 0.38 0.68 ind:imp:3p; +traquais traquer VER 13.97 14.39 0.19 0.41 ind:imp:1s;ind:imp:2s; +traquait traquer VER 13.97 14.39 0.59 1.22 ind:imp:3s; +traquant traquer VER 13.97 14.39 0.28 0.47 par:pre; +traque traquer VER 13.97 14.39 2.53 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +traquenard traquenard NOM m s 1.14 1.89 0.98 1.35 +traquenards traquenard NOM m p 1.14 1.89 0.16 0.54 +traquent traquer VER 13.97 14.39 1.22 0.47 ind:pre:3p; +traquer traquer VER 13.97 14.39 3.04 1.96 inf; +traquera traquer VER 13.97 14.39 0.23 0.07 ind:fut:3s; +traquerai traquer VER 13.97 14.39 0.32 0.00 ind:fut:1s; +traquerais traquer VER 13.97 14.39 0.18 0.00 cnd:pre:1s;cnd:pre:2s; +traquerait traquer VER 13.97 14.39 0.04 0.00 cnd:pre:3s; +traquerons traquer VER 13.97 14.39 0.04 0.00 ind:fut:1p; +traqueront traquer VER 13.97 14.39 0.17 0.00 ind:fut:3p; +traques traquer VER 13.97 14.39 0.67 0.00 ind:pre:2s; +traquet traquet NOM m s 0.06 0.34 0.06 0.20 +traquets traquet NOM m p 0.06 0.34 0.00 0.14 +traqueur traqueur NOM m s 0.78 0.68 0.49 0.34 +traqueurs traqueur NOM m p 0.78 0.68 0.29 0.27 +traqueuse traqueur NOM f s 0.78 0.68 0.00 0.07 +traquez traquer VER 13.97 14.39 0.18 0.00 imp:pre:2p;ind:pre:2p; +traquiez traquer VER 13.97 14.39 0.04 0.00 ind:imp:2p; +traquions traquer VER 13.97 14.39 0.04 0.07 ind:imp:1p; +traquons traquer VER 13.97 14.39 0.12 0.00 imp:pre:1p;ind:pre:1p; +traquèrent traquer VER 13.97 14.39 0.02 0.00 ind:pas:3p; +traqué traquer VER m s 13.97 14.39 2.64 4.53 par:pas; +traquée traquer VER f s 13.97 14.39 0.34 1.49 par:pas; +traquées traquer VER f p 13.97 14.39 0.03 0.07 par:pas; +traqués traquer VER m p 13.97 14.39 0.67 1.82 par:pas; +traça tracer VER 10.49 42.36 0.00 2.36 ind:pas:3s; +traçabilité traçabilité NOM f s 0.02 0.00 0.02 0.00 +traçage traçage NOM m s 0.29 0.00 0.29 0.00 +traçai tracer VER 10.49 42.36 0.00 0.14 ind:pas:1s; +traçaient tracer VER 10.49 42.36 0.02 1.82 ind:imp:3p; +traçais tracer VER 10.49 42.36 0.03 0.41 ind:imp:1s; +traçait tracer VER 10.49 42.36 0.14 3.24 ind:imp:3s; +traçant tracer VER 10.49 42.36 0.15 2.30 par:pre; +traçante traçant ADJ f s 0.17 0.41 0.02 0.20 +traçantes traçant ADJ f p 0.17 0.41 0.15 0.20 +traçons tracer VER 10.49 42.36 0.11 0.00 ind:pre:1p; +traçât tracer VER 10.49 42.36 0.00 0.14 sub:imp:3s; +trattoria trattoria NOM f s 0.19 0.41 0.19 0.34 +trattorias trattoria NOM f p 0.19 0.41 0.00 0.07 +trauma trauma NOM m s 4.69 0.47 4.44 0.47 +traumas trauma NOM m p 4.69 0.47 0.25 0.00 +traumatique traumatique ADJ s 0.65 0.07 0.56 0.07 +traumatiques traumatique ADJ p 0.65 0.07 0.09 0.00 +traumatisant traumatisant ADJ m s 1.48 0.14 0.85 0.07 +traumatisante traumatisant ADJ f s 1.48 0.14 0.42 0.00 +traumatisantes traumatisant ADJ f p 1.48 0.14 0.14 0.07 +traumatisants traumatisant ADJ m p 1.48 0.14 0.07 0.00 +traumatise traumatiser VER 2.94 1.55 0.20 0.14 ind:pre:3s; +traumatiser traumatiser VER 2.94 1.55 0.24 0.14 inf; +traumatisme traumatisme NOM m s 6.69 1.08 6.10 0.88 +traumatismes traumatisme NOM m p 6.69 1.08 0.59 0.20 +traumatisé traumatiser VER m s 2.94 1.55 1.20 0.54 par:pas; +traumatisée traumatiser VER f s 2.94 1.55 0.78 0.47 par:pas; +traumatisées traumatiser VER f p 2.94 1.55 0.04 0.00 par:pas; +traumatisés traumatiser VER m p 2.94 1.55 0.43 0.27 par:pas; +traumatologie traumatologie NOM f s 0.09 0.00 0.09 0.00 +traumatologique traumatologique ADJ m s 0.01 0.00 0.01 0.00 +traumatologue traumatologue NOM s 0.02 0.00 0.02 0.00 +travail travail NOM m s 389.83 263.45 367.43 223.99 +travailla travailler VER 479.48 202.70 0.56 2.09 ind:pas:3s; +travaillai travailler VER 479.48 202.70 0.08 0.27 ind:pas:1s; +travaillaient travailler VER 479.48 202.70 3.02 9.12 ind:imp:3p; +travaillais travailler VER 479.48 202.70 13.68 7.03 ind:imp:1s;ind:imp:2s; +travaillait travailler VER 479.48 202.70 24.57 27.84 ind:imp:3s; +travaillant travailler VER 479.48 202.70 5.39 6.42 par:pre; +travaillassent travailler VER 479.48 202.70 0.00 0.14 sub:imp:3p; +travaille travailler VER 479.48 202.70 149.22 35.54 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +travaillent travailler VER 479.48 202.70 18.51 8.18 ind:pre:3p; +travailler travailler VER 479.48 202.70 147.83 67.77 ind:pre:2p;inf; +travaillera travailler VER 479.48 202.70 2.11 0.74 ind:fut:3s; +travaillerai travailler VER 479.48 202.70 4.07 1.01 ind:fut:1s; +travailleraient travailler VER 479.48 202.70 0.05 0.20 cnd:pre:3p; +travaillerais travailler VER 479.48 202.70 1.06 0.41 cnd:pre:1s;cnd:pre:2s; +travaillerait travailler VER 479.48 202.70 0.64 1.28 cnd:pre:3s; +travailleras travailler VER 479.48 202.70 1.78 0.81 ind:fut:2s; +travaillerez travailler VER 479.48 202.70 1.12 0.14 ind:fut:2p; +travailleriez travailler VER 479.48 202.70 0.24 0.07 cnd:pre:2p; +travaillerions travailler VER 479.48 202.70 0.05 0.07 cnd:pre:1p; +travaillerons travailler VER 479.48 202.70 1.47 0.41 ind:fut:1p; +travailleront travailler VER 479.48 202.70 0.66 0.14 ind:fut:3p; +travailles travailler VER 479.48 202.70 20.96 3.18 ind:pre:2s; +travailleur travailleur NOM m s 10.60 12.57 3.34 2.64 +travailleurs travailleur NOM m p 10.60 12.57 7.09 9.46 +travailleuse travailleur ADJ f s 4.19 3.72 0.32 0.81 +travailleuses travailleur ADJ f p 4.19 3.72 0.26 0.14 +travaillez travailler VER 479.48 202.70 22.73 3.58 imp:pre:2p;ind:pre:2p; +travailliez travailler VER 479.48 202.70 2.68 0.27 ind:imp:2p; +travaillions travailler VER 479.48 202.70 0.93 1.08 ind:imp:1p; +travailliste travailliste ADJ m s 0.30 0.41 0.28 0.27 +travaillistes travailliste NOM p 0.06 0.54 0.05 0.41 +travaillâmes travailler VER 479.48 202.70 0.00 0.27 ind:pas:1p; +travaillons travailler VER 479.48 202.70 5.99 1.62 imp:pre:1p;ind:pre:1p; +travaillât travailler VER 479.48 202.70 0.00 0.41 sub:imp:3s; +travaillèrent travailler VER 479.48 202.70 0.07 0.54 ind:pas:3p; +travaillé travailler VER m s 479.48 202.70 49.81 20.00 par:pas;par:pas;par:pas; +travaillée travailler VER f s 479.48 202.70 0.20 0.88 par:pas; +travaillées travaillé ADJ f p 0.79 1.82 0.02 0.34 +travaillés travaillé ADJ m p 0.79 1.82 0.05 0.41 +travaux travail NOM m p 389.83 263.45 22.40 39.46 +trave trave NOM f s 0.02 0.07 0.02 0.07 +traveller_s_chèque traveller_s_chèque NOM m p 0.04 0.00 0.04 0.00 +traveller traveller NOM m s 0.21 0.00 0.12 0.00 +travellers traveller NOM m p 0.21 0.00 0.09 0.00 +travelling travelling NOM m s 0.71 0.81 0.70 0.61 +travellings travelling NOM m p 0.71 0.81 0.01 0.20 +travelo travelo NOM m s 1.20 1.08 0.96 0.88 +travelos travelo NOM m p 1.20 1.08 0.25 0.20 +travers travers NOM m 65.60 247.64 65.60 247.64 +traversa traverser VER 72.26 200.81 0.63 25.00 ind:pas:3s; +traversable traversable ADJ m s 0.01 0.14 0.01 0.07 +traversables traversable ADJ p 0.01 0.14 0.00 0.07 +traversai traverser VER 72.26 200.81 0.13 2.77 ind:pas:1s; +traversaient traverser VER 72.26 200.81 0.34 7.91 ind:imp:3p; +traversais traverser VER 72.26 200.81 0.73 2.43 ind:imp:1s;ind:imp:2s; +traversait traverser VER 72.26 200.81 1.73 19.86 ind:imp:3s; +traversant traverser VER 72.26 200.81 2.39 15.07 par:pre; +traverse traverser VER 72.26 200.81 13.53 25.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +traversent traverser VER 72.26 200.81 3.32 7.57 ind:pre:3p; +traverser traverser VER 72.26 200.81 22.74 37.57 inf; +traversera traverser VER 72.26 200.81 0.89 0.68 ind:fut:3s; +traverserai traverser VER 72.26 200.81 0.22 0.27 ind:fut:1s; +traverseraient traverser VER 72.26 200.81 0.07 0.34 cnd:pre:3p; +traverserais traverser VER 72.26 200.81 0.11 0.14 cnd:pre:1s;cnd:pre:2s; +traverserait traverser VER 72.26 200.81 0.18 0.61 cnd:pre:3s; +traverseras traverser VER 72.26 200.81 0.11 0.07 ind:fut:2s; +traverserez traverser VER 72.26 200.81 0.26 0.14 ind:fut:2p; +traverserons traverser VER 72.26 200.81 0.41 0.14 ind:fut:1p; +traverseront traverser VER 72.26 200.81 0.28 0.20 ind:fut:3p; +traverses traverser VER 72.26 200.81 1.69 0.27 ind:pre:2s; +traversez traverser VER 72.26 200.81 2.08 0.54 imp:pre:2p;ind:pre:2p; +traversier traversier NOM m s 0.16 0.00 0.16 0.00 +traversiez traverser VER 72.26 200.81 0.16 0.00 ind:imp:2p; +traversin traversin NOM m s 0.44 2.57 0.44 2.30 +traversine traversine NOM f s 0.00 0.07 0.00 0.07 +traversins traversin NOM m p 0.44 2.57 0.00 0.27 +traversions traverser VER 72.26 200.81 0.11 2.36 ind:imp:1p; +traversière traversier ADJ f s 0.01 0.20 0.01 0.07 +traversières traversier ADJ f p 0.01 0.20 0.00 0.07 +traversâmes traverser VER 72.26 200.81 0.14 1.42 ind:pas:1p; +traversons traverser VER 72.26 200.81 1.33 2.84 imp:pre:1p;ind:pre:1p; +traversèrent traverser VER 72.26 200.81 0.22 7.30 ind:pas:3p; +traversé traverser VER m s 72.26 200.81 17.34 29.93 par:pas; +traversée traversée NOM f s 3.82 14.80 3.75 13.58 +traversées traversée NOM f p 3.82 14.80 0.07 1.22 +traversés traverser VER m p 72.26 200.81 0.37 1.76 par:pas; +travertin travertin NOM m s 0.09 0.00 0.09 0.00 +travesti travesti NOM m s 2.75 1.89 1.63 1.15 +travestie travesti ADJ f s 0.26 1.01 0.03 0.27 +travesties travestir VER f p 0.39 2.57 0.00 0.14 par:pas; +travestir travestir VER 0.39 2.57 0.22 0.88 inf; +travestis travesti NOM m p 2.75 1.89 1.12 0.74 +travestisme travestisme NOM m s 0.14 0.00 0.14 0.00 +travestissais travestir VER 0.39 2.57 0.01 0.07 ind:imp:1s; +travestissant travestir VER 0.39 2.57 0.00 0.07 par:pre; +travestissement travestissement NOM m s 0.13 0.88 0.13 0.68 +travestissements travestissement NOM m p 0.13 0.88 0.00 0.20 +travestissez travestir VER 0.39 2.57 0.01 0.07 ind:pre:2p; +travestit travestir VER 0.39 2.57 0.02 0.14 ind:pre:3s; +travois travois NOM m 0.01 0.00 0.01 0.00 +travée travée NOM f s 0.11 3.65 0.11 1.55 +travées travée NOM f p 0.11 3.65 0.00 2.09 +trax trax NOM m 0.01 0.00 0.01 0.00 +trayait traire VER 3.69 4.59 0.00 0.81 ind:imp:3s; +trayant traire VER 3.69 4.59 0.00 0.07 par:pre; +trayeuse trayeur NOM f s 0.08 0.14 0.08 0.07 +trayeuses trayeuse NOM f p 0.15 0.00 0.15 0.00 +trayon trayon NOM m s 0.00 0.27 0.00 0.07 +trayons trayon NOM m p 0.00 0.27 0.00 0.20 +trecento trecento NOM m s 0.20 0.00 0.20 0.00 +treillage treillage NOM m s 0.05 1.22 0.05 1.01 +treillages treillage NOM m p 0.05 1.22 0.00 0.20 +treillard treillard NOM m s 0.02 0.00 0.02 0.00 +treille treille NOM f s 1.66 2.70 1.32 2.03 +treilles treille NOM f p 1.66 2.70 0.34 0.68 +treillis treillis NOM m 0.45 4.12 0.45 4.12 +treillissé treillisser VER m s 0.00 0.14 0.00 0.07 par:pas; +treillissée treillisser VER f s 0.00 0.14 0.00 0.07 par:pas; +treizaine treizaine NOM f s 0.00 0.07 0.00 0.07 +treize treize ADJ:num 7.00 20.95 7.00 20.95 +treizième treizième ADJ 0.31 1.01 0.31 1.01 +trek trek NOM m s 0.03 0.00 0.03 0.00 +trekkeur trekkeur NOM m s 0.01 0.00 0.01 0.00 +trekking trekking NOM m s 0.03 0.00 0.03 0.00 +trembla trembler VER 34.13 94.05 0.30 1.55 ind:pas:3s; +tremblai trembler VER 34.13 94.05 0.02 0.20 ind:pas:1s; +tremblaient trembler VER 34.13 94.05 1.00 12.57 ind:imp:3p; +tremblais trembler VER 34.13 94.05 1.44 2.97 ind:imp:1s;ind:imp:2s; +tremblait trembler VER 34.13 94.05 2.00 22.64 ind:imp:3s; +tremblant trembler VER 34.13 94.05 1.30 7.57 par:pre; +tremblante tremblant ADJ f s 2.91 21.08 1.69 10.47 +tremblantes tremblant ADJ f p 2.91 21.08 0.19 4.53 +tremblants tremblant ADJ m p 2.91 21.08 0.31 2.23 +tremble trembler VER 34.13 94.05 10.60 14.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tremblement tremblement NOM m s 8.24 20.41 6.39 15.95 +tremblements tremblement NOM m p 8.24 20.41 1.85 4.46 +tremblent trembler VER 34.13 94.05 2.65 5.68 ind:pre:3p; +trembler trembler VER 34.13 94.05 6.37 21.96 inf; +tremblera trembler VER 34.13 94.05 0.67 0.00 ind:fut:3s; +tremblerai trembler VER 34.13 94.05 0.01 0.07 ind:fut:1s; +trembleraient trembler VER 34.13 94.05 0.01 0.14 cnd:pre:3p; +tremblerais trembler VER 34.13 94.05 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +tremblerait trembler VER 34.13 94.05 0.05 0.00 cnd:pre:3s; +tremblerons trembler VER 34.13 94.05 0.02 0.00 ind:fut:1p; +trembleront trembler VER 34.13 94.05 0.16 0.07 ind:fut:3p; +trembles trembler VER 34.13 94.05 3.66 0.34 ind:pre:2s; +trembleur trembleur NOM m s 0.14 0.00 0.14 0.00 +trembleurs trembleur ADJ m p 0.01 0.07 0.00 0.07 +tremblez trembler VER 34.13 94.05 2.42 0.27 imp:pre:2p;ind:pre:2p; +trembliez trembler VER 34.13 94.05 0.01 0.00 ind:imp:2p; +tremblions trembler VER 34.13 94.05 0.02 0.07 ind:imp:1p; +tremblochant tremblocher VER 0.00 0.07 0.00 0.07 par:pre; +tremblons trembler VER 34.13 94.05 0.05 0.14 imp:pre:1p;ind:pre:1p; +tremblât trembler VER 34.13 94.05 0.00 0.07 sub:imp:3s; +tremblota trembloter VER 0.09 5.61 0.00 0.14 ind:pas:3s; +tremblotaient trembloter VER 0.09 5.61 0.00 0.47 ind:imp:3p; +tremblotait trembloter VER 0.09 5.61 0.01 1.55 ind:imp:3s; +tremblotant tremblotant ADJ m s 0.07 3.11 0.06 0.54 +tremblotante tremblotant ADJ f s 0.07 3.11 0.00 1.35 +tremblotantes tremblotant ADJ f p 0.07 3.11 0.01 0.61 +tremblotants tremblotant ADJ m p 0.07 3.11 0.00 0.61 +tremblote tremblote NOM f s 0.45 0.95 0.45 0.95 +tremblotement tremblotement NOM m s 0.00 0.20 0.00 0.07 +tremblotements tremblotement NOM m p 0.00 0.20 0.00 0.14 +tremblotent trembloter VER 0.09 5.61 0.01 0.41 ind:pre:3p; +trembloter trembloter VER 0.09 5.61 0.02 0.47 inf; +trembloté trembloter VER m s 0.09 5.61 0.00 0.07 par:pas; +tremblèrent trembler VER 34.13 94.05 0.10 0.34 ind:pas:3p; +tremblé trembler VER m s 34.13 94.05 1.03 2.30 par:pas; +tremblée tremblé ADJ f s 0.03 1.49 0.00 0.61 +tremblées tremblé ADJ f p 0.03 1.49 0.01 0.14 +tremblés trembler VER m p 34.13 94.05 0.14 0.00 par:pas; +tremolos tremolo NOM m p 0.00 0.07 0.00 0.07 +trempa tremper VER 15.88 32.16 0.00 1.82 ind:pas:3s; +trempage trempage NOM m s 0.21 0.07 0.21 0.00 +trempages trempage NOM m p 0.21 0.07 0.00 0.07 +trempai tremper VER 15.88 32.16 0.00 0.14 ind:pas:1s; +trempaient tremper VER 15.88 32.16 0.04 1.08 ind:imp:3p; +trempais tremper VER 15.88 32.16 0.06 0.27 ind:imp:1s;ind:imp:2s; +trempait tremper VER 15.88 32.16 0.40 2.09 ind:imp:3s; +trempant tremper VER 15.88 32.16 0.06 1.76 par:pre; +trempe trempe NOM f s 2.26 3.31 2.13 2.70 +trempent tremper VER 15.88 32.16 0.11 0.61 ind:pre:3p; +tremper tremper VER 15.88 32.16 2.98 5.07 inf; +trempera tremper VER 15.88 32.16 0.01 0.00 ind:fut:3s; +tremperaient tremper VER 15.88 32.16 0.00 0.07 cnd:pre:3p; +tremperais tremper VER 15.88 32.16 0.17 0.00 cnd:pre:1s;cnd:pre:2s; +tremperait tremper VER 15.88 32.16 0.01 0.14 cnd:pre:3s; +trempes tremper VER 15.88 32.16 0.45 0.14 ind:pre:2s; +trempette trempette NOM f s 0.95 0.41 0.95 0.41 +trempeur trempeur NOM m s 0.16 0.00 0.16 0.00 +trempez tremper VER 15.88 32.16 0.22 0.00 imp:pre:2p;ind:pre:2p; +trempions tremper VER 15.88 32.16 0.00 0.07 ind:imp:1p; +tremplin tremplin NOM m s 0.36 1.28 0.36 1.28 +trempoline trempoline NOM m s 0.00 0.07 0.00 0.07 +trempons tremper VER 15.88 32.16 0.04 0.07 imp:pre:1p;ind:pre:1p; +trempèrent tremper VER 15.88 32.16 0.01 0.20 ind:pas:3p; +trempé tremper VER m s 15.88 32.16 5.37 8.11 par:pas; +trempée tremper VER f s 15.88 32.16 2.59 3.18 par:pas; +trempées tremper VER f p 15.88 32.16 0.41 1.22 par:pas; +trempés tremper VER m p 15.88 32.16 1.28 3.11 par:pas; +trench_coat trench_coat NOM m s 0.04 1.55 0.04 1.49 +trench_coat trench_coat NOM m p 0.04 1.55 0.00 0.07 +trench trench NOM m s 0.41 0.20 0.41 0.20 +trentaine trentaine NOM f s 3.23 13.45 3.23 13.45 +trente_cinq trente_cinq ADJ:num 1.33 11.55 1.33 11.55 +trente_cinquième trente_cinquième ADJ 0.00 0.14 0.00 0.14 +trente_deux trente_deux ADJ:num 0.82 3.58 0.82 3.58 +trente_et_quarante trente_et_quarante NOM m 0.00 0.07 0.00 0.07 +trente_et_un trente_et_un NOM m 0.39 0.07 0.39 0.07 +trente_et_unième trente_et_unième ADJ 0.00 0.07 0.00 0.07 +trente_huit trente_huit ADJ:num 0.64 2.64 0.64 2.64 +trente_huitième trente_huitième ADJ 0.00 0.20 0.00 0.20 +trente_neuf trente_neuf ADJ:num 0.55 2.16 0.55 2.16 +trente_neuvième trente_neuvième ADJ 0.01 0.14 0.01 0.14 +trente_quatre trente_quatre ADJ:num 0.43 1.08 0.43 1.08 +trente_quatrième trente_quatrième ADJ 0.00 0.07 0.00 0.07 +trente_sept trente_sept ADJ:num 0.71 2.23 0.71 2.23 +trente_septième trente_septième ADJ 0.20 0.14 0.20 0.14 +trente_six trente_six ADJ:num 0.55 6.82 0.55 6.82 +trente_sixième trente_sixième ADJ 0.02 0.61 0.02 0.61 +trente_trois trente_trois ADJ:num 0.78 2.36 0.78 2.36 +trente_troisième trente_troisième ADJ 0.00 0.20 0.00 0.20 +trente trente ADJ:num 18.91 79.12 18.91 79.12 +trentenaire trentenaire ADJ s 0.10 0.14 0.08 0.14 +trentenaires trentenaire ADJ p 0.10 0.14 0.01 0.00 +trentième trentième ADJ 0.69 0.88 0.69 0.88 +tressa tresser VER 1.15 8.85 0.00 0.07 ind:pas:3s; +tressaient tresser VER 1.15 8.85 0.00 0.41 ind:imp:3p; +tressaillaient tressaillir VER 1.30 13.72 0.00 0.20 ind:imp:3p; +tressaillais tressaillir VER 1.30 13.72 0.00 0.07 ind:imp:1s; +tressaillait tressaillir VER 1.30 13.72 0.00 1.55 ind:imp:3s; +tressaillant tressaillir VER 1.30 13.72 0.01 0.88 par:pre; +tressaille tressaillir VER 1.30 13.72 0.19 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tressaillement tressaillement NOM m s 0.36 3.85 0.13 2.36 +tressaillements tressaillement NOM m p 0.36 3.85 0.23 1.49 +tressaillent tressaillir VER 1.30 13.72 0.02 0.54 ind:pre:3p; +tressaillez tressaillir VER 1.30 13.72 0.11 0.00 ind:pre:2p; +tressailli tressaillir VER m s 1.30 13.72 0.23 1.22 par:pas; +tressaillir tressaillir VER 1.30 13.72 0.38 4.12 inf; +tressaillira tressaillir VER 1.30 13.72 0.00 0.07 ind:fut:3s; +tressaillirait tressaillir VER 1.30 13.72 0.00 0.07 cnd:pre:3s; +tressaillirent tressaillir VER 1.30 13.72 0.10 0.14 ind:pas:3p; +tressaillis tressaillir VER 1.30 13.72 0.02 0.14 ind:pas:1s;ind:pas:2s; +tressaillit tressaillir VER 1.30 13.72 0.25 3.65 ind:pas:3s; +tressait tresser VER 1.15 8.85 0.00 0.47 ind:imp:3s; +tressant tresser VER 1.15 8.85 0.00 0.41 par:pre; +tressauta tressauter VER 0.03 4.53 0.00 0.27 ind:pas:3s; +tressautaient tressauter VER 0.03 4.53 0.00 0.27 ind:imp:3p; +tressautait tressauter VER 0.03 4.53 0.01 0.95 ind:imp:3s; +tressautant tressauter VER 0.03 4.53 0.00 0.41 par:pre; +tressautante tressautant ADJ f s 0.00 0.61 0.00 0.27 +tressaute tressauter VER 0.03 4.53 0.01 0.95 ind:pre:1s;ind:pre:3s; +tressautement tressautement NOM m s 0.00 0.74 0.00 0.27 +tressautements tressautement NOM m p 0.00 0.74 0.00 0.47 +tressautent tressauter VER 0.03 4.53 0.00 0.88 ind:pre:3p; +tressauter tressauter VER 0.03 4.53 0.01 0.68 inf; +tressautera tressauter VER 0.03 4.53 0.00 0.07 ind:fut:3s; +tressautés tressauter VER m p 0.03 4.53 0.00 0.07 par:pas; +tresse tresse NOM f s 1.83 4.73 0.77 1.08 +tressent tresser VER 1.15 8.85 0.10 0.14 ind:pre:3p; +tresser tresser VER 1.15 8.85 0.34 1.69 inf; +tresseraient tresser VER 1.15 8.85 0.00 0.07 cnd:pre:3p; +tresseras tresser VER 1.15 8.85 0.01 0.00 ind:fut:2s; +tresses tresse NOM f p 1.83 4.73 1.06 3.65 +tresseurs tresseur NOM m p 0.00 0.07 0.00 0.07 +tressons tresser VER 1.15 8.85 0.14 0.07 imp:pre:1p;ind:pre:1p; +tressèrent tresser VER 1.15 8.85 0.00 0.07 ind:pas:3p; +tressé tresser VER m s 1.15 8.85 0.13 1.96 par:pas; +tressée tresser VER f s 1.15 8.85 0.17 1.89 par:pas; +tressées tresser VER f p 1.15 8.85 0.00 1.01 par:pas; +tressés tresser VER m p 1.15 8.85 0.20 0.47 par:pas; +treuil treuil NOM m s 1.48 2.16 1.34 1.69 +treuiller treuiller VER 0.14 0.00 0.14 0.00 inf; +treuils treuil NOM m p 1.48 2.16 0.14 0.47 +tri tri NOM m s 1.60 3.04 1.58 2.84 +tria trier VER 3.68 7.84 0.02 0.27 ind:pas:3s; +triade triade NOM f s 1.18 0.14 1.05 0.07 +triades triade NOM f p 1.18 0.14 0.14 0.07 +triage triage NOM m s 1.42 1.55 1.42 1.55 +triaient trier VER 3.68 7.84 0.03 0.14 ind:imp:3p; +triais trier VER 3.68 7.84 0.07 0.41 ind:imp:1s;ind:imp:2s; +triait trier VER 3.68 7.84 0.04 1.28 ind:imp:3s; +trial trial NOM m s 0.04 0.47 0.04 0.47 +triangle triangle NOM m s 3.83 13.24 3.42 10.68 +triangles triangle NOM m p 3.83 13.24 0.41 2.57 +triangulaire triangulaire ADJ s 0.17 6.62 0.16 4.73 +triangulairement triangulairement ADV 0.00 0.07 0.00 0.07 +triangulaires triangulaire ADJ p 0.17 6.62 0.01 1.89 +triangulation triangulation NOM f s 0.20 0.07 0.20 0.07 +trianguler trianguler VER 0.26 0.00 0.23 0.00 inf; +triangulez trianguler VER 0.26 0.00 0.02 0.00 imp:pre:2p; +trianon trianon NOM m s 0.00 0.07 0.00 0.07 +triant trier VER 3.68 7.84 0.12 0.07 par:pre; +trias trias NOM m 0.01 0.00 0.01 0.00 +triasique triasique ADJ f s 0.02 0.00 0.02 0.00 +triathlon triathlon NOM m s 0.18 0.00 0.18 0.00 +triathlète triathlète NOM s 0.03 0.00 0.03 0.00 +tribal tribal ADJ m s 1.00 1.01 0.28 0.47 +tribale tribal ADJ f s 1.00 1.01 0.34 0.27 +tribales tribal ADJ f p 1.00 1.01 0.26 0.14 +tribart tribart NOM m s 0.00 0.07 0.00 0.07 +tribaux tribal ADJ m p 1.00 1.01 0.12 0.14 +tribord tribord NOM m s 3.79 1.28 3.79 1.28 +tribu tribu NOM f s 11.57 18.24 7.96 13.58 +tribulation tribulation NOM f s 0.14 1.69 0.01 0.54 +tribulations tribulation NOM f p 0.14 1.69 0.13 1.15 +tribun tribun NOM m s 0.37 1.96 0.36 1.49 +tribunal tribunal NOM m s 37.98 18.04 35.35 15.00 +tribunat tribunat NOM m s 0.34 0.00 0.34 0.00 +tribunaux tribunal NOM m p 37.98 18.04 2.62 3.04 +tribune tribune NOM f s 2.87 8.99 1.75 6.96 +tribunes tribune NOM f p 2.87 8.99 1.12 2.03 +tribuns tribun NOM m p 0.37 1.96 0.01 0.47 +tribus tribu NOM f p 11.57 18.24 3.62 4.66 +tribut tribut NOM m s 0.87 2.16 0.69 2.16 +tributaire tributaire ADJ f s 0.34 0.61 0.32 0.34 +tributaires tributaire ADJ p 0.34 0.61 0.02 0.27 +tributs tribut NOM m p 0.87 2.16 0.19 0.00 +tric tric NOM m s 0.07 0.00 0.07 0.00 +tricard tricard ADJ m s 0.61 0.61 0.46 0.41 +tricarde tricard ADJ f s 0.61 0.61 0.01 0.14 +tricards tricard ADJ m p 0.61 0.61 0.14 0.07 +tricentenaire tricentenaire NOM m s 0.05 0.07 0.05 0.07 +triceps triceps NOM m 0.34 0.07 0.34 0.07 +tricha tricher VER 16.16 9.73 0.00 0.14 ind:pas:3s; +trichaient tricher VER 16.16 9.73 0.14 0.34 ind:imp:3p; +trichais tricher VER 16.16 9.73 0.20 0.20 ind:imp:1s;ind:imp:2s; +trichait tricher VER 16.16 9.73 0.41 0.81 ind:imp:3s; +trichant tricher VER 16.16 9.73 0.21 0.68 par:pre; +triche tricher VER 16.16 9.73 3.71 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trichent tricher VER 16.16 9.73 0.31 0.14 ind:pre:3p; +tricher tricher VER 16.16 9.73 4.70 4.05 inf; +trichera tricher VER 16.16 9.73 0.16 0.07 ind:fut:3s; +tricherai tricher VER 16.16 9.73 0.18 0.00 ind:fut:1s; +tricherais tricher VER 16.16 9.73 0.01 0.14 cnd:pre:1s;cnd:pre:2s; +tricherait tricher VER 16.16 9.73 0.03 0.00 cnd:pre:3s; +tricherie tricherie NOM f s 1.13 1.28 0.76 1.15 +tricheries tricherie NOM f p 1.13 1.28 0.37 0.14 +tricheront tricher VER 16.16 9.73 0.00 0.07 ind:fut:3p; +triches tricher VER 16.16 9.73 1.56 0.20 ind:pre:2s; +tricheur tricheur NOM m s 3.45 1.01 2.73 0.34 +tricheurs tricheur NOM m p 3.45 1.01 0.36 0.61 +tricheuse tricheur NOM f s 3.45 1.01 0.35 0.00 +tricheuses tricheur ADJ f p 0.90 0.27 0.02 0.00 +trichez tricher VER 16.16 9.73 0.65 0.07 imp:pre:2p;ind:pre:2p; +trichiez tricher VER 16.16 9.73 0.06 0.07 ind:imp:2p; +trichinose trichinose NOM f s 0.04 0.07 0.04 0.07 +trichloracétique trichloracétique ADJ m s 0.01 0.00 0.01 0.00 +trichlorure trichlorure NOM m s 0.01 0.00 0.01 0.00 +trichloréthylène trichloréthylène NOM m s 0.02 0.00 0.02 0.00 +trichons tricher VER 16.16 9.73 0.02 0.20 ind:pre:1p; +trichophyties trichophytie NOM f p 0.01 0.00 0.01 0.00 +triché tricher VER m s 16.16 9.73 3.81 0.95 par:pas; +trichée tricher VER f s 16.16 9.73 0.00 0.07 par:pas; +trichées tricher VER f p 16.16 9.73 0.00 0.07 par:pas; +trick trick NOM m s 0.35 0.00 0.35 0.00 +tricoises tricoises NOM f p 0.00 0.07 0.00 0.07 +tricolore tricolore ADJ s 0.40 7.50 0.30 6.08 +tricolores tricolore ADJ p 0.40 7.50 0.10 1.42 +tricorne tricorne NOM m s 0.02 0.88 0.01 0.74 +tricornes tricorne NOM m p 0.02 0.88 0.01 0.14 +tricot tricot NOM m s 1.44 14.19 1.25 11.96 +tricota tricoter VER 3.19 13.04 0.00 0.27 ind:pas:3s; +tricotage tricotage NOM m s 0.04 0.41 0.04 0.34 +tricotages tricotage NOM m p 0.04 0.41 0.00 0.07 +tricotai tricoter VER 3.19 13.04 0.00 0.07 ind:pas:1s; +tricotaient tricoter VER 3.19 13.04 0.01 0.88 ind:imp:3p; +tricotais tricoter VER 3.19 13.04 0.21 0.07 ind:imp:1s;ind:imp:2s; +tricotait tricoter VER 3.19 13.04 0.23 3.04 ind:imp:3s; +tricotant tricoter VER 3.19 13.04 0.00 1.15 par:pre; +tricote tricoter VER 3.19 13.04 0.65 1.42 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tricotent tricoter VER 3.19 13.04 0.04 0.41 ind:pre:3p; +tricoter tricoter VER 3.19 13.04 1.37 3.11 inf; +tricotera tricoter VER 3.19 13.04 0.11 0.00 ind:fut:3s; +tricoterai tricoter VER 3.19 13.04 0.03 0.07 ind:fut:1s; +tricoterait tricoter VER 3.19 13.04 0.01 0.07 cnd:pre:3s; +tricoteras tricoter VER 3.19 13.04 0.00 0.07 ind:fut:2s; +tricoterons tricoter VER 3.19 13.04 0.10 0.00 ind:fut:1p; +tricoteur tricoteur NOM m s 0.14 0.68 0.00 0.07 +tricoteuse tricoteur NOM f s 0.14 0.68 0.14 0.41 +tricoteuses tricoteur NOM f p 0.14 0.68 0.00 0.20 +tricotez tricoter VER 3.19 13.04 0.04 0.00 imp:pre:2p;ind:pre:2p; +tricots tricot NOM m p 1.44 14.19 0.19 2.23 +tricoté tricoter VER m s 3.19 13.04 0.35 1.22 par:pas; +tricotée tricoter VER f s 3.19 13.04 0.00 0.41 par:pas; +tricotées tricoter VER f p 3.19 13.04 0.02 0.34 par:pas; +tricotés tricoter VER m p 3.19 13.04 0.01 0.47 par:pas; +trictrac trictrac NOM m s 0.14 0.14 0.14 0.14 +tricéphale tricéphale ADJ f s 0.00 0.27 0.00 0.27 +tricératops tricératops NOM m 0.02 0.00 0.02 0.00 +tricuspide tricuspide ADJ f s 0.07 0.00 0.07 0.00 +tricycle tricycle NOM m s 0.52 0.95 0.50 0.61 +tricycles tricycle NOM m p 0.52 0.95 0.02 0.34 +tricycliste tricycliste NOM s 0.00 0.20 0.00 0.20 +trident trident NOM m s 0.13 0.68 0.12 0.68 +tridents trident NOM m p 0.13 0.68 0.01 0.00 +tridi tridi NOM m s 0.00 0.07 0.00 0.07 +tridimensionnel tridimensionnel ADJ m s 0.24 0.00 0.17 0.00 +tridimensionnelle tridimensionnel ADJ f s 0.24 0.00 0.07 0.00 +trie trier VER 3.68 7.84 1.01 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +triennale triennal ADJ f s 0.00 0.20 0.00 0.14 +triennales triennal ADJ f p 0.00 0.20 0.00 0.07 +trient trier VER 3.68 7.84 0.05 0.07 ind:pre:3p; +trier trier VER 3.68 7.84 1.08 3.38 inf; +triera trier VER 3.68 7.84 0.01 0.07 ind:fut:3s; +trierait trier VER 3.68 7.84 0.00 0.07 cnd:pre:3s; +trieur trieur NOM m s 0.18 0.14 0.05 0.00 +trieurs trieur NOM m p 0.18 0.14 0.02 0.00 +trieuse trieur NOM f s 0.18 0.14 0.11 0.00 +trieuses trieuse NOM f p 0.02 0.00 0.02 0.00 +triez trier VER 3.68 7.84 0.18 0.07 imp:pre:2p;ind:pre:2p; +trifolium trifolium NOM m s 0.01 0.07 0.01 0.07 +triforium triforium NOM m s 0.00 0.07 0.00 0.07 +trifouillaient trifouiller VER 0.30 1.35 0.00 0.14 ind:imp:3p; +trifouillait trifouiller VER 0.30 1.35 0.00 0.07 ind:imp:3s; +trifouille trifouiller VER 0.30 1.35 0.02 0.41 imp:pre:2s;ind:pre:3s; +trifouiller trifouiller VER 0.30 1.35 0.13 0.41 inf; +trifouillez trifouiller VER 0.30 1.35 0.01 0.00 ind:pre:2p; +trifouillé trifouiller VER m s 0.30 1.35 0.14 0.34 par:pas; +trigger trigger NOM m s 0.09 0.00 0.09 0.00 +trigles trigle NOM m p 0.00 0.07 0.00 0.07 +triglycéride triglycéride NOM m s 0.07 0.07 0.03 0.00 +triglycérides triglycéride NOM m p 0.07 0.07 0.05 0.07 +trigonométrie trigonométrie NOM f s 0.28 0.20 0.28 0.20 +trigrammes trigramme NOM m p 0.01 0.00 0.01 0.00 +trilatérale trilatéral ADJ f s 0.04 0.07 0.04 0.07 +trilingue trilingue ADJ s 0.01 0.07 0.01 0.00 +trilingues trilingue ADJ f p 0.01 0.07 0.00 0.07 +trillant triller VER 0.01 0.14 0.00 0.07 par:pre; +trille trille NOM m s 0.30 2.64 0.03 1.01 +trilles trille NOM m p 0.30 2.64 0.28 1.62 +trillion trillion NOM m s 0.22 0.14 0.06 0.00 +trillions trillion NOM m p 0.22 0.14 0.16 0.14 +trillé triller VER m s 0.01 0.14 0.00 0.07 par:pas; +trilobite trilobite NOM m s 0.02 0.00 0.02 0.00 +trilobée trilobé ADJ f s 0.00 0.14 0.00 0.07 +trilobés trilobé ADJ m p 0.00 0.14 0.00 0.07 +trilogie trilogie NOM f s 0.36 0.07 0.36 0.07 +trimait trimer VER 4.38 3.31 0.02 0.34 ind:imp:3s; +trimant trimer VER 4.38 3.31 0.00 0.07 par:pre; +trimard trimard NOM m s 0.02 1.76 0.00 0.61 +trimarde trimarder VER 0.00 0.14 0.00 0.07 ind:pre:1s; +trimarder trimarder VER 0.00 0.14 0.00 0.07 inf; +trimardeur trimardeur NOM m s 0.03 0.81 0.03 0.61 +trimardeurs trimardeur NOM m p 0.03 0.81 0.00 0.20 +trimards trimard NOM m p 0.02 1.76 0.02 1.15 +trimbala trimbaler VER 1.62 7.09 0.00 0.07 ind:pas:3s; +trimbalaient trimbaler VER 1.62 7.09 0.00 0.07 ind:imp:3p; +trimbalais trimbaler VER 1.62 7.09 0.00 0.34 ind:imp:1s;ind:imp:2s; +trimbalait trimbaler VER 1.62 7.09 0.06 1.15 ind:imp:3s; +trimbalant trimbaler VER 1.62 7.09 0.11 0.41 par:pre; +trimbale trimbaler VER 1.62 7.09 0.50 1.82 ind:pre:1s;ind:pre:3s;sub:pre:3s; +trimbalent trimbaler VER 1.62 7.09 0.23 0.47 ind:pre:3p; +trimbaler trimbaler VER 1.62 7.09 0.42 1.82 inf; +trimbalerai trimbaler VER 1.62 7.09 0.00 0.07 ind:fut:1s; +trimbalerait trimbaler VER 1.62 7.09 0.01 0.00 cnd:pre:3s; +trimbalerez trimbaler VER 1.62 7.09 0.01 0.00 ind:fut:2p; +trimbales trimbaler VER 1.62 7.09 0.13 0.20 ind:pre:2s; +trimbalez trimbaler VER 1.62 7.09 0.02 0.00 ind:pre:2p; +trimballage trimballage NOM m s 0.01 0.00 0.01 0.00 +trimballaient trimballer VER 3.34 3.11 0.00 0.20 ind:imp:3p; +trimballais trimballer VER 3.34 3.11 0.04 0.34 ind:imp:1s;ind:imp:2s; +trimballait trimballer VER 3.34 3.11 0.09 0.41 ind:imp:3s; +trimballe trimballer VER 3.34 3.11 0.67 0.61 ind:pre:1s;ind:pre:3s; +trimballent trimballer VER 3.34 3.11 0.19 0.14 ind:pre:3p; +trimballer trimballer VER 3.34 3.11 1.16 0.81 inf; +trimballera trimballer VER 3.34 3.11 0.00 0.07 ind:fut:3s; +trimballes trimballer VER 3.34 3.11 0.64 0.00 ind:pre:2s; +trimballez trimballer VER 3.34 3.11 0.05 0.00 ind:pre:2p; +trimballât trimballer VER 3.34 3.11 0.00 0.07 sub:imp:3s; +trimballé trimballer VER m s 3.34 3.11 0.45 0.27 par:pas; +trimballée trimballer VER f s 3.34 3.11 0.04 0.20 par:pas; +trimballés trimballer VER m p 3.34 3.11 0.01 0.00 par:pas; +trimbalons trimbaler VER 1.62 7.09 0.00 0.07 ind:pre:1p; +trimbalé trimbaler VER m s 1.62 7.09 0.12 0.34 par:pas; +trimbalée trimbaler VER f s 1.62 7.09 0.00 0.14 par:pas; +trimbalés trimbaler VER m p 1.62 7.09 0.00 0.14 par:pas; +trime trimer VER 4.38 3.31 1.17 0.74 ind:pre:1s;ind:pre:3s; +triment trimer VER 4.38 3.31 0.23 0.27 ind:pre:3p; +trimer trimer VER 4.38 3.31 1.73 1.28 inf; +trimes trimer VER 4.38 3.31 0.21 0.00 ind:pre:2s; +trimestre trimestre NOM m s 2.50 5.54 2.44 4.80 +trimestres trimestre NOM m p 2.50 5.54 0.06 0.74 +trimestriel trimestriel ADJ m s 0.39 0.81 0.26 0.34 +trimestrielle trimestriel ADJ f s 0.39 0.81 0.02 0.14 +trimestriellement trimestriellement ADV 0.04 0.00 0.04 0.00 +trimestrielles trimestriel ADJ f p 0.39 0.81 0.04 0.14 +trimestriels trimestriel ADJ m p 0.39 0.81 0.08 0.20 +trimeur trimeur NOM m s 0.11 0.14 0.11 0.07 +trimeurs trimeur NOM m p 0.11 0.14 0.00 0.07 +trimmer trimmer NOM m s 0.02 0.00 0.02 0.00 +trimons trimer VER 4.38 3.31 0.02 0.07 imp:pre:1p;ind:pre:1p; +trimé trimer VER m s 4.38 3.31 1.00 0.54 par:pas; +trinôme trinôme NOM m s 0.01 0.00 0.01 0.00 +trinacrie trinacrie NOM f s 0.00 0.07 0.00 0.07 +trine trin ADJ f s 0.04 0.00 0.04 0.00 +tringlaient tringler VER 0.90 1.62 0.00 0.07 ind:imp:3p; +tringlais tringler VER 0.90 1.62 0.02 0.00 ind:imp:1s;ind:imp:2s; +tringlait tringler VER 0.90 1.62 0.02 0.07 ind:imp:3s; +tringle tringle NOM f s 0.30 3.18 0.10 1.49 +tringler tringler VER 0.90 1.62 0.66 1.01 inf; +tringlerais tringler VER 0.90 1.62 0.01 0.07 cnd:pre:1s; +tringles tringle NOM f p 0.30 3.18 0.20 1.69 +tringlette tringlette NOM f s 0.01 0.14 0.01 0.14 +tringlot tringlot NOM m s 0.00 0.34 0.00 0.27 +tringlots tringlot NOM m p 0.00 0.34 0.00 0.07 +tringlé tringler VER m s 0.90 1.62 0.04 0.14 par:pas; +tringlée tringler VER f s 0.90 1.62 0.07 0.07 par:pas; +trinidadienne trinidadienne ADJ f s 0.01 0.00 0.01 0.00 +trinidadienne trinidadienne NOM f s 0.01 0.00 0.01 0.00 +trinitaire trinitaire ADJ m s 0.03 0.20 0.03 0.20 +trinitrine trinitrine NOM f s 0.13 0.00 0.13 0.00 +trinité trinité NOM f s 0.45 0.41 0.45 0.41 +trinqua trinquer VER 12.21 9.19 0.01 0.74 ind:pas:3s; +trinquaient trinquer VER 12.21 9.19 0.01 0.47 ind:imp:3p; +trinquais trinquer VER 12.21 9.19 0.01 0.14 ind:imp:1s;ind:imp:2s; +trinquait trinquer VER 12.21 9.19 0.11 0.54 ind:imp:3s; +trinquant trinquer VER 12.21 9.19 0.00 0.47 par:pre; +trinque trinquer VER 12.21 9.19 2.69 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trinquent trinquer VER 12.21 9.19 0.60 0.61 ind:pre:3p; +trinquer trinquer VER 12.21 9.19 2.95 2.50 inf; +trinquera trinquer VER 12.21 9.19 0.11 0.07 ind:fut:3s; +trinquerai trinquer VER 12.21 9.19 0.05 0.07 ind:fut:1s; +trinquerais trinquer VER 12.21 9.19 0.00 0.07 cnd:pre:1s; +trinquerait trinquer VER 12.21 9.19 0.00 0.07 cnd:pre:3s; +trinqueras trinquer VER 12.21 9.19 0.00 0.07 ind:fut:2s; +trinquerez trinquer VER 12.21 9.19 0.01 0.00 ind:fut:2p; +trinquerons trinquer VER 12.21 9.19 0.16 0.00 ind:fut:1p; +trinques trinquer VER 12.21 9.19 0.19 0.00 ind:pre:2s; +trinquette trinquette NOM f s 0.03 0.07 0.03 0.07 +trinquez trinquer VER 12.21 9.19 1.97 0.00 imp:pre:2p;ind:pre:2p; +trinquions trinquer VER 12.21 9.19 0.00 0.20 ind:imp:1p; +trinquâmes trinquer VER 12.21 9.19 0.00 0.07 ind:pas:1p; +trinquons trinquer VER 12.21 9.19 3.04 0.27 imp:pre:1p;ind:pre:1p; +trinquèrent trinquer VER 12.21 9.19 0.00 0.95 ind:pas:3p; +trinqué trinquer VER m s 12.21 9.19 0.30 0.95 par:pas; +trio trio NOM m s 2.74 5.47 2.30 5.34 +triode triode NOM f s 0.00 0.07 0.00 0.07 +triolet triolet NOM m s 0.25 0.27 0.14 0.00 +triolets triolet NOM m p 0.25 0.27 0.10 0.27 +triolisme triolisme NOM m s 0.01 0.00 0.01 0.00 +triompha triompher VER 7.67 19.19 0.28 1.28 ind:pas:3s; +triomphai triompher VER 7.67 19.19 0.14 0.14 ind:pas:1s; +triomphaient triompher VER 7.67 19.19 0.05 0.54 ind:imp:3p; +triomphais triompher VER 7.67 19.19 0.00 0.14 ind:imp:1s; +triomphait triompher VER 7.67 19.19 0.11 3.65 ind:imp:3s; +triomphal triomphal ADJ m s 0.79 8.58 0.12 3.51 +triomphale triomphal ADJ f s 0.79 8.58 0.64 4.26 +triomphalement triomphalement ADV 0.03 3.38 0.03 3.38 +triomphales triomphal ADJ f p 0.79 8.58 0.03 0.74 +triomphalisme triomphalisme NOM m s 0.01 0.00 0.01 0.00 +triomphaliste triomphaliste ADJ s 0.00 0.14 0.00 0.07 +triomphalistes triomphaliste ADJ p 0.00 0.14 0.00 0.07 +triomphant triomphant ADJ m s 0.64 12.77 0.14 5.47 +triomphante triomphant ADJ f s 0.64 12.77 0.43 5.41 +triomphantes triomphant ADJ f p 0.64 12.77 0.00 0.47 +triomphants triomphant ADJ m p 0.64 12.77 0.07 1.42 +triomphateur triomphateur NOM m s 0.14 0.81 0.13 0.54 +triomphateurs triomphateur NOM m p 0.14 0.81 0.01 0.07 +triomphatrice triomphateur NOM f s 0.14 0.81 0.00 0.14 +triomphatrices triomphateur NOM f p 0.14 0.81 0.00 0.07 +triomphaux triomphal ADJ m p 0.79 8.58 0.00 0.07 +triomphe triomphe NOM m s 9.44 29.19 8.83 27.30 +triomphent triompher VER 7.67 19.19 0.21 0.61 ind:pre:3p; +triompher triompher VER 7.67 19.19 2.75 4.46 inf; +triomphera triompher VER 7.67 19.19 0.20 0.20 ind:fut:3s; +triompherai triompher VER 7.67 19.19 0.04 0.14 ind:fut:1s; +triompherais triompher VER 7.67 19.19 0.01 0.07 cnd:pre:1s; +triompherait triompher VER 7.67 19.19 0.02 0.20 cnd:pre:3s; +triompheras triompher VER 7.67 19.19 0.01 0.07 ind:fut:2s; +triompherez triompher VER 7.67 19.19 0.01 0.00 ind:fut:2p; +triompherions triompher VER 7.67 19.19 0.14 0.00 cnd:pre:1p; +triompherons triompher VER 7.67 19.19 0.13 0.00 ind:fut:1p; +triompheront triompher VER 7.67 19.19 0.03 0.00 ind:fut:3p; +triomphes triomphe NOM m p 9.44 29.19 0.61 1.89 +triomphez triompher VER 7.67 19.19 0.04 0.00 ind:pre:2p; +triomphions triompher VER 7.67 19.19 0.03 0.00 ind:imp:1p; +triomphâmes triompher VER 7.67 19.19 0.00 0.07 ind:pas:1p; +triomphons triompher VER 7.67 19.19 0.25 0.27 ind:pre:1p; +triomphât triompher VER 7.67 19.19 0.00 0.07 sub:imp:3s; +triomphèrent triompher VER 7.67 19.19 0.01 0.07 ind:pas:3p; +triomphé triompher VER m s 7.67 19.19 1.13 2.43 par:pas; +trional trional NOM m s 0.01 0.00 0.01 0.00 +trionix trionix NOM m 0.00 0.07 0.00 0.07 +trios trio NOM m p 2.74 5.47 0.44 0.14 +trip trip NOM m s 4.62 1.22 4.37 1.22 +tripaille tripaille NOM f s 0.17 0.88 0.16 0.68 +tripailles tripaille NOM f p 0.17 0.88 0.01 0.20 +tripang tripang NOM m s 0.02 0.00 0.01 0.00 +tripangs tripang NOM m p 0.02 0.00 0.01 0.00 +tripant tripant ADJ m s 0.03 0.00 0.03 0.00 +tripartite tripartite ADJ s 0.01 0.74 0.01 0.61 +tripartites tripartite ADJ f p 0.01 0.74 0.00 0.14 +tripatouillage tripatouillage NOM m s 0.00 0.14 0.00 0.07 +tripatouillages tripatouillage NOM m p 0.00 0.14 0.00 0.07 +tripatouillant tripatouiller VER 0.07 0.54 0.00 0.07 par:pre; +tripatouillent tripatouiller VER 0.07 0.54 0.00 0.07 ind:pre:3p; +tripatouiller tripatouiller VER 0.07 0.54 0.03 0.27 inf; +tripatouillez tripatouiller VER 0.07 0.54 0.01 0.07 imp:pre:2p;ind:pre:2p; +tripatouillé tripatouiller VER m s 0.07 0.54 0.02 0.00 par:pas; +tripatouillée tripatouiller VER f s 0.07 0.54 0.00 0.07 par:pas; +tripe tripe NOM f s 8.75 13.58 0.36 1.42 +triper triper VER 0.05 0.00 0.05 0.00 inf; +triperie triperie NOM f s 0.00 0.20 0.00 0.14 +triperies triperie NOM f p 0.00 0.20 0.00 0.07 +tripes tripe NOM f p 8.75 13.58 8.39 12.16 +tripette tripette NOM f s 0.26 0.54 0.26 0.54 +triphasé triphasé ADJ m s 0.14 0.00 0.14 0.00 +triphosphate triphosphate NOM m s 0.01 0.00 0.01 0.00 +tripier tripier NOM m s 0.00 0.27 0.00 0.07 +tripiers tripier NOM m p 0.00 0.27 0.00 0.07 +tripière tripier NOM f s 0.00 0.27 0.00 0.14 +tripla tripler VER 2.08 1.76 0.00 0.20 ind:pas:3s; +triplace triplace ADJ s 0.00 0.07 0.00 0.07 +triplai tripler VER 2.08 1.76 0.00 0.07 ind:pas:1s; +triplaient tripler VER 2.08 1.76 0.00 0.07 ind:imp:3p; +triplait tripler VER 2.08 1.76 0.01 0.07 ind:imp:3s; +triplant tripler VER 2.08 1.76 0.01 0.07 par:pre; +triple triple ADJ s 4.94 9.12 4.81 7.77 +triplement triplement ADV 0.01 0.00 0.01 0.00 +triplent tripler VER 2.08 1.76 0.01 0.07 ind:pre:3p; +tripler tripler VER 2.08 1.76 0.47 0.27 inf; +triplerais tripler VER 2.08 1.76 0.01 0.07 cnd:pre:1s; +triplerait tripler VER 2.08 1.76 0.03 0.00 cnd:pre:3s; +triples triple ADJ p 4.94 9.12 0.12 1.35 +triplets triplet NOM m p 0.06 0.00 0.06 0.00 +triplette triplette NOM f s 0.16 0.00 0.16 0.00 +triplex triplex NOM m 0.04 0.00 0.04 0.00 +triplice triplice NOM f s 0.14 0.00 0.14 0.00 +triplions tripler VER 2.08 1.76 0.01 0.00 ind:imp:1p; +triploïde triploïde ADJ f s 0.01 0.00 0.01 0.00 +triplons tripler VER 2.08 1.76 0.01 0.00 ind:pre:1p; +triplèrent tripler VER 2.08 1.76 0.00 0.07 ind:pas:3p; +triplé tripler VER m s 2.08 1.76 1.02 0.54 par:pas; +triplée tripler VER f s 2.08 1.76 0.05 0.07 par:pas; +triplées triplé NOM f p 1.54 0.47 0.29 0.20 +triplés triplé NOM m p 1.54 0.47 1.15 0.20 +tripode tripode NOM m s 0.02 0.00 0.02 0.00 +tripoli tripoli NOM m s 0.14 0.07 0.14 0.07 +triporteur triporteur NOM m s 0.12 5.61 0.10 5.27 +triporteurs triporteur NOM m p 0.12 5.61 0.02 0.34 +tripot tripot NOM m s 1.57 1.22 1.09 0.81 +tripota tripoter VER 7.80 7.97 0.00 0.27 ind:pas:3s; +tripotage tripotage NOM m s 0.16 0.27 0.03 0.27 +tripotages tripotage NOM m p 0.16 0.27 0.14 0.00 +tripotaient tripoter VER 7.80 7.97 0.03 0.34 ind:imp:3p; +tripotais tripoter VER 7.80 7.97 0.04 0.34 ind:imp:1s;ind:imp:2s; +tripotait tripoter VER 7.80 7.97 0.36 0.95 ind:imp:3s; +tripotant tripoter VER 7.80 7.97 0.22 0.74 par:pre; +tripote tripoter VER 7.80 7.97 1.76 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tripotent tripoter VER 7.80 7.97 0.60 0.34 ind:pre:3p;sub:pre:3p; +tripoter tripoter VER 7.80 7.97 3.09 2.30 inf; +tripoterai tripoter VER 7.80 7.97 0.01 0.00 ind:fut:1s; +tripotes tripoter VER 7.80 7.97 0.33 0.07 ind:pre:2s; +tripoteur tripoteur NOM m s 0.04 0.00 0.02 0.00 +tripoteuse tripoteur NOM f s 0.04 0.00 0.02 0.00 +tripotez tripoter VER 7.80 7.97 0.10 0.07 ind:pre:2p; +tripotiez tripoter VER 7.80 7.97 0.15 0.07 ind:imp:2p; +tripots tripot NOM m p 1.57 1.22 0.48 0.41 +tripotèrent tripoter VER 7.80 7.97 0.00 0.07 ind:pas:3p; +tripoté tripoter VER m s 7.80 7.97 0.85 0.54 par:pas; +tripotée tripotée NOM f s 0.26 0.27 0.26 0.27 +tripotées tripoter VER f p 7.80 7.97 0.00 0.07 par:pas; +tripotés tripoter VER m p 7.80 7.97 0.03 0.20 par:pas; +tripoux tripoux NOM m p 0.00 0.20 0.00 0.20 +trips trip NOM m p 4.62 1.22 0.26 0.00 +triptyque triptyque NOM m s 0.06 0.74 0.04 0.61 +triptyques triptyque NOM m p 0.06 0.74 0.01 0.14 +triquais triquer VER 0.27 0.68 0.00 0.14 ind:imp:1s; +triquait triquer VER 0.27 0.68 0.00 0.07 ind:imp:3s; +trique trique NOM f s 2.73 4.46 2.69 4.05 +triqueballe triqueballe NOM m s 0.00 0.14 0.00 0.14 +triquer triquer VER 0.27 0.68 0.16 0.41 inf; +triques trique NOM f p 2.73 4.46 0.03 0.41 +trirème trirème NOM f s 0.00 0.20 0.00 0.14 +trirèmes trirème NOM f p 0.00 0.20 0.00 0.07 +tris tri NOM m p 1.60 3.04 0.03 0.20 +trisaïeul trisaïeul NOM m s 0.14 0.34 0.01 0.20 +trisaïeule trisaïeul NOM f s 0.14 0.34 0.00 0.07 +trisaïeuls trisaïeul NOM m p 0.14 0.34 0.14 0.07 +trismique trismique ADJ f s 0.00 0.07 0.00 0.07 +trismégiste trismégiste ADJ s 0.06 0.07 0.06 0.07 +trismus trismus NOM m 0.00 0.07 0.00 0.07 +trisomie trisomie NOM f s 0.01 0.00 0.01 0.00 +trisomique trisomique ADJ s 0.32 0.00 0.32 0.00 +trissait trisser VER 0.02 1.15 0.00 0.14 ind:imp:3s; +trisse trisser VER 0.02 1.15 0.02 0.41 ind:pre:1s;ind:pre:3s; +trissent trisser VER 0.02 1.15 0.00 0.14 ind:pre:3p; +trisser trisser VER 0.02 1.15 0.00 0.41 inf; +trissés trisser VER m p 0.02 1.15 0.00 0.07 par:pas; +triste triste ADJ s 103.44 105.61 93.03 86.89 +tristement tristement ADV 1.67 11.82 1.67 11.82 +tristes triste ADJ p 103.44 105.61 10.41 18.72 +tristesse tristesse NOM f s 13.39 48.72 12.91 46.96 +tristesses tristesse NOM f p 13.39 48.72 0.48 1.76 +tristouillard tristouillard ADJ m s 0.00 0.14 0.00 0.07 +tristouillarde tristouillard ADJ f s 0.00 0.14 0.00 0.07 +tristouille tristouille ADJ m s 0.16 0.27 0.16 0.20 +tristouilles tristouille ADJ p 0.16 0.27 0.00 0.07 +tristounet tristounet ADJ m s 0.13 0.34 0.09 0.07 +tristounette tristounet ADJ f s 0.13 0.34 0.02 0.14 +tristounettes tristounet ADJ f p 0.13 0.34 0.02 0.14 +trièrent trier VER 3.68 7.84 0.00 0.07 ind:pas:3p; +trithéisme trithéisme NOM m s 0.00 0.07 0.00 0.07 +trithérapie trithérapie NOM f s 0.17 0.00 0.17 0.00 +tritium tritium NOM m s 0.11 0.00 0.11 0.00 +triton triton NOM m s 0.81 0.27 0.35 0.07 +tritons triton NOM m p 0.81 0.27 0.46 0.20 +tritura triturer VER 0.25 5.07 0.00 0.27 ind:pas:3s; +trituraient triturer VER 0.25 5.07 0.01 0.27 ind:imp:3p; +triturais triturer VER 0.25 5.07 0.01 0.14 ind:imp:1s; +triturait triturer VER 0.25 5.07 0.01 1.08 ind:imp:3s; +triturant triturer VER 0.25 5.07 0.00 0.68 par:pre; +trituration trituration NOM f s 0.00 0.20 0.00 0.14 +triturations trituration NOM f p 0.00 0.20 0.00 0.07 +triture triturer VER 0.25 5.07 0.02 0.47 ind:pre:1s;ind:pre:3s; +triturent triturer VER 0.25 5.07 0.01 0.20 ind:pre:3p; +triturer triturer VER 0.25 5.07 0.14 1.22 inf; +triturera triturer VER 0.25 5.07 0.00 0.07 ind:fut:3s; +triturons triturer VER 0.25 5.07 0.00 0.07 imp:pre:1p; +trituré triturer VER m s 0.25 5.07 0.02 0.20 par:pas; +triturée triturer VER f s 0.25 5.07 0.02 0.14 par:pas; +triturées triturer VER f p 0.25 5.07 0.00 0.14 par:pas; +triturés triturer VER m p 0.25 5.07 0.00 0.14 par:pas; +trié trier VER m s 3.68 7.84 0.39 0.54 par:pas; +triée trier VER f s 3.68 7.84 0.11 0.27 par:pas; +triées trier VER f p 3.68 7.84 0.23 0.07 par:pas; +triumvir triumvir NOM m s 0.09 0.00 0.09 0.00 +triumvirat triumvirat NOM m s 0.57 0.14 0.57 0.14 +triés trier VER m p 3.68 7.84 0.33 0.81 par:pas; +trivial trivial ADJ m s 0.61 3.51 0.47 1.28 +triviale trivial ADJ f s 0.61 3.51 0.09 0.81 +trivialement trivialement ADV 0.01 0.07 0.01 0.07 +triviales trivial ADJ f p 0.61 3.51 0.04 0.81 +trivialiser trivialiser VER 0.03 0.00 0.03 0.00 inf; +trivialité trivialité NOM f s 0.03 0.34 0.03 0.27 +trivialités trivialité NOM f p 0.03 0.34 0.00 0.07 +triviaux trivial ADJ m p 0.61 3.51 0.02 0.61 +trivium trivium NOM m s 0.04 0.07 0.04 0.07 +troïka troïka NOM f s 0.00 0.81 0.00 0.54 +troïkas troïka NOM f p 0.00 0.81 0.00 0.27 +trobriandais trobriandais NOM m 0.00 0.07 0.00 0.07 +troc troc NOM m s 1.08 2.03 1.08 1.76 +trocart trocart NOM m s 0.01 0.14 0.01 0.14 +trochaïque trochaïque ADJ m s 0.00 0.07 0.00 0.07 +trochanter trochanter NOM m s 0.02 0.00 0.02 0.00 +troche troche NOM f s 0.00 0.14 0.00 0.14 +trochée trochée NOM s 0.00 0.14 0.00 0.14 +trochures trochure NOM f p 0.00 0.07 0.00 0.07 +trocs troc NOM m p 1.08 2.03 0.00 0.27 +troglodyte troglodyte NOM m s 0.20 0.68 0.10 0.27 +troglodytes troglodyte NOM m p 0.20 0.68 0.10 0.41 +troglodytique troglodytique ADJ m s 0.01 0.07 0.01 0.00 +troglodytiques troglodytique ADJ p 0.01 0.07 0.00 0.07 +trogne trogne NOM f s 0.07 3.85 0.07 3.18 +trognes trogne NOM f p 0.07 3.85 0.00 0.68 +trognon trognon NOM m s 0.84 3.38 0.75 2.30 +trognons trognon NOM m p 0.84 3.38 0.09 1.08 +trois_deux trois_deux NOM m 0.01 0.00 0.01 0.00 +trois_huit trois_huit NOM m 0.17 0.00 0.17 0.00 +trois_mâts trois_mâts NOM m 0.16 0.47 0.16 0.47 +trois_points trois_points NOM m 0.01 0.00 0.01 0.00 +trois_quarts trois_quarts NOM m 0.59 0.34 0.59 0.34 +trois_quatre trois_quatre NOM m 0.02 0.47 0.02 0.47 +trois_six trois_six NOM m 0.01 0.07 0.01 0.07 +trois trois ADJ:num 380.80 660.34 380.80 660.34 +troisième troisième ADJ 30.50 57.43 30.47 57.23 +troisièmement troisièmement ADV 1.38 0.54 1.38 0.54 +troisièmes troisième NOM p 14.60 31.55 0.05 0.20 +troll troll NOM m s 2.07 0.27 0.96 0.20 +trolle trolle NOM f s 0.00 0.07 0.00 0.07 +trolley trolley NOM m s 0.48 0.61 0.48 0.47 +trolleybus trolleybus NOM m 0.00 1.08 0.00 1.08 +trolleys trolley NOM m p 0.48 0.61 0.00 0.14 +trolls troll NOM m p 2.07 0.27 1.11 0.07 +trâlée trâlée NOM f s 0.00 0.07 0.00 0.07 +trombe trombe NOM f s 0.82 9.32 0.61 7.23 +trombes trombe NOM f p 0.82 9.32 0.20 2.09 +trombine trombine NOM f s 0.02 1.28 0.01 1.01 +trombines trombine NOM f p 0.02 1.28 0.01 0.27 +trombinoscope trombinoscope NOM m s 0.07 0.14 0.07 0.14 +tromblon tromblon NOM m s 0.06 0.68 0.05 0.20 +tromblons tromblon NOM m p 0.06 0.68 0.01 0.47 +trombone trombone NOM m s 2.96 1.42 1.78 0.54 +trombones trombone NOM m p 2.96 1.42 1.17 0.88 +tromboniste tromboniste NOM s 0.01 0.00 0.01 0.00 +trommel trommel NOM m s 0.00 0.14 0.00 0.14 +trompa tromper VER 149.09 97.30 0.16 0.61 ind:pas:3s; +trompai tromper VER 149.09 97.30 0.00 0.20 ind:pas:1s; +trompaient tromper VER 149.09 97.30 0.39 1.96 ind:imp:3p; +trompais tromper VER 149.09 97.30 3.19 4.12 ind:imp:1s;ind:imp:2s; +trompait tromper VER 149.09 97.30 3.34 9.39 ind:imp:3s; +trompant tromper VER 149.09 97.30 0.28 1.62 par:pre; +trompe_l_oeil trompe_l_oeil NOM m 0.33 2.43 0.33 2.43 +trompe tromper VER 149.09 97.30 27.72 15.41 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +trompent tromper VER 149.09 97.30 3.43 3.11 ind:pre:3p; +tromper tromper VER 149.09 97.30 27.42 22.16 inf;;inf;;inf;; +trompera tromper VER 149.09 97.30 0.24 0.27 ind:fut:3s; +tromperai tromper VER 149.09 97.30 0.19 0.41 ind:fut:1s; +tromperaient tromper VER 149.09 97.30 0.01 0.14 cnd:pre:3p; +tromperais tromper VER 149.09 97.30 0.36 0.07 cnd:pre:1s;cnd:pre:2s; +tromperait tromper VER 149.09 97.30 0.39 0.61 cnd:pre:3s; +tromperas tromper VER 149.09 97.30 0.39 0.14 ind:fut:2s; +tromperez tromper VER 149.09 97.30 0.06 0.07 ind:fut:2p; +tromperie tromperie NOM f s 1.56 2.16 1.17 1.69 +tromperies tromperie NOM f p 1.56 2.16 0.39 0.47 +tromperiez tromper VER 149.09 97.30 0.01 0.14 cnd:pre:2p; +tromperons tromper VER 149.09 97.30 0.01 0.00 ind:fut:1p; +tromperont tromper VER 149.09 97.30 0.21 0.14 ind:fut:3p; +trompes tromper VER 149.09 97.30 17.21 3.45 ind:pre:2s;sub:pre:2s; +trompeter trompeter VER 0.10 0.00 0.10 0.00 inf; +trompette trompette NOM s 8.02 11.49 5.71 5.61 +trompettes trompette NOM p 8.02 11.49 2.31 5.88 +trompettiste trompettiste NOM s 0.77 0.68 0.73 0.68 +trompettistes trompettiste NOM p 0.77 0.68 0.04 0.00 +trompeur trompeur ADJ m s 3.10 5.00 0.71 1.28 +trompeurs trompeur ADJ m p 3.10 5.00 0.59 0.61 +trompeuse trompeur ADJ f s 3.10 5.00 0.22 2.43 +trompeusement trompeusement ADV 0.01 0.27 0.01 0.27 +trompeuses trompeur ADJ f p 3.10 5.00 1.58 0.68 +trompez tromper VER 149.09 97.30 12.82 2.43 imp:pre:2p;ind:pre:2p; +trompiez tromper VER 149.09 97.30 0.52 0.07 ind:imp:2p; +trompions tromper VER 149.09 97.30 0.14 0.34 ind:imp:1p; +trompâmes tromper VER 149.09 97.30 0.00 0.07 ind:pas:1p; +trompons tromper VER 149.09 97.30 0.25 0.34 imp:pre:1p;ind:pre:1p; +trompât tromper VER 149.09 97.30 0.00 0.54 sub:imp:3s; +trompèrent tromper VER 149.09 97.30 0.00 0.27 ind:pas:3p; +trompé tromper VER m s 149.09 97.30 29.98 17.70 par:pas;par:pas;par:pas; +trompée tromper VER f s 149.09 97.30 12.98 8.11 par:pas; +trompées tromper VER f p 149.09 97.30 0.39 0.41 par:pas; +trompés tromper VER m p 149.09 97.30 7.03 3.04 par:pas; +tronc tronc NOM m s 5.81 36.62 4.84 20.74 +tronchais troncher VER 0.09 0.14 0.02 0.00 ind:imp:1s; +tronche tronche NOM f s 8.92 25.68 8.25 22.57 +troncher troncher VER 0.09 0.14 0.03 0.07 inf; +tronches tronche NOM f p 8.92 25.68 0.67 3.11 +tronché troncher VER m s 0.09 0.14 0.01 0.00 par:pas; +tronchée troncher VER f s 0.09 0.14 0.03 0.07 par:pas; +tronconique tronconique ADJ s 0.01 0.27 0.01 0.27 +troncs tronc NOM m p 5.81 36.62 0.97 15.88 +tronquer tronquer VER 0.06 0.61 0.01 0.07 inf; +tronqué tronqué ADJ m s 0.08 1.08 0.04 0.34 +tronquée tronquer VER f s 0.06 0.61 0.03 0.27 par:pas; +tronquées tronqué ADJ f p 0.08 1.08 0.01 0.47 +tronqués tronqué ADJ m p 0.08 1.08 0.01 0.00 +tronçon tronçon NOM m s 0.31 3.99 0.17 2.03 +tronçonnaient tronçonner VER 0.17 0.81 0.00 0.07 ind:imp:3p; +tronçonnait tronçonner VER 0.17 0.81 0.00 0.07 ind:imp:3s; +tronçonne tronçonner VER 0.17 0.81 0.01 0.14 imp:pre:2s;ind:pre:3s; +tronçonner tronçonner VER 0.17 0.81 0.00 0.14 inf; +tronçonneuse tronçonneur NOM f s 1.63 1.08 1.63 0.95 +tronçonneuses tronçonneuse NOM f p 0.22 0.00 0.22 0.00 +tronçonné tronçonner VER m s 0.17 0.81 0.16 0.07 par:pas; +tronçonnée tronçonner VER f s 0.17 0.81 0.00 0.14 par:pas; +tronçonnées tronçonner VER f p 0.17 0.81 0.00 0.14 par:pas; +tronçonnés tronçonner VER m p 0.17 0.81 0.00 0.07 par:pas; +tronçons tronçon NOM m p 0.31 3.99 0.14 1.96 +trop_perçu trop_perçu NOM m s 0.01 0.00 0.01 0.00 +trop_plein trop_plein NOM m s 0.30 2.64 0.30 2.50 +trop_plein trop_plein NOM m p 0.30 2.64 0.00 0.14 +trop trop ADV 859.54 790.00 859.54 790.00 +trope trope NOM m s 0.00 0.07 0.00 0.07 +trophée trophée NOM m s 7.02 4.93 4.85 2.57 +trophées trophée NOM m p 7.02 4.93 2.17 2.36 +tropical tropical ADJ m s 3.28 6.62 1.56 1.28 +tropicale tropical ADJ f s 3.28 6.62 0.96 2.77 +tropicales tropical ADJ f p 3.28 6.62 0.45 1.42 +tropicaux tropical ADJ m p 3.28 6.62 0.30 1.15 +tropique tropique NOM m s 1.37 2.43 0.38 0.20 +tropiques tropique NOM m p 1.37 2.43 0.99 2.23 +tropisme tropisme NOM m s 0.00 0.61 0.00 0.54 +tropismes tropisme NOM m p 0.00 0.61 0.00 0.07 +troposphère troposphère NOM f s 0.01 0.20 0.01 0.20 +troposphérique troposphérique ADJ f s 0.00 0.20 0.00 0.14 +troposphériques troposphérique ADJ p 0.00 0.20 0.00 0.07 +tropézienne tropézien NOM f s 0.00 0.14 0.00 0.14 +tropéziens tropézien ADJ m p 0.00 0.07 0.00 0.07 +troqua troquer VER 1.64 4.73 0.03 0.41 ind:pas:3s; +troquaient troquer VER 1.64 4.73 0.00 0.27 ind:imp:3p; +troquais troquer VER 1.64 4.73 0.00 0.07 ind:imp:1s; +troquait troquer VER 1.64 4.73 0.01 0.20 ind:imp:3s; +troquant troquer VER 1.64 4.73 0.04 0.07 par:pre; +troquas troquer VER 1.64 4.73 0.00 0.07 ind:pas:2s; +troque troquer VER 1.64 4.73 0.13 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +troquer troquer VER 1.64 4.73 0.56 2.36 inf; +troquera troquer VER 1.64 4.73 0.01 0.00 ind:fut:3s; +troquerai troquer VER 1.64 4.73 0.11 0.07 ind:fut:1s; +troquerais troquer VER 1.64 4.73 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +troquet troquet NOM m s 0.34 6.82 0.33 4.66 +troquets troquet NOM m p 0.34 6.82 0.01 2.16 +troquez troquer VER 1.64 4.73 0.17 0.07 imp:pre:2p;ind:pre:2p; +troquèrent troquer VER 1.64 4.73 0.10 0.07 ind:pas:3p; +troqué troquer VER m s 1.64 4.73 0.35 0.74 par:pas; +troquée troquer VER f s 1.64 4.73 0.06 0.07 par:pas; +troquées troquer VER f p 1.64 4.73 0.04 0.14 par:pas; +troqués troquer VER m p 1.64 4.73 0.01 0.07 par:pas; +trot trot NOM m s 1.67 10.47 1.66 10.41 +troène troène NOM m s 0.02 1.28 0.01 0.07 +troènes troène NOM m p 0.02 1.28 0.01 1.22 +trots trot NOM m p 1.67 10.47 0.01 0.07 +trotskisme trotskisme NOM m s 0.00 0.14 0.00 0.14 +trotskiste trotskiste ADJ s 0.51 0.68 0.51 0.41 +trotskistes trotskiste NOM p 0.03 0.47 0.02 0.41 +trotskystes trotskyste NOM p 0.01 0.20 0.01 0.20 +trotta trotter VER 2.66 10.27 0.14 0.20 ind:pas:3s; +trottaient trotter VER 2.66 10.27 0.04 0.74 ind:imp:3p; +trottais trotter VER 2.66 10.27 0.00 0.07 ind:imp:1s; +trottait trotter VER 2.66 10.27 0.54 2.16 ind:imp:3s; +trottant trotter VER 2.66 10.27 0.00 1.08 par:pre; +trotte_menu trotte_menu ADJ m s 0.00 0.41 0.00 0.41 +trotte trotter VER 2.66 10.27 0.75 1.69 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trottent trotter VER 2.66 10.27 0.17 0.81 ind:pre:3p; +trotter trotter VER 2.66 10.27 0.90 2.64 inf; +trottera trotter VER 2.66 10.27 0.01 0.07 ind:fut:3s; +trotterions trotter VER 2.66 10.27 0.00 0.07 cnd:pre:1p; +trottes trotter VER 2.66 10.27 0.01 0.00 ind:pre:2s; +trotteur trotteur NOM m s 0.09 0.88 0.01 0.00 +trotteurs trotteur NOM m p 0.09 0.88 0.02 0.27 +trotteuse trotteur NOM f s 0.09 0.88 0.06 0.54 +trotteuses trotteuse NOM f p 0.01 0.00 0.01 0.00 +trottez trotter VER 2.66 10.27 0.03 0.07 imp:pre:2p;ind:pre:2p; +trottignolles trottignolle NOM m p 0.00 0.07 0.00 0.07 +trottin trottin NOM m s 0.00 0.14 0.00 0.07 +trottina trottiner VER 0.22 7.50 0.00 0.20 ind:pas:3s; +trottinais trottiner VER 0.22 7.50 0.00 0.07 ind:imp:1s; +trottinait trottiner VER 0.22 7.50 0.01 1.55 ind:imp:3s; +trottinant trottiner VER 0.22 7.50 0.01 2.64 par:pre; +trottine trottiner VER 0.22 7.50 0.01 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trottinement trottinement NOM m s 0.01 0.81 0.01 0.74 +trottinements trottinement NOM m p 0.01 0.81 0.00 0.07 +trottinent trottiner VER 0.22 7.50 0.00 0.20 ind:pre:3p; +trottiner trottiner VER 0.22 7.50 0.03 1.62 inf; +trottinerait trottiner VER 0.22 7.50 0.00 0.07 cnd:pre:3s; +trottinette trottinette NOM f s 0.35 0.81 0.32 0.68 +trottinettes trottinette NOM f p 0.35 0.81 0.04 0.14 +trottinez trottiner VER 0.22 7.50 0.14 0.00 imp:pre:2p;ind:pre:2p; +trottinions trottiner VER 0.22 7.50 0.00 0.07 ind:imp:1p; +trottins trottin NOM m p 0.00 0.14 0.00 0.07 +trottiné trottiner VER m s 0.22 7.50 0.01 0.14 par:pas; +trottions trotter VER 2.66 10.27 0.00 0.14 ind:imp:1p; +trottoir trottoir NOM m s 10.87 87.36 9.93 70.54 +trottoirs trottoir NOM m p 10.87 87.36 0.94 16.82 +trottons trotter VER 2.66 10.27 0.00 0.14 ind:pre:1p; +trotté trotter VER m s 2.66 10.27 0.09 0.41 par:pas; +trou_du_cul trou_du_cul NOM m s 0.43 0.14 0.29 0.14 +trou_trou trou_trou NOM m s 0.00 0.34 0.00 0.14 +trou_trou trou_trou NOM m p 0.00 0.34 0.00 0.20 +trou trou NOM m s 90.72 108.38 75.32 76.08 +troua trouer VER 4.27 11.76 0.00 0.34 ind:pas:3s; +trouai trouer VER 4.27 11.76 0.00 0.07 ind:pas:1s; +trouaient trouer VER 4.27 11.76 0.00 0.81 ind:imp:3p; +trouais trouer VER 4.27 11.76 0.00 0.07 ind:imp:1s; +trouait trouer VER 4.27 11.76 0.01 1.22 ind:imp:3s; +trouant trouer VER 4.27 11.76 0.01 0.74 par:pre; +troubades troubade NOM m p 0.00 0.07 0.00 0.07 +troubadour troubadour NOM m s 0.84 1.62 0.50 0.68 +troubadours troubadour NOM m p 0.84 1.62 0.34 0.95 +troubla troubler VER 16.33 37.97 0.03 3.51 ind:pas:3s; +troublai troubler VER 16.33 37.97 0.00 0.07 ind:pas:1s; +troublaient troubler VER 16.33 37.97 0.01 2.03 ind:imp:3p; +troublais troubler VER 16.33 37.97 0.00 0.14 ind:imp:1s; +troublait troubler VER 16.33 37.97 0.76 4.59 ind:imp:3s; +troublant troublant ADJ m s 2.74 8.99 1.25 4.19 +troublante troublant ADJ f s 2.74 8.99 0.93 2.84 +troublantes troublant ADJ f p 2.74 8.99 0.42 1.08 +troublants troublant ADJ m p 2.74 8.99 0.14 0.88 +trouble_fête trouble_fête NOM p 0.28 0.00 0.28 0.00 +trouble trouble NOM m s 12.84 25.68 5.76 18.31 +troublent troubler VER 16.33 37.97 0.53 0.95 ind:pre:3p; +troubler troubler VER 16.33 37.97 2.94 8.45 inf; +troublera troubler VER 16.33 37.97 0.15 0.14 ind:fut:3s; +troublerais troubler VER 16.33 37.97 0.00 0.07 cnd:pre:2s; +troublerait troubler VER 16.33 37.97 0.42 0.41 cnd:pre:3s; +troubleront troubler VER 16.33 37.97 0.01 0.07 ind:fut:3p; +troubles trouble NOM m p 12.84 25.68 7.08 7.36 +troublez troubler VER 16.33 37.97 0.50 0.14 imp:pre:2p;ind:pre:2p; +troublât troubler VER 16.33 37.97 0.01 0.14 sub:imp:3s; +troublèrent troubler VER 16.33 37.97 0.00 0.61 ind:pas:3p; +troublé troubler VER m s 16.33 37.97 4.58 7.50 par:pas; +troublée troubler VER f s 16.33 37.97 1.72 3.45 par:pas; +troublées troubler VER f p 16.33 37.97 0.04 0.41 par:pas; +troublés troublé ADJ m p 3.32 7.97 0.57 1.08 +trouduc trouduc NOM m s 3.68 0.41 3.68 0.41 +trouducuteries trouducuterie NOM f p 0.00 0.07 0.00 0.07 +troue trouer VER 4.27 11.76 1.30 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trouent trouer VER 4.27 11.76 0.04 0.95 ind:pre:3p; +trouer trouer VER 4.27 11.76 1.32 1.35 inf; +trouerai trouer VER 4.27 11.76 0.02 0.00 ind:fut:1s; +trouerais trouer VER 4.27 11.76 0.03 0.00 cnd:pre:1s; +trouez trouer VER 4.27 11.76 0.30 0.00 imp:pre:2p;ind:pre:2p; +troufignard troufignard NOM m s 0.00 0.07 0.00 0.07 +troufignon troufignon NOM m s 0.03 0.14 0.02 0.14 +troufignons troufignon NOM m p 0.03 0.14 0.01 0.00 +troufion troufion NOM m s 1.13 1.76 0.78 0.68 +troufions troufion NOM m p 1.13 1.76 0.34 1.08 +trouillait trouiller VER 0.00 0.07 0.00 0.07 ind:imp:3s; +trouillard trouillard NOM m s 3.76 1.01 3.34 0.54 +trouillarde trouillard ADJ f s 1.66 0.54 0.26 0.00 +trouillards trouillard NOM m p 3.76 1.01 0.27 0.47 +trouille trouille NOM f s 17.43 15.74 16.90 14.46 +trouilles trouille NOM f p 17.43 15.74 0.53 1.28 +trouillomètre trouillomètre NOM m s 0.14 0.20 0.14 0.20 +troupe troupe NOM f s 30.93 105.41 10.30 32.30 +troupeau troupeau NOM m s 11.48 25.54 9.73 16.28 +troupeaux troupeau NOM m p 11.48 25.54 1.76 9.26 +troupes troupe NOM f p 30.93 105.41 20.64 73.11 +troupier troupier NOM m s 0.20 1.22 0.06 0.47 +troupiers troupier NOM m p 0.20 1.22 0.14 0.74 +trou_du_cul trou_du_cul NOM m p 0.43 0.14 0.14 0.00 +trous trou NOM m p 90.72 108.38 15.40 32.30 +troussa trousser VER 0.39 2.30 0.00 0.07 ind:pas:3s; +troussaient trousser VER 0.39 2.30 0.00 0.07 ind:imp:3p; +troussait trousser VER 0.39 2.30 0.00 0.34 ind:imp:3s; +troussant trousser VER 0.39 2.30 0.00 0.27 par:pre; +trousse trousse NOM f s 8.79 8.92 3.77 4.59 +trousseau trousseau NOM m s 2.14 5.95 2.13 5.41 +trousseaux trousseau NOM m p 2.14 5.95 0.01 0.54 +troussequin troussequin NOM m s 0.00 0.07 0.00 0.07 +trousser trousser VER 0.39 2.30 0.01 0.47 inf; +trousses trousse NOM f p 8.79 8.92 5.03 4.32 +trousseur trousseur NOM m s 0.00 0.14 0.00 0.14 +troussèrent trousser VER 0.39 2.30 0.00 0.07 ind:pas:3p; +troussé trousser VER m s 0.39 2.30 0.14 0.27 par:pas; +troussée trousser VER f s 0.39 2.30 0.11 0.27 par:pas; +troussées troussé ADJ f p 0.00 1.01 0.00 0.34 +troussés troussé ADJ m p 0.00 1.01 0.00 0.14 +trouèrent trouer VER 4.27 11.76 0.00 0.07 ind:pas:3p; +troué trouer VER m s 4.27 11.76 0.89 1.96 imp:pre:2s;par:pas; +trouée trouée NOM f s 0.30 5.81 0.27 5.00 +trouées troué ADJ f p 0.96 5.27 0.43 1.01 +troués troué ADJ m p 0.96 5.27 0.20 0.74 +trouva trouver VER 1335.49 972.50 4.37 59.53 ind:pas:3s; +trouvable trouvable ADJ s 0.04 0.07 0.04 0.07 +trouvai trouver VER 1335.49 972.50 1.00 18.51 ind:pas:1s; +trouvaient trouver VER 1335.49 972.50 3.38 36.35 ind:imp:3p; +trouvaille trouvaille NOM f s 1.90 7.84 1.38 5.14 +trouvailles trouvaille NOM f p 1.90 7.84 0.52 2.70 +trouvais trouver VER 1335.49 972.50 13.84 37.84 ind:imp:1s;ind:imp:2s; +trouvait trouver VER 1335.49 972.50 17.91 149.19 ind:imp:3s; +trouvant trouver VER 1335.49 972.50 2.57 15.14 par:pre; +trouvas trouver VER 1335.49 972.50 0.00 0.14 ind:pas:2s; +trouvasse trouver VER 1335.49 972.50 0.00 0.14 sub:imp:1s; +trouvassent trouver VER 1335.49 972.50 0.00 0.34 sub:imp:3p; +trouve trouver VER 1335.49 972.50 284.45 163.78 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +trouvent trouver VER 1335.49 972.50 22.04 22.50 ind:pre:3p;sub:pre:3p; +trouver trouver VER 1335.49 972.50 324.94 192.70 inf;;inf;;inf;;inf;; +trouvera trouver VER 1335.49 972.50 29.30 11.42 ind:fut:3s; +trouverai trouver VER 1335.49 972.50 26.27 4.12 ind:fut:1s; +trouveraient trouver VER 1335.49 972.50 0.75 3.58 cnd:pre:3p; +trouverais trouver VER 1335.49 972.50 6.35 4.93 cnd:pre:1s;cnd:pre:2s; +trouverait trouver VER 1335.49 972.50 4.24 15.34 cnd:pre:3s; +trouveras trouver VER 1335.49 972.50 19.10 3.78 ind:fut:2s; +trouverez trouver VER 1335.49 972.50 18.23 5.61 ind:fut:2p; +trouveriez trouver VER 1335.49 972.50 1.05 0.41 cnd:pre:2p; +trouverions trouver VER 1335.49 972.50 0.28 1.08 cnd:pre:1p; +trouverons trouver VER 1335.49 972.50 8.06 1.55 ind:fut:1p; +trouveront trouver VER 1335.49 972.50 6.99 3.45 ind:fut:3p; +trouves trouver VER 1335.49 972.50 70.05 17.91 ind:pre:2s;sub:pre:1p;sub:pre:2s; +trouveur trouveur NOM m s 0.03 0.07 0.02 0.00 +trouveurs trouveur NOM m p 0.03 0.07 0.01 0.07 +trouvez trouver VER 1335.49 972.50 62.69 14.12 imp:pre:2p;ind:pre:2p; +trouviez trouver VER 1335.49 972.50 2.98 1.01 ind:imp:2p; +trouvions trouver VER 1335.49 972.50 1.39 6.28 ind:imp:1p;sub:pre:1p; +trouvâmes trouver VER 1335.49 972.50 0.28 2.70 ind:pas:1p; +trouvons trouver VER 1335.49 972.50 10.25 4.32 imp:pre:1p;ind:pre:1p; +trouvât trouver VER 1335.49 972.50 0.00 3.85 sub:imp:3s; +trouvère trouvère NOM m s 0.20 0.20 0.20 0.07 +trouvèrent trouver VER 1335.49 972.50 0.88 8.31 ind:pas:3p; +trouvères trouvère NOM m p 0.20 0.20 0.00 0.14 +trouvé trouver VER m s 1335.49 972.50 339.29 135.74 par:pas;par:pas;par:pas; +trouvée trouver VER f s 1335.49 972.50 36.28 16.42 par:pas; +trouvées trouver VER f p 1335.49 972.50 5.44 2.77 par:pas; +trouvés trouver VER m p 1335.49 972.50 10.85 7.64 par:pas;par:pas;par:pas; +troyen troyen ADJ m s 0.24 0.14 0.23 0.07 +troyenne troyen ADJ f s 0.24 0.14 0.01 0.07 +trèfle trèfle NOM m s 3.52 5.00 2.75 4.19 +trèfles trèfle NOM m p 3.52 5.00 0.78 0.81 +trèpe trèpe NOM m s 0.00 1.49 0.00 1.49 +très très ADV 1589.92 1120.81 1589.92 1120.81 +truand truand NOM m s 5.82 6.49 2.52 2.57 +truandage truandage NOM m s 0.00 0.68 0.00 0.54 +truandages truandage NOM m p 0.00 0.68 0.00 0.14 +truandaille truandaille NOM f s 0.00 0.27 0.00 0.27 +truande truand NOM f s 5.82 6.49 0.03 0.14 +truander truander VER 0.35 0.14 0.13 0.00 inf; +truanderie truanderie NOM f s 0.00 0.54 0.00 0.54 +truandes truander VER 0.35 0.14 0.02 0.00 ind:pre:2s; +truands truand NOM m p 5.82 6.49 3.27 3.72 +truandé truander VER m s 0.35 0.14 0.17 0.07 par:pas; +trublion trublion NOM m s 0.09 0.34 0.08 0.14 +trublions trublion NOM m p 0.09 0.34 0.01 0.20 +trébucha trébucher VER 4.91 12.64 0.01 1.82 ind:pas:3s; +trébuchai trébucher VER 4.91 12.64 0.01 0.27 ind:pas:1s; +trébuchaient trébucher VER 4.91 12.64 0.00 0.20 ind:imp:3p; +trébuchais trébucher VER 4.91 12.64 0.05 0.27 ind:imp:1s; +trébuchait trébucher VER 4.91 12.64 0.04 1.49 ind:imp:3s; +trébuchant trébucher VER 4.91 12.64 0.23 3.31 par:pre; +trébuchante trébuchant ADJ f s 0.07 1.55 0.00 0.47 +trébuchantes trébuchant ADJ f p 0.07 1.55 0.04 0.34 +trébuchants trébuchant ADJ m p 0.07 1.55 0.00 0.20 +trébuche trébucher VER 4.91 12.64 0.88 1.82 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trébuchement trébuchement NOM m s 0.02 0.20 0.01 0.07 +trébuchements trébuchement NOM m p 0.02 0.20 0.01 0.14 +trébuchent trébucher VER 4.91 12.64 0.13 0.47 ind:pre:3p; +trébucher trébucher VER 4.91 12.64 1.14 1.89 inf; +trébuches trébucher VER 4.91 12.64 0.17 0.00 ind:pre:2s; +trébuchet trébuchet NOM m s 0.01 0.27 0.01 0.27 +trébuchez trébucher VER 4.91 12.64 0.05 0.00 imp:pre:2p;ind:pre:2p; +trébuchons trébucher VER 4.91 12.64 0.00 0.34 imp:pre:1p;ind:pre:1p; +trébuché trébucher VER m s 4.91 12.64 2.21 0.74 par:pas; +truc truc NOM m s 381.34 87.77 274.94 51.15 +trucage trucage NOM m s 0.69 0.41 0.25 0.41 +trucages trucage NOM m p 0.69 0.41 0.44 0.00 +truchement truchement NOM m s 0.14 2.57 0.14 2.43 +truchements truchement NOM m p 0.14 2.57 0.00 0.14 +trucida trucider VER 1.01 1.22 0.00 0.34 ind:pas:3s; +trucidais trucider VER 1.01 1.22 0.00 0.07 ind:imp:1s; +trucidant trucider VER 1.01 1.22 0.00 0.07 par:pre; +trucident trucider VER 1.01 1.22 0.01 0.00 ind:pre:3p; +trucider trucider VER 1.01 1.22 0.43 0.47 inf; +truciderai trucider VER 1.01 1.22 0.03 0.00 ind:fut:1s; +trucides trucider VER 1.01 1.22 0.01 0.00 ind:pre:2s; +trucidons trucider VER 1.01 1.22 0.01 0.00 imp:pre:1p; +trucidé trucider VER m s 1.01 1.22 0.39 0.14 par:pas; +trucidée trucider VER f s 1.01 1.22 0.01 0.14 par:pas; +trucidés trucider VER m p 1.01 1.22 0.12 0.00 par:pas; +truck truck NOM m s 0.39 0.07 0.35 0.00 +trucks truck NOM m p 0.39 0.07 0.04 0.07 +trucmuche trucmuche NOM m s 0.11 0.14 0.11 0.14 +trucs truc NOM m p 381.34 87.77 106.41 36.62 +truculence truculence NOM f s 0.00 0.27 0.00 0.27 +truculent truculent ADJ m s 0.02 0.54 0.02 0.27 +truculente truculent ADJ f s 0.02 0.54 0.00 0.27 +truelle truelle NOM f s 0.73 2.43 0.73 2.30 +truelles truelle NOM f p 0.73 2.43 0.00 0.14 +truffaient truffer VER 1.29 3.85 0.00 0.14 ind:imp:3p; +truffait truffer VER 1.29 3.85 0.00 0.14 ind:imp:3s; +truffant truffer VER 1.29 3.85 0.03 0.20 par:pre; +truffe truffe NOM f s 2.65 4.73 0.82 3.38 +truffer truffer VER 1.29 3.85 0.08 0.14 inf; +truffes truffe NOM f p 2.65 4.73 1.83 1.35 +truffier truffier NOM m s 0.01 0.34 0.00 0.14 +truffiers truffier NOM m p 0.01 0.34 0.01 0.20 +truffons truffer VER 1.29 3.85 0.01 0.00 imp:pre:1p; +truffé truffer VER m s 1.29 3.85 0.69 0.74 par:pas; +truffée truffer VER f s 1.29 3.85 0.27 0.81 par:pas; +truffées truffer VER f p 1.29 3.85 0.02 0.41 par:pas; +truffés truffer VER m p 1.29 3.85 0.12 1.15 par:pas; +tréfilés tréfiler VER m p 0.00 0.07 0.00 0.07 par:pas; +tréflières tréflière NOM f p 0.00 0.07 0.00 0.07 +tréfonds tréfonds NOM m 0.62 2.91 0.62 2.91 +truie truie NOM f s 3.35 2.36 3.16 2.16 +truies truie NOM f p 3.35 2.36 0.19 0.20 +truisme truisme NOM m s 0.03 0.20 0.02 0.14 +truismes truisme NOM m p 0.03 0.20 0.01 0.07 +truite truite NOM f s 3.65 7.91 2.35 3.38 +truitelle truitelle NOM f s 0.00 0.07 0.00 0.07 +truites truite NOM f p 3.65 7.91 1.30 4.53 +tréma tréma NOM m s 0.04 0.14 0.02 0.14 +trémail trémail NOM m s 0.00 0.14 0.00 0.14 +trémas tréma NOM m p 0.04 0.14 0.01 0.00 +trumeau trumeau NOM m s 0.01 0.61 0.01 0.34 +trumeaux trumeau NOM m p 0.01 0.61 0.00 0.27 +trémie trémie NOM f s 0.10 0.41 0.10 0.00 +trémies trémie NOM f p 0.10 0.41 0.00 0.41 +trémière trémière ADJ f s 0.01 1.89 0.00 0.54 +trémières trémière ADJ f p 0.01 1.89 0.01 1.35 +trémois trémois NOM m 0.00 0.07 0.00 0.07 +trémolo trémolo NOM m s 0.19 1.15 0.16 0.74 +trémolos trémolo NOM m p 0.19 1.15 0.02 0.41 +trémoussa trémousser VER 0.93 2.23 0.00 0.14 ind:pas:3s; +trémoussaient trémousser VER 0.93 2.23 0.00 0.47 ind:imp:3p; +trémoussait trémousser VER 0.93 2.23 0.03 0.27 ind:imp:3s; +trémoussant trémousser VER 0.93 2.23 0.02 0.34 par:pre; +trémousse trémousser VER 0.93 2.23 0.36 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +trémoussement trémoussement NOM m s 0.00 0.34 0.00 0.14 +trémoussements trémoussement NOM m p 0.00 0.34 0.00 0.20 +trémoussent trémousser VER 0.93 2.23 0.06 0.07 ind:pre:3p; +trémousser trémousser VER 0.93 2.23 0.45 0.41 inf; +trémousses trémousser VER 0.93 2.23 0.02 0.00 ind:pre:2s; +trémoussât trémousser VER 0.93 2.23 0.00 0.07 sub:imp:3s; +trémoussèrent trémousser VER 0.93 2.23 0.00 0.07 ind:pas:3p; +trémulant trémuler VER 0.00 0.27 0.00 0.20 par:pre; +trémulante trémulant ADJ f s 0.00 0.14 0.00 0.07 +trémulation trémulation NOM f s 0.00 0.34 0.00 0.34 +trémuler trémuler VER 0.00 0.27 0.00 0.07 inf; +trépan trépan NOM m s 0.05 0.14 0.05 0.14 +trépanation trépanation NOM f s 0.20 0.00 0.20 0.00 +trépaner trépaner VER 0.17 0.34 0.03 0.34 inf; +trépané trépaner VER m s 0.17 0.34 0.14 0.00 par:pas; +trépanée trépané NOM f s 0.00 0.20 0.00 0.14 +trépas trépas NOM m 0.38 1.55 0.38 1.55 +trépassaient trépasser VER 0.39 1.08 0.00 0.07 ind:imp:3p; +trépassait trépasser VER 0.39 1.08 0.00 0.14 ind:imp:3s; +trépassant trépasser VER 0.39 1.08 0.00 0.07 par:pre; +trépasse trépasser VER 0.39 1.08 0.23 0.14 ind:pre:3s; +trépassent trépasser VER 0.39 1.08 0.01 0.14 ind:pre:3p; +trépasser trépasser VER 0.39 1.08 0.01 0.34 inf; +trépasserait trépasser VER 0.39 1.08 0.00 0.07 cnd:pre:3s; +trépasseront trépasser VER 0.39 1.08 0.02 0.00 ind:fut:3p; +trépassé trépasser VER m s 0.39 1.08 0.12 0.07 par:pas; +trépassée trépassé ADJ f s 0.02 0.20 0.01 0.07 +trépassées trépassé NOM f p 0.16 0.47 0.01 0.00 +trépassés trépassé NOM m p 0.16 0.47 0.03 0.34 +trépidant trépidant ADJ m s 0.33 1.28 0.03 0.34 +trépidante trépidant ADJ f s 0.33 1.28 0.18 0.61 +trépidantes trépidant ADJ f p 0.33 1.28 0.12 0.14 +trépidants trépidant ADJ m p 0.33 1.28 0.00 0.20 +trépidation trépidation NOM f s 0.10 1.96 0.10 1.22 +trépidations trépidation NOM f p 0.10 1.96 0.00 0.74 +trépide trépider VER 0.01 0.68 0.01 0.20 ind:pre:3s; +trépident trépider VER 0.01 0.68 0.00 0.07 ind:pre:3p; +trépider trépider VER 0.01 0.68 0.00 0.27 inf; +trépied trépied NOM m s 1.15 2.70 1.14 2.30 +trépieds trépied NOM m p 1.15 2.70 0.01 0.41 +trépigna trépigner VER 0.32 3.85 0.01 0.20 ind:pas:3s; +trépignaient trépigner VER 0.32 3.85 0.14 0.20 ind:imp:3p; +trépignais trépigner VER 0.32 3.85 0.00 0.27 ind:imp:1s; +trépignait trépigner VER 0.32 3.85 0.01 1.15 ind:imp:3s; +trépignant trépignant ADJ m s 0.01 1.08 0.01 0.95 +trépignante trépignant ADJ f s 0.01 1.08 0.00 0.07 +trépignants trépignant ADJ m p 0.01 1.08 0.00 0.07 +trépigne trépigner VER 0.32 3.85 0.06 0.74 ind:pre:1s;ind:pre:3s; +trépignement trépignement NOM m s 0.02 0.61 0.01 0.07 +trépignements trépignement NOM m p 0.02 0.61 0.01 0.54 +trépignent trépigner VER 0.32 3.85 0.05 0.20 ind:pre:3p; +trépigner trépigner VER 0.32 3.85 0.02 0.81 inf; +trépignerai trépigner VER 0.32 3.85 0.00 0.07 ind:fut:1s; +trépignez trépigner VER 0.32 3.85 0.01 0.07 imp:pre:2p;ind:pre:2p; +trépigné trépigner VER m s 0.32 3.85 0.01 0.07 par:pas; +trépignée trépigner VER f s 0.32 3.85 0.00 0.07 par:pas; +tréponème tréponème NOM m s 0.00 0.27 0.00 0.07 +tréponèmes tréponème NOM m p 0.00 0.27 0.00 0.20 +truqua truquer VER 4.62 3.45 0.00 0.07 ind:pas:3s; +truquage truquage NOM m s 0.45 1.15 0.34 0.54 +truquages truquage NOM m p 0.45 1.15 0.11 0.61 +truquaient truquer VER 4.62 3.45 0.02 0.07 ind:imp:3p; +truquait truquer VER 4.62 3.45 0.05 0.00 ind:imp:3s; +truquant truquer VER 4.62 3.45 0.04 0.14 par:pre; +truque truquer VER 4.62 3.45 0.59 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +truquer truquer VER 4.62 3.45 0.85 0.95 inf; +truquerai truquer VER 4.62 3.45 0.03 0.07 ind:fut:1s; +truquerez truquer VER 4.62 3.45 0.02 0.00 ind:fut:2p; +truqueur truqueur NOM m s 0.28 0.34 0.25 0.20 +truqueurs truqueur NOM m p 0.28 0.34 0.01 0.07 +truqueuse truqueur NOM f s 0.28 0.34 0.02 0.07 +truquez truquer VER 4.62 3.45 0.01 0.00 imp:pre:2p; +truquions truquer VER 4.62 3.45 0.00 0.07 ind:imp:1p; +truqué truquer VER m s 4.62 3.45 1.88 0.88 par:pas; +truquée truquer VER f s 4.62 3.45 0.71 0.34 par:pas; +truquées truqué ADJ f p 1.60 2.03 0.29 0.47 +truqués truquer VER m p 4.62 3.45 0.31 0.20 par:pas; +trésor trésor NOM m s 49.92 34.66 44.86 20.14 +trésorerie trésorerie NOM f s 0.40 0.81 0.40 0.81 +trésorier_payeur trésorier_payeur NOM m s 0.02 0.07 0.02 0.07 +trésorier trésorier NOM m s 1.83 1.82 1.55 1.62 +trésoriers trésorier NOM m p 1.83 1.82 0.02 0.00 +trésorière trésorier NOM f s 1.83 1.82 0.26 0.20 +trésors trésor NOM m p 49.92 34.66 5.07 14.53 +trusquin trusquin NOM m s 0.00 0.14 0.00 0.14 +trust trust NOM m s 1.16 1.08 1.11 0.54 +trustais truster VER 0.02 0.34 0.00 0.07 ind:imp:1s; +trustait truster VER 0.02 0.34 0.00 0.07 ind:imp:3s; +truste truster VER 0.02 0.34 0.00 0.07 ind:pre:3s; +trustee trustee NOM m s 0.00 0.27 0.00 0.07 +trustees trustee NOM m p 0.00 0.27 0.00 0.20 +trusteeship trusteeship NOM m s 0.00 0.41 0.00 0.34 +trusteeships trusteeship NOM m p 0.00 0.41 0.00 0.07 +truster truster VER 0.02 0.34 0.02 0.07 inf; +trusterait truster VER 0.02 0.34 0.00 0.07 cnd:pre:3s; +trusts trust NOM m p 1.16 1.08 0.05 0.54 +tréteau tréteau NOM m s 0.64 3.99 0.37 0.81 +tréteaux tréteau NOM m p 0.64 3.99 0.27 3.18 +trêve trêve NOM f s 6.69 11.42 6.68 11.15 +trêves trêve NOM f p 6.69 11.42 0.01 0.27 +trypanosome trypanosome NOM m s 0.00 0.14 0.00 0.07 +trypanosomes trypanosome NOM m p 0.00 0.14 0.00 0.07 +trypanosomiase trypanosomiase NOM f s 0.13 0.00 0.13 0.00 +trypsine trypsine NOM f s 0.01 0.00 0.01 0.00 +tryptophane tryptophane NOM m s 0.02 0.00 0.02 0.00 +tsar tsar NOM m s 14.30 8.85 11.65 6.82 +tsarine tsar NOM f s 14.30 8.85 2.27 0.88 +tsarisme tsarisme NOM m s 0.00 0.34 0.00 0.34 +tsariste tsariste ADJ m s 0.10 0.34 0.10 0.27 +tsaristes tsariste ADJ m p 0.10 0.34 0.00 0.07 +tsars tsar NOM m p 14.30 8.85 0.38 1.15 +tsarévitch tsarévitch NOM m s 2.90 0.00 2.90 0.00 +tsigane tsigane ADJ s 0.27 0.20 0.27 0.14 +tsiganes tsigane NOM p 0.14 0.34 0.01 0.27 +tsoin_tsoin tsoin_tsoin NOM m s 0.01 0.47 0.01 0.47 +tss_tss tss_tss NOM m 0.01 0.14 0.01 0.07 +tss_tss tss_tss NOM m 0.01 0.14 0.00 0.07 +tsé_tsé tsé_tsé NOM f 0.00 0.07 0.00 0.07 +tsuica tsuica NOM f s 0.14 0.00 0.14 0.00 +tsunami tsunami NOM m s 0.53 0.00 0.53 0.00 +tète téter VER 1.71 5.88 0.64 1.35 imp:pre:2s;ind:pre:3s; +tètent téter VER 1.71 5.88 0.00 0.20 ind:pre:3p; +tu_autem tu_autem NOM m s 0.00 0.07 0.00 0.07 +té té ONO 0.80 0.47 0.80 0.47 +tu tu PRO:per s 14661.76 2537.03 14661.76 2537.03 +tua tuer VER 928.05 171.15 2.00 2.03 ind:pas:3s; +tuai tuer VER 928.05 171.15 0.25 0.07 ind:pas:1s; +tuaient tuer VER 928.05 171.15 0.91 1.28 ind:imp:3p; +tuais tuer VER 928.05 171.15 1.89 0.54 ind:imp:1s;ind:imp:2s; +tuait tuer VER 928.05 171.15 4.77 5.68 ind:imp:3s; +tuant tuer VER 928.05 171.15 6.42 1.96 par:pre; +tuante tuant ADJ f s 0.76 1.08 0.01 0.27 +tuantes tuant ADJ f p 0.76 1.08 0.00 0.14 +tuants tuant ADJ m p 0.76 1.08 0.01 0.00 +tuas tuer VER 928.05 171.15 0.18 0.00 ind:pas:2s; +tub tub NOM m s 0.08 1.15 0.07 1.15 +tuba tuba NOM m s 1.44 0.54 1.38 0.47 +tubages tubage NOM m p 0.00 0.07 0.00 0.07 +tubard tubard ADJ m s 0.20 1.28 0.08 0.88 +tubarde tubard ADJ f s 0.20 1.28 0.12 0.14 +tubardise tubardise NOM f s 0.00 0.68 0.00 0.68 +tubards tubard NOM m p 0.16 0.95 0.10 0.34 +tubas tuba NOM m p 1.44 0.54 0.06 0.07 +tube tube NOM m s 17.40 20.47 12.16 11.35 +tuber tuber VER 0.41 0.34 0.01 0.20 inf; +tubercule tubercule NOM m s 0.17 0.61 0.02 0.34 +tubercules tubercule NOM m p 0.17 0.61 0.15 0.27 +tuberculeuse tuberculeux ADJ f s 0.44 2.16 0.38 0.81 +tuberculeuses tuberculeux ADJ f p 0.44 2.16 0.01 0.27 +tuberculeux tuberculeux ADJ m 0.44 2.16 0.05 1.08 +tuberculine tuberculine NOM f s 0.00 0.14 0.00 0.14 +tuberculose tuberculose NOM f s 2.44 3.04 2.44 3.04 +tubes tube NOM m p 17.40 20.47 5.24 9.12 +tubs tub NOM m p 0.08 1.15 0.01 0.00 +tubé tuber VER m s 0.41 0.34 0.14 0.14 par:pas; +tubulaire tubulaire ADJ s 0.07 0.27 0.06 0.07 +tubulaires tubulaire ADJ m p 0.07 0.27 0.01 0.20 +tubule tubule NOM m s 0.01 0.00 0.01 0.00 +tubuleuses tubuleux ADJ f p 0.00 0.07 0.00 0.07 +tubulure tubulure NOM f s 0.00 1.22 0.00 0.14 +tubulures tubulure NOM f p 0.00 1.22 0.00 1.08 +tubéreuse tubéreux ADJ f s 0.06 0.54 0.04 0.14 +tubéreuses tubéreux ADJ f p 0.06 0.54 0.02 0.34 +tubéreux tubéreux ADJ m p 0.06 0.54 0.00 0.07 +tubérosité tubérosité NOM f s 0.01 0.00 0.01 0.00 +tudesque tudesque ADJ s 0.00 0.47 0.00 0.27 +tudesques tudesque ADJ m p 0.00 0.47 0.00 0.20 +tudieu tudieu ONO 1.11 0.27 1.11 0.27 +tue_loup tue_loup NOM m s 0.06 0.00 0.05 0.00 +tue_loup tue_loup NOM m p 0.06 0.00 0.01 0.00 +tue_mouche tue_mouche ADJ m s 0.15 0.54 0.00 0.07 +tue_mouche tue_mouche ADJ p 0.15 0.54 0.15 0.47 +tue tuer VER 928.05 171.15 116.46 16.96 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +tuent tuer VER 928.05 171.15 14.08 3.31 ind:pre:3p; +tuer tuer VER 928.05 171.15 346.17 65.54 inf;;inf;;inf;; +tuera tuer VER 928.05 171.15 19.27 1.42 ind:fut:3s; +tuerai tuer VER 928.05 171.15 18.55 2.97 ind:fut:1s; +tuerais tuer VER 928.05 171.15 6.70 1.15 cnd:pre:1s;cnd:pre:2s; +tuerait tuer VER 928.05 171.15 8.77 2.23 cnd:pre:3s; +tueras tuer VER 928.05 171.15 3.21 0.41 ind:fut:2s; +tuerez tuer VER 928.05 171.15 1.52 0.20 ind:fut:2p; +tuerie tuerie NOM f s 3.17 2.77 2.22 1.35 +tueries tuerie NOM f p 3.17 2.77 0.95 1.42 +tueriez tuer VER 928.05 171.15 1.11 0.07 cnd:pre:2p; +tuerions tuer VER 928.05 171.15 0.16 0.07 cnd:pre:1p; +tuerons tuer VER 928.05 171.15 1.69 0.07 ind:fut:1p; +tueront tuer VER 928.05 171.15 8.49 0.61 ind:fut:3p; +tues tuer VER 928.05 171.15 11.20 0.20 ind:pre:2s;sub:pre:2s; +tueur tueur NOM m s 64.06 12.43 52.42 7.30 +tueurs tueur NOM m p 64.06 12.43 10.32 4.93 +tueuse tueuse NOM f s 6.26 0.27 6.26 0.27 +tueuses tueur NOM f p 64.06 12.43 1.31 0.20 +tuez tuer VER 928.05 171.15 27.32 2.43 imp:pre:2p;ind:pre:2p; +tuf tuf NOM m s 0.01 0.54 0.01 0.54 +tuffeau tuffeau NOM m s 0.00 0.34 0.00 0.27 +tuffeaux tuffeau NOM m p 0.00 0.34 0.00 0.07 +téflon téflon NOM m s 0.17 0.00 0.17 0.00 +tégument tégument NOM m s 0.00 0.14 0.00 0.14 +tégumentaire tégumentaire ADJ m s 0.01 0.00 0.01 0.00 +tégénaires tégénaire NOM f p 0.00 0.07 0.00 0.07 +tuiez tuer VER 928.05 171.15 1.06 0.07 ind:imp:2p;sub:pre:2p; +tuile tuile NOM f s 2.71 13.38 1.28 2.84 +tuilerie tuilerie NOM f s 0.03 1.15 0.03 0.61 +tuileries tuilerie NOM f p 0.03 1.15 0.00 0.54 +tuiles tuile NOM f p 2.71 13.38 1.42 10.54 +tuions tuer VER 928.05 171.15 0.03 0.00 ind:imp:1p; +tél tél NOM m s 0.04 0.00 0.04 0.00 +tél. tél. NOM m s 0.14 0.14 0.14 0.14 +tularémie tularémie NOM f s 0.18 0.00 0.18 0.00 +télencéphale télencéphale NOM m s 1.20 0.00 1.20 0.00 +télescopage télescopage NOM m s 0.02 0.41 0.02 0.41 +télescopait télescoper VER 0.05 1.08 0.01 0.07 ind:imp:3s; +télescope télescope NOM m s 2.46 0.95 2.31 0.81 +télescopent télescoper VER 0.05 1.08 0.00 0.20 ind:pre:3p; +télescoper télescoper VER 0.05 1.08 0.01 0.07 inf; +télescopes télescope NOM m p 2.46 0.95 0.14 0.14 +télescopique télescopique ADJ s 0.23 0.61 0.20 0.54 +télescopiques télescopique ADJ m p 0.23 0.61 0.03 0.07 +télescopèrent télescoper VER 0.05 1.08 0.00 0.07 ind:pas:3p; +télescopé télescoper VER m s 0.05 1.08 0.00 0.20 par:pas; +télescopée télescoper VER f s 0.05 1.08 0.00 0.07 par:pas; +télescopées télescoper VER f p 0.05 1.08 0.01 0.34 par:pas; +télescripteurs télescripteur NOM m p 0.00 0.07 0.00 0.07 +télex télex NOM m 1.18 1.49 1.18 1.49 +télexa télexer VER 0.02 0.41 0.00 0.07 ind:pas:3s; +télexer télexer VER 0.02 0.41 0.01 0.27 inf; +télexes télexer VER 0.02 0.41 0.00 0.07 ind:pre:2s; +télexé télexer VER m s 0.02 0.41 0.01 0.00 par:pas; +tulipe tulipe NOM f s 2.63 2.91 1.53 0.54 +tulipes tulipe NOM f p 2.63 2.91 1.10 2.36 +tulipier tulipier NOM m s 0.01 0.14 0.01 0.00 +tulipiers tulipier NOM m p 0.01 0.14 0.00 0.14 +tulle tulle NOM m s 0.29 3.51 0.19 3.31 +tulles tulle NOM m p 0.29 3.51 0.10 0.20 +téloche téloche NOM f s 0.16 1.62 0.16 1.62 +télègue télègue NOM f s 0.00 1.42 0.00 1.42 +télé télé NOM f s 106.42 26.15 104.35 25.27 +téléachat téléachat NOM m s 0.06 0.00 0.06 0.00 +téléavertisseur téléavertisseur NOM m s 0.02 0.00 0.02 0.00 +télécabine télécabine NOM f s 0.34 0.00 0.34 0.00 +télécartes télécarte NOM f p 0.01 0.00 0.01 0.00 +télécharge télécharger VER 2.55 0.00 0.34 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +téléchargeables téléchargeable ADJ f p 0.01 0.00 0.01 0.00 +téléchargement téléchargement NOM m s 0.32 0.00 0.32 0.00 +téléchargent télécharger VER 2.55 0.00 0.06 0.00 ind:pre:3p; +téléchargeons télécharger VER 2.55 0.00 0.02 0.00 ind:pre:1p; +télécharger télécharger VER 2.55 0.00 0.91 0.00 inf; +téléchargera télécharger VER 2.55 0.00 0.02 0.00 ind:fut:3s; +téléchargerai télécharger VER 2.55 0.00 0.01 0.00 ind:fut:1s; +téléchargerons télécharger VER 2.55 0.00 0.01 0.00 ind:fut:1p; +téléchargez télécharger VER 2.55 0.00 0.11 0.00 imp:pre:2p;ind:pre:2p; +téléchargé télécharger VER m s 2.55 0.00 0.75 0.00 par:pas; +téléchargée télécharger VER f s 2.55 0.00 0.15 0.00 par:pas; +téléchargées télécharger VER f p 2.55 0.00 0.11 0.00 par:pas; +téléchargés télécharger VER m p 2.55 0.00 0.05 0.00 par:pas; +télécinéma télécinéma NOM m s 0.01 0.00 0.01 0.00 +télécommande télécommande NOM f s 4.37 0.27 4.02 0.27 +télécommander télécommander VER 0.69 0.20 0.06 0.00 inf; +télécommandes télécommande NOM f p 4.37 0.27 0.35 0.00 +télécommandé télécommander VER m s 0.69 0.20 0.24 0.00 par:pas; +télécommandée télécommander VER f s 0.69 0.20 0.10 0.07 par:pas; +télécommandées télécommander VER f p 0.69 0.20 0.08 0.00 par:pas; +télécommandés télécommander VER m p 0.69 0.20 0.05 0.14 par:pas; +télécommunication télécommunication NOM f s 0.94 0.20 0.53 0.07 +télécommunications télécommunication NOM f p 0.94 0.20 0.41 0.14 +télécoms télécom NOM f p 0.30 0.00 0.30 0.00 +téléconférence téléconférence NOM f s 0.41 0.00 0.41 0.00 +télécopieur télécopieur NOM m s 0.03 0.00 0.03 0.00 +télécran télécran NOM m s 0.05 0.00 0.03 0.00 +télécrans télécran NOM m p 0.05 0.00 0.02 0.00 +télédiffuser télédiffuser VER 0.03 0.00 0.03 0.00 inf; +télédiffusion télédiffusion NOM f s 0.01 0.00 0.01 0.00 +téléfax téléfax NOM m 0.01 0.07 0.01 0.07 +téléfaxe téléfaxer VER 0.02 0.00 0.01 0.00 ind:pre:1s; +téléfaxez téléfaxer VER 0.02 0.00 0.01 0.00 ind:pre:2p; +téléfilm téléfilm NOM m s 0.50 0.00 0.45 0.00 +téléfilms téléfilm NOM m p 0.50 0.00 0.04 0.00 +téléfériques téléférique NOM m p 0.00 0.07 0.00 0.07 +télégramme télégramme NOM m s 11.44 38.78 10.53 34.59 +télégrammes télégramme NOM m p 11.44 38.78 0.90 4.19 +télégraphe télégraphe NOM m s 1.66 0.81 1.53 0.68 +télégraphes télégraphe NOM m p 1.66 0.81 0.12 0.14 +télégraphia télégraphier VER 1.23 6.15 0.00 0.47 ind:pas:3s; +télégraphiai télégraphier VER 1.23 6.15 0.01 1.08 ind:pas:1s; +télégraphiait télégraphier VER 1.23 6.15 0.00 0.47 ind:imp:3s; +télégraphiant télégraphier VER 1.23 6.15 0.00 0.14 par:pre; +télégraphie télégraphie NOM f s 0.06 0.14 0.06 0.14 +télégraphient télégraphier VER 1.23 6.15 0.00 0.07 ind:pre:3p; +télégraphier télégraphier VER 1.23 6.15 0.21 0.74 inf; +télégraphierai télégraphier VER 1.23 6.15 0.03 0.14 ind:fut:1s; +télégraphierais télégraphier VER 1.23 6.15 0.00 0.07 cnd:pre:1s; +télégraphierait télégraphier VER 1.23 6.15 0.00 0.07 cnd:pre:3s; +télégraphiez télégraphier VER 1.23 6.15 0.17 0.07 imp:pre:2p; +télégraphiâmes télégraphier VER 1.23 6.15 0.00 0.07 ind:pas:1p; +télégraphions télégraphier VER 1.23 6.15 0.01 0.00 imp:pre:1p; +télégraphique télégraphique ADJ s 0.50 2.97 0.20 1.42 +télégraphiques télégraphique ADJ p 0.50 2.97 0.29 1.55 +télégraphiste télégraphiste NOM s 0.37 0.54 0.36 0.34 +télégraphistes télégraphiste NOM p 0.37 0.54 0.01 0.20 +télégraphié télégraphier VER m s 1.23 6.15 0.75 1.82 par:pas; +télégraphiée télégraphier VER f s 1.23 6.15 0.00 0.07 par:pas; +télégraphiées télégraphier VER f p 1.23 6.15 0.00 0.14 par:pas; +télégraphiés télégraphier VER m p 1.23 6.15 0.00 0.07 par:pas; +téléguidage téléguidage NOM m s 0.15 0.00 0.15 0.00 +téléguider téléguider VER 0.35 0.47 0.01 0.00 inf; +téléguidé téléguider VER m s 0.35 0.47 0.20 0.20 par:pas; +téléguidée téléguider VER f s 0.35 0.47 0.13 0.07 par:pas; +téléguidées téléguider VER f p 0.35 0.47 0.00 0.07 par:pas; +téléguidés téléguider VER m p 0.35 0.47 0.02 0.14 par:pas; +télégénie télégénie NOM f s 0.01 0.00 0.01 0.00 +télégénique télégénique ADJ s 0.02 0.00 0.02 0.00 +télékinésie télékinésie NOM f s 0.60 0.00 0.60 0.00 +télémark télémark NOM m s 0.00 0.07 0.00 0.07 +télémarketing télémarketing NOM m s 0.14 0.00 0.14 0.00 +télématique télématique ADJ s 0.01 0.07 0.01 0.07 +télémesure télémesure NOM f s 0.07 0.00 0.03 0.00 +télémesures télémesure NOM f p 0.07 0.00 0.04 0.00 +télémètre télémètre NOM m s 0.03 0.20 0.02 0.14 +télémètres télémètre NOM m p 0.03 0.20 0.01 0.07 +télémétrie télémétrie NOM f s 0.85 0.00 0.85 0.00 +télémétrique télémétrique ADJ s 0.16 0.00 0.08 0.00 +télémétriques télémétrique ADJ p 0.16 0.00 0.07 0.00 +téléobjectif téléobjectif NOM m s 0.72 0.54 0.62 0.27 +téléobjectifs téléobjectif NOM m p 0.72 0.54 0.10 0.27 +téléologique téléologique ADJ s 0.01 0.00 0.01 0.00 +télépathe télépathe NOM s 1.53 0.07 1.17 0.07 +télépathes télépathe NOM p 1.53 0.07 0.36 0.00 +télépathie télépathie NOM f s 1.94 0.47 1.94 0.47 +télépathique télépathique ADJ s 0.53 0.27 0.41 0.27 +télépathiquement télépathiquement ADV 0.01 0.00 0.01 0.00 +télépathiques télépathique ADJ p 0.53 0.27 0.13 0.00 +téléphona téléphoner VER 60.49 67.03 0.02 4.53 ind:pas:3s; +téléphonage téléphonage NOM m s 0.00 0.07 0.00 0.07 +téléphonai téléphoner VER 60.49 67.03 0.01 0.74 ind:pas:1s; +téléphonaient téléphoner VER 60.49 67.03 0.02 0.34 ind:imp:3p; +téléphonais téléphoner VER 60.49 67.03 0.63 0.34 ind:imp:1s;ind:imp:2s; +téléphonait téléphoner VER 60.49 67.03 0.87 3.31 ind:imp:3s; +téléphonant téléphoner VER 60.49 67.03 0.20 1.49 par:pre; +téléphone téléphone NOM m s 160.80 96.82 155.68 93.99 +téléphonent téléphoner VER 60.49 67.03 0.36 0.61 ind:pre:3p; +téléphoner téléphoner VER 60.49 67.03 20.22 19.73 inf; +téléphonera téléphoner VER 60.49 67.03 0.61 0.68 ind:fut:3s; +téléphonerai téléphoner VER 60.49 67.03 2.07 1.35 ind:fut:1s; +téléphoneraient téléphoner VER 60.49 67.03 0.01 0.07 cnd:pre:3p; +téléphonerais téléphoner VER 60.49 67.03 0.12 0.27 cnd:pre:1s;cnd:pre:2s; +téléphonerait téléphoner VER 60.49 67.03 0.06 1.42 cnd:pre:3s; +téléphoneras téléphoner VER 60.49 67.03 0.17 0.14 ind:fut:2s; +téléphonerez téléphoner VER 60.49 67.03 0.27 0.20 ind:fut:2p; +téléphoneriez téléphoner VER 60.49 67.03 0.00 0.07 cnd:pre:2p; +téléphonerons téléphoner VER 60.49 67.03 0.03 0.07 ind:fut:1p; +téléphoneront téléphoner VER 60.49 67.03 0.14 0.07 ind:fut:3p; +téléphones téléphone NOM m p 160.80 96.82 5.12 2.84 +téléphonez téléphoner VER 60.49 67.03 2.26 1.69 imp:pre:2p;ind:pre:2p; +téléphonie téléphonie NOM f s 0.22 0.07 0.22 0.07 +téléphoniez téléphoner VER 60.49 67.03 0.05 0.14 ind:imp:2p; +téléphonions téléphoner VER 60.49 67.03 0.00 0.07 ind:imp:1p; +téléphonique téléphonique ADJ s 9.23 10.88 6.03 7.70 +téléphoniquement téléphoniquement ADV 0.14 0.07 0.14 0.07 +téléphoniques téléphonique ADJ p 9.23 10.88 3.20 3.18 +téléphoniste téléphoniste NOM s 0.27 1.22 0.10 0.68 +téléphonistes téléphoniste NOM p 0.27 1.22 0.17 0.54 +téléphonons téléphoner VER 60.49 67.03 0.05 0.00 imp:pre:1p;ind:pre:1p; +téléphonât téléphoner VER 60.49 67.03 0.00 0.07 sub:imp:3s; +téléphoné téléphoner VER m s 60.49 67.03 20.80 18.11 par:pas; +téléphonée téléphoné ADJ f s 0.21 0.54 0.01 0.00 +téléphonées téléphoné ADJ f p 0.21 0.54 0.00 0.07 +téléphonés téléphoner VER m p 60.49 67.03 0.01 0.07 par:pas; +téléphérique téléphérique NOM m s 0.36 0.54 0.36 0.54 +téléport téléport NOM m s 0.01 0.00 0.01 0.00 +téléportation téléportation NOM f s 1.00 0.00 1.00 0.00 +téléprompteur téléprompteur NOM m s 0.08 0.00 0.08 0.00 +téléreportage téléreportage NOM m s 0.01 0.00 0.01 0.00 +téléroman téléroman NOM m s 0.05 0.00 0.05 0.00 +télés télé NOM f p 106.42 26.15 2.06 0.88 +téléscripteur téléscripteur NOM m s 0.05 1.08 0.04 0.14 +téléscripteurs téléscripteur NOM m p 0.05 1.08 0.01 0.95 +télésiège télésiège NOM m s 1.18 0.00 1.04 0.00 +télésièges télésiège NOM m p 1.18 0.00 0.14 0.00 +téléski téléski NOM m s 0.02 0.00 0.02 0.00 +téléspectateur téléspectateur NOM m s 2.18 0.47 0.13 0.14 +téléspectateurs téléspectateur NOM m p 2.18 0.47 2.03 0.27 +téléspectatrice téléspectateur NOM f s 2.18 0.47 0.03 0.00 +téléspectatrices téléspectatrice NOM f p 0.01 0.00 0.01 0.00 +télésurveillance télésurveillance NOM f s 0.01 0.00 0.01 0.00 +télétexte télétexte NOM m s 0.10 0.00 0.10 0.00 +télétravail télétravail NOM m s 0.01 0.00 0.01 0.00 +télétravailleuse télétravailleur NOM f s 0.01 0.00 0.01 0.00 +télétype télétype NOM m s 0.10 0.07 0.08 0.00 +télétypes télétype NOM m p 0.10 0.07 0.02 0.07 +télévangéliste télévangéliste NOM s 0.06 0.00 0.05 0.00 +télévangélistes télévangéliste NOM p 0.06 0.00 0.01 0.00 +télévendeur télévendeur NOM m s 0.01 0.00 0.01 0.00 +télévente télévente NOM f s 0.01 0.00 0.01 0.00 +télévise téléviser VER 0.37 1.42 0.01 0.47 ind:pre:1s;ind:pre:3s; +télévisera téléviser VER 0.37 1.42 0.00 0.14 ind:fut:3s; +télévises téléviser VER 0.37 1.42 0.00 0.20 ind:pre:2s; +téléviseur téléviseur NOM m s 2.43 1.01 1.74 0.95 +téléviseurs téléviseur NOM m p 2.43 1.01 0.69 0.07 +télévision télévision NOM f s 26.38 24.32 25.45 23.51 +télévisions télévision NOM f p 26.38 24.32 0.93 0.81 +télévisé télévisé ADJ m s 3.37 2.57 2.11 1.01 +télévisée télévisé ADJ f s 3.37 2.57 0.48 0.47 +télévisuel télévisuel ADJ m s 0.33 0.34 0.27 0.20 +télévisuelle télévisuel ADJ f s 0.33 0.34 0.05 0.07 +télévisuels télévisuel ADJ m p 0.33 0.34 0.00 0.07 +télévisées télévisé ADJ f p 3.37 2.57 0.14 0.74 +télévisés télévisé ADJ m p 3.37 2.57 0.64 0.34 +tumescence tumescence NOM f s 0.04 0.00 0.04 0.00 +tumescent tumescent ADJ m s 0.01 0.00 0.01 0.00 +tumeur tumeur NOM f s 7.96 1.89 6.70 1.28 +tumeurs tumeur NOM f p 7.96 1.89 1.27 0.61 +témoigna témoigner VER 24.29 25.68 0.02 0.54 ind:pas:3s; +témoignage témoignage NOM m s 16.12 19.73 12.28 10.95 +témoignages témoignage NOM m p 16.12 19.73 3.84 8.78 +témoignaient témoigner VER 24.29 25.68 0.02 2.91 ind:imp:3p; +témoignais témoigner VER 24.29 25.68 0.04 0.07 ind:imp:1s;ind:imp:2s; +témoignait témoigner VER 24.29 25.68 0.32 5.27 ind:imp:3s; +témoignant témoigner VER 24.29 25.68 0.20 1.35 par:pre; +témoigne témoigner VER 24.29 25.68 3.10 3.24 imp:pre:2s;ind:pre:1s;ind:pre:3s; +témoignent témoigner VER 24.29 25.68 0.81 1.35 ind:pre:3p; +témoigner témoigner VER 24.29 25.68 13.36 7.64 ind:pre:2p;inf; +témoignera témoigner VER 24.29 25.68 1.09 0.07 ind:fut:3s; +témoignerai témoigner VER 24.29 25.68 0.88 0.07 ind:fut:1s; +témoigneraient témoigner VER 24.29 25.68 0.00 0.07 cnd:pre:3p; +témoignerais témoigner VER 24.29 25.68 0.05 0.00 cnd:pre:1s;cnd:pre:2s; +témoignerait témoigner VER 24.29 25.68 0.13 0.07 cnd:pre:3s; +témoigneras témoigner VER 24.29 25.68 0.08 0.00 ind:fut:2s; +témoignerez témoigner VER 24.29 25.68 0.28 0.00 ind:fut:2p; +témoigneront témoigner VER 24.29 25.68 0.18 0.07 ind:fut:3p; +témoignes témoigner VER 24.29 25.68 0.29 0.07 ind:pre:2s; +témoignez témoigner VER 24.29 25.68 0.91 0.14 imp:pre:2p;ind:pre:2p; +témoigniez témoigner VER 24.29 25.68 0.11 0.00 ind:imp:2p; +témoignât témoigner VER 24.29 25.68 0.00 0.07 sub:imp:3s; +témoignèrent témoigner VER 24.29 25.68 0.00 0.27 ind:pas:3p; +témoigné témoigner VER m s 24.29 25.68 1.99 2.09 par:pas; +témoignée témoigner VER f s 24.29 25.68 0.31 0.20 par:pas; +témoignées témoigner VER f p 24.29 25.68 0.01 0.07 par:pas; +témoignés témoigner VER m p 24.29 25.68 0.11 0.07 par:pas; +témoin_clé témoin_clé NOM m s 0.13 0.00 0.13 0.00 +témoin_vedette témoin_vedette NOM m s 0.01 0.00 0.01 0.00 +témoin témoin NOM m s 74.78 46.01 49.35 28.38 +témoins_clé témoins_clé NOM m p 0.05 0.00 0.05 0.00 +témoins témoin NOM m p 74.78 46.01 25.43 17.64 +tumorale tumoral ADJ f s 0.05 0.00 0.04 0.00 +tumoraux tumoral ADJ m p 0.05 0.00 0.01 0.00 +tuméfaction tuméfaction NOM f s 0.07 0.07 0.07 0.07 +tuméfie tuméfier VER 0.00 1.08 0.00 0.07 ind:pre:3s; +tuméfier tuméfier VER 0.00 1.08 0.00 0.07 inf; +tuméfié tuméfié ADJ m s 0.44 2.36 0.36 1.08 +tuméfiée tuméfié ADJ f s 0.44 2.36 0.04 0.88 +tuméfiées tuméfié ADJ f p 0.44 2.36 0.02 0.34 +tuméfiés tuméfié ADJ m p 0.44 2.36 0.03 0.07 +tumuli tumulus NOM m p 0.22 1.49 0.00 0.14 +tumulte tumulte NOM m s 1.19 13.11 1.07 12.09 +tumultes tumulte NOM m p 1.19 13.11 0.12 1.01 +tumultuaire tumultuaire ADJ s 0.00 0.07 0.00 0.07 +tumultueuse tumultueux ADJ f s 1.13 5.95 0.31 2.36 +tumultueusement tumultueusement ADV 0.02 0.14 0.02 0.14 +tumultueuses tumultueux ADJ f p 1.13 5.95 0.04 0.88 +tumultueux tumultueux ADJ m 1.13 5.95 0.78 2.70 +tumulus tumulus NOM m 0.22 1.49 0.22 1.35 +téméraire téméraire ADJ s 2.38 3.04 2.04 2.50 +témérairement témérairement ADV 0.00 0.27 0.00 0.27 +téméraires téméraire ADJ p 2.38 3.04 0.34 0.54 +témérité témérité NOM f s 0.87 1.35 0.87 1.22 +témérités témérité NOM f p 0.87 1.35 0.00 0.14 +ténacité ténacité NOM f s 0.89 2.30 0.89 2.30 +tune tune NOM f s 1.23 2.16 0.85 0.20 +tuner tuner NOM m s 0.06 0.07 0.06 0.07 +tunes tune NOM f p 1.23 2.16 0.38 1.96 +tungstène tungstène NOM m s 0.12 0.47 0.12 0.47 +ténia ténia NOM m s 0.11 0.68 0.08 0.68 +ténias ténia NOM m p 0.11 0.68 0.03 0.00 +tunique tunique NOM f s 1.32 10.27 1.07 8.04 +tuniques tunique NOM f p 1.32 10.27 0.25 2.23 +tunisien tunisien ADJ m s 0.30 3.51 0.15 1.28 +tunisienne tunisien ADJ f s 0.30 3.51 0.16 0.61 +tunisiennes tunisien ADJ f p 0.30 3.51 0.00 0.20 +tunisiens tunisien ADJ m p 0.30 3.51 0.00 1.42 +tunnel tunnel NOM m s 19.24 14.59 15.88 12.30 +tunnels tunnel NOM m p 19.24 14.59 3.36 2.30 +ténor ténor NOM m s 1.38 2.70 1.01 2.03 +ténors ténor NOM m p 1.38 2.70 0.36 0.68 +ténèbre ténèbre NOM f s 12.70 26.76 0.01 0.61 +ténèbres ténèbre NOM f p 12.70 26.76 12.68 26.15 +ténu ténu ADJ m s 0.40 5.95 0.30 2.84 +ténébreuse ténébreux ADJ f s 1.50 7.91 0.24 2.36 +ténébreuses ténébreux ADJ f p 1.50 7.91 0.15 0.88 +ténébreux ténébreux ADJ m 1.50 7.91 1.11 4.66 +ténébrionidé ténébrionidé NOM m s 0.00 0.07 0.00 0.07 +ténue ténu ADJ f s 0.40 5.95 0.08 1.76 +ténues ténu ADJ f p 0.40 5.95 0.01 0.61 +ténuité ténuité NOM f s 0.00 0.14 0.00 0.14 +ténus ténu ADJ m p 0.40 5.95 0.01 0.74 +tuons tuer VER 928.05 171.15 2.27 0.41 imp:pre:1p;ind:pre:1p; +tuât tuer VER 928.05 171.15 0.00 0.34 sub:imp:3s; +tuque tuque NOM f s 0.00 0.07 0.00 0.07 +téraoctets téraoctet NOM m p 0.01 0.00 0.01 0.00 +tératologique tératologique ADJ f s 0.00 0.34 0.00 0.27 +tératologiques tératologique ADJ f p 0.00 0.34 0.00 0.07 +tératome tératome NOM m s 0.05 0.00 0.05 0.00 +turban turban NOM m s 0.72 7.30 0.66 6.08 +turbans turban NOM m p 0.72 7.30 0.07 1.22 +turbin turbin NOM m s 0.41 4.19 0.41 3.92 +turbina turbiner VER 0.35 1.28 0.00 0.07 ind:pas:3s; +turbinaient turbiner VER 0.35 1.28 0.00 0.14 ind:imp:3p; +turbinait turbiner VER 0.35 1.28 0.00 0.07 ind:imp:3s; +turbine turbine NOM f s 1.02 1.28 0.51 1.08 +turbiner turbiner VER 0.35 1.28 0.16 0.47 inf; +turbines turbine NOM f p 1.02 1.28 0.51 0.20 +turbinez turbiner VER 0.35 1.28 0.00 0.07 ind:pre:2p; +turbins turbin NOM m p 0.41 4.19 0.00 0.27 +turbiné turbiner VER m s 0.35 1.28 0.01 0.20 par:pas; +turbo turbo NOM s 1.19 0.54 1.03 0.54 +turbocompresseur turbocompresseur NOM m s 0.14 0.00 0.01 0.00 +turbocompresseurs turbocompresseur NOM m p 0.14 0.00 0.14 0.00 +turbopropulseur turbopropulseur NOM m s 0.28 0.00 0.28 0.00 +turboréacteur turboréacteur NOM m s 0.01 0.00 0.01 0.00 +turbos turbo NOM p 1.19 0.54 0.15 0.00 +turbot turbot NOM m s 0.12 0.68 0.12 0.68 +turbotière turbotière NOM f s 0.01 0.07 0.01 0.00 +turbotières turbotière NOM f p 0.01 0.07 0.00 0.07 +turbé turbé NOM m s 0.00 0.34 0.00 0.27 +turbulence turbulence NOM f s 1.46 2.36 0.56 1.15 +turbulences turbulence NOM f p 1.46 2.36 0.89 1.22 +turbulent turbulent ADJ m s 1.49 3.04 0.61 1.49 +turbulente turbulent ADJ f s 1.49 3.04 0.69 0.68 +turbulentes turbulent ADJ f p 1.49 3.04 0.01 0.20 +turbulents turbulent ADJ m p 1.49 3.04 0.19 0.68 +turbés turbé NOM m p 0.00 0.34 0.00 0.07 +turc turc ADJ m s 4.25 10.54 2.12 4.26 +turco turco NOM m s 0.61 0.07 0.61 0.00 +turcoman turcoman ADJ m s 0.00 0.14 0.00 0.14 +turcomans turcoman NOM m p 0.00 0.34 0.00 0.27 +turcos turco NOM m p 0.61 0.07 0.00 0.07 +turcs turc ADJ m p 4.25 10.54 0.56 2.09 +turdus turdus NOM m 0.00 0.20 0.00 0.20 +turelure turelure NOM f s 0.00 0.07 0.00 0.07 +turent taire VER 154.47 139.80 0.20 6.62 ind:pas:3p; +turf turf NOM m s 0.43 1.82 0.43 1.76 +turfiste turfiste NOM s 0.08 0.47 0.03 0.14 +turfistes turfiste NOM p 0.08 0.47 0.05 0.34 +turfs turf NOM m p 0.43 1.82 0.00 0.07 +turgescence turgescence NOM f s 0.14 0.07 0.14 0.07 +turgescent turgescent ADJ m s 0.04 0.41 0.03 0.07 +turgescente turgescent ADJ f s 0.04 0.41 0.01 0.20 +turgescentes turgescent ADJ f p 0.04 0.41 0.00 0.07 +turgescents turgescent ADJ m p 0.04 0.41 0.00 0.07 +turgide turgide ADJ m s 0.04 0.00 0.04 0.00 +turgotine turgotine NOM f s 0.00 0.07 0.00 0.07 +turinois turinois ADJ m 0.21 0.07 0.20 0.00 +turinoise turinois ADJ f s 0.21 0.07 0.01 0.07 +turista turista NOM f s 0.06 0.54 0.05 0.00 +turistas turista NOM f p 0.06 0.54 0.01 0.54 +turkmènes turkmène ADJ m p 0.00 0.14 0.00 0.14 +turlu turlu NOM m s 0.01 0.34 0.01 0.34 +turlupinade turlupinade NOM f s 0.00 0.14 0.00 0.07 +turlupinades turlupinade NOM f p 0.00 0.14 0.00 0.07 +turlupinaient turlupiner VER 0.35 1.28 0.00 0.07 ind:imp:3p; +turlupinait turlupiner VER 0.35 1.28 0.02 0.47 ind:imp:3s; +turlupine turlupiner VER 0.35 1.28 0.30 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +turlupinent turlupiner VER 0.35 1.28 0.01 0.07 ind:pre:3p; +turlupiner turlupiner VER 0.35 1.28 0.01 0.14 inf; +turlupinera turlupiner VER 0.35 1.28 0.01 0.00 ind:fut:3s; +turlupins turlupin NOM m p 0.00 0.14 0.00 0.14 +turlupiné turlupiner VER m s 0.35 1.28 0.00 0.14 par:pas; +turlupinée turlupiner VER f s 0.35 1.28 0.00 0.14 par:pas; +turlutaines turlutaine NOM f p 0.00 0.07 0.00 0.07 +turlute turluter VER 0.25 0.27 0.05 0.07 ind:pre:1s;ind:pre:3s; +turlutent turluter VER 0.25 0.27 0.00 0.07 ind:pre:3p; +turluter turluter VER 0.25 0.27 0.00 0.07 inf; +turlutes turluter VER 0.25 0.27 0.20 0.07 ind:pre:2s; +turlutte turlutte NOM f s 0.26 0.20 0.26 0.20 +turlututu turlututu ONO 0.01 0.14 0.01 0.14 +turne turne NOM f s 0.56 1.96 0.56 1.76 +turnes turne NOM f p 0.56 1.96 0.00 0.20 +turnover turnover NOM m s 0.03 0.00 0.03 0.00 +turpides turpide ADJ f p 0.00 0.07 0.00 0.07 +turpitude turpitude NOM f s 0.54 2.36 0.18 0.41 +turpitudes turpitude NOM f p 0.54 2.36 0.35 1.96 +turque turc ADJ f s 4.25 10.54 1.33 2.70 +turquerie turquerie NOM f s 0.00 0.14 0.00 0.14 +turques turque NOM f p 0.32 0.00 0.32 0.00 +turquin turquin ADJ m s 0.00 0.14 0.00 0.14 +turquoise turquoise NOM f s 0.65 1.01 0.30 0.61 +turquoises turquoise NOM f p 0.65 1.01 0.35 0.41 +térébenthine térébenthine NOM f s 0.55 1.28 0.55 1.28 +térébinthe térébinthe NOM m s 0.01 0.20 0.01 0.14 +térébinthes térébinthe NOM m p 0.01 0.20 0.00 0.07 +térébrant térébrant ADJ m s 0.00 0.20 0.00 0.14 +térébrants térébrant ADJ m p 0.00 0.20 0.00 0.07 +tés té NOM m p 2.35 1.08 0.19 0.00 +tus taire VER m p 154.47 139.80 0.40 4.39 ind:pas:1s;par:pas;par:pas; +tussent taire VER 154.47 139.80 0.00 0.07 sub:imp:3p; +tussilage tussilage NOM m s 0.01 0.00 0.01 0.00 +tussor tussor NOM m s 0.01 1.69 0.01 1.69 +têt têt NOM m s 0.34 1.08 0.34 1.08 +tut taire VER 154.47 139.80 0.69 28.92 ind:pas:3s; +téta téter VER 1.71 5.88 0.01 0.14 ind:pas:3s; +tétaient téter VER 1.71 5.88 0.01 0.07 ind:imp:3p; +tétais téter VER 1.71 5.88 0.13 0.20 ind:imp:1s;ind:imp:2s; +tétait téter VER 1.71 5.88 0.06 0.34 ind:imp:3s; +tétanie tétanie NOM f s 0.15 0.07 0.15 0.07 +tétanique tétanique ADJ s 0.00 0.34 0.00 0.27 +tétaniques tétanique ADJ f p 0.00 0.34 0.00 0.07 +tétanisait tétaniser VER 0.42 1.08 0.00 0.14 ind:imp:3s; +tétanisant tétaniser VER 0.42 1.08 0.00 0.07 par:pre; +tétanisation tétanisation NOM f s 0.00 0.07 0.00 0.07 +tétanisent tétaniser VER 0.42 1.08 0.01 0.07 ind:pre:3p; +tétaniser tétaniser VER 0.42 1.08 0.00 0.07 inf; +tétanisé tétaniser VER m s 0.42 1.08 0.17 0.54 par:pas; +tétanisée tétaniser VER f s 0.42 1.08 0.25 0.20 par:pas; +tétanisées tétanisé ADJ f p 0.12 0.88 0.00 0.07 +tétanisés tétanisé ADJ m p 0.12 0.88 0.00 0.34 +tétanos tétanos NOM m 0.64 0.95 0.64 0.95 +tétant téter VER 1.71 5.88 0.10 0.54 par:pre; +têtard têtard NOM m s 0.86 1.89 0.68 0.34 +têtards têtard NOM m p 0.86 1.89 0.17 1.55 +tétasses téter VER 1.71 5.88 0.00 0.07 sub:imp:2s; +tête_bêche tête_bêche NOM m 0.03 0.47 0.03 0.47 +tête_de_mort tête_de_mort NOM f 0.01 0.41 0.01 0.41 +tête_de_nègre tête_de_nègre ADJ 0.00 0.20 0.00 0.20 +tête_à_queue tête_à_queue NOM m 0.00 0.20 0.00 0.20 +tête_à_tête tête_à_tête NOM m 0.00 5.95 0.00 5.95 +tête tête NOM f s 475.87 923.45 453.13 861.49 +tutelle tutelle NOM f s 2.00 2.43 2.00 2.43 +téter téter VER 1.71 5.88 0.43 2.03 inf; +tête_de_loup tête_de_loup NOM f p 0.00 0.27 0.00 0.27 +têtes tête NOM f p 475.87 923.45 22.74 61.96 +téteur téteur NOM m s 0.05 0.00 0.05 0.00 +tuteur tuteur NOM m s 4.60 2.36 3.28 2.03 +tuteurs tuteur NOM m p 4.60 2.36 0.46 0.27 +tuèrent tuer VER 928.05 171.15 0.41 0.41 ind:pas:3p; +tétiez téter VER 1.71 5.88 0.01 0.00 ind:imp:2p; +tétine tétine NOM f s 0.81 1.15 0.43 0.68 +tétines tétine NOM f p 0.81 1.15 0.38 0.47 +tétins tétin NOM m p 0.00 0.20 0.00 0.20 +têtière têtière NOM f s 0.00 0.27 0.00 0.14 +têtières têtière NOM f p 0.00 0.27 0.00 0.14 +tutoie tutoyer VER 6.25 10.07 1.25 2.36 imp:pre:2s;ind:pre:1s;ind:pre:3s; +tutoiement tutoiement NOM m s 0.38 1.89 0.38 1.82 +tutoiements tutoiement NOM m p 0.38 1.89 0.00 0.07 +tutoient tutoyer VER 6.25 10.07 0.13 0.41 ind:pre:3p; +tutoiera tutoyer VER 6.25 10.07 0.00 0.07 ind:fut:3s; +tutoierai tutoyer VER 6.25 10.07 0.00 0.07 ind:fut:1s; +tutoies tutoyer VER 6.25 10.07 0.41 0.14 ind:pre:2s; +téton téton NOM m s 4.59 1.76 1.21 0.47 +tétons téton NOM m p 4.59 1.76 3.39 1.28 +tutorat tutorat NOM m s 0.33 0.00 0.33 0.00 +tutorial tutorial ADJ m s 0.04 0.14 0.03 0.14 +tutoriaux tutorial ADJ m p 0.04 0.14 0.01 0.00 +tutoya tutoyer VER 6.25 10.07 0.00 0.34 ind:pas:3s; +tutoyaient tutoyer VER 6.25 10.07 0.00 0.41 ind:imp:3p; +tutoyais tutoyer VER 6.25 10.07 0.00 0.14 ind:imp:1s; +tutoyait tutoyer VER 6.25 10.07 0.37 1.76 ind:imp:3s; +tutoyant tutoyer VER 6.25 10.07 0.00 0.54 par:pre; +tutoyer tutoyer VER 6.25 10.07 3.05 2.84 inf; +tutoyeuses tutoyeur ADJ f p 0.00 0.07 0.00 0.07 +tutoyez tutoyer VER 6.25 10.07 0.55 0.07 imp:pre:2p;ind:pre:2p; +tutoyions tutoyer VER 6.25 10.07 0.00 0.07 ind:imp:1p; +tutoyons tutoyer VER 6.25 10.07 0.34 0.14 imp:pre:1p;ind:pre:1p; +tutoyât tutoyer VER 6.25 10.07 0.00 0.07 sub:imp:3s; +tutoyèrent tutoyer VER 6.25 10.07 0.00 0.07 ind:pas:3p; +tutoyé tutoyer VER m s 6.25 10.07 0.01 0.41 par:pas; +tutoyée tutoyer VER f s 6.25 10.07 0.14 0.07 par:pas; +tutoyés tutoyer VER m p 6.25 10.07 0.01 0.14 par:pas; +tétra tétra NOM m s 0.01 0.00 0.01 0.00 +tétrachlorure tétrachlorure NOM m s 0.04 0.07 0.04 0.07 +tétracycline tétracycline NOM f s 0.09 0.00 0.09 0.00 +tétradrachme tétradrachme NOM m s 0.00 0.07 0.00 0.07 +tétragones tétragone NOM f p 0.00 0.07 0.00 0.07 +tétragramme tétragramme NOM m s 0.01 0.07 0.00 0.07 +tétragrammes tétragramme NOM m p 0.01 0.07 0.01 0.00 +tétralogie tétralogie NOM f s 0.01 0.07 0.01 0.07 +tétramère tétramère ADJ m s 0.00 0.07 0.00 0.07 +tétramètre tétramètre NOM m s 0.03 0.00 0.03 0.00 +tétraplégie tétraplégie NOM f s 0.14 0.00 0.14 0.00 +tétraplégique tétraplégique ADJ s 0.44 0.00 0.44 0.00 +tétrarque tétrarque NOM m s 0.10 0.47 0.10 0.00 +tétrarques tétrarque NOM m p 0.10 0.47 0.00 0.47 +tétras tétras NOM m 0.16 0.00 0.16 0.00 +tutrice tuteur NOM f s 4.60 2.36 0.86 0.07 +tétrodotoxine tétrodotoxine NOM f s 0.02 0.00 0.02 0.00 +tétère téter NOM f s 0.00 0.14 0.00 0.14 +tétèrent téter VER 1.71 5.88 0.00 0.07 ind:pas:3p; +tutti_frutti tutti_frutti ADV 0.09 0.41 0.09 0.41 +tutti_quanti tutti_quanti ADV 0.15 0.20 0.15 0.20 +tété téter VER m s 1.71 5.88 0.29 0.61 par:pas; +têtu têtu ADJ m s 9.78 9.19 6.17 5.14 +tutu tutu NOM m s 0.92 3.51 0.83 2.77 +tétée tétée NOM f s 0.63 1.01 0.51 0.68 +têtue têtu ADJ f s 9.78 9.19 2.97 2.77 +tétées tétée NOM f p 0.63 1.01 0.11 0.34 +têtues têtu ADJ f p 9.78 9.19 0.09 0.34 +tutélaire tutélaire ADJ s 0.01 1.76 0.01 1.55 +tutélaires tutélaire ADJ p 0.01 1.76 0.00 0.20 +têtus têtu ADJ m p 9.78 9.19 0.55 0.95 +tutus tutu NOM m p 0.92 3.51 0.09 0.74 +tutute tutut NOM f s 0.00 0.34 0.00 0.34 +tué tuer VER m s 928.05 171.15 259.79 46.82 par:pas; +tuée tuer VER f s 928.05 171.15 39.56 5.88 par:pas; +tuées tuer VER f p 928.05 171.15 3.15 0.68 par:pas; +tués tuer VER m p 928.05 171.15 20.66 7.36 par:pas; +tévé tévé NOM f s 0.00 0.34 0.00 0.34 +tuyau tuyau NOM m s 26.73 20.61 17.51 11.96 +tuyautages tuyautage NOM m p 0.00 0.07 0.00 0.07 +tuyautait tuyauter VER 0.54 0.61 0.01 0.07 ind:imp:3s; +tuyautent tuyauter VER 0.54 0.61 0.03 0.00 ind:pre:3p; +tuyauter tuyauter VER 0.54 0.61 0.07 0.20 inf; +tuyautera tuyauter VER 0.54 0.61 0.02 0.00 ind:fut:3s; +tuyauterie tuyauterie NOM f s 1.11 1.69 1.10 0.68 +tuyauteries tuyauterie NOM f p 1.11 1.69 0.01 1.01 +tuyauteur tuyauteur NOM m s 0.00 0.27 0.00 0.14 +tuyauteurs tuyauteur NOM m p 0.00 0.27 0.00 0.14 +tuyauté tuyauter VER m s 0.54 0.61 0.17 0.14 par:pas; +tuyautée tuyauter VER f s 0.54 0.61 0.01 0.07 par:pas; +tuyautées tuyauter VER f p 0.54 0.61 0.00 0.07 par:pas; +tuyautés tuyauter VER m p 0.54 0.61 0.23 0.07 par:pas; +tuyaux tuyau NOM m p 26.73 20.61 9.22 8.65 +tuyère tuyère NOM f s 0.04 0.07 0.03 0.00 +tuyères tuyère NOM f p 0.04 0.07 0.01 0.07 +tézig tézig PRO:per s 0.00 0.07 0.00 0.07 +tézigue tézigue PRO:per s 0.00 0.34 0.00 0.34 +tweed tweed NOM m s 0.00 5.34 0.00 5.14 +tweeds tweed NOM m p 0.00 5.34 0.00 0.20 +twill twill NOM m s 0.00 0.14 0.00 0.14 +twin_set twin_set NOM m s 0.00 0.14 0.00 0.14 +twist twist NOM m s 0.00 0.74 0.00 0.68 +twistant twister VER 0.00 0.20 0.00 0.07 par:pre; +twister twister VER 0.00 0.20 0.00 0.07 inf; +twists twist NOM m p 0.00 0.74 0.00 0.07 +twistées twister VER f p 0.00 0.20 0.00 0.07 par:pas; +tympan tympan NOM m s 1.25 6.01 0.36 2.50 +tympanique tympanique ADJ s 0.01 0.00 0.01 0.00 +tympanon tympanon NOM m s 0.03 0.20 0.03 0.20 +tympans tympan NOM m p 1.25 6.01 0.89 3.51 +type type NOM m s 334.85 184.19 280.62 145.95 +typer typer VER 0.07 0.00 0.02 0.00 inf; +types type NOM m p 334.85 184.19 54.23 38.24 +typhique typhique ADJ s 0.00 0.14 0.00 0.07 +typhiques typhique ADJ m p 0.00 0.14 0.00 0.07 +typhoïde typhoïde NOM f s 0.36 1.01 0.36 1.01 +typhon typhon NOM m s 0.78 1.89 0.72 1.28 +typhons typhon NOM m p 0.78 1.89 0.06 0.61 +typhus typhus NOM m 1.74 1.76 1.74 1.76 +typique typique ADJ s 9.34 2.84 8.62 2.30 +typiquement typiquement ADV 1.86 1.96 1.86 1.96 +typiques typique ADJ p 9.34 2.84 0.72 0.54 +typo typo NOM m s 0.07 1.49 0.04 1.01 +typographe typographe NOM s 0.02 1.08 0.01 0.47 +typographes typographe NOM p 0.02 1.08 0.01 0.61 +typographie typographie NOM f s 0.34 0.47 0.34 0.47 +typographier typographier VER 0.00 0.07 0.00 0.07 inf; +typographique typographique ADJ f s 0.06 0.34 0.05 0.20 +typographiques typographique ADJ p 0.06 0.34 0.01 0.14 +typologie typologie NOM f s 0.10 0.20 0.10 0.20 +typomètre typomètre NOM m s 0.00 0.14 0.00 0.14 +typos typo NOM m p 0.07 1.49 0.02 0.47 +typé typer VER m s 0.07 0.00 0.03 0.00 par:pas; +typée typé ADJ f s 0.01 0.14 0.01 0.00 +typés typer VER m p 0.07 0.00 0.01 0.00 par:pas; +tyran tyran NOM m s 7.79 5.20 6.17 4.59 +tyranneau tyranneau NOM m s 0.01 0.14 0.00 0.14 +tyranneaux tyranneau NOM m p 0.01 0.14 0.01 0.00 +tyrannicide tyrannicide NOM s 0.01 0.14 0.00 0.07 +tyrannicides tyrannicide NOM p 0.01 0.14 0.01 0.07 +tyrannie tyrannie NOM f s 2.63 2.50 2.50 2.43 +tyrannies tyrannie NOM f p 2.63 2.50 0.14 0.07 +tyrannique tyrannique ADJ s 0.65 2.43 0.59 2.03 +tyranniquement tyranniquement ADV 0.14 0.14 0.14 0.14 +tyranniques tyrannique ADJ p 0.65 2.43 0.06 0.41 +tyrannisais tyranniser VER 0.25 0.95 0.00 0.07 ind:imp:1s; +tyrannisait tyranniser VER 0.25 0.95 0.02 0.20 ind:imp:3s; +tyrannisant tyranniser VER 0.25 0.95 0.01 0.07 par:pre; +tyrannise tyranniser VER 0.25 0.95 0.03 0.14 ind:pre:1s;ind:pre:3s; +tyrannisent tyranniser VER 0.25 0.95 0.11 0.00 ind:pre:3p; +tyranniser tyranniser VER 0.25 0.95 0.05 0.20 inf; +tyrannisèrent tyranniser VER 0.25 0.95 0.00 0.07 ind:pas:3p; +tyrannisé tyranniser VER m s 0.25 0.95 0.02 0.20 par:pas; +tyrannisée tyranniser VER f s 0.25 0.95 0.01 0.00 par:pas; +tyrannosaure tyrannosaure NOM m s 0.15 0.07 0.13 0.07 +tyrannosaures tyrannosaure NOM m p 0.15 0.07 0.02 0.00 +tyrans tyran NOM m p 7.79 5.20 1.62 0.61 +tyrienne tyrien ADJ f s 0.02 0.00 0.02 0.00 +tyrolien tyrolien ADJ m s 0.38 1.62 0.16 0.88 +tyrolienne tyrolien ADJ f s 0.38 1.62 0.08 0.27 +tyroliennes tyrolien ADJ f p 0.38 1.62 0.03 0.27 +tyroliens tyrolien NOM m p 0.13 0.20 0.12 0.07 +tyrrhénienne tyrrhénienne ADJ f s 0.20 0.27 0.20 0.27 +tzar tzar NOM m s 0.03 0.88 0.03 0.68 +tzarevitch tzarevitch NOM m s 0.00 0.07 0.00 0.07 +tzarine tzar NOM f s 0.03 0.88 0.00 0.14 +tzars tzar NOM m p 0.03 0.88 0.00 0.07 +tzigane tzigane ADJ s 0.89 1.76 0.78 1.08 +tziganes tzigane NOM p 1.49 0.61 1.10 0.54 +é é ADV 0.05 0.00 0.05 0.00 +u u NOM m 18.40 2.97 18.40 2.97 +ubac ubac NOM m s 0.00 0.14 0.00 0.14 +ébahi ébahir VER m s 0.46 1.96 0.16 0.61 par:pas; +ébahie ébahir VER f s 0.46 1.96 0.15 0.27 par:pas; +ébahies ébahi ADJ f p 0.27 3.18 0.01 0.27 +ébahir ébahir VER 0.46 1.96 0.02 0.07 inf; +ébahirons ébahir VER 0.46 1.96 0.01 0.00 ind:fut:1p; +ébahis ébahir VER m p 0.46 1.96 0.09 0.41 ind:pre:2s;par:pas; +ébahissait ébahir VER 0.46 1.96 0.00 0.34 ind:imp:3s; +ébahissant ébahir VER 0.46 1.96 0.00 0.07 par:pre; +ébahissement ébahissement NOM m s 0.00 1.15 0.00 1.15 +ébahissent ébahir VER 0.46 1.96 0.01 0.14 ind:pre:3p; +ébahissons ébahir VER 0.46 1.96 0.00 0.07 ind:pre:1p; +ébahit ébahir VER 0.46 1.96 0.02 0.00 ind:pre:3s; +ébarbage ébarbage NOM m s 0.00 0.07 0.00 0.07 +ébarbait ébarber VER 0.00 0.20 0.00 0.07 ind:imp:3s; +ébarber ébarber VER 0.00 0.20 0.00 0.07 inf; +ébarbé ébarber VER m s 0.00 0.20 0.00 0.07 par:pas; +ébat ébattre VER 0.10 3.18 0.01 0.07 ind:pre:3s; +ébats ébat NOM m p 0.41 2.30 0.41 2.30 +ébattît ébattre VER 0.10 3.18 0.00 0.07 sub:imp:3s; +ébattaient ébattre VER 0.10 3.18 0.00 0.74 ind:imp:3p; +ébattait ébattre VER 0.10 3.18 0.02 0.41 ind:imp:3s; +ébattant ébattre VER 0.10 3.18 0.01 0.20 par:pre; +ébattements ébattement NOM m p 0.00 0.07 0.00 0.07 +ébattent ébattre VER 0.10 3.18 0.01 0.20 ind:pre:3p; +ébattit ébattre VER 0.10 3.18 0.00 0.07 ind:pas:3s; +ébattons ébattre VER 0.10 3.18 0.00 0.07 ind:pre:1p; +ébattre ébattre VER 0.10 3.18 0.05 1.35 inf; +ébaubi ébaubir VER m s 0.00 0.41 0.00 0.14 par:pas; +ébaubie ébaubir VER f s 0.00 0.41 0.00 0.07 par:pas; +ébaubis ébaubir VER m p 0.00 0.41 0.00 0.14 par:pas; +ébaubissaient ébaubir VER 0.00 0.41 0.00 0.07 ind:imp:3p; +ébaucha ébaucher VER 0.05 7.97 0.00 2.36 ind:pas:3s; +ébauchai ébaucher VER 0.05 7.97 0.00 0.14 ind:pas:1s; +ébauchaient ébaucher VER 0.05 7.97 0.00 0.34 ind:imp:3p; +ébauchais ébaucher VER 0.05 7.97 0.00 0.20 ind:imp:1s; +ébauchait ébaucher VER 0.05 7.97 0.00 0.88 ind:imp:3s; +ébauchant ébaucher VER 0.05 7.97 0.00 0.68 par:pre; +ébauche ébauche NOM f s 1.33 5.47 1.17 4.46 +ébauchent ébaucher VER 0.05 7.97 0.00 0.34 ind:pre:3p; +ébaucher ébaucher VER 0.05 7.97 0.03 1.15 inf; +ébauches ébauche NOM f p 1.33 5.47 0.16 1.01 +ébaucheurs ébaucheur NOM m p 0.00 0.07 0.00 0.07 +ébauchons ébaucher VER 0.05 7.97 0.01 0.00 ind:pre:1p; +ébauchât ébaucher VER 0.05 7.97 0.00 0.07 sub:imp:3s; +ébauchèrent ébaucher VER 0.05 7.97 0.00 0.27 ind:pas:3p; +ébauché ébauché ADJ m s 0.14 1.69 0.00 0.74 +ébauchée ébaucher VER f s 0.05 7.97 0.00 0.34 par:pas; +ébauchées ébauché ADJ f p 0.14 1.69 0.00 0.34 +ébauchés ébauché ADJ m p 0.14 1.69 0.14 0.34 +ébaudi ébaudir VER m s 0.00 0.07 0.00 0.07 par:pas; +éberlua éberluer VER 0.02 1.89 0.00 0.07 ind:pas:3s; +éberluait éberluer VER 0.02 1.89 0.00 0.14 ind:imp:3s; +éberlue éberluer VER 0.02 1.89 0.00 0.07 ind:pre:3s; +éberluer éberluer VER 0.02 1.89 0.01 0.07 inf; +éberlué éberlué ADJ m s 0.01 2.70 0.01 1.28 +éberluée éberluer VER f s 0.02 1.89 0.01 0.27 par:pas; +éberluées éberlué ADJ f p 0.01 2.70 0.00 0.14 +éberlués éberlué ADJ m p 0.01 2.70 0.00 0.61 +ubique ubique ADJ s 0.00 0.07 0.00 0.07 +ubiquiste ubiquiste NOM s 0.01 0.27 0.01 0.27 +ubiquitaire ubiquitaire ADJ m s 0.00 0.14 0.00 0.14 +ubiquité ubiquité NOM f s 0.04 1.82 0.04 1.82 +ébloui éblouir VER m s 3.88 19.73 0.65 5.68 par:pas; +éblouie éblouir VER f s 3.88 19.73 0.28 2.09 par:pas; +éblouies éblouir VER f p 3.88 19.73 0.03 0.20 par:pas; +éblouir éblouir VER 3.88 19.73 0.92 2.30 inf; +éblouira éblouir VER 3.88 19.73 0.03 0.07 ind:fut:3s; +éblouirai éblouir VER 3.88 19.73 0.10 0.07 ind:fut:1s; +éblouirait éblouir VER 3.88 19.73 0.00 0.14 cnd:pre:3s; +éblouirent éblouir VER 3.88 19.73 0.00 0.14 ind:pas:3p; +éblouirez éblouir VER 3.88 19.73 0.00 0.07 ind:fut:2p; +éblouis éblouir VER m p 3.88 19.73 0.65 1.82 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +éblouissaient éblouir VER 3.88 19.73 0.00 0.54 ind:imp:3p; +éblouissait éblouir VER 3.88 19.73 0.12 1.82 ind:imp:3s; +éblouissant éblouissant ADJ m s 2.07 13.24 0.65 3.04 +éblouissante éblouissant ADJ f s 2.07 13.24 1.00 6.28 +éblouissantes éblouissant ADJ f p 2.07 13.24 0.14 2.36 +éblouissants éblouissant ADJ m p 2.07 13.24 0.27 1.55 +éblouisse éblouir VER 3.88 19.73 0.04 0.07 sub:pre:3s; +éblouissement éblouissement NOM m s 0.29 5.95 0.29 5.14 +éblouissements éblouissement NOM m p 0.29 5.95 0.00 0.81 +éblouissent éblouir VER 3.88 19.73 0.27 1.01 ind:pre:3p; +éblouisses éblouir VER 3.88 19.73 0.00 0.07 sub:pre:2s; +éblouissez éblouir VER 3.88 19.73 0.03 0.07 imp:pre:2p;ind:pre:2p; +éblouissions éblouir VER 3.88 19.73 0.00 0.07 ind:imp:1p; +éblouit éblouir VER 3.88 19.73 0.58 2.57 ind:pre:3s;ind:pas:3s; +ébonite ébonite NOM f s 0.00 0.88 0.00 0.88 +éborgna éborgner VER 0.47 0.54 0.00 0.07 ind:pas:3s; +éborgne éborgner VER 0.47 0.54 0.02 0.14 ind:pre:1s;ind:pre:3s; +éborgner éborgner VER 0.47 0.54 0.41 0.20 inf; +éborgné éborgner VER m s 0.47 0.54 0.04 0.14 par:pas; +éboueur éboueur NOM m s 1.93 2.70 0.97 0.61 +éboueurs éboueur NOM m p 1.93 2.70 0.96 2.09 +ébouillanta ébouillanter VER 0.58 0.61 0.14 0.00 ind:pas:3s; +ébouillante ébouillanter VER 0.58 0.61 0.05 0.14 ind:pre:1s;ind:pre:3s; +ébouillanter ébouillanter VER 0.58 0.61 0.16 0.20 inf; +ébouillanté ébouillanter VER m s 0.58 0.61 0.22 0.14 par:pas; +ébouillantée ébouillanté ADJ f s 0.15 0.47 0.14 0.07 +ébouillantées ébouillanté ADJ f p 0.15 0.47 0.01 0.07 +ébouillantés ébouillanté ADJ m p 0.15 0.47 0.00 0.20 +éboula ébouler VER 0.03 1.82 0.00 0.07 ind:pas:3s; +éboulaient ébouler VER 0.03 1.82 0.00 0.14 ind:imp:3p; +éboulait ébouler VER 0.03 1.82 0.00 0.14 ind:imp:3s; +éboulant ébouler VER 0.03 1.82 0.00 0.14 par:pre; +éboule ébouler VER 0.03 1.82 0.00 0.41 ind:pre:3s; +éboulement éboulement NOM m s 0.54 2.36 0.48 1.49 +éboulements éboulement NOM m p 0.54 2.36 0.06 0.88 +éboulent ébouler VER 0.03 1.82 0.00 0.07 ind:pre:3p; +ébouler ébouler VER 0.03 1.82 0.01 0.07 inf; +ébouleuses ébouleux ADJ f p 0.00 0.07 0.00 0.07 +éboulis éboulis NOM m 0.16 3.99 0.16 3.99 +éboulèrent ébouler VER 0.03 1.82 0.00 0.07 ind:pas:3p; +éboulé ébouler VER m s 0.03 1.82 0.01 0.14 par:pas; +éboulée ébouler VER f s 0.03 1.82 0.00 0.20 par:pas; +éboulées ébouler VER f p 0.03 1.82 0.00 0.20 par:pas; +éboulés ébouler VER m p 0.03 1.82 0.01 0.20 par:pas; +ébouriffa ébouriffer VER 0.08 2.97 0.00 0.74 ind:pas:3s; +ébouriffaient ébouriffer VER 0.08 2.97 0.00 0.14 ind:imp:3p; +ébouriffait ébouriffer VER 0.08 2.97 0.01 0.41 ind:imp:3s; +ébouriffant ébouriffant ADJ m s 0.03 0.07 0.01 0.07 +ébouriffante ébouriffant ADJ f s 0.03 0.07 0.02 0.00 +ébouriffe ébouriffer VER 0.08 2.97 0.02 0.14 imp:pre:2s;ind:pre:3s; +ébouriffent ébouriffer VER 0.08 2.97 0.00 0.20 ind:pre:3p; +ébouriffer ébouriffer VER 0.08 2.97 0.00 0.20 inf; +ébouriffé ébouriffé ADJ m s 0.22 3.45 0.05 1.01 +ébouriffée ébouriffé ADJ f s 0.22 3.45 0.12 0.74 +ébouriffées ébouriffé ADJ f p 0.22 3.45 0.00 0.20 +ébouriffés ébouriffé ADJ m p 0.22 3.45 0.05 1.49 +ébouser ébouser VER 0.00 0.07 0.00 0.07 inf; +éboué ébouer VER m s 0.00 1.82 0.00 1.82 par:pas; +ébouzer ébouzer VER 0.00 0.14 0.00 0.07 inf; +ébouzé ébouzer VER m s 0.00 0.14 0.00 0.07 par:pas; +ébrancha ébrancher VER 0.00 0.68 0.00 0.14 ind:pas:3s; +ébranchait ébrancher VER 0.00 0.68 0.00 0.14 ind:imp:3s; +ébranchant ébrancher VER 0.00 0.68 0.00 0.07 par:pre; +ébranchement ébranchement NOM m s 0.00 0.07 0.00 0.07 +ébrancher ébrancher VER 0.00 0.68 0.00 0.14 inf; +ébrancherez ébrancher VER 0.00 0.68 0.00 0.07 ind:fut:2p; +ébranché ébranché ADJ m s 0.00 0.07 0.00 0.07 +ébranchés ébrancher VER m p 0.00 0.68 0.00 0.14 par:pas; +ébranla ébranler VER 3.37 23.45 0.15 3.85 ind:pas:3s; +ébranlaient ébranler VER 3.37 23.45 0.00 0.95 ind:imp:3p; +ébranlait ébranler VER 3.37 23.45 0.01 2.70 ind:imp:3s; +ébranlant ébranler VER 3.37 23.45 0.00 0.74 par:pre; +ébranle ébranler VER 3.37 23.45 0.22 2.97 imp:pre:2s;ind:pre:3s; +ébranlement ébranlement NOM m s 0.01 1.55 0.01 1.08 +ébranlements ébranlement NOM m p 0.01 1.55 0.00 0.47 +ébranlent ébranler VER 3.37 23.45 0.03 1.08 ind:pre:3p; +ébranler ébranler VER 3.37 23.45 1.35 3.78 inf; +ébranlera ébranler VER 3.37 23.45 0.03 0.07 ind:fut:3s; +ébranlerai ébranler VER 3.37 23.45 0.01 0.00 ind:fut:1s; +ébranleraient ébranler VER 3.37 23.45 0.01 0.07 cnd:pre:3p; +ébranlerais ébranler VER 3.37 23.45 0.00 0.07 cnd:pre:1s; +ébranlerait ébranler VER 3.37 23.45 0.00 0.07 cnd:pre:3s; +ébranlât ébranler VER 3.37 23.45 0.00 0.14 sub:imp:3s; +ébranlèrent ébranler VER 3.37 23.45 0.00 0.61 ind:pas:3p; +ébranlé ébranler VER m s 3.37 23.45 0.89 3.51 par:pas; +ébranlée ébranler VER f s 3.37 23.45 0.59 2.03 par:pas; +ébranlées ébranler VER f p 3.37 23.45 0.01 0.20 par:pas; +ébranlés ébranler VER m p 3.37 23.45 0.06 0.61 par:pas; +ébriété ébriété NOM f s 0.73 1.15 0.73 1.15 +ébroua ébrouer VER 0.01 8.11 0.00 1.76 ind:pas:3s; +ébrouaient ébrouer VER 0.01 8.11 0.00 0.27 ind:imp:3p; +ébrouais ébrouer VER 0.01 8.11 0.00 0.07 ind:imp:1s; +ébrouait ébrouer VER 0.01 8.11 0.00 1.55 ind:imp:3s; +ébrouant ébrouer VER 0.01 8.11 0.00 1.22 par:pre; +ébroue ébrouer VER 0.01 8.11 0.00 1.35 ind:pre:1s;ind:pre:3s; +ébrouement ébrouement NOM m s 0.00 0.14 0.00 0.14 +ébrouent ébrouer VER 0.01 8.11 0.00 0.61 ind:pre:3p; +ébrouer ébrouer VER 0.01 8.11 0.01 0.95 inf; +ébrouèrent ébrouer VER 0.01 8.11 0.00 0.14 ind:pas:3p; +ébroué ébrouer VER m s 0.01 8.11 0.00 0.20 par:pas; +ébrèche ébrécher VER 0.74 0.95 0.03 0.07 ind:pre:3s; +ébréchaient ébrécher VER 0.74 0.95 0.00 0.07 ind:imp:3p; +ébrécher ébrécher VER 0.74 0.95 0.00 0.14 inf; +ébréché ébrécher VER m s 0.74 0.95 0.39 0.14 par:pas; +ébréchée ébrécher VER f s 0.74 0.95 0.32 0.27 par:pas; +ébréchées ébréché ADJ f p 0.37 3.65 0.14 0.61 +ébréchure ébréchure NOM f s 0.00 0.20 0.00 0.07 +ébréchures ébréchure NOM f p 0.00 0.20 0.00 0.14 +ébréchés ébréché ADJ m p 0.37 3.65 0.00 0.81 +ébruita ébruiter VER 1.32 1.22 0.00 0.07 ind:pas:3s; +ébruite ébruiter VER 1.32 1.22 0.58 0.27 imp:pre:2s;ind:pre:3s; +ébruitent ébruiter VER 1.32 1.22 0.02 0.00 ind:pre:3p; +ébruiter ébruiter VER 1.32 1.22 0.37 0.54 inf; +ébruitera ébruiter VER 1.32 1.22 0.01 0.00 ind:fut:3s; +ébruiterait ébruiter VER 1.32 1.22 0.02 0.00 cnd:pre:3s; +ébruitez ébruiter VER 1.32 1.22 0.22 0.07 imp:pre:2p;ind:pre:2p; +ébruitons ébruiter VER 1.32 1.22 0.05 0.00 imp:pre:1p;ind:pre:1p; +ébruitât ébruiter VER 1.32 1.22 0.00 0.07 sub:imp:3s; +ébruité ébruiter VER m s 1.32 1.22 0.03 0.00 par:pas; +ébruitée ébruiter VER f s 1.32 1.22 0.01 0.20 par:pas; +ébène ébène NOM f s 0.51 4.26 0.51 4.26 +ubuesque ubuesque ADJ f s 0.14 0.07 0.14 0.07 +ébullition ébullition NOM f s 0.79 1.35 0.79 1.35 +ébéniste ébéniste NOM s 0.24 1.55 0.11 1.35 +ébénisterie ébénisterie NOM f s 0.00 0.41 0.00 0.34 +ébénisteries ébénisterie NOM f p 0.00 0.41 0.00 0.07 +ébénistes ébéniste NOM p 0.24 1.55 0.13 0.20 +écaillage écaillage NOM m s 0.03 0.00 0.03 0.00 +écaillaient écailler VER 0.74 4.66 0.00 0.34 ind:imp:3p; +écaillait écailler VER 0.74 4.66 0.14 0.61 ind:imp:3s; +écaillant écailler VER 0.74 4.66 0.00 0.34 par:pre; +écaille écaille NOM f s 1.42 11.35 0.57 6.15 +écaillent écailler VER 0.74 4.66 0.01 0.20 ind:pre:3p; +écailler écailler VER 0.74 4.66 0.28 0.61 inf; +écaillera écailler VER 0.74 4.66 0.01 0.00 ind:fut:3s; +écaillerai écailler VER 0.74 4.66 0.00 0.07 ind:fut:1s; +écaillers écailler NOM m p 0.11 0.27 0.00 0.07 +écailles écaille NOM f p 1.42 11.35 0.84 5.20 +écailleur écailleur NOM m s 0.00 0.07 0.00 0.07 +écailleuse écailleux ADJ f s 0.00 0.74 0.00 0.34 +écailleuses écailleux ADJ f p 0.00 0.74 0.00 0.07 +écailleux écailleux ADJ m 0.00 0.74 0.00 0.34 +écaillère écailler NOM f s 0.11 0.27 0.01 0.00 +écaillé écailler VER m s 0.74 4.66 0.04 0.27 par:pas; +écaillée écailler VER f s 0.74 4.66 0.06 0.81 par:pas; +écaillées écaillé ADJ f p 0.07 2.97 0.03 0.41 +écaillure écaillure NOM f s 0.00 0.14 0.00 0.07 +écaillures écaillure NOM f p 0.00 0.14 0.00 0.07 +écaillés écaillé ADJ m p 0.07 2.97 0.01 0.27 +écalait écaler VER 0.00 0.14 0.00 0.07 ind:imp:3s; +écale écale NOM f s 0.02 0.07 0.00 0.07 +écaler écaler VER 0.00 0.14 0.00 0.07 inf; +écales écale NOM f p 0.02 0.07 0.02 0.00 +écarlate écarlate ADJ s 0.78 8.58 0.66 5.95 +écarlates écarlate ADJ p 0.78 8.58 0.12 2.64 +écarquilla écarquiller VER 0.76 8.85 0.00 0.95 ind:pas:3s; +écarquillai écarquiller VER 0.76 8.85 0.00 0.14 ind:pas:1s; +écarquillaient écarquiller VER 0.76 8.85 0.01 0.34 ind:imp:3p; +écarquillais écarquiller VER 0.76 8.85 0.10 0.07 ind:imp:1s; +écarquillait écarquiller VER 0.76 8.85 0.00 0.54 ind:imp:3s; +écarquillant écarquiller VER 0.76 8.85 0.00 0.95 par:pre; +écarquille écarquiller VER 0.76 8.85 0.11 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écarquillement écarquillement NOM m s 0.00 0.20 0.00 0.20 +écarquillent écarquiller VER 0.76 8.85 0.00 0.20 ind:pre:3p; +écarquiller écarquiller VER 0.76 8.85 0.00 0.41 inf; +écarquillez écarquiller VER 0.76 8.85 0.02 0.00 imp:pre:2p;ind:pre:2p; +écarquillions écarquiller VER 0.76 8.85 0.00 0.14 ind:imp:1p; +écarquillèrent écarquiller VER 0.76 8.85 0.10 0.07 ind:pas:3p; +écarquillé écarquiller VER m s 0.76 8.85 0.00 0.34 par:pas; +écarquillée écarquiller VER f s 0.76 8.85 0.00 0.07 par:pas; +écarquillées écarquiller VER f p 0.76 8.85 0.00 0.20 par:pas; +écarquillés écarquiller VER m p 0.76 8.85 0.41 3.24 par:pas; +écart écart NOM m s 14.71 34.53 14.36 32.30 +écarta écarter VER 24.83 92.36 0.51 13.72 ind:pas:3s; +écartai écarter VER 24.83 92.36 0.00 1.89 ind:pas:1s; +écartaient écarter VER 24.83 92.36 0.04 4.66 ind:imp:3p; +écartais écarter VER 24.83 92.36 0.06 0.68 ind:imp:1s;ind:imp:2s; +écartait écarter VER 24.83 92.36 0.51 7.23 ind:imp:3s; +écartant écarter VER 24.83 92.36 0.16 9.86 par:pre; +écarte écarter VER 24.83 92.36 5.95 13.45 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écartela écarteler VER 0.35 3.18 0.00 0.07 ind:pas:3s; +écartelaient écarteler VER 0.35 3.18 0.00 0.14 ind:imp:3p; +écartelait écarteler VER 0.35 3.18 0.00 0.20 ind:imp:3s; +écartelant écarteler VER 0.35 3.18 0.01 0.07 par:pre; +écarteler écarteler VER 0.35 3.18 0.06 0.34 inf; +écartelé écarteler VER m s 0.35 3.18 0.20 0.95 par:pas; +écartelée écarteler VER f s 0.35 3.18 0.02 0.20 par:pas; +écartelées écartelé ADJ f p 0.19 1.96 0.14 0.47 +écartelés écartelé ADJ m p 0.19 1.96 0.01 0.27 +écartement écartement NOM m s 0.05 0.47 0.05 0.41 +écartements écartement NOM m p 0.05 0.47 0.00 0.07 +écartent écarter VER 24.83 92.36 0.26 3.78 ind:pre:3p; +écarter écarter VER 24.83 92.36 4.77 16.89 ind:pre:2p;inf; +écartera écarter VER 24.83 92.36 0.05 0.14 ind:fut:3s; +écarteraient écarter VER 24.83 92.36 0.00 0.07 cnd:pre:3p; +écarterait écarter VER 24.83 92.36 0.04 0.07 cnd:pre:3s; +écarteras écarter VER 24.83 92.36 0.12 0.00 ind:fut:2s; +écarterez écarter VER 24.83 92.36 0.01 0.00 ind:fut:2p; +écarteront écarter VER 24.83 92.36 0.01 0.07 ind:fut:3p; +écartes écarter VER 24.83 92.36 0.72 0.20 ind:pre:2s; +écarteur écarteur NOM m s 0.27 0.00 0.27 0.00 +écartez écarter VER 24.83 92.36 6.30 1.01 imp:pre:2p;ind:pre:2p; +écartions écarter VER 24.83 92.36 0.02 0.14 ind:imp:1p; +écartâmes écarter VER 24.83 92.36 0.00 0.07 ind:pas:1p; +écartons écarter VER 24.83 92.36 0.32 0.14 imp:pre:1p;ind:pre:1p; +écartât écarter VER 24.83 92.36 0.00 0.41 sub:imp:3s; +écarts écart NOM m p 14.71 34.53 0.35 2.23 +écartèle écarteler VER 0.35 3.18 0.05 0.47 ind:pre:1s;ind:pre:3s; +écartèlement écartèlement NOM m s 0.03 0.34 0.02 0.27 +écartèlements écartèlement NOM m p 0.03 0.34 0.01 0.07 +écartèlent écarteler VER 0.35 3.18 0.00 0.27 ind:pre:3p; +écartèleront écarteler VER 0.35 3.18 0.01 0.00 ind:fut:3p; +écartèrent écarter VER 24.83 92.36 0.12 2.43 ind:pas:3p; +écarté écarter VER m s 24.83 92.36 2.69 8.04 par:pas; +écartée écarter VER f s 24.83 92.36 0.88 1.89 par:pas; +écartées écarté ADJ f p 3.36 16.76 1.57 8.85 +écartés écarter VER m p 24.83 92.36 1.10 3.11 par:pas; +écervelé écervelé ADJ m s 0.81 0.61 0.46 0.14 +écervelée écervelé NOM f s 0.91 0.88 0.34 0.27 +écervelées écervelé NOM f p 0.91 0.88 0.17 0.07 +écervelés écervelé ADJ m p 0.81 0.61 0.17 0.14 +échût échoir VER 0.86 2.16 0.00 0.14 sub:imp:3s; +échafaud échafaud NOM m s 0.85 2.43 0.85 2.23 +échafauda échafauder VER 0.44 3.24 0.00 0.07 ind:pas:3s; +échafaudage échafaudage NOM m s 0.86 6.42 0.70 3.78 +échafaudages échafaudage NOM m p 0.86 6.42 0.15 2.64 +échafaudaient échafauder VER 0.44 3.24 0.01 0.20 ind:imp:3p; +échafaudais échafauder VER 0.44 3.24 0.00 0.14 ind:imp:1s; +échafaudait échafauder VER 0.44 3.24 0.00 0.74 ind:imp:3s; +échafaudant échafauder VER 0.44 3.24 0.14 0.41 par:pre; +échafaude échafauder VER 0.44 3.24 0.02 0.20 ind:pre:3s; +échafaudent échafauder VER 0.44 3.24 0.00 0.14 ind:pre:3p; +échafauder échafauder VER 0.44 3.24 0.17 0.54 inf; +échafaudons échafauder VER 0.44 3.24 0.00 0.07 ind:pre:1p; +échafauds échafaud NOM m p 0.85 2.43 0.00 0.20 +échafaudèrent échafauder VER 0.44 3.24 0.00 0.07 ind:pas:3p; +échafaudé échafauder VER m s 0.44 3.24 0.09 0.27 par:pas; +échafaudées échafauder VER f p 0.44 3.24 0.01 0.14 par:pas; +échafaudés échafauder VER m p 0.44 3.24 0.00 0.27 par:pas; +échalas échalas NOM m 0.41 1.76 0.41 1.76 +échalier échalier NOM m s 0.02 0.20 0.02 0.00 +échaliers échalier NOM m p 0.02 0.20 0.00 0.20 +échalote échalote NOM f s 1.30 1.28 0.80 0.81 +échalotes échalote NOM f p 1.30 1.28 0.50 0.47 +échancraient échancrer VER 0.01 0.95 0.00 0.07 ind:imp:3p; +échancre échancrer VER 0.01 0.95 0.00 0.14 ind:pre:3s; +échancrer échancrer VER 0.01 0.95 0.00 0.20 inf; +échancré échancré ADJ m s 0.06 1.15 0.03 0.47 +échancrée échancré ADJ f s 0.06 1.15 0.02 0.27 +échancrées échancré ADJ f p 0.06 1.15 0.00 0.20 +échancrure échancrure NOM f s 0.00 3.31 0.00 3.04 +échancrures échancrure NOM f p 0.00 3.31 0.00 0.27 +échancrés échancré ADJ m p 0.06 1.15 0.01 0.20 +échange échange NOM m s 32.77 32.43 29.97 23.99 +échangea échanger VER 27.38 58.18 0.02 2.03 ind:pas:3s; +échangeables échangeable ADJ m p 0.01 0.07 0.01 0.07 +échangeai échanger VER 27.38 58.18 0.03 0.61 ind:pas:1s; +échangeaient échanger VER 27.38 58.18 0.07 5.41 ind:imp:3p; +échangeais échanger VER 27.38 58.18 0.06 0.34 ind:imp:1s;ind:imp:2s; +échangeait échanger VER 27.38 58.18 0.27 2.91 ind:imp:3s; +échangeant échanger VER 27.38 58.18 0.16 3.11 par:pre; +échangent échanger VER 27.38 58.18 0.81 3.72 ind:pre:3p; +échangeâmes échanger VER 27.38 58.18 0.02 1.49 ind:pas:1p; +échangeons échanger VER 27.38 58.18 0.17 0.68 imp:pre:1p;ind:pre:1p; +échanger échanger VER 27.38 58.18 9.86 12.03 inf; +échangera échanger VER 27.38 58.18 0.36 0.07 ind:fut:3s; +échangerai échanger VER 27.38 58.18 0.31 0.07 ind:fut:1s; +échangeraient échanger VER 27.38 58.18 0.04 0.20 cnd:pre:3p; +échangerais échanger VER 27.38 58.18 0.92 0.07 cnd:pre:1s;cnd:pre:2s; +échangerait échanger VER 27.38 58.18 0.25 0.41 cnd:pre:3s; +échangeras échanger VER 27.38 58.18 0.16 0.00 ind:fut:2s; +échangerez échanger VER 27.38 58.18 0.14 0.00 ind:fut:2p; +échangeriez échanger VER 27.38 58.18 0.06 0.00 cnd:pre:2p; +échangerions échanger VER 27.38 58.18 0.00 0.07 cnd:pre:1p; +échangerons échanger VER 27.38 58.18 0.09 0.07 ind:fut:1p; +échangeront échanger VER 27.38 58.18 0.06 0.07 ind:fut:3p; +échanges échange NOM m p 32.77 32.43 2.81 8.45 +échangeur échangeur NOM m s 0.30 0.47 0.30 0.20 +échangeurs échangeur NOM m p 0.30 0.47 0.00 0.27 +échangez échanger VER 27.38 58.18 0.44 0.27 imp:pre:2p;ind:pre:2p; +échangiez échanger VER 27.38 58.18 0.04 0.07 ind:imp:2p; +échangions échanger VER 27.38 58.18 0.19 1.35 ind:imp:1p; +échangisme échangisme NOM m s 0.16 0.00 0.16 0.00 +échangiste échangiste NOM s 0.29 0.07 0.14 0.00 +échangistes échangiste NOM p 0.29 0.07 0.16 0.07 +échangèrent échanger VER 27.38 58.18 0.02 5.27 ind:pas:3p; +échangé échanger VER m s 27.38 58.18 5.79 8.58 par:pas; +échangée échanger VER f s 27.38 58.18 0.41 0.41 par:pas; +échangées échanger VER f p 27.38 58.18 0.46 2.09 par:pas; +échangés échanger VER m p 27.38 58.18 0.81 3.65 par:pas; +échanson échanson NOM m s 0.00 0.34 0.00 0.27 +échansons échanson NOM m p 0.00 0.34 0.00 0.07 +échantillon échantillon NOM m s 16.87 6.96 10.36 2.43 +échantillonnage échantillonnage NOM m s 0.41 0.74 0.41 0.74 +échantillonne échantillonner VER 0.02 0.00 0.02 0.00 ind:pre:1s; +échantillons échantillon NOM m p 16.87 6.96 6.51 4.53 +échappa échapper VER 95.05 132.64 0.28 4.05 ind:pas:3s; +échappai échapper VER 95.05 132.64 0.12 0.14 ind:pas:1s; +échappaient échapper VER 95.05 132.64 0.48 6.96 ind:imp:3p; +échappais échapper VER 95.05 132.64 0.28 1.08 ind:imp:1s;ind:imp:2s; +échappait échapper VER 95.05 132.64 0.94 15.41 ind:imp:3s; +échappant échapper VER 95.05 132.64 0.29 3.78 par:pre; +échappatoire échappatoire NOM f s 1.96 0.95 1.46 0.61 +échappatoires échappatoire NOM f p 1.96 0.95 0.50 0.34 +échappe échapper VER 95.05 132.64 16.76 18.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +échappement échappement NOM m s 2.03 1.69 1.93 1.55 +échappements échappement NOM m p 2.03 1.69 0.10 0.14 +échappent échapper VER 95.05 132.64 3.84 6.69 ind:pre:3p;sub:pre:3p; +échapper échapper VER 95.05 132.64 39.70 48.04 inf; +échappera échapper VER 95.05 132.64 2.76 1.28 ind:fut:3s; +échapperai échapper VER 95.05 132.64 0.38 0.07 ind:fut:1s; +échapperaient échapper VER 95.05 132.64 0.02 0.41 cnd:pre:3p; +échapperais échapper VER 95.05 132.64 0.17 0.20 cnd:pre:1s;cnd:pre:2s; +échapperait échapper VER 95.05 132.64 0.28 1.96 cnd:pre:3s; +échapperas échapper VER 95.05 132.64 1.81 0.27 ind:fut:2s; +échapperez échapper VER 95.05 132.64 0.81 0.34 ind:fut:2p; +échapperiez échapper VER 95.05 132.64 0.02 0.00 cnd:pre:2p; +échapperions échapper VER 95.05 132.64 0.01 0.07 cnd:pre:1p; +échapperons échapper VER 95.05 132.64 0.05 0.07 ind:fut:1p; +échapperont échapper VER 95.05 132.64 0.14 0.27 ind:fut:3p; +échappes échapper VER 95.05 132.64 0.51 0.20 ind:pre:2s; +échappez échapper VER 95.05 132.64 0.13 0.14 imp:pre:2p;ind:pre:2p; +échappiez échapper VER 95.05 132.64 0.09 0.07 ind:imp:2p;sub:pre:2p; +échappions échapper VER 95.05 132.64 0.13 0.34 ind:imp:1p; +échappâmes échapper VER 95.05 132.64 0.00 0.07 ind:pas:1p; +échappons échapper VER 95.05 132.64 0.26 0.27 imp:pre:1p;ind:pre:1p; +échappât échapper VER 95.05 132.64 0.00 0.61 sub:imp:3s; +échappèrent échapper VER 95.05 132.64 0.05 1.15 ind:pas:3p; +échappé échapper VER m s 95.05 132.64 19.84 17.64 par:pas; +échappée échapper VER f s 95.05 132.64 2.17 1.08 par:pas; +échappées échapper VER f p 95.05 132.64 0.22 0.34 par:pas; +échappés échapper VER m p 95.05 132.64 2.50 1.01 par:pas; +écharde écharde NOM f s 0.62 2.91 0.37 1.42 +échardes écharde NOM f p 0.62 2.91 0.25 1.49 +écharnait écharner VER 0.00 0.27 0.00 0.07 ind:imp:3s; +écharner écharner VER 0.00 0.27 0.00 0.20 inf; +écharpe écharpe NOM f s 5.14 13.92 4.68 11.22 +écharpent écharper VER 0.07 1.08 0.01 0.00 ind:pre:3p; +écharper écharper VER 0.07 1.08 0.04 0.47 inf; +écharperaient écharper VER 0.07 1.08 0.00 0.07 cnd:pre:3p; +écharpes écharpe NOM f p 5.14 13.92 0.46 2.70 +écharpé écharper VER m s 0.07 1.08 0.00 0.07 par:pas; +écharpée écharper VER f s 0.07 1.08 0.00 0.20 par:pas; +échasse échasse NOM f s 0.42 1.15 0.04 0.00 +échasses échasse NOM f p 0.42 1.15 0.38 1.15 +échassier échassier NOM m s 0.02 3.51 0.01 2.57 +échassiers échassier NOM m p 0.02 3.51 0.01 0.95 +échassière échassier ADJ f s 0.00 0.61 0.00 0.20 +échassières échassier ADJ f p 0.00 0.61 0.00 0.41 +échauder échauder VER 0.05 0.34 0.00 0.07 inf; +échauderont échauder VER 0.05 0.34 0.00 0.07 ind:fut:3p; +échaudé échaudé ADJ m s 0.05 0.34 0.05 0.27 +échaudée échaudé ADJ f s 0.05 0.34 0.00 0.07 +échaudés échauder VER m p 0.05 0.34 0.04 0.00 par:pas; +échauffa échauffer VER 3.25 6.76 0.01 0.20 ind:pas:3s; +échauffaient échauffer VER 3.25 6.76 0.00 0.27 ind:imp:3p; +échauffais échauffer VER 3.25 6.76 0.04 0.20 ind:imp:1s; +échauffait échauffer VER 3.25 6.76 0.06 0.81 ind:imp:3s; +échauffant échauffer VER 3.25 6.76 0.02 0.27 par:pre; +échauffe échauffer VER 3.25 6.76 0.59 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +échauffement échauffement NOM m s 0.66 0.88 0.62 0.74 +échauffements échauffement NOM m p 0.66 0.88 0.04 0.14 +échauffent échauffer VER 3.25 6.76 0.11 0.27 ind:pre:3p;sub:pre:3p; +échauffer échauffer VER 3.25 6.76 1.39 0.88 inf; +échauffez échauffer VER 3.25 6.76 0.26 0.14 imp:pre:2p;ind:pre:2p; +échauffons échauffer VER 3.25 6.76 0.11 0.00 imp:pre:1p;ind:pre:1p; +échauffourée échauffourée NOM f s 0.32 1.35 0.08 0.95 +échauffourées échauffourée NOM f p 0.32 1.35 0.24 0.41 +échauffé échauffer VER m s 3.25 6.76 0.43 1.62 par:pas; +échauffée échauffer VER f s 3.25 6.76 0.17 0.61 par:pas; +échauffées échauffer VER f p 3.25 6.76 0.01 0.20 par:pas; +échauffés échauffer VER m p 3.25 6.76 0.06 0.41 par:pas; +échauguette échauguette NOM f s 0.00 0.27 0.00 0.07 +échauguettes échauguette NOM f p 0.00 0.27 0.00 0.20 +échec échec NOM m s 24.31 33.72 15.47 21.76 +échecs échec NOM m p 24.31 33.72 8.84 11.96 +échelle échelle NOM f s 14.09 31.76 13.46 28.04 +échelles échelle NOM f p 14.09 31.76 0.64 3.72 +échelon échelon NOM m s 1.48 6.08 0.77 2.91 +échelonnaient échelonner VER 0.13 1.49 0.00 0.14 ind:imp:3p; +échelonnait échelonner VER 0.13 1.49 0.00 0.07 ind:imp:3s; +échelonnant échelonner VER 0.13 1.49 0.00 0.20 par:pre; +échelonne échelonner VER 0.13 1.49 0.00 0.07 ind:pre:3s; +échelonnent échelonner VER 0.13 1.49 0.01 0.14 ind:pre:3p; +échelonner échelonner VER 0.13 1.49 0.04 0.20 inf; +échelonnerons échelonner VER 0.13 1.49 0.00 0.07 ind:fut:1p; +échelonné échelonner VER m s 0.13 1.49 0.07 0.07 par:pas; +échelonnée échelonner VER f s 0.13 1.49 0.00 0.07 par:pas; +échelonnées échelonner VER f p 0.13 1.49 0.01 0.14 par:pas; +échelonnés échelonner VER m p 0.13 1.49 0.01 0.34 par:pas; +échelons échelon NOM m p 1.48 6.08 0.71 3.18 +écher écher VER 0.01 0.00 0.01 0.00 inf; +écheveau écheveau NOM m s 0.17 3.72 0.15 2.64 +écheveaux écheveau NOM m p 0.17 3.72 0.02 1.08 +échevelait écheveler VER 0.03 1.42 0.00 0.27 ind:imp:3s; +échevelant écheveler VER 0.03 1.42 0.00 0.07 par:pre; +écheveler écheveler VER 0.03 1.42 0.00 0.07 inf; +échevellement échevellement NOM m s 0.00 0.07 0.00 0.07 +échevelé échevelé ADJ m s 0.03 3.65 0.01 0.74 +échevelée échevelé ADJ f s 0.03 3.65 0.01 2.09 +échevelées échevelé ADJ f p 0.03 3.65 0.00 0.34 +échevelés échevelé ADJ m p 0.03 3.65 0.01 0.47 +échevin échevin NOM m s 0.48 0.34 0.48 0.27 +échevins échevin NOM m p 0.48 0.34 0.00 0.07 +échina échiner VER 0.61 1.22 0.01 0.00 ind:pas:3s; +échinaient échiner VER 0.61 1.22 0.01 0.07 ind:imp:3p; +échinais échiner VER 0.61 1.22 0.01 0.07 ind:imp:1s; +échinait échiner VER 0.61 1.22 0.10 0.20 ind:imp:3s; +échinant échiner VER 0.61 1.22 0.00 0.14 par:pre; +échine échine NOM f s 1.18 8.85 1.18 8.18 +échinent échiner VER 0.61 1.22 0.02 0.07 ind:pre:3p; +échiner échiner VER 0.61 1.22 0.05 0.27 inf; +échines échiner VER 0.61 1.22 0.01 0.00 ind:pre:2s; +échinodermes échinoderme NOM m p 0.01 0.00 0.01 0.00 +échiné échiner VER m s 0.61 1.22 0.16 0.07 par:pas; +échinée échiner VER f s 0.61 1.22 0.02 0.00 par:pas; +échiquier échiquier NOM m s 0.75 2.84 0.70 2.77 +échiquiers échiquier NOM m p 0.75 2.84 0.05 0.07 +écho écho NOM m s 6.65 45.95 5.83 32.50 +échocardiogramme échocardiogramme NOM m s 0.07 0.00 0.07 0.00 +échocardiographie échocardiographie NOM f s 0.01 0.00 0.01 0.00 +échographie échographie NOM f s 1.39 0.07 1.39 0.07 +échographier échographier VER 0.01 0.00 0.01 0.00 inf; +échographiste échographiste NOM s 0.01 0.00 0.01 0.00 +échoir échoir VER 0.86 2.16 0.20 0.14 inf; +échoirait échoir VER 0.86 2.16 0.00 0.07 cnd:pre:3s; +échoit échoir VER 0.86 2.16 0.23 0.47 ind:pre:3s; +écholocalisation écholocalisation NOM f s 0.05 0.00 0.05 0.00 +écholocation écholocation NOM f s 0.01 0.00 0.01 0.00 +échoppe échoppe NOM f s 0.20 3.31 0.19 2.03 +échoppes échoppe NOM f p 0.20 3.31 0.01 1.28 +échos_radar échos_radar NOM m p 0.01 0.00 0.01 0.00 +échos écho NOM m p 6.65 45.95 0.82 13.45 +échotier échotier NOM m s 0.04 0.61 0.00 0.07 +échotiers échotier NOM m p 0.04 0.61 0.03 0.47 +échotière échotier NOM f s 0.04 0.61 0.01 0.07 +échoua échouer VER 30.62 20.61 0.19 0.88 ind:pas:3s; +échouage échouage NOM m s 0.02 0.34 0.01 0.20 +échouages échouage NOM m p 0.02 0.34 0.01 0.14 +échouai échouer VER 30.62 20.61 0.02 0.27 ind:pas:1s; +échouaient échouer VER 30.62 20.61 0.02 0.41 ind:imp:3p; +échouais échouer VER 30.62 20.61 0.07 0.54 ind:imp:1s;ind:imp:2s; +échouait échouer VER 30.62 20.61 0.31 0.68 ind:imp:3s; +échouant échouer VER 30.62 20.61 0.14 0.07 par:pre; +échoue échouer VER 30.62 20.61 4.62 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +échouement échouement NOM m s 0.00 0.07 0.00 0.07 +échouent échouer VER 30.62 20.61 0.86 0.47 ind:pre:3p; +échouer échouer VER 30.62 20.61 5.41 3.99 inf; +échouera échouer VER 30.62 20.61 0.51 0.20 ind:fut:3s; +échouerai échouer VER 30.62 20.61 0.33 0.00 ind:fut:1s; +échoueraient échouer VER 30.62 20.61 0.10 0.00 cnd:pre:3p; +échouerais échouer VER 30.62 20.61 0.08 0.00 cnd:pre:1s;cnd:pre:2s; +échouerait échouer VER 30.62 20.61 0.13 0.20 cnd:pre:3s; +échoueras échouer VER 30.62 20.61 0.22 0.00 ind:fut:2s; +échouerez échouer VER 30.62 20.61 0.21 0.00 ind:fut:2p; +échouerons échouer VER 30.62 20.61 0.17 0.00 ind:fut:1p; +échoueront échouer VER 30.62 20.61 0.13 0.07 ind:fut:3p; +échouez échouer VER 30.62 20.61 0.48 0.00 imp:pre:2p;ind:pre:2p; +échouiez échouer VER 30.62 20.61 0.02 0.00 ind:imp:2p; +échouions échouer VER 30.62 20.61 0.02 0.07 ind:imp:1p; +échouâmes échouer VER 30.62 20.61 0.00 0.14 ind:pas:1p; +échouons échouer VER 30.62 20.61 0.38 0.27 ind:pre:1p; +échouât échouer VER 30.62 20.61 0.00 0.07 sub:imp:3s; +échouèrent échouer VER 30.62 20.61 0.02 0.34 ind:pas:3p; +échoué échouer VER m s 30.62 20.61 15.44 7.50 par:pas; +échouée échouer VER f s 30.62 20.61 0.41 1.01 par:pas; +échouées échouer VER f p 30.62 20.61 0.04 0.95 par:pas; +échoués échouer VER m p 30.62 20.61 0.29 1.01 par:pas; +échu échoir VER m s 0.86 2.16 0.29 0.54 par:pas; +échéance échéance NOM f s 2.47 6.69 2.13 5.68 +échéances échéance NOM f p 2.47 6.69 0.34 1.01 +échéancier échéancier NOM m s 0.03 0.14 0.03 0.14 +échéant échéant ADJ m s 0.47 3.85 0.47 3.85 +échue échoir VER f s 0.86 2.16 0.00 0.47 par:pas; +échues échoir VER f p 0.86 2.16 0.02 0.14 par:pas; +échut échoir VER 0.86 2.16 0.11 0.20 ind:pas:3s; +éclaboussa éclabousser VER 1.98 9.80 0.00 0.34 ind:pas:3s; +éclaboussaient éclabousser VER 1.98 9.80 0.00 0.81 ind:imp:3p; +éclaboussait éclabousser VER 1.98 9.80 0.02 1.76 ind:imp:3s; +éclaboussant éclabousser VER 1.98 9.80 0.02 1.01 par:pre; +éclaboussante éclaboussant ADJ f s 0.01 0.54 0.00 0.14 +éclaboussantes éclaboussant ADJ f p 0.01 0.54 0.01 0.07 +éclaboussants éclaboussant ADJ m p 0.01 0.54 0.00 0.07 +éclabousse éclabousser VER 1.98 9.80 0.54 0.81 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éclaboussement éclaboussement NOM m s 0.04 1.01 0.01 0.61 +éclaboussements éclaboussement NOM m p 0.04 1.01 0.03 0.41 +éclaboussent éclabousser VER 1.98 9.80 0.05 0.61 ind:pre:3p; +éclabousser éclabousser VER 1.98 9.80 0.48 0.74 inf; +éclaboussera éclabousser VER 1.98 9.80 0.04 0.00 ind:fut:3s; +éclabousses éclabousser VER 1.98 9.80 0.03 0.07 ind:pre:2s; +éclaboussez éclabousser VER 1.98 9.80 0.02 0.00 imp:pre:2p;ind:pre:2p; +éclaboussèrent éclabousser VER 1.98 9.80 0.00 0.14 ind:pas:3p; +éclaboussé éclabousser VER m s 1.98 9.80 0.61 1.49 par:pas; +éclaboussée éclabousser VER f s 1.98 9.80 0.12 1.01 par:pas; +éclaboussées éclabousser VER f p 1.98 9.80 0.03 0.14 par:pas; +éclaboussure éclaboussure NOM f s 1.98 3.51 0.59 0.54 +éclaboussures éclaboussure NOM f p 1.98 3.51 1.39 2.97 +éclaboussés éclabousser VER m p 1.98 9.80 0.02 0.88 par:pas; +éclair éclair NOM m s 11.25 35.00 7.86 21.08 +éclaira éclairer VER 18.03 85.95 0.19 6.62 ind:pas:3s; +éclairage éclairage NOM m s 4.34 12.77 3.71 10.74 +éclairages éclairage NOM m p 4.34 12.77 0.62 2.03 +éclairagiste éclairagiste NOM s 0.14 0.14 0.13 0.07 +éclairagistes éclairagiste NOM p 0.14 0.14 0.01 0.07 +éclairai éclairer VER 18.03 85.95 0.00 0.14 ind:pas:1s; +éclairaient éclairer VER 18.03 85.95 0.16 4.39 ind:imp:3p; +éclairais éclairer VER 18.03 85.95 0.00 0.07 ind:imp:1s; +éclairait éclairer VER 18.03 85.95 0.70 14.59 ind:imp:3s; +éclairant éclairer VER 18.03 85.95 0.15 3.24 par:pre; +éclairante éclairant ADJ f s 0.55 1.08 0.25 0.20 +éclairantes éclairant ADJ f p 0.55 1.08 0.21 0.47 +éclairants éclairant ADJ m p 0.55 1.08 0.04 0.00 +éclairci éclaircir VER m s 8.53 13.18 1.14 1.76 par:pas; +éclaircie éclaircir VER f s 8.53 13.18 0.14 1.15 par:pas; +éclaircies éclaircie NOM f p 0.11 3.31 0.03 1.35 +éclaircir éclaircir VER 8.53 13.18 4.75 5.34 inf; +éclaircira éclaircir VER 8.53 13.18 0.38 0.34 ind:fut:3s; +éclaircirai éclaircir VER 8.53 13.18 0.19 0.00 ind:fut:1s; +éclaircirait éclaircir VER 8.53 13.18 0.08 0.14 cnd:pre:3s; +éclairciras éclaircir VER 8.53 13.18 0.01 0.00 ind:fut:2s; +éclaircirez éclaircir VER 8.53 13.18 0.01 0.00 ind:fut:2p; +éclaircirons éclaircir VER 8.53 13.18 0.04 0.00 ind:fut:1p; +éclairciront éclaircir VER 8.53 13.18 0.03 0.07 ind:fut:3p; +éclaircis éclaircir VER m p 8.53 13.18 0.14 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +éclaircissage éclaircissage NOM m s 0.01 0.00 0.01 0.00 +éclaircissaient éclaircir VER 8.53 13.18 0.00 0.47 ind:imp:3p; +éclaircissait éclaircir VER 8.53 13.18 0.03 0.74 ind:imp:3s; +éclaircissant éclaircir VER 8.53 13.18 0.00 0.47 par:pre; +éclaircisse éclaircir VER 8.53 13.18 0.27 0.20 sub:pre:1s;sub:pre:3s; +éclaircissement éclaircissement NOM m s 0.94 1.96 0.19 1.15 +éclaircissements éclaircissement NOM m p 0.94 1.96 0.75 0.81 +éclaircissent éclaircir VER 8.53 13.18 0.12 0.07 ind:pre:3p; +éclaircissez éclaircir VER 8.53 13.18 0.07 0.00 imp:pre:2p;ind:pre:2p; +éclaircissons éclaircir VER 8.53 13.18 0.02 0.00 imp:pre:1p; +éclaircit éclaircir VER 8.53 13.18 1.10 1.76 ind:pre:3s;ind:pas:3s; +éclaire éclairer VER 18.03 85.95 6.53 12.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éclairement éclairement NOM m s 0.14 0.20 0.14 0.20 +éclairent éclairer VER 18.03 85.95 0.23 2.36 ind:pre:3p; +éclairer éclairer VER 18.03 85.95 5.91 12.97 inf;;inf;;inf;; +éclairera éclairer VER 18.03 85.95 0.51 0.34 ind:fut:3s; +éclaireraient éclairer VER 18.03 85.95 0.01 0.07 cnd:pre:3p; +éclairerait éclairer VER 18.03 85.95 0.16 0.20 cnd:pre:3s; +éclaireront éclairer VER 18.03 85.95 0.16 0.20 ind:fut:3p; +éclaires éclairer VER 18.03 85.95 0.21 0.00 ind:pre:2s;sub:pre:2s; +éclaireur éclaireur NOM m s 3.59 2.50 1.96 1.42 +éclaireurs éclaireur NOM m p 3.59 2.50 1.54 1.01 +éclaireuse éclaireur NOM f s 3.59 2.50 0.07 0.00 +éclaireuses éclaireuse NOM f p 0.08 0.00 0.08 0.00 +éclairez éclairer VER 18.03 85.95 0.63 0.20 imp:pre:2p;ind:pre:2p; +éclairiez éclairer VER 18.03 85.95 0.01 0.14 ind:imp:2p; +éclairons éclairer VER 18.03 85.95 0.01 0.14 ind:pre:1p; +éclairât éclairer VER 18.03 85.95 0.00 0.14 sub:imp:3s; +éclairs éclair NOM m p 11.25 35.00 3.39 13.92 +éclairèrent éclairer VER 18.03 85.95 0.01 0.54 ind:pas:3p; +éclairé éclairé ADJ m s 3.34 17.64 1.62 6.08 +éclairée éclairé ADJ f s 3.34 17.64 1.17 6.49 +éclairées éclairé ADJ f p 3.34 17.64 0.28 3.18 +éclairés éclairer VER m p 18.03 85.95 0.27 3.38 par:pas; +éclampsie éclampsie NOM f s 0.10 0.00 0.10 0.00 +éclamptique éclamptique ADJ s 0.03 0.00 0.03 0.00 +éclat éclat NOM m s 14.28 82.77 9.73 50.95 +éclata éclater VER 41.33 100.47 0.55 20.07 ind:pas:3s; +éclatage éclatage NOM m s 0.00 0.07 0.00 0.07 +éclatai éclater VER 41.33 100.47 0.00 1.49 ind:pas:1s; +éclataient éclater VER 41.33 100.47 0.14 5.47 ind:imp:3p; +éclatais éclater VER 41.33 100.47 0.12 0.20 ind:imp:1s;ind:imp:2s; +éclatait éclater VER 41.33 100.47 0.39 8.24 ind:imp:3s; +éclatant éclatant ADJ m s 3.62 20.14 1.42 6.35 +éclatante éclatant ADJ f s 3.62 20.14 1.88 7.64 +éclatantes éclatant ADJ f p 3.62 20.14 0.12 3.72 +éclatants éclatant ADJ m p 3.62 20.14 0.20 2.43 +éclate éclater VER 41.33 100.47 11.69 16.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éclatement éclatement NOM m s 0.41 7.03 0.40 4.19 +éclatements éclatement NOM m p 0.41 7.03 0.01 2.84 +éclatent éclater VER 41.33 100.47 1.38 6.55 ind:pre:3p; +éclater éclater VER 41.33 100.47 15.52 19.59 imp:pre:2p;inf; +éclatera éclater VER 41.33 100.47 0.76 0.34 ind:fut:3s; +éclaterai éclater VER 41.33 100.47 0.18 0.07 ind:fut:1s; +éclateraient éclater VER 41.33 100.47 0.00 0.27 cnd:pre:3p; +éclaterais éclater VER 41.33 100.47 0.27 0.00 cnd:pre:1s;cnd:pre:2s; +éclaterait éclater VER 41.33 100.47 0.18 0.54 cnd:pre:3s; +éclateras éclater VER 41.33 100.47 0.03 0.07 ind:fut:2s; +éclateriez éclater VER 41.33 100.47 0.01 0.00 cnd:pre:2p; +éclateront éclater VER 41.33 100.47 0.07 0.14 ind:fut:3p; +éclates éclater VER 41.33 100.47 0.68 0.07 ind:pre:2s; +éclateurs éclateur NOM m p 0.00 0.07 0.00 0.07 +éclatez éclater VER 41.33 100.47 0.90 0.00 imp:pre:2p;ind:pre:2p; +éclatiez éclater VER 41.33 100.47 0.05 0.00 ind:imp:2p; +éclatons éclater VER 41.33 100.47 0.05 0.20 imp:pre:1p;ind:pre:1p; +éclatât éclater VER 41.33 100.47 0.00 0.54 sub:imp:3s; +éclats éclat NOM m p 14.28 82.77 4.55 31.82 +éclatèrent éclater VER 41.33 100.47 0.02 3.58 ind:pas:3p; +éclaté éclater VER m s 41.33 100.47 7.19 9.26 par:pas; +éclatée éclater VER f s 41.33 100.47 0.56 0.68 par:pas; +éclatées éclaté ADJ f p 1.13 3.99 0.02 1.08 +éclatés éclater VER m p 41.33 100.47 0.49 0.34 par:pas; +éclectique éclectique ADJ s 0.41 0.74 0.36 0.34 +éclectiques éclectique ADJ p 0.41 0.74 0.04 0.41 +éclectisme éclectisme NOM m s 0.05 0.20 0.05 0.20 +éclipsa éclipser VER 2.92 10.07 0.02 1.08 ind:pas:3s; +éclipsai éclipser VER 2.92 10.07 0.00 0.07 ind:pas:1s; +éclipsaient éclipser VER 2.92 10.07 0.01 0.20 ind:imp:3p; +éclipsait éclipser VER 2.92 10.07 0.04 0.74 ind:imp:3s; +éclipsant éclipser VER 2.92 10.07 0.05 0.20 par:pre; +éclipse éclipse NOM f s 1.70 2.64 1.60 1.89 +éclipsent éclipser VER 2.92 10.07 0.04 0.14 ind:pre:3p; +éclipser éclipser VER 2.92 10.07 1.50 2.23 inf; +éclipsera éclipser VER 2.92 10.07 0.10 0.07 ind:fut:3s; +éclipserais éclipser VER 2.92 10.07 0.01 0.07 cnd:pre:1s; +éclipserait éclipser VER 2.92 10.07 0.00 0.07 cnd:pre:3s; +éclipses éclipse NOM f p 1.70 2.64 0.10 0.74 +éclipsez éclipser VER 2.92 10.07 0.07 0.00 imp:pre:2p;ind:pre:2p; +éclipsions éclipser VER 2.92 10.07 0.01 0.00 ind:imp:1p; +éclipsèrent éclipser VER 2.92 10.07 0.00 0.27 ind:pas:3p; +éclipsé éclipser VER m s 2.92 10.07 0.32 1.28 par:pas; +éclipsée éclipser VER f s 2.92 10.07 0.09 1.01 par:pas; +éclipsées éclipser VER f p 2.92 10.07 0.02 0.07 par:pas; +éclipsés éclipser VER m p 2.92 10.07 0.05 1.01 par:pas; +écliptique écliptique NOM m s 0.01 0.14 0.01 0.14 +éclisse éclisse NOM f s 0.02 0.47 0.02 0.07 +éclisses éclisse NOM f p 0.02 0.47 0.00 0.41 +éclopait écloper VER 0.04 0.27 0.00 0.07 ind:imp:3s; +écloper écloper VER 0.04 0.27 0.03 0.00 inf; +éclopé éclopé NOM m s 0.46 1.42 0.17 0.20 +éclopée éclopé ADJ f s 0.19 0.34 0.14 0.07 +éclopés éclopé NOM m p 0.46 1.42 0.26 1.22 +éclore éclore VER 0.83 2.84 0.82 2.84 inf; +éclos éclos ADJ m 1.03 2.09 0.63 0.74 +éclose éclos ADJ f s 1.03 2.09 0.28 0.41 +écloses éclos ADJ f p 1.03 2.09 0.12 0.95 +éclosion éclosion NOM f s 0.13 2.16 0.10 1.89 +éclosions éclosion NOM f p 0.13 2.16 0.03 0.27 +éclusa écluser VER 0.09 3.11 0.00 0.07 ind:pas:3s; +éclusaient écluser VER 0.09 3.11 0.00 0.20 ind:imp:3p; +éclusais écluser VER 0.09 3.11 0.00 0.14 ind:imp:1s; +éclusait écluser VER 0.09 3.11 0.00 0.27 ind:imp:3s; +éclusant écluser VER 0.09 3.11 0.00 0.20 par:pre; +écluse écluse NOM f s 0.60 3.31 0.39 1.69 +éclusent écluser VER 0.09 3.11 0.00 0.14 ind:pre:3p; +écluser écluser VER 0.09 3.11 0.07 0.88 inf; +écluses écluse NOM f p 0.60 3.31 0.21 1.62 +éclusier éclusier NOM m s 0.01 0.20 0.00 0.14 +éclusiers éclusier NOM m p 0.01 0.20 0.01 0.07 +éclusé écluser VER m s 0.09 3.11 0.00 0.54 par:pas; +éclusée écluser VER f s 0.09 3.11 0.00 0.07 par:pas; +éclusées écluser VER f p 0.09 3.11 0.00 0.07 par:pas; +écoeura écoeurer VER 1.56 9.66 0.00 0.14 ind:pas:3s; +écoeuraient écoeurer VER 1.56 9.66 0.00 0.41 ind:imp:3p; +écoeurais écoeurer VER 1.56 9.66 0.00 0.14 ind:imp:1s; +écoeurait écoeurer VER 1.56 9.66 0.01 1.28 ind:imp:3s; +écoeurant écoeurant ADJ m s 2.02 7.23 1.64 2.30 +écoeurante écoeurant ADJ f s 2.02 7.23 0.16 3.99 +écoeurantes écoeurant ADJ f p 2.02 7.23 0.05 0.47 +écoeurants écoeurant ADJ m p 2.02 7.23 0.18 0.47 +écoeure écoeurer VER 1.56 9.66 0.66 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écoeurement écoeurement NOM m s 0.14 3.18 0.14 3.11 +écoeurements écoeurement NOM m p 0.14 3.18 0.00 0.07 +écoeurent écoeurer VER 1.56 9.66 0.04 0.20 ind:pre:3p; +écoeurer écoeurer VER 1.56 9.66 0.17 0.81 inf; +écoeurerais écoeurer VER 1.56 9.66 0.00 0.07 cnd:pre:1s; +écoeurez écoeurer VER 1.56 9.66 0.24 0.00 imp:pre:2p;ind:pre:2p; +écoeurèrent écoeurer VER 1.56 9.66 0.00 0.14 ind:pas:3p; +écoeuré écoeuré ADJ m s 0.33 3.72 0.30 2.64 +écoeurée écoeurer VER f s 1.56 9.66 0.13 1.22 par:pas; +écoeurées écoeurer VER f p 1.56 9.66 0.00 0.07 par:pas; +écoeurés écoeuré ADJ m p 0.33 3.72 0.01 0.27 +écoinçon écoinçon NOM m s 0.00 0.07 0.00 0.07 +école école NOM f s 206.88 143.99 197.04 128.51 +écoles école NOM f p 206.88 143.99 9.84 15.47 +écolier écolier NOM m s 3.00 21.22 0.79 10.54 +écoliers écolier NOM m p 3.00 21.22 1.11 5.81 +écolière écolier NOM f s 3.00 21.22 1.11 3.85 +écolières écolière NOM f p 0.32 0.00 0.32 0.00 +écolo écolo NOM s 0.80 0.74 0.40 0.47 +écologie écologie NOM f s 0.41 0.20 0.41 0.20 +écologique écologique ADJ s 1.79 0.88 1.59 0.74 +écologiquement écologiquement ADV 0.01 0.00 0.01 0.00 +écologiques écologique ADJ p 1.79 0.88 0.20 0.14 +écologiste écologiste ADJ s 0.61 0.20 0.49 0.07 +écologistes écologiste NOM p 0.50 0.20 0.25 0.20 +écolos écolo NOM p 0.80 0.74 0.40 0.27 +éconduira éconduire VER 0.66 1.82 0.01 0.00 ind:fut:3s; +éconduire éconduire VER 0.66 1.82 0.03 0.61 inf; +éconduis éconduire VER 0.66 1.82 0.01 0.00 imp:pre:2s; +éconduisirent éconduire VER 0.66 1.82 0.00 0.07 ind:pas:3p; +éconduisit éconduire VER 0.66 1.82 0.00 0.07 ind:pas:3s; +éconduit éconduire VER m s 0.66 1.82 0.54 0.88 ind:pre:3s;par:pas; +éconduite éconduire VER f s 0.66 1.82 0.03 0.14 par:pas; +éconduits éconduire VER m p 0.66 1.82 0.04 0.07 par:pas; +éconocroques éconocroques NOM f p 0.00 0.74 0.00 0.74 +économat économat NOM m s 0.03 0.54 0.03 0.54 +économe économe NOM s 0.51 0.74 0.47 0.61 +économes économe ADJ p 0.52 2.30 0.21 0.54 +économie économie NOM f s 16.97 23.78 9.20 15.74 +économies économie NOM f p 16.97 23.78 7.77 8.04 +économique économique ADJ s 8.27 20.81 6.09 14.53 +économiquement économiquement ADV 0.72 0.95 0.72 0.95 +économiques économique ADJ p 8.27 20.81 2.19 6.28 +économisaient économiser VER 12.50 6.62 0.02 0.14 ind:imp:3p; +économisais économiser VER 12.50 6.62 0.13 0.07 ind:imp:1s;ind:imp:2s; +économisait économiser VER 12.50 6.62 0.07 0.34 ind:imp:3s; +économisant économiser VER 12.50 6.62 0.10 0.41 par:pre; +économise économiser VER 12.50 6.62 3.15 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +économisent économiser VER 12.50 6.62 0.18 0.07 ind:pre:3p; +économiser économiser VER 12.50 6.62 5.73 3.58 inf; +économisera économiser VER 12.50 6.62 0.36 0.14 ind:fut:3s; +économiserai économiser VER 12.50 6.62 0.12 0.00 ind:fut:1s; +économiserais économiser VER 12.50 6.62 0.14 0.07 cnd:pre:1s;cnd:pre:2s; +économiserait économiser VER 12.50 6.62 0.31 0.14 cnd:pre:3s; +économiserez économiser VER 12.50 6.62 0.07 0.07 ind:fut:2p; +économiserons économiser VER 12.50 6.62 0.02 0.00 ind:fut:1p; +économiseront économiser VER 12.50 6.62 0.01 0.00 ind:fut:3p; +économiseur économiseur NOM m s 0.06 0.07 0.06 0.00 +économiseurs économiseur NOM m p 0.06 0.07 0.00 0.07 +économisez économiser VER 12.50 6.62 0.37 0.14 imp:pre:2p;ind:pre:2p; +économisme économisme NOM m s 0.00 0.07 0.00 0.07 +économisons économiser VER 12.50 6.62 0.06 0.00 imp:pre:1p;ind:pre:1p; +économiste économiste NOM s 0.55 0.47 0.41 0.34 +économistes économiste NOM p 0.55 0.47 0.14 0.14 +économisé économiser VER m s 12.50 6.62 1.62 0.41 par:pas; +économisée économiser VER f s 12.50 6.62 0.01 0.14 par:pas; +économisées économiser VER f p 12.50 6.62 0.00 0.20 par:pas; +économisés économiser VER m p 12.50 6.62 0.04 0.27 par:pas; +écopa écoper VER 2.47 2.57 0.02 0.20 ind:pas:3s; +écopai écoper VER 2.47 2.57 0.00 0.07 ind:pas:1s; +écopais écoper VER 2.47 2.57 0.01 0.07 ind:imp:1s; +écopait écoper VER 2.47 2.57 0.01 0.27 ind:imp:3s; +écope écoper VER 2.47 2.57 0.34 0.14 ind:pre:1s;ind:pre:3s; +écopent écoper VER 2.47 2.57 0.03 0.00 ind:pre:3p; +écoper écoper VER 2.47 2.57 0.72 0.61 inf; +écopera écoper VER 2.47 2.57 0.23 0.00 ind:fut:3s; +écoperai écoper VER 2.47 2.57 0.03 0.07 ind:fut:1s; +écoperait écoper VER 2.47 2.57 0.00 0.07 cnd:pre:3s; +écoperas écoper VER 2.47 2.57 0.14 0.00 ind:fut:2s; +écoperches écoperche NOM f p 0.00 0.07 0.00 0.07 +écoperez écoper VER 2.47 2.57 0.04 0.00 ind:fut:2p; +écoperont écoper VER 2.47 2.57 0.01 0.07 ind:fut:3p; +écopes écoper VER 2.47 2.57 0.04 0.00 ind:pre:2s; +écopez écoper VER 2.47 2.57 0.04 0.07 imp:pre:2p;ind:pre:2p; +écopiez écoper VER 2.47 2.57 0.01 0.07 ind:imp:2p; +écopons écoper VER 2.47 2.57 0.00 0.07 ind:pre:1p; +écopé écoper VER m s 2.47 2.57 0.79 0.74 par:pas; +écopée écoper VER f s 2.47 2.57 0.00 0.07 par:pas; +écorce écorce NOM f s 1.90 11.76 1.83 9.39 +écorcer écorcer VER 0.17 0.20 0.01 0.07 inf; +écorces écorce NOM f p 1.90 11.76 0.07 2.36 +écorcha écorcher VER 4.02 7.03 0.00 0.41 ind:pas:3s; +écorchage écorchage NOM m s 0.01 0.00 0.01 0.00 +écorchaient écorcher VER 4.02 7.03 0.02 0.47 ind:imp:3p; +écorchais écorcher VER 4.02 7.03 0.01 0.14 ind:imp:1s; +écorchait écorcher VER 4.02 7.03 0.11 0.95 ind:imp:3s; +écorchant écorcher VER 4.02 7.03 0.11 0.54 par:pre; +écorche écorcher VER 4.02 7.03 0.53 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écorchement écorchement NOM m s 0.04 0.07 0.04 0.07 +écorchent écorcher VER 4.02 7.03 0.16 0.34 ind:pre:3p; +écorcher écorcher VER 4.02 7.03 1.20 1.28 inf; +écorchera écorcher VER 4.02 7.03 0.16 0.00 ind:fut:3s; +écorcherai écorcher VER 4.02 7.03 0.17 0.00 ind:fut:1s; +écorcherais écorcher VER 4.02 7.03 0.11 0.00 cnd:pre:1s; +écorcherait écorcher VER 4.02 7.03 0.07 0.14 cnd:pre:3s; +écorcherie écorcherie NOM f s 0.10 0.07 0.10 0.07 +écorcheront écorcher VER 4.02 7.03 0.01 0.00 ind:fut:3p; +écorcheur écorcheur NOM m s 0.06 0.27 0.03 0.07 +écorcheurs écorcheur NOM m p 0.06 0.27 0.03 0.20 +écorchez écorcher VER 4.02 7.03 0.02 0.14 imp:pre:2p;ind:pre:2p; +écorchiez écorcher VER 4.02 7.03 0.00 0.07 ind:imp:2p; +écorchions écorcher VER 4.02 7.03 0.00 0.07 ind:imp:1p; +écorché écorcher VER m s 4.02 7.03 1.07 0.74 par:pas; +écorchée écorcher VER f s 4.02 7.03 0.25 0.27 par:pas; +écorchées écorché ADJ f p 0.61 3.58 0.11 0.27 +écorchure écorchure NOM f s 1.02 1.55 0.61 0.81 +écorchures écorchure NOM f p 1.02 1.55 0.41 0.74 +écorchés écorché ADJ m p 0.61 3.58 0.11 1.35 +écorcé écorcé ADJ m s 0.00 0.54 0.00 0.20 +écorcés écorcé ADJ m p 0.00 0.54 0.00 0.34 +écornait écorner VER 0.03 0.81 0.00 0.07 ind:imp:3s; +écornent écorner VER 0.03 0.81 0.00 0.07 ind:pre:3p; +écorner écorner VER 0.03 0.81 0.00 0.20 inf; +écornifler écornifler VER 0.00 0.07 0.00 0.07 inf; +écorné écorné ADJ m s 0.19 0.74 0.03 0.34 +écornée écorné ADJ f s 0.19 0.74 0.14 0.07 +écornées écorné ADJ f p 0.19 0.74 0.01 0.20 +écornés écorné ADJ m p 0.19 0.74 0.02 0.14 +écosphère écosphère NOM f s 0.01 0.00 0.01 0.00 +écossa écosser VER 0.70 5.95 0.00 0.07 ind:pas:3s; +écossaient écosser VER 0.70 5.95 0.00 0.20 ind:imp:3p; +écossais écossais ADJ m 2.57 6.55 1.53 2.57 +écossaise écossais ADJ f s 2.57 6.55 0.89 3.18 +écossaises écossais ADJ f p 2.57 6.55 0.16 0.81 +écossait écosser VER 0.70 5.95 0.00 0.20 ind:imp:3s; +écossant écosser VER 0.70 5.95 0.00 0.07 par:pre; +écosse écosser VER 0.70 5.95 0.67 4.19 imp:pre:2s;ind:pre:3s; +écossent écosser VER 0.70 5.95 0.03 0.07 ind:pre:3p; +écosser écosser VER 0.70 5.95 0.00 0.95 inf; +écossé écosser VER m s 0.70 5.95 0.00 0.07 par:pas; +écossés écosser VER m p 0.70 5.95 0.00 0.07 par:pas; +écosystème écosystème NOM m s 0.63 0.00 0.59 0.00 +écosystèmes écosystème NOM m p 0.63 0.00 0.04 0.00 +écot écot NOM m s 0.48 0.95 0.48 0.95 +écotone écotone NOM m s 0.01 0.00 0.01 0.00 +écoula écouler VER 9.01 26.62 0.23 2.16 ind:pas:3s; +écoulaient écouler VER 9.01 26.62 0.08 1.35 ind:imp:3p; +écoulait écouler VER 9.01 26.62 0.30 3.18 ind:imp:3s; +écoulant écouler VER 9.01 26.62 0.15 0.47 par:pre; +écoule écouler VER 9.01 26.62 1.92 3.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +écoulement écoulement NOM m s 0.79 4.46 0.77 4.12 +écoulements écoulement NOM m p 0.79 4.46 0.02 0.34 +écoulent écouler VER 9.01 26.62 0.52 1.42 ind:pre:3p; +écouler écouler VER 9.01 26.62 1.09 4.93 inf; +écoulera écouler VER 9.01 26.62 0.22 0.07 ind:fut:3s; +écouleraient écouler VER 9.01 26.62 0.03 0.20 cnd:pre:3p; +écoulerait écouler VER 9.01 26.62 0.01 0.47 cnd:pre:3s; +écouleront écouler VER 9.01 26.62 0.01 0.00 ind:fut:3p; +écoulât écouler VER 9.01 26.62 0.00 0.14 sub:imp:3s; +écoulèrent écouler VER 9.01 26.62 0.04 1.89 ind:pas:3p; +écoulé écouler VER m s 9.01 26.62 3.06 2.16 par:pas; +écoulée écoulé ADJ f s 1.10 2.97 0.27 1.08 +écoulées écouler VER f p 9.01 26.62 0.69 1.62 par:pas; +écoulés écouler VER m p 9.01 26.62 0.44 1.82 par:pas; +écourta écourter VER 1.54 2.09 0.00 0.20 ind:pas:3s; +écourtaient écourter VER 1.54 2.09 0.00 0.07 ind:imp:3p; +écourtais écourter VER 1.54 2.09 0.01 0.14 ind:imp:1s; +écourtant écourter VER 1.54 2.09 0.00 0.07 par:pre; +écourte écourter VER 1.54 2.09 0.06 0.20 ind:pre:1s;ind:pre:3s; +écourter écourter VER 1.54 2.09 0.91 0.81 inf; +écourtera écourter VER 1.54 2.09 0.03 0.00 ind:fut:3s; +écourteraient écourter VER 1.54 2.09 0.00 0.07 cnd:pre:3p; +écourté écourter VER m s 1.54 2.09 0.38 0.27 par:pas; +écourtée écourter VER f s 1.54 2.09 0.05 0.14 par:pas; +écourtées écourté ADJ f p 0.04 0.34 0.01 0.07 +écourtés écourter VER m p 1.54 2.09 0.11 0.07 par:pas; +écouta écouter VER 470.93 314.05 0.06 14.53 ind:pas:3s; +écoutai écouter VER 470.93 314.05 0.17 2.36 ind:pas:1s; +écoutaient écouter VER 470.93 314.05 1.21 7.30 ind:imp:3p; +écoutais écouter VER 470.93 314.05 5.74 16.62 ind:imp:1s;ind:imp:2s; +écoutait écouter VER 470.93 314.05 4.65 45.61 ind:imp:3s; +écoutant écouter VER 470.93 314.05 3.00 22.16 par:pre; +écoute écouter VER 470.93 314.05 214.67 83.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +écoutent écouter VER 470.93 314.05 6.05 5.00 ind:pre:3p; +écouter écouter VER 470.93 314.05 73.13 56.15 ind:pre:2p;inf; +écoutera écouter VER 470.93 314.05 4.14 0.81 ind:fut:3s; +écouterai écouter VER 470.93 314.05 1.89 0.54 ind:fut:1s; +écouteraient écouter VER 470.93 314.05 0.14 0.14 cnd:pre:3p; +écouterais écouter VER 470.93 314.05 0.55 0.41 cnd:pre:1s;cnd:pre:2s; +écouterait écouter VER 470.93 314.05 0.96 0.47 cnd:pre:3s; +écouteras écouter VER 470.93 314.05 1.06 0.27 ind:fut:2s; +écouterez écouter VER 470.93 314.05 0.24 0.07 ind:fut:2p; +écouteriez écouter VER 470.93 314.05 0.15 0.00 cnd:pre:2p; +écouterons écouter VER 470.93 314.05 0.69 0.20 ind:fut:1p; +écouteront écouter VER 470.93 314.05 1.36 0.34 ind:fut:3p; +écoutes écouter VER 470.93 314.05 26.59 4.19 ind:pre:2s;sub:pre:2s; +écouteur écouteur NOM m s 1.34 4.19 0.37 3.65 +écouteurs écouteur NOM m p 1.34 4.19 0.97 0.47 +écouteuse écouteur NOM f s 1.34 4.19 0.00 0.07 +écoutez écouter VER 470.93 314.05 92.46 24.80 imp:pre:2p;ind:pre:2p; +écoutiez écouter VER 470.93 314.05 2.20 0.20 ind:imp:2p;sub:pre:2p; +écoutille écoutille NOM f s 2.22 0.88 1.79 0.47 +écoutilles écoutille NOM f p 2.22 0.88 0.43 0.41 +écoutions écouter VER 470.93 314.05 0.18 2.84 ind:imp:1p; +écoutâmes écouter VER 470.93 314.05 0.00 0.14 ind:pas:1p; +écoutons écouter VER 470.93 314.05 3.95 2.30 imp:pre:1p;ind:pre:1p; +écoutât écouter VER 470.93 314.05 0.00 0.54 sub:imp:3s; +écoutèrent écouter VER 470.93 314.05 0.03 1.76 ind:pas:3p; +écouté écouter VER m s 470.93 314.05 21.06 16.01 par:pas; +écoutée écouter VER f s 470.93 314.05 3.45 3.11 par:pas; +écoutées écouter VER f p 470.93 314.05 0.27 0.68 par:pas; +écoutés écouter VER m p 470.93 314.05 0.88 0.95 par:pas; +écouvillon écouvillon NOM m s 0.26 0.20 0.01 0.20 +écouvillonne écouvillonner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +écouvillons écouvillon NOM m p 0.26 0.20 0.25 0.00 +écrabouilla écrabouiller VER 2.22 2.91 0.00 0.07 ind:pas:3s; +écrabouillage écrabouillage NOM m s 0.01 0.14 0.01 0.14 +écrabouillait écrabouiller VER 2.22 2.91 0.00 0.07 ind:imp:3s; +écrabouillant écrabouiller VER 2.22 2.91 0.00 0.14 par:pre; +écrabouille écrabouiller VER 2.22 2.91 0.30 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écrabouillement écrabouillement NOM m s 0.00 0.27 0.00 0.20 +écrabouillements écrabouillement NOM m p 0.00 0.27 0.00 0.07 +écrabouiller écrabouiller VER 2.22 2.91 0.86 0.74 inf; +écrabouillera écrabouiller VER 2.22 2.91 0.03 0.00 ind:fut:3s; +écrabouillons écrabouiller VER 2.22 2.91 0.00 0.07 ind:pre:1p; +écrabouillèrent écrabouiller VER 2.22 2.91 0.00 0.07 ind:pas:3p; +écrabouillé écrabouiller VER m s 2.22 2.91 0.72 0.68 par:pas; +écrabouillée écrabouiller VER f s 2.22 2.91 0.24 0.41 par:pas; +écrabouillées écrabouiller VER f p 2.22 2.91 0.01 0.07 par:pas; +écrabouillés écrabouiller VER m p 2.22 2.91 0.07 0.34 par:pas; +écran écran NOM m s 23.68 23.31 19.78 21.15 +écrans écran NOM m p 23.68 23.31 3.91 2.16 +écrasa écraser VER 54.42 90.81 0.07 5.74 ind:pas:3s; +écrasage écrasage NOM m s 0.00 0.07 0.00 0.07 +écrasai écraser VER 54.42 90.81 0.00 0.68 ind:pas:1s; +écrasaient écraser VER 54.42 90.81 0.06 3.65 ind:imp:3p; +écrasais écraser VER 54.42 90.81 0.23 1.01 ind:imp:1s;ind:imp:2s; +écrasait écraser VER 54.42 90.81 0.46 8.51 ind:imp:3s; +écrasant écraser VER 54.42 90.81 0.47 5.34 par:pre; +écrasante écrasant ADJ f s 0.96 7.03 0.52 3.24 +écrasantes écrasant ADJ f p 0.96 7.03 0.04 0.47 +écrasants écrasant ADJ m p 0.96 7.03 0.00 0.34 +écrase_merde écrase_merde NOM m s 0.00 0.41 0.00 0.20 +écrase_merde écrase_merde NOM m p 0.00 0.41 0.00 0.20 +écrase écraser VER 54.42 90.81 11.11 13.58 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +écrasement écrasement NOM m s 0.19 3.72 0.14 3.51 +écrasements écrasement NOM m p 0.19 3.72 0.04 0.20 +écrasent écraser VER 54.42 90.81 0.78 2.16 ind:pre:3p; +écraser écraser VER 54.42 90.81 16.75 20.47 inf; +écrasera écraser VER 54.42 90.81 0.73 0.74 ind:fut:3s; +écraserai écraser VER 54.42 90.81 1.17 0.20 ind:fut:1s; +écraseraient écraser VER 54.42 90.81 0.16 0.34 cnd:pre:3p; +écraserais écraser VER 54.42 90.81 0.39 0.20 cnd:pre:1s;cnd:pre:2s; +écraserait écraser VER 54.42 90.81 0.53 0.47 cnd:pre:3s; +écraseras écraser VER 54.42 90.81 0.02 0.14 ind:fut:2s; +écraserez écraser VER 54.42 90.81 0.05 0.00 ind:fut:2p; +écraserons écraser VER 54.42 90.81 0.47 0.00 ind:fut:1p; +écraseront écraser VER 54.42 90.81 0.33 0.14 ind:fut:3p; +écrases écraser VER 54.42 90.81 1.79 0.20 ind:pre:2s; +écraseur écraseur NOM m s 0.19 0.07 0.19 0.07 +écrasez écraser VER 54.42 90.81 2.15 0.20 imp:pre:2p;ind:pre:2p; +écrasiez écraser VER 54.42 90.81 0.03 0.07 ind:imp:2p; +écrasions écraser VER 54.42 90.81 0.00 0.34 ind:imp:1p; +écrasons écraser VER 54.42 90.81 0.26 0.07 imp:pre:1p;ind:pre:1p; +écrasât écraser VER 54.42 90.81 0.00 0.14 sub:imp:3s; +écrasèrent écraser VER 54.42 90.81 0.02 0.61 ind:pas:3p; +écrasé écraser VER m s 54.42 90.81 10.97 13.24 par:pas; +écrasée écraser VER f s 54.42 90.81 2.48 6.22 par:pas; +écrasées écraser VER f p 54.42 90.81 0.31 1.96 par:pas; +écrasure écrasure NOM f s 0.00 0.07 0.00 0.07 +écrasés écraser VER m p 54.42 90.81 2.66 4.39 par:pas; +écrevisse écrevisse NOM f s 1.06 5.47 0.54 1.62 +écrevisses écrevisse NOM f p 1.06 5.47 0.52 3.85 +écria écrier VER 1.75 47.43 0.35 25.68 ind:pas:3s; +écriai écrier VER 1.75 47.43 0.00 2.70 ind:pas:1s; +écriaient écrier VER 1.75 47.43 0.01 0.07 ind:imp:3p; +écriais écrier VER 1.75 47.43 0.01 0.14 ind:imp:1s; +écriait écrier VER 1.75 47.43 0.02 2.97 ind:imp:3s; +écriant écrier VER 1.75 47.43 0.00 0.95 par:pre; +écrie écrier VER 1.75 47.43 0.47 8.24 ind:pre:1s;ind:pre:3s; +écrient écrier VER 1.75 47.43 0.06 0.61 ind:pre:3p; +écrier écrier VER 1.75 47.43 0.30 1.76 inf; +écriera écrier VER 1.75 47.43 0.00 0.14 ind:fut:3s; +écrierait écrier VER 1.75 47.43 0.01 0.07 cnd:pre:3s; +écries écrier VER 1.75 47.43 0.00 0.07 ind:pre:2s; +écrin écrin NOM m s 0.37 3.78 0.36 3.38 +écrins écrin NOM m p 0.37 3.78 0.01 0.41 +écrions écrier VER 1.75 47.43 0.00 0.07 ind:pre:1p; +écriât écrier VER 1.75 47.43 0.00 0.20 sub:imp:3s; +écrira écrire VER 305.92 341.82 1.77 1.69 ind:fut:3s; +écrirai écrire VER 305.92 341.82 6.40 4.05 ind:fut:1s; +écriraient écrire VER 305.92 341.82 0.11 0.34 cnd:pre:3p; +écrirais écrire VER 305.92 341.82 0.83 1.82 cnd:pre:1s;cnd:pre:2s; +écrirait écrire VER 305.92 341.82 0.83 2.43 cnd:pre:3s; +écriras écrire VER 305.92 341.82 1.67 1.01 ind:fut:2s; +écrire écrire VER 305.92 341.82 84.14 116.15 inf; +écrirez écrire VER 305.92 341.82 0.42 0.41 ind:fut:2p; +écririez écrire VER 305.92 341.82 0.04 0.00 cnd:pre:2p; +écrirons écrire VER 305.92 341.82 0.21 0.00 ind:fut:1p; +écriront écrire VER 305.92 341.82 0.09 0.20 ind:fut:3p; +écris écrire VER 305.92 341.82 38.24 24.80 imp:pre:2s;ind:pre:1s;ind:pre:2s; +écrit écrire VER m s 305.92 341.82 128.35 95.07 ind:pre:3s;par:pas; +écrite écrire VER f s 305.92 341.82 7.51 6.35 par:pas; +écriteau écriteau NOM m s 2.25 3.65 2.20 3.04 +écriteaux écriteau NOM m p 2.25 3.65 0.06 0.61 +écrites écrire VER f p 305.92 341.82 2.00 4.53 par:pas; +écrièrent écrier VER 1.75 47.43 0.12 0.41 ind:pas:3p; +écritoire écritoire NOM f s 0.41 2.09 0.40 1.82 +écritoires écritoire NOM f p 0.41 2.09 0.01 0.27 +écrits écrire VER m p 305.92 341.82 2.96 5.07 par:pas; +écriture écriture NOM f s 13.65 36.35 11.99 32.03 +écritures écriture NOM f p 13.65 36.35 1.66 4.32 +écrié écrier VER m s 1.75 47.43 0.36 2.50 par:pas; +écriée écrier VER f s 1.75 47.43 0.03 0.74 par:pas; +écriés écrier VER m p 1.75 47.43 0.00 0.14 par:pas; +écrivîmes écrire VER 305.92 341.82 0.00 0.07 ind:pas:1p; +écrivît écrire VER 305.92 341.82 0.00 0.34 sub:imp:3s; +écrivaient écrire VER 305.92 341.82 0.26 2.36 ind:imp:3p; +écrivailler écrivailler VER 0.00 0.14 0.00 0.07 inf; +écrivailleur écrivailleur NOM m s 0.01 0.00 0.01 0.00 +écrivaillon écrivaillon NOM m s 0.03 0.27 0.03 0.14 +écrivaillons écrivaillon NOM m p 0.03 0.27 0.00 0.14 +écrivaillé écrivailler VER m s 0.00 0.14 0.00 0.07 par:pas; +écrivain écrivain NOM m s 24.57 48.99 20.70 32.43 +écrivaine écrivain NOM f s 24.57 48.99 0.06 0.20 +écrivaines écrivain NOM f p 24.57 48.99 0.00 0.14 +écrivains écrivain NOM m p 24.57 48.99 3.81 16.22 +écrivais écrire VER 305.92 341.82 5.20 9.12 ind:imp:1s;ind:imp:2s; +écrivait écrire VER 305.92 341.82 6.04 25.68 ind:imp:3s; +écrivant écrire VER 305.92 341.82 1.34 6.42 par:pre; +écrivassiers écrivassier NOM m p 0.00 0.14 0.00 0.14 +écrive écrire VER 305.92 341.82 2.67 3.11 sub:pre:1s;sub:pre:3s; +écrivent écrire VER 305.92 341.82 2.46 6.01 ind:pre:3p; +écrives écrire VER 305.92 341.82 0.82 0.27 sub:pre:2s; +écriveur écriveur NOM m s 0.14 0.00 0.14 0.00 +écrivez écrire VER 305.92 341.82 9.04 5.20 imp:pre:2p;ind:pre:2p; +écriviez écrire VER 305.92 341.82 0.97 0.41 ind:imp:2p; +écrivions écrire VER 305.92 341.82 0.10 0.61 ind:imp:1p; +écrivirent écrire VER 305.92 341.82 0.02 0.20 ind:pas:3p; +écrivis écrire VER 305.92 341.82 0.07 4.66 ind:pas:1s; +écrivisse écrire VER 305.92 341.82 0.00 0.20 sub:imp:1s; +écrivit écrire VER 305.92 341.82 1.00 12.36 ind:pas:3s; +écrivons écrire VER 305.92 341.82 0.37 0.88 imp:pre:1p;ind:pre:1p; +écrou écrou NOM m s 0.72 3.24 0.34 2.43 +écrouelles écrouelles NOM f p 0.00 0.07 0.00 0.07 +écrouer écrouer VER 0.54 0.34 0.19 0.14 inf; +écroueront écrouer VER 0.54 0.34 0.00 0.07 ind:fut:3p; +écroula écrouler VER 13.98 36.08 0.19 4.32 ind:pas:3s; +écroulai écrouler VER 13.98 36.08 0.00 0.34 ind:pas:1s; +écroulaient écrouler VER 13.98 36.08 0.22 1.49 ind:imp:3p; +écroulais écrouler VER 13.98 36.08 0.01 0.41 ind:imp:1s; +écroulait écrouler VER 13.98 36.08 0.33 3.65 ind:imp:3s; +écroulant écrouler VER 13.98 36.08 0.02 0.81 par:pre; +écroule écrouler VER 13.98 36.08 4.47 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +écroulement écroulement NOM m s 0.32 5.07 0.32 4.39 +écroulements écroulement NOM m p 0.32 5.07 0.00 0.68 +écroulent écrouler VER 13.98 36.08 0.60 1.49 ind:pre:3p; +écrouler écrouler VER 13.98 36.08 3.42 6.49 inf; +écroulera écrouler VER 13.98 36.08 0.53 0.20 ind:fut:3s; +écroulerai écrouler VER 13.98 36.08 0.02 0.00 ind:fut:1s; +écrouleraient écrouler VER 13.98 36.08 0.01 0.14 cnd:pre:3p; +écroulerais écrouler VER 13.98 36.08 0.05 0.07 cnd:pre:1s; +écroulerait écrouler VER 13.98 36.08 0.28 0.34 cnd:pre:3s; +écrouleras écrouler VER 13.98 36.08 0.13 0.07 ind:fut:2s; +écroulerions écrouler VER 13.98 36.08 0.01 0.00 cnd:pre:1p; +écrouleront écrouler VER 13.98 36.08 0.05 0.07 ind:fut:3p; +écroulions écrouler VER 13.98 36.08 0.00 0.07 ind:imp:1p; +écroulons écrouler VER 13.98 36.08 0.02 0.07 ind:pre:1p; +écroulât écrouler VER 13.98 36.08 0.00 0.27 sub:imp:3s; +écroulèrent écrouler VER 13.98 36.08 0.01 0.34 ind:pas:3p; +écroulé écrouler VER m s 13.98 36.08 2.47 5.00 par:pas; +écroulée écrouler VER f s 13.98 36.08 0.70 1.82 par:pas; +écroulées écrouler VER f p 13.98 36.08 0.12 0.74 par:pas; +écroulés écrouler VER m p 13.98 36.08 0.29 1.55 par:pas; +écrous écrou NOM m p 0.72 3.24 0.39 0.81 +écroué écrouer VER m s 0.54 0.34 0.32 0.07 par:pas; +écrouée écrouer VER f s 0.54 0.34 0.03 0.07 par:pas; +écrème écrémer VER 0.70 0.34 0.04 0.14 ind:pre:1s;ind:pre:3s; +écru écru ADJ m s 0.07 1.08 0.06 0.34 +écrue écru ADJ f s 0.07 1.08 0.01 0.74 +écrémage écrémage NOM m s 0.03 0.07 0.03 0.07 +écrémer écrémer VER 0.70 0.34 0.08 0.07 inf; +écrémeuse écrémeur NOM f s 0.00 0.07 0.00 0.07 +écrémé écrémer VER m s 0.70 0.34 0.58 0.07 par:pas; +écrémées écrémer VER f p 0.70 0.34 0.00 0.07 par:pas; +écrêtait écrêter VER 0.00 0.20 0.00 0.07 ind:imp:3s; +écrêter écrêter VER 0.00 0.20 0.00 0.07 inf; +écrêtée écrêter VER f s 0.00 0.20 0.00 0.07 par:pas; +écu écu NOM m s 1.75 4.59 0.65 1.49 +écubier écubier NOM m s 0.00 0.20 0.00 0.20 +écueil écueil NOM m s 0.26 2.09 0.18 0.88 +écueils écueil NOM m p 0.26 2.09 0.08 1.22 +écuelle écuelle NOM f s 1.09 2.97 0.98 2.36 +écuelles écuelle NOM f p 1.09 2.97 0.11 0.61 +écuellée écuellée NOM f s 0.00 0.14 0.00 0.07 +écuellées écuellée NOM f p 0.00 0.14 0.00 0.07 +écuissé écuisser VER m s 0.00 0.14 0.00 0.07 par:pas; +écuissées écuisser VER f p 0.00 0.14 0.00 0.07 par:pas; +éculer éculer VER 0.23 0.54 0.00 0.07 inf; +éculé éculé ADJ m s 0.19 1.55 0.14 0.14 +éculée éculé ADJ f s 0.19 1.55 0.01 0.20 +éculées éculé ADJ f p 0.19 1.55 0.01 0.81 +éculés éculer VER m p 0.23 0.54 0.10 0.27 par:pas; +écuma écumer VER 0.94 3.92 0.00 0.07 ind:pas:3s; +écumai écumer VER 0.94 3.92 0.00 0.07 ind:pas:1s; +écumaient écumer VER 0.94 3.92 0.02 0.34 ind:imp:3p; +écumais écumer VER 0.94 3.92 0.02 0.14 ind:imp:1s; +écumait écumer VER 0.94 3.92 0.01 0.61 ind:imp:3s; +écumant écumer VER 0.94 3.92 0.01 0.68 par:pre; +écumante écumant ADJ f s 0.03 0.95 0.01 0.34 +écumantes écumant ADJ f p 0.03 0.95 0.00 0.20 +écumants écumant ADJ m p 0.03 0.95 0.01 0.20 +écume écume NOM f s 2.31 16.15 2.31 16.08 +écument écumer VER 0.94 3.92 0.04 0.20 ind:pre:3p; +écumer écumer VER 0.94 3.92 0.31 0.61 inf; +écumera écumer VER 0.94 3.92 0.01 0.00 ind:fut:3s; +écumeront écumer VER 0.94 3.92 0.01 0.00 ind:fut:3p; +écumes écume NOM f p 2.31 16.15 0.00 0.07 +écumeur écumeur NOM m s 0.27 0.47 0.27 0.20 +écumeurs écumeur NOM m p 0.27 0.47 0.00 0.20 +écumeuse écumeux ADJ f s 0.00 1.22 0.00 0.54 +écumeuses écumeux ADJ f p 0.00 1.22 0.00 0.07 +écumeux écumeux ADJ m 0.00 1.22 0.00 0.61 +écumez écumer VER 0.94 3.92 0.01 0.00 ind:pre:2p; +écumiez écumer VER 0.94 3.92 0.02 0.00 ind:imp:2p; +écumoire écumoire NOM f s 0.30 0.88 0.30 0.68 +écumoires écumoire NOM f p 0.30 0.88 0.00 0.20 +écumâmes écumer VER 0.94 3.92 0.00 0.07 ind:pas:1p; +écumèrent écumer VER 0.94 3.92 0.01 0.00 ind:pas:3p; +écumé écumer VER m s 0.94 3.92 0.33 0.41 par:pas; +écumée écumer VER f s 0.94 3.92 0.00 0.07 par:pas; +écureuil écureuil NOM m s 7.22 10.41 5.71 8.85 +écureuils écureuil NOM m p 7.22 10.41 1.51 1.55 +écurie écurie NOM f s 6.88 12.84 5.08 8.85 +écuries écurie NOM f p 6.88 12.84 1.80 3.99 +écus écu NOM m p 1.75 4.59 1.11 3.11 +écusson écusson NOM m s 0.37 3.78 0.32 2.23 +écussonné écussonner VER m s 0.00 0.61 0.00 0.27 par:pas; +écussonnées écussonner VER f p 0.00 0.61 0.00 0.07 par:pas; +écussonnés écussonner VER m p 0.00 0.61 0.00 0.27 par:pas; +écussons écusson NOM m p 0.37 3.78 0.05 1.55 +écuyer écuyer NOM m s 1.56 5.27 1.18 3.04 +écuyers écuyer NOM m p 1.56 5.27 0.12 1.49 +écuyère écuyer NOM f s 1.56 5.27 0.26 0.54 +écuyères écuyer NOM f p 1.56 5.27 0.00 0.20 +édam édam NOM m s 0.03 0.34 0.03 0.34 +éden éden NOM s 0.42 2.36 0.42 2.30 +édens éden NOM m p 0.42 2.36 0.00 0.07 +édenté édenté ADJ m s 0.43 3.58 0.23 0.74 +édentée édenté ADJ f s 0.43 3.58 0.15 1.69 +édentées édenté ADJ f p 0.43 3.58 0.01 0.81 +édentés édenté ADJ m p 0.43 3.58 0.04 0.34 +édicte édicter VER 0.28 0.61 0.10 0.07 imp:pre:2s;ind:pre:3s; +édicter édicter VER 0.28 0.61 0.01 0.14 inf; +édicté édicter VER m s 0.28 0.61 0.15 0.07 par:pas; +édictée édicter VER f s 0.28 0.61 0.00 0.20 par:pas; +édictées édicter VER f p 0.28 0.61 0.02 0.14 par:pas; +édicule édicule NOM m s 0.40 0.20 0.40 0.14 +édicules édicule NOM m p 0.40 0.20 0.00 0.07 +édifia édifier VER 0.90 11.96 0.12 0.27 ind:pas:3s; +édifiaient édifier VER 0.90 11.96 0.02 0.61 ind:imp:3p; +édifiait édifier VER 0.90 11.96 0.14 0.88 ind:imp:3s; +édifiant édifiant ADJ m s 0.76 4.12 0.51 1.28 +édifiante édifiant ADJ f s 0.76 4.12 0.16 1.28 +édifiantes édifiant ADJ f p 0.76 4.12 0.03 1.08 +édifiants édifiant ADJ m p 0.76 4.12 0.05 0.47 +édification édification NOM f s 0.38 1.28 0.38 1.28 +édifice édifice NOM m s 3.25 13.99 2.71 10.95 +édifices édifice NOM m p 3.25 13.99 0.53 3.04 +édifie édifier VER 0.90 11.96 0.02 1.08 ind:pre:1s;ind:pre:3s; +édifient édifier VER 0.90 11.96 0.01 0.27 ind:pre:3p; +édifier édifier VER 0.90 11.96 0.31 3.04 inf; +édifierait édifier VER 0.90 11.96 0.00 0.07 cnd:pre:3s; +édifierons édifier VER 0.90 11.96 0.01 0.00 ind:fut:1p; +édifions édifier VER 0.90 11.96 0.16 0.07 ind:pre:1p; +édifièrent édifier VER 0.90 11.96 0.00 0.14 ind:pas:3p; +édifié édifier VER m s 0.90 11.96 0.06 2.84 par:pas; +édifiée édifier VER f s 0.90 11.96 0.03 1.35 par:pas; +édifiées édifier VER f p 0.90 11.96 0.00 0.34 par:pas; +édifiés édifier VER m p 0.90 11.96 0.01 0.68 par:pas; +édiles édile NOM m p 0.08 0.14 0.08 0.14 +édilitaire édilitaire ADJ f s 0.00 0.20 0.00 0.07 +édilitaires édilitaire ADJ m p 0.00 0.20 0.00 0.14 +édit édit NOM m s 0.35 0.74 0.32 0.61 +éditait éditer VER 0.69 2.36 0.01 0.14 ind:imp:3s; +édite éditer VER 0.69 2.36 0.08 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éditer éditer VER 0.69 2.36 0.31 0.54 inf; +éditera éditer VER 0.69 2.36 0.02 0.07 ind:fut:3s; +éditerais éditer VER 0.69 2.36 0.00 0.07 cnd:pre:1s; +éditeur éditeur NOM m s 8.46 12.30 6.84 8.78 +éditeurs éditeur NOM m p 8.46 12.30 1.37 3.45 +édition édition NOM f s 9.61 16.62 7.83 10.61 +éditions édition NOM f p 9.61 16.62 1.78 6.01 +édito édito NOM m s 0.16 0.14 0.12 0.07 +éditons éditer VER 0.69 2.36 0.01 0.07 ind:pre:1p; +éditorial éditorial NOM m s 0.57 2.16 0.40 1.42 +éditoriale éditorial ADJ f s 0.19 0.34 0.08 0.14 +éditorialiste éditorialiste NOM s 0.06 0.68 0.03 0.34 +éditorialistes éditorialiste NOM p 0.06 0.68 0.02 0.34 +éditoriaux éditorial NOM m p 0.57 2.16 0.17 0.74 +éditos édito NOM m p 0.16 0.14 0.04 0.07 +éditrice éditeur NOM f s 8.46 12.30 0.26 0.07 +éditrices éditrice NOM f p 0.04 0.00 0.04 0.00 +édits édit NOM m p 0.35 0.74 0.04 0.14 +édité éditer VER m s 0.69 2.36 0.16 0.54 par:pas; +éditée éditer VER f s 0.69 2.36 0.05 0.20 par:pas; +éditées éditer VER f p 0.69 2.36 0.01 0.07 par:pas; +édités éditer VER m p 0.69 2.36 0.01 0.54 par:pas; +édouardienne édouardien ADJ f s 0.02 0.07 0.02 0.07 +édredon édredon NOM m s 0.59 6.22 0.39 5.00 +édredons édredon NOM m p 0.59 6.22 0.20 1.22 +éducable éducable ADJ s 0.01 0.20 0.00 0.14 +éducables éducable ADJ p 0.01 0.20 0.01 0.07 +éducateur éducateur NOM m s 1.05 2.84 0.52 0.81 +éducateurs éducateur NOM m p 1.05 2.84 0.27 0.74 +éducatif éducatif ADJ m s 2.04 1.08 1.18 0.34 +éducatifs éducatif ADJ m p 2.04 1.08 0.27 0.20 +éducation éducation NOM f s 20.48 27.23 20.45 27.09 +éducationnel éducationnel ADJ m s 0.02 0.00 0.01 0.00 +éducationnelle éducationnel ADJ f s 0.02 0.00 0.01 0.00 +éducations éducation NOM f p 20.48 27.23 0.04 0.14 +éducative éducatif ADJ f s 2.04 1.08 0.34 0.14 +éducatives éducatif ADJ f p 2.04 1.08 0.25 0.41 +éducatrice éducateur NOM f s 1.05 2.84 0.27 0.88 +éducatrices éducateur NOM f p 1.05 2.84 0.00 0.41 +éduen éduen ADJ m s 0.00 0.41 0.00 0.07 +éduennes éduen ADJ f p 0.00 0.41 0.00 0.07 +éduens éduen ADJ m p 0.00 0.41 0.00 0.27 +édulcorais édulcorer VER 0.12 0.54 0.00 0.07 ind:imp:1s; +édulcorant édulcorant NOM m s 0.08 0.00 0.08 0.00 +édulcorer édulcorer VER 0.12 0.54 0.02 0.00 inf; +édulcoré édulcorer VER m s 0.12 0.54 0.05 0.07 par:pas; +édulcorée édulcorer VER f s 0.12 0.54 0.05 0.20 par:pas; +édulcorées édulcorer VER f p 0.12 0.54 0.00 0.20 par:pas; +édénique édénique ADJ s 0.11 0.34 0.01 0.20 +édéniques édénique ADJ m p 0.11 0.34 0.10 0.14 +éduquais éduquer VER 8.07 3.78 0.00 0.07 ind:imp:1s; +éduquant éduquer VER 8.07 3.78 0.11 0.00 par:pre; +éduque éduquer VER 8.07 3.78 0.41 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éduquer éduquer VER 8.07 3.78 3.96 1.69 inf; +éduquera éduquer VER 8.07 3.78 0.03 0.07 ind:fut:3s; +éduquez éduquer VER 8.07 3.78 0.03 0.00 imp:pre:2p;ind:pre:2p; +éduquons éduquer VER 8.07 3.78 0.02 0.00 ind:pre:1p; +éduqué éduquer VER m s 8.07 3.78 1.95 0.68 par:pas; +éduquée éduquer VER f s 8.07 3.78 0.48 0.27 par:pas; +éduquées éduquer VER f p 8.07 3.78 0.29 0.00 par:pas; +éduqués éduquer VER m p 8.07 3.78 0.79 0.74 par:pas; +ufologie ufologie NOM f s 0.04 0.00 0.04 0.00 +égaie égayer VER 1.39 5.68 0.02 0.20 ind:pre:3s; +égaieraient égayer VER 1.39 5.68 0.01 0.14 cnd:pre:3p; +égaierait égayer VER 1.39 5.68 0.00 0.07 cnd:pre:3s; +égaieront égayer VER 1.39 5.68 0.20 0.00 ind:fut:3p; +égailla égailler VER 0.00 2.16 0.00 0.14 ind:pas:3s; +égaillaient égailler VER 0.00 2.16 0.00 0.27 ind:imp:3p; +égaillait égailler VER 0.00 2.16 0.00 0.07 ind:imp:3s; +égaillant égailler VER 0.00 2.16 0.00 0.20 par:pre; +égaillent égailler VER 0.00 2.16 0.00 0.41 ind:pre:3p; +égailler égailler VER 0.00 2.16 0.00 0.47 inf; +égaillèrent égailler VER 0.00 2.16 0.00 0.27 ind:pas:3p; +égaillée égailler VER f s 0.00 2.16 0.00 0.14 par:pas; +égaillées égailler VER f p 0.00 2.16 0.00 0.07 par:pas; +égaillés égailler VER m p 0.00 2.16 0.00 0.14 par:pas; +égal égal ADJ m s 38.08 39.32 27.40 20.27 +égala égaler VER 4.96 4.39 0.02 0.07 ind:pas:3s; +égalable égalable ADJ f s 0.01 0.00 0.01 0.00 +égalaient égaler VER 4.96 4.39 0.00 0.07 ind:imp:3p; +égalais égaler VER 4.96 4.39 0.00 0.07 ind:imp:1s; +égalait égaler VER 4.96 4.39 0.06 0.54 ind:imp:3s; +égalant égaler VER 4.96 4.39 0.01 0.20 par:pre; +égale égal ADJ f s 38.08 39.32 4.51 12.91 +également également ADV 32.19 71.01 32.19 71.01 +égalent égaler VER 4.96 4.39 0.79 0.34 ind:pre:3p; +égaler égaler VER 4.96 4.39 1.12 1.35 inf; +égalera égaler VER 4.96 4.39 0.09 0.07 ind:fut:3s; +égalerai égaler VER 4.96 4.39 0.01 0.00 ind:fut:1s; +égalerais égaler VER 4.96 4.39 0.01 0.00 cnd:pre:1s; +égalerait égaler VER 4.96 4.39 0.02 0.14 cnd:pre:3s; +égaleras égaler VER 4.96 4.39 0.01 0.00 ind:fut:2s; +égaleront égaler VER 4.96 4.39 0.01 0.07 ind:fut:3p; +égales égal ADJ f p 38.08 39.32 2.98 3.31 +égalisa égaliser VER 1.76 3.04 0.00 0.20 ind:pas:3s; +égalisais égaliser VER 1.76 3.04 0.00 0.07 ind:imp:1s; +égalisait égaliser VER 1.76 3.04 0.01 0.88 ind:imp:3s; +égalisant égaliser VER 1.76 3.04 0.00 0.14 par:pre; +égalisateur égalisateur ADJ m s 0.02 0.20 0.01 0.14 +égalisateurs égalisateur ADJ m p 0.02 0.20 0.00 0.07 +égalisation égalisation NOM f s 0.04 0.27 0.04 0.27 +égalisatrice égalisateur ADJ f s 0.02 0.20 0.01 0.00 +égalise égaliser VER 1.76 3.04 0.19 0.54 ind:pre:1s;ind:pre:3s; +égalisent égaliser VER 1.76 3.04 0.02 0.07 ind:pre:3p; +égaliser égaliser VER 1.76 3.04 0.87 0.74 inf; +égaliseur égaliseur NOM m s 0.05 0.00 0.05 0.00 +égalisez égaliser VER 1.76 3.04 0.03 0.00 imp:pre:2p;ind:pre:2p; +égalisèrent égaliser VER 1.76 3.04 0.00 0.07 ind:pas:3p; +égalisé égaliser VER m s 1.76 3.04 0.62 0.27 par:pas; +égalisées égaliser VER f p 1.76 3.04 0.01 0.00 par:pas; +égalisés égaliser VER m p 1.76 3.04 0.01 0.07 par:pas; +égalitaire égalitaire ADJ s 0.09 0.34 0.09 0.34 +égalitarisme égalitarisme NOM m s 0.00 0.07 0.00 0.07 +égalité égalité NOM f s 6.99 8.18 6.96 8.11 +égalités égalité NOM f p 6.99 8.18 0.02 0.07 +égalât égaler VER 4.96 4.39 0.14 0.07 sub:imp:3s; +égalé égaler VER m s 4.96 4.39 0.33 0.14 par:pas; +égalée égaler VER f s 4.96 4.39 0.07 0.00 par:pas; +égalées égaler VER f p 4.96 4.39 0.00 0.07 par:pas; +égara égarer VER 10.55 22.77 0.00 0.14 ind:pas:3s; +égarai égarer VER 10.55 22.77 0.00 0.14 ind:pas:1s; +égaraient égarer VER 10.55 22.77 0.00 0.61 ind:imp:3p; +égarais égarer VER 10.55 22.77 0.00 0.20 ind:imp:1s; +égarait égarer VER 10.55 22.77 0.04 1.42 ind:imp:3s; +égarant égarer VER 10.55 22.77 0.02 0.34 par:pre; +égard égard NOM m s 9.19 65.61 6.77 58.31 +égards égard NOM m p 9.19 65.61 2.42 7.30 +égare égarer VER 10.55 22.77 2.25 2.23 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +égarement égarement NOM m s 1.04 3.65 0.44 2.50 +égarements égarement NOM m p 1.04 3.65 0.61 1.15 +égarent égarer VER 10.55 22.77 0.34 0.81 ind:pre:3p; +égarer égarer VER 10.55 22.77 1.51 3.11 inf; +égareraient égarer VER 10.55 22.77 0.00 0.07 cnd:pre:3p; +égarerais égarer VER 10.55 22.77 0.00 0.07 cnd:pre:1s; +égarerait égarer VER 10.55 22.77 0.01 0.20 cnd:pre:3s; +égarerions égarer VER 10.55 22.77 0.00 0.07 cnd:pre:1p; +égares égarer VER 10.55 22.77 0.27 0.07 ind:pre:2s; +égarez égarer VER 10.55 22.77 0.34 0.07 imp:pre:2p;ind:pre:2p; +égarons égarer VER 10.55 22.77 0.18 0.14 imp:pre:1p;ind:pre:1p; +égarât égarer VER 10.55 22.77 0.00 0.07 sub:imp:3s; +égarèrent égarer VER 10.55 22.77 0.00 0.20 ind:pas:3p; +égaré égarer VER m s 10.55 22.77 3.27 5.81 par:pas; +égarée égaré ADJ f s 3.43 11.89 0.91 2.77 +égarées égaré ADJ f p 3.43 11.89 0.37 0.68 +égarés égarer VER m p 10.55 22.77 1.21 2.91 par:pas; +égaux égal ADJ m p 38.08 39.32 3.18 2.84 +égaya égayer VER 1.39 5.68 0.00 0.27 ind:pas:3s; +égayaient égayer VER 1.39 5.68 0.00 0.20 ind:imp:3p; +égayait égayer VER 1.39 5.68 0.00 0.88 ind:imp:3s; +égayant égayer VER 1.39 5.68 0.00 0.14 par:pre; +égayante égayant ADJ f s 0.00 0.07 0.00 0.07 +égaye égayer VER 1.39 5.68 0.07 0.54 imp:pre:2s;ind:pre:3s; +égayer égayer VER 1.39 5.68 1.00 1.42 inf; +égayerais égayer VER 1.39 5.68 0.01 0.00 cnd:pre:1s; +égayez égayer VER 1.39 5.68 0.01 0.00 imp:pre:2p; +égayât égayer VER 1.39 5.68 0.00 0.07 sub:imp:3s; +égayèrent égayer VER 1.39 5.68 0.00 0.07 ind:pas:3p; +égayé égayer VER m s 1.39 5.68 0.06 0.95 par:pas; +égayée égayer VER f s 1.39 5.68 0.01 0.54 par:pas; +égayées égayer VER f p 1.39 5.68 0.00 0.07 par:pas; +égayés égayer VER m p 1.39 5.68 0.00 0.14 par:pas; +égide égide NOM f s 0.20 0.95 0.20 0.95 +égipan égipan NOM m s 0.00 0.14 0.00 0.07 +égipans égipan NOM m p 0.00 0.14 0.00 0.07 +églantier églantier NOM m s 0.00 0.61 0.00 0.07 +églantiers églantier NOM m p 0.00 0.61 0.00 0.54 +églantine églantine NOM f s 0.96 2.03 0.95 1.76 +églantines églantine NOM f p 0.96 2.03 0.01 0.27 +église église NOM f s 64.75 145.07 60.20 123.58 +églises église NOM f p 64.75 145.07 4.55 21.49 +églogue églogue NOM f s 0.10 0.34 0.00 0.27 +églogues églogue NOM f p 0.10 0.34 0.10 0.07 +égoïne égoïne NOM f s 0.00 0.47 0.00 0.47 +égoïsme égoïsme NOM m s 2.15 9.53 2.15 9.39 +égoïsmes égoïsme NOM m p 2.15 9.53 0.00 0.14 +égoïste égoïste ADJ s 8.13 7.91 7.27 6.82 +égoïstement égoïstement ADV 0.24 0.41 0.24 0.41 +égoïstes égoïste ADJ p 8.13 7.91 0.86 1.08 +égocentrique égocentrique ADJ s 1.49 0.34 1.21 0.34 +égocentriques égocentrique ADJ p 1.49 0.34 0.28 0.00 +égocentrisme égocentrisme NOM m s 0.23 0.27 0.23 0.20 +égocentrismes égocentrisme NOM m p 0.23 0.27 0.00 0.07 +égocentriste égocentriste NOM s 0.03 0.07 0.03 0.00 +égocentristes égocentriste NOM p 0.03 0.07 0.00 0.07 +égorge égorger VER 9.04 9.66 2.74 1.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égorgea égorger VER 9.04 9.66 0.14 0.07 ind:pas:3s; +égorgeaient égorger VER 9.04 9.66 0.00 0.14 ind:imp:3p; +égorgeais égorger VER 9.04 9.66 0.01 0.00 ind:imp:1s; +égorgeait égorger VER 9.04 9.66 0.16 0.74 ind:imp:3s; +égorgeant égorger VER 9.04 9.66 0.14 0.14 par:pre; +égorgement égorgement NOM m s 0.05 0.74 0.05 0.34 +égorgements égorgement NOM m p 0.05 0.74 0.00 0.41 +égorgent égorger VER 9.04 9.66 0.35 0.34 ind:pre:3p; +égorgeoir égorgeoir NOM m s 0.00 0.14 0.00 0.14 +égorger égorger VER 9.04 9.66 2.96 2.84 inf;; +égorgerai égorger VER 9.04 9.66 0.04 0.00 ind:fut:1s; +égorgeraient égorger VER 9.04 9.66 0.02 0.00 cnd:pre:3p; +égorgerais égorger VER 9.04 9.66 0.15 0.00 cnd:pre:1s; +égorgeras égorger VER 9.04 9.66 0.01 0.00 ind:fut:2s; +égorgeront égorger VER 9.04 9.66 0.04 0.00 ind:fut:3p; +égorgeur égorgeur NOM m s 0.20 0.95 0.19 0.34 +égorgeurs égorgeur NOM m p 0.20 0.95 0.01 0.54 +égorgeuses égorgeur NOM f p 0.20 0.95 0.00 0.07 +égorgez égorger VER 9.04 9.66 0.00 0.07 imp:pre:2p; +égorgèrent égorger VER 9.04 9.66 0.00 0.07 ind:pas:3p; +égorgé égorger VER m s 9.04 9.66 1.14 1.89 par:pas; +égorgée égorger VER f s 9.04 9.66 0.65 0.54 par:pas; +égorgées égorger VER f p 9.04 9.66 0.16 0.27 par:pas; +égorgés égorger VER m p 9.04 9.66 0.35 1.22 par:pas; +égosilla égosiller VER 0.20 2.03 0.00 0.14 ind:pas:3s; +égosillaient égosiller VER 0.20 2.03 0.00 0.14 ind:imp:3p; +égosillait égosiller VER 0.20 2.03 0.10 0.54 ind:imp:3s; +égosillant égosiller VER 0.20 2.03 0.00 0.20 par:pre; +égosille égosiller VER 0.20 2.03 0.02 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égosillent égosiller VER 0.20 2.03 0.01 0.14 ind:pre:3p; +égosiller égosiller VER 0.20 2.03 0.07 0.47 inf; +égotisme égotisme NOM m s 0.16 0.20 0.16 0.20 +égotiste égotiste ADJ s 0.05 0.07 0.05 0.00 +égotistes égotiste NOM p 0.03 0.07 0.02 0.00 +égout égout NOM m s 7.01 8.45 3.23 6.22 +égoutier égoutier NOM m s 0.06 1.76 0.01 1.62 +égoutiers égoutier NOM m p 0.06 1.76 0.05 0.14 +égouts égout NOM m p 7.01 8.45 3.78 2.23 +égoutta égoutter VER 0.34 4.39 0.00 0.34 ind:pas:3s; +égouttaient égoutter VER 0.34 4.39 0.01 0.54 ind:imp:3p; +égouttait égoutter VER 0.34 4.39 0.10 1.28 ind:imp:3s; +égouttant égoutter VER 0.34 4.39 0.00 0.54 par:pre; +égoutte égoutter VER 0.34 4.39 0.01 0.14 ind:pre:3s; +égouttement égouttement NOM m s 0.00 0.34 0.00 0.34 +égouttent égoutter VER 0.34 4.39 0.01 0.34 ind:pre:3p; +égoutter égoutter VER 0.34 4.39 0.18 0.68 inf; +égoutterait égoutter VER 0.34 4.39 0.00 0.07 cnd:pre:3s; +égouttez égoutter VER 0.34 4.39 0.00 0.14 imp:pre:2p; +égouttis égouttis NOM m 0.00 0.07 0.00 0.07 +égouttoir égouttoir NOM m s 0.14 0.54 0.14 0.54 +égouttèrent égoutter VER 0.34 4.39 0.00 0.07 ind:pas:3p; +égoutté égoutter VER m s 0.34 4.39 0.02 0.27 par:pas; +égrainer égrainer VER 0.00 0.07 0.00 0.07 inf; +égrappait égrapper VER 0.00 0.07 0.00 0.07 ind:imp:3s; +égratigna égratigner VER 0.57 1.62 0.00 0.14 ind:pas:3s; +égratignaient égratigner VER 0.57 1.62 0.00 0.14 ind:imp:3p; +égratignait égratigner VER 0.57 1.62 0.00 0.14 ind:imp:3s; +égratignant égratigner VER 0.57 1.62 0.00 0.14 par:pre; +égratigne égratigner VER 0.57 1.62 0.07 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +égratignent égratigner VER 0.57 1.62 0.03 0.07 ind:pre:3p; +égratigner égratigner VER 0.57 1.62 0.15 0.14 inf; +égratignes égratigner VER 0.57 1.62 0.01 0.07 ind:pre:2s; +égratigné égratigner VER m s 0.57 1.62 0.25 0.34 par:pas; +égratignée égratigner VER f s 0.57 1.62 0.05 0.27 par:pas; +égratignure égratignure NOM f s 4.86 2.23 3.97 1.35 +égratignures égratignure NOM f p 4.86 2.23 0.89 0.88 +égratignés égratigner VER m p 0.57 1.62 0.02 0.07 par:pas; +égrena égrener VER 0.32 7.70 0.01 0.20 ind:pas:3s; +égrenage égrenage NOM m s 0.01 0.00 0.01 0.00 +égrenaient égrener VER 0.32 7.70 0.01 0.74 ind:imp:3p; +égrenais égrener VER 0.32 7.70 0.00 0.27 ind:imp:1s;ind:imp:2s; +égrenait égrener VER 0.32 7.70 0.00 0.61 ind:imp:3s; +égrenant égrener VER 0.32 7.70 0.00 1.22 par:pre; +égrener égrener VER 0.32 7.70 0.02 1.35 inf; +égreneuse égreneur NOM f s 0.44 0.00 0.44 0.00 +égrenèrent égrener VER 0.32 7.70 0.00 0.27 ind:pas:3p; +égrené égrener VER m s 0.32 7.70 0.10 0.34 par:pas; +égrenée égrener VER f s 0.32 7.70 0.00 0.14 par:pas; +égrenées égrener VER f p 0.32 7.70 0.00 0.54 par:pas; +égrenés égrener VER m p 0.32 7.70 0.01 0.34 par:pas; +égrillard égrillard ADJ m s 0.00 1.55 0.00 0.74 +égrillarde égrillard ADJ f s 0.00 1.55 0.00 0.27 +égrillardes égrillard ADJ f p 0.00 1.55 0.00 0.27 +égrillards égrillard ADJ m p 0.00 1.55 0.00 0.27 +égrotant égrotant ADJ m s 0.00 0.34 0.00 0.20 +égrotantes égrotant ADJ f p 0.00 0.34 0.00 0.07 +égrotants égrotant ADJ m p 0.00 0.34 0.00 0.07 +égrène égrener VER 0.32 7.70 0.16 1.22 imp:pre:2s;ind:pre:3s; +égrènements égrènement NOM m p 0.00 0.07 0.00 0.07 +égrènent égrener VER 0.32 7.70 0.01 0.47 ind:pre:3p; +égéenne égéen ADJ f s 0.00 0.07 0.00 0.07 +égérie égérie NOM f s 0.46 0.27 0.46 0.27 +égyptien égyptien ADJ m s 7.48 4.73 2.60 1.96 +égyptienne égyptien ADJ f s 7.48 4.73 1.31 1.15 +égyptiennes égyptien ADJ f p 7.48 4.73 0.41 0.54 +égyptiens égyptien ADJ m p 7.48 4.73 3.16 1.08 +égyptologie égyptologie NOM f s 0.06 0.14 0.06 0.14 +égyptologue égyptologue NOM s 0.17 0.14 0.04 0.00 +égyptologues égyptologue NOM p 0.17 0.14 0.14 0.14 +uhlan uhlan NOM m s 0.19 1.15 0.14 0.14 +uhlans uhlan NOM m p 0.19 1.15 0.05 1.01 +éhonté éhonté ADJ m s 1.07 1.28 0.40 0.20 +éhontée éhonté ADJ f s 1.07 1.28 0.60 0.61 +éhontées éhonté ADJ f p 1.07 1.28 0.01 0.07 +éhontés éhonté ADJ m p 1.07 1.28 0.06 0.41 +uht uht ADJ m s 0.01 0.00 0.01 0.00 +éjacula éjaculer VER 1.98 1.42 0.27 0.14 ind:pas:3s; +éjaculait éjaculer VER 1.98 1.42 0.01 0.07 ind:imp:3s; +éjaculant éjaculer VER 1.98 1.42 0.16 0.07 par:pre; +éjaculat éjaculat NOM m s 0.01 0.20 0.01 0.20 +éjaculateur éjaculateur NOM m s 0.16 0.14 0.15 0.14 +éjaculateurs éjaculateur NOM m p 0.16 0.14 0.01 0.00 +éjaculation éjaculation NOM f s 1.40 1.42 1.11 1.22 +éjaculations éjaculation NOM f p 1.40 1.42 0.29 0.20 +éjacule éjaculer VER 1.98 1.42 0.44 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éjaculent éjaculer VER 1.98 1.42 0.04 0.14 ind:pre:3p; +éjaculer éjaculer VER 1.98 1.42 0.33 0.34 inf; +éjaculé éjaculer VER m s 1.98 1.42 0.73 0.27 par:pas; +éjaculés éjaculer VER m p 1.98 1.42 0.00 0.07 par:pas; +éjecta éjecter VER 4.46 3.18 0.02 0.07 ind:pas:3s; +éjectable éjectable ADJ m s 0.38 0.07 0.38 0.00 +éjectables éjectable ADJ f p 0.38 0.07 0.00 0.07 +éjectaient éjecter VER 4.46 3.18 0.00 0.20 ind:imp:3p; +éjectait éjecter VER 4.46 3.18 0.02 0.20 ind:imp:3s; +éjectant éjecter VER 4.46 3.18 0.06 0.14 par:pre; +éjectas éjecter VER 4.46 3.18 0.01 0.00 ind:pas:2s; +éjecte éjecter VER 4.46 3.18 0.56 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éjectent éjecter VER 4.46 3.18 0.02 0.00 ind:pre:3p; +éjecter éjecter VER 4.46 3.18 1.18 0.54 inf; +éjectera éjecter VER 4.46 3.18 0.03 0.00 ind:fut:3s; +éjecterais éjecter VER 4.46 3.18 0.12 0.00 cnd:pre:1s;cnd:pre:2s; +éjecteur éjecteur NOM m s 0.10 0.00 0.05 0.00 +éjecteurs éjecteur NOM m p 0.10 0.00 0.05 0.00 +éjectez éjecter VER 4.46 3.18 0.08 0.00 imp:pre:2p;ind:pre:2p; +éjection éjection NOM f s 0.44 0.14 0.42 0.14 +éjections éjection NOM f p 0.44 0.14 0.02 0.00 +éjectons éjecter VER 4.46 3.18 0.02 0.00 imp:pre:1p;ind:pre:1p; +éjectèrent éjecter VER 4.46 3.18 0.00 0.07 ind:pas:3p; +éjecté éjecter VER m s 4.46 3.18 1.40 0.74 par:pas; +éjectée éjecter VER f s 4.46 3.18 0.61 0.41 par:pas; +éjectées éjecter VER f p 4.46 3.18 0.09 0.20 par:pas; +éjectés éjecter VER m p 4.46 3.18 0.23 0.20 par:pas; +ukase ukase NOM m s 0.20 0.07 0.20 0.00 +ukases ukase NOM m p 0.20 0.07 0.00 0.07 +ukrainien ukrainien NOM m s 0.69 0.61 0.39 0.07 +ukrainienne ukrainien ADJ f s 0.61 0.88 0.28 0.14 +ukrainiennes ukrainien ADJ f p 0.61 0.88 0.01 0.14 +ukrainiens ukrainien NOM m p 0.69 0.61 0.30 0.41 +ukulélé ukulélé NOM m s 0.16 0.07 0.16 0.07 +élabora élaborer VER 2.08 5.20 0.00 0.07 ind:pas:3s; +élaborai élaborer VER 2.08 5.20 0.01 0.07 ind:pas:1s; +élaboraient élaborer VER 2.08 5.20 0.00 0.20 ind:imp:3p; +élaborait élaborer VER 2.08 5.20 0.06 0.68 ind:imp:3s; +élaborant élaborer VER 2.08 5.20 0.00 0.20 par:pre; +élaboration élaboration NOM f s 0.23 1.76 0.23 1.62 +élaborations élaboration NOM f p 0.23 1.76 0.00 0.14 +élabore élaborer VER 2.08 5.20 0.25 0.14 ind:pre:1s;ind:pre:3s; +élaborent élaborer VER 2.08 5.20 0.10 0.14 ind:pre:3p; +élaborer élaborer VER 2.08 5.20 0.63 1.55 inf; +élaboreraient élaborer VER 2.08 5.20 0.00 0.07 cnd:pre:3p; +élaboriez élaborer VER 2.08 5.20 0.01 0.00 ind:imp:2p; +élaborions élaborer VER 2.08 5.20 0.00 0.07 ind:imp:1p; +élaborons élaborer VER 2.08 5.20 0.01 0.00 ind:pre:1p; +élaborèrent élaborer VER 2.08 5.20 0.02 0.07 ind:pas:3p; +élaboré élaborer VER m s 2.08 5.20 0.68 0.61 par:pas; +élaborée élaboré ADJ f s 1.22 0.68 0.27 0.34 +élaborées élaboré ADJ f p 1.22 0.68 0.18 0.00 +élaborés élaboré ADJ m p 1.22 0.68 0.36 0.07 +élagage élagage NOM m s 0.03 0.34 0.03 0.34 +élaguais élaguer VER 0.18 0.88 0.01 0.00 ind:imp:1s; +élaguait élaguer VER 0.18 0.88 0.00 0.14 ind:imp:3s; +élague élaguer VER 0.18 0.88 0.01 0.07 imp:pre:2s;ind:pre:1s; +élaguer élaguer VER 0.18 0.88 0.09 0.34 inf; +élagueur élagueur NOM m s 0.04 0.14 0.03 0.00 +élagueurs élagueur NOM m p 0.04 0.14 0.01 0.14 +élaguez élaguer VER 0.18 0.88 0.01 0.07 imp:pre:2p;ind:pre:2p; +élaguons élaguer VER 0.18 0.88 0.01 0.00 ind:pre:1p; +élagué élaguer VER m s 0.18 0.88 0.05 0.07 par:pas; +élagués élaguer VER m p 0.18 0.88 0.00 0.20 par:pas; +élan élan NOM m s 5.66 44.73 4.61 37.57 +élance élancer VER 2.25 20.27 0.94 3.85 imp:pre:2s;ind:pre:1s;ind:pre:3s; +élancement élancement NOM m s 0.13 2.30 0.04 1.22 +élancements élancement NOM m p 0.13 2.30 0.08 1.08 +élancent élancer VER 2.25 20.27 0.20 1.15 ind:pre:3p; +élancer élancer VER 2.25 20.27 0.61 3.85 inf; +élancera élancer VER 2.25 20.27 0.01 0.14 ind:fut:3s; +élanceraient élancer VER 2.25 20.27 0.00 0.07 cnd:pre:3p; +élancerait élancer VER 2.25 20.27 0.01 0.07 cnd:pre:3s; +élancerions élancer VER 2.25 20.27 0.00 0.07 cnd:pre:1p; +élanceront élancer VER 2.25 20.27 0.00 0.07 ind:fut:3p; +élancions élancer VER 2.25 20.27 0.00 0.27 ind:imp:1p; +élancèrent élancer VER 2.25 20.27 0.00 0.47 ind:pas:3p; +élancé élancer VER m s 2.25 20.27 0.21 0.68 par:pas; +élancée élancé ADJ f s 0.13 3.51 0.03 1.49 +élancées élancé ADJ f p 0.13 3.51 0.00 0.47 +élancés élancer VER m p 2.25 20.27 0.02 0.27 par:pas; +élans élan NOM m p 5.66 44.73 1.05 7.16 +élança élancer VER 2.25 20.27 0.03 4.46 ind:pas:3s; +élançai élancer VER 2.25 20.27 0.14 0.34 ind:pas:1s; +élançaient élancer VER 2.25 20.27 0.03 0.74 ind:imp:3p; +élançais élancer VER 2.25 20.27 0.00 0.41 ind:imp:1s; +élançait élancer VER 2.25 20.27 0.02 1.55 ind:imp:3s; +élançant élancer VER 2.25 20.27 0.00 1.28 par:pre; +élargît élargir VER 4.85 19.32 0.00 0.07 sub:imp:3s; +élargi élargir VER m s 4.85 19.32 0.72 2.36 par:pas; +élargie élargir VER f s 4.85 19.32 0.31 1.55 par:pas; +élargies élargir VER f p 4.85 19.32 0.04 0.61 par:pas; +élargir élargir VER 4.85 19.32 2.07 4.12 inf; +élargira élargir VER 4.85 19.32 0.12 0.07 ind:fut:3s; +élargirait élargir VER 4.85 19.32 0.01 0.14 cnd:pre:3s; +élargirent élargir VER 4.85 19.32 0.00 0.34 ind:pas:3p; +élargirez élargir VER 4.85 19.32 0.00 0.07 ind:fut:2p; +élargirons élargir VER 4.85 19.32 0.01 0.00 ind:fut:1p; +élargis élargir VER m p 4.85 19.32 0.26 0.81 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +élargissaient élargir VER 4.85 19.32 0.01 1.01 ind:imp:3p; +élargissait élargir VER 4.85 19.32 0.10 3.18 ind:imp:3s; +élargissant élargir VER 4.85 19.32 0.17 1.89 par:pre; +élargissement élargissement NOM m s 0.17 1.22 0.17 1.22 +élargissent élargir VER 4.85 19.32 0.09 0.47 ind:pre:3p; +élargissez élargir VER 4.85 19.32 0.07 0.00 imp:pre:2p; +élargissions élargir VER 4.85 19.32 0.00 0.07 ind:imp:1p; +élargit élargir VER 4.85 19.32 0.86 2.57 ind:pre:3s;ind:pas:3s; +élasticimétrie élasticimétrie NOM f s 0.01 0.00 0.01 0.00 +élasticité élasticité NOM f s 0.30 1.76 0.30 1.76 +élastique élastique NOM m s 2.12 6.35 1.73 4.26 +élastiques élastique NOM m p 2.12 6.35 0.39 2.09 +élastomère élastomère NOM m s 0.01 0.14 0.01 0.14 +ulcère ulcère NOM m s 4.69 2.50 3.98 1.76 +ulcères ulcère NOM m p 4.69 2.50 0.71 0.74 +ulcéra ulcérer VER 0.66 1.49 0.00 0.07 ind:pas:3s; +ulcérait ulcérer VER 0.66 1.49 0.00 0.07 ind:imp:3s; +ulcérant ulcérer VER 0.66 1.49 0.00 0.07 par:pre; +ulcérations ulcération NOM f p 0.01 0.20 0.01 0.20 +ulcérative ulcératif ADJ f s 0.01 0.00 0.01 0.00 +ulcéreuse ulcéreux ADJ f s 0.03 0.20 0.01 0.14 +ulcéreuses ulcéreux ADJ f p 0.03 0.20 0.00 0.07 +ulcéreux ulcéreux ADJ m s 0.03 0.20 0.01 0.00 +ulcéré ulcérer VER m s 0.66 1.49 0.48 0.68 par:pas; +ulcérée ulcéré ADJ f s 0.01 1.62 0.00 0.68 +ulcérées ulcéré ADJ f p 0.01 1.62 0.00 0.07 +ulcérés ulcérer VER m p 0.66 1.49 0.15 0.00 par:pas; +électeur électeur NOM m s 3.47 3.11 0.48 0.47 +électeurs électeur NOM m p 3.47 3.11 2.96 2.23 +électif électif ADJ m s 0.03 0.27 0.01 0.20 +élection élection NOM f s 17.17 14.12 5.95 4.32 +élections élection NOM f p 17.17 14.12 11.22 9.80 +élective électif ADJ f s 0.03 0.27 0.01 0.00 +électivement électivement ADV 0.00 0.14 0.00 0.14 +électives électif ADJ f p 0.03 0.27 0.00 0.07 +électoral électoral ADJ m s 3.01 4.39 0.32 1.55 +électorale électoral ADJ f s 3.01 4.39 2.23 1.55 +électoralement électoralement ADV 0.00 0.07 0.00 0.07 +électorales électoral ADJ f p 3.01 4.39 0.28 0.88 +électorat électorat NOM m s 0.24 0.07 0.24 0.07 +électoraux électoral ADJ m p 3.01 4.39 0.19 0.41 +électrice électeur NOM f s 3.47 3.11 0.02 0.20 +électrices électrice NOM f p 0.07 0.00 0.07 0.00 +électricien électricien NOM m s 2.79 2.64 2.62 1.82 +électricienne électricien NOM f s 2.79 2.64 0.00 0.07 +électriciennes électricien NOM f p 2.79 2.64 0.00 0.07 +électriciens électricien NOM m p 2.79 2.64 0.17 0.68 +électricité électricité NOM f s 15.76 12.97 15.76 12.97 +électrifia électrifier VER 1.22 0.54 0.01 0.00 ind:pas:3s; +électrifiait électrifier VER 1.22 0.54 0.00 0.07 ind:imp:3s; +électrifiant électrifier VER 1.22 0.54 0.02 0.00 par:pre; +électrification électrification NOM f s 0.02 0.27 0.02 0.27 +électrifier électrifier VER 1.22 0.54 0.03 0.00 inf; +électrifié électrifier VER m s 1.22 0.54 0.29 0.27 par:pas; +électrifiée électrifier VER f s 1.22 0.54 0.37 0.14 par:pas; +électrifiées électrifier VER f p 1.22 0.54 0.04 0.00 par:pas; +électrifiés électrifier VER m p 1.22 0.54 0.44 0.07 par:pas; +électrique électrique ADJ s 20.36 35.81 15.95 27.50 +électriquement électriquement ADV 0.21 0.47 0.21 0.47 +électriques électrique ADJ p 20.36 35.81 4.41 8.31 +électrisa électriser VER 0.25 2.03 0.00 0.20 ind:pas:3s; +électrisaient électriser VER 0.25 2.03 0.00 0.07 ind:imp:3p; +électrisais électriser VER 0.25 2.03 0.01 0.00 ind:imp:1s; +électrisait électriser VER 0.25 2.03 0.02 0.14 ind:imp:3s; +électrisant électrisant ADJ m s 0.23 0.27 0.18 0.14 +électrisante électrisant ADJ f s 0.23 0.27 0.05 0.14 +électrisation électrisation NOM f s 0.00 0.07 0.00 0.07 +électrise électriser VER 0.25 2.03 0.07 0.34 ind:pre:1s;ind:pre:3s; +électrisent électriser VER 0.25 2.03 0.01 0.07 ind:pre:3p; +électriser électriser VER 0.25 2.03 0.03 0.07 inf; +électrisèrent électriser VER 0.25 2.03 0.00 0.07 ind:pas:3p; +électrisé électriser VER m s 0.25 2.03 0.04 0.68 par:pas; +électrisée électriser VER f s 0.25 2.03 0.01 0.07 par:pas; +électrisées électriser VER f p 0.25 2.03 0.00 0.14 par:pas; +électro_acoustique électro_acoustique NOM f s 0.00 0.14 0.00 0.14 +électro_aimant électro_aimant NOM m s 0.02 0.00 0.02 0.00 +électro_encéphalogramme électro_encéphalogramme NOM m s 0.16 0.07 0.16 0.07 +électroacoustique électroacoustique NOM f s 0.01 0.00 0.01 0.00 +électroaimant électroaimant NOM m s 0.06 0.00 0.03 0.00 +électroaimants électroaimant NOM m p 0.06 0.00 0.03 0.00 +électrobiologie électrobiologie NOM f s 0.01 0.00 0.01 0.00 +électrocardiogramme électrocardiogramme NOM m s 0.25 0.34 0.25 0.34 +électrochimie électrochimie NOM f s 0.02 0.00 0.02 0.00 +électrochimique électrochimique ADJ f s 0.07 0.00 0.02 0.00 +électrochimiques électrochimique ADJ p 0.07 0.00 0.05 0.00 +électrochoc électrochoc NOM m s 3.14 0.74 0.28 0.54 +électrochocs électrochoc NOM m p 3.14 0.74 2.86 0.20 +électrocutant électrocuter VER 2.08 0.54 0.03 0.00 par:pre; +électrocute électrocuter VER 2.08 0.54 0.11 0.07 ind:pre:1s;ind:pre:3s; +électrocutent électrocuter VER 2.08 0.54 0.02 0.00 ind:pre:3p; +électrocuter électrocuter VER 2.08 0.54 0.47 0.07 inf; +électrocutera électrocuter VER 2.08 0.54 0.11 0.00 ind:fut:3s; +électrocutes électrocuter VER 2.08 0.54 0.02 0.00 ind:pre:2s; +électrocutez électrocuter VER 2.08 0.54 0.01 0.00 imp:pre:2p; +électrocution électrocution NOM f s 0.40 0.20 0.40 0.20 +électrocuté électrocuter VER m s 2.08 0.54 1.16 0.27 par:pas; +électrocutée électrocuter VER f s 2.08 0.54 0.14 0.14 par:pas; +électrocutés électrocuter VER m p 2.08 0.54 0.01 0.00 par:pas; +électrode électrode NOM f s 0.87 0.07 0.25 0.00 +électrodes électrode NOM f p 0.87 0.07 0.62 0.07 +électrodynamique électrodynamique NOM f s 0.00 0.07 0.00 0.07 +électroencéphalogramme électroencéphalogramme NOM m s 0.09 0.00 0.09 0.00 +électroencéphalographie électroencéphalographie NOM f s 0.02 0.00 0.02 0.00 +électrogène électrogène ADJ m s 1.10 0.34 1.10 0.34 +électrologie électrologie NOM f s 0.01 0.00 0.01 0.00 +électrolyse électrolyse NOM f s 0.05 0.20 0.05 0.20 +électrolyte électrolyte NOM m s 0.35 0.00 0.10 0.00 +électrolytes électrolyte NOM m p 0.35 0.00 0.25 0.00 +électrolytique électrolytique ADJ m s 0.05 0.07 0.05 0.07 +électromagnétique électromagnétique ADJ s 1.92 0.07 1.29 0.00 +électromagnétiques électromagnétique ADJ p 1.92 0.07 0.62 0.07 +électromagnétisme électromagnétisme NOM m s 0.11 0.00 0.11 0.00 +électromètre électromètre NOM m s 0.07 0.00 0.07 0.00 +électroménager électroménager NOM m s 0.26 0.34 0.26 0.34 +électron électron NOM m s 1.28 0.20 0.45 0.07 +électronicien électronicien NOM m s 0.06 0.07 0.04 0.00 +électroniciens électronicien NOM m p 0.06 0.07 0.02 0.07 +électronique électronique ADJ s 6.70 3.51 5.00 1.96 +électroniquement électroniquement ADV 0.21 0.00 0.21 0.00 +électroniques électronique ADJ p 6.70 3.51 1.69 1.55 +électrons électron NOM m p 1.28 0.20 0.83 0.14 +électronucléaire électronucléaire ADJ f s 0.01 0.00 0.01 0.00 +électronvolts électronvolt NOM m p 0.02 0.00 0.02 0.00 +électrophone électrophone NOM m s 0.28 3.04 0.28 2.97 +électrophones électrophone NOM m p 0.28 3.04 0.00 0.07 +électrophorèse électrophorèse NOM f s 0.01 0.00 0.01 0.00 +électrostatique électrostatique ADJ s 0.28 0.07 0.25 0.07 +électrostatiques électrostatique ADJ p 0.28 0.07 0.04 0.00 +électrum électrum NOM m s 0.27 0.07 0.27 0.07 +électuaires électuaire NOM m p 0.00 0.14 0.00 0.14 +éleusinienne éleusinien ADJ f s 0.00 0.07 0.00 0.07 +éleva élever VER 52.03 103.85 0.28 12.91 ind:pas:3s; +élevage élevage NOM m s 3.15 3.38 2.88 2.91 +élevages élevage NOM m p 3.15 3.38 0.28 0.47 +élevai élever VER 52.03 103.85 0.23 0.41 ind:pas:1s; +élevaient élever VER 52.03 103.85 0.17 4.73 ind:imp:3p; +élevais élever VER 52.03 103.85 0.26 0.61 ind:imp:1s;ind:imp:2s; +élevait élever VER 52.03 103.85 1.00 15.34 ind:imp:3s; +élevant élever VER 52.03 103.85 0.36 8.38 par:pre; +élever élever VER 52.03 103.85 15.57 20.20 ind:pre:2p;inf; +éleveur éleveur NOM m s 1.82 1.76 0.98 1.01 +éleveurs éleveur NOM m p 1.82 1.76 0.80 0.74 +éleveuse éleveur NOM f s 1.82 1.76 0.04 0.00 +élevez élever VER 52.03 103.85 0.69 0.27 imp:pre:2p;ind:pre:2p; +éleviez élever VER 52.03 103.85 0.23 0.00 ind:imp:2p; +élevions élever VER 52.03 103.85 0.02 0.07 ind:imp:1p; +élevons élever VER 52.03 103.85 0.34 0.14 imp:pre:1p;ind:pre:1p; +élevât élever VER 52.03 103.85 0.00 0.20 sub:imp:3s; +élevèrent élever VER 52.03 103.85 0.07 1.76 ind:pas:3p; +élevé élevé ADJ m s 25.02 30.68 14.37 15.20 +élevée élevé ADJ f s 25.02 30.68 5.82 7.50 +élevées élevé ADJ f p 25.02 30.68 1.06 1.76 +élevures élevure NOM f p 0.00 0.07 0.00 0.07 +élevés élevé ADJ m p 25.02 30.68 3.78 6.22 +élia élier VER 0.05 8.99 0.00 1.35 ind:pas:3s; +élias élier VER 0.05 8.99 0.04 0.00 ind:pas:2s; +éliciter éliciter VER 0.01 0.00 0.01 0.00 inf; +élie élier VER 0.05 8.99 0.01 7.64 imp:pre:2s;ind:pre:3s; +éligibilité éligibilité NOM f s 0.04 0.14 0.04 0.14 +éligible éligible ADJ s 0.11 0.20 0.10 0.07 +éligibles éligible ADJ p 0.11 0.20 0.01 0.14 +élime élimer VER 0.04 1.01 0.00 0.07 ind:pre:3s; +élimer élimer VER 0.04 1.01 0.01 0.00 inf; +élimina éliminer VER 30.28 8.04 0.01 0.20 ind:pas:3s; +éliminais éliminer VER 30.28 8.04 0.02 0.00 ind:imp:1s; +éliminait éliminer VER 30.28 8.04 0.17 0.61 ind:imp:3s; +éliminant éliminer VER 30.28 8.04 0.67 0.14 par:pre; +éliminateur éliminateur ADJ m s 0.03 0.00 0.01 0.00 +éliminateurs éliminateur ADJ m p 0.03 0.00 0.02 0.00 +élimination élimination NOM f s 1.55 1.96 1.47 1.89 +éliminations élimination NOM f p 1.55 1.96 0.08 0.07 +éliminatoire éliminatoire ADJ s 0.12 0.20 0.08 0.20 +éliminatoires éliminatoire NOM f p 0.32 0.34 0.29 0.34 +élimine éliminer VER 30.28 8.04 4.00 1.01 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éliminent éliminer VER 30.28 8.04 0.30 0.14 ind:pre:3p; +éliminer éliminer VER 30.28 8.04 14.66 3.58 inf; +éliminera éliminer VER 30.28 8.04 0.40 0.00 ind:fut:3s; +éliminerai éliminer VER 30.28 8.04 0.11 0.07 ind:fut:1s; +élimineraient éliminer VER 30.28 8.04 0.06 0.00 cnd:pre:3p; +éliminerais éliminer VER 30.28 8.04 0.04 0.07 cnd:pre:1s; +éliminerait éliminer VER 30.28 8.04 0.13 0.07 cnd:pre:3s; +élimineras éliminer VER 30.28 8.04 0.01 0.00 ind:fut:2s; +éliminerez éliminer VER 30.28 8.04 0.34 0.00 ind:fut:2p; +éliminerons éliminer VER 30.28 8.04 0.11 0.20 ind:fut:1p; +élimineront éliminer VER 30.28 8.04 0.06 0.07 ind:fut:3p; +élimines éliminer VER 30.28 8.04 0.47 0.07 ind:pre:2s; +éliminez éliminer VER 30.28 8.04 0.47 0.00 imp:pre:2p;ind:pre:2p; +éliminiez éliminer VER 30.28 8.04 0.03 0.00 ind:imp:2p; +éliminons éliminer VER 30.28 8.04 0.19 0.00 imp:pre:1p;ind:pre:1p; +éliminèrent éliminer VER 30.28 8.04 0.00 0.07 ind:pas:3p; +éliminé éliminer VER m s 30.28 8.04 5.47 0.95 par:pas; +éliminée éliminer VER f s 30.28 8.04 0.65 0.20 par:pas; +éliminées éliminer VER f p 30.28 8.04 0.25 0.14 par:pas; +éliminés éliminer VER m p 30.28 8.04 1.67 0.47 par:pas; +élimâmes élimer VER 0.04 1.01 0.00 0.07 ind:pas:1p; +élimé élimé ADJ m s 0.04 2.64 0.01 1.01 +élimée élimé ADJ f s 0.04 2.64 0.03 0.27 +élimées élimer VER f p 0.04 1.01 0.01 0.07 par:pas; +élimés élimer VER m p 0.04 1.01 0.02 0.14 par:pas; +élingue élingue NOM f s 0.02 0.00 0.02 0.00 +élirait élire VER 11.24 13.51 0.01 0.07 cnd:pre:3s; +élire élire VER 11.24 13.51 2.15 2.03 inf; +élirez élire VER 11.24 13.51 0.02 0.07 ind:fut:2p; +éliront élire VER 11.24 13.51 0.03 0.14 ind:fut:3p; +élis élire VER 11.24 13.51 2.00 0.07 imp:pre:2s;ind:pre:1s; +élisabéthain élisabéthain ADJ m s 0.05 0.27 0.02 0.07 +élisabéthaine élisabéthain ADJ f s 0.05 0.27 0.03 0.20 +élisaient élire VER 11.24 13.51 0.00 0.14 ind:imp:3p; +élisais élire VER 11.24 13.51 0.00 0.07 ind:imp:1s; +élisait élire VER 11.24 13.51 0.01 0.07 ind:imp:3s; +élisant élire VER 11.24 13.51 0.12 0.14 par:pre; +élise élire VER 11.24 13.51 0.27 4.86 sub:pre:1s;sub:pre:3s; +élisent élire VER 11.24 13.51 0.16 0.27 ind:pre:3p; +élisez élire VER 11.24 13.51 0.08 0.07 imp:pre:2p;ind:pre:2p; +élit élire VER 11.24 13.51 0.12 0.14 ind:pre:3s; +élite élite NOM f s 7.38 10.27 7.24 8.65 +élites élite NOM f p 7.38 10.27 0.14 1.62 +élitisme élitisme NOM m s 0.16 0.00 0.16 0.00 +élitiste élitiste ADJ s 0.28 0.34 0.25 0.20 +élitistes élitiste ADJ f p 0.28 0.34 0.03 0.14 +élixir élixir NOM m s 1.56 1.42 1.52 1.28 +élixirs élixir NOM m p 1.56 1.42 0.04 0.14 +ulna ulna NOM f s 0.01 0.00 0.01 0.00 +ulnaire ulnaire ADJ m s 0.01 0.00 0.01 0.00 +élocution élocution NOM f s 0.84 1.62 0.84 1.62 +éloge éloge NOM m s 2.62 8.85 1.31 5.47 +éloges éloge NOM m p 2.62 8.85 1.31 3.38 +élogieuse élogieux ADJ f s 0.42 0.81 0.06 0.34 +élogieuses élogieux ADJ f p 0.42 0.81 0.05 0.14 +élogieux élogieux ADJ m 0.42 0.81 0.30 0.34 +éloigna éloigner VER 41.15 133.11 0.10 19.19 ind:pas:3s; +éloignai éloigner VER 41.15 133.11 0.02 0.74 ind:pas:1s; +éloignaient éloigner VER 41.15 133.11 0.16 4.73 ind:imp:3p; +éloignais éloigner VER 41.15 133.11 0.28 0.41 ind:imp:1s;ind:imp:2s; +éloignait éloigner VER 41.15 133.11 0.45 16.82 ind:imp:3s; +éloignant éloigner VER 41.15 133.11 0.65 7.64 par:pre; +éloigne éloigner VER 41.15 133.11 9.77 19.26 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éloignement éloignement NOM m s 1.12 7.50 1.12 7.50 +éloignent éloigner VER 41.15 133.11 1.64 5.54 ind:pre:3p; +éloigner éloigner VER 41.15 133.11 14.51 28.45 ind:pre:2p;inf; +éloignera éloigner VER 41.15 133.11 0.43 0.47 ind:fut:3s; +éloignerai éloigner VER 41.15 133.11 0.11 0.07 ind:fut:1s; +éloigneraient éloigner VER 41.15 133.11 0.15 0.27 cnd:pre:3p; +éloignerais éloigner VER 41.15 133.11 0.09 0.00 cnd:pre:1s; +éloignerait éloigner VER 41.15 133.11 0.11 0.41 cnd:pre:3s; +éloigneras éloigner VER 41.15 133.11 0.14 0.07 ind:fut:2s; +éloignerez éloigner VER 41.15 133.11 0.04 0.00 ind:fut:2p; +éloignerons éloigner VER 41.15 133.11 0.04 0.14 ind:fut:1p; +éloigneront éloigner VER 41.15 133.11 0.04 0.00 ind:fut:3p; +éloignes éloigner VER 41.15 133.11 1.00 0.27 ind:pre:2s;sub:pre:2s; +éloignez éloigner VER 41.15 133.11 3.36 0.68 imp:pre:2p;ind:pre:2p; +éloignions éloigner VER 41.15 133.11 0.20 0.68 ind:imp:1p; +éloignâmes éloigner VER 41.15 133.11 0.00 0.20 ind:pas:1p; +éloignons éloigner VER 41.15 133.11 0.43 0.54 imp:pre:1p;ind:pre:1p; +éloignât éloigner VER 41.15 133.11 0.10 0.41 sub:imp:3s; +éloignèrent éloigner VER 41.15 133.11 0.01 3.51 ind:pas:3p; +éloigné éloigner VER m s 41.15 133.11 4.25 11.82 par:pas; +éloignée éloigner VER f s 41.15 133.11 1.48 5.07 par:pas; +éloignées éloigné ADJ f p 4.14 12.16 0.37 1.82 +éloignés éloigner VER m p 41.15 133.11 1.38 3.99 par:pas; +élongation élongation NOM f s 0.08 0.34 0.08 0.27 +élongations élongation NOM f p 0.08 0.34 0.00 0.07 +éloquemment éloquemment ADV 0.05 0.34 0.05 0.34 +éloquence éloquence NOM f s 1.30 4.46 1.30 4.46 +éloquent éloquent ADJ m s 0.98 5.34 0.81 2.30 +éloquente éloquent ADJ f s 0.98 5.34 0.08 1.62 +éloquentes éloquent ADJ f p 0.98 5.34 0.02 0.54 +éloquents éloquent ADJ m p 0.98 5.34 0.07 0.88 +élève élève NOM s 36.84 57.77 15.83 21.69 +élèvent élever VER 52.03 103.85 1.87 5.27 ind:pre:3p; +élèvera élever VER 52.03 103.85 1.23 0.34 ind:fut:3s; +élèverai élever VER 52.03 103.85 0.55 0.41 ind:fut:1s; +élèveraient élever VER 52.03 103.85 0.11 0.07 cnd:pre:3p; +élèverais élever VER 52.03 103.85 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +élèverait élever VER 52.03 103.85 0.21 0.81 cnd:pre:3s; +élèveras élever VER 52.03 103.85 0.20 0.00 ind:fut:2s; +élèveriez élever VER 52.03 103.85 0.00 0.07 cnd:pre:2p; +élèverons élever VER 52.03 103.85 0.22 0.07 ind:fut:1p; +élèveront élever VER 52.03 103.85 0.19 0.14 ind:fut:3p; +élèves élève NOM p 36.84 57.77 21.01 36.08 +ultima_ratio ultima_ratio NOM f s 0.00 0.07 0.00 0.07 +ultimatum ultimatum NOM m s 1.32 1.55 1.23 1.55 +ultimatums ultimatum NOM m p 1.32 1.55 0.09 0.00 +ultime ultime ADJ s 8.56 25.74 8.01 21.49 +ultimement ultimement ADV 0.01 0.07 0.01 0.07 +ultimes ultime ADJ p 8.56 25.74 0.55 4.26 +ultimo ultimo ADV 0.00 0.07 0.00 0.07 +ultra_catholique ultra_catholique ADJ m s 0.10 0.00 0.10 0.00 +ultra_chic ultra_chic ADJ s 0.03 0.20 0.03 0.14 +ultra_chic ultra_chic ADJ f p 0.03 0.20 0.00 0.07 +ultra_court ultra_court ADJ f p 0.16 0.07 0.02 0.00 +ultra_court ultra_court ADJ m p 0.16 0.07 0.14 0.07 +ultra_gauche ultra_gauche NOM f s 0.00 0.07 0.00 0.07 +ultra_rapide ultra_rapide ADJ s 0.20 0.27 0.20 0.27 +ultra_secret ultra_secret ADJ m s 0.20 0.07 0.20 0.07 +ultra_sensible ultra_sensible ADJ m s 0.01 0.14 0.01 0.14 +ultra_son ultra_son NOM m p 0.03 0.14 0.03 0.14 +ultra_violet ultra_violet ADJ 0.04 0.07 0.01 0.00 +ultra_violet ultra_violet NOM s 0.04 0.07 0.04 0.07 +ultra ultra ADJ 1.59 1.49 1.59 1.49 +ultrafin ultrafin ADJ m s 0.00 0.07 0.00 0.07 +ultragauche ultragauche NOM f s 0.00 0.07 0.00 0.07 +ultraléger ultraléger ADJ m s 0.01 0.00 0.01 0.00 +ultramarine ultramarin ADJ f s 0.00 0.14 0.00 0.14 +ultramoderne ultramoderne ADJ s 0.49 0.14 0.34 0.07 +ultramodernes ultramoderne ADJ p 0.49 0.14 0.14 0.07 +ultramontain ultramontain ADJ m s 0.00 0.20 0.00 0.07 +ultramontains ultramontain ADJ m p 0.00 0.20 0.00 0.14 +ultraperformant ultraperformant ADJ m s 0.00 0.07 0.00 0.07 +ultrarapide ultrarapide ADJ s 0.06 0.07 0.03 0.07 +ultrarapides ultrarapide ADJ m p 0.06 0.07 0.02 0.00 +ultras ultra NOM p 0.49 0.81 0.00 0.34 +ultrasecret ultrasecret ADJ m s 0.10 0.07 0.06 0.00 +ultrasecrète ultrasecret ADJ f s 0.10 0.07 0.04 0.07 +ultrasensible ultrasensible ADJ s 0.25 0.07 0.23 0.00 +ultrasensibles ultrasensible ADJ m p 0.25 0.07 0.01 0.07 +ultrason ultrason NOM m s 0.87 0.00 0.34 0.00 +ultrasonique ultrasonique ADJ s 0.25 0.00 0.25 0.00 +ultrasons ultrason NOM m p 0.87 0.00 0.53 0.00 +ultraviolet ultraviolet ADJ m s 0.32 0.07 0.16 0.00 +ultraviolets ultraviolet NOM m p 0.33 0.07 0.27 0.07 +ultraviolette ultraviolet ADJ f s 0.32 0.07 0.07 0.00 +ultraviolettes ultraviolet ADJ f p 0.32 0.07 0.01 0.00 +ultravirus ultravirus NOM m 0.01 0.00 0.01 0.00 +ultérieur ultérieur ADJ m s 0.71 2.36 0.27 0.41 +ultérieure ultérieur ADJ f s 0.71 2.36 0.28 0.95 +ultérieurement ultérieurement ADV 0.37 2.03 0.37 2.03 +ultérieures ultérieur ADJ f p 0.71 2.36 0.09 0.81 +ultérieurs ultérieur ADJ m p 0.71 2.36 0.07 0.20 +élu élire VER m s 11.24 13.51 5.85 4.46 par:pas; +éléates éléate NOM p 0.00 0.07 0.00 0.07 +élucida élucider VER 2.43 2.64 0.00 0.07 ind:pas:3s; +élucidai élucider VER 2.43 2.64 0.00 0.07 ind:pas:1s; +élucidation élucidation NOM f s 0.05 0.61 0.05 0.61 +élucide élucider VER 2.43 2.64 0.10 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +élucider élucider VER 2.43 2.64 1.31 1.69 inf; +élucideraient élucider VER 2.43 2.64 0.00 0.07 cnd:pre:3p; +éluciderait élucider VER 2.43 2.64 0.01 0.00 cnd:pre:3s; +élucidé élucider VER m s 2.43 2.64 0.60 0.20 par:pas; +élucidée élucider VER f s 2.43 2.64 0.09 0.07 par:pas; +élucidées élucider VER f p 2.43 2.64 0.20 0.20 par:pas; +élucidés élucider VER m p 2.43 2.64 0.13 0.07 par:pas; +élucubration élucubration NOM f s 0.18 1.15 0.00 0.07 +élucubrations élucubration NOM f p 0.18 1.15 0.18 1.08 +élucubre élucubrer VER 0.01 0.27 0.00 0.07 ind:pre:3s; +élucubrent élucubrer VER 0.01 0.27 0.00 0.07 ind:pre:3p; +élucubrer élucubrer VER 0.01 0.27 0.01 0.14 inf; +éluda éluder VER 0.69 5.00 0.00 0.74 ind:pas:3s; +éludai éluder VER 0.69 5.00 0.00 0.07 ind:pas:1s; +éludaient éluder VER 0.69 5.00 0.00 0.14 ind:imp:3p; +éludais éluder VER 0.69 5.00 0.01 0.07 ind:imp:1s; +éludait éluder VER 0.69 5.00 0.00 0.41 ind:imp:3s; +éludant éluder VER 0.69 5.00 0.00 0.07 par:pre; +élude éluder VER 0.69 5.00 0.07 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éludent éluder VER 0.69 5.00 0.01 0.07 ind:pre:3p; +éluder éluder VER 0.69 5.00 0.33 1.89 inf; +éludes éluder VER 0.69 5.00 0.04 0.07 ind:pre:2s; +éludez éluder VER 0.69 5.00 0.13 0.00 imp:pre:2p;ind:pre:2p; +éludât éluder VER 0.69 5.00 0.00 0.14 sub:imp:3s; +éludé éluder VER m s 0.69 5.00 0.07 0.61 par:pas; +éludée éluder VER f s 0.69 5.00 0.01 0.07 par:pas; +éludées éluder VER f p 0.69 5.00 0.02 0.20 par:pas; +élue élu ADJ f s 5.49 4.73 3.62 2.16 +élues élu ADJ f p 5.49 4.73 0.14 0.68 +élégamment élégamment ADV 0.23 1.89 0.23 1.89 +élégance élégance NOM f s 4.17 23.51 4.12 22.77 +élégances élégance NOM f p 4.17 23.51 0.06 0.74 +élégant élégant ADJ m s 10.13 28.85 4.74 11.35 +élégante élégant ADJ f s 10.13 28.85 3.86 9.46 +élégantes élégant ADJ f p 10.13 28.85 0.86 3.38 +élégants élégant ADJ m p 10.13 28.85 0.68 4.66 +élégiaque élégiaque ADJ s 0.10 0.27 0.10 0.20 +élégiaques élégiaque NOM p 0.00 0.34 0.00 0.20 +élégie élégie NOM f s 0.15 0.41 0.11 0.27 +élégies élégie NOM f p 0.15 0.41 0.04 0.14 +ulula ululer VER 0.01 0.47 0.00 0.07 ind:pas:3s; +ululait ululer VER 0.01 0.47 0.00 0.14 ind:imp:3s; +ululant ululer VER 0.01 0.47 0.00 0.07 par:pre; +ulule ululer VER 0.01 0.47 0.01 0.07 ind:pre:3s; +ululement ululement NOM m s 0.00 0.47 0.00 0.41 +ululements ululement NOM m p 0.00 0.47 0.00 0.07 +ululer ululer VER 0.01 0.47 0.00 0.14 inf; +élément_clé élément_clé NOM m s 0.09 0.00 0.09 0.00 +élément élément NOM m s 24.03 63.04 10.20 16.15 +élémentaire élémentaire ADJ s 3.09 14.05 2.26 10.20 +élémentaires élémentaire ADJ p 3.09 14.05 0.82 3.85 +élémentarité élémentarité NOM f s 0.00 0.07 0.00 0.07 +éléments_clé éléments_clé NOM m p 0.02 0.00 0.02 0.00 +éléments élément NOM m p 24.03 63.04 13.83 46.89 +éléphant éléphant NOM m s 15.36 15.20 10.17 8.92 +éléphante éléphant NOM f s 15.36 15.20 0.02 0.20 +éléphanteau éléphanteau NOM m s 0.02 0.20 0.02 0.20 +éléphantes éléphant NOM f p 15.36 15.20 0.00 0.07 +éléphantesque éléphantesque ADJ s 0.02 0.27 0.02 0.07 +éléphantesques éléphantesque ADJ p 0.02 0.27 0.00 0.20 +éléphantiasique éléphantiasique ADJ s 0.01 0.00 0.01 0.00 +éléphantiasis éléphantiasis NOM m 0.04 0.27 0.04 0.27 +éléphantine éléphantin ADJ f s 0.01 0.34 0.01 0.07 +éléphantines éléphantin ADJ f p 0.01 0.34 0.00 0.27 +éléphants éléphant NOM m p 15.36 15.20 5.17 6.01 +élus élu NOM m p 4.41 5.81 1.59 4.12 +élusifs élusif ADJ m p 0.01 0.07 0.00 0.07 +élusive élusif ADJ f s 0.01 0.07 0.01 0.00 +élut élire VER 11.24 13.51 0.00 0.14 ind:pas:3s; +élévateur élévateur NOM m s 0.28 0.00 0.25 0.00 +élévateurs élévateur NOM m p 0.28 0.00 0.03 0.00 +élévation élévation NOM f s 0.33 3.11 0.30 2.97 +élévations élévation NOM f p 0.33 3.11 0.04 0.14 +élévatrice élévateur ADJ f s 0.23 0.27 0.01 0.00 +élévatrices élévateur ADJ f p 0.23 0.27 0.01 0.00 +élysée élysée NOM m s 0.16 3.72 0.16 3.72 +élyséen élyséen ADJ m s 0.00 0.14 0.00 0.07 +élyséenne élyséen ADJ f s 0.00 0.14 0.00 0.07 +élytre élytre NOM m s 0.01 1.76 0.01 0.00 +élytres élytre NOM m p 0.01 1.76 0.00 1.76 +émût émouvoir VER 9.46 37.43 0.00 0.07 sub:imp:3s; +émaciait émacier VER 0.17 1.01 0.00 0.14 ind:imp:3s; +émacie émacier VER 0.17 1.01 0.00 0.14 ind:pre:3s; +émacié émacier VER m s 0.17 1.01 0.14 0.41 par:pas; +émaciée émacié ADJ f s 0.05 2.57 0.00 0.34 +émaciées émacier VER f p 0.17 1.01 0.01 0.00 par:pas; +émaciés émacié ADJ m p 0.05 2.57 0.02 0.07 +émail émail NOM m s 0.57 6.42 0.56 5.74 +émailla émailler VER 0.24 2.84 0.00 0.07 ind:pas:3s; +émaillaient émailler VER 0.24 2.84 0.00 0.47 ind:imp:3p; +émaillait émailler VER 0.24 2.84 0.00 0.07 ind:imp:3s; +émaillant émailler VER 0.24 2.84 0.01 0.00 par:pre; +émaille émailler VER 0.24 2.84 0.01 0.07 ind:pre:1s;ind:pre:3s; +émaillent émailler VER 0.24 2.84 0.00 0.20 ind:pre:3p; +émailler émailler VER 0.24 2.84 0.01 0.34 inf; +émaillé émailler VER m s 0.24 2.84 0.03 0.74 par:pas; +émaillée émailler VER f s 0.24 2.84 0.17 0.47 par:pas; +émaillées émailler VER f p 0.24 2.84 0.01 0.27 par:pas; +émaillés émaillé ADJ m p 0.01 2.64 0.00 0.27 +émanaient émaner VER 2.77 9.93 0.06 0.54 ind:imp:3p; +émanait émaner VER 2.77 9.93 0.15 4.66 ind:imp:3s; +émanant émaner VER 2.77 9.93 0.72 1.22 par:pre; +émanation émanation NOM f s 0.78 3.11 0.07 1.08 +émanations émanation NOM f p 0.78 3.11 0.70 2.03 +émancipait émanciper VER 0.41 0.74 0.00 0.07 ind:imp:3s; +émancipateur émancipateur ADJ m s 0.02 0.07 0.02 0.00 +émancipation émancipation NOM f s 1.12 1.15 1.12 1.15 +émancipatrice émancipateur ADJ f s 0.02 0.07 0.00 0.07 +émancipe émanciper VER 0.41 0.74 0.05 0.00 ind:pre:3s; +émancipent émanciper VER 0.41 0.74 0.00 0.14 ind:pre:3p; +émanciper émanciper VER 0.41 0.74 0.11 0.27 inf; +émancipé émanciper VER m s 0.41 0.74 0.14 0.07 par:pas; +émancipée émancipé ADJ f s 0.25 0.41 0.12 0.20 +émancipées émanciper VER f p 0.41 0.74 0.00 0.14 par:pas; +émancipés émanciper VER m p 0.41 0.74 0.02 0.00 par:pas; +émane émaner VER 2.77 9.93 1.31 2.09 imp:pre:2s;ind:pre:3s; +émanent émaner VER 2.77 9.93 0.34 0.47 ind:pre:3p; +émaner émaner VER 2.77 9.93 0.10 0.54 inf; +émanera émaner VER 2.77 9.93 0.01 0.00 ind:fut:3s; +émanerait émaner VER 2.77 9.93 0.02 0.07 cnd:pre:3s; +émané émaner VER m s 2.77 9.93 0.04 0.00 par:pas; +émanée émaner VER f s 2.77 9.93 0.00 0.20 par:pas; +émanées émaner VER f p 2.77 9.93 0.00 0.07 par:pas; +émanés émaner VER m p 2.77 9.93 0.00 0.07 par:pas; +émarge émarger VER 0.02 0.41 0.02 0.07 ind:pre:1s;ind:pre:3s; +émargeaient émarger VER 0.02 0.41 0.00 0.07 ind:imp:3p; +émargeait émarger VER 0.02 0.41 0.00 0.07 ind:imp:3s; +émargeant émarger VER 0.02 0.41 0.00 0.07 par:pre; +émargement émargement NOM m s 0.01 0.00 0.01 0.00 +émarger émarger VER 0.02 0.41 0.00 0.14 inf; +émasculaient émasculer VER 0.31 0.68 0.00 0.07 ind:imp:3p; +émasculation émasculation NOM f s 0.02 0.14 0.02 0.14 +émascule émasculer VER 0.31 0.68 0.03 0.14 ind:pre:1s;ind:pre:3s; +émasculer émasculer VER 0.31 0.68 0.22 0.14 inf; +émasculé émasculer VER m s 0.31 0.68 0.04 0.07 par:pas; +émasculée émasculer VER f s 0.31 0.68 0.00 0.07 par:pas; +émasculées émasculer VER f p 0.31 0.68 0.00 0.07 par:pas; +émasculés émasculer VER m p 0.31 0.68 0.03 0.14 par:pas; +émaux émail NOM m p 0.57 6.42 0.01 0.68 +umbanda umbanda NOM m s 0.10 0.00 0.10 0.00 +émeraude émeraude NOM f s 2.77 6.42 0.88 3.58 +émeraudes émeraude NOM p 2.77 6.42 1.88 2.84 +émerge émerger VER 3.73 30.20 1.14 5.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émergea émerger VER 3.73 30.20 0.04 2.64 ind:pas:3s; +émergeai émerger VER 3.73 30.20 0.04 0.20 ind:pas:1s; +émergeaient émerger VER 3.73 30.20 0.10 2.50 ind:imp:3p; +émergeais émerger VER 3.73 30.20 0.21 0.27 ind:imp:1s; +émergeait émerger VER 3.73 30.20 0.03 5.41 ind:imp:3s; +émergeant émerger VER 3.73 30.20 0.28 4.53 par:pre; +émergence émergence NOM f s 0.49 0.54 0.49 0.41 +émergences émergence NOM f p 0.49 0.54 0.00 0.14 +émergent émerger VER 3.73 30.20 0.22 2.64 ind:pre:3p;sub:pre:3p; +émergente émergent ADJ f s 0.11 0.41 0.01 0.00 +émergeons émerger VER 3.73 30.20 0.00 0.27 ind:pre:1p; +émergeât émerger VER 3.73 30.20 0.00 0.07 sub:imp:3s; +émerger émerger VER 3.73 30.20 0.70 4.46 inf; +émergera émerger VER 3.73 30.20 0.34 0.07 ind:fut:3s; +émergerait émerger VER 3.73 30.20 0.00 0.14 cnd:pre:3s; +émergeras émerger VER 3.73 30.20 0.00 0.07 ind:fut:2s; +émergerons émerger VER 3.73 30.20 0.03 0.00 ind:fut:1p; +émergeront émerger VER 3.73 30.20 0.01 0.00 ind:fut:3p; +émerges émerger VER 3.73 30.20 0.06 0.14 ind:pre:2s; +émergions émerger VER 3.73 30.20 0.00 0.20 ind:imp:1p; +émergèrent émerger VER 3.73 30.20 0.11 0.27 ind:pas:3p; +émergé émerger VER m s 3.73 30.20 0.38 1.01 par:pas; +émergée émerger VER f s 3.73 30.20 0.05 0.20 par:pas; +émergées émergé ADJ f p 0.00 0.34 0.00 0.07 +émergés émerger VER m p 3.73 30.20 0.00 0.07 par:pas; +émeri émeri NOM m s 0.16 0.95 0.16 0.95 +émerillon émerillon NOM m s 0.00 0.20 0.00 0.20 +émerillonné émerillonné ADJ m s 0.00 0.07 0.00 0.07 +émerisé émeriser VER m s 0.00 0.14 0.00 0.07 par:pas; +émerisées émeriser VER f p 0.00 0.14 0.00 0.07 par:pas; +émersion émersion NOM f s 0.00 0.07 0.00 0.07 +émerveilla émerveiller VER 1.40 20.81 0.00 0.47 ind:pas:3s; +émerveillai émerveiller VER 1.40 20.81 0.00 0.14 ind:pas:1s; +émerveillaient émerveiller VER 1.40 20.81 0.00 0.88 ind:imp:3p; +émerveillais émerveiller VER 1.40 20.81 0.01 0.34 ind:imp:1s; +émerveillait émerveiller VER 1.40 20.81 0.01 3.38 ind:imp:3s; +émerveillant émerveiller VER 1.40 20.81 0.01 0.81 par:pre; +émerveille émerveiller VER 1.40 20.81 0.43 1.62 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émerveillement émerveillement NOM m s 0.58 8.24 0.56 7.36 +émerveillements émerveillement NOM m p 0.58 8.24 0.02 0.88 +émerveillent émerveiller VER 1.40 20.81 0.00 0.74 ind:pre:3p; +émerveiller émerveiller VER 1.40 20.81 0.12 1.15 inf; +émerveillerait émerveiller VER 1.40 20.81 0.00 0.07 cnd:pre:3s; +émerveillèrent émerveiller VER 1.40 20.81 0.00 0.07 ind:pas:3p; +émerveillé émerveiller VER m s 1.40 20.81 0.36 5.81 par:pas; +émerveillée émerveiller VER f s 1.40 20.81 0.38 3.11 par:pas; +émerveillées émerveiller VER f p 1.40 20.81 0.01 0.34 par:pas; +émerveillés émerveiller VER m p 1.40 20.81 0.08 1.89 par:pas; +émet émettre VER 9.45 17.23 1.85 2.57 ind:pre:3s; +émets émettre VER 9.45 17.23 0.48 0.47 imp:pre:2s;ind:pre:1s;ind:pre:2s; +émettaient émettre VER 9.45 17.23 0.01 0.74 ind:imp:3p; +émettait émettre VER 9.45 17.23 0.09 1.55 ind:imp:3s; +émettant émettre VER 9.45 17.23 0.14 1.08 par:pre; +émette émettre VER 9.45 17.23 0.20 0.00 sub:pre:1s;sub:pre:3s; +émettent émettre VER 9.45 17.23 0.91 0.34 ind:pre:3p; +émetteur_récepteur émetteur_récepteur NOM m s 0.05 0.00 0.05 0.00 +émetteur émetteur NOM m s 3.35 0.54 3.06 0.34 +émetteurs émetteur NOM m p 3.35 0.54 0.29 0.20 +émettez émettre VER 9.45 17.23 0.10 0.07 imp:pre:2p;ind:pre:2p; +émettons émettre VER 9.45 17.23 0.14 0.07 imp:pre:1p;ind:pre:1p; +émettra émettre VER 9.45 17.23 0.28 0.07 ind:fut:3s; +émettrai émettre VER 9.45 17.23 0.04 0.00 ind:fut:1s; +émettre émettre VER 9.45 17.23 2.96 3.04 inf; +émettrice émetteur ADJ f s 1.01 0.47 0.01 0.07 +émettrons émettre VER 9.45 17.23 0.05 0.00 ind:fut:1p; +émettront émettre VER 9.45 17.23 0.00 0.07 ind:fut:3p; +émeu émeu NOM m s 0.09 0.07 0.09 0.00 +émeus émouvoir VER 9.46 37.43 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:2s; +émeut émouvoir VER 9.46 37.43 1.22 4.73 ind:pre:3s; +émeute émeute NOM f s 6.75 5.81 4.03 3.65 +émeutes émeute NOM f p 6.75 5.81 2.71 2.16 +émeutier émeutier NOM m s 0.26 0.81 0.01 0.00 +émeutiers émeutier NOM m p 0.26 0.81 0.25 0.81 +émeuve émouvoir VER 9.46 37.43 0.01 0.54 sub:pre:1s;sub:pre:3s; +émeuvent émouvoir VER 9.46 37.43 0.14 1.01 ind:pre:3p;sub:pre:3p; +émietta émietter VER 0.09 3.31 0.00 0.47 ind:pas:3s; +émiettaient émietter VER 0.09 3.31 0.00 0.41 ind:imp:3p; +émiettait émietter VER 0.09 3.31 0.00 0.54 ind:imp:3s; +émiette émietter VER 0.09 3.31 0.02 0.47 ind:pre:1s;ind:pre:3s; +émiettement émiettement NOM m s 0.00 0.47 0.00 0.27 +émiettements émiettement NOM m p 0.00 0.47 0.00 0.20 +émiettent émietter VER 0.09 3.31 0.01 0.07 ind:pre:3p; +émietter émietter VER 0.09 3.31 0.05 0.47 inf; +émietterait émietter VER 0.09 3.31 0.00 0.07 cnd:pre:3s; +émiettez émietter VER 0.09 3.31 0.01 0.00 ind:pre:2p; +émiettèrent émietter VER 0.09 3.31 0.00 0.07 ind:pas:3p; +émietté émietter VER m s 0.09 3.31 0.00 0.61 par:pas; +émiettée émietter VER f s 0.09 3.31 0.00 0.07 par:pas; +émiettés émietter VER m p 0.09 3.31 0.00 0.07 par:pas; +émigra émigrer VER 3.15 3.31 0.02 0.07 ind:pas:3s; +émigrai émigrer VER 3.15 3.31 0.01 0.07 ind:pas:1s; +émigraient émigrer VER 3.15 3.31 0.01 0.00 ind:imp:3p; +émigrais émigrer VER 3.15 3.31 0.01 0.07 ind:imp:1s; +émigrait émigrer VER 3.15 3.31 0.00 0.07 ind:imp:3s; +émigrant émigrant NOM m s 0.50 0.81 0.20 0.20 +émigrante émigrant NOM f s 0.50 0.81 0.10 0.00 +émigrants émigrant NOM m p 0.50 0.81 0.20 0.61 +émigration émigration NOM f s 0.60 1.15 0.60 1.15 +émigre émigrer VER 3.15 3.31 0.28 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +émigrent émigrer VER 3.15 3.31 0.14 0.00 ind:pre:3p; +émigrer émigrer VER 3.15 3.31 1.02 0.47 inf; +émigrèrent émigrer VER 3.15 3.31 0.01 0.07 ind:pas:3p; +émigré émigrer VER m s 3.15 3.31 1.63 1.55 par:pas; +émigrée émigrer VER f s 3.15 3.31 0.01 0.27 par:pas; +émigrés émigré NOM m p 0.91 3.45 0.62 2.30 +émilien émilien NOM m s 0.00 3.38 0.00 0.07 +émilienne émilien NOM f s 0.00 3.38 0.00 3.31 +émincer émincer VER 0.38 0.47 0.12 0.07 inf; +émincez émincer VER 0.38 0.47 0.12 0.00 imp:pre:2p;ind:pre:2p; +émincé émincer VER m s 0.38 0.47 0.11 0.20 par:pas; +émincée émincer VER f s 0.38 0.47 0.01 0.00 par:pas; +émincées émincer VER f p 0.38 0.47 0.01 0.14 par:pas; +émincés émincé NOM m p 0.15 0.14 0.11 0.00 +éminemment éminemment ADV 0.13 1.49 0.13 1.49 +éminence éminence NOM f s 1.19 3.85 1.18 3.04 +éminences éminence NOM f p 1.19 3.85 0.01 0.81 +éminent éminent ADJ m s 2.37 5.00 1.66 2.03 +éminente éminent ADJ f s 2.37 5.00 0.07 1.15 +éminentes éminent ADJ f p 2.37 5.00 0.03 0.47 +éminentissimes éminentissime ADJ m p 0.00 0.07 0.00 0.07 +éminents éminent ADJ m p 2.37 5.00 0.61 1.35 +émir émir NOM m s 0.86 0.81 0.75 0.68 +émirat émirat NOM m s 0.01 0.27 0.00 0.07 +émirats émirat NOM m p 0.01 0.27 0.01 0.20 +émirs émir NOM m p 0.86 0.81 0.11 0.14 +émis émettre VER m 9.45 17.23 1.57 2.30 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +émise émettre VER f s 9.45 17.23 0.23 0.20 par:pas; +émises émettre VER f p 9.45 17.23 0.32 0.47 par:pas; +émissaire émissaire ADJ m s 2.02 1.22 1.87 1.01 +émissaires émissaire NOM m p 2.03 3.72 0.33 2.57 +émission émission NOM f s 32.31 10.95 27.75 7.36 +émissions émission NOM f p 32.31 10.95 4.56 3.58 +émit émettre VER 9.45 17.23 0.10 4.19 ind:pas:3s; +émoi émoi NOM m s 1.71 7.77 1.41 5.88 +émois émoi NOM m p 1.71 7.77 0.30 1.89 +émollient émollient ADJ m s 0.00 0.41 0.00 0.07 +émolliente émollient ADJ f s 0.00 0.41 0.00 0.34 +émoluments émolument NOM m p 0.01 0.20 0.01 0.20 +émondait émonder VER 0.02 0.68 0.00 0.07 ind:imp:3s; +émonder émonder VER 0.02 0.68 0.01 0.27 inf; +émondera émonder VER 0.02 0.68 0.00 0.07 ind:fut:3s; +émondeur émondeur NOM m s 0.00 0.14 0.00 0.14 +émondons émonder VER 0.02 0.68 0.00 0.07 imp:pre:1p; +émondé émonder VER m s 0.02 0.68 0.01 0.07 par:pas; +émondée émonder VER f s 0.02 0.68 0.00 0.07 par:pas; +émondées émonder VER f p 0.02 0.68 0.00 0.07 par:pas; +émotif émotif ADJ m s 2.65 1.15 1.16 0.61 +émotifs émotif ADJ m p 2.65 1.15 0.10 0.27 +émotion émotion NOM f s 26.33 59.59 14.03 47.97 +émotionnante émotionnant ADJ f s 0.00 0.07 0.00 0.07 +émotionne émotionner VER 0.54 0.14 0.14 0.07 ind:pre:3s; +émotionnel émotionnel ADJ m s 5.57 0.41 3.14 0.27 +émotionnelle émotionnel ADJ f s 5.57 0.41 1.58 0.07 +émotionnellement émotionnellement ADV 1.53 0.00 1.53 0.00 +émotionnelles émotionnel ADJ f p 5.57 0.41 0.17 0.00 +émotionnels émotionnel ADJ m p 5.57 0.41 0.68 0.07 +émotionné émotionner VER m s 0.54 0.14 0.40 0.07 par:pas; +émotions émotion NOM f p 26.33 59.59 12.30 11.62 +émotive émotif ADJ f s 2.65 1.15 1.22 0.27 +émotives émotif ADJ f p 2.65 1.15 0.16 0.00 +émotivité émotivité NOM f s 0.15 0.47 0.15 0.47 +émouchets émouchet NOM m p 0.00 0.07 0.00 0.07 +émoulu émoudre VER m s 0.02 0.61 0.02 0.47 par:pas; +émoulue émoulu ADJ f s 0.02 0.14 0.01 0.00 +émoulus émoudre VER m p 0.02 0.61 0.00 0.07 par:pas; +émoussa émousser VER 0.61 2.64 0.00 0.07 ind:pas:3s; +émoussai émousser VER 0.61 2.64 0.00 0.07 ind:pas:1s; +émoussaient émousser VER 0.61 2.64 0.00 0.07 ind:imp:3p; +émoussait émousser VER 0.61 2.64 0.01 0.07 ind:imp:3s; +émoussant émousser VER 0.61 2.64 0.13 0.07 par:pre; +émousse émousser VER 0.61 2.64 0.17 0.41 imp:pre:2s;ind:pre:3s; +émoussement émoussement NOM m s 0.00 0.07 0.00 0.07 +émoussent émousser VER 0.61 2.64 0.01 0.20 ind:pre:3p; +émousser émousser VER 0.61 2.64 0.05 0.47 inf; +émousseront émousser VER 0.61 2.64 0.00 0.07 ind:fut:3p; +émoussèrent émousser VER 0.61 2.64 0.00 0.07 ind:pas:3p; +émoussé émousser VER m s 0.61 2.64 0.19 0.07 par:pas; +émoussée émoussé ADJ f s 0.59 0.81 0.34 0.14 +émoussées émoussé ADJ f p 0.59 0.81 0.04 0.27 +émoussés émoussé ADJ m p 0.59 0.81 0.14 0.14 +émoustilla émoustiller VER 0.38 2.36 0.00 0.14 ind:pas:3s; +émoustillait émoustiller VER 0.38 2.36 0.01 0.27 ind:imp:3s; +émoustillant émoustillant ADJ m s 0.23 0.14 0.11 0.00 +émoustillante émoustillant ADJ f s 0.23 0.14 0.12 0.14 +émoustiller émoustiller VER 0.38 2.36 0.16 0.41 inf; +émoustillera émoustiller VER 0.38 2.36 0.00 0.07 ind:fut:3s; +émoustillé émoustiller VER m s 0.38 2.36 0.07 0.68 par:pas; +émoustillée émoustiller VER f s 0.38 2.36 0.06 0.41 par:pas; +émoustillées émoustiller VER f p 0.38 2.36 0.00 0.07 par:pas; +émoustillés émoustiller VER m p 0.38 2.36 0.04 0.34 par:pas; +émouvaient émouvoir VER 9.46 37.43 0.01 0.27 ind:imp:3p; +émouvais émouvoir VER 9.46 37.43 0.10 0.34 ind:imp:1s;ind:imp:2s; +émouvait émouvoir VER 9.46 37.43 0.03 2.64 ind:imp:3s; +émouvant émouvant ADJ m s 5.21 14.05 3.51 4.80 +émouvante émouvant ADJ f s 5.21 14.05 1.16 6.08 +émouvantes émouvant ADJ f p 5.21 14.05 0.28 1.55 +émouvants émouvant ADJ m p 5.21 14.05 0.26 1.62 +émouvez émouvoir VER 9.46 37.43 0.00 0.07 imp:pre:2p; +émouvoir émouvoir VER 9.46 37.43 1.29 6.08 inf; +émouvrait émouvoir VER 9.46 37.43 0.01 0.14 cnd:pre:3s; +émèchent émécher VER 0.40 0.27 0.00 0.07 ind:pre:3p; +ému émouvoir VER m s 9.46 37.43 3.69 10.47 par:pas; +éméché émécher VER m s 0.40 0.27 0.26 0.00 par:pas; +éméchée émécher VER f s 0.40 0.27 0.05 0.07 par:pas; +éméchées émécher VER f p 0.40 0.27 0.02 0.07 par:pas; +éméchés éméché ADJ m p 0.27 1.82 0.09 0.95 +émue ému ADJ f s 4.89 12.09 1.92 3.78 +émues ému ADJ f p 4.89 12.09 0.14 0.54 +émulation émulation NOM f s 0.07 2.30 0.07 2.23 +émulations émulation NOM f p 0.07 2.30 0.00 0.07 +émule émule NOM s 0.24 0.95 0.17 0.88 +émuler émuler VER 0.01 0.00 0.01 0.00 inf; +émules émule NOM p 0.24 0.95 0.07 0.07 +émulsifiant émulsifiant ADJ m s 0.01 0.00 0.01 0.00 +émulsifier émulsifier VER 0.01 0.00 0.01 0.00 inf; +émulsion émulsion NOM f s 0.24 0.07 0.24 0.07 +émulsionné émulsionner VER m s 0.00 0.07 0.00 0.07 par:pas; +émulsive émulsif ADJ f s 0.01 0.00 0.01 0.00 +émurent émouvoir VER 9.46 37.43 0.00 0.34 ind:pas:3p; +émérite émérite ADJ s 0.92 0.20 0.80 0.14 +émérites émérite ADJ p 0.92 0.20 0.12 0.07 +émus ému ADJ m p 4.89 12.09 0.52 0.88 +émussent émouvoir VER 9.46 37.43 0.00 0.07 sub:imp:3p; +émut émouvoir VER 9.46 37.43 0.40 3.24 ind:pas:3s; +émétine émétine NOM f s 0.01 0.00 0.01 0.00 +émétique émétique ADJ m s 0.27 0.00 0.27 0.00 +un un ART:ind m s 12087.62 13550.68 12087.62 13550.68 +unît unir VER 25.15 32.16 0.00 0.07 sub:imp:3s; +énamourant énamourer VER 0.00 0.41 0.00 0.07 par:pre; +énamouré énamouré ADJ m s 0.06 0.54 0.04 0.14 +énamourée énamouré ADJ f s 0.06 0.54 0.00 0.14 +énamourées énamouré ADJ f p 0.06 0.54 0.01 0.00 +énamourés énamouré ADJ m p 0.06 0.54 0.01 0.27 +unanime unanime ADJ s 2.18 6.08 1.77 4.66 +unanimement unanimement ADV 0.06 1.35 0.06 1.35 +unanimes unanime ADJ p 2.18 6.08 0.41 1.42 +unanimisme unanimisme NOM m s 0.00 0.07 0.00 0.07 +unanimité unanimité NOM f s 2.63 3.78 2.63 3.78 +énarque énarque NOM s 0.15 0.34 0.15 0.20 +énarques énarque NOM p 0.15 0.34 0.00 0.14 +unau unau NOM m s 0.01 0.00 0.01 0.00 +underground underground ADJ 0.89 0.34 0.89 0.34 +une une ART:ind f s 7907.85 9587.97 7907.85 9587.97 +énergie énergie NOM f s 43.06 29.66 42.18 27.64 +énergies énergie NOM f p 43.06 29.66 0.88 2.03 +énergique énergique ADJ s 1.77 5.47 1.37 3.99 +énergiquement énergiquement ADV 0.35 3.65 0.35 3.65 +énergiques énergique ADJ p 1.77 5.47 0.40 1.49 +énergisant énergisant ADJ m s 0.08 0.00 0.01 0.00 +énergisant énergisant NOM m s 0.01 0.00 0.01 0.00 +énergisante énergisant ADJ f s 0.08 0.00 0.07 0.00 +énergisée énergisé ADJ f s 0.01 0.00 0.01 0.00 +énergumène énergumène NOM s 0.68 1.49 0.51 0.95 +énergumènes énergumène NOM p 0.68 1.49 0.18 0.54 +énergétique énergétique ADJ s 2.50 0.61 1.75 0.27 +énergétiques énergétique ADJ p 2.50 0.61 0.74 0.34 +énerva énerver VER 53.83 23.72 0.10 2.16 ind:pas:3s; +énervai énerver VER 53.83 23.72 0.00 0.07 ind:pas:1s; +énervaient énerver VER 53.83 23.72 0.03 0.81 ind:imp:3p; +énervais énerver VER 53.83 23.72 0.16 0.14 ind:imp:1s;ind:imp:2s; +énervait énerver VER 53.83 23.72 0.98 4.53 ind:imp:3s; +énervant énervant ADJ m s 1.98 1.89 1.27 0.74 +énervante énervant ADJ f s 1.98 1.89 0.57 0.88 +énervantes énervant ADJ f p 1.98 1.89 0.04 0.20 +énervants énervant ADJ m p 1.98 1.89 0.11 0.07 +énerve énerver VER 53.83 23.72 21.70 6.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +énervement énervement NOM m s 0.34 3.58 0.34 3.38 +énervements énervement NOM m p 0.34 3.58 0.00 0.20 +énervent énerver VER 53.83 23.72 1.27 0.61 ind:pre:3p; +énerver énerver VER 53.83 23.72 10.36 3.38 inf; +énervera énerver VER 53.83 23.72 0.09 0.00 ind:fut:3s; +énerverai énerver VER 53.83 23.72 0.05 0.00 ind:fut:1s; +énerveraient énerver VER 53.83 23.72 0.01 0.00 cnd:pre:3p; +énerverait énerver VER 53.83 23.72 0.70 0.00 cnd:pre:3s; +énerveront énerver VER 53.83 23.72 0.01 0.00 ind:fut:3p; +énerves énerver VER 53.83 23.72 4.36 0.74 ind:pre:2s; +énervez énerver VER 53.83 23.72 2.83 0.68 imp:pre:2p;ind:pre:2p; +énerviez énerver VER 53.83 23.72 0.07 0.00 ind:imp:2p; +énervions énerver VER 53.83 23.72 0.01 0.00 ind:imp:1p; +énervâmes énerver VER 53.83 23.72 0.00 0.07 ind:pas:1p; +énervons énerver VER 53.83 23.72 0.17 0.00 imp:pre:1p;ind:pre:1p; +énervé énerver VER m s 53.83 23.72 7.03 1.69 par:pas; +énervée énerver VER f s 53.83 23.72 3.00 1.08 par:pas; +énervées énerver VER f p 53.83 23.72 0.10 0.14 par:pas; +énervés énerver VER m p 53.83 23.72 0.55 0.68 par:pas; +unes unes PRO:ind f p 3.42 19.59 3.42 19.59 +unetelle unetelle NOM m s 0.01 0.61 0.01 0.61 +unguéal unguéal ADJ m s 0.01 0.00 0.01 0.00 +uni unir VER m s 25.15 32.16 1.57 2.77 par:pas; +uniate uniate ADJ m s 0.00 0.07 0.00 0.07 +unicellulaire unicellulaire ADJ m s 0.05 0.00 0.05 0.00 +unicité unicité NOM f s 0.19 0.41 0.19 0.41 +unicorne unicorne ADJ s 0.01 0.00 0.01 0.00 +unidimensionnel unidimensionnel ADJ m s 0.16 0.07 0.14 0.07 +unidimensionnelle unidimensionnel ADJ f s 0.16 0.07 0.01 0.00 +unidirectionnel unidirectionnel ADJ m s 0.06 0.14 0.03 0.14 +unidirectionnelle unidirectionnel ADJ f s 0.06 0.14 0.02 0.00 +unidirectionnels unidirectionnel ADJ m p 0.06 0.14 0.01 0.00 +unie uni ADJ f s 10.08 13.78 1.17 2.57 +unies uni ADJ f p 10.08 13.78 3.46 4.73 +unification unification NOM f s 1.50 0.34 1.50 0.34 +unificatrice unificateur ADJ f s 0.03 0.00 0.03 0.00 +unifie unifier VER 1.51 1.42 0.00 0.14 ind:pre:3s; +unifient unifier VER 1.51 1.42 0.04 0.00 ind:pre:3p; +unifier unifier VER 1.51 1.42 0.56 0.54 inf; +unifiez unifier VER 1.51 1.42 0.02 0.00 imp:pre:2p; +unifié unifier VER m s 1.51 1.42 0.40 0.41 par:pas; +unifiée unifier VER f s 1.51 1.42 0.20 0.14 par:pas; +unifiées unifier VER f p 1.51 1.42 0.00 0.14 par:pas; +unifiés unifier VER m p 1.51 1.42 0.30 0.07 par:pas; +uniforme uniforme NOM m s 31.01 50.14 24.92 38.72 +uniformes uniforme NOM m p 31.01 50.14 6.09 11.42 +uniformisait uniformiser VER 0.10 0.54 0.00 0.14 ind:imp:3s; +uniformisation uniformisation NOM f s 0.01 0.27 0.01 0.27 +uniformise uniformiser VER 0.10 0.54 0.10 0.20 ind:pre:3s; +uniformiser uniformiser VER 0.10 0.54 0.00 0.07 inf; +uniformisée uniformiser VER f s 0.10 0.54 0.00 0.07 par:pas; +uniformisés uniformiser VER m p 0.10 0.54 0.00 0.07 par:pas; +uniformité uniformité NOM f s 0.07 1.35 0.07 1.35 +uniformément uniformément ADV 0.06 4.05 0.06 4.05 +énigmatique énigmatique ADJ s 0.82 8.11 0.80 5.88 +énigmatiquement énigmatiquement ADV 0.00 0.47 0.00 0.47 +énigmatiques énigmatique ADJ p 0.82 8.11 0.02 2.23 +énigme énigme NOM f s 7.29 10.88 5.45 8.58 +énigmes énigme NOM f p 7.29 10.88 1.85 2.30 +unijambiste unijambiste ADJ s 0.54 0.20 0.53 0.20 +unijambistes unijambiste NOM p 0.22 0.20 0.01 0.07 +unilatéral unilatéral ADJ m s 0.43 0.68 0.22 0.20 +unilatérale unilatéral ADJ f s 0.43 0.68 0.16 0.27 +unilatéralement unilatéralement ADV 0.10 0.41 0.10 0.41 +unilatérales unilatéral ADJ f p 0.43 0.68 0.04 0.20 +unilatéralité unilatéralité NOM f s 0.03 0.00 0.03 0.00 +unilatéraux unilatéral ADJ m p 0.43 0.68 0.01 0.00 +uniment uniment ADV 0.00 0.47 0.00 0.47 +uninominal uninominal ADJ m s 0.00 0.27 0.00 0.20 +uninominales uninominal ADJ f p 0.00 0.27 0.00 0.07 +union union NOM f s 19.14 30.07 18.10 29.19 +unioniste unioniste ADJ s 0.07 0.07 0.07 0.07 +unionistes unioniste NOM p 0.01 0.07 0.00 0.07 +unions union NOM f p 19.14 30.07 1.04 0.88 +uniprix uniprix NOM m 0.00 0.61 0.00 0.61 +unique unique ADJ s 45.43 70.14 43.12 66.76 +uniquement uniquement ADV 21.86 24.66 21.86 24.66 +uniques unique ADJ p 45.43 70.14 2.31 3.38 +unir unir VER 25.15 32.16 5.84 5.14 inf; +unira unir VER 25.15 32.16 0.45 0.20 ind:fut:3s; +unirai unir VER 25.15 32.16 0.16 0.00 ind:fut:1s; +uniraient unir VER 25.15 32.16 0.00 0.14 cnd:pre:3p; +unirait unir VER 25.15 32.16 0.06 0.20 cnd:pre:3s; +unirent unir VER 25.15 32.16 0.17 0.34 ind:pas:3p; +unirez unir VER 25.15 32.16 0.01 0.00 ind:fut:2p; +unirions unir VER 25.15 32.16 0.14 0.00 cnd:pre:1p; +unirons unir VER 25.15 32.16 0.27 0.00 ind:fut:1p; +uniront unir VER 25.15 32.16 0.21 0.00 ind:fut:3p; +unis unir VER m p 25.15 32.16 6.63 4.53 imp:pre:2s;ind:pre:1s;par:pas; +unisexe unisexe ADJ s 0.12 0.14 0.10 0.14 +unisexes unisexe ADJ f p 0.12 0.14 0.01 0.00 +unissaient unir VER 25.15 32.16 0.29 2.57 ind:imp:3p; +unissais unir VER 25.15 32.16 0.00 0.07 ind:imp:1s; +unissait unir VER 25.15 32.16 0.34 5.20 ind:imp:3s; +unissant unir VER 25.15 32.16 0.14 1.28 par:pre; +unisse unir VER 25.15 32.16 1.04 0.07 sub:pre:1s;sub:pre:3s; +unissent unir VER 25.15 32.16 1.23 2.09 ind:pre:3p; +unisses unir VER 25.15 32.16 0.00 0.07 sub:pre:2s; +unissez unir VER 25.15 32.16 1.43 0.47 imp:pre:2p;ind:pre:2p; +unissiez unir VER 25.15 32.16 0.00 0.07 ind:imp:2p; +unissions unir VER 25.15 32.16 0.02 0.14 ind:imp:1p; +unisson unisson NOM m s 0.81 4.53 0.81 4.53 +unissons unir VER 25.15 32.16 0.81 0.20 imp:pre:1p;ind:pre:1p; +unit unir VER 25.15 32.16 2.72 3.51 ind:pre:3s;ind:pas:3s; +unitaire unitaire ADJ s 0.04 0.14 0.04 0.14 +unitarien unitarien ADJ m s 0.04 0.00 0.02 0.00 +unitarienne unitarien ADJ f s 0.04 0.00 0.02 0.00 +énième énième ADJ s 0.56 1.55 0.56 1.55 +unième unième ADJ s 0.17 0.81 0.17 0.81 +unité unité NOM f s 43.46 40.41 29.29 25.07 +unités unité NOM f p 43.46 40.41 14.18 15.34 +univalves univalve ADJ p 0.00 0.07 0.00 0.07 +univers univers NOM m 34.21 58.45 34.21 58.45 +universal universal NOM m s 1.24 0.00 1.24 0.00 +universalisais universaliser VER 0.01 0.07 0.00 0.07 ind:imp:1s; +universalise universaliser VER 0.01 0.07 0.01 0.00 ind:pre:3s; +universalisme universalisme NOM m s 0.00 0.14 0.00 0.14 +universaliste universaliste NOM s 0.01 0.00 0.01 0.00 +universalité universalité NOM f s 0.00 0.27 0.00 0.27 +universel universel ADJ m s 5.09 15.14 2.51 5.95 +universelle universel ADJ f s 5.09 15.14 2.34 8.51 +universellement universellement ADV 0.26 0.41 0.26 0.41 +universelles universel ADJ f p 5.09 15.14 0.18 0.54 +universels universel ADJ m p 5.09 15.14 0.06 0.14 +universitaire universitaire ADJ s 3.58 3.92 2.72 2.50 +universitaires universitaire ADJ p 3.58 3.92 0.85 1.42 +université université NOM f s 40.64 15.00 38.22 13.24 +universités université NOM f p 40.64 15.00 2.42 1.76 +univoque univoque ADJ m s 0.25 0.20 0.25 0.20 +énonce énoncer VER 1.52 4.86 0.48 0.34 ind:pre:1s;ind:pre:3s; +énoncent énoncer VER 1.52 4.86 0.01 0.14 ind:pre:3p; +énoncer énoncer VER 1.52 4.86 0.30 1.49 inf; +énonceront énoncer VER 1.52 4.86 0.34 0.00 ind:fut:3p; +énonciateurs énonciateur NOM m p 0.00 0.07 0.00 0.07 +énonciation énonciation NOM f s 0.04 0.07 0.04 0.07 +énoncé énoncé NOM m s 0.64 1.76 0.49 1.55 +énoncée énoncer VER f s 1.52 4.86 0.12 0.14 par:pas; +énoncées énoncer VER f p 1.52 4.86 0.14 0.14 par:pas; +énoncés énoncé NOM m p 0.64 1.76 0.14 0.20 +énonça énoncer VER 1.52 4.86 0.00 0.74 ind:pas:3s; +énonçai énoncer VER 1.52 4.86 0.00 0.20 ind:pas:1s; +énonçaient énoncer VER 1.52 4.86 0.00 0.07 ind:imp:3p; +énonçais énoncer VER 1.52 4.86 0.00 0.07 ind:imp:1s; +énonçait énoncer VER 1.52 4.86 0.01 0.74 ind:imp:3s; +énonçant énoncer VER 1.52 4.86 0.00 0.34 par:pre; +énorme énorme ADJ s 49.27 120.00 39.73 81.22 +énormes énorme ADJ p 49.27 120.00 9.55 38.78 +énormité énormité NOM f s 0.38 3.04 0.16 2.43 +énormités énormité NOM f p 0.38 3.04 0.22 0.61 +énormément énormément ADV 12.27 8.38 12.27 8.38 +uns uns PRO:ind m p 15.74 62.91 15.74 62.91 +untel untel NOM m s 1.03 2.77 1.03 2.77 +énucléation énucléation NOM f s 0.01 0.07 0.01 0.07 +énucléer énucléer VER 0.16 0.07 0.11 0.00 inf; +énucléé énucléer VER m s 0.16 0.07 0.03 0.00 par:pas; +énucléés énucléer VER m p 0.16 0.07 0.02 0.07 par:pas; +énumère énumérer VER 1.32 7.30 0.51 0.68 imp:pre:2s;ind:pre:1s;ind:pre:3s; +énumèrent énumérer VER 1.32 7.30 0.04 0.14 ind:pre:3p; +énumères énumérer VER 1.32 7.30 0.14 0.07 ind:pre:2s; +énuméra énumérer VER 1.32 7.30 0.01 0.81 ind:pas:3s; +énumérai énumérer VER 1.32 7.30 0.00 0.14 ind:pas:1s; +énuméraient énumérer VER 1.32 7.30 0.00 0.14 ind:imp:3p; +énumérais énumérer VER 1.32 7.30 0.00 0.27 ind:imp:1s; +énumérait énumérer VER 1.32 7.30 0.03 1.08 ind:imp:3s; +énumérant énumérer VER 1.32 7.30 0.02 0.68 par:pre; +énumération énumération NOM f s 0.20 2.16 0.20 1.96 +énumérations énumération NOM f p 0.20 2.16 0.00 0.20 +énumérative énumératif ADJ f s 0.00 0.07 0.00 0.07 +énumérer énumérer VER 1.32 7.30 0.46 2.43 inf; +énumérerai énumérer VER 1.32 7.30 0.00 0.07 ind:fut:1s; +énumérerais énumérer VER 1.32 7.30 0.00 0.07 cnd:pre:1s; +énumérez énumérer VER 1.32 7.30 0.01 0.07 imp:pre:2p;ind:pre:2p; +énumérons énumérer VER 1.32 7.30 0.01 0.00 ind:pre:1p; +énuméré énumérer VER m s 1.32 7.30 0.07 0.41 par:pas; +énumérées énumérer VER f p 1.32 7.30 0.02 0.27 par:pas; +énurésie énurésie NOM f s 0.02 0.07 0.02 0.07 +énurétique énurétique NOM s 0.01 0.00 0.01 0.00 +éocène éocène NOM m s 0.01 0.00 0.01 0.00 +éolien éolien NOM m s 0.04 1.76 0.00 1.15 +éolienne éolien NOM f s 0.04 1.76 0.04 0.47 +éoliennes éolienne NOM f p 0.10 0.00 0.10 0.00 +éoliens éolien ADJ m p 0.00 1.15 0.00 0.07 +éon éon NOM m s 0.07 0.00 0.07 0.00 +éonisme éonisme NOM m s 0.00 0.07 0.00 0.07 +éosine éosine NOM f s 0.01 0.00 0.01 0.00 +épître épître NOM f s 0.40 1.22 0.18 0.88 +épîtres épître NOM f p 0.40 1.22 0.21 0.34 +épagneul épagneul NOM m s 0.27 1.55 0.26 1.49 +épagneule épagneul NOM f s 0.27 1.55 0.01 0.07 +épagomènes épagomène ADJ m p 0.00 0.14 0.00 0.14 +épais épais ADJ m 10.19 90.61 6.08 41.01 +épaisse épais ADJ f s 10.19 90.61 3.28 35.88 +épaissement épaissement ADV 0.00 0.61 0.00 0.61 +épaisses épais ADJ f p 10.19 90.61 0.82 13.72 +épaisseur épaisseur NOM f s 2.16 25.34 1.89 21.89 +épaisseurs épaisseur NOM f p 2.16 25.34 0.27 3.45 +épaissi épaissir VER m s 1.13 9.53 0.16 1.35 par:pas; +épaissie épaissir VER f s 1.13 9.53 0.04 1.15 par:pas; +épaissies épaissir VER f p 1.13 9.53 0.00 0.14 par:pas; +épaissir épaissir VER 1.13 9.53 0.28 1.49 inf; +épaissirais épaissir VER 1.13 9.53 0.00 0.07 cnd:pre:1s; +épaissirent épaissir VER 1.13 9.53 0.00 0.07 ind:pas:3p; +épaissis épaissir VER m p 1.13 9.53 0.02 0.27 imp:pre:2s;par:pas; +épaississaient épaissir VER 1.13 9.53 0.00 0.54 ind:imp:3p; +épaississait épaissir VER 1.13 9.53 0.02 2.09 ind:imp:3s; +épaississant épaissir VER 1.13 9.53 0.00 0.47 par:pre; +épaississe épaissir VER 1.13 9.53 0.00 0.07 sub:pre:3s; +épaississement épaississement NOM m s 0.00 0.20 0.00 0.20 +épaississent épaissir VER 1.13 9.53 0.02 0.41 ind:pre:3p; +épaissit épaissir VER 1.13 9.53 0.59 1.42 ind:pre:3s;ind:pas:3s; +épancha épancher VER 0.49 1.89 0.00 0.14 ind:pas:3s; +épanchaient épancher VER 0.49 1.89 0.00 0.07 ind:imp:3p; +épanchais épancher VER 0.49 1.89 0.01 0.07 ind:imp:1s; +épanchait épancher VER 0.49 1.89 0.00 0.20 ind:imp:3s; +épanchant épancher VER 0.49 1.89 0.00 0.14 par:pre; +épanche épancher VER 0.49 1.89 0.02 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épanchement épanchement NOM m s 0.14 1.82 0.10 1.08 +épanchements épanchement NOM m p 0.14 1.82 0.04 0.74 +épanchent épancher VER 0.49 1.89 0.01 0.20 ind:pre:3p; +épancher épancher VER 0.49 1.89 0.37 0.68 inf; +épancherait épancher VER 0.49 1.89 0.00 0.07 cnd:pre:3s; +épanché épancher VER m s 0.49 1.89 0.07 0.14 par:pas; +épand épandre VER 0.01 1.96 0.00 0.54 ind:pre:3s; +épandage épandage NOM m s 0.11 0.47 0.11 0.27 +épandages épandage NOM m p 0.11 0.47 0.00 0.20 +épandaient épandre VER 0.01 1.96 0.00 0.07 ind:imp:3p; +épandait épandre VER 0.01 1.96 0.00 0.27 ind:imp:3s; +épandant épandre VER 0.01 1.96 0.00 0.20 par:pre; +épandent épandre VER 0.01 1.96 0.00 0.07 ind:pre:3p; +épandeur épandeur NOM m s 0.02 0.00 0.02 0.00 +épandez épandre VER 0.01 1.96 0.01 0.00 imp:pre:2p; +épandre épandre VER 0.01 1.96 0.00 0.41 inf; +épands épandre VER 0.01 1.96 0.00 0.07 imp:pre:2s; +épandu épandre VER m s 0.01 1.96 0.00 0.14 par:pas; +épandue épandre VER f s 0.01 1.96 0.00 0.07 par:pas; +épandues épandre VER f p 0.01 1.96 0.00 0.14 par:pas; +upanisads upanisad NOM f p 0.00 0.07 0.00 0.07 +upanishad upanishad NOM m 0.02 0.07 0.02 0.07 +épanouît épanouir VER 4.51 14.66 0.00 0.07 sub:imp:3s; +épanoui épanouir VER m s 4.51 14.66 0.26 1.28 par:pas; +épanouie épanouir VER f s 4.51 14.66 0.65 1.42 par:pas; +épanouies épanoui ADJ f p 0.86 5.54 0.03 1.01 +épanouir épanouir VER 4.51 14.66 1.48 3.72 inf; +épanouira épanouir VER 4.51 14.66 0.41 0.07 ind:fut:3s; +épanouirait épanouir VER 4.51 14.66 0.03 0.14 cnd:pre:3s; +épanouirent épanouir VER 4.51 14.66 0.12 0.20 ind:pas:3p; +épanouis épanoui ADJ m p 0.86 5.54 0.18 0.41 +épanouissaient épanouir VER 4.51 14.66 0.00 1.01 ind:imp:3p; +épanouissais épanouir VER 4.51 14.66 0.01 0.07 ind:imp:1s; +épanouissait épanouir VER 4.51 14.66 0.03 1.69 ind:imp:3s; +épanouissant épanouir VER 4.51 14.66 0.14 0.41 par:pre; +épanouissante épanouissant ADJ f s 0.38 0.07 0.35 0.00 +épanouissantes épanouissant ADJ f p 0.38 0.07 0.00 0.07 +épanouisse épanouir VER 4.51 14.66 0.04 0.00 sub:pre:3s; +épanouissement épanouissement NOM m s 0.62 3.72 0.62 3.65 +épanouissements épanouissement NOM m p 0.62 3.72 0.00 0.07 +épanouissent épanouir VER 4.51 14.66 0.28 1.01 ind:pre:3p; +épanouisses épanouir VER 4.51 14.66 0.15 0.00 sub:pre:2s; +épanouit épanouir VER 4.51 14.66 0.75 3.11 ind:pre:3s;ind:pas:3s; +épargna épargner VER 26.39 25.95 0.12 1.35 ind:pas:3s; +épargnaient épargner VER 26.39 25.95 0.01 0.74 ind:imp:3p; +épargnais épargner VER 26.39 25.95 0.04 0.20 ind:imp:1s;ind:imp:2s; +épargnait épargner VER 26.39 25.95 0.17 0.81 ind:imp:3s; +épargnant épargner VER 26.39 25.95 0.10 0.95 par:pre; +épargnantes épargnant ADJ f p 0.02 0.00 0.01 0.00 +épargnants épargnant NOM m p 0.17 0.61 0.14 0.14 +épargne épargner VER 26.39 25.95 6.17 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épargnent épargner VER 26.39 25.95 0.09 0.27 ind:pre:3p; +épargner épargner VER 26.39 25.95 6.90 7.64 ind:pre:2p;inf; +épargnera épargner VER 26.39 25.95 1.07 0.41 ind:fut:3s; +épargnerai épargner VER 26.39 25.95 0.55 0.00 ind:fut:1s; +épargnerais épargner VER 26.39 25.95 0.09 0.00 cnd:pre:1s;cnd:pre:2s; +épargnerait épargner VER 26.39 25.95 0.16 0.41 cnd:pre:3s; +épargneras épargner VER 26.39 25.95 0.04 0.00 ind:fut:2s; +épargnerez épargner VER 26.39 25.95 0.19 0.07 ind:fut:2p; +épargneriez épargner VER 26.39 25.95 0.02 0.00 cnd:pre:2p; +épargnerons épargner VER 26.39 25.95 0.07 0.07 ind:fut:1p; +épargneront épargner VER 26.39 25.95 0.23 0.00 ind:fut:3p; +épargnes épargner VER 26.39 25.95 0.10 0.07 ind:pre:2s; +épargnez épargner VER 26.39 25.95 2.78 0.74 imp:pre:2p;ind:pre:2p; +épargniez épargner VER 26.39 25.95 0.04 0.00 ind:imp:2p; +épargnions épargner VER 26.39 25.95 0.00 0.14 ind:imp:1p; +épargnons épargner VER 26.39 25.95 0.02 0.00 imp:pre:1p; +épargnât épargner VER 26.39 25.95 0.00 0.27 sub:imp:3s; +épargnèrent épargner VER 26.39 25.95 0.02 0.14 ind:pas:3p; +épargné épargner VER m s 26.39 25.95 5.04 5.34 par:pas; +épargnée épargner VER f s 26.39 25.95 1.63 1.76 par:pas; +épargnées épargner VER f p 26.39 25.95 0.11 0.81 par:pas; +épargnés épargner VER m p 26.39 25.95 0.63 1.08 par:pas; +éparpilla éparpiller VER 2.16 13.51 0.00 0.68 ind:pas:3s; +éparpillaient éparpiller VER 2.16 13.51 0.00 0.68 ind:imp:3p; +éparpillait éparpiller VER 2.16 13.51 0.01 1.08 ind:imp:3s; +éparpillant éparpiller VER 2.16 13.51 0.11 0.81 par:pre; +éparpille éparpiller VER 2.16 13.51 0.25 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éparpillement éparpillement NOM m s 0.01 0.88 0.01 0.88 +éparpillent éparpiller VER 2.16 13.51 0.01 0.74 ind:pre:3p; +éparpiller éparpiller VER 2.16 13.51 0.34 1.55 inf; +éparpillera éparpiller VER 2.16 13.51 0.02 0.00 ind:fut:3s; +éparpilleraient éparpiller VER 2.16 13.51 0.00 0.07 cnd:pre:3p; +éparpillez éparpiller VER 2.16 13.51 0.06 0.00 imp:pre:2p;ind:pre:2p; +éparpillons éparpiller VER 2.16 13.51 0.03 0.00 ind:pre:1p; +éparpillèrent éparpiller VER 2.16 13.51 0.00 0.74 ind:pas:3p; +éparpillé éparpiller VER m s 2.16 13.51 0.40 0.81 par:pas; +éparpillée éparpillé ADJ f s 0.40 2.77 0.14 0.41 +éparpillées éparpiller VER f p 2.16 13.51 0.26 1.42 par:pas; +éparpillés éparpiller VER m p 2.16 13.51 0.57 2.57 par:pas; +épars épars ADJ m 0.46 11.15 0.32 7.23 +éparse épars ADJ f s 0.46 11.15 0.00 0.95 +éparses épars ADJ f p 0.46 11.15 0.14 2.97 +épart épart NOM m s 0.01 0.00 0.01 0.00 +upas upas ADV 0.01 0.00 0.01 0.00 +épastrouillant épastrouillant ADJ m s 0.00 0.07 0.00 0.07 +épastrouillera épastrouiller VER 0.00 0.07 0.00 0.07 ind:fut:3s; +épata épater VER 4.96 8.78 0.00 0.34 ind:pas:3s; +épataient épater VER 4.96 8.78 0.01 0.07 ind:imp:3p; +épatais épater VER 4.96 8.78 0.01 0.14 ind:imp:1s; +épatait épater VER 4.96 8.78 0.00 0.95 ind:imp:3s; +épatamment épatamment ADV 0.00 0.27 0.00 0.27 +épatant épatant ADJ m s 5.99 6.82 4.11 4.86 +épatante épatant ADJ f s 5.99 6.82 1.31 1.28 +épatantes épatant ADJ f p 5.99 6.82 0.04 0.34 +épatants épatant ADJ m p 5.99 6.82 0.53 0.34 +épate épater VER 4.96 8.78 1.49 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épatement épatement NOM m s 0.00 0.07 0.00 0.07 +épatent épater VER 4.96 8.78 0.02 0.00 ind:pre:3p; +épater épater VER 4.96 8.78 1.48 3.58 inf; +épatera épater VER 4.96 8.78 0.04 0.07 ind:fut:3s; +épaterait épater VER 4.96 8.78 0.00 0.34 cnd:pre:3s; +épateras épater VER 4.96 8.78 0.02 0.00 ind:fut:2s; +épates épater VER 4.96 8.78 0.27 0.00 ind:pre:2s; +épateur épateur ADJ m s 0.00 0.20 0.00 0.14 +épateurs épateur ADJ m p 0.00 0.20 0.00 0.07 +épatez épater VER 4.96 8.78 0.19 0.00 imp:pre:2p;ind:pre:2p; +épaté épater VER m s 4.96 8.78 0.43 1.01 par:pas; +épatée épater VER f s 4.96 8.78 0.23 0.41 par:pas; +épatés épater VER m p 4.96 8.78 0.13 0.14 par:pas; +épaula épauler VER 1.93 3.85 0.01 0.61 ind:pas:3s; +épaulaient épauler VER 1.93 3.85 0.01 0.07 ind:imp:3p; +épaulait épauler VER 1.93 3.85 0.00 0.61 ind:imp:3s; +épaulant épauler VER 1.93 3.85 0.00 0.07 par:pre; +épaulard épaulard NOM m s 0.28 0.00 0.25 0.00 +épaulards épaulard NOM m p 0.28 0.00 0.03 0.00 +épaule épaule NOM f s 32.41 288.72 17.91 116.96 +épaulement épaulement NOM m s 0.00 0.47 0.00 0.34 +épaulements épaulement NOM m p 0.00 0.47 0.00 0.14 +épaulent épauler VER 1.93 3.85 0.11 0.14 ind:pre:3p; +épauler épauler VER 1.93 3.85 0.48 0.95 inf; +épauleras épauler VER 1.93 3.85 0.02 0.00 ind:fut:2s; +épaules épaule NOM f p 32.41 288.72 14.50 171.76 +épaulette épaulette NOM f s 0.81 2.97 0.02 0.61 +épaulettes épaulette NOM f p 0.81 2.97 0.79 2.36 +épaulez épauler VER 1.93 3.85 0.31 0.00 imp:pre:2p;ind:pre:2p; +épaulière épaulière NOM f s 0.01 0.20 0.00 0.07 +épaulières épaulière NOM f p 0.01 0.20 0.01 0.14 +épaulèrent épauler VER 1.93 3.85 0.00 0.07 ind:pas:3p; +épaulé épauler VER m s 1.93 3.85 0.11 0.14 par:pas; +épaulée épauler VER f s 1.93 3.85 0.00 0.20 par:pas; +épaulées épauler VER f p 1.93 3.85 0.00 0.07 par:pas; +épaulés épauler VER m p 1.93 3.85 0.13 0.00 par:pas; +épave épave NOM f s 7.50 12.23 6.52 6.28 +épaves épave NOM f p 7.50 12.23 0.97 5.95 +update update NOM f s 0.04 0.00 0.04 0.00 +updater updater VER 0.01 0.00 0.01 0.00 inf; +épeautre épeautre NOM m s 0.00 0.07 0.00 0.07 +épectase épectase NOM f s 0.00 0.07 0.00 0.07 +épeichette épeichette NOM f s 0.00 0.07 0.00 0.07 +épeire épeire NOM f s 0.00 0.07 0.00 0.07 +épela épeler VER 3.00 2.23 0.00 0.27 ind:pas:3s; +épelais épeler VER 3.00 2.23 0.01 0.00 ind:imp:1s; +épelait épeler VER 3.00 2.23 0.04 0.27 ind:imp:3s; +épelant épeler VER 3.00 2.23 0.03 0.27 par:pre; +épeler épeler VER 3.00 2.23 1.75 0.88 inf; +épelez épeler VER 3.00 2.23 0.17 0.00 imp:pre:2p;ind:pre:2p; +épeliez épeler VER 3.00 2.23 0.01 0.00 ind:imp:2p; +épelions épeler VER 3.00 2.23 0.00 0.07 ind:imp:1p; +épellation épellation NOM f s 0.04 0.00 0.04 0.00 +épelle épeler VER 3.00 2.23 0.45 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épellent épeler VER 3.00 2.23 0.02 0.14 ind:pre:3p; +épellerais épeler VER 3.00 2.23 0.03 0.00 cnd:pre:1s; +épelles épeler VER 3.00 2.23 0.16 0.00 ind:pre:2s; +épelé épeler VER m s 3.00 2.23 0.32 0.14 par:pas; +épelés épeler VER m p 3.00 2.23 0.01 0.07 par:pas; +épendyme épendyme NOM m s 0.01 0.00 0.01 0.00 +éperdu éperdre VER m s 0.20 3.92 0.16 2.09 par:pas; +éperdue éperdu ADJ f s 0.37 7.57 0.13 2.57 +éperdues éperdu ADJ f p 0.37 7.57 0.00 0.61 +éperdument éperdument ADV 1.01 5.68 1.01 5.68 +éperdus éperdu ADJ m p 0.37 7.57 0.16 0.95 +éperlan éperlan NOM m s 0.03 0.00 0.02 0.00 +éperlans éperlan NOM m p 0.03 0.00 0.01 0.00 +éperon éperon NOM m s 1.07 8.18 0.20 3.04 +éperonna éperonner VER 0.36 1.35 0.00 0.14 ind:pas:3s; +éperonnant éperonner VER 0.36 1.35 0.00 0.14 par:pre; +éperonne éperonner VER 0.36 1.35 0.12 0.07 ind:pre:3s; +éperonner éperonner VER 0.36 1.35 0.04 0.27 inf; +éperonnera éperonner VER 0.36 1.35 0.01 0.00 ind:fut:3s; +éperonnez éperonner VER 0.36 1.35 0.01 0.00 ind:pre:2p; +éperonnèrent éperonner VER 0.36 1.35 0.00 0.07 ind:pas:3p; +éperonné éperonner VER m s 0.36 1.35 0.16 0.47 par:pas; +éperonnée éperonner VER f s 0.36 1.35 0.00 0.07 par:pas; +éperonnés éperonner VER m p 0.36 1.35 0.02 0.14 par:pas; +éperons éperon NOM m p 1.07 8.18 0.87 5.14 +épervier épervier NOM m s 0.27 1.49 0.27 1.15 +éperviers épervier NOM m p 0.27 1.49 0.00 0.34 +épervière épervière NOM f s 0.00 0.14 0.00 0.07 +épervières épervière NOM f p 0.00 0.14 0.00 0.07 +épeurant épeurer VER 0.02 0.47 0.02 0.00 par:pre; +épeurer épeurer VER 0.02 0.47 0.00 0.07 inf; +épeuré épeurer VER m s 0.02 0.47 0.00 0.20 par:pas; +épeurée épeurer VER f s 0.02 0.47 0.00 0.20 par:pas; +upgradée upgrader VER f s 0.14 0.00 0.14 0.00 par:pas; +éphèbe éphèbe NOM m s 0.21 2.23 0.06 1.82 +éphèbes éphèbe NOM m p 0.21 2.23 0.14 0.41 +éphébie éphébie NOM f s 0.00 0.07 0.00 0.07 +éphédrine éphédrine NOM f s 0.08 0.00 0.08 0.00 +éphélides éphélide NOM f p 0.00 0.27 0.00 0.27 +éphémère éphémère ADJ s 1.73 9.19 1.33 5.74 +éphémèrement éphémèrement ADV 0.00 0.20 0.00 0.20 +éphémères éphémère ADJ p 1.73 9.19 0.41 3.45 +éphéméride éphéméride NOM f s 0.01 0.81 0.01 0.54 +éphémérides éphéméride NOM f p 0.01 0.81 0.00 0.27 +éphésiens éphésien ADJ m p 0.01 0.07 0.01 0.07 +épi épi NOM m s 1.61 5.81 1.09 1.82 +épia épier VER 4.92 15.88 0.00 0.20 ind:pas:3s; +épiai épier VER 4.92 15.88 0.00 0.07 ind:pas:1s; +épiaient épier VER 4.92 15.88 0.21 1.22 ind:imp:3p; +épiais épier VER 4.92 15.88 0.47 1.08 ind:imp:1s;ind:imp:2s; +épiait épier VER 4.92 15.88 0.20 2.50 ind:imp:3s; +épiant épier VER 4.92 15.88 0.14 1.96 par:pre; +épicanthus épicanthus NOM m 0.01 0.00 0.01 0.00 +épice épice NOM f s 3.06 6.76 1.46 1.69 +épicemard épicemard NOM m s 0.00 0.41 0.00 0.14 +épicemards épicemard NOM m p 0.00 0.41 0.00 0.27 +épicentre épicentre NOM m s 0.53 0.34 0.53 0.34 +épicer épicer VER 1.04 1.01 0.27 0.14 inf; +épicerie épicerie NOM f s 6.79 9.46 6.52 8.31 +épiceries épicerie NOM f p 6.79 9.46 0.27 1.15 +épices épice NOM f p 3.06 6.76 1.61 5.07 +épicier épicier NOM m s 2.81 10.27 2.73 7.70 +épiciers épicier NOM m p 2.81 10.27 0.08 0.61 +épicière épicier NOM f s 2.81 10.27 0.01 1.89 +épicières épicier NOM f p 2.81 10.27 0.00 0.07 +épicondyle épicondyle NOM m s 0.01 0.00 0.01 0.00 +épicrânienne épicrânien ADJ f s 0.02 0.00 0.02 0.00 +épicé épicé ADJ m s 1.75 0.95 0.81 0.14 +épicéa épicéa NOM m s 0.05 0.07 0.05 0.07 +épicée épicé ADJ f s 1.75 0.95 0.57 0.41 +épicées épicé ADJ f p 1.75 0.95 0.09 0.20 +épicurien épicurien ADJ m s 0.14 0.47 0.14 0.34 +épicurienne épicurien ADJ f s 0.14 0.47 0.00 0.14 +épicuriens épicurien ADJ m p 0.14 0.47 0.01 0.00 +épicurisme épicurisme NOM m s 0.00 0.27 0.00 0.27 +épicés épicé ADJ m p 1.75 0.95 0.27 0.20 +épiderme épiderme NOM m s 0.46 2.97 0.45 2.70 +épidermes épiderme NOM m p 0.46 2.97 0.01 0.27 +épidermique épidermique ADJ s 0.20 0.54 0.17 0.41 +épidermiques épidermique ADJ p 0.20 0.54 0.03 0.14 +épidiascopes épidiascope NOM m p 0.00 0.07 0.00 0.07 +épididyme épididyme NOM m s 0.02 0.14 0.02 0.07 +épididymes épididyme NOM m p 0.02 0.14 0.00 0.07 +épidémie épidémie NOM f s 9.05 5.07 7.91 3.24 +épidémies épidémie NOM f p 9.05 5.07 1.14 1.82 +épidémiologie épidémiologie NOM f s 0.14 0.14 0.14 0.14 +épidémiologique épidémiologique ADJ m s 0.04 0.00 0.04 0.00 +épidémiologiste épidémiologiste NOM s 0.01 0.07 0.01 0.07 +épidémique épidémique ADJ s 0.44 0.14 0.40 0.07 +épidémiques épidémique ADJ p 0.44 0.14 0.03 0.07 +épidural épidural ADJ m s 0.15 0.00 0.03 0.00 +épidurale épidural ADJ f s 0.15 0.00 0.13 0.00 +épie épier VER 4.92 15.88 1.30 1.28 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +épient épier VER 4.92 15.88 0.16 0.47 ind:pre:3p; +épier épier VER 4.92 15.88 1.52 3.85 inf; +épierais épier VER 4.92 15.88 0.00 0.20 cnd:pre:1s; +épierait épier VER 4.92 15.88 0.00 0.07 cnd:pre:3s; +épierrer épierrer VER 0.00 0.07 0.00 0.07 inf; +épies épier VER 4.92 15.88 0.03 0.07 ind:pre:2s; +épieu épieu NOM m s 0.44 0.20 0.44 0.20 +épieux épieux NOM m p 0.02 0.27 0.02 0.27 +épiez épier VER 4.92 15.88 0.08 0.00 imp:pre:2p;ind:pre:2p; +épigastre épigastre NOM m s 0.00 0.20 0.00 0.20 +épigastrique épigastrique ADJ f s 0.01 0.00 0.01 0.00 +épiglotte épiglotte NOM f s 0.06 0.00 0.06 0.00 +épigone épigone NOM m s 0.20 0.41 0.20 0.20 +épigones épigone NOM m p 0.20 0.41 0.00 0.20 +épigramme épigramme NOM f s 0.01 0.41 0.01 0.20 +épigrammes épigramme NOM f p 0.01 0.41 0.00 0.20 +épigraphe épigraphe NOM f s 0.01 0.61 0.01 0.61 +épigraphie épigraphie NOM f s 0.00 0.14 0.00 0.14 +épigraphistes épigraphiste NOM p 0.00 0.07 0.00 0.07 +épilais épiler VER 2.04 2.77 0.00 0.07 ind:imp:1s; +épilait épiler VER 2.04 2.77 0.02 0.07 ind:imp:3s; +épilant épiler VER 2.04 2.77 0.02 0.07 par:pre; +épilateur épilateur NOM m s 0.04 0.00 0.04 0.00 +épilation épilation NOM f s 0.53 0.20 0.53 0.20 +épilatoire épilatoire ADJ s 0.03 0.00 0.03 0.00 +épile épiler VER 2.04 2.77 0.18 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épilent épiler VER 2.04 2.77 0.02 0.07 ind:pre:3p; +épilepsie épilepsie NOM f s 1.89 1.55 1.89 1.55 +épileptiforme épileptiforme ADJ f s 0.01 0.00 0.01 0.00 +épileptique épileptique ADJ s 1.80 0.61 1.63 0.47 +épileptiques épileptique ADJ p 1.80 0.61 0.17 0.14 +épiler épiler VER 2.04 2.77 1.13 1.22 inf;; +épileuse épileur NOM f s 0.00 0.07 0.00 0.07 +épilez épiler VER 2.04 2.77 0.05 0.00 ind:pre:2p; +épiloguaient épiloguer VER 0.06 1.15 0.00 0.07 ind:imp:3p; +épilogue épilogue NOM m s 0.29 1.76 0.29 1.62 +épiloguer épiloguer VER 0.06 1.15 0.06 0.74 inf; +épilogues épilogue NOM m p 0.29 1.76 0.00 0.14 +épiloguions épiloguer VER 0.06 1.15 0.00 0.14 ind:imp:1p; +épiloguèrent épiloguer VER 0.06 1.15 0.00 0.07 ind:pas:3p; +épilogué épiloguer VER m s 0.06 1.15 0.00 0.14 par:pas; +épilé épiler VER m s 2.04 2.77 0.20 0.27 par:pas; +épilée épiler VER f s 2.04 2.77 0.36 0.07 par:pas; +épilées épiler VER f p 2.04 2.77 0.03 0.27 par:pas; +épilés épiler VER m p 2.04 2.77 0.03 0.27 par:pas; +épinaie épinaie NOM f s 0.01 0.00 0.01 0.00 +épinard épinard NOM m s 1.91 2.23 0.12 0.41 +épinards épinard NOM m p 1.91 2.23 1.79 1.82 +épine_vinette épine_vinette NOM f s 0.00 0.07 0.00 0.07 +épine épine NOM f s 5.81 12.43 2.52 3.92 +épines épine NOM f p 5.81 12.43 3.29 8.51 +épinette épinette NOM f s 0.01 0.20 0.01 0.14 +épinettes épinette NOM f p 0.01 0.20 0.00 0.07 +épineuse épineux ADJ f s 1.01 4.39 0.50 1.28 +épineuses épineux ADJ f p 1.01 4.39 0.02 0.81 +épineux épineux ADJ m 1.01 4.39 0.50 2.30 +épingla épingler VER 2.76 6.82 0.00 0.41 ind:pas:3s; +épinglage épinglage NOM m s 0.01 0.07 0.01 0.07 +épinglai épingler VER 2.76 6.82 0.00 0.07 ind:pas:1s; +épinglaient épingler VER 2.76 6.82 0.01 0.00 ind:imp:3p; +épinglait épingler VER 2.76 6.82 0.00 0.27 ind:imp:3s; +épingle épingle NOM f s 5.57 18.24 3.29 8.92 +épinglent épingler VER 2.76 6.82 0.04 0.07 ind:pre:3p; +épingler épingler VER 2.76 6.82 1.35 0.88 inf; +épinglera épingler VER 2.76 6.82 0.07 0.07 ind:fut:3s; +épinglerai épingler VER 2.76 6.82 0.04 0.00 ind:fut:1s; +épingleront épingler VER 2.76 6.82 0.00 0.07 ind:fut:3p; +épingles épingle NOM f p 5.57 18.24 2.28 9.32 +épinglette épinglette NOM f s 0.01 0.00 0.01 0.00 +épinglez épingler VER 2.76 6.82 0.03 0.07 imp:pre:2p; +épinglons épingler VER 2.76 6.82 0.01 0.00 ind:pre:1p; +épinglèrent épingler VER 2.76 6.82 0.00 0.07 ind:pas:3p; +épinglé épingler VER m s 2.76 6.82 0.65 1.96 par:pas; +épinglée épingler VER f s 2.76 6.82 0.04 1.62 par:pas; +épinglées épingler VER f p 2.76 6.82 0.04 0.54 par:pas; +épinglés épingler VER m p 2.76 6.82 0.04 0.47 par:pas; +épiniers épinier NOM m p 0.00 0.07 0.00 0.07 +épinière épinier ADJ f s 1.39 1.49 1.39 1.49 +épinoches épinoche NOM f p 0.00 0.07 0.00 0.07 +épions épier VER 4.92 15.88 0.01 0.07 ind:pre:1p; +épiphane épiphane ADJ m s 0.00 0.07 0.00 0.07 +épiphanie épiphanie NOM f s 0.23 0.74 0.23 0.74 +épiphénomène épiphénomène NOM m s 0.00 0.07 0.00 0.07 +épiphylle épiphylle NOM m s 0.00 0.14 0.00 0.07 +épiphylles épiphylle NOM m p 0.00 0.14 0.00 0.07 +épiphysaire épiphysaire ADJ f s 0.01 0.00 0.01 0.00 +épiphyse épiphyse NOM f s 0.16 0.00 0.16 0.00 +épiphyte épiphyte NOM m s 0.05 0.00 0.01 0.00 +épiphytes épiphyte NOM m p 0.05 0.00 0.04 0.00 +épiploon épiploon NOM m s 0.00 0.14 0.00 0.07 +épiploons épiploon NOM m p 0.00 0.14 0.00 0.07 +épique épique ADJ s 0.75 2.50 0.68 1.76 +épiques épique ADJ p 0.75 2.50 0.06 0.74 +épis épi NOM m p 1.61 5.81 0.52 3.99 +épiscopal épiscopal ADJ m s 0.10 1.15 0.01 0.54 +épiscopale épiscopal ADJ f s 0.10 1.15 0.07 0.47 +épiscopales épiscopal ADJ f p 0.10 1.15 0.00 0.07 +épiscopalien épiscopalien ADJ m s 0.11 0.00 0.05 0.00 +épiscopalienne épiscopalien ADJ f s 0.11 0.00 0.06 0.00 +épiscopat épiscopat NOM m s 0.00 0.27 0.00 0.27 +épiscopaux épiscopal ADJ m p 0.10 1.15 0.01 0.07 +épisiotomie épisiotomie NOM f s 0.05 0.00 0.05 0.00 +épisode épisode NOM m s 17.32 18.51 13.63 12.50 +épisodes épisode NOM m p 17.32 18.51 3.69 6.01 +épisodique épisodique ADJ s 0.01 2.16 0.01 1.15 +épisodiquement épisodiquement ADV 0.01 1.01 0.01 1.01 +épisodiques épisodique ADJ p 0.01 2.16 0.00 1.01 +épisser épisser VER 0.03 0.07 0.02 0.00 inf; +épissoirs épissoir NOM m p 0.02 0.07 0.02 0.07 +épissé épisser VER m s 0.03 0.07 0.01 0.07 par:pas; +épissures épissure NOM f p 0.01 0.14 0.01 0.14 +épistolaire épistolaire ADJ s 0.00 0.95 0.00 0.54 +épistolaires épistolaire ADJ p 0.00 0.95 0.00 0.41 +épistolier épistolier NOM m s 0.01 0.27 0.01 0.20 +épistolière épistolier NOM f s 0.01 0.27 0.00 0.07 +épistémologie épistémologie NOM f s 0.04 0.07 0.04 0.07 +épistémologique épistémologique ADJ m s 0.00 0.07 0.00 0.07 +épistémologues épistémologue NOM p 0.00 0.07 0.00 0.07 +épitaphe épitaphe NOM f s 0.72 1.69 0.72 1.35 +épitaphes épitaphe NOM f p 0.72 1.69 0.00 0.34 +épithalame épithalame NOM m s 0.00 0.20 0.00 0.07 +épithalames épithalame NOM m p 0.00 0.20 0.00 0.14 +épièrent épier VER 4.92 15.88 0.00 0.20 ind:pas:3p; +épithète épithète NOM f s 0.17 1.96 0.04 1.08 +épithètes épithète NOM f p 0.17 1.96 0.12 0.88 +épithélial épithélial ADJ m s 0.04 0.00 0.04 0.00 +épithéliale épithélial ADJ f s 0.04 0.00 0.01 0.00 +épithélioma épithélioma NOM m s 0.01 0.00 0.01 0.00 +épithélium épithélium NOM m s 0.19 0.00 0.19 0.00 +épitoge épitoge NOM f s 0.00 0.14 0.00 0.14 +épitomé épitomé NOM m s 0.00 0.07 0.00 0.07 +épié épier VER m s 4.92 15.88 0.37 1.69 par:pas; +épiée épier VER f s 4.92 15.88 0.37 0.54 par:pas; +épiées épier VER f p 4.92 15.88 0.00 0.14 par:pas; +épiés épier VER m p 4.92 15.88 0.05 0.27 par:pas; +éploie éployer VER 0.00 1.01 0.00 0.41 ind:pre:3s; +éploient éployer VER 0.00 1.01 0.00 0.07 ind:pre:3p; +éploré éploré ADJ m s 0.67 2.23 0.20 0.54 +éplorée éploré ADJ f s 0.67 2.23 0.39 0.88 +éplorées éploré ADJ f p 0.67 2.23 0.05 0.41 +éplorés éploré ADJ m p 0.67 2.23 0.03 0.41 +éployai éployer VER 0.00 1.01 0.00 0.07 ind:pas:1s; +éployait éployer VER 0.00 1.01 0.00 0.14 ind:imp:3s; +éployer éployer VER 0.00 1.01 0.00 0.07 inf; +éployé éployer VER m s 0.00 1.01 0.00 0.07 par:pas; +éployée éployer VER f s 0.00 1.01 0.00 0.07 par:pas; +éployées éployer VER f p 0.00 1.01 0.00 0.07 par:pas; +éployés éployer VER m p 0.00 1.01 0.00 0.07 par:pas; +éplucha éplucher VER 3.27 9.19 0.00 0.34 ind:pas:3s; +épluchage épluchage NOM m s 0.04 0.68 0.04 0.41 +épluchages épluchage NOM m p 0.04 0.68 0.00 0.27 +épluchaient éplucher VER 3.27 9.19 0.01 0.34 ind:imp:3p; +épluchais éplucher VER 3.27 9.19 0.02 0.14 ind:imp:1s; +épluchait éplucher VER 3.27 9.19 0.01 1.55 ind:imp:3s; +épluchant éplucher VER 3.27 9.19 0.05 0.81 par:pre; +épluche_légumes épluche_légumes NOM m 0.01 0.00 0.01 0.00 +épluche éplucher VER 3.27 9.19 0.70 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épluchent éplucher VER 3.27 9.19 0.09 0.14 ind:pre:3p; +éplucher éplucher VER 3.27 9.19 1.32 3.04 inf; +épluchera éplucher VER 3.27 9.19 0.14 0.00 ind:fut:3s; +éplucherai éplucher VER 3.27 9.19 0.02 0.07 ind:fut:1s; +éplucherons éplucher VER 3.27 9.19 0.00 0.07 ind:fut:1p; +épluches éplucher VER 3.27 9.19 0.26 0.07 ind:pre:2s; +éplucheur éplucheur NOM m s 0.09 0.20 0.09 0.07 +éplucheurs éplucheur NOM m p 0.09 0.20 0.00 0.07 +éplucheuses éplucheur NOM f p 0.09 0.20 0.00 0.07 +épluchez éplucher VER 3.27 9.19 0.03 0.07 imp:pre:2p;ind:pre:2p; +épluchions éplucher VER 3.27 9.19 0.00 0.07 ind:imp:1p; +épluchons éplucher VER 3.27 9.19 0.04 0.14 imp:pre:1p;ind:pre:1p; +épluchât éplucher VER 3.27 9.19 0.00 0.07 sub:imp:3s; +épluché éplucher VER m s 3.27 9.19 0.45 0.81 par:pas; +épluchée éplucher VER f s 3.27 9.19 0.01 0.14 par:pas; +épluchées éplucher VER f p 3.27 9.19 0.11 0.14 par:pas; +épluchure épluchure NOM f s 0.23 3.18 0.12 0.41 +épluchures épluchure NOM f p 0.23 3.18 0.10 2.77 +épluchés éplucher VER m p 3.27 9.19 0.01 0.34 par:pas; +épointé épointer VER m s 0.11 0.20 0.10 0.07 par:pas; +épointées épointer VER f p 0.11 0.20 0.00 0.07 par:pas; +épointés épointer VER m p 0.11 0.20 0.01 0.07 par:pas; +éponge éponge NOM f s 7.11 14.53 6.14 10.14 +épongea éponger VER 0.97 10.20 0.00 1.62 ind:pas:3s; +épongeage épongeage NOM m s 0.00 0.07 0.00 0.07 +épongeaient éponger VER 0.97 10.20 0.00 0.14 ind:imp:3p; +épongeais éponger VER 0.97 10.20 0.00 0.07 ind:imp:1s; +épongeait éponger VER 0.97 10.20 0.00 1.35 ind:imp:3s; +épongeant éponger VER 0.97 10.20 0.00 1.01 par:pre; +épongent éponger VER 0.97 10.20 0.00 0.14 ind:pre:3p; +épongeons éponger VER 0.97 10.20 0.00 0.07 imp:pre:1p; +éponger éponger VER 0.97 10.20 0.51 2.97 inf; +éponges éponge NOM f p 7.11 14.53 0.97 4.39 +épongez éponger VER 0.97 10.20 0.01 0.00 ind:pre:2p; +épongiez éponger VER 0.97 10.20 0.00 0.07 ind:imp:2p; +épongèrent éponger VER 0.97 10.20 0.00 0.07 ind:pas:3p; +épongé éponger VER m s 0.97 10.20 0.07 0.34 par:pas; +épongée éponger VER f s 0.97 10.20 0.02 0.27 par:pas; +épongés éponger VER m p 0.97 10.20 0.00 0.14 par:pas; +éponyme éponyme ADJ s 0.00 0.07 0.00 0.07 +épopée épopée NOM f s 1.20 4.73 1.13 4.19 +épopées épopée NOM f p 1.20 4.73 0.07 0.54 +époque époque NOM f s 68.44 138.51 67.23 132.70 +époques époque NOM f p 68.44 138.51 1.21 5.81 +épouillage épouillage NOM m s 0.01 0.07 0.01 0.07 +épouillaient épouiller VER 0.50 1.08 0.00 0.14 ind:imp:3p; +épouillait épouiller VER 0.50 1.08 0.03 0.34 ind:imp:3s; +épouille épouiller VER 0.50 1.08 0.14 0.07 ind:pre:1s;ind:pre:3s; +épouillent épouiller VER 0.50 1.08 0.03 0.00 ind:pre:3p; +épouiller épouiller VER 0.50 1.08 0.29 0.41 inf; +épouillé épouiller VER m s 0.50 1.08 0.00 0.07 par:pas; +épouillés épouiller VER m p 0.50 1.08 0.02 0.07 par:pas; +époumonaient époumoner VER 0.09 0.88 0.01 0.00 ind:imp:3p; +époumonait époumoner VER 0.09 0.88 0.00 0.20 ind:imp:3s; +époumonant époumoner VER 0.09 0.88 0.02 0.14 par:pre; +époumone époumoner VER 0.09 0.88 0.02 0.20 imp:pre:2s;ind:pre:3s; +époumoner époumoner VER 0.09 0.88 0.04 0.14 inf; +époumonèrent époumoner VER 0.09 0.88 0.00 0.07 ind:pas:3p; +époumonés époumoner VER m p 0.09 0.88 0.00 0.14 par:pas; +épousa épouser VER 118.78 59.26 0.88 2.09 ind:pas:3s; +épousable épousable ADJ s 0.00 0.07 0.00 0.07 +épousai épouser VER 118.78 59.26 0.02 0.14 ind:pas:1s; +épousaient épouser VER 118.78 59.26 0.14 0.68 ind:imp:3p; +épousailles épousailles NOM f p 0.29 0.61 0.29 0.61 +épousais épouser VER 118.78 59.26 1.01 0.20 ind:imp:1s;ind:imp:2s; +épousait épouser VER 118.78 59.26 0.65 4.46 ind:imp:3s; +épousant épouser VER 118.78 59.26 0.87 3.18 par:pre; +épouse époux NOM f s 61.54 46.62 41.98 24.26 +épousent épouser VER 118.78 59.26 0.52 0.47 ind:pre:3p; +épouser épouser VER 118.78 59.26 57.87 20.20 inf;; +épousera épouser VER 118.78 59.26 1.75 1.01 ind:fut:3s; +épouserai épouser VER 118.78 59.26 4.25 0.68 ind:fut:1s; +épouseraient épouser VER 118.78 59.26 0.01 0.34 cnd:pre:3p; +épouserais épouser VER 118.78 59.26 1.81 0.74 cnd:pre:1s;cnd:pre:2s; +épouserait épouser VER 118.78 59.26 1.78 0.88 cnd:pre:3s; +épouseras épouser VER 118.78 59.26 1.75 0.34 ind:fut:2s; +épouserez épouser VER 118.78 59.26 0.54 0.07 ind:fut:2p; +épouseriez épouser VER 118.78 59.26 0.17 0.14 cnd:pre:2p; +épouserons épouser VER 118.78 59.26 0.12 0.00 ind:fut:1p; +épouseront épouser VER 118.78 59.26 0.03 0.14 ind:fut:3p; +épouses épouse NOM f p 3.80 0.00 3.80 0.00 +épouseur épouseur NOM m s 0.40 0.07 0.40 0.00 +épouseurs épouseur NOM m p 0.40 0.07 0.00 0.07 +épousez épouser VER 118.78 59.26 1.31 0.27 imp:pre:2p;ind:pre:2p; +épousiez épouser VER 118.78 59.26 0.25 0.14 ind:imp:2p; +épousions épouser VER 118.78 59.26 0.00 0.34 ind:imp:1p; +épousons épouser VER 118.78 59.26 0.03 0.07 ind:pre:1p; +épousât épouser VER 118.78 59.26 0.00 0.54 sub:imp:3s; +épousseta épousseter VER 0.54 4.32 0.00 0.74 ind:pas:3s; +époussetage époussetage NOM m s 0.00 0.07 0.00 0.07 +époussetaient épousseter VER 0.54 4.32 0.00 0.20 ind:imp:3p; +époussetais épousseter VER 0.54 4.32 0.03 0.07 ind:imp:1s; +époussetait épousseter VER 0.54 4.32 0.00 0.41 ind:imp:3s; +époussetant épousseter VER 0.54 4.32 0.02 0.34 par:pre; +épousseter épousseter VER 0.54 4.32 0.26 0.54 inf; +époussetez épousseter VER 0.54 4.32 0.03 0.00 imp:pre:2p; +époussette épousseter VER 0.54 4.32 0.08 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +époussettent épousseter VER 0.54 4.32 0.01 0.07 ind:pre:3p; +époussetèrent épousseter VER 0.54 4.32 0.00 0.07 ind:pas:3p; +épousseté épousseter VER m s 0.54 4.32 0.09 0.81 par:pas; +époussetée épousseter VER f s 0.54 4.32 0.02 0.14 par:pas; +époussetés épousseter VER m p 0.54 4.32 0.00 0.20 par:pas; +épousèrent épouser VER 118.78 59.26 0.16 0.14 ind:pas:3p; +époustouflait époustoufler VER 0.27 0.41 0.02 0.00 ind:imp:3s; +époustouflant époustouflant ADJ m s 0.90 1.35 0.67 0.14 +époustouflante époustouflant ADJ f s 0.90 1.35 0.20 0.74 +époustouflantes époustouflant ADJ f p 0.90 1.35 0.02 0.34 +époustouflants époustouflant ADJ m p 0.90 1.35 0.01 0.14 +époustoufle époustoufler VER 0.27 0.41 0.00 0.14 ind:pre:1s;ind:pre:3s; +époustoufler époustoufler VER 0.27 0.41 0.05 0.00 inf; +époustouflé époustoufler VER m s 0.27 0.41 0.07 0.14 par:pas; +époustouflée époustoufler VER f s 0.27 0.41 0.04 0.07 par:pas; +époustouflés époustoufler VER m p 0.27 0.41 0.04 0.07 par:pas; +épousé épouser VER m s 118.78 59.26 18.09 10.88 par:pas; +épousée épouser VER f s 118.78 59.26 5.85 2.84 par:pas; +épousées épouser VER f p 118.78 59.26 0.27 0.14 par:pas; +épousés épouser VER m p 118.78 59.26 0.06 0.20 par:pas; +épouvanta épouvanter VER 1.81 7.97 0.00 0.68 ind:pas:3s; +épouvantable épouvantable ADJ s 10.82 9.53 9.53 7.43 +épouvantablement épouvantablement ADV 0.34 0.95 0.34 0.95 +épouvantables épouvantable ADJ p 10.82 9.53 1.29 2.09 +épouvantaient épouvanter VER 1.81 7.97 0.00 0.68 ind:imp:3p; +épouvantail épouvantail NOM m s 2.31 3.51 2.00 2.77 +épouvantails épouvantail NOM m p 2.31 3.51 0.32 0.74 +épouvantait épouvanter VER 1.81 7.97 0.34 1.08 ind:imp:3s; +épouvante épouvante NOM f s 1.93 9.80 1.79 9.59 +épouvantement épouvantement NOM m s 0.00 0.27 0.00 0.20 +épouvantements épouvantement NOM m p 0.00 0.27 0.00 0.07 +épouvantent épouvanter VER 1.81 7.97 0.02 0.41 ind:pre:3p; +épouvanter épouvanter VER 1.81 7.97 0.16 0.47 inf; +épouvanteraient épouvanter VER 1.81 7.97 0.00 0.07 cnd:pre:3p; +épouvantes épouvanter VER 1.81 7.97 0.17 0.00 ind:pre:2s; +épouvantez épouvanter VER 1.81 7.97 0.01 0.00 ind:pre:2p; +épouvantèrent épouvanter VER 1.81 7.97 0.00 0.07 ind:pas:3p; +épouvanté épouvanter VER m s 1.81 7.97 0.20 1.96 par:pas; +épouvantée épouvanté ADJ f s 0.29 3.85 0.11 1.01 +épouvantées épouvanter VER f p 1.81 7.97 0.01 0.14 par:pas; +épouvantés épouvanté ADJ m p 0.29 3.85 0.01 1.01 +époux époux NOM m 61.54 46.62 19.57 16.42 +époxy époxy ADJ f s 0.04 0.00 0.04 0.00 +époxyde époxyde NOM m s 0.01 0.00 0.01 0.00 +uppercut uppercut NOM m s 0.33 1.28 0.28 0.95 +uppercuts uppercut NOM m p 0.33 1.28 0.04 0.34 +éprenait éprendre VER 2.95 5.95 0.00 0.14 ind:imp:3s; +éprenant éprendre VER 2.95 5.95 0.00 0.14 par:pre; +éprend éprendre VER 2.95 5.95 0.04 0.27 ind:pre:3s; +éprendre éprendre VER 2.95 5.95 0.32 0.68 inf; +éprends éprendre VER 2.95 5.95 0.05 0.00 imp:pre:2s;ind:pre:1s;ind:pre:2s; +éprenne éprendre VER 2.95 5.95 0.00 0.07 sub:pre:3s; +éprennent éprendre VER 2.95 5.95 0.03 0.07 ind:pre:3p; +épreuve épreuve NOM f s 23.43 46.28 16.88 27.91 +épreuves épreuve NOM f p 23.43 46.28 6.55 18.38 +épris éprendre VER m 2.95 5.95 1.56 3.04 ind:pas:1s;ind:pas:2s;par:pas;par:pas; +éprise éprendre VER f s 2.95 5.95 0.83 1.01 par:pas; +éprises éprendre VER f p 2.95 5.95 0.01 0.14 par:pas; +éprit éprendre VER 2.95 5.95 0.13 0.41 ind:pas:3s; +éprouva éprouver VER 23.35 127.09 0.01 9.39 ind:pas:3s; +éprouvai éprouver VER 23.35 127.09 0.03 5.27 ind:pas:1s; +éprouvaient éprouver VER 23.35 127.09 0.03 3.51 ind:imp:3p; +éprouvais éprouver VER 23.35 127.09 1.18 13.04 ind:imp:1s;ind:imp:2s; +éprouvait éprouver VER 23.35 127.09 0.88 26.35 ind:imp:3s; +éprouvant éprouvant ADJ m s 1.42 2.77 0.61 1.01 +éprouvante éprouvant ADJ f s 1.42 2.77 0.46 1.08 +éprouvantes éprouvant ADJ f p 1.42 2.77 0.16 0.54 +éprouvants éprouvant ADJ m p 1.42 2.77 0.19 0.14 +éprouve éprouver VER 23.35 127.09 6.74 19.86 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +éprouvent éprouver VER 23.35 127.09 0.87 1.96 ind:pre:3p; +éprouver éprouver VER 23.35 127.09 3.97 19.05 inf; +éprouvera éprouver VER 23.35 127.09 0.06 0.07 ind:fut:3s; +éprouverai éprouver VER 23.35 127.09 0.42 0.07 ind:fut:1s; +éprouveraient éprouver VER 23.35 127.09 0.01 0.07 cnd:pre:3p; +éprouverais éprouver VER 23.35 127.09 0.03 0.27 cnd:pre:1s;cnd:pre:2s; +éprouverait éprouver VER 23.35 127.09 0.16 0.74 cnd:pre:3s; +éprouveras éprouver VER 23.35 127.09 0.36 0.00 ind:fut:2s; +éprouverez éprouver VER 23.35 127.09 0.05 0.34 ind:fut:2p; +éprouveront éprouver VER 23.35 127.09 0.03 0.14 ind:fut:3p; +éprouves éprouver VER 23.35 127.09 1.91 0.34 ind:pre:2s; +éprouvette éprouvette NOM f s 0.59 1.22 0.44 0.88 +éprouvettes éprouvette NOM f p 0.59 1.22 0.16 0.34 +éprouvez éprouver VER 23.35 127.09 1.20 0.34 imp:pre:2p;ind:pre:2p; +éprouviez éprouver VER 23.35 127.09 0.21 0.07 ind:imp:2p; +éprouvions éprouver VER 23.35 127.09 0.02 0.74 ind:imp:1p; +éprouvâmes éprouver VER 23.35 127.09 0.00 0.07 ind:pas:1p; +éprouvons éprouver VER 23.35 127.09 0.28 1.01 ind:pre:1p; +éprouvât éprouver VER 23.35 127.09 0.00 0.54 sub:imp:3s; +éprouvèrent éprouver VER 23.35 127.09 0.02 0.41 ind:pas:3p; +éprouvé éprouver VER m s 23.35 127.09 3.96 16.22 par:pas; +éprouvée éprouver VER f s 23.35 127.09 0.37 2.64 par:pas; +éprouvées éprouvé ADJ f p 0.59 4.19 0.11 0.47 +éprouvés éprouvé ADJ m p 0.59 4.19 0.25 1.22 +épucer épucer VER 0.01 0.07 0.01 0.00 inf; +épée épée NOM f s 32.81 25.20 29.34 19.12 +épées épée NOM f p 32.81 25.20 3.48 6.08 +épuisa épuiser VER 25.41 33.11 0.00 0.47 ind:pas:3s; +épuisai épuiser VER 25.41 33.11 0.00 0.14 ind:pas:1s; +épuisaient épuiser VER 25.41 33.11 0.05 1.08 ind:imp:3p; +épuisais épuiser VER 25.41 33.11 0.01 0.34 ind:imp:1s; +épuisait épuiser VER 25.41 33.11 0.03 1.89 ind:imp:3s; +épuisant épuisant ADJ m s 2.24 5.81 1.40 2.30 +épuisante épuisant ADJ f s 2.24 5.81 0.59 2.03 +épuisantes épuisant ADJ f p 2.24 5.81 0.17 0.68 +épuisants épuisant ADJ m p 2.24 5.81 0.09 0.81 +épuise épuiser VER 25.41 33.11 1.79 3.31 imp:pre:2s;ind:pre:1s;ind:pre:3s; +épuisement épuisement NOM m s 1.94 7.91 1.93 7.84 +épuisements épuisement NOM m p 1.94 7.91 0.01 0.07 +épuisent épuiser VER 25.41 33.11 0.78 1.08 ind:pre:3p; +épuiser épuiser VER 25.41 33.11 1.91 4.53 inf; +épuisera épuiser VER 25.41 33.11 0.17 0.14 ind:fut:3s; +épuiseraient épuiser VER 25.41 33.11 0.01 0.07 cnd:pre:3p; +épuiserait épuiser VER 25.41 33.11 0.14 0.14 cnd:pre:3s; +épuiseras épuiser VER 25.41 33.11 0.04 0.00 ind:fut:2s; +épuiserons épuiser VER 25.41 33.11 0.01 0.07 ind:fut:1p; +épuiseront épuiser VER 25.41 33.11 0.02 0.00 ind:fut:3p; +épuises épuiser VER 25.41 33.11 0.26 0.14 ind:pre:2s; +épuisette épuisette NOM f s 0.51 1.49 0.51 1.15 +épuisettes épuisette NOM f p 0.51 1.49 0.00 0.34 +épuisez épuiser VER 25.41 33.11 0.41 0.00 imp:pre:2p;ind:pre:2p; +épuisiez épuiser VER 25.41 33.11 0.00 0.07 ind:imp:2p; +épuisons épuiser VER 25.41 33.11 0.16 0.14 ind:pre:1p; +épuisât épuiser VER 25.41 33.11 0.00 0.07 sub:imp:3s; +épéiste épéiste NOM s 0.08 0.00 0.06 0.00 +épéistes épéiste NOM p 0.08 0.00 0.02 0.00 +épuisèrent épuiser VER 25.41 33.11 0.00 0.20 ind:pas:3p; +épuisé épuiser VER m s 25.41 33.11 11.11 10.47 par:pas; +épuisée épuiser VER f s 25.41 33.11 6.04 4.93 par:pas; +épuisées épuiser VER f p 25.41 33.11 0.67 0.27 par:pas; +épuisés épuiser VER m p 25.41 33.11 1.77 2.70 par:pas; +épulie épulie NOM f s 0.00 0.07 0.00 0.07 +épépine épépiner VER 0.00 0.07 0.00 0.07 ind:pre:3s; +épurait épurer VER 0.62 1.96 0.00 0.20 ind:imp:3s; +épurant épurer VER 0.62 1.96 0.00 0.14 par:pre; +épurateur épurateur NOM m s 0.15 0.07 0.15 0.07 +épuration épuration NOM f s 0.46 1.69 0.44 1.49 +épurations épuration NOM f p 0.46 1.69 0.01 0.20 +épurative épuratif ADJ f s 0.01 0.00 0.01 0.00 +épure épure NOM f s 0.28 1.28 0.14 0.74 +épurer épurer VER 0.62 1.96 0.03 0.34 inf; +épures épure NOM f p 0.28 1.28 0.14 0.54 +épuré épurer VER m s 0.62 1.96 0.05 0.41 par:pas; +épurée épurer VER f s 0.62 1.96 0.50 0.34 par:pas; +épurées épurer VER f p 0.62 1.96 0.01 0.14 par:pas; +épurés épurer VER m p 0.62 1.96 0.01 0.20 par:pas; +épuçât épucer VER 0.01 0.07 0.00 0.07 sub:imp:3s; +équanimité équanimité NOM f s 0.00 0.14 0.00 0.14 +équarisseur équarisseur NOM m s 0.01 0.27 0.00 0.14 +équarisseurs équarisseur NOM m p 0.01 0.27 0.01 0.14 +équarri équarri ADJ m s 0.01 0.95 0.01 0.20 +équarrie équarri ADJ f s 0.01 0.95 0.00 0.07 +équarries équarri ADJ f p 0.01 0.95 0.00 0.54 +équarrir équarrir VER 0.01 0.54 0.01 0.14 inf; +équarris équarri ADJ m p 0.01 0.95 0.00 0.14 +équarrissage équarrissage NOM m s 0.03 0.14 0.03 0.14 +équarrissait équarrir VER 0.01 0.54 0.00 0.14 ind:imp:3s; +équarrisseur équarrisseur NOM m s 0.00 0.47 0.00 0.41 +équarrisseurs équarrisseur NOM m p 0.00 0.47 0.00 0.07 +équateur équateur NOM m s 0.38 1.55 0.38 1.55 +équation équation NOM f s 3.50 2.84 2.49 1.35 +équations équation NOM f p 3.50 2.84 1.00 1.49 +équatorial équatorial ADJ m s 0.38 4.59 0.01 0.74 +équatoriale équatorial ADJ f s 0.38 4.59 0.37 3.45 +équatoriaux équatorial ADJ m p 0.38 4.59 0.00 0.41 +équatorien équatorien NOM m s 0.01 0.07 0.01 0.07 +équatoriennes équatorien ADJ f p 0.01 0.00 0.01 0.00 +équerrage équerrage NOM m s 0.00 0.07 0.00 0.07 +équerre équerre NOM f s 0.20 1.55 0.19 1.49 +équerres équerre NOM f p 0.20 1.55 0.01 0.07 +équestre équestre ADJ s 0.29 2.09 0.28 1.35 +équestres équestre ADJ p 0.29 2.09 0.01 0.74 +équeuter équeuter VER 0.01 0.00 0.01 0.00 inf; +équeutées équeuté ADJ f p 0.00 0.07 0.00 0.07 +équidistance équidistance NOM f s 0.11 0.00 0.11 0.00 +équidistant équidistant ADJ m s 0.15 0.54 0.14 0.14 +équidistante équidistant ADJ f s 0.15 0.54 0.00 0.14 +équidistantes équidistant ADJ f p 0.15 0.54 0.00 0.07 +équidistants équidistant ADJ m p 0.15 0.54 0.01 0.20 +équidés équidé NOM m p 0.01 0.00 0.01 0.00 +équilatéral équilatéral ADJ m s 0.04 0.34 0.04 0.27 +équilatéraux équilatéral ADJ m p 0.04 0.34 0.00 0.07 +équilibra équilibrer VER 1.97 5.34 0.00 0.14 ind:pas:3s; +équilibrage équilibrage NOM m s 0.17 0.00 0.17 0.00 +équilibraient équilibrer VER 1.97 5.34 0.00 0.47 ind:imp:3p; +équilibrais équilibrer VER 1.97 5.34 0.00 0.07 ind:imp:1s; +équilibrait équilibrer VER 1.97 5.34 0.01 0.34 ind:imp:3s; +équilibrant équilibrer VER 1.97 5.34 0.00 0.20 par:pre; +équilibrante équilibrant ADJ f s 0.00 0.14 0.00 0.14 +équilibre équilibre NOM m s 10.66 39.73 10.53 39.05 +équilibrent équilibrer VER 1.97 5.34 0.04 0.41 ind:pre:3p; +équilibrer équilibrer VER 1.97 5.34 0.84 1.69 inf; +équilibres équilibre NOM m p 10.66 39.73 0.13 0.68 +équilibreur équilibreur NOM m s 0.03 0.00 0.03 0.00 +équilibrisme équilibrisme NOM m s 0.00 0.07 0.00 0.07 +équilibriste équilibriste NOM s 0.70 0.88 0.45 0.54 +équilibristes équilibriste NOM p 0.70 0.88 0.26 0.34 +équilibrèrent équilibrer VER 1.97 5.34 0.00 0.14 ind:pas:3p; +équilibré équilibré ADJ m s 2.23 2.57 1.37 1.28 +équilibrée équilibré ADJ f s 2.23 2.57 0.64 0.74 +équilibrées équilibré ADJ f p 2.23 2.57 0.02 0.34 +équilibrés équilibré ADJ m p 2.23 2.57 0.21 0.20 +équin équin ADJ m s 0.05 0.07 0.00 0.07 +équine équin ADJ f s 0.05 0.07 0.05 0.00 +équinoxe équinoxe NOM m s 0.44 3.18 0.44 2.50 +équinoxes équinoxe NOM m p 0.44 3.18 0.00 0.68 +équipa équiper VER 6.27 9.46 0.01 0.07 ind:pas:3s; +équipage équipage NOM m s 19.91 17.16 18.48 11.28 +équipages équipage NOM m p 19.91 17.16 1.42 5.88 +équipai équiper VER 6.27 9.46 0.01 0.00 ind:pas:1s; +équipait équiper VER 6.27 9.46 0.00 0.20 ind:imp:3s; +équipant équiper VER 6.27 9.46 0.01 0.27 par:pre; +équipe équipe NOM f s 129.97 34.32 118.00 26.28 +équipement équipement NOM m s 12.82 8.51 10.71 6.42 +équipements équipement NOM m p 12.82 8.51 2.11 2.09 +équipent équiper VER 6.27 9.46 0.15 0.14 ind:pre:3p; +équiper équiper VER 6.27 9.46 0.89 1.89 inf; +équipera équiper VER 6.27 9.46 0.05 0.00 ind:fut:3s; +équiperai équiper VER 6.27 9.46 0.01 0.00 ind:fut:1s; +équiperais équiper VER 6.27 9.46 0.02 0.00 cnd:pre:1s; +équipes équipe NOM f p 129.97 34.32 11.97 8.04 +équipez équiper VER 6.27 9.46 0.01 0.07 imp:pre:2p;ind:pre:2p; +équipier équipier NOM m s 4.34 1.08 3.07 0.81 +équipiers équipier NOM m p 4.34 1.08 0.71 0.27 +équipière équipier NOM f s 4.34 1.08 0.56 0.00 +équipons équiper VER 6.27 9.46 0.02 0.00 imp:pre:1p;ind:pre:1p; +équipèrent équiper VER 6.27 9.46 0.00 0.07 ind:pas:3p; +équipé équiper VER m s 6.27 9.46 1.65 2.09 par:pas; +équipée équiper VER f s 6.27 9.46 1.46 1.69 par:pas; +équipées équiper VER f p 6.27 9.46 0.20 0.81 par:pas; +équipés équiper VER m p 6.27 9.46 0.93 1.35 par:pas; +équitable équitable ADJ s 3.41 2.97 3.30 2.77 +équitablement équitablement ADV 0.46 1.35 0.46 1.35 +équitables équitable ADJ p 3.41 2.97 0.10 0.20 +équitation équitation NOM f s 1.14 1.42 1.14 1.42 +équité équité NOM f s 0.79 1.49 0.79 1.49 +équivalût équivaloir VER 2.23 3.72 0.00 0.07 sub:imp:3s; +équivalaient équivaloir VER 2.23 3.72 0.01 0.07 ind:imp:3p; +équivalait équivaloir VER 2.23 3.72 0.16 1.42 ind:imp:3s; +équivalant équivaloir VER 2.23 3.72 0.12 0.41 par:pre; +équivalence équivalence NOM f s 0.22 0.81 0.19 0.61 +équivalences équivalence NOM f p 0.22 0.81 0.04 0.20 +équivalent équivalent NOM m s 2.45 5.74 2.43 4.93 +équivalente équivalent ADJ f s 0.99 1.69 0.25 0.27 +équivalentes équivalent ADJ f p 0.99 1.69 0.03 0.20 +équivalents équivalent ADJ m p 0.99 1.69 0.12 0.34 +équivaloir équivaloir VER 2.23 3.72 0.00 0.07 inf; +équivalu équivaloir VER m s 2.23 3.72 0.00 0.14 par:pas; +équivaudra équivaloir VER 2.23 3.72 0.16 0.07 ind:fut:3s; +équivaudrait équivaloir VER 2.23 3.72 0.10 0.27 cnd:pre:3s; +équivaut équivaloir VER 2.23 3.72 1.41 1.08 ind:pre:3s; +équivoque équivoque NOM f s 0.78 3.78 0.64 3.38 +équivoquer équivoquer VER 0.01 0.00 0.01 0.00 inf; +équivoques équivoque ADJ p 0.88 5.14 0.34 1.22 +érable érable NOM m s 1.15 2.03 1.11 1.15 +érables érable NOM m p 1.15 2.03 0.04 0.88 +érablières érablière NOM f p 0.00 0.07 0.00 0.07 +éradicateur éradicateur NOM m s 0.02 0.00 0.02 0.00 +éradication éradication NOM f s 0.31 0.00 0.31 0.00 +éradiquer éradiquer VER 1.34 0.07 0.97 0.07 inf; +éradiquerai éradiquer VER 1.34 0.07 0.02 0.00 ind:fut:1s; +éradiqueront éradiquer VER 1.34 0.07 0.02 0.00 ind:fut:3p; +éradiquons éradiquer VER 1.34 0.07 0.03 0.00 imp:pre:1p;ind:pre:1p; +éradiqué éradiquer VER m s 1.34 0.07 0.22 0.00 par:pas; +éradiquée éradiquer VER f s 1.34 0.07 0.08 0.00 par:pas; +érafla érafler VER 0.91 2.03 0.00 0.20 ind:pas:3s; +éraflait érafler VER 0.91 2.03 0.00 0.14 ind:imp:3s; +érafle érafler VER 0.91 2.03 0.05 0.20 ind:pre:1s;ind:pre:3s; +érafler érafler VER 0.91 2.03 0.15 0.20 inf; +éraflez érafler VER 0.91 2.03 0.02 0.00 imp:pre:2p;ind:pre:2p; +éraflé érafler VER m s 0.91 2.03 0.55 0.81 par:pas; +éraflée érafler VER f s 0.91 2.03 0.05 0.34 par:pas; +éraflées érafler VER f p 0.91 2.03 0.06 0.07 par:pas; +éraflure éraflure NOM f s 1.75 1.76 1.00 0.81 +éraflures éraflure NOM f p 1.75 1.76 0.75 0.95 +éraflés érafler VER m p 0.91 2.03 0.04 0.07 par:pas; +érailla érailler VER 0.04 1.42 0.00 0.07 ind:pas:3s; +éraillaient érailler VER 0.04 1.42 0.00 0.07 ind:imp:3p; +éraillait érailler VER 0.04 1.42 0.00 0.07 ind:imp:3s; +éraillant érailler VER 0.04 1.42 0.00 0.07 par:pre; +éraille érailler VER 0.04 1.42 0.00 0.14 ind:pre:3s; +éraillent érailler VER 0.04 1.42 0.00 0.07 ind:pre:3p; +érailler érailler VER 0.04 1.42 0.02 0.00 inf; +éraillé éraillé ADJ m s 0.03 2.16 0.00 0.27 +éraillée éraillé ADJ f s 0.03 2.16 0.03 1.69 +éraillées érailler VER f p 0.04 1.42 0.00 0.27 par:pas; +éraillures éraillure NOM f p 0.00 0.07 0.00 0.07 +éraillés éraillé ADJ m p 0.03 2.16 0.00 0.14 +urane urane NOM m s 0.00 0.07 0.00 0.07 +uraniens uranien ADJ m p 0.01 0.00 0.01 0.00 +uranisme uranisme NOM m s 0.00 0.07 0.00 0.07 +uraniste uraniste NOM m s 0.02 0.00 0.02 0.00 +uranium uranium NOM m s 1.60 0.47 1.60 0.47 +urbain urbain ADJ m s 3.06 4.39 0.96 1.89 +urbaine urbain ADJ f s 3.06 4.39 1.28 1.35 +urbaines urbain ADJ f p 3.06 4.39 0.42 0.34 +urbains urbain ADJ m p 3.06 4.39 0.41 0.81 +urbanisation urbanisation NOM f s 0.14 0.00 0.14 0.00 +urbanisme urbanisme NOM m s 1.48 0.14 1.48 0.14 +urbaniste urbaniste ADJ s 0.01 0.07 0.01 0.00 +urbanistes urbaniste NOM p 0.29 0.41 0.29 0.27 +urbanisé urbaniser VER m s 0.02 0.07 0.00 0.07 par:pas; +urbanisée urbaniser VER f s 0.02 0.07 0.02 0.00 par:pas; +urbanité urbanité NOM f s 0.00 0.41 0.00 0.41 +urbi_et_orbi urbi_et_orbi ADV 0.01 0.27 0.01 0.27 +urdu urdu NOM m s 0.02 0.00 0.02 0.00 +ure ure NOM m s 0.07 0.07 0.06 0.00 +érectile érectile ADJ s 0.13 0.14 0.02 0.14 +érectiles érectile ADJ m p 0.13 0.14 0.11 0.00 +érection érection NOM f s 3.56 4.05 3.27 3.31 +érections érection NOM f p 3.56 4.05 0.30 0.74 +éreintait éreinter VER 0.88 0.95 0.00 0.07 ind:imp:3s; +éreintant éreintant ADJ m s 0.54 0.14 0.21 0.14 +éreintante éreintant ADJ f s 0.54 0.14 0.31 0.00 +éreintants éreintant ADJ m p 0.54 0.14 0.02 0.00 +éreinte éreinter VER 0.88 0.95 0.09 0.07 ind:pre:1s;ind:pre:3s;sub:pre:3s; +éreintement éreintement NOM m s 0.00 0.27 0.00 0.27 +éreintent éreinter VER 0.88 0.95 0.07 0.00 ind:pre:3p; +éreinter éreinter VER 0.88 0.95 0.14 0.20 inf; +éreinteur éreinteur NOM m s 0.01 0.00 0.01 0.00 +éreinté éreinter VER m s 0.88 0.95 0.23 0.41 par:pas; +éreintée éreinter VER f s 0.88 0.95 0.23 0.00 par:pas; +éreintées éreinter VER f p 0.88 0.95 0.01 0.07 par:pas; +éreintés éreinter VER m p 0.88 0.95 0.09 0.07 par:pas; +ures ure NOM m p 0.07 0.07 0.01 0.07 +uretère uretère NOM m s 0.04 0.00 0.04 0.00 +urf urf ADJ m s 0.00 0.07 0.00 0.07 +urge urger VER 0.81 1.08 0.77 0.61 imp:pre:2s;ind:pre:3s;sub:pre:3s; +urgeait urger VER 0.81 1.08 0.01 0.34 ind:imp:3s; +urgemment urgemment ADV 0.01 0.14 0.01 0.14 +urgence urgence NOM f s 53.03 23.11 38.78 21.35 +urgences urgence NOM f p 53.03 23.11 14.24 1.76 +urgent urgent ADJ m s 31.56 16.96 26.75 11.62 +urgente urgent ADJ f s 31.56 16.96 3.18 2.91 +urgentes urgent ADJ f p 31.56 16.96 0.84 1.49 +urgentissime urgentissime ADJ s 0.02 0.00 0.02 0.00 +urgentiste urgentiste NOM s 0.25 0.00 0.25 0.00 +urgents urgent ADJ m p 31.56 16.96 0.79 0.95 +urger urger VER 0.81 1.08 0.01 0.07 inf; +érige ériger VER 1.91 5.20 0.10 0.88 ind:pre:1s;ind:pre:3s;sub:pre:1s; +érigea ériger VER 1.91 5.20 0.02 0.07 ind:pas:3s; +érigeaient ériger VER 1.91 5.20 0.14 0.27 ind:imp:3p; +érigeait ériger VER 1.91 5.20 0.00 0.14 ind:imp:3s; +érigeant ériger VER 1.91 5.20 0.02 0.34 par:pre; +érigent ériger VER 1.91 5.20 0.01 0.27 ind:pre:3p; +érigeât ériger VER 1.91 5.20 0.00 0.07 sub:imp:3s; +ériger ériger VER 1.91 5.20 0.79 1.15 inf; +érigé ériger VER m s 1.91 5.20 0.45 0.95 par:pas; +érigée ériger VER f s 1.91 5.20 0.23 0.68 par:pas; +érigées ériger VER f p 1.91 5.20 0.14 0.20 par:pas; +érigés ériger VER m p 1.91 5.20 0.01 0.20 par:pas; +urina uriner VER 2.00 2.70 0.00 0.34 ind:pas:3s; +urinaient uriner VER 2.00 2.70 0.12 0.07 ind:imp:3p; +urinaire urinaire ADJ s 1.27 0.34 0.98 0.14 +urinaires urinaire ADJ p 1.27 0.34 0.28 0.20 +urinais uriner VER 2.00 2.70 0.00 0.07 ind:imp:1s; +urinait uriner VER 2.00 2.70 0.01 0.27 ind:imp:3s; +urinal urinal NOM m s 0.03 0.20 0.03 0.20 +urinant uriner VER 2.00 2.70 0.06 0.07 par:pre; +urine urine NOM f s 5.72 6.62 4.63 6.28 +urinent uriner VER 2.00 2.70 0.08 0.07 ind:pre:3p; +uriner uriner VER 2.00 2.70 0.86 1.35 inf; +urinera uriner VER 2.00 2.70 0.01 0.00 ind:fut:3s; +urines urine NOM f p 5.72 6.62 1.08 0.34 +urineuse urineux ADJ f s 0.00 0.07 0.00 0.07 +urinez uriner VER 2.00 2.70 0.10 0.00 imp:pre:2p;ind:pre:2p; +urinoir urinoir NOM m s 0.69 1.35 0.37 0.61 +urinoirs urinoir NOM m p 0.69 1.35 0.32 0.74 +urinons uriner VER 2.00 2.70 0.00 0.14 imp:pre:1p; +uriné uriner VER m s 2.00 2.70 0.25 0.14 par:pas; +urique urique ADJ m s 0.06 0.07 0.06 0.07 +urne urne NOM f s 2.69 3.38 1.94 1.96 +urnes urne NOM f p 2.69 3.38 0.74 1.42 +érode éroder VER 0.16 0.68 0.10 0.20 ind:pre:3s; +érodent éroder VER 0.16 0.68 0.01 0.00 ind:pre:3p; +éroder éroder VER 0.16 0.68 0.00 0.07 inf; +érodé éroder VER m s 0.16 0.68 0.03 0.14 par:pas; +érodée érodé ADJ f s 0.03 0.27 0.02 0.07 +érodées éroder VER f p 0.16 0.68 0.00 0.07 par:pas; +érodés éroder VER m p 0.16 0.68 0.00 0.14 par:pas; +urographie urographie NOM f s 0.00 0.07 0.00 0.07 +érogène érogène ADJ f s 0.14 0.61 0.04 0.20 +érogènes érogène ADJ p 0.14 0.61 0.10 0.41 +urokinase urokinase NOM f s 0.01 0.00 0.01 0.00 +urologie urologie NOM f s 0.23 0.07 0.23 0.07 +urologique urologique ADJ m s 0.01 0.00 0.01 0.00 +urologue urologue NOM s 0.29 0.20 0.29 0.20 +éros éros NOM m 0.33 0.54 0.33 0.54 +uroscopie uroscopie NOM f s 0.00 0.07 0.00 0.07 +érosion érosion NOM f s 0.34 1.49 0.32 1.28 +érosions érosion NOM f p 0.34 1.49 0.02 0.20 +érotique érotique ADJ s 5.06 8.85 3.04 5.95 +érotiquement érotiquement ADJ s 0.01 0.34 0.01 0.34 +érotiques érotique ADJ p 5.06 8.85 2.02 2.91 +érotise érotiser VER 0.01 0.20 0.00 0.07 ind:pre:3s; +érotiser érotiser VER 0.01 0.20 0.01 0.00 inf; +érotisme érotisme NOM m s 1.64 3.38 1.64 3.38 +érotisé érotiser VER m s 0.01 0.20 0.00 0.07 par:pas; +érotisée érotiser VER f s 0.01 0.20 0.00 0.07 par:pas; +érotomane érotomane ADJ m s 0.00 0.14 0.00 0.14 +érotomane érotomane NOM s 0.00 0.14 0.00 0.14 +érotomanie érotomanie NOM f s 0.04 0.14 0.04 0.14 +ursuline ursuline NOM f s 0.23 1.01 0.00 0.07 +ursulines ursuline NOM f p 0.23 1.01 0.23 0.95 +urètre urètre NOM m s 0.16 0.47 0.16 0.47 +urticaire urticaire NOM f s 1.22 0.61 1.22 0.61 +urticante urticant ADJ f s 0.02 0.20 0.01 0.00 +urticantes urticant ADJ f p 0.02 0.20 0.01 0.14 +urticants urticant ADJ m p 0.02 0.20 0.00 0.07 +urubu urubu NOM m s 0.00 0.34 0.00 0.07 +urubus urubu NOM m p 0.00 0.34 0.00 0.27 +éructa éructer VER 0.21 2.50 0.00 0.27 ind:pas:3s; +éructait éructer VER 0.21 2.50 0.00 0.41 ind:imp:3s; +éructant éructer VER 0.21 2.50 0.02 0.27 par:pre; +éructation éructation NOM f s 0.02 0.20 0.01 0.00 +éructations éructation NOM f p 0.02 0.20 0.01 0.20 +éructe éructer VER 0.21 2.50 0.14 1.01 ind:pre:1s;ind:pre:3s; +éructer éructer VER 0.21 2.50 0.04 0.27 inf; +éructes éructer VER 0.21 2.50 0.01 0.00 ind:pre:2s; +éructé éructer VER m s 0.21 2.50 0.00 0.20 par:pas; +éructées éructer VER f p 0.21 2.50 0.00 0.07 par:pas; +érudit érudit NOM m s 1.43 1.69 1.09 0.61 +érudite érudit ADJ f s 0.56 1.01 0.11 0.00 +érudites érudit ADJ f p 0.56 1.01 0.01 0.14 +érudition érudition NOM f s 0.40 2.84 0.40 2.84 +érudits érudit NOM m p 1.43 1.69 0.30 1.08 +urée urée NOM f s 0.20 0.14 0.20 0.14 +uruguayen uruguayen NOM m s 0.57 0.00 0.57 0.00 +urémie urémie NOM f s 0.31 0.27 0.31 0.27 +urémique urémique ADJ s 0.02 0.00 0.02 0.00 +éruption éruption NOM f s 3.73 2.09 3.32 1.55 +éruptions éruption NOM f p 3.73 2.09 0.41 0.54 +éruptive éruptif ADJ f s 0.01 0.07 0.01 0.00 +éruptives éruptif ADJ f p 0.01 0.07 0.00 0.07 +urus urus NOM m 0.00 0.20 0.00 0.20 +uréthane uréthane NOM m s 0.08 0.00 0.08 0.00 +urétrite urétrite NOM f s 0.04 0.00 0.04 0.00 +érythromycine érythromycine NOM f s 0.04 0.00 0.04 0.00 +érythrophobie érythrophobie NOM f s 0.05 0.00 0.05 0.00 +érythréenne érythréen NOM f s 0.01 0.00 0.01 0.00 +érythème érythème NOM m s 0.17 0.14 0.16 0.00 +érythèmes érythème NOM m p 0.17 0.14 0.01 0.14 +érythémateux érythémateux ADJ m 0.03 0.00 0.03 0.00 +us us NOM m p 9.10 1.55 9.10 1.55 +usa user VER 13.58 45.00 0.15 0.61 ind:pas:3s; +usage usage NOM m s 14.45 47.97 13.26 42.30 +usager usager NOM m s 0.07 1.55 0.02 0.54 +usagers usager NOM m p 0.07 1.55 0.05 0.95 +usages usage NOM m p 14.45 47.97 1.19 5.68 +usagères usager NOM f p 0.07 1.55 0.00 0.07 +usagé usagé ADJ m s 1.37 3.11 0.22 1.01 +usagée usagé ADJ f s 1.37 3.11 0.39 0.68 +usagées usagé ADJ f p 1.37 3.11 0.31 0.74 +usagés usagé ADJ m p 1.37 3.11 0.45 0.68 +usai user VER 13.58 45.00 0.00 0.41 ind:pas:1s; +usaient user VER 13.58 45.00 0.14 1.49 ind:imp:3p; +usais user VER 13.58 45.00 0.02 0.61 ind:imp:1s;ind:imp:2s; +usait user VER 13.58 45.00 0.08 4.26 ind:imp:3s; +usant user VER 13.58 45.00 0.59 2.36 par:pre; +usante usant ADJ f s 0.40 0.14 0.01 0.00 +use user VER 13.58 45.00 3.19 4.59 imp:pre:2s;ind:pre:1s;ind:pre:3s; +usent user VER 13.58 45.00 0.17 2.23 ind:pre:3p; +user user VER 13.58 45.00 3.48 9.73 inf; +usera user VER 13.58 45.00 0.34 0.00 ind:fut:3s; +userai user VER 13.58 45.00 0.22 0.20 ind:fut:1s; +userais user VER 13.58 45.00 0.16 0.00 cnd:pre:1s;cnd:pre:2s; +userait user VER 13.58 45.00 0.04 0.61 cnd:pre:3s; +useriez user VER 13.58 45.00 0.02 0.00 cnd:pre:2p; +userons user VER 13.58 45.00 0.01 0.07 ind:fut:1p; +useront user VER 13.58 45.00 0.02 0.07 ind:fut:3p; +uses user VER 13.58 45.00 0.19 0.00 ind:pre:2s; +usez user VER 13.58 45.00 0.46 0.27 imp:pre:2p;ind:pre:2p; +usinage usinage NOM m s 0.05 0.00 0.05 0.00 +usinaient usiner VER 0.05 0.95 0.00 0.07 ind:imp:3p; +usinant usiner VER 0.05 0.95 0.00 0.07 par:pre; +usine_pilote usine_pilote NOM f s 0.00 0.07 0.00 0.07 +usine usine NOM f s 51.59 42.97 43.51 28.04 +usiner usiner VER 0.05 0.95 0.01 0.00 inf; +usines usine NOM f p 51.59 42.97 8.08 14.93 +usinier usinier ADJ m s 0.00 0.14 0.00 0.07 +usiniers usinier NOM m p 0.00 0.07 0.00 0.07 +usinière usinier ADJ f s 0.00 0.14 0.00 0.07 +usiné usiner VER m s 0.05 0.95 0.00 0.07 par:pas; +usinée usiner VER f s 0.05 0.95 0.00 0.07 par:pas; +usinées usiner VER f p 0.05 0.95 0.00 0.07 par:pas; +usinés usiner VER m p 0.05 0.95 0.00 0.07 par:pas; +usions user VER 13.58 45.00 0.02 0.20 ind:imp:1p; +usité usité ADJ m s 0.01 0.27 0.00 0.20 +usités usité ADJ m p 0.01 0.27 0.01 0.07 +usons user VER 13.58 45.00 0.14 0.27 imp:pre:1p;ind:pre:1p; +usât user VER 13.58 45.00 0.00 0.20 sub:imp:3s; +ésotérique ésotérique ADJ s 0.53 1.08 0.18 0.68 +ésotériques ésotérique ADJ p 0.53 1.08 0.35 0.41 +ésotérisme ésotérisme NOM m s 0.23 0.54 0.23 0.54 +ésotéristes ésotériste NOM p 0.00 0.07 0.00 0.07 +ustensile ustensile NOM m s 1.32 5.27 0.27 1.35 +ustensiles ustensile NOM m p 1.32 5.27 1.06 3.92 +usèrent user VER 13.58 45.00 0.00 0.07 ind:pas:3p; +ustion ustion NOM f s 0.00 0.14 0.00 0.14 +usé user VER m s 13.58 45.00 2.02 8.92 par:pas; +usée user VER f s 13.58 45.00 0.80 3.72 par:pas; +usuel usuel ADJ m s 0.19 1.28 0.04 0.41 +usuelle usuel ADJ f s 0.19 1.28 0.04 0.20 +usuellement usuellement ADV 0.10 0.00 0.10 0.00 +usuelles usuel ADJ f p 0.19 1.28 0.00 0.20 +usuels usuel ADJ m p 0.19 1.28 0.10 0.47 +usées usé ADJ f p 2.49 17.09 0.50 2.70 +usufruit usufruit NOM m s 0.15 0.47 0.15 0.47 +usufruitier usufruitier NOM m s 0.00 0.14 0.00 0.14 +usuraire usuraire ADJ m s 0.04 0.14 0.01 0.14 +usuraires usuraire ADJ m p 0.04 0.14 0.02 0.00 +usure usure NOM f s 1.78 10.20 1.77 10.00 +usures usure NOM f p 1.78 10.20 0.01 0.20 +usurier usurier NOM m s 2.17 1.28 1.20 0.61 +usuriers usurier NOM m p 2.17 1.28 0.86 0.61 +usurière usurier NOM f s 2.17 1.28 0.11 0.07 +usurpaient usurper VER 1.09 2.03 0.00 0.14 ind:imp:3p; +usurpait usurper VER 1.09 2.03 0.00 0.07 ind:imp:3s; +usurpant usurper VER 1.09 2.03 0.01 0.20 par:pre; +usurpateur usurpateur NOM m s 0.43 1.62 0.21 0.68 +usurpateurs usurpateur NOM m p 0.43 1.62 0.05 0.61 +usurpation usurpation NOM f s 0.59 1.35 0.59 1.35 +usurpatrice usurpateur NOM f s 0.43 1.62 0.17 0.34 +usurpent usurper VER 1.09 2.03 0.01 0.07 ind:pre:3p; +usurper usurper VER 1.09 2.03 0.51 0.34 inf; +usurperont usurper VER 1.09 2.03 0.01 0.00 ind:fut:3p; +usurpé usurper VER m s 1.09 2.03 0.54 0.74 par:pas; +usurpée usurper VER f s 1.09 2.03 0.00 0.27 par:pas; +usurpées usurper VER f p 1.09 2.03 0.00 0.14 par:pas; +usurpés usurper VER m p 1.09 2.03 0.01 0.07 par:pas; +usés user VER m p 13.58 45.00 1.05 2.09 par:pas; +ut ut NOM m 1.02 0.54 1.02 0.54 +établît établir VER 26.38 57.77 0.00 0.27 sub:imp:3s; +étable étable NOM f s 5.37 9.46 4.85 7.50 +étables étable NOM f p 5.37 9.46 0.52 1.96 +établi établir VER m s 26.38 57.77 7.41 11.01 par:pas; +établie établir VER f s 26.38 57.77 1.89 4.66 par:pas; +établies établir VER f p 26.38 57.77 0.58 1.96 par:pas; +établir établir VER 26.38 57.77 10.52 20.68 inf; +établira établir VER 26.38 57.77 0.34 0.27 ind:fut:3s; +établirai établir VER 26.38 57.77 0.07 0.14 ind:fut:1s; +établiraient établir VER 26.38 57.77 0.01 0.07 cnd:pre:3p; +établirais établir VER 26.38 57.77 0.14 0.07 cnd:pre:1s; +établirait établir VER 26.38 57.77 0.04 0.88 cnd:pre:3s; +établirent établir VER 26.38 57.77 0.04 1.01 ind:pas:3p; +établirez établir VER 26.38 57.77 0.01 0.14 ind:fut:2p; +établirions établir VER 26.38 57.77 0.01 0.00 cnd:pre:1p; +établirons établir VER 26.38 57.77 0.07 0.07 ind:fut:1p; +établiront établir VER 26.38 57.77 0.05 0.14 ind:fut:3p; +établis établir VER m p 26.38 57.77 1.29 2.70 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +établissaient établir VER 26.38 57.77 0.02 1.08 ind:imp:3p; +établissais établir VER 26.38 57.77 0.03 0.27 ind:imp:1s;ind:imp:2s; +établissait établir VER 26.38 57.77 0.17 3.78 ind:imp:3s; +établissant établir VER 26.38 57.77 0.55 1.01 par:pre; +établisse établir VER 26.38 57.77 0.26 0.81 sub:pre:1s;sub:pre:3s; +établissement établissement NOM m s 7.59 22.23 6.11 17.36 +établissements établissement NOM m p 7.59 22.23 1.48 4.86 +établissent établir VER 26.38 57.77 0.28 1.22 ind:pre:3p; +établisses établir VER 26.38 57.77 0.01 0.00 sub:pre:2s; +établissez établir VER 26.38 57.77 0.50 0.14 imp:pre:2p;ind:pre:2p; +établissions établir VER 26.38 57.77 0.05 0.14 ind:imp:1p; +établissons établir VER 26.38 57.77 0.29 0.20 imp:pre:1p;ind:pre:1p; +établit établir VER 26.38 57.77 1.74 5.07 ind:pre:3s;ind:pas:3s; +étage étage NOM m s 46.45 96.55 39.47 69.19 +étagea étager VER 0.73 3.58 0.00 0.07 ind:pas:3s; +étageaient étager VER 0.73 3.58 0.00 0.81 ind:imp:3p; +étageait étager VER 0.73 3.58 0.00 0.27 ind:imp:3s; +étageant étager VER 0.73 3.58 0.00 0.41 par:pre; +étagent étager VER 0.73 3.58 0.00 0.74 ind:pre:3p; +étages étage NOM m p 46.45 96.55 6.98 27.36 +étagère étagère NOM f s 5.06 16.69 3.29 9.59 +étagères étagère NOM f p 5.06 16.69 1.77 7.09 +étagé étagé ADJ m s 0.00 0.54 0.00 0.07 +étagée étager VER f s 0.73 3.58 0.00 0.20 par:pas; +étagées étager VER f p 0.73 3.58 0.00 0.41 par:pas; +étagés étager VER m p 0.73 3.58 0.00 0.27 par:pas; +étai étai NOM m s 0.28 0.88 0.19 0.54 +étaie étayer VER 0.72 4.05 0.04 0.14 ind:pre:1s;ind:pre:3s; +étaient être AUX 8074.24 6501.82 55.30 393.85 ind:imp:3p; +étain étain NOM m s 1.19 4.66 1.08 4.39 +étains étain NOM m p 1.19 4.66 0.11 0.27 +étais être AUX 8074.24 6501.82 184.97 224.66 ind:imp:2s; +était être AUX 8074.24 6501.82 350.91 1497.84 ind:imp:3s; +étal étal NOM m s 0.56 5.54 0.33 3.38 +étala étaler VER 6.36 63.11 0.00 4.05 ind:pas:3s; +étalage étalage NOM m s 2.22 11.42 1.95 7.64 +étalages étalage NOM m p 2.22 11.42 0.27 3.78 +étalagiste étalagiste NOM s 0.00 0.20 0.00 0.20 +étalai étaler VER 6.36 63.11 0.00 0.27 ind:pas:1s; +étalaient étaler VER 6.36 63.11 0.03 6.15 ind:imp:3p; +étalais étaler VER 6.36 63.11 0.18 0.20 ind:imp:1s; +étalait étaler VER 6.36 63.11 0.08 10.00 ind:imp:3s; +étalant étaler VER 6.36 63.11 0.13 2.30 par:pre; +étale étaler VER 6.36 63.11 0.93 10.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +étalement étalement NOM m s 0.14 0.47 0.14 0.41 +étalements étalement NOM m p 0.14 0.47 0.00 0.07 +étalent étaler VER 6.36 63.11 0.32 2.57 ind:pre:3p; +étaler étaler VER 6.36 63.11 2.42 7.16 inf; +étalera étaler VER 6.36 63.11 0.00 0.14 ind:fut:3s; +étalerai étaler VER 6.36 63.11 0.01 0.00 ind:fut:1s; +étaleraient étaler VER 6.36 63.11 0.00 0.14 cnd:pre:3p; +étalerait étaler VER 6.36 63.11 0.01 0.14 cnd:pre:3s; +étaleras étaler VER 6.36 63.11 0.00 0.07 ind:fut:2s; +étaleront étaler VER 6.36 63.11 0.01 0.07 ind:fut:3p; +étales étaler VER 6.36 63.11 0.28 0.00 ind:pre:2s; +étalez étaler VER 6.36 63.11 0.04 0.14 imp:pre:2p;ind:pre:2p; +étalions étaler VER 6.36 63.11 0.00 0.14 ind:imp:1p; +étalon étalon NOM m s 6.20 5.41 5.13 4.39 +étalonnage étalonnage NOM m s 0.45 0.07 0.45 0.00 +étalonnages étalonnage NOM m p 0.45 0.07 0.00 0.07 +étalonne étalonner VER 0.02 0.14 0.00 0.07 ind:pre:1s; +étalonner étalonner VER 0.02 0.14 0.01 0.07 inf; +étalonné étalonner VER m s 0.02 0.14 0.01 0.00 par:pas; +étalonnés étalonné ADJ m p 0.01 0.00 0.01 0.00 +étalons étalon NOM m p 6.20 5.41 1.07 1.01 +étalât étaler VER 6.36 63.11 0.00 0.14 sub:imp:3s; +étals étal NOM m p 0.56 5.54 0.23 2.16 +étalèrent étaler VER 6.36 63.11 0.00 0.54 ind:pas:3p; +étalé étaler VER m s 6.36 63.11 0.94 6.55 par:pas; +étalée étaler VER f s 6.36 63.11 0.41 4.73 par:pas; +étalées étaler VER f p 6.36 63.11 0.14 3.18 par:pas; +étalés étaler VER m p 6.36 63.11 0.30 3.99 par:pas; +étamaient étamer VER 0.00 0.14 0.00 0.07 ind:imp:3p; +étambot étambot NOM m s 0.01 0.14 0.01 0.14 +étameur étameur NOM m s 0.03 0.07 0.03 0.00 +étameurs étameur NOM m p 0.03 0.07 0.00 0.07 +étamine étamine NOM f s 0.06 1.22 0.05 0.61 +étamines étamine NOM f p 0.06 1.22 0.01 0.61 +étampes étampe NOM f p 0.00 1.01 0.00 1.01 +étampures étampure NOM f p 0.00 0.07 0.00 0.07 +étamé étamé ADJ m s 0.00 0.27 0.00 0.27 +étanchaient étancher VER 0.48 1.89 0.00 0.07 ind:imp:3p; +étanchait étancher VER 0.48 1.89 0.00 0.20 ind:imp:3s; +étanche étanche ADJ s 1.87 1.96 1.40 1.15 +étanchement étanchement NOM m s 0.20 0.00 0.20 0.00 +étanchent étancher VER 0.48 1.89 0.00 0.07 ind:pre:3p; +étancher étancher VER 0.48 1.89 0.16 1.35 inf; +étancherait étancher VER 0.48 1.89 0.00 0.07 cnd:pre:3s; +étanches étanche ADJ p 1.87 1.96 0.47 0.81 +étanché étancher VER m s 0.48 1.89 0.26 0.07 par:pas; +étanchée étancher VER f s 0.48 1.89 0.02 0.00 par:pas; +étanchéité étanchéité NOM f s 0.13 0.34 0.13 0.34 +étang étang NOM m s 7.10 15.47 6.57 10.47 +étangs étang NOM m p 7.10 15.47 0.53 5.00 +étant être AUX 8074.24 6501.82 30.94 76.82 par:pre; +étançon étançon NOM m s 0.00 0.20 0.00 0.20 +étape étape NOM f s 15.77 23.65 12.44 14.46 +étapes étape NOM f p 15.77 23.65 3.34 9.19 +état_civil état_civil NOM m s 0.03 0.54 0.03 0.47 +état_major état_major NOM m s 5.24 22.43 5.16 18.31 +état état NOM m s 145.72 218.18 136.81 192.03 +étatique étatique ADJ s 0.07 0.20 0.07 0.07 +étatiques étatique ADJ p 0.07 0.20 0.00 0.14 +étatisation étatisation NOM f s 0.03 0.00 0.03 0.00 +étatisme étatisme NOM m s 0.01 0.07 0.01 0.07 +état_civil état_civil NOM m p 0.03 0.54 0.00 0.07 +état_major état_major NOM m p 5.24 22.43 0.09 4.12 +états état NOM m p 145.72 218.18 8.91 26.15 +étau étau NOM m s 0.75 4.86 0.61 4.39 +étaux étau NOM m p 0.75 4.86 0.14 0.47 +étayage étayage NOM m s 0.01 0.07 0.01 0.07 +étayaient étayer VER 0.72 4.05 0.00 0.20 ind:imp:3p; +étayait étayer VER 0.72 4.05 0.00 0.41 ind:imp:3s; +étayant étayer VER 0.72 4.05 0.01 0.34 par:pre; +étaye étayer VER 0.72 4.05 0.08 0.00 ind:pre:3s; +étayer étayer VER 0.72 4.05 0.47 1.15 inf; +étayez étayer VER 0.72 4.05 0.03 0.07 imp:pre:2p;ind:pre:2p; +étayé étayer VER m s 0.72 4.05 0.02 0.54 par:pas; +étayée étayer VER f s 0.72 4.05 0.02 0.47 par:pas; +étayées étayer VER f p 0.72 4.05 0.05 0.14 par:pas; +étayés étayer VER m p 0.72 4.05 0.00 0.61 par:pas; +éteignît éteindre VER 57.32 76.82 0.00 0.54 sub:imp:3s; +éteignaient éteindre VER 57.32 76.82 0.18 2.23 ind:imp:3p; +éteignais éteindre VER 57.32 76.82 0.10 0.34 ind:imp:1s;ind:imp:2s; +éteignait éteindre VER 57.32 76.82 0.22 4.46 ind:imp:3s; +éteignant éteindre VER 57.32 76.82 0.34 2.84 par:pre; +éteigne éteindre VER 57.32 76.82 1.16 0.81 sub:pre:1s;sub:pre:3s; +éteignent éteindre VER 57.32 76.82 1.36 2.64 ind:pre:3p; +éteignes éteindre VER 57.32 76.82 0.08 0.00 sub:pre:2s; +éteignez éteindre VER 57.32 76.82 3.98 0.54 imp:pre:2p;ind:pre:2p; +éteignions éteindre VER 57.32 76.82 0.00 0.07 ind:imp:1p; +éteignirent éteindre VER 57.32 76.82 0.04 1.69 ind:pas:3p; +éteignis éteindre VER 57.32 76.82 0.10 0.47 ind:pas:1s; +éteignit éteindre VER 57.32 76.82 0.39 11.15 ind:pas:3s; +éteignoir éteignoir NOM m s 0.16 0.14 0.16 0.14 +éteignons éteindre VER 57.32 76.82 0.10 0.00 imp:pre:1p;ind:pre:1p; +éteindra éteindre VER 57.32 76.82 1.69 0.54 ind:fut:3s; +éteindrai éteindre VER 57.32 76.82 0.92 0.00 ind:fut:1s; +éteindraient éteindre VER 57.32 76.82 0.01 0.07 cnd:pre:3p; +éteindrais éteindre VER 57.32 76.82 0.04 0.07 cnd:pre:1s; +éteindrait éteindre VER 57.32 76.82 0.19 0.47 cnd:pre:3s; +éteindras éteindre VER 57.32 76.82 0.18 0.00 ind:fut:2s; +éteindre éteindre VER 57.32 76.82 14.48 16.62 inf; +éteindrez éteindre VER 57.32 76.82 0.14 0.14 ind:fut:2p; +éteindrons éteindre VER 57.32 76.82 0.23 0.41 ind:fut:1p; +éteindront éteindre VER 57.32 76.82 0.21 0.34 ind:fut:3p; +éteins éteindre VER 57.32 76.82 10.44 2.57 imp:pre:2s;ind:pre:1s;ind:pre:2s; +éteint éteindre VER m s 57.32 76.82 16.42 19.12 ind:pre:3s;par:pas; +éteinte éteindre VER f s 57.32 76.82 2.98 4.53 par:pas; +éteintes éteindre VER f p 57.32 76.82 0.77 1.69 par:pas; +éteints éteint ADJ m p 2.79 17.91 0.80 4.32 +étend étendre VER 21.90 111.89 4.98 11.28 ind:pre:3s; +étendîmes étendre VER 21.90 111.89 0.00 0.07 ind:pas:1p; +étendît étendre VER 21.90 111.89 0.00 0.34 sub:imp:3s; +étendage étendage NOM m s 0.02 0.20 0.02 0.20 +étendaient étendre VER 21.90 111.89 0.14 3.45 ind:imp:3p; +étendais étendre VER 21.90 111.89 0.03 0.88 ind:imp:1s; +étendait étendre VER 21.90 111.89 1.01 13.99 ind:imp:3s; +étendant étendre VER 21.90 111.89 0.07 3.24 par:pre; +étendard étendard NOM m s 0.77 4.80 0.65 2.23 +étendards étendard NOM m p 0.77 4.80 0.12 2.57 +étende étendre VER 21.90 111.89 0.27 0.47 sub:pre:1s;sub:pre:3s; +étendent étendre VER 21.90 111.89 0.81 2.30 ind:pre:3p; +étendez étendre VER 21.90 111.89 0.27 0.20 imp:pre:2p;ind:pre:2p; +étendions étendre VER 21.90 111.89 0.00 0.14 ind:imp:1p; +étendirent étendre VER 21.90 111.89 0.00 1.01 ind:pas:3p; +étendis étendre VER 21.90 111.89 0.02 1.22 ind:pas:1s; +étendit étendre VER 21.90 111.89 0.28 12.09 ind:pas:3s; +étendoir étendoir NOM m s 0.02 0.14 0.02 0.14 +étendons étendre VER 21.90 111.89 0.04 0.20 imp:pre:1p;ind:pre:1p; +étendra étendre VER 21.90 111.89 0.21 0.14 ind:fut:3s; +étendrai étendre VER 21.90 111.89 0.08 0.27 ind:fut:1s; +étendraient étendre VER 21.90 111.89 0.00 0.07 cnd:pre:3p; +étendrais étendre VER 21.90 111.89 0.01 0.14 cnd:pre:1s; +étendrait étendre VER 21.90 111.89 0.06 0.61 cnd:pre:3s; +étendre étendre VER 21.90 111.89 5.87 19.59 inf;; +étendrez étendre VER 21.90 111.89 0.00 0.07 ind:fut:2p; +étendrions étendre VER 21.90 111.89 0.00 0.07 cnd:pre:1p; +étendrons étendre VER 21.90 111.89 0.05 0.00 ind:fut:1p; +étendront étendre VER 21.90 111.89 0.05 0.00 ind:fut:3p; +étends étendre VER 21.90 111.89 1.42 2.23 imp:pre:2s;ind:pre:1s;ind:pre:2s; +étendu étendre VER m s 21.90 111.89 3.56 20.54 par:pas; +étendue étendue NOM f s 3.96 24.46 3.52 18.85 +étendues étendue NOM f p 3.96 24.46 0.45 5.61 +étendus étendre VER m p 21.90 111.89 0.51 3.38 par:pas; +éternel éternel ADJ m s 30.53 45.88 14.06 19.86 +éternelle éternel ADJ f s 30.53 45.88 12.85 18.18 +éternellement éternellement ADV 8.01 9.93 8.01 9.93 +éternelles éternel ADJ f p 30.53 45.88 1.52 3.78 +éternels éternel ADJ m p 30.53 45.88 2.10 4.05 +éternisa éterniser VER 1.31 4.32 0.00 0.34 ind:pas:3s; +éternisaient éterniser VER 1.31 4.32 0.00 0.14 ind:imp:3p; +éternisais éterniser VER 1.31 4.32 0.00 0.07 ind:imp:1s; +éternisait éterniser VER 1.31 4.32 0.00 0.95 ind:imp:3s; +éternise éterniser VER 1.31 4.32 0.41 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éternisent éterniser VER 1.31 4.32 0.02 0.20 ind:pre:3p; +éterniser éterniser VER 1.31 4.32 0.65 1.35 inf; +éterniserai éterniser VER 1.31 4.32 0.02 0.00 ind:fut:1s; +éterniserait éterniser VER 1.31 4.32 0.00 0.07 cnd:pre:3s; +éterniserons éterniser VER 1.31 4.32 0.01 0.00 ind:fut:1p; +éternisez éterniser VER 1.31 4.32 0.13 0.00 imp:pre:2p;ind:pre:2p; +éternisons éterniser VER 1.31 4.32 0.00 0.07 imp:pre:1p; +éternisât éterniser VER 1.31 4.32 0.00 0.07 sub:imp:3s; +éternisé éterniser VER m s 1.31 4.32 0.04 0.20 par:pas; +éternisée éterniser VER f s 1.31 4.32 0.02 0.00 par:pas; +éternisés éterniser VER m p 1.31 4.32 0.01 0.14 par:pas; +éternité éternité NOM f s 18.20 31.62 18.00 30.95 +éternités éternité NOM f p 18.20 31.62 0.20 0.68 +éternua éternuer VER 3.48 4.26 0.00 1.28 ind:pas:3s; +éternuaient éternuer VER 3.48 4.26 0.00 0.07 ind:imp:3p; +éternuais éternuer VER 3.48 4.26 0.03 0.07 ind:imp:1s; +éternuait éternuer VER 3.48 4.26 0.02 0.20 ind:imp:3s; +éternuant éternuer VER 3.48 4.26 0.20 0.20 par:pre; +éternue éternuer VER 3.48 4.26 1.25 0.41 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éternuement éternuement NOM m s 1.00 1.55 0.65 1.01 +éternuements éternuement NOM m p 1.00 1.55 0.36 0.54 +éternuent éternuer VER 3.48 4.26 0.04 0.00 ind:pre:3p; +éternuer éternuer VER 3.48 4.26 1.02 1.62 inf; +éternuerait éternuer VER 3.48 4.26 0.00 0.07 cnd:pre:3s; +éternues éternuer VER 3.48 4.26 0.23 0.00 ind:pre:2s; +éternuez éternuer VER 3.48 4.26 0.06 0.07 imp:pre:2p;ind:pre:2p; +éternué éternuer VER m s 3.48 4.26 0.63 0.27 par:pas; +êtes être AUX 8074.24 6501.82 260.22 51.89 ind:pre:2p; +éteule éteule NOM f s 0.00 0.54 0.00 0.07 +éteules éteule NOM f p 0.00 0.54 0.00 0.47 +éthane éthane NOM m s 0.01 0.00 0.01 0.00 +éthanol éthanol NOM m s 0.29 0.00 0.29 0.00 +éther éther NOM m s 1.43 4.05 1.43 3.92 +éthers éther NOM m p 1.43 4.05 0.00 0.14 +éthiopien éthiopien ADJ m s 0.59 0.47 0.31 0.07 +éthiopienne éthiopien ADJ f s 0.59 0.47 0.14 0.27 +éthiopiennes éthiopien ADJ f p 0.59 0.47 0.01 0.00 +éthiopiens éthiopien ADJ m p 0.59 0.47 0.14 0.14 +éthique éthique NOM f s 4.56 1.08 4.55 1.01 +éthiquement éthiquement ADV 0.09 0.00 0.09 0.00 +éthiques éthique ADJ p 1.22 0.41 0.28 0.27 +éthologie éthologie NOM f s 0.11 0.07 0.11 0.07 +éthologue éthologue NOM s 0.01 0.00 0.01 0.00 +éthérique éthérique ADJ f s 0.01 0.00 0.01 0.00 +éthéré éthéré ADJ m s 0.40 0.95 0.23 0.27 +éthérée éthéré ADJ f s 0.40 0.95 0.00 0.41 +éthérées éthéré ADJ f p 0.40 0.95 0.16 0.20 +éthérés éthéré ADJ m p 0.40 0.95 0.01 0.07 +éthyle éthyle NOM m s 0.07 0.00 0.07 0.00 +éthylique éthylique ADJ s 0.26 0.61 0.26 0.34 +éthyliques éthylique ADJ p 0.26 0.61 0.00 0.27 +éthylisme éthylisme NOM m s 0.10 0.20 0.10 0.20 +éthylotest éthylotest NOM m s 0.05 0.00 0.05 0.00 +éthylène éthylène NOM m s 0.09 0.00 0.09 0.00 +étiage étiage NOM m s 0.00 0.34 0.00 0.34 +étier étier NOM m s 0.00 0.34 0.00 0.07 +étiers étier NOM m p 0.00 0.34 0.00 0.27 +étiez être AUX 8074.24 6501.82 23.15 7.30 ind:imp:2p; +utile utile ADJ s 44.99 32.70 36.47 23.99 +utilement utilement ADV 0.03 1.49 0.03 1.49 +utiles utile ADJ p 44.99 32.70 8.52 8.72 +utilisa utiliser VER 182.44 43.51 0.23 0.68 ind:pas:3s; +utilisable utilisable ADJ s 1.62 1.69 1.30 1.15 +utilisables utilisable ADJ p 1.62 1.69 0.32 0.54 +utilisai utiliser VER 182.44 43.51 0.00 0.14 ind:pas:1s; +utilisaient utiliser VER 182.44 43.51 1.68 1.96 ind:imp:3p; +utilisais utiliser VER 182.44 43.51 1.15 0.47 ind:imp:1s;ind:imp:2s; +utilisait utiliser VER 182.44 43.51 3.84 5.41 ind:imp:3s; +utilisant utiliser VER 182.44 43.51 5.73 3.72 par:pre; +utilisateur utilisateur NOM m s 1.24 0.20 0.79 0.00 +utilisateurs utilisateur NOM m p 1.24 0.20 0.44 0.20 +utilisation utilisation NOM f s 4.67 4.26 4.47 4.12 +utilisations utilisation NOM f p 4.67 4.26 0.20 0.14 +utilisatrice utilisateur NOM f s 1.24 0.20 0.01 0.00 +utilise utiliser VER 182.44 43.51 31.68 2.97 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +utilisent utiliser VER 182.44 43.51 8.00 1.49 ind:pre:3p; +utiliser utiliser VER 182.44 43.51 61.97 15.61 ind:pre:2p;inf; +utilisera utiliser VER 182.44 43.51 1.62 0.14 ind:fut:3s; +utiliserai utiliser VER 182.44 43.51 1.82 0.20 ind:fut:1s; +utiliseraient utiliser VER 182.44 43.51 0.20 0.34 cnd:pre:3p; +utiliserais utiliser VER 182.44 43.51 1.17 0.14 cnd:pre:1s;cnd:pre:2s; +utiliserait utiliser VER 182.44 43.51 0.80 0.34 cnd:pre:3s; +utiliseras utiliser VER 182.44 43.51 0.58 0.00 ind:fut:2s; +utiliserez utiliser VER 182.44 43.51 0.36 0.00 ind:fut:2p; +utiliseriez utiliser VER 182.44 43.51 0.17 0.00 cnd:pre:2p; +utiliserions utiliser VER 182.44 43.51 0.03 0.00 cnd:pre:1p; +utiliserons utiliser VER 182.44 43.51 1.02 0.00 ind:fut:1p; +utiliseront utiliser VER 182.44 43.51 0.49 0.07 ind:fut:3p; +utilises utiliser VER 182.44 43.51 3.80 0.20 ind:pre:2s;sub:pre:2s; +utilisez utiliser VER 182.44 43.51 11.86 0.34 imp:pre:2p;ind:pre:2p; +utilisiez utiliser VER 182.44 43.51 0.66 0.41 ind:imp:2p;sub:pre:2p; +utilisions utiliser VER 182.44 43.51 0.37 0.14 ind:imp:1p; +utilisons utiliser VER 182.44 43.51 3.04 0.07 imp:pre:1p;ind:pre:1p; +utilisât utiliser VER 182.44 43.51 0.00 0.07 sub:imp:3s; +utilisèrent utiliser VER 182.44 43.51 0.06 0.07 ind:pas:3p; +utilisé utiliser VER m s 182.44 43.51 30.65 4.19 par:pas; +utilisée utiliser VER f s 182.44 43.51 5.59 1.62 par:pas; +utilisées utiliser VER f p 182.44 43.51 1.43 0.88 par:pas; +utilisés utiliser VER m p 182.44 43.51 2.44 1.89 par:pas; +utilitaire utilitaire NOM s 0.16 0.34 0.15 0.14 +utilitaires utilitaire ADJ p 0.12 1.35 0.01 0.27 +utilitarisme utilitarisme NOM m s 0.00 0.07 0.00 0.07 +utilité utilité NOM f s 4.28 7.09 4.15 6.49 +utilités utilité NOM f p 4.28 7.09 0.13 0.61 +étincela étinceler VER 1.29 10.81 0.00 0.41 ind:pas:3s; +étincelaient étinceler VER 1.29 10.81 0.05 2.36 ind:imp:3p; +étincelait étinceler VER 1.29 10.81 0.02 3.11 ind:imp:3s; +étincelant étincelant ADJ m s 1.29 13.18 0.34 3.24 +étincelante étincelant ADJ f s 1.29 13.18 0.58 4.53 +étincelantes étincelant ADJ f p 1.29 13.18 0.25 2.70 +étincelants étincelant ADJ m p 1.29 13.18 0.12 2.70 +étinceler étinceler VER 1.29 10.81 0.07 0.88 inf; +étincelle étincelle NOM f s 6.30 12.97 3.59 5.07 +étincellement étincellement NOM m s 0.14 0.81 0.14 0.74 +étincellements étincellement NOM m p 0.14 0.81 0.00 0.07 +étincellent étinceler VER 1.29 10.81 0.16 0.61 ind:pre:3p; +étincellera étinceler VER 1.29 10.81 0.03 0.00 ind:fut:3s; +étincelles étincelle NOM f p 6.30 12.97 2.71 7.91 +étincelèrent étinceler VER 1.29 10.81 0.00 0.34 ind:pas:3p; +étincelé étinceler VER m s 1.29 10.81 0.00 0.20 par:pas; +étiolaient étioler VER 0.45 2.09 0.00 0.07 ind:imp:3p; +étiolais étioler VER 0.45 2.09 0.00 0.07 ind:imp:1s; +étiolait étioler VER 0.45 2.09 0.00 0.14 ind:imp:3s; +étiolant étioler VER 0.45 2.09 0.00 0.07 par:pre; +étiole étioler VER 0.45 2.09 0.16 0.41 ind:pre:1s;ind:pre:3s; +étiolement étiolement NOM m s 0.00 0.07 0.00 0.07 +étiolent étioler VER 0.45 2.09 0.01 0.54 ind:pre:3p; +étioler étioler VER 0.45 2.09 0.26 0.54 inf; +étiologie étiologie NOM f s 0.03 0.00 0.03 0.00 +étiologique étiologique ADJ m s 0.02 0.07 0.01 0.00 +étiologiques étiologique ADJ p 0.02 0.07 0.01 0.07 +étiolé étioler VER m s 0.45 2.09 0.00 0.07 par:pas; +étiolée étioler VER f s 0.45 2.09 0.03 0.14 par:pas; +étiolées étioler VER f p 0.45 2.09 0.00 0.07 par:pas; +étions être AUX 8074.24 6501.82 9.63 47.77 ind:imp:1p; +étique étique ADJ s 0.11 0.68 0.09 0.34 +étiques étique ADJ p 0.11 0.68 0.02 0.34 +étiquetage étiquetage NOM m s 0.12 0.00 0.12 0.00 +étiquetaient étiqueter VER 1.13 2.03 0.00 0.07 ind:imp:3p; +étiqueter étiqueter VER 1.13 2.03 0.35 0.27 inf; +étiqueteuse étiqueteur NOM f s 0.04 0.00 0.04 0.00 +étiquetez étiqueter VER 1.13 2.03 0.09 0.00 imp:pre:2p;ind:pre:2p; +étiquette étiquette NOM f s 7.38 15.74 5.44 8.65 +étiquettent étiqueter VER 1.13 2.03 0.01 0.07 ind:pre:3p; +étiquettes étiquette NOM f p 7.38 15.74 1.94 7.09 +étiqueté étiqueter VER m s 1.13 2.03 0.31 0.47 par:pas; +étiquetée étiqueter VER f s 1.13 2.03 0.09 0.14 par:pas; +étiquetées étiqueter VER f p 1.13 2.03 0.05 0.34 par:pas; +étiquetés étiqueter VER m p 1.13 2.03 0.15 0.54 par:pas; +étira étirer VER 3.28 40.27 0.00 7.09 ind:pas:3s; +étirable étirable ADJ m s 0.01 0.00 0.01 0.00 +étirage étirage NOM m s 0.14 0.00 0.14 0.00 +étirai étirer VER 3.28 40.27 0.00 0.34 ind:pas:1s; +étiraient étirer VER 3.28 40.27 0.02 2.50 ind:imp:3p; +étirais étirer VER 3.28 40.27 0.11 0.27 ind:imp:1s;ind:imp:2s; +étirait étirer VER 3.28 40.27 0.06 5.07 ind:imp:3s; +étirant étirer VER 3.28 40.27 0.06 4.39 par:pre; +étire étirer VER 3.28 40.27 0.99 8.04 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +étirement étirement NOM m s 0.33 1.01 0.09 0.54 +étirements étirement NOM m p 0.33 1.01 0.24 0.47 +étirent étirer VER 3.28 40.27 0.35 1.96 ind:pre:3p; +étirer étirer VER 3.28 40.27 0.93 3.11 inf; +étirerait étirer VER 3.28 40.27 0.02 0.00 cnd:pre:3s; +étirez étirer VER 3.28 40.27 0.09 0.00 imp:pre:2p;ind:pre:2p; +étirèrent étirer VER 3.28 40.27 0.01 0.54 ind:pas:3p; +étiré étirer VER m s 3.28 40.27 0.29 2.03 par:pas; +étirée étirer VER f s 3.28 40.27 0.06 1.49 par:pas; +étirées étirer VER f p 3.28 40.27 0.12 1.69 par:pas; +étirés étirer VER m p 3.28 40.27 0.15 1.76 par:pas; +étisie étisie NOM f s 0.00 0.07 0.00 0.07 +étoffaient étoffer VER 0.33 0.81 0.00 0.07 ind:imp:3p; +étoffait étoffer VER 0.33 0.81 0.00 0.14 ind:imp:3s; +étoffe étoffe NOM f s 3.10 28.24 2.90 19.26 +étoffer étoffer VER 0.33 0.81 0.14 0.14 inf; +étoffes étoffe NOM f p 3.10 28.24 0.20 8.99 +étoffé étoffer VER m s 0.33 0.81 0.11 0.27 par:pas; +étoffée étoffer VER f s 0.33 0.81 0.04 0.07 par:pas; +étoffées étoffé ADJ f p 0.07 0.34 0.00 0.07 +étoffés étoffer VER m p 0.33 0.81 0.00 0.07 par:pas; +étoila étoiler VER 0.95 3.78 0.00 0.07 ind:pas:3s; +étoilaient étoiler VER 0.95 3.78 0.00 0.20 ind:imp:3p; +étoilait étoiler VER 0.95 3.78 0.01 0.47 ind:imp:3s; +étoile étoile NOM f s 54.63 81.82 21.65 29.80 +étoilent étoiler VER 0.95 3.78 0.00 0.07 ind:pre:3p; +étoiles étoile NOM f p 54.63 81.82 32.98 52.03 +étoilé étoilé ADJ m s 1.35 3.18 0.59 1.28 +étoilée étoilé ADJ f s 1.35 3.18 0.71 0.88 +étoilées étoilé ADJ f p 1.35 3.18 0.03 0.68 +étoilés étoilé ADJ m p 1.35 3.18 0.02 0.34 +étole étole NOM f s 0.29 2.09 0.29 1.69 +étoles étole NOM f p 0.29 2.09 0.00 0.41 +étonna étonner VER 53.63 116.55 0.23 14.19 ind:pas:3s; +étonnai étonner VER 53.63 116.55 0.00 1.49 ind:pas:1s; +étonnaient étonner VER 53.63 116.55 0.02 2.64 ind:imp:3p; +étonnais étonner VER 53.63 116.55 0.23 3.58 ind:imp:1s;ind:imp:2s; +étonnait étonner VER 53.63 116.55 0.91 15.47 ind:imp:3s; +étonnamment étonnamment ADV 1.01 3.99 1.01 3.99 +étonnant étonnant ADJ m s 19.85 30.00 15.52 16.15 +étonnante étonnant ADJ f s 19.85 30.00 2.95 10.47 +étonnantes étonnant ADJ f p 19.85 30.00 0.72 1.89 +étonnants étonnant ADJ m p 19.85 30.00 0.66 1.49 +étonne étonner VER 53.63 116.55 21.18 21.76 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +étonnement étonnement NOM m s 1.28 31.96 1.28 30.74 +étonnements étonnement NOM m p 1.28 31.96 0.00 1.22 +étonnent étonner VER 53.63 116.55 0.49 1.96 ind:pre:3p; +étonner étonner VER 53.63 116.55 3.40 12.23 inf; +étonnera étonner VER 53.63 116.55 0.62 1.08 ind:fut:3s; +étonnerai étonner VER 53.63 116.55 0.18 0.07 ind:fut:1s; +étonneraient étonner VER 53.63 116.55 0.03 0.41 cnd:pre:3p; +étonnerais étonner VER 53.63 116.55 0.02 0.14 cnd:pre:1s; +étonnerait étonner VER 53.63 116.55 10.62 7.84 cnd:pre:3s; +étonneras étonner VER 53.63 116.55 0.10 0.14 ind:fut:2s; +étonnerez étonner VER 53.63 116.55 0.06 0.07 ind:fut:2p; +étonneriez étonner VER 53.63 116.55 0.00 0.07 cnd:pre:2p; +étonnerons étonner VER 53.63 116.55 0.00 0.07 ind:fut:1p; +étonneront étonner VER 53.63 116.55 0.04 0.27 ind:fut:3p; +étonnes étonner VER 53.63 116.55 4.30 1.15 ind:pre:2s; +étonnez étonner VER 53.63 116.55 1.46 1.62 imp:pre:2p;ind:pre:2p; +étonniez étonner VER 53.63 116.55 0.02 0.07 ind:imp:2p; +étonnions étonner VER 53.63 116.55 0.00 0.27 ind:imp:1p; +étonnâmes étonner VER 53.63 116.55 0.00 0.14 ind:pas:1p; +étonnons étonner VER 53.63 116.55 0.01 0.20 imp:pre:1p;ind:pre:1p; +étonnât étonner VER 53.63 116.55 0.00 0.07 sub:imp:3s; +étonnèrent étonner VER 53.63 116.55 0.00 1.15 ind:pas:3p; +étonné étonner VER m s 53.63 116.55 3.21 15.07 par:pas; +étonnée étonner VER f s 53.63 116.55 2.39 6.76 par:pas; +étonnées étonné ADJ f p 3.37 23.31 0.10 0.61 +étonnés étonner VER m p 53.63 116.55 0.52 2.03 par:pas; +utopie utopie NOM f s 1.48 1.28 1.16 0.88 +utopies utopie NOM f p 1.48 1.28 0.32 0.41 +utopique utopique ADJ s 0.49 0.61 0.33 0.41 +utopiques utopique ADJ f p 0.49 0.61 0.16 0.20 +utopiste utopiste NOM s 0.29 0.07 0.11 0.07 +utopistes utopiste NOM p 0.29 0.07 0.18 0.00 +étouffa étouffer VER 28.50 59.46 0.11 2.50 ind:pas:3s; +étouffai étouffer VER 28.50 59.46 0.00 0.14 ind:pas:1s; +étouffaient étouffer VER 28.50 59.46 0.03 2.84 ind:imp:3p; +étouffais étouffer VER 28.50 59.46 0.32 1.96 ind:imp:1s;ind:imp:2s; +étouffait étouffer VER 28.50 59.46 0.34 8.92 ind:imp:3s; +étouffant étouffant ADJ m s 1.36 7.97 0.83 2.70 +étouffante étouffant ADJ f s 1.36 7.97 0.51 4.19 +étouffantes étouffant ADJ f p 1.36 7.97 0.01 0.54 +étouffants étouffant ADJ m p 1.36 7.97 0.01 0.54 +étouffassent étouffer VER 28.50 59.46 0.00 0.07 sub:imp:3p; +étouffe_chrétien étouffe_chrétien NOM m 0.01 0.00 0.01 0.00 +étouffe étouffer VER 28.50 59.46 11.88 8.65 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +étouffement étouffement NOM m s 0.64 3.92 0.64 3.45 +étouffements étouffement NOM m p 0.64 3.92 0.00 0.47 +étouffent étouffer VER 28.50 59.46 0.98 1.49 ind:pre:3p; +étouffer étouffer VER 28.50 59.46 7.45 12.30 inf;; +étouffera étouffer VER 28.50 59.46 0.22 0.20 ind:fut:3s; +étoufferai étouffer VER 28.50 59.46 0.26 0.00 ind:fut:1s; +étoufferaient étouffer VER 28.50 59.46 0.10 0.07 cnd:pre:3p; +étoufferais étouffer VER 28.50 59.46 0.06 0.14 cnd:pre:1s;cnd:pre:2s; +étoufferait étouffer VER 28.50 59.46 0.29 0.47 cnd:pre:3s; +étoufferez étouffer VER 28.50 59.46 0.04 0.00 ind:fut:2p; +étoufferiez étouffer VER 28.50 59.46 0.01 0.00 cnd:pre:2p; +étoufferons étouffer VER 28.50 59.46 0.03 0.07 ind:fut:1p; +étoufferont étouffer VER 28.50 59.46 0.03 0.07 ind:fut:3p; +étouffes étouffer VER 28.50 59.46 1.32 0.95 ind:pre:2s; +étouffeur étouffeur NOM m s 0.03 0.07 0.03 0.00 +étouffeuses étouffeur NOM f p 0.03 0.07 0.00 0.07 +étouffez étouffer VER 28.50 59.46 0.32 0.07 imp:pre:2p;ind:pre:2p; +étouffiez étouffer VER 28.50 59.46 0.02 0.00 ind:imp:2p; +étouffions étouffer VER 28.50 59.46 0.00 0.14 ind:imp:1p; +étouffoir étouffoir NOM m s 0.00 0.20 0.00 0.14 +étouffoirs étouffoir NOM m p 0.00 0.20 0.00 0.07 +étouffons étouffer VER 28.50 59.46 0.02 0.07 imp:pre:1p;ind:pre:1p; +étouffât étouffer VER 28.50 59.46 0.00 0.34 sub:imp:3s; +étouffèrent étouffer VER 28.50 59.46 0.20 0.34 ind:pas:3p; +étouffé étouffer VER m s 28.50 59.46 2.48 5.20 par:pas; +étouffée étouffer VER f s 28.50 59.46 1.36 5.27 par:pas; +étouffées étouffer VER f p 28.50 59.46 0.17 1.82 par:pas; +étouffés étouffé ADJ m p 0.74 8.11 0.46 3.78 +étoupe étoupe NOM f s 0.07 1.28 0.07 1.28 +étourderie étourderie NOM f s 0.30 1.69 0.30 1.49 +étourderies étourderie NOM f p 0.30 1.69 0.00 0.20 +étourdi étourdi ADJ m s 1.00 3.58 0.56 2.30 +étourdie étourdi ADJ f s 1.00 3.58 0.44 0.88 +étourdies étourdi NOM f p 0.73 2.16 0.01 0.00 +étourdiment étourdiment ADV 0.01 0.95 0.01 0.95 +étourdir étourdir VER 1.13 7.64 0.17 1.22 inf; +étourdira étourdir VER 1.13 7.64 0.01 0.00 ind:fut:3s; +étourdirait étourdir VER 1.13 7.64 0.00 0.07 cnd:pre:3s; +étourdirent étourdir VER 1.13 7.64 0.00 0.07 ind:pas:3p; +étourdis étourdir VER m p 1.13 7.64 0.06 0.54 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +étourdissaient étourdir VER 1.13 7.64 0.00 0.41 ind:imp:3p; +étourdissait étourdir VER 1.13 7.64 0.00 1.22 ind:imp:3s; +étourdissant étourdissant ADJ m s 0.40 2.03 0.23 0.88 +étourdissante étourdissant ADJ f s 0.40 2.03 0.14 0.95 +étourdissantes étourdissant ADJ f p 0.40 2.03 0.03 0.14 +étourdissants étourdissant ADJ m p 0.40 2.03 0.00 0.07 +étourdissement étourdissement NOM m s 0.81 1.82 0.62 1.42 +étourdissements étourdissement NOM m p 0.81 1.82 0.20 0.41 +étourdissent étourdir VER 1.13 7.64 0.03 0.14 ind:pre:3p; +étourdissez étourdir VER 1.13 7.64 0.11 0.00 ind:pre:2p; +étourdissons étourdir VER 1.13 7.64 0.00 0.07 ind:pre:1p; +étourdit étourdir VER 1.13 7.64 0.20 0.88 ind:pre:3s;ind:pas:3s; +étourneau étourneau NOM m s 0.41 1.22 0.33 0.27 +étourneaux étourneau NOM m p 0.41 1.22 0.09 0.95 +étrange étrange ADJ s 85.61 103.58 70.99 83.65 +étrangement étrangement ADV 3.85 14.86 3.85 14.86 +étranger étranger NOM m s 58.84 66.62 35.72 33.85 +étrangers étranger NOM m p 58.84 66.62 19.67 23.85 +étranges étrange ADJ p 85.61 103.58 14.61 19.93 +étrangeté étrangeté NOM f s 0.39 5.68 0.35 4.93 +étrangetés étrangeté NOM f p 0.39 5.68 0.04 0.74 +étrangla étrangler VER 18.53 22.09 0.00 2.30 ind:pas:3s; +étranglai étrangler VER 18.53 22.09 0.00 0.20 ind:pas:1s; +étranglaient étrangler VER 18.53 22.09 0.04 0.41 ind:imp:3p; +étranglais étrangler VER 18.53 22.09 0.04 0.14 ind:imp:1s;ind:imp:2s; +étranglait étrangler VER 18.53 22.09 0.21 2.70 ind:imp:3s; +étranglant étrangler VER 18.53 22.09 0.10 1.15 par:pre; +étrangle étrangler VER 18.53 22.09 4.04 3.38 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s; +étranglement étranglement NOM m s 0.62 1.42 0.61 1.08 +étranglements étranglement NOM m p 0.62 1.42 0.01 0.34 +étranglent étrangler VER 18.53 22.09 0.36 0.27 ind:pre:3p; +étrangler étrangler VER 18.53 22.09 6.87 6.49 ind:pre:2p;inf; +étranglera étrangler VER 18.53 22.09 0.16 0.14 ind:fut:3s; +étranglerai étrangler VER 18.53 22.09 0.16 0.20 ind:fut:1s; +étrangleraient étrangler VER 18.53 22.09 0.01 0.07 cnd:pre:3p; +étranglerais étrangler VER 18.53 22.09 0.46 0.00 cnd:pre:1s;cnd:pre:2s; +étranglerait étrangler VER 18.53 22.09 0.15 0.00 cnd:pre:3s; +étrangleront étrangler VER 18.53 22.09 0.17 0.00 ind:fut:3p; +étrangles étrangler VER 18.53 22.09 0.36 0.07 ind:pre:2s; +étrangleur étrangleur NOM m s 0.66 0.88 0.62 0.74 +étrangleurs étrangleur NOM m p 0.66 0.88 0.03 0.14 +étrangleuse étrangleur NOM f s 0.66 0.88 0.01 0.00 +étrangleuses étrangleur ADJ f p 0.04 0.27 0.00 0.07 +étranglez étrangler VER 18.53 22.09 0.11 0.07 imp:pre:2p;ind:pre:2p; +étranglât étrangler VER 18.53 22.09 0.00 0.07 sub:imp:3s; +étranglé étrangler VER m s 18.53 22.09 3.44 2.23 par:pas; +étranglée étrangler VER f s 18.53 22.09 1.50 1.96 par:pas; +étranglées étrangler VER f p 18.53 22.09 0.14 0.14 par:pas; +étranglés étrangler VER m p 18.53 22.09 0.22 0.14 par:pas; +étrangère étranger ADJ f s 31.39 75.00 7.25 20.47 +étrangères étranger ADJ f p 31.39 75.00 4.46 16.82 +étrangéité étrangéité NOM f s 0.00 0.07 0.00 0.07 +étrave étrave NOM f s 0.07 3.31 0.07 3.11 +étraves étrave NOM f p 0.07 3.31 0.00 0.20 +être_là être_là NOM m 0.14 0.00 0.14 0.00 +être être AUX 8074.24 6501.82 725.09 685.47 inf; +étreignîmes étreindre VER 3.05 16.96 0.00 0.07 ind:pas:1p; +étreignaient étreindre VER 3.05 16.96 0.11 0.81 ind:imp:3p; +étreignais étreindre VER 3.05 16.96 0.02 0.07 ind:imp:1s; +étreignait étreindre VER 3.05 16.96 0.14 3.45 ind:imp:3s; +étreignant étreindre VER 3.05 16.96 0.26 1.22 par:pre; +étreigne étreindre VER 3.05 16.96 0.14 0.07 sub:pre:1s;sub:pre:3s; +étreignent étreindre VER 3.05 16.96 0.06 1.08 ind:pre:3p;sub:pre:3p; +étreignions étreindre VER 3.05 16.96 0.00 0.27 ind:imp:1p; +étreignirent étreindre VER 3.05 16.96 0.00 0.41 ind:pas:3p; +étreignit étreindre VER 3.05 16.96 0.16 1.76 ind:pas:3s; +étreignons étreindre VER 3.05 16.96 0.01 0.07 imp:pre:1p;ind:pre:1p; +étreindrait étreindre VER 3.05 16.96 0.00 0.07 cnd:pre:3s; +étreindre étreindre VER 3.05 16.96 0.69 2.97 inf;; +étreindrons étreindre VER 3.05 16.96 0.00 0.07 ind:fut:1p; +étreindront étreindre VER 3.05 16.96 0.14 0.07 ind:fut:3p; +étreins étreindre VER 3.05 16.96 0.30 0.20 imp:pre:2s;ind:pre:1s;ind:pre:2s; +étreint étreindre VER m s 3.05 16.96 0.95 3.38 ind:pre:3s;par:pas; +étreinte étreinte NOM f s 2.75 16.42 2.06 12.36 +étreintes étreinte NOM f p 2.75 16.42 0.70 4.05 +étreints étreindre VER m p 3.05 16.96 0.01 0.68 par:pas; +étrenna étrenner VER 0.37 1.28 0.00 0.07 ind:pas:3s; +étrennait étrenner VER 0.37 1.28 0.01 0.20 ind:imp:3s; +étrennant étrenner VER 0.37 1.28 0.00 0.07 par:pre; +étrenne étrenner VER 0.37 1.28 0.14 0.07 ind:pre:3s; +étrennent étrenner VER 0.37 1.28 0.00 0.07 ind:pre:3p; +étrenner étrenner VER 0.37 1.28 0.07 0.47 inf; +étrennera étrenner VER 0.37 1.28 0.01 0.07 ind:fut:3s; +étrennerais étrenner VER 0.37 1.28 0.00 0.07 cnd:pre:1s; +étrennes étrenne NOM f p 0.17 1.22 0.17 1.08 +étrenné étrenner VER m s 0.37 1.28 0.02 0.07 par:pas; +étrennée étrenner VER f s 0.37 1.28 0.01 0.14 par:pas; +êtres être NOM m p 100.69 122.57 21.91 45.20 +étrier étrier NOM m s 0.83 5.00 0.33 2.43 +étriers étrier NOM m p 0.83 5.00 0.50 2.57 +étrilla étriller VER 0.11 1.15 0.00 0.14 ind:pas:3s; +étrillage étrillage NOM m s 0.00 0.14 0.00 0.14 +étrillaient étriller VER 0.11 1.15 0.00 0.07 ind:imp:3p; +étrillait étriller VER 0.11 1.15 0.00 0.07 ind:imp:3s; +étrille étrille NOM f s 0.01 0.41 0.01 0.20 +étriller étriller VER 0.11 1.15 0.06 0.41 inf; +étrillerez étriller VER 0.11 1.15 0.01 0.00 ind:fut:2p; +étrilles étrille NOM f p 0.01 0.41 0.00 0.20 +étrillé étriller VER m s 0.11 1.15 0.02 0.27 par:pas; +étrillée étriller VER f s 0.11 1.15 0.01 0.07 par:pas; +étrillés étriller VER m p 0.11 1.15 0.00 0.14 par:pas; +étripage étripage NOM m s 0.01 0.07 0.01 0.00 +étripages étripage NOM m p 0.01 0.07 0.00 0.07 +étripaient étriper VER 3.07 1.76 0.00 0.07 ind:imp:3p; +étripe étriper VER 3.07 1.76 1.30 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:1s;sub:pre:3s; +étripent étriper VER 3.07 1.76 0.06 0.07 ind:pre:3p; +étriper étriper VER 3.07 1.76 1.35 0.74 inf; +étripera étriper VER 3.07 1.76 0.03 0.00 ind:fut:3s; +étriperai étriper VER 3.07 1.76 0.03 0.00 ind:fut:1s; +étriperaient étriper VER 3.07 1.76 0.01 0.00 cnd:pre:3p; +étriperais étriper VER 3.07 1.76 0.01 0.00 cnd:pre:1s; +étripèrent étriper VER 3.07 1.76 0.00 0.07 ind:pas:3p; +étripé étriper VER m s 3.07 1.76 0.19 0.14 par:pas; +étripée étriper VER f s 3.07 1.76 0.01 0.07 par:pas; +étripés étriper VER m p 3.07 1.76 0.06 0.14 par:pas; +étriqua étriquer VER 0.19 1.15 0.00 0.07 ind:pas:3s; +étriquaient étriquer VER 0.19 1.15 0.00 0.07 ind:imp:3p; +étriquant étriquer VER 0.19 1.15 0.00 0.07 par:pre; +étriqué étriqué ADJ m s 0.23 3.78 0.13 1.96 +étriquée étriquer VER f s 0.19 1.15 0.16 0.20 par:pas; +étriquées étriqué ADJ f p 0.23 3.78 0.01 0.41 +étriqués étriqué ADJ m p 0.23 3.78 0.07 0.54 +étrivière étrivière NOM f s 0.00 0.41 0.00 0.07 +étrivières étrivière NOM f p 0.00 0.41 0.00 0.34 +étroit étroit ADJ m s 10.79 75.81 5.94 28.18 +étroite étroit ADJ f s 10.79 75.81 2.91 29.59 +étroitement étroitement ADV 1.51 10.81 1.51 10.81 +étroites étroit ADJ f p 10.79 75.81 1.06 10.88 +étroitesse étroitesse NOM f s 0.36 2.36 0.36 2.36 +étroits étroit ADJ m p 10.79 75.81 0.88 7.16 +étron étron NOM m s 0.75 2.43 0.44 1.55 +étrons étron NOM m p 0.75 2.43 0.31 0.88 +étréci étrécir VER m s 0.00 0.27 0.00 0.07 par:pas; +étrécie étrécir VER f s 0.00 0.27 0.00 0.07 par:pas; +étrécir étrécir VER 0.00 0.27 0.00 0.07 inf; +étrécissement étrécissement NOM m s 0.00 0.07 0.00 0.07 +étrécit étrécir VER 0.00 0.27 0.00 0.07 ind:pas:3s; +étrésillon étrésillon NOM m s 0.00 0.07 0.00 0.07 +étrusque étrusque ADJ m s 0.33 0.54 0.14 0.14 +étrusques étrusque ADJ p 0.33 0.54 0.19 0.41 +été être AUX m s 8074.24 6501.82 24.71 40.20 par:pas; +étude étude NOM f s 44.22 63.04 11.35 19.66 +études étude NOM f p 44.22 63.04 32.87 43.38 +étudia étudier VER 70.77 30.41 0.21 1.15 ind:pas:3s; +étudiai étudier VER 70.77 30.41 0.02 0.34 ind:pas:1s; +étudiaient étudier VER 70.77 30.41 0.12 0.47 ind:imp:3p; +étudiais étudier VER 70.77 30.41 1.23 0.81 ind:imp:1s;ind:imp:2s; +étudiait étudier VER 70.77 30.41 1.86 2.50 ind:imp:3s; +étudiant étudiant NOM m s 38.07 38.45 10.12 14.05 +étudiante étudiant NOM f s 38.07 38.45 4.49 3.72 +étudiantes étudiant NOM f p 38.07 38.45 2.24 1.89 +étudiants étudiant NOM m p 38.07 38.45 21.22 18.78 +étudie étudier VER 70.77 30.41 11.42 2.03 imp:pre:2s;ind:pre:1s;ind:pre:3s; +étudient étudier VER 70.77 30.41 1.93 0.20 ind:pre:3p; +étudier étudier VER 70.77 30.41 26.86 11.42 inf; +étudiera étudier VER 70.77 30.41 0.51 0.34 ind:fut:3s; +étudierai étudier VER 70.77 30.41 0.62 0.20 ind:fut:1s; +étudierais étudier VER 70.77 30.41 0.14 0.14 cnd:pre:1s;cnd:pre:2s; +étudierait étudier VER 70.77 30.41 0.02 0.07 cnd:pre:3s; +étudieras étudier VER 70.77 30.41 0.39 0.00 ind:fut:2s; +étudierez étudier VER 70.77 30.41 0.13 0.07 ind:fut:2p; +étudierions étudier VER 70.77 30.41 0.00 0.07 cnd:pre:1p; +étudierons étudier VER 70.77 30.41 0.16 0.14 ind:fut:1p; +étudies étudier VER 70.77 30.41 2.58 0.20 ind:pre:2s; +étudiez étudier VER 70.77 30.41 2.12 0.14 imp:pre:2p;ind:pre:2p; +étudions étudier VER 70.77 30.41 0.77 0.14 imp:pre:1p;ind:pre:1p; +étudièrent étudier VER 70.77 30.41 0.01 0.20 ind:pas:3p; +étudié étudier VER m s 70.77 30.41 17.23 6.55 par:pas; +étudiée étudier VER f s 70.77 30.41 0.39 0.61 par:pas; +étudiées étudier VER f p 70.77 30.41 0.23 0.61 par:pas; +étudiés étudier VER m p 70.77 30.41 0.25 0.74 par:pas; +étui étui NOM m s 2.54 7.97 2.37 7.09 +étuis étui NOM m p 2.54 7.97 0.17 0.88 +utérin utérin ADJ m s 0.18 0.81 0.06 0.34 +utérine utérin ADJ f s 0.18 0.81 0.09 0.34 +utérines utérin ADJ f p 0.18 0.81 0.02 0.14 +utérins utérin ADJ m p 0.18 0.81 0.01 0.00 +utérus utérus NOM m 2.88 0.68 2.88 0.68 +étés été NOM m p 67.27 125.47 5.47 3.92 +étêta étêter VER 0.00 0.34 0.00 0.07 ind:pas:3s; +étêtait étêter VER 0.00 0.34 0.00 0.07 ind:imp:3s; +étêté étêter VER m s 0.00 0.34 0.00 0.07 par:pas; +étêtés étêter VER m p 0.00 0.34 0.00 0.14 par:pas; +étuve étuve NOM f s 0.43 3.78 0.43 3.45 +étuver étuver VER 0.01 0.34 0.00 0.07 inf; +étuves étuve NOM f p 0.43 3.78 0.00 0.34 +étuveuse étuveur NOM f s 0.00 0.07 0.00 0.07 +étuvé étuver VER m s 0.01 0.34 0.01 0.27 par:pas; +étuvée étuvée NOM f s 0.05 0.14 0.05 0.14 +étymologie étymologie NOM f s 0.09 1.08 0.09 0.95 +étymologies étymologie NOM f p 0.09 1.08 0.00 0.14 +étymologique étymologique ADJ s 0.00 0.54 0.00 0.47 +étymologiquement étymologiquement ADV 0.01 0.14 0.01 0.14 +étymologiques étymologique ADJ p 0.00 0.54 0.00 0.07 +étymologiste étymologiste NOM s 0.00 0.14 0.00 0.14 +évacua évacuer VER 17.61 9.80 0.00 0.14 ind:pas:3s; +évacuai évacuer VER 17.61 9.80 0.00 0.07 ind:pas:1s; +évacuaient évacuer VER 17.61 9.80 0.02 0.20 ind:imp:3p; +évacuais évacuer VER 17.61 9.80 0.00 0.07 ind:imp:1s; +évacuait évacuer VER 17.61 9.80 0.04 0.61 ind:imp:3s; +évacuant évacuer VER 17.61 9.80 0.04 0.07 par:pre; +évacuation évacuation NOM f s 6.30 3.38 6.08 3.24 +évacuations évacuation NOM f p 6.30 3.38 0.22 0.14 +évacue évacuer VER 17.61 9.80 1.97 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évacuent évacuer VER 17.61 9.80 0.33 0.27 ind:pre:3p; +évacuer évacuer VER 17.61 9.80 9.66 4.05 inf; +évacuera évacuer VER 17.61 9.80 0.08 0.00 ind:fut:3s; +évacuerai évacuer VER 17.61 9.80 0.00 0.07 ind:fut:1s; +évacueraient évacuer VER 17.61 9.80 0.00 0.20 cnd:pre:3p; +évacuerais évacuer VER 17.61 9.80 0.02 0.00 cnd:pre:1s;cnd:pre:2s; +évacuerait évacuer VER 17.61 9.80 0.01 0.14 cnd:pre:3s; +évacuerez évacuer VER 17.61 9.80 0.04 0.00 ind:fut:2p; +évacuerions évacuer VER 17.61 9.80 0.00 0.07 cnd:pre:1p; +évacuerons évacuer VER 17.61 9.80 0.01 0.00 ind:fut:1p; +évacueront évacuer VER 17.61 9.80 0.17 0.00 ind:fut:3p; +évacuez évacuer VER 17.61 9.80 1.10 0.14 imp:pre:2p;ind:pre:2p; +évacuons évacuer VER 17.61 9.80 0.39 0.00 imp:pre:1p;ind:pre:1p; +évacuèrent évacuer VER 17.61 9.80 0.01 0.07 ind:pas:3p; +évacué évacuer VER m s 17.61 9.80 2.02 1.69 par:pas; +évacuée évacuer VER f s 17.61 9.80 0.47 0.20 par:pas; +évacuées évacuer VER f p 17.61 9.80 0.16 0.14 par:pas; +évacués évacuer VER m p 17.61 9.80 1.05 0.74 par:pas; +évada évader VER 12.80 13.38 0.02 0.07 ind:pas:3s; +évadaient évader VER 12.80 13.38 0.00 0.07 ind:imp:3p; +évadais évader VER 12.80 13.38 0.04 0.27 ind:imp:1s;ind:imp:2s; +évadait évader VER 12.80 13.38 0.02 0.74 ind:imp:3s; +évadant évader VER 12.80 13.38 0.04 0.27 par:pre; +évade évader VER 12.80 13.38 1.35 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +évadent évader VER 12.80 13.38 0.26 0.07 ind:pre:3p; +évader évader VER 12.80 13.38 5.95 6.69 inf; +évadera évader VER 12.80 13.38 0.19 0.00 ind:fut:3s; +évaderai évader VER 12.80 13.38 0.05 0.00 ind:fut:1s; +évaderaient évader VER 12.80 13.38 0.00 0.14 cnd:pre:3p; +évaderais évader VER 12.80 13.38 0.03 0.20 cnd:pre:1s;cnd:pre:2s; +évaderait évader VER 12.80 13.38 0.03 0.27 cnd:pre:3s; +évaderas évader VER 12.80 13.38 0.01 0.07 ind:fut:2s; +évaderont évader VER 12.80 13.38 0.13 0.00 ind:fut:3p; +évades évader VER 12.80 13.38 0.10 0.07 ind:pre:2s; +évadez évader VER 12.80 13.38 0.04 0.00 imp:pre:2p;ind:pre:2p; +évadèrent évader VER 12.80 13.38 0.17 0.07 ind:pas:3p; +évadé évader VER m s 12.80 13.38 3.79 2.30 par:pas; +évadée évader VER f s 12.80 13.38 0.17 0.54 par:pas; +évadées évadé NOM f p 1.76 1.08 0.02 0.07 +évadés évadé NOM m p 1.76 1.08 0.98 0.61 +évalua évaluer VER 5.75 9.73 0.00 1.08 ind:pas:3s; +évaluables évaluable ADJ p 0.00 0.07 0.00 0.07 +évaluaient évaluer VER 5.75 9.73 0.02 0.14 ind:imp:3p; +évaluais évaluer VER 5.75 9.73 0.04 0.07 ind:imp:1s; +évaluait évaluer VER 5.75 9.73 0.07 1.28 ind:imp:3s; +évaluant évaluer VER 5.75 9.73 0.09 0.74 par:pre; +évaluateur évaluateur NOM m s 0.00 0.14 0.00 0.14 +évaluation évaluation NOM f s 3.91 1.35 3.37 1.28 +évaluations évaluation NOM f p 3.91 1.35 0.54 0.07 +évalue évaluer VER 5.75 9.73 0.75 0.95 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évaluent évaluer VER 5.75 9.73 0.07 0.14 ind:pre:3p; +évaluer évaluer VER 5.75 9.73 2.75 3.92 inf; +évaluerez évaluer VER 5.75 9.73 0.00 0.07 ind:fut:2p; +évalueront évaluer VER 5.75 9.73 0.02 0.00 ind:fut:3p; +évalues évaluer VER 5.75 9.73 0.14 0.07 ind:pre:2s; +évaluez évaluer VER 5.75 9.73 0.25 0.27 imp:pre:2p;ind:pre:2p; +évaluons évaluer VER 5.75 9.73 0.23 0.00 imp:pre:1p;ind:pre:1p; +évaluât évaluer VER 5.75 9.73 0.00 0.07 sub:imp:3s; +évaluèrent évaluer VER 5.75 9.73 0.01 0.07 ind:pas:3p; +évalué évaluer VER m s 5.75 9.73 1.03 0.68 par:pas; +évaluée évaluer VER f s 5.75 9.73 0.14 0.00 par:pas; +évaluées évaluer VER f p 5.75 9.73 0.07 0.07 par:pas; +évalués évaluer VER m p 5.75 9.73 0.04 0.14 par:pas; +évanescence évanescence NOM f s 0.00 0.27 0.00 0.14 +évanescences évanescence NOM f p 0.00 0.27 0.00 0.14 +évanescent évanescent ADJ m s 0.17 1.49 0.01 0.68 +évanescente évanescent ADJ f s 0.17 1.49 0.02 0.47 +évanescentes évanescent ADJ f p 0.17 1.49 0.14 0.20 +évanescents évanescent ADJ m p 0.17 1.49 0.00 0.14 +évangile évangile NOM m s 1.34 8.24 1.17 6.69 +évangiles évangile NOM m p 1.34 8.24 0.18 1.55 +évangéliaire évangéliaire NOM m s 0.00 0.27 0.00 0.27 +évangélique évangélique ADJ s 0.22 2.23 0.20 1.69 +évangéliques évangélique ADJ p 0.22 2.23 0.02 0.54 +évangélisateur évangélisateur ADJ m s 0.01 0.07 0.01 0.00 +évangélisation évangélisation NOM f s 0.01 0.00 0.01 0.00 +évangélisatrices évangélisateur ADJ f p 0.01 0.07 0.00 0.07 +évangéliser évangéliser VER 0.26 0.47 0.11 0.34 inf; +évangéliseront évangéliser VER 0.26 0.47 0.01 0.00 ind:fut:3p; +évangélisons évangéliser VER 0.26 0.47 0.00 0.07 ind:pre:1p; +évangéliste évangéliste NOM m s 1.45 0.88 0.74 0.61 +évangélistes évangéliste NOM m p 1.45 0.88 0.70 0.27 +évangélisé évangéliser VER m s 0.26 0.47 0.00 0.07 par:pas; +évangélisés évangéliser VER m p 0.26 0.47 0.14 0.00 par:pas; +évanouît évanouir VER 18.93 24.93 0.00 0.07 sub:imp:3s; +évanoui évanouir VER m s 18.93 24.93 5.21 2.77 par:pas; +évanouie évanouir VER f s 18.93 24.93 4.79 3.04 par:pas; +évanouies évanouir VER f p 18.93 24.93 0.16 0.27 par:pas; +évanouir évanouir VER 18.93 24.93 4.40 8.24 inf; +évanouira évanouir VER 18.93 24.93 0.11 0.07 ind:fut:3s; +évanouirai évanouir VER 18.93 24.93 0.04 0.07 ind:fut:1s; +évanouirait évanouir VER 18.93 24.93 0.05 0.27 cnd:pre:3s; +évanouirent évanouir VER 18.93 24.93 0.02 0.47 ind:pas:3p; +évanouirez évanouir VER 18.93 24.93 0.14 0.00 ind:fut:2p; +évanouiront évanouir VER 18.93 24.93 0.05 0.00 ind:fut:3p; +évanouis évanouir VER m p 18.93 24.93 1.30 1.42 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +évanouissaient évanouir VER 18.93 24.93 0.02 0.95 ind:imp:3p; +évanouissais évanouir VER 18.93 24.93 0.06 0.20 ind:imp:1s;ind:imp:2s; +évanouissait évanouir VER 18.93 24.93 0.09 1.82 ind:imp:3s; +évanouissant évanouir VER 18.93 24.93 0.09 0.34 par:pre; +évanouisse évanouir VER 18.93 24.93 0.18 0.14 sub:pre:1s;sub:pre:3s; +évanouissement évanouissement NOM m s 0.83 3.31 0.62 2.91 +évanouissements évanouissement NOM m p 0.83 3.31 0.21 0.41 +évanouissent évanouir VER 18.93 24.93 0.65 1.35 ind:pre:3p; +évanouisses évanouir VER 18.93 24.93 0.07 0.00 sub:pre:2s; +évanouissez évanouir VER 18.93 24.93 0.09 0.07 imp:pre:2p;ind:pre:2p; +évanouit évanouir VER 18.93 24.93 1.41 3.38 ind:pre:3s;ind:pas:3s; +évapora évaporer VER 2.52 3.85 0.00 0.14 ind:pas:3s; +évaporaient évaporer VER 2.52 3.85 0.01 0.27 ind:imp:3p; +évaporais évaporer VER 2.52 3.85 0.01 0.07 ind:imp:1s; +évaporait évaporer VER 2.52 3.85 0.01 0.54 ind:imp:3s; +évaporateur évaporateur NOM m s 0.17 0.00 0.14 0.00 +évaporateurs évaporateur NOM m p 0.17 0.00 0.02 0.00 +évaporation évaporation NOM f s 0.38 0.88 0.38 0.88 +évapore évaporer VER 2.52 3.85 0.56 0.68 ind:pre:1s;ind:pre:3s; +évaporent évaporer VER 2.52 3.85 0.58 0.27 ind:pre:3p; +évaporer évaporer VER 2.52 3.85 0.64 0.74 inf; +évaporerait évaporer VER 2.52 3.85 0.00 0.07 cnd:pre:3s; +évaporeront évaporer VER 2.52 3.85 0.00 0.07 ind:fut:3p; +évaporé évaporer VER m s 2.52 3.85 0.54 0.68 par:pas; +évaporée évaporé ADJ f s 0.47 1.35 0.17 0.74 +évaporées évaporé ADJ f p 0.47 1.35 0.01 0.20 +évaporés évaporer VER m p 2.52 3.85 0.17 0.34 par:pas; +évasaient évaser VER 0.04 2.03 0.00 0.07 ind:imp:3p; +évasait évaser VER 0.04 2.03 0.00 0.14 ind:imp:3s; +évasant évaser VER 0.04 2.03 0.00 0.61 par:pre; +évase évaser VER 0.04 2.03 0.01 0.47 ind:pre:3s; +évasement évasement NOM m s 0.00 0.07 0.00 0.07 +évasent évaser VER 0.04 2.03 0.00 0.14 ind:pre:3p; +évaser évaser VER 0.04 2.03 0.00 0.14 inf; +évasif évasif ADJ m s 0.85 5.14 0.35 3.31 +évasifs évasif ADJ m p 0.85 5.14 0.05 0.41 +évasion évasion NOM f s 9.69 10.07 9.48 9.12 +évasions évasion NOM f p 9.69 10.07 0.21 0.95 +évasive évasif ADJ f s 0.85 5.14 0.25 0.81 +évasivement évasivement ADV 0.01 1.08 0.01 1.08 +évasives évasif ADJ f p 0.85 5.14 0.20 0.61 +évasé évasé ADJ m s 0.03 0.74 0.00 0.47 +évasée évaser VER f s 0.04 2.03 0.02 0.14 par:pas; +évasées évaser VER f p 0.04 2.03 0.00 0.14 par:pas; +évasés évasé ADJ m p 0.03 0.74 0.01 0.00 +éveil éveil NOM m s 1.65 6.42 1.64 6.22 +éveilla éveiller VER 17.28 55.27 0.16 5.61 ind:pas:3s; +éveillai éveiller VER 17.28 55.27 0.01 1.01 ind:pas:1s; +éveillaient éveiller VER 17.28 55.27 0.01 1.76 ind:imp:3p; +éveillais éveiller VER 17.28 55.27 0.24 0.95 ind:imp:1s;ind:imp:2s; +éveillait éveiller VER 17.28 55.27 0.27 6.69 ind:imp:3s; +éveillant éveiller VER 17.28 55.27 0.07 2.97 par:pre; +éveille éveiller VER 17.28 55.27 2.49 7.64 imp:pre:2s;ind:pre:1s;ind:pre:3s; +éveillent éveiller VER 17.28 55.27 0.33 1.96 ind:pre:3p; +éveiller éveiller VER 17.28 55.27 4.61 12.16 inf; +éveillera éveiller VER 17.28 55.27 0.39 0.07 ind:fut:3s; +éveillerai éveiller VER 17.28 55.27 0.13 0.34 ind:fut:1s; +éveilleraient éveiller VER 17.28 55.27 0.00 0.07 cnd:pre:3p; +éveillerait éveiller VER 17.28 55.27 0.24 0.27 cnd:pre:3s; +éveilleras éveiller VER 17.28 55.27 0.02 0.00 ind:fut:2s; +éveillerez éveiller VER 17.28 55.27 0.02 0.07 ind:fut:2p; +éveilleront éveiller VER 17.28 55.27 0.05 0.07 ind:fut:3p; +éveilles éveiller VER 17.28 55.27 0.07 0.00 ind:pre:2s; +éveilleur éveilleur NOM m s 0.00 0.14 0.00 0.14 +éveillez éveiller VER 17.28 55.27 0.32 0.27 imp:pre:2p;ind:pre:2p; +éveillions éveiller VER 17.28 55.27 0.00 0.20 ind:imp:1p; +éveillons éveiller VER 17.28 55.27 0.02 0.07 imp:pre:1p;ind:pre:1p; +éveillât éveiller VER 17.28 55.27 0.00 0.20 sub:imp:3s; +éveillèrent éveiller VER 17.28 55.27 0.14 0.88 ind:pas:3p; +éveillé éveiller VER m s 17.28 55.27 4.70 7.84 par:pas; +éveillée éveiller VER f s 17.28 55.27 2.12 2.50 par:pas; +éveillées éveillé ADJ f p 2.78 8.92 0.12 0.54 +éveillés éveiller VER m p 17.28 55.27 0.81 1.15 par:pas; +éveils éveil NOM m p 1.65 6.42 0.01 0.20 +éveinage éveinage NOM m s 0.01 0.00 0.01 0.00 +évent évent NOM m s 0.15 0.00 0.11 0.00 +éventa éventer VER 0.60 4.26 0.00 0.20 ind:pas:3s; +éventai éventer VER 0.60 4.26 0.00 0.07 ind:pas:1s; +éventaient éventer VER 0.60 4.26 0.01 0.07 ind:imp:3p; +éventail éventail NOM m s 2.96 13.99 2.82 10.88 +éventails éventail NOM m p 2.96 13.99 0.14 3.11 +éventaire éventaire NOM m s 0.25 2.16 0.25 1.22 +éventaires éventaire NOM m p 0.25 2.16 0.00 0.95 +éventait éventer VER 0.60 4.26 0.01 0.88 ind:imp:3s; +éventant éventer VER 0.60 4.26 0.00 0.54 par:pre; +évente éventer VER 0.60 4.26 0.01 0.74 ind:pre:1s;ind:pre:3s; +éventent éventer VER 0.60 4.26 0.01 0.07 ind:pre:3p; +éventer éventer VER 0.60 4.26 0.07 0.88 inf; +éventerai éventer VER 0.60 4.26 0.00 0.07 ind:fut:1s; +éventez éventer VER 0.60 4.26 0.01 0.00 imp:pre:2p; +éventons éventer VER 0.60 4.26 0.01 0.00 imp:pre:1p; +éventra éventrer VER 2.81 5.20 0.00 0.07 ind:pas:3s; +éventraient éventrer VER 2.81 5.20 0.01 0.14 ind:imp:3p; +éventrait éventrer VER 2.81 5.20 0.16 0.47 ind:imp:3s; +éventrant éventrer VER 2.81 5.20 0.01 0.41 par:pre; +éventration éventration NOM f s 0.02 0.14 0.02 0.14 +éventre éventrer VER 2.81 5.20 0.47 0.47 ind:pre:1s;ind:pre:3s; +éventrement éventrement NOM m s 0.00 0.07 0.00 0.07 +éventrent éventrer VER 2.81 5.20 0.01 0.14 ind:pre:3p; +éventrer éventrer VER 2.81 5.20 0.96 1.01 inf; +éventrerai éventrer VER 2.81 5.20 0.01 0.00 ind:fut:1s; +éventrerait éventrer VER 2.81 5.20 0.00 0.07 cnd:pre:3s; +éventrerez éventrer VER 2.81 5.20 0.01 0.00 ind:fut:2p; +éventres éventrer VER 2.81 5.20 0.00 0.07 ind:pre:2s; +éventreur éventreur NOM m s 0.50 0.95 0.36 0.68 +éventreurs éventreur NOM m p 0.50 0.95 0.14 0.27 +éventrez éventrer VER 2.81 5.20 0.14 0.00 imp:pre:2p; +éventrions éventrer VER 2.81 5.20 0.00 0.07 ind:imp:1p; +éventrât éventrer VER 2.81 5.20 0.14 0.00 sub:imp:3s; +éventré éventrer VER m s 2.81 5.20 0.58 1.69 par:pas; +éventrée éventrer VER f s 2.81 5.20 0.25 0.07 par:pas; +éventrées éventré ADJ f p 0.35 5.00 0.14 1.28 +éventrés éventrer VER m p 2.81 5.20 0.05 0.47 par:pas; +évents évent NOM m p 0.15 0.00 0.04 0.00 +éventé éventé ADJ m s 0.35 1.35 0.18 0.41 +éventualité éventualité NOM f s 2.47 6.15 2.00 5.20 +éventualités éventualité NOM f p 2.47 6.15 0.47 0.95 +éventée éventer VER f s 0.60 4.26 0.28 0.27 par:pas; +éventuel éventuel ADJ m s 4.92 13.18 1.38 3.92 +éventuelle éventuel ADJ f s 4.92 13.18 1.30 5.07 +éventuellement éventuellement ADV 2.49 5.81 2.49 5.81 +éventuelles éventuel ADJ f p 4.92 13.18 1.17 1.55 +éventuels éventuel ADJ m p 4.92 13.18 1.07 2.64 +éventées éventer VER f p 0.60 4.26 0.01 0.07 par:pas; +éventés éventé ADJ m p 0.35 1.35 0.14 0.20 +évergète évergète ADJ s 0.00 0.07 0.00 0.07 +éversé éversé ADJ m s 0.00 0.14 0.00 0.07 +éversées éversé ADJ f p 0.00 0.14 0.00 0.07 +évertua évertuer VER 0.22 2.97 0.00 0.07 ind:pas:3s; +évertuaient évertuer VER 0.22 2.97 0.01 0.41 ind:imp:3p; +évertuais évertuer VER 0.22 2.97 0.00 0.14 ind:imp:1s; +évertuait évertuer VER 0.22 2.97 0.00 1.15 ind:imp:3s; +évertuant évertuer VER 0.22 2.97 0.02 0.14 par:pre; +évertue évertuer VER 0.22 2.97 0.10 0.47 ind:pre:1s;ind:pre:3s; +évertuent évertuer VER 0.22 2.97 0.04 0.14 ind:pre:3p; +évertuer évertuer VER 0.22 2.97 0.01 0.14 inf; +évertué évertuer VER m s 0.22 2.97 0.04 0.34 par:pas; +éviction éviction NOM f s 0.05 0.41 0.05 0.41 +évida évider VER 0.25 1.22 0.01 0.07 ind:pas:3s; +évidaient évider VER 0.25 1.22 0.00 0.07 ind:imp:3p; +évide évider VER 0.25 1.22 0.01 0.20 ind:pre:1s;ind:pre:3s; +évidement évidement NOM m s 0.21 0.07 0.21 0.07 +évidemment évidemment ADV 28.23 88.11 28.23 88.11 +évidence évidence NOM f s 11.47 39.93 11.14 37.77 +évidences évidence NOM f p 11.47 39.93 0.33 2.16 +évident évident ADJ m s 32.59 33.58 28.75 20.14 +évidente évident ADJ f s 32.59 33.58 2.27 9.32 +évidentes évident ADJ f p 32.59 33.58 0.84 2.43 +évidents évident ADJ m p 32.59 33.58 0.72 1.69 +évider évider VER 0.25 1.22 0.01 0.20 inf; +évidé évidé ADJ m s 0.04 0.47 0.02 0.34 +évidée évidé ADJ f s 0.04 0.47 0.02 0.14 +évidées évider VER f p 0.25 1.22 0.01 0.07 par:pas; +évidés évider VER m p 0.25 1.22 0.00 0.07 par:pas; +évier évier NOM m s 3.87 12.16 3.81 11.35 +éviers évier NOM m p 3.87 12.16 0.05 0.81 +évince évincer VER 1.28 0.61 0.03 0.07 ind:pre:1s;ind:pre:3s; +évincer évincer VER 1.28 0.61 0.58 0.27 inf; +évincerait évincer VER 1.28 0.61 0.00 0.07 cnd:pre:3s; +évincez évincer VER 1.28 0.61 0.01 0.00 ind:pre:2p; +évincé évincer VER m s 1.28 0.61 0.45 0.14 par:pas; +évincée évincer VER f s 1.28 0.61 0.04 0.00 par:pas; +évincés évincer VER m p 1.28 0.61 0.13 0.00 par:pas; +évinçai évincer VER 1.28 0.61 0.00 0.07 ind:pas:1s; +évinçant évincer VER 1.28 0.61 0.03 0.00 par:pre; +éviscère éviscérer VER 0.50 0.14 0.04 0.07 ind:pre:1s;ind:pre:3s; +éviscèrent éviscérer VER 0.50 0.14 0.02 0.00 ind:pre:3p; +éviscérant éviscérer VER 0.50 0.14 0.03 0.00 par:pre; +éviscération éviscération NOM f s 0.22 0.00 0.22 0.00 +éviscérer éviscérer VER 0.50 0.14 0.26 0.00 inf;; +éviscérée éviscérer VER f s 0.50 0.14 0.04 0.07 par:pas; +éviscérés éviscérer VER m p 0.50 0.14 0.13 0.00 par:pas; +évita éviter VER 87.47 110.47 0.03 5.00 ind:pas:3s; +évitable évitable ADJ s 0.21 0.27 0.20 0.14 +évitables évitable ADJ f p 0.21 0.27 0.01 0.14 +évitai éviter VER 87.47 110.47 0.01 0.74 ind:pas:1s; +évitaient éviter VER 87.47 110.47 0.06 2.23 ind:imp:3p; +évitais éviter VER 87.47 110.47 0.70 2.03 ind:imp:1s;ind:imp:2s; +évitait éviter VER 87.47 110.47 0.74 7.57 ind:imp:3s; +évitant éviter VER 87.47 110.47 1.69 10.47 par:pre; +évite éviter VER 87.47 110.47 10.70 6.35 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évitement évitement NOM m s 0.18 0.00 0.18 0.00 +évitent éviter VER 87.47 110.47 1.13 1.22 ind:pre:3p; +éviter éviter VER 87.47 110.47 53.71 60.07 ind:pre:2p;inf; +évitera éviter VER 87.47 110.47 2.09 0.95 ind:fut:3s; +éviterai éviter VER 87.47 110.47 0.24 0.34 ind:fut:1s; +éviteraient éviter VER 87.47 110.47 0.00 0.41 cnd:pre:3p; +éviterais éviter VER 87.47 110.47 0.97 0.41 cnd:pre:1s;cnd:pre:2s; +éviterait éviter VER 87.47 110.47 0.77 1.62 cnd:pre:3s; +éviteras éviter VER 87.47 110.47 0.45 0.00 ind:fut:2s; +éviterez éviter VER 87.47 110.47 0.37 0.20 ind:fut:2p; +éviteriez éviter VER 87.47 110.47 0.07 0.00 cnd:pre:2p; +éviterons éviter VER 87.47 110.47 0.24 0.34 ind:fut:1p; +éviteront éviter VER 87.47 110.47 0.22 0.14 ind:fut:3p; +évites éviter VER 87.47 110.47 2.48 0.07 ind:pre:2s; +évitez éviter VER 87.47 110.47 3.31 0.68 imp:pre:2p;ind:pre:2p; +évitiez éviter VER 87.47 110.47 0.25 0.14 ind:imp:2p; +évitions éviter VER 87.47 110.47 0.12 0.47 ind:imp:1p; +évitâmes éviter VER 87.47 110.47 0.00 0.20 ind:pas:1p; +évitons éviter VER 87.47 110.47 1.30 0.27 imp:pre:1p;ind:pre:1p; +évitât éviter VER 87.47 110.47 0.00 0.41 sub:imp:3s; +évitèrent éviter VER 87.47 110.47 0.02 0.88 ind:pas:3p; +évité éviter VER m s 87.47 110.47 4.80 5.88 par:pas; +évitée éviter VER f s 87.47 110.47 0.57 0.81 par:pas; +évitées éviter VER f p 87.47 110.47 0.24 0.07 par:pas; +évités éviter VER m p 87.47 110.47 0.18 0.54 par:pas; +évocateur évocateur ADJ m s 0.15 1.49 0.13 0.74 +évocateurs évocateur ADJ m p 0.15 1.49 0.01 0.27 +évocation évocation NOM f s 0.55 8.72 0.55 7.30 +évocations évocation NOM f p 0.55 8.72 0.00 1.42 +évocatrice évocateur ADJ f s 0.15 1.49 0.01 0.20 +évocatrices évocateur ADJ f p 0.15 1.49 0.00 0.27 +évolua évoluer VER 10.60 11.69 0.05 0.27 ind:pas:3s; +évoluaient évoluer VER 10.60 11.69 0.05 1.08 ind:imp:3p; +évoluais évoluer VER 10.60 11.69 0.01 0.07 ind:imp:1s; +évoluait évoluer VER 10.60 11.69 0.29 1.62 ind:imp:3s; +évoluant évoluer VER 10.60 11.69 0.25 0.41 par:pre; +évolue évoluer VER 10.60 11.69 1.73 1.55 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évoluent évoluer VER 10.60 11.69 1.13 0.81 ind:pre:3p; +évoluer évoluer VER 10.60 11.69 2.90 3.18 inf; +évoluera évoluer VER 10.60 11.69 0.05 0.00 ind:fut:3s; +évoluerait évoluer VER 10.60 11.69 0.04 0.14 cnd:pre:3s; +évolueront évoluer VER 10.60 11.69 0.02 0.14 ind:fut:3p; +évoluez évoluer VER 10.60 11.69 0.06 0.00 ind:pre:2p; +évoluons évoluer VER 10.60 11.69 0.21 0.00 imp:pre:1p;ind:pre:1p; +évoluèrent évoluer VER 10.60 11.69 0.28 0.07 ind:pas:3p; +évolutif évolutif ADJ m s 0.47 0.20 0.08 0.07 +évolution évolution NOM f s 8.09 14.19 7.87 11.69 +évolutionniste évolutionniste ADJ f s 0.15 0.00 0.15 0.00 +évolutions évolution NOM f p 8.09 14.19 0.23 2.50 +évolutive évolutif ADJ f s 0.47 0.20 0.38 0.07 +évolutives évolutif ADJ f p 0.47 0.20 0.01 0.07 +évolué évoluer VER m s 10.60 11.69 3.29 2.09 par:pas; +évoluée évolué ADJ f s 1.69 1.28 0.73 0.20 +évoluées évolué ADJ f p 1.69 1.28 0.09 0.20 +évolués évolué ADJ m p 1.69 1.28 0.38 0.41 +évoqua évoquer VER 11.57 73.51 0.02 3.51 ind:pas:3s; +évoquai évoquer VER 11.57 73.51 0.00 0.68 ind:pas:1s; +évoquaient évoquer VER 11.57 73.51 0.01 5.27 ind:imp:3p; +évoquais évoquer VER 11.57 73.51 0.14 2.03 ind:imp:1s;ind:imp:2s; +évoquait évoquer VER 11.57 73.51 0.34 13.51 ind:imp:3s; +évoquant évoquer VER 11.57 73.51 0.44 7.84 par:pre; +évoque évoquer VER 11.57 73.51 3.68 11.89 imp:pre:2s;ind:pre:1s;ind:pre:3s; +évoquent évoquer VER 11.57 73.51 0.71 2.57 ind:pre:3p; +évoquer évoquer VER 11.57 73.51 2.15 15.88 inf; +évoquera évoquer VER 11.57 73.51 0.10 0.54 ind:fut:3s; +évoquerai évoquer VER 11.57 73.51 0.04 0.07 ind:fut:1s; +évoqueraient évoquer VER 11.57 73.51 0.00 0.07 cnd:pre:3p; +évoquerait évoquer VER 11.57 73.51 0.04 0.47 cnd:pre:3s; +évoquerez évoquer VER 11.57 73.51 0.01 0.00 ind:fut:2p; +évoquerons évoquer VER 11.57 73.51 0.02 0.07 ind:fut:1p; +évoqueront évoquer VER 11.57 73.51 0.01 0.14 ind:fut:3p; +évoques évoquer VER 11.57 73.51 0.04 0.14 ind:pre:2s; +évoquez évoquer VER 11.57 73.51 0.56 0.07 imp:pre:2p;ind:pre:2p; +évoquiez évoquer VER 11.57 73.51 0.28 0.00 ind:imp:2p; +évoquions évoquer VER 11.57 73.51 0.17 0.34 ind:imp:1p; +évoquâmes évoquer VER 11.57 73.51 0.00 0.14 ind:pas:1p; +évoquons évoquer VER 11.57 73.51 0.08 0.41 imp:pre:1p;ind:pre:1p; +évoquât évoquer VER 11.57 73.51 0.00 0.07 sub:imp:3s; +évoquèrent évoquer VER 11.57 73.51 0.10 0.61 ind:pas:3p; +évoqué évoquer VER m s 11.57 73.51 2.01 5.00 par:pas; +évoquée évoquer VER f s 11.57 73.51 0.52 0.54 par:pas; +évoquées évoquer VER f p 11.57 73.51 0.03 0.41 par:pas; +évoqués évoquer VER m p 11.57 73.51 0.06 1.28 par:pas; +évènement évènement NOM m s 6.59 0.00 3.27 0.00 +évènementielle évènementiel ADJ f s 0.01 0.00 0.01 0.00 +évènements évènement NOM m p 6.59 0.00 3.32 0.00 +évêché évêché NOM m s 0.14 3.85 0.14 3.72 +évêchés évêché NOM m p 0.14 3.85 0.00 0.14 +événement événement NOM m s 28.57 84.59 13.61 26.35 +événementiel événementiel ADJ m s 0.04 0.00 0.04 0.00 +événements événement NOM m p 28.57 84.59 14.96 58.24 +évêque évêque NOM m s 5.70 19.32 4.70 14.53 +évêques évêque NOM m p 5.70 19.32 1.00 4.80 +éwé éwé ADJ m s 0.00 0.20 0.00 0.07 +éwés éwé ADJ m p 0.00 0.20 0.00 0.14 +uxorilocal uxorilocal ADJ m s 0.00 0.07 0.00 0.07 +v v NOM m 26.54 5.00 26.54 5.00 +vîmes voir VER 4119.49 2401.76 0.66 4.73 ind:pas:1p; +vînt venir VER 2763.69 1514.53 0.30 6.62 sub:imp:3s; +vît voir VER 4119.49 2401.76 0.03 4.05 sub:imp:3s; +vôtre vôtre PRO:pos s 33.05 11.69 33.05 11.69 +vôtres vôtres PRO:pos p 12.14 4.39 12.14 4.39 +va_et_vient va_et_vient NOM m 1.30 10.61 1.30 10.61 +va_tout va_tout NOM m 0.05 0.41 0.05 0.41 +va aller VER 9992.78 2854.93 3382.55 694.59 imp:pre:2s;ind:pre:3s; +vacance vacance NOM f s 67.90 82.57 0.29 0.88 +vacances vacance NOM f p 67.90 82.57 67.60 81.69 +vacancier vacancier NOM m s 0.23 2.23 0.02 0.14 +vacanciers vacancier NOM m p 0.23 2.23 0.20 1.89 +vacancière vacancier NOM f s 0.23 2.23 0.01 0.14 +vacancières vacancière NOM f p 0.01 0.00 0.01 0.00 +vacant vacant ADJ m s 1.68 5.07 0.84 2.57 +vacante vacant ADJ f s 1.68 5.07 0.60 1.42 +vacantes vacant ADJ f p 1.68 5.07 0.01 0.41 +vacants vacant ADJ m p 1.68 5.07 0.22 0.68 +vacarme vacarme NOM m s 3.46 15.61 3.46 15.20 +vacarmes vacarme NOM m p 3.46 15.61 0.00 0.41 +vacataire vacataire NOM s 0.05 0.00 0.05 0.00 +vacation vacation NOM f s 0.05 0.54 0.05 0.14 +vacations vacation NOM f p 0.05 0.54 0.00 0.41 +vaccin vaccin NOM m s 6.54 4.93 5.01 4.12 +vaccinal vaccinal ADJ m s 0.01 0.00 0.01 0.00 +vaccinant vaccinant ADJ m s 0.00 0.07 0.00 0.07 +vaccination vaccination NOM f s 0.50 0.54 0.20 0.47 +vaccinations vaccination NOM f p 0.50 0.54 0.30 0.07 +vaccine vacciner VER 1.66 1.62 0.18 0.14 imp:pre:2s;ind:pre:3s; +vaccinent vacciner VER 1.66 1.62 0.00 0.07 ind:pre:3p; +vacciner vacciner VER 1.66 1.62 0.68 0.47 inf; +vaccins vaccin NOM m p 6.54 4.93 1.54 0.81 +vacciné vacciner VER m s 1.66 1.62 0.53 0.47 par:pas; +vaccinée vacciner VER f s 1.66 1.62 0.14 0.20 par:pas; +vaccinées vacciner VER f p 1.66 1.62 0.01 0.07 par:pas; +vaccinés vacciner VER m p 1.66 1.62 0.11 0.20 par:pas; +vachard vachard ADJ m s 0.08 1.42 0.08 0.74 +vacharde vachard ADJ f s 0.08 1.42 0.00 0.34 +vachardes vachard ADJ f p 0.08 1.42 0.00 0.14 +vachardise vachardise NOM f s 0.00 0.14 0.00 0.14 +vachards vachard ADJ m p 0.08 1.42 0.00 0.20 +vache vache NOM f s 47.71 53.45 36.24 26.08 +vachement vachement ADV 15.74 11.82 15.74 11.82 +vacher vacher NOM m s 0.91 0.81 0.77 0.61 +vacherie vacherie NOM f s 0.69 5.41 0.42 3.18 +vacheries vacherie NOM f p 0.69 5.41 0.27 2.23 +vacherin vacherin NOM m s 0.00 0.54 0.00 0.54 +vachers vacher NOM m p 0.91 0.81 0.13 0.20 +vaches vache NOM f p 47.71 53.45 11.46 27.36 +vachette vachette NOM f s 0.02 0.41 0.02 0.34 +vachettes vachette NOM f p 0.02 0.41 0.00 0.07 +vachère vachère NOM f s 0.11 0.61 0.00 0.41 +vachères vachère NOM f p 0.11 0.61 0.11 0.20 +vacilla vaciller VER 1.87 12.84 0.10 1.69 ind:pas:3s; +vacillai vaciller VER 1.87 12.84 0.00 0.07 ind:pas:1s; +vacillaient vaciller VER 1.87 12.84 0.00 0.54 ind:imp:3p; +vacillait vaciller VER 1.87 12.84 0.02 2.23 ind:imp:3s; +vacillant vaciller VER 1.87 12.84 0.27 1.28 par:pre; +vacillante vacillant ADJ f s 0.28 4.80 0.19 1.82 +vacillantes vacillant ADJ f p 0.28 4.80 0.01 0.81 +vacillants vacillant ADJ m p 0.28 4.80 0.01 0.41 +vacillations vacillation NOM f p 0.00 0.07 0.00 0.07 +vacille vaciller VER 1.87 12.84 0.93 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vacillement vacillement NOM m s 0.01 0.34 0.01 0.34 +vacillent vaciller VER 1.87 12.84 0.22 0.34 ind:pre:3p; +vaciller vaciller VER 1.87 12.84 0.29 3.45 inf; +vacillât vaciller VER 1.87 12.84 0.00 0.07 sub:imp:3s; +vacillèrent vaciller VER 1.87 12.84 0.00 0.27 ind:pas:3p; +vacillé vaciller VER m s 1.87 12.84 0.03 0.34 par:pas; +vacuité vacuité NOM f s 0.27 1.42 0.27 1.42 +vacuole vacuole NOM f s 0.01 0.00 0.01 0.00 +vacuolisation vacuolisation NOM f s 0.01 0.00 0.01 0.00 +vacuum vacuum NOM m s 0.13 0.20 0.13 0.20 +vade_retro vade_retro ADV 0.26 0.68 0.26 0.68 +vadrouillais vadrouiller VER 0.35 1.35 0.01 0.07 ind:imp:2s; +vadrouillait vadrouiller VER 0.35 1.35 0.01 0.07 ind:imp:3s; +vadrouille vadrouille NOM f s 0.95 1.89 0.80 1.69 +vadrouillent vadrouiller VER 0.35 1.35 0.00 0.07 ind:pre:3p; +vadrouiller vadrouiller VER 0.35 1.35 0.21 0.81 inf; +vadrouilles vadrouille NOM f p 0.95 1.89 0.14 0.20 +vadrouilleur vadrouilleur NOM m s 0.11 0.14 0.10 0.00 +vadrouilleurs vadrouilleur NOM m p 0.11 0.14 0.01 0.00 +vadrouilleuse vadrouilleur NOM f s 0.11 0.14 0.00 0.07 +vadrouilleuses vadrouilleur NOM f p 0.11 0.14 0.00 0.07 +vadrouillez vadrouiller VER 0.35 1.35 0.01 0.00 ind:pre:2p; +vadrouillé vadrouiller VER m s 0.35 1.35 0.06 0.07 par:pas; +vae_soli vae_soli ADV 0.00 0.07 0.00 0.07 +vae_victis vae_victis ADV 0.02 0.07 0.02 0.07 +vagabond vagabond NOM m s 5.72 6.22 3.10 3.38 +vagabonda vagabonder VER 2.42 2.64 0.00 0.07 ind:pas:3s; +vagabondage vagabondage NOM m s 0.70 2.57 0.68 1.76 +vagabondages vagabondage NOM m p 0.70 2.57 0.02 0.81 +vagabondaient vagabonder VER 2.42 2.64 0.00 0.14 ind:imp:3p; +vagabondais vagabonder VER 2.42 2.64 0.28 0.00 ind:imp:1s;ind:imp:2s; +vagabondait vagabonder VER 2.42 2.64 0.26 0.88 ind:imp:3s; +vagabondant vagabonder VER 2.42 2.64 0.04 0.00 par:pre; +vagabonde vagabonder VER 2.42 2.64 0.68 0.34 ind:pre:1s;ind:pre:3s; +vagabondent vagabonder VER 2.42 2.64 0.17 0.14 ind:pre:3p; +vagabonder vagabonder VER 2.42 2.64 0.78 0.81 inf; +vagabondes vagabonder VER 2.42 2.64 0.12 0.07 ind:pre:2s; +vagabondiez vagabonder VER 2.42 2.64 0.01 0.00 ind:imp:2p; +vagabonds vagabond NOM m p 5.72 6.22 2.30 2.57 +vagabondèrent vagabonder VER 2.42 2.64 0.00 0.07 ind:pas:3p; +vagabondé vagabonder VER m s 2.42 2.64 0.08 0.14 par:pas; +vagal vagal ADJ m s 0.41 0.00 0.41 0.00 +vagi vagir VER m s 0.15 1.76 0.00 0.14 par:pas; +vagin vagin NOM m s 4.40 2.16 4.11 2.09 +vaginal vaginal ADJ m s 1.80 0.54 0.45 0.14 +vaginale vaginal ADJ f s 1.80 0.54 0.90 0.34 +vaginales vaginal ADJ f p 1.80 0.54 0.38 0.07 +vaginaux vaginal ADJ m p 1.80 0.54 0.08 0.00 +vaginite vaginite NOM f s 0.03 0.00 0.03 0.00 +vagins vagin NOM m p 4.40 2.16 0.29 0.07 +vagir vagir VER 0.15 1.76 0.00 0.20 inf; +vagis vagir VER 0.15 1.76 0.00 0.07 ind:pre:1s; +vagissaient vagir VER 0.15 1.76 0.00 0.07 ind:imp:3p; +vagissais vagir VER 0.15 1.76 0.14 0.07 ind:imp:1s;ind:imp:2s; +vagissait vagir VER 0.15 1.76 0.00 0.81 ind:imp:3s; +vagissant vagissant ADJ m s 0.03 0.20 0.03 0.20 +vagissement vagissement NOM m s 0.70 0.95 0.43 0.34 +vagissements vagissement NOM m p 0.70 0.95 0.27 0.61 +vagissent vagir VER 0.15 1.76 0.01 0.07 ind:pre:3p; +vagissons vagir VER 0.15 1.76 0.00 0.07 ind:pre:1p; +vagit vagir VER 0.15 1.76 0.00 0.20 ind:pre:3s;ind:pas:3s; +vagotomie vagotomie NOM f s 0.01 0.00 0.01 0.00 +vagua vaguer VER 0.21 1.89 0.00 0.07 ind:pas:3s; +vaguait vaguer VER 0.21 1.89 0.00 0.27 ind:imp:3s; +vaguant vaguer VER 0.21 1.89 0.00 0.07 par:pre; +vague vague NOM s 21.59 73.58 12.80 38.18 +vaguelette vaguelette NOM f s 0.04 2.84 0.02 0.61 +vaguelettes vaguelette NOM f p 0.04 2.84 0.02 2.23 +vaguement vaguement ADV 4.72 51.76 4.72 51.76 +vaguemestre vaguemestre NOM s 0.14 0.68 0.14 0.68 +vaguent vaguer VER 0.21 1.89 0.00 0.14 ind:pre:3p; +vaguer vaguer VER 0.21 1.89 0.10 0.47 inf; +vagues vague NOM p 21.59 73.58 8.79 35.41 +vahiné vahiné NOM f s 0.13 0.54 0.09 0.27 +vahinés vahiné NOM f p 0.13 0.54 0.03 0.27 +vaillamment vaillamment ADV 0.60 2.64 0.60 2.64 +vaillance vaillance NOM f s 1.20 2.03 1.20 2.03 +vaillant vaillant ADJ m s 5.45 8.58 3.75 3.31 +vaillante vaillant ADJ f s 5.45 8.58 0.65 2.43 +vaillantes vaillant ADJ f p 5.45 8.58 0.05 0.95 +vaillants vaillant ADJ m p 5.45 8.58 1.00 1.89 +vaille valoir VER 236.07 175.74 3.04 5.34 sub:pre:1s;sub:pre:3s; +vaillent valoir VER 236.07 175.74 0.21 0.20 sub:pre:3p; +vain vain ADJ m s 19.87 57.03 16.02 40.14 +vainc vaincre VER 27.84 25.68 0.14 0.27 ind:pre:3s; +vaincra vaincre VER 27.84 25.68 0.82 0.27 ind:fut:3s; +vaincrai vaincre VER 27.84 25.68 0.42 0.20 ind:fut:1s; +vaincraient vaincre VER 27.84 25.68 0.02 0.07 cnd:pre:3p; +vaincrais vaincre VER 27.84 25.68 0.11 0.00 cnd:pre:1s;cnd:pre:2s; +vaincrait vaincre VER 27.84 25.68 0.27 0.07 cnd:pre:3s; +vaincras vaincre VER 27.84 25.68 0.19 0.00 ind:fut:2s; +vaincre vaincre VER 27.84 25.68 13.71 13.31 inf; +vaincrez vaincre VER 27.84 25.68 0.11 0.00 ind:fut:2p; +vaincrons vaincre VER 27.84 25.68 1.62 0.47 ind:fut:1p; +vaincront vaincre VER 27.84 25.68 0.09 0.14 ind:fut:3p; +vaincs vaincre VER 27.84 25.68 0.06 0.14 imp:pre:2s;ind:pre:2s; +vaincu vaincre VER m s 27.84 25.68 7.28 6.62 par:pas; +vaincue vaincre VER f s 27.84 25.68 1.10 2.23 par:pas; +vaincues vaincre VER f p 27.84 25.68 0.18 0.14 par:pas; +vaincus vaincre VER m p 27.84 25.68 1.42 1.55 par:pas; +vaine vain ADJ f s 19.87 57.03 1.04 8.18 +vainement vainement ADV 0.55 12.09 0.55 12.09 +vaines vain ADJ f p 19.87 57.03 1.57 5.20 +vainquant vaincre VER 27.84 25.68 0.01 0.07 par:pre; +vainquent vaincre VER 27.84 25.68 0.01 0.00 ind:pre:3p; +vainqueur vainqueur NOM m s 9.10 11.35 6.71 5.74 +vainqueurs vainqueur NOM m p 9.10 11.35 2.38 5.61 +vainquez vaincre VER 27.84 25.68 0.03 0.00 imp:pre:2p; +vainquions vaincre VER 27.84 25.68 0.02 0.00 ind:imp:1p; +vainquirent vaincre VER 27.84 25.68 0.01 0.00 ind:pas:3p; +vainquit vaincre VER 27.84 25.68 0.18 0.14 ind:pas:3s; +vainquons vaincre VER 27.84 25.68 0.03 0.00 ind:pre:1p; +vains vain ADJ m p 19.87 57.03 1.23 3.51 +vair vair NOM m s 0.09 0.27 0.09 0.27 +vairon vairon ADJ m s 0.00 0.54 0.00 0.20 +vairons vairon NOM m p 0.04 0.54 0.04 0.41 +vais aller VER 9992.78 2854.93 1644.99 280.00 ind:pre:1s; +vaisseau_amiral vaisseau_amiral NOM m s 0.05 0.00 0.05 0.00 +vaisseau vaisseau NOM m s 83.39 12.43 67.11 7.23 +vaisseaux vaisseau NOM m p 83.39 12.43 16.27 5.20 +vaisselier vaisselier NOM m s 0.07 0.68 0.07 0.61 +vaisseliers vaisselier NOM m p 0.07 0.68 0.00 0.07 +vaisselle vaisselle NOM f s 12.11 25.95 12.10 24.93 +vaisselles vaisselle NOM f p 12.11 25.95 0.01 1.01 +val val NOM m s 3.61 4.93 2.12 3.04 +valût valoir VER 236.07 175.74 0.00 0.61 sub:imp:3s; +valable valable ADJ s 9.10 10.41 7.46 8.65 +valablement valablement ADV 0.00 0.27 0.00 0.27 +valables valable ADJ p 9.10 10.41 1.63 1.76 +valaient valoir VER 236.07 175.74 1.03 5.27 ind:imp:3p; +valais valoir VER 236.07 175.74 0.46 0.47 ind:imp:1s;ind:imp:2s; +valait valoir VER 236.07 175.74 15.82 41.62 ind:imp:3s; +valant valoir VER 236.07 175.74 1.00 1.49 par:pre; +valaque valaque NOM s 0.01 0.00 0.01 0.00 +valdôtains valdôtain NOM m p 0.00 0.14 0.00 0.14 +valdingua valdinguer VER 0.05 1.76 0.00 0.07 ind:pas:3s; +valdingue valdinguer VER 0.05 1.76 0.00 1.01 ind:pre:3s; +valdinguer valdinguer VER 0.05 1.76 0.05 0.14 inf; +valdingues valdinguer VER 0.05 1.76 0.00 0.41 ind:pre:2s; +valdingué valdinguer VER m s 0.05 1.76 0.00 0.07 par:pas; +valdingués valdinguer VER m p 0.05 1.76 0.00 0.07 par:pas; +valence valence NOM f s 0.28 0.07 0.28 0.07 +valencien valencien NOM m s 0.00 0.14 0.00 0.07 +valencienne valencienne NOM f s 0.14 0.00 0.14 0.00 +valent valoir VER 236.07 175.74 9.79 8.58 ind:pre:3p; +valentin valentin NOM m s 0.27 0.00 0.11 0.00 +valentine valentin NOM f s 0.27 0.00 0.16 0.00 +valentinien valentinien NOM m s 0.02 0.00 0.02 0.00 +valet valet NOM m s 11.40 19.80 9.23 13.65 +valetaille valetaille NOM f s 0.01 1.01 0.01 1.01 +valeter valeter VER 0.14 0.00 0.14 0.00 inf; +valets valet NOM m p 11.40 19.80 2.17 6.15 +valeur_refuge valeur_refuge NOM f s 0.00 0.07 0.00 0.07 +valeur valeur NOM f s 45.40 52.30 32.48 40.74 +valeureuse valeureux ADJ f s 2.45 2.36 0.00 0.07 +valeureusement valeureusement ADV 0.01 0.00 0.01 0.00 +valeureuses valeureux ADJ f p 2.45 2.36 0.01 0.07 +valeureux valeureux ADJ m 2.45 2.36 2.44 2.23 +valeurs valeur NOM f p 45.40 52.30 12.91 11.55 +valez valoir VER 236.07 175.74 2.49 0.54 imp:pre:2p;ind:pre:2p; +valgus valgus ADJ m 0.02 0.00 0.02 0.00 +valida valider VER 1.23 0.54 0.00 0.07 ind:pas:3s; +validait valider VER 1.23 0.54 0.00 0.07 ind:imp:3s; +validant valider VER 1.23 0.54 0.00 0.07 par:pre; +validation validation NOM f s 0.14 0.07 0.14 0.07 +valide valide ADJ s 2.31 3.38 1.72 1.55 +valident valider VER 1.23 0.54 0.01 0.00 ind:pre:3p; +valider valider VER 1.23 0.54 0.72 0.14 inf; +valideront valider VER 1.23 0.54 0.03 0.00 ind:fut:3p; +valides valide ADJ p 2.31 3.38 0.59 1.82 +validité validité NOM f s 0.35 0.41 0.35 0.41 +validé valider VER m s 1.23 0.54 0.18 0.07 par:pas; +validée validé ADJ f s 0.07 2.57 0.04 0.00 +valiez valoir VER 236.07 175.74 0.15 0.00 ind:imp:2p; +valions valoir VER 236.07 175.74 0.16 0.14 ind:imp:1p; +valise valise NOM f s 50.99 70.34 33.21 47.43 +valises valise NOM f p 50.99 70.34 17.79 22.91 +valisé valiser VER m s 0.00 0.14 0.00 0.14 par:pas; +valkyries valkyrie NOM f p 0.02 0.00 0.02 0.00 +valleuse valleuse NOM f s 0.00 0.07 0.00 0.07 +vallon vallon NOM m s 2.50 6.89 2.11 5.74 +vallonnaient vallonner VER 0.00 0.27 0.00 0.07 ind:imp:3p; +vallonnait vallonner VER 0.00 0.27 0.00 0.07 ind:imp:3s; +vallonnement vallonnement NOM m s 0.00 2.09 0.00 0.88 +vallonnements vallonnement NOM m p 0.00 2.09 0.00 1.22 +vallonner vallonner VER 0.00 0.27 0.00 0.07 inf; +vallonné vallonné ADJ m s 0.06 0.74 0.03 0.27 +vallonnée vallonné ADJ f s 0.06 0.74 0.01 0.27 +vallonnées vallonné ADJ f p 0.06 0.74 0.01 0.14 +vallonnés vallonné ADJ m p 0.06 0.74 0.01 0.07 +vallons vallon NOM m p 2.50 6.89 0.40 1.15 +vallée vallée NOM f s 13.54 35.68 12.51 30.14 +vallées vallée NOM f p 13.54 35.68 1.03 5.54 +valoche valoche NOM f s 0.46 3.38 0.19 2.03 +valoches valoche NOM f p 0.46 3.38 0.27 1.35 +valoir valoir VER 236.07 175.74 4.62 9.32 inf; +valons valoir VER 236.07 175.74 0.78 0.41 imp:pre:1p;ind:pre:1p; +valorisait valoriser VER 0.45 0.81 0.00 0.07 ind:imp:3s; +valorisant valorisant ADJ m s 0.37 0.14 0.35 0.14 +valorisante valorisant ADJ f s 0.37 0.14 0.02 0.00 +valorisation valorisation NOM f s 0.01 0.00 0.01 0.00 +valorise valoriser VER 0.45 0.81 0.19 0.27 imp:pre:2s;ind:pre:3s; +valoriser valoriser VER 0.45 0.81 0.22 0.20 inf; +valorisez valoriser VER 0.45 0.81 0.01 0.00 ind:pre:2p; +valorisé valoriser VER m s 0.45 0.81 0.00 0.07 par:pas; +valorisée valoriser VER f s 0.45 0.81 0.02 0.07 par:pas; +valorisés valoriser VER m p 0.45 0.81 0.01 0.14 par:pas; +valpolicella valpolicella NOM m s 0.01 0.14 0.01 0.14 +vals val NOM m p 3.61 4.93 0.61 0.54 +valsa valser VER 1.93 5.14 0.00 0.20 ind:pas:3s; +valsaient valser VER 1.93 5.14 0.00 0.47 ind:imp:3p; +valsait valser VER 1.93 5.14 0.04 0.34 ind:imp:3s; +valsant valser VER 1.93 5.14 0.05 0.27 par:pre; +valse_hésitation valse_hésitation NOM f s 0.00 0.27 0.00 0.20 +valse valse NOM f s 5.55 9.32 5.45 7.91 +valsent valser VER 1.93 5.14 0.11 0.20 ind:pre:3p; +valser valser VER 1.93 5.14 1.33 2.43 inf; +valsera valser VER 1.93 5.14 0.01 0.00 ind:fut:3s; +valse_hésitation valse_hésitation NOM f p 0.00 0.27 0.00 0.07 +valses valse NOM f p 5.55 9.32 0.11 1.42 +valseur valseur NOM m s 0.12 1.35 0.01 1.08 +valseurs valseur NOM m p 0.12 1.35 0.00 0.14 +valseuse valseur NOM f s 0.12 1.35 0.11 0.00 +valseuses valseuse NOM f p 0.14 0.00 0.14 0.00 +valsez valser VER 1.93 5.14 0.04 0.07 ind:pre:2p; +valsons valser VER 1.93 5.14 0.02 0.00 imp:pre:1p;ind:pre:1p; +valsèrent valser VER 1.93 5.14 0.01 0.07 ind:pas:3p; +valsé valser VER m s 1.93 5.14 0.20 0.61 par:pas; +valu valoir VER m s 236.07 175.74 3.82 9.39 par:pas; +value valoir VER f s 236.07 175.74 0.12 0.07 par:pas; +values valoir VER f p 236.07 175.74 0.00 0.14 par:pas; +valurent valoir VER 236.07 175.74 0.03 0.81 ind:pas:3p; +valériane valériane NOM f s 0.30 0.14 0.30 0.14 +valut valoir VER 236.07 175.74 0.56 3.45 ind:pas:3s; +valétudinaire valétudinaire ADJ m s 0.01 0.14 0.01 0.14 +valve valve NOM f s 2.63 1.01 1.60 0.47 +valves valve NOM f p 2.63 1.01 1.03 0.54 +valvulaires valvulaire ADJ p 0.00 0.07 0.00 0.07 +valvule valvule NOM f s 0.22 0.07 0.22 0.07 +vamp_club vamp_club NOM f s 0.01 0.00 0.01 0.00 +vamp vamp NOM f s 0.48 1.42 0.33 1.22 +vampe vamper VER 0.24 0.07 0.01 0.00 imp:pre:2s; +vamper vamper VER 0.24 0.07 0.20 0.07 inf; +vampire vampire NOM m s 27.27 3.24 15.29 1.82 +vampires vampire NOM m p 27.27 3.24 11.98 1.42 +vampirique vampirique ADJ s 0.21 0.20 0.21 0.20 +vampirisant vampiriser VER 0.10 0.20 0.01 0.00 par:pre; +vampirise vampiriser VER 0.10 0.20 0.04 0.07 ind:pre:1s;ind:pre:3s; +vampirisme vampirisme NOM m s 0.32 0.14 0.32 0.14 +vampirisé vampiriser VER m s 0.10 0.20 0.00 0.07 par:pas; +vampirisée vampiriser VER f s 0.10 0.20 0.05 0.00 par:pas; +vampirisées vampiriser VER f p 0.10 0.20 0.00 0.07 par:pas; +vamps vamp NOM f p 0.48 1.42 0.16 0.20 +vampé vamper VER m s 0.24 0.07 0.03 0.00 par:pas; +van van NOM m s 8.90 3.24 8.78 3.24 +vanadium vanadium NOM m s 0.00 0.74 0.00 0.74 +vandale vandale NOM s 1.14 0.88 0.33 0.47 +vandales vandale NOM p 1.14 0.88 0.81 0.41 +vandalisent vandaliser VER 0.33 0.14 0.01 0.07 ind:pre:3p; +vandaliser vandaliser VER 0.33 0.14 0.09 0.07 inf; +vandalisme vandalisme NOM m s 1.53 1.55 1.53 1.55 +vandalisé vandaliser VER m s 0.33 0.14 0.23 0.00 par:pas; +vandoises vandoise NOM f p 0.00 0.14 0.00 0.14 +vanille vanille NOM f s 2.50 3.38 2.50 3.38 +vanillé vanillé ADJ m s 0.17 0.20 0.17 0.07 +vanillée vanillé ADJ f s 0.17 0.20 0.00 0.07 +vanillées vanillé ADJ f p 0.17 0.20 0.00 0.07 +vaniteuse vaniteux ADJ f s 2.23 2.50 0.49 0.68 +vaniteusement vaniteusement ADV 0.00 0.07 0.00 0.07 +vaniteuses vaniteux ADJ f p 2.23 2.50 0.14 0.07 +vaniteux vaniteux ADJ m 2.23 2.50 1.60 1.76 +vanité vanité NOM f s 5.75 17.97 5.16 16.49 +vanités vanité NOM f p 5.75 17.97 0.59 1.49 +vanity_case vanity_case NOM m s 0.11 0.14 0.11 0.14 +vanna vanner VER 1.32 4.39 0.04 1.96 ind:pas:3s; +vannais vanner VER 1.32 4.39 0.00 0.07 ind:imp:1s; +vannait vanner VER 1.32 4.39 0.00 0.07 ind:imp:3s; +vanne vanne NOM f s 2.73 7.36 0.94 3.11 +vanneau vanneau NOM m s 0.00 0.74 0.00 0.34 +vanneaux vanneau NOM m p 0.00 0.74 0.00 0.41 +vannent vanner VER 1.32 4.39 0.02 0.00 ind:pre:3p; +vanner vanner VER 1.32 4.39 0.09 0.54 inf; +vannerie vannerie NOM f s 0.14 0.74 0.14 0.68 +vanneries vannerie NOM f p 0.14 0.74 0.00 0.07 +vannes vanne NOM f p 2.73 7.36 1.79 4.26 +vanneur vanneur NOM m s 0.00 0.20 0.00 0.14 +vanneurs vanneur NOM m p 0.00 0.20 0.00 0.07 +vannier vannier NOM m s 0.00 0.27 0.00 0.20 +vanniers vannier NOM m p 0.00 0.27 0.00 0.07 +vannières vannière NOM f p 0.00 0.07 0.00 0.07 +vannèrent vanner VER 1.32 4.39 0.00 0.07 ind:pas:3p; +vanné vanner VER m s 1.32 4.39 0.56 0.34 par:pas; +vannée vanner VER f s 1.32 4.39 0.36 0.27 par:pas; +vannés vanner VER m p 1.32 4.39 0.16 0.00 par:pas; +vans van NOM m p 8.90 3.24 0.13 0.00 +vanta vanter VER 10.73 23.24 0.03 0.68 ind:pas:3s; +vantai vanter VER 10.73 23.24 0.00 0.14 ind:pas:1s; +vantaient vanter VER 10.73 23.24 0.05 1.49 ind:imp:3p; +vantail vantail NOM m s 0.00 3.85 0.00 2.23 +vantais vanter VER 10.73 23.24 0.25 0.41 ind:imp:1s;ind:imp:2s; +vantait vanter VER 10.73 23.24 0.49 4.46 ind:imp:3s; +vantant vanter VER 10.73 23.24 0.36 1.42 par:pre; +vantard vantard NOM m s 1.60 0.14 1.06 0.07 +vantarde vantard ADJ f s 0.34 0.74 0.01 0.00 +vantardes vantard ADJ f p 0.34 0.74 0.01 0.07 +vantardise vantardise NOM f s 0.19 1.69 0.16 0.74 +vantardises vantardise NOM f p 0.19 1.69 0.03 0.95 +vantards vantard NOM m p 1.60 0.14 0.53 0.07 +vantaux vantail NOM m p 0.00 3.85 0.00 1.62 +vante vanter VER 10.73 23.24 1.86 2.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vantent vanter VER 10.73 23.24 0.39 1.15 ind:pre:3p; +vanter vanter VER 10.73 23.24 4.80 7.50 inf; +vantera vanter VER 10.73 23.24 0.01 0.20 ind:fut:3s; +vanterai vanter VER 10.73 23.24 0.16 0.07 ind:fut:1s; +vanterais vanter VER 10.73 23.24 0.07 0.07 cnd:pre:1s;cnd:pre:2s; +vanterait vanter VER 10.73 23.24 0.01 0.00 cnd:pre:3s; +vanteras vanter VER 10.73 23.24 0.14 0.00 ind:fut:2s; +vanterie vanterie NOM f s 0.01 0.20 0.00 0.07 +vanteries vanterie NOM f p 0.01 0.20 0.01 0.14 +vanteront vanter VER 10.73 23.24 0.02 0.07 ind:fut:3p; +vantes vanter VER 10.73 23.24 0.46 0.20 ind:pre:2s; +vantez vanter VER 10.73 23.24 0.16 0.14 imp:pre:2p;ind:pre:2p; +vantiez vanter VER 10.73 23.24 0.01 0.00 ind:imp:2p; +vantions vanter VER 10.73 23.24 0.10 0.00 ind:imp:1p; +vantons vanter VER 10.73 23.24 0.03 0.00 imp:pre:1p;ind:pre:1p; +vantât vanter VER 10.73 23.24 0.00 0.07 sub:imp:3s; +vanté vanter VER m s 10.73 23.24 1.12 1.89 par:pas; +vantée vanter VER f s 10.73 23.24 0.22 0.34 par:pas; +vantées vanter VER f p 10.73 23.24 0.00 0.20 par:pas; +vantés vanter VER m p 10.73 23.24 0.01 0.20 par:pas; +vape vape NOM f s 1.26 3.04 0.00 2.30 +vapes vape NOM f p 1.26 3.04 1.26 0.74 +vapeur vapeur NOM s 8.02 26.76 6.17 19.12 +vapeurs vapeur NOM p 8.02 26.76 1.85 7.64 +vaporetto vaporetto NOM m s 0.32 0.41 0.32 0.41 +vaporeuse vaporeux ADJ f s 0.21 4.53 0.17 1.76 +vaporeuses vaporeux ADJ f p 0.21 4.53 0.00 0.47 +vaporeux vaporeux ADJ m 0.21 4.53 0.04 2.30 +vaporisa vaporiser VER 1.47 1.82 0.00 0.34 ind:pas:3s; +vaporisais vaporiser VER 1.47 1.82 0.01 0.00 ind:imp:1s; +vaporisait vaporiser VER 1.47 1.82 0.14 0.41 ind:imp:3s; +vaporisant vaporiser VER 1.47 1.82 0.00 0.07 par:pre; +vaporisateur vaporisateur NOM m s 0.30 1.08 0.28 0.74 +vaporisateurs vaporisateur NOM m p 0.30 1.08 0.01 0.34 +vaporisation vaporisation NOM f s 0.09 0.14 0.09 0.07 +vaporisations vaporisation NOM f p 0.09 0.14 0.00 0.07 +vaporise vaporiser VER 1.47 1.82 0.20 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vaporiser vaporiser VER 1.47 1.82 0.51 0.34 inf; +vaporiserait vaporiser VER 1.47 1.82 0.03 0.07 cnd:pre:3s; +vaporises vaporiser VER 1.47 1.82 0.02 0.00 ind:pre:2s; +vaporisez vaporiser VER 1.47 1.82 0.08 0.00 imp:pre:2p;ind:pre:2p; +vaporisé vaporiser VER m s 1.47 1.82 0.42 0.00 par:pas; +vaporisée vaporiser VER f s 1.47 1.82 0.07 0.41 par:pas; +vaps vaps NOM f p 0.24 0.00 0.24 0.00 +vaquai vaquer VER 0.67 3.18 0.00 0.07 ind:pas:1s; +vaquaient vaquer VER 0.67 3.18 0.04 0.27 ind:imp:3p; +vaquais vaquer VER 0.67 3.18 0.03 0.07 ind:imp:1s; +vaquait vaquer VER 0.67 3.18 0.01 1.28 ind:imp:3s; +vaquant vaquer VER 0.67 3.18 0.02 0.27 par:pre; +vaque vaquer VER 0.67 3.18 0.07 0.27 ind:pre:1s;ind:pre:3s; +vaquent vaquer VER 0.67 3.18 0.00 0.14 ind:pre:3p; +vaquer vaquer VER 0.67 3.18 0.37 0.61 inf; +vaquerait vaquer VER 0.67 3.18 0.00 0.07 cnd:pre:3s; +vaquero vaquero NOM m s 0.11 0.07 0.06 0.07 +vaqueros vaquero NOM m p 0.11 0.07 0.05 0.00 +vaquions vaquer VER 0.67 3.18 0.00 0.07 ind:imp:1p; +vaquons vaquer VER 0.67 3.18 0.10 0.07 imp:pre:1p;ind:pre:1p; +vaqué vaquer VER m s 0.67 3.18 0.02 0.00 par:pas; +var var NOM m s 0.01 0.00 0.01 0.00 +vara vara ADJ f s 0.00 0.07 0.00 0.07 +varan varan NOM m s 0.02 0.07 0.01 0.07 +varans varan NOM m p 0.02 0.07 0.01 0.00 +varappe varappe NOM f s 0.06 0.07 0.06 0.07 +varapper varapper VER 0.00 0.07 0.00 0.07 inf; +varappeur varappeur NOM m s 0.00 0.07 0.00 0.07 +varech varech NOM m s 0.25 2.70 0.25 2.43 +varechs varech NOM m p 0.25 2.70 0.00 0.27 +varenne varenne NOM f s 0.00 4.53 0.00 4.12 +varennes varenne NOM f p 0.00 4.53 0.00 0.41 +vareuse vareuse NOM f s 0.81 8.24 0.56 6.82 +vareuses vareuse NOM f p 0.81 8.24 0.25 1.42 +varia varia NOM m p 0.02 0.07 0.02 0.07 +variabilité variabilité NOM f s 0.05 0.14 0.05 0.14 +variable variable ADJ s 0.98 2.64 0.81 1.76 +variables variable NOM f p 1.05 0.14 0.74 0.00 +variaient varier VER 2.69 8.92 0.01 0.61 ind:imp:3p; +variais varier VER 2.69 8.92 0.00 0.14 ind:imp:1s; +variait varier VER 2.69 8.92 0.03 1.22 ind:imp:3s; +variance variance NOM f s 0.03 0.00 0.03 0.00 +variant varier VER 2.69 8.92 0.03 0.81 par:pre; +variante variante NOM f s 0.95 3.24 0.77 0.81 +variantes variante NOM f p 0.95 3.24 0.18 2.43 +variateur variateur NOM m s 0.02 0.14 0.02 0.14 +variation variation NOM f s 1.83 6.28 0.50 1.08 +variations variation NOM f p 1.83 6.28 1.33 5.20 +varice varice NOM f s 0.67 1.76 0.01 0.00 +varicelle varicelle NOM f s 1.03 0.74 1.03 0.74 +varices varice NOM f p 0.67 1.76 0.66 1.76 +varie varier VER 2.69 8.92 0.91 1.08 imp:pre:2s;ind:pre:1s;ind:pre:3s; +varient varier VER 2.69 8.92 0.46 0.61 ind:pre:3p; +varier varier VER 2.69 8.92 0.66 1.76 inf; +varierai varier VER 2.69 8.92 0.01 0.07 ind:fut:1s; +varieraient varier VER 2.69 8.92 0.00 0.07 cnd:pre:3p; +varierait varier VER 2.69 8.92 0.00 0.14 cnd:pre:3s; +varieront varier VER 2.69 8.92 0.00 0.07 ind:fut:3p; +variole variole NOM f s 2.42 0.34 2.42 0.34 +variorum variorum NOM m s 0.00 0.07 0.00 0.07 +variât varier VER 2.69 8.92 0.00 0.07 sub:imp:3s; +variqueuses variqueux ADJ f p 0.00 0.47 0.00 0.14 +variqueux variqueux ADJ m 0.00 0.47 0.00 0.34 +varié varié ADJ m s 1.53 5.74 0.47 0.61 +variée varier VER f s 2.69 8.92 0.23 0.41 par:pas; +variées varié ADJ f p 1.53 5.74 0.43 1.69 +variés varié ADJ m p 1.53 5.74 0.41 2.70 +variétal variétal ADJ m s 0.01 0.00 0.01 0.00 +variété variété NOM f s 3.42 9.73 2.17 6.42 +variétés variété NOM f p 3.42 9.73 1.25 3.31 +varlet varlet NOM m s 0.01 0.07 0.01 0.07 +varlope varlope NOM f s 0.00 0.41 0.00 0.41 +varon varon NOM m s 0.12 0.00 0.12 0.00 +varsovien varsovien NOM m s 0.10 0.00 0.10 0.00 +vas aller VER 9992.78 2854.93 1009.22 136.35 imp:pre:2s;ind:pre:2s; +vasa vaser VER 0.02 0.41 0.02 0.20 ind:pas:3s; +vasais vasais NOM m 0.00 0.20 0.00 0.20 +vasait vaser VER 0.02 0.41 0.00 0.07 ind:imp:3s; +vasards vasard ADJ m p 0.00 0.14 0.00 0.14 +vasculaire vasculaire ADJ s 1.26 0.27 1.01 0.07 +vasculaires vasculaire ADJ m p 1.26 0.27 0.25 0.20 +vascularisé vascularisé ADJ m s 0.02 0.00 0.02 0.00 +vasculo_nerveux vasculo_nerveux NOM m 0.01 0.00 0.01 0.00 +vase vase NOM s 10.74 32.97 9.83 26.76 +vasectomie vasectomie NOM f s 0.38 0.00 0.38 0.00 +vaseline vaseline NOM f s 0.94 1.28 0.94 1.28 +vaseliner vaseliner VER 0.02 0.07 0.01 0.00 inf; +vaselinez vaseliner VER 0.02 0.07 0.01 0.00 imp:pre:2p; +vaseliné vaseliner VER m s 0.02 0.07 0.00 0.07 par:pas; +vaser vaser VER 0.02 0.41 0.00 0.14 inf; +vases vase NOM p 10.74 32.97 0.91 6.22 +vaseuse vaseux ADJ f s 0.43 2.43 0.14 0.54 +vaseuses vaseux ADJ f p 0.43 2.43 0.03 0.20 +vaseux vaseux ADJ m 0.43 2.43 0.25 1.69 +vasistas vasistas NOM m 0.08 3.85 0.08 3.85 +vasière vasière NOM f s 0.00 0.88 0.00 0.07 +vasières vasière NOM f p 0.00 0.88 0.00 0.81 +vasoconstricteur vasoconstricteur ADJ m s 0.14 0.00 0.14 0.00 +vasoconstriction vasoconstriction NOM f s 0.03 0.00 0.03 0.00 +vasodilatateur vasodilatateur ADJ m s 0.01 0.00 0.01 0.00 +vasodilatation vasodilatation NOM f s 0.01 0.00 0.01 0.00 +vasomoteurs vasomoteur ADJ m p 0.02 0.00 0.02 0.00 +vasopressine vasopressine NOM f s 0.01 0.00 0.01 0.00 +vasouillard vasouillard ADJ m s 0.00 0.34 0.00 0.27 +vasouillarde vasouillard ADJ f s 0.00 0.34 0.00 0.07 +vasouille vasouiller VER 0.12 0.20 0.01 0.07 ind:pre:3s; +vasouiller vasouiller VER 0.12 0.20 0.10 0.14 inf; +vasouilles vasouiller VER 0.12 0.20 0.01 0.00 ind:pre:2s; +vasque vasque NOM f s 0.25 3.99 0.01 2.91 +vasques vasque NOM f p 0.25 3.99 0.24 1.08 +vassal vassal NOM m s 2.24 4.39 1.77 1.49 +vassale vassal NOM f s 2.24 4.39 0.00 0.14 +vassalité vassalité NOM f s 0.00 0.20 0.00 0.20 +vassaux vassal NOM m p 2.24 4.39 0.47 2.77 +vaste vaste ADJ s 10.32 71.76 8.44 55.61 +vastes vaste ADJ p 10.32 71.76 1.88 16.15 +vastité vastité NOM f s 0.00 0.07 0.00 0.07 +vastitude vastitude NOM f s 0.00 0.27 0.00 0.20 +vastitudes vastitude NOM f p 0.00 0.27 0.00 0.07 +vater vater NOM m s 0.00 0.07 0.00 0.07 +vaticane vaticane ADJ f s 0.00 0.20 0.00 0.20 +vaticanesque vaticanesque ADJ s 0.00 0.07 0.00 0.07 +vaticinait vaticiner VER 0.00 0.61 0.00 0.14 ind:imp:3s; +vaticinant vaticiner VER 0.00 0.61 0.00 0.27 par:pre; +vaticination vaticination NOM f s 0.00 0.47 0.00 0.07 +vaticinations vaticination NOM f p 0.00 0.47 0.00 0.41 +vaticine vaticiner VER 0.00 0.61 0.00 0.07 ind:pre:3s; +vaticiner vaticiner VER 0.00 0.61 0.00 0.14 inf; +vatères vatère NOM m p 0.00 0.14 0.00 0.14 +vau_l_eau vau_l_eau NOM m s 0.00 0.14 0.00 0.14 +vau vau NOM m s 0.01 0.20 0.01 0.20 +vauclusien vauclusien ADJ m s 0.14 0.07 0.14 0.00 +vauclusiennes vauclusien ADJ f p 0.14 0.07 0.00 0.07 +vaudeville vaudeville NOM m s 0.41 1.82 0.35 1.55 +vaudevilles vaudeville NOM m p 0.41 1.82 0.05 0.27 +vaudevillesque vaudevillesque ADJ s 0.03 0.14 0.03 0.07 +vaudevillesques vaudevillesque ADJ p 0.03 0.14 0.00 0.07 +vaudois vaudois ADJ m 0.00 0.74 0.00 0.68 +vaudoise vaudois ADJ f s 0.00 0.74 0.00 0.07 +vaudou vaudou NOM m s 2.93 0.41 2.92 0.41 +vaudoue vaudou ADJ f s 1.48 0.68 0.03 0.07 +vaudoues vaudou ADJ f p 1.48 0.68 0.00 0.14 +vaudouisme vaudouisme NOM m s 0.02 0.00 0.02 0.00 +vaudous vaudou ADJ m p 1.48 0.68 0.12 0.07 +vaudra valoir VER 236.07 175.74 4.34 3.51 ind:fut:3s; +vaudrai valoir VER 236.07 175.74 0.07 0.07 ind:fut:1s; +vaudraient valoir VER 236.07 175.74 0.29 0.14 cnd:pre:3p; +vaudrais valoir VER 236.07 175.74 0.07 0.14 cnd:pre:1s;cnd:pre:2s; +vaudrait valoir VER 236.07 175.74 14.23 11.08 cnd:pre:3s; +vaudras valoir VER 236.07 175.74 0.21 0.07 ind:fut:2s; +vaudrez valoir VER 236.07 175.74 0.03 0.00 ind:fut:2p; +vaudrions valoir VER 236.07 175.74 0.02 0.00 cnd:pre:1p; +vaudrons valoir VER 236.07 175.74 0.00 0.07 ind:fut:1p; +vaudront valoir VER 236.07 175.74 0.42 0.47 ind:fut:3p; +vaurien vaurien NOM m s 10.22 2.36 7.06 1.89 +vaurienne vaurien NOM f s 10.22 2.36 0.21 0.07 +vauriens vaurien NOM m p 10.22 2.36 2.94 0.41 +vaut valoir VER 236.07 175.74 161.53 69.39 ind:pre:3s; +vautour vautour NOM m s 5.89 4.39 2.41 2.57 +vautours vautour NOM m p 5.89 4.39 3.48 1.82 +vautra vautrer VER 2.73 10.27 0.00 0.07 ind:pas:3s; +vautraient vautrer VER 2.73 10.27 0.00 0.27 ind:imp:3p; +vautrais vautrer VER 2.73 10.27 0.02 0.41 ind:imp:1s; +vautrait vautrer VER 2.73 10.27 0.03 0.54 ind:imp:3s; +vautrant vautrer VER 2.73 10.27 0.12 0.14 par:pre; +vautre vautrer VER 2.73 10.27 0.31 1.15 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vautrent vautrer VER 2.73 10.27 0.04 0.14 ind:pre:3p; +vautrer vautrer VER 2.73 10.27 1.07 1.62 inf; +vautreraient vautrer VER 2.73 10.27 0.00 0.14 cnd:pre:3p; +vautrerais vautrer VER 2.73 10.27 0.00 0.07 cnd:pre:1s; +vautrez vautrer VER 2.73 10.27 0.16 0.07 imp:pre:2p;ind:pre:2p; +vautrèrent vautrer VER 2.73 10.27 0.00 0.07 ind:pas:3p; +vautré vautrer VER m s 2.73 10.27 0.60 2.16 par:pas; +vautrée vautrer VER f s 2.73 10.27 0.22 1.28 par:pas; +vautrées vautrer VER f p 2.73 10.27 0.01 0.20 par:pas; +vautrés vautrer VER m p 2.73 10.27 0.16 1.96 par:pas; +vauvert vauvert NOM s 0.00 0.14 0.00 0.14 +vaux valoir VER 236.07 175.74 10.79 2.97 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vauxhall vauxhall NOM m s 0.06 0.07 0.06 0.07 +veau veau NOM m s 8.66 16.96 7.69 13.92 +veaux veau NOM m p 8.66 16.96 0.97 3.04 +vecteur vecteur NOM m s 0.92 0.27 0.62 0.20 +vecteurs vecteur NOM m p 0.92 0.27 0.30 0.07 +vectoriel vectoriel ADJ m s 0.24 0.07 0.03 0.00 +vectorielle vectoriel ADJ f s 0.24 0.07 0.21 0.07 +vedettariat vedettariat NOM m s 0.07 0.14 0.07 0.14 +vedette vedette NOM f s 13.55 20.88 11.18 13.92 +vedettes vedette NOM f p 13.55 20.88 2.37 6.96 +veilla veiller VER 38.41 41.62 0.01 0.54 ind:pas:3s; +veillai veiller VER 38.41 41.62 0.10 0.07 ind:pas:1s; +veillaient veiller VER 38.41 41.62 0.18 2.70 ind:imp:3p; +veillais veiller VER 38.41 41.62 0.48 0.54 ind:imp:1s;ind:imp:2s; +veillait veiller VER 38.41 41.62 0.79 8.92 ind:imp:3s; +veillant veiller VER 38.41 41.62 0.25 1.76 par:pre; +veille veille NOM f s 17.07 89.05 16.84 87.36 +veillent veiller VER 38.41 41.62 1.14 1.96 ind:pre:3p; +veiller veiller VER 38.41 41.62 10.18 12.91 inf; +veillera veiller VER 38.41 41.62 1.66 0.61 ind:fut:3s; +veillerai veiller VER 38.41 41.62 4.61 0.34 ind:fut:1s; +veillerais veiller VER 38.41 41.62 0.23 0.07 cnd:pre:1s;cnd:pre:2s; +veillerait veiller VER 38.41 41.62 0.23 0.34 cnd:pre:3s; +veilleras veiller VER 38.41 41.62 0.27 0.07 ind:fut:2s; +veillerez veiller VER 38.41 41.62 0.27 0.07 ind:fut:2p; +veillerons veiller VER 38.41 41.62 0.30 0.14 ind:fut:1p; +veilleront veiller VER 38.41 41.62 0.23 0.20 ind:fut:3p; +veilles veiller VER 38.41 41.62 1.19 0.27 ind:pre:2s;sub:pre:2s; +veilleur veilleur NOM m s 3.68 12.57 2.10 3.31 +veilleurs veilleur NOM m p 3.68 12.57 0.05 0.68 +veilleuse veilleur NOM f s 3.68 12.57 1.53 6.89 +veilleuses veilleuse NOM f p 0.17 0.00 0.17 0.00 +veillez veiller VER 38.41 41.62 5.11 0.68 imp:pre:2p;ind:pre:2p; +veillions veiller VER 38.41 41.62 0.02 0.07 ind:imp:1p; +veillâmes veiller VER 38.41 41.62 0.00 0.07 ind:pas:1p; +veillons veiller VER 38.41 41.62 0.10 0.14 imp:pre:1p;ind:pre:1p; +veillât veiller VER 38.41 41.62 0.00 0.07 sub:imp:3s; +veillèrent veiller VER 38.41 41.62 0.01 0.07 ind:pas:3p; +veillé veiller VER m s 38.41 41.62 2.71 3.18 par:pas; +veillée veillée NOM f s 2.56 8.31 2.34 4.73 +veillées veillée NOM f p 2.56 8.31 0.22 3.58 +veillés veiller VER m p 38.41 41.62 0.00 0.20 par:pas; +veinaient veiner VER 0.01 1.55 0.00 0.14 ind:imp:3p; +veinait veiner VER 0.01 1.55 0.01 0.00 ind:imp:3s; +veinard veinard NOM m s 5.79 1.89 4.33 0.88 +veinarde veinard NOM f s 5.79 1.89 0.90 0.14 +veinardes veinard ADJ f p 1.75 1.22 0.04 0.00 +veinards veinard NOM m p 5.79 1.89 0.53 0.88 +veine veine NOM f s 19.74 35.41 10.75 15.27 +veinent veiner VER 0.01 1.55 0.00 0.07 ind:pre:3p; +veines veine NOM f p 19.74 35.41 8.99 20.14 +veineuse veineux ADJ f s 0.20 0.27 0.06 0.20 +veineux veineux ADJ m s 0.20 0.27 0.14 0.07 +veiné veiné ADJ m s 0.11 1.01 0.00 0.88 +veinée veiné ADJ f s 0.11 1.01 0.11 0.00 +veinées veiner VER f p 0.01 1.55 0.00 0.27 par:pas; +veinule veinule NOM f s 0.00 1.15 0.00 0.07 +veinules veinule NOM f p 0.00 1.15 0.00 1.08 +veinulé veinulé ADJ m s 0.00 0.14 0.00 0.14 +veinures veinure NOM f p 0.00 0.14 0.00 0.14 +veinés veiner VER m p 0.01 1.55 0.00 0.14 par:pas; +velcro velcro NOM m s 0.39 0.00 0.39 0.00 +veld veld NOM m s 0.01 0.00 0.01 0.00 +veldt veldt NOM m s 0.04 0.00 0.04 0.00 +vellave vellave ADJ f s 0.00 0.07 0.00 0.07 +velléitaire velléitaire ADJ s 0.04 0.95 0.04 0.95 +velléité velléité NOM f s 0.20 3.92 0.10 1.55 +velléités velléité NOM f p 0.20 3.92 0.10 2.36 +velours velours NOM m 4.31 35.88 4.31 35.88 +veloutaient velouter VER 0.03 1.08 0.00 0.07 ind:imp:3p; +veloutait velouter VER 0.03 1.08 0.00 0.07 ind:imp:3s; +veloute velouter VER 0.03 1.08 0.00 0.14 ind:pre:3s; +veloutent velouter VER 0.03 1.08 0.00 0.07 ind:pre:3p; +velouter velouter VER 0.03 1.08 0.00 0.07 inf; +velouteuse velouteux ADJ f s 0.01 0.07 0.01 0.00 +velouteux velouteux ADJ m s 0.01 0.07 0.00 0.07 +velouté velouté ADJ m s 0.36 4.93 0.30 2.36 +veloutée velouté ADJ f s 0.36 4.93 0.05 1.15 +veloutées velouter VER f p 0.03 1.08 0.01 0.20 par:pas; +veloutés velouté NOM m p 0.27 1.76 0.14 0.07 +velte velte NOM f s 0.01 0.00 0.01 0.00 +velu velu ADJ m s 1.03 7.43 0.47 2.43 +velue velu ADJ f s 1.03 7.43 0.25 2.50 +velues velu ADJ f p 1.03 7.43 0.22 1.76 +velum velum NOM m s 0.03 0.00 0.03 0.00 +velus velu ADJ m p 1.03 7.43 0.10 0.74 +velux velux NOM m s 0.01 0.00 0.01 0.00 +velvet velvet NOM m s 0.15 0.27 0.15 0.27 +venaient venir VER 2763.69 1514.53 9.96 73.65 ind:imp:3p; +venais venir VER 2763.69 1514.53 23.32 29.86 ind:imp:1s;ind:imp:2s; +venaison venaison NOM f s 0.08 0.54 0.08 0.41 +venaisons venaison NOM f p 0.08 0.54 0.00 0.14 +venait venir VER 2763.69 1514.53 50.25 271.89 ind:imp:3s; +venant venir VER 2763.69 1514.53 17.66 32.36 par:pre; +vend vendre VER 206.95 92.64 22.75 8.65 ind:pre:3s; +vendît vendre VER 206.95 92.64 0.00 0.07 sub:imp:3s; +vendômois vendômois ADJ m 0.00 0.07 0.00 0.07 +vendable vendable ADJ s 0.04 0.14 0.02 0.07 +vendables vendable ADJ p 0.04 0.14 0.02 0.07 +vendaient vendre VER 206.95 92.64 0.56 2.23 ind:imp:3p; +vendais vendre VER 206.95 92.64 1.96 0.95 ind:imp:1s;ind:imp:2s; +vendait vendre VER 206.95 92.64 4.46 9.93 ind:imp:3s; +vendange vendange NOM f s 1.54 3.38 0.17 0.95 +vendangeait vendanger VER 0.74 0.20 0.00 0.07 ind:imp:3s; +vendanger vendanger VER 0.74 0.20 0.47 0.00 inf; +vendanges vendange NOM f p 1.54 3.38 1.37 2.43 +vendangeur vendangeur NOM m s 0.00 0.54 0.00 0.14 +vendangeurs vendangeur NOM m p 0.00 0.54 0.00 0.34 +vendangeuses vendangeur NOM f p 0.00 0.54 0.00 0.07 +vendangé vendanger VER m s 0.74 0.20 0.00 0.07 par:pas; +vendant vendre VER 206.95 92.64 2.11 2.30 par:pre; +vende vendre VER 206.95 92.64 1.93 0.61 sub:pre:1s;sub:pre:3s; +vendent vendre VER 206.95 92.64 6.09 3.04 ind:pre:3p; +vendes vendre VER 206.95 92.64 0.29 0.00 sub:pre:2s; +vendetta vendetta NOM f s 1.25 0.81 1.20 0.74 +vendettas vendetta NOM f p 1.25 0.81 0.05 0.07 +vendeur vendeur NOM m s 16.05 18.65 11.30 4.93 +vendeurs vendeur NOM m p 16.05 18.65 2.71 4.59 +vendeuse vendeur NOM f s 16.05 18.65 2.04 7.09 +vendeuses vendeuse NOM f p 0.79 0.00 0.79 0.00 +vendez vendre VER 206.95 92.64 6.11 1.22 imp:pre:2p;ind:pre:2p; +vendiez vendre VER 206.95 92.64 0.34 0.07 ind:imp:2p; +vendions vendre VER 206.95 92.64 0.13 1.01 ind:imp:1p; +vendirent vendre VER 206.95 92.64 0.16 0.07 ind:pas:3p; +vendis vendre VER 206.95 92.64 0.31 0.20 ind:pas:1s; +vendisse vendre VER 206.95 92.64 0.00 0.07 sub:imp:1s; +vendit vendre VER 206.95 92.64 0.26 1.96 ind:pas:3s; +vendons vendre VER 206.95 92.64 1.34 0.20 imp:pre:1p;ind:pre:1p; +vendra vendre VER 206.95 92.64 3.03 0.61 ind:fut:3s; +vendrai vendre VER 206.95 92.64 3.15 0.54 ind:fut:1s; +vendraient vendre VER 206.95 92.64 0.23 0.27 cnd:pre:3p; +vendrais vendre VER 206.95 92.64 1.68 0.47 cnd:pre:1s;cnd:pre:2s; +vendrait vendre VER 206.95 92.64 1.34 1.08 cnd:pre:3s; +vendras vendre VER 206.95 92.64 0.48 0.07 ind:fut:2s; +vendre vendre VER 206.95 92.64 73.62 30.81 ind:pre:2p;inf; +vendredi vendredi NOM m s 32.49 19.05 31.36 18.31 +vendredis vendredi NOM m p 32.49 19.05 1.13 0.74 +vendrez vendre VER 206.95 92.64 0.65 0.41 ind:fut:2p; +vendriez vendre VER 206.95 92.64 0.30 0.00 cnd:pre:2p; +vendrons vendre VER 206.95 92.64 0.44 0.07 ind:fut:1p; +vendront vendre VER 206.95 92.64 0.53 0.27 ind:fut:3p; +vends vendre VER 206.95 92.64 23.35 4.86 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vendu vendre VER m s 206.95 92.64 37.62 14.73 par:pas; +vendue vendre VER f s 206.95 92.64 7.17 2.97 par:pas; +vendéen vendéen ADJ m s 0.00 0.34 0.00 0.14 +vendéenne vendéen ADJ f s 0.00 0.34 0.00 0.07 +vendéennes vendéen ADJ f p 0.00 0.34 0.00 0.07 +vendéens vendéen ADJ m p 0.00 0.34 0.00 0.07 +vendues vendre VER f p 206.95 92.64 1.09 1.08 par:pas; +vendémiaire vendémiaire NOM m s 0.00 0.34 0.00 0.34 +vendus vendre VER m p 206.95 92.64 3.47 1.82 par:pas; +venelle venelle NOM f s 0.21 3.58 0.21 1.82 +venelles venelle NOM f p 0.21 3.58 0.00 1.76 +venette venette NOM f s 0.01 0.07 0.01 0.07 +veneur veneur NOM m s 0.00 2.91 0.00 2.57 +veneurs veneur NOM m p 0.00 2.91 0.00 0.34 +venez venir VER 2763.69 1514.53 304.03 41.42 imp:pre:2p;ind:pre:2p; +venge venger VER 37.73 24.46 3.89 2.70 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +vengea venger VER 37.73 24.46 0.17 0.34 ind:pas:3s; +vengeai venger VER 37.73 24.46 0.00 0.07 ind:pas:1s; +vengeaient venger VER 37.73 24.46 0.00 0.41 ind:imp:3p; +vengeais venger VER 37.73 24.46 0.03 0.20 ind:imp:1s; +vengeait venger VER 37.73 24.46 0.16 2.30 ind:imp:3s; +vengeance vengeance NOM f s 28.27 17.03 27.85 15.88 +vengeances vengeance NOM f p 28.27 17.03 0.42 1.15 +vengeant venger VER 37.73 24.46 0.25 0.34 par:pre; +vengent venger VER 37.73 24.46 0.71 0.88 ind:pre:3p; +vengeons venger VER 37.73 24.46 0.32 0.07 imp:pre:1p;ind:pre:1p; +vengeât venger VER 37.73 24.46 0.00 0.07 sub:imp:3s; +venger venger VER 37.73 24.46 20.93 12.09 inf; +vengera venger VER 37.73 24.46 0.97 0.34 ind:fut:3s; +vengerai venger VER 37.73 24.46 1.88 0.41 ind:fut:1s; +vengerais venger VER 37.73 24.46 0.31 0.14 cnd:pre:1s;cnd:pre:2s; +vengerait venger VER 37.73 24.46 0.21 0.20 cnd:pre:3s; +vengeresse vengeur ADJ f s 1.54 3.85 0.35 0.81 +vengeresses vengeur ADJ f p 1.54 3.85 0.01 0.27 +vengerez venger VER 37.73 24.46 0.24 0.00 ind:fut:2p; +vengerons venger VER 37.73 24.46 0.44 0.07 ind:fut:1p; +vengeront venger VER 37.73 24.46 0.58 0.00 ind:fut:3p; +venges venger VER 37.73 24.46 0.59 0.14 ind:pre:2s;sub:pre:2s; +vengeur vengeur NOM m s 1.27 1.08 1.15 0.68 +vengeurs vengeur ADJ m p 1.54 3.85 0.23 0.88 +vengez venger VER 37.73 24.46 0.77 0.20 imp:pre:2p;ind:pre:2p; +vengiez venger VER 37.73 24.46 0.11 0.00 ind:imp:2p; +vengèrent venger VER 37.73 24.46 0.00 0.20 ind:pas:3p; +vengé venger VER m s 37.73 24.46 3.19 2.03 par:pas; +vengée venger VER f s 37.73 24.46 1.23 0.68 par:pas; +vengées venger VER f p 37.73 24.46 0.15 0.07 par:pas; +vengés venger VER m p 37.73 24.46 0.60 0.54 par:pas; +veniez venir VER 2763.69 1514.53 9.37 3.24 ind:imp:2p; +venimeuse venimeux ADJ f s 2.67 2.77 0.77 0.74 +venimeusement venimeusement ADV 0.00 0.07 0.00 0.07 +venimeuses venimeux ADJ f p 2.67 2.77 0.32 0.34 +venimeux venimeux ADJ m 2.67 2.77 1.58 1.69 +venin venin NOM m s 3.59 3.11 3.57 2.97 +venins venin NOM m p 3.59 3.11 0.02 0.14 +venions venir VER 2763.69 1514.53 2.07 5.88 ind:imp:1p; +venir venir VER 2763.69 1514.53 367.13 196.01 inf; +venise venise NOM f s 0.03 0.07 0.03 0.07 +venons venir VER 2763.69 1514.53 17.22 8.18 imp:pre:1p;ind:pre:1p; +vent vent NOM m s 77.34 220.27 71.50 207.64 +ventôse ventôse NOM m s 0.14 0.88 0.14 0.88 +venta venter VER 0.74 0.81 0.26 0.41 ind:pas:3s; +ventail ventail NOM m s 0.01 0.00 0.01 0.00 +ventas venter VER 0.74 0.81 0.00 0.14 ind:pas:2s; +vente vente NOM f s 27.54 18.99 20.93 12.97 +venter venter VER 0.74 0.81 0.03 0.14 inf; +ventes vente NOM f p 27.54 18.99 6.61 6.01 +venteuse venteux ADJ f s 0.14 0.95 0.03 0.20 +venteuses venteux ADJ f p 0.14 0.95 0.00 0.27 +venteux venteux ADJ m 0.14 0.95 0.11 0.47 +ventilant ventiler VER 0.73 0.68 0.00 0.14 par:pre; +ventilateur ventilateur NOM m s 3.02 2.64 2.43 2.09 +ventilateurs ventilateur NOM m p 3.02 2.64 0.59 0.54 +ventilation ventilation NOM f s 2.90 0.47 2.84 0.47 +ventilations ventilation NOM f p 2.90 0.47 0.05 0.00 +ventile ventiler VER 0.73 0.68 0.32 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +ventiler ventiler VER 0.73 0.68 0.23 0.14 inf; +ventilez ventiler VER 0.73 0.68 0.07 0.00 imp:pre:2p; +ventilo ventilo NOM m s 0.54 0.14 0.32 0.07 +ventilos ventilo NOM m p 0.54 0.14 0.22 0.07 +ventilé ventilé ADJ m s 0.35 0.34 0.17 0.14 +ventilée ventiler VER f s 0.73 0.68 0.01 0.34 par:pas; +ventilées ventilé ADJ f p 0.35 0.34 0.14 0.20 +ventilés ventilé ADJ m p 0.35 0.34 0.02 0.00 +ventis ventis NOM m 0.01 0.07 0.01 0.07 +ventouse ventouse NOM f s 0.69 4.66 0.44 1.76 +ventousent ventouser VER 0.01 0.14 0.00 0.07 ind:pre:3p; +ventouses ventouse NOM f p 0.69 4.66 0.25 2.91 +ventousé ventouser VER m s 0.01 0.14 0.00 0.07 par:pas; +ventousée ventouser VER f s 0.01 0.14 0.01 0.00 par:pas; +ventral ventral ADJ m s 0.17 1.28 0.09 0.27 +ventrale ventral ADJ f s 0.17 1.28 0.08 1.01 +ventre_saint_gris ventre_saint_gris ONO 0.00 0.07 0.00 0.07 +ventre ventre NOM m s 46.91 141.96 46.07 136.62 +ventrebleu ventrebleu ONO 0.02 0.00 0.02 0.00 +ventres ventre NOM m p 46.91 141.96 0.84 5.34 +ventriculaire ventriculaire ADJ s 0.61 0.00 0.61 0.00 +ventricule ventricule NOM m s 0.78 0.07 0.55 0.00 +ventricules ventricule NOM m p 0.78 0.07 0.23 0.07 +ventriloque ventriloque NOM s 1.14 0.47 1.05 0.47 +ventriloques ventriloque NOM p 1.14 0.47 0.08 0.00 +ventriloquie ventriloquie NOM f s 0.04 0.00 0.04 0.00 +ventripotent ventripotent ADJ m s 0.01 0.88 0.01 0.74 +ventripotents ventripotent ADJ m p 0.01 0.88 0.00 0.14 +ventrière ventrière NOM f s 0.01 0.14 0.01 0.14 +ventru ventru ADJ m s 0.12 3.51 0.08 1.82 +ventrée ventrée NOM f s 0.11 0.54 0.01 0.41 +ventrue ventru ADJ f s 0.12 3.51 0.01 0.47 +ventrées ventrée NOM f p 0.11 0.54 0.10 0.14 +ventrues ventru ADJ f p 0.12 3.51 0.00 0.34 +ventrus ventru ADJ m p 0.12 3.51 0.03 0.88 +vents vent NOM m p 77.34 220.27 5.84 12.64 +venté venté ADJ m s 0.04 0.14 0.02 0.07 +ventée venté ADJ f s 0.04 0.14 0.03 0.00 +ventées venté ADJ f p 0.04 0.14 0.00 0.07 +ventés venter VER m p 0.74 0.81 0.00 0.07 par:pas; +venu venir VER m s 2763.69 1514.53 244.70 135.14 par:pas; +venue venir VER f s 2763.69 1514.53 93.14 60.47 par:pas; +venues venir VER f p 2763.69 1514.53 5.49 6.96 par:pas; +venus venir VER m p 2763.69 1514.53 53.34 40.41 par:pas; +ver ver NOM m s 12.32 16.01 10.21 5.61 +verbal verbal ADJ m s 2.27 6.76 0.92 1.89 +verbale verbal ADJ f s 2.27 6.76 0.71 2.57 +verbalement verbalement ADV 0.53 0.54 0.53 0.54 +verbales verbal ADJ f p 2.27 6.76 0.39 1.76 +verbalisation verbalisation NOM f s 0.04 0.00 0.04 0.00 +verbalise verbaliser VER 0.79 0.14 0.27 0.00 ind:pre:1s;ind:pre:3s; +verbaliser verbaliser VER 0.79 0.14 0.42 0.14 inf; +verbalisez verbaliser VER 0.79 0.14 0.02 0.00 imp:pre:2p;ind:pre:2p; +verbalisme verbalisme NOM m s 0.00 0.41 0.00 0.41 +verbaliste verbaliste NOM s 0.00 0.07 0.00 0.07 +verbalisé verbaliser VER m s 0.79 0.14 0.08 0.00 par:pas; +verbalisée verbaliser VER f s 0.79 0.14 0.01 0.00 par:pas; +verbatim verbatim NOM m s 0.01 0.00 0.01 0.00 +verbaux verbal ADJ m p 2.27 6.76 0.25 0.54 +verbe verbe NOM m s 2.02 9.93 1.66 8.38 +verbes verbe NOM m p 2.02 9.93 0.36 1.55 +verbeuse verbeux ADJ f s 0.18 0.47 0.01 0.07 +verbeuses verbeux ADJ f p 0.18 0.47 0.00 0.14 +verbeux verbeux ADJ m 0.18 0.47 0.17 0.27 +verbiage verbiage NOM m s 0.18 0.74 0.18 0.74 +verbosité verbosité NOM f s 0.00 0.27 0.00 0.20 +verbosités verbosité NOM f p 0.00 0.27 0.00 0.07 +verdelet verdelet ADJ m s 0.00 0.07 0.00 0.07 +verdeur verdeur NOM f s 0.00 1.08 0.00 1.01 +verdeurs verdeur NOM f p 0.00 1.08 0.00 0.07 +verdi verdi ADJ m s 0.02 1.01 0.02 0.34 +verdict verdict NOM m s 8.63 5.47 8.57 5.00 +verdicts verdict NOM m p 8.63 5.47 0.07 0.47 +verdie verdir VER f s 0.21 2.97 0.00 0.41 par:pas; +verdier verdier NOM m s 0.03 0.14 0.00 0.07 +verdiers verdier NOM m p 0.03 0.14 0.03 0.07 +verdies verdi ADJ f p 0.02 1.01 0.00 0.20 +verdine verdin NOM f s 0.00 0.07 0.00 0.07 +verdir verdir VER 0.21 2.97 0.16 0.20 inf; +verdis verdir VER m p 0.21 2.97 0.01 0.14 par:pas; +verdissaient verdir VER 0.21 2.97 0.00 0.27 ind:imp:3p; +verdissait verdir VER 0.21 2.97 0.00 0.41 ind:imp:3s; +verdissant verdissant ADJ m s 0.00 0.61 0.00 0.20 +verdissante verdissant ADJ f s 0.00 0.61 0.00 0.27 +verdissants verdissant ADJ m p 0.00 0.61 0.00 0.14 +verdissent verdir VER 0.21 2.97 0.02 0.20 ind:pre:3p; +verdit verdir VER 0.21 2.97 0.02 0.47 ind:pre:3s;ind:pas:3s; +verdoie verdoyer VER 0.13 0.68 0.11 0.20 ind:pre:3s; +verdoiement verdoiement NOM m s 0.14 0.07 0.14 0.07 +verdoient verdoyer VER 0.13 0.68 0.02 0.14 ind:pre:3p; +verdâtre verdâtre ADJ s 0.11 9.73 0.08 6.62 +verdâtres verdâtre ADJ p 0.11 9.73 0.03 3.11 +verdoyant verdoyant ADJ m s 0.67 2.43 0.13 0.95 +verdoyante verdoyant ADJ f s 0.67 2.43 0.06 0.68 +verdoyantes verdoyant ADJ f p 0.67 2.43 0.46 0.47 +verdoyants verdoyant ADJ m p 0.67 2.43 0.02 0.34 +verdoyer verdoyer VER 0.13 0.68 0.00 0.20 inf; +verdure verdure NOM f s 1.15 10.95 1.05 10.14 +verdures verdure NOM f p 1.15 10.95 0.10 0.81 +verge verge NOM f s 0.81 5.41 0.69 3.65 +vergence vergence NOM f s 0.02 0.00 0.02 0.00 +verger verger NOM m s 3.13 11.69 2.54 5.88 +vergers verger NOM m p 3.13 11.69 0.59 5.81 +verges verge NOM f p 0.81 5.41 0.13 1.76 +vergeture vergeture NOM f s 0.42 0.41 0.01 0.00 +vergetures vergeture NOM f p 0.42 0.41 0.41 0.41 +verglacé verglacer VER m s 0.06 0.14 0.03 0.00 par:pas; +verglacée verglacé ADJ f s 0.06 0.41 0.03 0.07 +verglacées verglacé ADJ f p 0.06 0.41 0.02 0.14 +verglas verglas NOM m 0.94 1.62 0.94 1.62 +vergne vergne NOM m s 0.00 0.34 0.00 0.27 +vergnes vergne NOM m p 0.00 0.34 0.00 0.07 +vergogne vergogne NOM f s 0.51 4.05 0.51 4.05 +vergogneux vergogneux ADJ m 0.00 0.27 0.00 0.27 +vergé vergé ADJ m s 0.01 0.34 0.00 0.27 +vergue vergue NOM f s 0.41 0.47 0.38 0.27 +vergues vergue NOM f p 0.41 0.47 0.03 0.20 +vergés vergé ADJ m p 0.01 0.34 0.01 0.07 +verjus verjus NOM m 0.01 0.27 0.01 0.27 +verlan verlan NOM m s 0.07 0.34 0.07 0.34 +vermeil vermeil ADJ m s 1.66 3.11 1.25 0.88 +vermeille vermeil ADJ f s 1.66 3.11 0.27 0.81 +vermeilles vermeil ADJ f p 1.66 3.11 0.03 1.08 +vermeils vermeil ADJ m p 1.66 3.11 0.10 0.34 +vermicelle vermicelle NOM m s 0.29 0.81 0.15 0.54 +vermicelles vermicelle NOM m p 0.29 0.81 0.14 0.27 +vermiculaire vermiculaire ADJ s 0.00 0.14 0.00 0.07 +vermiculaires vermiculaire ADJ p 0.00 0.14 0.00 0.07 +vermiculées vermiculé ADJ f p 0.00 0.07 0.00 0.07 +vermifuge vermifuge NOM m s 0.03 0.14 0.03 0.14 +vermillon vermillon ADJ 0.02 1.15 0.02 1.15 +vermillonnait vermillonner VER 0.00 0.27 0.00 0.07 ind:imp:3s; +vermillonnée vermillonner VER f s 0.00 0.27 0.00 0.14 par:pas; +vermillonnés vermillonner VER m p 0.00 0.27 0.00 0.07 par:pas; +vermillons vermillon NOM m p 0.02 1.08 0.00 0.14 +vermine vermine NOM f s 7.31 4.93 6.77 4.46 +vermines vermine NOM f p 7.31 4.93 0.54 0.47 +vermineux vermineux ADJ m 0.00 0.14 0.00 0.14 +vermisseau vermisseau NOM m s 0.49 0.07 0.29 0.07 +vermisseaux vermisseau NOM m p 0.49 0.07 0.20 0.00 +vermoulu vermoulu ADJ m s 0.17 3.31 0.01 1.15 +vermoulue vermoulu ADJ f s 0.17 3.31 0.02 1.22 +vermoulues vermoulu ADJ f p 0.17 3.31 0.01 0.47 +vermoulure vermoulure NOM f s 0.00 0.34 0.00 0.20 +vermoulures vermoulure NOM f p 0.00 0.34 0.00 0.14 +vermoulus vermoulu ADJ m p 0.17 3.31 0.14 0.47 +vermout vermout NOM m s 0.01 0.00 0.01 0.00 +vermouth vermouth NOM m s 1.19 1.49 1.18 1.28 +vermouths vermouth NOM m p 1.19 1.49 0.01 0.20 +vernaculaire vernaculaire ADJ s 0.01 0.00 0.01 0.00 +vernal vernal ADJ m s 0.01 0.00 0.01 0.00 +verne verne NOM m s 0.14 0.00 0.14 0.00 +verni vernir VER m s 1.77 8.51 0.66 1.96 par:pas; +vernie vernir VER f s 1.77 8.51 0.14 0.95 par:pas; +vernier vernier NOM m s 0.00 0.07 0.00 0.07 +vernies verni ADJ f p 0.48 6.62 0.15 1.62 +vernir vernir VER 1.77 8.51 0.16 0.61 inf; +vernis vernis NOM m 2.81 9.80 2.81 9.80 +vernissage vernissage NOM m s 2.21 1.82 1.88 1.35 +vernissages vernissage NOM m p 2.21 1.82 0.33 0.47 +vernissaient vernir VER 1.77 8.51 0.00 0.07 ind:imp:3p; +vernissait vernir VER 1.77 8.51 0.01 0.00 ind:imp:3s; +vernissant vernir VER 1.77 8.51 0.00 0.07 par:pre; +vernissent vernir VER 1.77 8.51 0.00 0.07 ind:pre:3p; +vernisser vernisser VER 0.00 1.49 0.00 0.07 inf; +vernisseur vernisseur NOM m s 0.10 0.00 0.10 0.00 +vernissé vernissé ADJ m s 0.00 2.36 0.00 0.34 +vernissée vernisser VER f s 0.00 1.49 0.00 0.47 par:pas; +vernissées vernissé ADJ f p 0.00 2.36 0.00 1.08 +vernissés vernissé ADJ m p 0.00 2.36 0.00 0.54 +vernit vernir VER 1.77 8.51 0.13 0.41 ind:pre:3s;ind:pas:3s; +verra voir VER 4119.49 2401.76 78.66 26.28 ind:fut:3s; +verrai voir VER 4119.49 2401.76 31.76 10.54 ind:fut:1s; +verraient voir VER 4119.49 2401.76 1.01 2.23 cnd:pre:3p; +verrais voir VER 4119.49 2401.76 9.03 6.49 cnd:pre:1s;cnd:pre:2s; +verrait voir VER 4119.49 2401.76 6.58 16.76 cnd:pre:3s; +verras voir VER 4119.49 2401.76 51.34 23.78 ind:fut:2s; +verrat verrat NOM m s 0.08 0.74 0.08 0.68 +verrats verrat NOM m p 0.08 0.74 0.00 0.07 +verre verre NOM m s 176.57 230.07 154.13 175.20 +verrerie verrerie NOM f s 1.14 0.74 0.93 0.47 +verreries verrerie NOM f p 1.14 0.74 0.21 0.27 +verres verre NOM m p 176.57 230.07 22.45 54.86 +verrez voir VER 4119.49 2401.76 35.50 18.51 ind:fut:2p; +verrier verrier ADJ m s 0.00 0.27 0.00 0.07 +verriers verrier ADJ m p 0.00 0.27 0.00 0.07 +verriez voir VER 4119.49 2401.76 1.84 0.81 cnd:pre:2p; +verrions voir VER 4119.49 2401.76 0.12 1.01 cnd:pre:1p; +verrière verrière NOM f s 0.42 5.95 0.42 4.53 +verrières verrière NOM f p 0.42 5.95 0.00 1.42 +verrons voir VER 4119.49 2401.76 13.26 7.57 ind:fut:1p; +verront voir VER 4119.49 2401.76 6.54 2.70 ind:fut:3p; +verroterie verroterie NOM f s 0.05 1.42 0.04 1.01 +verroteries verroterie NOM f p 0.05 1.42 0.01 0.41 +verrou verrou NOM m s 5.28 12.03 3.54 7.64 +verrouilla verrouiller VER 8.77 3.72 0.11 0.61 ind:pas:3s; +verrouillage verrouillage NOM m s 1.23 0.54 1.23 0.54 +verrouillai verrouiller VER 8.77 3.72 0.00 0.07 ind:pas:1s; +verrouillait verrouiller VER 8.77 3.72 0.15 0.34 ind:imp:3s; +verrouillant verrouiller VER 8.77 3.72 0.00 0.20 par:pre; +verrouille verrouiller VER 8.77 3.72 1.98 0.27 imp:pre:2s;ind:pre:1s;ind:pre:3s; +verrouillent verrouiller VER 8.77 3.72 0.28 0.00 ind:pre:3p; +verrouiller verrouiller VER 8.77 3.72 1.36 0.47 inf; +verrouilles verrouiller VER 8.77 3.72 0.09 0.14 ind:pre:2s; +verrouillez verrouiller VER 8.77 3.72 1.27 0.00 imp:pre:2p;ind:pre:2p; +verrouillons verrouiller VER 8.77 3.72 0.02 0.00 ind:pre:1p; +verrouillèrent verrouiller VER 8.77 3.72 0.00 0.07 ind:pas:3p; +verrouillé verrouiller VER m s 8.77 3.72 1.85 0.61 par:pas; +verrouillée verrouiller VER f s 8.77 3.72 1.24 0.61 par:pas; +verrouillées verrouiller VER f p 8.77 3.72 0.33 0.14 par:pas; +verrouillés verrouiller VER m p 8.77 3.72 0.09 0.20 par:pas; +verrous verrou NOM m p 5.28 12.03 1.74 4.39 +verrue verrue NOM f s 1.20 3.11 0.66 1.76 +verrues verrue NOM f p 1.20 3.11 0.54 1.35 +verruqueuse verruqueux ADJ f s 0.00 0.14 0.00 0.14 +vers vers PRE 227.77 956.15 227.77 956.15 +versa verser VER 31.20 53.99 1.88 10.68 ind:pas:3s; +versai verser VER 31.20 53.99 0.01 1.08 ind:pas:1s; +versaient verser VER 31.20 53.99 0.06 1.55 ind:imp:3p; +versaillais versaillais NOM m 0.00 0.54 0.00 0.54 +versaillaise versaillais ADJ f s 0.00 0.34 0.00 0.20 +versais verser VER 31.20 53.99 0.21 0.47 ind:imp:1s;ind:imp:2s; +versait verser VER 31.20 53.99 0.64 5.61 ind:imp:3s; +versant versant NOM m s 0.59 10.68 0.53 8.92 +versants versant NOM m p 0.59 10.68 0.06 1.76 +versatile versatile ADJ s 0.34 0.34 0.33 0.20 +versatiles versatile ADJ f p 0.34 0.34 0.01 0.14 +versatilité versatilité NOM f s 0.02 0.34 0.02 0.34 +verse verser VER 31.20 53.99 7.50 7.57 imp:pre:2s;ind:pre:1s;ind:pre:3s; +verseau verseau NOM m s 0.02 0.00 0.02 0.00 +versement versement NOM m s 2.76 0.88 1.91 0.61 +versements versement NOM m p 2.76 0.88 0.85 0.27 +versent verser VER 31.20 53.99 0.29 0.95 ind:pre:3p; +verser verser VER 31.20 53.99 4.62 9.86 ind:pre:2p;inf; +versera verser VER 31.20 53.99 0.60 0.41 ind:fut:3s; +verserai verser VER 31.20 53.99 0.62 0.00 ind:fut:1s; +verserais verser VER 31.20 53.99 0.08 0.07 cnd:pre:1s; +verserait verser VER 31.20 53.99 0.14 0.07 cnd:pre:3s; +verseras verser VER 31.20 53.99 0.16 0.07 ind:fut:2s; +verserez verser VER 31.20 53.99 0.04 0.07 ind:fut:2p; +verseriez verser VER 31.20 53.99 0.02 0.00 cnd:pre:2p; +verserons verser VER 31.20 53.99 0.18 0.00 ind:fut:1p; +verseront verser VER 31.20 53.99 0.04 0.14 ind:fut:3p; +verses verser VER 31.20 53.99 0.93 0.07 ind:pre:2s; +verset verset NOM m s 2.46 4.39 1.43 2.03 +versets verset NOM m p 2.46 4.39 1.03 2.36 +verseur verseur ADJ m s 0.03 0.07 0.03 0.00 +verseurs verseur ADJ m p 0.03 0.07 0.00 0.07 +verseuse verseur NOM f s 0.04 0.27 0.04 0.20 +verseuses verseuse NOM f p 0.04 0.00 0.04 0.00 +versez verser VER 31.20 53.99 3.60 0.27 imp:pre:2p;ind:pre:2p; +versicolores versicolore ADJ p 0.00 0.27 0.00 0.27 +versiculets versiculet NOM m p 0.00 0.07 0.00 0.07 +versiez verser VER 31.20 53.99 0.02 0.00 ind:imp:2p; +versificateur versificateur NOM m s 0.00 0.07 0.00 0.07 +versification versification NOM f s 0.01 0.00 0.01 0.00 +versifier versifier VER 0.00 0.07 0.00 0.07 inf; +versifiées versifié ADJ f p 0.00 0.14 0.00 0.14 +version version NOM f s 20.09 12.97 19.10 11.01 +versions version NOM f p 20.09 12.97 0.98 1.96 +verso verso NOM m s 0.62 1.96 0.61 1.82 +versâmes verser VER 31.20 53.99 0.00 0.07 ind:pas:1p; +versons verser VER 31.20 53.99 0.22 0.14 imp:pre:1p;ind:pre:1p; +versos verso NOM m p 0.62 1.96 0.01 0.14 +versât verser VER 31.20 53.99 0.00 0.14 sub:imp:3s; +verstes verste NOM f p 0.47 0.14 0.47 0.14 +versèrent verser VER 31.20 53.99 0.01 0.47 ind:pas:3p; +versé verser VER m s 31.20 53.99 7.50 7.70 par:pas; +versée verser VER f s 31.20 53.99 0.86 0.81 par:pas; +versées verser VER f p 31.20 53.99 0.36 0.54 par:pas; +versés verser VER m p 31.20 53.99 0.17 0.54 par:pas; +versus versus PRE 0.07 0.07 0.07 0.07 +vert_de_gris vert_de_gris ADJ 0.02 0.81 0.02 0.81 +vert_de_grisé vert_de_grisé ADJ m s 0.00 0.34 0.00 0.07 +vert_de_grisé vert_de_grisé ADJ f s 0.00 0.34 0.00 0.07 +vert_de_grisé vert_de_grisé ADJ f p 0.00 0.34 0.00 0.14 +vert_de_grisé vert_de_grisé ADJ m p 0.00 0.34 0.00 0.07 +vert_galant vert_galant NOM m s 0.00 0.20 0.00 0.20 +vert_jaune vert_jaune ADJ m s 0.02 0.07 0.02 0.07 +vert_jaune vert_jaune NOM m s 0.02 0.07 0.02 0.07 +vert vert ADJ m s 52.59 145.14 24.74 59.12 +verte vert ADJ f s 52.59 145.14 14.24 38.45 +vertement vertement ADV 0.14 1.08 0.14 1.08 +vertes vert ADJ f p 52.59 145.14 4.29 23.72 +vertex vertex NOM m 0.00 1.22 0.00 1.22 +vertical vertical ADJ m s 1.54 15.41 0.61 3.85 +verticale verticale NOM f s 1.85 5.07 1.44 4.46 +verticalement verticalement ADV 0.17 3.31 0.17 3.31 +verticales verticale NOM f p 1.85 5.07 0.41 0.61 +verticalité verticalité NOM f s 0.00 0.20 0.00 0.20 +verticaux vertical ADJ m p 1.54 15.41 0.08 2.77 +verticille verticille NOM m s 0.01 0.00 0.01 0.00 +vertige vertige NOM m s 9.06 26.62 6.14 24.26 +vertiges vertige NOM m p 9.06 26.62 2.91 2.36 +vertigineuse vertigineux ADJ f s 0.69 10.41 0.14 4.86 +vertigineusement vertigineusement ADV 0.10 1.15 0.10 1.15 +vertigineuses vertigineux ADJ f p 0.69 10.41 0.11 1.35 +vertigineux vertigineux ADJ m 0.69 10.41 0.45 4.19 +vertigo vertigo NOM m s 0.13 0.14 0.13 0.14 +verts vert ADJ m p 52.59 145.14 9.32 23.85 +vertèbre vertèbre NOM f s 1.27 3.38 0.68 0.81 +vertèbres vertèbre NOM f p 1.27 3.38 0.59 2.57 +vertu vertu NOM f s 17.75 38.45 13.49 24.05 +vertubleu vertubleu ONO 0.27 0.00 0.27 0.00 +vertébral vertébral ADJ m s 3.23 2.36 0.06 0.00 +vertébrale vertébral ADJ f s 3.23 2.36 3.09 2.36 +vertébrales vertébral ADJ f p 3.23 2.36 0.06 0.00 +vertébraux vertébral ADJ m p 3.23 2.36 0.01 0.00 +vertébré vertébré NOM m s 0.36 0.14 0.13 0.07 +vertébrés vertébré NOM m p 0.36 0.14 0.23 0.07 +vertueuse vertueux ADJ f s 5.08 3.78 1.92 1.42 +vertueusement vertueusement ADV 0.00 0.27 0.00 0.27 +vertueuses vertueux ADJ f p 5.08 3.78 0.30 0.68 +vertueux vertueux ADJ m 5.08 3.78 2.85 1.69 +vertugadin vertugadin NOM m s 0.01 0.14 0.01 0.14 +vertus vertu NOM f p 17.75 38.45 4.26 14.39 +verve verve NOM f s 0.40 3.04 0.40 3.04 +verveine verveine NOM f s 0.72 1.76 0.72 1.76 +verveux verveux ADJ m 0.00 0.14 0.00 0.14 +vesce vesce NOM f s 0.01 0.20 0.01 0.00 +vesces vesce NOM f p 0.01 0.20 0.00 0.20 +vespa vespa NOM f s 1.19 0.68 1.19 0.61 +vespas vespa NOM f p 1.19 0.68 0.00 0.07 +vespasienne vespasien NOM f s 0.12 0.41 0.02 0.00 +vespasiennes vespasien NOM f p 0.12 0.41 0.10 0.41 +vesprée vesprée NOM f s 0.00 0.07 0.00 0.07 +vespéral vespéral ADJ m s 0.01 0.88 0.00 0.07 +vespérale vespéral ADJ f s 0.01 0.88 0.00 0.61 +vespérales vespéral ADJ f p 0.01 0.88 0.01 0.14 +vespéraux vespéral ADJ m p 0.01 0.88 0.00 0.07 +vesse_de_loup vesse_de_loup NOM f s 0.02 0.20 0.00 0.14 +vesse_de_loup vesse_de_loup NOM f p 0.02 0.20 0.02 0.07 +vesses vesse NOM f p 0.00 0.14 0.00 0.14 +vessie vessie NOM f s 3.34 2.57 3.21 2.23 +vessies vessie NOM f p 3.34 2.57 0.13 0.34 +vestalat vestalat NOM m s 0.00 0.07 0.00 0.07 +vestale vestale NOM f s 0.70 0.81 0.54 0.41 +vestales vestale NOM f p 0.70 0.81 0.16 0.41 +veste veste NOM f s 37.72 61.62 36.00 55.68 +vestes veste NOM f p 37.72 61.62 1.71 5.95 +vestiaire vestiaire NOM m s 5.71 12.43 4.04 9.86 +vestiaires vestiaire NOM m p 5.71 12.43 1.67 2.57 +vestibule vestibule NOM m s 0.96 12.77 0.96 12.43 +vestibules vestibule NOM m p 0.96 12.77 0.00 0.34 +vestige vestige NOM m s 1.48 7.77 0.54 1.62 +vestiges vestige NOM m p 1.48 7.77 0.94 6.15 +vestimentaire vestimentaire ADJ s 0.90 2.84 0.63 1.76 +vestimentaires vestimentaire ADJ p 0.90 2.84 0.27 1.08 +veston veston NOM m s 1.68 16.55 1.66 15.27 +vestons veston NOM m p 1.68 16.55 0.02 1.28 +veto veto NOM m 1.94 0.74 1.94 0.74 +veuf veuf ADJ m s 8.39 10.14 1.65 3.11 +veufs veuf NOM m p 16.52 32.70 0.06 0.20 +veuille vouloir VER 5249.31 1640.14 10.13 8.45 imp:pre:2s;sub:pre:1s;sub:pre:3s; +veuillent vouloir VER 5249.31 1640.14 1.15 1.08 sub:pre:3p; +veuilles vouloir VER 5249.31 1640.14 6.72 1.28 sub:pre:2s; +veuillez vouloir VER 5249.31 1640.14 45.84 8.99 imp:pre:2p; +veule veule ADJ s 0.18 1.76 0.16 1.42 +veulent vouloir VER 5249.31 1640.14 142.38 39.05 ind:pre:3p; +veulerie veulerie NOM f s 0.21 2.50 0.21 2.36 +veuleries veulerie NOM f p 0.21 2.50 0.00 0.14 +veules veule ADJ m p 0.18 1.76 0.02 0.34 +veut vouloir VER 5249.31 1640.14 701.19 210.61 ind:pre:3s; +veuvage veuvage NOM m s 0.78 2.84 0.78 2.50 +veuvages veuvage NOM m p 0.78 2.84 0.00 0.34 +veuve veuf NOM f s 16.52 32.70 15.64 26.89 +veuves veuve NOM f p 1.89 0.00 1.89 0.00 +veux vouloir VER 5249.31 1640.14 2486.93 377.97 ind:pre:1s;ind:pre:2s; +vexa vexer VER 15.56 11.76 0.00 0.34 ind:pas:3s; +vexai vexer VER 15.56 11.76 0.00 0.07 ind:pas:1s; +vexait vexer VER 15.56 11.76 0.02 0.54 ind:imp:3s; +vexant vexant ADJ m s 0.40 1.01 0.39 0.74 +vexante vexant ADJ f s 0.40 1.01 0.01 0.14 +vexantes vexant ADJ f p 0.40 1.01 0.00 0.07 +vexants vexant ADJ m p 0.40 1.01 0.00 0.07 +vexation vexation NOM f s 0.17 1.82 0.12 0.68 +vexations vexation NOM f p 0.17 1.82 0.05 1.15 +vexatoire vexatoire ADJ s 0.00 0.20 0.00 0.14 +vexatoires vexatoire ADJ f p 0.00 0.20 0.00 0.07 +vexe vexer VER 15.56 11.76 1.65 1.76 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vexent vexer VER 15.56 11.76 0.12 0.07 ind:pre:3p; +vexer vexer VER 15.56 11.76 4.30 2.57 inf;; +vexera vexer VER 15.56 11.76 0.26 0.00 ind:fut:3s; +vexerai vexer VER 15.56 11.76 0.30 0.00 ind:fut:1s; +vexerait vexer VER 15.56 11.76 0.02 0.41 cnd:pre:3s; +vexeras vexer VER 15.56 11.76 0.14 0.07 ind:fut:2s; +vexerez vexer VER 15.56 11.76 0.01 0.00 ind:fut:2p; +vexerions vexer VER 15.56 11.76 0.00 0.07 cnd:pre:1p; +vexes vexer VER 15.56 11.76 0.34 0.14 ind:pre:2s; +vexez vexer VER 15.56 11.76 0.41 0.00 imp:pre:2p;ind:pre:2p; +vexons vexer VER 15.56 11.76 0.04 0.00 imp:pre:1p;ind:pre:1p; +vexé vexer VER m s 15.56 11.76 5.21 4.19 par:pas; +vexée vexer VER f s 15.56 11.76 2.34 1.08 par:pas; +vexées vexer VER f p 15.56 11.76 0.01 0.00 par:pas; +vexés vexer VER m p 15.56 11.76 0.36 0.34 par:pas; +via via PRE 6.53 5.41 6.53 5.41 +viabilité viabilité NOM f s 0.10 0.07 0.10 0.07 +viable viable ADJ s 1.57 1.22 1.27 0.95 +viables viable ADJ p 1.57 1.22 0.29 0.27 +viaduc viaduc NOM m s 0.17 0.88 0.17 0.88 +viager viager NOM m s 0.14 0.27 0.14 0.27 +viagra viagra NOM m s 0.45 0.00 0.45 0.00 +viagère viager ADJ f s 0.03 0.14 0.03 0.14 +viandard viandard NOM m s 0.00 0.07 0.00 0.07 +viandasse viander VER 0.05 0.41 0.00 0.20 sub:imp:1s; +viande viande NOM f s 44.43 45.00 43.78 41.35 +viander viander VER 0.05 0.41 0.01 0.14 inf; +viandes viande NOM f p 44.43 45.00 0.65 3.65 +viandeuse viandeux ADJ f s 0.00 0.07 0.00 0.07 +viandox viandox NOM m 0.02 0.68 0.02 0.68 +viandé viander VER m s 0.05 0.41 0.04 0.07 par:pas; +viatique viatique NOM m s 0.01 1.28 0.01 1.28 +vibra vibrer VER 4.73 24.53 0.00 0.95 ind:pas:3s; +vibraient vibrer VER 4.73 24.53 0.06 0.68 ind:imp:3p; +vibrais vibrer VER 4.73 24.53 0.01 0.20 ind:imp:1s; +vibrait vibrer VER 4.73 24.53 0.22 6.22 ind:imp:3s; +vibrant vibrant ADJ m s 0.86 6.89 0.56 1.89 +vibrante vibrant ADJ f s 0.86 6.89 0.22 3.78 +vibrantes vibrant ADJ f p 0.86 6.89 0.03 0.88 +vibrants vibrant ADJ m p 0.86 6.89 0.05 0.34 +vibraphone vibraphone NOM m s 0.03 0.14 0.03 0.07 +vibraphones vibraphone NOM m p 0.03 0.14 0.00 0.07 +vibrateur vibrateur NOM m s 0.14 0.07 0.14 0.00 +vibrateurs vibrateur NOM m p 0.14 0.07 0.01 0.07 +vibratile vibratile ADJ f s 0.14 0.34 0.01 0.20 +vibratiles vibratile ADJ m p 0.14 0.34 0.14 0.14 +vibration vibration NOM f s 4.49 12.64 1.28 8.58 +vibrations vibration NOM f p 4.49 12.64 3.21 4.05 +vibrato vibrato NOM m s 0.12 0.54 0.12 0.34 +vibratoire vibratoire ADJ s 0.11 0.47 0.10 0.34 +vibratoires vibratoire ADJ p 0.11 0.47 0.01 0.14 +vibratos vibrato NOM m p 0.12 0.54 0.00 0.20 +vibre vibrer VER 4.73 24.53 1.79 3.78 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vibrent vibrer VER 4.73 24.53 0.23 0.68 ind:pre:3p; +vibrer vibrer VER 4.73 24.53 2.06 8.31 inf; +vibrera vibrer VER 4.73 24.53 0.03 0.00 ind:fut:3s; +vibreur vibreur NOM m s 0.25 0.00 0.25 0.00 +vibrez vibrer VER 4.73 24.53 0.01 0.00 imp:pre:2p; +vibrionnaient vibrionner VER 0.00 0.34 0.00 0.07 ind:imp:3p; +vibrionnait vibrionner VER 0.00 0.34 0.00 0.14 ind:imp:3s; +vibrionnant vibrionner VER 0.00 0.34 0.00 0.07 par:pre; +vibrionne vibrionner VER 0.00 0.34 0.00 0.07 ind:pre:1s; +vibrions vibrion NOM m p 0.14 0.20 0.14 0.20 +vibrisses vibrisse NOM f p 0.00 0.14 0.00 0.14 +vibro_masseur vibro_masseur NOM m s 0.08 0.07 0.08 0.07 +vibromasseur vibromasseur NOM m s 0.93 0.00 0.85 0.00 +vibromasseurs vibromasseur NOM m p 0.93 0.00 0.08 0.00 +vibré vibrer VER m s 4.73 24.53 0.04 0.95 par:pas; +vibrée vibrer VER f s 4.73 24.53 0.01 0.07 par:pas; +vibrées vibrer VER f p 4.73 24.53 0.00 0.07 par:pas; +vibura viburer VER 0.00 0.81 0.00 0.07 ind:pas:3s; +viburait viburer VER 0.00 0.81 0.00 0.07 ind:imp:3s; +vibure viburer VER 0.00 0.81 0.00 0.68 ind:pre:3s; +vicaire vicaire NOM m s 0.71 2.57 0.68 2.23 +vicaires vicaire NOM m p 0.71 2.57 0.04 0.34 +vice_amiral vice_amiral NOM m s 0.10 0.61 0.10 0.61 +vice_chancelier vice_chancelier NOM m s 0.07 0.00 0.07 0.00 +vice_consul vice_consul NOM m s 0.18 0.54 0.18 0.54 +vice_ministre vice_ministre NOM s 0.27 0.27 0.27 0.20 +vice_ministre vice_ministre NOM p 0.27 0.27 0.00 0.07 +vice_premier vice_premier NOM m s 0.01 0.00 0.01 0.00 +vice_présidence vice_présidence NOM f s 0.57 0.00 0.57 0.00 +vice_président vice_président NOM m s 8.63 0.61 7.91 0.54 +vice_président vice_président NOM f s 8.63 0.61 0.60 0.00 +vice_président vice_président NOM m p 8.63 0.61 0.12 0.07 +vice_recteur vice_recteur NOM m s 0.10 0.00 0.10 0.00 +vice_roi vice_roi NOM m s 0.94 0.54 0.84 0.54 +vice_roi vice_roi NOM m p 0.94 0.54 0.10 0.00 +vice_versa vice_versa ADV 0.85 0.27 0.85 0.27 +vice vice NOM m s 12.29 18.45 7.78 13.45 +vicelard vicelard ADJ m s 0.89 3.38 0.60 1.49 +vicelarde vicelard ADJ f s 0.89 3.38 0.07 0.81 +vicelardes vicelard ADJ f p 0.89 3.38 0.01 0.27 +vicelardise vicelardise NOM f s 0.00 0.20 0.00 0.14 +vicelardises vicelardise NOM f p 0.00 0.20 0.00 0.07 +vicelards vicelard ADJ m p 0.89 3.38 0.20 0.81 +vices vice NOM m p 12.29 18.45 4.52 5.00 +vichy vichy NOM m s 0.69 1.22 0.69 1.22 +vichysme vichysme NOM m s 0.00 0.07 0.00 0.07 +vichyssois vichyssois ADJ m 0.06 0.07 0.00 0.07 +vichyssois vichyssois NOM m 0.00 0.07 0.00 0.07 +vichyssoise vichyssois ADJ f s 0.06 0.07 0.06 0.00 +vichyste vichyste ADJ s 0.03 0.27 0.01 0.14 +vichystes vichyste ADJ p 0.03 0.27 0.02 0.14 +vicier vicier VER 0.22 0.41 0.00 0.07 inf; +vicieuse vicieux ADJ f s 5.75 7.03 1.11 1.96 +vicieusement vicieusement ADV 0.07 0.27 0.07 0.27 +vicieuses vicieux ADJ f p 5.75 7.03 0.45 0.27 +vicieux vicieux ADJ m 5.75 7.03 4.19 4.80 +vicinal vicinal ADJ m s 0.00 0.81 0.00 0.47 +vicinales vicinal ADJ f p 0.00 0.81 0.00 0.07 +vicinalité vicinalité NOM f s 0.00 0.07 0.00 0.07 +vicinaux vicinal ADJ m p 0.00 0.81 0.00 0.27 +vicissitude vicissitude NOM f s 0.06 2.16 0.02 0.14 +vicissitudes vicissitude NOM f p 0.06 2.16 0.04 2.03 +vicié vicié ADJ m s 0.23 0.54 0.23 0.41 +viciée vicier VER f s 0.22 0.41 0.00 0.14 par:pas; +viciés vicié ADJ m p 0.23 0.54 0.00 0.14 +vicomte vicomte NOM m s 0.43 6.28 0.41 5.61 +vicomtes vicomte NOM m p 0.43 6.28 0.00 0.20 +vicomtesse vicomte NOM f s 0.43 6.28 0.03 0.41 +vicomtesses vicomtesse NOM f p 0.01 0.00 0.01 0.00 +vicomté vicomté NOM f s 0.00 0.41 0.00 0.41 +victimaire victimaire NOM m s 0.00 0.07 0.00 0.07 +victime victime NOM f s 106.25 46.22 66.47 28.45 +victimes victime NOM f p 106.25 46.22 39.78 17.77 +victimologie victimologie NOM f s 0.04 0.00 0.04 0.00 +victoire victoire NOM f s 34.96 63.24 31.31 57.23 +victoires victoire NOM f p 34.96 63.24 3.65 6.01 +victoria victoria NOM s 0.02 0.47 0.02 0.34 +victorias victoria NOM p 0.02 0.47 0.00 0.14 +victorien victorien ADJ m s 0.49 1.35 0.12 0.41 +victorienne victorien ADJ f s 0.49 1.35 0.25 0.81 +victoriennes victorien ADJ f p 0.49 1.35 0.04 0.14 +victoriens victorien ADJ m p 0.49 1.35 0.08 0.00 +victorieuse victorieux ADJ f s 2.95 9.32 0.22 4.73 +victorieusement victorieusement ADV 0.00 1.82 0.00 1.82 +victorieuses victorieux ADJ f p 2.95 9.32 0.19 1.35 +victorieux victorieux ADJ m 2.95 9.32 2.54 3.24 +victuaille victuaille NOM f s 0.42 4.26 0.01 0.07 +victuailles victuaille NOM f p 0.42 4.26 0.41 4.19 +vida vider VER 30.68 70.81 1.06 9.32 ind:pas:3s; +vidage vidage NOM m s 0.04 0.14 0.04 0.14 +vidai vider VER 30.68 70.81 0.00 1.22 ind:pas:1s; +vidaient vider VER 30.68 70.81 0.08 1.76 ind:imp:3p; +vidais vider VER 30.68 70.81 0.47 0.34 ind:imp:1s; +vidait vider VER 30.68 70.81 0.43 5.95 ind:imp:3s; +vidame vidame NOM m s 0.00 0.07 0.00 0.07 +vidange vidange NOM f s 1.29 1.55 1.09 1.35 +vidanger vidanger VER 0.30 0.34 0.20 0.14 inf; +vidanges vidange NOM f p 1.29 1.55 0.20 0.20 +vidangeur vidangeur NOM m s 0.01 0.27 0.01 0.07 +vidangeurs vidangeur NOM m p 0.01 0.27 0.00 0.20 +vidangez vidanger VER 0.30 0.34 0.02 0.07 imp:pre:2p;ind:pre:2p; +vidangé vidanger VER m s 0.30 0.34 0.02 0.07 par:pas; +vidangée vidanger VER f s 0.30 0.34 0.02 0.00 par:pas; +vidant vider VER 30.68 70.81 0.24 2.84 par:pre; +vidas vider VER 30.68 70.81 0.10 0.07 ind:pas:2s; +vide_gousset vide_gousset NOM m s 0.27 0.00 0.27 0.00 +vide_greniers vide_greniers NOM m 0.04 0.00 0.04 0.00 +vide_ordure vide_ordure NOM m s 0.06 0.00 0.06 0.00 +vide_ordures vide_ordures NOM m 0.55 1.22 0.55 1.22 +vide_poche vide_poche NOM m s 0.04 0.14 0.04 0.14 +vide_poches vide_poches NOM m 0.00 0.27 0.00 0.27 +vide vide ADJ s 60.33 147.50 48.53 102.84 +vident vider VER 30.68 70.81 0.81 1.49 ind:pre:3p; +vider vider VER 30.68 70.81 8.31 16.82 inf; +videra vider VER 30.68 70.81 0.16 0.14 ind:fut:3s; +viderai vider VER 30.68 70.81 0.11 0.14 ind:fut:1s; +viderais vider VER 30.68 70.81 0.15 0.07 cnd:pre:1s; +viderait vider VER 30.68 70.81 0.47 0.47 cnd:pre:3s; +videras vider VER 30.68 70.81 0.00 0.07 ind:fut:2s; +viderions vider VER 30.68 70.81 0.01 0.00 cnd:pre:1p; +videront vider VER 30.68 70.81 0.14 0.07 ind:fut:3p; +vides vide ADJ p 60.33 147.50 11.80 44.66 +videur videur NOM m s 1.48 1.22 1.24 0.74 +videurs videur NOM m p 1.48 1.22 0.24 0.47 +videz vider VER 30.68 70.81 2.71 0.27 imp:pre:2p;ind:pre:2p; +vidicon vidicon NOM m s 0.01 0.00 0.01 0.00 +vidiez vider VER 30.68 70.81 0.12 0.00 ind:imp:2p; +vidons vider VER 30.68 70.81 0.09 0.14 imp:pre:1p;ind:pre:1p; +vidèrent vider VER 30.68 70.81 0.11 1.35 ind:pas:3p; +vidé vider VER m s 30.68 70.81 7.22 11.89 par:pas; +vidéaste vidéaste NOM s 0.08 0.00 0.07 0.00 +vidéastes vidéaste NOM p 0.08 0.00 0.01 0.00 +vidée vider VER f s 30.68 70.81 1.42 3.45 par:pas; +vidées vider VER f p 30.68 70.81 0.23 1.28 par:pas; +viduité viduité NOM f s 0.01 0.00 0.01 0.00 +vidéo_clip vidéo_clip NOM m s 0.19 0.27 0.14 0.20 +vidéo_clip vidéo_clip NOM m p 0.19 0.27 0.04 0.07 +vidéo_club vidéo_club NOM f s 0.44 0.00 0.44 0.00 +vidéo_espion vidéo_espion NOM m s 0.00 0.07 0.00 0.07 +vidéo vidéo ADJ 23.61 0.74 23.61 0.74 +vidéocassette vidéocassette NOM f s 0.10 0.00 0.06 0.00 +vidéocassettes vidéocassette NOM f p 0.10 0.00 0.04 0.00 +vidéoclip vidéoclip NOM m s 0.02 0.00 0.02 0.00 +vidéoclub vidéoclub NOM m s 1.34 0.00 1.34 0.00 +vidéoconférence vidéoconférence NOM f s 0.05 0.00 0.05 0.00 +vidéogramme vidéogramme NOM m s 0.01 0.00 0.01 0.00 +vidéophone vidéophone NOM m s 0.04 0.00 0.04 0.00 +vidéophonie vidéophonie NOM f s 0.01 0.00 0.01 0.00 +vidéos vidéo NOM f p 21.34 0.41 6.10 0.20 +vidéosurveillance vidéosurveillance NOM f s 0.42 0.00 0.42 0.00 +vidéothèque vidéothèque NOM f s 0.36 0.00 0.36 0.00 +vidures vidure NOM f p 0.00 0.07 0.00 0.07 +vidés vider VER m p 30.68 70.81 0.46 2.23 par:pas; +vie vie NOM f s 1021.22 853.31 986.59 835.47 +vieil vieil ADJ m s 34.69 51.22 34.69 51.22 +vieillard vieillard NOM m s 11.75 55.14 7.62 37.77 +vieillarde vieillard NOM f s 11.75 55.14 0.16 0.34 +vieillardes vieillard NOM f p 11.75 55.14 0.00 0.34 +vieillards vieillard NOM m p 11.75 55.14 3.96 16.69 +vieille vieux ADJ f s 282.20 512.91 84.59 184.12 +vieillerie vieillerie NOM f s 1.91 2.30 0.54 0.68 +vieilleries vieillerie NOM f p 1.91 2.30 1.37 1.62 +vieilles vieux ADJ f p 282.20 512.91 17.52 55.47 +vieillesse vieillesse NOM f s 4.88 14.53 4.75 14.39 +vieillesses vieillesse NOM f p 4.88 14.53 0.14 0.14 +vieilli vieillir VER m s 20.47 32.23 4.28 9.39 par:pas; +vieillie vieillir VER f s 20.47 32.23 0.30 0.61 par:pas; +vieillies vieillir VER f p 20.47 32.23 0.01 0.00 par:pas; +vieillir vieillir VER 20.47 32.23 5.49 8.58 inf; +vieillira vieillir VER 20.47 32.23 0.12 0.41 ind:fut:3s; +vieillirai vieillir VER 20.47 32.23 0.23 0.14 ind:fut:1s; +vieilliraient vieillir VER 20.47 32.23 0.01 0.07 cnd:pre:3p; +vieillirais vieillir VER 20.47 32.23 0.01 0.00 cnd:pre:1s; +vieillirait vieillir VER 20.47 32.23 0.07 0.41 cnd:pre:3s; +vieilliras vieillir VER 20.47 32.23 0.33 0.14 ind:fut:2s; +vieillirent vieillir VER 20.47 32.23 0.02 0.00 ind:pas:3p; +vieillirez vieillir VER 20.47 32.23 0.06 0.07 ind:fut:2p; +vieillirons vieillir VER 20.47 32.23 0.07 0.07 ind:fut:1p; +vieilliront vieillir VER 20.47 32.23 0.30 0.07 ind:fut:3p; +vieillis vieillir VER m p 20.47 32.23 2.74 1.89 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas;par:pas; +vieillissaient vieillir VER 20.47 32.23 0.01 0.47 ind:imp:3p; +vieillissais vieillir VER 20.47 32.23 0.11 0.34 ind:imp:1s;ind:imp:2s; +vieillissait vieillir VER 20.47 32.23 0.48 2.50 ind:imp:3s; +vieillissant vieillir VER 20.47 32.23 1.38 2.23 par:pre; +vieillissante vieillissant ADJ f s 0.41 2.30 0.18 0.81 +vieillissantes vieillissant ADJ f p 0.41 2.30 0.12 0.20 +vieillissants vieillissant ADJ m p 0.41 2.30 0.04 0.41 +vieillisse vieillir VER 20.47 32.23 0.13 0.27 sub:pre:1s;sub:pre:3s; +vieillissement vieillissement NOM m s 1.04 2.50 1.04 2.50 +vieillissent vieillir VER 20.47 32.23 0.76 0.88 ind:pre:3p; +vieillissez vieillir VER 20.47 32.23 0.29 0.14 imp:pre:2p;ind:pre:2p; +vieillissiez vieillir VER 20.47 32.23 0.00 0.07 ind:imp:2p; +vieillissions vieillir VER 20.47 32.23 0.00 0.07 ind:imp:1p; +vieillissons vieillir VER 20.47 32.23 0.08 0.00 imp:pre:1p;ind:pre:1p; +vieillit vieillir VER 20.47 32.23 3.19 3.45 ind:pre:3s;ind:pas:3s; +vieillot vieillot ADJ m s 0.34 2.57 0.25 1.28 +vieillots vieillot ADJ m p 0.34 2.57 0.01 0.27 +vieillotte vieillot ADJ f s 0.34 2.57 0.04 0.74 +vieillottes vieillot ADJ f p 0.34 2.57 0.03 0.27 +vielle vielle NOM f s 2.01 0.68 1.49 0.47 +vielles vielle NOM f p 2.01 0.68 0.52 0.20 +vielleux vielleux NOM m 0.14 0.07 0.14 0.07 +viendra venir VER 2763.69 1514.53 52.92 23.11 ind:fut:3s; +viendrai venir VER 2763.69 1514.53 21.68 5.95 ind:fut:1s; +viendraient venir VER 2763.69 1514.53 1.68 6.35 cnd:pre:3p; +viendrais venir VER 2763.69 1514.53 11.80 2.70 cnd:pre:1s;cnd:pre:2s; +viendrait venir VER 2763.69 1514.53 9.89 20.27 cnd:pre:3s; +viendras venir VER 2763.69 1514.53 13.72 3.85 ind:fut:2s; +viendrez venir VER 2763.69 1514.53 5.73 4.05 ind:fut:2p; +viendriez venir VER 2763.69 1514.53 3.04 1.15 cnd:pre:2p; +viendrions venir VER 2763.69 1514.53 0.13 0.34 cnd:pre:1p; +viendrons venir VER 2763.69 1514.53 1.67 0.74 ind:fut:1p; +viendront venir VER 2763.69 1514.53 14.25 8.31 ind:fut:3p; +vienne venir VER 2763.69 1514.53 34.52 25.00 sub:pre:1s;sub:pre:3s; +viennent venir VER 2763.69 1514.53 76.48 62.77 ind:pre:3p;sub:pre:3p; +viennes venir VER 2763.69 1514.53 11.59 3.11 sub:pre:2s; +viennois viennois ADJ m 0.27 2.23 0.18 0.88 +viennoise viennois ADJ f s 0.27 2.23 0.08 0.81 +viennoiserie viennoiserie NOM f s 0.66 0.00 0.52 0.00 +viennoiseries viennoiserie NOM f p 0.66 0.00 0.14 0.00 +viennoises viennois ADJ f p 0.27 2.23 0.01 0.54 +viens venir VER 2763.69 1514.53 944.68 126.49 imp:pre:2s;ind:pre:1s;ind:pre:2s; +vient venir VER 2763.69 1514.53 352.24 206.22 ind:pre:3s; +vierge vierge ADJ s 26.03 25.14 24.22 21.82 +vierges vierge NOM f p 23.79 25.61 4.38 2.43 +vies vie NOM f p 1021.22 853.31 34.63 17.84 +vietnamien vietnamien ADJ m s 1.04 0.68 0.45 0.41 +vietnamienne vietnamien ADJ f s 1.04 0.68 0.28 0.14 +vietnamiennes vietnamien ADJ f p 1.04 0.68 0.20 0.07 +vietnamiens vietnamien NOM m p 1.19 0.74 0.81 0.14 +vieux_rose vieux_rose ADJ m 0.00 0.20 0.00 0.20 +vieux vieux ADJ m 282.20 512.91 180.08 273.31 +vif_argent vif_argent NOM m s 0.21 0.20 0.21 0.20 +vif vif ADJ m s 22.95 95.07 9.27 41.62 +vifs vif ADJ m p 22.95 95.07 2.88 10.14 +vigie vigie NOM f s 0.68 1.69 0.51 1.35 +vigies vigie NOM f p 0.68 1.69 0.17 0.34 +vigil vigil ADJ m s 0.34 0.00 0.04 0.00 +vigilance vigilance NOM f s 0.88 8.18 0.88 7.97 +vigilances vigilance NOM f p 0.88 8.18 0.00 0.20 +vigilant vigilant ADJ m s 4.61 4.66 1.73 1.82 +vigilante vigilant ADJ f s 4.61 4.66 1.04 1.49 +vigilantes vigilant ADJ f p 4.61 4.66 0.03 0.41 +vigilants vigilant ADJ m p 4.61 4.66 1.80 0.95 +vigile vigile NOM s 3.44 1.42 2.09 0.68 +vigiler vigiler VER 0.24 0.27 0.01 0.00 inf; +vigiles vigile NOM p 3.44 1.42 1.35 0.74 +vigne vigne NOM f s 6.87 20.41 4.97 10.61 +vigneaux vigneau NOM m p 0.00 0.07 0.00 0.07 +vigneron vigneron NOM m s 1.18 1.96 0.36 0.61 +vigneronne vigneron NOM f s 1.18 1.96 0.14 0.00 +vigneronnes vigneron NOM f p 1.18 1.96 0.00 0.07 +vignerons vigneron NOM m p 1.18 1.96 0.68 1.28 +vignes vigne NOM f p 6.87 20.41 1.90 9.80 +vignette vignette NOM f s 0.26 1.76 0.19 0.41 +vignettes vignette NOM f p 0.26 1.76 0.07 1.35 +vignoble vignoble NOM m s 1.52 1.96 1.10 0.74 +vignobles vignoble NOM m p 1.52 1.96 0.43 1.22 +vigogne vigogne NOM f s 0.12 0.20 0.12 0.20 +vigoureuse vigoureux ADJ f s 2.62 10.54 0.56 3.18 +vigoureusement vigoureusement ADV 0.55 3.92 0.55 3.92 +vigoureuses vigoureux ADJ f p 2.62 10.54 0.01 1.01 +vigoureux vigoureux ADJ m 2.62 10.54 2.05 6.35 +vigousse vigousse ADJ m s 0.00 0.07 0.00 0.07 +vigueur vigueur NOM f s 3.61 15.61 3.61 15.54 +vigueurs vigueur NOM f p 3.61 15.61 0.00 0.07 +viguier viguier NOM m s 0.00 0.88 0.00 0.81 +viguiers viguier NOM m p 0.00 0.88 0.00 0.07 +viking viking NOM m s 0.43 0.20 0.25 0.00 +vikings viking NOM m p 0.43 0.20 0.19 0.20 +vil vil ADJ m s 6.07 3.18 3.54 2.16 +vilain vilain ADJ m s 20.67 19.32 11.03 8.72 +vilaine vilain ADJ f s 20.67 19.32 6.23 6.22 +vilainement vilainement ADV 0.04 0.47 0.04 0.47 +vilaines vilain ADJ f p 20.67 19.32 1.81 2.57 +vilains vilain ADJ m p 20.67 19.32 1.61 1.82 +vile vil ADJ f s 6.07 3.18 1.72 0.47 +vilebrequin vilebrequin NOM m s 0.13 0.68 0.12 0.68 +vilebrequins vilebrequin NOM m p 0.13 0.68 0.01 0.00 +vilement vilement ADV 0.14 0.00 0.14 0.00 +vilenie vilenie NOM f s 0.58 1.15 0.46 0.74 +vilenies vilenie NOM f p 0.58 1.15 0.13 0.41 +viles vil ADJ f p 6.07 3.18 0.22 0.20 +vilipendaient vilipender VER 0.20 0.61 0.01 0.00 ind:imp:3p; +vilipendant vilipender VER 0.20 0.61 0.01 0.07 par:pre; +vilipender vilipender VER 0.20 0.61 0.15 0.07 inf; +vilipendé vilipender VER m s 0.20 0.61 0.03 0.27 par:pas; +vilipendées vilipender VER f p 0.20 0.61 0.00 0.07 par:pas; +vilipendés vilipender VER m p 0.20 0.61 0.00 0.14 par:pas; +villa villa NOM f s 16.61 33.72 15.30 24.80 +village village NOM m s 95.82 143.99 87.60 118.24 +villageois villageois NOM m 4.83 2.91 4.59 2.36 +villageoise villageois NOM f s 4.83 2.91 0.07 0.27 +villageoises villageois NOM f p 4.83 2.91 0.17 0.27 +villages village NOM m p 95.82 143.99 8.22 25.74 +villas villa NOM f p 16.61 33.72 1.31 8.92 +ville_champignon ville_champignon NOM f s 0.02 0.00 0.02 0.00 +ville_dortoir ville_dortoir NOM f s 0.00 0.07 0.00 0.07 +ville ville NOM f s 295.14 352.97 277.98 311.69 +villes_clé villes_clé NOM f p 0.01 0.00 0.01 0.00 +villes ville NOM f p 295.14 352.97 17.17 41.28 +villette villette NOM f s 0.18 0.88 0.18 0.88 +villégiaturait villégiaturer VER 0.01 0.14 0.00 0.07 ind:imp:3s; +villégiature villégiature NOM f s 0.10 2.70 0.10 2.16 +villégiaturer villégiaturer VER 0.01 0.14 0.01 0.00 inf; +villégiatures villégiature NOM f p 0.10 2.70 0.00 0.54 +villégiaturé villégiaturer VER m s 0.01 0.14 0.00 0.07 par:pas; +vils vil ADJ m p 6.07 3.18 0.59 0.34 +vin vin NOM m s 86.86 110.47 80.92 99.93 +vina vina NOM f 0.11 0.00 0.11 0.00 +vinaigre vinaigre NOM m s 2.91 5.61 2.91 5.54 +vinaigrer vinaigrer VER 0.01 0.47 0.00 0.14 inf; +vinaigres vinaigre NOM m p 2.91 5.61 0.00 0.07 +vinaigrette vinaigrette NOM f s 0.59 0.68 0.59 0.68 +vinaigré vinaigrer VER m s 0.01 0.47 0.01 0.00 par:pas; +vinaigrée vinaigrer VER f s 0.01 0.47 0.00 0.20 par:pas; +vinasse vinasse NOM f s 0.21 1.62 0.21 1.62 +vindicatif vindicatif ADJ m s 1.10 2.23 0.79 1.28 +vindicatifs vindicatif ADJ m p 1.10 2.23 0.07 0.47 +vindicative vindicatif ADJ f s 1.10 2.23 0.12 0.41 +vindicativement vindicativement ADV 0.00 0.07 0.00 0.07 +vindicatives vindicatif ADJ f p 1.10 2.23 0.12 0.07 +vindicte vindicte NOM f s 0.19 1.15 0.19 1.15 +vine viner VER 0.06 0.20 0.04 0.00 imp:pre:2s; +viner viner VER 0.06 0.20 0.01 0.07 inf; +vines viner VER 0.06 0.20 0.00 0.07 ind:pre:2s; +vineuse vineux ADJ f s 0.00 1.76 0.00 0.88 +vineuses vineux ADJ f p 0.00 1.76 0.00 0.27 +vineux vineux ADJ m 0.00 1.76 0.00 0.61 +vinez viner VER 0.06 0.20 0.01 0.07 imp:pre:2p; +vingt_cinq vingt_cinq ADJ:num 3.53 28.18 3.53 28.18 +vingt_cinquième vingt_cinquième ADJ 0.01 0.34 0.01 0.34 +vingt_deux vingt_deux ADJ:num 1.25 8.99 1.25 8.99 +vingt_deuxième vingt_deuxième ADJ 0.03 0.27 0.03 0.27 +vingt_et_un vingt_et_un NOM m 0.28 0.74 0.28 0.68 +vingt_et_un vingt_et_un NOM f s 0.28 0.74 0.01 0.07 +vingt_et_unième vingt_et_unième ADJ 0.01 0.07 0.01 0.07 +vingt_huit vingt_huit ADJ:num 0.97 5.34 0.97 5.34 +vingt_huitième vingt_huitième ADJ 0.00 0.74 0.00 0.74 +vingt_neuf vingt_neuf ADJ:num 0.96 2.77 0.96 2.77 +vingt_neuvième vingt_neuvième ADJ 0.01 0.00 0.01 0.00 +vingt_quatre vingt_quatre ADJ:num 2.13 17.36 2.13 17.36 +vingt_quatrième vingt_quatrième ADJ 0.01 0.27 0.01 0.27 +vingt_sept vingt_sept ADJ:num 0.67 4.59 0.67 4.59 +vingt_septième vingt_septième ADJ 0.00 0.54 0.00 0.54 +vingt_six vingt_six ADJ:num 1.09 7.50 1.09 7.50 +vingt_sixième vingt_sixième ADJ 0.01 0.20 0.01 0.20 +vingt_trois vingt_trois ADJ:num 2.08 7.57 2.08 7.57 +vingt_troisième vingt_troisième ADJ 0.01 0.61 0.01 0.61 +vingt vingt ADJ:num 29.47 154.59 29.47 154.59 +vingtaine vingtaine NOM f s 4.11 15.47 4.11 15.34 +vingtaines vingtaine NOM f p 4.11 15.47 0.00 0.14 +vingtième vingtième ADJ 0.34 3.24 0.34 3.18 +vingtièmes vingtième ADJ 0.34 3.24 0.00 0.07 +vinicole vinicole ADJ s 0.04 0.00 0.04 0.00 +vinificatrice vinificateur NOM f s 0.01 0.00 0.01 0.00 +vinrent venir VER 2763.69 1514.53 1.53 10.54 ind:pas:3p; +vins vin NOM m p 86.86 110.47 5.95 10.54 +vinsse venir VER 2763.69 1514.53 0.00 0.20 sub:imp:1s; +vinssent venir VER 2763.69 1514.53 0.00 1.08 sub:imp:3p; +vint venir VER 2763.69 1514.53 7.58 88.72 ind:pas:3s; +vintage vintage NOM m s 0.17 0.07 0.17 0.07 +vinyle vinyle NOM m s 0.70 0.74 0.34 0.74 +vinyles vinyle NOM m p 0.70 0.74 0.35 0.00 +vinylique vinylique ADJ m s 0.00 0.07 0.00 0.07 +vioc vioc NOM m s 0.04 0.41 0.03 0.34 +viocard viocard NOM m s 0.00 0.14 0.00 0.14 +viocque viocque NOM s 0.00 0.07 0.00 0.07 +viocs vioc NOM m p 0.04 0.41 0.01 0.07 +viol viol NOM m s 15.33 8.51 13.43 7.23 +viola violer VER 39.43 19.19 1.49 0.54 ind:pas:3s; +violacer violacer VER 0.03 1.62 0.00 0.07 inf; +violacé violacé ADJ m s 0.04 5.88 0.01 1.89 +violacée violacé ADJ f s 0.04 5.88 0.02 1.55 +violacées violacer VER f p 0.03 1.62 0.02 0.47 par:pas; +violacés violacé ADJ m p 0.04 5.88 0.01 0.74 +violaient violer VER 39.43 19.19 0.19 0.27 ind:imp:3p; +violais violer VER 39.43 19.19 0.04 0.00 ind:imp:1s;ind:imp:2s; +violait violer VER 39.43 19.19 1.01 0.81 ind:imp:3s; +violant violer VER 39.43 19.19 0.68 0.61 par:pre; +violaçait violacer VER 0.03 1.62 0.00 0.07 ind:imp:3s; +violation violation NOM f s 4.54 1.96 4.09 1.62 +violations violation NOM f p 4.54 1.96 0.46 0.34 +viole violer VER 39.43 19.19 3.00 1.49 imp:pre:2s;ind:pre:1s;ind:pre:3s; +violemment violemment ADV 2.80 20.88 2.80 20.88 +violence violence NOM f s 41.45 56.49 39.66 53.11 +violences violence NOM f p 41.45 56.49 1.79 3.38 +violent violent ADJ m s 24.99 51.49 12.84 19.39 +violentaient violenter VER 0.62 1.42 0.00 0.07 ind:imp:3p; +violentait violenter VER 0.62 1.42 0.01 0.20 ind:imp:3s; +violente violent ADJ f s 24.99 51.49 5.17 18.04 +violenter violenter VER 0.62 1.42 0.16 0.47 inf; +violentes violent ADJ f p 24.99 51.49 2.44 7.84 +violents violent ADJ m p 24.99 51.49 4.54 6.22 +violenté violenter VER m s 0.62 1.42 0.20 0.07 par:pas; +violentée violenter VER f s 0.62 1.42 0.07 0.14 par:pas; +violer violer VER 39.43 19.19 8.36 4.93 inf;; +violerai violer VER 39.43 19.19 0.03 0.07 ind:fut:1s; +violerais violer VER 39.43 19.19 0.10 0.00 cnd:pre:1s;cnd:pre:2s; +violerait violer VER 39.43 19.19 0.21 0.20 cnd:pre:3s; +violeras violer VER 39.43 19.19 0.02 0.00 ind:fut:2s; +violeront violer VER 39.43 19.19 0.05 0.07 ind:fut:3p; +violes violer VER 39.43 19.19 0.55 0.07 ind:pre:2s; +violet violet ADJ m s 4.38 26.28 2.29 7.91 +violeta violeter VER 0.44 0.00 0.44 0.00 ind:pas:3s; +violets violet ADJ m p 4.38 26.28 0.39 4.39 +violette violet ADJ f s 4.38 26.28 1.04 9.12 +violettes violette NOM f p 1.94 6.89 1.17 4.39 +violeur violeur NOM m s 6.41 2.30 4.52 1.35 +violeurs violeur NOM m p 6.41 2.30 1.89 0.88 +violeuses violeur NOM f p 6.41 2.30 0.00 0.07 +violez violer VER 39.43 19.19 0.60 0.00 imp:pre:2p;ind:pre:2p; +violine violine NOM m s 0.00 0.20 0.00 0.20 +violines violine ADJ p 0.00 0.14 0.00 0.07 +violon violon NOM m s 13.65 13.31 11.56 9.73 +violoncelle violoncelle NOM m s 3.28 3.38 3.04 3.31 +violoncelles violoncelle NOM m p 3.28 3.38 0.24 0.07 +violoncelliste violoncelliste NOM s 0.81 0.14 0.79 0.07 +violoncellistes violoncelliste NOM p 0.81 0.14 0.02 0.07 +violone violoner VER 0.00 0.07 0.00 0.07 ind:pre:1s; +violoneux violoneux NOM m 0.00 0.41 0.00 0.41 +violoniste violoniste NOM s 3.07 2.43 2.91 1.82 +violonistes violoniste NOM p 3.07 2.43 0.16 0.61 +violons violon NOM m p 13.65 13.31 2.09 3.58 +violâtre violâtre ADJ s 0.00 0.88 0.00 0.47 +violâtres violâtre ADJ p 0.00 0.88 0.00 0.41 +viols viol NOM m p 15.33 8.51 1.90 1.28 +violé violer VER m s 39.43 19.19 9.36 2.97 par:pas; +violée violer VER f s 39.43 19.19 10.97 3.99 ind:imp:3p;par:pas; +violées violer VER f p 39.43 19.19 1.18 1.89 par:pas; +violés violer VER m p 39.43 19.19 0.70 0.41 par:pas; +vioque vioque NOM f s 0.77 4.93 0.40 4.32 +vioques vioque NOM f p 0.77 4.93 0.38 0.61 +viorne viorne NOM f s 0.00 0.41 0.00 0.20 +viornes viorne NOM f p 0.00 0.41 0.00 0.20 +vipère vipère NOM f s 4.84 5.41 3.42 3.31 +vipères vipère NOM f p 4.84 5.41 1.42 2.09 +vipéreau vipéreau NOM m s 0.00 0.07 0.00 0.07 +vipérine vipérin ADJ f s 0.14 0.20 0.14 0.14 +vipérines vipérin ADJ f p 0.14 0.20 0.00 0.07 +vira virer VER 86.28 37.84 0.03 1.82 ind:pas:3s; +virage virage NOM m s 6.75 12.91 5.98 8.72 +virages virage NOM m p 6.75 12.91 0.77 4.19 +virago virago NOM f s 0.02 0.20 0.01 0.07 +viragos virago NOM f p 0.02 0.20 0.01 0.14 +virai virer VER 86.28 37.84 0.00 0.07 ind:pas:1s; +viraient virer VER 86.28 37.84 0.05 1.08 ind:imp:3p; +virais virer VER 86.28 37.84 0.19 0.07 ind:imp:1s;ind:imp:2s; +virait virer VER 86.28 37.84 0.21 2.30 ind:imp:3s; +viral viral ADJ m s 1.19 0.61 0.35 0.07 +virale viral ADJ f s 1.19 0.61 0.73 0.47 +virales viral ADJ f p 1.19 0.61 0.10 0.07 +virant virer VER 86.28 37.84 0.15 1.49 par:pre; +viraux viral ADJ m p 1.19 0.61 0.01 0.00 +vire virer VER 86.28 37.84 13.27 4.05 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +virement virement NOM m s 1.75 0.34 1.48 0.14 +virements virement NOM m p 1.75 0.34 0.27 0.20 +virent virer VER 86.28 37.84 2.04 11.62 ind:pre:3p; +virer virer VER 86.28 37.84 25.72 6.76 inf; +virera virer VER 86.28 37.84 0.44 0.07 ind:fut:3s; +virerai virer VER 86.28 37.84 0.20 0.00 ind:fut:1s; +virerais virer VER 86.28 37.84 0.21 0.00 cnd:pre:1s;cnd:pre:2s; +virerait virer VER 86.28 37.84 0.14 0.20 cnd:pre:3s; +vireras virer VER 86.28 37.84 0.05 0.00 ind:fut:2s; +virerez virer VER 86.28 37.84 0.09 0.00 ind:fut:2p; +vireront virer VER 86.28 37.84 0.11 0.00 ind:fut:3p; +vires virer VER 86.28 37.84 1.39 0.34 ind:pre:2s;sub:pre:2s; +vireuse vireux ADJ f s 0.00 0.07 0.00 0.07 +virevolta virevolter VER 0.48 2.97 0.00 0.14 ind:pas:3s; +virevoltaient virevolter VER 0.48 2.97 0.11 0.47 ind:imp:3p; +virevoltait virevolter VER 0.48 2.97 0.04 0.34 ind:imp:3s; +virevoltant virevolter VER 0.48 2.97 0.06 0.27 par:pre; +virevoltante virevoltant ADJ f s 0.01 0.41 0.01 0.20 +virevoltantes virevoltant ADJ f p 0.01 0.41 0.00 0.07 +virevolte virevolter VER 0.48 2.97 0.04 0.88 imp:pre:2s;ind:pre:1s;ind:pre:3s; +virevoltent virevolter VER 0.48 2.97 0.04 0.41 ind:pre:3p; +virevolter virevolter VER 0.48 2.97 0.18 0.41 inf; +virevoltes virevolter VER 0.48 2.97 0.01 0.00 ind:pre:2s; +virevolté virevolter VER m s 0.48 2.97 0.00 0.07 par:pas; +virez virer VER 86.28 37.84 6.47 0.00 imp:pre:2p;ind:pre:2p; +virgilien virgilien ADJ m s 0.00 0.41 0.00 0.14 +virgilienne virgilien ADJ f s 0.00 0.41 0.00 0.27 +virginal virginal ADJ m s 0.58 2.30 0.23 0.95 +virginale virginal ADJ f s 0.58 2.30 0.35 0.81 +virginalement virginalement ADV 0.00 0.07 0.00 0.07 +virginales virginal ADJ f p 0.58 2.30 0.00 0.20 +virginaux virginal ADJ m p 0.58 2.30 0.00 0.34 +virginie virginie NOM m s 0.11 31.28 0.11 31.28 +virginien virginien NOM m s 0.07 0.34 0.04 0.07 +virginiens virginien NOM m p 0.07 0.34 0.04 0.27 +virginité virginité NOM f s 4.26 3.58 4.25 3.51 +virginités virginité NOM f p 4.26 3.58 0.01 0.07 +virgule virgule NOM f s 4.69 4.73 4.44 3.04 +virgules virgule NOM f p 4.69 4.73 0.25 1.69 +viriez virer VER 86.28 37.84 0.07 0.00 ind:imp:2p; +viril viril ADJ m s 4.82 10.68 2.81 4.53 +virile viril ADJ f s 4.82 10.68 1.31 3.72 +virilement virilement ADV 0.01 0.61 0.01 0.61 +viriles viril ADJ f p 4.82 10.68 0.25 1.15 +virilise viriliser VER 0.01 0.34 0.00 0.07 ind:pre:3s; +viriliser viriliser VER 0.01 0.34 0.01 0.07 inf; +virilisé viriliser VER m s 0.01 0.34 0.00 0.14 par:pas; +virilisés viriliser VER m p 0.01 0.34 0.00 0.07 par:pas; +virilité virilité NOM f s 2.46 6.69 2.46 6.35 +virilités virilité NOM f p 2.46 6.69 0.00 0.34 +virils viril ADJ m p 4.82 10.68 0.45 1.28 +viroles virole NOM f p 0.00 0.07 0.00 0.07 +virolet virolet NOM m s 0.00 0.07 0.00 0.07 +virologie virologie NOM f s 0.28 0.00 0.28 0.00 +virologiste virologiste NOM s 0.12 0.00 0.12 0.00 +virologue virologue NOM s 0.14 0.00 0.13 0.00 +virologues virologue NOM p 0.14 0.00 0.01 0.00 +virons virer VER 86.28 37.84 0.33 0.00 imp:pre:1p;ind:pre:1p; +virât virer VER 86.28 37.84 0.00 0.07 sub:imp:3s; +virèrent virer VER 86.28 37.84 0.00 0.07 ind:pas:3p; +virtualité virtualité NOM f s 0.03 0.41 0.03 0.20 +virtualités virtualité NOM f p 0.03 0.41 0.00 0.20 +virtuel virtuel ADJ m s 2.38 2.16 1.44 0.81 +virtuelle virtuel ADJ f s 2.38 2.16 0.77 0.54 +virtuellement virtuellement ADV 0.60 1.15 0.60 1.15 +virtuelles virtuel ADJ f p 2.38 2.16 0.09 0.47 +virtuels virtuel ADJ m p 2.38 2.16 0.09 0.34 +virtuose virtuose NOM s 0.80 2.23 0.52 1.55 +virtuoses virtuose NOM p 0.80 2.23 0.28 0.68 +virtuosité virtuosité NOM f s 0.20 1.82 0.20 1.82 +viré virer VER m s 86.28 37.84 25.59 6.28 par:pas;par:pas;par:pas; +virée virer VER f s 86.28 37.84 6.23 0.61 par:pas; +virées virée NOM f p 4.13 3.92 0.70 1.28 +virulence virulence NOM f s 0.12 0.95 0.12 0.95 +virulent virulent ADJ m s 0.96 1.62 0.23 0.41 +virulente virulent ADJ f s 0.96 1.62 0.55 0.81 +virulentes virulent ADJ f p 0.96 1.62 0.14 0.07 +virulents virulent ADJ m p 0.96 1.62 0.03 0.34 +virés virer VER m p 86.28 37.84 3.21 0.81 par:pas; +virus virus NOM m 23.98 6.42 23.98 6.42 +vis_à_vis vis_à_vis PRE 0.00 19.39 0.00 19.39 +vis voir VER 4119.49 2401.76 54.62 38.24 ind:pas:1s;ind:pas:2s; +visa visa NOM m s 7.39 3.38 6.14 2.50 +visage visage NOM m s 141.23 565.00 125.52 490.54 +visages visage NOM m p 141.23 565.00 15.71 74.46 +visagiste visagiste NOM s 0.01 0.14 0.01 0.14 +visai viser VER 38.03 27.57 0.00 0.20 ind:pas:1s; +visaient viser VER 38.03 27.57 0.48 2.03 ind:imp:3p; +visais viser VER 38.03 27.57 1.10 0.61 ind:imp:1s;ind:imp:2s; +visait viser VER 38.03 27.57 1.65 3.18 ind:imp:3s; +visant viser VER 38.03 27.57 1.23 3.38 par:pre; +visas visa NOM m p 7.39 3.38 1.25 0.88 +viscose viscose NOM f s 0.03 0.14 0.03 0.07 +viscoses viscose NOM f p 0.03 0.14 0.00 0.07 +viscosité viscosité NOM f s 0.06 0.74 0.06 0.68 +viscosités viscosité NOM f p 0.06 0.74 0.00 0.07 +viscère viscère NOM m s 0.43 2.97 0.03 0.20 +viscères viscère NOM m p 0.43 2.97 0.40 2.77 +viscéral viscéral ADJ m s 0.37 1.96 0.23 0.61 +viscérale viscéral ADJ f s 0.37 1.96 0.11 1.22 +viscéralement viscéralement ADV 0.07 0.00 0.07 0.00 +viscérales viscéral ADJ f p 0.37 1.96 0.01 0.07 +viscéraux viscéral ADJ m p 0.37 1.96 0.01 0.07 +vise viser VER 38.03 27.57 13.96 7.50 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visent viser VER 38.03 27.57 1.32 0.88 ind:pre:3p; +viser viser VER 38.03 27.57 5.87 4.05 inf; +visera viser VER 38.03 27.57 0.14 0.00 ind:fut:3s; +viserai viser VER 38.03 27.57 0.07 0.07 ind:fut:1s; +viseraient viser VER 38.03 27.57 0.01 0.14 cnd:pre:3p; +viserais viser VER 38.03 27.57 0.14 0.00 cnd:pre:1s;cnd:pre:2s; +viserait viser VER 38.03 27.57 0.02 0.20 cnd:pre:3s; +viseront viser VER 38.03 27.57 0.05 0.07 ind:fut:3p; +vises viser VER 38.03 27.57 1.44 0.27 ind:pre:2s; +viseur viseur NOM m s 1.93 1.22 1.48 1.08 +viseurs viseur NOM m p 1.93 1.22 0.45 0.14 +visez viser VER 38.03 27.57 5.69 1.22 imp:pre:2p;ind:pre:2p; +vishnouisme vishnouisme NOM m s 0.02 0.00 0.02 0.00 +visibilité visibilité NOM f s 1.27 1.55 1.27 1.55 +visible visible ADJ s 8.98 30.61 7.41 24.05 +visiblement visiblement ADV 6.94 23.99 6.94 23.99 +visibles visible ADJ p 8.98 30.61 1.57 6.55 +visiez viser VER 38.03 27.57 0.17 0.00 ind:imp:2p; +visioconférence visioconférence NOM f s 0.01 0.00 0.01 0.00 +vision vision NOM f s 35.48 41.82 25.81 33.78 +visionna visionner VER 1.56 0.88 0.01 0.00 ind:pas:3s; +visionnage visionnage NOM m s 0.16 0.07 0.16 0.07 +visionnaire visionnaire NOM m s 1.46 1.15 1.08 0.88 +visionnaires visionnaire NOM m p 1.46 1.15 0.38 0.27 +visionnant visionner VER 1.56 0.88 0.04 0.00 par:pre; +visionne visionner VER 1.56 0.88 0.13 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visionnent visionner VER 1.56 0.88 0.01 0.00 ind:pre:3p; +visionner visionner VER 1.56 0.88 0.56 0.34 inf; +visionnera visionner VER 1.56 0.88 0.04 0.00 ind:fut:3s; +visionneront visionner VER 1.56 0.88 0.02 0.00 ind:fut:3p; +visionneuse visionneur NOM f s 0.06 0.14 0.06 0.14 +visionnez visionner VER 1.56 0.88 0.20 0.00 imp:pre:2p;ind:pre:2p; +visionnons visionner VER 1.56 0.88 0.04 0.00 imp:pre:1p; +visionné visionner VER m s 1.56 0.88 0.51 0.00 par:pas; +visionnés visionner VER m p 1.56 0.88 0.00 0.07 par:pas; +visions vision NOM f p 35.48 41.82 9.66 8.04 +visiophone visiophone NOM m s 0.01 0.00 0.01 0.00 +visita visiter VER 34.92 52.16 0.26 2.16 ind:pas:3s; +visitai visiter VER 34.92 52.16 0.00 1.01 ind:pas:1s; +visitaient visiter VER 34.92 52.16 0.04 0.95 ind:imp:3p; +visitais visiter VER 34.92 52.16 0.46 0.54 ind:imp:1s;ind:imp:2s; +visitait visiter VER 34.92 52.16 0.33 2.77 ind:imp:3s; +visitandines visitandine NOM f p 0.00 0.07 0.00 0.07 +visitant visiter VER 34.92 52.16 0.24 1.96 par:pre; +visitation visitation NOM f s 0.15 0.95 0.15 0.95 +visite_éclair visite_éclair NOM f s 0.00 0.07 0.00 0.07 +visite visite NOM f s 99.95 99.32 86.34 80.61 +visitent visiter VER 34.92 52.16 0.52 0.54 ind:pre:3p; +visiter visiter VER 34.92 52.16 21.23 23.18 inf; +visitera visiter VER 34.92 52.16 0.05 0.00 ind:fut:3s; +visiterai visiter VER 34.92 52.16 0.33 0.07 ind:fut:1s; +visiteraient visiter VER 34.92 52.16 0.00 0.07 cnd:pre:3p; +visiterait visiter VER 34.92 52.16 0.02 0.27 cnd:pre:3s; +visiteras visiter VER 34.92 52.16 0.03 0.14 ind:fut:2s; +visiterez visiter VER 34.92 52.16 0.06 0.34 ind:fut:2p; +visiterons visiter VER 34.92 52.16 0.17 0.27 ind:fut:1p; +visites visite NOM f p 99.95 99.32 13.60 18.72 +visiteur visiteur NOM m s 12.46 35.54 4.74 15.07 +visiteurs visiteur NOM m p 12.46 35.54 7.55 16.76 +visiteuse visiteur NOM f s 12.46 35.54 0.16 2.97 +visiteuses visiteuse NOM f p 0.16 0.00 0.16 0.00 +visitez visiter VER 34.92 52.16 1.14 0.74 imp:pre:2p;ind:pre:2p; +visière visière NOM f s 0.37 10.14 0.33 9.19 +visières visière NOM f p 0.37 10.14 0.04 0.95 +visitiez visiter VER 34.92 52.16 0.13 0.07 ind:imp:2p; +visitions visiter VER 34.92 52.16 0.02 0.61 ind:imp:1p; +visitâmes visiter VER 34.92 52.16 0.00 0.47 ind:pas:1p; +visitons visiter VER 34.92 52.16 0.40 0.34 imp:pre:1p;ind:pre:1p; +visitât visiter VER 34.92 52.16 0.00 0.27 sub:imp:3s; +visitèrent visiter VER 34.92 52.16 0.01 0.61 ind:pas:3p; +visité visiter VER m s 34.92 52.16 4.15 6.01 par:pas; +visitée visiter VER f s 34.92 52.16 0.32 1.42 par:pas; +visitées visiter VER f p 34.92 52.16 0.30 0.54 par:pas; +visités visiter VER m p 34.92 52.16 0.27 0.95 par:pas; +vison vison NOM m s 1.65 2.97 1.56 2.30 +visons viser VER 38.03 27.57 0.16 0.00 imp:pre:1p;ind:pre:1p; +visqueuse visqueux ADJ f s 1.71 7.43 0.53 2.57 +visqueuses visqueux ADJ f p 1.71 7.43 0.24 0.74 +visqueux visqueux ADJ m 1.71 7.43 0.94 4.12 +vissa visser VER 2.90 8.24 0.00 0.61 ind:pas:3s; +vissaient visser VER 2.90 8.24 0.00 0.07 ind:imp:3p; +vissait visser VER 2.90 8.24 0.01 0.68 ind:imp:3s; +vissant visser VER 2.90 8.24 0.10 0.34 par:pre; +visse visser VER 2.90 8.24 0.33 0.54 ind:pre:1s;ind:pre:3s; +vissent visser VER 2.90 8.24 0.11 0.00 ind:pre:3p; +visser visser VER 2.90 8.24 1.45 0.88 inf; +visserait visser VER 2.90 8.24 0.00 0.07 cnd:pre:3s; +visserie visserie NOM f s 0.02 0.00 0.02 0.00 +vissez visser VER 2.90 8.24 0.17 0.00 imp:pre:2p;ind:pre:2p; +vissèrent visser VER 2.90 8.24 0.00 0.07 ind:pas:3p; +vissé visser VER m s 2.90 8.24 0.42 2.84 par:pas; +vissée visser VER f s 2.90 8.24 0.17 0.81 par:pas; +vissées vissé ADJ f p 0.11 0.20 0.01 0.07 +vissés visser VER m p 2.90 8.24 0.14 0.74 par:pas; +vista vista NOM f s 0.86 0.14 0.86 0.14 +visé viser VER m s 38.03 27.57 3.70 2.23 par:pas; +visualisaient visualiser VER 1.41 0.34 0.00 0.07 ind:imp:3p; +visualisais visualiser VER 1.41 0.34 0.05 0.00 ind:imp:1s;ind:imp:2s; +visualisant visualiser VER 1.41 0.34 0.01 0.00 par:pre; +visualisation visualisation NOM f s 0.21 0.00 0.21 0.00 +visualise visualiser VER 1.41 0.34 0.25 0.14 imp:pre:2s;ind:pre:1s;ind:pre:3s; +visualiser visualiser VER 1.41 0.34 0.48 0.00 inf; +visualiserai visualiser VER 1.41 0.34 0.01 0.00 ind:fut:1s; +visualises visualiser VER 1.41 0.34 0.29 0.07 ind:pre:2s; +visualisez visualiser VER 1.41 0.34 0.25 0.00 imp:pre:2p;ind:pre:2p; +visualisé visualiser VER m s 1.41 0.34 0.04 0.00 par:pas; +visualisée visualiser VER f s 1.41 0.34 0.00 0.07 par:pas; +visualisées visualiser VER f p 1.41 0.34 0.01 0.00 par:pas; +visualisés visualiser VER m p 1.41 0.34 0.01 0.00 par:pas; +visée visée NOM f s 0.93 2.57 0.73 1.49 +visuel visuel ADJ m s 6.71 3.24 4.38 1.96 +visuelle visuel ADJ f s 6.71 3.24 1.34 0.68 +visuellement visuellement ADV 0.32 0.14 0.32 0.14 +visuelles visuel ADJ f p 6.71 3.24 0.26 0.20 +visuels visuel ADJ m p 6.71 3.24 0.73 0.41 +visées visée NOM f p 0.93 2.57 0.20 1.08 +visés visé ADJ m p 2.05 1.62 0.30 0.34 +vit vivre VER 510.05 460.34 74.42 39.80 ind:pre:3s; +vital vital ADJ m s 12.24 9.80 4.17 4.86 +vitale vital ADJ f s 12.24 9.80 4.11 3.11 +vitales vital ADJ f p 12.24 9.80 1.13 0.95 +vitaliser vitaliser VER 0.01 0.00 0.01 0.00 inf; +vitalité vitalité NOM f s 1.08 6.49 1.08 6.49 +vitamine vitamine NOM f s 5.77 2.30 1.31 0.34 +vitaminer vitaminer VER 0.00 0.07 0.00 0.07 inf; +vitamines vitamine NOM f p 5.77 2.30 4.46 1.96 +vitaminé vitaminé ADJ m s 0.12 0.20 0.03 0.00 +vitaminée vitaminé ADJ f s 0.12 0.20 0.07 0.14 +vitaminées vitaminé ADJ f p 0.12 0.20 0.02 0.00 +vitaminés vitaminé ADJ m p 0.12 0.20 0.00 0.07 +vitaux vital ADJ m p 12.24 9.80 2.84 0.88 +vite vite ADV 491.64 351.89 491.64 351.89 +vitellin vitellin ADJ m s 0.01 0.00 0.01 0.00 +vitement vitement ADV 0.00 0.07 0.00 0.07 +vitesse vitesse NOM f s 40.12 57.84 37.89 54.59 +vitesses vitesse NOM f p 40.12 57.84 2.23 3.24 +viticole viticole ADJ s 0.04 0.00 0.04 0.00 +viticulteur viticulteur NOM m s 0.60 0.68 0.05 0.34 +viticulteurs viticulteur NOM m p 0.60 0.68 0.16 0.34 +viticultrice viticulteur NOM f s 0.60 0.68 0.40 0.00 +viticulture viticulture NOM f s 0.03 0.00 0.03 0.00 +vitiligo vitiligo NOM m s 0.01 0.00 0.01 0.00 +vitrage vitrage NOM m s 0.24 0.81 0.14 0.54 +vitrages vitrage NOM m p 0.24 0.81 0.10 0.27 +vitrail vitrail NOM m s 1.77 7.77 1.38 3.58 +vitrauphanie vitrauphanie NOM f s 0.00 0.07 0.00 0.07 +vitraux vitrail NOM m p 1.77 7.77 0.40 4.19 +vitre vitre NOM f s 16.35 76.22 10.21 41.28 +vitres vitre NOM f p 16.35 76.22 6.14 34.93 +vitreuse vitreux ADJ f s 0.34 4.53 0.00 0.47 +vitreuses vitreux ADJ f p 0.34 4.53 0.01 0.14 +vitreux vitreux ADJ m 0.34 4.53 0.33 3.92 +vitrier vitrier NOM m s 0.20 0.74 0.17 0.68 +vitriers vitrier NOM m p 0.20 0.74 0.03 0.07 +vitrifia vitrifier VER 0.05 1.69 0.00 0.07 ind:pas:3s; +vitrifie vitrifier VER 0.05 1.69 0.01 0.07 ind:pre:1s;ind:pre:3s; +vitrifient vitrifier VER 0.05 1.69 0.00 0.07 ind:pre:3p; +vitrifier vitrifier VER 0.05 1.69 0.01 0.14 inf; +vitrifié vitrifier VER m s 0.05 1.69 0.01 0.88 par:pas; +vitrifiée vitrifier VER f s 0.05 1.69 0.01 0.20 par:pas; +vitrifiées vitrifier VER f p 0.05 1.69 0.00 0.07 par:pas; +vitrifiés vitrifier VER m p 0.05 1.69 0.01 0.20 par:pas; +vitrine vitrine NOM f s 6.84 33.99 5.09 20.68 +vitrines vitrine NOM f p 6.84 33.99 1.75 13.31 +vitriol vitriol NOM m s 0.43 0.74 0.43 0.68 +vitrioler vitrioler VER 0.01 0.20 0.01 0.00 inf; +vitrioleurs vitrioleur NOM m p 0.00 0.07 0.00 0.07 +vitriolique vitriolique ADJ f s 0.00 0.07 0.00 0.07 +vitriols vitriol NOM m p 0.43 0.74 0.00 0.07 +vitriolé vitrioler VER m s 0.01 0.20 0.00 0.20 par:pas; +vitrophanie vitrophanie NOM f s 0.00 0.07 0.00 0.07 +vitré vitré ADJ m s 0.57 15.61 0.06 1.62 +vitrée vitré ADJ f s 0.57 15.61 0.30 11.22 +vitrées vitré ADJ f p 0.57 15.61 0.21 2.36 +vitrés vitré ADJ m p 0.57 15.61 0.00 0.41 +vits vit NOM m p 0.00 0.14 0.00 0.14 +vitupère vitupérer VER 0.02 1.08 0.00 0.07 imp:pre:2s; +vitupéraient vitupérer VER 0.02 1.08 0.00 0.07 ind:imp:3p; +vitupérait vitupérer VER 0.02 1.08 0.00 0.41 ind:imp:3s; +vitupérant vitupérer VER 0.02 1.08 0.00 0.27 par:pre; +vitupérations vitupération NOM f p 0.00 0.07 0.00 0.07 +vitupérer vitupérer VER 0.02 1.08 0.02 0.27 inf; +vivable vivable ADJ s 0.41 1.35 0.40 1.08 +vivables vivable ADJ p 0.41 1.35 0.01 0.27 +vivace vivace ADJ s 0.52 4.66 0.35 3.58 +vivaces vivace ADJ p 0.52 4.66 0.17 1.08 +vivacité vivacité NOM f s 0.74 8.58 0.74 8.51 +vivacités vivacité NOM f p 0.74 8.58 0.00 0.07 +vivaient vivre VER 510.05 460.34 6.18 15.74 ind:imp:3p; +vivais vivre VER 510.05 460.34 8.91 10.81 ind:imp:1s;ind:imp:2s; +vivait vivre VER 510.05 460.34 20.50 53.18 ind:imp:3s; +vivandier vivandier NOM m s 0.10 0.34 0.10 0.00 +vivandiers vivandier NOM m p 0.10 0.34 0.00 0.14 +vivandière vivandier NOM f s 0.10 0.34 0.00 0.14 +vivandières vivandière NOM f p 0.01 0.00 0.01 0.00 +vivant vivant ADJ m s 124.97 92.23 76.38 41.15 +vivante vivant ADJ f s 124.97 92.23 28.12 29.32 +vivantes vivant ADJ f p 124.97 92.23 3.31 6.35 +vivants vivant ADJ m p 124.97 92.23 17.16 15.41 +vivarium vivarium NOM m s 0.03 0.41 0.03 0.41 +vivat vivat NOM m s 0.84 0.00 0.84 0.00 +vivats vivats NOM m p 0.06 1.82 0.06 1.82 +vive vive ONO 35.95 12.09 35.95 12.09 +vivement vivement ADV 5.85 29.86 5.85 29.86 +vivent vivre VER 510.05 460.34 30.50 19.39 ind:pre:3p;sub:pre:3p; +vives vif ADJ f p 22.95 95.07 1.71 12.70 +viveur viveur NOM m s 0.03 0.41 0.03 0.34 +viveurs viveur NOM m p 0.03 0.41 0.00 0.07 +vivez vivre VER 510.05 460.34 15.09 2.84 imp:pre:2p;ind:pre:2p; +vivier vivier NOM m s 0.10 1.42 0.07 1.15 +viviers vivier NOM m p 0.10 1.42 0.02 0.27 +viviez vivre VER 510.05 460.34 1.94 0.74 ind:imp:2p; +vivifiait vivifier VER 0.22 1.15 0.02 0.14 ind:imp:3s; +vivifiant vivifiant ADJ m s 0.58 1.28 0.29 0.81 +vivifiante vivifiant ADJ f s 0.58 1.28 0.17 0.47 +vivifiantes vivifiant ADJ f p 0.58 1.28 0.10 0.00 +vivifiants vivifiant ADJ m p 0.58 1.28 0.01 0.00 +vivification vivification NOM f s 0.01 0.00 0.01 0.00 +vivifie vivifier VER 0.22 1.15 0.01 0.07 ind:pre:3s; +vivifier vivifier VER 0.22 1.15 0.01 0.07 inf; +vivifié vivifier VER m s 0.22 1.15 0.11 0.14 par:pas; +vivifiée vivifier VER f s 0.22 1.15 0.01 0.34 par:pas; +vivifiées vivifier VER f p 0.22 1.15 0.02 0.14 par:pas; +vivions vivre VER 510.05 460.34 2.69 7.64 ind:imp:1p; +vivisecteur vivisecteur NOM m s 0.04 0.00 0.04 0.00 +vivisection vivisection NOM f s 0.34 0.41 0.34 0.14 +vivisections vivisection NOM f p 0.34 0.41 0.00 0.27 +vivons vivre VER 510.05 460.34 12.40 7.64 imp:pre:1p;ind:pre:1p; +vivota vivoter VER 0.47 1.28 0.00 0.07 ind:pas:3s; +vivotaient vivoter VER 0.47 1.28 0.00 0.07 ind:imp:3p; +vivotais vivoter VER 0.47 1.28 0.01 0.07 ind:imp:1s; +vivotait vivoter VER 0.47 1.28 0.14 0.47 ind:imp:3s; +vivotant vivoter VER 0.47 1.28 0.00 0.14 par:pre; +vivote vivoter VER 0.47 1.28 0.27 0.20 ind:pre:1s;ind:pre:3s; +vivotent vivoter VER 0.47 1.28 0.00 0.07 ind:pre:3p; +vivoter vivoter VER 0.47 1.28 0.02 0.14 inf; +vivotèrent vivoter VER 0.47 1.28 0.00 0.07 ind:pas:3p; +vivoté vivoter VER m s 0.47 1.28 0.03 0.00 par:pas; +vivra vivre VER 510.05 460.34 7.86 2.64 ind:fut:3s; +vivrai vivre VER 510.05 460.34 5.25 1.62 ind:fut:1s; +vivraient vivre VER 510.05 460.34 0.65 0.68 cnd:pre:3p; +vivrais vivre VER 510.05 460.34 1.58 1.49 cnd:pre:1s;cnd:pre:2s; +vivrait vivre VER 510.05 460.34 2.56 3.38 cnd:pre:3s; +vivras vivre VER 510.05 460.34 3.84 0.27 ind:fut:2s; +vivre vivre VER 510.05 460.34 218.39 186.82 inf; +vivres vivre NOM m p 12.61 10.34 7.37 6.89 +vivrez vivre VER 510.05 460.34 3.24 0.41 ind:fut:2p; +vivriers vivrier ADJ m p 0.00 0.07 0.00 0.07 +vivriez vivre VER 510.05 460.34 0.05 0.07 cnd:pre:2p; +vivrions vivre VER 510.05 460.34 0.32 0.00 cnd:pre:1p; +vivrons vivre VER 510.05 460.34 3.28 1.42 ind:fut:1p; +vivront vivre VER 510.05 460.34 1.22 0.41 ind:fut:3p; +vizir vizir NOM m s 0.15 7.97 0.15 7.03 +vizirs vizir NOM m p 0.15 7.97 0.00 0.95 +vlan vlan ONO 1.05 3.18 1.05 3.18 +vlouf vlouf ONO 0.00 0.54 0.00 0.54 +voïvodie voïvodie NOM f s 0.40 0.00 0.27 0.00 +voïvodies voïvodie NOM f p 0.40 0.00 0.14 0.00 +voûta voûter VER 0.18 5.54 0.00 0.20 ind:pas:3s; +voûtaient voûter VER 0.18 5.54 0.00 0.14 ind:imp:3p; +voûtait voûter VER 0.18 5.54 0.00 0.54 ind:imp:3s; +voûtant voûter VER 0.18 5.54 0.00 0.14 par:pre; +voûte voûte NOM f s 2.21 27.09 1.71 18.85 +voûtent voûter VER 0.18 5.54 0.00 0.14 ind:pre:3p; +voûter voûter VER 0.18 5.54 0.01 0.34 inf; +voûtes voûte NOM f p 2.21 27.09 0.50 8.24 +voûtât voûter VER 0.18 5.54 0.00 0.07 sub:imp:3s; +voûtèrent voûter VER 0.18 5.54 0.00 0.14 ind:pas:3p; +voûté voûté ADJ m s 0.41 11.82 0.35 6.89 +voûtée voûté ADJ f s 0.41 11.82 0.01 2.50 +voûtées voûté ADJ f p 0.41 11.82 0.01 1.42 +voûtés voûté ADJ m p 0.41 11.82 0.04 1.01 +vocable vocable NOM m s 0.22 2.16 0.02 1.08 +vocables vocable NOM m p 0.22 2.16 0.20 1.08 +vocabulaire vocabulaire NOM m s 3.02 10.41 3.02 10.27 +vocabulaires vocabulaire NOM m p 3.02 10.41 0.00 0.14 +vocal vocal ADJ m s 4.63 3.72 1.13 0.68 +vocale vocal ADJ f s 4.63 3.72 2.45 0.68 +vocalement vocalement ADV 0.01 0.07 0.01 0.07 +vocales vocal ADJ f p 4.63 3.72 0.84 2.23 +vocalique vocalique ADJ f s 0.00 0.07 0.00 0.07 +vocalisait vocaliser VER 0.02 0.34 0.00 0.14 ind:imp:3s; +vocalisant vocaliser VER 0.02 0.34 0.01 0.07 par:pre; +vocalisation vocalisation NOM f s 0.02 0.27 0.02 0.14 +vocalisations vocalisation NOM f p 0.02 0.27 0.00 0.14 +vocalise vocalise NOM f s 0.05 1.28 0.00 0.27 +vocaliser vocaliser VER 0.02 0.34 0.01 0.00 inf; +vocalises vocalise NOM f p 0.05 1.28 0.05 1.01 +vocaliste vocaliste NOM s 0.02 0.07 0.02 0.07 +vocatif vocatif NOM m s 0.01 0.14 0.01 0.00 +vocatifs vocatif NOM m p 0.01 0.14 0.00 0.14 +vocation vocation NOM f s 9.26 22.84 8.87 21.82 +vocations vocation NOM f p 9.26 22.84 0.39 1.01 +vocaux vocal ADJ m p 4.63 3.72 0.21 0.14 +vocifère vociférer VER 0.49 3.92 0.16 0.74 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vocifèrent vociférer VER 0.49 3.92 0.00 0.14 ind:pre:3p; +vociféra vociférer VER 0.49 3.92 0.00 0.54 ind:pas:3s; +vociférai vociférer VER 0.49 3.92 0.00 0.07 ind:pas:1s; +vociféraient vociférer VER 0.49 3.92 0.00 0.14 ind:imp:3p; +vociférais vociférer VER 0.49 3.92 0.00 0.14 ind:imp:1s; +vociférait vociférer VER 0.49 3.92 0.01 0.68 ind:imp:3s; +vociférant vociférant ADJ m s 0.14 0.95 0.14 0.34 +vociférante vociférant ADJ f s 0.14 0.95 0.00 0.14 +vociférantes vociférant ADJ f p 0.14 0.95 0.00 0.34 +vociférants vociférant ADJ m p 0.14 0.95 0.00 0.14 +vocifération vocifération NOM f s 0.02 2.03 0.00 0.14 +vociférations vocifération NOM f p 0.02 2.03 0.02 1.89 +vociférer vociférer VER 0.49 3.92 0.29 0.54 inf; +vociférés vociférer VER m p 0.49 3.92 0.00 0.07 par:pas; +vocodeur vocodeur NOM m s 0.01 0.00 0.01 0.00 +vodka vodka NOM f s 17.07 8.31 16.93 8.24 +vodkas vodka NOM f p 17.07 8.31 0.14 0.07 +vodou vodou NOM m s 0.04 0.00 0.03 0.00 +vodous vodou NOM m p 0.04 0.00 0.01 0.00 +voeu voeu NOM m s 28.58 21.28 10.72 10.61 +voeux voeu NOM m p 28.58 21.28 17.86 10.68 +vogua voguer VER 2.69 6.35 0.14 0.07 ind:pas:3s; +voguaient voguer VER 2.69 6.35 0.00 0.14 ind:imp:3p; +voguais voguer VER 2.69 6.35 0.02 0.00 ind:imp:1s;ind:imp:2s; +voguait voguer VER 2.69 6.35 0.28 1.35 ind:imp:3s; +voguant voguer VER 2.69 6.35 0.13 0.54 par:pre; +vogue vogue NOM f s 2.43 3.58 2.43 3.51 +voguent voguer VER 2.69 6.35 0.26 0.61 ind:pre:3p;sub:pre:3p; +voguer voguer VER 2.69 6.35 1.18 1.15 inf; +voguera voguer VER 2.69 6.35 0.03 0.07 ind:fut:3s; +voguerai voguer VER 2.69 6.35 0.04 0.00 ind:fut:1s; +voguerait voguer VER 2.69 6.35 0.00 0.07 cnd:pre:3s; +voguerions voguer VER 2.69 6.35 0.00 0.07 cnd:pre:1p; +voguerons voguer VER 2.69 6.35 0.12 0.07 ind:fut:1p; +vogues voguer VER 2.69 6.35 0.01 0.07 ind:pre:2s; +voguions voguer VER 2.69 6.35 0.01 0.41 ind:imp:1p; +voguons voguer VER 2.69 6.35 0.09 0.14 imp:pre:1p;ind:pre:1p; +vogué voguer VER m s 2.69 6.35 0.02 0.34 par:pas; +voici voici PRE 277.59 97.30 277.59 97.30 +voie voie NOM f s 56.06 71.01 47.01 53.58 +voient voir VER 4119.49 2401.76 26.16 20.20 ind:pre:3p;sub:pre:3p; +voies voie NOM f p 56.06 71.01 9.05 17.43 +voila voiler VER 39.65 14.73 35.54 1.35 ind:pas:3s; +voilage voilage NOM m s 0.00 0.74 0.00 0.27 +voilages voilage NOM m p 0.00 0.74 0.00 0.47 +voilaient voiler VER 39.65 14.73 0.00 0.88 ind:imp:3p; +voilais voiler VER 39.65 14.73 0.02 0.07 ind:imp:1s; +voilait voiler VER 39.65 14.73 0.02 1.69 ind:imp:3s; +voilant voiler VER 39.65 14.73 0.00 0.74 par:pre; +voile voile NOM s 20.51 48.31 15.49 30.27 +voilent voiler VER 39.65 14.73 0.13 0.47 ind:pre:3p; +voiler voiler VER 39.65 14.73 0.68 1.42 inf; +voilera voiler VER 39.65 14.73 0.14 0.00 ind:fut:3s; +voileront voiler VER 39.65 14.73 0.01 0.00 ind:fut:3p; +voiles voile NOM p 20.51 48.31 5.02 18.04 +voilette voilette NOM f s 0.06 2.97 0.05 2.57 +voilettes voilette NOM f p 0.06 2.97 0.01 0.41 +voilez voiler VER 39.65 14.73 0.08 0.07 imp:pre:2p;ind:pre:2p; +voilier voilier NOM m s 1.94 4.86 1.67 2.77 +voiliers voilier NOM m p 1.94 4.86 0.27 2.09 +voilà voilà PRE 726.44 329.12 726.44 329.12 +voilons voiler VER 39.65 14.73 0.06 0.14 imp:pre:1p;ind:pre:1p; +voilèrent voiler VER 39.65 14.73 0.00 0.07 ind:pas:3p; +voilé voiler VER m s 39.65 14.73 0.30 2.09 par:pas; +voilée voilé ADJ f s 1.50 6.08 0.90 2.30 +voilées voilé ADJ f p 1.50 6.08 0.10 1.28 +voilure voilure NOM f s 0.17 0.74 0.16 0.47 +voilures voilure NOM f p 0.17 0.74 0.01 0.27 +voilés voilé ADJ m p 1.50 6.08 0.31 0.95 +voir voir VER 4119.49 2401.76 1401.10 716.55 ind:imp:3s;inf; +voire voire ADV 7.42 16.89 7.42 16.89 +voirie voirie NOM f s 0.77 1.22 0.77 1.22 +vois voir VER 4119.49 2401.76 689.75 253.72 imp:pre:2s;ind:pre:1s;ind:pre:2s; +voisin voisin NOM m s 56.00 81.82 19.55 28.85 +voisinage voisinage NOM m s 5.17 10.41 5.16 10.34 +voisinages voisinage NOM m p 5.17 10.41 0.01 0.07 +voisinaient voisiner VER 0.04 3.31 0.00 1.08 ind:imp:3p; +voisinait voisiner VER 0.04 3.31 0.00 0.47 ind:imp:3s; +voisinant voisiner VER 0.04 3.31 0.00 0.41 par:pre; +voisine voisin NOM f s 56.00 81.82 10.92 15.07 +voisinent voisiner VER 0.04 3.31 0.01 0.61 ind:pre:3p; +voisiner voisiner VER 0.04 3.31 0.01 0.34 inf; +voisines voisin ADJ f p 14.31 49.73 1.67 5.54 +voisins voisin NOM m p 56.00 81.82 24.33 33.31 +voisiné voisiner VER m s 0.04 3.31 0.01 0.00 par:pas; +voit voir VER 4119.49 2401.76 181.98 158.78 ind:pre:3s; +voituraient voiturer VER 2.05 0.88 0.00 0.07 ind:imp:3p; +voiturait voiturer VER 2.05 0.88 0.00 0.07 ind:imp:3s; +voiture_balai voiture_balai NOM f s 0.23 0.07 0.23 0.00 +voiture_bar voiture_bar NOM f s 0.01 0.00 0.01 0.00 +voiture_lit voiture_lit NOM f s 0.01 0.00 0.01 0.00 +voiture_restaurant voiture_restaurant NOM f s 0.05 0.00 0.05 0.00 +voiture voiture NOM s 429.40 283.11 388.87 221.15 +voiturer voiturer VER 2.05 0.88 0.02 0.14 inf; +voitureront voiturer VER 2.05 0.88 0.00 0.07 ind:fut:3p; +voiture_balai voiture_balai NOM f p 0.23 0.07 0.00 0.07 +voitures voiture NOM f p 429.40 283.11 40.53 61.96 +voiturette voiturette NOM f s 0.38 0.74 0.35 0.34 +voiturettes voiturette NOM f p 0.38 0.74 0.02 0.41 +voiturier voiturier NOM m s 0.86 0.47 0.70 0.47 +voituriers voiturier NOM m p 0.86 0.47 0.16 0.00 +voiturin voiturin NOM m s 0.00 0.07 0.00 0.07 +voituré voiturer VER m s 2.05 0.88 0.00 0.07 par:pas; +voix_off voix_off NOM f 0.04 0.00 0.04 0.00 +voix voix NOM f 130.83 612.70 130.83 612.70 +vol_au_vent vol_au_vent NOM m 0.02 0.14 0.02 0.14 +vol vol NOM m s 82.42 48.31 74.14 41.22 +vola voler VER 238.82 88.65 0.93 1.96 ind:pas:3s; +volage volage ADJ s 1.79 1.62 1.69 1.62 +volages volage ADJ p 1.79 1.62 0.10 0.00 +volai voler VER 238.82 88.65 0.14 0.27 ind:pas:1s; +volaient voler VER 238.82 88.65 1.14 5.20 ind:imp:3p; +volaille volaille NOM f s 2.61 6.49 2.31 3.45 +volailler volailler NOM m s 0.02 0.20 0.02 0.07 +volaillers volailler NOM m p 0.02 0.20 0.00 0.14 +volailles volaille NOM f p 2.61 6.49 0.30 3.04 +volais voler VER 238.82 88.65 2.02 1.08 ind:imp:1s;ind:imp:2s; +volait voler VER 238.82 88.65 4.45 5.95 ind:imp:3s; +volant volant NOM m s 19.65 37.30 19.23 33.51 +volante volant ADJ f s 8.78 9.66 2.81 1.62 +volantes volant ADJ f p 8.78 9.66 1.24 1.96 +volants volant ADJ m p 8.78 9.66 2.47 2.03 +volanté volanter VER m s 0.05 0.14 0.00 0.07 par:pas; +volapük volapük NOM m s 0.00 0.07 0.00 0.07 +volassent voler VER 238.82 88.65 0.00 0.07 sub:imp:3p; +volatil volatil ADJ m s 0.64 1.49 0.06 0.34 +volatile volatil ADJ f s 0.64 1.49 0.49 0.61 +volatiles volatile NOM m p 0.47 2.57 0.30 1.22 +volatilisa volatiliser VER 2.00 2.97 0.00 0.14 ind:pas:3s; +volatilisaient volatiliser VER 2.00 2.97 0.00 0.14 ind:imp:3p; +volatilisait volatiliser VER 2.00 2.97 0.02 0.14 ind:imp:3s; +volatilisant volatiliser VER 2.00 2.97 0.00 0.07 par:pre; +volatilisation volatilisation NOM f s 0.01 0.00 0.01 0.00 +volatilise volatiliser VER 2.00 2.97 0.07 0.14 imp:pre:2s;ind:pre:3s; +volatilisent volatiliser VER 2.00 2.97 0.05 0.14 ind:pre:3p; +volatiliser volatiliser VER 2.00 2.97 0.13 0.27 inf; +volatilisé volatiliser VER m s 2.00 2.97 0.95 0.68 par:pas; +volatilisée volatiliser VER f s 2.00 2.97 0.56 0.54 par:pas; +volatilisées volatiliser VER f p 2.00 2.97 0.02 0.20 par:pas; +volatilisés volatiliser VER m p 2.00 2.97 0.20 0.54 par:pas; +volatilité volatilité NOM f s 0.04 0.00 0.04 0.00 +volatils volatil ADJ m p 0.64 1.49 0.01 0.20 +volcan volcan NOM m s 5.50 5.34 4.52 3.85 +volcanique volcanique ADJ s 0.91 1.69 0.69 1.15 +volcaniques volcanique ADJ p 0.91 1.69 0.22 0.54 +volcanologique volcanologique ADJ m s 0.01 0.00 0.01 0.00 +volcanologue volcanologue NOM s 0.02 0.00 0.02 0.00 +volcans volcan NOM m p 5.50 5.34 0.98 1.49 +vole voler VER 238.82 88.65 35.31 10.07 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +volent voler VER 238.82 88.65 9.53 5.61 ind:pre:3p; +voler voler VER 238.82 88.65 67.88 26.01 inf; +volera voler VER 238.82 88.65 2.68 0.47 ind:fut:3s; +volerai voler VER 238.82 88.65 1.00 0.07 ind:fut:1s; +voleraient voler VER 238.82 88.65 0.07 0.07 cnd:pre:3p; +volerais voler VER 238.82 88.65 0.44 0.07 cnd:pre:1s;cnd:pre:2s; +volerait voler VER 238.82 88.65 0.94 0.68 cnd:pre:3s; +voleras voler VER 238.82 88.65 0.57 0.00 ind:fut:2s; +volerez voler VER 238.82 88.65 0.25 0.07 ind:fut:2p; +volerie volerie NOM f s 0.01 0.00 0.01 0.00 +voleriez voler VER 238.82 88.65 0.05 0.00 cnd:pre:2p; +volerons voler VER 238.82 88.65 0.50 0.00 ind:fut:1p; +voleront voler VER 238.82 88.65 0.89 0.34 ind:fut:3p; +voles voler VER 238.82 88.65 4.82 0.68 ind:pre:2s;sub:pre:2s; +volet volet NOM m s 5.93 41.55 2.21 6.89 +voleta voleter VER 0.45 7.23 0.00 0.20 ind:pas:3s; +voletaient voleter VER 0.45 7.23 0.01 1.82 ind:imp:3p; +voletait voleter VER 0.45 7.23 0.00 1.22 ind:imp:3s; +voletant voleter VER 0.45 7.23 0.03 1.42 par:pre; +voletante voletant ADJ f s 0.01 0.81 0.00 0.27 +voletantes voletant ADJ f p 0.01 0.81 0.00 0.20 +voleter voleter VER 0.45 7.23 0.14 1.35 inf; +voletez voleter VER 0.45 7.23 0.02 0.00 imp:pre:2p; +volets volet NOM m p 5.93 41.55 3.72 34.66 +volette voleter VER 0.45 7.23 0.14 0.54 ind:pre:1s;ind:pre:3s; +volettent voleter VER 0.45 7.23 0.10 0.68 ind:pre:3p; +voleur voleur NOM m s 68.01 22.70 41.39 11.15 +voleurs voleur NOM m p 68.01 22.70 21.91 9.86 +voleuse voleur NOM f s 68.01 22.70 4.71 1.55 +voleuses voleuse NOM f p 0.17 0.00 0.17 0.00 +volez voler VER 238.82 88.65 3.59 0.27 imp:pre:2p;ind:pre:2p; +voliez voler VER 238.82 88.65 0.65 0.07 ind:imp:2p; +volige volige NOM f s 0.01 0.54 0.00 0.14 +voliges volige NOM f p 0.01 0.54 0.01 0.41 +volions voler VER 238.82 88.65 0.19 0.14 ind:imp:1p; +volière volière NOM f s 0.36 3.24 0.34 2.97 +volières volière NOM f p 0.36 3.24 0.02 0.27 +volition volition NOM f s 0.00 0.27 0.00 0.14 +volitions volition NOM f p 0.00 0.27 0.00 0.14 +volley_ball volley_ball NOM m s 0.25 0.68 0.25 0.68 +volley volley NOM m s 1.51 0.07 1.51 0.07 +volleyeur volleyeur NOM m s 0.14 0.14 0.14 0.07 +volleyeurs volleyeur NOM m p 0.14 0.14 0.00 0.07 +volons voler VER 238.82 88.65 0.79 0.20 imp:pre:1p;ind:pre:1p; +volontaire volontaire ADJ s 14.48 13.99 11.54 10.74 +volontairement volontairement ADV 3.59 9.12 3.59 9.12 +volontaires volontaire NOM p 8.03 6.28 5.05 5.27 +volontariat volontariat NOM m s 0.60 0.20 0.60 0.20 +volontarisme volontarisme NOM m s 0.00 0.14 0.00 0.14 +volontariste volontariste ADJ s 0.00 0.20 0.00 0.14 +volontaristes volontariste ADJ p 0.00 0.20 0.00 0.07 +volontiers volontiers ADV 19.41 40.61 19.41 40.61 +volonté volonté NOM f s 47.08 74.93 44.41 70.54 +volontés volonté NOM f p 47.08 74.93 2.67 4.39 +volât voler VER 238.82 88.65 0.00 0.14 sub:imp:3s; +vols vol NOM m p 82.42 48.31 8.28 7.09 +volt volt NOM m s 2.00 0.27 0.40 0.00 +voltaïque voltaïque ADJ f s 0.01 0.00 0.01 0.00 +voltage voltage NOM m s 0.41 0.34 0.41 0.34 +voltaient volter VER 0.01 0.14 0.00 0.07 ind:imp:3p; +voltaire voltaire NOM m s 0.00 0.14 0.00 0.07 +voltaires voltaire NOM m p 0.00 0.14 0.00 0.07 +voltairien voltairien ADJ m s 0.01 0.00 0.01 0.00 +volte_face volte_face NOM f 0.26 3.31 0.26 3.31 +volte volte NOM f s 0.67 1.35 0.67 0.74 +volter volter VER 0.01 0.14 0.01 0.07 inf; +voltes volte NOM f p 0.67 1.35 0.00 0.61 +volèrent voler VER 238.82 88.65 0.04 0.68 ind:pas:3p; +voltige voltige NOM f s 0.45 2.09 0.45 1.96 +voltigea voltiger VER 1.40 4.46 0.00 0.27 ind:pas:3s; +voltigeaient voltiger VER 1.40 4.46 0.00 1.28 ind:imp:3p; +voltigeait voltiger VER 1.40 4.46 0.00 0.07 ind:imp:3s; +voltigeant voltiger VER 1.40 4.46 0.14 0.68 par:pre; +voltigement voltigement NOM m s 0.00 0.07 0.00 0.07 +voltigent voltiger VER 1.40 4.46 0.81 0.47 ind:pre:3p; +voltiger voltiger VER 1.40 4.46 0.21 0.95 inf; +voltiges voltige NOM f p 0.45 2.09 0.00 0.14 +voltigeur voltigeur NOM m s 0.15 5.00 0.14 2.09 +voltigeurs voltigeur NOM m p 0.15 5.00 0.01 2.91 +voltigèrent voltiger VER 1.40 4.46 0.00 0.34 ind:pas:3p; +voltigé voltiger VER m s 1.40 4.46 0.03 0.07 par:pas; +voltmètre voltmètre NOM m s 0.23 0.07 0.23 0.07 +volts volt NOM m p 2.00 0.27 1.60 0.27 +volé voler VER m s 238.82 88.65 79.01 19.26 par:pas; +volubile volubile ADJ s 0.07 4.73 0.05 3.72 +volubilement volubilement ADV 0.00 0.74 0.00 0.74 +volubiles volubile ADJ p 0.07 4.73 0.02 1.01 +volubilis volubilis NOM m 0.00 1.35 0.00 1.35 +volubilité volubilité NOM f s 0.00 1.55 0.00 1.55 +volée voler VER f s 238.82 88.65 10.14 2.23 par:pas; +volées voler VER f p 238.82 88.65 2.24 0.81 par:pas; +volume volume NOM m s 6.48 27.84 5.45 16.35 +volumes volume NOM m p 6.48 27.84 1.03 11.49 +volémie volémie NOM f s 0.01 0.00 0.01 0.00 +volumineuse volumineux ADJ f s 0.37 5.41 0.04 1.55 +volumineuses volumineux ADJ f p 0.37 5.41 0.10 0.47 +volumineux volumineux ADJ m 0.37 5.41 0.22 3.38 +volumique volumique ADJ f s 0.01 0.00 0.01 0.00 +volumétrique volumétrique ADJ s 0.02 0.00 0.02 0.00 +volupté volupté NOM f s 3.27 11.42 3.27 10.20 +voluptueuse voluptueux ADJ f s 0.62 7.36 0.41 1.96 +voluptueusement voluptueusement ADV 0.01 3.11 0.01 3.11 +voluptueuses voluptueux ADJ f p 0.62 7.36 0.11 0.95 +voluptueux voluptueux ADJ m 0.62 7.36 0.10 4.46 +voluptés volupté NOM f p 3.27 11.42 0.00 1.22 +volés voler VER m p 238.82 88.65 4.93 2.09 par:pas; +volute volute NOM f s 0.03 6.69 0.00 0.41 +volutes volute NOM f p 0.03 6.69 0.03 6.28 +volvaires volvaire NOM f p 0.00 0.07 0.00 0.07 +volve volve NOM f s 0.01 0.07 0.01 0.07 +vomi vomir VER m s 26.12 23.31 5.19 2.70 par:pas; +vomie vomir VER f s 26.12 23.31 0.24 0.27 par:pas; +vomies vomir VER f p 26.12 23.31 0.14 0.14 par:pas; +vomique vomique ADJ m s 0.00 0.07 0.00 0.07 +vomir vomir VER 26.12 23.31 13.75 11.62 inf; +vomira vomir VER 26.12 23.31 0.09 0.14 ind:fut:3s; +vomirai vomir VER 26.12 23.31 0.05 0.00 ind:fut:1s; +vomirais vomir VER 26.12 23.31 0.18 0.07 cnd:pre:1s; +vomirait vomir VER 26.12 23.31 0.03 0.14 cnd:pre:3s; +vomiras vomir VER 26.12 23.31 0.03 0.07 ind:fut:2s; +vomirent vomir VER 26.12 23.31 0.00 0.07 ind:pas:3p; +vomirez vomir VER 26.12 23.31 0.04 0.00 ind:fut:2p; +vomiront vomir VER 26.12 23.31 0.01 0.07 ind:fut:3p; +vomis vomir VER m p 26.12 23.31 1.94 0.88 imp:pre:2s;ind:pre:1s;ind:pre:2s;par:pas; +vomissaient vomir VER 26.12 23.31 0.28 0.41 ind:imp:3p; +vomissais vomir VER 26.12 23.31 0.06 0.27 ind:imp:1s;ind:imp:2s; +vomissait vomir VER 26.12 23.31 0.33 2.30 ind:imp:3s; +vomissant vomir VER 26.12 23.31 0.11 0.81 par:pre; +vomisse vomir VER 26.12 23.31 0.43 0.34 sub:pre:1s;sub:pre:3s; +vomissement vomissement NOM m s 1.31 1.55 0.44 0.61 +vomissements vomissement NOM m p 1.31 1.55 0.88 0.95 +vomissent vomir VER 26.12 23.31 0.61 0.20 ind:pre:3p; +vomisseur vomisseur ADJ m s 0.03 0.07 0.03 0.07 +vomissez vomir VER 26.12 23.31 0.16 0.07 imp:pre:2p;ind:pre:2p; +vomissions vomir VER 26.12 23.31 0.00 0.14 ind:imp:1p; +vomissure vomissure NOM f s 0.53 1.15 0.20 0.34 +vomissures vomissure NOM f p 0.53 1.15 0.33 0.81 +vomit vomir VER 26.12 23.31 2.45 2.64 ind:pre:3s;ind:pas:3s; +vomitif vomitif ADJ m s 0.05 0.27 0.05 0.07 +vomitifs vomitif ADJ m p 0.05 0.27 0.00 0.07 +vomitifs vomitif NOM m p 0.04 0.27 0.00 0.07 +vomitives vomitif ADJ f p 0.05 0.27 0.00 0.14 +vomito_negro vomito_negro NOM m s 0.01 0.00 0.01 0.00 +vomitoire vomitoire NOM m s 0.03 0.07 0.02 0.00 +vomitoires vomitoire NOM m p 0.03 0.07 0.01 0.07 +vont aller VER 9992.78 2854.93 281.35 116.62 ind:pre:3p; +vopo vopo NOM m s 0.00 0.07 0.00 0.07 +vorace vorace ADJ s 0.95 4.19 0.56 2.64 +voracement voracement ADV 0.03 0.81 0.03 0.81 +voraces vorace ADJ p 0.95 4.19 0.38 1.55 +voracité voracité NOM f s 0.07 1.69 0.07 1.69 +vortex vortex NOM m 6.14 0.14 6.14 0.14 +vos vos ADJ:pos 649.07 180.27 649.07 180.27 +vosgien vosgien NOM m s 0.00 0.14 0.00 0.14 +vosgienne vosgien ADJ f s 0.00 0.14 0.00 0.14 +vota voter VER 29.61 8.51 0.00 0.27 ind:pas:3s; +votaient voter VER 29.61 8.51 0.10 0.41 ind:imp:3p; +votais voter VER 29.61 8.51 0.02 0.00 ind:imp:1s; +votait voter VER 29.61 8.51 0.28 0.34 ind:imp:3s; +votant voter VER 29.61 8.51 0.20 0.07 par:pre; +votants votant NOM m p 0.17 0.20 0.15 0.20 +vote vote NOM m s 15.04 4.46 11.62 3.72 +votent voter VER 29.61 8.51 1.48 0.41 ind:pre:3p; +voter voter VER 29.61 8.51 7.96 2.64 inf; +votera voter VER 29.61 8.51 0.67 0.14 ind:fut:3s; +voterai voter VER 29.61 8.51 0.43 0.00 ind:fut:1s; +voterais voter VER 29.61 8.51 0.20 0.00 cnd:pre:1s;cnd:pre:2s; +voterait voter VER 29.61 8.51 0.21 0.00 cnd:pre:3s; +voteras voter VER 29.61 8.51 0.02 0.00 ind:fut:2s; +voterez voter VER 29.61 8.51 0.12 0.14 ind:fut:2p; +voterons voter VER 29.61 8.51 0.17 0.07 ind:fut:1p; +voteront voter VER 29.61 8.51 0.34 0.00 ind:fut:3p; +votes vote NOM m p 15.04 4.46 3.42 0.74 +votez voter VER 29.61 8.51 3.66 0.00 imp:pre:2p;ind:pre:2p; +votiez voter VER 29.61 8.51 0.02 0.00 ind:imp:2p; +votif votif ADJ m s 0.13 0.81 0.01 0.00 +votifs votif ADJ m p 0.13 0.81 0.00 0.07 +votions voter VER 29.61 8.51 0.03 0.07 ind:imp:1p; +votive votif ADJ f s 0.13 0.81 0.11 0.34 +votives votif ADJ f p 0.13 0.81 0.01 0.41 +votons voter VER 29.61 8.51 0.95 0.00 imp:pre:1p;ind:pre:1p; +votre votre PRO:pos s 0.32 0.00 0.32 0.00 +votèrent voter VER 29.61 8.51 0.02 0.00 ind:pas:3p; +voté voter VER m s 29.61 8.51 7.11 1.76 par:pas; +votée voter VER f s 29.61 8.51 0.90 0.34 par:pas; +votées voter VER f p 29.61 8.51 0.03 0.07 par:pas; +votés voter VER m p 29.61 8.51 0.01 0.20 par:pas; +voua vouer VER 6.88 18.92 0.03 0.41 ind:pas:3s; +vouai vouer VER 6.88 18.92 0.00 0.07 ind:pas:1s; +vouaient vouer VER 6.88 18.92 0.17 0.41 ind:imp:3p; +vouais vouer VER 6.88 18.92 0.71 0.41 ind:imp:1s;ind:imp:2s; +vouait vouer VER 6.88 18.92 0.15 1.82 ind:imp:3s; +vouant vouer VER 6.88 18.92 0.01 0.14 par:pre; +voudra vouloir VER 5249.31 1640.14 21.62 12.03 ind:fut:3s; +voudrai vouloir VER 5249.31 1640.14 4.06 1.62 ind:fut:1s; +voudraient vouloir VER 5249.31 1640.14 6.02 6.42 cnd:pre:3p; +voudrais vouloir VER 5249.31 1640.14 194.56 92.09 cnd:pre:1s;cnd:pre:2s; +voudrait vouloir VER 5249.31 1640.14 44.48 43.45 cnd:pre:3s; +voudras vouloir VER 5249.31 1640.14 26.03 10.27 ind:fut:2s; +voudrez vouloir VER 5249.31 1640.14 19.77 10.41 ind:fut:2p; +voudriez vouloir VER 5249.31 1640.14 19.29 4.19 cnd:pre:2p; +voudrions vouloir VER 5249.31 1640.14 5.14 1.82 cnd:pre:1p; +voudrons vouloir VER 5249.31 1640.14 0.32 0.27 ind:fut:1p; +voudront vouloir VER 5249.31 1640.14 6.93 3.38 ind:fut:3p; +voue vouer VER 6.88 18.92 0.51 0.95 ind:pre:1s;ind:pre:3s; +vouent vouer VER 6.88 18.92 0.25 0.07 ind:pre:3p; +vouer vouer VER 6.88 18.92 0.42 2.43 inf;;inf;;inf;; +vouera vouer VER 6.88 18.92 0.01 0.07 ind:fut:3s; +vouerait vouer VER 6.88 18.92 0.00 0.07 cnd:pre:3s; +vouge vouge NOM f s 0.01 0.14 0.01 0.14 +vouivre vouivre NOM f s 0.00 3.18 0.00 3.04 +vouivres vouivre NOM f p 0.00 3.18 0.00 0.14 +voulûmes vouloir VER 5249.31 1640.14 0.00 0.07 ind:pas:1p; +voulût vouloir VER 5249.31 1640.14 0.00 3.72 sub:imp:3s; +voulaient vouloir VER 5249.31 1640.14 28.88 30.20 ind:imp:3p; +voulais vouloir VER 5249.31 1640.14 415.76 107.30 ind:imp:1s;ind:imp:2s; +voulait vouloir VER 5249.31 1640.14 192.15 225.34 ind:imp:3s; +voulant vouloir VER 5249.31 1640.14 4.28 18.45 par:pre; +voulez vouloir VER 5249.31 1640.14 553.40 113.58 imp:pre:2p;ind:pre:2p; +vouliez vouloir VER 5249.31 1640.14 43.78 5.81 ind:imp:2p;sub:pre:2p; +voulions vouloir VER 5249.31 1640.14 9.07 6.08 ind:imp:1p;sub:pre:1p; +vouloir vouloir VER 5249.31 1640.14 63.87 62.97 inf; +vouloirs vouloir NOM m p 1.28 2.57 0.00 0.14 +voulons vouloir VER 5249.31 1640.14 40.38 9.53 imp:pre:1p;ind:pre:1p; +voulu vouloir VER m s 5249.31 1640.14 151.04 174.19 par:pas; +voulue vouloir VER f s 5249.31 1640.14 0.91 2.70 par:pas; +voulues voulu ADJ f p 4.42 9.12 0.18 0.68 +voulurent vouloir VER 5249.31 1640.14 0.40 2.30 ind:pas:3p; +voulus vouloir VER m p 5249.31 1640.14 0.36 6.22 ind:pas:1s;par:pas; +voulusse vouloir VER 5249.31 1640.14 0.00 0.34 sub:imp:1s; +voulussent vouloir VER 5249.31 1640.14 0.00 0.41 sub:imp:3p; +voulut vouloir VER 5249.31 1640.14 2.42 36.89 ind:pas:3s; +vouons vouer VER 6.88 18.92 0.31 0.14 imp:pre:1p;ind:pre:1p; +vous_même vous_même PRO:per p 28.20 17.84 28.20 17.84 +vous_mêmes vous_mêmes PRO:per p 4.30 1.55 4.30 1.55 +vous vous PRO:per p 13589.70 3507.16 13589.70 3507.16 +vousoyait vousoyer VER 0.00 0.14 0.00 0.07 ind:imp:3s; +vousoyez vousoyer VER 0.00 0.14 0.00 0.07 ind:pre:2p; +voussoie voussoyer VER 0.02 0.47 0.00 0.07 ind:pre:3s; +voussoiement voussoiement NOM m s 0.00 0.34 0.00 0.34 +voussoient voussoyer VER 0.02 0.47 0.00 0.07 ind:pre:3p; +voussoyait voussoyer VER 0.02 0.47 0.00 0.14 ind:imp:3s; +voussoyer voussoyer VER 0.02 0.47 0.00 0.20 inf; +voussoyez voussoyer VER 0.02 0.47 0.02 0.00 imp:pre:2p; +voussure voussure NOM f s 0.00 0.81 0.00 0.54 +voussures voussure NOM f p 0.00 0.81 0.00 0.27 +vouèrent vouer VER 6.88 18.92 0.00 0.07 ind:pas:3p; +voué vouer VER m s 6.88 18.92 2.47 5.14 par:pas; +vouée vouer VER f s 6.88 18.92 1.42 4.12 par:pas; +vouées vouer VER f p 6.88 18.92 0.14 0.81 par:pas; +voués vouer VER m p 6.88 18.92 0.27 1.82 par:pas; +vouvoie vouvoyer VER 0.79 1.35 0.27 0.14 imp:pre:2s;ind:pre:3s; +vouvoiement vouvoiement NOM m s 0.00 0.47 0.00 0.41 +vouvoiements vouvoiement NOM m p 0.00 0.47 0.00 0.07 +vouvoient vouvoyer VER 0.79 1.35 0.00 0.07 ind:pre:3p; +vouvoies vouvoyer VER 0.79 1.35 0.02 0.07 ind:pre:2s; +vouvoya vouvoyer VER 0.79 1.35 0.00 0.07 ind:pas:3s; +vouvoyait vouvoyer VER 0.79 1.35 0.01 0.81 ind:imp:3s; +vouvoyant vouvoyer VER 0.79 1.35 0.00 0.14 par:pre; +vouvoyer vouvoyer VER 0.79 1.35 0.49 0.07 inf; +vouvray vouvray NOM m s 0.00 0.07 0.00 0.07 +vox_populi vox_populi NOM f 0.05 0.27 0.05 0.27 +voyage voyage NOM m s 123.17 140.07 112.19 110.54 +voyagea voyager VER 45.74 27.50 0.06 0.54 ind:pas:3s; +voyageaient voyager VER 45.74 27.50 0.30 1.49 ind:imp:3p; +voyageais voyager VER 45.74 27.50 0.62 0.47 ind:imp:1s;ind:imp:2s; +voyageait voyager VER 45.74 27.50 1.27 2.91 ind:imp:3s; +voyageant voyager VER 45.74 27.50 0.71 0.54 par:pre; +voyagent voyager VER 45.74 27.50 1.71 1.22 ind:pre:3p; +voyageons voyager VER 45.74 27.50 0.62 0.27 imp:pre:1p;ind:pre:1p; +voyager voyager VER 45.74 27.50 19.45 9.19 inf; +voyagera voyager VER 45.74 27.50 0.41 0.00 ind:fut:3s; +voyagerai voyager VER 45.74 27.50 0.16 0.07 ind:fut:1s; +voyagerais voyager VER 45.74 27.50 0.08 0.07 cnd:pre:1s; +voyagerait voyager VER 45.74 27.50 0.22 0.27 cnd:pre:3s; +voyageras voyager VER 45.74 27.50 0.28 0.07 ind:fut:2s; +voyagerez voyager VER 45.74 27.50 0.07 0.00 ind:fut:2p; +voyageriez voyager VER 45.74 27.50 0.02 0.00 cnd:pre:2p; +voyagerons voyager VER 45.74 27.50 0.24 0.07 ind:fut:1p; +voyageront voyager VER 45.74 27.50 0.02 0.00 ind:fut:3p; +voyage_éclair voyage_éclair NOM m p 0.00 0.07 0.00 0.07 +voyages voyage NOM m p 123.17 140.07 10.98 29.53 +voyageur voyageur NOM m s 8.11 43.38 3.17 20.88 +voyageurs voyageur NOM m p 8.11 43.38 4.68 20.74 +voyageuse voyageur NOM f s 8.11 43.38 0.26 1.08 +voyageuses voyageur NOM f p 8.11 43.38 0.00 0.68 +voyagez voyager VER 45.74 27.50 1.69 0.14 imp:pre:2p;ind:pre:2p; +voyagiez voyager VER 45.74 27.50 0.28 0.00 ind:imp:2p; +voyagions voyager VER 45.74 27.50 0.34 0.34 ind:imp:1p; +voyagèrent voyager VER 45.74 27.50 0.01 0.14 ind:pas:3p; +voyagé voyager VER m s 45.74 27.50 5.90 4.93 par:pas; +voyaient voir VER 4119.49 2401.76 3.03 21.35 ind:imp:3p; +voyais voir VER 4119.49 2401.76 31.14 90.27 ind:imp:1s;ind:imp:2s; +voyait voir VER 4119.49 2401.76 25.32 180.95 ind:imp:3s; +voyance voyance NOM f s 0.71 0.74 0.71 0.68 +voyances voyance NOM f p 0.71 0.74 0.00 0.07 +voyant voir VER 4119.49 2401.76 17.16 42.64 par:pre; +voyante voyant NOM f s 4.25 8.65 1.60 2.57 +voyantes voyant ADJ f p 3.55 8.58 0.22 0.88 +voyants voyant NOM m p 4.25 8.65 0.56 1.89 +voyelle voyelle NOM f s 0.71 1.76 0.36 0.47 +voyelles voyelle NOM f p 0.71 1.76 0.35 1.28 +voyer voyer NOM m s 0.16 0.00 0.16 0.00 +voyeur voyeur NOM m s 3.71 4.26 2.94 2.77 +voyeurisme voyeurisme NOM m s 0.13 0.34 0.13 0.34 +voyeurs voyeur NOM m p 3.71 4.26 0.76 1.35 +voyeuse voyeur NOM f s 3.71 4.26 0.02 0.14 +voyez voir VER 4119.49 2401.76 191.63 83.65 imp:pre:2p;ind:pre:2p; +voyiez voir VER 4119.49 2401.76 4.47 1.96 ind:imp:2p;sub:pre:2p; +voyions voir VER 4119.49 2401.76 0.88 4.80 ind:imp:1p; +voyons voir VER 4119.49 2401.76 127.93 44.80 imp:pre:1p;ind:pre:1p; +voyou voyou NOM m s 21.09 25.07 11.69 14.59 +voyoucratie voyoucratie NOM f s 0.00 0.27 0.00 0.27 +voyous voyou NOM m p 21.09 25.07 9.41 10.47 +voyoute voyoute ADJ f s 0.00 0.47 0.00 0.27 +voyouterie voyouterie NOM f s 0.00 0.34 0.00 0.34 +voyoutes voyoute ADJ f p 0.00 0.47 0.00 0.20 +voyoutisme voyoutisme NOM m s 0.00 0.07 0.00 0.07 +vrac vrac NOM m s 1.17 5.20 1.17 5.20 +vrai_faux vrai_faux ADJ m s 0.00 0.07 0.00 0.07 +vrai vrai ADJ m s 807.03 430.07 678.47 311.89 +vraie vrai ADJ f s 807.03 430.07 83.64 77.57 +vraies vrai ADJ f p 807.03 430.07 13.91 16.76 +vraiment vraiment ADV 968.57 274.32 968.57 274.32 +vrais vrai ADJ m p 807.03 430.07 31.01 23.85 +vraisemblable vraisemblable ADJ s 0.89 5.74 0.89 5.54 +vraisemblablement vraisemblablement ADV 1.39 5.68 1.39 5.68 +vraisemblables vraisemblable ADJ m p 0.89 5.74 0.00 0.20 +vraisemblance vraisemblance NOM f s 0.12 2.91 0.09 2.77 +vraisemblances vraisemblance NOM f p 0.12 2.91 0.03 0.14 +vraquier vraquier NOM m s 0.00 0.07 0.00 0.07 +vrilla vriller VER 0.13 3.18 0.00 0.41 ind:pas:3s; +vrillaient vriller VER 0.13 3.18 0.00 0.14 ind:imp:3p; +vrillait vriller VER 0.13 3.18 0.00 0.54 ind:imp:3s; +vrillant vriller VER 0.13 3.18 0.01 0.61 par:pre; +vrille vrille NOM f s 0.72 2.57 0.65 1.82 +vrillement vrillement NOM m s 0.00 0.07 0.00 0.07 +vrillent vriller VER 0.13 3.18 0.00 0.14 ind:pre:3p; +vriller vriller VER 0.13 3.18 0.00 0.14 inf; +vrilles vrille NOM f p 0.72 2.57 0.07 0.74 +vrillette vrillette NOM f s 0.01 0.07 0.01 0.00 +vrillettes vrillette NOM f p 0.01 0.07 0.00 0.07 +vrillèrent vriller VER 0.13 3.18 0.00 0.07 ind:pas:3p; +vrillé vriller VER m s 0.13 3.18 0.09 0.20 par:pas; +vrillées vriller VER f p 0.13 3.18 0.00 0.14 par:pas; +vrillés vriller VER m p 0.13 3.18 0.00 0.14 par:pas; +vrombir vrombir VER 0.26 1.96 0.02 0.27 inf; +vrombis vrombir VER 0.26 1.96 0.00 0.07 ind:pre:1s; +vrombissaient vrombir VER 0.26 1.96 0.02 0.07 ind:imp:3p; +vrombissait vrombir VER 0.26 1.96 0.00 0.27 ind:imp:3s; +vrombissant vrombir VER 0.26 1.96 0.01 0.27 par:pre; +vrombissante vrombissant ADJ f s 0.01 0.68 0.00 0.27 +vrombissantes vrombissant ADJ f p 0.01 0.68 0.00 0.34 +vrombissement vrombissement NOM m s 0.47 1.35 0.47 1.15 +vrombissements vrombissement NOM m p 0.47 1.35 0.00 0.20 +vrombissent vrombir VER 0.26 1.96 0.00 0.14 ind:pre:3p; +vrombissions vrombir VER 0.26 1.96 0.00 0.07 ind:imp:1p; +vrombit vrombir VER 0.26 1.96 0.21 0.81 ind:pre:3s;ind:pas:3s; +vroom vroom ONO 0.07 0.41 0.07 0.41 +vroum vroum ONO 0.38 0.34 0.38 0.34 +vu voir VER m s 4119.49 2401.76 905.21 393.45 par:pas; +vécûmes vivre VER 510.05 460.34 0.04 0.41 ind:pas:1p; +vécût vivre VER 510.05 460.34 0.00 0.54 sub:imp:3s; +vécu vivre VER m s 510.05 460.34 51.14 56.62 par:pas; +vécue vivre VER f s 510.05 460.34 2.26 4.26 par:pas; +vécues vivre VER f p 510.05 460.34 0.79 1.62 par:pas; +vécurent vivre VER 510.05 460.34 1.65 1.15 ind:pas:3p; +vécus vivre VER m p 510.05 460.34 1.10 2.43 ind:pas:1s;ind:pas:2s;par:pas; +vécés vécés NOM m p 0.01 1.08 0.01 1.08 +vécussent vivre VER 510.05 460.34 0.00 0.14 sub:imp:3p; +vécut vivre VER 510.05 460.34 1.43 4.19 ind:pas:3s; +vue voir VER f s 4119.49 2401.76 109.21 56.35 par:pas; +vues voir VER f p 4119.49 2401.76 9.31 8.11 par:pas; +végète végéter VER 0.57 2.91 0.16 0.34 ind:pre:1s;ind:pre:3s; +végètent végéter VER 0.57 2.91 0.10 0.14 ind:pre:3p; +végètes végéter VER 0.57 2.91 0.02 0.00 ind:pre:2s; +végéta végéter VER 0.57 2.91 0.01 0.00 ind:pas:3s; +végétaient végéter VER 0.57 2.91 0.00 0.41 ind:imp:3p; +végétais végéter VER 0.57 2.91 0.00 0.07 ind:imp:1s; +végétait végéter VER 0.57 2.91 0.00 0.74 ind:imp:3s; +végétal végétal ADJ m s 0.78 8.85 0.18 2.97 +végétale végétal ADJ f s 0.78 8.85 0.51 3.85 +végétales végétal ADJ f p 0.78 8.85 0.03 0.95 +végétalien végétalien ADJ m s 0.22 0.07 0.11 0.00 +végétalienne végétalien ADJ f s 0.22 0.07 0.11 0.07 +végétalisme végétalisme NOM m s 0.01 0.00 0.01 0.00 +végétarien végétarien ADJ m s 3.94 1.82 2.31 0.88 +végétarienne végétarien ADJ f s 3.94 1.82 1.32 0.68 +végétariennes végétarien ADJ f p 3.94 1.82 0.07 0.00 +végétariens végétarien NOM m p 0.90 0.27 0.47 0.07 +végétarisme végétarisme NOM m s 0.03 0.00 0.03 0.00 +végétatif végétatif ADJ m s 0.47 1.55 0.40 0.41 +végétatifs végétatif ADJ m p 0.47 1.55 0.01 0.07 +végétation végétation NOM f s 1.47 9.53 0.78 8.85 +végétations végétation NOM f p 1.47 9.53 0.69 0.68 +végétative végétatif ADJ f s 0.47 1.55 0.04 1.01 +végétatives végétatif ADJ f p 0.47 1.55 0.02 0.07 +végétaux végétal NOM m p 0.44 1.89 0.26 0.88 +végéter végéter VER 0.57 2.91 0.26 0.88 inf; +végéteras végéter VER 0.57 2.91 0.01 0.00 ind:fut:2s; +végéterez végéter VER 0.57 2.91 0.00 0.07 ind:fut:2p; +végétons végéter VER 0.57 2.91 0.00 0.07 ind:pre:1p; +végétât végéter VER 0.57 2.91 0.00 0.07 sub:imp:3s; +végété végéter VER m s 0.57 2.91 0.01 0.14 par:pas; +véhiculaient véhiculer VER 0.72 2.30 0.02 0.07 ind:imp:3p; +véhiculait véhiculer VER 0.72 2.30 0.03 0.20 ind:imp:3s; +véhiculant véhiculer VER 0.72 2.30 0.04 0.20 par:pre; +véhicule véhicule NOM m s 22.08 22.09 17.04 14.86 +véhiculent véhiculer VER 0.72 2.30 0.14 0.07 ind:pre:3p; +véhiculer véhiculer VER 0.72 2.30 0.12 0.95 inf; +véhicules véhicule NOM m p 22.08 22.09 5.04 7.23 +véhiculez véhiculer VER 0.72 2.30 0.01 0.00 imp:pre:2p; +véhiculé véhiculer VER m s 0.72 2.30 0.00 0.14 par:pas; +véhiculée véhiculer VER f s 0.72 2.30 0.04 0.20 par:pas; +véhémence véhémence NOM f s 0.31 5.07 0.31 5.07 +véhément véhément ADJ m s 0.29 5.88 0.02 1.49 +véhémente véhément ADJ f s 0.29 5.88 0.28 1.89 +véhémentement véhémentement ADV 0.01 0.34 0.01 0.34 +véhémentes véhément ADJ f p 0.29 5.88 0.00 1.22 +véhéments véhément ADJ m p 0.29 5.88 0.00 1.28 +vêlage vêlage NOM m s 0.00 0.20 0.00 0.14 +vêlages vêlage NOM m p 0.00 0.20 0.00 0.07 +vélaires vélaire NOM f p 0.00 0.07 0.00 0.07 +vélar vélar NOM m s 0.04 0.00 0.04 0.00 +vulcain vulcain NOM m s 0.06 0.00 0.06 0.00 +vulcanienne vulcanienne ADJ f s 0.01 0.00 0.01 0.00 +vulcanisait vulcaniser VER 0.01 0.07 0.00 0.07 ind:imp:3s; +vulcanisation vulcanisation NOM f s 0.00 0.07 0.00 0.07 +vulcaniser vulcaniser VER 0.01 0.07 0.01 0.00 inf; +vulcanisé vulcanisé ADJ m s 0.01 0.14 0.01 0.14 +vulcanologue vulcanologue NOM s 0.00 0.07 0.00 0.07 +vêler vêler VER 0.02 0.54 0.01 0.47 inf; +vulgaire vulgaire ADJ s 10.36 16.76 8.48 12.84 +vulgairement vulgairement ADV 0.40 1.22 0.40 1.22 +vulgaires vulgaire ADJ p 10.36 16.76 1.88 3.92 +vulgarisateurs vulgarisateur NOM m p 0.00 0.07 0.00 0.07 +vulgarisation vulgarisation NOM f s 0.01 0.41 0.01 0.34 +vulgarisations vulgarisation NOM f p 0.01 0.41 0.00 0.07 +vulgariser vulgariser VER 0.01 0.14 0.01 0.14 inf; +vulgarisée vulgarisé ADJ f s 0.00 0.07 0.00 0.07 +vulgarité vulgarité NOM f s 1.75 5.68 1.59 5.34 +vulgarités vulgarité NOM f p 1.75 5.68 0.17 0.34 +vulgate vulgate NOM f s 0.00 0.20 0.00 0.20 +vulgum_pecus vulgum_pecus NOM m 0.01 0.07 0.01 0.07 +vélin vélin ADJ m s 0.02 0.07 0.02 0.07 +vélins vélin NOM m p 0.00 0.68 0.00 0.07 +véliplanchiste véliplanchiste NOM s 0.01 0.00 0.01 0.00 +vélique vélique ADJ f s 0.00 0.07 0.00 0.07 +vulnérabilité vulnérabilité NOM f s 0.77 1.01 0.77 1.01 +vulnérable vulnérable ADJ s 7.76 7.97 6.00 6.35 +vulnérables vulnérable ADJ p 7.76 7.97 1.77 1.62 +vulnéraire vulnéraire NOM s 0.00 0.20 0.00 0.14 +vulnéraires vulnéraire NOM p 0.00 0.20 0.00 0.07 +vulnérant vulnérant ADJ m s 0.00 0.07 0.00 0.07 +vélo_cross vélo_cross NOM m 0.00 0.07 0.00 0.07 +vélo_pousse vélo_pousse NOM m s 0.01 0.00 0.01 0.00 +vélo vélo NOM m s 35.58 28.45 32.95 24.32 +véloce véloce ADJ s 0.06 0.74 0.04 0.54 +vélocement vélocement ADV 0.01 0.00 0.01 0.00 +véloces véloce ADJ f p 0.06 0.74 0.02 0.20 +vélocipède vélocipède NOM m s 0.13 0.41 0.11 0.27 +vélocipèdes vélocipède NOM m p 0.13 0.41 0.02 0.14 +vélocipédique vélocipédique ADJ s 0.00 0.20 0.00 0.14 +vélocipédiques vélocipédique ADJ f p 0.00 0.20 0.00 0.07 +vélocipédistes vélocipédiste NOM p 0.00 0.07 0.00 0.07 +vélocité vélocité NOM f s 0.25 1.08 0.25 1.08 +vélodrome vélodrome NOM m s 0.00 0.88 0.00 0.68 +vélodromes vélodrome NOM m p 0.00 0.88 0.00 0.20 +vélomoteur vélomoteur NOM m s 0.23 1.49 0.23 1.22 +vélomoteurs vélomoteur NOM m p 0.23 1.49 0.00 0.27 +vélos vélo NOM m p 35.58 28.45 2.64 4.12 +vulpin vulpin NOM m s 0.00 0.07 0.00 0.07 +vêlé vêler VER m s 0.02 0.54 0.01 0.07 par:pas; +vélum vélum NOM m s 0.02 0.41 0.02 0.27 +vélums vélum NOM m p 0.02 0.41 0.00 0.14 +vulvaire vulvaire NOM f s 0.03 0.07 0.03 0.00 +vulvaires vulvaire NOM f p 0.03 0.07 0.00 0.07 +vulve vulve NOM f s 0.32 1.35 0.32 0.95 +vulves vulve NOM f p 0.32 1.35 0.00 0.41 +vénal vénal ADJ m s 0.54 1.76 0.45 0.81 +vénale vénal ADJ f s 0.54 1.76 0.09 0.41 +vénales vénal ADJ f p 0.54 1.76 0.00 0.41 +vénalité vénalité NOM f s 0.02 0.41 0.02 0.41 +vénaux vénal ADJ m p 0.54 1.76 0.00 0.14 +vénerie vénerie NOM f s 0.00 0.61 0.00 0.61 +véniel véniel ADJ m s 0.32 0.81 0.30 0.20 +vénielle véniel ADJ f s 0.32 0.81 0.00 0.07 +vénielles véniel ADJ f p 0.32 0.81 0.00 0.14 +véniels véniel ADJ m p 0.32 0.81 0.01 0.41 +vénitien vénitien ADJ m s 0.95 6.96 0.86 2.43 +vénitienne vénitienne NOM f s 0.14 0.54 0.14 0.34 +vénitiennes vénitien ADJ f p 0.95 6.96 0.03 1.28 +vénitiens vénitien NOM m p 0.36 1.82 0.24 1.15 +vénère vénérer VER 5.86 4.66 1.53 0.47 imp:pre:2s;ind:pre:1s;ind:pre:3s; +vénèrent vénérer VER 5.86 4.66 0.67 0.20 ind:pre:3p; +vénères vénérer VER 5.86 4.66 0.27 0.07 ind:pre:2s; +vénéneuse vénéneux ADJ f s 0.69 2.36 0.09 0.74 +vénéneuses vénéneux ADJ f p 0.69 2.36 0.06 0.41 +vénéneux vénéneux ADJ m 0.69 2.36 0.55 1.22 +vénérable vénérable ADJ s 2.56 6.35 2.20 4.80 +vénérables vénérable ADJ p 2.56 6.35 0.36 1.55 +vénérai vénérer VER 5.86 4.66 0.00 0.07 ind:pas:1s; +vénéraient vénérer VER 5.86 4.66 0.21 0.14 ind:imp:3p; +vénérais vénérer VER 5.86 4.66 0.19 0.27 ind:imp:1s;ind:imp:2s; +vénérait vénérer VER 5.86 4.66 0.47 1.35 ind:imp:3s; +vénérant vénérer VER 5.86 4.66 0.15 0.14 par:pre; +vénéras vénérer VER 5.86 4.66 0.01 0.00 ind:pas:2s; +vénération vénération NOM f s 0.23 2.84 0.23 2.70 +vénérations vénération NOM f p 0.23 2.84 0.00 0.14 +vénérer vénérer VER 5.86 4.66 0.94 0.88 inf; +vénérera vénérer VER 5.86 4.66 0.01 0.00 ind:fut:3s; +vénéreraient vénérer VER 5.86 4.66 0.00 0.07 cnd:pre:3p; +vénérerais vénérer VER 5.86 4.66 0.01 0.00 cnd:pre:1s; +vénérez vénérer VER 5.86 4.66 0.27 0.00 imp:pre:2p;ind:pre:2p; +vénérien vénérien ADJ m s 0.61 0.95 0.02 0.14 +vénérienne vénérien ADJ f s 0.61 0.95 0.28 0.20 +vénériennes vénérien ADJ f p 0.61 0.95 0.31 0.54 +vénériens vénérien ADJ m p 0.61 0.95 0.00 0.07 +vénérions vénérer VER 5.86 4.66 0.03 0.14 ind:imp:1p; +vénérons vénérer VER 5.86 4.66 0.32 0.00 ind:pre:1p; +vénéré vénéré ADJ m s 1.10 1.69 0.91 0.88 +vénérée vénéré ADJ f s 1.10 1.69 0.12 0.14 +vénérées vénérer VER f p 5.86 4.66 0.14 0.07 par:pas; +vénéréologie vénéréologie NOM f s 0.01 0.00 0.01 0.00 +vénérés vénérer VER m p 5.86 4.66 0.06 0.20 par:pas; +vénus vénus NOM f 0.56 0.41 0.56 0.41 +vénusien vénusien ADJ m s 0.11 0.20 0.01 0.14 +vénusienne vénusien ADJ f s 0.11 0.20 0.04 0.00 +vénusiens vénusien ADJ m p 0.11 0.20 0.06 0.07 +vénusté vénusté NOM f s 0.00 0.34 0.00 0.34 +vénézuélien vénézuélien ADJ m s 0.48 0.27 0.07 0.20 +vénézuélienne vénézuélien ADJ f s 0.48 0.27 0.26 0.00 +vénézuéliens vénézuélien ADJ m p 0.48 0.27 0.16 0.07 +vêpre vêpres NOM m s 0.64 2.43 0.00 0.07 +vêpres vêpres NOM f p 0.64 2.43 0.64 2.36 +vérace vérace ADJ f s 0.00 0.14 0.00 0.07 +véraces vérace ADJ p 0.00 0.14 0.00 0.07 +véracité véracité NOM f s 0.58 0.74 0.58 0.74 +véranda véranda NOM f s 1.90 10.20 1.86 9.12 +vérandas véranda NOM f p 1.90 10.20 0.03 1.08 +véreuse véreux ADJ f s 1.67 1.62 0.35 0.14 +véreuses véreux ADJ f p 1.67 1.62 0.10 0.27 +véreux véreux ADJ m 1.67 1.62 1.23 1.22 +véridique véridique ADJ s 0.82 2.23 0.66 1.69 +véridiquement véridiquement ADV 0.01 0.14 0.01 0.14 +véridiques véridique ADJ p 0.82 2.23 0.16 0.54 +vérif vérif NOM f s 0.10 0.27 0.10 0.27 +vérifia vérifier VER 110.87 40.27 0.04 2.91 ind:pas:3s; +vérifiable vérifiable ADJ s 0.21 0.20 0.18 0.14 +vérifiables vérifiable ADJ f p 0.21 0.20 0.03 0.07 +vérifiai vérifier VER 110.87 40.27 0.01 0.20 ind:pas:1s; +vérifiaient vérifier VER 110.87 40.27 0.05 0.27 ind:imp:3p; +vérifiais vérifier VER 110.87 40.27 1.33 0.68 ind:imp:1s;ind:imp:2s; +vérifiait vérifier VER 110.87 40.27 0.73 2.50 ind:imp:3s; +vérifiant vérifier VER 110.87 40.27 0.20 1.49 par:pre; +vérificateur vérificateur NOM m s 0.42 0.07 0.33 0.00 +vérificateurs vérificateur NOM m p 0.42 0.07 0.03 0.07 +vérification vérification NOM f s 4.07 3.45 3.40 2.50 +vérifications vérification NOM f p 4.07 3.45 0.68 0.95 +vérificatrice vérificateur NOM f s 0.42 0.07 0.07 0.00 +vérifie vérifier VER 110.87 40.27 20.47 3.92 imp:pre:2s;ind:pre:1s;ind:pre:3s;sub:pre:3s; +vérifient vérifier VER 110.87 40.27 1.27 0.27 ind:pre:3p; +vérifier vérifier VER 110.87 40.27 45.69 22.09 inf; +vérifiera vérifier VER 110.87 40.27 0.55 0.20 ind:fut:3s; +vérifierai vérifier VER 110.87 40.27 1.35 0.20 ind:fut:1s; +vérifierais vérifier VER 110.87 40.27 0.10 0.07 cnd:pre:1s;cnd:pre:2s; +vérifierait vérifier VER 110.87 40.27 0.03 0.07 cnd:pre:3s; +vérifieras vérifier VER 110.87 40.27 0.17 0.07 ind:fut:2s; +vérifierons vérifier VER 110.87 40.27 0.32 0.07 ind:fut:1p; +vérifieront vérifier VER 110.87 40.27 0.22 0.00 ind:fut:3p; +vérifies vérifier VER 110.87 40.27 0.94 0.14 ind:pre:2s; +vérifieur vérifieur NOM m s 0.02 0.00 0.02 0.00 +vérifiez vérifier VER 110.87 40.27 12.16 0.47 imp:pre:2p;ind:pre:2p; +vérifiions vérifier VER 110.87 40.27 0.00 0.07 ind:imp:1p; +vérifions vérifier VER 110.87 40.27 2.15 0.14 imp:pre:1p;ind:pre:1p; +vérifièrent vérifier VER 110.87 40.27 0.01 0.14 ind:pas:3p; +vérifié vérifier VER m s 110.87 40.27 21.64 4.19 par:pas; +vérifiée vérifier VER f s 110.87 40.27 0.50 0.14 par:pas; +vérifiées vérifier VER f p 110.87 40.27 0.37 0.00 par:pas; +vérifiés vérifier VER m p 110.87 40.27 0.57 0.00 par:pas; +vérin vérin NOM m s 0.06 0.34 0.05 0.07 +vérins vérin NOM m p 0.06 0.34 0.01 0.27 +vériste vériste ADJ m s 0.00 0.07 0.00 0.07 +véritable véritable ADJ s 29.36 56.08 26.78 48.51 +véritablement véritablement ADV 2.03 5.88 2.03 5.88 +véritables véritable ADJ p 29.36 56.08 2.58 7.57 +vérité vérité NOM f s 193.24 140.88 190.21 133.38 +vérités vérité NOM f p 193.24 140.88 3.03 7.50 +vérole vérole NOM f s 0.79 3.58 0.79 3.45 +véroles vérole NOM f p 0.79 3.58 0.00 0.14 +vérolé vérolé ADJ m s 0.33 1.96 0.02 1.42 +vérolée vérolé ADJ f s 0.33 1.96 0.17 0.00 +vérolées vérolé ADJ f p 0.33 1.96 0.00 0.34 +vérolés vérolé ADJ m p 0.33 1.96 0.14 0.20 +véronaise véronais ADJ f s 0.00 0.07 0.00 0.07 +véronal véronal NOM m s 0.04 0.00 0.04 0.00 +véronique véronique NOM f s 0.10 0.74 0.10 0.54 +véroniques véronique NOM f p 0.10 0.74 0.00 0.20 +vus voir VER m p 4119.49 2401.76 47.81 28.72 par:pas; +vésanie vésanie NOM f s 0.00 0.27 0.00 0.20 +vésanies vésanie NOM f p 0.00 0.27 0.00 0.07 +vésicale vésical ADJ f s 0.01 0.00 0.01 0.00 +vésicante vésicant ADJ f s 0.10 0.00 0.10 0.00 +vésicatoire vésicatoire ADJ s 0.10 0.07 0.10 0.00 +vésicatoires vésicatoire ADJ m p 0.10 0.07 0.00 0.07 +vésiculaire vésiculaire ADJ s 0.10 0.00 0.10 0.00 +vésicule vésicule NOM f s 1.01 0.74 0.90 0.61 +vésicules vésicule NOM f p 1.01 0.74 0.11 0.14 +vésuviennes vésuvien ADJ f p 0.00 0.07 0.00 0.07 +vêt vêtir VER 7.67 63.85 0.02 0.14 ind:pre:3s; +vêtaient vêtir VER 7.67 63.85 0.00 0.07 ind:imp:3p; +vêtait vêtir VER 7.67 63.85 0.14 0.41 ind:imp:3s; +vêtant vêtir VER 7.67 63.85 0.00 0.14 par:pre; +vête vêtir VER 7.67 63.85 0.00 0.07 sub:pre:3s; +vêtement vêtement NOM m s 61.48 90.14 3.84 15.34 +vêtements vêtement NOM m p 61.48 90.14 57.65 74.80 +vêtent vêtir VER 7.67 63.85 0.11 0.34 ind:pre:3p; +vêtez vêtir VER 7.67 63.85 0.01 0.34 imp:pre:2p;ind:pre:2p; +vétille vétille NOM f s 0.39 1.22 0.22 0.20 +vétilles vétille NOM f p 0.39 1.22 0.16 1.01 +vétilleuse vétilleux ADJ f s 0.00 0.68 0.00 0.27 +vétilleuses vétilleux ADJ f p 0.00 0.68 0.00 0.07 +vétilleux vétilleux ADJ m 0.00 0.68 0.00 0.34 +vêtir vêtir VER 7.67 63.85 1.55 3.18 inf; +vêtira vêtir VER 7.67 63.85 0.02 0.07 ind:fut:3s; +vêtirais vêtir VER 7.67 63.85 0.00 0.07 cnd:pre:1s; +vêtirait vêtir VER 7.67 63.85 0.00 0.07 cnd:pre:3s; +vêtirons vêtir VER 7.67 63.85 0.00 0.07 ind:fut:1p; +vêtis vêtir VER 7.67 63.85 0.00 0.07 ind:pas:1s; +vêtit vêtir VER 7.67 63.85 0.00 0.20 ind:pas:3s; +vétiver vétiver NOM m s 0.00 0.27 0.00 0.27 +vêtons vêtir VER 7.67 63.85 0.00 0.07 ind:pre:1p; +vêts vêtir VER 7.67 63.85 0.00 0.54 ind:pre:1s;ind:pre:2s; +vêtu vêtir VER m s 7.67 63.85 3.47 26.96 par:pas; +vêtue vêtir VER f s 7.67 63.85 1.23 15.27 par:pas; +vêtues vêtir VER f p 7.67 63.85 0.28 4.73 par:pas; +vétéran vétéran NOM m s 3.84 2.43 1.86 1.28 +vétérans vétéran NOM m p 3.84 2.43 1.98 1.15 +vêture vêture NOM f s 0.00 0.61 0.00 0.54 +vêtures vêture NOM f p 0.00 0.61 0.00 0.07 +vétérinaire vétérinaire NOM s 3.93 3.85 3.74 3.72 +vétérinaires vétérinaire NOM p 3.93 3.85 0.19 0.14 +vêtus vêtir VER m p 7.67 63.85 0.83 11.08 par:pas; +vétuste vétuste ADJ s 0.25 3.18 0.05 2.03 +vétustes vétuste ADJ p 0.25 3.18 0.20 1.15 +vétusté vétusté NOM f s 0.02 0.68 0.02 0.68 +vétyver vétyver NOM m s 0.00 0.07 0.00 0.07 +w w NOM m 3.54 2.70 3.54 2.70 +wagnérien wagnérien ADJ m s 0.04 0.47 0.01 0.34 +wagnérienne wagnérien ADJ f s 0.04 0.47 0.03 0.07 +wagnériennes wagnérien ADJ f p 0.04 0.47 0.00 0.07 +wagon_bar wagon_bar NOM m s 0.03 0.00 0.03 0.00 +wagon_lit wagon_lit NOM m s 1.79 1.89 0.70 0.81 +wagon_lits wagon_lits NOM m 0.00 0.07 0.00 0.07 +wagon_restaurant wagon_restaurant NOM m s 0.35 1.01 0.35 0.81 +wagon_salon wagon_salon NOM m s 0.01 0.54 0.01 0.54 +wagon wagon NOM m s 10.24 32.77 6.53 18.11 +wagonnet wagonnet NOM m s 0.26 1.28 0.12 0.20 +wagonnets wagonnet NOM m p 0.26 1.28 0.14 1.08 +wagon_citerne wagon_citerne NOM m p 0.00 0.07 0.00 0.07 +wagon_lit wagon_lit NOM m p 1.79 1.89 1.09 1.08 +wagon_restaurant wagon_restaurant NOM m p 0.35 1.01 0.00 0.20 +wagons wagon NOM m p 10.24 32.77 3.71 14.66 +wait_and_see wait_and_see NOM m s 0.16 0.00 0.16 0.00 +wali wali NOM m s 0.02 0.00 0.02 0.00 +walkie_talkie walkie_talkie NOM m s 0.08 0.14 0.05 0.14 +walkie_talkie walkie_talkie NOM m p 0.08 0.14 0.03 0.00 +walkman walkman NOM m s 1.18 1.28 1.13 1.22 +walkmans walkman NOM m p 1.18 1.28 0.05 0.07 +walkyrie walkyrie NOM f s 0.00 0.27 0.00 0.27 +wall_street wall_street NOM s 0.03 0.07 0.03 0.07 +wallaby wallaby NOM m s 0.13 0.00 0.13 0.00 +wallace wallace NOM f s 0.91 0.00 0.91 0.00 +wallon wallon ADJ m s 0.28 0.07 0.01 0.07 +wallonne wallon ADJ f s 0.28 0.07 0.27 0.00 +walter walter NOM m s 0.27 0.00 0.27 0.00 +wapiti wapiti NOM m s 0.03 0.20 0.02 0.07 +wapitis wapiti NOM m p 0.03 0.20 0.01 0.14 +warning warning NOM m s 0.34 0.07 0.07 0.00 +warnings warning NOM m p 0.34 0.07 0.28 0.07 +warrants warrant NOM m p 0.00 0.07 0.00 0.07 +wassingue wassingue NOM f s 0.00 0.14 0.00 0.07 +wassingues wassingue NOM f p 0.00 0.14 0.00 0.07 +water_closet water_closet NOM m s 0.00 0.14 0.00 0.14 +water_polo water_polo NOM m s 0.23 0.00 0.23 0.00 +water water NOM m s 2.49 1.55 1.03 0.20 +waterman waterman NOM m s 0.12 0.34 0.12 0.34 +waterproof waterproof ADJ m s 0.07 0.07 0.07 0.07 +waters water NOM m p 2.49 1.55 1.46 1.35 +watt watt NOM m s 1.78 0.81 0.03 0.00 +wattman wattman NOM m s 0.00 0.20 0.00 0.20 +watts watt NOM m p 1.78 0.81 1.75 0.81 +wax wax NOM m 0.74 0.07 0.74 0.07 +way_of_life way_of_life NOM m s 0.02 0.14 0.02 0.14 +web web NOM m s 2.34 0.00 2.34 0.00 +webcam webcam NOM f s 0.31 0.00 0.31 0.00 +week_end week_end NOM m s 44.51 14.32 39.41 12.16 +week_end week_end NOM m p 44.51 14.32 3.13 2.16 +week_end week_end NOM m s 44.51 14.32 1.96 0.00 +weimarienne weimarien ADJ f s 0.00 0.07 0.00 0.07 +weltanschauung weltanschauung NOM f s 0.02 0.07 0.02 0.07 +welter welter NOM m s 0.14 0.00 0.10 0.00 +welters welter NOM m p 0.14 0.00 0.04 0.00 +western_spaghetti western_spaghetti NOM m 0.00 0.07 0.00 0.07 +western western NOM m s 6.35 3.78 5.19 1.96 +westerns western NOM m p 6.35 3.78 1.16 1.82 +westphalien westphalien ADJ m s 0.00 0.14 0.00 0.07 +westphaliennes westphalien ADJ f p 0.00 0.14 0.00 0.07 +wharf wharf NOM m s 0.03 1.22 0.03 1.22 +whig whig NOM m s 0.21 0.07 0.03 0.07 +whigs whig NOM m p 0.21 0.07 0.18 0.00 +whipcord whipcord NOM m s 0.00 0.07 0.00 0.07 +whiskey whiskey NOM m s 1.20 0.27 1.20 0.27 +whiskies whiskies NOM m p 0.53 1.89 0.53 1.89 +whisky_soda whisky_soda NOM m s 0.13 0.07 0.13 0.07 +whisky whisky NOM m s 30.20 25.47 29.89 25.14 +whiskys whisky NOM m p 30.20 25.47 0.32 0.34 +whist whist NOM m s 0.19 0.27 0.19 0.27 +white_spirit white_spirit NOM m s 0.01 0.00 0.01 0.00 +wicket wicket NOM m s 0.16 0.00 0.16 0.00 +wigwam wigwam NOM m s 0.00 0.27 0.00 0.14 +wigwams wigwam NOM m p 0.00 0.27 0.00 0.14 +wildcat wildcat NOM m s 0.02 0.00 0.02 0.00 +wilhelmien wilhelmien ADJ m s 0.00 0.14 0.00 0.14 +willaya willaya NOM f s 0.00 0.68 0.00 0.61 +willayas willaya NOM f p 0.00 0.68 0.00 0.07 +william william NOM m s 0.09 0.27 0.09 0.27 +williams williams NOM f s 0.46 0.00 0.46 0.00 +winchester winchester NOM m s 0.05 0.27 0.01 0.27 +winchesters winchester NOM m p 0.05 0.27 0.04 0.00 +windsurf windsurf NOM m s 0.05 0.00 0.05 0.00 +wintergreen wintergreen NOM m s 0.01 0.00 0.01 0.00 +wishbone wishbone NOM m s 0.01 0.00 0.01 0.00 +wisigothe wisigoth NOM f s 0.00 0.14 0.00 0.07 +wisigothique wisigothique ADJ f s 0.00 0.14 0.00 0.07 +wisigothiques wisigothique ADJ f p 0.00 0.14 0.00 0.07 +wisigoths wisigoth NOM m p 0.00 0.14 0.00 0.07 +witz witz NOM m 0.01 0.00 0.01 0.00 +wombat wombat NOM m s 0.04 0.00 0.04 0.00 +woofer woofer NOM m s 0.04 0.00 0.01 0.00 +woofers woofer NOM m p 0.04 0.00 0.03 0.00 +world_music world_music NOM f 0.02 0.00 0.02 0.00 +wouah wouah ONO 1.29 0.07 1.29 0.07 +wurtembergeois wurtembergeois ADJ m 0.00 0.14 0.00 0.07 +wurtembergeoise wurtembergeois ADJ f s 0.00 0.14 0.00 0.07 +x x ADJ:num 7.48 4.46 7.48 4.46 +xavier xavier NOM m s 0.67 0.07 0.67 0.07 +xiang xiang NOM m s 0.01 0.00 0.01 0.00 +xiphidion xiphidion NOM m s 0.00 0.07 0.00 0.07 +xiphoïde xiphoïde ADJ m s 0.14 0.00 0.14 0.00 +xième xième ADJ m s 0.28 0.00 0.28 0.00 +xénogenèse xénogenèse NOM f s 0.01 0.00 0.01 0.00 +xénogreffe xénogreffe NOM f s 0.01 0.00 0.01 0.00 +xénon xénon NOM m s 0.34 0.00 0.34 0.00 +xénophilie xénophilie NOM f s 0.00 0.14 0.00 0.14 +xénophobe xénophobe ADJ s 0.07 0.14 0.04 0.00 +xénophobes xénophobe ADJ p 0.07 0.14 0.04 0.14 +xénophobie xénophobie NOM f s 0.25 0.88 0.25 0.88 +xérographie xérographie NOM f s 0.01 0.00 0.01 0.00 +xérographique xérographique ADJ m s 0.01 0.00 0.01 0.00 +xérès xérès NOM m 0.41 0.54 0.41 0.54 +xylographie xylographie NOM f s 0.20 0.00 0.20 0.00 +xylophone xylophone NOM m s 0.28 0.34 0.28 0.27 +xylophones xylophone NOM m p 0.28 0.34 0.00 0.07 +xylophoniste xylophoniste NOM s 0.04 0.00 0.04 0.00 +xylène xylène NOM m s 0.03 0.00 0.03 0.00 +y y PRO:per 4346.55 3086.76 4346.55 3086.76 +ya ya NOM m s 11.45 3.31 11.45 3.31 +yacht_club yacht_club NOM m s 0.04 0.07 0.04 0.07 +yacht yacht NOM m s 6.95 4.80 6.51 3.78 +yachting yachting NOM m s 0.04 0.14 0.04 0.14 +yachtman yachtman NOM m s 0.02 0.14 0.02 0.07 +yachtmen yachtman NOM m p 0.02 0.14 0.00 0.07 +yachts yacht NOM m p 6.95 4.80 0.44 1.01 +yachtwoman yachtwoman NOM f s 0.00 0.07 0.00 0.07 +yack yack NOM m s 3.15 1.76 0.46 1.42 +yacks yack NOM m p 3.15 1.76 2.69 0.34 +yak yak NOM m s 0.38 0.41 0.28 0.41 +yakitori yakitori NOM m s 0.01 0.00 0.01 0.00 +yaks yak NOM m p 0.38 0.41 0.10 0.00 +yakusa yakusa NOM m s 0.15 0.00 0.15 0.00 +yakuza yakuza NOM m s 0.86 0.00 0.79 0.00 +yakuzas yakuza NOM m p 0.86 0.00 0.07 0.00 +yali yali NOM m s 0.00 1.01 0.00 0.88 +yalis yali NOM m p 0.00 1.01 0.00 0.14 +yama yama NOM m s 0.24 0.07 0.24 0.07 +yang yang NOM m s 3.25 0.81 3.25 0.81 +yankee yankee NOM s 8.71 1.08 3.71 0.68 +yankees yankee NOM p 8.71 1.08 5.00 0.41 +yanquis yanqui ADJ p 0.01 0.00 0.01 0.00 +yaourt yaourt NOM m s 3.58 4.73 2.87 3.18 +yaourtières yaourtière NOM f p 0.00 0.07 0.00 0.07 +yaourts yaourt NOM m p 3.58 4.73 0.71 1.55 +yard yard NOM m s 2.10 0.34 0.46 0.27 +yards yard NOM m p 2.10 0.34 1.64 0.07 +yatagan yatagan NOM m s 0.01 0.88 0.01 0.54 +yatagans yatagan NOM m p 0.01 0.88 0.00 0.34 +yeah yeah ONO 14.01 0.27 14.01 0.27 +yearling yearling NOM m s 0.01 0.14 0.01 0.14 +yen yen NOM m s 3.27 0.61 1.87 0.47 +yens yen NOM m p 3.27 0.61 1.40 0.14 +yeshiva yeshiva NOM f s 1.13 0.20 1.13 0.20 +yeti yeti NOM m s 0.29 0.14 0.29 0.14 +yeuse yeuse NOM f s 0.12 0.81 0.02 0.14 +yeuses yeuse NOM f p 0.12 0.81 0.10 0.68 +oeil_radars oeil_radars NOM m p 0.00 0.07 0.00 0.07 +yeux oeil NOM m p 413.04 1234.59 315.89 955.68 +yiddish yiddish ADJ m s 0.70 0.74 0.70 0.74 +yin yin NOM m s 2.17 0.81 2.17 0.81 +ylang_ylang ylang_ylang NOM m s 0.01 0.00 0.01 0.00 +yo_yo yo_yo NOM m 1.03 0.47 1.03 0.47 +yodlait yodler VER 0.03 0.07 0.00 0.07 ind:imp:3s; +yodler yodler VER 0.03 0.07 0.03 0.00 inf; +yoga yoga NOM m s 3.17 1.08 3.17 1.08 +yoghourt yoghourt NOM m s 0.00 0.34 0.00 0.34 +yogi yogi NOM m s 0.57 0.47 0.52 0.41 +yogis yogi NOM m p 0.57 0.47 0.05 0.07 +yogourt yogourt NOM m s 0.31 0.07 0.31 0.07 +yole yole NOM f s 0.04 0.47 0.04 0.47 +yom_kippour yom_kippour NOM m 0.45 0.34 0.45 0.34 +yom_kippur yom_kippur NOM m s 0.04 0.00 0.04 0.00 +york york NOM m s 0.48 0.61 0.48 0.61 +yorkshire yorkshire NOM m s 0.01 0.00 0.01 0.00 +you_you you_you NOM m s 0.00 0.07 0.00 0.07 +yougoslave yougoslave ADJ s 0.69 1.42 0.55 0.81 +yougoslaves yougoslave ADJ p 0.69 1.42 0.14 0.61 +youp youp ONO 0.17 0.68 0.17 0.68 +youpi youpi ONO 1.12 0.54 1.12 0.54 +youpin youpin NOM m s 1.08 1.62 1.05 1.42 +youpine youpin NOM f s 1.08 1.62 0.03 0.20 +yourte yourte NOM f s 0.56 2.91 0.56 1.28 +yourtes yourte NOM f p 0.56 2.91 0.00 1.62 +youtre youtre NOM s 0.01 0.00 0.01 0.00 +youyou youyou NOM m s 0.00 1.62 0.00 1.42 +youyous youyou NOM m p 0.00 1.62 0.00 0.20 +yoyo yoyo NOM m s 0.64 0.54 0.59 0.34 +yoyos yoyo NOM m p 0.64 0.54 0.05 0.20 +ypérite ypérite NOM f s 0.00 0.14 0.00 0.14 +yèbles yèble NOM f p 0.00 0.14 0.00 0.14 +yé_yé yé_yé NOM m 0.00 0.14 0.00 0.14 +yu y NOM m s 33.20 26.62 2.94 0.00 +yuan yuan NOM m s 4.69 0.00 0.50 0.00 +yuans yuan NOM m p 4.69 0.00 4.19 0.00 +yucca yucca NOM m s 0.31 0.07 0.24 0.00 +yuccas yucca NOM m p 0.31 0.07 0.07 0.07 +yue yue NOM m 0.43 0.00 0.43 0.00 +yéménites yéménite NOM p 0.01 0.07 0.01 0.07 +yuppie yuppie NOM s 1.04 0.07 0.45 0.00 +yuppies yuppie NOM p 1.04 0.07 0.60 0.07 +yéti yéti NOM m s 0.65 0.14 0.65 0.14 +yéyé yéyé NOM s 0.41 0.34 0.41 0.20 +yéyés yéyé NOM p 0.41 0.34 0.00 0.14 +z z NOM m 5.39 5.07 5.39 5.07 +zaïrois zaïrois NOM m 0.01 0.00 0.01 0.00 +zaïroise zaïrois ADJ f s 0.01 0.14 0.00 0.07 +zaïroises zaïrois ADJ f p 0.01 0.14 0.01 0.07 +zadé zader VER m s 0.00 0.47 0.00 0.47 par:pas; +zaibatsu zaibatsu NOM m 0.01 0.00 0.01 0.00 +zain zain ADJ m s 0.00 0.07 0.00 0.07 +zakouski zakouski NOM m 0.62 0.34 0.62 0.07 +zakouskis zakouski NOM m p 0.62 0.34 0.00 0.27 +zani zani NOM m s 0.04 0.00 0.04 0.00 +zanimaux zanimaux NOM m p 0.00 0.07 0.00 0.07 +zanzi zanzi NOM m s 0.02 8.04 0.02 8.04 +zanzibar zanzibar NOM m s 0.01 0.00 0.01 0.00 +zappant zapper VER 2.73 0.14 0.01 0.00 par:pre; +zappe zapper VER 2.73 0.14 1.04 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zapper zapper VER 2.73 0.14 0.75 0.07 inf; +zapperai zapper VER 2.73 0.14 0.02 0.00 ind:fut:1s; +zapperait zapper VER 2.73 0.14 0.01 0.00 cnd:pre:3s; +zappes zapper VER 2.73 0.14 0.17 0.00 ind:pre:2s; +zappeur zappeur NOM m s 0.14 0.00 0.14 0.00 +zappez zapper VER 2.73 0.14 0.09 0.00 imp:pre:2p;ind:pre:2p; +zapping zapping NOM m s 0.02 0.00 0.02 0.00 +zappé zapper VER m s 2.73 0.14 0.64 0.07 par:pas; +zarabe zarabe NOM s 0.10 0.00 0.10 0.00 +zarbi zarbi ADJ s 0.70 0.14 0.63 0.14 +zarbis zarbi ADJ m p 0.70 0.14 0.07 0.00 +zazou zazou ADJ m s 0.06 1.01 0.04 1.01 +zazous zazou NOM m p 0.11 0.88 0.07 0.20 +zeb zeb NOM m s 0.50 0.07 0.50 0.07 +zef zef NOM m s 0.01 4.53 0.01 4.53 +zelle zelle NOM m s 0.71 0.74 0.71 0.74 +zemstvo zemstvo NOM m s 0.00 0.07 0.00 0.07 +zen zen ADJ m s 2.55 1.76 2.55 1.76 +zens zen NOM m p 0.93 0.81 0.01 0.20 +zeppelin zeppelin NOM m s 0.07 0.41 0.04 0.14 +zeppelins zeppelin NOM m p 0.07 0.41 0.03 0.27 +zest zest NOM m s 0.05 0.07 0.05 0.07 +zeste zeste NOM m s 0.70 0.88 0.69 0.74 +zester zester VER 0.01 0.00 0.01 0.00 inf; +zestes zeste NOM m p 0.70 0.88 0.01 0.14 +zibeline zibeline NOM f s 1.48 1.08 0.86 0.81 +zibelines zibeline NOM f p 1.48 1.08 0.61 0.27 +zicmu zicmu NOM f s 0.14 0.00 0.14 0.00 +zieute zieuter VER 0.16 0.88 0.07 0.34 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zieutent zieuter VER 0.16 0.88 0.00 0.14 ind:pre:3p; +zieuter zieuter VER 0.16 0.88 0.06 0.34 inf; +zieutes zieuter VER 0.16 0.88 0.01 0.07 ind:pre:2s; +zieutez zieuter VER 0.16 0.88 0.02 0.00 imp:pre:2p; +zig_zig zig_zig ADV 0.03 0.00 0.03 0.00 +zig zig NOM m s 1.16 0.68 1.16 0.68 +ziggourat ziggourat NOM f s 0.05 0.07 0.05 0.00 +ziggourats ziggourat NOM f p 0.05 0.07 0.00 0.07 +zigomar zigomar NOM m s 0.02 0.27 0.01 0.20 +zigomars zigomar NOM m p 0.02 0.27 0.01 0.07 +zigoto zigoto NOM m s 0.30 1.42 0.25 0.68 +zigotos zigoto NOM m p 0.30 1.42 0.05 0.74 +zigouillais zigouiller VER 1.59 1.22 0.00 0.07 ind:imp:1s; +zigouillait zigouiller VER 1.59 1.22 0.00 0.07 ind:imp:3s; +zigouille zigouiller VER 1.59 1.22 0.45 0.20 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zigouillent zigouiller VER 1.59 1.22 0.01 0.00 ind:pre:3p; +zigouiller zigouiller VER 1.59 1.22 0.54 0.47 inf; +zigouillez zigouiller VER 1.59 1.22 0.03 0.07 imp:pre:2p;ind:pre:2p; +zigouillé zigouiller VER m s 1.59 1.22 0.46 0.27 par:pas; +zigouillées zigouiller VER f p 1.59 1.22 0.01 0.00 par:pas; +zigouillés zigouiller VER m p 1.59 1.22 0.10 0.07 par:pas; +zigounette zigounette NOM f s 0.14 0.07 0.14 0.07 +zigue zigue NOM m s 0.34 0.74 0.30 0.54 +zigues zigue NOM m p 0.34 0.74 0.03 0.20 +zigzag zigzag NOM m s 0.42 2.64 0.36 1.49 +zigzagant zigzagant ADJ m s 0.00 0.61 0.00 0.20 +zigzagante zigzagant ADJ f s 0.00 0.61 0.00 0.34 +zigzagantes zigzagant ADJ f p 0.00 0.61 0.00 0.07 +zigzags zigzag NOM m p 0.42 2.64 0.05 1.15 +zigzagua zigzaguer VER 0.82 4.66 0.00 0.20 ind:pas:3s; +zigzaguai zigzaguer VER 0.82 4.66 0.00 0.07 ind:pas:1s; +zigzaguaient zigzaguer VER 0.82 4.66 0.00 0.41 ind:imp:3p; +zigzaguait zigzaguer VER 0.82 4.66 0.04 0.81 ind:imp:3s; +zigzaguant zigzaguer VER 0.82 4.66 0.14 1.42 par:pre; +zigzague zigzaguer VER 0.82 4.66 0.17 0.54 ind:pre:1s;ind:pre:3s; +zigzaguent zigzaguer VER 0.82 4.66 0.01 0.20 ind:pre:3p; +zigzaguer zigzaguer VER 0.82 4.66 0.41 0.68 inf; +zigzaguèrent zigzaguer VER 0.82 4.66 0.00 0.07 ind:pas:3p; +zigzagué zigzaguer VER m s 0.82 4.66 0.04 0.20 par:pas; +zigzaguée zigzaguer VER f s 0.82 4.66 0.00 0.07 par:pas; +zinc zinc NOM m s 2.12 17.30 1.96 16.49 +zincs zinc NOM m p 2.12 17.30 0.16 0.81 +zingage zingage NOM m s 0.00 0.07 0.00 0.07 +zingaro zingaro NOM m s 0.10 17.97 0.10 17.97 +zingué zinguer VER m s 0.00 0.14 0.00 0.07 par:pas; +zingués zinguer VER m p 0.00 0.14 0.00 0.07 par:pas; +zinnia zinnia NOM m s 0.11 0.34 0.01 0.07 +zinnias zinnia NOM m p 0.11 0.34 0.10 0.27 +zinzin zinzin ADJ m s 0.64 0.41 0.64 0.41 +zinzins zinzin NOM m p 0.27 0.74 0.08 0.20 +zinzolin zinzolin ADJ m p 0.00 0.07 0.00 0.07 +zip zip NOM m s 0.78 0.41 0.78 0.41 +zippa zipper VER 0.25 0.20 0.00 0.07 ind:pas:3s; +zippait zipper VER 0.25 0.20 0.00 0.07 ind:imp:3s; +zipper zipper VER 0.25 0.20 0.21 0.07 inf; +zippé zipper VER m s 0.25 0.20 0.04 0.00 par:pas; +zircon zircon NOM m s 0.20 0.00 0.18 0.00 +zirconium zirconium NOM m s 0.05 0.00 0.05 0.00 +zircons zircon NOM m p 0.20 0.00 0.02 0.00 +zizanie zizanie NOM f s 0.56 0.41 0.56 0.34 +zizanies zizanie NOM f p 0.56 0.41 0.00 0.07 +zizi zizi NOM m s 2.89 2.84 2.69 2.30 +zizique zizique NOM f s 0.17 0.34 0.17 0.34 +zizis zizi NOM m p 2.89 2.84 0.20 0.54 +zloty zloty NOM m s 1.29 0.07 0.01 0.00 +zlotys zloty NOM m p 1.29 0.07 1.28 0.07 +zob zob NOM m s 1.57 1.35 1.54 1.35 +zobs zob NOM m p 1.57 1.35 0.03 0.00 +zodiac zodiac NOM m s 0.01 0.00 0.01 0.00 +zodiacal zodiacal ADJ m s 0.14 0.07 0.14 0.07 +zodiacale zodiacal ADJ f s 0.14 0.07 0.01 0.00 +zodiaque zodiaque NOM m s 0.53 0.68 0.53 0.68 +zombi zombi NOM m s 0.65 3.58 0.28 2.97 +zombie zombie NOM m s 5.04 1.01 2.33 0.54 +zombies zombie NOM m p 5.04 1.01 2.71 0.47 +zombification zombification NOM f s 0.02 0.00 0.02 0.00 +zombis zombi NOM m p 0.65 3.58 0.37 0.61 +zona zona NOM m s 0.37 0.61 0.36 0.61 +zonage zonage NOM m s 0.10 0.00 0.10 0.00 +zonait zoner VER 0.23 0.81 0.04 0.07 ind:imp:3s; +zonal zonal ADJ m s 0.00 0.07 0.00 0.07 +zonant zoner VER 0.23 0.81 0.01 0.07 par:pre; +zonard zonard NOM m s 0.18 4.26 0.08 1.76 +zonarde zonard NOM f s 0.18 4.26 0.00 0.27 +zonardes zonard NOM f p 0.18 4.26 0.00 0.14 +zonards zonard NOM m p 0.18 4.26 0.10 2.09 +zonas zona NOM m p 0.37 0.61 0.01 0.00 +zone zone NOM f s 53.94 42.50 46.97 34.39 +zoner zoner VER 0.23 0.81 0.03 0.54 inf; +zonera zoner VER 0.23 0.81 0.01 0.00 ind:fut:3s; +zones_clé zones_clé NOM f p 0.00 0.07 0.00 0.07 +zones zone NOM f p 53.94 42.50 6.98 8.11 +zoning zoning NOM m s 0.01 0.00 0.01 0.00 +zoné zoner VER m s 0.23 0.81 0.13 0.14 par:pas; +zonzon zonzon NOM m s 0.33 0.54 0.33 0.54 +zoo zoo NOM m s 12.17 6.49 11.45 6.08 +zoologie zoologie NOM f s 0.40 0.34 0.40 0.34 +zoologique zoologique ADJ s 0.36 1.22 0.35 1.01 +zoologiques zoologique ADJ m p 0.36 1.22 0.01 0.20 +zoologiste zoologiste NOM s 0.25 0.00 0.25 0.00 +zoologue zoologue NOM m s 0.02 0.00 0.02 0.00 +zoom zoom NOM m s 2.40 0.41 2.27 0.34 +zoome zoomer VER 1.49 0.00 0.58 0.00 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zoomer zoomer VER 1.49 0.00 0.37 0.00 inf; +zoomes zoomer VER 1.49 0.00 0.28 0.00 ind:pre:2s; +zoomez zoomer VER 1.49 0.00 0.26 0.00 imp:pre:2p; +zooms zoom NOM m p 2.40 0.41 0.12 0.07 +zoophile zoophile ADJ f s 0.03 0.14 0.01 0.14 +zoophiles zoophile ADJ f p 0.03 0.14 0.02 0.00 +zoophilie zoophilie NOM f s 0.08 0.00 0.08 0.00 +zoos zoo NOM m p 12.17 6.49 0.72 0.41 +zoreille zoreille NOM m s 0.02 0.07 0.02 0.00 +zoreilles zoreille NOM m p 0.02 0.07 0.00 0.07 +zorille zorille NOM f s 0.00 0.07 0.00 0.07 +zoroastrien zoroastrien NOM m s 0.02 0.00 0.01 0.00 +zoroastriens zoroastrien NOM m p 0.02 0.00 0.01 0.00 +zoroastrisme zoroastrisme NOM m s 0.01 0.00 0.01 0.00 +zou zou ONO 1.86 0.54 1.86 0.54 +zouave zouave NOM m s 0.46 2.70 0.46 1.76 +zouaves zouave NOM m p 0.46 2.70 0.00 0.95 +zouk zouk NOM m s 0.01 0.00 0.01 0.00 +zoulou zoulou ADJ m s 0.16 0.07 0.15 0.00 +zouloue zoulou ADJ f s 0.16 0.07 0.01 0.00 +zoulous zoulou NOM m p 0.11 0.07 0.05 0.07 +zoziaux zoziaux NOM m p 0.01 0.07 0.01 0.07 +zozo zozo NOM m s 0.88 0.81 0.70 0.41 +zozos zozo NOM m p 0.88 0.81 0.18 0.41 +zozotait zozoter VER 0.06 0.61 0.00 0.14 ind:imp:3s; +zozotant zozoter VER 0.06 0.61 0.00 0.34 par:pre; +zozote zozoter VER 0.06 0.61 0.05 0.07 ind:pre:3s; +zozotement zozotement NOM m s 0.01 0.14 0.01 0.07 +zozotements zozotement NOM m p 0.01 0.14 0.00 0.07 +zozotes zozoter VER 0.06 0.61 0.00 0.07 ind:pre:2s; +zozoteuse zozoteur NOM f s 0.00 0.07 0.00 0.07 +zozotez zozoter VER 0.06 0.61 0.01 0.00 ind:pre:2p; +zèbre zèbre NOM m s 3.80 5.14 2.65 3.04 +zèbrent zébrer VER 0.20 2.84 0.00 0.07 ind:pre:3p; +zèbres zèbre NOM m p 3.80 5.14 1.15 2.09 +zèle zèle NOM m s 4.92 10.68 4.92 10.61 +zèles zèle NOM m p 4.92 10.68 0.00 0.07 +zébra zébrer VER 0.20 2.84 0.16 0.14 ind:pas:3s; +zébraient zébrer VER 0.20 2.84 0.00 0.54 ind:imp:3p; +zébrait zébrer VER 0.20 2.84 0.00 0.14 ind:imp:3s; +zébrant zébrer VER 0.20 2.84 0.00 0.41 par:pre; +zébrer zébrer VER 0.20 2.84 0.00 0.27 inf; +zébré zébré ADJ m s 0.04 0.68 0.03 0.14 +zébrée zébré ADJ f s 0.04 0.68 0.02 0.27 +zébrées zébrer VER f p 0.20 2.84 0.00 0.14 par:pas; +zébrure zébrure NOM f s 0.03 1.49 0.00 0.47 +zébrures zébrure NOM f p 0.03 1.49 0.03 1.01 +zébrés zébrer VER m p 0.20 2.84 0.01 0.14 par:pas; +zébu zébu NOM m s 0.06 0.41 0.06 0.20 +zébus zébu NOM m p 0.06 0.41 0.00 0.20 +zélateur zélateur NOM m s 0.02 0.41 0.00 0.07 +zélateurs zélateur NOM m p 0.02 0.41 0.00 0.34 +zélatrice zélateur NOM f s 0.02 0.41 0.02 0.00 +zélote zélote NOM m s 0.08 0.81 0.02 0.34 +zélotes zélote NOM m p 0.08 0.81 0.06 0.47 +zélé zélé ADJ m s 1.19 2.97 0.69 1.42 +zélée zélé ADJ f s 1.19 2.97 0.11 0.47 +zélées zélé ADJ f p 1.19 2.97 0.00 0.20 +zélés zélé ADJ m p 1.19 2.97 0.39 0.88 +zénana zénana NOM f s 0.00 0.07 0.00 0.07 +zénith zénith NOM m s 0.63 3.38 0.63 3.38 +zénithale zénithal ADJ f s 0.00 0.14 0.00 0.07 +zénithales zénithal ADJ f p 0.00 0.14 0.00 0.07 +zéphire zéphire ADJ s 0.10 0.00 0.10 0.00 +zéphyr zéphyr NOM m s 0.09 0.61 0.04 0.47 +zéphyrs zéphyr NOM m p 0.09 0.61 0.05 0.14 +zurichois zurichois NOM m 0.00 0.14 0.00 0.14 +zurichoise zurichois ADJ f s 0.00 0.14 0.00 0.07 +zéro zéro NOM m s 32.85 18.24 30.44 16.49 +zéros zéro NOM m p 32.85 18.24 2.41 1.76 +zut zut ONO 13.69 7.16 13.69 7.16 +zézaie zézayer VER 0.02 0.74 0.01 0.27 ind:pre:3s; +zézaiement zézaiement NOM m s 0.03 0.20 0.03 0.20 +zézaient zézayer VER 0.02 0.74 0.00 0.07 ind:pre:3p; +zézayaient zézayer VER 0.02 0.74 0.00 0.07 ind:imp:3p; +zézayant zézayer VER 0.02 0.74 0.01 0.20 par:pre; +zézaye zézayer VER 0.02 0.74 0.00 0.07 ind:pre:3s; +zézayer zézayer VER 0.02 0.74 0.00 0.07 inf; +zézette zézette NOM f s 0.24 9.32 0.24 9.05 +zézettes zézette NOM f p 0.24 9.32 0.00 0.27 +zydeco zydeco NOM f s 0.01 0.00 0.01 0.00 +zyeuta zyeuter VER 0.16 2.77 0.00 0.07 ind:pas:3s; +zyeutais zyeuter VER 0.16 2.77 0.00 0.07 ind:imp:1s; +zyeutait zyeuter VER 0.16 2.77 0.00 0.14 ind:imp:3s; +zyeutant zyeuter VER 0.16 2.77 0.00 0.20 par:pre; +zyeute zyeuter VER 0.16 2.77 0.12 1.22 imp:pre:2s;ind:pre:1s;ind:pre:3s; +zyeuter zyeuter VER 0.16 2.77 0.02 0.95 inf; +zyeutes zyeuter VER 0.16 2.77 0.01 0.00 ind:pre:2s; +zyeuté zyeuter VER m s 0.16 2.77 0.01 0.14 par:pas; +zygoma zygoma NOM m s 0.00 0.07 0.00 0.07 +zygomatique zygomatique ADJ f s 0.16 0.34 0.11 0.14 +zygomatiques zygomatique ADJ f p 0.16 0.34 0.05 0.20 +zygote zygote NOM m s 0.06 0.00 0.06 0.00 +zyklon zyklon NOM m s 0.82 0.00 0.82 0.00 +zzz zzz ONO 0.04 0.00 0.04 0.00 +zzzz zzzz ONO 0.00 0.07 0.00 0.07 \ No newline at end of file diff --git a/documentation/Warning_icon.png b/documentation/Warning_icon.png new file mode 100644 index 0000000..d83f349 Binary files /dev/null and b/documentation/Warning_icon.png differ diff --git a/documentation/documentation-img1.png b/documentation/documentation-img1.png new file mode 100644 index 0000000..d83f349 Binary files /dev/null and b/documentation/documentation-img1.png differ diff --git a/documentation/documentation-img2.png b/documentation/documentation-img2.png new file mode 100644 index 0000000..d83f349 Binary files /dev/null and b/documentation/documentation-img2.png differ diff --git a/documentation/documentation.doc b/documentation/documentation.doc new file mode 100644 index 0000000..cc8b0a2 Binary files /dev/null and b/documentation/documentation.doc differ diff --git a/documentation/documentation.html b/documentation/documentation.html new file mode 100644 index 0000000..fb7e880 --- /dev/null +++ b/documentation/documentation.html @@ -0,0 +1,1263 @@ + + + + + + - no title specified + + + + + + + + + + + + + + + + +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

    Documentation Iramuteq

    +

     

    +

    version 0.3 alpha 3

    +

     

    +

     

    +

    Manuel utilisateur

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

     

    +

    Pierre Ratinaud

    +

     

    +

    Licence GNU FDL

    +

     

    +

    +
    +


    +

    + + +

    Table des matières

    +


    +

    +
      +
    1. 1 Présentation d'iramuteq
      1. 1.1 R
      2. 1.2 Python
      3. 1.3 Lexique 3
    2. 2 Analyses de textes
      1. 2.1 Format des données en + entrée
      2. 2.2 Ouverture d'un fichier + texte
      3. 2.3 Traitements commun aux + analyses
        1. 2.3.1 Nettoyage 1
        2. 2.3.2 Dictionnaire des + expressions
        3. 2.3.3 Nettoyage 2
        4. 2.3.4 Lemmatisation
      4. 2.4 Statistiques + textuelles
        1. 2.4.1 Description
        2. 2.4.2 Résultats
        3. 2.4.3 Fichiers en sortie
      5. 2.5 Comme Lexico
        1. 2.5.1 Options
        2. 2.5.2 Résultats
      6. 2.6 AFC sur UCI
        1. 2.6.1 Description
        2. 2.6.2 Options
        3. 2.6.3 Résultats
      7. 2.7 Classification
        1. 2.7.1 Méthode ALCESTE
          1. 2.7.1.1 Description
          2. 2.7.1.2 Options
          3. 2.7.1.3 Résultats
            1. 2.7.1.3.1 Options des + profils
          4. 2.7.1.4 Fichiers en sortie
        2. 2.7.2 Par matrice des + distances
    3. 3 Analyses de tableaux de + données
      1. 3.1 Format des données en + entrée
      2. 3.2 Fréquences
      3. 3.3 Chi 2
      4. 3.4 Classification
      5. 3.5 Par matrice des + distances
        1. 3.5.1 Méthode ALCESTE
      6. 3.6 AFCM
      7. 3.7 Graphes
    4. 4 Bibliographie
    5. 5 Annexes
    6. +
    +

     

    + +

    1 Présentation d'iramuteq

    +

     

    +

    Iramuteq est un logiciel d'analyse de textes et de + tableaux de données. Il s'appuie sur le logiciel de statistique R (http://www.r-project.org), + sur le langage python (http://www.python.org) + et sur la base de données lexicales Lexique (http://www.lexique.org).

    +

     

    +

     

    +

    ATTENTION

    +

     

    +

    Iramuteq est en cours de développement. Regardez les + informations disponibles sur la page http://repere.no-ip.org/logiciel/iramuteq + pour connaître la fiabilité des différentes analyses.

    +

    1.1 R

    +

     

    +

    http://www.r-project.org

    +

     

    +

    1.2 Python

    +

     

    +

    http://www.python.org

    +

     

    +

    1.3 Lexique 3

    +

     

    +

    http://www.lexique.org

    +

     

    +

    2 Analyses de textes

    +

     

    +

    2.1 Format des données en + entrée

    +

     

    +

    Les fichiers d'entrée doivent être au format texte + brut (.txt) et respecter les règles de formatage des corpus ALCESTE.

    +

    Dans ce formatage, l'unité de base est appelée + « unité de contexte initiale Â» (UCI). Une UCI peu représenter un + entretien, un article, un livre ou tout autre type de documents. Un corpus + peut contenir une ou plusieurs UCI (mais au minimum une).

    +


    + Les UCI sont introduites par quatre étoiles (****) suivies d'une série de + variables étoilées séparées par un espace.

    + +
    + +
    + +
    Une uci doit + obligatoirement avoir au moins une variable étoilée
    +
    +
     
    +

    Il est possible de placer des variables étoilées à + l'intérieur des corpus en les introduisant en début de ligne par un tiret + et une étoile (-*). La ligne ne doit contenir que cette variable.

    +

    Il est possible d'introduire dans le corps du texte + des formes qui seront traitées comme des variables étoilées. Il faut alors + que ces formes commencent et se terminent par un _. :

    +

    Exemple

    +

    texte texte _rire_ texte texte texte

    +

     

    +

    Le texte contient, de préférence, les caractères de + ponctuations.

    +

     

    +

    Exemple d'un corpus sans thématique :

    +

    **** *var1_1 *var2_2

    +

    texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte  texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte  texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte  texte texte texte + texte texte texte texte texte texte texte texte  texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte  texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte  texte texte texte + texte texte texte texte texte texte texte texte texte texte texte

    +

    +

    **** *var1_2 *var2_3

    +

    texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte  texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte  texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte  texte texte + texte texte texte texte texte texte texte texte texte  texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte  texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte  texte texte + texte

    +

     

    +

    Exemple d'un corpus avec thématique :

    +

    **** *var1_1 *var2_2

    +

    +

    -*thematique1

    +

    texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte

    +

    +

    -*thematique2

    +

    texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte

    +

    +

    **** *var1_2 *var2_3

    +

    +

    -*thematique1

    +

    texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte

    +

    +

    -*thematique2

    +

    texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte texte texte texte texte texte texte + texte texte texte texte texte texte

    +

     

    +

     

    + +
    + +
    + +
    Dans un corpus avec + thématique, tous les paragraphes d'une UCI doivent appartenir à une + thématique. La construction suivante n'est donc pas possible :
    +
    +
     
    +

    **** *var1_1

    +

    texte texte texte texte texte

    +

    -*thematique1

    +

    texte texte texte texte texte texte

    +

     

    +

     

    + +
    + +
    + +
    Les variables étoilées + et les thématiques introduites dans le corpus ne doivent pas contenir + d'espaces ou de caractères spéciaux. Elles ne doivent contenir que des + caractères parmi a-z, A-Z, 1-9 et des tirets bas (_).
    +
    +
     
    +

    *age 18 ans n'est pas un bon codage

    +

    *age_18 est un bon codage

    +

    *entretien_d'Emilie n'est pas un bon codage

    +

    *ent_emilie est un bon codage

    +

     

    +

     

    + +
    + +
    + +
    Les codages de la forme + *variable_modalité doivent être privilégiés pour les variables + illustratives. Ils permettent des analyses complémentaires.
    +
    +
     
    +

    Exemple : *sex_h pour les hommes et *sex_f + pour les femmes permet de repérer la variable sex et les modalités h et f.

    +

     

    +

    2.2 Ouverture d'un fichier + texte

    +

    Fichier → Ouvrir un corpus texte

    +

    Vous devez préciser l'encodage du fichier et la + langue du corpus.

    +

    2.3 Traitements commun aux + analyses

    +

    2.3.1 Nettoyage 1

    +

    Les corpus texte sont passés en minuscule. Tous les + caractères qui ne sont pas dans la liste des caractères retenus sont + remplacés par des espaces. Toutes les succesions d'espaces ou de sauts de + ligne sont remplacés par un espace ou un saut de ligne. Les apostrophes + (’) sont remplacées par des apostrophes (').

    +

    Caractères retenus : + a-zA-Z0-9àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇ’ñ.:,;!?\n*'_-

    +

    Cette liste devrait devenir paramétrable

    +

    2.3.2 Dictionnaire des + expressions

    +

    Le dictionnaire des expressions contient des + expression ou des mots contenant des tirets (-) ou des apostrophes ('). Il + permet de traiter ces expressions comme un tout. Par exemple, le mot + aujourd'hui sera traité comme la forme aujourd_hui. L'expression + « vis-à-vis Â» sera transformée en vis_à_vis Â». Le + dictionnaire des expressions est disponible dans le répertoire + d'installation d'iramuteq, dans le sous-répertoire + « dictionnaire Â».

    +

    L'utilisation de ce dictionnaire est optionnel.

    +

    2.3.3 Nettoyage 2

    +

    Les apostrophes (') et les tirets (-) sont remplacés + par des espaces.

    +

    2.3.4 Lemmatisation

    +

    Les verbes sont réduits à l'infinitif, les noms et + les adjectifs sont réduits au masculin singulier.

    +

    Exemple :

    +

    mangé, mangeons, mangera → manger

    +

    professionnelles, professionnelle, + professionnels, professionnel → professionnel

    +

     

    +

    La lemmatisation est optionnelle.

    +

    2.4 Statistiques + textuelles

    +

    2.4.1 Description

    +

    Analyse de texte → Statistiques textuelles

    +

    Cette analyse propose des statistiques simples sur les + corpus texte : effectifs de toutes les formes, effectifs des formes + actives et supplémentaires, liste des hapax.

    +

     

    +

    2.4.2 Résultats

    +

    Les résultats se présentent sous forme de listes. Un + clique droit sur une forme permet d'accéder aux formes associées et à un + concordancier.

    +

     

    +

    2.4.3 Fichiers en sortie

    +

     

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    Répertoire de sortie

    +
    +

    NomDuCorpus_Stat_x

    +
    +

    Fichiers en sortie :

    +
    +

    total.csv

    +
    +

    Toute les formes et leurs effectifs

    +
    +

    formes supplémentaires.csv

    +
    +

    Les formes supplémentaires et leurs + effectifs

    +
    +

    formes actives.csv

    +
    +

    Les formes actives et leurs effectifs

    +
    +

    hapax.csv

    +
    +

    Les hapax

    +
    +

     

    +

    2.5 Comme Lexico

    +

    Analyse de texte → Comme lexico

    +

    Reproduit une des analyses du logiciel Lexico (http://www.tal.univ-paris3.fr/lexico/). +

    +

    Il s'agit de la description d'un tableau de contingence + qui croise formes et groupes d'UCI. Les groupe d'UCI sont sélectionnées en + fonction de variables illustratives. L'objectif est de comparer ces + groupes d'UCI.

    +

     

    +

    2.5.1 Options

    +

    L'effectif minimum d'une forme sélectionnée peut être + paramétré. Par défaut, cette valeur est à 10.

    +

     

    +

    2.5.2 Résultats

    +

    Les mêmes résultats sont produits sur les formes et + sur les types.

    +
      +
    • +

      •.Onglet + Spécificités : 

      +

      Présente + l'exposant du seuil de significativité du chi2 qui mesure la force du + lien entre la forme et la variable. Par exemple, si une forme est liée + à une variable avec un chi2 dont le seuil de significativité est + 0,001, la valeur 3 sera notée car 0,001 = 10-3. 

      +
    • +
    • +

      •.Onglet Effectifs : 

      +

      Les effectifs 

      +
    • +
    • +

      •.Onglet Effectifs relatifs : 

      +

      Les effectifs relatifs en 1000ème 

      +
    • +
    +

    2.6 AFC sur UCI

    +

    2.6.1 Description

    +

    Analyse de texte → AFC sur UCI

    +

    Produit une Analyse factorielle des correspondances + sur un tableau de contingence qui croise formes actives et UCI.

    +

    Cette analyse est immature.

    +

    2.6.2 Options

    +

    Pas d'options pour l'instant

    +

    2.6.3 Résultats

    +

    Trois graphiques d'AFC sont proposés : formes + actives, formes supplémentaire et variables étoilées.

    +

     

    +

    2.7 Classification

    +

    2.7.1 Méthode ALCESTE

    +

    2.7.1.1 Description

    +

    Analyse de texte → Classification → méthode ALCESTE

    +

    Cette analyse propose une classification hiérarchique + descendante selon la méthode ALCESTE (Reinert, 1983, 1986, 1991). La + classification peut être menée sur les UCI (classification simple sur UCI) + ou sur des segments de textes (Unité de Contexte Élémentaire : UCE). + Les classifications sur les UCE peuvent être conduites directement sur + celles-ci (classification simple sur UCE) ou sur deux tableaux proposant + des regroupements de segments de texte (Unité de Contexte : UC) qui + différent par le nombre de variables actives (et donc d'UCE) regroupées + par ligne (classification double sur UC).

    +

    Voir le détail de la classification ALCESTE en annexe.

    +

    2.7.1.2 Options

    + +
    + +
     
    + +
    +
    +
     
    +
      +
    • +

      •.Utiliser + le dictionnaire des expressions : 

      +

      voir + dictionnaire des expressions 

      +

       

      +
    • +
    • +

      •.Lemmatisation : 

      +

      voir + lemmatisation 

      +

       

      +
    • +
    • +

      •.Classification : 

      +
        +
      • +

        ◦.double + sur UC : la classification est menée sur deux tableaux qui + regroupent sur chaque ligne un certain nombre d'UCE en fonction du + nombre de formes actives par ligne des paramètres « taille uc + 1 Â» et « taille uc2 Â» 

        +
      • +
      • +

        ◦.simple + sur UCE : la classification est menée sur les UCE 

        +
      • +
      • +

        ◦.simple + sur UCI : la classification est menée sur les UCI 

        +
      • +
      +
    • +
    +

     

    +
      +
    • +

      •.Nombre + de classes terminales de la phase 1 : 

      +

      Détermine + le nombre de classes de la première partie de la classification. 

      +

       

      +
    • +
    • +

      •.Nombre + d'occurrences par UCE : 

      +

      Permet + de choisir la taille des UCE en fonction du nombre d'occurrences + qu'elles regroupent. Par défaut, ce calcul est automatique et la + taille des UCE est fonction de la taille du corpus. Plus le corpus est + important, plus les UCE seront longues. Dans tous les cas, la + ponctuation est prise en compte dans le découpage ; la valeur du + nombre d'occurrences est donc « un objectif à atteindre Â» et + pas une valeur stricte. 

      +
    • +
    +

     

    +

     

    +
      +
    • +
      + +
      + +
      Vérifiez la taille + des UCE dans vos analyses, elle peut rapidement devenir trop + importante. Des UCE d'une cinquante d'occurrences correspondent à + environ deux ou trois lignes de texte.
      +
      +
       
      +

       

      +
    • +
    • +

      •.Nombre + minimum d'UCE par classe : 

      +

      Permet + de choisir le nombre minimum d'UCE par classe. Par défaut, seules les + classes regroupant 1/(10*le nombre de classes terminales de la phase + 1) des UCE pour une classification simple, et 1/(20*le nombre de + classes terminales de la phase 1) des UCE pour une classification + double, seront retenues. 

      +
    • +
    +

     

    +
      +
    • +

      •.Nombre + maximum de formes analysées : 

      +

      Par + défaut, les 1500 formes actives les plus fréquentes et les 1500 formes + supplémentaires les plus fréquentes seront retenues. Une forme doit + avoir au minimum une fréquence de 4 pour être retenue. Si le corpus à + moins de 1500 formes, toutes les formes avec une fréquence supérieure + à 3 seront retenues. 

      +
    • +
    +

     

    +

     

    +
      +
    • +
      + +
      + +
      Ce paramètre a une + forte incidence sur la taille des tableaux analysés et donc sur la + quantité de mémoire de l'ordinateur mobilisée. Si votre ordinateur + n'a pas assez de mémoire pour analyser un corpus, essayez de baisser + ce paramètre. Si votre ordinateur possède « suffisamment Â» + de mémoire pour le corpus et que le corpus possède plus de 1500 + formes de fréquence > 3, n'hésitez pas à l'augmenter.
      +
      +
       
      +
    • +
    • +

      •.Configuration + des clés d'analyse : 

      +

      Voir + clés d'analyse 

      +
    • +
    +

    2.7.1.3 Résultats

    +

    Les résultats directement disponibles présentent un + résumé de la classification (onglet CHD) les profils des classes (onglet + Profils), les antiprofils des classes (onglet Antiprofils) et une analyse + factorielle des correspondances menées sur le tableau de contingence + croisant formes et classes (onglet AFC).

    + +
    + +
     
    + +
    +
    +
     
    +
    2.7.1.3.1 Options des + profils
    +

    A partir d'un clique droit sur une ligne du profil, + plusieurs outils complémentaires sont proposés :

    + +
    + +
    +
    +
     
    +
      +
    • +

      •.Formes + associées : renvoie les mots associées à la forme sélectionnée et + leurs effectifs. 

      +
    • +
    • +

      •.Chi2 + par classe : crée un graphique qui présente le chi2 d'association + de la forme à chacune des classes. Plusieurs formes peuvent être + sélectionnées en même temps. 

      +
    • +
    • +

      •.Concordancier : + propose le concordancier de la (ou des) forme(s) sélectionnée(s). Ce + concordancier est disponible pour les UCE de la classe, les UCE + classées ou toutes les UCE du corpus. 

      +
    • +
    • +

      •.Outils + du CNRTL : interroge la base de données du Centre Nationale de + Ressources Textuelles et Lexicales (http://www.cnrtl.fr/) + à partir de la forme sélectionnée (nécessite  d'être connecté à + Internet). Permet d'obtenir une définition (Lexicographie), les + synonymes (Synonymie), les Antonymes (Antonymie), l'étymologie + (Etymologie) et la morphologie (Morphologie) de la forme. Les + résultats s'affichent dans le navigateur internet par défaut du + système. 

      +
    • +
    • +

      •.Graph + de classe : indépendant de la ligne sélectionnée. Il s'agit d'une + analyse de similitude menée sur un tableau absence/présence (0/1) qui + croise les unités choisies en ligne (UCI ou UCE) et les formes actives + de la classe en colonne. La matrice de similitude est construite sur + les colonnes (les formes actives de la classe). Par défaut, l'indice + de similitude utilisé est la cooccurrence. Les résultats se présentent + sous la forme d'un graphe de similitude réduit à un arbre maximum.  

      +

      Voir + « analyse de similitude Â» pour plus de détails. 

      +
    • +
    • +

      •.Segments + répétés : indépendant de la ligne sélectionnée. Effectifs et + tailles des segments répétés de la classe. Préférez les profils des + segments répétés. 

      +
    • +
    • +

      •.UCE + caractéristiques : indépendant de la ligne sélectionnée. Liste + les UCE caractéristiques de la classe. Deux scores sont + proposés : 

      +
        +
      • +

        ◦.absolu : + les UCE sont classées en fonction de la somme de chi2 de liaison à + la classe des formes actives qu'elles contiennent. 

        +
      • +
      • +

        ◦.Relatif : + les UCE sont classées en fonction de la moyenne des chi2 de + liaison à la classe des formes actives qu'elles contiennent. 

        +
      • +
      +
    • +
    +

     

    +

    Dans le cas d'une classification sur UCI, remplacez UCE par + UCI dans la description précédente.

    +

    2.7.1.4 Fichiers en sortie

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    Répertoire de sortie

    +
    +

    NomDuCorpus_alceste_x

    +
    +

    Fichiers en sortie :

    +
    +

    TableUc1.csv

    +
    +

    Le tableau UC1/formes ou UCI/formes ou + UCE/formes

    +
    +

    TableUc2.csv

    +
    +

    Le tableau UC2/formes

    +
    +

    listeUCE1.csv

    +
    +

    Tableau uce;uc pour les UC1

    +
    +

    listeUCE2.csv

    +
    +

    Tableau uce;uc pour les UC2

    +
    +

    profiles.csv

    +
    +

    Profils des classes

    +
    +

    antiprofiles.csv

    +
    +

    Antiprofils des classes

    +
    +

    info.txt

    +
    +

    Résumé de la classification

    +
    +

    uce.csv

    +
    +

    Les uce par classe

    +
    +

    arbre_1.png

    +
    +

    Dendrogramme de la première CHD

    +
    +

    arbre_2.png

    +
    +

    Dendrogramme de la seconde CHD

    +
    +

    dendro1.png

    +
    +

    Dendrogramme final sur UC1

    +
    +

    dendro2.png

    +
    +

    Dendrogramme final sur UC2

    +
    +

    classe_mod.csv

    +
    +

    Tableau de contingence formes + actives/classes

    +
    +

    RData.RData

    +
    +

    Résultats dans R

    +
    +

    tablesup.csv

    +
    +

    Tableau de contingence formes + supplémentaires/classes

    +
    +

    tableet.csv

    +
    +

    Tableau de contingence variables + illustratives/classes

    +
    +

    SbyClasseOut.csv

    +
    +

    Les uce par classe

    +
    +

    chisqtable.csv

    +
    +

    Chi2 d'association de chaque formes aux + classes

    +
    +

    ptable.csv

    +
    +

    Seuil de significativité des chi2 + d'associations de chaque forme aux classes.

    +
    +

    Analyse.ira

    +
    +

    Fichier Analyse : permet de + ré-ouvrir une analyse.

    +
    +

    AFC2DL.png

    +
    +

    Graph AFC : Variables actives - + coordonnées - facteurs 1 / 2

    +
    +

    AFC2DSL.png

    +
    +

    Graph AFC : variables + supplémentaires - coordonnées - facteurs 1 / 2

    +
    +

    AFC2DEL.png

    +
    +

    Graph AFC : Variables + illustratives - Coordonnées - facteur 1 / 2

    +
    +

    AFC2DCL.png

    +
    +

    Graph AFC : Classes - Coordonnées + - facteur 1 / 2

    +
    +

    AFC2DCoul.png

    +
    +

    Graph AFC : Variables actives - + Corrélation - facteur 1 / 2

    +
    +

    AFC2DCoulSup.png

    +
    +

    Graph AFC : Variables + supplémentaires - Corrélation - facteur 1 / 2

    +
    +

    AFC2DCoulEt.png

    +
    +

    Graph AFC : Variables + illustratives - Corrélations - facteur 1 / 2

    +
    +

    AFC2DCoulCl.png

    +
    +

    Graph AFC : Classes - Corrélations + - facteurs 1 / 2

    +
    +

    liste_graph_afc.txt

    +
    +

    Liste de s graphiques de l'onglet AFC

    +
    +

    liste_graph_chd.txt

    +
    +

    Liste de graphiques de l'onglet CHD

    +
    +

    afc_row.csv

    +
    +

    Résultats de l'AFC ; Coordonnées, + corrélation, MASS, contribution des formes : voir le manuel de la + librairie ca de R pour plus de détail.

    +
    +

    afc_col.csv

    +
    +

    Résultats de l'AFC ; Coordonnées, + corrélation, MASS, contribution des classes : voir le manuel de la + librairie ca de R pour plus de détail.

    +
    +

    afc_facteur.csv

    +
    +

    Résultats de l'AFC ; Valeurs + propres, Pourcentage d'inertie extraite et Pourcentage cumulé des + facteurs.

    +
    +

    segments_classes.csv

    +
    +

    Tableau de contingence segments + répétés/classes

    +
    +

    prof_segments.csv

    +
    +

    Profils des segments répétés

    +
    +

    antiprof_segments.csv

    +
    +

    Antiprofils des segments répétés

    +
    +

    profil_type.csv

    +
    +

    Profils des types

    +
    +

    antiprof_type.csv

    +
    +

    Antiprofils des types

    +
    +

    type_cl.csv

    +
    +

    Tableau de contingence types/classes

    +
    +

    analyse.db

    +
    +

    Base de données contenant les résultats

    +
    +

     

    +

    2.7.2 Par matrice des + distances

    +

     

    +

    3 Analyses de tableaux de + données

    +

     

    +

    3.1 Format des données en + entrée

    +

    Les tableaux de données doivent être du type + individus/caractères. Les variables doivent être préférentiellement + présentées sous la forme variable_modalité. Dans le cadre des + classifications ALCESTE, le tableau d'entrée est transformé en tableau + abscence/présence (0/1). Il n 'est donc généralement pas acceptable que + deux colonnes distinctes contiennent  des modalités formatées de la + même façon. Une étoile peut être introduite devant les modalités qui + seront utilisées comme variables illustratives. Cette présentation + correspond à un corpus « formaté Â».

    +

     

    +

    exemple :

    +

     

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    id

    +
    +

    var1

    +
    +

    var2

    +
    +

    …

    +
    +

    1

    +
    +

    *var1_mod1

    +
    +

    var2_mod2

    +
    +

    …

    +
    +

    2

    +
    +

    *var1_mod2

    +
    +

    var2_mod1

    +
    +

    …

    +
    +

    3

    +
    +

    *var1_mod3

    +
    +

    var2_mod3

    +
    +

    …

    +
    +

    4

    +
    +

    *var1_mod2

    +
    +

    var2_mod4

    +
    +

    …

    +
    +

    5

    +
    +

    *var1_mod3

    +
    +

    var2_mod6

    +
    +

    …

    +
    +

    …

    +
    +

    …

    +
    +

    …

    +
    +

    …

    +
    +

     

    +

     

    +

    Les fichiers acceptés en entrée doivent être au format + .xls (Microsoft Excel 97/2003), .csv ou .ods (openoffice, libreoffice, + etc...).

    +

     

    +

     

    + +
    + +
    + +
    Tous les fichiers + transmis à R sont au format .csv avec le ';' comme séparateur de champs. + IL EST DONC INDISPENSABLE QUE LE FICHIER EN ENTREE NE CONTIENNE + AUCUN ';'.
    +
    +
     
    +

    De façon plus générale, il faut éviter les + caractères en dehors des lettres (a-z), des chiffres (0-9) et du tiret bas + (_).

    +

     

    +

    3.2 Fréquences

    +

     

    +

    3.3 Chi 2

    +

     

    +

    3.4 Classification

    +

     

    +

    3.5 Par matrice des + distances

    +

     

    +

    3.5.1 Méthode ALCESTE

    +

     

    +

    3.6 AFCM

    +

    3.7 Graphes

    +

    4 Bibliographie

    +

     

    +

    5 Annexes

    + + \ No newline at end of file diff --git a/documentation/documentation.odt b/documentation/documentation.odt new file mode 100644 index 0000000..05e8b62 Binary files /dev/null and b/documentation/documentation.odt differ diff --git a/documentation/documentation.pdf b/documentation/documentation.pdf new file mode 100644 index 0000000..acd50e4 Binary files /dev/null and b/documentation/documentation.pdf differ diff --git a/documentation/documentation.txt b/documentation/documentation.txt new file mode 100644 index 0000000..ee41a0a --- /dev/null +++ b/documentation/documentation.txt @@ -0,0 +1,142 @@ +
    '''Documentation Iramuteq'''
    + + +
    version 0.1
    + + +
    Pierre Ratinaud
    + + +== '''Table des matières''' == +1 Présentation d'iramuteq3 + +1.1 R3 + +1.2 Python3 + +1.3 Lexique 33 + +2 Analyses de textes3 + +2.1 Format des données en entrée3 + +2.2 Statistiques textuelles4 + +2.3 Comme Lexico4 + +2.4 AFC sur UCI5 + +2.5 Analyses ALCESTE5 + +2.6 Classification par matrice des distances5 + +3 Analyses de tableaux de données5 + +3.1 Format des données en entrée5 + +3.2 Fréquences5 + +3.3 Chi 25 + +3.4 T de Student5 + +3.5 Classification5 + +3.5.1 Par matrice des distances5 + +3.5.2 Méthode ALCESTE5 + +3.6 AFCM5 + +3.7 Graphes5 + +4 Bibliographie5 + +5 Annexes5= Présentation d'iramuteq = +Iramuteq est un logiciel d'analyse de textes et de tableaux de données. Il s'appuie sur le logiciel de statistique R ([http://www.r-project.org/ http://www.r-project.org]), sur le langage python ([http://www.python.org/ http://www.python.org]) et sur la base de données lexicales Lexique ([http://www.lexique.org/ http://www.lexique.org]). + + +
    ATTENTION
    + + +Iramuteq est en cours de développement. Regardez les informations disponibles sur la page [http://repere.no-ip.org/logiciel/iramuteq http://repere.no-ip.org/logiciel/iramuteq] pour connaître la fiabilité des différentes analyses. + +== R == +[http://www.r-project.org/ http://www.r-project.org] + + +== Python == +[http://www.python.org/ http://www.python.org] + + +== Lexique 3 == +[http://www.lexique.org/ http://www.lexique.org] + + += Analyses de textes = +== Format des données en entrée == +Les fichiers d'entrée doivent être au format texte brut (.txt) et respecter les règles de formatage des corpus ALCESTE. + +Dans ce formatage, l'unité de base est appelée « unité de contexte initiale Â» (uci). Une uci peu représenter un entretien, un article, un livre ou tout autre type de documents. Un corpus peut contenir une ou plusieurs uci (mais au minimum une). + + +[[Image:]] Les noms des fichiers ne doivent pas contenir d'espace ou de caractères spéciaux. + +'Mon corpus.txt' ne fonctionnera pas alors que 'moncorpus.txt' ou 'mon_corpus.txt' ne posent pas de problèmes. + + +Les uci sont introduites par quatre étoiles (****) suivies d'une série de variables étoilées séparées par un espace. Il est possible de placer des variables étoilées à l'intérieur des corpus en les introduisant en début de ligne par un tiret et une étoile (-*). La ligne ne doit contenir que cette variable. + + +Exemple : + + + **** *var_1 *var_2 + + -*thematique1 + texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte + + -*thematique2 + texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte + + **** *var_2 *var_3 + + -*thematique1 + texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte + + -*thematique2 + texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte + + +[[Image:]] Les variables étoilées et les thématiques introduites dans le corpus ne doivent pas contenir d'espaces ou de caractères spéciaux. Elles ne doivent contenir que des caractères parmi a-z, A-Z, 1-9 et des tirets bas (_). + +*age 18 ans n'est pas un bon codage + +*age_18 est un bon codage + +*entretien_d'Emilie n'est pas un bon codage + +*ent_emilie est un bon codage + + +== Statistiques textuelles == +== Comme Lexico == +== AFC sur UCI == +== Analyses ALCESTE == +== Classification par matrice des distances == +TODO + + += Analyses de tableaux de données = +== Format des données en entrée == +== Fréquences == +== Chi 2 == +== T de Student == +== Classification == +=== Par matrice des distances === +=== Méthode ALCESTE === +== AFCM == +== Graphes == += Bibliographie = += Annexes = + diff --git a/documentation/documentation_cln.doc b/documentation/documentation_cln.doc new file mode 100644 index 0000000..c5ec6f9 Binary files /dev/null and b/documentation/documentation_cln.doc differ diff --git a/documentation/documentation_html_m443ae5e9.png b/documentation/documentation_html_m443ae5e9.png new file mode 100644 index 0000000..d83f349 Binary files /dev/null and b/documentation/documentation_html_m443ae5e9.png differ diff --git a/documentation/html/documentation.html b/documentation/html/documentation.html new file mode 100644 index 0000000..f96c6c4 --- /dev/null +++ b/documentation/html/documentation.html @@ -0,0 +1,359 @@ + + + +- no title specified


    Documentation Iramuteq

     

    version 0.4 alpha 1

      

    Manuel utilisateur

      

     

    Pierre Ratinaud

     

    Licence GNU FDL

     

    +


    +

    +
      + +
    + 1 Présentation d'iramuteq
    + + + 2 Analyses de textes
    + + + + + + + + + + + + + + + 3 Analyses de tableaux de données
    + + + + 4 Bibliographie
    + 5 Annexes +


    +

    +

    1 Présentation d'iramuteq

     

    Iramuteq est un logiciel d'analyse de textes et de tableaux de données. Il s'appuie sur le logiciel de statistique R (http://www.r-project.org), sur le langage python (http://www.python.org) et sur la base de données lexicales Lexique (http://www.lexique.org).

     

     

    ATTENTION

     

    Iramuteq est en cours de développement. Regardez les informations disponibles sur la page http://repere.no-ip.org/logiciel/iramuteq pour connaître la fiabilité des différentes analyses.

    1.1 R

     

    http://www.r-project.org

     

    1.2 Python

     

    http://www.python.org

     

    1.3 Lexique 3

     

    http://www.lexique.org

     

    2 Analyses de textes

     

    2.1 Format des données en entrée

     

    Les fichiers d'entrée doivent être au format texte brut (.txt) et respecter les règles de formatage des corpus ALCESTE.

    Dans +ce formatage, l'unité de base est appelée « unité de contexte +initiale Â» (UCI). Une UCI peu représenter un entretien, un +article, un livre ou tout autre type de documents. Un corpus peut +contenir une ou plusieurs UCI (mais au minimum une).


    Les UCI sont introduites par quatre étoiles (****) suivies d'une série de variables étoilées séparées par un espace.

    Une uci doit obligatoirement avoir au moins une variable étoilée
     

    Il +est possible de placer des variables étoilées à l'intérieur des corpus +en les introduisant en début de ligne par un tiret et une étoile (-*). +La ligne ne doit contenir que cette variable.

    Il +est possible d'introduire dans le corps du texte des formes qui seront +traitées comme des variables étoilées. Il faut alors que ces formes +commencent et se terminent par un _. :

    Exemple

    texte texte _rire_ texte texte texte

     

    Le texte contient, de préférence, les caractères de ponctuations.

     

    Exemple d'un corpus sans thématique :

    **** *var1_1 *var2_2

    texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte  texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte  texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte  texte texte texte texte texte texte texte +texte texte texte texte  texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte  texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte  texte texte texte texte texte texte texte +texte texte texte texte texte texte texte

    **** *var1_2 *var2_3

    texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte  texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte  texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte  texte texte texte texte texte texte texte +texte texte texte texte  texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte  texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte  texte texte texte

     

    Exemple d'un corpus avec thématique :

    **** *var1_1 *var2_2

    -*thematique1

    texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte

    -*thematique2

    texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte

    **** *var1_2 *var2_3

    -*thematique1

    texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte

    -*thematique2

    texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte texte texte texte texte texte texte texte texte texte texte texte +texte

     

     

    Dans +un corpus avec thématique, tous les paragraphes d'une UCI doivent +appartenir à une thématique. La construction suivante n'est donc pas +possible :
     

    **** *var1_1

    texte texte texte texte texte

    -*thematique1

    texte texte texte texte texte texte

     

     

    +Les variables étoilées et les thématiques introduites dans le corpus ne +doivent pas contenir d'espaces ou de caractères spéciaux. Elles ne +doivent contenir que des caractères parmi a-z, A-Z, 1-9 et des tirets +bas (_).
     

    *age 18 ans n'est pas un bon codage

    *age_18 est un bon codage

    *entretien_d'Emilie n'est pas un bon codage

    *ent_emilie est un bon codage

     

     

    Les +codages de la forme *variable_modalité doivent être privilégiés pour +les variables illustratives. Ils permettent des analyses +complémentaires.
     

    Exemple : *sex_h pour les hommes et *sex_f pour les femmes permet de repérer la variable sex et les modalités h et f.

     

    2.2 Ouverture d'un fichier texte

    Fichier → Ouvrir un corpus texte

    Vous devez préciser l'encodage du fichier et la langue du corpus.

    2.3 Traitements commun aux analyses

    2.3.1 Nettoyage 1

    Les +corpus texte sont passés en minuscules. Tous les caractères qui ne sont +pas dans la liste des caractères retenus sont remplacés par des +espaces. Toutes les successions d'espaces ou de sauts de ligne sont +remplacés par un espace ou un saut de ligne. Les apostrophes (’) sont +remplacées par des apostrophes (').

    Caractères retenus : a-zA-Z0-9àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇ’ñ.:,;!?\n*'_-

    Cette liste devrait devenir paramétrable

    2.3.2 Dictionnaire des expressions

    Le +dictionnaire des expressions contient des expressions ou des mots +contenant des tirets (-) des apostrophes (') ou des espaces. Il permet +de traiter ces expressions comme un tout. Par exemple, le mot +aujourd'hui sera traité comme la forme aujourd_hui. L'expression +« vis-à-vis Â» sera transformée en « vis_à_vis Â». Le +dictionnaire des expressions est disponible dans le répertoire +d'installation d'iramuteq, dans le sous-répertoire +« dictionnaire Â».

    L'utilisation de ce dictionnaire est optionnel.

    2.3.3 Nettoyage 2

    Les apostrophes (') et les tirets (-) sont remplacés par des espaces.

    2.3.4 Lemmatisation

    Les verbes sont réduits à l'infinitif, les noms et les adjectifs sont réduits au masculin singulier.

    Exemple :

    mangé, mangeons, mangera → manger

    professionnelles, professionnelle, professionnels, professionnel → professionnel

     

    La lemmatisation est optionnelle.

    2.4 Statistiques textuelles

    2.4.1 Description

    Analyse de texte → Statistiques textuelles

    Cette +analyse propose des statistiques simples sur les corpus texte : +effectifs de toutes les formes, effectifs des formes actives et +supplémentaires, liste des hapax.

     

    2.4.2 Résultats

    Les +résultats se présentent sous forme de listes. Un clique droit sur une +forme permet d'accéder aux formes associées et à un concordancier.

     

    2.4.3 Fichiers en sortie

     

    Répertoire de sortie

    NomDuCorpus_Stat_x

    Fichiers en sortie :

    total.csv

    Toute les formes et leurs effectifs

    formes_supplémentaires.csv

    Les formes supplémentaires et leurs effectifs

    formes_actives.csv

    Les formes actives et leurs effectifs

    hapax.csv

    Les hapax

     

    2.5 Comme Lexico

    Analyse de texte → Comme lexico

    Reproduit une des analyses du logiciel Lexico (http://www.tal.univ-paris3.fr/lexico/).

    Il +s'agit de la description d'un tableau de contingence qui croise formes +et groupes d'UCI. Les groupes d'UCI sont sélectionnées en fonction de +variables illustratives. L'objectif est de comparer ces groupes d'UCI.

     

    2.5.1 Options

    L'effectif minimum d'une forme sélectionnée peut être paramétré. Par défaut, cette valeur est à 10.

     

    2.5.2 Résultats

    Les mêmes résultats sont produits sur les formes et sur les types.

    • •.Onglet Spécificités : 

      Présente +l'exposant du seuil de significativité du chi2 qui mesure la force du +lien entre la forme et la variable. Par exemple, si une forme est liée +à une variable avec un chi2 dont le seuil de significativité est 0,001, +la valeur 3 sera notée car 0,001 = 10-3. 

    • •.Onglet Effectifs : 

      Les effectifs 

    • •.Onglet Effectifs relatifs : 

      Les effectifs relatifs en 1000ème 

    2.6 AFC sur UCI

    2.6.1 Description

    Analyse de texte → AFC sur UCI

    Produit une analyse factorielle des correspondances sur un tableau de contingence qui croise formes actives et UCI.

    Cette analyse est immature. Il est préférable d'utiliser l'analyse « Comme lexico Â» sur les UCI.

    2.6.2 Options

    Pas d'options pour l'instant

    2.6.3 Résultats

    Trois graphiques d'AFC sont proposés : formes actives, formes supplémentaire et variables étoilées.

     

    2.7 Classification

    2.7.1 Méthode ALCESTE

    2.7.1.1 Description

    Analyse de texte → Classification → méthode ALCESTE

    Cette +analyse propose une classification hiérarchique descendante selon la +méthode ALCESTE (Reinert, 1983, 1986, 1991). La classification peut +être menée sur les UCI (classification simple sur UCI) ou sur des +segments de textes (Unité de Contexte Élémentaire : UCE). Les +classifications sur les UCE peuvent être conduites directement sur +celles-ci (classification simple sur UCE) ou sur deux tableaux +proposant des regroupements de segments de texte (Unité de +Contexte : UC) qui différent par le nombre de variables actives +(et donc d'UCE) regroupées par ligne (classification double sur UC).

    Voir le détail de la classification ALCESTE en annexe.

    2.7.1.2 Options

     
     
    • •.Utiliser le dictionnaire des expressions : 

      voir dictionnaire des expressions 

       

    • •.Lemmatisation : 

      voir lemmatisation 

       

    • •.Classification : 

      • ◦.double +sur UC : la classification est menée sur deux tableaux qui +regroupent sur chaque ligne un certain nombre d'UCE en fonction du +nombre de formes actives par ligne des paramètres « taille uc +1 Â» et « taille uc2 Â» 

      • ◦.simple sur UCE : la classification est menée sur les UCE 

      • ◦.simple sur UCI : la classification est menée sur les UCI 

     

    • •.Nombre de classes terminales de la phase 1 : 

      Détermine le nombre de classes de la première partie de la classification. 

       

    • •.Nombre d'occurrences par UCE : 

      Permet +de choisir la taille des UCE en fonction du nombre d'occurrences +qu'elles regroupent. Par défaut, ce calcul est automatique et la taille +des UCE est fonction de la taille du corpus. Plus le corpus est +important, plus les UCE seront longues. Dans tous les cas, la +ponctuation est prise en compte dans le découpage ; la valeur du +nombre d'occurrences est donc « un objectif à atteindre Â» et +pas une valeur stricte. 

     

     

    • Vérifiez la taille des UCE dans vos analyses, elle peut rapidement devenir trop importante.
       

       

    • •.Nombre minimum d'UCE par classe : 

      Permet +de choisir le nombre minimum d'UCE par classe. Par défaut, seules les +classes regroupant 1/(le nombre de classes terminales de la phase 1) +des UCE pour une classification simple, et 1/(2*le nombre de classes +terminales de la phase 1) des UCE pour une classification double, +seront retenues. 

     

    • •.Nombre maximum de formes analysées : 

      Par +défaut, les 1500 formes actives les plus fréquentes et les 1500 formes +supplémentaires les plus fréquentes seront retenues. Une forme doit +avoir au minimum une fréquence de 4 pour être retenue. Si le corpus à +moins de 1500 formes, toutes les formes avec une fréquence strictement +supérieure à 3 seront retenues. 

     

     

    • Ce +paramètre a une forte incidence sur la taille des tableaux analysés et +donc sur la quantité de mémoire de l'ordinateur mobilisée. Si votre +ordinateur n'a pas assez de mémoire pour analyser un corpus, essayez de +baisser ce paramètre. Si votre ordinateur possède +« suffisamment Â» de mémoire pour le corpus et que le corpus +possède plus de 1500 formes de fréquence > 3, n'hésitez pas à +l'augmenter.
       
    • •.Configuration des clés d'analyse : 

      Voir clés d'analyse 

    2.7.1.3 Résultats

    Les +résultats directement disponibles présentent un résumé de la +classification (onglet CHD) les profils des classes (onglet Profils), +les antiprofils des classes (onglet Antiprofils) et une analyse +factorielle des correspondances menées sur le tableau de contingence +croisant formes et classes (onglet AFC).

     
     
    2.7.1.3.1 Options des profils

    A partir d'un clique droit sur une ligne du profil, plusieurs outils complémentaires sont proposés :

     
     
    • •.Formes associées : renvoie les mots associées à la forme sélectionnée et leurs effectifs. 

    • •.Chi2 +par classe : crée un graphique qui présente le chi2 d'association +de la forme à chacune des classes. Plusieurs formes peuvent être +sélectionnées en même temps. 

    • •.Chié +modalités de la variable : crée un graphique qui représente le +chi2 d'association des modalités de la variable sélectionnée à chacune +des classes. Nécessite un formatage du type variable_modalité. 

    • •.Graph +du mot : crée un graph de similitude représentant les +cooccurrences dans la classe du mot sélectionné. Voir « analyse de +similitude Â» pour plus de détails. 

    • •.Concordancier : +propose le concordancier de la (ou des) forme(s) sélectionnée(s). Ce +concordancier est disponible pour les UCE de la classe, les UCE +classées ou toutes les UCE du corpus. 

    • •.Outils du CNRTL : interroge la base de données du Centre Nationale de Ressources Textuelles et Lexicales (http://www.cnrtl.fr/) +à partir de la forme sélectionnée (nécessite  d'être connecté à +Internet). Permet d'obtenir une définition (Lexicographie), les +synonymes (Synonymie), les Antonymes (Antonymie), l'étymologie +(Etymologie) et la morphologie (Morphologie) de la forme. Les résultats +s'affichent dans le navigateur internet par défaut du système. 

    • •.Graph +de classe : indépendant de la ligne sélectionnée. Il s'agit d'une +analyse de similitude menée sur un tableau absence/présence (0/1) qui +croise les unités choisies en ligne (UCI ou UCE) et les formes actives +de la classe en colonne. La matrice de similitude est construite sur +les colonnes (les formes actives de la classe). Par défaut, l'indice de +similitude utilisé est la cooccurrence. Les résultats se présentent +sous la forme d'un graphe de similitude réduit à un arbre maximum.  

      Voir « analyse de similitude Â» pour plus de détails. 

    • •.Segments +répétés : indépendant de la ligne sélectionnée. Effectifs et +tailles des segments répétés de la classe. Préférez les profils des +segments répétés. 

    • •.UCE +caractéristiques : indépendant de la ligne sélectionnée. Liste les +UCE caractéristiques de la classe. Deux scores sont proposés : 

      • ◦.absolu : +les UCE sont classées en fonction de la somme de chi2 de liaison à la +classe des formes actives qu'elles contiennent. 

      • ◦.Relatif : +les UCE sont classées en fonction de la moyenne des chi2 de liaison à +la classe des formes actives qu'elles contiennent. 

    Dans le cas d'une classification sur UCI, remplacez UCE par UCI dans la description précédente.

    2.7.1.4 Fichiers en sortie

    Répertoire de sortie

    NomDuCorpus_alceste_x

    Fichiers en sortie :

    TableUc1.csv

    Le tableau UC1/formes ou UCI/formes ou UCE/formes

    TableUc2.csv

    Le tableau UC2/formes

    listeUCE1.csv

    Tableau uce;uc pour les UC1

    listeUCE2.csv

    Tableau uce;uc pour les UC2

    profiles.csv

    Profils des classes

    antiprofiles.csv

    Antiprofils des classes

    info.txt

    Résumé de la classification

    uce.csv

    Les uce par classe

    arbre_1.png

    Dendrogramme de la première CHD

    arbre_2.png

    Dendrogramme de la seconde CHD

    dendro1.png

    Dendrogramme final sur UC1

    dendro2.png

    Dendrogramme final sur UC2

    classe_mod.csv

    Tableau de contingence formes actives/classes

    RData.RData

    Résultats dans R

    tablesup.csv

    Tableau de contingence formes supplémentaires/classes

    tableet.csv

    Tableau de contingence variables illustratives/classes

    SbyClasseOut.csv

    Les uce par classe

    chisqtable.csv

    Chi2 d'association de chaque formes aux classes

    ptable.csv

    Seuil de significativité des chi2 d'associations de chaque forme aux classes.

    Analyse.ira

    Fichier Analyse : permet de ré-ouvrir une analyse.

    AFC2DL.png

    Graph AFC : Variables actives - coordonnées - facteurs 1 / 2

    AFC2DSL.png

    Graph AFC : variables supplémentaires - coordonnées - facteurs 1 / 2

    AFC2DEL.png

    Graph AFC : Variables illustratives - Coordonnées - facteur 1 / 2

    AFC2DCL.png

    Graph AFC : Classes - Coordonnées - facteur 1 / 2

    AFC2DCoul.png

    Graph AFC : Variables actives - Corrélation - facteur 1 / 2

    AFC2DCoulSup.png

    Graph AFC : Variables supplémentaires - Corrélation - facteur 1 / 2

    AFC2DCoulEt.png

    Graph AFC : Variables illustratives - Corrélations - facteur 1 / 2

    AFC2DCoulCl.png

    Graph AFC : Classes - Corrélations - facteurs 1 / 2

    liste_graph_afc.txt

    Liste de s graphiques de l'onglet AFC

    liste_graph_chd.txt

    Liste de graphiques de l'onglet CHD

    afc_row.csv

    Résultats +de l'AFC ; Coordonnées, corrélation, MASS, contribution des formes +: voir le manuel de la librairie ca de R pour plus de détail.

    afc_col.csv

    Résultats +de l'AFC ; Coordonnées, corrélation, MASS, contribution des +classes : voir le manuel de la librairie ca de R pour plus de détail.

    afc_facteur.csv

    Résultats de l'AFC ; Valeurs propres, Pourcentage d'inertie extraite et Pourcentage cumulé des facteurs.

    segments_classes.csv

    Tableau de contingence segments répétés/classes

    prof_segments.csv

    Profils des segments répétés

    antiprof_segments.csv

    Antiprofils des segments répétés

    profil_type.csv

    Profils des types

    antiprof_type.csv

    Antiprofils des types

    type_cl.csv

    Tableau de contingence types/classes

    analyse.db

    Base de données contenant les résultats

     

    2.7.2 Par matrice des distances

    2.7.2.1 Description

    Produit +une classification à partir d'une matrice de distance construite à +partir d'un tableau absence/présence qui croise l'unité choisie (UCI ou +UCE) et les formes actives. La matrice de distance est construite à +partir des lignes de ce tableau (les unités).

     

    2.7.2.2 Options

     
    • •.Méthode de construction de la matrice des distances : 

      Permet +de choisir l'indice de distance utilisé dans la matrice des distances. +Voir la documentation de la fonction dist (librairie stats) de R pour +plus de détails sur ces indices. Le fichier traité étant de type +absence/présence, seul l'indice « binary Â» est pertinent. Il +s'agit de la distance de Jaccard. 

    • •.Analyse : 

      Deux +algorithmes de classification sont proposés : +« k-means Â» par l'intermédiaire de la fonction +« pam Â»  et « fuzzy clustering Â» par +l'intermédiaire de la fonction « fanny Â». Ces deux fonctions +font parties de la librairie cluster de R. Voir la documentation de la +librairie cluster pour plus de détails : http://cran.r-project.org/web/packages/cluster/cluster.pdf 

    • •.Classification : 

      Permet de choisir les unités en ligne : UCE ou UCI 

    • •.Nombre maximum de formes analysées : 

      Voir Méthode ALCESTE → Options 

    • •.Nombre de classes : 

      Nombre de classes souhaitées. Par défaut, 4 classes seront construites. 

     

    2.7.2.3 Résultats

    Les résultats se présentent comme les résultats de la méthode ALCESTE. Voir méthode ALCESTE → Résultats.

    3 Analyses de tableaux de données

    3.1 Format des données en entrée

    Les +tableaux de données doivent être du type individus/caractères. Les +variables doivent être préférentiellement présentées sous la forme +variable_modalité. Dans le cadre des classifications ALCESTE, le +tableau d'entrée est transformé en tableau absence/présence (0/1). Il n +'est donc généralement pas acceptable que deux colonnes distinctes +contiennent  des modalités formatées de la même façon. Une étoile +peut être introduite devant les modalités qui seront utilisées comme +variables illustratives dans les classifications ALCESTE. Cette +présentation correspond à un corpus « formaté Â».

     

    exemple :

     

    id

    var1

    var2

    …

    1

    *var1_mod1

    var2_mod2

    …

    2

    *var1_mod2

    var2_mod1

    …

    3

    *var1_mod3

    var2_mod3

    …

    4

    *var1_mod2

    var2_mod4

    …

    5

    *var1_mod3

    var2_mod6

    …

    …

    …

    …

    …

     

     

    Les +fichiers acceptés en entrée doivent être au format .xls (Microsoft +Excel 97/2003), .csv ou .ods (openoffice, libreoffice, etc...).

     

     

    Tous +les fichiers transmis à R sont au format .csv avec le ';' comme +séparateur de champs. IL EST DONC INDISPENSABLE QUE LE FICHIER EN +ENTREE NE CONTIENNE AUCUN ';'.
     

    De façon plus générale, il faut éviter les caractères en dehors des lettres (a-z), des chiffres (0-9) et du tiret bas (_).

     

    3.2 Fréquences

     

    3.3 Chi 2

     

    3.4 Classification

     

    3.4.1 Méthode ALCESTE

     

    3.4.2 Par matrice des distances

     

    3.5 AFCM

    3.6 Graphes

    4 Bibliographie

     

    5 Annexes

    \ No newline at end of file diff --git a/documentation/similitude.txt b/documentation/similitude.txt new file mode 100644 index 0000000..e81a810 --- /dev/null +++ b/documentation/similitude.txt @@ -0,0 +1,491 @@ + names Jaccard, binary, Reyssac, Roux + FUN R_bjaccard + distance FALSE + PREFUN pr_Jaccard_prefun + POSTFUN NA + convert pr_simil2dist + type binary + loop FALSE + C_FUN TRUE + abcd FALSE + formula a / (a + b + c) + reference Jaccard, P. (1908). Nouvelles recherches sur la + distribution florale. Bull. Soc. Vaud. Sci. Nat., 44, pp. + 223--270. +description The Jaccard Similarity (C implementation) for binary data. + It is the proportion of (TRUE, TRUE) pairs, but not + considering (FALSE, FALSE) pairs. So it compares the + intersection with the union of object sets. + + names Kulczynski1 + FUN pr_Kulczynski1 + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula a / (b + c) + reference Kurzcynski, T.W. (1970). Generalized distance and discrete + variables. Biometrics, 26, pp. 525--534. +description Kulczynski Similarity for binary data. Relates the (TRUE, + TRUE) pairs to discordant pairs. + + names Kulczynski2 + FUN pr_Kulczynski2 + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula [a / (a + b) + a / (a + c)] / 2 + reference Kurzcynski, T.W. (1970). Generalized distance and discrete + variables. Biometrics, 26, pp. 525--534. +description Kulczynski Similarity for binary data. Relates the (TRUE, + TRUE) pairs to the discordant pairs. + + names Mountford + FUN pr_Mountford + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula 2a / (ab + ac + 2bc) + reference Mountford, M.D. (1962). An index of similarity and its + application to classificatory probems. In P.W. Murphy + (ed.), Progress in Soil Zoology, pp. 43--50. Butterworth, + London. +description The Mountford Similarity for binary data. + + names Fager, McGowan + FUN pr_fagerMcgowan + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula a / sqrt((a + b)(a + c)) - 1 / 2 sqrt(a + c) + reference Fager, E. W. and McGowan, J. A. (1963). Zooplankton species + groups in the North Pacific. Science, N. Y. 140: 453-460 +description The Fager / McGowan distance. + + names Russel, Rao + FUN pr_RusselRao + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula a / n + reference Russell, P.F., and Rao T.R. (1940). On habitat and + association of species of anopheline larvae in + southeastern, Madras, J. Malaria Inst. India 3, pp. + 153--178 +description The Russel/Rao Similarity for binary data. It is just the + proportion of (TRUE, TRUE) pairs. + + names simple matching, Sokal/Michener + FUN pr_SimpleMatching + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula (a + d) / n + reference Sokal, R.R., and Michener, C.D. (1958). A statistical + method for evaluating systematic relationships. Univ. + Kansas Sci. Bull., 39, pp. 1409--1438. +description The Simple Matching Similarity or binary data. It is the + proportion of concordant pairs. + + names Hamman + FUN pr_Hamman + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula ([a + d] - [b + c]) / n + reference Hamann, U. (1961). Merkmalbestand und + Verwandtschaftsbeziehungen der Farinosae. Ein Beitrag zum + System der Monokotyledonen. Willdenowia, 2, pp. 639-768. +description The Hamman Matching Similarity for binary data. It is the + proportion difference of the concordant and discordant + pairs. + + names Faith + FUN pr_Faith + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula (a + d/2) / n + reference Belbin, L., Marshall, C. & Faith, D.P. (1983). Representing + relationships by automatic assignment of colour. The + Australian Computing Journal 15, 160-163. +description The Faith similarity + + names Tanimoto, Rogers + FUN pr_RogersTanimoto + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula (a + d) / (a + 2b + 2c + d) + reference Rogers, D.J, and Tanimoto, T.T. (1960). A computer program + for classifying plants. Science, 132, pp. 1115--1118. +description The Rogers/Tanimoto Similarity for binary data. Similar to + the simple matching coefficient, but putting double weight + on the discordant pairs. + + names Dice, Czekanowski, Sorensen + FUN pr_Dice + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula 2a / (2a + b + c) + reference Dice, L.R. (1945). Measures of the amount of ecologic + association between species. Ecolology, 26, pp. 297--302. +description The Dice Similarity + + names Phi + FUN pr_Phi + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula (ad - bc) / sqrt[(a + b)(c + d)(a + c)(b + d)] + reference Sokal, R.R, and Sneath, P.H.A. (1963). Principles of + numerical taxonomy. W.H. Freeman and Company, San + Francisco. +description The Phi Similarity (= Product-Moment-Correlation for binary + variables) + + names Stiles + FUN pr_Stiles + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula log(n(|ad-bc| - 0.5n)^2 / [(a + b)(c + d)(a + c)(b + d)]) + reference Stiles, H.E. (1961). The association factor in information + retrieval. Communictions of the ACM, 8, 1, pp. 271--279. +description The Stiles Similarity (used for information retrieval). + Identical to the logarithm of Krylov's distance. + + names Michael + FUN pr_Michael + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula 4(ad - bc) / [(a + d)^2 + (b + c)^2] + reference Cox, T.F., and Cox, M.A.A. (2001). Multidimensional + Scaling. Chapmann and Hall. +description The Michael Similarity + + names Mozley, Margalef + FUN pr_MozleyMargalef + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula an / (a + b)(a + c) + reference Margalef, D.R. (1958). Information theory in ecology. Gen. + Systems, 3, pp. 36--71. +description The Mozley/Margalef Similarity + + names Yule + FUN pr_Yule + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula (ad - bc) / (ad + bc) + reference Yule, G.U. (1912). On measuring associations between + attributes. J. Roy. Stat. Soc., 75, pp. 579--642. +description Yule Similarity + + names Yule2 + FUN pr_Yule2 + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula (sqrt(ad) - sqrt(bc)) / (sqrt(ad) + sqrt(bc)) + reference Yule, G.U. (1912). On measuring associations between + attributes. J. Roy. Stat. Soc., 75, pp. 579--642. +description Yule Similarity + + names Ochiai + FUN pr_Ochiai + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula a / sqrt[(a + b)(a + c)] + reference Sokal, R.R, and Sneath, P.H.A. (1963). Principles of + numerical taxonomy. W.H. Freeman and Company, San + Francisco. +description The Ochiai Similarity + + names Simpson + FUN pr_Simpson + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula a / min{(a + b), (a + c)} + reference Simpson, G.G. (1960). Notes on the measurement of faunal + resemblance. American Journal of Science 258-A: 300-311. +description The Simpson Similarity (used in Zoology). + + names Braun-Blanquet + FUN pr_BraunBlanquet + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type binary + loop TRUE + C_FUN FALSE + abcd TRUE + formula a / max{(a + b), (a + c)} + reference Braun-Blanquet, J. (1964): Pflanzensoziologie. Springer + Verlag, Wien and New York. +description The Braun-Blanquet Similarity (used in Biology). +#########################################################################@ + names cosine, angular + FUN R_cosine + distance FALSE + PREFUN pr_cos_prefun + POSTFUN NA + convert pr_simil2dist + type metric + loop FALSE + C_FUN TRUE + abcd FALSE + formula xy / sqrt(xx * yy) + reference Anderberg, M.R. (1973). Cluster Analysis for Applicaitons. + Academic Press. +description The cos Similarity (C implementation) + names eJaccard, extended_Jaccard + FUN R_ejaccard + distance FALSE + PREFUN pr_eJaccard_prefun + POSTFUN NA + convert pr_simil2dist + type metric + loop FALSE + C_FUN TRUE + abcd FALSE + formula xy / (xx + yy - xy) + reference Strehl A. and Ghosh J. (2000). Value-based customer + grouping from large retail data-sets. In Proc. SPIE + Conference on Data Mining and Knowledge Discovery, Orlando, + volume 4057, pages 33-42. SPIE. +description The extended Jaccard Similarity (C implementation; yields + Jaccard for binary x,y). + names fJaccard, fuzzy_Jaccard + FUN R_fuzzy_dist + distance FALSE + PREFUN pr_fJaccard_prefun + POSTFUN NA + convert pr_simil2dist + type metric + loop FALSE + C_FUN TRUE + abcd FALSE + formula sum_i (min{x_i, y_i} / max{x_i, y_i}) + reference Miyamoto S. (1990). Fuzzy sets in information retrieval and + cluster analysis, Kluwer Academic Publishers, Dordrecht. +description The fuzzy Jaccard Similarity (C implementation). + names correlation + FUN pr_cor + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type metric + loop TRUE + C_FUN FALSE + abcd FALSE + formula xy / sqrt(xx * yy) for centered x,y + reference Anderberg, M.R. (1973). Cluster Analysis for Applicaitons. + Academic Press. +description correlation (taking n instead of n-1 for the variance) +###################################################################### + names Chi-squared + FUN pr_ChiSquared + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type nominal + loop TRUE + C_FUN FALSE + abcd FALSE + formula sum_ij (o_i - e_i)^2 / e_i + reference Anderberg, M.R. (1973). Cluster Analysis for Applicaitons. + Academic Press. +description Sum of standardized squared deviations from observed and + expected values in a cross-tab for x and y. + + names Phi-squared + FUN pr_PhiSquared + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type nominal + loop TRUE + C_FUN FALSE + abcd FALSE + formula [sum_ij (o_i - e_i)^2 / e_i] / n + reference Anderberg, M.R. (1973). Cluster Analysis for Applicaitons. + Academic Press. +description Standardized Chi-Squared (= Chi / n). + + names Tschuprow + FUN pr_Tschuprow + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type nominal + loop TRUE + C_FUN FALSE + abcd FALSE + formula sqrt{[sum_ij (o_i - e_i)^2 / e_i] / n / sqrt((p - 1)(q - + 1))} + reference Tschuprow, A.A. (1925). Grundbegriffe und Grundprobleme der + Korrelationstheorie. Springer. +description Tschuprow-standardization of Chi-Squared. + + names Cramer + FUN pr_Cramer + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type nominal + loop TRUE + C_FUN FALSE + abcd FALSE + formula sqrt{[Chi / n)] / min[(p - 1), (q - 1)]} + reference Cramer, H. (1946). The elements of probability theory and + some of its applications. Wiley, New York. +description Cramer-standization of Chi-Squared. + + names Pearson, contingency + FUN pr_Pearson + distance FALSE + PREFUN NA + POSTFUN NA + convert pr_simil2dist + type nominal + loop TRUE + C_FUN FALSE + abcd FALSE + formula sqrt{Chi / (n + Chi)} + reference Anderberg, M.R. (1973). Cluster Analysis for Applicaitons. + Academic Press. +description Contingency Coefficient. Chi is the Chi-Squared statistic. + + names Gower + FUN pr_Gower + distance FALSE + PREFUN pr_Gower_prefun + POSTFUN NA + convert pr_simil2dist + type NA + loop TRUE + C_FUN FALSE + abcd FALSE + formula Sum_k (s_ijk * w_k) / Sum_k (d_ijk * w_k) + reference Gower, J.C. (1971). A general coefficient of similarity and + some of its properties. Biometrics, 27, pp. 857--871. +description The Gower Similarity for mixed variable types. w_k are + variable weights. d_ijk is 0 for missings or a pair of + FALSE logicals, and 1 else. s_ijk is 1 for a pair of TRUE + logicals or matching factor levels, and the absolute + difference for metric variables. Each metric variable is + scaled with its corresponding range, provided the latter is + not 0. Ordinal variables are converted to ranks r_i and the + scores z_i = (r_i - 1) / (max r_i - 1) are taken as metric + variables. Note that in the latter case, unlike the + definition of Gower, just the internal integer codes are + taken as the ranks, and not what rank() would return. This + is for compatibility with daisy() of the cluster package, + and will make a slight difference in case of ties. The + weights w_k can be specified by passing a numeric vector + (recycled as needed) to the 'weights' argument. Ranges for + scaling the columns of x and y can be specified using the + 'ranges.x'/'ranges.y' arguments (or simply 'ranges' for + both x and y). diff --git a/documentation/test-wiki b/documentation/test-wiki new file mode 100644 index 0000000..55b6675 --- /dev/null +++ b/documentation/test-wiki @@ -0,0 +1,93 @@ +== Format des données en entrée == + +Les fichiers d'entrée doivent être au format texte brut (.txt) et respecter les règles de formatage des corpus ALCESTE. + +Dans ce formatage, l'unité de base est appelée « unité de contexte initiale Â» (uci). Une uci peu représenter un entretien, un article, un livre ou tout autre type de documents. Un corpus peut contenir une ou plusieurs uci (mais au minimum une). + + +Les uci sont introduites par quatre étoiles (****) suivies d'une série de variables étoilées séparées par un espace. Il est possible de placer des variables étoilées à l'intérieur des corpus en les introduisant en début de ligne par un tiret et une étoile (-*). La ligne ne doit contenir que cette variable. + +Exemple d'un corpus sans thématique: +
    +**** *var_1 *var_2
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte
    +
    +**** *var_2 *var_3
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte
    + + +Exemple d'un corpus avec thématique : + +
    +**** *var_1 *var_2
    +
    +-*thematique1
    +
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte
    +
    +-*thematique2
    +
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte 
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte
    +
    +**** *var_2 *var_3
    +
    +-*thematique1
    +
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte
    +
    +-*thematique2
    +
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte texte
    +texte texte texte texte texte texte texte texte texte texte texte
    + +{{note|Les variables étoilées et les thématiques introduites dans le corpus ne doivent pas contenir d'espaces ou de caractères spéciaux. Elles ne doivent contenir que des caractères parmi a-z, A-Z, 1-9 et des tirets bas (_).}} + + +
    *age 18 ans n'est pas un bon codage
    +
    +*age_18 est un bon codage
    +
    +*entretien_d'Emilie n'est pas un bon codage
    +
    +*ent_emilie est un bon codage
    diff --git a/extract.py b/extract.py new file mode 100644 index 0000000..1a17475 --- /dev/null +++ b/extract.py @@ -0,0 +1,73 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2011, Pierre Ratinaud +#Lisense: GNU/GPL + + +import codecs +import os +import sys +reload(sys) +import locale +sys.setdefaultencoding(locale.getpreferredencoding()) + +#chemin du fichier +corpus_file = '/home/pierre/fac/lerass/debat/debat_ppoira.txt' +#encodage : cp1252 sous windows +enc = 'utf8' +#la variable +variable = u'*loc' + +with codecs.open(corpus_file, 'r', enc) as f : + content = f.read() +content = content.splitlines() + + +def make_ucis(content) : + ucis = [[content[i].strip().split(),i] for i in range(0,len(content)) if content[i].startswith(u'****')] + return ucis, [a[1] for a in ucis] + +def make_lines(content,ucinb) : + return [[ucinb[i]+1,ucinb[i+1]] for i in range(0,len(ucinb)-1)] + [[ucinb[len(ucinb)-1] + 1,len(content)]] +def make_ucis_txt(content, lines): + return [' '.join(content[l[0]:l[1]]) for l in lines] + +def make_etoile(ucis) : + etoiles = [uci[0][1:] for uci in ucis] + return etoiles + +def make_unique_etoiles(etoiles) : + uetoiles = list(set([etoile for uci in etoiles for etoile in uci])) + return uetoiles + +def treat_var_mod(variables) : + var_mod = {} + for variable in variables : + if u'_' in variable : + forme = variable.split(u'_') + var = forme[0] + mod = forme[1] + if not var in var_mod : + var_mod[var] = [variable] + else : + if not mod in var_mod[var] : + var_mod[var].append(variable) + return var_mod + + +def extract_uci(variable, var_mod, ucis_txt, etoiles) : + for et in var_mod[variable] : + #et = '_'.join([variable,mod]) + tojoin = ['\n'.join([' '.join([u'****']+etoiles[i]), uci]) for i, uci in enumerate(ucis_txt) if et in etoiles[i]] + with open(et[1:]+'.txt', 'w') as f : + f.write('\n\n'.join(tojoin)) + print et[1:]+'.txt' + +ucis,ucisnb = make_ucis(content) +etoiles = make_etoile(ucis) +uetoiles = make_unique_etoiles(etoiles) +var_mod = treat_var_mod(uetoiles) +lines = make_lines(content, ucisnb) +ucis_txt = make_ucis_txt(content, lines) +extract_uci(variable, var_mod, ucis_txt, etoiles) +print 'ok' diff --git a/formes.db b/formes.db new file mode 100644 index 0000000..8ec3809 Binary files /dev/null and b/formes.db differ diff --git a/functions.py b/functions.py new file mode 100644 index 0000000..3922fd5 --- /dev/null +++ b/functions.py @@ -0,0 +1,580 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2012 Pierre Ratinaud +#Lisense: GNU/GPL + +import wx +import re +from ConfigParser import ConfigParser +from subprocess import Popen, call, PIPE +import thread +import os +import sys +import csv +import platform +import traceback +import codecs +import locale +import datetime +from copy import copy +from shutil import copyfile +#from dialog import BugDialog +print 'TEST LOGGING funcion' +import logging + +log = logging.getLogger('iramuteq') + + +indices_simi = [u'cooccurrence' ,'pourcentage de cooccurrence',u'Russel',u'Jaccard', 'Kulczynski1', 'Kulczynski2', 'Mountford', 'Fager', 'simple matching', 'Hamman', 'Faith', 'Tanimoto', 'Dice', 'Phi', 'Stiles', 'Michael', 'Mozley', 'Yule', 'Yule2', 'Ochiai', 'Simpson', 'Braun-Blanquet','Chi-squared', 'Phi-squared', 'Tschuprow', 'Cramer', 'Pearson', 'binomial'] + + +class History : + def __init__(self, filein, syscoding = 'utf8') : + self.filein = filein + self.syscoding = syscoding + self.corpora = {} + self.openedcorpus = {} + self.analyses = {} + self.history = {} + self.opened = {} + self.read() + + def read(self) : + self.conf = DoConf(self.filein) + self.order = {} + self.ordera = {} + for i, section in enumerate(self.conf.conf.sections()) : + if self.conf.conf.has_option(section, 'corpus_name') : + self.corpora[section] = self.conf.getoptions(section) + self.order[len(self.order)] = section + else : + self.analyses[section] = self.conf.getoptions(section) + self.ordera[len(self.ordera)] = section + todel = [] + for corpus in self.corpora : + self.history[corpus] = copy(self.corpora[corpus]) + for analyse in self.analyses : + if self.analyses[analyse]['corpus'] in self.corpora : + if 'analyses' in self.history[self.analyses[analyse]['corpus']] : + self.history[self.analyses[analyse]['corpus']]['analyses'].append(self.analyses[analyse]) + todel.append(analyse) + else : + self.history[self.analyses[analyse]['corpus']]['analyses'] = [self.analyses[analyse]] + todel.append(analyse) + else : + self.history[analyse] = self.analyses[analyse] + #for analyse in todel : + # del self.analyses[analyse] + + def write(self) : + sections = self.corpora.keys() + self.analyses.keys() + parametres = [self.corpora[key] for key in self.corpora.keys()] + [self.analyses[key] for key in self.analyses.keys()] + self.conf.makeoptions(sections, parametres) + + def add(self, analyse) : + if 'corpus' in analyse : + if analyse['corpus'] in self.corpora : + if 'analyses' in self.history[analyse['corpus']] : + self.history[analyse['corpus']]['analyses'].append(analyse) + else : + self.history[analyse['corpus']]['analyses'] = [analyse] + self.analyses[analyse['uuid']] = analyse + else : + self.analyses[analyse['uuid']] = analyse + elif 'corpus_name' in analyse : + self.history[analyse['uuid']] = analyse + self.corpora[analyse['uuid']] = analyse + self.write() + + def addtab(self, analyse) : + self.opened[analyse['uuid']] = analyse + + def rmtab(self, analyse) : + del self.opened[analyse['uuid']] + +class DoConf : + def __init__(self, configfile=None, diff = None, parametres = None) : + self.configfile = configfile + self.conf = ConfigParser() + if configfile is not None : + self.conf.readfp(codecs.open(configfile, 'r', 'utf8')) + self.parametres = {} + if parametres is not None : + self.doparametres(parametres) + + def doparametres(self, parametres) : + return parametres + + def getsections(self) : + return self.conf.sections() + + def getoptions(self, section = None, diff = None): + parametres = {} + if section is None : + section = self.conf.sections()[0] + for option in self.conf.options(section) : + if self.conf.get(section, option).isdigit() : + parametres[option] = int(self.conf.get(section, option)) + else : + parametres[option] = self.conf.get(section, option) + if 'type' not in parametres : + parametres['type'] = section + return parametres + + def makeoptions(self, sections, parametres, outfile = None) : + for i, section in enumerate(sections) : + if not self.conf.has_section(section) : + self.conf.add_section(section) + for option in parametres[i] : + if isinstance(parametres[i][option], int) : + self.conf.set(section, option, `parametres[i][option]`) + elif isinstance(parametres[i][option], basestring) : + self.conf.set(section, option, parametres[i][option].encode('utf8')) + if outfile is None : + outfile = self.configfile + with codecs.open(outfile, 'w', 'utf8') as f : + self.conf.write(f) + + def totext(self, parametres) : + txt = ['Corpus'] + for val in parametres : + if isinstance(parametres[val], int) : + txt.append(' \t\t: '.join([val, `parametres[val]`])) + else : + txt.append(' \t\t: '.join([val, parametres[val]])) + return '\n'.join(txt) + + +def write_tab(tab, fileout) : + writer = csv.writer(open(fileout, 'wb'), delimiter=';', quoting = csv.QUOTE_NONNUMERIC) + writer.writerows(tab) + +class BugDialog(wx.Dialog): + def __init__(self, *args, **kwds): + # begin wxGlade: MyDialog.__init__ + kwds["style"] = wx.DEFAULT_DIALOG_STYLE + kwds["size"] = wx.Size(500, 200) + wx.Dialog.__init__(self, *args, **kwds) + self.text_ctrl_1 = wx.TextCtrl(self, -1, "", style=wx.TE_MULTILINE) + self.button_1 = wx.Button(self, wx.ID_OK, "") + + self.__set_properties() + self.__do_layout() + # end wxGlade + + def __set_properties(self): + # begin wxGlade: MyDialog.__set_properties + self.SetTitle("Bug") + self.SetMinSize(wx.Size(500, 200)) + self.text_ctrl_1.SetMinSize(wx.Size(500, 200)) + + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyDialog.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_1.Add(self.text_ctrl_1, 1, wx.EXPAND, 0) + sizer_1.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + + +def CreateIraFile(DictPathOut, clusternb, corpname='corpus_name', section = 'analyse'): + AnalyseConf = ConfigParser() + AnalyseConf.read(DictPathOut['ira']) + AnalyseConf.add_section(section) + date = datetime.datetime.now().ctime() + AnalyseConf.set(section, 'date', str(date)) + AnalyseConf.set(section, 'clusternb', clusternb) + AnalyseConf.set(section, 'corpus_name', corpname) + + fileout = open(DictPathOut['ira'], 'w') + AnalyseConf.write(fileout) + fileout.close() + +def sortedby(list, direct, *indices): + + """ + sortedby: sort a list of lists (e.g. a table) by one or more indices + (columns of the table) and return the sorted list + + e.g. + for list = [[2,3],[1,2],[3,1]]: + sortedby(list,1) will return [[3, 1], [1, 2], [2, 3]], + sortedby(list,0) will return [[1, 2], [2, 3], [3, 1]] + """ + + nlist = map(lambda x, indices=indices: + map(lambda i, x=x: x[i], indices) + [x], + list) + if direct == 1: + nlist.sort() + elif direct == 2: + nlist.sort(reverse=True) + return map(lambda l: l[-1], nlist) + +def add_type(line, dictlem): + if line[4] in dictlem: + line.append(dictlem[line[4]]) + else : + line.append('') + return line + +def treat_line_alceste(i, line) : + if line[0] == '*' or line[0] == '*****' : + return line + [''] + if line[5] == 'NA': + print 'NA', line[5] + pass + elif float(line[5].replace(',', '.')) < 0.0001: + line[5] = '< 0,0001' + elif float(line[5].replace(',', '.')) > 0.05: + line[5] = 'NS (%s)' % str(float(line[5].replace(',', '.')))[0:7] + else: + line[5] = str(float(line[5].replace(',', '.')))[0:7] + return [i, int(line[0]), int(line[1]), float(line[2]), float(line[3]), line[6], line[4], line[5]] + +def ReadProfileAsDico(parent, File, Alceste=False, encoding = sys.getdefaultencoding()): + #print 'lecture des profils : ReadProfileAsDico' + #if Alceste : + # print 'lecture du dictionnaire de type' + # dictlem = {} + # for line in parent.corpus.lem_type_list : + # dictlem[line[0]] = line[1] + dictlem = {} + print 'lecture des profiles' + #encoding = sys.getdefaultencoding() + print encoding + FileReader = codecs.open(File, 'r', encoding) + Filecontent = FileReader.readlines() + FileReader.close() + DictProfile = {} + count = 0 + rows = [row.replace('\n', '').replace("'", '').replace('\"', '').replace(',', '.').replace('\r','').split(';') for row in Filecontent] + rows.pop(0) + ClusterNb = rows[0][2] + rows.pop(0) + clusters = [row[2] for row in rows if row[0] == u'**'] + valclusters = [row[1:4] for row in rows if row[0] == u'****'] + lp = [i for i, line in enumerate(rows) if line[0] == u'****'] + prof = [rows[lp[i] + 1:lp[i+1] - 1] for i in range(0, len(lp)-1)] + [rows[lp[-1] + 1:len(rows)]] + if Alceste : + prof = [[add_type(row, dictlem) for row in pr] for pr in prof] + prof = [[treat_line_alceste(i,line) for i, line in enumerate(pr)] for pr in prof] + else : + prof = [[line + [''] for line in pr] for pr in prof] + prof = [[treat_line_alceste(i,line) for i, line in enumerate(pr)] for pr in prof] + for i, cluster in enumerate(clusters): + DictProfile[cluster] = [valclusters[i]] + prof[i] + return DictProfile + +def GetTxtProfile(dictprofile) : + proflist = [] + for classe in range(0, len(dictprofile)) : + prof = dictprofile[str(classe + 1)] + clinfo = prof[0] + proflist.append('\n'.join([' '.join(['classe %i' % (classe + 1), '-', '%s uce sur %s - %s%%' % (clinfo[0], clinfo[1], clinfo[2])]), '\n'.join(['%5s|%5s|%6s|%6s|%8s|%8s|%20s\t%10s' % tuple([str(val) for val in line]) for line in prof if len(line)==8])])) + return '\n\n'.join(proflist) + +def formatExceptionInfo(maxTBlevel=5): + cla, exc, trbk = sys.exc_info() + excName = cla.__name__ + try: + excArgs = exc.__dict__["args"] + except KeyError: + excArgs = "" + excTb = traceback.format_tb(trbk, maxTBlevel) + return (excName, excArgs, excTb) + + +#fonction des etudiants de l'iut +def decoupercharact(chaine, longueur, longueurOptimale, separateurs = None) : + """ + on part du dernier caractère, et on recule jusqu'au début de la chaîne. + Si on trouve un '$', c'est fini. + Sinon, on cherche le meilleur candidat. C'est-à-dire le rapport poids/distance le plus important. + """ + separateurs = [[u'.', 60.0], [u'?', 60.0], [u'!', 60.0], [u'£', 60], [u':', 50.0], [u';', 40.0], [u',', 10.0], [u' ', 0.1]] + trouve = False # si on a trouvé un bon séparateur + iDecoupe = 0 # indice du caractere ou il faut decouper + + # on découpe la chaine pour avoir au maximum 240 caractères + longueur = min(longueur, len(chaine) - 1) + chaineTravail = chaine[:longueur + 1] + nbCar = longueur + meilleur = ['', 0, 0] # type, poids et position du meilleur separateur + + # on vérifie si on ne trouve pas un '$' + indice = chaineTravail.find(u'$') + if indice > -1: + trouve = True + iDecoupe = indice + + # si on ne trouve rien, on cherche le meilleur séparateur + if not trouve: + while nbCar >= 0: + caractere = chaineTravail[nbCar] + distance = abs(longueurOptimale - nbCar) + 1 + meilleureDistance = abs(longueurOptimale - meilleur[2]) + 1 + + # on vérifie si le caractére courant est une marque de ponctuation + for s in separateurs: + if caractere == s[0]: + # si c'est une ponctuation + + if s[1] / distance > float(meilleur[1]) / meilleureDistance: + # print nbCar, s[0] + meilleur[0] = s[0] + meilleur[1] = s[1] + meilleur[2] = nbCar + trouve = True + iDecoupe = nbCar + + # et on termine la recherche + break + + # on passe au caractère précédant + nbCar = nbCar - 1 + + # si on a trouvé + if trouve: + fin = chaine[iDecoupe + 1:] + retour = chaineTravail[:iDecoupe] + return len(retour) > 0, retour.split(), fin + # si on a rien trouvé + return False, chaine.split(), '' + +def BugReport(parent): + for ch in parent.GetChildren(): + if "" == str(type(ch)): + ch.Destroy() + dial = BugDialog(parent) + txt = u' !== BUG ==! \n' + txt += u'*************************************\n' + for line in formatExceptionInfo(): + if type(line) == type([]): + for don in line: + txt += don.replace(' ', ' ') + else: + txt += line + '\n' + if 'Rerror' in dir(parent) : + txt += parent.Rerror + parent.Rerror = '' + print formatExceptionInfo() + log.error(txt) + dial.text_ctrl_1.write(txt) + dial.CenterOnParent() + dial.ShowModal() + raise NameError('Bug') + +def PlaySound(parent): + if parent.pref.getboolean('iramuteq', 'sound') : + try: + if "gtk2" in wx.PlatformInfo: + error = Popen(['aplay','-q',os.path.join(parent.AppliPath,'son_fin.wav')]) + else : + sound = wx.Sound(os.path.join(parent.AppliPath, 'son_fin.wav')) + sound.Play(wx.SOUND_SYNC) + except : + print 'pas de son' + +def ReadDicoAsDico(dicopath): + with codecs.open(dicopath, 'r', 'UTF8') as f: + content = f.readlines() + dico = {} + for line in content : + if line[0] != u'': + line = line.replace(u'\n', '').replace('"', '').split('\t') + dico[line[0]] = line[1:] + return dico + +def ReadLexique(parent, lang = 'french'): + parent.lexique = ReadDicoAsDico(parent.DictPath.get(lang, 'french')) + +def ReadList(filein, encoding = sys.getdefaultencoding()): + #file = open(filein) + file = codecs.open(filein, 'r', encoding) + content = file.readlines() + file.close() + first = content.pop(0) + first = first.replace('\n', '').replace('\r','').replace('\"', '').split(';') + dict = {} + i = 0 + for line in content: + line = line.replace('\n', '').replace('\r','').replace('\"', '').replace(',', '.') + line = line.split(';') + nline = [line[0]] + for val in line[1:]: + if val == u'NA' : + don = '' + else: + try: + don = int(val) + except: + don = float('%.5f' % float(val)) + nline.append(don) + dict[i] = nline + i += 1 + return dict, first + +def exec_rcode(rpath, rcode, wait = True, graph = False): + print rpath, rcode + needX11 = False + if sys.platform == 'darwin' : + try : + macversion = platform.mac_ver()[0].split('.') + print macversion + if int(macversion[1]) < 5 : + needX11 = True + else : + needX11 = False + except : + needX11 = False + + rpath = rpath.replace('\\','\\\\') + if not graph : + if wait : + if sys.platform == 'win32': + error = call(["%s" % rpath, "--vanilla","--slave","-f", "%s" % rcode]) + else : + error = call([rpath, '--vanilla','--slave',"-f %s" % rcode]) + return error + else : + if sys.platform == 'win32': + pid = Popen(["%s" % rpath, '--vanilla','--slave','-f', "%s" % rcode]) + else : + pid = Popen([rpath, '--vanilla','--slave',"-f %s" % rcode], stderr = PIPE) + return pid + else : + if wait : + if sys.platform == 'win32': + error = call(["%s" % rpath, '--vanilla','--slave','-f', "%s" % rcode]) + elif sys.platform == 'darwin' and needX11: + os.environ['DISPLAY'] = ':0.0' + error = call([rpath, '--vanilla','--slave',"-f %s" % rcode]) + else : + error = call([rpath, '--vanilla','--slave',"-f %s" % rcode]) + return error + else : + if sys.platform == 'win32': + pid = Popen(["%s" % rpath, '--vanilla','--slave','-f', "%s" % rcode]) + elif sys.platform == 'darwin' and needX11: + os.environ['DISPLAY'] = ':0.0' + pid = Popen([rpath, '--vanilla','--slave',"-f %s" % rcode], stderr = PIPE) + else : + pid = Popen([rpath, '--vanilla','--slave',"-f %s" % rcode], stderr = PIPE) + return pid + +def check_Rresult(parent, pid) : + if isinstance(pid, Popen) : + if pid.returncode != 0 : + error = pid.communicate() + error = [str(error[0]), error[1]] + if error[1] is None : + error[1] = 'None' + parent.Rerror = '\n'.join([str(pid.returncode), '\n'.join(error)]) + try : + raise Exception('\n'.join(u'Erreur R', '\n'.join(error[1:]))) + except : + BugReport(parent) + else : + if pid !=0 : + try : + raise Exception(u'Erreur R') + except : + BugReport(parent) + +def print_liste(filename,liste): + with open(filename,'w') as f : + for graph in liste : + f.write(';'.join(graph)+'\n') + +def read_list_file(filename, encoding = sys.getdefaultencoding()): + with codecs.open(filename,'rU', encoding) as f : + content=f.readlines() + ncontent=[line.replace('\n','').split(';') for line in content if line.strip() != ''] + return ncontent + +class MessageImage(wx.Frame): + def __init__(self, *args, **kwds): + # begin wxGlade: MyFrame.__init__ + kwds["style"] = wx.DEFAULT_FRAME_STYLE + wx.Frame.__init__(self, *args, **kwds) + #self.text_ctrl_1 = wx.TextCtrl(self, -1, "", style=wx.TE_MULTILINE) + self.imageFile = False + self.imagename = u"chi_classe.png" + self.HtmlPage = wx.html.HtmlWindow(self, -1) + if "gtk2" in wx.PlatformInfo: + self.HtmlPage.SetStandardFonts() + self.HtmlPage.SetFonts('Courier', 'Courier') + + self.button_1 = wx.Button(self, -1, u"Fermer") + self.Bind(wx.EVT_BUTTON, self.OnCloseMe, self.button_1) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + self.__do_layout() + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyFrame.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + self.sizer_2 = wx.BoxSizer(wx.VERTICAL) + self.sizer_2.Add(self.HtmlPage, 1, wx.EXPAND | wx.ADJUST_MINSIZE, 0) + self.sizer_2.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ADJUST_MINSIZE, 0) + sizer_1.Add(self.sizer_2, 1, wx.EXPAND, 0) + self.SetAutoLayout(True) + self.SetSizer(sizer_1) + # end wxGlade + + def addsaveimage(self, imageFile) : + self.imageFile = imageFile + self.button_2 = wx.Button(self, -1, u"Enregistrer l'image...") + self.Bind(wx.EVT_BUTTON, self.OnSaveImage, self.button_2) + self.sizer_2.Add(self.button_2, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ADJUST_MINSIZE, 0) + self.Layout() + + def OnCloseMe(self, event): + self.Close(True) + + def OnCloseWindow(self, event): + self.Destroy() + + def OnSaveImage(self, event) : + dlg = wx.FileDialog( + self, message="Enregistrer sous...", defaultDir=os.getcwd(), + defaultFile= self.imagename, wildcard="png|*.png", style=wx.SAVE | wx.OVERWRITE_PROMPT + ) + dlg.SetFilterIndex(2) + dlg.CenterOnParent() + if dlg.ShowModal() == wx.ID_OK: + path = dlg.GetPath() + copyfile(self.imageFile, path) + + +def progressbar(self, maxi) : + if 'parent' in dir(self) : + parent = self.parent + else : + parent = self + return wx.ProgressDialog("Traitements", + "Veuillez patienter...", + maximum=maxi, + parent=parent, + style=wx.PD_APP_MODAL | wx.PD_AUTO_HIDE | wx.PD_ELAPSED_TIME | wx.PD_CAN_ABORT + ) + + +def treat_var_mod(variables) : + var_mod = {} + for variable in variables : + if u'_' in variable : + forme = variable.split(u'_') + var = forme[0] + mod = forme[1] + if not var in var_mod : + var_mod[var] = [variable] + else : + if not mod in var_mod[var] : + var_mod[var].append(variable) + return var_mod diff --git a/gpl-2.0-fr.txt b/gpl-2.0-fr.txt new file mode 100644 index 0000000..956f15e --- /dev/null +++ b/gpl-2.0-fr.txt @@ -0,0 +1,127 @@ + +Licence Publique Générale GNU + +Benjamin Drieu, APRIL (bdrieu@april.org), Mélanie Clément-Fontaine (melanie@amberlab.net), Arnaud Fontaine (arnaud@crao.net), Loïc Dachary (loic@gnu.org), Frédéric Couchet (fcouchet@fsffrance.org). + +This is an unofficial translation of the GNU General Public License into French. It was not published by the Free Software Foundation, and does not legally state the distribution terms for software that uses the GNU GPL--only the original English text of the GNU GPL does that. However, we hope that this translation will help French speakers understand the GNU GPL better. + +Ceci est une traduction non officielle de la GNU General Public License en français. Elle n'a pas été publiée par la Free Software Foundation, et ne détermine pas les termes de distribution pour les logiciels qui utilisent la GNU GPL, seul le texte anglais original de la GNU GPL déterminent ces termes. Cependant, nous espérons que cette traduction aidera les francophones à mieux comprendre la GNU GPL. + +Licence Publique Générale GNU + +Les licences de la plupart des logiciels sont conçues pour vous enlever toute liberté de les partager et de les modifier. + +A contrario, la Licence Publique Générale est destinée à garantir votre liberté de partager et de modifier les logiciels libres, et à assurer que ces logiciels soient libres pour tous leurs utilisateurs. + +La présente Licence Publique Générale s'applique à la plupart des logiciels de la Free Software Foundation, ainsi qu'à tout autre programme pour lequel ses auteurs s'engagent à l'utiliser. + +(Certains autres logiciels de la Free Software Foundation sont couverts par la GNU Lesser General Public License à la place.) + +Vous pouvez aussi l'appliquer aux programmes qui sont les vôtres. + +Quand nous parlons de logiciels libres, nous parlons de liberté, non de prix. + +Nos licences publiques générales sont conçues pour vous donner l'assurance d'être libres de distribuer des copies des logiciels libres (et de facturer ce service, si vous le souhaitez), de recevoir le code source ou de pouvoir l'obtenir si vous le souhaitez, de pouvoir modifier les logiciels ou en utiliser des éléments dans de nouveaux programmes libres et de savoir que vous pouvez le faire. + +Pour protéger vos droits, il nous est nécessaire d'imposer des limitations qui interdisent à quiconque de vous refuser ces droits ou de vous demander d'y renoncer. + +Certaines responsabilités vous incombent en raison de ces limitations si vous distribuez des copies de ces logiciels, ou si vous les modifiez. + +Par exemple, si vous distribuez des copies d'un tel programme, à titre gratuit ou contre une rémunération, vous devez accorder aux destinataires tous les droits dont vous disposez. + +Vous devez vous assurer qu'eux aussi reçoivent ou puissent disposer du code source. + +Et vous devez leur montrer les présentes conditions afin qu'ils aient connaissance de leurs droits. + +Nous protégeons vos droits en deux étapes : (1) nous sommes titulaires des droits d'auteur du logiciel, et (2) nous vous délivrons cette licence, qui vous donne l'autorisation légale de copier, distribuer et/ou modifier le logiciel. + +En outre, pour la protection de chaque auteur ainsi que la nôtre, nous voulons nous assurer que chacun comprenne que ce logiciel libre ne fait l'objet d'aucune garantie. + +Si le logiciel est modifié par quelqu'un d'autre puis transmis à des tiers, nous voulons que les destinataires soient mis au courant que ce qu'ils ont reçu n'est pas le logiciel d'origine, de sorte que tout problème introduit par d'autres ne puisse entacher la réputation de l'auteur originel. + +En définitive, un programme libre restera à la merci des brevets de logiciels. + +Nous souhaitons éviter le risque que les redistributeurs d'un programme libre fassent des demandes individuelles de licence de brevet, ceci ayant pour effet de rendre le programme propriétaire. + +Pour éviter cela, nous établissons clairement que toute licence de brevet doit être concédée de façon à ce que l'usage en soit libre pour tous ou bien qu'aucune licence ne soit concédée. + +Les termes exacts et les conditions de copie, distribution et modification sont les suivants: +Conditions de copie, distribution et modification de la Licence Publique Générale GNU. + +0. La présente Licence s'applique à tout programme ou tout autre ouvrage contenant un avis, apposé par le titulaire des droits d'auteur, stipulant qu'il peut être distribué au titre des conditions de la présente Licence Publique Générale. + +Ci-après, le "Programme" désigne l'un quelconque de ces programmes ou ouvrages, et un "ouvrage fondé sur le Programme" désigne soit le Programme, soit un ouvrage qui en dérive au titre des lois sur le droit d'auteur : en d'autres termes, un ouvrage contenant le Programme ou une partie de ce dernier, soit à l'identique, soit avec des modifications et/ou traduit dans un autre langage. + +(Ci-après, le terme "modification" implique, sans s'y réduire, le terme traduction) + +Chaque concessionaire sera désigné par "vous". + +Les activités autres que la copie, la distribution et la modification ne sont pas couvertes par la présente Licence ; elles sont hors de son champ d'application. + +L'opération consistant à exécuter le Programme n'est soumise à aucune limitation et les sorties du programme ne sont couvertes que si leur contenu constitue un ouvrage fondé sur le Programme (indépendamment du fait qu'il ait été réalisé par l'exécution du Programme). + +La validité de ce qui précède dépend de ce que fait le Programme. + +1. Vous pouvez copier et distribuer des copies à l'identique du code source du Programme tel que vous l'avez reçu, sur n'importe quel support, du moment que vous apposiez sur chaque copie, de manière ad hoc et parfaitement visible, l'avis de droit d'auteur adéquat et une exonération de garantie ; que vous gardiez intacts tous les avis faisant référence à la présente Licence et à l'absence de toute garantie ; et que vous fournissiez à tout destinataire du Programme autre que vous-même un exemplaire de la présente Licence en même temps que le Programme. + +Vous pouvez faire payer l'acte physique de transmission d'une copie, et vous pouvez, à votre discrétion, proposer une garantie contre rémunération. + +2. Vous pouvez modifier votre copie ou des copies du Programme ou n'importe quelle partie de celui-ci, créant ainsi un ouvrage fondé sur le Programme, et copier et distribuer de telles modifications ou ouvrage selon les termes de l'Article 1 ci-dessus, à condition de vous conformer également à chacune des obligations suivantes : + +a) Vous devez munir les fichiers modifiés d'avis bien visibles stipulants que vous avez modifié ces fichiers, ainsi que la date de chaque modification ; + +b) Vous devez prendre les dispositions nécessaires pour que tout ouvrage que vous distribuez ou publiez, et qui, en totalité ou en partie, contient ou est fondé sur le Programme - ou une partie quelconque de ce dernier - soit concédé comme un tout, à titre gratuit, à n'importe quel tiers, au titre des conditions de la présente Licence. + +c) Si le programme modifié lit habituellement des instructions de façon interactive lorsqu'on l'exécute, vous devez, quand il commence son exécution pour ladite utilisation interactive de la manière la plus usuelle, faire en sorte qu'il imprime ou affiche une annonce comprenant un avis de droit d'auteur ad hoc, et un avis stipulant qu'il n'y a pas de garantie (ou bien indiquant que c'est vous qui fournissez la garantie), et que les utilisateurs peuvent redistribuer le programme en respectant les présentes obligations, et expliquant à l'utilisateur comment voir une copie de la présente Licence. + +(Exception : si le Programme est lui-même interactif mais n'imprime pas habituellement une telle annonce, votre ouvrage fondé sur le Programme n'est pas obligé d'imprimer une annonce). + +Ces obligations s'appliquent à l'ouvrage modifié pris comme un tout. + +Si des éléments identifiables de cet ouvrage ne sont pas fondés sur le Programme et peuvent raisonnablement être considérés comme des ouvrages indépendants distincts en eux mêmes, alors la présente Licence et ses conditions ne s'appliquent pas à ces éléments lorsque vous les distribuez en tant qu'ouvrages distincts. + +Mais lorsque vous distribuez ces mêmes éléments comme partie d'un tout, lequel constitue un ouvrage fondé sur le Programme, la distribution de ce tout doit être soumise aux conditions de la présente Licence, et les autorisations qu'elle octroie aux autres concessionnaires s'étendent à l'ensemble de l'ouvrage et par conséquent à chaque et toute partie indifférement de qui l'a écrite. + +Par conséquent, l'objet du présent article n'est pas de revendiquer des droits ou de contester vos droits sur un ouvrage entièrement écrit par vous; son objet est plutôt d'exercer le droit de contrôler la distribution d'ouvrages dérivés ou d'ouvrages collectifs fondés sur le Programme. + +De plus, la simple proximité du Programme avec un autre ouvrage qui n'est pas fondé sur le Programme (ou un ouvrage fondé sur le Programme) sur une partition d'un espace de stockage ou un support de distribution ne place pas cet autre ouvrage dans le champ d'application de la présente Licence. + +3. Vous pouvez copier et distribuer le Programme (ou un ouvrage fondé sur lui, selon l'Article 2) sous forme de code objet ou d'exécutable, selon les termes des Articles 1 et 2 ci-dessus, à condition que vous accomplissiez l'un des points suivants : + +a) L'accompagner de l'intégralité du code source correspondant, sous une forme lisible par un ordinateur, lequel doit être distribué au titre des termes des Articles 1 et 2 ci-dessus, sur un support habituellement utilisé pour l'échange de logiciels; ou, + +b) L'accompagner d'une proposition écrite, valable pendant au moins trois ans, de fournir à tout tiers, à un tarif qui ne soit pas supérieur à ce que vous coûte l'acte physique de réaliser une distribution source, une copie intégrale du code source correspondant sous une forme lisible par un ordinateur, qui sera distribuée au titre des termes des Articles 1 et 2 ci-dessus, sur un support habituellement utilisé pour l'échange de logiciels; ou, + +c) L'accompagner des informations reçues par vous concernant la proposition de distribution du code source correspondant. (Cette solution n'est autorisée que dans le cas d'une distribution non commerciale et seulement si vous avez reçu le programme sous forme de code objet ou d'exécutable accompagné d'une telle proposition - en conformité avec le sous-Article b ci-dessus.) + +Le code source d'un ouvrage désigne la forme favorite pour travailler à des modifications de cet ouvrage. Pour un ouvrage exécutable, le code source intégral désigne la totalité du code source de la totalité des modules qu'il contient, ainsi que les éventuels fichiers de définition des interfaces qui y sont associés, ainsi que les scripts utilisés pour contrôler la compilation et l'installation de l'exécutable. Cependant, par exception spéciale, le code source distribué n'est pas censé inclure quoi que ce soit de normalement distribué (que ce soit sous forme source ou binaire) avec les composants principaux (compilateur, noyau, et autre) du système d'exploitation sur lequel l'exécutable tourne, à moins que ce composant lui-même n'accompagne l'exécutable. + +Si distribuer un exécutable ou un code objet consiste à offrir un accès permettant leur copie depuis un endroit particulier, alors l'offre d'un accès équivalent pour copier le code source depuis le même endroit compte comme une distribution du code source - même si les tiers ne sont pas contraints de copier le source en même temps que le code objet. + +4. Vous ne pouvez copier, modifier, concéder en sous-licence, ou distribuer le Programme, sauf tel qu'expressément prévu par la présente Licence. Toute tentative de copier, modifier, concéder en sous-licence, ou distribuer le Programme d'une autre manière est réputée non valable, et met immédiatement fin à vos droits au titre de la présente Licence. Toutefois, les tiers ayant reçu de vous des copies, ou des droits, au titre de la présente Licence ne verront pas leurs autorisations résiliées aussi longtemps que ledits tiers se conforment pleinement à elle. + +5. Vous n'êtes pas obligé d'accepter la présente Licence étant donné que vous ne l'avez pas signée. Cependant, rien d'autre ne vous accorde l'autorisation de modifier ou distribuer le Programme ou les ouvrages fondés sur lui. Ces actions sont interdites par la loi si vous n'acceptez pas la présente Licence. En conséquence, en modifiant ou distribuant le Programme (ou un ouvrage quelconque fondé sur le Programme), vous signifiez votre acceptation de la présente Licence en le faisant, et de toutes ses conditions concernant la copie, la distribution ou la modification du Programme ou d'ouvrages fondés sur lui. + +6. Chaque fois que vous redistribuez le Programme (ou n'importe quel ouvrage fondé sur le Programme), une licence est automatiquement concédée au destinataire par le concédant originel de la licence, l'autorisant à copier, distribuer ou modifier le Programme, sous réserve des présentes conditions. Vous ne pouvez imposer une quelconque limitation supplémentaire à l'exercice des droits octroyés au titre des présentes par le destinataire. Vous n'avez pas la responsabilité d'imposer le respect de la présente Licence à des tiers. + +7. Si, conséquement à une décision de justice ou l'allégation d'une transgression de brevet ou pour toute autre raison (non limitée à un probleme de brevet), des obligations vous sont imposées (que ce soit par jugement, conciliation ou autre) qui contredisent les conditions de la présente Licence, elles ne vous excusent pas des conditions de la présente Licence. Si vous ne pouvez distribuer de manière à satisfaire simultanément vos obligations au titre de la présente Licence et toute autre obligation pertinente, alors il en découle que vous ne pouvez pas du tout distribuer le Programme. Par exemple, si une licence de brevet ne permettait pas une redistribution sans redevance du Programme par tous ceux qui reçoivent une copie directement ou indirectement par votre intermédiaire, alors la seule façon pour vous de satisfaire à la fois à la licence du brevet et à la présente Licence serait de vous abstenir totalement de toute distribution du Programme. + +Si une partie quelconque de cet article est tenue pour nulle ou inopposable dans une circonstance particulière quelconque, l'intention est que le reste de l'article s'applique. La totalité de la section s'appliquera dans toutes les autres circonstances. + +Cet article n'a pas pour but de vous induire à transgresser un quelconque brevet ou d'autres revendications à un droit de propriété ou à contester la validité de la moindre de ces revendications ; cet article a pour seul objectif de protéger l'intégrité du système de distribution du logiciel libre, qui est mis en oeuvre par la pratique des licenses publiques. De nombreuses personnes ont fait de généreuses contributions au large spectre de logiciels distribués par ce système en se fiant à l'application cohérente de ce système ; il appartient à chaque auteur/donateur de décider si il ou elle veut distribuer du logiciel par l'intermédiaire d'un quelconque autre système et un concessionaire ne peut imposer ce choix. + +Cet article a pour but de rendre totalement limpide ce que l'on pense être une conséquence du reste de la présente Licence. + +8. Si la distribution et/ou l'utilisation du Programme est limitée dans certains pays que ce soit par des brevets ou par des interfaces soumises au droit d'auteur, le titulaire originel des droits d'auteur qui décide de couvrir le Programme par la présente Licence peut ajouter une limitation géographique de distribution explicite qui exclue ces pays afin que la distribution soit permise seulement dans ou entre les pays qui ne sont pas ainsi exclus. Dans ce cas, la présente Licence incorpore la limitation comme si elle était écrite dans le corps de la présente Licence. + +9. La Free Software Foundation peut, de temps à autre, publier des versions révisées et/ou nouvelles de la Licence Publique Générale. De telles nouvelles versions seront similaires à la présente version dans l'esprit mais pourront différer dans le détail pour prendre en compte de nouvelles problématiques ou inquiétudes. + +Chaque version possède un numéro de version la distinguant. Si le Programme précise le numéro de version de la présente Licence qui s'y applique et "une version ultérieure quelconque", vous avez le choix de suivre les conditions de la présente version ou de toute autre version ultérieure publiée par la Free Software Foundation. Si le Programme ne spécifie aucun numéro de version de la présente Licence, vous pouvez choisir une version quelconque publiée par la Free Software Foundation à quelque moment que ce soit. + +10. Si vous souhaitez incorporer des parties du Programme dans d'autres programmes libres dont les conditions de distribution sont différentes, écrivez à l'auteur pour lui en demander l'autorisation. Pour les logiciels dont la Free Software Foundation est titulaire des droits d'auteur, écrivez à la Free Software Foundation ; nous faisons parfois des exceptions dans ce sens. Notre décision sera guidée par le double objectif de préserver le statut libre de tous les dérivés de nos logiciels libres et de promouvoir le partage et la réutilisation des logiciels en général. +ABSENCE DE GARANTIE + +11. COMME LA LICENCE DU PROGRAMME EST CONCEDEE A TITRE GRATUIT, AUCUNE GARANTIE NE S'APPLIQUE AU PROGRAMME, DANS LES LIMITES AUTORISEES PAR LA LOI APPLICABLE. SAUF MENTION CONTRAIRE ECRITE, LES TITULAIRES DU DROIT D'AUTEUR ET/OU LES AUTRES PARTIES FOURNISSENT LE PROGRAMME "EN L'ETAT", SANS AUCUNE GARANTIE DE QUELQUE NATURE QUE CE SOIT, EXPRESSE OU IMPLICITE, Y COMPRIS, MAIS SANS Y ETRE LIMITE, LES GARANTIES IMPLICITES DE COMMERCIABILITE ET DE LA CONFORMITE A UNE UTILISATION PARTICULIERE. VOUS ASSUMEZ LA TOTALITE DES RISQUES LIES A LA QUALITE ET AUX PERFORMANCES DU PROGRAMME. SI LE PROGRAMME SE REVELAIT DEFECTUEUX, LE COUT DE L'ENTRETIEN, DES REPARATIONS OU DES CORRECTIONS NECESSAIRES VOUS INCOMBENT INTEGRALEMENT. + +12. EN AUCUN CAS, SAUF LORSQUE LA LOI APPLICABLE OU UNE CONVENTION ECRITE L'EXIGE, UN TITULAIRE DE DROIT D'AUTEUR QUEL QU'IL SOIT, OU TOUTE PARTIE QUI POURRAIT MODIFIER ET/OU REDISTRIBUER LE PROGRAMME COMME PERMIS CI-DESSUS, NE POURRAIT ETRE TENU POUR RESPONSABLE A VOTRE EGARD DES DOMMAGES, INCLUANT LES DOMMAGES GENERIQUES, SPECIFIQUES, SECONDAIRES OU CONSECUTIFS, RESULTANT DE L'UTILISATION OU DE L'INCAPACITE D'UTILISER LE PROGRAMME (Y COMPRIS, MAIS SANS Y ETRE LIMITE, LA PERTE DE DONNEES, OU LE FAIT QUE DES DONNEES SOIENT RENDUES IMPRECISES, OU LES PERTES EPROUVEES PAR VOUS OU PAR DES TIERS, OU LE FAIT QUE LE PROGRAMME ECHOUE A INTEROPERER AVEC UN AUTRE PROGRAMME QUEL QU'IL SOIT) MEME SI LE DIT TITULAIRE DU DROIT D'AUTEUR OU LE PARTIE CONCERNEE A ETE AVERTI DE L'EVENTUALITE DE TELS DOMMAGES. +FIN DES CONDITIONS diff --git a/gpl-2.0.txt b/gpl-2.0.txt new file mode 100644 index 0000000..d511905 --- /dev/null +++ b/gpl-2.0.txt @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/guifunct.py b/guifunct.py new file mode 100644 index 0000000..2a15b22 --- /dev/null +++ b/guifunct.py @@ -0,0 +1,113 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2011 Pierre Ratinaud +#Lisense: GNU/GPL + +import wx +import os +import sys +from copy import copy +import dialog + +def OnOpen(self, type): + if type == "Data": + wildcard = u"Fichiers supportés|*.ods;*.xls;*.csv;*.txt|Openoffice Clac|*.ods|Fichier excel|*.xls|Fichier csv|*.csv|Fichier texte|*.txt|Tous les fichiers|*" + elif type == "Texte": + wildcard = "Fichier texte|*.txt|Tous les fichiers|*" + elif type == "Analyse": + wildcard = "Fichier analyse|*.ira" + defaultDir = self.PathPath.get('PATHS', 'lastpath') + if defaultDir.strip() == '': + defaultDir = self.UserConfigPath.replace('.iramuteq','') + dlg = wx.FileDialog( + self, message="Choisissez un fichier", defaultDir=defaultDir, + defaultFile="", wildcard=wildcard, style=wx.OPEN | wx.CHANGE_DIR) + dlg.CenterOnParent() + if dlg.ShowModal() == wx.ID_OK : + fileName = dlg.GetFilename() + path = dlg.GetPaths() + dlg.Destroy() + self.PathPath.set('PATHS', 'lastpath', os.path.dirname(path[0])) + self.type = type + return fileName, path + else: + dlg.Destroy() + if type == "Data": + return False, [False] + elif type == "Texte": + return False, [False] + elif type == "Analyse": + return [False] + +def getfileextension(file) : + return os.path.splitext(file)[1] + +def get_table_param(self, filename) : + if getfileextension(filename) == '.csv': + dlg = dialog.FileOptionDialog(self, -1, u"Format du fichier", sep=True, size=(350, 200), + style=wx.DEFAULT_DIALOG_STYLE) + dlg.CenterOnParent() + val = dlg.ShowModal() + if val == wx.ID_OK: + self.tableau.parametre['colsep'] = dlg.colsep[dlg.choice3.GetSelection()] + self.tableau.parametre['txtsep'] = dlg.txtsep[dlg.choice4.GetSelection()] + if self.tableau.parametre['colsep'] == 'tabulation' : + self.tableau.parametre['colsep'] = '\t' + self.tableau.parametre['filetype'] = 'csv' + else : + dlg.Destroy() + elif getfileextension(filename) == '.xls' : + dlg = dialog.FileOptionDialog(self, -1, u"Format du fichier", sep=False, sheet = True, size=(350, 200), + style=wx.DEFAULT_DIALOG_STYLE) + dlg.CenterOnParent() + val = dlg.ShowModal() + if val == wx.ID_OK: + self.tableau.parametre['colsep'] = ';' + self.tableau.parametre['txtsep'] = '\"' + self.tableau.parametre['encodage'] = sys.getdefaultencoding() + self.tableau.parametre['sheetnb'] = dlg.spin1.GetValue() + self.tableau.parametre['filetype'] = 'xls' + else : + dlg.Destroy() + elif getfileextension(filename) == '.ods': + dlg = dialog.FileOptionDialog(self, -1, u"Format du fichier", sep=False, size=(350, 200), + style=wx.DEFAULT_DIALOG_STYLE) + dlg.CenterOnParent() + val = dlg.ShowModal() + if val == wx.ID_OK: + self.tableau.parametre['colsep'] = ';' + self.tableau.parametre['txtsep'] = '\"' + self.tableau.parametre['filetype'] = 'ods' + else : + dlg.Destroy() + else : + val = False + if val == wx.ID_OK: + if dlg.radio_box_1.GetSelection() == 0: + self.tableau.firstrowiscolnames = True + else: + self.tableau.firstrowiscolnames = False + if dlg.radio_box_2.GetSelection() == 0: + self.tableau.firstcolisrownames = True + else: + self.tableau.firstcolisrownames = False + dlg.Destroy() + +def getPage(ira) : + if '_mgr' in dir(ira) : + if not ira._mgr.GetPane('Text').IsShown() : + if ira.nb.GetPageCount() >= 1: + return ira.nb.GetPage(ira.nb.GetSelection()) + else : + return None + else : + return None + else : + return None + +def getCorpus(page) : + if 'corpus' in page.__dict__: + return copy(page.corpus) + else : + return None + diff --git a/guiparam3d.py b/guiparam3d.py new file mode 100755 index 0000000..87c461c --- /dev/null +++ b/guiparam3d.py @@ -0,0 +1,130 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008 Pierre Ratinaud +#Lisense: GNU/GPL + +import wx + +# begin wxGlade: extracode +# end wxGlade + + + +class param3d(wx.Panel): + def __init__(self, *args, **kwds): + wx.Panel.__init__(self, *args, **kwds) + self.label_2 = wx.StaticText(self, -1, u"Paramètres") + self.label_3 = wx.StaticText(self, -1, u"Variables") + self.Check1 = wx.CheckBox(self, -1, u"actives") + self.Check2 = wx.CheckBox(self, -1, u"supplémentaires") + self.Check3 = wx.CheckBox(self, -1, u"étoilées") + self.radio_box_2 = wx.RadioBox(self, -1, u"représentation :", choices=[u"coordonnées", u"corrélations"], majorDimension=0, style=wx.RA_SPECIFY_ROWS) + self.Bind(wx.EVT_RADIOBOX, self.EvtRadioBox2, self.radio_box_2) + self.var="both" + self.rep="coordonnees" + self.__set_properties() + self.__do_layout() + # end wxGlade + + def __set_properties(self): + self.radio_box_2.SetSelection(0) + self.Check1.SetValue(True) + self.Check2.SetValue(False) + self.Check3.SetValue(True) + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyFrame1.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_3 = wx.BoxSizer(wx.VERTICAL) + sizer_4 = wx.BoxSizer(wx.HORIZONTAL) + sizer_5 = wx.BoxSizer(wx.VERTICAL) + sizer_3.Add(self.label_2, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_3.Add(wx.StaticLine(self,-1), 0, wx.EXPAND,0) + sizer_5.Add(self.label_3, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.Check1, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.Check2, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.Check3, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.radio_box_2, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + #sizer_4.Add(sizer_5, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + #sizer_4.Add(self.radio_box_2, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_3.Add(sizer_5, 1, wx.EXPAND|wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_1.Add(sizer_3, 1, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + # end wxGlade + + def EvtRadioBox2(self,event): + nb=event.GetInt() + if nb==0: + self.rep='coordonnees' + elif nb==1: + self.rep='correlations' + + +class simi3d(wx.Panel): + def __init__(self, *args, **kwds): + wx.Panel.__init__(self, *args, **kwds) + self.label_2 = wx.StaticText(self, -1, u"Paramètres") + self.label_7 = wx.StaticText(self, -1, u"Nombre de points (0 ou 1 = tous les points)") + self.spin_1 = wx.SpinCtrl(self, -1, "", min=0, max=5000) + self.label_3 = wx.StaticText(self, -1, u"Coefficient") + self.Choice_1 = wx.Choice(self, -1, (100,50), choices=[u'euclidean']) + self.label_4 = wx.StaticText(self, -1, u"Faire apparaître des sphères") + self.Check_1 = wx.CheckBox(self, -1, u"") + self.label_5 = wx.StaticText(self,-1, u"Taille des sphères proportionnelle aux effectifs") + self.Check_2 = wx.CheckBox(self,-1, u"") + self.label_6 = wx.StaticText(self, -1, u"Transparence des sphères") + self.slider_1 = wx.Slider(self, -1, 10, 1, 100, size = (255,-1), style = wx.SL_HORIZONTAL | wx.SL_AUTOTICKS | wx.SL_LABELS + ) + self.label_layout = wx.StaticText(self, -1, u'layout') + self.Choice_2 = wx.Choice(self, -1, (100,50), choices=[u'random' ,u'cercle', u'fruchterman reingold', u'kamada kawai']) + self.slider_1.SetTickFreq(5, 1) + self.movie = wx.CheckBox(self, -1, "faire un film") + self.__set_properties() + self.__do_layout() + # end wxGlade + + def __set_properties(self): + self.Check_1.SetValue(True) + self.Check_2.SetValue(True) + self.Choice_2.SetSelection(2) + #self.Check3.SetValue(True) + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyFrame1.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_3 = wx.BoxSizer(wx.VERTICAL) + sizer_4 = wx.BoxSizer(wx.HORIZONTAL) + sizer_5 = wx.BoxSizer(wx.VERTICAL) + sizer_3.Add(self.label_2, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_3.Add(wx.StaticLine(self,-1), 0, wx.EXPAND,0) + + sizer_5.Add(self.label_7, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.spin_1, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(wx.StaticLine(self,-1), 0, wx.EXPAND,0) + sizer_5.Add(self.label_3, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.Choice_1, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(wx.StaticLine(self,-1), 0, wx.EXPAND,0) + sizer_5.Add(self.label_4, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.Check_1, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(wx.StaticLine(self,-1), 0, wx.EXPAND,0) + sizer_5.Add(self.label_5, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.Check_2, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(wx.StaticLine(self,-1), 0, wx.EXPAND,0) + sizer_5.Add(self.label_6, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.slider_1, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(wx.StaticLine(self,-1), 0, wx.EXPAND,0) + sizer_5.Add(self.label_layout, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.Choice_2, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + sizer_5.Add(self.movie, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL, 0) + + sizer_3.Add(sizer_5, 1, wx.EXPAND|wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_1.Add(sizer_3, 1, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + # end wxGlade diff --git a/images/LexTexte4.jpg b/images/LexTexte4.jpg new file mode 100644 index 0000000..d17f4bf Binary files /dev/null and b/images/LexTexte4.jpg differ diff --git a/images/Rlogo.jpg b/images/Rlogo.jpg new file mode 100644 index 0000000..656a6b1 Binary files /dev/null and b/images/Rlogo.jpg differ diff --git a/images/but_dendro.png b/images/but_dendro.png new file mode 100644 index 0000000..1f89240 Binary files /dev/null and b/images/but_dendro.png differ diff --git a/images/button_afc.jpg b/images/button_afc.jpg new file mode 100644 index 0000000..624591e Binary files /dev/null and b/images/button_afc.jpg differ diff --git a/images/button_export.jpg b/images/button_export.jpg new file mode 100644 index 0000000..cadc023 Binary files /dev/null and b/images/button_export.jpg differ diff --git a/images/button_export.jpg.png b/images/button_export.jpg.png new file mode 100644 index 0000000..59eae1e Binary files /dev/null and b/images/button_export.jpg.png differ diff --git a/images/button_simi.jpg b/images/button_simi.jpg new file mode 100644 index 0000000..452222c Binary files /dev/null and b/images/button_simi.jpg differ diff --git a/images/iraicone.ico b/images/iraicone.ico new file mode 100644 index 0000000..6a81ff2 Binary files /dev/null and b/images/iraicone.ico differ diff --git a/images/iraicone.png b/images/iraicone.png new file mode 100644 index 0000000..2751358 Binary files /dev/null and b/images/iraicone.png differ diff --git a/images/iraicone.svg b/images/iraicone.svg new file mode 100644 index 0000000..dc7a3c2 --- /dev/null +++ b/images/iraicone.svg @@ -0,0 +1,227 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + R + a + I + diff --git a/images/iraicone16x16.png b/images/iraicone16x16.png new file mode 100644 index 0000000..43aa7aa Binary files /dev/null and b/images/iraicone16x16.png differ diff --git a/images/iraicone248x248.png b/images/iraicone248x248.png new file mode 100644 index 0000000..0345ed2 Binary files /dev/null and b/images/iraicone248x248.png differ diff --git a/images/iraicone255x255.png b/images/iraicone255x255.png new file mode 100644 index 0000000..112c8f1 Binary files /dev/null and b/images/iraicone255x255.png differ diff --git a/images/iraicone32x32.png b/images/iraicone32x32.png new file mode 100644 index 0000000..499641e Binary files /dev/null and b/images/iraicone32x32.png differ diff --git a/images/iraicone48x48.png b/images/iraicone48x48.png new file mode 100644 index 0000000..a557876 Binary files /dev/null and b/images/iraicone48x48.png differ diff --git a/images/python-logo.jpg b/images/python-logo.jpg new file mode 100644 index 0000000..31b9ce8 Binary files /dev/null and b/images/python-logo.jpg differ diff --git a/images/splash.png b/images/splash.png new file mode 100644 index 0000000..d739813 Binary files /dev/null and b/images/splash.png differ diff --git a/images/splash.svg b/images/splash.svg new file mode 100644 index 0000000..e84301a --- /dev/null +++ b/images/splash.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + IRaMuTeQ Laboratoire LERASS REPERE Licence GNU GPL (c) 2008-2012 Pierre Ratinaud www.iramuteq.org Version 0.5 alpha 1 + diff --git a/images/svn-commit.tmp b/images/svn-commit.tmp new file mode 100644 index 0000000..8f20365 --- /dev/null +++ b/images/svn-commit.tmp @@ -0,0 +1,4 @@ +image +--Cette ligne, et les suivantes ci-dessous, seront ignorées-- + +AM button_export.jpg diff --git a/iracmd.py b/iracmd.py new file mode 100644 index 0000000..deba7cf --- /dev/null +++ b/iracmd.py @@ -0,0 +1,129 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2010 Pierre Ratinaud +#Lisense: GNU/GPL + +import os +from optparse import OptionParser +import sys +reload(sys) +import locale +import codecs +sys.setdefaultencoding(locale.getpreferredencoding()) +from chemins import ConstructConfigPath, ConstructDicoPath, ConstructRscriptsPath +from functions import ReadLexique, DoConf, History +from ConfigParser import * +####################################### +#from textchdalc import AnalyseAlceste +#from textdist import PamTxt +#from textafcuci import AfcUci +from textaslexico import Lexico +from textstat import Stat +import tempfile +###################################### +print '#######LOGGING TEST###########' +import logging +log = logging.getLogger('iramuteq') +formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') +ch = logging.StreamHandler() +ch.setFormatter(formatter) +log.addHandler(ch) +log.setLevel(logging.DEBUG) +####################################### + +log.debug('----------TEST corpusNG-----------------') +from analysetxt import Alceste, gramact, gramsup +from corpusNG import * + + + +AppliPath = os.path.abspath(os.path.dirname(os.path.realpath(sys.argv[0]))) +if os.getenv('HOME') != None: + user_home = os.getenv('HOME') +else: + user_home = os.getenv('HOMEPATH') +UserConfigPath = os.path.abspath(os.path.join(user_home, '.iramuteq')) + +class CmdLine : + def __init__(self) : + self.DictPath = ConstructDicoPath(AppliPath) + self.ConfigPath = ConstructConfigPath(UserConfigPath) + self.syscoding = sys.getdefaultencoding() + parser = OptionParser() + + parser.add_option("-f", "--file", dest="filename", help="chemin du corpus", metavar="FILE", default=False) + parser.add_option("-t", "--type", dest="type_analyse", help="type d'analyse", metavar="TYPE D'ANALYSE", default='False') + + parser.add_option("-c", "--conf", dest="configfile", help="chemin du fichier de configuration", metavar="CONF", default=False) + parser.add_option("-e", "--enc", dest="encodage", help="encodage du corpus", metavar="ENC", default=locale.getpreferredencoding()) + parser.add_option("-l", "--lang", dest="language", help="langue du corpus", metavar="LANG", default='french') + parser.add_option("-r", "--read", dest="read", help="lire un corpus", metavar="READ", default = False) + + (options, args) = parser.parse_args() + print args + print options + if options.configfile : + self.ConfigPath[options.type_analyse] = os.path.abspath(options.configfile) + self.TEMPDIR = tempfile.mkdtemp('iramuteq') + self.RscriptsPath = ConstructRscriptsPath(AppliPath) + self.PathPath = ConfigParser() + self.PathPath.read(self.ConfigPath['path']) + self.RPath = self.PathPath.get('PATHS', 'rpath') + self.pref = RawConfigParser() + self.pref.read(self.ConfigPath['preferences']) + self.history = History(self.ConfigPath['history']) + #self.history.write() + if options.filename or options.read or options.build: + self.corpus_encodage = options.encodage + self.corpus_lang = options.language + + + #print 'PAS DE CODECS POUR CABLE' + ReadLexique(self, lang = options.language) + self.expressions = ReadDicoAsDico(self.DictPath.get(options.language + '_exp', 'french_exp')) + if options.filename : + self.filename = os.path.abspath(options.filename) + corpus_parametres = DoConf('/home/pierre/.iramuteq/corpus.cfg').getoptions('corpus') + corpus_parametres['filename'] = self.filename + corpus_parametres['encoding'] = self.corpus_encodage + corpus_parametres['syscoding'] = 'utf8' + corpus_parametres['pathout'] = PathOut(options.filename, 'corpus').dirout + corpus = BuildFromAlceste(self.filename, corpus_parametres, self.lexique, self.expressions).corpus + self.history.add(corpus.parametres) + + #with codecs.open(self.filename, 'r', self.corpus_encodage) as f: + elif options.read : + corpus = Corpus(self, parametres = DoConf(options.read).getoptions('corpus'), read = options.read) + corpus.parametres['path'] = os.path.abspath(options.read) + pathout = os.path.dirname(os.path.dirname(os.path.abspath(options.read))) + + + corpus.conn_all() + corpus.parse_active(gramact, gramsup) + # self.content = f.read() + #self.content = self.content.replace('\r','') + if options.type_analyse == 'alceste' : + log.debug('ATTENTION : ANALYSE NG') + #print corpus.make_etoiles() + #zerzre + #corpus.read_corpus() + #corpus.parse_active(gramact, gramsup) + Alceste(self, corpus) + # self.Text = AnalyseAlceste(self, cmd = True, big = True) + #self.Text = AnalyseAlceste(self, cmd = True) + elif options.type_analyse == 'pam' : + self.Text = PamTxt(self, cmd = True) + elif options.type_analyse == 'afcuci' : + self.Text = AfcUci(self, cmd = True) + elif options.type_analyse == 'stat' : + self.Text = Stat(self, corpus, config = {'type' : 'stat'}) + elif options.type_analyse == 'spec' : + self.Text = Lexico(self, corpus, config = {'type' : 'spec'}) + #print self.Text.corpus.hours, 'h', self.Text.corpus.minutes,'min', self.Text.corpus.seconds, 's' +# self.Text.corpus.make_colored_corpus('colored.html') + +if __name__ == '__main__': + __name__ = 'Main' + CmdLine() + diff --git a/iramuteq b/iramuteq new file mode 100755 index 0000000..94cf12c --- /dev/null +++ b/iramuteq @@ -0,0 +1,2 @@ +#!/bin/sh +python /usr/share/iramuteq/iramuteq.py $1 $2 diff --git a/iramuteq.desktop b/iramuteq.desktop new file mode 100644 index 0000000..36f9dce --- /dev/null +++ b/iramuteq.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Version=0.0.1 +Type=Application +Name=IRaMuTeQ +Exec=iramuteq +Terminal=false +Categories=Education;Science; +Icon=/usr/share/icons/iraicone.png diff --git a/iramuteq.py b/iramuteq.py new file mode 100644 index 0000000..df7ff89 --- /dev/null +++ b/iramuteq.py @@ -0,0 +1,1138 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2012, Pierre Ratinaud +#Lisense: GNU GPL + +from optparse import OptionParser + +parser = OptionParser() +parser.add_option("-f", "--file", dest="filename", + help="open FILE", metavar="FILE", default=False) +(options, args) = parser.parse_args() + +#print args +#print options + +import sys +reload(sys) +import locale +import tempfile +import codecs +import os +import shutil +from random import randint +from ConfigParser import * +import webbrowser +import gettext +import logging +#------------------------------------ +import wx +#import wx.aui +#import wx.lib.agw.aui as aui +import agw.aui as aui +import wx.html +import wx.grid +import wx.lib.hyperlink as hl +#from wx.lib.wordwrap import wordwrap +#------------------------------------ +from functions import BugReport, PlaySound, ReadLexique, History, DoConf, ReadDicoAsDico, progressbar +from checkversion import NewVersion +from guifunct import * +from tableau import Tableau +from dialog import PrefDialog, EncodeDialog, CorpusPref +from tabfrequence import Frequences +from tabchi2 import ChiSquare +#from tabstudent import MakeStudent +from tabchddist import ChdCluster +from tabafcm import DoAFCM +from tabchdalc import AnalyseQuest +from tabsimi import DoSimi +from tabrsimple import InputText +from tabverges import Verges +#from textafcuci import AfcUci +#from textchdalc import AnalyseAlceste +from analysetxt import Alceste +from textdist import PamTxt +from textstat import Stat +from textaslexico import Lexico +from textsimi import SimiTxt +from textwordcloud import WordCloud +from profile_segment import ProfileSegment +from textcheckcorpus import checkcorpus +from openanalyse import OpenAnalyse +from corpusNG import BuildFromAlceste, Builder +from sheet import MySheet +from checkinstall import CreateIraDirectory, CheckRPath, FindRPAthWin32, FindRPathNix, CheckRapp, CheckRPackages, IsNew, UpgradeConf, CopyConf, RLibsAreInstalled +from chemins import ConstructRscriptsPath, ConstructConfigPath, ConstructDicoPath, ConstructGlobalPath, PathOut +from parse_factiva_xml import ImportFactiva +from tree import LeftTree +########################################################## +ID_OpenData = wx.NewId() +ID_Import = wx.NewId() +ID_OpenText = wx.NewId() +ID_OnOpenAnalyse = wx.NewId() +ID_Freq = wx.NewId() +ID_Chi2 = wx.NewId() +ID_Student = wx.NewId() +ID_CHDSIM = wx.NewId() +ID_CHDAlceste = wx.NewId() +ID_TEXTAFCM = wx.NewId() +ID_TEXTSTAT = wx.NewId() +ID_ASLEX = wx.NewId() +ID_TEXTALCESTE = wx.NewId() +ID_TEXTPAM = wx.NewId() +ID_CHECKCORPUS = wx.NewId() +ID_Tabcontent = wx.NewId() +ID_AFCM = wx.NewId() +ID_SIMI = wx.NewId() +ID_CloseTab = wx.NewId() +ID_SaveTab = wx.NewId() +ID_CreateText = wx.NewId() +ID_ACCEUIL = wx.NewId() +ID_RESULT = wx.NewId() +ID_VIEWDATA = wx.NewId() +ID_HTMLcontent = wx.NewId() +ID_SimiTxt = wx.NewId() +########################################################## +#elements de configuration +########################################################## +#encodage +if sys.platform == 'darwin' : + sys.setdefaultencoding('utf-8') + wx.SetDefaultPyEncoding('utf-8') +else : + sys.setdefaultencoding(locale.getpreferredencoding()) +#chemin de l'application + +AppliPath = os.path.abspath(os.path.dirname(os.path.realpath(sys.argv[0]))) +#chemin des images +ImagePath = os.path.join(AppliPath, 'images') +#configuration generale +DictConfigPath = ConstructGlobalPath(AppliPath) +ConfigGlob = ConfigParser() +ConfigGlob.read(DictConfigPath['global']) +#repertoire de l'utilisateur +if os.getenv('HOME') != None: + user_home = os.getenv('HOME') +else: + user_home = os.getenv('HOMEPATH') +UserConfigPath = os.path.abspath(os.path.join(user_home, '.iramuteq')) +#Si pas de fichiers de config utilisateur, on crée le repertoire +CreateIraDirectory(UserConfigPath, AppliPath) +#fichiers log pour windows (py2exe) +print 'PLUS DE LOG !!!!!!!!!!' +print 'LOGGING TEST' +log = logging.getLogger('iramuteq') +fh = logging.FileHandler(os.path.join(UserConfigPath,'stdout.log')) +ch = logging.StreamHandler() +formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') +ch.setFormatter(formatter) +fh.setFormatter(formatter) +log.addHandler(ch) +log.addHandler(fh) +log.setLevel(logging.INFO) +#debug = False +#if not debug : +# if sys.platform == 'win32' or sys.platform == 'darwin': +# sys.stdout = open(os.path.join(UserConfigPath,'stdout.log'), 'w') +# sys.stderr = open(os.path.join(UserConfigPath,'stderr.log'), 'w') +#chemin des fichiers de configuration utilisateur +#print sys.argv[0] +ConfigPath = ConstructConfigPath(UserConfigPath) +##################################################################### + +class IraFrame(wx.Frame): + def __init__(self, parent, id= -1, title="", pos=wx.DefaultPosition, + size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE | + wx.SUNKEN_BORDER | + wx.CLIP_CHILDREN): + log.info('Starting...') + wx.Frame.__init__(self, parent, id, title, pos, size, style) + #configuration + self.AppliPath = AppliPath + self.images_path = os.path.join(AppliPath,'images') + self.UserConfigPath = UserConfigPath + self.RscriptsPath = ConstructRscriptsPath(AppliPath) + self.DictPath = ConstructDicoPath(AppliPath) + self.ConfigGlob = ConfigGlob + self.ConfigPath = ConstructConfigPath(UserConfigPath) + self.pref = RawConfigParser() + #langues + mylocale = wx.Locale(wx.LANGUAGE_FRENCH) + mylocale.AddCatalogLookupPathPrefix(os.path.join(AppliPath,'locale')) + mylocale.AddCatalog('iramuteq') + presLan_en = gettext.translation("iramuteq", os.path.join(AppliPath,'locale'), languages=['en']) + presLan_fr = gettext.translation("iramuteq", os.path.join(AppliPath,'locale'), languages=['fr_FR']) + presLan_fr.install() + + + # tell FrameManager to manage this frame + #self._mgr = wx.aui.AuiManager() + self._mgr = aui.AuiManager() + self._mgr.SetManagedWindow(self) + self.x = 0 + # create menu +#-------------------------------------------------------------------------------- + self.mb = wx.MenuBar() + + file_menu = wx.Menu() + item = wx.MenuItem(file_menu, ID_OpenData, _(u"Open a questionnaire"), _(u"Open a questionnaire")) + item.SetBitmap(wx.ArtProvider_GetBitmap(wx.ART_FILE_OPEN)) + file_menu.AppendItem(item) + + item = wx.MenuItem(file_menu, ID_OpenText, u"Ouvrir texte", u"Ouvrir un corpus texte") + item.SetBitmap(wx.ArtProvider_GetBitmap(wx.ART_FILE_OPEN)) + file_menu.AppendItem(item) + + item = wx.MenuItem(file_menu, ID_OnOpenAnalyse, u"Ouvrir une Analyse", "Ouvrir une Analyse") + item.SetBitmap(wx.ArtProvider_GetBitmap(wx.ART_FILE_OPEN)) + file_menu.AppendItem(item) + + item1 = wx.MenuItem(file_menu, ID_Import, u"Importer un corpus factiva...", "Importer un corpus factiva...") + item1.SetBitmap(wx.ArtProvider_GetBitmap(wx.ART_TIP)) + file_menu.AppendItem(item1) + #item1.Enable(True) + + item = wx.MenuItem(file_menu, ID_SaveTab, u"Enregistrer l\'onglet sous...", u"Enregistrer l\'onglet sous ...") + item.SetBitmap(wx.ArtProvider_GetBitmap(wx.ART_FILE_SAVE_AS)) + #item.Enable(False) + file_menu.AppendItem(item) + + file_menu.Append(wx.ID_EXIT, u"Exit") + + edit_menu = wx.Menu() + edit_menu.Append(wx.ID_PREFERENCES, '', u'Préférences') + + view_menu = wx.Menu() + view_menu.Append(ID_ACCEUIL, u"Page d'accueil") + view_menu.Append(ID_VIEWDATA, u"Afficher les données") + view_menu.Append(ID_RESULT, u'Afficher les résultats') + #view_menu.AppendSeparator() + + analyse_menu = wx.Menu() + analyse_menu.Append(ID_Freq, u"Fréquences") + analyse_menu.Append(ID_Chi2, u"Chi2") + #analyse_menu.Append(ID_Student, u"t de Student") + menu_classif = wx.Menu() + menu_classif.Append(ID_CHDAlceste, u"Méthode Alceste") + menu_classif.Append(ID_CHDSIM, u"Par matrice des distances") + analyse_menu.AppendMenu(-1, u"Classification", menu_classif) + analyse_menu.Append(ID_AFCM, u"AFCM") + analyse_menu.Append(ID_SIMI, u"Analyse de similitudes") + ID_RCODE = wx.NewId() + analyse_menu.Append(ID_RCODE, u"Code R...") + + text_menu = wx.Menu() + text_menu.Append(ID_CHECKCORPUS, u"Vérifier le corpus") + text_menu.Append(ID_TEXTSTAT, u"Statistiques textuelles") + text_menu.Append(ID_ASLEX, u"Spécificités et AFC") + #text_menu.Append(ID_TEXTAFCM, u"AFC sur UCI / Vocabulaire") + menu_classiftxt = wx.Menu() + menu_classiftxt.Append(ID_TEXTALCESTE, u"Méthode Alceste") + menu_classiftxt.Append(ID_TEXTPAM, u"Par matrice des distances") + text_menu.AppendMenu(-1, u"Classification", menu_classiftxt) + text_menu.Append(ID_SimiTxt, u'Analyse de similitude') + ID_WC = wx.NewId() + text_menu.Append(ID_WC, u'Nuage de mots') + + help_menu = wx.Menu() + help_menu.Append(wx.ID_ABOUT, u'À propos...') + help_menu.Append(wx.ID_HELP, u'Aide en ligne') + + self.mb.Append(file_menu, _(u"File")) + self.mb.Append(edit_menu, _(u"Edition")) + self.mb.Append(view_menu, _(u"View")) + self.mb.Append(analyse_menu, _("Spreadsheet analysis")) + self.mb.Append(text_menu, _(u"Text analysis")) + self.mb.Append(help_menu, _(u"Help")) + + self.SetMenuBar(self.mb) +#-------------------------------------------------------------------- + self.statusbar = self.CreateStatusBar(2, wx.ST_SIZEGRIP) + self.statusbar.SetStatusWidths([-2, -3]) + self.statusbar.SetStatusText(u"Prêt", 0) + self.statusbar.SetStatusText(u"Bienvenue", 1) + + # min size for the frame itself isn't completely done. + # see the end up FrameManager::Update() for the test + # code. For now, just hard code a frame minimum size + self.SetMinSize(wx.Size(400, 400)) + + # create some toolbars + tb1 = wx.ToolBar(self, -1, wx.DefaultPosition, wx.DefaultSize, + wx.TB_FLAT | wx.TB_NODIVIDER) + tb1.SetToolBitmapSize(wx.Size(16, 16)) + tb1.AddLabelTool(ID_OpenData, "OpenData", wx.ArtProvider_GetBitmap(wx.ART_FILE_OPEN, wx.ART_OTHER, wx.Size(16, 16)), shortHelp="Questionnaire", longHelp="Ouvrir un questionnaire") + tb1.AddSeparator() + tb1.AddLabelTool(ID_OpenText, "OpenText", wx.ArtProvider_GetBitmap(wx.ART_FILE_OPEN, wx.ART_OTHER, wx.Size(16, 16)), shortHelp="Texte", longHelp="Ouvrir un corpus texte") + + tb1.Realize() + +#------------------------------------------------------------------------------------------------ + + self.text_ctrl_txt = wx.TextCtrl(self, -1, "", wx.Point(0, 0), wx.Size(200, 200), wx.NO_BORDER | wx.TE_MULTILINE | wx.TE_RICH2 | wx.TE_READONLY) + + #self._mgr.AddPane(self.text_ctrl_txt, wx.aui.AuiPaneInfo(). + # Name("Text").CenterPane()) + self._mgr.AddPane(self.text_ctrl_txt, aui.AuiPaneInfo(). + Name("Text").CenterPane()) + #self._mgr.AddPane(IntroPanel(self), wx.aui.AuiPaneInfo().Name("Intro_Text"). + # CenterPane()) + self._mgr.AddPane(IntroPanel(self), aui.AuiPaneInfo().Name("Intro_Text"). + CenterPane()) + if not os.path.exists(os.path.join(UserConfigPath, 'history.db')) : + with open(os.path.join(UserConfigPath, 'history.db'), 'w') as f : + f.write('') + self.history = History(os.path.join(UserConfigPath, 'history.db')) + self.tree = LeftTree(self) + self._mgr.AddPane(self.tree, aui.AuiPaneInfo().Name("lefttree").Caption("Navigateur"). + Left().MinSize(wx.Size(200,500)).Layer(1).Position(1).CloseButton(False).MaximizeButton(True). + MinimizeButton(True)) + + #self.nb = wx.aui.AuiNotebook(self, -1, wx.DefaultPosition, wx.DefaultSize, wx.aui.AUI_NB_DEFAULT_STYLE | wx.aui.AUI_NB_TAB_EXTERNAL_MOVE | wx.aui.AUI_NB_TAB_MOVE | wx.aui.AUI_NB_TAB_FLOAT| wx.NO_BORDER) + self.nb = aui.AuiNotebook(self, -1, wx.DefaultPosition, wx.DefaultSize, aui.AUI_NB_DEFAULT_STYLE | aui.AUI_NB_TAB_EXTERNAL_MOVE | aui.AUI_NB_TAB_MOVE | aui.AUI_NB_TAB_FLOAT| wx.NO_BORDER) + notebook_flags = aui.AUI_NB_DEFAULT_STYLE | aui.AUI_NB_TAB_EXTERNAL_MOVE | aui.AUI_NB_TAB_MOVE | aui.AUI_NB_TAB_FLOAT| wx.NO_BORDER + self.nb.SetAGWWindowStyleFlag(notebook_flags) + self.nb.SetArtProvider(aui.ChromeTabArt()) + #self.nb.SetArtProvider(aui.VC8TabArt()) + #self.nb.parent = self + #self._notebook_style = aui.AUI_NB_DEFAULT_STYLE | aui.AUI_NB_TAB_EXTERNAL_MOVE | wx.NO_BORDER + #self._mgr.AddPane(self.nb, wx.aui.AuiPaneInfo(). + # Name("Tab_content"). + # CenterPane()) + self._mgr.AddPane(self.nb, aui.AuiPaneInfo(). + Name("Tab_content"). + CenterPane()) + self.Sheet = MySheet(self) + #self._mgr.AddPane(self.Sheet, wx.aui.AuiPaneInfo().Name("Data").CenterPane()) + self._mgr.AddPane(self.Sheet, aui.AuiPaneInfo().Name("Data").CenterPane()) + #self.nb.Bind(wx.aui.EVT_AUINOTEBOOK_PAGE_CLOSE, self.OnCloseTab) + self.nb.Bind(aui.EVT_AUINOTEBOOK_PAGE_CLOSE, self.OnCloseTab) + self.nb.Bind(aui.EVT_AUINOTEBOOK_PAGE_CHANGED, self.OnPageChanged) + # add the toolbars to the manager + + #self._mgr.AddPane(tb1, wx.aui.AuiPaneInfo(). + # Name("tb1").Caption("Fichiers"). + # ToolbarPane().Top(). + # LeftDockable(False).RightDockable(False)) + self._mgr.AddPane(tb1, aui.AuiPaneInfo(). + Name("tb1").Caption("Fichiers"). + ToolbarPane().Top(). + LeftDockable(True).RightDockable(False)) + + self.ShowAPane("Intro_Text") + self._mgr.GetPane("lefttree").Show() + self._mgr.GetPane("classif_tb").Hide() + # "commit" all changes made to FrameManager + self._mgr.Update() + + # Show How To Use The Closing Panes Event +################################################################## + self.Bind(wx.EVT_MENU, self.OnAcceuil, id=ID_ACCEUIL) + self.Bind(wx.EVT_MENU, self.OnViewData, id=ID_VIEWDATA) + self.Bind(wx.EVT_MENU, self.ShowTab, id=ID_RESULT) + self.Bind(wx.EVT_MENU, self.OnOpenData, id=ID_OpenData) + self.Bind(wx.EVT_MENU, self.OnOpenText, id=ID_OpenText) + self.Bind(wx.EVT_MENU, self.OnOpenAnalyse, id=ID_OnOpenAnalyse) + self.Bind(wx.EVT_MENU, self.import_factiva, id= ID_Import) + self.Bind(wx.EVT_MENU, self.OnFreq, id=ID_Freq) + self.Bind(wx.EVT_MENU, self.OnChi2, id=ID_Chi2) + self.Bind(wx.EVT_MENU, self.OnStudent, id=ID_Student) + self.Bind(wx.EVT_MENU, self.OnCHDSIM, id=ID_CHDSIM) + self.Bind(wx.EVT_MENU, self.OnCHDAlceste, id=ID_CHDAlceste) + self.Bind(wx.EVT_MENU, self.OnAFCM, id=ID_AFCM) + self.Bind(wx.EVT_MENU, self.OnRCode, id=ID_RCODE) + self.Bind(wx.EVT_MENU, self.OnCheckcorpus, id = ID_CHECKCORPUS) + self.Bind(wx.EVT_MENU, self.OnTextStat, id=ID_TEXTSTAT) + self.Bind(wx.EVT_MENU, self.OnTextSpec, id=ID_ASLEX) + self.Bind(wx.EVT_MENU, self.OnTextAfcm, id=ID_TEXTAFCM) + self.Bind(wx.EVT_MENU, self.OnTextAlceste, id=ID_TEXTALCESTE) + self.Bind(wx.EVT_MENU, self.OnPamSimple, id=ID_TEXTPAM) + self.Bind(wx.EVT_MENU, self.OnSimiTxt, id=ID_SimiTxt) + self.Bind(wx.EVT_MENU, self.OnWordCloud, id=ID_WC) + self.Bind(wx.EVT_MENU, self.OnSimi, id=ID_SIMI) + self.Bind(wx.EVT_MENU, self.OnExit, id=wx.ID_EXIT) + self.Bind(wx.EVT_MENU, self.OnSaveTabAs, id=ID_SaveTab) + self.Bind(wx.EVT_MENU, self.OnAbout, id=wx.ID_ABOUT) + self.Bind(wx.EVT_MENU, self.OnHelp, id=wx.ID_HELP) + self.Bind(wx.EVT_MENU, self.OnPref, id=wx.ID_PREFERENCES) + self.Bind(wx.EVT_CLOSE, self.OnClose) +################################################################## + flags = self._mgr.GetAGWFlags() + #flags &= ~wx.aui.AUI_MGR_TRANSPARENT_HINT + #flags &= ~wx.aui.AUI_MGR_VENETIAN_BLINDS_HINT + #flags &= ~wx.aui.AUI_MGR_RECTANGLE_HINT + flags &= ~(aui.AUI_MGR_RECTANGLE_HINT | aui.AUI_MGR_ALLOW_FLOATING) + self._mgr.SetAGWFlags(self._mgr.GetAGWFlags() ^ (aui.AUI_MGR_RECTANGLE_HINT | aui.AUI_MGR_ALLOW_FLOATING)) + self._mgr.GetArtProvider().SetMetric(aui.AUI_DOCKART_GRADIENT_TYPE, aui.AUI_GRADIENT_HORIZONTAL) + self.GetDockArt().SetColor(aui.AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR, "#00FFF9") + self.DoUpdate() + + self._icon = wx.Icon(os.path.join(ImagePath, "iraicone.ico"), wx.BITMAP_TYPE_ICO) + self.SetIcon(self._icon) +########################## + self.ctrl = "" + self.input_path = [False] + self.TEMPDIR = tempfile.mkdtemp('iramuteq') + self.FileTabList = [] + self.listbar=[] + self.DictTab = {} + self.FreqNum = 0 + self.colsep = '' + self.txtsep = '' + self.g_header = False + self.g_id = False + self.table = '' + self.fileforR = '' + self.filename = '' + self.nastrings = '' + self.encode = '' + self.SysEncoding = sys.getdefaultencoding() + self.syscoding = sys.getdefaultencoding() + #print 'SysEncoding',self.SysEncoding + if self.SysEncoding == 'mac-roman' : self.SysEncoding = 'MacRoman' + self.type = '' + + try : + self.pref.read(self.ConfigPath['preferences']) + if IsNew(self) : + UpgradeConf(self) + New = True + else : + CopyConf(self) + New = False + except : + UpgradeConf(self) + self.pref.read(self.ConfigPath['preferences']) + New = True + #configuration des chemins de R + self.PathPath = ConfigParser() + self.PathPath.read(ConfigPath['path']) + BestRPath = False + if not CheckRPath(self.PathPath) : + if sys.platform == 'win32': + BestRPath = FindRPAthWin32() + else: + BestRPath = FindRPathNix() + if BestRPath: + self.PathPath.set('PATHS', 'rpath', BestRPath) + with open(ConfigPath['path'], 'w') as f : + self.PathPath.write(f) + else: + BestRPath = True + if BestRPath : + self.RPath = self.PathPath.get('PATHS', 'rpath') + if New : + CheckRPackages(self) + if not RLibsAreInstalled(self) : + CheckRPackages(self) + else : + msg = u""" +Le chemin de l'executable de R n'a pas été trouvé. +Si R n'est pas installé, vous devez l'installer (http://www.r-project.org/). +Si R n'est pas installé dans le répertoire par défaut +(C:\Program Files\R\R-2.x.x\R.exe sous windows ou /usr/bin/R sous linux ou Mac Os X) +vous devez signaler le chemin de l'éxecutable de R dans les préférences.""" % self.ConfigPath['path'] + dlg = wx.MessageDialog(self, msg, u"Problème de configuration", wx.OK | wx.NO_DEFAULT | wx.ICON_WARNING) + dlg.CenterOnParent() + if dlg.ShowModal() in [wx.ID_NO, wx.ID_CANCEL]: + evt.Veto() + else : + print 'ok' + if sys.platform == 'darwin': + self.Rapp = self.PathPath.get('PATHS', 'rapp') + RappOk = CheckRapp(self.Rapp) + self.DataPop = False + self.DataTxt = False + self.Text = '' + self.sound = self.pref.getboolean('iramuteq', 'sound') + self.check_update = self.pref.getboolean('iramuteq', 'checkupdate') + self.version = ConfigGlob.get('DEFAULT', 'version') + self.lexique = None + self.corpus = None +##############################################################@ + self.DisEnSaveTabAs(False) + self.ShowMenu(_("View"), False) + self.ShowMenu(_("Spreadsheet analysis"), False) + self.ShowMenu(_("Text analysis"), False) + + self._mgr.Update() + + def OnVerif(self, evt) : + pack = CheckRPackages(self) + if pack : + dlg = wx.MessageDialog(self, u"Installation OK", u"Installation", wx.OK | wx.NO_DEFAULT | wx.ICON_INFORMATION) + dlg.CenterOnParent() + if dlg.ShowModal() in [wx.ID_NO, wx.ID_CANCEL]: + evt.Veto() + + #FIXME marche pas sous mac ? + def DisEnSaveTabAs(self, DISEN): + #Disable SaveTabAs + file_menu = self.mb.GetMenu(0) + items = file_menu.GetMenuItems() + items[4].Enable(DISEN) + + def ShowMenu(self, menu, Show=True): + menu_pos = self.mb.FindMenu(menu) + self.mb.EnableTop(menu_pos, Show) + self.mb.UpdateMenus() + + +#-------------------------------------------------------------------- + def OnClose(self, event): + print 'onclose' + with open(self.ConfigPath['path'], 'w') as f : + self.PathPath.write(f) + if self.DictTab != {} : + savestates = [self.DictTab[item][0] for item in self.DictTab] + if False in savestates : + notsave = [item for item in self.DictTab if self.DictTab[item][0] == False] + msg = u""" + Certains résultats ne sont pas enregistrés. + Voulez-vous fermer quand même ?""" + dlg = wx.MessageDialog(self, msg, "Sauvegarde", + wx.YES_NO | wx.NO_DEFAULT | wx.ICON_QUESTION) + dlg.CenterOnParent() + if dlg.ShowModal() in [wx.ID_NO, wx.ID_CANCEL]: + event.Veto() + dlg.Destroy() + else: + dlg.Destroy() + for item in notsave : + for tmpfile in self.DictTab[item][1:] : + os.remove(tmpfile) + print 'remove : ' + tmpfile + self._mgr.UnInit() + del self._mgr + self.Destroy() + else : + self._mgr.UnInit() + del self._mgr + self.Destroy() + else : + self._mgr.UnInit() + del self._mgr + self.Destroy() + ##FIXME + #if sys.platform == 'win32' : + # os.system("taskkill /im iramuteq.exe /f") + # print 'meurtre de process' + + def OnOpenData(self, event): + inputname, self.input_path = OnOpen(self, "Data") + if inputname: + self.filename = self.input_path[0] + self.tableau = Tableau(self,os.path.abspath(self.input_path[0])) + get_table_param(self, self.input_path[0]) + self.tableau.make_content() + self.tableau.show_tab() + + def OnOpenAnalyse(self, event): + self.AnalysePath = OnOpen(self, "Analyse") + OpenAnalyse(self, self.AnalysePath[1][0], True) + self.ShowMenu(_("View")) + + def OnOpenText(self, event): + inputname, self.input_path = OnOpen(self, "Texte") + self.filename = self.input_path[0] + if inputname: + self.OpenText() + + def OnViewData(self, event): + print self.type + print self.DataTxt + if self.type == "Data": + if not self.DataPop : + self.Sheet.Populate(self.content) + self.DataPop = True + self.DataTxt = False + self.ShowAPane(u"Data") + elif self.type == "Texte" or self.type == 'Analyse' : + if not self.DataTxt : + self.text_ctrl_txt.Clear() + self.text_ctrl_txt.write(self.content) + self.text_ctrl_txt.ShowPosition(0) + self.DataTxt = True + self.DataPop = False + self.ShowAPane(u"Text") + self._mgr.Update() + + def OpenText(self): + #dial = EncodeDialog(self) + dlg = wx.ProgressDialog("Ouverture...", + "Veuillez patienter...", + maximum=2, + parent=self, + style=wx.PD_APP_MODAL | wx.PD_AUTO_HIDE | wx.PD_ELAPSED_TIME | wx.PD_CAN_ABORT + ) + + builder = Builder(self, dlg) + if builder.res == wx.ID_OK : + corpus = builder.doanalyse() + self.history.add(corpus.parametres) + self.tree.OnItemAppend(corpus.parametres) + OpenAnalyse(self, corpus.parametres) + #self.content = DoConf().totext(corpus.parametres) +# parametres = DoConf(os.path.join(UserConfigPath,'corpus.cfg')).getoptions('corpus') +# parametres['originalpath'] = self.filename +# +# parametres['pathout'] = PathOut(self.filename, 'corpus').dirout +# dial = CorpusPref(self, parametres) +# dial.CenterOnParent() +# dial.txtpath.SetLabel(self.filename) +# res = dial.ShowModal() +# parametres = dial.doparametres() +# print parametres +# ReadLexique(self, lang = parametres['lang']) +# self.expressions = ReadDicoAsDico(self.DictPath.get(parametres['lang'], 'french_exp')) +# corpus = BuildFromAlceste(self.filename, parametres, self.lexique, self.expressions).corpus + #self.corpus_encodage = dial.encodages[dial.list_encodages.GetSelection()][0] + #self.corpus_lang = dial.langues[dial.choice_dict.GetSelection()] + count = 1 + keepGoing = dlg.Update(count, u"Lecture du fichier") +# try : +# with codecs.open(self.filename, 'rU', self.corpus_encodage) as f: +# self.content = f.read() +# #self.content = self.content.replace('\r','\n') +# except UnicodeDecodeError : +# msg = u"Ce fichier ne semble pas être encodé en %s" % self.corpus_encodage +# dial = wx.MessageDialog(self, msg, u"Problème d'encodage", wx.OK | wx.NO_DEFAULT | wx.ICON_WARNING) +# dial.CenterOnParent() +# res = dial.ShowModal() +# dial.Destroy() +# self.OpenText() + self.ShowMenu(_("View")) + self.ShowMenu(_("Text analysis")) + self.ShowMenu(_(u"Spreadsheet analysis"), False) + self.type = "Texte" + self.DataTxt = False + self.Text = '' + count += 1 + keepGoing = dlg.Update(count, u"Chargement du dictionnaire") + dlg.Destroy() + #self.OnViewData(wx.EVT_BUTTON) + + def OnExit(self, event): + self.Close() + + def OnAbout(self, event): + info = wx.AboutDialogInfo() + info.Name = ConfigGlob.get('DEFAULT', 'name') + info.Version = ConfigGlob.get('DEFAULT', 'version') + info.Copyright = ConfigGlob.get('DEFAULT', 'copyright') + info.Description = u""" +Interface de R pour les Analyses Multidimensionnelles +de Textes et de Questionnaires + +Un logiciel libre +construit avec des logiciels libres. + +Laboratoire LERASS + +REPERE +""" + info.WebSite = ("http://www.iramuteq.org", u"Site web IRaMuTeQ") + dev = ConfigGlob.get('DEFAULT', 'dev').split(';') + info.Developers = dev + info.License = u"""Iramuteq est un logiciel libre ; vous pouvez le diffuser et/ou le modifier +suivant les termes de la Licence Publique Générale GNU telle que publiée +par la Free Software Foundation ; soit la version 2 de cette licence, +soit (à votre convenance) une version ultérieure. + +Iramuteq est diffusé dans l'espoir qu'il sera utile, +mais SANS AUCUNE GARANTIE ; sans même une garantie implicite +de COMMERCIALISATION ou d'ADÉQUATION À UN USAGE PARTICULIER. +Voyez la Licence Publique Générale GNU pour plus de détails. + +Vous devriez avoir reçu une copie de la Licence Publique Générale GNU +avec Iramuteq ; sinon, veuillez écrire à la Free Software Foundation, +Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, États-Unis.""" + wx.AboutBox(info) + + def GetDockArt(self): + return self._mgr.GetArtProvider() + + def DoUpdate(self): + self._mgr.Update() + + def OnPageChanged(self, event) : + new = event.GetSelection() + nobject = event.GetEventObject() + parent = nobject.GetParent() + if isinstance(parent, IraFrame) : + npage = self.nb.GetPage(new) + self.tree.GiveFocus(uuid=npage.parametres['uuid']) + + def OnCloseTab(self, evt): + log.info('Closing tab %s' % str(evt.GetEventObject())) + ctrl = evt.GetEventObject() + if isinstance(ctrl.GetParent(), aui.AuiNotebook) or isinstance(ctrl.GetParent(), wx.Panel): + notebook = True + else : + notebook = False + page = self.nb.GetPage(self.nb.GetSelection()) + if 'parametres' in dir(page) : + self.history.rmtab(page.parametres) + self.tree.CloseItem(uuid = page.parametres['uuid']) + TabTitle = self.nb.GetPageText(self.nb.GetSelection()) + if self.DictTab != {} : + if TabTitle in self.DictTab : + ListFile=self.DictTab[TabTitle] + if False in ListFile: + msg = u""" +Certains résultats ne sont pas enregistrer. +Voulez-vous fermer quand même ?""" + dlg = wx.MessageDialog(self, msg, "Sauvegarde",wx.YES_NO | wx.NO_DEFAULT | wx.ICON_QUESTION) + + dlg.CenterOnParent() + if dlg.ShowModal() in [wx.ID_NO, wx.ID_CANCEL]: + remove = False + evt.Veto() + dlg.Destroy() + else : + for f in ListFile[1:] : + print 'remove', f + os.remove(f) + remove = True + dlg.Destroy() + elif True in ListFile : + remove = True + if remove: + del self.DictTab[TabTitle] + else : + self.LastTabClose() + else : + remove = True + if self.nb.GetPageCount() == 1 and remove and not notebook : + self.LastTabClose() + + + def LastTabClose(self) : + if self.nb.GetPageCount() == 1 : + self.DisEnSaveTabAs(False) + if self.DataTxt : + self.ShowAPane("Text") + elif self.DataPop : + self.ShowAPane("Data") + else : + self.ShowAPane("Intro_Text") + + def OnSaveTabAs(self, event): + SelectTab = self.nb.GetSelection() + TabTitle = self.nb.GetPageText(SelectTab) + FileToSave = self.DictTab[TabTitle] + NewListFile = [] + dlg = wx.FileDialog( + self, message="Enregistrer sous...", defaultDir=os.getcwd(), + defaultFile="resultat.html", wildcard="Tous les fichiers|*", style=wx.SAVE | wx.OVERWRITE_PROMPT + ) + dlg.SetFilterIndex(2) + dlg.CenterOnParent() + + if dlg.ShowModal() == wx.ID_OK: + Path = dlg.GetPath() + Dirname = os.path.dirname(Path) + Filename = dlg.GetFilename() + else : + Path = False + dlg.Destroy() + if Path: + shutil.copyfile(FileToSave[-1], Path) + os.remove(FileToSave[len(FileToSave) - 1]) + NewListFile.append(True) + NewListFile.append(Path) + for f in FileToSave[1:-1] : + Fileout = os.path.join(Dirname, os.path.basename(f)) + shutil.copyfile(f, Fileout) + NewListFile.append(Fileout) + os.remove(f) + TabText = Filename + self.DictTab[TabText] = NewListFile + del self.DictTab[TabTitle] + self.nb.SetPageText(SelectTab, TabText) + + def GetStartPosition(self): + + self.x = self.x + 20 + x = self.x + pt = self.ClientToScreen(wx.Point(0, 0)) + + return wx.Point(pt.x + x, pt.y + x) + + def ShowAPane(self, panel): + for pane in self._mgr.GetAllPanes() : + if not pane.IsToolbar() and pane.name != 'lefttree': + pane.Hide() + self._mgr.GetPane(panel).Show() + self._mgr.Update() + + def OnAcceuil(self, event): + self.ShowAPane(u"Intro_Text") + event.Skip() + #??? +# def OnCreateTab(self, event): +# if not self._mgr.GetPane("Tab_content").name == "Tab_content": +# self._mgr.AddPane(self.CreateTabCtrl(), aui.AuiPaneInfo(). +# Name("Tab_content"). +# CenterPane()) +# self._mgr.GetPane("Intro_Text").Hide() +# self._mgr.GetPane("Tab_content").Show() +# self.ctrl.Bind(aui.EVT_AUINOTEBOOK_PAGE_CLOSE, self.OnCloseTab) +# else : +# page = wx.TextCtrl(self, -1, str(text), style=wx.TE_MULTILINE) +# self.ctrl.AddPage(page, "qsdqsd") +# self.ctrl.SetSelection(self.ctrl.GetPageCount() - 1) +# self._mgr.Update() + + + def CreateHTMLCtrl(self): + ctrl = wx.html.HtmlWindow(self, -1, wx.DefaultPosition, wx.Size(400, 300)) + if "gtk2" in wx.PlatformInfo: + ctrl.SetStandardFonts() + ctrl.SetPage(u"text") + return ctrl + + def ShowTab(self, evt): + self.ShowAPane("Tab_content") + +################################################################ +#debut des analyses +################################################################ + + def OnFreq(self, event): + try: + Frequences(self) + except: + BugReport(self) + + def OnChi2(self, event): + try: + # print('PAS DE DEBUG SUR CHI2') + chi = ChiSquare(self) + except: + BugReport(self) + + def OnStudent(self, event): + try: + MakeStudent(self) + except: + BugReport(self) + + def OnRCode(self, event): + try: + InputText(self) + except: + BugReport(self) + + def OnCHDSIM(self, event): + try: + # print 'ATTENTION!!!!' + chdsim = ChdCluster(self) + if chdsim.val == wx.ID_OK: + PlaySound(self) + except: + BugReport(self) + + def OnCHDAlceste(self, event): + try: + # print('PLUS DE BUG SUR ALCESTE QUESTIONNAIRE') + self.quest = AnalyseQuest(self) + if self.quest.val == wx.ID_OK: + PlaySound(self) + except: + BugReport(self) + + def OnSimiTxt(self, evt) : + # print 'PLUS DE BUG SUR SIMITXT' + try : + self.Text = SimiTxt(self) + if self.Text.val == wx.ID_OK : + PlaySound(self) + except : + BugReport(self) + + def OnWordCloud(self, evt) : + # print 'PLUS DE BUG SUR WORDCLOUD' + try : + self.Text = WordCloud(self) + if self.Text.val == wx.ID_OK : + PlaySound(self) + except : + BugReport(self) + + + def OnAFCM(self, event): + try: + DoAFCM(self) + except: + BugReport(self) + + def OnCheckcorpus(self, evt): + try : + checkcorpus(self) + except : + BugReport(self) + + def OnTextStat(self, event, corpus = None): + print 'PAS DE BUG SUR TEXT STAT' + #try: + self.Text = Stat(self, corpus, parametres = {'type': 'stat'}, dlg = progressbar(self, 7)) + + if self.Text.val == wx.ID_OK : + PlaySound(self) + #except: + # BugReport(self) + + def OnTextSpec(self, event, corpus = None): + #try: + #self.Text = AsLexico(self) + print('ATTENTION : PLUS DE BUG SUR LEXICO') + self.Text = Lexico(self, corpus, parametres = {'type' : 'spec'}, dlg = progressbar(self, 3)) + if self.Text.val == wx.ID_OK : + PlaySound(self) + #except: + # BugReport(self) + + def OnTextAfcm(self, event): + try: + AfcUci(self) + PlaySound(self) + except: + BugReport(self) + + def import_factiva(self,event): + try : + ImportFactiva(self) + except : + BugReport(self) + + def OnTextAlceste(self, event, corpus = None): + #try: + print('ATTENTION : PLUS DE BUG SUR ALCESTE') + #RunAnalyse(self, corpus, Alceste, OptAlceste) + self.Text = Alceste(self, corpus, parametres = {'type': 'alceste'}, dlg = progressbar(self,6)) + #self.history.addtab(self.Text.parametres) + #OpenAnalyse(self, self.Text.parametres['ira']) + if self.Text.val == wx.ID_OK: + PlaySound(self) + #except: + # BugReport(self) + + def OnPamSimple(self, event): + try: + self.Text = PamTxt(self) + if self.Text.val == wx.ID_OK: + PlaySound(self) + except: + BugReport(self) + + def OnSimi(self,evt): + try : + #print 'ATTENTION !!!! VERGES' + self.res = DoSimi(self, param = None) + #self.res = Verges(self) + if self.res.val == wx.ID_OK : + PlaySound(self) + except : + BugReport(self) +################################################################# + + def OnHelp(self, event): + webbrowser.open('http://www.iramuteq.org/documentation') + + def OnPref(self, event): + dlg = PrefDialog(self) + dlg.CenterOnParent() + self.val = dlg.ShowModal() + + def Upgrade(self) : + if self.check_update: + NewVersion(self) + else: + print 'pas de verif' + #IsNew(self) + #CheckRPackages(self) + + def OnOpenFromCmdl(self): + truepath = True + if options.filename : + if os.path.exists(options.filename): + self.filename = os.path.abspath(options.filename) + else: + truepath = False + elif args : + if os.path.exists(os.path.realpath(args[0])): + self.filename = os.path.abspath(os.path.realpath(args[0])) + else: + truepath = False + else: + pass + if truepath : + if os.path.splitext(self.filename)[1] in ['.csv', '.xls', '.ods']: + self.tableau = Tableau(self, self.filename) + get_table_param(self, self.filename) + self.tableau.make_content() + self.tableau.show_tab() + #open_data(self, self.filename) + elif os.path.splitext(self.filename)[1] == '.txt': + self.OpenText() + elif os.path.splitext(self.filename)[1] == '.ira' : + #self.corpus = Corpus(self) + #self.Text = OpenAnalyse(self, self.filename) + OpenAnalyse(self, self.filename) + if not truepath: + print 'ce fichier n\'existe pas' + + + +class IntroPanel(wx.Panel): + def __init__(self, parent): + wx.Panel.__init__(self, parent) + #col = randint(0, 100) + col = 0 + bckgrdcolor = wx.Colour(col, col, col) + self.SetBackgroundColour(bckgrdcolor) + txtcolour = wx.Colour(250, 250, 250) + linkcolor = wx.Colour(255, 0, 0) + sizer1 = wx.BoxSizer(wx.VERTICAL) + sizer2 = wx.BoxSizer(wx.VERTICAL) + sizer3 = wx.BoxSizer(wx.HORIZONTAL) + sizer4 = wx.BoxSizer(wx.VERTICAL) + sizer5 = wx.BoxSizer(wx.HORIZONTAL) + grid_sizer_1 = wx.FlexGridSizer(1, 4, 0, 0) + grid_sizer_3 = wx.FlexGridSizer(1, 4, 0, 0) + grid_sizer_2 = wx.FlexGridSizer(1, 3, 0, 0) + PanelPres = wx.Panel(self) + PanelPres.SetBackgroundColour(bckgrdcolor) + label_1 = wx.StaticText(self, -1, u"IRaMuTeQ", size=(-1, -1)) + label_1.SetFont(wx.Font(46, wx.TELETYPE, wx.NORMAL, wx.BOLD, 0, "Purisa")) + label_1.SetForegroundColour(wx.RED) + label2 = wx.StaticText(PanelPres, -1 , u'\nVersion ' + ConfigGlob.get('DEFAULT', 'version') + '\n') + label2.SetForegroundColour(txtcolour) + label2.SetBackgroundColour(bckgrdcolor) + #label3 = wx.StaticText(PanelPres, -1 , u'Equipe ') + #label3.SetForegroundColour(txtcolour) + #label3.SetBackgroundColour(bckgrdcolor) + self.hyper2 = hl.HyperLinkCtrl(PanelPres, wx.ID_ANY, u"REPERE", URL="http://repere.no-ip.org/") + self.hyper2.SetColours(linkcolor, linkcolor, "RED") + self.hyper2.SetBackgroundColour(bckgrdcolor) + self.hyper2.EnableRollover(True) + self.hyper2.SetUnderlines(False, False, True) + self.hyper2.SetBold(True) + self.hyper2.UpdateLink() + label_lerass = wx.StaticText(PanelPres, -1, u'Laboratoire ') + label_lerass.SetForegroundColour(txtcolour) + label_lerass.SetBackgroundColour(bckgrdcolor) + self.hyper_lerass = hl.HyperLinkCtrl(PanelPres, -1, u'LERASS', URL="http://www.lerass.com") + self.hyper_lerass.SetColours(linkcolor, linkcolor, "RED") + self.hyper_lerass.SetBackgroundColour(bckgrdcolor) + self.hyper_lerass.EnableRollover(True) + self.hyper_lerass.SetUnderlines(False, False, True) + self.hyper_lerass.SetBold(True) + self.hyper_lerass.UpdateLink() + blank = wx.StaticText(PanelPres, -1, u'\n') + blank1 = wx.StaticText(PanelPres, -1, u'\n') + labellicence = wx.StaticText(PanelPres, -1, u'Licence GNU GPL') + labellicence.SetForegroundColour(txtcolour) + labellicence.SetBackgroundColour(bckgrdcolor) + labelcopy = wx.StaticText(PanelPres, -1, ConfigGlob.get('DEFAULT', 'copyright')) + labelcopy.SetForegroundColour(txtcolour) + labelcopy.SetBackgroundColour(bckgrdcolor) + python_img = wx.Image(os.path.join(ImagePath,'python-logo.jpg'), wx.BITMAP_TYPE_ANY).ConvertToBitmap() + r_img = wx.Image(os.path.join(ImagePath,'Rlogo.jpg'), wx.BITMAP_TYPE_ANY).ConvertToBitmap() + lexique_img = wx.Image(os.path.join(ImagePath,'LexTexte4.jpg'), wx.BITMAP_TYPE_ANY).ConvertToBitmap() + but_python = wx.BitmapButton(self, -1, python_img) + but_lexique = wx.BitmapButton(self, -1, lexique_img) + but_r = wx.BitmapButton(self, -1, r_img) + self.Bind(wx.EVT_BUTTON, self.OnPython, but_python) + self.Bind(wx.EVT_BUTTON, self.OnLexique, but_lexique) + self.Bind(wx.EVT_BUTTON, self.OnR, but_r) + + + #grid_sizer_1.Add(label3, 0, wx.EXPAND | wx.ALIGN_CENTER_HORIZONTAL, 0) + grid_sizer_1.Add(self.hyper2, 0, wx.EXPAND | wx.ALIGN_CENTER_HORIZONTAL, 0) + grid_sizer_3.Add(label_lerass, 0, wx.EXPAND | wx.ALIGN_CENTER_HORIZONTAL, 0) + grid_sizer_3.Add(self.hyper_lerass, 0, wx.EXPAND | wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer4.Add(label_1, 0, wx.ALIGN_CENTER, 5) + sizer2.Add(label2, 0, wx.ALIGN_CENTER, 5) + #sizer2.Add(wx.StaticText(PanelPres, -1, u''), 0, wx.ALIGN_CENTER, 5) + sizer2.Add(wx.StaticText(PanelPres, -1, u''), 0, wx.ALIGN_CENTER, 5) + sizer2.Add(wx.StaticText(PanelPres, -1, u''), 0, wx.ALIGN_CENTER, 5) + sizer2.Add(grid_sizer_3, 0, wx.ALIGN_CENTER, 5) + sizer2.Add(wx.StaticText(PanelPres, -1, u' '), 0, wx.ALIGN_CENTER, 5) + #sizer2.Add(wx.StaticText(PanelPres, -1, u''), 0, wx.ALIGN_CENTER, 5) + #sizer2.Add(wx.StaticText(PanelPres, -1, u''), 0, wx.ALIGN_CENTER, 5) + sizer2.Add(grid_sizer_1, 0, wx.ALIGN_CENTER, 5) + sizer2.Add(labellicence, 0, wx.ALIGN_CENTER, 5) + sizer2.Add(labelcopy, 0, wx.ALIGN_CENTER, 5) + sizer1.Add(sizer4, 1, wx.EXPAND | wx.ALIGN_CENTER_HORIZONTAL, 0) + PanelPres.SetSizer(sizer2) + sizer5.Add(blank, 1, wx.EXPAND | wx.ALL | wx.ALIGN_CENTER_HORIZONTAL, 2) + sizer5.Add(PanelPres, 1, wx.EXPAND | wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer5.Add(blank1, 1, wx.ALIGN_CENTER_HORIZONTAL,2) + grid_sizer_2.Add(but_python, 1, wx.ALIGN_CENTER_HORIZONTAL| wx.ALIGN_CENTER_VERTICAL) + grid_sizer_2.Add(but_lexique, 1,wx.ALIGN_CENTER_HORIZONTAL| wx.ALIGN_CENTER_VERTICAL) + grid_sizer_2.Add(but_r, 1, wx.ALIGN_CENTER_HORIZONTAL| wx.ALIGN_CENTER_VERTICAL) + + sizer1.Add(sizer5, 3, wx.EXPAND | wx.ALIGN_CENTER_HORIZONTAL, 1) + sizer1.Add(grid_sizer_2, 1, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL) + self.SetSizer(sizer1) + sizer1.Fit(self) + + def OnPython(self,evt): + webbrowser.open('http://www.python.org') + + def OnLexique(self,evt): + webbrowser.open('http://www.lexique.org') + + def OnR(self,evt): + webbrowser.open('http://www.r-project.org') + +class MySplashScreen(wx.SplashScreen): + def __init__(self): + bmp = wx.Image(os.path.join(ImagePath, 'splash.png')).ConvertToBitmap() + wx.SplashScreen.__init__(self, bmp, + wx.SPLASH_CENTRE_ON_SCREEN | wx.SPLASH_TIMEOUT, + 3000, None, -1) + self.Bind(wx.EVT_CLOSE, self.OnClose) + self.fc = wx.FutureCall(1500, self.ShowMain) + + def OnClose(self, evt): + evt.Skip() + self.Hide() + + if self.fc.IsRunning(): + self.fc.Stop() + self.ShowMain() + + def ShowMain(self): + frame = IraFrame(None, -1, "IRaMuTeQ " + ConfigGlob.get('DEFAULT', 'version'), size=(950, 650)) + frame.Show() + frame.Upgrade() + frame.OnOpenFromCmdl() +# if self.fc.IsRunning(): +# self.Raise() + #wx.CallAfter(frame.ShowTip) + +class MyApp(wx.App): + def OnInit(self): + """ + Create and show the splash screen. It will then create and show + the main frame when it is time to do so. + """ + + wx.SystemOptions.SetOptionInt("mac.window-plain-transition", 1) + self.SetAppName("Iramuteq") + splash = MySplashScreen() + splash.Show() + return True + +def main(): + app = MyApp(False) + app.MainLoop() + +if __name__ == '__main__': + __name__ = 'Main' + main() diff --git a/iramuteq_en.po b/iramuteq_en.po new file mode 100644 index 0000000..fb7e9f9 --- /dev/null +++ b/iramuteq_en.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-09-16 16:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: iramuteq.py:134 +msgid "&Open a questionnaire\tCtrl+O" +msgstr "" + +#: iramuteq.py:184 +msgid "Edition" +msgstr "" + +#: iramuteq.py:183 +msgid "File" +msgstr "" + +#: iramuteq.py:188 +msgid "Help" +msgstr "" + +#: iramuteq.py:134 +msgid "Open a questionnaire" +msgstr "" + +#: iramuteq.py:186 +msgid "Spreadsheet analysis" +msgstr "" + +#: iramuteq.py:187 +msgid "Text analysis" +msgstr "" + +#: iramuteq.py:185 +msgid "View" +msgstr "" diff --git a/iramuteq_fr_FR.po b/iramuteq_fr_FR.po new file mode 100644 index 0000000..b7e0a79 --- /dev/null +++ b/iramuteq_fr_FR.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-09-16 16:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: iramuteq.py:134 +msgid "&Open a questionnaire\tCtrl+O" +msgstr "Ouvrir un questionnaire" + +#: iramuteq.py:184 +msgid "Edition" +msgstr "Edition" + +#: iramuteq.py:183 +msgid "File" +msgstr "Fichier" + +#: iramuteq.py:188 +msgid "Help" +msgstr "Aide" + +#: iramuteq.py:134 +msgid "Open a questionnaire" +msgstr "Ouvrir un questionnaire" + +#: iramuteq.py:186 +msgid "Spreadsheet analysis" +msgstr "Analyse de tableau" + +#: iramuteq.py:187 +msgid "Text analysis" +msgstr "Analyse de texte" + +#: iramuteq.py:185 +msgid "View" +msgstr "Vue" diff --git a/iramuteqsvn.desktop b/iramuteqsvn.desktop new file mode 100644 index 0000000..fc304ff --- /dev/null +++ b/iramuteqsvn.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Version=0.0.1 +Type=Application +Name=IRaMuTeQ-SVN +Exec=iramuteqsvn +Terminal=false +Categories=science; +Icon=$HOME/iramuteq/images/iraicone.png diff --git a/iraopen.py b/iraopen.py new file mode 100644 index 0000000..17b3ad1 --- /dev/null +++ b/iraopen.py @@ -0,0 +1,128 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2010 Pierre Ratinaud +#Lisense: GNU/GPL + +import os +from optparse import OptionParser +import sys +reload(sys) +import locale +import codecs +sys.setdefaultencoding(locale.getpreferredencoding()) +from chemins import ConstructConfigPath, ConstructDicoPath, ConstructRscriptsPath, ChdTxtPathOut +from functions import ReadLexique +from ConfigParser import * +####################################### +from textchdalc import AnalyseAlceste +from textdist import PamTxt +#from textafcuci import AfcUci +from textstat import Stat +from corpus import Corpus +import tempfile +import pickle +from word_stat import * +from textclassechd import ClasseCHD + +AppliPath = os.path.abspath(os.path.dirname(os.path.realpath(sys.argv[0]))) +if os.getenv('HOME') != None: + user_home = os.getenv('HOME') +else: + user_home = os.getenv('HOMEPATH') +UserConfigPath = os.path.abspath(os.path.join(user_home, '.iramuteq')) + +class CmdLine : + def __init__(self) : + self.DictPath = ConstructDicoPath(AppliPath) + self.ConfigPath = ConstructConfigPath(UserConfigPath) + + parser = OptionParser() + + parser.add_option("-f", "--file", dest="filename", help="chemin du corpus", metavar="FILE", default=False) + parser.add_option("-t", "--type", dest="type_analyse", help="type d'analyse", metavar="TYPE D'ANALYSE", default='alceste') + + parser.add_option("-c", "--conf", dest="configfile", help="chemin du fichier de configuration", metavar="CONF", default=False) + parser.add_option("-e", "--enc", dest="encodage", help="encodage du corpus", metavar="ENC", default=locale.getpreferredencoding()) + parser.add_option("-l", "--lang", dest="language", help="langue du corpus", metavar="LANG", default='french') + (options, args) = parser.parse_args() + print args + print options + if options.filename : + self.filename = os.path.abspath(options.filename) + self.conf = RawConfigParser() + self.conf.read(self.filename) + print self.conf.sections() + + if 'analyse' in self.conf.sections() : + print 'zerzerz' + DictPathOut=ChdTxtPathOut(os.path.dirname(self.filename)) + self.pathout = os.path.dirname(self.filename) + self.DictPathOut=DictPathOut + self.corpus = Corpus(self) + self.corpus.dictpathout = self.DictPathOut + self.corpus.read_corpus_from_shelves(self.DictPathOut['db']) + self.corpus.parametre['analyse'] = 'alceste' + self.corpus.make_lem_type_list() + for i in range(1,18) : + ClasseCHD(self, self.corpus, i, True) + zerzerzer + #ll = self.corpus.find_segments_doublon(15,1000000) + #with open('extrait_doublons.csv' ,'w') as f : + # f.write('\n'.join([';'.join([`v[0]`,v[1]]) for v in ll])) + #print ll + #self.corpus.count_uci_from_list('/home/pierre/fac/lerass/bouquin_indentite/liste_mot_chercher_uci.txt') + #print 'start pickle' + #output = open('testpickle.pkl', 'r') + #pickle.dump(self.corpus.formes, output, -1) + #formes = pickle.load(output) + #output.close() + #print 'finish pickle' + #sdfsdfs + #listin = '/home/pierre/fac/identite/Personnages.csv' + #with codecs.open(listin, 'r', 'cp1252') as f : + # content = f.read() + #content = content.replace('"','').splitlines() + #print content + #self.corpus.make_and_write_sparse_matrix_from_uce_list(content, '/home/pierre/fac/identite/personnages.mm') + #print 'zerzer' + # print 'EXTRACT NR' + # self.corpus.extractnr() + #listin = [u'droit', u'devoir'] + #make_word_stat(self.corpus, listin) + Alceste=True + fsdfsdfd + self.filename = os.path.abspath(options.filename) + self.corpus_encodage = options.encodage + self.corpus_lang = options.language + if options.configfile : + self.ConfigPath[options.type_analyse] = os.path.abspath(options.configfile) + self.TEMPDIR = tempfile.mkdtemp('iramuteq') + self.RscriptsPath = ConstructRscriptsPath(AppliPath) + self.PathPath = ConfigParser() + self.PathPath.read(self.ConfigPath['path']) + self.RPath = self.PathPath.get('PATHS', 'rpath') + self.pref = RawConfigParser() + self.pref.read(self.ConfigPath['preferences']) + #print 'PAS DE CODECS POUR CABLE' + with codecs.open(self.filename, 'r', self.corpus_encodage) as f: + self.content = f.read() + self.content = self.content.replace('\r','') + ReadLexique(self, lang = options.language) + if options.type_analyse == 'alceste' : + # print 'ATTENTION : BIGGGGGGGGGGGGGGGGGGG' + # self.Text = AnalyseAlceste(self, cmd = True, big = True) + self.Text = AnalyseAlceste(self, cmd = True) + elif options.type_analyse == 'pam' : + self.Text = PamTxt(self, cmd = True) + elif options.type_analyse == 'afcuci' : + self.Text = AfcUci(self, cmd = True) + elif options.type_analyse == 'stat' : + self.Text = Stat(self, cmd = True) + #print self.Text.corpus.hours, 'h', self.Text.corpus.minutes,'min', self.Text.corpus.seconds, 's' +# self.Text.corpus.make_colored_corpus('colored.html') + +if __name__ == '__main__': + __name__ = 'Main' + CmdLine() + diff --git a/layout.py b/layout.py new file mode 100644 index 0000000..6550ced --- /dev/null +++ b/layout.py @@ -0,0 +1,858 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + +import os +import wx +#import wx.lib.agw.aui as aui +import agw.aui as aui +from chemins import ConstructPathOut, ChdTxtPathOut, FFF, ffr, PathOut, StatTxtPathOut +from ConfigParser import ConfigParser +from functions import ReadProfileAsDico, GetTxtProfile, read_list_file, ReadList, exec_rcode, print_liste, BugReport, DoConf +from ProfList import * +from guiparam3d import param3d, simi3d +from PrintRScript import write_afc_graph, print_simi3d +from profile_segment import * +from functions import ReadList +from listlex import * +from Liste import * +from search_tools import SearchFrame +from dialog import PrefGraph, PrefExport, PrefSimpleFile, PrefDendro +from corpusNG import Corpus +import datetime +import sys +import tempfile +import shutil +import webbrowser +import codecs + +class GraphPanelAfc(wx.Panel): + def __init__(self, parent, dico, list_graph, clnb, itempath = 'liste_graph_afc', coding = sys.getdefaultencoding()): + wx.Panel.__init__(self,parent) + self.afcnb = 1 + self.clnb = clnb + self.Dict = dico + self.coding = coding + self.itempath = itempath + self.parent = self.GetParent()#parent + self.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "courier")) + self.labels = [] + self.listimg = [] + self.TabCHD = self.parent.GetParent() + self.nb = self.TabCHD.GetParent() + self.ira = self.nb.GetParent() + self.panel_1 = wx.ScrolledWindow(self, -1, style=wx.TAB_TRAVERSAL) + afc_img = wx.Image(os.path.join(self.ira.images_path,'button_afc.jpg'), wx.BITMAP_TYPE_ANY).ConvertToBitmap() + self.butafc = wx.BitmapButton(self, -1, afc_img) + self.Bind(wx.EVT_BUTTON, self.afc_graph, self.butafc) + self.dirout = os.path.dirname(self.Dict['ira']) + for i in range(0,len(list_graph)): + if os.path.exists(os.path.join(self.dirout,list_graph[i][0])) : + self.listimg.append(wx.StaticBitmap(self.panel_1, -1, wx.Bitmap(os.path.join(self.dirout,list_graph[i][0]), wx.BITMAP_TYPE_ANY))) + self.labels.append(wx.StaticText(self.panel_1, -1, list_graph[i][1])) + + self.param = { 'typegraph' : 0, + 'width' : 800, + 'height' : 800, + 'what' : 0, + 'qui' : 0, + 'do_select_nb' : 0, + 'do_select_chi' : 0, + 'select_nb' : 50, + 'select_chi' : 4, + 'over' : 0, + 'cex_txt' : 0, + 'txt_min' : 5, + 'txt_max' : 40, + 'tchi' : 0, + 'tchi_min' : 5, + 'tchi_max' : 40, + 'taillecar' : 9, + 'facteur' : [1,2,3], + 'alpha' : 10, + 'clnb' : clnb, + } + + self.__set_properties() + self.__do_layout() + + def __set_properties(self): + self.panel_1.EnableScrolling(True,True) + #self.panel_1.SetSize((1000,1000)) + self.panel_1.SetScrollRate(20, 20) + + def __do_layout(self): + self.sizer_1 = wx.BoxSizer(wx.VERTICAL) + self.sizer_2 = wx.BoxSizer(wx.HORIZONTAL) + self.sizer_3 = wx.BoxSizer(wx.VERTICAL) + self.sizer_2.Add(self.butafc, 0, 0, 0) + for i in range(0, len(self.listimg)): + self.sizer_3.Add(self.listimg[i], 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.sizer_3.Add(self.labels[i], 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.panel_1.SetSizer(self.sizer_3) + self.sizer_2.Add(self.panel_1, 1, wx.EXPAND, 0) + self.SetSizer(self.sizer_2) + + def afc_graph(self,event): + #dirout = os.path.dirname(self.Dict['ira']) + while os.path.exists(os.path.join(self.dirout,'graph_afc_'+str(self.afcnb)+'.png')): + self.afcnb +=1 + self.fileout = ffr(os.path.join(self.dirout,'graph_afc_'+str(self.afcnb)+'.png')) + dial = PrefGraph(self.parent,-1,self.param,'') + dial.CenterOnParent() + val = dial.ShowModal() + if val == wx.ID_OK : + self.param = {'typegraph' : dial.choicetype.GetSelection(), + 'width' : dial.spin1.GetValue(), + 'height' : dial.spin2.GetValue(), + 'what' : dial.choice1.GetSelection(), + 'qui' : dial.choice2.GetSelection(), + 'do_select_nb' : dial.check1.GetValue(), + 'do_select_chi' : dial.check2.GetValue(), + 'select_nb' : dial.spin_nb.GetValue(), + 'select_chi' : dial.spin_chi.GetValue(), + 'over' : dial.check3.GetValue(), + 'cex_txt' : dial.check4.GetValue(), + 'txt_min' : dial.spin_min.GetValue(), + 'txt_max' : dial.spin_max.GetValue(), + 'tchi' : dial.check_tchi.GetValue(), + 'tchi_min' : dial.spin_min_tchi.GetValue(), + 'tchi_max' : dial.spin_max_tchi.GetValue(), + 'taillecar' : dial.spin3.GetValue(), + 'facteur' : [dial.spin_f1.GetValue(),dial.spin_f2.GetValue(), dial.spin_f3.GetValue()], + 'clnb' : self.clnb, + 'film' : str(dial.film.GetValue()).upper(), + 'alpha' : dial.slider_sphere.GetValue() + } + self.nb.parent = self.ira + self.DictPathOut = self.Dict + self.RscriptsPath = self.ira.RscriptsPath + txt = """ + load("%s") + """ % self.DictPathOut['RData'] + if self.itempath == 'liste_graph_afcf' : + txt += """ + afc <- afcf + afc_table <- afcf_table + chistabletot <- specfp + """ + elif self.itempath == 'liste_graph_afct' : + txt +=""" + afc <- afct + afc_table <- afct_table + chistabletot <- spectp + """ + txt += write_afc_graph(self) + filetmp = tempfile.mktemp() + file = open(filetmp,'w') + file.write(txt) + file.close() + pid = exec_rcode(self.ira.RPath, filetmp) + check_Rresult(self.ira, pid) + if self.param['typegraph'] == 0 : + txt = 'Variables ' + if self.param['qui'] == 0 : value = u'actives' + if self.param['qui'] == 1 : value = u'supplémentaires' + if self.param['qui'] == 2 : value = u'étoilées' + if self.param['qui'] == 3 : value = u'classes' + txt += value + ' - ' + if self.param['what'] == 0 : value = u'Coordonnées' + if self.param['what'] == 1 : value = u'Corrélations' + txt += value + u' - facteur %i / %i' % (self.param['facteur'][0], self.param['facteur'][1]) + if self.param['do_select_nb'] : txt += u' - sélection de %i variables' % self.param['select_nb'] + if self.param['do_select_chi'] : txt += u' - sélection des variables avec chi2 > %i ' % self.param['select_chi'] + if self.param['over'] : txt += u' - Eviter les recouvrements' + if self.param['cex_txt'] : txt += u' - taille du texte proportionnel à la masse' + if self.param['tchi'] : txt += u' - taille du texte proportionnel au chi2 d\'association' + list_graph = read_list_file(self.DictPathOut[self.itempath], self.coding) + list_graph.append([self.fileout, txt]) + print_liste(self.DictPathOut[self.itempath], list_graph) + self.sizer_3.Add(wx.StaticBitmap(self.panel_1, -1, wx.Bitmap(self.fileout, wx.BITMAP_TYPE_ANY)), 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.sizer_3.Add(wx.StaticText(self.panel_1,-1, txt), 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.sizer_3.Fit(self.panel_1) + self.Layout() + + self.panel_1.Scroll(0,self.panel_1.GetScrollRange(wx.VERTICAL)) + + +class GraphPanel(wx.ScrolledWindow): + def __init__(self, parent, dico, list_graph, txt = '', style = wx.TAB_TRAVERSAL): + wx.ScrolledWindow.__init__(self, parent, style = style) + self.Dict = dico + self.txt = txt + self.parent = parent + self.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "courier")) + self.labels = [] + self.listimg = [] + self.dirout = os.path.dirname(self.Dict['ira']) + self.deb = wx.StaticText(self, -1, txt) + for i in range(0,len(list_graph)): + if os.path.exists(os.path.join(self.dirout,list_graph[i][0])) : + self.listimg.append(wx.StaticBitmap(self, -1, wx.Bitmap(os.path.join(self.dirout,list_graph[i][0]), wx.BITMAP_TYPE_ANY))) + self.labels.append(wx.StaticText(self, -1, list_graph[i][1])) + + self.__set_properties() + self.__do_layout() + + def __set_properties(self): + self.SetScrollRate(20, 20) + + def __do_layout(self): + self.sizer_1 = wx.BoxSizer(wx.VERTICAL) + self.sizer_2 = wx.BoxSizer(wx.VERTICAL) + self.sizer_3 = wx.BoxSizer(wx.HORIZONTAL) + self.sizer_1.Add(self.deb) + for i in range(0, len(self.listimg)): + self.sizer_1.Add(self.listimg[i], 1, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.sizer_1.Add(self.labels[i], 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.sizer_2.Add(self.sizer_1, 1, wx.EXPAND, 0) + self.SetSizer(self.sizer_1) + self.sizer_1.Fit(self) + +class OpenCHDS(): + def __init__(self, parent, corpus, parametres, Alceste=False): + #sep = u'\n ' + sep=' ' + self.parent = parent + self.corpus = corpus + self.parametres = parametres + self.pathout = PathOut(parametres['ira']) + self.pathout.basefiles(ChdTxtPathOut) + DictPathOut = self.pathout + self.DictPathOut = DictPathOut + self.parent = parent + + Profile = DictPathOut['PROFILE_OUT'] + AntiProfile = DictPathOut['ANTIPRO_OUT'] + if isinstance(self.corpus, Corpus) : + self.encoding = self.corpus.parametres['syscoding'] + self.corpus.make_ucecl_from_R(self.pathout['uce']) + elif 'tableau' in dir(gparent) : + self.encoding = gparent.tableau.parametres['syscoding'] + + #AnalyseConf = ConfigParser() + #AnalyseConf.readfp(codecs.open(filename,'r', self.encoding)) + #AnalyseConf.read(filename) + #if 'analyse' in AnalyseConf.sections() : + # section = 'analyse' + #elif 'questionnaire' in AnalyseConf.sections() : + # section = 'questionnaire' + #elif 'chd_dist_quest' in AnalyseConf.sections() : + # section = 'chd_dist_quest' + #self.section = section + #clnb = AnalyseConf.get(section, 'clusternb') + #clnb = int(clnb) + clnb = parametres['clnb'] + dlg = progressbar(self, maxi = 4 + clnb) + self.clnb = clnb + corpname = self.corpus.parametres['corpus_name'] + print 'lecture des profils' + dlg.Update(2, u'lecture des profils') + + DictProfile = ReadProfileAsDico(self, Profile, Alceste, self.encoding) + self.DictProfile = DictProfile + print 'lecture des antiprofils' + DictAnti = ReadProfileAsDico(self, AntiProfile, Alceste, self.encoding) + + panel = wx.Panel(parent, -1) + sizer1 = wx.BoxSizer(wx.VERTICAL) + + panel.chd_toolbar = wx.ToolBar(panel, -1, wx.DefaultPosition, wx.DefaultSize, wx.TB_FLAT | wx.TB_NODIVIDER) + panel.chd_toolbar.SetToolBitmapSize(wx.Size(16, 16)) + + if isinstance(self.corpus, Corpus) : + panel.corpus = self.corpus + self.ID_sg = wx.NewId() + butsg = wx.Button(panel.chd_toolbar, self.ID_sg, u"Profils des segments répétés ") + panel.chd_toolbar.AddControl(butsg) + panel.chd_toolbar.AddSeparator() + self.ID_export = wx.NewId() + butexp = wx.Button(panel.chd_toolbar, self.ID_export, u"Exporter le corpus ") + panel.chd_toolbar.AddControl(butexp) + panel.chd_toolbar.AddSeparator() + self.ID_colored = wx.NewId() + butcol = wx.Button(panel.chd_toolbar, self.ID_colored, u"Corpus en couleur ") + panel.chd_toolbar.AddControl(butcol) + panel.chd_toolbar.AddSeparator() + self.ID_searchf = wx.NewId() + butsearchf = wx.Button(panel.chd_toolbar, self.ID_searchf, u"Outil de navigation ") + panel.chd_toolbar.AddControl(butsearchf) + panel.chd_toolbar.AddSeparator() + + self.ID_proftype =wx.NewId() + butpt = wx.Button(panel.chd_toolbar, self.ID_proftype, u"Profils des types ") + panel.chd_toolbar.AddControl(butpt) + panel.chd_toolbar.AddSeparator() + + self.ID_clusterstat =wx.NewId() + butclusterstat = wx.Button(panel.chd_toolbar, self.ID_clusterstat, u"Stat par classe ") + panel.chd_toolbar.AddControl(butclusterstat) + panel.chd_toolbar.AddSeparator() + + + self.ID_rapport = wx.NewId() + #rap_img = wx.Image(os.path.join(self.parent.images_path,'icone_rap_16.png'), wx.BITMAP_TYPE_ANY).ConvertToBitmap() + #panel.chd_toolbar.AddLabelTool(self.ID_rapport, "rapport", rap_img, shortHelp=u"Produire le rapport", longHelp=u"Exporter un rapport en texte simple") + butrap = wx.Button(panel.chd_toolbar, self.ID_rapport, u"Rapport ") + panel.chd_toolbar.AddControl(butrap) + + panel.chd_toolbar.Realize() + sizer1.Add(panel.chd_toolbar,0, wx.EXPAND, 5) + + #self.TabChdSim = wx.aui.AuiNotebook(self.parent.nb, -1, wx.DefaultPosition) + notebook_flags = aui.AUI_NB_DEFAULT_STYLE | aui.AUI_NB_TAB_EXTERNAL_MOVE | aui.AUI_NB_TAB_MOVE | aui.AUI_NB_TAB_FLOAT| wx.NO_BORDER + panel.TabChdSim = aui.AuiNotebook(panel, -1, wx.DefaultPosition) + panel.TabChdSim.SetAGWWindowStyleFlag(notebook_flags) + panel.TabChdSim.SetArtProvider(aui.ChromeTabArt()) + sizer1.Add(panel.TabChdSim,10, wx.EXPAND, 5) + panel.SetSizer(sizer1) + sizer1.Fit(panel) + + + if isinstance(self.corpus, Corpus) : + panel.TabChdSim.corpus = corpus + panel.TabChdSim.corpus.dictpathout = self.DictPathOut + panel.parametres = self.parametres + + self.notenb = self.parent.nb.GetPageCount() + if os.path.exists(DictPathOut['pre_rapport']): + #self.tabRap = wx.TextCtrl(self.TabChdSim, -1, "", style=wx.TE_MULTILINE | wx.TE_RICH2) + #self.tabRap.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "courier")) + with codecs.open(DictPathOut['pre_rapport'], 'r', self.encoding) as f : + txt = f.read() + #self.tabRap.write(txt) + #self.tabRap.ShowPosition(0) + self.debtext = txt + else : + self.debtext = '' + + if os.path.exists(self.DictPathOut['liste_graph_chd']) : + list_graph = read_list_file(self.DictPathOut['liste_graph_chd'], self.encoding) + CHD = GraphPanelDendro(panel.TabChdSim, DictPathOut, list_graph, txt = self.debtext) + panel.TabChdSim.AddPage(CHD,'CHD') + + panel.ProfNB = aui.AuiNotebook(panel, -1, wx.DefaultPosition) + panel.ProfNB.SetArtProvider(aui.ChromeTabArt()) + #self.ProfNB.SetTabCtrlHeight(100) + panel.AntiProfNB = aui.AuiNotebook(panel, -1, wx.DefaultPosition) + if os.path.exists(DictPathOut['prof_seg']) : + prof_seg = ReadProfileAsDico(self, DictPathOut['prof_seg'], False, self.encoding) + self.prof_seg_nb = aui.AuiNotebook(panel, -1, wx.DefaultPosition) + for i in range(0, clnb): + dlg.Update(3+i, 'Classe %i' %(i+1)) + ind = '/'.join(DictProfile[str(i + 1)][0][0:2]) + indpour = ' - '.join([ind, DictProfile[str(i + 1)][0][2]]) + print 'construction liste classe %i' % i + self.tabprofile = ProfListctrlPanel(self.parent, self, DictProfile[str(i + 1)], Alceste, i + 1) + self.tabantiprofile = ProfListctrlPanel(self.parent, self, DictAnti[str(i + 1)], Alceste, i + 1) + panel.ProfNB.AddPage(self.tabprofile, 'classe %s %s(%s%%)' % (str(i + 1), sep, indpour)) + panel.AntiProfNB.AddPage(self.tabantiprofile, 'classe %s' % str(i + 1)) + if os.path.exists(DictPathOut['prof_seg']) : + self.tab_prof_seg = ProfListctrlPanel(self.parent, self, prof_seg[str(i + 1)], False, i + 1) + self.prof_seg_nb.AddPage(self.tab_prof_seg, 'classe %i' % (i + 1)) + + if clnb > 2 : + self.TabAFC = aui.AuiNotebook(panel.TabChdSim, -1, wx.DefaultPosition) + + list_graph=read_list_file(DictPathOut['liste_graph_afc'], self.encoding) + self.tabAFCGraph = GraphPanelAfc(self.TabAFC, DictPathOut, list_graph, self.clnb, coding=self.encoding) + self.TabAFC.AddPage(self.tabAFCGraph, 'AFC') + + if os.path.exists(self.DictPathOut['afc_facteur']) : + dictrow, first = ReadList(self.DictPathOut['afc_facteur'], self.encoding) + self.TabAFC_facteur = ListForSpec(self.parent, parametres, dictrow, first) + dictrow, first = ReadList(self.DictPathOut['afc_row'], self.encoding) + self.TabAFC_ligne = ListForSpec(self.parent, self.parametres, dictrow, first) + dictrow, first = ReadList(self.DictPathOut['afc_col'], self.encoding) + self.TabAFC_colonne = ListForSpec(parent, self.parametres, dictrow, first) + self.TabAFC.AddPage(self.TabAFC_facteur, 'Facteurs') + self.TabAFC.AddPage(self.TabAFC_colonne, u'Colonnes') + self.TabAFC.AddPage(self.TabAFC_ligne, u'Lignes') + + sizer_3 = wx.BoxSizer(wx.VERTICAL) + self.parent.nb_panel_2 = wx.Panel(panel.TabChdSim, -1) + self.parent.button_simi = wx.Button(self.parent.nb_panel_2, -1, "Voyager") + self.parent.simi3dpanel = simi3d(self.parent.nb_panel_2, -1) + sizer_3.Add(self.parent.simi3dpanel, 1, wx.EXPAND, 0) + sizer_3.Add(self.parent.button_simi, 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.parent.nb_panel_2.SetSizer(sizer_3) + self.TabAFC.AddPage(self.parent.nb_panel_2, "graph 3D") + self.parent.Bind(wx.EVT_BUTTON, self.onsimi, self.parent.button_simi) + + panel.TabChdSim.AddPage(panel.ProfNB, 'Profils') + panel.TabChdSim.AddPage(panel.AntiProfNB, 'Antiprofils') + dlg.Update(4 + self.clnb, 'Affichage...') + if clnb > 2 : + panel.TabChdSim.AddPage(self.TabAFC, 'AFC') + if os.path.exists(DictPathOut['prof_seg']) : + panel.TabChdSim.AddPage(self.prof_seg_nb, u'Profils des segments répétés') + + if isinstance(self.corpus, Corpus) : + panel.Bind(wx.EVT_BUTTON, self.on_export_classes, id = self.ID_export) + panel.Bind(wx.EVT_BUTTON, self.onprofseg, id = self.ID_sg) + panel.Bind(wx.EVT_BUTTON, self.oncolored, id = self.ID_colored) + panel.Bind(wx.EVT_BUTTON, self.onsearchf, id = self.ID_searchf) + panel.Bind(wx.EVT_BUTTON, self.onproftype, id = self.ID_proftype) + panel.Bind(wx.EVT_BUTTON, self.onclusterstat, id = self.ID_clusterstat) + + panel.Bind(wx.EVT_BUTTON, self.ongetrapport, id = self.ID_rapport) + self.parent.nb.AddPage(panel, 'Classification - %s' % corpname) + self.parent.ShowTab(True) + self.parent.nb.SetSelection(self.parent.nb.GetPageCount() - 1) + #for pane in self.parent._mgr.GetAllPanes() : + # if isinstance(pane.window, aui.AuiNotebook): + # nb = pane.window + # nb.SetAGWWindowStyleFlag(notebook_flags) + # nb.SetArtProvider(aui.ChromeTabArt()) + dlg.Destroy() + self.parent._mgr.Update() + + def onsimi(self,event): + outfile = print_simi3d(self) + error = exec_rcode(self.parent.RPath, outfile, wait = True) + + def ongetrapport(self, event) : + dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.txt', 'title': 'Rapport'}) + dial.fbb.SetValue(self.DictPathOut['rapport']) + dial.CenterOnParent() + res = dial.ShowModal() + if res == wx.ID_OK : + fileout = dial.fbb.GetValue() + dial.Destroy() + with open(fileout, 'w') as f : + f.write(self.debtext + '\n' + GetTxtProfile(self.DictProfile)) + msg = u"Fini !" + dlg = wx.MessageDialog(self.parent, msg, u"Rapport", wx.OK | wx.NO_DEFAULT | wx.ICON_INFORMATION) + dlg.CenterOnParent() + dlg.ShowModal() + dlg.Destroy() + else : + dial.Destroy() + + def on_export_classes(self, event) : + corpus = self.parent.nb.GetPage(self.parent.nb.GetSelection()).corpus + dial = PrefExport(self, self.parent) + dial.fbb.SetValue(os.path.join(os.path.dirname(corpus.dictpathout['ira']), 'export_corpus.txt')) + dial.CenterOnParent() + res = dial.ShowModal() + if res == wx.ID_OK : + if dial.radio_type.GetSelection() == 0 : alc = True + else : alc = False + if dial.radio_lem.GetSelection() == 0 : lem = True + else : lem = False + self.corpus.export_corpus_classes(dial.fbb.GetValue(), alc = alc, lem = lem) + msg = u"Fini !" + dial.Destroy() + dlg = wx.MessageDialog(self.parent, msg, u"Export", wx.OK | wx.NO_DEFAULT | wx.ICON_INFORMATION) + dlg.CenterOnParent() + dlg.ShowModal() + dlg.Destroy() + + def onprofseg(self, event): + try : + corpus = self.parent.nb.GetPage(self.parent.nb.GetSelection()).corpus + ProfileSegment(self.parent,corpus) + except : + BugReport(self.parent) + + def onproftype(self, event): + try : + corpus = self.parent.nb.GetPage(self.parent.nb.GetSelection()).corpus + ProfilType(self.parent, corpus) + except : + BugReport(self.parent) + + def oncolored(self,evt) : + dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.html', 'title': 'Corpus en couleur'}) + dial.fbb.SetValue(os.path.join(os.path.dirname(self.corpus.dictpathout['ira']), 'corpus_couleur.html')) + dial.CenterOnParent() + res = dial.ShowModal() + if res == wx.ID_OK : + fileout = dial.fbb.GetValue() + dial.Destroy() + txt = self.corpus.make_colored_corpus() + with open(fileout, 'w') as f : + f.write(txt) + msg = u"Fini !\nVoulez-vous ouvrir le corpus dans votre navigateur ?" + dlg = wx.MessageDialog(self.parent, msg, u"Corpus en couleur", wx.NO | wx.YES | wx.NO_DEFAULT | wx.ICON_QUESTION) + dlg.CenterOnParent() + if dlg.ShowModal() == wx.ID_YES : + webbrowser.open(fileout) + dlg.Destroy() + + def onclusterstat(self, evt) : + dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.csv', 'title': 'Stat par classe'}) + dial.fbb.SetValue( os.path.join(os.path.dirname(self.corpus.dictpathout['ira']), 'stat_par_classe.csv')) + dial.CenterOnParent() + res = dial.ShowModal() + if res == wx.ID_OK : + fileout = dial.fbb.GetValue() + dial.Destroy() + print fileout + self.corpus.get_stat_by_cluster(fileout) + msg = u"Fini !" + dlg = wx.MessageDialog(self.parent, msg, u"Stat par classe", wx.OK | wx.NO_DEFAULT | wx.ICON_INFORMATION) + dlg.CenterOnParent() + if dlg.ShowModal() == wx.ID_OK : + dlg.Destroy() + + def onsearchf(self, evt) : + if 'FrameSearch' not in dir(self.parent) : + self.parent.FrameSearch = SearchFrame(self.parent, -1, u"Rechercher...", self.corpus) + self.parent.FrameSearch.Show() + + + +def PrintRapport(self, corpus, parametres, txt = True): + #if sys.platform == 'win32': + # sep = '\r\n' + #else: + sep = '\n' + txt = """ ++-+-+-+-+-+-+-+-+ +|i|R|a|M|u|T|e|Q| - %s ++-+-+-+-+-+-+-+-+ + + +""" % datetime.datetime.now().ctime() + totocc = corpus.gettotocc() + if txt : + txt += u'nombre d\'uci: %i%s' % (corpus.getucinb(), sep) + txt += u'nombre d\'uce: %i%s' % (corpus.getucenb(), sep) + txt += u'nombre de formes: %i%s' % (len(corpus.formes), sep) + txt += u'nombre d\'occurrences: %i%s' % (totocc, sep) + txt += u'moyenne d\'occurrences par forme: %f%s' % (float(totocc) / float(len(self.corpus.formes)), sep) + txt += u'nombre de lemmes: %i%s' % (len(corpus.lems), sep) + txt += u'nombre de formes actives: %i%s' % (corpus.getactivesnb(1), sep) + txt += u'nombre de formes supplémentaires: %i%s' % (corpus.getactivesnb(2), sep) + txt += u'nombre de formes actives de fréquence >= %i: %i%s' % (parametres['eff_min_forme'], parametres['nbactives'], sep) + txt += u'moyenne d\'occurrences par uce :%f%s' % (float(totocc) / float(corpus.getucenb()), sep) + if 'tailleuc1' in parametres : + if parametres['classif_mode'] != 0 : + txt += u'taille uc1 : %i\n' % parametres['tailleuc1'] + else: + txt += u'taille uc1 / uc2: %i / %i - %i / %i%s' % (parametres['tailleuc1'], parametres['tailleuc2'], parametres['lenuc1'], parametres['lenuc2'], sep) + elif not txt : + self.Ucenb = self.nbind + txt += u'nombre d\'individus : %i%s' % (self.nbind, sep) + txt += u'nombre de classes : %i%s' % (self.clnb, sep) + if txt : + txt += u'nombre de classes : %i%s' % (parametres['clnb'], sep) + if parametres['classif_mode'] == 0 or parametres['classif_mode'] == 1 : + txt += u'%i uce classées sur %i (%.2f%%)%s' % (sum([len(cl) for cl in corpus.lc]), corpus.getucenb(), (float(sum([len(cl) for cl in corpus.lc])) / float(corpus.getucenb())) * 100, sep) + elif self.parametres['classif_mode'] == 2 : + txt += u'%i uci classées sur %i (%.2f%%)%s' % (sum([len(cl) for cl in corpus.lc]), corpus.getucinb(), (float(sum([len(cl) for cl in corpus.lc]))) / float(corpus.getucinb()) * 100, sep) + elif analyse == 'quest' : + txt += u'%i uce classées sur %i (%.2f%%)%s' % (self.ucecla, self.Ucenb, (float(self.ucecla) / float(self.Ucenb)) * 100, sep) + + txt += """ +########################### +temps d'analyse : %s +########################### +""" % parametres['time'] + file = open(self.pathout['pre_rapport'], 'w') + file.write(txt) + file.close() + +class dolexlayout : + def __init__(self, ira, corpus, parametres): + self.pathout = PathOut(dirout = parametres['pathout']) + self.corpus = corpus + self.dictpathout = StatTxtPathOut(parametres['pathout']) + #self.corpus.read_corpus_from_shelves(self.corpus.dictpathout['db']) + self.parent = ira + self.encoding = self.corpus.parametres['syscoding'] + self.parametres = parametres + + self.DictSpec, first = ReadList(self.dictpathout['tablespecf'], self.corpus.parametres['syscoding']) + self.DictType, firstt = ReadList(self.dictpathout['tablespect'], self.corpus.parametres['syscoding']) + self.DictEff, firsteff = ReadList(self.dictpathout['tableafcm'], self.corpus.parametres['syscoding']) + self.DictEffType, firstefft = ReadList(self.dictpathout['tabletypem'], self.corpus.parametres['syscoding']) + self.DictEffRelForme, firsteffrelf = ReadList(self.dictpathout['eff_relatif_forme'], self.corpus.parametres['syscoding']) + self.DictEffRelType, firsteffrelt = ReadList(self.dictpathout['eff_relatif_type'], self.corpus.parametres['syscoding']) + + self.TabStat = aui.AuiNotebook(ira.nb, -1, wx.DefaultPosition) + self.TabStat.parametres = parametres + self.ListPan = ListForSpec(ira, self.parent, self.DictSpec, first) + self.ListPant = ListForSpec(ira, self.parent, self.DictType, firstt) + self.ListPanEff = ListForSpec(ira, self.parent, self.DictEff, firsteff) + self.ListPanEffType = ListForSpec(ira, self.parent, self.DictEffType, firstefft) + self.ListPanEffRelForme = ListForSpec(ira, self.parent, self.DictEffRelForme, firsteffrelf) + self.ListPanEffRelType = ListForSpec(ira, self.parent, self.DictEffRelType, firsteffrelt) + + self.TabStat.AddPage(self.ListPan, u'formes') + self.TabStat.AddPage(self.ListPant, u'Types') + self.TabStat.AddPage(self.ListPanEff, u'Effectifs formes') + self.TabStat.AddPage(self.ListPanEffType, u'Effectifs Type') + self.TabStat.AddPage(self.ListPanEffRelForme, u'Effectifs relatifs formes') + self.TabStat.AddPage(self.ListPanEffRelType, u'Effectifs relatifs Type') + if self.parametres['clnb'] > 2 : + self.TabAFC = aui.AuiNotebook(self.TabStat, -1, wx.DefaultPosition) + list_graph=read_list_file(self.dictpathout['liste_graph_afcf'], encoding = self.encoding) + self.tabAFCGraph = GraphPanelAfc(self.TabAFC, self.dictpathout, list_graph, self.parametres['clnb'], itempath ='liste_graph_afcf', coding = self.encoding) + self.TabAFC.AddPage(self.tabAFCGraph, 'AFC formes') + list_graph=read_list_file(self.dictpathout['liste_graph_afct'], encoding = self.encoding) + self.tabAFCTGraph = GraphPanelAfc(self.TabAFC, self.dictpathout, list_graph, self.parametres['clnb'], itempath ='liste_graph_afct', coding=self.encoding) + self.TabAFC.AddPage(self.tabAFCTGraph, 'AFC type') + self.TabStat.AddPage(self.TabAFC, 'AFC') + + + ira.nb.AddPage(self.TabStat, u'Spécificités') + + self.TabStat.corpus = self.corpus + ira.nb.SetSelection(self.parent.nb.GetPageCount() - 1) + ira.ShowAPane("Tab_content") + +class StatLayout: + def __init__(self, ira, corpus, parametres): + self.pathout = PathOut(dirout = os.path.dirname(parametres['pathout'])) + self.corpus = corpus + self.ira = ira + self.read_result() + self.TabStat = aui.AuiNotebook(ira.nb, -1, wx.DefaultPosition) + self.TabStat.parametres = parametres +# CHD = GraphPanel(panel.TabChdSim, DictPathOut, list_graph, txt = self.debtext) + # panel.TabChdSim.AddPage(CHD,'CHD') + + #self.TabStatTot = wx.TextCtrl(self.TabStat, -1, style=wx.NO_BORDER | wx.TE_MULTILINE | wx.TE_RICH2) + list_graph = [['zipf.png', 'zipf']] + self.TabStatTot = GraphPanel(ira.nb, self.pathout, list_graph, self.result['glob']) + #self.TabStatTot.write(self.result['glob']) + self.TabStat.AddPage(self.TabStatTot, 'global') + for item in self.result: + if item != 'glob': + datam = [['forme', 'nb']] + self.ListPan = ListPanel(ira, self, self.result[item]) + self.TabStat.AddPage(self.ListPan, item) + ira.nb.AddPage(self.TabStat, 'Stat') + ira.nb.SetSelection(ira.nb.GetPageCount() - 1) + ira.ShowAPane("Tab_content") + + def read_result(self) : + lcle = {'total' :u'total.csv', u'formes_actives':u'formes_actives.csv', u'formes_supplémentaires':u'formes_supplémentaires.csv', u'hapax': u'hapax.csv'} + self.result = {} + for key in lcle : + with open(self.pathout[lcle[key]], 'r') as f : + self.result[key] = [line.split(';') for line in f.read().splitlines()] + self.result[key] = dict([[i,[line[0],int(line[1]), line[2]]] for i, line in enumerate(self.result[key])]) + with open(self.pathout['glob.txt'], 'r') as f : + self.result['glob'] = f.read() + +class GraphPanelDendro(wx.Panel): + def __init__(self,parent, dico, list_graph, txt=False): + wx.Panel.__init__(self,parent) + self.graphnb = 1 + self.dictpathout = dico + self.dirout = os.path.dirname(self.dictpathout['ira']) + self.list_graph = list_graph + self.parent = self.GetParent()#parent + self.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "courier")) + self.labels = [] + self.listimg = [] + self.tabchd = self.parent.GetParent() + self.ira = self.tabchd.GetParent() + self.panel_1 = wx.ScrolledWindow(self, -1, style=wx.TAB_TRAVERSAL) + self.deb = wx.StaticText(self.panel_1, -1, txt) + dendro_img = wx.Image(os.path.join(self.ira.images_path,'but_dendro.png'), wx.BITMAP_TYPE_ANY).ConvertToBitmap() + self.butdendro = wx.BitmapButton(self, -1, dendro_img) + + for i in range(0,len(list_graph)): + if os.path.exists(os.path.join(self.dirout,list_graph[i][0])) : + self.listimg.append(wx.StaticBitmap(self.panel_1, -1, wx.Bitmap(os.path.join(self.dirout,list_graph[i][0]), wx.BITMAP_TYPE_ANY))) + self.labels.append(wx.StaticText(self.panel_1, -1, list_graph[i][1])) + + self.__set_properties() + self.__do_layout() + + def __set_properties(self): + self.panel_1.EnableScrolling(True,True) + #self.panel_1.SetSize((1000,1000)) + self.panel_1.SetScrollRate(20, 20) + self.Bind(wx.EVT_BUTTON, self.ondendro, self.butdendro) + self.param = {'width' : 700, + 'height': 500, + 'type_dendro': 0, + 'color_nb': 0, + 'taille_classe' : True, + 'type_tclasse' : 0 + } + self.type_dendro = [ u"phylogram", u"cladogram", u"fan", u"unrooted", u"radial" ] + + def __do_layout(self): + self.sizer_1 = wx.BoxSizer(wx.VERTICAL) + self.sizer_2 = wx.BoxSizer(wx.HORIZONTAL) + self.sizer_3 = wx.BoxSizer(wx.VERTICAL) + self.sizer_3.Add(self.deb) + self.sizer_2.Add(self.butdendro, 0, 0, 0) + for i in range(0, len(self.listimg)): + self.sizer_3.Add(self.listimg[i], 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.sizer_3.Add(self.labels[i], 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.panel_1.SetSizer(self.sizer_3) + self.sizer_2.Add(self.panel_1, 1, wx.EXPAND, 0) + self.SetSizer(self.sizer_2) + + def make_param(self, dial): + self.param['width'] = dial.m_spinCtrl2.GetValue() + self.param['height'] = dial.m_spinCtrl1.GetValue() + self.param['type_dendro'] = dial.m_choice1.GetSelection() + self.param['color_nb'] = dial.m_radioBox1.GetSelection() + self.param['taille_classe'] = dial.m_checkBox1.GetValue() + self.param['type_tclasse'] = dial.m_radioBox2.GetSelection() + + def make_dendro(self) : + while os.path.exists(os.path.join(self.dirout, 'dendrogamme_' + str(self.graphnb)+'.png')) : + self.graphnb += 1 + fileout = ffr(os.path.join(self.dirout,'dendrogamme_' + str(self.graphnb)+'.png')) + width = self.param['width'] + height = self.param['height'] + type_dendro = self.type_dendro[self.param['type_dendro']] + if self.param['taille_classe'] : + tclasse = 'TRUE' + else : + tclasse = 'FALSE' + if self.param['color_nb'] == 0 : + bw = 'FALSE' + else : + bw = 'TRUE' + if self.param['type_tclasse'] == 0 : + histo='FALSE' + else : + histo = 'TRUE' + dendro_path = self.dictpathout['Rdendro'] + classe_path = self.dictpathout['uce'] + txt = """ + library(ape) + load("%s") + source("%s") + classes <- read.csv2("%s", row.names=1) + classes <- classes[,1] + open_file_graph("%s", width=%i, height=%i) + plot.dendropr(tree.cut1$tree.cl, classes, type.dendro="%s", histo=%s, bw=%s, lab=NULL, tclasse=%s) + """ % (ffr(dendro_path), ffr(self.ira.RscriptsPath['Rgraph']), ffr(classe_path), ffr(fileout), width, height, type_dendro, histo, bw, tclasse) + + tmpfile = tempfile.mktemp() + with open(tmpfile, 'w') as f : + f.write(txt) + error = exec_rcode(self.ira.RPath, tmpfile, wait=True) + check_Rresult(self.ira, error) + self.list_graph.append([fileout, 'Dendrogramme CHD1 - %s' % type_dendro]) + print_liste(self.dictpathout['liste_graph_chd'], self.list_graph) + self.sizer_3.Add(wx.StaticBitmap(self.panel_1, -1, wx.Bitmap(fileout, wx.BITMAP_TYPE_ANY)), 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.sizer_3.Add(wx.StaticText(self.panel_1,-1, 'Dendrogramme CHD1 - %s' % type_dendro), 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.sizer_3.Fit(self.panel_1) + self.Layout() + self.panel_1.Scroll(0,self.panel_1.GetScrollRange(wx.VERTICAL)) + + + def ondendro(self, evt): + dial = PrefDendro(self.ira, self.param) + val = dial.ShowModal() + if val == wx.ID_OK : + self.make_param(dial) + self.make_dendro() + +class WordCloudLayout: + def __init__(self, ira, parent, filename): + self.dictpathout = parent.corpus.dictpathout + self.pathout = os.path.dirname(filename) + self.corpus = parent.corpus + # self.read_result() + self.Tab = aui.AuiNotebook(ira.nb, -1, wx.DefaultPosition) + list_graph = [['nuage_1.png', 'Nuage']] + self.TabStatTot = GraphPanel(ira.nb, self.dictpathout, list_graph) + #self.TabStatTot.write(self.result['glob']) + self.Tab.AddPage(self.TabStatTot, 'Nuage') + self.Tab.corpus = parent.corpus + ira.nb.AddPage(self.Tab, 'WordCloud %s' % parent.conf.get('wordcloud','corpus_name')) + ira.nb.SetSelection(ira.nb.GetPageCount() - 1) + ira.ShowAPane("Tab_content") + +class OpenCorpus : + def __init__(self, ira, parametres) : + #self.text = wx.TextCtrl(ira, -1, "", wx.Point(0, 0), wx.Size(200, 200), wx.NO_BORDER | wx.TE_MULTILINE | wx.TE_RICH2 | wx.TE_READONLY) + self.panel = CopusPanel(ira, parametres) + ira.nb.AddPage(self.panel, 'Description %s' % parametres['corpus_name']) + #self.text.write(DoConf().totext(parametres)) + ira.nb.SetSelection(ira.nb.GetPageCount() - 1) + ira.ShowAPane("Tab_content") + +class CopusPanel(wx.Panel) : + def __init__(self, parent, parametres) : + wx.Panel.__init__ ( self, parent, id = wx.ID_ANY, pos = wx.DefaultPosition, size = wx.Size( 500,300 ), style = wx.TAB_TRAVERSAL ) + self.parametres = parametres + fgSizer5 = wx.FlexGridSizer( 0, 2, 0, 0 ) + fgSizer5.SetFlexibleDirection( wx.BOTH ) + fgSizer5.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + self.fgSizer5 = fgSizer5 + + self.m_staticText18 = wx.StaticText( self, wx.ID_ANY, u"Description du corpus", wx.DefaultPosition, wx.DefaultSize, 0 ) + + self.m_staticText18.Wrap( -1 ) + fgSizer5.Add( self.m_staticText18, 0, wx.ALL, 5 ) + + self.m_staticText19 = wx.StaticText( self, wx.ID_ANY, u"", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText19.Wrap( -1 ) + fgSizer5.Add( self.m_staticText19, 0, wx.ALL, 5 ) + + self.m_staticText20 = wx.StaticText( self, wx.ID_ANY, u"Nom", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText20.Wrap( -1 ) + fgSizer5.Add( self.m_staticText20, 0, wx.ALL, 5 ) + + self.m_staticText21 = wx.StaticText( self, wx.ID_ANY, parametres['corpus_name'], wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText21.Wrap( -1 ) + fgSizer5.Add( self.m_staticText21, 0, wx.ALL, 5 ) + + description = {'lang' : u'langue', + 'encoding' : u'encodage'} + + keys = ['lang', 'encoding', 'originalpath', 'pathout', 'date', 'time'] + + self.addkeys(keys, description) + + self.m_staticText18 = wx.StaticText( self, wx.ID_ANY, u"Paramètres", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText18.Wrap( -1 ) + fgSizer5.Add( self.m_staticText18, 0, wx.ALL, 5 ) + + self.m_staticText19 = wx.StaticText( self, wx.ID_ANY, u"", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText19.Wrap( -1 ) + fgSizer5.Add( self.m_staticText19, 0, wx.ALL, 5 ) + + keys = ['ucemethod', 'ucesize', 'keep_caract', 'expressions'] + self.addkeys(keys, description) + + self.m_staticText18 = wx.StaticText( self, wx.ID_ANY, u"Statistiques", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText18.Wrap( -1 ) + fgSizer5.Add( self.m_staticText18, 0, wx.ALL, 5 ) + + self.m_staticText19 = wx.StaticText( self, wx.ID_ANY, u"", wx.DefaultPosition, wx.DefaultSize, 0 ) + self.m_staticText19.Wrap( -1 ) + fgSizer5.Add( self.m_staticText19, 0, wx.ALL, 5 ) + + keys = ['ucinb', 'ucenb', 'occurrences', 'formesnb', 'hapax'] + self.addkeys(keys, description) + + self.SetSizer( fgSizer5 ) + self.Layout() + + def addkeys(self, keys, description) : + for key in keys : + option = self.parametres.get(key,u'non défnini') + if isinstance(option, int) : + option = `option` + text = wx.StaticText( self, wx.ID_ANY, description.get(key, key), wx.DefaultPosition, wx.DefaultSize, 0 ) + text.Wrap( -1 ) + self.fgSizer5.Add( text, 0, wx.ALL, 5 ) + + text = wx.StaticText( self, wx.ID_ANY, option, wx.DefaultPosition, wx.DefaultSize, 0 ) + text.Wrap( -1 ) + self.fgSizer5.Add( text, 0, wx.ALL, 5 ) + + # def read_result(self) : + # #self.corpus.read_corpus_from_shelves(self.corpus.dictpathout['db']) + # #self.corpus.make_et_table() + # self.result = {} + # with open(os.path.join(self.pathout,'glob.txt'), 'r') as f : + # self.result['glob'] = f.read() + diff --git a/listlex.py b/listlex.py new file mode 100644 index 0000000..46d3b54 --- /dev/null +++ b/listlex.py @@ -0,0 +1,376 @@ +# -*- coding: utf-8 -*- + +#---------------------------------------------------------------------------- +# Author: Pierre Ratinaud +# + +#comes from ListCtrl.py from the demo tool of wxPython: +# Author: Robin Dunn & Gary Dumer +# +# Created: +# Copyright: (c) 1998 by Total Control Software +# Licence: wxWindows license +#---------------------------------------------------------------------------- + +import os +import sys +import wx +import wx.lib.mixins.listctrl as listmix +import cStringIO +import tempfile +from functions import exec_rcode, MessageImage +from chemins import ffr +from PrintRScript import barplot +from dialog import SearchDial +#--------------------------------------------------------------------------- + +class List(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin): + def __init__(self, parent, ID, pos=wx.DefaultPosition, + size=wx.DefaultSize, style=0): + wx.ListCtrl.__init__(self, parent, ID, pos, size, style) + listmix.ListCtrlAutoWidthMixin.__init__(self) + +class ListForSpec(wx.Panel, listmix.ColumnSorterMixin): + def __init__(self, parent,gparent, dlist,first): + self.parent=parent + self.gparent=gparent + self.dlist=dlist + self.first = first + wx.Panel.__init__(self, parent, -1, style=wx.WANTS_CHARS) + + search_id = wx.NewId() + self.parent.Bind(wx.EVT_MENU, self.onsearch, id = search_id) + self.accel_tbl = wx.AcceleratorTable([(wx.ACCEL_CTRL, ord('F'), search_id)]) + self.SetAcceleratorTable(self.accel_tbl) + + self.il = wx.ImageList(16, 16) + + self.sm_up = self.il.Add(getSmallUpArrowBitmap()) + self.sm_dn = self.il.Add(getSmallDnArrowBitmap()) + + tID = wx.NewId() + + self.list = List(self, tID, + style=wx.LC_REPORT + | wx.BORDER_NONE + | wx.LC_EDIT_LABELS + | wx.LC_SORT_ASCENDING + ) + + self.list.SetImageList(self.il, wx.IMAGE_LIST_SMALL) + + self.dlist = dlist + self.PopulateList(dlist,first) + self.Bind(wx.EVT_SIZE, self.OnSize) + + self.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnItemSelected, self.list) + self.Bind(wx.EVT_LIST_COL_CLICK, self.OnColClick) + + # for wxMSW + self.list.Bind(wx.EVT_COMMAND_RIGHT_CLICK, self.OnRightClick) + + # for wxGTK + self.list.Bind(wx.EVT_RIGHT_UP, self.OnRightClick) + + + self.itemDataMap = dlist + listmix.ColumnSorterMixin.__init__(self, len(first)) + self.SortListItems(1, False) + self.do_greyline() + +#----------------------------------------------------------------------------------------- + + def PopulateList(self, dlist,first): + i=0 + for name in first : + self.list.InsertColumn(i,name,wx.LIST_FORMAT_LEFT) + i+=1 + ct=0 + for key,data in dlist.iteritems() : + ct+=1 + index = self.list.InsertStringItem(sys.maxint, str(data[0])) + i=1 + for val in data[1:]: + self.list.SetStringItem(index, i, str(data[i])) + i+=1 + + self.list.SetItemData(index, key) + + self.list.SetColumnWidth(0, wx.LIST_AUTOSIZE) + for i in range(1,len(first)-1): + self.list.SetColumnWidth(i, 130) + + def do_greyline(self): + for row in xrange(self.list.GetItemCount()): + if row % 2 : + self.list.SetItemBackgroundColour(row,(230,230,230)) + else : + self.list.SetItemBackgroundColour(row,wx.WHITE) + + + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py + def GetListCtrl(self): + return self.list + + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py + def GetSortImages(self): + return (self.sm_dn, self.sm_up) + + + def OnRightDown(self, event): + x = event.GetX() + y = event.GetY() + item, flags = self.list.HitTest((x, y)) + + if flags & wx.LIST_HITTEST_ONITEM: + self.list.Select(item) + + event.Skip() + + def getColumnText(self, index, col): + item = self.list.GetItem(index, col) + return item.GetText() + + def OnItemSelected(self, event): + self.currentItem = event.m_itemIndex + event.Skip() + + def onsearch(self, evt) : + self.dial = SearchDial(self, self, 0, True) + self.dial.CenterOnParent() + self.dial.ShowModal() + self.dial.Destroy() + + def OnRightClick(self, event): + + # only do this part the first time so the events are only bound once + if not hasattr(self, "popupID1"): + self.popupID1 = wx.NewId() + self.popupID2 = wx.NewId() + self.popupID3 = wx.NewId() + self.popup_Tgen_glob = wx.NewId() + + self.Bind(wx.EVT_MENU, self.OnPopupOne, id=self.popupID1) + self.Bind(wx.EVT_MENU, self.OnPopupTwo, id=self.popupID2) + self.Bind(wx.EVT_MENU, self.OnPopupThree, id=self.popupID3) + self.Bind(wx.EVT_MENU, self.OnTgen_glob, id=self.popup_Tgen_glob) + # make a menu + menu = wx.Menu() + # add some items + menu.Append(self.popupID1, u"Formes associées") + menu.Append(self.popupID2, u"Concordancier") + menu.Append(self.popupID3, "Graphique") + #menu.Append(self.popup_Tgen_glob, "Tgen global") + + self.PopupMenu(menu) + menu.Destroy() + + + def OnPopupOne(self, event): + activenotebook = self.parent.nb.GetSelection() + page = self.parent.nb.GetPage(activenotebook) + corpus = page.corpus + word = self.getColumnText(self.list.GetFirstSelected(), 0) + lems = corpus.getlems() + rep = [] + for forme in lems[word].formes : + rep.append([corpus.getforme(forme).forme, corpus.getforme(forme).freq]) + win = message(self, -1, u"Formes associées", size=(300, 200), style=wx.DEFAULT_FRAME_STYLE) + win.html = '\n' + '
    '.join([' : '.join([str(val) for val in forme]) for forme in rep]) + '\n' + win.HtmlPage.SetPage(win.html) + win.Show(True) + + def OnPopupTwo(self, event): + activenotebook = self.parent.nb.GetSelection() + page = self.parent.nb.GetPage(activenotebook) + item=self.getColumnText(self.list.GetFirstSelected(), 0) + corpus = page.corpus + win = message(self, -1, u"Concordancier", size=(600, 200),style = wx.DEFAULT_FRAME_STYLE) + avap=60 + listmot = corpus.getlems()[item].formes + uce_ok = corpus.getlemuces(item) + txt = '

    Concordancier

    ' + res = corpus.getconcorde(uce_ok) + for uce in res : + ucetxt = ' '+uce[1]+' ' + txt += ' '.join(corpus.ucis[corpus.getucefromid(uce[0]).uci].etoiles) + '
    ' + for forme in listmot : + forme = corpus.getforme(forme).forme + ucetxt = ucetxt.replace(' '+forme+' ', ' ' + forme + ' ') + txt += ucetxt + '

    ' +# for uce in uce_ok: +# content = ' '+' '.join(corpus.ucis_paras_uces[uce[0]][uce[1]][uce[2]])+' ' +# for form in listmot : +# sp = '' +# i = 0 +# forme = ' ' + form + ' ' +# while i < len(content): +# coordword = content[i:].find(forme) +# if coordword != -1 and i == 0: +# txt += '
    ' + ' '.join(corpus.ucis[uce[0]][0]) + '
    ' +# if coordword < avap: +# sp = ' ' * (avap - coordword) +# deb = i +# else: +# deb = i + coordword - avap +# if len(content) < i + coordword + avap: +# fin = len(content) - 1 +# else: +# fin = i + coordword + avap +# txt += '' + sp + content[deb:fin].replace(forme, '' + forme + '') + '
    ' +# i += coordword + len(forme) +# sp = '' +# elif coordword != -1 and i != 0 : +# if coordword < avap: +# sp = ' ' * (avap - coordword) +# deb = i +# else: +# deb = i + coordword - avap +# if len(content) < i + coordword + avap: +# fin = len(content) - 1 +# else: +# fin = i + coordword + avap +# txt += '' + sp + content[deb:fin].replace(forme, '' + forme + '') + '
    ' +# i += coordword + len(forme) +# sp = '' +# else: +# i = len(content) +# sp = '' + win.HtmlPage.SetPage(txt) + win.Show(True) + + def OnPopupThree(self, event) : + datas = [self.dlist[self.list.GetItemData(self.list.GetFirstSelected())]] + last = self.list.GetFirstSelected() + while self.list.GetNextSelected(last) != -1: + last = self.list.GetNextSelected(last) + data = self.dlist[self.list.GetItemData(last)] + datas += [data] + colnames = self.first[1:] + table = [[str(val) for val in line[1:]] for line in datas] + rownames = [val[0] for val in datas] + tmpgraph = tempfile.mktemp(dir=self.parent.TEMPDIR) + + txt = barplot(table, rownames, colnames, self.parent.RscriptsPath['Rgraph'], tmpgraph) + + tmpscript = tempfile.mktemp(dir=self.parent.TEMPDIR) + file = open(tmpscript,'w') + file.write(txt) + file.close() + exec_rcode(self.parent.RPath, tmpscript, wait = True) + win = MessageImage(self, -1, u"Graphique", size=(700, 500),style = wx.DEFAULT_FRAME_STYLE) + win.addsaveimage(tmpgraph) + txt = "" % tmpgraph + win.HtmlPage.SetPage(txt) + win.Show(True) + + def OnTgen_glob(self, evt) : + activenotebook = self.parent.nb.GetSelection() + page = self.parent.nb.GetPage(activenotebook) + corpus = page.corpus + + tmpgraph = tempfile.mktemp(dir=self.gparent.parent.TEMPDIR) + intxt = """ + load("%s") + """ % corpus.dictpathout['RData'] + intxt += """ + Tgen.glob = NULL + tovire <- NULL + for (i in 1:ncol(dmf)) { + Tgen.glob <- rbind(Tgen.glob,colSums(dmf[which(specf[,i] > 3),])) + tovire <- append(tovire, which(specf[,i] > 3)) + } + rownames(Tgen.glob) <- colnames(dmf) + Tgen.table <- dmf[-unique(tovire),] + Tgen.table<- rbind(Tgen.table, Tgen.glob) + spec.Tgen.glob <- AsLexico2(Tgen.table) + spec.Tgen.glob <- spec.Tgen.glob[[1]][((nrow(Tgen.table)-ncol(Tgen.table))+1):nrow(Tgen.table),] + di <- spec.Tgen.glob + """ + txt = barplot('', '', '', self.gparent.parent.RscriptsPath['Rgraph'], tmpgraph, intxt = intxt) + tmpscript = tempfile.mktemp(dir=self.gparent.parent.TEMPDIR) + with open(tmpscript, 'w') as f : + f.write(txt) + exec_rcode(self.gparent.parent.RPath, tmpscript, wait = True) + win = MessageImage(self, -1, u"Graphique", size=(700, 500),style = wx.DEFAULT_FRAME_STYLE) + win.addsaveimage(tmpgraph) + txt = "" % tmpgraph + win.HtmlPage.SetPage(txt) + win.Show(True) + + def OnSize(self, event): + w,h = self.GetClientSizeTuple() + self.list.SetDimensions(0, 0, w, h) + + def OnColClick(self,event): + self.do_greyline() + +class message(wx.Frame): + def __init__(self, *args, **kwds): + # begin wxGlade: MyFrame.__init__ + kwds["style"] = wx.DEFAULT_FRAME_STYLE + wx.Frame.__init__(self, *args, **kwds) + #self.text_ctrl_1 = wx.TextCtrl(self, -1, "", style=wx.TE_MULTILINE) + self.HtmlPage=wx.html.HtmlWindow(self, -1) + if "gtk2" in wx.PlatformInfo: + self.HtmlPage.SetStandardFonts() + self.HtmlPage.SetFonts('Courier','Courier') + + + self.button_1 = wx.Button(self, -1, "Fermer") + self.Bind(wx.EVT_BUTTON, self.OnCloseMe, self.button_1) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + self.__do_layout() + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyFrame.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_2.Add(self.HtmlPage, 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0) + sizer_2.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ADJUST_MINSIZE, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetAutoLayout(True) + self.SetSizer(sizer_1) + self.Layout() + # end wxGlade + + def OnCloseMe(self, event): + self.Close(True) + + def OnCloseWindow(self, event): + self.Destroy() + + +def getSmallUpArrowData(): + return \ +'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\ +\x00\x00\x00\x1f\xf3\xffa\x00\x00\x00\x04sBIT\x08\x08\x08\x08|\x08d\x88\x00\ +\x00\x00C\xb0\x89\ +\xd3.\x10\xd1m\xc3\xe5*\xbc.\x80i\xc2\x17.\x8c\xa3y\x81\x01\x00\xa1\x0e\x04e\ +?\x84B\xef\x00\x00\x00\x00IEND\xaeB`\x82" + +def getSmallDnArrowBitmap(): + return wx.BitmapFromImage(getSmallDnArrowImage()) + +def getSmallDnArrowImage(): + stream = cStringIO.StringIO(getSmallDnArrowData()) + return wx.ImageFromStream(stream) diff --git a/locale/en/LC_MESSAGES/iramuteq.mo b/locale/en/LC_MESSAGES/iramuteq.mo new file mode 100644 index 0000000..8a0dc61 Binary files /dev/null and b/locale/en/LC_MESSAGES/iramuteq.mo differ diff --git a/locale/fr_FR/LC_MESSAGES/iramuteq.mo b/locale/fr_FR/LC_MESSAGES/iramuteq.mo new file mode 100644 index 0000000..d8c7bad Binary files /dev/null and b/locale/fr_FR/LC_MESSAGES/iramuteq.mo differ diff --git a/messages.pot b/messages.pot new file mode 100644 index 0000000..fb7e9f9 --- /dev/null +++ b/messages.pot @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-09-16 16:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: iramuteq.py:134 +msgid "&Open a questionnaire\tCtrl+O" +msgstr "" + +#: iramuteq.py:184 +msgid "Edition" +msgstr "" + +#: iramuteq.py:183 +msgid "File" +msgstr "" + +#: iramuteq.py:188 +msgid "Help" +msgstr "" + +#: iramuteq.py:134 +msgid "Open a questionnaire" +msgstr "" + +#: iramuteq.py:186 +msgid "Spreadsheet analysis" +msgstr "" + +#: iramuteq.py:187 +msgid "Text analysis" +msgstr "" + +#: iramuteq.py:185 +msgid "View" +msgstr "" diff --git a/mki18n.py b/mki18n.py new file mode 100644 index 0000000..fe095c0 --- /dev/null +++ b/mki18n.py @@ -0,0 +1,457 @@ +#! /usr/bin/env python +# -*- coding: iso-8859-1 -*- +# +# PYTHON MODULE: MKI18N.PY +# ========= +# +# Abstract: Make Internationalization (i18n) files for an application. +# +# Copyright Pierre Rouleau. 2003. Released to public domain. +# +# Last update: Saturday, November 8, 2003. @ 15:55:18. +# +# File: ROUP2003N01::C:/dev/python/mki18n.py +# +# RCS $Header: //software/official/MKS/MKS_SI/TV_NT/dev/Python/rcs/mki18n.py 1.5 2003/11/05 19:40:04 PRouleau Exp $ +# +# Update history: +# +# - File created: Saturday, June 7, 2003. by Pierre Rouleau +# - 10/06/03 rcs : RCS Revision 1.1 2003/06/10 10:06:12 PRouleau +# - 10/06/03 rcs : RCS Initial revision +# - 23/08/03 rcs : RCS Revision 1.2 2003/06/10 10:54:27 PRouleau +# - 23/08/03 P.R.: [code:fix] : The strings encoded in this file are encode in iso-8859-1 format. Added the encoding +# notification to Python to comply with Python's 2.3 PEP 263. +# - 23/08/03 P.R.: [feature:new] : Added the '-e' switch which is used to force the creation of the empty English .mo file. +# - 22/10/03 P.R.: [code] : incorporated utility functions in here to make script self sufficient. +# - 05/11/03 rcs : RCS Revision 1.4 2003/10/22 06:39:31 PRouleau +# - 05/11/03 P.R.: [code:fix] : included the unixpath() in this file. +# - 08/11/03 rcs : RCS Revision 1.5 2003/11/05 19:40:04 PRouleau +# +# RCS $Log: $ +# +# +# ----------------------------------------------------------------------------- +""" +mki18n allows you to internationalize your software. You can use it to +create the GNU .po files (Portable Object) and the compiled .mo files +(Machine Object). + +mki18n module can be used from the command line or from within a script (see +the Usage at the end of this page). + + Table of Contents + ----------------- + + makePO() -- Build the Portable Object file for the application -- + catPO() -- Concatenate one or several PO files with the application domain files. -- + makeMO() -- Compile the Portable Object files into the Machine Object stored in the right location. -- + printUsage -- Displays how to use this script from the command line -- + + Scriptexecution -- Runs when invoked from the command line -- + + +NOTE: this module uses GNU gettext utilities. + +You can get the gettext tools from the following sites: + + - `GNU FTP site for gettetx`_ where several versions (0.10.40, 0.11.2, 0.11.5 and 0.12.1) are available. + Note that you need to use `GNU libiconv`_ to use this. Get it from the `GNU + libiconv ftp site`_ and get version 1.9.1 or later. Get the Windows .ZIP + files and install the packages inside c:/gnu. All binaries will be stored + inside c:/gnu/bin. Just put c:/gnu/bin inside your PATH. You will need + the following files: + + - `gettext-runtime-0.12.1.bin.woe32.zip`_ + - `gettext-tools-0.12.1.bin.woe32.zip`_ + - `libiconv-1.9.1.bin.woe32.zip`_ + + +.. _GNU libiconv: http://www.gnu.org/software/libiconv/ +.. _GNU libiconv ftp site: http://www.ibiblio.org/pub/gnu/libiconv/ +.. _gettext-runtime-0.12.1.bin.woe32.zip: ftp://ftp.gnu.org/gnu/gettext/gettext-runtime-0.12.1.bin.woe32.zip +.. _gettext-tools-0.12.1.bin.woe32.zip: ftp://ftp.gnu.org/gnu/gettext/gettext-tools-0.12.1.bin.woe32.zip +.. _libiconv-1.9.1.bin.woe32.zip: http://www.ibiblio.org/pub/gnu/libiconv/libiconv-1.9.1.bin.woe32.zip + +""" +# ----------------------------------------------------------------------------- +# Module Import +# ------------- +# +import os +import sys +import wx +# ----------------------------------------------------------------------------- +# Global variables +# ---------------- +# + +__author__ = "Pierre Rouleau" +__version__= "$Revision: 1.5 $" + +# ----------------------------------------------------------------------------- + +def getlanguageDict(): + languageDict = {} + + for lang in [x for x in dir(wx) if x.startswith("LANGUAGE")]: + i = wx.Locale(wx.LANGUAGE_DEFAULT).GetLanguageInfo(getattr(wx, lang)) + if i: + languageDict[i.CanonicalName] = i.Description + + return languageDict + +# ----------------------------------------------------------------------------- +# m a k e P O ( ) -- Build the Portable Object file for the application -- +# ^^^^^^^^^^^^^^^ +# +def makePO(applicationDirectoryPath, applicationDomain=None, verbose=0) : + """Build the Portable Object Template file for the application. + + makePO builds the .pot file for the application stored inside + a specified directory by running xgettext for all application source + files. It finds the name of all files by looking for a file called 'app.fil'. + If this file does not exists, makePo raises an IOError exception. + By default the application domain (the application + name) is the same as the directory name but it can be overridden by the + 'applicationDomain' argument. + + makePO always creates a new file called messages.pot. If it finds files + of the form app_xx.po where 'app' is the application name and 'xx' is one + of the ISO 639 two-letter language codes, makePO resynchronizes those + files with the latest extracted strings (now contained in messages.pot). + This process updates all line location number in the language-specific + .po files and may also create new entries for translation (or comment out + some). The .po file is not changed, instead a new file is created with + the .new extension appended to the name of the .po file. + + By default the function does not display what it is doing. Set the + verbose argument to 1 to force it to print its commands. + """ + + if applicationDomain is None: + applicationName = fileBaseOf(applicationDirectoryPath,withPath=0) + else: + applicationName = applicationDomain + currentDir = os.getcwd() + os.chdir(applicationDirectoryPath) + if not os.path.exists('app.fil'): + raise IOError(2,'No module file: app.fil') + + # Steps: + # Use xgettext to parse all application modules + # The following switches are used: + # + # -s : sort output by string content (easier to use when we need to merge several .po files) + # --files-from=app.fil : The list of files is taken from the file: app.fil + # --output= : specifies the name of the output file (using a .pot extension) + cmd = 'xgettext -s --no-wrap --files-from=app.fil --output=messages.pot' + if verbose: print cmd + os.system(cmd) + + languageDict = getlanguageDict() + + for langCode in languageDict.keys(): + if langCode == 'en': + pass + else: + langPOfileName = "%s_%s.po" % (applicationName , langCode) + if os.path.exists(langPOfileName): + cmd = 'msgmerge -s --no-wrap "%s" messages.pot > "%s.new"' % (langPOfileName, langPOfileName) + if verbose: print cmd + os.system(cmd) + os.chdir(currentDir) + +# ----------------------------------------------------------------------------- +# c a t P O ( ) -- Concatenate one or several PO files with the application domain files. -- +# ^^^^^^^^^^^^^ +# +def catPO(applicationDirectoryPath, listOf_extraPo, applicationDomain=None, targetDir=None, verbose=0) : + """Concatenate one or several PO files with the application domain files. + """ + + if applicationDomain is None: + applicationName = fileBaseOf(applicationDirectoryPath,withPath=0) + else: + applicationName = applicationDomain + currentDir = os.getcwd() + os.chdir(applicationDirectoryPath) + + languageDict = getlanguageDict() + + for langCode in languageDict.keys(): + if langCode == 'en': + pass + else: + langPOfileName = "%s_%s.po" % (applicationName , langCode) + if os.path.exists(langPOfileName): + fileList = '' + for fileName in listOf_extraPo: + fileList += ("%s_%s.po " % (fileName,langCode)) + cmd = "msgcat -s --no-wrap %s %s > %s.cat" % (langPOfileName, fileList, langPOfileName) + if verbose: print cmd + os.system(cmd) + if targetDir is None: + pass + else: + mo_targetDir = "%s/%s/LC_MESSAGES" % (targetDir,langCode) + cmd = "msgfmt --output-file=%s/%s.mo %s_%s.po.cat" % (mo_targetDir,applicationName,applicationName,langCode) + if verbose: print cmd + os.system(cmd) + os.chdir(currentDir) + +# ----------------------------------------------------------------------------- +# m a k e M O ( ) -- Compile the Portable Object files into the Machine Object stored in the right location. -- +# ^^^^^^^^^^^^^^^ +# +def makeMO(applicationDirectoryPath,targetDir='./locale',applicationDomain=None, verbose=0, forceEnglish=0) : + """Compile the Portable Object files into the Machine Object stored in the right location. + + makeMO converts all translated language-specific PO files located inside + the application directory into the binary .MO files stored inside the + LC_MESSAGES sub-directory for the found locale files. + + makeMO searches for all files that have a name of the form 'app_xx.po' + inside the application directory specified by the first argument. The + 'app' is the application domain name (that can be specified by the + applicationDomain argument or is taken from the directory name). The 'xx' + corresponds to one of the ISO 639 two-letter language codes. + + makeMo stores the resulting files inside a sub-directory of `targetDir` + called xx/LC_MESSAGES where 'xx' corresponds to the 2-letter language + code. + """ + if targetDir is None: + targetDir = './locale' + if verbose: + print "Target directory for .mo files is: %s" % targetDir + + if applicationDomain is None: + applicationName = fileBaseOf(applicationDirectoryPath,withPath=0) + else: + applicationName = applicationDomain + currentDir = os.getcwd() + os.chdir(applicationDirectoryPath) + + languageDict = getlanguageDict() + languageDict['en'] = 'zerzer' + for langCode in languageDict.keys(): + print langCode + if (langCode == 'en') and (forceEnglish==0): + pass + else: + langPOfileName = "%s_%s.po" % (applicationName , langCode) + if os.path.exists(langPOfileName): + print "%s/%s/LC_MESSAGES" % (targetDir,langCode) + mo_targetDir = "%s/%s/LC_MESSAGES" % (targetDir,langCode) + if not os.path.exists(mo_targetDir): + mkdir(mo_targetDir) + cmd = 'msgfmt --output-file="%s/%s.mo" "%s_%s.po"' % (mo_targetDir,applicationName,applicationName,langCode) + if verbose: print cmd + os.system(cmd) + os.chdir(currentDir) + +# ----------------------------------------------------------------------------- +# p r i n t U s a g e -- Displays how to use this script from the command line -- +# ^^^^^^^^^^^^^^^^^^^ +# +def printUsage(errorMsg=None) : + """Displays how to use this script from the command line.""" + print """ + ################################################################################## + # mki18n : Make internationalization files. # + # Uses the GNU gettext system to create PO (Portable Object) files # + # from source code, coimpile PO into MO (Machine Object) files. # + # Supports C,C++,Python source files. # + # # + # Usage: mki18n {OPTION} [appDirPath] # + # # + # Options: # + # -e : When -m is used, forces English .mo file creation # + # -h : prints this help # + # -m : make MO from existing PO files # + # -p : make PO, update PO files: Creates a new messages.pot # + # file. Creates a dom_xx.po.new for every existing # + # language specific .po file. ('xx' stands for the ISO639 # + # two-letter language code and 'dom' stands for the # + # application domain name). mki18n requires that you # + # write a 'app.fil' file which contains the list of all # + # source code to parse. # + # -v : verbose (prints comments while running) # + # --domain=appName : specifies the application domain name. By default # + # the directory name is used. # + # --moTarget=dir : specifies the directory where .mo files are stored. # + # If not specified, the target is './locale' # + # # + # You must specify one of the -p or -m option to perform the work. You can # + # specify the path of the target application. If you leave it out mki18n # + # will use the current directory as the application main directory. # + # # + ##################################################################################""" + if errorMsg: + print "\n ERROR: %s" % errorMsg + +# ----------------------------------------------------------------------------- +# f i l e B a s e O f ( ) -- Return base name of filename -- +# ^^^^^^^^^^^^^^^^^^^^^^^ +# +def fileBaseOf(filename,withPath=0) : + """fileBaseOf(filename,withPath) ---> string + + Return base name of filename. The returned string never includes the extension. + Use os.path.basename() to return the basename with the extension. The + second argument is optional. If specified and if set to 'true' (non zero) + the string returned contains the full path of the file name. Otherwise the + path is excluded. + + [Example] + >>> fn = 'd:/dev/telepath/tvapp/code/test.html' + >>> fileBaseOf(fn) + 'test' + >>> fileBaseOf(fn) + 'test' + >>> fileBaseOf(fn,1) + 'd:/dev/telepath/tvapp/code/test' + >>> fileBaseOf(fn,0) + 'test' + >>> fn = 'abcdef' + >>> fileBaseOf(fn) + 'abcdef' + >>> fileBaseOf(fn,1) + 'abcdef' + >>> fn = "abcdef." + >>> fileBaseOf(fn) + 'abcdef' + >>> fileBaseOf(fn,1) + 'abcdef' + """ + pos = filename.rfind('.') + if pos > 0: + filename = filename[:pos] + if withPath: + return filename + else: + return os.path.basename(filename) +# ----------------------------------------------------------------------------- +# m k d i r ( ) -- Create a directory (and possibly the entire tree) -- +# ^^^^^^^^^^^^^ +# +def mkdir(directory) : + """Create a directory (and possibly the entire tree). + + The os.mkdir() will fail to create a directory if one of the + directory in the specified path does not exist. mkdir() + solves this problem. It creates every intermediate directory + required to create the final path. Under Unix, the function + only supports forward slash separator, but under Windows and MacOS + the function supports the forward slash and the OS separator (backslash + under windows). + """ + + # translate the path separators + directory = unixpath(directory) + # build a list of all directory elements + aList = filter(lambda x: len(x)>0, directory.split('/')) + theLen = len(aList) + # if the first element is a Windows-style disk drive + # concatenate it with the first directory + if aList[0].endswith(':'): + if theLen > 1: + aList[1] = aList[0] + '/' + aList[1] + del aList[0] + theLen -= 1 + # if the original directory starts at root, + # make sure the first element of the list + # starts at root too + if directory[0] == '/': + aList[0] = '/' + aList[0] + # Now iterate through the list, check if the + # directory exists and if not create it + theDir = '' + for i in range(theLen): + theDir += aList[i] + if not os.path.exists(theDir): + os.mkdir(theDir) + theDir += '/' + +# ----------------------------------------------------------------------------- +# u n i x p a t h ( ) -- Return a path name that contains Unix separator. -- +# ^^^^^^^^^^^^^^^^^^^ +# +def unixpath(thePath) : + r"""Return a path name that contains Unix separator. + + [Example] + >>> unixpath(r"d:\test") + 'd:/test' + >>> unixpath("d:/test/file.txt") + 'd:/test/file.txt' + >>> + """ + thePath = os.path.normpath(thePath) + if os.sep == '/': + return thePath + else: + return thePath.replace(os.sep,'/') + +# ----------------------------------------------------------------------------- + +# S c r i p t e x e c u t i o n -- Runs when invoked from the command line -- +# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +# +if __name__ == "__main__": + import getopt # command line parsing + argc = len(sys.argv) + if argc == 1: + printUsage('Missing argument: specify at least one of -m or -p (or both).') + sys.exit(1) + # If there is some arguments, parse the command line + validOptions = "ehmpv" + validLongOptions = ['domain=', 'moTarget='] + option = {} + option['forceEnglish'] = 0 + option['mo'] = 0 + option['po'] = 0 + option['verbose'] = 0 + option['domain'] = None + option['moTarget'] = None + try: + optionList,pargs = getopt.getopt(sys.argv[1:],validOptions,validLongOptions) + except getopt.GetoptError, e: + printUsage(e[0]) + sys.exit(1) + for (opt,val) in optionList: + if (opt == '-h'): + printUsage() + sys.exit(0) + elif (opt == '-e'): option['forceEnglish'] = 1 + elif (opt == '-m'): option['mo'] = 1 + elif (opt == '-p'): option['po'] = 1 + elif (opt == '-v'): option['verbose'] = 1 + elif (opt == '--domain'): option['domain'] = val + elif (opt == '--moTarget'): option['moTarget'] = val + if len(pargs) == 0: + appDirPath = os.getcwd() + if option['verbose']: + print "No project directory given. Using current one: %s" % appDirPath + elif len(pargs) == 1: + appDirPath = pargs[0] + else: + printUsage('Too many arguments (%u). Use double quotes if you have space in directory name' % len(pargs)) + sys.exit(1) + if option['domain'] is None: + # If no domain specified, use the name of the target directory + option['domain'] = fileBaseOf(appDirPath) + if option['verbose']: + print "Application domain used is: '%s'" % option['domain'] + if option['po']: + try: + makePO(appDirPath,option['domain'],option['verbose']) + except IOError, e: + printUsage(e[1] + '\n You must write a file app.fil that contains the list of all files to parse.') + if option['mo']: + makeMO(appDirPath,option['moTarget'],option['domain'],option['verbose'],option['forceEnglish']) + sys.exit(1) + + +# ----------------------------------------------------------------------------- diff --git a/newsimi.py b/newsimi.py new file mode 100644 index 0000000..03b800d --- /dev/null +++ b/newsimi.py @@ -0,0 +1,23 @@ + + + + + +simi : + + + +class Simi() : + def __init__(self, parent, param, cmd=False) : + pass + + def make_Rcode(self) : + pass + + def doR(self) : + pass + + def make_param(self) : + pass + + diff --git a/ooolib.py b/ooolib.py new file mode 100644 index 0000000..d683b50 --- /dev/null +++ b/ooolib.py @@ -0,0 +1,1962 @@ +"ooolib-python - Copyright (C) 2006-2009 Joseph Colton" + +# ooolib-python - Python module for creating Open Document Format documents. +# Copyright (C) 2006-2009 Joseph Colton + +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. + +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. + +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +# You can contact me by email at josephcolton@gmail.com + +# Import Standard Modules +import zipfile # Needed for reading/writing documents +import time +import sys +import glob +import os +import re +import xml.parsers.expat # Needed for parsing documents + +def version_number(): + "Get the ooolib-python version number" + return "0.0.17" + +def version(): + "Get the ooolib-python version" + return "ooolib-python-%s" % version_number() + +def clean_string(data): + "Returns an XML friendly copy of the data string" + + data = unicode(data) # This line thanks to Chris Ender + + data = data.replace('&', '&') + data = data.replace("'", ''') + data = data.replace('"', '"') + data = data.replace('<', '<') + data = data.replace('>', '>') + data = data.replace('\t', '') + data = data.replace('\n', '') + return data + +class XML: + "XML Class - Used to convert nested lists into XML" + def __init__(self): + "Initialize ooolib XML instance" + pass + + def _xmldata(self, data): + datatype = data.pop(0) + datavalue = data.pop(0) + outstring = '%s' % datavalue + return outstring + + def _xmltag(self, data): + outstring = '' + # First two + datatype = data.pop(0) + dataname = data.pop(0) + outstring = '<%s' % dataname + # Element Section + element = 1 + while(data): + # elements + newdata = data.pop(0) + if (newdata[0] == 'element' and element): + newstring = self._xmlelement(newdata) + outstring = '%s %s' % (outstring, newstring) + continue + if (newdata[0] != 'element' and element): + element = 0 + outstring = '%s>' % outstring + if (newdata[0] == 'tag' or newdata[0] == 'tagline'): + outstring = '%s\n' % outstring + if (newdata[0] == 'tag'): + newstring = self._xmltag(newdata) + outstring = '%s%s' % (outstring, newstring) + continue + if (newdata[0] == 'tagline'): + newstring = self._xmltagline(newdata) + outstring = '%s%s' % (outstring, newstring) + continue + if (newdata[0] == 'data'): + newstring = self._xmldata(newdata) + outstring = '%s%s' % (outstring, newstring) + continue + if (element): + element = 0 + outstring = '%s>\n' % outstring + outstring = '%s\n' % (outstring, dataname) + return outstring + + def _xmltagline(self, data): + outstring = '' + # First two + datatype = data.pop(0) + dataname = data.pop(0) + outstring = '<%s' % dataname + # Element Section + while(data): + # elements + newdata = data.pop(0) + if (newdata[0] != 'element'): break + newstring = self._xmlelement(newdata) + outstring = '%s %s' % (outstring, newstring) + outstring = '%s/>\n' % outstring + # Non-Element Section should not exist + return outstring + + def _xmlelement(self, data): + datatype = data.pop(0) + dataname = data.pop(0) + datavalue = data.pop(0) + outstring = '%s="%s"' % (dataname, datavalue) + return outstring + + def convert(self, data): + """Convert nested lists into XML + + The convert method takes a nested lists and converts them + into XML to be used in Open Document Format documents. + There are three types of lists that are recognized at this + time. They are as follows: + + 'tag' - Tag opens a set of data that is eventually closed + with a similar tag. + List: ['tag', 'xml'] + XML: + + 'tagline' - Taglines are similar to tags, except they open + and close themselves. + List: ['tagline', 'xml'] + XML: + + 'element' - Elements are pieces of information stored in an + opening tag or tagline. + List: ['element', 'color', 'blue'] + XML: color="blue" + + 'data' - Data is plain text directly inserted into the XML + document. + List: ['data', 'hello'] + XML: hello + + Bring them all together for something like this. + + Lists: + ['tag', 'xml', ['element', 'a', 'b'], ['tagline', 'xml2'], + ['data', 'asdf']] + + XML: + asdf + """ + outlines = [] + outlines.append('') + if (type(data) == type([]) and len(data) > 0): + if data[0] == 'tag': outlines.append(self._xmltag(data)) + return outlines + +class Meta: + "Meta Data Class" + + def __init__(self, doctype, debug=False): + self.doctype = doctype + + # Set the debug mode + self.debug = debug + + # The generator should always default to the version number + self.meta_generator = version() + self.meta_title = '' + self.meta_subject = '' + self.meta_description = '' + self.meta_keywords = [] + self.meta_creator = 'ooolib-python' + self.meta_editor = '' + self.meta_user1_name = 'Info 1' + self.meta_user2_name = 'Info 2' + self.meta_user3_name = 'Info 3' + self.meta_user4_name = 'Info 4' + self.meta_user1_value = '' + self.meta_user2_value = '' + self.meta_user3_value = '' + self.meta_user4_value = '' + self.meta_creation_date = self.meta_time() + + # Parser data + self.parser_element_list = [] + self.parser_element = "" + self.parser_count = 0 + + def set_meta(self, metaname, value): + """Set meta data in your document. + + Currently implemented metaname options are as follows: + 'creator' - The document author + """ + if metaname == 'creator': self.meta_creator = value + if metaname == 'editor': self.meta_editor = value + if metaname == 'title': self.meta_title = value + if metaname == 'subject': self.meta_subject = value + if metaname == 'description': self.meta_description = value + if metaname == 'user1name': self.meta_user1_name = value + if metaname == 'user2name': self.meta_user2_name = value + if metaname == 'user3name': self.meta_user3_name = value + if metaname == 'user4name': self.meta_user4_name = value + if metaname == 'user1value': self.meta_user1_value = value + if metaname == 'user2value': self.meta_user2_value = value + if metaname == 'user3value': self.meta_user3_value = value + if metaname == 'user4value': self.meta_user4_value = value + if metaname == 'keyword': + if value not in self.meta_keywords: + self.meta_keywords.append(value) + + def get_meta_value(self, metaname): + "Get meta data value for a given metaname." + + if metaname == 'creator': return self.meta_creator + if metaname == 'editor': return self.meta_editor + if metaname == 'title': return self.meta_title + if metaname == 'subject': return self.meta_subject + if metaname == 'description': return self.meta_description + if metaname == 'user1name': return self.meta_user1_name + if metaname == 'user2name': return self.meta_user2_name + if metaname == 'user3name': return self.meta_user3_name + if metaname == 'user4name': return self.meta_user4_name + if metaname == 'user1value': return self.meta_user1_value + if metaname == 'user2value': return self.meta_user2_value + if metaname == 'user3value': return self.meta_user3_value + if metaname == 'user4value': return self.meta_user4_value + if metaname == 'keyword': return self.meta_keywords + + def meta_time(self): + "Return time string in meta data format" + t = time.localtime() + stamp = "%04d-%02d-%02dT%02d:%02d:%02d" % (t[0], t[1], t[2], t[3], t[4], t[5]) + return stamp + + def parse_start_element(self, name, attrs): + if self.debug: print '* Start element:', name + self.parser_element_list.append(name) + self.parser_element = self.parser_element_list[-1] + + # Need the meta name from the user-defined tags + if (self.parser_element == "meta:user-defined"): + self.parser_count += 1 + # Set user-defined name + self.set_meta("user%dname" % self.parser_count, attrs['meta:name']) + + # Debugging statements + if self.debug: print " List: ", self.parser_element_list + if self.debug: print " Attributes: ", attrs + + + def parse_end_element(self, name): + if self.debug: print '* End element:', name + if name != self.parser_element: + print "Tag Mismatch: '%s' != '%s'" % (name, self.parser_element) + self.parser_element_list.pop() + + # Readjust parser_element_list and parser_element + if (self.parser_element_list): + self.parser_element = self.parser_element_list[-1] + else: + self.parser_element = "" + + def parse_char_data(self, data): + if self.debug: print " Character data: ", repr(data) + + # Collect Meta data fields + if (self.parser_element == "dc:title"): + self.set_meta("title", data) + if (self.parser_element == "dc:description"): + self.set_meta("description", data) + if (self.parser_element == "dc:subject"): + self.set_meta("subject", data) + if (self.parser_element == "meta:initial-creator"): + self.set_meta("creator", data) + + # Try to maintain the same creation date + if (self.parser_element == "meta:creation-date"): + self.meta_creation_date = data + + # The user defined fields need to be kept track of, parser_count does that + if (self.parser_element == "meta:user-defined"): + self.set_meta("user%dvalue" % self.parser_count, data) + + def meta_parse(self, data): + "Parse Meta Data from a meta.xml file" + + # Debugging statements + if self.debug: + # Sometimes it helps to see the document that was read from + print data + print "\n\n\n" + + # Create parser + parser = xml.parsers.expat.ParserCreate() + # Set up parser callback functions + parser.StartElementHandler = self.parse_start_element + parser.EndElementHandler = self.parse_end_element + parser.CharacterDataHandler = self.parse_char_data + + # Actually parse the data + parser.Parse(data, 1) + + def get_meta(self): + "Generate meta.xml file data" + self.meta_date = self.meta_time() + self.data = ['tag', 'office:document-meta', + ['element', 'xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'], + ['element', 'xmlns:xlink', 'http://www.w3.org/1999/xlink'], + ['element', 'xmlns:dc', 'http://purl.org/dc/elements/1.1/'], + ['element', 'xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'], + ['element', 'xmlns:ooo', 'http://openoffice.org/2004/office'], + ['element', 'office:version', '1.0'], + ['tag', 'office:meta', + ['tag', 'meta:generator', # Was: 'OpenOffice.org/2.0$Linux OpenOffice.org_project/680m5$Build-9011' + ['data', self.meta_generator]], # Generator is set the the ooolib-python version. + ['tag', 'dc:title', + ['data', self.meta_title]], # This data is the document title + ['tag', 'dc:description', + ['data', self.meta_description]], # This data is the document description + ['tag', 'dc:subject', + ['data', self.meta_subject]], # This data is the document subject + ['tag', 'meta:initial-creator', + ['data', self.meta_creator]], # This data is the document creator + ['tag', 'meta:creation-date', + ['data', self.meta_creation_date]], # This is the original creation date of the document + ['tag', 'dc:creator', + ['data', self.meta_editor]], # This data is the document editor + ['tag', 'dc:date', + ['data', self.meta_date]], # This is the last modified date of the document + ['tag', 'dc:language', + ['data', 'en-US']], # We will probably always use en-US for language + ['tag', 'meta:editing-cycles', + ['data', '1']], # Edit cycles will probably always be 1 for generated documents + ['tag', 'meta:editing-duration', + ['data', 'PT0S']], # Editing duration is modified - creation date + ['tag', 'meta:user-defined', + ['element', 'meta:name', self.meta_user1_name], + ['data', self.meta_user1_value]], + ['tag', 'meta:user-defined', + ['element', 'meta:name', self.meta_user2_name], + ['data', self.meta_user2_value]], + ['tag', 'meta:user-defined', + ['element', 'meta:name', self.meta_user3_name], + ['data', self.meta_user3_value]], + ['tag', 'meta:user-defined', + ['element', 'meta:name', self.meta_user4_name], + ['data', self.meta_user4_value]]]] +# ['tagline', 'meta:document-statistic', +# ['element', 'meta:table-count', len(self.sheets)], # len(self.sheets) ? +# ['element', 'meta:cell-count', '15']]]] # Not sure how to keep track + + # Generate content.xml XML data + xml = XML() + self.lines = xml.convert(self.data) + self.filedata = '\n'.join(self.lines) + # Return generated data + return self.filedata + + + +class CalcStyles: + "Calc Style Management - Used to keep track of created styles." + + def __init__(self): + self.style_config = {} + # Style Counters + self.style_table = 1 + self.style_column = 1 + self.style_row = 1 + self.style_cell = 1 + # Style Properties (Defaults) - To be used later + self.property_column_width_default = '0.8925in' # Default Column Width + self.property_row_height_default = '0.189in' # Default Row Height + # Set Defaults + self.property_column_width = '0.8925in' # Default Column Width + self.property_row_height = '0.189in' # Default Row Height + self.property_cell_bold = False # Bold off be default + self.property_cell_italic = False # Italic off be default + self.property_cell_underline = False # Underline off be default + self.property_cell_fg_color = 'default' # Text Color Default + self.property_cell_bg_color = 'default' # Cell Background Default + self.property_cell_bg_image = 'none' # Cell Background Default + self.property_cell_fontsize = '10' # Cell Font Size Default + self.property_cell_valign = 'default' # Vertial Alignment Default + self.property_cell_halign = 'default' # Horizantal Alignment Default + + def get_next_style(self, style): + "Returns the next style code for the given style" + style_code = "" + if style == 'table': + style_code = 'ta%d' % self.style_table + self.style_table+=1 + if style == 'column': + style_code = 'co%d' % self.style_column + self.style_column+=1 + if style == 'row': + style_code = 'ro%d' % self.style_row + self.style_row+=1 + if style == 'cell': + style_code = 'ce%d' % self.style_cell + self.style_cell+=1 + return style_code + + def set_property(self, style, name, value): + "Sets a property which will later be turned into a code" + if style == 'table': + pass + if style == 'column': + if name == 'style:column-width': self.property_column_width = value + if style == 'row': + if name == 'style:row-height': self.property_row_height = value + if style == 'cell': + if name == 'bold' and type(value) == type(True): self.property_cell_bold = value + if name == 'italic' and type(value) == type(True): self.property_cell_italic = value + if name == 'underline' and type(value) == type(True): self.property_cell_underline = value + if name == 'fontsize': self.property_cell_fontsize = value + if name == 'color': + self.property_cell_fg_color = 'default' + redata = re.search("^(#[\da-fA-F]{6})$", value) + if redata: self.property_cell_fg_color = value.lower() + if name == 'background': + self.property_cell_bg_color = 'default' + redata = re.search("^(#[\da-fA-F]{6})$", value) + if redata: self.property_cell_bg_color = value.lower() + if name == 'backgroundimage': + self.property_cell_bg_image = value + if name == 'valign': + self.property_cell_valign = value + if name == 'halign': + self.property_cell_halign = value + + def get_style_code(self, style): + style_code = "" + if style == 'table': + style_code = "ta1" + if style == 'column': + style_data = tuple([style, + ('style:column-width', self.property_column_width)]) + if style_data in self.style_config: + # Style Exists, return code + style_code = self.style_config[style_data] + else: + # Style does not exist, create code and return it + style_code = self.get_next_style(style) + self.style_config[style_data] = style_code + if style == 'row': + style_data = tuple([style, + ('style:row-height', self.property_row_height)]) + if style_data in self.style_config: + # Style Exists, return code + style_code = self.style_config[style_data] + else: + # Style does not exist, create code and return it + style_code = self.get_next_style(style) + self.style_config[style_data] = style_code + if style == 'cell': + style_data = [style] + # Add additional styles + if self.property_cell_bold: style_data.append(('bold', True)) + if self.property_cell_italic: style_data.append(('italic', True)) + if self.property_cell_underline: style_data.append(('underline', True)) + if self.property_cell_fontsize != '10': + style_data.append(('fontsize', self.property_cell_fontsize)) + if self.property_cell_fg_color != 'default': + style_data.append(('color', self.property_cell_fg_color)) + if self.property_cell_bg_color != 'default': + style_data.append(('background', self.property_cell_bg_color)) + if self.property_cell_bg_image != 'none': + style_data.append(('backgroundimage', self.property_cell_bg_image)) + if self.property_cell_valign != 'default': + style_data.append(('valign', self.property_cell_valign)) + if self.property_cell_halign != 'default': + style_data.append(('halign', self.property_cell_halign)) + + style_data = tuple(style_data) + if style_data in self.style_config: + # Style Exists, return code + style_code = self.style_config[style_data] + else: + # Style does not exist, create code and return it + style_code = self.get_next_style(style) + self.style_config[style_data] = style_code + return style_code + + def get_automatic_styles(self): + "Return 'office:automatic-styles' lists" + automatic_styles = ['tag', 'office:automatic-styles'] + + for style_data in self.style_config: + style_code = self.style_config[style_data] + style_data = list(style_data) + style = style_data.pop(0) + + if style == 'column': + style_list = ['tag', 'style:style', + ['element', 'style:name', style_code], # Column 'co1' properties + ['element', 'style:family', 'table-column']] + tagline = ['tagline', 'style:table-column-properties', + ['element', 'fo:break-before', 'auto']] # unsure what break before means + + for set in style_data: + name, value = set + if name == 'style:column-width': + tagline.append(['element', 'style:column-width', value]) + style_list.append(tagline) + automatic_styles.append(style_list) + + if style == 'row': + style_list = ['tag', 'style:style', + ['element', 'style:name', style_code], # Column 'ro1' properties + ['element', 'style:family', 'table-row']] + tagline = ['tagline', 'style:table-row-properties'] + + for set in style_data: + name, value = set + if name == 'style:row-height': + tagline.append(['element', 'style:row-height', value]) + tagline.append(['element', 'fo:break-before', 'auto']) +# tagline.append(['element', 'style:use-optimal-row-height', 'true']) # Overrides settings + style_list.append(tagline) + automatic_styles.append(style_list) + + if style == 'cell': + style_list = ['tag', 'style:style', + ['element', 'style:name', style_code], # ce1 style + ['element', 'style:family', 'table-cell'], # cell + ['element', 'style:parent-style-name', 'Default']] # parent is Default + + # Cell Properties + tagline = ['tag', 'style:table-cell-properties'] + tagline_additional = [] + for set in style_data: + name, value = set + if name == 'background': + tagline.append(['element', 'fo:background-color', value]) + if name == 'backgroundimage': + tagline.append(['element', 'fo:background-color', 'transparent']) + # Additional tags added later + bgimagetag = ['tagline', 'style:background-image'] + bgimagetag.append(['element', 'xlink:href', value]) + bgimagetag.append(['element', 'xlink:type', 'simple']) + bgimagetag.append(['element', 'xlink:actuate', 'onLoad']) + tagline_additional.append(bgimagetag) + if name == 'valign': + if value in ['top', 'bottom', 'middle']: + tagline.append(['element', 'style:vertical-align', value]) + if name == 'halign': + tagline.append(['element', 'style:text-align-source', 'fix']) + if value in ['filled']: + tagline.append(['element', 'style:repeat-content', 'true']) + else: + tagline.append(['element', 'style:repeat-content', 'false']) + + # Add any additional internal tags + while tagline_additional: + tagadd = tagline_additional.pop(0) + tagline.append(tagadd) + + style_list.append(tagline) + + # Paragraph Properties + tagline = ['tagline', 'style:paragraph-properties'] + tagline_valid = False + for set in style_data: + name, value = set + if name == 'halign': + tagline_valid = True + if value in ['center']: + tagline.append(['element', 'fo:text-align', 'center']) + if value in ['end', 'right']: + tagline.append(['element', 'fo:text-align', 'end']) + if value in ['start', 'filled', 'left']: + tagline.append(['element', 'fo:text-align', 'start']) + if value in ['justify']: + tagline.append(['element', 'fo:text-align', 'justify']) + # Conditionally add the tagline + if tagline_valid: style_list.append(tagline) + + + # Text Properties + tagline = ['tagline', 'style:text-properties'] + for set in style_data: + name, value = set + if name == 'bold': + tagline.append(['element', 'fo:font-weight', 'bold']) + if name == 'italic': + tagline.append(['element', 'fo:font-style', 'italic']) + if name == 'underline': + tagline.append(['element', 'style:text-underline-style', 'solid']) + tagline.append(['element', 'style:text-underline-width', 'auto']) + tagline.append(['element', 'style:text-underline-color', 'font-color']) + if name == 'color': + tagline.append(['element', 'fo:color', value]) + if name == 'fontsize': + tagline.append(['element', 'fo:font-size', '%spt' % value]) + style_list.append(tagline) + + automatic_styles.append(style_list) + + + # Attach ta1 style + automatic_styles.append(['tag', 'style:style', + ['element', 'style:name', 'ta1'], + ['element', 'style:family', 'table'], + ['element', 'style:master-page-name', 'Default'], + ['tagline', 'style:table-properties', + ['element', 'table:display', 'true'], + ['element', 'style:writing-mode', 'lr-tb']]]) + + + return automatic_styles + + + +class CalcSheet: + "Calc Sheet Class - Used to keep track of the data for an individual sheet." + + def __init__(self, sheetname): + "Initialize a sheet" + self.sheet_name = sheetname + self.sheet_values = {} + self.sheet_config = {} + self.max_col = 0 + self.max_row = 0 + + def get_sheet_dimensions(self): + "Returns the max column and row" + return (self.max_col, self.max_row) + + def clean_formula(self, data): + "Returns a formula for use in ODF" + # Example Translations + # '=SUM(A1:A2)' + # datavalue = 'oooc:=SUM([.A1:.A2])' + # '=IF((A5>A4);A4;"")' + # datavalue = 'oooc:=IF(([.A5]>[.A4]);[.A4];"")' + data = str(data) + data = clean_string(data) + redata = re.search('^=([A-Z]+)(\(.*)$', data) + if redata: + # funct is the function name. The rest if the string will be the functArgs + funct = redata.group(1) + functArgs = redata.group(2) + # Search for cell lebels and replace them + reList = re.findall('([A-Z]+\d+)', functArgs) + # sort and keep track so we do not do a cell more than once + reList.sort() + lastVar = '' + while reList: + # Replace each cell label + curVar = reList.pop() + if curVar == lastVar: continue + lastVar = curVar + functArgs = functArgs.replace(curVar, '[.%s]' % curVar) + data = 'oooc:=%s%s' % (funct, functArgs) + return data + + def get_name(self): + "Returns the sheet name" + return self.sheet_name + + def set_name(self, sheetname): + "Resets the sheet name" + self.sheet_name = sheetname + + def get_sheet_values(self): + "Returns the sheet cell values" + return self.sheet_values + + def get_sheet_value(self, col, row): + "Get the value contents of a cell" + cell = (col, row) + if cell in self.sheet_values: + return self.sheet_values[cell] + else: + return None + + def get_sheet_config(self): + "Returns the sheet cell properties" + return self.sheet_config + + def set_sheet_config(self, location, style_code): + "Sets Style Code for a given location" + self.sheet_config[location] = style_code + + def set_sheet_value(self, cell, datatype, datavalue): + """Sets the value for a specific cell + + cell must be in the format (col, row) where row and col are int. + Example: B5 would be written as (2, 5) + datatype must be one of 'string', 'float', 'formula' + datavalue should be a string + """ + # Catch invalid data + if type(cell) != type(()) or len(cell) != 2: + print "Invalid Cell" + return + (col, row) = cell + if type(col) != type(1): + print "Invalid Cell" + return + if type(row) != type(1): + print "Invalid Cell" + return + # Fix String Data + if datatype in ['string', 'annotation']: + datavalue = clean_string(datavalue) + # Fix Link Data. Link's value is a tuple containing (url, description) + if (datatype == 'link'): + url = clean_string(datavalue[0]) + desc = clean_string(datavalue[1]) + datavalue = (url, desc) + # Fix Formula Data + if datatype == 'formula': + datavalue = self.clean_formula(datavalue) + # Adjust maximum sizes + if col > self.max_col: self.max_col = col + if row > self.max_row: self.max_row = row + datatype = str(datatype) + if (datatype not in ['string', 'float', 'formula', 'annotation', 'link']): + # Set all unknown cell types to string + datatype = 'string' + datavalue = str(datavalue) + + # The following lines are taken directly from HPS + # self.sheet_values[cell] = (datatype, datavalue) + # HPS: Cell content is now a list of tuples instead of a tuple + # While storing here, store the cell contents first and the annotation next. While generating the XML reverse this + contents = self.sheet_values.get(cell, {'annotation':None,'link':None, 'value':None}) + if datatype == 'annotation': + contents['annotation'] = (datatype, datavalue) + elif datatype == 'link': + contents['link'] = (datatype, datavalue) + else: + contents['value'] = (datatype, datavalue) + + self.sheet_values[cell] = contents + + + def get_lists(self): + "Returns nested lists for XML processing" + if (self.max_col == 0 and self.max_row == 0): + sheet_lists = ['tag', 'table:table', + ['element', 'table:name', self.sheet_name], # Set the Sheet Name + ['element', 'table:style-name', 'ta1'], + ['element', 'table:print', 'false'], + ['tagline', 'table:table-column', + ['element', 'table:style-name', 'co1'], + ['element', 'table:default-cell-style-name', 'Default']], + ['tag', 'table:table-row', + ['element', 'table:style-name', 'ro1'], + ['tagline', 'table:table-cell']]] + else: + # Base Information + sheet_lists = ['tag', 'table:table', + ['element', 'table:name', self.sheet_name], # Set the sheet name + ['element', 'table:style-name', 'ta1'], + ['element', 'table:print', 'false']] + +# ['tagline', 'table:table-column', +# ['element', 'table:style-name', 'co1'], +# ['element', 'table:number-columns-repeated', self.max_col], # max_col? '2' +# ['element', 'table:default-cell-style-name', 'Default']], + + # Need to add column information + for col in range(1, self.max_col+1): + location = ('col', col) + style_code = 'co1' + if location in self.sheet_config: + style_code = self.sheet_config[location] + sheet_lists.append(['tagline', 'table:table-column', + ['element', 'table:style-name', style_code], + ['element', 'table:default-cell-style-name', 'Default']]) + + + # Need to create each row + for row in range(1, self.max_row + 1): + location = ('row', row) + style_code = 'ro1' + if location in self.sheet_config: + style_code = self.sheet_config[location] + rowlist = ['tag', 'table:table-row', + ['element', 'table:style-name', style_code]] + for col in range(1, self.max_col + 1): + cell = (col, row) + style_code = 'ce1' # Default all cells to ce1 + if cell in self.sheet_config: + style_code = self.sheet_config[cell] # Lookup cell if available + if cell in self.sheet_values: + # (datatype, datavalue) = self.sheet_values[cell] # Marked for removal + collist = ['tag', 'table:table-cell'] + if style_code != 'ce1': + collist.append(['element', 'table:style-name', style_code]) + + # Contents, annotations, and links added by HPS + contents = self.sheet_values[cell] # cell contents is a dictionary + if contents['value']: + (datatype, datavalue) = contents['value'] + if datatype == 'float': + collist.append(['element', 'office:value-type', datatype]) + collist.append(['element', 'office:value', datavalue]) + + if datatype == 'string': + collist.append(['element', 'office:value-type', datatype]) + if datatype == 'formula': + collist.append(['element', 'table:formula', datavalue]) + collist.append(['element', 'office:value-type', 'float']) + collist.append(['element', 'office:value', '0']) + datavalue = '0' + else: + datavalue = None + + if contents['annotation']: + (annotype, annoval) = contents['annotation'] + collist.append(['tag', 'office:annotation', + ['tag', 'text:p', ['data', annoval]]]) + + if contents['link']: + (linktype, linkval) = contents['link'] + if datavalue: + collist.append(['tag', 'text:p', ['data', datavalue], + ['tag', 'text:a', ['element', 'xlink:href', linkval[0]], + ['data', linkval[1]]]]) + else: # no value; just fill the link + collist.append(['tag', 'text:p', + ['tag', 'text:a', ['element', 'xlink:href', linkval[0]], + ['data', linkval[1]]]]) + else: + if datavalue: + collist.append(['tag', 'text:p', ['data', datavalue]]) + + + + else: + collist = ['tagline', 'table:table-cell'] + rowlist.append(collist) + sheet_lists.append(rowlist) + return sheet_lists + +class Calc: + "Calc Class - Used to create OpenDocument Format Calc Spreadsheets." + def __init__(self, sheetname=None, opendoc=None, debug=False): + "Initialize ooolib Calc instance" + # Default to no debugging + self.debug = debug + if not sheetname: sheetname = "Sheet1" + self.sheets = [CalcSheet(sheetname)] # The main sheet will be initially called 'Sheet1' + self.sheet_index = 0 # We initially start on the first sheet + self.styles = CalcStyles() + self.meta = Meta('ods') + self.styles.get_style_code('column') # Force generation of default column + self.styles.get_style_code('row') # Force generation of default row + self.styles.get_style_code('table') # Force generation of default table + self.styles.get_style_code('cell') # Force generation of default cell + self.manifest_files = [] # List of extra files included + self.manifest_index = 1 # Index of added manifest files + + # Data Parsing + self.parser_element_list = [] + self.parser_element = "" + self.parser_sheet_num = 0 + self.parser_sheet_row = 0 + self.parser_sheet_column = 0 + self.parser_cell_repeats = 0 + self.parser_cell_string_pending = False + self.parser_cell_string_line = "" + + # See if we need to read a document + if opendoc: + # Verify that the document exists + if self.debug: print "Opening Document: %s" % opendoc + + # Okay, now we load the file + self.load(opendoc) + + def debug_level(self, level): + """Set debug level: + True if you want debugging messages + False if you do not. + """ + self.debug = level + + def file_mimetype(self, filename): + "Determine the filetype from the filename" + parts = filename.lower().split('.') + ext = parts[-1] + if (ext == 'png'): return (ext, "image/png") + if (ext == 'gif'): return (ext, "image/gif") + return (ext, "image/unknown") + + def add_file(self, filename): + """Prepare a file for loading into ooolib + + The filename should be the local filesystem name for + the file. The file is then prepared to be included in + the creation of the final document. The file needs to + remain in place so that it is available when the actual + document creation happens. + """ + # mimetype set to (ext, filetype) + mimetype = self.file_mimetype(filename) + newname = "Pictures/%08d.%s" % (self.manifest_index, mimetype[0]) + self.manifest_index += 1 + filetype = mimetype[1] + self.manifest_files.append((filename, filetype, newname)) + return newname + + def set_meta(self, metaname, value): + "Set meta data in your document." + self.meta.set_meta(metaname, value) + + def get_meta_value(self, metaname): + "Get meta data value for a given metaname" + return self.meta.get_meta_value(metaname) + + def get_sheet_name(self): + "Returns the sheet name" + return self.sheets[self.sheet_index].get_name() + + def get_sheet_dimensions(self): + "Returns the sheet dimensions in (cols, rows)" + return self.sheets[self.sheet_index].get_sheet_dimensions() + + def set_column_property(self, column, name, value): + "Set Column Properties" + if name == 'width': + # column number column needs column-width set to value + self.styles.set_property('column', 'style:column-width', value) + style_code = self.styles.get_style_code('column') + self.sheets[self.sheet_index].set_sheet_config(('col', column), style_code) + + def set_row_property(self, row, name, value): + "Set row Properties" + if name == 'height': + # row number row needs row-height set to value + self.styles.set_property('row', 'style:row-height', value) + style_code = self.styles.get_style_code('row') + self.sheets[self.sheet_index].set_sheet_config(('row', row), style_code) + + def set_cell_property(self, name, value): + """Turn and off cell properties + + Actual application of properties is handled by setting a value.""" + # background images need to be handled a little differently + # because they need to also be inserted into the final document + if (name == 'backgroundimage'): + # Add file and modify value + value = self.add_file(value) + self.styles.set_property('cell', name, value) + + def get_sheet_index(self): + "Return the current sheet index number" + return self.sheet_index + + def set_sheet_index(self, index): + "Set the sheet index" + if type(index) == type(1): + if index >= 0 and index < len(self.sheets): + self.sheet_index = index + return self.sheet_index + + def get_sheet_count(self): + "Returns the number of existing sheets" + return len(self.sheets) + + def new_sheet(self, sheetname): + "Create a new sheet" + self.sheet_index = len(self.sheets) + self.sheets.append(CalcSheet(sheetname)) + return self.sheet_index + + def set_cell_value(self, col, row, datatype, value): + "Set the value for a given cell" + self.sheets[self.sheet_index].set_sheet_value((col, row), datatype, value) + style_code = self.styles.get_style_code('cell') + self.sheets[self.sheet_index].set_sheet_config((col, row), style_code) + + def get_cell_value(self, col, row): + "Get a cell value tuple (type, value) for a given cell" + sheetvalue = self.sheets[self.sheet_index].get_sheet_value(col, row) + # We stop here if there is no value for sheetvalue + if sheetvalue == None: return sheetvalue + # Now check to see if we have a value tuple + if 'value' in sheetvalue: + return sheetvalue['value'] + else: + return None + + def load(self, filename): + """Load .ods spreadsheet. + + The load function loads data from a document into the current cells. + """ + # Read in the important files + + # meta.xml + data = self._zip_read(filename, "meta.xml") + self.meta.meta_parse(data) + + # content.xml + data = self._zip_read(filename, "content.xml") + self.content_parse(data) + + # settings.xml - I do not remember putting anything here + # styles.xml - I do not remember putting anything here + + def parse_content_start_element(self, name, attrs): + if self.debug: print '* Start element:', name + self.parser_element_list.append(name) + self.parser_element = self.parser_element_list[-1] + + # Keep track of the current sheet number + if (self.parser_element == 'table:table'): + # Move to starting cell + self.parser_sheet_row = 0 + self.parser_sheet_column = 0 + # Increment the sheet number count + self.parser_sheet_num += 1 + if (self.parser_sheet_num - 1 != self.sheet_index): + # We are not on the first sheet and need to create a new sheet. + # We will automatically move to the new sheet + sheetname = "Sheet%d" % self.parser_sheet_num + if 'table:name' in attrs: sheetname = attrs['table:name'] + self.new_sheet(sheetname) + else: + # We are on the first sheet and will need to overwrite the default name + sheetname = "Sheet%d" % self.parser_sheet_num + if 'table:name' in attrs: sheetname = attrs['table:name'] + self.sheets[self.sheet_index].set_name(sheetname) + + # Update the row numbers + if (self.parser_element == 'table:table-row'): + self.parser_sheet_row += 1 + self.parser_sheet_column = 0 + + # Okay, now keep track of the sheet cell data + if (self.parser_element == 'table:table-cell'): + # By default it will repeat zero times + self.parser_cell_repeats = 0 + # We must be in a new column + self.parser_sheet_column += 1 + # Set some default values + datatype = "" + value = "" + # Get values from attrs hash + if 'office:value-type' in attrs: datatype = attrs['office:value-type'] + if 'office:value' in attrs: value = attrs['office:value'] + if 'table:formula' in attrs: + datatype = 'formula' + value = attrs['table:formula'] + if datatype == 'string': + datatype = "" + self.parser_cell_string_pending = True + self.parser_cell_string_line = "" + if 'table:number-columns-repeated' in attrs: + self.parser_cell_repeats = int(attrs['table:number-columns-repeated']) - 1 + # Set the cell value + if datatype: + # I should do this once per cell repeat above 0 + for i in range(0, self.parser_cell_repeats+1): + self.set_cell_value(self.parser_sheet_column+i, self.parser_sheet_row, datatype, value) + + # There are lots of interesting cases with table:table-cell data. One problem is + # reading the number of embedded spaces correctly. This code should help us get + # the number of spaces out. + + if (self.parser_element == 'text:s'): + # This means we have a number of spaces + count_num = 0 + if 'text:c' in attrs: + count_alpha = attrs['text:c'] + if (count_alpha.isdigit()): + count_num = int(count_alpha) + # I am not sure what to do if we do not have a string pending + if (self.parser_cell_string_pending == True): + # Append the currect number of spaces to the end + self.parser_cell_string_line = "%s%s" % (self.parser_cell_string_line, ' '*count_num) + + if (self.parser_element == 'text:tab-stop'): + if (self.parser_cell_string_pending == True): + self.parser_cell_string_line = "%s\t" % (self.parser_cell_string_line) + + if (self.parser_element == 'text:line-break'): + if (self.parser_cell_string_pending == True): + self.parser_cell_string_line = "%s\n" % (self.parser_cell_string_line) + + # Debugging statements + if self.debug: print " List: ", self.parser_element_list + if self.debug: print " Attributes: ", attrs + + + def parse_content_end_element(self, name): + if self.debug: print '* End element:', name + if name != self.parser_element: + print "Tag Mismatch: '%s' != '%s'" % (name, self.parser_element) + self.parser_element_list.pop() + + # If the element was text:p and we are in string mode + if (self.parser_element == 'text:p'): + if (self.parser_cell_string_pending): + self.parser_cell_string_pending = False + + # Take care of repeated cells + if (self.parser_element == 'table:table-cell'): + self.parser_sheet_column += self.parser_cell_repeats + + # Readjust parser_element_list and parser_element + if (self.parser_element_list): + self.parser_element = self.parser_element_list[-1] + else: + self.parser_element = "" + + def parse_content_char_data(self, data): + if self.debug: print " Character data: ", repr(data) + + if (self.parser_element == 'text:p' or self.parser_element == 'text:span'): + if (self.parser_cell_string_pending): + # Set the string and leave string pending mode + # This does feel a little kludgy, but it does the job + self.parser_cell_string_line = "%s%s" % (self.parser_cell_string_line, data) + + # I should do this once per cell repeat above 0 + for i in range(0, self.parser_cell_repeats+1): + self.set_cell_value(self.parser_sheet_column+i, self.parser_sheet_row, + 'string', self.parser_cell_string_line) + + + def content_parse(self, data): + "Parse Content Data from a content.xml file" + + # Debugging statements + if self.debug: + # Sometimes it helps to see the document that was read from + print data + print "\n\n\n" + + # Create parser + parser = xml.parsers.expat.ParserCreate() + # Set up parser callback functions + parser.StartElementHandler = self.parse_content_start_element + parser.EndElementHandler = self.parse_content_end_element + parser.CharacterDataHandler = self.parse_content_char_data + + # Actually parse the data + parser.Parse(data, 1) + + def save(self, filename): + """Save .ods spreadsheet. + + The save function saves the current cells and settings into a document. + """ + if self.debug: print "Writing %s" % filename + self.savefile = zipfile.ZipFile(filename, "w") + if self.debug: print " meta.xml" + self._zip_insert(self.savefile, "meta.xml", self.meta.get_meta()) + if self.debug: print " mimetype" + self._zip_insert(self.savefile, "mimetype", "application/vnd.oasis.opendocument.spreadsheet") + if self.debug: print " Configurations2/accelerator/current.xml" + self._zip_insert(self.savefile, "Configurations2/accelerator/current.xml", "") + if self.debug: print " META-INF/manifest.xml" + self._zip_insert(self.savefile, "META-INF/manifest.xml", self._ods_manifest()) + if self.debug: print " content.xml" + self._zip_insert(self.savefile, "content.xml", self._ods_content()) + if self.debug: print " settings.xml" + self._zip_insert(self.savefile, "settings.xml", self._ods_settings()) + if self.debug: print " styles.xml" + self._zip_insert(self.savefile, "styles.xml", self._ods_styles()) + + # Add additional files if needed + for fileset in self.manifest_files: + (filename, filetype, newname) = fileset + # Read in the file + data = self._file_load(filename) + if self.debug: print " Inserting '%s' as '%s'" % (filename, newname) + self._zip_insert_binary(self.savefile, newname, data) + + def _file_load(self, filename): + "Load a file" + file = open(filename, "rb") + data = file.read() + file.close() + return data + + def _zip_insert_binary(self, file, filename, data): + "Insert a binary file into the zip archive" + now = time.localtime(time.time())[:6] + info = zipfile.ZipInfo(filename) + info.date_time = now + info.compress_type = zipfile.ZIP_DEFLATED + file.writestr(info, data) + + + def _zip_insert(self, file, filename, data): + "Insert a file into the zip archive" + + # zip seems to struggle with non-ascii characters + data = data.encode('utf-8') + + now = time.localtime(time.time())[:6] + info = zipfile.ZipInfo(filename) + info.date_time = now + info.compress_type = zipfile.ZIP_DEFLATED + file.writestr(info, data) + + def _zip_read(self, file, filename): + "Get the data from a file in the zip archive by filename" + file = zipfile.ZipFile(file, "r") + data = file.read(filename) + # Need to close the file + file.close() + return data + + def _ods_content(self): + "Generate ods content.xml data" + + # This will list all of the sheets in the document + self.sheetdata = ['tag', 'office:spreadsheet'] + for sheet in self.sheets: + if self.debug: + sheet_name = sheet.get_name() + print " Creating Sheet '%s'" % sheet_name + sheet_list = sheet.get_lists() + self.sheetdata.append(sheet_list) + # Automatic Styles + self.automatic_styles = self.styles.get_automatic_styles() + + self.data = ['tag', 'office:document-content', + ['element', 'xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'], + ['element', 'xmlns:style', 'urn:oasis:names:tc:opendocument:xmlns:style:1.0'], + ['element', 'xmlns:text', 'urn:oasis:names:tc:opendocument:xmlns:text:1.0'], + ['element', 'xmlns:table', 'urn:oasis:names:tc:opendocument:xmlns:table:1.0'], + ['element', 'xmlns:draw', 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0'], + ['element', 'xmlns:fo', 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0'], + ['element', 'xmlns:xlink', 'http://www.w3.org/1999/xlink'], + ['element', 'xmlns:dc', 'http://purl.org/dc/elements/1.1/'], + ['element', 'xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'], + ['element', 'xmlns:number', 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0'], + ['element', 'xmlns:svg', 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'], + ['element', 'xmlns:chart', 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0'], + ['element', 'xmlns:dr3d', 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0'], + ['element', 'xmlns:math', 'http://www.w3.org/1998/Math/MathML'], + ['element', 'xmlns:form', 'urn:oasis:names:tc:opendocument:xmlns:form:1.0'], + ['element', 'xmlns:script', 'urn:oasis:names:tc:opendocument:xmlns:script:1.0'], + ['element', 'xmlns:ooo', 'http://openoffice.org/2004/office'], + ['element', 'xmlns:ooow', 'http://openoffice.org/2004/writer'], + ['element', 'xmlns:oooc', 'http://openoffice.org/2004/calc'], + ['element', 'xmlns:dom', 'http://www.w3.org/2001/xml-events'], + ['element', 'xmlns:xforms', 'http://www.w3.org/2002/xforms'], + ['element', 'xmlns:xsd', 'http://www.w3.org/2001/XMLSchema'], + ['element', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'], + ['element', 'office:version', '1.0'], + ['tagline', 'office:scripts'], + ['tag', 'office:font-face-decls', + ['tagline', 'style:font-face', + ['element', 'style:name', 'DejaVu Sans'], + ['element', 'svg:font-family', ''DejaVu Sans''], + ['element', 'style:font-pitch', 'variable']], + ['tagline', 'style:font-face', + ['element', 'style:name', 'Nimbus Sans L'], + ['element', 'svg:font-family', ''Nimbus Sans L''], + ['element', 'style:font-family-generic', 'swiss'], + ['element', 'style:font-pitch', 'variable']]], + + # Automatic Styles + self.automatic_styles, + + ['tag', 'office:body', + self.sheetdata]] # Sheets are generated from the CalcSheet class + + # Generate content.xml XML data + xml = XML() + self.lines = xml.convert(self.data) + self.filedata = '\n'.join(self.lines) + # Return generated data + return self.filedata + + def _ods_manifest(self): + "Generate ods manifest.xml data" + self.data = ['tag', 'manifest:manifest', + ['element', 'xmlns:manifest', 'urn:oasis:names:tc:opendocument:xmlns:manifest:1.0'], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'application/vnd.oasis.opendocument.spreadsheet'], + ['element', 'manifest:full-path', '/']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'application/vnd.sun.xml.ui.configuration'], + ['element', 'manifest:full-path', 'Configurations2/']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', ''], + ['element', 'manifest:full-path', 'Configurations2/accelerator/']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', ''], + ['element', 'manifest:full-path', 'Configurations2/accelerator/current.xml']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'text/xml'], + ['element', 'manifest:full-path', 'content.xml']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'text/xml'], + ['element', 'manifest:full-path', 'styles.xml']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'text/xml'], + ['element', 'manifest:full-path', 'meta.xml']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'text/xml'], + ['element', 'manifest:full-path', 'settings.xml']]] + + # Add additional files to manifest list + for fileset in self.manifest_files: + (filename, filetype, newname) = fileset + addfile = ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', filetype], + ['element', 'manifest:full-path', newname]] + self.data.append(addfile) + + # Generate content.xml XML data + xml = XML() + self.lines = xml.convert(self.data) + self.filedata = '\n'.join(self.lines) + # Return generated data + return self.filedata + + + def _ods_settings(self): + "Generate ods settings.xml data" + self.data = ['tag', 'office:document-settings', + ['element', 'xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'], + ['element', 'xmlns:xlink', 'http://www.w3.org/1999/xlink'], + ['element', 'xmlns:config', 'urn:oasis:names:tc:opendocument:xmlns:config:1.0'], + ['element', 'xmlns:ooo', 'http://openoffice.org/2004/office'], + ['element', 'office:version', '1.0'], + ['tag', 'office:settings', + ['tag', 'config:config-item-set', + ['element', 'config:name', 'ooo:view-settings'], + ['tag', 'config:config-item', + ['element', 'config:name', 'VisibleAreaTop'], + ['element', 'config:type', 'int'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'VisibleAreaLeft'], + ['element', 'config:type', 'int'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'VisibleAreaWidth'], + ['element', 'config:type', 'int'], + ['data', '6774']], + ['tag', 'config:config-item', + ['element', 'config:name', 'VisibleAreaHeight'], + ['element', 'config:type', 'int'], + ['data', '2389']], + ['tag', 'config:config-item-map-indexed', + ['element', 'config:name', 'Views'], + ['tag', 'config:config-item-map-entry', + ['tag', 'config:config-item', + ['element', 'config:name', 'ViewId'], + ['element', 'config:type', 'string'], + ['data', 'View1']], + ['tag', 'config:config-item-map-named', + ['element', 'config:name', 'Tables'], + ['tag', 'config:config-item-map-entry', + ['element', 'config:name', 'Sheet1'], + ['tag', 'config:config-item', + ['element', 'config:name', 'CursorPositionX'], # Cursor Position A + ['element', 'config:type', 'int'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'CursorPositionY'], # Cursor Position 1 + ['element', 'config:type', 'int'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'HorizontalSplitMode'], + ['element', 'config:type', 'short'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'VerticalSplitMode'], + ['element', 'config:type', 'short'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'HorizontalSplitPosition'], + ['element', 'config:type', 'int'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'VerticalSplitPosition'], + ['element', 'config:type', 'int'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ActiveSplitRange'], + ['element', 'config:type', 'short'], + ['data', '2']], + ['tag', 'config:config-item', + ['element', 'config:name', 'PositionLeft'], + ['element', 'config:type', 'int'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'PositionRight'], + ['element', 'config:type', 'int'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'PositionTop'], + ['element', 'config:type', 'int'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'PositionBottom'], + ['element', 'config:type', 'int'], + ['data', '0']]]], + ['tag', 'config:config-item', + ['element', 'config:name', 'ActiveTable'], + ['element', 'config:type', 'string'], + ['data', 'Sheet1']], + ['tag', 'config:config-item', + ['element', 'config:name', 'HorizontalScrollbarWidth'], + ['element', 'config:type', 'int'], + ['data', '270']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ZoomType'], + ['element', 'config:type', 'short'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ZoomValue'], + ['element', 'config:type', 'int'], + ['data', '100']], + ['tag', 'config:config-item', + ['element', 'config:name', 'PageViewZoomValue'], + ['element', 'config:type', 'int'], + ['data', '60']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ShowPageBreakPreview'], + ['element', 'config:type', 'boolean'], + ['data', 'false']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ShowZeroValues'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ShowNotes'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ShowGrid'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'GridColor'], + ['element', 'config:type', 'long'], + ['data', '12632256']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ShowPageBreaks'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'HasColumnRowHeaders'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'HasSheetTabs'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'IsOutlineSymbolsSet'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'IsSnapToRaster'], + ['element', 'config:type', 'boolean'], + ['data', 'false']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterIsVisible'], + ['element', 'config:type', 'boolean'], + ['data', 'false']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterResolutionX'], + ['element', 'config:type', 'int'], + ['data', '1270']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterResolutionY'], + ['element', 'config:type', 'int'], + ['data', '1270']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterSubdivisionX'], + ['element', 'config:type', 'int'], + ['data', '1']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterSubdivisionY'], + ['element', 'config:type', 'int'], + ['data', '1']], + ['tag', 'config:config-item', + ['element', 'config:name', 'IsRasterAxisSynchronized'], + ['element', 'config:type', 'boolean'], + ['data', 'true']]]]], + ['tag', 'config:config-item-set', + ['element', 'config:name', 'ooo:configuration-settings'], + ['tag', 'config:config-item', + ['element', 'config:name', 'ShowZeroValues'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ShowNotes'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ShowGrid'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'GridColor'], + ['element', 'config:type', 'long'], + ['data', '12632256']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ShowPageBreaks'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'LinkUpdateMode'], + ['element', 'config:type', 'short'], + ['data', '3']], + ['tag', 'config:config-item', + ['element', 'config:name', 'HasColumnRowHeaders'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'HasSheetTabs'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'IsOutlineSymbolsSet'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'IsSnapToRaster'], + ['element', 'config:type', 'boolean'], + ['data', 'false']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterIsVisible'], + ['element', 'config:type', 'boolean'], + ['data', 'false']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterResolutionX'], + ['element', 'config:type', 'int'], + ['data', '1270']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterResolutionY'], + ['element', 'config:type', 'int'], + ['data', '1270']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterSubdivisionX'], + ['element', 'config:type', 'int'], + ['data', '1']], + ['tag', 'config:config-item', + ['element', 'config:name', 'RasterSubdivisionY'], + ['element', 'config:type', 'int'], + ['data', '1']], + ['tag', 'config:config-item', + ['element', 'config:name', 'IsRasterAxisSynchronized'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'AutoCalculate'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'PrinterName'], + ['element', 'config:type', 'string'], + ['data', 'Generic Printer']], + ['tag', 'config:config-item', + ['element', 'config:name', 'PrinterSetup'], + ['element', 'config:type', 'base64Binary'], + ['data', 'YgH+/0dlbmVyaWMgUHJpbnRlcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0dFTlBSVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAqAAAAAAA//8FAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCnNjYWxlPTEwMAptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkxldHRlcgAA']], + ['tag', 'config:config-item', + ['element', 'config:name', 'ApplyUserData'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'CharacterCompressionType'], + ['element', 'config:type', 'short'], + ['data', '0']], + ['tag', 'config:config-item', + ['element', 'config:name', 'IsKernAsianPunctuation'], + ['element', 'config:type', 'boolean'], + ['data', 'false']], + ['tag', 'config:config-item', + ['element', 'config:name', 'SaveVersionOnClose'], + ['element', 'config:type', 'boolean'], + ['data', 'false']], + ['tag', 'config:config-item', + ['element', 'config:name', 'UpdateFromTemplate'], + ['element', 'config:type', 'boolean'], + ['data', 'false']], + ['tag', 'config:config-item', + ['element', 'config:name', 'AllowPrintJobCancel'], + ['element', 'config:type', 'boolean'], + ['data', 'true']], + ['tag', 'config:config-item', + ['element', 'config:name', 'LoadReadonly'], + ['element', 'config:type', 'boolean'], + ['data', 'false']]]]] + + # Generate content.xml XML data + xml = XML() + self.lines = xml.convert(self.data) + self.filedata = '\n'.join(self.lines) + # Return generated data + return self.filedata + + + def _ods_styles(self): + "Generate ods styles.xml data" + self.data = ['tag', 'office:document-styles', + ['element', 'xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'], + ['element', 'xmlns:style', 'urn:oasis:names:tc:opendocument:xmlns:style:1.0'], + ['element', 'xmlns:text', 'urn:oasis:names:tc:opendocument:xmlns:text:1.0'], + ['element', 'xmlns:table', 'urn:oasis:names:tc:opendocument:xmlns:table:1.0'], + ['element', 'xmlns:draw', 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0'], + ['element', 'xmlns:fo', 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0'], + ['element', 'xmlns:xlink', 'http://www.w3.org/1999/xlink'], + ['element', 'xmlns:dc', 'http://purl.org/dc/elements/1.1/'], + ['element', 'xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'], + ['element', 'xmlns:number', 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0'], + ['element', 'xmlns:svg', 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'], + ['element', 'xmlns:chart', 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0'], + ['element', 'xmlns:dr3d', 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0'], + ['element', 'xmlns:math', 'http://www.w3.org/1998/Math/MathML'], + ['element', 'xmlns:form', 'urn:oasis:names:tc:opendocument:xmlns:form:1.0'], + ['element', 'xmlns:script', 'urn:oasis:names:tc:opendocument:xmlns:script:1.0'], + ['element', 'xmlns:ooo', 'http://openoffice.org/2004/office'], + ['element', 'xmlns:ooow', 'http://openoffice.org/2004/writer'], + ['element', 'xmlns:oooc', 'http://openoffice.org/2004/calc'], + ['element', 'xmlns:dom', 'http://www.w3.org/2001/xml-events'], + ['element', 'office:version', '1.0'], + ['tag', 'office:font-face-decls', + ['tagline', 'style:font-face', + ['element', 'style:name', 'DejaVu Sans'], + ['element', 'svg:font-family', ''DejaVu Sans''], + ['element', 'style:font-pitch', 'variable']], + ['tagline', 'style:font-face', + ['element', 'style:name', 'Nimbus Sans L'], + ['element', 'svg:font-family', ''Nimbus Sans L''], + ['element', 'style:font-family-generic', 'swiss'], + ['element', 'style:font-pitch', 'variable']]], + ['tag', 'office:styles', + ['tag', 'style:default-style', + ['element', 'style:family', 'table-cell'], + ['tagline', 'style:table-cell-properties', + ['element', 'style:decimal-places', '2']], + ['tagline', 'style:paragraph-properties', + ['element', 'style:tab-stop-distance', '0.5in']], + ['tagline', 'style:text-properties', + ['element', 'style:font-name', 'Nimbus Sans L'], + ['element', 'fo:language', 'en'], + ['element', 'fo:country', 'US'], + ['element', 'style:font-name-asian', 'DejaVu Sans'], + ['element', 'style:language-asian', 'none'], + ['element', 'style:country-asian', 'none'], + ['element', 'style:font-name-complex', 'DejaVu Sans'], + ['element', 'style:language-complex', 'none'], + ['element', 'style:country-complex', 'none']]], + ['tag', 'number:number-style', + ['element', 'style:name', 'N0'], + ['tagline', 'number:number', + ['element', 'number:min-integer-digits', '1']]], + ['tag', 'number:currency-style', + ['element', 'style:name', 'N104P0'], + ['element', 'style:volatile', 'true'], + ['tag', 'number:currency-symbol', + ['element', 'number:language', 'en'], + ['element', 'number:country', 'US'], + ['data', '$']], + ['tagline', 'number:number', + ['element', 'number:decimal-places', '2'], + ['element', 'number:min-integer-digits', '1'], + ['element', 'number:grouping', 'true']]], + ['tag', 'number:currency-style', + ['element', 'style:name', 'N104'], + ['tagline', 'style:text-properties', + ['element', 'fo:color', '#ff0000']], + ['tag', 'number:text', + ['data', '-']], + ['tag', 'number:currency-symbol', + ['element', 'number:language', 'en'], + ['element', 'number:country', 'US'], + ['data', '$']], + ['tagline', 'number:number', + ['element', 'number:decimal-places', '2'], + ['element', 'number:min-integer-digits', '1'], + ['element', 'number:grouping', 'true']], + ['tagline', 'style:map', + ['element', 'style:condition', 'value()>=0'], + ['element', 'style:apply-style-name', 'N104P0']]], + ['tagline', 'style:style', + ['element', 'style:name', 'Default'], + ['element', 'style:family', 'table-cell']], + ['tag', 'style:style', + ['element', 'style:name', 'Result'], + ['element', 'style:family', 'table-cell'], + ['element', 'style:parent-style-name', 'Default'], + ['tagline', 'style:text-properties', + ['element', 'fo:font-style', 'italic'], + ['element', 'style:text-underline-style', 'solid'], + ['element', 'style:text-underline-width', 'auto'], + ['element', 'style:text-underline-color', 'font-color'], + ['element', 'fo:font-weight', 'bold']]], + ['tagline', 'style:style', + ['element', 'style:name', 'Result2'], + ['element', 'style:family', 'table-cell'], + ['element', 'style:parent-style-name', 'Result'], + ['element', 'style:data-style-name', 'N104']], + ['tag', 'style:style', + ['element', 'style:name', 'Heading'], + ['element', 'style:family', 'table-cell'], + ['element', 'style:parent-style-name', 'Default'], + ['tagline', 'style:table-cell-properties', + ['element', 'style:text-align-source', 'fix'], + ['element', 'style:repeat-content', 'false']], + ['tagline', 'style:paragraph-properties', + ['element', 'fo:text-align', 'center']], + ['tagline', 'style:text-properties', + ['element', 'fo:font-size', '16pt'], + ['element', 'fo:font-style', 'italic'], + ['element', 'fo:font-weight', 'bold']]], + ['tag', 'style:style', + ['element', 'style:name', 'Heading1'], + ['element', 'style:family', 'table-cell'], + ['element', 'style:parent-style-name', 'Heading'], + ['tagline', 'style:table-cell-properties', + ['element', 'style:rotation-angle', '90']]]], + ['tag', 'office:automatic-styles', + ['tag', 'style:page-layout', + ['element', 'style:name', 'pm1'], + ['tagline', 'style:page-layout-properties', + ['element', 'style:writing-mode', 'lr-tb']], + ['tag', 'style:header-style', + ['tagline', 'style:header-footer-properties', + ['element', 'fo:min-height', '0.2957in'], + ['element', 'fo:margin-left', '0in'], + ['element', 'fo:margin-right', '0in'], + ['element', 'fo:margin-bottom', '0.0984in']]], + ['tag', 'style:footer-style', + ['tagline', 'style:header-footer-properties', + ['element', 'fo:min-height', '0.2957in'], + ['element', 'fo:margin-left', '0in'], + ['element', 'fo:margin-right', '0in'], + ['element', 'fo:margin-top', '0.0984in']]]], + ['tag', 'style:page-layout', + ['element', 'style:name', 'pm2'], + ['tagline', 'style:page-layout-properties', + ['element', 'style:writing-mode', 'lr-tb']], + ['tag', 'style:header-style', + ['tag', 'style:header-footer-properties', + ['element', 'fo:min-height', '0.2957in'], + ['element', 'fo:margin-left', '0in'], + ['element', 'fo:margin-right', '0in'], + ['element', 'fo:margin-bottom', '0.0984in'], + ['element', 'fo:border', '0.0346in solid #000000'], + ['element', 'fo:padding', '0.0071in'], + ['element', 'fo:background-color', '#c0c0c0'], + ['tagline', 'style:background-image']]], + ['tag', 'style:footer-style', + ['tag', 'style:header-footer-properties', + ['element', 'fo:min-height', '0.2957in'], + ['element', 'fo:margin-left', '0in'], + ['element', 'fo:margin-right', '0in'], + ['element', 'fo:margin-top', '0.0984in'], + ['element', 'fo:border', '0.0346in solid #000000'], + ['element', 'fo:padding', '0.0071in'], + ['element', 'fo:background-color', '#c0c0c0'], + ['tagline', 'style:background-image']]]]], + ['tag', 'office:master-styles', + ['tag', 'style:master-page', + ['element', 'style:name', 'Default'], + ['element', 'style:page-layout-name', 'pm1'], + ['tag', 'style:header', + ['tag', 'text:p', + ['data', '???']]], + ['tagline', 'style:header-left', + ['element', 'style:display', 'false']], + ['tag', 'style:footer', + ['tag', 'text:p', + ['data', 'Page 1']]], + ['tagline', 'style:footer-left', + ['element', 'style:display', 'false']]], + ['tag', 'style:master-page', + ['element', 'style:name', 'Report'], + ['element', 'style:page-layout-name', 'pm2'], + ['tag', 'style:header', + ['tag', 'style:region-left', + ['tag', 'text:p', + ['data', '??? (???)']]], + ['tag', 'style:region-right', + ['tag', 'text:p', + ['data', '09/29/2006, 13:02:56']]]], + ['tagline', 'style:header-left', + ['element', 'style:display', 'false']], + ['tag', 'style:footer', + ['tag', 'text:p', + ['data', 'Page 1 / 99']]], + ['tagline', 'style:footer-left', + ['element', 'style:display', 'false']]]]] + + + # Generate content.xml XML data + xml = XML() + self.lines = xml.convert(self.data) + self.filedata = '\n'.join(self.lines) + # Return generated data + return self.filedata + +class Writer: + "Writer Class - Used to create OpenDocument Format Writer Documents." + def __init__(self): + "Initialize ooolib Writer instance" + # Default to no debugging + self.debug = False + self.meta = Meta('odt') + + def set_meta(self, metaname, value): + "Set meta data in your document." + self.meta.set_meta(metaname, value) + + def save(self, filename): + """Save .odt document + + The save function saves the current .odt document. + """ + if self.debug: print "Writing %s" % filename + self.savefile = zipfile.ZipFile(filename, "w") + if self.debug: print " meta.xml" + self._zip_insert(self.savefile, "meta.xml", self.meta.get_meta()) + if self.debug: print " mimetype" + self._zip_insert(self.savefile, "mimetype", "application/vnd.oasis.opendocument.text") + if self.debug: print " META-INF/manifest.xml" + self._zip_insert(self.savefile, "META-INF/manifest.xml", self._odt_manifest()) + if self.debug: print " content.xml" + self._zip_insert(self.savefile, "content.xml", self._odt_content()) + if self.debug: print " settings.xml" + # self._zip_insert(self.savefile, "settings.xml", self._odt_settings()) + if self.debug: print " styles.xml" + # self._zip_insert(self.savefile, "styles.xml", self._odt_styles()) + + # We need to close the file now that we are done creating it. + self.savefile.close() + + def _zip_insert(self, file, filename, data): + now = time.localtime(time.time())[:6] + info = zipfile.ZipInfo(filename) + info.date_time = now + info.compress_type = zipfile.ZIP_DEFLATED + file.writestr(info, data) + + def _odt_manifest(self): + "Generate odt manifest.xml data" + + self.data = ['tag', 'manifest:manifest', + ['element', 'xmlns:manifest', 'urn:oasis:names:tc:opendocument:xmlns:manifest:1.0'], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'application/vnd.oasis.opendocument.text'], + ['element', 'manifest:full-path', '/']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'text/xml'], + ['element', 'manifest:full-path', 'content.xml']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'text/xml'], + ['element', 'manifest:full-path', 'styles.xml']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'text/xml'], + ['element', 'manifest:full-path', 'meta.xml']], + ['tagline', 'manifest:file-entry', + ['element', 'manifest:media-type', 'text/xml'], + ['element', 'manifest:full-path', 'settings.xml']]] + + # Generate content.xml XML data + xml = XML() + self.lines = xml.convert(self.data) + self.lines.insert(1, '') + self.filedata = '\n'.join(self.lines) + # Return generated data + return self.filedata + + def _odt_content(self): + "Generate odt content.xml data" + + self.data = ['tag', 'office:document-content', + ['element', 'xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'], + ['element', 'xmlns:style', 'urn:oasis:names:tc:opendocument:xmlns:style:1.0'], + ['element', 'xmlns:text', 'urn:oasis:names:tc:opendocument:xmlns:text:1.0'], + ['element', 'xmlns:table', 'urn:oasis:names:tc:opendocument:xmlns:table:1.0'], + ['element', 'xmlns:draw', 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0'], + ['element', 'xmlns:fo', 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0'], + ['element', 'xmlns:xlink', 'http://www.w3.org/1999/xlink'], + ['element', 'xmlns:dc', 'http://purl.org/dc/elements/1.1/'], + ['element', 'xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'], + ['element', 'xmlns:number', 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0'], + ['element', 'xmlns:svg', 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'], + ['element', 'xmlns:chart', 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0'], + ['element', 'xmlns:dr3d', 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0'], + ['element', 'xmlns:math', 'http://www.w3.org/1998/Math/MathML'], + ['element', 'xmlns:form', 'urn:oasis:names:tc:opendocument:xmlns:form:1.0'], + ['element', 'xmlns:script', 'urn:oasis:names:tc:opendocument:xmlns:script:1.0'], + ['element', 'xmlns:ooo', 'http://openoffice.org/2004/office'], + ['element', 'xmlns:ooow', 'http://openoffice.org/2004/writer'], + ['element', 'xmlns:oooc', 'http://openoffice.org/2004/calc'], + ['element', 'xmlns:dom', 'http://www.w3.org/2001/xml-events'], + ['element', 'xmlns:xforms', 'http://www.w3.org/2002/xforms'], + ['element', 'xmlns:xsd', 'http://www.w3.org/2001/XMLSchema'], + ['element', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'], + ['element', 'office:version', '1.0'], + ['tagline', 'office:scripts'], + ['tag', 'office:font-face-decls', + ['tagline', 'style:font-face', + ['element', 'style:name', 'DejaVu Sans'], + ['element', 'svg:font-family', ''DejaVu Sans''], + ['element', 'style:font-pitch', 'variable']], + ['tagline', 'style:font-face', + ['element', 'style:name', 'Nimbus Roman No9 L'], + ['element', 'svg:font-family', ''Nimbus Roman No9 L''], + ['element', 'style:font-family-generic', 'roman'], + ['element', 'style:font-pitch', 'variable']], + ['tagline', 'style:font-face', + ['element', 'style:name', 'Nimbus Sans L'], + ['element', 'svg:font-family', ''Nimbus Sans L''], + ['element', 'style:font-family-generic', 'swiss'], + ['element', 'style:font-pitch', 'variable']]], + ['tagline', 'office:automatic-styles'], + ['tag', 'office:body', + ['tag', 'office:text', + ['tagline', 'office:forms', + ['element', 'form:automatic-focus', 'false'], + ['element', 'form:apply-design-mode', 'false']], + ['tag', 'text:sequence-decls', + ['tagline', 'text:sequence-decl', + ['element', 'text:display-outline-level', '0'], + ['element', 'text:name', 'Illustration']], + ['tagline', 'text:sequence-decl', + ['element', 'text:display-outline-level', '0'], + ['element', 'text:name', 'Table']], + ['tagline', 'text:sequence-decl', + ['element', 'text:display-outline-level', '0'], + ['element', 'text:name', 'Text']], + ['tagline', 'text:sequence-decl', + ['element', 'text:display-outline-level', '0'], + ['element', 'text:name', 'Drawing']]], + ['tagline', 'text:p', + ['element', 'text:style-name', 'Standard']]]]] + + # Generate content.xml XML data + xml = XML() + self.lines = xml.convert(self.data) + self.filedata = '\n'.join(self.lines) + # Return generated data + return self.filedata + + diff --git a/openanalyse.py b/openanalyse.py new file mode 100644 index 0000000..da4a75d --- /dev/null +++ b/openanalyse.py @@ -0,0 +1,137 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2012, Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ChdTxtPathOut, StatTxtPathOut, construct_simipath +from layout import OpenCHDS, dolexlayout, StatLayout, WordCloudLayout, OpenCorpus +#from corpus import Corpus +from corpusNG import Corpus, copycorpus +from tableau import Tableau +import os +import shelve +from ConfigParser import * +from tabsimi import DoSimi +from functions import BugReport, DoConf +import logging + +log = logging.getLogger('iramuteq.openanalyse') + +class OpenAnalyse(): + def __init__(self, parent, parametres, Alceste=True, simifromprof = False): + #self.conf = RawConfigParser() + #self.conf.read(filename) + log.info('OpenAnalyse') + self.parent = parent + if isinstance(parametres, dict) : + self.conf = DoConf(parametres['ira']).getoptions() + else : + self.conf = DoConf(parametres).getoptions() + + if self.conf.get('corpus', '!!') in self.parent.history.history : + if self.conf.get('corpus', '!!') in self.parent.history.openedcorpus : + log.info('corpus is already opened') + corpus = copycorpus(self.parent.history.openedcorpus[self.conf['corpus']]) + else : + if os.path.exists(self.parent.history.history[self.conf['corpus']]['ira']) : + corpus = Corpus(self, parametres = DoConf(self.parent.history.history[self.conf['corpus']]['ira']).getoptions('corpus'), read = self.parent.history.history[self.conf['corpus']]['ira']) + self.parent.history.openedcorpus[self.conf['corpus']] = corpus + if self.conf.get('lem',1) : + corpus.make_lems(True) + else : + corpus.make_lems(False) + else : + corpus = None + self.doopen(corpus) + self.parent.history.addtab(self.conf) + + def doopen(self, corpus) : + print self.conf + if self.conf['type'] == 'corpus' : + self.parent.ShowMenu(_("Text analysis")) + OpenCorpus(self.parent, self.conf) + elif self.conf['type'] == 'stat' : + self.parent.ShowMenu(_("Text analysis")) + StatLayout(self.parent, corpus, self.conf) + elif self.conf['type'] == 'spec' : + self.parent.ShowMenu(_("Text analysis")) + dolexlayout(self.parent, corpus, self.conf) + elif self.conf['type'] == 'alceste' : + self.parent.ShowMenu(_("Text analysis")) + OpenCHDS(self.parent, corpus, self.conf, Alceste = True) + elif self.conf['type'] == 'simi' : + print 'simi' +# try : +# #if self.conf['type'] in ['analyse','lexico','stat','wordcloud'] : +# # self.corpus = Corpus(parent) +# if 'analyse' in self.conf.sections() : +# DictPathOut=ChdTxtPathOut(os.path.dirname(filename)) +# self.pathout = os.path.dirname(filename) +# self.DictPathOut=DictPathOut +# #self.corpus = Corpus(parent) +# self.corpus.dictpathout = self.DictPathOut +# self.corpus.read_corpus_from_shelves(self.DictPathOut['db']) +# self.corpus.parametre['analyse'] = 'alceste' +# self.corpus.make_lem_type_list() +# # print 'EXTRACT NR' +# # self.corpus.extractnr() +# Alceste=True +# #self.corpus.save_corpus(self.corpus.dictpathout['db']) +# #self.corpus.make_uci_stat() +# #self.corpus.make_et_table() +# #self.corpus.prof_type() +# #self.corpus.make_type_tot() +# #self.corpus.make_size_uci() +# #self.corpus.get_stat_by_cluster() +# OpenCHDS(parent, self, filename, Alceste) +# self.parent.ShowMenu(_("Text analysis")) +# self.parent._mgr.Update() +# elif 'questionnaire' in self.conf.sections() : +# self.DictPathOut=ChdTxtPathOut(os.path.dirname(filename)) +# self.pathout = os.path.dirname(filename) +# self.tableau = Tableau(parent, filename) +# self.tableau.dictpathout = self.DictPathOut +# self.tableau.read_tableau(self.tableau.dictpathout['db']) +# OpenCHDS(parent, self, filename, False) +# elif 'simi' in self.conf.sections(): +# self.tableau = Tableau(parent, filename) +# self.DictPathOut=construct_simipath(os.path.abspath(os.path.dirname(filename))) +# self.tableau.dictpathout = self.DictPathOut +# self.tableau.read_tableau(self.tableau.dictpathout['db']) +# if self.tableau.parametre.get('fromtxt', False) : +# self.corpus=Corpus(parent) +# self.corpus.read_corpus_from_shelves(self.DictPathOut['corpus']) +# self.corpus.parametre['openpath'] = os.path.dirname(filename) +# self.parent.ShowMenu(_("Text analysis")) +# DoSimi(parent, self.conf, isopen = True, filename = filename, gparent = self, openfromprof=simifromprof) +# elif 'lexico' in self.conf.sections(): +# print 'lexico' +# #self.corpus = Corpus(parent) +# self.corpus.dictpathout = StatTxtPathOut(os.path.dirname(filename)) +# self.parent.ShowMenu(_("Text analysis")) +# dolexlayout(parent, self, filename) +# elif 'stat' in self.conf.sections(): +# print 'stat' +# #self.corpus = Corpus(parent) +# self.corpus.dictpathout = StatTxtPathOut(os.path.dirname(filename)) +# self.parent.ShowMenu(_("Text analysis")) +# StatLayout(parent, self, filename) +# elif 'chd_dist_quest' in self.conf.sections(): +# self.DictPathOut = ChdTxtPathOut(os.path.dirname(filename)) +# self.pathout = os.path.dirname(filename) +# self.tableau = Tableau(parent, filename) +# self.tableau.dictpathout = self.DictPathOut +# self.tableau.read_tableau(self.tableau.dictpathout['db']) +# OpenCHDS(parent, self, filename, False) +# elif 'wordcloud' in self.conf.sections() : +# self.corpus.dictpathout = StatTxtPathOut(os.path.dirname(filename)) +# self.corpus.read_corpus_from_shelves(self.corpus.dictpathout['db']) +# self.parent.ShowMenu(_("Text analysis")) +# WordCloudLayout(parent, self, filename) +# if self.conf.sections()[0] in ['analyse','lexico','stat','wordcloud'] : +# self.corpus.parametre['openpath'] = os.path.dirname(filename) +# except : +# BugReport(self.parent) + + diff --git a/parse_factiva_html.py b/parse_factiva_html.py new file mode 100644 index 0000000..b8f03a0 --- /dev/null +++ b/parse_factiva_html.py @@ -0,0 +1,106 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2012 Pierre Ratinaud +#Lisense: GNU/GPL + +from HTMLParser import HTMLParser +import wx.lib.sized_controls as sc +import wx.lib.filebrowsebutton as filebrowse +import os +import codecs +import sys +import re +import wx + + +htmldir = 'dev/factiva_html' + + +class MyHTMLParser(HTMLParser): + def __init__(self) : + HTMLParser.__init__(self) + self.recording = 0 + self.data = [] + self.need = True + self.author = False + self.start = False + self.text = False + self.count = 0 + + def handle_starttag(self, tag, attrs): + self.need=True + if tag not in ['div', 'p', 'b'] : + self.need=False + self.text = False + return + else : + print attrs + self.need = True + if tag == 'div' : + if attrs != [] : + tagtype = attrs[0][0] + tagname = attrs[0][1].split() + if tagtype == 'class' and tagname[0] == 'article' : + self.author = False + self.start = True + self.count = 0 + self.data.append([]) + elif tagtype == 'class' and tagname[0] == 'author' : + self.author = True + if tag == 'p' : + if attrs != [] : + tagtype = attrs[0][0] + tagname = attrs[0][1].split() + if tagtype == 'class' and tagname[0] == 'articleParagraph' : + self.text = True + if tag == 'b' : + self.text = True + return + + def handle_data(self, data) : + #print data.encode('utf-8') + if self.need : + #print data.encode('utf-8') + if self.start : + pass + #print 'data', data.encode('utf8') + if self.author : + if self.count < 7 : + self.data[-1].append(data) + self.count += 1 + else : + self.author = False + elif self.text : + if self.count == 2 and not self.author : + self.data[-1].append('PAS DAUTEUR') + self.count += 1 + self.data[-1].append(data) + else : + self.count += 1 + self.data[-1].append(data) + + + # print "Encountered a start tag:", tag + #def handle_endtag(self, tag): + # print "Encountered an end tag :", tag + #def handle_data(self, data): + # print "Encountered some data :", data + + +files = os.listdir(htmldir) + +parser = MyHTMLParser() +for f in files : + f= os.path.join(htmldir, f) + with codecs.open(f, 'r', 'utf8') as infile : + content = infile.read() +parser.feed(content) + +out = [[' '.join(['****','*date_'+art[4].replace(' ','_'),'*s_'+art[5].replace(' ','_')]), ' '.join(art[10:len(art)-1])] for art in parser.data] + +for i in range(0,8) : + print parser.data[i] + +out = [' '.join(art) for art in out] +print '\n\n\n'.join(out).encode('utf8') diff --git a/parse_factiva_txt.py b/parse_factiva_txt.py new file mode 100644 index 0000000..53f6d6d --- /dev/null +++ b/parse_factiva_txt.py @@ -0,0 +1,73 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2012 Pierre Ratinaud +#Lisense: GNU/GPL + +import os +import codecs + + +txtdir = 'dev/factiva_txt' #repertoire des textes +#txtdir = 'corpus/jeunesdebanlieues' +fileout = 'dev/factiva_txt_out.txt' +encodage_in = 'utf8' +encodage_out = 'utf8' + + +def parsetxt(txt): + """ + parser de texte pour factiva + """ + no = ['NS','RE','IPD','CO','IN'] # les balises qui signalent une fin + txt = txt.splitlines() #met le texte dans une liste de lignes + txt.pop(0) # la premiere ligne sert a rien + txt = txt[0:(len(txt)-10)] # les dernieres lignes ne servent a rien + keepline = False + ucis = [] + for line in txt : #pour chaque ligne du texte... + if line.startswith('---------------------------------------------------------------') : # si la ligne commence avec... + ucis.append([['****'],'']) # c'est une nouvelle uci + keepline = False + elif line.startswith('SN ') : #source + source = '*source_' + line[4:].replace(' ','').replace('\'','').replace(u'´','').replace(u'’','').replace('-','').lower() + ucis[-1][0].append(source) + elif line.startswith('PD ') : #date + mois_annee = '*date_' + line[4:].split(' ')[1] + line[4:].split(' ')[2] + ucis[-1][0].append(mois_annee) + elif line in no : #fin + keepline = False + elif line.startswith('RF ') : #fin + keepline = False + elif line in ['LP', 'TD'] : #debut texte + keepline = True + else : + pass + if keepline and line not in ['LP', 'TD'] : + ucis[-1][1] = '\n'.join([ucis[-1][1],line]) + return ucis + + +def print_ucis(ucis, ofile, encodage) : + toprint = '\n'.join(['\n'.join([' '.join(uci[0]),uci[1]]) for uci in ucis]) + ofile.write(toprint.encode(encodage)) + +def doparse(txtdir, fileout, encodage_in, encodage_out): + files = os.listdir(txtdir) #liste des fichiers dans txtdir + with open(fileout,'w') as outf : #ouverture du fichier en sortie + for f in files : #pour chaque fichier en entree... + f= os.path.join(txtdir, f) #chemin du fichier + with codecs.open(f, 'r', encodage_in) as infile : #ouverture du fichier + content = infile.read() #lecture du fichier + ucis = parsetxt(content) + print_ucis(ucis, outf, encodage_out) + +#for dat in ['2001','2002','2003','2004', '2005','2006','2007','2008','2009','2010','2011'] : +# path = os.path.join(txtdir,dat) +# outfile = os.path.join(txtdir, 'corpus_' + dat + '.txt') +# doparse(path, outfile) + + +if __name__ == '__main__' : + doparse(txtdir, fileout, encodage_in, encodage_out) + print 'fini' diff --git a/parse_factiva_txt2.py b/parse_factiva_txt2.py new file mode 100644 index 0000000..da048ec --- /dev/null +++ b/parse_factiva_txt2.py @@ -0,0 +1,77 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2012 Pierre Ratinaud +#Lisense: GNU/GPL + +import os +import codecs + + +txtdir = 'dev/factiva_txt' +fileout = 'dev/factiva_txt_out.txt' +encodage_in = 'utf8' +encodage_out = 'utf8' + + +def parsetxt(txt): + """ + parser de texte pour factiva + à partir d'un copier/coller de la fenêtre de visualisation + merci à Lucie Loubère pour l'astuce :) + """ + no = ['NS','RE','IPD','CO','IN'] # les balises qui signalent une fin + txt = txt.splitlines() + keepline = False + ucis = [] + for line in txt : + if line.startswith('Article') : + lp = line.split() + if len(lp) > 2 : + if lp[2] == 'Article' : + ucis.append([[u'****'],'']) + keepline = False + if line.startswith('SN ') : #source + source = '*source_' + line[4:].replace(' ','').replace('\'','').replace(u'´','').replace(u'’','').replace('-','').lower() + ucis[-1][0].append(source) + elif line.startswith('PD ') : #date + mois_annee = '*date_' + line[4:].split(' ')[1] + line[4:].split(' ')[2] + ucis[-1][0].append(mois_annee) + elif line.strip() in no : #fin + keepline = False + elif line.startswith('RF ') : #fin + keepline = False + elif line.strip() in ['LP', 'TD'] : #debut texte + keepline = True + else : + pass + if keepline and line.strip() not in ['LP', 'TD', ''] : + ucis[-1][1] = '\n'.join([ucis[-1][1],line]) + return ucis + + +def print_ucis(ucis, ofile, encodage) : + #elimination des articles vides + ucis = [uci for uci in ucis if uci[1] != ''] + toprint = '\n\n'.join(['\n'.join([' '.join(uci[0]),uci[1]]) for uci in ucis]) + ofile.write(toprint.encode(encodage)) + +def doparse(txtdir, fileout, encodage_in, encodage_out): + files = os.listdir(txtdir) + with open(fileout,'w') as outf : + for f in files : + f= os.path.join(txtdir, f) + with codecs.open(f, 'rU', encodage_in) as infile : + content = infile.read() + ucis = parsetxt(content) + print_ucis(ucis, outf, encodage_out) + +#for dat in ['2001','2002','2003','2004', '2005','2006','2007','2008','2009','2010','2011'] : +# path = os.path.join(txtdir,dat) +# outfile = os.path.join(txtdir, 'corpus_' + dat + '.txt') +# doparse(path, outfile) + + +if __name__ == '__main__' : + doparse(txtdir, fileout, encodage_in, encodage_out) + print 'fini' diff --git a/parse_factiva_xml.py b/parse_factiva_xml.py new file mode 100644 index 0000000..6dd2d56 --- /dev/null +++ b/parse_factiva_xml.py @@ -0,0 +1,171 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2010 Pierre Ratinaud +#Lisense: GNU/GPL + +import xml.dom.minidom +import wx.lib.sized_controls as sc +import wx.lib.filebrowsebutton as filebrowse +import os +import codecs +import sys +import re +import wx + + +def ParseDocument(filename) : + print filename + with codecs.open(filename, 'r', 'utf-8') as f : + content = f.read() + content = content.replace('', ' ').replace('', ' ') + dom = xml.dom.minidom.parseString(content.encode("utf-8")) + result = [] + articles = dom.getElementsByTagName("article") + i = 0 + for article in articles : + headline = article.getElementsByTagName("headline") + if headline != [] : + para_headline = headline[0].getElementsByTagName("paragraph") + val_headline = [val.firstChild.nodeValue.replace('\n', ' ') for val in para_headline] + else : + val_headline = [] + leadParagraph = article.getElementsByTagName("leadParagraph") + if leadParagraph != [] : + para_leadParagraph = leadParagraph[0].getElementsByTagName("paragraph") + val_leadParagraph = [val.firstChild.nodeValue.replace('\n', ' ') for val in para_leadParagraph] + else : + val_leadParagraph = [] + publicationDate = article.getElementsByTagName("publicationDate") + if publicationDate != [] : + para_publicationDate = publicationDate[0].getElementsByTagName("date") + if para_publicationDate == [] : + para_publicationDate = publicationDate[0].getElementsByTagName("dateTime") + val_publicationDate = [val.firstChild.nodeValue.replace('\n', ' ') for val in para_publicationDate] + else : + val_publicationDate = [] + sourceName = article.getElementsByTagName("sourceName") + if sourceName != [] : + val_sourceName = sourceName[0].firstChild.nodeValue.replace('\n', ' ') + else : + val_sourceName = INCONNU + tailParagraphs = article.getElementsByTagName("tailParagraphs") + if tailParagraphs != [] : + para_tailParagraphs = tailParagraphs[0].getElementsByTagName("paragraph") + val_tailParagraphs = [val.firstChild.nodeValue.replace('\n', ' ') for val in para_tailParagraphs] + else : + val_tailParagraphs = [] + inter = [' '.join(val_headline), val_sourceName,' '.join(val_publicationDate), ' '.join(val_leadParagraph), ' '.join(val_tailParagraphs)] + inter = [re.sub(ur'[ "\n\r]+', ' ', val).replace('"',' ').replace('\n', ' ').replace('\r', ' ') for val in inter] + #inter = ['"' + val +'"' for val in inter] + result.append(inter) + return result + +def getcorpus_from_xml(xmldir, corpus_out): + files = os.listdir(xmldir) + files = [os.path.join(xmldir,file) for file in files if os.path.splitext(file)[1] == '.xml'] + if len(files) == 0 : + return 'nofile' + result = [] + fileout = codecs.open(corpus_out, 'w', 'utf-8') + for file in files : + rs = ParseDocument(file) + #dates = [row[2].split('-') for row in rs] + #dates = [[date[0],date[1],date[2].split('T')[0]] for date in dates] + #txt = '\n'.join(['\n'.join([' '.join([u'****', '*%s' % row[1].replace(' ','_').replace('\'','_'), '*%s' % row[2].replace('-','_')]), row[3], row[4]]) for row in rs]) + #avec la date decompose + txt = '\n'.join(['\n'.join([' '.join([u'****', '*s_%s' % row[1].replace(' ','').replace('\'',''), '*annee_%s' % row[2].split('-')[0], '*mois_%s' % row[2].split('-')[1], '*jour_%s' % row[2].split('-')[2].split('T')[0]]), row[3], row[4]]) for row in rs]) + fileout.write(txt+'\n\n') + fileout.close() + return 'ok' + +class PrefImport(wx.Dialog): + def __init__(self, parent, size=wx.DefaultSize, pos=wx.DefaultPosition, style=wx.DEFAULT_DIALOG_STYLE): + pre = wx.PreDialog() + pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP) + pre.Create(parent, -1, '', pos, size, style) + self.PostCreate(pre) + + self.parent = parent + self.txt1 = wx.StaticText(self, -1, u"Répertoire des fichiers xml") + self.dbb = filebrowse.DirBrowseButton(self, -1, size=(450, -1), changeCallback = self.fbbCallback) + self.dbb.SetLabel("") + self.txt2 = wx.StaticText(self, -1, u"Fichier en sortie") + self.fbb = filebrowse.FileBrowseButton(self, -1, size=(450, -1), fileMode = 2) + self.fbb.SetLabel("") + + self.btnsizer = wx.StdDialogButtonSizer() + btn_ok = wx.Button(self, wx.ID_OK) + btn = wx.Button(self, wx.ID_CANCEL) + self.btnsizer.AddButton(btn_ok) + self.btnsizer.AddButton(btn) + self.btnsizer.Realize() + + + self.Bind(wx.EVT_BUTTON, self.checkfile, btn_ok) + + #self.SetButtonSizer(self.CreateStdDialogButtonSizer(wx.OK | wx.CANCEL)) + self.Bind(wx.EVT_BUTTON, self.checkfile) + + self. __do_layout() + #self.Fit() + self.SetMinSize(self.GetSize()) + + def __do_layout(self): + sizer = wx.BoxSizer(wx.VERTICAL) + grid_sizer_1 = wx.BoxSizer(wx.HORIZONTAL) + grid_sizer_2 = wx.BoxSizer(wx.HORIZONTAL) + grid_sizer_1.Add(self.txt1, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer_1.Add(self.dbb, 2, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer_2.Add(self.txt2, 0, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + grid_sizer_2.Add(self.fbb, 2, wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL, 0) + sizer.Add(grid_sizer_1, 0, wx.EXPAND, 0) + sizer.Add(grid_sizer_2, 0, wx.EXPAND, 0) + sizer.Add(self.btnsizer, 0, wx.EXPAND, 0) + self.SetSizer(sizer) + sizer.Fit(self) + self.Layout() + + + def fbbCallback(self, evt): + if self.fbb.GetValue() == "" : + self.fbb.SetValue(os.path.join(self.dbb.GetValue(), 'corpus.txt')) + #self.log.write('FileBrowseButton: %s\n' % evt.GetString()) + + def checkfile(self, evt) : + if evt.GetId() == wx.ID_OK : + if self.dbb.GetValue() != "" : + if os.path.exists(self.fbb.GetValue()): + dlg = wx.MessageDialog(self, + u"%s\nCe fichier existe, continuer quand même ?" % self.fbb.GetValue(), 'ATTENTION', wx.NO | wx.YES | wx.ICON_WARNING) + dlg.CenterOnParent() + if dlg.ShowModal() not in [wx.ID_NO, wx.ID_CANCEL]: + self.EndModal(wx.ID_OK) + else : + self.EndModal(wx.ID_OK) + else : + dlg = wx.MessageDialog(self, u"Vous devez choisir le répertoire contenant le ou les fichier(s) xml", 'ATTENTION', wx.OK | wx.ICON_WARNING) + dlg.CenterOnParent() + dlg.ShowModal() + + else : + self.EndModal(wx.ID_CANCEL) + + + +class ImportFactiva(): + def __init__(self,parent): + self.dial = PrefImport(parent) + self.dial.CenterOnParent() + val = self.dial.ShowModal() + if val == wx.ID_OK : + xmldir = self.dial.dbb.GetValue() + corp_out = self.dial.fbb.GetValue() + res = getcorpus_from_xml(xmldir, corp_out) + if res != 'ok' : + dlg = wx.MessageDialog(parent, u"Pas de fichier \'.xml\' dans %s" % xmldir, 'ATTENTION', wx.OK | wx.NO_DEFAULT | wx.ICON_WARNING) + dlg.CenterOnParent() + dlg.ShowModal() + else : + parent.filename = corp_out + parent.OpenText() diff --git a/profile_segment.py b/profile_segment.py new file mode 100644 index 0000000..d3b3f46 --- /dev/null +++ b/profile_segment.py @@ -0,0 +1,151 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2010, Pierre Ratinaud +#Lisense: GNU/GPL + +import tempfile +from ProfList import * +import agw.aui as aui +from functions import exec_rcode, check_Rresult, ReadProfileAsDico, ReadList +from listlex import * +from dialog import PrefSegProf, PrefProfTypes +from time import sleep + +class ProfileSegment() : + def __init__(self, parent, corpus) : + self.parent = parent + self.corpus = corpus + dial = PrefSegProf(self.parent) + dial.CenterOnParent() + if dial.ShowModal() == wx.ID_OK : + if dial.box_lem.GetSelection() == 0 : + self.lem = True + else : + self.lem = False + self.mini = dial.spin_min.GetValue() + self.maxi = dial.spin_max.GetValue() + self.eff = dial.spin_eff.GetValue() + dial.Destroy() + self.dlg = progressbar(self, maxi = 4) + self.dlg.Update(1, u'Recherche des segments') + self.make_table() + self.make_prof() + self.dlg.Update(3, u'ouverture des profils') + self.do_layout() + self.dlg.Update(4, 'fini') + self.dlg.Destroy() + + def make_table(self) : + self.corpus.make_segments_profile(self.corpus.dictpathout['segments_classes'], lenmin = self.mini, lenmax = self.maxi, effmin = self.eff, lem = self.lem) + + def make_prof(self) : + txt = """ + load("%s") + source("%s") + """ % (self.corpus.dictpathout['RData'], self.parent.RscriptsPath['chdfunct']) + + txt += """ + dt <- read.csv2("%s", row.names = 1) + to <- build.pond.prof(dt) + PrintProfile(n1,to[4],NULL,to[5],NULL,clnb,"%s","%s") + """ % (self.corpus.dictpathout['segments_classes'], self.corpus.dictpathout['prof_seg'], self.corpus.dictpathout['antiprof_seg']) + fo = tempfile.mktemp(dir=self.parent.TEMPDIR) + with open(fo, 'w') as f : + f.write(txt) + pid = exec_rcode(self.parent.RPath, fo, wait = False) + while pid.poll() == None : + self.dlg.Pulse(u'Construction des profils...') + sleep(0.2) + check_Rresult(self.parent, pid) + + def do_layout(self) : + SelectTab = self.parent.nb.GetSelection() + page = self.parent.nb.GetPage(SelectTab).TabChdSim + print page + prof_seg = ReadProfileAsDico(self, self.corpus.dictpathout['prof_seg'], True, self.corpus.parametre['syscoding']) + prof_seg_nb = aui.AuiNotebook(self.parent, -1, wx.DefaultPosition) + for i in range(0,len(self.corpus.lc)) : + ntab = ProfListctrlPanel(self.parent, self, prof_seg[str(i + 1)], False, i + 1) + prof_seg_nb.AddPage(ntab, 'classe %i' % (i + 1)) + page.AddPage(prof_seg_nb, u'Profils des segements répétés') + page.SetSelection(page.GetPageCount() - 1) + +class ProfilType() : + def __init__(self, parent, corpus) : + self.parent = parent + self.corpus = corpus + self.outprof = self.corpus.dictpathout['prof_type'] + dial = PrefProfTypes(self.parent) + dial.fbb.SetValue(self.outprof) + dial.CenterOnParent() + res = dial.ShowModal() + if res == wx.ID_OK : + if dial.radio_type.GetSelection() == 0 : + alceste = True + else : + alceste = False + if 'outprof' in self.corpus.parametre : + self.corpus.parametre['outprof'][self.outprof] = alceste + else : + self.corpus.parametre['outprof'] = {self.outprof: alceste} + self.dlg = progressbar(self, maxi = 4) + self.dlg.Update(1, u'Recherche des types') + self.make_table() + self.dlg.Update(1, u'Construction des profils') + self.make_prof(alceste = alceste) + self.dlg.Update(3, u'Ouverture des profils') + self.do_layout(alceste = alceste) + self.dlg.Update(4, 'fini') + self.dlg.Destroy() + + def make_table(self) : + self.corpus.prof_type() + + def make_prof(self, alceste = True) : + txt = """ + load("%s") + source("%s") + """ % (self.corpus.dictpathout['RData'], self.parent.RscriptsPath['chdfunct']) + + txt += """ + dt <- read.csv2("%s", row.names = 1) + """ % self.corpus.dictpathout['type_cl'] + if alceste : + txt += """ + to <- build.pond.prof(dt) + PrintProfile(n1,to[4],NULL,to[5],NULL,clnb,"%s","%s") + """ % (self.outprof, self.corpus.dictpathout['antiprof_type']) + else : + txt += """ + to <- AsLexico2(dt) + write.csv2(to[[1]], file = "%s") + """ % (self.outprof) + #write.csv2(to[[3]], file = "%s") + # % (self.outprof) + fo = tempfile.mktemp(dir=self.parent.TEMPDIR) + with open(fo, 'w') as f : + f.write(txt) + pid = exec_rcode(self.parent.RPath, fo, wait = False) + while pid.poll() == None : + self.dlg.Pulse(u'Construction des profils...') + sleep(0.2) + check_Rresult(self.parent, pid) + + def do_layout(self, alceste = True) : + SelectTab = self.parent.nb.GetSelection() + page = self.parent.nb.GetPage(SelectTab).TabChdSim + prof_seg_nb = aui.AuiNotebook(self.parent, -1, wx.DefaultPosition) + if alceste : + prof_seg = ReadProfileAsDico(self, self.outprof, True) + for i in range(0,len(self.corpus.lc)) : + ntab = ProfListctrlPanel(self.parent, self, prof_seg[str(i + 1)], False, i + 1) + prof_seg_nb.AddPage(ntab, 'classe %i' % (i + 1)) + else : + self.DictSpec, first = ReadList(self.outprof) + self.ListPan = ListForSpec(self.parent, self, self.DictSpec, first) + prof_seg_nb.AddPage(self.ListPan, u'Spécificités') + + page.AddPage(prof_seg_nb, u'Profils des types') + page.SetSelection(page.GetPageCount() - 1) + diff --git a/putcorpusindb.py b/putcorpusindb.py new file mode 100644 index 0000000..eab93ea --- /dev/null +++ b/putcorpusindb.py @@ -0,0 +1,72 @@ +import sqlite3 +import codecs +import os +import shelve +from time import time + +corpus_out = 'corpus.txt' + +with codecs.open(corpus_out ,'r', 'utf8') as f: + content = f.read() + sep = '\n\n' + ucis_paras_uces = [[[uce for uce in para.splitlines()] for para in uci.split(u'$$$')] for uci in content.split(sep)] + +print ucis_paras_uces[0] + +#db = 'corpus.db' +#conn = sqlite3.connect(db) +#c = conn.cursor() +#conn.text_factory = str +#c = conn.cursor() +#c.execute('''CREATE TABLE if not exists uce (id INTEGER PRIMARY KEY, iduci INTEGER, idpara INTEGER, content TEXT)''') +#c = conn.cursor() +idpara = -1 +iduce = -1 +uce_uci_para = {} +para_uci = {} +formes = {} +def addforme(word, formes, iduce) : + if word in formes : + formes[word][0] += 1 + if iduce in formes[word][1] : + formes[word][1][iduce] += 1 + else : + formes[word][1][iduce] = 1 + else : + formes[word] = [1, {iduce:1}] + +for i, uci in enumerate(ucis_paras_uces) : + for para in uci : + idpara += 1 + para_uci[idpara] = i + for uce in para : + iduce += 1 + uce_uci_para[iduce] = [i, idpara] + fileout = os.path.join('uce', '%i.txt' % iduce) + with open(fileout, 'w') as f : + f.write(uce.encode('utf8')) + uce = uce.split() + for word in uce : + addforme(word, formes, iduce) + +t1 = time() +d = shelve.open('shelves.db') +d['formes']=formes +d.close() +print time() - t1 + +t2 = time() +d = shelve.open('shelves.db') +formes = d['formes'] +d.close() +print time() - t2 +t3 = time() +word = formes['les'] +ucis = [uce_uci_para[iduce][0] for iduce in word[1]] +word[0] +print time() - t3 + + #c.execute('INSERT INTO uce values (?, ?, ?, ?)', (iduce, i, idpara, uce)) + #conn.commit() + + diff --git a/search_list.py b/search_list.py new file mode 100644 index 0000000..816660c --- /dev/null +++ b/search_list.py @@ -0,0 +1,357 @@ +# -*- coding: utf-8 -*- + +#---------------------------------------------------------------------------- +# Author: Pierre Ratinaud +# + +#comes from ListCtrl.py from the demo tool of wxPython: +# Author: Robin Dunn & Gary Dumer +# +# Created: +# Copyright: (c) 1998 by Total Control Software +# Licence: wxWindows license +#---------------------------------------------------------------------------- + +import os +import sys +import wx +import wx.lib.mixins.listctrl as listmix +import cStringIO +import tempfile +from functions import exec_rcode, MessageImage +from chemins import ffr +from PrintRScript import barplot, dendroandbarplot +#--------------------------------------------------------------------------- + +class List(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin): + def __init__(self, parent, ID, pos=wx.DefaultPosition, + size=wx.DefaultSize, style=0): + wx.ListCtrl.__init__(self, parent, ID, pos, size, style) + listmix.ListCtrlAutoWidthMixin.__init__(self) + +class SearchList(wx.Panel, listmix.ColumnSorterMixin): + def __init__(self, parent,gparent, dlist,first, nbactives, nbetoiles, add_dendro=True): + self.parent=parent + self.gparent=gparent + self.dlist=dlist + self.add_dendro=add_dendro + self.first = ['id','formes'] + first + self.nbactives = nbactives + self.nbetoiles = nbetoiles + wx.Panel.__init__(self, parent, -1, style=wx.WANTS_CHARS) + + + self.il = wx.ImageList(16, 16) + + self.sm_up = self.il.Add(getSmallUpArrowBitmap()) + self.sm_dn = self.il.Add(getSmallDnArrowBitmap()) + + tID = wx.NewId() + + self.list = List(self, tID, + style=wx.LC_REPORT + | wx.BORDER_NONE + | wx.LC_EDIT_LABELS + | wx.LC_SORT_ASCENDING + ) + + self.list.SetImageList(self.il, wx.IMAGE_LIST_SMALL) + + self.dlist = dlist + self.PopulateList(dlist,first) + self.Bind(wx.EVT_SIZE, self.OnSize) + + self.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnItemSelected, self.list) + self.Bind(wx.EVT_LIST_COL_CLICK, self.OnColClick) + + # for wxMSW + self.list.Bind(wx.EVT_COMMAND_RIGHT_CLICK, self.OnRightClick) + + # for wxGTK + self.list.Bind(wx.EVT_RIGHT_UP, self.OnRightClick) + + + self.itemDataMap = dlist + listmix.ColumnSorterMixin.__init__(self, len(first)+2) + self.SortListItems(1, False) + self.do_greyline() + +#----------------------------------------------------------------------------------------- + + def PopulateList(self, dlist,first): + first = ['id','formes']+first + for i, name in enumerate(first) : + self.list.InsertColumn(i, name, wx.LIST_FORMAT_LEFT) + + for key in dlist : + index = self.list.InsertStringItem(sys.maxint, '%5i' % key) + for i, val in enumerate(dlist[key][1:]) : + self.list.SetStringItem(index, i+1, str(dlist[key][i+1])) + self.list.SetItemData(index, key) + + self.list.SetColumnWidth(0, wx.LIST_AUTOSIZE) + for i in range(1,len(first)-1): + self.list.SetColumnWidth(i, 130) + + if self.nbactives + self.nbetoiles != len(dlist) : + #there is supp data + for i in range(self.nbactives, (len(dlist) - self.nbetoiles)) : + item = self.list.GetItem(i) + item.SetTextColour(wx.RED) + self.list.SetItem(item) + for i in range((len(dlist) - self.nbetoiles), len(dlist)) : + item = self.list.GetItem(i) + item.SetTextColour(wx.BLUE) + self.list.SetItem(item) + + def do_greyline(self): + for row in xrange(self.list.GetItemCount()): + if row % 2 : + self.list.SetItemBackgroundColour(row,(230,230,230)) + else : + self.list.SetItemBackgroundColour(row,wx.WHITE) + + + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py + def GetListCtrl(self): + return self.list + + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py + def GetSortImages(self): + return (self.sm_dn, self.sm_up) + + + def OnRightDown(self, event): + x = event.GetX() + y = event.GetY() + item, flags = self.list.HitTest((x, y)) + + if flags & wx.LIST_HITTEST_ONITEM: + self.list.Select(item) + + event.Skip() + + + def getColumnText(self, index, col): + item = self.list.GetItem(index, col) + return item.GetText() + + + def OnItemSelected(self, event): + self.currentItem = event.m_itemIndex + event.Skip() + + def OnRightClick(self, event): + + # only do this part the first time so the events are only bound once + if not hasattr(self, "popupID1"): +# self.popupID1 = wx.NewId() + #self.popupID2 = wx.NewId() + self.popupID3 = wx.NewId() + if self.add_dendro : + self.id_adddendro = wx.NewId() + self.Bind(wx.EVT_MENU, self.ongraphdendro, id = self.id_adddendro) +# self.Bind(wx.EVT_MENU, self.OnPopupOne, id=self.popupID1) + #self.Bind(wx.EVT_MENU, self.OnPopupTwo, id=self.popupID2) + self.Bind(wx.EVT_MENU, self.OnPopupThree, id=self.popupID3) + + + # make a menu + menu = wx.Menu() + # add some items +# menu.Append(self.popupID1, u"Formes associées") + #menu.Append(self.popupID2, u"Concordancier") + menu.Append(self.popupID3, "Graphique") + if self.add_dendro : + menu.Append(self.id_adddendro, u"Graphique + dendrogramme") + + self.PopupMenu(menu) + menu.Destroy() + + + def OnPopupOne(self, event): + activenotebook = self.parent.nb.GetSelection() + page = self.parent.nb.GetPage(activenotebook) + corpus = page.corpus + word = self.getColumnText(self.list.GetFirstSelected(), 0) + lems = corpus.lems + rep = [] + for forme in lems[word] : + rep.append([forme, corpus.formes[forme][0]]) + win = message(self, -1, u"Formes associées", size=(300, 200), style=wx.DEFAULT_FRAME_STYLE) + win.html = '\n' + '
    '.join([' : '.join([str(val) for val in forme]) for forme in rep]) + '\n' + win.HtmlPage.SetPage(win.html) + win.Show(True) + + def OnPopupTwo(self, event): + activenotebook = self.parent.nb.GetSelection() + page = self.parent.nb.GetPage(activenotebook) + item=self.getColumnText(self.list.GetFirstSelected(), 0) + corpus = page.corpus + win = message(self, -1, u"Concordancier", size=(600, 200),style = wx.DEFAULT_FRAME_STYLE) + avap=60 + listmot = corpus.lems[item] + uce_ok = [corpus.formes[forme][1] for forme in listmot] + uce_ok = list(set([tuple(val) for line in uce_ok for val in line])) + txt = '

    Concordancier

    ' + for uce in uce_ok: + content = ' '+' '.join(corpus.ucis_paras_uces[uce[0]][uce[1]][uce[2]])+' ' + for form in listmot : + sp = '' + i = 0 + forme = ' ' + form + ' ' + while i < len(content): + coordword = content[i:].find(forme) + if coordword != -1 and i == 0: + txt += '
    ' + ' '.join(corpus.ucis[uce[0]][0]) + '
    ' + if coordword < avap: + sp = ' ' * (avap - coordword) + deb = i + else: + deb = i + coordword - avap + if len(content) < i + coordword + avap: + fin = len(content) - 1 + else: + fin = i + coordword + avap + txt += '' + sp + content[deb:fin].replace(forme, '' + forme + '') + '
    ' + i += coordword + len(forme) + sp = '' + elif coordword != -1 and i != 0 : + if coordword < avap: + sp = ' ' * (avap - coordword) + deb = i + else: + deb = i + coordword - avap + if len(content) < i + coordword + avap: + fin = len(content) - 1 + else: + fin = i + coordword + avap + txt += '' + sp + content[deb:fin].replace(forme, '' + forme + '') + '
    ' + i += coordword + len(forme) + sp = '' + else: + i = len(content) + sp = '' + win.HtmlPage.SetPage(txt) + win.Show(True) + + def OnPopupThree(self, event) : + datas = [self.dlist[self.list.GetItemData(self.list.GetFirstSelected())]] + last = self.list.GetFirstSelected() + while self.list.GetNextSelected(last) != -1: + last = self.list.GetNextSelected(last) + data = self.dlist[self.list.GetItemData(last)] + datas += [data] + colnames = self.first[2:] + rownames = [val[1] for val in datas] + table = [[str(val) for val in line[2:]] for line in datas] + tmpgraph = tempfile.mktemp(dir=self.parent.parent.TEMPDIR) + txt = barplot(table, rownames, colnames, self.parent.parent.RscriptsPath['Rgraph'], tmpgraph) + tmpscript = tempfile.mktemp(dir=self.parent.parent.TEMPDIR) + with open(tmpscript,'w') as f : + f.write(txt) + exec_rcode(self.parent.parent.RPath, tmpscript, wait = True) + win = MessageImage(self, -1, u"Graphique", size=(700, 500),style = wx.DEFAULT_FRAME_STYLE) + win.addsaveimage(tmpgraph) + txt = "" % tmpgraph + win.HtmlPage.SetPage(txt) + win.Show(True) + + def ongraphdendro(self, evt) : + corpus = self.parent.corpus + datas = [self.dlist[self.list.GetItemData(self.list.GetFirstSelected())]] + last = self.list.GetFirstSelected() + while self.list.GetNextSelected(last) != -1: + last = self.list.GetNextSelected(last) + data = self.dlist[self.list.GetItemData(last)] + datas += [data] + colnames = self.first[2:] + rownames = [val[1] for val in datas] + table = [[str(val) for val in line[2:]] for line in datas] + tmpgraph = tempfile.mktemp(dir=self.parent.parent.TEMPDIR) + txt = dendroandbarplot(table, rownames, colnames, self.parent.parent.RscriptsPath['Rgraph'], tmpgraph, dendro=corpus.dictpathout['Rdendro']) + tmpscript = tempfile.mktemp(dir=self.parent.parent.TEMPDIR) + with open(tmpscript,'w') as f : + f.write(txt) + exec_rcode(self.parent.parent.RPath, tmpscript, wait = True) + win = MessageImage(self, -1, u"Graphique", size=(700, 500),style = wx.DEFAULT_FRAME_STYLE) + win.addsaveimage(tmpgraph) + txt = "" % tmpgraph + win.HtmlPage.SetPage(txt) + win.Show(True) + + def OnSize(self, event): + w,h = self.GetClientSizeTuple() + self.list.SetDimensions(0, 0, w, h) + + def OnColClick(self,event): + self.do_greyline() + +class message(wx.Frame): + def __init__(self, *args, **kwds): + # begin wxGlade: MyFrame.__init__ + kwds["style"] = wx.DEFAULT_FRAME_STYLE + wx.Frame.__init__(self, *args, **kwds) + self.HtmlPage=wx.html.HtmlWindow(self, -1) + if "gtk2" in wx.PlatformInfo: + self.HtmlPage.SetStandardFonts() + self.HtmlPage.SetFonts('Courier','Courier') + + + self.button_1 = wx.Button(self, -1, "Fermer") + self.Bind(wx.EVT_BUTTON, self.OnCloseMe, self.button_1) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + self.__do_layout() + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyFrame.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_2.Add(self.HtmlPage, 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0) + sizer_2.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ADJUST_MINSIZE, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetAutoLayout(True) + self.SetSizer(sizer_1) + self.Layout() + # end wxGlade + + def OnCloseMe(self, event): + self.Close(True) + + def OnCloseWindow(self, event): + self.Destroy() + + +def getSmallUpArrowData(): + return \ +'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\ +\x00\x00\x00\x1f\xf3\xffa\x00\x00\x00\x04sBIT\x08\x08\x08\x08|\x08d\x88\x00\ +\x00\x00C\xb0\x89\ +\xd3.\x10\xd1m\xc3\xe5*\xbc.\x80i\xc2\x17.\x8c\xa3y\x81\x01\x00\xa1\x0e\x04e\ +?\x84B\xef\x00\x00\x00\x00IEND\xaeB`\x82" + +def getSmallDnArrowBitmap(): + return wx.BitmapFromImage(getSmallDnArrowImage()) + +def getSmallDnArrowImage(): + stream = cStringIO.StringIO(getSmallDnArrowData()) + return wx.ImageFromStream(stream) diff --git a/search_tools.py b/search_tools.py new file mode 100644 index 0000000..ae0776f --- /dev/null +++ b/search_tools.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2011 Pierre Ratinaud +#Lisense: GNU/GPL + +import wx +from search_list import SearchList +from dialog import SearchDial +import codecs + + +class SearchFrame(wx.Frame): + def __init__(self, parent, id, title, corpus, size=(800, 500)): + # begin wxGlade: MyFrame.__init__ + #kwds["style"] = wx.DEFAULT_FRAME_STYLE + wx.Frame.__init__(self, parent, id) + self.parent = parent + search_id = wx.NewId() + self.Bind(wx.EVT_MENU, self.onsearch, id = search_id) + self.accel_tbl = wx.AcceleratorTable([(wx.ACCEL_CTRL, ord('F'), search_id)]) + self.SetAcceleratorTable(self.accel_tbl) + + self.corpus = corpus + dlg = wx.ProgressDialog(u"Traitements", u"lecture du tableau...", maximum = 4, parent=self, style = wx.PD_APP_MODAL|wx.PD_AUTO_HIDE|wx.PD_ELAPSED_TIME) + dlg.Center() + dlg.Update(1) + with codecs.open(corpus.dictpathout['chisqtable'], 'r', parent.SysEncoding) as f : + chisqtable = [line.replace('\n','').replace('"','').replace(',','.').split(';') for line in f] + first = chisqtable[0] + first.pop(0) + chisqtable.pop(0) + dlg.Update(2) + self.dchisqtable = dict([[i, [i, line[0]] + [float(val) for val in line[1:]]] for i, line in enumerate(chisqtable)]) + self.dindex = dict([[line[0], i] for i,line in enumerate(chisqtable)]) + #self.text_ctrl_1 = wx.TextCtrl(self, -1, "", style=wx.TE_MULTILINE) + #nbactives = len(self.corpus.actives) + dlg.Update(3) + with open(corpus.dictpathout['ContEtOut'], 'r') as f : + nbetoiles = len(f.readlines()) + with open(corpus.dictpathout['Contout'], 'r') as f : + nbactives = len(f.readlines()) + dlg.Update(4, u"Ouverture...") + self.liste = SearchList(self, parent, self.dchisqtable, first, nbactives, nbetoiles) + dlg.Destroy() + #self.HtmlPage = wx.html.HtmlWindow(self, -1) + #if "gtk2" in wx.PlatformInfo: + # self.HtmlPage.SetStandardFonts() + #self.HtmlPage.SetFonts('Courier', 'Courier') + + self.button_1 = wx.Button(self, -1, "Fermer") + self.Bind(wx.EVT_BUTTON, self.OnCloseMe, self.button_1) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + self.SetTitle(u'Navigation') + self.SetSize(wx.Size(400,700)) + self.__do_layout() + # end wxGlade + + def __do_layout(self): + # begin wxGlade: MyFrame.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_2.Add(self.liste, 1, wx.EXPAND | wx.ADJUST_MINSIZE, 0) + #sizer_2.Add(self.HtmlPage, 1, wx.EXPAND | wx.ADJUST_MINSIZE, 0) + sizer_2.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ADJUST_MINSIZE, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetAutoLayout(True) + self.SetSizer(sizer_1) + self.Layout() + # end wxGlade + + def OnCloseMe(self, event): + self.Show(False) + + def OnCloseWindow(self, event): + self.Show(False) + + def onsearch(self, evt) : + if evt is not None : + self.dial = SearchDial(self, self.liste, 1, True) + self.dial.ShowModal() + self.dial.Destroy() + else : + self.dial = SearchDial(self, self.liste, 1, False) diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8a96984 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +""" +This is a setup.py script generated by py2applet + +Usage: + python setup.py py2app +""" + +from setuptools import setup +import os +DATA_FILES=['configuration','Rscripts','images','dictionnaires','locale','son_fin.wav'] +#DATA_FILES=[] +#for rep in replist : +# DATA_FILES+=os.listdir(rep) +print DATA_FILES +APP = ['iramuteq.py'] +#DATA_FILES = ['-r', 'configuration*,Rscripts/*'] +OPTIONS = {'argv_emulation': True, + 'iconfile':('images/iraicone.icns')} + +setup( + app=APP, + data_files=DATA_FILES, + options={'py2app': OPTIONS}, + setup_requires=['py2app'], +) \ No newline at end of file diff --git a/setup.py.win b/setup.py.win new file mode 100644 index 0000000..0692a37 --- /dev/null +++ b/setup.py.win @@ -0,0 +1,50 @@ +# setup.py +from distutils.core import setup +import py2exe +import os +import glob + +list_conf = os.listdir("configuration") +conf = [os.path.join("configuration",f) for f in list_conf if f != '.svn'] + +list_r = os.listdir("Rscripts") +rscripts = [os.path.join("Rscripts",f) for f in list_r if f != '.svn'] + +list_i = os.listdir("images") +images = [os.path.join("images",f) for f in list_i if f != '.svn'] + +list_d = os.listdir("dictionnaires") +dicos = [os.path.join("dictionnaires", f) for f in list_d if f !='.svn'] + +excludes = ['_gtkagg', '_tkagg', 'curses', 'pywin.debugger', + 'pywin.debugger.dbgcon', 'pywin.dialogs', 'tcl', + 'Tkconstants', 'Tkinter'] + +dll_excludes = ['tcl85.dll', 'tk85.dll'] + + +py26MSdll = glob.glob(r"dll\\*.*") + +data_files = [("Microsoft.VC90.CRT", py26MSdll), + ("lib\\Microsoft.VC90.CRT", py26MSdll),] +data_files += [("configuration",conf), + ("Rscripts",rscripts), + ("locale\\fr_FR\\LC_MESSAGES", ["locale\\fr_FR\\LC_MESSAGES\\iramuteq.mo"]), + ("locale\\en\\LC_MESSAGES", ["locale\\en\\LC_MESSAGES\\iramuteq.mo"]), + ("dictionnaires", dicos), + ("images",images), + ("",["gpl-2.0.txt","gpl-2.0-fr.txt","son_fin.wav"])] +setup( +windows = [ +{ +"script": "iramuteq.py", +"icon_resources": [(1, "images\\iraiconw7.ico")] +} +], +options={"py2exe":{"packages":["wx", "dbhash"], + "excludes" : excludes, + "dll_excludes" : dll_excludes,} + }, +data_files = data_files, +) +#incomplet diff --git a/sheet.py b/sheet.py new file mode 100644 index 0000000..c4fbd69 --- /dev/null +++ b/sheet.py @@ -0,0 +1,35 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + + +from wx.lib import sheet +import wx + + +class MySheet(sheet.CSheet): + def __init__(self, parent): + sheet.CSheet.__init__(self, parent) + self.parent=parent + self.row = self.col = 0 + + def OnGridSelectCell(self, event): + self.row, self.col = event.GetRow(), event.GetCol() + value = self.GetColLabelValue(self.col) + self.GetRowLabelValue(self.row) + event.Skip() + + def Populate(self,content): + c=0 + for r in content: + c+=1 + nrow=len(content) + print 'nrow', nrow + self.SetNumberRows(nrow) + ncol=len(content[1]) + print 'ncol',ncol + self.SetNumberCols(ncol) + for y in range(0,nrow): + for i in range(0,ncol): + self.SetCellValue(y,i,str(content[y][i])) \ No newline at end of file diff --git a/son_fin.wav b/son_fin.wav new file mode 100644 index 0000000..6de5fe6 Binary files /dev/null and b/son_fin.wav differ diff --git a/tabafcm.py b/tabafcm.py new file mode 100644 index 0000000..ae91828 --- /dev/null +++ b/tabafcm.py @@ -0,0 +1,105 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + +import wx +import os +from chemins import ffr, ConstructAfcmPath, ConstructPathOut +from functions import exec_rcode, check_Rresult +from ProfList import * +from dialog import PrefQuestAlc +import tempfile +from time import sleep + +class AFCMQ(): + def __init__(self, parent, LISTNUMACTIVE, LISTVARSUP): + #FIXME + self.parent = parent + txt = '' + self.tempgraph = tempfile.mktemp(dir=parent.TEMPDIR) + #if parent.g_id: rownames = '1' + #else : rownames = 'NULL' + #if parent.g_header : header = 'TRUE' + #else : header = 'FALSE' + txt += """ + datadm <- read.table("%s", header = TRUE, sep = ';', quote='"', encoding="%s",row.names=1) + """ % (ffr(parent.tableau.parametre['csvfile']), parent.tableau.parametre['encodage']) + if len(LISTVARSUP) == 1 : + strlistsup = str(tuple(LISTVARSUP)).replace(',', '') + else: + strlistsup = str(tuple(LISTVARSUP)) + if len(LISTNUMACTIVE) == 1: + strlistact = str(tuple(LISTNUMACTIVE)).replace(',', '') + else: + strlistact = str(tuple(LISTNUMACTIVE)) + txt += """ + source("%s") + """ % self.parent.RscriptsPath['Rgraph'] + txt += """ + lact<-c%s+1 + """ % strlistact + txt += """ + lsup=c%s+1 + """ % strlistsup + txt += """ + filename<-"%s" + """ % ffr(self.tempgraph) + #FIXME : faire une fonction pour le graph + txt += """ + library(MASS) + dataact<-datadm[,lact] + act <- mca(dataact, abbrev = TRUE) + datasup<-datadm[,lsup] + sup <- predict(act, datasup, type="factor") + ftab<-cbind(dataact,datasup) + #ftab<- + #library(ca) + #debs<-ncol(dataact)+1 + #fins<-ncol(dataact)+ncol(datasup) + #ftab.mjca<-mjca(ftab,supcol=c(debs:fins),nd=3) + open_file_graph(filename, width = 800, height = 800) + plot(act) + dev.off() + #plot(ftab.mjca) + #print(ftab.mjca) + """ + tmpfile = tempfile.mktemp(dir=parent.TEMPDIR) + tmpscript = open(tmpfile, 'w') + tmpscript.write(txt) + tmpscript.close() + pid = exec_rcode(self.parent.RPath, tmpfile, wait = False) + while pid.poll() == None : + sleep(0.2) + check_Rresult(self.parent, pid) + + def DoLayout(self): + #FIXME + txt = '' % self.tempgraph + return txt + +# def OnRGL(self, event): +# self.parent.text_ctrl_1.write('runrgl\n') +# RAFC3DRGL = os.path.join(self.PathFile, self.RAFC3DRGL) +# RunRgl(RAFC3DRGL) + +class DoAFCM(): + def __init__(self, parent): + dlg = PrefQuestAlc(parent, sim = True) + #dlg = CHDDialog(parent, -1, u"AFCM", size=(350, 400), style=wx.DEFAULT_DIALOG_STYLE) + dlg.CenterOnParent() + self.val = dlg.ShowModal() + if self.val == wx.ID_OK: + LISTNUMACTIVE = dlg.nactives + LISTVARSUP = dlg.varsup + print LISTNUMACTIVE + print LISTVARSUP + afcm = AFCMQ(parent, LISTNUMACTIVE, LISTVARSUP) + txtgraph = afcm.DoLayout() + parent.newtab = wx.html.HtmlWindow(parent.nb, -1) + if "gtk2" in wx.PlatformInfo: + parent.newtab.SetStandardFonts() + parent.newtab.SetPage(txtgraph) + parent.nb.AddPage(parent.newtab, u"AFCM") + parent.nb.SetSelection(parent.nb.GetPageCount() - 1) + parent.ShowTab(wx.EVT_BUTTON) diff --git a/tabchdalc.py b/tabchdalc.py new file mode 100644 index 0000000..39fd377 --- /dev/null +++ b/tabchdalc.py @@ -0,0 +1,219 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ConstructPathOut, ChdTxtPathOut, ConstructAfcUciPath, ffr +from functions import sortedby, CreateIraFile, print_liste, exec_rcode, check_Rresult +from PrintRScript import RchdQuest +from layout import OpenCHDS, PrintRapport +from dialog import PrefQuestAlc +import os +import sys +import wx +from numpy import * +import tempfile +import time + + +class AnalyseQuest(): + def __init__(self, parent): + dlg = PrefQuestAlc(parent) + dlg.CenterOnParent() + self.val = dlg.ShowModal() + if self.val == wx.ID_OK : + if dlg.m_radioBox1.GetSelection() == 1 : + ListAct = dlg.nactives + ListSup = dlg.varsup + nbcl_p1 = dlg.spin_nbcl.GetValue() + mincl = dlg.spin_mincl.GetValue() + DoQuestAlceste(parent, ListAct, ListSup, nbcl = nbcl_p1, mincl = mincl) + else: + nbcl_p1 = dlg.spin_nbcl.GetValue() + mincl = dlg.spin_mincl.GetValue() + DoQuestAlceste(parent, nbcl = nbcl_p1, mincl = mincl) + +class DoQuestAlceste: + def __init__(self, parent, ListAct=False, ListSup=False, nbcl = 10, mincl = 10): + self.t1 = time.time() +#------------------------------------------------------------------- + dlg = wx.ProgressDialog("Traitements", + "Veuillez patienter...", + maximum=5, + parent=parent, + style=wx.PD_APP_MODAL | wx.PD_AUTO_HIDE | wx.PD_ELAPSED_TIME + ) + dlg.Center() + count = 1 + keepGoing = dlg.Update(count) +#------------------------------------------------------------------- + self.pathout = ConstructPathOut(parent.tableau.parametre['filename'], 'AlcesteQuest') + self.DictForme = {} + self.DictFormeSup = {} + self.Min = 10 + self.Linecontent = [] + self.parent = parent + self.RPath = self.parent.PathPath.get('PATHS', 'rpath') + self.dictpathout = ChdTxtPathOut(self.pathout) + self.parent.tableau.dictpathout = self.dictpathout + self.clnb = '' + self.ListAct = ListAct + self.ucecla = '' + self.parent = parent +#----------------------------------------------------------- + count += 1 + dlg.Update(count, u"passage en O/1") + if not ListAct: + self.parent.tableau.make_01_alc_format(self.dictpathout['Act01']) + else: + self.parent.tableau.make_01_from_selection(ListAct, ListSup) + file = open(self.dictpathout['listeuce1'], 'w') + file.write('num uce;num uc\n') + for i in range(0, len(self.parent.tableau.linecontent)): + file.write('%i;%i\n' % (i, i)) + file.close() + self.nbind = len(self.parent.tableau.linecontent) +#------------------------------------------------------------ + RchdQuest(self.dictpathout, parent.RscriptsPath, nbcl, mincl) +#------------------------------------------------------------ + count += 1 + dlg.Update(count, u"Analyse (patientez...)") + + pid = exec_rcode(self.RPath, self.dictpathout['Rchdquest'], wait = False) + while pid.poll() == None : + dlg.Pulse(u"Analyse (patientez...)") + time.sleep(0.2) + check_Rresult(self.parent, pid) +#------------------------------------------------------------ + count += 1 + dlg.Update(count, u"Ecriture des résultats") + self.parent.tableau.buildprofil() + self.clnb = self.parent.tableau.clnb + self.ucecla = self.parent.tableau.ucecla + self.BuildProfile() + temps = time.time() - self.t1 + PrintRapport(self, 'quest') + self.parent.tableau.save_tableau(self.dictpathout['db']) + CreateIraFile(self.dictpathout, self.clnb, corpname = os.path.basename(parent.filename), section = 'questionnaire') + afc_graph_list = [[os.path.basename(self.dictpathout['AFC2DL_OUT']), u'Variables actives - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DSL_OUT']), u'variables illustratives - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCL_OUT']), u'Classes - Coordonnées - facteur 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCoul']), u'Variables actives - Corrélation - facteur 1/2'], + [os.path.basename(self.dictpathout['AFC2DCoulSup']), u'Variables illustratives - Corrélation - facteur 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCoulCl']), u'Classes - Corrélations - facteurs 1 / 2'], ] + chd_graph_list = [[os.path.basename(self.dictpathout['dendro1']), u'dendrogramme à partir de chd1']] + chd_graph_list.append([os.path.basename(self.dictpathout['arbre1']), u'chd1']) + print_liste(self.dictpathout['liste_graph_afc'], afc_graph_list) + print_liste(self.dictpathout['liste_graph_chd'], chd_graph_list) + + self.tableau = self.parent.tableau + OpenCHDS(self.parent, self, self.dictpathout['ira'], False) +#------------------------------------------------------------ + print 'fini', time.time() - self.t1 + count += 1 + dlg.Update(count, "Fini") + + def BuildProfile(self): + print 'build profile' + txt = '' + txt += """ + source("%s") + """ % self.parent.RscriptsPath['chdfunct'] + txt += """ + load("%s") + """ % self.dictpathout['RData'] + txt += """ + dataact<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', row.names = 1, na.strings = 'NA') + """ % self.dictpathout['Contout'] + txt += """ + dataet<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', row.names = 1, na.strings = 'NA') + """ % self.dictpathout['ContEtOut'] + txt += """ + clnb<-%i + """ % self.clnb + txt += """ + tablesqrpact<-BuildProf(as.matrix(dataact),n1,clnb) + tablesqrpet<-BuildProf(as.matrix(dataet),n1,clnb) + PrintProfile(n1,tablesqrpact[4],tablesqrpet[4],tablesqrpact[5],tablesqrpet[5],%i,"%s","%s") + """ % (self.clnb, self.dictpathout['PROFILE_OUT'], self.dictpathout['ANTIPRO_OUT']) + txt += """ + colnames(tablesqrpact[[2]])<-paste('classe',1:clnb,sep=' ') + colnames(tablesqrpact[[1]])<-paste('classe',1:clnb,sep=' ') + colnames(tablesqrpet[[2]])<-paste('classe',1:clnb,sep=' ') + colnames(tablesqrpet[[1]])<-paste('classe',1:clnb,sep=' ') + chistabletot<-rbind(as.data.frame(tablesqrpact[2]),as.data.frame(tablesqrpet[2])) + ptabletot<-rbind(as.data.frame(tablesqrpact[1]),as.data.frame(tablesqrpet[1])) + gbcluster<-n1 + write.csv2(chistabletot,file="%s") + """ % self.dictpathout['chisqtable'] + txt += """ + write.csv2(ptabletot,file="%s") + """ % self.dictpathout['ptable'] + txt += """ + write.csv2(gbcluster,file="%s") + """ % self.dictpathout['SbyClasseOut'] + if self.clnb > 2 : + txt += """ + library(ca) + rowtot<-nrow(dataact)+nrow(dataet) + afctable<-rbind(as.matrix(dataact),as.matrix(dataet)) + colnames(afctable)<-paste('classe',1:clnb,sep=' ') + afc<-ca(afctable,suprow=((nrow(dataact)+1):rowtot),nd=(ncol(afctable)-1)) + debet<-nrow(dataact)+1 + debsup<-NULL + fin<-rowtot + afc<-AddCorrelationOk(afc) + source("%s") + """ % self.parent.RscriptsPath['Rgraph'] + + txt += """ + afc <- summary.ca.dm(afc) + afc_table <- create_afc_table(afc) + write.csv2(afc_table$facteur, file = "%s") + write.csv2(afc_table$colonne, file = "%s") + write.csv2(afc_table$ligne, file = "%s") + """ % (self.dictpathout['afc_facteur'], self.dictpathout['afc_col'], self.dictpathout['afc_row']) + + txt += """ + xlab <- paste('facteur 1 - ', round(afc$facteur[1,2],2), sep = '') + ylab <- paste('facteur 2 - ', round(afc$facteur[2,2],2), sep = '') + xlab <- paste(xlab, ' %', sep = '') + ylab <- paste(ylab, ' %', sep = '') + """ + + txt += """ + PARCEX<-%s + """ % "0.9" + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='coord', deb=1, fin=(debet-1), xlab = xlab, ylab = ylab) + """ % (self.dictpathout['AFC2DL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='coord', deb=debet, fin=fin, xlab = xlab, ylab = ylab) + """ % (self.dictpathout['AFC2DSL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", col = TRUE, what='coord', xlab = xlab, ylab = ylab) + """ % (self.dictpathout['AFC2DCL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='crl', deb=1, fin=(debet-1), xlab = xlab, ylab = ylab) + """ % (self.dictpathout['AFC2DCoul']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='crl', deb=debet, fin=fin, xlab = xlab, ylab = ylab) + """ % (self.dictpathout['AFC2DCoulSup']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", col = TRUE, what='crl', xlab = xlab, ylab = ylab) + """ % (self.dictpathout['AFC2DCoulCl']) + txt += """ + save.image(file="%s") + """ % self.dictpathout['RData'] + tmpfile = tempfile.mktemp(dir=self.parent.TEMPDIR) + tmpscript = open(tmpfile, 'w') + tmpscript.write(txt) + tmpscript.close() + pid = exec_rcode(self.parent.RPath, tmpfile, wait = False) + while pid.poll() == None : + time.sleep(0.2) + check_Rresult(self.parent, pid) + temps = time.time() - self.t1 + self.minutes, self.seconds = divmod(temps, 60) + self.hours, self.minutes = divmod(self.minutes, 60) diff --git a/tabchddist.py b/tabchddist.py new file mode 100644 index 0000000..2508bb4 --- /dev/null +++ b/tabchddist.py @@ -0,0 +1,287 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008 Pierre Ratinaud +#Lisense: GNU/GPL + +import wx +import os +#from rchdng import RchdFunct +from chemins import ffr, ConstructPathOut,ChdTxtPathOut +#from layout import PrintRapport +from openanalyse import OpenAnalyse +from ConfigParser import ConfigParser +from functions import CreateIraFile, print_liste, exec_rcode, check_Rresult +from dialog import CHDDialog, PrefQuestAlc, ClusterNbDialog +import tempfile +from numpy import * +import time + + +def RchdFunct(self,parent, rep_out, CLASSIF, encode, RscriptsPath): + SEUIL_CHI2_PROF=2 + txt="" + txt+=""" + source("%s") + """%RscriptsPath['chdfunct'] + txt+=""" + dataact<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', na.strings = '') + """%ffr(rep_out['FILE_ACT_TEMP']) + txt+=""" + dataet<-read.csv2("%s", header = FALSE, sep = ';',quote = '\"', na.strings = '') + """%ffr(rep_out['FILE_ET_TEMP']) + + fileout=tempfile.mktemp(dir=parent.TEMPDIR) + + txt+=""" + dissmat<-daisy(dataact, metric = 'gower', stand = FALSE) + chd<-diana(dissmat,diss=TRUE,) + height<-chd$height + sortheight<-sort(height,decreasing=TRUE) + BestCLusterNb<-as.matrix(FindBestCluster(sortheight)) + write.csv2(BestCLusterNb,file="%s",row.names=FALSE) + """%ffr(fileout) + txt+=""" + save.image(file="%s") + """%rep_out['RData'] + Rtmp=tempfile.mktemp(dir=parent.TEMPDIR) + file=open(Rtmp,'w') + file.write(txt) + file.close() + pid = exec_rcode(parent.RPath, Rtmp, wait = False) + while pid.poll() == None : + time.sleep(0.2) + check_Rresult(parent, pid) + + file=open(fileout,'rU') + lcl=file.readlines() + file.close() + ListClasseOk=[line.replace('\n','').replace('"','') for line in lcl] + ListClasseOk.pop(0) + + clusterdlg = ClusterNbDialog(ListClasseOk, parent, -1, "Nombre de classe", size=(350, 200), + style = wx.DEFAULT_DIALOG_STYLE + ) + clusterdlg.CenterOnParent() + + # this does not return until the dialog is closed. + val = clusterdlg.ShowModal() + + if val == wx.ID_OK: + if type(ListClasseOk)!=float : + CLASSE_CH=ListClasseOk[clusterdlg.list_box_1.GetSelection()] + else : + CLASSE_CH=ListClasseOk + else: + print "You pressed Cancel\n" + clusterdlg.Destroy() + ClusterNb=int(CLASSE_CH) + txt='' + txt+=""" + load("%s") + """%rep_out['RData'] + txt += """ + source("%s") + """% RscriptsPath['chdfunct'] + txt+=""" + clnb<-%i + """%ClusterNb + txt+=""" + classes<-as.data.frame(cutree(as.hclust(chd), k=clnb))[,1] + datatot<-cbind(dataact,dataet) + dataclasse<-cbind(datatot,classes) + dataactclasses<-cbind(dataact,classes) + dataetclasses<-cbind(dataet,classes) + afctableact<-BuildContTable(dataactclasses) + afctableet<-BuildContTable(dataetclasses) + tablesqrpact<-BuildProf(afctableact,dataactclasses,clnb) + tablesqrpet<-BuildProf(afctableet,dataetclasses,clnb) + chistabletot<-rbind(as.data.frame(tablesqrpact[2]),as.data.frame(tablesqrpet[2])) + ptabletot<-rbind(as.data.frame(tablesqrpact[1]),as.data.frame(tablesqrpet[1])) + cont_out<-rbind(as.data.frame(tablesqrpact[3]),as.data.frame(tablesqrpet[3])) + colnames(chistabletot)<-paste('classe',1:clnb,sep=' ') + colnames(ptabletot)<-paste('classe',1:clnb,sep=' ') + cont_out <- cont_out[,-ncol(cont_out)] + colnames(cont_out)<-paste('classe',1:clnb,sep=' ') + write.csv2(chistabletot,file="%s") + """%rep_out['chisqtable'] + txt+=""" + write.csv2(ptabletot,file="%s") + """%rep_out['ptable'] + txt+=""" + write.csv2(cont_out,file="%s") + """%rep_out['Contout'] + txt+=""" + PrintProfile(dataclasse,tablesqrpact[4],tablesqrpet[4],tablesqrpact[5],tablesqrpet[5],clnb,"%s","%s") + """%(rep_out['PROFILE_OUT'],rep_out['ANTIPRO_OUT']) + txt+=""" + gbcluster<-dataclasse[ncol(dataclasse)] + write.csv2(gbcluster,file="%s") + """%rep_out['SbyClasseOut'] + txt+=""" + library(ca) + library(cluster) + afctable<-rbind(afctableact,afctableet) + colnames(afctable)<-paste('classe',1:clnb,sep=' ') + afc<-ca(afctable,suprow=((nrow(afctableact)+1):nrow(cont_out)),nd=(ncol(afctable)-1)) + debet<-nrow(afctableact)+1 + fin<-nrow(cont_out) + source("%s") + debsup<-NULL + afc<-AddCorrelationOk(afc) + afc <- summary.ca.dm(afc) + afc_table <- create_afc_table(afc) + """%RscriptsPath['Rgraph'] + + txt+=""" + dendo <- as.dendrogram(as.hclust(chd)) + hthr<-sortheight[clnb] + dendocut<-cut(dendo,h=hthr) + save.image("%s") + """%rep_out['RData'] + +# txt+=""" +# PARCEX<-%s +# """%'0.9' +# txt+=""" +# PlotDendroComp(chd,"%s",200) +# """%rep_out['DENDROCOMP_OUT'] +# txt+=""" +# PlotDendroHori(dendocut$upper,"%s",200) +# """%rep_out['DENDROH_OUT'] +# txt+=""" +# PlotDendroCut(chd,"%s",200,clnb) +# """%rep_out['DENDROCUT_OUT'] + txt += """ + PARCEX<-%s + """ % "0.9" + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='coord', deb=1, fin=(debet-1)) + """ % (rep_out['AFC2DL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='coord', deb=debet, fin=fin) + """ % (rep_out['AFC2DSL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", col = TRUE, what='coord') + """ % (rep_out['AFC2DCL_OUT']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='crl', deb=1, fin=(debet-1)) + """ % (rep_out['AFC2DCoul']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='crl', deb=debet, fin=fin) + """ % (rep_out['AFC2DCoulSup']) + txt += """ + PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", col = TRUE, what='crl') + """ % (rep_out['AFC2DCoulCl']) + file=open(Rtmp,'w') + file.write(txt) + file.close() + pid = exec_rcode(parent.RPath, Rtmp, wait = False) + while pid.poll() == None : + time.sleep(0.2) + check_Rresult(parent, pid) + return ClusterNb + + +class AnalyseCHDS(): + def __init__(self, parent, numactives, varsup): + self.t1=time.time() +#------------------------------------------------------ + self.dlg=wx.ProgressDialog("Traitements", + "Veuillez patienter...", + maximum = 7, + parent=parent, + style = wx.PD_APP_MODAL|wx.PD_AUTO_HIDE|wx.PD_ELAPSED_TIME + ) + self.dlg.Center() + self.count = 1 + keepGoing = self.dlg.Update(self.count) +#------------------------------------------------------- + self.Filename=parent.filename + self.parent=parent + self.encode=parent.encode + self.numactives=numactives + self.varsup=varsup +#------------------------------------------------------- + self.count += 1 + keepGoing = self.dlg.Update(self.count) + #self.OnAnalyse() +#------------------------------------------------------- + def OnAnalyse(self): + PathOut=ConstructPathOut(self.parent.tableau.parametre['filename'],'CHDS') + self.pathout = PathOut + dictpathout = ChdTxtPathOut(PathOut) + self.dictpathout=dictpathout + self.parent.tableau.dictpathout = dictpathout + self.RPath=self.parent.PathPath.get('PATHS','rpath') +#------------------------------------------------------- + self.count += 1 + keepGoing = self.dlg.Update(self.count,u"lecture des données") + colact = self.parent.tableau.select_col(self.numactives) + colsup = self.parent.tableau.select_col(self.varsup) + self.parent.tableau.make_01_from_selection(self.numactives, self.varsup, False) + dictpathout['FILE_ACT_TEMP']=tempfile.mktemp(dir=self.parent.TEMPDIR) + savetxt(dictpathout['FILE_ACT_TEMP'],colact,fmt='%s',delimiter=';') + dictpathout['FILE_ET_TEMP']=tempfile.mktemp(dir=self.parent.TEMPDIR) + savetxt(dictpathout['FILE_ET_TEMP'],colsup,fmt='%s',delimiter=';') + +#------------------------------------------------------- + self.count += 1 + keepGoing = self.dlg.Update(self.count,u"Analyse (patientez...)") +#------------FIXME---------- + clnb=RchdFunct(self,self.parent,dictpathout, 'DIANA',self.parent.SysEncoding,self.parent.RscriptsPath) + self.clnb=clnb +#------------------------------------------------------- + self.count += 1 + keepGoing = self.dlg.Update(self.count,u"Ecriture des résultats") + return dictpathout,clnb + + + def PrintResult(self,dictpathout,clnb): + with open(self.dictpathout['SbyClasseOut'], 'rU') as filein : + content = filein.readlines() + content.pop(0) + for i, line in enumerate(content) : + line = line.replace('\n', '').replace('"', '').split(';') + self.parent.tableau.classes.append([int(line[0]) - 1, int(line[1])]) + temps=time.time()-self.t1 + self.minutes, self.seconds = divmod(temps, 60) + self.hours, self.minutes = divmod(self.minutes, 60) + #PrintRapport(self,'quest_simi') + self.parent.tableau.dictpathout = self.dictpathout + self.parent.tableau.save_tableau(self.dictpathout['db']) + CreateIraFile(dictpathout,clnb, corpname = os.path.basename(self.Filename), section = 'chd_dist_quest') +#------------------------------------------------------- + self.count += 1 + keepGoing = self.dlg.Update(self.count,u"Ouverture...") + afc_graph_list = [[os.path.basename(self.dictpathout['AFC2DL_OUT']), u'Variables actives - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DSL_OUT']), u'variables illustratives - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCL_OUT']), u'Classes - Coordonnées - facteur 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCoul']), u'Variables actives - Corrélation - facteur 1/2'], + [os.path.basename(self.dictpathout['AFC2DCoulSup']), u'Variables illustratives - Corrélation - facteur 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCoulCl']), u'Classes - Corrélations - facteurs 1 / 2'], ] + chd_graph_list = [[os.path.basename(self.dictpathout['dendro1']), u'dendrogramme à partir de chd1']] + #chd_graph_list.append(['arbre1', u'chd1']) + print_liste(self.dictpathout['liste_graph_afc'], afc_graph_list) + print_liste(self.dictpathout['liste_graph_chd'], chd_graph_list) + self.tableau = self.parent.tableau + OpenAnalyse(self.parent, dictpathout['ira'], False) +#------------------------------------------------------- + self.count += 1 + keepGoing = self.dlg.Update(self.count,u"Fini") + + +class ChdCluster(): + def __init__(self,parent): + + dlg = PrefQuestAlc(parent, sim = True) + #dlg = CHDDialog(parent,-1, u"Classification", size=(350, 400),style = wx.DEFAULT_DIALOG_STYLE) + dlg.CenterOnParent() + self.val = dlg.ShowModal() + if self.val==wx.ID_OK : + numactives=dlg.nactives + varsup=dlg.varsup + chd=AnalyseCHDS(parent, numactives, varsup) + dictpathout,clnb=chd.OnAnalyse() + chd.PrintResult(dictpathout,clnb) + parent.ShowTab(wx.EVT_BUTTON) + diff --git a/tabchi2.py b/tabchi2.py new file mode 100755 index 0000000..6a8cf55 --- /dev/null +++ b/tabchi2.py @@ -0,0 +1,426 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2010 Pierre Ratinaud +#Lisense: GNU/GPL + +import HTML +import os +import string +import wx +import os +import sys +import tempfile +from chemins import ffr,FFF +import wx.lib.sized_controls as sc +from time import sleep +from functions import exec_rcode, check_Rresult +from dialog import ChiDialog, PrefChi + +def make_res(line) : + if float(line[5]) <= 0.05 and line[6] != 'warning': + line.append('green') + elif float(line[5]) <= 0.05 and line[6] == 'warning': + line.append('blue') + else : + line.append('red') + return line + +def clean_line(result) : + return [[val for val in line if val != '**'] for line in result] + +def make_table(tabs, tab_title, res) : + return ['
    '.join(['%s' % (res[i][-1], tab_title), HTML.table(tab)]) for i,tab in enumerate(tabs)] + +def make_restab(res) : + return ['
    '.join(['%s'% (line[-1], u'Résultats'),HTML.table([['chi', line[3]],['p', line[5]]])]) for i,line in enumerate(res)] + +def make_htmlgraphs(graphs) : + return ['' % os.path.basename(val) for val in graphs] + +def make_link_list(res, text) : + return ['%s' % (i, i, chi[-1], text[i]) for i, chi in enumerate(res)] + +def make_title(res, text) : + return ['
    %s
    retour
    ' % (i, val[-1], text[i], i) for i, val in enumerate(res)] + + + + + +class MakeChi2(): + def __init__(self, parent, select1, select2, chioption): + self.OutFrame=tempfile.mktemp(dir=parent.TEMPDIR) + print self.OutFrame + self.parent=parent + self.encode=self.parent.encode + self.TEMPDIR=parent.TEMPDIR + self.RPath=parent.PathPath.get('PATHS','rpath') + self.TextCroise=[] + for i in select1 : + for j in select2 : + self.TextCroise.append(parent.tableau.colnames[i] + ' / ' + parent.tableau.colnames[j]) + rchioption = {} + for val in chioption : + if chioption[val]: + rchioption[val] = 'TRUE' + else : + rchioption[val] = 'FALSE' + txt=""" + source("%s") + """%self.parent.RscriptsPath['Rfunct'] +# if parent.tableau.: rownames=1 +# else : rownames='NULL' +# if parent.g_header : header = 'TRUE' +# else : header = 'FALSE' + txt += """ + source("%s") + """ % ffr(self.parent.RscriptsPath['Rgraph']) + txt += """ + doobs <- %s + doexp <- %s + docontrib <- %s + doresi <- %s + dopr <- %s + doprl <- %s + doprc <- %s + dograph <- %s + bw <- %s + """ % (rchioption['valobs'], rchioption['valtheo'], rchioption['contrib'], rchioption['resi'], rchioption['pourcent'], rchioption['pourcentl'], rchioption['pourcentc'], rchioption['graph'], rchioption['bw']) + txt+=""" + datadm <- ReadData("%s", encoding="%s", header = TRUE, sep = "%s",quote = '%s', na.strings = "%s",rownames= 1) + listres<-list() + listcol<-list() + cont<-1 + """%(ffr(parent.tableau.parametre['csvfile']),self.parent.encode, parent.tableau.parametre['colsep'], parent.tableau.parametre['txtsep'], self.parent.nastrings) + if len(select1)==1: + strsel1=str(select1).replace(',','') + else: + strsel1=str(select1) + if len(select2)==1: + strsel2=str(select2).replace(',','') + else: + strsel2=str(select2) + txt+=""" + for (i in c%s) {"""%strsel1 + txt+=""" + for (j in c%s) {"""%strsel2 + txt+=""" + tab<-table(datadm[,i+1],datadm[,j+1]) + if (min(dim(tab)) != 1) { + chi<-chisq.test(tab) + CS<-colSums(tab) + RS<-rowSums(tab) + GT<-sum(tab) + chi$contrib<-(tab-chi$expected)/sqrt(chi$expected * ((1 - RS/GT) %%*%% t(1 - CS/GT))) + listres[[cont]]<-chi + listcol[[cont]]<-ncol(tab) + cont<-cont+1 + } else { + chi <- list(observed = tab, residuals = tab, contrib = tab, statistic = 0, p.value = 1, expected = tab, message = 'pas de calcul') + listres[[cont]] <- chi + listcol[[cont]]<-ncol(tab) + cont <- cont + 1 + } + } + } + maxcol<-max(unlist(listcol))+1 + if (maxcol<7) {maxcol<-7} + frameout<-matrix('*',1,maxcol) + count<-0 + for (chi in listres) { + if (min(chi$expected)<5) { + att<-"warning" + } else { + att<-"" + } + if ('message' %%in%% attributes(chi)$names) { + att <- "Ce chi2 n\'a pas été calculé" + nom_colresi<-colnames(chi$observed) + chi$prl <- chi$expected + chi$prc <- chi$expected + st <- sum(chi$observed) + } else { + nom_colresi<-colnames(chi$observed) + st <- sum(chi$observed) + sc <- colSums(chi$observed) + sr <- rowSums(chi$observed) + chi$prl <- round((chi$observed/sr)*100,2) + chi$prc <- t(round((t(chi$observed)/sc)*100,2)) + } + fileout<-paste('histo',%i,sep='') + fileout<-paste(fileout,'_',sep='') + fileout<-paste(fileout,count,sep='') + fileout<-paste(fileout,'.png',sep='') + count<-count+1 + fileout<-file.path("%s",fileout) + if (max(nchar(colnames(chi$observed)))>15) { + leg <- 1:length(colnames(chi$observed)) + } else { + leg <- colnames(chi$observed) + } + if (dograph) { + width<-ncol(chi$observed)*100 + if (width < 350) {width <- 350} + open_file_graph(fileout,width = width, height = 300) + par(mar=c(0,0,0,0)) + layout(matrix(c(1,2),1,2, byrow=TRUE),widths=c(3,1)) + par(mar=c(2,2,1,0)) + par(cex=0.8) + if (!bw) colors <- rainbow(length(rownames(chi$observed))) + else colors <- gray.colors(length(rownames(chi$observed))) + barplot(chi$prl,names.arg = leg, beside=TRUE,border=NA, col=colors) + par(mar=c(0,0,0,0)) + par(cex=0.8) + plot(0, axes = FALSE, pch = '') + legend(x = 'center' , rownames(chi$observed), fill = colors) + dev.off() + } + chi$prl <- cbind(chi$prl, total = rowSums(chi$prl)) + chi$prc <- rbind(chi$prc, total = colSums(chi$prc)) + chi$observed<-rbind(chi$observed,total=colSums(chi$observed)) + chi$observed<-cbind(chi$observed,total=rowSums(chi$observed)) + chi$pr <- round((chi$observed/st)*100,2) + chi$expected<-rbind(chi$expected,total=colSums(chi$expected)) + chi$expected<-cbind(chi$expected,total=rowSums(chi$expected)) + chi$expected<-round(chi$expected,digits=2) + chi$residuals<-round(chi$residuals,digits=2) + chi$contrib<-round(chi$contrib, digits=2) + nom_col<-colnames(chi$observed) + + if (ncol(chi$observed)\n + \n + \n +

    Test du Chi2

    \n +
    +
    + Légende :
    + p <= 0.05
    + p <= 0.05 mais il y a des valeurs théoriques < 5
    + p > 0.05 +


    + """%self.parent.SysEncoding + + + pretxt = '
    \n'.join(links)+'


    \n' + txt = '


    \n'.join(['

    '.join([tab[i] for tab in allhtml]) for i,val in enumerate(res)]) + txt = header + pretxt + txt + '\n' + + fileout=os.path.join(self.TEMPDIR,'resultats-chi2_%s.html'%str(self.parent.FreqNum)) + file=open(fileout,'w') + file.write(txt) + file.close() + ListFile.append(fileout) + return ListFile + +class ChiSquare(): + def __init__(self,parent): + chioption = { 'valobs' : True, + 'valtheo' : True, + 'resi' : False, + 'contrib' : True, + 'pourcent' : False, + 'pourcentl' : True, + 'pourcentc' : True, + 'graph' : True, + 'bw' : False, + } + dlg = ChiDialog(parent, -1, u"Chi2", chioption, size=(400, 350), + style = wx.DEFAULT_DIALOG_STYLE + ) + dlg.CenterOnParent() + val = dlg.ShowModal() + if val==wx.ID_OK : + self.dlg=wx.ProgressDialog("Traitements", + "Veuillez patienter...", + maximum = 4, + parent=parent, + style = wx.PD_APP_MODAL|wx.PD_AUTO_HIDE|wx.PD_ELAPSED_TIME + ) + self.dlg.Center() + self.count = 1 + keepGoing = self.dlg.Update(self.count) + + ColSel1 = dlg.list_box_1.GetSelections() + ColSel2 = dlg.list_box_2.GetSelections() + if dlg.chiopt : + chioption['valobs'] = dlg.dial.check1.GetValue() + chioption['valtheo'] = dlg.dial.check2.GetValue() + chioption['resi'] = dlg.dial.check3.GetValue() + chioption['contrib'] = dlg.dial.check4.GetValue() + chioption['pourcent'] = dlg.dial.check5.GetValue() + chioption['pourcentl'] = dlg.dial.check6.GetValue() + chioption['pourcentc'] = dlg.dial.check7.GetValue() + chioption['graph'] = dlg.dial.check8.GetValue() + chioption['bw'] = dlg.dial.checkbw.GetValue() + dlg.dial.Destroy() + + self.count += 1 + keepGoing = self.dlg.Update(self.count,u"Analyse dans R...") + analyse=MakeChi2(parent,ColSel1,ColSel2, chioption) + + self.count += 1 + keepGoing = self.dlg.Update(self.count,u"Ecriture des résultats") + + listfileout = analyse.dolayout(chioption) + #listfileout=dlg.ShowChi2(ColSel1,ColSel2) + parent.FreqNum += 1 + parent.DictTab[u"Chi2_%s*"%parent.FreqNum]=listfileout + parent.newtab = wx.html.HtmlWindow(parent.nb, -1) + if "gtk2" in wx.PlatformInfo: + parent.newtab.SetStandardFonts() + parent.newtab.LoadPage(listfileout[len(listfileout)-1]) + parent.nb.AddPage(parent.newtab,u"Chi2_%s*"%parent.FreqNum) + parent.nb.SetSelection(parent.nb.GetPageCount()-1) + parent.ShowTab(wx.EVT_BUTTON) + parent.DisEnSaveTabAs(True) + self.count += 1 + keepGoing = self.dlg.Update(self.count,u"Fini") + else : + if dlg.chiopt : + dlg.dial.Destroy() + dlg.Destroy() diff --git a/tabfrequence.py b/tabfrequence.py new file mode 100644 index 0000000..925a1df --- /dev/null +++ b/tabfrequence.py @@ -0,0 +1,227 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008 Pierre Ratinaud +#Lisense: GNU/GPL + +#from __future__ import division +import os +import sys +import wx +import wx.html +from chemins import ffr, FFF +import tempfile +from time import sleep +from functions import exec_rcode, check_Rresult + +class FreqDialog(wx.Dialog): + def __init__( + self, parent, ID, title, size=wx.DefaultSize, pos=wx.DefaultPosition, + style=wx.DEFAULT_DIALOG_STYLE | wx.CANCEL | wx.OK + ): + pre = wx.PreDialog() + pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP) + pre.Create(parent, ID, title, pos, size, style) + self.PostCreate(pre) + self.parent = parent + sizer = wx.BoxSizer(wx.VERTICAL) + self.content = parent.content + self.header = parent.tableau.get_colnames() + LABELLIST = [] + for i in self.header: + forme = i + if len(forme) > 60 : + LABELLIST.append(i[0:60]) + else: + LABELLIST.append(i) + self.list_box_1 = wx.ListBox(self, -1, choices=LABELLIST, style=wx.LB_EXTENDED | wx.LB_HSCROLL) + sizer.Add(self.list_box_1, 0, 5) + + btnsizer = wx.BoxSizer(wx.HORIZONTAL) + + btn = wx.Button(self, wx.ID_CANCEL) + btn.SetHelpText("Annuler") + btnsizer.Add(btn) + + btn = wx.Button(self, wx.ID_OK) + btn.SetHelpText("Valider") + btn.SetDefault() + btnsizer.Add(btn) + + sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL | wx.ALIGN_CENTER_HORIZONTAL, 5) + self.SetSizer(sizer) + sizer.Fit(self) + self.SetTitle(u"Sélection") + + # end wxGlade + +class Frequences(): + def __init__(self, parent): + #self.Filename = parent.filename + self.fileforR = parent.tableau.parametre['csvfile'] + self.TEMPDIR = parent.TEMPDIR + self.num = parent.FreqNum + self.DICTFILE = {} + self.RPath = parent.PathPath.get('PATHS', 'rpath') + self.parent=parent + dlg = FreqDialog(parent, -1, u"Fréquences", size=(350, 200), + style=wx.DEFAULT_DIALOG_STYLE) + dlg.CenterOnParent() + val = dlg.ShowModal() + if val == wx.ID_OK : + ColSel = dlg.list_box_1.GetSelections() + self.header=dlg.header + dlg.Destroy() + listfileout = self.ShowFreq(ColSel) + parent.FreqNum += 1 + parent.DictTab[u"Fréquences_%s*" % parent.FreqNum] = listfileout + parent.FileTabList.append(listfileout) + parent.newtab = wx.html.HtmlWindow(parent.nb, -1) + if "gtk2" in wx.PlatformInfo: + parent.newtab.SetStandardFonts() + parent.newtab.LoadPage(listfileout[len(listfileout) - 1]) + parent.nb.AddPage(parent.newtab, u"Fréquences_%s*" % parent.FreqNum) + parent.nb.SetSelection(parent.nb.GetPageCount() - 1) + parent.ShowAPane("Tab_content") + parent.DisEnSaveTabAs(True) + else : + dlg.Destroy() + + def ShowFreq(self, select): + listfile = [] + listfile.append(False) + self.ListFileForR = [] + self.ListTitre = [] + self.OutFrame = tempfile.mktemp(dir=self.TEMPDIR) + if self.parent.g_id: rownames = '1' + else: rownames = 'NULL' + if self.parent.g_header : header = 'TRUE' + else : header = 'FALSE' + self.ListTitre = [self.header[i] for i in select] + self.ListFileForR = [ffr(os.path.join(self.TEMPDIR, 'freq%s_%s.jpeg' % (str(self.num), i))) for i in range(len(select))] + listfile = [os.path.join(self.TEMPDIR, 'freq%s_%s.jpeg' % (str(self.num), i)) for i in range(len(select))] + sel = 'c(' + ','.join([str(val + 1) for val in select]) + ')' + listfiles = 'c("' + '","'.join(self.ListFileForR) + '")' + titles = 'c("' + '","'.join(self.ListTitre) + '")' + txt = """ + source("%s") + """ % self.parent.RscriptsPath['Rfunct'] + + txt += """ + datadm <- ReadData("%s", encoding="%s", header = TRUE, sep = ";",quote = "\\%s", na.strings = "%s",rownames=1) + """ % (ffr(self.fileforR), self.parent.encode, self.parent.tableau.parametre['txtsep'], self.parent.nastrings) + txt += """ + outframe<-data.frame(cbind('***','****')) + colnames(outframe)<-c('effectif','pourcentage') + select <- %s + listfiles <- %s + titles <- %s + compteur <- 1 + """ % (sel, listfiles, titles) + txt += """ + for (i in select) { + datasum<-as.matrix(summary(datadm[,i])) + if (rownames(datasum)[1]=='Min.' && rownames(datasum)[3]=='Median') { + dtype<-'num' + } else if (datasum[1] == "logical") { + dtype <- 'char' + datasum <- as.matrix(as.integer(datasum[2])) + rownames(datasum) <- 'NA' + } else { + dtype<-'char' + } + datasum<-as.data.frame(datasum) + if (dtype=='char') { + datasum[,2]<-round((datasum[,1]/sum(datasum[,1]))*100,digits=2) + } else { + datasum[,2]<-datasum[,1] + } + colnames(datasum)<-c('effectif','pourcentage') + graphout <- listfiles[compteur] + if (Sys.info()["sysname"]=='Darwin') { + quartz(file=graphout,type='jpeg') + par(cex=1) + } else { + jpeg(graphout,res=200) + par(cex=0.3) + } + if (max(nchar(rownames(datasum))) > 15) { + lab.bar <- 1:nrow(datasum) + } else { + lab.bar <- rownames(datasum) + } + barplot(datasum[,2],border=NA,beside=TRUE,names.arg=lab.bar) + title(main=titles[compteur]) + dev.off() + datasum<-rbind(datasum,total=colSums(datasum)) + outframe<-rbind(outframe,c('***','****')) + datasum[,1]<-as.character(datasum[,1]) + datasum[,2]<-as.character(datasum[,2]) + outframe<-rbind(outframe,datasum) + compteur <- compteur + 1 + } + outframe<-rbind(outframe,c('***','****')) + write.csv2(outframe,file="%s") + """ % ffr(self.OutFrame) + tmpfile = tempfile.mktemp(dir=self.TEMPDIR) + tmpscript = open(tmpfile, 'w') + tmpscript.write(txt) + tmpscript.close() + pid = exec_rcode(self.RPath, tmpfile, wait = False) + while pid.poll() == None : + sleep(0.2) + check_Rresult(self.parent, pid) + fileout = self.DoLayout() + listfile.append(fileout) + self.DICTFILE[self.num] = listfile + return listfile + + + def DoLayout(self): + listtab = [] + tab = [] + filein = open(self.OutFrame, 'rU') + content = filein.readlines() + filein.close() + content.pop(0) + content.pop(0) + texte = '' + for ligne in content: + ligne = ligne.replace('"', '').replace('\n', '') + ligne = ligne.split(';') + if ligne[1] == u'***' : + if tab != []: + listtab.append(tab) + tab = [] + else : + tab.append(ligne) + pretexte = u''' + + \n

    Fréquences

    +
    + ''' % self.parent.SysEncoding + for i in range(0, len(listtab)): + pretexte += '

    %s

    ' % (str(i), self.ListTitre[i]) + texte += '
    \n' + texte += '

    Retour

    \n' + texte += '

    %s

    \n' % (str(i), self.ListTitre[i]) + texte += '\n' + texte += """ +
    \n' + texte += '' + for line in listtab[i] : + texte += '' + texte += """ + + """ % (line[0], line[1], line[2]) + texte += '' + texte += '
    Effectifspourcentage
    %s%s%s %%
    graph
    \n + """ % os.path.basename(self.ListFileForR[i]) + texte += '\n' + fileout = os.path.join(self.TEMPDIR, 'resultats%s-freq.html' % str(self.num)) + FILE = open(fileout, 'w') + FILE.write(pretexte + texte) + FILE.close() + return fileout + + diff --git a/tableau.py b/tableau.py new file mode 100644 index 0000000..a8f7428 --- /dev/null +++ b/tableau.py @@ -0,0 +1,325 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2010 Pierre Ratinaud +#Lisense: GNU/GPL + +import codecs +import sys +import xlrd +import ooolib +import tempfile +import re +import htmlentitydefs +from numpy import * +import shelve + + +## +# Removes HTML or XML character references and entities from a text string. +# +# @param text The HTML (or XML) source text. +# @return The plain text, as a Unicode string, if necessary. + +def unescape(text): + def fixup(m): + #apos is not in the dictionnary + htmlentitydefs.name2codepoint['apos'] = ord("'") + text = m.group(0) + if text[:2] == "&#": + # character reference + try: + if text[:3] == "&#x": + return unichr(int(text[3:-1], 16)) + else: + return unichr(int(text[2:-1])) + except ValueError: + pass + else: + try: + text = unichr(htmlentitydefs.name2codepoint[text[1:-1]]) + except KeyError: + pass + return text # leave as is + return re.sub("&#?\w+;", fixup, text) + +def UpdateDico(Dico, word, line): + if word in Dico : + Dico[word][0] += 1 + Dico[word][1].append(line) + else: + Dico[word] = [1, [line]] + +class Tableau() : + def __init__(self, parent, filename = '', filetype = 'csv', encodage = 'utf-8') : + self.parent = parent + self.parametre = {'filename' : filename} + self.parametre['filetype'] = filetype + self.parametre['encodage'] = encodage + self.parametre['mineff'] = 3 + self.parametre['syscoding'] = sys.getdefaultencoding() + self.sups = {} + self.actives = {} + self.listactives = None + self.content = [] + self.linecontent = [] + self.isbinary = False + self.binary = [] + self.firstrowiscolnames = True + self.colnames = [] + self.firstcolisrownames = True + self.rownames = [] + self.colnb = 0 + self.rownb = 0 + self.classes = [] + + def read_tableau(self, fileout) : + d=shelve.open(fileout) + self.parametre = d['parametre'] + if 'syscoding' not in self.parametre : + self.parametre['syscoding'] = sys.getdefaultencoding() + self.actives = d['actives'] + self.sups = d['sups'] + self.classes = d['classes'] + self.listactives = d['listactives'] + if 'listet' in d : + self.listet = d['listet'] + if 'selected_col' in d : + self.selected_col = d['selected_col'] + if 'datas' in d : + self.datas = d['datas'] + if 'lchi' in d : + self.lchi = d['lchi'] + d.close() + + def save_tableau(self, fileout) : + d=shelve.open(fileout) + d['parametre'] = self.parametre + d['actives'] = self.actives + d['sups'] = self.sups + d['classes'] = self.classes + d['listactives'] = self.listactives + if 'listet' in dir(self) : + d['listet'] = self.listet + if 'selected_col' in dir(self) : + d['selected_col'] = self.selected_col + if 'datas' in dir(self) : + d['datas'] = self.datas + if 'lchi' in dir(self) : + d['lchi'] = self.lchi + d.close() + + def make_content(self) : + if self.parametre['filetype'] == 'csv' : + self.read_csv() + elif self.parametre['filetype'] == 'xls' : + self.read_xls() + elif self.parametre['filetype'] == 'ods' : + self.read_ods() + self.parametre['csvfile'] = tempfile.mktemp(dir=self.parent.TEMPDIR) + self.make_tmpfile() + + def read_xls(self) : + #FIXME : encodage + #print '############## ENCODING IN EXCEL #######################' + #datafile = xlrd.open_workbook(self.parametre['filename'], encoding_override="azerazerazer") + datafile = xlrd.open_workbook(self.parametre['filename']) + datatable = datafile.sheet_by_index(self.parametre['sheetnb']-1) + self.linecontent = [[str(datatable.cell_value(rowx = i, colx = j)) for j in range(datatable.ncols)] for i in range(datatable.nrows)] + + def read_ods(self) : + doc = ooolib.Calc(opendoc=self.parametre['filename']) + doc.set_sheet_index(0) + (cols, rows) = doc.get_sheet_dimensions() + print cols, rows + for row in range(1, rows + 1): + ligne = [] + for col in range(1, cols + 1): + data = doc.get_cell_value(col, row) + if data is not None : + ligne.append(unescape(data[1])) + else : + ligne.append('') + self.linecontent.append(ligne) + + def read_csv(self) : + with codecs.open(self.parametre['filename'], 'r', self.parametre['encodage']) as f : + content = f.read() + self.linecontent = [line.replace('"','').split(self.parametre['colsep']) for line in content.splitlines()] + + def write_csvfile(self) : + with open(self.parametre['csvfile'], 'w') as f : + f.write('\n'.join([';'.join(line) for line in self.csvtable])) + + def make_tmpfile(self) : + self.rownb = len(self.linecontent) + self.colnb = len(self.linecontent[0]) + if self.firstrowiscolnames : + self.colnames = self.linecontent[0] + self.linecontent.pop(0) + self.rownb -= 1 + else : + self.colnames = ['_'.join([u'colonne', `i`]) for i in range(self.colnb)] + if self.firstcolisrownames : + self.rownames = [row[0] for row in self.linecontent] + self.linecontent = [row[1:] for row in self.linecontent] + self.colnb -= 1 + self.idname = self.colnames[0] + self.colnames.pop(0) + self.check_rownames() + else : + self.rownames = [`i` for i in range(self.rownb)] + self.idname = u'identifiant' + self.csvtable = [[self.idname] + self.colnames] + [[self.rownames[i]] + self.linecontent[i] for i in range(len(self.rownames))] + self.write_csvfile() + + def show_tab(self) : + self.parent.content = self.csvtable + self.parent.ShowMenu(_("View")) + self.parent.ShowMenu(_("Spreadsheet analysis")) + self.parent.ShowMenu(_("Text analysis"), False) + self.parent.type = "Data" + self.parent.DataPop = False + self.parent.OnViewData('') + + def check_rownames(self) : + if len(self.rownames) == len(list(set(self.rownames))) : + print u'row names ok' + else : + print u'les noms de lignes ne sont pas uniques, ils sont remplaces' + self.rownames = [`i` for i in range(self.rownb)] + + def make_unique_list(self) : + return list(set([val for line in self.linecontent for val in line if val.strip() != ''])) + + def make_dico(self, linecontent) : + dico = {} + for i, line in enumerate(linecontent) : + for forme in line: + if forme.strip() != '' : + UpdateDico(dico, forme, i) + return dico + + def select_col(self, listcol) : + ArTable = array(self.linecontent) + selcol = ArTable[:, listcol] + selcol = selcol.tolist() + return selcol + + def write01(self, fileout, dico, linecontent) : + self.listactives = [val for val in dico if val != 'NA' and dico[val] >= self.parametre['mineff']] + out = [['0' for forme in self.listactives] for line in linecontent] + for i, forme in enumerate(self.listactives) : + for line in dico[forme][1] : + out[line][i] = '1' + #out = [[self.rownames[i]] + out[i] for i in range(len(linecontent))] + #out.insert(0,[self.idname] + self.listactives) + out.insert(0, self.listactives) + with open(fileout, 'w') as f : + f.write('\n'.join([';'.join(line) for line in out])) + + def make_01_from_selection(self, listact, listsup = None, dowrite = True) : + selcol = self.select_col(listact) + self.actives = self.make_dico(selcol) + if 'Act01' in self.dictpathout and dowrite: + self.write01(self.dictpathout['Act01'], self.actives, selcol) + elif 'mat01' in self.dictpathout and dowrite: + self.write01(self.dictpathout['mat01'], self.actives, selcol) + if listsup is not None : + selcol = self.select_col(listsup) + self.sups = self.make_dico(selcol) + + def make_01_alc_format(self, fileout) : + for i, ligne in enumerate(self.linecontent) : + for forme in ligne: + if len(forme) >= 1: + if forme[0] == u'*': + UpdateDico(self.sups, forme, i) + else: + UpdateDico(self.actives, forme, i) + self.listactives = [val for val in self.actives if self.actives[val][0] >= self.parametre['mineff']] + table = [['0' for i in range(len(self.listactives))] for j in range(self.rownb)] + for i, val in enumerate(self.listactives) : + for j, line in enumerate(self.linecontent) : + if val in line : + table[j][i] = '1' + #table = [[self.rownames[i]] + table[i] for i in range(len(self.rownames))] + #table.insert(0, [self.idname] + self.listactives) + table.insert(0, self.listactives) + with open(fileout, 'w') as f: + f.write('\n'.join([';'.join(line) for line in table])) + + def printtable(self, filename, Table): + with open(filename, 'w') as f : + f.write('\n'.join([';'.join(line) for line in Table])) + + def buildprofil(self) : + with open(self.dictpathout['uce'], 'rU') as filein : + content = filein.readlines() + content.pop(0) + lsucecl = [] + dicocl = {} + for i, line in enumerate(content) : + line = line.replace('\n', '').replace('"', '').split(';') + UpdateDico(dicocl, line[1], i) + lsucecl.append([int(line[0]) - 1, int(line[1])]) + self.classes = lsucecl + nlist = [[nbuce, cl] for nbuce, cl in lsucecl if cl != 0] + self.ucecla = len(nlist) + if '0' in dicocl : + self.clnb = len(dicocl) - 1 + else: + self.clnb = len(dicocl) + + tablecont = [] + for active in self.listactives : + line = [active] + line0 = [0] * self.clnb + line += line0 + for i in range(0, self.clnb) : + for uce, cl in nlist: + if cl == i + 1 : + if active in self.linecontent[uce]: + line[i + 1] += 1 + if sum(line[1:]) > self.parametre['mineff']: + tablecont.append([line[0]] + [`don` for don in line if type(don) == type(1)]) + + tablecontet = [] + for sup in self.sups : + line = [sup] + line0 = [0] * self.clnb + line += line0 + for i in range(0, self.clnb) : + for uce, cl in nlist: + if cl == i + 1 : + if sup in self.linecontent[uce]: + line[i + 1] += 1 + tablecontet.append([line[0]] + [`don` for don in line if type(don) == type(1)]) + + self.printtable(self.dictpathout['ContEtOut'], tablecontet) + self.printtable(self.dictpathout['Contout'], tablecont) + + def get_colnames(self) : + return self.colnames[:] + + def make_table_from_classe(self, cl, la) : + ln = [line[0] for line in self.classes if line[1] == cl] + out = [['0' for col in la] for line in ln] + print self.actives + for i, act in enumerate(la) : + for j, line in enumerate(ln) : + if line in self.actives[act][1] : + out[j][i] = '1' + out.insert(0,[act for act in la]) + return out + + + +#filename = 'corpus/cent3.csv' +#filename = 'corpus/agir2sortie.csv' +#tab = Tableau('',filename, encodage='utf-8') +#tab.parametre['csvfile'] = tab.parametre['filename'] +#tab.parametre['sep'] = '\t' +#tab.firstrowiscolnames = True +#tab.firstcolisrownames = False +#tab.read_data() +#tab.make_01('corpus/matrice01.csv') diff --git a/tabrsimple.py b/tabrsimple.py new file mode 100644 index 0000000..dd81048 --- /dev/null +++ b/tabrsimple.py @@ -0,0 +1,115 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2011 Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ffr, FFF +from functions import exec_rcode, check_Rresult +import tempfile +import wx +from time import sleep +import os + +class InputText : + def __init__(self, parent): + #wx.Frame.__init__(self, parent, size=wx.Size(400,300)) + self.tempdir = parent.TEMPDIR + self.fileforR = parent.tableau.parametre['csvfile'] + self.parent=parent + self.Rpath = parent.PathPath.get('PATHS', 'rpath') + self.panel = wx.Panel(self.parent.nb, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.TAB_TRAVERSAL ) + self.Intro = wx.StaticText(self.panel, -1, """dm <- read.csv2("%s", header=TRUE, row.names=1, na.string='')""" % (self.fileforR)) + self.splitter = wx.SplitterWindow(self.panel, -1) + self.TextPage=wx.TextCtrl(self.splitter, style=wx.TE_MULTILINE | wx.TE_RICH2) + self.TextPage.SetFont(wx.Font(11, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "courier")) + self.OutPage = wx.TextCtrl(self.splitter, style=wx.TE_MULTILINE | wx.TE_RICH2 | wx.TE_READONLY) + self.OutPage.SetFont(wx.Font(11, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "courier")) + self.OutPage.SetBackgroundColour(wx.BLACK) + self.OutPage.SetForegroundColour(wx.WHITE) + self.SimpleCommand = wx.TextCtrl(self.panel, style=wx.TE_RICH2|wx.TE_PROCESS_ENTER) + self.SimpleCommand.SetFont(wx.Font(11, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "courier")) + self.splitter.SplitVertically(self.TextPage, self.OutPage) + self.button_1 = wx.Button(self.panel, -1, "Executer") + self.button_2 = wx.Button(self.panel, -1, u"Enregistrer...") + self.__do_layout() + self.parent.nb.AddPage(self.panel, 'R Code...') + self.parent.nb.SetSelection(parent.nb.GetPageCount() - 1) + self.parent.ShowAPane("Tab_content") + + self.panel.Bind(wx.EVT_BUTTON, self.OnSavePage, self.button_2) + self.panel.Bind(wx.EVT_BUTTON, self.OnExecute, self.button_1) + self.panel.Bind(wx.EVT_TEXT_ENTER, self.OnEnter, self.SimpleCommand) + #self.parent.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + + def __do_layout(self): + sizer_3 = wx.BoxSizer(wx.VERTICAL) + sizer_1 = wx.BoxSizer(wx.HORIZONTAL) + sizer_2 = wx.BoxSizer(wx.HORIZONTAL) + #sizer_1.Add(self.TextPage, 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0) + #sizer_1.Add(self.OutPage, 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0) + sizer_3.Add(self.Intro, 0, wx.EXPAND|wx.ADJUST_MINSIZE, 0) + sizer_1.Add(self.splitter, 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0) + sizer_2.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ADJUST_MINSIZE, 0) + sizer_2.Add(self.button_2, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ADJUST_MINSIZE, 0) + sizer_3.Add(sizer_1, 5, wx.EXPAND, 0) + sizer_3.Add(sizer_2, 0, wx.EXPAND, 0) + sizer_3.Add(self.SimpleCommand, 0, wx.EXPAND, 0) + #self.SetAutoLayout(True) + self.panel.SetSizer(sizer_3) + #self.panel.Layout() + + def OnSavePage(self, evt) : + dlg = wx.FileDialog( + self.parent, message="Enregistrer sous...", defaultDir=os.getcwd(), + defaultFile="script.R", wildcard="Rscript|*.R", style=wx.SAVE | wx.OVERWRITE_PROMPT + ) + dlg.SetFilterIndex(2) + dlg.CenterOnParent() + if dlg.ShowModal() == wx.ID_OK: + path = dlg.GetPath() + with open(path, 'w') as f : + f.write(self.text) + + def OnExecute(self, event, cmdtxt = False): + tmpfile = tempfile.mktemp(dir=self.tempdir) + tempres = tempfile.mktemp(dir=self.tempdir) + text = """ + sink("%s") + dm <- read.csv2("%s", header=TRUE, row.names=1, na.string='') + """ % (ffr(tempres), ffr(self.fileforR)) + end = """ + sink() + """ + if cmdtxt : + text = text + cmdtxt + end + else : + text = text + self.TextPage.GetValue() + end + self.text = self.TextPage.GetValue() + with open(tmpfile, 'w') as tmpscript : + tmpscript.write(text + text) + pid = exec_rcode(self.Rpath, tmpfile, wait = False) + while pid.poll() == None : + sleep(0.2) + try : + check_Rresult(self.parent,pid) + self.done = True + except Exception as prob : + self.done = False + print 'zerzerzerzer', prob + mess = wx.MessageDialog(self.parent, prob[1], 'Erreur dans le code R',wx.OK|wx.ICON_INFORMATION) + mess.ShowModal() + + with open(tempres, 'r') as tmpin : + res = tmpin.read() + self.OutPage.write(res) + self.OutPage.ScrollLines(-1) + + def OnEnter(self, evt) : + self.OnExecute(evt, self.SimpleCommand.GetValue()) + if self.done : + self.TextPage.write('\n' + self.SimpleCommand.GetValue()) + self.SimpleCommand.Clear() + + def OnCloseWindow(self, event): + self.Destroy() diff --git a/tabsimi.py b/tabsimi.py new file mode 100644 index 0000000..faf8631 --- /dev/null +++ b/tabsimi.py @@ -0,0 +1,772 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2009-2010 Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ConstructPathOut, construct_simipath, ffr +from functions import print_liste, exec_rcode, read_list_file, check_Rresult, indices_simi, treat_var_mod +from dialog import PrefSimi, SelectColDial, OptLexi +from listlex import * +import wx +import wx.lib.agw.aui as aui +from numpy import * +import os +import tempfile +import datetime +from ConfigParser import RawConfigParser +from time import sleep + +class DoSimi(): + def __init__(self, parent, param = None, isopen = False, fromprof = False, pathout = False, filename ='', gparent = False, wordgraph = False, listactives = False, actives = False, cmd = False, openfromprof=False): +#------------------------------------------------------------------- + self.fromprof = fromprof + self.wordgraph = wordgraph + self.listactives = listactives + self.actives = actives + self.openfromprof = openfromprof + self.cmd = cmd + if param is not None and fromprof: + self.paramsimi = param + else : + self.paramsimi = {'coeff' : 0, + 'layout' : 2, + 'type' : 1, + 'arbremax' : 1, + 'coeff_tv' : 0, + 'coeff_tv_nb' : 10, + 'tvprop' : 1, + 'tvmin' : 5, + 'tvmax' : 30, + 'coeff_te' : 1, + 'coeff_temin' : 1, + 'coeff_temax' : 10, + 'label_v': 1, + 'label_e': 1, + 'vcex' : 0, + 'vcexmin' : 8, + 'vcexmax' : 25, + 'cex' : 10, + 'seuil_ok' : 0, + 'seuil' : 1, + 'cols' : (255,0,0), + 'cola' : (200,200,200), + 'width' : 800, + 'height' : 800, + 'first' : True, + 'keep_coord' : False, + 'alpha' : 10, + 'film' : False, + } + self.types = indices_simi + if fromprof : + self.parent = parent.parent + self.Source = parent + else : + self.parent = parent + self.Source = None + + self.RPath = self.parent.PathPath.get('PATHS', 'rpath') + if not isopen : + if not fromprof : + self.tableau = self.parent.tableau + else : + self.tableau = parent.tableau + self.tableau.parametre['mineff'] = 0 + self.dial = PrefSimi(parent, -1, self.paramsimi, self.types) + self.dial.CenterOnParent() + self.val = self.dial.ShowModal() + if self.val == wx.ID_OK : + self.paramsimi = self.make_param() + self.dial.Destroy() + if self.paramsimi.get('bystar', False) : + variables = treat_var_mod(self.tableau.listet) + dial = OptLexi(self.parent) + dial.listet = self.tableau.listet + var = [v for v in variables] + dial.variables = var + for et in var : + dial.list_box_1.Append(et) + dial.CenterOnParent() + val = dial.ShowModal() + if val == wx.ID_OK : + if dial.choice.GetSelection() == 1 : + listet = [self.tableau.listet[i] for i in dial.list_box_1.GetSelections()] + else : + listet = variables[var[dial.list_box_1.GetSelections()[0]]] + dial.Destroy() + self.tableau.etline = self.Source.corpus.make_etline(listet) + + dlg = wx.ProgressDialog("Traitements", + "Veuillez patienter...", + maximum=4, + parent=self.parent, + style=wx.PD_APP_MODAL | wx.PD_AUTO_HIDE | wx.PD_ELAPSED_TIME + ) + dlg.Center() + count = 1 + keepGoing = dlg.Update(count) + #------------------------------------------------------------------- + self.DictForme = {} + self.Min = 10 + self.Linecontent = [] + #----------------------------------------------------------- + count += 1 + if not fromprof : + self.pathout = ConstructPathOut(parent.tableau.parametre['filename'], 'Simi') + self.DictPathOut = construct_simipath(self.pathout) + self.parent.tableau.dictpathout = self.DictPathOut + dlg.Update(count, u"passage en O/1") + self.parent.tableau.make_01_from_selection(range(0,self.parent.tableau.colnb)) + #self.Linecontent = parent.table + #self.ListTo01Form() + else : + self.pathout = pathout + self.DictPathOut = construct_simipath(self.pathout) + self.DictPathOut['mat01'] = fromprof + self.PrintScript() + count += 1 + dlg.Update(count, u"R...") + self.DoR(dlg) + self.make_ira() + count += 1 + dlg.Update(count, u"") + dlg.Destroy() + #self.dial.Destroy() + #self.dolayout() + from openanalyse import OpenAnalyse + if self.fromprof : + fromprof = True + else: + fromprof = False + OpenAnalyse(self.parent, self.DictPathOut['ira'], False, simifromprof=fromprof) + else: + self.dial.Destroy() + else : + self.tableau = gparent.tableau + if 'corpus' in dir(gparent) : + self.Source = gparent + self.tableau.parametre['mineff'] = 0 + self.DictPathOut = construct_simipath(os.path.abspath(os.path.dirname(filename))) + self.dolayout() + self.paramsimi['first'] = False + self.paramsimi['coeff'] = int(param.get('simi', 'indice')) + self.paramsimi['layout'] = int(param.get('simi', 'layout')) + self.paramsimi['seuil_ok'] = param.getboolean('simi', 'seuil_ok') + self.paramsimi['seuil'] = int(param.get('simi', 'seuil')) + if param.get('simi', 'wordgraph') == 'False' : + self.wordgraph = False + else : + self.wordgraph = param.get('simi', 'wordgraph') + if 'listet' in dir(self.tableau) : + self.paramsimi['stars'] = self.tableau.listet + self.paramsimi['bystar'] = False + self.paramsimi['cexfromchi'] = True + self.paramsimi['tvprop'] = False + self.paramsimi['sfromchi'] = False + self.paramsimi['coeff_te'] = True + self.paramsimi['coeff_tv'] = True + self.paramsimi['coeff_tv_nb'] = 0 + self.paramsimi['label_e'] = False + self.paramsimi['width'] = 1000 + self.paramsimi['height'] = 1000 + + + def make_param(self) : + if self.paramsimi['first'] : + keep_coord = False + else : + keep_coord = self.dial.check_coord.GetValue() + self.select = self.dial.check_colch.GetValue() + + paramsimi = {'coeff' : self.dial.choice1.GetSelection(), + 'layout' : self.dial.choice2.GetSelection(), + 'type' : self.dial.choice3.GetSelection(), + 'arbremax' : self.dial.check1.GetValue(), + 'coeff_tv' : self.dial.check_s_size.GetValue(), + 'coeff_tv_nb' : self.dial.spin_tv.GetValue(), + 'tvprop' : self.dial.check2.GetValue(), + 'tvmin' : self.dial.spin_tvmin.GetValue(), + 'tvmax' : self.dial.spin_tvmax.GetValue(), + 'coeff_te' : self.dial.check3.GetValue(), + 'coeff_temin' : self.dial.spin_temin.GetValue(), + 'coeff_temax' : self.dial.spin_temax.GetValue(), + 'label_e' : self.dial.check_elab.GetValue(), + 'label_v' : self.dial.check_vlab.GetValue(), + 'vcex' : self.dial.check_vcex.GetValue(), + 'vcexmin' : self.dial.spin_vcexmin.GetValue(), + 'vcexmax' : self.dial.spin_vcexmax.GetValue(), + 'cex' : self.dial.spin_cex.GetValue(), + 'seuil_ok' : self.dial.check_seuil.GetValue(), + 'seuil' : self.dial.spin_seuil.GetValue(), + 'cols' : self.dial.cols.GetColour(), + 'cola' : self.dial.cola.GetColour(), + 'width' : self.dial.spin_width.GetValue(), + 'height' : self.dial.spin_height.GetValue(), + 'first' : False, + 'keep_coord' : keep_coord, + 'alpha' : self.dial.slider_sphere.GetValue(), + 'film' : self.dial.film.GetValue() + } + if 'cexfromchi' in self.paramsimi : + paramsimi['cexfromchi'] = self.dial.checkit.GetValue() + if 'sfromchi' in self.paramsimi : + paramsimi['sfromchi'] = self.dial.checki.GetValue() + if 'vlabcolor' in self.paramsimi : + paramsimi['vlabcolor'] = self.paramsimi['vlabcolor'] + if 'check_bystar' in dir(self.dial) : + paramsimi['bystar'] = self.dial.check_bystar.GetValue() + paramsimi['stars'] = self.paramsimi['stars'] + return paramsimi + + def make_ira(self): + self.tableau.save_tableau(self.DictPathOut['db']) + conf = RawConfigParser() + conf.read(self.DictPathOut['ira']) + if not 'simi' in conf.sections() : + conf.add_section('simi') + date = datetime.datetime.now().ctime() + conf.set('simi', 'date', str(date)) + conf.set('simi', 'indice', self.paramsimi['coeff']) + conf.set('simi','layout', self.paramsimi['layout']) + conf.set('simi', 'seuil_ok', self.paramsimi['seuil_ok']) + conf.set('simi', 'seuil', str(self.paramsimi['seuil'])) + conf.set('simi', 'wordgraph', self.wordgraph) + fileout = open(self.DictPathOut['ira'], 'w') + conf.write(fileout) + fileout.close() + + def PrintScript(self): + if self.select : + if self.listactives : + lactives = self.listactives + else : + lactives = self.tableau.listactives + if self.actives : + acts = self.actives + else : + acts = self.tableau.actives + dictcol = [[i, [active, acts[active][0]]] for i, active in enumerate(lactives)] + dictcol = dict(dictcol) + dlg = SelectColDial(self.parent) + listcol = ListForSpec(dlg, self, dictcol, ['forme', 'eff']) + dlg.bSizer2.Add( listcol, 2, wx.ALL|wx.EXPAND, 5 ) + dlg.m_sdbSizer2.AddButton( dlg.m_sdbSizer2OK ) + dlg.m_sdbSizer2.Realize() + dlg.bSizer2.Add( dlg.m_sdbSizer2, 0, wx.EXPAND, 5 ) + dlg.Layout() + if not 'selected_col' in dir(self.tableau) : + for row in xrange(listcol.list.GetItemCount()): + listcol.list.Select(row) + else : + for row in self.tableau.selected_col : + listcol.list.Select(row) + dlg.CenterOnParent() + val = dlg.ShowModal() + datas = [listcol.getColumnText(listcol.list.GetFirstSelected(),0)] + last = listcol.list.GetFirstSelected() + lastl = [listcol.list.GetFirstSelected()] + while listcol.list.GetNextSelected(last) != -1: + last = listcol.list.GetNextSelected(last) + lastl.append(last) + datas.append(listcol.getColumnText(last,0)) + dlg.Destroy() + datas = [lactives.index(val) for val in datas] + self.tableau.selected_col = lastl + self.tableau.datas = datas + datas = str(tuple(datas)) + elif not self.select and 'selected_col' in dir(self.tableau) : + datas = str(tuple(self.tableau.datas)) + elif self.wordgraph : + col = self.tableau.listactives.index(self.wordgraph) + + tmpchi = False + if (self.fromprof or self.openfromprof) and (self.paramsimi.get('cexfromchi', False) or self.paramsimi.get('sfromchi', False)): + if 'lchi' in dir(self.tableau) : + tmpchi = tempfile.mktemp(dir=self.parent.TEMPDIR) + with open(tmpchi, 'w') as f: + f.write('\n'.join([str(val) for val in self.tableau.lchi])) + + active_file = tempfile.mktemp(dir=self.parent.TEMPDIR) + if self.listactives : + lactives = self.listactives + else : + lactives = self.tableau.listactives + self.tableau.listactives = lactives + with open(active_file, 'w') as f: + f.write('\n'.join(lactives)) + + txt = '#script genere par Iramuteq' + txt += """ + library('igraph') + library('proxy') + library('Matrix') + """ + if os.path.exists(self.DictPathOut['RData']) : + txt += """ + load("%s") + """ % self.DictPathOut['RData'] + if not self.paramsimi['keep_coord'] : + #FIXME : beurk!! + i = 0 + market = False + with open(self.DictPathOut['mat01'],'r') as f : + for line in f.readlines() : + if 'MatrixMarket' in line : + market = True + break + elif i >= 1 : + market = False + break + i += 1 + print market + #if (self.fromprof or 'fromtxt' in self.tableau.parametre or self.openfromprof) and not self.actives : + if market : + txt += """ + dm <-readMM("%s") + """ % self.DictPathOut['mat01'] + else : + txt += """ + dm <- read.csv2("%s") + """ % self.DictPathOut['mat01'] + txt += """ + dm <- as.matrix(dm) + #dml <- apply(dm, 2, as.logical) + """ + if not self.paramsimi['keep_coord'] : + txt += """ + cn <- read.table("%s", sep=';', quote='"') + colnames(dm) <- cn[,1] + #colnames(dml) <- cn[,1] + """ % ffr(active_file) + if 'selected_col' in dir(self.tableau) and not self.paramsimi['keep_coord']: + txt += """ + #dml <- dml[, c%s+1] + dm <- dm[, c%s+1] + """ % (datas, datas) + txt += """ + source("%s") + source("%s") + """ % (self.parent.RscriptsPath['simi'],self.parent.RscriptsPath['Rgraph']) + + self.txtgraph = '' + self.txtgraph += self.types[self.paramsimi['coeff']] + if not self.paramsimi['keep_coord'] : + if self.paramsimi['coeff'] == 0 : + method = 'cooc' + txt += """ + method <- 'cooc' + mat <- make.a(dm) + """ + elif self.paramsimi['coeff'] == 1 : + method = 'prcooc' + txt += """ + method <- 'Russel' + mat <- simil(dm, method = 'Russel', diag = TRUE, upper = TRUE, by_rows = FALSE) + """ + elif self.types[self.paramsimi['coeff']] == 'binomial' : + method = 'binomial' + txt += """ + method <- 'binomial' + mat <- binom.sim(dm) + """ + else : + method = self.types[self.paramsimi['coeff']] + txt += """ + method <-"%s" + mat <- simil(dm, method = method, diag = TRUE, upper = TRUE, by_rows = FALSE) + """ % self.types[self.paramsimi['coeff']] + txt += """ + mat <- as.matrix(stats::as.dist(mat,diag=TRUE,upper=TRUE)) + mat[is.na(mat)] <- 0 + mat[is.infinite(mat)] <- 0 + """ + if self.types[self.paramsimi['coeff']] not in ['cooccurrence', 'Chi-squared', 'Mozley', 'Stiles'] : + txt += """ + mat <- mat * 100 + """ + if self.wordgraph : + txt += """ + mat <- graph.word(mat, %i) + """ % (col + 1) + txt += """ + eff <- colSums(dm) + x <- list(mat = mat, eff = eff) + """ + else : + method = '' + if self.paramsimi['layout'] == 0 : layout = 'random' + if self.paramsimi['layout'] == 1 : layout = 'circle' + if self.paramsimi['layout'] == 2 : layout = 'frutch' + if self.paramsimi['layout'] == 3 : layout = 'kawa' + if self.paramsimi['layout'] == 4 : layout = 'graphopt' + + self.filename='' + if self.paramsimi['type'] == 0 : type = 'tkplot' + if self.paramsimi['type'] == 1 : + graphnb = 1 + type = 'nplot' + dirout = os.path.dirname(self.DictPathOut['mat01']) + while os.path.exists(os.path.join(dirout,'graph_simi_'+str(graphnb)+'.png')): + graphnb +=1 + self.filename = ffr(os.path.join(dirout,'graph_simi_'+str(graphnb)+'.png')) + if self.paramsimi['type'] == 2 : type = 'rgl' + + if self.paramsimi['arbremax'] : + arbremax = 'TRUE' + self.txtgraph += ' - arbre maximum' + else : arbremax = 'FALSE' + + if self.paramsimi['coeff_tv'] : + coeff_tv = self.paramsimi['coeff_tv_nb'] + tvminmax = 'c(NULL,NULL)' + elif not self.paramsimi['coeff_tv'] or self.paramsimi.get('sformchi', False) : + coeff_tv = 'NULL' + tvminmax = 'c(%i, %i)' %(self.paramsimi['tvmin'], self.paramsimi['tvmax']) + txt += """ + minmaxeff <- %s + """ % tvminmax + + if self.paramsimi['coeff_te'] : coeff_te = 'c(%i,%i)' % (self.paramsimi['coeff_temin'], self.paramsimi['coeff_temax']) + else : coeff_te = 'NULL' + + if self.paramsimi['vcex'] or self.paramsimi.get('cexfromchi', False) : + vcexminmax = 'c(%i/10,%i/10)' % (self.paramsimi['vcexmin'],self.paramsimi['vcexmax']) + else : + vcexminmax = 'c(NULL,NULL)' + + txt += """ + vcexminmax <- %s + """ % vcexminmax + + txt += """ + cex = %i/10 + """ % self.paramsimi['cex'] + + if not self.paramsimi['label_v'] : label_v = 'FALSE' + else : label_v = 'TRUE' + + if not self.paramsimi['label_e'] : label_e = 'FALSE' + else : label_e = 'TRUE' + + if self.paramsimi['seuil_ok'] : seuil = str(self.paramsimi['seuil']) + else : seuil = 'NULL' + + if self.paramsimi['film'] : + txt += """ + film <- "%s" + """ % self.DictPathOut['film'] + else : + txt += """ + film <- NULL + """ + + txt += """ + seuil <- %s + """ % seuil + + txt += """ + label.v <- %s + label.e <- %s + """ % (label_v, label_e) + + cols = str(self.paramsimi['cols']).replace(')',', max=255)') + cola = str(self.paramsimi['cola']).replace(')',',max=255)') + + txt += """ + cols <- rgb%s + cola <- rgb%s + """ % (cols, cola) + + txt += """ + width <- %i + height <- %i + """ % (self.paramsimi['width'], self.paramsimi['height']) + + if self.paramsimi['keep_coord'] : + txt += """ + coords <- try(coords, TRUE) + if (!is.matrix(coords)) { + coords<-NULL + } + """ + else : + txt += """ + coords <- NULL + """ + txt += """ + alpha <- %i/100 + """ % self.paramsimi['alpha'] + + if self.paramsimi.get('bystar',False) : + txt += """ + et <- list() + """ + for i,et in enumerate(self.tableau.etline) : + txt+= """ + et[[%i]] <- c(%s) + """ % (i+1, ','.join(et[1:])) + txt+= """ + unetoile <- c('%s') + """ % ("','".join([val[0] for val in self.tableau.etline])) + txt += """ + fsum <- NULL + rs <- rowSums(dm) + for (i in 1:length(unetoile)) { + print(unetoile[i]) + tosum <- et[[i]] + if (length(tosum) > 1) { + fsum <- cbind(fsum, colSums(dm[tosum,])) + } else { + fsum <- cbind(fsum, dm[tosum,]) + } + } + source("%s") + lex <- AsLexico2(fsum, chip=TRUE) + dcol <- apply(lex[[4]],1,which.max) + toblack <- apply(lex[[4]],1,max) + gcol <- rainbow(length(unetoile)) + #gcol[2] <- 'orange' + vertex.label.color <- gcol[dcol] + vertex.label.color[which(toblack <= 3.84)] <- 'black' + leg <- list(unetoile=unetoile, gcol=gcol) + cols <- vertex.label.color + chivertex.size <- norm.vec(toblack, vcexminmax[1], vcexminmax[2]) + + """ % (self.parent.RscriptsPath['chdfunct']) + else : + txt += """ + vertex.label.color <- 'black' + chivertex.size <- 1 + leg<-NULL + """ + #if not self.paramsimi['keep_coord'] : + txt += """ + graph.simi <- do.simi(x, method='%s', seuil = seuil, p.type = '%s', layout.type = '%s', max.tree = %s, coeff.vertex=%s, coeff.edge = %s, minmaxeff = minmaxeff, vcexminmax = vcexminmax, cex = cex, coords = coords) + """ % (method, type, layout, arbremax, coeff_tv, coeff_te) + #txt += """ + if self.paramsimi.get('bystar',False) : + if self.paramsimi.get('cexfromchi', False) : + txt+=""" + label.cex<-chivertex.size + """ + else : + txt+=""" + label.cex <- NULL + """ + if self.paramsimi.get('sfromchi', False) : + txt += """ + vertex.size <- norm.vec(toblack, minmaxeff[1], minmaxeff[2]) + """ + else : + txt += """ + vertex.size <- NULL + """ + else : + if tmpchi : + txt += """ + lchi <- read.table("%s") + lchi <- lchi[,1] + """ % ffr(tmpchi) + if 'selected_col' in dir(self.tableau) : + txt += """ + lchi <- lchi[c%s+1] + """ % datas + if tmpchi and self.paramsimi.get('cexfromchi', False) : + txt += """ + label.cex <- norm.vec(lchi, vcexminmax[1], vcexminmax[2]) + """ + else : + txt += """ + if (is.null(vcexminmax[1])) { + label.cex <- NULL + } else { + label.cex <- graph.simi$label.cex + } + """ + if tmpchi and self.paramsimi.get('sfromchi', False) : + txt += """ + vertex.size <- norm.vec(lchi, minmaxeff[1], minmaxeff[2]) + """ + else : + txt += """ + if (is.null(minmaxeff[1])) { + vertex.size <- NULL + } else { + vertex.size <- graph.simi$eff + } + """ + txt += """ vertex.size <- NULL """ + txt += """ + coords <- plot.simi(graph.simi, p.type='%s',filename="%s", vertex.label = label.v, edge.label = label.e, vertex.col = cols, vertex.label.color = vertex.label.color, vertex.label.cex=label.cex, vertex.size = vertex.size, edge.col = cola, leg=leg, width = width, height = height, alpha = alpha, movie = film) + save.image(file="%s") + """ % (type, self.filename, self.DictPathOut['RData']) + + self.tmpfile = tempfile.mktemp(dir=self.parent.TEMPDIR) + tmpscript = open(self.tmpfile, 'w') + tmpscript.write(txt) + tmpscript.close() + + if type == 'nplot': + if os.path.exists(self.DictPathOut['liste_graph']): + graph_simi = read_list_file(self.DictPathOut['liste_graph']) + graph_simi.append([os.path.basename(self.filename), self.txtgraph]) + else : + graph_simi = [[os.path.basename(self.filename), self.txtgraph]] + print_liste(self.DictPathOut['liste_graph'], graph_simi) + + def DoR(self, dlg): + if self.paramsimi['type'] == 1 : + graph = False + wait = False + else : + graph = True + wait = True + pid = exec_rcode(self.RPath, self.tmpfile, wait = wait, graph = graph) + if self.paramsimi['type'] == 1 : + while pid.poll() == None : + if not self.cmd : + dlg.Pulse(u'R ...') + sleep(0.2) + else : + sleep(0.2) + check_Rresult(self.parent, pid) + + def dolayout(self): + if os.path.exists(self.DictPathOut['liste_graph']) : + list_graph = read_list_file(self.DictPathOut['liste_graph']) + else : + list_graph = [['','']] + notebook_flags = aui.AUI_NB_DEFAULT_STYLE | aui.AUI_NB_TAB_EXTERNAL_MOVE | aui.AUI_NB_TAB_MOVE | aui.AUI_NB_TAB_FLOAT + self.tabsimi = aui.AuiNotebook(self.parent.nb, -1, wx.DefaultPosition) + self.tabsimi.SetAGWWindowStyleFlag(notebook_flags) + self.tabsimi.SetArtProvider(aui.ChromeTabArt()) + if 'corpus' in dir(self.Source) : + self.tabsimi.corpus = self.Source.corpus + self.graphpan = GraphPanelSimi(self.tabsimi, self.DictPathOut, list_graph) + self.graphpan.Bind(wx.EVT_BUTTON, self.redosimi, self.graphpan.butafc) + self.graphpan.Bind(wx.EVT_BUTTON, self.export, self.graphpan.butexport) + self.tabsimi.AddPage(self.graphpan, 'Graph') + self.parent.nb.AddPage(self.tabsimi, 'Analyse de graph') + self.parent.ShowTab(True) + self.parent.nb.SetSelection(self.parent.nb.GetPageCount() - 1) + + def export(self, evt) : + fileout = os.path.join(os.path.dirname(self.DictPathOut['ira']), "graphout") + format_graph = 'gml' + i=1 + while os.path.exists(fileout + '_%i.' % i + format_graph) : + i += 1 + fileout_graph = fileout + '_%i.' % i + format_graph + fileout_table = fileout + '_table_%i.csv' % i + Rtxt = """ + library(igraph) + load("%s") + fileout <- "%s" + fileout.table <- "%s" + format <- "%s" + id <- (1:length(graph.simi$mat.eff)) - 1 + id <- paste(id, '.0', sep='') + table.out <- cbind(Id=id, Label=id, Name=graph.simi$v.label, labelcex=graph.simi$label.cex, eff=graph.simi$mat.eff) + write.graph(graph.simi$graph, fileout, format=format) + write.csv2(table.out, file = fileout.table, row.names=FALSE) + """ % (self.DictPathOut['RData'], ffr(fileout_graph), ffr(fileout_table), format_graph) + tmpfile = tempfile.mktemp(dir=self.parent.TEMPDIR) + with open(tmpfile, 'w') as f : + f.write(Rtxt) + res = exec_rcode(self.RPath, tmpfile, wait = False) + check_Rresult(self.parent,res) + print 'export', Rtxt + + def redosimi(self,evt) : + if self.openfromprof : + if 'cexfromchi' not in self.paramsimi: + self.paramsimi['cexfromchi'] = False + self.paramsimi['sfromchi'] = False + self.dial = PrefSimi(self.parent, -1, self.paramsimi, self.types) + self.dial.CenterOnParent() + val = self.dial.ShowModal() + if val == wx.ID_OK : + self.paramsimi = self.make_param() + self.dial.Destroy() + if self.paramsimi.get('bystar',False) : + variables = treat_var_mod(self.paramsimi['stars']) + dial = OptLexi(self.parent) + dial.listet = self.paramsimi['stars'] + var = [v for v in variables] + dial.variables = var + for et in var : + dial.list_box_1.Append(et) + dial.CenterOnParent() + val = dial.ShowModal() + if val == wx.ID_OK : + if dial.choice.GetSelection() == 1 : + listet = [dial.listet[i] for i in dial.list_box_1.GetSelections()] + else : + listet = variables[var[dial.list_box_1.GetSelections()[0]]] + self.tableau.etline = self.Source.corpus.make_etline(listet) + + dlg = wx.ProgressDialog("Traitements", + "Veuillez patienter...", + maximum=2, + parent=self.parent, + style=wx.PD_APP_MODAL | wx.PD_AUTO_HIDE | wx.PD_ELAPSED_TIME | wx.PD_CAN_ABORT) + dlg.Center() + self.PrintScript() + self.DoR(dlg) + dlg.Destroy() + self.make_ira() + if self.paramsimi['type'] == 1: + self.graphpan.sizer_3.Add(wx.StaticBitmap(self.graphpan.panel_1, -1, wx.Bitmap(self.filename, wx.BITMAP_TYPE_ANY)), 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.graphpan.sizer_3.Add(wx.StaticText(self.graphpan.panel_1,-1,self.txtgraph), 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.graphpan.sizer_3.Fit(self.graphpan.panel_1) + self.graphpan.Layout() + self.graphpan.panel_1.Scroll(0,self.graphpan.panel_1.GetScrollRange(wx.VERTICAL)) + else : + self.dial.Destroy() + + +class GraphPanelSimi(wx.Panel): + def __init__(self,parent, dico, list_graph): + wx.Panel.__init__(self,parent) + self.afcnb = 1 + self.Dict = dico + self.dirout = os.path.dirname(self.Dict['ira']) + self.parent = self.GetParent()#parent + self.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "courier")) + self.labels = [] + self.listimg = [] + self.tabsimi = self.parent.GetParent() + self.ira = self.tabsimi.GetParent() + self.panel_1 = wx.ScrolledWindow(self, -1, style=wx.TAB_TRAVERSAL) + afc_img = wx.Image(os.path.join(self.ira.images_path,'button_simi.jpg'), wx.BITMAP_TYPE_ANY).ConvertToBitmap() + self.butafc = wx.BitmapButton(self, -1, afc_img) + export_img = wx.Image(os.path.join(self.ira.images_path,'button_export.jpg'), wx.BITMAP_TYPE_ANY).ConvertToBitmap() + self.butexport = wx.BitmapButton(self, -1, export_img) + + for i in range(0,len(list_graph)): + if os.path.exists(os.path.join(self.dirout,list_graph[i][0])) : + self.listimg.append(wx.StaticBitmap(self.panel_1, -1, wx.Bitmap(os.path.join(self.dirout,list_graph[i][0]), wx.BITMAP_TYPE_ANY))) + self.labels.append(wx.StaticText(self.panel_1, -1, list_graph[i][1])) + + self.__set_properties() + self.__do_layout() + + def __set_properties(self): + self.panel_1.EnableScrolling(True,True) + #self.panel_1.SetSize((1000,1000)) + self.panel_1.SetScrollRate(20, 20) + + def __do_layout(self): + self.sizer_1 = wx.BoxSizer(wx.HORIZONTAL) + self.sizer_2 = wx.BoxSizer(wx.VERTICAL) + self.sizer_3 = wx.BoxSizer(wx.VERTICAL) + self.sizer_2.Add(self.butafc, 0, 0, 0) + self.sizer_2.Add(self.butexport, 0, 0, 0) + for i in range(0, len(self.listimg)): + self.sizer_3.Add(self.listimg[i], 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.sizer_3.Add(self.labels[i], 0, wx.ALIGN_CENTER_HORIZONTAL, 0) + self.panel_1.SetSizer(self.sizer_3) + self.sizer_1.Add(self.sizer_2, 0, wx.EXPAND, 0) + self.sizer_1.Add(self.panel_1, 1, wx.EXPAND, 0) + self.SetSizer(self.sizer_1) diff --git a/tabstudent.py b/tabstudent.py new file mode 100644 index 0000000..031e4e7 --- /dev/null +++ b/tabstudent.py @@ -0,0 +1,341 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008 Pierre Ratinaud +#Lisense: GNU/GPL + + +from chemins import ffr +from layout import MakeHeader,MakeStudentTable +import string +import wx +import os +import sys +import tempfile +from numpy import * +from functions import exec_rcode, check_Rresult +from time import sleep + + +class StudentDialog(wx.Dialog): + def __init__( + self, parent, ID, title, size=wx.DefaultSize, pos=wx.DefaultPosition, + style=wx.DEFAULT_DIALOG_STYLE + ): + + pre = wx.PreDialog() + pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP) + pre.Create(parent, ID, title, pos, size, style) + + self.PostCreate(pre) + + Filename=parent.PATH[0] + self.content=parent.table[:] + self.HEADER=parent.header[:] + fnb={} + inb={} + cnb={} + vide={} + #FIXME : assume une premiere ligne contenant les noms de colonnes + for line in self.content: + i=0 + for val in line : + if val==u'': + if vide.has_key(i): + vide[i]+=1 + else: + vide[i]=1 + else: + try: + int(val) + if inb.has_key(i): + inb[i]+=1 + else: + inb[i]=1 + except: + try: + float(val) + if fnb.has_key(i): + fnb[i]+=1 + else: + fnb[i]=1 + except: + if cnb.has_key(i): + cnb[i]+=1 + else: + cnb[i]=1 + i+=1 + dicttot={} + for key,nb in vide.iteritems(): + dicttot[key]=['vide',nb] + print dicttot + for key,nb in inb.iteritems() : + if dicttot.has_key(key): + dicttot[key]=['int',dicttot[key][1]+nb] + else: + dicttot[key]=['int',nb] + for key,nb in fnb.iteritems(): + if dicttot.has_key(key): + dicttot[key]=['float',dicttot[key][1]+nb] + else: + dicttot[key]=['float',nb] + for key,nb in cnb.iteritems(): + if dicttot.has_key(key): + dicttot[key]=['char',dicttot[key][1]+nb] + else: + dicttot[key]=['char',nb] + + acontent=array(self.content) + self.ListGrp=[] + + lg=[i for i,descr in dicttot.iteritems() if descr[0]=='char'] + for i in lg: + if len(unique(acontent[:,i]))==2: + self.ListGrp.append(i) + elif (u'' in unique(acontent[:,i]).tolist()) and len(unique(acontent[:,i]))==3: + self.ListGrp.append(i) + + li=[i for i,descr in dicttot.iteritems() if descr[0]=='int'] + lf=[i for i,descr in dicttot.iteritems() if descr[0]=='float'] + self.ListNum=li+lf + print self.ListGrp, self.ListNum + LABELLIST=[] + for i in self.HEADER: + if len(i)>60 : + LABELLIST.append(i[0:60]) + else: + LABELLIST.append(i) + + self.LabelListGrp=[] + self.LabelListNum=[] + for i in self.ListGrp : + self.LabelListGrp.append(LABELLIST[i]) + for i in self.ListNum : + self.LabelListNum.append(LABELLIST[i]) + self.list_box_1 = wx.ListBox(self, -1, choices=self.LabelListGrp, style=wx.LB_MULTIPLE|wx.LB_HSCROLL) + self.list_box_2 = wx.ListBox(self, -1, choices=self.LabelListNum, style=wx.LB_MULTIPLE|wx.LB_HSCROLL) + self.button_1 = wx.Button(self, wx.ID_OK) + self.button_cancel = wx.Button(self, wx.ID_CANCEL) + + self.__set_properties() + self.__do_layout() + + self.Bind(wx.EVT_LISTBOX, self.Select1, self.list_box_1) + # end wxGlade + + self.TEMPDIR=parent.TEMPDIR + self.parent=parent + self.Filename=parent.fileforR +#--------------FIXME + self.num=parent.FreqNum +#------------------------------- + def __set_properties(self): + # begin wxGlade: ConfChi2.__set_properties + self.SetTitle(u"Sélection des variables") + self.list_box_1.SetSelection(0) + self.list_box_2.SetSelection(0) + # end wxGlade + + def __do_layout(self): + # begin wxGlade: ConfChi2.__do_layout + sizer_1 = wx.BoxSizer(wx.VERTICAL) + sizer_2 = wx.BoxSizer(wx.VERTICAL) + sizer_3 = wx.BoxSizer(wx.HORIZONTAL) + sizer_4 = wx.BoxSizer(wx.HORIZONTAL) + sizer_3.Add(self.list_box_1, 0, wx.EXPAND, 0) + sizer_3.Add(self.list_box_2, 0, wx.EXPAND|wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(sizer_3, 1, wx.EXPAND, 0) + sizer_4.Add(self.button_cancel, 0, wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_4.Add(self.button_1, 0, wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 0) + sizer_2.Add(sizer_4, 0, wx.ALIGN_CENTRE_HORIZONTAL, 0) + sizer_1.Add(sizer_2, 1, wx.EXPAND, 0) + self.SetSizer(sizer_1) + sizer_1.Fit(self) + self.Layout() + # end wxGlade + + def Select1(self, event): # wxGlade: ConfChi2. + event.Skip() + + def ShowStudent(self,select1,select2): + parent=self.parent + self.encode=self.parent.SysEncoding + ################################################# +# max = len(select1)*len(select2) +# dlg = wx.ProgressDialog("Traitements", +# "Veuillez patienter...", +# maximum = max, +# parent=self, +# style = wx.PD_APP_MODAL +# ) +# dlg.Center() +# count = 0 + ############################################### + Graph=True + colgrp=[self.ListGrp[i] for i in select1] + colnum=[self.ListNum[i] for i in select2] + if len(select1)==1: + strcolgrp=str(tuple(colgrp)).replace(',','') + else: + strcolgrp=str(tuple(colgrp)) + if len(select2)==1: + strcolnum=str(tuple(colnum)).replace(',','') + else: + strcolnum=str(tuple(colnum)) + txtR='' + txtR+=""" + source('%s') + """%self.parent.RscriptsPath['Rfunct'] + if parent.g_id: rownames='1' + else : rownames='NULL' + if parent.g_header : header = 'TRUE' + else : header = 'FALSE' + #txtR+=""" + #datadm <- ReadData('%s', encoding='%s',header = %s, sep = '%s',quote = '%s', na.strings = '%s',rownames=%s) + txtR += """ + datadm <- read.csv2('%s', encoding='%s',header = %s, sep = '%s',quote = '%s', na.strings = '%s',row.names=%s, dec='.') + """%(ffr(self.Filename),parent.encode,header, parent.colsep,parent.txtsep,parent.nastrings,rownames) + txtR+=""" + num<-%i + """%self.num + txtR+=""" + tmpdir<-'%s' + """%ffr(self.TEMPDIR) + txtR+=""" + out<-matrix(0,0,1) + count<-0 + for (i in c%s) { + """%strcolgrp + txtR+=""" + for (j in c%s) { + """%strcolnum + txtR+=""" + datadm[,(j+1)]<-as.numeric(datadm[,(j+1)]) + count<-count+1 + fileout<-paste('student',num,sep='') + fileout<-paste(fileout,'_',sep='') + fileout<-paste(fileout,count,sep='') + fileout<-paste(fileout,'.jpeg',sep='') + fileout<-file.path(tmpdir,fileout) + if (Sys.info()["sysname"]=='Darwin') { + quartz(file=fileout,type='jpeg') + par(cex=1) + } else { + jpeg(fileout,res=200) + par(cex=0.4) + } + plot(datadm[,(j+1)] ~ datadm[,(i+1)],data=datadm) + dev.off() + student<-t.test(datadm[,(j+1)] ~ datadm[,(i+1)],data=datadm) + pvalue<-student$p.value + method<-student$method + tvalue<-student$statistic + df<-student$parameter + grmean<-as.matrix(student$estimate) + out<-rbind(out,round(grmean,digits=2)) + out<-rbind(out,pvalue) + out<-rbind(out,method) + out<-rbind(out,tvalue) + out<-rbind(out,round(df,digits=2)) + out<-rbind(out,fileout) + out<-rbind(out,"**") + } + } + """ + restmp=tempfile.mktemp(dir=self.TEMPDIR) + txtR+=""" + write.csv2(out,file='%s') + """%ffr(restmp) + tmpfile=tempfile.mktemp(dir=self.TEMPDIR) + tmpscript=open(tmpfile,'w') + tmpscript.write(txtR) + tmpscript.close() + pid = exec_rcode(self.parent.RPath, tmpfile, wait = False) + while pid.poll() == None : + sleep(0.2) + check_Rresult(self.parent, pid) + + file=open(restmp,'rU') + res=file.readlines() + file.close() + resl=[line.replace('\n','').replace('"','').split(';') for line in res] + resl.pop(0) + i=0 + student={} + listr=[] + for line in resl : + if i==8 : + i=0 + if i==0 : + student['grp1']=line[0].replace('mean in group ','') + student['mean1']=float(line[1]) + if i==1 : + student['grp2']=line[0].replace('mean in group ','') + student['mean2']=float(line[1]) + if i==2: + student['p.value']=float(line[1]) + if i==3: + student['method']=line[1] + if i==4 : + student['t']=float(line[1]) + if i==5 : + student['df']=float(line[1]) + if i==6: + student['graph']=line[1] + if i==7: + listr.append(student) + student={} + i+=1 + + txt2='' + ancre=0 + LISTFILE=[] + LISTFILE.append(False) + txt=MakeHeader('T de Student', self.encode) + ListGraph=[] + for i in select1 : + for j in select2: + ancre+=1 + Student=listr[ancre-1] + pvalue=Student['p.value'] + Colname=self.LabelListNum[j] + Colgrp=self.LabelListGrp[i] + LISTFILE.append(Student['graph']) + if pvalue<0.05: + color='green' + else: + color='red' + txt+="%s
    "%(ancre,color,Colname+' / '+Colgrp) + txt2+=MakeStudentTable(Student,self.num,ancre,Graph,os.path.basename(Student['graph']),Colname,self.encode) + txt+=txt2 + fileout=os.path.join(self.TEMPDIR,'resultats-student_%s.html'%str(self.num)) + File=open(fileout,'w') + File.write(txt) + File.close() + LISTFILE.append(fileout) +# dlg.Destroy() + return LISTFILE + + +class MakeStudent(): + def __init__(self,parent): + dlg = StudentDialog(parent, -1, u"Student", size=(350, 400), + style = wx.DEFAULT_DIALOG_STYLE + ) + dlg.CenterOnScreen() + val = dlg.ShowModal() + if val==wx.ID_OK : + ColSel1=dlg.list_box_1.GetSelections() + ColSel2=dlg.list_box_2.GetSelections() + listfileout=dlg.ShowStudent(ColSel1,ColSel2) + parent.FreqNum+=1 + parent.DictTab[u"t de student_%s*"%parent.FreqNum]=listfileout + parent.FileTabList.append(listfileout) + parent.newtab=wx.html.HtmlWindow(parent.nb, -1) + if "gtk2" in wx.PlatformInfo: + parent.newtab.SetStandardFonts() + parent.newtab.LoadPage(listfileout[len(listfileout)-1]) + parent.nb.AddPage(parent.newtab,u"t de student_%s*"%parent.FreqNum) + parent.nb.SetSelection(parent.nb.GetPageCount()-1) + parent.ShowTab(wx.EVT_BUTTON) + parent.DisEnSaveTabAs(True) diff --git a/tabverges.py b/tabverges.py new file mode 100644 index 0000000..b9e4ee3 --- /dev/null +++ b/tabverges.py @@ -0,0 +1,54 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2012 Pierre Ratinaud +#Lisense: GNU GPL + +import os +import string +import wx +import os +import sys +import tempfile +from chemins import ffr,FFF +import wx.lib.sized_controls as sc +from time import sleep +from functions import exec_rcode, check_Rresult +from dialog import ChiDialog + +class Verges : + def __init__(self,parent): + self.parent = parent + self.tableau = self.parent.tableau + chioption = { 'valobs' : True, + 'valtheo' : True, + 'resi' : False, + 'contrib' : True, + 'pourcent' : False, + 'pourcentl' : True, + 'pourcentc' : True, + 'graph' : True, + } + self.dlg = ChiDialog(parent, -1, u"Chi2", chioption, size=(400, 350), + style = wx.DEFAULT_DIALOG_STYLE + ) + self.dlg.CenterOnParent() + self.check_val() + + def check_val(self) : + self.val = self.dlg.ShowModal() + if self.val==wx.ID_OK : + self.ColSel1 = self.dlg.list_box_1.GetSelections() + self.ColSel2 = self.dlg.list_box_2.GetSelections() + if len(self.ColSel1) != len(self.ColSel2) : + print 'pas meme taille' + self.check_val() + else : + self.dotable() + + def dotable(self) : + table_assoc = self.tableau.select_col(self.ColSel1) + table_rank = self.tableau.select_col(self.ColSel2) + + + diff --git a/testdecoupe.txt b/testdecoupe.txt new file mode 100644 index 0000000..00e761c --- /dev/null +++ b/testdecoupe.txt @@ -0,0 +1,8901 @@ +TEST LOGGING funcion +#######LOGGING TEST########### +TEST LOGGING +PLUS DE LOG !!!!!!!!!! +LOGGING TEST +reste +True +texte_uce +[u'je', u'n', u'ai', u'pas', u'l', u'habitude', u'de', u'faire', u'des', u'projets'] +suite + je vis au jour le jour . les adolescents font des projets à partir du moment où il se rendent compte qu ils ne doivent compter que sur eux même et qu ils doivent se prendre en charge de quel genre de projets s agit il ? projet pour mon métier , une vie assez facile , sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'je', u'vis', u'au', u'jour', u'le', u'jour'] +suite + les adolescents font des projets à partir du moment où il se rendent compte qu ils ne doivent compter que sur eux même et qu ils doivent se prendre en charge de quel genre de projets s agit il ? projet pour mon métier , une vie assez facile , sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'les', u'adolescents', u'font', u'des', u'projets', u'\xe0', u'partir'] +suite +du moment où il se rendent compte qu ils ne doivent compter que sur eux même et qu ils doivent se prendre en charge de quel genre de projets s agit il ? projet pour mon métier , une vie assez facile , sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'du', u'moment', u'o\xf9', u'il', u'se', u'rendent', u'compte', u'qu', u'ils'] +suite +ne doivent compter que sur eux même et qu ils doivent se prendre en charge de quel genre de projets s agit il ? projet pour mon métier , une vie assez facile , sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'ne', u'doivent', u'compter', u'que', u'sur', u'eux', u'm\xeame', u'et', u'qu'] +suite +ils doivent se prendre en charge de quel genre de projets s agit il ? projet pour mon métier , une vie assez facile , sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'ils', u'doivent', u'se', u'prendre', u'en', u'charge', u'de', u'quel'] +suite +genre de projets s agit il ? projet pour mon métier , une vie assez facile , sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'genre', u'de', u'projets', u's', u'agit', u'il'] +suite + projet pour mon métier , une vie assez facile , sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile'] +suite + sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison'] +suite + une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police'] +suite + car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'car', u'je', u'veux', u'devenir', u'policier'] +suite + projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'projet', u'sentimental', u',', u'en', u'ce', u'moment'] +suite + je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois'] +suite + et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps'] +suite + projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'projets', u'futurs'] +suite + avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde'] +suite + ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre'] +suite +société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets'] +suite +soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce'] +suite +que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer'] +suite + ne jamais se décourager$ +reste +True +texte_uce +[u'ne', u'jamais', u'se', u'd\xe9courager'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets'] +suite + devenir un jour professeur de français ou d histoire géographie ; me marier ; avoir un enfant pas plus , faire construire une maison et si possible , ne pas vivre en ville , plutôt dans l agglomération et même à la campagne , passer mon permis de conduire , avoir une ou plusieurs voitures . pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'devenir', u'un', u'jour', u'professeur', u'de', u'fran\xe7ais'] +suite +ou d histoire géographie ; me marier ; avoir un enfant pas plus , faire construire une maison et si possible , ne pas vivre en ville , plutôt dans l agglomération et même à la campagne , passer mon permis de conduire , avoir une ou plusieurs voitures . pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'ou', u'd', u'histoire', u'g\xe9ographie', u';', u'me', u'marier'] +suite + avoir un enfant pas plus , faire construire une maison et si possible , ne pas vivre en ville , plutôt dans l agglomération et même à la campagne , passer mon permis de conduire , avoir une ou plusieurs voitures . pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'avoir', u'un', u'enfant', u'pas', u'plus'] +suite + faire construire une maison et si possible , ne pas vivre en ville , plutôt dans l agglomération et même à la campagne , passer mon permis de conduire , avoir une ou plusieurs voitures . pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'faire', u'construire', u'une', u'maison', u'et', u'si', u'possible'] +suite + ne pas vivre en ville , plutôt dans l agglomération et même à la campagne , passer mon permis de conduire , avoir une ou plusieurs voitures . pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'ne', u'pas', u'vivre', u'en', u'ville'] +suite + plutôt dans l agglomération et même à la campagne , passer mon permis de conduire , avoir une ou plusieurs voitures . pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'plut\xf4t', u'dans', u'l', u'agglom\xe9ration', u'et', u'm\xeame', u'\xe0', u'la', u'campagne'] +suite + passer mon permis de conduire , avoir une ou plusieurs voitures . pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'passer', u'mon', u'permis', u'de', u'conduire'] +suite + avoir une ou plusieurs voitures . pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'avoir', u'une', u'ou', u'plusieurs', u'voitures'] +suite + pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs'] +suite +projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord'] +suite +que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral'] +suite + devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que'] +suite +les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas'] +suite +obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u'seraient', u'de', u'devenir', u'v\xe9t\xe9rinaire'] +suite + d avoir une belle maison à la montagne et une au bord de la mer , avoir une femme un enfant , une grosse voiture de sport et aussi une grosse moto . aussi de sport et aussi de compétition . devenir champion de tir à l arc , tir à la carabine , devenir champion du monde de la chasse à courre , avec les meilleurs chiens , avoir un chenil . enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'd', u'avoir', u'une', u'belle', u'maison', u'\xe0', u'la', u'montagne'] +suite +et une au bord de la mer , avoir une femme un enfant , une grosse voiture de sport et aussi une grosse moto . aussi de sport et aussi de compétition . devenir champion de tir à l arc , tir à la carabine , devenir champion du monde de la chasse à courre , avec les meilleurs chiens , avoir un chenil . enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'et', u'une', u'au', u'bord', u'de', u'la', u'mer', u',', u'avoir', u'une', u'femme', u'un', u'enfant'] +suite + une grosse voiture de sport et aussi une grosse moto . aussi de sport et aussi de compétition . devenir champion de tir à l arc , tir à la carabine , devenir champion du monde de la chasse à courre , avec les meilleurs chiens , avoir un chenil . enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'une', u'grosse', u'voiture', u'de', u'sport', u'et', u'aussi', u'une', u'grosse', u'moto'] +suite + aussi de sport et aussi de compétition . devenir champion de tir à l arc , tir à la carabine , devenir champion du monde de la chasse à courre , avec les meilleurs chiens , avoir un chenil . enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'aussi', u'de', u'sport', u'et', u'aussi', u'de', u'comp\xe9tition'] +suite + devenir champion de tir à l arc , tir à la carabine , devenir champion du monde de la chasse à courre , avec les meilleurs chiens , avoir un chenil . enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'devenir', u'champion', u'de', u'tir', u'\xe0', u'l', u'arc'] +suite + tir à la carabine , devenir champion du monde de la chasse à courre , avec les meilleurs chiens , avoir un chenil . enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'tir', u'\xe0', u'la', u'carabine'] +suite + devenir champion du monde de la chasse à courre , avec les meilleurs chiens , avoir un chenil . enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre'] +suite + avec les meilleurs chiens , avoir un chenil . enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil'] +suite + enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires'] +suite + faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du'] +suite +monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res'] +suite + enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent'] +suite +les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'les', u'nappes', u'phr\xe9atiques'] +suite + enlever les centrales électriques .$ +reste +True +texte_uce +[u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u'familiaux'] +suite + je pense ne pas me marier mais avoir des enfants , au moins deux enfants , vivre avec un homme soit en tant que mari , soit en tant que concubin . je ne réaliserai ces projets que dans douze ans , lorsque j aurai un métier sûr et une situation aisée . j ai projetai cela il y a environ un an . mes projets professionnels , il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'je', u'pense', u'ne', u'pas', u'me', u'marier', u'mais', u'avoir', u'des', u'enfants'] +suite + au moins deux enfants , vivre avec un homme soit en tant que mari , soit en tant que concubin . je ne réaliserai ces projets que dans douze ans , lorsque j aurai un métier sûr et une situation aisée . j ai projetai cela il y a environ un an . mes projets professionnels , il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'au', u'moins', u'deux', u'enfants'] +suite + vivre avec un homme soit en tant que mari , soit en tant que concubin . je ne réaliserai ces projets que dans douze ans , lorsque j aurai un métier sûr et une situation aisée . j ai projetai cela il y a environ un an . mes projets professionnels , il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'vivre', u'avec', u'un', u'homme', u'soit', u'en', u'tant', u'que', u'mari'] +suite + soit en tant que concubin . je ne réaliserai ces projets que dans douze ans , lorsque j aurai un métier sûr et une situation aisée . j ai projetai cela il y a environ un an . mes projets professionnels , il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'soit', u'en', u'tant', u'que', u'concubin'] +suite + je ne réaliserai ces projets que dans douze ans , lorsque j aurai un métier sûr et une situation aisée . j ai projetai cela il y a environ un an . mes projets professionnels , il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'je', u'ne', u'r\xe9aliserai', u'ces', u'projets', u'que', u'dans', u'douze', u'ans'] +suite + lorsque j aurai un métier sûr et une situation aisée . j ai projetai cela il y a environ un an . mes projets professionnels , il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'lorsque', u'j', u'aurai', u'un', u'm\xe9tier', u's\xfbr', u'et', u'une', u'situation', u'ais\xe9e'] +suite + j ai projetai cela il y a environ un an . mes projets professionnels , il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'j', u'ai', u'projetai', u'cela', u'il', u'y', u'a', u'environ', u'un', u'an'] +suite + mes projets professionnels , il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'mes', u'projets', u'professionnels'] +suite + il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans'] +suite + j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice'] +suite + rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus'] +suite +en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier'] +suite + trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9'] +suite + me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler'] +suite + je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'je', u'trouve', u'cela', u'passionnant'] +suite + j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'j', u'ai', u'choisi', u'ce', u'm\xe9tier'] +suite + car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire'] +suite + rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable'] +suite + bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0'] +suite + il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre'] +suite + cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'cela', u'me', u'fait', u'un', u'peu', u'peur'] +suite + mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0'] +suite +quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler'] +suite + à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler'] +suite +vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'vraiment', u'que', u'dans', u'dix', u'ans'] +suite + ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre'] +suite +société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent'] +suite +réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage'] +suite + donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes'] +suite +dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser'] +suite + changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'ce', u'que', u'je', u'veux', u'faire', u'comme', u'projet', u'depuis', u'toujours'] +suite + avoir un bon métier qui paie , ne pas avoir d enfants , ne pas me marier , avoir mon indépendance , avoir une super voiture , être biologiste , ça depuis l âge de quinze ans , aller depuis toujours en amérique , depuis toujours , aller en haut , ça aussi à l age de quinze ans , depuis toujours avoir plein de téléphones dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'avoir', u'un', u'bon', u'm\xe9tier', u'qui', u'paie'] +suite + ne pas avoir d enfants , ne pas me marier , avoir mon indépendance , avoir une super voiture , être biologiste , ça depuis l âge de quinze ans , aller depuis toujours en amérique , depuis toujours , aller en haut , ça aussi à l age de quinze ans , depuis toujours avoir plein de téléphones dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'ne', u'pas', u'avoir', u'd', u'enfants', u',', u'ne', u'pas', u'me', u'marier'] +suite + avoir mon indépendance , avoir une super voiture , être biologiste , ça depuis l âge de quinze ans , aller depuis toujours en amérique , depuis toujours , aller en haut , ça aussi à l age de quinze ans , depuis toujours avoir plein de téléphones dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'avoir', u'mon', u'ind\xe9pendance', u',', u'avoir', u'une', u'super', u'voiture'] +suite + être biologiste , ça depuis l âge de quinze ans , aller depuis toujours en amérique , depuis toujours , aller en haut , ça aussi à l age de quinze ans , depuis toujours avoir plein de téléphones dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'\xeatre', u'biologiste', u',', u'\xe7a', u'depuis', u'l', u'\xe2ge', u'de', u'quinze', u'ans'] +suite + aller depuis toujours en amérique , depuis toujours , aller en haut , ça aussi à l age de quinze ans , depuis toujours avoir plein de téléphones dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'aller', u'depuis', u'toujours', u'en', u'am\xe9rique'] +suite + depuis toujours , aller en haut , ça aussi à l age de quinze ans , depuis toujours avoir plein de téléphones dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'depuis', u'toujours', u',', u'aller', u'en', u'haut'] +suite + ça aussi à l age de quinze ans , depuis toujours avoir plein de téléphones dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans'] +suite + depuis toujours avoir plein de téléphones dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones'] +suite +dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours'] +suite + avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de'] +suite +faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te'] +suite + depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'depuis', u'toujours'] +suite + avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois'] +suite + pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement'] +suite +réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'r\xe9ussir', u'des', u'projets'] +suite + il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus'] +suite +confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir'] +suite + cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat'] +suite + avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat'] +suite + car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours'] +suite +se le permettre$ +reste +True +texte_uce +[u'se', u'le', u'permettre'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'l', u'intention', u'd', u'avoir', u'quatre', u'ou', u'trois', u'enfants'] +suite + mais en attendant , je veux arriver à mon bac professionnel , enfin continuer mes études , avoir un bon métier ? je veux en premier une bonne situation puis ensuite fonder une famille dans au moins neuf ans . ce qui faudrait changer pour que les jeunes puissent réaliser leurs projets sont les études qui sont un peu trop dures . maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'mais', u'en', u'attendant'] +suite + je veux arriver à mon bac professionnel , enfin continuer mes études , avoir un bon métier ? je veux en premier une bonne situation puis ensuite fonder une famille dans au moins neuf ans . ce qui faudrait changer pour que les jeunes puissent réaliser leurs projets sont les études qui sont un peu trop dures . maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'je', u'veux', u'arriver', u'\xe0', u'mon', u'bac', u'professionnel'] +suite + enfin continuer mes études , avoir un bon métier ? je veux en premier une bonne situation puis ensuite fonder une famille dans au moins neuf ans . ce qui faudrait changer pour que les jeunes puissent réaliser leurs projets sont les études qui sont un peu trop dures . maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'enfin', u'continuer', u'mes', u'\xe9tudes', u',', u'avoir', u'un', u'bon', u'm\xe9tier'] +suite + je veux en premier une bonne situation puis ensuite fonder une famille dans au moins neuf ans . ce qui faudrait changer pour que les jeunes puissent réaliser leurs projets sont les études qui sont un peu trop dures . maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'je', u'veux', u'en', u'premier', u'une', u'bonne', u'situation'] +suite +puis ensuite fonder une famille dans au moins neuf ans . ce qui faudrait changer pour que les jeunes puissent réaliser leurs projets sont les études qui sont un peu trop dures . maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'puis', u'ensuite', u'fonder', u'une', u'famille', u'dans', u'au', u'moins', u'neuf', u'ans'] +suite + ce qui faudrait changer pour que les jeunes puissent réaliser leurs projets sont les études qui sont un peu trop dures . maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'ce', u'qui', u'faudrait', u'changer', u'pour', u'que', u'les'] +suite +jeunes puissent réaliser leurs projets sont les études qui sont un peu trop dures . maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets'] +suite +sont les études qui sont un peu trop dures . maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'sont', u'les', u'\xe9tudes', u'qui', u'sont', u'un', u'peu', u'trop', u'dures'] +suite + maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage'] +suite + il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel'] +suite + je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi'] +suite + je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment'] +suite +que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'que', u'mes', u'parents'] +suite + je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai'] +suite +entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'enti\xe8rement', u'confiance'] +suite + fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e'] +suite + mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine'] +suite + aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire'] +suite + monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'monitrice', u'et', u'\xe9ducatrice'] +suite + ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non'] +suite + mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis'] +suite + car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi'] +suite +ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'ce', u'moque', u'du', u'mien'] +suite + dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re'] +suite + dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines'] +suite + mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'mariage', u'dans', u'dix', u',', u'quinze', u'ans'] +suite + la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re'] +suite +dans quarante ans$ +reste +True +texte_uce +[u'dans', u'quarante', u'ans'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'concubinage', u'avec', u'des', u'gens', u'c\xe9l\xe8bre'] +suite + avoir une voiture de sport , plusieurs villas , avec mes associés on enquêteraient sur les vols , je veux vivre dans une île désertes avec plein de mecs .$ +reste +True +texte_uce +[u'avoir', u'une', u'voiture', u'de', u'sport', u',', u'plusieurs', u'villas'] +suite + avec mes associés on enquêteraient sur les vols , je veux vivre dans une île désertes avec plein de mecs .$ +reste +True +texte_uce +[u'avec', u'mes', u'associ\xe9s', u'on', u'enqu\xeateraient', u'sur', u'les', u'vols'] +suite + je veux vivre dans une île désertes avec plein de mecs .$ +reste +True +texte_uce +[u'je', u'veux', u'vivre', u'dans', u'une', u'\xeele', u'd\xe9sertes', u'avec'] +suite +plein de mecs .$ +reste +True +texte_uce +[u'plein', u'de', u'mecs', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u'j', u'aimerai', u'rentrer', u'au'] +suite +lycée pour continuer mes études , faire de l électronique , après si je réussi ces premières études je compte continuer encore deux ans dans l informatique , être technicien supérieur . il n y a pas longtemps que j ai décidé cela , l année dernière , je ne savais pas encore ce que je voulais faire , en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'lyc\xe9e', u'pour', u'continuer', u'mes', u'\xe9tudes'] +suite + faire de l électronique , après si je réussi ces premières études je compte continuer encore deux ans dans l informatique , être technicien supérieur . il n y a pas longtemps que j ai décidé cela , l année dernière , je ne savais pas encore ce que je voulais faire , en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'faire', u'de', u'l', u'\xe9lectronique'] +suite + après si je réussi ces premières études je compte continuer encore deux ans dans l informatique , être technicien supérieur . il n y a pas longtemps que j ai décidé cela , l année dernière , je ne savais pas encore ce que je voulais faire , en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'apr\xe8s', u'si', u'je', u'r\xe9ussi', u'ces', u'premi\xe8res', u'\xe9tudes'] +suite +je compte continuer encore deux ans dans l informatique , être technicien supérieur . il n y a pas longtemps que j ai décidé cela , l année dernière , je ne savais pas encore ce que je voulais faire , en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'je', u'compte', u'continuer', u'encore', u'deux', u'ans', u'dans'] +suite +l informatique , être technicien supérieur . il n y a pas longtemps que j ai décidé cela , l année dernière , je ne savais pas encore ce que je voulais faire , en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'l', u'informatique', u',', u'\xeatre', u'technicien', u'sup\xe9rieur'] +suite + il n y a pas longtemps que j ai décidé cela , l année dernière , je ne savais pas encore ce que je voulais faire , en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'il', u'n', u'y', u'a', u'pas', u'longtemps', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'cela'] +suite + l année dernière , je ne savais pas encore ce que je voulais faire , en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'l', u'ann\xe9e', u'derni\xe8re'] +suite + je ne savais pas encore ce que je voulais faire , en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'je', u'ne', u'savais', u'pas', u'encore', u'ce', u'que', u'je', u'voulais', u'faire'] +suite + en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'en', u'dehors', u'du', u'dessin', u'assist\xe9', u'par', u'ordinateur'] +suite +car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'car', u'je', u'suis', u'assez', u'bon', u'en', u'dessin', u'industriel'] +suite + ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le'] +suite +cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires'] +suite + comme je l ai déjà dit .$ +reste +True +texte_uce +[u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'continuer', u'mes', u'\xe9tudes'] +suite + mais pas trop longtemps , je veux passer mon brevet , et ensuite voir du coté d une formation technique , un truc de mécanicien , enfin des études pas longues . ma vie sentimentale , je pense me marier , après mes études , après avoir une super maison et aussi une ou plein de voitures . je suis ceinture noire de judo , et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'mais', u'pas', u'trop', u'longtemps', u',', u'je', u'veux', u'passer', u'mon', u'brevet'] +suite + et ensuite voir du coté d une formation technique , un truc de mécanicien , enfin des études pas longues . ma vie sentimentale , je pense me marier , après mes études , après avoir une super maison et aussi une ou plein de voitures . je suis ceinture noire de judo , et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'et', u'ensuite', u'voir', u'du', u'cot\xe9', u'd', u'une', u'formation', u'technique'] +suite + un truc de mécanicien , enfin des études pas longues . ma vie sentimentale , je pense me marier , après mes études , après avoir une super maison et aussi une ou plein de voitures . je suis ceinture noire de judo , et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'un', u'truc', u'de', u'm\xe9canicien', u',', u'enfin', u'des', u'\xe9tudes', u'pas', u'longues'] +suite + ma vie sentimentale , je pense me marier , après mes études , après avoir une super maison et aussi une ou plein de voitures . je suis ceinture noire de judo , et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'ma', u'vie', u'sentimentale', u',', u'je', u'pense', u'me', u'marier'] +suite + après mes études , après avoir une super maison et aussi une ou plein de voitures . je suis ceinture noire de judo , et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'apr\xe8s', u'mes', u'\xe9tudes'] +suite + après avoir une super maison et aussi une ou plein de voitures . je suis ceinture noire de judo , et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'apr\xe8s', u'avoir', u'une', u'super', u'maison', u'et', u'aussi', u'une'] +suite +ou plein de voitures . je suis ceinture noire de judo , et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'ou', u'plein', u'de', u'voitures'] +suite + je suis ceinture noire de judo , et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'je', u'suis', u'ceinture', u'noire', u'de', u'judo'] +suite + et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du'] +suite +temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'temps', u'pour', u'la', u'comp\xe9tition'] +suite + dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours'] +suite +à des enfants$ +reste +True +texte_uce +[u'\xe0', u'des', u'enfants'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi'] +suite + je voudrais bien continuer un petit peu mes études , mais pas trop longtemps , je ne suis pas très bon à l école , enfin je ne sais pas trop ce que je vais faire au niveau professionnel , parce_que à l école je ne suis pas bon . au niveau sentimental , je compte d_abord m amuser au maximum , bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'je', u'voudrais', u'bien', u'continuer', u'un', u'petit', u'peu', u'mes', u'\xe9tudes'] +suite + mais pas trop longtemps , je ne suis pas très bon à l école , enfin je ne sais pas trop ce que je vais faire au niveau professionnel , parce_que à l école je ne suis pas bon . au niveau sentimental , je compte d_abord m amuser au maximum , bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'mais', u'pas', u'trop', u'longtemps'] +suite + je ne suis pas très bon à l école , enfin je ne sais pas trop ce que je vais faire au niveau professionnel , parce_que à l école je ne suis pas bon . au niveau sentimental , je compte d_abord m amuser au maximum , bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'je', u'ne', u'suis', u'pas', u'tr\xe8s', u'bon', u'\xe0', u'l', u'\xe9cole'] +suite + enfin je ne sais pas trop ce que je vais faire au niveau professionnel , parce_que à l école je ne suis pas bon . au niveau sentimental , je compte d_abord m amuser au maximum , bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'enfin', u'je', u'ne', u'sais', u'pas', u'trop', u'ce', u'que', u'je', u'vais'] +suite +faire au niveau professionnel , parce_que à l école je ne suis pas bon . au niveau sentimental , je compte d_abord m amuser au maximum , bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'faire', u'au', u'niveau', u'professionnel'] +suite + parce_que à l école je ne suis pas bon . au niveau sentimental , je compte d_abord m amuser au maximum , bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'parce_que', u'\xe0', u'l', u'\xe9cole', u'je', u'ne', u'suis', u'pas', u'bon'] +suite + au niveau sentimental , je compte d_abord m amuser au maximum , bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'au', u'niveau', u'sentimental'] +suite + je compte d_abord m amuser au maximum , bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'je', u'compte', u'd_abord', u'm', u'amuser', u'au', u'maximum'] +suite + bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'bien', u'plus', u'tard', u'bien', u'plus', u'tard'] +suite + peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'peut', u'\xeatre', u'je', u'vais', u'me', u'marier'] +suite + ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'ou', u'vivre', u'en', u'concubin'] +suite + enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine'] +suite + je voudrais bien rentrer en seconde , et puis continuer mes études , rentrer à la faculté , ou bien dans une formation plus technique , enfin le minimum c est d avoir mon baccalauréat , c est mon premier projet , pour le choix professionnel , j ai encore du temps avant de me décider . niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'je', u'voudrais', u'bien', u'rentrer', u'en', u'seconde'] +suite + et puis continuer mes études , rentrer à la faculté , ou bien dans une formation plus technique , enfin le minimum c est d avoir mon baccalauréat , c est mon premier projet , pour le choix professionnel , j ai encore du temps avant de me décider . niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'et', u'puis', u'continuer', u'mes', u'\xe9tudes'] +suite + rentrer à la faculté , ou bien dans une formation plus technique , enfin le minimum c est d avoir mon baccalauréat , c est mon premier projet , pour le choix professionnel , j ai encore du temps avant de me décider . niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'rentrer', u'\xe0', u'la', u'facult\xe9'] +suite + ou bien dans une formation plus technique , enfin le minimum c est d avoir mon baccalauréat , c est mon premier projet , pour le choix professionnel , j ai encore du temps avant de me décider . niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'ou', u'bien', u'dans', u'une', u'formation', u'plus', u'technique'] +suite + enfin le minimum c est d avoir mon baccalauréat , c est mon premier projet , pour le choix professionnel , j ai encore du temps avant de me décider . niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'enfin', u'le', u'minimum', u'c', u'est', u'd', u'avoir', u'mon', u'baccalaur\xe9at'] +suite + c est mon premier projet , pour le choix professionnel , j ai encore du temps avant de me décider . niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'c', u'est', u'mon', u'premier', u'projet'] +suite + pour le choix professionnel , j ai encore du temps avant de me décider . niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'pour', u'le', u'choix', u'professionnel'] +suite + j ai encore du temps avant de me décider . niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider'] +suite + niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'niveau', u'sentimental'] +suite + je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y'] +suite +voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'voir', u'bien', u'clair'] +suite + je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'je', u'pense', u'certainement', u'fonder', u'une', u'famille'] +suite + mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s'] +suite +avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier'] +suite + pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple'] +suite + ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas'] +suite + je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour'] +suite +les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune'] +suite + avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine'] +suite + je compte rentrer au lycée pour préparer un bac technique , après je compte faire une formation technique , mais je ne sais pas encore vraiment ce que je veux faire , je suis assez bon dans la mécanique , certainement que je vais essayer de travailler de ce coté$ +reste +True +texte_uce +[u'je', u'compte', u'rentrer', u'au', u'lyc\xe9e', u'pour', u'pr\xe9parer'] +suite +un bac technique , après je compte faire une formation technique , mais je ne sais pas encore vraiment ce que je veux faire , je suis assez bon dans la mécanique , certainement que je vais essayer de travailler de ce coté$ +reste +True +texte_uce +[u'un', u'bac', u'technique'] +suite + après je compte faire une formation technique , mais je ne sais pas encore vraiment ce que je veux faire , je suis assez bon dans la mécanique , certainement que je vais essayer de travailler de ce coté$ +reste +True +texte_uce +[u'apr\xe8s', u'je', u'compte', u'faire', u'une', u'formation', u'technique'] +suite + mais je ne sais pas encore vraiment ce que je veux faire , je suis assez bon dans la mécanique , certainement que je vais essayer de travailler de ce coté$ +reste +True +texte_uce +[u'mais', u'je', u'ne', u'sais', u'pas', u'encore', u'vraiment', u'ce'] +suite +que je veux faire , je suis assez bon dans la mécanique , certainement que je vais essayer de travailler de ce coté$ +reste +True +texte_uce +[u'que', u'je', u'veux', u'faire'] +suite + je suis assez bon dans la mécanique , certainement que je vais essayer de travailler de ce coté$ +reste +True +texte_uce +[u'je', u'suis', u'assez', u'bon', u'dans', u'la', u'm\xe9canique'] +suite + certainement que je vais essayer de travailler de ce coté$ +reste +True +texte_uce +[u'certainement', u'que', u'je', u'vais', u'essayer', u'de'] +suite +travailler de ce coté$ +reste +True +texte_uce +[u'travailler', u'de', u'ce', u'cot\xe9'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'au', u'niveau', u'professionnel'] +suite + le minimum pour l instant c est de passer mon brevet , en cas de réussite , et je pense que ça va marcher , continuer au lycée . je voudrais bien devenir professeur de mathématique ou de gymnastique , enfin un truc dans ce style , ça peut être moniteur de sport , plutôt le sport . niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'le', u'minimum', u'pour', u'l', u'instant', u'c', u'est', u'de', u'passer', u'mon', u'brevet'] +suite + en cas de réussite , et je pense que ça va marcher , continuer au lycée . je voudrais bien devenir professeur de mathématique ou de gymnastique , enfin un truc dans ce style , ça peut être moniteur de sport , plutôt le sport . niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'en', u'cas', u'de', u'r\xe9ussite', u',', u'et', u'je', u'pense', u'que', u'\xe7a', u'va', u'marcher'] +suite + continuer au lycée . je voudrais bien devenir professeur de mathématique ou de gymnastique , enfin un truc dans ce style , ça peut être moniteur de sport , plutôt le sport . niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'continuer', u'au', u'lyc\xe9e'] +suite + je voudrais bien devenir professeur de mathématique ou de gymnastique , enfin un truc dans ce style , ça peut être moniteur de sport , plutôt le sport . niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'je', u'voudrais', u'bien', u'devenir', u'professeur', u'de'] +suite +mathématique ou de gymnastique , enfin un truc dans ce style , ça peut être moniteur de sport , plutôt le sport . niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'math\xe9matique', u'ou', u'de', u'gymnastique'] +suite + enfin un truc dans ce style , ça peut être moniteur de sport , plutôt le sport . niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'enfin', u'un', u'truc', u'dans', u'ce', u'style'] +suite + ça peut être moniteur de sport , plutôt le sport . niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'\xe7a', u'peut', u'\xeatre', u'moniteur', u'de', u'sport', u',', u'plut\xf4t', u'le', u'sport'] +suite + niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'niveau', u'sentimental'] +suite + je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser'] +suite + je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille'] +suite + avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances'] +suite + c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir'] +suite + après ça tourne au délire$ +reste +True +texte_uce +[u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'veux', u'vivre', u'loin', u'de', u'la', u'ville', u'dans'] +suite +une île déserte , avec de super appareils de musique , et une image grand écran en direct du festival , rien que musique et image , je veux pas m inscrire dans la profession après t as envie d une famille , d une voiture , et puis tu arrêtes pas d avoir envie de ceci ou de cela . coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'une', u'\xeele', u'd\xe9serte', u',', u'avec', u'de', u'super', u'appareils', u'de', u'musique'] +suite + et une image grand écran en direct du festival , rien que musique et image , je veux pas m inscrire dans la profession après t as envie d une famille , d une voiture , et puis tu arrêtes pas d avoir envie de ceci ou de cela . coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'et', u'une', u'image', u'grand', u'\xe9cran', u'en', u'direct', u'du', u'festival'] +suite + rien que musique et image , je veux pas m inscrire dans la profession après t as envie d une famille , d une voiture , et puis tu arrêtes pas d avoir envie de ceci ou de cela . coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'rien', u'que', u'musique', u'et', u'image'] +suite + je veux pas m inscrire dans la profession après t as envie d une famille , d une voiture , et puis tu arrêtes pas d avoir envie de ceci ou de cela . coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'je', u'veux', u'pas', u'm', u'inscrire', u'dans', u'la', u'profession'] +suite +après t as envie d une famille , d une voiture , et puis tu arrêtes pas d avoir envie de ceci ou de cela . coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'apr\xe8s', u't', u'as', u'envie', u'd', u'une', u'famille', u',', u'd', u'une', u'voiture'] +suite + et puis tu arrêtes pas d avoir envie de ceci ou de cela . coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de'] +suite +ceci ou de cela . coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'ceci', u'ou', u'de', u'cela'] +suite + coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets'] +suite + je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec'] +suite +la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon'] +suite + au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l'] +suite +histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'histoire', u'est', u'class\xe9e'] +suite + loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques'] +suite +et de la gente humaine$ +reste +True +texte_uce +[u'et', u'de', u'la', u'gente', u'humaine'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'l', u'intention', u'd', u'avoir', u'au', u'moins', u'des', u'enfants'] +suite + mais en attendant , je veux arriver à une profession par rapport au baccalauréat technique que je veux passer , en premier , une bonne situation , et après fonder une famille , ça il me faudra bien une dizaine d années . ce qui est difficile , c est que les études c est pas évident . sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'mais', u'en', u'attendant'] +suite + je veux arriver à une profession par rapport au baccalauréat technique que je veux passer , en premier , une bonne situation , et après fonder une famille , ça il me faudra bien une dizaine d années . ce qui est difficile , c est que les études c est pas évident . sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'je', u'veux', u'arriver', u'\xe0', u'une', u'profession', u'par'] +suite +rapport au baccalauréat technique que je veux passer , en premier , une bonne situation , et après fonder une famille , ça il me faudra bien une dizaine d années . ce qui est difficile , c est que les études c est pas évident . sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'rapport', u'au', u'baccalaur\xe9at', u'technique', u'que', u'je', u'veux', u'passer'] +suite + en premier , une bonne situation , et après fonder une famille , ça il me faudra bien une dizaine d années . ce qui est difficile , c est que les études c est pas évident . sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'en', u'premier', u',', u'une', u'bonne', u'situation'] +suite + et après fonder une famille , ça il me faudra bien une dizaine d années . ce qui est difficile , c est que les études c est pas évident . sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'et', u'apr\xe8s', u'fonder', u'une', u'famille'] +suite + ça il me faudra bien une dizaine d années . ce qui est difficile , c est que les études c est pas évident . sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'\xe7a', u'il', u'me', u'faudra', u'bien', u'une', u'dizaine', u'd', u'ann\xe9es'] +suite + ce qui est difficile , c est que les études c est pas évident . sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'ce', u'qui', u'est', u'difficile'] +suite + c est que les études c est pas évident . sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'c', u'est', u'que', u'les', u'\xe9tudes', u'c', u'est', u'pas', u'\xe9vident'] +suite + sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre'] +suite +avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'avec', u'des', u'copines', u'et', u'm', u'amuser'] +suite + ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9'] +suite + après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier'] +suite + après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je'] +suite +suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'suis', u'grand_m\xe8re'] +suite + je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'je', u'veux', u'travailler', u'dans', u'le', u'social'] +suite + être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re'] +suite + ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'familiale', u',', u'je', u'pense', u'pas', u'que', u'je', u'vais', u'me', u'marier'] +suite + mais je veux tout de même avoir des enfants et puis vivre avec un homme , mais je veux garder mon indépendance , ça fait un an que je pense à tout ça , mais d_abord il faut penser avoir un métier . ça fait deux ans que j ai décidé d être dessinatrice de mode , travailler dans la conception des grands noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'mais', u'je', u'veux', u'tout', u'de', u'm\xeame', u'avoir', u'des', u'enfants'] +suite +et puis vivre avec un homme , mais je veux garder mon indépendance , ça fait un an que je pense à tout ça , mais d_abord il faut penser avoir un métier . ça fait deux ans que j ai décidé d être dessinatrice de mode , travailler dans la conception des grands noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'et', u'puis', u'vivre', u'avec', u'un', u'homme'] +suite + mais je veux garder mon indépendance , ça fait un an que je pense à tout ça , mais d_abord il faut penser avoir un métier . ça fait deux ans que j ai décidé d être dessinatrice de mode , travailler dans la conception des grands noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'mais', u'je', u'veux', u'garder', u'mon', u'ind\xe9pendance'] +suite + ça fait un an que je pense à tout ça , mais d_abord il faut penser avoir un métier . ça fait deux ans que j ai décidé d être dessinatrice de mode , travailler dans la conception des grands noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'pense', u'\xe0', u'tout', u'\xe7a'] +suite + mais d_abord il faut penser avoir un métier . ça fait deux ans que j ai décidé d être dessinatrice de mode , travailler dans la conception des grands noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'mais', u'd_abord', u'il', u'faut', u'penser', u'avoir', u'un', u'm\xe9tier'] +suite + ça fait deux ans que j ai décidé d être dessinatrice de mode , travailler dans la conception des grands noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre'] +suite +dessinatrice de mode , travailler dans la conception des grands noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'dessinatrice', u'de', u'mode'] +suite + travailler dans la conception des grands noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'travailler', u'dans', u'la', u'conception', u'des', u'grands'] +suite +noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'noms', u'de', u'la', u'mode'] +suite + j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement'] +suite + l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection'] +suite + car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut'] +suite + mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup'] +suite + dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's'] +suite +améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets'] +suite + il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'compte', u'surtout', u'avoir', u'mon', u'ind\xe9pendance'] +suite + pour ça il y a pas de mystère , il faut que je travaille par rapport aux études , passer mon brevet , ensuite aller jusqu_à la terminale et préparer une formation technique , je pense à l informatique , pour éviter d être au chômage , l essentiel pour moi étant d acquérir mon indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'pour', u'\xe7a', u'il', u'y', u'a', u'pas', u'de', u'myst\xe8re'] +suite + il faut que je travaille par rapport aux études , passer mon brevet , ensuite aller jusqu_à la terminale et préparer une formation technique , je pense à l informatique , pour éviter d être au chômage , l essentiel pour moi étant d acquérir mon indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'il', u'faut', u'que', u'je', u'travaille', u'par', u'rapport', u'aux', u'\xe9tudes'] +suite + passer mon brevet , ensuite aller jusqu_à la terminale et préparer une formation technique , je pense à l informatique , pour éviter d être au chômage , l essentiel pour moi étant d acquérir mon indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'passer', u'mon', u'brevet'] +suite + ensuite aller jusqu_à la terminale et préparer une formation technique , je pense à l informatique , pour éviter d être au chômage , l essentiel pour moi étant d acquérir mon indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'ensuite', u'aller', u'jusqu_\xe0', u'la', u'terminale', u'et'] +suite +préparer une formation technique , je pense à l informatique , pour éviter d être au chômage , l essentiel pour moi étant d acquérir mon indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'pr\xe9parer', u'une', u'formation', u'technique'] +suite + je pense à l informatique , pour éviter d être au chômage , l essentiel pour moi étant d acquérir mon indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'je', u'pense', u'\xe0', u'l', u'informatique'] +suite + pour éviter d être au chômage , l essentiel pour moi étant d acquérir mon indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'pour', u'\xe9viter', u'd', u'\xeatre', u'au', u'ch\xf4mage'] +suite + l essentiel pour moi étant d acquérir mon indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'l', u'essentiel', u'pour', u'moi', u'\xe9tant', u'd', u'acqu\xe9rir', u'mon'] +suite +indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'ind\xe9pendance', u'mat\xe9rielle'] +suite + niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'niveau', u'sentimental'] +suite + surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation'] +suite + sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'sinon', u'vivre', u'avec', u'un', u'homme'] +suite + il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets'] +suite + pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille'] +suite +dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me'] +suite + c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas'] +suite +trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'trop', u'\xe0', u'comprendre', u'le', u'monde'] +suite + mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants'] +suite + je compte me consacrer entièrement à ma famille , à mes enfants et à mon mari , je veux pouvoir l aider dans son travail , travailler avec lui , et l aider dans son travail pour qu il ait plus de temps pour sa famille , en attendant de rencontrer l homme de ma vie , je préparerai un métier , qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'je', u'compte', u'me', u'consacrer', u'enti\xe8rement', u'\xe0', u'ma', u'famille'] +suite + à mes enfants et à mon mari , je veux pouvoir l aider dans son travail , travailler avec lui , et l aider dans son travail pour qu il ait plus de temps pour sa famille , en attendant de rencontrer l homme de ma vie , je préparerai un métier , qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'\xe0', u'mes', u'enfants', u'et', u'\xe0', u'mon', u'mari'] +suite + je veux pouvoir l aider dans son travail , travailler avec lui , et l aider dans son travail pour qu il ait plus de temps pour sa famille , en attendant de rencontrer l homme de ma vie , je préparerai un métier , qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'je', u'veux', u'pouvoir', u'l', u'aider', u'dans', u'son', u'travail'] +suite + travailler avec lui , et l aider dans son travail pour qu il ait plus de temps pour sa famille , en attendant de rencontrer l homme de ma vie , je préparerai un métier , qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'travailler', u'avec', u'lui'] +suite + et l aider dans son travail pour qu il ait plus de temps pour sa famille , en attendant de rencontrer l homme de ma vie , je préparerai un métier , qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'et', u'l', u'aider', u'dans', u'son', u'travail', u'pour', u'qu', u'il'] +suite +ait plus de temps pour sa famille , en attendant de rencontrer l homme de ma vie , je préparerai un métier , qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'ait', u'plus', u'de', u'temps', u'pour', u'sa', u'famille'] +suite + en attendant de rencontrer l homme de ma vie , je préparerai un métier , qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie'] +suite + je préparerai un métier , qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'je', u'pr\xe9parerai', u'un', u'm\xe9tier'] +suite + qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants'] +suite + travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait'] +suite + je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je'] +suite +fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re'] +suite + j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon'] +suite +point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison'] +suite + et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants'] +suite + j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager'] +suite + mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide'] +suite + surtout si on veut des enfants .$ +reste +True +texte_uce +[u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u',', u'je', u'compte', u'devenir', u'officier', u'de', u'la', u'paix'] +suite + j aurais voulu devenir sportif , plus particulièrement dans le football , mais devenir flic , c est plus passionnant . dans cinq ans , je compte me marier avec une femme brune qui aura de beaux yeux , il faudra qu elle soit intelligente et belle physiquement , et mignonne de tête , avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'j', u'aurais', u'voulu', u'devenir', u'sportif'] +suite + plus particulièrement dans le football , mais devenir flic , c est plus passionnant . dans cinq ans , je compte me marier avec une femme brune qui aura de beaux yeux , il faudra qu elle soit intelligente et belle physiquement , et mignonne de tête , avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'plus', u'particuli\xe8rement', u'dans', u'le', u'football'] +suite + mais devenir flic , c est plus passionnant . dans cinq ans , je compte me marier avec une femme brune qui aura de beaux yeux , il faudra qu elle soit intelligente et belle physiquement , et mignonne de tête , avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'mais', u'devenir', u'flic', u',', u'c', u'est', u'plus', u'passionnant'] +suite + dans cinq ans , je compte me marier avec une femme brune qui aura de beaux yeux , il faudra qu elle soit intelligente et belle physiquement , et mignonne de tête , avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'dans', u'cinq', u'ans'] +suite + je compte me marier avec une femme brune qui aura de beaux yeux , il faudra qu elle soit intelligente et belle physiquement , et mignonne de tête , avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'je', u'compte', u'me', u'marier', u'avec', u'une', u'femme', u'brune'] +suite +qui aura de beaux yeux , il faudra qu elle soit intelligente et belle physiquement , et mignonne de tête , avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'qui', u'aura', u'de', u'beaux', u'yeux'] +suite + il faudra qu elle soit intelligente et belle physiquement , et mignonne de tête , avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'il', u'faudra', u'qu', u'elle', u'soit', u'intelligente', u'et'] +suite +belle physiquement , et mignonne de tête , avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'belle', u'physiquement', u',', u'et', u'mignonne', u'de', u't\xeate'] +suite + avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'avec', u'ma', u'femme', u'je', u'pense', u'avoir', u'des', u'enfants'] +suite + deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able'] +suite + offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme'] +suite + et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille'] +suite + je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'travail'] +suite + le faire pendant deux ans , puis avoir un accident du travail pour toucher de l argent tranquillement . je veux me marier cinq fois , avoir une maison secondaire une masse de voitures , rentrer dans la politique pour dormir , avoir un énorme lit pour dormir avec plein de femmes , et des femmes de chambre pour faire tout le travail , tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'le', u'faire', u'pendant', u'deux', u'ans'] +suite + puis avoir un accident du travail pour toucher de l argent tranquillement . je veux me marier cinq fois , avoir une maison secondaire une masse de voitures , rentrer dans la politique pour dormir , avoir un énorme lit pour dormir avec plein de femmes , et des femmes de chambre pour faire tout le travail , tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'puis', u'avoir', u'un', u'accident', u'du', u'travail', u'pour'] +suite +toucher de l argent tranquillement . je veux me marier cinq fois , avoir une maison secondaire une masse de voitures , rentrer dans la politique pour dormir , avoir un énorme lit pour dormir avec plein de femmes , et des femmes de chambre pour faire tout le travail , tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'toucher', u'de', u'l', u'argent', u'tranquillement'] +suite + je veux me marier cinq fois , avoir une maison secondaire une masse de voitures , rentrer dans la politique pour dormir , avoir un énorme lit pour dormir avec plein de femmes , et des femmes de chambre pour faire tout le travail , tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'cinq', u'fois'] +suite + avoir une maison secondaire une masse de voitures , rentrer dans la politique pour dormir , avoir un énorme lit pour dormir avec plein de femmes , et des femmes de chambre pour faire tout le travail , tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'avoir', u'une', u'maison', u'secondaire', u'une', u'masse', u'de', u'voitures'] +suite + rentrer dans la politique pour dormir , avoir un énorme lit pour dormir avec plein de femmes , et des femmes de chambre pour faire tout le travail , tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'rentrer', u'dans', u'la', u'politique', u'pour', u'dormir'] +suite + avoir un énorme lit pour dormir avec plein de femmes , et des femmes de chambre pour faire tout le travail , tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes'] +suite + et des femmes de chambre pour faire tout le travail , tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail'] +suite + tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir'] +suite +vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'avec', u'une', u'jolie', u'femme', u'qui'] +suite +soit aimable , faire du sport de temps en temps , je veux faire professeur de mathématiques , quelque chose qui se rapproche de cela , avoir de bonnes relations avec mes parents , rester avec eux le plus de temps possible . il faut que les jeunes puissent plus s exprimer$ +reste +True +texte_uce +[u'soit', u'aimable', u',', u'faire', u'du', u'sport', u'de', u'temps', u'en', u'temps'] +suite + je veux faire professeur de mathématiques , quelque chose qui se rapproche de cela , avoir de bonnes relations avec mes parents , rester avec eux le plus de temps possible . il faut que les jeunes puissent plus s exprimer$ +reste +True +texte_uce +[u'je', u'veux', u'faire', u'professeur', u'de', u'math\xe9matiques'] +suite + quelque chose qui se rapproche de cela , avoir de bonnes relations avec mes parents , rester avec eux le plus de temps possible . il faut que les jeunes puissent plus s exprimer$ +reste +True +texte_uce +[u'quelque', u'chose', u'qui', u'se', u'rapproche', u'de', u'cela'] +suite + avoir de bonnes relations avec mes parents , rester avec eux le plus de temps possible . il faut que les jeunes puissent plus s exprimer$ +reste +True +texte_uce +[u'avoir', u'de', u'bonnes', u'relations', u'avec', u'mes', u'parents'] +suite + rester avec eux le plus de temps possible . il faut que les jeunes puissent plus s exprimer$ +reste +True +texte_uce +[u'rester', u'avec', u'eux', u'le', u'plus', u'de', u'temps', u'possible'] +suite + il faut que les jeunes puissent plus s exprimer$ +reste +True +texte_uce +[u'il', u'faut', u'que', u'les', u'jeunes', u'puissent', u'plus', u's', u'exprimer'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'faire', u'des', u'voyages', u',', u'voir', u'beaucoup', u'de', u'monde'] +suite + faire des choses uniques dans tous les domaines , ne pas faire comme tout le monde , laisser quelque chose derrière moi , j aimerais faire un métier qui serve à quelque chose , certains de mes projets sont réalisables maintenant , ne pas rester toute ma vie dans une cage à lapin , ne pas être un mouton qui se fasse exploiter uniquement pour les autres être libre même si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'faire', u'des', u'choses', u'uniques', u'dans', u'tous', u'les', u'domaines'] +suite + ne pas faire comme tout le monde , laisser quelque chose derrière moi , j aimerais faire un métier qui serve à quelque chose , certains de mes projets sont réalisables maintenant , ne pas rester toute ma vie dans une cage à lapin , ne pas être un mouton qui se fasse exploiter uniquement pour les autres être libre même si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'ne', u'pas', u'faire', u'comme', u'tout', u'le', u'monde'] +suite + laisser quelque chose derrière moi , j aimerais faire un métier qui serve à quelque chose , certains de mes projets sont réalisables maintenant , ne pas rester toute ma vie dans une cage à lapin , ne pas être un mouton qui se fasse exploiter uniquement pour les autres être libre même si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'laisser', u'quelque', u'chose', u'derri\xe8re', u'moi'] +suite + j aimerais faire un métier qui serve à quelque chose , certains de mes projets sont réalisables maintenant , ne pas rester toute ma vie dans une cage à lapin , ne pas être un mouton qui se fasse exploiter uniquement pour les autres être libre même si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'j', u'aimerais', u'faire', u'un', u'm\xe9tier', u'qui', u'serve', u'\xe0', u'quelque', u'chose'] +suite + certains de mes projets sont réalisables maintenant , ne pas rester toute ma vie dans une cage à lapin , ne pas être un mouton qui se fasse exploiter uniquement pour les autres être libre même si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'certains', u'de', u'mes', u'projets', u'sont', u'r\xe9alisables', u'maintenant'] +suite + ne pas rester toute ma vie dans une cage à lapin , ne pas être un mouton qui se fasse exploiter uniquement pour les autres être libre même si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin'] +suite + ne pas être un mouton qui se fasse exploiter uniquement pour les autres être libre même si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter'] +suite +uniquement pour les autres être libre même si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame'] +suite +si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent'] +suite + ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres'] +suite + ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'tout', u'd_abord', u'avoir', u'une', u'bonne'] +suite +situation professionnel et stable , je voudrais aussi vivre avec ma mère , car mes parents sont divorcés , et je vis avec mon père , j aimerais faire un travail avec des jeunes enfants , dans ma vie sentimentale , je ne veux pas me marier du moins pas jeune je préfère vivre en concubinage , je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'situation', u'professionnel', u'et', u'stable'] +suite + je voudrais aussi vivre avec ma mère , car mes parents sont divorcés , et je vis avec mon père , j aimerais faire un travail avec des jeunes enfants , dans ma vie sentimentale , je ne veux pas me marier du moins pas jeune je préfère vivre en concubinage , je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'je', u'voudrais', u'aussi', u'vivre', u'avec', u'ma', u'm\xe8re'] +suite + car mes parents sont divorcés , et je vis avec mon père , j aimerais faire un travail avec des jeunes enfants , dans ma vie sentimentale , je ne veux pas me marier du moins pas jeune je préfère vivre en concubinage , je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'car', u'mes', u'parents', u'sont', u'divorc\xe9s'] +suite + et je vis avec mon père , j aimerais faire un travail avec des jeunes enfants , dans ma vie sentimentale , je ne veux pas me marier du moins pas jeune je préfère vivre en concubinage , je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'et', u'je', u'vis', u'avec', u'mon', u'p\xe8re'] +suite + j aimerais faire un travail avec des jeunes enfants , dans ma vie sentimentale , je ne veux pas me marier du moins pas jeune je préfère vivre en concubinage , je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'j', u'aimerais', u'faire', u'un', u'travail', u'avec', u'des', u'jeunes', u'enfants'] +suite + dans ma vie sentimentale , je ne veux pas me marier du moins pas jeune je préfère vivre en concubinage , je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'dans', u'ma', u'vie', u'sentimentale'] +suite + je ne veux pas me marier du moins pas jeune je préfère vivre en concubinage , je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas'] +suite +jeune je préfère vivre en concubinage , je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage'] +suite + je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les'] +suite +études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en'] +suite +s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u's', u'en', u'pas', u'capable'] +suite + les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets'] +suite +à n importe quel âge$ +reste +True +texte_uce +[u'\xe0', u'n', u'importe', u'quel', u'\xe2ge'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'rester', u'c\xe9libataire', u'et', u'vivre', u'en', u'concubinage'] +suite + je ne veux pas d enfants car pour moi c est une contrainte , je veux au niveau professionnel devenir kinésithérapeute , car c est un milieu où on a le contact avec le milieu sportif , je veux me rendre utile , c est un métier difficile à acquérir , il faut être solide , car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'je', u'ne', u'veux', u'pas', u'd', u'enfants', u'car', u'pour', u'moi', u'c'] +suite +est une contrainte , je veux au niveau professionnel devenir kinésithérapeute , car c est un milieu où on a le contact avec le milieu sportif , je veux me rendre utile , c est un métier difficile à acquérir , il faut être solide , car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'est', u'une', u'contrainte'] +suite + je veux au niveau professionnel devenir kinésithérapeute , car c est un milieu où on a le contact avec le milieu sportif , je veux me rendre utile , c est un métier difficile à acquérir , il faut être solide , car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'je', u'veux', u'au', u'niveau', u'professionnel', u'devenir'] +suite +kinésithérapeute , car c est un milieu où on a le contact avec le milieu sportif , je veux me rendre utile , c est un métier difficile à acquérir , il faut être solide , car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'kin\xe9sith\xe9rapeute'] +suite + car c est un milieu où on a le contact avec le milieu sportif , je veux me rendre utile , c est un métier difficile à acquérir , il faut être solide , car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'car', u'c', u'est', u'un', u'milieu', u'o\xf9', u'on', u'a', u'le', u'contact'] +suite +avec le milieu sportif , je veux me rendre utile , c est un métier difficile à acquérir , il faut être solide , car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'avec', u'le', u'milieu', u'sportif', u',', u'je', u'veux', u'me', u'rendre', u'utile'] +suite + c est un métier difficile à acquérir , il faut être solide , car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'c', u'est', u'un', u'm\xe9tier', u'difficile', u'\xe0', u'acqu\xe9rir'] +suite + il faut être solide , car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'il', u'faut', u'\xeatre', u'solide'] +suite + car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame'] +suite + sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir'] +suite +journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football'] +suite + je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'je', u'veux', u'informer', u',', u'\xeatre', u'utile'] +suite + ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un'] +suite +bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre'] +suite +commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'commande', u'par', u'un', u'sup\xe9rieur'] +suite + je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'est', u'pas', u'de', u'projet', u'de', u'vie'] +suite + je verrai bien ce que me réserve le cours de la vie , avant de penser à tout cela , il faut que je profite de la vie$ +reste +True +texte_uce +[u'je', u'verrai', u'bien', u'ce', u'que', u'me', u'r\xe9serve', u'le', u'cours', u'de', u'la', u'vie'] +suite + avant de penser à tout cela , il faut que je profite de la vie$ +reste +True +texte_uce +[u'avant', u'de', u'penser', u'\xe0', u'tout', u'cela'] +suite + il faut que je profite de la vie$ +reste +True +texte_uce +[u'il', u'faut', u'que', u'je', u'profite', u'de', u'la', u'vie'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'passer', u'mon', u'bac', u'et', u'r\xe9ussir', u'dans', u'le'] +suite +domaine artistique$ +reste +True +texte_uce +[u'domaine', u'artistique'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'vais', u'essayer', u'd', u'avoir', u'mon', u'brevet'] +suite + après je passe le concours de la gendarmerie , et le concours à l armée , je veux réussir dans le domaine sportif .$ +reste +True +texte_uce +[u'apr\xe8s', u'je', u'passe', u'le', u'concours', u'de', u'la', u'gendarmerie'] +suite + et le concours à l armée , je veux réussir dans le domaine sportif .$ +reste +True +texte_uce +[u'et', u'le', u'concours', u'\xe0', u'l', u'arm\xe9e'] +suite + je veux réussir dans le domaine sportif .$ +reste +True +texte_uce +[u'je', u'veux', u'r\xe9ussir', u'dans', u'le', u'domaine', u'sportif', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'devenir', u'v\xe9t\xe9rinaire', u',', u'j', u'y', u'pense', u'depuis', u'six', u'ans'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'sur', u'le', u'plan', u'familial'] +suite + je veux rester célibataire le plus longtemps possible , éventuellement avoir des enfants mais dans vingt ans , je veux avoir un boulot intéressant , pratiquer un sport régulièrement , je n ai jamais eu l intention d avoir des enfants , et ça fait deux ans que j ai décidé de ne pas me marier , je veux avoir de l argent$ +reste +True +texte_uce +[u'je', u'veux', u'rester', u'c\xe9libataire', u'le', u'plus', u'longtemps', u'possible'] +suite + éventuellement avoir des enfants mais dans vingt ans , je veux avoir un boulot intéressant , pratiquer un sport régulièrement , je n ai jamais eu l intention d avoir des enfants , et ça fait deux ans que j ai décidé de ne pas me marier , je veux avoir de l argent$ +reste +True +texte_uce +[u'\xe9ventuellement', u'avoir', u'des', u'enfants', u'mais', u'dans', u'vingt', u'ans'] +suite + je veux avoir un boulot intéressant , pratiquer un sport régulièrement , je n ai jamais eu l intention d avoir des enfants , et ça fait deux ans que j ai décidé de ne pas me marier , je veux avoir de l argent$ +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'un', u'boulot', u'int\xe9ressant'] +suite + pratiquer un sport régulièrement , je n ai jamais eu l intention d avoir des enfants , et ça fait deux ans que j ai décidé de ne pas me marier , je veux avoir de l argent$ +reste +True +texte_uce +[u'pratiquer', u'un', u'sport', u'r\xe9guli\xe8rement'] +suite + je n ai jamais eu l intention d avoir des enfants , et ça fait deux ans que j ai décidé de ne pas me marier , je veux avoir de l argent$ +reste +True +texte_uce +[u'je', u'n', u'ai', u'jamais', u'eu', u'l', u'intention', u'd', u'avoir', u'des', u'enfants'] +suite + et ça fait deux ans que j ai décidé de ne pas me marier , je veux avoir de l argent$ +reste +True +texte_uce +[u'et', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'de'] +suite +ne pas me marier , je veux avoir de l argent$ +reste +True +texte_uce +[u'ne', u'pas', u'me', u'marier', u',', u'je', u'veux', u'avoir', u'de', u'l', u'argent'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'quand', u'j', u'aurai', u'trouver', u'l', u'homme', u'id\xe9al'] +suite + je veux me marier avoir des enfants et une belle maison , je voudrais travailler dans le professionnel de la publicité , le dessin , mais je n ai pas de bons résultats , depuis que je suis petite je rêve d avoir une voiture et une belle maison , mais je ne savais pas qu il fallait travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'avoir', u'des', u'enfants', u'et'] +suite +une belle maison , je voudrais travailler dans le professionnel de la publicité , le dessin , mais je n ai pas de bons résultats , depuis que je suis petite je rêve d avoir une voiture et une belle maison , mais je ne savais pas qu il fallait travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'une', u'belle', u'maison'] +suite + je voudrais travailler dans le professionnel de la publicité , le dessin , mais je n ai pas de bons résultats , depuis que je suis petite je rêve d avoir une voiture et une belle maison , mais je ne savais pas qu il fallait travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'je', u'voudrais', u'travailler', u'dans', u'le', u'professionnel'] +suite +de la publicité , le dessin , mais je n ai pas de bons résultats , depuis que je suis petite je rêve d avoir une voiture et une belle maison , mais je ne savais pas qu il fallait travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'de', u'la', u'publicit\xe9', u',', u'le', u'dessin'] +suite + mais je n ai pas de bons résultats , depuis que je suis petite je rêve d avoir une voiture et une belle maison , mais je ne savais pas qu il fallait travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'mais', u'je', u'n', u'ai', u'pas', u'de', u'bons', u'r\xe9sultats'] +suite + depuis que je suis petite je rêve d avoir une voiture et une belle maison , mais je ne savais pas qu il fallait travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'depuis', u'que', u'je', u'suis', u'petite', u'je', u'r\xeave', u'd', u'avoir'] +suite +une voiture et une belle maison , mais je ne savais pas qu il fallait travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'une', u'voiture', u'et', u'une', u'belle', u'maison'] +suite + mais je ne savais pas qu il fallait travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait'] +suite +travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'travailler', u'pour', u'cela'] +suite + maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en'] +suite +travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9'] +suite + je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants'] +suite +dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans'] +suite + avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et'] +suite +après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'apr\xe8s', u'acheter', u'une', u'maison'] +suite + je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re'] +suite + pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets'] +suite + il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'passer', u'mon', u'baccalaur\xe9at', u'avoir', u'un', u'bon', u'm\xe9tier'] +suite + continuer le patinage , vivre heureuse , être heureuse , tout ça dans une dizaine d années$ +reste +True +texte_uce +[u'continuer', u'le', u'patinage', u',', u'vivre', u'heureuse'] +suite + être heureuse , tout ça dans une dizaine d années$ +reste +True +texte_uce +[u'\xeatre', u'heureuse', u',', u'tout', u'\xe7a', u'dans', u'une', u'dizaine', u'd', u'ann\xe9es'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'passer', u'un', u'bon', u'brevet'] +suite + pas de différence entre le beau et le laid , pas de différence entre les filles et les garçons et que les gens ne jugent pas , je ne sais pas je voudrais qu il n y ait pas de guerre et que des enfants meurent à cause de la connerie des adultes , ils détruisent l avenir des enfants innocents qui se font tuer$ +reste +True +texte_uce +[u'pas', u'de', u'diff\xe9rence', u'entre', u'le', u'beau', u'et', u'le', u'laid'] +suite + pas de différence entre les filles et les garçons et que les gens ne jugent pas , je ne sais pas je voudrais qu il n y ait pas de guerre et que des enfants meurent à cause de la connerie des adultes , ils détruisent l avenir des enfants innocents qui se font tuer$ +reste +True +texte_uce +[u'pas', u'de', u'diff\xe9rence', u'entre', u'les', u'filles', u'et', u'les'] +suite +garçons et que les gens ne jugent pas , je ne sais pas je voudrais qu il n y ait pas de guerre et que des enfants meurent à cause de la connerie des adultes , ils détruisent l avenir des enfants innocents qui se font tuer$ +reste +True +texte_uce +[u'gar\xe7ons', u'et', u'que', u'les', u'gens', u'ne', u'jugent', u'pas'] +suite + je ne sais pas je voudrais qu il n y ait pas de guerre et que des enfants meurent à cause de la connerie des adultes , ils détruisent l avenir des enfants innocents qui se font tuer$ +reste +True +texte_uce +[u'je', u'ne', u'sais', u'pas', u'je', u'voudrais', u'qu', u'il', u'n', u'y', u'ait'] +suite +pas de guerre et que des enfants meurent à cause de la connerie des adultes , ils détruisent l avenir des enfants innocents qui se font tuer$ +reste +True +texte_uce +[u'pas', u'de', u'guerre', u'et', u'que', u'des', u'enfants', u'meurent'] +suite +à cause de la connerie des adultes , ils détruisent l avenir des enfants innocents qui se font tuer$ +reste +True +texte_uce +[u'\xe0', u'cause', u'de', u'la', u'connerie', u'des', u'adultes'] +suite + ils détruisent l avenir des enfants innocents qui se font tuer$ +reste +True +texte_uce +[u'ils', u'd\xe9truisent', u'l', u'avenir', u'des', u'enfants'] +suite +innocents qui se font tuer$ +reste +True +texte_uce +[u'innocents', u'qui', u'se', u'font', u'tuer'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'\xe7a', u'fait', u'dix', u'ans', u'que', u'je', u'pense', u'continuer', u'mes'] +suite +études pour pouvoir avoir une bonne place dans mon pays , un meilleur salaire , ce projet , me prendra bien dix ans car je veux faire un cycle long il me faut du courage , de la persévérance et de l intelligence , je voudrais être docteur pour obtenir des meilleures conditions de vie , les études sont longues et difficiles$ +reste +True +texte_uce +[u'\xe9tudes', u'pour', u'pouvoir', u'avoir', u'une', u'bonne', u'place'] +suite +dans mon pays , un meilleur salaire , ce projet , me prendra bien dix ans car je veux faire un cycle long il me faut du courage , de la persévérance et de l intelligence , je voudrais être docteur pour obtenir des meilleures conditions de vie , les études sont longues et difficiles$ +reste +True +texte_uce +[u'dans', u'mon', u'pays', u',', u'un', u'meilleur', u'salaire'] +suite + ce projet , me prendra bien dix ans car je veux faire un cycle long il me faut du courage , de la persévérance et de l intelligence , je voudrais être docteur pour obtenir des meilleures conditions de vie , les études sont longues et difficiles$ +reste +True +texte_uce +[u'ce', u'projet'] +suite + me prendra bien dix ans car je veux faire un cycle long il me faut du courage , de la persévérance et de l intelligence , je voudrais être docteur pour obtenir des meilleures conditions de vie , les études sont longues et difficiles$ +reste +True +texte_uce +[u'me', u'prendra', u'bien', u'dix', u'ans', u'car', u'je', u'veux', u'faire'] +suite +un cycle long il me faut du courage , de la persévérance et de l intelligence , je voudrais être docteur pour obtenir des meilleures conditions de vie , les études sont longues et difficiles$ +reste +True +texte_uce +[u'un', u'cycle', u'long', u'il', u'me', u'faut', u'du', u'courage'] +suite + de la persévérance et de l intelligence , je voudrais être docteur pour obtenir des meilleures conditions de vie , les études sont longues et difficiles$ +reste +True +texte_uce +[u'de', u'la', u'pers\xe9v\xe9rance', u'et', u'de', u'l', u'intelligence'] +suite + je voudrais être docteur pour obtenir des meilleures conditions de vie , les études sont longues et difficiles$ +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'docteur', u'pour', u'obtenir', u'des'] +suite +meilleures conditions de vie , les études sont longues et difficiles$ +reste +True +texte_uce +[u'meilleures', u'conditions', u'de', u'vie'] +suite + les études sont longues et difficiles$ +reste +True +texte_uce +[u'les', u'\xe9tudes', u'sont', u'longues', u'et', u'difficiles'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'avoir', u'un', u'm\xe9tier', u'bien', u',', u'arriver', u'\xe0', u'bien', u'nager'] +suite + mes projets sont réalisables car modestes , je veux aussi une grande voilière , ce qu il faut c est que les gens soient plus attentifs aux autres et qu ils les aident pour réaliser leurs projets$ +reste +True +texte_uce +[u'mes', u'projets', u'sont', u'r\xe9alisables', u'car', u'modestes'] +suite + je veux aussi une grande voilière , ce qu il faut c est que les gens soient plus attentifs aux autres et qu ils les aident pour réaliser leurs projets$ +reste +True +texte_uce +[u'je', u'veux', u'aussi', u'une', u'grande', u'voili\xe8re'] +suite + ce qu il faut c est que les gens soient plus attentifs aux autres et qu ils les aident pour réaliser leurs projets$ +reste +True +texte_uce +[u'ce', u'qu', u'il', u'faut', u'c', u'est', u'que', u'les', u'gens', u'soient'] +suite +plus attentifs aux autres et qu ils les aident pour réaliser leurs projets$ +reste +True +texte_uce +[u'plus', u'attentifs', u'aux', u'autres', u'et', u'qu', u'ils', u'les'] +suite +aident pour réaliser leurs projets$ +reste +True +texte_uce +[u'aident', u'pour', u'r\xe9aliser', u'leurs', u'projets'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'jusqu_au'] +suite +baccalauréat et faire un boulot qui me plaît je veux avoir une belle voiture de sport , une femme et un enfant minimum$ +reste +True +texte_uce +[u'baccalaur\xe9at', u'et', u'faire', u'un', u'boulot', u'qui', u'me'] +suite +plaît je veux avoir une belle voiture de sport , une femme et un enfant minimum$ +reste +True +texte_uce +[u'pla\xeet', u'je', u'veux', u'avoir', u'une', u'belle', u'voiture', u'de', u'sport'] +suite + une femme et un enfant minimum$ +reste +True +texte_uce +[u'une', u'femme', u'et', u'un', u'enfant', u'minimum'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'pense', u'rentrer', u'\xe0', u'l', u'\xe9cole', u'd', u'h\xf4telerie', u'et'] +suite +essayer d avoir un bon diplôme , avoir un salaire très fort et travailler dans un restaurant comme cuisinier et apprenti , j espère que je vais faire la fête avant de me marier , après je profite de ma femme et je lui fais des enfants , après je deviens milliardaire , je prends la retraite anticipée , plein de filles et mourir sans regret$ +reste +True +texte_uce +[u'essayer', u'd', u'avoir', u'un', u'bon', u'dipl\xf4me'] +suite + avoir un salaire très fort et travailler dans un restaurant comme cuisinier et apprenti , j espère que je vais faire la fête avant de me marier , après je profite de ma femme et je lui fais des enfants , après je deviens milliardaire , je prends la retraite anticipée , plein de filles et mourir sans regret$ +reste +True +texte_uce +[u'avoir', u'un', u'salaire', u'tr\xe8s', u'fort', u'et', u'travailler'] +suite +dans un restaurant comme cuisinier et apprenti , j espère que je vais faire la fête avant de me marier , après je profite de ma femme et je lui fais des enfants , après je deviens milliardaire , je prends la retraite anticipée , plein de filles et mourir sans regret$ +reste +True +texte_uce +[u'dans', u'un', u'restaurant', u'comme', u'cuisinier', u'et', u'apprenti'] +suite + j espère que je vais faire la fête avant de me marier , après je profite de ma femme et je lui fais des enfants , après je deviens milliardaire , je prends la retraite anticipée , plein de filles et mourir sans regret$ +reste +True +texte_uce +[u'j', u'esp\xe8re', u'que', u'je', u'vais', u'faire', u'la', u'f\xeate', u'avant', u'de', u'me', u'marier'] +suite + après je profite de ma femme et je lui fais des enfants , après je deviens milliardaire , je prends la retraite anticipée , plein de filles et mourir sans regret$ +reste +True +texte_uce +[u'apr\xe8s', u'je', u'profite', u'de', u'ma', u'femme', u'et', u'je', u'lui'] +suite +fais des enfants , après je deviens milliardaire , je prends la retraite anticipée , plein de filles et mourir sans regret$ +reste +True +texte_uce +[u'fais', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'deviens', u'milliardaire'] +suite + je prends la retraite anticipée , plein de filles et mourir sans regret$ +reste +True +texte_uce +[u'je', u'prends', u'la', u'retraite', u'anticip\xe9e'] +suite + plein de filles et mourir sans regret$ +reste +True +texte_uce +[u'plein', u'de', u'filles', u'et', u'mourir', u'sans', u'regret'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'faire', u'de', u'longues', u'\xe9tudes'] +suite + et avoir un bon métier , aussi passer mon permis un appartement être indépendante et avoir un chat , il ne faut pas que je fasse tout en même temps je ne veux pas me sentir bousculer , pour la famille l idéal c est d avoir un mari et des enfants , après je mets de l argent de côté pour pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'et', u'avoir', u'un', u'bon', u'm\xe9tier'] +suite + aussi passer mon permis un appartement être indépendante et avoir un chat , il ne faut pas que je fasse tout en même temps je ne veux pas me sentir bousculer , pour la famille l idéal c est d avoir un mari et des enfants , après je mets de l argent de côté pour pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'aussi', u'passer', u'mon', u'permis', u'un', u'appartement'] +suite +être indépendante et avoir un chat , il ne faut pas que je fasse tout en même temps je ne veux pas me sentir bousculer , pour la famille l idéal c est d avoir un mari et des enfants , après je mets de l argent de côté pour pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'\xeatre', u'ind\xe9pendante', u'et', u'avoir', u'un', u'chat'] +suite + il ne faut pas que je fasse tout en même temps je ne veux pas me sentir bousculer , pour la famille l idéal c est d avoir un mari et des enfants , après je mets de l argent de côté pour pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'il', u'ne', u'faut', u'pas', u'que', u'je', u'fasse', u'tout', u'en', u'm\xeame'] +suite +temps je ne veux pas me sentir bousculer , pour la famille l idéal c est d avoir un mari et des enfants , après je mets de l argent de côté pour pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'temps', u'je', u'ne', u'veux', u'pas', u'me', u'sentir', u'bousculer'] +suite + pour la famille l idéal c est d avoir un mari et des enfants , après je mets de l argent de côté pour pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'pour', u'la', u'famille', u'l', u'id\xe9al', u'c', u'est', u'd', u'avoir', u'un'] +suite +mari et des enfants , après je mets de l argent de côté pour pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'mari', u'et', u'des', u'enfants'] +suite + après je mets de l argent de côté pour pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'apr\xe8s', u'je', u'mets', u'de', u'l', u'argent', u'de', u'c\xf4t\xe9', u'pour'] +suite +pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'pouvoir', u'partir', u'en', u'voyage'] +suite + j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien'] +suite + c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager'] +suite + bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans'] +suite +le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'le', u'grand', u'cycle'] +suite + après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la'] +suite +vie avant de m attacher$ +reste +True +texte_uce +[u'vie', u'avant', u'de', u'm', u'attacher'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'\xe9t\xe9', u'\xe0', u'l', u'h\xf4pital', u'et', u'l\xe0', u'j', u'ai', u'compris'] +suite +que les métiers dans le sanitaire c était important , essentiel pour la société , car ils savent les vies et évitent les malheurs , c est pour cela que j ai décidé d être infirmière , donc poursuivre mes études et me marier un jour et avoir des enfants$ +reste +True +texte_uce +[u'que', u'les', u'm\xe9tiers', u'dans', u'le', u'sanitaire', u'c', u'\xe9tait', u'important'] +suite + essentiel pour la société , car ils savent les vies et évitent les malheurs , c est pour cela que j ai décidé d être infirmière , donc poursuivre mes études et me marier un jour et avoir des enfants$ +reste +True +texte_uce +[u'essentiel', u'pour', u'la', u'soci\xe9t\xe9'] +suite + car ils savent les vies et évitent les malheurs , c est pour cela que j ai décidé d être infirmière , donc poursuivre mes études et me marier un jour et avoir des enfants$ +reste +True +texte_uce +[u'car', u'ils', u'savent', u'les', u'vies', u'et', u'\xe9vitent', u'les', u'malheurs'] +suite + c est pour cela que j ai décidé d être infirmière , donc poursuivre mes études et me marier un jour et avoir des enfants$ +reste +True +texte_uce +[u'c', u'est', u'pour', u'cela', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'infirmi\xe8re'] +suite + donc poursuivre mes études et me marier un jour et avoir des enfants$ +reste +True +texte_uce +[u'donc', u'poursuivre', u'mes', u'\xe9tudes', u'et', u'me', u'marier'] +suite +un jour et avoir des enfants$ +reste +True +texte_uce +[u'un', u'jour', u'et', u'avoir', u'des', u'enfants'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'plus', u'tard', u'je', u'veux', u'devenir', u'styliste', u'car', u'la'] +suite +mode ça m attire bien , je veux devenir un grand styliste , comme tout le monde je veux devenir riche et vivre sans problème , je suis certaine de ne pas me marier , mais j ai tout de même une idée de l homme idéal grand brun yeux bleus musclé , beau quoi , je ne veux que deux enfants , je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'mode', u'\xe7a', u'm', u'attire', u'bien'] +suite + je veux devenir un grand styliste , comme tout le monde je veux devenir riche et vivre sans problème , je suis certaine de ne pas me marier , mais j ai tout de même une idée de l homme idéal grand brun yeux bleus musclé , beau quoi , je ne veux que deux enfants , je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'je', u'veux', u'devenir', u'un', u'grand', u'styliste'] +suite + comme tout le monde je veux devenir riche et vivre sans problème , je suis certaine de ne pas me marier , mais j ai tout de même une idée de l homme idéal grand brun yeux bleus musclé , beau quoi , je ne veux que deux enfants , je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'comme', u'tout', u'le', u'monde', u'je', u'veux', u'devenir', u'riche'] +suite +et vivre sans problème , je suis certaine de ne pas me marier , mais j ai tout de même une idée de l homme idéal grand brun yeux bleus musclé , beau quoi , je ne veux que deux enfants , je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'et', u'vivre', u'sans', u'probl\xe8me'] +suite + je suis certaine de ne pas me marier , mais j ai tout de même une idée de l homme idéal grand brun yeux bleus musclé , beau quoi , je ne veux que deux enfants , je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'je', u'suis', u'certaine', u'de', u'ne', u'pas', u'me', u'marier'] +suite + mais j ai tout de même une idée de l homme idéal grand brun yeux bleus musclé , beau quoi , je ne veux que deux enfants , je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'mais', u'j', u'ai', u'tout', u'de', u'm\xeame', u'une', u'id\xe9e', u'de', u'l', u'homme'] +suite +idéal grand brun yeux bleus musclé , beau quoi , je ne veux que deux enfants , je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'id\xe9al', u'grand', u'brun', u'yeux', u'bleus', u'muscl\xe9'] +suite + beau quoi , je ne veux que deux enfants , je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants'] +suite + je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'je', u'veux', u'une', u'grande', u'maison'] +suite + pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison'] +suite + je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde'] +suite + je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'je', u'veux', u'une', u'grande', u'voiture'] +suite + je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'faire', u'des', u'\xe9tudes', u'dans', u'la', u'comptabilit\xe9'] +suite + et dans dix ans travailler , je ne veux pas me marier tout de suite je veux avoir un appartement pour moi seule ou avec une amie , et essayer de vivre seule sans mes parents , je veux goûter la liberté sans les parents , ensuite continuer le travail même si je me marie$ +reste +True +texte_uce +[u'et', u'dans', u'dix', u'ans', u'travailler'] +suite + je ne veux pas me marier tout de suite je veux avoir un appartement pour moi seule ou avec une amie , et essayer de vivre seule sans mes parents , je veux goûter la liberté sans les parents , ensuite continuer le travail même si je me marie$ +reste +True +texte_uce +[u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'tout', u'de', u'suite'] +suite +je veux avoir un appartement pour moi seule ou avec une amie , et essayer de vivre seule sans mes parents , je veux goûter la liberté sans les parents , ensuite continuer le travail même si je me marie$ +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'un', u'appartement', u'pour', u'moi', u'seule'] +suite +ou avec une amie , et essayer de vivre seule sans mes parents , je veux goûter la liberté sans les parents , ensuite continuer le travail même si je me marie$ +reste +True +texte_uce +[u'ou', u'avec', u'une', u'amie'] +suite + et essayer de vivre seule sans mes parents , je veux goûter la liberté sans les parents , ensuite continuer le travail même si je me marie$ +reste +True +texte_uce +[u'et', u'essayer', u'de', u'vivre', u'seule', u'sans', u'mes', u'parents'] +suite + je veux goûter la liberté sans les parents , ensuite continuer le travail même si je me marie$ +reste +True +texte_uce +[u'je', u'veux', u'go\xfbter', u'la', u'libert\xe9', u'sans', u'les', u'parents'] +suite + ensuite continuer le travail même si je me marie$ +reste +True +texte_uce +[u'ensuite', u'continuer', u'le', u'travail', u'm\xeame', u'si', u'je', u'me', u'marie'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'aimerais', u'devenir', u'informaticienne'] +suite + je l ai décidé cette année car dans ma classe on choisit une orientation et on envisage différents métiers ils vont être réalisables dans dix ans car c est là que je vais avoir fini mes études , je voudrai aller aux jeux olympiques , je voudrais un garçon mais pas de mariage il faut avoir plus confiance aux jeunes pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'je', u'l', u'ai', u'd\xe9cid\xe9', u'cette', u'ann\xe9e', u'car', u'dans', u'ma'] +suite +classe on choisit une orientation et on envisage différents métiers ils vont être réalisables dans dix ans car c est là que je vais avoir fini mes études , je voudrai aller aux jeux olympiques , je voudrais un garçon mais pas de mariage il faut avoir plus confiance aux jeunes pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'classe', u'on', u'choisit', u'une', u'orientation', u'et', u'on'] +suite +envisage différents métiers ils vont être réalisables dans dix ans car c est là que je vais avoir fini mes études , je voudrai aller aux jeux olympiques , je voudrais un garçon mais pas de mariage il faut avoir plus confiance aux jeunes pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'envisage', u'diff\xe9rents', u'm\xe9tiers', u'ils', u'vont', u'\xeatre'] +suite +réalisables dans dix ans car c est là que je vais avoir fini mes études , je voudrai aller aux jeux olympiques , je voudrais un garçon mais pas de mariage il faut avoir plus confiance aux jeunes pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'r\xe9alisables', u'dans', u'dix', u'ans', u'car', u'c', u'est', u'l\xe0', u'que'] +suite +je vais avoir fini mes études , je voudrai aller aux jeux olympiques , je voudrais un garçon mais pas de mariage il faut avoir plus confiance aux jeunes pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'je', u'vais', u'avoir', u'fini', u'mes', u'\xe9tudes'] +suite + je voudrai aller aux jeux olympiques , je voudrais un garçon mais pas de mariage il faut avoir plus confiance aux jeunes pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'je', u'voudrai', u'aller', u'aux', u'jeux', u'olympiques'] +suite + je voudrais un garçon mais pas de mariage il faut avoir plus confiance aux jeunes pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage'] +suite +il faut avoir plus confiance aux jeunes pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'il', u'faut', u'avoir', u'plus', u'confiance', u'aux', u'jeunes'] +suite +pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs'] +suite +projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer'] +suite +ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne'] +suite +veulent pas faire$ +reste +True +texte_uce +[u'veulent', u'pas', u'faire'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'un', u'an', u'je', u'pars', u'de', u'chez', u'moi'] +suite + je passe mon permis de voiture et je trouve un travail je loue une maison et je passe une belle vie et après je me marie$ +reste +True +texte_uce +[u'je', u'passe', u'mon', u'permis', u'de', u'voiture', u'et', u'je'] +suite +trouve un travail je loue une maison et je passe une belle vie et après je me marie$ +reste +True +texte_uce +[u'trouve', u'un', u'travail', u'je', u'loue', u'une', u'maison', u'et'] +suite +je passe une belle vie et après je me marie$ +reste +True +texte_uce +[u'je', u'passe', u'une', u'belle', u'vie', u'et', u'apr\xe8s', u'je', u'me', u'marie'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'avoir', u'un', u'bon', u'm\xe9tier', u'dans', u'le', u'domaine', u'sportif'] +suite + avoir beaucoup d argent et avoir une bonne vie de famille , plus de politique , plus de clochards , plus de famine plus de racisme pas de maçon qui ne gagnent pas leur vie à cause de l orientation dans le collège on gâche sa vie ce que je veux c est de bien me sentir dans ma peau$ +reste +True +texte_uce +[u'avoir', u'beaucoup', u'd', u'argent', u'et', u'avoir', u'une', u'bonne'] +suite +vie de famille , plus de politique , plus de clochards , plus de famine plus de racisme pas de maçon qui ne gagnent pas leur vie à cause de l orientation dans le collège on gâche sa vie ce que je veux c est de bien me sentir dans ma peau$ +reste +True +texte_uce +[u'vie', u'de', u'famille', u',', u'plus', u'de', u'politique'] +suite + plus de clochards , plus de famine plus de racisme pas de maçon qui ne gagnent pas leur vie à cause de l orientation dans le collège on gâche sa vie ce que je veux c est de bien me sentir dans ma peau$ +reste +True +texte_uce +[u'plus', u'de', u'clochards'] +suite + plus de famine plus de racisme pas de maçon qui ne gagnent pas leur vie à cause de l orientation dans le collège on gâche sa vie ce que je veux c est de bien me sentir dans ma peau$ +reste +True +texte_uce +[u'plus', u'de', u'famine', u'plus', u'de', u'racisme', u'pas', u'de'] +suite +maçon qui ne gagnent pas leur vie à cause de l orientation dans le collège on gâche sa vie ce que je veux c est de bien me sentir dans ma peau$ +reste +True +texte_uce +[u'ma\xe7on', u'qui', u'ne', u'gagnent', u'pas', u'leur', u'vie', u'\xe0', u'cause'] +suite +de l orientation dans le collège on gâche sa vie ce que je veux c est de bien me sentir dans ma peau$ +reste +True +texte_uce +[u'de', u'l', u'orientation', u'dans', u'le', u'coll\xe8ge', u'on', u'g\xe2che'] +suite +sa vie ce que je veux c est de bien me sentir dans ma peau$ +reste +True +texte_uce +[u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me'] +suite +sentir dans ma peau$ +reste +True +texte_uce +[u'sentir', u'dans', u'ma', u'peau'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'commence', u'\xe0', u'avoir', u'des'] +suite +projets je veux un boulot qui me fasse gagner de l argent , la médecine , je vais me lancer dans le sport je vais m inscrire dans un grand club , faire de longues études , pour ma vie sentimental rencontrer des filles faire des connaissances agréables , je veux le permis , pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'projets', u'je', u'veux', u'un', u'boulot', u'qui', u'me', u'fasse'] +suite +gagner de l argent , la médecine , je vais me lancer dans le sport je vais m inscrire dans un grand club , faire de longues études , pour ma vie sentimental rencontrer des filles faire des connaissances agréables , je veux le permis , pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'gagner', u'de', u'l', u'argent', u',', u'la', u'm\xe9decine'] +suite + je vais me lancer dans le sport je vais m inscrire dans un grand club , faire de longues études , pour ma vie sentimental rencontrer des filles faire des connaissances agréables , je veux le permis , pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'je', u'vais', u'me', u'lancer', u'dans', u'le', u'sport', u'je', u'vais'] +suite +m inscrire dans un grand club , faire de longues études , pour ma vie sentimental rencontrer des filles faire des connaissances agréables , je veux le permis , pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'm', u'inscrire', u'dans', u'un', u'grand', u'club'] +suite + faire de longues études , pour ma vie sentimental rencontrer des filles faire des connaissances agréables , je veux le permis , pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'faire', u'de', u'longues', u'\xe9tudes'] +suite + pour ma vie sentimental rencontrer des filles faire des connaissances agréables , je veux le permis , pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'pour', u'ma', u'vie', u'sentimental', u'rencontrer', u'des'] +suite +filles faire des connaissances agréables , je veux le permis , pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'filles', u'faire', u'des', u'connaissances', u'agr\xe9ables'] +suite + je veux le permis , pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'je', u'veux', u'le', u'permis'] +suite + pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'pour', u'moi', u'mes', u'parents', u'c', u'est', u'sacr\xe9', u'je', u'veux'] +suite +rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'rester', u'le', u'plus', u'longtemps', u'avec', u'eux'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'ne', u'sais', u'rien', u'sur', u'mes', u'projets', u'je', u'ne', u'sais'] +suite +pas je ne sais pas$ +reste +True +texte_uce +[u'pas', u'je', u'ne', u'sais', u'pas'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'ai', u'pas', u'de', u'projet', u'en', u'ce', u'moment', u'je', u'ne'] +suite +pense qu aux filles je ne pense qu à cela je ne pense qu aux filles , les filles$ +reste +True +texte_uce +[u'pense', u'qu', u'aux', u'filles', u'je', u'ne', u'pense', u'qu', u'\xe0', u'cela'] +suite +je ne pense qu aux filles , les filles$ +reste +True +texte_uce +[u'je', u'ne', u'pense', u'qu', u'aux', u'filles', u',', u'les', u'filles'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u'je', u'pars', u'de', u'chez', u'moi'] +suite + et je passe mon permis de conduire après je me marie et je pratique à fond la religion je veux profiter de la vie mais après c est l enfer$ +reste +True +texte_uce +[u'et', u'je', u'passe', u'mon', u'permis', u'de', u'conduire', u'apr\xe8s'] +suite +je me marie et je pratique à fond la religion je veux profiter de la vie mais après c est l enfer$ +reste +True +texte_uce +[u'je', u'me', u'marie', u'et', u'je', u'pratique', u'\xe0', u'fond', u'la'] +suite +religion je veux profiter de la vie mais après c est l enfer$ +reste +True +texte_uce +[u'religion', u'je', u'veux', u'profiter', u'de', u'la', u'vie', u'mais'] +suite +après c est l enfer$ +reste +True +texte_uce +[u'apr\xe8s', u'c', u'est', u'l', u'enfer'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'une', u'femme', u'et', u'un', u'appartement'] +suite + pour la profession je voudrais m orienter vers une formation technique pour réaliser tout cela il faut que je travaille après quand je serai vieux je veux faire le pèlerinage , si tout va bien$ +reste +True +texte_uce +[u'pour', u'la', u'profession', u'je', u'voudrais', u'm', u'orienter'] +suite +vers une formation technique pour réaliser tout cela il faut que je travaille après quand je serai vieux je veux faire le pèlerinage , si tout va bien$ +reste +True +texte_uce +[u'vers', u'une', u'formation', u'technique', u'pour', u'r\xe9aliser'] +suite +tout cela il faut que je travaille après quand je serai vieux je veux faire le pèlerinage , si tout va bien$ +reste +True +texte_uce +[u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'apr\xe8s'] +suite +quand je serai vieux je veux faire le pèlerinage , si tout va bien$ +reste +True +texte_uce +[u'quand', u'je', u'serai', u'vieux', u'je', u'veux', u'faire', u'le', u'p\xe8lerinage'] +suite + si tout va bien$ +reste +True +texte_uce +[u'si', u'tout', u'va', u'bien'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'compte', u'faire', u'une', u'formation', u'technique'] +suite +et après cette formation fonder une famille et avoir une voiture$ +reste +True +texte_uce +[u'et', u'apr\xe8s', u'cette', u'formation', u'fonder', u'une', u'famille'] +suite +et avoir une voiture$ +reste +True +texte_uce +[u'et', u'avoir', u'une', u'voiture'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u'\xe0', u'la', u'majorit\xe9'] +suite + je veux avoir un appartement , je ferai des petits boulots je veux mon indépendance , je veux continuer mes études en faisant les petits boulots une formation technique , avec une bonne formation fonder une famille et essayer d être heureux$ +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'un', u'appartement'] +suite + je ferai des petits boulots je veux mon indépendance , je veux continuer mes études en faisant les petits boulots une formation technique , avec une bonne formation fonder une famille et essayer d être heureux$ +reste +True +texte_uce +[u'je', u'ferai', u'des', u'petits', u'boulots', u'je', u'veux', u'mon', u'ind\xe9pendance'] +suite + je veux continuer mes études en faisant les petits boulots une formation technique , avec une bonne formation fonder une famille et essayer d être heureux$ +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'en', u'faisant'] +suite +les petits boulots une formation technique , avec une bonne formation fonder une famille et essayer d être heureux$ +reste +True +texte_uce +[u'les', u'petits', u'boulots', u'une', u'formation', u'technique'] +suite + avec une bonne formation fonder une famille et essayer d être heureux$ +reste +True +texte_uce +[u'avec', u'une', u'bonne', u'formation', u'fonder', u'une', u'famille'] +suite +et essayer d être heureux$ +reste +True +texte_uce +[u'et', u'essayer', u'd', u'\xeatre', u'heureux'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'voyager'] +suite + dans tout le monde avoir plein de voitures et de femmes je veux être riche et avoir plein de femmes$ +reste +True +texte_uce +[u'dans', u'tout', u'le', u'monde', u'avoir', u'plein', u'de', u'voitures'] +suite +et de femmes je veux être riche et avoir plein de femmes$ +reste +True +texte_uce +[u'et', u'de', u'femmes', u'je', u'veux', u'\xeatre', u'riche', u'et', u'avoir'] +suite +plein de femmes$ +reste +True +texte_uce +[u'plein', u'de', u'femmes'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'professeur', u'de', u'physique'] +suite +et pour cela il faut que je continue mes études , ensuite j espère me marier , avoir une voiture et une maison$ +reste +True +texte_uce +[u'et', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'continue', u'mes', u'\xe9tudes'] +suite + ensuite j espère me marier , avoir une voiture et une maison$ +reste +True +texte_uce +[u'ensuite', u'j', u'esp\xe8re', u'me', u'marier'] +suite + avoir une voiture et une maison$ +reste +True +texte_uce +[u'avoir', u'une', u'voiture', u'et', u'une', u'maison'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'un', u'bon', u'boulot', u'qui', u'me', u'rapporte', u'de', u'l', u'argent'] +suite + et je veux pouvoir faire des voyages , je veux continuer dans la danse et devenir une professionnel , je veux continuer à garder des liens avec ma famille car elle est sacrée je veux aussi un super mari pour que ça se réalise il faut de la chance , il faut compter sur dieu$ +reste +True +texte_uce +[u'et', u'je', u'veux', u'pouvoir', u'faire', u'des', u'voyages'] +suite + je veux continuer dans la danse et devenir une professionnel , je veux continuer à garder des liens avec ma famille car elle est sacrée je veux aussi un super mari pour que ça se réalise il faut de la chance , il faut compter sur dieu$ +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'dans', u'la', u'danse', u'et', u'devenir'] +suite +une professionnel , je veux continuer à garder des liens avec ma famille car elle est sacrée je veux aussi un super mari pour que ça se réalise il faut de la chance , il faut compter sur dieu$ +reste +True +texte_uce +[u'une', u'professionnel'] +suite + je veux continuer à garder des liens avec ma famille car elle est sacrée je veux aussi un super mari pour que ça se réalise il faut de la chance , il faut compter sur dieu$ +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'\xe0', u'garder', u'des', u'liens', u'avec'] +suite +ma famille car elle est sacrée je veux aussi un super mari pour que ça se réalise il faut de la chance , il faut compter sur dieu$ +reste +True +texte_uce +[u'ma', u'famille', u'car', u'elle', u'est', u'sacr\xe9e', u'je', u'veux'] +suite +aussi un super mari pour que ça se réalise il faut de la chance , il faut compter sur dieu$ +reste +True +texte_uce +[u'aussi', u'un', u'super', u'mari', u'pour', u'que', u'\xe7a', u'se', u'r\xe9alise'] +suite +il faut de la chance , il faut compter sur dieu$ +reste +True +texte_uce +[u'il', u'faut', u'de', u'la', u'chance', u',', u'il', u'faut', u'compter', u'sur', u'dieu'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'toujours', u'garder', u'des', u'liens', u'avec', u'ma'] +suite +famille au niveau de mon métier je veux faire un travail social , je veux me marier et fonder une famille et avoir de belles maisons j espère voyager dans tout le monde , je pense pouvoir réaliser tout cela par rapport à mon mariage$ +reste +True +texte_uce +[u'famille', u'au', u'niveau', u'de', u'mon', u'm\xe9tier', u'je', u'veux'] +suite +faire un travail social , je veux me marier et fonder une famille et avoir de belles maisons j espère voyager dans tout le monde , je pense pouvoir réaliser tout cela par rapport à mon mariage$ +reste +True +texte_uce +[u'faire', u'un', u'travail', u'social'] +suite + je veux me marier et fonder une famille et avoir de belles maisons j espère voyager dans tout le monde , je pense pouvoir réaliser tout cela par rapport à mon mariage$ +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille'] +suite +et avoir de belles maisons j espère voyager dans tout le monde , je pense pouvoir réaliser tout cela par rapport à mon mariage$ +reste +True +texte_uce +[u'et', u'avoir', u'de', u'belles', u'maisons', u'j', u'esp\xe8re', u'voyager'] +suite +dans tout le monde , je pense pouvoir réaliser tout cela par rapport à mon mariage$ +reste +True +texte_uce +[u'dans', u'tout', u'le', u'monde'] +suite + je pense pouvoir réaliser tout cela par rapport à mon mariage$ +reste +True +texte_uce +[u'je', u'pense', u'pouvoir', u'r\xe9aliser', u'tout', u'cela', u'par'] +suite +rapport à mon mariage$ +reste +True +texte_uce +[u'rapport', u'\xe0', u'mon', u'mariage'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'une', u'bonne', u'qualification', u'pour'] +suite +le métier et ça sera possible si je continue mes études après cela penser à la vie sentimentale$ +reste +True +texte_uce +[u'le', u'm\xe9tier', u'et', u'\xe7a', u'sera', u'possible', u'si', u'je', u'continue'] +suite +mes études après cela penser à la vie sentimentale$ +reste +True +texte_uce +[u'mes', u'\xe9tudes', u'apr\xe8s', u'cela', u'penser', u'\xe0', u'la', u'vie', u'sentimentale'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'pour', u'faire'] +suite +de l anglais ou la médecine , il faut multiplier les centres de rencontre pour les jeunes je veux vivre dans un grand et beau pays dans un pays de la liberté je veux rencontrer des gens connus et me marier avec une vedette$ +reste +True +texte_uce +[u'de', u'l', u'anglais', u'ou', u'la', u'm\xe9decine'] +suite + il faut multiplier les centres de rencontre pour les jeunes je veux vivre dans un grand et beau pays dans un pays de la liberté je veux rencontrer des gens connus et me marier avec une vedette$ +reste +True +texte_uce +[u'il', u'faut', u'multiplier', u'les', u'centres', u'de', u'rencontre'] +suite +pour les jeunes je veux vivre dans un grand et beau pays dans un pays de la liberté je veux rencontrer des gens connus et me marier avec une vedette$ +reste +True +texte_uce +[u'pour', u'les', u'jeunes', u'je', u'veux', u'vivre', u'dans', u'un', u'grand'] +suite +et beau pays dans un pays de la liberté je veux rencontrer des gens connus et me marier avec une vedette$ +reste +True +texte_uce +[u'et', u'beau', u'pays', u'dans', u'un', u'pays', u'de', u'la', u'libert\xe9'] +suite +je veux rencontrer des gens connus et me marier avec une vedette$ +reste +True +texte_uce +[u'je', u'veux', u'rencontrer', u'des', u'gens', u'connus', u'et', u'me'] +suite +marier avec une vedette$ +reste +True +texte_uce +[u'marier', u'avec', u'une', u'vedette'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'et', u'faire', u'un'] +suite +travail intéressant et qui rapporte de l argent , je veux me marier et fonder une famille , je veux vivre dans un beau pays je veux beaucoup voyager , une fois bien profiter de la vie je pense faire des enfants et m en occuper , si je pouvais avoir plus de liberté pour plus profiter de la vie$ +reste +True +texte_uce +[u'travail', u'int\xe9ressant', u'et', u'qui', u'rapporte', u'de', u'l', u'argent'] +suite + je veux me marier et fonder une famille , je veux vivre dans un beau pays je veux beaucoup voyager , une fois bien profiter de la vie je pense faire des enfants et m en occuper , si je pouvais avoir plus de liberté pour plus profiter de la vie$ +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille'] +suite + je veux vivre dans un beau pays je veux beaucoup voyager , une fois bien profiter de la vie je pense faire des enfants et m en occuper , si je pouvais avoir plus de liberté pour plus profiter de la vie$ +reste +True +texte_uce +[u'je', u'veux', u'vivre', u'dans', u'un', u'beau', u'pays', u'je', u'veux'] +suite +beaucoup voyager , une fois bien profiter de la vie je pense faire des enfants et m en occuper , si je pouvais avoir plus de liberté pour plus profiter de la vie$ +reste +True +texte_uce +[u'beaucoup', u'voyager'] +suite + une fois bien profiter de la vie je pense faire des enfants et m en occuper , si je pouvais avoir plus de liberté pour plus profiter de la vie$ +reste +True +texte_uce +[u'une', u'fois', u'bien', u'profiter', u'de', u'la', u'vie', u'je', u'pense'] +suite +faire des enfants et m en occuper , si je pouvais avoir plus de liberté pour plus profiter de la vie$ +reste +True +texte_uce +[u'faire', u'des', u'enfants', u'et', u'm', u'en', u'occuper'] +suite + si je pouvais avoir plus de liberté pour plus profiter de la vie$ +reste +True +texte_uce +[u'si', u'je', u'pouvais', u'avoir', u'plus', u'de', u'libert\xe9', u'pour'] +suite +plus profiter de la vie$ +reste +True +texte_uce +[u'plus', u'profiter', u'de', u'la', u'vie'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'une', u'danseuse', u'et', u'en', u'faire', u'mon', u'm\xe9tier'] +suite + mais pour cela il faut de l argent sinon je vais faire un travail de technique en biologie , je veux me marier avec un super mari mais je n ai pas trop d espoir à ce niveau là$ +reste +True +texte_uce +[u'mais', u'pour', u'cela', u'il', u'faut', u'de', u'l', u'argent', u'sinon'] +suite +je vais faire un travail de technique en biologie , je veux me marier avec un super mari mais je n ai pas trop d espoir à ce niveau là$ +reste +True +texte_uce +[u'je', u'vais', u'faire', u'un', u'travail', u'de', u'technique', u'en', u'biologie'] +suite + je veux me marier avec un super mari mais je n ai pas trop d espoir à ce niveau là$ +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'avec', u'un', u'super', u'mari', u'mais'] +suite +je n ai pas trop d espoir à ce niveau là$ +reste +True +texte_uce +[u'je', u'n', u'ai', u'pas', u'trop', u'd', u'espoir', u'\xe0', u'ce', u'niveau', u'l\xe0'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'de', u'toute', u'fa\xe7on', u'\xe0', u'la', u'majorit\xe9', u'je', u'serai', u'libre'] +suite +et je pourrais faire ce qu il me plaît même si j ai envie de passer dans une autre classe$ +reste +True +texte_uce +[u'et', u'je', u'pourrais', u'faire', u'ce', u'qu', u'il', u'me', u'pla\xeet'] +suite +même si j ai envie de passer dans une autre classe$ +reste +True +texte_uce +[u'm\xeame', u'si', u'j', u'ai', u'envie', u'de', u'passer', u'dans', u'une', u'autre', u'classe'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'pense', u'd_abord', u'faire', u'mes', u'\xe9tudes', u'une'] +suite +formation technique dans le commerce , quelque chose qui soit à la portée des mes propres possibilités$ +reste +True +texte_uce +[u'formation', u'technique', u'dans', u'le', u'commerce'] +suite + quelque chose qui soit à la portée des mes propres possibilités$ +reste +True +texte_uce +[u'quelque', u'chose', u'qui', u'soit', u'\xe0', u'la', u'port\xe9e', u'des'] +suite +mes propres possibilités$ +reste +True +texte_uce +[u'mes', u'propres', u'possibilit\xe9s'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'faire', u'un', u'travail', u'dans', u'le', u'social'] +suite +commencer par une préparation d infirmière donc continuer mes études et ensuite faire une spécialisation par rapport aux enfants , je pense d_abord à ma vie de métier , le reste on ne sais pas vraiment , le hasard , mais pour le métier , il faut travailler .$ +reste +True +texte_uce +[u'commencer', u'par', u'une', u'pr\xe9paration', u'd', u'infirmi\xe8re'] +suite +donc continuer mes études et ensuite faire une spécialisation par rapport aux enfants , je pense d_abord à ma vie de métier , le reste on ne sais pas vraiment , le hasard , mais pour le métier , il faut travailler .$ +reste +True +texte_uce +[u'donc', u'continuer', u'mes', u'\xe9tudes', u'et', u'ensuite', u'faire'] +suite +une spécialisation par rapport aux enfants , je pense d_abord à ma vie de métier , le reste on ne sais pas vraiment , le hasard , mais pour le métier , il faut travailler .$ +reste +True +texte_uce +[u'une', u'sp\xe9cialisation', u'par', u'rapport', u'aux', u'enfants'] +suite + je pense d_abord à ma vie de métier , le reste on ne sais pas vraiment , le hasard , mais pour le métier , il faut travailler .$ +reste +True +texte_uce +[u'je', u'pense', u'd_abord', u'\xe0', u'ma', u'vie', u'de', u'm\xe9tier'] +suite + le reste on ne sais pas vraiment , le hasard , mais pour le métier , il faut travailler .$ +reste +True +texte_uce +[u'le', u'reste', u'on', u'ne', u'sais', u'pas', u'vraiment', u',', u'le', u'hasard'] +suite + mais pour le métier , il faut travailler .$ +reste +True +texte_uce +[u'mais', u'pour', u'le', u'm\xe9tier', u',', u'il', u'faut', u'travailler', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'ai', u'pas', u'l', u'habitude', u'de', u'faire', u'des', u'projets', u',', u'je', u'vis', u'au', u'jour', u'le', u'jour'] +suite + les adolescents font des projets à partir du moment où il se rendent compte qu ils ne doivent compter que sur eux même et qu ils doivent se prendre en charge de quel genre de projets s agit il ? projet pour mon métier , une vie assez facile , sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'les', u'adolescents', u'font', u'des', u'projets', u'\xe0', u'partir', u'du', u'moment', u'o\xf9', u'il', u'se', u'rendent', u'compte', u'qu', u'ils', u'ne', u'doivent', u'compter', u'que', u'sur', u'eux', u'm\xeame', u'et', u'qu', u'ils', u'doivent', u'se', u'prendre', u'en', u'charge', u'de', u'quel', u'genre', u'de', u'projets', u's', u'agit', u'il', u'?', u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile'] +suite + sans trop d argent ni trop peu , une maison , une voiture , une moto , tout ça grâce à la police , car je veux devenir policier . projet sentimental , en ce moment , je suis avec une fille ceci depuis 9 mois , et je veux que cela dure encore longtemps . projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps'] +suite + projets futurs : avoir mon brevet du collège , passer en seconde , ce qu il faudrait améliorer dans notre société actuelle pour que nos projets soient réalisables c est avoir à coeur ce que l on veut faire ne jamais y renoncer , ne jamais se décourager$ +reste +True +texte_uce +[u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u',', u'devenir', u'un', u'jour', u'professeur', u'de', u'fran\xe7ais', u'ou', u'd', u'histoire', u'g\xe9ographie', u';', u'me', u'marier', u';', u'avoir', u'un', u'enfant', u'pas', u'plus', u',', u'faire', u'construire', u'une', u'maison', u'et', u'si', u'possible', u',', u'ne', u'pas', u'vivre', u'en', u'ville', u',', u'plut\xf4t', u'dans', u'l', u'agglom\xe9ration', u'et', u'm\xeame', u'\xe0', u'la', u'campagne'] +suite + passer mon permis de conduire , avoir une ou plusieurs voitures . pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'passer', u'mon', u'permis', u'de', u'conduire', u',', u'avoir', u'une', u'ou', u'plusieurs', u'voitures'] +suite + pour que les jeunes puissent réussir leurs projets plus facilement il faudrait d_abord que la vie en général , devienne moins dure et moins chère que les jeunes des le départ ne soient pas obligés à prendre des crédits pour tout .$ +reste +True +texte_uce +[u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs', u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord', u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral', u',', u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u'seraient', u'de', u'devenir', u'v\xe9t\xe9rinaire', u',', u'd', u'avoir', u'une', u'belle', u'maison', u'\xe0', u'la', u'montagne', u'et', u'une', u'au', u'bord', u'de', u'la', u'mer', u',', u'avoir', u'une', u'femme', u'un', u'enfant', u',', u'une', u'grosse', u'voiture', u'de', u'sport', u'et', u'aussi', u'une', u'grosse', u'moto', u'.', u'aussi', u'de', u'sport', u'et', u'aussi', u'de', u'comp\xe9tition'] +suite + devenir champion de tir à l arc , tir à la carabine , devenir champion du monde de la chasse à courre , avec les meilleurs chiens , avoir un chenil . enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'devenir', u'champion', u'de', u'tir', u'\xe0', u'l', u'arc', u',', u'tir', u'\xe0', u'la', u'carabine', u',', u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre', u',', u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil'] +suite + enlever le quanta , éliminer les centrales nucléaires , faire exploser toutes les centrales du monde entier car elles polluent les rivières , enlever les engrais chimiques qui polluent les nappes phréatiques , enlever les centrales électriques .$ +reste +True +texte_uce +[u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u'familiaux', u',', u'je', u'pense', u'ne', u'pas', u'me', u'marier', u'mais', u'avoir', u'des', u'enfants', u',', u'au', u'moins', u'deux', u'enfants', u',', u'vivre', u'avec', u'un', u'homme', u'soit', u'en', u'tant', u'que', u'mari', u',', u'soit', u'en', u'tant', u'que', u'concubin'] +suite + je ne réaliserai ces projets que dans douze ans , lorsque j aurai un métier sûr et une situation aisée . j ai projetai cela il y a environ un an . mes projets professionnels , il y a environ trois ou quatre ans , j ai décidé d être conceptrice , rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'je', u'ne', u'r\xe9aliserai', u'ces', u'projets', u'que', u'dans', u'douze', u'ans', u',', u'lorsque', u'j', u'aurai', u'un', u'm\xe9tier', u's\xfbr', u'et', u'une', u'situation', u'ais\xe9e', u'.', u'j', u'ai', u'projetai', u'cela', u'il', u'y', u'a', u'environ', u'un', u'an', u'.', u'mes', u'projets', u'professionnels', u',', u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans', u',', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice'] +suite + rédactrice en publicité et j ai de plus en plus envie de faire ce métier . trouver des idées pour une publicité , me plaît beaucoup , imaginer , fabuler , je trouve cela passionnant . j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier', u'.', u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant'] +suite + j ai choisi ce métier , car dans la publicité on peut tout faire , rien n est impossible et je trouve ça formidable . bien sûr pour en arriver là , il va falloir travailler dur et se battre . cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre'] +suite + cela me fait un peu peur , mais dans la vie si on veut arriver à quelque chose il faut se battre et travailler , à mon avis je ne pourrai travailler vraiment que dans dix ans . ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans'] +suite + ce qu il faudrait améliorer dans notre société pour que les jeunes puissent réaliser leurs projets serait réduire le chômage , donner plus de possibilité aux jeunes dans les université , initiation pour les réaliser , changer l enseignement , la pédagogie des profs .$ +reste +True +texte_uce +[u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement'] +suite + la pédagogie des profs .$ +reste +True +texte_uce +[u'la', u'p\xe9dagogie', u'des', u'profs', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'ce', u'que', u'je', u'veux', u'faire', u'comme', u'projet', u'depuis', u'toujours', u',', u'avoir', u'un', u'bon', u'm\xe9tier', u'qui', u'paie', u',', u'ne', u'pas', u'avoir', u'd', u'enfants', u',', u'ne', u'pas', u'me', u'marier', u',', u'avoir', u'mon', u'ind\xe9pendance', u',', u'avoir', u'une', u'super', u'voiture', u',', u'\xeatre', u'biologiste', u',', u'\xe7a', u'depuis', u'l', u'\xe2ge', u'de', u'quinze', u'ans'] +suite + aller depuis toujours en amérique , depuis toujours , aller en haut , ça aussi à l age de quinze ans , depuis toujours avoir plein de téléphones dans mon appartement , depuis toujours , avoir la pilule quand j aurai envie de faire l amour avec un mec , avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'aller', u'depuis', u'toujours', u'en', u'am\xe9rique', u',', u'depuis', u'toujours', u',', u'aller', u'en', u'haut', u',', u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans', u',', u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec'] +suite + avoir un corps d athlète , depuis toujours , avoir mon permis provisoire depuis trois mois . pour que les jeunes puissent plus facilement réussir des projets , il faudrait que les parents aient plus confiance en leurs enfants , et les laissent agir . cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir'] +suite + cela est de même pour l etat , avoir les moyens financiers donner par l etat , car les parents ne peuvent pas toujours se le permettre$ +reste +True +texte_uce +[u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'l', u'intention', u'd', u'avoir', u'quatre', u'ou', u'trois', u'enfants', u',', u'mais', u'en', u'attendant', u',', u'je', u'veux', u'arriver', u'\xe0', u'mon', u'bac', u'professionnel', u',', u'enfin', u'continuer', u'mes', u'\xe9tudes', u',', u'avoir', u'un', u'bon', u'm\xe9tier'] +suite + je veux en premier une bonne situation puis ensuite fonder une famille dans au moins neuf ans . ce qui faudrait changer pour que les jeunes puissent réaliser leurs projets sont les études qui sont un peu trop dures . maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'je', u'veux', u'en', u'premier', u'une', u'bonne', u'situation', u'puis', u'ensuite', u'fonder', u'une', u'famille', u'dans', u'au', u'moins', u'neuf', u'ans', u'.', u'ce', u'qui', u'faudrait', u'changer', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'sont', u'les', u'\xe9tudes', u'qui', u'sont', u'un', u'peu', u'trop', u'dures'] +suite + maintenant pour faire femme de ménage , il faut avoir un brevet d enseignement professionnel . je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage', u',', u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel'] +suite + je veux que mon mari travaille et moi aussi , je veux élever mes enfants différemment que mes parents , je me marierai avec un homme en qui j ai entièrement confiance . fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi', u',', u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance'] +suite + fonder une famille unie a été toujours mon idée , mais pour un métier je ne suis pas certaine . aujourd_hui je sais ce que je veux faire , monitrice et éducatrice . ma mère est d accord , mon père non , mais je me moque de son avis , car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis'] +suite + car il n a pas ma charge et que lui aussi ce moque du mien . dans cinq ans je débute ma carrière , dans trois ans , j ai un appartement avec des copines , mariage dans dix , quinze ans , la maison pareil et enfin être grand_mère dans quarante ans$ +reste +True +texte_uce +[u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'concubinage', u'avec', u'des', u'gens', u'c\xe9l\xe8bre', u',', u'avoir', u'une', u'voiture', u'de', u'sport', u',', u'plusieurs', u'villas', u',', u'avec', u'mes', u'associ\xe9s', u'on', u'enqu\xeateraient', u'sur', u'les', u'vols', u',', u'je', u'veux', u'vivre', u'dans', u'une', u'\xeele', u'd\xe9sertes', u'avec', u'plein', u'de', u'mecs', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u'j', u'aimerai', u'rentrer', u'au', u'lyc\xe9e', u'pour', u'continuer', u'mes', u'\xe9tudes', u',', u'faire', u'de', u'l', u'\xe9lectronique', u',', u'apr\xe8s', u'si', u'je', u'r\xe9ussi', u'ces', u'premi\xe8res', u'\xe9tudes', u'je', u'compte', u'continuer', u'encore', u'deux', u'ans', u'dans', u'l', u'informatique', u',', u'\xeatre', u'technicien', u'sup\xe9rieur'] +suite + il n y a pas longtemps que j ai décidé cela , l année dernière , je ne savais pas encore ce que je voulais faire , en dehors du dessin assisté par ordinateur car je suis assez bon en dessin industriel , ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'il', u'n', u'y', u'a', u'pas', u'longtemps', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'cela', u',', u'l', u'ann\xe9e', u'derni\xe8re', u',', u'je', u'ne', u'savais', u'pas', u'encore', u'ce', u'que', u'je', u'voulais', u'faire', u',', u'en', u'dehors', u'du', u'dessin', u'assist\xe9', u'par', u'ordinateur', u'car', u'je', u'suis', u'assez', u'bon', u'en', u'dessin', u'industriel'] +suite + ça je peux le faire plus tard dans le cadre de mes études universitaires , comme je l ai déjà dit .$ +reste +True +texte_uce +[u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'continuer', u'mes', u'\xe9tudes', u',', u'mais', u'pas', u'trop', u'longtemps', u',', u'je', u'veux', u'passer', u'mon', u'brevet', u',', u'et', u'ensuite', u'voir', u'du', u'cot\xe9', u'd', u'une', u'formation', u'technique', u',', u'un', u'truc', u'de', u'm\xe9canicien', u',', u'enfin', u'des', u'\xe9tudes', u'pas', u'longues', u'.', u'ma', u'vie', u'sentimentale', u',', u'je', u'pense', u'me', u'marier'] +suite + après mes études , après avoir une super maison et aussi une ou plein de voitures . je suis ceinture noire de judo , et je voudrais continuer à consacrer du temps pour la compétition , dans le club ou je suis je donne des cours à des enfants$ +reste +True +texte_uce +[u'apr\xe8s', u'mes', u'\xe9tudes', u',', u'apr\xe8s', u'avoir', u'une', u'super', u'maison', u'et', u'aussi', u'une', u'ou', u'plein', u'de', u'voitures', u'.', u'je', u'suis', u'ceinture', u'noire', u'de', u'judo', u',', u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u',', u'je', u'voudrais', u'bien', u'continuer', u'un', u'petit', u'peu', u'mes', u'\xe9tudes', u',', u'mais', u'pas', u'trop', u'longtemps', u',', u'je', u'ne', u'suis', u'pas', u'tr\xe8s', u'bon', u'\xe0', u'l', u'\xe9cole', u',', u'enfin', u'je', u'ne', u'sais', u'pas', u'trop', u'ce', u'que', u'je', u'vais', u'faire', u'au', u'niveau', u'professionnel', u',', u'parce_que', u'\xe0', u'l', u'\xe9cole', u'je', u'ne', u'suis', u'pas', u'bon'] +suite + au niveau sentimental , je compte d_abord m amuser au maximum , bien plus tard bien plus tard , peut être je vais me marier , ou vivre en concubin , enfin avoir une vie un peu plus stable$ +reste +True +texte_uce +[u'au', u'niveau', u'sentimental', u',', u'je', u'compte', u'd_abord', u'm', u'amuser', u'au', u'maximum', u',', u'bien', u'plus', u'tard', u'bien', u'plus', u'tard', u',', u'peut', u'\xeatre', u'je', u'vais', u'me', u'marier', u',', u'ou', u'vivre', u'en', u'concubin', u',', u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u',', u'je', u'voudrais', u'bien', u'rentrer', u'en', u'seconde', u',', u'et', u'puis', u'continuer', u'mes', u'\xe9tudes', u',', u'rentrer', u'\xe0', u'la', u'facult\xe9', u',', u'ou', u'bien', u'dans', u'une', u'formation', u'plus', u'technique', u',', u'enfin', u'le', u'minimum', u'c', u'est', u'd', u'avoir', u'mon', u'baccalaur\xe9at', u',', u'c', u'est', u'mon', u'premier', u'projet'] +suite + pour le choix professionnel , j ai encore du temps avant de me décider . niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'pour', u'le', u'choix', u'professionnel', u',', u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider'] +suite + niveau sentimental , je crois que je suis encore jeune pour y voir bien clair , je pense certainement fonder une famille , mais cela ne pourra se faire qu après avoir bien travailler au niveau du métier , pas avoir un gosse sans boulot par exemple , ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple'] +suite + ça ça serait galère , je n y pense même pas . je pense essayer de voyager rien que pour les vacances et le faire tant que je suis jeune , avec une famille ça devient beaucoup plus difficile$ +reste +True +texte_uce +[u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u',', u'je', u'compte', u'rentrer', u'au', u'lyc\xe9e', u'pour', u'pr\xe9parer', u'un', u'bac', u'technique', u',', u'apr\xe8s', u'je', u'compte', u'faire', u'une', u'formation', u'technique', u',', u'mais', u'je', u'ne', u'sais', u'pas', u'encore', u'vraiment', u'ce', u'que', u'je', u'veux', u'faire', u',', u'je', u'suis', u'assez', u'bon', u'dans', u'la', u'm\xe9canique'] +suite + certainement que je vais essayer de travailler de ce coté$ +reste +True +texte_uce +[u'certainement', u'que', u'je', u'vais', u'essayer', u'de', u'travailler', u'de', u'ce', u'cot\xe9'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'au', u'niveau', u'professionnel', u',', u'le', u'minimum', u'pour', u'l', u'instant', u'c', u'est', u'de', u'passer', u'mon', u'brevet', u',', u'en', u'cas', u'de', u'r\xe9ussite', u',', u'et', u'je', u'pense', u'que', u'\xe7a', u'va', u'marcher', u',', u'continuer', u'au', u'lyc\xe9e'] +suite + je voudrais bien devenir professeur de mathématique ou de gymnastique , enfin un truc dans ce style , ça peut être moniteur de sport , plutôt le sport . niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'je', u'voudrais', u'bien', u'devenir', u'professeur', u'de', u'math\xe9matique', u'ou', u'de', u'gymnastique', u',', u'enfin', u'un', u'truc', u'dans', u'ce', u'style', u',', u'\xe7a', u'peut', u'\xeatre', u'moniteur', u'de', u'sport', u',', u'plut\xf4t', u'le', u'sport'] +suite + niveau sentimental , je crois que j ai encore le temps d y penser , je voudrais bien fonder une famille , avoir une maison et pouvoir partir en vacances , c est le minimum qu on peut vouloir , après ça tourne au délire$ +reste +True +texte_uce +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser', u',', u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille', u',', u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'veux', u'vivre', u'loin', u'de', u'la', u'ville', u'dans', u'une', u'\xeele', u'd\xe9serte', u',', u'avec', u'de', u'super', u'appareils', u'de', u'musique', u',', u'et', u'une', u'image', u'grand', u'\xe9cran', u'en', u'direct', u'du', u'festival', u',', u'rien', u'que', u'musique', u'et', u'image', u',', u'je', u'veux', u'pas', u'm', u'inscrire', u'dans', u'la', u'profession', u'apr\xe8s', u't', u'as', u'envie', u'd', u'une', u'famille'] +suite + d une voiture , et puis tu arrêtes pas d avoir envie de ceci ou de cela . coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'd', u'une', u'voiture', u',', u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de', u'ceci', u'ou', u'de', u'cela'] +suite + coté sentimental vraiment pas de projets , je veux vivre sur une île déserte avec la mer en face et surtout pas de bateaux à l horizon , au cas où quelques jets de grenades et l histoire est classée , loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets', u',', u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e'] +suite + loin du trafic polluant des mécaniques et de la gente humaine$ +reste +True +texte_uce +[u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'l', u'intention', u'd', u'avoir', u'au', u'moins', u'des', u'enfants', u',', u'mais', u'en', u'attendant', u',', u'je', u'veux', u'arriver', u'\xe0', u'une', u'profession', u'par', u'rapport', u'au', u'baccalaur\xe9at', u'technique', u'que', u'je', u'veux', u'passer', u',', u'en', u'premier', u',', u'une', u'bonne', u'situation', u',', u'et', u'apr\xe8s', u'fonder', u'une', u'famille'] +suite + ça il me faudra bien une dizaine d années . ce qui est difficile , c est que les études c est pas évident . sinon je veux avant de me marier vivre avec des copines et m amuser , ça je le ferai à la majorité , après je travaille dans mon métier , après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'\xe7a', u'il', u'me', u'faudra', u'bien', u'une', u'dizaine', u'd', u'ann\xe9es', u'.', u'ce', u'qui', u'est', u'difficile', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'c', u'est', u'pas', u'\xe9vident', u'.', u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre', u'avec', u'des', u'copines', u'et', u'm', u'amuser', u',', u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9', u',', u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier'] +suite + après je me marie les gosses et après je suis grand_mère . je veux travailler dans le social , être assistante sociale , ou aide ménagère , ou un boulot avec des gosses de toute manière$ +reste +True +texte_uce +[u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'familiale', u',', u'je', u'pense', u'pas', u'que', u'je', u'vais', u'me', u'marier', u',', u'mais', u'je', u'veux', u'tout', u'de', u'm\xeame', u'avoir', u'des', u'enfants', u'et', u'puis', u'vivre', u'avec', u'un', u'homme', u',', u'mais', u'je', u'veux', u'garder', u'mon', u'ind\xe9pendance', u',', u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'pense', u'\xe0', u'tout', u'\xe7a', u',', u'mais', u'd_abord', u'il', u'faut', u'penser', u'avoir', u'un', u'm\xe9tier'] +suite + ça fait deux ans que j ai décidé d être dessinatrice de mode , travailler dans la conception des grands noms de la mode , j aime bien imaginer plein de vêtement , l habit c est mon truc , mais pas la confection , car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'dessinatrice', u'de', u'mode', u',', u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode', u',', u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection'] +suite + car là on ne peut pas imaginer tout ce qu on veut , mais pour cela il faut que je travaille beaucoup . dans notre société il faut que ça s améliore pour que les jeunes réalisent leurs projets , il faut changer la pédagogie des professeurs .$ +reste +True +texte_uce +[u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'compte', u'surtout', u'avoir', u'mon', u'ind\xe9pendance', u',', u'pour', u'\xe7a', u'il', u'y', u'a', u'pas', u'de', u'myst\xe8re', u',', u'il', u'faut', u'que', u'je', u'travaille', u'par', u'rapport', u'aux', u'\xe9tudes', u',', u'passer', u'mon', u'brevet', u',', u'ensuite', u'aller', u'jusqu_\xe0', u'la', u'terminale', u'et', u'pr\xe9parer', u'une', u'formation', u'technique', u',', u'je', u'pense', u'\xe0', u'l', u'informatique'] +suite + pour éviter d être au chômage , l essentiel pour moi étant d acquérir mon indépendance matérielle . niveau sentimental , surtout pas de famille avant d avoir ma situation , sinon vivre avec un homme , il peut ne pas déranger mes projets . pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'pour', u'\xe9viter', u'd', u'\xeatre', u'au', u'ch\xf4mage', u',', u'l', u'essentiel', u'pour', u'moi', u'\xe9tant', u'd', u'acqu\xe9rir', u'mon', u'ind\xe9pendance', u'mat\xe9rielle', u'.', u'niveau', u'sentimental', u',', u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation', u',', u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets'] +suite + pour tout cela il faut que je travaille dans les études , le problème , c est que les études ne nous aident pas trop à comprendre le monde , mais il y a peut_être rien à y comprendre .$ +reste +True +texte_uce +[u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u',', u'je', u'compte', u'me', u'consacrer', u'enti\xe8rement', u'\xe0', u'ma', u'famille', u',', u'\xe0', u'mes', u'enfants', u'et', u'\xe0', u'mon', u'mari', u',', u'je', u'veux', u'pouvoir', u'l', u'aider', u'dans', u'son', u'travail', u',', u'travailler', u'avec', u'lui'] +suite + et l aider dans son travail pour qu il ait plus de temps pour sa famille , en attendant de rencontrer l homme de ma vie , je préparerai un métier , qui me permettra de travailler avec des enfants , travailler dans une crèche , ça me plairait , je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'et', u'l', u'aider', u'dans', u'son', u'travail', u'pour', u'qu', u'il', u'ait', u'plus', u'de', u'temps', u'pour', u'sa', u'famille', u',', u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie', u',', u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants', u',', u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait'] +suite + je sais pas trop ce qu il faut que je fasse comme études , de toute manière , j aime les enfants et c est déjà un bon point pour moi , j espère avoir une grande maison , et payer tout ce que je veux à mes enfants , j espère qu on pourra voyager , mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager'] +suite + mais l essentiel c est de fonder une famille solide , surtout si on veut des enfants .$ +reste +True +texte_uce +[u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u',', u'je', u'compte', u'devenir', u'officier', u'de', u'la', u'paix', u',', u'j', u'aurais', u'voulu', u'devenir', u'sportif', u',', u'plus', u'particuli\xe8rement', u'dans', u'le', u'football', u',', u'mais', u'devenir', u'flic', u',', u'c', u'est', u'plus', u'passionnant'] +suite + dans cinq ans , je compte me marier avec une femme brune qui aura de beaux yeux , il faudra qu elle soit intelligente et belle physiquement , et mignonne de tête , avec ma femme je pense avoir des enfants , deux enfants et mener une vie agréable , offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u',', u'je', u'compte', u'me', u'marier', u'avec', u'une', u'femme', u'brune', u'qui', u'aura', u'de', u'beaux', u'yeux', u',', u'il', u'faudra', u'qu', u'elle', u'soit', u'intelligente', u'et', u'belle', u'physiquement', u',', u'et', u'mignonne', u'de', u't\xeate', u',', u'avec', u'ma', u'femme', u'je', u'pense', u'avoir', u'des', u'enfants', u',', u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able'] +suite + offrir tout ce que veut ma femme , et aussi à toute la famille . je tiens en étant flic garder la société dans la paix$ +reste +True +texte_uce +[u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille', u'.', u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'travail', u',', u'le', u'faire', u'pendant', u'deux', u'ans', u',', u'puis', u'avoir', u'un', u'accident', u'du', u'travail', u'pour', u'toucher', u'de', u'l', u'argent', u'tranquillement'] +suite + je veux me marier cinq fois , avoir une maison secondaire une masse de voitures , rentrer dans la politique pour dormir , avoir un énorme lit pour dormir avec plein de femmes , et des femmes de chambre pour faire tout le travail , tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'cinq', u'fois', u',', u'avoir', u'une', u'maison', u'secondaire', u'une', u'masse', u'de', u'voitures', u',', u'rentrer', u'dans', u'la', u'politique', u'pour', u'dormir', u',', u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes', u',', u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail'] +suite + tuer les personnes qui m agacent et mourir vieux sans donner d argent à personne$ +reste +True +texte_uce +[u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'avec', u'une', u'jolie', u'femme', u'qui', u'soit', u'aimable', u',', u'faire', u'du', u'sport', u'de', u'temps', u'en', u'temps', u',', u'je', u'veux', u'faire', u'professeur', u'de', u'math\xe9matiques', u',', u'quelque', u'chose', u'qui', u'se', u'rapproche', u'de', u'cela', u',', u'avoir', u'de', u'bonnes', u'relations', u'avec', u'mes', u'parents'] +suite + rester avec eux le plus de temps possible . il faut que les jeunes puissent plus s exprimer$ +reste +True +texte_uce +[u'rester', u'avec', u'eux', u'le', u'plus', u'de', u'temps', u'possible', u'.', u'il', u'faut', u'que', u'les', u'jeunes', u'puissent', u'plus', u's', u'exprimer'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'faire', u'des', u'voyages', u',', u'voir', u'beaucoup', u'de', u'monde', u',', u'faire', u'des', u'choses', u'uniques', u'dans', u'tous', u'les', u'domaines', u',', u'ne', u'pas', u'faire', u'comme', u'tout', u'le', u'monde', u',', u'laisser', u'quelque', u'chose', u'derri\xe8re', u'moi', u',', u'j', u'aimerais', u'faire', u'un', u'm\xe9tier', u'qui', u'serve', u'\xe0', u'quelque', u'chose'] +suite + certains de mes projets sont réalisables maintenant , ne pas rester toute ma vie dans une cage à lapin , ne pas être un mouton qui se fasse exploiter uniquement pour les autres être libre même si je ne gagne pas beaucoup d argent , ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'certains', u'de', u'mes', u'projets', u'sont', u'r\xe9alisables', u'maintenant', u',', u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin', u',', u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent'] +suite + ne pas être comme les autres , ne jamais vieillir dans ma tête .$ +reste +True +texte_uce +[u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'tout', u'd_abord', u'avoir', u'une', u'bonne', u'situation', u'professionnel', u'et', u'stable', u',', u'je', u'voudrais', u'aussi', u'vivre', u'avec', u'ma', u'm\xe8re', u',', u'car', u'mes', u'parents', u'sont', u'divorc\xe9s', u',', u'et', u'je', u'vis', u'avec', u'mon', u'p\xe8re', u',', u'j', u'aimerais', u'faire', u'un', u'travail', u'avec', u'des', u'jeunes', u'enfants', u',', u'dans', u'ma', u'vie', u'sentimentale'] +suite + je ne veux pas me marier du moins pas jeune je préfère vivre en concubinage , je veux aussi être vétérinaire mais les études sont trop difficiles et je ne m en s en pas capable , les adolescents peuvent avoir des projets à n importe quel âge$ +reste +True +texte_uce +[u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas', u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage', u',', u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable', u',', u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'rester', u'c\xe9libataire', u'et', u'vivre', u'en', u'concubinage', u',', u'je', u'ne', u'veux', u'pas', u'd', u'enfants', u'car', u'pour', u'moi', u'c', u'est', u'une', u'contrainte', u',', u'je', u'veux', u'au', u'niveau', u'professionnel', u'devenir', u'kin\xe9sith\xe9rapeute', u',', u'car', u'c', u'est', u'un', u'milieu', u'o\xf9', u'on', u'a', u'le', u'contact', u'avec', u'le', u'milieu', u'sportif'] +suite + je veux me rendre utile , c est un métier difficile à acquérir , il faut être solide , car il faut être capable de s organiser soi même , sinon si ça va pas je peux devenir journaliste sportive surtout pour le football , je veux informer , être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'je', u'veux', u'me', u'rendre', u'utile', u',', u'c', u'est', u'un', u'm\xe9tier', u'difficile', u'\xe0', u'acqu\xe9rir', u',', u'il', u'faut', u'\xeatre', u'solide', u',', u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame', u',', u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football', u',', u'je', u'veux', u'informer'] +suite + être utile , ne pas être fonctionnaire derrière un bureau à remplir des papiers et à être commande par un supérieur , je ne veux pas d une vie monotone , métro boulot dodo$ +reste +True +texte_uce +[u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'est', u'pas', u'de', u'projet', u'de', u'vie', u',', u'je', u'verrai', u'bien', u'ce', u'que', u'me', u'r\xe9serve', u'le', u'cours', u'de', u'la', u'vie', u',', u'avant', u'de', u'penser', u'\xe0', u'tout', u'cela', u',', u'il', u'faut', u'que', u'je', u'profite', u'de', u'la', u'vie'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'passer', u'mon', u'bac', u'et', u'r\xe9ussir', u'dans', u'le', u'domaine', u'artistique'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'vais', u'essayer', u'd', u'avoir', u'mon', u'brevet', u',', u'apr\xe8s', u'je', u'passe', u'le', u'concours', u'de', u'la', u'gendarmerie', u',', u'et', u'le', u'concours', u'\xe0', u'l', u'arm\xe9e', u',', u'je', u'veux', u'r\xe9ussir', u'dans', u'le', u'domaine', u'sportif', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'devenir', u'v\xe9t\xe9rinaire', u',', u'j', u'y', u'pense', u'depuis', u'six', u'ans'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'sur', u'le', u'plan', u'familial', u',', u'je', u'veux', u'rester', u'c\xe9libataire', u'le', u'plus', u'longtemps', u'possible', u',', u'\xe9ventuellement', u'avoir', u'des', u'enfants', u'mais', u'dans', u'vingt', u'ans', u',', u'je', u'veux', u'avoir', u'un', u'boulot', u'int\xe9ressant', u',', u'pratiquer', u'un', u'sport', u'r\xe9guli\xe8rement'] +suite + je n ai jamais eu l intention d avoir des enfants , et ça fait deux ans que j ai décidé de ne pas me marier , je veux avoir de l argent$ +reste +True +texte_uce +[u'je', u'n', u'ai', u'jamais', u'eu', u'l', u'intention', u'd', u'avoir', u'des', u'enfants', u',', u'et', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'de', u'ne', u'pas', u'me', u'marier', u',', u'je', u'veux', u'avoir', u'de', u'l', u'argent'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'quand', u'j', u'aurai', u'trouver', u'l', u'homme', u'id\xe9al', u',', u'je', u'veux', u'me', u'marier', u'avoir', u'des', u'enfants', u'et', u'une', u'belle', u'maison', u',', u'je', u'voudrais', u'travailler', u'dans', u'le', u'professionnel', u'de', u'la', u'publicit\xe9', u',', u'le', u'dessin', u',', u'mais', u'je', u'n', u'ai', u'pas', u'de', u'bons', u'r\xe9sultats'] +suite + depuis que je suis petite je rêve d avoir une voiture et une belle maison , mais je ne savais pas qu il fallait travailler pour cela , maintenant j espère réaliser mon rêve en travaillant et en mettant de l argent de coté , je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'depuis', u'que', u'je', u'suis', u'petite', u'je', u'r\xeave', u'd', u'avoir', u'une', u'voiture', u'et', u'une', u'belle', u'maison', u',', u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait', u'travailler', u'pour', u'cela', u',', u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9'] +suite + je veux me marier et avoir des enfants dans dix ans commencer ma carrière dans cinq ans , avoir un appartement avec des copines et après acheter une maison , je veux aussi être grand_mère ; pour que les jeunes réalisent leurs projets , il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets'] +suite + il faut que les parents leur fasse confiance$ +reste +True +texte_uce +[u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'passer', u'mon', u'baccalaur\xe9at', u'avoir', u'un', u'bon', u'm\xe9tier', u',', u'continuer', u'le', u'patinage', u',', u'vivre', u'heureuse', u',', u'\xeatre', u'heureuse', u',', u'tout', u'\xe7a', u'dans', u'une', u'dizaine', u'd', u'ann\xe9es'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'passer', u'un', u'bon', u'brevet', u',', u'pas', u'de', u'diff\xe9rence', u'entre', u'le', u'beau', u'et', u'le', u'laid', u',', u'pas', u'de', u'diff\xe9rence', u'entre', u'les', u'filles', u'et', u'les', u'gar\xe7ons', u'et', u'que', u'les', u'gens', u'ne', u'jugent', u'pas'] +suite + je ne sais pas je voudrais qu il n y ait pas de guerre et que des enfants meurent à cause de la connerie des adultes , ils détruisent l avenir des enfants innocents qui se font tuer$ +reste +True +texte_uce +[u'je', u'ne', u'sais', u'pas', u'je', u'voudrais', u'qu', u'il', u'n', u'y', u'ait', u'pas', u'de', u'guerre', u'et', u'que', u'des', u'enfants', u'meurent', u'\xe0', u'cause', u'de', u'la', u'connerie', u'des', u'adultes', u',', u'ils', u'd\xe9truisent', u'l', u'avenir', u'des', u'enfants', u'innocents', u'qui', u'se', u'font', u'tuer'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'\xe7a', u'fait', u'dix', u'ans', u'que', u'je', u'pense', u'continuer', u'mes', u'\xe9tudes', u'pour', u'pouvoir', u'avoir', u'une', u'bonne', u'place', u'dans', u'mon', u'pays', u',', u'un', u'meilleur', u'salaire', u',', u'ce', u'projet', u',', u'me', u'prendra', u'bien', u'dix', u'ans', u'car', u'je', u'veux', u'faire', u'un', u'cycle', u'long', u'il', u'me', u'faut', u'du', u'courage', u',', u'de', u'la', u'pers\xe9v\xe9rance', u'et', u'de', u'l', u'intelligence'] +suite + je voudrais être docteur pour obtenir des meilleures conditions de vie , les études sont longues et difficiles$ +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'docteur', u'pour', u'obtenir', u'des', u'meilleures', u'conditions', u'de', u'vie', u',', u'les', u'\xe9tudes', u'sont', u'longues', u'et', u'difficiles'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'avoir', u'un', u'm\xe9tier', u'bien', u',', u'arriver', u'\xe0', u'bien', u'nager', u',', u'mes', u'projets', u'sont', u'r\xe9alisables', u'car', u'modestes', u',', u'je', u'veux', u'aussi', u'une', u'grande', u'voili\xe8re', u',', u'ce', u'qu', u'il', u'faut', u'c', u'est', u'que', u'les', u'gens', u'soient', u'plus', u'attentifs', u'aux', u'autres', u'et', u'qu', u'ils', u'les', u'aident', u'pour', u'r\xe9aliser', u'leurs', u'projets'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'jusqu_au', u'baccalaur\xe9at', u'et', u'faire', u'un', u'boulot', u'qui', u'me', u'pla\xeet', u'je', u'veux', u'avoir', u'une', u'belle', u'voiture', u'de', u'sport', u',', u'une', u'femme', u'et', u'un', u'enfant', u'minimum'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'pense', u'rentrer', u'\xe0', u'l', u'\xe9cole', u'd', u'h\xf4telerie', u'et', u'essayer', u'd', u'avoir', u'un', u'bon', u'dipl\xf4me', u',', u'avoir', u'un', u'salaire', u'tr\xe8s', u'fort', u'et', u'travailler', u'dans', u'un', u'restaurant', u'comme', u'cuisinier', u'et', u'apprenti', u',', u'j', u'esp\xe8re', u'que', u'je', u'vais', u'faire', u'la', u'f\xeate', u'avant', u'de', u'me', u'marier'] +suite + après je profite de ma femme et je lui fais des enfants , après je deviens milliardaire , je prends la retraite anticipée , plein de filles et mourir sans regret$ +reste +True +texte_uce +[u'apr\xe8s', u'je', u'profite', u'de', u'ma', u'femme', u'et', u'je', u'lui', u'fais', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'deviens', u'milliardaire', u',', u'je', u'prends', u'la', u'retraite', u'anticip\xe9e', u',', u'plein', u'de', u'filles', u'et', u'mourir', u'sans', u'regret'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'faire', u'de', u'longues', u'\xe9tudes', u',', u'et', u'avoir', u'un', u'bon', u'm\xe9tier', u',', u'aussi', u'passer', u'mon', u'permis', u'un', u'appartement', u'\xeatre', u'ind\xe9pendante', u'et', u'avoir', u'un', u'chat', u',', u'il', u'ne', u'faut', u'pas', u'que', u'je', u'fasse', u'tout', u'en', u'm\xeame', u'temps', u'je', u'ne', u'veux', u'pas', u'me', u'sentir', u'bousculer'] +suite + pour la famille l idéal c est d avoir un mari et des enfants , après je mets de l argent de côté pour pouvoir partir en voyage . j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'pour', u'la', u'famille', u'l', u'id\xe9al', u'c', u'est', u'd', u'avoir', u'un', u'mari', u'et', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'mets', u'de', u'l', u'argent', u'de', u'c\xf4t\xe9', u'pour', u'pouvoir', u'partir', u'en', u'voyage'] +suite + j ai fais un voyage dernièrement et j aime bien , c est pour cela que je veux voyager , bon je veux faire des longues études dans le grand cycle , après je me marie mais je profite de la vie avant de m attacher$ +reste +True +texte_uce +[u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien', u',', u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'\xe9t\xe9', u'\xe0', u'l', u'h\xf4pital', u'et', u'l\xe0', u'j', u'ai', u'compris', u'que', u'les', u'm\xe9tiers', u'dans', u'le', u'sanitaire', u'c', u'\xe9tait', u'important', u',', u'essentiel', u'pour', u'la', u'soci\xe9t\xe9', u',', u'car', u'ils', u'savent', u'les', u'vies', u'et', u'\xe9vitent', u'les', u'malheurs', u',', u'c', u'est', u'pour', u'cela', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'infirmi\xe8re'] +suite + donc poursuivre mes études et me marier un jour et avoir des enfants$ +reste +True +texte_uce +[u'donc', u'poursuivre', u'mes', u'\xe9tudes', u'et', u'me', u'marier', u'un', u'jour', u'et', u'avoir', u'des', u'enfants'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'plus', u'tard', u'je', u'veux', u'devenir', u'styliste', u'car', u'la', u'mode', u'\xe7a', u'm', u'attire', u'bien', u',', u'je', u'veux', u'devenir', u'un', u'grand', u'styliste', u',', u'comme', u'tout', u'le', u'monde', u'je', u'veux', u'devenir', u'riche', u'et', u'vivre', u'sans', u'probl\xe8me', u',', u'je', u'suis', u'certaine', u'de', u'ne', u'pas', u'me', u'marier'] +suite + mais j ai tout de même une idée de l homme idéal grand brun yeux bleus musclé , beau quoi , je ne veux que deux enfants , je veux une grande maison , pas ici et même un autre maison , je veux faire le tour du monde , je veux une grande voiture , je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'mais', u'j', u'ai', u'tout', u'de', u'm\xeame', u'une', u'id\xe9e', u'de', u'l', u'homme', u'id\xe9al', u'grand', u'brun', u'yeux', u'bleus', u'muscl\xe9', u',', u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants', u',', u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison', u',', u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture'] +suite + je veux rencontrer des stars du cinéma$ +reste +True +texte_uce +[u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'faire', u'des', u'\xe9tudes', u'dans', u'la', u'comptabilit\xe9', u',', u'et', u'dans', u'dix', u'ans', u'travailler', u',', u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'tout', u'de', u'suite', u'je', u'veux', u'avoir', u'un', u'appartement', u'pour', u'moi', u'seule', u'ou', u'avec', u'une', u'amie', u',', u'et', u'essayer', u'de', u'vivre', u'seule', u'sans', u'mes', u'parents'] +suite + je veux goûter la liberté sans les parents , ensuite continuer le travail même si je me marie$ +reste +True +texte_uce +[u'je', u'veux', u'go\xfbter', u'la', u'libert\xe9', u'sans', u'les', u'parents', u',', u'ensuite', u'continuer', u'le', u'travail', u'm\xeame', u'si', u'je', u'me', u'marie'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'aimerais', u'devenir', u'informaticienne', u',', u'je', u'l', u'ai', u'd\xe9cid\xe9', u'cette', u'ann\xe9e', u'car', u'dans', u'ma', u'classe', u'on', u'choisit', u'une', u'orientation', u'et', u'on', u'envisage', u'diff\xe9rents', u'm\xe9tiers', u'ils', u'vont', u'\xeatre', u'r\xe9alisables', u'dans', u'dix', u'ans', u'car', u'c', u'est', u'l\xe0', u'que', u'je', u'vais', u'avoir', u'fini', u'mes', u'\xe9tudes'] +suite + je voudrai aller aux jeux olympiques , je voudrais un garçon mais pas de mariage il faut avoir plus confiance aux jeunes pour leur permettre de réaliser leurs projets ne pas les diriger leur imposer ce qui n est pas nécessaire et qu ils ne veulent pas faire$ +reste +True +texte_uce +[u'je', u'voudrai', u'aller', u'aux', u'jeux', u'olympiques', u',', u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage', u'il', u'faut', u'avoir', u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs', u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne'] +suite +veulent pas faire$ +reste +True +texte_uce +[u'veulent', u'pas', u'faire'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'un', u'an', u'je', u'pars', u'de', u'chez', u'moi', u',', u'je', u'passe', u'mon', u'permis', u'de', u'voiture', u'et', u'je', u'trouve', u'un', u'travail', u'je', u'loue', u'une', u'maison', u'et', u'je', u'passe', u'une', u'belle', u'vie', u'et', u'apr\xe8s', u'je', u'me', u'marie'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'avoir', u'un', u'bon', u'm\xe9tier', u'dans', u'le', u'domaine', u'sportif', u',', u'avoir', u'beaucoup', u'd', u'argent', u'et', u'avoir', u'une', u'bonne', u'vie', u'de', u'famille', u',', u'plus', u'de', u'politique', u',', u'plus', u'de', u'clochards'] +suite + plus de famine plus de racisme pas de maçon qui ne gagnent pas leur vie à cause de l orientation dans le collège on gâche sa vie ce que je veux c est de bien me sentir dans ma peau$ +reste +True +texte_uce +[u'plus', u'de', u'famine', u'plus', u'de', u'racisme', u'pas', u'de', u'ma\xe7on', u'qui', u'ne', u'gagnent', u'pas', u'leur', u'vie', u'\xe0', u'cause', u'de', u'l', u'orientation', u'dans', u'le', u'coll\xe8ge', u'on', u'g\xe2che', u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me', u'sentir', u'dans', u'ma', u'peau'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'commence', u'\xe0', u'avoir', u'des', u'projets', u'je', u'veux', u'un', u'boulot', u'qui', u'me', u'fasse', u'gagner', u'de', u'l', u'argent', u',', u'la', u'm\xe9decine', u',', u'je', u'vais', u'me', u'lancer', u'dans', u'le', u'sport', u'je', u'vais', u'm', u'inscrire', u'dans', u'un', u'grand', u'club', u',', u'faire', u'de', u'longues', u'\xe9tudes'] +suite + pour ma vie sentimental rencontrer des filles faire des connaissances agréables , je veux le permis , pour moi mes parents c est sacré je veux rester le plus longtemps avec eux$ +reste +True +texte_uce +[u'pour', u'ma', u'vie', u'sentimental', u'rencontrer', u'des', u'filles', u'faire', u'des', u'connaissances', u'agr\xe9ables', u',', u'je', u'veux', u'le', u'permis', u',', u'pour', u'moi', u'mes', u'parents', u'c', u'est', u'sacr\xe9', u'je', u'veux', u'rester', u'le', u'plus', u'longtemps', u'avec', u'eux'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'ne', u'sais', u'rien', u'sur', u'mes', u'projets', u'je', u'ne', u'sais', u'pas', u'je', u'ne', u'sais', u'pas'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'ai', u'pas', u'de', u'projet', u'en', u'ce', u'moment', u'je', u'ne', u'pense', u'qu', u'aux', u'filles', u'je', u'ne', u'pense', u'qu', u'\xe0', u'cela', u'je', u'ne', u'pense', u'qu', u'aux', u'filles', u',', u'les', u'filles'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u'je', u'pars', u'de', u'chez', u'moi', u',', u'et', u'je', u'passe', u'mon', u'permis', u'de', u'conduire', u'apr\xe8s', u'je', u'me', u'marie', u'et', u'je', u'pratique', u'\xe0', u'fond', u'la', u'religion', u'je', u'veux', u'profiter', u'de', u'la', u'vie', u'mais', u'apr\xe8s', u'c', u'est', u'l', u'enfer'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'une', u'femme', u'et', u'un', u'appartement', u',', u'pour', u'la', u'profession', u'je', u'voudrais', u'm', u'orienter', u'vers', u'une', u'formation', u'technique', u'pour', u'r\xe9aliser', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'apr\xe8s', u'quand', u'je', u'serai', u'vieux', u'je', u'veux', u'faire', u'le', u'p\xe8lerinage', u',', u'si', u'tout', u'va', u'bien'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'compte', u'faire', u'une', u'formation', u'technique', u'et', u'apr\xe8s', u'cette', u'formation', u'fonder', u'une', u'famille', u'et', u'avoir', u'une', u'voiture'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u'\xe0', u'la', u'majorit\xe9', u',', u'je', u'veux', u'avoir', u'un', u'appartement', u',', u'je', u'ferai', u'des', u'petits', u'boulots', u'je', u'veux', u'mon', u'ind\xe9pendance', u',', u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'en', u'faisant', u'les', u'petits', u'boulots', u'une', u'formation', u'technique'] +suite + avec une bonne formation fonder une famille et essayer d être heureux$ +reste +True +texte_uce +[u'avec', u'une', u'bonne', u'formation', u'fonder', u'une', u'famille', u'et', u'essayer', u'd', u'\xeatre', u'heureux'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'voyager', u',', u'dans', u'tout', u'le', u'monde', u'avoir', u'plein', u'de', u'voitures', u'et', u'de', u'femmes', u'je', u'veux', u'\xeatre', u'riche', u'et', u'avoir', u'plein', u'de', u'femmes'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'professeur', u'de', u'physique', u'et', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'continue', u'mes', u'\xe9tudes', u',', u'ensuite', u'j', u'esp\xe8re', u'me', u'marier', u',', u'avoir', u'une', u'voiture', u'et', u'une', u'maison'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'un', u'bon', u'boulot', u'qui', u'me', u'rapporte', u'de', u'l', u'argent', u',', u'et', u'je', u'veux', u'pouvoir', u'faire', u'des', u'voyages', u',', u'je', u'veux', u'continuer', u'dans', u'la', u'danse', u'et', u'devenir', u'une', u'professionnel'] +suite + je veux continuer à garder des liens avec ma famille car elle est sacrée je veux aussi un super mari pour que ça se réalise il faut de la chance , il faut compter sur dieu$ +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'\xe0', u'garder', u'des', u'liens', u'avec', u'ma', u'famille', u'car', u'elle', u'est', u'sacr\xe9e', u'je', u'veux', u'aussi', u'un', u'super', u'mari', u'pour', u'que', u'\xe7a', u'se', u'r\xe9alise', u'il', u'faut', u'de', u'la', u'chance', u',', u'il', u'faut', u'compter', u'sur', u'dieu'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'toujours', u'garder', u'des', u'liens', u'avec', u'ma', u'famille', u'au', u'niveau', u'de', u'mon', u'm\xe9tier', u'je', u'veux', u'faire', u'un', u'travail', u'social', u',', u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille', u'et', u'avoir', u'de', u'belles', u'maisons', u'j', u'esp\xe8re', u'voyager', u'dans', u'tout', u'le', u'monde'] +suite + je pense pouvoir réaliser tout cela par rapport à mon mariage$ +reste +True +texte_uce +[u'je', u'pense', u'pouvoir', u'r\xe9aliser', u'tout', u'cela', u'par', u'rapport', u'\xe0', u'mon', u'mariage'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'une', u'bonne', u'qualification', u'pour', u'le', u'm\xe9tier', u'et', u'\xe7a', u'sera', u'possible', u'si', u'je', u'continue', u'mes', u'\xe9tudes', u'apr\xe8s', u'cela', u'penser', u'\xe0', u'la', u'vie', u'sentimentale'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'pour', u'faire', u'de', u'l', u'anglais', u'ou', u'la', u'm\xe9decine'] +suite + il faut multiplier les centres de rencontre pour les jeunes je veux vivre dans un grand et beau pays dans un pays de la liberté je veux rencontrer des gens connus et me marier avec une vedette$ +reste +True +texte_uce +[u'il', u'faut', u'multiplier', u'les', u'centres', u'de', u'rencontre', u'pour', u'les', u'jeunes', u'je', u'veux', u'vivre', u'dans', u'un', u'grand', u'et', u'beau', u'pays', u'dans', u'un', u'pays', u'de', u'la', u'libert\xe9', u'je', u'veux', u'rencontrer', u'des', u'gens', u'connus', u'et', u'me', u'marier', u'avec', u'une', u'vedette'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'et', u'faire', u'un', u'travail', u'int\xe9ressant', u'et', u'qui', u'rapporte', u'de', u'l', u'argent', u',', u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille', u',', u'je', u'veux', u'vivre', u'dans', u'un', u'beau', u'pays', u'je', u'veux', u'beaucoup', u'voyager'] +suite + une fois bien profiter de la vie je pense faire des enfants et m en occuper , si je pouvais avoir plus de liberté pour plus profiter de la vie$ +reste +True +texte_uce +[u'une', u'fois', u'bien', u'profiter', u'de', u'la', u'vie', u'je', u'pense', u'faire', u'des', u'enfants', u'et', u'm', u'en', u'occuper', u',', u'si', u'je', u'pouvais', u'avoir', u'plus', u'de', u'libert\xe9', u'pour', u'plus', u'profiter', u'de', u'la', u'vie'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'une', u'danseuse', u'et', u'en', u'faire', u'mon', u'm\xe9tier', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'de', u'l', u'argent', u'sinon', u'je', u'vais', u'faire', u'un', u'travail', u'de', u'technique', u'en', u'biologie', u',', u'je', u'veux', u'me', u'marier', u'avec', u'un', u'super', u'mari', u'mais', u'je', u'n', u'ai', u'pas', u'trop', u'd', u'espoir', u'\xe0', u'ce', u'niveau', u'l\xe0'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'de', u'toute', u'fa\xe7on', u'\xe0', u'la', u'majorit\xe9', u'je', u'serai', u'libre', u'et', u'je', u'pourrais', u'faire', u'ce', u'qu', u'il', u'me', u'pla\xeet', u'm\xeame', u'si', u'j', u'ai', u'envie', u'de', u'passer', u'dans', u'une', u'autre', u'classe'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'pense', u'd_abord', u'faire', u'mes', u'\xe9tudes', u'une', u'formation', u'technique', u'dans', u'le', u'commerce', u',', u'quelque', u'chose', u'qui', u'soit', u'\xe0', u'la', u'port\xe9e', u'des', u'mes', u'propres', u'possibilit\xe9s'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'faire', u'un', u'travail', u'dans', u'le', u'social', u'commencer', u'par', u'une', u'pr\xe9paration', u'd', u'infirmi\xe8re', u'donc', u'continuer', u'mes', u'\xe9tudes', u'et', u'ensuite', u'faire', u'une', u'sp\xe9cialisation', u'par', u'rapport', u'aux', u'enfants', u',', u'je', u'pense', u'd_abord', u'\xe0', u'ma', u'vie', u'de', u'm\xe9tier', u',', u'le', u'reste', u'on', u'ne', u'sais', u'pas', u'vraiment'] +suite + le hasard , mais pour le métier , il faut travailler .$ +reste +True +texte_uce +[u'le', u'hasard', u',', u'mais', u'pour', u'le', u'm\xe9tier', u',', u'il', u'faut', u'travailler', u'.'] +suite + +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'ai', u'pas', u'l', u'habitude', u'de', u'faire', u'des', u'projets', u',', u'je', u'vis', u'au', u'jour', u'le', u'jour'] +suite +[u'les', u'adolescents', u'font', u'des', u'projets', u'\xe0', u'partir', u'du', u'moment', u'o\xf9', u'il', u'se', u'rendent', u'compte', u'qu', u'ils', u'ne', u'doivent', u'compter', u'que', u'sur', u'eux', u'm\xeame', u'et', u'qu', u'ils', u'doivent', u'se', u'prendre', u'en', u'charge', u'de', u'quel', u'genre', u'de', u'projets', u's', u'agit', u'il', u'?', u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile', u',', u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'les', u'adolescents', u'font', u'des', u'projets', u'\xe0', u'partir', u'du', u'moment', u'o\xf9', u'il', u'se', u'rendent', u'compte', u'qu', u'ils', u'ne', u'doivent', u'compter', u'que', u'sur', u'eux', u'm\xeame', u'et', u'qu', u'ils', u'doivent', u'se', u'prendre', u'en', u'charge', u'de', u'quel', u'genre', u'de', u'projets', u's', u'agit', u'il'] +suite +[u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile', u',', u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile', u',', u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier'] +suite +[u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs'] +suite +[u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u',', u'devenir', u'un', u'jour', u'professeur', u'de', u'fran\xe7ais', u'ou', u'd', u'histoire', u'g\xe9ographie', u';', u'me', u'marier', u';', u'avoir', u'un', u'enfant', u'pas', u'plus', u',', u'faire', u'construire', u'une', u'maison', u'et', u'si', u'possible', u',', u'ne', u'pas', u'vivre', u'en', u'ville'] +suite +[u'plut\xf4t', u'dans', u'l', u'agglom\xe9ration', u'et', u'm\xeame', u'\xe0', u'la', u'campagne', u',', u'passer', u'mon', u'permis', u'de', u'conduire', u',', u'avoir', u'une', u'ou', u'plusieurs', u'voitures', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs', u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord', u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral', u',', u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.', u'$'] +reste +True +texte_uce +[u'plut\xf4t', u'dans', u'l', u'agglom\xe9ration', u'et', u'm\xeame', u'\xe0', u'la', u'campagne', u',', u'passer', u'mon', u'permis', u'de', u'conduire', u',', u'avoir', u'une', u'ou', u'plusieurs', u'voitures', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs', u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord', u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral'] +suite +[u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.', u'$'] +reste +True +texte_uce +[u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u'seraient', u'de', u'devenir', u'v\xe9t\xe9rinaire', u',', u'd', u'avoir', u'une', u'belle', u'maison', u'\xe0', u'la', u'montagne', u'et', u'une', u'au', u'bord', u'de', u'la', u'mer', u',', u'avoir', u'une', u'femme', u'un', u'enfant', u',', u'une', u'grosse', u'voiture', u'de', u'sport', u'et', u'aussi', u'une', u'grosse', u'moto'] +suite +[u'aussi', u'de', u'sport', u'et', u'aussi', u'de', u'comp\xe9tition', u'.', u'devenir', u'champion', u'de', u'tir', u'\xe0', u'l', u'arc', u',', u'tir', u'\xe0', u'la', u'carabine', u',', u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre', u',', u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil', u'.', u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'aussi', u'de', u'sport', u'et', u'aussi', u'de', u'comp\xe9tition', u'.', u'devenir', u'champion', u'de', u'tir', u'\xe0', u'l', u'arc', u',', u'tir', u'\xe0', u'la', u'carabine', u',', u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre', u',', u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil'] +suite +[u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u'familiaux', u',', u'je', u'pense', u'ne', u'pas', u'me', u'marier', u'mais', u'avoir', u'des', u'enfants', u',', u'au', u'moins', u'deux', u'enfants', u',', u'vivre', u'avec', u'un', u'homme', u'soit', u'en', u'tant', u'que', u'mari', u',', u'soit', u'en', u'tant', u'que', u'concubin'] +suite +[u'je', u'ne', u'r\xe9aliserai', u'ces', u'projets', u'que', u'dans', u'douze', u'ans', u',', u'lorsque', u'j', u'aurai', u'un', u'm\xe9tier', u's\xfbr', u'et', u'une', u'situation', u'ais\xe9e', u'.', u'j', u'ai', u'projetai', u'cela', u'il', u'y', u'a', u'environ', u'un', u'an', u'.', u'mes', u'projets', u'professionnels', u',', u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans', u',', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice', u',', u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier', u'.', u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'je', u'ne', u'r\xe9aliserai', u'ces', u'projets', u'que', u'dans', u'douze', u'ans', u',', u'lorsque', u'j', u'aurai', u'un', u'm\xe9tier', u's\xfbr', u'et', u'une', u'situation', u'ais\xe9e', u'.', u'j', u'ai', u'projetai', u'cela', u'il', u'y', u'a', u'environ', u'un', u'an'] +suite +[u'mes', u'projets', u'professionnels', u',', u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans', u',', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice', u',', u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier', u'.', u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'mes', u'projets', u'professionnels', u',', u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans', u',', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice', u',', u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier'] +suite +[u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable'] +suite +[u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler'] +suite +[u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9'] +suite +[u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'ce', u'que', u'je', u'veux', u'faire', u'comme', u'projet', u'depuis', u'toujours', u',', u'avoir', u'un', u'bon', u'm\xe9tier', u'qui', u'paie', u',', u'ne', u'pas', u'avoir', u'd', u'enfants', u',', u'ne', u'pas', u'me', u'marier', u',', u'avoir', u'mon', u'ind\xe9pendance', u',', u'avoir', u'une', u'super', u'voiture', u',', u'\xeatre', u'biologiste'] +suite +[u'\xe7a', u'depuis', u'l', u'\xe2ge', u'de', u'quinze', u'ans', u',', u'aller', u'depuis', u'toujours', u'en', u'am\xe9rique', u',', u'depuis', u'toujours', u',', u'aller', u'en', u'haut', u',', u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans', u',', u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'\xe7a', u'depuis', u'l', u'\xe2ge', u'de', u'quinze', u'ans', u',', u'aller', u'depuis', u'toujours', u'en', u'am\xe9rique', u',', u'depuis', u'toujours', u',', u'aller', u'en', u'haut', u',', u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans', u',', u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement'] +suite +[u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois'] +suite +[u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'l', u'intention', u'd', u'avoir', u'quatre', u'ou', u'trois', u'enfants', u',', u'mais', u'en', u'attendant', u',', u'je', u'veux', u'arriver', u'\xe0', u'mon', u'bac', u'professionnel', u',', u'enfin', u'continuer', u'mes', u'\xe9tudes', u',', u'avoir', u'un', u'bon', u'm\xe9tier'] +suite +[u'je', u'veux', u'en', u'premier', u'une', u'bonne', u'situation', u'puis', u'ensuite', u'fonder', u'une', u'famille', u'dans', u'au', u'moins', u'neuf', u'ans', u'.', u'ce', u'qui', u'faudrait', u'changer', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'sont', u'les', u'\xe9tudes', u'qui', u'sont', u'un', u'peu', u'trop', u'dures', u'.', u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage', u',', u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel', u'.', u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi', u',', u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance', u'.', u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'en', u'premier', u'une', u'bonne', u'situation', u'puis', u'ensuite', u'fonder', u'une', u'famille', u'dans', u'au', u'moins', u'neuf', u'ans', u'.', u'ce', u'qui', u'faudrait', u'changer', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'sont', u'les', u'\xe9tudes', u'qui', u'sont', u'un', u'peu', u'trop', u'dures'] +suite +[u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage', u',', u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel', u'.', u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi', u',', u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance', u'.', u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage', u',', u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel', u'.', u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi', u',', u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance'] +suite +[u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice'] +suite +[u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien'] +suite +[u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'concubinage', u'avec', u'des', u'gens', u'c\xe9l\xe8bre', u',', u'avoir', u'une', u'voiture', u'de', u'sport', u',', u'plusieurs', u'villas', u',', u'avec', u'mes', u'associ\xe9s', u'on', u'enqu\xeateraient', u'sur', u'les', u'vols', u',', u'je', u'veux', u'vivre', u'dans', u'une', u'\xeele', u'd\xe9sertes', u'avec', u'plein', u'de', u'mecs', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u'j', u'aimerai', u'rentrer', u'au', u'lyc\xe9e', u'pour', u'continuer', u'mes', u'\xe9tudes', u',', u'faire', u'de', u'l', u'\xe9lectronique', u',', u'apr\xe8s', u'si', u'je', u'r\xe9ussi', u'ces', u'premi\xe8res', u'\xe9tudes', u'je', u'compte', u'continuer', u'encore', u'deux', u'ans', u'dans', u'l', u'informatique', u',', u'\xeatre', u'technicien', u'sup\xe9rieur'] +suite +[u'il', u'n', u'y', u'a', u'pas', u'longtemps', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'cela', u',', u'l', u'ann\xe9e', u'derni\xe8re', u',', u'je', u'ne', u'savais', u'pas', u'encore', u'ce', u'que', u'je', u'voulais', u'faire', u',', u'en', u'dehors', u'du', u'dessin', u'assist\xe9', u'par', u'ordinateur', u'car', u'je', u'suis', u'assez', u'bon', u'en', u'dessin', u'industriel', u',', u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.', u'$'] +reste +True +texte_uce +[u'il', u'n', u'y', u'a', u'pas', u'longtemps', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'cela', u',', u'l', u'ann\xe9e', u'derni\xe8re', u',', u'je', u'ne', u'savais', u'pas', u'encore', u'ce', u'que', u'je', u'voulais', u'faire', u',', u'en', u'dehors', u'du', u'dessin', u'assist\xe9', u'par', u'ordinateur', u'car', u'je', u'suis', u'assez', u'bon', u'en', u'dessin', u'industriel'] +suite +[u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.', u'$'] +reste +True +texte_uce +[u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'continuer', u'mes', u'\xe9tudes', u',', u'mais', u'pas', u'trop', u'longtemps', u',', u'je', u'veux', u'passer', u'mon', u'brevet', u',', u'et', u'ensuite', u'voir', u'du', u'cot\xe9', u'd', u'une', u'formation', u'technique', u',', u'un', u'truc', u'de', u'm\xe9canicien', u',', u'enfin', u'des', u'\xe9tudes', u'pas', u'longues'] +suite +[u'ma', u'vie', u'sentimentale', u',', u'je', u'pense', u'me', u'marier', u',', u'apr\xe8s', u'mes', u'\xe9tudes', u',', u'apr\xe8s', u'avoir', u'une', u'super', u'maison', u'et', u'aussi', u'une', u'ou', u'plein', u'de', u'voitures', u'.', u'je', u'suis', u'ceinture', u'noire', u'de', u'judo', u',', u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'ma', u'vie', u'sentimentale', u',', u'je', u'pense', u'me', u'marier', u',', u'apr\xe8s', u'mes', u'\xe9tudes', u',', u'apr\xe8s', u'avoir', u'une', u'super', u'maison', u'et', u'aussi', u'une', u'ou', u'plein', u'de', u'voitures'] +suite +[u'je', u'suis', u'ceinture', u'noire', u'de', u'judo', u',', u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'je', u'suis', u'ceinture', u'noire', u'de', u'judo', u',', u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u',', u'je', u'voudrais', u'bien', u'continuer', u'un', u'petit', u'peu', u'mes', u'\xe9tudes', u',', u'mais', u'pas', u'trop', u'longtemps', u',', u'je', u'ne', u'suis', u'pas', u'tr\xe8s', u'bon', u'\xe0', u'l', u'\xe9cole', u',', u'enfin', u'je', u'ne', u'sais', u'pas', u'trop', u'ce', u'que', u'je', u'vais', u'faire', u'au', u'niveau', u'professionnel', u',', u'parce_que', u'\xe0', u'l', u'\xe9cole', u'je', u'ne', u'suis', u'pas', u'bon'] +suite +[u'au', u'niveau', u'sentimental', u',', u'je', u'compte', u'd_abord', u'm', u'amuser', u'au', u'maximum', u',', u'bien', u'plus', u'tard', u'bien', u'plus', u'tard', u',', u'peut', u'\xeatre', u'je', u'vais', u'me', u'marier', u',', u'ou', u'vivre', u'en', u'concubin', u',', u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable', u'$'] +reste +True +texte_uce +[u'au', u'niveau', u'sentimental', u',', u'je', u'compte', u'd_abord', u'm', u'amuser', u'au', u'maximum', u',', u'bien', u'plus', u'tard', u'bien', u'plus', u'tard', u',', u'peut', u'\xeatre', u'je', u'vais', u'me', u'marier', u',', u'ou', u'vivre', u'en', u'concubin', u',', u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u',', u'je', u'voudrais', u'bien', u'rentrer', u'en', u'seconde', u',', u'et', u'puis', u'continuer', u'mes', u'\xe9tudes', u',', u'rentrer', u'\xe0', u'la', u'facult\xe9', u',', u'ou', u'bien', u'dans', u'une', u'formation', u'plus', u'technique', u',', u'enfin', u'le', u'minimum', u'c', u'est', u'd', u'avoir', u'mon', u'baccalaur\xe9at'] +suite +[u'c', u'est', u'mon', u'premier', u'projet', u',', u'pour', u'le', u'choix', u'professionnel', u',', u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'c', u'est', u'mon', u'premier', u'projet', u',', u'pour', u'le', u'choix', u'professionnel', u',', u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider'] +suite +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier'] +suite +[u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u',', u'je', u'compte', u'rentrer', u'au', u'lyc\xe9e', u'pour', u'pr\xe9parer', u'un', u'bac', u'technique', u',', u'apr\xe8s', u'je', u'compte', u'faire', u'une', u'formation', u'technique', u',', u'mais', u'je', u'ne', u'sais', u'pas', u'encore', u'vraiment', u'ce', u'que', u'je', u'veux', u'faire', u',', u'je', u'suis', u'assez', u'bon', u'dans', u'la', u'm\xe9canique', u',', u'certainement', u'que', u'je', u'vais', u'essayer', u'de', u'travailler', u'de', u'ce', u'cot\xe9'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'au', u'niveau', u'professionnel', u',', u'le', u'minimum', u'pour', u'l', u'instant', u'c', u'est', u'de', u'passer', u'mon', u'brevet', u',', u'en', u'cas', u'de', u'r\xe9ussite', u',', u'et', u'je', u'pense', u'que', u'\xe7a', u'va', u'marcher', u',', u'continuer', u'au', u'lyc\xe9e'] +suite +[u'je', u'voudrais', u'bien', u'devenir', u'professeur', u'de', u'math\xe9matique', u'ou', u'de', u'gymnastique', u',', u'enfin', u'un', u'truc', u'dans', u'ce', u'style', u',', u'\xe7a', u'peut', u'\xeatre', u'moniteur', u'de', u'sport', u',', u'plut\xf4t', u'le', u'sport', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser', u',', u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille', u',', u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire', u'$'] +reste +True +texte_uce +[u'je', u'voudrais', u'bien', u'devenir', u'professeur', u'de', u'math\xe9matique', u'ou', u'de', u'gymnastique', u',', u'enfin', u'un', u'truc', u'dans', u'ce', u'style', u',', u'\xe7a', u'peut', u'\xeatre', u'moniteur', u'de', u'sport', u',', u'plut\xf4t', u'le', u'sport'] +suite +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser', u',', u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille', u',', u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire', u'$'] +reste +True +texte_uce +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser', u',', u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille', u',', u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'veux', u'vivre', u'loin', u'de', u'la', u'ville', u'dans', u'une', u'\xeele', u'd\xe9serte', u',', u'avec', u'de', u'super', u'appareils', u'de', u'musique', u',', u'et', u'une', u'image', u'grand', u'\xe9cran', u'en', u'direct', u'du', u'festival', u',', u'rien', u'que', u'musique', u'et', u'image'] +suite +[u'je', u'veux', u'pas', u'm', u'inscrire', u'dans', u'la', u'profession', u'apr\xe8s', u't', u'as', u'envie', u'd', u'une', u'famille', u',', u'd', u'une', u'voiture', u',', u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de', u'ceci', u'ou', u'de', u'cela', u'.', u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets', u',', u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'pas', u'm', u'inscrire', u'dans', u'la', u'profession', u'apr\xe8s', u't', u'as', u'envie', u'd', u'une', u'famille', u',', u'd', u'une', u'voiture', u',', u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de', u'ceci', u'ou', u'de', u'cela', u'.', u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets'] +suite +[u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'l', u'intention', u'd', u'avoir', u'au', u'moins', u'des', u'enfants', u',', u'mais', u'en', u'attendant', u',', u'je', u'veux', u'arriver', u'\xe0', u'une', u'profession', u'par', u'rapport', u'au', u'baccalaur\xe9at', u'technique', u'que', u'je', u'veux', u'passer', u',', u'en', u'premier', u',', u'une', u'bonne', u'situation', u',', u'et', u'apr\xe8s', u'fonder', u'une', u'famille', u',', u'\xe7a', u'il', u'me', u'faudra', u'bien', u'une', u'dizaine', u'd', u'ann\xe9es'] +suite +[u'ce', u'qui', u'est', u'difficile', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'c', u'est', u'pas', u'\xe9vident', u'.', u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre', u'avec', u'des', u'copines', u'et', u'm', u'amuser', u',', u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9', u',', u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'ce', u'qui', u'est', u'difficile', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'c', u'est', u'pas', u'\xe9vident', u'.', u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre', u'avec', u'des', u'copines', u'et', u'm', u'amuser', u',', u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9'] +suite +[u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'familiale', u',', u'je', u'pense', u'pas', u'que', u'je', u'vais', u'me', u'marier', u',', u'mais', u'je', u'veux', u'tout', u'de', u'm\xeame', u'avoir', u'des', u'enfants', u'et', u'puis', u'vivre', u'avec', u'un', u'homme', u',', u'mais', u'je', u'veux', u'garder', u'mon', u'ind\xe9pendance', u',', u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'pense', u'\xe0', u'tout', u'\xe7a', u',', u'mais', u'd_abord', u'il', u'faut', u'penser', u'avoir', u'un', u'm\xe9tier'] +suite +[u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'dessinatrice', u'de', u'mode', u',', u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode', u',', u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'dessinatrice', u'de', u'mode', u',', u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode', u',', u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc'] +suite +[u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'compte', u'surtout', u'avoir', u'mon', u'ind\xe9pendance', u',', u'pour', u'\xe7a', u'il', u'y', u'a', u'pas', u'de', u'myst\xe8re', u',', u'il', u'faut', u'que', u'je', u'travaille', u'par', u'rapport', u'aux', u'\xe9tudes', u',', u'passer', u'mon', u'brevet', u',', u'ensuite', u'aller', u'jusqu_\xe0', u'la', u'terminale', u'et', u'pr\xe9parer', u'une', u'formation', u'technique'] +suite +[u'je', u'pense', u'\xe0', u'l', u'informatique', u',', u'pour', u'\xe9viter', u'd', u'\xeatre', u'au', u'ch\xf4mage', u',', u'l', u'essentiel', u'pour', u'moi', u'\xe9tant', u'd', u'acqu\xe9rir', u'mon', u'ind\xe9pendance', u'mat\xe9rielle', u'.', u'niveau', u'sentimental', u',', u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation', u',', u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets', u'.', u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'je', u'pense', u'\xe0', u'l', u'informatique', u',', u'pour', u'\xe9viter', u'd', u'\xeatre', u'au', u'ch\xf4mage', u',', u'l', u'essentiel', u'pour', u'moi', u'\xe9tant', u'd', u'acqu\xe9rir', u'mon', u'ind\xe9pendance', u'mat\xe9rielle', u'.', u'niveau', u'sentimental', u',', u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation', u',', u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets'] +suite +[u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u',', u'je', u'compte', u'me', u'consacrer', u'enti\xe8rement', u'\xe0', u'ma', u'famille', u',', u'\xe0', u'mes', u'enfants', u'et', u'\xe0', u'mon', u'mari', u',', u'je', u'veux', u'pouvoir', u'l', u'aider', u'dans', u'son', u'travail', u',', u'travailler', u'avec', u'lui'] +suite +[u'et', u'l', u'aider', u'dans', u'son', u'travail', u'pour', u'qu', u'il', u'ait', u'plus', u'de', u'temps', u'pour', u'sa', u'famille', u',', u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie', u',', u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants', u',', u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'et', u'l', u'aider', u'dans', u'son', u'travail', u'pour', u'qu', u'il', u'ait', u'plus', u'de', u'temps', u'pour', u'sa', u'famille', u',', u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie', u',', u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants'] +suite +[u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi'] +suite +[u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u',', u'je', u'compte', u'devenir', u'officier', u'de', u'la', u'paix', u',', u'j', u'aurais', u'voulu', u'devenir', u'sportif', u',', u'plus', u'particuli\xe8rement', u'dans', u'le', u'football', u',', u'mais', u'devenir', u'flic', u',', u'c', u'est', u'plus', u'passionnant'] +suite +[u'dans', u'cinq', u'ans', u',', u'je', u'compte', u'me', u'marier', u'avec', u'une', u'femme', u'brune', u'qui', u'aura', u'de', u'beaux', u'yeux', u',', u'il', u'faudra', u'qu', u'elle', u'soit', u'intelligente', u'et', u'belle', u'physiquement', u',', u'et', u'mignonne', u'de', u't\xeate', u',', u'avec', u'ma', u'femme', u'je', u'pense', u'avoir', u'des', u'enfants', u',', u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able', u',', u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille', u'.', u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix', u'$'] +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u',', u'je', u'compte', u'me', u'marier', u'avec', u'une', u'femme', u'brune', u'qui', u'aura', u'de', u'beaux', u'yeux', u',', u'il', u'faudra', u'qu', u'elle', u'soit', u'intelligente', u'et', u'belle', u'physiquement', u',', u'et', u'mignonne', u'de', u't\xeate', u',', u'avec', u'ma', u'femme', u'je', u'pense', u'avoir', u'des', u'enfants'] +suite +[u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able', u',', u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille', u'.', u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix', u'$'] +reste +True +texte_uce +[u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able', u',', u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille', u'.', u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'travail', u',', u'le', u'faire', u'pendant', u'deux', u'ans', u',', u'puis', u'avoir', u'un', u'accident', u'du', u'travail', u'pour', u'toucher', u'de', u'l', u'argent', u'tranquillement'] +suite +[u'je', u'veux', u'me', u'marier', u'cinq', u'fois', u',', u'avoir', u'une', u'maison', u'secondaire', u'une', u'masse', u'de', u'voitures', u',', u'rentrer', u'dans', u'la', u'politique', u'pour', u'dormir', u',', u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes', u',', u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail', u',', u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'cinq', u'fois', u',', u'avoir', u'une', u'maison', u'secondaire', u'une', u'masse', u'de', u'voitures', u',', u'rentrer', u'dans', u'la', u'politique', u'pour', u'dormir', u',', u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes', u',', u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail'] +suite +[u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne', u'$'] +reste +True +texte_uce +[u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'avec', u'une', u'jolie', u'femme', u'qui', u'soit', u'aimable', u',', u'faire', u'du', u'sport', u'de', u'temps', u'en', u'temps', u',', u'je', u'veux', u'faire', u'professeur', u'de', u'math\xe9matiques', u',', u'quelque', u'chose', u'qui', u'se', u'rapproche', u'de', u'cela', u',', u'avoir', u'de', u'bonnes', u'relations', u'avec', u'mes', u'parents', u',', u'rester', u'avec', u'eux', u'le', u'plus', u'de', u'temps', u'possible'] +suite +[u'il', u'faut', u'que', u'les', u'jeunes', u'puissent', u'plus', u's', u'exprimer', u'$'] +reste +True +texte_uce +[u'il', u'faut', u'que', u'les', u'jeunes', u'puissent', u'plus', u's', u'exprimer'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'faire', u'des', u'voyages', u',', u'voir', u'beaucoup', u'de', u'monde', u',', u'faire', u'des', u'choses', u'uniques', u'dans', u'tous', u'les', u'domaines', u',', u'ne', u'pas', u'faire', u'comme', u'tout', u'le', u'monde', u',', u'laisser', u'quelque', u'chose', u'derri\xe8re', u'moi', u',', u'j', u'aimerais', u'faire', u'un', u'm\xe9tier', u'qui', u'serve', u'\xe0', u'quelque', u'chose'] +suite +[u'certains', u'de', u'mes', u'projets', u'sont', u'r\xe9alisables', u'maintenant', u',', u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin', u',', u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent', u',', u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.', u'$'] +reste +True +texte_uce +[u'certains', u'de', u'mes', u'projets', u'sont', u'r\xe9alisables', u'maintenant', u',', u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin', u',', u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent'] +suite +[u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.', u'$'] +reste +True +texte_uce +[u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'tout', u'd_abord', u'avoir', u'une', u'bonne', u'situation', u'professionnel', u'et', u'stable', u',', u'je', u'voudrais', u'aussi', u'vivre', u'avec', u'ma', u'm\xe8re', u',', u'car', u'mes', u'parents', u'sont', u'divorc\xe9s', u',', u'et', u'je', u'vis', u'avec', u'mon', u'p\xe8re', u',', u'j', u'aimerais', u'faire', u'un', u'travail', u'avec', u'des', u'jeunes', u'enfants'] +suite +[u'dans', u'ma', u'vie', u'sentimentale', u',', u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas', u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage', u',', u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable', u',', u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge', u'$'] +reste +True +texte_uce +[u'dans', u'ma', u'vie', u'sentimentale', u',', u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas', u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage', u',', u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable', u',', u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'rester', u'c\xe9libataire', u'et', u'vivre', u'en', u'concubinage', u',', u'je', u'ne', u'veux', u'pas', u'd', u'enfants', u'car', u'pour', u'moi', u'c', u'est', u'une', u'contrainte', u',', u'je', u'veux', u'au', u'niveau', u'professionnel', u'devenir', u'kin\xe9sith\xe9rapeute', u',', u'car', u'c', u'est', u'un', u'milieu', u'o\xf9', u'on', u'a', u'le', u'contact', u'avec', u'le', u'milieu', u'sportif'] +suite +[u'je', u'veux', u'me', u'rendre', u'utile', u',', u'c', u'est', u'un', u'm\xe9tier', u'difficile', u'\xe0', u'acqu\xe9rir', u',', u'il', u'faut', u'\xeatre', u'solide', u',', u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame', u',', u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football', u',', u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'rendre', u'utile', u',', u'c', u'est', u'un', u'm\xe9tier', u'difficile', u'\xe0', u'acqu\xe9rir', u',', u'il', u'faut', u'\xeatre', u'solide', u',', u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame', u',', u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football'] +suite +[u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'est', u'pas', u'de', u'projet', u'de', u'vie', u',', u'je', u'verrai', u'bien', u'ce', u'que', u'me', u'r\xe9serve', u'le', u'cours', u'de', u'la', u'vie', u',', u'avant', u'de', u'penser', u'\xe0', u'tout', u'cela', u',', u'il', u'faut', u'que', u'je', u'profite', u'de', u'la', u'vie'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'passer', u'mon', u'bac', u'et', u'r\xe9ussir', u'dans', u'le', u'domaine', u'artistique'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'vais', u'essayer', u'd', u'avoir', u'mon', u'brevet', u',', u'apr\xe8s', u'je', u'passe', u'le', u'concours', u'de', u'la', u'gendarmerie', u',', u'et', u'le', u'concours', u'\xe0', u'l', u'arm\xe9e', u',', u'je', u'veux', u'r\xe9ussir', u'dans', u'le', u'domaine', u'sportif', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'devenir', u'v\xe9t\xe9rinaire', u',', u'j', u'y', u'pense', u'depuis', u'six', u'ans'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'sur', u'le', u'plan', u'familial', u',', u'je', u'veux', u'rester', u'c\xe9libataire', u'le', u'plus', u'longtemps', u'possible', u',', u'\xe9ventuellement', u'avoir', u'des', u'enfants', u'mais', u'dans', u'vingt', u'ans', u',', u'je', u'veux', u'avoir', u'un', u'boulot', u'int\xe9ressant', u',', u'pratiquer', u'un', u'sport', u'r\xe9guli\xe8rement', u',', u'je', u'n', u'ai', u'jamais', u'eu', u'l', u'intention', u'd', u'avoir', u'des', u'enfants'] +suite +[u'et', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'de', u'ne', u'pas', u'me', u'marier', u',', u'je', u'veux', u'avoir', u'de', u'l', u'argent', u'$'] +reste +True +texte_uce +[u'et', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'de', u'ne', u'pas', u'me', u'marier', u',', u'je', u'veux', u'avoir', u'de', u'l', u'argent'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'quand', u'j', u'aurai', u'trouver', u'l', u'homme', u'id\xe9al', u',', u'je', u'veux', u'me', u'marier', u'avoir', u'des', u'enfants', u'et', u'une', u'belle', u'maison', u',', u'je', u'voudrais', u'travailler', u'dans', u'le', u'professionnel', u'de', u'la', u'publicit\xe9', u',', u'le', u'dessin', u',', u'mais', u'je', u'n', u'ai', u'pas', u'de', u'bons', u'r\xe9sultats'] +suite +[u'depuis', u'que', u'je', u'suis', u'petite', u'je', u'r\xeave', u'd', u'avoir', u'une', u'voiture', u'et', u'une', u'belle', u'maison', u',', u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait', u'travailler', u'pour', u'cela', u',', u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9', u',', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'depuis', u'que', u'je', u'suis', u'petite', u'je', u'r\xeave', u'd', u'avoir', u'une', u'voiture', u'et', u'une', u'belle', u'maison', u',', u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait', u'travailler', u'pour', u'cela', u',', u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9'] +suite +[u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'passer', u'mon', u'baccalaur\xe9at', u'avoir', u'un', u'bon', u'm\xe9tier', u',', u'continuer', u'le', u'patinage', u',', u'vivre', u'heureuse', u',', u'\xeatre', u'heureuse', u',', u'tout', u'\xe7a', u'dans', u'une', u'dizaine', u'd', u'ann\xe9es'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'passer', u'un', u'bon', u'brevet', u',', u'pas', u'de', u'diff\xe9rence', u'entre', u'le', u'beau', u'et', u'le', u'laid', u',', u'pas', u'de', u'diff\xe9rence', u'entre', u'les', u'filles', u'et', u'les', u'gar\xe7ons', u'et', u'que', u'les', u'gens', u'ne', u'jugent', u'pas'] +suite +[u'je', u'ne', u'sais', u'pas', u'je', u'voudrais', u'qu', u'il', u'n', u'y', u'ait', u'pas', u'de', u'guerre', u'et', u'que', u'des', u'enfants', u'meurent', u'\xe0', u'cause', u'de', u'la', u'connerie', u'des', u'adultes', u',', u'ils', u'd\xe9truisent', u'l', u'avenir', u'des', u'enfants', u'innocents', u'qui', u'se', u'font', u'tuer', u'$'] +reste +True +texte_uce +[u'je', u'ne', u'sais', u'pas', u'je', u'voudrais', u'qu', u'il', u'n', u'y', u'ait', u'pas', u'de', u'guerre', u'et', u'que', u'des', u'enfants', u'meurent', u'\xe0', u'cause', u'de', u'la', u'connerie', u'des', u'adultes', u',', u'ils', u'd\xe9truisent', u'l', u'avenir', u'des', u'enfants', u'innocents', u'qui', u'se', u'font', u'tuer'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'\xe7a', u'fait', u'dix', u'ans', u'que', u'je', u'pense', u'continuer', u'mes', u'\xe9tudes', u'pour', u'pouvoir', u'avoir', u'une', u'bonne', u'place', u'dans', u'mon', u'pays', u',', u'un', u'meilleur', u'salaire', u',', u'ce', u'projet', u',', u'me', u'prendra', u'bien', u'dix', u'ans', u'car', u'je', u'veux', u'faire', u'un', u'cycle', u'long', u'il', u'me', u'faut', u'du', u'courage'] +suite +[u'de', u'la', u'pers\xe9v\xe9rance', u'et', u'de', u'l', u'intelligence', u',', u'je', u'voudrais', u'\xeatre', u'docteur', u'pour', u'obtenir', u'des', u'meilleures', u'conditions', u'de', u'vie', u',', u'les', u'\xe9tudes', u'sont', u'longues', u'et', u'difficiles', u'$'] +reste +True +texte_uce +[u'de', u'la', u'pers\xe9v\xe9rance', u'et', u'de', u'l', u'intelligence', u',', u'je', u'voudrais', u'\xeatre', u'docteur', u'pour', u'obtenir', u'des', u'meilleures', u'conditions', u'de', u'vie', u',', u'les', u'\xe9tudes', u'sont', u'longues', u'et', u'difficiles'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'avoir', u'un', u'm\xe9tier', u'bien', u',', u'arriver', u'\xe0', u'bien', u'nager', u',', u'mes', u'projets', u'sont', u'r\xe9alisables', u'car', u'modestes', u',', u'je', u'veux', u'aussi', u'une', u'grande', u'voili\xe8re', u',', u'ce', u'qu', u'il', u'faut', u'c', u'est', u'que', u'les', u'gens', u'soient', u'plus', u'attentifs', u'aux', u'autres', u'et', u'qu', u'ils', u'les', u'aident', u'pour', u'r\xe9aliser', u'leurs', u'projets'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'jusqu_au', u'baccalaur\xe9at', u'et', u'faire', u'un', u'boulot', u'qui', u'me', u'pla\xeet', u'je', u'veux', u'avoir', u'une', u'belle', u'voiture', u'de', u'sport', u',', u'une', u'femme', u'et', u'un', u'enfant', u'minimum'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'pense', u'rentrer', u'\xe0', u'l', u'\xe9cole', u'd', u'h\xf4telerie', u'et', u'essayer', u'd', u'avoir', u'un', u'bon', u'dipl\xf4me', u',', u'avoir', u'un', u'salaire', u'tr\xe8s', u'fort', u'et', u'travailler', u'dans', u'un', u'restaurant', u'comme', u'cuisinier', u'et', u'apprenti', u',', u'j', u'esp\xe8re', u'que', u'je', u'vais', u'faire', u'la', u'f\xeate', u'avant', u'de', u'me', u'marier'] +suite +[u'apr\xe8s', u'je', u'profite', u'de', u'ma', u'femme', u'et', u'je', u'lui', u'fais', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'deviens', u'milliardaire', u',', u'je', u'prends', u'la', u'retraite', u'anticip\xe9e', u',', u'plein', u'de', u'filles', u'et', u'mourir', u'sans', u'regret', u'$'] +reste +True +texte_uce +[u'apr\xe8s', u'je', u'profite', u'de', u'ma', u'femme', u'et', u'je', u'lui', u'fais', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'deviens', u'milliardaire', u',', u'je', u'prends', u'la', u'retraite', u'anticip\xe9e', u',', u'plein', u'de', u'filles', u'et', u'mourir', u'sans', u'regret'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'faire', u'de', u'longues', u'\xe9tudes', u',', u'et', u'avoir', u'un', u'bon', u'm\xe9tier', u',', u'aussi', u'passer', u'mon', u'permis', u'un', u'appartement', u'\xeatre', u'ind\xe9pendante', u'et', u'avoir', u'un', u'chat', u',', u'il', u'ne', u'faut', u'pas', u'que', u'je', u'fasse', u'tout', u'en', u'm\xeame', u'temps', u'je', u'ne', u'veux', u'pas', u'me', u'sentir', u'bousculer'] +suite +[u'pour', u'la', u'famille', u'l', u'id\xe9al', u'c', u'est', u'd', u'avoir', u'un', u'mari', u'et', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'mets', u'de', u'l', u'argent', u'de', u'c\xf4t\xe9', u'pour', u'pouvoir', u'partir', u'en', u'voyage', u'.', u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien', u',', u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'pour', u'la', u'famille', u'l', u'id\xe9al', u'c', u'est', u'd', u'avoir', u'un', u'mari', u'et', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'mets', u'de', u'l', u'argent', u'de', u'c\xf4t\xe9', u'pour', u'pouvoir', u'partir', u'en', u'voyage', u'.', u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien'] +suite +[u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'\xe9t\xe9', u'\xe0', u'l', u'h\xf4pital', u'et', u'l\xe0', u'j', u'ai', u'compris', u'que', u'les', u'm\xe9tiers', u'dans', u'le', u'sanitaire', u'c', u'\xe9tait', u'important', u',', u'essentiel', u'pour', u'la', u'soci\xe9t\xe9', u',', u'car', u'ils', u'savent', u'les', u'vies', u'et', u'\xe9vitent', u'les', u'malheurs'] +suite +[u'c', u'est', u'pour', u'cela', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'infirmi\xe8re', u',', u'donc', u'poursuivre', u'mes', u'\xe9tudes', u'et', u'me', u'marier', u'un', u'jour', u'et', u'avoir', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'c', u'est', u'pour', u'cela', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'infirmi\xe8re', u',', u'donc', u'poursuivre', u'mes', u'\xe9tudes', u'et', u'me', u'marier', u'un', u'jour', u'et', u'avoir', u'des', u'enfants'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'plus', u'tard', u'je', u'veux', u'devenir', u'styliste', u'car', u'la', u'mode', u'\xe7a', u'm', u'attire', u'bien', u',', u'je', u'veux', u'devenir', u'un', u'grand', u'styliste', u',', u'comme', u'tout', u'le', u'monde', u'je', u'veux', u'devenir', u'riche', u'et', u'vivre', u'sans', u'probl\xe8me', u',', u'je', u'suis', u'certaine', u'de', u'ne', u'pas', u'me', u'marier'] +suite +[u'mais', u'j', u'ai', u'tout', u'de', u'm\xeame', u'une', u'id\xe9e', u'de', u'l', u'homme', u'id\xe9al', u'grand', u'brun', u'yeux', u'bleus', u'muscl\xe9', u',', u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants', u',', u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison', u',', u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma', u'$'] +reste +True +texte_uce +[u'mais', u'j', u'ai', u'tout', u'de', u'm\xeame', u'une', u'id\xe9e', u'de', u'l', u'homme', u'id\xe9al', u'grand', u'brun', u'yeux', u'bleus', u'muscl\xe9', u',', u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants', u',', u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison'] +suite +[u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'faire', u'des', u'\xe9tudes', u'dans', u'la', u'comptabilit\xe9', u',', u'et', u'dans', u'dix', u'ans', u'travailler', u',', u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'tout', u'de', u'suite', u'je', u'veux', u'avoir', u'un', u'appartement', u'pour', u'moi', u'seule', u'ou', u'avec', u'une', u'amie'] +suite +[u'et', u'essayer', u'de', u'vivre', u'seule', u'sans', u'mes', u'parents', u',', u'je', u'veux', u'go\xfbter', u'la', u'libert\xe9', u'sans', u'les', u'parents', u',', u'ensuite', u'continuer', u'le', u'travail', u'm\xeame', u'si', u'je', u'me', u'marie', u'$'] +reste +True +texte_uce +[u'et', u'essayer', u'de', u'vivre', u'seule', u'sans', u'mes', u'parents', u',', u'je', u'veux', u'go\xfbter', u'la', u'libert\xe9', u'sans', u'les', u'parents', u',', u'ensuite', u'continuer', u'le', u'travail', u'm\xeame', u'si', u'je', u'me', u'marie'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'aimerais', u'devenir', u'informaticienne', u',', u'je', u'l', u'ai', u'd\xe9cid\xe9', u'cette', u'ann\xe9e', u'car', u'dans', u'ma', u'classe', u'on', u'choisit', u'une', u'orientation', u'et', u'on', u'envisage', u'diff\xe9rents', u'm\xe9tiers', u'ils', u'vont', u'\xeatre', u'r\xe9alisables', u'dans', u'dix', u'ans', u'car', u'c', u'est', u'l\xe0', u'que', u'je', u'vais', u'avoir', u'fini', u'mes', u'\xe9tudes'] +suite +[u'je', u'voudrai', u'aller', u'aux', u'jeux', u'olympiques', u',', u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage', u'il', u'faut', u'avoir', u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs', u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire', u'$'] +reste +True +texte_uce +[u'je', u'voudrai', u'aller', u'aux', u'jeux', u'olympiques', u',', u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage', u'il', u'faut', u'avoir', u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs', u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'un', u'an', u'je', u'pars', u'de', u'chez', u'moi', u',', u'je', u'passe', u'mon', u'permis', u'de', u'voiture', u'et', u'je', u'trouve', u'un', u'travail', u'je', u'loue', u'une', u'maison', u'et', u'je', u'passe', u'une', u'belle', u'vie', u'et', u'apr\xe8s', u'je', u'me', u'marie'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'avoir', u'un', u'bon', u'm\xe9tier', u'dans', u'le', u'domaine', u'sportif', u',', u'avoir', u'beaucoup', u'd', u'argent', u'et', u'avoir', u'une', u'bonne', u'vie', u'de', u'famille', u',', u'plus', u'de', u'politique', u',', u'plus', u'de', u'clochards'] +suite +[u'plus', u'de', u'famine', u'plus', u'de', u'racisme', u'pas', u'de', u'ma\xe7on', u'qui', u'ne', u'gagnent', u'pas', u'leur', u'vie', u'\xe0', u'cause', u'de', u'l', u'orientation', u'dans', u'le', u'coll\xe8ge', u'on', u'g\xe2che', u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me', u'sentir', u'dans', u'ma', u'peau', u'$'] +reste +True +texte_uce +[u'plus', u'de', u'famine', u'plus', u'de', u'racisme', u'pas', u'de', u'ma\xe7on', u'qui', u'ne', u'gagnent', u'pas', u'leur', u'vie', u'\xe0', u'cause', u'de', u'l', u'orientation', u'dans', u'le', u'coll\xe8ge', u'on', u'g\xe2che', u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me', u'sentir', u'dans', u'ma', u'peau'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'commence', u'\xe0', u'avoir', u'des', u'projets', u'je', u'veux', u'un', u'boulot', u'qui', u'me', u'fasse', u'gagner', u'de', u'l', u'argent', u',', u'la', u'm\xe9decine', u',', u'je', u'vais', u'me', u'lancer', u'dans', u'le', u'sport', u'je', u'vais', u'm', u'inscrire', u'dans', u'un', u'grand', u'club'] +suite +[u'faire', u'de', u'longues', u'\xe9tudes', u',', u'pour', u'ma', u'vie', u'sentimental', u'rencontrer', u'des', u'filles', u'faire', u'des', u'connaissances', u'agr\xe9ables', u',', u'je', u'veux', u'le', u'permis', u',', u'pour', u'moi', u'mes', u'parents', u'c', u'est', u'sacr\xe9', u'je', u'veux', u'rester', u'le', u'plus', u'longtemps', u'avec', u'eux', u'$'] +reste +True +texte_uce +[u'faire', u'de', u'longues', u'\xe9tudes', u',', u'pour', u'ma', u'vie', u'sentimental', u'rencontrer', u'des', u'filles', u'faire', u'des', u'connaissances', u'agr\xe9ables', u',', u'je', u'veux', u'le', u'permis', u',', u'pour', u'moi', u'mes', u'parents', u'c', u'est', u'sacr\xe9', u'je', u'veux', u'rester', u'le', u'plus', u'longtemps', u'avec', u'eux'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'ne', u'sais', u'rien', u'sur', u'mes', u'projets', u'je', u'ne', u'sais', u'pas', u'je', u'ne', u'sais', u'pas'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'ai', u'pas', u'de', u'projet', u'en', u'ce', u'moment', u'je', u'ne', u'pense', u'qu', u'aux', u'filles', u'je', u'ne', u'pense', u'qu', u'\xe0', u'cela', u'je', u'ne', u'pense', u'qu', u'aux', u'filles', u',', u'les', u'filles'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u'je', u'pars', u'de', u'chez', u'moi', u',', u'et', u'je', u'passe', u'mon', u'permis', u'de', u'conduire', u'apr\xe8s', u'je', u'me', u'marie', u'et', u'je', u'pratique', u'\xe0', u'fond', u'la', u'religion', u'je', u'veux', u'profiter', u'de', u'la', u'vie', u'mais', u'apr\xe8s', u'c', u'est', u'l', u'enfer'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'une', u'femme', u'et', u'un', u'appartement', u',', u'pour', u'la', u'profession', u'je', u'voudrais', u'm', u'orienter', u'vers', u'une', u'formation', u'technique', u'pour', u'r\xe9aliser', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'apr\xe8s', u'quand', u'je', u'serai', u'vieux', u'je', u'veux', u'faire', u'le', u'p\xe8lerinage', u',', u'si', u'tout', u'va', u'bien'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'compte', u'faire', u'une', u'formation', u'technique', u'et', u'apr\xe8s', u'cette', u'formation', u'fonder', u'une', u'famille', u'et', u'avoir', u'une', u'voiture'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u'\xe0', u'la', u'majorit\xe9', u',', u'je', u'veux', u'avoir', u'un', u'appartement', u',', u'je', u'ferai', u'des', u'petits', u'boulots', u'je', u'veux', u'mon', u'ind\xe9pendance', u',', u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'en', u'faisant', u'les', u'petits', u'boulots', u'une', u'formation', u'technique', u',', u'avec', u'une', u'bonne', u'formation', u'fonder', u'une', u'famille', u'et', u'essayer', u'd', u'\xeatre', u'heureux'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'voyager', u',', u'dans', u'tout', u'le', u'monde', u'avoir', u'plein', u'de', u'voitures', u'et', u'de', u'femmes', u'je', u'veux', u'\xeatre', u'riche', u'et', u'avoir', u'plein', u'de', u'femmes'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'professeur', u'de', u'physique', u'et', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'continue', u'mes', u'\xe9tudes', u',', u'ensuite', u'j', u'esp\xe8re', u'me', u'marier', u',', u'avoir', u'une', u'voiture', u'et', u'une', u'maison'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'un', u'bon', u'boulot', u'qui', u'me', u'rapporte', u'de', u'l', u'argent', u',', u'et', u'je', u'veux', u'pouvoir', u'faire', u'des', u'voyages', u',', u'je', u'veux', u'continuer', u'dans', u'la', u'danse', u'et', u'devenir', u'une', u'professionnel'] +suite +[u'je', u'veux', u'continuer', u'\xe0', u'garder', u'des', u'liens', u'avec', u'ma', u'famille', u'car', u'elle', u'est', u'sacr\xe9e', u'je', u'veux', u'aussi', u'un', u'super', u'mari', u'pour', u'que', u'\xe7a', u'se', u'r\xe9alise', u'il', u'faut', u'de', u'la', u'chance', u',', u'il', u'faut', u'compter', u'sur', u'dieu', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'\xe0', u'garder', u'des', u'liens', u'avec', u'ma', u'famille', u'car', u'elle', u'est', u'sacr\xe9e', u'je', u'veux', u'aussi', u'un', u'super', u'mari', u'pour', u'que', u'\xe7a', u'se', u'r\xe9alise', u'il', u'faut', u'de', u'la', u'chance', u',', u'il', u'faut', u'compter', u'sur', u'dieu'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'toujours', u'garder', u'des', u'liens', u'avec', u'ma', u'famille', u'au', u'niveau', u'de', u'mon', u'm\xe9tier', u'je', u'veux', u'faire', u'un', u'travail', u'social', u',', u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille', u'et', u'avoir', u'de', u'belles', u'maisons', u'j', u'esp\xe8re', u'voyager', u'dans', u'tout', u'le', u'monde', u',', u'je', u'pense', u'pouvoir', u'r\xe9aliser', u'tout', u'cela', u'par', u'rapport', u'\xe0', u'mon', u'mariage'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'une', u'bonne', u'qualification', u'pour', u'le', u'm\xe9tier', u'et', u'\xe7a', u'sera', u'possible', u'si', u'je', u'continue', u'mes', u'\xe9tudes', u'apr\xe8s', u'cela', u'penser', u'\xe0', u'la', u'vie', u'sentimentale'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'pour', u'faire', u'de', u'l', u'anglais', u'ou', u'la', u'm\xe9decine', u',', u'il', u'faut', u'multiplier', u'les', u'centres', u'de', u'rencontre', u'pour', u'les', u'jeunes', u'je', u'veux', u'vivre', u'dans', u'un', u'grand', u'et', u'beau', u'pays', u'dans', u'un', u'pays', u'de', u'la', u'libert\xe9', u'je', u'veux', u'rencontrer', u'des', u'gens', u'connus', u'et', u'me', u'marier', u'avec', u'une', u'vedette'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'et', u'faire', u'un', u'travail', u'int\xe9ressant', u'et', u'qui', u'rapporte', u'de', u'l', u'argent', u',', u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille', u',', u'je', u'veux', u'vivre', u'dans', u'un', u'beau', u'pays', u'je', u'veux', u'beaucoup', u'voyager'] +suite +[u'une', u'fois', u'bien', u'profiter', u'de', u'la', u'vie', u'je', u'pense', u'faire', u'des', u'enfants', u'et', u'm', u'en', u'occuper', u',', u'si', u'je', u'pouvais', u'avoir', u'plus', u'de', u'libert\xe9', u'pour', u'plus', u'profiter', u'de', u'la', u'vie', u'$'] +reste +True +texte_uce +[u'une', u'fois', u'bien', u'profiter', u'de', u'la', u'vie', u'je', u'pense', u'faire', u'des', u'enfants', u'et', u'm', u'en', u'occuper', u',', u'si', u'je', u'pouvais', u'avoir', u'plus', u'de', u'libert\xe9', u'pour', u'plus', u'profiter', u'de', u'la', u'vie'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'une', u'danseuse', u'et', u'en', u'faire', u'mon', u'm\xe9tier', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'de', u'l', u'argent', u'sinon', u'je', u'vais', u'faire', u'un', u'travail', u'de', u'technique', u'en', u'biologie', u',', u'je', u'veux', u'me', u'marier', u'avec', u'un', u'super', u'mari', u'mais', u'je', u'n', u'ai', u'pas', u'trop', u'd', u'espoir', u'\xe0', u'ce', u'niveau', u'l\xe0'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'de', u'toute', u'fa\xe7on', u'\xe0', u'la', u'majorit\xe9', u'je', u'serai', u'libre', u'et', u'je', u'pourrais', u'faire', u'ce', u'qu', u'il', u'me', u'pla\xeet', u'm\xeame', u'si', u'j', u'ai', u'envie', u'de', u'passer', u'dans', u'une', u'autre', u'classe'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'pense', u'd_abord', u'faire', u'mes', u'\xe9tudes', u'une', u'formation', u'technique', u'dans', u'le', u'commerce', u',', u'quelque', u'chose', u'qui', u'soit', u'\xe0', u'la', u'port\xe9e', u'des', u'mes', u'propres', u'possibilit\xe9s'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'faire', u'un', u'travail', u'dans', u'le', u'social', u'commencer', u'par', u'une', u'pr\xe9paration', u'd', u'infirmi\xe8re', u'donc', u'continuer', u'mes', u'\xe9tudes', u'et', u'ensuite', u'faire', u'une', u'sp\xe9cialisation', u'par', u'rapport', u'aux', u'enfants', u',', u'je', u'pense', u'd_abord', u'\xe0', u'ma', u'vie', u'de', u'm\xe9tier', u',', u'le', u'reste', u'on', u'ne', u'sais', u'pas', u'vraiment'] +suite +[u'le', u'hasard', u',', u'mais', u'pour', u'le', u'm\xe9tier', u',', u'il', u'faut', u'travailler', u'.', u'$'] +reste +True +texte_uce +[u'le', u'hasard', u',', u'mais', u'pour', u'le', u'm\xe9tier', u',', u'il', u'faut', u'travailler', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'ai', u'pas', u'l', u'habitude', u'de', u'faire', u'des', u'projets'] +suite +[u'je', u'vis', u'au', u'jour', u'le', u'jour', u'.', u'les', u'adolescents', u'font', u'des', u'projets', u'\xe0', u'partir', u'du', u'moment', u'o\xf9', u'il', u'se', u'rendent', u'compte', u'qu', u'ils', u'ne', u'doivent', u'compter', u'que', u'sur', u'eux', u'm\xeame', u'et', u'qu', u'ils', u'doivent', u'se', u'prendre', u'en', u'charge', u'de', u'quel', u'genre', u'de', u'projets', u's', u'agit', u'il', u'?', u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile', u',', u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'je', u'vis', u'au', u'jour', u'le', u'jour'] +suite +[u'les', u'adolescents', u'font', u'des', u'projets', u'\xe0', u'partir', u'du', u'moment', u'o\xf9', u'il', u'se', u'rendent', u'compte', u'qu', u'ils', u'ne', u'doivent', u'compter', u'que', u'sur', u'eux', u'm\xeame', u'et', u'qu', u'ils', u'doivent', u'se', u'prendre', u'en', u'charge', u'de', u'quel', u'genre', u'de', u'projets', u's', u'agit', u'il', u'?', u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile', u',', u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'les', u'adolescents', u'font', u'des', u'projets', u'\xe0', u'partir', u'du', u'moment', u'o\xf9'] +suite +[u'se', u'rendent', u'compte', u'qu', u'ils', u'ne', u'doivent', u'compter', u'que', u'sur', u'eux', u'm\xeame', u'et', u'qu', u'ils', u'doivent', u'se', u'prendre', u'en', u'charge', u'de', u'quel', u'genre', u'de', u'projets', u's', u'agit', u'il', u'?', u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile', u',', u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'se', u'rendent', u'compte', u'qu', u'ils', u'ne', u'doivent', u'compter', u'que', u'sur'] +suite +[u'm\xeame', u'et', u'qu', u'ils', u'doivent', u'se', u'prendre', u'en', u'charge', u'de', u'quel', u'genre', u'de', u'projets', u's', u'agit', u'il', u'?', u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile', u',', u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'm\xeame', u'et', u'qu', u'ils', u'doivent', u'se', u'prendre', u'en', u'charge', u'de', u'quel', u'genre', u'de', u'projets', u's', u'agit', u'il'] +suite +[u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile', u',', u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'projet', u'pour', u'mon', u'm\xe9tier', u',', u'une', u'vie', u'assez', u'facile'] +suite +[u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison', u',', u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'sans', u'trop', u'd', u'argent', u'ni', u'trop', u'peu', u',', u'une', u'maison'] +suite +[u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier', u'.', u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'une', u'voiture', u',', u'une', u'moto', u',', u'tout', u'\xe7a', u'gr\xe2ce', u'\xe0', u'la', u'police', u',', u'car', u'je', u'veux', u'devenir', u'policier'] +suite +[u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps', u'.', u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'projet', u'sentimental', u',', u'en', u'ce', u'moment', u',', u'je', u'suis', u'avec', u'une', u'fille', u'ceci', u'depuis', u'9', u'mois', u',', u'et', u'je', u'veux', u'que', u'cela', u'dure', u'encore', u'longtemps'] +suite +[u'projets', u'futurs', u':', u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'projets', u'futurs'] +suite +[u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde', u',', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'avoir', u'mon', u'brevet', u'du', u'coll\xe8ge', u',', u'passer', u'en', u'seconde'] +suite +[u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour', u'que', u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'actuelle', u'pour'] +suite +[u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager', u'$'] +reste +True +texte_uce +[u'nos', u'projets', u'soient', u'r\xe9alisables', u'c', u'est', u'avoir', u'\xe0', u'coeur', u'ce', u'que', u'l', u'on', u'veut', u'faire', u'ne', u'jamais', u'y', u'renoncer', u',', u'ne', u'jamais', u'se', u'd\xe9courager'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u',', u'devenir', u'un', u'jour', u'professeur', u'de', u'fran\xe7ais', u'ou', u'd', u'histoire', u'g\xe9ographie'] +suite +[u'me', u'marier', u';', u'avoir', u'un', u'enfant', u'pas', u'plus', u',', u'faire', u'construire', u'une', u'maison', u'et', u'si', u'possible', u',', u'ne', u'pas', u'vivre', u'en', u'ville', u',', u'plut\xf4t', u'dans', u'l', u'agglom\xe9ration', u'et', u'm\xeame', u'\xe0', u'la', u'campagne', u',', u'passer', u'mon', u'permis', u'de', u'conduire', u',', u'avoir', u'une', u'ou', u'plusieurs', u'voitures', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs', u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord', u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral', u',', u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.', u'$'] +reste +True +texte_uce +[u'me', u'marier'] +suite +[u'avoir', u'un', u'enfant', u'pas', u'plus', u',', u'faire', u'construire', u'une', u'maison', u'et', u'si', u'possible', u',', u'ne', u'pas', u'vivre', u'en', u'ville', u',', u'plut\xf4t', u'dans', u'l', u'agglom\xe9ration', u'et', u'm\xeame', u'\xe0', u'la', u'campagne', u',', u'passer', u'mon', u'permis', u'de', u'conduire', u',', u'avoir', u'une', u'ou', u'plusieurs', u'voitures', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs', u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord', u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral', u',', u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.', u'$'] +reste +True +texte_uce +[u'avoir', u'un', u'enfant', u'pas', u'plus', u',', u'faire', u'construire', u'une', u'maison', u'et', u'si', u'possible'] +suite +[u'ne', u'pas', u'vivre', u'en', u'ville', u',', u'plut\xf4t', u'dans', u'l', u'agglom\xe9ration', u'et', u'm\xeame', u'\xe0', u'la', u'campagne', u',', u'passer', u'mon', u'permis', u'de', u'conduire', u',', u'avoir', u'une', u'ou', u'plusieurs', u'voitures', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs', u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord', u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral', u',', u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.', u'$'] +reste +True +texte_uce +[u'ne', u'pas', u'vivre', u'en', u'ville', u',', u'plut\xf4t', u'dans', u'l', u'agglom\xe9ration', u'et', u'm\xeame', u'\xe0', u'la', u'campagne'] +suite +[u'passer', u'mon', u'permis', u'de', u'conduire', u',', u'avoir', u'une', u'ou', u'plusieurs', u'voitures', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs', u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord', u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral', u',', u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.', u'$'] +reste +True +texte_uce +[u'passer', u'mon', u'permis', u'de', u'conduire', u',', u'avoir', u'une', u'ou', u'plusieurs', u'voitures'] +suite +[u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs', u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord', u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral', u',', u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.', u'$'] +reste +True +texte_uce +[u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9ussir', u'leurs', u'projets', u'plus', u'facilement', u'il', u'faudrait', u'd_abord', u'que', u'la', u'vie', u'en', u'g\xe9n\xe9ral'] +suite +[u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.', u'$'] +reste +True +texte_uce +[u'devienne', u'moins', u'dure', u'et', u'moins', u'ch\xe8re', u'que', u'les', u'jeunes', u'des', u'le', u'd\xe9part', u'ne', u'soient', u'pas', u'oblig\xe9s', u'\xe0', u'prendre', u'des', u'cr\xe9dits', u'pour', u'tout', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u'seraient', u'de', u'devenir', u'v\xe9t\xe9rinaire'] +suite +[u'd', u'avoir', u'une', u'belle', u'maison', u'\xe0', u'la', u'montagne', u'et', u'une', u'au', u'bord', u'de', u'la', u'mer', u',', u'avoir', u'une', u'femme', u'un', u'enfant', u',', u'une', u'grosse', u'voiture', u'de', u'sport', u'et', u'aussi', u'une', u'grosse', u'moto', u'.', u'aussi', u'de', u'sport', u'et', u'aussi', u'de', u'comp\xe9tition', u'.', u'devenir', u'champion', u'de', u'tir', u'\xe0', u'l', u'arc', u',', u'tir', u'\xe0', u'la', u'carabine', u',', u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre', u',', u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil', u'.', u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'd', u'avoir', u'une', u'belle', u'maison', u'\xe0', u'la', u'montagne', u'et', u'une', u'au', u'bord', u'de', u'la', u'mer'] +suite +[u'avoir', u'une', u'femme', u'un', u'enfant', u',', u'une', u'grosse', u'voiture', u'de', u'sport', u'et', u'aussi', u'une', u'grosse', u'moto', u'.', u'aussi', u'de', u'sport', u'et', u'aussi', u'de', u'comp\xe9tition', u'.', u'devenir', u'champion', u'de', u'tir', u'\xe0', u'l', u'arc', u',', u'tir', u'\xe0', u'la', u'carabine', u',', u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre', u',', u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil', u'.', u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'avoir', u'une', u'femme', u'un', u'enfant', u',', u'une', u'grosse', u'voiture', u'de', u'sport', u'et', u'aussi', u'une', u'grosse', u'moto'] +suite +[u'aussi', u'de', u'sport', u'et', u'aussi', u'de', u'comp\xe9tition', u'.', u'devenir', u'champion', u'de', u'tir', u'\xe0', u'l', u'arc', u',', u'tir', u'\xe0', u'la', u'carabine', u',', u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre', u',', u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil', u'.', u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'aussi', u'de', u'sport', u'et', u'aussi', u'de', u'comp\xe9tition'] +suite +[u'devenir', u'champion', u'de', u'tir', u'\xe0', u'l', u'arc', u',', u'tir', u'\xe0', u'la', u'carabine', u',', u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre', u',', u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil', u'.', u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'devenir', u'champion', u'de', u'tir', u'\xe0', u'l', u'arc', u',', u'tir', u'\xe0', u'la', u'carabine'] +suite +[u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre', u',', u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil', u'.', u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'devenir', u'champion', u'du', u'monde', u'de', u'la', u'chasse', u'\xe0', u'courre', u',', u'avec', u'les', u'meilleurs', u'chiens', u',', u'avoir', u'un', u'chenil'] +suite +[u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires', u',', u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'enlever', u'le', u'quanta', u',', u'\xe9liminer', u'les', u'centrales', u'nucl\xe9aires'] +suite +[u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res', u',', u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'faire', u'exploser', u'toutes', u'les', u'centrales', u'du', u'monde', u'entier', u'car', u'elles', u'polluent', u'les', u'rivi\xe8res'] +suite +[u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.', u'$'] +reste +True +texte_uce +[u'enlever', u'les', u'engrais', u'chimiques', u'qui', u'polluent', u'les', u'nappes', u'phr\xe9atiques', u',', u'enlever', u'les', u'centrales', u'\xe9lectriques', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'mes', u'projets', u'familiaux', u',', u'je', u'pense', u'ne', u'pas', u'me', u'marier', u'mais', u'avoir', u'des', u'enfants'] +suite +[u'au', u'moins', u'deux', u'enfants', u',', u'vivre', u'avec', u'un', u'homme', u'soit', u'en', u'tant', u'que', u'mari', u',', u'soit', u'en', u'tant', u'que', u'concubin', u'.', u'je', u'ne', u'r\xe9aliserai', u'ces', u'projets', u'que', u'dans', u'douze', u'ans', u',', u'lorsque', u'j', u'aurai', u'un', u'm\xe9tier', u's\xfbr', u'et', u'une', u'situation', u'ais\xe9e', u'.', u'j', u'ai', u'projetai', u'cela', u'il', u'y', u'a', u'environ', u'un', u'an', u'.', u'mes', u'projets', u'professionnels', u',', u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans', u',', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice', u',', u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier', u'.', u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'au', u'moins', u'deux', u'enfants', u',', u'vivre', u'avec', u'un', u'homme', u'soit', u'en', u'tant', u'que', u'mari', u',', u'soit', u'en', u'tant', u'que', u'concubin'] +suite +[u'je', u'ne', u'r\xe9aliserai', u'ces', u'projets', u'que', u'dans', u'douze', u'ans', u',', u'lorsque', u'j', u'aurai', u'un', u'm\xe9tier', u's\xfbr', u'et', u'une', u'situation', u'ais\xe9e', u'.', u'j', u'ai', u'projetai', u'cela', u'il', u'y', u'a', u'environ', u'un', u'an', u'.', u'mes', u'projets', u'professionnels', u',', u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans', u',', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice', u',', u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier', u'.', u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'je', u'ne', u'r\xe9aliserai', u'ces', u'projets', u'que', u'dans', u'douze', u'ans', u',', u'lorsque', u'j', u'aurai', u'un', u'm\xe9tier', u's\xfbr', u'et', u'une', u'situation', u'ais\xe9e'] +suite +[u'j', u'ai', u'projetai', u'cela', u'il', u'y', u'a', u'environ', u'un', u'an', u'.', u'mes', u'projets', u'professionnels', u',', u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans', u',', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice', u',', u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier', u'.', u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'j', u'ai', u'projetai', u'cela', u'il', u'y', u'a', u'environ', u'un', u'an'] +suite +[u'mes', u'projets', u'professionnels', u',', u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans', u',', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice', u',', u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier', u'.', u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'mes', u'projets', u'professionnels', u',', u'il', u'y', u'a', u'environ', u'trois', u'ou', u'quatre', u'ans'] +suite +[u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice', u',', u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier', u'.', u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'conceptrice', u',', u'r\xe9dactrice', u'en', u'publicit\xe9', u'et', u'j', u'ai', u'de', u'plus', u'en', u'plus', u'envie', u'de', u'faire', u'ce', u'm\xe9tier'] +suite +[u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup', u',', u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'trouver', u'des', u'id\xe9es', u'pour', u'une', u'publicit\xe9', u',', u'me', u'pla\xeet', u'beaucoup'] +suite +[u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant', u'.', u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'imaginer', u',', u'fabuler', u',', u'je', u'trouve', u'cela', u'passionnant'] +suite +[u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable', u'.', u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'j', u'ai', u'choisi', u'ce', u'm\xe9tier', u',', u'car', u'dans', u'la', u'publicit\xe9', u'on', u'peut', u'tout', u'faire', u',', u'rien', u'n', u'est', u'impossible', u'et', u'je', u'trouve', u'\xe7a', u'formidable'] +suite +[u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre', u'.', u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'bien', u's\xfbr', u'pour', u'en', u'arriver', u'l\xe0', u',', u'il', u'va', u'falloir', u'travailler', u'dur', u'et', u'se', u'battre'] +suite +[u'cela', u'me', u'fait', u'un', u'peu', u'peur', u',', u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'cela', u'me', u'fait', u'un', u'peu', u'peur'] +suite +[u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler', u',', u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'mais', u'dans', u'la', u'vie', u'si', u'on', u'veut', u'arriver', u'\xe0', u'quelque', u'chose', u'il', u'faut', u'se', u'battre', u'et', u'travailler'] +suite +[u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans', u'.', u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'\xe0', u'mon', u'avis', u'je', u'ne', u'pourrai', u'travailler', u'vraiment', u'que', u'dans', u'dix', u'ans'] +suite +[u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage', u',', u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'ce', u'qu', u'il', u'faudrait', u'am\xe9liorer', u'dans', u'notre', u'soci\xe9t\xe9', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'serait', u'r\xe9duire', u'le', u'ch\xf4mage'] +suite +[u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.', u'$'] +reste +True +texte_uce +[u'donner', u'plus', u'de', u'possibilit\xe9', u'aux', u'jeunes', u'dans', u'les', u'universit\xe9', u',', u'initiation', u'pour', u'les', u'r\xe9aliser', u',', u'changer', u'l', u'enseignement', u',', u'la', u'p\xe9dagogie', u'des', u'profs', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'ce', u'que', u'je', u'veux', u'faire', u'comme', u'projet', u'depuis', u'toujours'] +suite +[u'avoir', u'un', u'bon', u'm\xe9tier', u'qui', u'paie', u',', u'ne', u'pas', u'avoir', u'd', u'enfants', u',', u'ne', u'pas', u'me', u'marier', u',', u'avoir', u'mon', u'ind\xe9pendance', u',', u'avoir', u'une', u'super', u'voiture', u',', u'\xeatre', u'biologiste', u',', u'\xe7a', u'depuis', u'l', u'\xe2ge', u'de', u'quinze', u'ans', u',', u'aller', u'depuis', u'toujours', u'en', u'am\xe9rique', u',', u'depuis', u'toujours', u',', u'aller', u'en', u'haut', u',', u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans', u',', u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'avoir', u'un', u'bon', u'm\xe9tier', u'qui', u'paie', u',', u'ne', u'pas', u'avoir', u'd', u'enfants'] +suite +[u'ne', u'pas', u'me', u'marier', u',', u'avoir', u'mon', u'ind\xe9pendance', u',', u'avoir', u'une', u'super', u'voiture', u',', u'\xeatre', u'biologiste', u',', u'\xe7a', u'depuis', u'l', u'\xe2ge', u'de', u'quinze', u'ans', u',', u'aller', u'depuis', u'toujours', u'en', u'am\xe9rique', u',', u'depuis', u'toujours', u',', u'aller', u'en', u'haut', u',', u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans', u',', u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'ne', u'pas', u'me', u'marier', u',', u'avoir', u'mon', u'ind\xe9pendance'] +suite +[u'avoir', u'une', u'super', u'voiture', u',', u'\xeatre', u'biologiste', u',', u'\xe7a', u'depuis', u'l', u'\xe2ge', u'de', u'quinze', u'ans', u',', u'aller', u'depuis', u'toujours', u'en', u'am\xe9rique', u',', u'depuis', u'toujours', u',', u'aller', u'en', u'haut', u',', u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans', u',', u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'avoir', u'une', u'super', u'voiture', u',', u'\xeatre', u'biologiste'] +suite +[u'\xe7a', u'depuis', u'l', u'\xe2ge', u'de', u'quinze', u'ans', u',', u'aller', u'depuis', u'toujours', u'en', u'am\xe9rique', u',', u'depuis', u'toujours', u',', u'aller', u'en', u'haut', u',', u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans', u',', u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'\xe7a', u'depuis', u'l', u'\xe2ge', u'de', u'quinze', u'ans', u',', u'aller', u'depuis', u'toujours', u'en', u'am\xe9rique'] +suite +[u'depuis', u'toujours', u',', u'aller', u'en', u'haut', u',', u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans', u',', u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'depuis', u'toujours', u',', u'aller', u'en', u'haut'] +suite +[u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans', u',', u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'\xe7a', u'aussi', u'\xe0', u'l', u'age', u'de', u'quinze', u'ans'] +suite +[u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement', u',', u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'depuis', u'toujours', u'avoir', u'plein', u'de', u't\xe9l\xe9phones', u'dans', u'mon', u'appartement'] +suite +[u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec', u',', u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'depuis', u'toujours', u',', u'avoir', u'la', u'pilule', u'quand', u'j', u'aurai', u'envie', u'de', u'faire', u'l', u'amour', u'avec', u'un', u'mec'] +suite +[u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois', u'.', u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'avoir', u'un', u'corps', u'd', u'athl\xe8te', u',', u'depuis', u'toujours', u',', u'avoir', u'mon', u'permis', u'provisoire', u'depuis', u'trois', u'mois'] +suite +[u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets', u',', u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'pour', u'que', u'les', u'jeunes', u'puissent', u'plus', u'facilement', u'r\xe9ussir', u'des', u'projets'] +suite +[u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir', u'.', u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'il', u'faudrait', u'que', u'les', u'parents', u'aient', u'plus', u'confiance', u'en', u'leurs', u'enfants', u',', u'et', u'les', u'laissent', u'agir'] +suite +[u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat', u',', u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'cela', u'est', u'de', u'm\xeame', u'pour', u'l', u'etat'] +suite +[u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre', u'$'] +reste +True +texte_uce +[u'avoir', u'les', u'moyens', u'financiers', u'donner', u'par', u'l', u'etat', u',', u'car', u'les', u'parents', u'ne', u'peuvent', u'pas', u'toujours', u'se', u'le', u'permettre'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'l', u'intention', u'd', u'avoir', u'quatre', u'ou', u'trois', u'enfants'] +suite +[u'mais', u'en', u'attendant', u',', u'je', u'veux', u'arriver', u'\xe0', u'mon', u'bac', u'professionnel', u',', u'enfin', u'continuer', u'mes', u'\xe9tudes', u',', u'avoir', u'un', u'bon', u'm\xe9tier', u'?', u'je', u'veux', u'en', u'premier', u'une', u'bonne', u'situation', u'puis', u'ensuite', u'fonder', u'une', u'famille', u'dans', u'au', u'moins', u'neuf', u'ans', u'.', u'ce', u'qui', u'faudrait', u'changer', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'sont', u'les', u'\xe9tudes', u'qui', u'sont', u'un', u'peu', u'trop', u'dures', u'.', u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage', u',', u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel', u'.', u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi', u',', u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance', u'.', u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'mais', u'en', u'attendant', u',', u'je', u'veux', u'arriver', u'\xe0', u'mon', u'bac', u'professionnel', u',', u'enfin', u'continuer', u'mes', u'\xe9tudes', u',', u'avoir', u'un', u'bon', u'm\xe9tier'] +suite +[u'je', u'veux', u'en', u'premier', u'une', u'bonne', u'situation', u'puis', u'ensuite', u'fonder', u'une', u'famille', u'dans', u'au', u'moins', u'neuf', u'ans', u'.', u'ce', u'qui', u'faudrait', u'changer', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'sont', u'les', u'\xe9tudes', u'qui', u'sont', u'un', u'peu', u'trop', u'dures', u'.', u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage', u',', u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel', u'.', u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi', u',', u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance', u'.', u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'en', u'premier', u'une', u'bonne', u'situation', u'puis', u'ensuite', u'fonder', u'une', u'famille', u'dans', u'au', u'moins', u'neuf', u'ans'] +suite +[u'ce', u'qui', u'faudrait', u'changer', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'sont', u'les', u'\xe9tudes', u'qui', u'sont', u'un', u'peu', u'trop', u'dures', u'.', u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage', u',', u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel', u'.', u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi', u',', u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance', u'.', u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'ce', u'qui', u'faudrait', u'changer', u'pour', u'que', u'les', u'jeunes', u'puissent', u'r\xe9aliser', u'leurs', u'projets', u'sont', u'les', u'\xe9tudes', u'qui', u'sont', u'un', u'peu', u'trop', u'dures'] +suite +[u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage', u',', u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel', u'.', u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi', u',', u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance', u'.', u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'maintenant', u'pour', u'faire', u'femme', u'de', u'm\xe9nage', u',', u'il', u'faut', u'avoir', u'un', u'brevet', u'd', u'enseignement', u'professionnel'] +suite +[u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi', u',', u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance', u'.', u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'que', u'mon', u'mari', u'travaille', u'et', u'moi', u'aussi'] +suite +[u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents', u',', u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance', u'.', u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'\xe9lever', u'mes', u'enfants', u'diff\xe9remment', u'que', u'mes', u'parents'] +suite +[u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance', u'.', u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'je', u'me', u'marierai', u'avec', u'un', u'homme', u'en', u'qui', u'j', u'ai', u'enti\xe8rement', u'confiance'] +suite +[u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine', u'.', u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'fonder', u'une', u'famille', u'unie', u'a', u'\xe9t\xe9', u'toujours', u'mon', u'id\xe9e', u',', u'mais', u'pour', u'un', u'm\xe9tier', u'je', u'ne', u'suis', u'pas', u'certaine'] +suite +[u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice', u'.', u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'aujourd_hui', u'je', u'sais', u'ce', u'que', u'je', u'veux', u'faire', u',', u'monitrice', u'et', u'\xe9ducatrice'] +suite +[u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non', u',', u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'ma', u'm\xe8re', u'est', u'd', u'accord', u',', u'mon', u'p\xe8re', u'non'] +suite +[u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien', u'.', u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'mais', u'je', u'me', u'moque', u'de', u'son', u'avis', u',', u'car', u'il', u'n', u'a', u'pas', u'ma', u'charge', u'et', u'que', u'lui', u'aussi', u'ce', u'moque', u'du', u'mien'] +suite +[u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans', u',', u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u'je', u'd\xe9bute', u'ma', u'carri\xe8re', u',', u'dans', u'trois', u'ans'] +suite +[u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans', u'$'] +reste +True +texte_uce +[u'j', u'ai', u'un', u'appartement', u'avec', u'des', u'copines', u',', u'mariage', u'dans', u'dix', u',', u'quinze', u'ans', u',', u'la', u'maison', u'pareil', u'et', u'enfin', u'\xeatre', u'grand_m\xe8re', u'dans', u'quarante', u'ans'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'concubinage', u'avec', u'des', u'gens', u'c\xe9l\xe8bre', u',', u'avoir', u'une', u'voiture', u'de', u'sport'] +suite +[u'plusieurs', u'villas', u',', u'avec', u'mes', u'associ\xe9s', u'on', u'enqu\xeateraient', u'sur', u'les', u'vols', u',', u'je', u'veux', u'vivre', u'dans', u'une', u'\xeele', u'd\xe9sertes', u'avec', u'plein', u'de', u'mecs', u'.', u'$'] +reste +True +texte_uce +[u'plusieurs', u'villas', u',', u'avec', u'mes', u'associ\xe9s', u'on', u'enqu\xeateraient', u'sur', u'les', u'vols', u',', u'je', u'veux', u'vivre', u'dans', u'une', u'\xeele', u'd\xe9sertes', u'avec', u'plein', u'de', u'mecs', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u'j', u'aimerai', u'rentrer', u'au', u'lyc\xe9e', u'pour', u'continuer', u'mes', u'\xe9tudes'] +suite +[u'faire', u'de', u'l', u'\xe9lectronique', u',', u'apr\xe8s', u'si', u'je', u'r\xe9ussi', u'ces', u'premi\xe8res', u'\xe9tudes', u'je', u'compte', u'continuer', u'encore', u'deux', u'ans', u'dans', u'l', u'informatique', u',', u'\xeatre', u'technicien', u'sup\xe9rieur', u'.', u'il', u'n', u'y', u'a', u'pas', u'longtemps', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'cela', u',', u'l', u'ann\xe9e', u'derni\xe8re', u',', u'je', u'ne', u'savais', u'pas', u'encore', u'ce', u'que', u'je', u'voulais', u'faire', u',', u'en', u'dehors', u'du', u'dessin', u'assist\xe9', u'par', u'ordinateur', u'car', u'je', u'suis', u'assez', u'bon', u'en', u'dessin', u'industriel', u',', u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.', u'$'] +reste +True +texte_uce +[u'faire', u'de', u'l', u'\xe9lectronique', u',', u'apr\xe8s', u'si', u'je', u'r\xe9ussi', u'ces', u'premi\xe8res', u'\xe9tudes', u'je', u'compte', u'continuer', u'encore', u'deux', u'ans', u'dans', u'l', u'informatique', u',', u'\xeatre', u'technicien', u'sup\xe9rieur'] +suite +[u'il', u'n', u'y', u'a', u'pas', u'longtemps', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'cela', u',', u'l', u'ann\xe9e', u'derni\xe8re', u',', u'je', u'ne', u'savais', u'pas', u'encore', u'ce', u'que', u'je', u'voulais', u'faire', u',', u'en', u'dehors', u'du', u'dessin', u'assist\xe9', u'par', u'ordinateur', u'car', u'je', u'suis', u'assez', u'bon', u'en', u'dessin', u'industriel', u',', u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.', u'$'] +reste +True +texte_uce +[u'il', u'n', u'y', u'a', u'pas', u'longtemps', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'cela'] +suite +[u'l', u'ann\xe9e', u'derni\xe8re', u',', u'je', u'ne', u'savais', u'pas', u'encore', u'ce', u'que', u'je', u'voulais', u'faire', u',', u'en', u'dehors', u'du', u'dessin', u'assist\xe9', u'par', u'ordinateur', u'car', u'je', u'suis', u'assez', u'bon', u'en', u'dessin', u'industriel', u',', u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.', u'$'] +reste +True +texte_uce +[u'l', u'ann\xe9e', u'derni\xe8re', u',', u'je', u'ne', u'savais', u'pas', u'encore', u'ce', u'que', u'je', u'voulais', u'faire'] +suite +[u'en', u'dehors', u'du', u'dessin', u'assist\xe9', u'par', u'ordinateur', u'car', u'je', u'suis', u'assez', u'bon', u'en', u'dessin', u'industriel', u',', u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.', u'$'] +reste +True +texte_uce +[u'en', u'dehors', u'du', u'dessin', u'assist\xe9', u'par', u'ordinateur', u'car', u'je', u'suis', u'assez', u'bon', u'en', u'dessin', u'industriel'] +suite +[u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.', u'$'] +reste +True +texte_uce +[u'\xe7a', u'je', u'peux', u'le', u'faire', u'plus', u'tard', u'dans', u'le', u'cadre', u'de', u'mes', u'\xe9tudes', u'universitaires', u',', u'comme', u'je', u'l', u'ai', u'd\xe9j\xe0', u'dit', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'continuer', u'mes', u'\xe9tudes', u',', u'mais', u'pas', u'trop', u'longtemps'] +suite +[u'je', u'veux', u'passer', u'mon', u'brevet', u',', u'et', u'ensuite', u'voir', u'du', u'cot\xe9', u'd', u'une', u'formation', u'technique', u',', u'un', u'truc', u'de', u'm\xe9canicien', u',', u'enfin', u'des', u'\xe9tudes', u'pas', u'longues', u'.', u'ma', u'vie', u'sentimentale', u',', u'je', u'pense', u'me', u'marier', u',', u'apr\xe8s', u'mes', u'\xe9tudes', u',', u'apr\xe8s', u'avoir', u'une', u'super', u'maison', u'et', u'aussi', u'une', u'ou', u'plein', u'de', u'voitures', u'.', u'je', u'suis', u'ceinture', u'noire', u'de', u'judo', u',', u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'passer', u'mon', u'brevet', u',', u'et', u'ensuite', u'voir', u'du', u'cot\xe9', u'd', u'une', u'formation', u'technique'] +suite +[u'un', u'truc', u'de', u'm\xe9canicien', u',', u'enfin', u'des', u'\xe9tudes', u'pas', u'longues', u'.', u'ma', u'vie', u'sentimentale', u',', u'je', u'pense', u'me', u'marier', u',', u'apr\xe8s', u'mes', u'\xe9tudes', u',', u'apr\xe8s', u'avoir', u'une', u'super', u'maison', u'et', u'aussi', u'une', u'ou', u'plein', u'de', u'voitures', u'.', u'je', u'suis', u'ceinture', u'noire', u'de', u'judo', u',', u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'un', u'truc', u'de', u'm\xe9canicien', u',', u'enfin', u'des', u'\xe9tudes', u'pas', u'longues'] +suite +[u'ma', u'vie', u'sentimentale', u',', u'je', u'pense', u'me', u'marier', u',', u'apr\xe8s', u'mes', u'\xe9tudes', u',', u'apr\xe8s', u'avoir', u'une', u'super', u'maison', u'et', u'aussi', u'une', u'ou', u'plein', u'de', u'voitures', u'.', u'je', u'suis', u'ceinture', u'noire', u'de', u'judo', u',', u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'ma', u'vie', u'sentimentale', u',', u'je', u'pense', u'me', u'marier', u',', u'apr\xe8s', u'mes', u'\xe9tudes', u',', u'apr\xe8s', u'avoir', u'une', u'super', u'maison', u'et', u'aussi', u'une', u'ou', u'plein', u'de', u'voitures'] +suite +[u'je', u'suis', u'ceinture', u'noire', u'de', u'judo', u',', u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'je', u'suis', u'ceinture', u'noire', u'de', u'judo'] +suite +[u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'et', u'je', u'voudrais', u'continuer', u'\xe0', u'consacrer', u'du', u'temps', u'pour', u'la', u'comp\xe9tition', u',', u'dans', u'le', u'club', u'ou', u'je', u'suis', u'je', u'donne', u'des', u'cours', u'\xe0', u'des', u'enfants'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u',', u'je', u'voudrais', u'bien', u'continuer', u'un', u'petit', u'peu', u'mes', u'\xe9tudes'] +suite +[u'mais', u'pas', u'trop', u'longtemps', u',', u'je', u'ne', u'suis', u'pas', u'tr\xe8s', u'bon', u'\xe0', u'l', u'\xe9cole', u',', u'enfin', u'je', u'ne', u'sais', u'pas', u'trop', u'ce', u'que', u'je', u'vais', u'faire', u'au', u'niveau', u'professionnel', u',', u'parce_que', u'\xe0', u'l', u'\xe9cole', u'je', u'ne', u'suis', u'pas', u'bon', u'.', u'au', u'niveau', u'sentimental', u',', u'je', u'compte', u'd_abord', u'm', u'amuser', u'au', u'maximum', u',', u'bien', u'plus', u'tard', u'bien', u'plus', u'tard', u',', u'peut', u'\xeatre', u'je', u'vais', u'me', u'marier', u',', u'ou', u'vivre', u'en', u'concubin', u',', u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable', u'$'] +reste +True +texte_uce +[u'mais', u'pas', u'trop', u'longtemps', u',', u'je', u'ne', u'suis', u'pas', u'tr\xe8s', u'bon', u'\xe0', u'l', u'\xe9cole'] +suite +[u'enfin', u'je', u'ne', u'sais', u'pas', u'trop', u'ce', u'que', u'je', u'vais', u'faire', u'au', u'niveau', u'professionnel', u',', u'parce_que', u'\xe0', u'l', u'\xe9cole', u'je', u'ne', u'suis', u'pas', u'bon', u'.', u'au', u'niveau', u'sentimental', u',', u'je', u'compte', u'd_abord', u'm', u'amuser', u'au', u'maximum', u',', u'bien', u'plus', u'tard', u'bien', u'plus', u'tard', u',', u'peut', u'\xeatre', u'je', u'vais', u'me', u'marier', u',', u'ou', u'vivre', u'en', u'concubin', u',', u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable', u'$'] +reste +True +texte_uce +[u'enfin', u'je', u'ne', u'sais', u'pas', u'trop', u'ce', u'que', u'je', u'vais', u'faire', u'au', u'niveau', u'professionnel', u',', u'parce_que', u'\xe0', u'l', u'\xe9cole', u'je', u'ne', u'suis', u'pas', u'bon'] +suite +[u'au', u'niveau', u'sentimental', u',', u'je', u'compte', u'd_abord', u'm', u'amuser', u'au', u'maximum', u',', u'bien', u'plus', u'tard', u'bien', u'plus', u'tard', u',', u'peut', u'\xeatre', u'je', u'vais', u'me', u'marier', u',', u'ou', u'vivre', u'en', u'concubin', u',', u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable', u'$'] +reste +True +texte_uce +[u'au', u'niveau', u'sentimental', u',', u'je', u'compte', u'd_abord', u'm', u'amuser', u'au', u'maximum'] +suite +[u'bien', u'plus', u'tard', u'bien', u'plus', u'tard', u',', u'peut', u'\xeatre', u'je', u'vais', u'me', u'marier', u',', u'ou', u'vivre', u'en', u'concubin', u',', u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable', u'$'] +reste +True +texte_uce +[u'bien', u'plus', u'tard', u'bien', u'plus', u'tard', u',', u'peut', u'\xeatre', u'je', u'vais', u'me', u'marier'] +suite +[u'ou', u'vivre', u'en', u'concubin', u',', u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable', u'$'] +reste +True +texte_uce +[u'ou', u'vivre', u'en', u'concubin', u',', u'enfin', u'avoir', u'une', u'vie', u'un', u'peu', u'plus', u'stable'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u',', u'je', u'voudrais', u'bien', u'rentrer', u'en', u'seconde'] +suite +[u'et', u'puis', u'continuer', u'mes', u'\xe9tudes', u',', u'rentrer', u'\xe0', u'la', u'facult\xe9', u',', u'ou', u'bien', u'dans', u'une', u'formation', u'plus', u'technique', u',', u'enfin', u'le', u'minimum', u'c', u'est', u'd', u'avoir', u'mon', u'baccalaur\xe9at', u',', u'c', u'est', u'mon', u'premier', u'projet', u',', u'pour', u'le', u'choix', u'professionnel', u',', u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'et', u'puis', u'continuer', u'mes', u'\xe9tudes', u',', u'rentrer', u'\xe0', u'la', u'facult\xe9'] +suite +[u'ou', u'bien', u'dans', u'une', u'formation', u'plus', u'technique', u',', u'enfin', u'le', u'minimum', u'c', u'est', u'd', u'avoir', u'mon', u'baccalaur\xe9at', u',', u'c', u'est', u'mon', u'premier', u'projet', u',', u'pour', u'le', u'choix', u'professionnel', u',', u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'ou', u'bien', u'dans', u'une', u'formation', u'plus', u'technique'] +suite +[u'enfin', u'le', u'minimum', u'c', u'est', u'd', u'avoir', u'mon', u'baccalaur\xe9at', u',', u'c', u'est', u'mon', u'premier', u'projet', u',', u'pour', u'le', u'choix', u'professionnel', u',', u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'enfin', u'le', u'minimum', u'c', u'est', u'd', u'avoir', u'mon', u'baccalaur\xe9at'] +suite +[u'c', u'est', u'mon', u'premier', u'projet', u',', u'pour', u'le', u'choix', u'professionnel', u',', u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'c', u'est', u'mon', u'premier', u'projet', u',', u'pour', u'le', u'choix', u'professionnel'] +suite +[u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'j', u'ai', u'encore', u'du', u'temps', u'avant', u'de', u'me', u'd\xe9cider'] +suite +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair', u',', u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'je', u'suis', u'encore', u'jeune', u'pour', u'y', u'voir', u'bien', u'clair'] +suite +[u'je', u'pense', u'certainement', u'fonder', u'une', u'famille', u',', u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'je', u'pense', u'certainement', u'fonder', u'une', u'famille'] +suite +[u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier', u',', u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'mais', u'cela', u'ne', u'pourra', u'se', u'faire', u'qu', u'apr\xe8s', u'avoir', u'bien', u'travailler', u'au', u'niveau', u'du', u'm\xe9tier'] +suite +[u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas', u'.', u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'pas', u'avoir', u'un', u'gosse', u'sans', u'boulot', u'par', u'exemple', u',', u'\xe7a', u'\xe7a', u'serait', u'gal\xe8re', u',', u'je', u'n', u'y', u'pense', u'm\xeame', u'pas'] +suite +[u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune', u',', u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'je', u'pense', u'essayer', u'de', u'voyager', u'rien', u'que', u'pour', u'les', u'vacances', u'et', u'le', u'faire', u'tant', u'que', u'je', u'suis', u'jeune'] +suite +[u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile', u'$'] +reste +True +texte_uce +[u'avec', u'une', u'famille', u'\xe7a', u'devient', u'beaucoup', u'plus', u'difficile'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'l', u'ann\xe9e', u'prochaine', u',', u'je', u'compte', u'rentrer', u'au', u'lyc\xe9e', u'pour', u'pr\xe9parer', u'un', u'bac', u'technique'] +suite +[u'apr\xe8s', u'je', u'compte', u'faire', u'une', u'formation', u'technique', u',', u'mais', u'je', u'ne', u'sais', u'pas', u'encore', u'vraiment', u'ce', u'que', u'je', u'veux', u'faire', u',', u'je', u'suis', u'assez', u'bon', u'dans', u'la', u'm\xe9canique', u',', u'certainement', u'que', u'je', u'vais', u'essayer', u'de', u'travailler', u'de', u'ce', u'cot\xe9', u'$'] +reste +True +texte_uce +[u'apr\xe8s', u'je', u'compte', u'faire', u'une', u'formation', u'technique'] +suite +[u'mais', u'je', u'ne', u'sais', u'pas', u'encore', u'vraiment', u'ce', u'que', u'je', u'veux', u'faire', u',', u'je', u'suis', u'assez', u'bon', u'dans', u'la', u'm\xe9canique', u',', u'certainement', u'que', u'je', u'vais', u'essayer', u'de', u'travailler', u'de', u'ce', u'cot\xe9', u'$'] +reste +True +texte_uce +[u'mais', u'je', u'ne', u'sais', u'pas', u'encore', u'vraiment', u'ce', u'que', u'je', u'veux', u'faire'] +suite +[u'je', u'suis', u'assez', u'bon', u'dans', u'la', u'm\xe9canique', u',', u'certainement', u'que', u'je', u'vais', u'essayer', u'de', u'travailler', u'de', u'ce', u'cot\xe9', u'$'] +reste +True +texte_uce +[u'je', u'suis', u'assez', u'bon', u'dans', u'la', u'm\xe9canique', u',', u'certainement', u'que', u'je', u'vais', u'essayer', u'de', u'travailler', u'de', u'ce', u'cot\xe9'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'au', u'niveau', u'professionnel', u',', u'le', u'minimum', u'pour', u'l', u'instant', u'c', u'est', u'de', u'passer', u'mon', u'brevet'] +suite +[u'en', u'cas', u'de', u'r\xe9ussite', u',', u'et', u'je', u'pense', u'que', u'\xe7a', u'va', u'marcher', u',', u'continuer', u'au', u'lyc\xe9e', u'.', u'je', u'voudrais', u'bien', u'devenir', u'professeur', u'de', u'math\xe9matique', u'ou', u'de', u'gymnastique', u',', u'enfin', u'un', u'truc', u'dans', u'ce', u'style', u',', u'\xe7a', u'peut', u'\xeatre', u'moniteur', u'de', u'sport', u',', u'plut\xf4t', u'le', u'sport', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser', u',', u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille', u',', u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire', u'$'] +reste +True +texte_uce +[u'en', u'cas', u'de', u'r\xe9ussite', u',', u'et', u'je', u'pense', u'que', u'\xe7a', u'va', u'marcher', u',', u'continuer', u'au', u'lyc\xe9e'] +suite +[u'je', u'voudrais', u'bien', u'devenir', u'professeur', u'de', u'math\xe9matique', u'ou', u'de', u'gymnastique', u',', u'enfin', u'un', u'truc', u'dans', u'ce', u'style', u',', u'\xe7a', u'peut', u'\xeatre', u'moniteur', u'de', u'sport', u',', u'plut\xf4t', u'le', u'sport', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser', u',', u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille', u',', u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire', u'$'] +reste +True +texte_uce +[u'je', u'voudrais', u'bien', u'devenir', u'professeur', u'de', u'math\xe9matique', u'ou', u'de', u'gymnastique'] +suite +[u'enfin', u'un', u'truc', u'dans', u'ce', u'style', u',', u'\xe7a', u'peut', u'\xeatre', u'moniteur', u'de', u'sport', u',', u'plut\xf4t', u'le', u'sport', u'.', u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser', u',', u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille', u',', u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire', u'$'] +reste +True +texte_uce +[u'enfin', u'un', u'truc', u'dans', u'ce', u'style', u',', u'\xe7a', u'peut', u'\xeatre', u'moniteur', u'de', u'sport', u',', u'plut\xf4t', u'le', u'sport'] +suite +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser', u',', u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille', u',', u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire', u'$'] +reste +True +texte_uce +[u'niveau', u'sentimental', u',', u'je', u'crois', u'que', u'j', u'ai', u'encore', u'le', u'temps', u'd', u'y', u'penser'] +suite +[u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille', u',', u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire', u'$'] +reste +True +texte_uce +[u'je', u'voudrais', u'bien', u'fonder', u'une', u'famille'] +suite +[u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire', u'$'] +reste +True +texte_uce +[u'avoir', u'une', u'maison', u'et', u'pouvoir', u'partir', u'en', u'vacances', u',', u'c', u'est', u'le', u'minimum', u'qu', u'on', u'peut', u'vouloir', u',', u'apr\xe8s', u'\xe7a', u'tourne', u'au', u'd\xe9lire'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'veux', u'vivre', u'loin', u'de', u'la', u'ville', u'dans', u'une', u'\xeele', u'd\xe9serte'] +suite +[u'avec', u'de', u'super', u'appareils', u'de', u'musique', u',', u'et', u'une', u'image', u'grand', u'\xe9cran', u'en', u'direct', u'du', u'festival', u',', u'rien', u'que', u'musique', u'et', u'image', u',', u'je', u'veux', u'pas', u'm', u'inscrire', u'dans', u'la', u'profession', u'apr\xe8s', u't', u'as', u'envie', u'd', u'une', u'famille', u',', u'd', u'une', u'voiture', u',', u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de', u'ceci', u'ou', u'de', u'cela', u'.', u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets', u',', u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'avec', u'de', u'super', u'appareils', u'de', u'musique'] +suite +[u'et', u'une', u'image', u'grand', u'\xe9cran', u'en', u'direct', u'du', u'festival', u',', u'rien', u'que', u'musique', u'et', u'image', u',', u'je', u'veux', u'pas', u'm', u'inscrire', u'dans', u'la', u'profession', u'apr\xe8s', u't', u'as', u'envie', u'd', u'une', u'famille', u',', u'd', u'une', u'voiture', u',', u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de', u'ceci', u'ou', u'de', u'cela', u'.', u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets', u',', u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'et', u'une', u'image', u'grand', u'\xe9cran', u'en', u'direct', u'du', u'festival'] +suite +[u'rien', u'que', u'musique', u'et', u'image', u',', u'je', u'veux', u'pas', u'm', u'inscrire', u'dans', u'la', u'profession', u'apr\xe8s', u't', u'as', u'envie', u'd', u'une', u'famille', u',', u'd', u'une', u'voiture', u',', u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de', u'ceci', u'ou', u'de', u'cela', u'.', u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets', u',', u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'rien', u'que', u'musique', u'et', u'image'] +suite +[u'je', u'veux', u'pas', u'm', u'inscrire', u'dans', u'la', u'profession', u'apr\xe8s', u't', u'as', u'envie', u'd', u'une', u'famille', u',', u'd', u'une', u'voiture', u',', u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de', u'ceci', u'ou', u'de', u'cela', u'.', u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets', u',', u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'pas', u'm', u'inscrire', u'dans', u'la', u'profession', u'apr\xe8s', u't', u'as', u'envie', u'd', u'une', u'famille'] +suite +[u'd', u'une', u'voiture', u',', u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de', u'ceci', u'ou', u'de', u'cela', u'.', u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets', u',', u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'd', u'une', u'voiture', u',', u'et', u'puis', u'tu', u'arr\xeates', u'pas', u'd', u'avoir', u'envie', u'de', u'ceci', u'ou', u'de', u'cela'] +suite +[u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets', u',', u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'cot\xe9', u'sentimental', u'vraiment', u'pas', u'de', u'projets'] +suite +[u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon', u',', u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'vivre', u'sur', u'une', u'\xeele', u'd\xe9serte', u'avec', u'la', u'mer', u'en', u'face', u'et', u'surtout', u'pas', u'de', u'bateaux', u'\xe0', u'l', u'horizon'] +suite +[u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine', u'$'] +reste +True +texte_uce +[u'au', u'cas', u'o\xf9', u'quelques', u'jets', u'de', u'grenades', u'et', u'l', u'histoire', u'est', u'class\xe9e', u',', u'loin', u'du', u'trafic', u'polluant', u'des', u'm\xe9caniques', u'et', u'de', u'la', u'gente', u'humaine'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'l', u'intention', u'd', u'avoir', u'au', u'moins', u'des', u'enfants'] +suite +[u'mais', u'en', u'attendant', u',', u'je', u'veux', u'arriver', u'\xe0', u'une', u'profession', u'par', u'rapport', u'au', u'baccalaur\xe9at', u'technique', u'que', u'je', u'veux', u'passer', u',', u'en', u'premier', u',', u'une', u'bonne', u'situation', u',', u'et', u'apr\xe8s', u'fonder', u'une', u'famille', u',', u'\xe7a', u'il', u'me', u'faudra', u'bien', u'une', u'dizaine', u'd', u'ann\xe9es', u'.', u'ce', u'qui', u'est', u'difficile', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'c', u'est', u'pas', u'\xe9vident', u'.', u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre', u'avec', u'des', u'copines', u'et', u'm', u'amuser', u',', u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9', u',', u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'mais', u'en', u'attendant'] +suite +[u'je', u'veux', u'arriver', u'\xe0', u'une', u'profession', u'par', u'rapport', u'au', u'baccalaur\xe9at', u'technique', u'que', u'je', u'veux', u'passer', u',', u'en', u'premier', u',', u'une', u'bonne', u'situation', u',', u'et', u'apr\xe8s', u'fonder', u'une', u'famille', u',', u'\xe7a', u'il', u'me', u'faudra', u'bien', u'une', u'dizaine', u'd', u'ann\xe9es', u'.', u'ce', u'qui', u'est', u'difficile', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'c', u'est', u'pas', u'\xe9vident', u'.', u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre', u'avec', u'des', u'copines', u'et', u'm', u'amuser', u',', u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9', u',', u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'arriver', u'\xe0', u'une', u'profession', u'par', u'rapport', u'au', u'baccalaur\xe9at', u'technique', u'que', u'je', u'veux', u'passer'] +suite +[u'en', u'premier', u',', u'une', u'bonne', u'situation', u',', u'et', u'apr\xe8s', u'fonder', u'une', u'famille', u',', u'\xe7a', u'il', u'me', u'faudra', u'bien', u'une', u'dizaine', u'd', u'ann\xe9es', u'.', u'ce', u'qui', u'est', u'difficile', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'c', u'est', u'pas', u'\xe9vident', u'.', u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre', u'avec', u'des', u'copines', u'et', u'm', u'amuser', u',', u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9', u',', u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'en', u'premier', u',', u'une', u'bonne', u'situation', u',', u'et', u'apr\xe8s', u'fonder', u'une', u'famille', u',', u'\xe7a', u'il', u'me', u'faudra', u'bien', u'une', u'dizaine', u'd', u'ann\xe9es'] +suite +[u'ce', u'qui', u'est', u'difficile', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'c', u'est', u'pas', u'\xe9vident', u'.', u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre', u'avec', u'des', u'copines', u'et', u'm', u'amuser', u',', u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9', u',', u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'ce', u'qui', u'est', u'difficile', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'c', u'est', u'pas', u'\xe9vident'] +suite +[u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre', u'avec', u'des', u'copines', u'et', u'm', u'amuser', u',', u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9', u',', u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'sinon', u'je', u'veux', u'avant', u'de', u'me', u'marier', u'vivre', u'avec', u'des', u'copines', u'et', u'm', u'amuser'] +suite +[u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9', u',', u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'\xe7a', u'je', u'le', u'ferai', u'\xe0', u'la', u'majorit\xe9'] +suite +[u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re', u'.', u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'apr\xe8s', u'je', u'travaille', u'dans', u'mon', u'm\xe9tier', u',', u'apr\xe8s', u'je', u'me', u'marie', u'les', u'gosses', u'et', u'apr\xe8s', u'je', u'suis', u'grand_m\xe8re'] +suite +[u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'travailler', u'dans', u'le', u'social', u',', u'\xeatre', u'assistante', u'sociale', u',', u'ou', u'aide', u'm\xe9nag\xe8re', u',', u'ou', u'un', u'boulot', u'avec', u'des', u'gosses', u'de', u'toute', u'mani\xe8re'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'familiale', u',', u'je', u'pense', u'pas', u'que', u'je', u'vais', u'me', u'marier'] +suite +[u'mais', u'je', u'veux', u'tout', u'de', u'm\xeame', u'avoir', u'des', u'enfants', u'et', u'puis', u'vivre', u'avec', u'un', u'homme', u',', u'mais', u'je', u'veux', u'garder', u'mon', u'ind\xe9pendance', u',', u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'pense', u'\xe0', u'tout', u'\xe7a', u',', u'mais', u'd_abord', u'il', u'faut', u'penser', u'avoir', u'un', u'm\xe9tier', u'.', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'dessinatrice', u'de', u'mode', u',', u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode', u',', u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'mais', u'je', u'veux', u'tout', u'de', u'm\xeame', u'avoir', u'des', u'enfants', u'et', u'puis', u'vivre', u'avec', u'un', u'homme'] +suite +[u'mais', u'je', u'veux', u'garder', u'mon', u'ind\xe9pendance', u',', u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'pense', u'\xe0', u'tout', u'\xe7a', u',', u'mais', u'd_abord', u'il', u'faut', u'penser', u'avoir', u'un', u'm\xe9tier', u'.', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'dessinatrice', u'de', u'mode', u',', u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode', u',', u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'mais', u'je', u'veux', u'garder', u'mon', u'ind\xe9pendance'] +suite +[u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'pense', u'\xe0', u'tout', u'\xe7a', u',', u'mais', u'd_abord', u'il', u'faut', u'penser', u'avoir', u'un', u'm\xe9tier', u'.', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'dessinatrice', u'de', u'mode', u',', u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode', u',', u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'pense', u'\xe0', u'tout', u'\xe7a'] +suite +[u'mais', u'd_abord', u'il', u'faut', u'penser', u'avoir', u'un', u'm\xe9tier', u'.', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'dessinatrice', u'de', u'mode', u',', u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode', u',', u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'mais', u'd_abord', u'il', u'faut', u'penser', u'avoir', u'un', u'm\xe9tier'] +suite +[u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'dessinatrice', u'de', u'mode', u',', u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode', u',', u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'dessinatrice', u'de', u'mode'] +suite +[u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode', u',', u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'travailler', u'dans', u'la', u'conception', u'des', u'grands', u'noms', u'de', u'la', u'mode'] +suite +[u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement', u',', u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'j', u'aime', u'bien', u'imaginer', u'plein', u'de', u'v\xeatement'] +suite +[u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection', u',', u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'l', u'habit', u'c', u'est', u'mon', u'truc', u',', u'mais', u'pas', u'la', u'confection'] +suite +[u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup', u'.', u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'car', u'l\xe0', u'on', u'ne', u'peut', u'pas', u'imaginer', u'tout', u'ce', u'qu', u'on', u'veut', u',', u'mais', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'beaucoup'] +suite +[u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.', u'$'] +reste +True +texte_uce +[u'dans', u'notre', u'soci\xe9t\xe9', u'il', u'faut', u'que', u'\xe7a', u's', u'am\xe9liore', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'changer', u'la', u'p\xe9dagogie', u'des', u'professeurs', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'compte', u'surtout', u'avoir', u'mon', u'ind\xe9pendance'] +suite +[u'pour', u'\xe7a', u'il', u'y', u'a', u'pas', u'de', u'myst\xe8re', u',', u'il', u'faut', u'que', u'je', u'travaille', u'par', u'rapport', u'aux', u'\xe9tudes', u',', u'passer', u'mon', u'brevet', u',', u'ensuite', u'aller', u'jusqu_\xe0', u'la', u'terminale', u'et', u'pr\xe9parer', u'une', u'formation', u'technique', u',', u'je', u'pense', u'\xe0', u'l', u'informatique', u',', u'pour', u'\xe9viter', u'd', u'\xeatre', u'au', u'ch\xf4mage', u',', u'l', u'essentiel', u'pour', u'moi', u'\xe9tant', u'd', u'acqu\xe9rir', u'mon', u'ind\xe9pendance', u'mat\xe9rielle', u'.', u'niveau', u'sentimental', u',', u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation', u',', u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets', u'.', u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'pour', u'\xe7a', u'il', u'y', u'a', u'pas', u'de', u'myst\xe8re'] +suite +[u'il', u'faut', u'que', u'je', u'travaille', u'par', u'rapport', u'aux', u'\xe9tudes', u',', u'passer', u'mon', u'brevet', u',', u'ensuite', u'aller', u'jusqu_\xe0', u'la', u'terminale', u'et', u'pr\xe9parer', u'une', u'formation', u'technique', u',', u'je', u'pense', u'\xe0', u'l', u'informatique', u',', u'pour', u'\xe9viter', u'd', u'\xeatre', u'au', u'ch\xf4mage', u',', u'l', u'essentiel', u'pour', u'moi', u'\xe9tant', u'd', u'acqu\xe9rir', u'mon', u'ind\xe9pendance', u'mat\xe9rielle', u'.', u'niveau', u'sentimental', u',', u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation', u',', u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets', u'.', u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'il', u'faut', u'que', u'je', u'travaille', u'par', u'rapport', u'aux', u'\xe9tudes'] +suite +[u'passer', u'mon', u'brevet', u',', u'ensuite', u'aller', u'jusqu_\xe0', u'la', u'terminale', u'et', u'pr\xe9parer', u'une', u'formation', u'technique', u',', u'je', u'pense', u'\xe0', u'l', u'informatique', u',', u'pour', u'\xe9viter', u'd', u'\xeatre', u'au', u'ch\xf4mage', u',', u'l', u'essentiel', u'pour', u'moi', u'\xe9tant', u'd', u'acqu\xe9rir', u'mon', u'ind\xe9pendance', u'mat\xe9rielle', u'.', u'niveau', u'sentimental', u',', u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation', u',', u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets', u'.', u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'passer', u'mon', u'brevet', u',', u'ensuite', u'aller', u'jusqu_\xe0', u'la', u'terminale', u'et', u'pr\xe9parer', u'une', u'formation', u'technique'] +suite +[u'je', u'pense', u'\xe0', u'l', u'informatique', u',', u'pour', u'\xe9viter', u'd', u'\xeatre', u'au', u'ch\xf4mage', u',', u'l', u'essentiel', u'pour', u'moi', u'\xe9tant', u'd', u'acqu\xe9rir', u'mon', u'ind\xe9pendance', u'mat\xe9rielle', u'.', u'niveau', u'sentimental', u',', u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation', u',', u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets', u'.', u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'je', u'pense', u'\xe0', u'l', u'informatique', u',', u'pour', u'\xe9viter', u'd', u'\xeatre', u'au', u'ch\xf4mage', u',', u'l', u'essentiel', u'pour', u'moi', u'\xe9tant', u'd', u'acqu\xe9rir', u'mon', u'ind\xe9pendance', u'mat\xe9rielle'] +suite +[u'niveau', u'sentimental', u',', u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation', u',', u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets', u'.', u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'niveau', u'sentimental', u',', u'surtout', u'pas', u'de', u'famille', u'avant', u'd', u'avoir', u'ma', u'situation'] +suite +[u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets', u'.', u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'sinon', u'vivre', u'avec', u'un', u'homme', u',', u'il', u'peut', u'ne', u'pas', u'd\xe9ranger', u'mes', u'projets'] +suite +[u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes', u',', u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'pour', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'dans', u'les', u'\xe9tudes'] +suite +[u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde', u',', u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'le', u'probl\xe8me', u',', u'c', u'est', u'que', u'les', u'\xe9tudes', u'ne', u'nous', u'aident', u'pas', u'trop', u'\xe0', u'comprendre', u'le', u'monde'] +suite +[u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.', u'$'] +reste +True +texte_uce +[u'mais', u'il', u'y', u'a', u'peut_\xeatre', u'rien', u'\xe0', u'y', u'comprendre', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'moi', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants'] +suite +[u'je', u'compte', u'me', u'consacrer', u'enti\xe8rement', u'\xe0', u'ma', u'famille', u',', u'\xe0', u'mes', u'enfants', u'et', u'\xe0', u'mon', u'mari', u',', u'je', u'veux', u'pouvoir', u'l', u'aider', u'dans', u'son', u'travail', u',', u'travailler', u'avec', u'lui', u',', u'et', u'l', u'aider', u'dans', u'son', u'travail', u'pour', u'qu', u'il', u'ait', u'plus', u'de', u'temps', u'pour', u'sa', u'famille', u',', u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie', u',', u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants', u',', u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'je', u'compte', u'me', u'consacrer', u'enti\xe8rement', u'\xe0', u'ma', u'famille'] +suite +[u'\xe0', u'mes', u'enfants', u'et', u'\xe0', u'mon', u'mari', u',', u'je', u'veux', u'pouvoir', u'l', u'aider', u'dans', u'son', u'travail', u',', u'travailler', u'avec', u'lui', u',', u'et', u'l', u'aider', u'dans', u'son', u'travail', u'pour', u'qu', u'il', u'ait', u'plus', u'de', u'temps', u'pour', u'sa', u'famille', u',', u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie', u',', u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants', u',', u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'\xe0', u'mes', u'enfants', u'et', u'\xe0', u'mon', u'mari'] +suite +[u'je', u'veux', u'pouvoir', u'l', u'aider', u'dans', u'son', u'travail', u',', u'travailler', u'avec', u'lui', u',', u'et', u'l', u'aider', u'dans', u'son', u'travail', u'pour', u'qu', u'il', u'ait', u'plus', u'de', u'temps', u'pour', u'sa', u'famille', u',', u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie', u',', u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants', u',', u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'pouvoir', u'l', u'aider', u'dans', u'son', u'travail', u',', u'travailler', u'avec', u'lui'] +suite +[u'et', u'l', u'aider', u'dans', u'son', u'travail', u'pour', u'qu', u'il', u'ait', u'plus', u'de', u'temps', u'pour', u'sa', u'famille', u',', u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie', u',', u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants', u',', u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'et', u'l', u'aider', u'dans', u'son', u'travail', u'pour', u'qu', u'il', u'ait', u'plus', u'de', u'temps', u'pour', u'sa', u'famille'] +suite +[u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie', u',', u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants', u',', u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'en', u'attendant', u'de', u'rencontrer', u'l', u'homme', u'de', u'ma', u'vie'] +suite +[u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants', u',', u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'je', u'pr\xe9parerai', u'un', u'm\xe9tier', u',', u'qui', u'me', u'permettra', u'de', u'travailler', u'avec', u'des', u'enfants'] +suite +[u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait', u',', u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'travailler', u'dans', u'une', u'cr\xe8che', u',', u'\xe7a', u'me', u'plairait'] +suite +[u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes', u',', u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'je', u'sais', u'pas', u'trop', u'ce', u'qu', u'il', u'faut', u'que', u'je', u'fasse', u'comme', u'\xe9tudes'] +suite +[u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi', u',', u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'de', u'toute', u'mani\xe8re', u',', u'j', u'aime', u'les', u'enfants', u'et', u'c', u'est', u'd\xe9j\xe0', u'un', u'bon', u'point', u'pour', u'moi'] +suite +[u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison', u',', u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'j', u'esp\xe8re', u'avoir', u'une', u'grande', u'maison'] +suite +[u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants', u',', u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'et', u'payer', u'tout', u'ce', u'que', u'je', u'veux', u'\xe0', u'mes', u'enfants'] +suite +[u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.', u'$'] +reste +True +texte_uce +[u'j', u'esp\xe8re', u'qu', u'on', u'pourra', u'voyager', u',', u'mais', u'l', u'essentiel', u'c', u'est', u'de', u'fonder', u'une', u'famille', u'solide', u',', u'surtout', u'si', u'on', u'veut', u'des', u'enfants', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u',', u'je', u'compte', u'devenir', u'officier', u'de', u'la', u'paix'] +suite +[u'j', u'aurais', u'voulu', u'devenir', u'sportif', u',', u'plus', u'particuli\xe8rement', u'dans', u'le', u'football', u',', u'mais', u'devenir', u'flic', u',', u'c', u'est', u'plus', u'passionnant', u'.', u'dans', u'cinq', u'ans', u',', u'je', u'compte', u'me', u'marier', u'avec', u'une', u'femme', u'brune', u'qui', u'aura', u'de', u'beaux', u'yeux', u',', u'il', u'faudra', u'qu', u'elle', u'soit', u'intelligente', u'et', u'belle', u'physiquement', u',', u'et', u'mignonne', u'de', u't\xeate', u',', u'avec', u'ma', u'femme', u'je', u'pense', u'avoir', u'des', u'enfants', u',', u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able', u',', u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille', u'.', u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix', u'$'] +reste +True +texte_uce +[u'j', u'aurais', u'voulu', u'devenir', u'sportif', u',', u'plus', u'particuli\xe8rement', u'dans', u'le', u'football', u',', u'mais', u'devenir', u'flic', u',', u'c', u'est', u'plus', u'passionnant'] +suite +[u'dans', u'cinq', u'ans', u',', u'je', u'compte', u'me', u'marier', u'avec', u'une', u'femme', u'brune', u'qui', u'aura', u'de', u'beaux', u'yeux', u',', u'il', u'faudra', u'qu', u'elle', u'soit', u'intelligente', u'et', u'belle', u'physiquement', u',', u'et', u'mignonne', u'de', u't\xeate', u',', u'avec', u'ma', u'femme', u'je', u'pense', u'avoir', u'des', u'enfants', u',', u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able', u',', u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille', u'.', u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix', u'$'] +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u',', u'je', u'compte', u'me', u'marier', u'avec', u'une', u'femme', u'brune', u'qui', u'aura', u'de', u'beaux', u'yeux'] +suite +[u'il', u'faudra', u'qu', u'elle', u'soit', u'intelligente', u'et', u'belle', u'physiquement', u',', u'et', u'mignonne', u'de', u't\xeate', u',', u'avec', u'ma', u'femme', u'je', u'pense', u'avoir', u'des', u'enfants', u',', u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able', u',', u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille', u'.', u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix', u'$'] +reste +True +texte_uce +[u'il', u'faudra', u'qu', u'elle', u'soit', u'intelligente', u'et', u'belle', u'physiquement'] +suite +[u'et', u'mignonne', u'de', u't\xeate', u',', u'avec', u'ma', u'femme', u'je', u'pense', u'avoir', u'des', u'enfants', u',', u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able', u',', u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille', u'.', u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix', u'$'] +reste +True +texte_uce +[u'et', u'mignonne', u'de', u't\xeate', u',', u'avec', u'ma', u'femme', u'je', u'pense', u'avoir', u'des', u'enfants'] +suite +[u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able', u',', u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille', u'.', u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix', u'$'] +reste +True +texte_uce +[u'deux', u'enfants', u'et', u'mener', u'une', u'vie', u'agr\xe9able', u',', u'offrir', u'tout', u'ce', u'que', u'veut', u'ma', u'femme', u',', u'et', u'aussi', u'\xe0', u'toute', u'la', u'famille'] +suite +[u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix', u'$'] +reste +True +texte_uce +[u'je', u'tiens', u'en', u'\xe9tant', u'flic', u'garder', u'la', u'soci\xe9t\xe9', u'dans', u'la', u'paix'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'travail', u',', u'le', u'faire', u'pendant', u'deux', u'ans'] +suite +[u'puis', u'avoir', u'un', u'accident', u'du', u'travail', u'pour', u'toucher', u'de', u'l', u'argent', u'tranquillement', u'.', u'je', u'veux', u'me', u'marier', u'cinq', u'fois', u',', u'avoir', u'une', u'maison', u'secondaire', u'une', u'masse', u'de', u'voitures', u',', u'rentrer', u'dans', u'la', u'politique', u'pour', u'dormir', u',', u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes', u',', u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail', u',', u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne', u'$'] +reste +True +texte_uce +[u'puis', u'avoir', u'un', u'accident', u'du', u'travail', u'pour', u'toucher', u'de', u'l', u'argent', u'tranquillement'] +suite +[u'je', u'veux', u'me', u'marier', u'cinq', u'fois', u',', u'avoir', u'une', u'maison', u'secondaire', u'une', u'masse', u'de', u'voitures', u',', u'rentrer', u'dans', u'la', u'politique', u'pour', u'dormir', u',', u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes', u',', u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail', u',', u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'cinq', u'fois'] +suite +[u'avoir', u'une', u'maison', u'secondaire', u'une', u'masse', u'de', u'voitures', u',', u'rentrer', u'dans', u'la', u'politique', u'pour', u'dormir', u',', u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes', u',', u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail', u',', u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne', u'$'] +reste +True +texte_uce +[u'avoir', u'une', u'maison', u'secondaire', u'une', u'masse', u'de', u'voitures'] +suite +[u'rentrer', u'dans', u'la', u'politique', u'pour', u'dormir', u',', u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes', u',', u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail', u',', u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne', u'$'] +reste +True +texte_uce +[u'rentrer', u'dans', u'la', u'politique', u'pour', u'dormir'] +suite +[u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes', u',', u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail', u',', u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne', u'$'] +reste +True +texte_uce +[u'avoir', u'un', u'\xe9norme', u'lit', u'pour', u'dormir', u'avec', u'plein', u'de', u'femmes'] +suite +[u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail', u',', u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne', u'$'] +reste +True +texte_uce +[u'et', u'des', u'femmes', u'de', u'chambre', u'pour', u'faire', u'tout', u'le', u'travail'] +suite +[u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne', u'$'] +reste +True +texte_uce +[u'tuer', u'les', u'personnes', u'qui', u'm', u'agacent', u'et', u'mourir', u'vieux', u'sans', u'donner', u'd', u'argent', u'\xe0', u'personne'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'avec', u'une', u'jolie', u'femme', u'qui', u'soit', u'aimable'] +suite +[u'faire', u'du', u'sport', u'de', u'temps', u'en', u'temps', u',', u'je', u'veux', u'faire', u'professeur', u'de', u'math\xe9matiques', u',', u'quelque', u'chose', u'qui', u'se', u'rapproche', u'de', u'cela', u',', u'avoir', u'de', u'bonnes', u'relations', u'avec', u'mes', u'parents', u',', u'rester', u'avec', u'eux', u'le', u'plus', u'de', u'temps', u'possible', u'.', u'il', u'faut', u'que', u'les', u'jeunes', u'puissent', u'plus', u's', u'exprimer', u'$'] +reste +True +texte_uce +[u'faire', u'du', u'sport', u'de', u'temps', u'en', u'temps'] +suite +[u'je', u'veux', u'faire', u'professeur', u'de', u'math\xe9matiques', u',', u'quelque', u'chose', u'qui', u'se', u'rapproche', u'de', u'cela', u',', u'avoir', u'de', u'bonnes', u'relations', u'avec', u'mes', u'parents', u',', u'rester', u'avec', u'eux', u'le', u'plus', u'de', u'temps', u'possible', u'.', u'il', u'faut', u'que', u'les', u'jeunes', u'puissent', u'plus', u's', u'exprimer', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'faire', u'professeur', u'de', u'math\xe9matiques', u',', u'quelque', u'chose', u'qui', u'se', u'rapproche', u'de', u'cela'] +suite +[u'avoir', u'de', u'bonnes', u'relations', u'avec', u'mes', u'parents', u',', u'rester', u'avec', u'eux', u'le', u'plus', u'de', u'temps', u'possible', u'.', u'il', u'faut', u'que', u'les', u'jeunes', u'puissent', u'plus', u's', u'exprimer', u'$'] +reste +True +texte_uce +[u'avoir', u'de', u'bonnes', u'relations', u'avec', u'mes', u'parents', u',', u'rester', u'avec', u'eux', u'le', u'plus', u'de', u'temps', u'possible'] +suite +[u'il', u'faut', u'que', u'les', u'jeunes', u'puissent', u'plus', u's', u'exprimer', u'$'] +reste +True +texte_uce +[u'il', u'faut', u'que', u'les', u'jeunes', u'puissent', u'plus', u's', u'exprimer'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'faire', u'des', u'voyages', u',', u'voir', u'beaucoup', u'de', u'monde'] +suite +[u'faire', u'des', u'choses', u'uniques', u'dans', u'tous', u'les', u'domaines', u',', u'ne', u'pas', u'faire', u'comme', u'tout', u'le', u'monde', u',', u'laisser', u'quelque', u'chose', u'derri\xe8re', u'moi', u',', u'j', u'aimerais', u'faire', u'un', u'm\xe9tier', u'qui', u'serve', u'\xe0', u'quelque', u'chose', u',', u'certains', u'de', u'mes', u'projets', u'sont', u'r\xe9alisables', u'maintenant', u',', u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin', u',', u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent', u',', u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.', u'$'] +reste +True +texte_uce +[u'faire', u'des', u'choses', u'uniques', u'dans', u'tous', u'les', u'domaines'] +suite +[u'ne', u'pas', u'faire', u'comme', u'tout', u'le', u'monde', u',', u'laisser', u'quelque', u'chose', u'derri\xe8re', u'moi', u',', u'j', u'aimerais', u'faire', u'un', u'm\xe9tier', u'qui', u'serve', u'\xe0', u'quelque', u'chose', u',', u'certains', u'de', u'mes', u'projets', u'sont', u'r\xe9alisables', u'maintenant', u',', u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin', u',', u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent', u',', u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.', u'$'] +reste +True +texte_uce +[u'ne', u'pas', u'faire', u'comme', u'tout', u'le', u'monde', u',', u'laisser', u'quelque', u'chose', u'derri\xe8re', u'moi'] +suite +[u'j', u'aimerais', u'faire', u'un', u'm\xe9tier', u'qui', u'serve', u'\xe0', u'quelque', u'chose', u',', u'certains', u'de', u'mes', u'projets', u'sont', u'r\xe9alisables', u'maintenant', u',', u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin', u',', u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent', u',', u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.', u'$'] +reste +True +texte_uce +[u'j', u'aimerais', u'faire', u'un', u'm\xe9tier', u'qui', u'serve', u'\xe0', u'quelque', u'chose'] +suite +[u'certains', u'de', u'mes', u'projets', u'sont', u'r\xe9alisables', u'maintenant', u',', u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin', u',', u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent', u',', u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.', u'$'] +reste +True +texte_uce +[u'certains', u'de', u'mes', u'projets', u'sont', u'r\xe9alisables', u'maintenant'] +suite +[u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin', u',', u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent', u',', u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.', u'$'] +reste +True +texte_uce +[u'ne', u'pas', u'rester', u'toute', u'ma', u'vie', u'dans', u'une', u'cage', u'\xe0', u'lapin'] +suite +[u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent', u',', u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.', u'$'] +reste +True +texte_uce +[u'ne', u'pas', u'\xeatre', u'un', u'mouton', u'qui', u'se', u'fasse', u'exploiter', u'uniquement', u'pour', u'les', u'autres', u'\xeatre', u'libre', u'm\xeame', u'si', u'je', u'ne', u'gagne', u'pas', u'beaucoup', u'd', u'argent'] +suite +[u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.', u'$'] +reste +True +texte_uce +[u'ne', u'pas', u'\xeatre', u'comme', u'les', u'autres', u',', u'ne', u'jamais', u'vieillir', u'dans', u'ma', u't\xeate', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'tout', u'd_abord', u'avoir', u'une', u'bonne', u'situation', u'professionnel', u'et', u'stable'] +suite +[u'je', u'voudrais', u'aussi', u'vivre', u'avec', u'ma', u'm\xe8re', u',', u'car', u'mes', u'parents', u'sont', u'divorc\xe9s', u',', u'et', u'je', u'vis', u'avec', u'mon', u'p\xe8re', u',', u'j', u'aimerais', u'faire', u'un', u'travail', u'avec', u'des', u'jeunes', u'enfants', u',', u'dans', u'ma', u'vie', u'sentimentale', u',', u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas', u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage', u',', u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable', u',', u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge', u'$'] +reste +True +texte_uce +[u'je', u'voudrais', u'aussi', u'vivre', u'avec', u'ma', u'm\xe8re', u',', u'car', u'mes', u'parents', u'sont', u'divorc\xe9s'] +suite +[u'et', u'je', u'vis', u'avec', u'mon', u'p\xe8re', u',', u'j', u'aimerais', u'faire', u'un', u'travail', u'avec', u'des', u'jeunes', u'enfants', u',', u'dans', u'ma', u'vie', u'sentimentale', u',', u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas', u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage', u',', u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable', u',', u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge', u'$'] +reste +True +texte_uce +[u'et', u'je', u'vis', u'avec', u'mon', u'p\xe8re'] +suite +[u'j', u'aimerais', u'faire', u'un', u'travail', u'avec', u'des', u'jeunes', u'enfants', u',', u'dans', u'ma', u'vie', u'sentimentale', u',', u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas', u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage', u',', u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable', u',', u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge', u'$'] +reste +True +texte_uce +[u'j', u'aimerais', u'faire', u'un', u'travail', u'avec', u'des', u'jeunes', u'enfants'] +suite +[u'dans', u'ma', u'vie', u'sentimentale', u',', u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas', u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage', u',', u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable', u',', u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge', u'$'] +reste +True +texte_uce +[u'dans', u'ma', u'vie', u'sentimentale'] +suite +[u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas', u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage', u',', u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable', u',', u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge', u'$'] +reste +True +texte_uce +[u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'du', u'moins', u'pas', u'jeune', u'je', u'pr\xe9f\xe8re', u'vivre', u'en', u'concubinage'] +suite +[u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable', u',', u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'aussi', u'\xeatre', u'v\xe9t\xe9rinaire', u'mais', u'les', u'\xe9tudes', u'sont', u'trop', u'difficiles', u'et', u'je', u'ne', u'm', u'en', u's', u'en', u'pas', u'capable'] +suite +[u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge', u'$'] +reste +True +texte_uce +[u'les', u'adolescents', u'peuvent', u'avoir', u'des', u'projets', u'\xe0', u'n', u'importe', u'quel', u'\xe2ge'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'rester', u'c\xe9libataire', u'et', u'vivre', u'en', u'concubinage'] +suite +[u'je', u'ne', u'veux', u'pas', u'd', u'enfants', u'car', u'pour', u'moi', u'c', u'est', u'une', u'contrainte', u',', u'je', u'veux', u'au', u'niveau', u'professionnel', u'devenir', u'kin\xe9sith\xe9rapeute', u',', u'car', u'c', u'est', u'un', u'milieu', u'o\xf9', u'on', u'a', u'le', u'contact', u'avec', u'le', u'milieu', u'sportif', u',', u'je', u'veux', u'me', u'rendre', u'utile', u',', u'c', u'est', u'un', u'm\xe9tier', u'difficile', u'\xe0', u'acqu\xe9rir', u',', u'il', u'faut', u'\xeatre', u'solide', u',', u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame', u',', u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football', u',', u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'je', u'ne', u'veux', u'pas', u'd', u'enfants', u'car', u'pour', u'moi', u'c', u'est', u'une', u'contrainte'] +suite +[u'je', u'veux', u'au', u'niveau', u'professionnel', u'devenir', u'kin\xe9sith\xe9rapeute', u',', u'car', u'c', u'est', u'un', u'milieu', u'o\xf9', u'on', u'a', u'le', u'contact', u'avec', u'le', u'milieu', u'sportif', u',', u'je', u'veux', u'me', u'rendre', u'utile', u',', u'c', u'est', u'un', u'm\xe9tier', u'difficile', u'\xe0', u'acqu\xe9rir', u',', u'il', u'faut', u'\xeatre', u'solide', u',', u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame', u',', u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football', u',', u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'au', u'niveau', u'professionnel', u'devenir', u'kin\xe9sith\xe9rapeute'] +suite +[u'car', u'c', u'est', u'un', u'milieu', u'o\xf9', u'on', u'a', u'le', u'contact', u'avec', u'le', u'milieu', u'sportif', u',', u'je', u'veux', u'me', u'rendre', u'utile', u',', u'c', u'est', u'un', u'm\xe9tier', u'difficile', u'\xe0', u'acqu\xe9rir', u',', u'il', u'faut', u'\xeatre', u'solide', u',', u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame', u',', u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football', u',', u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'car', u'c', u'est', u'un', u'milieu', u'o\xf9', u'on', u'a', u'le', u'contact', u'avec', u'le', u'milieu', u'sportif'] +suite +[u'je', u'veux', u'me', u'rendre', u'utile', u',', u'c', u'est', u'un', u'm\xe9tier', u'difficile', u'\xe0', u'acqu\xe9rir', u',', u'il', u'faut', u'\xeatre', u'solide', u',', u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame', u',', u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football', u',', u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'rendre', u'utile', u',', u'c', u'est', u'un', u'm\xe9tier', u'difficile', u'\xe0', u'acqu\xe9rir'] +suite +[u'il', u'faut', u'\xeatre', u'solide', u',', u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame', u',', u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football', u',', u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'il', u'faut', u'\xeatre', u'solide', u',', u'car', u'il', u'faut', u'\xeatre', u'capable', u'de', u's', u'organiser', u'soi', u'm\xeame'] +suite +[u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football', u',', u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'sinon', u'si', u'\xe7a', u'va', u'pas', u'je', u'peux', u'devenir', u'journaliste', u'sportive', u'surtout', u'pour', u'le', u'football'] +suite +[u'je', u'veux', u'informer', u',', u'\xeatre', u'utile', u',', u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'informer', u',', u'\xeatre', u'utile'] +suite +[u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur', u',', u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'ne', u'pas', u'\xeatre', u'fonctionnaire', u'derri\xe8re', u'un', u'bureau', u'\xe0', u'remplir', u'des', u'papiers', u'et', u'\xe0', u'\xeatre', u'commande', u'par', u'un', u'sup\xe9rieur'] +suite +[u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo', u'$'] +reste +True +texte_uce +[u'je', u'ne', u'veux', u'pas', u'd', u'une', u'vie', u'monotone', u',', u'm\xe9tro', u'boulot', u'dodo'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'est', u'pas', u'de', u'projet', u'de', u'vie'] +suite +[u'je', u'verrai', u'bien', u'ce', u'que', u'me', u'r\xe9serve', u'le', u'cours', u'de', u'la', u'vie', u',', u'avant', u'de', u'penser', u'\xe0', u'tout', u'cela', u',', u'il', u'faut', u'que', u'je', u'profite', u'de', u'la', u'vie', u'$'] +reste +True +texte_uce +[u'je', u'verrai', u'bien', u'ce', u'que', u'me', u'r\xe9serve', u'le', u'cours', u'de', u'la', u'vie'] +suite +[u'avant', u'de', u'penser', u'\xe0', u'tout', u'cela', u',', u'il', u'faut', u'que', u'je', u'profite', u'de', u'la', u'vie', u'$'] +reste +True +texte_uce +[u'avant', u'de', u'penser', u'\xe0', u'tout', u'cela', u',', u'il', u'faut', u'que', u'je', u'profite', u'de', u'la', u'vie'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'passer', u'mon', u'bac', u'et', u'r\xe9ussir', u'dans', u'le', u'domaine', u'artistique'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'vais', u'essayer', u'd', u'avoir', u'mon', u'brevet'] +suite +[u'apr\xe8s', u'je', u'passe', u'le', u'concours', u'de', u'la', u'gendarmerie', u',', u'et', u'le', u'concours', u'\xe0', u'l', u'arm\xe9e', u',', u'je', u'veux', u'r\xe9ussir', u'dans', u'le', u'domaine', u'sportif', u'.', u'$'] +reste +True +texte_uce +[u'apr\xe8s', u'je', u'passe', u'le', u'concours', u'de', u'la', u'gendarmerie', u',', u'et', u'le', u'concours', u'\xe0', u'l', u'arm\xe9e', u',', u'je', u'veux', u'r\xe9ussir', u'dans', u'le', u'domaine', u'sportif', u'.'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'devenir', u'v\xe9t\xe9rinaire', u',', u'j', u'y', u'pense', u'depuis', u'six', u'ans'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'sur', u'le', u'plan', u'familial', u',', u'je', u'veux', u'rester', u'c\xe9libataire', u'le', u'plus', u'longtemps', u'possible'] +suite +[u'\xe9ventuellement', u'avoir', u'des', u'enfants', u'mais', u'dans', u'vingt', u'ans', u',', u'je', u'veux', u'avoir', u'un', u'boulot', u'int\xe9ressant', u',', u'pratiquer', u'un', u'sport', u'r\xe9guli\xe8rement', u',', u'je', u'n', u'ai', u'jamais', u'eu', u'l', u'intention', u'd', u'avoir', u'des', u'enfants', u',', u'et', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'de', u'ne', u'pas', u'me', u'marier', u',', u'je', u'veux', u'avoir', u'de', u'l', u'argent', u'$'] +reste +True +texte_uce +[u'\xe9ventuellement', u'avoir', u'des', u'enfants', u'mais', u'dans', u'vingt', u'ans'] +suite +[u'je', u'veux', u'avoir', u'un', u'boulot', u'int\xe9ressant', u',', u'pratiquer', u'un', u'sport', u'r\xe9guli\xe8rement', u',', u'je', u'n', u'ai', u'jamais', u'eu', u'l', u'intention', u'd', u'avoir', u'des', u'enfants', u',', u'et', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'de', u'ne', u'pas', u'me', u'marier', u',', u'je', u'veux', u'avoir', u'de', u'l', u'argent', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'un', u'boulot', u'int\xe9ressant', u',', u'pratiquer', u'un', u'sport', u'r\xe9guli\xe8rement'] +suite +[u'je', u'n', u'ai', u'jamais', u'eu', u'l', u'intention', u'd', u'avoir', u'des', u'enfants', u',', u'et', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'de', u'ne', u'pas', u'me', u'marier', u',', u'je', u'veux', u'avoir', u'de', u'l', u'argent', u'$'] +reste +True +texte_uce +[u'je', u'n', u'ai', u'jamais', u'eu', u'l', u'intention', u'd', u'avoir', u'des', u'enfants'] +suite +[u'et', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'de', u'ne', u'pas', u'me', u'marier', u',', u'je', u'veux', u'avoir', u'de', u'l', u'argent', u'$'] +reste +True +texte_uce +[u'et', u'\xe7a', u'fait', u'deux', u'ans', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'de', u'ne', u'pas', u'me', u'marier', u',', u'je', u'veux', u'avoir', u'de', u'l', u'argent'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'quand', u'j', u'aurai', u'trouver', u'l', u'homme', u'id\xe9al'] +suite +[u'je', u'veux', u'me', u'marier', u'avoir', u'des', u'enfants', u'et', u'une', u'belle', u'maison', u',', u'je', u'voudrais', u'travailler', u'dans', u'le', u'professionnel', u'de', u'la', u'publicit\xe9', u',', u'le', u'dessin', u',', u'mais', u'je', u'n', u'ai', u'pas', u'de', u'bons', u'r\xe9sultats', u',', u'depuis', u'que', u'je', u'suis', u'petite', u'je', u'r\xeave', u'd', u'avoir', u'une', u'voiture', u'et', u'une', u'belle', u'maison', u',', u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait', u'travailler', u'pour', u'cela', u',', u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9', u',', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'avoir', u'des', u'enfants', u'et', u'une', u'belle', u'maison'] +suite +[u'je', u'voudrais', u'travailler', u'dans', u'le', u'professionnel', u'de', u'la', u'publicit\xe9', u',', u'le', u'dessin', u',', u'mais', u'je', u'n', u'ai', u'pas', u'de', u'bons', u'r\xe9sultats', u',', u'depuis', u'que', u'je', u'suis', u'petite', u'je', u'r\xeave', u'd', u'avoir', u'une', u'voiture', u'et', u'une', u'belle', u'maison', u',', u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait', u'travailler', u'pour', u'cela', u',', u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9', u',', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'je', u'voudrais', u'travailler', u'dans', u'le', u'professionnel', u'de', u'la', u'publicit\xe9'] +suite +[u'le', u'dessin', u',', u'mais', u'je', u'n', u'ai', u'pas', u'de', u'bons', u'r\xe9sultats', u',', u'depuis', u'que', u'je', u'suis', u'petite', u'je', u'r\xeave', u'd', u'avoir', u'une', u'voiture', u'et', u'une', u'belle', u'maison', u',', u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait', u'travailler', u'pour', u'cela', u',', u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9', u',', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'le', u'dessin', u',', u'mais', u'je', u'n', u'ai', u'pas', u'de', u'bons', u'r\xe9sultats'] +suite +[u'depuis', u'que', u'je', u'suis', u'petite', u'je', u'r\xeave', u'd', u'avoir', u'une', u'voiture', u'et', u'une', u'belle', u'maison', u',', u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait', u'travailler', u'pour', u'cela', u',', u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9', u',', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'depuis', u'que', u'je', u'suis', u'petite', u'je', u'r\xeave', u'd', u'avoir', u'une', u'voiture', u'et', u'une', u'belle', u'maison'] +suite +[u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait', u'travailler', u'pour', u'cela', u',', u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9', u',', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'mais', u'je', u'ne', u'savais', u'pas', u'qu', u'il', u'fallait', u'travailler', u'pour', u'cela'] +suite +[u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9', u',', u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'maintenant', u'j', u'esp\xe8re', u'r\xe9aliser', u'mon', u'r\xeave', u'en', u'travaillant', u'et', u'en', u'mettant', u'de', u'l', u'argent', u'de', u'cot\xe9'] +suite +[u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans', u',', u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'et', u'avoir', u'des', u'enfants', u'dans', u'dix', u'ans', u'commencer', u'ma', u'carri\xe8re', u'dans', u'cinq', u'ans'] +suite +[u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re', u';', u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'avoir', u'un', u'appartement', u'avec', u'des', u'copines', u'et', u'apr\xe8s', u'acheter', u'une', u'maison', u',', u'je', u'veux', u'aussi', u'\xeatre', u'grand_m\xe8re'] +suite +[u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance', u'$'] +reste +True +texte_uce +[u'pour', u'que', u'les', u'jeunes', u'r\xe9alisent', u'leurs', u'projets', u',', u'il', u'faut', u'que', u'les', u'parents', u'leur', u'fasse', u'confiance'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'passer', u'mon', u'baccalaur\xe9at', u'avoir', u'un', u'bon', u'm\xe9tier', u',', u'continuer', u'le', u'patinage', u',', u'vivre', u'heureuse', u',', u'\xeatre', u'heureuse', u',', u'tout', u'\xe7a', u'dans', u'une', u'dizaine', u'd', u'ann\xe9es'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'passer', u'un', u'bon', u'brevet', u',', u'pas', u'de', u'diff\xe9rence', u'entre', u'le', u'beau', u'et', u'le', u'laid'] +suite +[u'pas', u'de', u'diff\xe9rence', u'entre', u'les', u'filles', u'et', u'les', u'gar\xe7ons', u'et', u'que', u'les', u'gens', u'ne', u'jugent', u'pas', u',', u'je', u'ne', u'sais', u'pas', u'je', u'voudrais', u'qu', u'il', u'n', u'y', u'ait', u'pas', u'de', u'guerre', u'et', u'que', u'des', u'enfants', u'meurent', u'\xe0', u'cause', u'de', u'la', u'connerie', u'des', u'adultes', u',', u'ils', u'd\xe9truisent', u'l', u'avenir', u'des', u'enfants', u'innocents', u'qui', u'se', u'font', u'tuer', u'$'] +reste +True +texte_uce +[u'pas', u'de', u'diff\xe9rence', u'entre', u'les', u'filles', u'et', u'les', u'gar\xe7ons', u'et', u'que', u'les', u'gens', u'ne', u'jugent', u'pas'] +suite +[u'je', u'ne', u'sais', u'pas', u'je', u'voudrais', u'qu', u'il', u'n', u'y', u'ait', u'pas', u'de', u'guerre', u'et', u'que', u'des', u'enfants', u'meurent', u'\xe0', u'cause', u'de', u'la', u'connerie', u'des', u'adultes', u',', u'ils', u'd\xe9truisent', u'l', u'avenir', u'des', u'enfants', u'innocents', u'qui', u'se', u'font', u'tuer', u'$'] +reste +True +texte_uce +[u'je', u'ne', u'sais', u'pas', u'je', u'voudrais', u'qu', u'il', u'n', u'y'] +suite +[u'pas', u'de', u'guerre', u'et', u'que', u'des', u'enfants', u'meurent', u'\xe0', u'cause', u'de', u'la', u'connerie', u'des', u'adultes', u',', u'ils', u'd\xe9truisent', u'l', u'avenir', u'des', u'enfants', u'innocents', u'qui', u'se', u'font', u'tuer', u'$'] +reste +True +texte_uce +[u'pas', u'de', u'guerre', u'et', u'que', u'des', u'enfants', u'meurent', u'\xe0', u'cause', u'de', u'la', u'connerie', u'des', u'adultes'] +suite +[u'ils', u'd\xe9truisent', u'l', u'avenir', u'des', u'enfants', u'innocents', u'qui', u'se', u'font', u'tuer', u'$'] +reste +True +texte_uce +[u'ils', u'd\xe9truisent', u'l', u'avenir', u'des', u'enfants', u'innocents', u'qui', u'se', u'font', u'tuer'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'\xe7a', u'fait', u'dix', u'ans', u'que', u'je', u'pense', u'continuer', u'mes', u'\xe9tudes', u'pour', u'pouvoir', u'avoir', u'une', u'bonne', u'place', u'dans', u'mon', u'pays'] +suite +[u'un', u'meilleur', u'salaire', u',', u'ce', u'projet', u',', u'me', u'prendra', u'bien', u'dix', u'ans', u'car', u'je', u'veux', u'faire', u'un', u'cycle', u'long', u'il', u'me', u'faut', u'du', u'courage', u',', u'de', u'la', u'pers\xe9v\xe9rance', u'et', u'de', u'l', u'intelligence', u',', u'je', u'voudrais', u'\xeatre', u'docteur', u'pour', u'obtenir', u'des', u'meilleures', u'conditions', u'de', u'vie', u',', u'les', u'\xe9tudes', u'sont', u'longues', u'et', u'difficiles', u'$'] +reste +True +texte_uce +[u'un', u'meilleur', u'salaire', u',', u'ce', u'projet'] +suite +[u'me', u'prendra', u'bien', u'dix', u'ans', u'car', u'je', u'veux', u'faire', u'un', u'cycle', u'long', u'il', u'me', u'faut', u'du', u'courage', u',', u'de', u'la', u'pers\xe9v\xe9rance', u'et', u'de', u'l', u'intelligence', u',', u'je', u'voudrais', u'\xeatre', u'docteur', u'pour', u'obtenir', u'des', u'meilleures', u'conditions', u'de', u'vie', u',', u'les', u'\xe9tudes', u'sont', u'longues', u'et', u'difficiles', u'$'] +reste +True +texte_uce +[u'me', u'prendra', u'bien', u'dix', u'ans', u'car', u'je', u'veux', u'faire', u'un', u'cycle', u'long', u'il', u'me', u'faut', u'du', u'courage'] +suite +[u'de', u'la', u'pers\xe9v\xe9rance', u'et', u'de', u'l', u'intelligence', u',', u'je', u'voudrais', u'\xeatre', u'docteur', u'pour', u'obtenir', u'des', u'meilleures', u'conditions', u'de', u'vie', u',', u'les', u'\xe9tudes', u'sont', u'longues', u'et', u'difficiles', u'$'] +reste +True +texte_uce +[u'de', u'la', u'pers\xe9v\xe9rance', u'et', u'de', u'l', u'intelligence'] +suite +[u'je', u'voudrais', u'\xeatre', u'docteur', u'pour', u'obtenir', u'des', u'meilleures', u'conditions', u'de', u'vie', u',', u'les', u'\xe9tudes', u'sont', u'longues', u'et', u'difficiles', u'$'] +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'docteur', u'pour', u'obtenir', u'des', u'meilleures', u'conditions', u'de', u'vie', u',', u'les', u'\xe9tudes', u'sont', u'longues', u'et', u'difficiles'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'avoir', u'un', u'm\xe9tier', u'bien', u',', u'arriver', u'\xe0', u'bien', u'nager'] +suite +[u'mes', u'projets', u'sont', u'r\xe9alisables', u'car', u'modestes', u',', u'je', u'veux', u'aussi', u'une', u'grande', u'voili\xe8re', u',', u'ce', u'qu', u'il', u'faut', u'c', u'est', u'que', u'les', u'gens', u'soient', u'plus', u'attentifs', u'aux', u'autres', u'et', u'qu', u'ils', u'les', u'aident', u'pour', u'r\xe9aliser', u'leurs', u'projets', u'$'] +reste +True +texte_uce +[u'mes', u'projets', u'sont', u'r\xe9alisables', u'car', u'modestes', u',', u'je', u'veux', u'aussi', u'une', u'grande', u'voili\xe8re'] +suite +[u'ce', u'qu', u'il', u'faut', u'c', u'est', u'que', u'les', u'gens', u'soient', u'plus', u'attentifs', u'aux', u'autres', u'et', u'qu', u'ils', u'les', u'aident', u'pour', u'r\xe9aliser', u'leurs', u'projets', u'$'] +reste +True +texte_uce +[u'ce', u'qu', u'il', u'faut', u'c', u'est', u'que', u'les', u'gens', u'soient', u'plus', u'attentifs', u'aux', u'autres', u'et', u'qu', u'ils', u'les', u'aident', u'pour', u'r\xe9aliser', u'leurs', u'projets'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'jusqu_au', u'baccalaur\xe9at', u'et', u'faire', u'un', u'boulot', u'qui', u'me', u'pla\xeet', u'je', u'veux', u'avoir', u'une', u'belle', u'voiture', u'de', u'sport'] +suite +[u'une', u'femme', u'et', u'un', u'enfant', u'minimum', u'$'] +reste +True +texte_uce +[u'une', u'femme', u'et', u'un', u'enfant', u'minimum'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'pense', u'rentrer', u'\xe0', u'l', u'\xe9cole', u'd', u'h\xf4telerie', u'et', u'essayer', u'd', u'avoir', u'un', u'bon', u'dipl\xf4me'] +suite +[u'avoir', u'un', u'salaire', u'tr\xe8s', u'fort', u'et', u'travailler', u'dans', u'un', u'restaurant', u'comme', u'cuisinier', u'et', u'apprenti', u',', u'j', u'esp\xe8re', u'que', u'je', u'vais', u'faire', u'la', u'f\xeate', u'avant', u'de', u'me', u'marier', u',', u'apr\xe8s', u'je', u'profite', u'de', u'ma', u'femme', u'et', u'je', u'lui', u'fais', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'deviens', u'milliardaire', u',', u'je', u'prends', u'la', u'retraite', u'anticip\xe9e', u',', u'plein', u'de', u'filles', u'et', u'mourir', u'sans', u'regret', u'$'] +reste +True +texte_uce +[u'avoir', u'un', u'salaire', u'tr\xe8s', u'fort', u'et', u'travailler', u'dans', u'un', u'restaurant', u'comme', u'cuisinier', u'et', u'apprenti'] +suite +[u'j', u'esp\xe8re', u'que', u'je', u'vais', u'faire', u'la', u'f\xeate', u'avant', u'de', u'me', u'marier', u',', u'apr\xe8s', u'je', u'profite', u'de', u'ma', u'femme', u'et', u'je', u'lui', u'fais', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'deviens', u'milliardaire', u',', u'je', u'prends', u'la', u'retraite', u'anticip\xe9e', u',', u'plein', u'de', u'filles', u'et', u'mourir', u'sans', u'regret', u'$'] +reste +True +texte_uce +[u'j', u'esp\xe8re', u'que', u'je', u'vais', u'faire', u'la', u'f\xeate', u'avant', u'de', u'me', u'marier'] +suite +[u'apr\xe8s', u'je', u'profite', u'de', u'ma', u'femme', u'et', u'je', u'lui', u'fais', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'deviens', u'milliardaire', u',', u'je', u'prends', u'la', u'retraite', u'anticip\xe9e', u',', u'plein', u'de', u'filles', u'et', u'mourir', u'sans', u'regret', u'$'] +reste +True +texte_uce +[u'apr\xe8s', u'je', u'profite', u'de', u'ma', u'femme', u'et', u'je', u'lui', u'fais', u'des', u'enfants'] +suite +[u'apr\xe8s', u'je', u'deviens', u'milliardaire', u',', u'je', u'prends', u'la', u'retraite', u'anticip\xe9e', u',', u'plein', u'de', u'filles', u'et', u'mourir', u'sans', u'regret', u'$'] +reste +True +texte_uce +[u'apr\xe8s', u'je', u'deviens', u'milliardaire', u',', u'je', u'prends', u'la', u'retraite', u'anticip\xe9e', u',', u'plein', u'de', u'filles', u'et', u'mourir', u'sans', u'regret'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'faire', u'de', u'longues', u'\xe9tudes', u',', u'et', u'avoir', u'un', u'bon', u'm\xe9tier'] +suite +[u'aussi', u'passer', u'mon', u'permis', u'un', u'appartement', u'\xeatre', u'ind\xe9pendante', u'et', u'avoir', u'un', u'chat', u',', u'il', u'ne', u'faut', u'pas', u'que', u'je', u'fasse', u'tout', u'en', u'm\xeame', u'temps', u'je', u'ne', u'veux', u'pas', u'me', u'sentir', u'bousculer', u',', u'pour', u'la', u'famille', u'l', u'id\xe9al', u'c', u'est', u'd', u'avoir', u'un', u'mari', u'et', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'mets', u'de', u'l', u'argent', u'de', u'c\xf4t\xe9', u'pour', u'pouvoir', u'partir', u'en', u'voyage', u'.', u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien', u',', u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'aussi', u'passer', u'mon', u'permis', u'un', u'appartement', u'\xeatre', u'ind\xe9pendante', u'et', u'avoir', u'un', u'chat'] +suite +[u'il', u'ne', u'faut', u'pas', u'que', u'je', u'fasse', u'tout', u'en', u'm\xeame', u'temps', u'je', u'ne', u'veux', u'pas', u'me', u'sentir', u'bousculer', u',', u'pour', u'la', u'famille', u'l', u'id\xe9al', u'c', u'est', u'd', u'avoir', u'un', u'mari', u'et', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'mets', u'de', u'l', u'argent', u'de', u'c\xf4t\xe9', u'pour', u'pouvoir', u'partir', u'en', u'voyage', u'.', u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien', u',', u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'il', u'ne', u'faut', u'pas', u'que', u'je', u'fasse', u'tout', u'en', u'm\xeame', u'temps', u'je', u'ne', u'veux', u'pas', u'me', u'sentir', u'bousculer'] +suite +[u'pour', u'la', u'famille', u'l', u'id\xe9al', u'c', u'est', u'd', u'avoir', u'un', u'mari', u'et', u'des', u'enfants', u',', u'apr\xe8s', u'je', u'mets', u'de', u'l', u'argent', u'de', u'c\xf4t\xe9', u'pour', u'pouvoir', u'partir', u'en', u'voyage', u'.', u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien', u',', u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'pour', u'la', u'famille', u'l', u'id\xe9al', u'c', u'est', u'd', u'avoir', u'un', u'mari', u'et', u'des', u'enfants'] +suite +[u'apr\xe8s', u'je', u'mets', u'de', u'l', u'argent', u'de', u'c\xf4t\xe9', u'pour', u'pouvoir', u'partir', u'en', u'voyage', u'.', u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien', u',', u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'apr\xe8s', u'je', u'mets', u'de', u'l', u'argent', u'de', u'c\xf4t\xe9', u'pour', u'pouvoir', u'partir', u'en', u'voyage'] +suite +[u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien', u',', u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'j', u'ai', u'fais', u'un', u'voyage', u'derni\xe8rement', u'et', u'j', u'aime', u'bien'] +suite +[u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager', u',', u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'c', u'est', u'pour', u'cela', u'que', u'je', u'veux', u'voyager'] +suite +[u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle', u',', u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'bon', u'je', u'veux', u'faire', u'des', u'longues', u'\xe9tudes', u'dans', u'le', u'grand', u'cycle'] +suite +[u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher', u'$'] +reste +True +texte_uce +[u'apr\xe8s', u'je', u'me', u'marie', u'mais', u'je', u'profite', u'de', u'la', u'vie', u'avant', u'de', u'm', u'attacher'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'ai', u'\xe9t\xe9', u'\xe0', u'l', u'h\xf4pital', u'et', u'l\xe0', u'j', u'ai', u'compris', u'que', u'les', u'm\xe9tiers', u'dans', u'le', u'sanitaire', u'c', u'\xe9tait', u'important'] +suite +[u'essentiel', u'pour', u'la', u'soci\xe9t\xe9', u',', u'car', u'ils', u'savent', u'les', u'vies', u'et', u'\xe9vitent', u'les', u'malheurs', u',', u'c', u'est', u'pour', u'cela', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'infirmi\xe8re', u',', u'donc', u'poursuivre', u'mes', u'\xe9tudes', u'et', u'me', u'marier', u'un', u'jour', u'et', u'avoir', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'essentiel', u'pour', u'la', u'soci\xe9t\xe9', u',', u'car', u'ils', u'savent', u'les', u'vies', u'et', u'\xe9vitent', u'les', u'malheurs'] +suite +[u'c', u'est', u'pour', u'cela', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'infirmi\xe8re', u',', u'donc', u'poursuivre', u'mes', u'\xe9tudes', u'et', u'me', u'marier', u'un', u'jour', u'et', u'avoir', u'des', u'enfants', u'$'] +reste +True +texte_uce +[u'c', u'est', u'pour', u'cela', u'que', u'j', u'ai', u'd\xe9cid\xe9', u'd', u'\xeatre', u'infirmi\xe8re', u',', u'donc', u'poursuivre', u'mes', u'\xe9tudes', u'et', u'me', u'marier', u'un', u'jour', u'et', u'avoir', u'des', u'enfants'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'plus', u'tard', u'je', u'veux', u'devenir', u'styliste', u'car', u'la', u'mode', u'\xe7a', u'm', u'attire', u'bien'] +suite +[u'je', u'veux', u'devenir', u'un', u'grand', u'styliste', u',', u'comme', u'tout', u'le', u'monde', u'je', u'veux', u'devenir', u'riche', u'et', u'vivre', u'sans', u'probl\xe8me', u',', u'je', u'suis', u'certaine', u'de', u'ne', u'pas', u'me', u'marier', u',', u'mais', u'j', u'ai', u'tout', u'de', u'm\xeame', u'une', u'id\xe9e', u'de', u'l', u'homme', u'id\xe9al', u'grand', u'brun', u'yeux', u'bleus', u'muscl\xe9', u',', u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants', u',', u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison', u',', u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'devenir', u'un', u'grand', u'styliste'] +suite +[u'comme', u'tout', u'le', u'monde', u'je', u'veux', u'devenir', u'riche', u'et', u'vivre', u'sans', u'probl\xe8me', u',', u'je', u'suis', u'certaine', u'de', u'ne', u'pas', u'me', u'marier', u',', u'mais', u'j', u'ai', u'tout', u'de', u'm\xeame', u'une', u'id\xe9e', u'de', u'l', u'homme', u'id\xe9al', u'grand', u'brun', u'yeux', u'bleus', u'muscl\xe9', u',', u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants', u',', u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison', u',', u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma', u'$'] +reste +True +texte_uce +[u'comme', u'tout', u'le', u'monde', u'je', u'veux', u'devenir', u'riche', u'et', u'vivre', u'sans', u'probl\xe8me'] +suite +[u'je', u'suis', u'certaine', u'de', u'ne', u'pas', u'me', u'marier', u',', u'mais', u'j', u'ai', u'tout', u'de', u'm\xeame', u'une', u'id\xe9e', u'de', u'l', u'homme', u'id\xe9al', u'grand', u'brun', u'yeux', u'bleus', u'muscl\xe9', u',', u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants', u',', u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison', u',', u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma', u'$'] +reste +True +texte_uce +[u'je', u'suis', u'certaine', u'de', u'ne', u'pas', u'me', u'marier'] +suite +[u'mais', u'j', u'ai', u'tout', u'de', u'm\xeame', u'une', u'id\xe9e', u'de', u'l', u'homme', u'id\xe9al', u'grand', u'brun', u'yeux', u'bleus', u'muscl\xe9', u',', u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants', u',', u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison', u',', u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma', u'$'] +reste +True +texte_uce +[u'mais', u'j', u'ai', u'tout', u'de', u'm\xeame', u'une', u'id\xe9e', u'de', u'l', u'homme', u'id\xe9al', u'grand', u'brun', u'yeux', u'bleus', u'muscl\xe9'] +suite +[u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants', u',', u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison', u',', u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma', u'$'] +reste +True +texte_uce +[u'beau', u'quoi', u',', u'je', u'ne', u'veux', u'que', u'deux', u'enfants'] +suite +[u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison', u',', u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'une', u'grande', u'maison', u',', u'pas', u'ici', u'et', u'm\xeame', u'un', u'autre', u'maison'] +suite +[u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'faire', u'le', u'tour', u'du', u'monde', u',', u'je', u'veux', u'une', u'grande', u'voiture', u',', u'je', u'veux', u'rencontrer', u'des', u'stars', u'du', u'cin\xe9ma'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'faire', u'des', u'\xe9tudes', u'dans', u'la', u'comptabilit\xe9'] +suite +[u'et', u'dans', u'dix', u'ans', u'travailler', u',', u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'tout', u'de', u'suite', u'je', u'veux', u'avoir', u'un', u'appartement', u'pour', u'moi', u'seule', u'ou', u'avec', u'une', u'amie', u',', u'et', u'essayer', u'de', u'vivre', u'seule', u'sans', u'mes', u'parents', u',', u'je', u'veux', u'go\xfbter', u'la', u'libert\xe9', u'sans', u'les', u'parents', u',', u'ensuite', u'continuer', u'le', u'travail', u'm\xeame', u'si', u'je', u'me', u'marie', u'$'] +reste +True +texte_uce +[u'et', u'dans', u'dix', u'ans', u'travailler'] +suite +[u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'tout', u'de', u'suite', u'je', u'veux', u'avoir', u'un', u'appartement', u'pour', u'moi', u'seule', u'ou', u'avec', u'une', u'amie', u',', u'et', u'essayer', u'de', u'vivre', u'seule', u'sans', u'mes', u'parents', u',', u'je', u'veux', u'go\xfbter', u'la', u'libert\xe9', u'sans', u'les', u'parents', u',', u'ensuite', u'continuer', u'le', u'travail', u'm\xeame', u'si', u'je', u'me', u'marie', u'$'] +reste +True +texte_uce +[u'je', u'ne', u'veux', u'pas', u'me', u'marier', u'tout', u'de', u'suite', u'je', u'veux', u'avoir', u'un', u'appartement', u'pour', u'moi', u'seule', u'ou', u'avec', u'une', u'amie'] +suite +[u'et', u'essayer', u'de', u'vivre', u'seule', u'sans', u'mes', u'parents', u',', u'je', u'veux', u'go\xfbter', u'la', u'libert\xe9', u'sans', u'les', u'parents', u',', u'ensuite', u'continuer', u'le', u'travail', u'm\xeame', u'si', u'je', u'me', u'marie', u'$'] +reste +True +texte_uce +[u'et', u'essayer', u'de', u'vivre', u'seule', u'sans', u'mes', u'parents'] +suite +[u'je', u'veux', u'go\xfbter', u'la', u'libert\xe9', u'sans', u'les', u'parents', u',', u'ensuite', u'continuer', u'le', u'travail', u'm\xeame', u'si', u'je', u'me', u'marie', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'go\xfbter', u'la', u'libert\xe9', u'sans', u'les', u'parents', u',', u'ensuite', u'continuer', u'le', u'travail', u'm\xeame', u'si', u'je', u'me', u'marie'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'j', u'aimerais', u'devenir', u'informaticienne'] +suite +[u'je', u'l', u'ai', u'd\xe9cid\xe9', u'cette', u'ann\xe9e', u'car', u'dans', u'ma', u'classe', u'on', u'choisit', u'une', u'orientation', u'et', u'on', u'envisage', u'diff\xe9rents', u'm\xe9tiers', u'ils', u'vont', u'\xeatre', u'r\xe9alisables', u'dans', u'dix', u'ans', u'car', u'c', u'est', u'l\xe0', u'que', u'je', u'vais', u'avoir', u'fini', u'mes', u'\xe9tudes', u',', u'je', u'voudrai', u'aller', u'aux', u'jeux', u'olympiques', u',', u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage', u'il', u'faut', u'avoir', u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs', u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire', u'$'] +reste +True +texte_uce +[u'je', u'l', u'ai', u'd\xe9cid\xe9', u'cette', u'ann\xe9e', u'car', u'dans', u'ma', u'classe'] +suite +[u'choisit', u'une', u'orientation', u'et', u'on', u'envisage', u'diff\xe9rents', u'm\xe9tiers', u'ils', u'vont', u'\xeatre', u'r\xe9alisables', u'dans', u'dix', u'ans', u'car', u'c', u'est', u'l\xe0', u'que', u'je', u'vais', u'avoir', u'fini', u'mes', u'\xe9tudes', u',', u'je', u'voudrai', u'aller', u'aux', u'jeux', u'olympiques', u',', u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage', u'il', u'faut', u'avoir', u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs', u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire', u'$'] +reste +True +texte_uce +[u'choisit', u'une', u'orientation', u'et', u'on', u'envisage', u'diff\xe9rents', u'm\xe9tiers', u'ils', u'vont'] +suite +[u'r\xe9alisables', u'dans', u'dix', u'ans', u'car', u'c', u'est', u'l\xe0', u'que', u'je', u'vais', u'avoir', u'fini', u'mes', u'\xe9tudes', u',', u'je', u'voudrai', u'aller', u'aux', u'jeux', u'olympiques', u',', u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage', u'il', u'faut', u'avoir', u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs', u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire', u'$'] +reste +True +texte_uce +[u'r\xe9alisables', u'dans', u'dix', u'ans', u'car', u'c', u'est', u'l\xe0', u'que', u'je', u'vais', u'avoir', u'fini', u'mes', u'\xe9tudes'] +suite +[u'je', u'voudrai', u'aller', u'aux', u'jeux', u'olympiques', u',', u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage', u'il', u'faut', u'avoir', u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs', u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire', u'$'] +reste +True +texte_uce +[u'je', u'voudrai', u'aller', u'aux', u'jeux', u'olympiques'] +suite +[u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage', u'il', u'faut', u'avoir', u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs', u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire', u'$'] +reste +True +texte_uce +[u'je', u'voudrais', u'un', u'gar\xe7on', u'mais', u'pas', u'de', u'mariage', u'il', u'faut'] +suite +[u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs', u'projets', u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire', u'$'] +reste +True +texte_uce +[u'plus', u'confiance', u'aux', u'jeunes', u'pour', u'leur', u'permettre', u'de', u'r\xe9aliser', u'leurs'] +suite +[u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire', u'$'] +reste +True +texte_uce +[u'ne', u'pas', u'les', u'diriger', u'leur', u'imposer', u'ce', u'qui', u'n', u'est', u'pas', u'n\xe9cessaire', u'et', u'qu', u'ils', u'ne', u'veulent', u'pas', u'faire'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'un', u'an', u'je', u'pars', u'de', u'chez', u'moi'] +suite +[u'je', u'passe', u'mon', u'permis', u'de', u'voiture', u'et', u'je', u'trouve', u'un', u'travail', u'je', u'loue', u'une', u'maison', u'et', u'je', u'passe', u'une', u'belle', u'vie', u'et', u'apr\xe8s', u'je', u'me', u'marie', u'$'] +reste +True +texte_uce +[u'je', u'passe', u'mon', u'permis', u'de', u'voiture', u'et', u'je', u'trouve', u'un'] +suite +[u'je', u'loue', u'une', u'maison', u'et', u'je', u'passe', u'une', u'belle', u'vie', u'et', u'apr\xe8s', u'je', u'me', u'marie', u'$'] +reste +True +texte_uce +[u'je', u'loue', u'une', u'maison', u'et', u'je', u'passe', u'une', u'belle', u'vie', u'et', u'apr\xe8s', u'je', u'me', u'marie'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'avoir', u'un', u'bon', u'm\xe9tier', u'dans', u'le', u'domaine', u'sportif'] +suite +[u'avoir', u'beaucoup', u'd', u'argent', u'et', u'avoir', u'une', u'bonne', u'vie', u'de', u'famille', u',', u'plus', u'de', u'politique', u',', u'plus', u'de', u'clochards', u',', u'plus', u'de', u'famine', u'plus', u'de', u'racisme', u'pas', u'de', u'ma\xe7on', u'qui', u'ne', u'gagnent', u'pas', u'leur', u'vie', u'\xe0', u'cause', u'de', u'l', u'orientation', u'dans', u'le', u'coll\xe8ge', u'on', u'g\xe2che', u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me', u'sentir', u'dans', u'ma', u'peau', u'$'] +reste +True +texte_uce +[u'avoir', u'beaucoup', u'd', u'argent', u'et', u'avoir', u'une', u'bonne', u'vie', u'de', u'famille'] +suite +[u'plus', u'de', u'politique', u',', u'plus', u'de', u'clochards', u',', u'plus', u'de', u'famine', u'plus', u'de', u'racisme', u'pas', u'de', u'ma\xe7on', u'qui', u'ne', u'gagnent', u'pas', u'leur', u'vie', u'\xe0', u'cause', u'de', u'l', u'orientation', u'dans', u'le', u'coll\xe8ge', u'on', u'g\xe2che', u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me', u'sentir', u'dans', u'ma', u'peau', u'$'] +reste +True +texte_uce +[u'plus', u'de', u'politique', u',', u'plus', u'de', u'clochards'] +suite +[u'plus', u'de', u'famine', u'plus', u'de', u'racisme', u'pas', u'de', u'ma\xe7on', u'qui', u'ne', u'gagnent', u'pas', u'leur', u'vie', u'\xe0', u'cause', u'de', u'l', u'orientation', u'dans', u'le', u'coll\xe8ge', u'on', u'g\xe2che', u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me', u'sentir', u'dans', u'ma', u'peau', u'$'] +reste +True +texte_uce +[u'plus', u'de', u'famine', u'plus', u'de', u'racisme', u'pas', u'de', u'ma\xe7on', u'qui'] +suite +[u'gagnent', u'pas', u'leur', u'vie', u'\xe0', u'cause', u'de', u'l', u'orientation', u'dans', u'le', u'coll\xe8ge', u'on', u'g\xe2che', u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me', u'sentir', u'dans', u'ma', u'peau', u'$'] +reste +True +texte_uce +[u'gagnent', u'pas', u'leur', u'vie', u'\xe0', u'cause', u'de', u'l', u'orientation', u'dans'] +suite +[u'coll\xe8ge', u'on', u'g\xe2che', u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me', u'sentir', u'dans', u'ma', u'peau', u'$'] +reste +True +texte_uce +[u'coll\xe8ge', u'on', u'g\xe2che', u'sa', u'vie', u'ce', u'que', u'je', u'veux', u'c', u'est', u'de', u'bien', u'me', u'sentir', u'dans', u'ma', u'peau'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'\xe7a', u'fait', u'un', u'an', u'que', u'je', u'commence', u'\xe0', u'avoir', u'des', u'projets', u'je', u'veux', u'un', u'boulot', u'qui', u'me', u'fasse', u'gagner', u'de', u'l', u'argent'] +suite +[u'la', u'm\xe9decine', u',', u'je', u'vais', u'me', u'lancer', u'dans', u'le', u'sport', u'je', u'vais', u'm', u'inscrire', u'dans', u'un', u'grand', u'club', u',', u'faire', u'de', u'longues', u'\xe9tudes', u',', u'pour', u'ma', u'vie', u'sentimental', u'rencontrer', u'des', u'filles', u'faire', u'des', u'connaissances', u'agr\xe9ables', u',', u'je', u'veux', u'le', u'permis', u',', u'pour', u'moi', u'mes', u'parents', u'c', u'est', u'sacr\xe9', u'je', u'veux', u'rester', u'le', u'plus', u'longtemps', u'avec', u'eux', u'$'] +reste +True +texte_uce +[u'la', u'm\xe9decine', u',', u'je', u'vais', u'me', u'lancer', u'dans', u'le', u'sport', u'je', u'vais', u'm', u'inscrire', u'dans', u'un', u'grand', u'club'] +suite +[u'faire', u'de', u'longues', u'\xe9tudes', u',', u'pour', u'ma', u'vie', u'sentimental', u'rencontrer', u'des', u'filles', u'faire', u'des', u'connaissances', u'agr\xe9ables', u',', u'je', u'veux', u'le', u'permis', u',', u'pour', u'moi', u'mes', u'parents', u'c', u'est', u'sacr\xe9', u'je', u'veux', u'rester', u'le', u'plus', u'longtemps', u'avec', u'eux', u'$'] +reste +True +texte_uce +[u'faire', u'de', u'longues', u'\xe9tudes', u',', u'pour', u'ma', u'vie', u'sentimental', u'rencontrer', u'des', u'filles', u'faire', u'des', u'connaissances', u'agr\xe9ables'] +suite +[u'je', u'veux', u'le', u'permis', u',', u'pour', u'moi', u'mes', u'parents', u'c', u'est', u'sacr\xe9', u'je', u'veux', u'rester', u'le', u'plus', u'longtemps', u'avec', u'eux', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'le', u'permis', u',', u'pour', u'moi', u'mes', u'parents', u'c', u'est', u'sacr\xe9', u'je', u'veux', u'rester', u'le', u'plus', u'longtemps', u'avec', u'eux'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'ne', u'sais', u'rien', u'sur', u'mes', u'projets', u'je', u'ne', u'sais', u'pas', u'je', u'ne', u'sais', u'pas'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'n', u'ai', u'pas', u'de', u'projet', u'en', u'ce', u'moment', u'je'] +suite +[u'pense', u'qu', u'aux', u'filles', u'je', u'ne', u'pense', u'qu', u'\xe0', u'cela', u'je', u'ne', u'pense', u'qu', u'aux', u'filles', u',', u'les', u'filles', u'$'] +reste +True +texte_uce +[u'pense', u'qu', u'aux', u'filles', u'je', u'ne', u'pense', u'qu', u'\xe0', u'cela', u'je', u'ne', u'pense', u'qu', u'aux', u'filles', u',', u'les', u'filles'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u'je', u'pars', u'de', u'chez', u'moi'] +suite +[u'et', u'je', u'passe', u'mon', u'permis', u'de', u'conduire', u'apr\xe8s', u'je', u'me', u'marie', u'et', u'je', u'pratique', u'\xe0', u'fond', u'la', u'religion', u'je', u'veux', u'profiter', u'de', u'la', u'vie', u'mais', u'apr\xe8s', u'c', u'est', u'l', u'enfer', u'$'] +reste +True +texte_uce +[u'et', u'je', u'passe', u'mon', u'permis', u'de', u'conduire', u'apr\xe8s', u'je', u'me'] +suite +[u'et', u'je', u'pratique', u'\xe0', u'fond', u'la', u'religion', u'je', u'veux', u'profiter', u'de', u'la', u'vie', u'mais', u'apr\xe8s', u'c', u'est', u'l', u'enfer', u'$'] +reste +True +texte_uce +[u'et', u'je', u'pratique', u'\xe0', u'fond', u'la', u'religion', u'je', u'veux', u'profiter', u'de', u'la', u'vie', u'mais', u'apr\xe8s', u'c', u'est', u'l', u'enfer'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'une', u'femme', u'et', u'un', u'appartement'] +suite +[u'pour', u'la', u'profession', u'je', u'voudrais', u'm', u'orienter', u'vers', u'une', u'formation', u'technique', u'pour', u'r\xe9aliser', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'apr\xe8s', u'quand', u'je', u'serai', u'vieux', u'je', u'veux', u'faire', u'le', u'p\xe8lerinage', u',', u'si', u'tout', u'va', u'bien', u'$'] +reste +True +texte_uce +[u'pour', u'la', u'profession', u'je', u'voudrais', u'm', u'orienter', u'vers', u'une', u'formation'] +suite +[u'pour', u'r\xe9aliser', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'apr\xe8s', u'quand', u'je', u'serai', u'vieux', u'je', u'veux', u'faire', u'le', u'p\xe8lerinage', u',', u'si', u'tout', u'va', u'bien', u'$'] +reste +True +texte_uce +[u'pour', u'r\xe9aliser', u'tout', u'cela', u'il', u'faut', u'que', u'je', u'travaille', u'apr\xe8s', u'quand', u'je', u'serai', u'vieux', u'je', u'veux', u'faire', u'le', u'p\xe8lerinage', u',', u'si', u'tout', u'va', u'bien'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'compte', u'faire', u'une', u'formation', u'technique', u'et', u'apr\xe8s', u'cette', u'formation', u'fonder', u'une', u'famille', u'et', u'avoir', u'une', u'voiture'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'dans', u'deux', u'ans', u'\xe0', u'la', u'majorit\xe9', u',', u'je', u'veux', u'avoir', u'un', u'appartement'] +suite +[u'je', u'ferai', u'des', u'petits', u'boulots', u'je', u'veux', u'mon', u'ind\xe9pendance', u',', u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'en', u'faisant', u'les', u'petits', u'boulots', u'une', u'formation', u'technique', u',', u'avec', u'une', u'bonne', u'formation', u'fonder', u'une', u'famille', u'et', u'essayer', u'd', u'\xeatre', u'heureux', u'$'] +reste +True +texte_uce +[u'je', u'ferai', u'des', u'petits', u'boulots', u'je', u'veux', u'mon', u'ind\xe9pendance'] +suite +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'en', u'faisant', u'les', u'petits', u'boulots', u'une', u'formation', u'technique', u',', u'avec', u'une', u'bonne', u'formation', u'fonder', u'une', u'famille', u'et', u'essayer', u'd', u'\xeatre', u'heureux', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'en', u'faisant', u'les', u'petits', u'boulots', u'une', u'formation', u'technique'] +suite +[u'avec', u'une', u'bonne', u'formation', u'fonder', u'une', u'famille', u'et', u'essayer', u'd', u'\xeatre', u'heureux', u'$'] +reste +True +texte_uce +[u'avec', u'une', u'bonne', u'formation', u'fonder', u'une', u'famille', u'et', u'essayer', u'd', u'\xeatre', u'heureux'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'voyager', u',', u'dans', u'tout', u'le', u'monde', u'avoir', u'plein', u'de', u'voitures', u'et', u'de', u'femmes', u'je', u'veux', u'\xeatre', u'riche', u'et', u'avoir', u'plein', u'de', u'femmes'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'professeur', u'de', u'physique', u'et', u'pour', u'cela', u'il', u'faut', u'que', u'je', u'continue', u'mes', u'\xe9tudes'] +suite +[u'ensuite', u'j', u'esp\xe8re', u'me', u'marier', u',', u'avoir', u'une', u'voiture', u'et', u'une', u'maison', u'$'] +reste +True +texte_uce +[u'ensuite', u'j', u'esp\xe8re', u'me', u'marier', u',', u'avoir', u'une', u'voiture', u'et', u'une', u'maison'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'un', u'bon', u'boulot', u'qui', u'me', u'rapporte', u'de', u'l', u'argent'] +suite +[u'et', u'je', u'veux', u'pouvoir', u'faire', u'des', u'voyages', u',', u'je', u'veux', u'continuer', u'dans', u'la', u'danse', u'et', u'devenir', u'une', u'professionnel', u',', u'je', u'veux', u'continuer', u'\xe0', u'garder', u'des', u'liens', u'avec', u'ma', u'famille', u'car', u'elle', u'est', u'sacr\xe9e', u'je', u'veux', u'aussi', u'un', u'super', u'mari', u'pour', u'que', u'\xe7a', u'se', u'r\xe9alise', u'il', u'faut', u'de', u'la', u'chance', u',', u'il', u'faut', u'compter', u'sur', u'dieu', u'$'] +reste +True +texte_uce +[u'et', u'je', u'veux', u'pouvoir', u'faire', u'des', u'voyages'] +suite +[u'je', u'veux', u'continuer', u'dans', u'la', u'danse', u'et', u'devenir', u'une', u'professionnel', u',', u'je', u'veux', u'continuer', u'\xe0', u'garder', u'des', u'liens', u'avec', u'ma', u'famille', u'car', u'elle', u'est', u'sacr\xe9e', u'je', u'veux', u'aussi', u'un', u'super', u'mari', u'pour', u'que', u'\xe7a', u'se', u'r\xe9alise', u'il', u'faut', u'de', u'la', u'chance', u',', u'il', u'faut', u'compter', u'sur', u'dieu', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'dans', u'la', u'danse', u'et', u'devenir', u'une', u'professionnel'] +suite +[u'je', u'veux', u'continuer', u'\xe0', u'garder', u'des', u'liens', u'avec', u'ma', u'famille', u'car', u'elle', u'est', u'sacr\xe9e', u'je', u'veux', u'aussi', u'un', u'super', u'mari', u'pour', u'que', u'\xe7a', u'se', u'r\xe9alise', u'il', u'faut', u'de', u'la', u'chance', u',', u'il', u'faut', u'compter', u'sur', u'dieu', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'\xe0', u'garder', u'des', u'liens', u'avec', u'ma', u'famille'] +suite +[u'elle', u'est', u'sacr\xe9e', u'je', u'veux', u'aussi', u'un', u'super', u'mari', u'pour', u'que', u'\xe7a', u'se', u'r\xe9alise', u'il', u'faut', u'de', u'la', u'chance', u',', u'il', u'faut', u'compter', u'sur', u'dieu', u'$'] +reste +True +texte_uce +[u'elle', u'est', u'sacr\xe9e', u'je', u'veux', u'aussi', u'un', u'super', u'mari', u'pour', u'que', u'\xe7a', u'se', u'r\xe9alise', u'il', u'faut', u'de', u'la', u'chance', u',', u'il', u'faut', u'compter', u'sur', u'dieu'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'toujours', u'garder', u'des', u'liens', u'avec', u'ma', u'famille', u'au', u'niveau', u'de', u'mon', u'm\xe9tier', u'je', u'veux', u'faire', u'un', u'travail', u'social'] +suite +[u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille', u'et', u'avoir', u'de', u'belles', u'maisons', u'j', u'esp\xe8re', u'voyager', u'dans', u'tout', u'le', u'monde', u',', u'je', u'pense', u'pouvoir', u'r\xe9aliser', u'tout', u'cela', u'par', u'rapport', u'\xe0', u'mon', u'mariage', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille', u'et', u'avoir', u'de', u'belles', u'maisons', u'j', u'esp\xe8re', u'voyager', u'dans', u'tout', u'le', u'monde'] +suite +[u'je', u'pense', u'pouvoir', u'r\xe9aliser', u'tout', u'cela', u'par', u'rapport', u'\xe0', u'mon', u'mariage', u'$'] +reste +True +texte_uce +[u'je', u'pense', u'pouvoir', u'r\xe9aliser', u'tout', u'cela', u'par', u'rapport', u'\xe0', u'mon', u'mariage'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'avoir', u'une', u'bonne', u'qualification', u'pour', u'le', u'm\xe9tier', u'et', u'\xe7a', u'sera', u'possible', u'si', u'je', u'continue', u'mes', u'\xe9tudes', u'apr\xe8s', u'cela', u'penser', u'\xe0', u'la', u'vie', u'sentimentale'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'pour', u'faire', u'de', u'l', u'anglais', u'ou', u'la', u'm\xe9decine'] +suite +[u'il', u'faut', u'multiplier', u'les', u'centres', u'de', u'rencontre', u'pour', u'les', u'jeunes', u'je', u'veux', u'vivre', u'dans', u'un', u'grand', u'et', u'beau', u'pays', u'dans', u'un', u'pays', u'de', u'la', u'libert\xe9', u'je', u'veux', u'rencontrer', u'des', u'gens', u'connus', u'et', u'me', u'marier', u'avec', u'une', u'vedette', u'$'] +reste +True +texte_uce +[u'il', u'faut', u'multiplier', u'les', u'centres', u'de', u'rencontre', u'pour', u'les', u'jeunes'] +suite +[u'veux', u'vivre', u'dans', u'un', u'grand', u'et', u'beau', u'pays', u'dans', u'un', u'pays', u'de', u'la', u'libert\xe9', u'je', u'veux', u'rencontrer', u'des', u'gens', u'connus', u'et', u'me', u'marier', u'avec', u'une', u'vedette', u'$'] +reste +True +texte_uce +[u'veux', u'vivre', u'dans', u'un', u'grand', u'et', u'beau', u'pays', u'dans', u'un'] +suite +[u'de', u'la', u'libert\xe9', u'je', u'veux', u'rencontrer', u'des', u'gens', u'connus', u'et', u'me', u'marier', u'avec', u'une', u'vedette', u'$'] +reste +True +texte_uce +[u'de', u'la', u'libert\xe9', u'je', u'veux', u'rencontrer', u'des', u'gens', u'connus', u'et', u'me', u'marier', u'avec', u'une', u'vedette'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'veux', u'continuer', u'mes', u'\xe9tudes', u'et', u'faire', u'un', u'travail', u'int\xe9ressant', u'et', u'qui', u'rapporte', u'de', u'l', u'argent'] +suite +[u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille', u',', u'je', u'veux', u'vivre', u'dans', u'un', u'beau', u'pays', u'je', u'veux', u'beaucoup', u'voyager', u',', u'une', u'fois', u'bien', u'profiter', u'de', u'la', u'vie', u'je', u'pense', u'faire', u'des', u'enfants', u'et', u'm', u'en', u'occuper', u',', u'si', u'je', u'pouvais', u'avoir', u'plus', u'de', u'libert\xe9', u'pour', u'plus', u'profiter', u'de', u'la', u'vie', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'et', u'fonder', u'une', u'famille'] +suite +[u'je', u'veux', u'vivre', u'dans', u'un', u'beau', u'pays', u'je', u'veux', u'beaucoup', u'voyager', u',', u'une', u'fois', u'bien', u'profiter', u'de', u'la', u'vie', u'je', u'pense', u'faire', u'des', u'enfants', u'et', u'm', u'en', u'occuper', u',', u'si', u'je', u'pouvais', u'avoir', u'plus', u'de', u'libert\xe9', u'pour', u'plus', u'profiter', u'de', u'la', u'vie', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'vivre', u'dans', u'un', u'beau', u'pays', u'je', u'veux', u'beaucoup', u'voyager'] +suite +[u'une', u'fois', u'bien', u'profiter', u'de', u'la', u'vie', u'je', u'pense', u'faire', u'des', u'enfants', u'et', u'm', u'en', u'occuper', u',', u'si', u'je', u'pouvais', u'avoir', u'plus', u'de', u'libert\xe9', u'pour', u'plus', u'profiter', u'de', u'la', u'vie', u'$'] +reste +True +texte_uce +[u'une', u'fois', u'bien', u'profiter', u'de', u'la', u'vie', u'je', u'pense', u'faire', u'des', u'enfants', u'et', u'm', u'en', u'occuper'] +suite +[u'si', u'je', u'pouvais', u'avoir', u'plus', u'de', u'libert\xe9', u'pour', u'plus', u'profiter', u'de', u'la', u'vie', u'$'] +reste +True +texte_uce +[u'si', u'je', u'pouvais', u'avoir', u'plus', u'de', u'libert\xe9', u'pour', u'plus', u'profiter', u'de', u'la', u'vie'] +suite +[] +reste +False +texte_uce +[] +suite + +reste +True +texte_uce +[u'je', u'voudrais', u'\xeatre', u'une', u'danseuse', u'et', u'en', u'faire', u'mon', u'm\xe9tier'] +suite +[u'mais', u'pour', u'cela', u'il', u'faut', u'de', u'l', u'argent', u'sinon', u'je', u'vais', u'faire', u'un', u'travail', u'de', u'technique', u'en', u'biologie', u',', u'je', u'veux', u'me', u'marier', u'avec', u'un', u'super', u'mari', u'mais', u'je', u'n', u'ai', u'pas', u'trop', u'd', u'espoir', u'\xe0', u'ce', u'niveau', u'l\xe0', u'$'] +reste +True +texte_uce +[u'mais', u'pour', u'cela', u'il', u'faut', u'de', u'l', u'argent', u'sinon', u'je', u'vais', u'faire', u'un', u'travail', u'de', u'technique', u'en', u'biologie'] +suite +[u'je', u'veux', u'me', u'marier', u'avec', u'un', u'super', u'mari', u'mais', u'je', u'n', u'ai', u'pas', u'trop', u'd', u'espoir', u'\xe0', u'ce', u'niveau', u'l\xe0', u'$'] +reste +True +texte_uce +[u'je', u'veux', u'me', u'marier', u'avec', u'un', u'super', u'mari', u'mais', u'je', u'n', u'ai', u'pas', u'trop', u'd', u'espoir', u'\xe0', u \ No newline at end of file diff --git a/textafcuci.py b/textafcuci.py new file mode 100644 index 0000000..33315a6 --- /dev/null +++ b/textafcuci.py @@ -0,0 +1,122 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ConstructPathOut, ConstructAfcUciPath +from layout import GraphPanel +#from PrintRScript import RAfcUci +from corpus import Corpus +from listlex import * +from functions import ReadList, progressbar, exec_rcode, check_Rresult +import wx +import os +from ConfigParser import RawConfigParser +from time import time, sleep + +class AfcUci(): + def __init__(self, parent, cmd = False): +#################################################################### + self.conf = None + self.parent = parent + self.type = 'afcuci' + self.cmd = cmd + self.corpus = Corpus(parent) + self.corpus.parametre['encodage'] = parent.corpus_encodage + self.corpus.parametre['filename'] = parent.filename + self.corpus.parametre['lang'] = parent.corpus_lang + self.corpus.content = self.parent.content + self.ConfigPath = parent.ConfigPath + self.DictPath = parent.DictPath + self.AlcesteConf = RawConfigParser() + self.AlcesteConf.read(self.ConfigPath['alceste']) + self.KeyConf = RawConfigParser() + self.KeyConf.read(self.ConfigPath['key']) + pathout = ConstructPathOut(self.corpus.parametre['filename'], 'afcuci') + self.corpus.dictpathout = ConstructAfcUciPath(pathout) + self.corpus.supplementaires = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "2"] + self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] + + self.read_alceste_parametre() + ################################ + if not self.cmd : + self.dlg = progressbar(self, 6) + else : + self.dlg = None + ucis_txt, ucis_paras_txt = self.corpus.start_analyse(self.parent, dlg = self.dlg, cmd = self.cmd) + self.corpus.make_ucis_paras_uces(ucis_paras_txt, make_uce = False) + uces, orderuces = self.corpus.make_forms_and_uces() + self.corpus.make_lems(self.parent.lexique) + self.corpus.min_eff_formes() + + self.corpus.make_var_actives() + self.corpus.make_var_supp() + print self.corpus.supp + + self.corpus.make_pondtable_with_uci(self.corpus.actives, self.corpus.dictpathout['TableCont']) + self.corpus.make_pondtable_with_uci(self.corpus.supp, self.corpus.dictpathout['TableSup']) + + + self.corpus.parametre['para'] = False + self.corpus.make_etoiles([]) + self.corpus.make_tableet_with_uci(self.corpus.dictpathout['TableEt']) + RAfcUci(self.corpus.dictpathout, nd=3, RscriptsPath=self.parent.RscriptsPath, PARCEX='0.5') + pid = exec_rcode(self.parent.RPath,self.corpus.dictpathout['Rafcuci'], wait = False) + while pid.poll() == None : + if not self.cmd : + self.dlg.Pulse(u'CHD...') + sleep(0.2) + else : + pass + check_Rresult(self.parent, pid) + + if not self.cmd : + self.dlg.Update(6, 'Affichage') + self.DoLayout(parent, self.corpus.dictpathout) + self.dlg.Destroy() + + def read_alceste_parametre(self) : + self.conf = RawConfigParser() + self.conf.read(self.parent.ConfigPath['alceste']) + for option in self.conf.options('ALCESTE') : + if self.conf.get('ALCESTE', option).isdigit() : + self.corpus.parametre[option] = int(self.conf.get('ALCESTE', option)) + else : + self.corpus.parametre[option] = self.conf.get('ALCESTE', option) + + list_bool = ['lem', 'expressions'] + for val in list_bool : + if self.corpus.parametre[val] == 'True' : + self.corpus.parametre[val] = True + else : + self.corpus.parametre[val] = False + + def DoLayout(self, parent, DictAfcUciOut): + self.TabAfcUci = wx.aui.AuiNotebook(parent.nb, -1, wx.DefaultPosition) + #self.TabAfcTot = wx.html.HtmlWindow(self.TabAfcUci, -1) + #txtafctot = MakeAfcUciPages(DictAfcUciOut, parent.encode) + list_graph = [[os.path.basename(DictAfcUciOut['AfcColAct']),''], + [os.path.basename(DictAfcUciOut['AfcColSup']),''], + [os.path.basename(DictAfcUciOut['AfcColEt']),''], + [os.path.basename(DictAfcUciOut['AfcRow']),'']] + self.TabAfcTot = GraphPanel(self.TabAfcUci, DictAfcUciOut, list_graph, txt = '') + + #self.TabAfcSplit = wx.html.HtmlWindow(self.TabAfcUci, -1) + #txtafcsplit = MakeAfcSplitPage(1, 2, DictAfcUciOut, self.pathout, parent.encode) + #if "gtk2" in wx.PlatformInfo: + # self.TabAfcSplit.SetStandardFonts() + #self.TabAfcSplit.SetPage(txtafcsplit) + + dictrow, first = ReadList(self.corpus.dictpathout['afc_row']) + panel_list = ListForSpec(parent, self, dictrow, first) + + + + self.TabAfcUci.AddPage(self.TabAfcTot, 'Graph Afc totale') + #self.TabAfcUci.AddPage(self.TabAfcSplit, 'Graph AFC Split') + self.TabAfcUci.AddPage(panel_list, 'Colonnes') + parent.nb.AddPage(self.TabAfcUci, 'AFC Sur UCI') + + parent.nb.SetSelection(parent.nb.GetPageCount() - 1) + parent.ShowTab(True) + diff --git a/textaslexico.py b/textaslexico.py new file mode 100644 index 0000000..82311cd --- /dev/null +++ b/textaslexico.py @@ -0,0 +1,294 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2011 Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ConstructPathOut, StatTxtPathOut +#from corpus import Corpus +from analysetxt import AnalyseText +import wx +import os +import sys +from listlex import * +from functions import exec_rcode, progressbar, check_Rresult, CreateIraFile, print_liste, treat_var_mod, write_tab, DoConf +from dialog import OptLexi, StatDialog #LexDialog +from openanalyse import OpenAnalyse +import tempfile +from ConfigParser import RawConfigParser +from guifunct import getPage, getCorpus +from time import sleep + +class Lexico(AnalyseText) : + def doanalyse(self) : + pathout = self.pathout.dirout + self.dictpathout = StatTxtPathOut(pathout) + self.parametres['ira'] = self.dictpathout['ira'] + self.make_lexico() + if self.dlg : + try : + self.dlg.Destroy() + except : + pass +# def __init__(self, parent, cmd = False): +# self.parent = parent +# self.cmd = False +# self.ConfigPath = parent.ConfigPath +# self.DictPath = parent.DictPath +# self.KeyConf = RawConfigParser() +# self.KeyConf.read(self.ConfigPath['key']) +# +# page = getPage(self.parent) +# if page is not None : +# self.corpus = getCorpus(page) +# if self.corpus is not None : +# pathout = ConstructPathOut(self.corpus.parametre['openpath'], 'lexico') +# self.dictpathout = StatTxtPathOut(pathout) +# self.val = wx.ID_OK +# #print self.corpus.lems +# self.make_lexico() +# +# else : +# self.corpus = Corpus(parent) +# self.corpus.content = self.parent.content +# self.corpus.parametre['encodage'] = parent.corpus_encodage +# self.corpus.parametre['lang'] = parent.corpus_lang +# self.corpus.parametre['filename'] = parent.filename +# dial = StatDialog(self, self.parent) +# dial.check_uce.SetValue(True) +# dial.check_uce.Enable(False) +# dial.OnCheckUce(wx.EVT_MENU) +# self.val = dial.ShowModal() +## dial = LexDialog(self.parent) +## dial.CenterOnParent() +## res = dial.ShowModal() +# if self.val == wx.ID_OK : +# #if dial.m_radioBox2.GetSelection() == 0 : self.corpus.parametre['lem'] = True +# if dial.radio_lem.GetSelection() == 0 : self.corpus.parametre['lem'] = True +# else : self.corpus.parametre['lem'] = False +# #if dial.m_radioBox21.GetSelection() == 0 : self.corpus.parametre['expressions'] = True +# if dial.exp.GetSelection() == 0 : self.corpus.parametre['expressions'] = True +# else : self.corpus.parametre['expressions'] = False +# self.make_uce = dial.check_uce.GetValue() +# self.corpus.parametre['nbforme_uce'] = dial.spin_ctrl_4.GetValue() +# self.corpus.parametre['max_actives'] = dial.spin_max_actives.GetValue() +# self.corpus.parametre['eff_min_uce'] = self.corpus.parametre['nbforme_uce'] +# dial.Destroy() +# pathout = ConstructPathOut(self.corpus.parametre['filename'], 'lexico') +# self.dictpathout = StatTxtPathOut(pathout) +# self.make_corpus() +# #print self.corpus.ucis +# self.make_lexico() +# +# def make_corpus(self) : +# print 'make corpus' +# if not self.cmd : +# dlg = progressbar(self, maxi = 6) +# self.corpus.supplementaires = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "2"] +# self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] +# ucis_txt, ucis_paras_txt = self.corpus.start_analyse(self.parent, dlg = dlg, cmd = self.cmd) +# del ucis_txt +# +# if not self.cmd : +# dlg.Update(5, '%i ucis - Construction des uces' % len(ucis_paras_txt)) +# self.corpus.make_ucis_paras_uces(ucis_paras_txt, make_uce = self.make_uce) +# del ucis_paras_txt +# +# if self.corpus.para_coords != [[] for val in self.corpus.para_coords] : +# self.corpus.parametre['para'] = True +# else : +# self.corpus.parametre['para'] = False +# self.corpus.make_etoiles(self.corpus.para_coords) +# +# print 'len(ucis_paras_uces)', len(self.corpus.ucis_paras_uces) +# +# if not self.cmd : +# dlg.Update(6, u'Dictionnaires') +# uces, orderuces = self.corpus.make_forms_and_uces() +# self.corpus.make_lems(self.parent.lexique) +## if not self.corpus.parametre['lem'] : +## formes = self.corpus.formes +## else : +## formes = self.corpus.make_lem_eff() +# if not self.cmd : +# dlg.Destroy() + + def DoR(self): + nbligne = 5 + colonne = 1 + txt = """ + source("%s") + source("%s") + """ % (self.parent.RscriptsPath['chdfunct'], self.parent.RscriptsPath['Rgraph']) + txt += """ + dmf<-read.csv2("%s",row.names=1) + """ % self.dictpathout['tableafcm'] + txt += """ + dmt<-read.csv2("%s",row.names=1) + """ % self.dictpathout['tabletypem'] + if self.parametres['indice'] == 'hypergeo' : + txt += """ + outf <- make.spec.hypergeo(dmf) + outt <- make.spec.hypergeo(dmt) + """ + elif self.parametres['indice'] == 'chi2' : + txt += """ + outf<-AsLexico2(dmf) + outt<-AsLexico2(dmt) + """ + + txt += """ + specf<-outf[[1]] + spect<-outt[[1]] + write.csv2(specf,file="%s") + """ % self.dictpathout['tablespecf'] + txt += """ + write.csv2(spect,file="%s") + """ % self.dictpathout['tablespect'] + txt += """ + write.csv2(outf[[3]],file="%s") + """ % self.dictpathout['eff_relatif_forme'] + txt += """ + write.csv2(outt[[3]],file="%s") + """ % self.dictpathout['eff_relatif_type'] + if self.parametres['clnb'] > 2 : + txt += """ + library(ca) + nd <- ncol(specf) - 1 + if (nd > 6) nd <- 6 + slf <- rowSums(dmf) + if (min(slf) == 0) { + dmfp<-dmf[-which(slf==0),] + specfp <- specf[-which(slf==0),] + } else { + dmfp <- dmf + specfp <- specf + } + afcf <- ca(dmfp, nd = nd) + slt <- rowSums(dmt) + if (min(slt) == 0) { + dmtp<-dmt[-which(slt==0),] + spectp <- spect[-which(slt==0),] + } else { + dmtp <- dmt + spectp <- spect + } + afct <- ca(dmtp, nd = nd) + open_file_graph("%s", widt = 1000, height=1000) + plot(afcf, what=c('all','none'), labels=c(1,1)) + open_file_graph("%s", widt = 1000, height=1000) + plot(afcf, what=c('none','all'), labels=c(1,1)) + open_file_graph("%s", widt = 1000, height=1000) + plot(afct, what=c('all','none'), labels=c(1,1)) + open_file_graph("%s", widt = 1000, height=1000) + plot(afct, what=c('none','all'), labels=c(1,1)) + afcf <- AddCorrelationOk(afcf) + afct <- AddCorrelationOk(afct) + afcf <- summary.ca.dm(afcf) + afct <- summary.ca.dm(afct) + afcf_table <- create_afc_table(afcf) + afct_table <- create_afc_table(afct) + write.csv2(afcf_table$facteur, file = "%s") + write.csv2(afcf_table$colonne, file = "%s") + write.csv2(afcf_table$ligne, file = "%s") + write.csv2(afct_table$facteur, file = "%s") + write.csv2(afct_table$colonne, file = "%s") + write.csv2(afct_table$ligne, file = "%s") + debsup <- NULL + debet <- NULL + clnb <- ncol(specf) + """ % (self.dictpathout['afcf_row'], self.dictpathout['afcf_col'], self.dictpathout['afct_row'], self.dictpathout['afct_col'], self.dictpathout['afcf_facteur_csv'], self.dictpathout['afcf_col_csv'], self.dictpathout['afcf_row_csv'], self.dictpathout['afct_facteur_csv'], self.dictpathout['afct_col_csv'], self.dictpathout['afct_row_csv']) + + txt += """ + save.image("%s") + """ % self.dictpathout['RData'] + tmpfile = tempfile.mktemp(dir=self.parent.TEMPDIR) + tmpscript = open(tmpfile, 'w') + tmpscript.write(txt) + tmpscript.close() + pid = exec_rcode(self.parent.RPath, tmpfile, wait = False) + while pid.poll() == None : + sleep(0.2) + check_Rresult(self.parent, pid) + + def preferences(self) : + listet = self.corpus.make_etoiles() + listet.sort() + variables = treat_var_mod(listet) + var = [v for v in variables] + dial = OptLexi(self.parent) + dial.listet = listet + dial.variables = var + for et in var : + dial.list_box_1.Append(et) + dial.CenterOnParent() + self.dialok = dial.ShowModal() + if self.dialok == wx.ID_OK : + if dial.choice.GetSelection() == 1 : + ListEt = [listet[i] for i in dial.list_box_1.GetSelections()] + else : + ListEt = variables[var[dial.list_box_1.GetSelections()[0]]] + self.listet = ListEt + self.parametres['mineff'] = dial.spin.GetValue() + if dial.choice_indice.GetSelection() == 0 : + self.parametres['indice'] = 'hypergeo' + else : + self.parametres['indice'] = 'chi2' + self.parametres['clnb'] = len(ListEt) + if dial.checklem.GetValue() : + self.parametres['lem'] = 1 + else : + self.parametres['lem'] = 0 + dial.Destroy() + return self.parametres + else : + dial.Destroy() + return None + + def make_lexico(self) : +# listet = self.corpus.make_etoiles() +# listet.sort() +# variables = treat_var_mod(listet) +# var = [v for v in variables] +# if self.dlg : +# dial = OptLexi(self.parent) +# dial.listet = listet +# dial.variables = var +# for et in var : +# dial.list_box_1.Append(et) +# dial.CenterOnParent() +# val = dial.ShowModal() +# if val == wx.ID_OK : +# if dial.choice.GetSelection() == 1 : +# ListEt = [listet[i] for i in dial.list_box_1.GetSelections()] +# else : +# ListEt = variables[var[dial.list_box_1.GetSelections()[0]]] +# mineff = dial.spin.GetValue() +# if dial.choice_indice.GetSelection() == 0 : +# indice = 'hypergeo' +# else : +# indice = 'chi2' +# self.parametres = {'indice' : indice} +# dial.Destroy() +# else : +# dial.Destroy() +# else : + mineff = self.parametres['mineff'] + #dlg = progressbar(self, maxi = 3) + tabout = self.corpus.make_lexitable(mineff, self.listet) + write_tab(tabout, self.dictpathout['tableafcm']) + tabout = self.corpus.make_efftype_from_etoiles(self.listet) + write_tab(tabout, self.dictpathout['tabletypem']) + #dlg.Update(2, u'R...') + self.DoR() + #dlg.Update(3, u'Chargement...') + afcf_graph_list = [[os.path.basename(self.dictpathout['afcf_row']), u'lignes'],\ + [os.path.basename(self.dictpathout['afcf_col']), u'colonnes']] + afct_graph_list = [[os.path.basename(self.dictpathout['afct_row']), u'lignes'],\ + [os.path.basename(self.dictpathout['afct_col']), u'colonnes']] + print_liste(self.dictpathout['liste_graph_afcf'],afcf_graph_list) + print_liste(self.dictpathout['liste_graph_afct'],afct_graph_list) + #CreateIraFile(self.dictpathout, 0, corpname = os.path.basename(self.corpus.parametre['filename']), section = 'lexico') + DoConf().makeoptions(['spec'],[self.parametres], self.dictpathout['ira']) + #OpenAnalyse(self.parent, self.dictpathout['ira']) + #dolayout(self) + #dlg.Destroy() diff --git a/textchdalc.py b/textchdalc.py new file mode 100644 index 0000000..9e8b4ad --- /dev/null +++ b/textchdalc.py @@ -0,0 +1,299 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ConstructPathOut, ChdTxtPathOut +from OptionAlceste import OptionAlc +import wx +import os +from ConfigParser import RawConfigParser +import sys +from functions import sortedby, print_liste, CreateIraFile, exec_rcode, ReadDicoAsDico, check_Rresult +from dialog import PrefGraph +from layout import OpenCHDS, PrintRapport +from PrintRScript import RchdTxt, AlcesteTxtProf +from openanalyse import OpenAnalyse +from corpus import Corpus +from guifunct import getPage, getCorpus +from time import time, sleep + +class AnalyseAlceste : + def __init__(self,parent, cmd = False, big = False): + self.conf = None + self.parent = parent + self.type = 'alceste' + self.cmd = cmd + self.big = big + #page = getPage(self.parent) + #if page is not None : + # self.corpus = getCorpus(page) + # print self.corpus.parametre + #else : + try : + self.corpus = Corpus(parent) + self.corpus.parametre['encodage'] = parent.corpus_encodage + self.corpus.parametre['lang'] = parent.corpus_lang + self.corpus.parametre['filename'] = parent.filename + self.ConfigPath = parent.ConfigPath + self.DictPath = parent.DictPath + self.AlcesteConf = RawConfigParser() + self.AlcesteConf.read(self.ConfigPath['alceste']) + self.KeyConf = RawConfigParser() + self.KeyConf.read(self.ConfigPath['key']) + if not cmd : + self.dial = OptionAlc(self, parent) + self.dial.CenterOnParent() + self.val = self.dial.ShowModal() + self.print_alceste_parametre() + self.dial.Destroy() + else : + self.val = wx.ID_OK + if self.val == wx.ID_OK : + pathout = ConstructPathOut(self.corpus.parametre['filename'], 'alceste') + self.dictpathout = ChdTxtPathOut(pathout) + self.read_alceste_parametre() + self.KeyConf.read(self.ConfigPath['key']) + self.corpus.supplementaires = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "2"] + self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] + self.make_analyse() + except AttributeError : + wx.MessageBox(u'Vous devez charger un corpus\nFichier -> Ouvrir un texte', u'Pas de corpus', wx.OK|wx.ICON_INFORMATION) + self.val = False + + def load_corpus(self): + self.corpus.read_formes() + self.corpus.read_lems() + self.corpus.read_ucis_paras_uces() + self.corpus.read_parametre() + + def print_alceste_parametre(self): + self.conf = RawConfigParser() + self.conf.read(self.parent.ConfigPath['alceste']) + lem = self.dial.radio_1.GetSelection() + expressions = self.dial.radio_exp.GetSelection() + if lem == 0 : lem = 'True' + else : lem = 'False' + if expressions == 0 : expressions = 'True' + else : expressions = 'False' + self.AlcesteConf.set('ALCESTE','lem',lem) + self.AlcesteConf.set('ALCESTE', 'expressions', expressions) + self.AlcesteConf.set('ALCESTE', 'classif_mode', str(self.dial.radio_box_2.GetSelection())) + self.AlcesteConf.set('ALCESTE', 'tailleuc1', str(self.dial.spin_ctrl_1.GetValue())) + self.AlcesteConf.set('ALCESTE', 'tailleuc2', str(self.dial.spin_ctrl_2.GetValue())) + self.AlcesteConf.set('ALCESTE', 'nbforme_uce', str(self.dial.spin_ctrl_3.GetValue())) + self.AlcesteConf.set('ALCESTE', 'mincl', str(self.dial.spin_ctrl_4.GetValue())) + self.AlcesteConf.set('ALCESTE', 'minforme', str(self.dial.spin_ctrl_5.GetValue())) + self.AlcesteConf.set('ALCESTE', 'nbcl_p1', str(self.dial.spin_nbcl.GetValue())) + self.AlcesteConf.set('ALCESTE', 'max_actives', str(self.dial.spin_max_actives.GetValue())) + with open(self.parent.ConfigPath['alceste'], 'w') as f: + self.AlcesteConf.write(f) + with open(self.parent.ConfigPath['key'], 'w') as f: + self.KeyConf.write(f) + + def read_alceste_parametre(self) : + self.conf = RawConfigParser() + self.conf.read(self.parent.ConfigPath['alceste']) + for option in self.conf.options('ALCESTE') : + if self.conf.get('ALCESTE', option).isdigit() : + self.corpus.parametre[option] = int(self.conf.get('ALCESTE', option)) + else : + self.corpus.parametre[option] = self.conf.get('ALCESTE', option) + + list_bool = ['lem', 'expressions'] + for var in list_bool : + if self.corpus.parametre[var] == 'True' : + self.corpus.parametre[var] = True + else : + self.corpus.parametre[var] = False + + def make_analyse(self) : + t1 = time() + if not self.big : + self.corpus.content = self.parent.content + if not self.cmd : + self.dlg = wx.ProgressDialog("Traitements", + "Veuillez patienter...", + maximum=9, + parent=self.parent, + style=wx.PD_APP_MODAL | wx.PD_AUTO_HIDE | wx.PD_ELAPSED_TIME | wx.PD_CAN_ABORT + ) + self.dlg.Center() + else : + self.dlg = None + ucis_txt, ucis_paras_txt = self.corpus.start_analyse(self.parent, dlg = self.dlg, cmd = self.cmd) + # #print('ATTENTION PHRASE') + # #ucis_paras_txt = self.corpus.make_ucis_paras_txt_phrases(para_coords, ucis_lines, ucis_txt) + # del ucis_lines + + #FIXME + self.corpus.make_len_uce(self.corpus.get_tot_occ_from_ucis_txt(ucis_txt)) + del ucis_txt + + if not self.cmd : + self.dlg.Update(5, '%i ucis - Construction des uces' % len(self.corpus.ucis)) + + if self.corpus.parametre['classif_mode'] in [0,1] : + self.corpus.make_ucis_paras_uces(ucis_paras_txt, make_uce = True) + #self.corpus.make_ucis_paras_uces_sentences(ucis_paras_txt, make_uce = True) + else : + self.corpus.make_ucis_paras_uces(ucis_paras_txt, make_uce = False) + del ucis_paras_txt + + print 'len(ucis_paras_uces', len(self.corpus.ucis_paras_uces) + + if not self.cmd : + self.dlg.Update(6, u'Dictionnaires') + uces, orderuces = self.corpus.make_forms_and_uces() + + print len(uces) + print len(orderuces) + self.corpus.ucenb = len(uces) + print 'len(uces)',len(uces) + #ucis_paras_uces_lems = self.corpus.make_ucis_paras_uces_lems(lexique) + self.corpus.make_lems(self.parent.lexique) + + #---------------------------------------------- + #self.corpus.make_eff_min_forme() + #self.corpus.parametre['max_actives'] = 1500 + self.corpus.min_eff_formes() + #---------------------------------------------- + + self.corpus.make_var_actives() + + self.corpus.make_var_supp() + + if not self.cmd : + self.dlg.Update(7, u'Creation des tableaux') + if self.corpus.parametre['classif_mode'] == 1 : + #tabuc1 = self.corpus.make_sparse_matrix_with_uce(orderuces) + #self.corpus.write_sparse_matrix(self.dictpathout['TableUc1'], tabuc1, len(orderuces), len(self.corpus.actives)) + #print time() - tps1 + #tps2 = time() + self.corpus.make_and_write_sparse_matrix_from_uce(orderuces, self.dictpathout['TableUc1']) + #print time() - tps2 + + #tabuc1 = self.corpus.make_table_with_uce(orderuces) + uc1 = None + uces1 = [[uce, orderuces[uce]] for uce in orderuces] + uces1 = sortedby(uces1, 1) + self.corpus.lenuc1 = len(uces1) + #uces1.sort() + self.corpus.write_tab([[u'uce',u'uc']] + [[i, i] for i in range(0,len(uces))], self.dictpathout['listeuce1']) + elif self.corpus.parametre['classif_mode'] == 0 : + self.corpus.lenuc1, uces_uc1 = self.corpus.make_uc(uces, orderuces, self.corpus.parametre['tailleuc1']) + print 'len uc1 : ', self.corpus.lenuc1 + uces1 = [[uce,uces_uc1[uce]] for uce in orderuces] + uces1 = sortedby(uces1, 1) + self.corpus.write_tab([[u'uce',u'uc']] + [[i, val[1]] for i, val in enumerate(uces1)], self.dictpathout['listeuce1']) + #tabuc1 = self.corpus.make_tab_uc(uces_uc1, uc1) + self.corpus.make_and_write_sparse_matrix_from_uc(uces_uc1, self.dictpathout['TableUc1']) + elif self.corpus.parametre['classif_mode'] == 2 : + #tabuc1 = self.corpus.make_table_with_uci() + self.corpus.make_and_write_sparse_matrix_from_uci(self.dictpathout['TableUc1']) + uc1 = None + uces1 = [[uce, orderuces[uce]] for uce in orderuces] + uces1 = sortedby(uces1, 1) + self.corpus.lenuc1 = len(uces1) + self.corpus.write_tab([[u'uce',u'uc']] + [[i, i] for i in range(0,len(orderuces))], self.dictpathout['listeuce1']) + + #self.corpus.write_sparse_matrix(self.dictpathout['TableUc1'], tabuc1, len(orderuces), len(self.corpus.actives)) + #self.corpus.write_tab(tabuc1,self.dictpathout['TableUc1']) + + if self.corpus.parametre['classif_mode'] == 0 : + self.corpus.lenuc2, uces_uc2 = self.corpus.make_uc(uces, orderuces, self.corpus.parametre['tailleuc2']) + print 'len uc2 :', self.corpus.lenuc2 + #tabuc2 = self.corpus.make_tab_uc(uces_uc2, uc2) + self.corpus.make_and_write_sparse_matrix_from_uc(uces_uc2, self.dictpathout['TableUc2']) + #self.corpus.write_tab(tabuc2, self.dictpathout['TableUc2']) + uces2 = [[uce, uces_uc2[uce]] for uce in orderuces] + uces2 = sortedby(uces2, 1) + self.corpus.write_tab([[u'uce',u'uc']] + [[i, val[1]] for i, val in enumerate(uces2)], self.dictpathout['listeuce2']) + + if sys.platform == 'win32' : + try : + if self.parent.pref.getboolean('iramuteq', 'R_mem') : + R_max_mem = self.parent.pref.getint('iramuteq','R_max_mem') + else : + R_max_mem = False + except : + R_max_mem = False + else : + R_max_mem = False + RchdTxt(self.dictpathout, self.parent.RscriptsPath, self.corpus.parametre['mincl'], self.corpus.parametre['classif_mode'], nbt = self.corpus.parametre['nbcl_p1'] - 1, libsvdc = self.parent.pref.getboolean('iramuteq','libsvdc'), libsvdc_path = self.parent.pref.get('iramuteq','libsvdc_path'), R_max_mem = R_max_mem) + + pid = exec_rcode(self.parent.RPath,self.dictpathout['Rchdtxt'],wait = False) + while pid.poll() == None : + if not self.cmd : + self.dlg.Pulse(u'CHD...') + sleep(0.2) + else : + sleep(0.2) + check_Rresult(self.parent, pid) + if not self.cmd : + self.dlg.Update(7, u'Profils') + ucecl = self.corpus.read_uce_from_R(self.dictpathout['uce']) + ucecl0 = [cl for uce,cl in ucecl if cl != 0] + clnb = len(list(set(ucecl0))) + classes = [cl for uce, cl in ucecl] + uces1 = [val for val, i in uces1] + + self.corpus.make_lc(uces1, classes, clnb) + self.corpus.build_profile(clnb, classes, self.corpus.actives, self.dictpathout['Contout']) + + #passives = [lem for lem in self.corpus.lems if lem not in self.corpus.actives] + self.corpus.build_profile(clnb, classes, self.corpus.supp, self.dictpathout['ContSupOut']) + + self.corpus.make_etoiles(self.corpus.para_coords) + + self.corpus.build_profile_et(clnb, classes, uces1, self.dictpathout['ContEtOut']) + + AlcesteTxtProf(self.dictpathout, self.parent.RscriptsPath, clnb, '0.9') + + pid = exec_rcode(self.parent.RPath, self.dictpathout['RTxtProfGraph'],wait = False) + while pid.poll() == None : + if not self.cmd : + self.dlg.Pulse(u'AFC...') + sleep(0.2) + else : + pass + check_Rresult(self.parent, pid) + + self.corpus.dictpathout = self.dictpathout + + if not self.cmd : + self.dlg.Update(8, u'rapport') + + temps = time() - t1 + self.corpus.minutes, self.corpus.seconds = divmod(temps, 60) + self.corpus.hours, self.corpus.minutes = divmod(self.corpus.minutes, 60) + + PrintRapport(self.corpus, 'txt') + + CreateIraFile(self.dictpathout, clnb, os.path.basename(self.corpus.parametre['filename'])) + + self.corpus.save_corpus(self.dictpathout['db']) + + afc_graph_list = [[os.path.basename(self.dictpathout['AFC2DL_OUT']), u'Variables actives - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DSL_OUT']), u'variables supplémentaires - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DEL_OUT']), u'Variables illustratives - Coordonnées - facteur 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCL_OUT']), u'Classes - Coordonnées - facteur 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCoul']), u'Variables actives - Corrélation - facteur 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCoulSup']), u'Variables supplémentaires - Corrélation - facteur 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCoulEt']), u'Variables illustratives - Corrélations - facteur 1 / 2'], + [os.path.basename(self.dictpathout['AFC2DCoulCl']), u'Classes - Corrélations - facteurs 1 / 2'],] + chd_graph_list = [[os.path.basename(self.dictpathout['dendro1']), u'dendrogramme à partir de chd1']] + if self.corpus.parametre['classif_mode'] == 0 : + chd_graph_list.append([os.path.basename(self.dictpathout['dendro2']), u'dendrogramme à partir de chd2']) + chd_graph_list.append([os.path.basename(self.dictpathout['arbre1']), u'chd1']) + if self.corpus.parametre['classif_mode'] == 0 : + chd_graph_list.append([os.path.basename(self.dictpathout['arbre2']), u'chd2']) + print_liste(self.dictpathout['liste_graph_afc'],afc_graph_list) + print_liste(self.dictpathout['liste_graph_chd'],chd_graph_list) + if not self.cmd : + self.dlg.Update(9, u'fin') + self.dlg.Destroy() + OpenAnalyse(self.parent, self.dictpathout['ira']) + else : + self.corpus.make_big() diff --git a/textcheckcorpus.py b/textcheckcorpus.py new file mode 100644 index 0000000..1c52739 --- /dev/null +++ b/textcheckcorpus.py @@ -0,0 +1,65 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2010, Pierre Ratinaud +#Lisense: GNU/GPL +from corpus import Corpus +import wx +import wx.lib.dialogs + + +def checkline(line, lnb) : + if line.startswith(u'****') or (line[0:4].isdigit() and u'*' in line) : + if u' * ' in line : + return [False, 1, lnb] + else : + lp = line.split() + lp.pop(0) + gv = [val for val in lp if not val.startswith(u'*') or (u'-' in val)] + if len(gv) != 0 : + return [False, 4, lnb] + else : + return [True] + + elif line.startswith(u'-*') : + if u' ' in line.strip() : + return [False, 2, lnb] + else : + return [True] + elif u'*' in line : + return [False, 3, lnb] + else : + return [True] + + +class checkcorpus : + def __init__(self, parent): + self.parent = parent + self.corpus = Corpus(parent) + self.corpus.parametre['encodage'] = parent.corpus_encodage + self.corpus.parametre['filename'] = parent.filename + self.corpus.content = parent.content + res = [checkline(line, i) for i, line in enumerate(self.corpus.content.strip().splitlines())] + res_nok = [val for val in res if not val[0]] + if len(res_nok) != 0 : + erreur_label = {1 : u"une variable étoilée contient un espace", + 2 : u"une thématique contient un espace", + 3 : u"étoile dans ligne de texte", + 4 : u"une variable étoilée contient un espace ou un -" + } + erreur = [[u'ligne %i' % val[2], erreur_label[val[1]]] for val in res_nok] + txt = '\n----------------\n'.join(['\t'.join(line) for line in erreur]) + for val in res_nok : + deb = self.parent.text_ctrl_txt.XYToPosition(0,val[2]) + fin = deb + self.parent.text_ctrl_txt.GetLineLength(val[2]) + self.parent.text_ctrl_txt.SetStyle(deb, fin, wx.TextAttr("#ff9c00", "#000000")) + msg = u"Veuillez corriger les fautes suivantes dans un éditeur de texte\npuis rechargez le corpus :\n\n" + txt + win = wx.lib.dialogs.ScrolledMessageDialog(self.parent, msg, u"Erreurs") + win.CenterOnParent() + win.ShowModal() + win.Destroy() + else : + win = wx.MessageDialog(parent, "Pas de fautes !", "Corpus ok", wx.OK | wx.ICON_INFORMATION) + win.CenterOnParent() + win.ShowModal() + win.Destroy() diff --git a/textclassechd.py b/textclassechd.py new file mode 100644 index 0000000..5bff4eb --- /dev/null +++ b/textclassechd.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2012, Pierre Ratinaud +#Lisense: GNU/GPL + +import os + + +class ClasseCHD : + def __init__(self, parent, corpus, classe, cmd = False) : + self.parent = parent + self.cmd = cmd + self.corpus = self.corpus_from_classe(corpus, classe, False) + + def corpus_from_classe(self, corpus, classe, lem) : + if lem : + ucis_paras_uces = corpus.make_ucis_paras_uces_lems() + else : + ucis_paras_uces = corpus.ucis_paras_uces + ucecl = {} + for i, lc in enumerate(corpus.lc) : + for uce in lc : + ucecl[uce] = i + 1 + for uce in corpus.lc0 : + ucecl[uce] = 0 + ucecltri = ucecl.keys() + #ucecltri = [[int(val) for val in uce] for uce in ucecltri] + ucecltri.sort() + res = [[u'**** *classe_%i ' % ucecl[uce] + ' '.join(corpus.etoiles[uce[0]][uce[1]][uce[2]]), ' '.join(ucis_paras_uces[uce[0]][uce[1]][uce[2]])] for uce in ucecltri if ucecl[uce] == classe] + fileout = os.path.dirname(corpus.dictpathout['ira']) + fileout = os.path.join(fileout, 'corpus_classe_%i.txt' % classe) + print fileout + with open(fileout,'w') as f : + f.write('\n'.join(['\n'.join(uce) for uce in res])) + self.parent.filename = fileout + if not self.cmd : + self.parent.OpenText() + diff --git a/textdist.py b/textdist.py new file mode 100644 index 0000000..c7fc133 --- /dev/null +++ b/textdist.py @@ -0,0 +1,202 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ConstructPathOut, ConstructAfcUciPath, ChdTxtPathOut +from corpus import Corpus +from OptionAlceste import OptionPam +import wx +import os +from ConfigParser import * +import sys +from functions import print_liste, exec_rcode, CreateIraFile, progressbar, check_Rresult, BugDialog +from layout import PrintRapport +from PrintRScript import AlcesteTxtProf, RPamTxt +from openanalyse import OpenAnalyse +from time import time, sleep + + +class AnalysePam: + def __init__(self, parent, corpus, cmd = False): + t1 = time() + self.parent = parent + self.corpus = corpus + self.cmd = cmd + if not self.cmd : + self.dlg = progressbar(self, 9) + else : + self.dlg = None + ucis_txt, ucis_paras_txt = self.corpus.start_analyse(self.parent, dlg = self.dlg, cmd = self.cmd) + self.corpus.make_len_uce(self.corpus.get_tot_occ_from_ucis_txt(ucis_txt)) + del ucis_txt + if not self.cmd : + self.dlg.Update(5, '%i ucis - Construction des uces' % len(self.corpus.ucis)) + if self.corpus.parametre['type'] == 0 : + self.corpus.make_ucis_paras_uces(ucis_paras_txt, make_uce = True) + else : + self.corpus.make_ucis_paras_uces(ucis_paras_txt, make_uce = False) + del ucis_paras_txt + + if not self.cmd : + self.dlg.Update(6, u'Dictionnaires') + uces, orderuces = self.corpus.make_forms_and_uces() + self.corpus.ucenb = len(uces) + self.corpus.make_lems(self.parent.lexique) + self.corpus.min_eff_formes() + self.corpus.make_var_actives() + self.corpus.make_var_supp() + + if not self.cmd : + self.dlg.Update(7, u'Creation des tableaux') + if self.corpus.parametre['type'] == 0: + tabuc1 = self.corpus.make_table_with_uce(orderuces) + uc1 = None + uces1 = [[uce, i] for i,uce in enumerate(orderuces)] + self.corpus.write_tab([[u'uce',u'uc']] + [[i, i] for i in range(0,len(uces))], self.corpus.dictpathout['listeuce1']) + else : + tabuc1 = self.corpus.make_table_with_uci() + uc1 = None + uces1 = [[uce, i] for i, uce in enumerate(orderuces)] + self.corpus.write_tab([[u'uce',u'uc']] + [[i, i] for i in range(0,len(orderuces))], self.corpus.dictpathout['listeuce1']) + self.corpus.write_tab(tabuc1,self.corpus.dictpathout['TableUc1']) + self.corpus.lenuc1 = len(tabuc1) + del tabuc1, uc1 + RPamTxt(self.corpus, self.parent.RscriptsPath) + pid = exec_rcode(self.parent.RPath,self.corpus.dictpathout['Rchdtxt'], wait = False) + while pid.poll() == None : + if not self.cmd : + self.dlg.Pulse(u'CHD...') + sleep(0.2) + else : + pass + check_Rresult(self.parent, pid) + ucecl = self.corpus.read_uce_from_R(self.corpus.dictpathout['uce']) + ucecl0 = [cl for uce,cl in ucecl if cl != 0] + clnb = len(list(set(ucecl0))) + classes = [cl for uce, cl in ucecl] + uces1 = [val for val, i in uces1] + self.corpus.make_lc(uces1, classes, clnb) + self.corpus.build_profile(clnb, classes, self.corpus.actives, self.corpus.dictpathout['Contout']) + + #passives = [lem for lem in self.corpus.lems if lem not in self.corpus.actives] + self.corpus.build_profile(clnb, classes, self.corpus.supp, self.corpus.dictpathout['ContSupOut']) + self.corpus.make_etoiles(self.corpus.para_coords) + self.corpus.build_profile_et(clnb, classes, uces1, self.corpus.dictpathout['ContEtOut']) + AlcesteTxtProf(self.corpus.dictpathout, self.parent.RscriptsPath, clnb, '0.9') + pid = exec_rcode(self.parent.RPath, self.corpus.dictpathout['RTxtProfGraph'], wait = False) + while pid.poll() == None : + if not self.cmd : + self.dlg.Pulse(u'AFC...') + sleep(0.2) + else : + pass + check_Rresult(self.parent, pid) + temps = time() - t1 + self.corpus.minutes, self.corpus.seconds = divmod(temps, 60) + self.corpus.hours, self.corpus.minutes = divmod(self.corpus.minutes, 60) + PrintRapport(self.corpus, 'txt') + CreateIraFile(self.corpus.dictpathout, clnb, os.path.basename(self.corpus.parametre['filename'])) + self.corpus.save_corpus(self.corpus.dictpathout['db']) + afc_graph_list = [[os.path.basename(self.corpus.dictpathout['AFC2DL_OUT']), u'Variables actives - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.corpus.dictpathout['AFC2DSL_OUT']), u'variables supplémentaires - coordonnées - facteurs 1 / 2'], + [os.path.basename(self.corpus.dictpathout['AFC2DEL_OUT']), u'Variables illustratives - Coordonnées - facteur 1 / 2'], + [os.path.basename(self.corpus.dictpathout['AFC2DCL_OUT']), u'Classes - Coordonnées - facteur 1 / 2'], + [os.path.basename(self.corpus.dictpathout['AFC2DCoul']), u'Variables actives - Corrélation - facteur 1/2'], + [os.path.basename(self.corpus.dictpathout['AFC2DCoulSup']), u'Variables supplémentaires - Corrélation - facteur 1 / 2'], + [os.path.basename(self.corpus.dictpathout['AFC2DCoulEt']), u'Variables illustratives - Corrélations - facteur 1 / 2'], + [os.path.basename(self.corpus.dictpathout['AFC2DCoulCl']), u'Classes - Corrélations - facteurs 1 / 2'],] + chd_graph_list = [[os.path.basename(self.corpus.dictpathout['arbre1']), u'résultats de la classification']] + print_liste(self.corpus.dictpathout['liste_graph_afc'],afc_graph_list) + print_liste(self.corpus.dictpathout['liste_graph_chd'],chd_graph_list) + if not self.cmd : + self.dlg.Update(9, u'fin') + self.dlg.Destroy() + OpenAnalyse(self.parent, self.corpus.dictpathout['ira']) + print 'fini' + + + +class PamTxt: + def __init__(self, parent, cmd = False): + print 'pam txt' + self.type = 'pamsimple' + self.parent = parent + self.ConfigPath = parent.ConfigPath + self.DictPath = parent.DictPath + self.pamconf = ConfigParser() + self.pamconf.read(self.ConfigPath['pam']) + self.KeyConf = ConfigParser() + self.KeyConf.read(self.ConfigPath['key']) + self.corpus = Corpus(parent) + try : + self.corpus.content = self.parent.content + self.corpus.parametre['encodage'] = parent.corpus_encodage + self.corpus.parametre['filename'] = parent.filename + self.corpus.parametre['lang'] = parent.corpus_lang + if not cmd : + self.dial = OptionPam(self, parent) + self.dial.CenterOnParent() + self.val = self.dial.ShowModal() + self.print_param() + else : + self.val = wx.ID_OK + + if self.val == wx.ID_OK : + file = open(self.ConfigPath['key'], 'w') + self.KeyConf.write(file) + file.close() + + self.read_param() + #self.corpus.parametre.update(param) + self.corpus.supplementaires = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "2"] + self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] + self.corpus.dictpathout = ChdTxtPathOut(ConstructPathOut(self.corpus.parametre['filename'], 'PamSimple')) + AnalysePam(parent, self.corpus ,cmd = cmd) + except AttributeError : + wx.MessageBox(u'Vous devez charger un corpus\nFichier -> Ouvrir un texte', u'Pas de corpus', wx.OK|wx.ICON_INFORMATION) + self.val = False + + def print_param(self) : + self.pamconf = RawConfigParser() + self.pamconf.read(self.parent.ConfigPath['pam']) + vallem = self.dial.radio_1.GetSelection() + if vallem == 0 : vallem = True + else : vallem = False + expressions = self.dial.radio_exp.GetSelection() + if expressions == 0 : expressions = True + else: expressions = False + if self.dial.cltype[self.dial.radio_box_3.GetSelection()] == u'k-means (pam)' : cluster_type = 'pam' + else : cluster_type = 'fanny' + self.pamconf.set('pam', 'lem', vallem) + self.pamconf.set('pam', 'expressions', expressions) + self.pamconf.set('pam', 'type', self.dial.radio_box_classif.GetSelection()) + self.pamconf.set('pam', 'method', self.dial.distance[self.dial.choice_1.GetSelection()]) + self.pamconf.set('pam', 'cluster_type', cluster_type) + self.pamconf.set('pam', 'nbforme_uce', str(self.dial.spin_ctrl_3.GetValue())) + self.pamconf.set('pam', 'nbcl', str(self.dial.spin_ctrl_4.GetValue())) + self.pamconf.set('pam', 'expressions', expressions) + self.pamconf.set('pam', 'max_actives', str(self.dial.spin_max_actives.GetValue())) + + with open(self.ConfigPath['pam'], 'w') as fileout : + self.pamconf.write(fileout) + + def read_param(self) : + conf = RawConfigParser() + conf.read(self.parent.ConfigPath['pam']) + for option in conf.options('pam') : + if conf.get('pam', option).isdigit() : + self.corpus.parametre[option] = int(conf.get('pam', option)) + else : + self.corpus.parametre[option] = conf.get('pam', option) + list_bool = ['lem', 'expressions'] + for val in list_bool : + if self.corpus.parametre[val] == 'True' : + self.corpus.parametre[val] = True + else : + self.corpus.parametre[val] = False + if self.corpus.parametre['type'] == 0 : + self.corpus.parametre['classif_mode'] = 1 + else : + self.corpus.parametre['classif_mode'] = 2 diff --git a/textsimi.py b/textsimi.py new file mode 100644 index 0000000..1340276 --- /dev/null +++ b/textsimi.py @@ -0,0 +1,170 @@ +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2011 Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ConstructPathOut, construct_simipath +from corpus import Corpus +import os +from ConfigParser import RawConfigParser +from guifunct import getPage, getCorpus +from dialog import StatDialog +from functions import indices_simi, progressbar, treat_var_mod +from tableau import Tableau +from tabsimi import DoSimi +import wx +from copy import copy + +class SimiTxt : + def __init__(self, parent, cmd = False, param = None): + self.parent = parent + self.cmd = cmd + self.ConfigPath = parent.ConfigPath + self.DictPath = parent.DictPath + self.KeyConf = RawConfigParser() + self.KeyConf.read(self.ConfigPath['key']) + self.indices = indices_simi + self.paramsimi = {'coeff' : 0, + 'layout' : 2, + 'type' : 1, + 'arbremax' : 1, + 'coeff_tv' : 1, + 'coeff_tv_nb' : 0, + 'tvprop' : 0, + 'tvmin' : 5, + 'tvmax' : 30, + 'coeff_te' : 1, + 'coeff_temin' : 1, + 'coeff_temax' : 10, + 'label_v': 1, + 'label_e': 0, + 'vcex' : 1, + 'cexfromchi' : False, + 'vcexmin' : 10, + 'vcexmax' : 25, + 'cex' : 10, + 'seuil_ok' : 0, + 'seuil' : 1, + 'cols' : (255,0,0), + 'cola' : (200,200,200), + 'width' : 1000, + 'height' : 1000, + 'bystar' : False, + 'first' : True, + 'keep_coord' : True, + 'alpha' : 20, + 'film': False, + } + page = getPage(self.parent) + if page is not None : + self.corpus = getCorpus(page) + if self.corpus is not None : + self.pathout = ConstructPathOut(self.corpus.parametre['openpath'], 'simitxt') + self.dictpathout = construct_simipath(self.pathout) + self.val = wx.ID_OK + self.make_table() + self.make_simi() + else : + self.corpus = Corpus(parent) + self.corpus.content = self.parent.content + self.corpus.parametre['encodage'] = parent.corpus_encodage + self.corpus.parametre['lang'] = parent.corpus_lang + self.corpus.parametre['filename'] = parent.filename + self.corpus.parametre['eff_min_uce'] = None + self.pathout = ConstructPathOut(self.corpus.parametre['filename'], 'simitxt') + self.dictpathout = construct_simipath(self.pathout) + dial = StatDialog(self, self.parent) + dial.check_uce.SetValue(True) + dial.check_uce.Enable(False) + dial.OnCheckUce(wx.EVT_MENU) + self.val = dial.ShowModal() + if self.val == wx.ID_OK : + with open(self.parent.ConfigPath['key'], 'w') as f: + self.KeyConf.write(f) + if dial.radio_lem.GetSelection() == 0 : lem = True + else : lem = False + if dial.exp.GetSelection() == 0 : exp = True + else : exp = False + dial.Destroy() + self.corpus.parametre['lem'] = lem + self.corpus.parametre['expressions'] = exp + self.corpus.parametre['nbforme_uce'] = dial.spin_ctrl_4.GetValue() + self.corpus.parametre['eff_min_forme'] = dial.spin_ctrl_5.GetValue() + self.corpus.parametre['max_actives'] = dial.spin_max_actives.GetValue() + self.make_corpus() + self.make_table() + self.make_simi() + else : + dial.Destroy() + + def make_corpus(self) : + print 'make corpus' + if not self.cmd : + dlg = progressbar(self, maxi = 6) + self.corpus.supplementaires = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "2"] + self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] + ucis_txt, ucis_paras_txt = self.corpus.start_analyse(self.parent, dlg = dlg, cmd = self.cmd) + del ucis_txt + + if not self.cmd : + dlg.Update(5, '%i ucis - Construction des uces' % len(ucis_paras_txt)) + self.corpus.make_ucis_paras_uces(ucis_paras_txt, make_uce = True) + del ucis_paras_txt + + if self.corpus.para_coords != [[] for val in self.corpus.para_coords] : + self.corpus.parametre['para'] = True + else : + self.corpus.parametre['para'] = False + self.corpus.make_etoiles(self.corpus.para_coords) + print 'len(ucis_paras_uces)', len(self.corpus.ucis_paras_uces) + + if not self.cmd : + dlg.Update(6, u'Dictionnaires') + uces, self.orderuces = self.corpus.make_forms_and_uces() + self.corpus.ucenb = len(uces) + self.corpus.make_lems(self.parent.lexique) + + self.corpus.make_var_actives() + self.corpus.make_var_supp() + self.corpus.lems_eff = self.corpus.make_lem_eff() + + #variables = treat_var_mod(listet) + #print(variables) + #self.corpus.write_etoiles(self.dictpathout['etoiles']) + if not self.cmd : + dlg.Destroy() + + def make_table(self) : + if 'orderuces' not in dir(self) : + self.orderuces = [(i,j,k) for i, uci in enumerate(self.corpus.ucis_paras_uces) for j, para in enumerate(uci) for k, uce in enumerate(para)] + self.orderuces = dict([[val, i] for i, val in enumerate(self.orderuces)]) + self.corpus.ucenb = len(self.orderuces) + #tabuc1 = self.corpus.make_table_with_uce(self.orderuces) + #tabuc1.insert(0,self.corpus.actives) + #tabuc1 = self.corpus.make_sparse_matrix_with_uce(self.orderuces) + #self.corpus.write_sparse_matrix(self.dictpathout['mat01'], tabuc1, self.corpus.ucenb, len(self.corpus.actives)) + if self.corpus.actives is None : + self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] + self.corpus.min_eff_formes() + self.corpus.make_var_actives() + self.corpus.make_and_write_sparse_matrix_from_uce(self.orderuces, self.dictpathout['mat01']) + #self.corpus.write_tab(tabuc1,self.dictpathout['mat01']) + + def make_simi(self) : + self.tableau = Tableau(self.parent, '') + self.tableau.listactives = self.corpus.actives + self.tableau.parametre['fromtxt'] = True + if 'lems_eff' not in dir(self.corpus) : + self.corpus.lems_eff = self.corpus.make_lem_eff() + #print('ATTENTION ETOILES') + #self.paramsimi['bystar'] = True + self.listet = self.corpus.get_unique_etoiles() + self.listet.sort() + self.tableau.listet = copy(self.listet) + self.paramsimi['stars'] = copy(self.listet) + #self.paramsimi['cexfromchi'] = True + self.paramsimi['sfromchi'] = False + #self.paramsimi['vlabcolor'] = True + self.tableau.actives = dict([[lem, self.corpus.lems_eff[lem]] for lem in self.corpus.actives]) + self.corpus.save_corpus(self.dictpathout['corpus']) + DoSimi(self, fromprof = self.dictpathout['mat01'], param = self.paramsimi, pathout = self.pathout) diff --git a/textstat.py b/textstat.py new file mode 100644 index 0000000..4d67879 --- /dev/null +++ b/textstat.py @@ -0,0 +1,316 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + +#from chemins import ConstructPathOut, StatTxtPathOut, ffr +from chemins import PathOut +from analysetxt import AnalyseText +#from corpus import Corpus +from guifunct import getPage, getCorpus +from ConfigParser import RawConfigParser +from functions import sortedby, progressbar, CreateIraFile, exec_rcode, check_Rresult, DoConf +from dialog import StatDialog +from openanalyse import OpenAnalyse +#from ttparser import * +import tempfile +from time import sleep +import wx +import os + +print 'TEST LOGGING' +import logging + +logger = logging.getLogger('iramuteq.textstat') + + + +class Stat(AnalyseText) : + def doanalyse(self) : + self.make_stats() + + def preferences(self) : + dial = StatDialog(self, self.parent) + dial.CenterOnParent() + val = dial.ShowModal() + if val == 5100 : + if dial.radio_lem.GetSelection() == 0 : + lem = 1 + else : + lem = 0 + self.parametres['lem'] = lem + dial.Destroy() + return self.parametres + else : + dial.Destroy() + return None + + def make_stats(self): + if self.dlg : + if not 'dlg' in dir(self) : + self.dlg = progressbar(self, 7) + #if not self.lem : + # formes = self.corpus.formes + #else : + # self.corpus.make_lems() + formes = self.corpus.lems + tot = [[forme, formes[forme].freq, formes[forme].gram] for forme in formes if formes[forme].freq > 1] + tot = sortedby(tot, 2,1) + tot = [[i, val] for i, val in enumerate(tot)] + hapax = [[forme, formes[forme].freq, formes[forme].gram] for forme in formes if formes[forme].freq == 1] + hapax = sortedby(hapax, 1, 1) + hapax = [[i, val] for i, val in enumerate(hapax)] + act = [[forme, formes[forme].freq, formes[forme].gram] for forme in formes if formes[forme].act == 1] + act = sortedby(act, 2, 1) + act = [[i, val] for i, val in enumerate(act)] + supp = [[forme, formes[forme].freq, formes[forme].gram] for forme in formes if formes[forme].act == 2] + supp = sortedby(supp, 2, 1) + + supp = [[i, val] for i, val in enumerate(supp)] + #self.corpus.pathout = self.dictpathout + #self.corpus.make_type_tot() + + self.result = {u'total' : dict(tot), u'formes_actives' : dict(act), u'formes_supplémentaires' : dict(supp), u'hapax' : dict(hapax), u'glob' : ''} + occurrences = sum([val[1][1] for val in tot]) + len(hapax) + phapax = (float(len(hapax)) / float(occurrences)) * 100 + phapax_forme = (float(len(hapax)) / (float(len(formes)))) * 100 + moy_occu_mot = float(occurrences) / float(len(formes)) + txt = 'Globale\n' + txt += 'nombre d\'uci : %i\n' % len(self.corpus.ucis) + txt += 'nombre d\'occurrences : %i\n' % occurrences + txt += 'nombre de formes : %i\n' % (len(formes)) + txt += 'moyenne d\'occurrences par forme : %.2f\n' % moy_occu_mot + txt += 'nombre d\'hapax : %i (%.2f%% des occurrences - %.2f%% des formes)\n' % (len(hapax), phapax, phapax_forme) + print float(occurrences), float(len(self.corpus.ucis)) + txt += 'moyenne d\'occurrences par uci : %.2f' % (float(occurrences)/float(len(self.corpus.ucis))) + if self.dlg : + self.dlg.Update(7, u'Ecriture...') + self.result['glob'] = txt + self.print_result() + # for Zipf grap + txt = """ + source("%s") + tot <- read.csv2("%s", header = FALSE, row.names = 1) + hapax <- read.csv2("%s", header = FALSE, row.names = 1) + tot <- rbind(tot, hapax) + open_file_graph("%s", width = 400, height = 400) + plot(log(tot[,1]), log = 'x', xlab='log(rangs)', ylab = 'log(frequences)', col = 'red', pch=16) + dev.off() + """ % (self.parent.RscriptsPath['Rgraph'], self.pathout['total.csv'], self.pathout['hapax.csv'], self.pathout['zipf.png']) + tmpscript = tempfile.mktemp(dir=self.parent.TEMPDIR) + with open(tmpscript, 'w') as f : + f.write(txt) + pid = exec_rcode(self.parent.RPath, tmpscript, wait = False) + while pid.poll() == None : + sleep(0.2) + check_Rresult(self.parent, pid) + #CreateIraFile(self.dictpathout, 0, corpname = os.path.basename(self.corpus.parametre['filename']), section = 'stat') + if self.dlg : + #OpenAnalyse(self.parent, self.pathout['Analyse.ira']) + #self.DoLayout(self.parent) + self.dlg.Destroy() + + def print_result(self) : + for key in self.result : + if key != 'glob' : + dico = self.result[key] + toprint = [[dico[val][0],`dico[val][1]`, dico[val][2]] for val in dico] + #toprint = [[line[0], `line[1]`] for line in self.result[key]] + with open(self.pathout['%s.csv' % key], 'w') as f : + f.write('\n'.join([';'.join([val for val in ligne]) for ligne in toprint]).encode(self.parent.syscoding)) + else : + with open(self.pathout['%s.txt' % 'glob'], 'w') as f : + f.write(self.result['glob'].encode(self.parent.syscoding)) + self.parametres['pathout'] = self.pathout['Analyse.ira'] + DoConf().makeoptions(['stat'],[self.parametres], self.pathout['Analyse.ira']) + + +#class Stat(): +# def __init__(self, parent, corpus, cmd = False, lem = True, exp = True): +##################################################################### +# logger.info('start text stat') +# self.conf = None +# self.parent = parent +# self.type = 'alceste' +# self.cmd = cmd +# self.ConfigPath = parent.ConfigPath +# self.DictPath = parent.DictPath +# self.KeyConf = RawConfigParser() +# self.KeyConf.read(self.ConfigPath['key']) +# page = getPage(self.parent) +# if page is not None : +# self.corpus = getCorpus(page) +# if self.corpus is not None : +# self.pathout = ConstructPathOut(self.corpus.parametre['openpath'], 'Stat') +# self.dictpathout = StatTxtPathOut(self.pathout) +# self.val = wx.ID_OK +# else : +# self.corpus = Corpus(parent) +# self.corpus.parametre['encodage'] = parent.corpus_encodage +# self.corpus.parametre['lang'] = parent.corpus_lang +# self.corpus.parametre['filename'] = parent.filename +# self.pathout = ConstructPathOut(self.corpus.parametre['filename'], 'Stat') +# self.dictpathout = StatTxtPathOut(self.pathout) +# self.corpus.dictpathout = self.dictpathout +# if not self.cmd : +# dial = StatDialog(self,parent) +# dial.CenterOnParent() +# self.val = dial.ShowModal() +# else : +# self.val = wx.ID_OK +# if self.val == wx.ID_OK : +# if not self.cmd : +# if dial.radio_lem.GetSelection() == 0 : lem = True +# else : lem = False +# if dial.exp.GetSelection() == 0 : exp = True +# else : exp = False +# self.make_uce = dial.check_uce.GetValue() +# self.corpus.parametre['nbforme_uce'] = dial.spin_ctrl_4.GetValue() +# self.corpus.parametre['max_actives'] = dial.spin_max_actives.GetValue() +# self.corpus.parametre['eff_min_uce'] = self.corpus.parametre['nbforme_uce'] +# else : +# lem = True +# exp = True +# self.make_uce = False +# self.corpus.parametre['nbforme_uce'] = None +# self.corpus.parametre['eff_min_uce'] = None +# self.corpus.parametre['lem'] = lem +# self.corpus.parametre['expressions'] = exp +# self.corpus.supplementaires = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "2"] +# self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] +# self.make_corpus() +# +# if self.val == wx.ID_OK : +# if 'supplementaires' not in dir(self.corpus) : +# print 'supplementaire' +# self.corpus.supplementaires = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "2"] +# print self.corpus.supplementaires +# else : +# print 'corpus supplementaires' +# print self.corpus.supplementaires +# if 'typeactive' not in dir(self.corpus) : +# self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] +# self.make_stats() +# +# def make_corpus(self) : +# if not self.cmd : +# self.dlg = progressbar(self, 7) +# else : +# self.dlg = None +# self.corpus.content = self.parent.content +# #print 'ATTENTION : FROM TT' +# #prepare_for_treetagger(self.corpus, self.parent) +# #get_ucis_from_tt(self.corpus) +# #qsdfqsdf +# ucis_txt, ucis_paras_txt = self.corpus.start_analyse(self.parent, dlg = self.dlg, cmd = self.cmd, fromtt = False) +# #self.corpus.make_et_table() +# #self.corpus.make_len_uce(self.corpus.get_tot_occ_from_ucis_txt(ucis_txt)) +## print 'ATTTTTENTION CHECK_DOUBLON' +## self.corpus.check_double(ucis_txt) +# del ucis_txt +# +# if not self.cmd : +# self.dlg.Update(5, '%i UCI...' % len(ucis_paras_txt)) +# self.corpus.make_ucis_paras_uces(ucis_paras_txt, make_uce = self.make_uce) +# del ucis_paras_txt +# +## print 'ATTENTION EFF PAR UCI' +## effuci = [[`i`, `len(uce)`] for i, uci in enumerate(self.corpus.ucis_paras_uces) for para in uci for uce in para] +## with open('/home/pierre/fac/identite/taille_uci.csv', 'w') as f : +## f.write('\n'.join([';'.join(val) for val in effuci])) +## print effuci[0:30] +## print max(effuci), min(effuci), float(sum(effuci))/float(len(effuci)) +## qsdfqsdfqsd +# +# +# if self.corpus.para_coords != [[] for val in self.corpus.para_coords] : +# self.corpus.parametre['para'] = True +# else : +# self.corpus.parametre['para'] = False +# self.corpus.make_etoiles(self.corpus.para_coords) +# +# print 'len(ucis_paras_uces', len(self.corpus.ucis_paras_uces) +# +# if not self.cmd : +# self.dlg.Update(6, u'Dictionnaires') +# uces, orderuces = self.corpus.make_forms_and_uces() +# self.corpus.make_lems(self.parent.lexique) +# +# def make_stats(self): +# if not self.cmd : +# if not 'dlg' in dir(self) : +# self.dlg = progressbar(self, 7) +# if not self.corpus.parametre['lem'] : +# formes = self.corpus.formes +# else : +# formes = self.corpus.make_lem_eff() +# tot = [[forme, formes[forme][0], formes[forme][2]] for forme in formes if formes[forme][0] > 1] +# tot = sortedby(tot, 2,1) +# tot = [[i, val] for i, val in enumerate(tot)] +# hapax = [[forme, formes[forme][0], formes[forme][2]] for forme in formes if formes[forme][0] == 1] +# hapax = sortedby(hapax, 1, 1) +# hapax = [[i, val] for i, val in enumerate(hapax)] +# act = [[forme, formes[forme][0], formes[forme][2]] for forme in formes if formes[forme][2] in self.corpus.typeactive] +# act = sortedby(act, 2, 1) +# act = [[i, val] for i, val in enumerate(act)] +# supp = [[forme, formes[forme][0], formes[forme][2]] for forme in formes if formes[forme][2] in self.corpus.supplementaires] +# supp = sortedby(supp, 2, 1) +# supp = [[i, val] for i, val in enumerate(supp)] +# self.corpus.dictpathout = self.dictpathout +# #self.corpus.make_type_tot() +# +# self.result = {u'total' : dict(tot), u'formes_actives' : dict(act), u'formes_supplémentaires' : dict(supp), u'hapax' : dict(hapax), u'glob' : ''} +# occurrences = sum([val[1][1] for val in tot]) + len(hapax) +# phapax = (float(len(hapax)) / float(occurrences)) * 100 +# phapax_forme = (float(len(hapax)) / (float(len(formes)) + len(hapax))) * 100 +# moy_occu_mot = float(occurrences) / float(len(formes)) +# txt = 'Globale\n' +# txt += 'nombre d\'uci : %i\n' % len(self.corpus.ucis) +# txt += 'nombre d\'occurrences : %i\n' % occurrences +# txt += 'nombre de formes : %i\n' % (len(formes) + len(hapax)) +# txt += 'moyenne d\'occurrences par forme : %.2f\n' % moy_occu_mot +# txt += 'nombre d\'hapax : %i (%.2f%% des occurrences - %.2f%% des formes)\n' % (len(hapax), phapax, phapax_forme) +# print float(occurrences), float(len(self.corpus.ucis)) +# txt += 'moyenne d\'occurrences par uci : %.2f' % (float(occurrences)/float(len(self.corpus.ucis))) +# if not self.cmd : +# self.dlg.Update(7, u'Ecriture...') +# self.result['glob'] = txt +# self.print_result() +# # for Zipf grap +# txt = """ +# source("%s") +# tot <- read.csv2("%s", header = FALSE, row.names = 1) +# hapax <- read.csv2("%s", header = FALSE, row.names = 1) +# tot <- rbind(tot, hapax) +# open_file_graph("%s", width = 400, height = 400) +# plot(log(tot[,1]), log = 'x', xlab='log(rangs)', ylab = 'log(frequences)', col = 'red', pch=16) +# dev.off() +# """ % (self.parent.RscriptsPath['Rgraph'], ffr(os.path.join(self.pathout, 'total.csv')), ffr(os.path.join(self.pathout, 'hapax.csv')), self.dictpathout['zipf']) +# tmpscript = tempfile.mktemp(dir=self.parent.TEMPDIR) +# with open(tmpscript, 'w') as f : +# f.write(txt) +# pid = exec_rcode(self.parent.RPath, tmpscript, wait = False) +# while pid.poll() == None : +# sleep(0.2) +# check_Rresult(self.parent, pid) +# self.corpus.save_corpus(self.dictpathout['db']) +# CreateIraFile(self.dictpathout, 0, corpname = os.path.basename(self.corpus.parametre['filename']), section = 'stat') +# if not self.cmd : +# OpenAnalyse(self.parent, self.dictpathout['ira']) +# #self.DoLayout(self.parent) +# self.dlg.Destroy() +# +# def print_result(self) : +# for key in self.result : +# if key != 'glob' : +# dico = self.result[key] +# toprint = [[dico[val][0],`dico[val][1]`, dico[val][2]] for val in dico] +# #toprint = [[line[0], `line[1]`] for line in self.result[key]] +# output = open(os.path.join(self.pathout,'%s.csv' % key), 'w') +# output.write('\n'.join([';'.join([val for val in ligne]) for ligne in toprint])) +# output.close() +# else : +# output = open(os.path.join(self.pathout,'%s.txt' % 'glob'), 'w') +# output.write(self.result['glob']) +# output.close() diff --git a/textwordcloud.py b/textwordcloud.py new file mode 100644 index 0000000..fce0e17 --- /dev/null +++ b/textwordcloud.py @@ -0,0 +1,182 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2008-2009 Pierre Ratinaud +#Lisense: GNU/GPL + +from chemins import ConstructPathOut, StatTxtPathOut, ffr, FFF +from corpus import Corpus +from guifunct import getPage, getCorpus +from ConfigParser import RawConfigParser +from functions import sortedby, progressbar, CreateIraFile, exec_rcode, check_Rresult, MessageImage +from dialog import StatDialog, PrefWordCloud +from openanalyse import OpenAnalyse +#from ttparser import * +import tempfile +from time import sleep +import wx +import os + +class WordCloud(): + def __init__(self, parent, cmd = False, lem = True, exp = True): +#################################################################### + self.conf = None + self.parent = parent + self.type = 'alceste' + self.cmd = cmd + self.ConfigPath = parent.ConfigPath + self.DictPath = parent.DictPath + self.KeyConf = RawConfigParser() + self.KeyConf.read(self.ConfigPath['key']) + page = getPage(self.parent) + if page is not None : + self.corpus = getCorpus(page) + if self.corpus is not None : + self.pathout = ConstructPathOut(self.corpus.parametre['openpath'], 'WordCloud') + self.dictpathout = StatTxtPathOut(self.pathout) + self.val = wx.ID_OK + else : + self.corpus = Corpus(parent) + self.corpus.parametre['encodage'] = parent.corpus_encodage + self.corpus.parametre['lang'] = parent.corpus_lang + self.corpus.parametre['filename'] = parent.filename + self.pathout = ConstructPathOut(self.corpus.parametre['filename'], 'WordCloud') + self.dictpathout = StatTxtPathOut(self.pathout) + self.corpus.dictpathout = self.dictpathout + if not self.cmd : + dial = StatDialog(self,parent) + dial.CenterOnParent() + self.val = dial.ShowModal() + else : + self.val = wx.ID_OK + if self.val == wx.ID_OK : + if not self.cmd : + if dial.radio_lem.GetSelection() == 0 : lem = True + else : lem = False + if dial.exp.GetSelection() == 0 : exp = True + else : exp = False + self.make_uce = dial.check_uce.GetValue() + self.corpus.parametre['nbforme_uce'] = dial.spin_ctrl_4.GetValue() + self.corpus.parametre['max_actives'] = dial.spin_max_actives.GetValue() + self.corpus.parametre['eff_min_uce'] = self.corpus.parametre['nbforme_uce'] + else : + lem = True + exp = True + self.make_uce = False + self.corpus.parametre['nbforme_uce'] = None + self.corpus.parametre['eff_min_uce'] = None + self.corpus.parametre['lem'] = lem + self.corpus.parametre['expressions'] = exp + self.corpus.supplementaires = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "2"] + self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] + self.make_corpus() + + if self.val == wx.ID_OK : + if 'supplementaires' not in dir(self.corpus) : + self.corpus.supplementaires = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "2"] + if 'typeactive' not in dir(self.corpus) : + self.corpus.typeactive = [option for option in self.KeyConf.options('KEYS') if self.KeyConf.get('KEYS', option) == "1"] + self.make_stats() + + def make_corpus(self) : + if not self.cmd : + self.dlg = progressbar(self, 7) + else : + self.dlg = None + self.corpus.content = self.parent.content + ucis_txt, ucis_paras_txt = self.corpus.start_analyse(self.parent, dlg = self.dlg, cmd = self.cmd, fromtt = False) + del ucis_txt + + if not self.cmd : + self.dlg.Update(5, '%i UCI...' % len(ucis_paras_txt)) + self.corpus.make_ucis_paras_uces(ucis_paras_txt, make_uce = self.make_uce) + del ucis_paras_txt + + if self.corpus.para_coords != [[] for val in self.corpus.para_coords] : + self.corpus.parametre['para'] = True + else : + self.corpus.parametre['para'] = False + self.corpus.make_etoiles(self.corpus.para_coords) + + if not self.cmd : + self.dlg.Update(6, u'Dictionnaires') + uces, orderuces = self.corpus.make_forms_and_uces() + self.corpus.make_lems(self.parent.lexique) + + def make_stats(self): + if not self.cmd : + if not 'dlg' in dir(self) : + self.dlg = progressbar(self, 7) + if not self.corpus.parametre['lem'] : + formes = self.corpus.formes + else : + formes = self.corpus.make_lem_eff() + act = [[forme, formes[forme][0], formes[forme][2]] for forme in formes if formes[forme][2] in + self.corpus.typeactive] + act = sortedby(act, 2, 1) + act = [[val[0], `val[1]`, val[2]] for val in act] + with open(os.path.join(self.pathout, 'actives.csv'), 'w') as f: + f.write('\n'.join([';'.join(line) for line in act])) + #act = [[i, val] for i, val in enumerate(act)] + self.corpus.dictpathout = self.dictpathout + #self.corpus.make_type_tot() + + if not self.cmd : + self.dlg.Destroy() + pref = PrefWordCloud(self.parent) + pref.CenterOnParent() + res = pref.ShowModal() + else : + res = wx.ID_OK + if res == wx.ID_OK : + self.dlg = progressbar(self, 3) + width = pref.spin_L.GetValue() + height = pref.spin_H.GetValue() + maxword = pref.spin_maxword.GetValue() + mincex = float(pref.spin_mincex.GetValue())/float(10) + maxcex = float(pref.spin_maxcex.GetValue())/float(10) + col_text = pref.color_text.GetColour() + col_bg = pref.color_bg.GetColour() + col_text = str(col_text).replace(')', ', max=255)') + col_bg = str(col_bg).replace(')', ', max=255)') + outgraph = os.path.join(os.path.dirname(self.dictpathout['zipf']), 'nuage_') + nb = 1 + while os.path.exists(outgraph + str(nb) + '.png') : + nb += 1 + outgraph = outgraph + str(nb) + '.png' + + txt = """ + source("%s") + library(wordcloud) + act <- read.csv2("%s", header = FALSE, row.names = 1) + maxword <- %i + maxtoprint <- ifelse(nrow(act) > maxword, maxword, nrow(act)) + toprint <- act[1:maxtoprint,] + open_file_graph("%s", width = %i, height = %i) + par(bg=rgb%s) + wordcloud(row.names(toprint), toprint[,1], scale=c(%f,%f), random.order=FALSE, colors=rgb%s) + dev.off() + """ % (self.parent.RscriptsPath['Rgraph'], ffr(os.path.join(self.pathout, 'actives.csv')), maxword, ffr(outgraph), width, height, col_bg, maxcex, mincex, col_text) + tmpscript = tempfile.mktemp(dir=self.parent.TEMPDIR) + with open(tmpscript, 'w') as f : + f.write(txt) + pid = exec_rcode(self.parent.RPath, tmpscript, wait = False) + while pid.poll() == None : + self.dlg.Pulse('R...') + sleep(0.2) + check_Rresult(self.parent, pid) + self.corpus.save_corpus(self.dictpathout['db']) + CreateIraFile(self.dictpathout, 0, corpname = os.path.basename(self.corpus.parametre['filename']), section = + 'wordcloud') + #win = MessageImage(self.parent, -1, u"Graphique", size=(700, 500),style = wx.DEFAULT_FRAME_STYLE) + #win.imagename = "nuage.png" + #win.addsaveimage(outgraph) + #txt = "" % FFF(outgraph).replace('//','/') + #win.HtmlPage.SetPage(txt) + #win.Show(True) + if not self.cmd : + #OpenAnalyse(self.parent, self.dictpathout['ira']) + #self.DoLayout(self.parent) + OpenAnalyse(self.parent, self.dictpathout['ira']) + self.dlg.Update(7, 'fini') + self.dlg.Destroy() diff --git a/tree.py b/tree.py new file mode 100644 index 0000000..41769f5 --- /dev/null +++ b/tree.py @@ -0,0 +1,811 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2012, Pierre Ratinaud +#Lisense: GNU GPL + +import wx +import wx.lib.agw.customtreectrl as CT +import logging +from openanalyse import OpenAnalyse +from corpusNG import Corpus, copycorpus +from functions import DoConf + + +log = logging.getLogger('iramuteq.tree') +#from agw import customtreectrl as CT + +class LeftTree(CT.CustomTreeCtrl): + + def __init__(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, + size=wx.DefaultSize, + style=wx.SUNKEN_BORDER|wx.WANTS_CHARS, + agwStyle=CT.TR_HAS_BUTTONS|CT.TR_HAS_VARIABLE_ROW_HEIGHT): + + CT.CustomTreeCtrl.__init__(self, parent, id, pos, size, style, agwStyle) + self.log = log + alldata = dir(CT) + treestyles = [] + events = [] + for data in alldata: + if data.startswith("TR_"): + treestyles.append(data) + elif data.startswith("EVT_"): + events.append(data) + self.parent = parent + self.events = events + self.styles = treestyles + self.item = None + + il = wx.ImageList(16, 16) + +# for items in ArtIDs[1:-1]: +# bmp = wx.ArtProvider_GetBitmap(eval(items), wx.ART_TOOLBAR, (16, 16)) +# il.Add(bmp) + +# smileidx = il.Add(images.Smiles.GetBitmap()) +# numicons = il.GetImageCount() + + self.AssignImageList(il) + self.count = 0 + self.log = log + + # NOTE: For some reason tree items have to have a data object in + # order to be sorted. Since our compare just uses the labels + # we don't need any real data, so we'll just use None below for + # the item data. + self.history = parent.history + self.h = self.history.history + self.root = self.AddRoot("Iramuteq") + + if not(self.GetAGWWindowStyleFlag() & CT.TR_HIDE_ROOT): + self.SetPyData(self.root, None) + self.SetItemImage(self.root, 24, CT.TreeItemIcon_Normal) + self.SetItemImage(self.root, 13, CT.TreeItemIcon_Expanded) + + #textctrl = wx.TextCtrl(self, -1, "I Am A Simple\nMultiline wx.TexCtrl", style=wx.TE_MULTILINE) + #self.gauge = wx.Gauge(self, -1, 50, style=wx.GA_HORIZONTAL|wx.GA_SMOOTH) + #self.gauge.SetValue(0) + #combobox = wx.ComboBox(self, -1, choices=["That", "Was", "A", "Nice", "Holyday!"], style=wx.CB_READONLY|wx.CB_DROPDOWN) + + #textctrl.Bind(wx.EVT_CHAR, self.OnTextCtrl) + #combobox.Bind(wx.EVT_COMBOBOX, self.OnComboBox) + #lenArtIds = len(ArtIDs) - 2 + for x in range(len(self.h)) : + if 'corpus_name' in self.h[self.history.order[x]] : + key = 'corpus_name' + else : + key = 'name' + child = self.AppendItem(self.root, self.h[self.history.order[x]][key]) + #if x == 1: + # child = self.AppendItem(self.root, "Item %d" % x + "\nHello World\nHappy wxPython-ing!") + # self.SetItemBold(child, True) + #else: + # child = self.AppendItem(self.root, "Item %d" % x) + self.SetPyData(child, self.h[self.history.order[x]]) + self.SetItemImage(child, 24, CT.TreeItemIcon_Normal) + self.SetItemImage(child, 13, CT.TreeItemIcon_Expanded) + + #if random.randint(0, 3) == 0: + # self.SetItemLeftImage(child, random.randint(0, lenArtIds)) + + #for y in range(5): + # if y == 0 and x == 1: + # last = self.AppendItem(child, "item %d-%s" % (x, chr(ord("a")+y)), ct_type=2, wnd=self.gauge) + # elif y == 1 and x == 2: + # last = self.AppendItem(child, "Item %d-%s" % (x, chr(ord("a")+y)), ct_type=1, wnd=textctrl) + # if random.randint(0, 3) == 1: + # self.SetItem3State(last, True) + # + # elif 2 < y < 4: + # last = self.AppendItem(child, "item %d-%s" % (x, chr(ord("a")+y))) + # elif y == 4 and x == 1: + # last = self.AppendItem(child, "item %d-%s" % (x, chr(ord("a")+y)), wnd=combobox) + # else: + if 'corpus_name' in self.h[self.history.order[x]] : + if 'analyses' in self.h[self.history.order[x]] : + for y in self.h[self.history.order[x]]['analyses'] : + last = self.AppendItem(child, y['name'], ct_type=0) + + self.SetPyData(last, y) + self.SetItemImage(last, 24, CT.TreeItemIcon_Normal) + self.SetItemImage(last, 13, CT.TreeItemIcon_Expanded) + + # if random.randint(0, 3) == 0: + # self.SetItemLeftImage(last, random.randint(0, lenArtIds)) + + #for z in range(len(self.history[x]) - 1): + +# if z > 2: +# item = self.AppendItem(last, "item %d-%s-%d" % (x, chr(ord("a")+y), z), ct_type=0) +# #if random.randint(0, 3) == 1: +# # self.SetItem3State(item, True) +# elif 0 < z <= 2: +# item = self.AppendItem(last, "item %d-%s-%d" % (x, chr(ord("a")+y), z), ct_type=0) +# elif z == 0: +# item = self.AppendItem(last, "item %d-%s-%d" % (x, chr(ord("a")+y), z)) +# #self.SetItemHyperText(item, True) +# self.SetPyData(item, None) +# self.SetItemImage(item, 28, CT.TreeItemIcon_Normal) +# self.SetItemImage(item, 28, CT.TreeItemIcon_Selected) + + # if random.randint(0, 3) == 0: + # self.SetItemLeftImage(item, random.randint(0, lenArtIds)) + + self.Bind(wx.EVT_LEFT_DCLICK, self.OnLeftDClick) + #self.Bind(wx.EVT_IDLE, self.OnIdle) + + self.eventdict = {'EVT_TREE_BEGIN_DRAG': self.OnBeginDrag, 'EVT_TREE_BEGIN_LABEL_EDIT': self.OnBeginEdit, + 'EVT_TREE_BEGIN_RDRAG': self.OnBeginRDrag, 'EVT_TREE_DELETE_ITEM': self.OnDeleteItem, + 'EVT_TREE_END_DRAG': self.OnEndDrag, 'EVT_TREE_END_LABEL_EDIT': self.OnEndEdit, + 'EVT_TREE_ITEM_ACTIVATED': self.OnActivate, 'EVT_TREE_ITEM_CHECKED': self.OnItemCheck, + 'EVT_TREE_ITEM_CHECKING': self.OnItemChecking, 'EVT_TREE_ITEM_COLLAPSED': self.OnItemCollapsed, + 'EVT_TREE_ITEM_COLLAPSING': self.OnItemCollapsing, 'EVT_TREE_ITEM_EXPANDED': self.OnItemExpanded, + 'EVT_TREE_ITEM_EXPANDING': self.OnItemExpanding, 'EVT_TREE_ITEM_GETTOOLTIP': self.OnToolTip, + 'EVT_TREE_ITEM_MENU': self.OnItemMenu, 'EVT_TREE_ITEM_RIGHT_CLICK': self.OnRightDown, + 'EVT_TREE_KEY_DOWN': self.OnKey, 'EVT_TREE_SEL_CHANGED': self.OnSelChanged, + 'EVT_TREE_SEL_CHANGING': self.OnSelChanging, "EVT_TREE_ITEM_HYPERLINK": self.OnHyperLink} + + mainframe = wx.GetTopLevelParent(self) + + if not hasattr(mainframe, "leftpanel"): + self.Bind(CT.EVT_TREE_ITEM_EXPANDED, self.OnItemExpanded) + self.Bind(CT.EVT_TREE_ITEM_COLLAPSED, self.OnItemCollapsed) + self.Bind(CT.EVT_TREE_SEL_CHANGED, self.OnSelChanged) + self.Bind(CT.EVT_TREE_SEL_CHANGING, self.OnSelChanging) + self.Bind(wx.EVT_RIGHT_DOWN, self.OnRightDown) + self.Bind(wx.EVT_RIGHT_UP, self.OnRightUp) + else: + for combos in mainframe.treeevents: + self.BindEvents(combos) + + if hasattr(mainframe, "leftpanel"): + self.ChangeStyle(mainframe.treestyles) + + if not(self.GetAGWWindowStyleFlag() & CT.TR_HIDE_ROOT): + self.SelectItem(self.root) + self.Expand(self.root) + + + def BindEvents(self, choice, recreate=False): + + value = choice.GetValue() + text = choice.GetLabel() + + evt = "CT." + text + binder = self.eventdict[text] + + if value == 1: + if evt == "CT.EVT_TREE_BEGIN_RDRAG": + self.Bind(wx.EVT_RIGHT_DOWN, None) + self.Bind(wx.EVT_RIGHT_UP, None) + self.Bind(eval(evt), binder) + else: + self.Bind(eval(evt), None) + if evt == "CT.EVT_TREE_BEGIN_RDRAG": + self.Bind(wx.EVT_RIGHT_DOWN, self.OnRightDown) + self.Bind(wx.EVT_RIGHT_UP, self.OnRightUp) + + + def ChangeStyle(self, combos): + + style = 0 + for combo in combos: + if combo.GetValue() == 1: + style = style | eval("CT." + combo.GetLabel()) + + if self.GetAGWWindowStyleFlag() != style: + self.SetAGWWindowStyleFlag(style) + + + def OnCompareItems(self, item1, item2): + + t1 = self.GetItemText(item1) + t2 = self.GetItemText(item2) + + + if t1 < t2: + return -1 + if t1 == t2: + return 0 + + return 1 + + + def OnIdle(self, event): + + # if self.gauge: + # try: + # if self.gauge.IsEnabled() and self.gauge.IsShown(): + # self.count = self.count + 1 + + # if self.count >= 50: + # self.count = 0 + + # self.gauge.SetValue(self.count) + + # except: + # self.gauge = None + + event.Skip() + + + def CloseItem(self, itemParent = None, uuid = None) : + if itemParent is None : + itemParent = self.root + child, cookie = self.GetFirstChild(itemParent) + while child : + pydata = self.GetPyData(child) + if pydata['uuid'] == uuid : + self.SetItemBold(child, False) + break + self.CloseItem(child, uuid) + child, cookie = self.GetNextChild(itemParent, cookie) + + def GiveFocus(self, itemParent = None, uuid = None) : + if itemParent is None : + itemParent = self.root + child, cookie = self.GetFirstChild(itemParent) + while child : + pydata = self.GetPyData(child) + if pydata['uuid'] == uuid : + self.SelectItem(child) + break + self.GiveFocus(child, uuid) + child, cookie = self.GetNextChild(itemParent, cookie) + + def OnRightDown(self, event): + + pt = event.GetPosition() + item, flags = self.HitTest(pt) + + if item: + self.item = item + #self.log.info("OnRightClick: %s, %s, %s" % (self.GetItemText(item), type(item), item.__class__) + "\n") + self.SelectItem(item) + + + def OnRightUp(self, event): + + item = self.item + + if not item: + event.Skip() + return + + if not self.IsItemEnabled(item): + event.Skip() + return + + # Item Text Appearance + ishtml = self.IsItemHyperText(item) + back = self.GetItemBackgroundColour(item) + fore = self.GetItemTextColour(item) + isbold = self.IsBold(item) + font = self.GetItemFont(item) + + # Icons On Item + normal = self.GetItemImage(item, CT.TreeItemIcon_Normal) + selected = self.GetItemImage(item, CT.TreeItemIcon_Selected) + expanded = self.GetItemImage(item, CT.TreeItemIcon_Expanded) + selexp = self.GetItemImage(item, CT.TreeItemIcon_SelectedExpanded) + + # Enabling/Disabling Windows Associated To An Item + haswin = self.GetItemWindow(item) + + # Enabling/Disabling Items + enabled = self.IsItemEnabled(item) + + # Generic Item's Info + children = self.GetChildrenCount(item) + itemtype = self.GetItemType(item) + text = self.GetItemText(item) + pydata = self.GetPyData(item) + + self.current = item + self.itemdict = {"ishtml": ishtml, "back": back, "fore": fore, "isbold": isbold, + "font": font, "normal": normal, "selected": selected, "expanded": expanded, + "selexp": selexp, "haswin": haswin, "children": children, + "itemtype": itemtype, "text": text, "pydata": pydata, "enabled": enabled} + + menu = wx.Menu() + info = menu.Append(wx.ID_ANY, "Informations") + menu.AppendSeparator() + + if 'corpus_name' in pydata : + stat = menu.Append(wx.ID_ANY, u"Statistiques") + spec = menu.Append(wx.ID_ANY, u"Spécificté et AFC") + classification = wx.Menu() + alceste = classification.Append(wx.ID_ANY, u"Méthode ALCESTE") + pam = classification.Append(wx.ID_ANY, u"Par matrice des distances") + menu.AppendMenu(-1, u"Classification", classification) + menu.AppendSeparator() + self.Bind(wx.EVT_MENU, self.OnAlceste, alceste) + self.Bind(wx.EVT_MENU, self.OnPam, pam) + self.Bind(wx.EVT_MENU, self.OnStat, stat) + self.Bind(wx.EVT_MENU, self.OnSpec, spec) + + item10 = menu.Append(wx.ID_ANY, "Supprimer de l'historique") + if item == self.GetRootItem(): + item10.Enable(False) + #item11 = menu.Append(wx.ID_ANY, "Prepend An Item") + #item12 = menu.Append(wx.ID_ANY, "Append An Item") + + #self.Bind(wx.EVT_MENU, self.OnItemBackground, item1) + #self.Bind(wx.EVT_MENU, self.OnItemForeground, item2) + #self.Bind(wx.EVT_MENU, self.OnItemBold, item3) + #self.Bind(wx.EVT_MENU, self.OnItemFont, item4) + #self.Bind(wx.EVT_MENU, self.OnItemHyperText, item5) + #self.Bind(wx.EVT_MENU, self.OnEnableWindow, item6) + #self.Bind(wx.EVT_MENU, self.OnDisableItem, item7) + #self.Bind(wx.EVT_MENU, self.OnItemIcons, item8) + self.Bind(wx.EVT_MENU, self.OnItemInfo, info) + #self.Bind(wx.EVT_MENU, self.OnItemDelete, item10) + #self.Bind(wx.EVT_MENU, self.OnItemPrepend, item11) + #self.Bind(wx.EVT_MENU, self.OnItemAppend, item12) + + self.PopupMenu(menu) + menu.Destroy() + + def getcorpus(self, itemdict): + if itemdict['pydata']['uuid'] in self.parent.history.openedcorpus : + return copycorpus(self.parent.history.openedcorpus[itemdict['pydata']['uuid']]) + else : + return Corpus(self.parent, parametres = DoConf(itemdict['pydata']['ira']).getoptions('corpus'), read = True) + + def OnSpec(self, evt) : + self.parent.OnTextSpec(evt, self.getcorpus(self.itemdict)) + + def OnStat(self, evt) : + self.parent.OnTextStat(evt, self.getcorpus(self.itemdict)) + + def OnAlceste(self, evt) : + self.parent.OnTextAlceste(evt, self.getcorpus(self.itemdict)) + + def OnPam(self, evt) : + print 'rien' + + def OnItemBackground(self, event): + + colourdata = wx.ColourData() + colourdata.SetColour(self.itemdict["back"]) + dlg = wx.ColourDialog(self, colourdata) + + dlg.GetColourData().SetChooseFull(True) + + if dlg.ShowModal() == wx.ID_OK: + data = dlg.GetColourData() + col1 = data.GetColour().Get() + self.SetItemBackgroundColour(self.current, col1) + dlg.Destroy() + + + def OnItemForeground(self, event): + + colourdata = wx.ColourData() + colourdata.SetColour(self.itemdict["fore"]) + dlg = wx.ColourDialog(self, colourdata) + + dlg.GetColourData().SetChooseFull(True) + + if dlg.ShowModal() == wx.ID_OK: + data = dlg.GetColourData() + col1 = data.GetColour().Get() + self.SetItemTextColour(self.current, col1) + dlg.Destroy() + + + def OnItemBold(self, event): + + self.SetItemBold(self.current, not self.itemdict["isbold"]) + + + def OnItemFont(self, event): + + data = wx.FontData() + font = self.itemdict["font"] + + if font is None: + font = wx.SystemSettings_GetFont(wx.SYS_DEFAULT_GUI_FONT) + + data.SetInitialFont(font) + + dlg = wx.FontDialog(self, data) + + if dlg.ShowModal() == wx.ID_OK: + data = dlg.GetFontData() + font = data.GetChosenFont() + self.SetItemFont(self.current, font) + + dlg.Destroy() + + + def OnItemHyperText(self, event): + + self.SetItemHyperText(self.current, not self.itemdict["ishtml"]) + + + def OnEnableWindow(self, event): + + enable = self.GetItemWindowEnabled(self.current) + self.SetItemWindowEnabled(self.current, not enable) + + + def OnDisableItem(self, event): + + self.EnableItem(self.current, False) + + + def OnItemIcons(self, event): + + bitmaps = [self.itemdict["normal"], self.itemdict["selected"], + self.itemdict["expanded"], self.itemdict["selexp"]] + + wx.BeginBusyCursor() + dlg = TreeIcons(self, -1, bitmaps=bitmaps) + wx.EndBusyCursor() + dlg.ShowModal() + + + def SetNewIcons(self, bitmaps): + + self.SetItemImage(self.current, bitmaps[0], CT.TreeItemIcon_Normal) + self.SetItemImage(self.current, bitmaps[1], CT.TreeItemIcon_Selected) + self.SetItemImage(self.current, bitmaps[2], CT.TreeItemIcon_Expanded) + self.SetItemImage(self.current, bitmaps[3], CT.TreeItemIcon_SelectedExpanded) + + + def OnItemInfo(self, event): + + itemtext = self.itemdict["text"] + numchildren = str(self.itemdict["children"]) + itemtype = self.itemdict["itemtype"] + pydata = self.itemdict['pydata'] + if 'analyses' in pydata : + toshow = dict([[val, pydata[val]] for val in pydata if val not in['analyses', 'isload']]) + else : + toshow = pydata + pydata = DoConf().totext(toshow) + + if itemtype == 0: + itemtype = "Normal" + elif itemtype == 1: + itemtype = "CheckBox" + else: + itemtype = "RadioButton" + + strs = "Information On Selected Item:\n\n" + "Text: " + itemtext + "\n" \ + "Number Of Children: " + numchildren + "\n" \ + "Item Type: " + itemtype + "\n" \ + "Item Data Type: " + pydata + "\n" + + dlg = wx.MessageDialog(self, strs, "CustomTreeCtrlDemo Info", wx.OK | wx.ICON_INFORMATION) + dlg.ShowModal() + dlg.Destroy() + + + + def OnItemDelete(self, event): + + strs = "Are You Sure You Want To Delete Item " + self.GetItemText(self.current) + "?" + dlg = wx.MessageDialog(None, strs, 'Deleting Item', wx.YES_NO | wx.NO_DEFAULT | wx.CANCEL | wx.ICON_QUESTION) + + if dlg.ShowModal() in [wx.ID_NO, wx.ID_CANCEL]: + dlg.Destroy() + return + + dlg.Destroy() + + self.DeleteChildren(self.current) + self.Delete(self.current) + self.current = None + + + + def OnItemPrepend(self, event): + + dlg = wx.TextEntryDialog(self, "Please Enter The New Item Name", 'Item Naming', 'Python') + + if dlg.ShowModal() == wx.ID_OK: + newname = dlg.GetValue() + newitem = self.PrependItem(self.current, newname) + self.EnsureVisible(newitem) + + dlg.Destroy() + + def AddAnalyse(self, parametres, itemParent = None) : + uuid = parametres['corpus'] + if itemParent is None : + itemParent = self.root + child, cookie = self.GetFirstChild(itemParent) + while child : + pydata = self.GetPyData(child) + if pydata['uuid'] == uuid : + corpus = child + break + self.GiveFocus(child, uuid) + child, cookie = self.GetNextChild(itemParent, cookie) + item = self.AppendItem(corpus, parametres['name']) + self.SetPyData(item, parametres) + self.SetItemImage(item, 24, CT.TreeItemIcon_Normal) + self.SetItemImage(item, 13, CT.TreeItemIcon_Expanded) + self.SetItemBold(item, True) + + def OnItemAppend(self, item): + child = self.AppendItem(self.root, item['corpus_name']) + self.SetPyData(child, item) + self.history.addtab(item) + self.SetItemImage(child, 24, CT.TreeItemIcon_Normal) + self.SetItemImage(child, 13, CT.TreeItemIcon_Expanded) + self.SetItemBold(child, True) + + #dlg = wx.TextEntryDialog(self, "Please Enter The New Item Name", 'Item Naming', 'Python') + + #if dlg.ShowModal() == wx.ID_OK: + # newname = dlg.GetValue() + # newitem = self.AppendItem(self.current, newname) + # self.EnsureVisible(newitem) + + + #dlg.Destroy() + + + def OnBeginEdit(self, event): + + #self.log.info("OnBeginEdit" + "\n") + # show how to prevent edit... + item = event.GetItem() + if item and self.GetItemText(item) == "The Root Item": + wx.Bell() + #self.log.info("You can't edit this one..." + "\n") + + # Lets just see what's visible of its children + cookie = 0 + root = event.GetItem() + (child, cookie) = self.GetFirstChild(root) + + while child: + #self.log.info("Child [%s] visible = %d" % (self.GetItemText(child), self.IsVisible(child)) + "\n") + (child, cookie) = self.GetNextChild(root, cookie) + + event.Veto() + + + def OnEndEdit(self, event): + + #self.log.info("OnEndEdit: %s %s" %(event.IsEditCancelled(), event.GetLabel())) + # show how to reject edit, we'll not allow any digits + for x in event.GetLabel(): + if x in string.digits: + #self.log.info(", You can't enter digits..." + "\n") + event.Veto() + return + + self.log.info("\n") + + + def OnLeftDClick(self, event): + + pt = event.GetPosition() + item, flags = self.HitTest(pt) + pydata = self.GetPyData(item) + if pydata['uuid'] in self.parent.history.opened : + for i in range(self.parent.nb.GetPageCount()) : + page = self.parent.nb.GetPage(i) + if 'parametres' in dir(page) : + if page.parametres['uuid'] == pydata['uuid'] : + self.parent.nb.SetSelection(i) + break + else : + OpenAnalyse(self.parent, pydata) + self.SetItemBold(item, True) + #if item and (flags & CT.TREE_HITTEST_ONITEMLABEL): + # if self.GetAGWWindowStyleFlag() & CT.TR_EDIT_LABELS: + # self.log.info("OnLeftDClick: %s (manually starting label edit)"% self.GetItemText(item) + "\n") + + #self.EditLabel(item) + # else: + # pydata = self.GetPyData(item) + # print pydata + # self.log.info("OnLeftDClick: Cannot Start Manual Editing, Missing Style TR_EDIT_LABELS\n") + + event.Skip() + + + def OnItemExpanded(self, event): + + item = event.GetItem() + if item: + self.log.info("OnItemExpanded: %s" % self.GetItemText(item) + "\n") + + + def OnItemExpanding(self, event): + + item = event.GetItem() + if item: + self.log.info("OnItemExpanding: %s" % self.GetItemText(item) + "\n") + + event.Skip() + + + def OnItemCollapsed(self, event): + + item = event.GetItem() + if item: + self.log.info("OnItemCollapsed: %s" % self.GetItemText(item) + "\n") + + + def OnItemCollapsing(self, event): + + item = event.GetItem() + if item: + self.log.info("OnItemCollapsing: %s" % self.GetItemText(item) + "\n") + + event.Skip() + + + def OnSelChanged(self, event): + item = event.GetItem() + pydata = self.GetPyData(item) + if pydata['uuid'] in self.parent.history.opened : + for i in range(self.parent.nb.GetPageCount()) : + page = self.parent.nb.GetPage(i) + if 'parametres' in dir(page) : + if page.parametres['uuid'] == pydata['uuid'] : + self.parent.nb.SetSelection(i) + break + + #self.item = event.GetItem() + #if self.item: + # self. + #self.log.info("OnSelChanged: %s" % self.GetItemText(self.item)) + # if wx.Platform == '__WXMSW__': + # self.log.info(", BoundingRect: %s" % self.GetBoundingRect(self.item, True) + "\n") + # pass + event.Skip() + + + def OnSelChanging(self, event): + + item = event.GetItem() + olditem = event.GetOldItem() + + if item: + if not olditem: + olditemtext = "None" + else: + olditemtext = self.GetItemText(olditem) + self.log.info("OnSelChanging: From %s" % olditemtext + " To %s" % self.GetItemText(item) + "\n") + + event.Skip() + + + def OnBeginDrag(self, event): + + self.item = event.GetItem() + if self.item: + self.log.info("Beginning Drag..." + "\n") + + event.Allow() + + + def OnBeginRDrag(self, event): + + self.item = event.GetItem() + if self.item: + self.log.info("Beginning Right Drag..." + "\n") + + event.Allow() + + + def OnEndDrag(self, event): + + self.item = event.GetItem() + if self.item: + self.log.info("Ending Drag!" + "\n") + + event.Skip() + + + def OnDeleteItem(self, event): + + item = event.GetItem() + + if not item: + return + + self.log.info("Deleting Item: %s" % self.GetItemText(item) + "\n") + event.Skip() + + + def OnItemCheck(self, event): + + item = event.GetItem() + self.log.info("Item " + self.GetItemText(item) + " Has Been Checked!\n") + event.Skip() + + + def OnItemChecking(self, event): + + item = event.GetItem() + self.log.info("Item " + self.GetItemText(item) + " Is Being Checked...\n") + event.Skip() + + + def OnToolTip(self, event): + + item = event.GetItem() + if item: + event.SetToolTip(wx.ToolTip(self.GetItemText(item))) + + + def OnItemMenu(self, event): + + item = event.GetItem() + if item: + self.log.info("OnItemMenu: %s" % self.GetItemText(item) + "\n") + + event.Skip() + + + def OnKey(self, event): + + keycode = event.GetKeyCode() + keyname = keyMap.get(keycode, None) + + if keycode == wx.WXK_BACK: + self.log.info("OnKeyDown: HAHAHAHA! I Vetoed Your Backspace! HAHAHAHA\n") + return + + if keyname is None: + if "unicode" in wx.PlatformInfo: + keycode = event.GetUnicodeKey() + if keycode <= 127: + keycode = event.GetKeyCode() + keyname = "\"" + unichr(event.GetUnicodeKey()) + "\"" + if keycode < 27: + keyname = "Ctrl-%s" % chr(ord('A') + keycode-1) + + elif keycode < 256: + if keycode == 0: + keyname = "NUL" + elif keycode < 27: + keyname = "Ctrl-%s" % chr(ord('A') + keycode-1) + else: + keyname = "\"%s\"" % chr(keycode) + else: + keyname = "unknown (%s)" % keycode + + self.log.info("OnKeyDown: You Pressed '" + keyname + "'\n") + + event.Skip() + + + def OnActivate(self, event): + + if self.item: + self.log.info("OnActivate: %s" % self.GetItemText(self.item) + "\n") + + event.Skip() + + + def OnHyperLink(self, event): + + item = event.GetItem() + if item: + self.log.info("OnHyperLink: %s" % self.GetItemText(self.item) + "\n") + + + def OnTextCtrl(self, event): + + char = chr(event.GetKeyCode()) + self.log.info("EDITING THE TEXTCTRL: You Wrote '" + char + \ + "' (KeyCode = " + str(event.GetKeyCode()) + ")\n") + event.Skip() + + + def OnComboBox(self, event): + + selection = event.GetEventObject().GetValue() + self.log.info("CHOICE FROM COMBOBOX: You Chose '" + selection + "'\n") + event.Skip() diff --git a/ttparser.py b/ttparser.py new file mode 100644 index 0000000..33a3766 --- /dev/null +++ b/ttparser.py @@ -0,0 +1,252 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud + +#a simple treetagger parser +import codecs +import numpy +import time +import re +from functions import ReadDicoAsDico +from itertools import izip, chain + +t1 = time.time() +#infile = '/home/pierre/prog/treetagger/cmd/allenglish.txt' + +infile = '/home/pierre/fac/cablegate/cablestagger.txt' +word_list = '/home/pierre/fac/cablegate/liste_de_mots.csv' +actives_list = '/home/pierre/fac/cablegate/actives.csv' +supps_list = '/home/pierre/fac/cablegate/supplementaires.csv' + + +def prepare_for_treetagger(corpus, parent) : + fileout = '/home/pierre/workspace/iramuteq/corpus/corpus_pour_tt.txt' + corpus.quick_clean1() + lang = corpus.parametre['lang'] + dico_path = parent.DictPath.get(lang + '_exp', 'french_exp') + expressions = ReadDicoAsDico(dico_path) + corpus.find_expression(expressions) + #corpus.content = re.sub(u'[-]+', ' ', corpus.content) + corpus.content = re.sub(u'[ ]+', ' ', corpus.content) + #FIXME : remplacer . par ' . ' + #corpus.quick_clean2() + with open(fileout, 'w') as f : + f.write(corpus.content) + +def partition(alist, indices): + pairs = izip(chain([0], indices), chain(indices, [None])) + return (alist[i:j] for i, j in pairs) + +def partition_uci(uci) : + if uci == [] : + pass + else : + indices = [i for i, forme in enumerate(uci) if forme[0].startswith(u'*')] + pairs = izip(chain([0], indices), chain(indices, [None])) + return (uci[i,j] for i, j in pairs) + +def dodict(inlist, indict) : + for i, forme in enumerate(inlist) : + if tuple(forme) in tot : + tot[tuple(forme)].append(i) + else : + tot[tuple(forme)] = [i] + +def treat_forme(forme, tformes) : + ponct =[u',', u'', u'``', u"''", u':', u'#', u')', '(', u'!', u'?', u';', u'-', u'.', u'...'] + if forme[0] in ponct : + return forme[0] + tforme = (forme[0], forme[1].split(':')[0]) + return tformes[tforme] + +def make_formes_and_lems(inlist) : + formes = {} + tformes = {} + formes_lems = {} + lems = {} + for forme in inlist : + word = forme[0] + gram = forme[1].split(':')[0] + lem = forme[2] + tforme = (word,gram) + if tforme in tformes : + if formes_lems[tformes[tforme]] == u'' and lem != u'' : + formes_lems[tformes[tforme]] = lem + else : + if word in formes : + nword = u'@'.join([word,'']) + while nword in formes and formes[nword] != gram : + nword = u'@'.join([nword,'']) + formes[nword] = [0, {}, gram, len(formes)] + tformes[tforme] = nword + formes_lems[nword] = lem + else : + formes[word] = [0, {}, gram, len(formes)] + tformes[tforme] = word + formes_lems[word] = lem + for forme in formes : + if formes_lems[forme] == u'' : + formes_lems[forme] = forme + if formes_lems[forme] in lems : + lems[formes_lems[forme]].append(forme) + else : + lems[formes_lems[forme]] = [forme] + del formes_lems + return formes, lems, tformes + +def make_ucis_txt_formes_from_tt(corpus, tformes) : + ucis_txt = [[treat_forme(forme, tformes) for forme in uci] for uci in corpus.ucis_txt] + del tformes + return [' '.join(uci) for uci in ucis_txt] + +def get_ucis_from_tt(corpus) : + content_split = [tuple(line.split('\t')) for line in corpus.content.splitlines()] + #print [i for i, line in enumerate(content_split) if line[0] == u'****'] + ponct =[u',', u'', u'``', u"''", u':', u'#', u')', '(', u'!', u'?', u';', u'-', u'.', u'...'] + lformes = [forme for forme in list(set(content_split)) if not forme[0].startswith(u'*') and forme[0] not in ponct] + formes, lems, tformes = make_formes_and_lems(lformes) + ucis = partition(content_split, [i for i, line in enumerate(content_split) if line[0] == u'****']) + del content_split + ucis = [uci for uci in ucis] + ucis.pop(0) + indices_max_et = [max([i for i, forme in enumerate(uci) if forme[0].startswith(u'*')]) for uci in ucis] + corpus.ucis = [uci[:indices_max_et[i] + 1] for i, uci in enumerate(ucis)] + corpus.ucis = [[[et[0] for et in uci],''] for uci in corpus.ucis] + corpus.ucis_txt = [uci[indices_max_et[i] + 1:] for i, uci in enumerate(ucis)] + del ucis + corpus.formes = formes + corpus.lems = lems + return make_ucis_txt_formes_from_tt(corpus, tformes) + +#with codecs.open(infile, 'r', 'latin1') as f : +# #content = [line.split('\t') for line in f] +# content = f.read() +#print time.time() - t1 +#print(u'#1') +#c1 = content.splitlines() +#print(u'#1b') +#c1s = [val.split('\t') for val in c1] +#print('#2') +#sc1 = list(set(c1)) +#print('#3') +#sc1 = [val.split('\t') for val in sc1] +#print len(sc1) +#print('#4') +#formes = [val for val in sc1 if not val[0].isdigit()] +#print len(formes) +#print('#5') +#sformes = [val[0] for val in formes] +#print len(sformes) +#print('#6') +# +#t4 = time.time() +#def make_dicts(inlist) : +# tot = {} +# totgram = {} +# for i, forme in enumerate(inlist) : +# if tuple(forme) in tot : +# tot[tuple(forme)].append(i) +# else : +# tot[tuple(forme)] = [i] +# if forme[1] in totgram : +# totgram[forme[1]] += 1 +# else : +# totgram[forme[1]] = 1 +# return tot, totgram +#tot, totgram = make_dicts(c1s) +#print 'dico', time.time() - t4 +# +#def load_keys() : +# key_file = '/home/pierre/fac/cablegate/keys_english.txt' +# with open(key_file, 'r') as f : +# keys = f.read() +# keys = keys.splitlines() +# keys = [line.split('\t') for line in keys] +# return keys +# +#keys = load_keys() +#print keys +#kact = [key[0] for key in keys if key[2] == '1'] +#ksup = [key[0] for key in keys if key[2] == '2'] +# +#actives = [[len(tot[forme]), forme[0], forme[1], forme[2]] for forme in tot if forme[1] in kact and len(tot[forme]) > 3] +#actives.sort() +#supps = [[len(tot[forme]), forme[0], forme[1], forme[2]] for forme in tot if forme[1] in ksup and len(tot[forme]) > 3] +#supps.sort() +# +#words = [[len(tot[word]), word[0], word[1], word[2]] for word in tot] +#words.sort() +##hapax = [word for word in words if word[3] == 1] +##print len(hapax) +#def print_list(thelist, fileout) : +# with open(fileout, 'w') as f : +# f.write('\n'.join(['\t'.join(['\t'.join(list(line[1:])), `line[0]`]) for line in thelist]).encode('latin1')) +#print_list(words, word_list) +#print_list(actives, actives_list) +#print_list(supps, supps_list) +#print time.time() - t4 +#t5 = time.time() +#print('#7') +#def make_uci(c1s) : +# return [val.tolist() for val in numpy.split(numpy.array(c1s),[i for i, line in enumerate(c1s) if line[0] == u'****'])] +# +##def make_ucil(c1s) : +#from itertools import izip, chain +#def partition(alist, indices): +# pairs = izip(chain([0], indices), chain(indices, [None])) +# return (alist[i:j] for i, j in pairs) +# +#def partition_uci(uci) : +# if uci == [] : +# pass +# else : +# indices = [i for i, forme in enumerate(uci) if forme[0].startswith(u'*')] +# pairs = izip(chain([0], indices), chain(indices, [None])) +# return (uci[i,j] for i, j in pairs) +# +##ucis = make_uci(c1s) +#t2 = time.time() +#ucis = partition(c1s, [i for i, line in enumerate(c1s) if line[0] == u'****']) +#print time.time() - t2 +#print('#8') +#print ucis +##for uci in ucis : +## if uci != []: +## print max([i for i, forme in enumerate(uci) if forme[0].startswith(u'*')]) +# +#ucis = [uci for uci in ucis] +#ucis.pop(0) +#indices_max_et = [max([i for i, forme in enumerate(uci) if forme[0].startswith(u'*')]) for uci in ucis] +##ucis2 = [partition_uci(uci) for uci in ucis] +##print len(ucis2) +#print len(indices_max_et) +#print'#9' +##print ucis2[0:2] +#etoiles = [uci[:indices_max_et[i] + 1] for i, uci in enumerate(ucis)] +#ucis = [uci[indices_max_et[i] + 1:] for i, uci in enumerate(ucis)] +#print len(etoiles) +#print etoiles[0] +#print('#10') +#t3 = time.time() +##ucis = [[val for val in uci if val[1] != 'PUN'] for uci in ucis] +#ind_sent = [[i for i, forme in enumerate(uci) if forme[1] == 'SENT'] for uci in ucis] +#print time.time() - t3 +#print ind_sent[0] +#print len(ucis), len(ind_sent) +##inuformes = [i for i,forme in enumerate(sformes) if sformes.count(forme) > 1] +##inuformes = [formes[i] for i, forme in enumerate(sformes) if forme in sformes[i+1:]] +##nonunique = [forme for forme in formes if formes.count(forme) > 1] +#print('#10') +#split_sents = [[partition(uci, ind_sent[i])] for i, uci in enumerate(ucis)] +#PUNCT = [u',', u'', u'``', u"''", u':', u'#', u')', '(', u'!', u'?', u';', u'-', u'.'] +#split_sents = [[val for sent in uci for val in sent] for uci in split_sents] +#split_sents = [[val for sent in uci for val in sent if val[0] not in PUNCT and not val[0].isdigit()] for uci in split_sents] +##for i in range(0,1) : +## for sent in split_sents[i] : +## for val in sent : +## print val +##nuformes = [formes[i] for i in inuformes] +##print('#8') +# +##print double +#print totgram diff --git a/uces.db b/uces.db new file mode 100644 index 0000000..685b4dc Binary files /dev/null and b/uces.db differ diff --git a/usecorpusNG.py b/usecorpusNG.py new file mode 100644 index 0000000..797e255 --- /dev/null +++ b/usecorpusNG.py @@ -0,0 +1,28 @@ +from corpusNG import * +from functions import DoConf + +corpus_encodage = 'cp1252' +corpus_in = '/home/pierre/fac/identite/identite_sans_doublons_ok_corpus_6/Corpus/corpus.cira' + +corpus_parametres = DoConf('/home/pierre/.iramuteq/corpus.cfg').getoptions('corpus') +corpus_parametres['filename'] = self.filename +corpus_parametres['encoding'] = corpus_encodage +corpus_parametres['syscoding'] = 'utf8' +#corpus = BuildFromAlceste(self.filename, corpus_parametres, self.lexique, self.expressions).corpus + #with codecs.open(self.filename, 'r', self.corpus_encodage) as f: +corpus = Corpus(self, parametres = {'filename': corpus_in, 'syscoding': 'utf8'}, read = corpus_in) + +corpus.conn_all() + +etoiles = ['*date_0211','*date_0311', '*date_0411', '*date_0511', '*date_0611', '*date_0711'] +corpus.read_corpus() +corpus.make_lems() +actives = corpus.make_actives(450) +corpus.make_and_write_sparse_matrix_from_uces(actives, 'mm.mm') +ucesize = corpus.getucesize() +float(sum(ucesize)/len(ucesize) +actives = corpus.make_actives(10) +#ucesize = corpus.make_uceactsize(actives) +#uc1, uc2 = corpus.make_uc(actives, 25, 27) +corpus.make_and_write_sparse_matrix_from_uc(actives, 25, 27, 'uc1.mm', 'uc2.mm') +tab = corpus.make_lexitable(100, etoiles) diff --git a/word_stat.py b/word_stat.py new file mode 100644 index 0000000..9c2289b --- /dev/null +++ b/word_stat.py @@ -0,0 +1,29 @@ +#!/bin/env python +# -*- coding: utf-8 -*- +#Author: Pierre Ratinaud +#Copyright (c) 2011 Pierre Ratinaud +#Lisense: GNU/GPL + + +def make_word_stat(corpus, listin) : + ducis = {} + duces={} + huces = [] + for lem in listin : + guces = [] + for word in corpus.lems[lem] : + print word, 'nb d\'uce avec:', len(corpus.formes[word][1]), 'eff tot:',sum([corpus.formes[word][1][val] for val in corpus.formes[word][1]]) + uces = [val for val in corpus.formes[word][1]] + print word, len(uces), 'uces' + print word, len(list(set([val[0] for val in uces]))), 'ucis' + guces += uces + huces.append(set(guces)) + print 'lem', lem, len(set(guces)), 'uces' + print 'lem', lem, len(set([val[0] for val in set(guces)])), 'ucis' + inter = set(huces[0]).intersection(huces[1])#.intersection(huces[2]) + print 'intersection:', len(list(set(inter))), 'uces' + inter2 = set([val[0] for val in huces[0]]).intersection([val[0] for val in huces[1]])#.intersection([val[0] for val in huces[2]]) + print 'intersection:', len(list(set(inter2))), 'ucis' + + +